From aa0e1fd9654d6dc2f21d1c87b14f2413c4602ad2 Mon Sep 17 00:00:00 2001 From: "Phyks (Lucas Verney)" Date: Sun, 3 Dec 2017 19:36:00 +0100 Subject: [PATCH] Use a single common data source for public transports stops Now makes use of Navitia opendata dumps to cover France. Fixes #65. --- README.md | 3 +- flatisfy/__main__.py | 4 +- flatisfy/data.py | 6 +- flatisfy/data_files/__init__.py | 130 +- flatisfy/data_files/ratp.json | 1 - flatisfy/data_files/stops_fr-idf.txt | 59362 +++++++++++++++++++++++++ flatisfy/data_files/stops_fr-ne.txt | 25211 +++++++++++ flatisfy/data_files/stops_fr-nw.txt | 15287 +++++++ flatisfy/data_files/stops_fr-se.txt | 49703 +++++++++++++++++++++ flatisfy/data_files/stops_fr-sw.txt | 18344 ++++++++ flatisfy/data_files/tcl.json | 4606 -- requirements.txt | 1 + 12 files changed, 167976 insertions(+), 4682 deletions(-) delete mode 100644 flatisfy/data_files/ratp.json create mode 100644 flatisfy/data_files/stops_fr-idf.txt create mode 100644 flatisfy/data_files/stops_fr-ne.txt create mode 100644 flatisfy/data_files/stops_fr-nw.txt create mode 100644 flatisfy/data_files/stops_fr-se.txt create mode 100644 flatisfy/data_files/stops_fr-sw.txt delete mode 100644 flatisfy/data_files/tcl.json diff --git a/README.md b/README.md index 2d47f4d..5806cae 100644 --- a/README.md +++ b/README.md @@ -74,8 +74,7 @@ which covers Paris. If you want to run the script using some other location, you might have to change these files by matching datasets. * [LaPoste Hexasmal](https://datanova.legroupe.laposte.fr/explore/dataset/laposte_hexasmal/?disjunctive.code_commune_insee&disjunctive.nom_de_la_commune&disjunctive.code_postal&disjunctive.libell_d_acheminement&disjunctive.ligne_5) for the list of cities and postal codes in France. -* [RATP (Paris) stations](https://data.ratp.fr/explore/dataset/positions-geographiques-des-stations-du-reseau-ratp/table/?disjunctive.stop_name&disjunctive.code_postal&disjunctive.departement) for the list of subway/tram/bus stations with their positions in Paris and nearby areas. -* [Tcl (Lyon) stations](https://download.data.grandlyon.com/wfs/rdata?SERVICE=WFS&VERSION=2.0.0&outputformat=GEOJSON&maxfeatures=4601&request=GetFeature&typename=tcl_sytral.tclarret&SRSNAME=urn:ogc:def:crs:EPSG::4326) for the list of subway/tram/bus stations with their positions in Paris and nearby areas. +* [Navitia public transport datasets](https://navitia.opendatasoft.com/explore/?sort=modified&refine.geographicarea=France) for the list of subway/tram/bus stations with their positions in France. These are the `stops_fr-*.txt` files, extracted from the `NTFS` datasets for each region. Both datasets are licensed under the Open Data Commons Open Database License (ODbL): https://opendatacommons.org/licenses/odbl/. diff --git a/flatisfy/__main__.py b/flatisfy/__main__.py index 696c549..c6fd4d1 100644 --- a/flatisfy/__main__.py +++ b/flatisfy/__main__.py @@ -164,8 +164,8 @@ def main(): if args.cmd == "build-data": force = True - data.preprocess_data(config, force=force) - LOGGER.info("Done building data!") + if data.preprocess_data(config, force=force): + LOGGER.info("Done building data!") if args.cmd == "build-data": sys.exit(0) diff --git a/flatisfy/data.py b/flatisfy/data.py index c504bd7..bc8faba 100644 --- a/flatisfy/data.py +++ b/flatisfy/data.py @@ -43,6 +43,7 @@ def preprocess_data(config, force=False): :params config: A config dictionary. :params force: Whether to force rebuild or not. + :return bool: Whether data have been built or not. """ # Check if a build is required get_session = database.init_db(config["database"], config["search_index"]) @@ -53,7 +54,7 @@ def preprocess_data(config, force=False): ) if is_built and not force: # No need to rebuild the database, skip - return + return False # Otherwise, purge all existing data session.query(PublicTransport).delete() session.query(PostalCode).delete() @@ -67,6 +68,7 @@ def preprocess_data(config, force=False): ) with get_session() as session: session.add_all(data_objects) + return True @hash_dict @@ -88,7 +90,7 @@ def load_data(model, constraint, config): areas = [] # Get areas to fetch from, using postal codes for postal_code in constraint["postal_codes"]: - areas.append(data_files.french_postal_codes_to_iso_3166(postal_code)) + areas.append(data_files.french_postal_codes_to_quarter(postal_code)) # Load data for each area areas = list(set(areas)) for area in areas: diff --git a/flatisfy/data_files/__init__.py b/flatisfy/data_files/__init__.py index 2ccf15f..36e31b8 100644 --- a/flatisfy/data_files/__init__.py +++ b/flatisfy/data_files/__init__.py @@ -3,10 +3,14 @@ Preprocessing functions to convert input opendata files into SQLAlchemy objects ready to be stored in the database. """ +import csv +import io import json import logging import os +from backports import csv + from flatisfy.models.postal_code import PostalCode from flatisfy.models.public_transport import PublicTransport @@ -15,18 +19,20 @@ LOGGER = logging.getLogger(__name__) MODULE_DIR = os.path.dirname(os.path.realpath(__file__)) -def french_postal_codes_to_iso_3166(postal_code): +def french_postal_codes_to_quarter(postal_code): """ - Convert a French postal code to the main subdivision in French this postal - code belongs to (ISO 3166-2 code). + Convert a French postal code to the main quarter in France this postal + code belongs to. :param postal_code: The postal code to convert. - :returns: The ISO 3166-2 code of the subdivision or ``None``. + :returns: The quarter of France or ``None``. """ + departement = postal_code[:2] + # Mapping between areas (main subdivisions in French, ISO 3166-2) and # French departements # Taken from Wikipedia data. - area_to_departement = { + department_to_subdivision = { "FR-ARA": ["01", "03", "07", "15", "26", "38", "42", "43", "63", "69", "73", "74"], "FR-BFC": ["21", "25", "39", "58", "70", "71", "89", "90"], @@ -44,17 +50,30 @@ def french_postal_codes_to_iso_3166(postal_code): "FR-PDL": ["44", "49", "53", "72", "85"], "FR-PAC": ["04", "05", "06", "13", "83", "84"] } + subdivision_to_quarters = { + 'FR-IDF': ['FR-IDF'], + 'FR-NW': ['FR-BRE', 'FR-CVL', 'FR-NOR', 'FR-PDL'], + 'FR-NE': ['FR-BFC', 'FR-GES', 'FR-HDF'], + 'FR-SE': ['FR-ARA', 'FR-COR', 'FR-PAC', 'FR-OCC'], + 'FR-SW': ['FR-NAQ'] + } - departement = postal_code[:2] - return next( + subdivision = next( ( i - for i in area_to_departement - if departement in area_to_departement[i] + for i, departments in department_to_subdivision.items() + if departement in departments + ), + None + ) + return next( + ( + i + for i, subdivisions in subdivision_to_quarters.items() + if subdivision in subdivisions ), None ) - def _preprocess_laposte(): @@ -69,8 +88,8 @@ def _preprocess_laposte(): raw_laposte_data = [] # Load opendata file try: - with open( - os.path.join(MODULE_DIR, data_file), "r" + with io.open( + os.path.join(MODULE_DIR, data_file), "r", encoding='utf-8' ) as fh: raw_laposte_data = json.load(fh) except (IOError, ValueError): @@ -82,7 +101,7 @@ def _preprocess_laposte(): for item in raw_laposte_data: fields = item["fields"] try: - area = french_postal_codes_to_iso_3166(fields["code_postal"]) + area = french_postal_codes_to_quarter(fields["code_postal"]) if area is None: LOGGER.info( "No matching area found for postal code %s, skipping it.", @@ -104,72 +123,45 @@ def _preprocess_laposte(): return postal_codes_data -def _preprocess_ratp(): +def _preprocess_public_transport(): """ - Build SQLAlchemy objects from the RATP data (public transport in Paris, - France). + Build SQLAlchemy objects from the Navitia public transport data. :return: A list of ``PublicTransport`` objects to be inserted in database. """ - data_file = "ratp.json" - LOGGER.info("Building from %s data.", data_file) + DATA_FILES = { + "FR-IDF": "stops_fr-idf.txt", + "FR-NW": "stops_fr-nw.txt", + "FR-NE": "stops_fr-ne.txt", + "FR-SW": "stops_fr-sw.txt", + "FR-SE": "stops_fr-se.txt" + } - ratp_data_raw = [] + public_transport_data = [] # Load opendata file - try: - with open(os.path.join(MODULE_DIR, data_file), "r") as fh: - ratp_data_raw = json.load(fh) - except (IOError, ValueError): - LOGGER.error("Invalid raw RATP opendata file.") - return [] + for area, data_file in DATA_FILES.items(): + LOGGER.info("Building from public transport data %s." % data_file) + try: + with io.open(os.path.join(MODULE_DIR, data_file), "r", + encoding='utf-8') as fh: + filereader = csv.reader(fh) + next(filereader, None) # Skip first row (headers) + for row in filereader: + public_transport_data.append(PublicTransport( + name=row[2], + area=area, + lat=row[3], + lng=row[4] + )) + except (IOError, IndexError): + LOGGER.error("Invalid raw opendata file: %s." % data_file) + return [] - # Process it - ratp_data = [] - for item in ratp_data_raw: - fields = item["fields"] - ratp_data.append(PublicTransport( - name=fields["stop_name"], - area="FR-IDF", - lat=fields["coord"][0], - lng=fields["coord"][1] - )) - return ratp_data - - -def _preprocess_tcl(): - """ - Build SQLAlchemy objects from the Tcl data (public transport in Lyon, - France). - - :return: A list of ``PublicTransport`` objects to be inserted in database. - """ - data_file = "tcl.json" - LOGGER.info("Building from %s data.", data_file) - - tcl_data_raw = [] - # Load opendata file - try: - with open(os.path.join(MODULE_DIR, data_file), "r") as fh: - tcl_data_raw = json.load(fh) - except (IOError, ValueError): - LOGGER.error("Invalid raw Tcl opendata file.") - return [] - - # Process it - tcl_data = [] - for item in tcl_data_raw["features"]: - tcl_data.append(PublicTransport( - name=item["properties"]["nom"], - area="FR-ARA", - lat=item["geometry"]["coordinates"][1], - lng=item["geometry"]["coordinates"][0] - )) - return tcl_data + return public_transport_data # List of all the available preprocessing functions. Order can be important. PREPROCESSING_FUNCTIONS = [ _preprocess_laposte, - _preprocess_ratp, - _preprocess_tcl + _preprocess_public_transport ] diff --git a/flatisfy/data_files/ratp.json b/flatisfy/data_files/ratp.json deleted file mode 100644 index 93a1132..0000000 --- a/flatisfy/data_files/ratp.json +++ /dev/null @@ -1 +0,0 @@ -[{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c41bf76b82fd96469a7b23a95d69bfe639718422", "fields": {"departement": "75", "stop_lat": 48.85513451823504, "code_postal": "75104", "stop_lon": 2.3613343390676635, "coord": [48.85513451823504, 2.3613343390676635], "stop_id": 1642, "stop_desc": "Rivoli (terre plein face au 10 rue de) - 75104", "stop_name": "Saint-Paul (Le Marais)"}, "geometry": {"type": "Point", "coordinates": [2.3613343390676635, 48.85513451823504]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5e7e2bd77d61881fa45d08e77df3bd11ebdc169d", "fields": {"departement": "75", "stop_lat": 48.869578970578424, "code_postal": "75108", "stop_lon": 2.324162488791942, "coord": [48.869578970578424, 2.324162488791942], "stop_id": 1166839, "stop_desc": "Tronchet (2 rue, 3 rue Tronchet) - 75108", "stop_name": "Madeleine"}, "geometry": {"type": "Point", "coordinates": [2.324162488791942, 48.869578970578424]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dc4cb78ef46ed9329f115a15b574affabe490167", "fields": {"departement": "75", "stop_lat": 48.83331371557845, "code_postal": "75112", "stop_lon": 2.387299704383512, "coord": [48.83331371557845, 2.387299704383512], "stop_id": 1166828, "stop_desc": "Cour Chamonard - 75112", "stop_name": "Cour Saint-Emilion"}, "geometry": {"type": "Point", "coordinates": [2.387299704383512, 48.83331371557845]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b961dfe2b08abda078494dbcc449ba5eafb6105a", "fields": {"departement": "78", "stop_lat": 48.93751218318358, "code_postal": "78586", "stop_lon": 2.157311047020583, "coord": [48.93751218318358, 2.157311047020583], "stop_id": 1643, "stop_desc": "Fusilles (Place des) - 78586", "stop_name": "Sartrouville"}, "geometry": {"type": "Point", "coordinates": [2.157311047020583, 48.93751218318358]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "70bf4c43b72ac8dad222d3d088efa9ce476ad2a3", "fields": {"departement": "75", "stop_lat": 48.82694828196076, "code_postal": "75113", "stop_lon": 2.367038433387592, "coord": [48.82694828196076, 2.367038433387592], "stop_id": 1166824, "stop_desc": "91 rue de Tolbiac - 75113", "stop_name": "Olympiades"}, "geometry": {"type": "Point", "coordinates": [2.367038433387592, 48.82694828196076]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "47dae7d97afbf3778694a0e904607bf17efd911a", "fields": {"departement": "93", "stop_lat": 48.96309599735446, "code_postal": "93078", "stop_lon": 2.512155566998092, "coord": [48.96309599735446, 2.512155566998092], "stop_id": 1628, "stop_desc": "Gare (place de la) - 93078", "stop_name": "Villepinte"}, "geometry": {"type": "Point", "coordinates": [2.512155566998092, 48.96309599735446]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "89e57e368f1dbe863a32dad219e5c83a51a09288", "fields": {"departement": "94", "stop_lat": 48.84732387116057, "code_postal": "94080", "stop_lon": 2.433531596877892, "coord": [48.84732387116057, 2.433531596877892], "stop_id": 1631, "stop_desc": "Rue de Montreuil - 94080", "stop_name": "Vincennes"}, "geometry": {"type": "Point", "coordinates": [2.433531596877892, 48.84732387116057]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b130ccf0aecee37510c951d436d8032fc73932dc", "fields": {"departement": "75", "stop_lat": 48.85826452640826, "code_postal": "75106", "stop_lon": 2.333713341644251, "coord": [48.85826452640826, 2.333713341644251], "stop_id": 3893398, "stop_desc": "FACE 21 QUAI MALAQUAIS - 75106", "stop_name": "PONT DU CARROUSEL - QUAI VOLTAIRE"}, "geometry": {"type": "Point", "coordinates": [2.333713341644251, 48.85826452640826]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c8c6b732b755e925669fcba722fc09cf359de3a0", "fields": {"departement": "75", "stop_lat": 48.87486965005481, "code_postal": "75108", "stop_lon": 2.3080837702852697, "coord": [48.87486965005481, 2.3080837702852697], "stop_id": 3893403, "stop_desc": "165 BOULEVARD HAUSSMANN - 75108", "stop_name": "HAUSSMANN - COURCELLES"}, "geometry": {"type": "Point", "coordinates": [2.3080837702852697, 48.87486965005481]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "124105f597990d94f79983c7de420d96e1e743c6", "fields": {"departement": "75", "stop_lat": 48.84679639215784, "code_postal": "75106", "stop_lon": 2.3306229456671206, "coord": [48.84679639215784, 2.3306229456671206], "stop_id": 3893427, "stop_desc": "FACE 50 RUE D'ASSAS - 75106", "stop_name": "FLEURUS"}, "geometry": {"type": "Point", "coordinates": [2.3306229456671206, 48.84679639215784]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "011fa057f6a464ce1205b51a57bd28b1f3a06346", "fields": {"departement": "75", "stop_lat": 48.845124785052576, "code_postal": "75106", "stop_lon": 2.3320257193414142, "coord": [48.845124785052576, 2.3320257193414142], "stop_id": 3893428, "stop_desc": "74 RUE D'ASSAS - 75106", "stop_name": "GUYNEMER - VAVIN"}, "geometry": {"type": "Point", "coordinates": [2.3320257193414142, 48.845124785052576]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "446e0505155c94bd0e3148d6c1d9cf0703f6afbd", "fields": {"departement": "75", "stop_lat": 48.83544482075055, "code_postal": "75113", "stop_lon": 2.348010173062405, "coord": [48.83544482075055, 2.348010173062405], "stop_id": 3893439, "stop_desc": "33-35 BOULEVARD ARAGO - 75113", "stop_name": "PASCAL"}, "geometry": {"type": "Point", "coordinates": [2.348010173062405, 48.83544482075055]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4f91ce3efcc27742e5e742561e5cd673e0404b2a", "fields": {"departement": "75", "stop_lat": 48.82690383710653, "code_postal": "75113", "stop_lon": 2.3649965617517843, "coord": [48.82690383710653, 2.3649965617517843], "stop_id": 3893454, "stop_desc": "90 RUE DE TOLBIAC - 75113", "stop_name": "TOLBIAC - BAUDRICOURT"}, "geometry": {"type": "Point", "coordinates": [2.3649965617517843, 48.82690383710653]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ae7e228a844c8c7eb770a20f60026c1f86d1bbbc", "fields": {"departement": "75", "stop_lat": 48.82548320894029, "code_postal": "75113", "stop_lon": 2.367377890894301, "coord": [48.82548320894029, 2.367377890894301], "stop_id": 3893457, "stop_desc": "56 RUE NATIONALE - 75113", "stop_name": "PONSCARME"}, "geometry": {"type": "Point", "coordinates": [2.367377890894301, 48.82548320894029]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "caa5f352b322346ffee1b9ff79b5296612cec8a5", "fields": {"departement": "75", "stop_lat": 48.82122233552293, "code_postal": "75113", "stop_lon": 2.3700839704330785, "coord": [48.82122233552293, 2.3700839704330785], "stop_id": 3893463, "stop_desc": "48 AVENUE DE LA PORTE D'IVRY - 75113", "stop_name": "PORTE D'IVRY"}, "geometry": {"type": "Point", "coordinates": [2.3700839704330785, 48.82122233552293]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ba62b8012164cbf4ce61c23628859aad0ec8e520", "fields": {"departement": "75", "stop_lat": 48.868336389464545, "code_postal": "75108", "stop_lon": 2.3103080246131436, "coord": [48.868336389464545, 2.3103080246131436], "stop_id": 3893471, "stop_desc": "FACE 43 AVENUE F.D.ROOSEVELT - 75108", "stop_name": "ROND-POINT DES CHAMPS-ELYSEES"}, "geometry": {"type": "Point", "coordinates": [2.3103080246131436, 48.868336389464545]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6415807356f7ec1c2379c2ebf822adcc2f67535a", "fields": {"departement": "75", "stop_lat": 48.826607407557404, "code_postal": "75113", "stop_lon": 2.3642885673351617, "coord": [48.826607407557404, 2.3642885673351617], "stop_id": 3893486, "stop_desc": "105 BIS RUE DE TOLBIAC - 75113", "stop_name": "TOLBIAC - BAUDRICOURT"}, "geometry": {"type": "Point", "coordinates": [2.3642885673351617, 48.826607407557404]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "da7cd7eea452200028cf2544473647fb75a0725e", "fields": {"departement": "75", "stop_lat": 48.82604320986751, "code_postal": "75113", "stop_lon": 2.3530310821243097, "coord": [48.82604320986751, 2.3530310821243097], "stop_id": 3893491, "stop_desc": "164 RUE DE TOLBIAC - 75113", "stop_name": "MOULIN DES PRES"}, "geometry": {"type": "Point", "coordinates": [2.3530310821243097, 48.82604320986751]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7202f563b8eb7989d1e7d89a8e070e4519fc82cf", "fields": {"departement": "75", "stop_lat": 48.82592709512528, "code_postal": "75113", "stop_lon": 2.345993616688541, "coord": [48.82592709512528, 2.345993616688541], "stop_id": 3893495, "stop_desc": "212 RUE DE TOLBIAC - 75113", "stop_name": "VERGNIAUD"}, "geometry": {"type": "Point", "coordinates": [2.345993616688541, 48.82592709512528]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c42d7300ba994cfa0b85706140ac4a4507cec3f9", "fields": {"departement": "75", "stop_lat": 48.82647556307255, "code_postal": "75113", "stop_lon": 2.342127845891707, "coord": [48.82647556307255, 2.342127845891707], "stop_id": 3893497, "stop_desc": "240 RUE DE TOLBIAC - 75113", "stop_name": "GLACIERE - TOLBIAC"}, "geometry": {"type": "Point", "coordinates": [2.342127845891707, 48.82647556307255]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b5185a594a7d9cb239e3ff0bfe4807f47fde445f", "fields": {"departement": "75", "stop_lat": 48.82727555317232, "code_postal": "75114", "stop_lon": 2.3356756415151505, "coord": [48.82727555317232, 2.3356756415151505], "stop_id": 3893499, "stop_desc": "11 TER RUE D'ALESIA - 75114", "stop_name": "RENE COTY"}, "geometry": {"type": "Point", "coordinates": [2.3356756415151505, 48.82727555317232]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "80ddc5adb3294c54667f673b9d74599b984f0ca2", "fields": {"departement": "75", "stop_lat": 48.82908122775631, "code_postal": "75114", "stop_lon": 2.323015610290775, "coord": [48.82908122775631, 2.323015610290775], "stop_id": 3893507, "stop_desc": "FACE 98 RUE D'ALESIA - 75114", "stop_name": "LES PLANTES"}, "geometry": {"type": "Point", "coordinates": [2.323015610290775, 48.82908122775631]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4cf55aba00865ed638215bcdeac236a146e6be76", "fields": {"departement": "75", "stop_lat": 48.832404829426366, "code_postal": "75114", "stop_lon": 2.312042015833839, "coord": [48.832404829426366, 2.312042015833839], "stop_id": 3893513, "stop_desc": "233 RUE D'ALESIA - 75114", "stop_name": "VERCINGETORIX"}, "geometry": {"type": "Point", "coordinates": [2.312042015833839, 48.832404829426366]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9ed6ea862beb67f458425fbf248d3a38f87383d6", "fields": {"departement": "75", "stop_lat": 48.83403961797898, "code_postal": "75115", "stop_lon": 2.3078752826574753, "coord": [48.83403961797898, 2.3078752826574753], "stop_id": 3893514, "stop_desc": "41 RUE DE VOUILLE - 75115", "stop_name": "LABROUSTE"}, "geometry": {"type": "Point", "coordinates": [2.3078752826574753, 48.83403961797898]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4e2faae86262a463592cebca7fdb0d061933acd2", "fields": {"departement": "75", "stop_lat": 48.83746939597489, "code_postal": "75115", "stop_lon": 2.296123526761, "coord": [48.83746939597489, 2.296123526761], "stop_id": 3893520, "stop_desc": "189 RUE DE LA CONVENTION - 75115", "stop_name": "CONVENTION - VAUGIRARD"}, "geometry": {"type": "Point", "coordinates": [2.296123526761, 48.83746939597489]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c9afe681a060a80c7b03f1708d51f87bca031fa0", "fields": {"departement": "75", "stop_lat": 48.83866360927209, "code_postal": "75115", "stop_lon": 2.292963808695247, "coord": [48.83866360927209, 2.292963808695247], "stop_id": 3893523, "stop_desc": "158 RUE DE LA CONVENTION - 75115", "stop_name": "CONVENTION - LECOURBE"}, "geometry": {"type": "Point", "coordinates": [2.292963808695247, 48.83866360927209]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fd807410daa62c8584794c881daf6c1b72b6841b", "fields": {"departement": "75", "stop_lat": 48.840872858266, "code_postal": "75115", "stop_lon": 2.2886320429894775, "coord": [48.840872858266, 2.2886320429894775], "stop_id": 3893524, "stop_desc": "115 RUE DE LA CONVENTION - 75115", "stop_name": "FELIX FAURE"}, "geometry": {"type": "Point", "coordinates": [2.2886320429894775, 48.840872858266]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6563680b5c9f703f55cba17110577a196b159bc4", "fields": {"departement": "75", "stop_lat": 48.8424442034013, "code_postal": "75115", "stop_lon": 2.2851447753036553, "coord": [48.8424442034013, 2.2851447753036553], "stop_id": 3893526, "stop_desc": "79 RUE DE LA CONVENTION - 75115", "stop_name": "BOUCICAUT"}, "geometry": {"type": "Point", "coordinates": [2.2851447753036553, 48.8424442034013]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8d29d8b71b2966f6985cbef03762e6436011493f", "fields": {"departement": "75", "stop_lat": 48.84364735961448, "code_postal": "75115", "stop_lon": 2.2825291598366384, "coord": [48.84364735961448, 2.2825291598366384], "stop_id": 3893528, "stop_desc": "53 RUE DE LA CONVENTION - 75115", "stop_name": "CONVENTION - SAINT-CHARLES"}, "geometry": {"type": "Point", "coordinates": [2.2825291598366384, 48.84364735961448]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "57656cc2203417b9a03149d724b3482c473c5bb4", "fields": {"departement": "75", "stop_lat": 48.847749918985706, "code_postal": "75116", "stop_lon": 2.273046856545455, "coord": [48.847749918985706, 2.273046856545455], "stop_id": 3893532, "stop_desc": "21 R DE REMUSAT - 75116", "stop_name": "PONT MIRABEAU"}, "geometry": {"type": "Point", "coordinates": [2.273046856545455, 48.847749918985706]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b6430f487e331621edaf08411883768ff66ce798", "fields": {"departement": "75", "stop_lat": 48.847963657326225, "code_postal": "75116", "stop_lon": 2.2695059542092397, "coord": [48.847963657326225, 2.2695059542092397], "stop_id": 3893534, "stop_desc": "66 AVENUE THEOPHILE GAUTIER - 75116", "stop_name": "EGLISE D'AUTEUIL"}, "geometry": {"type": "Point", "coordinates": [2.2695059542092397, 48.847963657326225]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "187b004fdef1cca3840308e9fba7fa58dba32b74", "fields": {"departement": "75", "stop_lat": 48.844726268110726, "code_postal": "75116", "stop_lon": 2.266269338787063, "coord": [48.844726268110726, 2.266269338787063], "stop_id": 3893536, "stop_desc": "16-20 RUE CHARDON LAGACHE - 75116", "stop_name": "CHARDON-LAGACHE - MOLITOR"}, "geometry": {"type": "Point", "coordinates": [2.266269338787063, 48.844726268110726]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0b174c299e9577978947feddce7a2e037b659bc6", "fields": {"departement": "75", "stop_lat": 48.837880299347574, "code_postal": "75116", "stop_lon": 2.256176232036295, "coord": [48.837880299347574, 2.256176232036295], "stop_id": 3893540, "stop_desc": "PLACE DE LA PORTE DE SAINT CLOUD - 75116", "stop_name": "PORTE DE SAINT-CLOUD"}, "geometry": {"type": "Point", "coordinates": [2.256176232036295, 48.837880299347574]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fd64af6aac1cd0b6c404adbce1a12c9a735b95cb", "fields": {"departement": "75", "stop_lat": 48.83875303031976, "code_postal": "75116", "stop_lon": 2.2575636413152753, "coord": [48.83875303031976, 2.2575636413152753], "stop_id": 3893542, "stop_desc": "133 RUE MICHEL ANGE - 75116", "stop_name": "PORTE DE SAINT-CLOUD - MICHEL-ANGE"}, "geometry": {"type": "Point", "coordinates": [2.2575636413152753, 48.83875303031976]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "492e2e5c14388533180966f96e876fc991dd5761", "fields": {"departement": "75", "stop_lat": 48.845514664091525, "code_postal": "75116", "stop_lon": 2.2621831012528215, "coord": [48.845514664091525, 2.2621831012528215], "stop_id": 3893545, "stop_desc": "35 RUE MICHEL ANGE - 75116", "stop_name": "MICHEL-ANGE - MOLITOR"}, "geometry": {"type": "Point", "coordinates": [2.2621831012528215, 48.845514664091525]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9e23fb25a4ebdac5d7ce880fca90a4972fe3d0d5", "fields": {"departement": "75", "stop_lat": 48.84596109659742, "code_postal": "75116", "stop_lon": 2.2724771434790516, "coord": [48.84596109659742, 2.2724771434790516], "stop_id": 3893547, "stop_desc": "93 AVENUE VERSAILLES - 75116", "stop_name": "WILHEM - VERSAILLES"}, "geometry": {"type": "Point", "coordinates": [2.2724771434790516, 48.84596109659742]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8d921cda2345b1a388a370538c44b57cebfeaca1", "fields": {"departement": "75", "stop_lat": 48.826448633974536, "code_postal": "75114", "stop_lon": 2.3412158268205636, "coord": [48.826448633974536, 2.3412158268205636], "stop_id": 3893548, "stop_desc": "1 RUE D'ALESIA - 75114", "stop_name": "GLACIERE - TOLBIAC"}, "geometry": {"type": "Point", "coordinates": [2.3412158268205636, 48.826448633974536]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "92314b6e1ebb3c4231036d13d8d6e0754b185d6b", "fields": {"departement": "93", "stop_lat": 48.90666658787472, "code_postal": "93001", "stop_lon": 2.3652301358543797, "coord": [48.90666658787472, 2.3652301358543797], "stop_id": 3901291, "stop_desc": "Place du Front Populaire, c\u00f4t\u00e9 rue Waldeck Rochet face \u00e0 la rue des Gardinoux - 93001", "stop_name": "Front Populaire"}, "geometry": {"type": "Point", "coordinates": [2.3652301358543797, 48.90666658787472]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1677dd2096360bf68c7d9b4a090e36d60bd5a221", "fields": {"departement": "93", "stop_lat": 48.91555906776703, "code_postal": "93001", "stop_lon": 2.3808340683950466, "coord": [48.91555906776703, 2.3808340683950466], "stop_id": 3908815, "stop_desc": "8 AV DU PRESIDENT ROOSEVELT - 93001", "stop_name": "MAIRIE D'AUBERVILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.3808340683950466, 48.91555906776703]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2a46d4542ff6e04efd33365f59f2e678cbe5705d", "fields": {"departement": "93", "stop_lat": 48.91558740373701, "code_postal": "93001", "stop_lon": 2.376893400596234, "coord": [48.91558740373701, 2.376893400596234], "stop_id": 3908817, "stop_desc": "43 RUE HEURTAULT - 93001", "stop_name": "HEURTAULT"}, "geometry": {"type": "Point", "coordinates": [2.376893400596234, 48.91558740373701]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "78ffc48adb19f370888326de94fc5a8749e8ca79", "fields": {"departement": "93", "stop_lat": 48.91537356682731, "code_postal": "93001", "stop_lon": 2.370866321888482, "coord": [48.91537356682731, 2.370866321888482], "stop_id": 3908819, "stop_desc": "36 RUE DU LANDY - 93001", "stop_name": "CANAL"}, "geometry": {"type": "Point", "coordinates": [2.370866321888482, 48.91537356682731]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e79fbfb65b6514bb17e586d1a0f2b2a4b802cf09", "fields": {"departement": "93", "stop_lat": 48.912642719449714, "code_postal": "93001", "stop_lon": 2.366283245404353, "coord": [48.912642719449714, 2.366283245404353], "stop_id": 3908824, "stop_desc": "FACE 19 RUE DES FILLETTES - 93001", "stop_name": "SAINT-GOBAIN"}, "geometry": {"type": "Point", "coordinates": [2.366283245404353, 48.912642719449714]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e58f2be75d43f0b4040d3d0aab575c6dfbb802fc", "fields": {"departement": "92", "stop_lat": 48.79198246383179, "code_postal": "92032", "stop_lon": 2.275373930429335, "coord": [48.79198246383179, 2.275373930429335], "stop_id": 3909003, "stop_desc": "AVENUE GENERAL LECLERC - 92032", "stop_name": "LEONIE LAPORTE"}, "geometry": {"type": "Point", "coordinates": [2.275373930429335, 48.79198246383179]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6a05903eb51be704a20172711af7ec45fd985777", "fields": {"departement": "92", "stop_lat": 48.79174189622364, "code_postal": "92032", "stop_lon": 2.2795639699284296, "coord": [48.79174189622364, 2.2795639699284296], "stop_id": 3909004, "stop_desc": "27 BIS AVENUE DU GENERAL LECLERC - 92032", "stop_name": "TENNIS - GENERAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.2795639699284296, 48.79174189622364]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5ba79ee8f08955fa23d792d974c622388c37d712", "fields": {"departement": "92", "stop_lat": 48.79178512750472, "code_postal": "92032", "stop_lon": 2.297302369184098, "coord": [48.79178512750472, 2.297302369184098], "stop_id": 3909018, "stop_desc": "R DES BENARDS - 92032", "stop_name": "CENTRE COMMERCIAL SCARRON"}, "geometry": {"type": "Point", "coordinates": [2.297302369184098, 48.79178512750472]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "383e0c2ae321bed4f37956a3679918ee7a826886", "fields": {"departement": "92", "stop_lat": 48.79473999766578, "code_postal": "92032", "stop_lon": 2.2913552016110916, "coord": [48.79473999766578, 2.2913552016110916], "stop_id": 3909020, "stop_desc": "FACE 22 AVENUE JEANNE ET MAURICE DOLIVET - 92032", "stop_name": "CIMETIERE DE FONTENAY-AUX-ROSES"}, "geometry": {"type": "Point", "coordinates": [2.2913552016110916, 48.79473999766578]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "06d74a6c92838acea3f34d23b356d4edd9394d47", "fields": {"departement": "92", "stop_lat": 48.78912115618851, "code_postal": "92032", "stop_lon": 2.287850746563457, "coord": [48.78912115618851, 2.287850746563457], "stop_id": 3909022, "stop_desc": "FACE 5 BD DE LA REPUBLIQUE - 92032", "stop_name": "CMS CENTRE MUNICIPAL DE SANTE"}, "geometry": {"type": "Point", "coordinates": [2.287850746563457, 48.78912115618851]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4da2dcc88066e6ee0e666ade1556b9466c1adb2c", "fields": {"departement": "92", "stop_lat": 48.79064796399364, "code_postal": "92032", "stop_lon": 2.2851831441927226, "coord": [48.79064796399364, 2.2851831441927226], "stop_id": 3909023, "stop_desc": "FACE 32 RUE JEAN JAURES - 92032", "stop_name": "CARNOT - JEAN JAURES."}, "geometry": {"type": "Point", "coordinates": [2.2851831441927226, 48.79064796399364]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2d3fe151bcfbbed5c12ca063b6e9a1eec781d5d2", "fields": {"departement": "92", "stop_lat": 48.81260443153199, "code_postal": "92023", "stop_lon": 2.266245220877003, "coord": [48.81260443153199, 2.266245220877003], "stop_id": 3909032, "stop_desc": "33 R BRISSARD - 92023", "stop_name": "CENTRE D'ARTS PLASTIQUES - ALBERT CHANOT"}, "geometry": {"type": "Point", "coordinates": [2.266245220877003, 48.81260443153199]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "50cb8acc397812d1e2e2305518f866b6073d8228", "fields": {"departement": "92", "stop_lat": 48.808840591671526, "code_postal": "92023", "stop_lon": 2.255418738098654, "coord": [48.808840591671526, 2.255418738098654], "stop_id": 3909039, "stop_desc": "FACE 46 R DE LA VALLEE DU BOIS - 92023", "stop_name": "VALLEE DU BOIS - LILY"}, "geometry": {"type": "Point", "coordinates": [2.255418738098654, 48.808840591671526]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5b8a7f91ffd934e55f5210b79b25a56f9bf0b67c", "fields": {"departement": "92", "stop_lat": 48.80690705621798, "code_postal": "92023", "stop_lon": 2.2537481161675283, "coord": [48.80690705621798, 2.2537481161675283], "stop_id": 3909041, "stop_desc": "41-43 AVENUE ADOLPHE SCHNEIDER - 92023", "stop_name": "VALLEE DU BOIS"}, "geometry": {"type": "Point", "coordinates": [2.2537481161675283, 48.80690705621798]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4803ee2cecd9464611f74647497d27fc26775bae", "fields": {"departement": "92", "stop_lat": 48.80307488618575, "code_postal": "92023", "stop_lon": 2.26219004040694, "coord": [48.80307488618575, 2.26219004040694], "stop_id": 3909045, "stop_desc": "49 RUE PAUL VAILLANT COUTURIER - 92023", "stop_name": "TROSY"}, "geometry": {"type": "Point", "coordinates": [2.26219004040694, 48.80307488618575]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "06f2b77b361d8855e850d2d9ac682fac3d36e692", "fields": {"departement": "92", "stop_lat": 48.800224844496384, "code_postal": "92023", "stop_lon": 2.2607792074492186, "coord": [48.800224844496384, 2.2607792074492186], "stop_id": 3909050, "stop_desc": "FACE 3 BIS PLACE HUNEBELLE - 92023", "stop_name": "PLACE HUNEBELLE"}, "geometry": {"type": "Point", "coordinates": [2.2607792074492186, 48.800224844496384]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "976858ef19fb184304dd95219072e12ea45e9d68", "fields": {"departement": "92", "stop_lat": 48.79553103117235, "code_postal": "92023", "stop_lon": 2.272281574187103, "coord": [48.79553103117235, 2.272281574187103], "stop_id": 3909058, "stop_desc": "R DU FORT - 92023", "stop_name": "LYCEE MONOD"}, "geometry": {"type": "Point", "coordinates": [2.272281574187103, 48.79553103117235]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "277ebdebdd829c6f0ee4fde7d097ccfc54134c0c", "fields": {"departement": "92", "stop_lat": 48.79375678857883, "code_postal": "92023", "stop_lon": 2.2659445058349594, "coord": [48.79375678857883, 2.2659445058349594], "stop_id": 3909061, "stop_desc": "FACE 103 AVENUE JEAN BAPTISTE CLEMENT - 92023", "stop_name": "CIMETIERE DE CLAMART"}, "geometry": {"type": "Point", "coordinates": [2.2659445058349594, 48.79375678857883]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "def5f3d61961ac43988f891a7af3ad730dba531d", "fields": {"departement": "92", "stop_lat": 48.79224036364236, "code_postal": "92023", "stop_lon": 2.2558802002909437, "coord": [48.79224036364236, 2.2558802002909437], "stop_id": 3909067, "stop_desc": "73 R DU PARC - 92023", "stop_name": "RUE DU PARC"}, "geometry": {"type": "Point", "coordinates": [2.2558802002909437, 48.79224036364236]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e01d912b2803402cef0fa75d3bd4593a5d6577f5", "fields": {"departement": "92", "stop_lat": 48.787319542834304, "code_postal": "92023", "stop_lon": 2.249644619934298, "coord": [48.787319542834304, 2.249644619934298], "stop_id": 3909070, "stop_desc": "FACE 13 R DE CHAMPAGNE - 92023", "stop_name": "CHAMPAGNE"}, "geometry": {"type": "Point", "coordinates": [2.249644619934298, 48.787319542834304]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "38a871a8daa3260710cb524b803918159dcc62eb", "fields": {"departement": "92", "stop_lat": 48.79550425281417, "code_postal": "92020", "stop_lon": 2.2726217096903243, "coord": [48.79550425281417, 2.2726217096903243], "stop_id": 3909090, "stop_desc": "FACE 46 R DU FORT - 92020", "stop_name": "LYCEE MONOD"}, "geometry": {"type": "Point", "coordinates": [2.2726217096903243, 48.79550425281417]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fbab964878a45755d3ab557666a9d5661070bec7", "fields": {"departement": "92", "stop_lat": 48.79923350427697, "code_postal": "92023", "stop_lon": 2.2713245874167525, "coord": [48.79923350427697, 2.2713245874167525], "stop_id": 3909092, "stop_desc": "39 R PAUL PADE - 92023", "stop_name": "PAUL PADE"}, "geometry": {"type": "Point", "coordinates": [2.2713245874167525, 48.79923350427697]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "92eaa7b9a9d6dc92bad7ed872d348c9374bd241f", "fields": {"departement": "92", "stop_lat": 48.80006783452057, "code_postal": "92023", "stop_lon": 2.2686024728548237, "coord": [48.80006783452057, 2.2686024728548237], "stop_id": 3909093, "stop_desc": "3 R PIERRE CORBY - 92023", "stop_name": "PIERRE CORBY"}, "geometry": {"type": "Point", "coordinates": [2.2686024728548237, 48.80006783452057]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "863db193f7dee3571adaa9c52634262c4400d636", "fields": {"departement": "92", "stop_lat": 48.81354997106419, "code_postal": "92023", "stop_lon": 2.269373953742574, "coord": [48.81354997106419, 2.269373953742574], "stop_id": 3909097, "stop_desc": "19-25 R DE FLEURY - 92023", "stop_name": "FLEURY - TRICOTS"}, "geometry": {"type": "Point", "coordinates": [2.269373953742574, 48.81354997106419]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a4f09b920f3b696e57f0b9b952907b82d815253d", "fields": {"departement": "92", "stop_lat": 48.79369737783057, "code_postal": "92032", "stop_lon": 2.2720526070084377, "coord": [48.79369737783057, 2.2720526070084377], "stop_id": 3909098, "stop_desc": "0 AV DU GENERAL LECLERC - 92032", "stop_name": "FONTENAY-AUX-ROSES DIVISION LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.2720526070084377, 48.79369737783057]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "806a9bcbc7b659c6c176760478ef447c4031b1a2", "fields": {"departement": "92", "stop_lat": 48.79198246383179, "code_postal": "92032", "stop_lon": 2.275373930429335, "coord": [48.79198246383179, 2.275373930429335], "stop_id": 3909099, "stop_desc": "AVENUE GENERAL LECLERC - 92032", "stop_name": "LEONIE LAPORTE"}, "geometry": {"type": "Point", "coordinates": [2.275373930429335, 48.79198246383179]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f2c0f309b3d0652e714edf7205b34e8d4e82880a", "fields": {"departement": "92", "stop_lat": 48.79054868854144, "code_postal": "92032", "stop_lon": 2.2842582546709322, "coord": [48.79054868854144, 2.2842582546709322], "stop_id": 3909102, "stop_desc": "4 RUE D'ESTIENNE D'ORVES - 92032", "stop_name": "CARNOT - JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.2842582546709322, 48.79054868854144]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "452606560148795c26850338c1dde107ffaa10b1", "fields": {"departement": "92", "stop_lat": 48.788959603982086, "code_postal": "92032", "stop_lon": 2.2884085971458927, "coord": [48.788959603982086, 2.2884085971458927], "stop_id": 3909106, "stop_desc": "3 AVENUE JEAN MOULIN - 92032", "stop_name": "BOULEVARD DE LA REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.2884085971458927, 48.788959603982086]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fdc3193c2ababf04dffcf6b69ddeb864561d28d4", "fields": {"departement": "92", "stop_lat": 48.77363257599805, "code_postal": "92060", "stop_lon": 2.24029843310275, "coord": [48.77363257599805, 2.24029843310275], "stop_id": 3909825, "stop_desc": "CONTRE-ALLEE DE L'AVENUE DE LA DIVISION LECLERC - 92060", "stop_name": "LA BOURSIDIERE"}, "geometry": {"type": "Point", "coordinates": [2.24029843310275, 48.77363257599805]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d5ee9470c75c14163614ed5dd63133250adf2c22", "fields": {"departement": "92", "stop_lat": 48.77381241398715, "code_postal": "92060", "stop_lon": 2.2403932863130374, "coord": [48.77381241398715, 2.2403932863130374], "stop_id": 3909829, "stop_desc": "CONTRE-ALLEE DE L'AVENUE DE LA DIVISION LECLERC - 92060", "stop_name": "LA BOURSIDIERE"}, "geometry": {"type": "Point", "coordinates": [2.2403932863130374, 48.77381241398715]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d04e20bac42f7e8fba8498ae3a77ddad8eed0107", "fields": {"departement": "94", "stop_lat": 48.8357349277931, "code_postal": "94052", "stop_lon": 2.489112285575055, "coord": [48.8357349277931, 2.489112285575055], "stop_id": 3922301, "stop_desc": "2 RUE JACQUES KABLE - 94052", "stop_name": "RUE DU PORT"}, "geometry": {"type": "Point", "coordinates": [2.489112285575055, 48.8357349277931]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7cda55946480641c04611913f850c552cf67dbd7", "fields": {"departement": "94", "stop_lat": 48.838646963428566, "code_postal": "94058", "stop_lon": 2.5089176247550213, "coord": [48.838646963428566, 2.5089176247550213], "stop_id": 3922307, "stop_desc": "63 AVENUE DU GENERAL DE GAULLE - 94058", "stop_name": "MONTAIGNE"}, "geometry": {"type": "Point", "coordinates": [2.5089176247550213, 48.838646963428566]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "35647617d86a4f2b0a3ff390ff02566fb6de5a8f", "fields": {"departement": "94", "stop_lat": 48.8324244878627, "code_postal": "94058", "stop_lon": 2.5110207899145554, "coord": [48.8324244878627, 2.5110207899145554], "stop_id": 3922310, "stop_desc": "94 BOULEVARD FOCH - 94058", "stop_name": "FOCH"}, "geometry": {"type": "Point", "coordinates": [2.5110207899145554, 48.8324244878627]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b50dae76e4face0385841944d7e4612188a9f819", "fields": {"departement": "94", "stop_lat": 48.8327448820135, "code_postal": "94058", "stop_lon": 2.5131728547611707, "coord": [48.8327448820135, 2.5131728547611707], "stop_id": 3922311, "stop_desc": "FACE 107 BOULEVARD FOCH - 94058", "stop_name": "RESIDENCE DES ILES"}, "geometry": {"type": "Point", "coordinates": [2.5131728547611707, 48.8327448820135]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8e17cfc233286c1f183219b6fa02ca3367ef4473", "fields": {"departement": "94", "stop_lat": 48.83424543925855, "code_postal": "94015", "stop_lon": 2.5193996628002555, "coord": [48.83424543925855, 2.5193996628002555], "stop_id": 3922313, "stop_desc": "5 PL DAGUERRE - 94015", "stop_name": "MAIRIE DE BRY-SUR-MARNE"}, "geometry": {"type": "Point", "coordinates": [2.5193996628002555, 48.83424543925855]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5a73126d35acaf74f89b208e3c3143a204a2656d", "fields": {"departement": "94", "stop_lat": 48.83684957358511, "code_postal": "94015", "stop_lon": 2.520879219789748, "coord": [48.83684957358511, 2.520879219789748], "stop_id": 3922314, "stop_desc": "32 GRANDE RUE CHARLES DE GAULLE - 94015", "stop_name": "RUE DU PRESSOIR"}, "geometry": {"type": "Point", "coordinates": [2.520879219789748, 48.83684957358511]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0d1e5a6e48f9995c9d1c3fe701b878ba45253aaa", "fields": {"departement": "94", "stop_lat": 48.84218500063309, "code_postal": "94015", "stop_lon": 2.5229405575565873, "coord": [48.84218500063309, 2.5229405575565873], "stop_id": 3922316, "stop_desc": "FACE 23 BOULEVARD DU GENERAL GALLIENI - 94015", "stop_name": "PLACE CARNOT"}, "geometry": {"type": "Point", "coordinates": [2.5229405575565873, 48.84218500063309]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "424a6666d8fc0cf6097b7c7b8c930be30ed799aa", "fields": {"departement": "75", "stop_lat": 48.87984885258133, "code_postal": "75117", "stop_lon": 2.2830904982986158, "coord": [48.87984885258133, 2.2830904982986158], "stop_id": 3926133, "stop_desc": "11 BIS BOULEVARD PERSHING - 75117", "stop_name": "PORTE MAILLOT - PERSHING"}, "geometry": {"type": "Point", "coordinates": [2.2830904982986158, 48.87984885258133]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0eb91c11580ec45c969251dd244211c5d213a7af", "fields": {"departement": "75", "stop_lat": 48.887277052890184, "code_postal": "75117", "stop_lon": 2.2947893290138164, "coord": [48.887277052890184, 2.2947893290138164], "stop_id": 3926139, "stop_desc": "189 RUE DE COURCELLES - 75117", "stop_name": "PORTE DE COURCELLES"}, "geometry": {"type": "Point", "coordinates": [2.2947893290138164, 48.887277052890184]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "61b8479cc033749c28fd510de966393171055018", "fields": {"departement": "75", "stop_lat": 48.887925614289436, "code_postal": "75117", "stop_lon": 2.2991771211380807, "coord": [48.887925614289436, 2.2991771211380807], "stop_id": 3926142, "stop_desc": "134 BOULEVARD BERTHIER - 75117", "stop_name": "GOURGAUD - PAUL ADAM"}, "geometry": {"type": "Point", "coordinates": [2.2991771211380807, 48.887925614289436]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a74db5c49bc1980f53e294b7f7dcbc59ad1a5439", "fields": {"departement": "75", "stop_lat": 48.88965246545579, "code_postal": "75117", "stop_lon": 2.3035234357239616, "coord": [48.88965246545579, 2.3035234357239616], "stop_id": 3926143, "stop_desc": "FACE 100 BOULEVARD BERTHIER - 75117", "stop_name": "PORTE D'ASNIERES"}, "geometry": {"type": "Point", "coordinates": [2.3035234357239616, 48.88965246545579]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a02835646812c6afad765656d2a6afbf7956a896", "fields": {"departement": "75", "stop_lat": 48.89157657185209, "code_postal": "75117", "stop_lon": 2.3066705502169684, "coord": [48.89157657185209, 2.3066705502169684], "stop_id": 3926146, "stop_desc": "66-68 BOULEVARD BERTHIER - 75117", "stop_name": "LES HAUTS DE MALESHERBES"}, "geometry": {"type": "Point", "coordinates": [2.3066705502169684, 48.89157657185209]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "722087ae05522bc715471f4d50afc1bcfd527479", "fields": {"departement": "75", "stop_lat": 48.897430330084035, "code_postal": "75117", "stop_lon": 2.3234193883003913, "coord": [48.897430330084035, 2.3234193883003913], "stop_id": 3926151, "stop_desc": "49 BOULEVARD BESSIERES - 75117", "stop_name": "PORTE POUCHET"}, "geometry": {"type": "Point", "coordinates": [2.3234193883003913, 48.897430330084035]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6d873e9f955cfaf685528326ceed7b73bfdb1537", "fields": {"departement": "75", "stop_lat": 48.89743950276973, "code_postal": "75117", "stop_lon": 2.3251232401258224, "coord": [48.89743950276973, 2.3251232401258224], "stop_id": 3926153, "stop_desc": "31 BOULEVARD BESSIERES - 75117", "stop_name": "LOUIS LOUCHEUR"}, "geometry": {"type": "Point", "coordinates": [2.3251232401258224, 48.89743950276973]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1964c84b76a12c47fa19a6cff48c0ef5d469fd8b", "fields": {"departement": "75", "stop_lat": 48.89779951301287, "code_postal": "75118", "stop_lon": 2.3325656429748887, "coord": [48.89779951301287, 2.3325656429748887], "stop_id": 3926158, "stop_desc": "168 BOULEVARD NEY - 75118", "stop_name": "FACULTE XAVIER BICHAT"}, "geometry": {"type": "Point", "coordinates": [2.3325656429748887, 48.89779951301287]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a14f7c7579ee983a9e19cb72ef57280fbb997f57", "fields": {"departement": "75", "stop_lat": 48.89765580116296, "code_postal": "75118", "stop_lon": 2.33571439177938, "coord": [48.89765580116296, 2.33571439177938], "stop_id": 3926159, "stop_desc": "101-103 BOULEVARD NEY - 75118", "stop_name": "PORTE DE MONTMARTRE"}, "geometry": {"type": "Point", "coordinates": [2.33571439177938, 48.89765580116296]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a1eb549772008d2f01c0777fc446e712c0b8afdb", "fields": {"departement": "75", "stop_lat": 48.89785327113471, "code_postal": "75118", "stop_lon": 2.3450788436751133, "coord": [48.89785327113471, 2.3450788436751133], "stop_id": 3926163, "stop_desc": "BOULEVARD NEY - 75118", "stop_name": "PORTE DE CLIGNANCOURT"}, "geometry": {"type": "Point", "coordinates": [2.3450788436751133, 48.89785327113471]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "533615068a57a2fea18264b897bd58964283ea2b", "fields": {"departement": "75", "stop_lat": 48.89815807207283, "code_postal": "75118", "stop_lon": 2.3528349419067323, "coord": [48.89815807207283, 2.3528349419067323], "stop_id": 3926165, "stop_desc": "FACE 78 BOULEVARD NEY - 75118", "stop_name": "PORTE DES POISSONNIERS"}, "geometry": {"type": "Point", "coordinates": [2.3528349419067323, 48.89815807207283]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ef04447981b273be5b88252159bde7e974ca7cb8", "fields": {"departement": "75", "stop_lat": 48.841852199848134, "code_postal": "75115", "stop_lon": 2.3200710001404334, "coord": [48.841852199848134, 2.3200710001404334], "stop_id": 3926186, "stop_desc": "PLACE RAOUL DAUTRY - 75115", "stop_name": "GARE MONTPARNASSE"}, "geometry": {"type": "Point", "coordinates": [2.3200710001404334, 48.841852199848134]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "17a6605c9d0dfe7abd4cdc136f7f78cbdd3e5ac0", "fields": {"departement": "75", "stop_lat": 48.84195996643212, "code_postal": "75115", "stop_lon": 2.3194990816420824, "coord": [48.84195996643212, 2.3194990816420824], "stop_id": 3926187, "stop_desc": "8-10 BOULEVARD DE VAUGIRARD - 75115", "stop_name": "GARE MONTPARNASSE"}, "geometry": {"type": "Point", "coordinates": [2.3194990816420824, 48.84195996643212]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f4627c25fc88537db6f38910393d5f2a9ba065da", "fields": {"departement": "75", "stop_lat": 48.84483663038162, "code_postal": "75106", "stop_lon": 2.3246317107880734, "coord": [48.84483663038162, 2.3246317107880734], "stop_id": 3926190, "stop_desc": "146 BIS RUE DE RENNES - 75106", "stop_name": "RENNES - LITTRE"}, "geometry": {"type": "Point", "coordinates": [2.3246317107880734, 48.84483663038162]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4e47f08bd53173cb43d2979138c3da1a20661133", "fields": {"departement": "75", "stop_lat": 48.846103994722135, "code_postal": "75106", "stop_lon": 2.325870580821929, "coord": [48.846103994722135, 2.325870580821929], "stop_id": 3926192, "stop_desc": "128 RUE DE RENNES - 75106", "stop_name": "RENNES - SAINT-PLACIDE"}, "geometry": {"type": "Point", "coordinates": [2.325870580821929, 48.846103994722135]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c22f31074fcffa6830a49b9fbc2b592d1b750af7", "fields": {"departement": "75", "stop_lat": 48.84879147223759, "code_postal": "75106", "stop_lon": 2.328402948470149, "coord": [48.84879147223759, 2.328402948470149], "stop_id": 3926194, "stop_desc": "108 RUE DE RENNES - 75106", "stop_name": "RENNES - D'ASSAS"}, "geometry": {"type": "Point", "coordinates": [2.328402948470149, 48.84879147223759]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a871142f1f624b276afa822f8d94c1948d52b1b5", "fields": {"departement": "75", "stop_lat": 48.851065440895766, "code_postal": "75106", "stop_lon": 2.330472594876513, "coord": [48.851065440895766, 2.330472594876513], "stop_id": 3926196, "stop_desc": "72-74 RUE DE RENNES - 75106", "stop_name": "MICHEL DEBRE"}, "geometry": {"type": "Point", "coordinates": [2.330472594876513, 48.851065440895766]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eed610a46e1b2cae88d882cf7c6b9afbefa2ada5", "fields": {"departement": "75", "stop_lat": 48.85436397838255, "code_postal": "75106", "stop_lon": 2.3336727493054252, "coord": [48.85436397838255, 2.3336727493054252], "stop_id": 3926197, "stop_desc": "PLACE SAINT-GERMAIN DES PRES - 75106", "stop_name": "SAINT-GERMAIN-DES-PRES"}, "geometry": {"type": "Point", "coordinates": [2.3336727493054252, 48.85436397838255]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8fc9b12dc750e0d44204d4db19a90ab310c89b2d", "fields": {"departement": "75", "stop_lat": 48.85328544303421, "code_postal": "75106", "stop_lon": 2.3325015699609604, "coord": [48.85328544303421, 2.3325015699609604], "stop_id": 3926198, "stop_desc": "54 RUE DE RENNES - 75106", "stop_name": "SAINT-GERMAIN-DES-PRES"}, "geometry": {"type": "Point", "coordinates": [2.3325015699609604, 48.85328544303421]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2d35882c5bf7a58ecd9d10b89a17c1bbcbb55f98", "fields": {"departement": "75", "stop_lat": 48.85826452640826, "code_postal": "75106", "stop_lon": 2.333713341644251, "coord": [48.85826452640826, 2.333713341644251], "stop_id": 3926200, "stop_desc": "FACE 21 QUAI MALAQUAIS - 75106", "stop_name": "PONT DU CARROUSEL - QUAI VOLTAIRE"}, "geometry": {"type": "Point", "coordinates": [2.333713341644251, 48.85826452640826]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6b2513268453d9102b0cdb9a97049415685f1b4d", "fields": {"departement": "75", "stop_lat": 48.87085576401549, "code_postal": "75109", "stop_lon": 2.3317506483025654, "coord": [48.87085576401549, 2.3317506483025654], "stop_id": 3926211, "stop_desc": "1 RUE AUBER - 75109", "stop_name": "OPERA"}, "geometry": {"type": "Point", "coordinates": [2.3317506483025654, 48.87085576401549]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8b4df54d24a5b3ce4177beaae2afabc14e798b01", "fields": {"departement": "75", "stop_lat": 48.897071643161446, "code_postal": "75118", "stop_lon": 2.338263356998402, "coord": [48.897071643161446, 2.338263356998402], "stop_id": 3926234, "stop_desc": "96 RUE DU POTEAU - 75118", "stop_name": "POTEAU - BELLIARD"}, "geometry": {"type": "Point", "coordinates": [2.338263356998402, 48.897071643161446]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ed4933093ca6cf382b93190230e0cbe67bb7980b", "fields": {"departement": "75", "stop_lat": 48.88449829296056, "code_postal": "75118", "stop_lon": 2.328982831569093, "coord": [48.88449829296056, 2.328982831569093], "stop_id": 3926241, "stop_desc": "132-134 BOULEVARD DE CLICHY - 75118", "stop_name": "PLACE DE CLICHY - CAULAINCOURT"}, "geometry": {"type": "Point", "coordinates": [2.328982831569093, 48.88449829296056]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8b67ddd4c9707bf30a82c1efcbd50deddc9e2dc0", "fields": {"departement": "75", "stop_lat": 48.8579858907306, "code_postal": "75107", "stop_lon": 2.332936994185843, "coord": [48.8579858907306, 2.332936994185843], "stop_id": 3926244, "stop_desc": "4 RUE DES SAINTS-PERES - 75107", "stop_name": "PONT DU CARROUSEL - QUAI VOLTAIRE"}, "geometry": {"type": "Point", "coordinates": [2.332936994185843, 48.8579858907306]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "30c0cd424b1db6d47b8efe420a9f8024715a2c5c", "fields": {"departement": "75", "stop_lat": 48.827000307298825, "code_postal": "75115", "stop_lon": 2.300651118741489, "coord": [48.827000307298825, 2.300651118741489], "stop_id": 3926253, "stop_desc": "8 AVENUE DE LA PORTE DE BRANCION - 75115", "stop_name": "BARTHOLOME"}, "geometry": {"type": "Point", "coordinates": [2.300651118741489, 48.827000307298825]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "44c0fa74014c9da838feb3375ce6efaf0799031d", "fields": {"departement": "75", "stop_lat": 48.8534604456707, "code_postal": "75120", "stop_lon": 2.4109758338499856, "coord": [48.8534604456707, 2.4109758338499856], "stop_id": 3926258, "stop_desc": "8 AVENUE DE LA PORTE DE MONTREUIL - 75120", "stop_name": "PLACE DE LA PORTE DE MONTREUIL"}, "geometry": {"type": "Point", "coordinates": [2.4109758338499856, 48.8534604456707]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1291520ec613dfa09bef025a82fae5d019a9b1c3", "fields": {"departement": "75", "stop_lat": 48.829830695271106, "code_postal": "75113", "stop_lon": 2.376120009344837, "coord": [48.829830695271106, 2.376120009344837], "stop_id": 1166827, "stop_desc": "Face au 62 rue du Chevaleret - 75113", "stop_name": "Biblioth\u00e8que-Fran\u00e7ois Mitterrand"}, "geometry": {"type": "Point", "coordinates": [2.376120009344837, 48.829830695271106]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "38f1eef7e103bbc340753f5cd9c068b5ea78ac54", "fields": {"departement": "75", "stop_lat": 48.844652150982945, "code_postal": "75112", "stop_lon": 2.37310814754528, "coord": [48.844652150982945, 2.37310814754528], "stop_id": 1166832, "stop_desc": "Rue de Bercy - 75112", "stop_name": "Gare de Lyon"}, "geometry": {"type": "Point", "coordinates": [2.37310814754528, 48.844652150982945]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4f8e84c36036730bb68308f7a0c0a6ffc9bdb73e", "fields": {"departement": "75", "stop_lat": 48.82281706023495, "code_postal": "75114", "stop_lon": 2.325072625148001, "coord": [48.82281706023495, 2.325072625148001], "stop_id": 1735, "stop_desc": "L\u00e9gion Etrang\u00e8re (rue de la) - 75114", "stop_name": "Porte d'Orl\u00e9ans (G\u00e9n\u00e9ral Leclerc)"}, "geometry": {"type": "Point", "coordinates": [2.325072625148001, 48.82281706023495]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "57b7b9a45b12f95b34d27b23da953e5247b41efd", "fields": {"departement": "75", "stop_lat": 48.81990244616168, "code_postal": "75113", "stop_lon": 2.364965598290819, "coord": [48.81990244616168, 2.364965598290819], "stop_id": 1740, "stop_desc": "Mass\u00e9na (130 boulevard, vers l'avenue de Choisy) - 75113", "stop_name": "Porte de Choisy"}, "geometry": {"type": "Point", "coordinates": [2.364965598290819, 48.81990244616168]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8f1ee8c3dc25d2ecc539dca81ab0fc847dd6b872", "fields": {"departement": "75", "stop_lat": 48.853599907885794, "code_postal": "75105", "stop_lon": 2.3439962410940125, "coord": [48.853599907885794, 2.3439962410940125], "stop_id": 1729, "stop_desc": "Saint-Michel (place, vers le 5 boulevard Saint-Michel) - 75105", "stop_name": "Saint-Michel"}, "geometry": {"type": "Point", "coordinates": [2.3439962410940125, 48.853599907885794]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a9845187a2eb850e42f8994cd0fe7e8e237eb50f", "fields": {"departement": "75", "stop_lat": 48.85589133781551, "code_postal": "75107", "stop_lon": 2.325704993899314, "coord": [48.85589133781551, 2.325704993899314], "stop_id": 1710, "stop_desc": "Raspail (terre-plein face au 2 boulevard) - 75107", "stop_name": "Rue du Bac"}, "geometry": {"type": "Point", "coordinates": [2.325704993899314, 48.85589133781551]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5189b1ffe473983ad067af362337191dbf6edfbb", "fields": {"departement": "75", "stop_lat": 48.894436060297956, "code_postal": "75117", "stop_lon": 2.313565665465226, "coord": [48.894436060297956, 2.313565665465226], "stop_id": 1741, "stop_desc": "Porte de Clichy (2 avenue de la) - 75117", "stop_name": "Porte de Clichy"}, "geometry": {"type": "Point", "coordinates": [2.313565665465226, 48.894436060297956]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8a6d1eceea4c5204de36820acf714e2126873113", "fields": {"departement": "75", "stop_lat": 48.8509825598235, "code_postal": "75107", "stop_lon": 2.31442986460027, "coord": [48.8509825598235, 2.31442986460027], "stop_id": 1719, "stop_desc": "Avenue de Villars - 75107", "stop_name": "Saint-Fran\u00e7ois-Xavier"}, "geometry": {"type": "Point", "coordinates": [2.31442986460027, 48.8509825598235]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dcb747aabc73dae49acfe080da86a047f16886dd", "fields": {"departement": "75", "stop_lat": 48.8473528769588, "code_postal": "75112", "stop_lon": 2.3858425400402448, "coord": [48.8473528769588, 2.3858425400402448], "stop_id": 1698, "stop_desc": "Diderot (73 boulevard) - 75112", "stop_name": "Reuilly-Diderot"}, "geometry": {"type": "Point", "coordinates": [2.3858425400402448, 48.8473528769588]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "905b7b8b1f175a2475aef83f30a4256ba228fd79", "fields": {"departement": "75", "stop_lat": 48.82776532658967, "code_postal": "75114", "stop_lon": 2.3043123507630607, "coord": [48.82776532658967, 2.3043123507630607], "stop_id": 1749, "stop_desc": "Brune (9 boulevard) - 75114", "stop_name": "Porte de Vanves"}, "geometry": {"type": "Point", "coordinates": [2.3043123507630607, 48.82776532658967]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cdafdffa9a752572c314fe0079768dea2928ad52", "fields": {"departement": "75", "stop_lat": 48.87382117233675, "code_postal": "75120", "stop_lon": 2.384886372197903, "coord": [48.87382117233675, 2.384886372197903], "stop_id": 1758, "stop_desc": "Simon Bolivar (4 avenue) - 75120", "stop_name": "Pyr\u00e9n\u00e9es"}, "geometry": {"type": "Point", "coordinates": [2.384886372197903, 48.87382117233675]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ccefd4ef92d820b9f5822d505f2487db1c0f8fb2", "fields": {"departement": "75", "stop_lat": 48.84701184016864, "code_postal": "75106", "stop_lon": 2.327055111355132, "coord": [48.84701184016864, 2.327055111355132], "stop_id": 1731, "stop_desc": "Rue de Rennes - 75106", "stop_name": "Saint-Placide"}, "geometry": {"type": "Point", "coordinates": [2.327055111355132, 48.84701184016864]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "11cce110ef5a82693ec792d3ca490730bcd1e42d", "fields": {"departement": "75", "stop_lat": 48.8630891350352, "code_postal": "75116", "stop_lon": 2.2868403784945937, "coord": [48.8630891350352, 2.2868403784945937], "stop_id": 1637, "stop_desc": "Trocad\u00e9ro et Onze-Novembre (place du, avenue Paul Doumer) - 75116", "stop_name": "Trocad\u00e9ro"}, "geometry": {"type": "Point", "coordinates": [2.2868403784945937, 48.8630891350352]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f6a83620e71b8b98511523aaaa191baf6cc81e84", "fields": {"departement": "75", "stop_lat": 48.85895618133369, "code_postal": "75101", "stop_lon": 2.3473612552142624, "coord": [48.85895618133369, 2.3473612552142624], "stop_id": 1166834, "stop_desc": "Victoria (7 avenue, 4 rue Saint-Martin) - 75101", "stop_name": "Ch\u00e2telet"}, "geometry": {"type": "Point", "coordinates": [2.3473612552142624, 48.85895618133369]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "db4006e25acf1f8c2f697f0a68c644cb015ee7c8", "fields": {"departement": "75", "stop_lat": 48.891543930630554, "code_postal": "75118", "stop_lon": 2.3493711153819112, "coord": [48.891543930630554, 2.3493711153819112], "stop_id": 1655, "stop_desc": "Poissonniers (69 rue des) - 75118", "stop_name": "Marcadet-Poissonniers"}, "geometry": {"type": "Point", "coordinates": [2.3493711153819112, 48.891543930630554]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d9c86f7377e93a9dd9e22f45156d66307a00418c", "fields": {"departement": "75", "stop_lat": 48.85766372576006, "code_postal": "75111", "stop_lon": 2.3800362967955064, "coord": [48.85766372576006, 2.3800362967955064], "stop_id": 1633, "stop_desc": "Voltaire (130 boulevard) - 75111", "stop_name": "Voltaire (L\u00e9on Blum)"}, "geometry": {"type": "Point", "coordinates": [2.3800362967955064, 48.85766372576006]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "02c9eb6d7ab6723dd671fd69a6f5925943670c18", "fields": {"departement": "94", "stop_lat": 48.80376966328267, "code_postal": "94076", "stop_lon": 2.3639093063890435, "coord": [48.80376966328267, 2.3639093063890435], "stop_id": 1639, "stop_desc": "Rue du Dauphin - 94076", "stop_name": "Villejuif-L\u00e9o Lagrange"}, "geometry": {"type": "Point", "coordinates": [2.3639093063890435, 48.80376966328267]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "28bcde2e5562132a020e72ffa83dd812a5d1ffb9", "fields": {"departement": "75", "stop_lat": 48.86741082883539, "code_postal": "75111", "stop_lon": 2.363587825558049, "coord": [48.86741082883539, 2.363587825558049], "stop_id": 1647, "stop_desc": "Saint-Martin (9 boulevard) - 75111", "stop_name": "R\u00e9publique"}, "geometry": {"type": "Point", "coordinates": [2.363587825558049, 48.86741082883539]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b53e9780dc1467d8011b2235b9b54e6c90989bb2", "fields": {"departement": "75", "stop_lat": 48.869578970578424, "code_postal": "75108", "stop_lon": 2.324162488791942, "coord": [48.869578970578424, 2.324162488791942], "stop_id": 1166838, "stop_desc": "Tronchet (2 rue, 3 rue Tronchet) - 75108", "stop_name": "Madeleine"}, "geometry": {"type": "Point", "coordinates": [2.324162488791942, 48.869578970578424]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3c01282f916484670f0df3f0ef0c0174fe3eed34", "fields": {"departement": "75", "stop_lat": 48.84141844267774, "code_postal": "75115", "stop_lon": 2.307993649386661, "coord": [48.84141844267774, 2.307993649386661], "stop_id": 1632, "stop_desc": "Volontaires (25 rue des) - 75115", "stop_name": "Volontaires"}, "geometry": {"type": "Point", "coordinates": [2.307993649386661, 48.84141844267774]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6009436ea1c513b886c48c3bafffcb74b56a8042", "fields": {"departement": "75", "stop_lat": 48.88132429394468, "code_postal": "75117", "stop_lon": 2.3165967615088174, "coord": [48.88132429394468, 2.3165967615088174], "stop_id": 1629, "stop_desc": "Parc de Monceau - 75117", "stop_name": "Villiers"}, "geometry": {"type": "Point", "coordinates": [2.3165967615088174, 48.88132429394468]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5c451c700875542be90d2f2627f5614c3811604c", "fields": {"departement": "77", "stop_lat": 48.83972842272958, "code_postal": "77468", "stop_lon": 2.655903115145281, "coord": [48.83972842272958, 2.655903115145281], "stop_id": 1636, "stop_desc": "Rue L\u00e9on Blum - 77468", "stop_name": "Torcy"}, "geometry": {"type": "Point", "coordinates": [2.655903115145281, 48.83972842272958]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9055b9add64b8a1faac325354c3eb8f76ec3b3c9", "fields": {"departement": "75", "stop_lat": 48.84478304833005, "code_postal": "75106", "stop_lon": 2.3284444832927207, "coord": [48.84478304833005, 2.3284444832927207], "stop_id": 1842, "stop_desc": "Raspail (terre-plein face au 112 boulevard, 123 bd Raspail/35 r. N-D des Champs) - 75106", "stop_name": "Notre-Dame des Champs"}, "geometry": {"type": "Point", "coordinates": [2.3284444832927207, 48.84478304833005]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2d4e487764dbfaa43761aef5c93660a6b9d1c41a", "fields": {"departement": "75", "stop_lat": 48.87681262539273, "code_postal": "75110", "stop_lon": 2.3582514400829155, "coord": [48.87681262539273, 2.3582514400829155], "stop_id": 2076, "stop_desc": "Strasbourg (terre plein face au 93 boulevard de) - 75110", "stop_name": "Gare de l'Est (Verdun)"}, "geometry": {"type": "Point", "coordinates": [2.3582514400829155, 48.87681262539273]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1f8782bffca1176347c0ca25f2df28abc7a01c50", "fields": {"departement": "93", "stop_lat": 48.895799232549, "code_postal": "93008", "stop_lon": 2.4248572983975945, "coord": [48.895799232549, 2.4248572983975945], "stop_id": 2072, "stop_desc": "Paris (7 rue de, Bobigny Bus) - 93008", "stop_name": "Bobigny-Pantin (Raymond Queneau)"}, "geometry": {"type": "Point", "coordinates": [2.4248572983975945, 48.895799232549]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b45b1e00501fa8cee99d77c3e498d95047f8a9bd", "fields": {"departement": "93", "stop_lat": 48.93210876263909, "code_postal": "93005", "stop_lon": 2.493309562581326, "coord": [48.93210876263909, 2.493309562581326], "stop_id": 2056, "stop_desc": "General De Gaulle (5, place) - 93005", "stop_name": "Aulnay-sous-Bois"}, "geometry": {"type": "Point", "coordinates": [2.493309562581326, 48.93210876263909]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a9b0712a9ef3aa137bae525b8499d69eb1b017c0", "fields": {"departement": "75", "stop_lat": 48.846852151949776, "code_postal": "75115", "stop_lon": 2.2954488279344742, "coord": [48.846852151949776, 2.2954488279344742], "stop_id": 2057, "stop_desc": "Rue du Commerce - 75115", "stop_name": "Avenue Emile-Zola"}, "geometry": {"type": "Point", "coordinates": [2.2954488279344742, 48.846852151949776]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4405b68e65d6cd14efcd7592131d963a1ebf8af4", "fields": {"departement": "75", "stop_lat": 48.86685615476034, "code_postal": "75116", "stop_lon": 2.2900380734450088, "coord": [48.86685615476034, 2.2900380734450088], "stop_id": 2073, "stop_desc": "Kl\u00e9ber (57 avenue) - 75116", "stop_name": "Boissi\u00e8re"}, "geometry": {"type": "Point", "coordinates": [2.2900380734450088, 48.86685615476034]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8d4498bb4e15f09ef1877b239c21adf75e758b3b", "fields": {"departement": "75", "stop_lat": 48.880790122828465, "code_postal": "75119", "stop_lon": 2.374155126662647, "coord": [48.880790122828465, 2.374155126662647], "stop_id": 2075, "stop_desc": "Simon Bolivar (125 avenue) - 75119", "stop_name": "Bolivar"}, "geometry": {"type": "Point", "coordinates": [2.374155126662647, 48.880790122828465]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5afcf687b6b35b170c2ee583f0d92bd6fa0622f6", "fields": {"departement": "94", "stop_lat": 48.79325579634385, "code_postal": "94016", "stop_lon": 2.321324996317998, "coord": [48.79325579634385, 2.321324996317998], "stop_id": 2059, "stop_desc": "Avenue Aristide Briand - 94016", "stop_name": "Bagneux"}, "geometry": {"type": "Point", "coordinates": [2.321324996317998, 48.79325579634385]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f16e5490d7a3e985c4d798645f1a90527f6593b7", "fields": {"departement": "75", "stop_lat": 48.87285998941257, "code_postal": "75109", "stop_lon": 2.3330447509269225, "coord": [48.87285998941257, 2.3330447509269225], "stop_id": 1972, "stop_desc": "La Fayette (rue, face aux Galeries La Fayette) - 75109", "stop_name": "Chauss\u00e9e d'Antin (La Fayette)"}, "geometry": {"type": "Point", "coordinates": [2.3330447509269225, 48.87285998941257]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "483fed863a61eab17db6a9cb05a6e24e345b9a79", "fields": {"departement": "75", "stop_lat": 48.833998236748336, "code_postal": "75114", "stop_lon": 2.333238501158801, "coord": [48.833998236748336, 2.333238501158801], "stop_id": 1997, "stop_desc": "G\u00e9n\u00e9ral Leclerc (4 avenue du, 2 rue Daguerre) - 75114", "stop_name": "Denfert-Rochereau"}, "geometry": {"type": "Point", "coordinates": [2.333238501158801, 48.833998236748336]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "779a74a85d6572398e89ef65eb980e7ccea133ce", "fields": {"departement": "93", "stop_lat": 48.857999073258, "code_postal": "93048", "stop_lon": 2.435866895674707, "coord": [48.857999073258, 2.435866895674707], "stop_id": 1993, "stop_desc": "Rue de Paris - 93048", "stop_name": "Croix-de-Chavaux (Jacques Duclos)"}, "geometry": {"type": "Point", "coordinates": [2.435866895674707, 48.857999073258]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "16ae3946b528937b4e5e781db37cd5741eaa4717", "fields": {"departement": "92", "stop_lat": 48.84228014352973, "code_postal": "92012", "stop_lon": 2.238862975367271, "coord": [48.84228014352973, 2.238862975367271], "stop_id": 2004, "stop_desc": "Jean Jaur\u00e8s (23 boulevard) - 92012", "stop_name": "Boulogne-Jean-Jaur\u00e8s"}, "geometry": {"type": "Point", "coordinates": [2.238862975367271, 48.84228014352973]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "08cba454ae20090c6cc8173d021cc525833329fd", "fields": {"departement": "75", "stop_lat": 48.869010427937624, "code_postal": "75108", "stop_lon": 2.3102531808960265, "coord": [48.869010427937624, 2.3102531808960265], "stop_id": 1945, "stop_desc": "Palais de la D\u00e9couverte - 75108", "stop_name": "Franklin-Roosevelt"}, "geometry": {"type": "Point", "coordinates": [2.3102531808960265, 48.869010427937624]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "165709f372fe4c7ca4b09d7c4273b2ac168ad710", "fields": {"departement": "75", "stop_lat": 48.856767949540505, "code_postal": "75111", "stop_lon": 2.3707738583843816, "coord": [48.856767949540505, 2.3707738583843816], "stop_id": 2008, "stop_desc": "Richard Lenoir (21 boulevard) - 75111", "stop_name": "Br\u00e9guet-Sabin"}, "geometry": {"type": "Point", "coordinates": [2.3707738583843816, 48.856767949540505]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0288fc9372ed30df32e8f355608cfe8a6f39836c", "fields": {"departement": "92", "stop_lat": 48.74393256350146, "code_postal": "92002", "stop_lon": 2.297067334618335, "coord": [48.74393256350146, 2.297067334618335], "stop_id": 1941, "stop_desc": "Prosper Lecoute (passage) - 92002", "stop_name": "Fontaine-Michalon"}, "geometry": {"type": "Point", "coordinates": [2.297067334618335, 48.74393256350146]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c93c0cc12482509fe840529f3e02d141cc528249", "fields": {"departement": "91", "stop_lat": 48.70076301806364, "code_postal": "91272", "stop_lon": 2.099100527058702, "coord": [48.70076301806364, 2.099100527058702], "stop_id": 1988, "stop_desc": "Rue Fernand Leger - 91272", "stop_name": "Courcelle-sur-Yvette"}, "geometry": {"type": "Point", "coordinates": [2.099100527058702, 48.70076301806364]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7a2252a37533b9eb47f991bfaa7cf9350c6d6871", "fields": {"departement": "78", "stop_lat": 48.885142071685785, "code_postal": "78146", "stop_lon": 2.155625867018615, "coord": [48.885142071685785, 2.155625867018615], "stop_id": 1970, "stop_desc": "Paul Flament (3 rue) - 78146", "stop_name": "Chatou-Croissy"}, "geometry": {"type": "Point", "coordinates": [2.155625867018615, 48.885142071685785]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3cda1dab1a584634b3039793dfdde4976c37ff00", "fields": {"departement": "75", "stop_lat": 48.84555978708341, "code_postal": "75112", "stop_lon": 2.37344920496318, "coord": [48.84555978708341, 2.37344920496318], "stop_id": 1955, "stop_desc": "Rue de Bercy - 75112", "stop_name": "Gare de Lyon"}, "geometry": {"type": "Point", "coordinates": [2.37344920496318, 48.84555978708341]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "701eccef2c369e102c7ab8b69dbfecf4cfa301a5", "fields": {"departement": "94", "stop_lat": 48.79599413239317, "code_postal": "94076", "stop_lon": 2.3682314519156806, "coord": [48.79599413239317, 2.3682314519156806], "stop_id": 1696, "stop_desc": "Maxime Gorky (boulevard, c\u00f4t\u00e9 pair) - 94076", "stop_name": "Villejuif-Paul Vaillant Couturier (H\u00f4pital Paul Brousse)"}, "geometry": {"type": "Point", "coordinates": [2.3682314519156806, 48.79599413239317]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e02d1903193bc659cd83e688836ef01d4d560166", "fields": {"departement": "75", "stop_lat": 48.86963236518746, "code_postal": "75102", "stop_lon": 2.35450206308924, "coord": [48.86963236518746, 2.35450206308924], "stop_id": 1677, "stop_desc": "Saint-Denis (9 rue, 114 boulevard de S\u00e9bastopol) - 75102", "stop_name": "Strasbourg-Saint-Denis"}, "geometry": {"type": "Point", "coordinates": [2.35450206308924, 48.86963236518746]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fabe9232c6c7eb4d87a680f6fed48bbdb9f7c1b3", "fields": {"departement": "75", "stop_lat": 48.869864912484076, "code_postal": "75116", "stop_lon": 2.285226207250439, "coord": [48.869864912484076, 2.285226207250439], "stop_id": 1694, "stop_desc": "Victor Hugo (4 place, angle avec l'avenue Raymond Poincarr\u00e9) - 75116", "stop_name": "Victor Hugo"}, "geometry": {"type": "Point", "coordinates": [2.285226207250439, 48.869864912484076]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "54c5f91c26357185c4278bfe7d568c01ee951696", "fields": {"departement": "75", "stop_lat": 48.84499615085685, "code_postal": "75115", "stop_lon": 2.310864830044154, "coord": [48.84499615085685, 2.310864830044154], "stop_id": 1665, "stop_desc": "Garibaldi (terre-plein face au 94 boulevard) - 75115", "stop_name": "S\u00e8vres-Lecourbe"}, "geometry": {"type": "Point", "coordinates": [2.310864830044154, 48.84499615085685]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "447999d0d2cdbc85c5b609eda45c418ae12bb101", "fields": {"departement": "78", "stop_lat": 48.89830860836054, "code_postal": "78551", "stop_lon": 2.09511210577148, "coord": [48.89830860836054, 2.09511210577148], "stop_id": 1670, "stop_desc": "Surintendance (3 rue de la) - 78551", "stop_name": "Saint-Germain-en-Laye"}, "geometry": {"type": "Point", "coordinates": [2.09511210577148, 48.89830860836054]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3431ccfcf56de5cc39828cbcb67c6fa9b966de02", "fields": {"departement": "78", "stop_lat": 48.70286868424979, "code_postal": "78575", "stop_lon": 2.070600214521146, "coord": [48.70286868424979, 2.070600214521146], "stop_id": 1673, "stop_desc": "Ditte (2 rue) - 78575", "stop_name": "Saint-R\u00e9my-l\u00e8s-Chevreuse"}, "geometry": {"type": "Point", "coordinates": [2.070600214521146, 48.70286868424979]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8733628ae790a09c5af78702e3546f1c063de9dc", "fields": {"departement": "75", "stop_lat": 48.88407198636439, "code_postal": "75119", "stop_lon": 2.3688700627777948, "coord": [48.88407198636439, 2.3688700627777948], "stop_id": 1676, "stop_desc": "Villette (244/171 boulevard de la) - 75119", "stop_name": "Stalingrad"}, "geometry": {"type": "Point", "coordinates": [2.3688700627777948, 48.88407198636439]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bd6a9eb390a6d9189898decc512a8ffe34dfdd37", "fields": {"departement": "75", "stop_lat": 48.88418929420877, "code_postal": "75119", "stop_lon": 2.367030441974567, "coord": [48.88418929420877, 2.367030441974567], "stop_id": 1674, "stop_desc": "Villette (244/171 boulevard de la) - 75119", "stop_name": "Stalingrad"}, "geometry": {"type": "Point", "coordinates": [2.367030441974567, 48.88418929420877]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4e2f4e1b61e1587178f65c3a9a621ce4822e7ca6", "fields": {"departement": "93", "stop_lat": 48.93601068591127, "code_postal": "93071", "stop_lon": 2.5346809010269817, "coord": [48.93601068591127, 2.5346809010269817], "stop_id": 1664, "stop_desc": "Gare (place de la) - 93071", "stop_name": "Sevran Livry"}, "geometry": {"type": "Point", "coordinates": [2.5346809010269817, 48.93601068591127]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5ad5129a9e22d2685cda7c870d76d938f062d074", "fields": {"departement": "75", "stop_lat": 48.84870084962003, "code_postal": "75107", "stop_lon": 2.321239881938573, "coord": [48.84870084962003, 2.321239881938573], "stop_id": 1690, "stop_desc": "S\u00e8vres (97 rue de) - 75107", "stop_name": "Vaneau"}, "geometry": {"type": "Point", "coordinates": [2.321239881938573, 48.84870084962003]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a0190533c2ce6de4442b16e3a3e4d12c7c7e54d5", "fields": {"departement": "75", "stop_lat": 48.8623718215243, "code_postal": "75101", "stop_lon": 2.3365736007364304, "coord": [48.8623718215243, 2.3365736007364304], "stop_id": 1773, "stop_desc": "Th\u00e9\u00e2tre de la Com\u00e9die Fran\u00e7aise - Th\u00e9\u00e2tre du Palais Royal - 75101", "stop_name": "Palais-Royal (Mus\u00e9e du Louvre)"}, "geometry": {"type": "Point", "coordinates": [2.3365736007364304, 48.8623718215243]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ccc74a3eae91abf5bbff741e645c0cef154c3724", "fields": {"departement": "92", "stop_lat": 48.88129918549113, "code_postal": "92051", "stop_lon": 2.2719151760177914, "coord": [48.88129918549113, 2.2719151760177914], "stop_id": 1856, "stop_desc": "Jardin d'Acclimatation - 92051", "stop_name": "Les Sablons (Jardin d'acclimatation)"}, "geometry": {"type": "Point", "coordinates": [2.2719151760177914, 48.88129918549113]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eeb50fbcc8016ada1036235414dffa9ffb170486", "fields": {"departement": "92", "stop_lat": 48.90098901400317, "code_postal": "92050", "stop_lon": 2.213791712188878, "coord": [48.90098901400317, 2.213791712188878], "stop_id": 1830, "stop_desc": "Provinces Fran\u00e7aises (boulevard des) - 92050", "stop_name": "Nanterre-Universit\u00e9"}, "geometry": {"type": "Point", "coordinates": [2.213791712188878, 48.90098901400317]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e62e13bf35a2ceff77bd17c8fb846f958d5dd6d7", "fields": {"departement": "75", "stop_lat": 48.85219804523044, "code_postal": "75106", "stop_lon": 2.33878000304498, "coord": [48.85219804523044, 2.33878000304498], "stop_id": 1845, "stop_desc": "Saint-Germain (93 boulevard, rue de l'Ecole de M\u00e9decine) - 75106", "stop_name": "Od\u00e9on"}, "geometry": {"type": "Point", "coordinates": [2.33878000304498, 48.85219804523044]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ee7e0247bf1c2aa2b8a22727619edba66aea7ea3", "fields": {"departement": "92", "stop_lat": 48.90400543242958, "code_postal": "92024", "stop_lon": 2.3053681208668606, "coord": [48.90400543242958, 2.3053681208668606], "stop_id": 1872, "stop_desc": "Martre (79 rue, 9 et 12 rue Landy) - 92024", "stop_name": "Mairie de Clichy"}, "geometry": {"type": "Point", "coordinates": [2.3053681208668606, 48.90400543242958]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "005f526eef895f218be4aa3b7babae1a9e4d3d9e", "fields": {"departement": "75", "stop_lat": 48.876050554237366, "code_postal": "75109", "stop_lon": 2.337908692037609, "coord": [48.876050554237366, 2.337908692037609], "stop_id": 1841, "stop_desc": "Rue de Chateaudun - 75109", "stop_name": "Notre-Dame de Lorette"}, "geometry": {"type": "Point", "coordinates": [2.337908692037609, 48.876050554237366]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0c8550dc48431ee351556ab87f6ed38886329467", "fields": {"departement": "75", "stop_lat": 48.82287877506322, "code_postal": "75113", "stop_lon": 2.358079894290851, "coord": [48.82287877506322, 2.358079894290851], "stop_id": 1876, "stop_desc": "Italie (162 avenue d') - 75113", "stop_name": "Maison Blanche"}, "geometry": {"type": "Point", "coordinates": [2.358079894290851, 48.82287877506322]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ca2c4030ef26d9ab81f281602a9d6646f4fe4de5", "fields": {"departement": "92", "stop_lat": 48.89565993203451, "code_postal": "92050", "stop_lon": 2.2231003280556174, "coord": [48.89565993203451, 2.2231003280556174], "stop_id": 1829, "stop_desc": "Pr\u00e9fectue - 92050", "stop_name": "Nanterre-Pr\u00e9fecture"}, "geometry": {"type": "Point", "coordinates": [2.2231003280556174, 48.89565993203451]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "718cb643a0d0d4cd9bb41a877fa2929e66f97bc5", "fields": {"departement": "75", "stop_lat": 48.864965303262494, "code_postal": "75111", "stop_lon": 2.3676324062987537, "coord": [48.864965303262494, 2.3676324062987537], "stop_id": 1843, "stop_desc": "Voltaire (43 boulevard) - 75111", "stop_name": "Oberkampf"}, "geometry": {"type": "Point", "coordinates": [2.3676324062987537, 48.864965303262494]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4581bab243005633b8e929d29d05d8f546fc371b", "fields": {"departement": "75", "stop_lat": 48.85284513365445, "code_postal": "75106", "stop_lon": 2.335143718516068, "coord": [48.85284513365445, 2.335143718516068], "stop_id": 1867, "stop_desc": "Four (13 rue du) - 75106", "stop_name": "Mabillon"}, "geometry": {"type": "Point", "coordinates": [2.335143718516068, 48.85284513365445]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "28f932b0d7d7964b8a753b8da2c18ea41f922558", "fields": {"departement": "75", "stop_lat": 48.88276854674882, "code_postal": "75119", "stop_lon": 2.36994579899074, "coord": [48.88276854674882, 2.36994579899074], "stop_id": 1900, "stop_desc": "Villette (entr\u00e9e sous viaduc face au 196 boulevard de la) - 75119", "stop_name": "Jaur\u00e8s"}, "geometry": {"type": "Point", "coordinates": [2.36994579899074, 48.88276854674882]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f24f8bb6ab78673f8c296dfd8f30a2e5c2772c3b", "fields": {"departement": "75", "stop_lat": 48.85039257831968, "code_postal": "75115", "stop_lon": 2.2936483362305387, "coord": [48.85039257831968, 2.2936483362305387], "stop_id": 1926, "stop_desc": "Grenelle (terre-plein face au 65/68 boulevard de) - 75115", "stop_name": "Dupleix"}, "geometry": {"type": "Point", "coordinates": [2.2936483362305387, 48.85039257831968]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "19ec5c7a66e67d2fd7740781595b0326131581d5", "fields": {"departement": "75", "stop_lat": 48.84699250092279, "code_postal": "75107", "stop_lon": 2.3165423447702307, "coord": [48.84699250092279, 2.3165423447702307], "stop_id": 1928, "stop_desc": "L\u00e9on-Paul Fargue (place, 1 boulevard du Montparnasse) - 75107", "stop_name": "Duroc"}, "geometry": {"type": "Point", "coordinates": [2.3165423447702307, 48.84699250092279]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d81ef0b6bd2eefad06454d2625648fa479c263d4", "fields": {"departement": "92", "stop_lat": 48.88835806016618, "code_postal": "92062", "stop_lon": 2.249937212862802, "coord": [48.88835806016618, 2.249937212862802], "stop_id": 1933, "stop_desc": "Quartier Saisons - 92062", "stop_name": "Esplanade de la D\u00e9fense"}, "geometry": {"type": "Point", "coordinates": [2.249937212862802, 48.88835806016618]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aa7d92de7416f436dd60187d3c6fc1b6e36b5603", "fields": {"departement": "75", "stop_lat": 48.8897381077178, "code_postal": "75118", "stop_lon": 2.339149086674118, "coord": [48.8897381077178, 2.339149086674118], "stop_id": 1920, "stop_desc": "Lamarck (53/53 bis rue) - 75118", "stop_name": "Lamarck-Caulaincourt"}, "geometry": {"type": "Point", "coordinates": [2.339149086674118, 48.8897381077178]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8641aa4f2d716a796af0497c2a590bde28140453", "fields": {"departement": "75", "stop_lat": 48.884388698358165, "code_postal": "75110", "stop_lon": 2.3592765642767297, "coord": [48.884388698358165, 2.3592765642767297], "stop_id": 1910, "stop_desc": "Rue du Faubourg Saint Denis - 75110", "stop_name": "La Chapelle"}, "geometry": {"type": "Point", "coordinates": [2.3592765642767297, 48.884388698358165]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "79a7a5027d29738cd964995972c33c27fd1d9f2e", "fields": {"departement": "75", "stop_lat": 48.857355927169515, "code_postal": "75104", "stop_lon": 2.3520735668587185, "coord": [48.857355927169515, 2.3520735668587185], "stop_id": 1892, "stop_desc": "Rue de Rivoli - 75104", "stop_name": "H\u00f4tel de Ville"}, "geometry": {"type": "Point", "coordinates": [2.3520735668587185, 48.857355927169515]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f17da96f2a600a122ab875314f266978e84567a0", "fields": {"departement": "93", "stop_lat": 48.93091044517924, "code_postal": "93013", "stop_lon": 2.426307936884455, "coord": [48.93091044517924, 2.426307936884455], "stop_id": 1923, "stop_desc": "Deportes (place des) - 93013", "stop_name": "Le Bourget"}, "geometry": {"type": "Point", "coordinates": [2.426307936884455, 48.93091044517924]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e05a0fc771735f1f007d54c305668238ea1640b1", "fields": {"departement": "75", "stop_lat": 48.85809504968323, "code_postal": "75116", "stop_lon": 2.274096448110612, "coord": [48.85809504968323, 2.274096448110612], "stop_id": 1917, "stop_desc": "Mozart (5 avenue) - 75116", "stop_name": "La Muette"}, "geometry": {"type": "Point", "coordinates": [2.274096448110612, 48.85809504968323]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6b2945cdc245ff0fb5ef3186bdf8ddc0dce8e706", "fields": {"departement": "75", "stop_lat": 48.87906043921274, "code_postal": "75108", "stop_lon": 2.3229746324058937, "coord": [48.87906043921274, 2.3229746324058937], "stop_id": 1935, "stop_desc": "Madrid (1 rue de) - 75108", "stop_name": "Europe"}, "geometry": {"type": "Point", "coordinates": [2.3229746324058937, 48.87906043921274]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "18f675041ab70c4c076ef6ec526327b3c42f9b3d", "fields": {"departement": "75", "stop_lat": 48.8187170251155, "code_postal": "75113", "stop_lon": 2.360500832805366, "coord": [48.8187170251155, 2.360500832805366], "stop_id": 1808, "stop_desc": "Mass\u00e9na (boulevard, square H\u00e9l\u00e8ne Boucher) - 75113", "stop_name": "Porte d'Italie"}, "geometry": {"type": "Point", "coordinates": [2.360500832805366, 48.8187170251155]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5f4608912640f215ba7d8fedf96a9269844d46de", "fields": {"departement": "75", "stop_lat": 48.84596603240645, "code_postal": "75112", "stop_lon": 2.3669131797383116, "coord": [48.84596603240645, 2.3669131797383116], "stop_id": 1759, "stop_desc": "Rap\u00e9e (quai de la, place Nazas) - 75112", "stop_name": "Quai de la Rap\u00e9e"}, "geometry": {"type": "Point", "coordinates": [2.3669131797383116, 48.84596603240645]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e2e08da46f69a985d6ead0195fd631b6d2a08ba3", "fields": {"departement": "92", "stop_lat": 48.77062199581033, "code_postal": "92002", "stop_lon": 2.3098419965156434, "coord": [48.77062199581033, 2.3098419965156434], "stop_id": 1778, "stop_desc": "Duchesse du Maine (avenue de la) - 92002", "stop_name": "Parc de Sceaux"}, "geometry": {"type": "Point", "coordinates": [2.3098419965156434, 48.77062199581033]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0694625ae7cc0e5333106065e812e265c21b3ac7", "fields": {"departement": "94", "stop_lat": 48.81591718160038, "code_postal": "94041", "stop_lon": 2.377878816483871, "coord": [48.81591718160038, 2.377878816483871], "stop_id": 1790, "stop_desc": "Pierre Curie (1 bis rue) - 94041", "stop_name": "Pierre et Marie Curie"}, "geometry": {"type": "Point", "coordinates": [2.377878816483871, 48.81591718160038]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d18a5b9080bae9e71e8440a7d1f8db43bd674968", "fields": {"departement": "75", "stop_lat": 48.8772239477293, "code_postal": "75119", "stop_lon": 2.392765050250897, "coord": [48.8772239477293, 2.392765050250897], "stop_id": 1797, "stop_desc": "F\u00eates (place des, rue Compans) - 75119", "stop_name": "Place des F\u00eates"}, "geometry": {"type": "Point", "coordinates": [2.392765050250897, 48.8772239477293]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0be0cbc7540f1ca388ed2e0f4b725cbfdb7413cd", "fields": {"departement": "91", "stop_lat": 48.707745883014454, "code_postal": "91477", "stop_lon": 2.237039533120401, "coord": [48.707745883014454, 2.237039533120401], "stop_id": 1776, "stop_desc": "Rue Antoine Arnault - 91477", "stop_name": "Palaiseau Villebon"}, "geometry": {"type": "Point", "coordinates": [2.237039533120401, 48.707745883014454]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fcdd63557cb389abe35ce0bfa825fe173e0a957b", "fields": {"departement": "75", "stop_lat": 48.86761748653104, "code_postal": "75111", "stop_lon": 2.3638195214331654, "coord": [48.86761748653104, 2.3638195214331654], "stop_id": 1767, "stop_desc": "Saint-Martin (9 boulevard) - 75111", "stop_name": "R\u00e9publique"}, "geometry": {"type": "Point", "coordinates": [2.3638195214331654, 48.86761748653104]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5cf9578fe7c9570dd4d34f49c0ff0a19cd7cdf19", "fields": {"departement": "75", "stop_lat": 48.842012804057696, "code_postal": "75115", "stop_lon": 2.3132900438354906, "coord": [48.842012804057696, 2.3132900438354906], "stop_id": 1781, "stop_desc": "Vaugirard (183 rue de) - 75115", "stop_name": "Pasteur"}, "geometry": {"type": "Point", "coordinates": [2.3132900438354906, 48.842012804057696]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "15bc726fa36b4aeb3a4504551b67b74b83cd31f6", "fields": {"departement": "91", "stop_lat": 48.71791943671647, "code_postal": "91477", "stop_lon": 2.246501416326464, "coord": [48.71791943671647, 2.246501416326464], "stop_id": 1775, "stop_desc": "Gare (place de la) - 91477", "stop_name": "Palaiseau"}, "geometry": {"type": "Point", "coordinates": [2.246501416326464, 48.71791943671647]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ba571f7a312538a882a82e2b72f3f2b2c92cfc86", "fields": {"departement": "75", "stop_lat": 48.85853410228574, "code_postal": "75101", "stop_lon": 2.3421172386659985, "coord": [48.85853410228574, 2.3421172386659985], "stop_id": 1806, "stop_desc": "Samaritaine - 75101", "stop_name": "Pont Neuf"}, "geometry": {"type": "Point", "coordinates": [2.3421172386659985, 48.85853410228574]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9dc4ee42933ebe23f407b9f5dcbe116ea42415ef", "fields": {"departement": "75", "stop_lat": 48.851767474505195, "code_postal": "75120", "stop_lon": 2.4011814838726444, "coord": [48.851767474505195, 2.4011814838726444], "stop_id": 2014, "stop_desc": "Buzenval (51 rue de, angle avec le 35 rue d'Avron) - 75120", "stop_name": "Buzenval"}, "geometry": {"type": "Point", "coordinates": [2.4011814838726444, 48.851767474505195]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "83e4c86a31f37f5898cce4ae5136245864faa194", "fields": {"departement": "75", "stop_lat": 48.867366570469784, "code_postal": "75108", "stop_lon": 2.3141910633936584, "coord": [48.867366570469784, 2.3141910633936584], "stop_id": 2025, "stop_desc": "Cl\u00e9menceau (place) - 75108", "stop_name": "Champs-Elys\u00e9es-Cl\u00e9menceau"}, "geometry": {"type": "Point", "coordinates": [2.3141910633936584, 48.867366570469784]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "75a9876cd24eea56471e33721c52228e501d4978", "fields": {"departement": "75", "stop_lat": 48.835551216675434, "code_postal": "75113", "stop_lon": 2.358752095191401, "coord": [48.835551216675434, 2.358752095191401], "stop_id": 2017, "stop_desc": "H\u00f4pital (106/112 boulevard de l') - 75113", "stop_name": "Campo-Formio"}, "geometry": {"type": "Point", "coordinates": [2.358752095191401, 48.835551216675434]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "042b9d1858e9ea1eb086b2989c812f6a1ab0380c", "fields": {"departement": "95", "stop_lat": 49.03594383494343, "code_postal": "95127", "stop_lon": 2.0801437572429307, "coord": [49.03594383494343, 2.0801437572429307], "stop_id": 2021, "stop_desc": "Boulevard de l'Oise - 95127", "stop_name": "Cergy-Pr\u00e9fecture"}, "geometry": {"type": "Point", "coordinates": [2.0801437572429307, 49.03594383494343]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ffeb3955dcb1245ef4fb4d749fa0750557bfc786", "fields": {"departement": "75", "stop_lat": 48.87567248598795, "code_postal": "75117", "stop_lon": 2.289444164481448, "coord": [48.87567248598795, 2.289444164481448], "stop_id": 2048, "stop_desc": "Grande Arm\u00e9e (36 avenue de la) - 75117", "stop_name": "Argentine"}, "geometry": {"type": "Point", "coordinates": [2.289444164481448, 48.87567248598795]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c2d7616048b0c091462e0b5f3604f1e14054d888", "fields": {"departement": "75", "stop_lat": 48.865551863634785, "code_postal": "75103", "stop_lon": 2.356108155120312, "coord": [48.865551863634785, 2.356108155120312], "stop_id": 2050, "stop_desc": "Vertus (rue des) - 75103", "stop_name": "Arts-et-M\u00e9tiers"}, "geometry": {"type": "Point", "coordinates": [2.356108155120312, 48.865551863634785]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c0bf4b072c827aff7a0953a7dc9437d67626650d", "fields": {"departement": "75", "stop_lat": 48.845104139567006, "code_postal": "75116", "stop_lon": 2.266936059032254, "coord": [48.845104139567006, 2.266936059032254], "stop_id": 2026, "stop_desc": "Chardon Lagache (11 rue) - 75116", "stop_name": "Chardon-Lagache"}, "geometry": {"type": "Point", "coordinates": [2.266936059032254, 48.845104139567006]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1a717324390ae3ee45831bac45bad3aa0556141e", "fields": {"departement": "78", "stop_lat": 48.970077176304514, "code_postal": "78005", "stop_lon": 2.0776181820083806, "coord": [48.970077176304514, 2.0776181820083806], "stop_id": 2039, "stop_desc": "Avenue de Conflans - 78005", "stop_name": "Ach\u00e8res-Ville"}, "geometry": {"type": "Point", "coordinates": [2.0776181820083806, 48.970077176304514]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "30a67c60c47fe0292e3727682ef9fecc1377e20b", "fields": {"departement": "75", "stop_lat": 48.85464204744478, "code_postal": "75111", "stop_lon": 2.385032193334828, "coord": [48.85464204744478, 2.385032193334828], "stop_id": 2032, "stop_desc": "Voltaire (188 boulevard) - 75111", "stop_name": "Charonne"}, "geometry": {"type": "Point", "coordinates": [2.385032193334828, 48.85464204744478]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e9491d68e88690a34695ddaa84c3b5beb3803ff0", "fields": {"departement": "75", "stop_lat": 48.87260817994105, "code_postal": "75109", "stop_lon": 2.3297068164482293, "coord": [48.87260817994105, 2.3297068164482293], "stop_id": 2053, "stop_desc": "Grands Magasins - 75109", "stop_name": "Auber"}, "geometry": {"type": "Point", "coordinates": [2.3297068164482293, 48.87260817994105]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "df83d003b748ab1c8f66da29e30dae860b2f1039", "fields": {"departement": "75", "stop_lat": 48.87416474488983, "code_postal": "75117", "stop_lon": 2.29507256293689, "coord": [48.87416474488983, 2.29507256293689], "stop_id": 2084, "stop_desc": "Grande Arm\u00e9e (2 avenue de la) - 75117", "stop_name": "Charles de Gaulle-Etoile"}, "geometry": {"type": "Point", "coordinates": [2.29507256293689, 48.87416474488983]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f0d4b9315774654b3a8e6874fcba1d1abc2c40d2", "fields": {"departement": "92", "stop_lat": 48.832087644282545, "code_postal": "92012", "stop_lon": 2.238160776875514, "coord": [48.832087644282545, 2.238160776875514], "stop_id": 2088, "stop_desc": "G\u00e9n\u00e9ral Leclerc (88 bis avenue du) - 92012", "stop_name": "Billancourt"}, "geometry": {"type": "Point", "coordinates": [2.238160776875514, 48.832087644282545]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8bfb08cd7dc9cb94a910eff470570e0c2a54a6b5", "fields": {"departement": "92", "stop_lat": 48.75482748503882, "code_postal": "92002", "stop_lon": 2.3008650705983067, "coord": [48.75482748503882, 2.3008650705983067], "stop_id": 2095, "stop_desc": "Rue Velpeau - 92002", "stop_name": "Antony"}, "geometry": {"type": "Point", "coordinates": [2.3008650705983067, 48.75482748503882]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "47248645f08588a947f43f0c980902cc853e28e9", "fields": {"departement": "75", "stop_lat": 48.851193819213286, "code_postal": "75111", "stop_lon": 2.398239140823123, "coord": [48.851193819213286, 2.398239140823123], "stop_id": 2107, "stop_desc": "Charonne (terre-plein face au 35 boulevard de) - 75111", "stop_name": "Avron"}, "geometry": {"type": "Point", "coordinates": [2.398239140823123, 48.851193819213286]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0eca0da560a89c71f2e23848c8485742a288af3e", "fields": {"departement": "93", "stop_lat": 48.93210876263909, "code_postal": "93005", "stop_lon": 2.493309562581326, "coord": [48.93210876263909, 2.493309562581326], "stop_id": 2105, "stop_desc": "General De Gaulle (5, place) - 93005", "stop_name": "Aulnay-sous-Bois"}, "geometry": {"type": "Point", "coordinates": [2.493309562581326, 48.93210876263909]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1048b8eb3cb606d5a5903267338a323b43770d91", "fields": {"departement": "91", "stop_lat": 48.6957326504055, "code_postal": "91122", "stop_lon": 2.163089675156206, "coord": [48.6957326504055, 2.163089675156206], "stop_id": 2130, "stop_desc": "Impasse de la Station - 91122", "stop_name": "Bures-sur-Yvette"}, "geometry": {"type": "Point", "coordinates": [2.163089675156206, 48.6957326504055]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d9f02f69f3408751b5fe5894b43a2bd8c6c00e27", "fields": {"departement": "75", "stop_lat": 48.86538117604685, "code_postal": "75103", "stop_lon": 2.3556449312068772, "coord": [48.86538117604685, 2.3556449312068772], "stop_id": 2100, "stop_desc": "Vertus (rue des) - 75103", "stop_name": "Arts-et-M\u00e9tiers"}, "geometry": {"type": "Point", "coordinates": [2.3556449312068772, 48.86538117604685]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dd08486e5412d44dc00391837b5fa1ba040e83aa", "fields": {"departement": "94", "stop_lat": 48.84442645483315, "code_postal": "94015", "stop_lon": 2.5263936672560128, "coord": [48.84442645483315, 2.5263936672560128], "stop_id": 2129, "stop_desc": "Gallieni (boulevard) - 94015", "stop_name": "Bry-sur-Marne"}, "geometry": {"type": "Point", "coordinates": [2.5263936672560128, 48.84442645483315]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "255f42e67811e93d22f1935bb76d95b4cf9842e8", "fields": {"departement": "75", "stop_lat": 48.86932916949657, "code_postal": "75111", "stop_lon": 2.3805363661617247, "coord": [48.86932916949657, 2.3805363661617247], "stop_id": 2128, "stop_desc": "Belleville (37 boulevard de) - 75111", "stop_name": "Couronnes"}, "geometry": {"type": "Point", "coordinates": [2.3805363661617247, 48.86932916949657]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9d4818ad256b6d3daf302814adaf04a7219911a2", "fields": {"departement": "75", "stop_lat": 48.84019224440348, "code_postal": "75112", "stop_lon": 2.3794772572660587, "coord": [48.84019224440348, 2.3794772572660587], "stop_id": 2117, "stop_desc": "Place du Bataillon du Pacifique - 75112", "stop_name": "Bercy"}, "geometry": {"type": "Point", "coordinates": [2.3794772572660587, 48.84019224440348]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1927dbcfc1bedd797289775babdf5b0a164fe577", "fields": {"departement": "94", "stop_lat": 48.80641960896216, "code_postal": "94068", "stop_lon": 2.47204505094563, "coord": [48.80641960896216, 2.47204505094563], "stop_id": 1671, "stop_desc": "March\u00e9 (place du, parvis de la gare et 35 rue du Pont de Cr\u00e9teil) - 94068", "stop_name": "Saint-Maur Cr\u00e9teil"}, "geometry": {"type": "Point", "coordinates": [2.47204505094563, 48.80641960896216]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8ad99a9f7793228853ebad4d977b1caa722bd57c", "fields": {"departement": "75", "stop_lat": 48.85079359474211, "code_postal": "75104", "stop_lon": 2.3612369937142983, "coord": [48.85079359474211, 2.3612369937142983], "stop_id": 1681, "stop_desc": "Mairie de Paris - Pr\u00e9fecture de Paris - 75104", "stop_name": "Sully-Morland"}, "geometry": {"type": "Point", "coordinates": [2.3612369937142983, 48.85079359474211]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c3f800219a17ff4f0666fe1559b30f587da3ebb2", "fields": {"departement": "75", "stop_lat": 48.83761467578531, "code_postal": "75113", "stop_lon": 2.373852115680497, "coord": [48.83761467578531, 2.373852115680497], "stop_id": 1644, "stop_desc": "Gare (quai de la, quai d'Austerlitz) - 75113", "stop_name": "Quai de la Gare"}, "geometry": {"type": "Point", "coordinates": [2.373852115680497, 48.83761467578531]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6a2fb1e8af7370cfe78042fc5e5f1b6c256a92a6", "fields": {"departement": "93", "stop_lat": 48.94611087248738, "code_postal": "93066", "stop_lon": 2.3620451929905992, "coord": [48.94611087248738, 2.3620451929905992], "stop_id": 140079, "stop_desc": "Gare Routiere - 93066", "stop_name": "Saint-Denis-Universit\u00e9"}, "geometry": {"type": "Point", "coordinates": [2.3620451929905992, 48.94611087248738]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "74a6bfa66b63331d0a705e38bb62c76374cdc0b9", "fields": {"departement": "75", "stop_lat": 48.8755376703957, "code_postal": "75108", "stop_lon": 2.3251964899774276, "coord": [48.8755376703957, 2.3251964899774276], "stop_id": 1166841, "stop_desc": "Saint-Lazare (95 rue) - 75108", "stop_name": "Saint-Lazare"}, "geometry": {"type": "Point", "coordinates": [2.3251964899774276, 48.8755376703957]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "767b98e78c4551fe31a4c9da0124e0d4bfa92069", "fields": {"departement": "75", "stop_lat": 48.883712476037346, "code_postal": "75117", "stop_lon": 2.3055577575143036, "coord": [48.883712476037346, 2.3055577575143036], "stop_id": 1634, "stop_desc": "Villiers (74 avenue de) - 75117", "stop_name": "Wagram"}, "geometry": {"type": "Point", "coordinates": [2.3055577575143036, 48.883712476037346]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e01f8606cafbc898e2dd3ae85a8216bc953a62c4", "fields": {"departement": "92", "stop_lat": 48.78128731847868, "code_postal": "92071", "stop_lon": 2.2976096510082007, "coord": [48.78128731847868, 2.2976096510082007], "stop_id": 1660, "stop_desc": "Jean-Louis Sinet (rue) - 92071", "stop_name": "Sceaux"}, "geometry": {"type": "Point", "coordinates": [2.2976096510082007, 48.78128731847868]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8874d863adcb82874c32faa851e565d40a78d6fb", "fields": {"departement": "75", "stop_lat": 48.88140510041144, "code_postal": "75117", "stop_lon": 2.316147050907411, "coord": [48.88140510041144, 2.316147050907411], "stop_id": 1630, "stop_desc": "Parc de Monceau - 75117", "stop_name": "Villiers"}, "geometry": {"type": "Point", "coordinates": [2.316147050907411, 48.88140510041144]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2329261ff1114b71a9262dfd836813a612cba8b7", "fields": {"departement": "75", "stop_lat": 48.86503429801815, "code_postal": "75120", "stop_lon": 2.3985414869122423, "coord": [48.86503429801815, 2.3985414869122423], "stop_id": 1659, "stop_desc": "P\u00e8re-Lachaise - 75120", "stop_name": "Gambetta"}, "geometry": {"type": "Point", "coordinates": [2.3985414869122423, 48.86503429801815]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bbc86e65195893c29267bc77504b5bb5d2a41412", "fields": {"departement": "93", "stop_lat": 48.91162168038383, "code_postal": "93070", "stop_lon": 2.3337369648420916, "coord": [48.91162168038383, 2.3337369648420916], "stop_id": 1874, "stop_desc": "R\u00e9publique (place de la, mairie) - 93070", "stop_name": "Mairie de Saint-Ouen"}, "geometry": {"type": "Point", "coordinates": [2.3337369648420916, 48.91162168038383]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "58141c302d9f56fb20e893caf407c738d0dbedb8", "fields": {"departement": "77", "stop_lat": 48.83907532767992, "code_postal": "77258", "stop_lon": 2.6338690555739257, "coord": [48.83907532767992, 2.6338690555739257], "stop_id": 1859, "stop_desc": "Johan Scarron (rue, quartier du Mandinet Lognes) - 77258", "stop_name": "Lognes"}, "geometry": {"type": "Point", "coordinates": [2.6338690555739257, 48.83907532767992]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "398f0719f2f6f35ff845da9a9183299dbffe06e4", "fields": {"departement": "75", "stop_lat": 48.87070082326957, "code_postal": "75110", "stop_lon": 2.3605786355872773, "coord": [48.87070082326957, 2.3605786355872773], "stop_id": 1898, "stop_desc": "Magenta (19 boulevard de) - 75110", "stop_name": "Jacques-Bonsergent"}, "geometry": {"type": "Point", "coordinates": [2.3605786355872773, 48.87070082326957]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "74a7d6e6a4b38e88fb337c16327572a7829b55a3", "fields": {"departement": "77", "stop_lat": 48.86849697024026, "code_postal": "77111", "stop_lon": 2.7822597305629526, "coord": [48.86849697024026, 2.7822597305629526], "stop_id": 1885, "stop_desc": "Parc Disneyland - 77111", "stop_name": "Marne-la-Vall\u00e9e Chessy"}, "geometry": {"type": "Point", "coordinates": [2.7822597305629526, 48.86849697024026]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b65601037b9981db325fcd5dd2322b995afb63d4", "fields": {"departement": "75", "stop_lat": 48.86087985759375, "code_postal": "75101", "stop_lon": 2.340973275817903, "coord": [48.86087985759375, 2.340973275817903], "stop_id": 1864, "stop_desc": "Amiral de Coligny (8 rue de l') - 75101", "stop_name": "Louvre-Rivoli"}, "geometry": {"type": "Point", "coordinates": [2.340973275817903, 48.86087985759375]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "26798bb303f1c1e31f03f24d42fe9f11a7334def", "fields": {"departement": "78", "stop_lat": 48.94604723230418, "code_postal": "78358", "stop_lon": 2.144251676642267, "coord": [48.94604723230418, 2.144251676642267], "stop_id": 1878, "stop_desc": "Liberation (Place de la) - 78358", "stop_name": "Maisons-Laffitte"}, "geometry": {"type": "Point", "coordinates": [2.144251676642267, 48.94604723230418]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "17b506a583468550cb211357f656247b46f23d6f", "fields": {"departement": "92", "stop_lat": 48.82434652601842, "code_postal": "92040", "stop_lon": 2.2735658296006465, "coord": [48.82434652601842, 2.2735658296006465], "stop_id": 1870, "stop_desc": "G\u00e9n\u00e9ral Leclerc (rue du) - 92040", "stop_name": "Mairie d'Issy"}, "geometry": {"type": "Point", "coordinates": [2.2735658296006465, 48.82434652601842]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "18daa4088254cc3b8d66717bd0c032097000a9f8", "fields": {"departement": "75", "stop_lat": 48.83612743975252, "code_postal": "75113", "stop_lon": 2.3520811178355734, "coord": [48.83612743975252, 2.3520811178355734], "stop_id": 1854, "stop_desc": "Manufacture des Gobelins - 75113", "stop_name": "Les Gobelins"}, "geometry": {"type": "Point", "coordinates": [2.3520811178355734, 48.83612743975252]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c73c83c2a4994092add28466588d5be1a3cb731e", "fields": {"departement": "75", "stop_lat": 48.8697947152178, "code_postal": "75108", "stop_lon": 2.3246120120222655, "coord": [48.8697947152178, 2.3246120120222655], "stop_id": 1869, "stop_desc": "Tronchet (2 rue, 3 rue Tronchet) - 75108", "stop_name": "Madeleine"}, "geometry": {"type": "Point", "coordinates": [2.3246120120222655, 48.8697947152178]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d7c89402db2031628942bae69d6be1b6d15f61eb", "fields": {"departement": "92", "stop_lat": 48.739380928058495, "code_postal": "92002", "stop_lon": 2.2875990476951404, "coord": [48.739380928058495, 2.2875990476951404], "stop_id": 1853, "stop_desc": "Rue de Massy - 92002", "stop_name": "Les Baconnets"}, "geometry": {"type": "Point", "coordinates": [2.2875990476951404, 48.739380928058495]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "40e955130396e2bed4c0ec3c6a7e04e169e26f1a", "fields": {"departement": "75", "stop_lat": 48.86567809641779, "code_postal": "75108", "stop_lon": 2.321193771801867, "coord": [48.86567809641779, 2.321193771801867], "stop_id": 1980, "stop_desc": "Tuileries (jardin des, face au 246 rue de Rivoli et \u00c8 la rue Cambon) PARIS-08 - 75108", "stop_name": "Concorde"}, "geometry": {"type": "Point", "coordinates": [2.321193771801867, 48.86567809641779]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1960014404de301a2e6bc4585f4e0eaa3e394902", "fields": {"departement": "92", "stop_lat": 48.84068016312195, "code_postal": "92012", "stop_lon": 2.228313661724341, "coord": [48.84068016312195, 2.228313661724341], "stop_id": 2005, "stop_desc": "Reine (135 route de la) - 92012", "stop_name": "Boulogne Pont de Saint-Cloud"}, "geometry": {"type": "Point", "coordinates": [2.228313661724341, 48.84068016312195]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f5d38051a5e1698116c7ac51a3ee576b08d2086b", "fields": {"departement": "75", "stop_lat": 48.861796247500266, "code_postal": "75101", "stop_lon": 2.346803328707587, "coord": [48.861796247500266, 2.346803328707587], "stop_id": 1968, "stop_desc": "Forum des Halles Centre G. Pompidou - 75101", "stop_name": "Ch\u00e2telet-Les Halles"}, "geometry": {"type": "Point", "coordinates": [2.346803328707587, 48.861796247500266]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "935f380ec71264b8af407b97f1e76b7f21b3066b", "fields": {"departement": "75", "stop_lat": 48.875825718038186, "code_postal": "75109", "stop_lon": 2.343345124573273, "coord": [48.875825718038186, 2.343345124573273], "stop_id": 2015, "stop_desc": "La Fayette (terre-plein face au 65 rue) - 75109", "stop_name": "Cadet"}, "geometry": {"type": "Point", "coordinates": [2.343345124573273, 48.875825718038186]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7d936714fd767cda425c28dd5e514283e9ac492a", "fields": {"departement": "75", "stop_lat": 48.85079575570429, "code_postal": "75105", "stop_lon": 2.3450308883652258, "coord": [48.85079575570429, 2.3450308883652258], "stop_id": 1977, "stop_desc": "Rue Saint Jacques - 75105", "stop_name": "Cluny-La Sorbonne"}, "geometry": {"type": "Point", "coordinates": [2.3450308883652258, 48.85079575570429]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "39bfe128c6f7b702d7687a9c25b7f934b4faf14f", "fields": {"departement": "75", "stop_lat": 48.83713694956265, "code_postal": "75115", "stop_lon": 2.296396090155559, "coord": [48.83713694956265, 2.296396090155559], "stop_id": 1984, "stop_desc": "Vaugirard (337 rue de) - 75115", "stop_name": "Convention"}, "geometry": {"type": "Point", "coordinates": [2.296396090155559, 48.83713694956265]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2aafe05b74e9365b4b4e1c8473cb23c6103c8c72", "fields": {"departement": "75", "stop_lat": 48.89062663302413, "code_postal": "75117", "stop_lon": 2.320191121275328, "coord": [48.89062663302413, 2.320191121275328], "stop_id": 2009, "stop_desc": "March\u00e9 des Batignolles - 75117", "stop_name": "Brochant"}, "geometry": {"type": "Point", "coordinates": [2.320191121275328, 48.89062663302413]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ea5e862a45f603651e5441afb0bcc7691bd9b97a", "fields": {"departement": "93", "stop_lat": 48.932709809148555, "code_postal": "93029", "stop_lon": 2.455105345174671, "coord": [48.932709809148555, 2.455105345174671], "stop_id": 1999, "stop_desc": "Anatole France (169, rue) - 93029", "stop_name": "Drancy"}, "geometry": {"type": "Point", "coordinates": [2.455105345174671, 48.932709809148555]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "19c42e986c5ac9081d5b1a13d9430aa9d4e2128c", "fields": {"departement": "94", "stop_lat": 48.80703580209233, "code_postal": "94068", "stop_lon": 2.509901668386353, "coord": [48.80703580209233, 2.509901668386353], "stop_id": 2024, "stop_desc": "La Fayette (rue) - 94068", "stop_name": "Champigny"}, "geometry": {"type": "Point", "coordinates": [2.509901668386353, 48.80703580209233]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "766dfa65755aae0e915ba6c9f64a35a950e5645e", "fields": {"departement": "75", "stop_lat": 48.87960708893313, "code_postal": "75119", "stop_lon": 2.389415569653207, "coord": [48.87960708893313, 2.389415569653207], "stop_id": 2002, "stop_desc": "Botzaris (80 rue) - 75119", "stop_name": "Botzaris"}, "geometry": {"type": "Point", "coordinates": [2.389415569653207, 48.87960708893313]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d71dc6d354b925f2675f3d12864b4a644d475e48", "fields": {"departement": "75", "stop_lat": 48.84882126668606, "code_postal": "75115", "stop_lon": 2.2979529640251917, "coord": [48.84882126668606, 2.2979529640251917], "stop_id": 1916, "stop_desc": "Pondich\u00e9ry (25 rue de) - 75115", "stop_name": "La Motte-Picquet-Grenelle"}, "geometry": {"type": "Point", "coordinates": [2.2979529640251917, 48.84882126668606]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "44f076551a7666730397f48149154e51fb91a9c1", "fields": {"departement": "93", "stop_lat": 48.91756865943168, "code_postal": "93066", "stop_lon": 2.3615269960039114, "coord": [48.91756865943168, 2.3615269960039114], "stop_id": 1918, "stop_desc": "Avenue du Stade de France - 93066", "stop_name": "La Plaine-Stade de France"}, "geometry": {"type": "Point", "coordinates": [2.3615269960039114, 48.91756865943168]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5f327d5c10b660de87556cd5892366d704cb9a4a", "fields": {"departement": "93", "stop_lat": 48.86326252650054, "code_postal": "93006", "stop_lon": 2.415975368499958, "coord": [48.86326252650054, 2.415975368499958], "stop_id": 1949, "stop_desc": "Gare routi\u00e8re - 93006", "stop_name": "Gallieni (Parc de Bagnolet)"}, "geometry": {"type": "Point", "coordinates": [2.415975368499958, 48.86326252650054]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3368086f90e7b5e5e3abe1c0296cdb7ebf478b42", "fields": {"departement": "75", "stop_lat": 48.868812631860955, "code_postal": "75108", "stop_lon": 2.309926324470496, "coord": [48.868812631860955, 2.309926324470496], "stop_id": 1946, "stop_desc": "Palais de la D\u00e9couverte - 75108", "stop_name": "Franklin-Roosevelt"}, "geometry": {"type": "Point", "coordinates": [2.309926324470496, 48.868812631860955]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "30da6959955cfaf2a6d5c68060d021b01039f073", "fields": {"departement": "94", "stop_lat": 48.810385125129486, "code_postal": "94043", "stop_lon": 2.3618306830911315, "coord": [48.810385125129486, 2.3618306830911315], "stop_id": 1925, "stop_desc": "H\u00f4pital Kremlin Bic\u00eatre - 94043", "stop_name": "Le Kremlin-Bic\u00eatre"}, "geometry": {"type": "Point", "coordinates": [2.3618306830911315, 48.810385125129486]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5f08bb2b9d41b361d91ccd28943a75e4ad0199ad", "fields": {"departement": "94", "stop_lat": 48.821069678359656, "code_postal": "94042", "stop_lon": 2.4638349563053548, "coord": [48.821069678359656, 2.4638349563053548], "stop_id": 1904, "stop_desc": "Jean Jaur\u00e8s (avenue) - 94042", "stop_name": "Joinville-le-Pont"}, "geometry": {"type": "Point", "coordinates": [2.4638349563053548, 48.821069678359656]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2b8adb2956af1b2d9b3638562d84508f48df33eb", "fields": {"departement": "93", "stop_lat": 48.906382164226436, "code_postal": "93070", "stop_lon": 2.3319104734589318, "coord": [48.906382164226436, 2.3319104734589318], "stop_id": 1959, "stop_desc": "Gabriel P\u00e9ri (avenue, rue Garibaldi) - 93070", "stop_name": "Garibaldi"}, "geometry": {"type": "Point", "coordinates": [2.3319104734589318, 48.906382164226436]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6ca0400359c8b181f87a17802f021933832341b6", "fields": {"departement": "91", "stop_lat": 48.70486705428755, "code_postal": "91471", "stop_lon": 2.1912655867174045, "coord": [48.70486705428755, 2.1912655867174045], "stop_id": 1924, "stop_desc": "Versailles (1 rue de) - 91471", "stop_name": "Le Guichet"}, "geometry": {"type": "Point", "coordinates": [2.1912655867174045, 48.70486705428755]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a140ef73bfcc9cc89959b9ebfc3317ee1cb22881", "fields": {"departement": "94", "stop_lat": 48.807637336351924, "code_postal": "94003", "stop_lon": 2.3332541466959276, "coord": [48.807637336351924, 2.3332541466959276], "stop_id": 1921, "stop_desc": "Maison des Examens - 94003", "stop_name": "Laplace"}, "geometry": {"type": "Point", "coordinates": [2.3332541466959276, 48.807637336351924]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "73483161f893dcd729a4bcda944ec9ff310a678e", "fields": {"departement": "75", "stop_lat": 48.84576175731147, "code_postal": "75105", "stop_lon": 2.354548594906739, "coord": [48.84576175731147, 2.354548594906739], "stop_id": 1908, "stop_desc": "Lin\u00e9 (39 rue) - 75105", "stop_name": "Jussieu"}, "geometry": {"type": "Point", "coordinates": [2.354548594906739, 48.84576175731147]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "045963b6a38012092ac526a881b096305641ccb1", "fields": {"departement": "75", "stop_lat": 48.8724706657937, "code_postal": "75108", "stop_lon": 2.310769101230354, "coord": [48.8724706657937, 2.310769101230354], "stop_id": 1730, "stop_desc": "Franklin D. Roosevelt (69 avenue) - 75108", "stop_name": "Saint-Philippe du Roule"}, "geometry": {"type": "Point", "coordinates": [2.310769101230354, 48.8724706657937]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3ee881882b8afd9f0a8278d249fa4e67ce8f0214", "fields": {"departement": "75", "stop_lat": 48.85550440300199, "code_postal": "75116", "stop_lon": 2.269959178255765, "coord": [48.85550440300199, 2.269959178255765], "stop_id": 1762, "stop_desc": "Mozart (48 avenue, angle avec le 97 rue de Ranelagh) - 75116", "stop_name": "Ranelagh"}, "geometry": {"type": "Point", "coordinates": [2.269959178255765, 48.85550440300199]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2b8be410676a81d7871f644d17c4a94e41e8c086", "fields": {"departement": "75", "stop_lat": 48.838878378565504, "code_postal": "75114", "stop_lon": 2.330678419288263, "coord": [48.838878378565504, 2.330678419288263], "stop_id": 1763, "stop_desc": "Raspail (233 boulevard, 35 rue Campagne Premi\u00e8re) - 75114", "stop_name": "Raspail"}, "geometry": {"type": "Point", "coordinates": [2.330678419288263, 48.838878378565504]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3862aa5c825a273cf40d6598735a5a8dfcfd0267", "fields": {"departement": "75", "stop_lat": 48.878593955236205, "code_postal": "75109", "stop_lon": 2.3378269689170192, "coord": [48.878593955236205, 2.3378269689170192], "stop_id": 1720, "stop_desc": "Saint-Georges (place, c\u00f4t\u00e9 pair) - 75109", "stop_name": "Saint-Georges"}, "geometry": {"type": "Point", "coordinates": [2.3378269689170192, 48.878593955236205]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "33fb543760099f19a7f6912a0ccce64937fa2f58", "fields": {"departement": "75", "stop_lat": 48.89795934324147, "code_postal": "75118", "stop_lon": 2.3592550695796524, "coord": [48.89795934324147, 2.3592550695796524], "stop_id": 1743, "stop_desc": "Chapelle (93 rue de la) - 75118", "stop_name": "Porte de la Chapelle"}, "geometry": {"type": "Point", "coordinates": [2.3592550695796524, 48.89795934324147]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d7c735a3545c39ab194741dbfd0a5e6362d6b9f0", "fields": {"departement": "75", "stop_lat": 48.86604666963103, "code_postal": "75102", "stop_lon": 2.352620954015186, "coord": [48.86604666963103, 2.352620954015186], "stop_id": 1764, "stop_desc": "Saint-Denis (182 rue) - 75102", "stop_name": "R\u00e9aumur-S\u00e9bastopol"}, "geometry": {"type": "Point", "coordinates": [2.352620954015186, 48.86604666963103]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cec9c209458d66f2c52fc4d17313e8c5db3812b9", "fields": {"departement": "75", "stop_lat": 48.86966057219203, "code_postal": "75102", "stop_lon": 2.3363282816417112, "coord": [48.86966057219203, 2.3363282816417112], "stop_id": 1760, "stop_desc": "Quatre Septembre (20 rue du) - 75102", "stop_name": "Quatre Septembre"}, "geometry": {"type": "Point", "coordinates": [2.3363282816417112, 48.86966057219203]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9651ec0ba65ed72ca17111b4f8618e3ab17b3fc6", "fields": {"departement": "75", "stop_lat": 48.847016518419125, "code_postal": "75120", "stop_lon": 2.410816882334764, "coord": [48.847016518419125, 2.410816882334764], "stop_id": 1751, "stop_desc": "Cours de Vincennes (99) - 75120", "stop_name": "Porte de Vincennes"}, "geometry": {"type": "Point", "coordinates": [2.410816882334764, 48.847016518419125]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "771649797c2459a7ff69ada3a11a0480026d81d9", "fields": {"departement": "75", "stop_lat": 48.8769382235089, "code_postal": "75120", "stop_lon": 2.4063765669297816, "coord": [48.8769382235089, 2.4063765669297816], "stop_id": 1752, "stop_desc": "S\u00e9rurier (Boulevard) - 75120", "stop_name": "Porte des Lilas"}, "geometry": {"type": "Point", "coordinates": [2.4063765669297816, 48.8769382235089]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "50c8ffc33341f0d0128daddfd07e813fd1f91e77", "fields": {"departement": "75", "stop_lat": 48.8511463550549, "code_postal": "75106", "stop_lon": 2.3309628563664644, "coord": [48.8511463550549, 2.3309628563664644], "stop_id": 1733, "stop_desc": "Rue de Rennes - 75106", "stop_name": "Saint-Sulpice"}, "geometry": {"type": "Point", "coordinates": [2.3309628563664644, 48.8511463550549]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b322a8d495142d3a8cb42ba8c20a5b624b6fa359", "fields": {"departement": "75", "stop_lat": 48.844189508526796, "code_postal": "75114", "stop_lon": 2.324441232433701, "coord": [48.844189508526796, 2.324441232433701], "stop_id": 1824, "stop_desc": "Raoul Dautry (place, SNCF Montparnasse) - 75114", "stop_name": "Montparnasse-Bienvenue"}, "geometry": {"type": "Point", "coordinates": [2.324441232433701, 48.844189508526796]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3dbe4a8353377c20fd0163aa61c85943393115be", "fields": {"departement": "75", "stop_lat": 48.87496305802612, "code_postal": "75109", "stop_lon": 2.3401567908492056, "coord": [48.87496305802612, 2.3401567908492056], "stop_id": 1849, "stop_desc": "Victoire (rue de la, angle avec la rue La Fayette) - 75109", "stop_name": "Le Peletier"}, "geometry": {"type": "Point", "coordinates": [2.3401567908492056, 48.87496305802612]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f44a2cdce9e410c8f945e01ae3d014f37c4d41dc", "fields": {"departement": "75", "stop_lat": 48.832191599269656, "code_postal": "75114", "stop_lon": 2.3304069926293205, "coord": [48.832191599269656, 2.3304069926293205], "stop_id": 1828, "stop_desc": "G\u00e9n\u00e9ral Leclerc (42 avenue du) - 75114", "stop_name": "Mouton-Duvernet"}, "geometry": {"type": "Point", "coordinates": [2.3304069926293205, 48.832191599269656]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8d2e3fea92abb1e768edbbc84cb962406e54a305", "fields": {"departement": "75", "stop_lat": 48.849716940163574, "code_postal": "75105", "stop_lon": 2.348925558491872, "coord": [48.849716940163574, 2.348925558491872], "stop_id": 1811, "stop_desc": "Saint-Germain (62 boulevard) - 75105", "stop_name": "Maubert-Mutualit\u00e9"}, "geometry": {"type": "Point", "coordinates": [2.348925558491872, 48.849716940163574]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d5a674699fba1456bfc2e77785350ce2dda7075b", "fields": {"departement": "75", "stop_lat": 48.84942390087223, "code_postal": "75112", "stop_lon": 2.3970250382993576, "coord": [48.84942390087223, 2.3970250382993576], "stop_id": 1833, "stop_desc": "Nation (terre-plein face au 3 place de la) - 75112", "stop_name": "Nation"}, "geometry": {"type": "Point", "coordinates": [2.3970250382993576, 48.84942390087223]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f5d68e25980b6d4281873191a40589409d336935", "fields": {"departement": "75", "stop_lat": 48.84811123157566, "code_postal": "75112", "stop_lon": 2.3980040127977436, "coord": [48.84811123157566, 2.3980040127977436], "stop_id": 1832, "stop_desc": "Nation (terre-plein face au 3 place de la) - 75112", "stop_name": "Nation"}, "geometry": {"type": "Point", "coordinates": [2.3980040127977436, 48.84811123157566]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "33e4537dc0a7082932b7374ce04275e416e872ff", "fields": {"departement": "75", "stop_lat": 48.88057689074842, "code_postal": "75108", "stop_lon": 2.309415946164807, "coord": [48.88057689074842, 2.309415946164807], "stop_id": 1822, "stop_desc": "R\u00e9publique Dominicaine (1 place de la) - 75108", "stop_name": "Monceau"}, "geometry": {"type": "Point", "coordinates": [2.309415946164807, 48.88057689074842]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "efbe4bc19417f5e2e75702f0e67dd3160ed73695", "fields": {"departement": "93", "stop_lat": 48.84307613366186, "code_postal": "93051", "stop_lon": 2.5818763988415916, "coord": [48.84307613366186, 2.5818763988415916], "stop_id": 1840, "stop_desc": "Entr\u00e9e Ouest de la Gare - 93051", "stop_name": "Noisy-Champs"}, "geometry": {"type": "Point", "coordinates": [2.5818763988415916, 48.84307613366186]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "71fcb43dffd941a90e4c8c7f39398413c1a68d3e", "fields": {"departement": "91", "stop_lat": 48.73460130224641, "code_postal": "91377", "stop_lon": 2.273281709990223, "coord": [48.73460130224641, 2.273281709990223], "stop_id": 1810, "stop_desc": "Verri\u00e8res (avenue de) - 91377", "stop_name": "Massy-Verri\u00e8res"}, "geometry": {"type": "Point", "coordinates": [2.273281709990223, 48.73460130224641]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a691525108315f36e35ae5d545cae8d3aa9832dd", "fields": {"departement": "75", "stop_lat": 48.870720976292084, "code_postal": "75109", "stop_lon": 2.3322547435729586, "coord": [48.870720976292084, 2.3322547435729586], "stop_id": 1846, "stop_desc": "Th\u00e9\u00e2tre National de l'Op\u00e9ra - 75109", "stop_name": "Op\u00e9ra"}, "geometry": {"type": "Point", "coordinates": [2.3322547435729586, 48.870720976292084]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "519c239e639e355dd854d9416eada68bf25dc255", "fields": {"departement": "75", "stop_lat": 48.86822334760734, "code_postal": "75120", "stop_lon": 2.401324380544102, "coord": [48.86822334760734, 2.401324380544102], "stop_id": 1783, "stop_desc": "Paul Signac (place, en face du 125 avenue Gambetta) - 75120", "stop_name": "Pelleport"}, "geometry": {"type": "Point", "coordinates": [2.401324380544102, 48.86822334760734]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d1d91c9c010a97d85f8dc03c9c41213a47565e59", "fields": {"departement": "75", "stop_lat": 48.883203999876585, "code_postal": "75109", "stop_lon": 2.3272660246411383, "coord": [48.883203999876585, 2.3272660246411383], "stop_id": 1796, "stop_desc": "Clichy (terre-plein face au 7 place de) - 75109", "stop_name": "Place de Clichy"}, "geometry": {"type": "Point", "coordinates": [2.3272660246411383, 48.883203999876585]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "df79821d27af27d486376016ed13537c4676e776", "fields": {"departement": "75", "stop_lat": 48.86525985667316, "code_postal": "75111", "stop_lon": 2.3747570817167682, "coord": [48.86525985667316, 2.3747570817167682], "stop_id": 1779, "stop_desc": "R\u00e9publique (48 avenue de la, 87 avenue Parmentier) - 75111", "stop_name": "Parmentier"}, "geometry": {"type": "Point", "coordinates": [2.3747570817167682, 48.86525985667316]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dc8db3e6e9753b0d5ea9a85de6010e3bfbbe0572", "fields": {"departement": "92", "stop_lat": 48.88550610941816, "code_postal": "92051", "stop_lon": 2.258527470197358, "coord": [48.88550610941816, 2.258527470197358], "stop_id": 1803, "stop_desc": "Charles de Gaulle (209 avenue) - 92051", "stop_name": "Pont de Neuilly"}, "geometry": {"type": "Point", "coordinates": [2.258527470197358, 48.88550610941816]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5141c2a67be2edd0cdd46277890ae52f01cf025c", "fields": {"departement": "75", "stop_lat": 48.831111838257115, "code_postal": "75113", "stop_lon": 2.3557961457130645, "coord": [48.831111838257115, 2.3557961457130645], "stop_id": 1794, "stop_desc": "Vincent Auriol (182 boulevard) - 75113", "stop_name": "Place d'Italie"}, "geometry": {"type": "Point", "coordinates": [2.3557961457130645, 48.831111838257115]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1999706f18a873b2f6a5d84dd01ca33c473a86fb", "fields": {"departement": "75", "stop_lat": 48.86316120506396, "code_postal": "75111", "stop_lon": 2.3872604001843536, "coord": [48.86316120506396, 2.3872604001843536], "stop_id": 1784, "stop_desc": "R\u00e9publique (avenue de la) - 75111", "stop_name": "P\u00e8re-Lachaise"}, "geometry": {"type": "Point", "coordinates": [2.3872604001843536, 48.86316120506396]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "628e22678453d04d4146c546b7a39fb0c04ec6c7", "fields": {"departement": "75", "stop_lat": 48.857534382513876, "code_postal": "75116", "stop_lon": 2.28559270581709, "coord": [48.857534382513876, 2.28559270581709], "stop_id": 1780, "stop_desc": "Maison de la Radio Mus\u00e9e du Vin - 75116", "stop_name": "Passy"}, "geometry": {"type": "Point", "coordinates": [2.28559270581709, 48.857534382513876]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b68e8582690e79be0ea76aee3ef9b1565ac88a1d", "fields": {"departement": "91", "stop_lat": 48.69760164693814, "code_postal": "91471", "stop_lon": 2.182079748545582, "coord": [48.69760164693814, 2.182079748545582], "stop_id": 1771, "stop_desc": "Facult\u00e9 des Sciences - 91471", "stop_name": "Orsay-Ville"}, "geometry": {"type": "Point", "coordinates": [2.182079748545582, 48.69760164693814]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "df9030bafe896d752bcd677d74fd839f8e041e90", "fields": {"departement": "75", "stop_lat": 48.88202708962622, "code_postal": "75118", "stop_lon": 2.337213801747862, "coord": [48.88202708962622, 2.337213801747862], "stop_id": 1792, "stop_desc": "Clichy (26 boulevard de) - 75118", "stop_name": "Pigalle"}, "geometry": {"type": "Point", "coordinates": [2.337213801747862, 48.88202708962622]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9ae6424f97533e0182af07dcd29a7b9cb8dae54b", "fields": {"departement": "75", "stop_lat": 48.833933819810916, "code_postal": "75114", "stop_lon": 2.31790897216328, "coord": [48.833933819810916, 2.31790897216328], "stop_id": 1787, "stop_desc": "Rue Niepce - 75114", "stop_name": "Pernety"}, "geometry": {"type": "Point", "coordinates": [2.31790897216328, 48.833933819810916]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b31b3b65ea38f57346ffeb581156fccae30a2340", "fields": {"departement": "75", "stop_lat": 48.86145390429487, "code_postal": "75107", "stop_lon": 2.3203096905073557, "coord": [48.86145390429487, 2.3203096905073557], "stop_id": 2101, "stop_desc": "Saint-Germain (233 boulevard, angle avec la rue de l'Universit\u00e9) - 75107", "stop_name": "Assembl\u00e9e Nationale"}, "geometry": {"type": "Point", "coordinates": [2.3203096905073557, 48.86145390429487]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cc2b2fac2f816fd05cc57cc57fb1ede42c99d835", "fields": {"departement": "75", "stop_lat": 48.8724541509199, "code_postal": "75110", "stop_lon": 2.3560561681302907, "coord": [48.8724541509199, 2.3560561681302907], "stop_id": 2153, "stop_desc": "Strasbourg (51/53 boulevard de) - 75110", "stop_name": "Ch\u00e2teau d'Eau"}, "geometry": {"type": "Point", "coordinates": [2.3560561681302907, 48.8724541509199]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "94ad319b7c25fbfda06420ebfd9dfc736ed13ea3", "fields": {"departement": "75", "stop_lat": 48.85464204744478, "code_postal": "75111", "stop_lon": 2.385032193334828, "coord": [48.85464204744478, 2.385032193334828], "stop_id": 2151, "stop_desc": "Voltaire (188 boulevard) - 75111", "stop_name": "Charonne"}, "geometry": {"type": "Point", "coordinates": [2.385032193334828, 48.85464204744478]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "203749a248beed11ed7f5632136cf8c357956ff6", "fields": {"departement": "94", "stop_lat": 48.80703580209233, "code_postal": "94068", "stop_lon": 2.509901668386353, "coord": [48.80703580209233, 2.509901668386353], "stop_id": 2143, "stop_desc": "La Fayette (rue) - 94068", "stop_name": "Champigny"}, "geometry": {"type": "Point", "coordinates": [2.509901668386353, 48.80703580209233]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "49d01684ed36b6db43509262e97b31ede2b1eef6", "fields": {"departement": "75", "stop_lat": 48.856426348325236, "code_postal": "75111", "stop_lon": 2.394554257654992, "coord": [48.856426348325236, 2.394554257654992], "stop_id": 2041, "stop_desc": "Charonne (111 boulevard de, 180 rue de Charonne et 1 rue de Bagnolet) - 75111", "stop_name": "Alexandre-Dumas"}, "geometry": {"type": "Point", "coordinates": [2.394554257654992, 48.856426348325236]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2db7d45cd591c7c6883a030d3d689b54d9518be9", "fields": {"departement": "93", "stop_lat": 48.895799232549, "code_postal": "93008", "stop_lon": 2.4248572983975945, "coord": [48.895799232549, 2.4248572983975945], "stop_id": 2121, "stop_desc": "Paris (7 rue de, Bobigny Bus) - 93008", "stop_name": "Bobigny-Pantin (Raymond Queneau)"}, "geometry": {"type": "Point", "coordinates": [2.4248572983975945, 48.895799232549]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7087e54eac326fd681e692c77edec29dce90b91e", "fields": {"departement": "75", "stop_lat": 48.8476991081708, "code_postal": "75115", "stop_lon": 2.302039143669263, "coord": [48.8476991081708, 2.302039143669263], "stop_id": 2135, "stop_desc": "Garibaldi (terre-plein face au 2 boulevard, c\u00f4t\u00e9 pair) - 75115", "stop_name": "Cambronne"}, "geometry": {"type": "Point", "coordinates": [2.302039143669263, 48.8476991081708]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1d27cab33f23c3235667e04f22c7cc33668fdc81", "fields": {"departement": "75", "stop_lat": 48.87194579797485, "code_postal": "75119", "stop_lon": 2.3767510413738, "coord": [48.87194579797485, 2.3767510413738], "stop_id": 2115, "stop_desc": "Villette (terre-plein face au 1 boulevard de la) - 75119", "stop_name": "Belleville"}, "geometry": {"type": "Point", "coordinates": [2.3767510413738, 48.87194579797485]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1821c938e5b81d5f438bb10aabbcf0c589855f41", "fields": {"departement": "75", "stop_lat": 48.851767474505195, "code_postal": "75120", "stop_lon": 2.4011814838726444, "coord": [48.851767474505195, 2.4011814838726444], "stop_id": 2133, "stop_desc": "Buzenval (51 rue de, angle avec le 35 rue d'Avron) - 75120", "stop_name": "Buzenval"}, "geometry": {"type": "Point", "coordinates": [2.4011814838726444, 48.851767474505195]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "059eeee5b3f1b77863b1ffe361db2cc4456dab83", "fields": {"departement": "95", "stop_lat": 49.04954211817629, "code_postal": "95127", "stop_lon": 2.0350436480345913, "coord": [49.04954211817629, 2.0350436480345913], "stop_id": 2141, "stop_desc": "Rue des Pas Perdus - 95127", "stop_name": "Cergy-Saint-Christophe"}, "geometry": {"type": "Point", "coordinates": [2.0350436480345913, 49.04954211817629]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b883caa9428e7454f40d537f72f21e14335acfae", "fields": {"departement": "75", "stop_lat": 48.88469617855217, "code_postal": "75118", "stop_lon": 2.342610282962049, "coord": [48.88469617855217, 2.342610282962049], "stop_id": 2090, "stop_desc": "Suzanne Valadon (place) - 75118", "stop_name": "Funiculaire Gare basse"}, "geometry": {"type": "Point", "coordinates": [2.342610282962049, 48.88469617855217]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "23d9faccb5717f9063d50c876c90157d3f78dc19", "fields": {"departement": "75", "stop_lat": 48.87567248598795, "code_postal": "75117", "stop_lon": 2.289444164481448, "coord": [48.87567248598795, 2.289444164481448], "stop_id": 2098, "stop_desc": "Grande Arm\u00e9e (36 avenue de la) - 75117", "stop_name": "Argentine"}, "geometry": {"type": "Point", "coordinates": [2.289444164481448, 48.87567248598795]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1c7285b57001ff7055713d7a21c5c850139490d9", "fields": {"departement": "75", "stop_lat": 48.85297567465423, "code_postal": "75104", "stop_lon": 2.3692188244433434, "coord": [48.85297567465423, 2.3692188244433434], "stop_id": 2111, "stop_desc": "Roquette (rue de la) PARIS-11 - 75104", "stop_name": "Bastille"}, "geometry": {"type": "Point", "coordinates": [2.3692188244433434, 48.85297567465423]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1d1811872b38819d63122ecb9e1ab969871a5574", "fields": {"departement": "75", "stop_lat": 48.84143200664826, "code_postal": "75112", "stop_lon": 2.4008691933800934, "coord": [48.84143200664826, 2.4008691933800934], "stop_id": 2114, "stop_desc": "Picpus (34 boulevard de) - 75112", "stop_name": "Bel-Air"}, "geometry": {"type": "Point", "coordinates": [2.4008691933800934, 48.84143200664826]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f76d4df5db9d2a1ca5279178b894eba4a9a16c78", "fields": {"departement": "93", "stop_lat": 48.903898047529474, "code_postal": "93001", "stop_lon": 2.3924800786724747, "coord": [48.903898047529474, 2.3924800786724747], "stop_id": 2055, "stop_desc": "R\u00e9publique (144 avenue de la) - 93001", "stop_name": "Aubervilliers Pantin (4 Chemins)"}, "geometry": {"type": "Point", "coordinates": [2.3924800786724747, 48.903898047529474]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "deffb7ccf88d57a0dafedf328429779eb953febe", "fields": {"departement": "75", "stop_lat": 48.87371526831065, "code_postal": "75108", "stop_lon": 2.294759562849878, "coord": [48.87371526831065, 2.294759562849878], "stop_id": 2030, "stop_desc": "Charles de Gaulle (place, 2 avenue de Wagram) - 75108", "stop_name": "Charles de Gaulle-Etoile"}, "geometry": {"type": "Point", "coordinates": [2.294759562849878, 48.87371526831065]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "078ba5d382f713f197c963a1b4e798103af3d8e6", "fields": {"departement": "75", "stop_lat": 48.83937646312499, "code_postal": "75112", "stop_lon": 2.3957880604156494, "coord": [48.83937646312499, 2.3957880604156494], "stop_id": 2081, "stop_desc": "Reuilly (118 rue de) - 75112", "stop_name": "Daumesnil (F\u00e9lix Ebou\u00e9)"}, "geometry": {"type": "Point", "coordinates": [2.3957880604156494, 48.83937646312499]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4b825045394ec795371fbf4e569caa380cffafbd", "fields": {"departement": "75", "stop_lat": 48.8724541509199, "code_postal": "75110", "stop_lon": 2.3560561681302907, "coord": [48.8724541509199, 2.3560561681302907], "stop_id": 2034, "stop_desc": "Strasbourg (51/53 boulevard de) - 75110", "stop_name": "Ch\u00e2teau d'Eau"}, "geometry": {"type": "Point", "coordinates": [2.3560561681302907, 48.8724541509199]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "80714d4385742257b8af57544b4d0b9a11b384ee", "fields": {"departement": "94", "stop_lat": 48.752988644666615, "code_postal": "94004", "stop_lon": 2.5052228459567494, "coord": [48.752988644666615, 2.5052228459567494], "stop_id": 2074, "stop_desc": "Gare (place de la) - 94004", "stop_name": "Boissy-Saint-L\u00e9ger"}, "geometry": {"type": "Point", "coordinates": [2.5052228459567494, 48.752988644666615]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "51824ac8afbcde5579dca9c9429c7759f49f0cf2", "fields": {"departement": "75", "stop_lat": 48.86538117604685, "code_postal": "75103", "stop_lon": 2.3556449312068772, "coord": [48.86538117604685, 2.3556449312068772], "stop_id": 2051, "stop_desc": "Vertus (rue des) - 75103", "stop_name": "Arts-et-M\u00e9tiers"}, "geometry": {"type": "Point", "coordinates": [2.3556449312068772, 48.86538117604685]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "87d6aeba5c1ed39394c37281954886ace0acf326", "fields": {"departement": "75", "stop_lat": 48.85297567465423, "code_postal": "75104", "stop_lon": 2.3692188244433434, "coord": [48.85297567465423, 2.3692188244433434], "stop_id": 2062, "stop_desc": "Roquette (rue de la) PARIS-11 - 75104", "stop_name": "Bastille"}, "geometry": {"type": "Point", "coordinates": [2.3692188244433434, 48.85297567465423]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "de1f5ba3714c8ed7d06eac33d10ecc50f919ab88", "fields": {"departement": "75", "stop_lat": 48.85338911229207, "code_postal": "75104", "stop_lon": 2.3691646022087665, "coord": [48.85338911229207, 2.3691646022087665], "stop_id": 2063, "stop_desc": "Roquette (rue de la) PARIS-11 - 75104", "stop_name": "Bastille"}, "geometry": {"type": "Point", "coordinates": [2.3691646022087665, 48.85338911229207]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ef5cbf43ab377c598c9408c7907ed2eb9611d930", "fields": {"departement": "94", "stop_lat": 48.7984604738998, "code_postal": "94016", "stop_lon": 2.327921752141985, "coord": [48.7984604738998, 2.327921752141985], "stop_id": 2047, "stop_desc": "Rue de la Gare - 94016", "stop_name": "Arcueil-Cachan"}, "geometry": {"type": "Point", "coordinates": [2.327921752141985, 48.7984604738998]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "311a35009a4c58889d2906c2f726ae4f7a570a43", "fields": {"departement": "92", "stop_lat": 48.75482748503882, "code_postal": "92002", "stop_lon": 2.3008650705983067, "coord": [48.75482748503882, 2.3008650705983067], "stop_id": 2045, "stop_desc": "Rue Velpeau - 92002", "stop_name": "Antony"}, "geometry": {"type": "Point", "coordinates": [2.3008650705983067, 48.75482748503882]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2b3dbe7faeb0d38c3b0665367b8461b4a6be062d", "fields": {"departement": "75", "stop_lat": 48.8522227131835, "code_postal": "75111", "stop_lon": 2.389115650927187, "coord": [48.8522227131835, 2.389115650927187], "stop_id": 1709, "stop_desc": "Voltaire (232 boulevard) - 75111", "stop_name": "Rue des Boulets"}, "geometry": {"type": "Point", "coordinates": [2.389115650927187, 48.8522227131835]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a7356d5c0ac30762f86a106ac4aea3c2561fb7b7", "fields": {"departement": "93", "stop_lat": 48.9199435050834, "code_postal": "93066", "stop_lon": 2.3439094197858905, "coord": [48.9199435050834, 2.3439094197858905], "stop_id": 1692060, "stop_desc": "Centre Paris - Pleyel - 93066", "stop_name": "Carrefour-Pleyel"}, "geometry": {"type": "Point", "coordinates": [2.3439094197858905, 48.9199435050834]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ef2827eb7b4b9a2f58621dcd80a12db459fd9d42", "fields": {"departement": "75", "stop_lat": 48.871699810971116, "code_postal": "75120", "stop_lon": 2.4042987242021825, "coord": [48.871699810971116, 2.4042987242021825], "stop_id": 1718, "stop_desc": "Gambetta (112 avenue) - 75120", "stop_name": "Saint-Fargeau"}, "geometry": {"type": "Point", "coordinates": [2.4042987242021825, 48.871699810971116]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c62a8663b6e33e62aa6247fcc4843646bb9d7219", "fields": {"departement": "92", "stop_lat": 48.88722206053287, "code_postal": "92063", "stop_lon": 2.170623204930391, "coord": [48.88722206053287, 2.170623204930391], "stop_id": 1713, "stop_desc": "Gare routi\u00e8re - 92063", "stop_name": "Rueil-Malmaison"}, "geometry": {"type": "Point", "coordinates": [2.170623204930391, 48.88722206053287]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4b072cdebecfc27045a2748bfda0c88dc98f58fc", "fields": {"departement": "75", "stop_lat": 48.87552244924565, "code_postal": "75120", "stop_lon": 2.3986765111449513, "coord": [48.87552244924565, 2.3986765111449513], "stop_id": 1682, "stop_desc": "Belleville (rue de) - 75120", "stop_name": "T\u00e9l\u00e9graphe"}, "geometry": {"type": "Point", "coordinates": [2.3986765111449513, 48.87552244924565]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0e1d517d79ca5b7921c1eebc33890cceba667265", "fields": {"departement": "75", "stop_lat": 48.84205985758205, "code_postal": "75106", "stop_lon": 2.328867050437212, "coord": [48.84205985758205, 2.328867050437212], "stop_id": 1692, "stop_desc": "Montparnasse (108 boulevard du) - 75106", "stop_name": "Vavin"}, "geometry": {"type": "Point", "coordinates": [2.328867050437212, 48.84205985758205]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bde5ba207bd4610138cd8e02f49695d5bc5df6a2", "fields": {"departement": "94", "stop_lat": 48.854043248483144, "code_postal": "94033", "stop_lon": 2.488553014023377, "coord": [48.854043248483144, 2.488553014023377], "stop_id": 1689, "stop_desc": "ZUP de Fontenay - 94033", "stop_name": "Val de Fontenay"}, "geometry": {"type": "Point", "coordinates": [2.488553014023377, 48.854043248483144]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "40485c1e32c839184cddd8df7aede4aa6bcb77ee", "fields": {"departement": "75", "stop_lat": 48.829830695271106, "code_postal": "75113", "stop_lon": 2.376120009344837, "coord": [48.829830695271106, 2.376120009344837], "stop_id": 1166826, "stop_desc": "Face au 62 rue du Chevaleret - 75113", "stop_name": "Biblioth\u00e8que-Fran\u00e7ois Mitterrand"}, "geometry": {"type": "Point", "coordinates": [2.376120009344837, 48.829830695271106]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f791a2fd911fa74e93e8f291371bfc0df26af1e6", "fields": {"departement": "75", "stop_lat": 48.849018928349764, "code_postal": "75115", "stop_lon": 2.297762160707931, "coord": [48.849018928349764, 2.297762160707931], "stop_id": 1657, "stop_desc": "Pondich\u00e9ry (25 rue de) - 75115", "stop_name": "La Motte-Picquet-Grenelle"}, "geometry": {"type": "Point", "coordinates": [2.297762160707931, 48.849018928349764]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c51f328ab7ad28bc8b7920b4fc8fabdda2c19cd0", "fields": {"departement": "75", "stop_lat": 48.843164692766834, "code_postal": "75105", "stop_lon": 2.3521103624150967, "coord": [48.843164692766834, 2.3521103624150967], "stop_id": 1649, "stop_desc": "Monge (2 place) - 75105", "stop_name": "Place Monge (Jardin des Plantes)"}, "geometry": {"type": "Point", "coordinates": [2.3521103624150967, 48.843164692766834]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "374cb3c25ee7890253dda410d0f69fc141c07c3d", "fields": {"departement": "75", "stop_lat": 48.8874368425293, "code_postal": "75117", "stop_lon": 2.3257252220174083, "coord": [48.8874368425293, 2.3257252220174083], "stop_id": 1656, "stop_desc": "Clichy (66 avenue de, 6 avenue de Saint-Ouen) - 75117", "stop_name": "La Fourche"}, "geometry": {"type": "Point", "coordinates": [2.3257252220174083, 48.8874368425293]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "11bceec15558f795cf702a00b15e4e98eb7107b8", "fields": {"departement": "75", "stop_lat": 48.831552302643125, "code_postal": "75113", "stop_lon": 2.3553334432190454, "coord": [48.831552302643125, 2.3553334432190454], "stop_id": 1648, "stop_desc": "Vincent Auriol (182 boulevard) - 75113", "stop_name": "Place d'Italie"}, "geometry": {"type": "Point", "coordinates": [2.3553334432190454, 48.831552302643125]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ecc6f91c878017d2b823139ba16a33400b2e8a91", "fields": {"departement": "93", "stop_lat": 48.94611087248738, "code_postal": "93066", "stop_lon": 2.3620451929905992, "coord": [48.94611087248738, 2.3620451929905992], "stop_id": 140078, "stop_desc": "Gare Routiere - 93066", "stop_name": "Saint-Denis-Universit\u00e9"}, "geometry": {"type": "Point", "coordinates": [2.3620451929905992, 48.94611087248738]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "40a13b1b5336814b2b33aa5fc2f73c7f6a1a0baf", "fields": {"departement": "75", "stop_lat": 48.83331371557845, "code_postal": "75112", "stop_lon": 2.387299704383512, "coord": [48.83331371557845, 2.387299704383512], "stop_id": 1166829, "stop_desc": "Cour Chamonard - 75112", "stop_name": "Cour Saint-Emilion"}, "geometry": {"type": "Point", "coordinates": [2.387299704383512, 48.83331371557845]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "46fae5c8c7c5b5f21e7a79645dad6f3a816b144e", "fields": {"departement": "75", "stop_lat": 48.840542782965464, "code_postal": "75112", "stop_lon": 2.3794094631230687, "coord": [48.840542782965464, 2.3794094631230687], "stop_id": 1166830, "stop_desc": "Place du Bataillon du Pacifique - 75112", "stop_name": "Bercy"}, "geometry": {"type": "Point", "coordinates": [2.3794094631230687, 48.840542782965464]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d666141fc43b047db37e6cacb66a9814fd011eac", "fields": {"departement": "75", "stop_lat": 48.86145390429487, "code_postal": "75107", "stop_lon": 2.3203096905073557, "coord": [48.86145390429487, 2.3203096905073557], "stop_id": 2052, "stop_desc": "Saint-Germain (233 boulevard, angle avec la rue de l'Universit\u00e9) - 75107", "stop_name": "Assembl\u00e9e Nationale"}, "geometry": {"type": "Point", "coordinates": [2.3203096905073557, 48.86145390429487]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "011b1e9442f4c281caaaaff5136bd9dd252ee75e", "fields": {"departement": "75", "stop_lat": 48.8843997149084, "code_postal": "75118", "stop_lon": 2.338399384171042, "coord": [48.8843997149084, 2.338399384171042], "stop_id": 2037, "stop_desc": "Abbesses (place des, face au 2 rue de la Vieuville) - 75118", "stop_name": "Abbesses"}, "geometry": {"type": "Point", "coordinates": [2.338399384171042, 48.8843997149084]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e63a677e9315542e4e920f5f272d9eb665e3aa77", "fields": {"departement": "75", "stop_lat": 48.851193819213286, "code_postal": "75111", "stop_lon": 2.398239140823123, "coord": [48.851193819213286, 2.398239140823123], "stop_id": 2058, "stop_desc": "Charonne (terre-plein face au 35 boulevard de) - 75111", "stop_name": "Avron"}, "geometry": {"type": "Point", "coordinates": [2.398239140823123, 48.851193819213286]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "056c7487427cb79e086a3ca000163a3730e1e010", "fields": {"departement": "95", "stop_lat": 49.04954211817629, "code_postal": "95127", "stop_lon": 2.0350436480345913, "coord": [49.04954211817629, 2.0350436480345913], "stop_id": 2022, "stop_desc": "Rue des Pas Perdus - 95127", "stop_name": "Cergy-Saint-Christophe"}, "geometry": {"type": "Point", "coordinates": [2.0350436480345913, 49.04954211817629]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "476a7c760bb1b87ec80ea0ffad918054e09f565e", "fields": {"departement": "75", "stop_lat": 48.85856967247972, "code_postal": "75101", "stop_lon": 2.347933245835307, "coord": [48.85856967247972, 2.347933245835307], "stop_id": 2036, "stop_desc": "Victoria (7 avenue, 4 rue Saint-Martin) - 75101", "stop_name": "Ch\u00e2telet"}, "geometry": {"type": "Point", "coordinates": [2.347933245835307, 48.85856967247972]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6f58f892806d282680e6815bcd76566290a23a73", "fields": {"departement": "91", "stop_lat": 48.6957326504055, "code_postal": "91122", "stop_lon": 2.163089675156206, "coord": [48.6957326504055, 2.163089675156206], "stop_id": 2011, "stop_desc": "Impasse de la Station - 91122", "stop_name": "Bures-sur-Yvette"}, "geometry": {"type": "Point", "coordinates": [2.163089675156206, 48.6957326504055]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "02ac95a4e6735aa5dffa6b022b6b4576f56668c4", "fields": {"departement": "75", "stop_lat": 48.887086283050444, "code_postal": "75118", "stop_lon": 2.3493700732513783, "coord": [48.887086283050444, 2.3493700732513783], "stop_id": 2033, "stop_desc": "Ch\u00e2teau Rouge (48 place du) - 75118", "stop_name": "Ch\u00e2teau Rouge"}, "geometry": {"type": "Point", "coordinates": [2.3493700732513783, 48.887086283050444]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9307192dafaaab9f1e4f7f3cb60bc9d026fd61ea", "fields": {"departement": "94", "stop_lat": 48.84442645483315, "code_postal": "94015", "stop_lon": 2.5263936672560128, "coord": [48.84442645483315, 2.5263936672560128], "stop_id": 2010, "stop_desc": "Gallieni (boulevard) - 94015", "stop_name": "Bry-sur-Marne"}, "geometry": {"type": "Point", "coordinates": [2.5263936672560128, 48.84442645483315]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3466362e9d24f27a3e1e9b942e298015f8f6a749", "fields": {"departement": "75", "stop_lat": 48.882871690180586, "code_postal": "75118", "stop_lon": 2.344163572800391, "coord": [48.882871690180586, 2.344163572800391], "stop_id": 2046, "stop_desc": "Rochechouart (68 boulevard) - 75118", "stop_name": "Anvers"}, "geometry": {"type": "Point", "coordinates": [2.344163572800391, 48.882871690180586]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4bcb944ee66613f4cddfde0f6c62b7fad2a2fbc2", "fields": {"departement": "75", "stop_lat": 48.86876179259638, "code_postal": "75102", "stop_lon": 2.3406741288121005, "coord": [48.86876179259638, 2.3406741288121005], "stop_id": 2007, "stop_desc": "Palais Brongniart - 75102", "stop_name": "Bourse"}, "geometry": {"type": "Point", "coordinates": [2.3406741288121005, 48.86876179259638]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b6f8e92f246cd80c3c0941c39d4d7a193b75255d", "fields": {"departement": "75", "stop_lat": 48.84341422414371, "code_postal": "75113", "stop_lon": 2.3641883928676424, "coord": [48.84341422414371, 2.3641883928676424], "stop_id": 1951, "stop_desc": "SNCF/RER C grandes lignes et banlieue - 75113", "stop_name": "Gare d'Austerlitz"}, "geometry": {"type": "Point", "coordinates": [2.3641883928676424, 48.84341422414371]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "86e0f7295c4c7b86a3d0e3d419b931cd045ff548", "fields": {"departement": "75", "stop_lat": 48.8312479519874, "code_postal": "75113", "stop_lon": 2.343122075822986, "coord": [48.8312479519874, 2.343122075822986], "stop_id": 1962, "stop_desc": "Auguste Blanqui (terre-plein face au 124 boulevard) - 75113", "stop_name": "Glaci\u00e8re"}, "geometry": {"type": "Point", "coordinates": [2.343122075822986, 48.8312479519874]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "693fb8646c0e95a6ec008d8b1ed1674a07a7b5b0", "fields": {"departement": "75", "stop_lat": 48.838751821388634, "code_postal": "75114", "stop_lon": 2.322509186224712, "coord": [48.838751821388634, 2.322509186224712], "stop_id": 1948, "stop_desc": "Maine (avenue du, acc\u00e8s direct au centre commercial) - 75114", "stop_name": "Ga\u00eet\u00e9"}, "geometry": {"type": "Point", "coordinates": [2.322509186224712, 48.838751821388634]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "158a82dd0f4b59181b35d3af98fec9a961aa674b", "fields": {"departement": "93", "stop_lat": 48.92051450668569, "code_postal": "93027", "stop_lon": 2.410225779120198, "coord": [48.92051450668569, 2.410225779120198], "stop_id": 1911, "stop_desc": "Jean Jaur\u00e8s (57 avenue) - 93027", "stop_name": "La Courneuve-8-Mai-1945"}, "geometry": {"type": "Point", "coordinates": [2.410225779120198, 48.92051450668569]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a72fbdbe71a6079fe8e4cd06bb0e5ae8267b83c6", "fields": {"departement": "92", "stop_lat": 48.787756601242194, "code_postal": "92032", "stop_lon": 2.2918918529063417, "coord": [48.787756601242194, 2.2918918529063417], "stop_id": 1942, "stop_desc": "\u00c9cole Normale Sup\u00e9rieure - 92032", "stop_name": "Fontenay-aux-Roses"}, "geometry": {"type": "Point", "coordinates": [2.2918918529063417, 48.787756601242194]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "28fe91d1474aa3482ce903457c9ad01d63c4122d", "fields": {"departement": "94", "stop_lat": 48.8434118592224, "code_postal": "94033", "stop_lon": 2.464815403274336, "coord": [48.8434118592224, 2.464815403274336], "stop_id": 1943, "stop_desc": "Moreau David (place) - 94033", "stop_name": "Fontenay-sous-Bois"}, "geometry": {"type": "Point", "coordinates": [2.464815403274336, 48.8434118592224]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "769db7d7da75d9f0a1b5a3728ede4e0b508b0b50", "fields": {"departement": "91", "stop_lat": 48.69506073208291, "code_postal": "91122", "stop_lon": 2.1526641367708073, "coord": [48.69506073208291, 2.1526641367708073], "stop_id": 1914, "stop_desc": "Hacquini\u00e8re (25 rue de la) - 91122", "stop_name": "La Hacquini\u00e8re"}, "geometry": {"type": "Point", "coordinates": [2.1526641367708073, 48.69506073208291]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0b3b18df7874940516a21e0b20db002ea6d39570", "fields": {"departement": "75", "stop_lat": 48.84432338300201, "code_postal": "75115", "stop_lon": 2.317564676180599, "coord": [48.84432338300201, 2.317564676180599], "stop_id": 1938, "stop_desc": "Cherche-Midi (138 rue du) - 75115", "stop_name": "Falgui\u00e8re"}, "geometry": {"type": "Point", "coordinates": [2.317564676180599, 48.84432338300201]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0fbf3eec8a9cc6fe7f51d887e234e0d44ad5b7b2", "fields": {"departement": "75", "stop_lat": 48.8849316105461, "code_postal": "75119", "stop_lon": 2.379091246899838, "coord": [48.8849316105461, 2.379091246899838], "stop_id": 1922, "stop_desc": "Laumi\u00e8re (43 avenue de) - 75119", "stop_name": "Laumi\u00e8re"}, "geometry": {"type": "Point", "coordinates": [2.379091246899838, 48.8849316105461]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7bf691fba4f6b8d53fccb4c0a67e92ec4eae3b8c", "fields": {"departement": "75", "stop_lat": 48.844804715128525, "code_postal": "75112", "stop_lon": 2.3738435712712422, "coord": [48.844804715128525, 2.3738435712712422], "stop_id": 1956, "stop_desc": "Rue de Bercy - 75112", "stop_name": "Gare de Lyon"}, "geometry": {"type": "Point", "coordinates": [2.3738435712712422, 48.844804715128525]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2f7ae8d6e6b97b4ff8d436ce1106ab4dbbb9233f", "fields": {"departement": "75", "stop_lat": 48.8654893908901, "code_postal": "75108", "stop_lon": 2.321411789213801, "coord": [48.8654893908901, 2.321411789213801], "stop_id": 1982, "stop_desc": "Tuileries (jardin des, face au 246 rue de Rivoli et \u00c8 la rue Cambon) PARIS-08 - 75108", "stop_name": "Concorde"}, "geometry": {"type": "Point", "coordinates": [2.321411789213801, 48.8654893908901]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f16ff4bbde5e16f855bf7197f543879999cbfb07", "fields": {"departement": "75", "stop_lat": 48.829863252112794, "code_postal": "75113", "stop_lon": 2.3506227279320897, "coord": [48.829863252112794, 2.3506227279320897], "stop_id": 1987, "stop_desc": "Auguste Blanqui (terre-plein face au boulevard, c\u00f4t\u00e9 impair) - 75113", "stop_name": "Corvisart"}, "geometry": {"type": "Point", "coordinates": [2.3506227279320897, 48.829863252112794]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d073cccf9bec61b2ead224ae4180db2f851e829f", "fields": {"departement": "75", "stop_lat": 48.85720364550444, "code_postal": "75101", "stop_lon": 2.3472247110558406, "coord": [48.85720364550444, 2.3472247110558406], "stop_id": 1966, "stop_desc": "Victoria (7 avenue, 4 rue Saint-Martin) - 75101", "stop_name": "Ch\u00e2telet"}, "geometry": {"type": "Point", "coordinates": [2.3472247110558406, 48.85720364550444]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a244064110d6277c0e080debf4506365a7b8b0c9", "fields": {"departement": "75", "stop_lat": 48.87049583233104, "code_postal": "75109", "stop_lon": 2.348862117440598, "coord": [48.87049583233104, 2.348862117440598], "stop_id": 2001, "stop_desc": "Poissonni\u00e8re (8 boulevard) - 75109", "stop_name": "Bonne Nouvelle"}, "geometry": {"type": "Point", "coordinates": [2.348862117440598, 48.87049583233104]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d9daa3ef28570c05b960608cbf521f6b40af4749", "fields": {"departement": "75", "stop_lat": 48.89468154198812, "code_postal": "75119", "stop_lon": 2.382302193974242, "coord": [48.89468154198812, 2.382302193974242], "stop_id": 1985, "stop_desc": "Corentin Cariou (5 avenue) - 75119", "stop_name": "Corentin-Cariou"}, "geometry": {"type": "Point", "coordinates": [2.382302193974242, 48.89468154198812]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "115533db6c5026c88dba977a784792ced829e46a", "fields": {"departement": "92", "stop_lat": 48.78005093776892, "code_postal": "92014", "stop_lon": 2.3121626259597874, "coord": [48.78005093776892, 2.3121626259597874], "stop_id": 2006, "stop_desc": "Place de la Gare - 92014", "stop_name": "Bourg-la-Reine"}, "geometry": {"type": "Point", "coordinates": [2.3121626259597874, 48.78005093776892]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e4b67766e0acdc90e17100c4c1a7ec086e40063f", "fields": {"departement": "92", "stop_lat": 48.82682988739414, "code_postal": "92040", "stop_lon": 2.278966861574341, "coord": [48.82682988739414, 2.278966861574341], "stop_id": 1986, "stop_desc": "Rue Ernest Renan - 92040", "stop_name": "Corentin-Celton"}, "geometry": {"type": "Point", "coordinates": [2.278966861574341, 48.82682988739414]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0664b5c64f546615315651d0f3fdfd5d2e77708f", "fields": {"departement": "92", "stop_lat": 48.810283363510756, "code_postal": "92020", "stop_lon": 2.3012888709759522, "coord": [48.810283363510756, 2.3012888709759522], "stop_id": 1969, "stop_desc": "Montrouge - 92020", "stop_name": "Ch\u00e2tillon Montrouge"}, "geometry": {"type": "Point", "coordinates": [2.3012888709759522, 48.810283363510756]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "38a5c53b6c6a2b96a41fb8d04eafbf67c890d872", "fields": {"departement": "75", "stop_lat": 48.87927215163157, "code_postal": "75108", "stop_lon": 2.303298546682486, "coord": [48.87927215163157, 2.303298546682486], "stop_id": 1989, "stop_desc": "Parc de Monceau - 75108", "stop_name": "Courcelles"}, "geometry": {"type": "Point", "coordinates": [2.303298546682486, 48.87927215163157]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7a4c1c4beb6a2bf669e38d5615fec91456b72fe1", "fields": {"departement": "75", "stop_lat": 48.85568485028629, "code_postal": "75104", "stop_lon": 2.3462029295287157, "coord": [48.85568485028629, 2.3462029295287157], "stop_id": 1975, "stop_desc": "Louis Lepine (2 place) - 75104", "stop_name": "Cit\u00e9"}, "geometry": {"type": "Point", "coordinates": [2.3462029295287157, 48.85568485028629]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f68122e3ec29a7a83a0fe43b5843fc3b9dcaf537", "fields": {"departement": "92", "stop_lat": 48.89730990517954, "code_postal": "92044", "stop_lon": 2.2807686428069003, "coord": [48.89730990517954, 2.2807686428069003], "stop_id": 1802, "stop_desc": "Baudin (rue, angle avec la rue Anatole France) - 92044", "stop_name": "Pont de Levallois-B\u00e9con"}, "geometry": {"type": "Point", "coordinates": [2.2807686428069003, 48.89730990517954]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a1fea268db747f49082a74602d65416862030762", "fields": {"departement": "75", "stop_lat": 48.84498448667992, "code_postal": "75116", "stop_lon": 2.26232003903747, "coord": [48.84498448667992, 2.26232003903747], "stop_id": 1817, "stop_desc": "Molitor (34 rue, angle avec le 37 rue Michel-Ange) - 75116", "stop_name": "Michel-Ange-Molitor"}, "geometry": {"type": "Point", "coordinates": [2.26232003903747, 48.84498448667992]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6ed4471bd479b9c22c8366f41b6b4d74420f30dc", "fields": {"departement": "75", "stop_lat": 48.845056129032, "code_postal": "75116", "stop_lon": 2.261911423279769, "coord": [48.845056129032, 2.261911423279769], "stop_id": 1816, "stop_desc": "Molitor (34 rue, angle avec le 37 rue Michel-Ange) - 75116", "stop_name": "Michel-Ange-Molitor"}, "geometry": {"type": "Point", "coordinates": [2.261911423279769, 48.845056129032]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "36ed24e6941cd30b6d3bbe1916493400a85d6e47", "fields": {"departement": "75", "stop_lat": 48.85837884146994, "code_postal": "75111", "stop_lon": 2.3897347327397043, "coord": [48.85837884146994, 2.3897347327397043], "stop_id": 1788, "stop_desc": "Mont-Louis (19 rue de, 131 avenue Philippe Auguste) - 75111", "stop_name": "Philippe Auguste"}, "geometry": {"type": "Point", "coordinates": [2.3897347327397043, 48.85837884146994]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0e05a9c4d1c923235c83d20df59f0b3c145eb15c", "fields": {"departement": "75", "stop_lat": 48.88345565159549, "code_postal": "75109", "stop_lon": 2.3273749934103556, "coord": [48.88345565159549, 2.3273749934103556], "stop_id": 1795, "stop_desc": "Clichy (terre-plein face au 7 place de) - 75109", "stop_name": "Place de Clichy"}, "geometry": {"type": "Point", "coordinates": [2.3273749934103556, 48.88345565159549]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a4d16e8428f5ce939d72e087194c39df62fcbd44", "fields": {"departement": "75", "stop_lat": 48.85346358569476, "code_postal": "75104", "stop_lon": 2.357383972809163, "coord": [48.85346358569476, 2.357383972809163], "stop_id": 1805, "stop_desc": "\u00cele Saint-Louis - 75104", "stop_name": "Pont Marie (Cit\u00e9 des Arts)"}, "geometry": {"type": "Point", "coordinates": [2.357383972809163, 48.85346358569476]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "30ff2cdd78ae59b219c80803eaeec37662a8c957", "fields": {"departement": "75", "stop_lat": 48.862945661667425, "code_postal": "75111", "stop_lon": 2.3868924045430804, "coord": [48.862945661667425, 2.3868924045430804], "stop_id": 1785, "stop_desc": "R\u00e9publique (avenue de la) - 75111", "stop_name": "P\u00e8re-Lachaise"}, "geometry": {"type": "Point", "coordinates": [2.3868924045430804, 48.862945661667425]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4df5f0fb96e03d7d8755fd76bf2b3f6496b31441", "fields": {"departement": "93", "stop_lat": 48.97374124286838, "code_postal": "93078", "stop_lon": 2.5147988854756136, "coord": [48.97374124286838, 2.5147988854756136], "stop_id": 1777, "stop_desc": "Parc des expositions - 93078", "stop_name": "Parc des Expositions"}, "geometry": {"type": "Point", "coordinates": [2.5147988854756136, 48.97374124286838]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2f0c8b70702f5f93a99f502f69b4c277300c4869", "fields": {"departement": "91", "stop_lat": 48.72414852610061, "code_postal": "91377", "stop_lon": 2.259342348954552, "coord": [48.72414852610061, 2.259342348954552], "stop_id": 1809, "stop_desc": "Carnot (avenue) - 91377", "stop_name": "Massy-Palaiseau"}, "geometry": {"type": "Point", "coordinates": [2.259342348954552, 48.72414852610061]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d5217c879d8b7f172eb9df96124d3ba03a898293", "fields": {"departement": "75", "stop_lat": 48.877353095288015, "code_postal": "75110", "stop_lon": 2.349381423952599, "coord": [48.877353095288015, 2.349381423952599], "stop_id": 1800, "stop_desc": "Rue de Chabrol - 75110", "stop_name": "Poissonni\u00e8re"}, "geometry": {"type": "Point", "coordinates": [2.349381423952599, 48.877353095288015]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "25160b4476e2276e9ba90f9b7a59dbb076ed3ec4", "fields": {"departement": "75", "stop_lat": 48.844027636151914, "code_postal": "75114", "stop_lon": 2.323569797217576, "coord": [48.844027636151914, 2.323569797217576], "stop_id": 1826, "stop_desc": "Raoul Dautry (place, SNCF Montparnasse) - 75114", "stop_name": "Montparnasse-Bienvenue"}, "geometry": {"type": "Point", "coordinates": [2.323569797217576, 48.844027636151914]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e359039cc4d02f37aad3ca0b171e439f47e5b2f8", "fields": {"departement": "94", "stop_lat": 48.80528001222769, "code_postal": "94068", "stop_lon": 2.48559432484478, "coord": [48.80528001222769, 2.48559432484478], "stop_id": 1848, "stop_desc": "Louvi\u00e8re (place de la) - 94068", "stop_name": "Le Parc de Saint-Maur"}, "geometry": {"type": "Point", "coordinates": [2.48559432484478, 48.80528001222769]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "910f94a577ff4aa8d5107f55a0b851e9bfe5f928", "fields": {"departement": "75", "stop_lat": 48.862011970720516, "code_postal": "75101", "stop_lon": 2.3464764519062062, "coord": [48.862011970720516, 2.3464764519062062], "stop_id": 1855, "stop_desc": "Verri\u00e8res (place des, Forum des Halles) - 75101", "stop_name": "Les Halles"}, "geometry": {"type": "Point", "coordinates": [2.3464764519062062, 48.862011970720516]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "be351271519fd424ce4e2a249a4b13d2aa0a2440", "fields": {"departement": "75", "stop_lat": 48.8474552623419, "code_postal": "75112", "stop_lon": 2.3977717436108956, "coord": [48.8474552623419, 2.3977717436108956], "stop_id": 1834, "stop_desc": "Nation (terre-plein face au 3 place de la) - 75112", "stop_name": "Nation"}, "geometry": {"type": "Point", "coordinates": [2.3977717436108956, 48.8474552623419]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f6f1e36ca8fb0c3d659383e6d4b124e8b933f769", "fields": {"departement": "75", "stop_lat": 48.88090042815109, "code_postal": "75110", "stop_lon": 2.365107218264337, "coord": [48.88090042815109, 2.365107218264337], "stop_id": 1860, "stop_desc": "Faubourg Saint-Martin (234 rue du) - 75110", "stop_name": "Louis Blanc"}, "geometry": {"type": "Point", "coordinates": [2.365107218264337, 48.88090042815109]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ec2cbd6326bd23ca8ec677e614b1aa364c2b69de", "fields": {"departement": "75", "stop_lat": 48.8484803444062, "code_postal": "75112", "stop_lon": 2.39676520957729, "coord": [48.8484803444062, 2.39676520957729], "stop_id": 1835, "stop_desc": "Nation (terre-plein face au 3 place de la) - 75112", "stop_name": "Nation"}, "geometry": {"type": "Point", "coordinates": [2.39676520957729, 48.8484803444062]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2a343e2cef7d2dbf755d0a02752dae68ec881d81", "fields": {"departement": "94", "stop_lat": 48.83510877417377, "code_postal": "94052", "stop_lon": 2.4716839161590887, "coord": [48.83510877417377, 2.4716839161590887], "stop_id": 1838, "stop_desc": "Sortie Parc Auto - 94052", "stop_name": "Nogent-sur-Marne"}, "geometry": {"type": "Point", "coordinates": [2.4716839161590887, 48.83510877417377]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "312d9ae81ab1bd560014f324001816c0f6886c8b", "fields": {"departement": "75", "stop_lat": 48.847084858904864, "code_postal": "75116", "stop_lon": 2.273074914922012, "coord": [48.847084858904864, 2.273074914922012], "stop_id": 1818, "stop_desc": "Versailles (63 avenue de) - 75116", "stop_name": "Mirabeau"}, "geometry": {"type": "Point", "coordinates": [2.273074914922012, 48.847084858904864]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c670a73824e8737ebe1e4a440012803dfa05bba2", "fields": {"departement": "75", "stop_lat": 48.870559216544876, "code_postal": "75109", "stop_lon": 2.332554482049589, "coord": [48.870559216544876, 2.332554482049589], "stop_id": 1847, "stop_desc": "Th\u00e9\u00e2tre National de l'Op\u00e9ra - 75109", "stop_name": "Op\u00e9ra"}, "geometry": {"type": "Point", "coordinates": [2.332554482049589, 48.870559216544876]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2e2eb76031e3caa9c473eacad69ff5da0c2d8b9f", "fields": {"departement": "75", "stop_lat": 48.86497429063367, "code_postal": "75111", "stop_lon": 2.36763241156394, "coord": [48.86497429063367, 2.36763241156394], "stop_id": 1844, "stop_desc": "Voltaire (43 boulevard) - 75111", "stop_name": "Oberkampf"}, "geometry": {"type": "Point", "coordinates": [2.36763241156394, 48.86497429063367]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ff93870a5e2e84fe0d6ef12a9e9d9d28de679b07", "fields": {"departement": "75", "stop_lat": 48.85344723773834, "code_postal": "75106", "stop_lon": 2.333046326044867, "coord": [48.85344723773834, 2.333046326044867], "stop_id": 1721, "stop_desc": "Saint-Germain (147 boulevard, rue de Rennes) - 75106", "stop_name": "Saint-Germain des Pr\u00e9s"}, "geometry": {"type": "Point", "coordinates": [2.333046326044867, 48.85344723773834]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "df47c31330074026365dda25c0232b312e213d95", "fields": {"departement": "93", "stop_lat": 48.936477492650496, "code_postal": "93066", "stop_lon": 2.3596397453045825, "coord": [48.936477492650496, 2.3596397453045825], "stop_id": 1716, "stop_desc": "Place du Cacquet - 93066", "stop_name": "Basilique de Saint-Denis"}, "geometry": {"type": "Point", "coordinates": [2.3596397453045825, 48.936477492650496]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "85d28c772f1b85cbebeaff66cfa891d89c0c9139", "fields": {"departement": "93", "stop_lat": 48.92992666527093, "code_postal": "93066", "stop_lon": 2.3561861491888694, "coord": [48.92992666527093, 2.3561861491888694], "stop_id": 1717, "stop_desc": "Stade de France - 93066", "stop_name": "Saint-Denis-Porte de Paris"}, "geometry": {"type": "Point", "coordinates": [2.3561861491888694, 48.92992666527093]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3504623db1b4a623050929e9cf10d385322aa22d", "fields": {"departement": "75", "stop_lat": 48.89797017040717, "code_postal": "75118", "stop_lon": 2.3439883834332904, "coord": [48.89797017040717, 2.3439883834332904], "stop_id": 1742, "stop_desc": "Ornano (82 boulevard) - 75118", "stop_name": "Porte de Clignancourt"}, "geometry": {"type": "Point", "coordinates": [2.3439883834332904, 48.89797017040717]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "80fff1d229f86a12412541186e4c744d53c9300b", "fields": {"departement": "75", "stop_lat": 48.89751173277147, "code_postal": "75118", "stop_lon": 2.329021647212208, "coord": [48.89751173277147, 2.329021647212208], "stop_id": 1748, "stop_desc": "Saint-Ouen (153 avenue de) - 75118", "stop_name": "Porte de Saint-Ouen"}, "geometry": {"type": "Point", "coordinates": [2.329021647212208, 48.89751173277147]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "273f0f96e95c8eaac69caa605a7364a5d0b1ae91", "fields": {"departement": "94", "stop_lat": 48.84623825662077, "code_postal": "94067", "stop_lon": 2.418999828109256, "coord": [48.84623825662077, 2.418999828109256], "stop_id": 1725, "stop_desc": "Paris (168 bis avenue de) - 94067", "stop_name": "Saint-Mand\u00e9"}, "geometry": {"type": "Point", "coordinates": [2.418999828109256, 48.84623825662077]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "516ca6ba2e0620b2f1b6162e2906732e39c8eaa6", "fields": {"departement": "75", "stop_lat": 48.888583980971895, "code_postal": "75119", "stop_lon": 2.3924228757185415, "coord": [48.888583980971895, 2.3924228757185415], "stop_id": 1746, "stop_desc": "Parc de la Villette - 75119", "stop_name": "Porte de Pantin"}, "geometry": {"type": "Point", "coordinates": [2.3924228757185415, 48.888583980971895]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e92ce66c029a6ea8448206fecdde0ce089e0cb6b", "fields": {"departement": "75", "stop_lat": 48.82135736230755, "code_postal": "75113", "stop_lon": 2.369308237223248, "coord": [48.82135736230755, 2.369308237223248], "stop_id": 1734, "stop_desc": "Porte d'Ivry (53 avenue de la) - 75113", "stop_name": "Porte d'Ivry"}, "geometry": {"type": "Point", "coordinates": [2.369308237223248, 48.82135736230755]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2e3c5efa93d4ae842cbdd70730f21708b9183669", "fields": {"departement": "75", "stop_lat": 48.87438676021276, "code_postal": "75108", "stop_lon": 2.3207278319647315, "coord": [48.87438676021276, 2.3207278319647315], "stop_id": 1715, "stop_desc": "\u00c9glise Saint-Augustin - 75108", "stop_name": "Saint-Augustin"}, "geometry": {"type": "Point", "coordinates": [2.3207278319647315, 48.87438676021276]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b8e5012159121587b5d37b7391b900220b1fffb2", "fields": {"departement": "75", "stop_lat": 48.87568150641968, "code_postal": "75108", "stop_lon": 2.325591584819959, "coord": [48.87568150641968, 2.325591584819959], "stop_id": 1722, "stop_desc": "Saint-Lazare (95 rue) - 75108", "stop_name": "Saint-Lazare"}, "geometry": {"type": "Point", "coordinates": [2.325591584819959, 48.87568150641968]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "383c5845455ddcc838720256314db27afe971e69", "fields": {"departement": "78", "stop_lat": 48.920645595306866, "code_postal": "78311", "stop_lon": 2.1844117553489246, "coord": [48.920645595306866, 2.1844117553489246], "stop_id": 1894, "stop_desc": "Quatre septembre (1 rue du) - 78311", "stop_name": "Houilles Carri\u00e8res-sur-Seine"}, "geometry": {"type": "Point", "coordinates": [2.1844117553489246, 48.920645595306866]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "22d812f91309cc9e21a1b6339bdbccd0cc6343c5", "fields": {"departement": "75", "stop_lat": 48.88287621621258, "code_postal": "75119", "stop_lon": 2.3705863361654225, "coord": [48.88287621621258, 2.3705863361654225], "stop_id": 1901, "stop_desc": "Villette (entr\u00e9e sous viaduc face au 196 boulevard de la) - 75119", "stop_name": "Jaur\u00e8s"}, "geometry": {"type": "Point", "coordinates": [2.3705863361654225, 48.88287621621258]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "53a8938e044c41be1772894a4cfea4416b69a35c", "fields": {"departement": "75", "stop_lat": 48.84596388048408, "code_postal": "75115", "stop_lon": 2.2778151263537714, "coord": [48.84596388048408, 2.2778151263537714], "stop_id": 1903, "stop_desc": "Rue de la Convention - 75115", "stop_name": "Javel-Andr\u00e9-Citroen"}, "geometry": {"type": "Point", "coordinates": [2.2778151263537714, 48.84596388048408]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "be0fb79888b6535e6334e68e38f9ddc9fb2fcda2", "fields": {"departement": "75", "stop_lat": 48.89160682271851, "code_postal": "75118", "stop_lon": 2.349548310988923, "coord": [48.89160682271851, 2.349548310988923], "stop_id": 1883, "stop_desc": "Poissonniers (69 rue des) - 75118", "stop_name": "Marcadet-Poissonniers"}, "geometry": {"type": "Point", "coordinates": [2.349548310988923, 48.89160682271851]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "772e249b140bdcda7c71ef75d799fe0b3ab8fbfa", "fields": {"departement": "75", "stop_lat": 48.84677855902824, "code_postal": "75105", "stop_lon": 2.3404411811761725, "coord": [48.84677855902824, 2.3404411811761725], "stop_id": 1866, "stop_desc": "Saint-Michel (69 boulevard) - 75105", "stop_name": "Luxembourg"}, "geometry": {"type": "Point", "coordinates": [2.3404411811761725, 48.84677855902824]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f1408d43c5895bd59ccd17619df741947d71d2ef", "fields": {"departement": "75", "stop_lat": 48.890374081221125, "code_postal": "75118", "stop_lon": 2.3597970086706117, "coord": [48.890374081221125, 2.3597970086706117], "stop_id": 1886, "stop_desc": "Chapelle (4 rue de la) - 75118", "stop_name": "Marx-Dormoy"}, "geometry": {"type": "Point", "coordinates": [2.3597970086706117, 48.890374081221125]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6a641c7043a758e429ec7c5ebd4fd4f7b8920477", "fields": {"departement": "75", "stop_lat": 48.87524829462498, "code_postal": "75120", "stop_lon": 2.389329434152641, "coord": [48.87524829462498, 2.389329434152641], "stop_id": 1905, "stop_desc": "Palestine (2 rue de) - 75120", "stop_name": "Jourdain"}, "geometry": {"type": "Point", "coordinates": [2.389329434152641, 48.87524829462498]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "be78479c65015bb0ce635fb1611add43cfba34eb", "fields": {"departement": "75", "stop_lat": 48.87130614908782, "code_postal": "75116", "stop_lon": 2.2933310208962174, "coord": [48.87130614908782, 2.2933310208962174], "stop_id": 1909, "stop_desc": "Kl\u00e9ber (15 avenue) - 75116", "stop_name": "Kl\u00e9ber"}, "geometry": {"type": "Point", "coordinates": [2.2933310208962174, 48.87130614908782]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ca9153c4eb231dc9d73a6274b82d80ec5c69e11d", "fields": {"departement": "75", "stop_lat": 48.8459684322046, "code_postal": "75105", "stop_lon": 2.3548073926942186, "coord": [48.8459684322046, 2.3548073926942186], "stop_id": 1907, "stop_desc": "Lin\u00e9 (39 rue) - 75105", "stop_name": "Jussieu"}, "geometry": {"type": "Point", "coordinates": [2.3548073926942186, 48.8459684322046]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "36c173b30128cf6f0e70ca13426d0c695248e8ed", "fields": {"departement": "75", "stop_lat": 48.864350199647255, "code_postal": "75116", "stop_lon": 2.2940452637830906, "coord": [48.864350199647255, 2.2940452637830906], "stop_id": 1895, "stop_desc": "Palais d'I\u00e9na - 75116", "stop_name": "I\u00e9na"}, "geometry": {"type": "Point", "coordinates": [2.2940452637830906, 48.864350199647255]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b2c3ef9a993e9c605fd9856ffbea2e4900bc9930", "fields": {"departement": "75", "stop_lat": 48.87681262539273, "code_postal": "75110", "stop_lon": 2.3582514400829155, "coord": [48.87681262539273, 2.3582514400829155], "stop_id": 2125, "stop_desc": "Strasbourg (terre plein face au 93 boulevard de) - 75110", "stop_name": "Gare de l'Est (Verdun)"}, "geometry": {"type": "Point", "coordinates": [2.3582514400829155, 48.87681262539273]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "205d35dea2986109819c78b7ea3796f8b8a44f5d", "fields": {"departement": "75", "stop_lat": 48.880839205836494, "code_postal": "75110", "stop_lon": 2.3565770153513177, "coord": [48.880839205836494, 2.3565770153513177], "stop_id": 2126, "stop_desc": "Rue du Faubourg St Denis - 75110", "stop_name": "Gare du Nord"}, "geometry": {"type": "Point", "coordinates": [2.3565770153513177, 48.880839205836494]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "42d7c5ad2609bd79526439111f63752b82ad24c1", "fields": {"departement": "75", "stop_lat": 48.880790122828465, "code_postal": "75119", "stop_lon": 2.374155126662647, "coord": [48.880790122828465, 2.374155126662647], "stop_id": 2124, "stop_desc": "Simon Bolivar (125 avenue) - 75119", "stop_name": "Bolivar"}, "geometry": {"type": "Point", "coordinates": [2.374155126662647, 48.880790122828465]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ba6597452407616bf41adfb3064cd7ae7a553b32", "fields": {"departement": "75", "stop_lat": 48.85157746899621, "code_postal": "75107", "stop_lon": 2.3268907883428853, "coord": [48.85157746899621, 2.3268907883428853], "stop_id": 1667, "stop_desc": "Raspail (41 boulevard, 18 rue de S\u00e8vres) - 75107", "stop_name": "S\u00e8vres-Babylone"}, "geometry": {"type": "Point", "coordinates": [2.3268907883428853, 48.85157746899621]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e4244d49a747c97298e38332d4f42b38dcf0be9e", "fields": {"departement": "95", "stop_lat": 49.0106207175917, "code_postal": "95527", "stop_lon": 2.563216156469876, "coord": [49.0106207175917, 2.563216156469876], "stop_id": 1706, "stop_desc": "Aeroport de Roissy - 95527", "stop_name": "A\u00e9roport Charles de Gaulle 1"}, "geometry": {"type": "Point", "coordinates": [2.563216156469876, 49.0106207175917]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "79e61032bd9031699e61ce5e5a48437f269b449e", "fields": {"departement": "92", "stop_lat": 48.92291633150906, "code_postal": "92004", "stop_lon": 2.285963896576634, "coord": [48.92291633150906, 2.285963896576634], "stop_id": 1662796, "stop_desc": "Angle rue des Bas / Rue Louis Calmel - 92004", "stop_name": "Les Agnettes"}, "geometry": {"type": "Point", "coordinates": [2.285963896576634, 48.92291633150906]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ea60b20bd820fb70a7997882a1724b3149b92dcf", "fields": {"departement": "93", "stop_lat": 48.948168329928286, "code_postal": "93071", "stop_lon": 2.52448044743623, "coord": [48.948168329928286, 2.52448044743623], "stop_id": 1663, "stop_desc": "Dumon d'urville (rue) - 93071", "stop_name": "Sevran-Beaudottes"}, "geometry": {"type": "Point", "coordinates": [2.52448044743623, 48.948168329928286]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "abb09da1ec8432502b20bb8aeb1ec24d5641bc2b", "fields": {"departement": "75", "stop_lat": 48.86068599199579, "code_postal": "75111", "stop_lon": 2.372410931880202, "coord": [48.86068599199579, 2.372410931880202], "stop_id": 1700, "stop_desc": "Richard Lenoir (65 boulevard) - 75111", "stop_name": "Richard-Lenoir"}, "geometry": {"type": "Point", "coordinates": [2.372410931880202, 48.86068599199579]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f69c48f60b6ff40103dc60afba92ffd32484b222", "fields": {"departement": "93", "stop_lat": 48.9199435050834, "code_postal": "93066", "stop_lon": 2.3439094197858905, "coord": [48.9199435050834, 2.3439094197858905], "stop_id": 1692061, "stop_desc": "Centre Paris - Pleyel - 93066", "stop_name": "Carrefour-Pleyel"}, "geometry": {"type": "Point", "coordinates": [2.3439094197858905, 48.9199435050834]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5ace4c780c3b228bbb39c1d8f2d055f307291d5f", "fields": {"departement": "93", "stop_lat": 48.944131219085655, "code_postal": "93078", "stop_lon": 2.566814263856176, "coord": [48.944131219085655, 2.566814263856176], "stop_id": 1693, "stop_desc": "Gare (place de la) - 93078", "stop_name": "Vert-Galant"}, "geometry": {"type": "Point", "coordinates": [2.566814263856176, 48.944131219085655]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "25000bc1c94c1f105724ba5e3dada6d608db96b1", "fields": {"departement": "75", "stop_lat": 48.88207083393704, "code_postal": "75117", "stop_lon": 2.3203983393099863, "coord": [48.88207083393704, 2.3203983393099863], "stop_id": 1707, "stop_desc": "Batignolles (60 boulevard des) - 75117", "stop_name": "Rome"}, "geometry": {"type": "Point", "coordinates": [2.3203983393099863, 48.88207083393704]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5d58775594cc5e608cc10b858ef8450709f8489b", "fields": {"departement": "75", "stop_lat": 48.8673503814313, "code_postal": "75102", "stop_lon": 2.3475672354150805, "coord": [48.8673503814313, 2.3475672354150805], "stop_id": 1662, "stop_desc": "R\u00e9aumur (97 rue) - 75102", "stop_name": "Sentier"}, "geometry": {"type": "Point", "coordinates": [2.3475672354150805, 48.8673503814313]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3977ca286d9ce996ce077c3db3767c942cf43419", "fields": {"departement": "75", "stop_lat": 48.84686470206919, "code_postal": "75115", "stop_lon": 2.307268847578926, "coord": [48.84686470206919, 2.307268847578926], "stop_id": 1661, "stop_desc": "UNESCO - Miollis - 75115", "stop_name": "S\u00e9gur"}, "geometry": {"type": "Point", "coordinates": [2.307268847578926, 48.84686470206919]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7b228e1b70d70d3fffd54b0d8b4d6c73bb625470", "fields": {"departement": "75", "stop_lat": 48.88368010927906, "code_postal": "75109", "stop_lon": 2.3495328036519307, "coord": [48.88368010927906, 2.3495328036519307], "stop_id": 2086, "stop_desc": "Rochechouart (2 boulevard de, vers le boulevard Barb\u00e8s) - 75109", "stop_name": "Barb\u00e8s-Rochechouart"}, "geometry": {"type": "Point", "coordinates": [2.3495328036519307, 48.88368010927906]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2910a844715657ded4f6752510362f3b1d58a395", "fields": {"departement": "75", "stop_lat": 48.87228732058717, "code_postal": "75119", "stop_lon": 2.3767376773224687, "coord": [48.87228732058717, 2.3767376773224687], "stop_id": 2087, "stop_desc": "Villette (terre-plein face au 1 boulevard de la) - 75119", "stop_name": "Belleville"}, "geometry": {"type": "Point", "coordinates": [2.3767376773224687, 48.87228732058717]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3d2a83d3954674d3e13873606f903a4406f11da9", "fields": {"departement": "75", "stop_lat": 48.88377051883179, "code_postal": "75118", "stop_lon": 2.332485148274094, "coord": [48.88377051883179, 2.332485148274094], "stop_id": 2071, "stop_desc": "Clichy (terre-plein face au 59 boulevard de) - 75118", "stop_name": "Blanche"}, "geometry": {"type": "Point", "coordinates": [2.332485148274094, 48.88377051883179]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b9a2b11eddf9ff36c74106ab75b96eaf08e5d85c", "fields": {"departement": "75", "stop_lat": 48.83887615167852, "code_postal": "75112", "stop_lon": 2.3893473875702935, "coord": [48.83887615167852, 2.3893473875702935], "stop_id": 2082, "stop_desc": "Reuilly (3 boulevard de, boulevard de Bercy) - 75112", "stop_name": "Dugommier"}, "geometry": {"type": "Point", "coordinates": [2.3893473875702935, 48.83887615167852]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fffcc5cd19d5c1eb32dec11a0b3ea6a785b1fe65", "fields": {"departement": "75", "stop_lat": 48.880839205836494, "code_postal": "75110", "stop_lon": 2.3565770153513177, "coord": [48.880839205836494, 2.3565770153513177], "stop_id": 2077, "stop_desc": "Rue du Faubourg St Denis - 75110", "stop_name": "Gare du Nord"}, "geometry": {"type": "Point", "coordinates": [2.3565770153513177, 48.880839205836494]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5f049767033aa1f467a760f33565b11b4b05bec0", "fields": {"departement": "75", "stop_lat": 48.854327218552356, "code_postal": "75115", "stop_lon": 2.2888101037361173, "coord": [48.854327218552356, 2.2888101037361173], "stop_id": 2118, "stop_desc": "Tour Eiffel - 75115", "stop_name": "Bir-Hakeim (Grenelle)"}, "geometry": {"type": "Point", "coordinates": [2.2888101037361173, 48.854327218552356]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ddea3b11142cdbb678c96e5f37e9048e0c8cd759", "fields": {"departement": "75", "stop_lat": 48.86932916949657, "code_postal": "75111", "stop_lon": 2.3805363661617247, "coord": [48.86932916949657, 2.3805363661617247], "stop_id": 2079, "stop_desc": "Belleville (37 boulevard de) - 75111", "stop_name": "Couronnes"}, "geometry": {"type": "Point", "coordinates": [2.3805363661617247, 48.86932916949657]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9063912b4920bcf1227038d92f38f2209e2d5444", "fields": {"departement": "93", "stop_lat": 48.93220116999761, "code_postal": "93007", "stop_lon": 2.4767508712199087, "coord": [48.93220116999761, 2.4767508712199087], "stop_id": 2070, "stop_desc": "Pierre Semart (rue) - 93007", "stop_name": "Blanc-Mesnil"}, "geometry": {"type": "Point", "coordinates": [2.4767508712199087, 48.93220116999761]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bf54839d7c9dc3665183caa8c2b0ceade6821b59", "fields": {"departement": "75", "stop_lat": 48.882871690180586, "code_postal": "75118", "stop_lon": 2.344163572800391, "coord": [48.882871690180586, 2.344163572800391], "stop_id": 2096, "stop_desc": "Rochechouart (68 boulevard) - 75118", "stop_name": "Anvers"}, "geometry": {"type": "Point", "coordinates": [2.344163572800391, 48.882871690180586]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3e4776f2e67b436a173b0cf8adacee7640b4ac7a", "fields": {"departement": "75", "stop_lat": 48.85895618133369, "code_postal": "75101", "stop_lon": 2.3473612552142624, "coord": [48.85895618133369, 2.3473612552142624], "stop_id": 1166835, "stop_desc": "Victoria (7 avenue, 4 rue Saint-Martin) - 75101", "stop_name": "Ch\u00e2telet"}, "geometry": {"type": "Point", "coordinates": [2.3473612552142624, 48.85895618133369]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e0dd03844afe629792f9b359f26e0bc10adef0ea", "fields": {"departement": "75", "stop_lat": 48.8755376703957, "code_postal": "75108", "stop_lon": 2.3251964899774276, "coord": [48.8755376703957, 2.3251964899774276], "stop_id": 1166840, "stop_desc": "Saint-Lazare (95 rue) - 75108", "stop_name": "Saint-Lazare"}, "geometry": {"type": "Point", "coordinates": [2.3251964899774276, 48.8755376703957]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8c3788a78ea71dca439092047fc351835d42446d", "fields": {"departement": "75", "stop_lat": 48.82694828196076, "code_postal": "75113", "stop_lon": 2.367038433387592, "coord": [48.82694828196076, 2.367038433387592], "stop_id": 1166825, "stop_desc": "91 rue de Tolbiac - 75113", "stop_name": "Olympiades"}, "geometry": {"type": "Point", "coordinates": [2.367038433387592, 48.82694828196076]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "58f427d0e64f0b70b2cfdeac443c6e6facb83350", "fields": {"departement": "75", "stop_lat": 48.844652150982945, "code_postal": "75112", "stop_lon": 2.37310814754528, "coord": [48.844652150982945, 2.37310814754528], "stop_id": 1166833, "stop_desc": "Rue de Bercy - 75112", "stop_name": "Gare de Lyon"}, "geometry": {"type": "Point", "coordinates": [2.37310814754528, 48.844652150982945]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5fa2446e20ffdd0b3061222cb750a12578103dbe", "fields": {"departement": "75", "stop_lat": 48.847924592785105, "code_postal": "75116", "stop_lon": 2.264235905782418, "coord": [48.847924592785105, 2.264235905782418], "stop_id": 1814, "stop_desc": "Auteuil (55 rue d', angle avec le 1 rue Michel-Ange) - 75116", "stop_name": "Michel-Ange-Auteuil"}, "geometry": {"type": "Point", "coordinates": [2.264235905782418, 48.847924592785105]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "66dd8e27a72b236fcc7d7587f1573868dfd4d63b", "fields": {"departement": "75", "stop_lat": 48.87346032551137, "code_postal": "75108", "stop_lon": 2.3160412889150637, "coord": [48.87346032551137, 2.3160412889150637], "stop_id": 1820, "stop_desc": "Percier (1 avenue, angle avec le 42 rue de la Bo\u00cdtie) - 75108", "stop_name": "Miromesnil"}, "geometry": {"type": "Point", "coordinates": [2.3160412889150637, 48.87346032551137]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c2671849a827ddca2b10acc8ef6d7746cbb7fa2f", "fields": {"departement": "75", "stop_lat": 48.832881288678834, "code_postal": "75113", "stop_lon": 2.3619094080161975, "coord": [48.832881288678834, 2.3619094080161975], "stop_id": 1836, "stop_desc": "Vincent Auriol (terre-plein face au 124/143 boulevard) - 75113", "stop_name": "Nationale"}, "geometry": {"type": "Point", "coordinates": [2.3619094080161975, 48.832881288678834]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "db53ae629b771a375b60cd0472968aec2b1276eb", "fields": {"departement": "75", "stop_lat": 48.84187033630407, "code_postal": "75114", "stop_lon": 2.3212283740035646, "coord": [48.84187033630407, 2.3212283740035646], "stop_id": 1825, "stop_desc": "Raoul Dautry (place, SNCF Montparnasse) - 75114", "stop_name": "Montparnasse-Bienvenue"}, "geometry": {"type": "Point", "coordinates": [2.3212283740035646, 48.84187033630407]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7244e66578189f23930ba153d516b898d4853e59", "fields": {"departement": "77", "stop_lat": 48.84348503430221, "code_postal": "77337", "stop_lon": 2.616614613852153, "coord": [48.84348503430221, 2.616614613852153], "stop_id": 1839, "stop_desc": "Jean-Paul Sartre (all\u00e9e, centre quartier du Luzard) - 77337", "stop_name": "Noisiel"}, "geometry": {"type": "Point", "coordinates": [2.616614613852153, 48.84348503430221]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a576625155cc0a59fd929939f8790943d281c578", "fields": {"departement": "92", "stop_lat": 48.829690338022736, "code_postal": "92012", "stop_lon": 2.2305284341923346, "coord": [48.829690338022736, 2.2305284341923346], "stop_id": 1804, "stop_desc": "Sous-Pr\u00e9fecture des Hauts-de-Seine - 92012", "stop_name": "Pont de S\u00e8vres"}, "geometry": {"type": "Point", "coordinates": [2.2305284341923346, 48.829690338022736]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9300a6943513dcef17238d1005d82c6442f65a1a", "fields": {"departement": "75", "stop_lat": 48.886923877470686, "code_postal": "75119", "stop_lon": 2.3866564344034558, "coord": [48.886923877470686, 2.3866564344034558], "stop_id": 1772, "stop_desc": "Jean Jaur\u00e8s (161 avenue, rue des Ardennes) - 75119", "stop_name": "Ourcq"}, "geometry": {"type": "Point", "coordinates": [2.3866564344034558, 48.886923877470686]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "273e0ffef86cdb9633065b21ac5fb4d83bb4831d", "fields": {"departement": "75", "stop_lat": 48.86628035856129, "code_postal": "75102", "stop_lon": 2.352484796837845, "coord": [48.86628035856129, 2.352484796837845], "stop_id": 1765, "stop_desc": "Saint-Denis (182 rue) - 75102", "stop_name": "R\u00e9aumur-S\u00e9bastopol"}, "geometry": {"type": "Point", "coordinates": [2.352484796837845, 48.86628035856129]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ab495b17a3b90753a2c122d4e15c1dd74ede8280", "fields": {"departement": "75", "stop_lat": 48.8312826555064, "code_postal": "75113", "stop_lon": 2.3554558703645068, "coord": [48.8312826555064, 2.3554558703645068], "stop_id": 1793, "stop_desc": "Vincent Auriol (182 boulevard) - 75113", "stop_name": "Place d'Italie"}, "geometry": {"type": "Point", "coordinates": [2.3554558703645068, 48.8312826555064]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8c3241b5613794753106c5a67ce7ade80b556856", "fields": {"departement": "78", "stop_lat": 48.933164262405, "code_postal": "78498", "stop_lon": 2.041083510970564, "coord": [48.933164262405, 2.041083510970564], "stop_id": 1801, "stop_desc": "George Pompidou (Place) - 78498", "stop_name": "Poissy"}, "geometry": {"type": "Point", "coordinates": [2.041083510970564, 48.933164262405]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4e882a9cc6f29ab859d232b358f9d5348fec470d", "fields": {"departement": "92", "stop_lat": 48.892018626328884, "code_postal": "92044", "stop_lon": 2.2855174447944844, "coord": [48.892018626328884, 2.2855174447944844], "stop_id": 2044, "stop_desc": "G\u00e9n\u00e9ral Leclerc (place, c\u00f4t\u00e9 pair et rue Anatole France et rue Voltaire) - 92044", "stop_name": "Anatole-France"}, "geometry": {"type": "Point", "coordinates": [2.2855174447944844, 48.892018626328884]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0f27bd00b39aedc19e76542a6e139741968e7926", "fields": {"departement": "92", "stop_lat": 48.833808586980275, "code_postal": "92012", "stop_lon": 2.243480614417395, "coord": [48.833808586980275, 2.243480614417395], "stop_id": 1884, "stop_desc": "Victor Hugo (123 avenue, angle avec le 108 avenue Edouard Vaillant) - 92012", "stop_name": "Marcel Sembat"}, "geometry": {"type": "Point", "coordinates": [2.243480614417395, 48.833808586980275]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6045c38e847f83963088b32679ef04d929f746ec", "fields": {"departement": "75", "stop_lat": 48.883931769934414, "code_postal": "75109", "stop_lon": 2.3493557085996466, "coord": [48.883931769934414, 2.3493557085996466], "stop_id": 2061, "stop_desc": "Rochechouart (2 boulevard de, vers le boulevard Barb\u00e8s) - 75109", "stop_name": "Barb\u00e8s-Rochechouart"}, "geometry": {"type": "Point", "coordinates": [2.3493557085996466, 48.883931769934414]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9c23a6d188ba197a70214b2bd157a26c3f47f68d", "fields": {"departement": "93", "stop_lat": 48.924023434909344, "code_postal": "93001", "stop_lon": 2.3844006646895615, "coord": [48.924023434909344, 2.3844006646895615], "stop_id": 2054, "stop_desc": "Place de la Gare - 93001", "stop_name": "La Courneuve-Aubervilliers"}, "geometry": {"type": "Point", "coordinates": [2.3844006646895615, 48.924023434909344]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "507e6aae8fb877f1f92440ceb3939cbdc650d15f", "fields": {"departement": "75", "stop_lat": 48.88557692951087, "code_postal": "75118", "stop_lon": 2.3425422354115337, "coord": [48.88557692951087, 2.3425422354115337], "stop_id": 2091, "stop_desc": "Cardinal Dubois (rue du) - 75118", "stop_name": "Funiculaire Gare haute"}, "geometry": {"type": "Point", "coordinates": [2.3425422354115337, 48.88557692951087]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "767fcd6882d521ee61f698ec9f1d6c0de711ad04", "fields": {"departement": "75", "stop_lat": 48.854327218552356, "code_postal": "75115", "stop_lon": 2.2888101037361173, "coord": [48.854327218552356, 2.2888101037361173], "stop_id": 2069, "stop_desc": "Tour Eiffel - 75115", "stop_name": "Bir-Hakeim (Grenelle)"}, "geometry": {"type": "Point", "coordinates": [2.2888101037361173, 48.854327218552356]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ca76283d34b7e329259a7bb40441e1e841dad213", "fields": {"departement": "75", "stop_lat": 48.82806601968645, "code_postal": "75114", "stop_lon": 2.326827420050836, "coord": [48.82806601968645, 2.326827420050836], "stop_id": 2040, "stop_desc": "Place Victor et H\u00e9l\u00e8ne Basch - 75114", "stop_name": "Al\u00e9sia"}, "geometry": {"type": "Point", "coordinates": [2.326827420050836, 48.82806601968645]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dcce31045ead180f854064c6e53d81e65191b2ff", "fields": {"departement": "75", "stop_lat": 48.84143200664826, "code_postal": "75112", "stop_lon": 2.4008691933800934, "coord": [48.84143200664826, 2.4008691933800934], "stop_id": 2065, "stop_desc": "Picpus (34 boulevard de) - 75112", "stop_name": "Bel-Air"}, "geometry": {"type": "Point", "coordinates": [2.4008691933800934, 48.84143200664826]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0f906ec9262958525bdde16bc0bba0ab70fa6e6a", "fields": {"departement": "75", "stop_lat": 48.89028877504466, "code_postal": "75119", "stop_lon": 2.3767786489253644, "coord": [48.89028877504466, 2.3767786489253644], "stop_id": 2080, "stop_desc": "Impasse de Joinville - 75119", "stop_name": "Crim\u00e9e"}, "geometry": {"type": "Point", "coordinates": [2.3767786489253644, 48.89028877504466]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "00637e454df4e13e624922f44cf61f97389c6b10", "fields": {"departement": "94", "stop_lat": 48.84536875015732, "code_postal": "94080", "stop_lon": 2.428244509620486, "coord": [48.84536875015732, 2.428244509620486], "stop_id": 2067, "stop_desc": "Paris (98 avenue de) - 94080", "stop_name": "B\u00e9rault"}, "geometry": {"type": "Point", "coordinates": [2.428244509620486, 48.84536875015732]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7087dd27054b86250c9afb21e0619fb5a31e396c", "fields": {"departement": "75", "stop_lat": 48.869227930987556, "code_postal": "75102", "stop_lon": 2.354529175385818, "coord": [48.869227930987556, 2.354529175385818], "stop_id": 1678, "stop_desc": "Saint-Denis (9 rue, 114 boulevard de S\u00e9bastopol) - 75102", "stop_name": "Strasbourg-Saint-Denis"}, "geometry": {"type": "Point", "coordinates": [2.354529175385818, 48.869227930987556]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "84b3fc5007004fb3c58d66aef29e30b287b6f80c", "fields": {"departement": "75", "stop_lat": 48.85639306919846, "code_postal": "75107", "stop_lon": 2.3147543648102884, "coord": [48.85639306919846, 2.3147543648102884], "stop_id": 1638, "stop_desc": "Invalides (13 boulevard des, \u00c8 c\u00f4t\u00e9 du minist\u00e8re du Travail) - 75107", "stop_name": "Varenne"}, "geometry": {"type": "Point", "coordinates": [2.3147543648102884, 48.85639306919846]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9f3b7e7e9ffed4f245094844bcbd5360cbfec6a8", "fields": {"departement": "94", "stop_lat": 48.786638011119834, "code_postal": "94076", "stop_lon": 2.367110527381649, "coord": [48.786638011119834, 2.367110527381649], "stop_id": 1695, "stop_desc": "Maxime Gorky (boulevard, gare routi\u00e8re) - 94076", "stop_name": "Villejuif-Louis Aragon"}, "geometry": {"type": "Point", "coordinates": [2.367110527381649, 48.786638011119834]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0fb78d64fcdb63a3effa70f2391395080a72ef7e", "fields": {"departement": "75", "stop_lat": 48.862666905879294, "code_postal": "75116", "stop_lon": 2.2872630615532628, "coord": [48.862666905879294, 2.2872630615532628], "stop_id": 1687, "stop_desc": "Trocad\u00e9ro et Onze-Novembre (place du, avenue Paul Doumer) - 75116", "stop_name": "Trocad\u00e9ro"}, "geometry": {"type": "Point", "coordinates": [2.2872630615532628, 48.862666905879294]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bee36f4e4b6f0d6d5c2460c40bb7f19e787bba2e", "fields": {"departement": "75", "stop_lat": 48.85339313419855, "code_postal": "75105", "stop_lon": 2.345017658598223, "coord": [48.85339313419855, 2.345017658598223], "stop_id": 1672, "stop_desc": "Saint-Germain (boulevard, c\u00f4t\u00e9 pair) - 75105", "stop_name": "Saint-Michel Notre-Dame"}, "geometry": {"type": "Point", "coordinates": [2.345017658598223, 48.85339313419855]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1c3f71f4f329925c3d55733978dc8b9bc1d95344", "fields": {"departement": "75", "stop_lat": 48.85093928843075, "code_postal": "75107", "stop_lon": 2.3261146548222844, "coord": [48.85093928843075, 2.3261146548222844], "stop_id": 1666, "stop_desc": "Raspail (41 boulevard, 18 rue de S\u00e8vres) - 75107", "stop_name": "S\u00e8vres-Babylone"}, "geometry": {"type": "Point", "coordinates": [2.3261146548222844, 48.85093928843075]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "34d5b99ea731a9338f6c7a8424817d92221b4ecf", "fields": {"departement": "75", "stop_lat": 48.85231488119486, "code_postal": "75106", "stop_lon": 2.338861720336335, "coord": [48.85231488119486, 2.338861720336335], "stop_id": 1653, "stop_desc": "Saint-Germain (93 boulevard, rue de l'Ecole de M\u00e9decine) - 75106", "stop_name": "Od\u00e9on"}, "geometry": {"type": "Point", "coordinates": [2.338861720336335, 48.85231488119486]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ae224f182f96708e17a0d842f47f806cb7ec4f1d", "fields": {"departement": "77", "stop_lat": 48.95300013565804, "code_postal": "77514", "stop_lon": 2.60203177755109, "coord": [48.95300013565804, 2.60203177755109], "stop_id": 1697, "stop_desc": "19 mars 1962 (2 place du) - 77514", "stop_name": "Villeparisis"}, "geometry": {"type": "Point", "coordinates": [2.60203177755109, 48.95300013565804]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "67eefb8a4762d1952718a5279864233324a584aa", "fields": {"departement": "75", "stop_lat": 48.858533359508236, "code_postal": "75107", "stop_lon": 2.323089248787209, "coord": [48.858533359508236, 2.323089248787209], "stop_id": 1669, "stop_desc": "Saint-Germain (223 boulevard) - 75107", "stop_name": "Solf\u00e9rino"}, "geometry": {"type": "Point", "coordinates": [2.323089248787209, 48.858533359508236]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "58cbd30ac7862382fcfeb8915b9fdbb1b28ba904", "fields": {"departement": "75", "stop_lat": 48.86478016250008, "code_postal": "75101", "stop_lon": 2.3290949544294275, "coord": [48.86478016250008, 2.3290949544294275], "stop_id": 1688, "stop_desc": "Rivoli (210 rue de) - 75101", "stop_name": "Tuileries"}, "geometry": {"type": "Point", "coordinates": [2.3290949544294275, 48.86478016250008]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ec281b52347ec0a8bd4692354f45f6fecf68972f", "fields": {"departement": "75", "stop_lat": 48.8764170528791, "code_postal": "75110", "stop_lon": 2.3589870464563276, "coord": [48.8764170528791, 2.3589870464563276], "stop_id": 1954, "stop_desc": "Strasbourg (terre plein face au 93 boulevard de) - 75110", "stop_name": "Gare de l'Est (Verdun)"}, "geometry": {"type": "Point", "coordinates": [2.3589870464563276, 48.8764170528791]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5f0b7bd66ff469d48a49df05fe81ec25d8b16975", "fields": {"departement": "75", "stop_lat": 48.84371986136062, "code_postal": "75113", "stop_lon": 2.3639162171627124, "coord": [48.84371986136062, 2.3639162171627124], "stop_id": 1952, "stop_desc": "SNCF/RER C grandes lignes et banlieue - 75113", "stop_name": "Gare d'Austerlitz"}, "geometry": {"type": "Point", "coordinates": [2.3639162171627124, 48.84371986136062]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bc7846f946740b4661b3eb14dd57db75ac520223", "fields": {"departement": "75", "stop_lat": 48.84056772620437, "code_postal": "75114", "stop_lon": 2.326402815222764, "coord": [48.84056772620437, 2.326402815222764], "stop_id": 1930, "stop_desc": "Edgar Quinet (place, face au 11 boulevard Edgar Quinet) - 75114", "stop_name": "Edgar-Quinet"}, "geometry": {"type": "Point", "coordinates": [2.326402815222764, 48.84056772620437]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5f97551c5ce0f60ea647f9135dee57c548085d39", "fields": {"departement": "94", "stop_lat": 48.79493354483859, "code_postal": "94068", "stop_lon": 2.5130447577249475, "coord": [48.79493354483859, 2.5130447577249475], "stop_id": 1919, "stop_desc": "Pierre Semard (2 avenue) - 94068", "stop_name": "La Varenne-Chennevi\u00e8res"}, "geometry": {"type": "Point", "coordinates": [2.5130447577249475, 48.79493354483859]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "80de4fb7620b54379b747bdd66fa41aa83465a80", "fields": {"departement": "75", "stop_lat": 48.85830005598138, "code_postal": "75101", "stop_lon": 2.347865087577108, "coord": [48.85830005598138, 2.347865087577108], "stop_id": 1964, "stop_desc": "Victoria (7 avenue, 4 rue Saint-Martin) - 75101", "stop_name": "Ch\u00e2telet"}, "geometry": {"type": "Point", "coordinates": [2.347865087577108, 48.85830005598138]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a4fbb4d6e0297a657fc9a935e029b1e82e03cb8f", "fields": {"departement": "75", "stop_lat": 48.82033705689765, "code_postal": "75114", "stop_lon": 2.3396909747101295, "coord": [48.82033705689765, 2.3396909747101295], "stop_id": 1976, "stop_desc": "Jourdan (24 boulevard) - 75114", "stop_name": "Cit\u00e9 Universitaire"}, "geometry": {"type": "Point", "coordinates": [2.3396909747101295, 48.82033705689765]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b16cf8a6a87aaeecd5787f5ea9f6b565b451299e", "fields": {"departement": "75", "stop_lat": 48.87204561942636, "code_postal": "75108", "stop_lon": 2.3007691856449535, "coord": [48.87204561942636, 2.3007691856449535], "stop_id": 1961, "stop_desc": "Champs-Elys\u00e9es (118 avenue des) - 75108", "stop_name": "George V"}, "geometry": {"type": "Point", "coordinates": [2.3007691856449535, 48.87204561942636]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f8b4883bc1c126c2d6cbbe49dae72925de20459c", "fields": {"departement": "93", "stop_lat": 48.91405674514657, "code_postal": "93001", "stop_lon": 2.403576334511007, "coord": [48.91405674514657, 2.403576334511007], "stop_id": 1944, "stop_desc": "Pantin - 93001", "stop_name": "Fort d'Aubervilliers"}, "geometry": {"type": "Point", "coordinates": [2.403576334511007, 48.91405674514657]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9bc5a41eda17ab207c5b529e877f9d2d502e0e29", "fields": {"departement": "75", "stop_lat": 48.84290697853592, "code_postal": "75116", "stop_lon": 2.2601443978808957, "coord": [48.84290697853592, 2.2601443978808957], "stop_id": 1936, "stop_desc": "H\u00f4pital Henry Dunant - 75116", "stop_name": "Exelmans"}, "geometry": {"type": "Point", "coordinates": [2.2601443978808957, 48.84290697853592]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "11aa3441862af1daf722d74c02fde27ac382197f", "fields": {"departement": "94", "stop_lat": 48.81574430585205, "code_postal": "94037", "stop_lon": 2.3408747750262417, "coord": [48.81574430585205, 2.3408747750262417], "stop_id": 1960, "stop_desc": "Romain Rolland - 94037", "stop_name": "Gentilly"}, "geometry": {"type": "Point", "coordinates": [2.3408747750262417, 48.81574430585205]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ff8902eefdae419c2c92f75e13f0194b2dce32dd", "fields": {"departement": "92", "stop_lat": 48.89532514729429, "code_postal": "92050", "stop_lon": 2.1958404738707524, "coord": [48.89532514729429, 2.1958404738707524], "stop_id": 1831, "stop_desc": "Maurice Thorez (rue, intersection avec le boulevard du Couchant) - 92050", "stop_name": "Nanterre-Ville"}, "geometry": {"type": "Point", "coordinates": [2.1958404738707524, 48.89532514729429]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6ddb89900800b9e9ffc222ae9d0364d029ba7a6e", "fields": {"departement": "92", "stop_lat": 48.81470406056698, "code_postal": "92020", "stop_lon": 2.2972847301706394, "coord": [48.81470406056698, 2.2972847301706394], "stop_id": 1880, "stop_desc": "Guy M\u00f4quet (87 rue) - 92020", "stop_name": "Malakoff-Rue Etienne Dolet"}, "geometry": {"type": "Point", "coordinates": [2.2972847301706394, 48.81470406056698]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4fc0b32c04934bceecab9c34fdf8988d31441be4", "fields": {"departement": "93", "stop_lat": 48.880051061772676, "code_postal": "93045", "stop_lon": 2.415660206064229, "coord": [48.880051061772676, 2.415660206064229], "stop_id": 1875, "stop_desc": "Libert\u00e9 (2 boulevard de la) - 93045", "stop_name": "Mairie des Lilas"}, "geometry": {"type": "Point", "coordinates": [2.415660206064229, 48.880051061772676]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e2ed26925965d5e4e97e633082251d630fec3da0", "fields": {"departement": "93", "stop_lat": 48.862280986339, "code_postal": "93048", "stop_lon": 2.441827679127713, "coord": [48.862280986339, 2.441827679127713], "stop_id": 1873, "stop_desc": "Rouget de Lisle (1 boulevard) - 93048", "stop_name": "Mairie de Montreuil"}, "geometry": {"type": "Point", "coordinates": [2.441827679127713, 48.862280986339]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "467f55ac6331d3569b9cb51ca2c0f7711f8219a2", "fields": {"departement": "75", "stop_lat": 48.8526004024001, "code_postal": "75120", "stop_lon": 2.4063849895661393, "coord": [48.8526004024001, 2.4063849895661393], "stop_id": 1882, "stop_desc": "Pyr\u00e9n\u00e9es (67 bis rue des, en face) - 75120", "stop_name": "Mara\u00eechers"}, "geometry": {"type": "Point", "coordinates": [2.4063849895661393, 48.8526004024001]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9b1dbc1d1738440b588e814e13623466ddc8fdd2", "fields": {"departement": "75", "stop_lat": 48.8814934288588, "code_postal": "75110", "stop_lon": 2.3657752423496143, "coord": [48.8814934288588, 2.3657752423496143], "stop_id": 1861, "stop_desc": "Faubourg Saint-Martin (234 rue du) - 75110", "stop_name": "Louis Blanc"}, "geometry": {"type": "Point", "coordinates": [2.3657752423496143, 48.8814934288588]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fafecac1bca2a218564c4aa5f78fe45eae27f6c2", "fields": {"departement": "75", "stop_lat": 48.87953716638082, "code_postal": "75108", "stop_lon": 2.3268579472729614, "coord": [48.87953716638082, 2.3268579472729614], "stop_id": 1858, "stop_desc": "Li\u00e8ge (terre-plein face au 21 rue de) - 75108", "stop_name": "Li\u00e8ge"}, "geometry": {"type": "Point", "coordinates": [2.3268579472729614, 48.87953716638082]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a59977099a519bc976057581f0effaea3a0bcc70", "fields": {"departement": "94", "stop_lat": 48.81121453549021, "code_postal": "94041", "stop_lon": 2.383508928732683, "coord": [48.81121453549021, 2.383508928732683], "stop_id": 1871, "stop_desc": "Maurice Thorez (213 avenue) - 94041", "stop_name": "Mairie d'Ivry"}, "geometry": {"type": "Point", "coordinates": [2.383508928732683, 48.81121453549021]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bb8d5a232ac6ba620975dfc0346eb2a48c54c8b3", "fields": {"departement": "92", "stop_lat": 48.889269622246026, "code_postal": "92044", "stop_lon": 2.2880551248039036, "coord": [48.889269622246026, 2.2880551248039036], "stop_id": 1862, "stop_desc": "Rue Anatole France - 92044", "stop_name": "Louise Michel"}, "geometry": {"type": "Point", "coordinates": [2.2880551248039036, 48.889269622246026]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d4a7f8cdf3c954cb1ddb3a56e1a54f98deb13052", "fields": {"departement": "91", "stop_lat": 48.706049793049075, "code_postal": "91477", "stop_lon": 2.2115654162223874, "coord": [48.706049793049075, 2.2115654162223874], "stop_id": 1865, "stop_desc": "Gare de Loz\u00e8re (place de la) - 91477", "stop_name": "Loz\u00e8re"}, "geometry": {"type": "Point", "coordinates": [2.2115654162223874, 48.706049793049075]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d5974c46ad37609a3956f80f2bfb40e0274c6742", "fields": {"departement": "75", "stop_lat": 48.87179221641751, "code_postal": "75116", "stop_lon": 2.27486996119569, "coord": [48.87179221641751, 2.27486996119569], "stop_id": 1736, "stop_desc": "Foch (avenue, c\u00f4t\u00e9 impair) - 75116", "stop_name": "Porte Dauphine (Mar\u00e9chal de Lattre de Tassigny)"}, "geometry": {"type": "Point", "coordinates": [2.27486996119569, 48.87179221641751]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7c50f795c5792dae04b8a45f57d020a0941327e7", "fields": {"departement": "75", "stop_lat": 48.871511817078165, "code_postal": "75109", "stop_lon": 2.343208377544865, "coord": [48.871511817078165, 2.343208377544865], "stop_id": 1712, "stop_desc": "Poissonni\u00e8re (32 boulevard) - 75109", "stop_name": "Grands Boulevards"}, "geometry": {"type": "Point", "coordinates": [2.343208377544865, 48.871511817078165]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "99144a508797d498a1db7c9d8d325f34406c9629", "fields": {"departement": "75", "stop_lat": 48.88015993211241, "code_postal": "75119", "stop_lon": 2.3985866218697662, "coord": [48.88015993211241, 2.3985866218697662], "stop_id": 1756, "stop_desc": "Serrurier (52 boulevard) - 75119", "stop_name": "Pr\u00e9-Saint-Gervais"}, "geometry": {"type": "Point", "coordinates": [2.3985866218697662, 48.88015993211241]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c42afbbe3d2e73c23d1dbd9667cba10addfad6ac", "fields": {"departement": "75", "stop_lat": 48.88573915969202, "code_postal": "75117", "stop_lon": 2.2918606206755348, "coord": [48.88573915969202, 2.2918606206755348], "stop_id": 1738, "stop_desc": "Villiers (143 rue de) - 75117", "stop_name": "Porte de Champerret"}, "geometry": {"type": "Point", "coordinates": [2.2918606206755348, 48.88573915969202]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "688f65d10a300cf99c48d235e8476e173a8468af", "fields": {"departement": "75", "stop_lat": 48.87723471669558, "code_postal": "75120", "stop_lon": 2.4065268430480917, "coord": [48.87723471669558, 2.4065268430480917], "stop_id": 1753, "stop_desc": "S\u00e9rurier (Boulevard) - 75120", "stop_name": "Porte des Lilas"}, "geometry": {"type": "Point", "coordinates": [2.4065268430480917, 48.87723471669558]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "90f51e618c50adf4fe969b34555922140223f990", "fields": {"departement": "75", "stop_lat": 48.86164742429928, "code_postal": "75111", "stop_lon": 2.373147140772303, "coord": [48.86164742429928, 2.373147140772303], "stop_id": 1714, "stop_desc": "Voltaire (86 boulevard) - 75111", "stop_name": "Saint-Ambroise"}, "geometry": {"type": "Point", "coordinates": [2.373147140772303, 48.86164742429928]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7d950e445562e3c66efd4e85c2f07c06ed010187", "fields": {"departement": "75", "stop_lat": 48.864336535483645, "code_postal": "75120", "stop_lon": 2.4088253760377283, "coord": [48.864336535483645, 2.4088253760377283], "stop_id": 1737, "stop_desc": "Py (rue de la) - 75120", "stop_name": "Porte de Bagnolet"}, "geometry": {"type": "Point", "coordinates": [2.4088253760377283, 48.864336535483645]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "af80dbd98d3e02877d06613599057c5b9224877f", "fields": {"departement": "75", "stop_lat": 48.86119339564163, "code_postal": "75104", "stop_lon": 2.3532869598707133, "coord": [48.86119339564163, 2.3532869598707133], "stop_id": 1761, "stop_desc": "Grenier Saint-Lazare (3 rue) - 75104", "stop_name": "Rambuteau"}, "geometry": {"type": "Point", "coordinates": [2.3532869598707133, 48.86119339564163]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "71c4bf84ad7b51cd5e64ab96b9383c8d6688c23e", "fields": {"departement": "75", "stop_lat": 48.872096123789774, "code_postal": "75109", "stop_lon": 2.339325555856426, "coord": [48.872096123789774, 2.339325555856426], "stop_id": 1702, "stop_desc": "Op\u00e9ra Comique - 75109", "stop_name": "Richelieu-Drouot"}, "geometry": {"type": "Point", "coordinates": [2.339325555856426, 48.872096123789774]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c961b47e6470759edc84c6ed19de5f65599261f8", "fields": {"departement": "93", "stop_lat": 48.855680808196944, "code_postal": "93048", "stop_lon": 2.423659085483019, "coord": [48.855680808196944, 2.423659085483019], "stop_id": 1704, "stop_desc": "Paris (185 rue de) - 93048", "stop_name": "Robespierre"}, "geometry": {"type": "Point", "coordinates": [2.423659085483019, 48.855680808196944]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b71d7989a31468d46a6dddde003e76ec59a5251e", "fields": {"departement": "75", "stop_lat": 48.873425976534854, "code_postal": "75109", "stop_lon": 2.3289709732965647, "coord": [48.873425976534854, 2.3289709732965647], "stop_id": 1890, "stop_desc": "Haussmann (boulevard, c\u00f4t\u00e9 pair et rue du Havre) - 75109", "stop_name": "Havre-Caumartin"}, "geometry": {"type": "Point", "coordinates": [2.3289709732965647, 48.873425976534854]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "319ff27738f9e904242107d0baee912e4877a4e2", "fields": {"departement": "75", "stop_lat": 48.8734618906704, "code_postal": "75109", "stop_lon": 2.3284804844734768, "coord": [48.8734618906704, 2.3284804844734768], "stop_id": 1889, "stop_desc": "Haussmann (boulevard, c\u00f4t\u00e9 pair et rue du Havre) - 75109", "stop_name": "Havre-Caumartin"}, "geometry": {"type": "Point", "coordinates": [2.3284804844734768, 48.8734618906704]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "43ceaffb6f015b258086b1e2644774835198b409", "fields": {"departement": "92", "stop_lat": 48.89200565400341, "code_postal": "92062", "stop_lon": 2.2369831238174327, "coord": [48.89200565400341, 2.2369831238174327], "stop_id": 1913, "stop_desc": "Parvis de la D\u00e9fense - 92062", "stop_name": "La D\u00e9fense (Grande Arche)"}, "geometry": {"type": "Point", "coordinates": [2.2369831238174327, 48.89200565400341]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8d6a898107282f1c507e28754ee51afcb0ed148e", "fields": {"departement": "75", "stop_lat": 48.852438519222666, "code_postal": "75116", "stop_lon": 2.2679339230009505, "coord": [48.852438519222666, 2.2679339230009505], "stop_id": 1899, "stop_desc": "Mozart (85 avenue, angle avec le 47 rue Ribera) - 75116", "stop_name": "Jasmin"}, "geometry": {"type": "Point", "coordinates": [2.2679339230009505, 48.852438519222666]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a3d39aa5577f7f20871839aa1dae6f986977b78e", "fields": {"departement": "93", "stop_lat": 48.891499383764256, "code_postal": "93055", "stop_lon": 2.4031249606560765, "coord": [48.891499383764256, 2.4031249606560765], "stop_id": 1891, "stop_desc": "Jean Lolive (50 avenue, rue C. Nodier) - 93055", "stop_name": "Hoche"}, "geometry": {"type": "Point", "coordinates": [2.4031249606560765, 48.891499383764256]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fc225f657ab3182c63964bea4ebefce3cea5931c", "fields": {"departement": "92", "stop_lat": 48.762144791530275, "code_postal": "92002", "stop_lon": 2.3041636149992573, "coord": [48.762144791530275, 2.3041636149992573], "stop_id": 1912, "stop_desc": "Velpeau (11 rue) - 92002", "stop_name": "La Croix-de-Berny"}, "geometry": {"type": "Point", "coordinates": [2.3041636149992573, 48.762144791530275]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1e122766d23e95ca616bba4b484515bbba3854b8", "fields": {"departement": "75", "stop_lat": 48.893009056051206, "code_postal": "75118", "stop_lon": 2.3274958394904894, "coord": [48.893009056051206, 2.3274958394904894], "stop_id": 1888, "stop_desc": "Saint-Ouen (86 avenue de) - 75118", "stop_name": "Guy-M\u00f4quet"}, "geometry": {"type": "Point", "coordinates": [2.3274958394904894, 48.893009056051206]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1966ef1daa92ed3ce471dc06025c24884344440d", "fields": {"departement": "75", "stop_lat": 48.86085078966753, "code_postal": "75107", "stop_lon": 2.314548112626649, "coord": [48.86085078966753, 2.314548112626649], "stop_id": 1897, "stop_desc": "Universit\u00e9 (rue de l') - 75107", "stop_name": "Invalides"}, "geometry": {"type": "Point", "coordinates": [2.314548112626649, 48.86085078966753]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "801bd618aa7d5f3a521e7cf03141f3b26856d150", "fields": {"departement": "75", "stop_lat": 48.85780537313629, "code_postal": "75104", "stop_lon": 2.351460776513565, "coord": [48.85780537313629, 2.351460776513565], "stop_id": 1893, "stop_desc": "Rue de Rivoli - 75104", "stop_name": "H\u00f4tel de Ville"}, "geometry": {"type": "Point", "coordinates": [2.351460776513565, 48.85780537313629]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8be9acae430a7382f0e7df65d370673a75f91266", "fields": {"departement": "75", "stop_lat": 48.89249697693026, "code_postal": "75118", "stop_lon": 2.3443284105515048, "coord": [48.89249697693026, 2.3443284105515048], "stop_id": 1906, "stop_desc": "Ordener (115 rue) - 75118", "stop_name": "Jules Joffrin"}, "geometry": {"type": "Point", "coordinates": [2.3443284105515048, 48.89249697693026]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0c59cd8934b047946f6ce29369353bc1fd5a4f02", "fields": {"departement": "92", "stop_lat": 48.93029362287076, "code_postal": "92004", "stop_lon": 2.2837606331952487, "coord": [48.93029362287076, 2.2837606331952487], "stop_id": 1662798, "stop_desc": "Angle Boulevard Pierre de Coubertin / Avenue Lucien Lanternier - 92004", "stop_name": "Asni\u00e8res-Gennevilliers Les Courtilles"}, "geometry": {"type": "Point", "coordinates": [2.2837606331952487, 48.93029362287076]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0ad70de518bc3a70d06a15f2e0ab6a17b5ef8218", "fields": {"departement": "75", "stop_lat": 48.883931769934414, "code_postal": "75109", "stop_lon": 2.3493557085996466, "coord": [48.883931769934414, 2.3493557085996466], "stop_id": 2110, "stop_desc": "Rochechouart (2 boulevard de, vers le boulevard Barb\u00e8s) - 75109", "stop_name": "Barb\u00e8s-Rochechouart"}, "geometry": {"type": "Point", "coordinates": [2.3493557085996466, 48.883931769934414]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fa5ba5dfaf49888d9ce9a4578a7202d5b5df3380", "fields": {"departement": "93", "stop_lat": 48.924023434909344, "code_postal": "93001", "stop_lon": 2.3844006646895615, "coord": [48.924023434909344, 2.3844006646895615], "stop_id": 2103, "stop_desc": "Place de la Gare - 93001", "stop_name": "La Courneuve-Aubervilliers"}, "geometry": {"type": "Point", "coordinates": [2.3844006646895615, 48.924023434909344]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "151740b34628b9bc2109415c8fc07bdf1629f84b", "fields": {"departement": "75", "stop_lat": 48.864253384403426, "code_postal": "75116", "stop_lon": 2.277916762028845, "coord": [48.864253384403426, 2.277916762028845], "stop_id": 2453, "stop_desc": "Georges Mandel (56 avenue, angle avec le 86 rue de la Pompe) - 75116", "stop_name": "Rue de la Pompe (Avenue Georges Mandel)"}, "geometry": {"type": "Point", "coordinates": [2.277916762028845, 48.864253384403426]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "156b42a258557bfe0a880d9825b637512e57f0bd", "fields": {"departement": "75", "stop_lat": 48.85093928843075, "code_postal": "75107", "stop_lon": 2.3261146548222844, "coord": [48.85093928843075, 2.3261146548222844], "stop_id": 2476, "stop_desc": "Raspail (41 boulevard, 18 rue de S\u00e8vres) - 75107", "stop_name": "S\u00e8vres-Babylone"}, "geometry": {"type": "Point", "coordinates": [2.3261146548222844, 48.85093928843075]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "961d8fb258d221274fa2a9f53ffa5c7bd1893f7e", "fields": {"departement": "75", "stop_lat": 48.84596603240645, "code_postal": "75112", "stop_lon": 2.3669131797383116, "coord": [48.84596603240645, 2.3669131797383116], "stop_id": 2437, "stop_desc": "Rap\u00e9e (quai de la, place Nazas) - 75112", "stop_name": "Quai de la Rap\u00e9e"}, "geometry": {"type": "Point", "coordinates": [2.3669131797383116, 48.84596603240645]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b3e44cb57547f2f71aacb9b804eab8767b760863", "fields": {"departement": "75", "stop_lat": 48.88015993211241, "code_postal": "75119", "stop_lon": 2.3985866218697662, "coord": [48.88015993211241, 2.3985866218697662], "stop_id": 2434, "stop_desc": "Serrurier (52 boulevard) - 75119", "stop_name": "Pr\u00e9-Saint-Gervais"}, "geometry": {"type": "Point", "coordinates": [2.3985866218697662, 48.88015993211241]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "76acb1186db278c0ebd18f35758d085be2f2beeb", "fields": {"departement": "75", "stop_lat": 48.847016518419125, "code_postal": "75120", "stop_lon": 2.410816882334764, "coord": [48.847016518419125, 2.410816882334764], "stop_id": 2429, "stop_desc": "Cours de Vincennes (99) - 75120", "stop_name": "Porte de Vincennes"}, "geometry": {"type": "Point", "coordinates": [2.410816882334764, 48.847016518419125]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bac0d9083fd4e7c40dc9aef2062fe5f253a79137", "fields": {"departement": "75", "stop_lat": 48.8769382235089, "code_postal": "75120", "stop_lon": 2.4063765669297816, "coord": [48.8769382235089, 2.4063765669297816], "stop_id": 2430, "stop_desc": "S\u00e9rurier (Boulevard) - 75120", "stop_name": "Porte des Lilas"}, "geometry": {"type": "Point", "coordinates": [2.4063765669297816, 48.8769382235089]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6d1ebaa84b254c9558adcbfc2bd973948fee8b38", "fields": {"departement": "75", "stop_lat": 48.82776532658967, "code_postal": "75114", "stop_lon": 2.3043123507630607, "coord": [48.82776532658967, 2.3043123507630607], "stop_id": 2427, "stop_desc": "Brune (9 boulevard) - 75114", "stop_name": "Porte de Vanves"}, "geometry": {"type": "Point", "coordinates": [2.3043123507630607, 48.82776532658967]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "be3610311a057aea34a58a87cb42b0d79015d0c7", "fields": {"departement": "93", "stop_lat": 48.93601068591127, "code_postal": "93071", "stop_lon": 2.5346809010269817, "coord": [48.93601068591127, 2.5346809010269817], "stop_id": 2474, "stop_desc": "Gare (place de la) - 93071", "stop_name": "Sevran Livry"}, "geometry": {"type": "Point", "coordinates": [2.5346809010269817, 48.93601068591127]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c8321fe6b1126a488158c4decf666a6929480321", "fields": {"departement": "75", "stop_lat": 48.872096123789774, "code_postal": "75109", "stop_lon": 2.339325555856426, "coord": [48.872096123789774, 2.339325555856426], "stop_id": 2447, "stop_desc": "Op\u00e9ra Comique - 75109", "stop_name": "Richelieu-Drouot"}, "geometry": {"type": "Point", "coordinates": [2.339325555856426, 48.872096123789774]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1f86ad1470ee220c3eb5588e5d923f16c4166aa2", "fields": {"departement": "75", "stop_lat": 48.876067814352574, "code_postal": "75108", "stop_lon": 2.324188100771013, "coord": [48.876067814352574, 2.324188100771013], "stop_id": 2469, "stop_desc": "Saint-Lazare (95 rue) - 75108", "stop_name": "Saint-Lazare"}, "geometry": {"type": "Point", "coordinates": [2.324188100771013, 48.876067814352574]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b652ecb8080e575fd2c69525f42aa8181328fb92", "fields": {"departement": "75", "stop_lat": 48.8763290374387, "code_postal": "75109", "stop_lon": 2.331804568510596, "coord": [48.8763290374387, 2.331804568510596], "stop_id": 2496, "stop_desc": "Estienne d'Orves (2 place d') - 75109", "stop_name": "Trinit\u00e9-d'Estienne d'Orves"}, "geometry": {"type": "Point", "coordinates": [2.331804568510596, 48.8763290374387]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "459d01e17106b033ee7e78a0951a404aba31c815", "fields": {"departement": "75", "stop_lat": 48.867744026068706, "code_postal": "75108", "stop_lon": 2.3141227803741415, "coord": [48.867744026068706, 2.3141227803741415], "stop_id": 2544, "stop_desc": "Cl\u00e9menceau (place) - 75108", "stop_name": "Champs-Elys\u00e9es-Cl\u00e9menceau"}, "geometry": {"type": "Point", "coordinates": [2.3141227803741415, 48.867744026068706]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "39c9684a43108c6fe4450a09283ff42a0de88ea0", "fields": {"departement": "94", "stop_lat": 48.80376966328267, "code_postal": "94076", "stop_lon": 2.3639093063890435, "coord": [48.80376966328267, 2.3639093063890435], "stop_id": 2519, "stop_desc": "Rue du Dauphin - 94076", "stop_name": "Villejuif-L\u00e9o Lagrange"}, "geometry": {"type": "Point", "coordinates": [2.3639093063890435, 48.80376966328267]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8c9abe439bcaad29cee6a14fac87e90bc0faeeb0", "fields": {"departement": "75", "stop_lat": 48.866764167814516, "code_postal": "75103", "stop_lon": 2.3615713270327316, "coord": [48.866764167814516, 2.3615713270327316], "stop_id": 2493, "stop_desc": "Temple (rue du, angle avec la rue Turbigo) - 75103", "stop_name": "Temple"}, "geometry": {"type": "Point", "coordinates": [2.3615713270327316, 48.866764167814516]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6c281d009691925ce239d55766cabd7f09b67852", "fields": {"departement": "75", "stop_lat": 48.831552302643125, "code_postal": "75113", "stop_lon": 2.3553334432190454, "coord": [48.831552302643125, 2.3553334432190454], "stop_id": 2528, "stop_desc": "Vincent Auriol (182 boulevard) - 75113", "stop_name": "Place d'Italie"}, "geometry": {"type": "Point", "coordinates": [2.3553334432190454, 48.831552302643125]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1b354aaeaaadc3e49d112b37e8e29ffd563e05c1", "fields": {"departement": "75", "stop_lat": 48.838516743515164, "code_postal": "75113", "stop_lon": 2.360727550361784, "coord": [48.838516743515164, 2.360727550361784], "stop_id": 2521, "stop_desc": "La Piti\u00e9-Salp\u00eatri\u00e8re - 75113", "stop_name": "Saint-Marcel"}, "geometry": {"type": "Point", "coordinates": [2.360727550361784, 48.838516743515164]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dc02c3a004cbfe925ee6337e6bbe64c7efb616d7", "fields": {"departement": "93", "stop_lat": 48.944131219085655, "code_postal": "93078", "stop_lon": 2.566814263856176, "coord": [48.944131219085655, 2.566814263856176], "stop_id": 2503, "stop_desc": "Gare (place de la) - 93078", "stop_name": "Vert-Galant"}, "geometry": {"type": "Point", "coordinates": [2.566814263856176, 48.944131219085655]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1be34f0dfefd6b1cc0c46fe972b9c2e7bc1e0d99", "fields": {"departement": "75", "stop_lat": 48.86478016250008, "code_postal": "75101", "stop_lon": 2.3290949544294275, "coord": [48.86478016250008, 2.3290949544294275], "stop_id": 2498, "stop_desc": "Rivoli (210 rue de) - 75101", "stop_name": "Tuileries"}, "geometry": {"type": "Point", "coordinates": [2.3290949544294275, 48.86478016250008]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "117fe14525204524c744dff94414289bc99b56b2", "fields": {"departement": "92", "stop_lat": 48.78128731847868, "code_postal": "92071", "stop_lon": 2.2976096510082007, "coord": [48.78128731847868, 2.2976096510082007], "stop_id": 2540, "stop_desc": "Jean-Louis Sinet (rue) - 92071", "stop_name": "Sceaux"}, "geometry": {"type": "Point", "coordinates": [2.2976096510082007, 48.78128731847868]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d9788708f04c66f0de0ce59a13963b99a1d7985e", "fields": {"departement": "75", "stop_lat": 48.848198268824774, "code_postal": "75106", "stop_lon": 2.3280217486281134, "coord": [48.848198268824774, 2.3280217486281134], "stop_id": 2526, "stop_desc": "Rennes (115 rue de) - 75106", "stop_name": "Rennes"}, "geometry": {"type": "Point", "coordinates": [2.3280217486281134, 48.848198268824774]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "05eb3510280e4f7e72aeea5f842dd6a6418f2669", "fields": {"departement": "75", "stop_lat": 48.869380780106006, "code_postal": "75102", "stop_lon": 2.3540796521963494, "coord": [48.869380780106006, 2.3540796521963494], "stop_id": 3343775, "stop_desc": "Saint-Denis (9 rue, 114 boulevard de S\u00e9bastopol) - 75102", "stop_name": "Strasbourg-Saint-Denis"}, "geometry": {"type": "Point", "coordinates": [2.3540796521963494, 48.869380780106006]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2a490aff94c4b57f39ab5a3c20c7fb6b7ace1985", "fields": {"departement": "75", "stop_lat": 48.869227930987556, "code_postal": "75102", "stop_lon": 2.354529175385818, "coord": [48.869227930987556, 2.354529175385818], "stop_id": 2488, "stop_desc": "Saint-Denis (9 rue, 114 boulevard de S\u00e9bastopol) - 75102", "stop_name": "Strasbourg-Saint-Denis"}, "geometry": {"type": "Point", "coordinates": [2.354529175385818, 48.869227930987556]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a5ae239d7a0ff920b48fa91e220733e10fce0928", "fields": {"departement": "75", "stop_lat": 48.87845656683119, "code_postal": "75110", "stop_lon": 2.3620537162488993, "coord": [48.87845656683119, 2.3620537162488993], "stop_id": 2546, "stop_desc": "Faubourg Saint-Martin (188 rue du) - 75110", "stop_name": "Ch\u00e2teau Landon"}, "geometry": {"type": "Point", "coordinates": [2.3620537162488993, 48.87845656683119]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b0f2717116e49dcd8f90730ce9fe42e480ed3699", "fields": {"departement": "93", "stop_lat": 48.85126420779466, "code_postal": "93048", "stop_lon": 2.416120583177573, "coord": [48.85126420779466, 2.416120583177573], "stop_id": 3926261, "stop_desc": "RUE ELSA TRIOLET - 93048", "stop_name": "ELSA TRIOLET - ERIGNAC"}, "geometry": {"type": "Point", "coordinates": [2.416120583177573, 48.85126420779466]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "96658c2bf0d66f63ed6796376061cd3cdd480605", "fields": {"departement": "93", "stop_lat": 48.85165796125804, "code_postal": "93048", "stop_lon": 2.4186406617304943, "coord": [48.85165796125804, 2.4186406617304943], "stop_id": 3926263, "stop_desc": "37 RUE DU PROGRES - 93048", "stop_name": "PROGRES - ARMAND CARREL"}, "geometry": {"type": "Point", "coordinates": [2.4186406617304943, 48.85165796125804]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c867e89828cb9477c1e650c4374a60dce89975bb", "fields": {"departement": "93", "stop_lat": 48.85104402970679, "code_postal": "93048", "stop_lon": 2.4226163440553647, "coord": [48.85104402970679, 2.4226163440553647], "stop_id": 3926270, "stop_desc": "38-42 R CUVIER - 93048", "stop_name": "CUVIER - EMILE ZOLA"}, "geometry": {"type": "Point", "coordinates": [2.4226163440553647, 48.85104402970679]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c0a448d0ab3b25326c4ced6acffa5d90ffa8109d", "fields": {"departement": "75", "stop_lat": 48.86337430124218, "code_postal": "75120", "stop_lon": 2.4097912018589933, "coord": [48.86337430124218, 2.4097912018589933], "stop_id": 3926273, "stop_desc": "2 RUE LOUIS GANNE - 75120", "stop_name": "PORTE DE BAGNOLET - LOUIS GANNE"}, "geometry": {"type": "Point", "coordinates": [2.4097912018589933, 48.86337430124218]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e1b21e3042bf5e9f343d2aa69e03ef813cf9e04d", "fields": {"departement": "75", "stop_lat": 48.852493016575345, "code_postal": "75120", "stop_lon": 2.4055813238242925, "coord": [48.852493016575345, 2.4055813238242925], "stop_id": 3926281, "stop_desc": "90 R D'AVRON - 75120", "stop_name": "MARAICHERS"}, "geometry": {"type": "Point", "coordinates": [2.4055813238242925, 48.852493016575345]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7503d84ce29e2d0bbf46db7038798979f869b491", "fields": {"departement": "75", "stop_lat": 48.851883899744585, "code_postal": "75120", "stop_lon": 2.401944283905867, "coord": [48.851883899744585, 2.401944283905867], "stop_id": 3926283, "stop_desc": "38 R D'AVRON - 75120", "stop_name": "BUZENVAL"}, "geometry": {"type": "Point", "coordinates": [2.401944283905867, 48.851883899744585]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b969d2295c7146776bef1d4fa2701a27df356a64", "fields": {"departement": "75", "stop_lat": 48.851274928795334, "code_postal": "75111", "stop_lon": 2.3978034375831276, "coord": [48.851274928795334, 2.3978034375831276], "stop_id": 3926284, "stop_desc": "133-135 RUE DE MONTREUIL - 75111", "stop_name": "AVRON"}, "geometry": {"type": "Point", "coordinates": [2.3978034375831276, 48.851274928795334]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0692fa12598af4cc24d276e381f3d2a1fc9df403", "fields": {"departement": "75", "stop_lat": 48.851068403360394, "code_postal": "75111", "stop_lon": 2.3974354928887465, "coord": [48.851068403360394, 2.3974354928887465], "stop_id": 3926285, "stop_desc": "108-110 RUE DE MONTREUIL - 75111", "stop_name": "AVRON"}, "geometry": {"type": "Point", "coordinates": [2.3974354928887465, 48.851068403360394]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7fddc682747102dbefcf58fd7ec2cbba2f497793", "fields": {"departement": "75", "stop_lat": 48.847816009124294, "code_postal": "75112", "stop_lon": 2.395266489629075, "coord": [48.847816009124294, 2.395266489629075], "stop_id": 3926289, "stop_desc": "FACE 4 PLACE DE LA NATION - 75112", "stop_name": "DIDEROT - NATION"}, "geometry": {"type": "Point", "coordinates": [2.395266489629075, 48.847816009124294]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "477a056e05ce9caf511b7edc43148f5ce5f7eaf9", "fields": {"departement": "75", "stop_lat": 48.847656209674426, "code_postal": "75112", "stop_lon": 2.3910584243965474, "coord": [48.847656209674426, 2.3910584243965474], "stop_id": 3926291, "stop_desc": "156 BOULEVARD DIDEROT - 75112", "stop_name": "PIERRE BOURDAN"}, "geometry": {"type": "Point", "coordinates": [2.3910584243965474, 48.847656209674426]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "61a0ca8a9345200c35a082e8406e136d20184798", "fields": {"departement": "75", "stop_lat": 48.83925365322841, "code_postal": "75113", "stop_lon": 2.3610818880156876, "coord": [48.83925365322841, 2.3610818880156876], "stop_id": 3926302, "stop_desc": "48 BOULEVARD DE L'HOPITAL - 75113", "stop_name": "SAINT-MARCEL - LA PITIE"}, "geometry": {"type": "Point", "coordinates": [2.3610818880156876, 48.83925365322841]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ca65555582e21c741953d0eadc48b50044e37bff", "fields": {"departement": "75", "stop_lat": 48.83633304434552, "code_postal": "75113", "stop_lon": 2.359256166042175, "coord": [48.83633304434552, 2.359256166042175], "stop_id": 3926305, "stop_desc": "113 BOULEVARD DE L'HOPITAL - 75113", "stop_name": "JENNER - JEANNE D'ARC"}, "geometry": {"type": "Point", "coordinates": [2.359256166042175, 48.83633304434552]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ca20bcd957124d1fc24684b23cac06015b85b905", "fields": {"departement": "75", "stop_lat": 48.81995854579051, "code_postal": "75113", "stop_lon": 2.3530836743187176, "coord": [48.81995854579051, 2.3530836743187176], "stop_id": 3926317, "stop_desc": "RUE DE LA POTERNE DES PEUPLIERS - 75113", "stop_name": "POTERNE DES PEUPLIERS"}, "geometry": {"type": "Point", "coordinates": [2.3530836743187176, 48.81995854579051]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "14385e5c82fa587ad80752c18dc177f332bf5ff0", "fields": {"departement": "94", "stop_lat": 48.8145125966511, "code_postal": "94037", "stop_lon": 2.347543127080645, "coord": [48.8145125966511, 2.347543127080645], "stop_id": 3926320, "stop_desc": "4 RUE D'ARCUEIL - 94037", "stop_name": "DIVISION LECLERC - MEDIATHEQUE"}, "geometry": {"type": "Point", "coordinates": [2.347543127080645, 48.8145125966511]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7a174298a2fbe711623705e7e32f8e3b4336cc74", "fields": {"departement": "94", "stop_lat": 48.80926416203173, "code_postal": "94003", "stop_lon": 2.3345875741581135, "coord": [48.80926416203173, 2.3345875741581135], "stop_id": 3926329, "stop_desc": "RUE DE VAUCOULEURS - 94003", "stop_name": "LAPLACE RER"}, "geometry": {"type": "Point", "coordinates": [2.3345875741581135, 48.80926416203173]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f4ce41f9faed40b96e63bdc9ec8ca196a125b020", "fields": {"departement": "94", "stop_lat": 48.808760843720364, "code_postal": "94003", "stop_lon": 2.3344651320517564, "coord": [48.808760843720364, 2.3344651320517564], "stop_id": 3926331, "stop_desc": "R ERNEST RENAN - 94003", "stop_name": "LAPLACE RER."}, "geometry": {"type": "Point", "coordinates": [2.3344651320517564, 48.808760843720364]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fc080aad17f5bcfbe34ffdfb057e9794e4ff4bf4", "fields": {"departement": "94", "stop_lat": 48.81688469793853, "code_postal": "94037", "stop_lon": 2.3534638078265386, "coord": [48.81688469793853, 2.3534638078265386], "stop_id": 3926335, "stop_desc": "3-5 AVENUE GALLIENI - 94037", "stop_name": "VERDUN"}, "geometry": {"type": "Point", "coordinates": [2.3534638078265386, 48.81688469793853]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d54e9838c6064c63a11295ca2867cdc2068bf846", "fields": {"departement": "75", "stop_lat": 48.826141995040174, "code_postal": "75113", "stop_lon": 2.353616432761167, "coord": [48.826141995040174, 2.353616432761167], "stop_id": 3926336, "stop_desc": "FACE 64 RUE DU MOULIN DES PRES - 75113", "stop_name": "MOULIN DES PRES - TOLBIAC"}, "geometry": {"type": "Point", "coordinates": [2.353616432761167, 48.826141995040174]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cbcf764bfd551fea933617945726dfcf2669b8b6", "fields": {"departement": "75", "stop_lat": 48.844041290696545, "code_postal": "75112", "stop_lon": 2.3721273154078797, "coord": [48.844041290696545, 2.3721273154078797], "stop_id": 3926339, "stop_desc": "16 RUE VAN GOGH - 75112", "stop_name": "VAN GOGH"}, "geometry": {"type": "Point", "coordinates": [2.3721273154078797, 48.844041290696545]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c8d5b65e8b54709a4bb880cc3a9a9e0b7b8c629f", "fields": {"departement": "75", "stop_lat": 48.857378613042684, "code_postal": "75120", "stop_lon": 2.4115534564948455, "coord": [48.857378613042684, 2.4115534564948455], "stop_id": 3926340, "stop_desc": "FACE 27 R LOUIS LUMIERE - 75120", "stop_name": "STADE DEJERINE"}, "geometry": {"type": "Point", "coordinates": [2.4115534564948455, 48.857378613042684]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e762986560eb9f5e8278ddacd5ddddb296e5a4ac", "fields": {"departement": "75", "stop_lat": 48.84700789118935, "code_postal": "75120", "stop_lon": 2.4102313138152516, "coord": [48.84700789118935, 2.4102313138152516], "stop_id": 3926377, "stop_desc": "116 CRS DE VINCENNES - 75120", "stop_name": "PORTE DE VINCENNES"}, "geometry": {"type": "Point", "coordinates": [2.4102313138152516, 48.84700789118935]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b5677fd70ad19619a22377b200ece5fa080d273c", "fields": {"departement": "75", "stop_lat": 48.864785410194465, "code_postal": "75120", "stop_lon": 2.4096433309569973, "coord": [48.864785410194465, 2.4096433309569973], "stop_id": 3926381, "stop_desc": "FACE 4 AVENUE DE LA PORTE DE BAGNOLET - 75120", "stop_name": "PORTE DE BAGNOLET"}, "geometry": {"type": "Point", "coordinates": [2.4096433309569973, 48.864785410194465]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cc8a5467de9f9d61a34e4b8d0faa20f278c081bc", "fields": {"departement": "75", "stop_lat": 48.860313667287144, "code_postal": "75101", "stop_lon": 2.340414771092881, "coord": [48.860313667287144, 2.340414771092881], "stop_id": 3926384, "stop_desc": "RUE DE L'AMIRAL COLIGNY - 75101", "stop_name": "PONT NEUF"}, "geometry": {"type": "Point", "coordinates": [2.340414771092881, 48.860313667287144]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "98d1169ed5bc1a53a0b2f76844f126c59c508758", "fields": {"departement": "75", "stop_lat": 48.860313667287144, "code_postal": "75101", "stop_lon": 2.340414771092881, "coord": [48.860313667287144, 2.340414771092881], "stop_id": 3926385, "stop_desc": "RUE DE L'AMIRAL COLIGNY - 75101", "stop_name": "PONT NEUF"}, "geometry": {"type": "Point", "coordinates": [2.340414771092881, 48.860313667287144]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5e1b5dedb6e1fb75b9d1c470198127afc32a37a0", "fields": {"departement": "75", "stop_lat": 48.85678114513896, "code_postal": "75104", "stop_lon": 2.348259761089279, "coord": [48.85678114513896, 2.348259761089279], "stop_id": 3926387, "stop_desc": "FACE 14 QUAI DE GESVRES - 75104", "stop_name": "CHATELET"}, "geometry": {"type": "Point", "coordinates": [2.348259761089279, 48.85678114513896]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cf53eb9c2eda32566c5301f156eb6e321373df57", "fields": {"departement": "75", "stop_lat": 48.85780544621986, "code_postal": "75104", "stop_lon": 2.3508342373367928, "coord": [48.85780544621986, 2.3508342373367928], "stop_id": 3926389, "stop_desc": "78 RUE DE RIVOLI - 75104", "stop_name": "HOTEL DE VILLE"}, "geometry": {"type": "Point", "coordinates": [2.3508342373367928, 48.85780544621986]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d9bccd7dffa75a55d586435d17ba6d52a6844b48", "fields": {"departement": "75", "stop_lat": 48.85761624408392, "code_postal": "75104", "stop_lon": 2.354443585227829, "coord": [48.85761624408392, 2.354443585227829], "stop_id": 3926390, "stop_desc": "14 RUE DES ARCHIVES - 75104", "stop_name": "LA VERRERIE"}, "geometry": {"type": "Point", "coordinates": [2.354443585227829, 48.85761624408392]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f5505b74a23396baa2a66f57fb97651234fe7779", "fields": {"departement": "75", "stop_lat": 48.875677457948655, "code_postal": "75110", "stop_lon": 2.370431831514734, "coord": [48.875677457948655, 2.370431831514734], "stop_id": 3926405, "stop_desc": "52 AVENUE CLAUDE VELLEFAUX - 75110", "stop_name": "SAMBRE ET MEUSE"}, "geometry": {"type": "Point", "coordinates": [2.370431831514734, 48.875677457948655]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "44310aa76ee608880633b8d4da9a9d5069241218", "fields": {"departement": "75", "stop_lat": 48.87839961990889, "code_postal": "75119", "stop_lon": 2.373799153495883, "coord": [48.87839961990889, 2.373799153495883], "stop_id": 3926409, "stop_desc": "FACE 26 AVENUE MATHURIN MOREAU - 75119", "stop_name": "MATHURIN MOREAU - SIMON BOLIVAR"}, "geometry": {"type": "Point", "coordinates": [2.373799153495883, 48.87839961990889]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5b40d2bfc8fc9a6df3005b2654ffe2a3b9a428ce", "fields": {"departement": "75", "stop_lat": 48.88649786796858, "code_postal": "75119", "stop_lon": 2.394710152643759, "coord": [48.88649786796858, 2.394710152643759], "stop_id": 3926425, "stop_desc": "145 BOULEVARD SERURIER - 75119", "stop_name": "GENERAL COCHET"}, "geometry": {"type": "Point", "coordinates": [2.394710152643759, 48.88649786796858]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "94e6caa0b6893f7ce32b8e4bd0069b21c0f7ae84", "fields": {"departement": "75", "stop_lat": 48.88618265749081, "code_postal": "75119", "stop_lon": 2.3960589631158467, "coord": [48.88618265749081, 2.3960589631158467], "stop_id": 3926426, "stop_desc": "14 AV DE LA PORTE CHAUMONT - 75119", "stop_name": "PORTE CHAUMONT"}, "geometry": {"type": "Point", "coordinates": [2.3960589631158467, 48.88618265749081]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e757079c4aa47db9422b967adae48449d16ea02a", "fields": {"departement": "75", "stop_lat": 48.88906665532848, "code_postal": "75119", "stop_lon": 2.397847586546523, "coord": [48.88906665532848, 2.397847586546523], "stop_id": 3926431, "stop_desc": "FACE 14 RUE DE LA MARSEILLAISE - 75119", "stop_name": "PORTE DE PANTIN - MARSEILLAISE"}, "geometry": {"type": "Point", "coordinates": [2.397847586546523, 48.88906665532848]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1d30d20d140eae5ee3cad01d90ac7ff238ea1e24", "fields": {"departement": "75", "stop_lat": 48.89008292652176, "code_postal": "75119", "stop_lon": 2.396417739827416, "coord": [48.89008292652176, 2.396417739827416], "stop_id": 3926433, "stop_desc": "FACE 1 PL DE LA PORTE DE PANTIN - 75119", "stop_name": "PORTE DE PANTIN"}, "geometry": {"type": "Point", "coordinates": [2.396417739827416, 48.89008292652176]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "801ea88821eb5de803fa4c032dc303b918b0d650", "fields": {"departement": "75", "stop_lat": 48.875489129057435, "code_postal": "75110", "stop_lon": 2.3689465790102533, "coord": [48.875489129057435, 2.3689465790102533], "stop_id": 3926434, "stop_desc": "27 RUE JULIETTE DODU - 75110", "stop_name": "GRANGE AUX BELLES - JULIETTE DODU"}, "geometry": {"type": "Point", "coordinates": [2.3689465790102533, 48.875489129057435]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "776300445211241d9147a52d62cbdecb86d7ecbb", "fields": {"departement": "75", "stop_lat": 48.86287390987719, "code_postal": "75103", "stop_lon": 2.354213758372903, "coord": [48.86287390987719, 2.354213758372903], "stop_id": 3926437, "stop_desc": "59 RUE BEAUBOURG - 75103", "stop_name": "GRENIER SAINT-LAZARE - QUARTIER DE L'HORLOGE"}, "geometry": {"type": "Point", "coordinates": [2.354213758372903, 48.86287390987719]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "49f06a6735b3d1d17ec293373f273c5477d8ee39", "fields": {"departement": "75", "stop_lat": 48.85902811573952, "code_postal": "75101", "stop_lon": 2.3469390263467473, "coord": [48.85902811573952, 2.3469390263467473], "stop_id": 3926439, "stop_desc": "108 RUE DE RIVOLI - 75101", "stop_name": "CHATELET"}, "geometry": {"type": "Point", "coordinates": [2.3469390263467473, 48.85902811573952]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e131bd09330a21282c425c033718cbd50561b8ce", "fields": {"departement": "94", "stop_lat": 48.81567175666497, "code_postal": "94037", "stop_lon": 2.350183572948421, "coord": [48.81567175666497, 2.350183572948421], "stop_id": 3970590, "stop_desc": "FACE 35 RUE CHARLES FREROT - 94037", "stop_name": "MAIRIE DE GENTILLY"}, "geometry": {"type": "Point", "coordinates": [2.350183572948421, 48.81567175666497]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e3cc6ae509c8af7c752e07ecc3d6dde88a6a0d7d", "fields": {"departement": "94", "stop_lat": 48.810890968202095, "code_postal": "94003", "stop_lon": 2.3357169635790616, "coord": [48.810890968202095, 2.3357169635790616], "stop_id": 3970598, "stop_desc": "88 AVENUE JEAN JAURES - 94003", "stop_name": "CHAPERON VERT."}, "geometry": {"type": "Point", "coordinates": [2.3357169635790616, 48.810890968202095]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "34caccb9534645637557a7b645837b85c6da78b0", "fields": {"departement": "94", "stop_lat": 48.81045909547389, "code_postal": "94037", "stop_lon": 2.347828091442007, "coord": [48.81045909547389, 2.347828091442007], "stop_id": 3970606, "stop_desc": "FACE 14 R BENSERADE - 94037", "stop_name": "FONDATION VALLEE"}, "geometry": {"type": "Point", "coordinates": [2.347828091442007, 48.81045909547389]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "946e313632fdce7c7bc26536263493a37dc3125c", "fields": {"departement": "94", "stop_lat": 48.81249970053441, "code_postal": "94037", "stop_lon": 2.33272303952671, "coord": [48.81249970053441, 2.33272303952671], "stop_id": 3970610, "stop_desc": "1ERE AVENUE - 94037", "stop_name": "CHAPERON VERT - MARCEL CACHIN"}, "geometry": {"type": "Point", "coordinates": [2.33272303952671, 48.81249970053441]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0ebc9481384ed2f3f613e422807d46e54401f28f", "fields": {"departement": "94", "stop_lat": 48.81320076893865, "code_postal": "94037", "stop_lon": 2.3334034140116247, "coord": [48.81320076893865, 2.3334034140116247], "stop_id": 3970611, "stop_desc": "1ERE AVENUE - 94037", "stop_name": "CHAPERON VERT - MARCEL CACHIN."}, "geometry": {"type": "Point", "coordinates": [2.3334034140116247, 48.81320076893865]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ed98402f815ed4ad2820da835589b946b1188daa", "fields": {"departement": "94", "stop_lat": 48.813829920243066, "code_postal": "94037", "stop_lon": 2.340806597050351, "coord": [48.813829920243066, 2.340806597050351], "stop_id": 3970614, "stop_desc": "FACE 63TER R BENOIT MALON - 94037", "stop_name": "GENTILLY RER - PLATEAU"}, "geometry": {"type": "Point", "coordinates": [2.340806597050351, 48.813829920243066]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "be8cb8786d69ee2b0d48d19b7705ade0e7824129", "fields": {"departement": "93", "stop_lat": 48.91350938022517, "code_postal": "93001", "stop_lon": 2.3825776323771577, "coord": [48.91350938022517, 2.3825776323771577], "stop_id": 3972555, "stop_desc": "3 AVENUE DE LA REPUBLIQUE - 93001", "stop_name": "MAIRIE D'AUBERVILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.3825776323771577, 48.91350938022517]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eab37bc1be64649a374953c35a052d609f254dd8", "fields": {"departement": "93", "stop_lat": 48.9196923244909, "code_postal": "93027", "stop_lon": 2.382855776298006, "coord": [48.9196923244909, 2.382855776298006], "stop_id": 3972557, "stop_desc": "2-4 BD PASTEUR - 93027", "stop_name": "CREVECOEUR"}, "geometry": {"type": "Point", "coordinates": [2.382855776298006, 48.9196923244909]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a9c6a1af0238fcc982dc3993cda40a36dbda3d74", "fields": {"departement": "93", "stop_lat": 48.92638678455641, "code_postal": "93027", "stop_lon": 2.3849347158324132, "coord": [48.92638678455641, 2.3849347158324132], "stop_id": 3972560, "stop_desc": "80-82 BOULEVARD PASTEUR - 93027", "stop_name": "MICHELET"}, "geometry": {"type": "Point", "coordinates": [2.3849347158324132, 48.92638678455641]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7537ef65b7e4e9445af24e9c221716ee8159f674", "fields": {"departement": "93", "stop_lat": 48.93274884950854, "code_postal": "93027", "stop_lon": 2.386550109086291, "coord": [48.93274884950854, 2.386550109086291], "stop_id": 3972566, "stop_desc": "FACE 38 AVENUE ROGER SALENGRO - 93027", "stop_name": "PARC DES SPORTS"}, "geometry": {"type": "Point", "coordinates": [2.386550109086291, 48.93274884950854]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "34376f10572b31bce6fbfe0bea97fd91e927bfa0", "fields": {"departement": "93", "stop_lat": 48.941474563908756, "code_postal": "93027", "stop_lon": 2.387758950668094, "coord": [48.941474563908756, 2.387758950668094], "stop_id": 3972567, "stop_desc": "AV ROGER SALENGRO - 93027", "stop_name": "CITE FLOREAL"}, "geometry": {"type": "Point", "coordinates": [2.387758950668094, 48.941474563908756]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1e83c1a81c6b117e9a95f9b5c738f1973ac342a0", "fields": {"departement": "93", "stop_lat": 48.946274104207006, "code_postal": "93072", "stop_lon": 2.386331044930748, "coord": [48.946274104207006, 2.386331044930748], "stop_id": 3972569, "stop_desc": "FACE 191 BOULEVARD MAXIME GORKI - 93072", "stop_name": "CROIX BLANCHE"}, "geometry": {"type": "Point", "coordinates": [2.386331044930748, 48.946274104207006]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8471bfe94bbe67f4846df80e2b10b9f7b9f59d86", "fields": {"departement": "93", "stop_lat": 48.918901673419974, "code_postal": "93001", "stop_lon": 2.3823232573658975, "coord": [48.918901673419974, 2.3823232573658975], "stop_id": 3972583, "stop_desc": "37-39 BOULEVARD ANATOLE FRANCE - 93001", "stop_name": "CREVECOEUR"}, "geometry": {"type": "Point", "coordinates": [2.3823232573658975, 48.918901673419974]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "913c8c84ce08b6ea7874cd78768a6183d51894db", "fields": {"departement": "93", "stop_lat": 48.90591315073584, "code_postal": "93066", "stop_lon": 2.3580042051464107, "coord": [48.90591315073584, 2.3580042051464107], "stop_id": 4000524, "stop_desc": "89 AVENUE DU PRESIDENT WILSON - 93066", "stop_name": "PROUDHON"}, "geometry": {"type": "Point", "coordinates": [2.3580042051464107, 48.90591315073584]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7dcd218c4bb744f7ab28fa0f0fd03fa3dc2db8c3", "fields": {"departement": "93", "stop_lat": 48.908824842056234, "code_postal": "93066", "stop_lon": 2.3586597951517585, "coord": [48.908824842056234, 2.3586597951517585], "stop_id": 4000525, "stop_desc": "124 AVENUE DU PRESIDENT WILSON - 93066", "stop_name": "EGLISE DE LA PLAINE"}, "geometry": {"type": "Point", "coordinates": [2.3586597951517585, 48.908824842056234]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "48b8f00f5a952dd097384b28515e8f210bf8d4d8", "fields": {"departement": "93", "stop_lat": 48.911386182083085, "code_postal": "93066", "stop_lon": 2.3584699704077345, "coord": [48.911386182083085, 2.3584699704077345], "stop_id": 4000527, "stop_desc": "160 AVENUE DU PRESIDENT WILSON - 93066", "stop_name": "LA MONTJOIE"}, "geometry": {"type": "Point", "coordinates": [2.3584699704077345, 48.911386182083085]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7de130acc918f3bd733c707b21f3833c40badeda", "fields": {"departement": "93", "stop_lat": 48.91447790510442, "code_postal": "93066", "stop_lon": 2.35738041119972, "coord": [48.91447790510442, 2.35738041119972], "stop_id": 4000530, "stop_desc": "221 AVENUE DU PRESIDENT WILSON - 93066", "stop_name": "PONT DE SOISSONS"}, "geometry": {"type": "Point", "coordinates": [2.35738041119972, 48.91447790510442]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a271f1cb875b24e1580681f2a8c60c0cefa5be0a", "fields": {"departement": "93", "stop_lat": 48.91910535695853, "code_postal": "93066", "stop_lon": 2.3618959025746076, "coord": [48.91910535695853, 2.3618959025746076], "stop_id": 4000533, "stop_desc": "AVENUE DU STADE DE FRANCE - 93066", "stop_name": "LA PLAINE - STADE DE FRANCE RER"}, "geometry": {"type": "Point", "coordinates": [2.3618959025746076, 48.91910535695853]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "76e7eb208ee107e77a5a4914f1ddb3a760d864c7", "fields": {"departement": "93", "stop_lat": 48.918413404869824, "code_postal": "93066", "stop_lon": 2.3616773917397325, "coord": [48.918413404869824, 2.3616773917397325], "stop_id": 4000534, "stop_desc": "AVENUE DU STADE DE FRANCE - 93066", "stop_name": "LA PLAINE - STADE DE FRANCE RER"}, "geometry": {"type": "Point", "coordinates": [2.3616773917397325, 48.918413404869824]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "302982eb1333960c273ed6941512509e02c8e040", "fields": {"departement": "93", "stop_lat": 48.91837810158188, "code_postal": "93066", "stop_lon": 2.358295561671536, "coord": [48.91837810158188, 2.358295561671536], "stop_id": 4000535, "stop_desc": "3 RUE FRANCIS DE PRESSENSE - 93066", "stop_name": "WILSON - DE PRESSENSE"}, "geometry": {"type": "Point", "coordinates": [2.358295561671536, 48.91837810158188]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "911981ce42b8f0325df5ad82e4d0b3d1e35d4cb9", "fields": {"departement": "93", "stop_lat": 48.92102950975254, "code_postal": "93066", "stop_lon": 2.3568102011449907, "coord": [48.92102950975254, 2.3568102011449907], "stop_id": 4000538, "stop_desc": "299 AVENUE DU PRESIDENT WILSON - 93066", "stop_name": "CORNILLON SUD"}, "geometry": {"type": "Point", "coordinates": [2.3568102011449907, 48.92102950975254]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4f0fbf6ddffa379c35ddb32d9ac05d6fe22fe3dc", "fields": {"departement": "93", "stop_lat": 48.93257758456558, "code_postal": "93066", "stop_lon": 2.3574692861766655, "coord": [48.93257758456558, 2.3574692861766655], "stop_id": 4000544, "stop_desc": "27 RUE DE LA LEGION D'HONNEUR - 93066", "stop_name": "PLACE LANNE"}, "geometry": {"type": "Point", "coordinates": [2.3574692861766655, 48.93257758456558]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "368ca1d4545844e3bcf6049ab01a6ada60cab3c2", "fields": {"departement": "93", "stop_lat": 48.93691774414246, "code_postal": "93066", "stop_lon": 2.3601855847053614, "coord": [48.93691774414246, 2.3601855847053614], "stop_id": 4000547, "stop_desc": "RUE JEAN JAURES - 93066", "stop_name": "BASILIQUE DE SAINT-DENIS - HOTEL DE VILLE-METRO-TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.3601855847053614, 48.93691774414246]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bd75142ecec93708f3103816cbb9a1af860385ae", "fields": {"departement": "93", "stop_lat": 48.93616183950818, "code_postal": "93066", "stop_lon": 2.3649459686549386, "coord": [48.93616183950818, 2.3649459686549386], "stop_id": 4000549, "stop_desc": "45 RUE DE STRASBOURG - 93066", "stop_name": "CIMETIERE DE SAINT-DENIS-TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.3649459686549386, 48.93616183950818]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "566b450e2c53cf465b388e5a56bb75189d8aa95c", "fields": {"departement": "93", "stop_lat": 48.93715740531118, "code_postal": "93066", "stop_lon": 2.3724355695503774, "coord": [48.93715740531118, 2.3724355695503774], "stop_id": 4000552, "stop_desc": "AVENUE ROMAIN ROLLAND - 93066", "stop_name": "MARVILLE - HOPITAL DELAFONTAINE"}, "geometry": {"type": "Point", "coordinates": [2.3724355695503774, 48.93715740531118]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4c0cd82ad48aeb996f1981319fdbd2eb88f10999", "fields": {"departement": "93", "stop_lat": 48.9373910790831, "code_postal": "93066", "stop_lon": 2.3723811629087996, "coord": [48.9373910790831, 2.3723811629087996], "stop_id": 4000553, "stop_desc": "AVENUE ROMAIN ROLLAND - 93066", "stop_name": "MARVILLE - HOPITAL DELAFONTAINE"}, "geometry": {"type": "Point", "coordinates": [2.3723811629087996, 48.9373910790831]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d5c7e752536ca47b873d6a359d79e0f4b11e97b0", "fields": {"departement": "93", "stop_lat": 48.93808164564252, "code_postal": "93066", "stop_lon": 2.3769106208176414, "coord": [48.93808164564252, 2.3769106208176414], "stop_id": 4000554, "stop_desc": "42 AVENUE ROMAIN ROLLAND - 93066", "stop_name": "ROMAIN ROLLAND"}, "geometry": {"type": "Point", "coordinates": [2.3769106208176414, 48.93808164564252]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5d9b95b9ce037401f66b054c210f03fbf929332d", "fields": {"departement": "93", "stop_lat": 48.951375607170604, "code_postal": "93072", "stop_lon": 2.393090175876201, "coord": [48.951375607170604, 2.393090175876201], "stop_id": 4000569, "stop_desc": "FACE 2 RUE DU CHARME - 93072", "stop_name": "MOULIN NEUF"}, "geometry": {"type": "Point", "coordinates": [2.393090175876201, 48.951375607170604]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d3c9dc935cad3709c1332da63601b9ff2fbbd104", "fields": {"departement": "95", "stop_lat": 48.97745619840204, "code_postal": "95268", "stop_lon": 2.390046640216754, "coord": [48.97745619840204, 2.390046640216754], "stop_id": 4008109, "stop_desc": "PISTE GARE ROUTIERE - 95268", "stop_name": "GARGES - SARCELLES RER"}, "geometry": {"type": "Point", "coordinates": [2.390046640216754, 48.97745619840204]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7068243aa9dfbaf660746a58e51114d8803984c9", "fields": {"departement": "95", "stop_lat": 48.99121479911375, "code_postal": "95585", "stop_lon": 2.3893642498765733, "coord": [48.99121479911375, 2.3893642498765733], "stop_id": 4008117, "stop_desc": "RUE DU FER A CHEVAL - 95585", "stop_name": "RUE DU FER A CHEVAL"}, "geometry": {"type": "Point", "coordinates": [2.3893642498765733, 48.99121479911375]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fa2f70a195ce5f14eafee6de43f59f1668d571bc", "fields": {"departement": "95", "stop_lat": 49.00188307596302, "code_postal": "95680", "stop_lon": 2.3859604085289416, "coord": [49.00188307596302, 2.3859604085289416], "stop_id": 4008127, "stop_desc": "AVENUE DES ERABLES - 95680", "stop_name": "AVENUE DES ERABLES"}, "geometry": {"type": "Point", "coordinates": [2.3859604085289416, 49.00188307596302]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "28d89427a61d2bf74162f1a93ef29f67fd1a1656", "fields": {"departement": "95", "stop_lat": 49.00400973003227, "code_postal": "95680", "stop_lon": 2.393065053974064, "coord": [49.00400973003227, 2.393065053974064], "stop_id": 4008131, "stop_desc": "BOULEVARD SALVADOR ALLENDE - 95680", "stop_name": "PLACE DE LA TOLINETTE"}, "geometry": {"type": "Point", "coordinates": [2.393065053974064, 49.00400973003227]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d5991682bd4a6f825979feea5bc6580ccc16451a", "fields": {"departement": "95", "stop_lat": 49.00118946263233, "code_postal": "95680", "stop_lon": 2.4073757872421946, "coord": [49.00118946263233, 2.4073757872421946], "stop_id": 4008138, "stop_desc": "AVENUE PIERRE SEMARD - 95680", "stop_name": "LOUIS PERREIN"}, "geometry": {"type": "Point", "coordinates": [2.4073757872421946, 49.00118946263233]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ceddb6d5e4930c049b0e301c160ae8e6ca40730b", "fields": {"departement": "95", "stop_lat": 49.00136914941499, "code_postal": "95680", "stop_lon": 2.4074443220529553, "coord": [49.00136914941499, 2.4074443220529553], "stop_id": 4008139, "stop_desc": "AVENUE PIERRE SEMARD - 95680", "stop_name": "LOUIS PERREIN"}, "geometry": {"type": "Point", "coordinates": [2.4074443220529553, 49.00136914941499]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a28ffefc795c8ef27efe3f4173da44eb3da0e86d", "fields": {"departement": "95", "stop_lat": 48.99924450509074, "code_postal": "95680", "stop_lon": 2.41373762523083, "coord": [48.99924450509074, 2.41373762523083], "stop_id": 4008141, "stop_desc": "105 AVENUE PIERRE SEMARD - 95680", "stop_name": "LES CARREAUX"}, "geometry": {"type": "Point", "coordinates": [2.41373762523083, 48.99924450509074]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a75bd3e9536e604342c838634dc87b237f3f1ecd", "fields": {"departement": "75", "stop_lat": 48.87081035686259, "code_postal": "75108", "stop_lon": 2.325320203744418, "coord": [48.87081035686259, 2.325320203744418], "stop_id": 4008206, "stop_desc": "30 PLACE DE LA MADELEINE - 75108", "stop_name": "MADELEINE - VIGNON"}, "geometry": {"type": "Point", "coordinates": [2.325320203744418, 48.87081035686259]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3389851e7000096ae78f92cbb01dd278fecbc464", "fields": {"departement": "75", "stop_lat": 48.86840950745805, "code_postal": "75108", "stop_lon": 2.316383935217588, "coord": [48.86840950745805, 2.316383935217588], "stop_id": 4008209, "stop_desc": "24 AVENUE GABRIEL - 75108", "stop_name": "GRAND PALAIS"}, "geometry": {"type": "Point", "coordinates": [2.316383935217588, 48.86840950745805]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3927b6b907b7163fc5d80cd3f1519814f6c9e7d5", "fields": {"departement": "75", "stop_lat": 48.86980180761744, "code_postal": "75108", "stop_lon": 2.312527904834282, "coord": [48.86980180761744, 2.312527904834282], "stop_id": 4008210, "stop_desc": "48 AV GABRIEL - 75108", "stop_name": "ROND-POINT DES CHAMPS-ELYSEES"}, "geometry": {"type": "Point", "coordinates": [2.312527904834282, 48.86980180761744]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4dfbe06965592982f3fa517d3bc582163b23d3f9", "fields": {"departement": "75", "stop_lat": 48.875121390460386, "code_postal": "75108", "stop_lon": 2.30847875269421, "coord": [48.875121390460386, 2.30847875269421], "stop_id": 4008216, "stop_desc": "174 BOULEVARD HAUSSMANN - 75108", "stop_name": "HAUSSMANN - COURCELLES"}, "geometry": {"type": "Point", "coordinates": [2.30847875269421, 48.875121390460386]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ebfae8434b1759d0c06c25277bb69d917dcc6ecd", "fields": {"departement": "75", "stop_lat": 48.87486965005481, "code_postal": "75108", "stop_lon": 2.3080837702852697, "coord": [48.87486965005481, 2.3080837702852697], "stop_id": 4008217, "stop_desc": "165 BOULEVARD HAUSSMANN - 75108", "stop_name": "HAUSSMANN - COURCELLES"}, "geometry": {"type": "Point", "coordinates": [2.3080837702852697, 48.87486965005481]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7169c0739ecfeee029f315e3bd87992aba85bb99", "fields": {"departement": "75", "stop_lat": 48.87458037356659, "code_postal": "75108", "stop_lon": 2.3018710127789976, "coord": [48.87458037356659, 2.3018710127789976], "stop_id": 4008220, "stop_desc": "FACE 19 AV DE FRIEDLAND - 75108", "stop_name": "BALZAC"}, "geometry": {"type": "Point", "coordinates": [2.3018710127789976, 48.87458037356659]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "61a53d56b6c83208e8d4dfb6afdc83aa8370c9fc", "fields": {"departement": "75", "stop_lat": 48.87379677721912, "code_postal": "75108", "stop_lon": 2.2965443212582546, "coord": [48.87379677721912, 2.2965443212582546], "stop_id": 4008223, "stop_desc": "47 AVENUE DE FRIEDLAND - 75108", "stop_name": "CHARLES DE GAULLE - ETOILE - FRIEDLAND"}, "geometry": {"type": "Point", "coordinates": [2.2965443212582546, 48.87379677721912]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2dce26904b1552d46b79f6b7db3300d7b3a3e645", "fields": {"departement": "75", "stop_lat": 48.86355182123114, "code_postal": "75116", "stop_lon": 2.2768278103580526, "coord": [48.86355182123114, 2.2768278103580526], "stop_id": 4008235, "stop_desc": "73 RUE DE LA POMPE - 75116", "stop_name": "POMPE - MAIRIE DU 16EME"}, "geometry": {"type": "Point", "coordinates": [2.2768278103580526, 48.86355182123114]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d755b14ab834ccd63697e90ffb58d788ce8393c4", "fields": {"departement": "75", "stop_lat": 48.84576235879368, "code_postal": "75116", "stop_lon": 2.256150295891413, "coord": [48.84576235879368, 2.256150295891413], "stop_id": 4008253, "stop_desc": "AVENUE DU GENERAL SARRAIL - 75116", "stop_name": "PORTE MOLITOR"}, "geometry": {"type": "Point", "coordinates": [2.256150295891413, 48.84576235879368]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3b1c45eb90b672f6ef9319600e19836d4edab52e", "fields": {"departement": "92", "stop_lat": 48.84109238684097, "code_postal": "92012", "stop_lon": 2.2270056560618907, "coord": [48.84109238684097, 2.2270056560618907], "stop_id": 4008265, "stop_desc": "12-14 AV DU MARECHAL DE LATTRE DE TASSIGNY - 92012", "stop_name": "PONT DE SAINT-CLOUD - ALBERT KAHN"}, "geometry": {"type": "Point", "coordinates": [2.2270056560618907, 48.84109238684097]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "da2f4abc061a69837fda31f3e1f64657659b15df", "fields": {"departement": "92", "stop_lat": 48.843119375874195, "code_postal": "92064", "stop_lon": 2.2225623450036838, "coord": [48.843119375874195, 2.2225623450036838], "stop_id": 4008267, "stop_desc": "QUAI DU PRESIDENT CARNOT - 92064", "stop_name": "PARC DE SAINT-CLOUD"}, "geometry": {"type": "Point", "coordinates": [2.2225623450036838, 48.843119375874195]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "061c3503a3750a12f146d335c9784d4424824342", "fields": {"departement": "75", "stop_lat": 48.873256451982336, "code_postal": "75116", "stop_lon": 2.2934792379538336, "coord": [48.873256451982336, 2.2934792379538336], "stop_id": 4008286, "stop_desc": "2 AVENUE VICTOR HUGO - 75116", "stop_name": "CHARLES DE GAULLE - ETOILE - VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.2934792379538336, 48.873256451982336]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "292cb41e3112e15549bfb9879f22148c1b0db3d9", "fields": {"departement": "75", "stop_lat": 48.87139441806429, "code_postal": "75116", "stop_lon": 2.2891756294490975, "coord": [48.87139441806429, 2.2891756294490975], "stop_id": 4008287, "stop_desc": "44 AVENUE VICTOR HUGO - 75116", "stop_name": "VICTOR HUGO - PAUL VALERY"}, "geometry": {"type": "Point", "coordinates": [2.2891756294490975, 48.87139441806429]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "321d6fe2b2987f6d2719505d42622defc76dd1d0", "fields": {"departement": "75", "stop_lat": 48.86982026544612, "code_postal": "75116", "stop_lon": 2.2858938072772896, "coord": [48.86982026544612, 2.2858938072772896], "stop_id": 4008290, "stop_desc": "89 AVENUE VICTOR HUGO - 75116", "stop_name": "VICTOR HUGO - POINCARE"}, "geometry": {"type": "Point", "coordinates": [2.2858938072772896, 48.86982026544612]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "46b94baa0e04030f00332f33b2c505964bd30719", "fields": {"departement": "75", "stop_lat": 48.86179868807939, "code_postal": "75116", "stop_lon": 2.275672028147311, "coord": [48.86179868807939, 2.275672028147311], "stop_id": 4008298, "stop_desc": "43 RUE DE LA POMPE - 75116", "stop_name": "NICOLO - JEAN RICHEPIN"}, "geometry": {"type": "Point", "coordinates": [2.275672028147311, 48.86179868807939]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e4f61914936325d0042317e42b75aaef81d122ac", "fields": {"departement": "75", "stop_lat": 48.8496974991679, "code_postal": "75116", "stop_lon": 2.2682099518666563, "coord": [48.8496974991679, 2.2682099518666563], "stop_id": 4008305, "stop_desc": "92 RUE LA FONTAINE - 75116", "stop_name": "GEORGE SAND - LA FONTAINE"}, "geometry": {"type": "Point", "coordinates": [2.2682099518666563, 48.8496974991679]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1d1171fd8731001a8c5834da7fe74473f1829084", "fields": {"departement": "75", "stop_lat": 48.84897697246938, "code_postal": "75116", "stop_lon": 2.265623471087728, "coord": [48.84897697246938, 2.265623471087728], "stop_id": 4008306, "stop_desc": "4 RUE POUSSIN - 75116", "stop_name": "MOZART - LA FONTAINE"}, "geometry": {"type": "Point", "coordinates": [2.265623471087728, 48.84897697246938]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8c72a429ab4000d03f0acf264a71429cc7b5e61c", "fields": {"departement": "75", "stop_lat": 48.84780825353484, "code_postal": "75116", "stop_lon": 2.2650531374112775, "coord": [48.84780825353484, 2.2650531374112775], "stop_id": 4008308, "stop_desc": "51 RUE D'AUTEUIL - 75116", "stop_name": "MICHEL-ANGE - AUTEUIL"}, "geometry": {"type": "Point", "coordinates": [2.2650531374112775, 48.84780825353484]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "02f2431d792ea78f1c15f82ce07ef87795bf9a7e", "fields": {"departement": "75", "stop_lat": 48.84863049917101, "code_postal": "75116", "stop_lon": 2.2578208274066185, "coord": [48.84863049917101, 2.2578208274066185], "stop_id": 4008311, "stop_desc": "PL DE LA PORTE D'AUTEUIL - 75116", "stop_name": "PORTE D'AUTEUIL"}, "geometry": {"type": "Point", "coordinates": [2.2578208274066185, 48.84863049917101]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2fd8849a086b68e9de603376c8dd4ed601240585", "fields": {"departement": "75", "stop_lat": 48.84797276856627, "code_postal": "75116", "stop_lon": 2.269723827753954, "coord": [48.84797276856627, 2.269723827753954], "stop_id": 4008313, "stop_desc": "55-57 BIS AVENUE THEOPHILE GAUTIER - 75116", "stop_name": "EGLISE D'AUTEUIL"}, "geometry": {"type": "Point", "coordinates": [2.269723827753954, 48.84797276856627]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9f7af00b9b475eb9c3dde1735e0e491bea86c973", "fields": {"departement": "75", "stop_lat": 48.84784140305659, "code_postal": "75116", "stop_lon": 2.2605728328261545, "coord": [48.84784140305659, 2.2605728328261545], "stop_id": 4008371, "stop_desc": "77 RUE D'AUTEUIL - 75116", "stop_name": "GARE D'AUTEUIL"}, "geometry": {"type": "Point", "coordinates": [2.2605728328261545, 48.84784140305659]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "da55a76aa666e2f3ff0008fe71f1a0ac09bbb9c8", "fields": {"departement": "75", "stop_lat": 48.84797276856627, "code_postal": "75116", "stop_lon": 2.269723827753954, "coord": [48.84797276856627, 2.269723827753954], "stop_id": 4008373, "stop_desc": "55-57 BIS AVENUE THEOPHILE GAUTIER - 75116", "stop_name": "EGLISE D'AUTEUIL"}, "geometry": {"type": "Point", "coordinates": [2.269723827753954, 48.84797276856627]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f4d9c6404703b664212a4b3253c48fc889c2489d", "fields": {"departement": "75", "stop_lat": 48.85352744113881, "code_postal": "75116", "stop_lon": 2.2704520379538953, "coord": [48.85352744113881, 2.2704520379538953], "stop_id": 4008376, "stop_desc": "2 RUE ADRIEN EBRARD - 75116", "stop_name": "RODIN"}, "geometry": {"type": "Point", "coordinates": [2.2704520379538953, 48.85352744113881]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "edfbc9f3705595abbde0550b3690beba9f1a8040", "fields": {"departement": "75", "stop_lat": 48.86367781678552, "code_postal": "75116", "stop_lon": 2.2771682126291473, "coord": [48.86367781678552, 2.2771682126291473], "stop_id": 4008380, "stop_desc": "78-80 RUE DE LA POMPE - 75116", "stop_name": "POMPE - MAIRIE DU 16EME"}, "geometry": {"type": "Point", "coordinates": [2.2771682126291473, 48.86367781678552]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "968d87c67ba7d50e18ed83ac8ce1b1acb0903011", "fields": {"departement": "75", "stop_lat": 48.87508653842288, "code_postal": "75108", "stop_lon": 2.313451881624046, "coord": [48.87508653842288, 2.313451881624046], "stop_id": 4008841, "stop_desc": "127 BOULEVARD HAUSSMANN - 75108", "stop_name": "HAUSSMANN - MIROMESNIL"}, "geometry": {"type": "Point", "coordinates": [2.313451881624046, 48.87508653842288]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "113b68bb63f1b29807b8cb12bf3b0bb338d2c01e", "fields": {"departement": "75", "stop_lat": 48.8749496829563, "code_postal": "75108", "stop_lon": 2.304786494112315, "coord": [48.8749496829563, 2.304786494112315], "stop_id": 4008844, "stop_desc": "6 AVENUE DE FRIEDLAND - 75108", "stop_name": "FRIEDLAND - HAUSSMANN"}, "geometry": {"type": "Point", "coordinates": [2.304786494112315, 48.8749496829563]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8bb511b47912a8ceb820b88c72bc43caf0809302", "fields": {"departement": "75", "stop_lat": 48.87442766603857, "code_postal": "75108", "stop_lon": 2.30212998791386, "coord": [48.87442766603857, 2.30212998791386], "stop_id": 4008847, "stop_desc": "21 AVENUE DE FRIEDLAND - 75108", "stop_name": "BALZAC"}, "geometry": {"type": "Point", "coordinates": [2.30212998791386, 48.87442766603857]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a7cef4600a97da4ce8485fc272412cf54e98e24a", "fields": {"departement": "75", "stop_lat": 48.87401247719477, "code_postal": "75108", "stop_lon": 2.296557776569808, "coord": [48.87401247719477, 2.296557776569808], "stop_id": 4008848, "stop_desc": "AVENUE DE FRIEDLAND - 75108", "stop_name": "CHARLES DE GAULLE - ETOILE - FRIEDLAND"}, "geometry": {"type": "Point", "coordinates": [2.296557776569808, 48.87401247719477]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "11f03fea83d22d79b389940608c00edb2d97527a", "fields": {"departement": "75", "stop_lat": 48.869517082474346, "code_postal": "75116", "stop_lon": 2.2917658343907847, "coord": [48.869517082474346, 2.2917658343907847], "stop_id": 4008852, "stop_desc": "50 AVENUE KLEBER - 75116", "stop_name": "KLEBER - PAUL VALERY"}, "geometry": {"type": "Point", "coordinates": [2.2917658343907847, 48.869517082474346]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f4322278e467e68266e2d07b3cf8fc61577eaa9d", "fields": {"departement": "94", "stop_lat": 48.7984604738998, "code_postal": "94016", "stop_lon": 2.327921752141985, "coord": [48.7984604738998, 2.327921752141985], "stop_id": 2097, "stop_desc": "Rue de la Gare - 94016", "stop_name": "Arcueil-Cachan"}, "geometry": {"type": "Point", "coordinates": [2.327921752141985, 48.7984604738998]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "137b203516dac3b82d94847356053efb037c6970", "fields": {"departement": "75", "stop_lat": 48.87260817994105, "code_postal": "75109", "stop_lon": 2.3297068164482293, "coord": [48.87260817994105, 2.3297068164482293], "stop_id": 2102, "stop_desc": "Grands Magasins - 75109", "stop_name": "Auber"}, "geometry": {"type": "Point", "coordinates": [2.3297068164482293, 48.87260817994105]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a0ade884030cdfce07663d4aedabb1b5eeb5e631", "fields": {"departement": "93", "stop_lat": 48.862280986339, "code_postal": "93048", "stop_lon": 2.441827679127713, "coord": [48.862280986339, 2.441827679127713], "stop_id": 2269, "stop_desc": "Rouget de Lisle (1 boulevard) - 93048", "stop_name": "Mairie de Montreuil"}, "geometry": {"type": "Point", "coordinates": [2.441827679127713, 48.862280986339]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dc8dc7f7c3e3f71b39c91fada052263335fbdd0a", "fields": {"departement": "75", "stop_lat": 48.8526004024001, "code_postal": "75120", "stop_lon": 2.4063849895661393, "coord": [48.8526004024001, 2.4063849895661393], "stop_id": 2278, "stop_desc": "Pyr\u00e9n\u00e9es (67 bis rue des, en face) - 75120", "stop_name": "Mara\u00eechers"}, "geometry": {"type": "Point", "coordinates": [2.4063849895661393, 48.8526004024001]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f48c712722ec714c6512271b90c1185884dcfabe", "fields": {"departement": "91", "stop_lat": 48.69506073208291, "code_postal": "91122", "stop_lon": 2.1526641367708073, "coord": [48.69506073208291, 2.1526641367708073], "stop_id": 2239, "stop_desc": "Hacquini\u00e8re (25 rue de la) - 91122", "stop_name": "La Hacquini\u00e8re"}, "geometry": {"type": "Point", "coordinates": [2.1526641367708073, 48.69506073208291]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1bbba22a176df17a20a94386dfc4476fbf125aec", "fields": {"departement": "77", "stop_lat": 49.003726512420066, "code_postal": "77291", "stop_lon": 2.577883018028986, "coord": [49.003726512420066, 2.577883018028986], "stop_id": 2224149, "stop_desc": "AEROPORT CHARLES DE GAULLE - 77291", "stop_name": "TERMINAL-2E"}, "geometry": {"type": "Point", "coordinates": [2.577883018028986, 49.003726512420066]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3e02c180cf1d552e3f978da4b7240086f5181f18", "fields": {"departement": "93", "stop_lat": 49.00432424604342, "code_postal": "93073", "stop_lon": 2.5663848634793127, "coord": [49.00432424604342, 2.5663848634793127], "stop_id": 2224151, "stop_desc": "AEROPORT CHARLES DE GAULLE - 93073", "stop_name": "TERMINAL-2D"}, "geometry": {"type": "Point", "coordinates": [2.5663848634793127, 49.00432424604342]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "23e5da065ab48b845e6d415a26e3c25d79965f6c", "fields": {"departement": "92", "stop_lat": 48.8224426939998, "code_postal": "92020", "stop_lon": 2.2979321053287274, "coord": [48.8224426939998, 2.2979321053287274], "stop_id": 2275, "stop_desc": "Vanves - 92020", "stop_name": "Malakoff-Plateau de Vanves"}, "geometry": {"type": "Point", "coordinates": [2.2979321053287274, 48.8224426939998]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8aae6280fbd3f5b05400b4c6c4e6f1a2f7a517dd", "fields": {"departement": "92", "stop_lat": 48.762144791530275, "code_postal": "92002", "stop_lon": 2.3041636149992573, "coord": [48.762144791530275, 2.3041636149992573], "stop_id": 2237, "stop_desc": "Velpeau (11 rue) - 92002", "stop_name": "La Croix-de-Berny"}, "geometry": {"type": "Point", "coordinates": [2.3041636149992573, 48.762144791530275]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c4bafc256a15305022330c3a6914ac5e71a74e02", "fields": {"departement": "92", "stop_lat": 48.810283363510756, "code_postal": "92020", "stop_lon": 2.3012888709759522, "coord": [48.810283363510756, 2.3012888709759522], "stop_id": 2224, "stop_desc": "Montrouge - 92020", "stop_name": "Ch\u00e2tillon Montrouge"}, "geometry": {"type": "Point", "coordinates": [2.3012888709759522, 48.810283363510756]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0ccaaae57a3826b856389e337c7c6d8100908677", "fields": {"departement": "92", "stop_lat": 48.754494893921134, "code_postal": "92002", "stop_lon": 2.3007701500662883, "coord": [48.754494893921134, 2.3007701500662883], "stop_id": 22789, "stop_desc": "rue Pierre Brossolette - 92002", "stop_name": "Antony"}, "geometry": {"type": "Point", "coordinates": [2.3007701500662883, 48.754494893921134]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b71d3047f7496b4c16552aca305fc4fdfb5e9f7d", "fields": {"departement": "75", "stop_lat": 48.8459684322046, "code_postal": "75105", "stop_lon": 2.3548073926942186, "coord": [48.8459684322046, 2.3548073926942186], "stop_id": 2232, "stop_desc": "Lin\u00e9 (39 rue) - 75105", "stop_name": "Jussieu"}, "geometry": {"type": "Point", "coordinates": [2.3548073926942186, 48.8459684322046]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "41bc098f7f57f0c2eaf8c20b96136588c9d3cab3", "fields": {"departement": "75", "stop_lat": 48.84478304833005, "code_postal": "75106", "stop_lon": 2.3284444832927207, "coord": [48.84478304833005, 2.3284444832927207], "stop_id": 2309, "stop_desc": "Raspail (terre-plein face au 112 boulevard, 123 bd Raspail/35 r. N-D des Champs) - 75106", "stop_name": "Notre-Dame des Champs"}, "geometry": {"type": "Point", "coordinates": [2.3284444832927207, 48.84478304833005]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8b08f1cf89688b692949a8a186eca3c657022ac5", "fields": {"departement": "75", "stop_lat": 48.85550440300199, "code_postal": "75116", "stop_lon": 2.269959178255765, "coord": [48.85550440300199, 2.269959178255765], "stop_id": 2440, "stop_desc": "Mozart (48 avenue, angle avec le 97 rue de Ranelagh) - 75116", "stop_name": "Ranelagh"}, "geometry": {"type": "Point", "coordinates": [2.269959178255765, 48.85550440300199]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6db4144b954275ed30d2d8e9b2d3df97f242e8bb", "fields": {"departement": "75", "stop_lat": 48.883203999876585, "code_postal": "75109", "stop_lon": 2.3272660246411383, "coord": [48.883203999876585, 2.3272660246411383], "stop_id": 2406, "stop_desc": "Clichy (terre-plein face au 7 place de) - 75109", "stop_name": "Place de Clichy"}, "geometry": {"type": "Point", "coordinates": [2.3272660246411383, 48.883203999876585]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aa4f757b408fbfe69e346e7b0fa0f49b7b33a200", "fields": {"departement": "75", "stop_lat": 48.838878378565504, "code_postal": "75114", "stop_lon": 2.330678419288263, "coord": [48.838878378565504, 2.330678419288263], "stop_id": 2409, "stop_desc": "Raspail (233 boulevard, 35 rue Campagne Premi\u00e8re) - 75114", "stop_name": "Raspail"}, "geometry": {"type": "Point", "coordinates": [2.330678419288263, 48.838878378565504]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "75542f17456e18c7223af6be9d2f3072cf08ab5b", "fields": {"departement": "75", "stop_lat": 48.89797017040717, "code_postal": "75118", "stop_lon": 2.3439883834332904, "coord": [48.89797017040717, 2.3439883834332904], "stop_id": 2420, "stop_desc": "Ornano (82 boulevard) - 75118", "stop_name": "Porte de Clignancourt"}, "geometry": {"type": "Point", "coordinates": [2.3439883834332904, 48.89797017040717]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dd40f24b61336742b913a5092d0e334253ee3eac", "fields": {"departement": "91", "stop_lat": 48.69760164693814, "code_postal": "91471", "stop_lon": 2.182079748545582, "coord": [48.69760164693814, 2.182079748545582], "stop_id": 2381, "stop_desc": "Facult\u00e9 des Sciences - 91471", "stop_name": "Orsay-Ville"}, "geometry": {"type": "Point", "coordinates": [2.182079748545582, 48.69760164693814]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5960f3302a670b4541cc4170f8fceeb2bcad8f22", "fields": {"departement": "75", "stop_lat": 48.84701184016864, "code_postal": "75106", "stop_lon": 2.327055111355132, "coord": [48.84701184016864, 2.327055111355132], "stop_id": 2442, "stop_desc": "Rue de Rennes - 75106", "stop_name": "Saint-Placide"}, "geometry": {"type": "Point", "coordinates": [2.327055111355132, 48.84701184016864]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "375c38ff7c6205090b8b9dcfac79f0ba1db09c78", "fields": {"departement": "75", "stop_lat": 48.88242252841757, "code_postal": "75118", "stop_lon": 2.337254682101535, "coord": [48.88242252841757, 2.337254682101535], "stop_id": 2401, "stop_desc": "Clichy (26 boulevard de) - 75118", "stop_name": "Pigalle"}, "geometry": {"type": "Point", "coordinates": [2.337254682101535, 48.88242252841757]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "98e99baf4871acb20238f3b555e7d77c5c96247b", "fields": {"departement": "91", "stop_lat": 48.71791943671647, "code_postal": "91477", "stop_lon": 2.246501416326464, "coord": [48.71791943671647, 2.246501416326464], "stop_id": 2385, "stop_desc": "Gare (place de la) - 91477", "stop_name": "Palaiseau"}, "geometry": {"type": "Point", "coordinates": [2.246501416326464, 48.71791943671647]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2f6f7ace9fbca17a4d1b9f0a0be2f0499b12c11c", "fields": {"departement": "93", "stop_lat": 49.01050190483983, "code_postal": "93073", "stop_lon": 2.5594862673614744, "coord": [49.01050190483983, 2.5594862673614744], "stop_id": 2224153, "stop_desc": "AEROPORT CHARLES DE GAULLE - 93073", "stop_name": "AEROPORT CHARLES DE GAULLE (T3-ROISSYPOLE)"}, "geometry": {"type": "Point", "coordinates": [2.5594862673614744, 49.01050190483983]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a937ac8f3ae02d0dc3c38016e636842c03c5b6be", "fields": {"departement": "75", "stop_lat": 48.832881288678834, "code_postal": "75113", "stop_lon": 2.3619094080161975, "coord": [48.832881288678834, 2.3619094080161975], "stop_id": 2303, "stop_desc": "Vincent Auriol (terre-plein face au 124/143 boulevard) - 75113", "stop_name": "Nationale"}, "geometry": {"type": "Point", "coordinates": [2.3619094080161975, 48.832881288678834]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "de1e0e2eb15abc63043262a257c244b394b46e3d", "fields": {"departement": "77", "stop_lat": 48.83907532767992, "code_postal": "77258", "stop_lon": 2.6338690555739257, "coord": [48.83907532767992, 2.6338690555739257], "stop_id": 2326, "stop_desc": "Johan Scarron (rue, quartier du Mandinet Lognes) - 77258", "stop_name": "Lognes"}, "geometry": {"type": "Point", "coordinates": [2.6338690555739257, 48.83907532767992]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "55b696b51492b11e007161e7eeee409ecae1bbf6", "fields": {"departement": "75", "stop_lat": 48.84596388048408, "code_postal": "75115", "stop_lon": 2.2778151263537714, "coord": [48.84596388048408, 2.2778151263537714], "stop_id": 2299, "stop_desc": "Rue de la Convention - 75115", "stop_name": "Javel-Andr\u00e9-Citroen"}, "geometry": {"type": "Point", "coordinates": [2.2778151263537714, 48.84596388048408]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e958dab4d8f878c639d2da5774318c26bb7c29ec", "fields": {"departement": "75", "stop_lat": 48.89160682271851, "code_postal": "75118", "stop_lon": 2.349548310988923, "coord": [48.89160682271851, 2.349548310988923], "stop_id": 2279, "stop_desc": "Poissonniers (69 rue des) - 75118", "stop_name": "Marcadet-Poissonniers"}, "geometry": {"type": "Point", "coordinates": [2.349548310988923, 48.89160682271851]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "24ecfaf00289995eb7f1fbb2b66a55fe79ff36f4", "fields": {"departement": "77", "stop_lat": 48.86849697024026, "code_postal": "77111", "stop_lon": 2.7822597305629526, "coord": [48.86849697024026, 2.7822597305629526], "stop_id": 2281, "stop_desc": "Parc Disneyland - 77111", "stop_name": "Marne-la-Vall\u00e9e Chessy"}, "geometry": {"type": "Point", "coordinates": [2.7822597305629526, 48.86849697024026]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7abdd12332bc856a349395e086ad68b4bb6671b1", "fields": {"departement": "78", "stop_lat": 48.89009570633796, "code_postal": "78650", "stop_lon": 2.1343746143232596, "coord": [48.89009570633796, 2.1343746143232596], "stop_id": 2317, "stop_desc": "Maurice Berteaux (rue) - 78650", "stop_name": "Le V\u00e9sinet-Centre"}, "geometry": {"type": "Point", "coordinates": [2.1343746143232596, 48.89009570633796]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c845e6e8915abe59d461e05884b57e3e4f59776b", "fields": {"departement": "94", "stop_lat": 48.821069678359656, "code_postal": "94042", "stop_lon": 2.4638349563053548, "coord": [48.821069678359656, 2.4638349563053548], "stop_id": 2300, "stop_desc": "Jean Jaur\u00e8s (avenue) - 94042", "stop_name": "Joinville-le-Pont"}, "geometry": {"type": "Point", "coordinates": [2.4638349563053548, 48.821069678359656]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "806def1c470dc12245e9ba5f1cc5a38002f5743a", "fields": {"departement": "75", "stop_lat": 48.890374081221125, "code_postal": "75118", "stop_lon": 2.3597970086706117, "coord": [48.890374081221125, 2.3597970086706117], "stop_id": 2282, "stop_desc": "Chapelle (4 rue de la) - 75118", "stop_name": "Marx-Dormoy"}, "geometry": {"type": "Point", "coordinates": [2.3597970086706117, 48.890374081221125]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d66b0a546f4f57200da992445a1dca7819e6b3ce", "fields": {"departement": "75", "stop_lat": 48.86085078966753, "code_postal": "75107", "stop_lon": 2.314548112626649, "coord": [48.86085078966753, 2.314548112626649], "stop_id": 2293, "stop_desc": "Universit\u00e9 (rue de l') - 75107", "stop_name": "Invalides"}, "geometry": {"type": "Point", "coordinates": [2.314548112626649, 48.86085078966753]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b29bd10e1dae97415aadf5afb12080a9ffc3a31c", "fields": {"departement": "75", "stop_lat": 48.8764170528791, "code_postal": "75110", "stop_lon": 2.3589870464563276, "coord": [48.8764170528791, 2.3589870464563276], "stop_id": 2209, "stop_desc": "Strasbourg (terre plein face au 93 boulevard de) - 75110", "stop_name": "Gare de l'Est (Verdun)"}, "geometry": {"type": "Point", "coordinates": [2.3589870464563276, 48.8764170528791]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f9a0b002a6b8e1319fbc282c0c7435423af15780", "fields": {"departement": "75", "stop_lat": 48.87818498179219, "code_postal": "75110", "stop_lon": 2.3701745466363584, "coord": [48.87818498179219, 2.3701745466363584], "stop_id": 2168, "stop_desc": "Villette (terre-plein face au 83 boulevard de la) - 75110", "stop_name": "Colonel Fabien"}, "geometry": {"type": "Point", "coordinates": [2.3701745466363584, 48.87818498179219]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1ac0ded3076c47d4cf1f7f9bec3163fb2ff09f9d", "fields": {"departement": "75", "stop_lat": 48.87001535524704, "code_postal": "75110", "stop_lon": 2.3707687990214654, "coord": [48.87001535524704, 2.3707687990214654], "stop_id": 2218, "stop_desc": "Parmentier (152 avenue) - 75110", "stop_name": "Goncourt (H\u00f4pital Saint-Louis)"}, "geometry": {"type": "Point", "coordinates": [2.3707687990214654, 48.87001535524704]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f593518c7b3f9c73451717a9538343af9cf1e90c", "fields": {"departement": "92", "stop_lat": 48.84068016312195, "code_postal": "92012", "stop_lon": 2.228313661724341, "coord": [48.84068016312195, 2.228313661724341], "stop_id": 2194, "stop_desc": "Reine (135 route de la) - 92012", "stop_name": "Boulogne Pont de Saint-Cloud"}, "geometry": {"type": "Point", "coordinates": [2.228313661724341, 48.84068016312195]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a5354e1908bc58f9da2ca671fd1028db96f0c2c9", "fields": {"departement": "75", "stop_lat": 48.8312479519874, "code_postal": "75113", "stop_lon": 2.343122075822986, "coord": [48.8312479519874, 2.343122075822986], "stop_id": 2217, "stop_desc": "Auguste Blanqui (terre-plein face au 124 boulevard) - 75113", "stop_name": "Glaci\u00e8re"}, "geometry": {"type": "Point", "coordinates": [2.343122075822986, 48.8312479519874]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2f8c48c50c819e61819a291dbe03b1f4ad10df76", "fields": {"departement": "75", "stop_lat": 48.8843997149084, "code_postal": "75118", "stop_lon": 2.338399384171042, "coord": [48.8843997149084, 2.338399384171042], "stop_id": 2156, "stop_desc": "Abbesses (place des, face au 2 rue de la Vieuville) - 75118", "stop_name": "Abbesses"}, "geometry": {"type": "Point", "coordinates": [2.338399384171042, 48.8843997149084]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3165ebd82b35ebe4550f2af14a7afe825833f58c", "fields": {"departement": "75", "stop_lat": 48.85720364550444, "code_postal": "75101", "stop_lon": 2.3472247110558406, "coord": [48.85720364550444, 2.3472247110558406], "stop_id": 2221, "stop_desc": "Victoria (7 avenue, 4 rue Saint-Martin) - 75101", "stop_name": "Ch\u00e2telet"}, "geometry": {"type": "Point", "coordinates": [2.3472247110558406, 48.85720364550444]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f77cc9146e86a3895e3482168bb4cdee18014cac", "fields": {"departement": "93", "stop_lat": 49.00323498837725, "code_postal": "93073", "stop_lon": 2.5673771278540025, "coord": [49.00323498837725, 2.5673771278540025], "stop_id": 2224148, "stop_desc": "AEROPORT CHARLES DE GAULLE - 93073", "stop_name": "TERMINAL-2C"}, "geometry": {"type": "Point", "coordinates": [2.5673771278540025, 49.00323498837725]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1d385c97c025e04c81414ecd99b082459a0dc89f", "fields": {"departement": "92", "stop_lat": 48.78005093776892, "code_postal": "92014", "stop_lon": 2.3121626259597874, "coord": [48.78005093776892, 2.3121626259597874], "stop_id": 2195, "stop_desc": "Place de la Gare - 92014", "stop_name": "Bourg-la-Reine"}, "geometry": {"type": "Point", "coordinates": [2.3121626259597874, 48.78005093776892]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7ee24e4d116069abd9263f755c976eb10cbcafa3", "fields": {"departement": "75", "stop_lat": 48.844804715128525, "code_postal": "75112", "stop_lon": 2.3738435712712422, "coord": [48.844804715128525, 2.3738435712712422], "stop_id": 2211, "stop_desc": "Rue de Bercy - 75112", "stop_name": "Gare de Lyon"}, "geometry": {"type": "Point", "coordinates": [2.3738435712712422, 48.844804715128525]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b1df58cc675bcd02b8cb3dce9d78f3ec2c6d08b7", "fields": {"departement": "92", "stop_lat": 48.89730990517954, "code_postal": "92044", "stop_lon": 2.2807686428069003, "coord": [48.89730990517954, 2.2807686428069003], "stop_id": 2341, "stop_desc": "Baudin (rue, angle avec la rue Anatole France) - 92044", "stop_name": "Pont de Levallois-B\u00e9con"}, "geometry": {"type": "Point", "coordinates": [2.2807686428069003, 48.89730990517954]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "609ece6cbad3a85063a636b0d38f6702930b3311", "fields": {"departement": "75", "stop_lat": 48.8187170251155, "code_postal": "75113", "stop_lon": 2.360500832805366, "coord": [48.8187170251155, 2.360500832805366], "stop_id": 2347, "stop_desc": "Mass\u00e9na (boulevard, square H\u00e9l\u00e8ne Boucher) - 75113", "stop_name": "Porte d'Italie"}, "geometry": {"type": "Point", "coordinates": [2.360500832805366, 48.8187170251155]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "73631a08c1f1c49cf04b162cbf7e9471cb3725ee", "fields": {"departement": "75", "stop_lat": 48.85346358569476, "code_postal": "75104", "stop_lon": 2.357383972809163, "coord": [48.85346358569476, 2.357383972809163], "stop_id": 2344, "stop_desc": "\u00cele Saint-Louis - 75104", "stop_name": "Pont Marie (Cit\u00e9 des Arts)"}, "geometry": {"type": "Point", "coordinates": [2.357383972809163, 48.85346358569476]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "37e414de62d4a5af1932090a6000035e7700e7b1", "fields": {"departement": "75", "stop_lat": 48.86087985759375, "code_postal": "75101", "stop_lon": 2.340973275817903, "coord": [48.86087985759375, 2.340973275817903], "stop_id": 2331, "stop_desc": "Amiral de Coligny (8 rue de l') - 75101", "stop_name": "Louvre-Rivoli"}, "geometry": {"type": "Point", "coordinates": [2.340973275817903, 48.86087985759375]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "13e34acf5005575f873817cea33644785633a091", "fields": {"departement": "75", "stop_lat": 48.88090042815109, "code_postal": "75110", "stop_lon": 2.365107218264337, "coord": [48.88090042815109, 2.365107218264337], "stop_id": 2327, "stop_desc": "Faubourg Saint-Martin (234 rue du) - 75110", "stop_name": "Louis Blanc"}, "geometry": {"type": "Point", "coordinates": [2.365107218264337, 48.88090042815109]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "06a5f50e29e4119a584f1653efcd84336ee4f9c4", "fields": {"departement": "75", "stop_lat": 48.86628035856129, "code_postal": "75102", "stop_lon": 2.352484796837845, "coord": [48.86628035856129, 2.352484796837845], "stop_id": 2375, "stop_desc": "Saint-Denis (182 rue) - 75102", "stop_name": "R\u00e9aumur-S\u00e9bastopol"}, "geometry": {"type": "Point", "coordinates": [2.352484796837845, 48.86628035856129]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3a8f9636b7696142d622204ef0c3defd4463a9b4", "fields": {"departement": "91", "stop_lat": 48.73460130224641, "code_postal": "91377", "stop_lon": 2.273281709990223, "coord": [48.73460130224641, 2.273281709990223], "stop_id": 2349, "stop_desc": "Verri\u00e8res (avenue de) - 91377", "stop_name": "Massy-Verri\u00e8res"}, "geometry": {"type": "Point", "coordinates": [2.273281709990223, 48.73460130224641]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "be9b538be9986d65f37555ddf491686805be9797", "fields": {"departement": "75", "stop_lat": 48.86725794359829, "code_postal": "75111", "stop_lon": 2.3640373036390545, "coord": [48.86725794359829, 2.3640373036390545], "stop_id": 2376, "stop_desc": "Saint-Martin (9 boulevard) - 75111", "stop_name": "R\u00e9publique"}, "geometry": {"type": "Point", "coordinates": [2.3640373036390545, 48.86725794359829]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3868c193b20baa3d0afa85d7f467fea96004dd51", "fields": {"departement": "75", "stop_lat": 48.8697947152178, "code_postal": "75108", "stop_lon": 2.3246120120222655, "coord": [48.8697947152178, 2.3246120120222655], "stop_id": 2336, "stop_desc": "Tronchet (2 rue, 3 rue Tronchet) - 75108", "stop_name": "Madeleine"}, "geometry": {"type": "Point", "coordinates": [2.3246120120222655, 48.8697947152178]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6a10705c9146605b35e97b0eb9ccf951cfc31d44", "fields": {"departement": "75", "stop_lat": 48.877353095288015, "code_postal": "75110", "stop_lon": 2.349381423952599, "coord": [48.877353095288015, 2.349381423952599], "stop_id": 2373, "stop_desc": "Rue de Chabrol - 75110", "stop_name": "Poissonni\u00e8re"}, "geometry": {"type": "Point", "coordinates": [2.349381423952599, 48.877353095288015]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f9bd844c13664dfccc47046012f3583f03155b70", "fields": {"departement": "75", "stop_lat": 48.85589133781551, "code_postal": "75107", "stop_lon": 2.325704993899314, "coord": [48.85589133781551, 2.325704993899314], "stop_id": 2455, "stop_desc": "Raspail (terre-plein face au 2 boulevard) - 75107", "stop_name": "Rue du Bac"}, "geometry": {"type": "Point", "coordinates": [2.325704993899314, 48.85589133781551]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e6afbbb728f4d85e3af6ac8c1fb5506f4e5dd71d", "fields": {"departement": "75", "stop_lat": 48.871511817078165, "code_postal": "75109", "stop_lon": 2.343208377544865, "coord": [48.871511817078165, 2.343208377544865], "stop_id": 2457, "stop_desc": "Poissonni\u00e8re (32 boulevard) - 75109", "stop_name": "Grands Boulevards"}, "geometry": {"type": "Point", "coordinates": [2.343208377544865, 48.871511817078165]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "622fa51c58af59620f2838954e94b2cca92a0194", "fields": {"departement": "75", "stop_lat": 48.86164742429928, "code_postal": "75111", "stop_lon": 2.373147140772303, "coord": [48.86164742429928, 2.373147140772303], "stop_id": 2459, "stop_desc": "Voltaire (86 boulevard) - 75111", "stop_name": "Saint-Ambroise"}, "geometry": {"type": "Point", "coordinates": [2.373147140772303, 48.86164742429928]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f3795b957ae3f8a525719276d3a4e5858ebddc06", "fields": {"departement": "75", "stop_lat": 48.8473528769588, "code_postal": "75112", "stop_lon": 2.3858425400402448, "coord": [48.8473528769588, 2.3858425400402448], "stop_id": 2443, "stop_desc": "Diderot (73 boulevard) - 75112", "stop_name": "Reuilly-Diderot"}, "geometry": {"type": "Point", "coordinates": [2.3858425400402448, 48.8473528769588]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "567b9c2f48a5e2f2a9c22a551af4523b9a7a2faa", "fields": {"departement": "93", "stop_lat": 48.855680808196944, "code_postal": "93048", "stop_lon": 2.423659085483019, "coord": [48.855680808196944, 2.423659085483019], "stop_id": 2449, "stop_desc": "Paris (185 rue de) - 93048", "stop_name": "Robespierre"}, "geometry": {"type": "Point", "coordinates": [2.423659085483019, 48.855680808196944]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ac3730bfe5442e3c3111cde62d4f28655cae0202", "fields": {"departement": "75", "stop_lat": 48.862666905879294, "code_postal": "75116", "stop_lon": 2.2872630615532628, "coord": [48.862666905879294, 2.2872630615532628], "stop_id": 2497, "stop_desc": "Trocad\u00e9ro et Onze-Novembre (place du, avenue Paul Doumer) - 75116", "stop_name": "Trocad\u00e9ro"}, "geometry": {"type": "Point", "coordinates": [2.2872630615532628, 48.862666905879294]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7c9c27c27d2e8ad6fc283fcc4f7d537dcbecbfde", "fields": {"departement": "75", "stop_lat": 48.8630891350352, "code_postal": "75116", "stop_lon": 2.2868403784945937, "coord": [48.8630891350352, 2.2868403784945937], "stop_id": 2517, "stop_desc": "Trocad\u00e9ro et Onze-Novembre (place du, avenue Paul Doumer) - 75116", "stop_name": "Trocad\u00e9ro"}, "geometry": {"type": "Point", "coordinates": [2.2868403784945937, 48.8630891350352]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7d9ed11041a14ed52c5c778a595423a4a05f9ced", "fields": {"departement": "75", "stop_lat": 48.83761467578531, "code_postal": "75113", "stop_lon": 2.373852115680497, "coord": [48.83761467578531, 2.373852115680497], "stop_id": 2524, "stop_desc": "Gare (quai de la, quai d'Austerlitz) - 75113", "stop_name": "Quai de la Gare"}, "geometry": {"type": "Point", "coordinates": [2.373852115680497, 48.83761467578531]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d2f0f4399e4a9e4de163b416f38a49df0a46ec56", "fields": {"departement": "93", "stop_lat": 48.948168329928286, "code_postal": "93071", "stop_lon": 2.52448044743623, "coord": [48.948168329928286, 2.52448044743623], "stop_id": 2507, "stop_desc": "Dumon d'urville (rue) - 93071", "stop_name": "Sevran-Beaudottes"}, "geometry": {"type": "Point", "coordinates": [2.52448044743623, 48.948168329928286]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f1404e56bee7e9f407c3de756c0b006122416246", "fields": {"departement": "75", "stop_lat": 48.84141844267774, "code_postal": "75115", "stop_lon": 2.307993649386661, "coord": [48.84141844267774, 2.307993649386661], "stop_id": 2512, "stop_desc": "Volontaires (25 rue des) - 75115", "stop_name": "Volontaires"}, "geometry": {"type": "Point", "coordinates": [2.307993649386661, 48.84141844267774]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cd801b6a6868e27cfa5a5ab6722a7f765c19516d", "fields": {"departement": "93", "stop_lat": 48.96309599735446, "code_postal": "93078", "stop_lon": 2.512155566998092, "coord": [48.96309599735446, 2.512155566998092], "stop_id": 2508, "stop_desc": "Gare (place de la) - 93078", "stop_name": "Villepinte"}, "geometry": {"type": "Point", "coordinates": [2.512155566998092, 48.96309599735446]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ea2dc6307c8dde33c7a09323f6bc9f328b879621", "fields": {"departement": "75", "stop_lat": 48.883712476037346, "code_postal": "75117", "stop_lon": 2.3055577575143036, "coord": [48.883712476037346, 2.3055577575143036], "stop_id": 2514, "stop_desc": "Villiers (74 avenue de) - 75117", "stop_name": "Wagram"}, "geometry": {"type": "Point", "coordinates": [2.3055577575143036, 48.883712476037346]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "292f0c664ade077ba2180fc8f2fcc31b817c4feb", "fields": {"departement": "94", "stop_lat": 48.77105153303763, "code_postal": "94071", "stop_lon": 2.507511268345535, "coord": [48.77105153303763, 2.507511268345535], "stop_id": 2490, "stop_desc": "Porte de Sucy - 94071", "stop_name": "Sucy Bonneuil"}, "geometry": {"type": "Point", "coordinates": [2.507511268345535, 48.77105153303763]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "40963262b25f92fd3f67ce614d8a11fbcb6f2a58", "fields": {"departement": "94", "stop_lat": 48.84732387116057, "code_postal": "94080", "stop_lon": 2.433531596877892, "coord": [48.84732387116057, 2.433531596877892], "stop_id": 2511, "stop_desc": "Rue de Montreuil - 94080", "stop_name": "Vincennes"}, "geometry": {"type": "Point", "coordinates": [2.433531596877892, 48.84732387116057]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "14e9759b0b4818d1789afc0c3ad0b16a7f34efba", "fields": {"departement": "75", "stop_lat": 48.88140510041144, "code_postal": "75117", "stop_lon": 2.316147050907411, "coord": [48.88140510041144, 2.316147050907411], "stop_id": 2510, "stop_desc": "Parc de Monceau - 75117", "stop_name": "Villiers"}, "geometry": {"type": "Point", "coordinates": [2.316147050907411, 48.88140510041144]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "45a95d5b9ac2d70130ed9c3b6f8f9f07f79505ee", "fields": {"departement": "94", "stop_lat": 48.79599413239317, "code_postal": "94076", "stop_lon": 2.3682314519156806, "coord": [48.79599413239317, 2.3682314519156806], "stop_id": 2506, "stop_desc": "Maxime Gorky (boulevard, c\u00f4t\u00e9 pair) - 94076", "stop_name": "Villejuif-Paul Vaillant Couturier (H\u00f4pital Paul Brousse)"}, "geometry": {"type": "Point", "coordinates": [2.3682314519156806, 48.79599413239317]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0348e64240706ad92299ac1646ce167caa49b28e", "fields": {"departement": "75", "stop_lat": 48.85722786064964, "code_postal": "75107", "stop_lon": 2.3097962258273563, "coord": [48.85722786064964, 2.3097962258273563], "stop_id": 3343759, "stop_desc": "Les Invalides Tombeau de l'Empereur - Mus\u00e9e de l'Arm\u00e9e - 75107", "stop_name": "La Tour-Maubourg"}, "geometry": {"type": "Point", "coordinates": [2.3097962258273563, 48.85722786064964]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "617f8f45c20ef6cb5ae4daf03ff371191ce1a2a0", "fields": {"departement": "75", "stop_lat": 48.87416474488983, "code_postal": "75117", "stop_lon": 2.29507256293689, "coord": [48.87416474488983, 2.29507256293689], "stop_id": 2545, "stop_desc": "Grande Arm\u00e9e (2 avenue de la) - 75117", "stop_name": "Charles de Gaulle-Etoile"}, "geometry": {"type": "Point", "coordinates": [2.29507256293689, 48.87416474488983]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b9793ca28fda27ca5a3eeb4807c63785563d6bc2", "fields": {"departement": "75", "stop_lat": 48.848803206044934, "code_postal": "75115", "stop_lon": 2.29769423466391, "coord": [48.848803206044934, 2.29769423466391], "stop_id": 3343756, "stop_desc": "Pondich\u00e9ry (25 rue de) - 75115", "stop_name": "La Motte-Picquet-Grenelle"}, "geometry": {"type": "Point", "coordinates": [2.29769423466391, 48.848803206044934]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "839dc383a4a946191a03b39ca82af335ec805d8c", "fields": {"departement": "75", "stop_lat": 48.83915698149679, "code_postal": "75114", "stop_lon": 2.330474151162931, "coord": [48.83915698149679, 2.330474151162931], "stop_id": 2525, "stop_desc": "Raspail (233 boulevard, 35 rue Campagne Premi\u00e8re) - 75114", "stop_name": "Raspail"}, "geometry": {"type": "Point", "coordinates": [2.330474151162931, 48.83915698149679]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5f3009e0c4f6521a6496c82d723c77d52cb3a5a2", "fields": {"departement": "93", "stop_lat": 48.907147312551565, "code_postal": "93008", "stop_lon": 2.44945750453114, "coord": [48.907147312551565, 2.44945750453114], "stop_id": 2550, "stop_desc": "Pr\u00e9fecture Tr\u00e9sorerie - 93008", "stop_name": "Bobigny-Pablo-Picasso"}, "geometry": {"type": "Point", "coordinates": [2.44945750453114, 48.907147312551565]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "63300e59c1e1ba2a132bb71e4842066be7114bc0", "fields": {"departement": "75", "stop_lat": 48.83866812903008, "code_postal": "75115", "stop_lon": 2.2822484883840986, "coord": [48.83866812903008, 2.2822484883840986], "stop_id": 3343336, "stop_desc": "F\u00e9lix Faure (100 avenue, 161 rue de Lourmel) - 75115", "stop_name": "Lourmel"}, "geometry": {"type": "Point", "coordinates": [2.2822484883840986, 48.83866812903008]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b624270074f72b43b7417e8022d775b7575f05f2", "fields": {"departement": "78", "stop_lat": 48.95518178055726, "code_postal": "78005", "stop_lon": 2.0925262190765865, "coord": [48.95518178055726, 2.0925262190765865], "stop_id": 2776542, "stop_desc": "Gare (Place de la) - 78005", "stop_name": "Ach\u00e8res Grand Cormier"}, "geometry": {"type": "Point", "coordinates": [2.0925262190765865, 48.95518178055726]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "84bf4114e7c8dd68ef5fbacfb600f4c9984022b6", "fields": {"departement": "75", "stop_lat": 48.83887615167852, "code_postal": "75112", "stop_lon": 2.3893473875702935, "coord": [48.83887615167852, 2.3893473875702935], "stop_id": 2543, "stop_desc": "Reuilly (3 boulevard de, boulevard de Bercy) - 75112", "stop_name": "Dugommier"}, "geometry": {"type": "Point", "coordinates": [2.3893473875702935, 48.83887615167852]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "74337916ad0b6210ce590c7d524f16f5a401b88f", "fields": {"departement": "94", "stop_lat": 48.80641960896216, "code_postal": "94068", "stop_lon": 2.47204505094563, "coord": [48.80641960896216, 2.47204505094563], "stop_id": 2481, "stop_desc": "March\u00e9 (place du, parvis de la gare et 35 rue du Pont de Cr\u00e9teil) - 94068", "stop_name": "Saint-Maur Cr\u00e9teil"}, "geometry": {"type": "Point", "coordinates": [2.47204505094563, 48.80641960896216]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3c0c4acbacc530b2f342b57d9edecf5c0464d0c9", "fields": {"departement": "75", "stop_lat": 48.86963236518746, "code_postal": "75102", "stop_lon": 2.35450206308924, "coord": [48.86963236518746, 2.35450206308924], "stop_id": 2487, "stop_desc": "Saint-Denis (9 rue, 114 boulevard de S\u00e9bastopol) - 75102", "stop_name": "Strasbourg-Saint-Denis"}, "geometry": {"type": "Point", "coordinates": [2.35450206308924, 48.86963236518746]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a3c408a3f2ffd789e14ed4b2000455e7ee1ffc0d", "fields": {"departement": "75", "stop_lat": 48.84499615085685, "code_postal": "75115", "stop_lon": 2.310864830044154, "coord": [48.84499615085685, 2.310864830044154], "stop_id": 2475, "stop_desc": "Garibaldi (terre-plein face au 94 boulevard) - 75115", "stop_name": "S\u00e8vres-Lecourbe"}, "geometry": {"type": "Point", "coordinates": [2.310864830044154, 48.84499615085685]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "35ede59c44e969c739bc972c1f2feac9fbb83ee8", "fields": {"departement": "75", "stop_lat": 48.85157746899621, "code_postal": "75107", "stop_lon": 2.3268907883428853, "coord": [48.85157746899621, 2.3268907883428853], "stop_id": 2477, "stop_desc": "Raspail (41 boulevard, 18 rue de S\u00e8vres) - 75107", "stop_name": "S\u00e8vres-Babylone"}, "geometry": {"type": "Point", "coordinates": [2.3268907883428853, 48.85157746899621]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "77c38c4a98ea476fa2e15e3dc76fd130493f70a6", "fields": {"departement": "93", "stop_lat": 48.936477492650496, "code_postal": "93066", "stop_lon": 2.3596397453045825, "coord": [48.936477492650496, 2.3596397453045825], "stop_id": 2461, "stop_desc": "Place du Cacquet - 93066", "stop_name": "Basilique de Saint-Denis"}, "geometry": {"type": "Point", "coordinates": [2.3596397453045825, 48.936477492650496]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "63b605a40458b23139900272389b1f28c6a093d3", "fields": {"departement": "75", "stop_lat": 48.88415326312386, "code_postal": "75119", "stop_lon": 2.3673574774663866, "coord": [48.88415326312386, 2.3673574774663866], "stop_id": 2485, "stop_desc": "Villette (244/171 boulevard de la) - 75119", "stop_name": "Stalingrad"}, "geometry": {"type": "Point", "coordinates": [2.3673574774663866, 48.88415326312386]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ceeffecad9f98f4da22de175cd0423d1100aa7fd", "fields": {"departement": "94", "stop_lat": 48.84623825662077, "code_postal": "94067", "stop_lon": 2.418999828109256, "coord": [48.84623825662077, 2.418999828109256], "stop_id": 2470, "stop_desc": "Paris (168 bis avenue de) - 94067", "stop_name": "Saint-Mand\u00e9"}, "geometry": {"type": "Point", "coordinates": [2.418999828109256, 48.84623825662077]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "511c44c607432726d4a87b3ff6f675529a71f7c9", "fields": {"departement": "75", "stop_lat": 48.871699810971116, "code_postal": "75120", "stop_lon": 2.4042987242021825, "coord": [48.871699810971116, 2.4042987242021825], "stop_id": 2463, "stop_desc": "Gambetta (112 avenue) - 75120", "stop_name": "Saint-Fargeau"}, "geometry": {"type": "Point", "coordinates": [2.4042987242021825, 48.871699810971116]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "961b40585e975665edaa0ee9a529f90167551e22", "fields": {"departement": "75", "stop_lat": 48.87438676021276, "code_postal": "75108", "stop_lon": 2.3207278319647315, "coord": [48.87438676021276, 2.3207278319647315], "stop_id": 2460, "stop_desc": "\u00c9glise Saint-Augustin - 75108", "stop_name": "Saint-Augustin"}, "geometry": {"type": "Point", "coordinates": [2.3207278319647315, 48.87438676021276]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6ff9a48883c3ee9c2abb3a8af2dbecffcb08729f", "fields": {"departement": "75", "stop_lat": 48.89412344466592, "code_postal": "75118", "stop_lon": 2.347245444443029, "coord": [48.89412344466592, 2.347245444443029], "stop_id": 2478, "stop_desc": "Ornano (38 boulevard) - 75118", "stop_name": "Simplon"}, "geometry": {"type": "Point", "coordinates": [2.347245444443029, 48.89412344466592]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a9d24b40bfe6c8eee760112c4901ecbcba4ac9a1", "fields": {"departement": "75", "stop_lat": 48.85722786064964, "code_postal": "75107", "stop_lon": 2.3097962258273563, "coord": [48.85722786064964, 2.3097962258273563], "stop_id": 3343760, "stop_desc": "Les Invalides Tombeau de l'Empereur - Mus\u00e9e de l'Arm\u00e9e - 75107", "stop_name": "La Tour-Maubourg"}, "geometry": {"type": "Point", "coordinates": [2.3097962258273563, 48.85722786064964]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "55b59f566eb7a64f0f825166f50f47244c18f292", "fields": {"departement": "75", "stop_lat": 48.87157474359305, "code_postal": "75109", "stop_lon": 2.3428950319846593, "coord": [48.87157474359305, 2.3428950319846593], "stop_id": 3343772, "stop_desc": "Poissonni\u00e8re (32 boulevard) - 75109", "stop_name": "Grands Boulevards"}, "geometry": {"type": "Point", "coordinates": [2.3428950319846593, 48.87157474359305]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6de58ba0a5d6f576eba983e7d7cfb44b2cdcb62e", "fields": {"departement": "75", "stop_lat": 48.87057675358199, "code_postal": "75109", "stop_lon": 2.348494293710928, "coord": [48.87057675358199, 2.348494293710928], "stop_id": 3343773, "stop_desc": "Poissonni\u00e8re (8 boulevard) - 75109", "stop_name": "Bonne Nouvelle"}, "geometry": {"type": "Point", "coordinates": [2.348494293710928, 48.87057675358199]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6ae96d70870db45b20caf1b85f675c741a2bfc8a", "fields": {"departement": "75", "stop_lat": 48.87200623896137, "code_postal": "75109", "stop_lon": 2.339911390610416, "coord": [48.87200623896137, 2.339911390610416], "stop_id": 3343770, "stop_desc": "Op\u00e9ra Comique - 75109", "stop_name": "Richelieu-Drouot"}, "geometry": {"type": "Point", "coordinates": [2.339911390610416, 48.87200623896137]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ffb1c4fe9633799fd508d54d6f65602b217d3533", "fields": {"departement": "75", "stop_lat": 48.86950712762907, "code_postal": "75108", "stop_lon": 2.324680199591515, "coord": [48.86950712762907, 2.324680199591515], "stop_id": 3343765, "stop_desc": "Tronchet (2 rue, 3 rue Tronchet) - 75108", "stop_name": "Madeleine"}, "geometry": {"type": "Point", "coordinates": [2.324680199591515, 48.86950712762907]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "74cb5c549d2bf1c8bcacbd7444fbac9a8abdc631", "fields": {"departement": "75", "stop_lat": 48.87063108014849, "code_postal": "75109", "stop_lon": 2.331737048361137, "coord": [48.87063108014849, 2.331737048361137], "stop_id": 3343767, "stop_desc": "Th\u00e9\u00e2tre National de l'Op\u00e9ra - 75109", "stop_name": "Op\u00e9ra"}, "geometry": {"type": "Point", "coordinates": [2.331737048361137, 48.87063108014849]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9cb1c41e0288501e2713a13a13d585bbed3c89e3", "fields": {"departement": "75", "stop_lat": 48.87063108014849, "code_postal": "75109", "stop_lon": 2.331737048361137, "coord": [48.87063108014849, 2.331737048361137], "stop_id": 3343768, "stop_desc": "Th\u00e9\u00e2tre National de l'Op\u00e9ra - 75109", "stop_name": "Op\u00e9ra"}, "geometry": {"type": "Point", "coordinates": [2.331737048361137, 48.87063108014849]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a28732451bcdc26d8c492dea791d082cc6aec664", "fields": {"departement": "75", "stop_lat": 48.85006766800271, "code_postal": "75111", "stop_lon": 2.3844287707416316, "coord": [48.85006766800271, 2.3844287707416316], "stop_id": 3343789, "stop_desc": "Montreuil (1 rue de, face au 196 rue du Faubourg Saint-Antoine) - 75111", "stop_name": "Faidherbe-Chaligny"}, "geometry": {"type": "Point", "coordinates": [2.3844287707416316, 48.85006766800271]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ff64d2adbe817168b719c574ed51e2425c2196de", "fields": {"departement": "75", "stop_lat": 48.869380780106006, "code_postal": "75102", "stop_lon": 2.3540796521963494, "coord": [48.869380780106006, 2.3540796521963494], "stop_id": 3343776, "stop_desc": "Saint-Denis (9 rue, 114 boulevard de S\u00e9bastopol) - 75102", "stop_name": "Strasbourg-Saint-Denis"}, "geometry": {"type": "Point", "coordinates": [2.3540796521963494, 48.869380780106006]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1615a286075358d2a76e099c990a0b489e2b8dd5", "fields": {"departement": "94", "stop_lat": 48.79660129757846, "code_postal": "94028", "stop_lon": 2.4495315243760767, "coord": [48.79660129757846, 2.4495315243760767], "stop_id": 3343814, "stop_desc": "Eiffel (13 rue) - 94028", "stop_name": "Cr\u00e9teil-L'Echat (H\u00f4pital Henri Mondor)"}, "geometry": {"type": "Point", "coordinates": [2.4495315243760767, 48.79660129757846]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a502a0656d834f91987c560c9bc480771f5c38b2", "fields": {"departement": "75", "stop_lat": 48.844142731120996, "code_postal": "75112", "stop_lon": 2.389625012848426, "coord": [48.844142731120996, 2.389625012848426], "stop_id": 3343793, "stop_desc": "Reuilly (68 rue de, rue Montgallet) - 75112", "stop_name": "Montgallet"}, "geometry": {"type": "Point", "coordinates": [2.389625012848426, 48.844142731120996]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "15742ec4c1466c45c782aca01dc3da69220b4b05", "fields": {"departement": "75", "stop_lat": 48.844142731120996, "code_postal": "75112", "stop_lon": 2.389625012848426, "coord": [48.844142731120996, 2.389625012848426], "stop_id": 3343794, "stop_desc": "Reuilly (68 rue de, rue Montgallet) - 75112", "stop_name": "Montgallet"}, "geometry": {"type": "Point", "coordinates": [2.389625012848426, 48.844142731120996]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "095f459db0defa5f952cb53f1c809d589acae909", "fields": {"departement": "75", "stop_lat": 48.84721750107955, "code_postal": "75112", "stop_lon": 2.387204177213597, "coord": [48.84721750107955, 2.387204177213597], "stop_id": 3343791, "stop_desc": "Diderot (73 boulevard) - 75112", "stop_name": "Reuilly-Diderot"}, "geometry": {"type": "Point", "coordinates": [2.387204177213597, 48.84721750107955]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "abd65a52e87e833f3d20463d4e0828866c615caf", "fields": {"departement": "75", "stop_lat": 48.83549725282465, "code_postal": "75112", "stop_lon": 2.4061852122149348, "coord": [48.83549725282465, 2.4061852122149348], "stop_id": 3343799, "stop_desc": "Poniatowsky (92 boulevard) - 75112", "stop_name": "Porte Dor\u00e9e"}, "geometry": {"type": "Point", "coordinates": [2.4061852122149348, 48.83549725282465]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "14f9ac4b28708b139a92bd976e6fffd38224b8ef", "fields": {"departement": "75", "stop_lat": 48.83549725282465, "code_postal": "75112", "stop_lon": 2.4061852122149348, "coord": [48.83549725282465, 2.4061852122149348], "stop_id": 3343800, "stop_desc": "Poniatowsky (92 boulevard) - 75112", "stop_name": "Porte Dor\u00e9e"}, "geometry": {"type": "Point", "coordinates": [2.4061852122149348, 48.83549725282465]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2bbd624233ffc19727f97bbd5784113b5e264cc0", "fields": {"departement": "75", "stop_lat": 48.82615945391136, "code_postal": "75113", "stop_lon": 2.3570194661891253, "coord": [48.82615945391136, 2.3570194661891253], "stop_id": 1685, "stop_desc": "Italie (76 avenue d') - 75113", "stop_name": "Tolbiac"}, "geometry": {"type": "Point", "coordinates": [2.3570194661891253, 48.82615945391136]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3e9dbcd6b8261ef12642c204058bfec6538edb36", "fields": {"departement": "75", "stop_lat": 48.87822804050767, "code_postal": "75117", "stop_lon": 2.2981214325821844, "coord": [48.87822804050767, 2.2981214325821844], "stop_id": 1684, "stop_desc": "Ternes (3 place des) - 75117", "stop_name": "Ternes"}, "geometry": {"type": "Point", "coordinates": [2.2981214325821844, 48.87822804050767]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c1164f19b2189e3835070abf0cd8d58440612e7e", "fields": {"departement": "75", "stop_lat": 48.8883932319013, "code_postal": "75119", "stop_lon": 2.374433108884994, "coord": [48.8883932319013, 2.374433108884994], "stop_id": 1703, "stop_desc": "Riquet (19 rue) - 75119", "stop_name": "Riquet"}, "geometry": {"type": "Point", "coordinates": [2.374433108884994, 48.8883932319013]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2e1eb1e9681bf06258e8123d60b318759a172b2c", "fields": {"departement": "92", "stop_lat": 48.892018626328884, "code_postal": "92044", "stop_lon": 2.2855174447944844, "coord": [48.892018626328884, 2.2855174447944844], "stop_id": 2163, "stop_desc": "G\u00e9n\u00e9ral Leclerc (place, c\u00f4t\u00e9 pair et rue Anatole France et rue Voltaire) - 92044", "stop_name": "Anatole-France"}, "geometry": {"type": "Point", "coordinates": [2.2855174447944844, 48.892018626328884]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9ba2b13f58ebcf7901b54b0c32fdeeba44237666", "fields": {"departement": "75", "stop_lat": 48.856426348325236, "code_postal": "75111", "stop_lon": 2.394554257654992, "coord": [48.856426348325236, 2.394554257654992], "stop_id": 2160, "stop_desc": "Charonne (111 boulevard de, 180 rue de Charonne et 1 rue de Bagnolet) - 75111", "stop_name": "Alexandre-Dumas"}, "geometry": {"type": "Point", "coordinates": [2.394554257654992, 48.856426348325236]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ac902d9a1159917affd9b5771f675adb9ca59a82", "fields": {"departement": "75", "stop_lat": 48.833998236748336, "code_postal": "75114", "stop_lon": 2.333238501158801, "coord": [48.833998236748336, 2.333238501158801], "stop_id": 2186, "stop_desc": "G\u00e9n\u00e9ral Leclerc (4 avenue du, 2 rue Daguerre) - 75114", "stop_name": "Denfert-Rochereau"}, "geometry": {"type": "Point", "coordinates": [2.333238501158801, 48.833998236748336]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1fa6a3fb3c9c1270843eaed18caef66005f773b3", "fields": {"departement": "75", "stop_lat": 48.86429867104669, "code_postal": "75116", "stop_lon": 2.3012514104499293, "coord": [48.86429867104669, 2.3012514104499293], "stop_id": 2162, "stop_desc": "Th\u00e9\u00e2tre des Champs-\u00c9lys\u00e9es - 75116", "stop_name": "Alma-Marceau"}, "geometry": {"type": "Point", "coordinates": [2.3012514104499293, 48.86429867104669]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3d655b6c6246b94419c91fc697cccaf1db778abd", "fields": {"departement": "75", "stop_lat": 48.87927215163157, "code_postal": "75108", "stop_lon": 2.303298546682486, "coord": [48.87927215163157, 2.303298546682486], "stop_id": 2179, "stop_desc": "Parc de Monceau - 75108", "stop_name": "Courcelles"}, "geometry": {"type": "Point", "coordinates": [2.303298546682486, 48.87927215163157]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "97d79e2f32497c75fe84d069237ba3d4cf10cabd", "fields": {"departement": "75", "stop_lat": 48.87960708893313, "code_postal": "75119", "stop_lon": 2.389415569653207, "coord": [48.87960708893313, 2.389415569653207], "stop_id": 2191, "stop_desc": "Botzaris (80 rue) - 75119", "stop_name": "Botzaris"}, "geometry": {"type": "Point", "coordinates": [2.389415569653207, 48.87960708893313]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bc74971ec09a22ec554147f6369243e14e1200bb", "fields": {"departement": "92", "stop_lat": 48.88129918549113, "code_postal": "92051", "stop_lon": 2.2719151760177914, "coord": [48.88129918549113, 2.2719151760177914], "stop_id": 2323, "stop_desc": "Jardin d'Acclimatation - 92051", "stop_name": "Les Sablons (Jardin d'acclimatation)"}, "geometry": {"type": "Point", "coordinates": [2.2719151760177914, 48.88129918549113]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "255a8a5f8f6fe761208c41232f42a9fcfd3eb005", "fields": {"departement": "75", "stop_lat": 48.88276854674882, "code_postal": "75119", "stop_lon": 2.36994579899074, "coord": [48.88276854674882, 2.36994579899074], "stop_id": 2296, "stop_desc": "Villette (entr\u00e9e sous viaduc face au 196 boulevard de la) - 75119", "stop_name": "Jaur\u00e8s"}, "geometry": {"type": "Point", "coordinates": [2.36994579899074, 48.88276854674882]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9732b81cb2b666279185bdc4fee6b62c40747fc0", "fields": {"departement": "77", "stop_lat": 48.84348503430221, "code_postal": "77337", "stop_lon": 2.616614613852153, "coord": [48.84348503430221, 2.616614613852153], "stop_id": 2306, "stop_desc": "Jean-Paul Sartre (all\u00e9e, centre quartier du Luzard) - 77337", "stop_name": "Noisiel"}, "geometry": {"type": "Point", "coordinates": [2.616614613852153, 48.84348503430221]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b134ce23a3e440b9c37944680bd6a7cda6e96325", "fields": {"departement": "75", "stop_lat": 48.862011970720516, "code_postal": "75101", "stop_lon": 2.3464764519062062, "coord": [48.862011970720516, 2.3464764519062062], "stop_id": 2322, "stop_desc": "Verri\u00e8res (place des, Forum des Halles) - 75101", "stop_name": "Les Halles"}, "geometry": {"type": "Point", "coordinates": [2.3464764519062062, 48.862011970720516]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "102f44bf74333de32af04666540cb8d264795b09", "fields": {"departement": "92", "stop_lat": 48.88550610941816, "code_postal": "92051", "stop_lon": 2.258527470197358, "coord": [48.88550610941816, 2.258527470197358], "stop_id": 2342, "stop_desc": "Charles de Gaulle (209 avenue) - 92051", "stop_name": "Pont de Neuilly"}, "geometry": {"type": "Point", "coordinates": [2.258527470197358, 48.88550610941816]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "262302095348bf614320319b3e46b5bee9600e68", "fields": {"departement": "75", "stop_lat": 48.87070082326957, "code_postal": "75110", "stop_lon": 2.3605786355872773, "coord": [48.87070082326957, 2.3605786355872773], "stop_id": 2294, "stop_desc": "Magenta (19 boulevard de) - 75110", "stop_name": "Jacques-Bonsergent"}, "geometry": {"type": "Point", "coordinates": [2.3605786355872773, 48.87070082326957]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1b44af8c95ed03094d3124f8bd6d64dde44dd123", "fields": {"departement": "75", "stop_lat": 48.876050554237366, "code_postal": "75109", "stop_lon": 2.337908692037609, "coord": [48.876050554237366, 2.337908692037609], "stop_id": 2308, "stop_desc": "Rue de Chateaudun - 75109", "stop_name": "Notre-Dame de Lorette"}, "geometry": {"type": "Point", "coordinates": [2.337908692037609, 48.876050554237366]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b3b82a3ab9c2a32db7f45d94757247f5d399be49", "fields": {"departement": "94", "stop_lat": 48.83510877417377, "code_postal": "94052", "stop_lon": 2.4716839161590887, "coord": [48.83510877417377, 2.4716839161590887], "stop_id": 2305, "stop_desc": "Sortie Parc Auto - 94052", "stop_name": "Nogent-sur-Marne"}, "geometry": {"type": "Point", "coordinates": [2.4716839161590887, 48.83510877417377]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "baefbc197aafa09d3c41b12f9553ae165145453c", "fields": {"departement": "75", "stop_lat": 48.83612743975252, "code_postal": "75113", "stop_lon": 2.3520811178355734, "coord": [48.83612743975252, 2.3520811178355734], "stop_id": 2321, "stop_desc": "Manufacture des Gobelins - 75113", "stop_name": "Les Gobelins"}, "geometry": {"type": "Point", "coordinates": [2.3520811178355734, 48.83612743975252]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "080b5d5149176b8820d406827d290e24d1b9601b", "fields": {"departement": "75", "stop_lat": 48.864965303262494, "code_postal": "75111", "stop_lon": 2.3676324062987537, "coord": [48.864965303262494, 2.3676324062987537], "stop_id": 2310, "stop_desc": "Voltaire (43 boulevard) - 75111", "stop_name": "Oberkampf"}, "geometry": {"type": "Point", "coordinates": [2.3676324062987537, 48.864965303262494]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4ebe6e3d869dcfe87ac279d958c400f923d51c3f", "fields": {"departement": "75", "stop_lat": 48.872985824665165, "code_postal": "75109", "stop_lon": 2.33342622405285, "coord": [48.872985824665165, 2.33342622405285], "stop_id": 2226, "stop_desc": "La Fayette (rue, face aux Galeries La Fayette) - 75109", "stop_name": "Chauss\u00e9e d'Antin (La Fayette)"}, "geometry": {"type": "Point", "coordinates": [2.33342622405285, 48.872985824665165]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "897a37df2efa53cb3b4b0c74310814b7fab5a96c", "fields": {"departement": "75", "stop_lat": 48.85039257831968, "code_postal": "75115", "stop_lon": 2.2936483362305387, "coord": [48.85039257831968, 2.2936483362305387], "stop_id": 2251, "stop_desc": "Grenelle (terre-plein face au 65/68 boulevard de) - 75115", "stop_name": "Dupleix"}, "geometry": {"type": "Point", "coordinates": [2.2936483362305387, 48.85039257831968]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "864d2f4a2995c639e99159398fa5f39b06146b25", "fields": {"departement": "93", "stop_lat": 48.92051450668569, "code_postal": "93027", "stop_lon": 2.410225779120198, "coord": [48.92051450668569, 2.410225779120198], "stop_id": 2236, "stop_desc": "Jean Jaur\u00e8s (57 avenue) - 93027", "stop_name": "La Courneuve-8-Mai-1945"}, "geometry": {"type": "Point", "coordinates": [2.410225779120198, 48.92051450668569]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "02e4bcde5c66b6c8ba8662fcf24f081e20ecb667", "fields": {"departement": "92", "stop_lat": 48.90400543242958, "code_postal": "92024", "stop_lon": 2.3053681208668606, "coord": [48.90400543242958, 2.3053681208668606], "stop_id": 2268, "stop_desc": "Martre (79 rue, 9 et 12 rue Landy) - 92024", "stop_name": "Mairie de Clichy"}, "geometry": {"type": "Point", "coordinates": [2.3053681208668606, 48.90400543242958]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "14dff08ec18761ecd340f61393240d9c1421837f", "fields": {"departement": "93", "stop_lat": 48.880051061772676, "code_postal": "93045", "stop_lon": 2.415660206064229, "coord": [48.880051061772676, 2.415660206064229], "stop_id": 2271, "stop_desc": "Libert\u00e9 (2 boulevard de la) - 93045", "stop_name": "Mairie des Lilas"}, "geometry": {"type": "Point", "coordinates": [2.415660206064229, 48.880051061772676]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8762e4ab736073332319a9ee352a95dd9e83710f", "fields": {"departement": "94", "stop_lat": 48.810385125129486, "code_postal": "94043", "stop_lon": 2.3618306830911315, "coord": [48.810385125129486, 2.3618306830911315], "stop_id": 2250, "stop_desc": "H\u00f4pital Kremlin Bic\u00eatre - 94043", "stop_name": "Le Kremlin-Bic\u00eatre"}, "geometry": {"type": "Point", "coordinates": [2.3618306830911315, 48.810385125129486]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "975a636c4243614d3d7990d396a36ad83b562a68", "fields": {"departement": "78", "stop_lat": 48.94604723230418, "code_postal": "78358", "stop_lon": 2.144251676642267, "coord": [48.94604723230418, 2.144251676642267], "stop_id": 2274, "stop_desc": "Liberation (Place de la) - 78358", "stop_name": "Maisons-Laffitte"}, "geometry": {"type": "Point", "coordinates": [2.144251676642267, 48.94604723230418]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3de1e74c022ee77bb2fbc4929dd6d2a63671e52f", "fields": {"departement": "75", "stop_lat": 48.84753224211661, "code_postal": "75116", "stop_lon": 2.2694792821877074, "coord": [48.84753224211661, 2.2694792821877074], "stop_id": 2256, "stop_desc": "Wilhem (20 rue) - 75116", "stop_name": "Eglise d'Auteuil"}, "geometry": {"type": "Point", "coordinates": [2.2694792821877074, 48.84753224211661]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "01f2448ff9c5d786cfe92b6194db703ffc8d080f", "fields": {"departement": "75", "stop_lat": 48.86371036646956, "code_postal": "75101", "stop_lon": 2.3489831961271017, "coord": [48.86371036646956, 2.3489831961271017], "stop_id": 2259, "stop_desc": "Turbigo (14 rue) - 75101", "stop_name": "Etienne Marcel"}, "geometry": {"type": "Point", "coordinates": [2.3489831961271017, 48.86371036646956]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "06928cd110441437ea88c0cd6596ea238e8c4cad", "fields": {"departement": "75", "stop_lat": 48.84290697853592, "code_postal": "75116", "stop_lon": 2.2601443978808957, "coord": [48.84290697853592, 2.2601443978808957], "stop_id": 2261, "stop_desc": "H\u00f4pital Henry Dunant - 75116", "stop_name": "Exelmans"}, "geometry": {"type": "Point", "coordinates": [2.2601443978808957, 48.84290697853592]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d83b69ba0a460eda87c10369228a065bcadae812", "fields": {"departement": "75", "stop_lat": 48.86146371055862, "code_postal": "75101", "stop_lon": 2.346844131603014, "coord": [48.86146371055862, 2.346844131603014], "stop_id": 2222, "stop_desc": "Forum des Halles Centre G. Pompidou - 75101", "stop_name": "Ch\u00e2telet-Les Halles"}, "geometry": {"type": "Point", "coordinates": [2.346844131603014, 48.86146371055862]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8db2536d3b57e4752bffac180457df4e0445d4a4", "fields": {"departement": "75", "stop_lat": 48.861796247500266, "code_postal": "75101", "stop_lon": 2.346803328707587, "coord": [48.861796247500266, 2.346803328707587], "stop_id": 2223, "stop_desc": "Forum des Halles Centre G. Pompidou - 75101", "stop_name": "Ch\u00e2telet-Les Halles"}, "geometry": {"type": "Point", "coordinates": [2.346803328707587, 48.861796247500266]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "946e056dbb7f10f52f8c4685a3cab1b062dbb5ac", "fields": {"departement": "75", "stop_lat": 48.838751821388634, "code_postal": "75114", "stop_lon": 2.322509186224712, "coord": [48.838751821388634, 2.322509186224712], "stop_id": 2203, "stop_desc": "Maine (avenue du, acc\u00e8s direct au centre commercial) - 75114", "stop_name": "Ga\u00eet\u00e9"}, "geometry": {"type": "Point", "coordinates": [2.322509186224712, 48.838751821388634]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "01acbad8f552a7aff7e6da31528b6176d73db16c", "fields": {"departement": "92", "stop_lat": 48.787756601242194, "code_postal": "92032", "stop_lon": 2.2918918529063417, "coord": [48.787756601242194, 2.2918918529063417], "stop_id": 2197, "stop_desc": "\u00c9cole Normale Sup\u00e9rieure - 92032", "stop_name": "Fontenay-aux-Roses"}, "geometry": {"type": "Point", "coordinates": [2.2918918529063417, 48.787756601242194]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fcba47e125b94ec0be57ad4056ea607c996004f5", "fields": {"departement": "75", "stop_lat": 48.869010427937624, "code_postal": "75108", "stop_lon": 2.3102531808960265, "coord": [48.869010427937624, 2.3102531808960265], "stop_id": 2200, "stop_desc": "Palais de la D\u00e9couverte - 75108", "stop_name": "Franklin-Roosevelt"}, "geometry": {"type": "Point", "coordinates": [2.3102531808960265, 48.869010427937624]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9bc0620b6349b4676171d3ee4f8a8f0045c01dbe", "fields": {"departement": "75", "stop_lat": 48.868812631860955, "code_postal": "75108", "stop_lon": 2.309926324470496, "coord": [48.868812631860955, 2.309926324470496], "stop_id": 2201, "stop_desc": "Palais de la D\u00e9couverte - 75108", "stop_name": "Franklin-Roosevelt"}, "geometry": {"type": "Point", "coordinates": [2.309926324470496, 48.868812631860955]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9c1dbcaa1ba4bad5221ddf4f3830f7b0e0a339b2", "fields": {"departement": "93", "stop_lat": 49.003932007745235, "code_postal": "93073", "stop_lon": 2.56473039106781, "coord": [49.003932007745235, 2.56473039106781], "stop_id": 2224143, "stop_desc": "AEROPORT CHARLES DE GAULLE - 93073", "stop_name": "TERMINAL 2B-2D"}, "geometry": {"type": "Point", "coordinates": [2.56473039106781, 49.003932007745235]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "60d0a711725493d78151459b414290b407d051e3", "fields": {"departement": "75", "stop_lat": 48.87204561942636, "code_postal": "75108", "stop_lon": 2.3007691856449535, "coord": [48.87204561942636, 2.3007691856449535], "stop_id": 2216, "stop_desc": "Champs-Elys\u00e9es (118 avenue des) - 75108", "stop_name": "George V"}, "geometry": {"type": "Point", "coordinates": [2.3007691856449535, 48.87204561942636]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "da430be2063187e9b451d7a3678d3579e014e2e4", "fields": {"departement": "75", "stop_lat": 48.864782700687876, "code_postal": "75120", "stop_lon": 2.398445833771861, "coord": [48.864782700687876, 2.398445833771861], "stop_id": 2205, "stop_desc": "P\u00e8re-Lachaise - 75120", "stop_name": "Gambetta"}, "geometry": {"type": "Point", "coordinates": [2.398445833771861, 48.864782700687876]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a2e9dbb500bb1b0293b75ac5fe351099f33b5f6d", "fields": {"departement": "75", "stop_lat": 48.8720959556315, "code_postal": "75109", "stop_lon": 2.3305924621304466, "coord": [48.8720959556315, 2.3305924621304466], "stop_id": 2224140, "stop_desc": "11 RUE SCRIBE - 75109", "stop_name": "OPERA"}, "geometry": {"type": "Point", "coordinates": [2.3305924621304466, 48.8720959556315]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ab653fdfa08d594f79e233d180b417589a2442b3", "fields": {"departement": "75", "stop_lat": 48.89752915689145, "code_postal": "75119", "stop_lon": 2.3856442301273044, "coord": [48.89752915689145, 2.3856442301273044], "stop_id": 2422, "stop_desc": "Porte de la Villette (avenue de la, terminus PC) - 75119", "stop_name": "Porte de la Villette"}, "geometry": {"type": "Point", "coordinates": [2.3856442301273044, 48.89752915689145]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8f79cca52804052b999998b4d5e4df4a09f0b930", "fields": {"departement": "75", "stop_lat": 48.831111838257115, "code_postal": "75113", "stop_lon": 2.3557961457130645, "coord": [48.831111838257115, 2.3557961457130645], "stop_id": 2404, "stop_desc": "Vincent Auriol (182 boulevard) - 75113", "stop_name": "Place d'Italie"}, "geometry": {"type": "Point", "coordinates": [2.3557961457130645, 48.831111838257115]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ef601a0b7e39d3b2ac2998d7b4be61e8821b1150", "fields": {"departement": "75", "stop_lat": 48.86966057219203, "code_postal": "75102", "stop_lon": 2.3363282816417112, "coord": [48.86966057219203, 2.3363282816417112], "stop_id": 2438, "stop_desc": "Quatre Septembre (20 rue du) - 75102", "stop_name": "Quatre Septembre"}, "geometry": {"type": "Point", "coordinates": [2.3363282816417112, 48.86966057219203]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bd440f0b6fb45a3f72bd23baffa92612ce7ba49d", "fields": {"departement": "75", "stop_lat": 48.888583980971895, "code_postal": "75119", "stop_lon": 2.3924228757185415, "coord": [48.888583980971895, 2.3924228757185415], "stop_id": 2424, "stop_desc": "Parc de la Villette - 75119", "stop_name": "Porte de Pantin"}, "geometry": {"type": "Point", "coordinates": [2.3924228757185415, 48.888583980971895]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7fe7884738b377f433dfedfc43ed5a1348696b07", "fields": {"departement": "75", "stop_lat": 48.87723471669558, "code_postal": "75120", "stop_lon": 2.4065268430480917, "coord": [48.87723471669558, 2.4065268430480917], "stop_id": 2431, "stop_desc": "S\u00e9rurier (Boulevard) - 75120", "stop_name": "Porte des Lilas"}, "geometry": {"type": "Point", "coordinates": [2.4065268430480917, 48.87723471669558]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "703558cdde657955c99f889f0be978cb11f7f8e8", "fields": {"departement": "75", "stop_lat": 48.87800617627899, "code_postal": "75117", "stop_lon": 2.2824656400013326, "coord": [48.87800617627899, 2.2824656400013326], "stop_id": 2433, "stop_desc": "Verdun (16 place de) - 75117", "stop_name": "Porte Maillot"}, "geometry": {"type": "Point", "coordinates": [2.2824656400013326, 48.87800617627899]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9feeaa835cb368c0a66fe6b21ea1cf3bc5e5f6be", "fields": {"departement": "75", "stop_lat": 48.87382117233675, "code_postal": "75120", "stop_lon": 2.384886372197903, "coord": [48.87382117233675, 2.384886372197903], "stop_id": 2436, "stop_desc": "Simon Bolivar (4 avenue) - 75120", "stop_name": "Pyr\u00e9n\u00e9es"}, "geometry": {"type": "Point", "coordinates": [2.384886372197903, 48.87382117233675]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4b9be8778f9c6c1431ab142f1db32eb19de16617", "fields": {"departement": "75", "stop_lat": 48.86338738506552, "code_postal": "75101", "stop_lon": 2.3354838367723683, "coord": [48.86338738506552, 2.3354838367723683], "stop_id": 2384, "stop_desc": "Th\u00e9\u00e2tre de la Com\u00e9die Fran\u00e7aise - Th\u00e9\u00e2tre du Palais Royal - 75101", "stop_name": "Palais-Royal (Mus\u00e9e du Louvre)"}, "geometry": {"type": "Point", "coordinates": [2.3354838367723683, 48.86338738506552]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ddbab334d1a06395c16addc67bdfeeac6d89c68b", "fields": {"departement": "92", "stop_lat": 48.89532514729429, "code_postal": "92050", "stop_lon": 2.1958404738707524, "coord": [48.89532514729429, 2.1958404738707524], "stop_id": 2370, "stop_desc": "Maurice Thorez (rue, intersection avec le boulevard du Couchant) - 92050", "stop_name": "Nanterre-Ville"}, "geometry": {"type": "Point", "coordinates": [2.1958404738707524, 48.89532514729429]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4b3cd3a1a037288480ecaebe414b934a1fa43f59", "fields": {"departement": "75", "stop_lat": 48.847924592785105, "code_postal": "75116", "stop_lon": 2.264235905782418, "coord": [48.847924592785105, 2.264235905782418], "stop_id": 2353, "stop_desc": "Auteuil (55 rue d', angle avec le 1 rue Michel-Ange) - 75116", "stop_name": "Michel-Ange-Auteuil"}, "geometry": {"type": "Point", "coordinates": [2.264235905782418, 48.847924592785105]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "26148964a2267755d1a64a87f6840581a0271154", "fields": {"departement": "92", "stop_lat": 48.90098901400317, "code_postal": "92050", "stop_lon": 2.213791712188878, "coord": [48.90098901400317, 2.213791712188878], "stop_id": 2369, "stop_desc": "Provinces Fran\u00e7aises (boulevard des) - 92050", "stop_name": "Nanterre-Universit\u00e9"}, "geometry": {"type": "Point", "coordinates": [2.213791712188878, 48.90098901400317]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d9e7e916de3853c7a47bbe2c5e372292f45047f8", "fields": {"departement": "75", "stop_lat": 48.862945661667425, "code_postal": "75111", "stop_lon": 2.3868924045430804, "coord": [48.862945661667425, 2.3868924045430804], "stop_id": 2395, "stop_desc": "R\u00e9publique (avenue de la) - 75111", "stop_name": "P\u00e8re-Lachaise"}, "geometry": {"type": "Point", "coordinates": [2.3868924045430804, 48.862945661667425]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1e11c93379058050bd44057d8c147cee367385cb", "fields": {"departement": "75", "stop_lat": 48.865705787623, "code_postal": "75111", "stop_lon": 2.3844293751632057, "coord": [48.865705787623, 2.3844293751632057], "stop_id": 2351, "stop_desc": "M\u00e9nilmontant (139/148 boulevard de) - 75111", "stop_name": "M\u00e9nilmontant"}, "geometry": {"type": "Point", "coordinates": [2.3844293751632057, 48.865705787623]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "22cffc8ec59f5298937c132a8744c8edec1e4788", "fields": {"departement": "75", "stop_lat": 48.86604666963103, "code_postal": "75102", "stop_lon": 2.352620954015186, "coord": [48.86604666963103, 2.352620954015186], "stop_id": 2374, "stop_desc": "Saint-Denis (182 rue) - 75102", "stop_name": "R\u00e9aumur-S\u00e9bastopol"}, "geometry": {"type": "Point", "coordinates": [2.352620954015186, 48.86604666963103]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "86be80126e4a27f6dd609ecc6268273520fb72a5", "fields": {"departement": "75", "stop_lat": 48.8312826555064, "code_postal": "75113", "stop_lon": 2.3554558703645068, "coord": [48.8312826555064, 2.3554558703645068], "stop_id": 2403, "stop_desc": "Vincent Auriol (182 boulevard) - 75113", "stop_name": "Place d'Italie"}, "geometry": {"type": "Point", "coordinates": [2.3554558703645068, 48.8312826555064]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "44fc833fae199448f592829d1ad756a5a2001072", "fields": {"departement": "75", "stop_lat": 48.88202708962622, "code_postal": "75118", "stop_lon": 2.337213801747862, "coord": [48.88202708962622, 2.337213801747862], "stop_id": 2402, "stop_desc": "Clichy (26 boulevard de) - 75118", "stop_name": "Pigalle"}, "geometry": {"type": "Point", "coordinates": [2.337213801747862, 48.88202708962622]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "433b496e69830f069576c3a4d3f389f8b92d9893", "fields": {"departement": "75", "stop_lat": 48.83175809378841, "code_postal": "75114", "stop_lon": 2.3138665498481625, "coord": [48.83175809378841, 2.3138665498481625], "stop_id": 2372, "stop_desc": "H\u00f4pitaux - 75114", "stop_name": "Plaisance"}, "geometry": {"type": "Point", "coordinates": [2.3138665498481625, 48.83175809378841]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9e6f02f4c1a10872fb639c21e58cf676b735d30f", "fields": {"departement": "75", "stop_lat": 48.85344723773834, "code_postal": "75106", "stop_lon": 2.333046326044867, "coord": [48.85344723773834, 2.333046326044867], "stop_id": 2466, "stop_desc": "Saint-Germain (147 boulevard, rue de Rennes) - 75106", "stop_name": "Saint-Germain des Pr\u00e9s"}, "geometry": {"type": "Point", "coordinates": [2.333046326044867, 48.85344723773834]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f818d85d2554bf8651e22019de9b64e5c9d117dd", "fields": {"departement": "75", "stop_lat": 48.8724706657937, "code_postal": "75108", "stop_lon": 2.310769101230354, "coord": [48.8724706657937, 2.310769101230354], "stop_id": 2441, "stop_desc": "Franklin D. Roosevelt (69 avenue) - 75108", "stop_name": "Saint-Philippe du Roule"}, "geometry": {"type": "Point", "coordinates": [2.310769101230354, 48.8724706657937]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2183c5880f962d74edb826735d181d7b7a112a78", "fields": {"departement": "75", "stop_lat": 48.878593955236205, "code_postal": "75109", "stop_lon": 2.3378269689170192, "coord": [48.878593955236205, 2.3378269689170192], "stop_id": 2465, "stop_desc": "Saint-Georges (place, c\u00f4t\u00e9 pair) - 75109", "stop_name": "Saint-Georges"}, "geometry": {"type": "Point", "coordinates": [2.3378269689170192, 48.878593955236205]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "279b6c441ced1277c37138bd3c4af48e26e53b37", "fields": {"departement": "75", "stop_lat": 48.8509825598235, "code_postal": "75107", "stop_lon": 2.31442986460027, "coord": [48.8509825598235, 2.31442986460027], "stop_id": 2464, "stop_desc": "Avenue de Villars - 75107", "stop_name": "Saint-Fran\u00e7ois-Xavier"}, "geometry": {"type": "Point", "coordinates": [2.31442986460027, 48.8509825598235]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6eefb0f1eec54661484945e9840dcc95f0f57aee", "fields": {"departement": "75", "stop_lat": 48.86119339564163, "code_postal": "75104", "stop_lon": 2.3532869598707133, "coord": [48.86119339564163, 2.3532869598707133], "stop_id": 2439, "stop_desc": "Grenier Saint-Lazare (3 rue) - 75104", "stop_name": "Rambuteau"}, "geometry": {"type": "Point", "coordinates": [2.3532869598707133, 48.86119339564163]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c9e57d25f1789ce3c8401f5b50ff4e2462071d28", "fields": {"departement": "92", "stop_lat": 48.88722206053287, "code_postal": "92063", "stop_lon": 2.170623204930391, "coord": [48.88722206053287, 2.170623204930391], "stop_id": 2458, "stop_desc": "Gare routi\u00e8re - 92063", "stop_name": "Rueil-Malmaison"}, "geometry": {"type": "Point", "coordinates": [2.170623204930391, 48.88722206053287]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f0f335d958329f77ca76db83b4c118f07b7df6dd", "fields": {"departement": "75", "stop_lat": 48.87568150641968, "code_postal": "75108", "stop_lon": 2.325591584819959, "coord": [48.87568150641968, 2.325591584819959], "stop_id": 2467, "stop_desc": "Saint-Lazare (95 rue) - 75108", "stop_name": "Saint-Lazare"}, "geometry": {"type": "Point", "coordinates": [2.325591584819959, 48.87568150641968]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d2856f0261610107543ad70c1a904a1105bf87c8", "fields": {"departement": "75", "stop_lat": 48.869864912484076, "code_postal": "75116", "stop_lon": 2.285226207250439, "coord": [48.869864912484076, 2.285226207250439], "stop_id": 2504, "stop_desc": "Victor Hugo (4 place, angle avec l'avenue Raymond Poincarr\u00e9) - 75116", "stop_name": "Victor Hugo"}, "geometry": {"type": "Point", "coordinates": [2.285226207250439, 48.869864912484076]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "08892a57d32416e9cf6af61508f79188b24240fa", "fields": {"departement": "75", "stop_lat": 48.853599907885794, "code_postal": "75105", "stop_lon": 2.3439962410940125, "coord": [48.853599907885794, 2.3439962410940125], "stop_id": 2472, "stop_desc": "Saint-Michel (place, vers le 5 boulevard Saint-Michel) - 75105", "stop_name": "Saint-Michel"}, "geometry": {"type": "Point", "coordinates": [2.3439962410940125, 48.853599907885794]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "263a3ff695c0a94645cbbee350ca814350cce37f", "fields": {"departement": "78", "stop_lat": 48.70286868424979, "code_postal": "78575", "stop_lon": 2.070600214521146, "coord": [48.70286868424979, 2.070600214521146], "stop_id": 2483, "stop_desc": "Ditte (2 rue) - 78575", "stop_name": "Saint-R\u00e9my-l\u00e8s-Chevreuse"}, "geometry": {"type": "Point", "coordinates": [2.070600214521146, 48.70286868424979]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2c177c1c4b5ba7352234cb8cb57623bbd97e2778", "fields": {"departement": "75", "stop_lat": 48.88418929420877, "code_postal": "75119", "stop_lon": 2.367030441974567, "coord": [48.88418929420877, 2.367030441974567], "stop_id": 2484, "stop_desc": "Villette (244/171 boulevard de la) - 75119", "stop_name": "Stalingrad"}, "geometry": {"type": "Point", "coordinates": [2.367030441974567, 48.88418929420877]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2429935074ff82697a3405b402b9afa62bae781b", "fields": {"departement": "77", "stop_lat": 48.95300013565804, "code_postal": "77514", "stop_lon": 2.60203177755109, "coord": [48.95300013565804, 2.60203177755109], "stop_id": 2473, "stop_desc": "19 mars 1962 (2 place du) - 77514", "stop_name": "Villeparisis"}, "geometry": {"type": "Point", "coordinates": [2.60203177755109, 48.95300013565804]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f1166e39fb7e836c49d96e1db428914a94d4aa00", "fields": {"departement": "75", "stop_lat": 48.858533359508236, "code_postal": "75107", "stop_lon": 2.323089248787209, "coord": [48.858533359508236, 2.323089248787209], "stop_id": 2479, "stop_desc": "Saint-Germain (223 boulevard) - 75107", "stop_name": "Solf\u00e9rino"}, "geometry": {"type": "Point", "coordinates": [2.323089248787209, 48.858533359508236]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ffa358bc6af81b5dbda70a04e3c642699c368b89", "fields": {"departement": "75", "stop_lat": 48.87822804050767, "code_postal": "75117", "stop_lon": 2.2981214325821844, "coord": [48.87822804050767, 2.2981214325821844], "stop_id": 2494, "stop_desc": "Ternes (3 place des) - 75117", "stop_name": "Ternes"}, "geometry": {"type": "Point", "coordinates": [2.2981214325821844, 48.87822804050767]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e8a21d9fdc31e212cdaafe200ba059d5f356bf7b", "fields": {"departement": "75", "stop_lat": 48.88132429394468, "code_postal": "75117", "stop_lon": 2.3165967615088174, "coord": [48.88132429394468, 2.3165967615088174], "stop_id": 2509, "stop_desc": "Parc de Monceau - 75117", "stop_name": "Villiers"}, "geometry": {"type": "Point", "coordinates": [2.3165967615088174, 48.88132429394468]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f76383e71eb18882b0b7555666d2bb8e79f6eb19", "fields": {"departement": "75", "stop_lat": 48.865507221530486, "code_postal": "75108", "stop_lon": 2.3203628558611284, "coord": [48.865507221530486, 2.3203628558611284], "stop_id": 3343764, "stop_desc": "Tuileries (jardin des, face au 246 rue de Rivoli et \u00c8 la rue Cambon) PARIS-08 - 75108", "stop_name": "Concorde"}, "geometry": {"type": "Point", "coordinates": [2.3203628558611284, 48.865507221530486]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e9f20baa81c0c955c77d0a9d03f6c5c5adc6e733", "fields": {"departement": "75", "stop_lat": 48.858237481253475, "code_postal": "75101", "stop_lon": 2.3429344426817336, "coord": [48.858237481253475, 2.3429344426817336], "stop_id": 3442418, "stop_desc": "FACE 22 QUAI DE LA MEGISSERIE - 75101", "stop_name": "PONT NEUF - QUAI DU LOUVRE"}, "geometry": {"type": "Point", "coordinates": [2.3429344426817336, 48.858237481253475]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9eec55a5c92fa412d14907a188133e6011700881", "fields": {"departement": "75", "stop_lat": 48.85559527709221, "code_postal": "75106", "stop_lon": 2.340142086729639, "coord": [48.85559527709221, 2.340142086729639], "stop_id": 3442420, "stop_desc": "1 RUE DAUPHINE - 75106", "stop_name": "PONT NEUF - QUAI DES GRANDS AUGUSTINS"}, "geometry": {"type": "Point", "coordinates": [2.340142086729639, 48.85559527709221]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8067d4ae0d13dcc6263df63bca2ef39dcc51e552", "fields": {"departement": "75", "stop_lat": 48.848803206044934, "code_postal": "75115", "stop_lon": 2.29769423466391, "coord": [48.848803206044934, 2.29769423466391], "stop_id": 3343755, "stop_desc": "Pondich\u00e9ry (25 rue de) - 75115", "stop_name": "La Motte-Picquet-Grenelle"}, "geometry": {"type": "Point", "coordinates": [2.29769423466391, 48.848803206044934]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b4d475beeac12ed16923ef7cba0c0cd510aa7754", "fields": {"departement": "75", "stop_lat": 48.86767151899055, "code_postal": "75111", "stop_lon": 2.363329120776082, "coord": [48.86767151899055, 2.363329120776082], "stop_id": 3343778, "stop_desc": "Saint-Martin (9 boulevard) - 75111", "stop_name": "R\u00e9publique"}, "geometry": {"type": "Point", "coordinates": [2.363329120776082, 48.86767151899055]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "11f91aaef2def6d20afab5214d1c7db49ba385d7", "fields": {"departement": "75", "stop_lat": 48.85373962301297, "code_postal": "75104", "stop_lon": 2.3691648178618325, "coord": [48.85373962301297, 2.3691648178618325], "stop_id": 3343785, "stop_desc": "Roquette (rue de la) PARIS-11 - 75104", "stop_name": "Bastille"}, "geometry": {"type": "Point", "coordinates": [2.3691648178618325, 48.85373962301297]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0b955a05c3202159bfb8cd0f5a9a0764c43a693d", "fields": {"departement": "75", "stop_lat": 48.86950712762907, "code_postal": "75108", "stop_lon": 2.324680199591515, "coord": [48.86950712762907, 2.324680199591515], "stop_id": 3343766, "stop_desc": "Tronchet (2 rue, 3 rue Tronchet) - 75108", "stop_name": "Madeleine"}, "geometry": {"type": "Point", "coordinates": [2.324680199591515, 48.86950712762907]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d2cdf1dfa31579870f9e020db7f40eca9000b017", "fields": {"departement": "94", "stop_lat": 48.76876863574218, "code_postal": "94028", "stop_lon": 2.464319398948263, "coord": [48.76876863574218, 2.464319398948263], "stop_id": 3343819, "stop_desc": "Route de Pompadour - 94028", "stop_name": "Pointe du Lac"}, "geometry": {"type": "Point", "coordinates": [2.464319398948263, 48.76876863574218]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "358f1441c5cc19069518fbab9e772b5ddbeb5198", "fields": {"departement": "75", "stop_lat": 48.85758654446453, "code_postal": "75103", "stop_lon": 2.3680366949483758, "coord": [48.85758654446453, 2.3680366949483758], "stop_id": 3343783, "stop_desc": "Place des Vosges - 75103", "stop_name": "Chemin Vert"}, "geometry": {"type": "Point", "coordinates": [2.3680366949483758, 48.85758654446453]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cde437d3e820db64d27c69b8b567997032994946", "fields": {"departement": "75", "stop_lat": 48.84282456767407, "code_postal": "75115", "stop_lon": 2.2922249662205156, "coord": [48.84282456767407, 2.2922249662205156], "stop_id": 3343752, "stop_desc": "F\u00e9lix Faure (place) - 75115", "stop_name": "F\u00e9lix Faure"}, "geometry": {"type": "Point", "coordinates": [2.2922249662205156, 48.84282456767407]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "520fb3ccbdeae8e9eb86bfe86cd6425714d7d06c", "fields": {"departement": "75", "stop_lat": 48.84311093931437, "code_postal": "75115", "stop_lon": 2.323842370185889, "coord": [48.84311093931437, 2.323842370185889], "stop_id": 3442433, "stop_desc": "10 RUE DU DEPART - 75115", "stop_name": "PLACE DU 18 JUIN 1940 - RUE DU DEPART"}, "geometry": {"type": "Point", "coordinates": [2.323842370185889, 48.84311093931437]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "218b1619ce7eb40085c60430f741a7ae93116d7b", "fields": {"departement": "75", "stop_lat": 48.8527642576903, "code_postal": "75106", "stop_lon": 2.338589352407713, "coord": [48.8527642576903, 2.338589352407713], "stop_id": 3442422, "stop_desc": "18 RUE DE L'ANCIENNE COMEDIE - 75106", "stop_name": "SAINT-GERMAIN - ODEON"}, "geometry": {"type": "Point", "coordinates": [2.338589352407713, 48.8527642576903]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "06704a4ff9c909bc70f6a4b06ce3d2c9f1622b3c", "fields": {"departement": "92", "stop_lat": 48.823961475287824, "code_postal": "92075", "stop_lon": 2.2975226085352562, "coord": [48.823961475287824, 2.2975226085352562], "stop_id": 3442452, "stop_desc": "91 RUE JEAN BLEUZEN - 92075", "stop_name": "JEAN JAURES-JEAN BLEUZEN"}, "geometry": {"type": "Point", "coordinates": [2.2975226085352562, 48.823961475287824]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eb2a637e45344f68af9aeb14aff070730370fe05", "fields": {"departement": "75", "stop_lat": 48.82392134347583, "code_postal": "75114", "stop_lon": 2.316415436356412, "coord": [48.82392134347583, 2.316415436356412], "stop_id": 3442446, "stop_desc": "AVENUE MAURICE D'OCAGNE - 75114", "stop_name": "PORTE DE CHATILLON"}, "geometry": {"type": "Point", "coordinates": [2.316415436356412, 48.82392134347583]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4184471e7446a376523529b35222f09398d08e93", "fields": {"departement": "75", "stop_lat": 48.84060312525939, "code_postal": "75114", "stop_lon": 2.3214738516294093, "coord": [48.84060312525939, 2.3214738516294093], "stop_id": 3442435, "stop_desc": "48 AVENUE DU MAINE - 75114", "stop_name": "GARE MONTPARNASSE"}, "geometry": {"type": "Point", "coordinates": [2.3214738516294093, 48.84060312525939]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e25e99119b1155c077c0ccb6c34e79726bf491f9", "fields": {"departement": "75", "stop_lat": 48.826732938096, "code_postal": "75114", "stop_lon": 2.308941175393715, "coord": [48.826732938096, 2.308941175393715], "stop_id": 3442458, "stop_desc": "FACE 59 BOULEVARD BRUNE - 75114", "stop_name": "COLONEL MONTEIL"}, "geometry": {"type": "Point", "coordinates": [2.308941175393715, 48.826732938096]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6937ce04ae780167cb712670505f9c05570b234f", "fields": {"departement": "75", "stop_lat": 48.848297391527026, "code_postal": "75106", "stop_lon": 2.332433937253808, "coord": [48.848297391527026, 2.332433937253808], "stop_id": 3442426, "stop_desc": "4 RUE GUYNEMER - 75106", "stop_name": "MUSEE DU LUXEMBOURG"}, "geometry": {"type": "Point", "coordinates": [2.332433937253808, 48.848297391527026]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aafb21f8a88dc21dfea43bd7975f033ab637c2cb", "fields": {"departement": "75", "stop_lat": 48.83643311204049, "code_postal": "75114", "stop_lon": 2.323204200254015, "coord": [48.83643311204049, 2.323204200254015], "stop_id": 3442439, "stop_desc": "108 AVENUE DU MAINE - 75114", "stop_name": "LOSSERAND - MAINE"}, "geometry": {"type": "Point", "coordinates": [2.323204200254015, 48.83643311204049]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7bce09d8eceb8ff731e4ab2532aa6ff1c3938d56", "fields": {"departement": "75", "stop_lat": 48.84248225530111, "code_postal": "75106", "stop_lon": 2.3286355034590827, "coord": [48.84248225530111, 2.3286355034590827], "stop_id": 3442430, "stop_desc": "103 BOULEVARD DU MONTPARNASSE - 75106", "stop_name": "VAVIN"}, "geometry": {"type": "Point", "coordinates": [2.3286355034590827, 48.84248225530111]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d69b5663594c583a888477348c4a88fbf7dadb0e", "fields": {"departement": "75", "stop_lat": 48.83113950707736, "code_postal": "75114", "stop_lon": 2.3239952116528007, "coord": [48.83113950707736, 2.3239952116528007], "stop_id": 3442442, "stop_desc": "22 RUE DES PLANTES - 75114", "stop_name": "RUE BENARD"}, "geometry": {"type": "Point", "coordinates": [2.3239952116528007, 48.83113950707736]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1c90b6fd6fc7eead572f2053c1ff3bee60d8bf9e", "fields": {"departement": "92", "stop_lat": 48.81947891694374, "code_postal": "92046", "stop_lon": 2.305134231392822, "coord": [48.81947891694374, 2.305134231392822], "stop_id": 3442553, "stop_desc": "123 BOULEVARD GABRIEL PERI - 92046", "stop_name": "PIERRE LAROUSSE - CARREFOUR DU 8 MAI 1945"}, "geometry": {"type": "Point", "coordinates": [2.305134231392822, 48.81947891694374]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "438d25434971d567c2040b09ba684cf35ca34ca6", "fields": {"departement": "92", "stop_lat": 48.81885285245728, "code_postal": "92049", "stop_lon": 2.319942511783087, "coord": [48.81885285245728, 2.319942511783087], "stop_id": 3442548, "stop_desc": "FACE 34 AVENUE DE LA REPUBLIQUE - 92049", "stop_name": "MAIRIE DE MONTROUGE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.319942511783087, 48.81885285245728]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fc2382436409c8934c632bfd1b5767941f15b804", "fields": {"departement": "75", "stop_lat": 48.827848760764425, "code_postal": "75114", "stop_lon": 2.315365692642206, "coord": [48.827848760764425, 2.315365692642206], "stop_id": 3442460, "stop_desc": "113 RUE DIDOT - 75114", "stop_name": "HOPITAUX BROUSSAIS ET SAINT-JOSEPH"}, "geometry": {"type": "Point", "coordinates": [2.315365692642206, 48.827848760764425]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "421a0b8c69a02e5a6aab04d5631f77b7ef469d0e", "fields": {"departement": "92", "stop_lat": 48.81952958782205, "code_postal": "92046", "stop_lon": 2.294749484644549, "coord": [48.81952958782205, 2.294749484644549], "stop_id": 3442557, "stop_desc": "15 BOULEVARD GABRIEL PERI - 92046", "stop_name": "GARE DE VANVES-MALAKOFF"}, "geometry": {"type": "Point", "coordinates": [2.294749484644549, 48.81952958782205]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5223f1364134e58b118976b23f708890cc375925", "fields": {"departement": "92", "stop_lat": 48.82418915289951, "code_postal": "92075", "stop_lon": 2.2824135616300723, "coord": [48.82418915289951, 2.2824135616300723], "stop_id": 3442566, "stop_desc": "45 BOULEVARD DU LYCEE - 92075", "stop_name": "GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.2824135616300723, 48.82418915289951]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bb61123e4f21d268390599006d719d1b9019f835", "fields": {"departement": "92", "stop_lat": 48.83266175071892, "code_postal": "92012", "stop_lon": 2.2481386154768503, "coord": [48.83266175071892, 2.2481386154768503], "stop_id": 3442580, "stop_desc": "63 BOULEVARD DE LA REPUBLIQUE - 92012", "stop_name": "DANJOU"}, "geometry": {"type": "Point", "coordinates": [2.2481386154768503, 48.83266175071892]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5d40d53d4aed783df67f230c0aa259392bb3b238", "fields": {"departement": "92", "stop_lat": 48.83296676630045, "code_postal": "92012", "stop_lon": 2.2473893268242957, "coord": [48.83296676630045, 2.2473893268242957], "stop_id": 3442579, "stop_desc": "68 BOULEVARD DE LA REPUBLIQUE - 92012", "stop_name": "DANJOU"}, "geometry": {"type": "Point", "coordinates": [2.2473893268242957, 48.83296676630045]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1326afeb608b7adf69fff9aa59785f48993bb2e9", "fields": {"departement": "93", "stop_lat": 48.845457082416395, "code_postal": "93051", "stop_lon": 2.5282357489753844, "coord": [48.845457082416395, 2.5282357489753844], "stop_id": 3616879, "stop_desc": "FACE 8 BOULEVARD DU MARECHAL FOCH - 93051", "stop_name": "MARX DORMOY-CARNOT"}, "geometry": {"type": "Point", "coordinates": [2.5282357489753844, 48.845457082416395]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e56ae9a926542e1d86fbbeee95a27f49044fff59", "fields": {"departement": "93", "stop_lat": 48.845457082416395, "code_postal": "93051", "stop_lon": 2.5282357489753844, "coord": [48.845457082416395, 2.5282357489753844], "stop_id": 3616886, "stop_desc": "FACE 8 BOULEVARD DU MARECHAL FOCH - 93051", "stop_name": "MARX DORMOY-CARNOT"}, "geometry": {"type": "Point", "coordinates": [2.5282357489753844, 48.845457082416395]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ccf424e19e5bc226e593cfb01cc39c5134aa75ef", "fields": {"departement": "75", "stop_lat": 48.89028877504466, "code_postal": "75119", "stop_lon": 2.3767786489253644, "coord": [48.89028877504466, 2.3767786489253644], "stop_id": 2093, "stop_desc": "Impasse de Joinville - 75119", "stop_name": "Crim\u00e9e"}, "geometry": {"type": "Point", "coordinates": [2.3767786489253644, 48.89028877504466]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7a6eb19f0b8826c3893510ed8b9a44c490e695c6", "fields": {"departement": "75", "stop_lat": 48.8739310942679, "code_postal": "75108", "stop_lon": 2.295127251650101, "coord": [48.8739310942679, 2.295127251650101], "stop_id": 2147, "stop_desc": "Charles de Gaulle (place, 2 avenue de Wagram) - 75108", "stop_name": "Charles de Gaulle-Etoile"}, "geometry": {"type": "Point", "coordinates": [2.295127251650101, 48.8739310942679]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "20c5e771656fcff3ac1272e8b1fefb6f82e225c7", "fields": {"departement": "75", "stop_lat": 48.856767949540505, "code_postal": "75111", "stop_lon": 2.3707738583843816, "coord": [48.856767949540505, 2.3707738583843816], "stop_id": 2164, "stop_desc": "Richard Lenoir (21 boulevard) - 75111", "stop_name": "Br\u00e9guet-Sabin"}, "geometry": {"type": "Point", "coordinates": [2.3707738583843816, 48.856767949540505]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "607d01fb3edaf4923c3195b7c600a6b1f20b7b95", "fields": {"departement": "75", "stop_lat": 48.875825718038186, "code_postal": "75109", "stop_lon": 2.343345124573273, "coord": [48.875825718038186, 2.343345124573273], "stop_id": 2134, "stop_desc": "La Fayette (terre-plein face au 65 rue) - 75109", "stop_name": "Cadet"}, "geometry": {"type": "Point", "coordinates": [2.343345124573273, 48.875825718038186]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8f4d96fca83493b1d2ab84274372bd241568f568", "fields": {"departement": "95", "stop_lat": 49.03594383494343, "code_postal": "95127", "stop_lon": 2.0801437572429307, "coord": [49.03594383494343, 2.0801437572429307], "stop_id": 2140, "stop_desc": "Boulevard de l'Oise - 95127", "stop_name": "Cergy-Pr\u00e9fecture"}, "geometry": {"type": "Point", "coordinates": [2.0801437572429307, 49.03594383494343]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2640ac4c8c35101afa5e19a8fd2b939c430789d5", "fields": {"departement": "75", "stop_lat": 48.887086283050444, "code_postal": "75118", "stop_lon": 2.3493700732513783, "coord": [48.887086283050444, 2.3493700732513783], "stop_id": 2152, "stop_desc": "Ch\u00e2teau Rouge (48 place du) - 75118", "stop_name": "Ch\u00e2teau Rouge"}, "geometry": {"type": "Point", "coordinates": [2.3493700732513783, 48.887086283050444]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b49f2922ba0080e38d720cd3135f9a5d428302c3", "fields": {"departement": "75", "stop_lat": 48.877803956007845, "code_postal": "75119", "stop_lon": 2.3812110997359883, "coord": [48.877803956007845, 2.3812110997359883], "stop_id": 2132, "stop_desc": "Botzaris (28 rue) - 75119", "stop_name": "Buttes-Chaumont"}, "geometry": {"type": "Point", "coordinates": [2.3812110997359883, 48.877803956007845]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "800aeef102f8ab30f108f8109d0d44ad7eb618d2", "fields": {"departement": "75", "stop_lat": 48.840594300001605, "code_postal": "75105", "stop_lon": 2.351755612946688, "coord": [48.840594300001605, 2.351755612946688], "stop_id": 2139, "stop_desc": "Monge (96 rue) - 75105", "stop_name": "Censier-Daubenton"}, "geometry": {"type": "Point", "coordinates": [2.351755612946688, 48.840594300001605]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1cfc8aff0471c701e9a480f627b0f6a683c3ea04", "fields": {"departement": "75", "stop_lat": 48.86567809641779, "code_postal": "75108", "stop_lon": 2.321193771801867, "coord": [48.86567809641779, 2.321193771801867], "stop_id": 2170, "stop_desc": "Tuileries (jardin des, face au 246 rue de Rivoli et \u00c8 la rue Cambon) PARIS-08 - 75108", "stop_name": "Concorde"}, "geometry": {"type": "Point", "coordinates": [2.321193771801867, 48.86567809641779]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b2e97325cc38613de9ef8fac3d6d0c4fab2e0dd4", "fields": {"departement": "93", "stop_lat": 49.01050190483983, "code_postal": "93073", "stop_lon": 2.5594862673614744, "coord": [49.01050190483983, 2.5594862673614744], "stop_id": 2224154, "stop_desc": "AEROPORT CHARLES DE GAULLE - 93073", "stop_name": "AEROPORT CHARLES DE GAULLE (T3-ROISSYPOLE)"}, "geometry": {"type": "Point", "coordinates": [2.5594862673614744, 49.01050190483983]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4c77d2bf10fa749aa9cdd7c7d2284af6ccbb686c", "fields": {"departement": "75", "stop_lat": 48.84371986136062, "code_postal": "75113", "stop_lon": 2.3639162171627124, "coord": [48.84371986136062, 2.3639162171627124], "stop_id": 2207, "stop_desc": "SNCF/RER C grandes lignes et banlieue - 75113", "stop_name": "Gare d'Austerlitz"}, "geometry": {"type": "Point", "coordinates": [2.3639162171627124, 48.84371986136062]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3c10795826fd6bea316f4d87ccc2ae2a47fa56d5", "fields": {"departement": "93", "stop_lat": 48.857999073258, "code_postal": "93048", "stop_lon": 2.435866895674707, "coord": [48.857999073258, 2.435866895674707], "stop_id": 2183, "stop_desc": "Rue de Paris - 93048", "stop_name": "Croix-de-Chavaux (Jacques Duclos)"}, "geometry": {"type": "Point", "coordinates": [2.435866895674707, 48.857999073258]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6e795a5e5844fe8c497393e92c6aaeeae0086606", "fields": {"departement": "75", "stop_lat": 48.85830005598138, "code_postal": "75101", "stop_lon": 2.347865087577108, "coord": [48.85830005598138, 2.347865087577108], "stop_id": 2219, "stop_desc": "Victoria (7 avenue, 4 rue Saint-Martin) - 75101", "stop_name": "Ch\u00e2telet"}, "geometry": {"type": "Point", "coordinates": [2.347865087577108, 48.85830005598138]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9759f9ea44b2497f437eceee443c6e3c08e54d1e", "fields": {"departement": "77", "stop_lat": 49.00448399424438, "code_postal": "77291", "stop_lon": 2.5765752679900706, "coord": [49.00448399424438, 2.5765752679900706], "stop_id": 2224144, "stop_desc": "AEROPORT CHARLES DE GAULLE - 77291", "stop_name": "TERMINAL-2E-2F"}, "geometry": {"type": "Point", "coordinates": [2.5765752679900706, 49.00448399424438]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "14df313c70fc2d0bc68720baf57bf6d0e2fe3e1a", "fields": {"departement": "75", "stop_lat": 48.82033705689765, "code_postal": "75114", "stop_lon": 2.3396909747101295, "coord": [48.82033705689765, 2.3396909747101295], "stop_id": 2166, "stop_desc": "Jourdan (24 boulevard) - 75114", "stop_name": "Cit\u00e9 Universitaire"}, "geometry": {"type": "Point", "coordinates": [2.3396909747101295, 48.82033705689765]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3a892d4036e948efe08ef3b7452f0543da38281a", "fields": {"departement": "75", "stop_lat": 48.89468154198812, "code_postal": "75119", "stop_lon": 2.382302193974242, "coord": [48.89468154198812, 2.382302193974242], "stop_id": 2175, "stop_desc": "Corentin Cariou (5 avenue) - 75119", "stop_name": "Corentin-Cariou"}, "geometry": {"type": "Point", "coordinates": [2.382302193974242, 48.89468154198812]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "43ec4f3d4650052b1584020ad4ca57c4270dbca6", "fields": {"departement": "92", "stop_lat": 48.82682988739414, "code_postal": "92040", "stop_lon": 2.278966861574341, "coord": [48.82682988739414, 2.278966861574341], "stop_id": 2176, "stop_desc": "Rue Ernest Renan - 92040", "stop_name": "Corentin-Celton"}, "geometry": {"type": "Point", "coordinates": [2.278966861574341, 48.82682988739414]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0221e2c9cabfc14c679f5b8602cc6b1ecaa01714", "fields": {"departement": "75", "stop_lat": 48.89062663302413, "code_postal": "75117", "stop_lon": 2.320191121275328, "coord": [48.89062663302413, 2.320191121275328], "stop_id": 2165, "stop_desc": "March\u00e9 des Batignolles - 75117", "stop_name": "Brochant"}, "geometry": {"type": "Point", "coordinates": [2.320191121275328, 48.89062663302413]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "785da78475c72636074a7ecd969748d9ef3912d2", "fields": {"departement": "92", "stop_lat": 48.833808586980275, "code_postal": "92012", "stop_lon": 2.243480614417395, "coord": [48.833808586980275, 2.243480614417395], "stop_id": 2280, "stop_desc": "Victor Hugo (123 avenue, angle avec le 108 avenue Edouard Vaillant) - 92012", "stop_name": "Marcel Sembat"}, "geometry": {"type": "Point", "coordinates": [2.243480614417395, 48.833808586980275]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aa3470f76286e1a2a31f36468862cf0f7dfcd122", "fields": {"departement": "75", "stop_lat": 48.8734618906704, "code_postal": "75109", "stop_lon": 2.3284804844734768, "coord": [48.8734618906704, 2.3284804844734768], "stop_id": 2285, "stop_desc": "Haussmann (boulevard, c\u00f4t\u00e9 pair et rue du Havre) - 75109", "stop_name": "Havre-Caumartin"}, "geometry": {"type": "Point", "coordinates": [2.3284804844734768, 48.8734618906704]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "38938d6721f58508a4e9796ed08ad688c077b4da", "fields": {"departement": "75", "stop_lat": 48.88232802491925, "code_postal": "75119", "stop_lon": 2.3704769687699216, "coord": [48.88232802491925, 2.3704769687699216], "stop_id": 2298, "stop_desc": "Villette (entr\u00e9e sous viaduc face au 196 boulevard de la) - 75119", "stop_name": "Jaur\u00e8s"}, "geometry": {"type": "Point", "coordinates": [2.3704769687699216, 48.88232802491925]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "073b26c6a713ce6b8a85259100e25f0da74068d4", "fields": {"departement": "75", "stop_lat": 48.85219804523044, "code_postal": "75106", "stop_lon": 2.33878000304498, "coord": [48.85219804523044, 2.33878000304498], "stop_id": 2312, "stop_desc": "Saint-Germain (93 boulevard, rue de l'Ecole de M\u00e9decine) - 75106", "stop_name": "Od\u00e9on"}, "geometry": {"type": "Point", "coordinates": [2.33878000304498, 48.85219804523044]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "83a5bcd257e45a30a2760e19f9dd1d7f577f0900", "fields": {"departement": "92", "stop_lat": 48.891826754836515, "code_postal": "92062", "stop_lon": 2.237992043215619, "coord": [48.891826754836515, 2.237992043215619], "stop_id": 2283, "stop_desc": "Parvis de la D\u00e9fense - 92062", "stop_name": "La D\u00e9fense (Grande Arche)"}, "geometry": {"type": "Point", "coordinates": [2.237992043215619, 48.891826754836515]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c3b6ee860a04b7258b661883f3e3097873de4734", "fields": {"departement": "75", "stop_lat": 48.8814934288588, "code_postal": "75110", "stop_lon": 2.3657752423496143, "coord": [48.8814934288588, 2.3657752423496143], "stop_id": 2328, "stop_desc": "Faubourg Saint-Martin (234 rue du) - 75110", "stop_name": "Louis Blanc"}, "geometry": {"type": "Point", "coordinates": [2.3657752423496143, 48.8814934288588]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4ceeb5c2761148a41ab1184dd7abf63c97b957e5", "fields": {"departement": "78", "stop_lat": 48.89835089406469, "code_postal": "78650", "stop_lon": 2.121828925443024, "coord": [48.89835089406469, 2.121828925443024], "stop_id": 2318, "stop_desc": "Georges Bizet (avenue) - 78650", "stop_name": "Le V\u00e9sinet-Le Pecq"}, "geometry": {"type": "Point", "coordinates": [2.121828925443024, 48.89835089406469]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f4a10e24d3d7e03aab76e0fbe14423e61e6c7486", "fields": {"departement": "75", "stop_lat": 48.893009056051206, "code_postal": "75118", "stop_lon": 2.3274958394904894, "coord": [48.893009056051206, 2.3274958394904894], "stop_id": 2284, "stop_desc": "Saint-Ouen (86 avenue de) - 75118", "stop_name": "Guy-M\u00f4quet"}, "geometry": {"type": "Point", "coordinates": [2.3274958394904894, 48.893009056051206]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b4837936768abe53469839b36a0a8e2d8ec38452", "fields": {"departement": "92", "stop_lat": 48.889269622246026, "code_postal": "92044", "stop_lon": 2.2880551248039036, "coord": [48.889269622246026, 2.2880551248039036], "stop_id": 2329, "stop_desc": "Rue Anatole France - 92044", "stop_name": "Louise Michel"}, "geometry": {"type": "Point", "coordinates": [2.2880551248039036, 48.889269622246026]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7a15d634cd9a626e6b4e5a16473b4d5dc5508be1", "fields": {"departement": "75", "stop_lat": 48.864350199647255, "code_postal": "75116", "stop_lon": 2.2940452637830906, "coord": [48.864350199647255, 2.2940452637830906], "stop_id": 2291, "stop_desc": "Palais d'I\u00e9na - 75116", "stop_name": "I\u00e9na"}, "geometry": {"type": "Point", "coordinates": [2.2940452637830906, 48.864350199647255]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9523e343dfe9772ee6a8c1c3b3fb777ffde8e636", "fields": {"departement": "75", "stop_lat": 48.845056129032, "code_postal": "75116", "stop_lon": 2.261911423279769, "coord": [48.845056129032, 2.261911423279769], "stop_id": 2355, "stop_desc": "Molitor (34 rue, angle avec le 37 rue Michel-Ange) - 75116", "stop_name": "Michel-Ange-Molitor"}, "geometry": {"type": "Point", "coordinates": [2.261911423279769, 48.845056129032]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f73f317931422e78c20a1610e517702276554e04", "fields": {"departement": "75", "stop_lat": 48.87353214061607, "code_postal": "75108", "stop_lon": 2.3155780248661895, "coord": [48.87353214061607, 2.3155780248661895], "stop_id": 2358, "stop_desc": "Percier (1 avenue, angle avec le 42 rue de la Bo\u00cdtie) - 75108", "stop_name": "Miromesnil"}, "geometry": {"type": "Point", "coordinates": [2.3155780248661895, 48.87353214061607]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ce04c56dc0ec0333fb3f0da8e36ae3893b418c36", "fields": {"departement": "75", "stop_lat": 48.84187033630407, "code_postal": "75114", "stop_lon": 2.3212283740035646, "coord": [48.84187033630407, 2.3212283740035646], "stop_id": 2364, "stop_desc": "Raoul Dautry (place, SNCF Montparnasse) - 75114", "stop_name": "Montparnasse-Bienvenue"}, "geometry": {"type": "Point", "coordinates": [2.3212283740035646, 48.84187033630407]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "497924ce2a989556f5570c793bb5451aaa40295b", "fields": {"departement": "92", "stop_lat": 48.829690338022736, "code_postal": "92012", "stop_lon": 2.2305284341923346, "coord": [48.829690338022736, 2.2305284341923346], "stop_id": 2343, "stop_desc": "Sous-Pr\u00e9fecture des Hauts-de-Seine - 92012", "stop_name": "Pont de S\u00e8vres"}, "geometry": {"type": "Point", "coordinates": [2.2305284341923346, 48.829690338022736]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c9900491b0ef36fc54b4fedf6939e879755d9be1", "fields": {"departement": "75", "stop_lat": 48.849716940163574, "code_postal": "75105", "stop_lon": 2.348925558491872, "coord": [48.849716940163574, 2.348925558491872], "stop_id": 2350, "stop_desc": "Saint-Germain (62 boulevard) - 75105", "stop_name": "Maubert-Mutualit\u00e9"}, "geometry": {"type": "Point", "coordinates": [2.348925558491872, 48.849716940163574]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a599dd34921e97b6a7bb4c1a952e90921910d8fa", "fields": {"departement": "75", "stop_lat": 48.84942390087223, "code_postal": "75112", "stop_lon": 2.3970250382993576, "coord": [48.84942390087223, 2.3970250382993576], "stop_id": 2338, "stop_desc": "Nation (terre-plein face au 3 place de la) - 75112", "stop_name": "Nation"}, "geometry": {"type": "Point", "coordinates": [2.3970250382993576, 48.84942390087223]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8e13da87eeca9a85d39c3f8238c047c1ab53784a", "fields": {"departement": "75", "stop_lat": 48.8474552623419, "code_postal": "75112", "stop_lon": 2.3977717436108956, "coord": [48.8474552623419, 2.3977717436108956], "stop_id": 2339, "stop_desc": "Nation (terre-plein face au 3 place de la) - 75112", "stop_name": "Nation"}, "geometry": {"type": "Point", "coordinates": [2.3977717436108956, 48.8474552623419]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4e077d9aa507a075e7c13370caab01faad19ebe6", "fields": {"departement": "75", "stop_lat": 48.88057689074842, "code_postal": "75108", "stop_lon": 2.309415946164807, "coord": [48.88057689074842, 2.309415946164807], "stop_id": 2361, "stop_desc": "R\u00e9publique Dominicaine (1 place de la) - 75108", "stop_name": "Monceau"}, "geometry": {"type": "Point", "coordinates": [2.309415946164807, 48.88057689074842]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "978ec09873ea47a855298d98e3951aea2ac8ffd6", "fields": {"departement": "91", "stop_lat": 48.706049793049075, "code_postal": "91477", "stop_lon": 2.2115654162223874, "coord": [48.706049793049075, 2.2115654162223874], "stop_id": 2332, "stop_desc": "Gare de Loz\u00e8re (place de la) - 91477", "stop_name": "Loz\u00e8re"}, "geometry": {"type": "Point", "coordinates": [2.2115654162223874, 48.706049793049075]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "55f572c19ebac8b2d76f985ea2b3f0d0e81160ae", "fields": {"departement": "75", "stop_lat": 48.85853410228574, "code_postal": "75101", "stop_lon": 2.3421172386659985, "coord": [48.85853410228574, 2.3421172386659985], "stop_id": 2345, "stop_desc": "Samaritaine - 75101", "stop_name": "Pont Neuf"}, "geometry": {"type": "Point", "coordinates": [2.3421172386659985, 48.85853410228574]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fa57178099157a9f86578ffd155f74eca24e1791", "fields": {"departement": "75", "stop_lat": 48.87285998941257, "code_postal": "75109", "stop_lon": 2.3330447509269225, "coord": [48.87285998941257, 2.3330447509269225], "stop_id": 2227, "stop_desc": "La Fayette (rue, face aux Galeries La Fayette) - 75109", "stop_name": "Chauss\u00e9e d'Antin (La Fayette)"}, "geometry": {"type": "Point", "coordinates": [2.3330447509269225, 48.87285998941257]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a6dc56dbec16f7758568d5748208130856cdd60c", "fields": {"departement": "75", "stop_lat": 48.84699250092279, "code_postal": "75107", "stop_lon": 2.3165423447702307, "coord": [48.84699250092279, 2.3165423447702307], "stop_id": 2253, "stop_desc": "L\u00e9on-Paul Fargue (place, 1 boulevard du Montparnasse) - 75107", "stop_name": "Duroc"}, "geometry": {"type": "Point", "coordinates": [2.3165423447702307, 48.84699250092279]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6ebe94f33259adf8ff1fbd8c1a38fcebe818038c", "fields": {"departement": "92", "stop_lat": 48.88835806016618, "code_postal": "92062", "stop_lon": 2.249937212862802, "coord": [48.88835806016618, 2.249937212862802], "stop_id": 2258, "stop_desc": "Quartier Saisons - 92062", "stop_name": "Esplanade de la D\u00e9fense"}, "geometry": {"type": "Point", "coordinates": [2.249937212862802, 48.88835806016618]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b869f47ce7da6d11c2ab24e7460ed6709ffa84f0", "fields": {"departement": "78", "stop_lat": 48.885142071685785, "code_postal": "78146", "stop_lon": 2.155625867018615, "coord": [48.885142071685785, 2.155625867018615], "stop_id": 2225, "stop_desc": "Paul Flament (3 rue) - 78146", "stop_name": "Chatou-Croissy"}, "geometry": {"type": "Point", "coordinates": [2.155625867018615, 48.885142071685785]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "49bd8ed353a651d5278f17691c5cea8326c3b3b1", "fields": {"departement": "91", "stop_lat": 48.70486705428755, "code_postal": "91471", "stop_lon": 2.1912655867174045, "coord": [48.70486705428755, 2.1912655867174045], "stop_id": 2249, "stop_desc": "Versailles (1 rue de) - 91471", "stop_name": "Le Guichet"}, "geometry": {"type": "Point", "coordinates": [2.1912655867174045, 48.70486705428755]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "46dfb42e8f4be60a879efb8c182010cf391c4c04", "fields": {"departement": "75", "stop_lat": 48.8849316105461, "code_postal": "75119", "stop_lon": 2.379091246899838, "coord": [48.8849316105461, 2.379091246899838], "stop_id": 2247, "stop_desc": "Laumi\u00e8re (43 avenue de) - 75119", "stop_name": "Laumi\u00e8re"}, "geometry": {"type": "Point", "coordinates": [2.379091246899838, 48.8849316105461]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f191e8042ec3cbe6a75d55f7dec6e1e446a37c5f", "fields": {"departement": "75", "stop_lat": 48.87524829462498, "code_postal": "75120", "stop_lon": 2.389329434152641, "coord": [48.87524829462498, 2.389329434152641], "stop_id": 2266, "stop_desc": "Palestine (2 rue de) - 75120", "stop_name": "Jourdain"}, "geometry": {"type": "Point", "coordinates": [2.389329434152641, 48.87524829462498]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fb361309690b4f6413916c5a1f23cbe5f33c67b2", "fields": {"departement": "75", "stop_lat": 48.87906043921274, "code_postal": "75108", "stop_lon": 2.3229746324058937, "coord": [48.87906043921274, 2.3229746324058937], "stop_id": 2260, "stop_desc": "Madrid (1 rue de) - 75108", "stop_name": "Europe"}, "geometry": {"type": "Point", "coordinates": [2.3229746324058937, 48.87906043921274]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2b59b249861b7c17d6d6c914f8b2bbcb09d8ccc3", "fields": {"departement": "94", "stop_lat": 48.729564991359986, "code_postal": "94054", "stop_lon": 2.359564239369551, "coord": [48.729564991359986, 2.359564239369551], "stop_id": 22791, "stop_desc": "AEROGARE - 94054", "stop_name": "Orly-Ouest"}, "geometry": {"type": "Point", "coordinates": [2.359564239369551, 48.729564991359986]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "25d98213c6f12b74efb1b3e9ebac2033d43cd279", "fields": {"departement": "94", "stop_lat": 48.7289245757609, "code_postal": "94054", "stop_lon": 2.369359943921722, "coord": [48.7289245757609, 2.369359943921722], "stop_id": 22793, "stop_desc": "AEROGARE - 94054", "stop_name": "Orly-Sud"}, "geometry": {"type": "Point", "coordinates": [2.369359943921722, 48.7289245757609]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "79506663478f31668cf6910f62a8545118470671", "fields": {"departement": "75", "stop_lat": 48.81990244616168, "code_postal": "75113", "stop_lon": 2.364965598290819, "coord": [48.81990244616168, 2.364965598290819], "stop_id": 2418, "stop_desc": "Mass\u00e9na (130 boulevard, vers l'avenue de Choisy) - 75113", "stop_name": "Porte de Choisy"}, "geometry": {"type": "Point", "coordinates": [2.364965598290819, 48.81990244616168]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0d89e9b08509191a296fa23d1c67c2165028ba34", "fields": {"departement": "75", "stop_lat": 48.86408940574645, "code_postal": "75111", "stop_lon": 2.3808997885521195, "coord": [48.86408940574645, 2.3808997885521195], "stop_id": 2471, "stop_desc": "Servan (71 rue, rue Guillaume Bertrand) - 75111", "stop_name": "Rue Saint-Maur"}, "geometry": {"type": "Point", "coordinates": [2.3808997885521195, 48.86408940574645]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bfddb6bb6afe5fc8a47f93640534fe96866fe6ed", "fields": {"departement": "95", "stop_lat": 49.0106207175917, "code_postal": "95527", "stop_lon": 2.563216156469876, "coord": [49.0106207175917, 2.563216156469876], "stop_id": 2451, "stop_desc": "Aeroport de Roissy - 95527", "stop_name": "A\u00e9roport Charles de Gaulle 1"}, "geometry": {"type": "Point", "coordinates": [2.563216156469876, 49.0106207175917]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4750eae6f95f55b3c7df2c52f6d6a2fa8752e887", "fields": {"departement": "93", "stop_lat": 48.92992666527093, "code_postal": "93066", "stop_lon": 2.3561861491888694, "coord": [48.92992666527093, 2.3561861491888694], "stop_id": 2462, "stop_desc": "Stade de France - 93066", "stop_name": "Saint-Denis-Porte de Paris"}, "geometry": {"type": "Point", "coordinates": [2.3561861491888694, 48.92992666527093]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d1c9d3a4acc1c989f55c99458e3077f0131b3e06", "fields": {"departement": "75", "stop_lat": 48.85079359474211, "code_postal": "75104", "stop_lon": 2.3612369937142983, "coord": [48.85079359474211, 2.3612369937142983], "stop_id": 2491, "stop_desc": "Mairie de Paris - Pr\u00e9fecture de Paris - 75104", "stop_name": "Sully-Morland"}, "geometry": {"type": "Point", "coordinates": [2.3612369937142983, 48.85079359474211]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "478b65a97522c5061072cf251590951b5ae4b3f8", "fields": {"departement": "75", "stop_lat": 48.88207083393704, "code_postal": "75117", "stop_lon": 2.3203983393099863, "coord": [48.88207083393704, 2.3203983393099863], "stop_id": 2452, "stop_desc": "Batignolles (60 boulevard des) - 75117", "stop_name": "Rome"}, "geometry": {"type": "Point", "coordinates": [2.3203983393099863, 48.88207083393704]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "20fbb16928c63bfe12ad3a08a614ea1c685c50dd", "fields": {"departement": "75", "stop_lat": 48.85337987781381, "code_postal": "75120", "stop_lon": 2.4104581874163533, "coord": [48.85337987781381, 2.4104581874163533], "stop_id": 2423, "stop_desc": "Porte de Montreuil (4 avenue de la) - 75120", "stop_name": "Porte de Montreuil"}, "geometry": {"type": "Point", "coordinates": [2.4104581874163533, 48.85337987781381]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d3f71670499a4192be67031600a722b67587ab78", "fields": {"departement": "75", "stop_lat": 48.89751173277147, "code_postal": "75118", "stop_lon": 2.329021647212208, "coord": [48.89751173277147, 2.329021647212208], "stop_id": 2426, "stop_desc": "Saint-Ouen (153 avenue de) - 75118", "stop_name": "Porte de Saint-Ouen"}, "geometry": {"type": "Point", "coordinates": [2.329021647212208, 48.89751173277147]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1abe0325634e8fcef4d2d9ddeea2f144f30773d4", "fields": {"departement": "75", "stop_lat": 48.832253452749, "code_postal": "75115", "stop_lon": 2.287864137819189, "coord": [48.832253452749, 2.287864137819189], "stop_id": 2428, "stop_desc": "Victor (73 boulevard) - 75115", "stop_name": "Porte de Versailles"}, "geometry": {"type": "Point", "coordinates": [2.287864137819189, 48.832253452749]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fe7a4f1275dbb7a9fe47829a39ea36c4ad24e574", "fields": {"departement": "75", "stop_lat": 48.86068599199579, "code_postal": "75111", "stop_lon": 2.372410931880202, "coord": [48.86068599199579, 2.372410931880202], "stop_id": 2445, "stop_desc": "Richard Lenoir (65 boulevard) - 75111", "stop_name": "Richard-Lenoir"}, "geometry": {"type": "Point", "coordinates": [2.372410931880202, 48.86068599199579]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "975df3592758c2678e88306cf5b339b10dfcff6c", "fields": {"departement": "93", "stop_lat": 48.97374124286838, "code_postal": "93078", "stop_lon": 2.5147988854756136, "coord": [48.97374124286838, 2.5147988854756136], "stop_id": 2387, "stop_desc": "Parc des expositions - 93078", "stop_name": "Parc des Expositions"}, "geometry": {"type": "Point", "coordinates": [2.5147988854756136, 48.97374124286838]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0bfe0b969088c7e78c77b6b611ecdc7990755fdd", "fields": {"departement": "75", "stop_lat": 48.86761748653104, "code_postal": "75111", "stop_lon": 2.3638195214331654, "coord": [48.86761748653104, 2.3638195214331654], "stop_id": 2377, "stop_desc": "Saint-Martin (9 boulevard) - 75111", "stop_name": "R\u00e9publique"}, "geometry": {"type": "Point", "coordinates": [2.3638195214331654, 48.86761748653104]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b09567951f586de7473ce87d75ca659928951cc3", "fields": {"departement": "75", "stop_lat": 48.864336535483645, "code_postal": "75120", "stop_lon": 2.4088253760377283, "coord": [48.864336535483645, 2.4088253760377283], "stop_id": 2415, "stop_desc": "Py (rue de la) - 75120", "stop_name": "Porte de Bagnolet"}, "geometry": {"type": "Point", "coordinates": [2.4088253760377283, 48.864336535483645]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3139a2df62bcf147b87acecf1c21a6a71a55e3f6", "fields": {"departement": "75", "stop_lat": 48.842012804057696, "code_postal": "75115", "stop_lon": 2.3132900438354906, "coord": [48.842012804057696, 2.3132900438354906], "stop_id": 2391, "stop_desc": "Vaugirard (183 rue de) - 75115", "stop_name": "Pasteur"}, "geometry": {"type": "Point", "coordinates": [2.3132900438354906, 48.842012804057696]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c623c7d9cf2c61f121169abe0e67f39e0338c4e4", "fields": {"departement": "75", "stop_lat": 48.8850310612536, "code_postal": "75117", "stop_lon": 2.2971351115061647, "coord": [48.8850310612536, 2.2971351115061647], "stop_id": 2396, "stop_desc": "Square Albert Besnard - 75117", "stop_name": "Pereire"}, "geometry": {"type": "Point", "coordinates": [2.2971351115061647, 48.8850310612536]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "97dbe18c79c5c258079346ce27764ee67e52849d", "fields": {"departement": "75", "stop_lat": 48.8883932319013, "code_postal": "75119", "stop_lon": 2.374433108884994, "coord": [48.8883932319013, 2.374433108884994], "stop_id": 2448, "stop_desc": "Riquet (19 rue) - 75119", "stop_name": "Riquet"}, "geometry": {"type": "Point", "coordinates": [2.374433108884994, 48.8883932319013]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "74c38526855e8b235859722cfcbad45652cb3b76", "fields": {"departement": "75", "stop_lat": 48.83943928123955, "code_postal": "75115", "stop_lon": 2.3010780424739252, "coord": [48.83943928123955, 2.3010780424739252], "stop_id": 2501, "stop_desc": "Vergenne (square de, vers la rue des Favorites) - 75115", "stop_name": "Vaugirard (Adolphe Ch\u00e9rioux)"}, "geometry": {"type": "Point", "coordinates": [2.3010780424739252, 48.83943928123955]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c1e07df9a8c05d0f14881f304ee8793f56520aeb", "fields": {"departement": "75", "stop_lat": 48.836814988805976, "code_postal": "75115", "stop_lon": 2.2786833464502703, "coord": [48.836814988805976, 2.2786833464502703], "stop_id": 3343334, "stop_desc": "Victor (8 boulevard, angle avec l'avenue de la Porte de S\u00e8vres c\u00f4t\u00e9 pair) - 75115", "stop_name": "Balard"}, "geometry": {"type": "Point", "coordinates": [2.2786833464502703, 48.836814988805976]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "538acb38f9d2ceb591c89b0ab20ace0b9d441e88", "fields": {"departement": "75", "stop_lat": 48.88368010927906, "code_postal": "75109", "stop_lon": 2.3495328036519307, "coord": [48.88368010927906, 2.3495328036519307], "stop_id": 2547, "stop_desc": "Rochechouart (2 boulevard de, vers le boulevard Barb\u00e8s) - 75109", "stop_name": "Barb\u00e8s-Rochechouart"}, "geometry": {"type": "Point", "coordinates": [2.3495328036519307, 48.88368010927906]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e15f7ed3a99bd76f1d2ac72193632fea40cebe64", "fields": {"departement": "75", "stop_lat": 48.87228732058717, "code_postal": "75119", "stop_lon": 2.3767376773224687, "coord": [48.87228732058717, 2.3767376773224687], "stop_id": 2548, "stop_desc": "Villette (terre-plein face au 1 boulevard de la) - 75119", "stop_name": "Belleville"}, "geometry": {"type": "Point", "coordinates": [2.3767376773224687, 48.87228732058717]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ad5ef9bda781c215ea144d2df7fe1a774ff8b2ae", "fields": {"departement": "75", "stop_lat": 48.849018928349764, "code_postal": "75115", "stop_lon": 2.297762160707931, "coord": [48.849018928349764, 2.297762160707931], "stop_id": 2537, "stop_desc": "Pondich\u00e9ry (25 rue de) - 75115", "stop_name": "La Motte-Picquet-Grenelle"}, "geometry": {"type": "Point", "coordinates": [2.297762160707931, 48.849018928349764]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "127ddc58e34661731d62dd157a31d475cf0d530d", "fields": {"departement": "75", "stop_lat": 48.87552244924565, "code_postal": "75120", "stop_lon": 2.3986765111449513, "coord": [48.87552244924565, 2.3986765111449513], "stop_id": 2492, "stop_desc": "Belleville (rue de) - 75120", "stop_name": "T\u00e9l\u00e9graphe"}, "geometry": {"type": "Point", "coordinates": [2.3986765111449513, 48.87552244924565]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e9ae34aafe54ba30acc95d3074c7d896c9550757", "fields": {"departement": "75", "stop_lat": 48.82615945391136, "code_postal": "75113", "stop_lon": 2.3570194661891253, "coord": [48.82615945391136, 2.3570194661891253], "stop_id": 2495, "stop_desc": "Italie (76 avenue d') - 75113", "stop_name": "Tolbiac"}, "geometry": {"type": "Point", "coordinates": [2.3570194661891253, 48.82615945391136]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "47b1ab134a93450b25b0bbeb7ece685179a9e1a4", "fields": {"departement": "75", "stop_lat": 48.85006766800271, "code_postal": "75111", "stop_lon": 2.3844287707416316, "coord": [48.85006766800271, 2.3844287707416316], "stop_id": 3343790, "stop_desc": "Montreuil (1 rue de, face au 196 rue du Faubourg Saint-Antoine) - 75111", "stop_name": "Faidherbe-Chaligny"}, "geometry": {"type": "Point", "coordinates": [2.3844287707416316, 48.85006766800271]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "39b28667b911a6142c352deaac41bea5a431e3ae", "fields": {"departement": "94", "stop_lat": 48.808225347352376, "code_postal": "94046", "stop_lon": 2.4362758210511313, "coord": [48.808225347352376, 2.4362758210511313], "stop_id": 3343809, "stop_desc": "G\u00e9n\u00e9ral Leclerc (26/28 avenue du) - 94046", "stop_name": "Maisons-Alfort-Stade"}, "geometry": {"type": "Point", "coordinates": [2.4362758210511313, 48.808225347352376]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "25311a3b194084f6cccf1698c88879bd712e10a9", "fields": {"departement": "75", "stop_lat": 48.83866812903008, "code_postal": "75115", "stop_lon": 2.2822484883840986, "coord": [48.83866812903008, 2.2822484883840986], "stop_id": 3343337, "stop_desc": "F\u00e9lix Faure (100 avenue, 161 rue de Lourmel) - 75115", "stop_name": "Lourmel"}, "geometry": {"type": "Point", "coordinates": [2.2822484883840986, 48.83866812903008]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c7de3c48cd6cf7eae7ca58a54820fc8d8c3b9ea6", "fields": {"departement": "75", "stop_lat": 48.84721750107955, "code_postal": "75112", "stop_lon": 2.387204177213597, "coord": [48.84721750107955, 2.387204177213597], "stop_id": 3343792, "stop_desc": "Diderot (73 boulevard) - 75112", "stop_name": "Reuilly-Diderot"}, "geometry": {"type": "Point", "coordinates": [2.387204177213597, 48.84721750107955]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fa3c2b47b823d26e44593f475da1f2a591d9bb43", "fields": {"departement": "75", "stop_lat": 48.86307817635541, "code_postal": "75103", "stop_lon": 2.36674588358473, "coord": [48.86307817635541, 2.36674588358473], "stop_id": 3343780, "stop_desc": "Mus\u00e9e Picasso - 75103", "stop_name": "Filles du Calvaire"}, "geometry": {"type": "Point", "coordinates": [2.36674588358473, 48.86307817635541]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0f536b9c7ab15365ddca853fcabd9b01935daa0d", "fields": {"departement": "75", "stop_lat": 48.87200623896137, "code_postal": "75109", "stop_lon": 2.339911390610416, "coord": [48.87200623896137, 2.339911390610416], "stop_id": 3343769, "stop_desc": "Op\u00e9ra Comique - 75109", "stop_name": "Richelieu-Drouot"}, "geometry": {"type": "Point", "coordinates": [2.339911390610416, 48.87200623896137]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "080329fa3839a3b99b389d87fc2c25ebff15eaa2", "fields": {"departement": "75", "stop_lat": 48.85758654446453, "code_postal": "75103", "stop_lon": 2.3680366949483758, "coord": [48.85758654446453, 2.3680366949483758], "stop_id": 3343784, "stop_desc": "Place des Vosges - 75103", "stop_name": "Chemin Vert"}, "geometry": {"type": "Point", "coordinates": [2.3680366949483758, 48.85758654446453]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "790c580f712373fa2d5b87c307be75fca955a7e0", "fields": {"departement": "75", "stop_lat": 48.85426092155411, "code_postal": "75107", "stop_lon": 2.305439560539011, "coord": [48.85426092155411, 2.305439560539011], "stop_id": 3343757, "stop_desc": "Tour Eiffel - 75107", "stop_name": "Ecole Militaire"}, "geometry": {"type": "Point", "coordinates": [2.305439560539011, 48.85426092155411]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b5f718ad8aa9b3857d39ae9c19f172ec0ecd66e5", "fields": {"departement": "75", "stop_lat": 48.84461367199405, "code_postal": "75115", "stop_lon": 2.293802980169146, "coord": [48.84461367199405, 2.293802980169146], "stop_id": 3343754, "stop_desc": "Commerce (21 place du) - 75115", "stop_name": "Commerce"}, "geometry": {"type": "Point", "coordinates": [2.293802980169146, 48.84461367199405]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a7a8df81fa3595c8d5c8210506927f8f3dc848c9", "fields": {"departement": "75", "stop_lat": 48.84102535532167, "code_postal": "75115", "stop_lon": 2.287923867330867, "coord": [48.84102535532167, 2.287923867330867], "stop_id": 3343338, "stop_desc": "Rue F\u00e9lix Faure - 75115", "stop_name": "Boucicaut"}, "geometry": {"type": "Point", "coordinates": [2.287923867330867, 48.84102535532167]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "afd6025b4effea8194be9b0594ad40f4613e3804", "fields": {"departement": "75", "stop_lat": 48.82656426457291, "code_postal": "75114", "stop_lon": 2.3198310418480523, "coord": [48.82656426457291, 2.3198310418480523], "stop_id": 3442444, "stop_desc": "66 RUE DES PLANTES - 75114", "stop_name": "HOP. NOTRE-DAME DE BON SECOURS - A. CHANTIN"}, "geometry": {"type": "Point", "coordinates": [2.3198310418480523, 48.82656426457291]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dd3a18eef74b9bbe76e22f4495281bf1fb436738", "fields": {"departement": "75", "stop_lat": 48.85612555459301, "code_postal": "75106", "stop_lon": 2.339229577879742, "coord": [48.85612555459301, 2.339229577879742], "stop_id": 3442419, "stop_desc": "2 RUE GUENEGAUD - 75106", "stop_name": "PONT NEUF - QUAI DES GRANDS AUGUSTINS"}, "geometry": {"type": "Point", "coordinates": [2.339229577879742, 48.85612555459301]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "521332f7928ff18c742e3ba3c1f513e452890b63", "fields": {"departement": "75", "stop_lat": 48.84291322887416, "code_postal": "75115", "stop_lon": 2.3239785863676334, "coord": [48.84291322887416, 2.3239785863676334], "stop_id": 3442434, "stop_desc": "7 RUE DU DEPART - 75115", "stop_name": "PLACE DU 18 JUIN 1940 - RUE DU DEPART"}, "geometry": {"type": "Point", "coordinates": [2.3239785863676334, 48.84291322887416]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "631b59179383e6fd3ad8700d6a595e975ac5031e", "fields": {"departement": "94", "stop_lat": 48.80250044183061, "code_postal": "94046", "stop_lon": 2.4461836185594534, "coord": [48.80250044183061, 2.4461836185594534], "stop_id": 3343812, "stop_desc": "Louis Pergaud (2 rue) - 94046", "stop_name": "Maisons-Alfort-Les Juilliottes"}, "geometry": {"type": "Point", "coordinates": [2.4461836185594534, 48.80250044183061]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6e84c56d07b11a2ea0276ead10b174505f8a613b", "fields": {"departement": "75", "stop_lat": 48.848665899498116, "code_postal": "75106", "stop_lon": 2.332978623710176, "coord": [48.848665899498116, 2.332978623710176], "stop_id": 3442427, "stop_desc": "FACE 56 RUE DE VAUGIRARD - 75106", "stop_name": "MUSEE DU LUXEMBOURG"}, "geometry": {"type": "Point", "coordinates": [2.332978623710176, 48.848665899498116]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5a002c863131d49a1dccd03c190027ec9aabd9bd", "fields": {"departement": "75", "stop_lat": 48.82530272173102, "code_postal": "75115", "stop_lon": 2.30435474951014, "coord": [48.82530272173102, 2.30435474951014], "stop_id": 3442451, "stop_desc": "AVENUE DE LA PORTE DE VANVES - 75115", "stop_name": "PONT DE LA VALLEE"}, "geometry": {"type": "Point", "coordinates": [2.30435474951014, 48.82530272173102]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d20c8d3a6e8f25eaa0ef396f9952b64db57a41b0", "fields": {"departement": "75", "stop_lat": 48.82691163867317, "code_postal": "75114", "stop_lon": 2.3048165481001295, "coord": [48.82691163867317, 2.3048165481001295], "stop_id": 3442449, "stop_desc": "1 PLACE DE LA PORTE DE VANVES - 75114", "stop_name": "PORTE DE VANVES"}, "geometry": {"type": "Point", "coordinates": [2.3048165481001295, 48.82691163867317]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0005ce51904907339c776a2f655d36eabb885359", "fields": {"departement": "75", "stop_lat": 48.84107050639419, "code_postal": "75114", "stop_lon": 2.3216915658600388, "coord": [48.84107050639419, 2.3216915658600388], "stop_id": 3442436, "stop_desc": "41 AVENUE DU MAINE - 75114", "stop_name": "GARE MONTPARNASSE"}, "geometry": {"type": "Point", "coordinates": [2.3216915658600388, 48.84107050639419]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "33831631eb60ec9adeb690c7502098cd03b90753", "fields": {"departement": "75", "stop_lat": 48.84531353282014, "code_postal": "75106", "stop_lon": 2.332257191655835, "coord": [48.84531353282014, 2.332257191655835], "stop_id": 3442428, "stop_desc": "40 RUE GUYNEMER - 75106", "stop_name": "GUYNEMER-VAVIN"}, "geometry": {"type": "Point", "coordinates": [2.332257191655835, 48.84531353282014]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "533788644fda1d746ee19a73ff780a0569451ee2", "fields": {"departement": "75", "stop_lat": 48.837951981216136, "code_postal": "75114", "stop_lon": 2.322945100085369, "coord": [48.837951981216136, 2.322945100085369], "stop_id": 3442438, "stop_desc": "85-87 AVENUE DU MAINE - 75114", "stop_name": "GAITE"}, "geometry": {"type": "Point", "coordinates": [2.322945100085369, 48.837951981216136]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "88f8d63a68bc6b515e7987db5883cb99d7ea4cc0", "fields": {"departement": "92", "stop_lat": 48.81978606185414, "code_postal": "92046", "stop_lon": 2.311571779769995, "coord": [48.81978606185414, 2.311571779769995], "stop_id": 3442552, "stop_desc": "103 RUE GABRIEL PERI - 92046", "stop_name": "PIERRE BROSSOLETTE - GABRIEL PERI"}, "geometry": {"type": "Point", "coordinates": [2.311571779769995, 48.81978606185414]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5527102fe96ce332de41449307cff22030e01e62", "fields": {"departement": "75", "stop_lat": 48.84462130823025, "code_postal": "75106", "stop_lon": 2.3289347211572275, "coord": [48.84462130823025, 2.3289347211572275], "stop_id": 3442464, "stop_desc": "FACE 114 BOULEVARD RASPAIL - 75106", "stop_name": "NOTRE-DAME-DES-CHAMPS"}, "geometry": {"type": "Point", "coordinates": [2.3289347211572275, 48.84462130823025]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e992b5eb65e818bb4d656b568b20a6e899d130af", "fields": {"departement": "75", "stop_lat": 48.82225073510656, "code_postal": "75114", "stop_lon": 2.3241199820135248, "coord": [48.82225073510656, 2.3241199820135248], "stop_id": 3442544, "stop_desc": "FACE 41 AV ERNEST REYER - 75114", "stop_name": "PORTE D'ORLEANS-METRO"}, "geometry": {"type": "Point", "coordinates": [2.3241199820135248, 48.82225073510656]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9440b1691d91e50cc4fb22a2f95a579ee425be3f", "fields": {"departement": "92", "stop_lat": 48.81911390513648, "code_postal": "92049", "stop_lon": 2.3230319546022735, "coord": [48.81911390513648, 2.3230319546022735], "stop_id": 3442546, "stop_desc": "44 AVENUE HENRI GINOUX - 92049", "stop_name": "GABRIELLE DE GUERCHY"}, "geometry": {"type": "Point", "coordinates": [2.3230319546022735, 48.81911390513648]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aa47714261d03ef9f6395b2eb0c980c76df884e4", "fields": {"departement": "75", "stop_lat": 48.85376186529585, "code_postal": "75106", "stop_lon": 2.3386029974652143, "coord": [48.85376186529585, 2.3386029974652143], "stop_id": 3442468, "stop_desc": "53 RUE DAUPHINE - 75106", "stop_name": "SAINT-ANDRE DES ARTS"}, "geometry": {"type": "Point", "coordinates": [2.3386029974652143, 48.85376186529585]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e60e32f54d2a1edc18da8a5798539c0932bef301", "fields": {"departement": "94", "stop_lat": 48.79015602887761, "code_postal": "94016", "stop_lon": 2.3358672060495254, "coord": [48.79015602887761, 2.3358672060495254], "stop_id": 3786307, "stop_desc": "195 R ETIENNE DOLET - 94016", "stop_name": "RPA LE MOULIN"}, "geometry": {"type": "Point", "coordinates": [2.3358672060495254, 48.79015602887761]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c26367e65f9fdcf32f2885ce6ad5f58f114df144", "fields": {"departement": "94", "stop_lat": 48.792879362288005, "code_postal": "94016", "stop_lon": 2.3357991164731167, "coord": [48.792879362288005, 2.3357991164731167], "stop_id": 3786324, "stop_desc": "FACE 14 AV LOUIS GEORGEON - 94016", "stop_name": "PLACE JACQUES CARAT - THEATRE"}, "geometry": {"type": "Point", "coordinates": [2.3357991164731167, 48.792879362288005]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8e8dd24754f8bb30b24ad322d2d1e65ae04e88ea", "fields": {"departement": "94", "stop_lat": 48.78985943459691, "code_postal": "94016", "stop_lon": 2.3367105749585892, "coord": [48.78985943459691, 2.3367105749585892], "stop_id": 3786325, "stop_desc": "AV LEON BLUM - 94016", "stop_name": "BLUM - BELGRAND"}, "geometry": {"type": "Point", "coordinates": [2.3367105749585892, 48.78985943459691]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dddb72b3f5e0f9a66840ceccfc1f1536e824bb9e", "fields": {"departement": "94", "stop_lat": 48.78876287220421, "code_postal": "94016", "stop_lon": 2.3402471868799903, "coord": [48.78876287220421, 2.3402471868799903], "stop_id": 3786328, "stop_desc": "7 R DU LUNAIN - 94016", "stop_name": "LE COTEAU - LUNAIN"}, "geometry": {"type": "Point", "coordinates": [2.3402471868799903, 48.78876287220421]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "71c85edf3e17558ffca676e20fe2f92e58c96077", "fields": {"departement": "75", "stop_lat": 48.87157474359305, "code_postal": "75109", "stop_lon": 2.3428950319846593, "coord": [48.87157474359305, 2.3428950319846593], "stop_id": 3343771, "stop_desc": "Poissonni\u00e8re (32 boulevard) - 75109", "stop_name": "Grands Boulevards"}, "geometry": {"type": "Point", "coordinates": [2.3428950319846593, 48.87157474359305]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7177ab6c121655dfa3b09f65f8c1b60ce09a2184", "fields": {"departement": "75", "stop_lat": 48.88469617855217, "code_postal": "75118", "stop_lon": 2.342610282962049, "coord": [48.88469617855217, 2.342610282962049], "stop_id": 2551, "stop_desc": "Suzanne Valadon (place) - 75118", "stop_name": "Funiculaire Gare basse"}, "geometry": {"type": "Point", "coordinates": [2.342610282962049, 48.88469617855217]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fa269f637ea739d4c8649095b60de22f3700a3b5", "fields": {"departement": "78", "stop_lat": 48.95518178055726, "code_postal": "78005", "stop_lon": 2.0925262190765865, "coord": [48.95518178055726, 2.0925262190765865], "stop_id": 2771311, "stop_desc": "Gare (Place de la) - 78005", "stop_name": "Ach\u00e8res Grand Cormier"}, "geometry": {"type": "Point", "coordinates": [2.0925262190765865, 48.95518178055726]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "35c3124d61bfed269e40649e9a8e50e9c5d033a4", "fields": {"departement": "75", "stop_lat": 48.87057675358199, "code_postal": "75109", "stop_lon": 2.348494293710928, "coord": [48.87057675358199, 2.348494293710928], "stop_id": 3343774, "stop_desc": "Poissonni\u00e8re (8 boulevard) - 75109", "stop_name": "Bonne Nouvelle"}, "geometry": {"type": "Point", "coordinates": [2.348494293710928, 48.87057675358199]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eb7303781942156b26f184daafef002b1175c1b5", "fields": {"departement": "75", "stop_lat": 48.86109346762053, "code_postal": "75107", "stop_lon": 2.3146433553464374, "coord": [48.86109346762053, 2.3146433553464374], "stop_id": 3343762, "stop_desc": "Universit\u00e9 (rue de l') - 75107", "stop_name": "Invalides"}, "geometry": {"type": "Point", "coordinates": [2.3146433553464374, 48.86109346762053]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3f48bd3b89603e50d384a45076423c7825422eca", "fields": {"departement": "75", "stop_lat": 48.85426092155411, "code_postal": "75107", "stop_lon": 2.305439560539011, "coord": [48.85426092155411, 2.305439560539011], "stop_id": 3343758, "stop_desc": "Tour Eiffel - 75107", "stop_name": "Ecole Militaire"}, "geometry": {"type": "Point", "coordinates": [2.305439560539011, 48.85426092155411]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "97358ef1b305e8f5b47d4c1263810a04b484362e", "fields": {"departement": "75", "stop_lat": 48.84102535532167, "code_postal": "75115", "stop_lon": 2.287923867330867, "coord": [48.84102535532167, 2.287923867330867], "stop_id": 3343339, "stop_desc": "Rue F\u00e9lix Faure - 75115", "stop_name": "Boucicaut"}, "geometry": {"type": "Point", "coordinates": [2.287923867330867, 48.84102535532167]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ca49d259d5cbed681a46f43976893f26b1693db8", "fields": {"departement": "75", "stop_lat": 48.83266034648216, "code_postal": "75112", "stop_lon": 2.4004636384497804, "coord": [48.83266034648216, 2.4004636384497804], "stop_id": 3343802, "stop_desc": "Poniatowsky (68 boulevard, angle avec la rue Ferdinand-de-B\u00e9hagle) - 75112", "stop_name": "Porte de Charenton"}, "geometry": {"type": "Point", "coordinates": [2.4004636384497804, 48.83266034648216]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "49b77f1cc94d45e953cd7606ccb789218f6918ac", "fields": {"departement": "75", "stop_lat": 48.836814988805976, "code_postal": "75115", "stop_lon": 2.2786833464502703, "coord": [48.836814988805976, 2.2786833464502703], "stop_id": 3343335, "stop_desc": "Victor (8 boulevard, angle avec l'avenue de la Porte de S\u00e8vres c\u00f4t\u00e9 pair) - 75115", "stop_name": "Balard"}, "geometry": {"type": "Point", "coordinates": [2.2786833464502703, 48.836814988805976]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1cda54879008ac47703fac6716348221f842711d", "fields": {"departement": "75", "stop_lat": 48.836991037652965, "code_postal": "75112", "stop_lon": 2.402919606870042, "coord": [48.836991037652965, 2.402919606870042], "stop_id": 3343797, "stop_desc": "Daumesnil (253 avenue, 122 rue de Picpus) - 75112", "stop_name": "Michel Bizot"}, "geometry": {"type": "Point", "coordinates": [2.402919606870042, 48.836991037652965]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e6a37876c9af511b3f2c9a821ead1caf298d56ff", "fields": {"departement": "75", "stop_lat": 48.83968214020875, "code_postal": "75112", "stop_lon": 2.3955841703466554, "coord": [48.83968214020875, 2.3955841703466554], "stop_id": 3343796, "stop_desc": "Reuilly (118 rue de) - 75112", "stop_name": "Daumesnil (F\u00e9lix Ebou\u00e9)"}, "geometry": {"type": "Point", "coordinates": [2.3955841703466554, 48.83968214020875]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e5de72b656c5ee9b5b94b0403c1a27f08addd30a", "fields": {"departement": "75", "stop_lat": 48.85119416536367, "code_postal": "75112", "stop_lon": 2.3759317370128947, "coord": [48.85119416536367, 2.3759317370128947], "stop_id": 3343787, "stop_desc": "Rue Traversi\u00e8re - 75112", "stop_name": "Ledru-Rollin"}, "geometry": {"type": "Point", "coordinates": [2.3759317370128947, 48.85119416536367]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a6763d99ad6b8448c47c26f633cad8ac21a242f6", "fields": {"departement": "94", "stop_lat": 48.82563711172796, "code_postal": "94018", "stop_lon": 2.4074108054261223, "coord": [48.82563711172796, 2.4074108054261223], "stop_id": 3343803, "stop_desc": "Rue de Paris - 94018", "stop_name": "Libert\u00e9"}, "geometry": {"type": "Point", "coordinates": [2.4074108054261223, 48.82563711172796]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "01a44ebedf40d1b0f668c710eed5ee928c62a842", "fields": {"departement": "94", "stop_lat": 48.77976663603938, "code_postal": "94028", "stop_lon": 2.4589335139487987, "coord": [48.77976663603938, 2.4589335139487987], "stop_id": 3619293, "stop_desc": "CHEMIN DEPARTEMENTAL (VOIE RAPIDE D1 ) - 94028", "stop_name": "CRETEIL - PREFECTURE METRO"}, "geometry": {"type": "Point", "coordinates": [2.4589335139487987, 48.77976663603938]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b5bf1d8ec08f14cf724420a9af70e743bdc4e288", "fields": {"departement": "94", "stop_lat": 48.79465885728643, "code_postal": "94019", "stop_lon": 2.5335176858054145, "coord": [48.79465885728643, 2.5335176858054145], "stop_id": 3619339, "stop_desc": "FACE 45 RUE ARISTIDE BRIAND - 94019", "stop_name": "HOTEL DE VILLE DE CHENNEVIERES"}, "geometry": {"type": "Point", "coordinates": [2.5335176858054145, 48.79465885728643]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "48f7fbc3b8c48f8853c5fd88c41ec5982436dc81", "fields": {"departement": "94", "stop_lat": 48.782266577868384, "code_postal": "94028", "stop_lon": 2.4576745123491808, "coord": [48.782266577868384, 2.4576745123491808], "stop_id": 3619291, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 94028", "stop_name": "LYCEE SAINT-EXUPERY"}, "geometry": {"type": "Point", "coordinates": [2.4576745123491808, 48.782266577868384]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a7468232af85f107ce352725a8a7f4611adcc420", "fields": {"departement": "94", "stop_lat": 48.78469719889788, "code_postal": "94028", "stop_lon": 2.453790187326245, "coord": [48.78469719889788, 2.453790187326245], "stop_id": 3619285, "stop_desc": "AVENUE DE LA BRECHE - 94028", "stop_name": "PREFECTURE DU VAL-DE-MARNE"}, "geometry": {"type": "Point", "coordinates": [2.453790187326245, 48.78469719889788]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "97fa09eb9ba904d4acd4e19633da6e1652a7f9ba", "fields": {"departement": "94", "stop_lat": 48.77305376447532, "code_postal": "94011", "stop_lon": 2.4960409270950934, "coord": [48.77305376447532, 2.4960409270950934], "stop_id": 3619310, "stop_desc": "AVENUE DU MARECHAL LECLERC - 94011", "stop_name": "PETITS CARREAUX"}, "geometry": {"type": "Point", "coordinates": [2.4960409270950934, 48.77305376447532]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "05894c245388aa0d00b2464a5181410fc7e76cd5", "fields": {"departement": "94", "stop_lat": 48.78561205015402, "code_postal": "94055", "stop_lon": 2.5310488260950703, "coord": [48.78561205015402, 2.5310488260950703], "stop_id": 3619334, "stop_desc": "91-93 RUE D'AMBOILE - 94055", "stop_name": "AMBOILE-CENTRE"}, "geometry": {"type": "Point", "coordinates": [2.5310488260950703, 48.78561205015402]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7538707fdff4c4b582f5c481889cc65497d3dce0", "fields": {"departement": "94", "stop_lat": 48.77372118288226, "code_postal": "94071", "stop_lon": 2.525279536853344, "coord": [48.77372118288226, 2.525279536853344], "stop_id": 3619321, "stop_desc": "RUE DE LA CITE VERTE - 94071", "stop_name": "PLACE DEGAS"}, "geometry": {"type": "Point", "coordinates": [2.525279536853344, 48.77372118288226]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "48c63e1fcde89a160262d9f57153dd5a2f5a0242", "fields": {"departement": "94", "stop_lat": 48.77711868166071, "code_postal": "94028", "stop_lon": 2.472336200280042, "coord": [48.77711868166071, 2.472336200280042], "stop_id": 3619298, "stop_desc": "AVENUE GEORGES DUHAMEL - 94028", "stop_name": "EMOULEUSES"}, "geometry": {"type": "Point", "coordinates": [2.472336200280042, 48.77711868166071]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0f9560b956f978300f56e144c5ea3c3033748e7c", "fields": {"departement": "94", "stop_lat": 48.773093962497526, "code_postal": "94071", "stop_lon": 2.5296830987897496, "coord": [48.773093962497526, 2.5296830987897496], "stop_id": 3619325, "stop_desc": "33 RUE DE NOISEAU - 94071", "stop_name": "RUE DE NOISEAU"}, "geometry": {"type": "Point", "coordinates": [2.5296830987897496, 48.773093962497526]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dd9f092ea61a9b45114edc962e6314197423490b", "fields": {"departement": "94", "stop_lat": 48.78284080780033, "code_postal": "94055", "stop_lon": 2.5328473928197113, "coord": [48.78284080780033, 2.5328473928197113], "stop_id": 3619331, "stop_desc": "6 RUE D'AMBOILE - 94055", "stop_name": "JULES FERRY"}, "geometry": {"type": "Point", "coordinates": [2.5328473928197113, 48.78284080780033]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0b8227cafba84198d96e168678883a884bed5efd", "fields": {"departement": "93", "stop_lat": 48.87478871518722, "code_postal": "93032", "stop_lon": 2.5513562940251218, "coord": [48.87478871518722, 2.5513562940251218], "stop_id": 3616924, "stop_desc": "FACE 43 AVENUE PAUL VAILLANT COUTURIER - 93032", "stop_name": "EMILE COSSONNEAU"}, "geometry": {"type": "Point", "coordinates": [2.5513562940251218, 48.87478871518722]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7f76fb1b4628885471a4f7220753ab809080137b", "fields": {"departement": "93", "stop_lat": 48.90223996317702, "code_postal": "93010", "stop_lon": 2.483050042749421, "coord": [48.90223996317702, 2.483050042749421], "stop_id": 3560241, "stop_desc": "19 AVENUE HENRI BARBUSSE - 93010", "stop_name": "CIMETIERE - HOTEL DE VILLE"}, "geometry": {"type": "Point", "coordinates": [2.483050042749421, 48.90223996317702]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0549ea082c78d8144e70f5c355643b95220c7a1c", "fields": {"departement": "93", "stop_lat": 48.88472982350582, "code_postal": "93032", "stop_lon": 2.535085191366058, "coord": [48.88472982350582, 2.535085191366058], "stop_id": 3616915, "stop_desc": "10 AVENUE DU GENERAL LECLERC - 93032", "stop_name": "CHARLES DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.535085191366058, 48.88472982350582]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "164486a8c452c5fe83e9f1b9ce02b38b8c232234", "fields": {"departement": "93", "stop_lat": 48.88324072702506, "code_postal": "93064", "stop_lon": 2.4904778963421714, "coord": [48.88324072702506, 2.4904778963421714], "stop_id": 3616896, "stop_desc": "190-192 BOULEVARD ALSACE LORRAINE - 93064", "stop_name": "LES MARNAUDES"}, "geometry": {"type": "Point", "coordinates": [2.4904778963421714, 48.88324072702506]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cf0d13bde84d673a7e96f60f5e50b6b5df69f988", "fields": {"departement": "93", "stop_lat": 48.90047672242084, "code_postal": "93010", "stop_lon": 2.4915921312724008, "coord": [48.90047672242084, 2.4915921312724008], "stop_id": 3560245, "stop_desc": "AVENUE HENRI BARBUSSE - 93010", "stop_name": "PROFESSEUR VAILLANT"}, "geometry": {"type": "Point", "coordinates": [2.4915921312724008, 48.90047672242084]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b44f03ec0e6ef37d2e03b75684b57d337c2f4aa4", "fields": {"departement": "93", "stop_lat": 48.90426396581919, "code_postal": "93010", "stop_lon": 2.4738536981285146, "coord": [48.90426396581919, 2.4738536981285146], "stop_id": 3560237, "stop_desc": "1 RUE JULES GUESDE - 93010", "stop_name": "LYCEES PAGNOL - RENOIR"}, "geometry": {"type": "Point", "coordinates": [2.4738536981285146, 48.90426396581919]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "29d3496eea4b772b16a0071ee0637097120715f2", "fields": {"departement": "93", "stop_lat": 48.884923836097904, "code_postal": "93077", "stop_lon": 2.5020799344980236, "coord": [48.884923836097904, 2.5020799344980236], "stop_id": 3616901, "stop_desc": "FACE 67 AV DE ROSNY - 93077", "stop_name": "MEISSONIER"}, "geometry": {"type": "Point", "coordinates": [2.5020799344980236, 48.884923836097904]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3f412f21326e0a9c038a2122ac59873454966ad3", "fields": {"departement": "94", "stop_lat": 48.83798644590723, "code_postal": "94015", "stop_lon": 2.5349478013371, "coord": [48.83798644590723, 2.5349478013371], "stop_id": 3616871, "stop_desc": "AV DES FRERES LUMIERE - 94015", "stop_name": "LA FONTAINE"}, "geometry": {"type": "Point", "coordinates": [2.5349478013371, 48.83798644590723]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e51c84ba365b7405bdabcc4d30979d09cee6e893", "fields": {"departement": "93", "stop_lat": 48.89965852122238, "code_postal": "93057", "stop_lon": 2.505166615160587, "coord": [48.89965852122238, 2.505166615160587], "stop_id": 3560250, "stop_desc": "130 RUE FRANKLIN - 93057", "stop_name": "BRACKLEY"}, "geometry": {"type": "Point", "coordinates": [2.505166615160587, 48.89965852122238]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b3558f9bb1a3b857dbd8857631d6a786b7ccd671", "fields": {"departement": "94", "stop_lat": 48.83440763232223, "code_postal": "94015", "stop_lon": 2.5305367411931674, "coord": [48.83440763232223, 2.5305367411931674], "stop_id": 3616881, "stop_desc": "AV DE L'EUROPE - 94015", "stop_name": "EUROPE"}, "geometry": {"type": "Point", "coordinates": [2.5305367411931674, 48.83440763232223]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a13da8011a0425266fd7d65ef78314b430b033e4", "fields": {"departement": "93", "stop_lat": 48.88093462317009, "code_postal": "93045", "stop_lon": 2.4245460216287285, "coord": [48.88093462317009, 2.4245460216287285], "stop_id": 3560210, "stop_desc": "FACE 1 SQUARE DU DOCTEUR COURCOUX (BD DU GENERAL LECLERC) - 93045", "stop_name": "JOSEPH DEPINAY"}, "geometry": {"type": "Point", "coordinates": [2.4245460216287285, 48.88093462317009]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e4e5a256eecfd76be5c5017c141787817a489a89", "fields": {"departement": "93", "stop_lat": 48.93804193955673, "code_postal": "93007", "stop_lon": 2.4610924751670535, "coord": [48.93804193955673, 2.4610924751670535], "stop_id": 3450651, "stop_desc": "5 AVENUE DE LA REPUBLIQUE - 93007", "stop_name": "HOTEL DE VILLE DU BLANC-MESNIL"}, "geometry": {"type": "Point", "coordinates": [2.4610924751670535, 48.93804193955673]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5d27fd97db104464b782ea1b3e0dc06af4384e29", "fields": {"departement": "93", "stop_lat": 48.936138549421884, "code_postal": "93007", "stop_lon": 2.4678129552915875, "coord": [48.936138549421884, 2.4678129552915875], "stop_id": 3450655, "stop_desc": "FACE 5 RUE EMILE PALADILHE - 93007", "stop_name": "REPUBLIQUE - PALADHILE"}, "geometry": {"type": "Point", "coordinates": [2.4678129552915875, 48.936138549421884]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "04f2ffbecff3a342ca5599b8811b443fdec34d25", "fields": {"departement": "93", "stop_lat": 48.87979861447409, "code_postal": "93045", "stop_lon": 2.4168725562657696, "coord": [48.87979861447409, 2.4168725562657696], "stop_id": 3560206, "stop_desc": "1 BOULEVARD DE LA LIBERTE - 93045", "stop_name": "MAIRIE DES LILAS"}, "geometry": {"type": "Point", "coordinates": [2.4168725562657696, 48.87979861447409]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c54eada1ea8c42fb2fa97db24fb4b476f2682c21", "fields": {"departement": "93", "stop_lat": 48.88021901272251, "code_postal": "93045", "stop_lon": 2.4198164856309488, "coord": [48.88021901272251, 2.4198164856309488], "stop_id": 3560208, "stop_desc": "33 BOULEVARD DE LA LIBERTE - 93045", "stop_name": "MARECHAL JUIN"}, "geometry": {"type": "Point", "coordinates": [2.4198164856309488, 48.88021901272251]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "85ef3ed277d9e097675919b7a71ca499fc17774e", "fields": {"departement": "93", "stop_lat": 48.9044195781789, "code_postal": "93010", "stop_lon": 2.4713593259826454, "coord": [48.9044195781789, 2.4713593259826454], "stop_id": 3560235, "stop_desc": "AVENUE DU GENERAL GALLIENI - 93010", "stop_name": "AVENUE DE ROSNY"}, "geometry": {"type": "Point", "coordinates": [2.4713593259826454, 48.9044195781789]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b0d1fffe01d0b2f8ce570095a127d936d1dca634", "fields": {"departement": "93", "stop_lat": 48.93518871535055, "code_postal": "93029", "stop_lon": 2.45658419184077, "coord": [48.93518871535055, 2.45658419184077], "stop_id": 3450648, "stop_desc": "FACE 242 RUE ANATOLE FRANCE - 93029", "stop_name": "ROGER SALOMON"}, "geometry": {"type": "Point", "coordinates": [2.45658419184077, 48.93518871535055]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "21e6a0bfa627f0fb8f01f851715fef1aaa6b0093", "fields": {"departement": "93", "stop_lat": 48.878911777815574, "code_postal": "93045", "stop_lon": 2.4124018763644015, "coord": [48.878911777815574, 2.4124018763644015], "stop_id": 3560204, "stop_desc": "71 RUE DE PARIS - 93045", "stop_name": "LES BRUYERES"}, "geometry": {"type": "Point", "coordinates": [2.4124018763644015, 48.878911777815574]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "95a97b47ce53809a596f1f8df439eecbf87e7171", "fields": {"departement": "93", "stop_lat": 48.932960982135306, "code_postal": "93029", "stop_lon": 2.455569683574768, "coord": [48.932960982135306, 2.455569683574768], "stop_id": 3450645, "stop_desc": "RUE ANATOLE FRANCE - 93029", "stop_name": "DRANCY RER"}, "geometry": {"type": "Point", "coordinates": [2.455569683574768, 48.932960982135306]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0a82a3f5a56d17e35e0f58a79819c489afea592b", "fields": {"departement": "93", "stop_lat": 48.88638007778591, "code_postal": "93053", "stop_lon": 2.4472457067252935, "coord": [48.88638007778591, 2.4472457067252935], "stop_id": 3560217, "stop_desc": "RUE ANATOLE FRANCE - 93053", "stop_name": "HOCHE"}, "geometry": {"type": "Point", "coordinates": [2.4472457067252935, 48.88638007778591]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5257974021051329c13a0d4ec42220e7bef8e736", "fields": {"departement": "93", "stop_lat": 48.874914218521944, "code_postal": "93032", "stop_lon": 2.551533936826456, "coord": [48.874914218521944, 2.551533936826456], "stop_id": 3616925, "stop_desc": "43 AVENUE PAUL VAILLANT COUTURIER - 93032", "stop_name": "EMILE COSSONNEAU"}, "geometry": {"type": "Point", "coordinates": [2.551533936826456, 48.874914218521944]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a8b78ebb25b312e11bff162d3e5ded9034c7c3cb", "fields": {"departement": "92", "stop_lat": 48.819127003121565, "code_postal": "92046", "stop_lon": 2.300330024470201, "coord": [48.819127003121565, 2.300330024470201], "stop_id": 3619138, "stop_desc": "76 BOULEVARD GABRIEL PERI - 92046", "stop_name": "GABRIEL PERI - ANDRE COIN"}, "geometry": {"type": "Point", "coordinates": [2.300330024470201, 48.819127003121565]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "16caf172bfb1418d48ec874d25e8fc718c02b63b", "fields": {"departement": "92", "stop_lat": 48.808348823377074, "code_postal": "92023", "stop_lon": 2.2744155092732736, "coord": [48.808348823377074, 2.2744155092732736], "stop_id": 3619150, "stop_desc": "125-127 AVENUE MARGUERITE RENAUDIN - 92023", "stop_name": "LAZARE-CARNOT"}, "geometry": {"type": "Point", "coordinates": [2.2744155092732736, 48.808348823377074]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9e0f186c109d47c3500ea22e142985ea38d04cfd", "fields": {"departement": "92", "stop_lat": 48.80004684776907, "code_postal": "92023", "stop_lon": 2.263568550303808, "coord": [48.80004684776907, 2.263568550303808], "stop_id": 3619157, "stop_desc": "FACE 13 RUE DU TROSY - 92023", "stop_name": "MAIRIE DE CLAMART"}, "geometry": {"type": "Point", "coordinates": [2.263568550303808, 48.80004684776907]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "886a5d996e078669399611f4519edb8a0691b9b7", "fields": {"departement": "92", "stop_lat": 48.8150547502173, "code_postal": "92046", "stop_lon": 2.29778800057985, "coord": [48.8150547502173, 2.29778800057985], "stop_id": 3619140, "stop_desc": "RUE GUY MOQUET - 92046", "stop_name": "ETIENNE DOLET-METRO"}, "geometry": {"type": "Point", "coordinates": [2.29778800057985, 48.8150547502173]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "801251c793eb81cd413ab4ecdd863dbb3065d127", "fields": {"departement": "92", "stop_lat": 48.816448613894025, "code_postal": "92046", "stop_lon": 2.3001686149082823, "coord": [48.816448613894025, 2.3001686149082823], "stop_id": 3619168, "stop_desc": "39 R GUY MOCQUET - 92046", "stop_name": "MAURICE THOREZ"}, "geometry": {"type": "Point", "coordinates": [2.3001686149082823, 48.816448613894025]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5859e55a229f63da056ac6330daea789b275e7be", "fields": {"departement": "92", "stop_lat": 48.82165370798791, "code_postal": "92046", "stop_lon": 2.304289007835095, "coord": [48.82165370798791, 2.304289007835095], "stop_id": 3619135, "stop_desc": "57 AVENUE PIERRE LAROUSSE - 92046", "stop_name": "VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.304289007835095, 48.82165370798791]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ba000958477016dc6d5c7b46594699fcc602b8d6", "fields": {"departement": "92", "stop_lat": 48.821788436153035, "code_postal": "92046", "stop_lon": 2.3039758700454707, "coord": [48.821788436153035, 2.3039758700454707], "stop_id": 3619134, "stop_desc": "52 RUE PIERRE LAROUSSE - 92046", "stop_name": "VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.3039758700454707, 48.821788436153035]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "40f251ed7ea5c8f0eaebc3cc40d34f98748f8acf", "fields": {"departement": "92", "stop_lat": 48.82363056919119, "code_postal": "92046", "stop_lon": 2.302776881358612, "coord": [48.82363056919119, 2.302776881358612], "stop_id": 3619133, "stop_desc": "19 AVENUE PIERRE LAROUSSE - 92046", "stop_name": "RUE LEGRAND"}, "geometry": {"type": "Point", "coordinates": [2.302776881358612, 48.82363056919119]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8f84df2f9d19dc64bce627fc5764656f15b91716", "fields": {"departement": "92", "stop_lat": 48.80326001715222, "code_postal": "92023", "stop_lon": 2.256665690411365, "coord": [48.80326001715222, 2.256665690411365], "stop_id": 3619164, "stop_desc": "PLACE DU GARDE - 92023", "stop_name": "PLACE DU GARDE"}, "geometry": {"type": "Point", "coordinates": [2.256665690411365, 48.80326001715222]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "75d017deadfa6d27503db98e3758a0e15d455844", "fields": {"departement": "94", "stop_lat": 48.82004983707806, "code_postal": "94042", "stop_lon": 2.467752300935123, "coord": [48.82004983707806, 2.467752300935123], "stop_id": 3619406, "stop_desc": "PONT DE JOINVILLE - 94042", "stop_name": "CARREFOUR DE LA RESISTANCE"}, "geometry": {"type": "Point", "coordinates": [2.467752300935123, 48.82004983707806]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c627315b8c225ea41204d87e864ab175b5f752ba", "fields": {"departement": "94", "stop_lat": 48.798803625120264, "code_postal": "94019", "stop_lon": 2.5534782632328916, "coord": [48.798803625120264, 2.5534782632328916], "stop_id": 3619348, "stop_desc": "FACE 60 RUE DES BORDES - 94019", "stop_name": "CHAMPLAIN - PAGNOL"}, "geometry": {"type": "Point", "coordinates": [2.5534782632328916, 48.798803625120264]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "68ae76a7cde8ebad07c529493701193ff674d1a5", "fields": {"departement": "94", "stop_lat": 48.80906834632684, "code_postal": "94017", "stop_lon": 2.537736110172869, "coord": [48.80906834632684, 2.537736110172869], "stop_id": 3619365, "stop_desc": "FACE 8 AVENUE DU 11 NOVEMBRE 1918 - 94017", "stop_name": "LES MORDACS"}, "geometry": {"type": "Point", "coordinates": [2.537736110172869, 48.80906834632684]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b99e87baf25c7bc28c5b774453612f989e3911f7", "fields": {"departement": "94", "stop_lat": 48.80877888341456, "code_postal": "94017", "stop_lon": 2.5491789848652577, "coord": [48.80877888341456, 2.5491789848652577], "stop_id": 3619362, "stop_desc": "54 AVENUE SALVADOR ALLENDE - 94017", "stop_name": "FAUVETTES"}, "geometry": {"type": "Point", "coordinates": [2.5491789848652577, 48.80877888341456]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5f81b8290be3f105e79f7b4ef0365104e0bb40bc", "fields": {"departement": "94", "stop_lat": 48.774820427361355, "code_postal": "94071", "stop_lon": 2.511712017594515, "coord": [48.774820427361355, 2.511712017594515], "stop_id": 3619376, "stop_desc": "34 RUE JEAN MOULIN - 94071", "stop_name": "ROLAND CAUCHY"}, "geometry": {"type": "Point", "coordinates": [2.511712017594515, 48.774820427361355]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e6fb21b142ad1557d97e61672869d4261487614d", "fields": {"departement": "94", "stop_lat": 48.77678041014159, "code_postal": "94055", "stop_lon": 2.534347685831769, "coord": [48.77678041014159, 2.534347685831769], "stop_id": 3619375, "stop_desc": "CHEMIN DEPARTEMENTAL 33 - 94055", "stop_name": "LE MORBRAS"}, "geometry": {"type": "Point", "coordinates": [2.534347685831769, 48.77678041014159]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e46280f6ddbcff72f1250f3245ac8c56c18d29c7", "fields": {"departement": "94", "stop_lat": 48.798667298002506, "code_postal": "94019", "stop_lon": 2.533614466637123, "coord": [48.798667298002506, 2.533614466637123], "stop_id": 3619342, "stop_desc": "RUE ARISTIDE BRIAND - 94019", "stop_name": "SAINT-SIMEON"}, "geometry": {"type": "Point", "coordinates": [2.533614466637123, 48.798667298002506]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "432fef0507b7ed4145ffbb1275996278565a7391", "fields": {"departement": "94", "stop_lat": 48.80828822510912, "code_postal": "94017", "stop_lon": 2.5521434116248596, "coord": [48.80828822510912, 2.5521434116248596], "stop_id": 3619360, "stop_desc": "AVENUE SALVADOR ALLENDE - 94017", "stop_name": "VETERANS"}, "geometry": {"type": "Point", "coordinates": [2.5521434116248596, 48.80828822510912]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d522b367179d82910402c10f950ab33c2347b1be", "fields": {"departement": "94", "stop_lat": 48.82337773409919, "code_postal": "94042", "stop_lon": 2.4735863487603935, "coord": [48.82337773409919, 2.4735863487603935], "stop_id": 3619396, "stop_desc": "34 BIS AVENUE FOCH - 94042", "stop_name": "JOUGLA"}, "geometry": {"type": "Point", "coordinates": [2.4735863487603935, 48.82337773409919]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "29f4f8f79f1eeba0f1973eaa7d2058bb5d579c3d", "fields": {"departement": "94", "stop_lat": 48.80636069242165, "code_postal": "94017", "stop_lon": 2.549441253048244, "coord": [48.80636069242165, 2.549441253048244], "stop_id": 3619356, "stop_desc": "PLACE RODIN - 94017", "stop_name": "RODIN"}, "geometry": {"type": "Point", "coordinates": [2.549441253048244, 48.80636069242165]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5f2a1a9f477f382aee0a28a858bf6e70138f20b4", "fields": {"departement": "93", "stop_lat": 48.926903826707964, "code_postal": "93007", "stop_lon": 2.4724677181834087, "coord": [48.926903826707964, 2.4724677181834087], "stop_id": 3450635, "stop_desc": "FACE 86 AVENUE PAUL VAILLANT COUTURIER - 93007", "stop_name": "DANIELLE CASANOVA - PAUL VAILLANT-COUTURIER"}, "geometry": {"type": "Point", "coordinates": [2.4724677181834087, 48.926903826707964]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dff5d88c32a04fe63d6313b8dddd68fe16f63dfe", "fields": {"departement": "93", "stop_lat": 48.911687882007875, "code_postal": "93010", "stop_lon": 2.4809905365254483, "coord": [48.911687882007875, 2.4809905365254483], "stop_id": 3450619, "stop_desc": "ROUTE D'AULNAY - 93010", "stop_name": "ROUTE D'AULNAY - JEAN MOULIN"}, "geometry": {"type": "Point", "coordinates": [2.4809905365254483, 48.911687882007875]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "11755f34eafc0d84ec860d1a44f69c4f0a73ebad", "fields": {"departement": "93", "stop_lat": 48.89462418028901, "code_postal": "93010", "stop_lon": 2.478639719945247, "coord": [48.89462418028901, 2.478639719945247], "stop_id": 3450609, "stop_desc": "FACE 11 R DE LA LIBERTE - 93010", "stop_name": "GARE DE BONDY RER"}, "geometry": {"type": "Point", "coordinates": [2.478639719945247, 48.89462418028901]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "42320b00b6aa8a96842ab7471a6ebd2665eaa904", "fields": {"departement": "93", "stop_lat": 48.92114424225198, "code_postal": "93007", "stop_lon": 2.471538997805475, "coord": [48.92114424225198, 2.471538997805475], "stop_id": 3450629, "stop_desc": "26 AVENUE SURCOUF - 93007", "stop_name": "SURCOUF - JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.471538997805475, 48.92114424225198]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fd32c004957bb77d94de5bc43e2c49b3045972b1", "fields": {"departement": "92", "stop_lat": 48.81242341108164, "code_postal": "92049", "stop_lon": 2.304621473446262, "coord": [48.81242341108164, 2.304621473446262], "stop_id": 3449485, "stop_desc": "128 AVENUE JEAN JAURES - 92049", "stop_name": "SQUARE RENAUDEL"}, "geometry": {"type": "Point", "coordinates": [2.304621473446262, 48.81242341108164]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "26f707e233372eee2939bf9c4ea8c60347af4097", "fields": {"departement": "93", "stop_lat": 48.92527506408324, "code_postal": "93007", "stop_lon": 2.4743318967195087, "coord": [48.92527506408324, 2.4743318967195087], "stop_id": 3450632, "stop_desc": "BOULEVARD JACQUES DECOUR - 93007", "stop_name": "LES 4 TOURS"}, "geometry": {"type": "Point", "coordinates": [2.4743318967195087, 48.92527506408324]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "69470e9f821abd78fddebd6dc5bae4e5001e628a", "fields": {"departement": "93", "stop_lat": 48.900075717229335, "code_postal": "93010", "stop_lon": 2.4816944299365256, "coord": [48.900075717229335, 2.4816944299365256], "stop_id": 3450612, "stop_desc": "49 AVENUE CARNOT - 93010", "stop_name": "BLANQUI - CARNOT"}, "geometry": {"type": "Point", "coordinates": [2.4816944299365256, 48.900075717229335]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a3c1666748176e7ae0888b126e5c5541eb363721", "fields": {"departement": "93", "stop_lat": 48.90667408580478, "code_postal": "93010", "stop_lon": 2.480172263344335, "coord": [48.90667408580478, 2.480172263344335], "stop_id": 3450616, "stop_desc": "ROUTE D'AULNAY - 93010", "stop_name": "AUGUSTE POLISSARD"}, "geometry": {"type": "Point", "coordinates": [2.480172263344335, 48.90667408580478]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cda4d7f1372208c1ad0986c9295f19781f5c9314", "fields": {"departement": "93", "stop_lat": 48.886477030775175, "code_postal": "93064", "stop_lon": 2.4750197118973545, "coord": [48.886477030775175, 2.4750197118973545], "stop_id": 3450601, "stop_desc": "NR - 93064", "stop_name": "ROSNY 2 - NORD"}, "geometry": {"type": "Point", "coordinates": [2.4750197118973545, 48.886477030775175]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c5053b5a3d5d33e786bf541654122d9463cbeefc", "fields": {"departement": "93", "stop_lat": 48.886477030775175, "code_postal": "93064", "stop_lon": 2.4750197118973545, "coord": [48.886477030775175, 2.4750197118973545], "stop_id": 3450602, "stop_desc": "NR - 93064", "stop_name": "ROSNY 2 - NORD"}, "geometry": {"type": "Point", "coordinates": [2.4750197118973545, 48.886477030775175]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "49cac51e8e4ef35bb763630ac78380c30f1a407a", "fields": {"departement": "93", "stop_lat": 48.93818560114375, "code_postal": "93007", "stop_lon": 2.4612155929532555, "coord": [48.93818560114375, 2.4612155929532555], "stop_id": 3450652, "stop_desc": "FACE 5 AVENUE DE LA REPUBLIQUE - 93007", "stop_name": "HOTEL DE VILLE DU BLANC-MESNIL"}, "geometry": {"type": "Point", "coordinates": [2.4612155929532555, 48.93818560114375]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "edd9f3004cac2ff9cc738b2949dd9e6d40bf670f", "fields": {"departement": "94", "stop_lat": 48.825622805704846, "code_postal": "94017", "stop_lon": 2.5096640390169505, "coord": [48.825622805704846, 2.5096640390169505], "stop_id": 3619460, "stop_desc": "FACE 102 RUE DE LA REPUBLIQUE - 94017", "stop_name": "LES BOULLEREAUX - CHAMPIGNY RER"}, "geometry": {"type": "Point", "coordinates": [2.5096640390169505, 48.825622805704846]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "49fee7d31040b81209c7b49872ecc8238b86f950", "fields": {"departement": "94", "stop_lat": 48.8202835765554, "code_postal": "94042", "stop_lon": 2.4676984462794116, "coord": [48.8202835765554, 2.4676984462794116], "stop_id": 3619476, "stop_desc": "PONT DE JOINVILLE - 94042", "stop_name": "CARREFOUR DE LA RESISTANCE"}, "geometry": {"type": "Point", "coordinates": [2.4676984462794116, 48.8202835765554]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5f0395b1df7429af79737fd04f0631f302de60d3", "fields": {"departement": "94", "stop_lat": 48.82459471754629, "code_postal": "94017", "stop_lon": 2.4993565424704043, "coord": [48.82459471754629, 2.4993565424704043], "stop_id": 3619643, "stop_desc": "147 AVENUE DU GENERAL DE GAULLE - 94017", "stop_name": "ANDRE OHRESSER"}, "geometry": {"type": "Point", "coordinates": [2.4993565424704043, 48.82459471754629]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8667849611ee9d2f525b6eb7cb6c842cc6919ed1", "fields": {"departement": "94", "stop_lat": 48.81824154779597, "code_postal": "94017", "stop_lon": 2.4917422856669598, "coord": [48.81824154779597, 2.4917422856669598], "stop_id": 3619414, "stop_desc": "82 BIS AVENUE ROGER SALENGRO - 94017", "stop_name": "ARISTIDE BRIAND - LE PLANT"}, "geometry": {"type": "Point", "coordinates": [2.4917422856669598, 48.81824154779597]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7c01cc4d4a282121a8277765887bfc8bef2f7620", "fields": {"departement": "94", "stop_lat": 48.82079084299171, "code_postal": "94042", "stop_lon": 2.4640384370731963, "coord": [48.82079084299171, 2.4640384370731963], "stop_id": 3619432, "stop_desc": "FACE 11 AVENUE JEAN JAURES - 94042", "stop_name": "JOINVILLE-LE-PONT RER"}, "geometry": {"type": "Point", "coordinates": [2.4640384370731963, 48.82079084299171]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e7f1a096f6f6aeee1949cee3d5eec01676db49dd", "fields": {"departement": "94", "stop_lat": 48.81769756809511, "code_postal": "94017", "stop_lon": 2.4953336852507952, "coord": [48.81769756809511, 2.4953336852507952], "stop_id": 3619417, "stop_desc": "123 AVENUE ROGER SALENGRO - 94017", "stop_name": "JEAN-BAPTISTE CLEMENT"}, "geometry": {"type": "Point", "coordinates": [2.4953336852507952, 48.81769756809511]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "01ba781541a2b2713f52c46a2190c17498344d94", "fields": {"departement": "94", "stop_lat": 48.82004983707806, "code_postal": "94042", "stop_lon": 2.467752300935123, "coord": [48.82004983707806, 2.467752300935123], "stop_id": 3619434, "stop_desc": "PONT DE JOINVILLE - 94042", "stop_name": "CARREFOUR DE LA RESISTANCE"}, "geometry": {"type": "Point", "coordinates": [2.467752300935123, 48.82004983707806]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "66184992be27e5adff3de6269a643214ded4c20c", "fields": {"departement": "94", "stop_lat": 48.81317916036105, "code_postal": "94017", "stop_lon": 2.5128343715435313, "coord": [48.81317916036105, 2.5128343715435313], "stop_id": 3619425, "stop_desc": "43 RUE LOUIS TALAMONI - 94017", "stop_name": "MAIRIE DE CHAMPIGNY"}, "geometry": {"type": "Point", "coordinates": [2.5128343715435313, 48.81317916036105]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "373335b74e92cd63f6015dd0d9dabe1bbf408f2b", "fields": {"departement": "94", "stop_lat": 48.816504806848876, "code_postal": "94017", "stop_lon": 2.500066196243978, "coord": [48.816504806848876, 2.500066196243978], "stop_id": 3619418, "stop_desc": "136 AVENUE ROGER SALENGRO - 94017", "stop_name": "PLAGE DE CHAMPIGNY"}, "geometry": {"type": "Point", "coordinates": [2.500066196243978, 48.816504806848876]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2bad5cafee1eda4970a6f29d595d6fecdc5743ca", "fields": {"departement": "94", "stop_lat": 48.80917715935983, "code_postal": "94017", "stop_lon": 2.5204139292882717, "coord": [48.80917715935983, 2.5204139292882717], "stop_id": 3619431, "stop_desc": "FACE 62 RUE DE MUSSELBURGH - 94017", "stop_name": "JEANNE VACHER"}, "geometry": {"type": "Point", "coordinates": [2.5204139292882717, 48.80917715935983]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "52c2fefd17c5d36c69fac469b2d53bc6f28e1fb9", "fields": {"departement": "94", "stop_lat": 48.8109897662905, "code_postal": "94017", "stop_lon": 2.516433130954408, "coord": [48.8109897662905, 2.516433130954408], "stop_id": 3619429, "stop_desc": "37 RUE DE MUSSELBURGH - 94017", "stop_name": "POLYCLINIQUE"}, "geometry": {"type": "Point", "coordinates": [2.516433130954408, 48.8109897662905]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d5e7a6a71236b8db6019a0f8b340df6781cc6422", "fields": {"departement": "94", "stop_lat": 48.82016401887866, "code_postal": "94042", "stop_lon": 2.477974118109713, "coord": [48.82016401887866, 2.477974118109713], "stop_id": 3619411, "stop_desc": "29 AVENUE GALLIENI - 94042", "stop_name": "LES PLATANES"}, "geometry": {"type": "Point", "coordinates": [2.477974118109713, 48.82016401887866]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b9967a9822a81652db241027ce421514050e6213", "fields": {"departement": "94", "stop_lat": 48.819710075886654, "code_postal": "94042", "stop_lon": 2.4741755742329605, "coord": [48.819710075886654, 2.4741755742329605], "stop_id": 3619408, "stop_desc": "12 PLACE DE VERDUN - 94042", "stop_name": "VERDUN"}, "geometry": {"type": "Point", "coordinates": [2.4741755742329605, 48.819710075886654]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6a773c8678f63cae214393bcea039519832caf7d", "fields": {"departement": "94", "stop_lat": 48.819652504878526, "code_postal": "94017", "stop_lon": 2.511359121916845, "coord": [48.819652504878526, 2.511359121916845], "stop_id": 3619455, "stop_desc": "44 AVENUE DE LA REPUBLIQUE - 94017", "stop_name": "REPUBLIQUE - ALEXANDRE FOURNY"}, "geometry": {"type": "Point", "coordinates": [2.511359121916845, 48.819652504878526]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "af78bd6d3b50e02800350e7a9417b5897deaf21d", "fields": {"departement": "94", "stop_lat": 48.819597917010675, "code_postal": "94017", "stop_lon": 2.485281375382471, "coord": [48.819597917010675, 2.485281375382471], "stop_id": 3619440, "stop_desc": "32-34 AVENUE ROGER SALENGRO - 94017", "stop_name": "LA FOURCHETTE DE CHAMPIGNY"}, "geometry": {"type": "Point", "coordinates": [2.485281375382471, 48.819597917010675]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7441859a4d1047ca8f56601c13ced5efa1454550", "fields": {"departement": "94", "stop_lat": 48.81975942429994, "code_postal": "94017", "stop_lon": 2.485499603323852, "coord": [48.81975942429994, 2.485499603323852], "stop_id": 3619441, "stop_desc": "25 AVENUE ROGER SALENGRO - 94017", "stop_name": "LA FOURCHETTE DE CHAMPIGNY"}, "geometry": {"type": "Point", "coordinates": [2.485499603323852, 48.81975942429994]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0929d4b7505a10ff788c292cbee455dd4d6bf234", "fields": {"departement": "94", "stop_lat": 48.817445659342866, "code_postal": "94017", "stop_lon": 2.4955234559960484, "coord": [48.817445659342866, 2.4955234559960484], "stop_id": 3619444, "stop_desc": "112-114 AVENUE ROGER SALENGRO - 94017", "stop_name": "JEAN-BAPTISTE CLEMENT"}, "geometry": {"type": "Point", "coordinates": [2.4955234559960484, 48.817445659342866]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7b32894f2b309220e91cab491aae04f131285839", "fields": {"departement": "94", "stop_lat": 48.821657491207276, "code_postal": "94017", "stop_lon": 2.510862242190956, "coord": [48.821657491207276, 2.510862242190956], "stop_id": 3619457, "stop_desc": "FACE 65-67 AVENUE DE LA REPUBLIQUE - 94017", "stop_name": "CITES JARDINS"}, "geometry": {"type": "Point", "coordinates": [2.510862242190956, 48.821657491207276]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cb4cc664e4284580cfb323100e41158b5738a1f9", "fields": {"departement": "94", "stop_lat": 48.81659565308598, "code_postal": "94017", "stop_lon": 2.512056569515946, "coord": [48.81659565308598, 2.512056569515946], "stop_id": 3619453, "stop_desc": "12 AVENUE DE LA REPUBLIQUE - 94017", "stop_name": "REPUBLIQUE - STALINGRAD"}, "geometry": {"type": "Point", "coordinates": [2.512056569515946, 48.81659565308598]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5c13211a6bd43bc0fd738e3d40f27845aaca8dd2", "fields": {"departement": "94", "stop_lat": 48.81387624492796, "code_postal": "94017", "stop_lon": 2.50939367172205, "coord": [48.81387624492796, 2.50939367172205], "stop_id": 3619450, "stop_desc": "FACE 85 AVENUE JEAN JAURES - 94017", "stop_name": "MAIRIE - MARCHE"}, "geometry": {"type": "Point", "coordinates": [2.50939367172205, 48.81387624492796]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "baae166a78bec0ac0956752daf305eafd8d1b433", "fields": {"departement": "94", "stop_lat": 48.8140197332999, "code_postal": "94017", "stop_lon": 2.5096118909357625, "coord": [48.8140197332999, 2.5096118909357625], "stop_id": 3619451, "stop_desc": "85 AVENUE JEAN JAURES - 94017", "stop_name": "MAIRIE - MARCHE"}, "geometry": {"type": "Point", "coordinates": [2.5096118909357625, 48.8140197332999]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9c6612ae3df96a74c6cf31dbb4b5dd0138b39979", "fields": {"departement": "94", "stop_lat": 48.81497727135156, "code_postal": "94017", "stop_lon": 2.5062399860581337, "coord": [48.81497727135156, 2.5062399860581337], "stop_id": 3619448, "stop_desc": "42 AVENUE JEAN JAURES - 94017", "stop_name": "GUITTARD"}, "geometry": {"type": "Point", "coordinates": [2.5062399860581337, 48.81497727135156]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f2fe3d846d1c7e15a1c731f3515013c4b2b87dc4", "fields": {"departement": "94", "stop_lat": 48.82052837728242, "code_postal": "94042", "stop_lon": 2.4738102453124604, "coord": [48.82052837728242, 2.4738102453124604], "stop_id": 3619437, "stop_desc": "PLACE DE VERDUN - 94042", "stop_name": "VERDUN"}, "geometry": {"type": "Point", "coordinates": [2.4738102453124604, 48.82052837728242]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7cbc766f07ff30f8cdb2a6a176b4fa104ac3ec33", "fields": {"departement": "94", "stop_lat": 48.81976402522195, "code_postal": "94017", "stop_lon": 2.5321835178900676, "coord": [48.81976402522195, 2.5321835178900676], "stop_id": 3619659, "stop_desc": "RUE DU REGARD DES LUATS - 94017", "stop_name": "CENTRE COMMERCIAL DE CHAMPIGNY-SUR-MARNE"}, "geometry": {"type": "Point", "coordinates": [2.5321835178900676, 48.81976402522195]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0bdc12da47485b3974b4f3e4b7560d139e191889", "fields": {"departement": "94", "stop_lat": 48.81989513235737, "code_postal": "94017", "stop_lon": 2.5113871568131474, "coord": [48.81989513235737, 2.5113871568131474], "stop_id": 3619651, "stop_desc": "3 RUE ALEXANDRE FOURNY - 94017", "stop_name": "REPUBLIQUE - ALEXANDRE FOURNY"}, "geometry": {"type": "Point", "coordinates": [2.5113871568131474, 48.81989513235737]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c0eb2f246e9a7e4142f401846e32c494944a0d93", "fields": {"departement": "94", "stop_lat": 48.8207913927885, "code_postal": "94042", "stop_lon": 2.4635212310090804, "coord": [48.8207913927885, 2.4635212310090804], "stop_id": 3619670, "stop_desc": "AVENUE JEAN JAURES - 94042", "stop_name": "JOINVILLE-LE-PONT RER"}, "geometry": {"type": "Point", "coordinates": [2.4635212310090804, 48.8207913927885]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e7f3d1c00c63c6ed94c5899f60dd01a534478b68", "fields": {"departement": "75", "stop_lat": 48.866523432618784, "code_postal": "75116", "stop_lon": 2.289561581571576, "coord": [48.866523432618784, 2.289561581571576], "stop_id": 4008854, "stop_desc": "86 AVENUE KLEBER - 75116", "stop_name": "KLEBER - BOISSIERE"}, "geometry": {"type": "Point", "coordinates": [2.289561581571576, 48.866523432618784]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e5717cf665235eb76b9d2d5582d918236563145e", "fields": {"departement": "75", "stop_lat": 48.85859000836875, "code_postal": "75116", "stop_lon": 2.2753353224511224, "coord": [48.85859000836875, 2.2753353224511224], "stop_id": 4008863, "stop_desc": "96-98 AVENUE PAUL DOUMER - 75116", "stop_name": "LA MUETTE - BOULAINVILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.2753353224511224, 48.85859000836875]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8c7c980548ace9bcbe00e3a23f21d8a746daeba1", "fields": {"departement": "75", "stop_lat": 48.85105826809167, "code_postal": "75116", "stop_lon": 2.2748404231484485, "coord": [48.85105826809167, 2.2748404231484485], "stop_id": 4008867, "stop_desc": "2-4 AVENUE THEOPHILE GAUTIER - 75116", "stop_name": "THEOPHILE GAUTIER - RUE GROS"}, "geometry": {"type": "Point", "coordinates": [2.2748404231484485, 48.85105826809167]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ae2743aef7433fb6f64ef0f1be014ff7d6340e99", "fields": {"departement": "75", "stop_lat": 48.849789344024416, "code_postal": "75116", "stop_lon": 2.271696118798199, "coord": [48.849789344024416, 2.271696118798199], "stop_id": 4008868, "stop_desc": "34 AVENUE THEOPHILE GAUTIER - 75116", "stop_name": "PERRICHONT"}, "geometry": {"type": "Point", "coordinates": [2.271696118798199, 48.849789344024416]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7bb131d191bb773da5d10935f5bf222a446ef26f", "fields": {"departement": "75", "stop_lat": 48.83953794727566, "code_postal": "75116", "stop_lon": 2.2621781335485744, "coord": [48.83953794727566, 2.2621781335485744], "stop_id": 4008873, "stop_desc": "98 RUE CHARDON LAGACHE - 75116", "stop_name": "VERSAILLES - CHARDON LAGACHE"}, "geometry": {"type": "Point", "coordinates": [2.2621781335485744, 48.83953794727566]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1a179f739ca9a47d9d1708cfe38667d53057d438", "fields": {"departement": "75", "stop_lat": 48.837127452662195, "code_postal": "75116", "stop_lon": 2.2593360874504773, "coord": [48.837127452662195, 2.2593360874504773], "stop_id": 4008876, "stop_desc": "124 BOULEVARD MURAT - 75116", "stop_name": "PORTE DE SAINT-CLOUD - MURAT"}, "geometry": {"type": "Point", "coordinates": [2.2593360874504773, 48.837127452662195]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "be95946841a8dbe67b6f9b976ceafd1d3611b1ca", "fields": {"departement": "75", "stop_lat": 48.83751202198079, "code_postal": "75116", "stop_lon": 2.2564899547503674, "coord": [48.83751202198079, 2.2564899547503674], "stop_id": 4008878, "stop_desc": "PLACE DE LA PORTE DE SAINT CLOUD - 75116", "stop_name": "PORTE DE SAINT-CLOUD"}, "geometry": {"type": "Point", "coordinates": [2.2564899547503674, 48.83751202198079]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4553b038bc9eeaa6b64aad1d298ecc7765e72b62", "fields": {"departement": "92", "stop_lat": 48.82309945572887, "code_postal": "92072", "stop_lon": 2.209321933804203, "coord": [48.82309945572887, 2.209321933804203], "stop_id": 4008898, "stop_desc": "6 AVENUE DE L'EUROPE - 92072", "stop_name": "MARCHE SAINT-ROMAIN"}, "geometry": {"type": "Point", "coordinates": [2.209321933804203, 48.82309945572887]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7b7f18e4b3db4cd2244f45f6b8d64ba8ae2c2fad", "fields": {"departement": "92", "stop_lat": 48.80877507090612, "code_postal": "92022", "stop_lon": 2.1879525193180367, "coord": [48.80877507090612, 2.1879525193180367], "stop_id": 4008913, "stop_desc": "1427 AVENUE ROGER SALENGRO - 92022", "stop_name": "PUITS SANS VIN"}, "geometry": {"type": "Point", "coordinates": [2.1879525193180367, 48.80877507090612]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5f5a930fef4599d2597062dc85b19bc001a7d162", "fields": {"departement": "92", "stop_lat": 48.8123244792222, "code_postal": "92022", "stop_lon": 2.1873435364903364, "coord": [48.8123244792222, 2.1873435364903364], "stop_id": 4008915, "stop_desc": "FACE 23 RUE CARNOT - 92022", "stop_name": "GARE DE CHAVILLE RIVE DROITE"}, "geometry": {"type": "Point", "coordinates": [2.1873435364903364, 48.8123244792222]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b29121a44b30d1e14a613460a01f30921a186ba4", "fields": {"departement": "92", "stop_lat": 48.810936330749946, "code_postal": "92022", "stop_lon": 2.1841768474421084, "coord": [48.810936330749946, 2.1841768474421084], "stop_id": 4008916, "stop_desc": "39 AVENUE DE LA RESISTANCE - 92022", "stop_name": "COLLEGE JEAN MOULIN"}, "geometry": {"type": "Point", "coordinates": [2.1841768474421084, 48.810936330749946]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e8723a73176779b4503d622b65ab28fb0d6d4bab", "fields": {"departement": "92", "stop_lat": 48.826516619377834, "code_postal": "92072", "stop_lon": 2.219835757126419, "coord": [48.826516619377834, 2.219835757126419], "stop_id": 4008923, "stop_desc": "25 BIS GRANDE RUE - 92072", "stop_name": "PARC DE SAINT-CLOUD"}, "geometry": {"type": "Point", "coordinates": [2.219835757126419, 48.826516619377834]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "30c830a240a430e2d9d360fdfcb336e8f89398f1", "fields": {"departement": "92", "stop_lat": 48.81053153554522, "code_postal": "92022", "stop_lon": 2.1910501002131277, "coord": [48.81053153554522, 2.1910501002131277], "stop_id": 4008938, "stop_desc": "AVENUE ROGER SALENGRO - 92022", "stop_name": "COURS GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.1910501002131277, 48.81053153554522]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f89a505081496f1bfa7e943ebf3fed14feaaab37", "fields": {"departement": "92", "stop_lat": 48.80489281197289, "code_postal": "92022", "stop_lon": 2.188331060591998, "coord": [48.80489281197289, 2.188331060591998], "stop_id": 4008942, "stop_desc": "FACE 27 PLACE GASTON ROBERT AUDONNET - 92022", "stop_name": "GARE DE CHAVILLE RIVE GAUCHE"}, "geometry": {"type": "Point", "coordinates": [2.188331060591998, 48.80489281197289]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "150b3f67356e8dec322e1c1800c351a2c95bdc2b", "fields": {"departement": "92", "stop_lat": 48.80489281197289, "code_postal": "92022", "stop_lon": 2.188331060591998, "coord": [48.80489281197289, 2.188331060591998], "stop_id": 4008943, "stop_desc": "FACE 27 PLACE GASTON ROBERT AUDONNET - 92022", "stop_name": "GARE DE CHAVILLE RIVE GAUCHE"}, "geometry": {"type": "Point", "coordinates": [2.188331060591998, 48.80489281197289]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "22da662bf482ddcf32f1804e40cd7f09e0c8cc32", "fields": {"departement": "92", "stop_lat": 48.82642556896797, "code_postal": "92072", "stop_lon": 2.2186517020558836, "coord": [48.82642556896797, 2.2186517020558836], "stop_id": 4008948, "stop_desc": "16 GRANDE RUE - 92072", "stop_name": "PARC DE SAINT-CLOUD"}, "geometry": {"type": "Point", "coordinates": [2.2186517020558836, 48.82642556896797]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b519ddea9232cdde3f51450ef24c775709c2fede", "fields": {"departement": "92", "stop_lat": 48.82309945572887, "code_postal": "92072", "stop_lon": 2.209321933804203, "coord": [48.82309945572887, 2.209321933804203], "stop_id": 4008952, "stop_desc": "6 AVENUE DE L'EUROPE - 92072", "stop_name": "MARCHE SAINT-ROMAIN"}, "geometry": {"type": "Point", "coordinates": [2.209321933804203, 48.82309945572887]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "95a3adda3a70282a1869cebacd891635eeab0d24", "fields": {"departement": "92", "stop_lat": 48.823217271990735, "code_postal": "92072", "stop_lon": 2.2102336043309494, "coord": [48.823217271990735, 2.2102336043309494], "stop_id": 4008953, "stop_desc": "FACE 8 AVENUE DE L'EUROPE - 92072", "stop_name": "MARCHE SAINT-ROMAIN"}, "geometry": {"type": "Point", "coordinates": [2.2102336043309494, 48.823217271990735]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bdfe57368c1954e098b5fe7e02f11c724db3deb4", "fields": {"departement": "92", "stop_lat": 48.821937268907554, "code_postal": "92072", "stop_lon": 2.206765926349108, "coord": [48.821937268907554, 2.206765926349108], "stop_id": 4008955, "stop_desc": "35 AVENUE DE L'EUROPE - 92072", "stop_name": "PLACE GABRIEL PERI"}, "geometry": {"type": "Point", "coordinates": [2.206765926349108, 48.821937268907554]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "99d941f4a34bea1b90bf7deccb2d10df6973e055", "fields": {"departement": "92", "stop_lat": 48.80586789578397, "code_postal": "92022", "stop_lon": 2.1847088505991104, "coord": [48.80586789578397, 2.1847088505991104], "stop_id": 4008969, "stop_desc": "1945 AVENUE ROGER SALENGRO - 92022", "stop_name": "POINTE DE CHAVILLE"}, "geometry": {"type": "Point", "coordinates": [2.1847088505991104, 48.80586789578397]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9fd151ebcb124fe9642b243a2bff95b70466d51f", "fields": {"departement": "78", "stop_lat": 48.80414819244772, "code_postal": "78686", "stop_lon": 2.1691210050365775, "coord": [48.80414819244772, 2.1691210050365775], "stop_id": 4008974, "stop_desc": "142 AVENUE DU GENERAL LECLERC - 78686", "stop_name": "GABRIEL PERI"}, "geometry": {"type": "Point", "coordinates": [2.1691210050365775, 48.80414819244772]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "decbfcb78558a427febdeb7ef6a4d4ee3c1f8aab", "fields": {"departement": "78", "stop_lat": 48.80084836923741, "code_postal": "78686", "stop_lon": 2.162002404212899, "coord": [48.80084836923741, 2.162002404212899], "stop_id": 4008978, "stop_desc": "208-210 AVENUE DU GENERAL LECLERC - 78686", "stop_name": "PIERRE EDOUARD"}, "geometry": {"type": "Point", "coordinates": [2.162002404212899, 48.80084836923741]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "80c3a4d01a41076ba8d1f2fc5971417baaeb366f", "fields": {"departement": "78", "stop_lat": 48.799578569894706, "code_postal": "78686", "stop_lon": 2.1603060428785503, "coord": [48.799578569894706, 2.1603060428785503], "stop_id": 4008981, "stop_desc": "191 AVENUE DU GENERAL LECLERC - 78686", "stop_name": "PLACE LOUIS XIV"}, "geometry": {"type": "Point", "coordinates": [2.1603060428785503, 48.799578569894706]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7bbe330e9a98fe63b61481c7b582a359adfdc47a", "fields": {"departement": "78", "stop_lat": 48.803111083880914, "code_postal": "78646", "stop_lon": 2.127312794193238, "coord": [48.803111083880914, 2.127312794193238], "stop_id": 4008990, "stop_desc": "AVENUE DE PARIS - 78646", "stop_name": "CHATEAU DE VERSAILLES"}, "geometry": {"type": "Point", "coordinates": [2.127312794193238, 48.803111083880914]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aa3758169306d802080ea49db7207bfb22569ee6", "fields": {"departement": "92", "stop_lat": 48.87050610336747, "code_postal": "92073", "stop_lon": 2.22465432200747, "coord": [48.87050610336747, 2.22465432200747], "stop_id": 4008994, "stop_desc": "24-26 AVENUE DU GENERAL DE GAULLE - 92073", "stop_name": "GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.22465432200747, 48.87050610336747]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "60ba1851544d3cd5a7cbc132a932c1e3154e8904", "fields": {"departement": "92", "stop_lat": 48.872093696824585, "code_postal": "92073", "stop_lon": 2.2213538214986417, "coord": [48.872093696824585, 2.2213538214986417], "stop_id": 4008997, "stop_desc": "AVENUE FRANKLIN ROOSEVELT - 92073", "stop_name": "GARE DU MONT VALERIEN - HOPITAL FOCH"}, "geometry": {"type": "Point", "coordinates": [2.2213538214986417, 48.872093696824585]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fb18ca52da68dd6946ea8affd9d18428939558b1", "fields": {"departement": "92", "stop_lat": 48.87390089763454, "code_postal": "92073", "stop_lon": 2.2221263872228336, "coord": [48.87390089763454, 2.2221263872228336], "stop_id": 4008999, "stop_desc": "4 RUE VICTOR HUGO - 92073", "stop_name": "VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.2221263872228336, 48.87390089763454]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c163e8d573a49f8cd94e64c6881691ce93d3fb69", "fields": {"departement": "92", "stop_lat": 48.878234244641455, "code_postal": "92073", "stop_lon": 2.2236564792468743, "coord": [48.878234244641455, 2.2236564792468743], "stop_id": 4009001, "stop_desc": "RUE VOLTAIRE - 92073", "stop_name": "LYCEE PAUL LANGEVIN"}, "geometry": {"type": "Point", "coordinates": [2.2236564792468743, 48.878234244641455]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "80a2416bab9bfa7fbff8486b222fee2bea5959e7", "fields": {"departement": "92", "stop_lat": 48.88016607558125, "code_postal": "92073", "stop_lon": 2.223202577904025, "coord": [48.88016607558125, 2.223202577904025], "stop_id": 4009004, "stop_desc": "RUE DES CHENES - 92073", "stop_name": "LES CHENES"}, "geometry": {"type": "Point", "coordinates": [2.223202577904025, 48.88016607558125]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "36b2ccb2657199c9b94416db1d4ea21bbc09d5b1", "fields": {"departement": "92", "stop_lat": 48.86357949867925, "code_postal": "92073", "stop_lon": 2.2013485826677246, "coord": [48.86357949867925, 2.2013485826677246], "stop_id": 4009012, "stop_desc": "1 AVENUE DE L'ABBE SAINT PIERRE - 92073", "stop_name": "PLACE DE STALINGRAD"}, "geometry": {"type": "Point", "coordinates": [2.2013485826677246, 48.86357949867925]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e28cbe8dbdab8a3eaa4afc0acde6bffdd71a5177", "fields": {"departement": "92", "stop_lat": 48.86171926732523, "code_postal": "92073", "stop_lon": 2.201489672356612, "coord": [48.86171926732523, 2.201489672356612], "stop_id": 4009013, "stop_desc": "RUE KELLOG - 92073", "stop_name": "EMMANUEL KANT"}, "geometry": {"type": "Point", "coordinates": [2.201489672356612, 48.86171926732523]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1898ad93a06c5288472ebee33792f527016732dc", "fields": {"departement": "92", "stop_lat": 48.87854592814571, "code_postal": "92073", "stop_lon": 2.2302643478350848, "coord": [48.87854592814571, 2.2302643478350848], "stop_id": 4009026, "stop_desc": "93 RUE GAMBETTA - 92073", "stop_name": "93, RUE GAMBETTA"}, "geometry": {"type": "Point", "coordinates": [2.2302643478350848, 48.87854592814571]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bcf1b5a072e8ae1b7b64db6a6d24708c8400b923", "fields": {"departement": "92", "stop_lat": 48.87597285161679, "code_postal": "92073", "stop_lon": 2.227285738403684, "coord": [48.87597285161679, 2.227285738403684], "stop_id": 4009028, "stop_desc": "49 RUE GAMBETTA - 92073", "stop_name": "BELVEDERE"}, "geometry": {"type": "Point", "coordinates": [2.227285738403684, 48.87597285161679]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "70033832e570bb06a612facfb8cc4ab285ad65bd", "fields": {"departement": "92", "stop_lat": 48.871360091607606, "code_postal": "92073", "stop_lon": 2.2248568272971028, "coord": [48.871360091607606, 2.2248568272971028], "stop_id": 4009030, "stop_desc": "3 BIS RUE CARNOT - 92073", "stop_name": "MAIRIE DE SURESNES - CARNOT"}, "geometry": {"type": "Point", "coordinates": [2.2248568272971028, 48.871360091607606]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a1bc1b2262c07c887cf72b612d4da4f2db85da6a", "fields": {"departement": "75", "stop_lat": 48.87662280594913, "code_postal": "75120", "stop_lon": 2.4078476859376563, "coord": [48.87662280594913, 2.4078476859376563], "stop_id": 4009041, "stop_desc": "5 RUE CHARLES CROS - 75120", "stop_name": "PORTE DES LILAS"}, "geometry": {"type": "Point", "coordinates": [2.4078476859376563, 48.87662280594913]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1915374d5bbb78148c6a2a262b551c126dd03b6d", "fields": {"departement": "93", "stop_lat": 48.88029717919511, "code_postal": "93061", "stop_lon": 2.4102100451262904, "coord": [48.88029717919511, 2.4102100451262904], "stop_id": 4009043, "stop_desc": "38 AVENUE DU BELVEDERE - 93061", "stop_name": "JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.4102100451262904, 48.88029717919511]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "820a1972fdb3affa17d1fda709f3da48f3c7ff7a", "fields": {"departement": "75", "stop_lat": 48.88154129778317, "code_postal": "75119", "stop_lon": 2.403575613138969, "coord": [48.88154129778317, 2.403575613138969], "stop_id": 4009044, "stop_desc": "AVENUE ALEXANDER FLEMING - 75119", "stop_name": "LES MARRONNIERS"}, "geometry": {"type": "Point", "coordinates": [2.403575613138969, 48.88154129778317]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eed91a7e66ca026111ddc24e0bdab16ffd63f6e9", "fields": {"departement": "93", "stop_lat": 48.88809285408272, "code_postal": "93055", "stop_lon": 2.403815678792996, "coord": [48.88809285408272, 2.403815678792996], "stop_id": 4009047, "stop_desc": "49 BIS RUE DU PRE SAINT GERVAIS - 93055", "stop_name": "FRANKLIN"}, "geometry": {"type": "Point", "coordinates": [2.403815678792996, 48.88809285408272]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3bf094a570e525e9cb79d13a66e7668766d2f6c6", "fields": {"departement": "93", "stop_lat": 48.91420164731316, "code_postal": "93001", "stop_lon": 2.3818692052135932, "coord": [48.91420164731316, 2.3818692052135932], "stop_id": 4009059, "stop_desc": "1 AVENUE DE LA REPUBLIQUE - 93001", "stop_name": "MAIRIE D'AUBERVILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.3818692052135932, 48.91420164731316]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "81928c6cc5401e02be5add201344f79c39bdbfd4", "fields": {"departement": "93", "stop_lat": 48.92731884750356, "code_postal": "93066", "stop_lon": 2.3645320793992717, "coord": [48.92731884750356, 2.3645320793992717], "stop_id": 4009065, "stop_desc": "47 RUE DANIELLE CASANOVA - 93066", "stop_name": "CHARLES CROS"}, "geometry": {"type": "Point", "coordinates": [2.3645320793992717, 48.92731884750356]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "316be87ee6b6711cf862425ae3d1c19cb750e212", "fields": {"departement": "93", "stop_lat": 48.921474495775186, "code_postal": "93001", "stop_lon": 2.374975066268033, "coord": [48.921474495775186, 2.374975066268033], "stop_id": 4009078, "stop_desc": "RUE DE SAINT-DENIS - 93001", "stop_name": "PONT DU CHEMIN DE FER"}, "geometry": {"type": "Point", "coordinates": [2.374975066268033, 48.921474495775186]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3964e16b86e4a4168e93823c8eedaa623b92e4f7", "fields": {"departement": "93", "stop_lat": 48.90399735605275, "code_postal": "93001", "stop_lon": 2.3914986400152225, "coord": [48.90399735605275, 2.3914986400152225], "stop_id": 4009085, "stop_desc": "144 AVENUE DE LA REPUBLIQUE - 93001", "stop_name": "QUATRE CHEMINS - REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.3914986400152225, 48.90399735605275]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5309d66cb674185da43c1ed0d60d9b4358e4ade2", "fields": {"departement": "93", "stop_lat": 48.89394469691144, "code_postal": "93055", "stop_lon": 2.401656037394683, "coord": [48.89394469691144, 2.401656037394683], "stop_id": 4009091, "stop_desc": "FACE 34 RUE HOCHE - 93055", "stop_name": "MONTGOLFIER"}, "geometry": {"type": "Point", "coordinates": [2.401656037394683, 48.89394469691144]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2b5f427d9a3b81807f43b5f1b6c9c4fd3ea92fbb", "fields": {"departement": "93", "stop_lat": 48.88819181966482, "code_postal": "93061", "stop_lon": 2.4036250081875496, "coord": [48.88819181966482, 2.4036250081875496], "stop_id": 4009093, "stop_desc": "6 RUE ANDRE JOINEAU - 93061", "stop_name": "FRANKLIN"}, "geometry": {"type": "Point", "coordinates": [2.4036250081875496, 48.88819181966482]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8cf03822900b7daf59c6fa2be05724df852b0b59", "fields": {"departement": "93", "stop_lat": 48.88665486337396, "code_postal": "93061", "stop_lon": 2.4038819721849887, "coord": [48.88665486337396, 2.4038819721849887], "stop_id": 4009094, "stop_desc": "RUE ANDRE JOINEAU - 93061", "stop_name": "D'ESTIENNE D'ORVES"}, "geometry": {"type": "Point", "coordinates": [2.4038819721849887, 48.88665486337396]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e0fac43f618d2da95f6ec87d8a19a2211d8681ce", "fields": {"departement": "93", "stop_lat": 48.88149604931235, "code_postal": "93061", "stop_lon": 2.4041342477612093, "coord": [48.88149604931235, 2.4041342477612093], "stop_id": 4009096, "stop_desc": "FACE 142 AVENUE DU BELVEDERE - 93061", "stop_name": "LES MARRONNIERS"}, "geometry": {"type": "Point", "coordinates": [2.4041342477612093, 48.88149604931235]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "31ceaf4410ae721e2a82fb8e64b4edb07850bcfc", "fields": {"departement": "93", "stop_lat": 48.87902902292163, "code_postal": "93061", "stop_lon": 2.411747998347259, "coord": [48.87902902292163, 2.411747998347259], "stop_id": 4009098, "stop_desc": "5-7 AV FAIDHERBE - 93061", "stop_name": "FAIDHERBE - BELVEDERE"}, "geometry": {"type": "Point", "coordinates": [2.411747998347259, 48.87902902292163]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d29111826b4e3322bfebb8b6f2f1cd752dbcc228", "fields": {"departement": "92", "stop_lat": 48.81437001409935, "code_postal": "92048", "stop_lon": 2.224776094287459, "coord": [48.81437001409935, 2.224776094287459], "stop_id": 4009103, "stop_desc": "9 BIS R DU BEL AIR - 92048", "stop_name": "COLLEGE - BEL AIR"}, "geometry": {"type": "Point", "coordinates": [2.224776094287459, 48.81437001409935]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7d7a38682f0e1cbe72851c384f91a687632a90b3", "fields": {"departement": "92", "stop_lat": 48.810418381146384, "code_postal": "92048", "stop_lon": 2.2497145024396503, "coord": [48.810418381146384, 2.2497145024396503], "stop_id": 4009120, "stop_desc": "37 BIS RUE DES MARAIS - 92048", "stop_name": "RIVOLI"}, "geometry": {"type": "Point", "coordinates": [2.2497145024396503, 48.810418381146384]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0b14e44b735dca5d848f31a0610371c851d77639", "fields": {"departement": "92", "stop_lat": 48.81254971788132, "code_postal": "92048", "stop_lon": 2.2514119771212107, "coord": [48.81254971788132, 2.2514119771212107], "stop_id": 4009122, "stop_desc": "RUE DE LA BORNE SUD - 92048", "stop_name": "BORNE SUD"}, "geometry": {"type": "Point", "coordinates": [2.2514119771212107, 48.81254971788132]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d650251c37ca4a6ec6780588ce34448ed688f486", "fields": {"departement": "92", "stop_lat": 48.812977370400574, "code_postal": "92048", "stop_lon": 2.2463488472669777, "coord": [48.812977370400574, 2.2463488472669777], "stop_id": 4009125, "stop_desc": "AVENUE JEAN JAURES - 92048", "stop_name": "VIADUC"}, "geometry": {"type": "Point", "coordinates": [2.2463488472669777, 48.812977370400574]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "027c7dee530cc86765ccf750a296f7b5ad1fcdf7", "fields": {"departement": "92", "stop_lat": 48.81328728338661, "code_postal": "92048", "stop_lon": 2.2404421090340594, "coord": [48.81328728338661, 2.2404421090340594], "stop_id": 4009131, "stop_desc": "FACE 3-5 RUE CLAUDE DALSEME - 92048", "stop_name": "CLAUDE DALSEME"}, "geometry": {"type": "Point", "coordinates": [2.2404421090340594, 48.81328728338661]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b6b81a349d42646c073532a314b4492ec2cf6f68", "fields": {"departement": "92", "stop_lat": 48.81802109670063, "code_postal": "92048", "stop_lon": 2.2484767816364313, "coord": [48.81802109670063, 2.2484767816364313], "stop_id": 4009135, "stop_desc": "180 AVENUE DE VERDUN - 92048", "stop_name": "CARREFOUR DE LA FERME"}, "geometry": {"type": "Point", "coordinates": [2.2484767816364313, 48.81802109670063]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ce839a809d401103448132a45bf5d65bdca45634", "fields": {"departement": "92", "stop_lat": 48.81924588362742, "code_postal": "92048", "stop_lon": 2.2296652401647017, "coord": [48.81924588362742, 2.2296652401647017], "stop_id": 4009139, "stop_desc": "PLACE DE LA GARE - 92048", "stop_name": "GARE DE BELLEVUE.."}, "geometry": {"type": "Point", "coordinates": [2.2296652401647017, 48.81924588362742]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2682c71be2122a7dc07aed0375a438b0aa1bbd26", "fields": {"departement": "92", "stop_lat": 48.819326981799016, "code_postal": "92048", "stop_lon": 2.229896447704205, "coord": [48.819326981799016, 2.229896447704205], "stop_id": 4009140, "stop_desc": "PLACE DE LA GARE - 92048", "stop_name": "GARE DE BELLEVUE"}, "geometry": {"type": "Point", "coordinates": [2.229896447704205, 48.819326981799016]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c38467d0c60b199ded11cd8feabd11183e610553", "fields": {"departement": "92", "stop_lat": 48.816340640388, "code_postal": "92048", "stop_lon": 2.2272487621780552, "coord": [48.816340640388, 2.2272487621780552], "stop_id": 4009141, "stop_desc": "FACE1-1BIS RUE DES CAPUCINS - 92048", "stop_name": "GARDES - CAPUCINS"}, "geometry": {"type": "Point", "coordinates": [2.2272487621780552, 48.816340640388]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a97bfbe856b67125046d364fd33531f394ef5cb1", "fields": {"departement": "92", "stop_lat": 48.8178276550716, "code_postal": "92048", "stop_lon": 2.2220193936896293, "coord": [48.8178276550716, 2.2220193936896293], "stop_id": 4009147, "stop_desc": "AVENUE DE LA TOUR - 92048", "stop_name": "TOUR"}, "geometry": {"type": "Point", "coordinates": [2.2220193936896293, 48.8178276550716]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8037bd2af9c979b9a6ade7dfbd08c05dd4b763e3", "fields": {"departement": "92", "stop_lat": 48.8096941042701, "code_postal": "92048", "stop_lon": 2.2321208331333207, "coord": [48.8096941042701, 2.2321208331333207], "stop_id": 4009153, "stop_desc": "FACE 30 RUE TERRE NEUVE - 92048", "stop_name": "OBSERVATOIRE"}, "geometry": {"type": "Point", "coordinates": [2.2321208331333207, 48.8096941042701]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "489f19f49996d3bf443e8d497ff405d2565913a8", "fields": {"departement": "92", "stop_lat": 48.8075402745395, "code_postal": "92048", "stop_lon": 2.2358535787928604, "coord": [48.8075402745395, 2.2358535787928604], "stop_id": 4009155, "stop_desc": "36-38 RUE DE LA REPUBLIQUE - 92048", "stop_name": "EGLISE DE MEUDON"}, "geometry": {"type": "Point", "coordinates": [2.2358535787928604, 48.8075402745395]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "98be97a9055c81b6f7b2022f82df7e82e5658e7d", "fields": {"departement": "92", "stop_lat": 48.81131007217264, "code_postal": "92048", "stop_lon": 2.2523393863240138, "coord": [48.81131007217264, 2.2523393863240138], "stop_id": 4009164, "stop_desc": "FACE 38 RUE DE LA PETITE FONTAINE - 92048", "stop_name": "PETITE FONTAINE"}, "geometry": {"type": "Point", "coordinates": [2.2523393863240138, 48.81131007217264]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ee41314403fbf024d199c487bf19d7558f19798a", "fields": {"departement": "92", "stop_lat": 48.81254971788132, "code_postal": "92048", "stop_lon": 2.2514119771212107, "coord": [48.81254971788132, 2.2514119771212107], "stop_id": 4009165, "stop_desc": "RUE DE LA BORNE SUD - 92048", "stop_name": "BORNE SUD"}, "geometry": {"type": "Point", "coordinates": [2.2514119771212107, 48.81254971788132]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4cf52f8f057b50afeb023087e398d6a83cc2a0af", "fields": {"departement": "92", "stop_lat": 48.811289529615514, "code_postal": "92048", "stop_lon": 2.2488148908721697, "coord": [48.811289529615514, 2.2488148908721697], "stop_id": 4009166, "stop_desc": "13 AVENUE PAUL BERT - 92048", "stop_name": "PAUL BERT"}, "geometry": {"type": "Point", "coordinates": [2.2488148908721697, 48.811289529615514]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c08a6d6223a3d47a2db45bf990ccf8481085cd72", "fields": {"departement": "92", "stop_lat": 48.810713335177624, "code_postal": "92048", "stop_lon": 2.2475094977880525, "coord": [48.810713335177624, 2.2475094977880525], "stop_id": 4009167, "stop_desc": "49 RUE DE LA BELGIQUE - 92048", "stop_name": "VIGNES - BELGIQUE"}, "geometry": {"type": "Point", "coordinates": [2.2475094977880525, 48.810713335177624]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5662a848bc44574716e9723a1fdff27c2369eaa8", "fields": {"departement": "92", "stop_lat": 48.81056374038744, "code_postal": "92048", "stop_lon": 2.2401342034009057, "coord": [48.81056374038744, 2.2401342034009057], "stop_id": 4009169, "stop_desc": "96 R DE PARIS - 92048", "stop_name": "COMMISSARIAT DE POLICE"}, "geometry": {"type": "Point", "coordinates": [2.2401342034009057, 48.81056374038744]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0fce3b72a7c37f39bba8390ffe0b9e2f1b0fc238", "fields": {"departement": "92", "stop_lat": 48.81155878574101, "code_postal": "92048", "stop_lon": 2.2370024343557584, "coord": [48.81155878574101, 2.2370024343557584], "stop_id": 4009173, "stop_desc": "PLACE RABELAIS - 92048", "stop_name": "RABELAIS."}, "geometry": {"type": "Point", "coordinates": [2.2370024343557584, 48.81155878574101]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "add495fd1660052ab1f6ad7d51b3496d4a257701", "fields": {"departement": "92", "stop_lat": 48.818799964460155, "code_postal": "92048", "stop_lon": 2.244460443361091, "coord": [48.818799964460155, 2.244460443361091], "stop_id": 4009179, "stop_desc": "169 AVENUE DE VERDUN - 92048", "stop_name": "GROUPE SCOLAIRE BROSSOLETTE"}, "geometry": {"type": "Point", "coordinates": [2.244460443361091, 48.818799964460155]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "89edf0f0af1c95b35f6d2e2936a8e49f7e7e325d", "fields": {"departement": "92", "stop_lat": 48.82234534871682, "code_postal": "92040", "stop_lon": 2.2795980091780925, "coord": [48.82234534871682, 2.2795980091780925], "stop_id": 4009226, "stop_desc": "15 RUE DE L'ABBE DERRY - 92040", "stop_name": "ABBE DERRY"}, "geometry": {"type": "Point", "coordinates": [2.2795980091780925, 48.82234534871682]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "87b3b1a636fea29d082501e4f2dbc420381302a7", "fields": {"departement": "92", "stop_lat": 48.82308057839485, "code_postal": "92040", "stop_lon": 2.276071863748448, "coord": [48.82308057839485, 2.276071863748448], "stop_id": 4009229, "stop_desc": "17 RUE JEAN JAURES - 92040", "stop_name": "PLACE DE L'EGLISE."}, "geometry": {"type": "Point", "coordinates": [2.276071863748448, 48.82308057839485]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "512955fc9af69142c649bb830aef607a8d8d7d09", "fields": {"departement": "92", "stop_lat": 48.82837374190805, "code_postal": "92040", "stop_lon": 2.2749766076077833, "coord": [48.82837374190805, 2.2749766076077833], "stop_id": 4009233, "stop_desc": "71 RUE GUYNEMER - 92040", "stop_name": "MAISON DE RETRAITE"}, "geometry": {"type": "Point", "coordinates": [2.2749766076077833, 48.82837374190805]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3821822ea371f1d97ab3181c4fddff5c61e6ec2d", "fields": {"departement": "92", "stop_lat": 48.826047321732744, "code_postal": "92040", "stop_lon": 2.2776745923582173, "coord": [48.826047321732744, 2.2776745923582173], "stop_id": 4009239, "stop_desc": "RUE DU GENERAL LECLERC - 92040", "stop_name": "GENERAL LECLERC - VAUDETARD"}, "geometry": {"type": "Point", "coordinates": [2.2776745923582173, 48.826047321732744]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "26ec1ecd6a0b13b52b53794afe379294d9f60ad5", "fields": {"departement": "92", "stop_lat": 48.82449205338681, "code_postal": "92040", "stop_lon": 2.2611926345618256, "coord": [48.82449205338681, 2.2611926345618256], "stop_id": 4009258, "stop_desc": "6 RUE JACQUES HENRI LARTIGUE - 92040", "stop_name": "JACQUES HENRI LARTIGUE-TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.2611926345618256, 48.82449205338681]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "617c0fcaf117849213dafd273022ccbb34138fa8", "fields": {"departement": "92", "stop_lat": 48.82163721220325, "code_postal": "92040", "stop_lon": 2.252676374723151, "coord": [48.82163721220325, 2.252676374723151], "stop_id": 4009261, "stop_desc": "2 RUE JEAN JACQUES ROUSSEAU - 92040", "stop_name": "LES MOULINEAUX-TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.252676374723151, 48.82163721220325]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b34b9545dad967e0641bfd82c995e2605bad77ca", "fields": {"departement": "92", "stop_lat": 48.82108149969838, "code_postal": "92040", "stop_lon": 2.2427550156693536, "coord": [48.82108149969838, 2.2427550156693536], "stop_id": 4009264, "stop_desc": "73 RUE PIERRE POLI - 92040", "stop_name": "SAINTE EUDOXIE"}, "geometry": {"type": "Point", "coordinates": [2.2427550156693536, 48.82108149969838]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "92fadcd631329fef4128126dfef1068e0d3ace32", "fields": {"departement": "92", "stop_lat": 48.821558319715535, "code_postal": "92040", "stop_lon": 2.2555347948173234, "coord": [48.821558319715535, 2.2555347948173234], "stop_id": 4009268, "stop_desc": "9 BIS RUE DE LA GARE - 92040", "stop_name": "COLLEGE VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.2555347948173234, 48.821558319715535]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ce43781ae2d1d5dfa485386c11029504f732841b", "fields": {"departement": "92", "stop_lat": 48.824080521700225, "code_postal": "92040", "stop_lon": 2.264228618255977, "coord": [48.824080521700225, 2.264228618255977], "stop_id": 4009270, "stop_desc": "2-4 RUE D'ESTIENNE D'ORVES - 92040", "stop_name": "ROGER SALENGRO"}, "geometry": {"type": "Point", "coordinates": [2.264228618255977, 48.824080521700225]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "32e5014a35a5e97e5be96539d7ac532df9261c15", "fields": {"departement": "92", "stop_lat": 48.89680729800427, "code_postal": "92026", "stop_lon": 2.239999843794393, "coord": [48.89680729800427, 2.239999843794393], "stop_id": 4009363, "stop_desc": "FACE 20 BD DE LA MISSION MARCHAND - 92026", "stop_name": "FAUBOURG DE L'ARCHE"}, "geometry": {"type": "Point", "coordinates": [2.239999843794393, 48.89680729800427]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bb3ad8b053e67b17bc5f8a10c46681744ec2ad46", "fields": {"departement": "92", "stop_lat": 48.891933227628904, "code_postal": "92062", "stop_lon": 2.2363563116843697, "coord": [48.891933227628904, 2.2363563116843697], "stop_id": 4009365, "stop_desc": "PL CARPEAUX - 92062", "stop_name": "LA DEFENSE"}, "geometry": {"type": "Point", "coordinates": [2.2363563116843697, 48.891933227628904]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bcb1edf4f00d900473456a9179edafe0853cdc32", "fields": {"departement": "92", "stop_lat": 48.88319478619906, "code_postal": "92062", "stop_lon": 2.23302105413707, "coord": [48.88319478619906, 2.23302105413707], "stop_id": 4009367, "stop_desc": "SQ DU SOUVENIR FRANCAIS - 92062", "stop_name": "PUTEAUX"}, "geometry": {"type": "Point", "coordinates": [2.23302105413707, 48.88319478619906]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2f51d4e7b6bc706765cb3c6068ff907ad4bf4bee", "fields": {"departement": "92", "stop_lat": 48.82155533833698, "code_postal": "92040", "stop_lon": 2.2513018060643315, "coord": [48.82155533833698, 2.2513018060643315], "stop_id": 4009385, "stop_desc": "R JEAN-JACQUES ROUSSEAU - 92040", "stop_name": "LES MOULINEAUX"}, "geometry": {"type": "Point", "coordinates": [2.2513018060643315, 48.82155533833698]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6a39d0c47640842b2f940960ebc3a3de194febb5", "fields": {"departement": "75", "stop_lat": 48.83367716048171, "code_postal": "75115", "stop_lon": 2.2763724934782346, "coord": [48.83367716048171, 2.2763724934782346], "stop_id": 4009393, "stop_desc": "PL DES MARTYRS DE LA RESISTANCE DE LA PORTE DE SEVRES - 75115", "stop_name": "SUZANNE LENGLEN"}, "geometry": {"type": "Point", "coordinates": [2.2763724934782346, 48.83367716048171]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3fe7b5e3c606e3b6b8969cc3115bda5af84f4720", "fields": {"departement": "94", "stop_lat": 48.795953271831024, "code_postal": "94019", "stop_lon": 2.5637784137946187, "coord": [48.795953271831024, 2.5637784137946187], "stop_id": 4009534, "stop_desc": "AVENUE DE L'HIPPODROME - 94019", "stop_name": "HIPPODROME"}, "geometry": {"type": "Point", "coordinates": [2.5637784137946187, 48.795953271831024]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6546b8a9277c623016a5835511c0ad3945af3608", "fields": {"departement": "75", "stop_lat": 48.8464261185428, "code_postal": "75115", "stop_lon": 2.315589350810912, "coord": [48.8464261185428, 2.315589350810912], "stop_id": 4009536, "stop_desc": "147 BIS RUE DE SEVRES - 75115", "stop_name": "HOPITAL DES ENFANTS MALADES"}, "geometry": {"type": "Point", "coordinates": [2.315589350810912, 48.8464261185428]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d80772d617ad1e1f0c4d025a016e65a3ff71ccb3", "fields": {"departement": "75", "stop_lat": 48.8464261185428, "code_postal": "75115", "stop_lon": 2.315589350810912, "coord": [48.8464261185428, 2.315589350810912], "stop_id": 4009538, "stop_desc": "147 BIS RUE DE SEVRES - 75115", "stop_name": "HOPITAL DES ENFANTS MALADES"}, "geometry": {"type": "Point", "coordinates": [2.315589350810912, 48.8464261185428]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aefd3689febc1f936f4318fa290c662d523c0cbd", "fields": {"departement": "75", "stop_lat": 48.8464261185428, "code_postal": "75115", "stop_lon": 2.315589350810912, "coord": [48.8464261185428, 2.315589350810912], "stop_id": 4009539, "stop_desc": "147 BIS RUE DE SEVRES - 75115", "stop_name": "HOPITAL DES ENFANTS MALADES"}, "geometry": {"type": "Point", "coordinates": [2.315589350810912, 48.8464261185428]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8c6adee6935ca0af4325fc3a982d99240b4becda", "fields": {"departement": "75", "stop_lat": 48.843731020990745, "code_postal": "75115", "stop_lon": 2.3233383911773933, "coord": [48.843731020990745, 2.3233383911773933], "stop_id": 4009618, "stop_desc": "PLACE DU 18 JUIN 1940 - 75115", "stop_name": "PLACE DU 18 JUIN 1940"}, "geometry": {"type": "Point", "coordinates": [2.3233383911773933, 48.843731020990745]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bf52f92564de9abd75e287966a7e3888540e370c", "fields": {"departement": "75", "stop_lat": 48.84826115001549, "code_postal": "75106", "stop_lon": 2.327626818016069, "coord": [48.84826115001549, 2.327626818016069], "stop_id": 4009624, "stop_desc": "76 BOULEVARD RASPAIL - 75106", "stop_name": "RENNES - RASPAIL"}, "geometry": {"type": "Point", "coordinates": [2.327626818016069, 48.84826115001549]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0a6d9b775ff5ed2f862d75bfee73add7410bfc33", "fields": {"departement": "75", "stop_lat": 48.853644539093, "code_postal": "75107", "stop_lon": 2.32637284104398, "coord": [48.853644539093, 2.32637284104398], "stop_id": 4009627, "stop_desc": "19 BOULEVARD RASPAIL - 75107", "stop_name": "VARENNE - RASPAIL"}, "geometry": {"type": "Point", "coordinates": [2.32637284104398, 48.853644539093]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fa1ae0028045226f0d565b4240c4b3ffa10b2c04", "fields": {"departement": "75", "stop_lat": 48.856475455970624, "code_postal": "75107", "stop_lon": 2.3250511005783725, "coord": [48.856475455970624, 2.3250511005783725], "stop_id": 4009630, "stop_desc": "209-211 BOULEVARD SAINT-GERMAIN - 75107", "stop_name": "RUE DU BAC - RENE CHAR"}, "geometry": {"type": "Point", "coordinates": [2.3250511005783725, 48.856475455970624]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b61f55eafa5e5a95b955ac5ae8a3394dcb2f9d26", "fields": {"departement": "75", "stop_lat": 48.86696330378451, "code_postal": "75108", "stop_lon": 2.3213023563461532, "coord": [48.86696330378451, 2.3213023563461532], "stop_id": 4009638, "stop_desc": "6 PLACE DE LA CONCORDE - 75108", "stop_name": "CONCORDE"}, "geometry": {"type": "Point", "coordinates": [2.3213023563461532, 48.86696330378451]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "801c59ddf33bfc8239ff3caf3636b9f2f24cb70e", "fields": {"departement": "75", "stop_lat": 48.87432421623703, "code_postal": "75108", "stop_lon": 2.3236299251277788, "coord": [48.87432421623703, 2.3236299251277788], "stop_id": 4009642, "stop_desc": "94 BOULEVARD HAUSSMANN - 75108", "stop_name": "PASQUIER - ANJOU"}, "geometry": {"type": "Point", "coordinates": [2.3236299251277788, 48.87432421623703]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a6fd98801d1948d4e53a94f9aa07b6aa2fa9617c", "fields": {"departement": "75", "stop_lat": 48.874710306838004, "code_postal": "75108", "stop_lon": 2.3207549785527783, "coord": [48.874710306838004, 2.3207549785527783], "stop_id": 4009643, "stop_desc": "112 BOULEVARD HAUSSMANN - 75108", "stop_name": "SAINT-AUGUSTIN"}, "geometry": {"type": "Point", "coordinates": [2.3207549785527783, 48.874710306838004]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ac7df5f23947e8c1413cd65a796f9c22a0d2b9fc", "fields": {"departement": "75", "stop_lat": 48.8805506396015, "code_postal": "75108", "stop_lon": 2.3126454156147407, "coord": [48.8805506396015, 2.3126454156147407], "stop_id": 4009648, "stop_desc": "117 BOULEVARD MALESHERBES - 75108", "stop_name": "MALESHERBES - COURCELLES"}, "geometry": {"type": "Point", "coordinates": [2.3126454156147407, 48.8805506396015]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eba036577e378fdb63bd61d7f0202ad1bd81e830", "fields": {"departement": "75", "stop_lat": 48.888358507928764, "code_postal": "75117", "stop_lon": 2.3042329570350892, "coord": [48.888358507928764, 2.3042329570350892], "stop_id": 4009656, "stop_desc": "195 BOULEVARD MALESHERBES - 75117", "stop_name": "JULIETTE LAMBER"}, "geometry": {"type": "Point", "coordinates": [2.3042329570350892, 48.888358507928764]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "228cbc36dab185f5af363ae7a3c79a07a29d68d9", "fields": {"departement": "75", "stop_lat": 48.890721839724435, "code_postal": "75117", "stop_lon": 2.3031683839959776, "coord": [48.890721839724435, 2.3031683839959776], "stop_id": 4009657, "stop_desc": "22 AVENUE DE LA PORTE D'ASNIERES - 75117", "stop_name": "PORTE D'ASNIERES"}, "geometry": {"type": "Point", "coordinates": [2.3031683839959776, 48.890721839724435]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1f3785a59e31095101ec1b682bce5cf41591538f", "fields": {"departement": "75", "stop_lat": 48.889964875279475, "code_postal": "75117", "stop_lon": 2.296654282074075, "coord": [48.889964875279475, 2.296654282074075], "stop_id": 4009660, "stop_desc": "10 RUE RAYMOND PITET - 75117", "stop_name": "CURNONSKY"}, "geometry": {"type": "Point", "coordinates": [2.296654282074075, 48.889964875279475]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7226dc6f9d14842a0d52ce0cf6f54f7af91184df", "fields": {"departement": "75", "stop_lat": 48.87330895556756, "code_postal": "75108", "stop_lon": 2.3266275797112237, "coord": [48.87330895556756, 2.3266275797112237], "stop_id": 4009665, "stop_desc": "35 RUE TRONCHET - 75108", "stop_name": "HAVRE - HAUSSMANN"}, "geometry": {"type": "Point", "coordinates": [2.3266275797112237, 48.87330895556756]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "238bda728d0f0b7309650b6929e1ce6e59062059", "fields": {"departement": "92", "stop_lat": 48.913025400714396, "code_postal": "92004", "stop_lon": 2.2955454150474894, "coord": [48.913025400714396, 2.2955454150474894], "stop_id": 4015689, "stop_desc": "35 BOULEVARD VOLTAIRE - 92004", "stop_name": "PLACE VOLTAIRE"}, "geometry": {"type": "Point", "coordinates": [2.2955454150474894, 48.913025400714396]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "18131514fb15fb8d6903e96bf816206aa3efa5ec", "fields": {"departement": "92", "stop_lat": 48.9238281198912, "code_postal": "92004", "stop_lon": 2.2756528303457335, "coord": [48.9238281198912, 2.2756528303457335], "stop_id": 4015699, "stop_desc": "FACE 307 AVENUE D'ARGENTEUIL - 92004", "stop_name": "GRAMME"}, "geometry": {"type": "Point", "coordinates": [2.2756528303457335, 48.9238281198912]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "660a442dcc911141a6804aeb0a01507fd5fb0f54", "fields": {"departement": "92", "stop_lat": 48.92757405566248, "code_postal": "92004", "stop_lon": 2.272606929228948, "coord": [48.92757405566248, 2.272606929228948], "stop_id": 4015700, "stop_desc": "384 AVENUE D'ARGENTEUIL - 92004", "stop_name": "QUATRE ROUTES"}, "geometry": {"type": "Point", "coordinates": [2.272606929228948, 48.92757405566248]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d4afa6ebb7255cb450a4f4d16fddc81637ea0107", "fields": {"departement": "92", "stop_lat": 48.93206400717952, "code_postal": "92025", "stop_lon": 2.2664497055394404, "coord": [48.93206400717952, 2.2664497055394404], "stop_id": 4015703, "stop_desc": "FACE 131 AVENUE DE STALINGRAD - 92025", "stop_name": "SOLFERINO"}, "geometry": {"type": "Point", "coordinates": [2.2664497055394404, 48.93206400717952]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7e9de5dd79acecd9df18fc313067f8f508b89577", "fields": {"departement": "75", "stop_lat": 48.85373962301297, "code_postal": "75104", "stop_lon": 2.3691648178618325, "coord": [48.85373962301297, 2.3691648178618325], "stop_id": 3343786, "stop_desc": "Roquette (rue de la) PARIS-11 - 75104", "stop_name": "Bastille"}, "geometry": {"type": "Point", "coordinates": [2.3691648178618325, 48.85373962301297]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "79929db6a38817c6d8c85eb2d75606eb0448a198", "fields": {"departement": "94", "stop_lat": 48.821489819145576, "code_postal": "94018", "stop_lon": 2.4138567623311062, "coord": [48.821489819145576, 2.4138567623311062], "stop_id": 3343806, "stop_desc": "Rue de Paris - 94018", "stop_name": "Charenton-Ecoles"}, "geometry": {"type": "Point", "coordinates": [2.4138567623311062, 48.821489819145576]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d79914bf8adb380b73d48c9034ed4a21b79a39ef", "fields": {"departement": "92", "stop_lat": 48.824975061937806, "code_postal": "92075", "stop_lon": 2.291872934505124, "coord": [48.824975061937806, 2.291872934505124], "stop_id": 3442455, "stop_desc": "88 BIS AVENUE VICTOR HUGO - 92075", "stop_name": "CARREFOUR ALBERT LEGRIS"}, "geometry": {"type": "Point", "coordinates": [2.291872934505124, 48.824975061937806]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "efa7dc1094b413aef3a6263b8feea6325257ea6b", "fields": {"departement": "92", "stop_lat": 48.823526651568685, "code_postal": "92075", "stop_lon": 2.288348842384806, "coord": [48.823526651568685, 2.288348842384806], "stop_id": 3442457, "stop_desc": "PLACE DU GENERAL LECLERC - 92075", "stop_name": "VANVES-LYCEE MICHELET"}, "geometry": {"type": "Point", "coordinates": [2.288348842384806, 48.823526651568685]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3cfe77c4c01fd4333f4a10587852f046f3391f5e", "fields": {"departement": "75", "stop_lat": 48.826740884479285, "code_postal": "75114", "stop_lon": 2.3048574916214104, "coord": [48.826740884479285, 2.3048574916214104], "stop_id": 3442448, "stop_desc": "1 AVENUE MARC SANGNIER - 75114", "stop_name": "PORTE DE VANVES"}, "geometry": {"type": "Point", "coordinates": [2.3048574916214104, 48.826740884479285]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c4ab41eb575b1aa88fcbbfd65f1556b0e47c6397", "fields": {"departement": "94", "stop_lat": 48.76876863574218, "code_postal": "94028", "stop_lon": 2.464319398948263, "coord": [48.76876863574218, 2.464319398948263], "stop_id": 3343825, "stop_desc": "Route de Pompadour - 94028", "stop_name": "Pointe du Lac"}, "geometry": {"type": "Point", "coordinates": [2.464319398948263, 48.76876863574218]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1bcefe42eb9ddeb9d384ace0441016fcc3977c1b", "fields": {"departement": "75", "stop_lat": 48.82501817642889, "code_postal": "75114", "stop_lon": 2.318443156009455, "coord": [48.82501817642889, 2.318443156009455], "stop_id": 3442445, "stop_desc": "78 RUE DES PLANTES - 75114", "stop_name": "JEAN MOULIN"}, "geometry": {"type": "Point", "coordinates": [2.318443156009455, 48.82501817642889]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eed34360613255afccb3f04fee740c809c42e6fc", "fields": {"departement": "75", "stop_lat": 48.858389963548795, "code_postal": "75104", "stop_lon": 2.3474837299932694, "coord": [48.858389963548795, 2.3474837299932694], "stop_id": 3442415, "stop_desc": "8 RUE SAINT-DENIS - 75104", "stop_name": "CHATELET"}, "geometry": {"type": "Point", "coordinates": [2.3474837299932694, 48.858389963548795]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "894dee2f9d2b72207dc9ced50e2a580b8521f7d5", "fields": {"departement": "94", "stop_lat": 48.823584786373054, "code_postal": "94079", "stop_lon": 2.542297587052288, "coord": [48.823584786373054, 2.542297587052288], "stop_id": 3619472, "stop_desc": "1 RUE DU CHEMIN DE FER - 94079", "stop_name": "VILLIERS-SUR-MARNE - LE PLESSIS-TREVISE RER"}, "geometry": {"type": "Point", "coordinates": [2.542297587052288, 48.823584786373054]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f43bfec2e20dd096ed1eb45b43b9aedf325b2e51", "fields": {"departement": "94", "stop_lat": 48.79517150119769, "code_postal": "94019", "stop_lon": 2.533315562906701, "coord": [48.79517150119769, 2.533315562906701], "stop_id": 3619340, "stop_desc": "49/51 BIS RUE ARISTIDE BRIAND - 94019", "stop_name": "HOTEL DE VILLE DE CHENNEVIERES"}, "geometry": {"type": "Point", "coordinates": [2.533315562906701, 48.79517150119769]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f7d0542e7d01ef2ab031e3e9d80efa1d584d2525", "fields": {"departement": "94", "stop_lat": 48.819311331150935, "code_postal": "94017", "stop_lon": 2.511112991184935, "coord": [48.819311331150935, 2.511112991184935], "stop_id": 3619456, "stop_desc": "17 AVENUE DE LA REPUBLIQUE - 94017", "stop_name": "REPUBLIQUE - ALEXANDRE FOURNY"}, "geometry": {"type": "Point", "coordinates": [2.511112991184935, 48.819311331150935]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2e0dc611135ad3f49c73beac6c31c6653445787a", "fields": {"departement": "94", "stop_lat": 48.82744479795856, "code_postal": "94017", "stop_lon": 2.511385264986214, "coord": [48.82744479795856, 2.511385264986214], "stop_id": 3619462, "stop_desc": "235 AVENUE DU GENERAL DE GAULLE - 94017", "stop_name": "FOURCHETTE DE BRY"}, "geometry": {"type": "Point", "coordinates": [2.511385264986214, 48.82744479795856]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8e48bd01524d05c82e13f249d6dd91854f5d02ae", "fields": {"departement": "94", "stop_lat": 48.81313554348275, "code_postal": "94017", "stop_lon": 2.511936047825764, "coord": [48.81313554348275, 2.511936047825764], "stop_id": 3619424, "stop_desc": "32 RUE LOUIS TALAMONI - 94017", "stop_name": "MAIRIE DE CHAMPIGNY"}, "geometry": {"type": "Point", "coordinates": [2.511936047825764, 48.81313554348275]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "98dfd36da5dc09ac995d61153d67d80d8c50046c", "fields": {"departement": "94", "stop_lat": 48.8207913927885, "code_postal": "94042", "stop_lon": 2.4635212310090804, "coord": [48.8207913927885, 2.4635212310090804], "stop_id": 3619474, "stop_desc": "AVENUE JEAN JAURES - 94042", "stop_name": "JOINVILLE-LE-PONT RER"}, "geometry": {"type": "Point", "coordinates": [2.4635212310090804, 48.8207913927885]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3e94484848f7df3ef071a2764a99f06856ae87da", "fields": {"departement": "94", "stop_lat": 48.81028645919298, "code_postal": "94017", "stop_lon": 2.517927581784478, "coord": [48.81028645919298, 2.517927581784478], "stop_id": 3619428, "stop_desc": "34 RUE DE MUSSELBURGH - 94017", "stop_name": "POLYCLINIQUE"}, "geometry": {"type": "Point", "coordinates": [2.517927581784478, 48.81028645919298]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3ec12d4bd12ccb71660babaa34d7b4fc1cc23309", "fields": {"departement": "94", "stop_lat": 48.82016401887866, "code_postal": "94042", "stop_lon": 2.477974118109713, "coord": [48.82016401887866, 2.477974118109713], "stop_id": 3619439, "stop_desc": "29 AVENUE GALLIENI - 94042", "stop_name": "LES PLATANES"}, "geometry": {"type": "Point", "coordinates": [2.477974118109713, 48.82016401887866]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5709d3bb730fa085082986cae54c9e15635c8b49", "fields": {"departement": "94", "stop_lat": 48.81191138810777, "code_postal": "94017", "stop_lon": 2.513170293692791, "coord": [48.81191138810777, 2.513170293692791], "stop_id": 3619427, "stop_desc": "11 RUE MUSSELBURGH - 94017", "stop_name": "RUE A TRAIT"}, "geometry": {"type": "Point", "coordinates": [2.513170293692791, 48.81191138810777]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "df0be0782340ccd8fec564301d10daf1debd3732", "fields": {"departement": "94", "stop_lat": 48.819710075886654, "code_postal": "94042", "stop_lon": 2.4741755742329605, "coord": [48.819710075886654, 2.4741755742329605], "stop_id": 3619477, "stop_desc": "12 PLACE DE VERDUN - 94042", "stop_name": "VERDUN"}, "geometry": {"type": "Point", "coordinates": [2.4741755742329605, 48.819710075886654]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "484128dc4c5d7249d6b476e259838dbc54db2d32", "fields": {"departement": "93", "stop_lat": 48.88646135518234, "code_postal": "93064", "stop_lon": 2.4730163589597844, "coord": [48.88646135518234, 2.4730163589597844], "stop_id": 3450668, "stop_desc": "FACE 5 BOULEVARD ALSACE LORRAINE - 93064", "stop_name": "ECHANGEUR DE ROSNY"}, "geometry": {"type": "Point", "coordinates": [2.4730163589597844, 48.88646135518234]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bd6e67ab32e7729c89ac8a1749bc6e756a5d041a", "fields": {"departement": "94", "stop_lat": 48.8440225144832, "code_postal": "94015", "stop_lon": 2.5260790072465844, "coord": [48.8440225144832, 2.5260790072465844], "stop_id": 3616865, "stop_desc": "AVENUE ETIENNE DE SILHOUETTE - 94015", "stop_name": "BRY-SUR-MARNE RER"}, "geometry": {"type": "Point", "coordinates": [2.5260790072465844, 48.8440225144832]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "94cdce7a222925531ce3f47d4ad87ce3dd7b516e", "fields": {"departement": "93", "stop_lat": 48.90059761814061, "code_postal": "93053", "stop_lon": 2.4654060205693593, "coord": [48.90059761814061, 2.4654060205693593], "stop_id": 3560231, "stop_desc": "FACE 72BIS AVENUE DU GENERAL GALLIENI - 93053", "stop_name": "PETIT NOISY"}, "geometry": {"type": "Point", "coordinates": [2.4654060205693593, 48.90059761814061]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ab87d616260992c8a4316f1ea5986f6a3e4777b9", "fields": {"departement": "93", "stop_lat": 48.90267957119713, "code_postal": "93053", "stop_lon": 2.4682194092941194, "coord": [48.90267957119713, 2.4682194092941194], "stop_id": 3560232, "stop_desc": "100 AVENUE DU GENERAL GALLIENI - 93053", "stop_name": "NOUVELLE PISCINE"}, "geometry": {"type": "Point", "coordinates": [2.4682194092941194, 48.90267957119713]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c6e5fb4dab525e26a1120c4768c3372ed34978aa", "fields": {"departement": "93", "stop_lat": 48.89979967206093, "code_postal": "93057", "stop_lon": 2.5006005249488816, "coord": [48.89979967206093, 2.5006005249488816], "stop_id": 3560249, "stop_desc": "3 ALLEE PIERRE BROSSOLETTE - 93057", "stop_name": "ALBERT THOMAS"}, "geometry": {"type": "Point", "coordinates": [2.5006005249488816, 48.89979967206093]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "951bc3d04651ba2d65ca7008722505b805e4edf9", "fields": {"departement": "93", "stop_lat": 48.92212592273542, "code_postal": "93007", "stop_lon": 2.469659588543364, "coord": [48.92212592273542, 2.469659588543364], "stop_id": 3450663, "stop_desc": "66 AVENUE DE SUFFREN - 93007", "stop_name": "MATHILDE EMILIE"}, "geometry": {"type": "Point", "coordinates": [2.469659588543364, 48.92212592273542]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6e391118874ab6f100f37ee3f10e7ac0f9cff59c", "fields": {"departement": "93", "stop_lat": 48.93909937392372, "code_postal": "93007", "stop_lon": 2.4721585199552494, "coord": [48.93909937392372, 2.4721585199552494], "stop_id": 3450658, "stop_desc": "125 AVENUE PASTEUR - 93007", "stop_name": "DOCTEUR CALMETTE"}, "geometry": {"type": "Point", "coordinates": [2.4721585199552494, 48.93909937392372]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b43ec7add19edde184c88470319fc1b1e08865b9", "fields": {"departement": "93", "stop_lat": 48.92702629974817, "code_postal": "93007", "stop_lon": 2.4673944636705984, "coord": [48.92702629974817, 2.4673944636705984], "stop_id": 3450662, "stop_desc": "7 AVENUE DE STRASBOURG - 93007", "stop_name": "FOCH - MARNE"}, "geometry": {"type": "Point", "coordinates": [2.4673944636705984, 48.92702629974817]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "37318b5051059aed252b4995d33fac992b7397df", "fields": {"departement": "93", "stop_lat": 48.88823770072594, "code_postal": "93053", "stop_lon": 2.450166132400812, "coord": [48.88823770072594, 2.450166132400812], "stop_id": 3560220, "stop_desc": "FACE 41 BI RUE ANATOLE FRANCE - 93053", "stop_name": "HELENE"}, "geometry": {"type": "Point", "coordinates": [2.450166132400812, 48.88823770072594]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c56c3bcc6d5e17e4b0e4323a787ae0b8e8a51b02", "fields": {"departement": "93", "stop_lat": 48.90955920281512, "code_postal": "93010", "stop_lon": 2.479948443344676, "coord": [48.90955920281512, 2.479948443344676], "stop_id": 3450664, "stop_desc": "FACE 48 ROUTE D'AULNAY - 93010", "stop_name": "GUEUGNON"}, "geometry": {"type": "Point", "coordinates": [2.479948443344676, 48.90955920281512]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bb00b0175dfa7be58c2d8585ba12218fe07e3dd9", "fields": {"departement": "94", "stop_lat": 48.78438231402739, "code_postal": "94028", "stop_lon": 2.4541023078929722, "coord": [48.78438231402739, 2.4541023078929722], "stop_id": 3619290, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 94028", "stop_name": "PREFECTURE DU VAL-DE-MARNE."}, "geometry": {"type": "Point", "coordinates": [2.4541023078929722, 48.78438231402739]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ea948c6ba4ff7e0909e6bf84c9c596a5b076971f", "fields": {"departement": "94", "stop_lat": 48.77144734525404, "code_postal": "94071", "stop_lon": 2.5251897205020413, "coord": [48.77144734525404, 2.5251897205020413], "stop_id": 3619322, "stop_desc": "FACE 11 AVENUE GEORGES POMPIDOU - 94071", "stop_name": "CENTRE ADMINISTRATIF"}, "geometry": {"type": "Point", "coordinates": [2.5251897205020413, 48.77144734525404]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "752ff7ae92a0b72b73cd84d54dbf3a053fa90be9", "fields": {"departement": "94", "stop_lat": 48.77412789450505, "code_postal": "94071", "stop_lon": 2.518033000257376, "coord": [48.77412789450505, 2.518033000257376], "stop_id": 3619316, "stop_desc": "FACE 5 RUE DU GRAND VAL - 94071", "stop_name": "CITE VERTE-GRAND VAL"}, "geometry": {"type": "Point", "coordinates": [2.518033000257376, 48.77412789450505]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "911b54062bc787f04b47f989e871f66fb9647110", "fields": {"departement": "75", "stop_lat": 48.82530272173102, "code_postal": "75114", "stop_lon": 2.30435474951014, "coord": [48.82530272173102, 2.30435474951014], "stop_id": 3619171, "stop_desc": "AVENUE DE LA PORTE DE VANVES - 75114", "stop_name": "PONT DE LA VALLEE"}, "geometry": {"type": "Point", "coordinates": [2.30435474951014, 48.82530272173102]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "26b9671374b1a145aa5bca559973e1f229c26ced", "fields": {"departement": "94", "stop_lat": 48.7740476632288, "code_postal": "94071", "stop_lon": 2.517597569294374, "coord": [48.7740476632288, 2.517597569294374], "stop_id": 3619317, "stop_desc": "3 RUE DU GRAND VAL - 94071", "stop_name": "CITE VERTE-GRAND VAL"}, "geometry": {"type": "Point", "coordinates": [2.517597569294374, 48.7740476632288]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cbcf5ec235846c1c7abc6915341f062d00de509e", "fields": {"departement": "94", "stop_lat": 48.77760093648482, "code_postal": "94028", "stop_lon": 2.46704728532579, "coord": [48.77760093648482, 2.46704728532579], "stop_id": 3619297, "stop_desc": "FACE 100 RUE JULIETTE SAVAR - 94028", "stop_name": "RENE ARCOS"}, "geometry": {"type": "Point", "coordinates": [2.46704728532579, 48.77760093648482]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "72ec368dffb53f1b5b81642d9d35e076fc5e9b37", "fields": {"departement": "94", "stop_lat": 48.77202425593592, "code_postal": "94071", "stop_lon": 2.506100268452882, "coord": [48.77202425593592, 2.506100268452882], "stop_id": 3619313, "stop_desc": "0 R MAGELLAN - 94071", "stop_name": "SUCY-BONNEUIL RER"}, "geometry": {"type": "Point", "coordinates": [2.506100268452882, 48.77202425593592]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6b6345122c758cafa17dca835c46e7f4dd787a53", "fields": {"departement": "94", "stop_lat": 48.77699396839792, "code_postal": "94011", "stop_lon": 2.4790947028037733, "coord": [48.77699396839792, 2.4790947028037733], "stop_id": 3619303, "stop_desc": "FACE 57 AVENUE DE PARIS - 94011", "stop_name": "REGARD"}, "geometry": {"type": "Point", "coordinates": [2.4790947028037733, 48.77699396839792]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "718cd71e15354e1281fe35c27bfa28fec443c083", "fields": {"departement": "94", "stop_lat": 48.777712959312176, "code_postal": "94028", "stop_lon": 2.463171726467112, "coord": [48.777712959312176, 2.463171726467112], "stop_id": 3619294, "stop_desc": "RUE RENE ARCOS - 94028", "stop_name": "JOHN KENNEDY"}, "geometry": {"type": "Point", "coordinates": [2.463171726467112, 48.777712959312176]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c748ad281418d8112932b4c221455fbaafa65b1d", "fields": {"departement": "94", "stop_lat": 48.77410202278402, "code_postal": "94011", "stop_lon": 2.484675787799077, "coord": [48.77410202278402, 2.484675787799077], "stop_id": 3619307, "stop_desc": "16 AVENUE AUGUSTE GROSS - 94011", "stop_name": "ECOLES"}, "geometry": {"type": "Point", "coordinates": [2.484675787799077, 48.77410202278402]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5802572544d358bc894062b1d87a8e9b99dc9b67", "fields": {"departement": "93", "stop_lat": 48.88485195220736, "code_postal": "93032", "stop_lon": 2.5318695517545367, "coord": [48.88485195220736, 2.5318695517545367], "stop_id": 3616913, "stop_desc": "FACE 27 RUE JEAN JAURES - 93032", "stop_name": "JEAN JAURES - HENRI BARBUSSE"}, "geometry": {"type": "Point", "coordinates": [2.5318695517545367, 48.88485195220736]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2b416c5bfc9d0f5b22d4b519c5c9c0c8e6a61e76", "fields": {"departement": "93", "stop_lat": 48.88407582329434, "code_postal": "93077", "stop_lon": 2.510676096876497, "coord": [48.88407582329434, 2.510676096876497], "stop_id": 3616905, "stop_desc": "PLACE EMILE DUCATE - 93077", "stop_name": "CHATEAU DE VILLEMOMBLE"}, "geometry": {"type": "Point", "coordinates": [2.510676096876497, 48.88407582329434]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "59224d6a5c97b9cd808b5fd7d854c3dfe16544a4", "fields": {"departement": "93", "stop_lat": 48.88438894268836, "code_postal": "93032", "stop_lon": 2.534702321902295, "coord": [48.88438894268836, 2.534702321902295], "stop_id": 3616914, "stop_desc": "PLACE DU GENERAL DE GAULLE - 93032", "stop_name": "CHARLES DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.534702321902295, 48.88438894268836]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f68826e839162f75d46990dfe294590243ee8337", "fields": {"departement": "93", "stop_lat": 48.8851306909249, "code_postal": "93064", "stop_lon": 2.4811485622437988, "coord": [48.8851306909249, 2.4811485622437988], "stop_id": 3616893, "stop_desc": "BOULEVARD D'ALSACE LORRAINE - 93064", "stop_name": "CHEMIN DE BONDY"}, "geometry": {"type": "Point", "coordinates": [2.4811485622437988, 48.8851306909249]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cde3e8da45dbdbab6a68a072047f2ff6b6f89c4a", "fields": {"departement": "93", "stop_lat": 48.881794404760505, "code_postal": "93032", "stop_lon": 2.538412546009786, "coord": [48.881794404760505, 2.538412546009786], "stop_id": 3616916, "stop_desc": "46 AVENUE DU PRESIDENT POMPIDOU - 93032", "stop_name": "FLORIAN"}, "geometry": {"type": "Point", "coordinates": [2.538412546009786, 48.881794404760505]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "559e9f0a4f83e7e0c12062c3d2d07f93d8a491fb", "fields": {"departement": "93", "stop_lat": 48.88208234058181, "code_postal": "93032", "stop_lon": 2.5382092607526596, "coord": [48.88208234058181, 2.5382092607526596], "stop_id": 3616917, "stop_desc": "37 AVENUE DU PRESIDENT POMPIDOU - 93032", "stop_name": "FLORIAN"}, "geometry": {"type": "Point", "coordinates": [2.5382092607526596, 48.88208234058181]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cf5bfae30c11a92d4e79d995d120d80884e3b0a8", "fields": {"departement": "94", "stop_lat": 48.84176361706178, "code_postal": "94015", "stop_lon": 2.5335052561815465, "coord": [48.84176361706178, 2.5335052561815465], "stop_id": 3616869, "stop_desc": "R FRANCOIS DE TROY - 94015", "stop_name": "FRANCOIS DE TROY"}, "geometry": {"type": "Point", "coordinates": [2.5335052561815465, 48.84176361706178]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "286c562f91940cfe56a13cdbe7dcb411ba125437", "fields": {"departement": "94", "stop_lat": 48.836184082067945, "code_postal": "94015", "stop_lon": 2.5324358136717753, "coord": [48.836184082067945, 2.5324358136717753], "stop_id": 3616882, "stop_desc": "AV DES FRERES LUMIERE - 94015", "stop_name": "MOLIERE"}, "geometry": {"type": "Point", "coordinates": [2.5324358136717753, 48.836184082067945]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "034b31105396cd5759a6ef3725f0b0231c79c01b", "fields": {"departement": "93", "stop_lat": 48.8826966660454, "code_postal": "93077", "stop_lon": 2.525238738981049, "coord": [48.8826966660454, 2.525238738981049], "stop_id": 3616911, "stop_desc": "FACE 180 RUE GRANDE RUE - 93077", "stop_name": "GAGNY RER"}, "geometry": {"type": "Point", "coordinates": [2.525238738981049, 48.8826966660454]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4dfef049d8733cf88aad6b4a993921f653b51921", "fields": {"departement": "94", "stop_lat": 48.8426003519002, "code_postal": "94015", "stop_lon": 2.5329637627590316, "coord": [48.8426003519002, 2.5329637627590316], "stop_id": 3616878, "stop_desc": "17-19 RUE LEON MENU - 94015", "stop_name": "LAMARTINE"}, "geometry": {"type": "Point", "coordinates": [2.5329637627590316, 48.8426003519002]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3ae92c0a85e5480636ac00d67f769389af07a47e", "fields": {"departement": "92", "stop_lat": 48.810528887721574, "code_postal": "92046", "stop_lon": 2.2847821788664846, "coord": [48.810528887721574, 2.2847821788664846], "stop_id": 3619146, "stop_desc": "ROND-POINT DE LA COMMUNE DE PARIS - 92046", "stop_name": "BARBUSSE-VEDRINES"}, "geometry": {"type": "Point", "coordinates": [2.2847821788664846, 48.810528887721574]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "524468a1c3cb4f8b75fca348b2725cd6dbe93ee3", "fields": {"departement": "92", "stop_lat": 48.81377438920338, "code_postal": "92046", "stop_lon": 2.286915490287406, "coord": [48.81377438920338, 2.286915490287406], "stop_id": 3619143, "stop_desc": "BOULEVARD HENRI BARBUSSE - 92046", "stop_name": "ROND-POINT HENRI BARBUSSE"}, "geometry": {"type": "Point", "coordinates": [2.286915490287406, 48.81377438920338]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cf67b29035b5dbca633561f80e6d519e11e449f6", "fields": {"departement": "75", "stop_lat": 48.82628244737996, "code_postal": "75114", "stop_lon": 2.304612759189639, "coord": [48.82628244737996, 2.304612759189639], "stop_id": 3619131, "stop_desc": "FACE 4 AVENUE DE LA PORTE DE VANVES - 75114", "stop_name": "PORTE DE VANVES"}, "geometry": {"type": "Point", "coordinates": [2.304612759189639, 48.82628244737996]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "11d9437285e4ddc9ba18cfe2430b087cb42531d8", "fields": {"departement": "92", "stop_lat": 48.80524747803089, "code_postal": "92023", "stop_lon": 2.2733715521657585, "coord": [48.80524747803089, 2.2733715521657585], "stop_id": 3619152, "stop_desc": "FACE 68 AVENUE MARGUERITE RENAUDIN - 92023", "stop_name": "MARIE DOFFE"}, "geometry": {"type": "Point", "coordinates": [2.2733715521657585, 48.80524747803089]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3aef4cb8144b3791a86cfe8a608f4d70b4370631", "fields": {"departement": "92", "stop_lat": 48.81094253979071, "code_postal": "92046", "stop_lon": 2.285271653231755, "coord": [48.81094253979071, 2.285271653231755], "stop_id": 3619145, "stop_desc": "BOULEVARD HENRI BARBUSSE - 92046", "stop_name": "BARBUSSE-VEDRINES"}, "geometry": {"type": "Point", "coordinates": [2.285271653231755, 48.81094253979071]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d2b250ce36a637315ea2ff22d79075ded876f99e", "fields": {"departement": "93", "stop_lat": 48.87656249635237, "code_postal": "93032", "stop_lon": 2.549524191017157, "coord": [48.87656249635237, 2.549524191017157], "stop_id": 3616923, "stop_desc": "9 AVENUE PAUL VAILLANT COUTURIER - 93032", "stop_name": "LA MARE"}, "geometry": {"type": "Point", "coordinates": [2.549524191017157, 48.87656249635237]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "12b1b519d8d2d81e777d943ac6a0582410a4f02d", "fields": {"departement": "92", "stop_lat": 48.80326001715222, "code_postal": "92023", "stop_lon": 2.256665690411365, "coord": [48.80326001715222, 2.256665690411365], "stop_id": 3619163, "stop_desc": "PLACE DU GARDE - 92023", "stop_name": "PLACE DU GARDE"}, "geometry": {"type": "Point", "coordinates": [2.256665690411365, 48.80326001715222]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bf405367c5bc6b1859de5479258771e335c0ac4d", "fields": {"departement": "92", "stop_lat": 48.81321948035878, "code_postal": "92046", "stop_lon": 2.2927677781953304, "coord": [48.81321948035878, 2.2927677781953304], "stop_id": 3619166, "stop_desc": "FACE 91 RUE HOCHE - 92046", "stop_name": "LE PARC"}, "geometry": {"type": "Point", "coordinates": [2.2927677781953304, 48.81321948035878]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4d8467d95b109e9cb18528b16362816eac429afa", "fields": {"departement": "92", "stop_lat": 48.801554374313845, "code_postal": "92023", "stop_lon": 2.259743218545664, "coord": [48.801554374313845, 2.259743218545664], "stop_id": 3619161, "stop_desc": "30 RUE DE MEUDON - 92023", "stop_name": "POSTE"}, "geometry": {"type": "Point", "coordinates": [2.259743218545664, 48.801554374313845]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e48e7d4ae972e725d52a7e17b42e788ee6360718", "fields": {"departement": "92", "stop_lat": 48.81543867090609, "code_postal": "92046", "stop_lon": 2.2907244810202587, "coord": [48.81543867090609, 2.2907244810202587], "stop_id": 3619142, "stop_desc": "28 RUE HOCHE - 92046", "stop_name": "HOCHE"}, "geometry": {"type": "Point", "coordinates": [2.2907244810202587, 48.81543867090609]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f536ddd19f8975e83bf164d460fcfb79f208f88b", "fields": {"departement": "93", "stop_lat": 48.90416102868509, "code_postal": "93057", "stop_lon": 2.5051948388058465, "coord": [48.90416102868509, 2.5051948388058465], "stop_id": 3560253, "stop_desc": "FACE 120 AVENUE JEAN JAURES - 93057", "stop_name": "PIERRE BROSSOLETTE - LA BASOCHE"}, "geometry": {"type": "Point", "coordinates": [2.5051948388058465, 48.90416102868509]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eac1d39ab4995a19b4266a612fb795fcd122643d", "fields": {"departement": "94", "stop_lat": 48.81114673079737, "code_postal": "94017", "stop_lon": 2.5364241396969507, "coord": [48.81114673079737, 2.5364241396969507], "stop_id": 3619367, "stop_desc": "FACE 22 AV DU 11 NOVEMBRE 1918 - 94017", "stop_name": "11 NOVEMBRE 1918"}, "geometry": {"type": "Point", "coordinates": [2.5364241396969507, 48.81114673079737]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3229afafdf78cb02215a3f5675e278e23cbe7e8d", "fields": {"departement": "94", "stop_lat": 48.80278702229344, "code_postal": "94019", "stop_lon": 2.5525016118053543, "coord": [48.80278702229344, 2.5525016118053543], "stop_id": 3619350, "stop_desc": "RUE RABELAIS - 94019", "stop_name": "CLEMENT ADER - LES BORDES"}, "geometry": {"type": "Point", "coordinates": [2.5525016118053543, 48.80278702229344]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "44f2b4be88225ea3cf4e1873fd68d965b902b340", "fields": {"departement": "94", "stop_lat": 48.811254036529974, "code_postal": "94017", "stop_lon": 2.536751149327536, "coord": [48.811254036529974, 2.536751149327536], "stop_id": 3619366, "stop_desc": "22 AVENUE DU 11 NOVEMBRE 1918 - 94017", "stop_name": "11 NOVEMBRE 1918"}, "geometry": {"type": "Point", "coordinates": [2.536751149327536, 48.811254036529974]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1f9daf433abcdc8b6b14a4a916a2283fe44095a9", "fields": {"departement": "94", "stop_lat": 48.808618224470386, "code_postal": "94017", "stop_lon": 2.5381698136887874, "coord": [48.808618224470386, 2.5381698136887874], "stop_id": 3619364, "stop_desc": "AVENUE DU 11 NOVEMBRE 1918 - 94017", "stop_name": "LES MORDACS"}, "geometry": {"type": "Point", "coordinates": [2.5381698136887874, 48.808618224470386]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6338e018af48b5ac3b3c3cf0f61d7b68a68f04e1", "fields": {"departement": "94", "stop_lat": 48.77686997422665, "code_postal": "94071", "stop_lon": 2.5345384149897368, "coord": [48.77686997422665, 2.5345384149897368], "stop_id": 3619326, "stop_desc": "RUE DE NOISEAU - 94071", "stop_name": "NOISEAU-LE MORBRAS"}, "geometry": {"type": "Point", "coordinates": [2.5345384149897368, 48.77686997422665]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e468bf590fd3c9b81a650267d96a8e911b6da88d", "fields": {"departement": "94", "stop_lat": 48.808558299603284, "code_postal": "94017", "stop_lon": 2.5518995937052056, "coord": [48.808558299603284, 2.5518995937052056], "stop_id": 3619359, "stop_desc": "71 AVENUE SALVADOR ALLENDE - 94017", "stop_name": "VETERANS"}, "geometry": {"type": "Point", "coordinates": [2.5518995937052056, 48.808558299603284]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "35be4970048dc7fe2c00f1ad643e42eb4064a1f7", "fields": {"departement": "94", "stop_lat": 48.814919195724926, "code_postal": "94017", "stop_lon": 2.537853972399855, "coord": [48.814919195724926, 2.537853972399855], "stop_id": 3619369, "stop_desc": "370 AVENUE MAURICE THOREZ - 94017", "stop_name": "VOLTAIRE"}, "geometry": {"type": "Point", "coordinates": [2.537853972399855, 48.814919195724926]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b2e888f003dc72deeafae47b42e75b3ae3d69504", "fields": {"departement": "94", "stop_lat": 48.81454166615835, "code_postal": "94017", "stop_lon": 2.537879731634287, "coord": [48.81454166615835, 2.537879731634287], "stop_id": 3619368, "stop_desc": "389 AVENUE MAURICE THOREZ - 94017", "stop_name": "VOLTAIRE"}, "geometry": {"type": "Point", "coordinates": [2.537879731634287, 48.81454166615835]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "032953acdb02e08b8d2f5b5a349cb59fa37b17bf", "fields": {"departement": "94", "stop_lat": 48.803393584967345, "code_postal": "94017", "stop_lon": 2.550068617897763, "coord": [48.803393584967345, 2.550068617897763], "stop_id": 3619351, "stop_desc": "AVENUE BOILEAU - 94017", "stop_name": "RABELAIS"}, "geometry": {"type": "Point", "coordinates": [2.550068617897763, 48.803393584967345]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e809baebcd5544ee6c4057175f5fec9bd738512a", "fields": {"departement": "94", "stop_lat": 48.81975942429994, "code_postal": "94017", "stop_lon": 2.485499603323852, "coord": [48.81975942429994, 2.485499603323852], "stop_id": 3619413, "stop_desc": "25 AVENUE ROGER SALENGRO - 94017", "stop_name": "LA FOURCHETTE DE CHAMPIGNY"}, "geometry": {"type": "Point", "coordinates": [2.485499603323852, 48.81975942429994]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2f9453c577d61e9d60f24232a9e454ae901a64d8", "fields": {"departement": "94", "stop_lat": 48.82004983707806, "code_postal": "94042", "stop_lon": 2.467752300935123, "coord": [48.82004983707806, 2.467752300935123], "stop_id": 3619392, "stop_desc": "PONT DE JOINVILLE - 94042", "stop_name": "CARREFOUR DE LA RESISTANCE"}, "geometry": {"type": "Point", "coordinates": [2.467752300935123, 48.82004983707806]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f849bce816bb1260a852d9087d19dfadae2e5774", "fields": {"departement": "94", "stop_lat": 48.821491533493806, "code_postal": "94042", "stop_lon": 2.464366810471134, "coord": [48.821491533493806, 2.464366810471134], "stop_id": 3619390, "stop_desc": "AVENUE JEAN JAURES - 94042", "stop_name": "JOINVILLE-LE-PONT RER"}, "geometry": {"type": "Point", "coordinates": [2.464366810471134, 48.821491533493806]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9af9c7679f2c2c84b6d6e7019a6ee187a8e9efb2", "fields": {"departement": "94", "stop_lat": 48.8207913927885, "code_postal": "94042", "stop_lon": 2.4635212310090804, "coord": [48.8207913927885, 2.4635212310090804], "stop_id": 3619405, "stop_desc": "AVENUE JEAN JAURES - 94042", "stop_name": "JOINVILLE-LE-PONT RER"}, "geometry": {"type": "Point", "coordinates": [2.4635212310090804, 48.8207913927885]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4ca5c24869a591656850b5ac339ae3d71df1f1d6", "fields": {"departement": "94", "stop_lat": 48.78023308886009, "code_postal": "94028", "stop_lon": 2.459832212743814, "coord": [48.78023308886009, 2.459832212743814], "stop_id": 3619377, "stop_desc": "RUE AMEDEO MODIGLIANI - 94028", "stop_name": "CRETEIL - PREFECTURE"}, "geometry": {"type": "Point", "coordinates": [2.459832212743814, 48.78023308886009]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f4cfa035fe2e3650e0011b223824dff6a4fe14bb", "fields": {"departement": "94", "stop_lat": 48.81999384987343, "code_postal": "94079", "stop_lon": 2.539874335068376, "coord": [48.81999384987343, 2.539874335068376], "stop_id": 3619370, "stop_desc": "23 ROUTE DE CHENNEVIERES - 94079", "stop_name": "DOCTEUR BRING"}, "geometry": {"type": "Point", "coordinates": [2.539874335068376, 48.81999384987343]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5515749b2b032f9c81f784c80c946083c0c17055", "fields": {"departement": "94", "stop_lat": 48.81505742534415, "code_postal": "94017", "stop_lon": 2.506757397808122, "coord": [48.81505742534415, 2.506757397808122], "stop_id": 3619421, "stop_desc": "43 RUE JEAN JAURES - 94017", "stop_name": "GUITTARD"}, "geometry": {"type": "Point", "coordinates": [2.506757397808122, 48.81505742534415]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "743d88159d06568ea09906b8b248ef4c1f7770b5", "fields": {"departement": "94", "stop_lat": 48.819665262659576, "code_postal": "94042", "stop_lon": 2.474066572581072, "coord": [48.819665262659576, 2.474066572581072], "stop_id": 3619394, "stop_desc": "12 TER PLACE DE VERDUN - 94042", "stop_name": "VERDUN"}, "geometry": {"type": "Point", "coordinates": [2.474066572581072, 48.819665262659576]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7183992ea622343aebe6637bc34a49b0a3411690", "fields": {"departement": "94", "stop_lat": 48.82591284305459, "code_postal": "94042", "stop_lon": 2.4730757500410943, "coord": [48.82591284305459, 2.4730757500410943], "stop_id": 3619398, "stop_desc": "80 AVENUE FOCH - 94042", "stop_name": "MOZART"}, "geometry": {"type": "Point", "coordinates": [2.4730757500410943, 48.82591284305459]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "da33526aa75ac7c85b518f16fe188c7e39b4be87", "fields": {"departement": "94", "stop_lat": 48.82485911463702, "code_postal": "94042", "stop_lon": 2.4749650312292384, "coord": [48.82485911463702, 2.4749650312292384], "stop_id": 3619399, "stop_desc": "9 PLACE MOZART - 94042", "stop_name": "MOZART"}, "geometry": {"type": "Point", "coordinates": [2.4749650312292384, 48.82485911463702]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a7b142032df8859ab69936a22354e3a4a01ad5a2", "fields": {"departement": "94", "stop_lat": 48.81283630519382, "code_postal": "94017", "stop_lon": 2.501156990506999, "coord": [48.81283630519382, 2.501156990506999], "stop_id": 3619490, "stop_desc": "FACE 196 RUE DIDEROT - 94017", "stop_name": "DIDEROT - LA PLAGE"}, "geometry": {"type": "Point", "coordinates": [2.501156990506999, 48.81283630519382]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6fcce5c1d9314daff0107b73b407c198190dde5a", "fields": {"departement": "94", "stop_lat": 48.8162471118024, "code_postal": "94042", "stop_lon": 2.47649366946066, "coord": [48.8162471118024, 2.47649366946066], "stop_id": 3619479, "stop_desc": "4-6 AVENUE GILLES - 94042", "stop_name": "DAGOTY"}, "geometry": {"type": "Point", "coordinates": [2.47649366946066, 48.8162471118024]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "512435fdaec467600d18db6cd306976b0b10c5f2", "fields": {"departement": "94", "stop_lat": 48.82052837728242, "code_postal": "94042", "stop_lon": 2.4738102453124604, "coord": [48.82052837728242, 2.4738102453124604], "stop_id": 3619478, "stop_desc": "PLACE DE VERDUN - 94042", "stop_name": "VERDUN"}, "geometry": {"type": "Point", "coordinates": [2.4738102453124604, 48.82052837728242]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ff456bcba322f90a9c09e346935c68cf572cdb6f", "fields": {"departement": "93", "stop_lat": 48.9526171602876, "code_postal": "93007", "stop_lon": 2.4623827191222363, "coord": [48.9526171602876, 2.4623827191222363], "stop_id": 3666783, "stop_desc": "RUE ANATOLE SIGONNEAU - 93007", "stop_name": "ANATOLE SIGONNEAU - CENTRE D'AFFAIRES"}, "geometry": {"type": "Point", "coordinates": [2.4623827191222363, 48.9526171602876]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "47d16fd3b4b69dead368a8b9e4c203cfafa89d2a", "fields": {"departement": "93", "stop_lat": 48.94732999328036, "code_postal": "93030", "stop_lon": 2.436896621836972, "coord": [48.94732999328036, 2.436896621836972], "stop_id": 3666769, "stop_desc": "ESPLANADE DE L'AIR ET DE L'ESPACE - 93030", "stop_name": "MUSEE DE L'AIR ET DE L'ESPACE"}, "geometry": {"type": "Point", "coordinates": [2.436896621836972, 48.94732999328036]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "92d26a9eec1603b79a5788ff16ea88c7f90c21f0", "fields": {"departement": "75", "stop_lat": 48.89760883510394, "code_postal": "75118", "stop_lon": 2.359309444283519, "coord": [48.89760883510394, 2.359309444283519], "stop_id": 3666776, "stop_desc": "FACE AU 100 RUE DE LA CHAPELLE - 75118", "stop_name": "PORTE DE LA CHAPELLE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.359309444283519, 48.89760883510394]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "407feb700f9abe3effdb51b52ce857ff30e60868", "fields": {"departement": "93", "stop_lat": 49.01051954688492, "code_postal": "93073", "stop_lon": 2.559663932280221, "coord": [49.01051954688492, 2.559663932280221], "stop_id": 3666759, "stop_desc": "AEROPORT CHARLES DE GAULLE (T3) - 93073", "stop_name": "ROISSYPOLE - GARE - RER"}, "geometry": {"type": "Point", "coordinates": [2.559663932280221, 49.01051954688492]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6753458645fcdbe2587d732d255287845990c0e3", "fields": {"departement": "75", "stop_lat": 48.879473278409144, "code_postal": "75110", "stop_lon": 2.3557180612431323, "coord": [48.879473278409144, 2.3557180612431323], "stop_id": 3666771, "stop_desc": "33-35 RUE DE SAINT-QUENTIN - 75110", "stop_name": "LA FAYETTE - DUNKERQUE"}, "geometry": {"type": "Point", "coordinates": [2.3557180612431323, 48.879473278409144]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "89e9970bb40644484a7222605c06afd53b10cdbe", "fields": {"departement": "93", "stop_lat": 48.98354197724208, "code_postal": "93073", "stop_lon": 2.51719458677695, "coord": [48.98354197724208, 2.51719458677695], "stop_id": 3666753, "stop_desc": "56 AVENUE DE LA PYRAMIDE - 93073", "stop_name": "58, AVENUE DE LA PYRAMIDE"}, "geometry": {"type": "Point", "coordinates": [2.51719458677695, 48.98354197724208]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4526fffa9a43e3546782142ddc3ff38edcf3af6b", "fields": {"departement": "75", "stop_lat": 48.88506276042979, "code_postal": "75118", "stop_lon": 2.3591678300283867, "coord": [48.88506276042979, 2.3591678300283867], "stop_id": 3666770, "stop_desc": "5 RUE MARX DORMOY - 75118", "stop_name": "PLACE DE LA CHAPELLE"}, "geometry": {"type": "Point", "coordinates": [2.3591678300283867, 48.88506276042979]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2271b17f0b26a6469269338e6d5e23358f56ce53", "fields": {"departement": "75", "stop_lat": 48.88082998036255, "code_postal": "75110", "stop_lon": 2.3579941644875797, "coord": [48.88082998036255, 2.3579941644875797], "stop_id": 3666774, "stop_desc": "184 RUE DU FAUBOURG SAINT-DENIS - 75110", "stop_name": "GARE DU NORD"}, "geometry": {"type": "Point", "coordinates": [2.3579941644875797, 48.88082998036255]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e6c55dbe5f9da21172da3c4e8ce85ddf8b7e5c60", "fields": {"departement": "95", "stop_lat": 49.007892693168586, "code_postal": "95527", "stop_lon": 2.512812511923358, "coord": [49.007892693168586, 2.512812511923358], "stop_id": 3666766, "stop_desc": "RUE DE L'ARPENTEUR - 95527", "stop_name": "ENTRETIEN SUD"}, "geometry": {"type": "Point", "coordinates": [2.512812511923358, 49.007892693168586]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ad7150f3b65552fb144823491aa321f58cf9c24a", "fields": {"departement": "93", "stop_lat": 48.95023932361886, "code_postal": "93007", "stop_lon": 2.4496873518004296, "coord": [48.95023932361886, 2.4496873518004296], "stop_id": 3666780, "stop_desc": "AVENUE DESCARTES - 93007", "stop_name": "MAURICE AUDIN"}, "geometry": {"type": "Point", "coordinates": [2.4496873518004296, 48.95023932361886]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b978600b4d1b22c227869d02b52f34f043e1cd08", "fields": {"departement": "93", "stop_lat": 48.95732552622408, "code_postal": "93005", "stop_lon": 2.463021846246865, "coord": [48.95732552622408, 2.463021846246865], "stop_id": 3666746, "stop_desc": "RUE ROBERT BREMOND (VOIE PRIVEE DE GARONOR) - 93005", "stop_name": "GARONOR-PORTE SUD"}, "geometry": {"type": "Point", "coordinates": [2.463021846246865, 48.95732552622408]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "22383b4dde8fef65b739c1f4a77ec0e043bfac24", "fields": {"departement": "93", "stop_lat": 49.01051954688492, "code_postal": "93073", "stop_lon": 2.559663932280221, "coord": [49.01051954688492, 2.559663932280221], "stop_id": 3666710, "stop_desc": "AEROPORT CHARLES DE GAULLE (T3) - 93073", "stop_name": "ROISSYPOLE - GARE - RER"}, "geometry": {"type": "Point", "coordinates": [2.559663932280221, 49.01051954688492]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4c90bd534a1d9f12aefc567c9c9d4f1adb001a24", "fields": {"departement": "93", "stop_lat": 48.9481288514466, "code_postal": "93007", "stop_lon": 2.438044271536468, "coord": [48.9481288514466, 2.438044271536468], "stop_id": 3666682, "stop_desc": "AVENUE DU 8 MAI 1945 - 93007", "stop_name": "MUSEE DE L'AIR ET DE L'ESPACE"}, "geometry": {"type": "Point", "coordinates": [2.438044271536468, 48.9481288514466]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4087eadebec9aa62cd4129563be51c6c8aa50fce", "fields": {"departement": "93", "stop_lat": 48.97394864271551, "code_postal": "93078", "stop_lon": 2.5143218113031525, "coord": [48.97394864271551, 2.5143218113031525], "stop_id": 3666751, "stop_desc": "AVENUE DES NATIONS - 93078", "stop_name": "PARC DES EXPOSITIONS RER"}, "geometry": {"type": "Point", "coordinates": [2.5143218113031525, 48.97394864271551]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cb794c3d8d2eae5550625a91570d859bd54164de", "fields": {"departement": "75", "stop_lat": 48.880677255819144, "code_postal": "75110", "stop_lon": 2.357653442709006, "coord": [48.880677255819144, 2.357653442709006], "stop_id": 3666728, "stop_desc": "183 RUE DU FAUBOURG SAINT-DENIS - 75110", "stop_name": "GARE DU NORD"}, "geometry": {"type": "Point", "coordinates": [2.357653442709006, 48.880677255819144]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3ad310927b68795bead178dff92e28c7c0b56d82", "fields": {"departement": "93", "stop_lat": 48.950665169998864, "code_postal": "93007", "stop_lon": 2.4641518334444137, "coord": [48.950665169998864, 2.4641518334444137], "stop_id": 3666741, "stop_desc": "5 AVENUE E.RENAULT - 93007", "stop_name": "DESCARTES - RENAULT"}, "geometry": {"type": "Point", "coordinates": [2.4641518334444137, 48.950665169998864]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c72102ff3fcdc33d8343c1b86599825a7870028d", "fields": {"departement": "95", "stop_lat": 49.0093548695535, "code_postal": "95527", "stop_lon": 2.5477880446305514, "coord": [49.0093548695535, 2.5477880446305514], "stop_id": 3666712, "stop_desc": "ROUTE DES BADAUDS - 95527", "stop_name": "TOUR DE CONTROLE"}, "geometry": {"type": "Point", "coordinates": [2.5477880446305514, 49.0093548695535]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "97bad577c6aa94a3ffdc1049829f0cc7a1112d75", "fields": {"departement": "95", "stop_lat": 49.01237299186272, "code_postal": "95527", "stop_lon": 2.5213522952243, "coord": [49.01237299186272, 2.5213522952243], "stop_id": 3666716, "stop_desc": "ROUTE DE L'ARPENTEUR - 95527", "stop_name": "RUE DES 2 SOEURS"}, "geometry": {"type": "Point", "coordinates": [2.5213522952243, 49.01237299186272]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "69045629ee302e5d67fe0cf71c27ff5bf3e1309f", "fields": {"departement": "77", "stop_lat": 49.015367784893186, "code_postal": "77282", "stop_lon": 2.541992530464244, "coord": [49.015367784893186, 2.541992530464244], "stop_id": 3666713, "stop_desc": "AEROPORT CHARLES DE GAULLE - 77282", "stop_name": "TERMINAL 1"}, "geometry": {"type": "Point", "coordinates": [2.541992530464244, 49.015367784893186]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8466832353056d657f6870982eb720a64814e063", "fields": {"departement": "93", "stop_lat": 48.88423567991556, "code_postal": "93064", "stop_lon": 2.4854523315455075, "coord": [48.88423567991556, 2.4854523315455075], "stop_id": 3616894, "stop_desc": "FACE 99 BOULEVARD ALSACE-LORRAINE - 93064", "stop_name": "BOIS-PERRIER NORD"}, "geometry": {"type": "Point", "coordinates": [2.4854523315455075, 48.88423567991556]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5a238c8233cdcc1836cd8f70b2ab8406d469ba12", "fields": {"departement": "93", "stop_lat": 48.88445147468918, "code_postal": "93064", "stop_lon": 2.485371183853036, "coord": [48.88445147468918, 2.485371183853036], "stop_id": 3616895, "stop_desc": "91 BOULEVARD ALSACE-LORRAINE - 93064", "stop_name": "BOIS-PERRIER NORD"}, "geometry": {"type": "Point", "coordinates": [2.485371183853036, 48.88445147468918]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "af5af3d833f342ecb117e0eeeed565ce66e44387", "fields": {"departement": "93", "stop_lat": 48.88501464517659, "code_postal": "93064", "stop_lon": 2.4804941157949116, "coord": [48.88501464517659, 2.4804941157949116], "stop_id": 3616892, "stop_desc": "BOULEVARD D'ALSACE LORRAINE - 93064", "stop_name": "CHEMIN DE BONDY"}, "geometry": {"type": "Point", "coordinates": [2.4804941157949116, 48.88501464517659]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4a363b74680cd0f38f599826e3987d633e3eb30c", "fields": {"departement": "93", "stop_lat": 48.89145097999565, "code_postal": "93053", "stop_lon": 2.454452724830586, "coord": [48.89145097999565, 2.454452724830586], "stop_id": 3560257, "stop_desc": "RUE JEAN JAURES - 93053", "stop_name": "MARCHE DES DECOUVERTES"}, "geometry": {"type": "Point", "coordinates": [2.454452724830586, 48.89145097999565]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "31abdbc7277fe33d36adfa3ef26a4029592141ef", "fields": {"departement": "94", "stop_lat": 48.83550847166781, "code_postal": "94015", "stop_lon": 2.5333726800339575, "coord": [48.83550847166781, 2.5333726800339575], "stop_id": 3616880, "stop_desc": "VOIE PRIVEE - 94015", "stop_name": "LES HAUTS DE BRY"}, "geometry": {"type": "Point", "coordinates": [2.5333726800339575, 48.83550847166781]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3c56c459b2c089b135356862d0fa8e6c5ac554ba", "fields": {"departement": "94", "stop_lat": 48.83798644590723, "code_postal": "94015", "stop_lon": 2.5349478013371, "coord": [48.83798644590723, 2.5349478013371], "stop_id": 3616883, "stop_desc": "AV DES FRERES LUMIERE - 94015", "stop_name": "LA FONTAINE"}, "geometry": {"type": "Point", "coordinates": [2.5349478013371, 48.83798644590723]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ce1a7ee4d5e2f8b6a5378ae891ed2f6fcdded78c", "fields": {"departement": "93", "stop_lat": 48.884699099389856, "code_postal": "93077", "stop_lon": 2.502120102414242, "coord": [48.884699099389856, 2.502120102414242], "stop_id": 3616900, "stop_desc": "65-67 AV DE ROSNY - 93077", "stop_name": "MEISSONIER"}, "geometry": {"type": "Point", "coordinates": [2.502120102414242, 48.884699099389856]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a9fd28cd3c47f4c0fe47abcb47d76929f8775770", "fields": {"departement": "94", "stop_lat": 48.834435102950806, "code_postal": "94015", "stop_lon": 2.5302237140784376, "coord": [48.834435102950806, 2.5302237140784376], "stop_id": 3616874, "stop_desc": "AV DE L'EUROPE - 94015", "stop_name": "EUROPE"}, "geometry": {"type": "Point", "coordinates": [2.5302237140784376, 48.834435102950806]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "02f84e9dd6adbe301f7153a65a189b13540b7d57", "fields": {"departement": "94", "stop_lat": 48.77159089552955, "code_postal": "94071", "stop_lon": 2.525353414023716, "coord": [48.77159089552955, 2.525353414023716], "stop_id": 3619323, "stop_desc": "15 AVENUE GEORGES POMPIDOU - 94071", "stop_name": "CENTRE ADMINISTRATIF"}, "geometry": {"type": "Point", "coordinates": [2.525353414023716, 48.77159089552955]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bee69bda64becd1b3a7e4c3f98a716f70eeaa1f0", "fields": {"departement": "94", "stop_lat": 48.77406883122277, "code_postal": "94011", "stop_lon": 2.4824319434364592, "coord": [48.77406883122277, 2.4824319434364592], "stop_id": 3619304, "stop_desc": "FACE 28 AVENUE AUGUSTE GROSS - 94011", "stop_name": "AVENUE DE CHOISY"}, "geometry": {"type": "Point", "coordinates": [2.4824319434364592, 48.77406883122277]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a21757dbaf6fa2ee825a8d80c27ee7f80d1f5142", "fields": {"departement": "94", "stop_lat": 48.77374863621866, "code_postal": "94011", "stop_lon": 2.4869593166419084, "coord": [48.77374863621866, 2.4869593166419084], "stop_id": 3619308, "stop_desc": "5 AVENUE AUGUSTE GROSS - 94011", "stop_name": "MAIRIE DE BONNEUIL"}, "geometry": {"type": "Point", "coordinates": [2.4869593166419084, 48.77374863621866]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "50c12605638c5989c1c83422ed09ba24be42c082", "fields": {"departement": "94", "stop_lat": 48.774420175201065, "code_postal": "94011", "stop_lon": 2.4817665950156056, "coord": [48.774420175201065, 2.4817665950156056], "stop_id": 3619305, "stop_desc": "8 AVENUE DE PARIS - 94011", "stop_name": "AVENUE DE CHOISY"}, "geometry": {"type": "Point", "coordinates": [2.4817665950156056, 48.774420175201065]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b393094aea84b52a80f88b4408655c3487d167b0", "fields": {"departement": "94", "stop_lat": 48.79023939707876, "code_postal": "94055", "stop_lon": 2.531936668901471, "coord": [48.79023939707876, 2.531936668901471], "stop_id": 3619335, "stop_desc": "120-122 RUE D'AMBOILE - 94055", "stop_name": "NOISEAU-AMBOILE"}, "geometry": {"type": "Point", "coordinates": [2.531936668901471, 48.79023939707876]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d60dbe2809ed1a8dcdbd2f87ff24106f7e63bc94", "fields": {"departement": "94", "stop_lat": 48.77504175371008, "code_postal": "94071", "stop_lon": 2.513997351036607, "coord": [48.77504175371008, 2.513997351036607], "stop_id": 3619314, "stop_desc": "FACE 12 RUE JEAN MOULIN - 94071", "stop_name": "JEAN MOULIN"}, "geometry": {"type": "Point", "coordinates": [2.513997351036607, 48.77504175371008]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "04c3f344e1ad2f022a5e75c24ff331c4aca8e564", "fields": {"departement": "94", "stop_lat": 48.77385846776697, "code_postal": "94011", "stop_lon": 2.4853822150721703, "coord": [48.77385846776697, 2.4853822150721703], "stop_id": 3619306, "stop_desc": "21 AVENUE AUGUSTE GROSS - 94011", "stop_name": "ECOLES"}, "geometry": {"type": "Point", "coordinates": [2.4853822150721703, 48.77385846776697]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9136158d198e79185cfcb6ad7d29f2775820a752", "fields": {"departement": "94", "stop_lat": 48.77532831644239, "code_postal": "94071", "stop_lon": 2.514705464989171, "coord": [48.77532831644239, 2.514705464989171], "stop_id": 3619315, "stop_desc": "2-4 RUE JEAN MOULIN - 94071", "stop_name": "JEAN MOULIN"}, "geometry": {"type": "Point", "coordinates": [2.514705464989171, 48.77532831644239]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d3cb6b760794a6c6ce84d3a5d41c66f39285ad7e", "fields": {"departement": "94", "stop_lat": 48.77615741871018, "code_postal": "94011", "stop_lon": 2.4796499789115707, "coord": [48.77615741871018, 2.4796499789115707], "stop_id": 3619302, "stop_desc": "43 AVENUE DE PARIS - 94011", "stop_name": "REGARD"}, "geometry": {"type": "Point", "coordinates": [2.4796499789115707, 48.77615741871018]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "62649395b414ddb81cd0f10bdae8693462cbeb64", "fields": {"departement": "94", "stop_lat": 48.77220436360905, "code_postal": "94071", "stop_lon": 2.50585608971384, "coord": [48.77220436360905, 2.50585608971384], "stop_id": 3619312, "stop_desc": "0 NR - 94071", "stop_name": "SUCY-BONNEUIL RER"}, "geometry": {"type": "Point", "coordinates": [2.50585608971384, 48.77220436360905]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "431b830ccd591701e6c7d92cdbbff59a96c53c34", "fields": {"departement": "94", "stop_lat": 48.823395811335416, "code_postal": "94079", "stop_lon": 2.542432954768838, "coord": [48.823395811335416, 2.542432954768838], "stop_id": 3619373, "stop_desc": "FACE 1 RUE DU CHEMIN DE FER - 94079", "stop_name": "VILLIERS-SUR-MARNE - LE PLESSIS-TREVISE RER"}, "geometry": {"type": "Point", "coordinates": [2.542432954768838, 48.823395811335416]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d03cc19837013179fca018f07e7e517b25eb1df3", "fields": {"departement": "94", "stop_lat": 48.81517164208101, "code_postal": "94017", "stop_lon": 2.4814717708253067, "coord": [48.81517164208101, 2.4814717708253067], "stop_id": 3619481, "stop_desc": "57 AVENUE CHARLES FLOQUET - 94017", "stop_name": "CHARLES FLOQUET - DIDEROT"}, "geometry": {"type": "Point", "coordinates": [2.4814717708253067, 48.81517164208101]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d2a3784c1c82771b41204459002e15b831a035e2", "fields": {"departement": "94", "stop_lat": 48.81737209049067, "code_postal": "94017", "stop_lon": 2.482743599001299, "coord": [48.81737209049067, 2.482743599001299], "stop_id": 3619483, "stop_desc": "FACE 3 RUE DE VERDUN - 94017", "stop_name": "VERDUN - CHARLES FLOQUET"}, "geometry": {"type": "Point", "coordinates": [2.482743599001299, 48.81737209049067]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "520b6492c02682f74fb9bb022d81cdeac3fad176", "fields": {"departement": "94", "stop_lat": 48.82004983707806, "code_postal": "94042", "stop_lon": 2.467752300935123, "coord": [48.82004983707806, 2.467752300935123], "stop_id": 3619630, "stop_desc": "PONT DE JOINVILLE - 94042", "stop_name": "CARREFOUR DE LA RESISTANCE"}, "geometry": {"type": "Point", "coordinates": [2.467752300935123, 48.82004983707806]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e320d6f6f0d30d0c8bac447f6411e00514abd89f", "fields": {"departement": "94", "stop_lat": 48.82124898246001, "code_postal": "94042", "stop_lon": 2.464257329693361, "coord": [48.82124898246001, 2.464257329693361], "stop_id": 3619629, "stop_desc": "AVENUE JEAN JAURES - 94042", "stop_name": "JOINVILLE-LE-PONT-RER"}, "geometry": {"type": "Point", "coordinates": [2.464257329693361, 48.82124898246001]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b44c3cac7df2eeedb463b678cbf752d8a4765615", "fields": {"departement": "94", "stop_lat": 48.81483907998832, "code_postal": "94017", "stop_lon": 2.481484456008955, "coord": [48.81483907998832, 2.481484456008955], "stop_id": 3619482, "stop_desc": "FACE 2 RUE DIDEROT - 94017", "stop_name": "CHARLES FLOQUET - DIDEROT"}, "geometry": {"type": "Point", "coordinates": [2.481484456008955, 48.81483907998832]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a7498625683cd582fd8556248a5aecd548140091", "fields": {"departement": "94", "stop_lat": 48.81283630519382, "code_postal": "94017", "stop_lon": 2.501156990506999, "coord": [48.81283630519382, 2.501156990506999], "stop_id": 3619489, "stop_desc": "FACE 196 RUE DIDEROT - 94017", "stop_name": "DIDEROT - LA PLAGE"}, "geometry": {"type": "Point", "coordinates": [2.501156990506999, 48.81283630519382]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "971d1792a4947e4ebf0b948166785f7298d180b4", "fields": {"departement": "94", "stop_lat": 48.812809997560656, "code_postal": "94017", "stop_lon": 2.4939987631952842, "coord": [48.812809997560656, 2.4939987631952842], "stop_id": 3619487, "stop_desc": "99 RUE DIDEROT - 94017", "stop_name": "DIANE"}, "geometry": {"type": "Point", "coordinates": [2.4939987631952842, 48.812809997560656]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dbb2de25bc9e131067d03c363f3445d68aa55ac0", "fields": {"departement": "93", "stop_lat": 48.88345717021252, "code_postal": "93064", "stop_lon": 2.47514795772559, "coord": [48.88345717021252, 2.47514795772559], "stop_id": 3450603, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 93064", "stop_name": "ROSNY 2 - CENTRE COMMERCIAL"}, "geometry": {"type": "Point", "coordinates": [2.47514795772559, 48.88345717021252]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "96243eaf442ff66caac9271398981a5d37dd2ae8", "fields": {"departement": "92", "stop_lat": 48.81821466305489, "code_postal": "92049", "stop_lon": 2.319520813749946, "coord": [48.81821466305489, 2.319520813749946], "stop_id": 3449478, "stop_desc": "51 AVENUE DE LA REPUBLIQUE - 92049", "stop_name": "MAIRIE DE MONTROUGE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.319520813749946, 48.81821466305489]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5e12f6589c5603f927ca458d1e0fa30a74837c36", "fields": {"departement": "93", "stop_lat": 48.882631221265676, "code_postal": "93064", "stop_lon": 2.481986495656371, "coord": [48.882631221265676, 2.481986495656371], "stop_id": 3446792, "stop_desc": "RUE JEAN DE MAILLY - 93064", "stop_name": "BOIS-PERRIER RER-ROSNY 2"}, "geometry": {"type": "Point", "coordinates": [2.481986495656371, 48.882631221265676]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2cd5ffe820208d5d3273409898568facae03300d", "fields": {"departement": "93", "stop_lat": 48.89646490159144, "code_postal": "93010", "stop_lon": 2.4800214325356196, "coord": [48.89646490159144, 2.4800214325356196], "stop_id": 3450611, "stop_desc": "127 AVENUE CARNOT - 93010", "stop_name": "EDOUARD VAILLANT-CARNOT"}, "geometry": {"type": "Point", "coordinates": [2.4800214325356196, 48.89646490159144]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "17da8d9bbc2989396e84a1d46aadf1c028c9ebac", "fields": {"departement": "93", "stop_lat": 48.87906103055954, "code_postal": "93064", "stop_lon": 2.490956079507645, "coord": [48.87906103055954, 2.490956079507645], "stop_id": 3446795, "stop_desc": "96 AV DU PRESIDENT JOHN KENNEDY - 93064", "stop_name": "KELLERMANN"}, "geometry": {"type": "Point", "coordinates": [2.490956079507645, 48.87906103055954]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2d92b7c5a47cf45c7638a827674a24007e4904b0", "fields": {"departement": "93", "stop_lat": 48.89556049930796, "code_postal": "93010", "stop_lon": 2.4772383471583588, "coord": [48.89556049930796, 2.4772383471583588], "stop_id": 3450610, "stop_desc": "RUE ROGER SALENGRO - 93010", "stop_name": "GARE DE BONDY RER"}, "geometry": {"type": "Point", "coordinates": [2.4772383471583588, 48.89556049930796]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e26be82ed2c2a0443abb7ff599c98c65ecc6c8e6", "fields": {"departement": "93", "stop_lat": 48.928506319652776, "code_postal": "93029", "stop_lon": 2.4616152346260933, "coord": [48.928506319652776, 2.4616152346260933], "stop_id": 3450639, "stop_desc": "95 AVENUE JOFFRE - 93029", "stop_name": "JOFFRE - MADELON"}, "geometry": {"type": "Point", "coordinates": [2.4616152346260933, 48.928506319652776]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "18ac71c7daa8e336a84d57f67cc050804394d343", "fields": {"departement": "93", "stop_lat": 48.893254381519775, "code_postal": "93010", "stop_lon": 2.474151793665429, "coord": [48.893254381519775, 2.474151793665429], "stop_id": 3450607, "stop_desc": "21 AVENUE JULES FERRY - 93010", "stop_name": "DAVID LEDER"}, "geometry": {"type": "Point", "coordinates": [2.474151793665429, 48.893254381519775]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "802dd24a0966c4666f7430135aba59b2b8974df8", "fields": {"departement": "93", "stop_lat": 48.918161074606274, "code_postal": "93010", "stop_lon": 2.478867597962442, "coord": [48.918161074606274, 2.478867597962442], "stop_id": 3450624, "stop_desc": "AVENUE LEON JOUHAUX - 93010", "stop_name": "JOUHAUX - BLUM"}, "geometry": {"type": "Point", "coordinates": [2.478867597962442, 48.918161074606274]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a3002e19bd196be2f46bcdb0006135998b1214bf", "fields": {"departement": "92", "stop_lat": 48.81677763671235, "code_postal": "92049", "stop_lon": 2.3286261612661994, "coord": [48.81677763671235, 2.3286261612661994], "stop_id": 3449471, "stop_desc": "2 RUE DE LA VANNE - 92049", "stop_name": "BARBES"}, "geometry": {"type": "Point", "coordinates": [2.3286261612661994, 48.81677763671235]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bc5e41fcb3591a4f4ed0e2abd72fdfb7f2f78f3b", "fields": {"departement": "93", "stop_lat": 48.90421097774594, "code_postal": "93010", "stop_lon": 2.4730356002728167, "coord": [48.90421097774594, 2.4730356002728167], "stop_id": 3560236, "stop_desc": "FACE 1 RUE JULES GUESDE - 93010", "stop_name": "LYCEES PAGNOL - RENOIR"}, "geometry": {"type": "Point", "coordinates": [2.4730356002728167, 48.90421097774594]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9951f1bcaaa7ae75cf8e094de9034f0550642251", "fields": {"departement": "93", "stop_lat": 48.899751464597436, "code_postal": "93010", "stop_lon": 2.4963746169538106, "coord": [48.899751464597436, 2.4963746169538106], "stop_id": 3560247, "stop_desc": "163 BIS AVENUE HENRI BARBUSSE - 93010", "stop_name": "MARCEL SEMBAT"}, "geometry": {"type": "Point", "coordinates": [2.4963746169538106, 48.899751464597436]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9c8e7e4917ccabee40a0103e7de34912422943da", "fields": {"departement": "93", "stop_lat": 48.90392513592614, "code_postal": "93010", "stop_lon": 2.471494371885404, "coord": [48.90392513592614, 2.471494371885404], "stop_id": 3560234, "stop_desc": "AVENUE DU GENERAL GALLIENI - 93010", "stop_name": "AVENUE DE ROSNY"}, "geometry": {"type": "Point", "coordinates": [2.471494371885404, 48.90392513592614]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d8b0b1bef85a54f03906f3433894e206d0a5df37", "fields": {"departement": "93", "stop_lat": 48.90149678198647, "code_postal": "93010", "stop_lon": 2.488064500379206, "coord": [48.90149678198647, 2.488064500379206], "stop_id": 3560242, "stop_desc": "AVENUE HENRI BARBUSSE - 93010", "stop_name": "PIERRE BROSSOLETTE"}, "geometry": {"type": "Point", "coordinates": [2.488064500379206, 48.90149678198647]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e16388afa366a0c7c9a041bfd3f286863be97515", "fields": {"departement": "93", "stop_lat": 48.89933174451103, "code_postal": "93057", "stop_lon": 2.50103525350716, "coord": [48.89933174451103, 2.50103525350716], "stop_id": 3560248, "stop_desc": "FACE 25 AVENUE ALBERT THOMAS - 93057", "stop_name": "ALBERT THOMAS"}, "geometry": {"type": "Point", "coordinates": [2.50103525350716, 48.89933174451103]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b970d02bce25f2661569c03048fdaaabb5bdc55d", "fields": {"departement": "93", "stop_lat": 48.89963535884915, "code_postal": "93010", "stop_lon": 2.495829002842081, "coord": [48.89963535884915, 2.495829002842081], "stop_id": 3560246, "stop_desc": "168 AVENUE HENRI BARBUSSE - 93010", "stop_name": "MARCEL SEMBAT"}, "geometry": {"type": "Point", "coordinates": [2.495829002842081, 48.89963535884915]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7acc99bcfe53a9119ff6ac3bedcf9d022f88d35f", "fields": {"departement": "93", "stop_lat": 48.89888307411598, "code_postal": "93053", "stop_lon": 2.4635343017098013, "coord": [48.89888307411598, 2.4635343017098013], "stop_id": 3560229, "stop_desc": "13-15 AVENUE GALLIENI - 93053", "stop_name": "DENIS PAPIN"}, "geometry": {"type": "Point", "coordinates": [2.4635343017098013, 48.89888307411598]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "61478c5d6c396226f1d9cd10ab9956332ae19586", "fields": {"departement": "93", "stop_lat": 48.898801799691796, "code_postal": "93053", "stop_lon": 2.463902146327137, "coord": [48.898801799691796, 2.463902146327137], "stop_id": 3560228, "stop_desc": "46 AVENUE GALLIENI - 93053", "stop_name": "DENIS PAPIN"}, "geometry": {"type": "Point", "coordinates": [2.463902146327137, 48.898801799691796]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3c75b79af516f5bfae42e10131b67bc28c4fd0ef", "fields": {"departement": "93", "stop_lat": 48.89325064548313, "code_postal": "93053", "stop_lon": 2.4611353713492186, "coord": [48.89325064548313, 2.4611353713492186], "stop_id": 3560225, "stop_desc": "84 BOULEVARD MICHELET - 93053", "stop_name": "GAMBETTA"}, "geometry": {"type": "Point", "coordinates": [2.4611353713492186, 48.89325064548313]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "02643166f98b61f47c9d867d25e184bdedcc8ede", "fields": {"departement": "92", "stop_lat": 48.81929010514541, "code_postal": "92046", "stop_lon": 2.304875752326084, "coord": [48.81929010514541, 2.304875752326084], "stop_id": 3619170, "stop_desc": "126-128 BD GABRIEL PERI - 92046", "stop_name": "PIERRE LAROUSSE - CARREFOUR DU 8 MAI 1945"}, "geometry": {"type": "Point", "coordinates": [2.304875752326084, 48.81929010514541]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "97f725eba044020b8971b1947797c08d2cc097a5", "fields": {"departement": "94", "stop_lat": 48.78355751481648, "code_postal": "94028", "stop_lon": 2.4519515004641765, "coord": [48.78355751481648, 2.4519515004641765], "stop_id": 3619289, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 94028", "stop_name": "PREFECTURE DU VAL-DE-MARNE."}, "geometry": {"type": "Point", "coordinates": [2.4519515004641765, 48.78355751481648]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2e30a9d2fe700855d590932560066a9e229d8ccb", "fields": {"departement": "92", "stop_lat": 48.80128825912298, "code_postal": "92023", "stop_lon": 2.265349121739541, "coord": [48.80128825912298, 2.265349121739541], "stop_id": 3619156, "stop_desc": "22 RUE PIERRE ET MARIE CURIE - 92023", "stop_name": "MARCHE DE CLAMART"}, "geometry": {"type": "Point", "coordinates": [2.265349121739541, 48.80128825912298]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f277e24512d5e45582de1d698b24c7cc2af3290e", "fields": {"departement": "94", "stop_lat": 48.781116638087184, "code_postal": "94028", "stop_lon": 2.473829033177264, "coord": [48.781116638087184, 2.473829033177264], "stop_id": 3619301, "stop_desc": "4-6 AVENUE DU DOCTEUR PAUL CASALIS - 94028", "stop_name": "LA GAITE"}, "geometry": {"type": "Point", "coordinates": [2.473829033177264, 48.781116638087184]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "206cb243b3b80467653389591bc4c5f807103f41", "fields": {"departement": "94", "stop_lat": 48.78529175404654, "code_postal": "94028", "stop_lon": 2.452404176996184, "coord": [48.78529175404654, 2.452404176996184], "stop_id": 3619287, "stop_desc": "AVENUE FRANCOIS MAURIAC - 94028", "stop_name": "CROIX DES MECHES"}, "geometry": {"type": "Point", "coordinates": [2.452404176996184, 48.78529175404654]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dd9450e9e3db48b4c984e8d2574f546dc7b9352f", "fields": {"departement": "94", "stop_lat": 48.7777466934766, "code_postal": "94028", "stop_lon": 2.473344192348987, "coord": [48.7777466934766, 2.473344192348987], "stop_id": 3619299, "stop_desc": "FACE AU 11 AVENUE GEORGES DUHAMEL - 94028", "stop_name": "EMOULEUSES"}, "geometry": {"type": "Point", "coordinates": [2.473344192348987, 48.7777466934766]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "93d04f0a572142770577f1f18ff1b33b9968ba18", "fields": {"departement": "92", "stop_lat": 48.800224844496384, "code_postal": "92023", "stop_lon": 2.2607792074492186, "coord": [48.800224844496384, 2.2607792074492186], "stop_id": 3619160, "stop_desc": "FACE 3 BIS PLACE HUNEBELLE - 92023", "stop_name": "PLACE HUNEBELLE"}, "geometry": {"type": "Point", "coordinates": [2.2607792074492186, 48.800224844496384]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "011f6e1c4354cd9fc1550dbf5caca5efe5e24d24", "fields": {"departement": "92", "stop_lat": 48.81140571088759, "code_postal": "92023", "stop_lon": 2.2764258295286113, "coord": [48.81140571088759, 2.2764258295286113], "stop_id": 3619149, "stop_desc": "189 AVENUE MARGUERITE RENAUDIN - 92023", "stop_name": "HEBERT"}, "geometry": {"type": "Point", "coordinates": [2.2764258295286113, 48.81140571088759]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "083aab4b5f96dd72b3c6cd6e81e7c7c9808de719", "fields": {"departement": "94", "stop_lat": 48.777628137730986, "code_postal": "94028", "stop_lon": 2.466829762690551, "coord": [48.777628137730986, 2.466829762690551], "stop_id": 3619296, "stop_desc": "RUE JULIETTE SAVAR - 94028", "stop_name": "RENE ARCOS"}, "geometry": {"type": "Point", "coordinates": [2.466829762690551, 48.777628137730986]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1379ee5a9073a111ae0abacc07f87c40c352a41f", "fields": {"departement": "92", "stop_lat": 48.8013746355089, "code_postal": "92023", "stop_lon": 2.259770698100961, "coord": [48.8013746355089, 2.259770698100961], "stop_id": 3619162, "stop_desc": "FACE 30 RUE DE MEUDON - 92023", "stop_name": "POSTE"}, "geometry": {"type": "Point", "coordinates": [2.259770698100961, 48.8013746355089]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7f1a65350cfa17db64655f659c59a4dfea72b59a", "fields": {"departement": "94", "stop_lat": 48.823395811335416, "code_postal": "94079", "stop_lon": 2.542432954768838, "coord": [48.823395811335416, 2.542432954768838], "stop_id": 3619471, "stop_desc": "PL PIERRE SEMARD - 94079", "stop_name": "VILLIERS-SUR-MARNE - LE PLESSIS-TREVISE RER"}, "geometry": {"type": "Point", "coordinates": [2.542432954768838, 48.823395811335416]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4a8d7f87d7107aa52f70ed0ae3fc71d7be816bf3", "fields": {"departement": "94", "stop_lat": 48.826068431366515, "code_postal": "94079", "stop_lon": 2.540524210599729, "coord": [48.826068431366515, 2.540524210599729], "stop_id": 3619470, "stop_desc": "FACE 37 RUE DU GENERAL GALLIENI - 94079", "stop_name": "MAIRIE DE VILLIERS-SUR-MARNE"}, "geometry": {"type": "Point", "coordinates": [2.540524210599729, 48.826068431366515]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "df8598506f0b184d02ea5f20095c39f7821bb2ce", "fields": {"departement": "94", "stop_lat": 48.82629358652719, "code_postal": "94079", "stop_lon": 2.540252848669576, "coord": [48.82629358652719, 2.540252848669576], "stop_id": 3619469, "stop_desc": "41 RUE DU GENERAL GALLIENI - 94079", "stop_name": "MAIRIE DE VILLIERS-SUR-MARNE"}, "geometry": {"type": "Point", "coordinates": [2.540252848669576, 48.82629358652719]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0daa148f5c948760ead29f1844a2cc12f81e3f5e", "fields": {"departement": "94", "stop_lat": 48.8202835765554, "code_postal": "94042", "stop_lon": 2.4676984462794116, "coord": [48.8202835765554, 2.4676984462794116], "stop_id": 3619435, "stop_desc": "PONT DE JOINVILLE - 94042", "stop_name": "CARREFOUR DE LA RESISTANCE"}, "geometry": {"type": "Point", "coordinates": [2.4676984462794116, 48.8202835765554]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "366739fe460f52f5e5b712b77011215109eaf682", "fields": {"departement": "94", "stop_lat": 48.816504806848876, "code_postal": "94017", "stop_lon": 2.500066196243978, "coord": [48.816504806848876, 2.500066196243978], "stop_id": 3619446, "stop_desc": "136 AVENUE ROGER SALENGRO - 94017", "stop_name": "PLAGE DE CHAMPIGNY"}, "geometry": {"type": "Point", "coordinates": [2.500066196243978, 48.816504806848876]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b96c994a405792e0065af04a6b5292c5299ffac1", "fields": {"departement": "94", "stop_lat": 48.827201878141615, "code_postal": "94017", "stop_lon": 2.5175917132029504, "coord": [48.827201878141615, 2.5175917132029504], "stop_id": 3619464, "stop_desc": "293 AVENUE DU GENERAL DE GAULLE - 94017", "stop_name": "LES MARAIS"}, "geometry": {"type": "Point", "coordinates": [2.5175917132029504, 48.827201878141615]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d2ba7f9d51caf05b08315b9c8020958e132a5220", "fields": {"departement": "94", "stop_lat": 48.820997472616924, "code_postal": "94042", "stop_lon": 2.464120606484781, "coord": [48.820997472616924, 2.464120606484781], "stop_id": 3619473, "stop_desc": "AV JEAN JAURES - 94042", "stop_name": "JOINVILLE-LE-PONT RER"}, "geometry": {"type": "Point", "coordinates": [2.464120606484781, 48.820997472616924]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3240b27e6c1028427b9bfb5a4aba041a01689b31", "fields": {"departement": "94", "stop_lat": 48.81387624492796, "code_postal": "94017", "stop_lon": 2.50939367172205, "coord": [48.81387624492796, 2.50939367172205], "stop_id": 3619422, "stop_desc": "FACE 85 AVENUE JEAN JAURES - 94017", "stop_name": "MAIRIE - MARCHE"}, "geometry": {"type": "Point", "coordinates": [2.50939367172205, 48.81387624492796]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "22c587420c83375cc2c8c213a614a326d3db7d06", "fields": {"departement": "94", "stop_lat": 48.81995626912527, "code_postal": "94042", "stop_lon": 2.478844627264899, "coord": [48.81995626912527, 2.478844627264899], "stop_id": 3619438, "stop_desc": "44 AVENUE DU GENERAL GALLIENI - 94042", "stop_name": "LES PLATANES"}, "geometry": {"type": "Point", "coordinates": [2.478844627264899, 48.81995626912527]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e25a64ecaca4af35eeb3046e7b15e5108773c4ee", "fields": {"departement": "94", "stop_lat": 48.819710075886654, "code_postal": "94042", "stop_lon": 2.4741755742329605, "coord": [48.819710075886654, 2.4741755742329605], "stop_id": 3619436, "stop_desc": "12 PLACE DE VERDUN - 94042", "stop_name": "VERDUN"}, "geometry": {"type": "Point", "coordinates": [2.4741755742329605, 48.819710075886654]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f519c7f5e06b69e136f27d12e3b77d65b40c557c", "fields": {"departement": "93", "stop_lat": 48.86919924698499, "code_postal": "93050", "stop_lon": 2.5559379441143, "coord": [48.86919924698499, 2.5559379441143], "stop_id": 3616927, "stop_desc": "113 AV PAUL VAILLANT COUTURIER - 93050", "stop_name": "RUE DE LA POINTE"}, "geometry": {"type": "Point", "coordinates": [2.5559379441143, 48.86919924698499]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3c1968bc4441df636c59e60b7e460ebcb6171f43", "fields": {"departement": "92", "stop_lat": 48.81410730077502, "code_postal": "92046", "stop_lon": 2.287786140478486, "coord": [48.81410730077502, 2.287786140478486], "stop_id": 3619144, "stop_desc": "0 RPT HENRI BARBUSSE - 92046", "stop_name": "ROND-POINT HENRI BARBUSSE"}, "geometry": {"type": "Point", "coordinates": [2.287786140478486, 48.81410730077502]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "60c9ab2b49219ec732422b78328ae9e710a87010", "fields": {"departement": "92", "stop_lat": 48.81151574234897, "code_postal": "92046", "stop_lon": 2.2808483900184924, "coord": [48.81151574234897, 2.2808483900184924], "stop_id": 3619148, "stop_desc": "64 BOULEVARD DU COLONEL FABIEN - 92046", "stop_name": "COLONEL FABIEN"}, "geometry": {"type": "Point", "coordinates": [2.2808483900184924, 48.81151574234897]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a5ed90ae9e64d1d7ee2b6f8ca7287e53279f8429", "fields": {"departement": "93", "stop_lat": 48.884963221706364, "code_postal": "93077", "stop_lon": 2.506045686703492, "coord": [48.884963221706364, 2.506045686703492], "stop_id": 3616903, "stop_desc": "12 TER AV DE ROSNY - 93077", "stop_name": "AVENUE DU RAINCY"}, "geometry": {"type": "Point", "coordinates": [2.506045686703492, 48.884963221706364]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2725d2c1b85591e1a593eada29a602b3366822e3", "fields": {"departement": "93", "stop_lat": 48.86532218307791, "code_postal": "93050", "stop_lon": 2.562637459552232, "coord": [48.86532218307791, 2.562637459552232], "stop_id": 3616929, "stop_desc": "AVENUE JEAN JAURES - 93050", "stop_name": "POINTE DE GOURNAY"}, "geometry": {"type": "Point", "coordinates": [2.562637459552232, 48.86532218307791]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5fe74aeec8482ace96df5d696b90adc1a928c2e7", "fields": {"departement": "93", "stop_lat": 48.88666818491777, "code_postal": "93053", "stop_lon": 2.472907876521495, "coord": [48.88666818491777, 2.472907876521495], "stop_id": 3616931, "stop_desc": "7 AVENUE DE GAGNY - 93053", "stop_name": "ECHANGEUR DE ROSNY"}, "geometry": {"type": "Point", "coordinates": [2.472907876521495, 48.88666818491777]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bd80bb74f46ac780f80103f2b1d65e3425800471", "fields": {"departement": "93", "stop_lat": 48.8655469436776, "code_postal": "93050", "stop_lon": 2.562597568941614, "coord": [48.8655469436776, 2.562597568941614], "stop_id": 3616928, "stop_desc": "AVENUE JEAN JAURES - 93050", "stop_name": "POINTE DE GOURNAY"}, "geometry": {"type": "Point", "coordinates": [2.562597568941614, 48.8655469436776]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2917623ece862bcc1d5655c301edddcedc281743", "fields": {"departement": "92", "stop_lat": 48.81766933047489, "code_postal": "92046", "stop_lon": 2.29530901330129, "coord": [48.81766933047489, 2.29530901330129], "stop_id": 3619139, "stop_desc": "RUE PAUL BERT - 92046", "stop_name": "ETIENNE DOLET-METRO"}, "geometry": {"type": "Point", "coordinates": [2.29530901330129, 48.81766933047489]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9d473b4a82f3461c832b4ac40ad942d9ffcd797f", "fields": {"departement": "93", "stop_lat": 48.87672538178333, "code_postal": "93032", "stop_lon": 2.548898087819418, "coord": [48.87672538178333, 2.548898087819418], "stop_id": 3616922, "stop_desc": "AVENUE PAUL VAILLANT COUTURIER - 93032", "stop_name": "LA MARE"}, "geometry": {"type": "Point", "coordinates": [2.548898087819418, 48.87672538178333]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8bef205eeb973dca0faccbcb9c097fd5472731d4", "fields": {"departement": "93", "stop_lat": 48.88583786198462, "code_postal": "93032", "stop_lon": 2.5335085925330727, "coord": [48.88583786198462, 2.5335085925330727], "stop_id": 3616930, "stop_desc": "19 RUE LEON BRY - 93032", "stop_name": "LEON BRY"}, "geometry": {"type": "Point", "coordinates": [2.5335085925330727, 48.88583786198462]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d32e9c6551930a04ac776cff9f6548f826fcc05f", "fields": {"departement": "94", "stop_lat": 48.819597917010675, "code_postal": "94017", "stop_lon": 2.485281375382471, "coord": [48.819597917010675, 2.485281375382471], "stop_id": 3619412, "stop_desc": "32-34 AVENUE ROGER SALENGRO - 94017", "stop_name": "LA FOURCHETTE DE CHAMPIGNY"}, "geometry": {"type": "Point", "coordinates": [2.485281375382471, 48.819597917010675]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "379677b943811500ba0ca5912d569fd5b5ad2e25", "fields": {"departement": "94", "stop_lat": 48.79935316563356, "code_postal": "94019", "stop_lon": 2.5426100503676254, "coord": [48.79935316563356, 2.5426100503676254], "stop_id": 3619344, "stop_desc": "RUE DES FUSILLES DE CHATEAUBRIAND - 94019", "stop_name": "ZONE INDUSTRIELLE"}, "geometry": {"type": "Point", "coordinates": [2.5426100503676254, 48.79935316563356]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "058fe52487bfd22e2ccfabf75f696bc36aa2eaf6", "fields": {"departement": "94", "stop_lat": 48.79912095874322, "code_postal": "94019", "stop_lon": 2.541752012619223, "coord": [48.79912095874322, 2.541752012619223], "stop_id": 3619343, "stop_desc": "RUE DES FUSILLES DE CHATEAUBRIAND - 94019", "stop_name": "ZONE INDUSTRIELLE"}, "geometry": {"type": "Point", "coordinates": [2.541752012619223, 48.79912095874322]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "79053a004e18cbabd80f86ec56cf673cf20b5a2c", "fields": {"departement": "94", "stop_lat": 48.81673809581467, "code_postal": "94017", "stop_lon": 2.5003527310760174, "coord": [48.81673809581467, 2.5003527310760174], "stop_id": 3619419, "stop_desc": "151 AVENUE ROGER SALENGRO - 94017", "stop_name": "PLAGE DE CHAMPIGNY"}, "geometry": {"type": "Point", "coordinates": [2.5003527310760174, 48.81673809581467]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e74c69fef3e143c72b3165f7f8c013759f87ccef", "fields": {"departement": "94", "stop_lat": 48.802840579634356, "code_postal": "94019", "stop_lon": 2.5527059245772157, "coord": [48.802840579634356, 2.5527059245772157], "stop_id": 3619349, "stop_desc": "RUE RABELAIS - 94019", "stop_name": "CLEMENT ADER - LES BORDES"}, "geometry": {"type": "Point", "coordinates": [2.5527059245772157, 48.802840579634356]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "649d77b64f5642e79cc222c3976111b4e6614119", "fields": {"departement": "94", "stop_lat": 48.818368537391834, "code_postal": "94079", "stop_lon": 2.539010553063761, "coord": [48.818368537391834, 2.539010553063761], "stop_id": 3619371, "stop_desc": "FACE 67 AVENUE MAURICE THOREZ - 94079", "stop_name": "DOCTEUR BRING"}, "geometry": {"type": "Point", "coordinates": [2.539010553063761, 48.818368537391834]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a54659f67aaa262989613b5acb9ed2c2800cfe5b", "fields": {"departement": "94", "stop_lat": 48.80418174889629, "code_postal": "94017", "stop_lon": 2.546561397788981, "coord": [48.80418174889629, 2.546561397788981], "stop_id": 3619354, "stop_desc": "19 AVENUE BOILEAU - 94017", "stop_name": "CLAUDE BERNARD"}, "geometry": {"type": "Point", "coordinates": [2.546561397788981, 48.80418174889629]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7ebd9fa27d7c58826169e6bd1784785793153026", "fields": {"departement": "94", "stop_lat": 48.79752832516121, "code_postal": "94055", "stop_lon": 2.5479222529897454, "coord": [48.79752832516121, 2.5479222529897454], "stop_id": 3619345, "stop_desc": "2-4 RUE DES BORDES - 94055", "stop_name": "SONNETTES"}, "geometry": {"type": "Point", "coordinates": [2.5479222529897454, 48.79752832516121]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f87da975f82f41b64f8eb9bc31a3dacce6050b55", "fields": {"departement": "94", "stop_lat": 48.82050175739977, "code_postal": "94042", "stop_lon": 2.473510741014029, "coord": [48.82050175739977, 2.473510741014029], "stop_id": 3619395, "stop_desc": "9 PLACE DE VERDUN - 94042", "stop_name": "VERDUN"}, "geometry": {"type": "Point", "coordinates": [2.473510741014029, 48.82050175739977]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c10048387cb701805c7cc4b2750184fa0da083d3", "fields": {"departement": "94", "stop_lat": 48.82267666521304, "code_postal": "94042", "stop_lon": 2.4736117295778453, "coord": [48.82267666521304, 2.4736117295778453], "stop_id": 3619397, "stop_desc": "25 AVENUE FOCH - 94042", "stop_name": "JOUGLA"}, "geometry": {"type": "Point", "coordinates": [2.4736117295778453, 48.82267666521304]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "46e336d36c476f3b386e793afb7ef12aac85b5df", "fields": {"departement": "94", "stop_lat": 48.820487646733554, "code_postal": "94017", "stop_lon": 2.48532474491388, "coord": [48.820487646733554, 2.48532474491388], "stop_id": 3619637, "stop_desc": "11 AVENUE DU GENERAL DE GAULLE - 94017", "stop_name": "LA FOURCHETTE DE CHAMPIGNY"}, "geometry": {"type": "Point", "coordinates": [2.48532474491388, 48.820487646733554]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d03e74c8addd0520d7c1d0a2374dc332a59f1e70", "fields": {"departement": "94", "stop_lat": 48.81941436707641, "code_postal": "94017", "stop_lon": 2.514379826685489, "coord": [48.81941436707641, 2.514379826685489], "stop_id": 3619653, "stop_desc": "23 RUE ALEXANDRE FOURNY - 94017", "stop_name": "GUY MOQUET"}, "geometry": {"type": "Point", "coordinates": [2.514379826685489, 48.81941436707641]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8daad079c8269cda8fd79b8995eba904cabb8682", "fields": {"departement": "94", "stop_lat": 48.82016401887866, "code_postal": "94042", "stop_lon": 2.477974118109713, "coord": [48.82016401887866, 2.477974118109713], "stop_id": 3619635, "stop_desc": "29 AVENUE GALLIENI - 94042", "stop_name": "LES PLATANES"}, "geometry": {"type": "Point", "coordinates": [2.477974118109713, 48.82016401887866]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fabbdc1739d1a5d256403262d09138b12cbad859", "fields": {"departement": "94", "stop_lat": 48.819710075886654, "code_postal": "94042", "stop_lon": 2.4741755742329605, "coord": [48.819710075886654, 2.4741755742329605], "stop_id": 3619632, "stop_desc": "12 PLACE DE VERDUN - 94042", "stop_name": "VERDUN"}, "geometry": {"type": "Point", "coordinates": [2.4741755742329605, 48.819710075886654]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b8c38af64833bebca3ec2387c6378d48355ff4b4", "fields": {"departement": "94", "stop_lat": 48.81968262308147, "code_postal": "94017", "stop_lon": 2.5324962526298544, "coord": [48.81968262308147, 2.5324962526298544], "stop_id": 3619660, "stop_desc": "RUE DU REGARD DES LUATS - 94017", "stop_name": "CENTRE COMMERCIAL DE CHAMPIGNY-SUR-MARNE"}, "geometry": {"type": "Point", "coordinates": [2.5324962526298544, 48.81968262308147]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4c895cf20c296ac616fb4b1a48775d36a7453eae", "fields": {"departement": "94", "stop_lat": 48.78020333377948, "code_postal": "94011", "stop_lon": 2.492948360920683, "coord": [48.78020333377948, 2.492948360920683], "stop_id": 3619700, "stop_desc": "FACE 8 ROUTE DE STAINS - 94011", "stop_name": "PORT DE BONNEUIL"}, "geometry": {"type": "Point", "coordinates": [2.492948360920683, 48.78020333377948]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8df64d4dfe6ade2935214f87cdf2c1238d97625b", "fields": {"departement": "94", "stop_lat": 48.799942698920944, "code_postal": "94068", "stop_lon": 2.504803317289805, "coord": [48.799942698920944, 2.504803317289805], "stop_id": 3619687, "stop_desc": "32 BOULEVARD DE CHAMPIGNY - 94068", "stop_name": "STADE A. MARIN"}, "geometry": {"type": "Point", "coordinates": [2.504803317289805, 48.799942698920944]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "96c437cf76c5aa153633a07f00c31c4325ed3195", "fields": {"departement": "94", "stop_lat": 48.76790701299739, "code_postal": "94011", "stop_lon": 2.4791242826308806, "coord": [48.76790701299739, 2.4791242826308806], "stop_id": 3619710, "stop_desc": "AVENUE D'ORADOUR SUR GLANE - 94011", "stop_name": "REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.4791242826308806, 48.76790701299739]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8cf06f8bc3fb45512667a5ea7045ee288f0e1ce1", "fields": {"departement": "94", "stop_lat": 48.78204326709382, "code_postal": "94011", "stop_lon": 2.4949259598059372, "coord": [48.78204326709382, 2.4949259598059372], "stop_id": 3619699, "stop_desc": "14 ROUTE DE STAINS - 94011", "stop_name": "MOULIN BATEAU"}, "geometry": {"type": "Point", "coordinates": [2.4949259598059372, 48.78204326709382]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d96ece59e9b9f2262972527980835ebdefd5b0e6", "fields": {"departement": "94", "stop_lat": 48.80181920907061, "code_postal": "94068", "stop_lon": 2.5061835547181333, "coord": [48.80181920907061, 2.5061835547181333], "stop_id": 3619684, "stop_desc": "37 BOULEVARD DE CHAMPIGNY - 94068", "stop_name": "CARPEAUX"}, "geometry": {"type": "Point", "coordinates": [2.5061835547181333, 48.80181920907061]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fbed58b4b2a4a3889df05e66e166d9fa6281a89b", "fields": {"departement": "94", "stop_lat": 48.81673266986075, "code_postal": "94017", "stop_lon": 2.5336964180245407, "coord": [48.81673266986075, 2.5336964180245407], "stop_id": 3619661, "stop_desc": "RUE DE BERNAU - 94017", "stop_name": "RUE DE BERNAU"}, "geometry": {"type": "Point", "coordinates": [2.5336964180245407, 48.81673266986075]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2e3c719270ae50b58bcc13d469b1e9d4e2956be1", "fields": {"departement": "94", "stop_lat": 48.77533551701877, "code_postal": "94011", "stop_lon": 2.490105216953512, "coord": [48.77533551701877, 2.490105216953512], "stop_id": 3619703, "stop_desc": "RUE ALFRED GILLET - 94011", "stop_name": "AVIATION"}, "geometry": {"type": "Point", "coordinates": [2.490105216953512, 48.77533551701877]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f87905d010c53cf87ef217b296e932c151bc7cd2", "fields": {"departement": "94", "stop_lat": 48.777666485328965, "code_postal": "94028", "stop_lon": 2.455923122658155, "coord": [48.777666485328965, 2.455923122658155], "stop_id": 3619729, "stop_desc": "AVENUE DES COMPAGNONS DE LA LIBERATION - 94028", "stop_name": "HOTEL DE VILLE DE CRETEIL"}, "geometry": {"type": "Point", "coordinates": [2.455923122658155, 48.777666485328965]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4bef31e36bc548059b373480edb252c6e097dbd7", "fields": {"departement": "94", "stop_lat": 48.802664657573516, "code_postal": "94002", "stop_lon": 2.4209721155576363, "coord": [48.802664657573516, 2.4209721155576363], "stop_id": 3619791, "stop_desc": "FACE 192 R VAILLANT COUTURIER - 94002", "stop_name": "PAUL VAILLANT COUTURIER - KENNEDY"}, "geometry": {"type": "Point", "coordinates": [2.4209721155576363, 48.802664657573516]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "79c37e278a8f0e38d2d66cf0ffc3197f4f010cfe", "fields": {"departement": "94", "stop_lat": 48.7901248498235, "code_postal": "94046", "stop_lon": 2.4350170670313354, "coord": [48.7901248498235, 2.4350170670313354], "stop_id": 3619756, "stop_desc": "286 RUE JEAN JAURES - 94046", "stop_name": "LE VERT DE MAISONS RER"}, "geometry": {"type": "Point", "coordinates": [2.4350170670313354, 48.7901248498235]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1504cccfcdab3a172301b3841e279fa135d53316", "fields": {"departement": "94", "stop_lat": 48.78942799519993, "code_postal": "94016", "stop_lon": 2.339471883661172, "coord": [48.78942799519993, 2.339471883661172], "stop_id": 3786329, "stop_desc": "163 BD DE LA VANNE - 94016", "stop_name": "LE COTEAU - PLEIADE"}, "geometry": {"type": "Point", "coordinates": [2.339471883661172, 48.78942799519993]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c3341bea01728b233e460af24bfbec28e9f0423e", "fields": {"departement": "94", "stop_lat": 48.79491959443785, "code_postal": "94016", "stop_lon": 2.33473795344113, "coord": [48.79491959443785, 2.33473795344113], "stop_id": 3786335, "stop_desc": "FACE 8 R GALLIENI - 94016", "stop_name": "CENTRE VILLE."}, "geometry": {"type": "Point", "coordinates": [2.33473795344113, 48.79491959443785]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a9a6b6f34a93f29f5a71dda90d2cc928fa32a694", "fields": {"departement": "75", "stop_lat": 48.81858241466348, "code_postal": "75113", "stop_lon": 2.3594255726549487, "coord": [48.81858241466348, 2.3594255726549487], "stop_id": 3792946, "stop_desc": "AVENUE DE LA PORTE D'ITALIE - 75113", "stop_name": "PORTE D'ITALIE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.3594255726549487, 48.81858241466348]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "55afe9cec6728aa8e4f2df04d67cf6bb4de63afb", "fields": {"departement": "75", "stop_lat": 48.81858241466348, "code_postal": "75113", "stop_lon": 2.3594255726549487, "coord": [48.81858241466348, 2.3594255726549487], "stop_id": 3792947, "stop_desc": "AVENUE DE LA PORTE D'ITALIE - 75113", "stop_name": "PORTE D'ITALIE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.3594255726549487, 48.81858241466348]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9ba6b172fe85d86c5f3a7770e58efd067a25f727", "fields": {"departement": "75", "stop_lat": 48.8201738102942, "code_postal": "75113", "stop_lon": 2.356105280265727, "coord": [48.8201738102942, 2.356105280265727], "stop_id": 3792949, "stop_desc": "25 BOULEVARD KELLERMANN - 75113", "stop_name": "DAMESME"}, "geometry": {"type": "Point", "coordinates": [2.356105280265727, 48.8201738102942]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5f2bc6515ff917503f45b52f2705147a6648fc1c", "fields": {"departement": "75", "stop_lat": 48.82084858320608, "code_postal": "75113", "stop_lon": 2.351028727275042, "coord": [48.82084858320608, 2.351028727275042], "stop_id": 3792951, "stop_desc": "1 RUE GOUTHIERE - 75113", "stop_name": "POTERNE DES PEUPLIERS"}, "geometry": {"type": "Point", "coordinates": [2.351028727275042, 48.82084858320608]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "62c9b5eb85f403081c7ab0fe753cc02699fcfc22", "fields": {"departement": "94", "stop_lat": 48.81665110081543, "code_postal": "94037", "stop_lon": 2.352837692438503, "coord": [48.81665110081543, 2.352837692438503], "stop_id": 3792952, "stop_desc": "FACE 7 RUE CHARLES FREROT - 94037", "stop_name": "VERDUN - VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.352837692438503, 48.81665110081543]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "53a39557e0d82ae9caf4040cff002cfcf630cb8e", "fields": {"departement": "94", "stop_lat": 48.80106725506398, "code_postal": "94003", "stop_lon": 2.3334995522272375, "coord": [48.80106725506398, 2.3334995522272375], "stop_id": 3792962, "stop_desc": "38 AVENUE DE LA CONVENTION - 94003", "stop_name": "CITE JARDINS"}, "geometry": {"type": "Point", "coordinates": [2.3334995522272375, 48.80106725506398]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eaaee47bcaf5c5015b36c797edb97f4aee7d7c28", "fields": {"departement": "94", "stop_lat": 48.79709463577202, "code_postal": "94016", "stop_lon": 2.3338127426577424, "coord": [48.79709463577202, 2.3338127426577424], "stop_id": 3792963, "stop_desc": "FACE 62 AVENUE COUSIN DE MERICOURT - 94016", "stop_name": "COUSIN DE MERICOURT"}, "geometry": {"type": "Point", "coordinates": [2.3338127426577424, 48.79709463577202]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c818c68711572e147b0f460460f77612bb897ce0", "fields": {"departement": "94", "stop_lat": 48.79403877145943, "code_postal": "94016", "stop_lon": 2.3342754705788455, "coord": [48.79403877145943, 2.3342754705788455], "stop_id": 3792966, "stop_desc": "9 RUE CAMILLE DESMOULINS - 94016", "stop_name": "MAIRIE DE CACHAN"}, "geometry": {"type": "Point", "coordinates": [2.3342754705788455, 48.79403877145943]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "136de5cee7559762251255ba4852f5093a5e0d72", "fields": {"departement": "94", "stop_lat": 48.78564402029445, "code_postal": "94016", "stop_lon": 2.3329702084198036, "coord": [48.78564402029445, 2.3329702084198036], "stop_id": 3792969, "stop_desc": "FACE 9 AVENUE DE FRANCE - 94016", "stop_name": "CARREFOUR DES POULETS"}, "geometry": {"type": "Point", "coordinates": [2.3329702084198036, 48.78564402029445]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f301d38609aea0cc6839590012b5b331e3f8fce0", "fields": {"departement": "94", "stop_lat": 48.761097277080125, "code_postal": "94034", "stop_lon": 2.326242672649322, "coord": [48.761097277080125, 2.326242672649322], "stop_id": 3792981, "stop_desc": "66 R EMILE ZOLA - 94034", "stop_name": "CHARCOT - ZOLA"}, "geometry": {"type": "Point", "coordinates": [2.326242672649322, 48.761097277080125]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c14b2730b4962ff29dd69ee8e70465b812a23e2a", "fields": {"departement": "94", "stop_lat": 48.75574884176963, "code_postal": "94034", "stop_lon": 2.321798676035864, "coord": [48.75574884176963, 2.321798676035864], "stop_id": 3792986, "stop_desc": "SQUARE DU 19 MARS 1962 - 94034", "stop_name": "MAIRIE DE FRESNES"}, "geometry": {"type": "Point", "coordinates": [2.321798676035864, 48.75574884176963]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b62180a9aa79c544ada1113fe16519a5b526e8b4", "fields": {"departement": "94", "stop_lat": 48.75987395873311, "code_postal": "94034", "stop_lon": 2.318725036311124, "coord": [48.75987395873311, 2.318725036311124], "stop_id": 3792993, "stop_desc": "FACE 7-9 BOULEVARD PASTEUR - 94034", "stop_name": "PASTEUR."}, "geometry": {"type": "Point", "coordinates": [2.318725036311124, 48.75987395873311]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c38d6f402368f94d5ec6d68f24211e3fd628d39d", "fields": {"departement": "93", "stop_lat": 48.89523832538295, "code_postal": "93053", "stop_lon": 2.4596680533915762, "coord": [48.89523832538295, 2.4596680533915762], "stop_id": 3798439, "stop_desc": "118 RUE JEAN JAURES - 93053", "stop_name": "NOISY-LE-SEC RER"}, "geometry": {"type": "Point", "coordinates": [2.4596680533915762, 48.89523832538295]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d22524265f93bd53673b869054713e4c389d4536", "fields": {"departement": "93", "stop_lat": 48.9000225902207, "code_postal": "93053", "stop_lon": 2.4652682831624073, "coord": [48.9000225902207, 2.4652682831624073], "stop_id": 3798441, "stop_desc": "72 AVENUE GALLIENI - 93053", "stop_name": "PETIT NOISY"}, "geometry": {"type": "Point", "coordinates": [2.4652682831624073, 48.9000225902207]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "af9cdb2a18f5524156d1f2b436e786fd6c2bcdf4", "fields": {"departement": "93", "stop_lat": 48.906831915991035, "code_postal": "93008", "stop_lon": 2.459463678626273, "coord": [48.906831915991035, 2.459463678626273], "stop_id": 3798445, "stop_desc": "279 AVENUE PAUL VAILLANT COUTURIER - 93008", "stop_name": "AUGUSTE DELAUNE"}, "geometry": {"type": "Point", "coordinates": [2.459463678626273, 48.906831915991035]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dd6aa1f61c9f84d91f47eac6b56772f5c5fe6fc7", "fields": {"departement": "93", "stop_lat": 48.90656236027675, "code_postal": "93008", "stop_lon": 2.459408509819116, "coord": [48.90656236027675, 2.459408509819116], "stop_id": 3798446, "stop_desc": "FACE 279 AVENUE PAUL VAILLANT COUTURIER - 93008", "stop_name": "AUGUSTE DELAUNE"}, "geometry": {"type": "Point", "coordinates": [2.459408509819116, 48.90656236027675]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3eb22d4ff7c003e15eb7b3bc2b04dce789cefe8a", "fields": {"departement": "93", "stop_lat": 48.906523347819075, "code_postal": "93008", "stop_lon": 2.443866526044496, "coord": [48.906523347819075, 2.443866526044496], "stop_id": 3798452, "stop_desc": "BOULEVARD LENINE - 93008", "stop_name": "HOTEL DE VILLE DE BOBIGNY"}, "geometry": {"type": "Point", "coordinates": [2.443866526044496, 48.906523347819075]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "065e8239a13144fecef6178cb4aeba514a7b97d6", "fields": {"departement": "93", "stop_lat": 48.91425405192409, "code_postal": "93029", "stop_lon": 2.4309698355406733, "coord": [48.91425405192409, 2.4309698355406733], "stop_id": 3798459, "stop_desc": "FACE 73BIS RUE DE STALINGRAD - 93029", "stop_name": "GASTON ROULAUD"}, "geometry": {"type": "Point", "coordinates": [2.4309698355406733, 48.91425405192409]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0ada087561346d77bc59c7d8f5b9f530caa3afb4", "fields": {"departement": "93", "stop_lat": 48.91586668357142, "code_postal": "93029", "stop_lon": 2.425791189982239, "coord": [48.91586668357142, 2.425791189982239], "stop_id": 3798460, "stop_desc": "124 RUE DE STALINGRAD - 93029", "stop_name": "HOPITAL AVICENNE"}, "geometry": {"type": "Point", "coordinates": [2.425791189982239, 48.91586668357142]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "35280d2ff4b86b6bb05d18123e56bb32adbcba32", "fields": {"departement": "93", "stop_lat": 48.92283520846237, "code_postal": "93027", "stop_lon": 2.40676511780942, "coord": [48.92283520846237, 2.40676511780942], "stop_id": 3798465, "stop_desc": "97 AVENUE JEAN JAURES - 93027", "stop_name": "DANTON"}, "geometry": {"type": "Point", "coordinates": [2.40676511780942, 48.92283520846237]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d336aaf45f4cbd92a046c08cb88aff1decb4c0dc", "fields": {"departement": "93", "stop_lat": 48.92431175207777, "code_postal": "93027", "stop_lon": 2.4019938305511577, "coord": [48.92431175207777, 2.4019938305511577], "stop_id": 3798468, "stop_desc": "FACE 31 AVENUE JEAN JAURES - 93027", "stop_name": "STADE GEO ANDRE"}, "geometry": {"type": "Point", "coordinates": [2.4019938305511577, 48.92431175207777]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1f9bf60c3e104146225a1d3210e30f53fe76b464", "fields": {"departement": "93", "stop_lat": 48.93602997362251, "code_postal": "93066", "stop_lon": 2.3453847145473845, "coord": [48.93602997362251, 2.3453847145473845], "stop_id": 3798484, "stop_desc": "RUE DU PORT - 93066", "stop_name": "GARE DE ST-DENIS RER"}, "geometry": {"type": "Point", "coordinates": [2.3453847145473845, 48.93602997362251]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "420a915ccebb860693477f760e9e8498b7efee64", "fields": {"departement": "92", "stop_lat": 48.931544850148796, "code_postal": "92036", "stop_lon": 2.288546915333536, "coord": [48.931544850148796, 2.288546915333536], "stop_id": 3798503, "stop_desc": "FACE 28 AV LUCIEN LANTERNIER - 92036", "stop_name": "LE LUTH"}, "geometry": {"type": "Point", "coordinates": [2.288546915333536, 48.931544850148796]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e9b04dc1c3b80f091686fd61a8d36e294cf01bb1", "fields": {"departement": "93", "stop_lat": 48.93168258322609, "code_postal": "93027", "stop_lon": 2.3781605866514295, "coord": [48.93168258322609, 2.3781605866514295], "stop_id": 3798506, "stop_desc": "FACE 63 R DE SAINT-DENIS - 93027", "stop_name": "COSMONAUTES"}, "geometry": {"type": "Point", "coordinates": [2.3781605866514295, 48.93168258322609]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d3f2dfcaca3573caab801bf4e6b01c4f9200fcbb", "fields": {"departement": "75", "stop_lat": 48.87243595580059, "code_postal": "75110", "stop_lon": 2.3574049633654526, "coord": [48.87243595580059, 2.3574049633654526], "stop_id": 3807567, "stop_desc": "67-69 RUE DU FAUBOURG SAINT-MARTIN - 75110", "stop_name": "MAIRIE DU 10E"}, "geometry": {"type": "Point", "coordinates": [2.3574049633654526, 48.87243595580059]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bd78645350160c10251d10ad21ba6fe228da72f0", "fields": {"departement": "75", "stop_lat": 48.8579858907306, "code_postal": "75107", "stop_lon": 2.332936994185843, "coord": [48.8579858907306, 2.332936994185843], "stop_id": 3807580, "stop_desc": "4 RUE DES SAINTS-PERES - 75107", "stop_name": "PONT DU CARROUSEL - QUAI VOLTAIRE"}, "geometry": {"type": "Point", "coordinates": [2.332936994185843, 48.8579858907306]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1b66395fa69dae73d064beb7247937e95ecddb38", "fields": {"departement": "75", "stop_lat": 48.856008585004595, "code_postal": "75107", "stop_lon": 2.3312891453604494, "coord": [48.856008585004595, 2.3312891453604494], "stop_id": 3807581, "stop_desc": "26-28 RUE DES SAINTS-PERES - 75107", "stop_name": "JACOB"}, "geometry": {"type": "Point", "coordinates": [2.3312891453604494, 48.856008585004595]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "536898781f7510576e8bb4c4d3a46eeef39d38f1", "fields": {"departement": "75", "stop_lat": 48.84985148247004, "code_postal": "75107", "stop_lon": 2.3230916194394515, "coord": [48.84985148247004, 2.3230916194394515], "stop_id": 3807587, "stop_desc": "38 RUE DE SEVRES - 75107", "stop_name": "BAC - SAINT-PLACIDE"}, "geometry": {"type": "Point", "coordinates": [2.3230916194394515, 48.84985148247004]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b1437e657a473246d9da214891707bd0061b9a76", "fields": {"departement": "75", "stop_lat": 48.8418655148874, "code_postal": "75115", "stop_lon": 2.2997691922702015, "coord": [48.8418655148874, 2.2997691922702015], "stop_id": 3807594, "stop_desc": "148 RUE LECOURBE - 75115", "stop_name": "MAIRIE DU 15E"}, "geometry": {"type": "Point", "coordinates": [2.2997691922702015, 48.8418655148874]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7c513923dc162b611a80f19eeedb66a63ebaff8f", "fields": {"departement": "75", "stop_lat": 48.84068693742022, "code_postal": "75115", "stop_lon": 2.2961073600849584, "coord": [48.84068693742022, 2.2961073600849584], "stop_id": 3807595, "stop_desc": "188 RUE LECOURBE - 75115", "stop_name": "ABBE GROULT"}, "geometry": {"type": "Point", "coordinates": [2.2961073600849584, 48.84068693742022]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "66b7ef8517a4522b8250e1cf1d5d0d4ca4adb8de", "fields": {"departement": "75", "stop_lat": 48.837267018830325, "code_postal": "75115", "stop_lon": 2.2843466881434824, "coord": [48.837267018830325, 2.2843466881434824], "stop_id": 3807599, "stop_desc": "330-332 RUE LECOURBE - 75115", "stop_name": "LYCEE LOUIS ARMAND"}, "geometry": {"type": "Point", "coordinates": [2.2843466881434824, 48.837267018830325]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e28e6f27c55c1ad3002d032b346dd5b4191dd5e3", "fields": {"departement": "75", "stop_lat": 48.836357751338085, "code_postal": "75115", "stop_lon": 2.2810256065344885, "coord": [48.836357751338085, 2.2810256065344885], "stop_id": 3807600, "stop_desc": "103-105 RUE LEBLANC - 75115", "stop_name": "BALARD - LECOURBE"}, "geometry": {"type": "Point", "coordinates": [2.2810256065344885, 48.836357751338085]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f8abca961060d4e0182b90ce09a7e4794f5cf5b7", "fields": {"departement": "75", "stop_lat": 48.832330067121525, "code_postal": "75115", "stop_lon": 2.278456975264492, "coord": [48.832330067121525, 2.278456975264492], "stop_id": 3807602, "stop_desc": "FACE 1 RUE DU COLONEL PIERRE AVIA - 75115", "stop_name": "LOUIS ARMAND"}, "geometry": {"type": "Point", "coordinates": [2.278456975264492, 48.832330067121525]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "215ecb10fcf450081bdb98c4ce11fc36edbe8a7f", "fields": {"departement": "75", "stop_lat": 48.84153536388469, "code_postal": "75115", "stop_lon": 2.3083339871069257, "coord": [48.84153536388469, 2.3083339871069257], "stop_id": 3807617, "stop_desc": "225-223 RUE DE VAUGIRARD - 75115", "stop_name": "VOLONTAIRES - VAUGIRARD"}, "geometry": {"type": "Point", "coordinates": [2.3083339871069257, 48.84153536388469]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9567387d2d71f8f4caf5fd52d67ab521acd3a692", "fields": {"departement": "75", "stop_lat": 48.85075949870457, "code_postal": "75106", "stop_lon": 2.3256925178508983, "coord": [48.85075949870457, 2.3256925178508983], "stop_id": 3807622, "stop_desc": "29 RUE DE SEVRES - 75106", "stop_name": "SEVRES - BABYLONE"}, "geometry": {"type": "Point", "coordinates": [2.3256925178508983, 48.85075949870457]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cbb9a44298069d80cbb5e3e32adfca8a262334d6", "fields": {"departement": "75", "stop_lat": 48.87237456779904, "code_postal": "75109", "stop_lon": 2.3306877960484598, "coord": [48.87237456779904, 2.3306877960484598], "stop_id": 3811232, "stop_desc": "17 RUE SCRIBE - 75109", "stop_name": "OPERA - SCRIBE"}, "geometry": {"type": "Point", "coordinates": [2.3306877960484598, 48.87237456779904]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d12996d8252effd6367b79885ebfacb77e09354e", "fields": {"departement": "75", "stop_lat": 48.87026246441203, "code_postal": "75109", "stop_lon": 2.3293393182375897, "coord": [48.87026246441203, 2.3293393182375897], "stop_id": 3811233, "stop_desc": "14-16 BOULEVARD DES CAPUCINES - 75109", "stop_name": "CAPUCINES - CAUMARTIN"}, "geometry": {"type": "Point", "coordinates": [2.3293393182375897, 48.87026246441203]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e9fe8ade65f2cc3538b9bd2554b7bd5c8b3fb4fb", "fields": {"departement": "75", "stop_lat": 48.867296005540844, "code_postal": "75108", "stop_lon": 2.322623676294097, "coord": [48.867296005540844, 2.322623676294097], "stop_id": 3811237, "stop_desc": "4 RUE ROYALE - 75108", "stop_name": "CONCORDE"}, "geometry": {"type": "Point", "coordinates": [2.322623676294097, 48.867296005540844]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "40a9298bebc8eb3d93c3fc35a0523ee19d703912", "fields": {"departement": "75", "stop_lat": 48.86654928858581, "code_postal": "75108", "stop_lon": 2.3173382738845345, "coord": [48.86654928858581, 2.3173382738845345], "stop_id": 3811239, "stop_desc": "AVENUE DES CHAMPS ELYSEES - 75108", "stop_name": "CONCORDE - COURS LA REINE"}, "geometry": {"type": "Point", "coordinates": [2.3173382738845345, 48.86654928858581]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0000d9f4312cfdeb5266e9f44430f38c27fa4352", "fields": {"departement": "75", "stop_lat": 48.867842706224465, "code_postal": "75108", "stop_lon": 2.3132099917230624, "coord": [48.867842706224465, 2.3132099917230624], "stop_id": 3811241, "stop_desc": "AVENUE DES CHAMPS ELYSEES - 75108", "stop_name": "CHAMPS-ELYSEES - CLEMENCEAU"}, "geometry": {"type": "Point", "coordinates": [2.3132099917230624, 48.867842706224465]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "36e5d9f267b7221321adedfe2551fb74c861cc77", "fields": {"departement": "75", "stop_lat": 48.85884241867084, "code_postal": "75107", "stop_lon": 2.2983812323157786, "coord": [48.85884241867084, 2.2983812323157786], "stop_id": 3811253, "stop_desc": "29 AVENUE DE LA BOURDONNAIS - 75107", "stop_name": "MONTTESSUY"}, "geometry": {"type": "Point", "coordinates": [2.2983812323157786, 48.85884241867084]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "99bf8655a5a7cb1e1b0f56c3268153d336a5d000", "fields": {"departement": "75", "stop_lat": 48.857485703294316, "code_postal": "75107", "stop_lon": 2.2995808386336414, "coord": [48.857485703294316, 2.2995808386336414], "stop_id": 3811254, "stop_desc": "AVENUE JOSEPH BOUVARD - 75107", "stop_name": "RAPP - LA BOURDONNAIS"}, "geometry": {"type": "Point", "coordinates": [2.2995808386336414, 48.857485703294316]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dc79ac32b8ebf1b642fffb56f4c9f09a8a83c0ea", "fields": {"departement": "75", "stop_lat": 48.854914015559245, "code_postal": "75107", "stop_lon": 2.295728342922551, "coord": [48.854914015559245, 2.295728342922551], "stop_id": 3811256, "stop_desc": "FACE 4 AVENUE DU DOCTEUR BROUARDEL - 75107", "stop_name": "CHAMP DE MARS - SUFFREN"}, "geometry": {"type": "Point", "coordinates": [2.295728342922551, 48.854914015559245]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6597c4b872d7672172d77e57e6316f792f0732a7", "fields": {"departement": "75", "stop_lat": 48.8501659621892, "code_postal": "75115", "stop_lon": 2.2886641874385893, "coord": [48.8501659621892, 2.2886641874385893], "stop_id": 3811263, "stop_desc": "33-35 RUE SAINT CHARLES - 75115", "stop_name": "RUE ROUELLE"}, "geometry": {"type": "Point", "coordinates": [2.2886641874385893, 48.8501659621892]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "44838440e25f9cfa9fb492288ba764e1f0dd6c25", "fields": {"departement": "75", "stop_lat": 48.8491949780194, "code_postal": "75115", "stop_lon": 2.287848007440609, "coord": [48.8491949780194, 2.287848007440609], "stop_id": 3811265, "stop_desc": "51 RUE SAINT CHARLES - 75115", "stop_name": "THEATRE"}, "geometry": {"type": "Point", "coordinates": [2.287848007440609, 48.8491949780194]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "98dcaf784455cdcb42df19df10c492f62ed4ebf3", "fields": {"departement": "75", "stop_lat": 48.837706333521396, "code_postal": "75115", "stop_lon": 2.2819772051447753, "coord": [48.837706333521396, 2.2819772051447753], "stop_id": 3811271, "stop_desc": "6-8 RUE VASCO DE GAMA - 75115", "stop_name": "VASCO DE GAMA - LOURMEL"}, "geometry": {"type": "Point", "coordinates": [2.2819772051447753, 48.837706333521396]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "96d6ae36fd9c550336ed9ae83c07760fafeb15c3", "fields": {"departement": "75", "stop_lat": 48.87009172807477, "code_postal": "75102", "stop_lon": 2.3296935590563423, "coord": [48.87009172807477, 2.3296935590563423], "stop_id": 3811285, "stop_desc": "39 BOULEVARD DES CAPUCINES - 75102", "stop_name": "CAPUCINES - CAUMARTIN"}, "geometry": {"type": "Point", "coordinates": [2.3296935590563423, 48.87009172807477]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a3355d9164b8f7f54da3b8ccc023b39291632995", "fields": {"departement": "75", "stop_lat": 48.875592054625365, "code_postal": "75109", "stop_lon": 2.343222471307978, "coord": [48.875592054625365, 2.343222471307978], "stop_id": 3811289, "stop_desc": "64 RUE LA FAYETTE - 75109", "stop_name": "CADET"}, "geometry": {"type": "Point", "coordinates": [2.343222471307978, 48.875592054625365]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2275254585464aae08de6ab6b49021bb12189073", "fields": {"departement": "75", "stop_lat": 48.85766179213687, "code_postal": "75104", "stop_lon": 2.3494994025215377, "coord": [48.85766179213687, 2.3494994025215377], "stop_id": 3812918, "stop_desc": "10 RUE SAINT-MARTIN - 75104", "stop_name": "HOTEL DE VILLE"}, "geometry": {"type": "Point", "coordinates": [2.3494994025215377, 48.85766179213687]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bfa2ecc5fb9c40b6bbc05086bd2eecbcade64134", "fields": {"departement": "75", "stop_lat": 48.85766179213687, "code_postal": "75104", "stop_lon": 2.3494994025215377, "coord": [48.85766179213687, 2.3494994025215377], "stop_id": 3812919, "stop_desc": "10 RUE SAINT-MARTIN - 75104", "stop_name": "HOTEL DE VILLE"}, "geometry": {"type": "Point", "coordinates": [2.3494994025215377, 48.85766179213687]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cdf254defd30368fdff32d43aaa12825f38b4de3", "fields": {"departement": "75", "stop_lat": 48.85902811573952, "code_postal": "75101", "stop_lon": 2.3469390263467473, "coord": [48.85902811573952, 2.3469390263467473], "stop_id": 3812920, "stop_desc": "108 RUE DE RIVOLI - 75101", "stop_name": "CHATELET"}, "geometry": {"type": "Point", "coordinates": [2.3469390263467473, 48.85902811573952]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "23221ca8d637d5a07f87eabe371bda3888378dbe", "fields": {"departement": "75", "stop_lat": 48.8527642576903, "code_postal": "75106", "stop_lon": 2.338589352407713, "coord": [48.8527642576903, 2.338589352407713], "stop_id": 3812926, "stop_desc": "18 RUE DE L'ANCIENNE COMEDIE - 75106", "stop_name": "SAINT-GERMAIN - ODEON"}, "geometry": {"type": "Point", "coordinates": [2.338589352407713, 48.8527642576903]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c4c833e4f6edd4314a1fd6c5da661445d50ba35c", "fields": {"departement": "75", "stop_lat": 48.8517844515023, "code_postal": "75106", "stop_lon": 2.3307040210995797, "coord": [48.8517844515023, 2.3307040210995797], "stop_id": 3812928, "stop_desc": "18-20 RUE DU VIEUX COLOMBIER - 75106", "stop_name": "MICHEL DEBRE"}, "geometry": {"type": "Point", "coordinates": [2.3307040210995797, 48.8517844515023]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e625e90a7fde42637f4525cf5bd9c681f679c599", "fields": {"departement": "75", "stop_lat": 48.844960299515556, "code_postal": "75115", "stop_lon": 2.3113142107734683, "coord": [48.844960299515556, 2.3113142107734683], "stop_id": 3812935, "stop_desc": "FACE 4 BOULEVARD PASTEUR - 75115", "stop_name": "SEVRES - LECOURBE"}, "geometry": {"type": "Point", "coordinates": [2.3113142107734683, 48.844960299515556]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7ff0952d3dc393c2d01415aa14e292fecac96a11", "fields": {"departement": "75", "stop_lat": 48.841892200000075, "code_postal": "75115", "stop_lon": 2.2988977335817613, "coord": [48.841892200000075, 2.2988977335817613], "stop_id": 3812939, "stop_desc": "2 BIS RUE PETEL - 75115", "stop_name": "MAIRIE DU 15E"}, "geometry": {"type": "Point", "coordinates": [2.2988977335817613, 48.841892200000075]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0371d0b56141d5e6435bd5fa213f6275cd9db450", "fields": {"departement": "75", "stop_lat": 48.84288963972782, "code_postal": "75115", "stop_lon": 2.298352336044908, "coord": [48.84288963972782, 2.298352336044908], "stop_id": 3812941, "stop_desc": "9 RUE LEON LHERMITTE - 75115", "stop_name": "PECLET"}, "geometry": {"type": "Point", "coordinates": [2.298352336044908, 48.84288963972782]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "963a644279f9b4e0e650c5f58e6c8e5fce69c45d", "fields": {"departement": "75", "stop_lat": 48.84634523535695, "code_postal": "75115", "stop_lon": 2.2861757799721945, "coord": [48.84634523535695, 2.2861757799721945], "stop_id": 3812947, "stop_desc": "40 RUE DES ENTREPRENEURS - 75115", "stop_name": "CHARLES MICHELS"}, "geometry": {"type": "Point", "coordinates": [2.2861757799721945, 48.84634523535695]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0f459efde1149dd079b959a25d4674f10ecd627b", "fields": {"departement": "75", "stop_lat": 48.850979405056876, "code_postal": "75116", "stop_lon": 2.2788307762199547, "coord": [48.850979405056876, 2.2788307762199547], "stop_id": 3812951, "stop_desc": "7 RUE MAURICE BOURDET - 75116", "stop_name": "PONT DE GRENELLE - MAURICE BOURDET"}, "geometry": {"type": "Point", "coordinates": [2.2788307762199547, 48.850979405056876]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cbb69a8546de976e2a0d0b2763f28590f03d89da", "fields": {"departement": "75", "stop_lat": 48.852658546616404, "code_postal": "75116", "stop_lon": 2.275819070570975, "coord": [48.852658546616404, 2.275819070570975], "stop_id": 3812955, "stop_desc": "11-13 RUE DE BOULAINVILLIERS - 75116", "stop_name": "PLACE DU DOCTEUR HAYEM - RADIO FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.275819070570975, 48.852658546616404]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f5d1587ac9e0a4408251abf8a37615ab40fba4b8", "fields": {"departement": "75", "stop_lat": 48.83959225019507, "code_postal": "75115", "stop_lon": 2.301677023842893, "coord": [48.83959225019507, 2.301677023842893], "stop_id": 3812956, "stop_desc": "FACE 252 RUE DE VAUGIRARD - 75115", "stop_name": "VAUGIRARD - FAVORITES"}, "geometry": {"type": "Point", "coordinates": [2.301677023842893, 48.83959225019507]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "40cae1211b125c0536a0455390fb139f74d3cbb9", "fields": {"departement": "75", "stop_lat": 48.84038395608434, "code_postal": "75115", "stop_lon": 2.304467729103389, "coord": [48.84038395608434, 2.304467729103389], "stop_id": 3812957, "stop_desc": "249 RUE DE VAUGIRARD - 75115", "stop_name": "CAMBRONNE - VAUGIRARD"}, "geometry": {"type": "Point", "coordinates": [2.304467729103389, 48.84038395608434]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "da348e979d70b109499e0dc073cb6b1238857cb8", "fields": {"departement": "75", "stop_lat": 48.84788276485709, "code_postal": "75106", "stop_lon": 2.3196604682901585, "coord": [48.84788276485709, 2.3196604682901585], "stop_id": 3812961, "stop_desc": "99-103 R DE SEVRES - 75106", "stop_name": "VANEAU - SAINT-ROMAIN"}, "geometry": {"type": "Point", "coordinates": [2.3196604682901585, 48.84788276485709]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ddaad09ad462ddd847f2ed33c2a4c44d117824a2", "fields": {"departement": "75", "stop_lat": 48.84730882798802, "code_postal": "75106", "stop_lon": 2.3401960958683934, "coord": [48.84730882798802, 2.3401960958683934], "stop_id": 3812968, "stop_desc": "PLACE EDMOND ROSTAND - 75106", "stop_name": "LUXEMBOURG"}, "geometry": {"type": "Point", "coordinates": [2.3401960958683934, 48.84730882798802]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b4c9f2a4449e04c7ebc8a97a8efeb503c0686dc5", "fields": {"departement": "75", "stop_lat": 48.844154242984864, "code_postal": "75106", "stop_lon": 2.338303177120939, "coord": [48.844154242984864, 2.338303177120939], "stop_id": 3812969, "stop_desc": "FACE 3 RUE AUGUSTE COMTE - 75106", "stop_name": "AUGUSTE COMTE"}, "geometry": {"type": "Point", "coordinates": [2.338303177120939, 48.844154242984864]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aaf81cb1e8feebcad82a7abca17be0197e9f6804", "fields": {"departement": "75", "stop_lat": 48.84976038882875, "code_postal": "75107", "stop_lon": 2.3150976993008685, "coord": [48.84976038882875, 2.3150976993008685], "stop_id": 3812980, "stop_desc": "47 BIS BOULEVARD DES INVALIDES - 75107", "stop_name": "OUDINOT"}, "geometry": {"type": "Point", "coordinates": [2.3150976993008685, 48.84976038882875]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "50c2d426cd297b5525ac0f48aa7bcfce325ed683", "fields": {"departement": "75", "stop_lat": 48.85418005267749, "code_postal": "75107", "stop_lon": 2.305507707472057, "coord": [48.85418005267749, 2.305507707472057], "stop_id": 3812987, "stop_desc": "PLACE DE L'ECOLE MILITAIRE - 75107", "stop_name": "ECOLE MILITAIRE"}, "geometry": {"type": "Point", "coordinates": [2.305507707472057, 48.85418005267749]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f1ddd5c2429d53485ab057e8d9ec24fffe13509c", "fields": {"departement": "75", "stop_lat": 48.851419759852476, "code_postal": "75107", "stop_lon": 2.3014782493507147, "coord": [48.851419759852476, 2.3014782493507147], "stop_id": 3812989, "stop_desc": "23 PLACE JOFFRE - 75107", "stop_name": "GAL DE BOLLARDIERE"}, "geometry": {"type": "Point", "coordinates": [2.3014782493507147, 48.851419759852476]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "771425bf807dd00a2d82c1fc1e37bd9cfddd5a4d", "fields": {"departement": "75", "stop_lat": 48.864134328753934, "code_postal": "75116", "stop_lon": 2.2935686708014367, "coord": [48.864134328753934, 2.2935686708014367], "stop_id": 3812997, "stop_desc": "12 AVENUE D'IENA - 75116", "stop_name": "IENA"}, "geometry": {"type": "Point", "coordinates": [2.2935686708014367, 48.864134328753934]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "143150579e4dc419912d007b589b960bcf5655f2", "fields": {"departement": "75", "stop_lat": 48.86407122112226, "code_postal": "75116", "stop_lon": 2.2930374634329866, "coord": [48.86407122112226, 2.2930374634329866], "stop_id": 3812998, "stop_desc": "FACE 10 AVENUE D'IENA - 75116", "stop_name": "IENA"}, "geometry": {"type": "Point", "coordinates": [2.2930374634329866, 48.86407122112226]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c1134c8de73ce746da3d860f61420df3e9025ae7", "fields": {"departement": "75", "stop_lat": 48.86927332536521, "code_postal": "75116", "stop_lon": 2.288973244700933, "coord": [48.86927332536521, 2.288973244700933], "stop_id": 3813003, "stop_desc": "FACE 17 RUE COPERNIC - 75116", "stop_name": "LAURISTON"}, "geometry": {"type": "Point", "coordinates": [2.288973244700933, 48.86927332536521]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "37b8b0d210f4bb506b2109dcd1e4b87ac1fbf34e", "fields": {"departement": "75", "stop_lat": 48.869101354702714, "code_postal": "75116", "stop_lon": 2.286071623401863, "coord": [48.869101354702714, 2.286071623401863], "stop_id": 3813005, "stop_desc": "RUE BOISSIERE - 75116", "stop_name": "VICTOR HUGO - POINCARE"}, "geometry": {"type": "Point", "coordinates": [2.286071623401863, 48.869101354702714]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "733dbcdeaa98fc184bfdb447ee63c05c08fbfaba", "fields": {"departement": "75", "stop_lat": 48.87819549713169, "code_postal": "75117", "stop_lon": 2.2837598887649864, "coord": [48.87819549713169, 2.2837598887649864], "stop_id": 3813012, "stop_desc": "PLACE DE LA PORTE MAILLOT - 75117", "stop_name": "PORTE MAILLOT - PALAIS DES CONGRES"}, "geometry": {"type": "Point", "coordinates": [2.2837598887649864, 48.87819549713169]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "74689eb49e5285de5d8180406a6ca99d8e05a110", "fields": {"departement": "92", "stop_lat": 48.88264994354407, "code_postal": "92051", "stop_lon": 2.2769826985860053, "coord": [48.88264994354407, 2.2769826985860053], "stop_id": 3813015, "stop_desc": "56 AVENUE ACHILLE PERETTI OU DU ROULE - 92051", "stop_name": "CHARTRES"}, "geometry": {"type": "Point", "coordinates": [2.2769826985860053, 48.88264994354407]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1112914776fb9150ced588d4bf7a5da3f7ee0c41", "fields": {"departement": "92", "stop_lat": 48.89340569622934, "code_postal": "92051", "stop_lon": 2.2732765206429564, "coord": [48.89340569622934, 2.2732765206429564], "stop_id": 3813027, "stop_desc": "63 BOULEVARD VICTOR HUGO - 92051", "stop_name": "HOPITAL AMERICAIN"}, "geometry": {"type": "Point", "coordinates": [2.2732765206429564, 48.89340569622934]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c2cc7dd9d32aa88b031c9bb2f1fcda6c4b940864", "fields": {"departement": "75", "stop_lat": 48.85449154853028, "code_postal": "75115", "stop_lon": 2.2955652465686915, "coord": [48.85449154853028, 2.2955652465686915], "stop_id": 3813035, "stop_desc": "40 AVENUE DE SUFFREN - 75115", "stop_name": "CHAMP DE MARS - SUFFREN"}, "geometry": {"type": "Point", "coordinates": [2.2955652465686915, 48.85449154853028]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cd5afb65d4fd65ef5635925413d936892de965db", "fields": {"departement": "75", "stop_lat": 48.85262312923595, "code_postal": "75115", "stop_lon": 2.29844036949026, "coord": [48.85262312923595, 2.29844036949026], "stop_id": 3813036, "stop_desc": "70 AVENUE DE SUFFREN - 75115", "stop_name": "GENERAL DETRIE"}, "geometry": {"type": "Point", "coordinates": [2.29844036949026, 48.85262312923595]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "86a6b4c4422ce21281b0b5f6a4f7fc50c29c373f", "fields": {"departement": "75", "stop_lat": 48.84349739847797, "code_postal": "75114", "stop_lon": 2.3238014203032726, "coord": [48.84349739847797, 2.3238014203032726], "stop_id": 3813039, "stop_desc": "PLACE DU 18 JUIN 1940 - 75114", "stop_name": "PLACE DU 18 JUIN 1940"}, "geometry": {"type": "Point", "coordinates": [2.3238014203032726, 48.84349739847797]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "62f9be865719abbc7bca340835fb10aa5f3c776b", "fields": {"departement": "75", "stop_lat": 48.84462130823025, "code_postal": "75106", "stop_lon": 2.3289347211572275, "coord": [48.84462130823025, 2.3289347211572275], "stop_id": 3813041, "stop_desc": "FACE 114 BOULEVARD RASPAIL - 75106", "stop_name": "NOTRE-DAME-DES-CHAMPS"}, "geometry": {"type": "Point", "coordinates": [2.3289347211572275, 48.84462130823025]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bde3a9f676348b3de1f724c692f9aa0e995032c2", "fields": {"departement": "75", "stop_lat": 48.846212191910965, "code_postal": "75106", "stop_lon": 2.3304051423614576, "coord": [48.846212191910965, 2.3304051423614576], "stop_id": 3813042, "stop_desc": "7 BIS RUE DUGUAY TROUIN - 75106", "stop_name": "ASSAS - DUGUAY TROUIN"}, "geometry": {"type": "Point", "coordinates": [2.3304051423614576, 48.846212191910965]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c86bac5c1543a949d80cc97258754f499e03fb39", "fields": {"departement": "75", "stop_lat": 48.854707511743534, "code_postal": "75107", "stop_lon": 2.2963277708880896, "coord": [48.854707511743534, 2.2963277708880896], "stop_id": 3813044, "stop_desc": "AVENUE JOSEPH BOUVARD - 75107", "stop_name": "CHAMP DE MARS"}, "geometry": {"type": "Point", "coordinates": [2.2963277708880896, 48.854707511743534]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0a6c0c90aab697796b3fa1807ba99cdcd1dffe91", "fields": {"departement": "75", "stop_lat": 48.851845442253186, "code_postal": "75107", "stop_lon": 2.314878907055589, "coord": [48.851845442253186, 2.314878907055589], "stop_id": 3813056, "stop_desc": "FACE 65 RUE DE BABYLONE - 75107", "stop_name": "SAINT-FRANCOIS-XAVIER"}, "geometry": {"type": "Point", "coordinates": [2.314878907055589, 48.851845442253186]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c8b835b7aa9fb6a2379f47e01183393c588ee8de", "fields": {"departement": "75", "stop_lat": 48.84992345516465, "code_postal": "75106", "stop_lon": 2.323718043780384, "coord": [48.84992345516465, 2.323718043780384], "stop_id": 3813060, "stop_desc": "83 RUE DE SEVRES - 75106", "stop_name": "BAC - SAINT-PLACIDE"}, "geometry": {"type": "Point", "coordinates": [2.323718043780384, 48.84992345516465]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2a1c9ed28dac3e1bc4bc8eaf146d737fc33610cf", "fields": {"departement": "75", "stop_lat": 48.85075949870457, "code_postal": "75106", "stop_lon": 2.3256925178508983, "coord": [48.85075949870457, 2.3256925178508983], "stop_id": 3813061, "stop_desc": "29 RUE DE SEVRES - 75106", "stop_name": "SEVRES - BABYLONE"}, "geometry": {"type": "Point", "coordinates": [2.3256925178508983, 48.85075949870457]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "469d4c35a3d75d1210f71622a3ca71c211a7f4e5", "fields": {"departement": "75", "stop_lat": 48.85271034035536, "code_postal": "75106", "stop_lon": 2.337377252975595, "coord": [48.85271034035536, 2.337377252975595], "stop_id": 3813065, "stop_desc": "119 BOULEVARD SAINT GERMAIN - 75106", "stop_name": "SEINE - BUCI"}, "geometry": {"type": "Point", "coordinates": [2.337377252975595, 48.85271034035536]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e5ad0c9c63cffe7095f9b5341a06c630a176bacd", "fields": {"departement": "75", "stop_lat": 48.850130779272746, "code_postal": "75105", "stop_lon": 2.343369343620797, "coord": [48.850130779272746, 2.343369343620797], "stop_id": 3813069, "stop_desc": "58-60 RUE DES ECOLES - 75105", "stop_name": "CLUNY"}, "geometry": {"type": "Point", "coordinates": [2.343369343620797, 48.850130779272746]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8d2825dcd6ccac33b59b36932f59d6d7841d46d2", "fields": {"departement": "75", "stop_lat": 48.84936585821649, "code_postal": "75105", "stop_lon": 2.353746322738603, "coord": [48.84936585821649, 2.353746322738603], "stop_id": 3813072, "stop_desc": "15 BOULEVARD SAINT GERMAIN - 75105", "stop_name": "SAINT-GERMAIN - CARDINAL LEMOINE"}, "geometry": {"type": "Point", "coordinates": [2.353746322738603, 48.84936585821649]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3a5e5538d756d277f14ffaf3684d2b840070f037", "fields": {"departement": "75", "stop_lat": 48.85250003579268, "code_postal": "75104", "stop_lon": 2.366508345341815, "coord": [48.85250003579268, 2.366508345341815], "stop_id": 3813078, "stop_desc": "39 BOULEVARD HENRI IV - 75104", "stop_name": "LA CERISAIE"}, "geometry": {"type": "Point", "coordinates": [2.366508345341815, 48.85250003579268]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e537a0de575f2c451ce1cae677df61b92fb8b0f4", "fields": {"departement": "75", "stop_lat": 48.84612641829164, "code_postal": "75112", "stop_lon": 2.372047013071946, "coord": [48.84612641829164, 2.372047013071946], "stop_id": 3813082, "stop_desc": "3 RUE DE LYON - 75112", "stop_name": "GARE DE LYON - DIDEROT"}, "geometry": {"type": "Point", "coordinates": [2.372047013071946, 48.84612641829164]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d9835d78a70b412755e9416515eb30c264686354", "fields": {"departement": "75", "stop_lat": 48.84489527909312, "code_postal": "75112", "stop_lon": 2.3715287402401484, "coord": [48.84489527909312, 2.3715287402401484], "stop_id": 3813084, "stop_desc": "205-207 RUE DE BERCY - 75112", "stop_name": "GARE DE LYON - VAN GOGH"}, "geometry": {"type": "Point", "coordinates": [2.3715287402401484, 48.84489527909312]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "09d630911839d2389664ecf9e7f7f96d09f34da2", "fields": {"departement": "75", "stop_lat": 48.83902925371723, "code_postal": "75112", "stop_lon": 2.3886259202812146, "coord": [48.83902925371723, 2.3886259202812146], "stop_id": 3813092, "stop_desc": "17 BOULEVARD DE BERCY - 75112", "stop_name": "DUGOMMIER"}, "geometry": {"type": "Point", "coordinates": [2.3886259202812146, 48.83902925371723]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9028603d7a0d0c0c47e316314d588d3859da09ec", "fields": {"departement": "75", "stop_lat": 48.83636632248199, "code_postal": "75112", "stop_lon": 2.394355111233848, "coord": [48.83636632248199, 2.394355111233848], "stop_id": 3813096, "stop_desc": "25 RUE DE WATTIGNIES - 75112", "stop_name": "NICOLAI"}, "geometry": {"type": "Point", "coordinates": [2.394355111233848, 48.83636632248199]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f72740ac419714052fa13bea7c0cf7be8f54f409", "fields": {"departement": "75", "stop_lat": 48.83346303611521, "code_postal": "75112", "stop_lon": 2.394964547608824, "coord": [48.83346303611521, 2.394964547608824], "stop_id": 3813097, "stop_desc": "320 R DE CHARENTON - 75112", "stop_name": "CHARENTON - JARDINIERS"}, "geometry": {"type": "Point", "coordinates": [2.394964547608824, 48.83346303611521]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4b71a30c3a6e33a62a4d6c0b906ce0bfd9ea3ea0", "fields": {"departement": "75", "stop_lat": 48.84840468548921, "code_postal": "75105", "stop_lon": 2.349728722188171, "coord": [48.84840468548921, 2.349728722188171], "stop_id": 3813105, "stop_desc": "12 RUE DES ECOLES - 75105", "stop_name": "MONGE - MUTUALITE"}, "geometry": {"type": "Point", "coordinates": [2.349728722188171, 48.84840468548921]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "698108fdd339e79a39e70561bfc202cae6785969", "fields": {"departement": "75", "stop_lat": 48.85156893064887, "code_postal": "75106", "stop_lon": 2.337881145081453, "coord": [48.85156893064887, 2.337881145081453], "stop_id": 3813107, "stop_desc": "10 PLACE SAINT SULPICE - 75106", "stop_name": "EGLISE SAINT-SULPICE"}, "geometry": {"type": "Point", "coordinates": [2.337881145081453, 48.85156893064887]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d1308b47c37692ff57e0c848516251db193273de", "fields": {"departement": "75", "stop_lat": 48.851793228857055, "code_postal": "75107", "stop_lon": 2.327612543675961, "coord": [48.851793228857055, 2.327612543675961], "stop_id": 3813108, "stop_desc": "16 RUE DE SEVRES - 75107", "stop_name": "SEVRES - BABYLONE"}, "geometry": {"type": "Point", "coordinates": [2.327612543675961, 48.851793228857055]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c0c19e62e6569d65c78f8c316880893745691bc7", "fields": {"departement": "75", "stop_lat": 48.85177418292736, "code_postal": "75107", "stop_lon": 2.3185968794124507, "coord": [48.85177418292736, 2.3185968794124507], "stop_id": 3813110, "stop_desc": "44 RUE DE BABYLONE - 75107", "stop_name": "VANEAU - BABYLONE"}, "geometry": {"type": "Point", "coordinates": [2.3185968794124507, 48.85177418292736]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4b9b4af57e134aed4363e92b7e3fe4ab06b32f86", "fields": {"departement": "75", "stop_lat": 48.84432413600794, "code_postal": "75106", "stop_lon": 2.3228207907374405, "coord": [48.84432413600794, 2.3228207907374405], "stop_id": 3813116, "stop_desc": "55 BIS BOULEVARD DU MONTPARNASSE - 75106", "stop_name": "PLACE DU 18 JUIN 1940 - RUE DE L'ARRIVEE"}, "geometry": {"type": "Point", "coordinates": [2.3228207907374405, 48.84432413600794]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4d357bf8305a54a7e3dade20b64f92d8293c820e", "fields": {"departement": "75", "stop_lat": 48.84730704447769, "code_postal": "75107", "stop_lon": 2.3164332779011825, "coord": [48.84730704447769, 2.3164332779011825], "stop_id": 3813118, "stop_desc": "65 BOULEVARD DES INVALIDES - 75107", "stop_name": "DUROC"}, "geometry": {"type": "Point", "coordinates": [2.3164332779011825, 48.84730704447769]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6f4b7a14c4009395fb49135ab52f2d4b9dde2dd0", "fields": {"departement": "94", "stop_lat": 48.81694871126577, "code_postal": "94017", "stop_lon": 2.533493089586023, "coord": [48.81694871126577, 2.533493089586023], "stop_id": 3619662, "stop_desc": "3 RUE DU REGARD DES LUATS - 94017", "stop_name": "RUE DE BERNAU"}, "geometry": {"type": "Point", "coordinates": [2.533493089586023, 48.81694871126577]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7a05d8739cb5c7c80198c3cb8d7ef564d0660ba0", "fields": {"departement": "94", "stop_lat": 48.81734065004257, "code_postal": "94017", "stop_lon": 2.5356177067184937, "coord": [48.81734065004257, 2.5356177067184937], "stop_id": 3619664, "stop_desc": "RUE DE BERNAU - 94017", "stop_name": "LYCEE MARX DORMOY"}, "geometry": {"type": "Point", "coordinates": [2.5356177067184937, 48.81734065004257]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "47cfb6915066a99f501702d70b79a7d2f1f5c0b8", "fields": {"departement": "94", "stop_lat": 48.81897685350139, "code_postal": "94017", "stop_lon": 2.5184341920480304, "coord": [48.81897685350139, 2.5184341920480304], "stop_id": 3619669, "stop_desc": "FACE 68 RUE ALEXANDRE FOURNY - 94017", "stop_name": "EGALITE"}, "geometry": {"type": "Point", "coordinates": [2.5184341920480304, 48.81897685350139]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a8b0a16e62e770dd729d230b647169f6877cbf3c", "fields": {"departement": "77", "stop_lat": 48.843426925290714, "code_postal": "77083", "stop_lon": 2.581741885871909, "coord": [48.843426925290714, 2.581741885871909], "stop_id": 3681581, "stop_desc": "BOULEVARD ARCHIMEDE - 77083", "stop_name": "NOISY-CHAMPS RER - DESCARTES"}, "geometry": {"type": "Point", "coordinates": [2.581741885871909, 48.843426925290714]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "53cd3a1331d0aa72d263d705e535572f14ca633b", "fields": {"departement": "77", "stop_lat": 48.87238142021725, "code_postal": "77108", "stop_lon": 2.5788674468620263, "coord": [48.87238142021725, 2.5788674468620263], "stop_id": 3681551, "stop_desc": "AV DU MARECHAL FOCH - 77108", "stop_name": "PARMENTIER - JULES FERRY"}, "geometry": {"type": "Point", "coordinates": [2.5788674468620263, 48.87238142021725]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "501c53b23b92be4d9a73c9b07fd5f7da834e5ef7", "fields": {"departement": "77", "stop_lat": 48.85048981271242, "code_postal": "77337", "stop_lon": 2.6301347406719437, "coord": [48.85048981271242, 2.6301347406719437], "stop_id": 3681531, "stop_desc": "COURS DE L'ARCHE GUEDON - 77337", "stop_name": "LA REMISE AUX FRAISES"}, "geometry": {"type": "Point", "coordinates": [2.6301347406719437, 48.85048981271242]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "96a400be2010964011a4dd49be9fdb2f6f471559", "fields": {"departement": "77", "stop_lat": 48.87067862014969, "code_postal": "77108", "stop_lon": 2.576488959824313, "coord": [48.87067862014969, 2.576488959824313], "stop_id": 3681553, "stop_desc": "49 AVENUE DU MARECHAL FOCH - 77108", "stop_name": "AVENUE DES MARTYRS"}, "geometry": {"type": "Point", "coordinates": [2.576488959824313, 48.87067862014969]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6f96f8b6fc93c2849687934e9cc44c09f0d50293", "fields": {"departement": "77", "stop_lat": 48.836192481478214, "code_postal": "77083", "stop_lon": 2.5858058544107116, "coord": [48.836192481478214, 2.5858058544107116], "stop_id": 3681588, "stop_desc": "10 RUE ALBERT EINSTEIN - 77083", "stop_name": "ESPACE DESCARTES"}, "geometry": {"type": "Point", "coordinates": [2.5858058544107116, 48.836192481478214]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "be3e8d3ecec5cfd22ed38ec722f10474e59bc91b", "fields": {"departement": "77", "stop_lat": 48.84220830914811, "code_postal": "77468", "stop_lon": 2.6561634428593592, "coord": [48.84220830914811, 2.6561634428593592], "stop_id": 3681541, "stop_desc": "AVENUE DE LINGENFELD - 77468", "stop_name": "SALVADOR ALLENDE"}, "geometry": {"type": "Point", "coordinates": [2.6561634428593592, 48.84220830914811]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "90ce8d729b646003952919fcf3472fc0f72bd8d6", "fields": {"departement": "77", "stop_lat": 48.858651100408146, "code_postal": "77083", "stop_lon": 2.582072448939666, "coord": [48.858651100408146, 2.582072448939666], "stop_id": 3681522, "stop_desc": "6 AVENUE JEAN JAURES - 77083", "stop_name": "PLACE CHURCHILL"}, "geometry": {"type": "Point", "coordinates": [2.582072448939666, 48.858651100408146]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5e72541cc4a37963203214b265a4856179227e2b", "fields": {"departement": "77", "stop_lat": 48.86627669725649, "code_postal": "77108", "stop_lon": 2.5755423069547474, "coord": [48.86627669725649, 2.5755423069547474], "stop_id": 3681557, "stop_desc": "4 RUE DE GOURNAY - 77108", "stop_name": "PONT DE GOURNAY"}, "geometry": {"type": "Point", "coordinates": [2.5755423069547474, 48.86627669725649]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b6fdea479b7a7c6d173e897483ecf82314641684", "fields": {"departement": "77", "stop_lat": 48.838512994627884, "code_postal": "77083", "stop_lon": 2.584986430503156, "coord": [48.838512994627884, 2.584986430503156], "stop_id": 3681586, "stop_desc": "AVENUE AMPERE - 77083", "stop_name": "NOBEL"}, "geometry": {"type": "Point", "coordinates": [2.584986430503156, 48.838512994627884]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1fbec296b04d0d7992bf973857a06877b601be0c", "fields": {"departement": "77", "stop_lat": 48.85526251949616, "code_postal": "77083", "stop_lon": 2.582219891686639, "coord": [48.85526251949616, 2.582219891686639], "stop_id": 3681694, "stop_desc": "BOULEVARD DE LA REPUBLIQUE - 77083", "stop_name": "ROND-POINT DES PYRAMIDES"}, "geometry": {"type": "Point", "coordinates": [2.582219891686639, 48.85526251949616]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8ab02fcc4d3eab899636ae181468dbb2dc340a8e", "fields": {"departement": "92", "stop_lat": 48.821959564418414, "code_postal": "92040", "stop_lon": 2.2644493787037208, "coord": [48.821959564418414, 2.2644493787037208], "stop_id": 3681791, "stop_desc": "74-76 AVENUE VICTOR CRESSON - 92040", "stop_name": "ROGER SALENGRO"}, "geometry": {"type": "Point", "coordinates": [2.2644493787037208, 48.821959564418414]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9912c3a45721d7252a3a0625fbc6c78126b3feaa", "fields": {"departement": "77", "stop_lat": 48.83978016258339, "code_postal": "77083", "stop_lon": 2.6017398630101356, "coord": [48.83978016258339, 2.6017398630101356], "stop_id": 3681668, "stop_desc": "AVENUE FORESTIERE - 77083", "stop_name": "LES VIGNES DE BAILLY"}, "geometry": {"type": "Point", "coordinates": [2.6017398630101356, 48.83978016258339]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1b28c7abf089a9c29c20cc4a345f0ba41de938cc", "fields": {"departement": "77", "stop_lat": 48.84515807443644, "code_postal": "77083", "stop_lon": 2.6042728420545522, "coord": [48.84515807443644, 2.6042728420545522], "stop_id": 3681676, "stop_desc": "12 COURS DU LUZARD - 77083", "stop_name": "FONTAINE AUX COULONS"}, "geometry": {"type": "Point", "coordinates": [2.6042728420545522, 48.84515807443644]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a6da60db5c16e094a949d5469c50cb15b867bf4b", "fields": {"departement": "77", "stop_lat": 48.84683513854755, "code_postal": "77337", "stop_lon": 2.6137321018284156, "coord": [48.84683513854755, 2.6137321018284156], "stop_id": 3681674, "stop_desc": "COURS DES ROCHES - 77337", "stop_name": "COLLEGE LE LUZARD"}, "geometry": {"type": "Point", "coordinates": [2.6137321018284156, 48.84683513854755]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bf3f4eee39da1cf99be37889bb42fc69ca7e187e", "fields": {"departement": "77", "stop_lat": 48.83573286498586, "code_postal": "77083", "stop_lon": 2.5864026990954727, "coord": [48.83573286498586, 2.5864026990954727], "stop_id": 3681682, "stop_desc": "RUE ALBERT EINSTEIN - 77083", "stop_name": "ESPACE DESCARTES"}, "geometry": {"type": "Point", "coordinates": [2.5864026990954727, 48.83573286498586]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "713ce20832c90690127c8b5e0ae35e417923b06a", "fields": {"departement": "77", "stop_lat": 48.85450576523999, "code_postal": "77083", "stop_lon": 2.578702456548166, "coord": [48.85450576523999, 2.578702456548166], "stop_id": 3681693, "stop_desc": "RUE ALBERT SCHWEITZER - 77083", "stop_name": "CLAUDE BERNARD"}, "geometry": {"type": "Point", "coordinates": [2.578702456548166, 48.85450576523999]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4e25ae1d008cf1953b8a396316edd1b6d311efee", "fields": {"departement": "77", "stop_lat": 48.84111221087827, "code_postal": "77083", "stop_lon": 2.6049192081291013, "coord": [48.84111221087827, 2.6049192081291013], "stop_id": 3681677, "stop_desc": "PLACE PABLO PICASSO - 77083", "stop_name": "PLACE PABLO PICASSO"}, "geometry": {"type": "Point", "coordinates": [2.6049192081291013, 48.84111221087827]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f80b188660cb9da0bd59d1b4912c0904b2507f0d", "fields": {"departement": "77", "stop_lat": 48.840746968959486, "code_postal": "77083", "stop_lon": 2.5953044170464787, "coord": [48.840746968959486, 2.5953044170464787], "stop_id": 3681667, "stop_desc": "AVENUE BLAISE PASCAL - 77083", "stop_name": "GALILEE-PASCAL"}, "geometry": {"type": "Point", "coordinates": [2.5953044170464787, 48.840746968959486]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "12c01681b1f2d8091667a59f2b42180d99c5bd9a", "fields": {"departement": "78", "stop_lat": 48.920645595306866, "code_postal": "78311", "stop_lon": 2.1844117553489246, "coord": [48.920645595306866, 2.1844117553489246], "stop_id": 2290, "stop_desc": "Quatre septembre (1 rue du) - 78311", "stop_name": "Houilles Carri\u00e8res-sur-Seine"}, "geometry": {"type": "Point", "coordinates": [2.1844117553489246, 48.920645595306866]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0bb09b2e1561596140f71e23674e6e94719e7e5f", "fields": {"departement": "93", "stop_lat": 48.91162168038383, "code_postal": "93070", "stop_lon": 2.3337369648420916, "coord": [48.91162168038383, 2.3337369648420916], "stop_id": 2270, "stop_desc": "R\u00e9publique (place de la, mairie) - 93070", "stop_name": "Mairie de Saint-Ouen"}, "geometry": {"type": "Point", "coordinates": [2.3337369648420916, 48.91162168038383]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "35ffd757e85703627939e640f14daa748064df68", "fields": {"departement": "93", "stop_lat": 48.91756865943168, "code_postal": "93066", "stop_lon": 2.3615269960039114, "coord": [48.91756865943168, 2.3615269960039114], "stop_id": 2243, "stop_desc": "Avenue du Stade de France - 93066", "stop_name": "La Plaine-Stade de France"}, "geometry": {"type": "Point", "coordinates": [2.3615269960039114, 48.91756865943168]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2a5aefcef57ebc35dc7dfa9a8547a249a0dd29d1", "fields": {"departement": "75", "stop_lat": 48.8897381077178, "code_postal": "75118", "stop_lon": 2.339149086674118, "coord": [48.8897381077178, 2.339149086674118], "stop_id": 2245, "stop_desc": "Lamarck (53/53 bis rue) - 75118", "stop_name": "Lamarck-Caulaincourt"}, "geometry": {"type": "Point", "coordinates": [2.339149086674118, 48.8897381077178]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "593f469b3e7f1be42dfe7732cbc08004d28bf189", "fields": {"departement": "75", "stop_lat": 48.8484803444062, "code_postal": "75112", "stop_lon": 2.39676520957729, "coord": [48.8484803444062, 2.39676520957729], "stop_id": 2302, "stop_desc": "Nation (terre-plein face au 3 place de la) - 75112", "stop_name": "Nation"}, "geometry": {"type": "Point", "coordinates": [2.39676520957729, 48.8484803444062]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "95be417cb41a9de5a1707ae2def965f6f9550ec6", "fields": {"departement": "93", "stop_lat": 48.891499383764256, "code_postal": "93055", "stop_lon": 2.4031249606560765, "coord": [48.891499383764256, 2.4031249606560765], "stop_id": 2287, "stop_desc": "Jean Lolive (50 avenue, rue C. Nodier) - 93055", "stop_name": "Hoche"}, "geometry": {"type": "Point", "coordinates": [2.4031249606560765, 48.891499383764256]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cb1b993c6bb6ddc42a06b23a25f609935791facd", "fields": {"departement": "93", "stop_lat": 48.89363252797401, "code_postal": "93055", "stop_lon": 2.41290026603005, "coord": [48.89363252797401, 2.41290026603005], "stop_id": 2257, "stop_desc": "Rue Charles Auffrey - 93055", "stop_name": "Eglise de Pantin"}, "geometry": {"type": "Point", "coordinates": [2.41290026603005, 48.89363252797401]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "522e2016934623c4df37022ae6ecfa0be36cde8b", "fields": {"departement": "75", "stop_lat": 48.82287877506322, "code_postal": "75113", "stop_lon": 2.358079894290851, "coord": [48.82287877506322, 2.358079894290851], "stop_id": 2272, "stop_desc": "Italie (162 avenue d') - 75113", "stop_name": "Maison Blanche"}, "geometry": {"type": "Point", "coordinates": [2.358079894290851, 48.82287877506322]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6f2bfe5a096720d2c3588c497adf389caada7024", "fields": {"departement": "75", "stop_lat": 48.84432338300201, "code_postal": "75115", "stop_lon": 2.317564676180599, "coord": [48.84432338300201, 2.317564676180599], "stop_id": 2263, "stop_desc": "Cherche-Midi (138 rue du) - 75115", "stop_name": "Falgui\u00e8re"}, "geometry": {"type": "Point", "coordinates": [2.317564676180599, 48.84432338300201]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dbfb7165ce8c1c3fdc514efc3135839a1323f1ed", "fields": {"departement": "94", "stop_lat": 48.807637336351924, "code_postal": "94003", "stop_lon": 2.3332541466959276, "coord": [48.807637336351924, 2.3332541466959276], "stop_id": 2246, "stop_desc": "Maison des Examens - 94003", "stop_name": "Laplace"}, "geometry": {"type": "Point", "coordinates": [2.3332541466959276, 48.807637336351924]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "993ec559a46376f79c5fb334fcf1ce347dd5c582", "fields": {"departement": "75", "stop_lat": 48.87346032551137, "code_postal": "75108", "stop_lon": 2.3160412889150637, "coord": [48.87346032551137, 2.3160412889150637], "stop_id": 2359, "stop_desc": "Percier (1 avenue, angle avec le 42 rue de la Bo\u00cdtie) - 75108", "stop_name": "Miromesnil"}, "geometry": {"type": "Point", "coordinates": [2.3160412889150637, 48.87346032551137]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "70d19706b2a0bd6842fca45bb5e8a53e207962c0", "fields": {"departement": "75", "stop_lat": 48.87496305802612, "code_postal": "75109", "stop_lon": 2.3401567908492056, "coord": [48.87496305802612, 2.3401567908492056], "stop_id": 2316, "stop_desc": "Victoire (rue de la, angle avec la rue La Fayette) - 75109", "stop_name": "Le Peletier"}, "geometry": {"type": "Point", "coordinates": [2.3401567908492056, 48.87496305802612]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bb1670bc430a9447bb0f1a45618ea61314b74f19", "fields": {"departement": "93", "stop_lat": 48.85346032384484, "code_postal": "93049", "stop_lon": 2.5137606489199347, "coord": [48.85346032384484, 2.5137606489199347], "stop_id": 2304, "stop_desc": "Gallieni (boulevard, c\u00f4t\u00e9 pair) - 93049", "stop_name": "Neuilly-Plaisance"}, "geometry": {"type": "Point", "coordinates": [2.5137606489199347, 48.85346032384484]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b67fb284d08df7200f3acc02fb4ae29468ec85bd", "fields": {"departement": "75", "stop_lat": 48.84822598041119, "code_postal": "75116", "stop_lon": 2.257698885660922, "coord": [48.84822598041119, 2.257698885660922], "stop_id": 2346, "stop_desc": "Parc des Princes - Rolland Garros - 75116", "stop_name": "Porte d'Auteuil"}, "geometry": {"type": "Point", "coordinates": [2.257698885660922, 48.84822598041119]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eddcb7903b9a59460a9e790b19c93d234babee3f", "fields": {"departement": "93", "stop_lat": 48.84307613366186, "code_postal": "93051", "stop_lon": 2.5818763988415916, "coord": [48.84307613366186, 2.5818763988415916], "stop_id": 2307, "stop_desc": "Entr\u00e9e Ouest de la Gare - 93051", "stop_name": "Noisy-Champs"}, "geometry": {"type": "Point", "coordinates": [2.5818763988415916, 48.84307613366186]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8d16af5a3fe7093d003749751760d3779a227b8a", "fields": {"departement": "75", "stop_lat": 48.84677855902824, "code_postal": "75105", "stop_lon": 2.3404411811761725, "coord": [48.84677855902824, 2.3404411811761725], "stop_id": 2333, "stop_desc": "Saint-Michel (69 boulevard) - 75105", "stop_name": "Luxembourg"}, "geometry": {"type": "Point", "coordinates": [2.3404411811761725, 48.84677855902824]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d559ba7dc3415aff97ac3f6c5fb021086477a953", "fields": {"departement": "75", "stop_lat": 48.870720976292084, "code_postal": "75109", "stop_lon": 2.3322547435729586, "coord": [48.870720976292084, 2.3322547435729586], "stop_id": 2313, "stop_desc": "Th\u00e9\u00e2tre National de l'Op\u00e9ra - 75109", "stop_name": "Op\u00e9ra"}, "geometry": {"type": "Point", "coordinates": [2.3322547435729586, 48.870720976292084]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "240ac9bd8851a9780e2bfe7cc81d290d618e74c2", "fields": {"departement": "75", "stop_lat": 48.86497429063367, "code_postal": "75111", "stop_lon": 2.36763241156394, "coord": [48.86497429063367, 2.36763241156394], "stop_id": 2311, "stop_desc": "Voltaire (43 boulevard) - 75111", "stop_name": "Oberkampf"}, "geometry": {"type": "Point", "coordinates": [2.36763241156394, 48.86497429063367]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8a5f8d2185de7aed036a6e37d978a8a18aba572e", "fields": {"departement": "92", "stop_lat": 48.739380928058495, "code_postal": "92002", "stop_lon": 2.2875990476951404, "coord": [48.739380928058495, 2.2875990476951404], "stop_id": 2320, "stop_desc": "Rue de Massy - 92002", "stop_name": "Les Baconnets"}, "geometry": {"type": "Point", "coordinates": [2.2875990476951404, 48.739380928058495]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "922fe9a8126e07bbb02c61e7a3b548f183c5c810", "fields": {"departement": "75", "stop_lat": 48.85284513365445, "code_postal": "75106", "stop_lon": 2.335143718516068, "coord": [48.85284513365445, 2.335143718516068], "stop_id": 2334, "stop_desc": "Four (13 rue du) - 75106", "stop_name": "Mabillon"}, "geometry": {"type": "Point", "coordinates": [2.335143718516068, 48.85284513365445]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ed7870ca9364fa1e5726deb846f165343f2bd7cf", "fields": {"departement": "75", "stop_lat": 48.83496497071995, "code_postal": "75113", "stop_lon": 2.3680913458793973, "coord": [48.83496497071995, 2.3680913458793973], "stop_id": 2229, "stop_desc": "Vincent Auriol (terre-plein face au 79 boulevard) - 75113", "stop_name": "Chevaleret"}, "geometry": {"type": "Point", "coordinates": [2.3680913458793973, 48.83496497071995]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "53e22fd416f3af1f585d4e8bd84436b147e3f0ac", "fields": {"departement": "75", "stop_lat": 48.84341422414371, "code_postal": "75113", "stop_lon": 2.3641883928676424, "coord": [48.84341422414371, 2.3641883928676424], "stop_id": 2206, "stop_desc": "SNCF/RER C grandes lignes et banlieue - 75113", "stop_name": "Gare d'Austerlitz"}, "geometry": {"type": "Point", "coordinates": [2.3641883928676424, 48.84341422414371]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b01f3c4ceb6910da4604c24d56bc565abbf8705f", "fields": {"departement": "92", "stop_lat": 48.89200565400341, "code_postal": "92062", "stop_lon": 2.2369831238174327, "coord": [48.89200565400341, 2.2369831238174327], "stop_id": 2238, "stop_desc": "Parvis de la D\u00e9fense - 92062", "stop_name": "La D\u00e9fense (Grande Arche)"}, "geometry": {"type": "Point", "coordinates": [2.2369831238174327, 48.89200565400341]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ec22c41291be6098e982fbf4243eecb131ba6dfa", "fields": {"departement": "75", "stop_lat": 48.858857284381365, "code_postal": "75101", "stop_lon": 2.347769856742684, "coord": [48.858857284381365, 2.347769856742684], "stop_id": 2220, "stop_desc": "Victoria (7 avenue, 4 rue Saint-Martin) - 75101", "stop_name": "Ch\u00e2telet"}, "geometry": {"type": "Point", "coordinates": [2.347769856742684, 48.858857284381365]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f4fc9e5b9a15dbe17eb98dcb8b923613c8fb9ac4", "fields": {"departement": "92", "stop_lat": 48.74393256350146, "code_postal": "92002", "stop_lon": 2.297067334618335, "coord": [48.74393256350146, 2.297067334618335], "stop_id": 2231, "stop_desc": "Prosper Lecoute (passage) - 92002", "stop_name": "Fontaine-Michalon"}, "geometry": {"type": "Point", "coordinates": [2.297067334618335, 48.74393256350146]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "13cc8cf14cfd0b3eb9035a76a3339e443b507091", "fields": {"departement": "93", "stop_lat": 49.002940341238975, "code_postal": "93073", "stop_lon": 2.5616528215534498, "coord": [49.002940341238975, 2.5616528215534498], "stop_id": 2224147, "stop_desc": "AEROPORT CHARLES DE GAULLE - 93073", "stop_name": "TERMINAL-2A"}, "geometry": {"type": "Point", "coordinates": [2.5616528215534498, 49.002940341238975]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4c408cc46faddd7b94d07b3bff12237e79a7deb6", "fields": {"departement": "93", "stop_lat": 49.004134747952776, "code_postal": "93073", "stop_lon": 2.5620677751198557, "coord": [49.004134747952776, 2.5620677751198557], "stop_id": 2224152, "stop_desc": "AEROPORT CHARLES DE GAULLE - 93073", "stop_name": "TERMINAL-2B"}, "geometry": {"type": "Point", "coordinates": [2.5620677751198557, 49.004134747952776]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "909b0138c94850b23878e2bdaec193a272732f3a", "fields": {"departement": "75", "stop_lat": 48.884388698358165, "code_postal": "75110", "stop_lon": 2.3592765642767297, "coord": [48.884388698358165, 2.3592765642767297], "stop_id": 2235, "stop_desc": "Rue du Faubourg Saint Denis - 75110", "stop_name": "La Chapelle"}, "geometry": {"type": "Point", "coordinates": [2.3592765642767297, 48.884388698358165]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "02bbf2a3c5016cbf46f83c84ca81453540789a9c", "fields": {"departement": "77", "stop_lat": 49.00499429300713, "code_postal": "77291", "stop_lon": 2.577533777143391, "coord": [49.00499429300713, 2.577533777143391], "stop_id": 2224150, "stop_desc": "AEROPORT CHARLES DE GAULLE - 77291", "stop_name": "TERMINAL-2F"}, "geometry": {"type": "Point", "coordinates": [2.577533777143391, 49.00499429300713]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "521f645b59778df39b73289fdabbf2bece37c549", "fields": {"departement": "75", "stop_lat": 48.84576175731147, "code_postal": "75105", "stop_lon": 2.354548594906739, "coord": [48.84576175731147, 2.354548594906739], "stop_id": 2233, "stop_desc": "Lin\u00e9 (39 rue) - 75105", "stop_name": "Jussieu"}, "geometry": {"type": "Point", "coordinates": [2.354548594906739, 48.84576175731147]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "62ace1dffdacbaba79b680971a9cdf1670872056", "fields": {"departement": "75", "stop_lat": 48.87669583602489, "code_postal": "75110", "stop_lon": 2.3579925105504023, "coord": [48.87669583602489, 2.3579925105504023], "stop_id": 2208, "stop_desc": "Strasbourg (terre plein face au 93 boulevard de) - 75110", "stop_name": "Gare de l'Est (Verdun)"}, "geometry": {"type": "Point", "coordinates": [2.3579925105504023, 48.87669583602489]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "22a836582ebc6253a949791f5739022801b0802c", "fields": {"departement": "75", "stop_lat": 48.844027636151914, "code_postal": "75114", "stop_lon": 2.323569797217576, "coord": [48.844027636151914, 2.323569797217576], "stop_id": 2365, "stop_desc": "Raoul Dautry (place, SNCF Montparnasse) - 75114", "stop_name": "Montparnasse-Bienvenue"}, "geometry": {"type": "Point", "coordinates": [2.323569797217576, 48.844027636151914]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "128f5cfa8846f4ae1096a207ab90490bd8d52ae4", "fields": {"departement": "75", "stop_lat": 48.844189508526796, "code_postal": "75114", "stop_lon": 2.324441232433701, "coord": [48.844189508526796, 2.324441232433701], "stop_id": 2363, "stop_desc": "Raoul Dautry (place, SNCF Montparnasse) - 75114", "stop_name": "Montparnasse-Bienvenue"}, "geometry": {"type": "Point", "coordinates": [2.324441232433701, 48.844189508526796]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "241c3657a723f3b62a88a4b4485145d5ee3ad86f", "fields": {"departement": "75", "stop_lat": 48.86525985667316, "code_postal": "75111", "stop_lon": 2.3747570817167682, "coord": [48.86525985667316, 2.3747570817167682], "stop_id": 2389, "stop_desc": "R\u00e9publique (48 avenue de la, 87 avenue Parmentier) - 75111", "stop_name": "Parmentier"}, "geometry": {"type": "Point", "coordinates": [2.3747570817167682, 48.86525985667316]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "148dbb5eadb90993e3d528b313e66bba9317071d", "fields": {"departement": "92", "stop_lat": 48.77062199581033, "code_postal": "92002", "stop_lon": 2.3098419965156434, "coord": [48.77062199581033, 2.3098419965156434], "stop_id": 2388, "stop_desc": "Duchesse du Maine (avenue de la) - 92002", "stop_name": "Parc de Sceaux"}, "geometry": {"type": "Point", "coordinates": [2.3098419965156434, 48.77062199581033]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aa3d136f157a5eb69e8fe6e4d62273d30cef684c", "fields": {"departement": "75", "stop_lat": 48.886923877470686, "code_postal": "75119", "stop_lon": 2.3866564344034558, "coord": [48.886923877470686, 2.3866564344034558], "stop_id": 2382, "stop_desc": "Jean Jaur\u00e8s (161 avenue, rue des Ardennes) - 75119", "stop_name": "Ourcq"}, "geometry": {"type": "Point", "coordinates": [2.3866564344034558, 48.886923877470686]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "40d5f47dc4c6d7a31ce2583e1421c761ec82689a", "fields": {"departement": "92", "stop_lat": 48.89565993203451, "code_postal": "92050", "stop_lon": 2.2231003280556174, "coord": [48.89565993203451, 2.2231003280556174], "stop_id": 2368, "stop_desc": "Pr\u00e9fectue - 92050", "stop_name": "Nanterre-Pr\u00e9fecture"}, "geometry": {"type": "Point", "coordinates": [2.2231003280556174, 48.89565993203451]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dde1a84c98bf2f3ba8e8828979d2d00659f92971", "fields": {"departement": "75", "stop_lat": 48.83299169177581, "code_postal": "75114", "stop_lon": 2.3366828966443496, "coord": [48.83299169177581, 2.3366828966443496], "stop_id": 1640, "stop_desc": "Saint-Jacques (terre-plein face au 46 boulevard) - 75114", "stop_name": "Saint-Jacques"}, "geometry": {"type": "Point", "coordinates": [2.3366828966443496, 48.83299169177581]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "daecde0ed8408ac31547a008ebcadcd96b7ef639", "fields": {"departement": "93", "stop_lat": 48.840882627372274, "code_postal": "93051", "stop_lon": 2.549350971449035, "coord": [48.840882627372274, 2.549350971449035], "stop_id": 1652, "stop_desc": "Esplanade des Arcades - 93051", "stop_name": "Noisy-le-Grand (Mont d'Est)"}, "geometry": {"type": "Point", "coordinates": [2.549350971449035, 48.840882627372274]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "62c95792ddd8c7c3a4833d7f7b52774b80b70f45", "fields": {"departement": "75", "stop_lat": 48.83915698149679, "code_postal": "75114", "stop_lon": 2.330474151162931, "coord": [48.83915698149679, 2.330474151162931], "stop_id": 1645, "stop_desc": "Raspail (233 boulevard, 35 rue Campagne Premi\u00e8re) - 75114", "stop_name": "Raspail"}, "geometry": {"type": "Point", "coordinates": [2.330474151162931, 48.83915698149679]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "578b4956ac1cd756a4e60d5570a139e3dfac99cf", "fields": {"departement": "75", "stop_lat": 48.849010153648216, "code_postal": "75112", "stop_lon": 2.3976646127910075, "coord": [48.849010153648216, 2.3976646127910075], "stop_id": 1651, "stop_desc": "Nation (terre-plein face au 3 place de la) - 75112", "stop_name": "Nation"}, "geometry": {"type": "Point", "coordinates": [2.3976646127910075, 48.849010153648216]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6fd33901bb8bcf2b3175506abc38a1737c19d89f", "fields": {"departement": "75", "stop_lat": 48.83988516597736, "code_postal": "75105", "stop_lon": 2.336873440890153, "coord": [48.83988516597736, 2.336873440890153], "stop_id": 1650, "stop_desc": "Observatoire (47 avenue de l') - 75105", "stop_name": "Port Royal"}, "geometry": {"type": "Point", "coordinates": [2.336873440890153, 48.83988516597736]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dde2d31dd126e36bb1380ef19fa9669f6e38eb7f", "fields": {"departement": "75", "stop_lat": 48.838516743515164, "code_postal": "75113", "stop_lon": 2.360727550361784, "coord": [48.838516743515164, 2.360727550361784], "stop_id": 1641, "stop_desc": "La Piti\u00e9-Salp\u00eatri\u00e8re - 75113", "stop_name": "Saint-Marcel"}, "geometry": {"type": "Point", "coordinates": [2.360727550361784, 48.838516743515164]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "86b8efa2f8eef2b4aff6f8f9faa6d173440532e6", "fields": {"departement": "75", "stop_lat": 48.88195101817822, "code_postal": "75119", "stop_lon": 2.3932606758573876, "coord": [48.88195101817822, 2.3932606758573876], "stop_id": 1635, "stop_desc": "Rhin et Danube (9 place de) - 75119", "stop_name": "Danube"}, "geometry": {"type": "Point", "coordinates": [2.3932606758573876, 48.88195101817822]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9dd25109a61879c64b66733da1b42c04390d424c", "fields": {"departement": "77", "stop_lat": 48.85549704826123, "code_postal": "77449", "stop_lon": 2.7736084332189748, "coord": [48.85549704826123, 2.7736084332189748], "stop_id": 161468, "stop_desc": "Place Jean Monnet - 77449", "stop_name": "Val d'europe"}, "geometry": {"type": "Point", "coordinates": [2.7736084332189748, 48.85549704826123]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f147373f51dea4d37e8aeeaa8a72215f659327a2", "fields": {"departement": "77", "stop_lat": 48.85549704826123, "code_postal": "77449", "stop_lon": 2.7736084332189748, "coord": [48.85549704826123, 2.7736084332189748], "stop_id": 161469, "stop_desc": "Place Jean Monnet - 77449", "stop_name": "Val d'europe"}, "geometry": {"type": "Point", "coordinates": [2.7736084332189748, 48.85549704826123]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "59d91ab1ee84953e077958693ae78eba7dd5538b", "fields": {"departement": "75", "stop_lat": 48.87399384072475, "code_postal": "75108", "stop_lon": 2.294663961825911, "coord": [48.87399384072475, 2.294663961825911], "stop_id": 2029, "stop_desc": "Charles de Gaulle (place, 2 avenue de Wagram) - 75108", "stop_name": "Charles de Gaulle-Etoile"}, "geometry": {"type": "Point", "coordinates": [2.294663961825911, 48.87399384072475]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "22e20719815d818612958c2c98f167821fbc2450", "fields": {"departement": "75", "stop_lat": 48.8739310942679, "code_postal": "75108", "stop_lon": 2.295127251650101, "coord": [48.8739310942679, 2.295127251650101], "stop_id": 2028, "stop_desc": "Charles de Gaulle (place, 2 avenue de Wagram) - 75108", "stop_name": "Charles de Gaulle-Etoile"}, "geometry": {"type": "Point", "coordinates": [2.295127251650101, 48.8739310942679]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "776fe9f4f291564e2eb27cb597e154805fd606e5", "fields": {"departement": "75", "stop_lat": 48.833315185891436, "code_postal": "75114", "stop_lon": 2.3334427638299853, "coord": [48.833315185891436, 2.3334427638299853], "stop_id": 1998, "stop_desc": "G\u00e9n\u00e9ral Leclerc (4 avenue du, 2 rue Daguerre) - 75114", "stop_name": "Denfert-Rochereau"}, "geometry": {"type": "Point", "coordinates": [2.3334427638299853, 48.833315185891436]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a3f0c5adb332a245e5833dd8371bf5f2be8b8be1", "fields": {"departement": "75", "stop_lat": 48.87818498179219, "code_postal": "75110", "stop_lon": 2.3701745466363584, "coord": [48.87818498179219, 2.3701745466363584], "stop_id": 1978, "stop_desc": "Villette (terre-plein face au 83 boulevard de la) - 75110", "stop_name": "Colonel Fabien"}, "geometry": {"type": "Point", "coordinates": [2.3701745466363584, 48.87818498179219]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "64db8cfdd74482b448d77879b6a670e15fc51f99", "fields": {"departement": "75", "stop_lat": 48.83427681284463, "code_postal": "75114", "stop_lon": 2.332203797304786, "coord": [48.83427681284463, 2.332203797304786], "stop_id": 1996, "stop_desc": "G\u00e9n\u00e9ral Leclerc (4 avenue du, 2 rue Daguerre) - 75114", "stop_name": "Denfert-Rochereau"}, "geometry": {"type": "Point", "coordinates": [2.332203797304786, 48.83427681284463]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b713cb58a3c8759e9971378341ce13c40abbaed3", "fields": {"departement": "75", "stop_lat": 48.8476991081708, "code_postal": "75115", "stop_lon": 2.302039143669263, "coord": [48.8476991081708, 2.302039143669263], "stop_id": 2016, "stop_desc": "Garibaldi (terre-plein face au 2 boulevard, c\u00f4t\u00e9 pair) - 75115", "stop_name": "Cambronne"}, "geometry": {"type": "Point", "coordinates": [2.302039143669263, 48.8476991081708]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "59e8914a64269491602b5f848e0294aeb13078d7", "fields": {"departement": "94", "stop_lat": 48.84432514436857, "code_postal": "94080", "stop_lon": 2.440552346211822, "coord": [48.84432514436857, 2.440552346211822], "stop_id": 2035, "stop_desc": "Paris (14 avenue de) - 94080", "stop_name": "Ch\u00e2teau de Vincennes"}, "geometry": {"type": "Point", "coordinates": [2.440552346211822, 48.84432514436857]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "061996eb84f997dad4eaec9500c34136a01865f1", "fields": {"departement": "75", "stop_lat": 48.8463629755008, "code_postal": "75115", "stop_lon": 2.2856310658828742, "coord": [48.8463629755008, 2.2856310658828742], "stop_id": 2031, "stop_desc": "Entrepreneurs (36 rue des) - 75115", "stop_name": "Charles Michels"}, "geometry": {"type": "Point", "coordinates": [2.2856310658828742, 48.8463629755008]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0e3567ff0180fa61032f5d3993958382224abf0f", "fields": {"departement": "75", "stop_lat": 48.840594300001605, "code_postal": "75105", "stop_lon": 2.351755612946688, "coord": [48.840594300001605, 2.351755612946688], "stop_id": 2020, "stop_desc": "Monge (96 rue) - 75105", "stop_name": "Censier-Daubenton"}, "geometry": {"type": "Point", "coordinates": [2.351755612946688, 48.840594300001605]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b9a336aefcd31c3a7aa5459a5aeeef798007f374", "fields": {"departement": "75", "stop_lat": 48.84670586906026, "code_postal": "75105", "stop_lon": 2.351335178972595, "coord": [48.84670586906026, 2.351335178972595], "stop_id": 2018, "stop_desc": "Monge (28 rue) - 75105", "stop_name": "Cardinal-Lemoine"}, "geometry": {"type": "Point", "coordinates": [2.351335178972595, 48.84670586906026]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a549bb3a93231f496d686621b9ee1fd8de255a6b", "fields": {"departement": "75", "stop_lat": 48.87371526831065, "code_postal": "75108", "stop_lon": 2.294759562849878, "coord": [48.87371526831065, 2.294759562849878], "stop_id": 2149, "stop_desc": "Charles de Gaulle (place, 2 avenue de Wagram) - 75108", "stop_name": "Charles de Gaulle-Etoile"}, "geometry": {"type": "Point", "coordinates": [2.294759562849878, 48.87371526831065]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "270d366cea7ea4c567c0d9a86b14e2c904634ded", "fields": {"departement": "75", "stop_lat": 48.88377051883179, "code_postal": "75118", "stop_lon": 2.332485148274094, "coord": [48.88377051883179, 2.332485148274094], "stop_id": 2120, "stop_desc": "Clichy (terre-plein face au 59 boulevard de) - 75118", "stop_name": "Blanche"}, "geometry": {"type": "Point", "coordinates": [2.332485148274094, 48.88377051883179]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5681d998db85a60b52de49a81658f92996e671cf", "fields": {"departement": "75", "stop_lat": 48.85856967247972, "code_postal": "75101", "stop_lon": 2.347933245835307, "coord": [48.85856967247972, 2.347933245835307], "stop_id": 2155, "stop_desc": "Victoria (7 avenue, 4 rue Saint-Martin) - 75101", "stop_name": "Ch\u00e2telet"}, "geometry": {"type": "Point", "coordinates": [2.347933245835307, 48.85856967247972]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c5e13706472f8ce354a9ad046e099867b55ee2dc", "fields": {"departement": "75", "stop_lat": 48.8463629755008, "code_postal": "75115", "stop_lon": 2.2856310658828742, "coord": [48.8463629755008, 2.2856310658828742], "stop_id": 2150, "stop_desc": "Entrepreneurs (36 rue des) - 75115", "stop_name": "Charles Michels"}, "geometry": {"type": "Point", "coordinates": [2.2856310658828742, 48.8463629755008]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "efff0c1071fbb918ebe128e455df333a044d1a76", "fields": {"departement": "75", "stop_lat": 48.85338911229207, "code_postal": "75104", "stop_lon": 2.3691646022087665, "coord": [48.85338911229207, 2.3691646022087665], "stop_id": 2112, "stop_desc": "Roquette (rue de la) PARIS-11 - 75104", "stop_name": "Bastille"}, "geometry": {"type": "Point", "coordinates": [2.3691646022087665, 48.85338911229207]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6eb684cf332c66766abdacaf759791e11b2d7472", "fields": {"departement": "75", "stop_lat": 48.84670586906026, "code_postal": "75105", "stop_lon": 2.351335178972595, "coord": [48.84670586906026, 2.351335178972595], "stop_id": 2137, "stop_desc": "Monge (28 rue) - 75105", "stop_name": "Cardinal-Lemoine"}, "geometry": {"type": "Point", "coordinates": [2.351335178972595, 48.84670586906026]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "09c1f5cbb98552c31e850fc8ac93bd22e9bf5e88", "fields": {"departement": "91", "stop_lat": 48.69842449558706, "code_postal": "91272", "stop_lon": 2.1372675003239285, "coord": [48.69842449558706, 2.1372675003239285], "stop_id": 2127, "stop_desc": "Rue du Clos - 91272", "stop_name": "Gif-sur-Yvette"}, "geometry": {"type": "Point", "coordinates": [2.1372675003239285, 48.69842449558706]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fad6ef4ea21210333511d3d73f02c12f00aefd4b", "fields": {"departement": "75", "stop_lat": 48.86685615476034, "code_postal": "75116", "stop_lon": 2.2900380734450088, "coord": [48.86685615476034, 2.2900380734450088], "stop_id": 2122, "stop_desc": "Kl\u00e9ber (57 avenue) - 75116", "stop_name": "Boissi\u00e8re"}, "geometry": {"type": "Point", "coordinates": [2.2900380734450088, 48.86685615476034]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2f88db450220754d3292bcd7542bc0b9ac582d96", "fields": {"departement": "75", "stop_lat": 48.829863252112794, "code_postal": "75113", "stop_lon": 2.3506227279320897, "coord": [48.829863252112794, 2.3506227279320897], "stop_id": 2177, "stop_desc": "Auguste Blanqui (terre-plein face au boulevard, c\u00f4t\u00e9 impair) - 75113", "stop_name": "Corvisart"}, "geometry": {"type": "Point", "coordinates": [2.3506227279320897, 48.829863252112794]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7e195b00d7db9d160a3066e5ec5312de80f84c4f", "fields": {"departement": "75", "stop_lat": 48.83427681284463, "code_postal": "75114", "stop_lon": 2.332203797304786, "coord": [48.83427681284463, 2.332203797304786], "stop_id": 2185, "stop_desc": "G\u00e9n\u00e9ral Leclerc (4 avenue du, 2 rue Daguerre) - 75114", "stop_name": "Denfert-Rochereau"}, "geometry": {"type": "Point", "coordinates": [2.332203797304786, 48.83427681284463]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "20943da56851d4f06e57f6d467558591c0fd49b3", "fields": {"departement": "93", "stop_lat": 48.86326252650054, "code_postal": "93006", "stop_lon": 2.415975368499958, "coord": [48.86326252650054, 2.415975368499958], "stop_id": 2204, "stop_desc": "Gare routi\u00e8re - 93006", "stop_name": "Gallieni (Parc de Bagnolet)"}, "geometry": {"type": "Point", "coordinates": [2.415975368499958, 48.86326252650054]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e5e28ac423f68c4a7b9d74c00db99f96effce1d6", "fields": {"departement": "92", "stop_lat": 48.84228014352973, "code_postal": "92012", "stop_lon": 2.238862975367271, "coord": [48.84228014352973, 2.238862975367271], "stop_id": 2193, "stop_desc": "Jean Jaur\u00e8s (23 boulevard) - 92012", "stop_name": "Boulogne-Jean-Jaur\u00e8s"}, "geometry": {"type": "Point", "coordinates": [2.238862975367271, 48.84228014352973]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ac43cd6556e21b03bd898599a396a72128a28d71", "fields": {"departement": "75", "stop_lat": 48.87049583233104, "code_postal": "75109", "stop_lon": 2.348862117440598, "coord": [48.87049583233104, 2.348862117440598], "stop_id": 2190, "stop_desc": "Poissonni\u00e8re (8 boulevard) - 75109", "stop_name": "Bonne Nouvelle"}, "geometry": {"type": "Point", "coordinates": [2.348862117440598, 48.87049583233104]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "48a4397662079b035beb63d4762f8c4296a375ae", "fields": {"departement": "75", "stop_lat": 48.85079575570429, "code_postal": "75105", "stop_lon": 2.3450308883652258, "coord": [48.85079575570429, 2.3450308883652258], "stop_id": 2167, "stop_desc": "Rue Saint Jacques - 75105", "stop_name": "Cluny-La Sorbonne"}, "geometry": {"type": "Point", "coordinates": [2.3450308883652258, 48.85079575570429]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "632f51e41fa6fdfada519bdf29b88a37e66d174f", "fields": {"departement": "78", "stop_lat": 48.98941774049155, "code_postal": "78172", "stop_lon": 2.074189247151442, "coord": [48.98941774049155, 2.074189247151442], "stop_id": 2173, "stop_desc": "Clemenceau (Place) - 78172", "stop_name": "Conflans-Fin d'Oise"}, "geometry": {"type": "Point", "coordinates": [2.074189247151442, 48.98941774049155]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e0c7e88f51c1dd6c5cf1de72085792632384e1a2", "fields": {"departement": "93", "stop_lat": 48.91405674514657, "code_postal": "93001", "stop_lon": 2.403576334511007, "coord": [48.91405674514657, 2.403576334511007], "stop_id": 2199, "stop_desc": "Pantin - 93001", "stop_name": "Fort d'Aubervilliers"}, "geometry": {"type": "Point", "coordinates": [2.403576334511007, 48.91405674514657]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aad7f5b46a9d07811f84da4ef13a0ba825953470", "fields": {"departement": "92", "stop_lat": 48.916574835983226, "code_postal": "92004", "stop_lon": 2.2943289646870606, "coord": [48.916574835983226, 2.2943289646870606], "stop_id": 2202, "stop_desc": "Gare routi\u00e8re - 92004", "stop_name": "Gabriel-P\u00e9ri"}, "geometry": {"type": "Point", "coordinates": [2.2943289646870606, 48.916574835983226]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d9c74bbed586e3eec83990b0a1b2ce442dbd0070", "fields": {"departement": "75", "stop_lat": 48.86876179259638, "code_postal": "75102", "stop_lon": 2.3406741288121005, "coord": [48.86876179259638, 2.3406741288121005], "stop_id": 2196, "stop_desc": "Palais Brongniart - 75102", "stop_name": "Bourse"}, "geometry": {"type": "Point", "coordinates": [2.3406741288121005, 48.86876179259638]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8b7bbaa47fdeb094e82ca7230ee1c92be993b117", "fields": {"departement": "75", "stop_lat": 48.86822334760734, "code_postal": "75120", "stop_lon": 2.401324380544102, "coord": [48.86822334760734, 2.401324380544102], "stop_id": 2393, "stop_desc": "Paul Signac (place, en face du 125 avenue Gambetta) - 75120", "stop_name": "Pelleport"}, "geometry": {"type": "Point", "coordinates": [2.401324380544102, 48.86822334760734]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e2fd660d38f7c36e5d67a66f93d5e021d400e16e", "fields": {"departement": "75", "stop_lat": 48.88345565159549, "code_postal": "75109", "stop_lon": 2.3273749934103556, "coord": [48.88345565159549, 2.3273749934103556], "stop_id": 2405, "stop_desc": "Clichy (terre-plein face au 7 place de) - 75109", "stop_name": "Place de Clichy"}, "geometry": {"type": "Point", "coordinates": [2.3273749934103556, 48.88345565159549]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "98945059b92d6b7b38aef77b0136d6085185b973", "fields": {"departement": "75", "stop_lat": 48.88573915969202, "code_postal": "75117", "stop_lon": 2.2918606206755348, "coord": [48.88573915969202, 2.2918606206755348], "stop_id": 2416, "stop_desc": "Villiers (143 rue de) - 75117", "stop_name": "Porte de Champerret"}, "geometry": {"type": "Point", "coordinates": [2.2918606206755348, 48.88573915969202]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "117d39568478ae157b40996cf8986698e6424687", "fields": {"departement": "75", "stop_lat": 48.82135736230755, "code_postal": "75113", "stop_lon": 2.369308237223248, "coord": [48.82135736230755, 2.369308237223248], "stop_id": 2412, "stop_desc": "Porte d'Ivry (53 avenue de la) - 75113", "stop_name": "Porte d'Ivry"}, "geometry": {"type": "Point", "coordinates": [2.369308237223248, 48.82135736230755]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a982d13eccf15893ebf05017d7e059a7ef89473b", "fields": {"departement": "75", "stop_lat": 48.857534382513876, "code_postal": "75116", "stop_lon": 2.28559270581709, "coord": [48.857534382513876, 2.28559270581709], "stop_id": 2390, "stop_desc": "Maison de la Radio Mus\u00e9e du Vin - 75116", "stop_name": "Passy"}, "geometry": {"type": "Point", "coordinates": [2.28559270581709, 48.857534382513876]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5cddc8145e8eaf7ea30a0105b5f8458d376aec1c", "fields": {"departement": "95", "stop_lat": 48.94389855709099, "code_postal": "95018", "stop_lon": 2.251098707691505, "coord": [48.94389855709099, 2.251098707691505], "stop_id": 4015711, "stop_desc": "25 AVENUE GABRIEL PERI - 95018", "stop_name": "PAUL VAILLANT COUTURIER"}, "geometry": {"type": "Point", "coordinates": [2.251098707691505, 48.94389855709099]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "54d92fbe5f9c8517886523ab8af0ed09da45fbfb", "fields": {"departement": "95", "stop_lat": 48.94692605506069, "code_postal": "95018", "stop_lon": 2.249661062842731, "coord": [48.94692605506069, 2.249661062842731], "stop_id": 4015712, "stop_desc": "23 BOULEVARD LEON FEIX - 95018", "stop_name": "HOTEL DE VILLE D'ARGENTEUIL"}, "geometry": {"type": "Point", "coordinates": [2.249661062842731, 48.94692605506069]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "33356fe3789ea3723548babbc268289743f71992", "fields": {"departement": "92", "stop_lat": 48.92089080016295, "code_postal": "92009", "stop_lon": 2.2784519105217274, "coord": [48.92089080016295, 2.2784519105217274], "stop_id": 4015721, "stop_desc": "227 AV D'ARGENTEUIL - 92009", "stop_name": "JAURES"}, "geometry": {"type": "Point", "coordinates": [2.2784519105217274, 48.92089080016295]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "66de15a920d3a30fc78d103953441ca240618678", "fields": {"departement": "92", "stop_lat": 48.916878083087035, "code_postal": "92004", "stop_lon": 2.288328894856471, "coord": [48.916878083087035, 2.288328894856471], "stop_id": 4015729, "stop_desc": "116-118 BOULEVARD VOLTAIRE - 92004", "stop_name": "ALMA"}, "geometry": {"type": "Point", "coordinates": [2.288328894856471, 48.916878083087035]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "95a8a78c9f3e2d55bde5545eff7b68030b91fbdd", "fields": {"departement": "92", "stop_lat": 48.92757405566248, "code_postal": "92004", "stop_lon": 2.272606929228948, "coord": [48.92757405566248, 2.272606929228948], "stop_id": 4015737, "stop_desc": "384 AVENUE D'ARGENTEUIL - 92004", "stop_name": "QUATRE ROUTES"}, "geometry": {"type": "Point", "coordinates": [2.272606929228948, 48.92757405566248]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c030f2db4ac239a5571baf643ad58f2f606e86bf", "fields": {"departement": "92", "stop_lat": 48.93206400717952, "code_postal": "92025", "stop_lon": 2.2664497055394404, "coord": [48.93206400717952, 2.2664497055394404], "stop_id": 4015740, "stop_desc": "FACE 131 AVENUE DE STALINGRAD - 92025", "stop_name": "SOLFERINO"}, "geometry": {"type": "Point", "coordinates": [2.2664497055394404, 48.93206400717952]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f982309cac212c5dc4dbac9e51d8c7efe72c957e", "fields": {"departement": "92", "stop_lat": 48.93137217953591, "code_postal": "92025", "stop_lon": 2.266723446850035, "coord": [48.93137217953591, 2.266723446850035], "stop_id": 4015741, "stop_desc": "121 AVENUE DE STALINGRAD - 92025", "stop_name": "SOLFERINO"}, "geometry": {"type": "Point", "coordinates": [2.266723446850035, 48.93137217953591]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5751136a37c7a8988123f4d0c3d196f4194039a2", "fields": {"departement": "95", "stop_lat": 48.9459497561669, "code_postal": "95018", "stop_lon": 2.2542196817375144, "coord": [48.9459497561669, 2.2542196817375144], "stop_id": 4015748, "stop_desc": "FACE 42 RUE ALFRED LABRIERE - 95018", "stop_name": "LABRIERE"}, "geometry": {"type": "Point", "coordinates": [2.2542196817375144, 48.9459497561669]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8c1ea6f22ff9e21f657736cace4ea3488f8f74de", "fields": {"departement": "95", "stop_lat": 48.94595216278769, "code_postal": "95018", "stop_lon": 2.2577533738675597, "coord": [48.94595216278769, 2.2577533738675597], "stop_id": 4015749, "stop_desc": "PLACE PIERRE SEMARD (GARE ROUTIERE) - 95018", "stop_name": "GARE D'ARGENTEUIL"}, "geometry": {"type": "Point", "coordinates": [2.2577533738675597, 48.94595216278769]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ba6b99f9142e7757a5cb1b1c411cbbefb9f1a594", "fields": {"departement": "92", "stop_lat": 48.91596231725809, "code_postal": "92004", "stop_lon": 2.29059328767619, "coord": [48.91596231725809, 2.29059328767619], "stop_id": 4015755, "stop_desc": "99 BOULEVARD VOLTAIRE - 92004", "stop_name": "LOUIS MELOTTE"}, "geometry": {"type": "Point", "coordinates": [2.29059328767619, 48.91596231725809]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e19425d8fe6b12e838a8d9d1146e2bac386955fc", "fields": {"departement": "92", "stop_lat": 48.83612495942025, "code_postal": "92012", "stop_lon": 2.2522170875706116, "coord": [48.83612495942025, 2.2522170875706116], "stop_id": 4015759, "stop_desc": "35 AVENUE EDOUARD VAILLANT - 92012", "stop_name": "HENRI MARTIN"}, "geometry": {"type": "Point", "coordinates": [2.2522170875706116, 48.83612495942025]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8f26d3a7cb712f6a45122fac667ebe2f9d610c00", "fields": {"departement": "92", "stop_lat": 48.8342214348433, "code_postal": "92012", "stop_lon": 2.242744699572587, "coord": [48.8342214348433, 2.242744699572587], "stop_id": 4015762, "stop_desc": "8 AVENUE ANDRE MORIZET - 92012", "stop_name": "MARCEL SEMBAT-METRO"}, "geometry": {"type": "Point", "coordinates": [2.242744699572587, 48.8342214348433]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ab62980f6912b407751430b8ac5f5102bbc750b1", "fields": {"departement": "92", "stop_lat": 48.83554912628208, "code_postal": "92012", "stop_lon": 2.239678999700299, "coord": [48.83554912628208, 2.239678999700299], "stop_id": 4015765, "stop_desc": "AVENUE ANDRE MORIZET - 92012", "stop_name": "HOTEL DE VILLE DE BOULOGNE-BILLANCOURT"}, "geometry": {"type": "Point", "coordinates": [2.239678999700299, 48.83554912628208]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "57df841072cb2ed01172829ddaae4c8a745c9be3", "fields": {"departement": "92", "stop_lat": 48.83757621146484, "code_postal": "92012", "stop_lon": 2.234787360382873, "coord": [48.83757621146484, 2.234787360382873], "stop_id": 4015767, "stop_desc": "73 AVENUE ANDRE MORIZET - 92012", "stop_name": "ANCIENNE MAIRIE DE BOULOGNE-BILLANCOURT"}, "geometry": {"type": "Point", "coordinates": [2.234787360382873, 48.83757621146484]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "79758ae0150fc37728e0d44b718873bae59a5c4a", "fields": {"departement": "92", "stop_lat": 48.841798432245604, "code_postal": "92064", "stop_lon": 2.222796741110532, "coord": [48.841798432245604, 2.222796741110532], "stop_id": 4015771, "stop_desc": "QUAI DU PRESIDENT CARNOT - 92064", "stop_name": "PARC DE SAINT-CLOUD"}, "geometry": {"type": "Point", "coordinates": [2.222796741110532, 48.841798432245604]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "20e23b8a206ce61f35fd21d4e876b3dc74de71a4", "fields": {"departement": "92", "stop_lat": 48.842283115646985, "code_postal": "92064", "stop_lon": 2.2221284703462936, "coord": [48.842283115646985, 2.2221284703462936], "stop_id": 4015772, "stop_desc": "QUAI DU PRESIDENT CARNOT - 92064", "stop_name": "PARC DE SAINT-CLOUD"}, "geometry": {"type": "Point", "coordinates": [2.2221284703462936, 48.842283115646985]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "709c63a6bc4c6cd1dac330b8295e20f408a4811c", "fields": {"departement": "92", "stop_lat": 48.86201373483457, "code_postal": "92073", "stop_lon": 2.225394702676944, "coord": [48.86201373483457, 2.225394702676944], "stop_id": 4015783, "stop_desc": "8 QUAI LEON BLUM - 92073", "stop_name": "CLAVEL"}, "geometry": {"type": "Point", "coordinates": [2.225394702676944, 48.86201373483457]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a7090d026d909ed820b33b3c1e7f121385b61a0c", "fields": {"departement": "92", "stop_lat": 48.866617444063685, "code_postal": "92073", "stop_lon": 2.227727883782037, "coord": [48.866617444063685, 2.227727883782037], "stop_id": 4015785, "stop_desc": "QUAI LEON BLUM - 92073", "stop_name": "PONT DE SURESNES"}, "geometry": {"type": "Point", "coordinates": [2.227727883782037, 48.866617444063685]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "45e4f4eb399a85aa22fb3f88eaca87b1c17cb1d7", "fields": {"departement": "92", "stop_lat": 48.87789950761872, "code_postal": "92062", "stop_lon": 2.2416158962574335, "coord": [48.87789950761872, 2.2416158962574335], "stop_id": 4015790, "stop_desc": "QUAI DE DION BOUTON (OUEST) - 92062", "stop_name": "PONT DE PUTEAUX"}, "geometry": {"type": "Point", "coordinates": [2.2416158962574335, 48.87789950761872]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a7ff2ba5ad02a4f5cc0e66234a82b47a7b0f959a", "fields": {"departement": "92", "stop_lat": 48.89062691501333, "code_postal": "92026", "stop_lon": 2.255698478699648, "coord": [48.89062691501333, 2.255698478699648], "stop_id": 4015796, "stop_desc": "FACE 3 RUE DE L'ABREUVOIR - 92026", "stop_name": "PAUL DOUMER"}, "geometry": {"type": "Point", "coordinates": [2.255698478699648, 48.89062691501333]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "adc71ec98dd2dc73fd5f15fc3d4db9dc6d6daabe", "fields": {"departement": "92", "stop_lat": 48.896732054150135, "code_postal": "92026", "stop_lon": 2.2599825270847735, "coord": [48.896732054150135, 2.2599825270847735], "stop_id": 4015803, "stop_desc": "33-35 BOULEVARD SAINT-DENIS - 92026", "stop_name": "LA MONTAGNE"}, "geometry": {"type": "Point", "coordinates": [2.2599825270847735, 48.896732054150135]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7b249babd9ed34d1ffadae024cc102d0c98e8b27", "fields": {"departement": "92", "stop_lat": 48.90002677027651, "code_postal": "92026", "stop_lon": 2.26886536537653, "coord": [48.90002677027651, 2.26886536537653], "stop_id": 4015806, "stop_desc": "156 BOULEVARD SAINT-DENIS - 92026", "stop_name": "FRANKLIN"}, "geometry": {"type": "Point", "coordinates": [2.26886536537653, 48.90002677027651]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d0b00757ac267ee88549611caa85cca3232d1c9a", "fields": {"departement": "92", "stop_lat": 48.900404509339594, "code_postal": "92026", "stop_lon": 2.2693556051348955, "coord": [48.900404509339594, 2.2693556051348955], "stop_id": 4015807, "stop_desc": "203 BOULEVARD SAINT-DENIS - 92026", "stop_name": "FRANKLIN"}, "geometry": {"type": "Point", "coordinates": [2.2693556051348955, 48.900404509339594]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "25ee2724a66b7584869d043cfce1797e52b5a4f7", "fields": {"departement": "92", "stop_lat": 48.90426493167167, "code_postal": "92026", "stop_lon": 2.2787025332972335, "coord": [48.90426493167167, 2.2787025332972335], "stop_id": 4015810, "stop_desc": "272 BOULEVARD SAINT-DENIS - 92026", "stop_name": "HAUSSMANN"}, "geometry": {"type": "Point", "coordinates": [2.2787025332972335, 48.90426493167167]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2634e380cea519a2a129ccf3926dc4e875ac5d16", "fields": {"departement": "92", "stop_lat": 48.91085795377105, "code_postal": "92004", "stop_lon": 2.291265968886608, "coord": [48.91085795377105, 2.291265968886608], "stop_id": 4015819, "stop_desc": "11 RUE PIERRE BROSSOLETTE - 92004", "stop_name": "PLACE DES VICTOIRES-MARCHE"}, "geometry": {"type": "Point", "coordinates": [2.291265968886608, 48.91085795377105]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d0cab4ad72c603da4fd2d3dd98638d62ab2e8ad0", "fields": {"departement": "92", "stop_lat": 48.916323540007774, "code_postal": "92004", "stop_lon": 2.295283679264348, "coord": [48.916323540007774, 2.295283679264348], "stop_id": 4015822, "stop_desc": "PISTE GARE ROUTIERE - 92004", "stop_name": "GABRIEL PERI-METRO"}, "geometry": {"type": "Point", "coordinates": [2.295283679264348, 48.916323540007774]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "771f173042e52b77cdf622d777923d65fc6d41fc", "fields": {"departement": "92", "stop_lat": 48.88679588428236, "code_postal": "92062", "stop_lon": 2.252147587443668, "coord": [48.88679588428236, 2.252147587443668], "stop_id": 4015824, "stop_desc": "PISTE SOUS LE PONT DE NEUILLY - 92062", "stop_name": "RD 7 - PONT DE NEUILLY"}, "geometry": {"type": "Point", "coordinates": [2.252147587443668, 48.88679588428236]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d680b21e2f8c809bd349d3ff0366246ee423c3e0", "fields": {"departement": "92", "stop_lat": 48.85928015068265, "code_postal": "92064", "stop_lon": 2.2239023086636935, "coord": [48.85928015068265, 2.2239023086636935], "stop_id": 4015828, "stop_desc": "78 QUAI QUAI MARCEL DASSAULT - 92064", "stop_name": "RUE DU VAL D'OR"}, "geometry": {"type": "Point", "coordinates": [2.2239023086636935, 48.85928015068265]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d2c363c1d64b07c44dd8c850a276d02f2d6f124a", "fields": {"departement": "92", "stop_lat": 48.91786044348085, "code_postal": "92036", "stop_lon": 2.295650611678765, "coord": [48.91786044348085, 2.295650611678765], "stop_id": 4015882, "stop_desc": "68 AVENUE GABRIEL PERI - 92036", "stop_name": "GABRIEL PERI-HENRI BARBUSSE"}, "geometry": {"type": "Point", "coordinates": [2.295650611678765, 48.91786044348085]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8002ab9df29517d42ef7ad675b6364c5817d2696", "fields": {"departement": "92", "stop_lat": 48.92757507951442, "code_postal": "92036", "stop_lon": 2.294933592022603, "coord": [48.92757507951442, 2.294933592022603], "stop_id": 4015889, "stop_desc": "FACE 60 RUE JEAN JAURES - 92036", "stop_name": "CAMELINAT-JAURES"}, "geometry": {"type": "Point", "coordinates": [2.294933592022603, 48.92757507951442]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bb474512f5552cbfe8a21296f70c3d1faa720c96", "fields": {"departement": "92", "stop_lat": 48.930540750230705, "code_postal": "92036", "stop_lon": 2.294917528939362, "coord": [48.930540750230705, 2.294917528939362], "stop_id": 4015892, "stop_desc": "RUE JEAN JAURES - 92036", "stop_name": "DESLANDES"}, "geometry": {"type": "Point", "coordinates": [2.294917528939362, 48.930540750230705]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1e25547291baa0c81bf6b1cc8dc4d355798c1ea1", "fields": {"departement": "92", "stop_lat": 48.934952220319936, "code_postal": "92036", "stop_lon": 2.291967528749616, "coord": [48.934952220319936, 2.291967528749616], "stop_id": 4015895, "stop_desc": "RUE JEAN PERRIN - 92036", "stop_name": "VILLEBOIS-MAREUIL"}, "geometry": {"type": "Point", "coordinates": [2.291967528749616, 48.934952220319936]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ad0375cc7eedb791ca9711600fd27da4ce7101fa", "fields": {"departement": "92", "stop_lat": 48.93349522229414, "code_postal": "92036", "stop_lon": 2.289090693940877, "coord": [48.93349522229414, 2.289090693940877], "stop_id": 4015897, "stop_desc": "RUE PAUL VERLAINE - 92036", "stop_name": "CITE DU LUTH-VERLAINE"}, "geometry": {"type": "Point", "coordinates": [2.289090693940877, 48.93349522229414]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0826634de155c04ca51ff055ad77736615ea7cf1", "fields": {"departement": "92", "stop_lat": 48.931607590506914, "code_postal": "92036", "stop_lon": 2.288137661423614, "coord": [48.931607590506914, 2.288137661423614], "stop_id": 4015899, "stop_desc": "AVENUE LUCIEN LANTERNIER - 92036", "stop_name": "LE LUTH"}, "geometry": {"type": "Point", "coordinates": [2.288137661423614, 48.931607590506914]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e0be13f93c28a5691d8f252aa1831111fd707257", "fields": {"departement": "92", "stop_lat": 48.931373892357634, "code_postal": "92036", "stop_lon": 2.288042404693419, "coord": [48.931373892357634, 2.288042404693419], "stop_id": 4015900, "stop_desc": "AVENUE LUCIEN LANTERNIER - 92036", "stop_name": "LE LUTH"}, "geometry": {"type": "Point", "coordinates": [2.288042404693419, 48.931373892357634]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6eb28ec2e896f2bc04250b8108867c7edabe0119", "fields": {"departement": "92", "stop_lat": 48.93221123047755, "code_postal": "92025", "stop_lon": 2.2724920204361956, "coord": [48.93221123047755, 2.2724920204361956], "stop_id": 4015909, "stop_desc": "FACE 97 RUE JULES MICHELET - 92025", "stop_name": "LOUISE MICHEL"}, "geometry": {"type": "Point", "coordinates": [2.2724920204361956, 48.93221123047755]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5cf57622518731954f829bc70de4212d54f3a16f", "fields": {"departement": "92", "stop_lat": 48.930101400093776, "code_postal": "92025", "stop_lon": 2.2608329409436734, "coord": [48.930101400093776, 2.2608329409436734], "stop_id": 4015912, "stop_desc": "9 RUE DE SOLFERINO - 92025", "stop_name": "GARE DU STADE"}, "geometry": {"type": "Point", "coordinates": [2.2608329409436734, 48.930101400093776]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9a8aae17f4c9e14de2c0b8500284b7cb6f1a8a68", "fields": {"departement": "92", "stop_lat": 48.90487707648954, "code_postal": "92024", "stop_lon": 2.3049858663019815, "coord": [48.90487707648954, 2.3049858663019815], "stop_id": 4016024, "stop_desc": "13 RUE DU LANDY - 92024", "stop_name": "LANDY - MARTRE"}, "geometry": {"type": "Point", "coordinates": [2.3049858663019815, 48.90487707648954]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1a293edd2f7df8fd9a61c6029c770131331441e6", "fields": {"departement": "92", "stop_lat": 48.90992896434792, "code_postal": "92024", "stop_lon": 2.3096046868542586, "coord": [48.90992896434792, 2.3096046868542586], "stop_id": 4016035, "stop_desc": "19 AVENUE CLAUDE DEBUSSY - 92024", "stop_name": "CLAUDE DEBUSSY"}, "geometry": {"type": "Point", "coordinates": [2.3096046868542586, 48.90992896434792]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e81dcdb7b78b70bdd748d1b7585dcc2a841cde15", "fields": {"departement": "92", "stop_lat": 48.908858980420824, "code_postal": "92024", "stop_lon": 2.307423843582273, "coord": [48.908858980420824, 2.307423843582273], "stop_id": 4016037, "stop_desc": "114 BOULEVARD DU GENERAL LECLERC - 92024", "stop_name": "HOPITAL BEAUJON"}, "geometry": {"type": "Point", "coordinates": [2.307423843582273, 48.908858980420824]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4c05ce864cad0cccaa3ae0e852c108163ac36dbf", "fields": {"departement": "92", "stop_lat": 48.906403689038, "code_postal": "92024", "stop_lon": 2.3008540579028622, "coord": [48.906403689038, 2.3008540579028622], "stop_id": 4016042, "stop_desc": "136 BOULEVARD JEAN JAURES - 92024", "stop_name": "LEON BLUM"}, "geometry": {"type": "Point", "coordinates": [2.3008540579028622, 48.906403689038]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ca9b37060c779cbcaf4b395cdb52178841459649", "fields": {"departement": "92", "stop_lat": 48.91642261600399, "code_postal": "92004", "stop_lon": 2.2959108472158634, "coord": [48.91642261600399, 2.2959108472158634], "stop_id": 4016043, "stop_desc": "PISTE GARE ROUTIERE - 92004", "stop_name": "GABRIEL PERI-METRO"}, "geometry": {"type": "Point", "coordinates": [2.2959108472158634, 48.91642261600399]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3e6773a96582b0d141d6cf413331bdedd34e8e51", "fields": {"departement": "92", "stop_lat": 48.916179398583544, "code_postal": "92004", "stop_lon": 2.2943020208242686, "coord": [48.916179398583544, 2.2943020208242686], "stop_id": 4016044, "stop_desc": "PISTE GARE ROUTIERE - 92004", "stop_name": "GABRIEL PERI-METRO"}, "geometry": {"type": "Point", "coordinates": [2.2943020208242686, 48.916179398583544]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f4ad10a060699526f19aa62d6f0de2612dbaaa08", "fields": {"departement": "92", "stop_lat": 48.92257996406402, "code_postal": "92036", "stop_lon": 2.2997653312978885, "coord": [48.92257996406402, 2.2997653312978885], "stop_id": 4016048, "stop_desc": "49 RUE HENRI BARBUSSE - 92036", "stop_name": "RUE BRENU"}, "geometry": {"type": "Point", "coordinates": [2.2997653312978885, 48.92257996406402]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "17276b780d4a2acab662cc1884454cac650477bd", "fields": {"departement": "92", "stop_lat": 48.93372468001589, "code_postal": "92036", "stop_lon": 2.3029354732296605, "coord": [48.93372468001589, 2.3029354732296605], "stop_id": 4016054, "stop_desc": "AVENUE MARCEL PAUL - 92036", "stop_name": "ROND-POINT PIERRE TIMBAUD"}, "geometry": {"type": "Point", "coordinates": [2.3029354732296605, 48.93372468001589]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "de065cb517879b7dc1d72010bb69f745d89256ff", "fields": {"departement": "92", "stop_lat": 48.94121728986685, "code_postal": "92036", "stop_lon": 2.295386281564461, "coord": [48.94121728986685, 2.295386281564461], "stop_id": 4016059, "stop_desc": "RTE PRINCIPALE DU PORT - 92036", "stop_name": "IFTIM"}, "geometry": {"type": "Point", "coordinates": [2.295386281564461, 48.94121728986685]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3297a25297013c0a7077bd312797bba726a0cd75", "fields": {"departement": "92", "stop_lat": 48.937174269351154, "code_postal": "92036", "stop_lon": 2.2768646698013257, "coord": [48.937174269351154, 2.2768646698013257], "stop_id": 4016066, "stop_desc": "RUE ALFRED SUQUET - 92036", "stop_name": "CENTRE DE VIE"}, "geometry": {"type": "Point", "coordinates": [2.2768646698013257, 48.937174269351154]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d4fbf195115bff47c8b9802e88a053b874a490db", "fields": {"departement": "92", "stop_lat": 48.9372103888177, "code_postal": "92036", "stop_lon": 2.277205660356922, "coord": [48.9372103888177, 2.277205660356922], "stop_id": 4016067, "stop_desc": "RUE ALFRED SUQUET - 92036", "stop_name": "CENTRE DE VIE"}, "geometry": {"type": "Point", "coordinates": [2.277205660356922, 48.9372103888177]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f41b171f7799bf5961d4d32a563c504fbde24021", "fields": {"departement": "92", "stop_lat": 48.936126652714115, "code_postal": "92036", "stop_lon": 2.2674399450981904, "coord": [48.936126652714115, 2.2674399450981904], "stop_id": 4016071, "stop_desc": "62 ROUTE PRINCIPALE DU PORT - 92036", "stop_name": "DIRECTION DU PORT"}, "geometry": {"type": "Point", "coordinates": [2.2674399450981904, 48.936126652714115]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2d2cec9b29805179d0bac69172f7cbbbf50c4e6c", "fields": {"departement": "92", "stop_lat": 48.933949446550976, "code_postal": "92025", "stop_lon": 2.263473509474367, "coord": [48.933949446550976, 2.263473509474367], "stop_id": 4016073, "stop_desc": "179 AVENUE DE STALINGRAD - 92025", "stop_name": "PONT DU CHEMIN DE FER"}, "geometry": {"type": "Point", "coordinates": [2.263473509474367, 48.933949446550976]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6a0f2790c6d8e25a77a023c2c376bd4d548d2578", "fields": {"departement": "95", "stop_lat": 48.94418619308955, "code_postal": "95018", "stop_lon": 2.2511800879323847, "coord": [48.94418619308955, 2.2511800879323847], "stop_id": 4016077, "stop_desc": "32 AVENUE GABRIEL PERI - 95018", "stop_name": "PAUL VAILLANT COUTURIER"}, "geometry": {"type": "Point", "coordinates": [2.2511800879323847, 48.94418619308955]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9e7ab7a2ece07105f7d7865f7416fc908b7ba245", "fields": {"departement": "95", "stop_lat": 48.94606280319967, "code_postal": "95018", "stop_lon": 2.2489530539070373, "coord": [48.94606280319967, 2.2489530539070373], "stop_id": 4016080, "stop_desc": "79 AVENUE GABRIEL PERI - 95018", "stop_name": "HOTEL DE VILLE D'ARGENTEUIL"}, "geometry": {"type": "Point", "coordinates": [2.2489530539070373, 48.94606280319967]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "626c214c0510934f4365accc44874bbf8f95c157", "fields": {"departement": "92", "stop_lat": 48.906892952931145, "code_postal": "92024", "stop_lon": 2.3177590333454012, "coord": [48.906892952931145, 2.3177590333454012], "stop_id": 4016101, "stop_desc": "4 RUE OLOF PALME - 92024", "stop_name": "PARC MOZART"}, "geometry": {"type": "Point", "coordinates": [2.3177590333454012, 48.906892952931145]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b088dd9cb6da6e10cbb72c784807893f0ca3f609", "fields": {"departement": "92", "stop_lat": 48.90822868437015, "code_postal": "92024", "stop_lon": 2.302952361523236, "coord": [48.90822868437015, 2.302952361523236], "stop_id": 4016107, "stop_desc": "RUE LEON BLUM - 92024", "stop_name": "QUARTIER NORD"}, "geometry": {"type": "Point", "coordinates": [2.302952361523236, 48.90822868437015]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bad513b0bb33220ba45851fbde04fd02f5bb645c", "fields": {"departement": "92", "stop_lat": 48.9030350855107, "code_postal": "92024", "stop_lon": 2.3063502440896, "coord": [48.9030350855107, 2.3063502440896], "stop_id": 4016113, "stop_desc": "90 RUE MARTRE - 92024", "stop_name": "RUE MARTRE - MAIRIE DE CLICHY."}, "geometry": {"type": "Point", "coordinates": [2.3063502440896, 48.9030350855107]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ebc91d4f20e0d66039948e7374660a7416d5abf5", "fields": {"departement": "92", "stop_lat": 48.899149773260554, "code_postal": "92024", "stop_lon": 2.2967288737434712, "coord": [48.899149773260554, 2.2967288737434712], "stop_id": 4016124, "stop_desc": "5 R DE NEUILLY - 92024", "stop_name": "RUE DE NEUILLY"}, "geometry": {"type": "Point", "coordinates": [2.2967288737434712, 48.899149773260554]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fdcbae15df025e95a10ce7755b2cdf259ee258b5", "fields": {"departement": "75", "stop_lat": 48.8571764094318, "code_postal": "75104", "stop_lon": 2.35008495875021, "coord": [48.8571764094318, 2.35008495875021], "stop_id": 4016265, "stop_desc": "6 AVENUE VICTORIA - 75104", "stop_name": "HOTEL DE VILLE"}, "geometry": {"type": "Point", "coordinates": [2.35008495875021, 48.8571764094318]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8adaf215aebc3cb60c00e37819eb03a4019ccbd6", "fields": {"departement": "75", "stop_lat": 48.85902811573952, "code_postal": "75101", "stop_lon": 2.3469390263467473, "coord": [48.85902811573952, 2.3469390263467473], "stop_id": 4016267, "stop_desc": "108 RUE DE RIVOLI - 75101", "stop_name": "CHATELET"}, "geometry": {"type": "Point", "coordinates": [2.3469390263467473, 48.85902811573952]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "37f059f2ed35a9646bbbdb42df026ef61b142b45", "fields": {"departement": "75", "stop_lat": 48.86042151469406, "code_postal": "75101", "stop_lon": 2.340469262084462, "coord": [48.86042151469406, 2.340469262084462], "stop_id": 4016270, "stop_desc": "FACE 6 AVENUE DE L'AMIRAL COLIGNY - 75101", "stop_name": "LOUVRE - RIVOLI"}, "geometry": {"type": "Point", "coordinates": [2.340469262084462, 48.86042151469406]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "db2d561bbfe9fb7e31e43ffb3b79f8543db826d1", "fields": {"departement": "75", "stop_lat": 48.874244007171676, "code_postal": "75109", "stop_lon": 2.3421868361926466, "coord": [48.874244007171676, 2.3421868361926466], "stop_id": 4016277, "stop_desc": "32 RUE DU FAUBOURG MONTMARTRE - 75109", "stop_name": "PROVENCE - FAUBOURG MONTMARTRE"}, "geometry": {"type": "Point", "coordinates": [2.3421868361926466, 48.874244007171676]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "228a424590c1f59bac22eb8d71c398de134c7b70", "fields": {"departement": "75", "stop_lat": 48.88941360841949, "code_postal": "75117", "stop_lon": 2.322004140832718, "coord": [48.88941360841949, 2.322004140832718], "stop_id": 4016290, "stop_desc": "103 AVENUE DE CLICHY - 75117", "stop_name": "LEGENDRE"}, "geometry": {"type": "Point", "coordinates": [2.322004140832718, 48.88941360841949]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "67a1523049ca1abe53d460cab0fe56b0aaadba2e", "fields": {"departement": "92", "stop_lat": 48.90586686297892, "code_postal": "92024", "stop_lon": 2.3098113503006648, "coord": [48.90586686297892, 2.3098113503006648], "stop_id": 4016306, "stop_desc": "80 BOULEVARD DU GENERAL LECLERC - 92024", "stop_name": "GENERAL LECLERC - VILLENEUVE-HOPITAL BEAUJON"}, "geometry": {"type": "Point", "coordinates": [2.3098113503006648, 48.90586686297892]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f58a8cc6c5a65a2b07b1f8d52607e5d8913b01d6", "fields": {"departement": "75", "stop_lat": 48.883177013837376, "code_postal": "75109", "stop_lon": 2.3269798610834647, "coord": [48.883177013837376, 2.3269798610834647], "stop_id": 4016314, "stop_desc": "6 PLACE DE CLICHY - 75109", "stop_name": "PLACE DE CLICHY"}, "geometry": {"type": "Point", "coordinates": [2.3269798610834647, 48.883177013837376]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d5d0c7279c24107b7c2f158694817441f9d115ff", "fields": {"departement": "75", "stop_lat": 48.8817932857903, "code_postal": "75109", "stop_lon": 2.3315723399178645, "coord": [48.8817932857903, 2.3315723399178645], "stop_id": 4016315, "stop_desc": "61-63 RUE BLANCHE - 75109", "stop_name": "BLANCHE CALAIS"}, "geometry": {"type": "Point", "coordinates": [2.3315723399178645, 48.8817932857903]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "55fbca15fa0d8ce65a4c950e62228ba770fae33e", "fields": {"departement": "75", "stop_lat": 48.8645556407801, "code_postal": "75101", "stop_lon": 2.3425264691880536, "coord": [48.8645556407801, 2.3425264691880536], "stop_id": 4016322, "stop_desc": "19 RUE DU LOUVRE - 75101", "stop_name": "LOUVRE - ETIENNE MARCEL"}, "geometry": {"type": "Point", "coordinates": [2.3425264691880536, 48.8645556407801]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "723e08d585f8d2d2b0cdab7aa461bbf88ccedc0c", "fields": {"departement": "75", "stop_lat": 48.862578527141316, "code_postal": "75101", "stop_lon": 2.336028731198637, "coord": [48.862578527141316, 2.336028731198637], "stop_id": 4016330, "stop_desc": "172 RUE DE RIVOLI - 75101", "stop_name": "PALAIS ROYAL - MUSEE DU LOUVRE"}, "geometry": {"type": "Point", "coordinates": [2.336028731198637, 48.862578527141316]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4d785218310a3e05949b405fb3881ef56e4d28ef", "fields": {"departement": "75", "stop_lat": 48.8697773289464, "code_postal": "75102", "stop_lon": 2.3328270241440445, "coord": [48.8697773289464, 2.3328270241440445], "stop_id": 4016334, "stop_desc": "38 AVENUE DE L'OPERA - 75102", "stop_name": "OPERA - 4 SEPTEMBRE"}, "geometry": {"type": "Point", "coordinates": [2.3328270241440445, 48.8697773289464]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "afb69211eba598cdbb5dd4f1809eced41dd90964", "fields": {"departement": "75", "stop_lat": 48.873821559303245, "code_postal": "75109", "stop_lon": 2.3313415947939387, "coord": [48.873821559303245, 2.3313415947939387], "stop_id": 4016338, "stop_desc": "14 R DE MOGADOR - 75109", "stop_name": "HAUSSMANN - MOGADOR"}, "geometry": {"type": "Point", "coordinates": [2.3313415947939387, 48.873821559303245]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4581b216e26f4209fe4682af27025f074dbcb0b3", "fields": {"departement": "75", "stop_lat": 48.880319226531334, "code_postal": "75109", "stop_lon": 2.3290107509694993, "coord": [48.880319226531334, 2.3290107509694993], "stop_id": 4016340, "stop_desc": "48 RUE DE CLICHY - 75109", "stop_name": "LIEGE"}, "geometry": {"type": "Point", "coordinates": [2.3290107509694993, 48.880319226531334]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0576a71fecad20aff572c0dca32cb8951124f46f", "fields": {"departement": "75", "stop_lat": 48.88972864695809, "code_postal": "75118", "stop_lon": 2.326460667800056, "coord": [48.88972864695809, 2.326460667800056], "stop_id": 4016344, "stop_desc": "46 AVENUE DE SAINT OUEN - 75118", "stop_name": "DAVY"}, "geometry": {"type": "Point", "coordinates": [2.326460667800056, 48.88972864695809]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4ecdb459d8ad10ffdcd184f9aa275c9a0ce4f6c6", "fields": {"departement": "75", "stop_lat": 48.89235295629824, "code_postal": "75117", "stop_lon": 2.3270598191345924, "coord": [48.89235295629824, 2.3270598191345924], "stop_id": 4016352, "stop_desc": "79 AVENUE DE SAINT OUEN - 75117", "stop_name": "GUY MOQUET"}, "geometry": {"type": "Point", "coordinates": [2.3270598191345924, 48.89235295629824]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e8e00b34f72d102134b9b89e104e533676b04576", "fields": {"departement": "75", "stop_lat": 48.89016001956596, "code_postal": "75117", "stop_lon": 2.3263242887753552, "coord": [48.89016001956596, 2.3263242887753552], "stop_id": 4016353, "stop_desc": "41 BIS AVENUE DE SAINT OUEN - 75117", "stop_name": "DAVY"}, "geometry": {"type": "Point", "coordinates": [2.3263242887753552, 48.89016001956596]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "13fb9c21742b727d1ef3b1efe39f0cb00c169a8c", "fields": {"departement": "75", "stop_lat": 48.87445933562997, "code_postal": "75108", "stop_lon": 2.3266818431115697, "coord": [48.87445933562997, 2.3266818431115697], "stop_id": 4016359, "stop_desc": "9 RUE DU HAVRE - 75108", "stop_name": "GARE SAINT-LAZARE"}, "geometry": {"type": "Point", "coordinates": [2.3266818431115697, 48.87445933562997]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5d922d18ecd77afbc17f5576fdbb3c7b05194e81", "fields": {"departement": "75", "stop_lat": 48.872033003523995, "code_postal": "75109", "stop_lon": 2.3298976383299848, "coord": [48.872033003523995, 2.3298976383299848], "stop_id": 4016361, "stop_desc": "FACE 8 RUE AUBER - 75109", "stop_name": "AUBER"}, "geometry": {"type": "Point", "coordinates": [2.3298976383299848, 48.872033003523995]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "272b2350bd5d5d1041c863da57a30315be3891c1", "fields": {"departement": "75", "stop_lat": 48.8586509790969, "code_postal": "75101", "stop_lon": 2.341000357215369, "coord": [48.8586509790969, 2.341000357215369], "stop_id": 4016364, "stop_desc": "FACE 14 QUAI DU LOUVRE - 75101", "stop_name": "PONT NEUF - QUAI DU LOUVRE"}, "geometry": {"type": "Point", "coordinates": [2.341000357215369, 48.8586509790969]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3226817db4d0339fe4d86963d91858315057c7bf", "fields": {"departement": "75", "stop_lat": 48.89861724350297, "code_postal": "75118", "stop_lon": 2.3439884675294684, "coord": [48.89861724350297, 2.3439884675294684], "stop_id": 4016536, "stop_desc": "13 AVENUE DE LA PORTE DE CLIGNANCOURT - 75118", "stop_name": "PORTE DE CLIGNANCOURT"}, "geometry": {"type": "Point", "coordinates": [2.3439884675294684, 48.89861724350297]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e4d8bcaa70005c2827fed3fe7c4c07f1fadd92cd", "fields": {"departement": "93", "stop_lat": 48.90900642715508, "code_postal": "93070", "stop_lon": 2.3329600113604876, "coord": [48.90900642715508, 2.3329600113604876], "stop_id": 4016548, "stop_desc": "37 BIS AVENUE GABRIEL PERI - 93070", "stop_name": "ERNEST RENAN"}, "geometry": {"type": "Point", "coordinates": [2.3329600113604876, 48.90900642715508]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c568b518be9af9498fb4dd0a2be164653798fbe7", "fields": {"departement": "93", "stop_lat": 48.917813643280915, "code_postal": "93070", "stop_lon": 2.3315820256086908, "coord": [48.917813643280915, 2.3315820256086908], "stop_id": 4016554, "stop_desc": "FACE 2 R DU LANDY - 93070", "stop_name": "QUAI DE SEINE"}, "geometry": {"type": "Point", "coordinates": [2.3315820256086908, 48.917813643280915]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5fe5ad4aad8dd20309f5911dde8b54275070a593", "fields": {"departement": "92", "stop_lat": 48.92305216002952, "code_postal": "92036", "stop_lon": 2.32168057286034, "coord": [48.92305216002952, 2.32168057286034], "stop_id": 4016561, "stop_desc": "41-43 AVENUE LOUIS ROCHE - 92036", "stop_name": "QUATRE CHEMINS"}, "geometry": {"type": "Point", "coordinates": [2.32168057286034, 48.92305216002952]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c2d8c47e8d4c6eaba5dd8f16ec8acb549eda48a6", "fields": {"departement": "92", "stop_lat": 48.92712404129996, "code_postal": "92078", "stop_lon": 2.330121670796473, "coord": [48.92712404129996, 2.330121670796473], "stop_id": 4016563, "stop_desc": "94 BOULEVARD GALLIENI - 92078", "stop_name": "LYCEE PETIET - C.COMMERCIAL"}, "geometry": {"type": "Point", "coordinates": [2.330121670796473, 48.92712404129996]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2023ab94b6233184e4bd9562bb00980080643aed", "fields": {"departement": "92", "stop_lat": 48.92731276315047, "code_postal": "92078", "stop_lon": 2.330067090021507, "coord": [48.92731276315047, 2.330067090021507], "stop_id": 4016564, "stop_desc": "FACE 92 BOULEVARD GALLIENI - 92078", "stop_name": "LYCEE PETIET - C.COMMERCIAL"}, "geometry": {"type": "Point", "coordinates": [2.330067090021507, 48.92731276315047]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e291a7a0568e210e70e560774b99ada093a20579", "fields": {"departement": "92", "stop_lat": 48.92999994296058, "code_postal": "92078", "stop_lon": 2.3319080366529725, "coord": [48.92999994296058, 2.3319080366529725], "stop_id": 4016566, "stop_desc": "FACE 144 BD GALLIENI - 92078", "stop_name": "MAURICE RAVEL"}, "geometry": {"type": "Point", "coordinates": [2.3319080366529725, 48.92999994296058]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a7bdd802a11ac3d9b92c8aa924709b646a388356", "fields": {"departement": "92", "stop_lat": 48.93604816711782, "code_postal": "92078", "stop_lon": 2.333557972884256, "coord": [48.93604816711782, 2.333557972884256], "stop_id": 4016572, "stop_desc": "RUE BRANDIN - 92078", "stop_name": "MAIRIE DE VILLENEUVE-LA-GARENNE"}, "geometry": {"type": "Point", "coordinates": [2.333557972884256, 48.93604816711782]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9b3a53c551a63955d41b949e27d789bc104772a3", "fields": {"departement": "92", "stop_lat": 48.93818700077907, "code_postal": "92078", "stop_lon": 2.3326029109697046, "coord": [48.93818700077907, 2.3326029109697046], "stop_id": 4016574, "stop_desc": "26 R DE LA FOSSE AUX ASTRES - 92078", "stop_name": "MATHILDE MILLIARD"}, "geometry": {"type": "Point", "coordinates": [2.3326029109697046, 48.93818700077907]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a2dc847335f66a323412d73207a12f3e4b3b3a92", "fields": {"departement": "92", "stop_lat": 48.94131347403946, "code_postal": "92078", "stop_lon": 2.3215795834880133, "coord": [48.94131347403946, 2.3215795834880133], "stop_id": 4016582, "stop_desc": "BD CHARLES DE GAULLE - 92078", "stop_name": "PARC DEPARTEMENTAL"}, "geometry": {"type": "Point", "coordinates": [2.3215795834880133, 48.94131347403946]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bf446fa874047b5d270c75e7e2662eb0098894e6", "fields": {"departement": "92", "stop_lat": 48.94293955264489, "code_postal": "92078", "stop_lon": 2.3179501029113507, "coord": [48.94293955264489, 2.3179501029113507], "stop_id": 4016583, "stop_desc": "270 BOULEVARD CHARLES DE GAULLE - 92078", "stop_name": "ZONE INDUSTRIELLE NORD"}, "geometry": {"type": "Point", "coordinates": [2.3179501029113507, 48.94293955264489]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a03d37750fa7dc1dcf2c1e4412df86ae635c1bbe", "fields": {"departement": "92", "stop_lat": 48.94275078777386, "code_postal": "92078", "stop_lon": 2.31769096078661, "coord": [48.94275078777386, 2.31769096078661], "stop_id": 4016584, "stop_desc": "FACE 270 BOULEVARD CHARLES DE GAULLE - 92078", "stop_name": "ZONE INDUSTRIELLE NORD"}, "geometry": {"type": "Point", "coordinates": [2.31769096078661, 48.94275078777386]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a2bd336c932052b7680efeda7294313ec738e993", "fields": {"departement": "93", "stop_lat": 48.90277790971783, "code_postal": "93070", "stop_lon": 2.348760291774872, "coord": [48.90277790971783, 2.348760291774872], "stop_id": 4016589, "stop_desc": "FACE 2 RUE DEBAIN - 93070", "stop_name": "PLACE DEBAIN"}, "geometry": {"type": "Point", "coordinates": [2.348760291774872, 48.90277790971783]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fd96f47c16a0f63ff537774c2d559b34bc90c1d8", "fields": {"departement": "93", "stop_lat": 48.9049980408259, "code_postal": "93070", "stop_lon": 2.344725469329607, "coord": [48.9049980408259, 2.344725469329607], "stop_id": 4016591, "stop_desc": "131 R DOCTEUR BAUER - 93070", "stop_name": "MICHELET - DOCTEUR BAUER"}, "geometry": {"type": "Point", "coordinates": [2.344725469329607, 48.9049980408259]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "37a463fb3990ff801ed4b7cfd4fea8d34ea20a34", "fields": {"departement": "93", "stop_lat": 48.904935139753796, "code_postal": "93070", "stop_lon": 2.3445891321991073, "coord": [48.904935139753796, 2.3445891321991073], "stop_id": 4016592, "stop_desc": "114 RUE DU DOCTEUR BAUER - 93070", "stop_name": "MICHELET - DOCTEUR BAUER"}, "geometry": {"type": "Point", "coordinates": [2.3445891321991073, 48.904935139753796]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ee6c8beeb004fb73ee313ff6d6685bd409f9c8a1", "fields": {"departement": "93", "stop_lat": 48.91061518471336, "code_postal": "93070", "stop_lon": 2.3373637571150616, "coord": [48.91061518471336, 2.3373637571150616], "stop_id": 4016596, "stop_desc": "36 RUE DU DOCTEUR BAUER - 93070", "stop_name": "RUE DE L'UNION"}, "geometry": {"type": "Point", "coordinates": [2.3373637571150616, 48.91061518471336]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "836badd6743b0bfbafd1c97c5caae12c13579bcd", "fields": {"departement": "93", "stop_lat": 48.91717569092136, "code_postal": "93070", "stop_lon": 2.335604723520871, "coord": [48.91717569092136, 2.335604723520871], "stop_id": 4016603, "stop_desc": "14-16 RUE SALVADOR ALLENDE - 93070", "stop_name": "STADE PABLO NERUDA"}, "geometry": {"type": "Point", "coordinates": [2.335604723520871, 48.91717569092136]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "77d018dd5a530d33d2140d251dbf84afeddac636", "fields": {"departement": "93", "stop_lat": 48.912924832740316, "code_postal": "93070", "stop_lon": 2.335195811580406, "coord": [48.912924832740316, 2.335195811580406], "stop_id": 4016608, "stop_desc": "29 BOULEVARD JEAN JAURES - 93070", "stop_name": "JAURES - DHALENNE."}, "geometry": {"type": "Point", "coordinates": [2.335195811580406, 48.912924832740316]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "45dda80046ab02c6673441c4d8f8d948569b0dbc", "fields": {"departement": "75", "stop_lat": 48.898687618930516, "code_postal": "75118", "stop_lon": 2.357456065288737, "coord": [48.898687618930516, 2.357456065288737], "stop_id": 4016687, "stop_desc": "60 BOULEVARD NEY - 75118", "stop_name": "PORTE DE LA CHAPELLE"}, "geometry": {"type": "Point", "coordinates": [2.357456065288737, 48.898687618930516]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ab471f5e0c8f13adf9c9e0db6eb4d88edf8567f0", "fields": {"departement": "75", "stop_lat": 48.89850873220388, "code_postal": "75118", "stop_lon": 2.351540091366487, "coord": [48.89850873220388, 2.351540091366487], "stop_id": 4016689, "stop_desc": "84 BOULEVARD NEY - 75118", "stop_name": "PORTE DES POISSONNIERS"}, "geometry": {"type": "Point", "coordinates": [2.351540091366487, 48.89850873220388]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "66881540cf0980773f731e69e104815a6eff4fbd", "fields": {"departement": "93", "stop_lat": 48.908727886749155, "code_postal": "93070", "stop_lon": 2.3393951898889647, "coord": [48.908727886749155, 2.3393951898889647], "stop_id": 4016698, "stop_desc": "60-62 RUE DU DOCTEUR BAUER - 93070", "stop_name": "GODILLOT"}, "geometry": {"type": "Point", "coordinates": [2.3393951898889647, 48.908727886749155]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "29574518e0a4034da4e13fdb85d3b1899c7d6926", "fields": {"departement": "93", "stop_lat": 48.91061518471336, "code_postal": "93070", "stop_lon": 2.3373637571150616, "coord": [48.91061518471336, 2.3373637571150616], "stop_id": 4016700, "stop_desc": "36 RUE DU DOCTEUR BAUER - 93070", "stop_name": "RUE DE L'UNION"}, "geometry": {"type": "Point", "coordinates": [2.3373637571150616, 48.91061518471336]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8b82d0cbbaf7d9098bd8beb2ab8e5fbf464877c6", "fields": {"departement": "93", "stop_lat": 48.91492881365628, "code_postal": "93070", "stop_lon": 2.331473257971161, "coord": [48.91492881365628, 2.331473257971161], "stop_id": 4016704, "stop_desc": "FACE 49-51 RUE ALBERT DHALENNE - 93070", "stop_name": "SOUBISE"}, "geometry": {"type": "Point", "coordinates": [2.331473257971161, 48.91492881365628]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e56792d941611c5ec8a0060fa287030da8df1fe2", "fields": {"departement": "92", "stop_lat": 48.940239938344135, "code_postal": "92036", "stop_lon": 2.3022490497004666, "coord": [48.940239938344135, 2.3022490497004666], "stop_id": 4016730, "stop_desc": "AVENUE MARCEL PAUL - 92036", "stop_name": "ROUTE DU PORT"}, "geometry": {"type": "Point", "coordinates": [2.3022490497004666, 48.940239938344135]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "969d9932479e80a0e76e31fd58f464ef42699008", "fields": {"departement": "92", "stop_lat": 48.886657892619546, "code_postal": "92062", "stop_lon": 2.2478004797854343, "coord": [48.886657892619546, 2.2478004797854343], "stop_id": 4016740, "stop_desc": "RUE DE LA REPUBLIQUE - 92062", "stop_name": "BELLINI"}, "geometry": {"type": "Point", "coordinates": [2.2478004797854343, 48.886657892619546]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9ccef7d875ce009f25a91ecea5c7cde4d1734d60", "fields": {"departement": "93", "stop_lat": 48.956171868287754, "code_postal": "93005", "stop_lon": 2.4661713426756893, "coord": [48.956171868287754, 2.4661713426756893], "stop_id": 3666696, "stop_desc": "0 NR - 93005", "stop_name": "GARONOR"}, "geometry": {"type": "Point", "coordinates": [2.4661713426756893, 48.956171868287754]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d2e8119497bea2ddf0b8bb812e22c440629bbe1c", "fields": {"departement": "93", "stop_lat": 48.98943251427254, "code_postal": "93073", "stop_lon": 2.5259953160271786, "coord": [48.98943251427254, 2.5259953160271786], "stop_id": 3666601, "stop_desc": "FACE 15 RUE DE LA BELLE BORNE - 93073", "stop_name": "AEROVILLE - RUE DE LA BELLE BORNE"}, "geometry": {"type": "Point", "coordinates": [2.5259953160271786, 48.98943251427254]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "18821487471c0c559cb156a8bf381f3daeca8463", "fields": {"departement": "93", "stop_lat": 48.94345914313876, "code_postal": "93013", "stop_lon": 2.4339150066913304, "coord": [48.94345914313876, 2.4339150066913304], "stop_id": 3666628, "stop_desc": "AVENUE ALAIN BOZEL - 93013", "stop_name": "MICHELET-PARC DES EXPOSITIONS"}, "geometry": {"type": "Point", "coordinates": [2.4339150066913304, 48.94345914313876]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "517fe66cdc6d47cd51f2998e4e845535d2acafbb", "fields": {"departement": "93", "stop_lat": 48.974084551847795, "code_postal": "93078", "stop_lon": 2.5135714681334047, "coord": [48.974084551847795, 2.5135714681334047], "stop_id": 3666594, "stop_desc": "93 AVENUE DES NATIONS - 93078", "stop_name": "PARC DES EXPOSITIONS RER"}, "geometry": {"type": "Point", "coordinates": [2.5135714681334047, 48.974084551847795]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3ac1337051ddfb24a70113c792f3ffc88708285e", "fields": {"departement": "75", "stop_lat": 48.87781949763114, "code_postal": "75110", "stop_lon": 2.3564941357294393, "coord": [48.87781949763114, 2.3564941357294393], "stop_id": 3666622, "stop_desc": "140-142 RUE DU FAUBOURG SAINT-DENIS - 75110", "stop_name": "VALENCIENNES"}, "geometry": {"type": "Point", "coordinates": [2.3564941357294393, 48.87781949763114]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5fd2d47a6e4f6243c0f40d6f55724c3e2ca86047", "fields": {"departement": "93", "stop_lat": 48.979667196927075, "code_postal": "93073", "stop_lon": 2.518246007713892, "coord": [48.979667196927075, 2.518246007713892], "stop_id": 3666596, "stop_desc": "227 AVENUE DES NATIONS - 93073", "stop_name": "227, AVENUE DES NATIONS"}, "geometry": {"type": "Point", "coordinates": [2.518246007713892, 48.979667196927075]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a3ff720ae1e3cc0f528a51bd29748655a9c9501d", "fields": {"departement": "93", "stop_lat": 48.950665169998864, "code_postal": "93007", "stop_lon": 2.4641518334444137, "coord": [48.950665169998864, 2.4641518334444137], "stop_id": 3666578, "stop_desc": "5 AVENUE E.RENAULT - 93007", "stop_name": "DESCARTES - RENAULT"}, "geometry": {"type": "Point", "coordinates": [2.4641518334444137, 48.950665169998864]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a3fd30dc59fe124fee00f22f7b0db5ab294328e9", "fields": {"departement": "93", "stop_lat": 49.002527672002785, "code_postal": "93073", "stop_lon": 2.5358772849144318, "coord": [49.002527672002785, 2.5358772849144318], "stop_id": 3666608, "stop_desc": "RUE DES TERRES NOIRES - 93073", "stop_name": "RUE DU CHAPITRE"}, "geometry": {"type": "Point", "coordinates": [2.5358772849144318, 49.002527672002785]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3b07d4a67e98c98eedc8c31e2724ca7df5fce77b", "fields": {"departement": "93", "stop_lat": 48.95016764576287, "code_postal": "93030", "stop_lon": 2.439453648187777, "coord": [48.95016764576287, 2.439453648187777], "stop_id": 3666616, "stop_desc": "FACE 180 AV DU 8 MAI 1945 - 93030", "stop_name": "LENINE"}, "geometry": {"type": "Point", "coordinates": [2.439453648187777, 48.95016764576287]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "707a22e69dab6f92743bbcaa29c4003f62ba19cc", "fields": {"departement": "95", "stop_lat": 49.001498124289455, "code_postal": "95527", "stop_lon": 2.5279788312447846, "coord": [49.001498124289455, 2.5279788312447846], "stop_id": 3666607, "stop_desc": "RUE DES 2 CEDRES - 95527", "stop_name": "LES 2 CEDRES"}, "geometry": {"type": "Point", "coordinates": [2.5279788312447846, 49.001498124289455]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "50ca04d85fc0a8c57e41c7eff8128eaec6566da4", "fields": {"departement": "93", "stop_lat": 48.956171868287754, "code_postal": "93005", "stop_lon": 2.4661713426756893, "coord": [48.956171868287754, 2.4661713426756893], "stop_id": 3666585, "stop_desc": "0 NR - 93005", "stop_name": "GARONOR"}, "geometry": {"type": "Point", "coordinates": [2.4661713426756893, 48.956171868287754]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6bbd0e9571c2f6d47b032c99a8805cff90dbd84f", "fields": {"departement": "95", "stop_lat": 48.991963492498634, "code_postal": "95527", "stop_lon": 2.5164045376508506, "coord": [48.991963492498634, 2.5164045376508506], "stop_id": 3666660, "stop_desc": "AVENUE DU BOIS DE LA PIE - 95527", "stop_name": "351, AVENUE DU BOIS DE LA PIE"}, "geometry": {"type": "Point", "coordinates": [2.5164045376508506, 48.991963492498634]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e1eea5ea8e21266216cbf0162a867ee49d759840", "fields": {"departement": "93", "stop_lat": 49.01051954688492, "code_postal": "93073", "stop_lon": 2.559663932280221, "coord": [49.01051954688492, 2.559663932280221], "stop_id": 3666656, "stop_desc": "AEROPORT CHARLES DE GAULLE (T3) - 93073", "stop_name": "ROISSYPOLE - GARE - RER"}, "geometry": {"type": "Point", "coordinates": [2.559663932280221, 49.01051954688492]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ff3f8fe7f5de96e0c1d63901ca2deeb746c6018a", "fields": {"departement": "75", "stop_lat": 48.89769876400372, "code_postal": "75118", "stop_lon": 2.3589959717945, "coord": [48.89769876400372, 2.3589959717945], "stop_id": 3666679, "stop_desc": "85-87 RUE DE LA CHAPELLE - 75118", "stop_name": "PORTE DE LA CHAPELLE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.3589959717945, 48.89769876400372]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "de0a21af4311c213eec882aca519d342cba9bc51", "fields": {"departement": "93", "stop_lat": 48.95742446586799, "code_postal": "93005", "stop_lon": 2.462940206766457, "coord": [48.95742446586799, 2.462940206766457], "stop_id": 3666643, "stop_desc": "VOIE LONGEANT L'AUTOROUTE A1 - 93005", "stop_name": "GARONOR-PORTE SUD"}, "geometry": {"type": "Point", "coordinates": [2.462940206766457, 48.95742446586799]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "edcfea67fdfc68213b840fe400c67f080f483066", "fields": {"departement": "93", "stop_lat": 48.979667196927075, "code_postal": "93073", "stop_lon": 2.518246007713892, "coord": [48.979667196927075, 2.518246007713892], "stop_id": 3666663, "stop_desc": "227 AVENUE DES NATIONS - 93073", "stop_name": "227, AVENUE DES NATIONS"}, "geometry": {"type": "Point", "coordinates": [2.518246007713892, 48.979667196927075]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1857cf9290bb3f1fd59c1175bd0a938798d08720", "fields": {"departement": "93", "stop_lat": 48.99401510089086, "code_postal": "93073", "stop_lon": 2.52631247799206, "coord": [48.99401510089086, 2.52631247799206], "stop_id": 3666647, "stop_desc": "RUE DE LA JEUNE FILLE - 93073", "stop_name": "RUE DE LA JEUNE FILLE"}, "geometry": {"type": "Point", "coordinates": [2.52631247799206, 48.99401510089086]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4afeefc89e54b9894ab0ce8cb4b319c2f2111bcf", "fields": {"departement": "77", "stop_lat": 49.015367784893186, "code_postal": "77282", "stop_lon": 2.541992530464244, "coord": [49.015367784893186, 2.541992530464244], "stop_id": 3666659, "stop_desc": "AEROPORT CHARLES DE GAULLE - 77282", "stop_name": "TERMINAL 1"}, "geometry": {"type": "Point", "coordinates": [2.541992530464244, 49.015367784893186]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aa95cff657a450ff0064f8108c441b98cd58cca2", "fields": {"departement": "93", "stop_lat": 48.99438721579055, "code_postal": "93073", "stop_lon": 2.523978589947988, "coord": [48.99438721579055, 2.523978589947988], "stop_id": 3666648, "stop_desc": "RUE DES BUISSONS - 93073", "stop_name": "MARGUILLIERS."}, "geometry": {"type": "Point", "coordinates": [2.523978589947988, 48.99438721579055]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "219ffcde096c06e2902747e83eaab5a73e309d02", "fields": {"departement": "93", "stop_lat": 48.99460337939841, "code_postal": "93073", "stop_lon": 2.523665271336363, "coord": [48.99460337939841, 2.523665271336363], "stop_id": 3666644, "stop_desc": "RUE DES BUISSONS - 93073", "stop_name": "MARGUILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.523665271336363, 48.99460337939841]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ccda0cd096bc5a3547b443970a4b46720a9aebac", "fields": {"departement": "95", "stop_lat": 49.001498124289455, "code_postal": "95527", "stop_lon": 2.5279788312447846, "coord": [49.001498124289455, 2.5279788312447846], "stop_id": 3666650, "stop_desc": "RUE DES 2 CEDRES - 95527", "stop_name": "LES 2 CEDRES"}, "geometry": {"type": "Point", "coordinates": [2.5279788312447846, 49.001498124289455]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3dce355c96b5edb3e5bdfc7d5ee69b1efe79dad5", "fields": {"departement": "93", "stop_lat": 48.96468201571863, "code_postal": "93005", "stop_lon": 2.496178445204811, "coord": [48.96468201571863, 2.496178445204811], "stop_id": 3666788, "stop_desc": "BOULEVARD ANDRE CITROEN (ROND-POINT DE LA PORTE 3) - 93005", "stop_name": "ANDRE CITROEN - CENTRE DE PRODUCTION"}, "geometry": {"type": "Point", "coordinates": [2.496178445204811, 48.96468201571863]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "67983e89c3927088e34d87a16a82c1dcddbd0576", "fields": {"departement": "93", "stop_lat": 48.96037732477729, "code_postal": "93005", "stop_lon": 2.489341508897291, "coord": [48.96037732477729, 2.489341508897291], "stop_id": 3666787, "stop_desc": "BOULEVARD ANDRE CITROEN (RD POINT DE LA PORTE 1) - 93005", "stop_name": "ANDRE CITROEN - VISITEURS"}, "geometry": {"type": "Point", "coordinates": [2.489341508897291, 48.96037732477729]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4d81917c8303a813b92fa3eb376b2cd7c2c0aeed", "fields": {"departement": "95", "stop_lat": 48.989015745880955, "code_postal": "95527", "stop_lon": 2.5165308783227034, "coord": [48.989015745880955, 2.5165308783227034], "stop_id": 3666793, "stop_desc": "AVENUE DU BOIS DE LA PIE - 95527", "stop_name": "PARC DES NATIONS"}, "geometry": {"type": "Point", "coordinates": [2.5165308783227034, 48.989015745880955]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "23b0479d9becf13a2785066910443f0db20dff8f", "fields": {"departement": "75", "stop_lat": 48.853990890306505, "code_postal": "75120", "stop_lon": 2.410676960542002, "coord": [48.853990890306505, 2.410676960542002], "stop_id": 3672109, "stop_desc": "76 BOULEVARD DAVOUT - 75120", "stop_name": "PORTE DE MONTREUIL"}, "geometry": {"type": "Point", "coordinates": [2.410676960542002, 48.853990890306505]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "15641a0b294f08373d017506cb8b289a50c0b897", "fields": {"departement": "75", "stop_lat": 48.84700789118935, "code_postal": "75120", "stop_lon": 2.4102313138152516, "coord": [48.84700789118935, 2.4102313138152516], "stop_id": 3672107, "stop_desc": "116 CRS DE VINCENNES - 75120", "stop_name": "PORTE DE VINCENNES"}, "geometry": {"type": "Point", "coordinates": [2.4102313138152516, 48.84700789118935]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a594f22bba7ae5482e1e4cabe65b79150f57913a", "fields": {"departement": "93", "stop_lat": 48.9727044267932, "code_postal": "93078", "stop_lon": 2.5109731333013463, "coord": [48.9727044267932, 2.5109731333013463], "stop_id": 3666789, "stop_desc": "22 AVENUE DES NATIONS - 93078", "stop_name": "NATIONS"}, "geometry": {"type": "Point", "coordinates": [2.5109731333013463, 48.9727044267932]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9b34b75acdf2a4ae4cdf419facf1fdaae6a42d77", "fields": {"departement": "93", "stop_lat": 48.91240595297027, "code_postal": "93010", "stop_lon": 2.481728807753058, "coord": [48.91240595297027, 2.481728807753058], "stop_id": 3672121, "stop_desc": "AVENUE HENRI VARAGNAT - 93010", "stop_name": "ROUTE D'AULNAY - JEAN MOULIN"}, "geometry": {"type": "Point", "coordinates": [2.481728807753058, 48.91240595297027]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "40d0c0c2f7d1ca71a1289add939af35468ec11a5", "fields": {"departement": "93", "stop_lat": 48.92414475246889, "code_postal": "93007", "stop_lon": 2.4725423425858173, "coord": [48.92414475246889, 2.4725423425858173], "stop_id": 3672133, "stop_desc": "21 AVENUE JEAN BAPTISTE BUSNEL - 93007", "stop_name": "DANIELLE CASANOVA"}, "geometry": {"type": "Point", "coordinates": [2.4725423425858173, 48.92414475246889]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8d92e3288a720b30d648bd655902210855a2586d", "fields": {"departement": "93", "stop_lat": 48.92806904712401, "code_postal": "93007", "stop_lon": 2.475157626866216, "coord": [48.92806904712401, 2.475157626866216], "stop_id": 3672136, "stop_desc": "FACE 52 AVENUE PAUL VAILLANT COUTURIER - 93007", "stop_name": "QUEBEC"}, "geometry": {"type": "Point", "coordinates": [2.475157626866216, 48.92806904712401]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cbff33dc72d2570b3e0d0646efe02695612831cd", "fields": {"departement": "93", "stop_lat": 48.92114424225198, "code_postal": "93007", "stop_lon": 2.471538997805475, "coord": [48.92114424225198, 2.471538997805475], "stop_id": 3672131, "stop_desc": "26 AVENUE SURCOUF - 93007", "stop_name": "SURCOUF - JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.471538997805475, 48.92114424225198]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "069408b15044398676dfd6ccedb9be09df82c6bf", "fields": {"departement": "93", "stop_lat": 49.01048426253027, "code_postal": "93073", "stop_lon": 2.559308602563976, "coord": [49.01048426253027, 2.559308602563976], "stop_id": 3672160, "stop_desc": "AEROPORT CHARLES DE GAULLE (T3) - 93073", "stop_name": "ROISSYPOLE"}, "geometry": {"type": "Point", "coordinates": [2.559308602563976, 49.01048426253027]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8a1487d27e6a553c95ad49469513d10ca5691c69", "fields": {"departement": "93", "stop_lat": 49.01048426253027, "code_postal": "93073", "stop_lon": 2.559308602563976, "coord": [49.01048426253027, 2.559308602563976], "stop_id": 3672161, "stop_desc": "AEROPORT CHARLES DE GAULLE (T3) - 93073", "stop_name": "ROISSYPOLE"}, "geometry": {"type": "Point", "coordinates": [2.559308602563976, 49.01048426253027]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bd7cb01e27c6db8346065105e811a826d5cb21ce", "fields": {"departement": "93", "stop_lat": 48.928463917414284, "code_postal": "93007", "stop_lon": 2.4756360440448932, "coord": [48.928463917414284, 2.4756360440448932], "stop_id": 3672137, "stop_desc": "42 AVENUE PAUL VAILLANT COUTURIER - 93007", "stop_name": "QUEBEC"}, "geometry": {"type": "Point", "coordinates": [2.4756360440448932, 48.928463917414284]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "733807b9e8e6442bcb0aa146e94daecd50f6cdb3", "fields": {"departement": "93", "stop_lat": 48.99460337939841, "code_postal": "93073", "stop_lon": 2.523665271336363, "coord": [48.99460337939841, 2.523665271336363], "stop_id": 3672140, "stop_desc": "RUE DES BUISSONS - 93073", "stop_name": "MARGUILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.523665271336363, 48.99460337939841]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "00b1bb0ecfc3c7f644cc13530a930c76e34c6e54", "fields": {"departement": "77", "stop_lat": 48.845082316255095, "code_postal": "77468", "stop_lon": 2.653552993631835, "coord": [48.845082316255095, 2.653552993631835], "stop_id": 3681454, "stop_desc": "24 AVENUE DE LINGENFELD - 77468", "stop_name": "RIVES DE MAUBUEE"}, "geometry": {"type": "Point", "coordinates": [2.653552993631835, 48.845082316255095]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6bb0b9a5bdb1db834f271b9cb5742ca9018dda36", "fields": {"departement": "77", "stop_lat": 48.84298279745342, "code_postal": "77468", "stop_lon": 2.6555826884396914, "coord": [48.84298279745342, 2.6555826884396914], "stop_id": 3681451, "stop_desc": "AVENUE DE LINGENFELD - 77468", "stop_name": "SALVADOR ALLENDE"}, "geometry": {"type": "Point", "coordinates": [2.6555826884396914, 48.84298279745342]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ed107ad1e49fbf3ffd9d445ce813d12fee92be39", "fields": {"departement": "77", "stop_lat": 48.85450725445994, "code_postal": "77468", "stop_lon": 2.6373486008770706, "coord": [48.85450725445994, 2.6373486008770706], "stop_id": 3681473, "stop_desc": "RUE JEAN JAURES - 77468", "stop_name": "LA FOSSE AUX LOUPS"}, "geometry": {"type": "Point", "coordinates": [2.6373486008770706, 48.85450725445994]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7ad9b4a277e8e758e62d40c92e604f38db9be3e9", "fields": {"departement": "77", "stop_lat": 48.849963254010994, "code_postal": "77468", "stop_lon": 2.6464466804422355, "coord": [48.849963254010994, 2.6464466804422355], "stop_id": 3681468, "stop_desc": "71 TER RUE DE PARIS - 77468", "stop_name": "LES TILLEULS"}, "geometry": {"type": "Point", "coordinates": [2.6464466804422355, 48.849963254010994]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "60fc5b55935f069770b5bfa83b082cb0587b7c0d", "fields": {"departement": "77", "stop_lat": 48.84961812216385, "code_postal": "77468", "stop_lon": 2.6408610910140897, "coord": [48.84961812216385, 2.6408610910140897], "stop_id": 3681469, "stop_desc": "FACE 18 COURS DE L'ARCHE GUEDON - 77468", "stop_name": "BEL AIR"}, "geometry": {"type": "Point", "coordinates": [2.6408610910140897, 48.84961812216385]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "306f8dce092850463ac1101ea10c9113ce98933d", "fields": {"departement": "77", "stop_lat": 48.836165979587086, "code_postal": "77468", "stop_lon": 2.6571474175819856, "coord": [48.836165979587086, 2.6571474175819856], "stop_id": 3681446, "stop_desc": "AV JEAN MOULIN - 77468", "stop_name": "LYCEE JEAN MOULIN"}, "geometry": {"type": "Point", "coordinates": [2.6571474175819856, 48.836165979587086]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "956b1bbb2247346a9cf6b4ffa4a334f317ae3adc", "fields": {"departement": "77", "stop_lat": 48.85088335370485, "code_postal": "77468", "stop_lon": 2.652022216317478, "coord": [48.85088335370485, 2.652022216317478], "stop_id": 3681465, "stop_desc": "46 RUE DE PARIS - 77468", "stop_name": "MAIRIE DE TORCY"}, "geometry": {"type": "Point", "coordinates": [2.652022216317478, 48.85088335370485]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "900476fa22bf146f4fcec65f0a06b2d72e70fe7d", "fields": {"departement": "77", "stop_lat": 48.8596609516742, "code_postal": "77468", "stop_lon": 2.6463819086539355, "coord": [48.8596609516742, 2.6463819086539355], "stop_id": 3681477, "stop_desc": "22 ROUTE DE LAGNY - 77468", "stop_name": "LES CANTINES"}, "geometry": {"type": "Point", "coordinates": [2.6463819086539355, 48.8596609516742]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4611201a931505ab9385a38bb57a672639472758", "fields": {"departement": "77", "stop_lat": 48.83508094259836, "code_postal": "77468", "stop_lon": 2.6595641207370613, "coord": [48.83508094259836, 2.6595641207370613], "stop_id": 3681443, "stop_desc": "AV JEAN MOULIN - 77468", "stop_name": "ANNE FRANK"}, "geometry": {"type": "Point", "coordinates": [2.6595641207370613, 48.83508094259836]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "559a554ee1cf1b35472010d12da05f0e1e23bd02", "fields": {"departement": "77", "stop_lat": 48.8388587110045, "code_postal": "77468", "stop_lon": 2.655121686933947, "coord": [48.8388587110045, 2.655121686933947], "stop_id": 3681447, "stop_desc": "AV DE LINGENFELD - 77468", "stop_name": "TORCY RER"}, "geometry": {"type": "Point", "coordinates": [2.655121686933947, 48.8388587110045]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d351293e380121935ce5b573c26460b2d6a83cef", "fields": {"departement": "92", "stop_lat": 48.83994434528349, "code_postal": "92012", "stop_lon": 2.240038358554969, "coord": [48.83994434528349, 2.240038358554969], "stop_id": 3681813, "stop_desc": "61 BOULEVARD JEAN JAURES - 92012", "stop_name": "ROUTE DE LA REINE - JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.240038358554969, 48.83994434528349]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b4d42a44811ae36a88d76e4cd91cb295b260f2d6", "fields": {"departement": "92", "stop_lat": 48.84908236932488, "code_postal": "92012", "stop_lon": 2.237270369148506, "coord": [48.84908236932488, 2.237270369148506], "stop_id": 3681822, "stop_desc": "FACE 10 AVENUE CHARLES DE GAULLE - 92012", "stop_name": "HOPITAL AMBROISE PARE"}, "geometry": {"type": "Point", "coordinates": [2.237270369148506, 48.84908236932488]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dac9737200a658739a74cf97891563f14012047c", "fields": {"departement": "92", "stop_lat": 48.848911801316824, "code_postal": "92012", "stop_lon": 2.2375022054899913, "coord": [48.848911801316824, 2.2375022054899913], "stop_id": 3681821, "stop_desc": "8 AVENUE CHARLES DE GAULLE - 92012", "stop_name": "HOPITAL AMBROISE PARE"}, "geometry": {"type": "Point", "coordinates": [2.2375022054899913, 48.848911801316824]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ecb581b62b0c0c15e815f92d06d8e8e7384a6347", "fields": {"departement": "75", "stop_lat": 48.847381509715454, "code_postal": "75116", "stop_lon": 2.2582312705359113, "coord": [48.847381509715454, 2.2582312705359113], "stop_id": 3681832, "stop_desc": "PLACE DE LA PORTE D'AUTEUIL - 75116", "stop_name": "PORTE D'AUTEUIL-METRO"}, "geometry": {"type": "Point", "coordinates": [2.2582312705359113, 48.847381509715454]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "92137c972ba410bea4f1d1cd231aad52882ab051", "fields": {"departement": "75", "stop_lat": 48.847381509715454, "code_postal": "75116", "stop_lon": 2.2582312705359113, "coord": [48.847381509715454, 2.2582312705359113], "stop_id": 3681839, "stop_desc": "PLACE DE LA PORTE D'AUTEUIL - 75116", "stop_name": "PORTE D'AUTEUIL-METRO"}, "geometry": {"type": "Point", "coordinates": [2.2582312705359113, 48.847381509715454]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f80f3252eecec3bcbeb0822988743981e19583e4", "fields": {"departement": "75", "stop_lat": 48.84576235879368, "code_postal": "75116", "stop_lon": 2.256150295891413, "coord": [48.84576235879368, 2.256150295891413], "stop_id": 3681829, "stop_desc": "AVENUE DU GENERAL SARRAIL - 75116", "stop_name": "PORTE MOLITOR"}, "geometry": {"type": "Point", "coordinates": [2.256150295891413, 48.84576235879368]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9e957fdb1dea096f1b621ebb40921819cee9c5de", "fields": {"departement": "75", "stop_lat": 48.845483233629736, "code_postal": "75116", "stop_lon": 2.2554017868810505, "coord": [48.845483233629736, 2.2554017868810505], "stop_id": 3681830, "stop_desc": "AVENUE DE LA PORTE MOLITOR - 75116", "stop_name": "PORTE MOLITOR"}, "geometry": {"type": "Point", "coordinates": [2.2554017868810505, 48.845483233629736]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "286f7c793162fc57ccbc2f7fe0e2ed58d0212d71", "fields": {"departement": "92", "stop_lat": 48.83905032018747, "code_postal": "92012", "stop_lon": 2.246017239564007, "coord": [48.83905032018747, 2.246017239564007], "stop_id": 3681833, "stop_desc": "39 ROUTE DE LA REINE - 92012", "stop_name": "VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.246017239564007, 48.83905032018747]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "afae7f0bc85733959b2a3ae3d2279c3e74214459", "fields": {"departement": "92", "stop_lat": 48.84846549397577, "code_postal": "92012", "stop_lon": 2.241234388908183, "coord": [48.84846549397577, 2.241234388908183], "stop_id": 3681823, "stop_desc": "19 BOULEVARD ANATOLE FRANCE - 92012", "stop_name": "GAMBETTA"}, "geometry": {"type": "Point", "coordinates": [2.241234388908183, 48.84846549397577]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cd1dd75b484757662897e0bdb7ee1029145b9285", "fields": {"departement": "77", "stop_lat": 48.85534399397671, "code_postal": "77083", "stop_lon": 2.5819342599216286, "coord": [48.85534399397671, 2.5819342599216286], "stop_id": 3681564, "stop_desc": "FACE 51 BOULEVARD DE LA REPUBLIQUE - 77083", "stop_name": "ROND-POINT DES PYRAMIDES"}, "geometry": {"type": "Point", "coordinates": [2.5819342599216286, 48.85534399397671]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5223c3822a7b00ad88c8bf7bdfa04362af979221", "fields": {"departement": "77", "stop_lat": 48.872435896102694, "code_postal": "77108", "stop_lon": 2.5785952142218123, "coord": [48.872435896102694, 2.5785952142218123], "stop_id": 3681550, "stop_desc": "32 AV DU MARECHAL FOCH - 77108", "stop_name": "PARMENTIER - JULES FERRY"}, "geometry": {"type": "Point", "coordinates": [2.5785952142218123, 48.872435896102694]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cb2dd7ba1610e8549d47cf859e35a4108c447a0d", "fields": {"departement": "77", "stop_lat": 48.83777747640037, "code_postal": "77083", "stop_lon": 2.592798060287066, "coord": [48.83777747640037, 2.592798060287066], "stop_id": 3681593, "stop_desc": "RUE GALILEE - 77083", "stop_name": "BOIS DE L'ETANG-UNIVERSITE"}, "geometry": {"type": "Point", "coordinates": [2.592798060287066, 48.83777747640037]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "72468fbabad8e3691403c7b5cb35458a6764e30c", "fields": {"departement": "77", "stop_lat": 48.84267152877456, "code_postal": "77083", "stop_lon": 2.58195619006769, "coord": [48.84267152877456, 2.58195619006769], "stop_id": 3681580, "stop_desc": "BD NEWTON - 77083", "stop_name": "NOISY-CHAMPS RER - DESCARTES"}, "geometry": {"type": "Point", "coordinates": [2.58195619006769, 48.84267152877456]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d33c5202f05986d75abf230d308c5b5dc51718ad", "fields": {"departement": "77", "stop_lat": 48.85023351460025, "code_postal": "77083", "stop_lon": 2.584633852245799, "coord": [48.85023351460025, 2.584633852245799], "stop_id": 3681573, "stop_desc": "RUE ALBERT SCHWEITZER - 77083", "stop_name": "GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.584633852245799, 48.85023351460025]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "94ac990bcbe380544562ca5a86ecf99d98e831ee", "fields": {"departement": "77", "stop_lat": 48.850712449056154, "code_postal": "77468", "stop_lon": 2.6520756538555257, "coord": [48.850712449056154, 2.6520756538555257], "stop_id": 3681536, "stop_desc": "FACE 50 RUE DE PARIS - 77468", "stop_name": "MAIRIE DE TORCY"}, "geometry": {"type": "Point", "coordinates": [2.6520756538555257, 48.850712449056154]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fa658c0867af4497aaf97429643e1cdbee43b8eb", "fields": {"departement": "77", "stop_lat": 48.85089483954968, "code_postal": "77337", "stop_lon": 2.6262148431505064, "coord": [48.85089483954968, 2.6262148431505064], "stop_id": 3681530, "stop_desc": "192 COURS DE L'ARCHE GUEDON - 77337", "stop_name": "JULES FERRY"}, "geometry": {"type": "Point", "coordinates": [2.6262148431505064, 48.85089483954968]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d12bfddfecbe21229f98d27c3cf2f4a62f5628cb", "fields": {"departement": "77", "stop_lat": 48.85223720464594, "code_postal": "77083", "stop_lon": 2.6016127167657035, "coord": [48.85223720464594, 2.6016127167657035], "stop_id": 3681527, "stop_desc": "10 RUE DE PARIS - 77083", "stop_name": "MAIRIE DE CHAMPS"}, "geometry": {"type": "Point", "coordinates": [2.6016127167657035, 48.85223720464594]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f77ae46259546130d6e4484d228d04a04dc2ab1f", "fields": {"departement": "77", "stop_lat": 48.83924806864605, "code_postal": "77468", "stop_lon": 2.6573978872932438, "coord": [48.83924806864605, 2.6573978872932438], "stop_id": 3681542, "stop_desc": "AVENUE JEAN MOULIN - 77468", "stop_name": "CITES UNIES"}, "geometry": {"type": "Point", "coordinates": [2.6573978872932438, 48.83924806864605]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c9c169021976093d84b57e0e86f0fb6d14b75018", "fields": {"departement": "77", "stop_lat": 48.84084677490328, "code_postal": "77083", "stop_lon": 2.594869200246442, "coord": [48.84084677490328, 2.594869200246442], "stop_id": 3681595, "stop_desc": "AVENUE PASCAL - 77083", "stop_name": "GALILEE-PASCAL"}, "geometry": {"type": "Point", "coordinates": [2.594869200246442, 48.84084677490328]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ae68223a458179d959707b76e3542a314e5cc411", "fields": {"departement": "77", "stop_lat": 48.806039430971204, "code_postal": "77373", "stop_lon": 2.617787416790813, "coord": [48.806039430971204, 2.617787416790813], "stop_id": 3681409, "stop_desc": "R DE L'EST - 77373", "stop_name": "GARE D'EMERAINVILLE-PONTAULT-COMBAULT RER"}, "geometry": {"type": "Point", "coordinates": [2.617787416790813, 48.806039430971204]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eef6b5832a4afc687e0d2581e45b5bbc754da0db", "fields": {"departement": "93", "stop_lat": 49.00341346298945, "code_postal": "93073", "stop_lon": 2.5585270043531327, "coord": [49.00341346298945, 2.5585270043531327], "stop_id": 3678808, "stop_desc": "BRETELLE DE SERVICE - 93073", "stop_name": "TERMINAL 2 - ROUTE DE SERVICE"}, "geometry": {"type": "Point", "coordinates": [2.5585270043531327, 49.00341346298945]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7d54327e6bd2dac7dc2273327d38f203e09d25ea", "fields": {"departement": "93", "stop_lat": 49.002527672002785, "code_postal": "93073", "stop_lon": 2.5358772849144318, "coord": [49.002527672002785, 2.5358772849144318], "stop_id": 3678805, "stop_desc": "RUE DES TERRES NOIRES - 93073", "stop_name": "RUE DU CHAPITRE"}, "geometry": {"type": "Point", "coordinates": [2.5358772849144318, 49.002527672002785]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8918bd6f5a829d98e7c834b099dd544f7a8a8f0a", "fields": {"departement": "77", "stop_lat": 48.826979395985305, "code_postal": "77146", "stop_lon": 2.647398734170388, "coord": [48.826979395985305, 2.647398734170388], "stop_id": 3681439, "stop_desc": "ALL DES PLATANES - 77146", "stop_name": "LIONS DE BEAUBOURG"}, "geometry": {"type": "Point", "coordinates": [2.647398734170388, 48.826979395985305]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "85822dbb7de043bb3a46e207fcda47d179afa0b7", "fields": {"departement": "95", "stop_lat": 49.004717953484715, "code_postal": "95527", "stop_lon": 2.547769165629998, "coord": [49.004717953484715, 2.547769165629998], "stop_id": 3678822, "stop_desc": "RTE DU NOYER AU CHAT - 95527", "stop_name": "RUE DES VIGNES"}, "geometry": {"type": "Point", "coordinates": [2.547769165629998, 49.004717953484715]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9a8fdd5983e0b6aa972f8952b25c049f252729a2", "fields": {"departement": "77", "stop_lat": 48.82784856931678, "code_postal": "77146", "stop_lon": 2.6379159064951843, "coord": [48.82784856931678, 2.6379159064951843], "stop_id": 3681433, "stop_desc": "RUE LEON JOUHAUX - 77146", "stop_name": "LA MARE A BLONDEAU"}, "geometry": {"type": "Point", "coordinates": [2.6379159064951843, 48.82784856931678]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "62d301b0c424965c48edddd76db9fd2c887f5f5c", "fields": {"departement": "93", "stop_lat": 49.00453842018161, "code_postal": "93073", "stop_lon": 2.547659161829925, "coord": [49.00453842018161, 2.547659161829925], "stop_id": 3678807, "stop_desc": "ROUTE DU NOYER DU CHAT - 93073", "stop_name": "RUE DES VIGNES"}, "geometry": {"type": "Point", "coordinates": [2.547659161829925, 49.00453842018161]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "adc09c3f06d8afdcd286d766ff02cb9e7f1c3649", "fields": {"departement": "95", "stop_lat": 49.01156449626324, "code_postal": "95527", "stop_lon": 2.5152429686918456, "coord": [49.01156449626324, 2.5152429686918456], "stop_id": 3678815, "stop_desc": "ROUTE DE L'ARPENTEUR - 95527", "stop_name": "ENTRETIEN NORD"}, "geometry": {"type": "Point", "coordinates": [2.5152429686918456, 49.01156449626324]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "68ec999beab0c5e96e770c62b03e84002035ad91", "fields": {"departement": "95", "stop_lat": 49.007892693168586, "code_postal": "95527", "stop_lon": 2.512812511923358, "coord": [49.007892693168586, 2.512812511923358], "stop_id": 3678817, "stop_desc": "RUE DE L'ARPENTEUR - 95527", "stop_name": "ENTRETIEN SUD"}, "geometry": {"type": "Point", "coordinates": [2.512812511923358, 49.007892693168586]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "895ce9660144dcce72e9acd417f8feab0ffd28d6", "fields": {"departement": "77", "stop_lat": 48.81880177327236, "code_postal": "77146", "stop_lon": 2.632786866116781, "coord": [48.81880177327236, 2.632786866116781], "stop_id": 3681418, "stop_desc": "R DE BEAUBOURG - 77146", "stop_name": "LES MINES"}, "geometry": {"type": "Point", "coordinates": [2.632786866116781, 48.81880177327236]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8ec32910ddb6b7f4d14a33b3014060b173faf1e7", "fields": {"departement": "92", "stop_lat": 48.82902029402411, "code_postal": "92012", "stop_lon": 2.2461982283501434, "coord": [48.82902029402411, 2.2461982283501434], "stop_id": 3681805, "stop_desc": "243 BIS BOULEVARD JEAN JAURES - 92012", "stop_name": "RUE DU POINT DU JOUR"}, "geometry": {"type": "Point", "coordinates": [2.2461982283501434, 48.82902029402411]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f5035ae7b45a1dc4bca12e3b79e58f17f8fddb8e", "fields": {"departement": "92", "stop_lat": 48.822893090783545, "code_postal": "92040", "stop_lon": 2.2493667912871365, "coord": [48.822893090783545, 2.2493667912871365], "stop_id": 3681802, "stop_desc": "FACE 12/14 BOULEVARD DES ILES - 92040", "stop_name": "ILE SAINT GERMAIN"}, "geometry": {"type": "Point", "coordinates": [2.2493667912871365, 48.822893090783545]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "48f309300761187189beda5d4492a31b7d3b666b", "fields": {"departement": "77", "stop_lat": 48.85023351460025, "code_postal": "77083", "stop_lon": 2.584633852245799, "coord": [48.85023351460025, 2.584633852245799], "stop_id": 3681690, "stop_desc": "RUE ALBERT SCHWEITZER - 77083", "stop_name": "GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.584633852245799, 48.85023351460025]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eb672edb84083ae69f1daa9c31ceef4a4f1c1c33", "fields": {"departement": "77", "stop_lat": 48.841180703852885, "code_postal": "77083", "stop_lon": 2.606430952185434, "coord": [48.841180703852885, 2.606430952185434], "stop_id": 3681669, "stop_desc": "PL PABLO PICASSO - 77083", "stop_name": "PLACE PABLO PICASSO"}, "geometry": {"type": "Point", "coordinates": [2.606430952185434, 48.841180703852885]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b8ddae24a2679d4bf3e3ea78bacb18531a023b29", "fields": {"departement": "92", "stop_lat": 48.82360325596181, "code_postal": "92040", "stop_lon": 2.262745642097151, "coord": [48.82360325596181, 2.262745642097151], "stop_id": 3681792, "stop_desc": "2 BOULEVARD GARIBALDI - 92040", "stop_name": "ROGER SALENGRO"}, "geometry": {"type": "Point", "coordinates": [2.262745642097151, 48.82360325596181]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3ad50f2b25eb7ab5caa56dc7969ab3f3b08a9c2e", "fields": {"departement": "77", "stop_lat": 48.8484430582703, "code_postal": "77083", "stop_lon": 2.585564957393865, "coord": [48.8484430582703, 2.585564957393865], "stop_id": 3681689, "stop_desc": "BOULEVARD DE NESLES - 77083", "stop_name": "BOIS DE GRACE"}, "geometry": {"type": "Point", "coordinates": [2.585564957393865, 48.8484430582703]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d29d6c4cb7817620009370d569f8a0ee75ba1e91", "fields": {"departement": "77", "stop_lat": 48.84276074387724, "code_postal": "77337", "stop_lon": 2.6150311934474253, "coord": [48.84276074387724, 2.6150311934474253], "stop_id": 3681673, "stop_desc": "COURS DES ROCHES - 77337", "stop_name": "NOISIEL RER"}, "geometry": {"type": "Point", "coordinates": [2.6150311934474253, 48.84276074387724]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5c8df2a06c3c51a58701e28e88cbf6ef3b5e7686", "fields": {"departement": "92", "stop_lat": 48.830978767725234, "code_postal": "92012", "stop_lon": 2.2451193343785163, "coord": [48.830978767725234, 2.2451193343785163], "stop_id": 3681807, "stop_desc": "225 BOULEVARD JEAN JAURES - 92012", "stop_name": "DOME"}, "geometry": {"type": "Point", "coordinates": [2.2451193343785163, 48.830978767725234]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "05bed7326eaeb4657f5b83cfec6ce905d142d743", "fields": {"departement": "77", "stop_lat": 48.842245043016746, "code_postal": "77083", "stop_lon": 2.5839285562282472, "coord": [48.842245043016746, 2.5839285562282472], "stop_id": 3681684, "stop_desc": "21 AV AMPERE - 77083", "stop_name": "C.R.O.U.S."}, "geometry": {"type": "Point", "coordinates": [2.5839285562282472, 48.842245043016746]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "90e528d8a6f03a3f4f21870c7038a9809a4ce488", "fields": {"departement": "77", "stop_lat": 48.84485318736399, "code_postal": "77083", "stop_lon": 2.5830830818506754, "coord": [48.84485318736399, 2.5830830818506754], "stop_id": 3681687, "stop_desc": "1 AVENUE AMPERE - 77083", "stop_name": "AMPERE"}, "geometry": {"type": "Point", "coordinates": [2.5830830818506754, 48.84485318736399]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d7417c487ff482ae400268aa0c4d9bf60dccdeda", "fields": {"departement": "77", "stop_lat": 48.872435896102694, "code_postal": "77108", "stop_lon": 2.5785952142218123, "coord": [48.872435896102694, 2.5785952142218123], "stop_id": 3681516, "stop_desc": "32 AV DU MARECHAL FOCH - 77108", "stop_name": "PARMENTIER - JULES FERRY"}, "geometry": {"type": "Point", "coordinates": [2.5785952142218123, 48.872435896102694]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "15ecea9d65146fde1658f78fa9bc3d1d85478d2b", "fields": {"departement": "77", "stop_lat": 48.85076123947161, "code_postal": "77468", "stop_lon": 2.6573736160779675, "coord": [48.85076123947161, 2.6573736160779675], "stop_id": 3681492, "stop_desc": "FACE 3-7 RUE DE PARIS - 77468", "stop_name": "LA MARE AUX MARCHAIS"}, "geometry": {"type": "Point", "coordinates": [2.6573736160779675, 48.85076123947161]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "62e359355387d50da578fa582435c1981dccbae4", "fields": {"departement": "77", "stop_lat": 48.870957143989884, "code_postal": "77108", "stop_lon": 2.576531116758481, "coord": [48.870957143989884, 2.576531116758481], "stop_id": 3681517, "stop_desc": "50 AVENUE DU MARECHAL FOCH - 77108", "stop_name": "AVENUE DES MARTYRS"}, "geometry": {"type": "Point", "coordinates": [2.576531116758481, 48.870957143989884]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9275f49e0efdff85f5dafd9fef3468c6bb8d9061", "fields": {"departement": "77", "stop_lat": 48.84298279745342, "code_postal": "77468", "stop_lon": 2.6555826884396914, "coord": [48.84298279745342, 2.6555826884396914], "stop_id": 3681488, "stop_desc": "AVENUE DE LINGENFELD - 77468", "stop_name": "SALVADOR ALLENDE"}, "geometry": {"type": "Point", "coordinates": [2.6555826884396914, 48.84298279745342]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "157e8ab8105b5a70f483347081b983020096a7b5", "fields": {"departement": "93", "stop_lat": 48.85878683398007, "code_postal": "93033", "stop_lon": 2.5816236052274646, "coord": [48.85878683398007, 2.5816236052274646], "stop_id": 3681506, "stop_desc": "AVENUE DES PRINCES - 93033", "stop_name": "PLACE CHURCHILL"}, "geometry": {"type": "Point", "coordinates": [2.5816236052274646, 48.85878683398007]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "341be97e5c02e3e6efa8f0e097a2a48e2a3fdde9", "fields": {"departement": "77", "stop_lat": 48.85029228306208, "code_postal": "77468", "stop_lon": 2.63368806437434, "coord": [48.85029228306208, 2.63368806437434], "stop_id": 3681496, "stop_desc": "0 COURS DE L'ARCHE GUEDON - 77468", "stop_name": "CITE SCOLAIRE"}, "geometry": {"type": "Point", "coordinates": [2.63368806437434, 48.85029228306208]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f1283dcb254b0cdcb41d6aea2f090d58e9e1c802", "fields": {"departement": "93", "stop_lat": 48.861595619417926, "code_postal": "93033", "stop_lon": 2.579321189538517, "coord": [48.861595619417926, 2.579321189538517], "stop_id": 3681507, "stop_desc": "AVENUE DE CHAMPS - 93033", "stop_name": "PLACE ROOSEVELT"}, "geometry": {"type": "Point", "coordinates": [2.579321189538517, 48.861595619417926]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "46820183c47564dc5d68cca2e8fdc3576da568da", "fields": {"departement": "77", "stop_lat": 48.85088335370485, "code_postal": "77468", "stop_lon": 2.652022216317478, "coord": [48.85088335370485, 2.652022216317478], "stop_id": 3681493, "stop_desc": "46 RUE DE PARIS - 77468", "stop_name": "MAIRIE DE TORCY"}, "geometry": {"type": "Point", "coordinates": [2.652022216317478, 48.85088335370485]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b8687d014846f479dbda35dbfe1f32c0a74080c3", "fields": {"departement": "77", "stop_lat": 48.85010804193541, "code_postal": "77468", "stop_lon": 2.646066225456977, "coord": [48.85010804193541, 2.646066225456977], "stop_id": 3681494, "stop_desc": "82 RUE DE PARIS - 77468", "stop_name": "LES TILLEULS"}, "geometry": {"type": "Point", "coordinates": [2.646066225456977, 48.85010804193541]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c6748e57a91a63208be3f50163f16e5e09f617b8", "fields": {"departement": "77", "stop_lat": 48.86831057428451, "code_postal": "77108", "stop_lon": 2.574175706615011, "coord": [48.86831057428451, 2.574175706615011], "stop_id": 3681518, "stop_desc": "RUE DE GOURNAY - 77108", "stop_name": "RUE DU PORT"}, "geometry": {"type": "Point", "coordinates": [2.574175706615011, 48.86831057428451]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "407c9a514e338c727ecbc1f2ad03c6bdc35db40a", "fields": {"departement": "77", "stop_lat": 48.85042731720968, "code_postal": "77083", "stop_lon": 2.5821834380995026, "coord": [48.85042731720968, 2.5821834380995026], "stop_id": 3681655, "stop_desc": "RUE ALBERT SCHWEITZER - 77083", "stop_name": "FLANDRES-DUNKERQUE 1940"}, "geometry": {"type": "Point", "coordinates": [2.5821834380995026, 48.85042731720968]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3385666bcb7af39c2d66da379e60b10acab596a9", "fields": {"departement": "77", "stop_lat": 48.84267152877456, "code_postal": "77083", "stop_lon": 2.58195619006769, "coord": [48.84267152877456, 2.58195619006769], "stop_id": 3681660, "stop_desc": "BD NEWTON - 77083", "stop_name": "NOISY-CHAMPS RER - DESCARTES"}, "geometry": {"type": "Point", "coordinates": [2.58195619006769, 48.84267152877456]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fb736c1ed55c41a9dd9581dbafd2f100dd21ae76", "fields": {"departement": "77", "stop_lat": 48.83978016258339, "code_postal": "77083", "stop_lon": 2.6017398630101356, "coord": [48.83978016258339, 2.6017398630101356], "stop_id": 3681596, "stop_desc": "AVENUE FORESTIERE - 77083", "stop_name": "LES VIGNES DE BAILLY"}, "geometry": {"type": "Point", "coordinates": [2.6017398630101356, 48.83978016258339]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "16b9d4a71b6f2c2f86c75a20c55e84458aeba707", "fields": {"departement": "77", "stop_lat": 48.83978016258339, "code_postal": "77083", "stop_lon": 2.6017398630101356, "coord": [48.83978016258339, 2.6017398630101356], "stop_id": 3681638, "stop_desc": "AVENUE FORESTIERE - 77083", "stop_name": "LES VIGNES DE BAILLY"}, "geometry": {"type": "Point", "coordinates": [2.6017398630101356, 48.83978016258339]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f60adc30f859c243ffddb26fa63286bede142df2", "fields": {"departement": "77", "stop_lat": 48.836192481478214, "code_postal": "77083", "stop_lon": 2.5858058544107116, "coord": [48.836192481478214, 2.5858058544107116], "stop_id": 3681634, "stop_desc": "10 RUE ALBERT EINSTEIN - 77083", "stop_name": "ESPACE DESCARTES"}, "geometry": {"type": "Point", "coordinates": [2.5858058544107116, 48.836192481478214]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9468c21746ff5d4931ade16323446a77a0f24585", "fields": {"departement": "77", "stop_lat": 48.84683513854755, "code_postal": "77337", "stop_lon": 2.6137321018284156, "coord": [48.84683513854755, 2.6137321018284156], "stop_id": 3681605, "stop_desc": "COURS DES ROCHES - 77337", "stop_name": "COLLEGE LE LUZARD"}, "geometry": {"type": "Point", "coordinates": [2.6137321018284156, 48.84683513854755]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "066cec6452fd0b575d4fa1f30746241d4eb874e3", "fields": {"departement": "94", "stop_lat": 48.78023308886009, "code_postal": "94028", "stop_lon": 2.459832212743814, "coord": [48.78023308886009, 2.459832212743814], "stop_id": 3619730, "stop_desc": "RUE AMEDEO MODIGLIANI - 94028", "stop_name": "CRETEIL - PREFECTURE"}, "geometry": {"type": "Point", "coordinates": [2.459832212743814, 48.78023308886009]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1ca1545697868eaa301a18562d39fe41866c3510", "fields": {"departement": "94", "stop_lat": 48.796966078202246, "code_postal": "94046", "stop_lon": 2.4332477619374995, "coord": [48.796966078202246, 2.4332477619374995], "stop_id": 3619752, "stop_desc": "FACE 105 RUE JEAN JAURES - 94046", "stop_name": "GENERAL GALLIENI"}, "geometry": {"type": "Point", "coordinates": [2.4332477619374995, 48.796966078202246]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e1f1af8d72858281ecbeeecb7021fb858e6e8c92", "fields": {"departement": "94", "stop_lat": 48.781116638087184, "code_postal": "94028", "stop_lon": 2.473829033177264, "coord": [48.781116638087184, 2.473829033177264], "stop_id": 3619776, "stop_desc": "4-6 AVENUE DU DOCTEUR PAUL CASALIS - 94028", "stop_name": "LA GAITE"}, "geometry": {"type": "Point", "coordinates": [2.473829033177264, 48.781116638087184]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bfa0dfa8ec1787d206fbe480c608601b0c4499f1", "fields": {"departement": "94", "stop_lat": 48.78529175404654, "code_postal": "94028", "stop_lon": 2.452404176996184, "coord": [48.78529175404654, 2.452404176996184], "stop_id": 3619736, "stop_desc": "AVENUE FRANCOIS MAURIAC - 94028", "stop_name": "CROIX DES MECHES"}, "geometry": {"type": "Point", "coordinates": [2.452404176996184, 48.78529175404654]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a1fdf9083574262f37ae1329526edf30906d2249", "fields": {"departement": "94", "stop_lat": 48.80393001308312, "code_postal": "94002", "stop_lon": 2.4236682016103535, "coord": [48.80393001308312, 2.4236682016103535], "stop_id": 3619795, "stop_desc": "71-73 RUE VICTOR HUGO - 94002", "stop_name": "RAYMOND JACLARD"}, "geometry": {"type": "Point", "coordinates": [2.4236682016103535, 48.80393001308312]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0094d757675f96f708d122ce52a0b8bc84492177", "fields": {"departement": "94", "stop_lat": 48.787741776342976, "code_postal": "94028", "stop_lon": 2.446791959956889, "coord": [48.787741776342976, 2.446791959956889], "stop_id": 3619763, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 94028", "stop_name": "UNIVERSITE"}, "geometry": {"type": "Point", "coordinates": [2.446791959956889, 48.787741776342976]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "52399934d7c26175cfe77077fbb2d21e7df4acd1", "fields": {"departement": "94", "stop_lat": 48.7686265082779, "code_postal": "94028", "stop_lon": 2.470981609085061, "coord": [48.7686265082779, 2.470981609085061], "stop_id": 3619715, "stop_desc": "26 RUE DES SARRAZINS - 94028", "stop_name": "NELSON PAILLOU"}, "geometry": {"type": "Point", "coordinates": [2.470981609085061, 48.7686265082779]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "45247114afc98b1d15dbfd301c30956bdd35c07c", "fields": {"departement": "94", "stop_lat": 48.772818752265856, "code_postal": "94011", "stop_lon": 2.4901929991783653, "coord": [48.772818752265856, 2.4901929991783653], "stop_id": 3620267, "stop_desc": "AVENUE RHIN ET DANUBE-PREMIERE ARMEE FRANCAISE - 94011", "stop_name": "RHIN ET DANUBE"}, "geometry": {"type": "Point", "coordinates": [2.4901929991783653, 48.772818752265856]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "64f1f2476e6e5ca2a54baf2568214c1bec1121c7", "fields": {"departement": "94", "stop_lat": 48.772728329171926, "code_postal": "94011", "stop_lon": 2.490614275236315, "coord": [48.772728329171926, 2.490614275236315], "stop_id": 3620266, "stop_desc": "AVENUE RHIN ET DANUBE-PREMIERE ARMEE FRANCAISE - 94011", "stop_name": "RHIN ET DANUBE"}, "geometry": {"type": "Point", "coordinates": [2.490614275236315, 48.772728329171926]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "656ef69d5224ea32235a8a84ef84019144ba42b0", "fields": {"departement": "94", "stop_lat": 48.80170746252592, "code_postal": "94046", "stop_lon": 2.427120352683719, "coord": [48.80170746252592, 2.427120352683719], "stop_id": 3619930, "stop_desc": "RUE FLEUTIAUX - 94046", "stop_name": "MAISONS-ALFORT - ALFORTVILLE RER"}, "geometry": {"type": "Point", "coordinates": [2.427120352683719, 48.80170746252592]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d9598459967a1cd2f811bd7c1d3aacfc79abd776", "fields": {"departement": "94", "stop_lat": 48.768717139337944, "code_postal": "94022", "stop_lon": 2.421026189476439, "coord": [48.768717139337944, 2.421026189476439], "stop_id": 3620246, "stop_desc": "79 AVENUE VICTOR HUGO - 94022", "stop_name": "MARCELLIN BERTHELOT"}, "geometry": {"type": "Point", "coordinates": [2.421026189476439, 48.768717139337944]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ff3bdba29b0a9fdf8b5b85a0b28c6537e5d6e839", "fields": {"departement": "94", "stop_lat": 48.769004919799386, "code_postal": "94022", "stop_lon": 2.420795502042092, "coord": [48.769004919799386, 2.420795502042092], "stop_id": 3620247, "stop_desc": "64 AVENUE VICTOR HUGO - 94022", "stop_name": "MARCELLIN BERTHELOT"}, "geometry": {"type": "Point", "coordinates": [2.420795502042092, 48.769004919799386]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "814833e64dc4d6d6f0bea571fcd1efef92f3945a", "fields": {"departement": "94", "stop_lat": 48.75995880829257, "code_postal": "94073", "stop_lon": 2.397887356547976, "coord": [48.75995880829257, 2.397887356547976], "stop_id": 3620237, "stop_desc": "86 AVENUE DE VERSAILLES - 94073", "stop_name": "GEORGES HALGOULT"}, "geometry": {"type": "Point", "coordinates": [2.397887356547976, 48.75995880829257]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "926abf6b8c799a7dc3c22c325214e3f941a6dabf", "fields": {"departement": "94", "stop_lat": 48.76586240258943, "code_postal": "94011", "stop_lon": 2.48269453656466, "coord": [48.76586240258943, 2.48269453656466], "stop_id": 3620262, "stop_desc": "AVENUE JEAN ROSTAND - 94011", "stop_name": "STADE DE BONNEUIL"}, "geometry": {"type": "Point", "coordinates": [2.48269453656466, 48.76586240258943]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1eebd0be13bfe0fa3eee721e3e9f4c7edb942d56", "fields": {"departement": "77", "stop_lat": 48.85130507698259, "code_postal": "77083", "stop_lon": 2.600450369152225, "coord": [48.85130507698259, 2.600450369152225], "stop_id": 3639446, "stop_desc": "FACE 9 RUE D'ALSACE - 77083", "stop_name": "MAIRIE DE CHAMPS"}, "geometry": {"type": "Point", "coordinates": [2.600450369152225, 48.85130507698259]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5444acc3fffa206542218ad9f8fdd972088d314c", "fields": {"departement": "77", "stop_lat": 48.848290555507766, "code_postal": "77083", "stop_lon": 2.585428047502302, "coord": [48.848290555507766, 2.585428047502302], "stop_id": 3639431, "stop_desc": "BOULEVARD DE NESLES - 77083", "stop_name": "BOIS DE GRACE"}, "geometry": {"type": "Point", "coordinates": [2.585428047502302, 48.848290555507766]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c4dc9922190eece7e799cf1f74b4afe1d2de6566", "fields": {"departement": "77", "stop_lat": 48.84485318736399, "code_postal": "77083", "stop_lon": 2.5830830818506754, "coord": [48.84485318736399, 2.5830830818506754], "stop_id": 3639425, "stop_desc": "1 AVENUE AMPERE - 77083", "stop_name": "AMPERE"}, "geometry": {"type": "Point", "coordinates": [2.5830830818506754, 48.84485318736399]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7c821a1c6374bb95d96e654a7f06ebb7a0c2c7a4", "fields": {"departement": "94", "stop_lat": 48.78340456217213, "code_postal": "94028", "stop_lon": 2.452114373753063, "coord": [48.78340456217213, 2.452114373753063], "stop_id": 3619874, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 94028", "stop_name": "PREFECTURE DU VAL-DE-MARNE"}, "geometry": {"type": "Point", "coordinates": [2.452114373753063, 48.78340456217213]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "65e3e56d73212e8001b9ab3bb386751508fa4205", "fields": {"departement": "94", "stop_lat": 48.81484339757609, "code_postal": "94069", "stop_lon": 2.461737571167802, "coord": [48.81484339757609, 2.461737571167802], "stop_id": 3619846, "stop_desc": "155 RUE DU MARECHAL LECLERC - 94069", "stop_name": "JOHN FITZGERALD KENNEDY"}, "geometry": {"type": "Point", "coordinates": [2.461737571167802, 48.81484339757609]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9116bfbaeb22090a1f4a1499729ebbee32f3f007", "fields": {"departement": "94", "stop_lat": 48.782266577868384, "code_postal": "94028", "stop_lon": 2.4576745123491808, "coord": [48.782266577868384, 2.4576745123491808], "stop_id": 3619876, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 94028", "stop_name": "LYCEE SAINT-EXUPERY"}, "geometry": {"type": "Point", "coordinates": [2.4576745123491808, 48.782266577868384]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ac5d3f02d8c2457638ce8ca829862722355dcff4", "fields": {"departement": "94", "stop_lat": 48.81601428243233, "code_postal": "94069", "stop_lon": 2.4593451129262274, "coord": [48.81601428243233, 2.4593451129262274], "stop_id": 3619844, "stop_desc": "129 RUE DU MARECHAL LECLERC - 94069", "stop_name": "ECOLES DE GRAVELLE"}, "geometry": {"type": "Point", "coordinates": [2.4593451129262274, 48.81601428243233]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "53dc9079703e06ec5198bb5e50b2296d6d4326ab", "fields": {"departement": "94", "stop_lat": 48.7996343723375, "code_postal": "94028", "stop_lon": 2.4545311812508035, "coord": [48.7996343723375, 2.4545311812508035], "stop_id": 3619860, "stop_desc": "AVENUE LAFERRIERE - 94028", "stop_name": "HENRI MONDOR - LAFERRIERE"}, "geometry": {"type": "Point", "coordinates": [2.4545311812508035, 48.7996343723375]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6ce8110ab918ef9ef5ea1f69400bee9388596e6b", "fields": {"departement": "94", "stop_lat": 48.79489548681688, "code_postal": "94028", "stop_lon": 2.447514454495448, "coord": [48.79489548681688, 2.447514454495448], "stop_id": 3619867, "stop_desc": "70 AVENUE DU GENERAL DE GAULLE - 94028", "stop_name": "SAINT-SIMON"}, "geometry": {"type": "Point", "coordinates": [2.447514454495448, 48.79489548681688]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e2a8912fb4f8f8793bdc8f2a099cfb1d85001ce7", "fields": {"departement": "94", "stop_lat": 48.81672811941364, "code_postal": "94069", "stop_lon": 2.4555769178378704, "coord": [48.81672811941364, 2.4555769178378704], "stop_id": 3619841, "stop_desc": "228 RUE DU MARECHAL LECLERC - 94069", "stop_name": "LES CANADIENS"}, "geometry": {"type": "Point", "coordinates": [2.4555769178378704, 48.81672811941364]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "df0e019c598aa59823e0d0767fad7578d0b131a6", "fields": {"departement": "94", "stop_lat": 48.80062996503478, "code_postal": "94028", "stop_lon": 2.4566014559814993, "coord": [48.80062996503478, 2.4566014559814993], "stop_id": 3619858, "stop_desc": "140 AVENUE LAFERRIERE - 94028", "stop_name": "COLLEGE PLAISANCE"}, "geometry": {"type": "Point", "coordinates": [2.4566014559814993, 48.80062996503478]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e33bf4c71c4a07bb5d330461e64245582b62ab44", "fields": {"departement": "94", "stop_lat": 48.79367396481536, "code_postal": "94028", "stop_lon": 2.446614022629779, "coord": [48.79367396481536, 2.446614022629779], "stop_id": 3619866, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 94028", "stop_name": "SAINT-SIMON"}, "geometry": {"type": "Point", "coordinates": [2.446614022629779, 48.79367396481536]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "adc257ec4de85657eb7a9aa222589904b9703a74", "fields": {"departement": "94", "stop_lat": 48.808296339137414, "code_postal": "94046", "stop_lon": 2.456836799625507, "coord": [48.808296339137414, 2.456836799625507], "stop_id": 3619849, "stop_desc": "28-30 RUE DANIELLE CASANOVA - 94046", "stop_name": "PLANETES"}, "geometry": {"type": "Point", "coordinates": [2.456836799625507, 48.808296339137414]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d35eca0b11b5c309205a64f5c1be9576b4e46713", "fields": {"departement": "94", "stop_lat": 48.80102123483813, "code_postal": "94046", "stop_lon": 2.431200824049608, "coord": [48.80102123483813, 2.431200824049608], "stop_id": 3619904, "stop_desc": "FACE 10 AVENUE DE LA REPUBLIQUE - 94046", "stop_name": "MAIRIE DE MAISONS-ALFORT"}, "geometry": {"type": "Point", "coordinates": [2.431200824049608, 48.80102123483813]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a1d0e1204394a6f460654fbe1e38a34d38367338", "fields": {"departement": "94", "stop_lat": 48.80170746252592, "code_postal": "94046", "stop_lon": 2.427120352683719, "coord": [48.80170746252592, 2.427120352683719], "stop_id": 3619902, "stop_desc": "RUE FLEUTIAUX - 94046", "stop_name": "MAISONS-ALFORT - ALFORTVILLE RER"}, "geometry": {"type": "Point", "coordinates": [2.427120352683719, 48.80170746252592]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "610cf1b8494c6c2f0744879b3c7cd2345dc78434", "fields": {"departement": "94", "stop_lat": 48.80300476414455, "code_postal": "94046", "stop_lon": 2.434660350132125, "coord": [48.80300476414455, 2.434660350132125], "stop_id": 3619905, "stop_desc": "FACE 37 AVENUE DE LA REPUBLIQUE - 94046", "stop_name": "REPUBLIQUE - BLUM"}, "geometry": {"type": "Point", "coordinates": [2.434660350132125, 48.80300476414455]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "533e45987e6992eebbbe09f4da382cf56ed16c79", "fields": {"departement": "94", "stop_lat": 48.80740717945205, "code_postal": "94046", "stop_lon": 2.446847060018518, "coord": [48.80740717945205, 2.446847060018518], "stop_id": 3619919, "stop_desc": "144/146 AVENUE DE LA REPUBLIQUE - 94046", "stop_name": "RUE DE LILLE"}, "geometry": {"type": "Point", "coordinates": [2.446847060018518, 48.80740717945205]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ab8ef1388bab9c897f78df121381ac6c5a2daac3", "fields": {"departement": "94", "stop_lat": 48.80751530813747, "code_postal": "94046", "stop_lon": 2.4465479290850816, "coord": [48.80751530813747, 2.4465479290850816], "stop_id": 3619920, "stop_desc": "163 AVENUE DE LA REPUBLIQUE - 94046", "stop_name": "RUE DE LILLE"}, "geometry": {"type": "Point", "coordinates": [2.4465479290850816, 48.80751530813747]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8280961dc6304b0eecd118af2725ab182755e220", "fields": {"departement": "94", "stop_lat": 48.810175159180424, "code_postal": "94046", "stop_lon": 2.4369191130693784, "coord": [48.810175159180424, 2.4369191130693784], "stop_id": 3619916, "stop_desc": "29-27 AVENUE GAMBETTA - 94046", "stop_name": "GABRIEL PERI"}, "geometry": {"type": "Point", "coordinates": [2.4369191130693784, 48.810175159180424]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0acaf4e1d7ffd9853b6db509a22dcd55ad2b28be", "fields": {"departement": "94", "stop_lat": 48.80993660161347, "code_postal": "94046", "stop_lon": 2.4425795286496297, "coord": [48.80993660161347, 2.4425795286496297], "stop_id": 3619917, "stop_desc": "FACE 67 AVENUE GAMBETTA - 94046", "stop_name": "RENE COTY"}, "geometry": {"type": "Point", "coordinates": [2.4425795286496297, 48.80993660161347]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c893d27d95f201dee543d898893f84a69414b1e4", "fields": {"departement": "94", "stop_lat": 48.77181085173112, "code_postal": "94028", "stop_lon": 2.4686781643901234, "coord": [48.77181085173112, 2.4686781643901234], "stop_id": 3619889, "stop_desc": "R DES CORBIERES - 94028", "stop_name": "CLOS VOUGEOT"}, "geometry": {"type": "Point", "coordinates": [2.4686781643901234, 48.77181085173112]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c8ca503c41802cc744002cb3687b287aed52ac12", "fields": {"departement": "94", "stop_lat": 48.77026586848132, "code_postal": "94028", "stop_lon": 2.467804017022486, "coord": [48.77026586848132, 2.467804017022486], "stop_id": 3619890, "stop_desc": "R VICTOR SCHOELCHER - 94028", "stop_name": "COTEAUX SUD"}, "geometry": {"type": "Point", "coordinates": [2.467804017022486, 48.77026586848132]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ae001715570805d14ad0fd4810a1b716de9674fa", "fields": {"departement": "94", "stop_lat": 48.777712959312176, "code_postal": "94028", "stop_lon": 2.463171726467112, "coord": [48.777712959312176, 2.463171726467112], "stop_id": 3619879, "stop_desc": "RUE RENE ARCOS - 94028", "stop_name": "JOHN KENNEDY"}, "geometry": {"type": "Point", "coordinates": [2.463171726467112, 48.777712959312176]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "de3e4846c37e955551203a748746b9cc9cd2ebef", "fields": {"departement": "94", "stop_lat": 48.75728485866407, "code_postal": "94073", "stop_lon": 2.388273226474757, "coord": [48.75728485866407, 2.388273226474757], "stop_id": 3620233, "stop_desc": "0 AV DE VERSAILLES - 94073", "stop_name": "CARREFOUR DE LA RESISTANCE"}, "geometry": {"type": "Point", "coordinates": [2.388273226474757, 48.75728485866407]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a36c3e2031fae955564802a9f4372a9d5faa2b25", "fields": {"departement": "94", "stop_lat": 48.803959218285485, "code_postal": "94046", "stop_lon": 2.443138867185736, "coord": [48.803959218285485, 2.443138867185736], "stop_id": 3619937, "stop_desc": "R DU 18 JUIN 1940 - 94046", "stop_name": "LES JULLIOTTES - METRO"}, "geometry": {"type": "Point", "coordinates": [2.443138867185736, 48.803959218285485]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b0823c773cd5eab35d6c0908bdc7eed9dab7c0a2", "fields": {"departement": "94", "stop_lat": 48.80740717945205, "code_postal": "94046", "stop_lon": 2.446847060018518, "coord": [48.80740717945205, 2.446847060018518], "stop_id": 3619949, "stop_desc": "144/146 AVENUE DE LA REPUBLIQUE - 94046", "stop_name": "RUE DE LILLE"}, "geometry": {"type": "Point", "coordinates": [2.446847060018518, 48.80740717945205]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3b1f7853f9b69211a7e4595406ca3fdf4425965d", "fields": {"departement": "94", "stop_lat": 48.75829818885003, "code_postal": "94073", "stop_lon": 2.393440070015161, "coord": [48.75829818885003, 2.393440070015161], "stop_id": 3620234, "stop_desc": "FACE 134 AVENUE DE VERSAILLES - 94073", "stop_name": "VICTOR BASCH"}, "geometry": {"type": "Point", "coordinates": [2.393440070015161, 48.75829818885003]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d5837e94dc90c9eb58c9dba4d25162ae2c8fa17b", "fields": {"departement": "94", "stop_lat": 48.75831681242365, "code_postal": "94073", "stop_lon": 2.3920534671005744, "coord": [48.75831681242365, 2.3920534671005744], "stop_id": 3620235, "stop_desc": "148 AVENUE DE VERSAILLES - 94073", "stop_name": "VICTOR BASCH"}, "geometry": {"type": "Point", "coordinates": [2.3920534671005744, 48.75831681242365]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7b0061c033ad42e92ee4e95b564d83f01cb2deac", "fields": {"departement": "94", "stop_lat": 48.810175159180424, "code_postal": "94046", "stop_lon": 2.4369191130693784, "coord": [48.810175159180424, 2.4369191130693784], "stop_id": 3619946, "stop_desc": "29-27 AVENUE GAMBETTA - 94046", "stop_name": "GABRIEL PERI"}, "geometry": {"type": "Point", "coordinates": [2.4369191130693784, 48.810175159180424]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b1a31dd211e3d970e1922662756c97195260300a", "fields": {"departement": "94", "stop_lat": 48.808942621482075, "code_postal": "94046", "stop_lon": 2.457668352733885, "coord": [48.808942621482075, 2.457668352733885], "stop_id": 3619956, "stop_desc": "FACE 40 RUE DANIELLE CASANOVA - 94046", "stop_name": "PLANETES"}, "geometry": {"type": "Point", "coordinates": [2.457668352733885, 48.808942621482075]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "412b0609a10c8936cbd8b74b7383dc239ffffc89", "fields": {"departement": "94", "stop_lat": 48.808296339137414, "code_postal": "94046", "stop_lon": 2.456836799625507, "coord": [48.808296339137414, 2.456836799625507], "stop_id": 3619925, "stop_desc": "28-30 RUE DANIELLE CASANOVA - 94046", "stop_name": "PLANETES"}, "geometry": {"type": "Point", "coordinates": [2.456836799625507, 48.808296339137414]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "de565c857726975f0ec0b442b8547871eb425994", "fields": {"departement": "94", "stop_lat": 48.808296339137414, "code_postal": "94046", "stop_lon": 2.456836799625507, "coord": [48.808296339137414, 2.456836799625507], "stop_id": 3619955, "stop_desc": "28-30 RUE DANIELLE CASANOVA - 94046", "stop_name": "PLANETES"}, "geometry": {"type": "Point", "coordinates": [2.456836799625507, 48.808296339137414]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a678b6ff5abffbe448f5a71aa604098618ac0c2e", "fields": {"departement": "94", "stop_lat": 48.80734290991733, "code_postal": "94046", "stop_lon": 2.4382199658929267, "coord": [48.80734290991733, 2.4382199658929267], "stop_id": 3619941, "stop_desc": "179 AVENUE DU GENERAL LECLERC - 94046", "stop_name": "CECILE"}, "geometry": {"type": "Point", "coordinates": [2.4382199658929267, 48.80734290991733]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fd5a5d3e474b908d7edca544a466a71f097e2cc3", "fields": {"departement": "77", "stop_lat": 48.82710339673683, "code_postal": "77169", "stop_lon": 2.5954543717637324, "coord": [48.82710339673683, 2.5954543717637324], "stop_id": 3639458, "stop_desc": "FACE 46 AVENUE CHARLES BRAS - 77169", "stop_name": "MALNOUE - PLACE AUGUSTE LEGEMBLE"}, "geometry": {"type": "Point", "coordinates": [2.5954543717637324, 48.82710339673683]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3da07710eb6366fbfe022dc9dc06d11ed599e08e", "fields": {"departement": "77", "stop_lat": 48.827022862534776, "code_postal": "77169", "stop_lon": 2.5952906221299465, "coord": [48.827022862534776, 2.5952906221299465], "stop_id": 3639459, "stop_desc": "29 AVENUE CHARLES BRAS - 77169", "stop_name": "MALNOUE - PLACE AUGUSTE LEGEMBLE"}, "geometry": {"type": "Point", "coordinates": [2.5952906221299465, 48.827022862534776]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "14de6d1fdd923a559bd7def6b93dfb427dafed22", "fields": {"departement": "77", "stop_lat": 48.830592439926875, "code_postal": "77169", "stop_lon": 2.5904211810401434, "coord": [48.830592439926875, 2.5904211810401434], "stop_id": 3639461, "stop_desc": "RUE JEAN MONNET - 77169", "stop_name": "MALNOUE - BOIS DES SOUCHES"}, "geometry": {"type": "Point", "coordinates": [2.5904211810401434, 48.830592439926875]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2b61a270176042684859225bcda0d8da9c4d0fb8", "fields": {"departement": "77", "stop_lat": 48.83991488440749, "code_postal": "77083", "stop_lon": 2.6017813972024593, "coord": [48.83991488440749, 2.6017813972024593], "stop_id": 3639454, "stop_desc": "0 AV FORESTIERE - 77083", "stop_name": "LES VIGNES DE BAILLY"}, "geometry": {"type": "Point", "coordinates": [2.6017813972024593, 48.83991488440749]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ea8f473f639568d8886f971d4fb28810c44497b6", "fields": {"departement": "77", "stop_lat": 48.84111221087827, "code_postal": "77083", "stop_lon": 2.6049192081291013, "coord": [48.84111221087827, 2.6049192081291013], "stop_id": 3639452, "stop_desc": "PLACE PABLO PICASSO - 77083", "stop_name": "PLACE PABLO PICASSO"}, "geometry": {"type": "Point", "coordinates": [2.6049192081291013, 48.84111221087827]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "99fbb3fb9aa16cebde42d8435c60cefc05fb876d", "fields": {"departement": "94", "stop_lat": 48.81496864081074, "code_postal": "94046", "stop_lon": 2.421386626368657, "coord": [48.81496864081074, 2.421386626368657], "stop_id": 3663565, "stop_desc": "AVENUE DU GENERAL LECLERC - 94046", "stop_name": "ECOLE VETERINAIRE DE MAISONS-ALFORT-METRO"}, "geometry": {"type": "Point", "coordinates": [2.421386626368657, 48.81496864081074]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "50c9709dc5d55102621a792a1f3617170a5e9f97", "fields": {"departement": "77", "stop_lat": 48.826008002475554, "code_postal": "77337", "stop_lon": 2.6110484455710865, "coord": [48.826008002475554, 2.6110484455710865], "stop_id": 3639732, "stop_desc": "AVENUE DE L'EUROPE - 77337", "stop_name": "MALNOUE - STADE DOMINIQUE ROCHETEAU"}, "geometry": {"type": "Point", "coordinates": [2.6110484455710865, 48.826008002475554]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1bc9f9b7944d401d64edc14e865a5041d047bd51", "fields": {"departement": "77", "stop_lat": 48.829559283606066, "code_postal": "77169", "stop_lon": 2.5985431471483054, "coord": [48.829559283606066, 2.5985431471483054], "stop_id": 3639729, "stop_desc": "FACE 26 BOULEVARD ANCIEN MONASTERE - 77169", "stop_name": "MALNOUE - ANCIEN MONASTERE"}, "geometry": {"type": "Point", "coordinates": [2.5985431471483054, 48.829559283606066]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1312d4ad000e092c468ac567ab00db07857c2889", "fields": {"departement": "77", "stop_lat": 48.8263494686282, "code_postal": "77337", "stop_lon": 2.611077471598057, "coord": [48.8263494686282, 2.611077471598057], "stop_id": 3639733, "stop_desc": "AVENUE DE L'EUROPE - 77337", "stop_name": "MALNOUE - STADE DOMINIQUE ROCHETEAU"}, "geometry": {"type": "Point", "coordinates": [2.611077471598057, 48.8263494686282]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2d024cc14e688fc324ccf7bde93d8000e18c2722", "fields": {"departement": "94", "stop_lat": 48.809081950256626, "code_postal": "94046", "stop_lon": 2.453123721150605, "coord": [48.809081950256626, 2.453123721150605], "stop_id": 3663574, "stop_desc": "212 AVENUE DE LA REPUBLIQUE - 94046", "stop_name": "PONT DE MAISONS-ALFORT"}, "geometry": {"type": "Point", "coordinates": [2.453123721150605, 48.809081950256626]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f84de3ac9b02c6b8622b42020e1ccf6cbcd6808e", "fields": {"departement": "94", "stop_lat": 48.80231504419326, "code_postal": "94028", "stop_lon": 2.4611360862683753, "coord": [48.80231504419326, 2.4611360862683753], "stop_id": 3663577, "stop_desc": "FACE 62 RUE CHERET - 94028", "stop_name": "CHERET - LAFERRIERE"}, "geometry": {"type": "Point", "coordinates": [2.4611360862683753, 48.80231504419326]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0db5dbf04e4d6b6edac7410ab05a30e1813368c0", "fields": {"departement": "94", "stop_lat": 48.80978760160916, "code_postal": "94046", "stop_lon": 2.4482945155545006, "coord": [48.80978760160916, 2.4482945155545006], "stop_id": 3663572, "stop_desc": "114 AVENUE GAMBETTA - 94046", "stop_name": "RUE DE VINCENNES"}, "geometry": {"type": "Point", "coordinates": [2.4482945155545006, 48.80978760160916]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "015031f9233c246318bae385c480c4a89d611f3f", "fields": {"departement": "77", "stop_lat": 48.81154816455081, "code_postal": "77169", "stop_lon": 2.6219133055955757, "coord": [48.81154816455081, 2.6219133055955757], "stop_id": 3639738, "stop_desc": "R D'EMERY - 77169", "stop_name": "MAIRIE D'EMERAINVILLE"}, "geometry": {"type": "Point", "coordinates": [2.6219133055955757, 48.81154816455081]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b84b94593b7f2751059a7090ce745360c9569c29", "fields": {"departement": "94", "stop_lat": 48.815450541248154, "code_postal": "94046", "stop_lon": 2.4374327868943513, "coord": [48.815450541248154, 2.4374327868943513], "stop_id": 3663568, "stop_desc": "48-51 AVENUE FOCH - 94046", "stop_name": "MOULIN BRULE"}, "geometry": {"type": "Point", "coordinates": [2.4374327868943513, 48.815450541248154]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f4314c8be1187fbb6f9c6a2f0a394a59306a72cb", "fields": {"departement": "94", "stop_lat": 48.81532886691478, "code_postal": "94046", "stop_lon": 2.4323698992611313, "coord": [48.81532886691478, 2.4323698992611313], "stop_id": 3663567, "stop_desc": "AVENUE FOCH - 94046", "stop_name": "LES 7 ARBRES"}, "geometry": {"type": "Point", "coordinates": [2.4323698992611313, 48.81532886691478]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b4682b7d452a0786494ad5115d3c8d0cc9f55211", "fields": {"departement": "93", "stop_lat": 48.8234776672607, "code_postal": "93051", "stop_lon": 2.580123421212593, "coord": [48.8234776672607, 2.580123421212593], "stop_id": 3639467, "stop_desc": "FACE 3 AVENUE DES BOIS SAINT-MARTIN - 93051", "stop_name": "LES YVRIS - NOISY-LE-GRAND RER"}, "geometry": {"type": "Point", "coordinates": [2.580123421212593, 48.8234776672607]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "65f3ea43b929e566a09b9cbe223190fc9536315c", "fields": {"departement": "77", "stop_lat": 48.84353480306854, "code_postal": "77083", "stop_lon": 2.5817287775406523, "coord": [48.84353480306854, 2.5817287775406523], "stop_id": 3639714, "stop_desc": "BOULEVARD ARCHIMEDE - 77083", "stop_name": "NOISY-CHAMPS RER - DESCARTES"}, "geometry": {"type": "Point", "coordinates": [2.5817287775406523, 48.84353480306854]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0a5ccc8cedf519de1b3d307a14eab22c1b450d54", "fields": {"departement": "93", "stop_lat": 48.837188483091566, "code_postal": "93051", "stop_lon": 2.5778458092072993, "coord": [48.837188483091566, 2.5778458092072993], "stop_id": 3639472, "stop_desc": "0 BD DE CHAMPY RICHARDETS - 93051", "stop_name": "LA BUTTE AUX CAILLES"}, "geometry": {"type": "Point", "coordinates": [2.5778458092072993, 48.837188483091566]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "004227531ec27cffd1342b1782d31bf1f401c088", "fields": {"departement": "77", "stop_lat": 48.83812725871016, "code_postal": "77083", "stop_lon": 2.593140166185643, "coord": [48.83812725871016, 2.593140166185643], "stop_id": 3639479, "stop_desc": "RUE GALILEE - 77083", "stop_name": "BOIS DE L'ETANG-UNIVERSITE"}, "geometry": {"type": "Point", "coordinates": [2.593140166185643, 48.83812725871016]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c4fba1bc304f9b5a562676144a1d45d4e9977b34", "fields": {"departement": "93", "stop_lat": 48.831702442863055, "code_postal": "93051", "stop_lon": 2.583987347531766, "coord": [48.831702442863055, 2.583987347531766], "stop_id": 3639720, "stop_desc": "BOULEVARD RU DE NESLES - 93051", "stop_name": "LES AEROSTIERS"}, "geometry": {"type": "Point", "coordinates": [2.583987347531766, 48.831702442863055]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "91a8d9b2855271684653823e1cc04c45f51d48c6", "fields": {"departement": "77", "stop_lat": 48.835505119314526, "code_postal": "77083", "stop_lon": 2.5920925222541435, "coord": [48.835505119314526, 2.5920925222541435], "stop_id": 3639481, "stop_desc": "23-25 RUE GALILEE - 77083", "stop_name": "EINSTEIN-GALILEE"}, "geometry": {"type": "Point", "coordinates": [2.5920925222541435, 48.835505119314526]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "38b8f186753cab2cbc5327ff76c8b6473da20b02", "fields": {"departement": "93", "stop_lat": 48.83145003622353, "code_postal": "93051", "stop_lon": 2.575532123940181, "coord": [48.83145003622353, 2.575532123940181], "stop_id": 3639470, "stop_desc": "0 BD DES ASTRONAUTES - 93051", "stop_name": "MONTGOLFIERE"}, "geometry": {"type": "Point", "coordinates": [2.575532123940181, 48.83145003622353]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5ee23cb97d80e89db6bc6c2988bcf935a78145c8", "fields": {"departement": "93", "stop_lat": 48.829250443029785, "code_postal": "93051", "stop_lon": 2.574337694227571, "coord": [48.829250443029785, 2.574337694227571], "stop_id": 3639468, "stop_desc": "3 AV DES YVRIS - 93051", "stop_name": "VICTOR-HUGO"}, "geometry": {"type": "Point", "coordinates": [2.574337694227571, 48.829250443029785]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c6f092c2d232b5658d13bea26dfe4b15150c9236", "fields": {"departement": "77", "stop_lat": 48.83077726243114, "code_postal": "77169", "stop_lon": 2.588026125603078, "coord": [48.83077726243114, 2.588026125603078], "stop_id": 3639463, "stop_desc": "AV DE L'EUROPE - 77169", "stop_name": "LES 2 LACS"}, "geometry": {"type": "Point", "coordinates": [2.588026125603078, 48.83077726243114]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d896959490cb9fb0513df1473b60d75263247328", "fields": {"departement": "77", "stop_lat": 48.838512994627884, "code_postal": "77083", "stop_lon": 2.584986430503156, "coord": [48.838512994627884, 2.584986430503156], "stop_id": 3639718, "stop_desc": "AVENUE AMPERE - 77083", "stop_name": "NOBEL"}, "geometry": {"type": "Point", "coordinates": [2.584986430503156, 48.838512994627884]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b8624db8fa5cc497f4c2bbfa009305f8b167ae3f", "fields": {"departement": "94", "stop_lat": 48.809081950256626, "code_postal": "94046", "stop_lon": 2.453123721150605, "coord": [48.809081950256626, 2.453123721150605], "stop_id": 3663603, "stop_desc": "212 AVENUE DE LA REPUBLIQUE - 94046", "stop_name": "PONT DE MAISONS-ALFORT"}, "geometry": {"type": "Point", "coordinates": [2.453123721150605, 48.809081950256626]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9d2792a46749f0b4329bb9034216098375f6e2ae", "fields": {"departement": "94", "stop_lat": 48.80723447731543, "code_postal": "94068", "stop_lon": 2.4746869575894057, "coord": [48.80723447731543, 2.4746869575894057], "stop_id": 3663582, "stop_desc": "28 RUE DE LA VARENNE - 94068", "stop_name": "LIBERATION - RABELAIS"}, "geometry": {"type": "Point", "coordinates": [2.4746869575894057, 48.80723447731543]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bb1d14b99633eaeba329e290a07e560d5ed55482", "fields": {"departement": "94", "stop_lat": 48.80312425965535, "code_postal": "94068", "stop_lon": 2.4845268900734148, "coord": [48.80312425965535, 2.4845268900734148], "stop_id": 3663585, "stop_desc": "18 AVENUE EMILE ZOLA - 94068", "stop_name": "MAIRIE DE SAINT-MAUR"}, "geometry": {"type": "Point", "coordinates": [2.4845268900734148, 48.80312425965535]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "326caab3a893d80b65123e72e90595c490fcf910", "fields": {"departement": "94", "stop_lat": 48.79983814837087, "code_postal": "94028", "stop_lon": 2.4660688746577812, "coord": [48.79983814837087, 2.4660688746577812], "stop_id": 3663607, "stop_desc": "5 RUE DU PORT - 94028", "stop_name": "HOPITAL INTERCOMMUNAL"}, "geometry": {"type": "Point", "coordinates": [2.4660688746577812, 48.79983814837087]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "14d05d70c84bd01ebeae2cc3387b95df508d37c3", "fields": {"departement": "94", "stop_lat": 48.80010479141968, "code_postal": "94068", "stop_lon": 2.484164587731033, "coord": [48.80010479141968, 2.484164587731033], "stop_id": 3663586, "stop_desc": "AVENUE EMILE ZOLA - 94068", "stop_name": "QUATRE SEPTEMBRE"}, "geometry": {"type": "Point", "coordinates": [2.484164587731033, 48.80010479141968]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d2fc2674e5a05c13a406a62421be048d8a8e4ea4", "fields": {"departement": "94", "stop_lat": 48.815450541248154, "code_postal": "94046", "stop_lon": 2.4374327868943513, "coord": [48.815450541248154, 2.4374327868943513], "stop_id": 3663597, "stop_desc": "48-51 AVENUE FOCH - 94046", "stop_name": "MOULIN BRULE"}, "geometry": {"type": "Point", "coordinates": [2.4374327868943513, 48.815450541248154]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c2d755f3f177b32ac406a38639b6f801d7f6787e", "fields": {"departement": "94", "stop_lat": 48.79947927962356, "code_postal": "94068", "stop_lon": 2.4884348323622807, "coord": [48.79947927962356, 2.4884348323622807], "stop_id": 3663691, "stop_desc": "FACE 28-30 AVENUE HENRI MARTIN - 94068", "stop_name": "BIBLIOTHEQUE MUNICIPALE"}, "geometry": {"type": "Point", "coordinates": [2.4884348323622807, 48.79947927962356]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cf9be8f48721bf670f120c1b231501b1b5735060", "fields": {"departement": "94", "stop_lat": 48.80483918599314, "code_postal": "94068", "stop_lon": 2.485933228953106, "coord": [48.80483918599314, 2.485933228953106], "stop_id": 3663693, "stop_desc": "RUE ANDRE DE CAILLEUX - 94068", "stop_name": "LE PARC DE SAINT-MAUR RER"}, "geometry": {"type": "Point", "coordinates": [2.485933228953106, 48.80483918599314]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7f9559464654de7bc7032c99529f3b12d31a9646", "fields": {"departement": "94", "stop_lat": 48.79040663472656, "code_postal": "94068", "stop_lon": 2.4768868801941784, "coord": [48.79040663472656, 2.4768868801941784], "stop_id": 3663687, "stop_desc": "FACE AU 26 AVENUE D'ARROMANCHES - 94068", "stop_name": "SQUARE BEAUREPAIRE"}, "geometry": {"type": "Point", "coordinates": [2.4768868801941784, 48.79040663472656]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a594fee63af7d0448f80c2e054761e2d3508ffe7", "fields": {"departement": "94", "stop_lat": 48.80386787555055, "code_postal": "94068", "stop_lon": 2.4713308992074583, "coord": [48.80386787555055, 2.4713308992074583], "stop_id": 3663698, "stop_desc": "FACE 59 RUE DU PONT DE CRETEIL - 94068", "stop_name": "RUE DES REMISES"}, "geometry": {"type": "Point", "coordinates": [2.4713308992074583, 48.80386787555055]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e9e33b6c5364c880ce6909dde689daf0027fc370", "fields": {"departement": "94", "stop_lat": 48.80652822464246, "code_postal": "94068", "stop_lon": 2.4791209653403192, "coord": [48.80652822464246, 2.4791209653403192], "stop_id": 3663694, "stop_desc": "43-45 BOULEVARD RABELAIS - 94068", "stop_name": "CIMETIERE - RABELAIS"}, "geometry": {"type": "Point", "coordinates": [2.4791209653403192, 48.80652822464246]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0d0efc8c7406d05ee0e216f851de1803bd20a0be", "fields": {"departement": "94", "stop_lat": 48.80231504419326, "code_postal": "94028", "stop_lon": 2.4611360862683753, "coord": [48.80231504419326, 2.4611360862683753], "stop_id": 3663681, "stop_desc": "FACE 62 RUE CHERET - 94028", "stop_name": "CHERET - LAFERRIERE"}, "geometry": {"type": "Point", "coordinates": [2.4611360862683753, 48.80231504419326]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "620b35a2dee80ea06d5b74fff1dd8b827b169ae4", "fields": {"departement": "94", "stop_lat": 48.80580785347852, "code_postal": "94046", "stop_lon": 2.455701704066623, "coord": [48.80580785347852, 2.455701704066623], "stop_id": 3663702, "stop_desc": "RUE MARC SANGNIER - 94046", "stop_name": "DANIELLE CASANOVA"}, "geometry": {"type": "Point", "coordinates": [2.455701704066623, 48.80580785347852]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "da07236ec393baedc2fbe338e9f4876904d3fc71", "fields": {"departement": "94", "stop_lat": 48.808296339137414, "code_postal": "94046", "stop_lon": 2.456836799625507, "coord": [48.808296339137414, 2.456836799625507], "stop_id": 3663703, "stop_desc": "28-30 RUE DANIELLE CASANOVA - 94046", "stop_name": "PLANETES"}, "geometry": {"type": "Point", "coordinates": [2.456836799625507, 48.808296339137414]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c644343d05127b54bdab6aa2a2ecf5cb43f4d076", "fields": {"departement": "94", "stop_lat": 48.80797351546657, "code_postal": "94046", "stop_lon": 2.456101258640502, "coord": [48.80797351546657, 2.456101258640502], "stop_id": 3663679, "stop_desc": "27 RUE DANIELLE CASANOVA - 94046", "stop_name": "PLANETES"}, "geometry": {"type": "Point", "coordinates": [2.456101258640502, 48.80797351546657]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4c3bfe08ab8621cf20649921afbbf47add456c91", "fields": {"departement": "94", "stop_lat": 48.81127447981165, "code_postal": "94046", "stop_lon": 2.444038322782514, "coord": [48.81127447981165, 2.444038322782514], "stop_id": 3663675, "stop_desc": "122 R DE NORMANDIE - 94046", "stop_name": "RENE COTY"}, "geometry": {"type": "Point", "coordinates": [2.444038322782514, 48.81127447981165]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3d40b771bff9955f82b20afd30bed7e7b9392460", "fields": {"departement": "93", "stop_lat": 48.91482097258037, "code_postal": "93001", "stop_lon": 2.402977354782398, "coord": [48.91482097258037, 2.402977354782398], "stop_id": 3663880, "stop_desc": "RUE DANIELLE CASANOVA - 93001", "stop_name": "FORT D'AUBERVILLIERS - DANIELLE CASANOVA"}, "geometry": {"type": "Point", "coordinates": [2.402977354782398, 48.91482097258037]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "54abed8e95926e4554192e97e122105b4a3d6a46", "fields": {"departement": "93", "stop_lat": 48.923133690428365, "code_postal": "93027", "stop_lon": 2.3844953179804316, "coord": [48.923133690428365, 2.3844953179804316], "stop_id": 3663888, "stop_desc": "6 R SUZANNE MASSON - 93027", "stop_name": "LA COURNEUVE - AUBERVILLIERS RER"}, "geometry": {"type": "Point", "coordinates": [2.3844953179804316, 48.923133690428365]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cdf90dffe467daff02ca165f2123d2c1e284a5cf", "fields": {"departement": "93", "stop_lat": 48.91801600642956, "code_postal": "93001", "stop_lon": 2.39391330052154, "coord": [48.91801600642956, 2.39391330052154], "stop_id": 3663821, "stop_desc": "70-72 RUE DANIELLE CASANOVA - 93001", "stop_name": "DANIELLE CASANOVA - PONT BLANC"}, "geometry": {"type": "Point", "coordinates": [2.39391330052154, 48.91801600642956]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "413108bf4bdcb5dc1037c6d7faf0ad53c45f599a", "fields": {"departement": "93", "stop_lat": 48.92099148363308, "code_postal": "93001", "stop_lon": 2.392225562923133, "coord": [48.92099148363308, 2.392225562923133], "stop_id": 3663886, "stop_desc": "PETIT CHEMIN DU PONT BLANC - 93001", "stop_name": "PETIT CHEMIN DU PONT BLANC"}, "geometry": {"type": "Point", "coordinates": [2.392225562923133, 48.92099148363308]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "75151ed5aab30be49a6fe6308b0c074b989ab6c5", "fields": {"departement": "95", "stop_lat": 48.972903028630206, "code_postal": "95268", "stop_lon": 2.417002162798139, "coord": [48.972903028630206, 2.417002162798139], "stop_id": 3663915, "stop_desc": "AVENUE DE STALINGRAD - 95268", "stop_name": "COLLEGE PABLO PICASSO"}, "geometry": {"type": "Point", "coordinates": [2.417002162798139, 48.972903028630206]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "439acfda50ef094694fb1df6ef75127be5a455ca", "fields": {"departement": "95", "stop_lat": 48.97268715932921, "code_postal": "95268", "stop_lon": 2.417288494023461, "coord": [48.97268715932921, 2.417288494023461], "stop_id": 3663914, "stop_desc": "AVENUE DE STALINGRAD - 95268", "stop_name": "COLLEGE PABLO PICASSO"}, "geometry": {"type": "Point", "coordinates": [2.417288494023461, 48.97268715932921]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a5a18d60902733188738a62b4b7e82a2ea2cf35d", "fields": {"departement": "95", "stop_lat": 48.97620613047465, "code_postal": "95268", "stop_lon": 2.4227136194721237, "coord": [48.97620613047465, 2.4227136194721237], "stop_id": 3663916, "stop_desc": "AV DE STALINGRAD - 95268", "stop_name": "ROND-POINT DU CHRIST"}, "geometry": {"type": "Point", "coordinates": [2.4227136194721237, 48.97620613047465]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5c8f70b21fe977ccb5cf7065039aed05f674ded0", "fields": {"departement": "93", "stop_lat": 48.929037580636226, "code_postal": "93027", "stop_lon": 2.3857827838557766, "coord": [48.929037580636226, 2.3857827838557766], "stop_id": 3663891, "stop_desc": "BOULEVARD PASTEUR - 93027", "stop_name": "SIX ROUTES - TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.3857827838557766, 48.929037580636226]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "81f2de6bb7408e9a6ba8ca77a2ccfc726a925fd8", "fields": {"departement": "93", "stop_lat": 48.92638678455641, "code_postal": "93027", "stop_lon": 2.3849347158324132, "coord": [48.92638678455641, 2.3849347158324132], "stop_id": 3663889, "stop_desc": "80-82 BOULEVARD PASTEUR - 93027", "stop_name": "MICHELET"}, "geometry": {"type": "Point", "coordinates": [2.3849347158324132, 48.92638678455641]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "365bea0274bd7a588ac47143fb4b8f8902fa97c8", "fields": {"departement": "95", "stop_lat": 48.98460208226865, "code_postal": "95277", "stop_lon": 2.442074938709983, "coord": [48.98460208226865, 2.442074938709983], "stop_id": 3663864, "stop_desc": "RUE DE PARIS - 95277", "stop_name": "RUE D'AULNAY"}, "geometry": {"type": "Point", "coordinates": [2.442074938709983, 48.98460208226865]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1fbc2543966b3c6c2f414fd0ecbaf27374d43860", "fields": {"departement": "93", "stop_lat": 48.91495572493585, "code_postal": "93001", "stop_lon": 2.403072973878873, "coord": [48.91495572493585, 2.403072973878873], "stop_id": 3663879, "stop_desc": "RUE DANIELLE CASANOVA - 93001", "stop_name": "FORT D'AUBERVILLIERS - DANIELLE CASANOVA"}, "geometry": {"type": "Point", "coordinates": [2.403072973878873, 48.91495572493585]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ecb41b83fbb61160320feff00b972571c3d63ee6", "fields": {"departement": "95", "stop_lat": 48.971790664826926, "code_postal": "95268", "stop_lon": 2.3984358702053443, "coord": [48.971790664826926, 2.3984358702053443], "stop_id": 3664160, "stop_desc": "RUE LE NOTRE - 95268", "stop_name": "HOTEL DE VILLE DE GARGES-LES-GONESSE"}, "geometry": {"type": "Point", "coordinates": [2.3984358702053443, 48.971790664826926]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "81ca37a867bea12c1e2795171828f2a9888e150d", "fields": {"departement": "75", "stop_lat": 48.84976038882875, "code_postal": "75107", "stop_lon": 2.3150976993008685, "coord": [48.84976038882875, 2.3150976993008685], "stop_id": 3813120, "stop_desc": "47 BIS BOULEVARD DES INVALIDES - 75107", "stop_name": "OUDINOT"}, "geometry": {"type": "Point", "coordinates": [2.3150976993008685, 48.84976038882875]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "12ebd35a94bd94076f1cf1d9a6f183b0e4db1ac8", "fields": {"departement": "75", "stop_lat": 48.8590686921895, "code_postal": "75107", "stop_lon": 2.303597810066123, "coord": [48.8590686921895, 2.303597810066123], "stop_id": 3813130, "stop_desc": "31 AVENUE BOSQUET - 75107", "stop_name": "BOSQUET - SAINT-DOMINIQUE"}, "geometry": {"type": "Point", "coordinates": [2.303597810066123, 48.8590686921895]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d7a658d4db20a8f539a2abda0b8f91dfa69eeb12", "fields": {"departement": "75", "stop_lat": 48.85851141448971, "code_postal": "75107", "stop_lon": 2.3033938626480066, "coord": [48.85851141448971, 2.3033938626480066], "stop_id": 3813131, "stop_desc": "20 AVENUE BOSQUET - 75107", "stop_name": "BOSQUET - SAINT-DOMINIQUE"}, "geometry": {"type": "Point", "coordinates": [2.3033938626480066, 48.85851141448971]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "38043b868c5268cefcc9c0388aa5ac2c6ed03d76", "fields": {"departement": "75", "stop_lat": 48.86207006010493, "code_postal": "75107", "stop_lon": 2.302124736083145, "coord": [48.86207006010493, 2.302124736083145], "stop_id": 3813132, "stop_desc": "1 PLACE DE LA RESISTANCE - 75107", "stop_name": "BOSQUET - RAPP"}, "geometry": {"type": "Point", "coordinates": [2.302124736083145, 48.86207006010493]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0e4ac50b53a92c27b641b186359f8916015858c0", "fields": {"departement": "75", "stop_lat": 48.870013676330444, "code_postal": "75108", "stop_lon": 2.2982229974308774, "coord": [48.870013676330444, 2.2982229974308774], "stop_id": 3813136, "stop_desc": "60 AVENUE MARCEAU - 75108", "stop_name": "BASSANO"}, "geometry": {"type": "Point", "coordinates": [2.2982229974308774, 48.870013676330444]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f9eff8ad2f39bc9474101cc9256cab06745e3041", "fields": {"departement": "75", "stop_lat": 48.874542100215145, "code_postal": "75117", "stop_lon": 2.294758885161445, "coord": [48.874542100215145, 2.294758885161445], "stop_id": 3813139, "stop_desc": "FACE 2 AVENUE MAC MAHON - 75117", "stop_name": "CHARLES DE GAULLE - ETOILE - MAC MAHON"}, "geometry": {"type": "Point", "coordinates": [2.294758885161445, 48.874542100215145]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2af6ae76e79bf9994e266f48302305eea220e092", "fields": {"departement": "75", "stop_lat": 48.87260124918962, "code_postal": "75116", "stop_lon": 2.295918541882177, "coord": [48.87260124918962, 2.295918541882177], "stop_id": 3813151, "stop_desc": "87 AVENUE MARCEAU - 75116", "stop_name": "CHARLES DE GAULLE - ETOILE - MARCEAU"}, "geometry": {"type": "Point", "coordinates": [2.295918541882177, 48.87260124918962]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d4a8ec4a0467b58c3f1d6f93bfbad464f13f69a7", "fields": {"departement": "75", "stop_lat": 48.86481072678524, "code_postal": "75116", "stop_lon": 2.300515452987258, "coord": [48.86481072678524, 2.300515452987258], "stop_id": 3813154, "stop_desc": "1 AVENUE DU PRESIDENT WILSON - 75116", "stop_name": "ALMA - MARCEAU"}, "geometry": {"type": "Point", "coordinates": [2.300515452987258, 48.86481072678524]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d9029b9c614beeb23d650da83cabba4f4498aad1", "fields": {"departement": "75", "stop_lat": 48.84056388985213, "code_postal": "75116", "stop_lon": 2.2643688082936575, "coord": [48.84056388985213, 2.2643688082936575], "stop_id": 3813159, "stop_desc": "158 AVENUE DE VERSAILLES - 75116", "stop_name": "VERSAILLES - EXELMANS"}, "geometry": {"type": "Point", "coordinates": [2.2643688082936575, 48.84056388985213]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "82527b19bfa67033eeb04d731e192489aca0b34b", "fields": {"departement": "75", "stop_lat": 48.84212244092079, "code_postal": "75116", "stop_lon": 2.2561968350770245, "coord": [48.84212244092079, 2.2561968350770245], "stop_id": 3813167, "stop_desc": "FACE 62 BOULEVARD MURAT - 75116", "stop_name": "LYCEE CLAUDE BERNARD"}, "geometry": {"type": "Point", "coordinates": [2.2561968350770245, 48.84212244092079]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c45e42a6d0f78ef47dc198d912abdb67eabb597d", "fields": {"departement": "75", "stop_lat": 48.8449274125874, "code_postal": "75116", "stop_lon": 2.257472454392711, "coord": [48.8449274125874, 2.257472454392711], "stop_id": 3813169, "stop_desc": "33 BOULEVARD MURAT - 75116", "stop_name": "PORTE MOLITOR"}, "geometry": {"type": "Point", "coordinates": [2.257472454392711, 48.8449274125874]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6c555cb9834d6602e87ea488085a3af71e87f9f5", "fields": {"departement": "75", "stop_lat": 48.84485529308673, "code_postal": "75116", "stop_lon": 2.257145756731432, "coord": [48.84485529308673, 2.257145756731432], "stop_id": 3813170, "stop_desc": "FACE 31 BOULEVARD MURAT - 75116", "stop_name": "PORTE MOLITOR"}, "geometry": {"type": "Point", "coordinates": [2.257145756731432, 48.84485529308673]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ca5020d34523114d40b5f137722b94b66eb6b091", "fields": {"departement": "75", "stop_lat": 48.84750772175131, "code_postal": "75116", "stop_lon": 2.258816640228948, "coord": [48.84750772175131, 2.258816640228948], "stop_id": 3813171, "stop_desc": "5 BOULEVARD MURAT - 75116", "stop_name": "PORTE D'AUTEUIL"}, "geometry": {"type": "Point", "coordinates": [2.258816640228948, 48.84750772175131]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bb80ea06e659649e50569f60981f2c78a84a69b1", "fields": {"departement": "75", "stop_lat": 48.870803788776946, "code_postal": "75116", "stop_lon": 2.275211746329278, "coord": [48.870803788776946, 2.275211746329278], "stop_id": 3813187, "stop_desc": "BOULEVARD LANNES - 75116", "stop_name": "PORTE DAUPHINE - MARECHAL DE LATTRE DE TASSIGNY"}, "geometry": {"type": "Point", "coordinates": [2.275211746329278, 48.870803788776946]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ea2c2efafbca32eeed267dfe7203d1019d5c1636", "fields": {"departement": "75", "stop_lat": 48.87535355134824, "code_postal": "75116", "stop_lon": 2.2795526866497604, "coord": [48.87535355134824, 2.2795526866497604], "stop_id": 3813190, "stop_desc": "BOULEVARD DE L'AMIRAL BRUIX - 75116", "stop_name": "MARBEAU"}, "geometry": {"type": "Point", "coordinates": [2.2795526866497604, 48.87535355134824]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cb0358d41efb75ca420f2aa2252b6d2fb0a158d7", "fields": {"departement": "75", "stop_lat": 48.876397453186705, "code_postal": "75116", "stop_lon": 2.2824673400796414, "coord": [48.876397453186705, 2.2824673400796414], "stop_id": 3813191, "stop_desc": "11 BOULEVARD DE L'AMIRAL BRUIX - 75116", "stop_name": "PORTE MAILLOT - MALAKOFF"}, "geometry": {"type": "Point", "coordinates": [2.2824673400796414, 48.876397453186705]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4b7f8708287af4bcdbc6d4efa41e18216b5e40db", "fields": {"departement": "75", "stop_lat": 48.878707984696156, "code_postal": "75117", "stop_lon": 2.284236266860388, "coord": [48.878707984696156, 2.284236266860388], "stop_id": 3813194, "stop_desc": "FACE 93 BOULEVARD GOUVION-SAINT-CYR - 75117", "stop_name": "PORTE MAILLOT - PALAIS DES CONGRES"}, "geometry": {"type": "Point", "coordinates": [2.284236266860388, 48.878707984696156]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5c5dfd8e8021851daeb7f367ff9624e5bf1ba8b8", "fields": {"departement": "75", "stop_lat": 48.886143903230625, "code_postal": "75117", "stop_lon": 2.2927051939001406, "coord": [48.886143903230625, 2.2927051939001406], "stop_id": 3813200, "stop_desc": "15 AVENUE STEPHANE MALLARME - 75117", "stop_name": "PORTE DE CHAMPERRET"}, "geometry": {"type": "Point", "coordinates": [2.2927051939001406, 48.886143903230625]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7121554b013e2c0f807a220320f35d8eff68ee9c", "fields": {"departement": "75", "stop_lat": 48.837386628366765, "code_postal": "75116", "stop_lon": 2.257130057937121, "coord": [48.837386628366765, 2.257130057937121], "stop_id": 3813203, "stop_desc": "PLACE DE LA PORTE DE SAINT-CLOUD - 75116", "stop_name": "PORTE DE SAINT-CLOUD"}, "geometry": {"type": "Point", "coordinates": [2.257130057937121, 48.837386628366765]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1cc3b13b783835e863fc8676f526f5b0075176e5", "fields": {"departement": "75", "stop_lat": 48.867508893541654, "code_postal": "75120", "stop_lon": 2.409129460189989, "coord": [48.867508893541654, 2.409129460189989], "stop_id": 3813318, "stop_desc": "46 BD MORTIER - 75120", "stop_name": "SEVERINE"}, "geometry": {"type": "Point", "coordinates": [2.409129460189989, 48.867508893541654]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "811cbb5b933135a159f897389a84db87af192977", "fields": {"departement": "75", "stop_lat": 48.87200276506684, "code_postal": "75120", "stop_lon": 2.408795086135347, "coord": [48.87200276506684, 2.408795086135347], "stop_id": 3813320, "stop_desc": "108 BD MORTIER - 75120", "stop_name": "ADRIENNE BOLLAND"}, "geometry": {"type": "Point", "coordinates": [2.408795086135347, 48.87200276506684]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8b3e656511b86a3ffc0d89bd18f602e32567e2a8", "fields": {"departement": "75", "stop_lat": 48.87233553231549, "code_postal": "75120", "stop_lon": 2.408400442346118, "coord": [48.87233553231549, 2.408400442346118], "stop_id": 3813321, "stop_desc": "109 BD MORTIER - 75120", "stop_name": "ADRIENNE BOLLAND"}, "geometry": {"type": "Point", "coordinates": [2.408400442346118, 48.87233553231549]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "858a0a67373bba1388ff445e53a012123ec6c714", "fields": {"departement": "75", "stop_lat": 48.89769947037563, "code_postal": "75119", "stop_lon": 2.386721230669195, "coord": [48.89769947037563, 2.386721230669195], "stop_id": 3813331, "stop_desc": "FACE 81 BD MACDONALD - 75119", "stop_name": "PORTE DE LA VILLETTE - CITE DES SCIENCES ET DE L'INDUSTRIE"}, "geometry": {"type": "Point", "coordinates": [2.386721230669195, 48.89769947037563]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a6d5ea72a42da17d6f8020d14958dfb0ca31816f", "fields": {"departement": "75", "stop_lat": 48.898426076934854, "code_postal": "75118", "stop_lon": 2.3622813706471204, "coord": [48.898426076934854, 2.3622813706471204], "stop_id": 3813339, "stop_desc": "17-19 BD NEY - 75118", "stop_name": "COLETTE BESSON"}, "geometry": {"type": "Point", "coordinates": [2.3622813706471204, 48.898426076934854]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f08274628c42247ba7ddd1bdc9bd0bda35a60678", "fields": {"departement": "75", "stop_lat": 48.89836376395667, "code_postal": "75118", "stop_lon": 2.35925524128409, "coord": [48.89836376395667, 2.35925524128409], "stop_id": 3813341, "stop_desc": "31 BD NEY - 75118", "stop_name": "PORTE DE LA CHAPELLE"}, "geometry": {"type": "Point", "coordinates": [2.35925524128409, 48.89836376395667]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c9183b9b504cc6314489f1e6d6500e05cb49b28e", "fields": {"departement": "75", "stop_lat": 48.83648174358046, "code_postal": "75115", "stop_lon": 2.2772677810199293, "coord": [48.83648174358046, 2.2772677810199293], "stop_id": 3813503, "stop_desc": "12 BOULEVARD VICTOR - 75115", "stop_name": "BALARD"}, "geometry": {"type": "Point", "coordinates": [2.2772677810199293, 48.83648174358046]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1993d69f327958feee17d2601a0220d3f366610d", "fields": {"departement": "75", "stop_lat": 48.83475004437327, "code_postal": "75115", "stop_lon": 2.283341791320841, "coord": [48.83475004437327, 2.283341791320841], "stop_id": 3813505, "stop_desc": "29 BOULEVARD VICTOR - 75115", "stop_name": "DESNOUETTES"}, "geometry": {"type": "Point", "coordinates": [2.283341791320841, 48.83475004437327]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f7bc13b7cc80c76724c0a591c654f3457d8020e3", "fields": {"departement": "75", "stop_lat": 48.82854619829102, "code_postal": "75115", "stop_lon": 2.300704479347048, "coord": [48.82854619829102, 2.300704479347048], "stop_id": 3813510, "stop_desc": "167 BOULEVARD LEFEBVRE - 75115", "stop_name": "BRANCION"}, "geometry": {"type": "Point", "coordinates": [2.300704479347048, 48.82854619829102]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "30b272a819400805f406c5879555537f64c64a58", "fields": {"departement": "75", "stop_lat": 48.82062468519013, "code_postal": "75114", "stop_lon": 2.338084930375419, "coord": [48.82062468519013, 2.338084930375419], "stop_id": 3813523, "stop_desc": "FACE 15 BIS BD JOURDAN - 75114", "stop_name": "CITE UNIVERSITAIRE"}, "geometry": {"type": "Point", "coordinates": [2.338084930375419, 48.82062468519013]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "81f025322450c6a1cd67e2d6b49ce1ce07e22cd6", "fields": {"departement": "75", "stop_lat": 48.81971390717928, "code_postal": "75113", "stop_lon": 2.364080820209414, "coord": [48.81971390717928, 2.364080820209414], "stop_id": 3813530, "stop_desc": "FACE 128 BOULEVARD MASSENA - 75113", "stop_name": "PORTE DE CHOISY"}, "geometry": {"type": "Point", "coordinates": [2.364080820209414, 48.81971390717928]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5e9ba175629c5ae07111b596434791e0bc22ab7f", "fields": {"departement": "75", "stop_lat": 48.8318435059448, "code_postal": "75112", "stop_lon": 2.3984886704251625, "coord": [48.8318435059448, 2.3984886704251625], "stop_id": 3813540, "stop_desc": "FACE 15 BD PONIATOWSKI - 75112", "stop_name": "PORTE DE CHARENTON"}, "geometry": {"type": "Point", "coordinates": [2.3984886704251625, 48.8318435059448]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7f1a7637e38caa9a3156a4adfb68224cf8c4561c", "fields": {"departement": "75", "stop_lat": 48.835173857132695, "code_postal": "75112", "stop_lon": 2.405912492947947, "coord": [48.835173857132695, 2.405912492947947], "stop_id": 3813543, "stop_desc": "117 BD PONIATOWSKI - 75112", "stop_name": "PORTE DOREE"}, "geometry": {"type": "Point", "coordinates": [2.405912492947947, 48.835173857132695]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f87eb0277164ea8e35e48ac0187864d408ddc43b", "fields": {"departement": "75", "stop_lat": 48.84352994061545, "code_postal": "75112", "stop_lon": 2.4098723877108132, "coord": [48.84352994061545, 2.4098723877108132], "stop_id": 3813547, "stop_desc": "FACE 70 BD SOULT - 75112", "stop_name": "ALEXANDRA DAVID-NEEL"}, "geometry": {"type": "Point", "coordinates": [2.4098723877108132, 48.84352994061545]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a4bb88752d6017a52470bf6e47730f1f5e7b3553", "fields": {"departement": "94", "stop_lat": 48.8152746562946, "code_postal": "94043", "stop_lon": 2.360866740991549, "coord": [48.8152746562946, 2.360866740991549], "stop_id": 3864878, "stop_desc": "13 AVENUE DE FONTAINEBLEAU - 94043", "stop_name": "ROGER SALENGRO - FONTAINEBLEAU"}, "geometry": {"type": "Point", "coordinates": [2.360866740991549, 48.8152746562946]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "af5137f56ab134bfbe91fa50daf2502987f93a33", "fields": {"departement": "94", "stop_lat": 48.79463978887536, "code_postal": "94076", "stop_lon": 2.354205074984419, "coord": [48.79463978887536, 2.354205074984419], "stop_id": 3864891, "stop_desc": "6-8 RUE DE VERDUN - 94076", "stop_name": "INSTITUT GUSTAVE ROUSSY"}, "geometry": {"type": "Point", "coordinates": [2.354205074984419, 48.79463978887536]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "29bf1c7079f9d6ddee344f4df827ea7d5e1064df", "fields": {"departement": "94", "stop_lat": 48.76992408524456, "code_postal": "94021", "stop_lon": 2.3378937546024634, "coord": [48.76992408524456, 2.3378937546024634], "stop_id": 3864910, "stop_desc": "FACE 88/92 BOULEVARD JEAN MERMOZ - 94021", "stop_name": "CROIX DU SUD - CENTRE DE PNEUMOLOGIE"}, "geometry": {"type": "Point", "coordinates": [2.3378937546024634, 48.76992408524456]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d0f3069203adad5fb0885603e23324590652f9b3", "fields": {"departement": "94", "stop_lat": 48.76764111423409, "code_postal": "94021", "stop_lon": 2.336180532146978, "coord": [48.76764111423409, 2.336180532146978], "stop_id": 3864911, "stop_desc": "130 BOULEVARD JEAN MERMOZ - 94021", "stop_name": "LOUIS BLERIOT - CIMETIERE INTERCOMMUNAL"}, "geometry": {"type": "Point", "coordinates": [2.336180532146978, 48.76764111423409]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "184a0a8f9e1175b441694a3c6ae1b843ccc84228", "fields": {"departement": "94", "stop_lat": 48.760639333501395, "code_postal": "94021", "stop_lon": 2.3410068829777955, "coord": [48.760639333501395, 2.3410068829777955], "stop_id": 3864915, "stop_desc": "CHAUSSEE CIRCULAIRE OUEST DE L'AVENUE GEORGES GUYNEMER - 94021", "stop_name": "MARCHE DE RUNGIS - ENTREE E1"}, "geometry": {"type": "Point", "coordinates": [2.3410068829777955, 48.760639333501395]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a2dc7c2b569d9d243d57aaec184859acc8a48ac4", "fields": {"departement": "94", "stop_lat": 48.75535400244807, "code_postal": "94065", "stop_lon": 2.3465662692692884, "coord": [48.75535400244807, 2.3465662692692884], "stop_id": 3864919, "stop_desc": "RUE CHARLES LINDBERG - 94065", "stop_name": "LES CLOSEAUX"}, "geometry": {"type": "Point", "coordinates": [2.3465662692692884, 48.75535400244807]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "238e03d44743a3aab939bebd4a0bfc23f1c2fa83", "fields": {"departement": "94", "stop_lat": 48.749097806434726, "code_postal": "94065", "stop_lon": 2.3509417492951146, "coord": [48.749097806434726, 2.3509417492951146], "stop_id": 3864934, "stop_desc": "6 PLACE DU GENERAL DE GAULLE - 94065", "stop_name": "GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.3509417492951146, 48.749097806434726]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c95239c3e5485eafc1378dee8c59353883cfc641", "fields": {"departement": "92", "stop_lat": 48.884961254395016, "code_postal": "92062", "stop_lon": 2.250433527024066, "coord": [48.884961254395016, 2.250433527024066], "stop_id": 3877771, "stop_desc": "58 QUAI DE DION BOUTON - 92062", "stop_name": "BELLINI"}, "geometry": {"type": "Point", "coordinates": [2.250433527024066, 48.884961254395016]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4591099420efb976e3eb0ddfe5ec332d5cd06f36", "fields": {"departement": "92", "stop_lat": 48.88463612649936, "code_postal": "92062", "stop_lon": 2.248280930450262, "coord": [48.88463612649936, 2.248280930450262], "stop_id": 3877772, "stop_desc": "FACE 13 BOULEVARD SOLJENITSYNE - 92062", "stop_name": "SOLJENITSYNE"}, "geometry": {"type": "Point", "coordinates": [2.248280930450262, 48.88463612649936]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "50ea912578480926c5c2ac1644b5d050547f1df7", "fields": {"departement": "92", "stop_lat": 48.88371676955176, "code_postal": "92062", "stop_lon": 2.233851265998093, "coord": [48.88371676955176, 2.233851265998093], "stop_id": 3877781, "stop_desc": "RUE DE LA REPUBLIQUE - 92062", "stop_name": "GARE DE PUTEAUX"}, "geometry": {"type": "Point", "coordinates": [2.233851265998093, 48.88371676955176]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "70c717cac01b1a5757112c6a2e47beb9bb2538d4", "fields": {"departement": "92", "stop_lat": 48.88441324201123, "code_postal": "92062", "stop_lon": 2.2287532212789096, "coord": [48.88441324201123, 2.2287532212789096], "stop_id": 3877783, "stop_desc": "167 RUE DE LA REPUBLIQUE - 92062", "stop_name": "PALISSY"}, "geometry": {"type": "Point", "coordinates": [2.2287532212789096, 48.88441324201123]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dd5325205b972b50f65206006ea65c849e3c5c8f", "fields": {"departement": "92", "stop_lat": 48.885913770917476, "code_postal": "92050", "stop_lon": 2.2189516798227937, "coord": [48.885913770917476, 2.2189516798227937], "stop_id": 3877785, "stop_desc": "257 AVENUE GEORGES CLEMENCEAU - 92050", "stop_name": "LES FONTENELLES"}, "geometry": {"type": "Point", "coordinates": [2.2189516798227937, 48.885913770917476]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "864afce1491722391a99410354d28822bf5d351d", "fields": {"departement": "92", "stop_lat": 48.88628184978007, "code_postal": "92050", "stop_lon": 2.2098473916330406, "coord": [48.88628184978007, 2.2098473916330406], "stop_id": 3877790, "stop_desc": "128 AVENUE GEORGES CLEMENCEAU - 92050", "stop_name": "CLEMENCEAU - SADI CARNOT"}, "geometry": {"type": "Point", "coordinates": [2.2098473916330406, 48.88628184978007]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dba462e68d95a4e760537971ad63d91b38e8e264", "fields": {"departement": "92", "stop_lat": 48.886856639445476, "code_postal": "92050", "stop_lon": 2.201355691235118, "coord": [48.886856639445476, 2.201355691235118], "stop_id": 3877794, "stop_desc": "10 AVENUE GEORGES CLEMENCEAU - 92050", "stop_name": "PLACE DE LA BOULE - CLEMENCEAU"}, "geometry": {"type": "Point", "coordinates": [2.201355691235118, 48.886856639445476]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ad54ab6bd9aadd450fdfbfdaeae3d7e74e12c231", "fields": {"departement": "92", "stop_lat": 48.886965346281166, "code_postal": "92063", "stop_lon": 2.180122821649824, "coord": [48.886965346281166, 2.180122821649824], "stop_id": 3877806, "stop_desc": "AVENUE DE COLMAR - 92063", "stop_name": "D'ESTIENNE D'ORVES"}, "geometry": {"type": "Point", "coordinates": [2.180122821649824, 48.886965346281166]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f7f98d3fe2d4c9bd04e8a84ea631c7bb81ea8f4a", "fields": {"departement": "92", "stop_lat": 48.90939458711706, "code_postal": "92050", "stop_lon": 2.2163757748545563, "coord": [48.90939458711706, 2.2163757748545563], "stop_id": 3887636, "stop_desc": "4 R DES SAULES - 92050", "stop_name": "LES SAULES"}, "geometry": {"type": "Point", "coordinates": [2.2163757748545563, 48.90939458711706]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7ccaa309fa96854f2ce3da2f619744411529daa6", "fields": {"departement": "92", "stop_lat": 48.93000570994058, "code_postal": "92004", "stop_lon": 2.283024402523283, "coord": [48.93000570994058, 2.283024402523283], "stop_id": 3887640, "stop_desc": "AVENUE DE LA REDOUTE - 92004", "stop_name": "LES COURTILLES"}, "geometry": {"type": "Point", "coordinates": [2.283024402523283, 48.93000570994058]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e5cda1f8c875d0289d864625d5e415319549cab3", "fields": {"departement": "92", "stop_lat": 48.924549861044376, "code_postal": "92025", "stop_lon": 2.264632489225063, "coord": [48.924549861044376, 2.264632489225063], "stop_id": 3887645, "stop_desc": "61 BIS AVENUE DE L'AGENT SARRE - 92025", "stop_name": "BEAUSEJOUR"}, "geometry": {"type": "Point", "coordinates": [2.264632489225063, 48.924549861044376]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "da29be7ee55175203e1396fbcce854820b78b51e", "fields": {"departement": "92", "stop_lat": 48.925427804368034, "code_postal": "92025", "stop_lon": 2.247365287963375, "coord": [48.925427804368034, 2.247365287963375], "stop_id": 3887650, "stop_desc": "46 BD EDGAR QUINET - 92025", "stop_name": "LES RENOUILLERS"}, "geometry": {"type": "Point", "coordinates": [2.247365287963375, 48.925427804368034]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "03e2d84e98d06c5e08d37b618a6a3fb2faff68f7", "fields": {"departement": "92", "stop_lat": 48.92135185355291, "code_postal": "92025", "stop_lon": 2.2305577711433004, "coord": [48.92135185355291, 2.2305577711433004], "stop_id": 3887655, "stop_desc": "FACE 195 RUE PRESIDENT SALVADOR ALLENDE - 92025", "stop_name": "RUE DE SEINE"}, "geometry": {"type": "Point", "coordinates": [2.2305577711433004, 48.92135185355291]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5ed15e492473715c3ac987f9eb695d457f73ec07", "fields": {"departement": "92", "stop_lat": 48.89412144881431, "code_postal": "92050", "stop_lon": 2.212458704841192, "coord": [48.89412144881431, 2.212458704841192], "stop_id": 3887668, "stop_desc": "137 AV FREDERIC ET IRENE JOLIOT CURIE - 92050", "stop_name": "JOLIOT-CURIE - COURBEVOIE"}, "geometry": {"type": "Point", "coordinates": [2.212458704841192, 48.89412144881431]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "61de8f3fca5e9a1d6b170f2d591e53c7e300765b", "fields": {"departement": "92", "stop_lat": 48.88960127968521, "code_postal": "92050", "stop_lon": 2.2044967458355496, "coord": [48.88960127968521, 2.2044967458355496], "stop_id": 3887671, "stop_desc": "45 AVENUE FREDERIC ET IRENE JOLIOT CURIE - 92050", "stop_name": "SADI-CARNOT - JOLIOT-CURIE"}, "geometry": {"type": "Point", "coordinates": [2.2044967458355496, 48.88960127968521]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f5b2e58a282025fe75bfbf1c6f2905d104eb79c3", "fields": {"departement": "92", "stop_lat": 48.89812239517774, "code_postal": "92050", "stop_lon": 2.2140575314032325, "coord": [48.89812239517774, 2.2140575314032325], "stop_id": 3887680, "stop_desc": "BOULEVARD DES PROVINCES FRANCAISES - 92050", "stop_name": "SOUFFLOT"}, "geometry": {"type": "Point", "coordinates": [2.2140575314032325, 48.89812239517774]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c0519152c558e32208680a6f0d3feac3992013a5", "fields": {"departement": "92", "stop_lat": 48.90435547571391, "code_postal": "92050", "stop_lon": 2.2190050030639723, "coord": [48.90435547571391, 2.2190050030639723], "stop_id": 3887682, "stop_desc": "VOIE LATERALE - 92050", "stop_name": "NOEL PONS"}, "geometry": {"type": "Point", "coordinates": [2.2190050030639723, 48.90435547571391]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cdddf462077547b188e0dcacc1a27fc2fc56700a", "fields": {"departement": "92", "stop_lat": 48.91741081652648, "code_postal": "92025", "stop_lon": 2.2253841697951615, "coord": [48.91741081652648, 2.2253841697951615], "stop_id": 3887688, "stop_desc": "202 BD CHARLES DE GAULLE - 92025", "stop_name": "PARC PIERRE LAGRAVERE"}, "geometry": {"type": "Point", "coordinates": [2.2253841697951615, 48.91741081652648]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fba81a9fb0341ec83ab2df3b1a10dbac432b81b7", "fields": {"departement": "92", "stop_lat": 48.9212712633758, "code_postal": "92025", "stop_lon": 2.2308852279801386, "coord": [48.9212712633758, 2.2308852279801386], "stop_id": 3887690, "stop_desc": "RUE PRESIDENT SALVADOR ALLENDE - 92025", "stop_name": "RUE DE SEINE"}, "geometry": {"type": "Point", "coordinates": [2.2308852279801386, 48.9212712633758]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3b2e6024c2e0f428cf510c8d37afa3dbd87d232c", "fields": {"departement": "92", "stop_lat": 48.92701814780932, "code_postal": "92025", "stop_lon": 2.246912453042652, "coord": [48.92701814780932, 2.246912453042652], "stop_id": 3887694, "stop_desc": "17 RUE PAUL BERT - 92025", "stop_name": "AUDRA"}, "geometry": {"type": "Point", "coordinates": [2.246912453042652, 48.92701814780932]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1f055318523dc7c6708cd4fba2bf9e3e457c9c7f", "fields": {"departement": "92", "stop_lat": 48.92522992750631, "code_postal": "92025", "stop_lon": 2.2471474208812148, "coord": [48.92522992750631, 2.2471474208812148], "stop_id": 3887695, "stop_desc": "29 BOULEVARD EDGAR QUINET - 92025", "stop_name": "LES RENOUILLERS"}, "geometry": {"type": "Point", "coordinates": [2.2471474208812148, 48.92522992750631]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d6c8d202f3ae1aaee04ce5f982271c6f1768d669", "fields": {"departement": "92", "stop_lat": 48.92421689404357, "code_postal": "92025", "stop_lon": 2.2638965101958997, "coord": [48.92421689404357, 2.2638965101958997], "stop_id": 3887700, "stop_desc": "58-60 AVENUE DE L'AGENT SARRE - 92025", "stop_name": "BEAUSEJOUR"}, "geometry": {"type": "Point", "coordinates": [2.2638965101958997, 48.92421689404357]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5a038c1e01c27b5bc2597c3261b3a5dbe5a954a4", "fields": {"departement": "92", "stop_lat": 48.913340385698675, "code_postal": "92025", "stop_lon": 2.2261156162905245, "coord": [48.913340385698675, 2.2261156162905245], "stop_id": 3887712, "stop_desc": "482 RUE GABRIEL PERI - 92025", "stop_name": "VICTOR BASCH"}, "geometry": {"type": "Point", "coordinates": [2.2261156162905245, 48.913340385698675]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "50598dfd24b77a4c18466706d5498b6b633f57cd", "fields": {"departement": "92", "stop_lat": 48.90320124278047, "code_postal": "92050", "stop_lon": 2.2066703453244894, "coord": [48.90320124278047, 2.2066703453244894], "stop_id": 3887713, "stop_desc": "152 AVENUE DE LA REPUBLIQUE - 92050", "stop_name": "JEAN BAILLET"}, "geometry": {"type": "Point", "coordinates": [2.2066703453244894, 48.90320124278047]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d2ca91a360ff23d2ca4834c1c4efa4abf8c7b000", "fields": {"departement": "92", "stop_lat": 48.905550755388155, "code_postal": "92050", "stop_lon": 2.210263532234275, "coord": [48.905550755388155, 2.210263532234275], "stop_id": 3887714, "stop_desc": "212 AVENUE DE LA REPUBLIQUE - 92050", "stop_name": "UNIVERSITE PARIS X"}, "geometry": {"type": "Point", "coordinates": [2.210263532234275, 48.905550755388155]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8b54b7af4f0fb3a96c951785d5a809c59ac54ccf", "fields": {"departement": "92", "stop_lat": 48.909016979537306, "code_postal": "92050", "stop_lon": 2.2162266830020974, "coord": [48.909016979537306, 2.2162266830020974], "stop_id": 3887716, "stop_desc": "334 AVENUE DE LA REPUBLIQUE - 92050", "stop_name": "LES SAULES"}, "geometry": {"type": "Point", "coordinates": [2.2162266830020974, 48.909016979537306]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a3bff6262dc6797385b8573d1b88ccf630ae4092", "fields": {"departement": "92", "stop_lat": 48.92522992750631, "code_postal": "92025", "stop_lon": 2.2471474208812148, "coord": [48.92522992750631, 2.2471474208812148], "stop_id": 3887727, "stop_desc": "29 BOULEVARD EDGAR QUINET - 92025", "stop_name": "LES RENOUILLERS"}, "geometry": {"type": "Point", "coordinates": [2.2471474208812148, 48.92522992750631]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6686e7d9fe756f2d11ac96dcff757a3ef0aad3aa", "fields": {"departement": "92", "stop_lat": 48.92299546791915, "code_postal": "92025", "stop_lon": 2.2516107928123716, "coord": [48.92299546791915, 2.2516107928123716], "stop_id": 3887728, "stop_desc": "5 RUE GABRIEL PERI - 92025", "stop_name": "EGLISE DE COLOMBES"}, "geometry": {"type": "Point", "coordinates": [2.2516107928123716, 48.92299546791915]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e9d22b5a1b1a9f76b7a4d206ccea92244583129e", "fields": {"departement": "92", "stop_lat": 48.92995205379622, "code_postal": "92036", "stop_lon": 2.28361095267388, "coord": [48.92995205379622, 2.28361095267388], "stop_id": 3887737, "stop_desc": "AVENUE DE LA REDOUTE - 92036", "stop_name": "LES COURTILLES"}, "geometry": {"type": "Point", "coordinates": [2.28361095267388, 48.92995205379622]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "67fa19ce0855b274f892692266c0e48cf31e8318", "fields": {"departement": "75", "stop_lat": 48.88874424503188, "code_postal": "75119", "stop_lon": 2.3955848701158775, "coord": [48.88874424503188, 2.3955848701158775], "stop_id": 3887738, "stop_desc": "179 BIS BD SERURIER - 75119", "stop_name": "PORTE DE PANTIN - PARC DE LA VILLETTE"}, "geometry": {"type": "Point", "coordinates": [2.3955848701158775, 48.88874424503188]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "96508efb14ee6d7d9858fc947e38173c3f006116", "fields": {"departement": "75", "stop_lat": 48.89747101879732, "code_postal": "75119", "stop_lon": 2.395103982620668, "coord": [48.89747101879732, 2.395103982620668], "stop_id": 3887740, "stop_desc": "FACE 16-18 R DE LA CLOTURE - 75119", "stop_name": "ELLA FITZGERALD - GRANDS MOULINS DE PANTIN"}, "geometry": {"type": "Point", "coordinates": [2.395103982620668, 48.89747101879732]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f457717e74180fd24d5a7892c00819c06f7901b2", "fields": {"departement": "75", "stop_lat": 48.897372166976474, "code_postal": "75119", "stop_lon": 2.395090241448971, "coord": [48.897372166976474, 2.395090241448971], "stop_id": 3887741, "stop_desc": "16-18 R DE LA CLOTURE - 75119", "stop_name": "ELLA FITZGERALD - GRANDS MOULINS DE PANTIN"}, "geometry": {"type": "Point", "coordinates": [2.395090241448971, 48.897372166976474]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1ee2dbdc41763899819746cbd024c9ad78ba0f96", "fields": {"departement": "75", "stop_lat": 48.82657558924991, "code_postal": "75113", "stop_lon": 2.3806912781462786, "coord": [48.82657558924991, 2.3806912781462786], "stop_id": 3887743, "stop_desc": "0 AV DE FRANCE - 75113", "stop_name": "PORTE DE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.3806912781462786, 48.82657558924991]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5bbee7ddeb4004a0e53aee65066521bb6eea989d", "fields": {"departement": "75", "stop_lat": 48.83125968694623, "code_postal": "75113", "stop_lon": 2.3762436007474763, "coord": [48.83125968694623, 2.3762436007474763], "stop_id": 3887748, "stop_desc": "118-120 AVENUE DE FRANCE - 75113", "stop_name": "EMILE DURKHEIM"}, "geometry": {"type": "Point", "coordinates": [2.3762436007474763, 48.83125968694623]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "21785cf9db4e28cf0db0abd9a29d0313518ec5dc", "fields": {"departement": "75", "stop_lat": 48.834352333232324, "code_postal": "75113", "stop_lon": 2.3733597011205556, "coord": [48.834352333232324, 2.3733597011205556], "stop_id": 3887749, "stop_desc": "164 AV DE FRANCE - 75113", "stop_name": "BIBLIOTHEQUE NATIONALE DE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.3733597011205556, 48.834352333232324]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9282a052676544fb94f7d0dd05396550eaf0643e", "fields": {"departement": "75", "stop_lat": 48.84350407782622, "code_postal": "75105", "stop_lon": 2.3642837561622643, "coord": [48.84350407782622, 2.3642837561622643], "stop_id": 3887757, "stop_desc": "BOULEVARD DE L'HOPITAL - 75105", "stop_name": "GARE D'AUSTERLITZ"}, "geometry": {"type": "Point", "coordinates": [2.3642837561622643, 48.84350407782622]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a46e1529d3f4c142429cbeb0ca4d434d5b3491fd", "fields": {"departement": "75", "stop_lat": 48.844134964687136, "code_postal": "75105", "stop_lon": 2.354902090075552, "coord": [48.844134964687136, 2.354902090075552], "stop_id": 3887760, "stop_desc": "2-4 RUE LINNE - 75105", "stop_name": "CUVIER - JARDIN DES PLANTES"}, "geometry": {"type": "Point", "coordinates": [2.354902090075552, 48.844134964687136]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d8401cc43fd9f6dbaae6eac92ac544f38767025d", "fields": {"departement": "75", "stop_lat": 48.846103994722135, "code_postal": "75106", "stop_lon": 2.325870580821929, "coord": [48.846103994722135, 2.325870580821929], "stop_id": 3887776, "stop_desc": "128 RUE DE RENNES - 75106", "stop_name": "RENNES - SAINT-PLACIDE"}, "geometry": {"type": "Point", "coordinates": [2.325870580821929, 48.846103994722135]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e27f543a4bf6d465cfa3d5832eb7e3f62d1d4708", "fields": {"departement": "75", "stop_lat": 48.84439601125354, "code_postal": "75106", "stop_lon": 2.3226165172926523, "coord": [48.84439601125354, 2.3226165172926523], "stop_id": 3887780, "stop_desc": "51 BOULEVARD DU MONTPARNASSE - 75106", "stop_name": "PLACE DU 18 JUIN 1940 - RUE DE L'ARRIVEE"}, "geometry": {"type": "Point", "coordinates": [2.3226165172926523, 48.84439601125354]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "45a66095ada2c3ae76d810829ab956817327caae", "fields": {"departement": "75", "stop_lat": 48.84231578915763, "code_postal": "75115", "stop_lon": 2.3027372316250037, "coord": [48.84231578915763, 2.3027372316250037], "stop_id": 3887785, "stop_desc": "88 RUE CAMBRONNE - 75115", "stop_name": "CAMBRONNE - LECOURBE"}, "geometry": {"type": "Point", "coordinates": [2.3027372316250037, 48.84231578915763]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2eee29fa65336dbac70270d392a58feea319a80c", "fields": {"departement": "75", "stop_lat": 48.84038395608434, "code_postal": "75115", "stop_lon": 2.304467729103389, "coord": [48.84038395608434, 2.304467729103389], "stop_id": 3887787, "stop_desc": "249 RUE DE VAUGIRARD - 75115", "stop_name": "CAMBRONNE - VAUGIRARD"}, "geometry": {"type": "Point", "coordinates": [2.304467729103389, 48.84038395608434]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "29c65e7fa2a4220a0f982aeebd6a085260e3c5b7", "fields": {"departement": "75", "stop_lat": 48.832267639742334, "code_postal": "75115", "stop_lon": 2.302594164551526, "coord": [48.832267639742334, 2.302594164551526], "stop_id": 3887792, "stop_desc": "73 RUE DES MORILLONS - 75115", "stop_name": "BRANCION - MORILLONS"}, "geometry": {"type": "Point", "coordinates": [2.302594164551526, 48.832267639742334]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "35cf8bc12f15982040defd2ce578280232d24643", "fields": {"departement": "75", "stop_lat": 48.8329493230867, "code_postal": "75115", "stop_lon": 2.298155579801428, "coord": [48.8329493230867, 2.298155579801428], "stop_id": 3887794, "stop_desc": "FACE 39 RUE DES MORILLONS - 75115", "stop_name": "MORILLONS - DANTZIG"}, "geometry": {"type": "Point", "coordinates": [2.298155579801428, 48.8329493230867]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "378b2e188d193817a153996acf19173507df40bd", "fields": {"departement": "92", "stop_lat": 48.82560436328608, "code_postal": "92075", "stop_lon": 2.2923079671998443, "coord": [48.82560436328608, 2.2923079671998443], "stop_id": 3887799, "stop_desc": "AVENUE PASTEUR - 92075", "stop_name": "CARREFOUR ALBERT LEGRIS"}, "geometry": {"type": "Point", "coordinates": [2.2923079671998443, 48.82560436328608]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3359dc9a7f166fc1786756e2a0709abf7344bced", "fields": {"departement": "92", "stop_lat": 48.8256943269898, "code_postal": "92075", "stop_lon": 2.292539293141965, "coord": [48.8256943269898, 2.292539293141965], "stop_id": 3887800, "stop_desc": "AVENUE PASTEUR - 92075", "stop_name": "CARREFOUR ALBERT LEGRIS"}, "geometry": {"type": "Point", "coordinates": [2.292539293141965, 48.8256943269898]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "026b03d46926190408fb6dfec811b7825a2db90e", "fields": {"departement": "92", "stop_lat": 48.82330368483426, "code_postal": "92075", "stop_lon": 2.292745523260662, "coord": [48.82330368483426, 2.292745523260662], "stop_id": 3887802, "stop_desc": "40 AVENUE MARCEL MARTINIE - 92075", "stop_name": "AVENUE MARCEL MARTINIE"}, "geometry": {"type": "Point", "coordinates": [2.292745523260662, 48.82330368483426]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0e5cb6d6690adb4d56a0ea8038ff04c0394d3f7f", "fields": {"departement": "75", "stop_lat": 48.83510773669457, "code_postal": "75115", "stop_lon": 2.3026467253002036, "coord": [48.83510773669457, 2.3026467253002036], "stop_id": 3887808, "stop_desc": "1 RUE DE CRONSTADT - 75115", "stop_name": "PLACE CHARLES VALLIN"}, "geometry": {"type": "Point", "coordinates": [2.3026467253002036, 48.83510773669457]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "96ce2654e44aa80c4b2731cddb4f87b32b664201", "fields": {"departement": "75", "stop_lat": 48.87505229858006, "code_postal": "75108", "stop_lon": 2.32463797997698, "coord": [48.87505229858006, 2.32463797997698], "stop_id": 3893335, "stop_desc": "14 PLACE GABRIEL PERI - 75108", "stop_name": "GARE SAINT-LAZARE"}, "geometry": {"type": "Point", "coordinates": [2.32463797997698, 48.87505229858006]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3b97231948f1e130122ef0a6f6e854353f250a37", "fields": {"departement": "75", "stop_lat": 48.872033003523995, "code_postal": "75109", "stop_lon": 2.3298976383299848, "coord": [48.872033003523995, 2.3298976383299848], "stop_id": 3893339, "stop_desc": "FACE 8 RUE AUBER - 75109", "stop_name": "AUBER"}, "geometry": {"type": "Point", "coordinates": [2.3298976383299848, 48.872033003523995]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8c4623847c533675ef12ead1c930b336bd487f44", "fields": {"departement": "75", "stop_lat": 48.8697773289464, "code_postal": "75102", "stop_lon": 2.3328270241440445, "coord": [48.8697773289464, 2.3328270241440445], "stop_id": 3893344, "stop_desc": "38 AVENUE DE L'OPERA - 75102", "stop_name": "OPERA - 4 SEPTEMBRE"}, "geometry": {"type": "Point", "coordinates": [2.3328270241440445, 48.8697773289464]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bc1c160ae363c45d6e97aea496e0b25dadabc141", "fields": {"departement": "75", "stop_lat": 48.859873277650976, "code_postal": "75101", "stop_lon": 2.333849441440465, "coord": [48.859873277650976, 2.333849441440465], "stop_id": 3893349, "stop_desc": "QUAI FRANCOIS MITTERRAND - 75101", "stop_name": "QUAI FRANCOIS MITTERRAND"}, "geometry": {"type": "Point", "coordinates": [2.333849441440465, 48.859873277650976]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fd934cfc0531ec1c94223ca6a12580c84defcecf", "fields": {"departement": "75", "stop_lat": 48.8586509790969, "code_postal": "75101", "stop_lon": 2.341000357215369, "coord": [48.8586509790969, 2.341000357215369], "stop_id": 3893351, "stop_desc": "FACE 14 QUAI DU LOUVRE - 75101", "stop_name": "PONT NEUF - QUAI DU LOUVRE"}, "geometry": {"type": "Point", "coordinates": [2.341000357215369, 48.8586509790969]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "baefe4a5f8e153e1c0de7811c61a68290adc59c0", "fields": {"departement": "75", "stop_lat": 48.84641903862287, "code_postal": "75105", "stop_lon": 2.3411220304526323, "coord": [48.84641903862287, 2.3411220304526323], "stop_id": 3893357, "stop_desc": "5-7 RUE GAY LUSSAC - 75105", "stop_name": "LUXEMBOURG"}, "geometry": {"type": "Point", "coordinates": [2.3411220304526323, 48.84641903862287]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4e8585060230d8bbec5d839c7966d52440a69323", "fields": {"departement": "75", "stop_lat": 48.83175010758925, "code_postal": "75113", "stop_lon": 2.35481619616892, "coord": [48.83175010758925, 2.35481619616892], "stop_id": 3893369, "stop_desc": "6 PLACE D'ITALIE - 75113", "stop_name": "PLACE D'ITALIE - MAIRIE DU 13E"}, "geometry": {"type": "Point", "coordinates": [2.35481619616892, 48.83175010758925]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9ba9275e5583115e4848cee15f8cdd5102cd53e2", "fields": {"departement": "75", "stop_lat": 48.83086000807591, "code_postal": "75113", "stop_lon": 2.356898736648717, "coord": [48.83086000807591, 2.356898736648717], "stop_id": 3893370, "stop_desc": "211 BOULEVARD VINCENT AURIOL - 75113", "stop_name": "PLACE D'ITALIE"}, "geometry": {"type": "Point", "coordinates": [2.356898736648717, 48.83086000807591]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f1909da454c3112108be718e051239877a79afad", "fields": {"departement": "75", "stop_lat": 48.828034729758826, "code_postal": "75113", "stop_lon": 2.3710003248450366, "coord": [48.828034729758826, 2.3710003248450366], "stop_id": 3893381, "stop_desc": "108 RUE DE PATAY - 75113", "stop_name": "PATAY - TOLBIAC"}, "geometry": {"type": "Point", "coordinates": [2.3710003248450366, 48.828034729758826]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ec7aec28646f3901d751e254e683c5a829a7ad59", "fields": {"departement": "75", "stop_lat": 48.82451004472554, "code_postal": "75113", "stop_lon": 2.376007131149646, "coord": [48.82451004472554, 2.376007131149646], "stop_id": 3893384, "stop_desc": "5 BIS RUE DE PATAY - 75113", "stop_name": "REGNAULT"}, "geometry": {"type": "Point", "coordinates": [2.376007131149646, 48.82451004472554]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b1cfb0d6631c271d6f10871db8a9881e829cfda4", "fields": {"departement": "75", "stop_lat": 48.83725093710796, "code_postal": "75105", "stop_lon": 2.3516729882807454, "coord": [48.83725093710796, 2.3516729882807454], "stop_id": 3893392, "stop_desc": "21 AVENUE DES GOBELINS - 75105", "stop_name": "LES GOBELINS"}, "geometry": {"type": "Point", "coordinates": [2.3516729882807454, 48.83725093710796]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8962222194276fcbddc5a15effa37500b5f752b0", "fields": {"departement": "75", "stop_lat": 48.85583791617629, "code_postal": "75106", "stop_lon": 2.3409320544688788, "coord": [48.85583791617629, 2.3409320544688788], "stop_id": 3893396, "stop_desc": "FACE 55 QUAI DES GRANDS AUGUSTINS - 75106", "stop_name": "PONT NEUF - QUAI DES GRANDS AUGUSTINS"}, "geometry": {"type": "Point", "coordinates": [2.3409320544688788, 48.85583791617629]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "66f2bb3d0ba2825701bce925effeadd12534036e", "fields": {"departement": "75", "stop_lat": 48.86817760577774, "code_postal": "75102", "stop_lon": 2.3335219409225676, "coord": [48.86817760577774, 2.3335219409225676], "stop_id": 3893400, "stop_desc": "30-32 AVENUE DE L'OPERA - 75102", "stop_name": "PETITS CHAMPS - DANIELLE CASANOVA"}, "geometry": {"type": "Point", "coordinates": [2.3335219409225676, 48.86817760577774]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fb16f6ea0f0828a14397d157333fff6865b3e40f", "fields": {"departement": "75", "stop_lat": 48.8428305421094, "code_postal": "75115", "stop_lon": 2.3126633077591134, "coord": [48.8428305421094, 2.3126633077591134], "stop_id": 2392, "stop_desc": "Vaugirard (183 rue de) - 75115", "stop_name": "Pasteur"}, "geometry": {"type": "Point", "coordinates": [2.3126633077591134, 48.8428305421094]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7a0eca506ad23bcfd0e42049db3fcd4e47500d78", "fields": {"departement": "75", "stop_lat": 48.833933819810916, "code_postal": "75114", "stop_lon": 2.31790897216328, "coord": [48.833933819810916, 2.31790897216328], "stop_id": 2397, "stop_desc": "Rue Niepce - 75114", "stop_name": "Pernety"}, "geometry": {"type": "Point", "coordinates": [2.31790897216328, 48.833933819810916]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "43b3853f79d241078f80b10a52cc7999ce9e2a6d", "fields": {"departement": "92", "stop_lat": 48.84092591926018, "code_postal": "92064", "stop_lon": 2.222049786002583, "coord": [48.84092591926018, 2.222049786002583], "stop_id": 3442595, "stop_desc": "QUAI DU MARECHAL JUIN - 92064", "stop_name": "PONT DE SAINT-CLOUD - RIVE GAUCHE"}, "geometry": {"type": "Point", "coordinates": [2.222049786002583, 48.84092591926018]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ed69092c3d91230f3ec52625ac0f9ceb5af3e343", "fields": {"departement": "92", "stop_lat": 48.8193243854821, "code_postal": "92046", "stop_lon": 2.2992274481183093, "coord": [48.8193243854821, 2.2992274481183093], "stop_id": 3442555, "stop_desc": "FACE 64 BOULEVARD GABRIEL PERI - 92046", "stop_name": "GABRIEL PERI - ANDRE COIN"}, "geometry": {"type": "Point", "coordinates": [2.2992274481183093, 48.8193243854821]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "684d98cdf3588d379547861aa1fa45d95f613ede", "fields": {"departement": "92", "stop_lat": 48.83136459407252, "code_postal": "92012", "stop_lon": 2.2566220440290023, "coord": [48.83136459407252, 2.2566220440290023], "stop_id": 3442575, "stop_desc": "8 BOULEVARD DE LA REPUBLIQUE - 92012", "stop_name": "QUAI DU POINT DU JOUR"}, "geometry": {"type": "Point", "coordinates": [2.2566220440290023, 48.83136459407252]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c693b0bf9b145ed8f38d9a1a6ceaf97bfe81cb30", "fields": {"departement": "92", "stop_lat": 48.832386102566346, "code_postal": "92012", "stop_lon": 2.252195987255606, "coord": [48.832386102566346, 2.252195987255606], "stop_id": 3442577, "stop_desc": "36 BOULEVARD DE LA REPUBLIQUE - 92012", "stop_name": "RUE DU POINT DU JOUR"}, "geometry": {"type": "Point", "coordinates": [2.252195987255606, 48.832386102566346]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "776607ce62278659ef9c098a2785338f937dabf3", "fields": {"departement": "92", "stop_lat": 48.82818035188838, "code_postal": "92040", "stop_lon": 2.2666459002261536, "coord": [48.82818035188838, 2.2666459002261536], "stop_id": 3442571, "stop_desc": "37 RUE ROUGET DE L'ISLE - 92040", "stop_name": "PRESIDENT ROBERT SCHUMAN"}, "geometry": {"type": "Point", "coordinates": [2.2666459002261536, 48.82818035188838]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "47e1153c6bf37066bdf47d241c51841c6a27a99c", "fields": {"departement": "92", "stop_lat": 48.82913147873064, "code_postal": "92040", "stop_lon": 2.2640581557633284, "coord": [48.82913147873064, 2.2640581557633284], "stop_id": 3442573, "stop_desc": "FACE 6 RUE ROUGET DE L'ISLE - 92040", "stop_name": "ISSY-VAL DE SEINE"}, "geometry": {"type": "Point", "coordinates": [2.2640581557633284, 48.82913147873064]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d9b360d4d469ee5390d330f96a6021ffad1b66fc", "fields": {"departement": "93", "stop_lat": 48.89447302655296, "code_postal": "93055", "stop_lon": 2.419389401798118, "coord": [48.89447302655296, 2.419389401798118], "stop_id": 3446766, "stop_desc": "207 AVENUE JEAN LOLIVE - 93055", "stop_name": "PIERRE BROSSOLETTE"}, "geometry": {"type": "Point", "coordinates": [2.419389401798118, 48.89447302655296]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "584fd80c163828908c1d2b0846e613a547dea62e", "fields": {"departement": "92", "stop_lat": 48.82444080124116, "code_postal": "92075", "stop_lon": 2.2823996840556604, "coord": [48.82444080124116, 2.2823996840556604], "stop_id": 3442565, "stop_desc": "40 BD DU LYCEE - 92075", "stop_name": "GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.2823996840556604, 48.82444080124116]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d222ec5891bc024f8f7ee6bd1f8afa6181cf5ae3", "fields": {"departement": "93", "stop_lat": 48.89129509628378, "code_postal": "93053", "stop_lon": 2.4483055884439326, "coord": [48.89129509628378, 2.4483055884439326], "stop_id": 3446778, "stop_desc": "48 RUE VAILLANT COUTURIER - 93053", "stop_name": "CHAALONS"}, "geometry": {"type": "Point", "coordinates": [2.4483055884439326, 48.89129509628378]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "62cf7f4c4374dff29fe0b697839eac56a32ee496", "fields": {"departement": "93", "stop_lat": 48.8928759497416, "code_postal": "93063", "stop_lon": 2.4392452609643303, "coord": [48.8928759497416, 2.4392452609643303], "stop_id": 3446773, "stop_desc": "194 ROUTE DE NOISY - 93063", "stop_name": "PAUL DE KOCK"}, "geometry": {"type": "Point", "coordinates": [2.4392452609643303, 48.8928759497416]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8542c9204b831e71195c9f617fe31866033d143f", "fields": {"departement": "94", "stop_lat": 48.78972431608003, "code_postal": "94028", "stop_lon": 2.450836106390663, "coord": [48.78972431608003, 2.450836106390663], "stop_id": 3343815, "stop_desc": "Ferdinand de Lesseps (rue, universit\u00e9 et mail des M\u00eaches) - 94028", "stop_name": "Cr\u00e9teil-Universit\u00e9"}, "geometry": {"type": "Point", "coordinates": [2.450836106390663, 48.78972431608003]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d089dec6487c1ba776a6dc2994ea5ded287babcd", "fields": {"departement": "94", "stop_lat": 48.78972431608003, "code_postal": "94028", "stop_lon": 2.450836106390663, "coord": [48.78972431608003, 2.450836106390663], "stop_id": 3343816, "stop_desc": "Ferdinand de Lesseps (rue, universit\u00e9 et mail des M\u00eaches) - 94028", "stop_name": "Cr\u00e9teil-Universit\u00e9"}, "geometry": {"type": "Point", "coordinates": [2.450836106390663, 48.78972431608003]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "44a7dba3b6bd49fa427c3078b04262fa02e95168", "fields": {"departement": "94", "stop_lat": 48.79660129757846, "code_postal": "94028", "stop_lon": 2.4495315243760767, "coord": [48.79660129757846, 2.4495315243760767], "stop_id": 3343813, "stop_desc": "Eiffel (13 rue) - 94028", "stop_name": "Cr\u00e9teil-L'Echat (H\u00f4pital Henri Mondor)"}, "geometry": {"type": "Point", "coordinates": [2.4495315243760767, 48.79660129757846]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "be65a63bccb5cd8fc1f158f1e42a013db4029be2", "fields": {"departement": "94", "stop_lat": 48.779757257844594, "code_postal": "94028", "stop_lon": 2.4593142910788286, "coord": [48.779757257844594, 2.4593142910788286], "stop_id": 3343818, "stop_desc": "Le Mont-Mesly - 94028", "stop_name": "Cr\u00e9teil-Pr\u00e9fecture (H\u00f4tel de Ville)"}, "geometry": {"type": "Point", "coordinates": [2.4593142910788286, 48.779757257844594]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e25fa65383dc5a83b2681c3bc6c4ed4a181a28a1", "fields": {"departement": "94", "stop_lat": 48.81507632012976, "code_postal": "94046", "stop_lon": 2.4216317667306635, "coord": [48.81507632012976, 2.4216317667306635], "stop_id": 3343808, "stop_desc": "Mus\u00e9e Fragonard - 94046", "stop_name": "Ecole V\u00e9t\u00e9rinaire de Maisons-Alfort"}, "geometry": {"type": "Point", "coordinates": [2.4216317667306635, 48.81507632012976]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7723e928b84d0e0753c9aa0f6497162116b813ee", "fields": {"departement": "94", "stop_lat": 48.80250044183061, "code_postal": "94046", "stop_lon": 2.4461836185594534, "coord": [48.80250044183061, 2.4461836185594534], "stop_id": 3343811, "stop_desc": "Louis Pergaud (2 rue) - 94046", "stop_name": "Maisons-Alfort-Les Juilliottes"}, "geometry": {"type": "Point", "coordinates": [2.4461836185594534, 48.80250044183061]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6b037f94ec731d2abe0941da7c0395fcd5fcdb27", "fields": {"departement": "75", "stop_lat": 48.859199141976376, "code_postal": "75101", "stop_lon": 2.3427847194148588, "coord": [48.859199141976376, 2.3427847194148588], "stop_id": 3442417, "stop_desc": "RUE DE LA MONNAIE - 75101", "stop_name": "PONT NEUF - QUAI DU LOUVRE"}, "geometry": {"type": "Point", "coordinates": [2.3427847194148588, 48.859199141976376]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "04230f7c24346293ac802613cdd542720932b512", "fields": {"departement": "75", "stop_lat": 48.84375813058096, "code_postal": "75106", "stop_lon": 2.32465920663277, "coord": [48.84375813058096, 2.32465920663277], "stop_id": 3442432, "stop_desc": "71 BOULEVARD DU MONTPARNASSE - 75106", "stop_name": "PLACE DU 18 JUIN 1940"}, "geometry": {"type": "Point", "coordinates": [2.32465920663277, 48.84375813058096]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "806fa93e0b472d18eaf8930ba6284f4eaa8a1d68", "fields": {"departement": "75", "stop_lat": 48.83618134524368, "code_postal": "75114", "stop_lon": 2.322264851311997, "coord": [48.83618134524368, 2.322264851311997], "stop_id": 3442440, "stop_desc": "5 RUE RAYMOND LOSSERAND - 75114", "stop_name": "LOSSERAND - MAINE"}, "geometry": {"type": "Point", "coordinates": [2.322264851311997, 48.83618134524368]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9ba0d301a9660c6c22b4e7dbfa937cce398f24b7", "fields": {"departement": "75", "stop_lat": 48.8515329731546, "code_postal": "75106", "stop_lon": 2.3387391271561393, "coord": [48.8515329731546, 2.3387391271561393], "stop_id": 3442423, "stop_desc": "1 RUE DE L'ODEON - 75106", "stop_name": "SAINT-GERMAIN - ODEON"}, "geometry": {"type": "Point", "coordinates": [2.3387391271561393, 48.8515329731546]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "997b972b62513450afe81d3a5e90a9fbb98673be", "fields": {"departement": "75", "stop_lat": 48.82522348024152, "code_postal": "75114", "stop_lon": 2.3109837788430045, "coord": [48.82522348024152, 2.3109837788430045], "stop_id": 3442447, "stop_desc": "AVENUE MARC SANGNIER - 75114", "stop_name": "PORTE DIDOT - LYCEE RASPAIL"}, "geometry": {"type": "Point", "coordinates": [2.3109837788430045, 48.82522348024152]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cd8330ed6d07c7e5c9560870b9eb04c489433c53", "fields": {"departement": "92", "stop_lat": 48.81921507648986, "code_postal": "92046", "stop_lon": 2.29491306569942, "coord": [48.81921507648986, 2.29491306569942], "stop_id": 3442558, "stop_desc": "FACE 15 BOULEVARD GABRIEL PERI - 92046", "stop_name": "GARE DE VANVES-MALAKOFF"}, "geometry": {"type": "Point", "coordinates": [2.29491306569942, 48.81921507648986]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ac7777f51d54726bb5b4b8469ca1f419b769e6b0", "fields": {"departement": "92", "stop_lat": 48.819127003121565, "code_postal": "92046", "stop_lon": 2.300330024470201, "coord": [48.819127003121565, 2.300330024470201], "stop_id": 3442556, "stop_desc": "76 BOULEVARD GABRIEL PERI - 92046", "stop_name": "GABRIEL PERI - ANDRE COIN"}, "geometry": {"type": "Point", "coordinates": [2.300330024470201, 48.819127003121565]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e7cc7623a81d734480a7f71493a9f31dfb2e0ae5", "fields": {"departement": "92", "stop_lat": 48.823898679202415, "code_postal": "92075", "stop_lon": 2.2978765561282306, "coord": [48.823898679202415, 2.2978765561282306], "stop_id": 3442453, "stop_desc": "98-100 RUE JEAN BLEUZEN - 92075", "stop_name": "JEAN JAURES-JEAN BLEUZEN"}, "geometry": {"type": "Point", "coordinates": [2.2978765561282306, 48.823898679202415]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "81e92b95cb180d94afb4b4e27615858704516cdf", "fields": {"departement": "92", "stop_lat": 48.82531703856575, "code_postal": "92075", "stop_lon": 2.2930568701205836, "coord": [48.82531703856575, 2.2930568701205836], "stop_id": 3442454, "stop_desc": "56 RUE JEAN JAURES - 92075", "stop_name": "CARREFOUR ALBERT LEGRIS"}, "geometry": {"type": "Point", "coordinates": [2.2930568701205836, 48.82531703856575]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "42f00ca09938e975c45967187186f8c0bf514d95", "fields": {"departement": "92", "stop_lat": 48.818520317166126, "code_postal": "92049", "stop_lon": 2.32001067322558, "coord": [48.818520317166126, 2.32001067322558], "stop_id": 3442547, "stop_desc": "RUE GABRIEL PERI - 92049", "stop_name": "MAIRIE DE MONTROUGE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.32001067322558, 48.818520317166126]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f9d27829356cc42be52ab4478fbbe4814b019976", "fields": {"departement": "75", "stop_lat": 48.83338645423746, "code_postal": "75114", "stop_lon": 2.324403057775674, "coord": [48.83338645423746, 2.324403057775674], "stop_id": 3442441, "stop_desc": "158 AVENUE DU MAINE - 75114", "stop_name": "CHATEAU - MAIRIE DU XIV"}, "geometry": {"type": "Point", "coordinates": [2.324403057775674, 48.83338645423746]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6f33442ec4d02e337d7fff4d932233ff523d3a05", "fields": {"departement": "75", "stop_lat": 48.830743470862615, "code_postal": "75114", "stop_lon": 2.319530145833741, "coord": [48.830743470862615, 2.319530145833741], "stop_id": 3442461, "stop_desc": "57 RUE DIDOT - 75114", "stop_name": "ALESIA - DIDOT"}, "geometry": {"type": "Point", "coordinates": [2.319530145833741, 48.830743470862615]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bc5417d25383ee1b04e55e7ad6fc29bb2ce46ece", "fields": {"departement": "75", "stop_lat": 48.83226251966294, "code_postal": "75114", "stop_lon": 2.3205098143188527, "coord": [48.83226251966294, 2.3205098143188527], "stop_id": 3442462, "stop_desc": "FACE 26 RUE DIDOT - 75114", "stop_name": "PERNETY"}, "geometry": {"type": "Point", "coordinates": [2.3205098143188527, 48.83226251966294]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "15c371066f58be0471cae2f93edee68d8325a443", "fields": {"departement": "75", "stop_lat": 48.847012094509715, "code_postal": "75106", "stop_lon": 2.3306637708477678, "coord": [48.847012094509715, 2.3306637708477678], "stop_id": 3442466, "stop_desc": "9 RUE DE FLEURUS - 75106", "stop_name": "FLEURUS"}, "geometry": {"type": "Point", "coordinates": [2.3306637708477678, 48.847012094509715]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ef30e0cedb86a365ab60fe05ad2e365b32fc4ae8", "fields": {"departement": "92", "stop_lat": 48.82101042839377, "code_postal": "92075", "stop_lon": 2.289154248327772, "coord": [48.82101042839377, 2.289154248327772], "stop_id": 3442561, "stop_desc": "FACE 40 RUE ANTOINE FRATACCI - 92075", "stop_name": "MAIRIE DE VANVES - CENTRE ADMINISTRATIF"}, "geometry": {"type": "Point", "coordinates": [2.289154248327772, 48.82101042839377]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b5934cffebb2a89dae565971278c1add5f097c98", "fields": {"departement": "93", "stop_lat": 48.88273054353048, "code_postal": "93064", "stop_lon": 2.481605217267796, "coord": [48.88273054353048, 2.481605217267796], "stop_id": 3446791, "stop_desc": "RUE JEAN DE MAILLY - 93064", "stop_name": "BOIS-PERRIER RER-ROSNY 2"}, "geometry": {"type": "Point", "coordinates": [2.481605217267796, 48.88273054353048]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5484deef417c7157cd8005acce2203eed9b38610", "fields": {"departement": "93", "stop_lat": 48.879438072806, "code_postal": "93064", "stop_lon": 2.491284224456588, "coord": [48.879438072806, 2.491284224456588], "stop_id": 3446796, "stop_desc": "FACE 96 AV DU PRESIDENT JOHN KENNEDY - 93064", "stop_name": "KELLERMANN"}, "geometry": {"type": "Point", "coordinates": [2.491284224456588, 48.879438072806]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8356b9615036da4eb29414410dedca0d8cda9799", "fields": {"departement": "93", "stop_lat": 48.87824132865198, "code_postal": "93064", "stop_lon": 2.485326189068649, "coord": [48.87824132865198, 2.485326189068649], "stop_id": 3446794, "stop_desc": "RUE JEAN DE MAILLY - 93064", "stop_name": "JEAN DE MAILLY - HOFFMANN"}, "geometry": {"type": "Point", "coordinates": [2.485326189068649, 48.87824132865198]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1a8058f344acf3c9f51d9798286ab053de26fc84", "fields": {"departement": "93", "stop_lat": 48.88334851444339, "code_postal": "93077", "stop_lon": 2.4973599287049, "coord": [48.88334851444339, 2.4973599287049], "stop_id": 3446798, "stop_desc": "ROUTE DE NOISY - 93077", "stop_name": "CIMETIERE DE VILLEMOMBLE"}, "geometry": {"type": "Point", "coordinates": [2.4973599287049, 48.88334851444339]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "750f0a5ada89046403eb79ac289857ba129584b1", "fields": {"departement": "92", "stop_lat": 48.813169841441436, "code_postal": "92049", "stop_lon": 2.306294875082923, "coord": [48.813169841441436, 2.306294875082923], "stop_id": 3449467, "stop_desc": "FACE 118 AVENUE JEAN JAURES - 92049", "stop_name": "JULES GUESDE"}, "geometry": {"type": "Point", "coordinates": [2.306294875082923, 48.813169841441436]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "be524c38644f059c7d8ce4200cb28aff634ed1ed", "fields": {"departement": "93", "stop_lat": 48.8905815063416, "code_postal": "93053", "stop_lon": 2.4521065629036953, "coord": [48.8905815063416, 2.4521065629036953], "stop_id": 3446780, "stop_desc": "2 RUE VAILLANT COUTURIER - 93053", "stop_name": "JEANNE D'ARC"}, "geometry": {"type": "Point", "coordinates": [2.4521065629036953, 48.8905815063416]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2c8da9e8c4291033094e40bf0fbdb92b20d8a808", "fields": {"departement": "92", "stop_lat": 48.815589992071025, "code_postal": "92049", "stop_lon": 2.3178749802276024, "coord": [48.815589992071025, 2.3178749802276024], "stop_id": 3449477, "stop_desc": "77 AVENUE DE LA REPUBLIQUE - 92049", "stop_name": "VERDIER-REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.3178749802276024, 48.815589992071025]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "043804927dbbc82e5e4d66ddd803fdf61e21a1c1", "fields": {"departement": "92", "stop_lat": 48.81735110896811, "code_postal": "92049", "stop_lon": 2.315138752600882, "coord": [48.81735110896811, 2.315138752600882], "stop_id": 3449479, "stop_desc": "12 PLACE DES ETATS-UNIS - 92049", "stop_name": "PLACE DES ETATS-UNIS"}, "geometry": {"type": "Point", "coordinates": [2.315138752600882, 48.81735110896811]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2586f4487da33d189ec62363ed6a2aa06486b42c", "fields": {"departement": "92", "stop_lat": 48.81826873510134, "code_postal": "92049", "stop_lon": 2.3205279384024586, "coord": [48.81826873510134, 2.3205279384024586], "stop_id": 3449469, "stop_desc": "RUE GABRIEL PERI - 92049", "stop_name": "SAINT-JACQUES"}, "geometry": {"type": "Point", "coordinates": [2.3205279384024586, 48.81826873510134]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a1702407ce70754d586c9443b9c9d103466ce07c", "fields": {"departement": "92", "stop_lat": 48.811159911976766, "code_postal": "92049", "stop_lon": 2.3243541268192933, "coord": [48.811159911976766, 2.3243541268192933], "stop_id": 3449473, "stop_desc": "12 R D'ARCUEIL - 92049", "stop_name": "MAURICE GENEVOIX"}, "geometry": {"type": "Point", "coordinates": [2.3243541268192933, 48.811159911976766]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "33e83849592e4cc025c50f06f8f8f4a7a5148f91", "fields": {"departement": "92", "stop_lat": 48.815930333000836, "code_postal": "92049", "stop_lon": 2.311573687396447, "coord": [48.815930333000836, 2.311573687396447], "stop_id": 3449468, "stop_desc": "28-30 PL JEAN JAURES - 92049", "stop_name": "JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.311573687396447, 48.815930333000836]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2fc3136ddc75c0f028014196b71ba10e9312d305", "fields": {"departement": "92", "stop_lat": 48.812930078609604, "code_postal": "92049", "stop_lon": 2.320924309083808, "coord": [48.812930078609604, 2.320924309083808], "stop_id": 3449475, "stop_desc": "21 RUE VICTOR BASCH - 92049", "stop_name": "BUFFALO"}, "geometry": {"type": "Point", "coordinates": [2.320924309083808, 48.812930078609604]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "47290393c4df50b1ab214e28f344e8697b1ea4be", "fields": {"departement": "92", "stop_lat": 48.81294596836005, "code_postal": "92049", "stop_lon": 2.3096291271766027, "coord": [48.81294596836005, 2.3096291271766027], "stop_id": 3449481, "stop_desc": "134 R MAURICE ARNOUX - 92049", "stop_name": "MOLIERE"}, "geometry": {"type": "Point", "coordinates": [2.3096291271766027, 48.81294596836005]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "351adef1a359efa384b7c4706e46aef724be2895", "fields": {"departement": "92", "stop_lat": 48.81231016664689, "code_postal": "92049", "stop_lon": 2.32280247430481, "coord": [48.81231016664689, 2.32280247430481], "stop_id": 3449474, "stop_desc": "30 RUE CARVES - 92049", "stop_name": "JULES FERRY"}, "geometry": {"type": "Point", "coordinates": [2.32280247430481, 48.81231016664689]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0baf0b2e588be84f590f7701bc4f4ce351d3870c", "fields": {"departement": "93", "stop_lat": 48.98943251427254, "code_postal": "93073", "stop_lon": 2.5259953160271786, "coord": [48.98943251427254, 2.5259953160271786], "stop_id": 3666699, "stop_desc": "FACE 15 RUE DE LA BELLE BORNE - 93073", "stop_name": "AEROVILLE - RUE DE LA BELLE BORNE"}, "geometry": {"type": "Point", "coordinates": [2.5259953160271786, 48.98943251427254]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "221d17292db68eb7f8851e5ca69b324f29a011ab", "fields": {"departement": "93", "stop_lat": 49.01051954688492, "code_postal": "93073", "stop_lon": 2.559663932280221, "coord": [49.01051954688492, 2.559663932280221], "stop_id": 3666711, "stop_desc": "AEROPORT CHARLES DE GAULLE (T3) - 93073", "stop_name": "ROISSYPOLE - GARE - RER"}, "geometry": {"type": "Point", "coordinates": [2.559663932280221, 49.01051954688492]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2b7c7d84dee97884b5dc588d8a458341b9f3b94d", "fields": {"departement": "93", "stop_lat": 49.003932683419556, "code_postal": "93073", "stop_lon": 2.5643752610380326, "coord": [49.003932683419556, 2.5643752610380326], "stop_id": 3666709, "stop_desc": "VOIE PRIVEE AEROPORT CHARLES DE GAULLE - 93073", "stop_name": "TERMINAL 2B-2D"}, "geometry": {"type": "Point", "coordinates": [2.5643752610380326, 49.003932683419556]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "42bb1e0a9c20095ea02dd8ee729c4eae4ce81e73", "fields": {"departement": "75", "stop_lat": 48.88082998036255, "code_postal": "75110", "stop_lon": 2.3579941644875797, "coord": [48.88082998036255, 2.3579941644875797], "stop_id": 3666727, "stop_desc": "184 RUE DU FAUBOURG SAINT-DENIS - 75110", "stop_name": "GARE DU NORD"}, "geometry": {"type": "Point", "coordinates": [2.3579941644875797, 48.88082998036255]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1ee13aa72694d3ae82abfeefdd1dac2eccaf8a64", "fields": {"departement": "93", "stop_lat": 48.99401510089086, "code_postal": "93073", "stop_lon": 2.52631247799206, "coord": [48.99401510089086, 2.52631247799206], "stop_id": 3666701, "stop_desc": "RUE DE LA JEUNE FILLE - 93073", "stop_name": "RUE DE LA JEUNE FILLE"}, "geometry": {"type": "Point", "coordinates": [2.52631247799206, 48.99401510089086]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fe358663173e6035f063d618379e9a2cbe114d86", "fields": {"departement": "93", "stop_lat": 48.95658572640723, "code_postal": "93005", "stop_lon": 2.4657356877614824, "coord": [48.95658572640723, 2.4657356877614824], "stop_id": 3666697, "stop_desc": "VOIE PARALLELE A L'ENTREPOT NUMERO 1 - 93005", "stop_name": "GARONOR"}, "geometry": {"type": "Point", "coordinates": [2.4657356877614824, 48.95658572640723]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "79eafe5bbe5c7105c7ce2b684f32bd9939fc52bd", "fields": {"departement": "95", "stop_lat": 49.007892693168586, "code_postal": "95527", "stop_lon": 2.512812511923358, "coord": [49.007892693168586, 2.512812511923358], "stop_id": 3666718, "stop_desc": "RUE DE L'ARPENTEUR - 95527", "stop_name": "ENTRETIEN SUD"}, "geometry": {"type": "Point", "coordinates": [2.512812511923358, 49.007892693168586]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3903cfa062971bc97d5cee411f42bce6e8540e26", "fields": {"departement": "93", "stop_lat": 48.95016764576287, "code_postal": "93030", "stop_lon": 2.439453648187777, "coord": [48.95016764576287, 2.439453648187777], "stop_id": 3666720, "stop_desc": "FACE 180 AV DU 8 MAI 1945 - 93030", "stop_name": "LENINE"}, "geometry": {"type": "Point", "coordinates": [2.439453648187777, 48.95016764576287]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "96697ff0536f6bb1caab0d69f1770c79dd2004fc", "fields": {"departement": "93", "stop_lat": 48.99460337939841, "code_postal": "93073", "stop_lon": 2.523665271336363, "coord": [48.99460337939841, 2.523665271336363], "stop_id": 3666698, "stop_desc": "RUE DES BUISSONS - 93073", "stop_name": "MARGUILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.523665271336363, 48.99460337939841]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "45782cb214b2be2008a707f57d72f3ebf37a608b", "fields": {"departement": "95", "stop_lat": 49.001498124289455, "code_postal": "95527", "stop_lon": 2.5279788312447846, "coord": [49.001498124289455, 2.5279788312447846], "stop_id": 3666704, "stop_desc": "RUE DES 2 CEDRES - 95527", "stop_name": "LES 2 CEDRES"}, "geometry": {"type": "Point", "coordinates": [2.5279788312447846, 49.001498124289455]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "90b744f97a2952957eb359ba218aa2eb0fa56f07", "fields": {"departement": "93", "stop_lat": 49.003932683419556, "code_postal": "93073", "stop_lon": 2.5643752610380326, "coord": [49.003932683419556, 2.5643752610380326], "stop_id": 3666655, "stop_desc": "VOIE PRIVEE AEROPORT CHARLES DE GAULLE - 93073", "stop_name": "TERMINAL 2B-2D"}, "geometry": {"type": "Point", "coordinates": [2.5643752610380326, 49.003932683419556]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d72048c36f8ca7870e5a436afd8379284b9f4b84", "fields": {"departement": "93", "stop_lat": 49.01051954688492, "code_postal": "93073", "stop_lon": 2.559663932280221, "coord": [49.01051954688492, 2.559663932280221], "stop_id": 3666657, "stop_desc": "AEROPORT CHARLES DE GAULLE (T3) - 93073", "stop_name": "ROISSYPOLE - GARE - RER"}, "geometry": {"type": "Point", "coordinates": [2.559663932280221, 49.01051954688492]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "36d1ba6500db708a9f34bb99ed26ea0c1d51bf21", "fields": {"departement": "93", "stop_lat": 48.98341657793788, "code_postal": "93073", "stop_lon": 2.5169210801343227, "coord": [48.98341657793788, 2.5169210801343227], "stop_id": 3666662, "stop_desc": "FACE 56 AVENUE DE LA PYRAMIDE - 93073", "stop_name": "58, AVENUE DE LA PYRAMIDE"}, "geometry": {"type": "Point", "coordinates": [2.5169210801343227, 48.98341657793788]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a0cfd0444d171b912eb6b4c294f4746131aafa48", "fields": {"departement": "93", "stop_lat": 48.974084551847795, "code_postal": "93078", "stop_lon": 2.5135714681334047, "coord": [48.974084551847795, 2.5135714681334047], "stop_id": 3666664, "stop_desc": "93 AVENUE DES NATIONS - 93078", "stop_name": "PARC DES EXPOSITIONS RER"}, "geometry": {"type": "Point", "coordinates": [2.5135714681334047, 48.974084551847795]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fa734a11301334731e82534e1f81724a95339d9a", "fields": {"departement": "75", "stop_lat": 48.87781949763114, "code_postal": "75110", "stop_lon": 2.3564941357294393, "coord": [48.87781949763114, 2.3564941357294393], "stop_id": 3666674, "stop_desc": "140-142 RUE DU FAUBOURG SAINT-DENIS - 75110", "stop_name": "VALENCIENNES"}, "geometry": {"type": "Point", "coordinates": [2.3564941357294393, 48.87781949763114]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fc0bea7ee5bfb45b10bdf58a3ecbd795db853d64", "fields": {"departement": "75", "stop_lat": 48.88506276042979, "code_postal": "75118", "stop_lon": 2.3591678300283867, "coord": [48.88506276042979, 2.3591678300283867], "stop_id": 3666670, "stop_desc": "5 RUE MARX DORMOY - 75118", "stop_name": "PLACE DE LA CHAPELLE"}, "geometry": {"type": "Point", "coordinates": [2.3591678300283867, 48.88506276042979]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7f60643c00d96b04878a46bf06000ea8943cf855", "fields": {"departement": "93", "stop_lat": 48.950665169998864, "code_postal": "93007", "stop_lon": 2.4641518334444137, "coord": [48.950665169998864, 2.4641518334444137], "stop_id": 3666689, "stop_desc": "5 AVENUE E.RENAULT - 93007", "stop_name": "DESCARTES - RENAULT"}, "geometry": {"type": "Point", "coordinates": [2.4641518334444137, 48.950665169998864]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "333a8242b83a101d102691deecfbc0496d2181b2", "fields": {"departement": "75", "stop_lat": 48.87611168124885, "code_postal": "75110", "stop_lon": 2.357883275054754, "coord": [48.87611168124885, 2.357883275054754], "stop_id": 3666673, "stop_desc": "9-11 RUE DU 8 MAI 1945 - 75110", "stop_name": "GARE DE L'EST"}, "geometry": {"type": "Point", "coordinates": [2.357883275054754, 48.87611168124885]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d14e0cdb77786f6e041189d58ffecec037cdcef0", "fields": {"departement": "93", "stop_lat": 48.94982606812028, "code_postal": "93007", "stop_lon": 2.4395484863144565, "coord": [48.94982606812028, 2.4395484863144565], "stop_id": 3666683, "stop_desc": "174-176 AVENUE DU 8 MAI 1945 - 93007", "stop_name": "LENINE"}, "geometry": {"type": "Point", "coordinates": [2.4395484863144565, 48.94982606812028]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7fc3f21ef055ee3da9288bb7f970ec24f35d6c98", "fields": {"departement": "93", "stop_lat": 48.9503918147959, "code_postal": "93007", "stop_lon": 2.4499878684013767, "coord": [48.9503918147959, 2.4499878684013767], "stop_id": 3666685, "stop_desc": "AVENUE DESCARTES - 93007", "stop_name": "MAURICE AUDIN"}, "geometry": {"type": "Point", "coordinates": [2.4499878684013767, 48.9503918147959]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "38d1d2622581847122cf13bb1a9b68ab61f56841", "fields": {"departement": "93", "stop_lat": 48.96468201571863, "code_postal": "93005", "stop_lon": 2.496178445204811, "coord": [48.96468201571863, 2.496178445204811], "stop_id": 3666749, "stop_desc": "BOULEVARD ANDRE CITROEN (ROND-POINT DE LA PORTE 3) - 93005", "stop_name": "ANDRE CITROEN - CENTRE DE PRODUCTION"}, "geometry": {"type": "Point", "coordinates": [2.496178445204811, 48.96468201571863]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ddfc40029c86fccc18e1d1a8624a8cf9a60543f9", "fields": {"departement": "75", "stop_lat": 48.88362477105826, "code_postal": "75110", "stop_lon": 2.3593443757229804, "coord": [48.88362477105826, 2.3593443757229804], "stop_id": 3666775, "stop_desc": "226-228 RUE DU FAUBOURG SAINT-DENIS - 75110", "stop_name": "PLACE DE LA CHAPELLE"}, "geometry": {"type": "Point", "coordinates": [2.3593443757229804, 48.88362477105826]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "45e15c0fe5f30dd25ba3b969ec7e97a248c9c7da", "fields": {"departement": "93", "stop_lat": 48.95030571554676, "code_postal": "93007", "stop_lon": 2.4641373075254696, "coord": [48.95030571554676, 2.4641373075254696], "stop_id": 3666782, "stop_desc": "FACE 9 AVENUE EDOUARD RENAULT - 93007", "stop_name": "DESCARTES - RENAULT"}, "geometry": {"type": "Point", "coordinates": [2.4641373075254696, 48.95030571554676]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f1f881845b12707a36d77bc45039cacd840a2c41", "fields": {"departement": "93", "stop_lat": 48.95742446586799, "code_postal": "93005", "stop_lon": 2.462940206766457, "coord": [48.95742446586799, 2.462940206766457], "stop_id": 3666747, "stop_desc": "VOIE LONGEANT L'AUTOROUTE A1 - 93005", "stop_name": "GARONOR-PORTE SUD"}, "geometry": {"type": "Point", "coordinates": [2.462940206766457, 48.95742446586799]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3e1fc7554df86e62cc8e9f20941481ec0b1b4b51", "fields": {"departement": "75", "stop_lat": 48.87615667154024, "code_postal": "75110", "stop_lon": 2.3575699124657437, "coord": [48.87615667154024, 2.3575699124657437], "stop_id": 3666772, "stop_desc": "9 RUE DU 8 MAI 1945 - 75110", "stop_name": "GARE DE L'EST"}, "geometry": {"type": "Point", "coordinates": [2.3575699124657437, 48.87615667154024]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7a0b7966f3f2d31d6a5c810abe4b72c6cb4b887b", "fields": {"departement": "95", "stop_lat": 49.01156449626324, "code_postal": "95527", "stop_lon": 2.5152429686918456, "coord": [49.01156449626324, 2.5152429686918456], "stop_id": 3666765, "stop_desc": "ROUTE DE L'ARPENTEUR - 95527", "stop_name": "ENTRETIEN NORD"}, "geometry": {"type": "Point", "coordinates": [2.5152429686918456, 49.01156449626324]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8be99f58b0f3960b5fe82a9f694bb2c82e002cb1", "fields": {"departement": "95", "stop_lat": 49.01237299186272, "code_postal": "95527", "stop_lon": 2.5213522952243, "coord": [49.01237299186272, 2.5213522952243], "stop_id": 3666764, "stop_desc": "ROUTE DE L'ARPENTEUR - 95527", "stop_name": "RUE DES 2 SOEURS"}, "geometry": {"type": "Point", "coordinates": [2.5213522952243, 49.01237299186272]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "66426ab17b2541c93a9567399717b678de659097", "fields": {"departement": "93", "stop_lat": 48.9503918147959, "code_postal": "93007", "stop_lon": 2.4499878684013767, "coord": [48.9503918147959, 2.4499878684013767], "stop_id": 3666737, "stop_desc": "AVENUE DESCARTES - 93007", "stop_name": "MAURICE AUDIN"}, "geometry": {"type": "Point", "coordinates": [2.4499878684013767, 48.9503918147959]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0bfe402b47c7027f1f2492e12ccde8d09c688f05", "fields": {"departement": "93", "stop_lat": 48.9727044267932, "code_postal": "93078", "stop_lon": 2.5109731333013463, "coord": [48.9727044267932, 2.5109731333013463], "stop_id": 3666750, "stop_desc": "22 AVENUE DES NATIONS - 93078", "stop_name": "NATIONS"}, "geometry": {"type": "Point", "coordinates": [2.5109731333013463, 48.9727044267932]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "25e3995eb45405696468d29d5229b00df217d9e2", "fields": {"departement": "93", "stop_lat": 48.956171868287754, "code_postal": "93005", "stop_lon": 2.4661713426756893, "coord": [48.956171868287754, 2.4661713426756893], "stop_id": 3666786, "stop_desc": "0 NR - 93005", "stop_name": "GARONOR"}, "geometry": {"type": "Point", "coordinates": [2.4661713426756893, 48.956171868287754]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3e8f39eb145610c9ad75e665ad73e64f6b456dbf", "fields": {"departement": "93", "stop_lat": 48.98943251427254, "code_postal": "93073", "stop_lon": 2.5259953160271786, "coord": [48.98943251427254, 2.5259953160271786], "stop_id": 3672142, "stop_desc": "FACE 15 RUE DE LA BELLE BORNE - 93073", "stop_name": "AEROVILLE - RUE DE LA BELLE BORNE"}, "geometry": {"type": "Point", "coordinates": [2.5259953160271786, 48.98943251427254]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d9a75951bbde8042e2795b19991a02a52cae35d2", "fields": {"departement": "93", "stop_lat": 49.00336657296951, "code_postal": "93073", "stop_lon": 2.5643591158079393, "coord": [49.00336657296951, 2.5643591158079393], "stop_id": 3666794, "stop_desc": "VOIE PRIVEE AEROPORT CHARLES DE GAULLE - 93073", "stop_name": "TERMINAL 2A-2C"}, "geometry": {"type": "Point", "coordinates": [2.5643591158079393, 49.00336657296951]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e23347324f2938210671c9a0ac78db7f6322fbb3", "fields": {"departement": "93", "stop_lat": 48.98292708588317, "code_postal": "93073", "stop_lon": 2.5197046726137797, "coord": [48.98292708588317, 2.5197046726137797], "stop_id": 3666791, "stop_desc": "AVENUE DE LA PYRAMIDE - 93073", "stop_name": "227, AVENUE DES NATIONS"}, "geometry": {"type": "Point", "coordinates": [2.5197046726137797, 48.98292708588317]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f97f23050dac1c474b37a0731a572838d12d5166", "fields": {"departement": "75", "stop_lat": 48.86455178820427, "code_postal": "75120", "stop_lon": 2.409561271654804, "coord": [48.86455178820427, 2.409561271654804], "stop_id": 3672111, "stop_desc": "2 AVENUE DE LA PORTE DE BAGNOLET - 75120", "stop_name": "PORTE DE BAGNOLET"}, "geometry": {"type": "Point", "coordinates": [2.409561271654804, 48.86455178820427]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3014aa7459217ab33e805e26bbc8f2615fffef71", "fields": {"departement": "93", "stop_lat": 48.86580463070785, "code_postal": "93006", "stop_lon": 2.417954493910392, "coord": [48.86580463070785, 2.417954493910392], "stop_id": 3672117, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 93006", "stop_name": "GALLIENI-METRO"}, "geometry": {"type": "Point", "coordinates": [2.417954493910392, 48.86580463070785]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1f06bd6b98ba6f71b13be474a2c36aac7f50ca8d", "fields": {"departement": "93", "stop_lat": 48.9136270250163, "code_postal": "93010", "stop_lon": 2.482686671284147, "coord": [48.9136270250163, 2.482686671284147], "stop_id": 3672123, "stop_desc": "AVENUE HENRI VARAGNAT - 93010", "stop_name": "SUZANNE BUISSON"}, "geometry": {"type": "Point", "coordinates": [2.482686671284147, 48.9136270250163]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "55678a0e140919bae3064a564c94be854db96098", "fields": {"departement": "93", "stop_lat": 48.91332218067506, "code_postal": "93010", "stop_lon": 2.4820995089248123, "coord": [48.91332218067506, 2.4820995089248123], "stop_id": 3672124, "stop_desc": "AV HENRI VARAGNAT - 93010", "stop_name": "SUZANNE BUISSON"}, "geometry": {"type": "Point", "coordinates": [2.4820995089248123, 48.91332218067506]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2a644f5446bea97691ab78e08a264e8fb9c88bd0", "fields": {"departement": "93", "stop_lat": 48.918161074606274, "code_postal": "93010", "stop_lon": 2.478867597962442, "coord": [48.918161074606274, 2.478867597962442], "stop_id": 3672127, "stop_desc": "AVENUE LEON JOUHAUX - 93010", "stop_name": "JOUHAUX - BLUM"}, "geometry": {"type": "Point", "coordinates": [2.478867597962442, 48.918161074606274]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fcd7a94a6b498b2b366ab8d532272748cd177871", "fields": {"departement": "93", "stop_lat": 48.99158529799905, "code_postal": "93073", "stop_lon": 2.528488506041771, "coord": [48.99158529799905, 2.528488506041771], "stop_id": 3672145, "stop_desc": "ROUTE DU MIDI - 93073", "stop_name": "RUE DU TE"}, "geometry": {"type": "Point", "coordinates": [2.528488506041771, 48.99158529799905]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6c8c7c122c4381a2d6a007abe69ca4616ace2b7e", "fields": {"departement": "93", "stop_lat": 48.91748955522082, "code_postal": "93010", "stop_lon": 2.484224762465009, "coord": [48.91748955522082, 2.484224762465009], "stop_id": 3672125, "stop_desc": "VOIE NOUVELLE - 93010", "stop_name": "RABELAIS"}, "geometry": {"type": "Point", "coordinates": [2.484224762465009, 48.91748955522082]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "988d31693af737e1de0e6b4422505637f72a0169", "fields": {"departement": "93", "stop_lat": 49.003932683419556, "code_postal": "93073", "stop_lon": 2.5643752610380326, "coord": [49.003932683419556, 2.5643752610380326], "stop_id": 3672159, "stop_desc": "VOIE PRIVEE AEROPORT CHARLES DE GAULLE - 93073", "stop_name": "TERMINAL 2B-2D"}, "geometry": {"type": "Point", "coordinates": [2.5643752610380326, 49.003932683419556]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a21660a64edef51fd16b130c874493ede5545457", "fields": {"departement": "95", "stop_lat": 49.01383564937498, "code_postal": "95527", "stop_lon": 2.533953462650324, "coord": [49.01383564937498, 2.533953462650324], "stop_id": 3672155, "stop_desc": "ROUTE DES ANNIVERSAIRES - 95527", "stop_name": "ZONE TECHNIQUE"}, "geometry": {"type": "Point", "coordinates": [2.533953462650324, 49.01383564937498]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5890c95b06d85a20979448c971ca80619bfafa54", "fields": {"departement": "95", "stop_lat": 49.01156449626324, "code_postal": "95527", "stop_lon": 2.5152429686918456, "coord": [49.01156449626324, 2.5152429686918456], "stop_id": 3672152, "stop_desc": "ROUTE DE L'ARPENTEUR - 95527", "stop_name": "ENTRETIEN NORD"}, "geometry": {"type": "Point", "coordinates": [2.5152429686918456, 49.01156449626324]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6f206f6241ea61915937abd32eccf95730667175", "fields": {"departement": "77", "stop_lat": 49.015367784893186, "code_postal": "77282", "stop_lon": 2.541992530464244, "coord": [49.015367784893186, 2.541992530464244], "stop_id": 3672156, "stop_desc": "AEROPORT CHARLES DE GAULLE - 77282", "stop_name": "TERMINAL 1"}, "geometry": {"type": "Point", "coordinates": [2.541992530464244, 49.015367784893186]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2c986d9d9de16369bb3a6aad506a377d0cdc6e99", "fields": {"departement": "93", "stop_lat": 48.90955920281512, "code_postal": "93010", "stop_lon": 2.479948443344676, "coord": [48.90955920281512, 2.479948443344676], "stop_id": 3672167, "stop_desc": "FACE 48 ROUTE D'AULNAY - 93010", "stop_name": "GUEUGNON"}, "geometry": {"type": "Point", "coordinates": [2.479948443344676, 48.90955920281512]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c6bc8dc773f679f7f74bfe688b1518e863a9cd71", "fields": {"departement": "77", "stop_lat": 48.825551256001276, "code_postal": "77258", "stop_lon": 2.6292725579153386, "coord": [48.825551256001276, 2.6292725579153386], "stop_id": 3677883, "stop_desc": "RUE DE LA MAISON ROUGE - 77258", "stop_name": "CHAMBRE DE COMMERCE ET D'INDUSTRIE"}, "geometry": {"type": "Point", "coordinates": [2.6292725579153386, 48.825551256001276]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "daa40dab416967f3d8f41ad64976ac66fa1cec27", "fields": {"departement": "77", "stop_lat": 48.82604549537294, "code_postal": "77146", "stop_lon": 2.6365442421320906, "coord": [48.82604549537294, 2.6365442421320906], "stop_id": 3677842, "stop_desc": "ALLEE DU 1ER MAI - 77146", "stop_name": "CROISSY-BEAUBOURG - Z.I. PARIEST"}, "geometry": {"type": "Point", "coordinates": [2.6365442421320906, 48.82604549537294]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cb1a8bee71c5301afd2d42dfda0a354c7b34e8a8", "fields": {"departement": "93", "stop_lat": 48.98341657793788, "code_postal": "93073", "stop_lon": 2.5169210801343227, "coord": [48.98341657793788, 2.5169210801343227], "stop_id": 3678791, "stop_desc": "FACE 56 AVENUE DE LA PYRAMIDE - 93073", "stop_name": "58, AVENUE DE LA PYRAMIDE"}, "geometry": {"type": "Point", "coordinates": [2.5169210801343227, 48.98341657793788]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "689e87d47e6ec5fe39f074e047c6c40174d54677", "fields": {"departement": "93", "stop_lat": 48.974084551847795, "code_postal": "93078", "stop_lon": 2.5135714681334047, "coord": [48.974084551847795, 2.5135714681334047], "stop_id": 3678787, "stop_desc": "93 AVENUE DES NATIONS - 93078", "stop_name": "PARC DES EXPOSITIONS RER"}, "geometry": {"type": "Point", "coordinates": [2.5135714681334047, 48.974084551847795]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9354595f4b6e870cfe6b6d77e8cdc37725a51096", "fields": {"departement": "93", "stop_lat": 49.002643994047546, "code_postal": "93073", "stop_lon": 2.5361782210719643, "coord": [49.002643994047546, 2.5361782210719643], "stop_id": 3678806, "stop_desc": "RUE DES TERRES NOIRES - 93073", "stop_name": "RUE DU CHAPITRE"}, "geometry": {"type": "Point", "coordinates": [2.5361782210719643, 49.002643994047546]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c63edc24e6e31d584e4c7658b3fa2f26d91cde80", "fields": {"departement": "95", "stop_lat": 49.01608779865829, "code_postal": "95527", "stop_lon": 2.5305328299201864, "coord": [49.01608779865829, 2.5305328299201864], "stop_id": 3678813, "stop_desc": "ROUTE DES ANNIVERSAIRES - 95527", "stop_name": "GENDARMERIE"}, "geometry": {"type": "Point", "coordinates": [2.5305328299201864, 49.01608779865829]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6f53f670a2078e65cc6fd52f473a0f55b7b2c081", "fields": {"departement": "95", "stop_lat": 48.998751840594245, "code_postal": "95527", "stop_lon": 2.525742518298485, "coord": [48.998751840594245, 2.525742518298485], "stop_id": 3678802, "stop_desc": "RUE DU REMBLAI - 95527", "stop_name": "CARGO CENTRE"}, "geometry": {"type": "Point", "coordinates": [2.525742518298485, 48.998751840594245]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8de8e7a5adea489bf6b0eacb9ee3206d619bb2ab", "fields": {"departement": "77", "stop_lat": 48.83882479616967, "code_postal": "77258", "stop_lon": 2.633418310732026, "coord": [48.83882479616967, 2.633418310732026], "stop_id": 3677876, "stop_desc": "RUE JEHAN SCARRON - 77258", "stop_name": "LOGNES RER"}, "geometry": {"type": "Point", "coordinates": [2.633418310732026, 48.83882479616967]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "782974e316edcabd75aeeaf9094f52aaa628a9fa", "fields": {"departement": "92", "stop_lat": 48.887154962379554, "code_postal": "92062", "stop_lon": 2.2515746160906414, "coord": [48.887154962379554, 2.2515746160906414], "stop_id": 4016741, "stop_desc": "BOULEVARD PIERRE GAUDIN - 92062", "stop_name": "PONT DE NEUILLY - RIVE GAUCHE"}, "geometry": {"type": "Point", "coordinates": [2.2515746160906414, 48.887154962379554]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b78aafa0fbad6f93a705ab41d3a5db72d40f7a25", "fields": {"departement": "92", "stop_lat": 48.885263256136696, "code_postal": "92051", "stop_lon": 2.258228030988886, "coord": [48.885263256136696, 2.258228030988886], "stop_id": 4016742, "stop_desc": "209 AVENUE CHARLES DE GAULLE - 92051", "stop_name": "PONT DE NEUILLY-METRO"}, "geometry": {"type": "Point", "coordinates": [2.258228030988886, 48.885263256136696]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c0bfda5681d85c7ebdc2a9113f5bcfe46362cb97", "fields": {"departement": "92", "stop_lat": 48.88361794572945, "code_postal": "92051", "stop_lon": 2.272007643706733, "coord": [48.88361794572945, 2.272007643706733], "stop_id": 4016750, "stop_desc": "97 AVENUE ACHILLE PERETTI OU DU ROULE - 92051", "stop_name": "EGLISE SAINT-PIERRE"}, "geometry": {"type": "Point", "coordinates": [2.272007643706733, 48.88361794572945]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a35c11b0712a858e105d2d7ca7c684fabf696513", "fields": {"departement": "92", "stop_lat": 48.90140468353698, "code_postal": "92024", "stop_lon": 2.294287003926864, "coord": [48.90140468353698, 2.294287003926864], "stop_id": 4016771, "stop_desc": "8 RUE PIERRE BEREGOVOY - 92024", "stop_name": "RUE PETIT"}, "geometry": {"type": "Point", "coordinates": [2.294287003926864, 48.90140468353698]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "127edb8fb64704cd8bbe77852237a29c17bfcbe6", "fields": {"departement": "92", "stop_lat": 48.90149450534568, "code_postal": "92024", "stop_lon": 2.294150610420458, "coord": [48.90149450534568, 2.294150610420458], "stop_id": 4016772, "stop_desc": "FACE 10 RUE PIERRE BEREGOVOY - 92024", "stop_name": "RUE PETIT"}, "geometry": {"type": "Point", "coordinates": [2.294150610420458, 48.90149450534568]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8047c63cec9b1f0852398142330ff795caf96158", "fields": {"departement": "92", "stop_lat": 48.90449789295853, "code_postal": "92024", "stop_lon": 2.2991376774896035, "coord": [48.90449789295853, 2.2991376774896035], "stop_id": 4016773, "stop_desc": "38 RUE PIERRE FOURNIER - 92024", "stop_name": "FOURNIER"}, "geometry": {"type": "Point", "coordinates": [2.2991376774896035, 48.90449789295853]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "86f146ce70a7bf52ad6df9d60d4fe9bcd520bfdf", "fields": {"departement": "92", "stop_lat": 48.903522848561984, "code_postal": "92024", "stop_lon": 2.3180602148539173, "coord": [48.903522848561984, 2.3180602148539173], "stop_id": 4016785, "stop_desc": "42-44 RUE MADAME DE SANZILLON - 92024", "stop_name": "GEORGES BOISSEAU"}, "geometry": {"type": "Point", "coordinates": [2.3180602148539173, 48.903522848561984]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "53ec02f548f482df9bf464a2ff6bbef01b80e125", "fields": {"departement": "92", "stop_lat": 48.8932094315966, "code_postal": "92051", "stop_lon": 2.2760435972410815, "coord": [48.8932094315966, 2.2760435972410815], "stop_id": 4016793, "stop_desc": "67 BOULEVARD DU CHATEAU - 92051", "stop_name": "PLACE DE LA LIBERATION"}, "geometry": {"type": "Point", "coordinates": [2.2760435972410815, 48.8932094315966]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6c74d6904925588770ed2da5b9d8815da911280b", "fields": {"departement": "92", "stop_lat": 48.89211213198273, "code_postal": "92051", "stop_lon": 2.274382101871744, "coord": [48.89211213198273, 2.274382101871744], "stop_id": 4016794, "stop_desc": "FACE 64 BOULEVARD VICTOR HUGO - 92051", "stop_name": "HOPITAL AMERICAIN"}, "geometry": {"type": "Point", "coordinates": [2.274382101871744, 48.89211213198273]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4deca16388681ddcf073b477a1eb040a0b517f2f", "fields": {"departement": "92", "stop_lat": 48.887111564357454, "code_postal": "92026", "stop_lon": 2.2537415598241908, "coord": [48.887111564357454, 2.2537415598241908], "stop_id": 4016795, "stop_desc": "BOULEVARD DE NEUILLY (SUR PISTE) - 92026", "stop_name": "PONT DE NEUILLY - RIVE GAUCHE"}, "geometry": {"type": "Point", "coordinates": [2.2537415598241908, 48.887111564357454]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "470c0007f9a181b099b2d51b9a20d2330b890abf", "fields": {"departement": "92", "stop_lat": 48.889975774020385, "code_postal": "92026", "stop_lon": 2.249961745288486, "coord": [48.889975774020385, 2.249961745288486], "stop_id": 4016796, "stop_desc": "BOULEVARD CIRCULAIRE (SUR PISTE) - 92026", "stop_name": "ALSACE"}, "geometry": {"type": "Point", "coordinates": [2.249961745288486, 48.889975774020385]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6eb62a49ecab94d8c2bf5e41e9b746a96b8cd16f", "fields": {"departement": "94", "stop_lat": 48.754764659842415, "code_postal": "94022", "stop_lon": 2.411923295240397, "coord": [48.754764659842415, 2.411923295240397], "stop_id": 4378382, "stop_desc": "AVENUE DE NEWBURN - 94022", "stop_name": "CHOISY SUD"}, "geometry": {"type": "Point", "coordinates": [2.411923295240397, 48.754764659842415]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8a984dd0ce753f6a0968e75984cbce03b89b76c7", "fields": {"departement": "94", "stop_lat": 48.758502857332175, "code_postal": "94022", "stop_lon": 2.4133017006212443, "coord": [48.758502857332175, 2.4133017006212443], "stop_id": 4378385, "stop_desc": "AVENUE RONDU - 94022", "stop_name": "CHARLES JULES VAILLANT"}, "geometry": {"type": "Point", "coordinates": [2.4133017006212443, 48.758502857332175]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "206e92284435078524de9dd8ed24b584fbe4572e", "fields": {"departement": "94", "stop_lat": 48.76386013576496, "code_postal": "94073", "stop_lon": 2.396926607758173, "coord": [48.76386013576496, 2.396926607758173], "stop_id": 4378390, "stop_desc": "FACE 35 AVENUE RENE PANHARD - 94073", "stop_name": "PANHARD - HUGO"}, "geometry": {"type": "Point", "coordinates": [2.396926607758173, 48.76386013576496]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c7af7eb9ce9428d793629a7f23899fc2cf3ebd69", "fields": {"departement": "94", "stop_lat": 48.769403274643054, "code_postal": "94073", "stop_lon": 2.382193561880609, "coord": [48.769403274643054, 2.382193561880609], "stop_id": 4378394, "stop_desc": "RUE DE LA SAUSSAIE - 94073", "stop_name": "PISCINE"}, "geometry": {"type": "Point", "coordinates": [2.382193561880609, 48.769403274643054]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2702e0ae606507eafab6d69b8164811ef9954dd6", "fields": {"departement": "94", "stop_lat": 48.78418313791515, "code_postal": "94076", "stop_lon": 2.3714342695708814, "coord": [48.78418313791515, 2.3714342695708814], "stop_id": 4378400, "stop_desc": "RUE JEAN LURCAT - 94076", "stop_name": "LURCAT - LUISETTE"}, "geometry": {"type": "Point", "coordinates": [2.3714342695708814, 48.78418313791515]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3af0dc78d46abf94d6c9eb46590ed87c54372b73", "fields": {"departement": "94", "stop_lat": 48.78757278336037, "code_postal": "94076", "stop_lon": 2.3670022487935434, "coord": [48.78757278336037, 2.3670022487935434], "stop_id": 4378402, "stop_desc": "7 AVENUE DE STALINGRAD - 94076", "stop_name": "VILLEJUIF - LOUIS ARAGON"}, "geometry": {"type": "Point", "coordinates": [2.3670022487935434, 48.78757278336037]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "86f55f07a50dff0d2df68fe462a7385622658c52", "fields": {"departement": "75", "stop_lat": 48.818519431681594, "code_postal": "75113", "stop_lon": 2.359793018671695, "coord": [48.818519431681594, 2.359793018671695], "stop_id": 4378412, "stop_desc": "AVENUE DE LA PORTE D'ITALIE - 75113", "stop_name": "PORTE D'ITALIE - HELENE BOUCHER"}, "geometry": {"type": "Point", "coordinates": [2.359793018671695, 48.818519431681594]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cbe3c32dcab6f6c410bbbf15623a2fea13e38137", "fields": {"departement": "94", "stop_lat": 48.772629461588615, "code_postal": "94021", "stop_lon": 2.3397839218859495, "coord": [48.772629461588615, 2.3397839218859495], "stop_id": 4390966, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 94021", "stop_name": "JEAN MERMOZ - GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.3397839218859495, 48.772629461588615]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f29b3ad8efe736a3198c9441911d745424c69eb5", "fields": {"departement": "94", "stop_lat": 48.76829332558924, "code_postal": "94021", "stop_lon": 2.3677934294587164, "coord": [48.76829332558924, 2.3677934294587164], "stop_id": 4390973, "stop_desc": "240 AVENUE DE STALINGRAD - 94021", "stop_name": "BRETAGNE"}, "geometry": {"type": "Point", "coordinates": [2.3677934294587164, 48.76829332558924]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f287433d9c84187c117c50fe7795bed6529d5814", "fields": {"departement": "94", "stop_lat": 48.76499465577505, "code_postal": "94021", "stop_lon": 2.367968239679133, "coord": [48.76499465577505, 2.367968239679133], "stop_id": 4390974, "stop_desc": "AVENUE DE STALINGRAD - 94021", "stop_name": "CIMETIERE PARISIEN DE THIAIS"}, "geometry": {"type": "Point", "coordinates": [2.367968239679133, 48.76499465577505]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "955c160ae4e2c47adc9c33d3c75cc654cb63c358", "fields": {"departement": "91", "stop_lat": 48.69036746920007, "code_postal": "91589", "stop_lon": 2.3517951995057187, "coord": [48.69036746920007, 2.3517951995057187], "stop_id": 4394964, "stop_desc": "79 AVENUE GABRIEL PERI - 91589", "stop_name": "PLACE DE LA REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.3517951995057187, 48.69036746920007]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "252d9cb98fb766cf5fb637d4782893e82eec022f", "fields": {"departement": "91", "stop_lat": 48.69713611014286, "code_postal": "91589", "stop_lon": 2.3497060248892825, "coord": [48.69713611014286, 2.3497060248892825], "stop_id": 4394967, "stop_desc": "152 AVENUE ROBERT LEUTHREAU - 91589", "stop_name": "CIMETIERE DU PLATEAU"}, "geometry": {"type": "Point", "coordinates": [2.3497060248892825, 48.69713611014286]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "294efc852891bcd475b20a583fff41bd29dad624", "fields": {"departement": "91", "stop_lat": 48.70962871577974, "code_postal": "91479", "stop_lon": 2.3595149428073428, "coord": [48.70962871577974, 2.3595149428073428], "stop_id": 4394970, "stop_desc": "92 AVENUE DU GENERAL DE GAULLE - 91479", "stop_name": "MAXIME VEDY"}, "geometry": {"type": "Point", "coordinates": [2.3595149428073428, 48.70962871577974]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6d746b23504fc6d683eb307ea19599ea6c456976", "fields": {"departement": "91", "stop_lat": 48.69168964503534, "code_postal": "91589", "stop_lon": 2.334186286277667, "coord": [48.69168964503534, 2.334186286277667], "stop_id": 4394974, "stop_desc": "AVENUE DU GENERAL LOUIS MORAND - 91589", "stop_name": "ZAC LES GATINES - CAPITAINE JEAN D'HERS"}, "geometry": {"type": "Point", "coordinates": [2.334186286277667, 48.69168964503534]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6c665ca451048948583fd7f134a64c1763790f3b", "fields": {"departement": "91", "stop_lat": 48.67873671160133, "code_postal": "91589", "stop_lon": 2.346240365571396, "coord": [48.67873671160133, 2.346240365571396], "stop_id": 4394980, "stop_desc": "41 AVENUE CHARLES DE GAULLE - 91589", "stop_name": "CENTRE ADMINISTRATIF"}, "geometry": {"type": "Point", "coordinates": [2.346240365571396, 48.67873671160133]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0d335248cc99f6f6f43257c508658534f51a7711", "fields": {"departement": "91", "stop_lat": 48.69097881776177, "code_postal": "91589", "stop_lon": 2.350749960762494, "coord": [48.69097881776177, 2.350749960762494], "stop_id": 4394986, "stop_desc": "86 AVENUE GABRIEL PERI - 91589", "stop_name": "PLACE DE LA REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.350749960762494, 48.69097881776177]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e25c881812f1cdd5cba2168aec3b269ab7569b22", "fields": {"departement": "91", "stop_lat": 48.6932893287219, "code_postal": "91589", "stop_lon": 2.346039219363003, "coord": [48.6932893287219, 2.346039219363003], "stop_id": 4394987, "stop_desc": "72 AVENUE ROBERT LEUTHREAU - 91589", "stop_name": "CITE DES TILLEULS"}, "geometry": {"type": "Point", "coordinates": [2.346039219363003, 48.6932893287219]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2710d826a1b09670fe6be6dc280d39bd7870446e", "fields": {"departement": "91", "stop_lat": 48.70962871577974, "code_postal": "91479", "stop_lon": 2.3595149428073428, "coord": [48.70962871577974, 2.3595149428073428], "stop_id": 4394991, "stop_desc": "92 AVENUE DU GENERAL DE GAULLE - 91479", "stop_name": "MAXIME VEDY"}, "geometry": {"type": "Point", "coordinates": [2.3595149428073428, 48.70962871577974]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5465e37bc081b1f603db0618deadb2dfa83be120", "fields": {"departement": "94", "stop_lat": 48.78337654018026, "code_postal": "94076", "stop_lon": 2.3620899204722337, "coord": [48.78337654018026, 2.3620899204722337], "stop_id": 4423344, "stop_desc": "FACE 75 RUE AUGUSTE DELAUNE - 94076", "stop_name": "PLACE AUGUSTE DELAUNE"}, "geometry": {"type": "Point", "coordinates": [2.3620899204722337, 48.78337654018026]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7ef10d7fee128b73b00ede3a03c00828d6285040", "fields": {"departement": "94", "stop_lat": 48.77515392039387, "code_postal": "94038", "stop_lon": 2.354171518515035, "coord": [48.77515392039387, 2.354171518515035], "stop_id": 4423348, "stop_desc": "FACE 22 RUE DE LALLIER - 94038", "stop_name": "RUE DE LALLIER"}, "geometry": {"type": "Point", "coordinates": [2.354171518515035, 48.77515392039387]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "71eb8e6e02a6a33d3dbc60f2a7f6d73c33f76e21", "fields": {"departement": "94", "stop_lat": 48.77804860687779, "code_postal": "94038", "stop_lon": 2.3497390229670976, "coord": [48.77804860687779, 2.3497390229670976], "stop_id": 4423350, "stop_desc": "1 RUE JULES FERRY - 94038", "stop_name": "JULES FERRY-FERRER"}, "geometry": {"type": "Point", "coordinates": [2.3497390229670976, 48.77804860687779]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d4868e0737fbe99d52879e07a09041a4adcc336d", "fields": {"departement": "94", "stop_lat": 48.77589211459192, "code_postal": "94038", "stop_lon": 2.3397704819584093, "coord": [48.77589211459192, 2.3397704819584093], "stop_id": 4423352, "stop_desc": "124 AVENUE PAUL VAILLANT COUTURIER - 94038", "stop_name": "TOURNELLES"}, "geometry": {"type": "Point", "coordinates": [2.3397704819584093, 48.77589211459192]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7295cfea0dbc68337ed320bbf6f339e2917d8eba", "fields": {"departement": "94", "stop_lat": 48.76991509860442, "code_postal": "94021", "stop_lon": 2.337526625367893, "coord": [48.76991509860442, 2.337526625367893], "stop_id": 4423354, "stop_desc": "96 BD JEAN MERMOZ - 94021", "stop_name": "CROIX DU SUD - CENTRE DE PNEUMOLOGIE"}, "geometry": {"type": "Point", "coordinates": [2.337526625367893, 48.76991509860442]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2f35e60f0a837c0913bdd677b04350f697b0b040", "fields": {"departement": "94", "stop_lat": 48.821606439542855, "code_postal": "94018", "stop_lon": 2.4141972075539684, "coord": [48.821606439542855, 2.4141972075539684], "stop_id": 4439432, "stop_desc": "RUE DE LA REPUBLIQUE - 94018", "stop_name": "CHARENTON-ECOLES"}, "geometry": {"type": "Point", "coordinates": [2.4141972075539684, 48.821606439542855]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f3b748993a2ef1873d133025ebecc949c9630731", "fields": {"departement": "94", "stop_lat": 48.82248640945558, "code_postal": "94018", "stop_lon": 2.4003151356284196, "coord": [48.82248640945558, 2.4003151356284196], "stop_id": 4439436, "stop_desc": "7 RUE DE L'ARCADE - 94018", "stop_name": "PONT NELSON MANDELA - RIVES DE BERCY"}, "geometry": {"type": "Point", "coordinates": [2.4003151356284196, 48.82248640945558]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0eb220502cbe4501a686e590779e0cfc9815187f", "fields": {"departement": "94", "stop_lat": 48.81781396314757, "code_postal": "94041", "stop_lon": 2.3980910406523597, "coord": [48.81781396314757, 2.3980910406523597], "stop_id": 4439437, "stop_desc": "50 BOULEVARD PAUL VAILLANT COUTURIER - 94041", "stop_name": "VAILLANT COUTURIER - LENINE"}, "geometry": {"type": "Point", "coordinates": [2.3980910406523597, 48.81781396314757]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a3fe44497429e97de6bcff856db91185d9b469c1", "fields": {"departement": "94", "stop_lat": 48.80158865978527, "code_postal": "94081", "stop_lon": 2.4025619011687778, "coord": [48.80158865978527, 2.4025619011687778], "stop_id": 4439443, "stop_desc": "3 PLACE PIERRE SEMARD - 94081", "stop_name": "VITRY RER"}, "geometry": {"type": "Point", "coordinates": [2.4025619011687778, 48.80158865978527]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c41d6e2065bddd9daa11ce733cb2a8c7923b316d", "fields": {"departement": "94", "stop_lat": 48.795245983898745, "code_postal": "94081", "stop_lon": 2.3973435873756848, "coord": [48.795245983898745, 2.3973435873756848], "stop_id": 4439445, "stop_desc": "70 AVENUE PAUL VAILLANT-COUTURIER - 94081", "stop_name": "PAUL VAILLANT-COUTURIER"}, "geometry": {"type": "Point", "coordinates": [2.3973435873756848, 48.795245983898745]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "548d60de2cf912184034f410186a7987f988aef1", "fields": {"departement": "94", "stop_lat": 48.790579620426534, "code_postal": "94081", "stop_lon": 2.380429921953688, "coord": [48.790579620426534, 2.380429921953688], "stop_id": 4439451, "stop_desc": "78 AVENUE DU MOULIN DE SAQUET - 94081", "stop_name": "CAMELINAT"}, "geometry": {"type": "Point", "coordinates": [2.380429921953688, 48.790579620426534]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fb555f938f20c06ee598c5cdc7ee69dc93e207a9", "fields": {"departement": "94", "stop_lat": 48.811394093383804, "code_postal": "94041", "stop_lon": 2.403023309341887, "coord": [48.811394093383804, 2.403023309341887], "stop_id": 4439462, "stop_desc": "AVENUE JEAN JAURES - 94041", "stop_name": "MAURICE GUNSBOURG"}, "geometry": {"type": "Point", "coordinates": [2.403023309341887, 48.811394093383804]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a1b73607c4e71f7b7df3be301d7e799603fdef43", "fields": {"departement": "94", "stop_lat": 48.788470834681945, "code_postal": "94076", "stop_lon": 2.3698320279301677, "coord": [48.788470834681945, 2.3698320279301677], "stop_id": 4439477, "stop_desc": "18 TER AVENUE LOUIS ARAGON - 94076", "stop_name": "RUE DE LA COMMUNE"}, "geometry": {"type": "Point", "coordinates": [2.3698320279301677, 48.788470834681945]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1b1ae266210ec663da819fd1df0013a9a1739ac5", "fields": {"departement": "94", "stop_lat": 48.789533221651986, "code_postal": "94081", "stop_lon": 2.3898691966409245, "coord": [48.789533221651986, 2.3898691966409245], "stop_id": 4439482, "stop_desc": "39 RUE DE L'ABBE ROGER DERRY - 94081", "stop_name": "HOTEL DE VILLE DE VITRY - R.DERRY"}, "geometry": {"type": "Point", "coordinates": [2.3898691966409245, 48.789533221651986]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ab4e48444be3182772aad7fbf8f6224d8e291fad", "fields": {"departement": "94", "stop_lat": 48.81688746102785, "code_postal": "94041", "stop_lon": 2.399573410259213, "coord": [48.81688746102785, 2.399573410259213], "stop_id": 4439492, "stop_desc": "75 BOULEVARD PAUL VAILLANT-COUTURIER - 94041", "stop_name": "MOISE - PIERRE GALAIS"}, "geometry": {"type": "Point", "coordinates": [2.399573410259213, 48.81688746102785]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7e795e7b5212785fcb7f1444ebe59a687924e04d", "fields": {"departement": "94", "stop_lat": 48.82353564157872, "code_postal": "94018", "stop_lon": 2.4045631760597113, "coord": [48.82353564157872, 2.4045631760597113], "stop_id": 4439495, "stop_desc": "AVENUE DE LA LIBERTE - 94018", "stop_name": "ARCHEVECHE"}, "geometry": {"type": "Point", "coordinates": [2.4045631760597113, 48.82353564157872]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "806d6629bf790faa22b2745b7ab31cfdf801ee02", "fields": {"departement": "94", "stop_lat": 48.82141691790273, "code_postal": "94018", "stop_lon": 2.415394683512984, "coord": [48.82141691790273, 2.415394683512984], "stop_id": 4439498, "stop_desc": "4 RUE ALFRED SAVOURE - 94018", "stop_name": "CHARENTON-ECOLES-METRO"}, "geometry": {"type": "Point", "coordinates": [2.415394683512984, 48.82141691790273]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4e0a262d0d443eede11b9bdc805339f126d635a6", "fields": {"departement": "94", "stop_lat": 48.78757278336037, "code_postal": "94076", "stop_lon": 2.3670022487935434, "coord": [48.78757278336037, 2.3670022487935434], "stop_id": 4439499, "stop_desc": "7 AVENUE DE STALINGRAD - 94076", "stop_name": "VILLEJUIF - LOUIS ARAGON"}, "geometry": {"type": "Point", "coordinates": [2.3670022487935434, 48.78757278336037]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6292ea64081653a795e110d83d6031bec6b29827", "fields": {"departement": "75", "stop_lat": 48.853761468030406, "code_postal": "75104", "stop_lon": 2.3470742363782513, "coord": [48.853761468030406, 2.3470742363782513], "stop_id": 4439502, "stop_desc": "6 RUE DE LA CITE - 75104", "stop_name": "CITE - PARVIS NOTRE-DAME"}, "geometry": {"type": "Point", "coordinates": [2.3470742363782513, 48.853761468030406]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cf08a7d6aebfbbd41fc1eba8ce7283378c738eb8", "fields": {"departement": "75", "stop_lat": 48.85059796516235, "code_postal": "75105", "stop_lon": 2.345984155428729, "coord": [48.85059796516235, 2.345984155428729], "stop_id": 4439504, "stop_desc": "63 BD SAINT-GERMAIN - 75105", "stop_name": "DANTE"}, "geometry": {"type": "Point", "coordinates": [2.345984155428729, 48.85059796516235]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "006c13a5afab33d1c7653570a1f457b8dc8f2d0b", "fields": {"departement": "75", "stop_lat": 48.84101668295286, "code_postal": "75105", "stop_lon": 2.352014435203932, "coord": [48.84101668295286, 2.352014435203932], "stop_id": 4439512, "stop_desc": "101-103 RUE MONGE - 75105", "stop_name": "CENSIER - DAUBENTON"}, "geometry": {"type": "Point", "coordinates": [2.352014435203932, 48.84101668295286]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "902872476bee757102613537653b1acf998f386c", "fields": {"departement": "75", "stop_lat": 48.834176950124636, "code_postal": "75113", "stop_lon": 2.3534828245635113, "coord": [48.834176950124636, 2.3534828245635113], "stop_id": 4439516, "stop_desc": "50 AVENUE DES GOBELINS - 75113", "stop_name": "BANQUIER"}, "geometry": {"type": "Point", "coordinates": [2.3534828245635113, 48.834176950124636]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "45235b8b0bee2972fb9aa629c1020958774d25a9", "fields": {"departement": "75", "stop_lat": 48.81946318939424, "code_postal": "75113", "stop_lon": 2.3595348317669615, "coord": [48.81946318939424, 2.3595348317669615], "stop_id": 4439527, "stop_desc": "159 AVENUE D'ITALIE - 75113", "stop_name": "PORTE D'ITALIE"}, "geometry": {"type": "Point", "coordinates": [2.3595348317669615, 48.81946318939424]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "71d2e3631d98c8343e01becfb297deacf3247b27", "fields": {"departement": "94", "stop_lat": 48.81209279119115, "code_postal": "94043", "stop_lon": 2.361872316889022, "coord": [48.81209279119115, 2.361872316889022], "stop_id": 4439533, "stop_desc": "41-43 AVENUE DE FONTAINEBLEAU - 94043", "stop_name": "CONVENTION - FONTAINEBLEAU"}, "geometry": {"type": "Point", "coordinates": [2.361872316889022, 48.81209279119115]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2d97a6c6aab5ebc3b47cb6c0302346b72ef5251f", "fields": {"departement": "94", "stop_lat": 48.79306454434045, "code_postal": "94076", "stop_lon": 2.366406843667121, "coord": [48.79306454434045, 2.366406843667121], "stop_id": 4439543, "stop_desc": "FACE 75 RUE JEAN JAURES - 94076", "stop_name": "GUYNEMER - PLACE DES FUSILLES"}, "geometry": {"type": "Point", "coordinates": [2.366406843667121, 48.79306454434045]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1cbd7593b3b6ee22166a6097410dc60fb1b76b8e", "fields": {"departement": "94", "stop_lat": 48.79238074838206, "code_postal": "94076", "stop_lon": 2.3691951277195096, "coord": [48.79238074838206, 2.3691951277195096], "stop_id": 4439545, "stop_desc": "114 BOULEVARD MAXIME GORKI - 94076", "stop_name": "GUYNEMER - MAXIME GORKI"}, "geometry": {"type": "Point", "coordinates": [2.3691951277195096, 48.79238074838206]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b786ba1b17716001d2b3be96467cb4f9abb1970a", "fields": {"departement": "94", "stop_lat": 48.78805792801428, "code_postal": "94076", "stop_lon": 2.3678050521272613, "coord": [48.78805792801428, 2.3678050521272613], "stop_id": 4439547, "stop_desc": "FACE 185 BOULEVARD MAXIME GORKI - 94076", "stop_name": "VILLEJUIF - LOUIS ARAGON"}, "geometry": {"type": "Point", "coordinates": [2.3678050521272613, 48.78805792801428]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fe20105beaa08aa8a97074c9a297a62b376f8c75", "fields": {"departement": "94", "stop_lat": 48.77209533768897, "code_postal": "94021", "stop_lon": 2.367537303569896, "coord": [48.77209533768897, 2.367537303569896], "stop_id": 4439552, "stop_desc": "AVENUE DE STALINGRAD - 94021", "stop_name": "MOULIN VERT"}, "geometry": {"type": "Point", "coordinates": [2.367537303569896, 48.77209533768897]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "34fa754bca123d42699c33a9ef252dea3782ba6c", "fields": {"departement": "94", "stop_lat": 48.76499465577505, "code_postal": "94021", "stop_lon": 2.367968239679133, "coord": [48.76499465577505, 2.367968239679133], "stop_id": 4439554, "stop_desc": "AVENUE DE STALINGRAD - 94021", "stop_name": "CIMETIERE PARISIEN DE THIAIS"}, "geometry": {"type": "Point", "coordinates": [2.367968239679133, 48.76499465577505]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "559ff646ecfbdfd271bbfbe84ae2a3ec83dcd3f3", "fields": {"departement": "94", "stop_lat": 48.759448634048056, "code_postal": "94073", "stop_lon": 2.3693244252130907, "coord": [48.759448634048056, 2.3693244252130907], "stop_id": 4439556, "stop_desc": "ROUTE DE THIAIS - 94073", "stop_name": "LE COR DE CHASSE"}, "geometry": {"type": "Point", "coordinates": [2.3693244252130907, 48.759448634048056]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b7812990e64bb4d2f9fb439036c738e6e59f6f05", "fields": {"departement": "94", "stop_lat": 48.76150973348482, "code_postal": "94021", "stop_lon": 2.356179161915079, "coord": [48.76150973348482, 2.356179161915079], "stop_id": 4439563, "stop_desc": "AVENUE DES TROIS MARCHES - 94021", "stop_name": "TROIS MARCHES"}, "geometry": {"type": "Point", "coordinates": [2.356179161915079, 48.76150973348482]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b54a6d0607233e2ac3afbd27202d77c32d54bd32", "fields": {"departement": "94", "stop_lat": 48.75820119073097, "code_postal": "94065", "stop_lon": 2.361235040376766, "coord": [48.75820119073097, 2.361235040376766], "stop_id": 4439572, "stop_desc": "RUE DU JOUR - 94065", "stop_name": "RUE DE LA BRESSE"}, "geometry": {"type": "Point", "coordinates": [2.361235040376766, 48.75820119073097]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "acc70dc3530a8cf7c1f7796b65b8a26c32dc2a16", "fields": {"departement": "91", "stop_lat": 48.736834210108675, "code_postal": "91479", "stop_lon": 2.369663780810606, "coord": [48.736834210108675, 2.369663780810606], "stop_id": 4439579, "stop_desc": "AVENUE DE L'EUROPE - 91479", "stop_name": "CAROLINE AIGLE"}, "geometry": {"type": "Point", "coordinates": [2.369663780810606, 48.736834210108675]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2592357dd4d0679fd5d49790dd23a225a38162a1", "fields": {"departement": "91", "stop_lat": 48.7052035724551, "code_postal": "91027", "stop_lon": 2.371341630771376, "coord": [48.7052035724551, 2.371341630771376], "stop_id": 4439587, "stop_desc": "95 AVENUE FRANCOIS MITTERRAND - 91027", "stop_name": "BELLE ETOILE"}, "geometry": {"type": "Point", "coordinates": [2.371341630771376, 48.7052035724551]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c15acccb688e1ab328e79b44f2c9983ca19d6eb0", "fields": {"departement": "91", "stop_lat": 48.695100540265024, "code_postal": "91326", "stop_lon": 2.371036299333733, "coord": [48.695100540265024, 2.371036299333733], "stop_id": 4439594, "stop_desc": "77 AVENUE DE LA COUR DE FRANCE - 91326", "stop_name": "OBSERVATOIRE CAMILLE FLAMMARION"}, "geometry": {"type": "Point", "coordinates": [2.371036299333733, 48.695100540265024]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6df4eb288b520467755c94262ba62bccbae78b4b", "fields": {"departement": "91", "stop_lat": 48.68892508573745, "code_postal": "91326", "stop_lon": 2.372036929834239, "coord": [48.68892508573745, 2.372036929834239], "stop_id": 4439598, "stop_desc": "35-37 RUE PIVER - 91326", "stop_name": "PIVER"}, "geometry": {"type": "Point", "coordinates": [2.372036929834239, 48.68892508573745]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "088751c8e8989fb2aa4f33b68d91570ae6e480df", "fields": {"departement": "91", "stop_lat": 48.690764432770045, "code_postal": "91326", "stop_lon": 2.381949145916975, "coord": [48.690764432770045, 2.381949145916975], "stop_id": 4439602, "stop_desc": "FACE 43 RUE DES GAULOIS - 91326", "stop_name": "JUVISY-RER"}, "geometry": {"type": "Point", "coordinates": [2.381949145916975, 48.690764432770045]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a9227eaa24a9a28184ed363a1d61cf35e2f794c4", "fields": {"departement": "94", "stop_lat": 48.76004202458944, "code_postal": "94073", "stop_lon": 2.3686722414037877, "coord": [48.76004202458944, 2.3686722414037877], "stop_id": 4439613, "stop_desc": "AVENUE DE FONTAINEBLEAU - 94073", "stop_name": "LE COR DE CHASSE - LA BELLE EPINE"}, "geometry": {"type": "Point", "coordinates": [2.3686722414037877, 48.76004202458944]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6883810dc6af69d73b7d6b83766f53014a803610", "fields": {"departement": "94", "stop_lat": 48.76461703210473, "code_postal": "94073", "stop_lon": 2.3684438760824804, "coord": [48.76461703210473, 2.3684438760824804], "stop_id": 4439614, "stop_desc": "AVENUE DE FONTAINEBLEAU - 94073", "stop_name": "CIMETIERE PARISIEN DE THIAIS"}, "geometry": {"type": "Point", "coordinates": [2.3684438760824804, 48.76461703210473]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "749f6c143cba3ebd72f3c6473e3faa1b01e7a2b9", "fields": {"departement": "94", "stop_lat": 48.779986814622646, "code_postal": "94038", "stop_lon": 2.367528304541817, "coord": [48.779986814622646, 2.367528304541817], "stop_id": 4439618, "stop_desc": "AVENUE DE STALINGRAD - 94038", "stop_name": "DOMAINE CHERIOUX"}, "geometry": {"type": "Point", "coordinates": [2.367528304541817, 48.779986814622646]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "418cb5266d857954d69602911546db103ab3de01", "fields": {"departement": "75", "stop_lat": 48.85182010268793, "code_postal": "75105", "stop_lon": 2.3479318560576297, "coord": [48.85182010268793, 2.3479318560576297], "stop_id": 4439621, "stop_desc": "3-5 RUE LAGRANGE - 75105", "stop_name": "LAGRANGE"}, "geometry": {"type": "Point", "coordinates": [2.3479318560576297, 48.85182010268793]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2fb2ed7be9ee2e140a1d6dc2c6c16c4836d8c3a8", "fields": {"departement": "75", "stop_lat": 48.85534333466014, "code_postal": "75104", "stop_lon": 2.346107532202977, "coord": [48.85534333466014, 2.346107532202977], "stop_id": 4439623, "stop_desc": "1 BOULEVARD DU PALAIS - 75104", "stop_name": "CITE - PALAIS DE JUSTICE"}, "geometry": {"type": "Point", "coordinates": [2.346107532202977, 48.85534333466014]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d0cf6c0a32bf9838031e1b7531808af5bfd7e714", "fields": {"departement": "92", "stop_lat": 48.80307488618575, "code_postal": "92023", "stop_lon": 2.26219004040694, "coord": [48.80307488618575, 2.26219004040694], "stop_id": 4458759, "stop_desc": "49 RUE PAUL VAILLANT COUTURIER - 92023", "stop_name": "TROSY"}, "geometry": {"type": "Point", "coordinates": [2.26219004040694, 48.80307488618575]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "46077cb54aca4f70f349ac4dce85ec056a512f65", "fields": {"departement": "92", "stop_lat": 48.80150455495496, "code_postal": "92023", "stop_lon": 2.266328429226022, "coord": [48.80150455495496, 2.266328429226022], "stop_id": 4458760, "stop_desc": "5 RUE PAUL VAILLANT COUTURIER - 92023", "stop_name": "MARCHE DE CLAMART"}, "geometry": {"type": "Point", "coordinates": [2.266328429226022, 48.80150455495496]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d785a8023e0056d0041247fd0ec891700ce0c7fb", "fields": {"departement": "92", "stop_lat": 48.801642529417165, "code_postal": "92023", "stop_lon": 2.2718385446972253, "coord": [48.801642529417165, 2.2718385446972253], "stop_id": 4458761, "stop_desc": "46 RUE DE CHATILLON - 92023", "stop_name": "PIERRE CORBY"}, "geometry": {"type": "Point", "coordinates": [2.2718385446972253, 48.801642529417165]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0951734b4a533aacc1df3a8fc144c9a91a655eec", "fields": {"departement": "92", "stop_lat": 48.7948199241652, "code_postal": "92032", "stop_lon": 2.2889200331325124, "coord": [48.7948199241652, 2.2889200331325124], "stop_id": 4458766, "stop_desc": "32-34 RUE BLANCHARD - 92032", "stop_name": "PIERRELAIS - BLANCHARD"}, "geometry": {"type": "Point", "coordinates": [2.2889200331325124, 48.7948199241652]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a6ee8d596439c2519307d2a19967865b12e93ed6", "fields": {"departement": "92", "stop_lat": 48.79576467289333, "code_postal": "92007", "stop_lon": 2.291503941539559, "coord": [48.79576467289333, 2.291503941539559], "stop_id": 4458767, "stop_desc": "FACE 23 RUE DE CHARTRES - 92007", "stop_name": "CHARTRES - BLANCHARD"}, "geometry": {"type": "Point", "coordinates": [2.291503941539559, 48.79576467289333]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "60e69f07be5e82b07ef3b09fd5716c302586d33a", "fields": {"departement": "94", "stop_lat": 48.79784034934669, "code_postal": "94016", "stop_lon": 2.328411632325268, "coord": [48.79784034934669, 2.328411632325268], "stop_id": 4458777, "stop_desc": "FACE 28 AVENUE CARNOT - 94016", "stop_name": "ARCUEIL-CACHAN RER"}, "geometry": {"type": "Point", "coordinates": [2.328411632325268, 48.79784034934669]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "84e09615ac8ec897dca8472e64d8932c621644b1", "fields": {"departement": "94", "stop_lat": 48.79666312097104, "code_postal": "94016", "stop_lon": 2.331336774255205, "coord": [48.79666312097104, 2.331336774255205], "stop_id": 4458778, "stop_desc": "RUE GALLIENI - 94016", "stop_name": "WILSON - PROVIGNY"}, "geometry": {"type": "Point", "coordinates": [2.331336774255205, 48.79666312097104]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4bcc8da49822647285debe7e4955c0a73a30a508", "fields": {"departement": "94", "stop_lat": 48.80187620108928, "code_postal": "94003", "stop_lon": 2.3351866061310647, "coord": [48.80187620108928, 2.3351866061310647], "stop_id": 4458782, "stop_desc": "3 RUE MAXIMILIEN ROBESPIERRE - 94003", "stop_name": "ROBESPIERRE"}, "geometry": {"type": "Point", "coordinates": [2.3351866061310647, 48.80187620108928]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0ea275a25e999c9c16d5884ee6d4e6b5187f24cd", "fields": {"departement": "94", "stop_lat": 48.80193912894198, "code_postal": "94003", "stop_lon": 2.3383295345202058, "coord": [48.80193912894198, 2.3383295345202058], "stop_id": 4458783, "stop_desc": "1 RUE AUGUSTE DELAUNE - 94003", "stop_name": "AUGUSTE DELAUNE"}, "geometry": {"type": "Point", "coordinates": [2.3383295345202058, 48.80193912894198]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bf9c5ed58cdd14d44c8976e9036c28858e9207c2", "fields": {"departement": "94", "stop_lat": 48.79238074838206, "code_postal": "94076", "stop_lon": 2.3691951277195096, "coord": [48.79238074838206, 2.3691951277195096], "stop_id": 4458790, "stop_desc": "114 BOULEVARD MAXIME GORKI - 94076", "stop_name": "GUYNEMER - MAXIME GORKI"}, "geometry": {"type": "Point", "coordinates": [2.3691951277195096, 48.79238074838206]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "117f0a2731570fef08a8fb32741edd1169d378d7", "fields": {"departement": "94", "stop_lat": 48.7939895585951, "code_postal": "94076", "stop_lon": 2.369277739405965, "coord": [48.7939895585951, 2.369277739405965], "stop_id": 4458794, "stop_desc": "97 BOULEVARD MAXIME GORKI - 94076", "stop_name": "GUYNEMER - MAXIME GORKI"}, "geometry": {"type": "Point", "coordinates": [2.369277739405965, 48.7939895585951]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fb0f83b78aabe96324d7214c9c34b094eaae4558", "fields": {"departement": "94", "stop_lat": 48.794844876952986, "code_postal": "94076", "stop_lon": 2.363251737581114, "coord": [48.794844876952986, 2.363251737581114], "stop_id": 4458796, "stop_desc": "FACE 27 BOULEVARD PAUL VAILLANT COUTURIER - 94076", "stop_name": "GROUPE HOSPITALIER PAUL BROUSSE"}, "geometry": {"type": "Point", "coordinates": [2.363251737581114, 48.794844876952986]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "96fb7ea98339efc0b102be7ad85a9277e55f4d1a", "fields": {"departement": "94", "stop_lat": 48.797876157007266, "code_postal": "94076", "stop_lon": 2.3478527380649643, "coord": [48.797876157007266, 2.3478527380649643], "stop_id": 4458799, "stop_desc": "80 AVENUE DU PRESIDENT SALVADOR ALLENDE - 94076", "stop_name": "BELVEDERE"}, "geometry": {"type": "Point", "coordinates": [2.3478527380649643, 48.797876157007266]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "031d2c764d326ea384660209f464b2e1bed7004f", "fields": {"departement": "94", "stop_lat": 48.79709463577202, "code_postal": "94016", "stop_lon": 2.3338127426577424, "coord": [48.79709463577202, 2.3338127426577424], "stop_id": 4458803, "stop_desc": "FACE 62 AVENUE COUSIN DE MERICOURT - 94016", "stop_name": "COUSIN DE MERICOURT"}, "geometry": {"type": "Point", "coordinates": [2.3338127426577424, 48.79709463577202]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e5ff78a16214a382120ec16dc174df21d4add3b6", "fields": {"departement": "92", "stop_lat": 48.79731360245945, "code_postal": "92007", "stop_lon": 2.300168676057517, "coord": [48.79731360245945, 2.300168676057517], "stop_id": 4458812, "stop_desc": "10 AVENUE JEAN-BAPTISTE FORTIN - 92007", "stop_name": "RUE FROIDE"}, "geometry": {"type": "Point", "coordinates": [2.300168676057517, 48.79731360245945]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a60a7d6a7e27efc4a3617b0936c814a5a88074ab", "fields": {"departement": "92", "stop_lat": 48.79598046005003, "code_postal": "92020", "stop_lon": 2.2917078144657896, "coord": [48.79598046005003, 2.2917078144657896], "stop_id": 4458814, "stop_desc": "63-65 RUE BLANCHARD - 92020", "stop_name": "CHARTRES - BLANCHARD"}, "geometry": {"type": "Point", "coordinates": [2.2917078144657896, 48.79598046005003]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f408c077d83399f9af8f4b5adb4f0de8beaccb5d", "fields": {"departement": "92", "stop_lat": 48.794900379219925, "code_postal": "92020", "stop_lon": 2.287858852506314, "coord": [48.794900379219925, 2.287858852506314], "stop_id": 4458815, "stop_desc": "FACE 17 RUE DES PIERRELAIS - 92020", "stop_name": "PIERRELAIS - BLANCHARD"}, "geometry": {"type": "Point", "coordinates": [2.287858852506314, 48.794900379219925]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "25eecc1abbef94cf9cbf09f6985c7cbc5d9d3e38", "fields": {"departement": "92", "stop_lat": 48.80183147515598, "code_postal": "92023", "stop_lon": 2.2722056615724435, "coord": [48.80183147515598, 2.2722056615724435], "stop_id": 4458820, "stop_desc": "43 RUE DE CHATILLON - 92023", "stop_name": "PIERRE CORBY"}, "geometry": {"type": "Point", "coordinates": [2.2722056615724435, 48.80183147515598]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "88db2e6e5257f3d160884ddb5594bbad90e970e3", "fields": {"departement": "92", "stop_lat": 48.803066103925985, "code_postal": "92023", "stop_lon": 2.26251659861195, "coord": [48.803066103925985, 2.26251659861195], "stop_id": 4458822, "stop_desc": "28-30 RUE PAUL VAILLANT COUTURIER - 92023", "stop_name": "TROSY"}, "geometry": {"type": "Point", "coordinates": [2.26251659861195, 48.803066103925985]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f48122aebde570e505caed9a2a6e8c3fc7162e58", "fields": {"departement": "75", "stop_lat": 48.881216560788346, "code_postal": "75108", "stop_lon": 2.317264506301832, "coord": [48.881216560788346, 2.317264506301832], "stop_id": 4459237, "stop_desc": "63 BOULEVARD DES BATIGNOLLES - 75108", "stop_name": "VILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.317264506301832, 48.881216560788346]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a63c6c93129c3dc9188c9549fc0cf566d7e40777", "fields": {"departement": "75", "stop_lat": 48.8686000083944, "code_postal": "75102", "stop_lon": 2.341069192464145, "coord": [48.8686000083944, 2.341069192464145], "stop_id": 4459246, "stop_desc": "11 PLACE DE LA BOURSE - 75102", "stop_name": "BOURSE"}, "geometry": {"type": "Point", "coordinates": [2.341069192464145, 48.8686000083944]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f8e97e01c1b16b411e89c0dc54c5db492cb34df0", "fields": {"departement": "75", "stop_lat": 48.86042151469406, "code_postal": "75101", "stop_lon": 2.340469262084462, "coord": [48.86042151469406, 2.340469262084462], "stop_id": 4459250, "stop_desc": "FACE 6 AVENUE DE L'AMIRAL COLIGNY - 75101", "stop_name": "LOUVRE - RIVOLI"}, "geometry": {"type": "Point", "coordinates": [2.340469262084462, 48.86042151469406]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "830ccd6b02bab1404ead192c7cdbd391d92aa4f1", "fields": {"departement": "75", "stop_lat": 48.85496370976521, "code_postal": "75104", "stop_lon": 2.361565794177265, "coord": [48.85496370976521, 2.361565794177265], "stop_id": 4459255, "stop_desc": "92 RUE SAINT-ANTOINE - 75104", "stop_name": "SAINT-PAUL"}, "geometry": {"type": "Point", "coordinates": [2.361565794177265, 48.85496370976521]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "45eb905b12a207e12bfc97ef0262b97209a0ee47", "fields": {"departement": "75", "stop_lat": 48.8537676322283, "code_postal": "75104", "stop_lon": 2.3649836922579452, "coord": [48.8537676322283, 2.3649836922579452], "stop_id": 4459256, "stop_desc": "31-33 RUE SAINT-ANTOINE - 75104", "stop_name": "BIRAGUE"}, "geometry": {"type": "Point", "coordinates": [2.3649836922579452, 48.8537676322283]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c2460ca0be3901ffaa05e39035bb95e804614d2f", "fields": {"departement": "75", "stop_lat": 48.85281401294961, "code_postal": "75104", "stop_lon": 2.3687965324803804, "coord": [48.85281401294961, 2.3687965324803804], "stop_id": 4459258, "stop_desc": "PLACE DE LA BASTILLE - 75104", "stop_name": "BASTILLE"}, "geometry": {"type": "Point", "coordinates": [2.3687965324803804, 48.85281401294961]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f53ab5830ba2e75a73bf326cdbf6a38b1f84ed73", "fields": {"departement": "75", "stop_lat": 48.8483376180706, "code_postal": "75112", "stop_lon": 2.3710952409746535, "coord": [48.8483376180706, 2.3710952409746535], "stop_id": 4459259, "stop_desc": "41 RUE DE LYON - 75112", "stop_name": "LYON - LEDRU ROLLIN"}, "geometry": {"type": "Point", "coordinates": [2.3710952409746535, 48.8483376180706]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5b0c896f96ec68f4a80eb660a9572c23af1c819c", "fields": {"departement": "75", "stop_lat": 48.85143669814865, "code_postal": "75111", "stop_lon": 2.376326861513944, "coord": [48.85143669814865, 2.376326861513944], "stop_id": 4459262, "stop_desc": "94-96 AVENUE LEDRU ROLLIN - 75111", "stop_name": "LEDRU ROLLIN - FAUBOURG SAINT-ANTOINE"}, "geometry": {"type": "Point", "coordinates": [2.376326861513944, 48.85143669814865]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e3f01cdd03798f2661d2d700b886f52f32d3cf03", "fields": {"departement": "75", "stop_lat": 48.85794172235713, "code_postal": "75111", "stop_lon": 2.3817118420922787, "coord": [48.85794172235713, 2.3817118420922787], "stop_id": 4459265, "stop_desc": "136 RUE DE LA ROQUETTE - 75111", "stop_name": "VOLTAIRE - LEON BLUM"}, "geometry": {"type": "Point", "coordinates": [2.3817118420922787, 48.85794172235713]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6b1168dae5ec8090c7bfc37fa7e77023ab8695b1", "fields": {"departement": "75", "stop_lat": 48.864766333887154, "code_postal": "75120", "stop_lon": 2.3952309635940914, "coord": [48.864766333887154, 2.3952309635940914], "stop_id": 4459270, "stop_desc": "AVENUE GAMBETTA - 75120", "stop_name": "MARTIN NADAUD"}, "geometry": {"type": "Point", "coordinates": [2.3952309635940914, 48.864766333887154]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "21cee3103d600ee82a3601faba964f1a3e8732a3", "fields": {"departement": "77", "stop_lat": 48.84111221087827, "code_postal": "77083", "stop_lon": 2.6049192081291013, "coord": [48.84111221087827, 2.6049192081291013], "stop_id": 3681599, "stop_desc": "PLACE PABLO PICASSO - 77083", "stop_name": "PLACE PABLO PICASSO"}, "geometry": {"type": "Point", "coordinates": [2.6049192081291013, 48.84111221087827]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6f0a524b9861f095a5b86d87596b2c9b42895165", "fields": {"departement": "77", "stop_lat": 48.848290555507766, "code_postal": "77083", "stop_lon": 2.585428047502302, "coord": [48.848290555507766, 2.585428047502302], "stop_id": 3681627, "stop_desc": "BOULEVARD DE NESLES - 77083", "stop_name": "BOIS DE GRACE"}, "geometry": {"type": "Point", "coordinates": [2.585428047502302, 48.848290555507766]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c8b16322dc0e045036704fe712f0f8a107609316", "fields": {"departement": "77", "stop_lat": 48.848290555507766, "code_postal": "77083", "stop_lon": 2.585428047502302, "coord": [48.848290555507766, 2.585428047502302], "stop_id": 3681657, "stop_desc": "BOULEVARD DE NESLES - 77083", "stop_name": "BOIS DE GRACE"}, "geometry": {"type": "Point", "coordinates": [2.585428047502302, 48.848290555507766]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "83f849e6449ebf47ca1028639352e3ca3773178b", "fields": {"departement": "77", "stop_lat": 48.840721325812034, "code_postal": "77337", "stop_lon": 2.6185332067737033, "coord": [48.840721325812034, 2.6185332067737033], "stop_id": 3681608, "stop_desc": "AVENUE MENDES FRANCE - 77337", "stop_name": "LES TOTEMS"}, "geometry": {"type": "Point", "coordinates": [2.6185332067737033, 48.840721325812034]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "85c77c481a5ef86cad7a2a325ed7b28969ba6c13", "fields": {"departement": "92", "stop_lat": 48.82855293733451, "code_postal": "92012", "stop_lon": 2.246199048394042, "coord": [48.82855293733451, 2.246199048394042], "stop_id": 3681852, "stop_desc": "242 BOULEVARD JEAN JAURES - 92012", "stop_name": "RUE DU POINT DU JOUR"}, "geometry": {"type": "Point", "coordinates": [2.246199048394042, 48.82855293733451]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "18f05f562505881517b59273b7d2e22d0a297354", "fields": {"departement": "92", "stop_lat": 48.848348996273856, "code_postal": "92012", "stop_lon": 2.241656760815586, "coord": [48.848348996273856, 2.241656760815586], "stop_id": 3681843, "stop_desc": "FACE 1 BIS AV JEAN BAPTISTE CLEMENT - 92012", "stop_name": "GAMBETTA"}, "geometry": {"type": "Point", "coordinates": [2.241656760815586, 48.848348996273856]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e97c363d129baf44473b9e823588d646cfd37f0c", "fields": {"departement": "92", "stop_lat": 48.82167109764111, "code_postal": "92040", "stop_lon": 2.2498180216492933, "coord": [48.82167109764111, 2.2498180216492933], "stop_id": 3681855, "stop_desc": "PLACE DE LA RESISTANCE - 92040", "stop_name": "LES MOULINEAUX"}, "geometry": {"type": "Point", "coordinates": [2.2498180216492933, 48.82167109764111]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "42c40b0e55149d72ec6b211e47a63aa3d812c702", "fields": {"departement": "92", "stop_lat": 48.83905032018747, "code_postal": "92012", "stop_lon": 2.246017239564007, "coord": [48.83905032018747, 2.246017239564007], "stop_id": 3681848, "stop_desc": "39 ROUTE DE LA REINE - 92012", "stop_name": "VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.246017239564007, 48.83905032018747]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7ea6a7982e0756607d1c5707a84e6436ef3da49e", "fields": {"departement": "92", "stop_lat": 48.81756514042195, "code_postal": "92046", "stop_lon": 2.30746270141898, "coord": [48.81756514042195, 2.30746270141898], "stop_id": 3681970, "stop_desc": "128-130 AV PIERRE BROSSOLETTE - 92046", "stop_name": "PIERRE BROSSOLETTE - AUGUSTIN DUMONT"}, "geometry": {"type": "Point", "coordinates": [2.30746270141898, 48.81756514042195]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2e6341c331aa8eb4d1f15722d7a6f560c7fa5fb7", "fields": {"departement": "92", "stop_lat": 48.82495398793462, "code_postal": "92040", "stop_lon": 2.266990584750047, "coord": [48.82495398793462, 2.266990584750047], "stop_id": 3681862, "stop_desc": "67 BIS RUE DU GOUVERNEUR GENERAL EBOUE - 92040", "stop_name": "FERBER-GALLIENI"}, "geometry": {"type": "Point", "coordinates": [2.266990584750047, 48.82495398793462]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ee0b563f32514ddb6793993af78777bee0439b4a", "fields": {"departement": "92", "stop_lat": 48.8154422235913, "code_postal": "92046", "stop_lon": 2.3009314548288073, "coord": [48.8154422235913, 2.3009314548288073], "stop_id": 3681971, "stop_desc": "FACE 6 AV IRENE ET FREDERIC JOLIOT CURIE - 92046", "stop_name": "JOLIOT CURIE"}, "geometry": {"type": "Point", "coordinates": [2.3009314548288073, 48.8154422235913]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bef3a5db0a75ae7c1c813ba8ef41bacf55889421", "fields": {"departement": "92", "stop_lat": 48.82063740758417, "code_postal": "92046", "stop_lon": 2.3018805657242396, "coord": [48.82063740758417, 2.3018805657242396], "stop_id": 3681965, "stop_desc": "PL DU 11 NOVEMBRE - 92046", "stop_name": "HOTEL DE VILLE DE MALAKOFF"}, "geometry": {"type": "Point", "coordinates": [2.3018805657242396, 48.82063740758417]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "791694d3931cad55ca316aa22f718da12c76df53", "fields": {"departement": "92", "stop_lat": 48.81202468926008, "code_postal": "92046", "stop_lon": 2.2943473772686493, "coord": [48.81202468926008, 2.2943473772686493], "stop_id": 3681974, "stop_desc": "44 R DU 19 MARS 1962 - 92046", "stop_name": "ROND-POINT GAGARINE"}, "geometry": {"type": "Point", "coordinates": [2.2943473772686493, 48.81202468926008]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6ceebb4ded9038214f7a7135bc83458cd95912d6", "fields": {"departement": "92", "stop_lat": 48.81914920599903, "code_postal": "92040", "stop_lon": 2.2549397354656633, "coord": [48.81914920599903, 2.2549397354656633], "stop_id": 3681858, "stop_desc": "115 AVENUE DE VERDUN - 92040", "stop_name": "CHEMIN DES VIGNES"}, "geometry": {"type": "Point", "coordinates": [2.2549397354656633, 48.81914920599903]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c2454d74c7651f4a3082cfcb24dfa9c4859be9c2", "fields": {"departement": "92", "stop_lat": 48.82052739803083, "code_postal": "92040", "stop_lon": 2.2595107251735054, "coord": [48.82052739803083, 2.2595107251735054], "stop_id": 3681860, "stop_desc": "83 AVENUE DE VERDUN - 92040", "stop_name": "ISSY-RER"}, "geometry": {"type": "Point", "coordinates": [2.2595107251735054, 48.82052739803083]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3040b45028a12a845d03eb86de8afda38abe67c1", "fields": {"departement": "92", "stop_lat": 48.823200502897365, "code_postal": "92046", "stop_lon": 2.3077725274735896, "coord": [48.823200502897365, 2.3077725274735896], "stop_id": 3681966, "stop_desc": "R VICTOR HUGO - 92046", "stop_name": "VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.3077725274735896, 48.823200502897365]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2cf4122f91f5ae11439477ecb323f8408deba80c", "fields": {"departement": "94", "stop_lat": 48.846023625181644, "code_postal": "94052", "stop_lon": 2.490722017077124, "coord": [48.846023625181644, 2.490722017077124], "stop_id": 3682993, "stop_desc": "162-164 BOULEVARD DE STRASBOURG - 94052", "stop_name": "RUE DE PLAISANCE - LYCEE LOUIS ARMAND"}, "geometry": {"type": "Point", "coordinates": [2.490722017077124, 48.846023625181644]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b478e48061102dd79ccf4321e8bec0b13cd7c996", "fields": {"departement": "94", "stop_lat": 48.83470447146906, "code_postal": "94052", "stop_lon": 2.4715603393176275, "coord": [48.83470447146906, 2.4715603393176275], "stop_id": 3682988, "stop_desc": "FACE AU 8 AVENUE DES MARRONNIERS - 94052", "stop_name": "NOGENT-SUR-MARNE RER"}, "geometry": {"type": "Point", "coordinates": [2.4715603393176275, 48.83470447146906]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d1f548e980cea959e97f4010a5f969f590dc38be", "fields": {"departement": "93", "stop_lat": 48.85357826818703, "code_postal": "93049", "stop_lon": 2.513011986510742, "coord": [48.85357826818703, 2.513011986510742], "stop_id": 3683010, "stop_desc": "PISTE GARE ROUTIERE - 93049", "stop_name": "NEUILLY-PLAISANCE RER"}, "geometry": {"type": "Point", "coordinates": [2.513011986510742, 48.85357826818703]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6df581ba0ca90f2657aa9ffaac7df32648559e8c", "fields": {"departement": "93", "stop_lat": 48.85840216543347, "code_postal": "93050", "stop_lon": 2.520546910918171, "coord": [48.85840216543347, 2.520546910918171], "stop_id": 3683016, "stop_desc": "28 BOULEVARD ARISTIDE BRIAND - 93050", "stop_name": "PAUL DOUMER"}, "geometry": {"type": "Point", "coordinates": [2.520546910918171, 48.85840216543347]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5a16de939944d3c2bf1f02b4c1244013b9b89b6d", "fields": {"departement": "77", "stop_lat": 48.87633286073769, "code_postal": "77108", "stop_lon": 2.601449451035476, "coord": [48.87633286073769, 2.601449451035476], "stop_id": 3682980, "stop_desc": "FACE 39 RUE DE LA LIBERTE - 77108", "stop_name": "DISPENSAIRE"}, "geometry": {"type": "Point", "coordinates": [2.601449451035476, 48.87633286073769]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1b8473f5d8dfa34327b62e8feb13f2e5b1bf1aa1", "fields": {"departement": "93", "stop_lat": 48.864007019410295, "code_postal": "93050", "stop_lon": 2.5495953946144163, "coord": [48.864007019410295, 2.5495953946144163], "stop_id": 3682959, "stop_desc": "AVENUE JEAN JAURES - 93050", "stop_name": "MAISON BLANCHE"}, "geometry": {"type": "Point", "coordinates": [2.5495953946144163, 48.864007019410295]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6829a0310381d795f315e7df73a7c125e9075d9e", "fields": {"departement": "94", "stop_lat": 48.84976027932212, "code_postal": "94058", "stop_lon": 2.4991355834688176, "coord": [48.84976027932212, 2.4991355834688176], "stop_id": 3682995, "stop_desc": "60 BIS BOULEVARD ALSACE-LORRAINE - 94058", "stop_name": "AVRON"}, "geometry": {"type": "Point", "coordinates": [2.4991355834688176, 48.84976027932212]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "af807c32dfcb94382ba156983e8aac50dd9842e7", "fields": {"departement": "94", "stop_lat": 48.8404625428155, "code_postal": "94052", "stop_lon": 2.4817735438608586, "coord": [48.8404625428155, 2.4817735438608586], "stop_id": 3682991, "stop_desc": "100 BOULEVARD DE STRASBOURG - 94052", "stop_name": "PAUL BERT"}, "geometry": {"type": "Point", "coordinates": [2.4817735438608586, 48.8404625428155]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a503a8b54c470de5429c2ecfc57afc43a7622212", "fields": {"departement": "93", "stop_lat": 48.86489624039631, "code_postal": "93050", "stop_lon": 2.554870877887246, "coord": [48.86489624039631, 2.554870877887246], "stop_id": 3682961, "stop_desc": "AVENUE JEAN JAURES - 93050", "stop_name": "L'AVENIR"}, "geometry": {"type": "Point", "coordinates": [2.554870877887246, 48.86489624039631]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e862a5117b595f293dd2e2ecfd015cf848270400", "fields": {"departement": "92", "stop_lat": 48.83554912628208, "code_postal": "92012", "stop_lon": 2.239678999700299, "coord": [48.83554912628208, 2.239678999700299], "stop_id": 3442584, "stop_desc": "AVENUE ANDRE MORIZET - 92012", "stop_name": "HOTEL DE VILLE DE BOULOGNE-BILLANCOURT"}, "geometry": {"type": "Point", "coordinates": [2.239678999700299, 48.83554912628208]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5094c606bc3252a969202c77a77db48fe0930662", "fields": {"departement": "92", "stop_lat": 48.82770486209949, "code_postal": "92040", "stop_lon": 2.26810308702108, "coord": [48.82770486209949, 2.26810308702108], "stop_id": 3442572, "stop_desc": "6-8 BOULEVARD DES FRERES VOISIN - 92040", "stop_name": "PRESIDENT ROBERT SCHUMAN"}, "geometry": {"type": "Point", "coordinates": [2.26810308702108, 48.82770486209949]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d3254e58e3abf6e73bfe1eb56db9a8b2e8ee38df", "fields": {"departement": "92", "stop_lat": 48.820319278175376, "code_postal": "92075", "stop_lon": 2.2914414666017158, "coord": [48.820319278175376, 2.2914414666017158], "stop_id": 3442559, "stop_desc": "11 RUE ERNEST LAVAL - 92075", "stop_name": "CARREFOUR DE L'INSURRECTION"}, "geometry": {"type": "Point", "coordinates": [2.2914414666017158, 48.820319278175376]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "19f1a3739ce7aa074c0c27429dd140fabc0682c8", "fields": {"departement": "92", "stop_lat": 48.83087086223816, "code_postal": "92012", "stop_lon": 2.2574940658797122, "coord": [48.83087086223816, 2.2574940658797122], "stop_id": 3442576, "stop_desc": "BOULEVARD DE LA REPUBLIQUE - 92012", "stop_name": "QUAI DU POINT DU JOUR"}, "geometry": {"type": "Point", "coordinates": [2.2574940658797122, 48.83087086223816]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d9ed9cde3e67f8cee3489b386eb053c343f8c29f", "fields": {"departement": "92", "stop_lat": 48.84134695499046, "code_postal": "92064", "stop_lon": 2.220632775547223, "coord": [48.84134695499046, 2.220632775547223], "stop_id": 3442594, "stop_desc": "PISTE CIRCULAIRE OUEST DE LA PLACE CLEMENCEAU - 92064", "stop_name": "LA COLLINE"}, "geometry": {"type": "Point", "coordinates": [2.220632775547223, 48.84134695499046]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a641d00c4f558ba1a1577fc8ca5b5ea7a127a25c", "fields": {"departement": "92", "stop_lat": 48.82009450178561, "code_postal": "92075", "stop_lon": 2.2912238966317453, "coord": [48.82009450178561, 2.2912238966317453], "stop_id": 3442560, "stop_desc": "2 RUE ERNEST LAVAL - 92075", "stop_name": "CARREFOUR DE L'INSURRECTION"}, "geometry": {"type": "Point", "coordinates": [2.2912238966317453, 48.82009450178561]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "15f13c4930cb8b5b3d35b83a8d244517f4d81294", "fields": {"departement": "92", "stop_lat": 48.82739562507031, "code_postal": "92040", "stop_lon": 2.2779861305343347, "coord": [48.82739562507031, 2.2779861305343347], "stop_id": 3442567, "stop_desc": "FACE 10 BOULEVARD GAMBETTA - 92040", "stop_name": "CORENTIN CELTON-METRO"}, "geometry": {"type": "Point", "coordinates": [2.2779861305343347, 48.82739562507031]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "09ea9105d235625fcc863fed6f0394f16961b420", "fields": {"departement": "92", "stop_lat": 48.82700948660238, "code_postal": "92040", "stop_lon": 2.278653576085032, "coord": [48.82700948660238, 2.278653576085032], "stop_id": 3442568, "stop_desc": "6 BOULEVARD GAMBETTA - 92040", "stop_name": "CORENTIN CELTON-METRO"}, "geometry": {"type": "Point", "coordinates": [2.278653576085032, 48.82700948660238]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cbf9e50858d9f9bab8e77a46dbc3d1c0b52bec07", "fields": {"departement": "92", "stop_lat": 48.819481057190636, "code_postal": "92049", "stop_lon": 2.3144028856530245, "coord": [48.819481057190636, 2.3144028856530245], "stop_id": 3442549, "stop_desc": "78 RUE GABRIEL PERI - 92049", "stop_name": "RADIGUEY"}, "geometry": {"type": "Point", "coordinates": [2.3144028856530245, 48.819481057190636]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d84c93734d46ab09855d46d2595c6670bd0ffaa9", "fields": {"departement": "75", "stop_lat": 48.84937598759071, "code_postal": "75106", "stop_lon": 2.3374589542121296, "coord": [48.84937598759071, 2.3374589542121296], "stop_id": 3442424, "stop_desc": "FACE 15 RUE DE VAUGIRARD - 75106", "stop_name": "SENAT"}, "geometry": {"type": "Point", "coordinates": [2.3374589542121296, 48.84937598759071]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9f62287a716c8569d664225407d8f8c0a352a8a0", "fields": {"departement": "93", "stop_lat": 48.92414475246889, "code_postal": "93007", "stop_lon": 2.4725423425858173, "coord": [48.92414475246889, 2.4725423425858173], "stop_id": 3450631, "stop_desc": "21 AVENUE JEAN BAPTISTE BUSNEL - 93007", "stop_name": "DANIELLE CASANOVA"}, "geometry": {"type": "Point", "coordinates": [2.4725423425858173, 48.92414475246889]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "911f1e735c05ce33b5179dd83ff7735f7fe798d6", "fields": {"departement": "93", "stop_lat": 48.91859536998403, "code_postal": "93007", "stop_lon": 2.4763869562903142, "coord": [48.91859536998403, 2.4763869562903142], "stop_id": 3450627, "stop_desc": "18 AVENUE DE SURCOUF - 93007", "stop_name": "JARDINS DE LA NOUE"}, "geometry": {"type": "Point", "coordinates": [2.4763869562903142, 48.91859536998403]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8e7111e6407480c5846407aa9d02ba0e33532b46", "fields": {"departement": "93", "stop_lat": 48.940169833623294, "code_postal": "93007", "stop_lon": 2.4712472881098875, "coord": [48.940169833623294, 2.4712472881098875], "stop_id": 3450657, "stop_desc": "FACE 143 AVENUE PASTEUR - 93007", "stop_name": "DOCTEUR CALMETTE"}, "geometry": {"type": "Point", "coordinates": [2.4712472881098875, 48.940169833623294]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2a9d0bd3de0843dc2b58e3fa6e6cf0322fd7f47f", "fields": {"departement": "93", "stop_lat": 48.891703055393194, "code_postal": "93053", "stop_lon": 2.4711083518739225, "coord": [48.891703055393194, 2.4711083518739225], "stop_id": 3450605, "stop_desc": "114 AVENUE DE ROSNY - 93053", "stop_name": "CITE DU 1ER MAI"}, "geometry": {"type": "Point", "coordinates": [2.4711083518739225, 48.891703055393194]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "06511be2ef42ff79d3d254b8e0aa384cc8d58813", "fields": {"departement": "93", "stop_lat": 48.90306932325303, "code_postal": "93010", "stop_lon": 2.480952996252528, "coord": [48.90306932325303, 2.480952996252528], "stop_id": 3450613, "stop_desc": "75 RUE JULES GUESDE - 93010", "stop_name": "EGLISE DE BONDY"}, "geometry": {"type": "Point", "coordinates": [2.480952996252528, 48.90306932325303]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6d1203246ec65a5388d8c58f1c7a3fdd7dbedcb4", "fields": {"departement": "93", "stop_lat": 48.9136270250163, "code_postal": "93010", "stop_lon": 2.482686671284147, "coord": [48.9136270250163, 2.482686671284147], "stop_id": 3450620, "stop_desc": "AVENUE HENRI VARAGNAT - 93010", "stop_name": "SUZANNE BUISSON"}, "geometry": {"type": "Point", "coordinates": [2.482686671284147, 48.9136270250163]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "85b14933f30dccc80874944329e535f423394f0a", "fields": {"departement": "93", "stop_lat": 48.92527529901001, "code_postal": "93007", "stop_lon": 2.4741273246311293, "coord": [48.92527529901001, 2.4741273246311293], "stop_id": 3450633, "stop_desc": "BOULEVARD JACQUES DECOUR - 93007", "stop_name": "LES 4 TOURS"}, "geometry": {"type": "Point", "coordinates": [2.4741273246311293, 48.92527529901001]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a7010a2efc638383dc0947d6e11551f00fca7e2d", "fields": {"departement": "93", "stop_lat": 48.93003715283571, "code_postal": "93029", "stop_lon": 2.458645514838527, "coord": [48.93003715283571, 2.458645514838527], "stop_id": 3450641, "stop_desc": "37 AVENUE JOFFRE - 93029", "stop_name": "EMILE DESPREZ"}, "geometry": {"type": "Point", "coordinates": [2.458645514838527, 48.93003715283571]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "31064d1b1f70cb6d88503cbe3335c3e835ffe0b8", "fields": {"departement": "93", "stop_lat": 48.93281739515088, "code_postal": "93029", "stop_lon": 2.455364753088356, "coord": [48.93281739515088, 2.455364753088356], "stop_id": 3450646, "stop_desc": "193 RUE ANATOLE FRANCE - 93029", "stop_name": "DRANCY RER"}, "geometry": {"type": "Point", "coordinates": [2.455364753088356, 48.93281739515088]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "44f2d47e279335ebe9a30abd19f169cb0707a356", "fields": {"departement": "92", "stop_lat": 48.82224888312768, "code_postal": "92075", "stop_lon": 2.284783941220651, "coord": [48.82224888312768, 2.284783941220651], "stop_id": 3442564, "stop_desc": "9 BOULEVARD DU LYCEE - 92075", "stop_name": "PLACE DU MARECHAL DE LATTRE DE TASSIGNY"}, "geometry": {"type": "Point", "coordinates": [2.284783941220651, 48.82224888312768]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4e69dca1f3a71211344081bed4a4cfc940362ec3", "fields": {"departement": "75", "stop_lat": 48.82150449009198, "code_postal": "75114", "stop_lon": 2.3218879847732494, "coord": [48.82150449009198, 2.3218879847732494], "stop_id": 3442596, "stop_desc": "FACE 18 AV DE LA PORTE DE MONTROUGE - 75114", "stop_name": "CIMETIERE DE MONTROUGE"}, "geometry": {"type": "Point", "coordinates": [2.3218879847732494, 48.82150449009198]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "13a239f3b8f08ea134d9e2223e953ab1201815d3", "fields": {"departement": "93", "stop_lat": 48.89546528048841, "code_postal": "93055", "stop_lon": 2.426778609497494, "coord": [48.89546528048841, 2.426778609497494], "stop_id": 3446770, "stop_desc": "3 ROUTE DE NOISY - 93055", "stop_name": "RAYMOND QUENEAU - ROUTE DE NOISY"}, "geometry": {"type": "Point", "coordinates": [2.426778609497494, 48.89546528048841]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7c7fa23d2a261d07d15b2e172022b65f483e10cc", "fields": {"departement": "93", "stop_lat": 48.882628288290526, "code_postal": "93077", "stop_lon": 2.4982843380018736, "coord": [48.882628288290526, 2.4982843380018736], "stop_id": 3446797, "stop_desc": "AVENUE DE ROSNY - 93077", "stop_name": "CIMETIERE DE VILLEMOMBLE"}, "geometry": {"type": "Point", "coordinates": [2.4982843380018736, 48.882628288290526]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "59f150aa31cfa17748552a44a2182c705f3caba9", "fields": {"departement": "93", "stop_lat": 48.8932102006786, "code_postal": "93055", "stop_lon": 2.4127906117656055, "coord": [48.8932102006786, 2.4127906117656055], "stop_id": 3446764, "stop_desc": "AVENUE JEAN LOLIVE - 93055", "stop_name": "EGLISE DE PANTIN-METRO"}, "geometry": {"type": "Point", "coordinates": [2.4127906117656055, 48.8932102006786]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "97d00a34135532ed4629a7472176a68249c63d58", "fields": {"departement": "93", "stop_lat": 48.88501464517659, "code_postal": "93064", "stop_lon": 2.4804941157949116, "coord": [48.88501464517659, 2.4804941157949116], "stop_id": 3446789, "stop_desc": "BOULEVARD D'ALSACE LORRAINE - 93064", "stop_name": "CHEMIN DE BONDY"}, "geometry": {"type": "Point", "coordinates": [2.4804941157949116, 48.88501464517659]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "55d2f39f7734ac713f645d4a84c3986d68a61ccc", "fields": {"departement": "93", "stop_lat": 48.88810005790789, "code_postal": "93053", "stop_lon": 2.4620225350223475, "coord": [48.88810005790789, 2.4620225350223475], "stop_id": 3446784, "stop_desc": "139 RUE DE BREMENT - 93053", "stop_name": "SQUARE STEPHENSON"}, "geometry": {"type": "Point", "coordinates": [2.4620225350223475, 48.88810005790789]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2b2aa1558b515a083ac8181d9f1deeed13b72986", "fields": {"departement": "92", "stop_lat": 48.812517373490024, "code_postal": "92049", "stop_lon": 2.3276334462487474, "coord": [48.812517373490024, 2.3276334462487474], "stop_id": 3449472, "stop_desc": "60-62 RUE DE LA VANNE - 92049", "stop_name": "VANNE"}, "geometry": {"type": "Point", "coordinates": [2.3276334462487474, 48.812517373490024]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "21494fc48506a28ecd4df4e7d78bb621b9d160e9", "fields": {"departement": "93", "stop_lat": 48.88709700508149, "code_postal": "93053", "stop_lon": 2.467144298225522, "coord": [48.88709700508149, 2.467144298225522], "stop_id": 3446785, "stop_desc": "236 RUE DE BREMENT - 93053", "stop_name": "BREMENT"}, "geometry": {"type": "Point", "coordinates": [2.467144298225522, 48.88709700508149]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e87d0701fd048b1fdcf1e7cf3f902f4d912375b4", "fields": {"departement": "92", "stop_lat": 48.81470054114749, "code_postal": "92049", "stop_lon": 2.3200527693386084, "coord": [48.81470054114749, 2.3200527693386084], "stop_id": 3449476, "stop_desc": "AVENUE VERDIER - 92049", "stop_name": "VERDIER"}, "geometry": {"type": "Point", "coordinates": [2.3200527693386084, 48.81470054114749]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5944845d238ea284d168e7d21cb506aa72a1bb24", "fields": {"departement": "94", "stop_lat": 48.825622805704846, "code_postal": "94017", "stop_lon": 2.5096640390169505, "coord": [48.825622805704846, 2.5096640390169505], "stop_id": 3619646, "stop_desc": "FACE 102 RUE DE LA REPUBLIQUE - 94017", "stop_name": "LES BOULLEREAUX - CHAMPIGNY RER"}, "geometry": {"type": "Point", "coordinates": [2.5096640390169505, 48.825622805704846]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dfacb3466088ad6d78a62523472409b2c87a9277", "fields": {"departement": "94", "stop_lat": 48.81965124752154, "code_postal": "94017", "stop_lon": 2.5122165753082744, "coord": [48.81965124752154, 2.5122165753082744], "stop_id": 3619650, "stop_desc": "6 RUE ALEXANDRE FOURNY - 94017", "stop_name": "REPUBLIQUE - ALEXANDRE FOURNY"}, "geometry": {"type": "Point", "coordinates": [2.5122165753082744, 48.81965124752154]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "521e0cc9300d342ef93f4e48a5be7bcd60938104", "fields": {"departement": "94", "stop_lat": 48.822429558442465, "code_postal": "94017", "stop_lon": 2.4919453082810836, "coord": [48.822429558442465, 2.4919453082810836], "stop_id": 3619639, "stop_desc": "75 AVENUE DU GENERAL DE GAULLE - 94017", "stop_name": "LES MARRONNIERS"}, "geometry": {"type": "Point", "coordinates": [2.4919453082810836, 48.822429558442465]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7854c99d45ec7599dd8bb84803daf3916cb1e663", "fields": {"departement": "94", "stop_lat": 48.821657491207276, "code_postal": "94017", "stop_lon": 2.510862242190956, "coord": [48.821657491207276, 2.510862242190956], "stop_id": 3619649, "stop_desc": "FACE 65-67 AVENUE DE LA REPUBLIQUE - 94017", "stop_name": "CITES JARDINS"}, "geometry": {"type": "Point", "coordinates": [2.510862242190956, 48.821657491207276]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5a53e3f777e4bf349f3a16ade1956bfba5b46ec9", "fields": {"departement": "94", "stop_lat": 48.81995626912527, "code_postal": "94042", "stop_lon": 2.478844627264899, "coord": [48.81995626912527, 2.478844627264899], "stop_id": 3619634, "stop_desc": "44 AVENUE DU GENERAL GALLIENI - 94042", "stop_name": "LES PLATANES"}, "geometry": {"type": "Point", "coordinates": [2.478844627264899, 48.81995626912527]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "991df9732f5d86c96608b7379196d5560436cdb7", "fields": {"departement": "94", "stop_lat": 48.81883257366014, "code_postal": "94017", "stop_lon": 2.518746723608904, "coord": [48.81883257366014, 2.518746723608904], "stop_id": 3619654, "stop_desc": "72-74 RUE ALEXANDRE FOURNY - 94017", "stop_name": "FOURNY EGALITE"}, "geometry": {"type": "Point", "coordinates": [2.518746723608904, 48.81883257366014]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "016f796cde7beffef2a00377a00b922d701b2c48", "fields": {"departement": "94", "stop_lat": 48.81865591443315, "code_postal": "94017", "stop_lon": 2.5225705666680525, "coord": [48.81865591443315, 2.5225705666680525], "stop_id": 3619655, "stop_desc": "110 RUE ALEXANDRE FOURNY - 94017", "stop_name": "BENOIT FRACHON"}, "geometry": {"type": "Point", "coordinates": [2.5225705666680525, 48.81865591443315]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bb13216288676f646f4578c4c20885d2b47a2538", "fields": {"departement": "94", "stop_lat": 48.82052837728242, "code_postal": "94042", "stop_lon": 2.4738102453124604, "coord": [48.82052837728242, 2.4738102453124604], "stop_id": 3619633, "stop_desc": "PLACE DE VERDUN - 94042", "stop_name": "VERDUN"}, "geometry": {"type": "Point", "coordinates": [2.4738102453124604, 48.82052837728242]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "944d8b427a14241978878f9c11604c99062184c7", "fields": {"departement": "93", "stop_lat": 48.837314033343404, "code_postal": "93051", "stop_lon": 2.5779825424166183, "coord": [48.837314033343404, 2.5779825424166183], "stop_id": 3639473, "stop_desc": "0 BD DE CHAMPY RICHARDETS - 93051", "stop_name": "LA BUTTE AUX CAILLES"}, "geometry": {"type": "Point", "coordinates": [2.5779825424166183, 48.837314033343404]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "67d50289e3a85517bdb1042b62d78271dd3d4a83", "fields": {"departement": "77", "stop_lat": 48.830654628729015, "code_postal": "77169", "stop_lon": 2.590761818487338, "coord": [48.830654628729015, 2.590761818487338], "stop_id": 3639460, "stop_desc": "RUE JEAN MONNET - 77169", "stop_name": "MALNOUE - BOIS DES SOUCHES"}, "geometry": {"type": "Point", "coordinates": [2.590761818487338, 48.830654628729015]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cb92f087ccbeca00f12fc8b4ff42e34d50185fd4", "fields": {"departement": "94", "stop_lat": 48.80259233185019, "code_postal": "94046", "stop_lon": 2.4334214355511814, "coord": [48.80259233185019, 2.4334214355511814], "stop_id": 3619959, "stop_desc": "FACE 34 AVENUE DE LA REPUBLIQUE - 94046", "stop_name": "REPUBLIQUE - BLUM"}, "geometry": {"type": "Point", "coordinates": [2.4334214355511814, 48.80259233185019]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2e6e2079a689aaab2ac89b78972f21ca3a1a59bd", "fields": {"departement": "77", "stop_lat": 48.84515807443644, "code_postal": "77083", "stop_lon": 2.6042728420545522, "coord": [48.84515807443644, 2.6042728420545522], "stop_id": 3639450, "stop_desc": "12 COURS DU LUZARD - 77083", "stop_name": "FONTAINE AUX COULONS"}, "geometry": {"type": "Point", "coordinates": [2.6042728420545522, 48.84515807443644]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7efa3efc7694b52faad913fddcc691bac6d52e35", "fields": {"departement": "77", "stop_lat": 48.85848156518184, "code_postal": "77083", "stop_lon": 2.5942893846205597, "coord": [48.85848156518184, 2.5942893846205597], "stop_id": 3639443, "stop_desc": "57 BIS AVENUE DE LA MORELLE - 77083", "stop_name": "LES PINSONS"}, "geometry": {"type": "Point", "coordinates": [2.5942893846205597, 48.85848156518184]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9ca13653b11a426e4afc05be9ab53609fe29fdfc", "fields": {"departement": "93", "stop_lat": 48.825795701995126, "code_postal": "93051", "stop_lon": 2.584871274149016, "coord": [48.825795701995126, 2.584871274149016], "stop_id": 3639465, "stop_desc": "AVENUE DES GRAVIERS - 93051", "stop_name": "COLLEGE DES YVRIS"}, "geometry": {"type": "Point", "coordinates": [2.584871274149016, 48.825795701995126]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d7bedce516fcd0ceb1a785cb5fd512904dd2bf52", "fields": {"departement": "77", "stop_lat": 48.851106540546496, "code_postal": "77083", "stop_lon": 2.600817067581796, "coord": [48.851106540546496, 2.600817067581796], "stop_id": 3639447, "stop_desc": "13 RUE D'ALSACE - 77083", "stop_name": "MAIRIE DE CHAMPS"}, "geometry": {"type": "Point", "coordinates": [2.600817067581796, 48.851106540546496]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bc7b15659b7a9317a32b061789788e933fc2a35d", "fields": {"departement": "94", "stop_lat": 48.771978813293735, "code_postal": "94071", "stop_lon": 2.5064536673770546, "coord": [48.771978813293735, 2.5064536673770546], "stop_id": 3620271, "stop_desc": "0 TCSP - 94071", "stop_name": "SUCY-BONNEUIL RER"}, "geometry": {"type": "Point", "coordinates": [2.5064536673770546, 48.771978813293735]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1cbb83572c43d44109670d702474e70de491e9c5", "fields": {"departement": "77", "stop_lat": 48.83866547075784, "code_postal": "77083", "stop_lon": 2.5851369286206594, "coord": [48.83866547075784, 2.5851369286206594], "stop_id": 3639484, "stop_desc": "AVENUE AMPERE - 77083", "stop_name": "NOBEL"}, "geometry": {"type": "Point", "coordinates": [2.5851369286206594, 48.83866547075784]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "33f2d2a9e8df716823772c3c6dbe87dd7b362c92", "fields": {"departement": "77", "stop_lat": 48.838512994627884, "code_postal": "77083", "stop_lon": 2.584986430503156, "coord": [48.838512994627884, 2.584986430503156], "stop_id": 3639485, "stop_desc": "AVENUE AMPERE - 77083", "stop_name": "NOBEL"}, "geometry": {"type": "Point", "coordinates": [2.584986430503156, 48.838512994627884]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e1b961e2805cc1fd0448502910579e5486903cea", "fields": {"departement": "94", "stop_lat": 48.80141600844219, "code_postal": "94046", "stop_lon": 2.432072298956643, "coord": [48.80141600844219, 2.432072298956643], "stop_id": 3619931, "stop_desc": "FACE 5 AVENUE DE LA REPUBLIQUE - 94046", "stop_name": "MAIRIE DE MAISONS-ALFORT"}, "geometry": {"type": "Point", "coordinates": [2.432072298956643, 48.80141600844219]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fb8e3dc585734a98d3de2a1f99bb053be80d589e", "fields": {"departement": "94", "stop_lat": 48.8054799076782, "code_postal": "94046", "stop_lon": 2.4411553902120193, "coord": [48.8054799076782, 2.4411553902120193], "stop_id": 3619940, "stop_desc": "86 AVENUE DU GENERAL LECLERC - 94046", "stop_name": "REPUBLIQUE - GENERAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.4411553902120193, 48.8054799076782]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f48eea592a82b8e5721eec7df8030798e6e81efa", "fields": {"departement": "94", "stop_lat": 48.809081950256626, "code_postal": "94046", "stop_lon": 2.453123721150605, "coord": [48.809081950256626, 2.453123721150605], "stop_id": 3619953, "stop_desc": "212 AVENUE DE LA REPUBLIQUE - 94046", "stop_name": "PONT DE MAISONS-ALFORT"}, "geometry": {"type": "Point", "coordinates": [2.453123721150605, 48.809081950256626]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4be018e9a3dbbb6a8b3b405fcfc2f24f6a691329", "fields": {"departement": "94", "stop_lat": 48.809556539237605, "code_postal": "94046", "stop_lon": 2.4549210064796254, "coord": [48.809556539237605, 2.4549210064796254], "stop_id": 3619924, "stop_desc": "FACE 2 RUE DE VENUS - 94046", "stop_name": "PONT DE MAISONS-ALFORT"}, "geometry": {"type": "Point", "coordinates": [2.4549210064796254, 48.809556539237605]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "76383d738b940d26d1356bc57dd3ca5f762071f5", "fields": {"departement": "94", "stop_lat": 48.8085087940974, "code_postal": "94046", "stop_lon": 2.4509860647156647, "coord": [48.8085087940974, 2.4509860647156647], "stop_id": 3619951, "stop_desc": "188-190 AVENUE DE LA REPUBLIQUE - 94046", "stop_name": "RUE DE MARSEILLE"}, "geometry": {"type": "Point", "coordinates": [2.4509860647156647, 48.8085087940974]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c8a808bf5b36569a494072307cb696bfcce49173", "fields": {"departement": "94", "stop_lat": 48.80885525788095, "code_postal": "94046", "stop_lon": 2.4353517068018586, "coord": [48.80885525788095, 2.4353517068018586], "stop_id": 3619943, "stop_desc": "149-151 AVENUE DU GENERAL LECLERC - 94046", "stop_name": "STADE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.4353517068018586, 48.80885525788095]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9c45ac11fae44141d13167893ef0bddeb385dc2a", "fields": {"departement": "94", "stop_lat": 48.79977164185796, "code_postal": "94046", "stop_lon": 2.4422868047721535, "coord": [48.79977164185796, 2.4422868047721535], "stop_id": 3619936, "stop_desc": "81 RUE VICTOR HUGO - 94046", "stop_name": "COLLEGE DE STAEL"}, "geometry": {"type": "Point", "coordinates": [2.4422868047721535, 48.79977164185796]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6dac1ce4250dab49235f926b4c7c327bc503bbff", "fields": {"departement": "94", "stop_lat": 48.80993660161347, "code_postal": "94046", "stop_lon": 2.4425795286496297, "coord": [48.80993660161347, 2.4425795286496297], "stop_id": 3619947, "stop_desc": "FACE 67 AVENUE GAMBETTA - 94046", "stop_name": "RENE COTY"}, "geometry": {"type": "Point", "coordinates": [2.4425795286496297, 48.80993660161347]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b09083085cef989745b6f4f955a48073039ffd1c", "fields": {"departement": "94", "stop_lat": 48.81004937608928, "code_postal": "94046", "stop_lon": 2.436864439987811, "coord": [48.81004937608928, 2.436864439987811], "stop_id": 3619945, "stop_desc": "20 AVENUE GAMBETTA - 94046", "stop_name": "GABRIEL PERI"}, "geometry": {"type": "Point", "coordinates": [2.436864439987811, 48.81004937608928]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9c54588e020da7db04bbfc27f437395563da49d9", "fields": {"departement": "94", "stop_lat": 48.80764356796923, "code_postal": "94046", "stop_lon": 2.4623326343241865, "coord": [48.80764356796923, 2.4623326343241865], "stop_id": 3619928, "stop_desc": "AVENUE DE VERDUN - 94046", "stop_name": "LOUIS FLICHE"}, "geometry": {"type": "Point", "coordinates": [2.4623326343241865, 48.80764356796923]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e408f005ab48324866df47f151d27084b3eb2fb2", "fields": {"departement": "77", "stop_lat": 48.827022862534776, "code_postal": "77169", "stop_lon": 2.5952906221299465, "coord": [48.827022862534776, 2.5952906221299465], "stop_id": 3639726, "stop_desc": "29 AVENUE CHARLES BRAS - 77169", "stop_name": "MALNOUE - PLACE AUGUSTE LEGEMBLE"}, "geometry": {"type": "Point", "coordinates": [2.5952906221299465, 48.827022862534776]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2e0c20fdddb9b73da9dc0f9432cc8993b46a867d", "fields": {"departement": "77", "stop_lat": 48.806023089513644, "code_postal": "77169", "stop_lon": 2.617093375643069, "coord": [48.806023089513644, 2.617093375643069], "stop_id": 3639742, "stop_desc": "R D'EMERY - 77169", "stop_name": "EMERAINVILLE-PONTAULT-COMBAULT RER"}, "geometry": {"type": "Point", "coordinates": [2.617093375643069, 48.806023089513644]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5120548106dde605242617c385d28bf4043f9236", "fields": {"departement": "77", "stop_lat": 48.83003091815131, "code_postal": "77169", "stop_lon": 2.6047123034781454, "coord": [48.83003091815131, 2.6047123034781454], "stop_id": 3639730, "stop_desc": "65 AVENUE DE L'EUROPE - 77169", "stop_name": "MALNOUE - AVENUE DE L'EUROPE"}, "geometry": {"type": "Point", "coordinates": [2.6047123034781454, 48.83003091815131]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9e5e9d737fb7c54e8e34617253074a95322c7ba2", "fields": {"departement": "77", "stop_lat": 48.830654628729015, "code_postal": "77169", "stop_lon": 2.590761818487338, "coord": [48.830654628729015, 2.590761818487338], "stop_id": 3639725, "stop_desc": "RUE JEAN MONNET - 77169", "stop_name": "MALNOUE - BOIS DES SOUCHES"}, "geometry": {"type": "Point", "coordinates": [2.590761818487338, 48.830654628729015]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "32e194c1bb2b3a0068769d4ea2adab9bd4e5a380", "fields": {"departement": "93", "stop_lat": 48.83172884098554, "code_postal": "93051", "stop_lon": 2.5842597458490433, "coord": [48.83172884098554, 2.5842597458490433], "stop_id": 3639721, "stop_desc": "BOULEVARD RU DE NESLES - 93051", "stop_name": "LES AEROSTIERS"}, "geometry": {"type": "Point", "coordinates": [2.5842597458490433, 48.83172884098554]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0510c78225cec45cf084160ce36ff9393436ddb3", "fields": {"departement": "77", "stop_lat": 48.842245043016746, "code_postal": "77083", "stop_lon": 2.5839285562282472, "coord": [48.842245043016746, 2.5839285562282472], "stop_id": 3639486, "stop_desc": "21 AV AMPERE - 77083", "stop_name": "C.R.O.U.S."}, "geometry": {"type": "Point", "coordinates": [2.5839285562282472, 48.842245043016746]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "593f51b8802209c7fe314a8f967fbeb24379ab46", "fields": {"departement": "77", "stop_lat": 48.842245043016746, "code_postal": "77083", "stop_lon": 2.5839285562282472, "coord": [48.842245043016746, 2.5839285562282472], "stop_id": 3639717, "stop_desc": "21 AV AMPERE - 77083", "stop_name": "C.R.O.U.S."}, "geometry": {"type": "Point", "coordinates": [2.5839285562282472, 48.842245043016746]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "033e2a0ed8b0f4c97e5b91f25275e60a1eafba8e", "fields": {"departement": "77", "stop_lat": 48.83077726243114, "code_postal": "77169", "stop_lon": 2.588026125603078, "coord": [48.83077726243114, 2.588026125603078], "stop_id": 3639722, "stop_desc": "AV DE L'EUROPE - 77169", "stop_name": "LES 2 LACS"}, "geometry": {"type": "Point", "coordinates": [2.588026125603078, 48.83077726243114]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cb18e8d012803c8bae493a01c3c22262a607e39f", "fields": {"departement": "94", "stop_lat": 48.80972104464445, "code_postal": "94046", "stop_lon": 2.452131777070312, "coord": [48.80972104464445, 2.452131777070312], "stop_id": 3663573, "stop_desc": "156 AVENUE GAMBETTA - 94046", "stop_name": "LYON"}, "geometry": {"type": "Point", "coordinates": [2.452131777070312, 48.80972104464445]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b5d5ad698e84bd05f46cefe2eb225662fa2a84dc", "fields": {"departement": "77", "stop_lat": 48.81003972569495, "code_postal": "77169", "stop_lon": 2.6212790673199966, "coord": [48.81003972569495, 2.6212790673199966], "stop_id": 3639741, "stop_desc": "R D'EMERY - 77169", "stop_name": "LE PARC"}, "geometry": {"type": "Point", "coordinates": [2.6212790673199966, 48.81003972569495]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5bfcd88997af2a98bdd7c50cae2cb2f90bcd079b", "fields": {"departement": "94", "stop_lat": 48.80479502747449, "code_postal": "94068", "stop_lon": 2.4853072019162816, "coord": [48.80479502747449, 2.4853072019162816], "stop_id": 3663584, "stop_desc": "BOULEVARD RABELAIS - 94068", "stop_name": "LE PARC DE SAINT-MAUR RER"}, "geometry": {"type": "Point", "coordinates": [2.4853072019162816, 48.80479502747449]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "67be5a4132cf7d64c7ed8fca6381345cf1415621", "fields": {"departement": "94", "stop_lat": 48.806185859569304, "code_postal": "94068", "stop_lon": 2.4798139815274216, "coord": [48.806185859569304, 2.4798139815274216], "stop_id": 3663583, "stop_desc": "FACE 47 BOULEVARD RABELAIS - 94068", "stop_name": "CIMETIERE - RABELAIS"}, "geometry": {"type": "Point", "coordinates": [2.4798139815274216, 48.806185859569304]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "684ff47d52da147babd019f02ee9c8b6aef64a6b", "fields": {"departement": "94", "stop_lat": 48.80978760160916, "code_postal": "94046", "stop_lon": 2.4482945155545006, "coord": [48.80978760160916, 2.4482945155545006], "stop_id": 3663601, "stop_desc": "114 AVENUE GAMBETTA - 94046", "stop_name": "RUE DE VINCENNES"}, "geometry": {"type": "Point", "coordinates": [2.4482945155545006, 48.80978760160916]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "40c97616e2d9a02ea04173aa80eb2bf264a5581c", "fields": {"departement": "94", "stop_lat": 48.80797351546657, "code_postal": "94046", "stop_lon": 2.456101258640502, "coord": [48.80797351546657, 2.456101258640502], "stop_id": 3663575, "stop_desc": "27 RUE DANIELLE CASANOVA - 94046", "stop_name": "PLANETES"}, "geometry": {"type": "Point", "coordinates": [2.456101258640502, 48.80797351546657]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c8016a1163b279dfea21eedff376fafdd0758346", "fields": {"departement": "94", "stop_lat": 48.81532886691478, "code_postal": "94046", "stop_lon": 2.4323698992611313, "coord": [48.81532886691478, 2.4323698992611313], "stop_id": 3663596, "stop_desc": "AVENUE FOCH - 94046", "stop_name": "LES 7 ARBRES"}, "geometry": {"type": "Point", "coordinates": [2.4323698992611313, 48.81532886691478]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4d8912dfb9f561296eb99e1557ecaa2e74a2aaf0", "fields": {"departement": "94", "stop_lat": 48.793236568393304, "code_postal": "94068", "stop_lon": 2.4779555628044787, "coord": [48.793236568393304, 2.4779555628044787], "stop_id": 3663590, "stop_desc": "2 RUE VASSAL - 94068", "stop_name": "VASSAL"}, "geometry": {"type": "Point", "coordinates": [2.4779555628044787, 48.793236568393304]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3f9e9724b5030e6e32ec815d212cbfa28d34da8c", "fields": {"departement": "75", "stop_lat": 48.84523749224217, "code_postal": "75112", "stop_lon": 2.3690506507770803, "coord": [48.84523749224217, 2.3690506507770803], "stop_id": 3673585, "stop_desc": "4 BIS BOULEVARD DIDEROT - 75112", "stop_name": "PONT D'AUSTERLITZ - QUAI DE LA RAPEE"}, "geometry": {"type": "Point", "coordinates": [2.3690506507770803, 48.84523749224217]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "82142901430ad6b8b324a87b74d17f004252b145", "fields": {"departement": "75", "stop_lat": 48.85143669814865, "code_postal": "75111", "stop_lon": 2.376326861513944, "coord": [48.85143669814865, 2.376326861513944], "stop_id": 3673591, "stop_desc": "94-96 AVENUE LEDRU ROLLIN - 75111", "stop_name": "LEDRU ROLLIN - FAUBOURG SAINT-ANTOINE"}, "geometry": {"type": "Point", "coordinates": [2.376326861513944, 48.85143669814865]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "449a2af6b822b4f22a04af688250d51b5ace8049", "fields": {"departement": "95", "stop_lat": 48.96376434522058, "code_postal": "95268", "stop_lon": 2.4008830767555094, "coord": [48.96376434522058, 2.4008830767555094], "stop_id": 3664146, "stop_desc": "FACE 23 AVENUE DES MORILLONS - 95268", "stop_name": "MORILLONS - VARLIN"}, "geometry": {"type": "Point", "coordinates": [2.4008830767555094, 48.96376434522058]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "20c3680a1fafd27906f597c8f720060322415352", "fields": {"departement": "93", "stop_lat": 48.90408079842762, "code_postal": "93008", "stop_lon": 2.430856007213081, "coord": [48.90408079842762, 2.430856007213081], "stop_id": 3664373, "stop_desc": "RUE BENOIT FRACHON - 93008", "stop_name": "BOBIGNY - BENOIT FRACHON"}, "geometry": {"type": "Point", "coordinates": [2.430856007213081, 48.90408079842762]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dd55dd835ac17fc8aa5e9eaa59a1392a7267ba8f", "fields": {"departement": "95", "stop_lat": 48.96713588335833, "code_postal": "95268", "stop_lon": 2.397898048333713, "coord": [48.96713588335833, 2.397898048333713], "stop_id": 3664139, "stop_desc": "RUE DU TIERS POT - 95268", "stop_name": "COLLEGE HENRI WALLON"}, "geometry": {"type": "Point", "coordinates": [2.397898048333713, 48.96713588335833]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e21e418f9067e298eb45902830bed91cacadbfe4", "fields": {"departement": "95", "stop_lat": 48.96713588335833, "code_postal": "95268", "stop_lon": 2.397898048333713, "coord": [48.96713588335833, 2.397898048333713], "stop_id": 3664163, "stop_desc": "RUE DU TIERS POT - 95268", "stop_name": "COLLEGE HENRI WALLON"}, "geometry": {"type": "Point", "coordinates": [2.397898048333713, 48.96713588335833]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bf71540ca770c55dc6e922ddacd1e3cd560130d5", "fields": {"departement": "95", "stop_lat": 48.963674406067874, "code_postal": "95268", "stop_lon": 2.4010194490107435, "coord": [48.963674406067874, 2.4010194490107435], "stop_id": 3664145, "stop_desc": "AVENUE DES MORILLONS - 95268", "stop_name": "MORILLONS - VARLIN"}, "geometry": {"type": "Point", "coordinates": [2.4010194490107435, 48.963674406067874]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "15880140ba264902113e9281936e4e4f04149f48", "fields": {"departement": "95", "stop_lat": 48.96480069891343, "code_postal": "95268", "stop_lon": 2.3952065416863513, "coord": [48.96480069891343, 2.3952065416863513], "stop_id": 3664166, "stop_desc": "RUE DES PRIEUSES - 95268", "stop_name": "LES DOUCETTES"}, "geometry": {"type": "Point", "coordinates": [2.3952065416863513, 48.96480069891343]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a2d4f2c56656cedbe84b0844c304014df75fc6af", "fields": {"departement": "95", "stop_lat": 48.96286461040014, "code_postal": "95268", "stop_lon": 2.402860940707323, "coord": [48.96286461040014, 2.402860940707323], "stop_id": 3664147, "stop_desc": "AVENUE DE STALINGRAD - 95268", "stop_name": "DEMUSOIS"}, "geometry": {"type": "Point", "coordinates": [2.402860940707323, 48.96286461040014]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9530e278fc040cef2126c7b6a5ac3b16d7981f88", "fields": {"departement": "95", "stop_lat": 48.963340721676424, "code_postal": "95268", "stop_lon": 2.4031891009629964, "coord": [48.963340721676424, 2.4031891009629964], "stop_id": 3664148, "stop_desc": "RUE EUGENE VARLIN - 95268", "stop_name": "DEMUSOIS"}, "geometry": {"type": "Point", "coordinates": [2.4031891009629964, 48.963340721676424]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1fede7e7327eca78f14da27542c608a547b8abe2", "fields": {"departement": "95", "stop_lat": 48.975961680577434, "code_postal": "95268", "stop_lon": 2.3959425734505366, "coord": [48.975961680577434, 2.3959425734505366], "stop_id": 3664152, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 95268", "stop_name": "JEAN-BAPTISTE COROT - LAMARTINE"}, "geometry": {"type": "Point", "coordinates": [2.3959425734505366, 48.975961680577434]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "55013d2b6dd77865419b4da018798451d4f2d7ca", "fields": {"departement": "93", "stop_lat": 48.90691264968876, "code_postal": "93008", "stop_lon": 2.4296750229551916, "coord": [48.90691264968876, 2.4296750229551916], "stop_id": 3664381, "stop_desc": "FACE 140 RUE DE LA REPUBLIQUE - 93008", "stop_name": "LYCEE ANDRE SABATIER"}, "geometry": {"type": "Point", "coordinates": [2.4296750229551916, 48.90691264968876]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4527ac636bef2295f6a9b9fc8f821398542ca1aa", "fields": {"departement": "93", "stop_lat": 48.90637437721665, "code_postal": "93008", "stop_lon": 2.439517229737543, "coord": [48.90637437721665, 2.439517229737543], "stop_id": 3664385, "stop_desc": "BOULEVARD LENINE - 93008", "stop_name": "CONSERVATOIRE JEAN WIENER"}, "geometry": {"type": "Point", "coordinates": [2.439517229737543, 48.90637437721665]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "57179fda3248676cf7d459139c1868955735903b", "fields": {"departement": "93", "stop_lat": 48.906488254589036, "code_postal": "93008", "stop_lon": 2.4322236788904616, "coord": [48.906488254589036, 2.4322236788904616], "stop_id": 3664383, "stop_desc": "RUE DE LA REPUBLIQUE - 93008", "stop_name": "RUE DE LA GARE"}, "geometry": {"type": "Point", "coordinates": [2.4322236788904616, 48.906488254589036]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d3a197065cd87a5395b71f40b12073f92050a2d7", "fields": {"departement": "93", "stop_lat": 48.90672978942366, "code_postal": "93008", "stop_lon": 2.433614717029149, "coord": [48.90672978942366, 2.433614717029149], "stop_id": 3664384, "stop_desc": "RUE DE LA REPUBLIQUE - 93008", "stop_name": "RUE DE LA GARE"}, "geometry": {"type": "Point", "coordinates": [2.433614717029149, 48.90672978942366]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "614d99ec616a39bcf405d6c5ef6070b8f8ff4037", "fields": {"departement": "93", "stop_lat": 48.906404975054635, "code_postal": "93008", "stop_lon": 2.423552809864812, "coord": [48.906404975054635, 2.423552809864812], "stop_id": 3664379, "stop_desc": "AVENUE HENRI BARBUSSE - 93008", "stop_name": "HENRI GAUTIER"}, "geometry": {"type": "Point", "coordinates": [2.423552809864812, 48.906404975054635]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "10d3544f965b88b63553adc403a69763ddb54d7e", "fields": {"departement": "93", "stop_lat": 48.90248362131706, "code_postal": "93008", "stop_lon": 2.427581401143481, "coord": [48.90248362131706, 2.427581401143481], "stop_id": 3664375, "stop_desc": "30 RUE BERNARD - 93008", "stop_name": "EUGENE HENAFF"}, "geometry": {"type": "Point", "coordinates": [2.427581401143481, 48.90248362131706]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0e04ce0101a4bd93d2b70acc439505282efc3cf4", "fields": {"departement": "95", "stop_lat": 48.96002657728869, "code_postal": "95268", "stop_lon": 2.399595633378217, "coord": [48.96002657728869, 2.399595633378217], "stop_id": 3663842, "stop_desc": "FACE 7 AVENUE DE STALINGRAD - 95268", "stop_name": "LIMITE DES DEPARTEMENTS"}, "geometry": {"type": "Point", "coordinates": [2.399595633378217, 48.96002657728869]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "32bfb4c4dc8b21f2260ff562e742b85a1ed79042", "fields": {"departement": "95", "stop_lat": 48.98390482368829, "code_postal": "95277", "stop_lon": 2.4377862867378814, "coord": [48.98390482368829, 2.4377862867378814], "stop_id": 3663862, "stop_desc": "FACE 15 RUE RAYMOND RAMBERT - 95277", "stop_name": "CHEMIN DU MOULIN D'ETIF"}, "geometry": {"type": "Point", "coordinates": [2.4377862867378814, 48.98390482368829]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ad68b123ebd65eefb3b79a817b03f0261c92d060", "fields": {"departement": "94", "stop_lat": 48.809556539237605, "code_postal": "94046", "stop_lon": 2.4549210064796254, "coord": [48.809556539237605, 2.4549210064796254], "stop_id": 3663704, "stop_desc": "FACE 2 RUE DE VENUS - 94046", "stop_name": "PONT DE MAISONS-ALFORT"}, "geometry": {"type": "Point", "coordinates": [2.4549210064796254, 48.809556539237605]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1fa536caf286e8d9cbd68c2ca1451743949bb86f", "fields": {"departement": "93", "stop_lat": 48.93274884950854, "code_postal": "93027", "stop_lon": 2.386550109086291, "coord": [48.93274884950854, 2.386550109086291], "stop_id": 3663832, "stop_desc": "FACE 38 AVENUE ROGER SALENGRO - 93027", "stop_name": "PARC DES SPORTS"}, "geometry": {"type": "Point", "coordinates": [2.386550109086291, 48.93274884950854]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0b06ee637aab335b606ce7be89229518f7924649", "fields": {"departement": "95", "stop_lat": 48.97268715932921, "code_postal": "95268", "stop_lon": 2.417288494023461, "coord": [48.97268715932921, 2.417288494023461], "stop_id": 3663851, "stop_desc": "AVENUE DE STALINGRAD - 95268", "stop_name": "COLLEGE PABLO PICASSO"}, "geometry": {"type": "Point", "coordinates": [2.417288494023461, 48.97268715932921]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9d6e42dd13eaf372e047e7e8cb63dc2f4494c47a", "fields": {"departement": "95", "stop_lat": 48.96549486672664, "code_postal": "95268", "stop_lon": 2.4078187765609886, "coord": [48.96549486672664, 2.4078187765609886], "stop_id": 3663846, "stop_desc": "FACE 142 AVENUE DE STALINGRAD - 95268", "stop_name": "CROIX BUARD"}, "geometry": {"type": "Point", "coordinates": [2.4078187765609886, 48.96549486672664]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d4af0cee21dc37bf2b5183834ab7a9502d438296", "fields": {"departement": "93", "stop_lat": 48.92638678455641, "code_postal": "93027", "stop_lon": 2.3849347158324132, "coord": [48.92638678455641, 2.3849347158324132], "stop_id": 3663826, "stop_desc": "80-82 BOULEVARD PASTEUR - 93027", "stop_name": "MICHELET"}, "geometry": {"type": "Point", "coordinates": [2.3849347158324132, 48.92638678455641]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e0e9445f747fc9c37581d759fa102fff6e1f2979", "fields": {"departement": "95", "stop_lat": 48.97079290675731, "code_postal": "95268", "stop_lon": 2.4143780794124163, "coord": [48.97079290675731, 2.4143780794124163], "stop_id": 3663849, "stop_desc": "8 AVENUE DE STALINGRAD - 95268", "stop_name": "CARNOT"}, "geometry": {"type": "Point", "coordinates": [2.4143780794124163, 48.97079290675731]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fb5aab067b92a02b41a659944545d7cd3ada924f", "fields": {"departement": "93", "stop_lat": 48.91564949215748, "code_postal": "93001", "stop_lon": 2.399787668480733, "coord": [48.91564949215748, 2.399787668480733], "stop_id": 3663818, "stop_desc": "161 RUE DANIELLE CASANOVA - 93001", "stop_name": "BALZAC"}, "geometry": {"type": "Point", "coordinates": [2.399787668480733, 48.91564949215748]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3f718a0c89b80478daf78bbefadeb4c4bee0fc28", "fields": {"departement": "93", "stop_lat": 48.915370701674085, "code_postal": "93001", "stop_lon": 2.400155491968183, "coord": [48.915370701674085, 2.400155491968183], "stop_id": 3663819, "stop_desc": "RUE DANIELLE CASANOVA - 93001", "stop_name": "BALZAC"}, "geometry": {"type": "Point", "coordinates": [2.400155491968183, 48.915370701674085]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "288427821f3993a1ba613567edfe49d1de736723", "fields": {"departement": "93", "stop_lat": 48.91495572493585, "code_postal": "93001", "stop_lon": 2.403072973878873, "coord": [48.91495572493585, 2.403072973878873], "stop_id": 3663941, "stop_desc": "RUE DANIELLE CASANOVA - 93001", "stop_name": "FORT D'AUBERVILLIERS - DANIELLE CASANOVA"}, "geometry": {"type": "Point", "coordinates": [2.403072973878873, 48.91495572493585]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "608a53a826d3bbc273912338baf888ebb67ece20", "fields": {"departement": "95", "stop_lat": 48.971790664826926, "code_postal": "95268", "stop_lon": 2.3984358702053443, "coord": [48.971790664826926, 2.3984358702053443], "stop_id": 3664136, "stop_desc": "RUE LE NOTRE - 95268", "stop_name": "HOTEL DE VILLE DE GARGES-LES-GONESSE"}, "geometry": {"type": "Point", "coordinates": [2.3984358702053443, 48.971790664826926]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ac8471041ba4cff7b0fd548fb76caee5a0e5dfe6", "fields": {"departement": "93", "stop_lat": 48.92390665860271, "code_postal": "93027", "stop_lon": 2.384264180372188, "coord": [48.92390665860271, 2.384264180372188], "stop_id": 3663945, "stop_desc": "BOULEVARD PASTEUR - 93027", "stop_name": "LA COURNEUVE - AUBERVILLIERS RER"}, "geometry": {"type": "Point", "coordinates": [2.384264180372188, 48.92390665860271]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "18ff2ba218efa3185c13e34d74056373deb8b5b3", "fields": {"departement": "95", "stop_lat": 48.98390482368829, "code_postal": "95277", "stop_lon": 2.4377862867378814, "coord": [48.98390482368829, 2.4377862867378814], "stop_id": 3663925, "stop_desc": "FACE 15 RUE RAYMOND RAMBERT - 95277", "stop_name": "CHEMIN DU MOULIN D'ETIF"}, "geometry": {"type": "Point", "coordinates": [2.4377862867378814, 48.98390482368829]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "964de836154e1602651953a13146bb3141c3b5c6", "fields": {"departement": "95", "stop_lat": 48.98136093634377, "code_postal": "95019", "stop_lon": 2.427418750579938, "coord": [48.98136093634377, 2.427418750579938], "stop_id": 3663921, "stop_desc": "FACE 84 AVENUE DE LA REPUBLIQUE - 95019", "stop_name": "LEON BLUM"}, "geometry": {"type": "Point", "coordinates": [2.427418750579938, 48.98136093634377]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a505143f52f32b3668495d04e3fe69bb8cc90d6b", "fields": {"departement": "95", "stop_lat": 48.98838702257805, "code_postal": "95277", "stop_lon": 2.4501389479315456, "coord": [48.98838702257805, 2.4501389479315456], "stop_id": 3663935, "stop_desc": "9 R EMMANUEL RAIN - 95277", "stop_name": "HOPITAL DE GONESSE"}, "geometry": {"type": "Point", "coordinates": [2.4501389479315456, 48.98838702257805]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4227d22d2015ced804f480b0ce9295c71736b17b", "fields": {"departement": "95", "stop_lat": 48.98115412312256, "code_postal": "95019", "stop_lon": 2.4275822249308967, "coord": [48.98115412312256, 2.4275822249308967], "stop_id": 3663963, "stop_desc": "AVENUE DE LA REPUBLIQUE - 95019", "stop_name": "LEON BLUM"}, "geometry": {"type": "Point", "coordinates": [2.4275822249308967, 48.98115412312256]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "69b9573c68fc2220bc83448c957e89a4b9337cc0", "fields": {"departement": "95", "stop_lat": 48.9720341780331, "code_postal": "95268", "stop_lon": 2.3967025461700624, "coord": [48.9720341780331, 2.3967025461700624], "stop_id": 3664134, "stop_desc": "RUE VICTOR BALTARD - 95268", "stop_name": "VICTOR BALTARD"}, "geometry": {"type": "Point", "coordinates": [2.3967025461700624, 48.9720341780331]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0aee1343a1697715282cbfb6336321450e9ce1ba", "fields": {"departement": "95", "stop_lat": 48.98440458346457, "code_postal": "95277", "stop_lon": 2.4418424246016666, "coord": [48.98440458346457, 2.4418424246016666], "stop_id": 3663966, "stop_desc": "4 RUE DE PARIS - 95277", "stop_name": "RUE D'AULNAY"}, "geometry": {"type": "Point", "coordinates": [2.4418424246016666, 48.98440458346457]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f6bb02fdeac9352a711ff083caa6404f54991030", "fields": {"departement": "95", "stop_lat": 48.98460208226865, "code_postal": "95277", "stop_lon": 2.442074938709983, "coord": [48.98460208226865, 2.442074938709983], "stop_id": 3663927, "stop_desc": "RUE DE PARIS - 95277", "stop_name": "RUE D'AULNAY"}, "geometry": {"type": "Point", "coordinates": [2.442074938709983, 48.98460208226865]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f70ceab27efc1adf52f5feea91448a7c08681f2c", "fields": {"departement": "94", "stop_lat": 48.81496864081074, "code_postal": "94046", "stop_lon": 2.421386626368657, "coord": [48.81496864081074, 2.421386626368657], "stop_id": 3663640, "stop_desc": "AVENUE DU GENERAL LECLERC - 94046", "stop_name": "ECOLE VETERINAIRE DE MAISONS-ALFORT-METRO"}, "geometry": {"type": "Point", "coordinates": [2.421386626368657, 48.81496864081074]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e223f6fdec51293c0f543ba5c65be0f21f4175d8", "fields": {"departement": "94", "stop_lat": 48.81496864081074, "code_postal": "94046", "stop_lon": 2.421386626368657, "coord": [48.81496864081074, 2.421386626368657], "stop_id": 3663669, "stop_desc": "AVENUE DU GENERAL LECLERC - 94046", "stop_name": "ECOLE VETERINAIRE DE MAISONS-ALFORT-METRO"}, "geometry": {"type": "Point", "coordinates": [2.421386626368657, 48.81496864081074]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d47e33d56fda76c6283bb6b9d1b49f20b4f9b81a", "fields": {"departement": "94", "stop_lat": 48.815220279949145, "code_postal": "94046", "stop_lon": 2.4438423013831083, "coord": [48.815220279949145, 2.4438423013831083], "stop_id": 3663634, "stop_desc": "116 RUE CLEMENCEAU - 94046", "stop_name": "PASSERELLE DE CHARENTONNEAU"}, "geometry": {"type": "Point", "coordinates": [2.4438423013831083, 48.815220279949145]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "74965d7fdef924bac0686d7d0ea75ad45709f05b", "fields": {"departement": "94", "stop_lat": 48.81172435455524, "code_postal": "94046", "stop_lon": 2.443494914666074, "coord": [48.81172435455524, 2.443494914666074], "stop_id": 3663674, "stop_desc": "FACE 85 AVENUE GEORGES CLEMENCEAU - 94046", "stop_name": "CONCORDE"}, "geometry": {"type": "Point", "coordinates": [2.443494914666074, 48.81172435455524]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d4c52c72af50e3243d70bc80aa2ce1f58fa74fd3", "fields": {"departement": "94", "stop_lat": 48.810472733578806, "code_postal": "94046", "stop_lon": 2.4242098051495105, "coord": [48.810472733578806, 2.4242098051495105], "stop_id": 3663638, "stop_desc": "RUE PIERRE CURIE - 94046", "stop_name": "PIERRE CURIE"}, "geometry": {"type": "Point", "coordinates": [2.4242098051495105, 48.810472733578806]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f465d0144e49113a5fb59cdb5fbb4d13159c9eda", "fields": {"departement": "94", "stop_lat": 48.81547285518754, "code_postal": "94046", "stop_lon": 2.4321388046911165, "coord": [48.81547285518754, 2.4321388046911165], "stop_id": 3663636, "stop_desc": "2 AVENUE FOCH - 94046", "stop_name": "LES 7 ARBRES"}, "geometry": {"type": "Point", "coordinates": [2.4321388046911165, 48.81547285518754]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "24bc9dc56b3e5d3a103f4bd8903d7430214c3ab6", "fields": {"departement": "94", "stop_lat": 48.81532886691478, "code_postal": "94046", "stop_lon": 2.4323698992611313, "coord": [48.81532886691478, 2.4323698992611313], "stop_id": 3663642, "stop_desc": "AVENUE FOCH - 94046", "stop_name": "LES 7 ARBRES"}, "geometry": {"type": "Point", "coordinates": [2.4323698992611313, 48.81532886691478]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "160133244d7c122f3a5e7673f4e22f090865d787", "fields": {"departement": "94", "stop_lat": 48.79533218010759, "code_postal": "94068", "stop_lon": 2.4842055014973234, "coord": [48.79533218010759, 2.4842055014973234], "stop_id": 3663663, "stop_desc": "76 RUE GARIBALDI - 94068", "stop_name": "GARIBALDI"}, "geometry": {"type": "Point", "coordinates": [2.4842055014973234, 48.79533218010759]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3327e6bb8b0e7366ef3bcb1171d5a0eb4d995393", "fields": {"departement": "94", "stop_lat": 48.80972104464445, "code_postal": "94046", "stop_lon": 2.452131777070312, "coord": [48.80972104464445, 2.452131777070312], "stop_id": 3663648, "stop_desc": "156 AVENUE GAMBETTA - 94046", "stop_name": "LYON"}, "geometry": {"type": "Point", "coordinates": [2.452131777070312, 48.80972104464445]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c47a54dcce1ca54a238f88e0c7a71a583aa2bdce", "fields": {"departement": "94", "stop_lat": 48.793236568393304, "code_postal": "94068", "stop_lon": 2.4779555628044787, "coord": [48.793236568393304, 2.4779555628044787], "stop_id": 3663665, "stop_desc": "2 RUE VASSAL - 94068", "stop_name": "VASSAL"}, "geometry": {"type": "Point", "coordinates": [2.4779555628044787, 48.793236568393304]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "18242013c3b39ff40339382e4397dafdc1fd087a", "fields": {"departement": "93", "stop_lat": 48.924504765214316, "code_postal": "93007", "stop_lon": 2.4638695302313343, "coord": [48.924504765214316, 2.4638695302313343], "stop_id": 3664408, "stop_desc": "197 AVENUE PAUL VAILLANT COUTURIER - 93007", "stop_name": "ANGELUS - FABIEN"}, "geometry": {"type": "Point", "coordinates": [2.4638695302313343, 48.924504765214316]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "49beebe87871cc407ebf6108a5dc7515152a80d2", "fields": {"departement": "93", "stop_lat": 48.91966494533887, "code_postal": "93029", "stop_lon": 2.4508210158428168, "coord": [48.91966494533887, 2.4508210158428168], "stop_id": 3664401, "stop_desc": "141 AVENUE HENRI BARBUSSE - 93029", "stop_name": "PLACE DU 19 MARS 1962"}, "geometry": {"type": "Point", "coordinates": [2.4508210158428168, 48.91966494533887]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f7db6968b85f5cb475a9857d020e9f69aebab6f1", "fields": {"departement": "93", "stop_lat": 48.91073588829419, "code_postal": "93008", "stop_lon": 2.446506623460887, "coord": [48.91073588829419, 2.446506623460887], "stop_id": 3664394, "stop_desc": "RUE PIERRE SEMARD - 93008", "stop_name": "PIERRE SEMARD - INDEPENDANCE"}, "geometry": {"type": "Point", "coordinates": [2.446506623460887, 48.91073588829419]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "951f41e66ecb199ec40a5a1e062fa5aa8d66e8c6", "fields": {"departement": "93", "stop_lat": 48.923707793324965, "code_postal": "93029", "stop_lon": 2.4611400290594894, "coord": [48.923707793324965, 2.4611400290594894], "stop_id": 3664407, "stop_desc": "FACE 240 AVENUE HENRI BARBUSSE - 93029", "stop_name": "DANIEL FERY"}, "geometry": {"type": "Point", "coordinates": [2.4611400290594894, 48.923707793324965]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3496ecea961dd67b5489164ef911efb83fe2a6cf", "fields": {"departement": "93", "stop_lat": 48.90675435432779, "code_postal": "93008", "stop_lon": 2.4467981603729605, "coord": [48.90675435432779, 2.4467981603729605], "stop_id": 3664392, "stop_desc": "15 BOULEVARD MAURICE THOREZ - 93008", "stop_name": "MAURICE THOREZ"}, "geometry": {"type": "Point", "coordinates": [2.4467981603729605, 48.90675435432779]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "848d330f61a333e14c921e6664a3ab32d9314959", "fields": {"departement": "93", "stop_lat": 48.90676356658909, "code_postal": "93008", "stop_lon": 2.446552780443455, "coord": [48.90676356658909, 2.446552780443455], "stop_id": 3664391, "stop_desc": "15 BOULEVARD MAURICE THOREZ - 93008", "stop_name": "MAURICE THOREZ"}, "geometry": {"type": "Point", "coordinates": [2.446552780443455, 48.90676356658909]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9ef5c69afc5239331d6cb1086e1dbff59780d1bb", "fields": {"departement": "93", "stop_lat": 48.96091796123017, "code_postal": "93005", "stop_lon": 2.4882103486687126, "coord": [48.96091796123017, 2.4882103486687126], "stop_id": 3666667, "stop_desc": "BOULEVARD ANDRE CITROEN (ROND-POINT DE LA PORTE 1) - 93005", "stop_name": "ANDRE CITROEN - VISITEURS"}, "geometry": {"type": "Point", "coordinates": [2.4882103486687126, 48.96091796123017]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5870275c9ec989851a0a777f513749e8ea1793bd", "fields": {"departement": "93", "stop_lat": 48.9526171602876, "code_postal": "93007", "stop_lon": 2.4623827191222363, "coord": [48.9526171602876, 2.4623827191222363], "stop_id": 3666690, "stop_desc": "RUE ANATOLE SIGONNEAU - 93007", "stop_name": "ANATOLE SIGONNEAU - CENTRE D'AFFAIRES"}, "geometry": {"type": "Point", "coordinates": [2.4623827191222363, 48.9526171602876]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6f6a3c98330a4f9269904cdbec48ae4fe9e1e179", "fields": {"departement": "93", "stop_lat": 48.95030571554676, "code_postal": "93007", "stop_lon": 2.4641373075254696, "coord": [48.95030571554676, 2.4641373075254696], "stop_id": 3666688, "stop_desc": "FACE 9 AVENUE EDOUARD RENAULT - 93007", "stop_name": "DESCARTES - RENAULT"}, "geometry": {"type": "Point", "coordinates": [2.4641373075254696, 48.95030571554676]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8a3101c135d2e80ff1713a7a6d23f36e525bc70e", "fields": {"departement": "93", "stop_lat": 48.950186781515434, "code_postal": "93007", "stop_lon": 2.4574920277380605, "coord": [48.950186781515434, 2.4574920277380605], "stop_id": 3666687, "stop_desc": "AVENUE DESCARTES - 93007", "stop_name": "CIMETIERE DU BLANC-MESNIL"}, "geometry": {"type": "Point", "coordinates": [2.4574920277380605, 48.950186781515434]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "716e007a88a29e072edb10dd1aec94d010a1ca3d", "fields": {"departement": "93", "stop_lat": 49.004269809288566, "code_postal": "93073", "stop_lon": 2.5712882222403115, "coord": [49.004269809288566, 2.5712882222403115], "stop_id": 3666708, "stop_desc": "AEROPORT CHARLES DE GAULLE - 93073", "stop_name": "GARE TGV-SNCF"}, "geometry": {"type": "Point", "coordinates": [2.5712882222403115, 49.004269809288566]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c35f42233377d32c6c57bbbb7d5b2f4e281818b9", "fields": {"departement": "93", "stop_lat": 49.002527672002785, "code_postal": "93073", "stop_lon": 2.5358772849144318, "coord": [49.002527672002785, 2.5358772849144318], "stop_id": 3666705, "stop_desc": "RUE DES TERRES NOIRES - 93073", "stop_name": "RUE DU CHAPITRE"}, "geometry": {"type": "Point", "coordinates": [2.5358772849144318, 49.002527672002785]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1f4e22660569f8f7bd64b99c7c3e3a9281577982", "fields": {"departement": "95", "stop_lat": 49.01346707921479, "code_postal": "95527", "stop_lon": 2.53403402919454, "coord": [49.01346707921479, 2.53403402919454], "stop_id": 3666714, "stop_desc": "ROUTE DES ANNIVERSAIRES - 95527", "stop_name": "ZONE TECHNIQUE"}, "geometry": {"type": "Point", "coordinates": [2.53403402919454, 49.01346707921479]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "33d1b7630dea1f5db459cf9a23a4a8031e768412", "fields": {"departement": "93", "stop_lat": 48.99438721579055, "code_postal": "93073", "stop_lon": 2.523978589947988, "coord": [48.99438721579055, 2.523978589947988], "stop_id": 3666702, "stop_desc": "RUE DES BUISSONS - 93073", "stop_name": "MARGUILLIERS."}, "geometry": {"type": "Point", "coordinates": [2.523978589947988, 48.99438721579055]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "19d568ae9153cd4a8c05f562f91e91bef7e04eae", "fields": {"departement": "75", "stop_lat": 48.840542782965464, "code_postal": "75112", "stop_lon": 2.3794094631230687, "coord": [48.840542782965464, 2.3794094631230687], "stop_id": 1166831, "stop_desc": "Place du Bataillon du Pacifique - 75112", "stop_name": "Bercy"}, "geometry": {"type": "Point", "coordinates": [2.3794094631230687, 48.840542782965464]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "32f85bec9debc7f7f1ac4571e9a573f01edcc383", "fields": {"departement": "75", "stop_lat": 48.85513451823504, "code_postal": "75104", "stop_lon": 2.3613343390676635, "coord": [48.85513451823504, 2.3613343390676635], "stop_id": 2522, "stop_desc": "Rivoli (terre plein face au 10 rue de) - 75104", "stop_name": "Saint-Paul (Le Marais)"}, "geometry": {"type": "Point", "coordinates": [2.3613343390676635, 48.85513451823504]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "31609e6717fa227929f109c95cab23a4e3528f57", "fields": {"departement": "93", "stop_lat": 48.840882627372274, "code_postal": "93051", "stop_lon": 2.549350971449035, "coord": [48.840882627372274, 2.549350971449035], "stop_id": 2532, "stop_desc": "Esplanade des Arcades - 93051", "stop_name": "Noisy-le-Grand (Mont d'Est)"}, "geometry": {"type": "Point", "coordinates": [2.549350971449035, 48.840882627372274]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6dbbd94588325c4e3242d5076b3ea8067daadb7e", "fields": {"departement": "75", "stop_lat": 48.88557692951087, "code_postal": "75118", "stop_lon": 2.3425422354115337, "coord": [48.88557692951087, 2.3425422354115337], "stop_id": 2552, "stop_desc": "Cardinal Dubois (rue du) - 75118", "stop_name": "Funiculaire Gare haute"}, "geometry": {"type": "Point", "coordinates": [2.3425422354115337, 48.88557692951087]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "04bb914b3be6907171e72c0c547388670aff5eec", "fields": {"departement": "75", "stop_lat": 48.85766372576006, "code_postal": "75111", "stop_lon": 2.3800362967955064, "coord": [48.85766372576006, 2.3800362967955064], "stop_id": 2513, "stop_desc": "Voltaire (130 boulevard) - 75111", "stop_name": "Voltaire (L\u00e9on Blum)"}, "geometry": {"type": "Point", "coordinates": [2.3800362967955064, 48.85766372576006]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9327ae09b6aaef8b8e3b737eb455235cc828febc", "fields": {"departement": "75", "stop_lat": 48.83988516597736, "code_postal": "75105", "stop_lon": 2.336873440890153, "coord": [48.83988516597736, 2.336873440890153], "stop_id": 2530, "stop_desc": "Observatoire (47 avenue de l') - 75105", "stop_name": "Port Royal"}, "geometry": {"type": "Point", "coordinates": [2.336873440890153, 48.83988516597736]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7e65ed879dd00812461af27f938a044a447a17c4", "fields": {"departement": "75", "stop_lat": 48.84282456767407, "code_postal": "75115", "stop_lon": 2.2922249662205156, "coord": [48.84282456767407, 2.2922249662205156], "stop_id": 3343746, "stop_desc": "F\u00e9lix Faure (place) - 75115", "stop_name": "F\u00e9lix Faure"}, "geometry": {"type": "Point", "coordinates": [2.2922249662205156, 48.84282456767407]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bcacf4390e1b0d3e6f7bd3051782da388a81f8a1", "fields": {"departement": "75", "stop_lat": 48.86503429801815, "code_postal": "75120", "stop_lon": 2.3985414869122423, "coord": [48.86503429801815, 2.3985414869122423], "stop_id": 2539, "stop_desc": "P\u00e8re-Lachaise - 75120", "stop_name": "Gambetta"}, "geometry": {"type": "Point", "coordinates": [2.3985414869122423, 48.86503429801815]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fcd0bf04599572d2fc113f4215b8ff93604c67c3", "fields": {"departement": "75", "stop_lat": 48.8673503814313, "code_postal": "75102", "stop_lon": 2.3475672354150805, "coord": [48.8673503814313, 2.3475672354150805], "stop_id": 2542, "stop_desc": "R\u00e9aumur (97 rue) - 75102", "stop_name": "Sentier"}, "geometry": {"type": "Point", "coordinates": [2.3475672354150805, 48.8673503814313]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6fd7921e0634b6a7edb1a44b44ba75456350f090", "fields": {"departement": "77", "stop_lat": 48.83972842272958, "code_postal": "77468", "stop_lon": 2.655903115145281, "coord": [48.83972842272958, 2.655903115145281], "stop_id": 2516, "stop_desc": "Rue L\u00e9on Blum - 77468", "stop_name": "Torcy"}, "geometry": {"type": "Point", "coordinates": [2.655903115145281, 48.83972842272958]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "170d12b57433b65de741987bd2c726ff0285bdc7", "fields": {"departement": "92", "stop_lat": 48.84253487165205, "code_postal": "92064", "stop_lon": 2.222236843053593, "coord": [48.84253487165205, 2.222236843053593], "stop_id": 3442592, "stop_desc": "QUAI DU PRESIDENT CARNOT - 92064", "stop_name": "PARC DE SAINT-CLOUD"}, "geometry": {"type": "Point", "coordinates": [2.222236843053593, 48.84253487165205]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d46b4b3544bf2c6c6ea555d9a04fc4436dcfc082", "fields": {"departement": "92", "stop_lat": 48.8342214348433, "code_postal": "92012", "stop_lon": 2.242744699572587, "coord": [48.8342214348433, 2.242744699572587], "stop_id": 3442581, "stop_desc": "8 AVENUE ANDRE MORIZET - 92012", "stop_name": "MARCEL SEMBAT-METRO"}, "geometry": {"type": "Point", "coordinates": [2.242744699572587, 48.8342214348433]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c563ab54dd7d2ce1999c97542f6657c59429de0f", "fields": {"departement": "93", "stop_lat": 48.88795206366205, "code_postal": "93053", "stop_lon": 2.457361281126736, "coord": [48.88795206366205, 2.457361281126736], "stop_id": 3446781, "stop_desc": "FACE 93 RUE DE BREMENT - 93053", "stop_name": "SALENGRO - AUFFRET"}, "geometry": {"type": "Point", "coordinates": [2.457361281126736, 48.88795206366205]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8d05855bf551a0a3c805e9ce0195e1b9e0eb289c", "fields": {"departement": "93", "stop_lat": 48.88773963962272, "code_postal": "93053", "stop_lon": 2.462907506964655, "coord": [48.88773963962272, 2.462907506964655], "stop_id": 3446783, "stop_desc": "FACE 163 RUE DE BREMENT - 93053", "stop_name": "SQUARE STEPHENSON"}, "geometry": {"type": "Point", "coordinates": [2.462907506964655, 48.88773963962272]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "79c11cbcadb19371d03f7af28093910033634f04", "fields": {"departement": "93", "stop_lat": 48.8851306909249, "code_postal": "93064", "stop_lon": 2.4811485622437988, "coord": [48.8851306909249, 2.4811485622437988], "stop_id": 3446790, "stop_desc": "BOULEVARD D'ALSACE LORRAINE - 93064", "stop_name": "CHEMIN DE BONDY"}, "geometry": {"type": "Point", "coordinates": [2.4811485622437988, 48.8851306909249]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "21374d350a9dcfd86ba670d7a9492e0cd339123f", "fields": {"departement": "93", "stop_lat": 48.8881932533186, "code_postal": "93053", "stop_lon": 2.4588064524096587, "coord": [48.8881932533186, 2.4588064524096587], "stop_id": 3446782, "stop_desc": "97 RUE DE BREMENT - 93053", "stop_name": "SALENGRO - AUFFRET"}, "geometry": {"type": "Point", "coordinates": [2.4588064524096587, 48.8881932533186]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ab5e21b3363b35f9632ee1ae8a9dbad0108a9032", "fields": {"departement": "93", "stop_lat": 48.89403055824636, "code_postal": "93063", "stop_lon": 2.4341499324983342, "coord": [48.89403055824636, 2.4341499324983342], "stop_id": 3446772, "stop_desc": "115-119 AVENUE GASTON ROUSSEL - 93063", "stop_name": "LOUISE DORY"}, "geometry": {"type": "Point", "coordinates": [2.4341499324983342, 48.89403055824636]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "238f1cbe364da5de5f9cdd3c9fdcf5cfa0a60f5a", "fields": {"departement": "93", "stop_lat": 48.89105209927494, "code_postal": "93053", "stop_lon": 2.448673055310972, "coord": [48.89105209927494, 2.448673055310972], "stop_id": 3446777, "stop_desc": "31 RUE VAILLANT COUTURIER - 93053", "stop_name": "CHAALONS"}, "geometry": {"type": "Point", "coordinates": [2.448673055310972, 48.89105209927494]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "086a038a5c83308a16cd7764e567d5f86b90f291", "fields": {"departement": "93", "stop_lat": 48.88626138520519, "code_postal": "93064", "stop_lon": 2.474978254992678, "coord": [48.88626138520519, 2.474978254992678], "stop_id": 3446787, "stop_desc": "AVENUE DE GAGNY - 93064", "stop_name": "ROSNY 2 NORD"}, "geometry": {"type": "Point", "coordinates": [2.474978254992678, 48.88626138520519]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "36b16730c4ebc152f350b6e590134704d74bd5d4", "fields": {"departement": "93", "stop_lat": 48.88634143318657, "code_postal": "93064", "stop_lon": 2.475700748332326, "coord": [48.88634143318657, 2.475700748332326], "stop_id": 3446788, "stop_desc": "AVENUE DE GAGNY - 93064", "stop_name": "ROSNY 2 NORD"}, "geometry": {"type": "Point", "coordinates": [2.475700748332326, 48.88634143318657]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "23ba4d7001823f9ffa8665c1c515d1146b7076cd", "fields": {"departement": "93", "stop_lat": 48.937028715881254, "code_postal": "93007", "stop_lon": 2.4588665245586574, "coord": [48.937028715881254, 2.4588665245586574], "stop_id": 3450649, "stop_desc": "FACE 25 AVENUE HENRI BARBUSSE - 93007", "stop_name": "ANCIENNE MAIRIE DE LE_BLANC-MESNIL"}, "geometry": {"type": "Point", "coordinates": [2.4588665245586574, 48.937028715881254]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9812ce0890da6e543cf63d47fb036e467e079612", "fields": {"departement": "93", "stop_lat": 48.9366356332374, "code_postal": "93007", "stop_lon": 2.4652223862316682, "coord": [48.9366356332374, 2.4652223862316682], "stop_id": 3450654, "stop_desc": "37 AVENUE DE LA REPUBLIQUE - 93007", "stop_name": "EGLISE DU BLANC-MESNIL"}, "geometry": {"type": "Point", "coordinates": [2.4652223862316682, 48.9366356332374]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b608a64464cc0e38fdfa32c2df768d0cd6e8c928", "fields": {"departement": "93", "stop_lat": 48.87968189832887, "code_postal": "93045", "stop_lon": 2.416695236771681, "coord": [48.87968189832887, 2.416695236771681], "stop_id": 3560205, "stop_desc": "6 BOULEVARD DE LA LIBERTE - 93045", "stop_name": "MAIRIE DES LILAS"}, "geometry": {"type": "Point", "coordinates": [2.416695236771681, 48.87968189832887]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "328b0aff07cd698437fa726741f5c72c1cae623b", "fields": {"departement": "93", "stop_lat": 48.88852720263683, "code_postal": "93053", "stop_lon": 2.4574034994134486, "coord": [48.88852720263683, 2.4574034994134486], "stop_id": 3560223, "stop_desc": "8 BOULEVARD MICHELET - 93053", "stop_name": "SALENGRO - AUFFRET"}, "geometry": {"type": "Point", "coordinates": [2.4574034994134486, 48.88852720263683]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "020357b80d67a747ca07aaeca2d2daa505c1aed6", "fields": {"departement": "93", "stop_lat": 48.90084337776183, "code_postal": "93010", "stop_lon": 2.4785612667664876, "coord": [48.90084337776183, 2.4785612667664876], "stop_id": 3450665, "stop_desc": "50 RUE ROGER SALENGRO - 93010", "stop_name": "BLANQUI - SALENGRO"}, "geometry": {"type": "Point", "coordinates": [2.4785612667664876, 48.90084337776183]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d820706bc783c227476b2511766a5f19de8e154b", "fields": {"departement": "93", "stop_lat": 48.88700361504255, "code_postal": "93053", "stop_lon": 2.4703330416642877, "coord": [48.88700361504255, 2.4703330416642877], "stop_id": 3450667, "stop_desc": "RUE DE MONTREUIL A CLAYE - 93053", "stop_name": "BREMENT"}, "geometry": {"type": "Point", "coordinates": [2.4703330416642877, 48.88700361504255]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d75b721763c109faf491767d3a6edd56d07b3779", "fields": {"departement": "93", "stop_lat": 48.88175757603919, "code_postal": "93063", "stop_lon": 2.4296846806760315, "coord": [48.88175757603919, 2.4296846806760315], "stop_id": 3560212, "stop_desc": "108-110 AVENUE DE VERDUN - 93063", "stop_name": "LIBERTE"}, "geometry": {"type": "Point", "coordinates": [2.4296846806760315, 48.88175757603919]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ee53b9d82f48def6129b937219ae18c6c6351500", "fields": {"departement": "93", "stop_lat": 48.88371743876295, "code_postal": "93063", "stop_lon": 2.439881348132315, "coord": [48.88371743876295, 2.439881348132315], "stop_id": 3560216, "stop_desc": "FACE 3 AVENUE DE VERDUN - 93063", "stop_name": "CARNOT"}, "geometry": {"type": "Point", "coordinates": [2.439881348132315, 48.88371743876295]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ddf6b503c12d3f4fc0b074a92daf2941ae9f8da5", "fields": {"departement": "94", "stop_lat": 48.77745953062518, "code_postal": "94028", "stop_lon": 2.456153839087414, "coord": [48.77745953062518, 2.456153839087414], "stop_id": 3619831, "stop_desc": "AVENUE DES COMPAGNONS DE LA LIBERATION - 94028", "stop_name": "HOTEL DE VILLE DE CRETEIL"}, "geometry": {"type": "Point", "coordinates": [2.456153839087414, 48.77745953062518]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c16397df8342dbbdc82e27a6f2dcc2e7ee21869d", "fields": {"departement": "94", "stop_lat": 48.805507392337134, "code_postal": "94046", "stop_lon": 2.440556750042566, "coord": [48.805507392337134, 2.440556750042566], "stop_id": 3619806, "stop_desc": "FACE 89 AVENUE DE LA REPUBLIQUE - 94046", "stop_name": "REPUBLIQUE - GENERAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.440556750042566, 48.805507392337134]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "60fddae27021f533af29e9e8e41bf95d8a362121", "fields": {"departement": "94", "stop_lat": 48.79676434459723, "code_postal": "94028", "stop_lon": 2.457436045286632, "coord": [48.79676434459723, 2.457436045286632], "stop_id": 3619813, "stop_desc": "24-26 AVENUE DU MARECHAL DE LATTRE DE TASSIGNY - 94028", "stop_name": "GENERAL GALLIENI"}, "geometry": {"type": "Point", "coordinates": [2.457436045286632, 48.79676434459723]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "137c9544aef55e677e6ca7d07e984a9108c6ec0e", "fields": {"departement": "94", "stop_lat": 48.80213980670075, "code_postal": "94046", "stop_lon": 2.425882971124341, "coord": [48.80213980670075, 2.425882971124341], "stop_id": 3619798, "stop_desc": "AVENUE DE LA REPUBLIQUE - 94046", "stop_name": "MAISONS-ALFORT - ALFORTVILLE RER."}, "geometry": {"type": "Point", "coordinates": [2.425882971124341, 48.80213980670075]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d8db88385ec4914b70edde6e648d8c7b8d7f8360", "fields": {"departement": "94", "stop_lat": 48.80102123483813, "code_postal": "94046", "stop_lon": 2.431200824049608, "coord": [48.80102123483813, 2.431200824049608], "stop_id": 3619801, "stop_desc": "FACE 10 AVENUE DE LA REPUBLIQUE - 94046", "stop_name": "MAIRIE DE MAISONS-ALFORT"}, "geometry": {"type": "Point", "coordinates": [2.431200824049608, 48.80102123483813]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3ba16366e9513cdf2daf6f587593340cce2b5658", "fields": {"departement": "94", "stop_lat": 48.8207913927885, "code_postal": "94042", "stop_lon": 2.4635212310090804, "coord": [48.8207913927885, 2.4635212310090804], "stop_id": 3619838, "stop_desc": "AVENUE JEAN JAURES - 94042", "stop_name": "JOINVILLE-LE-PONT RER"}, "geometry": {"type": "Point", "coordinates": [2.4635212310090804, 48.8207913927885]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "993be8eda81fb1fa1006f9e78e315791b77e995d", "fields": {"departement": "94", "stop_lat": 48.793965959282545, "code_postal": "94028", "stop_lon": 2.4605176061845695, "coord": [48.793965959282545, 2.4605176061845695], "stop_id": 3619814, "stop_desc": "RUE DE PARIS - 94028", "stop_name": "EGLISE DE CRETEIL"}, "geometry": {"type": "Point", "coordinates": [2.4605176061845695, 48.793965959282545]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b5f4ca3d8c6cd23b99dd5b54da8d12e2c538aefa", "fields": {"departement": "94", "stop_lat": 48.777712959312176, "code_postal": "94028", "stop_lon": 2.463171726467112, "coord": [48.777712959312176, 2.463171726467112], "stop_id": 3619829, "stop_desc": "RUE RENE ARCOS - 94028", "stop_name": "JOHN KENNEDY"}, "geometry": {"type": "Point", "coordinates": [2.463171726467112, 48.777712959312176]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4f713324d53206c7038a6e01e03b98758143f037", "fields": {"departement": "94", "stop_lat": 48.77790167824832, "code_postal": "94028", "stop_lon": 2.4631993828949934, "coord": [48.77790167824832, 2.4631993828949934], "stop_id": 3619828, "stop_desc": "RUE RENE ARCOS - 94028", "stop_name": "JOHN KENNEDY"}, "geometry": {"type": "Point", "coordinates": [2.4631993828949934, 48.77790167824832]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8148e3c4157ba8188d6ad357410cab1293ed863e", "fields": {"departement": "94", "stop_lat": 48.80483918599314, "code_postal": "94068", "stop_lon": 2.485933228953106, "coord": [48.80483918599314, 2.485933228953106], "stop_id": 3663618, "stop_desc": "RUE ANDRE DE CAILLEUX - 94068", "stop_name": "LE PARC DE SAINT-MAUR RER"}, "geometry": {"type": "Point", "coordinates": [2.485933228953106, 48.80483918599314]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9aae33761ec0bde038796d3ad17e9cd2952377a4", "fields": {"departement": "94", "stop_lat": 48.80624097434953, "code_postal": "94068", "stop_lon": 2.4710512828055955, "coord": [48.80624097434953, 2.4710512828055955], "stop_id": 3663622, "stop_desc": "RUE DU PONT DE CRETEIL - 94068", "stop_name": "SAINT-MAUR-CRETEIL RER"}, "geometry": {"type": "Point", "coordinates": [2.4710512828055955, 48.80624097434953]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3ff24c8ad90025c2d9a1fa8cfe8035377d1bef6a", "fields": {"departement": "94", "stop_lat": 48.80652822464246, "code_postal": "94068", "stop_lon": 2.4791209653403192, "coord": [48.80652822464246, 2.4791209653403192], "stop_id": 3663619, "stop_desc": "43-45 BOULEVARD RABELAIS - 94068", "stop_name": "CIMETIERE - RABELAIS"}, "geometry": {"type": "Point", "coordinates": [2.4791209653403192, 48.80652822464246]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7be4b10b31e05826dd71724aacdb3f880f3ac192", "fields": {"departement": "94", "stop_lat": 48.80598700388036, "code_postal": "94068", "stop_lon": 2.473091654649023, "coord": [48.80598700388036, 2.473091654649023], "stop_id": 3663610, "stop_desc": "R DES REMISES - 94068", "stop_name": "SAINT-MAUR-CRETEIL RER"}, "geometry": {"type": "Point", "coordinates": [2.473091654649023, 48.80598700388036]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8996e5d6128bab3d278081f986939e58896957f2", "fields": {"departement": "75", "stop_lat": 48.873180525721516, "code_postal": "75108", "stop_lon": 2.310155638063019, "coord": [48.873180525721516, 2.310155638063019], "stop_id": 3893406, "stop_desc": "FACE 1 AVENUE MYRON-T.HERRICK - 75108", "stop_name": "SAINT-PHILIPPE-DU-ROULE"}, "geometry": {"type": "Point", "coordinates": [2.310155638063019, 48.873180525721516]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ea4ff14c86bdb4376c809948ada4b54d0119f5b6", "fields": {"departement": "75", "stop_lat": 48.867842706224465, "code_postal": "75108", "stop_lon": 2.3132099917230624, "coord": [48.867842706224465, 2.3132099917230624], "stop_id": 3893408, "stop_desc": "AVENUE DES CHAMPS ELYSEES - 75108", "stop_name": "CHAMPS-ELYSEES - CLEMENCEAU"}, "geometry": {"type": "Point", "coordinates": [2.3132099917230624, 48.867842706224465]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5faae78ca621af286d35f92c3220430ba810a683", "fields": {"departement": "75", "stop_lat": 48.861543739204706, "code_postal": "75107", "stop_lon": 2.3200372331720067, "coord": [48.861543739204706, 2.3200372331720067], "stop_id": 3893412, "stop_desc": "241 BOULEVARD SAINT GERMAIN - 75107", "stop_name": "ASSEMBLEE NATIONALE"}, "geometry": {"type": "Point", "coordinates": [2.3200372331720067, 48.861543739204706]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b95a25edd1739cc6751c5bfdf8749b2c5cb61bac", "fields": {"departement": "75", "stop_lat": 48.861714527136336, "code_postal": "75107", "stop_lon": 2.3202278766917344, "coord": [48.861714527136336, 2.3202278766917344], "stop_id": 3893413, "stop_desc": "286 BOULEVARD SAINT GERMAIN - 75107", "stop_name": "ASSEMBLEE NATIONALE"}, "geometry": {"type": "Point", "coordinates": [2.3202278766917344, 48.861714527136336]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c475161be3cf2961b6096340f0ae8e01b06cb097", "fields": {"departement": "75", "stop_lat": 48.8562418518031, "code_postal": "75107", "stop_lon": 2.3257457758743554, "coord": [48.8562418518031, 2.3257457758743554], "stop_id": 3893419, "stop_desc": "242 BIS BOULEVARD SAINT-GERMAIN - 75107", "stop_name": "RUE DU BAC - RENE CHAR"}, "geometry": {"type": "Point", "coordinates": [2.3257457758743554, 48.8562418518031]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "820a1f7af34a4f49e8ea8fe7cca295cba6212546", "fields": {"departement": "75", "stop_lat": 48.83731445315705, "code_postal": "75113", "stop_lon": 2.345273938065922, "coord": [48.83731445315705, 2.345273938065922], "stop_id": 3893436, "stop_desc": "4 RUE DE LA GLACIERE - 75113", "stop_name": "PORT ROYAL - BERTHOLLET"}, "geometry": {"type": "Point", "coordinates": [2.345273938065922, 48.83731445315705]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b519fc7a37c035270b6ce8a375a53c10e09fe484", "fields": {"departement": "75", "stop_lat": 48.83648704829298, "code_postal": "75113", "stop_lon": 2.351209872064596, "coord": [48.83648704829298, 2.351209872064596], "stop_id": 3893441, "stop_desc": "7 BOULEVARD ARAGO - 75113", "stop_name": "LES GOBELINS"}, "geometry": {"type": "Point", "coordinates": [2.351209872064596, 48.83648704829298]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d1f3d6e320305172367edd56cace6264d6661b04", "fields": {"departement": "75", "stop_lat": 48.83086000807591, "code_postal": "75113", "stop_lon": 2.356898736648717, "coord": [48.83086000807591, 2.356898736648717], "stop_id": 3893447, "stop_desc": "211 BOULEVARD VINCENT AURIOL - 75113", "stop_name": "PLACE D'ITALIE"}, "geometry": {"type": "Point", "coordinates": [2.356898736648717, 48.83086000807591]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e2e281bd52cffc10846edd5104e4fea84ef1d84f", "fields": {"departement": "75", "stop_lat": 48.8313903398072, "code_postal": "75113", "stop_lon": 2.3565177598840474, "coord": [48.8313903398072, 2.3565177598840474], "stop_id": 3893448, "stop_desc": "FACE 209 BOULEVARD VINCENT AURIOL - 75113", "stop_name": "PLACE D'ITALIE"}, "geometry": {"type": "Point", "coordinates": [2.3565177598840474, 48.8313903398072]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4646b80e7395a0d6bd5a5352c696c0eae7c48646", "fields": {"departement": "75", "stop_lat": 48.82720986074353, "code_postal": "75113", "stop_lon": 2.3630229291467493, "coord": [48.82720986074353, 2.3630229291467493], "stop_id": 3893452, "stop_desc": "RUE CHARLES MOUREU - 75113", "stop_name": "LYCEE CLAUDE MONET"}, "geometry": {"type": "Point", "coordinates": [2.3630229291467493, 48.82720986074353]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "37fa27358a6ab10f6ee9676ad1b0d6a77f0cf8ab", "fields": {"departement": "75", "stop_lat": 48.826607407557404, "code_postal": "75113", "stop_lon": 2.3642885673351617, "coord": [48.826607407557404, 2.3642885673351617], "stop_id": 3893453, "stop_desc": "105 BIS RUE DE TOLBIAC - 75113", "stop_name": "TOLBIAC - BAUDRICOURT"}, "geometry": {"type": "Point", "coordinates": [2.3642885673351617, 48.826607407557404]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eaaedb7630c0917f981482e291827082ccc5ecc3", "fields": {"departement": "75", "stop_lat": 48.82702909203566, "code_postal": "75113", "stop_lon": 2.367351563599449, "coord": [48.82702909203566, 2.367351563599449], "stop_id": 3893455, "stop_desc": "89 RUE DE TOLBIAC - 75113", "stop_name": "OLYMPIADES"}, "geometry": {"type": "Point", "coordinates": [2.367351563599449, 48.82702909203566]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c379c19351629632d7ba1eb892070e19bf7e9f12", "fields": {"departement": "75", "stop_lat": 48.824943307799366, "code_postal": "75113", "stop_lon": 2.3698140885215073, "coord": [48.824943307799366, 2.3698140885215073], "stop_id": 3893458, "stop_desc": "47 RUE DU CHATEAU DES RENTIERS - 75113", "stop_name": "MARCEL DUCHAMP"}, "geometry": {"type": "Point", "coordinates": [2.3698140885215073, 48.824943307799366]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "73bc837112e0536d212e44a9554191ccd6e3f32d", "fields": {"departement": "75", "stop_lat": 48.82265104076917, "code_postal": "75113", "stop_lon": 2.371282659150975, "coord": [48.82265104076917, 2.371282659150975], "stop_id": 3893459, "stop_desc": "RUE DU CHATEAU DES RENTIERS - 75113", "stop_name": "REGNAULT"}, "geometry": {"type": "Point", "coordinates": [2.371282659150975, 48.82265104076917]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2f899f0e6234682ecb70a3c1f4db6cd8035051f8", "fields": {"departement": "75", "stop_lat": 48.83779080172666, "code_postal": "75105", "stop_lon": 2.3451650904042616, "coord": [48.83779080172666, 2.3451650904042616], "stop_id": 3893466, "stop_desc": "FACE 47 BOULEVARD DE PORT ROYAL - 75105", "stop_name": "PORT ROYAL - BERTHOLLET"}, "geometry": {"type": "Point", "coordinates": [2.3451650904042616, 48.83779080172666]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2c9816b27a71a83460cac08e2269f6d8e36fe4ad", "fields": {"departement": "75", "stop_lat": 48.869469015384865, "code_postal": "75108", "stop_lon": 2.3113019501850944, "coord": [48.869469015384865, 2.3113019501850944], "stop_id": 3893472, "stop_desc": "FACE 3 AVENUE MATIGNON - 75108", "stop_name": "ROND-POINT DES CHAMPS-ELYSEES - MATIGNON"}, "geometry": {"type": "Point", "coordinates": [2.3113019501850944, 48.869469015384865]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "65bf5f6ffa3137cf58e82e3c51c50fe91f827a81", "fields": {"departement": "75", "stop_lat": 48.87369358750886, "code_postal": "75108", "stop_lon": 2.313861258840092, "coord": [48.87369358750886, 2.313861258840092], "stop_id": 3893474, "stop_desc": "44 RUE LA BOETIE - 75108", "stop_name": "LA BOETIE - PERCIER"}, "geometry": {"type": "Point", "coordinates": [2.313861258840092, 48.87369358750886]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9212206a8d2a4926b58a01454b81b609b150b59c", "fields": {"departement": "75", "stop_lat": 48.82620689564083, "code_postal": "75113", "stop_lon": 2.381235454574714, "coord": [48.82620689564083, 2.381235454574714], "stop_id": 3893475, "stop_desc": "0 AV DE FRANCE - 75113", "stop_name": "PORTE DE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.381235454574714, 48.82620689564083]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5e23cac7677faebfef111d002e98807c240271a6", "fields": {"departement": "75", "stop_lat": 48.82620689564083, "code_postal": "75113", "stop_lon": 2.381235454574714, "coord": [48.82620689564083, 2.381235454574714], "stop_id": 3893476, "stop_desc": "0 AV DE FRANCE - 75113", "stop_name": "PORTE DE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.381235454574714, 48.82620689564083]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "07ba4d3bf631c8eaa793fe02fb7e99bf799139bc", "fields": {"departement": "75", "stop_lat": 48.82946258331531, "code_postal": "75113", "stop_lon": 2.3749354044210107, "coord": [48.82946258331531, 2.3749354044210107], "stop_id": 3893480, "stop_desc": "7 RUE DE TOLBIAC - 75113", "stop_name": "BIBLIOTHEQUE CHEVALERET"}, "geometry": {"type": "Point", "coordinates": [2.3749354044210107, 48.82946258331531]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "89c6cc79de978f42b19fb341f6271a55d61932c5", "fields": {"departement": "75", "stop_lat": 48.82773379495595, "code_postal": "75114", "stop_lon": 2.3315101951611297, "coord": [48.82773379495595, 2.3315101951611297], "stop_id": 3893501, "stop_desc": "39 RUE D'ALESIA - 75114", "stop_name": "LA TOMBE ISSOIRE"}, "geometry": {"type": "Point", "coordinates": [2.3315101951611297, 48.82773379495595]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ed4ed4b438d974e04f8eb5b13a95ffc704e1c787", "fields": {"departement": "75", "stop_lat": 48.830527662575975, "code_postal": "75114", "stop_lon": 2.3188359434066705, "coord": [48.830527662575975, 2.3188359434066705], "stop_id": 3893509, "stop_desc": "165 RUE D'ALESIA - 75114", "stop_name": "ALESIA - DIDOT"}, "geometry": {"type": "Point", "coordinates": [2.3188359434066705, 48.830527662575975]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "39ee7a7c9e527f2b1a82856d4771a57ef71cec8f", "fields": {"departement": "75", "stop_lat": 48.84690312501402, "code_postal": "75116", "stop_lon": 2.2694937216864064, "coord": [48.84690312501402, 2.2694937216864064], "stop_id": 3893535, "stop_desc": "RUE WILHEM - 75116", "stop_name": "EGLISE D'AUTEUIL"}, "geometry": {"type": "Point", "coordinates": [2.2694937216864064, 48.84690312501402]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "006e4a7b6d8bd6543c9aabca5abd6e864008ab3b", "fields": {"departement": "75", "stop_lat": 48.84780825353484, "code_postal": "75116", "stop_lon": 2.2650531374112775, "coord": [48.84780825353484, 2.2650531374112775], "stop_id": 3893546, "stop_desc": "51 RUE D'AUTEUIL - 75116", "stop_name": "MICHEL-ANGE - AUTEUIL"}, "geometry": {"type": "Point", "coordinates": [2.2650531374112775, 48.84780825353484]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "690178f03ce3a21d750568bd71c589c1d3345947", "fields": {"departement": "92", "stop_lat": 48.788959603982086, "code_postal": "92032", "stop_lon": 2.2884085971458927, "coord": [48.788959603982086, 2.2884085971458927], "stop_id": 3909010, "stop_desc": "3 AVENUE JEAN MOULIN - 92032", "stop_name": "BOULEVARD DE LA REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.2884085971458927, 48.788959603982086]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b7bc6473da976e44c4aeee490e0bb0effe3d4803", "fields": {"departement": "92", "stop_lat": 48.79153843504976, "code_postal": "92032", "stop_lon": 2.2867329978586195, "coord": [48.79153843504976, 2.2867329978586195], "stop_id": 3909024, "stop_desc": "FACE 75 RUE BOUCICAUT - 92032", "stop_name": "MAIRIE DE FONTENAY-AUX-ROSES"}, "geometry": {"type": "Point", "coordinates": [2.2867329978586195, 48.79153843504976]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "137374e20e4ff37feb61b2aadaccba364ef1cbc0", "fields": {"departement": "92", "stop_lat": 48.793990857323564, "code_postal": "92032", "stop_lon": 2.283819424118415, "coord": [48.793990857323564, 2.283819424118415], "stop_id": 3909025, "stop_desc": "FACE 1-1BIS R ANDRE SALEL - 92032", "stop_name": "ANDRE SALEL"}, "geometry": {"type": "Point", "coordinates": [2.283819424118415, 48.793990857323564]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "875d7b6b4c1ff34df2da6b0c8121151411e8075e", "fields": {"departement": "92", "stop_lat": 48.79323298839284, "code_postal": "92032", "stop_lon": 2.2777394466318053, "coord": [48.79323298839284, 2.2777394466318053], "stop_id": 3909027, "stop_desc": "R DURAND BENECH - 92032", "stop_name": "JEAN MONNET"}, "geometry": {"type": "Point", "coordinates": [2.2777394466318053, 48.79323298839284]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aef016872eaae1ac4b5e819eb5fa7c2189136089", "fields": {"departement": "92", "stop_lat": 48.79189122710944, "code_postal": "92032", "stop_lon": 2.2728166500893576, "coord": [48.79189122710944, 2.2728166500893576], "stop_id": 3909028, "stop_desc": "VOIE VERTE - 92032", "stop_name": "STADE DU PANORAMA"}, "geometry": {"type": "Point", "coordinates": [2.2728166500893576, 48.79189122710944]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ac71c7fde41a1ac09e5fb5eb48afff5f7193e688", "fields": {"departement": "92", "stop_lat": 48.79377880155676, "code_postal": "92032", "stop_lon": 2.2730319659884284, "coord": [48.79377880155676, 2.2730319659884284], "stop_id": 3909029, "stop_desc": "0 AV DU GENERAL LECLERC - 92032", "stop_name": "DIVISION LECLERC."}, "geometry": {"type": "Point", "coordinates": [2.2730319659884284, 48.79377880155676]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "528786769261300e35c28ebd1f21b802b9188221", "fields": {"departement": "92", "stop_lat": 48.810711149694555, "code_postal": "92023", "stop_lon": 2.2570351494168617, "coord": [48.810711149694555, 2.2570351494168617], "stop_id": 3909037, "stop_desc": "FACE 135 RUE DE FLEURY - 92023", "stop_name": "FLEURY"}, "geometry": {"type": "Point", "coordinates": [2.2570351494168617, 48.810711149694555]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c8ba9b0004a29a7f34594f48ce5baf60699c7aae", "fields": {"departement": "92", "stop_lat": 48.80487085105687, "code_postal": "92023", "stop_lon": 2.2596974477375436, "coord": [48.80487085105687, 2.2596974477375436], "stop_id": 3909043, "stop_desc": "3 RUE PAUL VAILLANT COUTURIER - 92023", "stop_name": "MARQUIS"}, "geometry": {"type": "Point", "coordinates": [2.2596974477375436, 48.80487085105687]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e28bf0fea083b85d66274998a233ef045bd53f6a", "fields": {"departement": "92", "stop_lat": 48.798046385164035, "code_postal": "92023", "stop_lon": 2.270033643771329, "coord": [48.798046385164035, 2.270033643771329], "stop_id": 3909056, "stop_desc": "28 R DE FONTENAY - 92023", "stop_name": "RUE DE FONTENAY"}, "geometry": {"type": "Point", "coordinates": [2.270033643771329, 48.798046385164035]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "75e5ce6f2bf8ab397787ce36f951612b662c4455", "fields": {"departement": "92", "stop_lat": 48.79437854419, "code_postal": "92023", "stop_lon": 2.2686508054304064, "coord": [48.79437854419, 2.2686508054304064], "stop_id": 3909060, "stop_desc": "AV DU BOIS TARDIEU - 92023", "stop_name": "CIMETIERE COMMUNAL"}, "geometry": {"type": "Point", "coordinates": [2.2686508054304064, 48.79437854419]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "04a4e0bdf5dba5d6f8d81ad90ee843606c1083f2", "fields": {"departement": "92", "stop_lat": 48.79165184188213, "code_postal": "92023", "stop_lon": 2.2630363387405126, "coord": [48.79165184188213, 2.2630363387405126], "stop_id": 3909062, "stop_desc": "AVENUE JEAN BAPTISTE CLEMENT - 92023", "stop_name": "SOLEIL LEVANT"}, "geometry": {"type": "Point", "coordinates": [2.2630363387405126, 48.79165184188213]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d770ddb9f109b9aab3cd434c7f94d110d4249da4", "fields": {"departement": "92", "stop_lat": 48.791769140552354, "code_postal": "92023", "stop_lon": 2.2637707386635664, "coord": [48.791769140552354, 2.2637707386635664], "stop_id": 3909063, "stop_desc": "FACE 138 AVENUE JEAN BAPTISTE CLEMENT - 92023", "stop_name": "SOLEIL LEVANT"}, "geometry": {"type": "Point", "coordinates": [2.2637707386635664, 48.791769140552354]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e46d0829acecbcfdca11987bc26f75d4e2333e01", "fields": {"departement": "92", "stop_lat": 48.78771515161466, "code_postal": "92023", "stop_lon": 2.2498343812150767, "coord": [48.78771515161466, 2.2498343812150767], "stop_id": 3909071, "stop_desc": "9 R DE CHAMPAGNE - 92023", "stop_name": "CHAMPAGNE"}, "geometry": {"type": "Point", "coordinates": [2.2498343812150767, 48.78771515161466]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ff3ad03173f14ff3662b4ceedef59b32628eef81", "fields": {"departement": "92", "stop_lat": 48.777812233827, "code_postal": "92023", "stop_lon": 2.2300910420566633, "coord": [48.777812233827, 2.2300910420566633], "stop_id": 3909082, "stop_desc": "76 R DE LA GAITE - 92023", "stop_name": "MAISON DE QUARTIER - ANDRE CHARRE"}, "geometry": {"type": "Point", "coordinates": [2.2300910420566633, 48.777812233827]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d10202a7ed4581a956d192b9e332019f82a50294", "fields": {"departement": "92", "stop_lat": 48.798408679390626, "code_postal": "92023", "stop_lon": 2.275148594939841, "coord": [48.798408679390626, 2.275148594939841], "stop_id": 3909091, "stop_desc": "99 R PAUL PADE - 92023", "stop_name": "SAVOIE"}, "geometry": {"type": "Point", "coordinates": [2.275148594939841, 48.798408679390626]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c83d688dc0198af71d0eb4568d52d8a39f22ecab", "fields": {"departement": "92", "stop_lat": 48.81119355689315, "code_postal": "92023", "stop_lon": 2.266587355554653, "coord": [48.81119355689315, 2.266587355554653], "stop_id": 3909096, "stop_desc": "FACE 9-7 R DES TRICOTS - 92023", "stop_name": "RUE DES TRICOTS"}, "geometry": {"type": "Point", "coordinates": [2.266587355554653, 48.81119355689315]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7ed88f4e3076efedead502d0f9fdf5210cb61881", "fields": {"departement": "92", "stop_lat": 48.7867192580975, "code_postal": "92032", "stop_lon": 2.28298359496056, "coord": [48.7867192580975, 2.28298359496056], "stop_id": 3909103, "stop_desc": "4 AVENUE RAYMOND CROLAND - 92032", "stop_name": "ABBE GRANDJEAN"}, "geometry": {"type": "Point", "coordinates": [2.28298359496056, 48.7867192580975]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "76083001921fb73d2c1e302931b538935e18f8f0", "fields": {"departement": "92", "stop_lat": 48.78886457651323, "code_postal": "92032", "stop_lon": 2.2988824869540996, "coord": [48.78886457651323, 2.2988824869540996], "stop_id": 3909113, "stop_desc": "43 TER AVENUE GABRIEL PERI - 92032", "stop_name": "ECOLE DE LA ROUE"}, "geometry": {"type": "Point", "coordinates": [2.2988824869540996, 48.78886457651323]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8feddf1936f46a15581d42cd49fff3e4c101df02", "fields": {"departement": "92", "stop_lat": 48.79064796399364, "code_postal": "92032", "stop_lon": 2.2851831441927226, "coord": [48.79064796399364, 2.2851831441927226], "stop_id": 3909119, "stop_desc": "FACE 32 RUE JEAN JAURES - 92032", "stop_name": "CARNOT - JEAN JAURES."}, "geometry": {"type": "Point", "coordinates": [2.2851831441927226, 48.79064796399364]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f745f1f97c9240eb116f92130ec301e626d3d911", "fields": {"departement": "92", "stop_lat": 48.79153843504976, "code_postal": "92032", "stop_lon": 2.2867329978586195, "coord": [48.79153843504976, 2.2867329978586195], "stop_id": 3909120, "stop_desc": "FACE 75 RUE BOUCICAUT - 92032", "stop_name": "MAIRIE DE FONTENAY-AUX-ROSES"}, "geometry": {"type": "Point", "coordinates": [2.2867329978586195, 48.79153843504976]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5776dbfd01801c1ecb70dd56dc507bea5493df25", "fields": {"departement": "92", "stop_lat": 48.794048305565546, "code_postal": "92032", "stop_lon": 2.272786766124354, "coord": [48.794048305565546, 2.272786766124354], "stop_id": 3909125, "stop_desc": "PLACE DE LA DIVISION LECLERC - 92032", "stop_name": "DIVISION LECLERC."}, "geometry": {"type": "Point", "coordinates": [2.272786766124354, 48.794048305565546]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9dcd010a526310fff42cc7506844f3a4a8bc9f68", "fields": {"departement": "92", "stop_lat": 48.77363257599805, "code_postal": "92060", "stop_lon": 2.24029843310275, "coord": [48.77363257599805, 2.24029843310275], "stop_id": 3909812, "stop_desc": "CONTRE-ALLEE DE L'AVENUE DE LA DIVISION LECLERC - 92060", "stop_name": "LA BOURSIDIERE"}, "geometry": {"type": "Point", "coordinates": [2.24029843310275, 48.77363257599805]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "48d2c1c99f2f0c13ee947a5d6a83556f1fdffa71", "fields": {"departement": "92", "stop_lat": 48.778905501575515, "code_postal": "92060", "stop_lon": 2.260783394313373, "coord": [48.778905501575515, 2.260783394313373], "stop_id": 3909820, "stop_desc": "FACE 9 AVENUE CHARLES DE GAULLE - 92060", "stop_name": "RESISTANCE"}, "geometry": {"type": "Point", "coordinates": [2.260783394313373, 48.778905501575515]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c6c293c443e56196036401bb8ccf05b31f87bc7e", "fields": {"departement": "92", "stop_lat": 48.777667735351535, "code_postal": "92060", "stop_lon": 2.239733325837988, "coord": [48.777667735351535, 2.239733325837988], "stop_id": 3909824, "stop_desc": "AVENUE DESCARTES - 92060", "stop_name": "REAUMUR"}, "geometry": {"type": "Point", "coordinates": [2.239733325837988, 48.777667735351535]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6c4280cbe9cb21eaab31a0d6ef8a70faf6a28fcf", "fields": {"departement": "92", "stop_lat": 48.77974342139406, "code_postal": "92071", "stop_lon": 2.28046129206943, "coord": [48.77974342139406, 2.28046129206943], "stop_id": 3909833, "stop_desc": "FACE 3 AV DU PLESSIS - 92071", "stop_name": "ROBINSON RER"}, "geometry": {"type": "Point", "coordinates": [2.28046129206943, 48.77974342139406]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "55df0a421ce059fbc9f1e92c95c8b9e0bfb793e5", "fields": {"departement": "75", "stop_lat": 48.841674600518346, "code_postal": "75112", "stop_lon": 2.4496154545513202, "coord": [48.841674600518346, 2.4496154545513202], "stop_id": 3922295, "stop_desc": "AVENUE DE NOGENT - 75112", "stop_name": "TREMBLAY - PEPINIERE"}, "geometry": {"type": "Point", "coordinates": [2.4496154545513202, 48.841674600518346]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c2ed6eb1aee99379d4fa8613199bab290f0991a6", "fields": {"departement": "94", "stop_lat": 48.84093592361724, "code_postal": "94058", "stop_lon": 2.4981004635094584, "coord": [48.84093592361724, 2.4981004635094584], "stop_id": 3922304, "stop_desc": "44 BIS-46 AVENUE LEDRU-ROLLIN - 94058", "stop_name": "LE PARC"}, "geometry": {"type": "Point", "coordinates": [2.4981004635094584, 48.84093592361724]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7e61e19f455277247a81eee242caa6d8f4abacfb", "fields": {"departement": "94", "stop_lat": 48.84084377806442, "code_postal": "94058", "stop_lon": 2.5062289263976862, "coord": [48.84084377806442, 2.5062289263976862], "stop_id": 3922306, "stop_desc": "103 AVENUE DU GENERAL DE GAULLE - 94058", "stop_name": "MAIRIE DU PERREUX-SUR-MARNE"}, "geometry": {"type": "Point", "coordinates": [2.5062289263976862, 48.84084377806442]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "482b41f7c008d3cd51a196c2dcbca40157cf2355", "fields": {"departement": "94", "stop_lat": 48.834303962813244, "code_postal": "94058", "stop_lon": 2.5102919129696097, "coord": [48.834303962813244, 2.5102919129696097], "stop_id": 3922309, "stop_desc": "38-40 ALLEE GUY MOQUET - 94058", "stop_name": "GUY MOQUET"}, "geometry": {"type": "Point", "coordinates": [2.5102919129696097, 48.834303962813244]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9412eb1b9a91d2d19e49b8406cb653000f989d45", "fields": {"departement": "94", "stop_lat": 48.833711015988115, "code_postal": "94058", "stop_lon": 2.5162120806998196, "coord": [48.833711015988115, 2.5162120806998196], "stop_id": 3922312, "stop_desc": "FACE127BIS BOULEVARD FOCH - 94058", "stop_name": "MARECHAL JOFFRE - PONT DE BRY"}, "geometry": {"type": "Point", "coordinates": [2.5162120806998196, 48.833711015988115]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ec0fc35feb5b3ab792df3713a456f7712e409d26", "fields": {"departement": "75", "stop_lat": 48.883328927509616, "code_postal": "75117", "stop_lon": 2.2877064578922117, "coord": [48.883328927509616, 2.2877064578922117], "stop_id": 3926137, "stop_desc": "28 BOULEVARD GOUVION-SAINT-CYR - 75117", "stop_name": "PORTE DE VILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.2877064578922117, 48.883328927509616]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "821ace6018eff7b205cc5cc7bf71c73672d4b3bb", "fields": {"departement": "75", "stop_lat": 48.886143903230625, "code_postal": "75117", "stop_lon": 2.2927051939001406, "coord": [48.886143903230625, 2.2927051939001406], "stop_id": 3926138, "stop_desc": "15 AVENUE STEPHANE MALLARME - 75117", "stop_name": "PORTE DE CHAMPERRET"}, "geometry": {"type": "Point", "coordinates": [2.2927051939001406, 48.886143903230625]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fbca866f2fabb0873d03a0fd339fd959ef43c82a", "fields": {"departement": "75", "stop_lat": 48.88670236338325, "code_postal": "75117", "stop_lon": 2.296193485091651, "coord": [48.88670236338325, 2.296193485091651], "stop_id": 3926140, "stop_desc": "158 BOULEVARD BERTHIER - 75117", "stop_name": "PORTE DE COURCELLES"}, "geometry": {"type": "Point", "coordinates": [2.296193485091651, 48.88670236338325]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b705ec391c42eed6be68ee71cfefd07ee93854d5", "fields": {"departement": "75", "stop_lat": 48.88763800200404, "code_postal": "75117", "stop_lon": 2.2991091911315924, "coord": [48.88763800200404, 2.2991091911315924], "stop_id": 3926141, "stop_desc": "43 BOULEVARD BERTHIER - 75117", "stop_name": "GOURGAUD - PAUL ADAM"}, "geometry": {"type": "Point", "coordinates": [2.2991091911315924, 48.88763800200404]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "15bcffb51f0e6a98d69cd44d6e68ce8a581a7ee1", "fields": {"departement": "75", "stop_lat": 48.89115417103819, "code_postal": "75117", "stop_lon": 2.306657170286277, "coord": [48.89115417103819, 2.306657170286277], "stop_id": 3926145, "stop_desc": "FACE 76 BOULEVARD BERTHIER - 75117", "stop_name": "LES HAUTS DE MALESHERBES"}, "geometry": {"type": "Point", "coordinates": [2.306657170286277, 48.89115417103819]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bd483615fc87ca3783c575b309a702cb6206b470", "fields": {"departement": "75", "stop_lat": 48.894409250689, "code_postal": "75117", "stop_lon": 2.3143425898614485, "coord": [48.894409250689, 2.3143425898614485], "stop_id": 3926147, "stop_desc": "123 BOULEVARD BESSIERES - 75117", "stop_name": "PORTE DE CLICHY"}, "geometry": {"type": "Point", "coordinates": [2.3143425898614485, 48.894409250689]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6db6eb9abba8e8767bc92912f00a8bc1bbb4715a", "fields": {"departement": "75", "stop_lat": 48.89431908990902, "code_postal": "75117", "stop_lon": 2.3128842182340263, "coord": [48.89431908990902, 2.3128842182340263], "stop_id": 3926148, "stop_desc": "FACE 5 BOULEVARD BERTHIER - 75117", "stop_name": "PORTE DE CLICHY"}, "geometry": {"type": "Point", "coordinates": [2.3128842182340263, 48.89431908990902]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c5e01bbd1c950cf0f4836d29fc31c8aa5db2c580", "fields": {"departement": "75", "stop_lat": 48.89781732898422, "code_postal": "75118", "stop_lon": 2.329525943205834, "coord": [48.89781732898422, 2.329525943205834], "stop_id": 3926156, "stop_desc": "BOULEVARD NEY - 75118", "stop_name": "PORTE DE SAINT-OUEN - HOPITAL BICHAT"}, "geometry": {"type": "Point", "coordinates": [2.329525943205834, 48.89781732898422]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1b3ac20c683bd1191f0fb3b7986420d6b91b2f6d", "fields": {"departement": "75", "stop_lat": 48.89795236411017, "code_postal": "75118", "stop_lon": 2.3395583162084646, "coord": [48.89795236411017, 2.3395583162084646], "stop_id": 3926162, "stop_desc": "134 BOULEVARD NEY - 75118", "stop_name": "CAMILLE FLAMMARION"}, "geometry": {"type": "Point", "coordinates": [2.3395583162084646, 48.89795236411017]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7d073a2c1cd3e2616da8b9db3745a96802710ec8", "fields": {"departement": "75", "stop_lat": 48.89816784930795, "code_postal": "75118", "stop_lon": 2.3446290673307475, "coord": [48.89816784930795, 2.3446290673307475], "stop_id": 3926164, "stop_desc": "100 BOULEVARD NEY - 75118", "stop_name": "PORTE DE CLIGNANCOURT"}, "geometry": {"type": "Point", "coordinates": [2.3446290673307475, 48.89816784930795]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6bdca66316ced336559bc976b8474e2112e650bb", "fields": {"departement": "75", "stop_lat": 48.89830975990134, "code_postal": "75118", "stop_lon": 2.359691412387807, "coord": [48.89830975990134, 2.359691412387807], "stop_id": 3926167, "stop_desc": "0 BD NEY - 75118", "stop_name": "PORTE DE LA CHAPELLE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.359691412387807, 48.89830975990134]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6f9b96169770b90d0671c8443b46c9f2e68e3dac", "fields": {"departement": "75", "stop_lat": 48.878707984696156, "code_postal": "75117", "stop_lon": 2.284236266860388, "coord": [48.878707984696156, 2.284236266860388], "stop_id": 3926171, "stop_desc": "FACE 93 BOULEVARD GOUVION-SAINT-CYR - 75117", "stop_name": "PORTE MAILLOT - PALAIS DES CONGRES"}, "geometry": {"type": "Point", "coordinates": [2.284236266860388, 48.878707984696156]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cb43fced0d856387372e13eaa76108cab86acba9", "fields": {"departement": "75", "stop_lat": 48.82720827909143, "code_postal": "75114", "stop_lon": 2.3049933237270577, "coord": [48.82720827909143, 2.3049933237270577], "stop_id": 3926176, "stop_desc": "1 PLACE DE LA PORTE DE VANVES - 75114", "stop_name": "PORTE DE VANVES."}, "geometry": {"type": "Point", "coordinates": [2.3049933237270577, 48.82720827909143]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a75e48ec699c997f0bda8ab25ea81091ed0109ef", "fields": {"departement": "75", "stop_lat": 48.83829156750215, "code_postal": "75115", "stop_lon": 2.311426467123905, "coord": [48.83829156750215, 2.311426467123905], "stop_id": 3926181, "stop_desc": "93 RUE FALGUIERE - 75115", "stop_name": "INSTITUT PASTEUR"}, "geometry": {"type": "Point", "coordinates": [2.311426467123905, 48.83829156750215]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "da1962629b191aa7543b7497712e9e22f1cf6359", "fields": {"departement": "75", "stop_lat": 48.84914202919279, "code_postal": "75106", "stop_lon": 2.3290293232080557, "coord": [48.84914202919279, 2.3290293232080557], "stop_id": 3926193, "stop_desc": "97-99 RUE DE RENNES - 75106", "stop_name": "RENNES - D'ASSAS"}, "geometry": {"type": "Point", "coordinates": [2.3290293232080557, 48.84914202919279]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "43b843a6d86d0848a89c1728690140dba5b1e178", "fields": {"departement": "75", "stop_lat": 48.860772008011736, "code_postal": "75101", "stop_lon": 2.333508852548907, "coord": [48.860772008011736, 2.333508852548907], "stop_id": 3926202, "stop_desc": "PLACE DU CARROUSEL - 75101", "stop_name": "MUSEE DU LOUVRE"}, "geometry": {"type": "Point", "coordinates": [2.333508852548907, 48.860772008011736]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e40db7cde78f92a49501695e4f5f3c2ea99b9ead", "fields": {"departement": "75", "stop_lat": 48.86427713063281, "code_postal": "75101", "stop_lon": 2.335170497725097, "coord": [48.86427713063281, 2.335170497725097], "stop_id": 3926203, "stop_desc": "6 AVENUE DE L'OPERA - 75101", "stop_name": "PALAIS ROYAL - COMEDIE FRANCAISE"}, "geometry": {"type": "Point", "coordinates": [2.335170497725097, 48.86427713063281]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d0e1699f206f30c17cff34fd7ea7639624c24ca7", "fields": {"departement": "75", "stop_lat": 48.866236360134835, "code_postal": "75101", "stop_lon": 2.3343530611372842, "coord": [48.866236360134835, 2.3343530611372842], "stop_id": 3926205, "stop_desc": "20 AVENUE DE L'OPERA - 75101", "stop_name": "PYRAMIDES"}, "geometry": {"type": "Point", "coordinates": [2.3343530611372842, 48.866236360134835]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fabfcf84dab02ffbc07dc21b132c5f14f7250a75", "fields": {"departement": "75", "stop_lat": 48.87829652117301, "code_postal": "75108", "stop_lon": 2.322974842811343, "coord": [48.87829652117301, 2.322974842811343], "stop_id": 3926218, "stop_desc": "24 RUE DE VIENNE - 75108", "stop_name": "EUROPE"}, "geometry": {"type": "Point", "coordinates": [2.322974842811343, 48.87829652117301]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b35757089179be60a076d4a23f7112b0edbe5e65", "fields": {"departement": "75", "stop_lat": 48.88280850473842, "code_postal": "75108", "stop_lon": 2.3266120054743964, "coord": [48.88280850473842, 2.3266120054743964], "stop_id": 3926220, "stop_desc": "FACE 45 RUE DE SAINT PETERSBOURG - 75108", "stop_name": "PLACE DE CLICHY"}, "geometry": {"type": "Point", "coordinates": [2.3266120054743964, 48.88280850473842]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fd40af5f172c2103e20e4a500e20252b4fd8ef47", "fields": {"departement": "75", "stop_lat": 48.88697896081629, "code_postal": "75118", "stop_lon": 2.3325802496996455, "coord": [48.88697896081629, 2.3325802496996455], "stop_id": 3926223, "stop_desc": "2 RUE DAMREMONT - 75118", "stop_name": "DAMREMONT - CAULAINCOURT"}, "geometry": {"type": "Point", "coordinates": [2.3325802496996455, 48.88697896081629]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dbd2d39ef29fcb61fa7eb5457fa385fed44ee537", "fields": {"departement": "75", "stop_lat": 48.88694300041068, "code_postal": "75118", "stop_lon": 2.3322940633943956, "coord": [48.88694300041068, 2.3322940633943956], "stop_id": 3926224, "stop_desc": "RUE JOSEPH DE MAISTRE - 75118", "stop_name": "DAMREMONT - CAULAINCOURT"}, "geometry": {"type": "Point", "coordinates": [2.3322940633943956, 48.88694300041068]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f0257b68c4af5794cf7b9d72d0280620096e7ff4", "fields": {"departement": "75", "stop_lat": 48.89392614472472, "code_postal": "75118", "stop_lon": 2.336709485973613, "coord": [48.89392614472472, 2.336709485973613], "stop_id": 3926230, "stop_desc": "108 RUE DAMREMONT - 75118", "stop_name": "DAMREMONT - ORDENER"}, "geometry": {"type": "Point", "coordinates": [2.336709485973613, 48.89392614472472]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bb74d98d0bee09c38dfe835998082c60e49a1817", "fields": {"departement": "75", "stop_lat": 48.89548092204695, "code_postal": "75118", "stop_lon": 2.337827155798868, "coord": [48.89548092204695, 2.337827155798868], "stop_id": 3926232, "stop_desc": "134 RUE DAMREMONT - 75118", "stop_name": "DAMREMONT - CHAMPIONNET"}, "geometry": {"type": "Point", "coordinates": [2.337827155798868, 48.89548092204695]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "82ae15ae3c2b0e628b3c1332b29db8fe4843b8b2", "fields": {"departement": "75", "stop_lat": 48.89835680702863, "code_postal": "75118", "stop_lon": 2.337104740639638, "coord": [48.89835680702863, 2.337104740639638], "stop_id": 3926236, "stop_desc": "6-8 AVENUE DE LA PORTE DE MONTMARTRE - 75118", "stop_name": "PORTE DE MONTMARTRE - BOULEVARD NEY"}, "geometry": {"type": "Point", "coordinates": [2.337104740639638, 48.89835680702863]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b8fb2a346b2dd1b7c7b7de5f5614cbbf72a4f558", "fields": {"departement": "75", "stop_lat": 48.90051369018747, "code_postal": "75118", "stop_lon": 2.3348009868294834, "coord": [48.90051369018747, 2.3348009868294834], "stop_id": 3926238, "stop_desc": "FACE 16 R GERARD DE NERVAL - 75118", "stop_name": "PORTE DE MONTMARTRE"}, "geometry": {"type": "Point", "coordinates": [2.3348009868294834, 48.90051369018747]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c1c3aed3cb553aa5dc3a1ce0d179263c61f26523", "fields": {"departement": "75", "stop_lat": 48.900387864095684, "code_postal": "75118", "stop_lon": 2.3345010973739555, "coord": [48.900387864095684, 2.3345010973739555], "stop_id": 3926239, "stop_desc": "1 R LOUIS PASTEUR VALLERY-RADOT - 75118", "stop_name": "PORTE DE MONTMARTRE"}, "geometry": {"type": "Point", "coordinates": [2.3345010973739555, 48.900387864095684]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "faf25a51738a037afe7a7190046ca7302579ab61", "fields": {"departement": "75", "stop_lat": 48.87730831551477, "code_postal": "75108", "stop_lon": 2.326776640951808, "coord": [48.87730831551477, 2.326776640951808], "stop_id": 3926243, "stop_desc": "17 BIS RUE D'AMSTERDAM - 75108", "stop_name": "GARE SAINT-LAZARE - BUDAPEST"}, "geometry": {"type": "Point", "coordinates": [2.326776640951808, 48.87730831551477]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3382734338f2e10fe01661f814e87cd90a0c2b6c", "fields": {"departement": "75", "stop_lat": 48.85299263208113, "code_postal": "75120", "stop_lon": 2.4117242226892044, "coord": [48.85299263208113, 2.4117242226892044], "stop_id": 3926257, "stop_desc": "R CHARLES ET ROBERT - 75120", "stop_name": "PORTE DE MONTREUIL"}, "geometry": {"type": "Point", "coordinates": [2.4117242226892044, 48.85299263208113]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "986619da123e8f0de43e711825e74738570b24fb", "fields": {"departement": "93", "stop_lat": 48.849549833034985, "code_postal": "93048", "stop_lon": 2.4257324661373545, "coord": [48.849549833034985, 2.4257324661373545], "stop_id": 3926266, "stop_desc": "100 RUE ROBESPIERRE - 93048", "stop_name": "LES LAITIERES"}, "geometry": {"type": "Point", "coordinates": [2.4257324661373545, 48.849549833034985]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "460ba190a73fa77949e1677ac5c5c1aea571b158", "fields": {"departement": "75", "stop_lat": 48.863392151409975, "code_postal": "75120", "stop_lon": 2.4099955551833077, "coord": [48.863392151409975, 2.4099955551833077], "stop_id": 3926272, "stop_desc": "FACE 3-5 RUE LOUIS GANNE - 75120", "stop_name": "PORTE DE BAGNOLET - LOUIS GANNE"}, "geometry": {"type": "Point", "coordinates": [2.4099955551833077, 48.863392151409975]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f165e2a3f0c72e4e2e4b75f21b701e3c2100664d", "fields": {"departement": "75", "stop_lat": 48.86074934871936, "code_postal": "75120", "stop_lon": 2.410822741172568, "coord": [48.86074934871936, 2.410822741172568], "stop_id": 3926275, "stop_desc": "9 R SERPOLLET - 75120", "stop_name": "SERPOLLET"}, "geometry": {"type": "Point", "coordinates": [2.410822741172568, 48.86074934871936]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "11afde960026d0878e97701cebb1b5a7ed4bc3fa", "fields": {"departement": "75", "stop_lat": 48.85675851464763, "code_postal": "75120", "stop_lon": 2.411498087550529, "coord": [48.85675851464763, 2.411498087550529], "stop_id": 3926276, "stop_desc": "25 R DES DOCTEURS DEJERINE - 75120", "stop_name": "STADE DEJERINE"}, "geometry": {"type": "Point", "coordinates": [2.411498087550529, 48.85675851464763]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d01f7d8a42021efe23f7758cc87e80d4b382f6be", "fields": {"departement": "75", "stop_lat": 48.85375674402973, "code_postal": "75120", "stop_lon": 2.4114393132415595, "coord": [48.85375674402973, 2.4114393132415595], "stop_id": 3926277, "stop_desc": "5 AV DE LA PORTE DE MONTREUIL - 75120", "stop_name": "PLACE DE LA PORTE DE MONTREUIL"}, "geometry": {"type": "Point", "coordinates": [2.4114393132415595, 48.85375674402973]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "991382cbad588fe294719672390a5780106a7042", "fields": {"departement": "75", "stop_lat": 48.84831065096546, "code_postal": "75112", "stop_lon": 2.3945861464375446, "coord": [48.84831065096546, 2.3945861464375446], "stop_id": 3926288, "stop_desc": "PLACE DE LA NATION - 75112", "stop_name": "DIDEROT - NATION"}, "geometry": {"type": "Point", "coordinates": [2.3945861464375446, 48.84831065096546]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "487b8790e9b04e9c1ecdfc794294f4feda2ce794", "fields": {"departement": "75", "stop_lat": 48.84752295573372, "code_postal": "75112", "stop_lon": 2.387490443468507, "coord": [48.84752295573372, 2.387490443468507], "stop_id": 3926292, "stop_desc": "81 BOULEVARD DIDEROT - 75112", "stop_name": "REUILLY - DIDEROT"}, "geometry": {"type": "Point", "coordinates": [2.387490443468507, 48.84752295573372]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d662561b92bbd3edde2b7489846fb694ca2bd895", "fields": {"departement": "75", "stop_lat": 48.84671618720462, "code_postal": "75112", "stop_lon": 2.3822196865655947, "coord": [48.84671618720462, 2.3822196865655947], "stop_id": 3926295, "stop_desc": "74 BOULEVARD DIDEROT - 75112", "stop_name": "HOPITAL SAINT-ANTOINE"}, "geometry": {"type": "Point", "coordinates": [2.3822196865655947, 48.84671618720462]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f6280a2a453e91d60e67e07623b30d3d5a70a82f", "fields": {"departement": "75", "stop_lat": 48.84613389980741, "code_postal": "75112", "stop_lon": 2.376867561462037, "coord": [48.84613389980741, 2.376867561462037], "stop_id": 3926297, "stop_desc": "42 BOULEVARD DIDEROT - 75112", "stop_name": "DAUMESNIL - DIDEROT"}, "geometry": {"type": "Point", "coordinates": [2.376867561462037, 48.84613389980741]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fe24fd7ceaaa385ff33bc2a6077c21512129fb59", "fields": {"departement": "75", "stop_lat": 48.83629716139105, "code_postal": "75113", "stop_lon": 2.358888551995435, "coord": [48.83629716139105, 2.358888551995435], "stop_id": 3926304, "stop_desc": "100-102 BOULEVARD DE L'HOPITAL - 75113", "stop_name": "JENNER - JEANNE D'ARC"}, "geometry": {"type": "Point", "coordinates": [2.358888551995435, 48.83629716139105]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c635b24786522e603154c0eeeb2764ca76b68fd5", "fields": {"departement": "75", "stop_lat": 48.82349070980102, "code_postal": "75113", "stop_lon": 2.353057528930901, "coord": [48.82349070980102, 2.353057528930901], "stop_id": 3926314, "stop_desc": "FACE 22 RUE DES PEUPLIERS - 75113", "stop_name": "ABBE GEORGES HENOCQUE"}, "geometry": {"type": "Point", "coordinates": [2.353057528930901, 48.82349070980102]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d59054d4583fc80f70039eb4f50f7457987e8f1e", "fields": {"departement": "94", "stop_lat": 48.81567175666497, "code_postal": "94037", "stop_lon": 2.350183572948421, "coord": [48.81567175666497, 2.350183572948421], "stop_id": 3926319, "stop_desc": "FACE 35 RUE CHARLES FREROT - 94037", "stop_name": "MAIRIE DE GENTILLY"}, "geometry": {"type": "Point", "coordinates": [2.350183572948421, 48.81567175666497]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d7431b23267f041c418b153ab8feb86a858fde38", "fields": {"departement": "94", "stop_lat": 48.8140810065842, "code_postal": "94037", "stop_lon": 2.3494346847488, "coord": [48.8140810065842, 2.3494346847488], "stop_id": 3926334, "stop_desc": "41 AVENUE RASPAIL - 94037", "stop_name": "RASPAIL - JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.3494346847488, 48.8140810065842]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "171a9595ba4a7251e6b1022c6e5be56b1548d964", "fields": {"departement": "75", "stop_lat": 48.858057701289326, "code_postal": "75101", "stop_lon": 2.343560965223396, "coord": [48.858057701289326, 2.343560965223396], "stop_id": 3926386, "stop_desc": "FACE 22 QUAI DE LA MEGISSERIE - 75101", "stop_name": "PONT NEUF - QUAI DU LOUVRE"}, "geometry": {"type": "Point", "coordinates": [2.343560965223396, 48.858057701289326]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f822868db3977844321b6e7e5d699eb3f5cba8f6", "fields": {"departement": "75", "stop_lat": 48.868138979203536, "code_postal": "75110", "stop_lon": 2.3627844305669687, "coord": [48.868138979203536, 2.3627844305669687], "stop_id": 3926396, "stop_desc": "FACE 16 PLACE DE LA REPUBLIQUE - 75110", "stop_name": "REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.3627844305669687, 48.868138979203536]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7a5e1568df42a359caccd351d4e19e0bb8c01908", "fields": {"departement": "75", "stop_lat": 48.86897362596347, "code_postal": "75110", "stop_lon": 2.36778461159907, "coord": [48.86897362596347, 2.36778461159907], "stop_id": 3926399, "stop_desc": "31/33 RUE DU FAUBOURG DU TEMPLE - 75110", "stop_name": "JULES FERRY"}, "geometry": {"type": "Point", "coordinates": [2.36778461159907, 48.86897362596347]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "77d0dba1946621faaa8c9049396dfeb97fabc390", "fields": {"departement": "75", "stop_lat": 48.87220946918994, "code_postal": "75110", "stop_lon": 2.3661652370246844, "coord": [48.87220946918994, 2.3661652370246844], "stop_id": 3926402, "stop_desc": "14 AVENUE RICHERAND - 75110", "stop_name": "AVENUE RICHERAND"}, "geometry": {"type": "Point", "coordinates": [2.3661652370246844, 48.87220946918994]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "20821c46f7eace473e23182d90277fa063f706d1", "fields": {"departement": "77", "stop_lat": 48.83882479616967, "code_postal": "77258", "stop_lon": 2.633418310732026, "coord": [48.83882479616967, 2.633418310732026], "stop_id": 3677877, "stop_desc": "RUE JEHAN SCARRON - 77258", "stop_name": "LOGNES RER"}, "geometry": {"type": "Point", "coordinates": [2.633418310732026, 48.83882479616967]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7d3faae18f9d82a0a99770ab30dd8b55f61ea71a", "fields": {"departement": "77", "stop_lat": 48.806039430971204, "code_postal": "77373", "stop_lon": 2.617787416790813, "coord": [48.806039430971204, 2.617787416790813], "stop_id": 3681408, "stop_desc": "R DE L'EST - 77373", "stop_name": "GARE D'EMERAINVILLE-PONTAULT-COMBAULT RER"}, "geometry": {"type": "Point", "coordinates": [2.617787416790813, 48.806039430971204]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1acdbd3aa09e4a8d70375614c09c0932eed7ce77", "fields": {"departement": "77", "stop_lat": 48.81829306590341, "code_postal": "77146", "stop_lon": 2.642052480368725, "coord": [48.81829306590341, 2.642052480368725], "stop_id": 3681425, "stop_desc": "FACE 33 R DES VIEILLES VIGNES - 77146", "stop_name": "LES VIEILLES VIGNES"}, "geometry": {"type": "Point", "coordinates": [2.642052480368725, 48.81829306590341]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "006f896afd0a8a492c34d3d3521c6b02ce258780", "fields": {"departement": "95", "stop_lat": 49.00765911021298, "code_postal": "95527", "stop_lon": 2.5127707390788343, "coord": [49.00765911021298, 2.5127707390788343], "stop_id": 3678818, "stop_desc": "ROUTE DE L'ARPENTEUR - 95527", "stop_name": "ENTRETIEN SUD"}, "geometry": {"type": "Point", "coordinates": [2.5127707390788343, 49.00765911021298]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cd2068d06d6f8e52aed51ac5f98534a85158b106", "fields": {"departement": "77", "stop_lat": 48.82970745648222, "code_postal": "77146", "stop_lon": 2.649007777522882, "coord": [48.82970745648222, 2.649007777522882], "stop_id": 3681441, "stop_desc": "5 ALL DES PLATANES - 77146", "stop_name": "LES PLATANES"}, "geometry": {"type": "Point", "coordinates": [2.649007777522882, 48.82970745648222]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ac8d895bb2edd57864b67d53bcfd289fd130d08f", "fields": {"departement": "77", "stop_lat": 48.82048104867452, "code_postal": "77146", "stop_lon": 2.64401166333337, "coord": [48.82048104867452, 2.64401166333337], "stop_id": 3681426, "stop_desc": "R DES VIEILLES VIGNES - 77146", "stop_name": "CARAVELLE"}, "geometry": {"type": "Point", "coordinates": [2.64401166333337, 48.82048104867452]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "985ea902f4ae212351da8616090300f897f24348", "fields": {"departement": "95", "stop_lat": 49.00218945953258, "code_postal": "95527", "stop_lon": 2.528363818569231, "coord": [49.00218945953258, 2.528363818569231], "stop_id": 3678823, "stop_desc": "RUE DES 2 CEDRES - 95527", "stop_name": "LES 2 CEDRES"}, "geometry": {"type": "Point", "coordinates": [2.528363818569231, 49.00218945953258]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b58d2dedd406b0c9c799eccde51553f10ff47712", "fields": {"departement": "77", "stop_lat": 48.83906651295855, "code_postal": "77468", "stop_lon": 2.654714491802414, "coord": [48.83906651295855, 2.654714491802414], "stop_id": 3681448, "stop_desc": "AV JEAN MOULIN - 77468", "stop_name": "TORCY RER"}, "geometry": {"type": "Point", "coordinates": [2.654714491802414, 48.83906651295855]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "acd26965c228b7df3f507d14af6dee3862ba6391", "fields": {"departement": "77", "stop_lat": 48.8169512309423, "code_postal": "77146", "stop_lon": 2.6287614410842224, "coord": [48.8169512309423, 2.6287614410842224], "stop_id": 3681416, "stop_desc": "R DE BEAUBOURG - 77146", "stop_name": "BEAUBOURG"}, "geometry": {"type": "Point", "coordinates": [2.6287614410842224, 48.8169512309423]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b95e67038a39d05eb62ff209e7d82f3d57b41ac5", "fields": {"departement": "77", "stop_lat": 48.8100583503771, "code_postal": "77169", "stop_lon": 2.621007009649533, "coord": [48.8100583503771, 2.621007009649533], "stop_id": 3681411, "stop_desc": "RUE D'EMERY - 77169", "stop_name": "LE PARC"}, "geometry": {"type": "Point", "coordinates": [2.621007009649533, 48.8100583503771]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9d7716e6d732bfae04c885d9bd27c0d2a8938c0a", "fields": {"departement": "77", "stop_lat": 48.81003972569495, "code_postal": "77169", "stop_lon": 2.6212790673199966, "coord": [48.81003972569495, 2.6212790673199966], "stop_id": 3681410, "stop_desc": "R D'EMERY - 77169", "stop_name": "LE PARC"}, "geometry": {"type": "Point", "coordinates": [2.6212790673199966, 48.81003972569495]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b5d9feada7f4b3d84a4f79bc54e02840ce7adb42", "fields": {"departement": "77", "stop_lat": 48.84220830914811, "code_postal": "77468", "stop_lon": 2.6561634428593592, "coord": [48.84220830914811, 2.6561634428593592], "stop_id": 3681452, "stop_desc": "AVENUE DE LINGENFELD - 77468", "stop_name": "SALVADOR ALLENDE"}, "geometry": {"type": "Point", "coordinates": [2.6561634428593592, 48.84220830914811]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "94155a732029bd1c066498667e67c6b8d2137f83", "fields": {"departement": "77", "stop_lat": 48.84706316156763, "code_postal": "77468", "stop_lon": 2.652203301096435, "coord": [48.84706316156763, 2.652203301096435], "stop_id": 3681455, "stop_desc": "AVENUE DE LINGENFELD - 77468", "stop_name": "JACQUES PREVERT"}, "geometry": {"type": "Point", "coordinates": [2.652203301096435, 48.84706316156763]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b46090b4388c0dad3516983170adc06efa2311e1", "fields": {"departement": "77", "stop_lat": 48.85459760854207, "code_postal": "77468", "stop_lon": 2.637158448222115, "coord": [48.85459760854207, 2.637158448222115], "stop_id": 3681474, "stop_desc": "R JEAN JAURES - 77468", "stop_name": "LA FOSSE AUX LOUPS"}, "geometry": {"type": "Point", "coordinates": [2.637158448222115, 48.85459760854207]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7d9099b2d030c21c5fa7c2bc2af032ab2225b46a", "fields": {"departement": "77", "stop_lat": 48.83062889433793, "code_postal": "77146", "stop_lon": 2.657399164194788, "coord": [48.83062889433793, 2.657399164194788], "stop_id": 3681485, "stop_desc": "AV JEAN MOULIN - 77146", "stop_name": "ETANG DE CROISSY"}, "geometry": {"type": "Point", "coordinates": [2.657399164194788, 48.83062889433793]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d4e563532ab1cbceaa0cd83e853c7cd2730f3e02", "fields": {"departement": "77", "stop_lat": 48.85104795592041, "code_postal": "77337", "stop_lon": 2.626079508796173, "coord": [48.85104795592041, 2.626079508796173], "stop_id": 3681498, "stop_desc": "COURS DE L'ARCHE GUEDON - 77337", "stop_name": "JULES FERRY"}, "geometry": {"type": "Point", "coordinates": [2.626079508796173, 48.85104795592041]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fe48222f7f65eaadd0a68eda82d9d7acc5c5f890", "fields": {"departement": "77", "stop_lat": 48.869290899856864, "code_postal": "77479", "stop_lon": 2.6411806353748193, "coord": [48.869290899856864, 2.6411806353748193], "stop_id": 3681482, "stop_desc": "4 BD DE LA MARNE - 77479", "stop_name": "REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.6411806353748193, 48.869290899856864]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d007a74188cfdd5164df40d25027f41a32f03bd8", "fields": {"departement": "77", "stop_lat": 48.85010804193541, "code_postal": "77468", "stop_lon": 2.646066225456977, "coord": [48.85010804193541, 2.646066225456977], "stop_id": 3681467, "stop_desc": "82 RUE DE PARIS - 77468", "stop_name": "LES TILLEULS"}, "geometry": {"type": "Point", "coordinates": [2.646066225456977, 48.85010804193541]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "00c2de0d715316e635f7adde03651a8af6dbec7c", "fields": {"departement": "77", "stop_lat": 48.854913121659834, "code_postal": "77468", "stop_lon": 2.6403336762724474, "coord": [48.854913121659834, 2.6403336762724474], "stop_id": 3681476, "stop_desc": "R JEAN JAURES - 77468", "stop_name": "LA MALTOURNEE"}, "geometry": {"type": "Point", "coordinates": [2.6403336762724474, 48.854913121659834]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "89d62f6f0019a6a35fc3bb097ad8f4af3519f54e", "fields": {"departement": "77", "stop_lat": 48.85534399397671, "code_postal": "77083", "stop_lon": 2.5819342599216286, "coord": [48.85534399397671, 2.5819342599216286], "stop_id": 3681652, "stop_desc": "FACE 51 BOULEVARD DE LA REPUBLIQUE - 77083", "stop_name": "ROND-POINT DES PYRAMIDES"}, "geometry": {"type": "Point", "coordinates": [2.5819342599216286, 48.85534399397671]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1cbe24282405ad42208e3336f7e446f3f1157a5c", "fields": {"departement": "77", "stop_lat": 48.85042731720968, "code_postal": "77083", "stop_lon": 2.5821834380995026, "coord": [48.85042731720968, 2.5821834380995026], "stop_id": 3681625, "stop_desc": "RUE ALBERT SCHWEITZER - 77083", "stop_name": "FLANDRES-DUNKERQUE 1940"}, "geometry": {"type": "Point", "coordinates": [2.5821834380995026, 48.85042731720968]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bb475a620626658d430e11aa3d688f10f37bb2a3", "fields": {"departement": "77", "stop_lat": 48.83812725871016, "code_postal": "77083", "stop_lon": 2.593140166185643, "coord": [48.83812725871016, 2.593140166185643], "stop_id": 3681666, "stop_desc": "RUE GALILEE - 77083", "stop_name": "BOIS DE L'ETANG-UNIVERSITE"}, "geometry": {"type": "Point", "coordinates": [2.593140166185643, 48.83812725871016]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bc1e3880dbf5efe9316d26bceba969fca63b744f", "fields": {"departement": "77", "stop_lat": 48.84992692242795, "code_postal": "77083", "stop_lon": 2.585122653047492, "coord": [48.84992692242795, 2.585122653047492], "stop_id": 3681656, "stop_desc": "AVENUE DES PYRAMIDES - 77083", "stop_name": "GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.585122653047492, 48.84992692242795]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "19f010a8178b7b31da32817003ef3287317d3765", "fields": {"departement": "77", "stop_lat": 48.836192481478214, "code_postal": "77083", "stop_lon": 2.5858058544107116, "coord": [48.836192481478214, 2.5858058544107116], "stop_id": 3681664, "stop_desc": "10 RUE ALBERT EINSTEIN - 77083", "stop_name": "ESPACE DESCARTES"}, "geometry": {"type": "Point", "coordinates": [2.5858058544107116, 48.836192481478214]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c1b101b8fe286158554c539e5104d5d275d12156", "fields": {"departement": "77", "stop_lat": 48.851145436096516, "code_postal": "77083", "stop_lon": 2.578210158850117, "coord": [48.851145436096516, 2.578210158850117], "stop_id": 3681624, "stop_desc": "RUE ALBERT SCHWEITZER - 77083", "stop_name": "XAVIER BICHAT"}, "geometry": {"type": "Point", "coordinates": [2.578210158850117, 48.851145436096516]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "526824b78613b4c37446be2aea38c0211bde2984", "fields": {"departement": "77", "stop_lat": 48.851145436096516, "code_postal": "77083", "stop_lon": 2.578210158850117, "coord": [48.851145436096516, 2.578210158850117], "stop_id": 3681654, "stop_desc": "RUE ALBERT SCHWEITZER - 77083", "stop_name": "XAVIER BICHAT"}, "geometry": {"type": "Point", "coordinates": [2.578210158850117, 48.851145436096516]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8fbb1194736d71f54090b46af372ee0da70f8055", "fields": {"departement": "77", "stop_lat": 48.842895365428475, "code_postal": "77337", "stop_lon": 2.615113613794591, "coord": [48.842895365428475, 2.615113613794591], "stop_id": 3681643, "stop_desc": "ALL JEAN PAUL SARTRE - 77337", "stop_name": "NOISIEL RER"}, "geometry": {"type": "Point", "coordinates": [2.615113613794591, 48.842895365428475]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "583576627761e89a89593b3a5f0f764ca45ec08e", "fields": {"departement": "77", "stop_lat": 48.838512994627884, "code_postal": "77083", "stop_lon": 2.584986430503156, "coord": [48.838512994627884, 2.584986430503156], "stop_id": 3681633, "stop_desc": "AVENUE AMPERE - 77083", "stop_name": "NOBEL"}, "geometry": {"type": "Point", "coordinates": [2.584986430503156, 48.838512994627884]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "379c956c7a1fc6dbefc95464b61399eceaf501d4", "fields": {"departement": "92", "stop_lat": 48.84564886077318, "code_postal": "92012", "stop_lon": 2.2369365558260963, "coord": [48.84564886077318, 2.2369365558260963], "stop_id": 3681844, "stop_desc": "2 BOULEVARD JEAN JAURES - 92012", "stop_name": "EGLISE DE BOULOGNE-BILLANCOURT"}, "geometry": {"type": "Point", "coordinates": [2.2369365558260963, 48.84564886077318]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "85e9b687bea844a9f62ca1386afbb4c3432909d3", "fields": {"departement": "92", "stop_lat": 48.81796908100965, "code_postal": "92040", "stop_lon": 2.2510763751899763, "coord": [48.81796908100965, 2.2510763751899763], "stop_id": 3681835, "stop_desc": "143 AVENUE DE VERDUN - 92040", "stop_name": "VERDUN - JEAN PIERRE TIMBAUD"}, "geometry": {"type": "Point", "coordinates": [2.2510763751899763, 48.81796908100965]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b016009292904e1ee71f1fa826d9bb1102558c2a", "fields": {"departement": "92", "stop_lat": 48.825660155160065, "code_postal": "92012", "stop_lon": 2.247837562558885, "coord": [48.825660155160065, 2.247837562558885], "stop_id": 3681853, "stop_desc": "278 BOULEVARD JEAN JAURES - 92012", "stop_name": "PONT DE BILLANCOURT"}, "geometry": {"type": "Point", "coordinates": [2.247837562558885, 48.825660155160065]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d24addf9dfa119fa5f450186b734c70f1fb782b0", "fields": {"departement": "92", "stop_lat": 48.845722217359075, "code_postal": "92012", "stop_lon": 2.250213236692777, "coord": [48.845722217359075, 2.250213236692777], "stop_id": 3681828, "stop_desc": "BOULEVARD D'AUTEUIL - 92012", "stop_name": "STADE ROLAND GARROS"}, "geometry": {"type": "Point", "coordinates": [2.250213236692777, 48.845722217359075]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b3aa3dbdb485162ddcee4b59cd17069c08eb292f", "fields": {"departement": "92", "stop_lat": 48.825989252020015, "code_postal": "92040", "stop_lon": 2.2699021664711476, "coord": [48.825989252020015, 2.2699021664711476], "stop_id": 3681838, "stop_desc": "RUE DU GOUVERNEUR GENERAL EBOUE - 92040", "stop_name": "MEDIATHEQUE"}, "geometry": {"type": "Point", "coordinates": [2.2699021664711476, 48.825989252020015]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2d5acb8f060501e4e5259944a6f1f03ddc8334dd", "fields": {"departement": "92", "stop_lat": 48.846636291936385, "code_postal": "92012", "stop_lon": 2.2466575372989284, "coord": [48.846636291936385, 2.2466575372989284], "stop_id": 3681826, "stop_desc": "FACE 39 BOULEVARD D'AUTEUIL - 92012", "stop_name": "RUE DES PINS"}, "geometry": {"type": "Point", "coordinates": [2.2466575372989284, 48.846636291936385]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8f0d983b8e9a2841e3ad1f2e116fa2d3826c9b6c", "fields": {"departement": "92", "stop_lat": 48.837027668772585, "code_postal": "92012", "stop_lon": 2.245435352476561, "coord": [48.837027668772585, 2.245435352476561], "stop_id": 3681849, "stop_desc": "84 AVENUE VICTOR HUGO - 92012", "stop_name": "GALLIENI"}, "geometry": {"type": "Point", "coordinates": [2.245435352476561, 48.837027668772585]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "36a44b153b82301b3b8e958e090e74558f715c04", "fields": {"departement": "92", "stop_lat": 48.830259842735266, "code_postal": "92012", "stop_lon": 2.24522951639486, "coord": [48.830259842735266, 2.24522951639486], "stop_id": 3681851, "stop_desc": "FACE 227 BOULEVARD JEAN JAURES - 92012", "stop_name": "DOME"}, "geometry": {"type": "Point", "coordinates": [2.24522951639486, 48.830259842735266]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4d3a00c985c8f09d4f00e8b0526ee1484869a540", "fields": {"departement": "92", "stop_lat": 48.819462162874615, "code_postal": "92046", "stop_lon": 2.310033969847727, "coord": [48.819462162874615, 2.310033969847727], "stop_id": 3682017, "stop_desc": "62 AVENUE PIERRE BROSSOLETTE - 92046", "stop_name": "PIERRE BROSSOLETTE - GABRIEL PERI"}, "geometry": {"type": "Point", "coordinates": [2.310033969847727, 48.819462162874615]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1ade91c4417ad136e82b34a790de3836a4312273", "fields": {"departement": "93", "stop_lat": 48.90695328855752, "code_postal": "93010", "stop_lon": 2.487003347246266, "coord": [48.90695328855752, 2.487003347246266], "stop_id": 3682037, "stop_desc": "177 AVENUE GALLIENI - 93010", "stop_name": "PASTEUR - HOPITAL JEAN VERDIER"}, "geometry": {"type": "Point", "coordinates": [2.487003347246266, 48.90695328855752]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "24902ad9f2bee51a9ec66b5a2ef5fb82007ed56a", "fields": {"departement": "93", "stop_lat": 48.9467843516363, "code_postal": "93071", "stop_lon": 2.524489086154308, "coord": [48.9467843516363, 2.524489086154308], "stop_id": 3682070, "stop_desc": "AVENUE DUMONT D'URVILLE - 93071", "stop_name": "SEVRAN - BEAUDOTTES RER"}, "geometry": {"type": "Point", "coordinates": [2.524489086154308, 48.9467843516363]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3f7199a741a5ce7c089ee390c9bdb90930147ab9", "fields": {"departement": "93", "stop_lat": 48.89447302655296, "code_postal": "93055", "stop_lon": 2.419389401798118, "coord": [48.89447302655296, 2.419389401798118], "stop_id": 3682023, "stop_desc": "207 AVENUE JEAN LOLIVE - 93055", "stop_name": "PIERRE BROSSOLETTE"}, "geometry": {"type": "Point", "coordinates": [2.419389401798118, 48.89447302655296]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8e60b792c7cab804bca7dfdef5e83e4db55bbb78", "fields": {"departement": "93", "stop_lat": 48.90397868952098, "code_postal": "93010", "stop_lon": 2.4718216924159715, "coord": [48.90397868952098, 2.4718216924159715], "stop_id": 3682031, "stop_desc": "AVENUE DU GENERAL GALLIENI - 93010", "stop_name": "AVENUE DE ROSNY"}, "geometry": {"type": "Point", "coordinates": [2.4718216924159715, 48.90397868952098]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0531a198126362bfa5f704068930180df5bcff5f", "fields": {"departement": "93", "stop_lat": 48.932807035186705, "code_postal": "93071", "stop_lon": 2.5372739629987113, "coord": [48.932807035186705, 2.5372739629987113], "stop_id": 3682057, "stop_desc": "FACE 38 AVENUE DE LIVRY - 93071", "stop_name": "LOUIS MENARD"}, "geometry": {"type": "Point", "coordinates": [2.5372739629987113, 48.932807035186705]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4e0f017264e830e279c88345d7f4873b64367c2d", "fields": {"departement": "93", "stop_lat": 48.929295651530516, "code_postal": "93046", "stop_lon": 2.541106673510697, "coord": [48.929295651530516, 2.541106673510697], "stop_id": 3682056, "stop_desc": "49 AVENUE JEAN-JACQUES ROUSSEAU - 93046", "stop_name": "MAUROUARD"}, "geometry": {"type": "Point", "coordinates": [2.541106673510697, 48.929295651530516]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1263c817dd5a49fef03c65184c7eb600616a08f8", "fields": {"departement": "93", "stop_lat": 48.89660237322337, "code_postal": "93063", "stop_lon": 2.4323009763184347, "coord": [48.89660237322337, 2.4323009763184347], "stop_id": 3682025, "stop_desc": "64 AVENUE DE METZ - 93063", "stop_name": "AVENUE DE METZ"}, "geometry": {"type": "Point", "coordinates": [2.4323009763184347, 48.89660237322337]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5533644b26870faf698c6c5cf1f83de101c3a1f7", "fields": {"departement": "93", "stop_lat": 48.91534153263659, "code_postal": "93046", "stop_lon": 2.528657012133192, "coord": [48.91534153263659, 2.528657012133192], "stop_id": 3682046, "stop_desc": "159 AVENUE ARISTIDE BRIAND - 93046", "stop_name": "GAMBETTA"}, "geometry": {"type": "Point", "coordinates": [2.528657012133192, 48.91534153263659]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5b532af9b67537dc70c5d4d45e238d3f8ab546eb", "fields": {"departement": "94", "stop_lat": 48.77976663603938, "code_postal": "94028", "stop_lon": 2.4589335139487987, "coord": [48.77976663603938, 2.4589335139487987], "stop_id": 3619770, "stop_desc": "CHEMIN DEPARTEMENTAL (VOIE RAPIDE D1 ) - 94028", "stop_name": "CRETEIL - PREFECTURE METRO"}, "geometry": {"type": "Point", "coordinates": [2.4589335139487987, 48.77976663603938]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a7b51ac09184843058d217afb242f5ccbab6292f", "fields": {"departement": "94", "stop_lat": 48.81344050424506, "code_postal": "94046", "stop_lon": 2.4216971516081163, "coord": [48.81344050424506, 2.4216971516081163], "stop_id": 3619780, "stop_desc": "7 TER AVENUE DU GENERAL DE GAULLE - 94046", "stop_name": "BOULEY-ECOLE VETERINAIRE"}, "geometry": {"type": "Point", "coordinates": [2.4216971516081163, 48.81344050424506]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d3e0b6613b7b804691e361ac59d7c97646944beb", "fields": {"departement": "94", "stop_lat": 48.80253557408905, "code_postal": "94002", "stop_lon": 2.4254754689207894, "coord": [48.80253557408905, 2.4254754689207894], "stop_id": 3619796, "stop_desc": "16 AV MALLERET JOINVILLE - 94002", "stop_name": "MAISONS-ALFORT - ALFORTVILLE RER"}, "geometry": {"type": "Point", "coordinates": [2.4254754689207894, 48.80253557408905]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a60d518c6e9eb414ab5d7143fc7e7544454c4419", "fields": {"departement": "94", "stop_lat": 48.80157523745613, "code_postal": "94081", "stop_lon": 2.4101946659664866, "coord": [48.80157523745613, 2.4101946659664866], "stop_id": 3619835, "stop_desc": "80 R EDITH CAVELL - 94081", "stop_name": "EDITH CAVELL - WALDECK ROUSSEAU"}, "geometry": {"type": "Point", "coordinates": [2.4101946659664866, 48.80157523745613]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f24c818fe90eb57a714df304cc2722540cd48528", "fields": {"departement": "94", "stop_lat": 48.81435751834528, "code_postal": "94069", "stop_lon": 2.4622535492272988, "coord": [48.81435751834528, 2.4622535492272988], "stop_id": 3619845, "stop_desc": "FACE 2 RUE MARECHAL LECLERC - 94069", "stop_name": "JOHN FITZGERALD KENNEDY"}, "geometry": {"type": "Point", "coordinates": [2.4622535492272988, 48.81435751834528]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4893fab99e26ed249414fd57b0be291367c67419", "fields": {"departement": "94", "stop_lat": 48.804220736262316, "code_postal": "94081", "stop_lon": 2.4049871449392652, "coord": [48.804220736262316, 2.4049871449392652], "stop_id": 3619783, "stop_desc": "FACE 144 AVENUE ANATOLE FRANCE - 94081", "stop_name": "PORT A L'ANGLAIS"}, "geometry": {"type": "Point", "coordinates": [2.4049871449392652, 48.804220736262316]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "85c179c18554700f2aac1f7988602bc677ab9768", "fields": {"departement": "94", "stop_lat": 48.785146435130216, "code_postal": "94028", "stop_lon": 2.4627817066444044, "coord": [48.785146435130216, 2.4627817066444044], "stop_id": 3619820, "stop_desc": "38 RUE JULIETTE SAVAR - 94028", "stop_name": "ORME AU CHAT"}, "geometry": {"type": "Point", "coordinates": [2.4627817066444044, 48.785146435130216]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5f3350c305d997b5d0414509800f5a8c8244bc45", "fields": {"departement": "94", "stop_lat": 48.801364075939986, "code_postal": "94081", "stop_lon": 2.402357534444906, "coord": [48.801364075939986, 2.402357534444906], "stop_id": 3619782, "stop_desc": "PL PIERRE SEMARD - 94081", "stop_name": "VITRY RER"}, "geometry": {"type": "Point", "coordinates": [2.402357534444906, 48.801364075939986]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "64276e95215305cd1ee356ae67f8aa8d02a75c8b", "fields": {"departement": "94", "stop_lat": 48.80136394168043, "code_postal": "94081", "stop_lon": 2.402602435355376, "coord": [48.80136394168043, 2.402602435355376], "stop_id": 3619781, "stop_desc": "PL PIERRE SEMARD - 94081", "stop_name": "VITRY RER"}, "geometry": {"type": "Point", "coordinates": [2.402602435355376, 48.80136394168043]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2502791f42cb61209b21cfcc5960e00e0b3793f2", "fields": {"departement": "94", "stop_lat": 48.778006534165975, "code_postal": "94028", "stop_lon": 2.466001136385476, "coord": [48.778006534165975, 2.466001136385476], "stop_id": 3619826, "stop_desc": "RUE RENE ARCOS - 94028", "stop_name": "RENE ARCOS"}, "geometry": {"type": "Point", "coordinates": [2.466001136385476, 48.778006534165975]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1fe2d48660fc8f5986c281e3fe25e2f2a65c1bf7", "fields": {"departement": "94", "stop_lat": 48.80141600844219, "code_postal": "94046", "stop_lon": 2.432072298956643, "coord": [48.80141600844219, 2.432072298956643], "stop_id": 3619903, "stop_desc": "FACE 5 AVENUE DE LA REPUBLIQUE - 94046", "stop_name": "MAIRIE DE MAISONS-ALFORT"}, "geometry": {"type": "Point", "coordinates": [2.432072298956643, 48.80141600844219]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c4fb8eaa663c502efd4b0de0923adfe06304e168", "fields": {"departement": "94", "stop_lat": 48.80553470940832, "code_postal": "94046", "stop_lon": 2.4401486029306723, "coord": [48.80553470940832, 2.4401486029306723], "stop_id": 3619910, "stop_desc": "89 AVENUE DE LA REPUBLIQUE - 94046", "stop_name": "REPUBLIQUE - GENERAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.4401486029306723, 48.80553470940832]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2deae31a76db4a3ff073d326980027cb3d3e30bc", "fields": {"departement": "94", "stop_lat": 48.80951255183711, "code_postal": "94046", "stop_lon": 2.453954755702369, "coord": [48.80951255183711, 2.453954755702369], "stop_id": 3619847, "stop_desc": "239-241 AVENUE DE LA REPUBLIQUE - 94046", "stop_name": "PONT DE MAISONS-ALFORT"}, "geometry": {"type": "Point", "coordinates": [2.453954755702369, 48.80951255183711]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "efd92c51a16bf992da981b159b4742e6e657fe32", "fields": {"departement": "94", "stop_lat": 48.798802197537015, "code_postal": "94028", "stop_lon": 2.4507199144659713, "coord": [48.798802197537015, 2.4507199144659713], "stop_id": 3619862, "stop_desc": "123 AVENUE DU GENERAL DE GAULLE - 94028", "stop_name": "HOPITAL HENRI MONDOR"}, "geometry": {"type": "Point", "coordinates": [2.4507199144659713, 48.798802197537015]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8613932ebc413f67dcd743f11507ae5122c75e2f", "fields": {"departement": "94", "stop_lat": 48.78023308886009, "code_postal": "94028", "stop_lon": 2.459832212743814, "coord": [48.78023308886009, 2.459832212743814], "stop_id": 3619898, "stop_desc": "RUE AMEDEO MODIGLIANI - 94028", "stop_name": "CRETEIL - PREFECTURE"}, "geometry": {"type": "Point", "coordinates": [2.459832212743814, 48.78023308886009]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fcef89f80f4f522f2315da58e2e97b3cb0159c87", "fields": {"departement": "94", "stop_lat": 48.77172295655446, "code_postal": "94028", "stop_lon": 2.466869425723614, "coord": [48.77172295655446, 2.466869425723614], "stop_id": 3619888, "stop_desc": "7 R ERIK SATIE - 94028", "stop_name": "CLOS VOUGEOT"}, "geometry": {"type": "Point", "coordinates": [2.466869425723614, 48.77172295655446]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "32098470836bd6ad7ac68cc5690acc5261253a47", "fields": {"departement": "94", "stop_lat": 48.777628137730986, "code_postal": "94028", "stop_lon": 2.466829762690551, "coord": [48.777628137730986, 2.466829762690551], "stop_id": 3619881, "stop_desc": "RUE JULIETTE SAVAR - 94028", "stop_name": "RENE ARCOS"}, "geometry": {"type": "Point", "coordinates": [2.466829762690551, 48.777628137730986]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c5b113561d30dd1de3bf6af539965d221bb5b02d", "fields": {"departement": "94", "stop_lat": 48.77435582263095, "code_postal": "94028", "stop_lon": 2.467447134186147, "coord": [48.77435582263095, 2.467447134186147], "stop_id": 3619885, "stop_desc": "AV DE LA HABETTE - 94028", "stop_name": "MONT MESLY"}, "geometry": {"type": "Point", "coordinates": [2.467447134186147, 48.77435582263095]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "26b1a7ccba50acd4e93df0d30af316f4844a9dd3", "fields": {"departement": "94", "stop_lat": 48.804916380170724, "code_postal": "94028", "stop_lon": 2.4659726219905314, "coord": [48.804916380170724, 2.4659726219905314], "stop_id": 3619855, "stop_desc": "5 AVENUE LAFERRIERE - 94028", "stop_name": "HALAGE"}, "geometry": {"type": "Point", "coordinates": [2.4659726219905314, 48.804916380170724]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d0ebb1f5052242bae8ea05e36a2d834cc7b65915", "fields": {"departement": "94", "stop_lat": 48.768264270638504, "code_postal": "94028", "stop_lon": 2.4733737422363498, "coord": [48.768264270638504, 2.4733737422363498], "stop_id": 3619895, "stop_desc": "R SULLY - 94028", "stop_name": "SULLY"}, "geometry": {"type": "Point", "coordinates": [2.4733737422363498, 48.768264270638504]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c5f964c5a43d6a3f4d680acbe4bb5006292d84d2", "fields": {"departement": "94", "stop_lat": 48.78576376785982, "code_postal": "94068", "stop_lon": 2.495318097956109, "coord": [48.78576376785982, 2.495318097956109], "stop_id": 3619697, "stop_desc": "27 AVENUE DE L'ALMA - 94068", "stop_name": "RASPAIL-PONT DE BONNEUIL"}, "geometry": {"type": "Point", "coordinates": [2.495318097956109, 48.78576376785982]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fb8f1e423b2d28cc5684ff0f2b8a7052e384a3a7", "fields": {"departement": "94", "stop_lat": 48.79365131035837, "code_postal": "94068", "stop_lon": 2.498198866095396, "coord": [48.79365131035837, 2.498198866095396], "stop_id": 3619693, "stop_desc": "57 AVENUE LOUIS BLANC - 94068", "stop_name": "BOULEVARD DE LA MARNE"}, "geometry": {"type": "Point", "coordinates": [2.498198866095396, 48.79365131035837]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "60ad3f8e18e9f36da604622874dfdf27a28e12bd", "fields": {"departement": "94", "stop_lat": 48.76855787078499, "code_postal": "94028", "stop_lon": 2.46804447195665, "coord": [48.76855787078499, 2.46804447195665], "stop_id": 3619717, "stop_desc": "63-65 AVENUE FRANCOIS MITTERRAND - 94028", "stop_name": "ATTRIPES"}, "geometry": {"type": "Point", "coordinates": [2.46804447195665, 48.76855787078499]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "992878b807259a02fbf214aa16002da492bb223a", "fields": {"departement": "94", "stop_lat": 48.76835071117828, "code_postal": "94028", "stop_lon": 2.4684382630142188, "coord": [48.76835071117828, 2.4684382630142188], "stop_id": 3619718, "stop_desc": "64 AVENUE FRANCOIS MITTERRAND - 94028", "stop_name": "ATTRIPES"}, "geometry": {"type": "Point", "coordinates": [2.4684382630142188, 48.76835071117828]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "292ae215bea56044c65bd215ad117d0647a8ae41", "fields": {"departement": "94", "stop_lat": 48.76836521112047, "code_postal": "94028", "stop_lon": 2.4715520100835033, "coord": [48.76836521112047, 2.4715520100835033], "stop_id": 3619716, "stop_desc": "RUE DES SARRAZINS - 94028", "stop_name": "NELSON PAILLOU"}, "geometry": {"type": "Point", "coordinates": [2.4715520100835033, 48.76836521112047]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "714c9eda2ba21e463747ead2d9a9fd4bb0718bb3", "fields": {"departement": "94", "stop_lat": 48.77052485741398, "code_postal": "94011", "stop_lon": 2.4846112470308515, "coord": [48.77052485741398, 2.4846112470308515], "stop_id": 3619705, "stop_desc": "AVENUE DE VERDUN - 94011", "stop_name": "COLONEL FABIEN"}, "geometry": {"type": "Point", "coordinates": [2.4846112470308515, 48.77052485741398]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6abeb63b3cbfe45ac25ecb96466a97f7d93a6e3f", "fields": {"departement": "94", "stop_lat": 48.79757359936861, "code_postal": "94068", "stop_lon": 2.5021563710537857, "coord": [48.79757359936861, 2.5021563710537857], "stop_id": 3619688, "stop_desc": "4 AVENUE LOUIS BLANC - 94068", "stop_name": "JEAN MOULIN"}, "geometry": {"type": "Point", "coordinates": [2.5021563710537857, 48.79757359936861]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "75679831a0d9310665201eaa1a16578d75d36071", "fields": {"departement": "94", "stop_lat": 48.76895583436455, "code_postal": "94011", "stop_lon": 2.481438661513884, "coord": [48.76895583436455, 2.481438661513884], "stop_id": 3619708, "stop_desc": "1 AVENUE D'ORADOUR SUR GLANE - 94011", "stop_name": "VERDUN"}, "geometry": {"type": "Point", "coordinates": [2.481438661513884, 48.76895583436455]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fc6ec714040d386722e315bd0f72a2dc2eeed547", "fields": {"departement": "94", "stop_lat": 48.78922393324453, "code_postal": "94068", "stop_lon": 2.495464653764674, "coord": [48.78922393324453, 2.495464653764674], "stop_id": 3619695, "stop_desc": "119 AVENUE LOUIS BLANC - 94068", "stop_name": "MURIERS"}, "geometry": {"type": "Point", "coordinates": [2.495464653764674, 48.78922393324453]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7ce5a5b26c9be75498466cec3d1b475241fe84c1", "fields": {"departement": "94", "stop_lat": 48.77137944328404, "code_postal": "94028", "stop_lon": 2.460260049589847, "coord": [48.77137944328404, 2.460260049589847], "stop_id": 3619723, "stop_desc": "42 RUE FALKIRK - 94028", "stop_name": "GRIFFONS"}, "geometry": {"type": "Point", "coordinates": [2.460260049589847, 48.77137944328404]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "996112598f819c17fda514afdc85ab8aa26d6b10", "fields": {"departement": "94", "stop_lat": 48.805470371692955, "code_postal": "94046", "stop_lon": 2.4417812792795126, "coord": [48.805470371692955, 2.4417812792795126], "stop_id": 3619939, "stop_desc": "217 AVENUE DU GENERAL LECLERC - 94046", "stop_name": "REPUBLIQUE - GENERAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.4417812792795126, 48.805470371692955]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "92f6af966cd13982c6358b23d73a1d5fb1159dce", "fields": {"departement": "94", "stop_lat": 48.80170746252592, "code_postal": "94046", "stop_lon": 2.427120352683719, "coord": [48.80170746252592, 2.427120352683719], "stop_id": 3619929, "stop_desc": "RUE FLEUTIAUX - 94046", "stop_name": "MAISONS-ALFORT - ALFORTVILLE RER"}, "geometry": {"type": "Point", "coordinates": [2.427120352683719, 48.80170746252592]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "10b30d10101cbeb1eda8572a7a2f8902290df82a", "fields": {"departement": "94", "stop_lat": 48.808670703946234, "code_postal": "94046", "stop_lon": 2.450850344027082, "coord": [48.808670703946234, 2.450850344027082], "stop_id": 3619922, "stop_desc": "203-205 AVENUE DE LA REPUBLIQUE - 94046", "stop_name": "RUE DE MARSEILLE"}, "geometry": {"type": "Point", "coordinates": [2.450850344027082, 48.808670703946234]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4677c734e807db86d814f848ea3cc59566063626", "fields": {"departement": "94", "stop_lat": 48.8085087940974, "code_postal": "94046", "stop_lon": 2.4509860647156647, "coord": [48.8085087940974, 2.4509860647156647], "stop_id": 3619921, "stop_desc": "188-190 AVENUE DE LA REPUBLIQUE - 94046", "stop_name": "RUE DE MARSEILLE"}, "geometry": {"type": "Point", "coordinates": [2.4509860647156647, 48.8085087940974]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "69b3bee6d272b73e776c0579eac193ac8535fb27", "fields": {"departement": "94", "stop_lat": 48.799609752657105, "code_postal": "94046", "stop_lon": 2.4424089237628346, "coord": [48.799609752657105, 2.4424089237628346], "stop_id": 3619935, "stop_desc": "FACE 81 RUE VICTOR HUGO - 94046", "stop_name": "COLLEGE DE STAEL"}, "geometry": {"type": "Point", "coordinates": [2.4424089237628346, 48.799609752657105]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fe2d0d7b4ddeb1b0ac57dfe6c1c7a6b42e071971", "fields": {"departement": "94", "stop_lat": 48.80866666037178, "code_postal": "94046", "stop_lon": 2.4351744524613728, "coord": [48.80866666037178, 2.4351744524613728], "stop_id": 3619944, "stop_desc": "FACE 149 AVENUE DU GENERAL LECLERC - 94046", "stop_name": "STADE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.4351744524613728, 48.80866666037178]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7dfa243af7730f6dbe0c0f5dcafe040f1246d446", "fields": {"departement": "94", "stop_lat": 48.80404919314833, "code_postal": "94046", "stop_lon": 2.443030200070247, "coord": [48.80404919314833, 2.443030200070247], "stop_id": 3619938, "stop_desc": "R DU 18 JUIN 1940 - 94046", "stop_name": "LES JULLIOTTES - METRO"}, "geometry": {"type": "Point", "coordinates": [2.443030200070247, 48.80404919314833]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fbd3496bf5d9842f315571dca391e8545761653a", "fields": {"departement": "94", "stop_lat": 48.80764356796923, "code_postal": "94046", "stop_lon": 2.4623326343241865, "coord": [48.80764356796923, 2.4623326343241865], "stop_id": 3619957, "stop_desc": "AVENUE DE VERDUN - 94046", "stop_name": "LOUIS FLICHE"}, "geometry": {"type": "Point", "coordinates": [2.4623326343241865, 48.80764356796923]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "29eaf467082be9ed74b2679625276ec22e298568", "fields": {"departement": "94", "stop_lat": 48.80764356796923, "code_postal": "94046", "stop_lon": 2.4623326343241865, "coord": [48.80764356796923, 2.4623326343241865], "stop_id": 3619927, "stop_desc": "AVENUE DE VERDUN - 94046", "stop_name": "LOUIS FLICHE"}, "geometry": {"type": "Point", "coordinates": [2.4623326343241865, 48.80764356796923]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f76b73b3d3f8f060b912e7a45b141a59b9be2ca9", "fields": {"departement": "94", "stop_lat": 48.81002608092642, "code_postal": "94046", "stop_lon": 2.4430287706765292, "coord": [48.81002608092642, 2.4430287706765292], "stop_id": 3619948, "stop_desc": "69 AVENUE GAMBETTA - 94046", "stop_name": "RENE COTY"}, "geometry": {"type": "Point", "coordinates": [2.4430287706765292, 48.81002608092642]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3a2ef42f7454dcaf3c43c86e3c58b4b92d59c9a4", "fields": {"departement": "94", "stop_lat": 48.768300093944944, "code_postal": "94028", "stop_lon": 2.4567719351547197, "coord": [48.768300093944944, 2.4567719351547197], "stop_id": 3620257, "stop_desc": "R DOMINIQUE DUVAUCHELLE - 94028", "stop_name": "FACULTE DES SPORTS"}, "geometry": {"type": "Point", "coordinates": [2.4567719351547197, 48.768300093944944]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5d22b73c08b75f2e4e3973b2613d6bc56e5c5ae2", "fields": {"departement": "94", "stop_lat": 48.77305376447532, "code_postal": "94011", "stop_lon": 2.4960409270950934, "coord": [48.77305376447532, 2.4960409270950934], "stop_id": 3620268, "stop_desc": "AVENUE DU MARECHAL LECLERC - 94011", "stop_name": "PETITS CARREAUX"}, "geometry": {"type": "Point", "coordinates": [2.4960409270950934, 48.77305376447532]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "94fa425f3d1dc2b2f17223b812493c92c4f50441", "fields": {"departement": "94", "stop_lat": 48.76823668451153, "code_postal": "94028", "stop_lon": 2.457261279547071, "coord": [48.76823668451153, 2.457261279547071], "stop_id": 3620256, "stop_desc": "0 R DOMINIQUE DUVAUCHELLE - 94028", "stop_name": "FACULTE DES SPORTS"}, "geometry": {"type": "Point", "coordinates": [2.457261279547071, 48.76823668451153]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b7ac140de1d1bb82c09e648b9e3127450965547e", "fields": {"departement": "77", "stop_lat": 48.84267152877456, "code_postal": "77083", "stop_lon": 2.58195619006769, "coord": [48.84267152877456, 2.58195619006769], "stop_id": 3639424, "stop_desc": "BD NEWTON - 77083", "stop_name": "NOISY-CHAMPS RER - DESCARTES"}, "geometry": {"type": "Point", "coordinates": [2.58195619006769, 48.84267152877456]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9d5d421db3cfc57ac8ff70870c6f35f8b41fee8c", "fields": {"departement": "77", "stop_lat": 48.85058277836506, "code_postal": "77083", "stop_lon": 2.5852347358505665, "coord": [48.85058277836506, 2.5852347358505665], "stop_id": 3639432, "stop_desc": "AVENUE DES PYRAMIDES - 77083", "stop_name": "GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.5852347358505665, 48.85058277836506]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3196ba3c081142540ff9dc93058324f486b3894e", "fields": {"departement": "94", "stop_lat": 48.767278803731315, "code_postal": "94028", "stop_lon": 2.4705294490523295, "coord": [48.767278803731315, 2.4705294490523295], "stop_id": 3620261, "stop_desc": "ROUTE DE LA POMPADOUR - 94028", "stop_name": "EUROPARC"}, "geometry": {"type": "Point", "coordinates": [2.4705294490523295, 48.767278803731315]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6457d0cc5327449fef223377baf7065e46be1f3b", "fields": {"departement": "94", "stop_lat": 48.783188706781225, "code_postal": "94028", "stop_lon": 2.452263505917847, "coord": [48.783188706781225, 2.452263505917847], "stop_id": 3619734, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 94028", "stop_name": "PREFECTURE DU VAL-DE-MARNE"}, "geometry": {"type": "Point", "coordinates": [2.452263505917847, 48.783188706781225]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7387bf16d4add6f6ef6f10d144a434049d5fe998", "fields": {"departement": "94", "stop_lat": 48.783016891844866, "code_postal": "94028", "stop_lon": 2.453337590224282, "coord": [48.783016891844866, 2.453337590224282], "stop_id": 3619767, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 94028", "stop_name": "PREFECTURE DU VAL-DE-MARNE"}, "geometry": {"type": "Point", "coordinates": [2.453337590224282, 48.783016891844866]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "719cbdbb6ed5c867b56e52454fd4f9d1b9e08f34", "fields": {"departement": "94", "stop_lat": 48.7842926881983, "code_postal": "94028", "stop_lon": 2.4538436843326417, "coord": [48.7842926881983, 2.4538436843326417], "stop_id": 3619737, "stop_desc": "AVENUE DE LA BRECHE - 94028", "stop_name": "PREFECTURE DU VAL-DE-MARNE."}, "geometry": {"type": "Point", "coordinates": [2.4538436843326417, 48.7842926881983]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ecca8cf17e5ab9e5a49e3683ce54d7a755dbbc97", "fields": {"departement": "94", "stop_lat": 48.782266577868384, "code_postal": "94028", "stop_lon": 2.4576745123491808, "coord": [48.782266577868384, 2.4576745123491808], "stop_id": 3619732, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 94028", "stop_name": "LYCEE SAINT-EXUPERY"}, "geometry": {"type": "Point", "coordinates": [2.4576745123491808, 48.782266577868384]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "82b7f7f6ea71eb682064c55f0863a40b0421960e", "fields": {"departement": "94", "stop_lat": 48.78450827876108, "code_postal": "94028", "stop_lon": 2.45396657917604, "coord": [48.78450827876108, 2.45396657917604], "stop_id": 3619738, "stop_desc": "AVENUE DE LA BRECHE - 94028", "stop_name": "PREFECTURE DU VAL-DE-MARNE."}, "geometry": {"type": "Point", "coordinates": [2.45396657917604, 48.78450827876108]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3d5725bdeb7698b80c742b86f436f7b5d0d289bf", "fields": {"departement": "94", "stop_lat": 48.76945085279237, "code_postal": "94028", "stop_lon": 2.465136903748683, "coord": [48.76945085279237, 2.465136903748683], "stop_id": 3619719, "stop_desc": "AVENUE FRANCOIS MITTERRAND - 94028", "stop_name": "POINTE DU LAC-METRO"}, "geometry": {"type": "Point", "coordinates": [2.465136903748683, 48.76945085279237]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8475161eac7d12314babc7f97dd2cd0a9fe0cdbc", "fields": {"departement": "94", "stop_lat": 48.79060106321808, "code_postal": "94046", "stop_lon": 2.43519479993249, "coord": [48.79060106321808, 2.43519479993249], "stop_id": 3619757, "stop_desc": "161-163 RUE JEAN JAURES - 94046", "stop_name": "LE VERT DE MAISONS RER"}, "geometry": {"type": "Point", "coordinates": [2.43519479993249, 48.79060106321808]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c31676bc13e0c65e01a20c7acfcb4144a7952dc5", "fields": {"departement": "94", "stop_lat": 48.78201271988064, "code_postal": "94028", "stop_lon": 2.4598228120093797, "coord": [48.78201271988064, 2.4598228120093797], "stop_id": 3619769, "stop_desc": "RUE MAURICE UTRILLO (D1B) - 94028", "stop_name": "LYCEE SAINT-EXUPERY"}, "geometry": {"type": "Point", "coordinates": [2.4598228120093797, 48.78201271988064]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "780833ad368f890c81bb36ce97e6a9952f9c23a0", "fields": {"departement": "94", "stop_lat": 48.78006353894309, "code_postal": "94028", "stop_lon": 2.467148639104774, "coord": [48.78006353894309, 2.467148639104774], "stop_id": 3619773, "stop_desc": "61 AVENUE DU DOCTEUR PAUL CASALIS - 94028", "stop_name": "CASALIS-SAVAR"}, "geometry": {"type": "Point", "coordinates": [2.467148639104774, 48.78006353894309]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2d8f0cdb12d43b8e205969a54890c65050017657", "fields": {"departement": "75", "stop_lat": 48.84311767863822, "code_postal": "75105", "stop_lon": 2.363997607036225, "coord": [48.84311767863822, 2.363997607036225], "stop_id": 4471733, "stop_desc": "4 BOULEVARD DE L'HOPITAL - 75105", "stop_name": "GARE D'AUSTERLITZ"}, "geometry": {"type": "Point", "coordinates": [2.363997607036225, 48.84311767863822]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "194a58bee05e559d9fb387c89fd767e092af59cb", "fields": {"departement": "75", "stop_lat": 48.83278228500094, "code_postal": "75113", "stop_lon": 2.3625764395921625, "coord": [48.83278228500094, 2.3625764395921625], "stop_id": 4471736, "stop_desc": "145 BOULEVARD VINCENT AURIOL - 75113", "stop_name": "NATIONALE"}, "geometry": {"type": "Point", "coordinates": [2.3625764395921625, 48.83278228500094]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5a5a167c6a4a518a11dd8cfedbc133f65a1c38d1", "fields": {"departement": "75", "stop_lat": 48.82402471960618, "code_postal": "75113", "stop_lon": 2.3759795456323034, "coord": [48.82402471960618, 2.3759795456323034], "stop_id": 4471740, "stop_desc": "FACE 21 BOULEVARD MASSENA - 75113", "stop_name": "PORTE DE VITRY"}, "geometry": {"type": "Point", "coordinates": [2.3759795456323034, 48.82402471960618]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "24d1b00a888daa798cc3d3d4b566f0b8870ab98f", "fields": {"departement": "94", "stop_lat": 48.80858458226651, "code_postal": "94041", "stop_lon": 2.3735186767175427, "coord": [48.80858458226651, 2.3735186767175427], "stop_id": 4471745, "stop_desc": "78 AVENUE DE VERDUN - 94041", "stop_name": "CARNOT"}, "geometry": {"type": "Point", "coordinates": [2.3735186767175427, 48.80858458226651]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "08d339a972468cad8a629760c34e582221a6d70f", "fields": {"departement": "94", "stop_lat": 48.79826381702136, "code_postal": "94081", "stop_lon": 2.3816335340724804, "coord": [48.79826381702136, 2.3816335340724804], "stop_id": 4471749, "stop_desc": "61 BOULEVARD DE STALINGRAD - 94081", "stop_name": "LA CIVETTE"}, "geometry": {"type": "Point", "coordinates": [2.3816335340724804, 48.79826381702136]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cdb326dbf302eb2fa93393c43d3febc5c2075cf9", "fields": {"departement": "94", "stop_lat": 48.79274353783585, "code_postal": "94081", "stop_lon": 2.3860363032250977, "coord": [48.79274353783585, 2.3860363032250977], "stop_id": 4471751, "stop_desc": "3 AVENUE EUGENE PELLETAN - 94081", "stop_name": "MUSEE MAC-VAL"}, "geometry": {"type": "Point", "coordinates": [2.3860363032250977, 48.79274353783585]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c5cb1561646130b921c2ad253922df08ebeebd89", "fields": {"departement": "94", "stop_lat": 48.758388600026706, "code_postal": "94022", "stop_lon": 2.4091416576999163, "coord": [48.758388600026706, 2.4091416576999163], "stop_id": 4471761, "stop_desc": "62 AVENUE DE LA REPUBLIQUE - 94022", "stop_name": "PARMENTIER"}, "geometry": {"type": "Point", "coordinates": [2.4091416576999163, 48.758388600026706]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "16e45d75c9c65f0da0c6a8165d07ddfd4ad95f7a", "fields": {"departement": "94", "stop_lat": 48.745606431933844, "code_postal": "94054", "stop_lon": 2.4107277200513724, "coord": [48.745606431933844, 2.4107277200513724], "stop_id": 4471766, "stop_desc": "VOI DES SAULES - 94054", "stop_name": "MARCEL CACHIN - VOIE DES SAULES"}, "geometry": {"type": "Point", "coordinates": [2.4107277200513724, 48.745606431933844]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "398b63d9396b51ffcb83475a5b82c60790395b67", "fields": {"departement": "94", "stop_lat": 48.75381606931811, "code_postal": "94073", "stop_lon": 2.3867609796899667, "coord": [48.75381606931811, 2.3867609796899667], "stop_id": 4471774, "stop_desc": "12 RUE DU BAS MARIN - 94073", "stop_name": "CENTRE BUS DE THIAIS"}, "geometry": {"type": "Point", "coordinates": [2.3867609796899667, 48.75381606931811]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "400862e3b9e538f6cf76fb511b5e948516ddd487", "fields": {"departement": "94", "stop_lat": 48.754473514026486, "code_postal": "94073", "stop_lon": 2.3835127983467417, "coord": [48.754473514026486, 2.3835127983467417], "stop_id": 4471775, "stop_desc": "FACE 15 RUE DES ALOUETTES - 94073", "stop_name": "RUE DU BAS MARIN"}, "geometry": {"type": "Point", "coordinates": [2.3835127983467417, 48.754473514026486]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "937d36b88af8fbee567395493e6f19d12cdcd3f1", "fields": {"departement": "94", "stop_lat": 48.75274176572396, "code_postal": "94073", "stop_lon": 2.3751244475256206, "coord": [48.75274176572396, 2.3751244475256206], "stop_id": 4471776, "stop_desc": "FACE 5 RUE DES ALOUETTES - 94073", "stop_name": "ALOUETTES"}, "geometry": {"type": "Point", "coordinates": [2.3751244475256206, 48.75274176572396]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "14cbbe3913ac2a8cd546fe14211b14594add5156", "fields": {"departement": "94", "stop_lat": 48.728879688960305, "code_postal": "94054", "stop_lon": 2.369156116527317, "coord": [48.728879688960305, 2.369156116527317], "stop_id": 4471786, "stop_desc": "AEROPORT D'ORLY - 94054", "stop_name": "AEROPORT D'ORLY-TERMINAL SUD"}, "geometry": {"type": "Point", "coordinates": [2.369156116527317, 48.728879688960305]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ca38c24f24ffc72bae1caf700fbf00eb369433fc", "fields": {"departement": "94", "stop_lat": 48.737031881671214, "code_postal": "94054", "stop_lon": 2.36992209078468, "coord": [48.737031881671214, 2.36992209078468], "stop_id": 4471789, "stop_desc": "AVENUE DE L'EUROPE - 94054", "stop_name": "CAROLINE AIGLE"}, "geometry": {"type": "Point", "coordinates": [2.36992209078468, 48.737031881671214]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "48eb85f74e8b71e14240f449619ce8bbfc9cf6be", "fields": {"departement": "94", "stop_lat": 48.751125622861665, "code_postal": "94073", "stop_lon": 2.3692377344157936, "coord": [48.751125622861665, 2.3692377344157936], "stop_id": 4471792, "stop_desc": "AVENUE DE FONTAINEBLEAU - 94073", "stop_name": "S.E.N.I.A."}, "geometry": {"type": "Point", "coordinates": [2.3692377344157936, 48.751125622861665]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "29758855c2c107feeee5f2e77bb89f8623f0e610", "fields": {"departement": "94", "stop_lat": 48.756445288464626, "code_postal": "94073", "stop_lon": 2.37384932439109, "coord": [48.756445288464626, 2.37384932439109], "stop_id": 4471796, "stop_desc": "AVENUE DU LUXEMBOURG - 94073", "stop_name": "LA BELLE EPINE"}, "geometry": {"type": "Point", "coordinates": [2.37384932439109, 48.756445288464626]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a51990675da98a17ecaa8523b3606920d739cbcf", "fields": {"departement": "94", "stop_lat": 48.754383536931336, "code_postal": "94073", "stop_lon": 2.3837573979025453, "coord": [48.754383536931336, 2.3837573979025453], "stop_id": 4471798, "stop_desc": "15 RUE DES ALOUETTES - 94073", "stop_name": "RUE DU BAS MARIN"}, "geometry": {"type": "Point", "coordinates": [2.3837573979025453, 48.754383536931336]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "72e4ae9841af29bc1eefe68a044c5f82d64a06bc", "fields": {"departement": "94", "stop_lat": 48.746617343491515, "code_postal": "94054", "stop_lon": 2.384756204379618, "coord": [48.746617343491515, 2.384756204379618], "stop_id": 4471802, "stop_desc": "RUE DU BAS MARIN - 94054", "stop_name": "RUE DES QUINZE ARPENTS"}, "geometry": {"type": "Point", "coordinates": [2.384756204379618, 48.746617343491515]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c3025fd0418d8af63c80e3b0d55c7fb89e359136", "fields": {"departement": "94", "stop_lat": 48.75393738910948, "code_postal": "94022", "stop_lon": 2.4124930210682587, "coord": [48.75393738910948, 2.4124930210682587], "stop_id": 4471810, "stop_desc": "AVENUE DE NEWBURN - 94022", "stop_name": "ROBERT PEARY"}, "geometry": {"type": "Point", "coordinates": [2.4124930210682587, 48.75393738910948]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "91a754dfe8a812884d88e302e3a7c85f1fabcee3", "fields": {"departement": "94", "stop_lat": 48.77085950549078, "code_postal": "94022", "stop_lon": 2.401421864024047, "coord": [48.77085950549078, 2.401421864024047], "stop_id": 4471816, "stop_desc": "52 BD DE STALINGRAD - 94022", "stop_name": "DOCTEUR ROUX"}, "geometry": {"type": "Point", "coordinates": [2.401421864024047, 48.77085950549078]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "896ff5a95b11561420b843ed709ba4af954a7cd8", "fields": {"departement": "94", "stop_lat": 48.79045958793866, "code_postal": "94081", "stop_lon": 2.3884690512328666, "coord": [48.79045958793866, 2.3884690512328666], "stop_id": 4471821, "stop_desc": "17 AVENUE MAXIMILIEN ROBESPIERRE - 94081", "stop_name": "HOTEL DE VILLE DE VITRY"}, "geometry": {"type": "Point", "coordinates": [2.3884690512328666, 48.79045958793866]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a89a1eb43292f0ed96c304191859be1cc70f49b5", "fields": {"departement": "94", "stop_lat": 48.8168640152177, "code_postal": "94041", "stop_lon": 2.3673728884374636, "coord": [48.8168640152177, 2.3673728884374636], "stop_id": 4471830, "stop_desc": "15 AVENUE DE VERDUN - 94041", "stop_name": "VERDUN - CHATEAUDUN"}, "geometry": {"type": "Point", "coordinates": [2.3673728884374636, 48.8168640152177]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "080f16d281848424c8d694133eccbed8bc20ad52", "fields": {"departement": "75", "stop_lat": 48.828034729758826, "code_postal": "75113", "stop_lon": 2.3710003248450366, "coord": [48.828034729758826, 2.3710003248450366], "stop_id": 4471836, "stop_desc": "108 RUE DE PATAY - 75113", "stop_name": "PATAY - TOLBIAC"}, "geometry": {"type": "Point", "coordinates": [2.3710003248450366, 48.828034729758826]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7c736ebf77cdef12e967708a84adc09bdeac8aff", "fields": {"departement": "75", "stop_lat": 48.84489527909312, "code_postal": "75112", "stop_lon": 2.3715287402401484, "coord": [48.84489527909312, 2.3715287402401484], "stop_id": 4471843, "stop_desc": "205-207 RUE DE BERCY - 75112", "stop_name": "GARE DE LYON - VAN GOGH"}, "geometry": {"type": "Point", "coordinates": [2.3715287402401484, 48.84489527909312]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7c0b00daa31dd0655a7be0a37dc073770a733af9", "fields": {"departement": "92", "stop_lat": 48.89847241282332, "code_postal": "92050", "stop_lon": 2.213593241126523, "coord": [48.89847241282332, 2.213593241126523], "stop_id": 4472484, "stop_desc": "BOULEVARD DES PROVINCES FRANCAISES - 92050", "stop_name": "SOUFFLOT"}, "geometry": {"type": "Point", "coordinates": [2.213593241126523, 48.89847241282332]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5f62757daf9b4d02674f50b5dfdc23e9457fddf6", "fields": {"departement": "92", "stop_lat": 48.89812239517774, "code_postal": "92050", "stop_lon": 2.2140575314032325, "coord": [48.89812239517774, 2.2140575314032325], "stop_id": 4472485, "stop_desc": "BOULEVARD DES PROVINCES FRANCAISES - 92050", "stop_name": "SOUFFLOT"}, "geometry": {"type": "Point", "coordinates": [2.2140575314032325, 48.89812239517774]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3e63e03f3ad810c1efd87a4bbadb9f2e6390c83f", "fields": {"departement": "92", "stop_lat": 48.895056889425156, "code_postal": "92050", "stop_lon": 2.222161171082742, "coord": [48.895056889425156, 2.222161171082742], "stop_id": 4472489, "stop_desc": "70 RUE SALVADOR ALLENDE - 92050", "stop_name": "ESPLANADE CHARLES DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.222161171082742, 48.895056889425156]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d0a77b3c1a6f7540f880173758c86371fc6504eb", "fields": {"departement": "92", "stop_lat": 48.895660974821816, "code_postal": "92050", "stop_lon": 2.2150856614501198, "coord": [48.895660974821816, 2.2150856614501198], "stop_id": 4472490, "stop_desc": "141 AVENUE FREDERIC ET IRENE JOLIOT CURIE - 92050", "stop_name": "PREFECTURE DES HAUTS-DE-SEINE"}, "geometry": {"type": "Point", "coordinates": [2.2150856614501198, 48.895660974821816]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f3546a7e1479b0e5a12b6bc5a012f126b724109e", "fields": {"departement": "92", "stop_lat": 48.89412144881431, "code_postal": "92050", "stop_lon": 2.212458704841192, "coord": [48.89412144881431, 2.212458704841192], "stop_id": 4472492, "stop_desc": "137 AV FREDERIC ET IRENE JOLIOT CURIE - 92050", "stop_name": "JOLIOT-CURIE - COURBEVOIE"}, "geometry": {"type": "Point", "coordinates": [2.212458704841192, 48.89412144881431]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "53612ec9e41283c2d5814b6125df7406ea5601bb", "fields": {"departement": "92", "stop_lat": 48.893923902710036, "code_postal": "92050", "stop_lon": 2.2126227396461546, "coord": [48.893923902710036, 2.2126227396461546], "stop_id": 4472493, "stop_desc": "FACE 123 AV FREDERIC ET IRENE JOLIOT CURIE - 92050", "stop_name": "JOLIOT-CURIE - COURBEVOIE"}, "geometry": {"type": "Point", "coordinates": [2.2126227396461546, 48.893923902710036]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f9cc50b9cba19e5b6b712fcf7ecaa24d882aff5b", "fields": {"departement": "92", "stop_lat": 48.87935136602782, "code_postal": "92063", "stop_lon": 2.1856917243126706, "coord": [48.87935136602782, 2.1856917243126706], "stop_id": 4472506, "stop_desc": "22 BIS BOULEVARD DE L'HOPITAL STELL - 92063", "stop_name": "LE GUE"}, "geometry": {"type": "Point", "coordinates": [2.1856917243126706, 48.87935136602782]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fc666b793a3c5a6fff483b7ef0584083491f39ab", "fields": {"departement": "92", "stop_lat": 48.874126741811956, "code_postal": "92063", "stop_lon": 2.183349919170164, "coord": [48.874126741811956, 2.183349919170164], "stop_id": 4472511, "stop_desc": "FACE 42 BOULEVARD DE SOLFERINO - 92063", "stop_name": "PLACE RICHELIEU"}, "geometry": {"type": "Point", "coordinates": [2.183349919170164, 48.874126741811956]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "952bb0ce6f81c4b23398f7889a8fa2b54e93f137", "fields": {"departement": "92", "stop_lat": 48.86881105341226, "code_postal": "92063", "stop_lon": 2.1871257369875647, "coord": [48.86881105341226, 2.1871257369875647], "stop_id": 4472514, "stop_desc": "4 AVENUE DU 18 JUIN 1940 - 92063", "stop_name": "PLACE BESCHE"}, "geometry": {"type": "Point", "coordinates": [2.1871257369875647, 48.86881105341226]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4d7e8f140f3edb6daf2a8b8a972faca1efeff7ad", "fields": {"departement": "92", "stop_lat": 48.86817044263968, "code_postal": "92063", "stop_lon": 2.192358886539712, "coord": [48.86817044263968, 2.192358886539712], "stop_id": 4472517, "stop_desc": "51 AV DU 18 JUIN 1940 - 92063", "stop_name": "DUNANT"}, "geometry": {"type": "Point", "coordinates": [2.192358886539712, 48.86817044263968]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ba3be87948cfc5c1bb9eab5d96b9cb6a8e4f5d0f", "fields": {"departement": "92", "stop_lat": 48.867547720016134, "code_postal": "92063", "stop_lon": 2.197714464943088, "coord": [48.867547720016134, 2.197714464943088], "stop_id": 4472519, "stop_desc": "FACE 112 AVENUE DU 18 JUIN 1940 - 92063", "stop_name": "LIEUTENANT-COLONEL DE MONTBRISON"}, "geometry": {"type": "Point", "coordinates": [2.197714464943088, 48.867547720016134]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "966d20b38712959c50dcce2a20497472bd15bde7", "fields": {"departement": "92", "stop_lat": 48.8635343842633, "code_postal": "92073", "stop_lon": 2.2093039143430833, "coord": [48.8635343842633, 2.2093039143430833], "stop_id": 4472522, "stop_desc": "AVENUE JEAN JAURES - 92073", "stop_name": "PLACE JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.2093039143430833, 48.8635343842633]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "28a68997665e622b98bacc73c0b80e2b0e2239f0", "fields": {"departement": "92", "stop_lat": 48.85982860172332, "code_postal": "92073", "stop_lon": 2.215033862640823, "coord": [48.85982860172332, 2.215033862640823], "stop_id": 4472525, "stop_desc": "171 BOULEVARD HENRI SELLIER - 92073", "stop_name": "VAL D'OR"}, "geometry": {"type": "Point", "coordinates": [2.215033862640823, 48.85982860172332]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2321c806fb73ceee85de55e9384a883027beb7ea", "fields": {"departement": "92", "stop_lat": 48.86006972889107, "code_postal": "92073", "stop_lon": 2.213548602298387, "coord": [48.86006972889107, 2.213548602298387], "stop_id": 4472526, "stop_desc": "20 BOULEVARD LOUIS LOUCHEUR - 92073", "stop_name": "VAL D'OR"}, "geometry": {"type": "Point", "coordinates": [2.213548602298387, 48.86006972889107]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "faafdbca3f7c3191ab61e5c2c6d45443a95c865f", "fields": {"departement": "92", "stop_lat": 48.86787309807707, "code_postal": "92073", "stop_lon": 2.2249597473026133, "coord": [48.86787309807707, 2.2249597473026133], "stop_id": 4472531, "stop_desc": "39 BOULEVARD HENRI SELLIER - 92073", "stop_name": "SURESNES DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.2249597473026133, 48.86787309807707]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8997f125079ba3cc2151d08700ea22f107fce1f6", "fields": {"departement": "75", "stop_lat": 48.859633993882, "code_postal": "75116", "stop_lon": 2.278180844388691, "coord": [48.859633993882, 2.278180844388691], "stop_id": 4472540, "stop_desc": "78 AV PAUL DOUMER - 75116", "stop_name": "PLACE POSSOZ"}, "geometry": {"type": "Point", "coordinates": [2.278180844388691, 48.859633993882]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2e8d622a40e122270a824829808113a308c5efe1", "fields": {"departement": "75", "stop_lat": 48.86419500504601, "code_postal": "75116", "stop_lon": 2.2878473386642373, "coord": [48.86419500504601, 2.2878473386642373], "stop_id": 4472544, "stop_desc": "120 AVENUE KLEBER - 75116", "stop_name": "TROCADERO"}, "geometry": {"type": "Point", "coordinates": [2.2878473386642373, 48.86419500504601]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "70cfd8df948d559bb5da78cbf75fe832aecd7f1b", "fields": {"departement": "75", "stop_lat": 48.869517082474346, "code_postal": "75116", "stop_lon": 2.2917658343907847, "coord": [48.869517082474346, 2.2917658343907847], "stop_id": 4472546, "stop_desc": "50 AVENUE KLEBER - 75116", "stop_name": "KLEBER - PAUL VALERY"}, "geometry": {"type": "Point", "coordinates": [2.2917658343907847, 48.869517082474346]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "97270168e0df72eb4d9fb96b7ce8fa8a81d94fe5", "fields": {"departement": "75", "stop_lat": 48.87533099926682, "code_postal": "75108", "stop_lon": 2.3255644136186038, "coord": [48.87533099926682, 2.3255644136186038], "stop_id": 4472559, "stop_desc": "117 RUE SAINT LAZARE - 75108", "stop_name": "GARE SAINT-LAZARE"}, "geometry": {"type": "Point", "coordinates": [2.3255644136186038, 48.87533099926682]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4fee68e297206f6f7936f889e045d336beaa346d", "fields": {"departement": "92", "stop_lat": 48.86495981904738, "code_postal": "92063", "stop_lon": 2.2060310416999966, "coord": [48.86495981904738, 2.2060310416999966], "stop_id": 4472562, "stop_desc": "183 AVENUE JEAN JAURES - 92063", "stop_name": "PLACE DE LA PAIX"}, "geometry": {"type": "Point", "coordinates": [2.2060310416999966, 48.86495981904738]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "57c6d9984e90b58a8be83bb0bcf79e289b5316c7", "fields": {"departement": "92", "stop_lat": 48.88402421063552, "code_postal": "92050", "stop_lon": 2.192491726617203, "coord": [48.88402421063552, 2.192491726617203], "stop_id": 4472563, "stop_desc": "73 AVENUE DU MARECHAL JOFFRE - 92050", "stop_name": "BOULEVARD NATIONAL"}, "geometry": {"type": "Point", "coordinates": [2.192491726617203, 48.88402421063552]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "99651e381d2bcde0be0ad77cb4445bd06832a922", "fields": {"departement": "92", "stop_lat": 48.82477864715537, "code_postal": "92040", "stop_lon": 2.274912862904717, "coord": [48.82477864715537, 2.274912862904717], "stop_id": 4472614, "stop_desc": "FACE 45 R DU GENERAL LECLERC - 92040", "stop_name": "HORACE VERNET - MAIRIE"}, "geometry": {"type": "Point", "coordinates": [2.274912862904717, 48.82477864715537]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5e89309bc4cad681f388bd73d3449b037ade4082", "fields": {"departement": "92", "stop_lat": 48.818196179524705, "code_postal": "92040", "stop_lon": 2.268592106010475, "coord": [48.818196179524705, 2.268592106010475], "stop_id": 4472623, "stop_desc": "FACE 20 PROMENADE DU VERGER - 92040", "stop_name": "BELVEDERE"}, "geometry": {"type": "Point", "coordinates": [2.268592106010475, 48.818196179524705]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dd30903fbf862249cc524267d407cae7fa2e6ad4", "fields": {"departement": "92", "stop_lat": 48.81855754970955, "code_postal": "92040", "stop_lon": 2.2718988877466235, "coord": [48.81855754970955, 2.2718988877466235], "stop_id": 4472624, "stop_desc": "65 AVENUE DE LA PAIX - 92040", "stop_name": "AVENUE DE LA PAIX"}, "geometry": {"type": "Point", "coordinates": [2.2718988877466235, 48.81855754970955]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "549f45530319e8f850b54a5c93e67c892443cec3", "fields": {"departement": "95", "stop_lat": 48.92696288608361, "code_postal": "95063", "stop_lon": 2.2151345728058702, "coord": [48.92696288608361, 2.2151345728058702], "stop_id": 4472634, "stop_desc": "73 BIS RUE EDOUARD VAILLANT - 95063", "stop_name": "LA GRACE DE DIEU"}, "geometry": {"type": "Point", "coordinates": [2.2151345728058702, 48.92696288608361]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "87432c76e146b64d6093ac49a713271225407ccd", "fields": {"departement": "95", "stop_lat": 48.923235913397576, "code_postal": "95063", "stop_lon": 2.2177072361847747, "coord": [48.923235913397576, 2.2177072361847747], "stop_id": 4472637, "stop_desc": "0 R JULIUS ET ETHEL ROSENBERG - 95063", "stop_name": "PONT DE BEZONS"}, "geometry": {"type": "Point", "coordinates": [2.2177072361847747, 48.923235913397576]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c1e76febddf4f45745c9d4900a07e6c8c2498e98", "fields": {"departement": "92", "stop_lat": 48.91362227104469, "code_postal": "92025", "stop_lon": 2.229701044179225, "coord": [48.91362227104469, 2.229701044179225], "stop_id": 4472640, "stop_desc": "139 BD CHARLES DE GAULLE - 92025", "stop_name": "VICTOR BASCH"}, "geometry": {"type": "Point", "coordinates": [2.229701044179225, 48.91362227104469]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "878ea3935fc76ea9a494996f1d97d4d5ac4afc2f", "fields": {"departement": "92", "stop_lat": 48.914924620432, "code_postal": "92025", "stop_lon": 2.2288529425389245, "coord": [48.914924620432, 2.2288529425389245], "stop_id": 4472641, "stop_desc": "154 BD CHARLES DE GAULLE - 92025", "stop_name": "VICTOR BASCH"}, "geometry": {"type": "Point", "coordinates": [2.2288529425389245, 48.914924620432]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d76c44fbc3b261d695c8c1884028c391d5924456", "fields": {"departement": "92", "stop_lat": 48.91212389271792, "code_postal": "92025", "stop_lon": 2.232458366295327, "coord": [48.91212389271792, 2.232458366295327], "stop_id": 4472643, "stop_desc": "96 BD CHARLES DE GAULLE - 92025", "stop_name": "BUFFON"}, "geometry": {"type": "Point", "coordinates": [2.232458366295327, 48.91212389271792]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6f616361f346b1c7f71c3fbfa6646860d009610c", "fields": {"departement": "92", "stop_lat": 48.90575775425841, "code_postal": "92035", "stop_lon": 2.2391377956954837, "coord": [48.90575775425841, 2.2391377956954837], "stop_id": 4472649, "stop_desc": "0 BD NATIONAL - 92035", "stop_name": "NORDMANN"}, "geometry": {"type": "Point", "coordinates": [2.2391377956954837, 48.90575775425841]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6288965a50845cd7afef754fcc89f5a0be84efa3", "fields": {"departement": "92", "stop_lat": 48.89539650652404, "code_postal": "92026", "stop_lon": 2.2402342065353684, "coord": [48.89539650652404, 2.2402342065353684], "stop_id": 4472656, "stop_desc": "AVENUE DE LA DIVISION LECLERC - 92026", "stop_name": "CARON"}, "geometry": {"type": "Point", "coordinates": [2.2402342065353684, 48.89539650652404]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c90348c357de4041996df7d3c4aa7846c9101a90", "fields": {"departement": "92", "stop_lat": 48.887154962379554, "code_postal": "92062", "stop_lon": 2.2515746160906414, "coord": [48.887154962379554, 2.2515746160906414], "stop_id": 4472663, "stop_desc": "BOULEVARD PIERRE GAUDIN - 92062", "stop_name": "PONT DE NEUILLY - RIVE GAUCHE"}, "geometry": {"type": "Point", "coordinates": [2.2515746160906414, 48.887154962379554]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2b23c3bd663b7eb305c3c0f97c7820dc9410371b", "fields": {"departement": "92", "stop_lat": 48.882132893754225, "code_postal": "92051", "stop_lon": 2.2681803781483323, "coord": [48.882132893754225, 2.2681803781483323], "stop_id": 4472668, "stop_desc": "127-151 AVENUE CHARLES DE GAULLE - 92051", "stop_name": "RUE DE L'HOTEL DE VILLE"}, "geometry": {"type": "Point", "coordinates": [2.2681803781483323, 48.882132893754225]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "803bae85ca3de9207333ab4609ad3161c9a4bca9", "fields": {"departement": "92", "stop_lat": 48.881317375993476, "code_postal": "92051", "stop_lon": 2.2723103244701215, "coord": [48.881317375993476, 2.2723103244701215], "stop_id": 4472671, "stop_desc": "60-62 AVENUE CHARLES DE GAULLE - 92051", "stop_name": "LES SABLONS"}, "geometry": {"type": "Point", "coordinates": [2.2723103244701215, 48.881317375993476]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aea105057e3a48adab0b314676b4813b3c88450e", "fields": {"departement": "75", "stop_lat": 48.87958240532934, "code_postal": "75117", "stop_lon": 2.290585154457603, "coord": [48.87958240532934, 2.290585154457603], "stop_id": 4472677, "stop_desc": "68 AV DES TERNES - 75117", "stop_name": "EGLISE SAINT-FERDINAND"}, "geometry": {"type": "Point", "coordinates": [2.290585154457603, 48.87958240532934]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "21557b0a0a1e2e857837a93855bf6e21f90b0487", "fields": {"departement": "75", "stop_lat": 48.877545158770765, "code_postal": "75108", "stop_lon": 2.298585218601294, "coord": [48.877545158770765, 2.298585218601294], "stop_id": 4472680, "stop_desc": "237 RUE DU FAUBOURG SAINT-HONORE - 75108", "stop_name": "TERNES"}, "geometry": {"type": "Point", "coordinates": [2.298585218601294, 48.877545158770765]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a27c8db675bf26b113b3ca9787fc070f2c2732cb", "fields": {"departement": "75", "stop_lat": 48.875121390460386, "code_postal": "75108", "stop_lon": 2.30847875269421, "coord": [48.875121390460386, 2.30847875269421], "stop_id": 4472684, "stop_desc": "174 BOULEVARD HAUSSMANN - 75108", "stop_name": "HAUSSMANN - COURCELLES"}, "geometry": {"type": "Point", "coordinates": [2.30847875269421, 48.875121390460386]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "57a7d6e6d9f3e8399353e70537011424e2ee022a", "fields": {"departement": "75", "stop_lat": 48.874863096583965, "code_postal": "75108", "stop_lon": 2.3207958046274593, "coord": [48.874863096583965, 2.3207958046274593], "stop_id": 4472687, "stop_desc": "FACE 24 RUE DE LA PEPINIERE - 75108", "stop_name": "SAINT-AUGUSTIN"}, "geometry": {"type": "Point", "coordinates": [2.3207958046274593, 48.874863096583965]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2002092e9b5d4f0a710bb8d93f376b6e764392f6", "fields": {"departement": "75", "stop_lat": 48.874261363183884, "code_postal": "75108", "stop_lon": 2.324147681777442, "coord": [48.874261363183884, 2.324147681777442], "stop_id": 4472692, "stop_desc": "86 BOULEVARD HAUSSMANN - 75108", "stop_name": "PASQUIER - ANJOU"}, "geometry": {"type": "Point", "coordinates": [2.324147681777442, 48.874261363183884]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cdb3852216a5fa97fef022a4af2f0925ed952edb", "fields": {"departement": "75", "stop_lat": 48.878707984696156, "code_postal": "75117", "stop_lon": 2.284236266860388, "coord": [48.878707984696156, 2.284236266860388], "stop_id": 4472696, "stop_desc": "FACE 93 BOULEVARD GOUVION-SAINT-CYR - 75117", "stop_name": "PORTE MAILLOT - PALAIS DES CONGRES"}, "geometry": {"type": "Point", "coordinates": [2.284236266860388, 48.878707984696156]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "db971bdc34ce6d7230c2c8042fd537f697a9cca9", "fields": {"departement": "92", "stop_lat": 48.879163952428165, "code_postal": "92051", "stop_lon": 2.2791260385417873, "coord": [48.879163952428165, 2.2791260385417873], "stop_id": 4472697, "stop_desc": "16 AVENUE CHARLES DE GAULLE - 92051", "stop_name": "MONTROSIER"}, "geometry": {"type": "Point", "coordinates": [2.2791260385417873, 48.879163952428165]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "43d351eb2acb71c1a6b75229c9dad9901d655e17", "fields": {"departement": "92", "stop_lat": 48.89192062226174, "code_postal": "92026", "stop_lon": 2.2429120742176076, "coord": [48.89192062226174, 2.2429120742176076], "stop_id": 4472700, "stop_desc": "AVENUE ALBERT GLEIZES - 92026", "stop_name": "GAMBETTA"}, "geometry": {"type": "Point", "coordinates": [2.2429120742176076, 48.89192062226174]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "12cd024bf7ac18a50fa34aff49038dbe2097ae15", "fields": {"departement": "93", "stop_lat": 48.96139279294527, "code_postal": "93031", "stop_lon": 2.2962297642225384, "coord": [48.96139279294527, 2.2962297642225384], "stop_id": 4472711, "stop_desc": "AV JOFFRE - 93031", "stop_name": "CYGNE D'ENGHIEN"}, "geometry": {"type": "Point", "coordinates": [2.2962297642225384, 48.96139279294527]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e0a30a0f7b30698fd1a06ad5c3481a3752341a20", "fields": {"departement": "92", "stop_lat": 48.93510412850019, "code_postal": "92078", "stop_lon": 2.326587617791972, "coord": [48.93510412850019, 2.326587617791972], "stop_id": 4472733, "stop_desc": "AVENUE DE VERDUN - 92078", "stop_name": "LA NOUE"}, "geometry": {"type": "Point", "coordinates": [2.326587617791972, 48.93510412850019]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3aa6483d6b8677c9eaad1218df6b9915cb2a3d72", "fields": {"departement": "92", "stop_lat": 48.93478905920124, "code_postal": "92078", "stop_lon": 2.321758887065925, "coord": [48.93478905920124, 2.321758887065925], "stop_id": 4472735, "stop_desc": "AVENUE DE VERDUN - 92078", "stop_name": "CHEMIN DES RENIERS"}, "geometry": {"type": "Point", "coordinates": [2.321758887065925, 48.93478905920124]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0bfd82f1f3f1160e1621cd58ecdf1dbd81246df7", "fields": {"departement": "92", "stop_lat": 48.9343845303861, "code_postal": "92078", "stop_lon": 2.32085873121065, "coord": [48.9343845303861, 2.32085873121065], "stop_id": 4472736, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 92078", "stop_name": "CHEMIN DES RENIERS"}, "geometry": {"type": "Point", "coordinates": [2.32085873121065, 48.9343845303861]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1b73b737f51cdff2e87d61e52cdd21df9174dc14", "fields": {"departement": "92", "stop_lat": 48.931373892357634, "code_postal": "92036", "stop_lon": 2.288042404693419, "coord": [48.931373892357634, 2.288042404693419], "stop_id": 4472745, "stop_desc": "AVENUE LUCIEN LANTERNIER - 92036", "stop_name": "LE LUTH"}, "geometry": {"type": "Point", "coordinates": [2.288042404693419, 48.931373892357634]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "873191120528a10cc639928a0af83135fbf0a3d2", "fields": {"departement": "92", "stop_lat": 48.923329876851064, "code_postal": "92004", "stop_lon": 2.286304428319951, "coord": [48.923329876851064, 2.286304428319951], "stop_id": 4472750, "stop_desc": "BOULEVARD PIERRE DE COUBERTIN - 92004", "stop_name": "LES AGNETTES-METRO"}, "geometry": {"type": "Point", "coordinates": [2.286304428319951, 48.923329876851064]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "98419a4fea34d777c775ad2f224bf1815c035c89", "fields": {"departement": "92", "stop_lat": 48.90259408337223, "code_postal": "92024", "stop_lon": 2.3039921380474033, "coord": [48.90259408337223, 2.3039921380474033], "stop_id": 4472758, "stop_desc": "89 BOULEVARD JEAN JAURES - 92024", "stop_name": "MAIRIE DE CLICHY-METRO"}, "geometry": {"type": "Point", "coordinates": [2.3039921380474033, 48.90259408337223]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d58bb0e91a2f76a0a7a6687cc8882351ca70771b", "fields": {"departement": "75", "stop_lat": 48.891273377913336, "code_postal": "75117", "stop_lon": 2.3180102343336593, "coord": [48.891273377913336, 2.3180102343336593], "stop_id": 4472765, "stop_desc": "157 RUE CARDINET - 75117", "stop_name": "BROCHANT - CARDINET"}, "geometry": {"type": "Point", "coordinates": [2.3180102343336593, 48.891273377913336]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ad3be41ccfe47bc8e52bf0dec0d24d383e9e813f", "fields": {"departement": "75", "stop_lat": 48.87890753230554, "code_postal": "75108", "stop_lon": 2.32197997933179, "coord": [48.87890753230554, 2.32197997933179], "stop_id": 4472771, "stop_desc": "53 RUE DE ROME - 75108", "stop_name": "EUROPE"}, "geometry": {"type": "Point", "coordinates": [2.32197997933179, 48.87890753230554]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "32180697479816473b8452a976cd404853628d48", "fields": {"departement": "75", "stop_lat": 48.88891841168186, "code_postal": "75117", "stop_lon": 2.316103105578142, "coord": [48.88891841168186, 2.316103105578142], "stop_id": 4472776, "stop_desc": "152 RUE CARDINET - 75117", "stop_name": "PARC MARTIN LUTHER KING"}, "geometry": {"type": "Point", "coordinates": [2.316103105578142, 48.88891841168186]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4ecb87e84d0ec960eff235530f1f583422bf22bb", "fields": {"departement": "92", "stop_lat": 48.920365206951814, "code_postal": "92036", "stop_lon": 2.2887619809699933, "coord": [48.920365206951814, 2.2887619809699933], "stop_id": 4472781, "stop_desc": "RUE DES BAS - 92036", "stop_name": "GILLET"}, "geometry": {"type": "Point", "coordinates": [2.2887619809699933, 48.920365206951814]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e2b97e12d6508219ed1414c33035ea552020d5dd", "fields": {"departement": "93", "stop_lat": 48.949555286540274, "code_postal": "93079", "stop_lon": 2.341852898729762, "coord": [48.949555286540274, 2.341852898729762], "stop_id": 4472788, "stop_desc": "14-16 ROUTE DE SAINT-LEU - 93079", "stop_name": "CITE BLUMENTHAL"}, "geometry": {"type": "Point", "coordinates": [2.341852898729762, 48.949555286540274]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b992dfecf767ced9749ae4937faedffc1dc7251c", "fields": {"departement": "95", "stop_lat": 48.96987984977362, "code_postal": "95210", "stop_lon": 2.308917458272139, "coord": [48.96987984977362, 2.308917458272139], "stop_id": 4472791, "stop_desc": "9 RUE DE MALLEVILLE - 95210", "stop_name": "MAIRIE D'ENGHIEN-LES-BAINS"}, "geometry": {"type": "Point", "coordinates": [2.308917458272139, 48.96987984977362]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fccf2e273301951f78a0f5c1e79becf1eadbae14", "fields": {"departement": "93", "stop_lat": 48.86919924698499, "code_postal": "93032", "stop_lon": 2.5559379441143, "coord": [48.86919924698499, 2.5559379441143], "stop_id": 4472799, "stop_desc": "113 AV PAUL VAILLANT COUTURIER - 93032", "stop_name": "RUE DE LA POINTE"}, "geometry": {"type": "Point", "coordinates": [2.5559379441143, 48.86919924698499]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2344de9edce7da1b4744ac5230ac4bbd2c72cbd0", "fields": {"departement": "93", "stop_lat": 48.88071732063968, "code_postal": "93032", "stop_lon": 2.542864226332618, "coord": [48.88071732063968, 2.542864226332618], "stop_id": 4472807, "stop_desc": "RUE JULES GUESDE - 93032", "stop_name": "JEAN MOULIN"}, "geometry": {"type": "Point", "coordinates": [2.542864226332618, 48.88071732063968]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a0c957b47bec45601ab056bb23b820e56f47517d", "fields": {"departement": "93", "stop_lat": 48.88316949263554, "code_postal": "93032", "stop_lon": 2.532994286367524, "coord": [48.88316949263554, 2.532994286367524], "stop_id": 4472811, "stop_desc": "FACE 16 AVENUE PARMENTIER - 93032", "stop_name": "JEAN JAURES - HENRI BARBUSSE"}, "geometry": {"type": "Point", "coordinates": [2.532994286367524, 48.88316949263554]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fff35f5224be54851f8c8a9739633f9e1ae07c91", "fields": {"departement": "93", "stop_lat": 48.884963221706364, "code_postal": "93077", "stop_lon": 2.506045686703492, "coord": [48.884963221706364, 2.506045686703492], "stop_id": 4472820, "stop_desc": "12 TER AV DE ROSNY - 93077", "stop_name": "AVENUE DU RAINCY"}, "geometry": {"type": "Point", "coordinates": [2.506045686703492, 48.884963221706364]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4f51a4c01a1d8fc77d5697994209bef381a07d82", "fields": {"departement": "93", "stop_lat": 48.88443086356306, "code_postal": "93077", "stop_lon": 2.507529344691353, "coord": [48.88443086356306, 2.507529344691353], "stop_id": 4472821, "stop_desc": "1 RUE GRANDE RUE - 93077", "stop_name": "AVENUE DU RAINCY"}, "geometry": {"type": "Point", "coordinates": [2.507529344691353, 48.88443086356306]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "22865f5ea811e4e5e12a7ae45e04cde66ff3e6b6", "fields": {"departement": "93", "stop_lat": 48.884923836097904, "code_postal": "93077", "stop_lon": 2.5020799344980236, "coord": [48.884923836097904, 2.5020799344980236], "stop_id": 4472822, "stop_desc": "FACE 67 AV DE ROSNY - 93077", "stop_name": "MEISSONIER"}, "geometry": {"type": "Point", "coordinates": [2.5020799344980236, 48.884923836097904]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fb625f7dd9a6c82035bde425911cc8924f45ad00", "fields": {"departement": "93", "stop_lat": 48.88345582949369, "code_postal": "93077", "stop_lon": 2.4977554485461115, "coord": [48.88345582949369, 2.4977554485461115], "stop_id": 4472824, "stop_desc": "ROUTE DE NOISY - 93077", "stop_name": "CIMETIERE DE VILLEMOMBLE"}, "geometry": {"type": "Point", "coordinates": [2.4977554485461115, 48.88345582949369]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ec96a023ded846380812a3f8ed3aad29d58f4ee7", "fields": {"departement": "93", "stop_lat": 48.88324072702506, "code_postal": "93064", "stop_lon": 2.4904778963421714, "coord": [48.88324072702506, 2.4904778963421714], "stop_id": 4472827, "stop_desc": "190-192 BOULEVARD ALSACE LORRAINE - 93064", "stop_name": "LES MARNAUDES"}, "geometry": {"type": "Point", "coordinates": [2.4904778963421714, 48.88324072702506]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "61557671c5ae9e040edf2368d8aac0913c1a0a2d", "fields": {"departement": "93", "stop_lat": 48.88445147468918, "code_postal": "93064", "stop_lon": 2.485371183853036, "coord": [48.88445147468918, 2.485371183853036], "stop_id": 4472828, "stop_desc": "91 BOULEVARD ALSACE-LORRAINE - 93064", "stop_name": "BOIS-PERRIER NORD"}, "geometry": {"type": "Point", "coordinates": [2.485371183853036, 48.88445147468918]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8d272b73ba6c0590925bab79b44d800a54211a10", "fields": {"departement": "93", "stop_lat": 48.88423567991556, "code_postal": "93064", "stop_lon": 2.4854523315455075, "coord": [48.88423567991556, 2.4854523315455075], "stop_id": 4472829, "stop_desc": "FACE 99 BOULEVARD ALSACE-LORRAINE - 93064", "stop_name": "BOIS-PERRIER NORD"}, "geometry": {"type": "Point", "coordinates": [2.4854523315455075, 48.88423567991556]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f3492d529f50119bd5784c84309f5690a2e4bfec", "fields": {"departement": "93", "stop_lat": 48.887204747437394, "code_postal": "93053", "stop_lon": 2.467239965354698, "coord": [48.887204747437394, 2.467239965354698], "stop_id": 4472835, "stop_desc": "189 RUE DE BREMENT - 93053", "stop_name": "BREMENT"}, "geometry": {"type": "Point", "coordinates": [2.467239965354698, 48.887204747437394]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "25508f5678a97ab38a131ce76bfefe6fb76ac764", "fields": {"departement": "93", "stop_lat": 48.88795206366205, "code_postal": "93053", "stop_lon": 2.457361281126736, "coord": [48.88795206366205, 2.457361281126736], "stop_id": 4472840, "stop_desc": "FACE 93 RUE DE BREMENT - 93053", "stop_name": "SALENGRO - AUFFRET"}, "geometry": {"type": "Point", "coordinates": [2.457361281126736, 48.88795206366205]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "43d08dcb826cf66b372b2cab70cfa271fc7d9f13", "fields": {"departement": "93", "stop_lat": 48.87796712857922, "code_postal": "93006", "stop_lon": 2.426830146332843, "coord": [48.87796712857922, 2.426830146332843], "stop_id": 4472850, "stop_desc": "217 RUE SADI CARNOT - 93006", "stop_name": "FLOREAL"}, "geometry": {"type": "Point", "coordinates": [2.426830146332843, 48.87796712857922]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "35d13e4cb4804e1effb2569fdecb70dffd56c6cc", "fields": {"departement": "93", "stop_lat": 48.87636861120778, "code_postal": "93006", "stop_lon": 2.4251923480377013, "coord": [48.87636861120778, 2.4251923480377013], "stop_id": 4472851, "stop_desc": "FACE 214 AVENUE PASTEUR - 93006", "stop_name": "CIMETIERE DE BAGNOLET"}, "geometry": {"type": "Point", "coordinates": [2.4251923480377013, 48.87636861120778]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5e0d7217a344499ca15c12901cba4b9c1e891caf", "fields": {"departement": "93", "stop_lat": 48.87968189832887, "code_postal": "93045", "stop_lon": 2.416695236771681, "coord": [48.87968189832887, 2.416695236771681], "stop_id": 4472856, "stop_desc": "6 BOULEVARD DE LA LIBERTE - 93045", "stop_name": "MAIRIE DES LILAS"}, "geometry": {"type": "Point", "coordinates": [2.416695236771681, 48.87968189832887]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ffbddb5cd76b31eb9273753dec27560a3342ad10", "fields": {"departement": "93", "stop_lat": 48.87848998242335, "code_postal": "93045", "stop_lon": 2.411433829034282, "coord": [48.87848998242335, 2.411433829034282], "stop_id": 4472858, "stop_desc": "44 R DE PARIS - 93045", "stop_name": "LES BRUYERES"}, "geometry": {"type": "Point", "coordinates": [2.411433829034282, 48.87848998242335]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e2733db0094849812537347ae593ebfc4e006e22", "fields": {"departement": "75", "stop_lat": 48.87711809537049, "code_postal": "75120", "stop_lon": 2.4061587988157935, "coord": [48.87711809537049, 2.4061587988157935], "stop_id": 4472859, "stop_desc": "349 RUE DE BELLEVILLE - 75120", "stop_name": "PORTE DES LILAS-METRO"}, "geometry": {"type": "Point", "coordinates": [2.4061587988157935, 48.87711809537049]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b707b5170a9116ec9e72f5de185d501045e9626f", "fields": {"departement": "75", "stop_lat": 48.87235895924468, "code_postal": "75119", "stop_lon": 2.377514313676753, "coord": [48.87235895924468, 2.377514313676753], "stop_id": 4472864, "stop_desc": "5 RUE DE BELLEVILLE - 75119", "stop_name": "BELLEVILLE"}, "geometry": {"type": "Point", "coordinates": [2.377514313676753, 48.87235895924468]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "247b36b7569ea648948d2f042225fc5f742ad8e9", "fields": {"departement": "75", "stop_lat": 48.86989862659334, "code_postal": "75110", "stop_lon": 2.3703872629076637, "coord": [48.86989862659334, 2.3703872629076637], "stop_id": 4472865, "stop_desc": "65 RUE DU FAUBOURG DU TEMPLE - 75110", "stop_name": "GONCOURT"}, "geometry": {"type": "Point", "coordinates": [2.3703872629076637, 48.86989862659334]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d7140f3456ec027ffb666c2405a166d9e22ff71e", "fields": {"departement": "75", "stop_lat": 48.86886163360014, "code_postal": "75120", "stop_lon": 2.381067285501073, "coord": [48.86886163360014, 2.381067285501073], "stop_id": 4472876, "stop_desc": "48 BOULEVARD DE BELLEVILLE - 75120", "stop_name": "COURONNES"}, "geometry": {"type": "Point", "coordinates": [2.381067285501073, 48.86886163360014]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bfd914bc5253d1b0a14ee26e276086aba9ba0f09", "fields": {"departement": "75", "stop_lat": 48.87212533036264, "code_postal": "75120", "stop_lon": 2.3773915146330897, "coord": [48.87212533036264, 2.3773915146330897], "stop_id": 4472877, "stop_desc": "4 RUE DE BELLEVILLE - 75120", "stop_name": "BELLEVILLE"}, "geometry": {"type": "Point", "coordinates": [2.3773915146330897, 48.87212533036264]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "532e3d27892e161b21ff607e7047956c71c8790f", "fields": {"departement": "91", "stop_lat": 48.706042051347254, "code_postal": "91161", "stop_lon": 2.3136514533219743, "coord": [48.706042051347254, 2.3136514533219743], "stop_id": 4472892, "stop_desc": "32 AVENUE MAZARIN - 91161", "stop_name": "COLLEGE DE CHILLY-MAZARIN"}, "geometry": {"type": "Point", "coordinates": [2.3136514533219743, 48.706042051347254]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dcf5cbaeca9a8b2c386de6a3cc4ccbf7c78fb09b", "fields": {"departement": "75", "stop_lat": 48.845677278703754, "code_postal": "75112", "stop_lon": 2.3712296777810264, "coord": [48.845677278703754, 2.3712296777810264], "stop_id": 3673588, "stop_desc": "15-17 BOULEVARD DIDEROT - 75112", "stop_name": "GARE DE LYON - DIDEROT"}, "geometry": {"type": "Point", "coordinates": [2.3712296777810264, 48.845677278703754]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bb444dac853e53a8d203817cc0cc162fba56c825", "fields": {"departement": "75", "stop_lat": 48.86455178820427, "code_postal": "75120", "stop_lon": 2.409561271654804, "coord": [48.86455178820427, 2.409561271654804], "stop_id": 3672266, "stop_desc": "2 AVENUE DE LA PORTE DE BAGNOLET - 75120", "stop_name": "PORTE DE BAGNOLET"}, "geometry": {"type": "Point", "coordinates": [2.409561271654804, 48.86455178820427]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d187a3658c353869c04499a4856ec405cd4cebd1", "fields": {"departement": "93", "stop_lat": 48.921359498339704, "code_postal": "93007", "stop_lon": 2.471921396034401, "coord": [48.921359498339704, 2.471921396034401], "stop_id": 3672252, "stop_desc": "41 AVENUE JEAN JAURES - 93007", "stop_name": "SURCOUF - JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.471921396034401, 48.921359498339704]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c003e9fda828a49de2eb2522e78a7f39677a24db", "fields": {"departement": "93", "stop_lat": 49.01048426253027, "code_postal": "93073", "stop_lon": 2.559308602563976, "coord": [49.01048426253027, 2.559308602563976], "stop_id": 3672261, "stop_desc": "AEROPORT CHARLES DE GAULLE (T3) - 93073", "stop_name": "ROISSYPOLE"}, "geometry": {"type": "Point", "coordinates": [2.559308602563976, 49.01048426253027]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fb3f826da468d85696ccc2b1256927349c79ec00", "fields": {"departement": "93", "stop_lat": 48.918161074606274, "code_postal": "93010", "stop_lon": 2.478867597962442, "coord": [48.918161074606274, 2.478867597962442], "stop_id": 3672275, "stop_desc": "AVENUE LEON JOUHAUX - 93010", "stop_name": "JOUHAUX - BLUM"}, "geometry": {"type": "Point", "coordinates": [2.478867597962442, 48.918161074606274]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2076dfd83f847ad908452882ea938d4428b37adb", "fields": {"departement": "75", "stop_lat": 48.85525560358834, "code_postal": "75111", "stop_lon": 2.3785906169257642, "coord": [48.85525560358834, 2.3785906169257642], "stop_id": 3673593, "stop_desc": "150 AVENUE LEDRU ROLLIN - 75111", "stop_name": "BASFROI"}, "geometry": {"type": "Point", "coordinates": [2.3785906169257642, 48.85525560358834]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3e16d05afb76a5e0f39ae58000e1e0ea6a6244f0", "fields": {"departement": "75", "stop_lat": 48.86404002762893, "code_postal": "75120", "stop_lon": 2.391688416422633, "coord": [48.86404002762893, 2.391688416422633], "stop_id": 3673602, "stop_desc": "35-37 AVENUE GAMBETTA - 75120", "stop_name": "MURIERS"}, "geometry": {"type": "Point", "coordinates": [2.391688416422633, 48.86404002762893]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9176eaa30f632c20fcd3e7991d5e0c340912630e", "fields": {"departement": "75", "stop_lat": 48.847877242580424, "code_postal": "75112", "stop_lon": 2.3986165404125455, "coord": [48.847877242580424, 2.3986165404125455], "stop_id": 3672262, "stop_desc": "6 AVENUE DU TRONE - 75112", "stop_name": "NATION"}, "geometry": {"type": "Point", "coordinates": [2.3986165404125455, 48.847877242580424]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "26bfd15e625f1fad5a4910394bca6e6804c56c74", "fields": {"departement": "75", "stop_lat": 48.858176462733276, "code_postal": "75120", "stop_lon": 2.4147418014332063, "coord": [48.858176462733276, 2.4147418014332063], "stop_id": 3672242, "stop_desc": "50 AVENUE DU PROFESSEUR ANDRE LEMIERRE - 75120", "stop_name": "EDOUARD VAILLANT"}, "geometry": {"type": "Point", "coordinates": [2.4147418014332063, 48.858176462733276]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0cf0edce0c3282a91c7e613d9e6c11dc50c5039c", "fields": {"departement": "93", "stop_lat": 49.003932683419556, "code_postal": "93073", "stop_lon": 2.5643752610380326, "coord": [49.003932683419556, 2.5643752610380326], "stop_id": 3672224, "stop_desc": "VOIE PRIVEE AEROPORT CHARLES DE GAULLE - 93073", "stop_name": "TERMINAL 2B-2D"}, "geometry": {"type": "Point", "coordinates": [2.5643752610380326, 49.003932683419556]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5d38ad4e7bbd6b73785819396d210862208c4de8", "fields": {"departement": "93", "stop_lat": 49.004269809288566, "code_postal": "93073", "stop_lon": 2.5712882222403115, "coord": [49.004269809288566, 2.5712882222403115], "stop_id": 3672223, "stop_desc": "AEROPORT CHARLES DE GAULLE - 93073", "stop_name": "GARE TGV-SNCF"}, "geometry": {"type": "Point", "coordinates": [2.5712882222403115, 49.004269809288566]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d45b9b43d2654567916821581acf718b346361dc", "fields": {"departement": "93", "stop_lat": 48.91859536998403, "code_postal": "93010", "stop_lon": 2.4763869562903142, "coord": [48.91859536998403, 2.4763869562903142], "stop_id": 3672231, "stop_desc": "18 AVENUE DE SURCOUF - 93010", "stop_name": "JARDINS DE LA NOUE"}, "geometry": {"type": "Point", "coordinates": [2.4763869562903142, 48.91859536998403]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e65cff9206f0734211be69a091d31cfb5719c5d4", "fields": {"departement": "95", "stop_lat": 49.01237299186272, "code_postal": "95527", "stop_lon": 2.5213522952243, "coord": [49.01237299186272, 2.5213522952243], "stop_id": 3672216, "stop_desc": "ROUTE DE L'ARPENTEUR - 95527", "stop_name": "RUE DES 2 SOEURS"}, "geometry": {"type": "Point", "coordinates": [2.5213522952243, 49.01237299186272]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "def5ce8e6ff2d840f4f2d7f242a3c5ad0648f01a", "fields": {"departement": "93", "stop_lat": 48.99438721579055, "code_postal": "93073", "stop_lon": 2.523978589947988, "coord": [48.99438721579055, 2.523978589947988], "stop_id": 3672213, "stop_desc": "RUE DES BUISSONS - 93073", "stop_name": "MARGUILLIERS."}, "geometry": {"type": "Point", "coordinates": [2.523978589947988, 48.99438721579055]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8e557b28b8043ce2a7e1ca69b846afcca99d22f8", "fields": {"departement": "95", "stop_lat": 49.00218945953258, "code_postal": "95527", "stop_lon": 2.528363818569231, "coord": [49.00218945953258, 2.528363818569231], "stop_id": 3672229, "stop_desc": "RUE DES 2 CEDRES - 95527", "stop_name": "LES 2 CEDRES"}, "geometry": {"type": "Point", "coordinates": [2.528363818569231, 49.00218945953258]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "366031999180fbbad30b040f8f912fab390b2814", "fields": {"departement": "75", "stop_lat": 48.848929915496655, "code_postal": "75111", "stop_lon": 2.3963708007370164, "coord": [48.848929915496655, 2.3963708007370164], "stop_id": 3672236, "stop_desc": "13 PLACE DE LA NATION - 75111", "stop_name": "NATION"}, "geometry": {"type": "Point", "coordinates": [2.3963708007370164, 48.848929915496655]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5ac73f9832db5b47344f981a239cd6510657d756", "fields": {"departement": "75", "stop_lat": 48.85073400118568, "code_postal": "75120", "stop_lon": 2.416038065609302, "coord": [48.85073400118568, 2.416038065609302], "stop_id": 3672240, "stop_desc": "30 AV LEON GAUMONT - 75120", "stop_name": "ERIGNAC"}, "geometry": {"type": "Point", "coordinates": [2.416038065609302, 48.85073400118568]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "910d556aa04304db725b5df6bc77e7f52b99ea57", "fields": {"departement": "93", "stop_lat": 48.91748955522082, "code_postal": "93010", "stop_lon": 2.484224762465009, "coord": [48.91748955522082, 2.484224762465009], "stop_id": 3672249, "stop_desc": "VOIE NOUVELLE - 93010", "stop_name": "RABELAIS"}, "geometry": {"type": "Point", "coordinates": [2.484224762465009, 48.91748955522082]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "17a6cec6b8d219b8f8dcb966e556c14c380c6066", "fields": {"departement": "93", "stop_lat": 48.88738025249704, "code_postal": "93061", "stop_lon": 2.4083393240715614, "coord": [48.88738025249704, 2.4083393240715614], "stop_id": 3673622, "stop_desc": "FACE 49 RUE GABRIEL PERI - 93061", "stop_name": "CIMETIERE DE LE_PRE-SAINT-GERVAIS"}, "geometry": {"type": "Point", "coordinates": [2.4083393240715614, 48.88738025249704]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a36009dd9834b3c236b2d065e689b2454054d2b2", "fields": {"departement": "93", "stop_lat": 48.89315577414329, "code_postal": "93055", "stop_lon": 2.4135810558400475, "coord": [48.89315577414329, 2.4135810558400475], "stop_id": 3673631, "stop_desc": "AVENUE JEAN LOLIVE - 93055", "stop_name": "EGLISE DE PANTIN-METRO"}, "geometry": {"type": "Point", "coordinates": [2.4135810558400475, 48.89315577414329]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "40b866d679224f2975e812a13f818c13bb1c3e34", "fields": {"departement": "77", "stop_lat": 48.83631061547948, "code_postal": "77258", "stop_lon": 2.6500685690430847, "coord": [48.83631061547948, 2.6500685690430847], "stop_id": 3677657, "stop_desc": "71 BOULEVARD DU SEGRAIS - 77258", "stop_name": "CAMILLE SAINT-SAENS"}, "geometry": {"type": "Point", "coordinates": [2.6500685690430847, 48.83631061547948]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a277548947a162b739b19fd5503378e46bbaa168", "fields": {"departement": "77", "stop_lat": 48.834946099371564, "code_postal": "77258", "stop_lon": 2.6528649348727154, "coord": [48.834946099371564, 2.6528649348727154], "stop_id": 3677656, "stop_desc": "98 BOULEVARD DU SEGRAIS - 77258", "stop_name": "COLLEGE DU SEGRAIS"}, "geometry": {"type": "Point", "coordinates": [2.6528649348727154, 48.834946099371564]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "76655dfbf93aa8c848ff1c89fd1446b3df09c414", "fields": {"departement": "77", "stop_lat": 48.83614306777382, "code_postal": "77468", "stop_lon": 2.6556360287324927, "coord": [48.83614306777382, 2.6556360287324927], "stop_id": 3677653, "stop_desc": "BOULEVARD DU SEGRAIS - 77468", "stop_name": "LYCEE JEAN MOULIN"}, "geometry": {"type": "Point", "coordinates": [2.6556360287324927, 48.83614306777382]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "181ba81de1f96a2c9737606dcae9e3a56a2aea85", "fields": {"departement": "77", "stop_lat": 48.838687039534086, "code_postal": "77468", "stop_lon": 2.6554610229056164, "coord": [48.838687039534086, 2.6554610229056164], "stop_id": 3677651, "stop_desc": "PISTE DANS LA GARE DES AUTOBUS - 77468", "stop_name": "TORCY RER"}, "geometry": {"type": "Point", "coordinates": [2.6554610229056164, 48.838687039534086]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7251dbfb9334ec98bc5cfbc8ed62cf18e1c3f8d6", "fields": {"departement": "77", "stop_lat": 48.84265388168164, "code_postal": "77468", "stop_lon": 2.6473971246159995, "coord": [48.84265388168164, 2.6473971246159995], "stop_id": 3677663, "stop_desc": "COURS DES LACS - 77468", "stop_name": "COLLEGE JEAN MONNET"}, "geometry": {"type": "Point", "coordinates": [2.6473971246159995, 48.84265388168164]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3c897ee146d9a4ba162dbc036ae72df1fcf022eb", "fields": {"departement": "93", "stop_lat": 48.88908644077639, "code_postal": "93055", "stop_lon": 2.410617647519979, "coord": [48.88908644077639, 2.410617647519979], "stop_id": 3673624, "stop_desc": "2 BIS RUE MEHUL - 93055", "stop_name": "PAUL BERT-CIMETIERE"}, "geometry": {"type": "Point", "coordinates": [2.410617647519979, 48.88908644077639]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d9b59596dd83128506ea7d228a2c446785b45625", "fields": {"departement": "75", "stop_lat": 48.87225690177819, "code_postal": "75120", "stop_lon": 2.404517432081378, "coord": [48.87225690177819, 2.404517432081378], "stop_id": 3673609, "stop_desc": "187 AVENUE GAMBETTA - 75120", "stop_name": "SAINT-FARGEAU"}, "geometry": {"type": "Point", "coordinates": [2.404517432081378, 48.87225690177819]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f453f45086554326bd9c5a82b87e66d99cab56f5", "fields": {"departement": "77", "stop_lat": 48.84112187480607, "code_postal": "77258", "stop_lon": 2.638496626429352, "coord": [48.84112187480607, 2.638496626429352], "stop_id": 3677667, "stop_desc": "RUE GABRIEL - 77258", "stop_name": "LA TOUR D'AUVERGNE"}, "geometry": {"type": "Point", "coordinates": [2.638496626429352, 48.84112187480607]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b232604eecfb8a74e978bf5477218f3091895944", "fields": {"departement": "77", "stop_lat": 48.84676361821815, "code_postal": "77337", "stop_lon": 2.613568309410896, "coord": [48.84676361821815, 2.613568309410896], "stop_id": 3677689, "stop_desc": "FACE AU 7 COURS DES ROCHES - 77337", "stop_name": "COLLEGE LE LUZARD"}, "geometry": {"type": "Point", "coordinates": [2.613568309410896, 48.84676361821815]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a40f75ef14e1db18856eb17bb421b4d0f8510648", "fields": {"departement": "77", "stop_lat": 48.83594845740181, "code_postal": "77258", "stop_lon": 2.6299028951720893, "coord": [48.83594845740181, 2.6299028951720893], "stop_id": 3677677, "stop_desc": "PL MARTIN LUTHER KING - 77258", "stop_name": "RUE DE LA FERME"}, "geometry": {"type": "Point", "coordinates": [2.6299028951720893, 48.83594845740181]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2e50934ceffd16520ff2d197efcab2e12106f81a", "fields": {"departement": "77", "stop_lat": 48.83505465641847, "code_postal": "77258", "stop_lon": 2.6387200775183013, "coord": [48.83505465641847, 2.6387200775183013], "stop_id": 3677671, "stop_desc": "RUE GABRIEL - 77258", "stop_name": "SEGRAIS - GABRIEL"}, "geometry": {"type": "Point", "coordinates": [2.6387200775183013, 48.83505465641847]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "08f14518bd6603fbc5bb50f27b2ef89192ea1df1", "fields": {"departement": "77", "stop_lat": 48.84276074387724, "code_postal": "77337", "stop_lon": 2.6150311934474253, "coord": [48.84276074387724, 2.6150311934474253], "stop_id": 3677686, "stop_desc": "COURS DES ROCHES - 77337", "stop_name": "NOISIEL RER"}, "geometry": {"type": "Point", "coordinates": [2.6150311934474253, 48.84276074387724]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "81544833eae3ec0b61320447e5a5ed0f32920c24", "fields": {"departement": "77", "stop_lat": 48.83882479616967, "code_postal": "77258", "stop_lon": 2.633418310732026, "coord": [48.83882479616967, 2.633418310732026], "stop_id": 3677678, "stop_desc": "RUE JEHAN SCARRON - 77258", "stop_name": "LOGNES RER"}, "geometry": {"type": "Point", "coordinates": [2.633418310732026, 48.83882479616967]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7c31573b1d29fd617aed685a9e0c8dac24487913", "fields": {"departement": "77", "stop_lat": 48.84427965547553, "code_postal": "77337", "stop_lon": 2.6263550159813795, "coord": [48.84427965547553, 2.6263550159813795], "stop_id": 3677683, "stop_desc": "ALLEE DE LA FERME - 77337", "stop_name": "LE VERGER"}, "geometry": {"type": "Point", "coordinates": [2.6263550159813795, 48.84427965547553]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ef41ec291f431fb7fd5c90b820a62245087d57f0", "fields": {"departement": "77", "stop_lat": 48.83521684538892, "code_postal": "77258", "stop_lon": 2.6385576448048016, "coord": [48.83521684538892, 2.6385576448048016], "stop_id": 3677670, "stop_desc": "R GABRIEL - 77258", "stop_name": "SEGRAIS - GABRIEL"}, "geometry": {"type": "Point", "coordinates": [2.6385576448048016, 48.83521684538892]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4d7db7d4ab9b0fd7c3c0bcff757762d9bf4c94d3", "fields": {"departement": "93", "stop_lat": 48.98943251427254, "code_postal": "93073", "stop_lon": 2.5259953160271786, "coord": [48.98943251427254, 2.5259953160271786], "stop_id": 3672207, "stop_desc": "FACE 15 RUE DE LA BELLE BORNE - 93073", "stop_name": "AEROVILLE - RUE DE LA BELLE BORNE"}, "geometry": {"type": "Point", "coordinates": [2.5259953160271786, 48.98943251427254]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "95bd6de691f512b5f9bc29f9da37fc926b058a92", "fields": {"departement": "75", "stop_lat": 48.84752230352113, "code_postal": "75120", "stop_lon": 2.406677811879984, "coord": [48.84752230352113, 2.406677811879984], "stop_id": 3672168, "stop_desc": "73 COURS DE VINCENNES - 75120", "stop_name": "PYRENEES - DOCTEUR NETTER"}, "geometry": {"type": "Point", "coordinates": [2.406677811879984, 48.84752230352113]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f1aa39ef82d487060a9a836528b34ada3b537cf5", "fields": {"departement": "93", "stop_lat": 48.92414475246889, "code_postal": "93007", "stop_lon": 2.4725423425858173, "coord": [48.92414475246889, 2.4725423425858173], "stop_id": 3672198, "stop_desc": "21 AVENUE JEAN BAPTISTE BUSNEL - 93007", "stop_name": "DANIELLE CASANOVA"}, "geometry": {"type": "Point", "coordinates": [2.4725423425858173, 48.92414475246889]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a8d74af7e3e0cd5ff787362b00fcc13707d64bda", "fields": {"departement": "93", "stop_lat": 48.92358657007136, "code_postal": "93007", "stop_lon": 2.4734136996778835, "coord": [48.92358657007136, 2.4734136996778835], "stop_id": 3672197, "stop_desc": "FACE 62 AVENUE DANIELLE CASANOVA - 93007", "stop_name": "DANIELLE CASANOVA"}, "geometry": {"type": "Point", "coordinates": [2.4734136996778835, 48.92358657007136]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "99df75a2e390d3d4ff789e76d00e41b4d97b120c", "fields": {"departement": "93", "stop_lat": 48.92806904712401, "code_postal": "93007", "stop_lon": 2.475157626866216, "coord": [48.92806904712401, 2.475157626866216], "stop_id": 3672201, "stop_desc": "FACE 52 AVENUE PAUL VAILLANT COUTURIER - 93007", "stop_name": "QUEBEC"}, "geometry": {"type": "Point", "coordinates": [2.475157626866216, 48.92806904712401]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ad8116ed203f2f0d3a7d841e3f219f5a27f8d326", "fields": {"departement": "93", "stop_lat": 48.99401510089086, "code_postal": "93073", "stop_lon": 2.52631247799206, "coord": [48.99401510089086, 2.52631247799206], "stop_id": 3672211, "stop_desc": "RUE DE LA JEUNE FILLE - 93073", "stop_name": "RUE DE LA JEUNE FILLE"}, "geometry": {"type": "Point", "coordinates": [2.52631247799206, 48.99401510089086]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0e1d6154f212ed9929084c95569c1309fa4d8966", "fields": {"departement": "75", "stop_lat": 48.85392494426368, "code_postal": "75120", "stop_lon": 2.415443658762252, "coord": [48.85392494426368, 2.415443658762252], "stop_id": 3672175, "stop_desc": "20 AVENUE BENOIT FRACHON - 75120", "stop_name": "RUE DE PARIS"}, "geometry": {"type": "Point", "coordinates": [2.415443658762252, 48.85392494426368]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0d75df5410bfd7673df717331f075d1951a2e962", "fields": {"departement": "93", "stop_lat": 48.91332218067506, "code_postal": "93010", "stop_lon": 2.4820995089248123, "coord": [48.91332218067506, 2.4820995089248123], "stop_id": 3672189, "stop_desc": "AV HENRI VARAGNAT - 93010", "stop_name": "SUZANNE BUISSON"}, "geometry": {"type": "Point", "coordinates": [2.4820995089248123, 48.91332218067506]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3bdd4c508058f6e7ee5eab19f8677730e69f2a18", "fields": {"departement": "75", "stop_lat": 48.85166900324821, "code_postal": "75120", "stop_lon": 2.4155764461644758, "coord": [48.85166900324821, 2.4155764461644758], "stop_id": 3672174, "stop_desc": "AVENUE LEON GAUMONT - 75120", "stop_name": "ERIGNAC"}, "geometry": {"type": "Point", "coordinates": [2.4155764461644758, 48.85166900324821]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5b0c8421fcda4c66af90802aac5180c011bd0944", "fields": {"departement": "93", "stop_lat": 48.91748955522082, "code_postal": "93010", "stop_lon": 2.484224762465009, "coord": [48.91748955522082, 2.484224762465009], "stop_id": 3672190, "stop_desc": "VOIE NOUVELLE - 93010", "stop_name": "RABELAIS"}, "geometry": {"type": "Point", "coordinates": [2.484224762465009, 48.91748955522082]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2a8548a9dabae030dbf326a7a3be67092902df54", "fields": {"departement": "77", "stop_lat": 48.85168847367512, "code_postal": "77337", "stop_lon": 2.621343697651208, "coord": [48.85168847367512, 2.621343697651208], "stop_id": 3677692, "stop_desc": "ROND-POINT DES QUATRE PAVES - 77337", "stop_name": "LES QUATRE PAVES"}, "geometry": {"type": "Point", "coordinates": [2.621343697651208, 48.85168847367512]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2869567964edfb13d94d740dbb7908d92f7f0868", "fields": {"departement": "77", "stop_lat": 48.85450725445994, "code_postal": "77468", "stop_lon": 2.6373486008770706, "coord": [48.85450725445994, 2.6373486008770706], "stop_id": 3677706, "stop_desc": "RUE JEAN JAURES - 77468", "stop_name": "LA FOSSE AUX LOUPS"}, "geometry": {"type": "Point", "coordinates": [2.6373486008770706, 48.85450725445994]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dff208cfaa7f07a450a98eba0c78d608f9aeb094", "fields": {"departement": "77", "stop_lat": 48.85459760854207, "code_postal": "77468", "stop_lon": 2.637158448222115, "coord": [48.85459760854207, 2.637158448222115], "stop_id": 3677707, "stop_desc": "R JEAN JAURES - 77468", "stop_name": "LA FOSSE AUX LOUPS"}, "geometry": {"type": "Point", "coordinates": [2.637158448222115, 48.85459760854207]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f5d24cb6995de5bae53c3ba6c041ed29135f8adc", "fields": {"departement": "77", "stop_lat": 48.85602213463216, "code_postal": "77337", "stop_lon": 2.6243910840687716, "coord": [48.85602213463216, 2.6243910840687716], "stop_id": 3677694, "stop_desc": "BOULEVARD PIERRE CARLE - 77337", "stop_name": "CHOCOLATERIE"}, "geometry": {"type": "Point", "coordinates": [2.6243910840687716, 48.85602213463216]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5951271300dfdac0d2926e5227e6a5590717c731", "fields": {"departement": "77", "stop_lat": 48.85479638969216, "code_postal": "77468", "stop_lon": 2.6402921349589046, "coord": [48.85479638969216, 2.6402921349589046], "stop_id": 3677708, "stop_desc": "RUE JEAN JAURES - 77468", "stop_name": "LA MALTOURNEE"}, "geometry": {"type": "Point", "coordinates": [2.6402921349589046, 48.85479638969216]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fc01322ffea9eb9f1e84eb269133aa4ad321c591", "fields": {"departement": "77", "stop_lat": 48.85110871780549, "code_postal": "77337", "stop_lon": 2.6269650659664032, "coord": [48.85110871780549, 2.6269650659664032], "stop_id": 3677699, "stop_desc": "192 R CLAIRE MENIER - 77337", "stop_name": "JULES FERRY"}, "geometry": {"type": "Point", "coordinates": [2.6269650659664032, 48.85110871780549]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "201ebfa446b0b562a3a1a364df4ce97ced14cfeb", "fields": {"departement": "77", "stop_lat": 48.851531362655635, "code_postal": "77468", "stop_lon": 2.637753568468366, "coord": [48.851531362655635, 2.637753568468366], "stop_id": 3677704, "stop_desc": "RUE DE LA MOGOTTE - 77468", "stop_name": "LA MOGOTTE"}, "geometry": {"type": "Point", "coordinates": [2.637753568468366, 48.851531362655635]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3560b4b1d15de282d371b667365342abc3507d0b", "fields": {"departement": "94", "stop_lat": 48.844202199662014, "code_postal": "94015", "stop_lon": 2.5261205119327497, "coord": [48.844202199662014, 2.5261205119327497], "stop_id": 3682633, "stop_desc": "RUE ETIENNE DE SILHOUETTE - 94015", "stop_name": "BRY-SUR-MARNE RER"}, "geometry": {"type": "Point", "coordinates": [2.5261205119327497, 48.844202199662014]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "34cb033ad10945ec4b425fdbf57e1bb0ea7a15f6", "fields": {"departement": "77", "stop_lat": 48.84676361821815, "code_postal": "77337", "stop_lon": 2.613568309410896, "coord": [48.84676361821815, 2.613568309410896], "stop_id": 3682672, "stop_desc": "FACE AU 7 COURS DES ROCHES - 77337", "stop_name": "COLLEGE LE LUZARD"}, "geometry": {"type": "Point", "coordinates": [2.613568309410896, 48.84676361821815]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "db282ca542df3c7b7f1190bf71d5fd12fa51deab", "fields": {"departement": "93", "stop_lat": 48.853105174374925, "code_postal": "93051", "stop_lon": 2.5734933846867474, "coord": [48.853105174374925, 2.5734933846867474], "stop_id": 3682650, "stop_desc": "FACE98/100 ROUTE DE GOURNAY - 93051", "stop_name": "LES PREVOYANTS"}, "geometry": {"type": "Point", "coordinates": [2.5734933846867474, 48.853105174374925]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bb75780614ca9296c0a0123e59bc09b0392433f2", "fields": {"departement": "77", "stop_lat": 48.84847517625808, "code_postal": "77337", "stop_lon": 2.6157426968813824, "coord": [48.84847517625808, 2.6157426968813824], "stop_id": 3682668, "stop_desc": "36 COURS DES DEUX PARCS - 77337", "stop_name": "SQUARE DE DIANE"}, "geometry": {"type": "Point", "coordinates": [2.6157426968813824, 48.84847517625808]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5bd271b3ee68b48f0022960b570003987bebb47d", "fields": {"departement": "93", "stop_lat": 48.84922099836181, "code_postal": "93051", "stop_lon": 2.565073251544943, "coord": [48.84922099836181, 2.565073251544943], "stop_id": 3682647, "stop_desc": "FACE 1 PLACE DU 8 MAI - 93051", "stop_name": "POINTE DE GOURNAY"}, "geometry": {"type": "Point", "coordinates": [2.565073251544943, 48.84922099836181]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7f5b409df98e14a4bcb509f9dfe9a8093d2cb300", "fields": {"departement": "77", "stop_lat": 48.849985955636875, "code_postal": "77337", "stop_lon": 2.6153694914997123, "coord": [48.849985955636875, 2.6153694914997123], "stop_id": 3682667, "stop_desc": "1 COURS DES DEUX PARC - 77337", "stop_name": "LE CARRE DU FAON"}, "geometry": {"type": "Point", "coordinates": [2.6153694914997123, 48.849985955636875]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6a93f57e3a7909eacaac6c8d700e1bcdd7c31fc5", "fields": {"departement": "93", "stop_lat": 48.85558974422964, "code_postal": "93033", "stop_lon": 2.575983523003637, "coord": [48.85558974422964, 2.575983523003637], "stop_id": 3682652, "stop_desc": "FACE 47 AVENUE ARISTIDE BRIAND - 93033", "stop_name": "LES ROSIERS"}, "geometry": {"type": "Point", "coordinates": [2.575983523003637, 48.85558974422964]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7a30bcc3048631aeaaee5cdab9a28df5bef0e738", "fields": {"departement": "93", "stop_lat": 48.84686104899811, "code_postal": "93051", "stop_lon": 2.532598545026048, "coord": [48.84686104899811, 2.532598545026048], "stop_id": 3682637, "stop_desc": "40-42 BOULEVARD DU MARECHAL FOCH - 93051", "stop_name": "VERDUN"}, "geometry": {"type": "Point", "coordinates": [2.532598545026048, 48.84686104899811]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b5f27702d498d30102d8a667363c4fa42a856136", "fields": {"departement": "77", "stop_lat": 48.85258832961184, "code_postal": "77083", "stop_lon": 2.609322932107952, "coord": [48.85258832961184, 2.609322932107952], "stop_id": 3682664, "stop_desc": "RUE DE PARIS - 77083", "stop_name": "MAISON DE RETRAITE"}, "geometry": {"type": "Point", "coordinates": [2.609322932107952, 48.85258832961184]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7800715a91bcb02180c8a35e05fe6645b85123bc", "fields": {"departement": "93", "stop_lat": 48.89701657388483, "code_postal": "93010", "stop_lon": 2.477105972939903, "coord": [48.89701657388483, 2.477105972939903], "stop_id": 3682354, "stop_desc": "106 RUE SALENGRO - 93010", "stop_name": "SALENGRO"}, "geometry": {"type": "Point", "coordinates": [2.477105972939903, 48.89701657388483]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "824e32847cbf5dccb5855aba561d5598114cedef", "fields": {"departement": "93", "stop_lat": 48.90921327860059, "code_postal": "93057", "stop_lon": 2.504120498720451, "coord": [48.90921327860059, 2.504120498720451], "stop_id": 3682040, "stop_desc": "140 AVENUE ARISTIDE BRIAND - 93057", "stop_name": "EGLISE DES PAVILLONS-SOUS-BOIS"}, "geometry": {"type": "Point", "coordinates": [2.504120498720451, 48.90921327860059]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e6b173e977c5bb05aa68e0c309addee94791ffbc", "fields": {"departement": "92", "stop_lat": 48.787037998768085, "code_postal": "92023", "stop_lon": 2.2457685628922226, "coord": [48.787037998768085, 2.2457685628922226], "stop_id": 3681977, "stop_desc": "FACE 179 R DE LA PORTE DE TRIVAUX - 92023", "stop_name": "CIMETIERE INTERCOMMUNAL"}, "geometry": {"type": "Point", "coordinates": [2.2457685628922226, 48.787037998768085]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5e265396c6a80beabc7a77d725563bab6477723b", "fields": {"departement": "92", "stop_lat": 48.78687634148946, "code_postal": "92023", "stop_lon": 2.245932069536149, "coord": [48.78687634148946, 2.245932069536149], "stop_id": 3682003, "stop_desc": "183 R DE LA PORTE DE TRIVAUX - 92023", "stop_name": "CIMETIERE INTERCOMMUNAL"}, "geometry": {"type": "Point", "coordinates": [2.245932069536149, 48.78687634148946]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4d08b21957f3521e31d53eeed0a5053621447972", "fields": {"departement": "93", "stop_lat": 48.893092994757275, "code_postal": "93055", "stop_lon": 2.4133765179207964, "coord": [48.893092994757275, 2.4133765179207964], "stop_id": 3682020, "stop_desc": "AVENUE JEAN LOLIVE - 93055", "stop_name": "EGLISE DE PANTIN-METRO"}, "geometry": {"type": "Point", "coordinates": [2.4133765179207964, 48.893092994757275]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b65e3b927df5ce1155d7d01cdb2384b7de6fd1f3", "fields": {"departement": "93", "stop_lat": 48.90223634032105, "code_postal": "93053", "stop_lon": 2.4625200653178942, "coord": [48.90223634032105, 2.4625200653178942], "stop_id": 3682029, "stop_desc": "FACE 41 RUE DE PARIS - 93053", "stop_name": "USINE DE LA MADELEINE"}, "geometry": {"type": "Point", "coordinates": [2.4625200653178942, 48.90223634032105]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bc58128f0b1eae1c3fe148d88637c61d4b6c799f", "fields": {"departement": "92", "stop_lat": 48.81209081636463, "code_postal": "92046", "stop_lon": 2.280548379801124, "coord": [48.81209081636463, 2.280548379801124], "stop_id": 3681983, "stop_desc": "FACE 52 BOULEVARD DU COLONEL FABIEN - 92046", "stop_name": "COLONEL FABIEN"}, "geometry": {"type": "Point", "coordinates": [2.280548379801124, 48.81209081636463]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c2867cb9d65c0c5d97f0cc1ee3f3ce05c486f4ca", "fields": {"departement": "92", "stop_lat": 48.81202468926008, "code_postal": "92046", "stop_lon": 2.2943473772686493, "coord": [48.81202468926008, 2.2943473772686493], "stop_id": 3681981, "stop_desc": "44 R DU 19 MARS 1962 - 92046", "stop_name": "ROND-POINT GAGARINE"}, "geometry": {"type": "Point", "coordinates": [2.2943473772686493, 48.81202468926008]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7e544e31de4f3e673f609d01d7836786d372e452", "fields": {"departement": "92", "stop_lat": 48.82049347835953, "code_postal": "92046", "stop_lon": 2.3014587343882518, "coord": [48.82049347835953, 2.3014587343882518], "stop_id": 3682013, "stop_desc": "19 R BERANGER - 92046", "stop_name": "HOTEL DE VILLE DE MALAKOFF"}, "geometry": {"type": "Point", "coordinates": [2.3014587343882518, 48.82049347835953]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "172c3c74602b5fa4e36e30c9eb68ba27cf510d5e", "fields": {"departement": "93", "stop_lat": 48.90803786721315, "code_postal": "93057", "stop_lon": 2.4961546603940876, "coord": [48.90803786721315, 2.4961546603940876], "stop_id": 3682038, "stop_desc": "62 AVENUE ARISTIDE BRIAND - 93057", "stop_name": "LA FOURCHE"}, "geometry": {"type": "Point", "coordinates": [2.4961546603940876, 48.90803786721315]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b962e751bc665629c77c784264dc1d108ea52633", "fields": {"departement": "93", "stop_lat": 48.907969430629855, "code_postal": "93057", "stop_lon": 2.4935367931702235, "coord": [48.907969430629855, 2.4935367931702235], "stop_id": 3682039, "stop_desc": "11 AVENUE ARISTIDE BRIAND - 93057", "stop_name": "LA FOURCHE"}, "geometry": {"type": "Point", "coordinates": [2.4935367931702235, 48.907969430629855]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "91d922754a162352ad99967f14bc33bcf12dbe8a", "fields": {"departement": "93", "stop_lat": 48.900922655507664, "code_postal": "93047", "stop_lon": 2.5709986516900187, "coord": [48.900922655507664, 2.5709986516900187], "stop_id": 3682254, "stop_desc": "3 RUE DU GENERAL LECLERC - 93047", "stop_name": "HOTEL DE VILLE DE MONTFERMEIL"}, "geometry": {"type": "Point", "coordinates": [2.5709986516900187, 48.900922655507664]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ed21d0833c0a7177360c03e35ae62f56368d4c6e", "fields": {"departement": "93", "stop_lat": 48.89897493409345, "code_postal": "93047", "stop_lon": 2.5742886405139136, "coord": [48.89897493409345, 2.5742886405139136], "stop_id": 3682245, "stop_desc": "RUE DES JARDINS - 93047", "stop_name": "HOPITAL DE MONTFERMEIL"}, "geometry": {"type": "Point", "coordinates": [2.5742886405139136, 48.89897493409345]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c6d24ab12a582cb4fc643030478e8a58be8fe2be", "fields": {"departement": "93", "stop_lat": 48.912230461780204, "code_postal": "93014", "stop_lon": 2.550747482095315, "coord": [48.912230461780204, 2.550747482095315], "stop_id": 3682260, "stop_desc": "FACE 2 ALLEE DE COUBRON - 93014", "stop_name": "LES MARRONNIERS"}, "geometry": {"type": "Point", "coordinates": [2.550747482095315, 48.912230461780204]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7dbba37af671918bca57f49c8e270523f1e7d4c6", "fields": {"departement": "93", "stop_lat": 48.88939625193998, "code_postal": "93010", "stop_lon": 2.4839134105672915, "coord": [48.88939625193998, 2.4839134105672915], "stop_id": 3682285, "stop_desc": "96 PL MENDES FRANCE - 93010", "stop_name": "PLACE MENDES FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.4839134105672915, 48.88939625193998]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5768d6cebee98cfe02a0faeaef015d25377b4878", "fields": {"departement": "93", "stop_lat": 48.8937544568861, "code_postal": "93010", "stop_lon": 2.498291649002699, "coord": [48.8937544568861, 2.498291649002699], "stop_id": 3682295, "stop_desc": "261 RUE EDOUARD VAILLANT - 93010", "stop_name": "LES COQUETIERS"}, "geometry": {"type": "Point", "coordinates": [2.498291649002699, 48.8937544568861]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "db465067cf34d754f7ed763a8e11e5bceab7a16a", "fields": {"departement": "93", "stop_lat": 48.90465529470359, "code_postal": "93047", "stop_lon": 2.560054727205467, "coord": [48.90465529470359, 2.560054727205467], "stop_id": 3682257, "stop_desc": "FACE 9 AVENUE DE CLICHY - 93047", "stop_name": "LES BOSQUETS"}, "geometry": {"type": "Point", "coordinates": [2.560054727205467, 48.90465529470359]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b67e7f42e658868085b4942eadb755533e5c044b", "fields": {"departement": "93", "stop_lat": 48.912055676467105, "code_postal": "93046", "stop_lon": 2.5207776395378794, "coord": [48.912055676467105, 2.5207776395378794], "stop_id": 3682267, "stop_desc": "FACE 300 AVENUE ARISTIDE BRIAND - 93046", "stop_name": "CHANZY"}, "geometry": {"type": "Point", "coordinates": [2.5207776395378794, 48.912055676467105]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "004cd215753f4fa3e122394bf3ac1f8b1a72216a", "fields": {"departement": "93", "stop_lat": 48.90143387469284, "code_postal": "93047", "stop_lon": 2.5715326036408066, "coord": [48.90143387469284, 2.5715326036408066], "stop_id": 3682243, "stop_desc": "4 BIS RUE DU LAVOIR - 93047", "stop_name": "JEAN MERMOZ"}, "geometry": {"type": "Point", "coordinates": [2.5715326036408066, 48.90143387469284]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "07a081786d16d9319d2e94dc316c479edceaeb89", "fields": {"departement": "93", "stop_lat": 48.904385606533154, "code_postal": "93047", "stop_lon": 2.5648522841424146, "coord": [48.904385606533154, 2.5648522841424146], "stop_id": 3682248, "stop_desc": "25 BOULEVARD HARDY - 93047", "stop_name": "TUILERIE"}, "geometry": {"type": "Point", "coordinates": [2.5648522841424146, 48.904385606533154]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0b1ae9d1055f396b0ec416a1dc3e92a30686bf6c", "fields": {"departement": "93", "stop_lat": 48.89401766478635, "code_postal": "93010", "stop_lon": 2.496370642162232, "coord": [48.89401766478635, 2.496370642162232], "stop_id": 3682296, "stop_desc": "241 RUE DES ALOUETTES - 93010", "stop_name": "ALOUETTES"}, "geometry": {"type": "Point", "coordinates": [2.496370642162232, 48.89401766478635]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2dcab9060f80f14919bd0f452fafcfd041b79734", "fields": {"departement": "93", "stop_lat": 48.90104281606892, "code_postal": "93047", "stop_lon": 2.5692952134673757, "coord": [48.90104281606892, 2.5692952134673757], "stop_id": 3682241, "stop_desc": "FACE 65 RUE HENRI BARBUSSE - 93047", "stop_name": "HOTEL DE VILLE DE MONTFERMEIL"}, "geometry": {"type": "Point", "coordinates": [2.5692952134673757, 48.90104281606892]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e45b16b011889b46745183653fca789a6a384de2", "fields": {"departement": "93", "stop_lat": 48.912276867790325, "code_postal": "93046", "stop_lon": 2.5230281611109553, "coord": [48.912276867790325, 2.5230281611109553], "stop_id": 3682222, "stop_desc": "1 AVENUE CAMILLE DESMOULINS - 93046", "stop_name": "CHANZY - EGLISE SAINT-MICHEL"}, "geometry": {"type": "Point", "coordinates": [2.5230281611109553, 48.912276867790325]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a402ff15dd2d54c1a1895e41bc085cc809713a61", "fields": {"departement": "93", "stop_lat": 48.912814999783635, "code_postal": "93014", "stop_lon": 2.5402373617823164, "coord": [48.912814999783635, 2.5402373617823164], "stop_id": 3682228, "stop_desc": "3 AVENUE DE SEVIGNE - 93014", "stop_name": "AVENUE DU COTEAU - ECOLE NORMALE"}, "geometry": {"type": "Point", "coordinates": [2.5402373617823164, 48.912814999783635]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "20a391fc3e14b6b003cb6ff3baee4ed5ef2e77f9", "fields": {"departement": "93", "stop_lat": 48.91205253249752, "code_postal": "93046", "stop_lon": 2.5228092011847636, "coord": [48.91205253249752, 2.5228092011847636], "stop_id": 3682221, "stop_desc": "12 AVENUE CAMILLE DESMOULINS - 93046", "stop_name": "CHANZY - EGLISE SAINT-MICHEL"}, "geometry": {"type": "Point", "coordinates": [2.5228092011847636, 48.91205253249752]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8e5407496263b6607df0c1d96b7345c69eade90c", "fields": {"departement": "93", "stop_lat": 48.9119045057799, "code_postal": "93014", "stop_lon": 2.552095973224604, "coord": [48.9119045057799, 2.552095973224604], "stop_id": 3682231, "stop_desc": "FACE 7 ALLEE VEUVE LINDET GIRARD - 93014", "stop_name": "LES MARRONNIERS"}, "geometry": {"type": "Point", "coordinates": [2.552095973224604, 48.9119045057799]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e57f5f307da2515580165f320502489c3b4d2a22", "fields": {"departement": "93", "stop_lat": 48.90924174071748, "code_postal": "93014", "stop_lon": 2.553530134299135, "coord": [48.90924174071748, 2.553530134299135], "stop_id": 3682233, "stop_desc": "ALLEE VEUVE LINDET GIRARD - 93014", "stop_name": "LA PELOUSE"}, "geometry": {"type": "Point", "coordinates": [2.553530134299135, 48.90924174071748]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6f23229c51ca2f63deddc1ee64c962553a595584", "fields": {"departement": "93", "stop_lat": 48.90294012056257, "code_postal": "93047", "stop_lon": 2.564096156304684, "coord": [48.90294012056257, 2.564096156304684], "stop_id": 3682239, "stop_desc": "33 AVENUE PAUL BERT - 93047", "stop_name": "LES GAZELLES"}, "geometry": {"type": "Point", "coordinates": [2.564096156304684, 48.90294012056257]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a8429bebade5b3551112aada6113e6d094a96afe", "fields": {"departement": "93", "stop_lat": 48.90450010869527, "code_postal": "93010", "stop_lon": 2.4716730867766277, "coord": [48.90450010869527, 2.4716730867766277], "stop_id": 3682210, "stop_desc": "AVENUE GALLIENI - 93010", "stop_name": "AVENUE DE ROSNY"}, "geometry": {"type": "Point", "coordinates": [2.4716730867766277, 48.90450010869527]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "78ba879a5076052cb9671f6af1901879fe706b52", "fields": {"departement": "93", "stop_lat": 48.90386287775983, "code_postal": "93047", "stop_lon": 2.5608829071805457, "coord": [48.90386287775983, 2.5608829071805457], "stop_id": 3682237, "stop_desc": "AVENUE DE CLICHY - 93047", "stop_name": "LES BOSQUETS"}, "geometry": {"type": "Point", "coordinates": [2.5608829071805457, 48.90386287775983]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5f1ba5dd487cc51eab94cb6b49d6bc62c6f469aa", "fields": {"departement": "93", "stop_lat": 48.906457816424556, "code_postal": "93014", "stop_lon": 2.5573085596291145, "coord": [48.906457816424556, 2.5573085596291145], "stop_id": 3682235, "stop_desc": "AVENUE JEAN MOULIN - 93014", "stop_name": "EMILE ZOLA"}, "geometry": {"type": "Point", "coordinates": [2.5573085596291145, 48.906457816424556]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "216885e64343b25b38df2dbd17e33d2b293f8acf", "fields": {"departement": "93", "stop_lat": 48.918806643655756, "code_postal": "93046", "stop_lon": 2.536510802957832, "coord": [48.918806643655756, 2.536510802957832], "stop_id": 3682050, "stop_desc": "10 AVENUE DU CONSUL GENERAL NORDLING - 93046", "stop_name": "MAIRIE DE LIVRY - GARGAN"}, "geometry": {"type": "Point", "coordinates": [2.536510802957832, 48.918806643655756]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ab3e792ff65a6eb4d2abcaed66ef1ea4f5eac424", "fields": {"departement": "93", "stop_lat": 48.916863886008755, "code_postal": "93046", "stop_lon": 2.5320170898564878, "coord": [48.916863886008755, 2.5320170898564878], "stop_id": 3682102, "stop_desc": "FACE 69 AVENUE DU CONSUL GENERAL NORDLING - 93046", "stop_name": "CHARLES DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.5320170898564878, 48.916863886008755]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "241bb3c7d4fe3b153e58f643fb90b5f8a2a844f1", "fields": {"departement": "93", "stop_lat": 48.921905359266106, "code_postal": "93046", "stop_lon": 2.542864076399184, "coord": [48.921905359266106, 2.542864076399184], "stop_id": 3682051, "stop_desc": "FACE 4 AVENUE DU MARECHAL LECLERC - 93046", "stop_name": "PLACE DE LA LIBERATION"}, "geometry": {"type": "Point", "coordinates": [2.542864076399184, 48.921905359266106]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f53d9cf4ac31f08033f133a37a2d2212ccfe5df3", "fields": {"departement": "93", "stop_lat": 48.948312438689825, "code_postal": "93071", "stop_lon": 2.5299250318831574, "coord": [48.948312438689825, 2.5299250318831574], "stop_id": 3682073, "stop_desc": "AVENUE SALVADOR ALLENDE - 93071", "stop_name": "BUTTE MONTCELEUX"}, "geometry": {"type": "Point", "coordinates": [2.5299250318831574, 48.948312438689825]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a9a33844711c7e32ada0df7fd15293130aced1db", "fields": {"departement": "93", "stop_lat": 48.94815109590336, "code_postal": "93071", "stop_lon": 2.529665191083139, "coord": [48.94815109590336, 2.529665191083139], "stop_id": 3682072, "stop_desc": "AVENUE SALVADOR ALLENDE - 93071", "stop_name": "BUTTE MONTCELEUX"}, "geometry": {"type": "Point", "coordinates": [2.529665191083139, 48.94815109590336]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ee84e20fb23cf8d561da9b9750b7b364f44b76f9", "fields": {"departement": "93", "stop_lat": 48.929295651530516, "code_postal": "93046", "stop_lon": 2.541106673510697, "coord": [48.929295651530516, 2.541106673510697], "stop_id": 3682098, "stop_desc": "49 AVENUE JEAN-JACQUES ROUSSEAU - 93046", "stop_name": "MAUROUARD"}, "geometry": {"type": "Point", "coordinates": [2.541106673510697, 48.929295651530516]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d2a24aae0891fce72f7f1efc3fa1a4cd7299d4cd", "fields": {"departement": "93", "stop_lat": 48.94547989274723, "code_postal": "93071", "stop_lon": 2.5195727012335407, "coord": [48.94547989274723, 2.5195727012335407], "stop_id": 3682069, "stop_desc": "AVENUE DUMONT D'URVILLE - 93071", "stop_name": "COLLEGE GALOIS"}, "geometry": {"type": "Point", "coordinates": [2.5195727012335407, 48.94547989274723]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b63945cdfbc7b019bb19deeaab10bc1c90561242", "fields": {"departement": "93", "stop_lat": 48.937321424767774, "code_postal": "93071", "stop_lon": 2.53000690704112, "coord": [48.937321424767774, 2.53000690704112], "stop_id": 3682095, "stop_desc": "3 PLACE GASTON BUSSIERE - 93071", "stop_name": "GASTON BUSSIERE"}, "geometry": {"type": "Point", "coordinates": [2.53000690704112, 48.937321424767774]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "02d0d17a4a3d4b807111f95af2dc49877a215a8e", "fields": {"departement": "94", "stop_lat": 48.78820032893041, "code_postal": "94068", "stop_lon": 2.4804719249684917, "coord": [48.78820032893041, 2.4804719249684917], "stop_id": 3663611, "stop_desc": "FACE 68 AVENUE DU PORT-AU-FOUARRE - 94068", "stop_name": "LA PIE"}, "geometry": {"type": "Point", "coordinates": [2.4804719249684917, 48.78820032893041]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "12dde00e62faa424f8c42fd0ea06a63f1f5b57d0", "fields": {"departement": "94", "stop_lat": 48.80580785347852, "code_postal": "94046", "stop_lon": 2.455701704066623, "coord": [48.80580785347852, 2.455701704066623], "stop_id": 3663627, "stop_desc": "RUE MARC SANGNIER - 94046", "stop_name": "DANIELLE CASANOVA"}, "geometry": {"type": "Point", "coordinates": [2.455701704066623, 48.80580785347852]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0e44e4b485f5e12f81901c86cf463a79a33bbe65", "fields": {"departement": "94", "stop_lat": 48.80990431546061, "code_postal": "94046", "stop_lon": 2.4484308438335916, "coord": [48.80990431546061, 2.4484308438335916], "stop_id": 3663631, "stop_desc": "133 AVENUE GAMBETTA - 94046", "stop_name": "RUE DE VINCENNES"}, "geometry": {"type": "Point", "coordinates": [2.4484308438335916, 48.80990431546061]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1babee87e0b04becdc70fae29f9f079ff8e480b0", "fields": {"departement": "94", "stop_lat": 48.808296339137414, "code_postal": "94046", "stop_lon": 2.456836799625507, "coord": [48.808296339137414, 2.456836799625507], "stop_id": 3663628, "stop_desc": "28-30 RUE DANIELLE CASANOVA - 94046", "stop_name": "PLANETES"}, "geometry": {"type": "Point", "coordinates": [2.456836799625507, 48.808296339137414]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3a36ae0d494e1c7d419fd0239d648f733ffe4b72", "fields": {"departement": "94", "stop_lat": 48.79705268455538, "code_postal": "94068", "stop_lon": 2.488332535820817, "coord": [48.79705268455538, 2.488332535820817], "stop_id": 3663615, "stop_desc": "45 AVENUE HENRI MARTIN - 94068", "stop_name": "INKERMANN"}, "geometry": {"type": "Point", "coordinates": [2.488332535820817, 48.79705268455538]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8f337e1742a18560d7f8f493476b4c87147a4bfc", "fields": {"departement": "93", "stop_lat": 48.929213819436754, "code_postal": "93007", "stop_lon": 2.479879844919834, "coord": [48.929213819436754, 2.479879844919834], "stop_id": 3664418, "stop_desc": "5 BIS AVENUE PAUL VAILLANT COUTURIER - 93007", "stop_name": "ROND-POINT PIERRE SEMARD - PAUL VAILLANT-COUTURIER"}, "geometry": {"type": "Point", "coordinates": [2.479879844919834, 48.929213819436754]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b659bf194d8437aa6bde0768d8e0592fc51aa35f", "fields": {"departement": "95", "stop_lat": 48.991963492498634, "code_postal": "95527", "stop_lon": 2.5164045376508506, "coord": [48.991963492498634, 2.5164045376508506], "stop_id": 3666614, "stop_desc": "AVENUE DU BOIS DE LA PIE - 95527", "stop_name": "351, AVENUE DU BOIS DE LA PIE"}, "geometry": {"type": "Point", "coordinates": [2.5164045376508506, 48.991963492498634]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cddfe15e143e4f1f5325910fad62fab6dc08cb68", "fields": {"departement": "93", "stop_lat": 48.98341657793788, "code_postal": "93073", "stop_lon": 2.5169210801343227, "coord": [48.98341657793788, 2.5169210801343227], "stop_id": 3666598, "stop_desc": "FACE 56 AVENUE DE LA PYRAMIDE - 93073", "stop_name": "58, AVENUE DE LA PYRAMIDE"}, "geometry": {"type": "Point", "coordinates": [2.5169210801343227, 48.98341657793788]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9c71beb4926ef40f778cbea75792c9e8ea76fc6c", "fields": {"departement": "93", "stop_lat": 48.92631381258556, "code_postal": "93007", "stop_lon": 2.4696839333626395, "coord": [48.92631381258556, 2.4696839333626395], "stop_id": 3664412, "stop_desc": "FACE 124 AVENUE PAUL VAILLANT COUTURIER - 93007", "stop_name": "PIERRE MONTILLET"}, "geometry": {"type": "Point", "coordinates": [2.4696839333626395, 48.92631381258556]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a389ffe4d16da5a651d5f3bb1eaf3efa5338927b", "fields": {"departement": "93", "stop_lat": 48.950186781515434, "code_postal": "93007", "stop_lon": 2.4574920277380605, "coord": [48.950186781515434, 2.4574920277380605], "stop_id": 3666576, "stop_desc": "AVENUE DESCARTES - 93007", "stop_name": "CIMETIERE DU BLANC-MESNIL"}, "geometry": {"type": "Point", "coordinates": [2.4574920277380605, 48.950186781515434]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "95bd2ddcf0745d1dcf9e1ee51bf1471ab0391d15", "fields": {"departement": "75", "stop_lat": 48.88082998036255, "code_postal": "75110", "stop_lon": 2.3579941644875797, "coord": [48.88082998036255, 2.3579941644875797], "stop_id": 3666564, "stop_desc": "184 RUE DU FAUBOURG SAINT-DENIS - 75110", "stop_name": "GARE DU NORD"}, "geometry": {"type": "Point", "coordinates": [2.3579941644875797, 48.88082998036255]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c49ff4893fc4ac14742b59eb0988410f38eec4f0", "fields": {"departement": "93", "stop_lat": 48.95658572640723, "code_postal": "93005", "stop_lon": 2.4657356877614824, "coord": [48.95658572640723, 2.4657356877614824], "stop_id": 3666586, "stop_desc": "VOIE PARALLELE A L'ENTREPOT NUMERO 1 - 93005", "stop_name": "GARONOR"}, "geometry": {"type": "Point", "coordinates": [2.4657356877614824, 48.95658572640723]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cbe7ca67cb5bfdf95cf78cbb0e3644ff6b68c960", "fields": {"departement": "75", "stop_lat": 48.87611168124885, "code_postal": "75110", "stop_lon": 2.357883275054754, "coord": [48.87611168124885, 2.357883275054754], "stop_id": 3666562, "stop_desc": "9-11 RUE DU 8 MAI 1945 - 75110", "stop_name": "GARE DE L'EST"}, "geometry": {"type": "Point", "coordinates": [2.357883275054754, 48.87611168124885]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c8a0d91cfdcb4fe4b57305c777bd4a8d9f7718a4", "fields": {"departement": "77", "stop_lat": 49.015367784893186, "code_postal": "77282", "stop_lon": 2.541992530464244, "coord": [49.015367784893186, 2.541992530464244], "stop_id": 3666613, "stop_desc": "AEROPORT CHARLES DE GAULLE - 77282", "stop_name": "TERMINAL 1"}, "geometry": {"type": "Point", "coordinates": [2.541992530464244, 49.015367784893186]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "987bf138ee6f09951b32735275119c803cf088d0", "fields": {"departement": "93", "stop_lat": 48.99460337939841, "code_postal": "93073", "stop_lon": 2.523665271336363, "coord": [48.99460337939841, 2.523665271336363], "stop_id": 3666600, "stop_desc": "RUE DES BUISSONS - 93073", "stop_name": "MARGUILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.523665271336363, 48.99460337939841]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7ce2643b290551c12af7269c61884ae390cffc58", "fields": {"departement": "93", "stop_lat": 48.98943251427254, "code_postal": "93073", "stop_lon": 2.5259953160271786, "coord": [48.98943251427254, 2.5259953160271786], "stop_id": 3666645, "stop_desc": "FACE 15 RUE DE LA BELLE BORNE - 93073", "stop_name": "AEROVILLE - RUE DE LA BELLE BORNE"}, "geometry": {"type": "Point", "coordinates": [2.5259953160271786, 48.98943251427254]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e12deebc8f75a04dcb4084242c2aa4f77c49c9e6", "fields": {"departement": "95", "stop_lat": 48.986517805541546, "code_postal": "95527", "stop_lon": 2.5163310604157636, "coord": [48.986517805541546, 2.5163310604157636], "stop_id": 3666661, "stop_desc": "291 AVENUE DU BOIS DE LA PIE - 95527", "stop_name": "291, AVENUE DU BOIS DE LA PIE"}, "geometry": {"type": "Point", "coordinates": [2.5163310604157636, 48.986517805541546]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "58d743af48d4d835c6db4fb33cbdd540555c62db", "fields": {"departement": "75", "stop_lat": 48.879473278409144, "code_postal": "75110", "stop_lon": 2.3557180612431323, "coord": [48.879473278409144, 2.3557180612431323], "stop_id": 3666671, "stop_desc": "33-35 RUE DE SAINT-QUENTIN - 75110", "stop_name": "LA FAYETTE - DUNKERQUE"}, "geometry": {"type": "Point", "coordinates": [2.3557180612431323, 48.879473278409144]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "000645725d82920e949d7cb1a344c252ceed13aa", "fields": {"departement": "93", "stop_lat": 48.95002480024804, "code_postal": "93007", "stop_lon": 2.457709966646667, "coord": [48.95002480024804, 2.457709966646667], "stop_id": 3666634, "stop_desc": "AVENUE DESCARTES - 93007", "stop_name": "CIMETIERE DU BLANC-MESNIL"}, "geometry": {"type": "Point", "coordinates": [2.457709966646667, 48.95002480024804]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b688acf384c1b498f158f592b873c979ffe26e1d", "fields": {"departement": "75", "stop_lat": 48.880677255819144, "code_postal": "75110", "stop_lon": 2.357653442709006, "coord": [48.880677255819144, 2.357653442709006], "stop_id": 3666676, "stop_desc": "183 RUE DU FAUBOURG SAINT-DENIS - 75110", "stop_name": "GARE DU NORD"}, "geometry": {"type": "Point", "coordinates": [2.357653442709006, 48.880677255819144]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "825c8a7e78d1e5e4ba7b7be793b6fb70fdd6ee17", "fields": {"departement": "93", "stop_lat": 48.950665169998864, "code_postal": "93007", "stop_lon": 2.4641518334444137, "coord": [48.950665169998864, 2.4641518334444137], "stop_id": 3666637, "stop_desc": "5 AVENUE E.RENAULT - 93007", "stop_name": "DESCARTES - RENAULT"}, "geometry": {"type": "Point", "coordinates": [2.4641518334444137, 48.950665169998864]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f675115a010a09a378fb4295ee24faf3e8b68462", "fields": {"departement": "93", "stop_lat": 49.002527672002785, "code_postal": "93073", "stop_lon": 2.5358772849144318, "coord": [49.002527672002785, 2.5358772849144318], "stop_id": 3666651, "stop_desc": "RUE DES TERRES NOIRES - 93073", "stop_name": "RUE DU CHAPITRE"}, "geometry": {"type": "Point", "coordinates": [2.5358772849144318, 49.002527672002785]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "60e639721f7c25558792676827270dc9ecfa45cc", "fields": {"departement": "75", "stop_lat": 48.87615667154024, "code_postal": "75110", "stop_lon": 2.3575699124657437, "coord": [48.87615667154024, 2.3575699124657437], "stop_id": 3666672, "stop_desc": "9 RUE DU 8 MAI 1945 - 75110", "stop_name": "GARE DE L'EST"}, "geometry": {"type": "Point", "coordinates": [2.3575699124657437, 48.87615667154024]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0cda99168515a8bbb1e5e35ef9a375738864cf90", "fields": {"departement": "93", "stop_lat": 48.94982606812028, "code_postal": "93007", "stop_lon": 2.4395484863144565, "coord": [48.94982606812028, 2.4395484863144565], "stop_id": 3666631, "stop_desc": "174-176 AVENUE DU 8 MAI 1945 - 93007", "stop_name": "LENINE"}, "geometry": {"type": "Point", "coordinates": [2.4395484863144565, 48.94982606812028]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "94e8d15a4794153c4b4c59ae2cee349872f4eef8", "fields": {"departement": "93", "stop_lat": 48.95016764576287, "code_postal": "93030", "stop_lon": 2.439453648187777, "coord": [48.95016764576287, 2.439453648187777], "stop_id": 3666668, "stop_desc": "FACE 180 AV DU 8 MAI 1945 - 93030", "stop_name": "LENINE"}, "geometry": {"type": "Point", "coordinates": [2.439453648187777, 48.95016764576287]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2fb08d27739e391115abecc124d8f9b3fd8855ad", "fields": {"departement": "93", "stop_lat": 48.9526171602876, "code_postal": "93007", "stop_lon": 2.4623827191222363, "coord": [48.9526171602876, 2.4623827191222363], "stop_id": 3666742, "stop_desc": "RUE ANATOLE SIGONNEAU - 93007", "stop_name": "ANATOLE SIGONNEAU - CENTRE D'AFFAIRES"}, "geometry": {"type": "Point", "coordinates": [2.4623827191222363, 48.9526171602876]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "73291e2fb2ce3f093e7c15d8ebd5ae0610c0ada7", "fields": {"departement": "75", "stop_lat": 48.89760883510394, "code_postal": "75118", "stop_lon": 2.359309444283519, "coord": [48.89760883510394, 2.359309444283519], "stop_id": 3666730, "stop_desc": "FACE AU 100 RUE DE LA CHAPELLE - 75118", "stop_name": "PORTE DE LA CHAPELLE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.359309444283519, 48.89760883510394]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c3a65232518c40bce9a0cddf7cd5b103751a1c96", "fields": {"departement": "93", "stop_lat": 48.9481288514466, "code_postal": "93007", "stop_lon": 2.438044271536468, "coord": [48.9481288514466, 2.438044271536468], "stop_id": 3666734, "stop_desc": "AVENUE DU 8 MAI 1945 - 93007", "stop_name": "MUSEE DE L'AIR ET DE L'ESPACE"}, "geometry": {"type": "Point", "coordinates": [2.438044271536468, 48.9481288514466]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "126a1177586b556b890a663bb068f97321aa8d75", "fields": {"departement": "75", "stop_lat": 48.87781949763114, "code_postal": "75110", "stop_lon": 2.3564941357294393, "coord": [48.87781949763114, 2.3564941357294393], "stop_id": 3666726, "stop_desc": "140-142 RUE DU FAUBOURG SAINT-DENIS - 75110", "stop_name": "VALENCIENNES"}, "geometry": {"type": "Point", "coordinates": [2.3564941357294393, 48.87781949763114]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0d0385c16e19999e3c5d99086c4fc1caeabbb6a8", "fields": {"departement": "95", "stop_lat": 49.01156449626324, "code_postal": "95527", "stop_lon": 2.5152429686918456, "coord": [49.01156449626324, 2.5152429686918456], "stop_id": 3666717, "stop_desc": "ROUTE DE L'ARPENTEUR - 95527", "stop_name": "ENTRETIEN NORD"}, "geometry": {"type": "Point", "coordinates": [2.5152429686918456, 49.01156449626324]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "94ea38f3130226b2bab67286c24eb18f92292a1a", "fields": {"departement": "93", "stop_lat": 48.94982606812028, "code_postal": "93007", "stop_lon": 2.4395484863144565, "coord": [48.94982606812028, 2.4395484863144565], "stop_id": 3666735, "stop_desc": "174-176 AVENUE DU 8 MAI 1945 - 93007", "stop_name": "LENINE"}, "geometry": {"type": "Point", "coordinates": [2.4395484863144565, 48.94982606812028]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ca524d10092936753e6f9284fe52bd6def4df6dc", "fields": {"departement": "93", "stop_lat": 48.95023932361886, "code_postal": "93007", "stop_lon": 2.4496873518004296, "coord": [48.95023932361886, 2.4496873518004296], "stop_id": 3666736, "stop_desc": "AVENUE DESCARTES - 93007", "stop_name": "MAURICE AUDIN"}, "geometry": {"type": "Point", "coordinates": [2.4496873518004296, 48.95023932361886]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f8982182a27921f7a0a8835614c25e81c3de7cda", "fields": {"departement": "93", "stop_lat": 48.954338518544674, "code_postal": "93005", "stop_lon": 2.457624484216734, "coord": [48.954338518544674, 2.457624484216734], "stop_id": 3666744, "stop_desc": "RUE ROBERT BREMOND - 93005", "stop_name": "ROBERT BREMOND"}, "geometry": {"type": "Point", "coordinates": [2.457624484216734, 48.954338518544674]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e91af2a8b27b391f78d5d7654df21c8d3bc79c4b", "fields": {"departement": "93", "stop_lat": 48.921359498339704, "code_postal": "93007", "stop_lon": 2.471921396034401, "coord": [48.921359498339704, 2.471921396034401], "stop_id": 3672130, "stop_desc": "41 AVENUE JEAN JAURES - 93007", "stop_name": "SURCOUF - JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.471921396034401, 48.921359498339704]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e02633ae6334d18780e6b5f62adbe9d7d45404e6", "fields": {"departement": "93", "stop_lat": 48.99401510089086, "code_postal": "93073", "stop_lon": 2.52631247799206, "coord": [48.99401510089086, 2.52631247799206], "stop_id": 3672146, "stop_desc": "RUE DE LA JEUNE FILLE - 93073", "stop_name": "RUE DE LA JEUNE FILLE"}, "geometry": {"type": "Point", "coordinates": [2.52631247799206, 48.99401510089086]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4b47d232cd0fec626237eeea208d21628505d2bc", "fields": {"departement": "93", "stop_lat": 49.002643994047546, "code_postal": "93073", "stop_lon": 2.5361782210719643, "coord": [49.002643994047546, 2.5361782210719643], "stop_id": 3672163, "stop_desc": "RUE DES TERRES NOIRES - 93073", "stop_name": "RUE DU CHAPITRE"}, "geometry": {"type": "Point", "coordinates": [2.5361782210719643, 49.002643994047546]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ccc93c50547f95db14f94294d7e925d1597b4eff", "fields": {"departement": "95", "stop_lat": 49.01153682433248, "code_postal": "95527", "stop_lon": 2.5157210066251756, "coord": [49.01153682433248, 2.5157210066251756], "stop_id": 3672154, "stop_desc": "ROUTE DE L'ARPENTEUR - 95527", "stop_name": "ENTRETIEN NORD."}, "geometry": {"type": "Point", "coordinates": [2.5157210066251756, 49.01153682433248]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f484465f8c513a56be30425dfa515c38849f1771", "fields": {"departement": "93", "stop_lat": 48.92527529901001, "code_postal": "93007", "stop_lon": 2.4741273246311293, "coord": [48.92527529901001, 2.4741273246311293], "stop_id": 3672135, "stop_desc": "BOULEVARD JACQUES DECOUR - 93007", "stop_name": "LES 4 TOURS"}, "geometry": {"type": "Point", "coordinates": [2.4741273246311293, 48.92527529901001]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a2681400da5fcd5fca6907d055e0747508c28bb8", "fields": {"departement": "93", "stop_lat": 48.92527506408324, "code_postal": "93007", "stop_lon": 2.4743318967195087, "coord": [48.92527506408324, 2.4743318967195087], "stop_id": 3672134, "stop_desc": "BOULEVARD JACQUES DECOUR - 93007", "stop_name": "LES 4 TOURS"}, "geometry": {"type": "Point", "coordinates": [2.4743318967195087, 48.92527506408324]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cc911dcb96a258e4f2520ef9756da81d88dbc6d2", "fields": {"departement": "95", "stop_lat": 49.007892693168586, "code_postal": "95527", "stop_lon": 2.512812511923358, "coord": [49.007892693168586, 2.512812511923358], "stop_id": 3672153, "stop_desc": "RUE DE L'ARPENTEUR - 95527", "stop_name": "ENTRETIEN SUD"}, "geometry": {"type": "Point", "coordinates": [2.512812511923358, 49.007892693168586]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "486abaa31fa042ba474ca7d3296ef3e9d1c940ee", "fields": {"departement": "93", "stop_lat": 48.99460337939841, "code_postal": "93073", "stop_lon": 2.523665271336363, "coord": [48.99460337939841, 2.523665271336363], "stop_id": 3672141, "stop_desc": "RUE DES BUISSONS - 93073", "stop_name": "MARGUILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.523665271336363, 48.99460337939841]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2c296dc38b789d829763480b63c55f18c517cd1e", "fields": {"departement": "75", "stop_lat": 48.848929915496655, "code_postal": "75111", "stop_lon": 2.3963708007370164, "coord": [48.848929915496655, 2.3963708007370164], "stop_id": 3672169, "stop_desc": "13 PLACE DE LA NATION - 75111", "stop_name": "NATION"}, "geometry": {"type": "Point", "coordinates": [2.3963708007370164, 48.848929915496655]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6e186638a08455dd8e5a8fd5df07ba045337a507", "fields": {"departement": "93", "stop_lat": 48.96037732477729, "code_postal": "93005", "stop_lon": 2.489341508897291, "coord": [48.96037732477729, 2.489341508897291], "stop_id": 3666748, "stop_desc": "BOULEVARD ANDRE CITROEN (RD POINT DE LA PORTE 1) - 93005", "stop_name": "ANDRE CITROEN - VISITEURS"}, "geometry": {"type": "Point", "coordinates": [2.489341508897291, 48.96037732477729]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "484c70ee92dafb82bae2aaf53fc42df1c0cd52aa", "fields": {"departement": "93", "stop_lat": 49.003932683419556, "code_postal": "93073", "stop_lon": 2.5643752610380326, "coord": [49.003932683419556, 2.5643752610380326], "stop_id": 3666796, "stop_desc": "VOIE PRIVEE AEROPORT CHARLES DE GAULLE - 93073", "stop_name": "TERMINAL 2B-2D"}, "geometry": {"type": "Point", "coordinates": [2.5643752610380326, 49.003932683419556]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7b442077d541882c6ae484567e5ed06ac696c8e3", "fields": {"departement": "75", "stop_lat": 48.864785410194465, "code_postal": "75120", "stop_lon": 2.4096433309569973, "coord": [48.864785410194465, 2.4096433309569973], "stop_id": 3672112, "stop_desc": "FACE 4 AVENUE DE LA PORTE DE BAGNOLET - 75120", "stop_name": "PORTE DE BAGNOLET"}, "geometry": {"type": "Point", "coordinates": [2.4096433309569973, 48.864785410194465]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cb125a6fc95a9406e1fd44dc216d6388992b3115", "fields": {"departement": "75", "stop_lat": 48.87781949763114, "code_postal": "75110", "stop_lon": 2.3564941357294393, "coord": [48.87781949763114, 2.3564941357294393], "stop_id": 3666773, "stop_desc": "140-142 RUE DU FAUBOURG SAINT-DENIS - 75110", "stop_name": "VALENCIENNES"}, "geometry": {"type": "Point", "coordinates": [2.3564941357294393, 48.87781949763114]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5462b7a41e2b334181f7550c615130f1cd62178f", "fields": {"departement": "93", "stop_lat": 48.95002480024804, "code_postal": "93007", "stop_lon": 2.457709966646667, "coord": [48.95002480024804, 2.457709966646667], "stop_id": 3666781, "stop_desc": "AVENUE DESCARTES - 93007", "stop_name": "CIMETIERE DU BLANC-MESNIL"}, "geometry": {"type": "Point", "coordinates": [2.457709966646667, 48.95002480024804]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "17be99b537a0c3caa322943d977d96009a442e59", "fields": {"departement": "95", "stop_lat": 48.989015745880955, "code_postal": "95527", "stop_lon": 2.5165308783227034, "coord": [48.989015745880955, 2.5165308783227034], "stop_id": 3666754, "stop_desc": "AVENUE DU BOIS DE LA PIE - 95527", "stop_name": "PARC DES NATIONS"}, "geometry": {"type": "Point", "coordinates": [2.5165308783227034, 48.989015745880955]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a94ce5ec1451831507c41dc3a8261be773d30d16", "fields": {"departement": "93", "stop_lat": 48.917972348346105, "code_postal": "93010", "stop_lon": 2.4788670820144523, "coord": [48.917972348346105, 2.4788670820144523], "stop_id": 3672128, "stop_desc": "AVENUE LEON JOUHAUX - 93010", "stop_name": "JOUHAUX - BLUM"}, "geometry": {"type": "Point", "coordinates": [2.4788670820144523, 48.917972348346105]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7d95f0739ab4bd1a4f861f7c816d13570a420c24", "fields": {"departement": "93", "stop_lat": 48.91061893584278, "code_postal": "93010", "stop_lon": 2.480564906762945, "coord": [48.91061893584278, 2.480564906762945], "stop_id": 3672120, "stop_desc": "FACE 93 ROUTE D'AULNAY - 93010", "stop_name": "PAUL RENAUD"}, "geometry": {"type": "Point", "coordinates": [2.480564906762945, 48.91061893584278]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "84ff3dcf05d1505bcd9e7d9b3fc3df192ae093a9", "fields": {"departement": "93", "stop_lat": 48.86754005980411, "code_postal": "93006", "stop_lon": 2.4166630116229832, "coord": [48.86754005980411, 2.4166630116229832], "stop_id": 3672115, "stop_desc": "23 RUE ADELAIDE LAHAYE - 93006", "stop_name": "LA POSTE"}, "geometry": {"type": "Point", "coordinates": [2.4166630116229832, 48.86754005980411]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "088892b456511370559c5077a357aa447cb5f547", "fields": {"departement": "93", "stop_lat": 48.95433871107077, "code_postal": "93005", "stop_lon": 2.457433442997565, "coord": [48.95433871107077, 2.457433442997565], "stop_id": 3666745, "stop_desc": "RUE ROBERT BREMOND - 93005", "stop_name": "ROBERT BREMOND"}, "geometry": {"type": "Point", "coordinates": [2.457433442997565, 48.95433871107077]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3b70e22b7a31bb47a7427df922968b39640b9b85", "fields": {"departement": "75", "stop_lat": 48.84726135533499, "code_postal": "75112", "stop_lon": 2.4072085511495405, "coord": [48.84726135533499, 2.4072085511495405], "stop_id": 3672171, "stop_desc": "82-84 COURS DE VINCENNES - 75112", "stop_name": "PYRENEES - DOCTEUR NETTER"}, "geometry": {"type": "Point", "coordinates": [2.4072085511495405, 48.84726135533499]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "69d18b759114f71892d9cee88304547fb9d02672", "fields": {"departement": "93", "stop_lat": 48.9939157315064, "code_postal": "93073", "stop_lon": 2.5266398659308664, "coord": [48.9939157315064, 2.5266398659308664], "stop_id": 3672212, "stop_desc": "RUE DE LA JEUNE FILLE - 93073", "stop_name": "RUE DE LA JEUNE FILLE"}, "geometry": {"type": "Point", "coordinates": [2.5266398659308664, 48.9939157315064]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "10930fe005f935e8a6d1f1008fa24adbc241b684", "fields": {"departement": "93", "stop_lat": 48.928463917414284, "code_postal": "93007", "stop_lon": 2.4756360440448932, "coord": [48.928463917414284, 2.4756360440448932], "stop_id": 3672202, "stop_desc": "42 AVENUE PAUL VAILLANT COUTURIER - 93007", "stop_name": "QUEBEC"}, "geometry": {"type": "Point", "coordinates": [2.4756360440448932, 48.928463917414284]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8ab84248ab5e62955eeacd5d7a3ae767a78f8fc2", "fields": {"departement": "93", "stop_lat": 48.9136270250163, "code_postal": "93010", "stop_lon": 2.482686671284147, "coord": [48.9136270250163, 2.482686671284147], "stop_id": 3672188, "stop_desc": "AVENUE HENRI VARAGNAT - 93010", "stop_name": "SUZANNE BUISSON"}, "geometry": {"type": "Point", "coordinates": [2.482686671284147, 48.9136270250163]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7d8767de055bc2c1b494c4598614fa4288f39a10", "fields": {"departement": "93", "stop_lat": 48.92527529901001, "code_postal": "93007", "stop_lon": 2.4741273246311293, "coord": [48.92527529901001, 2.4741273246311293], "stop_id": 3672200, "stop_desc": "BOULEVARD JACQUES DECOUR - 93007", "stop_name": "LES 4 TOURS"}, "geometry": {"type": "Point", "coordinates": [2.4741273246311293, 48.92527529901001]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b06369155c916923e9e9cce602435ac5908ebde4", "fields": {"departement": "93", "stop_lat": 48.862013307061915, "code_postal": "93006", "stop_lon": 2.415932607577434, "coord": [48.862013307061915, 2.415932607577434], "stop_id": 3672180, "stop_desc": "100 AV GALLIENI - 93006", "stop_name": "GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.415932607577434, 48.862013307061915]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9c198c93b3f8a8e296c4b6a5ae41e3804dd88be1", "fields": {"departement": "75", "stop_lat": 48.853934110216926, "code_postal": "75120", "stop_lon": 2.415171284434349, "coord": [48.853934110216926, 2.415171284434349], "stop_id": 3672176, "stop_desc": "AVENUE BENOIT FRACHON - 75120", "stop_name": "RUE DE PARIS"}, "geometry": {"type": "Point", "coordinates": [2.415171284434349, 48.853934110216926]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "092e4cecd3b784ef0efe49487e14a8d2255dcb8d", "fields": {"departement": "93", "stop_lat": 48.91061893584278, "code_postal": "93010", "stop_lon": 2.480564906762945, "coord": [48.91061893584278, 2.480564906762945], "stop_id": 3672185, "stop_desc": "FACE 93 ROUTE D'AULNAY - 93010", "stop_name": "PAUL RENAUD"}, "geometry": {"type": "Point", "coordinates": [2.480564906762945, 48.91061893584278]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0347d41c0cf9ca26a61ad0b168ad057b523e5c3f", "fields": {"departement": "75", "stop_lat": 48.84726135533499, "code_postal": "75112", "stop_lon": 2.4072085511495405, "coord": [48.84726135533499, 2.4072085511495405], "stop_id": 3672238, "stop_desc": "82-84 COURS DE VINCENNES - 75112", "stop_name": "PYRENEES - DOCTEUR NETTER"}, "geometry": {"type": "Point", "coordinates": [2.4072085511495405, 48.84726135533499]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5d492ac79e080f1e37b2eed28aff728314adc883", "fields": {"departement": "93", "stop_lat": 49.00336657296951, "code_postal": "93073", "stop_lon": 2.5643591158079393, "coord": [49.00336657296951, 2.5643591158079393], "stop_id": 3672222, "stop_desc": "VOIE PRIVEE AEROPORT CHARLES DE GAULLE - 93073", "stop_name": "TERMINAL 2A-2C"}, "geometry": {"type": "Point", "coordinates": [2.5643591158079393, 49.00336657296951]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4d6f9645b825b7acdd17a1fdb5146e146fb415c1", "fields": {"departement": "93", "stop_lat": 48.92358657007136, "code_postal": "93007", "stop_lon": 2.4734136996778835, "coord": [48.92358657007136, 2.4734136996778835], "stop_id": 3672253, "stop_desc": "FACE 62 AVENUE DANIELLE CASANOVA - 93007", "stop_name": "DANIELLE CASANOVA"}, "geometry": {"type": "Point", "coordinates": [2.4734136996778835, 48.92358657007136]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7b0d370b9c0b29e845bca29985bbf01fb64aa161", "fields": {"departement": "93", "stop_lat": 48.921359498339704, "code_postal": "93007", "stop_lon": 2.471921396034401, "coord": [48.921359498339704, 2.471921396034401], "stop_id": 3672277, "stop_desc": "41 AVENUE JEAN JAURES - 93007", "stop_name": "SURCOUF - JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.471921396034401, 48.921359498339704]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9614a8c879db74cabccd057fbb32d04c55b3c4f7", "fields": {"departement": "93", "stop_lat": 48.92806904712401, "code_postal": "93007", "stop_lon": 2.475157626866216, "coord": [48.92806904712401, 2.475157626866216], "stop_id": 3672280, "stop_desc": "FACE 52 AVENUE PAUL VAILLANT COUTURIER - 93007", "stop_name": "QUEBEC"}, "geometry": {"type": "Point", "coordinates": [2.475157626866216, 48.92806904712401]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0cb2dbb8c6aec83c58202cf5b97fe07a68f78a17", "fields": {"departement": "93", "stop_lat": 49.01048426253027, "code_postal": "93073", "stop_lon": 2.559308602563976, "coord": [49.01048426253027, 2.559308602563976], "stop_id": 3672225, "stop_desc": "AEROPORT CHARLES DE GAULLE (T3) - 93073", "stop_name": "ROISSYPOLE"}, "geometry": {"type": "Point", "coordinates": [2.559308602563976, 49.01048426253027]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "91a4f6a61e9bec4097b341fb02600ea58ad59ad0", "fields": {"departement": "93", "stop_lat": 48.92212592273542, "code_postal": "93007", "stop_lon": 2.469659588543364, "coord": [48.92212592273542, 2.469659588543364], "stop_id": 3672230, "stop_desc": "66 AVENUE DE SUFFREN - 93007", "stop_name": "MATHILDE EMILIE"}, "geometry": {"type": "Point", "coordinates": [2.469659588543364, 48.92212592273542]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7bd8a45332ba1eedde1afe8988ba24e8c43f9aba", "fields": {"departement": "93", "stop_lat": 48.90685353237826, "code_postal": "93010", "stop_lon": 2.4804181583345417, "coord": [48.90685353237826, 2.4804181583345417], "stop_id": 3672270, "stop_desc": "6 ROUTE D'AULNAY - 93010", "stop_name": "AUGUSTE POLISSARD"}, "geometry": {"type": "Point", "coordinates": [2.4804181583345417, 48.90685353237826]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c8607a8a93db4f6b48d81e532ac46dd8575b4814", "fields": {"departement": "93", "stop_lat": 48.91061893584278, "code_postal": "93010", "stop_lon": 2.480564906762945, "coord": [48.91061893584278, 2.480564906762945], "stop_id": 3672271, "stop_desc": "FACE 93 ROUTE D'AULNAY - 93010", "stop_name": "PAUL RENAUD"}, "geometry": {"type": "Point", "coordinates": [2.480564906762945, 48.91061893584278]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2783413a9e64d8936d1553254e221d44894c1b1e", "fields": {"departement": "93", "stop_lat": 48.90955920281512, "code_postal": "93010", "stop_lon": 2.479948443344676, "coord": [48.90955920281512, 2.479948443344676], "stop_id": 3672232, "stop_desc": "FACE 48 ROUTE D'AULNAY - 93010", "stop_name": "GUEUGNON"}, "geometry": {"type": "Point", "coordinates": [2.479948443344676, 48.90955920281512]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "79c05a2749d17d34ef95a1f4bf7780970c45770e", "fields": {"departement": "75", "stop_lat": 48.84539937588007, "code_postal": "75112", "stop_lon": 2.3686422351772856, "coord": [48.84539937588007, 2.3686422351772856], "stop_id": 3673586, "stop_desc": "1 BOULEVARD DIDEROT - 75112", "stop_name": "PONT D'AUSTERLITZ - QUAI DE LA RAPEE"}, "geometry": {"type": "Point", "coordinates": [2.3686422351772856, 48.84539937588007]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "18effa398cf45b66fb63dd7365b4c8b039fa84ea", "fields": {"departement": "75", "stop_lat": 48.859656415811216, "code_postal": "75111", "stop_lon": 2.386548733562634, "coord": [48.859656415811216, 2.386548733562634], "stop_id": 3673635, "stop_desc": "45-45 BIS RUE DE LA FOLIE REGNAULT - 75111", "stop_name": "ROQUETTE - PERE LACHAISE"}, "geometry": {"type": "Point", "coordinates": [2.386548733562634, 48.859656415811216]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "372f36c5e231fdb6c7b9db5f57d124afc40ceedb", "fields": {"departement": "75", "stop_lat": 48.86170601135141, "code_postal": "75111", "stop_lon": 2.3854064805301256, "coord": [48.86170601135141, 2.3854064805301256], "stop_id": 3673634, "stop_desc": "69 RUE DE LA FOLIE REGNAULT - 75111", "stop_name": "FOLIE REGNAULT - CHEMIN VERT"}, "geometry": {"type": "Point", "coordinates": [2.3854064805301256, 48.86170601135141]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f905282bb1ce7c15a7451bbb03f80f46b1314547", "fields": {"departement": "77", "stop_lat": 48.838524433210715, "code_postal": "77258", "stop_lon": 2.648979064207767, "coord": [48.838524433210715, 2.648979064207767], "stop_id": 3677660, "stop_desc": "BOULEVARD CAMILLE SAINT SAENS - 77258", "stop_name": "MEDIATHEQUE DU SEGRAIS"}, "geometry": {"type": "Point", "coordinates": [2.648979064207767, 48.838524433210715]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2200f010a3e2698959758b7ad5f95f382234fb8b", "fields": {"departement": "77", "stop_lat": 48.83336754166342, "code_postal": "77258", "stop_lon": 2.63412232336957, "coord": [48.83336754166342, 2.63412232336957], "stop_id": 3677673, "stop_desc": "FACE 15 BOULEVARD DU SEGRAIS - 77258", "stop_name": "LES CAMPANULES"}, "geometry": {"type": "Point", "coordinates": [2.63412232336957, 48.83336754166342]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "37ff9a82ad460585c2c7cccc846201617e3fee26", "fields": {"departement": "77", "stop_lat": 48.842843114774176, "code_postal": "77468", "stop_lon": 2.6472076235749347, "coord": [48.842843114774176, 2.6472076235749347], "stop_id": 3677662, "stop_desc": "COURS DES LACS - 77468", "stop_name": "COLLEGE JEAN MONNET"}, "geometry": {"type": "Point", "coordinates": [2.6472076235749347, 48.842843114774176]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ce8a3b50188f54eb6e2c665a1fb5e554cab210d6", "fields": {"departement": "77", "stop_lat": 48.840555961566785, "code_postal": "77468", "stop_lon": 2.64885511070284, "coord": [48.840555961566785, 2.64885511070284], "stop_id": 3677661, "stop_desc": "37 COURS DES LACS - 77468", "stop_name": "RU DE MAUBUEE"}, "geometry": {"type": "Point", "coordinates": [2.64885511070284, 48.840555961566785]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1f3b65340f5a8102d51da70e5f7e8ce9e7fff1f9", "fields": {"departement": "75", "stop_lat": 48.876533772096494, "code_postal": "75120", "stop_lon": 2.406416903700702, "coord": [48.876533772096494, 2.406416903700702], "stop_id": 3673612, "stop_desc": "FACE 257-259 AV GAMBETTA - 75120", "stop_name": "PORTE DES LILAS-METRO"}, "geometry": {"type": "Point", "coordinates": [2.406416903700702, 48.876533772096494]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7eef1e5f77eb985caaf388ba898a4b6209ddc9e6", "fields": {"departement": "93", "stop_lat": 48.88080147970929, "code_postal": "93061", "stop_lon": 2.408534699675061, "coord": [48.88080147970929, 2.408534699675061], "stop_id": 3673616, "stop_desc": "73 AVENUE EDOUARD VAILLANT - 93061", "stop_name": "JEAN JAURES-BELVEDERE"}, "geometry": {"type": "Point", "coordinates": [2.408534699675061, 48.88080147970929]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d7d79476897f06e099430743832210fa1ae7c0c9", "fields": {"departement": "75", "stop_lat": 48.848426890902694, "code_postal": "75112", "stop_lon": 2.373151610559424, "coord": [48.848426890902694, 2.373151610559424], "stop_id": 3673589, "stop_desc": "15 AVENUE DAUMESNIL - 75112", "stop_name": "DAUMESNIL - LEDRU ROLLIN"}, "geometry": {"type": "Point", "coordinates": [2.373151610559424, 48.848426890902694]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1d100d34745412e54afb20d4510150ecb9f5da93", "fields": {"departement": "93", "stop_lat": 48.89284835257885, "code_postal": "93055", "stop_lon": 2.4164291964408657, "coord": [48.89284835257885, 2.4164291964408657], "stop_id": 3673629, "stop_desc": "4 BIS RUE COURTOIS - 93055", "stop_name": "MANUFACTURE DES TABACS"}, "geometry": {"type": "Point", "coordinates": [2.4164291964408657, 48.89284835257885]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6885568841e4151736ba832b95ddf28d794be2c8", "fields": {"departement": "75", "stop_lat": 48.85309905314883, "code_postal": "75111", "stop_lon": 2.377308694993932, "coord": [48.85309905314883, 2.377308694993932], "stop_id": 3673592, "stop_desc": "114 AVENUE LEDRU ROLLIN - 75111", "stop_name": "CHARONNE - KELLER"}, "geometry": {"type": "Point", "coordinates": [2.377308694993932, 48.85309905314883]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f28e2994e51a9964a5ebcbc0ada6c1c23e90271c", "fields": {"departement": "75", "stop_lat": 48.86309803448752, "code_postal": "75120", "stop_lon": 2.387873320719877, "coord": [48.86309803448752, 2.387873320719877], "stop_id": 3673600, "stop_desc": "7-9 PLACE AUGUSTE METIVIER - 75120", "stop_name": "AUGUSTE METIVIER"}, "geometry": {"type": "Point", "coordinates": [2.387873320719877, 48.86309803448752]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "65fad44b2c0f5fcfc53dfc43d14b1bf8ad841749", "fields": {"departement": "75", "stop_lat": 48.84418715750184, "code_postal": "75105", "stop_lon": 2.364161560501529, "coord": [48.84418715750184, 2.364161560501529], "stop_id": 3673584, "stop_desc": "PLACE VALHUBERT - 75105", "stop_name": "GARE D'AUSTERLITZ"}, "geometry": {"type": "Point", "coordinates": [2.364161560501529, 48.84418715750184]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "59275e83a1602eb2f9e79e1d983037dd0fceac39", "fields": {"departement": "75", "stop_lat": 48.855713972473325, "code_postal": "75111", "stop_lon": 2.3785637425146002, "coord": [48.855713972473325, 2.3785637425146002], "stop_id": 3673594, "stop_desc": "167 AVENUE LEDRU ROLLIN - 75111", "stop_name": "BASFROI"}, "geometry": {"type": "Point", "coordinates": [2.3785637425146002, 48.855713972473325]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f4aebb2249f92e16cf437d707115a6d2b8d9da06", "fields": {"departement": "93", "stop_lat": 48.88516977872423, "code_postal": "93061", "stop_lon": 2.407695794808901, "coord": [48.88516977872423, 2.407695794808901], "stop_id": 3673620, "stop_desc": "13 AVENUE JEAN JAURES - 93061", "stop_name": "JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.407695794808901, 48.88516977872423]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "93707924fcfc37bb8158dcd43a2cf7184c3bcbb9", "fields": {"departement": "75", "stop_lat": 48.87880601372367, "code_postal": "75119", "stop_lon": 2.4090224897684416, "coord": [48.87880601372367, 2.4090224897684416], "stop_id": 3673614, "stop_desc": "AVENUE RENE FONCK - 75119", "stop_name": "RENE FONCK"}, "geometry": {"type": "Point", "coordinates": [2.4090224897684416, 48.87880601372367]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "88cbbe1a835c2c7dfbe202341c10009a3e07969a", "fields": {"departement": "77", "stop_lat": 48.878965828315415, "code_postal": "77108", "stop_lon": 2.6134810521284204, "coord": [48.878965828315415, 2.6134810521284204], "stop_id": 3677721, "stop_desc": "BRETELLE DE SORTIE DU CENTRE COMMERCIAL - VERS L'AVENUE DU GENDARME CASTERMANT - 77108", "stop_name": "TERRE CIEL"}, "geometry": {"type": "Point", "coordinates": [2.6134810521284204, 48.878965828315415]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fa7490d379d53ac42178a8213d0f47a0f26adcc3", "fields": {"departement": "77", "stop_lat": 48.87474969957488, "code_postal": "77479", "stop_lon": 2.639822888992411, "coord": [48.87474969957488, 2.639822888992411], "stop_id": 3677716, "stop_desc": "PL DU GENERAL DE GAULLE - 77479", "stop_name": "GARE DE VAIRES - TORCY"}, "geometry": {"type": "Point", "coordinates": [2.639822888992411, 48.87474969957488]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2dd2f9ccba15e35fd366e6356b493d9e4f28a6d1", "fields": {"departement": "77", "stop_lat": 48.83599091440836, "code_postal": "77258", "stop_lon": 2.6309106287804247, "coord": [48.83599091440836, 2.6309106287804247], "stop_id": 3677676, "stop_desc": "FACE 1 COURS DES PETITES ECURIES - 77258", "stop_name": "RUE DE LA FERME"}, "geometry": {"type": "Point", "coordinates": [2.6309106287804247, 48.83599091440836]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "547d6d688f4ae6e07685175810ddb0060a299d6a", "fields": {"departement": "77", "stop_lat": 48.881164483281744, "code_postal": "77055", "stop_lon": 2.629899247494795, "coord": [48.881164483281744, 2.629899247494795], "stop_id": 3677724, "stop_desc": "24 AVENUE VICTOR THIEBAUT - 77055", "stop_name": "MAIRIE DE BROU"}, "geometry": {"type": "Point", "coordinates": [2.629899247494795, 48.881164483281744]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c9b01e346d1a868f3790177afe13edcb7e9136f7", "fields": {"departement": "77", "stop_lat": 48.84426192091943, "code_postal": "77337", "stop_lon": 2.6225285535009446, "coord": [48.84426192091943, 2.6225285535009446], "stop_id": 3677685, "stop_desc": "COURS DU BUISSON - 77337", "stop_name": "FERME DU BUISSON"}, "geometry": {"type": "Point", "coordinates": [2.6225285535009446, 48.84426192091943]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "07ec5e9e84042c924a90cdbe4b28a0332d052b6f", "fields": {"departement": "77", "stop_lat": 48.84701898783006, "code_postal": "77337", "stop_lon": 2.615830202919319, "coord": [48.84701898783006, 2.615830202919319], "stop_id": 3677690, "stop_desc": "3 COURS DU LUZARD - 77337", "stop_name": "COMMISSARIAT"}, "geometry": {"type": "Point", "coordinates": [2.615830202919319, 48.84701898783006]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e904232125c25ab3a0dc9089c651db10929b1a3f", "fields": {"departement": "77", "stop_lat": 48.869290899856864, "code_postal": "77479", "stop_lon": 2.6411806353748193, "coord": [48.869290899856864, 2.6411806353748193], "stop_id": 3677715, "stop_desc": "4 BD DE LA MARNE - 77479", "stop_name": "REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.6411806353748193, 48.869290899856864]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bea505726ffcaa380c9daf65fa9b4d6a6495bc1d", "fields": {"departement": "77", "stop_lat": 48.8596609516742, "code_postal": "77468", "stop_lon": 2.6463819086539355, "coord": [48.8596609516742, 2.6463819086539355], "stop_id": 3677710, "stop_desc": "22 ROUTE DE LAGNY - 77468", "stop_name": "LES CANTINES"}, "geometry": {"type": "Point", "coordinates": [2.6463819086539355, 48.8596609516742]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4ea50559c53a9fc606b3b0f67eb85030e3c6f903", "fields": {"departement": "77", "stop_lat": 48.856166326549676, "code_postal": "77337", "stop_lon": 2.624228441425351, "coord": [48.856166326549676, 2.624228441425351], "stop_id": 3677695, "stop_desc": "BD PIERRE CARLE - 77337", "stop_name": "CHOCOLATERIE"}, "geometry": {"type": "Point", "coordinates": [2.624228441425351, 48.856166326549676]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6a8c00b56ddc8fe13ce50ea61ab09e0c45e8dc34", "fields": {"departement": "77", "stop_lat": 48.82604549537294, "code_postal": "77146", "stop_lon": 2.6365442421320906, "coord": [48.82604549537294, 2.6365442421320906], "stop_id": 3677811, "stop_desc": "ALLEE DU 1ER MAI - 77146", "stop_name": "CROISSY-BEAUBOURG - Z.I. PARIEST"}, "geometry": {"type": "Point", "coordinates": [2.6365442421320906, 48.82604549537294]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8e39d92a91f324a96ad7e268b810f916cce0e974", "fields": {"departement": "77", "stop_lat": 48.83594845740181, "code_postal": "77258", "stop_lon": 2.6299028951720893, "coord": [48.83594845740181, 2.6299028951720893], "stop_id": 3677800, "stop_desc": "PL MARTIN LUTHER KING - 77258", "stop_name": "RUE DE LA FERME"}, "geometry": {"type": "Point", "coordinates": [2.6299028951720893, 48.83594845740181]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fb9836abe9ab81003b3392eb8684a370e5ce1653", "fields": {"departement": "77", "stop_lat": 48.836253061962196, "code_postal": "77258", "stop_lon": 2.630299444015219, "coord": [48.836253061962196, 2.630299444015219], "stop_id": 3677801, "stop_desc": "60 BD DU MANDINET - 77258", "stop_name": "RUE DE LA FERME"}, "geometry": {"type": "Point", "coordinates": [2.630299444015219, 48.836253061962196]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e42a6c72e2a24db2c20b83df2b81d5f2abbad413", "fields": {"departement": "77", "stop_lat": 48.828112417712866, "code_postal": "77258", "stop_lon": 2.6294094846955676, "coord": [48.828112417712866, 2.6294094846955676], "stop_id": 3677804, "stop_desc": "RUE DE LA MAISON ROUGE - 77258", "stop_name": "LA MADELEINE"}, "geometry": {"type": "Point", "coordinates": [2.6294094846955676, 48.828112417712866]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4faa67241245e34407e211522a10097c126737b6", "fields": {"departement": "75", "stop_lat": 48.88023119220922, "code_postal": "75119", "stop_lon": 2.3793463532742947, "coord": [48.88023119220922, 2.3793463532742947], "stop_id": 3926413, "stop_desc": "47 RUE MANIN - 75119", "stop_name": "JEAN MENANS - BUTTES CHAUMONT"}, "geometry": {"type": "Point", "coordinates": [2.3793463532742947, 48.88023119220922]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f6770c74df28bf62107e318526a1796a2728f7e0", "fields": {"departement": "75", "stop_lat": 48.88306758207794, "code_postal": "75119", "stop_lon": 2.3884924119376403, "coord": [48.88306758207794, 2.3884924119376403], "stop_id": 3926417, "stop_desc": "3 RUE DAVID D'ANGERS - 75119", "stop_name": "D'HAUTPOUL"}, "geometry": {"type": "Point", "coordinates": [2.3884924119376403, 48.88306758207794]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "47440674a4db957dd4ea6e52a591c887c38c37ce", "fields": {"departement": "75", "stop_lat": 48.88183427987501, "code_postal": "75119", "stop_lon": 2.3930561487181286, "coord": [48.88183427987501, 2.3930561487181286], "stop_id": 3926418, "stop_desc": "8 PLACE DE RHIN ET DANUBE - 75119", "stop_name": "RHIN ET DANUBE"}, "geometry": {"type": "Point", "coordinates": [2.3930561487181286, 48.88183427987501]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e5353bbba3d374f8004f8dee340187cebd1ecd3d", "fields": {"departement": "75", "stop_lat": 48.88133861367056, "code_postal": "75119", "stop_lon": 2.3959035753806317, "coord": [48.88133861367056, 2.3959035753806317], "stop_id": 3926420, "stop_desc": "78-80 R DAVID D'ANGERS - 75119", "stop_name": "LYCEE DIDEROT"}, "geometry": {"type": "Point", "coordinates": [2.3959035753806317, 48.88133861367056]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "387eeec18c04aae0fd32559b926868b3038e4098", "fields": {"departement": "75", "stop_lat": 48.88361283804051, "code_postal": "75119", "stop_lon": 2.394979498824183, "coord": [48.88361283804051, 2.394979498824183], "stop_id": 3926422, "stop_desc": "96-98 BOULEVARD SERURIER - 75119", "stop_name": "PORTE BRUNET"}, "geometry": {"type": "Point", "coordinates": [2.394979498824183, 48.88361283804051]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9a6c6c958801a6f56c0dbc4e3bdc2a1c86517ec5", "fields": {"departement": "75", "stop_lat": 48.88630824217658, "code_postal": "75119", "stop_lon": 2.39653608246769, "coord": [48.88630824217658, 2.39653608246769], "stop_id": 3926427, "stop_desc": "13 AV DE LA PORTE CHAUMONT - 75119", "stop_name": "PORTE CHAUMONT"}, "geometry": {"type": "Point", "coordinates": [2.39653608246769, 48.88630824217658]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "60e7327ab38450f05dd7c5a717630589decede88", "fields": {"departement": "75", "stop_lat": 48.886334441790105, "code_postal": "75119", "stop_lon": 2.39804881129976, "coord": [48.886334441790105, 2.39804881129976], "stop_id": 3926429, "stop_desc": "FACE 2 RUE DE LA MARSEILLAISE - 75119", "stop_name": "MARSEILLAISE - CHEMINETS"}, "geometry": {"type": "Point", "coordinates": [2.39804881129976, 48.886334441790105]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "39f896ae4c0e8addd966e748bfb78033249c1c27", "fields": {"departement": "75", "stop_lat": 48.884738769060995, "code_postal": "75118", "stop_lon": 2.36149799465864, "coord": [48.884738769060995, 2.36149799465864], "stop_id": 3952750, "stop_desc": "40 RUE PHILIPPE DE GIRARD - 75118", "stop_name": "LA CHAPELLE"}, "geometry": {"type": "Point", "coordinates": [2.36149799465864, 48.884738769060995]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fcd213545ef6f56f9091e40bac8dc2065f0ff1d1", "fields": {"departement": "94", "stop_lat": 48.81100780529823, "code_postal": "94003", "stop_lon": 2.335444797357414, "coord": [48.81100780529823, 2.335444797357414], "stop_id": 3970594, "stop_desc": "FACE 92 AVENUE JEAN JAURES - 94003", "stop_name": "CHAPERON VERT"}, "geometry": {"type": "Point", "coordinates": [2.335444797357414, 48.81100780529823]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "44498476b21d024500cbd77eda51d65852e25c38", "fields": {"departement": "94", "stop_lat": 48.8162565998908, "code_postal": "94037", "stop_lon": 2.3410789534908614, "coord": [48.8162565998908, 2.3410789534908614], "stop_id": 3970599, "stop_desc": "71 AVENUE PAUL VAILLANT COUTURIER - 94037", "stop_name": "GENTILLY RER"}, "geometry": {"type": "Point", "coordinates": [2.3410789534908614, 48.8162565998908]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7b3cc8214db015d017d8eb4676fc209fc5d10ddd", "fields": {"departement": "94", "stop_lat": 48.81591498046112, "code_postal": "94037", "stop_lon": 2.3431747797269917, "coord": [48.81591498046112, 2.3431747797269917], "stop_id": 3970600, "stop_desc": "80 AVENUE PAUL VAILLANT COUTURIER - 94037", "stop_name": "GAUTHEROT - CARREFOUR MAZAGRAN"}, "geometry": {"type": "Point", "coordinates": [2.3431747797269917, 48.81591498046112]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d01f0a9c156d674f5e6f46f8e6a4ad36d6616b29", "fields": {"departement": "94", "stop_lat": 48.81658816886079, "code_postal": "94037", "stop_lon": 2.3529737695584303, "coord": [48.81658816886079, 2.3529737695584303], "stop_id": 3970602, "stop_desc": "FACE 7 RUE CHARLES FREROT - 94037", "stop_name": "VERDUN - VICTOR HUGO."}, "geometry": {"type": "Point", "coordinates": [2.3529737695584303, 48.81658816886079]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "31bdcb85293ecfa4606160d57cc185029011ec26", "fields": {"departement": "94", "stop_lat": 48.81092692369328, "code_postal": "94003", "stop_lon": 2.3361115979106186, "coord": [48.81092692369328, 2.3361115979106186], "stop_id": 3970613, "stop_desc": "88 AVENUE JEAN JAURES - 94003", "stop_name": "CHAPERON VERT"}, "geometry": {"type": "Point", "coordinates": [2.3361115979106186, 48.81092692369328]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9c00f5a4b4ccef26453ffc124b90a024d422fee4", "fields": {"departement": "75", "stop_lat": 48.897546683515536, "code_postal": "75119", "stop_lon": 2.386734715687541, "coord": [48.897546683515536, 2.386734715687541], "stop_id": 3972544, "stop_desc": "81-83 BD MACDONALD - 75119", "stop_name": "PORTE DE LA VILLETTE"}, "geometry": {"type": "Point", "coordinates": [2.386734715687541, 48.897546683515536]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8d5275cb5166db14dbcf8cb2788ba5814feb2b24", "fields": {"departement": "93", "stop_lat": 48.93043936274061, "code_postal": "93027", "stop_lon": 2.3862069226314016, "coord": [48.93043936274061, 2.3862069226314016], "stop_id": 3972564, "stop_desc": "4 AVENUE ROGER SALENGRO - 93027", "stop_name": "SIX ROUTES - ROGER SALENGRO-TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.3862069226314016, 48.93043936274061]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a0eedd9b97495b920e1ffb4eb9bbf90293ffd0a0", "fields": {"departement": "93", "stop_lat": 48.94932063631951, "code_postal": "93072", "stop_lon": 2.3862793551203967, "coord": [48.94932063631951, 2.3862793551203967], "stop_id": 3972570, "stop_desc": "95 BOULEVARD MAXIME GORKI - 93072", "stop_name": "LE GLOBE"}, "geometry": {"type": "Point", "coordinates": [2.3862793551203967, 48.94932063631951]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b0cbf5c701e30352dd89cd84fd4a4b91a291810f", "fields": {"departement": "75", "stop_lat": 48.89766276796457, "code_postal": "75118", "stop_lon": 2.359254943664744, "coord": [48.89766276796457, 2.359254943664744], "stop_id": 4000519, "stop_desc": "102 RUE DE LA CHAPELLE - 75118", "stop_name": "PORTE DE LA CHAPELLE"}, "geometry": {"type": "Point", "coordinates": [2.359254943664744, 48.89766276796457]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a4ee912dc1fbd0596e609f3706dcd69fdf69cb58", "fields": {"departement": "93", "stop_lat": 48.908159946736106, "code_postal": "93066", "stop_lon": 2.3578278674899718, "coord": [48.908159946736106, 2.3578278674899718], "stop_id": 4000526, "stop_desc": "123 AVENUE DU PRESIDENT WILSON - 93066", "stop_name": "EGLISE DE LA PLAINE"}, "geometry": {"type": "Point", "coordinates": [2.3578278674899718, 48.908159946736106]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9d2740f839118fdcdb5c16d03bc5c54edcd18dd3", "fields": {"departement": "93", "stop_lat": 48.91538525739473, "code_postal": "93066", "stop_lon": 2.3592761060856327, "coord": [48.91538525739473, 2.3592761060856327], "stop_id": 4000531, "stop_desc": "61 RUE DU LANDY - 93066", "stop_name": "LANDY - PONT DE SOISSONS"}, "geometry": {"type": "Point", "coordinates": [2.3592761060856327, 48.91538525739473]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9b643d112d52eaec1b2fb14e343c62d645c5939b", "fields": {"departement": "93", "stop_lat": 48.935893608002196, "code_postal": "93066", "stop_lon": 2.3582071924056107, "coord": [48.935893608002196, 2.3582071924056107], "stop_id": 4000545, "stop_desc": "4 PLACE DE LA LEGION D'HONNEUR - 93066", "stop_name": "LEGION D'HONNEUR"}, "geometry": {"type": "Point", "coordinates": [2.3582071924056107, 48.935893608002196]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "874eaea934eb062d78f58ca9c7f77102208b6424", "fields": {"departement": "93", "stop_lat": 48.93682788623877, "code_postal": "93066", "stop_lon": 2.360130980098404, "coord": [48.93682788623877, 2.360130980098404], "stop_id": 4000546, "stop_desc": "18 RUE JEAN JAURES - 93066", "stop_name": "BASILIQUE DE SAINT-DENIS - HOTEL DE VILLE-METRO-TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.360130980098404, 48.93682788623877]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bf346660a58a2bba8cb63c19c11d4fdd84746d24", "fields": {"departement": "93", "stop_lat": 48.940900367593464, "code_postal": "93066", "stop_lon": 2.385439203273614, "coord": [48.940900367593464, 2.385439203273614], "stop_id": 4000557, "stop_desc": "CHEMIN DE MARVILLE - 93066", "stop_name": "LA COURTILLE"}, "geometry": {"type": "Point", "coordinates": [2.385439203273614, 48.940900367593464]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b959cb884c124670b89c7fdbfe5bf31e5dba83fb", "fields": {"departement": "93", "stop_lat": 48.94491894484163, "code_postal": "93066", "stop_lon": 2.3816228091019984, "coord": [48.94491894484163, 2.3816228091019984], "stop_id": 4000560, "stop_desc": "RUE DES FRENES - 93066", "stop_name": "CHEMIN VERT"}, "geometry": {"type": "Point", "coordinates": [2.3816228091019984, 48.94491894484163]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f2be46d1abcf141a96652b5f24de20e1835df86d", "fields": {"departement": "93", "stop_lat": 48.94482912266965, "code_postal": "93066", "stop_lon": 2.381499942308172, "coord": [48.94482912266965, 2.381499942308172], "stop_id": 4000561, "stop_desc": "RUE DES FRENES - 93066", "stop_name": "CHEMIN VERT"}, "geometry": {"type": "Point", "coordinates": [2.381499942308172, 48.94482912266965]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8ab495274791f162ebd760facdb6dda5744b6b1e", "fields": {"departement": "93", "stop_lat": 48.93473471035391, "code_postal": "93066", "stop_lon": 2.355751406190871, "coord": [48.93473471035391, 2.355751406190871], "stop_id": 4000571, "stop_desc": "73 RUE GABRIEL PERI - 93066", "stop_name": "GABRIEL PERI - FRANKLIN"}, "geometry": {"type": "Point", "coordinates": [2.355751406190871, 48.93473471035391]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5cf7a607b5b2668e1542b1108977ff16e320ab3c", "fields": {"departement": "93", "stop_lat": 48.9544351422254, "code_postal": "93079", "stop_lon": 2.3348530149930027, "coord": [48.9544351422254, 2.3348530149930027], "stop_id": 4000743, "stop_desc": "FACE 163 ROUTE DE SAINT-LEU - 93079", "stop_name": "YSER"}, "geometry": {"type": "Point", "coordinates": [2.3348530149930027, 48.9544351422254]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ecc669f297a1f54471c6ccfe5735d4dc2583fe4c", "fields": {"departement": "93", "stop_lat": 48.953824055600066, "code_postal": "93031", "stop_lon": 2.335385224920676, "coord": [48.953824055600066, 2.335385224920676], "stop_id": 4000748, "stop_desc": "149 ROUTE DE SAINT-LEU - 93031", "stop_name": "YSER"}, "geometry": {"type": "Point", "coordinates": [2.335385224920676, 48.953824055600066]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6ef3e1029bda70ce2d970573c6fefcd665a44995", "fields": {"departement": "95", "stop_lat": 48.991592109364355, "code_postal": "95585", "stop_lon": 2.389637742971614, "coord": [48.991592109364355, 2.389637742971614], "stop_id": 4008116, "stop_desc": "2 RUE DU FER A CHEVAL - 95585", "stop_name": "RUE DU FER A CHEVAL"}, "geometry": {"type": "Point", "coordinates": [2.389637742971614, 48.991592109364355]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8100d7f0fe08f4b84ec503423d89743023dfec00", "fields": {"departement": "95", "stop_lat": 48.99444875932004, "code_postal": "95585", "stop_lon": 2.3919349118838595, "coord": [48.99444875932004, 2.3919349118838595], "stop_id": 4008118, "stop_desc": "FACE 19 RUE DU FER A CHEVAL - 95585", "stop_name": "PARC INDUSTRIEL CENTRE"}, "geometry": {"type": "Point", "coordinates": [2.3919349118838595, 48.99444875932004]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a62cee3021b5c603c50ed3f6aa47fc8b5e358089", "fields": {"departement": "95", "stop_lat": 48.99825113553549, "code_postal": "95585", "stop_lon": 2.389398654474389, "coord": [48.99825113553549, 2.389398654474389], "stop_id": 4008124, "stop_desc": "FACE 6 RUE D'ESCOUVRIER - 95585", "stop_name": "TISSONVILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.389398654474389, 48.99825113553549]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "36fc9d40be104ac49495b766b717056baf72fde0", "fields": {"departement": "75", "stop_lat": 48.87184443137578, "code_postal": "75109", "stop_lon": 2.3333036913560887, "coord": [48.87184443137578, 2.3333036913560887], "stop_id": 4008203, "stop_desc": "7 RUE MEYERBEER - 75109", "stop_name": "OPERA"}, "geometry": {"type": "Point", "coordinates": [2.3333036913560887, 48.87184443137578]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "49fd29b130c94ca8789fc106d5b4048bef0c6f6c", "fields": {"departement": "75", "stop_lat": 48.87052260432167, "code_postal": "75108", "stop_lon": 2.3238352803584, "coord": [48.87052260432167, 2.3238352803584], "stop_id": 4008207, "stop_desc": "11 PLACE DE LA MADELEINE - 75108", "stop_name": "MADELEINE"}, "geometry": {"type": "Point", "coordinates": [2.3238352803584, 48.87052260432167]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "43b86cd5eec63a56540b77f39202a1ebe8e534e6", "fields": {"departement": "75", "stop_lat": 48.86704414391043, "code_postal": "75108", "stop_lon": 2.320961760376363, "coord": [48.86704414391043, 2.320961760376363], "stop_id": 4008208, "stop_desc": "10 PLACE DE LA CONCORDE - 75108", "stop_name": "CONCORDE"}, "geometry": {"type": "Point", "coordinates": [2.320961760376363, 48.86704414391043]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "43290d8cbb740c301d617077058d3843569f5298", "fields": {"departement": "75", "stop_lat": 48.87186926063576, "code_postal": "75108", "stop_lon": 2.314366174057174, "coord": [48.87186926063576, 2.314366174057174], "stop_id": 4008211, "stop_desc": "36 AVENUE MATIGNON - 75108", "stop_name": "MATIGNON - SAINT-HONORE"}, "geometry": {"type": "Point", "coordinates": [2.314366174057174, 48.87186926063576]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ce4583b607f5d02070c2c65392156aad1ca846b6", "fields": {"departement": "75", "stop_lat": 48.87296476482569, "code_postal": "75108", "stop_lon": 2.30986963842406, "coord": [48.87296476482569, 2.30986963842406], "stop_id": 4008215, "stop_desc": "PLACE CHASSAIGNE-GUYON - 75108", "stop_name": "SAINT-PHILIPPE-DU-ROULE"}, "geometry": {"type": "Point", "coordinates": [2.30986963842406, 48.87296476482569]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8400246a22e5c3eb6d7a4bd48bc64ddad73f4112", "fields": {"departement": "75", "stop_lat": 48.87401247719477, "code_postal": "75108", "stop_lon": 2.296557776569808, "coord": [48.87401247719477, 2.296557776569808], "stop_id": 4008222, "stop_desc": "AVENUE DE FRIEDLAND - 75108", "stop_name": "CHARLES DE GAULLE - ETOILE - FRIEDLAND"}, "geometry": {"type": "Point", "coordinates": [2.296557776569808, 48.87401247719477]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "02343cd26087c0aada4ae0b189ed57a3b55716df", "fields": {"departement": "75", "stop_lat": 48.873256451982336, "code_postal": "75116", "stop_lon": 2.2934792379538336, "coord": [48.873256451982336, 2.2934792379538336], "stop_id": 4008224, "stop_desc": "2 AVENUE VICTOR HUGO - 75116", "stop_name": "CHARLES DE GAULLE - ETOILE - VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.2934792379538336, 48.873256451982336]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0213b434714348f2dcf814adac742871b8140e9e", "fields": {"departement": "75", "stop_lat": 48.87323866644085, "code_postal": "75116", "stop_lon": 2.2939969829617515, "coord": [48.87323866644085, 2.2939969829617515], "stop_id": 4008225, "stop_desc": "1 AVENUE VICTOR HUGO - 75116", "stop_name": "CHARLES DE GAULLE - ETOILE - VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.2939969829617515, 48.87323866644085]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "02ce4414850c945135e869cde35652c9089864a4", "fields": {"departement": "75", "stop_lat": 48.86981973660597, "code_postal": "75116", "stop_lon": 2.28468130953981, "coord": [48.86981973660597, 2.28468130953981], "stop_id": 4008228, "stop_desc": "2-4 AVENUE BUGEAUD - 75116", "stop_name": "VICTOR HUGO - POINCARE"}, "geometry": {"type": "Point", "coordinates": [2.28468130953981, 48.86981973660597]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5f81d7fe4db2500f368224eff323559aa24a1f27", "fields": {"departement": "75", "stop_lat": 48.86530539791666, "code_postal": "75116", "stop_lon": 2.278909992767549, "coord": [48.86530539791666, 2.278909992767549], "stop_id": 4008233, "stop_desc": "121 RUE DE LA POMPE - 75116", "stop_name": "LYCEE JANSON DE SAILLY"}, "geometry": {"type": "Point", "coordinates": [2.278909992767549, 48.86530539791666]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d255aaea1ad4d9827f05af4d282a60856d559843", "fields": {"departement": "75", "stop_lat": 48.858562818762316, "code_postal": "75116", "stop_lon": 2.2748994950671264, "coord": [48.858562818762316, 2.2748994950671264], "stop_id": 4008239, "stop_desc": "1 RUE DE LA POMPE - 75116", "stop_name": "LA MUETTE - BOULAINVILLIERS RER"}, "geometry": {"type": "Point", "coordinates": [2.2748994950671264, 48.858562818762316]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "52564ce178bab102c4a24a4f7f55b163371663c8", "fields": {"departement": "75", "stop_lat": 48.847246724376646, "code_postal": "75116", "stop_lon": 2.258272328814035, "coord": [48.847246724376646, 2.258272328814035], "stop_id": 4008250, "stop_desc": "8 BOULEVARD MURAT - 75116", "stop_name": "PORTE D'AUTEUIL"}, "geometry": {"type": "Point", "coordinates": [2.258272328814035, 48.847246724376646]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "62d836d97fc4d8511be55cd53598742a52d18741", "fields": {"departement": "92", "stop_lat": 48.84449206259368, "code_postal": "92012", "stop_lon": 2.2517812475774006, "coord": [48.84449206259368, 2.2517812475774006], "stop_id": 4008255, "stop_desc": "1 RUE DU CHATEAU - 92012", "stop_name": "LA TOURELLE"}, "geometry": {"type": "Point", "coordinates": [2.2517812475774006, 48.84449206259368]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c7be1071b4962f32144771f34196f5b8d771fb1e", "fields": {"departement": "92", "stop_lat": 48.843274327797964, "code_postal": "92012", "stop_lon": 2.2458327950717787, "coord": [48.843274327797964, 2.2458327950717787], "stop_id": 4008257, "stop_desc": "59 R DU CHATEAU - 92012", "stop_name": "DENFERT ROCHEREAU"}, "geometry": {"type": "Point", "coordinates": [2.2458327950717787, 48.843274327797964]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4684ae4642fbe2feb9503e325604bd3f2f61c8a3", "fields": {"departement": "92", "stop_lat": 48.84171107935782, "code_postal": "92012", "stop_lon": 2.2354736201528924, "coord": [48.84171107935782, 2.2354736201528924], "stop_id": 4008261, "stop_desc": "148 RUE DE PARIS - 92012", "stop_name": "RUE DE BILLANCOURT"}, "geometry": {"type": "Point", "coordinates": [2.2354736201528924, 48.84171107935782]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f2b97cf4fcd033fcdd773055da3d96c70a6496d8", "fields": {"departement": "92", "stop_lat": 48.84134695499046, "code_postal": "92064", "stop_lon": 2.220632775547223, "coord": [48.84134695499046, 2.220632775547223], "stop_id": 4008268, "stop_desc": "PISTE CIRCULAIRE OUEST DE LA PLACE CLEMENCEAU - 92064", "stop_name": "LA COLLINE"}, "geometry": {"type": "Point", "coordinates": [2.220632775547223, 48.84134695499046]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9cc1f17a3077adda65e986c639053484b403c655", "fields": {"departement": "92", "stop_lat": 48.84092591926018, "code_postal": "92064", "stop_lon": 2.222049786002583, "coord": [48.84092591926018, 2.222049786002583], "stop_id": 4008269, "stop_desc": "QUAI DU MARECHAL JUIN - 92064", "stop_name": "PONT DE SAINT-CLOUD - RIVE GAUCHE"}, "geometry": {"type": "Point", "coordinates": [2.222049786002583, 48.84092591926018]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ae5357bbfd24c8f39423d108b330a3ff3601a181", "fields": {"departement": "92", "stop_lat": 48.84086743332116, "code_postal": "92012", "stop_lon": 2.226720198437352, "coord": [48.84086743332116, 2.226720198437352], "stop_id": 4008270, "stop_desc": "5 BIS AV DU MARECHAL DE LATTRE DE TASSIGNY - 92012", "stop_name": "RHIN ET DANUBE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.226720198437352, 48.84086743332116]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "39bc5484b3c13f96304da81c61ef635de3c547b3", "fields": {"departement": "75", "stop_lat": 48.84797276856627, "code_postal": "75116", "stop_lon": 2.269723827753954, "coord": [48.84797276856627, 2.269723827753954], "stop_id": 4008273, "stop_desc": "55-57 BIS AVENUE THEOPHILE GAUTIER - 75116", "stop_name": "EGLISE D'AUTEUIL"}, "geometry": {"type": "Point", "coordinates": [2.269723827753954, 48.84797276856627]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ef06b12d377bf3836fedeec827128dc1eed7ad91", "fields": {"departement": "75", "stop_lat": 48.852091170862494, "code_postal": "75116", "stop_lon": 2.273599858486286, "coord": [48.852091170862494, 2.273599858486286], "stop_id": 4008275, "stop_desc": "4 AVENUE DU RECTEUR POINCARE - 75116", "stop_name": "LA FONTAINE - RADIO FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.273599858486286, 48.852091170862494]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "19b4f834e54ff8da7180ddf74fb7c48aeec938ce", "fields": {"departement": "75", "stop_lat": 48.85571145111524, "code_postal": "75116", "stop_lon": 2.270558183985436, "coord": [48.85571145111524, 2.270558183985436], "stop_id": 4008277, "stop_desc": "33 AVENUE MOZART - 75116", "stop_name": "RANELAGH"}, "geometry": {"type": "Point", "coordinates": [2.270558183985436, 48.85571145111524]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5f4f819aef8c5d1023fd6b4dc081e2f33eb0573c", "fields": {"departement": "75", "stop_lat": 48.86948844293976, "code_postal": "75108", "stop_lon": 2.3191626921878226, "coord": [48.86948844293976, 2.3191626921878226], "stop_id": 4008279, "stop_desc": "33 RUE DU FAUBOURG SAINT HONORE - 75108", "stop_name": "D'AGUESSEAU"}, "geometry": {"type": "Point", "coordinates": [2.3191626921878226, 48.86948844293976]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5fd6406a9675ad701795f6ef5e2a41eaf00e3bd8", "fields": {"departement": "75", "stop_lat": 48.870451329716694, "code_postal": "75102", "stop_lon": 2.3316553250501926, "coord": [48.870451329716694, 2.3316553250501926], "stop_id": 4008283, "stop_desc": "19 BOULEVARD DES CAPUCINES - 75102", "stop_name": "OPERA RUE DE LA PAIX"}, "geometry": {"type": "Point", "coordinates": [2.3316553250501926, 48.870451329716694]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5ade1c22b9c46d83bb9578652b1a4df1098fa766", "fields": {"departement": "75", "stop_lat": 48.8699266028549, "code_postal": "75116", "stop_lon": 2.2825014245073847, "coord": [48.8699266028549, 2.2825014245073847], "stop_id": 4008291, "stop_desc": "167-169 RUE DE LA POMPE - 75116", "stop_name": "BUGEAUD"}, "geometry": {"type": "Point", "coordinates": [2.2825014245073847, 48.8699266028549]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4fd22663666029447be9ca6a6ffb632014bfa630", "fields": {"departement": "75", "stop_lat": 48.85791537342734, "code_postal": "75116", "stop_lon": 2.2742328714160207, "coord": [48.85791537342734, 2.2742328714160207], "stop_id": 4008301, "stop_desc": "7 AVENUE MOZART - 75116", "stop_name": "LA MUETTE - BOULAINVILLIERS RER"}, "geometry": {"type": "Point", "coordinates": [2.2742328714160207, 48.85791537342734]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "871fada25b0b824fde7835e40998c5a3a15767c9", "fields": {"departement": "75", "stop_lat": 48.85315277938903, "code_postal": "75116", "stop_lon": 2.275668673992765, "coord": [48.85315277938903, 2.275668673992765], "stop_id": 4008303, "stop_desc": "19 BIS RUE BOULAINVILLIERS - 75116", "stop_name": "ASSOMPTION - RADIO FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.275668673992765, 48.85315277938903]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4fd914a51c0a180b1f146a84b80c3c7a8e7fb099", "fields": {"departement": "75", "stop_lat": 48.84877815306537, "code_postal": "75116", "stop_lon": 2.2638261627112803, "coord": [48.84877815306537, 2.2638261627112803], "stop_id": 4008307, "stop_desc": "16-20 RUE POUSSIN - 75116", "stop_name": "MICHEL-ANGE - AUTEUIL"}, "geometry": {"type": "Point", "coordinates": [2.2638261627112803, 48.84877815306537]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4e71350bad0b400f32402af557178e031c64fa68", "fields": {"departement": "75", "stop_lat": 48.8496185218846, "code_postal": "75116", "stop_lon": 2.271587388512346, "coord": [48.8496185218846, 2.271587388512346], "stop_id": 4008314, "stop_desc": "31 AVENUE THEOPHILE GAUTIER - 75116", "stop_name": "PERRICHONT"}, "geometry": {"type": "Point", "coordinates": [2.271587388512346, 48.8496185218846]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2db2ff4323ebda3d5915a749fea7c6528a3d0f1a", "fields": {"departement": "75", "stop_lat": 48.85571145111524, "code_postal": "75116", "stop_lon": 2.270558183985436, "coord": [48.85571145111524, 2.270558183985436], "stop_id": 4008317, "stop_desc": "33 AVENUE MOZART - 75116", "stop_name": "RANELAGH"}, "geometry": {"type": "Point", "coordinates": [2.270558183985436, 48.85571145111524]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "79cf6766b363ac087bc8ebbceb25404e74cabf36", "fields": {"departement": "92", "stop_lat": 48.84134695499046, "code_postal": "92064", "stop_lon": 2.220632775547223, "coord": [48.84134695499046, 2.220632775547223], "stop_id": 4008359, "stop_desc": "PISTE CIRCULAIRE OUEST DE LA PLACE CLEMENCEAU - 92064", "stop_name": "LA COLLINE"}, "geometry": {"type": "Point", "coordinates": [2.220632775547223, 48.84134695499046]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "311710abdc34d55ffbb7b9b65b0cee7127b70f40", "fields": {"departement": "92", "stop_lat": 48.84086743332116, "code_postal": "92012", "stop_lon": 2.226720198437352, "coord": [48.84086743332116, 2.226720198437352], "stop_id": 4008361, "stop_desc": "5 BIS AV DU MARECHAL DE LATTRE DE TASSIGNY - 92012", "stop_name": "RHIN ET DANUBE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.226720198437352, 48.84086743332116]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bd4c448e5189a32eabb999970a8835a4e643068c", "fields": {"departement": "92", "stop_lat": 48.84086085614501, "code_postal": "92012", "stop_lon": 2.2293480968867856, "coord": [48.84086085614501, 2.2293480968867856], "stop_id": 4008362, "stop_desc": "157-159 R DE PARIS - 92012", "stop_name": "RHIN ET DANUBE-METRO."}, "geometry": {"type": "Point", "coordinates": [2.2293480968867856, 48.84086085614501]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3bb6e37e10c7942371fc383f0546cd30333a4bcb", "fields": {"departement": "75", "stop_lat": 48.84576235879368, "code_postal": "75116", "stop_lon": 2.256150295891413, "coord": [48.84576235879368, 2.256150295891413], "stop_id": 4008369, "stop_desc": "AVENUE DU GENERAL SARRAIL - 75116", "stop_name": "PORTE MOLITOR"}, "geometry": {"type": "Point", "coordinates": [2.256150295891413, 48.84576235879368]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f869f885388dfed58f382d377d4eceda94ec5b87", "fields": {"departement": "75", "stop_lat": 48.852091170862494, "code_postal": "75116", "stop_lon": 2.273599858486286, "coord": [48.852091170862494, 2.273599858486286], "stop_id": 4008375, "stop_desc": "4 AVENUE DU RECTEUR POINCARE - 75116", "stop_name": "LA FONTAINE - RADIO FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.273599858486286, 48.852091170862494]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8bcfddb167d166ff210c3e1c678abedc7f7ecbe8", "fields": {"departement": "75", "stop_lat": 48.85571145111524, "code_postal": "75116", "stop_lon": 2.270558183985436, "coord": [48.85571145111524, 2.270558183985436], "stop_id": 4008377, "stop_desc": "33 AVENUE MOZART - 75116", "stop_name": "RANELAGH"}, "geometry": {"type": "Point", "coordinates": [2.270558183985436, 48.85571145111524]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "514d22ffd0019a1d18a14186407f5a759f14c05e", "fields": {"departement": "75", "stop_lat": 48.87294217395915, "code_postal": "75116", "stop_lon": 2.294242469445494, "coord": [48.87294217395915, 2.294242469445494], "stop_id": 4008850, "stop_desc": "2 AVENUE KLEBER - 75116", "stop_name": "CHARLES DE GAULLE - ETOILE - KLEBER"}, "geometry": {"type": "Point", "coordinates": [2.294242469445494, 48.87294217395915]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9fd5ddaa7c03f9c4cf779e4d389cef7737d9351a", "fields": {"departement": "75", "stop_lat": 48.861218372452, "code_postal": "75116", "stop_lon": 2.2836684303554344, "coord": [48.861218372452, 2.2836684303554344], "stop_id": 4008857, "stop_desc": "12 AVENUE PAUL DOUMER - 75116", "stop_name": "SCHEFFER"}, "geometry": {"type": "Point", "coordinates": [2.2836684303554344, 48.861218372452]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "60f369f722b610794d306509fde1291b9a452bdf", "fields": {"departement": "75", "stop_lat": 48.859877629995296, "code_postal": "75116", "stop_lon": 2.280182848722559, "coord": [48.859877629995296, 2.280182848722559], "stop_id": 4008860, "stop_desc": "47 AVENUE PAUL DOUMER - 75116", "stop_name": "LA TOUR"}, "geometry": {"type": "Point", "coordinates": [2.280182848722559, 48.859877629995296]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e34015cf733923597a188c988af7c46b3f2d99f6", "fields": {"departement": "75", "stop_lat": 48.859633993882, "code_postal": "75116", "stop_lon": 2.278180844388691, "coord": [48.859633993882, 2.278180844388691], "stop_id": 4008861, "stop_desc": "78 AV PAUL DOUMER - 75116", "stop_name": "PLACE POSSOZ"}, "geometry": {"type": "Point", "coordinates": [2.278180844388691, 48.859633993882]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "20a75d18f4c229417f90b0256e7cdc5e7c82c16e", "fields": {"departement": "75", "stop_lat": 48.844726268110726, "code_postal": "75116", "stop_lon": 2.266269338787063, "coord": [48.844726268110726, 2.266269338787063], "stop_id": 4008871, "stop_desc": "16-20 RUE CHARDON LAGACHE - 75116", "stop_name": "CHARDON-LAGACHE - MOLITOR"}, "geometry": {"type": "Point", "coordinates": [2.266269338787063, 48.844726268110726]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9420164bcb534ba4156ff5cfe517b54687d1a57b", "fields": {"departement": "75", "stop_lat": 48.838837106438454, "code_postal": "75116", "stop_lon": 2.262478687427494, "coord": [48.838837106438454, 2.262478687427494], "stop_id": 4008874, "stop_desc": "27 RUE CLAUDE TERRASSE - 75116", "stop_name": "VERSAILLES - CHARDON LAGACHE"}, "geometry": {"type": "Point", "coordinates": [2.262478687427494, 48.838837106438454]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2f096705be496537baa3214c22bf97a5dcd2f683", "fields": {"departement": "75", "stop_lat": 48.83751202198079, "code_postal": "75116", "stop_lon": 2.2564899547503674, "coord": [48.83751202198079, 2.2564899547503674], "stop_id": 4008877, "stop_desc": "PLACE DE LA PORTE DE SAINT CLOUD - 75116", "stop_name": "PORTE DE SAINT-CLOUD"}, "geometry": {"type": "Point", "coordinates": [2.2564899547503674, 48.83751202198079]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "28bbe284cb2cf505043e6b8d8721dd4fa65039d1", "fields": {"departement": "92", "stop_lat": 48.823217271990735, "code_postal": "92072", "stop_lon": 2.2102336043309494, "coord": [48.823217271990735, 2.2102336043309494], "stop_id": 4008899, "stop_desc": "FACE 8 AVENUE DE L'EUROPE - 92072", "stop_name": "MARCHE SAINT-ROMAIN"}, "geometry": {"type": "Point", "coordinates": [2.2102336043309494, 48.823217271990735]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "655a6ee23a2b8c932a5e50b3e76ca8d9755c360b", "fields": {"departement": "92", "stop_lat": 48.822225083110055, "code_postal": "92072", "stop_lon": 2.206955758100564, "coord": [48.822225083110055, 2.206955758100564], "stop_id": 4008900, "stop_desc": "30 AVENUE DE L'EUROPE - 92072", "stop_name": "PLACE GABRIEL PERI"}, "geometry": {"type": "Point", "coordinates": [2.206955758100564, 48.822225083110055]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bc730451d6c12e7c22a451975474f6f3d8c14357", "fields": {"departement": "92", "stop_lat": 48.812941234038774, "code_postal": "92022", "stop_lon": 2.191846224796117, "coord": [48.812941234038774, 2.191846224796117], "stop_id": 4008908, "stop_desc": "928 AVENUE ROGER SALENGRO - 92022", "stop_name": "ATRIUM"}, "geometry": {"type": "Point", "coordinates": [2.191846224796117, 48.812941234038774]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2b8d30502558584101953b8f7f4dd4880332cceb", "fields": {"departement": "92", "stop_lat": 48.8123244792222, "code_postal": "92022", "stop_lon": 2.1873435364903364, "coord": [48.8123244792222, 2.1873435364903364], "stop_id": 4008914, "stop_desc": "FACE 23 RUE CARNOT - 92022", "stop_name": "GARE DE CHAVILLE RIVE DROITE"}, "geometry": {"type": "Point", "coordinates": [2.1873435364903364, 48.8123244792222]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9de886aa7adfe983277a47ccb4bfff973173f512", "fields": {"departement": "92", "stop_lat": 48.82719400030173, "code_postal": "92072", "stop_lon": 2.2232373238068854, "coord": [48.82719400030173, 2.2232373238068854], "stop_id": 4008921, "stop_desc": "1 GRANDE RUE - 92072", "stop_name": "MUSEE DE SEVRES"}, "geometry": {"type": "Point", "coordinates": [2.2232373238068854, 48.82719400030173]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "73112c3e80508e8072e9a420c4349707ff2678d1", "fields": {"departement": "91", "stop_lat": 48.7244458500694, "code_postal": "91377", "stop_lon": 2.2604287428627776, "coord": [48.7244458500694, 2.2604287428627776], "stop_id": 3759047, "stop_desc": "R CARNOT - 91377", "stop_name": "MASSY-PALAISEAU RER"}, "geometry": {"type": "Point", "coordinates": [2.2604287428627776, 48.7244458500694]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ff3cc128173d2ef162c82f7532eb0e3359d452a5", "fields": {"departement": "91", "stop_lat": 48.72942210057407, "code_postal": "91377", "stop_lon": 2.2697962766939255, "coord": [48.72942210057407, 2.2697962766939255], "stop_id": 3759050, "stop_desc": "RUE VICTOR BASCH - 91377", "stop_name": "MAIRIE DE MASSY"}, "geometry": {"type": "Point", "coordinates": [2.2697962766939255, 48.72942210057407]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ba4089008135928cb59c3cff14bd0d45922954c7", "fields": {"departement": "91", "stop_lat": 48.727741938586036, "code_postal": "91377", "stop_lon": 2.2709668825236338, "coord": [48.727741938586036, 2.2709668825236338], "stop_id": 3759053, "stop_desc": "RUE VICTOR BASCH - 91377", "stop_name": "LA TUILERIE"}, "geometry": {"type": "Point", "coordinates": [2.2709668825236338, 48.727741938586036]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ac2d18f0f4910e7b5ab840dfc9806af5236f3558", "fields": {"departement": "91", "stop_lat": 48.726891202649426, "code_postal": "91377", "stop_lon": 2.2768915190940655, "coord": [48.726891202649426, 2.2768915190940655], "stop_id": 3759056, "stop_desc": "AVENUE DE L'EUROPE - 91377", "stop_name": "AVENUE DE L'EUROPE - CENTRE COMMERCIAL"}, "geometry": {"type": "Point", "coordinates": [2.2768915190940655, 48.726891202649426]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "24161363f60780ba4b1313cfea1122d347934bca", "fields": {"departement": "91", "stop_lat": 48.72334548650861, "code_postal": "91377", "stop_lon": 2.286962268814599, "coord": [48.72334548650861, 2.286962268814599], "stop_id": 3759059, "stop_desc": "AVENUE DE L'EUROPE - 91377", "stop_name": "LA BONDE"}, "geometry": {"type": "Point", "coordinates": [2.286962268814599, 48.72334548650861]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e0fa06a6d1ee8d9dc81ebab06351d447ed8daa04", "fields": {"departement": "91", "stop_lat": 48.70487397259365, "code_postal": "91161", "stop_lon": 2.3159063254443284, "coord": [48.70487397259365, 2.3159063254443284], "stop_id": 3759070, "stop_desc": "30 AVENUE MAZARIN - 91161", "stop_name": "BEAUREGARD"}, "geometry": {"type": "Point", "coordinates": [2.3159063254443284, 48.70487397259365]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c3a72563175dbfb5d05c475154d5e957ecf02eda", "fields": {"departement": "91", "stop_lat": 48.70173848805094, "code_postal": "91432", "stop_lon": 2.3273823367827595, "coord": [48.70173848805094, 2.3273823367827595], "stop_id": 3759076, "stop_desc": "54 AVENUE GABRIEL PERI - 91432", "stop_name": "PIERRE LOTI"}, "geometry": {"type": "Point", "coordinates": [2.3273823367827595, 48.70173848805094]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "06694a3fce60532f3f3de941a6769773a74ab879", "fields": {"departement": "91", "stop_lat": 48.70465994218228, "code_postal": "91432", "stop_lon": 2.329948462768087, "coord": [48.70465994218228, 2.329948462768087], "stop_id": 3759078, "stop_desc": "AVENUE MARCEL TELOTTE - 91432", "stop_name": "PIERRE BROSSOLETTE"}, "geometry": {"type": "Point", "coordinates": [2.329948462768087, 48.70465994218228]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5df64bd591810c5a9fb638f22deefc83795fafad", "fields": {"departement": "91", "stop_lat": 48.70530733123745, "code_postal": "91432", "stop_lon": 2.3386263033752237, "coord": [48.70530733123745, 2.3386263033752237], "stop_id": 3759084, "stop_desc": "31 AVENUE CHARLES DE GAULLE - 91432", "stop_name": "LE STADE"}, "geometry": {"type": "Point", "coordinates": [2.3386263033752237, 48.70530733123745]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9eb402c49e4e3f23e52bb5f47f95d1c3d77642a8", "fields": {"departement": "91", "stop_lat": 48.70593138039471, "code_postal": "91027", "stop_lon": 2.372238430729525, "coord": [48.70593138039471, 2.372238430729525], "stop_id": 3759092, "stop_desc": "125 AVENUE MARCEL SEMBAT - 91027", "stop_name": "BELLE ETOILE - LA POMPE"}, "geometry": {"type": "Point", "coordinates": [2.372238430729525, 48.70593138039471]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9249507632b66df5a186da0ddb8f8222a8bed89d", "fields": {"departement": "91", "stop_lat": 48.70733186538039, "code_postal": "91027", "stop_lon": 2.3776581986811003, "coord": [48.70733186538039, 2.3776581986811003], "stop_id": 3759093, "stop_desc": "81 AVENUE MARCEL SEMBAT - 91027", "stop_name": "LA PLAINE"}, "geometry": {"type": "Point", "coordinates": [2.3776581986811003, 48.70733186538039]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "44bd0fd8baaeb25357f32dad3538bcfe5f8328ba", "fields": {"departement": "91", "stop_lat": 48.7077884725674, "code_postal": "91027", "stop_lon": 2.3826564118763565, "coord": [48.7077884725674, 2.3826564118763565], "stop_id": 3759095, "stop_desc": "RUE JEAN-BAPTISTE DE LA SALLE - 91027", "stop_name": "ALBERT SARRAUT"}, "geometry": {"type": "Point", "coordinates": [2.3826564118763565, 48.7077884725674]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "50e497631f840820ca6a0eba26a16ffa1b02f22c", "fields": {"departement": "92", "stop_lat": 48.78596594872719, "code_postal": "92014", "stop_lon": 2.3170563365355727, "coord": [48.78596594872719, 2.3170563365355727], "stop_id": 3763988, "stop_desc": "12 BOULEVARD DU MARECHAL JOFFRE - 92014", "stop_name": "PLACE DE LA RESISTANCE - CHARLES DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.3170563365355727, 48.78596594872719]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8ce293ba75b998cede2e2b306749d8c85cb9b398", "fields": {"departement": "92", "stop_lat": 48.782711905190155, "code_postal": "92014", "stop_lon": 2.3147998813643778, "coord": [48.782711905190155, 2.3147998813643778], "stop_id": 3763989, "stop_desc": "FACE 43 BOULEVARD DU MARECHAL JOFFRE - 92014", "stop_name": "RUE DU 8 MAI 1945"}, "geometry": {"type": "Point", "coordinates": [2.3147998813643778, 48.782711905190155]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9d7894aafacccc223cf3565abc227ce63d905575", "fields": {"departement": "92", "stop_lat": 48.777076174853896, "code_postal": "92014", "stop_lon": 2.313442392219605, "coord": [48.777076174853896, 2.313442392219605], "stop_id": 3763992, "stop_desc": "114 BOULEVARD DU MARECHAL JOFFRE - 92014", "stop_name": "PETIT CHAMBORD - LYCEE LAKANAL"}, "geometry": {"type": "Point", "coordinates": [2.313442392219605, 48.777076174853896]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f049d77bc22f25534d494827795e29f8c199bb9b", "fields": {"departement": "92", "stop_lat": 48.770703432969064, "code_postal": "92002", "stop_lon": 2.3123167134725082, "coord": [48.770703432969064, 2.3123167134725082], "stop_id": 3763996, "stop_desc": "26 AV RAYMOND ARON - 92002", "stop_name": "LA FONTAINE"}, "geometry": {"type": "Point", "coordinates": [2.3123167134725082, 48.770703432969064]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a567384a161a846fbedf20686fe7510b7f5c40e7", "fields": {"departement": "92", "stop_lat": 48.760366045536514, "code_postal": "92002", "stop_lon": 2.3075770618196296, "coord": [48.760366045536514, 2.3075770618196296], "stop_id": 3764000, "stop_desc": "105 AVENUE ARISTIDE BRIAND - 92002", "stop_name": "MORTEAUX"}, "geometry": {"type": "Point", "coordinates": [2.3075770618196296, 48.760366045536514]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d2034f8d2e00f06d817bac8d667745c06d4aea9d", "fields": {"departement": "92", "stop_lat": 48.76263134269084, "code_postal": "92002", "stop_lon": 2.308772169484832, "coord": [48.76263134269084, 2.308772169484832], "stop_id": 3764022, "stop_desc": "148 AVENUE ARISTIDE BRIAND - 92002", "stop_name": "GENERAL DE GAULLE - CROIX DE BERNY"}, "geometry": {"type": "Point", "coordinates": [2.308772169484832, 48.76263134269084]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "01ef0bd2458ab1eab3de3b49085b3a067e5e2060", "fields": {"departement": "91", "stop_lat": 48.728684203818474, "code_postal": "91377", "stop_lon": 2.254254164683764, "coord": [48.728684203818474, 2.254254164683764], "stop_id": 3764104, "stop_desc": "AVENUE JEAN MONNET - 91377", "stop_name": "LES RUELLES"}, "geometry": {"type": "Point", "coordinates": [2.254254164683764, 48.728684203818474]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "641d3a99ef94755b336a44edead8cddbab9f2b70", "fields": {"departement": "91", "stop_lat": 48.7319476269789, "code_postal": "91377", "stop_lon": 2.2552000770430967, "coord": [48.7319476269789, 2.2552000770430967], "stop_id": 3764109, "stop_desc": "RUE DE VERSAILLES - 91377", "stop_name": "LYCEE DE VILGENIS"}, "geometry": {"type": "Point", "coordinates": [2.2552000770430967, 48.7319476269789]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2b7c3bfc66751bd3b93147b4eab5d569d58f62ca", "fields": {"departement": "91", "stop_lat": 48.73362431871539, "code_postal": "91377", "stop_lon": 2.2625756555009833, "coord": [48.73362431871539, 2.2625756555009833], "stop_id": 3764112, "stop_desc": "7 BOULEVARD DU 1ER MAI - 91377", "stop_name": "BOULEVARD DU 1ER MAI"}, "geometry": {"type": "Point", "coordinates": [2.2625756555009833, 48.73362431871539]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5f45c62590c34445f2842e7db09c4ac328a92cde", "fields": {"departement": "91", "stop_lat": 48.73683356451826, "code_postal": "91377", "stop_lon": 2.263250482235262, "coord": [48.73683356451826, 2.263250482235262], "stop_id": 3764114, "stop_desc": "RUE THOMAS MAZARIK - 91377", "stop_name": "EMILE ZOLA"}, "geometry": {"type": "Point", "coordinates": [2.263250482235262, 48.73683356451826]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5f35a10b2f1b83781a1d214dcea206df433a62cb", "fields": {"departement": "91", "stop_lat": 48.73645569981123, "code_postal": "91377", "stop_lon": 2.262680297633257, "coord": [48.73645569981123, 2.262680297633257], "stop_id": 3764115, "stop_desc": "BOULEVARD DE LA PAIX - 91377", "stop_name": "EMILE ZOLA"}, "geometry": {"type": "Point", "coordinates": [2.262680297633257, 48.73645569981123]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "60a742aa8494bdf37bb505cfad61f6172b52525b", "fields": {"departement": "94", "stop_lat": 48.7801367438478, "code_postal": "94028", "stop_lon": 2.465952016076189, "coord": [48.7801367438478, 2.465952016076189], "stop_id": 3619774, "stop_desc": "60 AVENUE DU DOCTEUR PAUL CASALIS - 94028", "stop_name": "CASALIS-SAVAR"}, "geometry": {"type": "Point", "coordinates": [2.465952016076189, 48.7801367438478]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "251d6c91db610e46a7f5dafc963a43503a0d4741", "fields": {"departement": "94", "stop_lat": 48.799383900372796, "code_postal": "94028", "stop_lon": 2.4533197609918105, "coord": [48.799383900372796, 2.4533197609918105], "stop_id": 3619811, "stop_desc": "AVENUE DU MARECHAL DE LATTRE DE TASSIGNY - 94028", "stop_name": "HENRI MONDOR - LAFERRIERE"}, "geometry": {"type": "Point", "coordinates": [2.4533197609918105, 48.799383900372796]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ef5c5a002d0fea7776454daea6bdbaa598aa4096", "fields": {"departement": "94", "stop_lat": 48.77075357232142, "code_postal": "94028", "stop_lon": 2.4263325382408234, "coord": [48.77075357232142, 2.4263325382408234], "stop_id": 3620249, "stop_desc": "112 AVENUE VICTOR HUGO - 94028", "stop_name": "PARC INTERDEPARTEMENTAL DES SPORTS"}, "geometry": {"type": "Point", "coordinates": [2.4263325382408234, 48.77075357232142]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c10e45ec4447e6b7307d5b209e9d86818d55f0b6", "fields": {"departement": "94", "stop_lat": 48.76284237079401, "code_postal": "94022", "stop_lon": 2.4009905019262536, "coord": [48.76284237079401, 2.4009905019262536], "stop_id": 3620239, "stop_desc": "FACE 2BIS AVENUE GEORGES HALGOULT - 94022", "stop_name": "RENE PANHARD"}, "geometry": {"type": "Point", "coordinates": [2.4009905019262536, 48.76284237079401]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cae4e8ea3dcad0108c2a83c662709ee035ca8d6d", "fields": {"departement": "94", "stop_lat": 48.76426039590838, "code_postal": "94022", "stop_lon": 2.4047854974824947, "coord": [48.76426039590838, 2.4047854974824947], "stop_id": 3620241, "stop_desc": "4 AVENUE GAMBETTA - 94022", "stop_name": "ROUGET DE LISLE"}, "geometry": {"type": "Point", "coordinates": [2.4047854974824947, 48.76426039590838]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "013ce9c0cf1ac5a9f5671ca2b7001769820a8b6a", "fields": {"departement": "94", "stop_lat": 48.76432242204478, "code_postal": "94022", "stop_lon": 2.406335512595289, "coord": [48.76432242204478, 2.406335512595289], "stop_id": 3620240, "stop_desc": "7 AV GAMBETTA - 94022", "stop_name": "ROUGET DE LISLE"}, "geometry": {"type": "Point", "coordinates": [2.406335512595289, 48.76432242204478]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ad4b1e66bc2ddad2a64aa3a69c831753f0c0f5ed", "fields": {"departement": "94", "stop_lat": 48.763057563786816, "code_postal": "94022", "stop_lon": 2.401956052432323, "coord": [48.763057563786816, 2.401956052432323], "stop_id": 3620238, "stop_desc": "37 AVENUE GAMBETTA - 94022", "stop_name": "RENE PANHARD"}, "geometry": {"type": "Point", "coordinates": [2.401956052432323, 48.763057563786816]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6998af5386a3922e8a331db5734e983230b1248f", "fields": {"departement": "94", "stop_lat": 48.76754244330636, "code_postal": "94022", "stop_lon": 2.417040444311894, "coord": [48.76754244330636, 2.417040444311894], "stop_id": 3620244, "stop_desc": "26 BIS AVENUE VICTOR HUGO - 94022", "stop_name": "PASTEUR"}, "geometry": {"type": "Point", "coordinates": [2.417040444311894, 48.76754244330636]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e5028dd56ceadf964a18e803a0f766d1f50f027f", "fields": {"departement": "94", "stop_lat": 48.773810015168586, "code_postal": "94028", "stop_lon": 2.4370125265769786, "coord": [48.773810015168586, 2.4370125265769786], "stop_id": 3620251, "stop_desc": "0 AV DE LA POMPADOUR - 94028", "stop_name": "POMPADOUR"}, "geometry": {"type": "Point", "coordinates": [2.4370125265769786, 48.773810015168586]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8f275fc1f294cc2a705429258fb2c20287412263", "fields": {"departement": "94", "stop_lat": 48.77361607251992, "code_postal": "94028", "stop_lon": 2.4430226272322693, "coord": [48.77361607251992, 2.4430226272322693], "stop_id": 3620253, "stop_desc": "0 TCSP - 94028", "stop_name": "BASSE QUINTE"}, "geometry": {"type": "Point", "coordinates": [2.4430226272322693, 48.77361607251992]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3c1632f5007688f31ac3f1e483f18b7c70cdd157", "fields": {"departement": "93", "stop_lat": 48.82357736365424, "code_postal": "93051", "stop_lon": 2.579715542785822, "coord": [48.82357736365424, 2.579715542785822], "stop_id": 3639466, "stop_desc": "1 AVENUE DES BOIS SAINT-MARTIN - 93051", "stop_name": "LES YVRIS - NOISY-LE-GRAND RER"}, "geometry": {"type": "Point", "coordinates": [2.579715542785822, 48.82357736365424]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "935ea5969af7703a78c4110750047d2efb62c865", "fields": {"departement": "77", "stop_lat": 48.829559283606066, "code_postal": "77169", "stop_lon": 2.5985431471483054, "coord": [48.829559283606066, 2.5985431471483054], "stop_id": 3639456, "stop_desc": "FACE 26 BOULEVARD ANCIEN MONASTERE - 77169", "stop_name": "MALNOUE - ANCIEN MONASTERE"}, "geometry": {"type": "Point", "coordinates": [2.5985431471483054, 48.829559283606066]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a4fb2d9318fbed5e6c659ce6ee3f316e20f9f31f", "fields": {"departement": "77", "stop_lat": 48.84498682387142, "code_postal": "77083", "stop_lon": 2.6044898346724326, "coord": [48.84498682387142, 2.6044898346724326], "stop_id": 3639451, "stop_desc": "FACE 14-16 COURS DU LUZARD - 77083", "stop_name": "FONTAINE AUX COULONS"}, "geometry": {"type": "Point", "coordinates": [2.6044898346724326, 48.84498682387142]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f1f9dceb633df8ee96cce665659d85d233373885", "fields": {"departement": "77", "stop_lat": 48.84129932386872, "code_postal": "77083", "stop_lon": 2.6056418301533975, "coord": [48.84129932386872, 2.6056418301533975], "stop_id": 3639453, "stop_desc": "COURS DU LUZARD - 77083", "stop_name": "PLACE PABLO PICASSO"}, "geometry": {"type": "Point", "coordinates": [2.6056418301533975, 48.84129932386872]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7cfe9cfde90cf19a99f42c6ac7e3363191edec66", "fields": {"departement": "77", "stop_lat": 48.83573286498586, "code_postal": "77083", "stop_lon": 2.5864026990954727, "coord": [48.83573286498586, 2.5864026990954727], "stop_id": 3639482, "stop_desc": "RUE ALBERT EINSTEIN - 77083", "stop_name": "ESPACE DESCARTES"}, "geometry": {"type": "Point", "coordinates": [2.5864026990954727, 48.83573286498586]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fd12d95771cb7269013f3e412d041c587a423c77", "fields": {"departement": "77", "stop_lat": 48.85446624161854, "code_postal": "77083", "stop_lon": 2.59747009502811, "coord": [48.85446624161854, 2.59747009502811], "stop_id": 3639445, "stop_desc": "34 AVENUE DE CHELLES - 77083", "stop_name": "POINTE DE CHAMPS"}, "geometry": {"type": "Point", "coordinates": [2.59747009502811, 48.85446624161854]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bfe60c0f2bddaa642c6471891c9932ddc34ee353", "fields": {"departement": "93", "stop_lat": 48.83121834413303, "code_postal": "93051", "stop_lon": 2.5745372744484656, "coord": [48.83121834413303, 2.5745372744484656], "stop_id": 3639471, "stop_desc": "0 BD DES ASTRONAUTES - 93051", "stop_name": "MONTGOLFIERE"}, "geometry": {"type": "Point", "coordinates": [2.5745372744484656, 48.83121834413303]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "14a756659efac9dbef2a2a877a492bafb5b06858", "fields": {"departement": "77", "stop_lat": 48.84238030651938, "code_postal": "77083", "stop_lon": 2.583711336428734, "coord": [48.84238030651938, 2.583711336428734], "stop_id": 3639487, "stop_desc": "FACE 23-25 AV AMPERE - 77083", "stop_name": "C.R.O.U.S."}, "geometry": {"type": "Point", "coordinates": [2.583711336428734, 48.84238030651938]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9de3a15934f00e7471d503baba53bd9013718d2c", "fields": {"departement": "94", "stop_lat": 48.80659772200204, "code_postal": "94068", "stop_lon": 2.4734878556768183, "coord": [48.80659772200204, 2.4734878556768183], "stop_id": 3663581, "stop_desc": "7 RUE DES REMISES - 94068", "stop_name": "SAINT-MAUR-CRETEIL RER - LE PARVIS"}, "geometry": {"type": "Point", "coordinates": [2.4734878556768183, 48.80659772200204]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b54a5c3efb3c4fdd9e72fb93c016e8b61dfa2d0f", "fields": {"departement": "94", "stop_lat": 48.814627272661085, "code_postal": "94046", "stop_lon": 2.443636947184136, "coord": [48.814627272661085, 2.443636947184136], "stop_id": 3663569, "stop_desc": "127-131 RUE GEORGES CLEMENCEAU - 94046", "stop_name": "PASSERELLE DE CHARENTONNEAU"}, "geometry": {"type": "Point", "coordinates": [2.443636947184136, 48.814627272661085]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d708c0bf61d065ad118e71e0269b8b1ca4c5bde4", "fields": {"departement": "94", "stop_lat": 48.807115850411975, "code_postal": "94068", "stop_lon": 2.476224250298953, "coord": [48.807115850411975, 2.476224250298953], "stop_id": 3663620, "stop_desc": "5-7 BOULEVARD RABELAIS - 94068", "stop_name": "LIBERATION - RABELAIS"}, "geometry": {"type": "Point", "coordinates": [2.476224250298953, 48.807115850411975]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dbf1245d9174e2513011ad3293db2f27a2562abd", "fields": {"departement": "94", "stop_lat": 48.81557632329112, "code_postal": "94046", "stop_lon": 2.4261781005441354, "coord": [48.81557632329112, 2.4261781005441354], "stop_id": 3663641, "stop_desc": "FACE 5 RUE MARECHAL JUIN - 94046", "stop_name": "PAUL BERT"}, "geometry": {"type": "Point", "coordinates": [2.4261781005441354, 48.81557632329112]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "362e9b6ee5b347678cd6d3661e8c448370ea5473", "fields": {"departement": "94", "stop_lat": 48.81177814731839, "code_postal": "94046", "stop_lon": 2.4436447166406614, "coord": [48.81177814731839, 2.4436447166406614], "stop_id": 3663633, "stop_desc": "80 RUE GEORGES CLEMENCEAU - 94046", "stop_name": "CONCORDE"}, "geometry": {"type": "Point", "coordinates": [2.4436447166406614, 48.81177814731839]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8db6d9cba0989ce80c95c08892c1c8d01f01f96d", "fields": {"departement": "94", "stop_lat": 48.78882481201206, "code_postal": "94068", "stop_lon": 2.476841820182719, "coord": [48.78882481201206, 2.476841820182719], "stop_id": 3663592, "stop_desc": "FACE 67 AVENUE BEAUREPAIRE - 94068", "stop_name": "VILLETTE"}, "geometry": {"type": "Point", "coordinates": [2.476841820182719, 48.78882481201206]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cecaab911d16a7b6c727be755f56fb16bc001fe7", "fields": {"departement": "94", "stop_lat": 48.80797351546657, "code_postal": "94046", "stop_lon": 2.456101258640502, "coord": [48.80797351546657, 2.456101258640502], "stop_id": 3663650, "stop_desc": "27 RUE DANIELLE CASANOVA - 94046", "stop_name": "PLANETES"}, "geometry": {"type": "Point", "coordinates": [2.456101258640502, 48.80797351546657]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "75aad04947d31fe9f1ba70b268610f19161879cd", "fields": {"departement": "77", "stop_lat": 48.83099239038411, "code_postal": "77169", "stop_lon": 2.5882994342302235, "coord": [48.83099239038411, 2.5882994342302235], "stop_id": 3639723, "stop_desc": "AV DE L'EUROPE - 77169", "stop_name": "LES 2 LACS"}, "geometry": {"type": "Point", "coordinates": [2.5882994342302235, 48.83099239038411]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e8dbeb9175255a54548039286144bb60a78331d3", "fields": {"departement": "77", "stop_lat": 48.8100583503771, "code_postal": "77169", "stop_lon": 2.621007009649533, "coord": [48.8100583503771, 2.621007009649533], "stop_id": 3639740, "stop_desc": "RUE D'EMERY - 77169", "stop_name": "LE PARC"}, "geometry": {"type": "Point", "coordinates": [2.621007009649533, 48.8100583503771]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8dfbf4a6972ad92a354fbeb0ec5bd4091b69dc3a", "fields": {"departement": "93", "stop_lat": 48.93043936274061, "code_postal": "93027", "stop_lon": 2.3862069226314016, "coord": [48.93043936274061, 2.3862069226314016], "stop_id": 3663830, "stop_desc": "4 AVENUE ROGER SALENGRO - 93027", "stop_name": "SIX ROUTES - ROGER SALENGRO-TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.3862069226314016, 48.93043936274061]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e27b683e4d0037e42bcc673168cc83e591a67d63", "fields": {"departement": "93", "stop_lat": 48.920964390428175, "code_postal": "93001", "stop_lon": 2.3925119117605624, "coord": [48.920964390428175, 2.3925119117605624], "stop_id": 3663822, "stop_desc": "103 PCH DU PONT BLANC - 93001", "stop_name": "PETIT CHEMIN DU PONT BLANC"}, "geometry": {"type": "Point", "coordinates": [2.3925119117605624, 48.920964390428175]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fd89897b9ed54af1e2e3ba25f84451e237377d03", "fields": {"departement": "94", "stop_lat": 48.815220279949145, "code_postal": "94046", "stop_lon": 2.4438423013831083, "coord": [48.815220279949145, 2.4438423013831083], "stop_id": 3663709, "stop_desc": "116 RUE CLEMENCEAU - 94046", "stop_name": "PASSERELLE DE CHARENTONNEAU"}, "geometry": {"type": "Point", "coordinates": [2.4438423013831083, 48.815220279949145]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "004e6c9ffc13f2cbea6781d236eade0314a4444a", "fields": {"departement": "93", "stop_lat": 48.928336795835285, "code_postal": "93027", "stop_lon": 2.3853047632900903, "coord": [48.928336795835285, 2.3853047632900903], "stop_id": 3663829, "stop_desc": "FACE 100 BOULEVARD PASTEUR - 93027", "stop_name": "SIX ROUTES - TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.3853047632900903, 48.928336795835285]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8bb0ef5dc63e930231dec03f03237b404b13893b", "fields": {"departement": "95", "stop_lat": 48.97620613047465, "code_postal": "95268", "stop_lon": 2.4227136194721237, "coord": [48.97620613047465, 2.4227136194721237], "stop_id": 3663853, "stop_desc": "AV DE STALINGRAD - 95268", "stop_name": "ROND-POINT DU CHRIST"}, "geometry": {"type": "Point", "coordinates": [2.4227136194721237, 48.97620613047465]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "255f8fb73ebafdac8abcc374639c306103f4aeb6", "fields": {"departement": "93", "stop_lat": 48.932838565426906, "code_postal": "93027", "stop_lon": 2.386918478660045, "coord": [48.932838565426906, 2.386918478660045], "stop_id": 3663831, "stop_desc": "AVENUE ROGER SALENGRO - 93027", "stop_name": "PARC DES SPORTS"}, "geometry": {"type": "Point", "coordinates": [2.386918478660045, 48.932838565426906]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "87a405eb59283d775be3572d0bf470d5f8538555", "fields": {"departement": "93", "stop_lat": 48.946903036868115, "code_postal": "93072", "stop_lon": 2.386672737644679, "coord": [48.946903036868115, 2.386672737644679], "stop_id": 3663834, "stop_desc": "169 BOULEVARD MAXIME GORKI - 93072", "stop_name": "CROIX BLANCHE"}, "geometry": {"type": "Point", "coordinates": [2.386672737644679, 48.946903036868115]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a778f39ccb621eb480c4d408d4ef0810b073015b", "fields": {"departement": "93", "stop_lat": 48.94905120702527, "code_postal": "93072", "stop_lon": 2.385856122755476, "coord": [48.94905120702527, 2.385856122755476], "stop_id": 3663837, "stop_desc": "BOULEVARD MAXIME GORKI - 93072", "stop_name": "LE GLOBE"}, "geometry": {"type": "Point", "coordinates": [2.385856122755476, 48.94905120702527]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2df019688900df4f61dff0b42c120541f230181c", "fields": {"departement": "94", "stop_lat": 48.810472733578806, "code_postal": "94046", "stop_lon": 2.4242098051495105, "coord": [48.810472733578806, 2.4242098051495105], "stop_id": 3663713, "stop_desc": "RUE PIERRE CURIE - 94046", "stop_name": "PIERRE CURIE"}, "geometry": {"type": "Point", "coordinates": [2.4242098051495105, 48.810472733578806]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "abb40ffc1139ca8783572b42a7e10698d7e01e04", "fields": {"departement": "94", "stop_lat": 48.81547285518754, "code_postal": "94046", "stop_lon": 2.4321388046911165, "coord": [48.81547285518754, 2.4321388046911165], "stop_id": 3663711, "stop_desc": "2 AVENUE FOCH - 94046", "stop_name": "LES 7 ARBRES"}, "geometry": {"type": "Point", "coordinates": [2.4321388046911165, 48.81547285518754]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2a5b01c5b901e4a8121d5650fd8dd36c11103643", "fields": {"departement": "93", "stop_lat": 48.91801600642956, "code_postal": "93001", "stop_lon": 2.39391330052154, "coord": [48.91801600642956, 2.39391330052154], "stop_id": 3663884, "stop_desc": "70-72 RUE DANIELLE CASANOVA - 93001", "stop_name": "DANIELLE CASANOVA - PONT BLANC"}, "geometry": {"type": "Point", "coordinates": [2.39391330052154, 48.91801600642956]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f0aabb4cd517232ea85a3df2c6b0d1f4e7601ad9", "fields": {"departement": "93", "stop_lat": 48.95941606344707, "code_postal": "93072", "stop_lon": 2.3984758308820933, "coord": [48.95941606344707, 2.3984758308820933], "stop_id": 3663875, "stop_desc": "195 AVENUE DE STALINGRAD - 93072", "stop_name": "LIMITE DES DEPARTEMENTS"}, "geometry": {"type": "Point", "coordinates": [2.3984758308820933, 48.95941606344707]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d75a283c270fe1412bdb8ceaa595ab60c5aaf3ea", "fields": {"departement": "93", "stop_lat": 48.95581451956647, "code_postal": "93072", "stop_lon": 2.3942003072526914, "coord": [48.95581451956647, 2.3942003072526914], "stop_id": 3663904, "stop_desc": "AVENUE DE STALINGRAD - 93072", "stop_name": "AVENUE DE STALINGRAD N0 215"}, "geometry": {"type": "Point", "coordinates": [2.3942003072526914, 48.95581451956647]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5c97b6533d8ceaf1dffcfcdb05b97b6af0d25e03", "fields": {"departement": "93", "stop_lat": 48.920964390428175, "code_postal": "93001", "stop_lon": 2.3925119117605624, "coord": [48.920964390428175, 2.3925119117605624], "stop_id": 3663885, "stop_desc": "103 PCH DU PONT BLANC - 93001", "stop_name": "PETIT CHEMIN DU PONT BLANC"}, "geometry": {"type": "Point", "coordinates": [2.3925119117605624, 48.920964390428175]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0bc962d767cb14dd685778e3682765618ac06ea2", "fields": {"departement": "95", "stop_lat": 48.976502734926754, "code_postal": "95268", "stop_lon": 2.4226458510272875, "coord": [48.976502734926754, 2.4226458510272875], "stop_id": 3663854, "stop_desc": "AVENUE DE STALINGRAD - 95268", "stop_name": "ROND-POINT DU CHRIST"}, "geometry": {"type": "Point", "coordinates": [2.4226458510272875, 48.976502734926754]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9c4bc8543ef0dee1b4160564daab746efb7fde81", "fields": {"departement": "95", "stop_lat": 48.985879261551, "code_postal": "95277", "stop_lon": 2.4598006155998506, "coord": [48.985879261551, 2.4598006155998506], "stop_id": 3663871, "stop_desc": "RUE D'ARSONVAL - 95277", "stop_name": "LA FONTAINE CYPIERE ZI"}, "geometry": {"type": "Point", "coordinates": [2.4598006155998506, 48.985879261551]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fd1e8ab44b4143599867e9ab163a2a480d87769d", "fields": {"departement": "95", "stop_lat": 48.96549486672664, "code_postal": "95268", "stop_lon": 2.4078187765609886, "coord": [48.96549486672664, 2.4078187765609886], "stop_id": 3663909, "stop_desc": "FACE 142 AVENUE DE STALINGRAD - 95268", "stop_name": "CROIX BUARD"}, "geometry": {"type": "Point", "coordinates": [2.4078187765609886, 48.96549486672664]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a21751e7e6901ce8a4f14834e043670f2b4820a3", "fields": {"departement": "95", "stop_lat": 48.965350983897174, "code_postal": "95268", "stop_lon": 2.4079823650895498, "coord": [48.965350983897174, 2.4079823650895498], "stop_id": 3663908, "stop_desc": "144 AVENUE DE STALINGRAD - 95268", "stop_name": "CROIX BUARD"}, "geometry": {"type": "Point", "coordinates": [2.4079823650895498, 48.965350983897174]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "16a2eccd594b9820e3ab205814944cc2f0a2157d", "fields": {"departement": "93", "stop_lat": 48.941474563908756, "code_postal": "93027", "stop_lon": 2.387758950668094, "coord": [48.941474563908756, 2.387758950668094], "stop_id": 3663896, "stop_desc": "AV ROGER SALENGRO - 93027", "stop_name": "CITE FLOREAL"}, "geometry": {"type": "Point", "coordinates": [2.387758950668094, 48.941474563908756]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "015f4c0098553bd61e0db34a9e4902670cc2f71d", "fields": {"departement": "93", "stop_lat": 48.92623412112914, "code_postal": "93027", "stop_lon": 2.38464816857512, "coord": [48.92623412112914, 2.38464816857512], "stop_id": 3663890, "stop_desc": "FACE 66 BOULEVARD PASTEUR - 93027", "stop_name": "MICHELET"}, "geometry": {"type": "Point", "coordinates": [2.38464816857512, 48.92623412112914]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "36df6161f9c602d881ecd5488a8c6af4638f88ec", "fields": {"departement": "93", "stop_lat": 48.96532057301456, "code_postal": "93005", "stop_lon": 2.4957982414324116, "coord": [48.96532057301456, 2.4957982414324116], "stop_id": 3666590, "stop_desc": "BOULEVARD ANDRE CITROEN (ROND POINT DE LA PORTE 3) - 93005", "stop_name": "ANDRE CITROEN - CENTRE DE PRODUCTION"}, "geometry": {"type": "Point", "coordinates": [2.4957982414324116, 48.96532057301456]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5b8bf6895cadc4451fb11559954221ad44a569b0", "fields": {"departement": "93", "stop_lat": 48.96468201571863, "code_postal": "93005", "stop_lon": 2.496178445204811, "coord": [48.96468201571863, 2.496178445204811], "stop_id": 3666589, "stop_desc": "BOULEVARD ANDRE CITROEN (ROND-POINT DE LA PORTE 3) - 93005", "stop_name": "ANDRE CITROEN - CENTRE DE PRODUCTION"}, "geometry": {"type": "Point", "coordinates": [2.496178445204811, 48.96468201571863]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f0d77b328e5d318477484678d8fde89d791acb9b", "fields": {"departement": "93", "stop_lat": 48.96091796123017, "code_postal": "93005", "stop_lon": 2.4882103486687126, "coord": [48.96091796123017, 2.4882103486687126], "stop_id": 3666588, "stop_desc": "BOULEVARD ANDRE CITROEN (ROND-POINT DE LA PORTE 1) - 93005", "stop_name": "ANDRE CITROEN - VISITEURS"}, "geometry": {"type": "Point", "coordinates": [2.4882103486687126, 48.96091796123017]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4cdcb4203fe74b58a763bacc5eaa2b0dad72d09f", "fields": {"departement": "93", "stop_lat": 48.96037732477729, "code_postal": "93005", "stop_lon": 2.489341508897291, "coord": [48.96037732477729, 2.489341508897291], "stop_id": 3666587, "stop_desc": "BOULEVARD ANDRE CITROEN (RD POINT DE LA PORTE 1) - 93005", "stop_name": "ANDRE CITROEN - VISITEURS"}, "geometry": {"type": "Point", "coordinates": [2.489341508897291, 48.96037732477729]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "09f94b91a0d0d9fa82cf17ca5a3895f9425fe1b1", "fields": {"departement": "93", "stop_lat": 48.952536508620526, "code_postal": "93007", "stop_lon": 2.462164198411897, "coord": [48.952536508620526, 2.462164198411897], "stop_id": 3666580, "stop_desc": "RUE ANATOLE SIGONNEAU - 93007", "stop_name": "ANATOLE SIGONNEAU - CENTRE D'AFFAIRES"}, "geometry": {"type": "Point", "coordinates": [2.462164198411897, 48.952536508620526]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0fae19c281c9e64d4a30450c650dc700164b5dfa", "fields": {"departement": "93", "stop_lat": 48.97394864271551, "code_postal": "93078", "stop_lon": 2.5143218113031525, "coord": [48.97394864271551, 2.5143218113031525], "stop_id": 3666593, "stop_desc": "AVENUE DES NATIONS - 93078", "stop_name": "PARC DES EXPOSITIONS RER"}, "geometry": {"type": "Point", "coordinates": [2.5143218113031525, 48.97394864271551]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7abc2718d9cd09a05e9661d9a3873c0ff5cf98da", "fields": {"departement": "93", "stop_lat": 48.972893084631856, "code_postal": "93078", "stop_lon": 2.51101471892199, "coord": [48.972893084631856, 2.51101471892199], "stop_id": 3666592, "stop_desc": "FACE 22 AVENUE DES NATIONS - 93078", "stop_name": "NATIONS"}, "geometry": {"type": "Point", "coordinates": [2.51101471892199, 48.972893084631856]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6f57951ebb177ab085ea47a4a3523ac56ac67bfe", "fields": {"departement": "93", "stop_lat": 48.9727044267932, "code_postal": "93078", "stop_lon": 2.5109731333013463, "coord": [48.9727044267932, 2.5109731333013463], "stop_id": 3666591, "stop_desc": "22 AVENUE DES NATIONS - 93078", "stop_name": "NATIONS"}, "geometry": {"type": "Point", "coordinates": [2.5109731333013463, 48.9727044267932]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5d85118447d193d87dadba2d6b806717e07709d9", "fields": {"departement": "93", "stop_lat": 48.92935800046463, "code_postal": "93007", "stop_lon": 2.4795528998155345, "coord": [48.92935800046463, 2.4795528998155345], "stop_id": 3664419, "stop_desc": "12 AVENUE PAUL VAILLANT COUTURIER - 93007", "stop_name": "ROND-POINT PIERRE SEMARD - PAUL VAILLANT-COUTURIER"}, "geometry": {"type": "Point", "coordinates": [2.4795528998155345, 48.92935800046463]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "11bf0e3d2f3c8b7e04e7d19518bfbf1690968c8e", "fields": {"departement": "93", "stop_lat": 48.926903826707964, "code_postal": "93007", "stop_lon": 2.4724677181834087, "coord": [48.926903826707964, 2.4724677181834087], "stop_id": 3664414, "stop_desc": "FACE 86 AVENUE PAUL VAILLANT COUTURIER - 93007", "stop_name": "DANIELLE CASANOVA - PAUL VAILLANT-COUTURIER"}, "geometry": {"type": "Point", "coordinates": [2.4724677181834087, 48.926903826707964]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "52d533c5273aea18a607e287ac79319c597ac369", "fields": {"departement": "93", "stop_lat": 48.94368464811904, "code_postal": "93013", "stop_lon": 2.4328785582288304, "coord": [48.94368464811904, 2.4328785582288304], "stop_id": 3666570, "stop_desc": "CARREFOUR CHARLES LINDBERGH - 93013", "stop_name": "MICHELET-PARC DES EXPOSITIONS"}, "geometry": {"type": "Point", "coordinates": [2.4328785582288304, 48.94368464811904]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b736043eca70e2e862a0d8b8f4e5d6da2e49db65", "fields": {"departement": "93", "stop_lat": 48.9481288514466, "code_postal": "93007", "stop_lon": 2.438044271536468, "coord": [48.9481288514466, 2.438044271536468], "stop_id": 3666571, "stop_desc": "AVENUE DU 8 MAI 1945 - 93007", "stop_name": "MUSEE DE L'AIR ET DE L'ESPACE"}, "geometry": {"type": "Point", "coordinates": [2.438044271536468, 48.9481288514466]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8400b106e95d252992c54fe5e62def7102176376", "fields": {"departement": "93", "stop_lat": 48.924819263917975, "code_postal": "93007", "stop_lon": 2.4639112132405034, "coord": [48.924819263917975, 2.4639112132405034], "stop_id": 3664409, "stop_desc": "200 AVENUE PAUL VAILLANT COUTURIER - 93007", "stop_name": "ANGELUS - FABIEN"}, "geometry": {"type": "Point", "coordinates": [2.4639112132405034, 48.924819263917975]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "93f9fdab197d2f4be68ded9139fdb6ff34d97ae1", "fields": {"departement": "93", "stop_lat": 48.9315509698401, "code_postal": "93005", "stop_lon": 2.493771636240838, "coord": [48.9315509698401, 2.493771636240838], "stop_id": 3664423, "stop_desc": "PLACE DU GENERAL DE GAULLE - 93005", "stop_name": "AULNAY-SOUS-BOIS RER"}, "geometry": {"type": "Point", "coordinates": [2.493771636240838, 48.9315509698401]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6681c0a51e5147a24763d4dee82e4d8d704365ec", "fields": {"departement": "93", "stop_lat": 48.95030571554676, "code_postal": "93007", "stop_lon": 2.4641373075254696, "coord": [48.95030571554676, 2.4641373075254696], "stop_id": 3666577, "stop_desc": "FACE 9 AVENUE EDOUARD RENAULT - 93007", "stop_name": "DESCARTES - RENAULT"}, "geometry": {"type": "Point", "coordinates": [2.4641373075254696, 48.95030571554676]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "68a4d04b45b6df144eb05c3c592c5559b0a91e21", "fields": {"departement": "93", "stop_lat": 48.95002480024804, "code_postal": "93007", "stop_lon": 2.457709966646667, "coord": [48.95002480024804, 2.457709966646667], "stop_id": 3666575, "stop_desc": "AVENUE DESCARTES - 93007", "stop_name": "CIMETIERE DU BLANC-MESNIL"}, "geometry": {"type": "Point", "coordinates": [2.457709966646667, 48.95002480024804]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1d994dafac41704c8925195e4a7e676a1edff48a", "fields": {"departement": "93", "stop_lat": 48.92265178851074, "code_postal": "93029", "stop_lon": 2.4567735079056705, "coord": [48.92265178851074, 2.4567735079056705], "stop_id": 3664405, "stop_desc": "219 AVENUE HENRI BARBUSSE - 93029", "stop_name": "BARBUSSE - CROIZAT"}, "geometry": {"type": "Point", "coordinates": [2.4567735079056705, 48.92265178851074]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8b347c56309f85ebe0cdcb616555e2c9dd91b12a", "fields": {"departement": "75", "stop_lat": 48.880677255819144, "code_postal": "75110", "stop_lon": 2.357653442709006, "coord": [48.880677255819144, 2.357653442709006], "stop_id": 3666565, "stop_desc": "183 RUE DU FAUBOURG SAINT-DENIS - 75110", "stop_name": "GARE DU NORD"}, "geometry": {"type": "Point", "coordinates": [2.357653442709006, 48.880677255819144]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f42e00280868800e53819c45baedeb9ea360b0d6", "fields": {"departement": "95", "stop_lat": 48.971575049991486, "code_postal": "95268", "stop_lon": 2.3983127619651223, "coord": [48.971575049991486, 2.3983127619651223], "stop_id": 3664135, "stop_desc": "RUE LE NOTRE - 95268", "stop_name": "HOTEL DE VILLE DE GARGES-LES-GONESSE"}, "geometry": {"type": "Point", "coordinates": [2.3983127619651223, 48.971575049991486]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f2d93a89a751684b2f60a573d00210c7abfebebd", "fields": {"departement": "95", "stop_lat": 48.97268715932921, "code_postal": "95268", "stop_lon": 2.417288494023461, "coord": [48.97268715932921, 2.417288494023461], "stop_id": 3663960, "stop_desc": "AVENUE DE STALINGRAD - 95268", "stop_name": "COLLEGE PABLO PICASSO"}, "geometry": {"type": "Point", "coordinates": [2.417288494023461, 48.97268715932921]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3a94794ddbe668ac11f72ae7e0e40e61be9e22c5", "fields": {"departement": "93", "stop_lat": 48.932838565426906, "code_postal": "93027", "stop_lon": 2.386918478660045, "coord": [48.932838565426906, 2.386918478660045], "stop_id": 3663949, "stop_desc": "AVENUE ROGER SALENGRO - 93027", "stop_name": "PARC DES SPORTS"}, "geometry": {"type": "Point", "coordinates": [2.386918478660045, 48.932838565426906]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eaf9e48a591eb1f80188242df5747e74fa1ac97f", "fields": {"departement": "93", "stop_lat": 48.946903036868115, "code_postal": "93072", "stop_lon": 2.386672737644679, "coord": [48.946903036868115, 2.386672737644679], "stop_id": 3663951, "stop_desc": "169 BOULEVARD MAXIME GORKI - 93072", "stop_name": "CROIX BLANCHE"}, "geometry": {"type": "Point", "coordinates": [2.386672737644679, 48.946903036868115]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d7ff885e0b5cd58e4a19d2dda07e3f17b2b34a82", "fields": {"departement": "95", "stop_lat": 48.9829634551839, "code_postal": "95277", "stop_lon": 2.4351220485369556, "coord": [48.9829634551839, 2.4351220485369556], "stop_id": 3663964, "stop_desc": "RUE RAYMOND RAMBERT - 95277", "stop_name": "LYCEE DE GONESSE"}, "geometry": {"type": "Point", "coordinates": [2.4351220485369556, 48.9829634551839]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f896bb5b26b0cd55aa65d78f1e8612ecb03fb4d4", "fields": {"departement": "95", "stop_lat": 48.96350572920714, "code_postal": "95268", "stop_lon": 2.3970203072744707, "coord": [48.96350572920714, 2.3970203072744707], "stop_id": 3664144, "stop_desc": "FACE 15 AVENUE DES MORILLONS - 95268", "stop_name": "GAILLARDS"}, "geometry": {"type": "Point", "coordinates": [2.3970203072744707, 48.96350572920714]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3b49656f03f9ac5b909763c17f89aa19859611c4", "fields": {"departement": "95", "stop_lat": 48.98115412312256, "code_postal": "95019", "stop_lon": 2.4275822249308967, "coord": [48.98115412312256, 2.4275822249308967], "stop_id": 3663920, "stop_desc": "AVENUE DE LA REPUBLIQUE - 95019", "stop_name": "LEON BLUM"}, "geometry": {"type": "Point", "coordinates": [2.4275822249308967, 48.98115412312256]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e83398e989f748ba9c26d68aca5094070785d086", "fields": {"departement": "95", "stop_lat": 48.98536204173677, "code_postal": "95277", "stop_lon": 2.446418454913496, "coord": [48.98536204173677, 2.446418454913496], "stop_id": 3663929, "stop_desc": "11 RUE DE PARIS - 95277", "stop_name": "SAINT-NICOLAS"}, "geometry": {"type": "Point", "coordinates": [2.446418454913496, 48.98536204173677]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f8369400e4ab55e3f890eef8f7b0cefe16479ce7", "fields": {"departement": "95", "stop_lat": 48.96330763811756, "code_postal": "95268", "stop_lon": 2.397784376936203, "coord": [48.96330763811756, 2.397784376936203], "stop_id": 3664143, "stop_desc": "17 AVENUE DES MORILLONS - 95268", "stop_name": "GAILLARDS"}, "geometry": {"type": "Point", "coordinates": [2.397784376936203, 48.96330763811756]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5e1927c4e76a94c1072e1a4eb26d95121b248658", "fields": {"departement": "93", "stop_lat": 48.91564949215748, "code_postal": "93001", "stop_lon": 2.399787668480733, "coord": [48.91564949215748, 2.399787668480733], "stop_id": 3663942, "stop_desc": "161 RUE DANIELLE CASANOVA - 93001", "stop_name": "BALZAC"}, "geometry": {"type": "Point", "coordinates": [2.399787668480733, 48.91564949215748]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "160c78dc3ce8ed8babbadcf1e9739f3f55cb872a", "fields": {"departement": "95", "stop_lat": 48.975961680577434, "code_postal": "95268", "stop_lon": 2.3959425734505366, "coord": [48.975961680577434, 2.3959425734505366], "stop_id": 3664176, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 95268", "stop_name": "JEAN-BAPTISTE COROT - LAMARTINE"}, "geometry": {"type": "Point", "coordinates": [2.3959425734505366, 48.975961680577434]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "41ea6bce50b76c1cfb843006597fea2d2f469405", "fields": {"departement": "95", "stop_lat": 48.9688337062749, "code_postal": "95268", "stop_lon": 2.39915580527187, "coord": [48.9688337062749, 2.39915580527187], "stop_id": 3664161, "stop_desc": "28 AVENUE DE LA COMMUNE DE PARIS - 95268", "stop_name": "MATERNELLE EIFFEL"}, "geometry": {"type": "Point", "coordinates": [2.39915580527187, 48.9688337062749]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8aadce7203fdd321043b6212497ba6b78b24e894", "fields": {"departement": "95", "stop_lat": 48.96599684793511, "code_postal": "95268", "stop_lon": 2.4099350400838073, "coord": [48.96599684793511, 2.4099350400838073], "stop_id": 3664174, "stop_desc": "AVENUE AMBROISE CROIZAT - 95268", "stop_name": "PLACE DU 19 MARS 1962"}, "geometry": {"type": "Point", "coordinates": [2.4099350400838073, 48.96599684793511]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "07a65c5b8dcf68de88de9a065dd63ee6df555402", "fields": {"departement": "93", "stop_lat": 48.90650920647477, "code_postal": "93008", "stop_lon": 2.439490229390998, "coord": [48.90650920647477, 2.439490229390998], "stop_id": 3664386, "stop_desc": "BOULEVARD LENINE - 93008", "stop_name": "CONSERVATOIRE JEAN WIENER"}, "geometry": {"type": "Point", "coordinates": [2.439490229390998, 48.90650920647477]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4d77ac5e9db6015f390705147cb4ad7fc5899c89", "fields": {"departement": "93", "stop_lat": 48.92144031506802, "code_postal": "93029", "stop_lon": 2.454997880913197, "coord": [48.92144031506802, 2.454997880913197], "stop_id": 3664402, "stop_desc": "168 AVENUE HENRI BARBUSSE - 93029", "stop_name": "AUGUSTE BLANQUI"}, "geometry": {"type": "Point", "coordinates": [2.454997880913197, 48.92144031506802]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ea64bc24ab9f7ee9c712140fed77e8c560631509", "fields": {"departement": "93", "stop_lat": 48.91663286278753, "code_postal": "93029", "stop_lon": 2.4448691169000547, "coord": [48.91663286278753, 2.4448691169000547], "stop_id": 3664396, "stop_desc": "46 AVENUE HENRI BARBUSSE - 93029", "stop_name": "CHARLES GIDE"}, "geometry": {"type": "Point", "coordinates": [2.4448691169000547, 48.91663286278753]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "92337abf3344feccc5e9d89cd58f6e7c5cfff74b", "fields": {"departement": "93", "stop_lat": 48.90600065584833, "code_postal": "93008", "stop_lon": 2.4234158054865746, "coord": [48.90600065584833, 2.4234158054865746], "stop_id": 3664380, "stop_desc": "97 RUE HENRI GAUTIER - 93008", "stop_name": "HENRI GAUTIER"}, "geometry": {"type": "Point", "coordinates": [2.4234158054865746, 48.90600065584833]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e566d38d87c97acfc6a59e835c7120806c33d62e", "fields": {"departement": "93", "stop_lat": 48.91631840448515, "code_postal": "93029", "stop_lon": 2.444773012931289, "coord": [48.91631840448515, 2.444773012931289], "stop_id": 3664397, "stop_desc": "114 AVENUE CHARLES GIDE - 93029", "stop_name": "CHARLES GIDE"}, "geometry": {"type": "Point", "coordinates": [2.444773012931289, 48.91631840448515]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1e821524ee3ab798db5541b7eda6ce21089970ee", "fields": {"departement": "95", "stop_lat": 48.9720341780331, "code_postal": "95268", "stop_lon": 2.3967025461700624, "coord": [48.9720341780331, 2.3967025461700624], "stop_id": 3664158, "stop_desc": "RUE VICTOR BALTARD - 95268", "stop_name": "VICTOR BALTARD"}, "geometry": {"type": "Point", "coordinates": [2.3967025461700624, 48.9720341780331]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1ba215f1aaff0d469a91fc66c9a267d75ca2fd32", "fields": {"departement": "95", "stop_lat": 48.963340721676424, "code_postal": "95268", "stop_lon": 2.4031891009629964, "coord": [48.963340721676424, 2.4031891009629964], "stop_id": 3664172, "stop_desc": "RUE EUGENE VARLIN - 95268", "stop_name": "DEMUSOIS"}, "geometry": {"type": "Point", "coordinates": [2.4031891009629964, 48.963340721676424]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f86610cbe9fed261e0faecfbfb25de4821b39667", "fields": {"departement": "94", "stop_lat": 48.80659772200204, "code_postal": "94068", "stop_lon": 2.4734878556768183, "coord": [48.80659772200204, 2.4734878556768183], "stop_id": 3663656, "stop_desc": "7 RUE DES REMISES - 94068", "stop_name": "SAINT-MAUR-CRETEIL RER - LE PARVIS"}, "geometry": {"type": "Point", "coordinates": [2.4734878556768183, 48.80659772200204]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8f54631c454183287d090878d0a5d273618047de", "fields": {"departement": "94", "stop_lat": 48.80598700388036, "code_postal": "94068", "stop_lon": 2.473091654649023, "coord": [48.80598700388036, 2.473091654649023], "stop_id": 3663685, "stop_desc": "R DES REMISES - 94068", "stop_name": "SAINT-MAUR-CRETEIL RER"}, "geometry": {"type": "Point", "coordinates": [2.473091654649023, 48.80598700388036]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "227f47b9d4fd680a50763c747a7040021864d89e", "fields": {"departement": "94", "stop_lat": 48.79983814837087, "code_postal": "94028", "stop_lon": 2.4660688746577812, "coord": [48.79983814837087, 2.4660688746577812], "stop_id": 3663653, "stop_desc": "5 RUE DU PORT - 94028", "stop_name": "HOPITAL INTERCOMMUNAL"}, "geometry": {"type": "Point", "coordinates": [2.4660688746577812, 48.79983814837087]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "beac04201bc43905835e2235f0fe26b1e9bacc6c", "fields": {"departement": "94", "stop_lat": 48.79983814837087, "code_postal": "94028", "stop_lon": 2.4660688746577812, "coord": [48.79983814837087, 2.4660688746577812], "stop_id": 3663682, "stop_desc": "5 RUE DU PORT - 94028", "stop_name": "HOPITAL INTERCOMMUNAL"}, "geometry": {"type": "Point", "coordinates": [2.4660688746577812, 48.79983814837087]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "819d28bbd967b56a56d51562f8542554169ef4c1", "fields": {"departement": "94", "stop_lat": 48.80069437856847, "code_postal": "94068", "stop_lon": 2.4720301880146383, "coord": [48.80069437856847, 2.4720301880146383], "stop_id": 3663683, "stop_desc": "83 RUE DU PONT DE CRETEIL - 94068", "stop_name": "PONT DE CRETEIL"}, "geometry": {"type": "Point", "coordinates": [2.4720301880146383, 48.80069437856847]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "028b2c15e099cb8a46154846e05bd0feb6b7753f", "fields": {"departement": "94", "stop_lat": 48.80991344297448, "code_postal": "94046", "stop_lon": 2.448281176864695, "coord": [48.80991344297448, 2.448281176864695], "stop_id": 3663706, "stop_desc": "FACE 64 RUE DE VINCENNES - 94046", "stop_name": "RUE DE VINCENNES"}, "geometry": {"type": "Point", "coordinates": [2.448281176864695, 48.80991344297448]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ea87adddd0ad66b2e945ec5b590b3e57bfbae5c5", "fields": {"departement": "94", "stop_lat": 48.80292714697353, "code_postal": "94028", "stop_lon": 2.4602395483084356, "coord": [48.80292714697353, 2.4602395483084356], "stop_id": 3663701, "stop_desc": "72 RUE CHERET - 94028", "stop_name": "CHERET - LAFERRIERE"}, "geometry": {"type": "Point", "coordinates": [2.4602395483084356, 48.80292714697353]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b1f80101c7c43cfecd31d39e93ceb682455c144a", "fields": {"departement": "94", "stop_lat": 48.80433445713847, "code_postal": "94068", "stop_lon": 2.4720260310108393, "coord": [48.80433445713847, 2.4720260310108393], "stop_id": 3663655, "stop_desc": "45-47 RUE DES REMISES - 94068", "stop_name": "RUE DES REMISES"}, "geometry": {"type": "Point", "coordinates": [2.4720260310108393, 48.80433445713847]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5814a200774c51df1200f0e634b7fac3d7da0ee1", "fields": {"departement": "94", "stop_lat": 48.80572709873827, "code_postal": "94028", "stop_lon": 2.4555654521273964, "coord": [48.80572709873827, 2.4555654521273964], "stop_id": 3663651, "stop_desc": "109 RUE CHERET - 94028", "stop_name": "DANIELLE CASANOVA"}, "geometry": {"type": "Point", "coordinates": [2.4555654521273964, 48.80572709873827]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "03305959a954bea22d6e50874a2daa05a0bbb946", "fields": {"departement": "94", "stop_lat": 48.815450541248154, "code_postal": "94046", "stop_lon": 2.4374327868943513, "coord": [48.815450541248154, 2.4374327868943513], "stop_id": 3663672, "stop_desc": "48-51 AVENUE FOCH - 94046", "stop_name": "MOULIN BRULE"}, "geometry": {"type": "Point", "coordinates": [2.4374327868943513, 48.815450541248154]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ebcab545a926a0926a0e1b5b004841e0dae3ba49", "fields": {"departement": "93", "stop_lat": 48.98292708588317, "code_postal": "93073", "stop_lon": 2.5197046726137797, "coord": [48.98292708588317, 2.5197046726137797], "stop_id": 3666595, "stop_desc": "AVENUE DE LA PYRAMIDE - 93073", "stop_name": "227, AVENUE DES NATIONS"}, "geometry": {"type": "Point", "coordinates": [2.5197046726137797, 48.98292708588317]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bbdef06037836ff84943fe348f351ba3ccad781f", "fields": {"departement": "93", "stop_lat": 48.98354197724208, "code_postal": "93073", "stop_lon": 2.51719458677695, "coord": [48.98354197724208, 2.51719458677695], "stop_id": 3666597, "stop_desc": "56 AVENUE DE LA PYRAMIDE - 93073", "stop_name": "58, AVENUE DE LA PYRAMIDE"}, "geometry": {"type": "Point", "coordinates": [2.51719458677695, 48.98354197724208]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "81f1ec7cf60579ddf4ea0364ae704ede6fd84e70", "fields": {"departement": "93", "stop_lat": 48.99401510089086, "code_postal": "93073", "stop_lon": 2.52631247799206, "coord": [48.99401510089086, 2.52631247799206], "stop_id": 3666604, "stop_desc": "RUE DE LA JEUNE FILLE - 93073", "stop_name": "RUE DE LA JEUNE FILLE"}, "geometry": {"type": "Point", "coordinates": [2.52631247799206, 48.99401510089086]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "11c624fddaa8ee5f7f4468ce9a80c27be3bf15cb", "fields": {"departement": "93", "stop_lat": 48.99438721579055, "code_postal": "93073", "stop_lon": 2.523978589947988, "coord": [48.99438721579055, 2.523978589947988], "stop_id": 3666605, "stop_desc": "RUE DES BUISSONS - 93073", "stop_name": "MARGUILLIERS."}, "geometry": {"type": "Point", "coordinates": [2.523978589947988, 48.99438721579055]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0f135de45b35d20f1b5bd8ece5c0f8a7e5b07709", "fields": {"departement": "93", "stop_lat": 48.9886987620714, "code_postal": "93073", "stop_lon": 2.5457240058899218, "coord": [48.9886987620714, 2.5457240058899218], "stop_id": 3666602, "stop_desc": "R DU PAVE - 93073", "stop_name": "CARGO 7"}, "geometry": {"type": "Point", "coordinates": [2.5457240058899218, 48.9886987620714]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2e0353c55848c8653fdba93b5d0c713638ad55a1", "fields": {"departement": "91", "stop_lat": 48.707425732597464, "code_postal": "91689", "stop_lon": 2.3110432656858193, "coord": [48.707425732597464, 2.3110432656858193], "stop_id": 4472895, "stop_desc": "FACE 62 AVENUE MAZARIN - 91689", "stop_name": "CIMETIERE DE CHILLY-MAZARIN"}, "geometry": {"type": "Point", "coordinates": [2.3110432656858193, 48.707425732597464]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "128457f7d20d4aa0f980b2d82197c7e68c2ae334", "fields": {"departement": "91", "stop_lat": 48.71646381338601, "code_postal": "91377", "stop_lon": 2.2958932184222367, "coord": [48.71646381338601, 2.2958932184222367], "stop_id": 4472899, "stop_desc": "AVENUE DU MARECHAL DE LATTRE DE TASSIGNY - 91377", "stop_name": "RUE DES FLEURS"}, "geometry": {"type": "Point", "coordinates": [2.2958932184222367, 48.71646381338601]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4761d98a03bed48c42e4f60b0f2a72635534cdc2", "fields": {"departement": "91", "stop_lat": 48.72928165027463, "code_postal": "91377", "stop_lon": 2.2760056052258806, "coord": [48.72928165027463, 2.2760056052258806], "stop_id": 4472906, "stop_desc": "FACE 3 RUE FUSTEL DE COULANGES - 91377", "stop_name": "GABRIEL PERI"}, "geometry": {"type": "Point", "coordinates": [2.2760056052258806, 48.72928165027463]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a887fd9ae67d28f316704d0fd2bcb59802390414", "fields": {"departement": "91", "stop_lat": 48.728042941856216, "code_postal": "91377", "stop_lon": 2.2793629122347263, "coord": [48.728042941856216, 2.2793629122347263], "stop_id": 4472908, "stop_desc": "54 RUE DE LONGJUMEAU - 91377", "stop_name": "JEAN MERMOZ"}, "geometry": {"type": "Point", "coordinates": [2.2793629122347263, 48.728042941856216]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "276d798e49aef71d0182d7d37018c3c95d17738b", "fields": {"departement": "91", "stop_lat": 48.72788290719792, "code_postal": "91377", "stop_lon": 2.2830857604019945, "coord": [48.72788290719792, 2.2830857604019945], "stop_id": 4472911, "stop_desc": "AVENUE NATIONALE - 91377", "stop_name": "AUSTRALIE"}, "geometry": {"type": "Point", "coordinates": [2.2830857604019945, 48.72788290719792]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b737cd71be34648bcf1cb167540ad88f62ca5c91", "fields": {"departement": "91", "stop_lat": 48.73370125203245, "code_postal": "91377", "stop_lon": 2.2898600642683493, "coord": [48.73370125203245, 2.2898600642683493], "stop_id": 4472918, "stop_desc": "RUE DES CANADIENS - 91377", "stop_name": "PLACE DE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.2898600642683493, 48.73370125203245]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e5b49fc74bc1d9cf204e9cf0af99250b7a3727a1", "fields": {"departement": "91", "stop_lat": 48.734889288669834, "code_postal": "91377", "stop_lon": 2.294003387399992, "coord": [48.734889288669834, 2.294003387399992], "stop_id": 4472921, "stop_desc": "1 RUE D'ALGER - 91377", "stop_name": "BIARRITZ"}, "geometry": {"type": "Point", "coordinates": [2.294003387399992, 48.734889288669834]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f1dcbbb0bd62d600c2d0ff504b43da4c597acb0d", "fields": {"departement": "92", "stop_lat": 48.75043325524002, "code_postal": "92002", "stop_lon": 2.3042526245193016, "coord": [48.75043325524002, 2.3042526245193016], "stop_id": 4472930, "stop_desc": "46 AVENUE DE LA DIVISION LECLERC - 92002", "stop_name": "PONT D'ANTONY"}, "geometry": {"type": "Point", "coordinates": [2.3042526245193016, 48.75043325524002]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6fd6eebd0d81cb48d890c3f9346896e87b5f282a", "fields": {"departement": "92", "stop_lat": 48.75812776706284, "code_postal": "92002", "stop_lon": 2.3066539281211798, "coord": [48.75812776706284, 2.3066539281211798], "stop_id": 4472933, "stop_desc": "63 AVENUE ARISTIDE BRIAND - 92002", "stop_name": "FERNAND FENZY"}, "geometry": {"type": "Point", "coordinates": [2.3066539281211798, 48.75812776706284]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "97604c671be795d57010fc5dd66b776144f3b902", "fields": {"departement": "92", "stop_lat": 48.76014140331745, "code_postal": "92002", "stop_lon": 2.3078218968349273, "coord": [48.76014140331745, 2.3078218968349273], "stop_id": 4472934, "stop_desc": "118 AVENUE ARISTIDE BRIAND - 92002", "stop_name": "MORTEAUX"}, "geometry": {"type": "Point", "coordinates": [2.3078218968349273, 48.76014140331745]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f2ffc29cec1f3348fe4452c40f958b001a888a75", "fields": {"departement": "92", "stop_lat": 48.772240461974114, "code_postal": "92014", "stop_lon": 2.312669523337748, "coord": [48.772240461974114, 2.312669523337748], "stop_id": 4472942, "stop_desc": "177-175 AVENUE DE GENERAL LECLERC - 92014", "stop_name": "LES COTTAGES"}, "geometry": {"type": "Point", "coordinates": [2.312669523337748, 48.772240461974114]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2297a212dd23b933e8c417f02b6e6b3f7e0fa3e7", "fields": {"departement": "94", "stop_lat": 48.78092539114513, "code_postal": "94038", "stop_lon": 2.3347114303236176, "coord": [48.78092539114513, 2.3347114303236176], "stop_id": 4472955, "stop_desc": "AVENUE ARISTIDE BRIAND - 94038", "stop_name": "RUE DES JARDINS"}, "geometry": {"type": "Point", "coordinates": [2.3347114303236176, 48.78092539114513]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4c504f4de9e6733e6e4e0e7296a2050e4e14abf3", "fields": {"departement": "94", "stop_lat": 48.797930487387106, "code_postal": "94016", "stop_lon": 2.333200475290441, "coord": [48.797930487387106, 2.333200475290441], "stop_id": 4472962, "stop_desc": "68 AVENUE COUSIN DE MERICOURT - 94016", "stop_name": "COUSIN DE MERICOURT"}, "geometry": {"type": "Point", "coordinates": [2.333200475290441, 48.797930487387106]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f4714f2111bf8b5d5b9dc6de981c30ecbd17cad4", "fields": {"departement": "94", "stop_lat": 48.79709463577202, "code_postal": "94016", "stop_lon": 2.3338127426577424, "coord": [48.79709463577202, 2.3338127426577424], "stop_id": 4472963, "stop_desc": "FACE 62 AVENUE COUSIN DE MERICOURT - 94016", "stop_name": "COUSIN DE MERICOURT"}, "geometry": {"type": "Point", "coordinates": [2.3338127426577424, 48.79709463577202]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "793f929a50a0b909b88502c01c1517f3676c6443", "fields": {"departement": "94", "stop_lat": 48.80148968188163, "code_postal": "94003", "stop_lon": 2.3334587047633777, "coord": [48.80148968188163, 2.3334587047633777], "stop_id": 4472965, "stop_desc": "39 AVENUE DE LA CONVENTION - 94003", "stop_name": "CITE JARDINS"}, "geometry": {"type": "Point", "coordinates": [2.3334587047633777, 48.80148968188163]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "897f120bfbd782eecada87ebd7548cde1467240f", "fields": {"departement": "94", "stop_lat": 48.80669368515831, "code_postal": "94003", "stop_lon": 2.336941718396992, "coord": [48.80669368515831, 2.336941718396992], "stop_id": 4472969, "stop_desc": "9-11 AVENUE PAUL DOUMER - 94003", "stop_name": "HOTEL DE VILLE D'ARCUEIL"}, "geometry": {"type": "Point", "coordinates": [2.336941718396992, 48.80669368515831]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aec7b1f3d2ea64fc873cf9c001b144c057604dcd", "fields": {"departement": "94", "stop_lat": 48.80818557426659, "code_postal": "94003", "stop_lon": 2.3327778455238666, "coord": [48.80818557426659, 2.3327778455238666], "stop_id": 4472971, "stop_desc": "32-34 AVENUE LAPLACE - 94003", "stop_name": "LAPLACE RER"}, "geometry": {"type": "Point", "coordinates": [2.3327778455238666, 48.80818557426659]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "598663b2ec23c5dc708a654f6c91ab05c808528e", "fields": {"departement": "92", "stop_lat": 48.81363167569627, "code_postal": "92049", "stop_lon": 2.3256327423030254, "coord": [48.81363167569627, 2.3256327423030254], "stop_id": 4472975, "stop_desc": "110 AVENUE ARISTIDE BRIAND - 92049", "stop_name": "LEON GAMBETTA"}, "geometry": {"type": "Point", "coordinates": [2.3256327423030254, 48.81363167569627]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "515761e7ad2f7fce03b09ad3a62369c2d6aede85", "fields": {"departement": "75", "stop_lat": 48.82356309968058, "code_postal": "75114", "stop_lon": 2.3256985758622, "coord": [48.82356309968058, 2.3256985758622], "stop_id": 4472978, "stop_desc": "123 AVENUE DU GENERAL LECLERC - 75114", "stop_name": "PORTE D'ORLEANS"}, "geometry": {"type": "Point", "coordinates": [2.3256985758622, 48.82356309968058]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e66b314672903f478fb37899f9b8a28d0d10cb34", "fields": {"departement": "75", "stop_lat": 48.832272512743295, "code_postal": "75114", "stop_lon": 2.3308562345483637, "coord": [48.832272512743295, 2.3308562345483637], "stop_id": 4472984, "stop_desc": "15 AVENUE DU GENERAL LECLERC - 75114", "stop_name": "DENFERT-ROCHEREAU - DAGUERRE"}, "geometry": {"type": "Point", "coordinates": [2.3308562345483637, 48.832272512743295]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ecdb5e07d861815851c80092ff4211bbb309c612", "fields": {"departement": "75", "stop_lat": 48.837224833648605, "code_postal": "75114", "stop_lon": 2.335430268825086, "coord": [48.837224833648605, 2.335430268825086], "stop_id": 4472987, "stop_desc": "FACE 74 AVENUE DENFERT ROCHEREAU - 75114", "stop_name": "HOPITAL SAINT-VINCENT DE PAUL"}, "geometry": {"type": "Point", "coordinates": [2.335430268825086, 48.837224833648605]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c41e92414aa56dab5becc7e5ffb109c847fd50e0", "fields": {"departement": "92", "stop_lat": 48.77960179320402, "code_postal": "92014", "stop_lon": 2.313400434821077, "coord": [48.77960179320402, 2.313400434821077], "stop_id": 4473004, "stop_desc": "72 BOULEVARD DU MARECHAL JOFFRE - 92014", "stop_name": "BOURG-LA-REINE RER"}, "geometry": {"type": "Point", "coordinates": [2.313400434821077, 48.77960179320402]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b2db33ba5a74ea75192dcb8dee7d9cb9190c024a", "fields": {"departement": "92", "stop_lat": 48.738917689264994, "code_postal": "92002", "stop_lon": 2.2987970481475424, "coord": [48.738917689264994, 2.2987970481475424], "stop_id": 4473007, "stop_desc": "52-54 AVENUE DU PRESIDENT KENNEDY - 92002", "stop_name": "SAUSSAYE - MIRABEAU"}, "geometry": {"type": "Point", "coordinates": [2.2987970481475424, 48.738917689264994]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "58046d66bba0afbb5d0a072f570409613ff94901", "fields": {"departement": "75", "stop_lat": 48.83433085153598, "code_postal": "75115", "stop_lon": 2.2910070539330327, "coord": [48.83433085153598, 2.2910070539330327], "stop_id": 4473016, "stop_desc": "FACE 366 TER R DE VAUGIRARD - 75115", "stop_name": "VAUGIRARD - CROIX-NIVERT"}, "geometry": {"type": "Point", "coordinates": [2.2910070539330327, 48.83433085153598]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c291e224f4037853e67834a9877c2c0b4d5c11e9", "fields": {"departement": "75", "stop_lat": 48.84077310974983, "code_postal": "75115", "stop_lon": 2.3164086680713942, "coord": [48.84077310974983, 2.3164086680713942], "stop_id": 4473025, "stop_desc": "65 BOULEVARD DE VAUGIRARD - 75115", "stop_name": "ARMORIQUE - MUSEE POSTAL"}, "geometry": {"type": "Point", "coordinates": [2.3164086680713942, 48.84077310974983]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d441b620a1fe4379b1f88959c6162486cb1d4f05", "fields": {"departement": "75", "stop_lat": 48.84109667094733, "code_postal": "75115", "stop_lon": 2.316463002196349, "coord": [48.84109667094733, 2.316463002196349], "stop_id": 4473026, "stop_desc": "44 BOULEVARD DE VAUGIRARD - 75115", "stop_name": "ARMORIQUE - MUSEE POSTAL"}, "geometry": {"type": "Point", "coordinates": [2.316463002196349, 48.84109667094733]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "98c8639ac9a4fb1d08bef5b454b2d23e2fc7f7d9", "fields": {"departement": "75", "stop_lat": 48.843217014382596, "code_postal": "75115", "stop_lon": 2.3127039743389797, "coord": [48.843217014382596, 2.3127039743389797], "stop_id": 4473030, "stop_desc": "31 BOULEVARD PASTEUR - 75115", "stop_name": "PASTEUR - LYCEE BUFFON"}, "geometry": {"type": "Point", "coordinates": [2.3127039743389797, 48.843217014382596]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0c0aceeffc3429eb23addf239a45372ac900d86b", "fields": {"departement": "75", "stop_lat": 48.838446179632186, "code_postal": "75115", "stop_lon": 2.2885390097212523, "coord": [48.838446179632186, 2.2885390097212523], "stop_id": 4473036, "stop_desc": "276-278 R LECOURBE - 75115", "stop_name": "DURANTON"}, "geometry": {"type": "Point", "coordinates": [2.2885390097212523, 48.838446179632186]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b4618b104a8267e3b4591646b22e1486b837e131", "fields": {"departement": "75", "stop_lat": 48.837267018830325, "code_postal": "75115", "stop_lon": 2.2843466881434824, "coord": [48.837267018830325, 2.2843466881434824], "stop_id": 4473037, "stop_desc": "330-332 RUE LECOURBE - 75115", "stop_name": "LYCEE LOUIS ARMAND"}, "geometry": {"type": "Point", "coordinates": [2.2843466881434824, 48.837267018830325]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f4dca6c862db1655e18e5d11519e0ee8d2033a3c", "fields": {"departement": "75", "stop_lat": 48.82981201095135, "code_postal": "75115", "stop_lon": 2.2754513391086495, "coord": [48.82981201095135, 2.2754513391086495], "stop_id": 4473041, "stop_desc": "FACE 29 RUE DU COLONEL PIERRE AVIA - 75115", "stop_name": "COLONEL PIERRE AVIA"}, "geometry": {"type": "Point", "coordinates": [2.2754513391086495, 48.82981201095135]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3ef2d6de88f593eb4fa7b6e80feaca531c090e87", "fields": {"departement": "92", "stop_lat": 48.896986014423774, "code_postal": "92050", "stop_lon": 2.2189809266743676, "coord": [48.896986014423774, 2.2189809266743676], "stop_id": 4473049, "stop_desc": "RUE MARCEL PAUL - 92050", "stop_name": "ESPLANADE CHARLES DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.2189809266743676, 48.896986014423774]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f696e8b75278c866e68b0c6e12c980d167a99c24", "fields": {"departement": "92", "stop_lat": 48.893923902710036, "code_postal": "92050", "stop_lon": 2.2126227396461546, "coord": [48.893923902710036, 2.2126227396461546], "stop_id": 4473054, "stop_desc": "FACE 123 AV FREDERIC ET IRENE JOLIOT CURIE - 92050", "stop_name": "JOLIOT-CURIE - COURBEVOIE"}, "geometry": {"type": "Point", "coordinates": [2.2126227396461546, 48.893923902710036]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1b3de03d07b40c45e345c315c0384f767d80650a", "fields": {"departement": "92", "stop_lat": 48.872813396922695, "code_postal": "92063", "stop_lon": 2.1824273594672805, "coord": [48.872813396922695, 2.1824273594672805], "stop_id": 4473071, "stop_desc": "14 BOULEVARD RICHELIEU - 92063", "stop_name": "PLACE RICHELIEU"}, "geometry": {"type": "Point", "coordinates": [2.1824273594672805, 48.872813396922695]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "396e56cd7d5da0d8e5d8e22013c7e758c66fc036", "fields": {"departement": "92", "stop_lat": 48.874126741811956, "code_postal": "92063", "stop_lon": 2.183349919170164, "coord": [48.874126741811956, 2.183349919170164], "stop_id": 4473072, "stop_desc": "FACE 42 BOULEVARD DE SOLFERINO - 92063", "stop_name": "PLACE RICHELIEU"}, "geometry": {"type": "Point", "coordinates": [2.183349919170164, 48.874126741811956]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "309a41c8b18c8f05f0f07650013e1514d4d77d19", "fields": {"departement": "92", "stop_lat": 48.87137676953357, "code_postal": "92063", "stop_lon": 2.1834670740107733, "coord": [48.87137676953357, 2.1834670740107733], "stop_id": 4473073, "stop_desc": "FACE 27-29 BOULEVARD RICHELIEU - 92063", "stop_name": "ZURICH"}, "geometry": {"type": "Point", "coordinates": [2.1834670740107733, 48.87137676953357]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "52603684eae6a8e847064403adbf37ac2a827bf9", "fields": {"departement": "92", "stop_lat": 48.86881105341226, "code_postal": "92063", "stop_lon": 2.1871257369875647, "coord": [48.86881105341226, 2.1871257369875647], "stop_id": 4473075, "stop_desc": "4 AVENUE DU 18 JUIN 1940 - 92063", "stop_name": "PLACE BESCHE"}, "geometry": {"type": "Point", "coordinates": [2.1871257369875647, 48.86881105341226]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0aa301b084381717412118eb2edecd32d477c14d", "fields": {"departement": "92", "stop_lat": 48.867547720016134, "code_postal": "92063", "stop_lon": 2.197714464943088, "coord": [48.867547720016134, 2.197714464943088], "stop_id": 4473080, "stop_desc": "FACE 112 AVENUE DU 18 JUIN 1940 - 92063", "stop_name": "LIEUTENANT-COLONEL DE MONTBRISON"}, "geometry": {"type": "Point", "coordinates": [2.197714464943088, 48.867547720016134]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "25fc58ae10e0a3c694fc2043d14aeb711f0fda21", "fields": {"departement": "92", "stop_lat": 48.86371353049643, "code_postal": "92073", "stop_lon": 2.2087449708660327, "coord": [48.86371353049643, 2.2087449708660327], "stop_id": 4473082, "stop_desc": "23 AVENUE JEAN JAURES - 92073", "stop_name": "PLACE JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.2087449708660327, 48.86371353049643]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e4c64cc6b227818ae18f46a11168c16f53a8f473", "fields": {"departement": "92", "stop_lat": 48.86787309807707, "code_postal": "92073", "stop_lon": 2.2249597473026133, "coord": [48.86787309807707, 2.2249597473026133], "stop_id": 4473092, "stop_desc": "39 BOULEVARD HENRI SELLIER - 92073", "stop_name": "SURESNES DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.2249597473026133, 48.86787309807707]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "71da6fa792d226aaac9709a8bbe7a3c2b38bc159", "fields": {"departement": "92", "stop_lat": 48.867290753577876, "code_postal": "92073", "stop_lon": 2.2269227092177055, "coord": [48.867290753577876, 2.2269227092177055], "stop_id": 4473094, "stop_desc": "BOULEVARD HENRI SELLIER - 92073", "stop_name": "RUE DES BOURETS - PONT DE SURESNES"}, "geometry": {"type": "Point", "coordinates": [2.2269227092177055, 48.867290753577876]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ac6520480031d7f70efe23085f00082a6ebcb5e5", "fields": {"departement": "75", "stop_lat": 48.86483457945829, "code_postal": "75116", "stop_lon": 2.234025140773587, "coord": [48.86483457945829, 2.234025140773587], "stop_id": 4473096, "stop_desc": "ROUTE DES MOULINS - 75116", "stop_name": "LES MOULINS - CAMPING"}, "geometry": {"type": "Point", "coordinates": [2.234025140773587, 48.86483457945829]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c3a5771aee025fda24b5f957bcf6eb59f76f707f", "fields": {"departement": "75", "stop_lat": 48.865311004088845, "code_postal": "75116", "stop_lon": 2.2341331715569654, "coord": [48.865311004088845, 2.2341331715569654], "stop_id": 4473097, "stop_desc": "ROUTE DE SURESNES - 75116", "stop_name": "LES MOULINS - CAMPING"}, "geometry": {"type": "Point", "coordinates": [2.2341331715569654, 48.865311004088845]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "670460be131e7d0b0ef8df616b50d53edbd6bce1", "fields": {"departement": "75", "stop_lat": 48.87974094344161, "code_postal": "75117", "stop_lon": 2.28295434920751, "coord": [48.87974094344161, 2.28295434920751], "stop_id": 4473098, "stop_desc": "11 BOULEVARD PERSHING - 75117", "stop_name": "PORTE MAILLOT - PERSHING"}, "geometry": {"type": "Point", "coordinates": [2.28295434920751, 48.87974094344161]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "10de2082117ca134806055bead7a66c9e20b93c7", "fields": {"departement": "75", "stop_lat": 48.87841558644444, "code_postal": "75117", "stop_lon": 2.2946603292390058, "coord": [48.87841558644444, 2.2946603292390058], "stop_id": 4473103, "stop_desc": "29-31 AV DES TERNES - 75117", "stop_name": "TERNES - MAC MAHON"}, "geometry": {"type": "Point", "coordinates": [2.2946603292390058, 48.87841558644444]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "577732afad43d617038fd4b6417c3437e49b54ce", "fields": {"departement": "75", "stop_lat": 48.877545158770765, "code_postal": "75108", "stop_lon": 2.298585218601294, "coord": [48.877545158770765, 2.298585218601294], "stop_id": 4473105, "stop_desc": "237 RUE DU FAUBOURG SAINT-HONORE - 75108", "stop_name": "TERNES"}, "geometry": {"type": "Point", "coordinates": [2.298585218601294, 48.877545158770765]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aeb2d20bc80c6031fa4656832236a045b63d71de", "fields": {"departement": "75", "stop_lat": 48.87478831052261, "code_postal": "75108", "stop_lon": 2.3062853319385006, "coord": [48.87478831052261, 2.3062853319385006], "stop_id": 4473108, "stop_desc": "169-171 BOULEVARD HAUSSMANN - 75108", "stop_name": "FRIEDLAND - HAUSSMANN"}, "geometry": {"type": "Point", "coordinates": [2.3062853319385006, 48.87478831052261]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e18020ca9015f29ad438b06f7b5b8658a75c08a4", "fields": {"departement": "75", "stop_lat": 48.874863096583965, "code_postal": "75108", "stop_lon": 2.3207958046274593, "coord": [48.874863096583965, 2.3207958046274593], "stop_id": 4473114, "stop_desc": "FACE 24 RUE DE LA PEPINIERE - 75108", "stop_name": "SAINT-AUGUSTIN"}, "geometry": {"type": "Point", "coordinates": [2.3207958046274593, 48.874863096583965]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c162faa15bc039c3232d2d4968a01c0c7207abb2", "fields": {"departement": "75", "stop_lat": 48.87441332622057, "code_postal": "75108", "stop_lon": 2.318084616089399, "coord": [48.87441332622057, 2.318084616089399], "stop_id": 4473115, "stop_desc": "10-12 RUE LA BOETIE - 75108", "stop_name": "SAINT-AUGUSTIN"}, "geometry": {"type": "Point", "coordinates": [2.318084616089399, 48.87441332622057]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "246f615f576c2bda0240b8efa8ea771129dc136d", "fields": {"departement": "75", "stop_lat": 48.874261363183884, "code_postal": "75108", "stop_lon": 2.324147681777442, "coord": [48.874261363183884, 2.324147681777442], "stop_id": 4473119, "stop_desc": "86 BOULEVARD HAUSSMANN - 75108", "stop_name": "PASQUIER - ANJOU"}, "geometry": {"type": "Point", "coordinates": [2.324147681777442, 48.874261363183884]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "50abf576265cdc4f9a264b674bc0577270871bbf", "fields": {"departement": "92", "stop_lat": 48.86495981904738, "code_postal": "92063", "stop_lon": 2.2060310416999966, "coord": [48.86495981904738, 2.2060310416999966], "stop_id": 4473122, "stop_desc": "183 AVENUE JEAN JAURES - 92063", "stop_name": "PLACE DE LA PAIX"}, "geometry": {"type": "Point", "coordinates": [2.2060310416999966, 48.86495981904738]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5d977e696cd1d6ca00135b76cd8714d083475d06", "fields": {"departement": "92", "stop_lat": 48.88402421063552, "code_postal": "92050", "stop_lon": 2.192491726617203, "coord": [48.88402421063552, 2.192491726617203], "stop_id": 4473123, "stop_desc": "73 AVENUE DU MARECHAL JOFFRE - 92050", "stop_name": "BOULEVARD NATIONAL"}, "geometry": {"type": "Point", "coordinates": [2.192491726617203, 48.88402421063552]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cd46d257b69b6bc26343832e06195041bef9d1b7", "fields": {"departement": "78", "stop_lat": 48.70310256736092, "code_postal": "78575", "stop_lon": 2.070680495679639, "coord": [48.70310256736092, 2.070680495679639], "stop_id": 4473125, "stop_desc": "PLACE DE LA GARE - 78575", "stop_name": "SAINT-REMY-LES-CHEVREUSE RER"}, "geometry": {"type": "Point", "coordinates": [2.070680495679639, 48.70310256736092]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3ab44aedaa027f93c74624e744ce6449e498dd7e", "fields": {"departement": "91", "stop_lat": 48.6988617345815, "code_postal": "91122", "stop_lon": 2.1638124580254603, "coord": [48.6988617345815, 2.1638124580254603], "stop_id": 4473132, "stop_desc": "231 VOIE DE LA FACULTE - 91122", "stop_name": "BURES-SUR-YVETTE RER - UNIVERSITE"}, "geometry": {"type": "Point", "coordinates": [2.1638124580254603, 48.6988617345815]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ca4e1fbad570cfe1cb7e5341213e34fc3fa7e766", "fields": {"departement": "91", "stop_lat": 48.70665944861114, "code_postal": "91477", "stop_lon": 2.238440453695439, "coord": [48.70665944861114, 2.238440453695439], "stop_id": 4473137, "stop_desc": "FACE 7 AVENUE DU GENERAL LECLERC - 91477", "stop_name": "PALAISEAU-VILLEBON RER"}, "geometry": {"type": "Point", "coordinates": [2.238440453695439, 48.70665944861114]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "acb0b4706acf0c1d1f2604bc222a8414920b5d9a", "fields": {"departement": "91", "stop_lat": 48.7163389942601, "code_postal": "91477", "stop_lon": 2.2485145137045444, "coord": [48.7163389942601, 2.2485145137045444], "stop_id": 4473138, "stop_desc": "8 RUE EDOUARD BRANLY - 91477", "stop_name": "EDOUARD BRANLY-PALAISEAU RER"}, "geometry": {"type": "Point", "coordinates": [2.2485145137045444, 48.7163389942601]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "01f0ea9ba8dd610ce77ab121f9a660ec0b6fa487", "fields": {"departement": "91", "stop_lat": 48.72476050436811, "code_postal": "91377", "stop_lon": 2.2605233770372464, "coord": [48.72476050436811, 2.2605233770372464], "stop_id": 4473140, "stop_desc": "R CARNOT - 91377", "stop_name": "MASSY-PALAISEAU-RER"}, "geometry": {"type": "Point", "coordinates": [2.2605233770372464, 48.72476050436811]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3ae529604fd9c42ae2e7f136fb8f0bf1e99a3981", "fields": {"departement": "75", "stop_lat": 48.82356309968058, "code_postal": "75114", "stop_lon": 2.3256985758622, "coord": [48.82356309968058, 2.3256985758622], "stop_id": 4473141, "stop_desc": "123 AVENUE DU GENERAL LECLERC - 75114", "stop_name": "PORTE D'ORLEANS"}, "geometry": {"type": "Point", "coordinates": [2.3256985758622, 48.82356309968058]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f8018339b556579771cd5d13455cbf1eb2731bc5", "fields": {"departement": "75", "stop_lat": 48.839256036606045, "code_postal": "75114", "stop_lon": 2.3367645211123738, "coord": [48.839256036606045, 2.3367645211123738], "stop_id": 4473144, "stop_desc": "49 AVENUE DE L'OBSERVATOIRE - 75114", "stop_name": "OBSERVATOIRE - PORT ROYAL"}, "geometry": {"type": "Point", "coordinates": [2.3367645211123738, 48.839256036606045]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "670b92979982602fc43a2bdf5de3abafd478096c", "fields": {"departement": "78", "stop_lat": 48.89703299526433, "code_postal": "78551", "stop_lon": 2.095390681983472, "coord": [48.89703299526433, 2.095390681983472], "stop_id": 4473156, "stop_desc": "FACE 2 PLACE ANDRE MALRAUX - 78551", "stop_name": "SAINT-GERMAIN-EN-LAYE RER"}, "geometry": {"type": "Point", "coordinates": [2.095390681983472, 48.89703299526433]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "083b382a5d4c027f3ea0c1e783b7c55318481fa4", "fields": {"departement": "78", "stop_lat": 48.889189464215384, "code_postal": "78146", "stop_lon": 2.157696874964597, "coord": [48.889189464215384, 2.157696874964597], "stop_id": 4473162, "stop_desc": "5-7 AVENUE DU MARECHAL FOCH - 78146", "stop_name": "MAIRIE - CHATOU - CROISSY RER"}, "geometry": {"type": "Point", "coordinates": [2.157696874964597, 48.889189464215384]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ec604c191906b66974a1ac4f56cb3a563fb37738", "fields": {"departement": "92", "stop_lat": 48.88663850207259, "code_postal": "92063", "stop_lon": 2.171061177695267, "coord": [48.88663850207259, 2.171061177695267], "stop_id": 4473164, "stop_desc": "AVENUE DE COLMAR - 92063", "stop_name": "RUEIL-MALMAISON RER"}, "geometry": {"type": "Point", "coordinates": [2.171061177695267, 48.88663850207259]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "48648e23cb4d2f644fbb465cf35816b39f51a1cb", "fields": {"departement": "92", "stop_lat": 48.88726872385087, "code_postal": "92063", "stop_lon": 2.1718632201600414, "coord": [48.88726872385087, 2.1718632201600414], "stop_id": 4473165, "stop_desc": "GARE ROUTIERE - 92063", "stop_name": "RUEIL-MALMAISON RER"}, "geometry": {"type": "Point", "coordinates": [2.1718632201600414, 48.88726872385087]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "70203dd44a034cbccdc5fc2708fadb064ee852ca", "fields": {"departement": "92", "stop_lat": 48.89514144595209, "code_postal": "92050", "stop_lon": 2.192542454162083, "coord": [48.89514144595209, 2.192542454162083], "stop_id": 4473167, "stop_desc": "AVENUE BENOIT FRACHON - 92050", "stop_name": "JULES QUENTIN-NANTERRE VILLE-RER"}, "geometry": {"type": "Point", "coordinates": [2.192542454162083, 48.89514144595209]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "13701cc3a239c264b76d607031579bf64049fa81", "fields": {"departement": "75", "stop_lat": 48.87508653842288, "code_postal": "75108", "stop_lon": 2.313451881624046, "coord": [48.87508653842288, 2.313451881624046], "stop_id": 4473186, "stop_desc": "127 BOULEVARD HAUSSMANN - 75108", "stop_name": "HAUSSMANN - MIROMESNIL"}, "geometry": {"type": "Point", "coordinates": [2.313451881624046, 48.87508653842288]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1f4dc9f713b4c8c765900ca437e77eb9aceb6b0c", "fields": {"departement": "75", "stop_lat": 48.87529316389243, "code_postal": "75108", "stop_lon": 2.3130430364059853, "coord": [48.87529316389243, 2.3130430364059853], "stop_id": 4473187, "stop_desc": "142 BOULEVARD HAUSSMANN - 75108", "stop_name": "HAUSSMANN - MIROMESNIL"}, "geometry": {"type": "Point", "coordinates": [2.3130430364059853, 48.87529316389243]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0a6214892cbce668093968b76bce2edc6face3da", "fields": {"departement": "75", "stop_lat": 48.87441332622057, "code_postal": "75108", "stop_lon": 2.318084616089399, "coord": [48.87441332622057, 2.318084616089399], "stop_id": 4473189, "stop_desc": "10-12 RUE LA BOETIE - 75108", "stop_name": "SAINT-AUGUSTIN"}, "geometry": {"type": "Point", "coordinates": [2.318084616089399, 48.87441332622057]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fa6bfd0bd556c7c43e1a74d9221965a9b5457585", "fields": {"departement": "75", "stop_lat": 48.839768673766876, "code_postal": "75115", "stop_lon": 2.2724576435223995, "coord": [48.839768673766876, 2.2724576435223995], "stop_id": 4473278, "stop_desc": "10-12 RUE LEBLANC - 75115", "stop_name": "HOPITAL EUROPEEN GEORGES POMPIDOU"}, "geometry": {"type": "Point", "coordinates": [2.2724576435223995, 48.839768673766876]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "04487fba9f9fbdd98fc6d2e140fa7137cc4c8e0b", "fields": {"departement": "75", "stop_lat": 48.83944609349221, "code_postal": "75115", "stop_lon": 2.2742689214112684, "coord": [48.83944609349221, 2.2742689214112684], "stop_id": 4473280, "stop_desc": "36 RUE LEBLANC - 75115", "stop_name": "RUE LEBLANC"}, "geometry": {"type": "Point", "coordinates": [2.2742689214112684, 48.83944609349221]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "39f3de66d1a8bdf136da45b6f35f29a5e7a462e7", "fields": {"departement": "75", "stop_lat": 48.832330067121525, "code_postal": "75115", "stop_lon": 2.278456975264492, "coord": [48.832330067121525, 2.278456975264492], "stop_id": 4473285, "stop_desc": "FACE 1 RUE DU COLONEL PIERRE AVIA - 75115", "stop_name": "LOUIS ARMAND"}, "geometry": {"type": "Point", "coordinates": [2.278456975264492, 48.832330067121525]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "440086aa0d5d103935c8ab32ddc9b3a371e43de6", "fields": {"departement": "75", "stop_lat": 48.82981201095135, "code_postal": "75115", "stop_lon": 2.2754513391086495, "coord": [48.82981201095135, 2.2754513391086495], "stop_id": 4473286, "stop_desc": "FACE 29 RUE DU COLONEL PIERRE AVIA - 75115", "stop_name": "COLONEL PIERRE AVIA"}, "geometry": {"type": "Point", "coordinates": [2.2754513391086495, 48.82981201095135]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d376c4890415fa967152a3f4e5e8a740027098b1", "fields": {"departement": "75", "stop_lat": 48.828444674765805, "code_postal": "75115", "stop_lon": 2.2731524186663283, "coord": [48.828444674765805, 2.2731524186663283], "stop_id": 4473287, "stop_desc": "38 R DU COLONEL AVIA - 75115", "stop_name": "FRERES VOISIN"}, "geometry": {"type": "Point", "coordinates": [2.2731524186663283, 48.828444674765805]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f0646fe37a013b26f5e640863b5d8e03e078e6c5", "fields": {"departement": "92", "stop_lat": 48.82283664125882, "code_postal": "92040", "stop_lon": 2.273649349876303, "coord": [48.82283664125882, 2.273649349876303], "stop_id": 4473293, "stop_desc": "13 BIS RUE AUGUSTE GERVAIS - 92040", "stop_name": "MUSEE"}, "geometry": {"type": "Point", "coordinates": [2.273649349876303, 48.82283664125882]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cb5ef4633a9a30f503c70832f1fb01582bb3e09a", "fields": {"departement": "92", "stop_lat": 48.817005195778684, "code_postal": "92040", "stop_lon": 2.261026679177312, "coord": [48.817005195778684, 2.261026679177312], "stop_id": 4473306, "stop_desc": "57 RUE DE L'EGALITE - 92040", "stop_name": "EPINETTES"}, "geometry": {"type": "Point", "coordinates": [2.261026679177312, 48.817005195778684]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b5c9d1ec404a91f90e5063ca578c3bb15f4bfb0d", "fields": {"departement": "92", "stop_lat": 48.810711149694555, "code_postal": "92023", "stop_lon": 2.2570351494168617, "coord": [48.810711149694555, 2.2570351494168617], "stop_id": 4473309, "stop_desc": "FACE 135 RUE DE FLEURY - 92023", "stop_name": "FLEURY"}, "geometry": {"type": "Point", "coordinates": [2.2570351494168617, 48.810711149694555]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2bdea306537c34ebefcbd59f777365b360aad244", "fields": {"departement": "92", "stop_lat": 48.8075402745395, "code_postal": "92048", "stop_lon": 2.2358535787928604, "coord": [48.8075402745395, 2.2358535787928604], "stop_id": 4473322, "stop_desc": "36-38 RUE DE LA REPUBLIQUE - 92048", "stop_name": "EGLISE DE MEUDON"}, "geometry": {"type": "Point", "coordinates": [2.2358535787928604, 48.8075402745395]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5873b456bc3b7b76b5d6a9aa86b3a875bacffa40", "fields": {"departement": "92", "stop_lat": 48.823129847513385, "code_postal": "92072", "stop_lon": 2.221449556511516, "coord": [48.823129847513385, 2.221449556511516], "stop_id": 4473333, "stop_desc": "FACE 28 AVENUE DE LA DIVISION LECLERC - 92072", "stop_name": "BRIMBORION - DIVISION LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.221449556511516, 48.823129847513385]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "82f9ab285e7ec2cd5861e5b010e050e0aba1be3a", "fields": {"departement": "92", "stop_lat": 48.826516619377834, "code_postal": "92072", "stop_lon": 2.219835757126419, "coord": [48.826516619377834, 2.219835757126419], "stop_id": 4473335, "stop_desc": "25 BIS GRANDE RUE - 92072", "stop_name": "PARC DE SAINT-CLOUD"}, "geometry": {"type": "Point", "coordinates": [2.219835757126419, 48.826516619377834]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b8a5a334664c8ee1765be878caa69c2af79b10b5", "fields": {"departement": "92", "stop_lat": 48.82593195169939, "code_postal": "92072", "stop_lon": 2.219360657621989, "coord": [48.82593195169939, 2.219360657621989], "stop_id": 4473336, "stop_desc": "2 AVENUE DE LA DIVISION LECLERC - 92072", "stop_name": "PARC DE SAINT-CLOUD"}, "geometry": {"type": "Point", "coordinates": [2.219360657621989, 48.82593195169939]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "11a3d541b0a0f2fb0669616b249213c9dc6feba6", "fields": {"departement": "75", "stop_lat": 48.839993251238624, "code_postal": "75115", "stop_lon": 2.2722531268653094, "coord": [48.839993251238624, 2.2722531268653094], "stop_id": 4473351, "stop_desc": "5-7 RUE LEBLANC - 75115", "stop_name": "HOPITAL EUROPEEN GEORGES POMPIDOU"}, "geometry": {"type": "Point", "coordinates": [2.2722531268653094, 48.839993251238624]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bf3fe7555db2c97d8efe4bc19fb5972cd66d7b95", "fields": {"departement": "75", "stop_lat": 48.83946421233197, "code_postal": "75115", "stop_lon": 2.274541211540746, "coord": [48.83946421233197, 2.274541211540746], "stop_id": 4473353, "stop_desc": "31 RUE LEBLANC - 75115", "stop_name": "RUE LEBLANC"}, "geometry": {"type": "Point", "coordinates": [2.274541211540746, 48.83946421233197]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "14c8174d3e094d7b885afce112eaff01c9ab192f", "fields": {"departement": "75", "stop_lat": 48.83573626432821, "code_postal": "75115", "stop_lon": 2.278248896047409, "coord": [48.83573626432821, 2.278248896047409], "stop_id": 4473356, "stop_desc": "1-3 AVENUE DE LA PORTE DE SEVRES - 75115", "stop_name": "BALARD"}, "geometry": {"type": "Point", "coordinates": [2.278248896047409, 48.83573626432821]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "db17e64424d62943d81f398778264aa8777d46f7", "fields": {"departement": "92", "stop_lat": 48.82738441088452, "code_postal": "92040", "stop_lon": 2.273671000910632, "coord": [48.82738441088452, 2.273671000910632], "stop_id": 4473360, "stop_desc": "4 AVENUE DE LA REPUBLIQUE - 92040", "stop_name": "VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.273671000910632, 48.82738441088452]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "93d0cc749e30acadeb6c19ed4e47e0801238fb3b", "fields": {"departement": "92", "stop_lat": 48.816725505628916, "code_postal": "92040", "stop_lon": 2.2745959035011443, "coord": [48.816725505628916, 2.2745959035011443], "stop_id": 4473368, "stop_desc": "130 AV DE LA PAIX - 92040", "stop_name": "GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.2745959035011443, 48.816725505628916]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "46fc197c54a899df3497611880aed94fa015f31b", "fields": {"departement": "92", "stop_lat": 48.815057462556105, "code_postal": "92040", "stop_lon": 2.2652075656215733, "coord": [48.815057462556105, 2.2652075656215733], "stop_id": 4473371, "stop_desc": "3 RUE FERDINAND BUISSON - 92040", "stop_name": "E. DUPLOYE"}, "geometry": {"type": "Point", "coordinates": [2.2652075656215733, 48.815057462556105]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5e8d2f3f32ac5e038d80d55d9322e063d92a3691", "fields": {"departement": "92", "stop_lat": 48.8147381437127, "code_postal": "92023", "stop_lon": 2.257750209717775, "coord": [48.8147381437127, 2.257750209717775], "stop_id": 4473380, "stop_desc": "138 AVENUE HENRI BARBUSSE - 92023", "stop_name": "HOPITAL PERCY"}, "geometry": {"type": "Point", "coordinates": [2.257750209717775, 48.8147381437127]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3a1e60005422a299a0b7cc07fe6f05c0bd4f97a2", "fields": {"departement": "92", "stop_lat": 48.810711149694555, "code_postal": "92023", "stop_lon": 2.2570351494168617, "coord": [48.810711149694555, 2.2570351494168617], "stop_id": 4473381, "stop_desc": "FACE 135 RUE DE FLEURY - 92023", "stop_name": "FLEURY"}, "geometry": {"type": "Point", "coordinates": [2.2570351494168617, 48.810711149694555]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d65710bbde79358fc73f155f30befdb320575f81", "fields": {"departement": "92", "stop_lat": 48.808332006461626, "code_postal": "92048", "stop_lon": 2.2480851270319326, "coord": [48.808332006461626, 2.2480851270319326], "stop_id": 4473385, "stop_desc": "69 RUE DE BELGIQUE - 92048", "stop_name": "ORPHELINAT"}, "geometry": {"type": "Point", "coordinates": [2.2480851270319326, 48.808332006461626]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dfa57e9b761eb1293723468e0e9e0e23067e176f", "fields": {"departement": "92", "stop_lat": 48.80635626509692, "code_postal": "92048", "stop_lon": 2.238686132716897, "coord": [48.80635626509692, 2.238686132716897], "stop_id": 4473392, "stop_desc": "31 AVENUE LOUVOIS - 92048", "stop_name": "VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.238686132716897, 48.80635626509692]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7d0ebdc52035e5129251be838309aaf76c186353", "fields": {"departement": "92", "stop_lat": 48.8075402745395, "code_postal": "92048", "stop_lon": 2.2358535787928604, "coord": [48.8075402745395, 2.2358535787928604], "stop_id": 4473396, "stop_desc": "36-38 RUE DE LA REPUBLIQUE - 92048", "stop_name": "EGLISE DE MEUDON"}, "geometry": {"type": "Point", "coordinates": [2.2358535787928604, 48.8075402745395]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fcdb034c89acf033e4c64341e4c0347013639c3e", "fields": {"departement": "92", "stop_lat": 48.8144420432121, "code_postal": "92048", "stop_lon": 2.2348738541742104, "coord": [48.8144420432121, 2.2348738541742104], "stop_id": 4473399, "stop_desc": "3 BOULEVARD DES NATIONS-UNIES - 92048", "stop_name": "STALINGRAD"}, "geometry": {"type": "Point", "coordinates": [2.2348738541742104, 48.8144420432121]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9453621941b6f5cc95ec03672899b7c4259ccc0d", "fields": {"departement": "92", "stop_lat": 48.8149894949538, "code_postal": "92048", "stop_lon": 2.2339473492547812, "coord": [48.8149894949538, 2.2339473492547812], "stop_id": 4473400, "stop_desc": "40 BOULEVARD VERD-DE-ST JULIEN - 92048", "stop_name": "STALINGRAD"}, "geometry": {"type": "Point", "coordinates": [2.2339473492547812, 48.8149894949538]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f3e6e78f0625692601ac6d73d9e1ae320f0254fb", "fields": {"departement": "92", "stop_lat": 48.81661431402316, "code_postal": "92048", "stop_lon": 2.231712137797927, "coord": [48.81661431402316, 2.231712137797927], "stop_id": 4473402, "stop_desc": "16 BOULEVARD VERD-DE-ST JULIEN - 92048", "stop_name": "JEANNE D'ARC"}, "geometry": {"type": "Point", "coordinates": [2.231712137797927, 48.81661431402316]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "71daa732afb1e12d8a8dbedf955c77002a4c7af3", "fields": {"departement": "92", "stop_lat": 48.82719400030173, "code_postal": "92072", "stop_lon": 2.2232373238068854, "coord": [48.82719400030173, 2.2232373238068854], "stop_id": 4473411, "stop_desc": "1 GRANDE RUE - 92072", "stop_name": "MUSEE DE SEVRES"}, "geometry": {"type": "Point", "coordinates": [2.2232373238068854, 48.82719400030173]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aa98845d1208a88487bdf7bfa1b7f75ba222ad3f", "fields": {"departement": "92", "stop_lat": 48.8297341467827, "code_postal": "92012", "stop_lon": 2.229275942430251, "coord": [48.8297341467827, 2.229275942430251], "stop_id": 4473414, "stop_desc": "PISTE GARE ROUTIERE - 92012", "stop_name": "PONT DE SEVRES-METRO"}, "geometry": {"type": "Point", "coordinates": [2.229275942430251, 48.8297341467827]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2e8f930e409ef4b0bc576a9f28cca7159dc3f0d9", "fields": {"departement": "92", "stop_lat": 48.809683828737846, "code_postal": "92023", "stop_lon": 2.253104083076981, "coord": [48.809683828737846, 2.253104083076981], "stop_id": 4473418, "stop_desc": "163 RUE DE FLEURY - 92023", "stop_name": "RIVOLI"}, "geometry": {"type": "Point", "coordinates": [2.253104083076981, 48.809683828737846]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "92c86f2f4af041196f5ebdbcc1e40acef10c8c1d", "fields": {"departement": "75", "stop_lat": 48.83330919354311, "code_postal": "75115", "stop_lon": 2.2774075885147833, "coord": [48.83330919354311, 2.2774075885147833], "stop_id": 4473423, "stop_desc": "PLACE DES MARTYRS DE LA RESISTANCE DE LA PORTE DE SEVRES - 75115", "stop_name": "SUZANNE LENGLEN"}, "geometry": {"type": "Point", "coordinates": [2.2774075885147833, 48.83330919354311]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6697261e5f77307bd1190b795bbebce3f3bce37f", "fields": {"departement": "92", "stop_lat": 48.82770486209949, "code_postal": "92040", "stop_lon": 2.26810308702108, "coord": [48.82770486209949, 2.26810308702108], "stop_id": 4473549, "stop_desc": "6-8 BOULEVARD DES FRERES VOISIN - 92040", "stop_name": "PRESIDENT ROBERT SCHUMAN"}, "geometry": {"type": "Point", "coordinates": [2.26810308702108, 48.82770486209949]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9cfc42c98e6f5a1b0625dbb46d9d36f74ac38c5a", "fields": {"departement": "92", "stop_lat": 48.82435504441102, "code_postal": "92040", "stop_lon": 2.2726946740287097, "coord": [48.82435504441102, 2.2726946740287097], "stop_id": 4473554, "stop_desc": "FACE 34 RUE DIDEROT - 92040", "stop_name": "MAIRIE D'ISSY-METRO"}, "geometry": {"type": "Point", "coordinates": [2.2726946740287097, 48.82435504441102]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dae2f34d20f0e181465926f765f680049a833c6f", "fields": {"departement": "92", "stop_lat": 48.81942176095425, "code_postal": "92040", "stop_lon": 2.274483765828633, "coord": [48.81942176095425, 2.274483765828633], "stop_id": 4473557, "stop_desc": "25 RUE GABRIEL PERI - 92040", "stop_name": "RUE DU FORT"}, "geometry": {"type": "Point", "coordinates": [2.274483765828633, 48.81942176095425]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dec9ea35dbf76c60bb28371e753c9c29e0f2f3ef", "fields": {"departement": "92", "stop_lat": 48.81422911028907, "code_postal": "92046", "stop_lon": 2.2789129655955733, "coord": [48.81422911028907, 2.2789129655955733], "stop_id": 4473560, "stop_desc": "BD DE STALINGRAD - 92046", "stop_name": "CLOS MONTHOLON"}, "geometry": {"type": "Point", "coordinates": [2.2789129655955733, 48.81422911028907]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "53962eb8e26d12ba437f91f512d671979b7db343", "fields": {"departement": "93", "stop_lat": 48.94417085341677, "code_postal": "93071", "stop_lon": 2.517576188065935, "coord": [48.94417085341677, 2.517576188065935], "stop_id": 3682092, "stop_desc": "CHEMIN DE SAVIGNY - 93071", "stop_name": "PIERRE CURIE"}, "geometry": {"type": "Point", "coordinates": [2.517576188065935, 48.94417085341677]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ded3d29100066bdf5f2d5297a8256c9b3843dc8d", "fields": {"departement": "93", "stop_lat": 48.90386287775983, "code_postal": "93047", "stop_lon": 2.5608829071805457, "coord": [48.90386287775983, 2.5608829071805457], "stop_id": 3682195, "stop_desc": "AVENUE DE CLICHY - 93047", "stop_name": "LES BOSQUETS"}, "geometry": {"type": "Point", "coordinates": [2.5608829071805457, 48.90386287775983]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aa5894528662db0bfa17901f1ba122bdc603dfcf", "fields": {"departement": "93", "stop_lat": 48.890118186198556, "code_postal": "93010", "stop_lon": 2.481489503492388, "coord": [48.890118186198556, 2.481489503492388], "stop_id": 3682301, "stop_desc": "ROND-POINT GEORGES BRASSENS - 93010", "stop_name": "LA MARE A LA VEUVE"}, "geometry": {"type": "Point", "coordinates": [2.481489503492388, 48.890118186198556]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9e096f9e37837c6c52556e3452ca6d9830fce9d9", "fields": {"departement": "93", "stop_lat": 48.895070151594346, "code_postal": "93010", "stop_lon": 2.488713680079425, "coord": [48.895070151594346, 2.488713680079425], "stop_id": 3682323, "stop_desc": "131 RUE EDOUARD VAILLANT - 93010", "stop_name": "LA REMISE A JORELLE"}, "geometry": {"type": "Point", "coordinates": [2.488713680079425, 48.895070151594346]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9f0d582e0303d37f665599bdbbc4d1f08732fda0", "fields": {"departement": "93", "stop_lat": 48.89665354956417, "code_postal": "93010", "stop_lon": 2.4800901054993765, "coord": [48.89665354956417, 2.4800901054993765], "stop_id": 3682327, "stop_desc": "127 AVENUE CARNOT - 93010", "stop_name": "EDOUARD VAILLANT - CARNOT"}, "geometry": {"type": "Point", "coordinates": [2.4800901054993765, 48.89665354956417]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9d8d36f91d61a2dbe842ab0bd58d19d48a0b1026", "fields": {"departement": "93", "stop_lat": 48.903477789107185, "code_postal": "93010", "stop_lon": 2.4920782060277697, "coord": [48.903477789107185, 2.4920782060277697], "stop_id": 3682346, "stop_desc": "FACE 41 AVENUE DE VERDUN - 93010", "stop_name": "LE SAULE BLANC"}, "geometry": {"type": "Point", "coordinates": [2.4920782060277697, 48.903477789107185]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "31e3fc88526760fec3187dedfbd68cc619919685", "fields": {"departement": "93", "stop_lat": 48.91050698216253, "code_postal": "93010", "stop_lon": 2.476447040198533, "coord": [48.91050698216253, 2.476447040198533], "stop_id": 3682336, "stop_desc": "FACE 1-3 AVENUE JEAN MOULIN - 93010", "stop_name": "AMBROISE PARE"}, "geometry": {"type": "Point", "coordinates": [2.476447040198533, 48.91050698216253]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c6017b11b5a9083681ee769285baf8b0442d3f88", "fields": {"departement": "93", "stop_lat": 48.8937544568861, "code_postal": "93010", "stop_lon": 2.498291649002699, "coord": [48.8937544568861, 2.498291649002699], "stop_id": 3682317, "stop_desc": "261 RUE EDOUARD VAILLANT - 93010", "stop_name": "LES COQUETIERS"}, "geometry": {"type": "Point", "coordinates": [2.498291649002699, 48.8937544568861]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "11bae25efe4f411d0ae5ee2df81dece26160dc19", "fields": {"departement": "93", "stop_lat": 48.91352629897765, "code_postal": "93010", "stop_lon": 2.491331036642813, "coord": [48.91352629897765, 2.491331036642813], "stop_id": 3682343, "stop_desc": "51 AVENUE DU 14 JUILLET - 93010", "stop_name": "BOIS DE BONDY"}, "geometry": {"type": "Point", "coordinates": [2.491331036642813, 48.91352629897765]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "18ad0cd440ef12dfd3cadb5559b03d16a7995183", "fields": {"departement": "93", "stop_lat": 48.91348384725604, "code_postal": "93010", "stop_lon": 2.482181771415327, "coord": [48.91348384725604, 2.482181771415327], "stop_id": 3682340, "stop_desc": "AV HENRI VARAGNAT - 93010", "stop_name": "SUZANNE BUISSON."}, "geometry": {"type": "Point", "coordinates": [2.482181771415327, 48.91348384725604]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0c5dc227dab57063d3e5f52d6eff69d7450e9813", "fields": {"departement": "93", "stop_lat": 48.892123042361185, "code_postal": "93010", "stop_lon": 2.4881735184332183, "coord": [48.892123042361185, 2.4881735184332183], "stop_id": 3682309, "stop_desc": "ROUTE DE VILLEMOMBLE - 93010", "stop_name": "PIERRE CURIE"}, "geometry": {"type": "Point", "coordinates": [2.4881735184332183, 48.892123042361185]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fd44269552564e3b8794be12a923c4a2b79afb4a", "fields": {"departement": "93", "stop_lat": 48.89379192840858, "code_postal": "93010", "stop_lon": 2.497160483465929, "coord": [48.89379192840858, 2.497160483465929], "stop_id": 3682320, "stop_desc": "228 R EDOUARD VAILLANT - 93010", "stop_name": "ALOUETTES"}, "geometry": {"type": "Point", "coordinates": [2.497160483465929, 48.89379192840858]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b16edc8543c656b0f3909b476e6d9fbfe77b95be", "fields": {"departement": "77", "stop_lat": 48.85605652217107, "code_postal": "77083", "stop_lon": 2.589346915627523, "coord": [48.85605652217107, 2.589346915627523], "stop_id": 3682658, "stop_desc": "2 BOULEVARD DE LA REPUBLIQUE - 77083", "stop_name": "C.S.T.B. - MATTEOTTI"}, "geometry": {"type": "Point", "coordinates": [2.589346915627523, 48.85605652217107]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e600a86faeb77a8aa18d49bf6727d2b19e9a7e37", "fields": {"departement": "77", "stop_lat": 48.84492440170382, "code_postal": "77337", "stop_lon": 2.6198496230932244, "coord": [48.84492440170382, 2.6198496230932244], "stop_id": 3682677, "stop_desc": "BOULEVARD SALVADOR ALLENDE - 77337", "stop_name": "LES PROVINCES"}, "geometry": {"type": "Point", "coordinates": [2.6198496230932244, 48.84492440170382]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c69ca9c9003b10dcee6639739dbe809f5b3b2285", "fields": {"departement": "77", "stop_lat": 48.85104795592041, "code_postal": "77337", "stop_lon": 2.626079508796173, "coord": [48.85104795592041, 2.626079508796173], "stop_id": 3682681, "stop_desc": "COURS DE L'ARCHE GUEDON - 77337", "stop_name": "JULES FERRY"}, "geometry": {"type": "Point", "coordinates": [2.626079508796173, 48.85104795592041]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0c0bd717036232c78b1f4811733fc4c8b36c9593", "fields": {"departement": "77", "stop_lat": 48.8428596378912, "code_postal": "77337", "stop_lon": 2.6150181063879754, "coord": [48.8428596378912, 2.6150181063879754], "stop_id": 3682674, "stop_desc": "COURS DES ROCHES - 77337", "stop_name": "NOISIEL RER"}, "geometry": {"type": "Point", "coordinates": [2.6150181063879754, 48.8428596378912]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ce7fb475c4f9157ce91392ec9e46bfe1e85bc87a", "fields": {"departement": "93", "stop_lat": 48.84943411331682, "code_postal": "93051", "stop_lon": 2.5469074126833733, "coord": [48.84943411331682, 2.5469074126833733], "stop_id": 3682709, "stop_desc": "39 BOULEVARD PAUL PAMBRUN - 93051", "stop_name": "EGLISE DE NOISY-LE-GRAND"}, "geometry": {"type": "Point", "coordinates": [2.5469074126833733, 48.84943411331682]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3d07e3a46d3c21e967fd0e2bd80d70f821a56cf3", "fields": {"departement": "77", "stop_lat": 48.85048981271242, "code_postal": "77337", "stop_lon": 2.6301347406719437, "coord": [48.85048981271242, 2.6301347406719437], "stop_id": 3682682, "stop_desc": "COURS DE L'ARCHE GUEDON - 77337", "stop_name": "LA REMISE AUX FRAISES"}, "geometry": {"type": "Point", "coordinates": [2.6301347406719437, 48.85048981271242]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "727b8b4c64136434f4b91f9e025b5df622c16931", "fields": {"departement": "93", "stop_lat": 48.85429380589795, "code_postal": "93050", "stop_lon": 2.5212542273863185, "coord": [48.85429380589795, 2.5212542273863185], "stop_id": 3682813, "stop_desc": "FACE 11 BOULEVARD DU MARECHAL FOCH - 93050", "stop_name": "HELENE BOUCHER"}, "geometry": {"type": "Point", "coordinates": [2.5212542273863185, 48.85429380589795]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "75ead1d6724c8b016bdba46398d8a2d6625fc961", "fields": {"departement": "77", "stop_lat": 48.84526195661666, "code_postal": "77468", "stop_lon": 2.653594940647414, "coord": [48.84526195661666, 2.653594940647414], "stop_id": 3682701, "stop_desc": "FACE 28 AVENUE DE LINGENFELD - 77468", "stop_name": "RIVES DE MAUBUEE"}, "geometry": {"type": "Point", "coordinates": [2.653594940647414, 48.84526195661666]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5dcab80603183593e95788fab6443d3e8af8f203", "fields": {"departement": "77", "stop_lat": 48.845082316255095, "code_postal": "77468", "stop_lon": 2.653552993631835, "coord": [48.845082316255095, 2.653552993631835], "stop_id": 3682700, "stop_desc": "24 AVENUE DE LINGENFELD - 77468", "stop_name": "RIVES DE MAUBUEE"}, "geometry": {"type": "Point", "coordinates": [2.653552993631835, 48.845082316255095]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c75beb3c3ea29d3cefb12e0c7e49563e877781ca", "fields": {"departement": "77", "stop_lat": 48.850712449056154, "code_postal": "77468", "stop_lon": 2.6520756538555257, "coord": [48.850712449056154, 2.6520756538555257], "stop_id": 3682692, "stop_desc": "FACE 50 RUE DE PARIS - 77468", "stop_name": "MAIRIE DE TORCY"}, "geometry": {"type": "Point", "coordinates": [2.6520756538555257, 48.850712449056154]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4399f0a00aeee2b9f6970ecda5946d21f4a4e004", "fields": {"departement": "77", "stop_lat": 48.849963254010994, "code_postal": "77468", "stop_lon": 2.6464466804422355, "coord": [48.849963254010994, 2.6464466804422355], "stop_id": 3682690, "stop_desc": "71 TER RUE DE PARIS - 77468", "stop_name": "LES TILLEULS"}, "geometry": {"type": "Point", "coordinates": [2.6464466804422355, 48.849963254010994]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "92d581b5d695d024a1fe6404dd2748396c102d89", "fields": {"departement": "93", "stop_lat": 48.860651050318076, "code_postal": "93050", "stop_lon": 2.5306345501909777, "coord": [48.860651050318076, 2.5306345501909777], "stop_id": 3682821, "stop_desc": "RUE PAUL ET CAMILLE THOMOUX - 93050", "stop_name": "EPI D'OR"}, "geometry": {"type": "Point", "coordinates": [2.5306345501909777, 48.860651050318076]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a9f47c2de8699e7ca08ebd2772b4e2e5dd0336ab", "fields": {"departement": "94", "stop_lat": 48.81504970329177, "code_postal": "94046", "stop_lon": 2.421141792054011, "coord": [48.81504970329177, 2.421141792054011], "stop_id": 3663714, "stop_desc": "FACE 7 AVENUE DU GENERAL LECLERC - 94046", "stop_name": "ECOLE VETERINAIRE DE MAISONS-ALFORT"}, "geometry": {"type": "Point", "coordinates": [2.421141792054011, 48.81504970329177]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "36df62f84e52b9732da6c4e6a34849605cea6c39", "fields": {"departement": "93", "stop_lat": 48.91495572493585, "code_postal": "93001", "stop_lon": 2.403072973878873, "coord": [48.91495572493585, 2.403072973878873], "stop_id": 3663816, "stop_desc": "RUE DANIELLE CASANOVA - 93001", "stop_name": "FORT D'AUBERVILLIERS - DANIELLE CASANOVA"}, "geometry": {"type": "Point", "coordinates": [2.403072973878873, 48.91495572493585]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dad68992cc832512756ac0d471fa5852bf5648ca", "fields": {"departement": "93", "stop_lat": 48.91482097258037, "code_postal": "93001", "stop_lon": 2.402977354782398, "coord": [48.91482097258037, 2.402977354782398], "stop_id": 3663817, "stop_desc": "RUE DANIELLE CASANOVA - 93001", "stop_name": "FORT D'AUBERVILLIERS - DANIELLE CASANOVA"}, "geometry": {"type": "Point", "coordinates": [2.402977354782398, 48.91482097258037]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a7ec20d65f405ea8a21f0756509c8c702c8879a1", "fields": {"departement": "93", "stop_lat": 48.91417295684891, "code_postal": "93001", "stop_lon": 2.4046809378898155, "coord": [48.91417295684891, 2.4046809378898155], "stop_id": 3663815, "stop_desc": "AVENUE DE LA DIVISION LECLERC - 93001", "stop_name": "FORT D'AUBERVILLIERS - METRO"}, "geometry": {"type": "Point", "coordinates": [2.4046809378898155, 48.91417295684891]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5d85652a5d00a5c732c859fe7cbba36d8ff46048", "fields": {"departement": "95", "stop_lat": 48.972903028630206, "code_postal": "95268", "stop_lon": 2.417002162798139, "coord": [48.972903028630206, 2.417002162798139], "stop_id": 3663852, "stop_desc": "AVENUE DE STALINGRAD - 95268", "stop_name": "COLLEGE PABLO PICASSO"}, "geometry": {"type": "Point", "coordinates": [2.417002162798139, 48.972903028630206]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "200084c89c7051b951ac2e5aa04e61f14a991e24", "fields": {"departement": "93", "stop_lat": 48.946274104207006, "code_postal": "93072", "stop_lon": 2.386331044930748, "coord": [48.946274104207006, 2.386331044930748], "stop_id": 3663835, "stop_desc": "FACE 191 BOULEVARD MAXIME GORKI - 93072", "stop_name": "CROIX BLANCHE"}, "geometry": {"type": "Point", "coordinates": [2.386331044930748, 48.946274104207006]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ab83d8bcbe854975bc8574f2f0059d1bd73c96b1", "fields": {"departement": "95", "stop_lat": 48.98136093634377, "code_postal": "95019", "stop_lon": 2.427418750579938, "coord": [48.98136093634377, 2.427418750579938], "stop_id": 3663858, "stop_desc": "FACE 84 AVENUE DE LA REPUBLIQUE - 95019", "stop_name": "LEON BLUM"}, "geometry": {"type": "Point", "coordinates": [2.427418750579938, 48.98136093634377]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f3116a22991336724e2cf3af819aebb31e15e51a", "fields": {"departement": "95", "stop_lat": 48.98305379970812, "code_postal": "95277", "stop_lon": 2.4345351231585646, "coord": [48.98305379970812, 2.4345351231585646], "stop_id": 3663860, "stop_desc": "0 AV RAYMOND RAMBERT - 95277", "stop_name": "LYCEE DE GONESSE"}, "geometry": {"type": "Point", "coordinates": [2.4345351231585646, 48.98305379970812]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "00d4fe120f588f9caebbde06605cf03344cf3425", "fields": {"departement": "93", "stop_lat": 48.952904674188225, "code_postal": "93072", "stop_lon": 2.3901853459733466, "coord": [48.952904674188225, 2.3901853459733466], "stop_id": 3663838, "stop_desc": "160 AVENUE DE STALINGRAD - 93072", "stop_name": "LOUIS BORDES"}, "geometry": {"type": "Point", "coordinates": [2.3901853459733466, 48.952904674188225]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "448917bc3350ca48e00964f599fbc98b2519c9e6", "fields": {"departement": "93", "stop_lat": 48.94932063631951, "code_postal": "93072", "stop_lon": 2.3862793551203967, "coord": [48.94932063631951, 2.3862793551203967], "stop_id": 3663836, "stop_desc": "95 BOULEVARD MAXIME GORKI - 93072", "stop_name": "LE GLOBE"}, "geometry": {"type": "Point", "coordinates": [2.3862793551203967, 48.94932063631951]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "06f41ad425c000a83899f30f91ad35a0bdb8b4ec", "fields": {"departement": "93", "stop_lat": 48.93043936274061, "code_postal": "93027", "stop_lon": 2.3862069226314016, "coord": [48.93043936274061, 2.3862069226314016], "stop_id": 3663893, "stop_desc": "4 AVENUE ROGER SALENGRO - 93027", "stop_name": "SIX ROUTES - ROGER SALENGRO-TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.3862069226314016, 48.93043936274061]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "89d62e9198c25912c3fb9b6a75d696da204c5b6c", "fields": {"departement": "93", "stop_lat": 48.91880699588042, "code_postal": "93001", "stop_lon": 2.3936278000572, "coord": [48.91880699588042, 2.3936278000572], "stop_id": 3663883, "stop_desc": "94 R CHARLES TILLON - 93001", "stop_name": "DANIELLE CASANOVA - PONT BLANC"}, "geometry": {"type": "Point", "coordinates": [2.3936278000572, 48.91880699588042]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "112acbfc8985bfa313f65e577e5c25e601a04641", "fields": {"departement": "95", "stop_lat": 48.992119870186045, "code_postal": "95277", "stop_lon": 2.455827907438423, "coord": [48.992119870186045, 2.455827907438423], "stop_id": 3663872, "stop_desc": "R D'ARSONVAL - 95277", "stop_name": "LA FONTAINE CYPIERE - RUE D'ARSONVAL"}, "geometry": {"type": "Point", "coordinates": [2.455827907438423, 48.992119870186045]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2e34e54c119130f52e8c796f3f240ae245fabaeb", "fields": {"departement": "95", "stop_lat": 48.986342513592646, "code_postal": "95277", "stop_lon": 2.4548861738207215, "coord": [48.986342513592646, 2.4548861738207215], "stop_id": 3663869, "stop_desc": "82-86 RUE DE PARIS - 95277", "stop_name": "CHEMIN DES CRESSONNIERES"}, "geometry": {"type": "Point", "coordinates": [2.4548861738207215, 48.986342513592646]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bbab187c4f42c1c6e8e192ceb7df31113c9b3caf", "fields": {"departement": "95", "stop_lat": 48.987247332786204, "code_postal": "95277", "stop_lon": 2.4484433012868956, "coord": [48.987247332786204, 2.4484433012868956], "stop_id": 3663874, "stop_desc": "FACE 4 PLACE DU 8 MAI 1945 - 95277", "stop_name": "HOPITAL-8 MAI 1945"}, "geometry": {"type": "Point", "coordinates": [2.4484433012868956, 48.987247332786204]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f2acaf0a2516feee64284d22bf8e1607847a0906", "fields": {"departement": "93", "stop_lat": 48.946274104207006, "code_postal": "93072", "stop_lon": 2.386331044930748, "coord": [48.946274104207006, 2.386331044930748], "stop_id": 3663898, "stop_desc": "FACE 191 BOULEVARD MAXIME GORKI - 93072", "stop_name": "CROIX BLANCHE"}, "geometry": {"type": "Point", "coordinates": [2.386331044930748, 48.946274104207006]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "55ab46a239f6ea446b1ef45eeb22092cc00260b1", "fields": {"departement": "93", "stop_lat": 48.941582600962306, "code_postal": "93066", "stop_lon": 2.3872952124781888, "coord": [48.941582600962306, 2.3872952124781888], "stop_id": 3663876, "stop_desc": "8-10 AVENUE ROGER SALENGRO - 93066", "stop_name": "CITE FLOREAL"}, "geometry": {"type": "Point", "coordinates": [2.3872952124781888, 48.941582600962306]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "138a5cd285d0277f200e9f7473d83667328de6d6", "fields": {"departement": "95", "stop_lat": 48.985879261551, "code_postal": "95277", "stop_lon": 2.4598006155998506, "coord": [48.985879261551, 2.4598006155998506], "stop_id": 3663870, "stop_desc": "RUE D'ARSONVAL - 95277", "stop_name": "LA FONTAINE CYPIERE ZI"}, "geometry": {"type": "Point", "coordinates": [2.4598006155998506, 48.985879261551]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f13a39d191835df643fd6f552be7979400602e4c", "fields": {"departement": "93", "stop_lat": 48.94932063631951, "code_postal": "93072", "stop_lon": 2.3862793551203967, "coord": [48.94932063631951, 2.3862793551203967], "stop_id": 3663899, "stop_desc": "95 BOULEVARD MAXIME GORKI - 93072", "stop_name": "LE GLOBE"}, "geometry": {"type": "Point", "coordinates": [2.3862793551203967, 48.94932063631951]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4cee6c8b8c1525a1622e462b3453a398b93a1f2a", "fields": {"departement": "95", "stop_lat": 48.98440458346457, "code_postal": "95277", "stop_lon": 2.4418424246016666, "coord": [48.98440458346457, 2.4418424246016666], "stop_id": 3663863, "stop_desc": "4 RUE DE PARIS - 95277", "stop_name": "RUE D'AULNAY"}, "geometry": {"type": "Point", "coordinates": [2.4418424246016666, 48.98440458346457]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "937dbf17297c70d047c1be21329dd9514ea30452", "fields": {"departement": "94", "stop_lat": 48.814627272661085, "code_postal": "94046", "stop_lon": 2.443636947184136, "coord": [48.814627272661085, 2.443636947184136], "stop_id": 3663644, "stop_desc": "127-131 RUE GEORGES CLEMENCEAU - 94046", "stop_name": "PASSERELLE DE CHARENTONNEAU"}, "geometry": {"type": "Point", "coordinates": [2.443636947184136, 48.814627272661085]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1c69df0579d170a4e58d5fa22e334bd9c0286842", "fields": {"departement": "94", "stop_lat": 48.79947927962356, "code_postal": "94068", "stop_lon": 2.4884348323622807, "coord": [48.79947927962356, 2.4884348323622807], "stop_id": 3663616, "stop_desc": "FACE 28-30 AVENUE HENRI MARTIN - 94068", "stop_name": "BIBLIOTHEQUE MUNICIPALE"}, "geometry": {"type": "Point", "coordinates": [2.4884348323622807, 48.79947927962356]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e1dd5890a7f8ef7c06cbcd0119a741a8abdc7ac4", "fields": {"departement": "94", "stop_lat": 48.79972114444108, "code_postal": "94028", "stop_lon": 2.4662182415699143, "coord": [48.79972114444108, 2.4662182415699143], "stop_id": 3663625, "stop_desc": "FACE AU 11 RUE DU PORT - 94028", "stop_name": "HOPITAL INTERCOMMUNAL"}, "geometry": {"type": "Point", "coordinates": [2.4662182415699143, 48.79972114444108]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e9fbda1e477fb67cdf719408a1c1b5580b05d869", "fields": {"departement": "94", "stop_lat": 48.80723447731543, "code_postal": "94068", "stop_lon": 2.4746869575894057, "coord": [48.80723447731543, 2.4746869575894057], "stop_id": 3663657, "stop_desc": "28 RUE DE LA VARENNE - 94068", "stop_name": "LIBERATION - RABELAIS"}, "geometry": {"type": "Point", "coordinates": [2.4746869575894057, 48.80723447731543]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "14bcdd104e4838b77be468baad89a33c4d3bf5c7", "fields": {"departement": "94", "stop_lat": 48.80312425965535, "code_postal": "94068", "stop_lon": 2.4845268900734148, "coord": [48.80312425965535, 2.4845268900734148], "stop_id": 3663660, "stop_desc": "18 AVENUE EMILE ZOLA - 94068", "stop_name": "MAIRIE DE SAINT-MAUR"}, "geometry": {"type": "Point", "coordinates": [2.4845268900734148, 48.80312425965535]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "835089fc38d5f171be0f5edba2383eefc3f766f3", "fields": {"departement": "94", "stop_lat": 48.80433445713847, "code_postal": "94068", "stop_lon": 2.4720260310108393, "coord": [48.80433445713847, 2.4720260310108393], "stop_id": 3663609, "stop_desc": "45-47 RUE DES REMISES - 94068", "stop_name": "RUE DES REMISES"}, "geometry": {"type": "Point", "coordinates": [2.4720260310108393, 48.80433445713847]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d30fe687a89367bc1fb199dd2c044ed32a02f486", "fields": {"departement": "94", "stop_lat": 48.815450541248154, "code_postal": "94046", "stop_lon": 2.4374327868943513, "coord": [48.815450541248154, 2.4374327868943513], "stop_id": 3663643, "stop_desc": "48-51 AVENUE FOCH - 94046", "stop_name": "MOULIN BRULE"}, "geometry": {"type": "Point", "coordinates": [2.4374327868943513, 48.815450541248154]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "669e38894300f04c6952055b65ecb96bd1417bea", "fields": {"departement": "94", "stop_lat": 48.810196326834905, "code_postal": "94046", "stop_lon": 2.443614258904574, "coord": [48.810196326834905, 2.443614258904574], "stop_id": 3663632, "stop_desc": "58 RUE GEORGES CLEMENCEAU - 94046", "stop_name": "RENE COTY"}, "geometry": {"type": "Point", "coordinates": [2.443614258904574, 48.810196326834905]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9d0c61af3b77e50ee05f3b86ae2b8eb94cc216ee", "fields": {"departement": "94", "stop_lat": 48.815594767610136, "code_postal": "94046", "stop_lon": 2.4369295192284466, "coord": [48.815594767610136, 2.4369295192284466], "stop_id": 3663635, "stop_desc": "AVENUE FOCH - 94046", "stop_name": "MOULIN BRULE"}, "geometry": {"type": "Point", "coordinates": [2.4369295192284466, 48.815594767610136]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "45506bb89f0194327e6018c0331ba5351193cf53", "fields": {"departement": "94", "stop_lat": 48.80972104464445, "code_postal": "94046", "stop_lon": 2.452131777070312, "coord": [48.80972104464445, 2.452131777070312], "stop_id": 3663602, "stop_desc": "156 AVENUE GAMBETTA - 94046", "stop_name": "LYON"}, "geometry": {"type": "Point", "coordinates": [2.452131777070312, 48.80972104464445]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3bde19c2fef2f492795e021e3afb6d4a78b57ce8", "fields": {"departement": "95", "stop_lat": 48.971575049991486, "code_postal": "95268", "stop_lon": 2.3983127619651223, "coord": [48.971575049991486, 2.3983127619651223], "stop_id": 3664159, "stop_desc": "RUE LE NOTRE - 95268", "stop_name": "HOTEL DE VILLE DE GARGES-LES-GONESSE"}, "geometry": {"type": "Point", "coordinates": [2.3983127619651223, 48.971575049991486]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0d1d8b4079d0151b6754cfa5ee64682a20014bd0", "fields": {"departement": "95", "stop_lat": 48.98367986243862, "code_postal": "95277", "stop_lon": 2.438140842334344, "coord": [48.98367986243862, 2.438140842334344], "stop_id": 3663965, "stop_desc": "11-13 RUE RAYMOND RAMBERT - 95277", "stop_name": "CHEMIN DU MOULIN D'ETIF"}, "geometry": {"type": "Point", "coordinates": [2.438140842334344, 48.98367986243862]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5000ed430d71344b591933402527766b6c404d1f", "fields": {"departement": "95", "stop_lat": 48.976350593870706, "code_postal": "95268", "stop_lon": 2.3906325320248634, "coord": [48.976350593870706, 2.3906325320248634], "stop_id": 3664153, "stop_desc": "AVENUE ANATOLE FRANCE - 95268", "stop_name": "GARGES - SARCELLES RER"}, "geometry": {"type": "Point", "coordinates": [2.3906325320248634, 48.976350593870706]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2bf04cd7a81f949b5daa37e2dce79758fbe2c3ce", "fields": {"departement": "95", "stop_lat": 48.986401391751656, "code_postal": "95277", "stop_lon": 2.4497386404359953, "coord": [48.986401391751656, 2.4497386404359953], "stop_id": 3663968, "stop_desc": "64 RUE DE PARIS - 95277", "stop_name": "HOTEL DE VILLE DE GONESSE"}, "geometry": {"type": "Point", "coordinates": [2.4497386404359953, 48.986401391751656]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6f966909fe758118976e32354ca22696e1dcc7da", "fields": {"departement": "95", "stop_lat": 48.97300808054812, "code_postal": "95268", "stop_lon": 2.389537024367586, "coord": [48.97300808054812, 2.389537024367586], "stop_id": 3664131, "stop_desc": "RUE D'ESTIENNE D'ORVES - 95268", "stop_name": "EGLISE SAINTE-GENEVIEVE"}, "geometry": {"type": "Point", "coordinates": [2.389537024367586, 48.97300808054812]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "46fb51914fefc77e1ef8f8eb7a90fea62f670e09", "fields": {"departement": "95", "stop_lat": 48.971254435036265, "code_postal": "95268", "stop_lon": 2.3923472104511623, "coord": [48.971254435036265, 2.3923472104511623], "stop_id": 3664156, "stop_desc": "13 RUE DU COLONEL FABIEN - 95268", "stop_name": "GUY MOQUET"}, "geometry": {"type": "Point", "coordinates": [2.3923472104511623, 48.971254435036265]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "033ba1724a020da6a69c2a332b4d6ba2352557c2", "fields": {"departement": "95", "stop_lat": 48.96500744422176, "code_postal": "95268", "stop_lon": 2.3950975841313187, "coord": [48.96500744422176, 2.3950975841313187], "stop_id": 3664165, "stop_desc": "RUE DES PRIEUSES - 95268", "stop_name": "LES DOUCETTES"}, "geometry": {"type": "Point", "coordinates": [2.3950975841313187, 48.96500744422176]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8da7388892e262ef09e717d1d706de9e14f87cc8", "fields": {"departement": "95", "stop_lat": 48.96480069891343, "code_postal": "95268", "stop_lon": 2.3952065416863513, "coord": [48.96480069891343, 2.3952065416863513], "stop_id": 3664142, "stop_desc": "RUE DES PRIEUSES - 95268", "stop_name": "LES DOUCETTES"}, "geometry": {"type": "Point", "coordinates": [2.3952065416863513, 48.96480069891343]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7857982c278e14e09d3eee5ac6024edae1e944cf", "fields": {"departement": "95", "stop_lat": 48.96330763811756, "code_postal": "95268", "stop_lon": 2.397784376936203, "coord": [48.96330763811756, 2.397784376936203], "stop_id": 3664167, "stop_desc": "17 AVENUE DES MORILLONS - 95268", "stop_name": "GAILLARDS"}, "geometry": {"type": "Point", "coordinates": [2.397784376936203, 48.96330763811756]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e6699ec5c61aa32f87df186da0c1aea483a39061", "fields": {"departement": "95", "stop_lat": 48.97079290675731, "code_postal": "95268", "stop_lon": 2.4143780794124163, "coord": [48.97079290675731, 2.4143780794124163], "stop_id": 3663959, "stop_desc": "8 AVENUE DE STALINGRAD - 95268", "stop_name": "CARNOT"}, "geometry": {"type": "Point", "coordinates": [2.4143780794124163, 48.97079290675731]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ea8242f0c62171c91adff40e2938d2305ab07f63", "fields": {"departement": "95", "stop_lat": 48.96002657728869, "code_postal": "95268", "stop_lon": 2.399595633378217, "coord": [48.96002657728869, 2.399595633378217], "stop_id": 3663905, "stop_desc": "FACE 7 AVENUE DE STALINGRAD - 95268", "stop_name": "LIMITE DES DEPARTEMENTS"}, "geometry": {"type": "Point", "coordinates": [2.399595633378217, 48.96002657728869]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0e2e928dacb56365d515be3a960fbb247aa3b729", "fields": {"departement": "93", "stop_lat": 48.929037580636226, "code_postal": "93027", "stop_lon": 2.3857827838557766, "coord": [48.929037580636226, 2.3857827838557766], "stop_id": 3663947, "stop_desc": "BOULEVARD PASTEUR - 93027", "stop_name": "SIX ROUTES - TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.3857827838557766, 48.929037580636226]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "08e8ba9dab3454f96fe6ab4908f87a29eedc3a9f", "fields": {"departement": "93", "stop_lat": 48.952904674188225, "code_postal": "93072", "stop_lon": 2.3901853459733466, "coord": [48.952904674188225, 2.3901853459733466], "stop_id": 3663901, "stop_desc": "160 AVENUE DE STALINGRAD - 93072", "stop_name": "LOUIS BORDES"}, "geometry": {"type": "Point", "coordinates": [2.3901853459733466, 48.952904674188225]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e14cec9d3fdca7b12c5ac5d74ebdf888bfeb9c83", "fields": {"departement": "93", "stop_lat": 48.953138383168564, "code_postal": "93072", "stop_lon": 2.3900627754179897, "coord": [48.953138383168564, 2.3900627754179897], "stop_id": 3663902, "stop_desc": "AVENUE DE STALINGRAD - 93072", "stop_name": "LOUIS BORDES"}, "geometry": {"type": "Point", "coordinates": [2.3900627754179897, 48.953138383168564]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2bad7b4262144b36bffc2655d1702564ae14e9fc", "fields": {"departement": "95", "stop_lat": 48.970909917089145, "code_postal": "95268", "stop_lon": 2.4140915997398324, "coord": [48.970909917089145, 2.4140915997398324], "stop_id": 3663913, "stop_desc": "247 BIS AVENUE DE STALINGRAD - 95268", "stop_name": "CARNOT"}, "geometry": {"type": "Point", "coordinates": [2.4140915997398324, 48.970909917089145]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5a765cfaa3a2e4f3627c32eb2501a7c2f8a6fe68", "fields": {"departement": "93", "stop_lat": 48.941474563908756, "code_postal": "93027", "stop_lon": 2.387758950668094, "coord": [48.941474563908756, 2.387758950668094], "stop_id": 3663950, "stop_desc": "AV ROGER SALENGRO - 93027", "stop_name": "CITE FLOREAL"}, "geometry": {"type": "Point", "coordinates": [2.387758950668094, 48.941474563908756]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "54b9240802321761b83ff35c1f458daf7736b195", "fields": {"departement": "95", "stop_lat": 48.96808091868575, "code_postal": "95268", "stop_lon": 2.411275612988156, "coord": [48.96808091868575, 2.411275612988156], "stop_id": 3663910, "stop_desc": "FACE 191 AVENUE DE STALINGRAD - 95268", "stop_name": "VERDUN"}, "geometry": {"type": "Point", "coordinates": [2.411275612988156, 48.96808091868575]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "76cf870a5c3af3c2c8c206e856209cf2424ff357", "fields": {"departement": "95", "stop_lat": 48.96313358918207, "code_postal": "95268", "stop_lon": 2.4039804292554754, "coord": [48.96313358918207, 2.4039804292554754], "stop_id": 3663906, "stop_desc": "AVENUE DE STALINGRAD - 95268", "stop_name": "DEMUSOIS"}, "geometry": {"type": "Point", "coordinates": [2.4039804292554754, 48.96313358918207]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "95c066f08b325829746cfe78a7e1b4838784d60d", "fields": {"departement": "95", "stop_lat": 48.97079290675731, "code_postal": "95268", "stop_lon": 2.4143780794124163, "coord": [48.97079290675731, 2.4143780794124163], "stop_id": 3663912, "stop_desc": "8 AVENUE DE STALINGRAD - 95268", "stop_name": "CARNOT"}, "geometry": {"type": "Point", "coordinates": [2.4143780794124163, 48.97079290675731]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0b41248757b5dd2fa65100ed7a51431a3dc71358", "fields": {"departement": "95", "stop_lat": 48.98440458346457, "code_postal": "95277", "stop_lon": 2.4418424246016666, "coord": [48.98440458346457, 2.4418424246016666], "stop_id": 3663926, "stop_desc": "4 RUE DE PARIS - 95277", "stop_name": "RUE D'AULNAY"}, "geometry": {"type": "Point", "coordinates": [2.4418424246016666, 48.98440458346457]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1fcb60ae34fe73563b2f324ebc4d1f006fb0141d", "fields": {"departement": "94", "stop_lat": 48.809081950256626, "code_postal": "94046", "stop_lon": 2.453123721150605, "coord": [48.809081950256626, 2.453123721150605], "stop_id": 3663678, "stop_desc": "212 AVENUE DE LA REPUBLIQUE - 94046", "stop_name": "PONT DE MAISONS-ALFORT"}, "geometry": {"type": "Point", "coordinates": [2.453123721150605, 48.809081950256626]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6c6aefa0c5ecb3d5a8d3c7fc2cb02975e6b3d8cb", "fields": {"departement": "94", "stop_lat": 48.80624097434953, "code_postal": "94068", "stop_lon": 2.4710512828055955, "coord": [48.80624097434953, 2.4710512828055955], "stop_id": 3663697, "stop_desc": "RUE DU PONT DE CRETEIL - 94068", "stop_name": "SAINT-MAUR-CRETEIL RER"}, "geometry": {"type": "Point", "coordinates": [2.4710512828055955, 48.80624097434953]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "88cb607a567516e06fd2ae9d310a69afc3d88ffa", "fields": {"departement": "94", "stop_lat": 48.81557632329112, "code_postal": "94046", "stop_lon": 2.4261781005441354, "coord": [48.81557632329112, 2.4261781005441354], "stop_id": 3663670, "stop_desc": "FACE 5 RUE MARECHAL JUIN - 94046", "stop_name": "PAUL BERT"}, "geometry": {"type": "Point", "coordinates": [2.4261781005441354, 48.81557632329112]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4b3743dda2fe0afe439d4b95857ee29c570b2e6f", "fields": {"departement": "94", "stop_lat": 48.810196326834905, "code_postal": "94046", "stop_lon": 2.443614258904574, "coord": [48.810196326834905, 2.443614258904574], "stop_id": 3663707, "stop_desc": "58 RUE GEORGES CLEMENCEAU - 94046", "stop_name": "RENE COTY"}, "geometry": {"type": "Point", "coordinates": [2.443614258904574, 48.810196326834905]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b9de2fd9a597c3c3bd6adc8ba936d3e051651282", "fields": {"departement": "94", "stop_lat": 48.81177814731839, "code_postal": "94046", "stop_lon": 2.4436447166406614, "coord": [48.81177814731839, 2.4436447166406614], "stop_id": 3663708, "stop_desc": "80 RUE GEORGES CLEMENCEAU - 94046", "stop_name": "CONCORDE"}, "geometry": {"type": "Point", "coordinates": [2.4436447166406614, 48.81177814731839]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f7c50fca541d70e231f46090e0f9382213fec95a", "fields": {"departement": "94", "stop_lat": 48.78882481201206, "code_postal": "94068", "stop_lon": 2.476841820182719, "coord": [48.78882481201206, 2.476841820182719], "stop_id": 3663667, "stop_desc": "FACE 67 AVENUE BEAUREPAIRE - 94068", "stop_name": "VILLETTE"}, "geometry": {"type": "Point", "coordinates": [2.476841820182719, 48.78882481201206]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "63a4c04cae554d8634135762af1add4880cab978", "fields": {"departement": "94", "stop_lat": 48.79705268455538, "code_postal": "94068", "stop_lon": 2.488332535820817, "coord": [48.79705268455538, 2.488332535820817], "stop_id": 3663690, "stop_desc": "45 AVENUE HENRI MARTIN - 94068", "stop_name": "INKERMANN"}, "geometry": {"type": "Point", "coordinates": [2.488332535820817, 48.79705268455538]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "351d262764fbd113b50f32082692862726b618fd", "fields": {"departement": "94", "stop_lat": 48.815594767610136, "code_postal": "94046", "stop_lon": 2.4369295192284466, "coord": [48.815594767610136, 2.4369295192284466], "stop_id": 3663710, "stop_desc": "AVENUE FOCH - 94046", "stop_name": "MOULIN BRULE"}, "geometry": {"type": "Point", "coordinates": [2.4369295192284466, 48.815594767610136]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4803cb536302b3da419cf3384cfeca58f07bfd2f", "fields": {"departement": "94", "stop_lat": 48.80984741060125, "code_postal": "94046", "stop_lon": 2.451574134910637, "coord": [48.80984741060125, 2.451574134910637], "stop_id": 3663705, "stop_desc": "175 AVENUE GAMBETTA - 94046", "stop_name": "LYON"}, "geometry": {"type": "Point", "coordinates": [2.451574134910637, 48.80984741060125]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f94bcca15f8b0a51867c417b13e990d4fbc52ab9", "fields": {"departement": "94", "stop_lat": 48.80972104464445, "code_postal": "94046", "stop_lon": 2.452131777070312, "coord": [48.80972104464445, 2.452131777070312], "stop_id": 3663677, "stop_desc": "156 AVENUE GAMBETTA - 94046", "stop_name": "LYON"}, "geometry": {"type": "Point", "coordinates": [2.452131777070312, 48.80972104464445]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "acd2d6763f2d7735d8c57408702adf40bdd7c3e0", "fields": {"departement": "93", "stop_lat": 48.90717332711018, "code_postal": "93008", "stop_lon": 2.4296073209290268, "coord": [48.90717332711018, 2.4296073209290268], "stop_id": 3664382, "stop_desc": "140 RUE DE LA REPUBLIQUE - 93008", "stop_name": "LYCEE ANDRE SABATIER"}, "geometry": {"type": "Point", "coordinates": [2.4296073209290268, 48.90717332711018]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3a5cf0b8825426f705ddd94d5661c2d475276884", "fields": {"departement": "93", "stop_lat": 48.92114485792039, "code_postal": "93029", "stop_lon": 2.4538653310183443, "coord": [48.92114485792039, 2.4538653310183443], "stop_id": 3664403, "stop_desc": "177 BIS AVENUE HENRI BARBUSSE - 93029", "stop_name": "AUGUSTE BLANQUI"}, "geometry": {"type": "Point", "coordinates": [2.4538653310183443, 48.92114485792039]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2cc82c38c63bdabe797a277940496f62d7b066ef", "fields": {"departement": "93", "stop_lat": 48.925687844848476, "code_postal": "93007", "stop_lon": 2.4668455689872397, "coord": [48.925687844848476, 2.4668455689872397], "stop_id": 3664410, "stop_desc": "FACE 160 AVENUE PAUL VAILLANT COUTURIER - 93007", "stop_name": "SUFFREN"}, "geometry": {"type": "Point", "coordinates": [2.4668455689872397, 48.925687844848476]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8e7394ebc10d4dfc1e77925c186b0f9247071e5e", "fields": {"departement": "93", "stop_lat": 48.90229474767659, "code_postal": "93008", "stop_lon": 2.4277719215806424, "coord": [48.90229474767659, 2.4277719215806424], "stop_id": 3664376, "stop_desc": "29 RUE BERNARD - 93008", "stop_name": "EUGENE HENAFF"}, "geometry": {"type": "Point", "coordinates": [2.4277719215806424, 48.90229474767659]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "509dc609f498e0ec7461c6eeecdbc04e532d7d4c", "fields": {"departement": "94", "stop_lat": 48.77976663603938, "code_postal": "94028", "stop_lon": 2.4589335139487987, "coord": [48.77976663603938, 2.4589335139487987], "stop_id": 3619739, "stop_desc": "CHEMIN DEPARTEMENTAL (VOIE RAPIDE D1 ) - 94028", "stop_name": "CRETEIL - PREFECTURE METRO"}, "geometry": {"type": "Point", "coordinates": [2.4589335139487987, 48.77976663603938]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "67b3f3e66ce91abc4d2e9e598a2efac5288de6ea", "fields": {"departement": "94", "stop_lat": 48.783016891844866, "code_postal": "94028", "stop_lon": 2.453337590224282, "coord": [48.783016891844866, 2.453337590224282], "stop_id": 3619733, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 94028", "stop_name": "PREFECTURE DU VAL-DE-MARNE"}, "geometry": {"type": "Point", "coordinates": [2.453337590224282, 48.783016891844866]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "624c72ed3bf4cca4b4ce5eb7eaab0e19050ee190", "fields": {"departement": "94", "stop_lat": 48.77264909664753, "code_postal": "94028", "stop_lon": 2.4579785738132083, "coord": [48.77264909664753, 2.4579785738132083], "stop_id": 3619724, "stop_desc": "43-45 AVENUE DU GENERAL PIERRE BILLOTTE - 94028", "stop_name": "BILLOTTE-FALKIRK"}, "geometry": {"type": "Point", "coordinates": [2.4579785738132083, 48.77264909664753]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a042355591bd99297a9fd9af94a68df30d97b7ee", "fields": {"departement": "94", "stop_lat": 48.77281996571015, "code_postal": "94028", "stop_lon": 2.4578837838237426, "coord": [48.77281996571015, 2.4578837838237426], "stop_id": 3619725, "stop_desc": "72 AV DU GENERAL PIERRE BILLOTTE - 94028", "stop_name": "BILLOTTE-FALKIRK"}, "geometry": {"type": "Point", "coordinates": [2.4578837838237426, 48.77281996571015]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0155057e2b59ed9778ce7e90fc084a5dadd77a40", "fields": {"departement": "94", "stop_lat": 48.769388184853796, "code_postal": "94028", "stop_lon": 2.464905596156557, "coord": [48.769388184853796, 2.464905596156557], "stop_id": 3619720, "stop_desc": "AVENUE FRANCOIS MITTERRAND - 94028", "stop_name": "POINTE DU LAC-METRO"}, "geometry": {"type": "Point", "coordinates": [2.464905596156557, 48.769388184853796]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5fab8520fc6f5a25b2c28f3b88669cc3bd4e8497", "fields": {"departement": "94", "stop_lat": 48.81965187603184, "code_postal": "94017", "stop_lon": 2.5292976821149664, "coord": [48.81965187603184, 2.5292976821149664], "stop_id": 3619658, "stop_desc": "140 RUE ALEXANDRE FOURNY - 94017", "stop_name": "ZONE INDUSTRIELLE"}, "geometry": {"type": "Point", "coordinates": [2.5292976821149664, 48.81965187603184]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "29d870653d31ff32ba979107d705a021fe201699", "fields": {"departement": "94", "stop_lat": 48.78520124082686, "code_postal": "94028", "stop_lon": 2.4530568431191986, "coord": [48.78520124082686, 2.4530568431191986], "stop_id": 3619735, "stop_desc": "AV DE LA BRECHE - 94028", "stop_name": "CROIX DES MECHES"}, "geometry": {"type": "Point", "coordinates": [2.4530568431191986, 48.78520124082686]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1b0d1c9f0092f9e6bbd4081b4e654b7ba9601150", "fields": {"departement": "94", "stop_lat": 48.77435776914354, "code_postal": "94028", "stop_lon": 2.457044244380805, "coord": [48.77435776914354, 2.457044244380805], "stop_id": 3619727, "stop_desc": "18 AVENUE DU GENERAL PIERRE BILLOTTE - 94028", "stop_name": "PORT"}, "geometry": {"type": "Point", "coordinates": [2.457044244380805, 48.77435776914354]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "869a2ce536fe4eef23cdfcb76dac5ff7b86b10dc", "fields": {"departement": "94", "stop_lat": 48.77462751904508, "code_postal": "94028", "stop_lon": 2.456936077410044, "coord": [48.77462751904508, 2.456936077410044], "stop_id": 3619726, "stop_desc": "AVENUE DU GENERAL PIERRE BILLOTTE - 94028", "stop_name": "PORT"}, "geometry": {"type": "Point", "coordinates": [2.456936077410044, 48.77462751904508]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cc0fa5f72ea712772655da47b71e93c4406b939f", "fields": {"departement": "94", "stop_lat": 48.768264270638504, "code_postal": "94028", "stop_lon": 2.4733737422363498, "coord": [48.768264270638504, 2.4733737422363498], "stop_id": 3619714, "stop_desc": "R SULLY - 94028", "stop_name": "SULLY"}, "geometry": {"type": "Point", "coordinates": [2.4733737422363498, 48.768264270638504]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "20c0be91ef3cff1d99ccd792e0f7162111cf83bf", "fields": {"departement": "94", "stop_lat": 48.81504970329177, "code_postal": "94046", "stop_lon": 2.421141792054011, "coord": [48.81504970329177, 2.421141792054011], "stop_id": 3619744, "stop_desc": "FACE 7 AVENUE DU GENERAL LECLERC - 94046", "stop_name": "ECOLE VETERINAIRE DE MAISONS-ALFORT"}, "geometry": {"type": "Point", "coordinates": [2.421141792054011, 48.81504970329177]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a45badbf2497c7cde86d9c0d03e8c713ea6eaddb", "fields": {"departement": "94", "stop_lat": 48.783016891844866, "code_postal": "94028", "stop_lon": 2.453337590224282, "coord": [48.783016891844866, 2.453337590224282], "stop_id": 3619875, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 94028", "stop_name": "PREFECTURE DU VAL-DE-MARNE"}, "geometry": {"type": "Point", "coordinates": [2.453337590224282, 48.783016891844866]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "23adffe297a00d9b14f4ab3d2f8e74268e294d01", "fields": {"departement": "77", "stop_lat": 48.828112417712866, "code_postal": "77258", "stop_lon": 2.6294094846955676, "coord": [48.828112417712866, 2.6294094846955676], "stop_id": 3677832, "stop_desc": "RUE DE LA MAISON ROUGE - 77258", "stop_name": "LA MADELEINE"}, "geometry": {"type": "Point", "coordinates": [2.6294094846955676, 48.828112417712866]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ae7ee7e55824224e54bbdce8413db9f7392593a6", "fields": {"departement": "77", "stop_lat": 48.832408572708516, "code_postal": "77258", "stop_lon": 2.629392832135877, "coord": [48.832408572708516, 2.629392832135877], "stop_id": 3677815, "stop_desc": "RUE DE LA MAISON ROUGE - 77258", "stop_name": "MAISON ROUGE"}, "geometry": {"type": "Point", "coordinates": [2.629392832135877, 48.832408572708516]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ec147867d417dd5dd051e576cada0cb903071055", "fields": {"departement": "77", "stop_lat": 48.83296543292309, "code_postal": "77258", "stop_lon": 2.629545721233269, "coord": [48.83296543292309, 2.629545721233269], "stop_id": 3677803, "stop_desc": "RUE DE LA MAISON ROUGE - 77258", "stop_name": "MAISON ROUGE"}, "geometry": {"type": "Point", "coordinates": [2.629545721233269, 48.83296543292309]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8c99e63f93c0fe4dde4c4a662ce5ca326fc61020", "fields": {"departement": "77", "stop_lat": 48.82637430057647, "code_postal": "77146", "stop_lon": 2.6344498494410065, "coord": [48.82637430057647, 2.6344498494410065], "stop_id": 3677836, "stop_desc": "FACE 7 RUE PELLOUTIER - 77146", "stop_name": "PELLOUTIER"}, "geometry": {"type": "Point", "coordinates": [2.6344498494410065, 48.82637430057647]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4425bfdc83fa5c3a93c979149af0c18a52c0b57a", "fields": {"departement": "77", "stop_lat": 48.83939955555686, "code_postal": "77258", "stop_lon": 2.6335985955814634, "coord": [48.83939955555686, 2.6335985955814634], "stop_id": 3677826, "stop_desc": "RUE JEHAN SCARRON - 77258", "stop_name": "LOGNES RER"}, "geometry": {"type": "Point", "coordinates": [2.6335985955814634, 48.83939955555686]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "56ac0825fc3a6a21656f01ac68632cd7faa41e3b", "fields": {"departement": "77", "stop_lat": 48.83939955555686, "code_postal": "77258", "stop_lon": 2.6335985955814634, "coord": [48.83939955555686, 2.6335985955814634], "stop_id": 3677844, "stop_desc": "RUE JEHAN SCARRON - 77258", "stop_name": "LOGNES RER"}, "geometry": {"type": "Point", "coordinates": [2.6335985955814634, 48.83939955555686]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5e3dc658910c25a842c5654a80a8c6af3e638dd2", "fields": {"departement": "77", "stop_lat": 48.825551256001276, "code_postal": "77258", "stop_lon": 2.6292725579153386, "coord": [48.825551256001276, 2.6292725579153386], "stop_id": 3677817, "stop_desc": "RUE DE LA MAISON ROUGE - 77258", "stop_name": "CHAMBRE DE COMMERCE ET D'INDUSTRIE"}, "geometry": {"type": "Point", "coordinates": [2.6292725579153386, 48.825551256001276]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bf9ba21c58d6332f1bca0b270789b935477832ec", "fields": {"departement": "77", "stop_lat": 48.825551256001276, "code_postal": "77258", "stop_lon": 2.6292725579153386, "coord": [48.825551256001276, 2.6292725579153386], "stop_id": 3677848, "stop_desc": "RUE DE LA MAISON ROUGE - 77258", "stop_name": "CHAMBRE DE COMMERCE ET D'INDUSTRIE"}, "geometry": {"type": "Point", "coordinates": [2.6292725579153386, 48.825551256001276]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2e2081be924f210f4dd49e23b62b2bae21d71e6d", "fields": {"departement": "93", "stop_lat": 48.98943251427254, "code_postal": "93073", "stop_lon": 2.5259953160271786, "coord": [48.98943251427254, 2.5259953160271786], "stop_id": 3678795, "stop_desc": "FACE 15 RUE DE LA BELLE BORNE - 93073", "stop_name": "AEROVILLE - RUE DE LA BELLE BORNE"}, "geometry": {"type": "Point", "coordinates": [2.5259953160271786, 48.98943251427254]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "acc48374f6e526833bb2597ec832dbb259fa3c7d", "fields": {"departement": "93", "stop_lat": 48.979667196927075, "code_postal": "93073", "stop_lon": 2.518246007713892, "coord": [48.979667196927075, 2.518246007713892], "stop_id": 3678789, "stop_desc": "227 AVENUE DES NATIONS - 93073", "stop_name": "227, AVENUE DES NATIONS"}, "geometry": {"type": "Point", "coordinates": [2.518246007713892, 48.979667196927075]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7bb3c3501669ab3fb5ff3d4fbe687bb8b73f82d1", "fields": {"departement": "93", "stop_lat": 48.99401510089086, "code_postal": "93073", "stop_lon": 2.52631247799206, "coord": [48.99401510089086, 2.52631247799206], "stop_id": 3678799, "stop_desc": "RUE DE LA JEUNE FILLE - 93073", "stop_name": "RUE DE LA JEUNE FILLE"}, "geometry": {"type": "Point", "coordinates": [2.52631247799206, 48.99401510089086]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3489fac16c4940856a6485ab59b7898c5cc6a34f", "fields": {"departement": "77", "stop_lat": 48.828112417712866, "code_postal": "77258", "stop_lon": 2.6294094846955676, "coord": [48.828112417712866, 2.6294094846955676], "stop_id": 3677847, "stop_desc": "RUE DE LA MAISON ROUGE - 77258", "stop_name": "LA MADELEINE"}, "geometry": {"type": "Point", "coordinates": [2.6294094846955676, 48.828112417712866]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3358ec6ba834025a1ea1c63b2c1b7fea95deaaff", "fields": {"departement": "92", "stop_lat": 48.839540271584404, "code_postal": "92012", "stop_lon": 2.2404884315548563, "coord": [48.839540271584404, 2.2404884315548563], "stop_id": 3681847, "stop_desc": "71-73 ROUTE DE LA REINE - 92012", "stop_name": "ROUTE DE LA REINE - JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.2404884315548563, 48.839540271584404]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fde8c0e475982f16e4d0e4bf5268e4a130c25a8b", "fields": {"departement": "77", "stop_lat": 48.87477880331131, "code_postal": "77108", "stop_lon": 2.584342221256563, "coord": [48.87477880331131, 2.584342221256563], "stop_id": 3681514, "stop_desc": "54 BOULEVARD CHILPERIC - 77108", "stop_name": "MARCHE - CHELLES - GOURNAY RER"}, "geometry": {"type": "Point", "coordinates": [2.584342221256563, 48.87477880331131]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4b4b53ce35d60a154ed31a42f905f2b4817fe8b4", "fields": {"departement": "92", "stop_lat": 48.822893090783545, "code_postal": "92040", "stop_lon": 2.2493667912871365, "coord": [48.822893090783545, 2.2493667912871365], "stop_id": 3681854, "stop_desc": "FACE 12/14 BOULEVARD DES ILES - 92040", "stop_name": "ILE SAINT GERMAIN"}, "geometry": {"type": "Point", "coordinates": [2.2493667912871365, 48.822893090783545]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c78f06439ef53f802a60c82c625925700f74e76e", "fields": {"departement": "92", "stop_lat": 48.833107661754134, "code_postal": "92012", "stop_lon": 2.2436180205499823, "coord": [48.833107661754134, 2.2436180205499823], "stop_id": 3681850, "stop_desc": "202 BOULEVARD JEAN JAURES - 92012", "stop_name": "MARCEL SEMBAT-METRO"}, "geometry": {"type": "Point", "coordinates": [2.2436180205499823, 48.833107661754134]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fd73ab0f1af5b5923d8a9dbbb9ebe5d9147c202d", "fields": {"departement": "92", "stop_lat": 48.81481672357971, "code_postal": "92046", "stop_lon": 2.2863428956324334, "coord": [48.81481672357971, 2.2863428956324334], "stop_id": 3681985, "stop_desc": "FACE 32 BD STALINGRAD - 92046", "stop_name": "CIMETIERE COMMUNAL"}, "geometry": {"type": "Point", "coordinates": [2.2863428956324334, 48.81481672357971]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c59d7160e9ea366ea3f62a21ccf78eea3c0dc3ec", "fields": {"departement": "92", "stop_lat": 48.81576327711803, "code_postal": "92046", "stop_lon": 2.293486895647058, "coord": [48.81576327711803, 2.293486895647058], "stop_id": 3681973, "stop_desc": "99 R VAILLANT COUTURIER - 92046", "stop_name": "AMBROISE CROIZAT"}, "geometry": {"type": "Point", "coordinates": [2.293486895647058, 48.81576327711803]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "455fd1fdf7e982a81accee9ee9ee15c654164723", "fields": {"departement": "92", "stop_lat": 48.81576327711803, "code_postal": "92046", "stop_lon": 2.293486895647058, "coord": [48.81576327711803, 2.293486895647058], "stop_id": 3681988, "stop_desc": "99 R VAILLANT COUTURIER - 92046", "stop_name": "AMBROISE CROIZAT"}, "geometry": {"type": "Point", "coordinates": [2.293486895647058, 48.81576327711803]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6b60745c938b35ef98ff735e3f6a28ce3cfd1da4", "fields": {"departement": "92", "stop_lat": 48.816448613894025, "code_postal": "92046", "stop_lon": 2.3001686149082823, "coord": [48.816448613894025, 2.3001686149082823], "stop_id": 3681990, "stop_desc": "39 R GUY MOCQUET - 92046", "stop_name": "MAURICE THOREZ"}, "geometry": {"type": "Point", "coordinates": [2.3001686149082823, 48.816448613894025]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a0e8f2e55451d5866171bdeff05d396efd2bfeee", "fields": {"departement": "92", "stop_lat": 48.82360325596181, "code_postal": "92040", "stop_lon": 2.262745642097151, "coord": [48.82360325596181, 2.262745642097151], "stop_id": 3681861, "stop_desc": "2 BOULEVARD GARIBALDI - 92040", "stop_name": "ROGER SALENGRO"}, "geometry": {"type": "Point", "coordinates": [2.262745642097151, 48.82360325596181]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4f8cd7d2da3a8f5563fb34f821b540eb894605a8", "fields": {"departement": "92", "stop_lat": 48.81387307516317, "code_postal": "92046", "stop_lon": 2.2864935189324047, "coord": [48.81387307516317, 2.2864935189324047], "stop_id": 3681982, "stop_desc": "FACE 74 R JULES GUESDE - 92046", "stop_name": "JULES GUESDE"}, "geometry": {"type": "Point", "coordinates": [2.2864935189324047, 48.81387307516317]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "86945452a2f9226e0bfd2e36f8ade100c33f835e", "fields": {"departement": "92", "stop_lat": 48.82249135093846, "code_postal": "92040", "stop_lon": 2.2669666963681245, "coord": [48.82249135093846, 2.2669666963681245], "stop_id": 3681790, "stop_desc": "50 AVENUE VICTOR CRESSON - 92040", "stop_name": "BOURGAIN - GENERAL GALLIENI"}, "geometry": {"type": "Point", "coordinates": [2.2669666963681245, 48.82249135093846]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0d82d4f7619948a502b4bf2cd2a0f658c5c6acf8", "fields": {"departement": "92", "stop_lat": 48.82495398793462, "code_postal": "92040", "stop_lon": 2.266990584750047, "coord": [48.82495398793462, 2.266990584750047], "stop_id": 3681837, "stop_desc": "67 BIS RUE DU GOUVERNEUR GENERAL EBOUE - 92040", "stop_name": "FERBER-GALLIENI"}, "geometry": {"type": "Point", "coordinates": [2.266990584750047, 48.82495398793462]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "558200080441d3e2373fa9f3bea6824eea8ecedb", "fields": {"departement": "92", "stop_lat": 48.81877841626567, "code_postal": "92040", "stop_lon": 2.2516874897032806, "coord": [48.81877841626567, 2.2516874897032806], "stop_id": 3681798, "stop_desc": "31 RUE DU DOCTEUR LOMBARD - 92040", "stop_name": "VERDUN - DOCTEUR LOMBARD"}, "geometry": {"type": "Point", "coordinates": [2.2516874897032806, 48.81877841626567]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7cb63ba19b76efa736bfd67e4453ff7889f46f22", "fields": {"departement": "92", "stop_lat": 48.84171383895608, "code_postal": "92012", "stop_lon": 2.2387551197396354, "coord": [48.84171383895608, 2.2387551197396354], "stop_id": 3681846, "stop_desc": "44 BOULEVARD JEAN JAURES - 92012", "stop_name": "JEAN JAURES-METRO"}, "geometry": {"type": "Point", "coordinates": [2.2387551197396354, 48.84171383895608]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "878e20fc8b1d8dbfeb5243a1c292b859faca5e1e", "fields": {"departement": "92", "stop_lat": 48.818914595907714, "code_postal": "92040", "stop_lon": 2.2536063060917946, "coord": [48.818914595907714, 2.2536063060917946], "stop_id": 3681796, "stop_desc": "154 AVENUE DE VERDUN - 92040", "stop_name": "CHEMIN DES VIGNES"}, "geometry": {"type": "Point", "coordinates": [2.2536063060917946, 48.818914595907714]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f1c19d1d2ec2a3809cb067721443b8de1c19e22a", "fields": {"departement": "92", "stop_lat": 48.84842978520447, "code_postal": "92012", "stop_lon": 2.2415340502427488, "coord": [48.84842978520447, 2.2415340502427488], "stop_id": 3681824, "stop_desc": "FACE 19 BOULEVARD ANATOLE FRANCE - 92012", "stop_name": "GAMBETTA"}, "geometry": {"type": "Point", "coordinates": [2.2415340502427488, 48.84842978520447]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "48ab0a8b7b5fc64d3fa4a7e7db66473a29bbb698", "fields": {"departement": "92", "stop_lat": 48.82550545005613, "code_postal": "92040", "stop_lon": 2.27266601906822, "coord": [48.82550545005613, 2.27266601906822], "stop_id": 3681789, "stop_desc": "28 R MARCEAU - 92040", "stop_name": "MAIRIE D'ISSY-METRO"}, "geometry": {"type": "Point", "coordinates": [2.27266601906822, 48.82550545005613]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "18891f28fc20f8557a88864131d0c8abee76fcb7", "fields": {"departement": "92", "stop_lat": 48.837027668772585, "code_postal": "92012", "stop_lon": 2.245435352476561, "coord": [48.837027668772585, 2.245435352476561], "stop_id": 3681812, "stop_desc": "84 AVENUE VICTOR HUGO - 92012", "stop_name": "GALLIENI"}, "geometry": {"type": "Point", "coordinates": [2.245435352476561, 48.837027668772585]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "021fdc290ae56a77e9304688fc7c15c4e4ed07ba", "fields": {"departement": "92", "stop_lat": 48.81977038305509, "code_postal": "92040", "stop_lon": 2.256435899055303, "coord": [48.81977038305509, 2.256435899055303], "stop_id": 3681794, "stop_desc": "136 AVENUE DE VERDUN - 92040", "stop_name": "PAUL BERT"}, "geometry": {"type": "Point", "coordinates": [2.256435899055303, 48.81977038305509]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b9206f1aeb9b5b530a1589a0384b82b346e0ff8d", "fields": {"departement": "92", "stop_lat": 48.82062612017892, "code_postal": "92040", "stop_lon": 2.259292806634242, "coord": [48.82062612017892, 2.259292806634242], "stop_id": 3681793, "stop_desc": "118 AVENUE DE VERDUN - 92040", "stop_name": "ISSY RER"}, "geometry": {"type": "Point", "coordinates": [2.259292806634242, 48.82062612017892]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9b321eae812532ae5992d7e7818661ea6f0e02bf", "fields": {"departement": "77", "stop_lat": 48.85163425678612, "code_postal": "77337", "stop_lon": 2.6214659706761654, "coord": [48.85163425678612, 2.6214659706761654], "stop_id": 3681499, "stop_desc": "COURS DE L'ARCHE GUEDON - 77337", "stop_name": "LES QUATRE PAVES"}, "geometry": {"type": "Point", "coordinates": [2.6214659706761654, 48.85163425678612]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c2f3f6916b2cd3b43290e5b8dfff9b86e7437c17", "fields": {"departement": "77", "stop_lat": 48.85239050434027, "code_postal": "77083", "stop_lon": 2.601381973860583, "coord": [48.85239050434027, 2.601381973860583], "stop_id": 3681501, "stop_desc": "FACE 8-6 RUE DE PARIS - 77083", "stop_name": "MAIRIE DE CHAMPS"}, "geometry": {"type": "Point", "coordinates": [2.601381973860583, 48.85239050434027]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3acbe200c370a2f6100132bceaa45dcbcfb3b3cc", "fields": {"departement": "77", "stop_lat": 48.87462353224703, "code_postal": "77479", "stop_lon": 2.6399584020460387, "coord": [48.87462353224703, 2.6399584020460387], "stop_id": 3681483, "stop_desc": "GARE ROUTIERE - 77479", "stop_name": "GARE DE VAIRES - TORCY"}, "geometry": {"type": "Point", "coordinates": [2.6399584020460387, 48.87462353224703]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f4b74cfbbb2c49937cc322430bfba2edc6cf343c", "fields": {"departement": "77", "stop_lat": 48.85542039398311, "code_postal": "77468", "stop_lon": 2.656026762795703, "coord": [48.85542039398311, 2.656026762795703], "stop_id": 3681461, "stop_desc": "AV DU PRESIDENT FRANCOIS MITTERRAND - 77468", "stop_name": "LE CLOS"}, "geometry": {"type": "Point", "coordinates": [2.656026762795703, 48.85542039398311]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "58ce25adc66aff71f6d1a43988a469d952733f76", "fields": {"departement": "77", "stop_lat": 48.850712449056154, "code_postal": "77468", "stop_lon": 2.6520756538555257, "coord": [48.850712449056154, 2.6520756538555257], "stop_id": 3681466, "stop_desc": "FACE 50 RUE DE PARIS - 77468", "stop_name": "MAIRIE DE TORCY"}, "geometry": {"type": "Point", "coordinates": [2.6520756538555257, 48.850712449056154]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d69b1c260de9d7a27f83d50a59db7323e6f7e987", "fields": {"departement": "77", "stop_lat": 48.84706316156763, "code_postal": "77468", "stop_lon": 2.652203301096435, "coord": [48.84706316156763, 2.652203301096435], "stop_id": 3681490, "stop_desc": "AVENUE DE LINGENFELD - 77468", "stop_name": "JACQUES PREVERT"}, "geometry": {"type": "Point", "coordinates": [2.652203301096435, 48.84706316156763]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0923cf8805b4c875a9a142d739ef1fb3b256965b", "fields": {"departement": "77", "stop_lat": 48.84983959613489, "code_postal": "77468", "stop_lon": 2.6385881100782096, "coord": [48.84983959613489, 2.6385881100782096], "stop_id": 3681495, "stop_desc": "9 COURS DE L'ARCHE GUEDON - 77468", "stop_name": "LA MOGOTTE"}, "geometry": {"type": "Point", "coordinates": [2.6385881100782096, 48.84983959613489]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5c434bbb430a5ceb158ca8c3061ce4c2b4808cbd", "fields": {"departement": "77", "stop_lat": 48.87032474855916, "code_postal": "77479", "stop_lon": 2.641064081206506, "coord": [48.87032474855916, 2.641064081206506], "stop_id": 3681481, "stop_desc": "59-61 AV DE LORRAINE - 77479", "stop_name": "REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.641064081206506, 48.87032474855916]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aa7716a3fa6afffbe936dc5d060b4f5561a5abc0", "fields": {"departement": "77", "stop_lat": 48.86627669725649, "code_postal": "77108", "stop_lon": 2.5755423069547474, "coord": [48.86627669725649, 2.5755423069547474], "stop_id": 3681509, "stop_desc": "4 RUE DE GOURNAY - 77108", "stop_name": "PONT DE GOURNAY"}, "geometry": {"type": "Point", "coordinates": [2.5755423069547474, 48.86627669725649]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5da96791e4479a1402295591211b55302837c51e", "fields": {"departement": "77", "stop_lat": 48.8388587110045, "code_postal": "77468", "stop_lon": 2.655121686933947, "coord": [48.8388587110045, 2.655121686933947], "stop_id": 3681486, "stop_desc": "AV DE LINGENFELD - 77468", "stop_name": "TORCY RER"}, "geometry": {"type": "Point", "coordinates": [2.655121686933947, 48.8388587110045]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6d1ae523162310402fccf35a51e13944351387a6", "fields": {"departement": "77", "stop_lat": 48.872435896102694, "code_postal": "77108", "stop_lon": 2.5785952142218123, "coord": [48.872435896102694, 2.5785952142218123], "stop_id": 3681615, "stop_desc": "32 AV DU MARECHAL FOCH - 77108", "stop_name": "PARMENTIER - JULES FERRY"}, "geometry": {"type": "Point", "coordinates": [2.5785952142218123, 48.872435896102694]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5e077e6ff1bf9f70f41d401c2d49c35ec26dd6b3", "fields": {"departement": "77", "stop_lat": 48.870957143989884, "code_postal": "77108", "stop_lon": 2.576531116758481, "coord": [48.870957143989884, 2.576531116758481], "stop_id": 3681616, "stop_desc": "50 AVENUE DU MARECHAL FOCH - 77108", "stop_name": "AVENUE DES MARTYRS"}, "geometry": {"type": "Point", "coordinates": [2.576531116758481, 48.870957143989884]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ae6db4c526778ca70acb5476e43399ee7530812a", "fields": {"departement": "93", "stop_lat": 48.86323884270116, "code_postal": "93033", "stop_lon": 2.5755964572289742, "coord": [48.86323884270116, 2.5755964572289742], "stop_id": 3681649, "stop_desc": "AVENUE DU MARECHAL JOFFRE - 93033", "stop_name": "EGLISE DE GOURNAY"}, "geometry": {"type": "Point", "coordinates": [2.5755964572289742, 48.86323884270116]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1fc0af81030bc1ca96e9953737b11377363938c2", "fields": {"departement": "77", "stop_lat": 48.83812725871016, "code_postal": "77083", "stop_lon": 2.593140166185643, "coord": [48.83812725871016, 2.593140166185643], "stop_id": 3681636, "stop_desc": "RUE GALILEE - 77083", "stop_name": "BOIS DE L'ETANG-UNIVERSITE"}, "geometry": {"type": "Point", "coordinates": [2.593140166185643, 48.83812725871016]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4faea810713634557d37ced3565292b576fb97a8", "fields": {"departement": "77", "stop_lat": 48.858651100408146, "code_postal": "77083", "stop_lon": 2.582072448939666, "coord": [48.858651100408146, 2.582072448939666], "stop_id": 3681695, "stop_desc": "6 AVENUE JEAN JAURES - 77083", "stop_name": "PLACE CHURCHILL"}, "geometry": {"type": "Point", "coordinates": [2.582072448939666, 48.858651100408146]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ad340dc7e2b1d101d51edd7a8afc0784715a9ee6", "fields": {"departement": "77", "stop_lat": 48.85124413248589, "code_postal": "77083", "stop_lon": 2.5782923298882263, "coord": [48.85124413248589, 2.5782923298882263], "stop_id": 3681692, "stop_desc": "RUE ALBERT SCHWEITZER - 77083", "stop_name": "XAVIER BICHAT"}, "geometry": {"type": "Point", "coordinates": [2.5782923298882263, 48.85124413248589]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "562812fa63db5f50698c2af1faceed22a79c51c2", "fields": {"departement": "93", "stop_lat": 48.86156019562919, "code_postal": "93033", "stop_lon": 2.579062216292892, "coord": [48.86156019562919, 2.579062216292892], "stop_id": 3681650, "stop_desc": "AVENUE DE CHAMPS - 93033", "stop_name": "PLACE ROOSEVELT"}, "geometry": {"type": "Point", "coordinates": [2.579062216292892, 48.86156019562919]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ca6607c6d70d2f48eccca02aaa487acaa4f71db2", "fields": {"departement": "77", "stop_lat": 48.86620528888257, "code_postal": "77108", "stop_lon": 2.5752967704531002, "coord": [48.86620528888257, 2.5752967704531002], "stop_id": 3681618, "stop_desc": "1 RUE DE GOURNAY - 77108", "stop_name": "PONT DE GOURNAY"}, "geometry": {"type": "Point", "coordinates": [2.5752967704531002, 48.86620528888257]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b072efd03be8119ac7b97cc09094675e07223c70", "fields": {"departement": "77", "stop_lat": 48.8428596378912, "code_postal": "77337", "stop_lon": 2.6150181063879754, "coord": [48.8428596378912, 2.6150181063879754], "stop_id": 3681606, "stop_desc": "COURS DES ROCHES - 77337", "stop_name": "NOISIEL RER"}, "geometry": {"type": "Point", "coordinates": [2.6150181063879754, 48.8428596378912]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "af553c30a26682dbf79452da3a9ffecafd6e70a0", "fields": {"departement": "77", "stop_lat": 48.8448175465803, "code_postal": "77083", "stop_lon": 2.5829331251440686, "coord": [48.8448175465803, 2.5829331251440686], "stop_id": 3681659, "stop_desc": "FACE 1 AVENUE AMPERE - 77083", "stop_name": "AMPERE"}, "geometry": {"type": "Point", "coordinates": [2.5829331251440686, 48.8448175465803]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "97e1e554304238b2e0fadf50d93094b2995c97d6", "fields": {"departement": "77", "stop_lat": 48.854692679419884, "code_postal": "77083", "stop_lon": 2.5966676702967124, "coord": [48.854692679419884, 2.5966676702967124], "stop_id": 3681526, "stop_desc": "FACE 30 RUE DE CHELLES - 77083", "stop_name": "POINTE DE CHAMPS"}, "geometry": {"type": "Point", "coordinates": [2.5966676702967124, 48.854692679419884]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4a7ee6761114215d49b3afdf38cffeadb53bfd8f", "fields": {"departement": "77", "stop_lat": 48.845082316255095, "code_postal": "77468", "stop_lon": 2.653552993631835, "coord": [48.845082316255095, 2.653552993631835], "stop_id": 3681540, "stop_desc": "24 AVENUE DE LINGENFELD - 77468", "stop_name": "RIVES DE MAUBUEE"}, "geometry": {"type": "Point", "coordinates": [2.653552993631835, 48.845082316255095]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c4184af1aff4cfcbafe0870c06a842564f22aca7", "fields": {"departement": "77", "stop_lat": 48.850599319807685, "code_postal": "77468", "stop_lon": 2.657427091333727, "coord": [48.850599319807685, 2.657427091333727], "stop_id": 3681537, "stop_desc": "1 RUE DE PARIS - 77468", "stop_name": "LA MARE AUX MARCHAIS"}, "geometry": {"type": "Point", "coordinates": [2.657427091333727, 48.850599319807685]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6a5b8e28b8183598475007550fcac12b2e236a3b", "fields": {"departement": "77", "stop_lat": 48.84694657702187, "code_postal": "77468", "stop_lon": 2.6521072695310983, "coord": [48.84694657702187, 2.6521072695310983], "stop_id": 3681539, "stop_desc": "AVENUE DE LINGENFELD - 77468", "stop_name": "JACQUES PREVERT"}, "geometry": {"type": "Point", "coordinates": [2.6521072695310983, 48.84694657702187]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7f99cab59f62e8b424d682801ac4621ea310b5e7", "fields": {"departement": "77", "stop_lat": 48.850130645149385, "code_postal": "77468", "stop_lon": 2.633632666637883, "coord": [48.850130645149385, 2.633632666637883], "stop_id": 3681532, "stop_desc": "0 COURS DE L'ARCHE GUEDON - 77468", "stop_name": "CITE SCOLAIRE"}, "geometry": {"type": "Point", "coordinates": [2.633632666637883, 48.850130645149385]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b6218fab8bc497a04233b534e892ae56ddc2d819", "fields": {"departement": "77", "stop_lat": 48.84866889183998, "code_postal": "77468", "stop_lon": 2.656720651347793, "coord": [48.84866889183998, 2.656720651347793], "stop_id": 3681538, "stop_desc": "AV JACQUES PREVERT - 77468", "stop_name": "RUE DES EPINETTES"}, "geometry": {"type": "Point", "coordinates": [2.656720651347793, 48.84866889183998]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "70d4ccee0d2cc5b8d96bd44cc77505cbcaef2f5f", "fields": {"departement": "77", "stop_lat": 48.86893998350323, "code_postal": "77108", "stop_lon": 2.574028725109295, "coord": [48.86893998350323, 2.574028725109295], "stop_id": 3681510, "stop_desc": "1 AVENUE DU MARECHAL FOCH - 77108", "stop_name": "RUE DU PORT"}, "geometry": {"type": "Point", "coordinates": [2.574028725109295, 48.86893998350323]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c0731d8b705a4f974df636238b22357c136186c9", "fields": {"departement": "93", "stop_lat": 48.86156019562919, "code_postal": "93033", "stop_lon": 2.579062216292892, "coord": [48.86156019562919, 2.579062216292892], "stop_id": 3681521, "stop_desc": "AVENUE DE CHAMPS - 93033", "stop_name": "PLACE ROOSEVELT"}, "geometry": {"type": "Point", "coordinates": [2.579062216292892, 48.86156019562919]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f7041122a6024cc2e7dbcd9e0bb8d42d27c809ab", "fields": {"departement": "77", "stop_lat": 48.83906651295855, "code_postal": "77468", "stop_lon": 2.654714491802414, "coord": [48.83906651295855, 2.654714491802414], "stop_id": 3681543, "stop_desc": "AV JEAN MOULIN - 77468", "stop_name": "TORCY RER"}, "geometry": {"type": "Point", "coordinates": [2.654714491802414, 48.83906651295855]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2b660d10f45ce22a9992962eb3568bf6540e89c0", "fields": {"departement": "77", "stop_lat": 48.84937386327594, "code_postal": "77468", "stop_lon": 2.6414861033950703, "coord": [48.84937386327594, 2.6414861033950703], "stop_id": 3681534, "stop_desc": "103 RUE DE PARIS - 77468", "stop_name": "BEL AIR"}, "geometry": {"type": "Point", "coordinates": [2.6414861033950703, 48.84937386327594]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2553d76cc5660363dea4febc061cf84c0acd7c87", "fields": {"departement": "77", "stop_lat": 48.85526251949616, "code_postal": "77083", "stop_lon": 2.582219891686639, "coord": [48.85526251949616, 2.582219891686639], "stop_id": 3681565, "stop_desc": "BOULEVARD DE LA REPUBLIQUE - 77083", "stop_name": "ROND-POINT DES PYRAMIDES"}, "geometry": {"type": "Point", "coordinates": [2.582219891686639, 48.85526251949616]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "65ebc8ce3564c21713fed57dcf68d3e2e2551053", "fields": {"departement": "77", "stop_lat": 48.84340936949441, "code_postal": "77083", "stop_lon": 2.5815375525817212, "coord": [48.84340936949441, 2.5815375525817212], "stop_id": 3681582, "stop_desc": "BOULEVARD ARCHIMEDE - 77083", "stop_name": "NOISY-CHAMPS RER - DESCARTES."}, "geometry": {"type": "Point", "coordinates": [2.5815375525817212, 48.84340936949441]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1e294842bc0f638bf47cb470c4584b1ebba6e394", "fields": {"departement": "77", "stop_lat": 48.874339246385766, "code_postal": "77108", "stop_lon": 2.5839450063728906, "coord": [48.874339246385766, 2.5839450063728906], "stop_id": 3681548, "stop_desc": "ALLEE DES TRANSPORTS - 77108", "stop_name": "CHELLES - GOURNAY RER"}, "geometry": {"type": "Point", "coordinates": [2.5839450063728906, 48.874339246385766]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3012328de00176f25f4aaffbb47ec99da13ee56e", "fields": {"departement": "77", "stop_lat": 48.874339246385766, "code_postal": "77108", "stop_lon": 2.5839450063728906, "coord": [48.874339246385766, 2.5839450063728906], "stop_id": 3681549, "stop_desc": "ALLEE DES TRANSPORTS - 77108", "stop_name": "CHELLES - GOURNAY RER"}, "geometry": {"type": "Point", "coordinates": [2.5839450063728906, 48.874339246385766]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7eb606a8cc9e570a1230c6a01d33057b65f7f23c", "fields": {"departement": "77", "stop_lat": 48.870957143989884, "code_postal": "77108", "stop_lon": 2.576531116758481, "coord": [48.870957143989884, 2.576531116758481], "stop_id": 3681552, "stop_desc": "50 AVENUE DU MARECHAL FOCH - 77108", "stop_name": "AVENUE DES MARTYRS"}, "geometry": {"type": "Point", "coordinates": [2.576531116758481, 48.870957143989884]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5d96fb33790e9317cd897fb6b002b706961b1a27", "fields": {"departement": "93", "stop_lat": 48.85829250037943, "code_postal": "93033", "stop_lon": 2.581634896586026, "coord": [48.85829250037943, 2.581634896586026], "stop_id": 3681562, "stop_desc": "FACE 1 AVENUE DES PRINCES - 93033", "stop_name": "PLACE CHURCHILL"}, "geometry": {"type": "Point", "coordinates": [2.581634896586026, 48.85829250037943]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0f6fd98375781d7dd683b165530e6922c55bccb4", "fields": {"departement": "77", "stop_lat": 48.84992692242795, "code_postal": "77083", "stop_lon": 2.585122653047492, "coord": [48.84992692242795, 2.585122653047492], "stop_id": 3681572, "stop_desc": "AVENUE DES PYRAMIDES - 77083", "stop_name": "GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.585122653047492, 48.84992692242795]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "81798f50f88a22c4fd4e7057b7e4d86fbd9a4716", "fields": {"departement": "77", "stop_lat": 48.846898539842435, "code_postal": "77083", "stop_lon": 2.6096199134688556, "coord": [48.846898539842435, 2.6096199134688556], "stop_id": 3681602, "stop_desc": "COURS DU LUZARD - 77083", "stop_name": "GUY DE MAUPASSANT"}, "geometry": {"type": "Point", "coordinates": [2.6096199134688556, 48.846898539842435]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7a713b358d55405d0af69964ea0122e670ceef05", "fields": {"departement": "77", "stop_lat": 48.84694506342962, "code_postal": "77083", "stop_lon": 2.6089256577232245, "coord": [48.84694506342962, 2.6089256577232245], "stop_id": 3681603, "stop_desc": "COURS DU LUZARD - 77083", "stop_name": "GUY DE MAUPASSANT"}, "geometry": {"type": "Point", "coordinates": [2.6089256577232245, 48.84694506342962]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aee7f4b9f2644da251959aa28c0fed8990712d62", "fields": {"departement": "77", "stop_lat": 48.83866547075784, "code_postal": "77083", "stop_lon": 2.5851369286206594, "coord": [48.83866547075784, 2.5851369286206594], "stop_id": 3681587, "stop_desc": "AVENUE AMPERE - 77083", "stop_name": "NOBEL"}, "geometry": {"type": "Point", "coordinates": [2.5851369286206594, 48.83866547075784]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b0f5ad605d1d273929365b6bb0485c3e7140f241", "fields": {"departement": "92", "stop_lat": 48.81410730077502, "code_postal": "92046", "stop_lon": 2.287786140478486, "coord": [48.81410730077502, 2.287786140478486], "stop_id": 3682005, "stop_desc": "0 RPT HENRI BARBUSSE - 92046", "stop_name": "ROND-POINT HENRI BARBUSSE"}, "geometry": {"type": "Point", "coordinates": [2.287786140478486, 48.81410730077502]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5d6cb904b1cf3289e0f1aae29231167bee839d60", "fields": {"departement": "93", "stop_lat": 48.894382655105986, "code_postal": "93055", "stop_lon": 2.420111650565813, "coord": [48.894382655105986, 2.420111650565813], "stop_id": 3682022, "stop_desc": "176 AVENUE JEAN LOLIVE - 93055", "stop_name": "PIERRE BROSSOLETTE"}, "geometry": {"type": "Point", "coordinates": [2.420111650565813, 48.894382655105986]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "190f19bd464a1cfd81dfc0ff4c02f5e2f1e5bbe0", "fields": {"departement": "92", "stop_lat": 48.81151574234897, "code_postal": "92046", "stop_lon": 2.2808483900184924, "coord": [48.81151574234897, 2.2808483900184924], "stop_id": 3682004, "stop_desc": "64 BOULEVARD DU COLONEL FABIEN - 92046", "stop_name": "COLONEL FABIEN"}, "geometry": {"type": "Point", "coordinates": [2.2808483900184924, 48.81151574234897]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c49484a5b01c782356f31a6965512c58fa265aa2", "fields": {"departement": "93", "stop_lat": 48.89980456082147, "code_postal": "93053", "stop_lon": 2.449768760553388, "coord": [48.89980456082147, 2.449768760553388], "stop_id": 3682027, "stop_desc": "FACE 105 RUE DE PARIS - 93053", "stop_name": "RUE DE PARIS N0 105"}, "geometry": {"type": "Point", "coordinates": [2.449768760553388, 48.89980456082147]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bcbfbf3f86a9d8583882a68a72978549d8e7c2c5", "fields": {"departement": "95", "stop_lat": 49.00574770850082, "code_postal": "95527", "stop_lon": 2.504636898413615, "coord": [49.00574770850082, 2.504636898413615], "stop_id": 3678820, "stop_desc": "0 RTE DE L'ARPENTEUR - 95527", "stop_name": "ROUTE DE L'ARPENTEUR-ADP"}, "geometry": {"type": "Point", "coordinates": [2.504636898413615, 49.00574770850082]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b59d0fda2b5928ac5642737691cac3c679f0b14e", "fields": {"departement": "95", "stop_lat": 49.00574770850082, "code_postal": "95527", "stop_lon": 2.504636898413615, "coord": [49.00574770850082, 2.504636898413615], "stop_id": 3678819, "stop_desc": "ROUTE DE L'ARPENTEUR - 95527", "stop_name": "ROUTE DE L'ARPENTEUR-ADP"}, "geometry": {"type": "Point", "coordinates": [2.504636898413615, 49.00574770850082]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "df5b545ded7adef19cebdf3989f366380312e259", "fields": {"departement": "77", "stop_lat": 48.81538349489591, "code_postal": "77146", "stop_lon": 2.637544297641163, "coord": [48.81538349489591, 2.637544297641163], "stop_id": 3681423, "stop_desc": "R AMBROISE CROIZAT - 77146", "stop_name": "COURS DU BUISSON"}, "geometry": {"type": "Point", "coordinates": [2.637544297641163, 48.81538349489591]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "82ee865457efe5728a50dac3ba2acada39317fa0", "fields": {"departement": "95", "stop_lat": 49.011465219871155, "code_postal": "95527", "stop_lon": 2.51552950644849, "coord": [49.011465219871155, 2.51552950644849], "stop_id": 3678816, "stop_desc": "ROUTE DE L'ARPENTEUR - 95527", "stop_name": "ENTRETIEN NORD"}, "geometry": {"type": "Point", "coordinates": [2.51552950644849, 49.011465219871155]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fb119f3a7fedcfb7415f8e96ebcf82eb1028c342", "fields": {"departement": "77", "stop_lat": 48.81154816455081, "code_postal": "77169", "stop_lon": 2.6219133055955757, "coord": [48.81154816455081, 2.6219133055955757], "stop_id": 3681413, "stop_desc": "R D'EMERY - 77169", "stop_name": "MAIRIE D'EMERAINVILLE"}, "geometry": {"type": "Point", "coordinates": [2.6219133055955757, 48.81154816455081]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3ecebcb38682b9694ff06e3c3e33a4e76e71d17b", "fields": {"departement": "95", "stop_lat": 49.00136352567245, "code_postal": "95527", "stop_lon": 2.5278554104354356, "coord": [49.00136352567245, 2.5278554104354356], "stop_id": 3678804, "stop_desc": "RUE DES 2 CEDRES - 95527", "stop_name": "LES DEUX CEDRES"}, "geometry": {"type": "Point", "coordinates": [2.5278554104354356, 49.00136352567245]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2c2bfb23f6e3b63a2440588f7bfd238e87fdef25", "fields": {"departement": "77", "stop_lat": 48.820311160214764, "code_postal": "77146", "stop_lon": 2.6436703921936417, "coord": [48.820311160214764, 2.6436703921936417], "stop_id": 3681427, "stop_desc": "R DES VIEILLES VIGNES - 77146", "stop_name": "CARAVELLE"}, "geometry": {"type": "Point", "coordinates": [2.6436703921936417, 48.820311160214764]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0f622dcbe23ae3744b04e8f86f65f2629bdf90df", "fields": {"departement": "93", "stop_lat": 48.99438721579055, "code_postal": "93073", "stop_lon": 2.523978589947988, "coord": [48.99438721579055, 2.523978589947988], "stop_id": 3678801, "stop_desc": "RUE DES BUISSONS - 93073", "stop_name": "MARGUILLIERS."}, "geometry": {"type": "Point", "coordinates": [2.523978589947988, 48.99438721579055]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2bb37ad2e0a6ac8f754e205062196d94e70a5b4d", "fields": {"departement": "95", "stop_lat": 48.998886851137584, "code_postal": "95527", "stop_lon": 2.525606434259353, "coord": [48.998886851137584, 2.525606434259353], "stop_id": 3678803, "stop_desc": "RUE DES 2 CEDRES - 95527", "stop_name": "CARGO CENTRE"}, "geometry": {"type": "Point", "coordinates": [2.525606434259353, 48.998886851137584]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e5cf816be16fe1746cee14657fae4f1865170271", "fields": {"departement": "77", "stop_lat": 48.81710425442622, "code_postal": "77146", "stop_lon": 2.628667031677111, "coord": [48.81710425442622, 2.628667031677111], "stop_id": 3681417, "stop_desc": "BD DE BEAUBOURG - 77146", "stop_name": "BEAUBOURG"}, "geometry": {"type": "Point", "coordinates": [2.628667031677111, 48.81710425442622]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "28de36a794b0df862eec2ce39523d7d591a5a3e9", "fields": {"departement": "77", "stop_lat": 48.826493607422115, "code_postal": "77146", "stop_lon": 2.637050481519303, "coord": [48.826493607422115, 2.637050481519303], "stop_id": 3681428, "stop_desc": "ALLEE DU 1ER MAI - 77146", "stop_name": "CROISSY-BEAUBOURG - Z.I. PARIEST"}, "geometry": {"type": "Point", "coordinates": [2.637050481519303, 48.826493607422115]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "92d2f56e1c126643b4651e130fb86abb61a223be", "fields": {"departement": "77", "stop_lat": 48.851728798080345, "code_postal": "77468", "stop_lon": 2.6585235781166325, "coord": [48.851728798080345, 2.6585235781166325], "stop_id": 3681459, "stop_desc": "AV DU PRESIDENT FRANCOIS MITTERRAND - 77468", "stop_name": "LES BONDROLLES"}, "geometry": {"type": "Point", "coordinates": [2.6585235781166325, 48.851728798080345]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1a3cae18720aa2252d526050181ce48c3d7f845a", "fields": {"departement": "77", "stop_lat": 48.85153169969138, "code_postal": "77468", "stop_lon": 2.658290836294766, "coord": [48.85153169969138, 2.658290836294766], "stop_id": 3681460, "stop_desc": "AV DU PRESIDENT FRANCOIS MITTERRAND - 77468", "stop_name": "LES BONDROLLES"}, "geometry": {"type": "Point", "coordinates": [2.658290836294766, 48.85153169969138]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b7ffb191d12e8937df648c8b15dc4a9f72802aa6", "fields": {"departement": "77", "stop_lat": 48.84526195661666, "code_postal": "77468", "stop_lon": 2.653594940647414, "coord": [48.84526195661666, 2.653594940647414], "stop_id": 3681453, "stop_desc": "FACE 28 AVENUE DE LINGENFELD - 77468", "stop_name": "RIVES DE MAUBUEE"}, "geometry": {"type": "Point", "coordinates": [2.653594940647414, 48.84526195661666]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "535e888f65d37a9583a2bd2395e485b410d76ceb", "fields": {"departement": "77", "stop_lat": 48.84817571549336, "code_postal": "77468", "stop_lon": 2.6562954559929475, "coord": [48.84817571549336, 2.6562954559929475], "stop_id": 3681457, "stop_desc": "AVENUE JACQUES PREVERT - 77468", "stop_name": "RUE DES EPINETTES"}, "geometry": {"type": "Point", "coordinates": [2.6562954559929475, 48.84817571549336]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "40ed30ca302022a55be2b6e8ad2da2b9784eaff2", "fields": {"departement": "77", "stop_lat": 48.82275544709444, "code_postal": "77146", "stop_lon": 2.640309215783841, "coord": [48.82275544709444, 2.640309215783841], "stop_id": 3681435, "stop_desc": "BD COURCERIN - 77146", "stop_name": "TABLE D'ORIENTATION"}, "geometry": {"type": "Point", "coordinates": [2.640309215783841, 48.82275544709444]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "da8a9f0d79f92e692ba6bbbc641659eb7d46cdcb", "fields": {"departement": "77", "stop_lat": 48.839094475647336, "code_postal": "77468", "stop_lon": 2.6576964831372134, "coord": [48.839094475647336, 2.6576964831372134], "stop_id": 3681449, "stop_desc": "AVENUE JEAN MOULIN - 77468", "stop_name": "CITES UNIES"}, "geometry": {"type": "Point", "coordinates": [2.6576964831372134, 48.839094475647336]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0bf08f7e115b7293d054706ffd575d1c0cff9e05", "fields": {"departement": "77", "stop_lat": 48.82986859057874, "code_postal": "77146", "stop_lon": 2.6492537830343816, "coord": [48.82986859057874, 2.6492537830343816], "stop_id": 3681440, "stop_desc": "ALL DES PLANTES - 77146", "stop_name": "LES PLATANES"}, "geometry": {"type": "Point", "coordinates": [2.6492537830343816, 48.82986859057874]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cef03bc732e4800663f0e5883a71fce7a404fb83", "fields": {"departement": "77", "stop_lat": 48.827328020939134, "code_postal": "77146", "stop_lon": 2.644664700535528, "coord": [48.827328020939134, 2.644664700535528], "stop_id": 3681436, "stop_desc": "R DU CHENIL - 77146", "stop_name": "HENRI AUBRY"}, "geometry": {"type": "Point", "coordinates": [2.644664700535528, 48.827328020939134]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ae1a44f9925997c793958d8ef1dfc51e107390e7", "fields": {"departement": "93", "stop_lat": 48.916863886008755, "code_postal": "93046", "stop_lon": 2.5320170898564878, "coord": [48.916863886008755, 2.5320170898564878], "stop_id": 3682048, "stop_desc": "FACE 69 AVENUE DU CONSUL GENERAL NORDLING - 93046", "stop_name": "CHARLES DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.5320170898564878, 48.916863886008755]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ea8c9f62c796c43be5a940980626c93f6b1d1911", "fields": {"departement": "93", "stop_lat": 48.939829834811654, "code_postal": "93071", "stop_lon": 2.5236726996293455, "coord": [48.939829834811654, 2.5236726996293455], "stop_id": 3682064, "stop_desc": "32 RUE DU GENERAL LECLERC - 93071", "stop_name": "CIMETIERE DE SEVRAN"}, "geometry": {"type": "Point", "coordinates": [2.5236726996293455, 48.939829834811654]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8a5309e95f9decfcf78cab86c6fb9b86f20d1792", "fields": {"departement": "93", "stop_lat": 48.922515362987646, "code_postal": "93046", "stop_lon": 2.543507459471364, "coord": [48.922515362987646, 2.543507459471364], "stop_id": 3682052, "stop_desc": "13-15 PLACE DE LA LIBERATION - 93046", "stop_name": "PLACE DE LA LIBERATION"}, "geometry": {"type": "Point", "coordinates": [2.543507459471364, 48.922515362987646]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "323721f05ae0ad909f2d5f30e18d4519399e7b37", "fields": {"departement": "93", "stop_lat": 48.906169876941505, "code_postal": "93010", "stop_lon": 2.4809479623042554, "coord": [48.906169876941505, 2.4809479623042554], "stop_id": 3682035, "stop_desc": "111 AVENUE GALLIENI - 93010", "stop_name": "AUGUSTE POLISSARD"}, "geometry": {"type": "Point", "coordinates": [2.4809479623042554, 48.906169876941505]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a416cb47c7bf43cc0f64186c9257535269812fe2", "fields": {"departement": "93", "stop_lat": 48.92962844508479, "code_postal": "93046", "stop_lon": 2.540944311254965, "coord": [48.92962844508479, 2.540944311254965], "stop_id": 3682055, "stop_desc": "68 AVENUE JEAN-JACQUES ROUSSEAU - 93046", "stop_name": "MAUROUARD"}, "geometry": {"type": "Point", "coordinates": [2.540944311254965, 48.92962844508479]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7531e8532c3b879fdb0dc5500e7b130ee8997426", "fields": {"departement": "91", "stop_lat": 48.74277444859887, "code_postal": "91645", "stop_lon": 2.2626712331596037, "coord": [48.74277444859887, 2.2626712331596037], "stop_id": 3764120, "stop_desc": "6 AVENUE GABRIEL PERI - 91645", "stop_name": "GRANDS CHENES"}, "geometry": {"type": "Point", "coordinates": [2.2626712331596037, 48.74277444859887]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "40a3c9ab6519fed3a713ec8cf4881260b82e78e2", "fields": {"departement": "91", "stop_lat": 48.74958399229917, "code_postal": "91645", "stop_lon": 2.271944840017176, "coord": [48.74958399229917, 2.271944840017176], "stop_id": 3764125, "stop_desc": "BOULEVARD DU MARECHAL FOCH - 91645", "stop_name": "LE CLOS"}, "geometry": {"type": "Point", "coordinates": [2.271944840017176, 48.74958399229917]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "14d99f33b8eb1f5e6d86be99c977fbf17391f4cb", "fields": {"departement": "92", "stop_lat": 48.756812846438386, "code_postal": "92002", "stop_lon": 2.276394571683409, "coord": [48.756812846438386, 2.276394571683409], "stop_id": 3764128, "stop_desc": "101 AVENUE D'ESTIENNE D'ORVES - 92002", "stop_name": "RUE DES GRILLONS"}, "geometry": {"type": "Point", "coordinates": [2.276394571683409, 48.756812846438386]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e2a44f5d3c33306760dcd26275fbcb8303979b7d", "fields": {"departement": "92", "stop_lat": 48.75668946180795, "code_postal": "92002", "stop_lon": 2.2813836841328583, "coord": [48.75668946180795, 2.2813836841328583], "stop_id": 3764132, "stop_desc": "170 AVENUE DU BOIS DE VERRIERES - 92002", "stop_name": "MARCEL MAILLARD"}, "geometry": {"type": "Point", "coordinates": [2.2813836841328583, 48.75668946180795]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "646a675ffb9adb4a0049a5c06e492503d565ac4c", "fields": {"departement": "92", "stop_lat": 48.75536171006039, "code_postal": "92002", "stop_lon": 2.286972068839241, "coord": [48.75536171006039, 2.286972068839241], "stop_id": 3764133, "stop_desc": "123 AVENUE DU BOIS DE VERRIERES - 92002", "stop_name": "JULIEN PERIN"}, "geometry": {"type": "Point", "coordinates": [2.286972068839241, 48.75536171006039]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fdd9f963ac41301e0af452ee0b9dcca74f1ca5ca", "fields": {"departement": "92", "stop_lat": 48.7556040482806, "code_postal": "92002", "stop_lon": 2.2861698100143, "coord": [48.7556040482806, 2.2861698100143], "stop_id": 3764134, "stop_desc": "FACE 133 AVENUE DU BOIS DE VERRIERES - 92002", "stop_name": "JULIEN PERIN"}, "geometry": {"type": "Point", "coordinates": [2.2861698100143, 48.7556040482806]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b9372c5d9067b81c23f081e59968c7791a493fd6", "fields": {"departement": "91", "stop_lat": 48.75594049814434, "code_postal": "91645", "stop_lon": 2.2754304389224944, "coord": [48.75594049814434, 2.2754304389224944], "stop_id": 3764141, "stop_desc": "4 BOULEVARD DU MARECHAL JUIN - 91645", "stop_name": "RUE DES GRILLONS"}, "geometry": {"type": "Point", "coordinates": [2.2754304389224944, 48.75594049814434]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c92b8ec1cf9f1ef26b4d37258c38c1ad41680891", "fields": {"departement": "75", "stop_lat": 48.83054700481861, "code_postal": "75114", "stop_lon": 2.3335518731767158, "coord": [48.83054700481861, 2.3335518731767158], "stop_id": 3764436, "stop_desc": "12-14 AVENUE RENE COTY - 75114", "stop_name": "DAREAU-RENE COTY"}, "geometry": {"type": "Point", "coordinates": [2.3335518731767158, 48.83054700481861]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fda492a5f5b5a4c8dcd3a60ee4cc925e76e1d244", "fields": {"departement": "75", "stop_lat": 48.83467224198512, "code_postal": "75114", "stop_lon": 2.3316455706989045, "coord": [48.83467224198512, 2.3316455706989045], "stop_id": 3764438, "stop_desc": "RUE FROIDEVAUX - 75114", "stop_name": "DENFERT-ROCHEREAU-FROIDEVAUX"}, "geometry": {"type": "Point", "coordinates": [2.3316455706989045, 48.83467224198512]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "403586601f887a7e51cb5330c4f7d8866bc3d2b0", "fields": {"departement": "75", "stop_lat": 48.8342228158404, "code_postal": "75114", "stop_lon": 2.3307334660800443, "coord": [48.8342228158404, 2.3307334660800443], "stop_id": 3764439, "stop_desc": "12 PLACE DENFERT ROCHEREAU - 75114", "stop_name": "DENFERT-ROCHEREAU-FROIDEVAUX"}, "geometry": {"type": "Point", "coordinates": [2.3307334660800443, 48.8342228158404]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4ad1cf41f25956c0a674f37cdc3ef91c806db3c8", "fields": {"departement": "75", "stop_lat": 48.83727740669006, "code_postal": "75114", "stop_lon": 2.3192147683245743, "coord": [48.83727740669006, 2.3192147683245743], "stop_id": 3764445, "stop_desc": "18 RUE VERCINGETORIX - 75114", "stop_name": "VERCINGETORIX"}, "geometry": {"type": "Point", "coordinates": [2.3192147683245743, 48.83727740669006]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d5a6680a32a508cbd541e1b9742581bd91af917e", "fields": {"departement": "75", "stop_lat": 48.840089748415444, "code_postal": "75115", "stop_lon": 2.3147205875575416, "coord": [48.840089748415444, 2.3147205875575416], "stop_id": 3764448, "stop_desc": "4 RUE DE L'ARMORIQUE - 75115", "stop_name": "ARMORIQUE-PASTEUR"}, "geometry": {"type": "Point", "coordinates": [2.3147205875575416, 48.840089748415444]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9b7be2fdd6de2fae17d4f8088dda221ee19f2f57", "fields": {"departement": "75", "stop_lat": 48.83869653291636, "code_postal": "75115", "stop_lon": 2.31397234555881, "coord": [48.83869653291636, 2.31397234555881], "stop_id": 3764449, "stop_desc": "24-26 RUE DU COTENTIN - 75115", "stop_name": "COTENTIN-MONTPARNASSE 3"}, "geometry": {"type": "Point", "coordinates": [2.31397234555881, 48.83869653291636]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fc42b1696f6ec0fef49ecc61d093933f14c81d3b", "fields": {"departement": "75", "stop_lat": 48.83711195932558, "code_postal": "75115", "stop_lon": 2.302618158548076, "coord": [48.83711195932558, 2.302618158548076], "stop_id": 3764455, "stop_desc": "31 RUE D'ALLERAY - 75115", "stop_name": "ALLERAY-LA QUINTINIE"}, "geometry": {"type": "Point", "coordinates": [2.302618158548076, 48.83711195932558]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "143e2fb62cd7b69a171ba5136b5cb1c7befc1924", "fields": {"departement": "75", "stop_lat": 48.84373438260969, "code_postal": "75115", "stop_lon": 2.298092984850313, "coord": [48.84373438260969, 2.298092984850313], "stop_id": 3764459, "stop_desc": "45 RUE MADEMOISELLE - 75115", "stop_name": "PECLET"}, "geometry": {"type": "Point", "coordinates": [2.298092984850313, 48.84373438260969]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6dabe169b57d7a89d8464c0ab6ec557dda0d1354", "fields": {"departement": "75", "stop_lat": 48.84430711895828, "code_postal": "75115", "stop_lon": 2.291202413759144, "coord": [48.84430711895828, 2.291202413759144], "stop_id": 3764464, "stop_desc": "FACE 69 RUE DES ENTREPRENEURS - 75115", "stop_name": "VIOLET"}, "geometry": {"type": "Point", "coordinates": [2.291202413759144, 48.84430711895828]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1cc90d326a6c6a7944f824f33411e01f745f051e", "fields": {"departement": "75", "stop_lat": 48.845954288850024, "code_postal": "75115", "stop_lon": 2.276616814123213, "coord": [48.845954288850024, 2.276616814123213], "stop_id": 3764469, "stop_desc": "QUAI ANDRE CITROEN - 75115", "stop_name": "JAVEL"}, "geometry": {"type": "Point", "coordinates": [2.276616814123213, 48.845954288850024]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ad7f00d9214c5224819e7974216156cb04fa45c9", "fields": {"departement": "75", "stop_lat": 48.84255720667155, "code_postal": "75115", "stop_lon": 2.277015660754055, "coord": [48.84255720667155, 2.277015660754055], "stop_id": 3764471, "stop_desc": "30 RUE CAUCHY - 75115", "stop_name": "CAUCHY"}, "geometry": {"type": "Point", "coordinates": [2.277015660754055, 48.84255720667155]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9f30b96f0f3bb070a46536a7232b966e93148875", "fields": {"departement": "75", "stop_lat": 48.837281719828525, "code_postal": "75115", "stop_lon": 2.2774302365424126, "coord": [48.837281719828525, 2.2774302365424126], "stop_id": 3764476, "stop_desc": "241-243 RUE SAINT CHARLES - 75115", "stop_name": "PLACE BALARD"}, "geometry": {"type": "Point", "coordinates": [2.2774302365424126, 48.837281719828525]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1977a7d454cd482d9f5f10cc038841bd0532d270", "fields": {"departement": "75", "stop_lat": 48.83984048515997, "code_postal": "75115", "stop_lon": 2.2722941653733795, "coord": [48.83984048515997, 2.2722941653733795], "stop_id": 3764480, "stop_desc": "16 RUE LEBLANC - 75115", "stop_name": "HOPITAL EUROPEEN GEORGES POMPIDOU"}, "geometry": {"type": "Point", "coordinates": [2.2722941653733795, 48.83984048515997]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "67e0bb68715c05e7b3ec0e093835f4c0dad95b15", "fields": {"departement": "75", "stop_lat": 48.83799070116469, "code_postal": "75115", "stop_lon": 2.2754007513995216, "coord": [48.83799070116469, 2.2754007513995216], "stop_id": 3764481, "stop_desc": "56 RUE LEBLANC - 75115", "stop_name": "LEBLANC - DELBARRE"}, "geometry": {"type": "Point", "coordinates": [2.2754007513995216, 48.83799070116469]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "49f4f658620580c357b352e5a79d49bd80e9fada", "fields": {"departement": "75", "stop_lat": 48.87910619950014, "code_postal": "75109", "stop_lon": 2.339993510732316, "coord": [48.87910619950014, 2.339993510732316], "stop_id": 3764497, "stop_desc": "44 RUE DES MARTYRS - 75109", "stop_name": "NAVARIN"}, "geometry": {"type": "Point", "coordinates": [2.339993510732316, 48.87910619950014]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "03118d742466b5e8c1e45342d8412c9c10b91b08", "fields": {"departement": "75", "stop_lat": 48.87641002033888, "code_postal": "75109", "stop_lon": 2.339802613958686, "coord": [48.87641002033888, 2.339802613958686], "stop_id": 3764501, "stop_desc": "66BIS-68 RUE DU FAUBOURG MONTMARTRE - 75109", "stop_name": "CARREFOUR DE CHATEAUDUN"}, "geometry": {"type": "Point", "coordinates": [2.339802613958686, 48.87641002033888]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6c438e9423f51a1160ce15e84e1e55fbbffe91a9", "fields": {"departement": "75", "stop_lat": 48.838158000417195, "code_postal": "75113", "stop_lon": 2.3564930422658135, "coord": [48.838158000417195, 2.3564930422658135], "stop_id": 3764522, "stop_desc": "45-47 BOULEVARD SAINT-MARCEL - 75113", "stop_name": "SAINT-MARCEL - JEANNE D'ARC"}, "geometry": {"type": "Point", "coordinates": [2.3564930422658135, 48.838158000417195]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4dac0805333b61df1de62407d65bf14b04db69c0", "fields": {"departement": "75", "stop_lat": 48.83633304434552, "code_postal": "75113", "stop_lon": 2.359256166042175, "coord": [48.83633304434552, 2.359256166042175], "stop_id": 3764524, "stop_desc": "113 BOULEVARD DE L'HOPITAL - 75113", "stop_name": "JENNER - JEANNE D'ARC"}, "geometry": {"type": "Point", "coordinates": [2.359256166042175, 48.83633304434552]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e32fa1772baa452f7edba3e592b1656ce6dbdcc4", "fields": {"departement": "75", "stop_lat": 48.82027398784946, "code_postal": "75114", "stop_lon": 2.343801363217265, "coord": [48.82027398784946, 2.343801363217265], "stop_id": 3764538, "stop_desc": "96 RUE DE L' AMIRAL MOUCHEZ - 75114", "stop_name": "STADE CHARLETY-PORTE DE GENTILLY"}, "geometry": {"type": "Point", "coordinates": [2.343801363217265, 48.82027398784946]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7e5915ff4831c79fe2e6ca6cb2cfd5da1e2ac533", "fields": {"departement": "75", "stop_lat": 48.85154835515592, "code_postal": "75104", "stop_lon": 2.362149800614725, "coord": [48.85154835515592, 2.362149800614725], "stop_id": 3764545, "stop_desc": "2 BIS QUAI DES CELESTINS - 75104", "stop_name": "SULLY-MORLAND"}, "geometry": {"type": "Point", "coordinates": [2.362149800614725, 48.85154835515592]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1766718c2a5414d838f891a926168a9cbda382ab", "fields": {"departement": "75", "stop_lat": 48.85403888472589, "code_postal": "75104", "stop_lon": 2.356771321817855, "coord": [48.85403888472589, 2.356771321817855], "stop_id": 3764546, "stop_desc": "QUAI DE L'HOTEL DE VILLE - 75104", "stop_name": "PONT MARIE"}, "geometry": {"type": "Point", "coordinates": [2.356771321817855, 48.85403888472589]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "59d685805712b9004c52736a1692479a6d8f673a", "fields": {"departement": "75", "stop_lat": 48.868303315676926, "code_postal": "75102", "stop_lon": 2.3436439506432523, "coord": [48.868303315676926, 2.3436439506432523], "stop_id": 3764551, "stop_desc": "134-136 RUE MONTMARTRE - 75102", "stop_name": "REAUMUR - MONTMARTRE"}, "geometry": {"type": "Point", "coordinates": [2.3436439506432523, 48.868303315676926]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9801dde5893be6555318d2a37df0dda0ea4fedc9", "fields": {"departement": "75", "stop_lat": 48.87053221363609, "code_postal": "75102", "stop_lon": 2.3428949185469965, "coord": [48.87053221363609, 2.3428949185469965], "stop_id": 3764552, "stop_desc": "166-168 RUE MONTMARTRE - 75102", "stop_name": "GRANDS BOULEVARDS"}, "geometry": {"type": "Point", "coordinates": [2.3428949185469965, 48.87053221363609]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dc01c00fbf0170f65abcefaba6702284a2a5c789", "fields": {"departement": "75", "stop_lat": 48.88117158269079, "code_postal": "75110", "stop_lon": 2.357490118558755, "coord": [48.88117158269079, 2.357490118558755], "stop_id": 3764604, "stop_desc": "PISTE GARE ROUTIERE - 75110", "stop_name": "GARE DU NORD"}, "geometry": {"type": "Point", "coordinates": [2.357490118558755, 48.88117158269079]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c5e26bdb08422d294dcccb83fa44283e0e4262dd", "fields": {"departement": "75", "stop_lat": 48.86287390987719, "code_postal": "75103", "stop_lon": 2.354213758372903, "coord": [48.86287390987719, 2.354213758372903], "stop_id": 3764613, "stop_desc": "59 RUE BEAUBOURG - 75103", "stop_name": "GRENIER SAINT-LAZARE - QUARTIER DE L'HORLOGE"}, "geometry": {"type": "Point", "coordinates": [2.354213758372903, 48.86287390987719]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6d0972cff64248598622aad330088da321b9a4e5", "fields": {"departement": "75", "stop_lat": 48.855415256092286, "code_postal": "75101", "stop_lon": 2.3458079091124455, "coord": [48.855415256092286, 2.3458079091124455], "stop_id": 3764618, "stop_desc": "FACE 1 BOULEVARD DU PALAIS - 75101", "stop_name": "CITE - PALAIS DE JUSTICE"}, "geometry": {"type": "Point", "coordinates": [2.3458079091124455, 48.855415256092286]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2c3a1812978098531228e14e18b042feb6d58343", "fields": {"departement": "75", "stop_lat": 48.85247650155603, "code_postal": "75106", "stop_lon": 2.3435194294224857, "coord": [48.85247650155603, 2.3435194294224857], "stop_id": 3764619, "stop_desc": "10 BOULEVARD SAINT-MICHEL - 75106", "stop_name": "SAINT-MICHEL - SAINT-GERMAIN"}, "geometry": {"type": "Point", "coordinates": [2.3435194294224857, 48.85247650155603]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "09915ccefef7161784e1067c6dc38036a5250017", "fields": {"departement": "75", "stop_lat": 48.84028960403854, "code_postal": "75106", "stop_lon": 2.336492195010898, "coord": [48.84028960403854, 2.336492195010898], "stop_id": 3764624, "stop_desc": "18 AVENUE DE L'OBSERVATOIRE - 75106", "stop_name": "OBSERVATOIRE - PORT ROYAL"}, "geometry": {"type": "Point", "coordinates": [2.336492195010898, 48.84028960403854]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dc819582749ec225b225bd9e62660ce07ef354cb", "fields": {"departement": "75", "stop_lat": 48.82688858812294, "code_postal": "75114", "stop_lon": 2.3262695521776147, "coord": [48.82688858812294, 2.3262695521776147], "stop_id": 3764633, "stop_desc": "96 AVENUE DU GENERAL LECLERC - 75114", "stop_name": "ALESIA - GENERAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.3262695521776147, 48.82688858812294]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "73aefd9d89da2595f897661e6b4f654baed2b3ed", "fields": {"departement": "75", "stop_lat": 48.82368905723361, "code_postal": "75114", "stop_lon": 2.327127751485623, "coord": [48.82368905723361, 2.327127751485623], "stop_id": 3764635, "stop_desc": "72 RUE DU PERE CORENTIN - 75114", "stop_name": "PORTE D'ORLEANS"}, "geometry": {"type": "Point", "coordinates": [2.327127751485623, 48.82368905723361]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "444950554db78c2308352946ad8dde5947438bf1", "fields": {"departement": "75", "stop_lat": 48.850067906070635, "code_postal": "75105", "stop_lon": 2.3425522330838273, "coord": [48.850067906070635, 2.3425522330838273], "stop_id": 3764642, "stop_desc": "29-31 BOULEVARD SAINT-MICHEL - 75105", "stop_name": "LES ECOLES"}, "geometry": {"type": "Point", "coordinates": [2.3425522330838273, 48.850067906070635]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "309418e427ccc0d130670d79eef8e75686e6808f", "fields": {"departement": "75", "stop_lat": 48.863997699201235, "code_postal": "75103", "stop_lon": 2.351407984903802, "coord": [48.863997699201235, 2.351407984903802], "stop_id": 3764646, "stop_desc": "66 BOULEVARD DE SEBASTOPOL - 75103", "stop_name": "TURBIGO - ETIENNE MARCEL"}, "geometry": {"type": "Point", "coordinates": [2.351407984903802, 48.863997699201235]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8ef7765806d52921ccbd0bb629fe023f07cc3b8e", "fields": {"departement": "75", "stop_lat": 48.87617468079017, "code_postal": "75110", "stop_lon": 2.3573655408708234, "coord": [48.87617468079017, 2.3573655408708234], "stop_id": 3764653, "stop_desc": "15-17 RUE DU 8 MAI 1945 - 75110", "stop_name": "GARE DE L'EST"}, "geometry": {"type": "Point", "coordinates": [2.3573655408708234, 48.87617468079017]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fb993d9c5313274dc8256d69d98425debd613536", "fields": {"departement": "75", "stop_lat": 48.868778444624105, "code_postal": "75110", "stop_lon": 2.355332800316335, "coord": [48.868778444624105, 2.355332800316335], "stop_id": 3764656, "stop_desc": "FACE 326 RUE SAINT-MARTIN - 75110", "stop_name": "PORTE SAINT-MARTIN"}, "geometry": {"type": "Point", "coordinates": [2.355332800316335, 48.868778444624105]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fe57442f8459707d6c09f72d685cace5dbcf50c5", "fields": {"departement": "75", "stop_lat": 48.8597465272257, "code_postal": "75104", "stop_lon": 2.35249649876749, "coord": [48.8597465272257, 2.35249649876749], "stop_id": 3764659, "stop_desc": "FACE 22 RUE DU RENARD - 75104", "stop_name": "CENTRE GEORGES POMPIDOU"}, "geometry": {"type": "Point", "coordinates": [2.35249649876749, 48.8597465272257]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "610197e58f4047aa6c0229adc495da0c65dc9eca", "fields": {"departement": "75", "stop_lat": 48.85751789600976, "code_postal": "75104", "stop_lon": 2.3504119314423426, "coord": [48.85751789600976, 2.3504119314423426], "stop_id": 3764660, "stop_desc": "2 RUE DE LA COUTELLERIE - 75104", "stop_name": "HOTEL DE VILLE"}, "geometry": {"type": "Point", "coordinates": [2.3504119314423426, 48.85751789600976]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a077d49eb91671b470a0a4614524e034b2fb8baf", "fields": {"departement": "75", "stop_lat": 48.83736862961524, "code_postal": "75114", "stop_lon": 2.3351171175760603, "coord": [48.83736862961524, 2.3351171175760603], "stop_id": 3764669, "stop_desc": "76 AVENUE DENFERT ROCHEREAU - 75114", "stop_name": "HOPITAL SAINT-VINCENT DE PAUL"}, "geometry": {"type": "Point", "coordinates": [2.3351171175760603, 48.83736862961524]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7cc3cdf1bad7cded9a940564bedc81856c0abfcf", "fields": {"departement": "75", "stop_lat": 48.83487001531102, "code_postal": "75114", "stop_lon": 2.3327347010432598, "coord": [48.83487001531102, 2.3327347010432598], "stop_id": 3764670, "stop_desc": "108-110 AVENUE DENFERT-ROCHEREAU - 75114", "stop_name": "DENFERT-ROCHEREAU - ARAGO"}, "geometry": {"type": "Point", "coordinates": [2.3327347010432598, 48.83487001531102]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "492f59ac9160e741997de5de6a26726aac1de8b3", "fields": {"departement": "75", "stop_lat": 48.82368905723361, "code_postal": "75114", "stop_lon": 2.327127751485623, "coord": [48.82368905723361, 2.327127751485623], "stop_id": 3764695, "stop_desc": "72 RUE DU PERE CORENTIN - 75114", "stop_name": "PORTE D'ORLEANS"}, "geometry": {"type": "Point", "coordinates": [2.327127751485623, 48.82368905723361]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9a5c459fca742d1bf45a791404c0a95f06640917", "fields": {"departement": "75", "stop_lat": 48.837951981216136, "code_postal": "75114", "stop_lon": 2.322945100085369, "coord": [48.837951981216136, 2.322945100085369], "stop_id": 3764706, "stop_desc": "85-87 AVENUE DU MAINE - 75114", "stop_name": "GAITE"}, "geometry": {"type": "Point", "coordinates": [2.322945100085369, 48.837951981216136]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7d32a4a1d78fac708986bb1dbf8d7906e3241604", "fields": {"departement": "75", "stop_lat": 48.838814669136, "code_postal": "75114", "stop_lon": 2.321991781957784, "coord": [48.838814669136, 2.321991781957784], "stop_id": 3764707, "stop_desc": "FACE 75 AVENUE DU MAINE - 75114", "stop_name": "GAITE"}, "geometry": {"type": "Point", "coordinates": [2.321991781957784, 48.838814669136]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0580a54959010f21add32f0aaa1df3dda00fcf88", "fields": {"departement": "75", "stop_lat": 48.84060312525939, "code_postal": "75114", "stop_lon": 2.3214738516294093, "coord": [48.84060312525939, 2.3214738516294093], "stop_id": 3764709, "stop_desc": "48 AVENUE DU MAINE - 75114", "stop_name": "GARE MONTPARNASSE"}, "geometry": {"type": "Point", "coordinates": [2.3214738516294093, 48.84060312525939]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "21a50b5f352bd45501d8e95579df7b05d7b8b7c7", "fields": {"departement": "75", "stop_lat": 48.85066735678148, "code_postal": "75107", "stop_lon": 2.311297738319514, "coord": [48.85066735678148, 2.311297738319514], "stop_id": 3764716, "stop_desc": "32-34 AVENUE DUQUESNE - 75107", "stop_name": "EL SALVADOR"}, "geometry": {"type": "Point", "coordinates": [2.311297738319514, 48.85066735678148]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "84396b04c558a0d0e77f20f9aeb08dcfc4bd8e8d", "fields": {"departement": "75", "stop_lat": 48.852275541406364, "code_postal": "75107", "stop_lon": 2.3087910438824077, "coord": [48.852275541406364, 2.3087910438824077], "stop_id": 3764720, "stop_desc": "14 AVENUE DE LOWENDAL - 75107", "stop_name": "DUQUESNE - LOWENDAL"}, "geometry": {"type": "Point", "coordinates": [2.3087910438824077, 48.852275541406364]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "89a28539d1805589d7104e5ddfed5dc4a0391a33", "fields": {"departement": "75", "stop_lat": 48.87487170908462, "code_postal": "75108", "stop_lon": 2.318275195225526, "coord": [48.87487170908462, 2.318275195225526], "stop_id": 3764736, "stop_desc": "95-97 BOULEVARD HAUSSMANN - 75108", "stop_name": "SAINT-AUGUSTIN"}, "geometry": {"type": "Point", "coordinates": [2.318275195225526, 48.87487170908462]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "424acb09c3caed9cc96ce694b01e16ebafe6a888", "fields": {"departement": "75", "stop_lat": 48.87465646998024, "code_postal": "75108", "stop_lon": 2.3213953633663262, "coord": [48.87465646998024, 2.3213953633663262], "stop_id": 3764737, "stop_desc": "108 BOULEVARD HAUSSMANN - 75108", "stop_name": "SAINT-AUGUSTIN"}, "geometry": {"type": "Point", "coordinates": [2.3213953633663262, 48.87465646998024]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "09cb5cb2516735d5cb51eb87251ac7e383eed37b", "fields": {"departement": "75", "stop_lat": 48.87668767301282, "code_postal": "75108", "stop_lon": 2.3219670079379235, "coord": [48.87668767301282, 2.3219670079379235], "stop_id": 3764738, "stop_desc": "FACE 8 RUE DU ROCHER - 75108", "stop_name": "GARE SAINT-LAZARE"}, "geometry": {"type": "Point", "coordinates": [2.3219670079379235, 48.87668767301282]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "526f4e2dc21955b05dadfa63c98f1b14788fc674", "fields": {"departement": "75", "stop_lat": 48.845527910899904, "code_postal": "75115", "stop_lon": 2.3188170008674582, "coord": [48.845527910899904, 2.3188170008674582], "stop_id": 3764746, "stop_desc": "30 BOULEVARD DU MONTPARNASSE - 75115", "stop_name": "MAINE - VAUGIRARD"}, "geometry": {"type": "Point", "coordinates": [2.3188170008674582, 48.845527910899904]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "13beebe8cc52a6c21a6012458c073d2803a2ffa9", "fields": {"departement": "75", "stop_lat": 48.84311093931437, "code_postal": "75115", "stop_lon": 2.323842370185889, "coord": [48.84311093931437, 2.323842370185889], "stop_id": 3764748, "stop_desc": "10 RUE DU DEPART - 75115", "stop_name": "PLACE DU 18 JUIN 1940 - RUE DU DEPART"}, "geometry": {"type": "Point", "coordinates": [2.323842370185889, 48.84311093931437]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "92824862f1714ee7b58730e7561dbedd4df7514b", "fields": {"departement": "75", "stop_lat": 48.85557356193737, "code_postal": "75107", "stop_lon": 2.3072638128695613, "coord": [48.85557356193737, 2.3072638128695613], "stop_id": 3764776, "stop_desc": "28-30 AVENUE DE LA MOTTE PICQUET - 75107", "stop_name": "RUE CLER"}, "geometry": {"type": "Point", "coordinates": [2.3072638128695613, 48.85557356193737]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9cb8b43855eee9907e0cdf9eb20b6d3eee04d0d8", "fields": {"departement": "75", "stop_lat": 48.84685669671791, "code_postal": "75115", "stop_lon": 2.311463055493155, "coord": [48.84685669671791, 2.311463055493155], "stop_id": 3764781, "stop_desc": "8 PLACE DE BRETEUIL - 75115", "stop_name": "BRETEUIL"}, "geometry": {"type": "Point", "coordinates": [2.311463055493155, 48.84685669671791]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "994eed001b76da872610cab299f69f32d1df2bd4", "fields": {"departement": "75", "stop_lat": 48.828425493707726, "code_postal": "75114", "stop_lon": 2.326473417482039, "coord": [48.828425493707726, 2.326473417482039], "stop_id": 3764791, "stop_desc": "230 AVENUE DU MAINE - 75114", "stop_name": "ALESIA - MAINE"}, "geometry": {"type": "Point", "coordinates": [2.326473417482039, 48.828425493707726]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "47854a4c01cb7bfaeb08d2f53328a4dba9a926d8", "fields": {"departement": "75", "stop_lat": 48.87085576401549, "code_postal": "75109", "stop_lon": 2.3317506483025654, "coord": [48.87085576401549, 2.3317506483025654], "stop_id": 3764800, "stop_desc": "1 RUE AUBER - 75109", "stop_name": "OPERA"}, "geometry": {"type": "Point", "coordinates": [2.3317506483025654, 48.87085576401549]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aef691fd8476b10560137e2b0fa1f357b46bca50", "fields": {"departement": "75", "stop_lat": 48.866236360134835, "code_postal": "75101", "stop_lon": 2.3343530611372842, "coord": [48.866236360134835, 2.3343530611372842], "stop_id": 3764805, "stop_desc": "20 AVENUE DE L'OPERA - 75101", "stop_name": "PYRAMIDES"}, "geometry": {"type": "Point", "coordinates": [2.3343530611372842, 48.866236360134835]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a16fa5b020802e54b6dffd41aeae9286119c367d", "fields": {"departement": "75", "stop_lat": 48.86377382871805, "code_postal": "75101", "stop_lon": 2.334720992443335, "coord": [48.86377382871805, 2.334720992443335], "stop_id": 3764806, "stop_desc": "1 PLACE ANDRE MALRAUX - 75101", "stop_name": "PALAIS ROYAL - COMEDIE FRANCAISE"}, "geometry": {"type": "Point", "coordinates": [2.334720992443335, 48.86377382871805]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b37ab803118ce0373a0938ab00b49ab9819cfa6d", "fields": {"departement": "75", "stop_lat": 48.85732954239605, "code_postal": "75101", "stop_lon": 2.3463121756827907, "coord": [48.85732954239605, 2.3463121756827907], "stop_id": 3764811, "stop_desc": "FACE AU 2 QUAI DE LA MEGISSERIE - 75101", "stop_name": "CHATELET"}, "geometry": {"type": "Point", "coordinates": [2.3463121756827907, 48.85732954239605]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8f6316a5a62e6a36732b37a2eec5c4cddd2f48af", "fields": {"departement": "75", "stop_lat": 48.85247650155603, "code_postal": "75106", "stop_lon": 2.3435194294224857, "coord": [48.85247650155603, 2.3435194294224857], "stop_id": 3764814, "stop_desc": "10 BOULEVARD SAINT-MICHEL - 75106", "stop_name": "SAINT-MICHEL - SAINT-GERMAIN"}, "geometry": {"type": "Point", "coordinates": [2.3435194294224857, 48.85247650155603]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "83cc6d92f71414f53dcd5acb490681896ad32944", "fields": {"departement": "75", "stop_lat": 48.84632917208576, "code_postal": "75105", "stop_lon": 2.3408496756727897, "coord": [48.84632917208576, 2.3408496756727897], "stop_id": 3764816, "stop_desc": "FACE 5 RUE GAY LUSSAC - 75105", "stop_name": "LUXEMBOURG"}, "geometry": {"type": "Point", "coordinates": [2.3408496756727897, 48.84632917208576]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b0a57c27474b16b525e98020d21f7bbf3bee2b06", "fields": {"departement": "75", "stop_lat": 48.84641903862287, "code_postal": "75105", "stop_lon": 2.3411220304526323, "coord": [48.84641903862287, 2.3411220304526323], "stop_id": 3764817, "stop_desc": "5-7 RUE GAY LUSSAC - 75105", "stop_name": "LUXEMBOURG"}, "geometry": {"type": "Point", "coordinates": [2.3411220304526323, 48.84641903862287]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fca9c0423bc878e8e4567d6c777c5b73338ca560", "fields": {"departement": "75", "stop_lat": 48.83989384601511, "code_postal": "75105", "stop_lon": 2.3458189654407584, "coord": [48.83989384601511, 2.3458189654407584], "stop_id": 3764822, "stop_desc": "6 RUE BERTHOLLET - 75105", "stop_name": "BERTHOLLET - VAUQUELIN"}, "geometry": {"type": "Point", "coordinates": [2.3458189654407584, 48.83989384601511]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fba426099617fb3fe0c04938cb86c032375e6d56", "fields": {"departement": "75", "stop_lat": 48.83109509578204, "code_postal": "75113", "stop_lon": 2.3443472650814, "coord": [48.83109509578204, 2.3443472650814], "stop_id": 3764830, "stop_desc": "RUE DE LA GLACIERE - 75113", "stop_name": "GLACIERE - AUGUSTE BLANQUI"}, "geometry": {"type": "Point", "coordinates": [2.3443472650814, 48.83109509578204]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c84e0d4c578ce9013001e285a644681090dda169", "fields": {"departement": "75", "stop_lat": 48.82877635081214, "code_postal": "75113", "stop_lon": 2.3432034730632036, "coord": [48.82877635081214, 2.3432034730632036], "stop_id": 3764832, "stop_desc": "FACE 106 RUE DE LA GLACIERE - 75113", "stop_name": "DAVIEL"}, "geometry": {"type": "Point", "coordinates": [2.3432034730632036, 48.82877635081214]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "44d9f99b1d4282cdefe76745324f4a9f8b8c29c3", "fields": {"departement": "75", "stop_lat": 48.8223682067283, "code_postal": "75113", "stop_lon": 2.3419505155524547, "coord": [48.8223682067283, 2.3419505155524547], "stop_id": 3764838, "stop_desc": "53 RUE DE L'AMIRAL MOUCHEZ - 75113", "stop_name": "AMIRAL MOUCHEZ - CHARBONNEL"}, "geometry": {"type": "Point", "coordinates": [2.3419505155524547, 48.8223682067283]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9c89f7dec1717df55ad2524afee51e62211bc94d", "fields": {"departement": "75", "stop_lat": 48.84187918982126, "code_postal": "75115", "stop_lon": 2.3202616185071085, "coord": [48.84187918982126, 2.3202616185071085], "stop_id": 3764966, "stop_desc": "PLACE RAOUL DAUTRY - 75115", "stop_name": "GARE MONTPARNASSE"}, "geometry": {"type": "Point", "coordinates": [2.3202616185071085, 48.84187918982126]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "50913c50e2a3fbe1762c7c734aa55d3b887718ba", "fields": {"departement": "75", "stop_lat": 48.83691827936556, "code_postal": "75113", "stop_lon": 2.352612326283839, "coord": [48.83691827936556, 2.352612326283839], "stop_id": 3764973, "stop_desc": "81 BOULEVARD SAINT-MARCEL - 75113", "stop_name": "LES GOBELINS"}, "geometry": {"type": "Point", "coordinates": [2.352612326283839, 48.83691827936556]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "03eff7152c6a639519efb39f3c9c6b78fa8fb97a", "fields": {"departement": "75", "stop_lat": 48.838158000417195, "code_postal": "75113", "stop_lon": 2.3564930422658135, "coord": [48.838158000417195, 2.3564930422658135], "stop_id": 3764974, "stop_desc": "45-47 BOULEVARD SAINT-MARCEL - 75113", "stop_name": "SAINT-MARCEL - JEANNE D'ARC"}, "geometry": {"type": "Point", "coordinates": [2.3564930422658135, 48.838158000417195]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "08b6cff634fef8f1fc572caaea6b5ac7af5c685a", "fields": {"departement": "75", "stop_lat": 48.8483376180706, "code_postal": "75112", "stop_lon": 2.3710952409746535, "coord": [48.8483376180706, 2.3710952409746535], "stop_id": 3764982, "stop_desc": "41 RUE DE LYON - 75112", "stop_name": "LYON - LEDRU ROLLIN"}, "geometry": {"type": "Point", "coordinates": [2.3710952409746535, 48.8483376180706]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1cdc4d5b9db339e1bb189ffb48f6fbc1cc0280c3", "fields": {"departement": "75", "stop_lat": 48.85239140153054, "code_postal": "75112", "stop_lon": 2.369545320283473, "coord": [48.85239140153054, 2.369545320283473], "stop_id": 3764983, "stop_desc": "RUE DE LYON - 75112", "stop_name": "BASTILLE"}, "geometry": {"type": "Point", "coordinates": [2.369545320283473, 48.85239140153054]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eb71b1fad59ba22e62b309e746ce7086dba88a43", "fields": {"departement": "75", "stop_lat": 48.83826590356717, "code_postal": "75105", "stop_lon": 2.3561663153689802, "coord": [48.83826590356717, 2.3561663153689802], "stop_id": 3764987, "stop_desc": "FACE 47 BOULEVARD SAINT- MARCEL - 75105", "stop_name": "SAINT-MARCEL - JEANNE D'ARC"}, "geometry": {"type": "Point", "coordinates": [2.3561663153689802, 48.83826590356717]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "af2e3b0d6966e0895e04bccf17486cfe51c40c89", "fields": {"departement": "75", "stop_lat": 48.83779080172666, "code_postal": "75105", "stop_lon": 2.3451650904042616, "coord": [48.83779080172666, 2.3451650904042616], "stop_id": 3764989, "stop_desc": "FACE 47 BOULEVARD DE PORT ROYAL - 75105", "stop_name": "PORT ROYAL - BERTHOLLET"}, "geometry": {"type": "Point", "coordinates": [2.3451650904042616, 48.83779080172666]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "347ba16c2cfa535082a910c170295e435458e89c", "fields": {"departement": "75", "stop_lat": 48.8396514901034, "code_postal": "75105", "stop_lon": 2.337349990389469, "coord": [48.8396514901034, 2.337349990389469], "stop_id": 3764991, "stop_desc": "100 BOULEVARD DE PORT ROYAL - 75105", "stop_name": "OBSERVATOIRE - PORT ROYAL"}, "geometry": {"type": "Point", "coordinates": [2.337349990389469, 48.8396514901034]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "95d767942288d2c4db4a9c8632d78e08000679c1", "fields": {"departement": "75", "stop_lat": 48.84311093931437, "code_postal": "75115", "stop_lon": 2.323842370185889, "coord": [48.84311093931437, 2.323842370185889], "stop_id": 3764995, "stop_desc": "10 RUE DU DEPART - 75115", "stop_name": "PLACE DU 18 JUIN 1940 - RUE DU DEPART"}, "geometry": {"type": "Point", "coordinates": [2.323842370185889, 48.84311093931437]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f10dc60ba8ca41c776a88c28cdbc616a493c2a19", "fields": {"departement": "75", "stop_lat": 48.83887730872086, "code_postal": "75114", "stop_lon": 2.3199902926396305, "coord": [48.83887730872086, 2.3199902926396305], "stop_id": 3764997, "stop_desc": "36 RUE DU COMMANDANT RENE MOUCHOTTE - 75114", "stop_name": "PLACE DE CATALOGNE"}, "geometry": {"type": "Point", "coordinates": [2.3199902926396305, 48.83887730872086]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9ffa0acdd99af7359840b59363bd50f95d861e01", "fields": {"departement": "75", "stop_lat": 48.88615795799382, "code_postal": "75117", "stop_lon": 2.3093856930928633, "coord": [48.88615795799382, 2.3093856930928633], "stop_id": 3765161, "stop_desc": "84-88 RUE DE TOCQUEVILLE - 75117", "stop_name": "JOUFFROY - TOCQUEVILLE"}, "geometry": {"type": "Point", "coordinates": [2.3093856930928633, 48.88615795799382]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "97abd19f4cbc75f55abc5b3369b4e5fe3c2a7bc8", "fields": {"departement": "75", "stop_lat": 48.88624775322082, "code_postal": "75117", "stop_lon": 2.3090585754144657, "coord": [48.88624775322082, 2.3090585754144657], "stop_id": 3765162, "stop_desc": "67 RUE DE TOCQUEVILLE - 75117", "stop_name": "JOUFFROY - TOCQUEVILLE"}, "geometry": {"type": "Point", "coordinates": [2.3090585754144657, 48.88624775322082]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c2c5d67b999bfccc1f342b1701221af3fd631a95", "fields": {"departement": "75", "stop_lat": 48.88826872236327, "code_postal": "75117", "stop_lon": 2.3045464679733043, "coord": [48.88826872236327, 2.3045464679733043], "stop_id": 3765165, "stop_desc": "188-190 BOULEVARD MALESHERBES - 75117", "stop_name": "JULIETTE LAMBER"}, "geometry": {"type": "Point", "coordinates": [2.3045464679733043, 48.88826872236327]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b68ae2c83318328a93242091507c6d97212e6b22", "fields": {"departement": "92", "stop_lat": 48.89508774081958, "code_postal": "92044", "stop_lon": 2.297181847283665, "coord": [48.89508774081958, 2.297181847283665], "stop_id": 3765172, "stop_desc": "61 RUE VICTOR HUGO - 92044", "stop_name": "VICTOR HUGO - JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.297181847283665, 48.89508774081958]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "05b034282db01a8fd3045295169e1578fd6f9e93", "fields": {"departement": "92", "stop_lat": 48.89318876581601, "code_postal": "92044", "stop_lon": 2.289864156947747, "coord": [48.89318876581601, 2.289864156947747], "stop_id": 3765177, "stop_desc": "77 RUE ARISTIDE BRIAND - 92044", "stop_name": "ARISTIDE BRIAND"}, "geometry": {"type": "Point", "coordinates": [2.289864156947747, 48.89318876581601]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "53336b55d1c8cb927fdb3c11e76df5b3bba56abe", "fields": {"departement": "92", "stop_lat": 48.89744703629164, "code_postal": "92044", "stop_lon": 2.2859073196926234, "coord": [48.89744703629164, 2.2859073196926234], "stop_id": 3765181, "stop_desc": "120 RUE DU PRESIDENT WILSON - 92044", "stop_name": "BAUDIN"}, "geometry": {"type": "Point", "coordinates": [2.2859073196926234, 48.89744703629164]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7c8c117f5726c6d37c34a97210ddba9e76d46aec", "fields": {"departement": "92", "stop_lat": 48.89746373706344, "code_postal": "92044", "stop_lon": 2.2830311951872706, "coord": [48.89746373706344, 2.2830311951872706], "stop_id": 3765182, "stop_desc": "51 RUE BAUDIN - 92044", "stop_name": "PLACE MARIE-JEANNE BASSOT"}, "geometry": {"type": "Point", "coordinates": [2.2830311951872706, 48.89746373706344]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c8adcc12893db29d3ead10d17a012dfcae480788", "fields": {"departement": "92", "stop_lat": 48.896824869878905, "code_postal": "92044", "stop_lon": 2.2813416598640677, "coord": [48.896824869878905, 2.2813416598640677], "stop_id": 3765183, "stop_desc": "27 RUE BAUDIN - 92044", "stop_name": "PARC MATHILDE GIRAULT"}, "geometry": {"type": "Point", "coordinates": [2.2813416598640677, 48.896824869878905]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bdc8c4af123176176a1b28efca50145539a47a77", "fields": {"departement": "92", "stop_lat": 48.896923283523144, "code_postal": "92044", "stop_lon": 2.280401035268448, "coord": [48.896923283523144, 2.280401035268448], "stop_id": 3765185, "stop_desc": "RUE ANATOLE FRANCE - 92044", "stop_name": "PONT DE LEVALLOIS"}, "geometry": {"type": "Point", "coordinates": [2.280401035268448, 48.896923283523144]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "473935b82d734204290be4682b7ba023cb39b0e2", "fields": {"departement": "75", "stop_lat": 48.873300053901026, "code_postal": "75109", "stop_lon": 2.327635793622974, "coord": [48.873300053901026, 2.327635793622974], "stop_id": 3765191, "stop_desc": "21 RUE AUBER - 75109", "stop_name": "HAVRE - HAUSSMANN"}, "geometry": {"type": "Point", "coordinates": [2.327635793622974, 48.873300053901026]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8c6dc8d4f3f74dd7fb86adf1ee62fa42f6471313", "fields": {"departement": "75", "stop_lat": 48.84698295134104, "code_postal": "75105", "stop_lon": 2.360976497921474, "coord": [48.84698295134104, 2.360976497921474], "stop_id": 3765197, "stop_desc": "FACE 5 QUAI SAINT BERNARD - 75105", "stop_name": "CUVIER"}, "geometry": {"type": "Point", "coordinates": [2.360976497921474, 48.84698295134104]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2ff24409735d2c1e58481422645369fd53e07b2a", "fields": {"departement": "75", "stop_lat": 48.849051035763516, "code_postal": "75105", "stop_lon": 2.3555301961917268, "coord": [48.849051035763516, 2.3555301961917268], "stop_id": 3765201, "stop_desc": "4 RUE DES FOSSES SAINT-BERNARD - 75105", "stop_name": "INSTITUT DU MONDE ARABE"}, "geometry": {"type": "Point", "coordinates": [2.3555301961917268, 48.849051035763516]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8c92ea9a33bb05383bce85768a924c13b32817dd", "fields": {"departement": "75", "stop_lat": 48.850130779272746, "code_postal": "75105", "stop_lon": 2.343369343620797, "coord": [48.850130779272746, 2.343369343620797], "stop_id": 3765204, "stop_desc": "58-60 RUE DES ECOLES - 75105", "stop_name": "CLUNY"}, "geometry": {"type": "Point", "coordinates": [2.343369343620797, 48.850130779272746]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c9a0d07039b7cce2977109dd8830cee5ff58d2c6", "fields": {"departement": "75", "stop_lat": 48.851164321077135, "code_postal": "75105", "stop_lon": 2.3437099323238684, "coord": [48.851164321077135, 2.3437099323238684], "stop_id": 3765205, "stop_desc": "BD SAINT-GERMAIN - 75105", "stop_name": "CLUNY"}, "geometry": {"type": "Point", "coordinates": [2.3437099323238684, 48.851164321077135]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "460abdec420204a25c5f67e29bf257d0250934e2", "fields": {"departement": "75", "stop_lat": 48.85620586324707, "code_postal": "75107", "stop_lon": 2.325350803941803, "coord": [48.85620586324707, 2.325350803941803], "stop_id": 3765213, "stop_desc": "205 BOULEVARD SAINT-GERMAIN - 75107", "stop_name": "RUE DU BAC - RENE CHAR"}, "geometry": {"type": "Point", "coordinates": [2.325350803941803, 48.85620586324707]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9398e96c3e7ef1785ebc9d429564c7f4811c3f1c", "fields": {"departement": "75", "stop_lat": 48.86294479231431, "code_postal": "75107", "stop_lon": 2.314233895150675, "coord": [48.86294479231431, 2.314233895150675], "stop_id": 3765220, "stop_desc": "QUAI D'ORSAY - 75107", "stop_name": "INVALIDES"}, "geometry": {"type": "Point", "coordinates": [2.314233895150675, 48.86294479231431]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dff0b874238566a20140dba46c0d179f7654e01d", "fields": {"departement": "75", "stop_lat": 48.86465603002499, "code_postal": "75116", "stop_lon": 2.2947669865320837, "coord": [48.86465603002499, 2.2947669865320837], "stop_id": 3765230, "stop_desc": "1 PL D'IENA - 75116", "stop_name": "IENA"}, "geometry": {"type": "Point", "coordinates": [2.2947669865320837, 48.86465603002499]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d875b0155a9e2da215d146d99f7cedd19bd6f8c8", "fields": {"departement": "75", "stop_lat": 48.86333138703821, "code_postal": "75116", "stop_lon": 2.2858866120015504, "coord": [48.86333138703821, 2.2858866120015504], "stop_id": 3765235, "stop_desc": "2 AVENUE GEORGES MANDEL - 75116", "stop_name": "GEORGES MANDEL - TROCADERO"}, "geometry": {"type": "Point", "coordinates": [2.2858866120015504, 48.86333138703821]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8859cd8fb2cf884b202a63fc46f60dd70ef61185", "fields": {"departement": "75", "stop_lat": 48.86296288082145, "code_postal": "75116", "stop_lon": 2.28583248991981, "coord": [48.86296288082145, 2.28583248991981], "stop_id": 3765236, "stop_desc": "FACE AU 2 AVENUE GEORGES MANDEL - 75116", "stop_name": "GEORGES MANDEL - TROCADERO"}, "geometry": {"type": "Point", "coordinates": [2.28583248991981, 48.86296288082145]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "545171e27e8450659a5bdd8c03413d94ad043395", "fields": {"departement": "75", "stop_lat": 48.86481072678524, "code_postal": "75116", "stop_lon": 2.300515452987258, "coord": [48.86481072678524, 2.300515452987258], "stop_id": 3765247, "stop_desc": "1 AVENUE DU PRESIDENT WILSON - 75116", "stop_name": "ALMA - MARCEAU"}, "geometry": {"type": "Point", "coordinates": [2.300515452987258, 48.86481072678524]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3d287b625932f852a0ad38c651475aab589ce9b3", "fields": {"departement": "75", "stop_lat": 48.88362477105826, "code_postal": "75110", "stop_lon": 2.3593443757229804, "coord": [48.88362477105826, 2.3593443757229804], "stop_id": 3666625, "stop_desc": "226-228 RUE DU FAUBOURG SAINT-DENIS - 75110", "stop_name": "PLACE DE LA CHAPELLE"}, "geometry": {"type": "Point", "coordinates": [2.3593443757229804, 48.88362477105826]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "85044b2c8872fe6c67c86182430b94cc6fe806d4", "fields": {"departement": "93", "stop_lat": 49.01051954688492, "code_postal": "93073", "stop_lon": 2.559663932280221, "coord": [49.01051954688492, 2.559663932280221], "stop_id": 3666611, "stop_desc": "AEROPORT CHARLES DE GAULLE (T3) - 93073", "stop_name": "ROISSYPOLE - GARE - RER"}, "geometry": {"type": "Point", "coordinates": [2.559663932280221, 49.01051954688492]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1532ba0cf2794739bd073463cbe065b96d2a8c59", "fields": {"departement": "75", "stop_lat": 48.88082998036255, "code_postal": "75110", "stop_lon": 2.3579941644875797, "coord": [48.88082998036255, 2.3579941644875797], "stop_id": 3666623, "stop_desc": "184 RUE DU FAUBOURG SAINT-DENIS - 75110", "stop_name": "GARE DU NORD"}, "geometry": {"type": "Point", "coordinates": [2.3579941644875797, 48.88082998036255]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0800ebd64c4708f8deed603a646145cc48994506", "fields": {"departement": "75", "stop_lat": 48.87611168124885, "code_postal": "75110", "stop_lon": 2.357883275054754, "coord": [48.87611168124885, 2.357883275054754], "stop_id": 3666621, "stop_desc": "9-11 RUE DU 8 MAI 1945 - 75110", "stop_name": "GARE DE L'EST"}, "geometry": {"type": "Point", "coordinates": [2.357883275054754, 48.87611168124885]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b9e977d9a4f39e0ed7557b487b63d437a5a2da77", "fields": {"departement": "75", "stop_lat": 48.87615667154024, "code_postal": "75110", "stop_lon": 2.3575699124657437, "coord": [48.87615667154024, 2.3575699124657437], "stop_id": 3666620, "stop_desc": "9 RUE DU 8 MAI 1945 - 75110", "stop_name": "GARE DE L'EST"}, "geometry": {"type": "Point", "coordinates": [2.3575699124657437, 48.87615667154024]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "54cc450ecaf98c40babc4f01d8f8ce87dcf44a02", "fields": {"departement": "93", "stop_lat": 48.95023932361886, "code_postal": "93007", "stop_lon": 2.4496873518004296, "coord": [48.95023932361886, 2.4496873518004296], "stop_id": 3666632, "stop_desc": "AVENUE DESCARTES - 93007", "stop_name": "MAURICE AUDIN"}, "geometry": {"type": "Point", "coordinates": [2.4496873518004296, 48.95023932361886]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "75b3878c78fbf5665e194e937981836ee285dbff", "fields": {"departement": "93", "stop_lat": 48.95433871107077, "code_postal": "93005", "stop_lon": 2.457433442997565, "coord": [48.95433871107077, 2.457433442997565], "stop_id": 3666641, "stop_desc": "RUE ROBERT BREMOND - 93005", "stop_name": "ROBERT BREMOND"}, "geometry": {"type": "Point", "coordinates": [2.457433442997565, 48.95433871107077]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "83dafebccada9b6080731e002ec74ef58ef6c3cf", "fields": {"departement": "93", "stop_lat": 48.99173782611795, "code_postal": "93073", "stop_lon": 2.5286392829463, "coord": [48.99173782611795, 2.5286392829463], "stop_id": 3666646, "stop_desc": "ROUTE DU MIDI - 93073", "stop_name": "RUE DU TE"}, "geometry": {"type": "Point", "coordinates": [2.5286392829463, 48.99173782611795]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fc695e45a8bad061fc5df2a0fb35090f3af01cea", "fields": {"departement": "93", "stop_lat": 48.929213819436754, "code_postal": "93007", "stop_lon": 2.479879844919834, "coord": [48.929213819436754, 2.479879844919834], "stop_id": 3672281, "stop_desc": "5 BIS AVENUE PAUL VAILLANT COUTURIER - 93007", "stop_name": "ROND-POINT PIERRE SEMARD - PAUL VAILLANT-COUTURIER"}, "geometry": {"type": "Point", "coordinates": [2.479879844919834, 48.929213819436754]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e7ee8930ef5ef27fb1339ceebe2088d8f8b81270", "fields": {"departement": "93", "stop_lat": 48.91240595297027, "code_postal": "93010", "stop_lon": 2.481728807753058, "coord": [48.91240595297027, 2.481728807753058], "stop_id": 3672272, "stop_desc": "AVENUE HENRI VARAGNAT - 93010", "stop_name": "ROUTE D'AULNAY - JEAN MOULIN"}, "geometry": {"type": "Point", "coordinates": [2.481728807753058, 48.91240595297027]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "93162e54135ca05ae934fa0411f6de2b8087ec8e", "fields": {"departement": "75", "stop_lat": 48.86488327520136, "code_postal": "75120", "stop_lon": 2.41126451915231, "coord": [48.86488327520136, 2.41126451915231], "stop_id": 3672267, "stop_desc": "7 AVENUE CARTELLIER - 75120", "stop_name": "ECHANGEUR DE BAGNOLET"}, "geometry": {"type": "Point", "coordinates": [2.41126451915231, 48.86488327520136]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "63a42d4cc3d62080d33a075b525241dbc64b7836", "fields": {"departement": "95", "stop_lat": 49.01383564937498, "code_postal": "95527", "stop_lon": 2.533953462650324, "coord": [49.01383564937498, 2.533953462650324], "stop_id": 3672220, "stop_desc": "ROUTE DES ANNIVERSAIRES - 95527", "stop_name": "ZONE TECHNIQUE"}, "geometry": {"type": "Point", "coordinates": [2.533953462650324, 49.01383564937498]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8753636a4e9de5e2d4c15f2cd3874314a8b1288f", "fields": {"departement": "93", "stop_lat": 48.9136270250163, "code_postal": "93010", "stop_lon": 2.482686671284147, "coord": [48.9136270250163, 2.482686671284147], "stop_id": 3672248, "stop_desc": "AVENUE HENRI VARAGNAT - 93010", "stop_name": "SUZANNE BUISSON"}, "geometry": {"type": "Point", "coordinates": [2.482686671284147, 48.9136270250163]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "17a2adc5e8d6680d2297864bf95a56821c489a78", "fields": {"departement": "93", "stop_lat": 48.9136270250163, "code_postal": "93010", "stop_lon": 2.482686671284147, "coord": [48.9136270250163, 2.482686671284147], "stop_id": 3672273, "stop_desc": "AVENUE HENRI VARAGNAT - 93010", "stop_name": "SUZANNE BUISSON"}, "geometry": {"type": "Point", "coordinates": [2.482686671284147, 48.9136270250163]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "df3ae4deb871812e8d2e232577cb2f19563c375b", "fields": {"departement": "93", "stop_lat": 48.92527506408324, "code_postal": "93007", "stop_lon": 2.4743318967195087, "coord": [48.92527506408324, 2.4743318967195087], "stop_id": 3672279, "stop_desc": "BOULEVARD JACQUES DECOUR - 93007", "stop_name": "LES 4 TOURS"}, "geometry": {"type": "Point", "coordinates": [2.4743318967195087, 48.92527506408324]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6f2a8f4d2c0c1579cccad0eb0850879869cf4032", "fields": {"departement": "93", "stop_lat": 48.864043684925385, "code_postal": "93006", "stop_lon": 2.417093563493888, "coord": [48.864043684925385, 2.417093563493888], "stop_id": 3672269, "stop_desc": "PISTE GARE ROUTIERE - 93006", "stop_name": "GALLIENI-METRO"}, "geometry": {"type": "Point", "coordinates": [2.417093563493888, 48.864043684925385]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "979edd63cc79359fba6e3ea16767cda3ccd38ae8", "fields": {"departement": "75", "stop_lat": 48.84919040171898, "code_postal": "75120", "stop_lon": 2.4125630899221813, "coord": [48.84919040171898, 2.4125630899221813], "stop_id": 3672233, "stop_desc": "111-113 RUE DE LAGNY - 75120", "stop_name": "HILSZ - LAGNY"}, "geometry": {"type": "Point", "coordinates": [2.4125630899221813, 48.84919040171898]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ac045d12f473d5b92e82e40102b3baac52c65750", "fields": {"departement": "75", "stop_lat": 48.847877242580424, "code_postal": "75112", "stop_lon": 2.3986165404125455, "coord": [48.847877242580424, 2.3986165404125455], "stop_id": 3672237, "stop_desc": "6 AVENUE DU TRONE - 75112", "stop_name": "NATION"}, "geometry": {"type": "Point", "coordinates": [2.3986165404125455, 48.847877242580424]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2840b98a00e70c6e016191f6b90446ef464c5f1d", "fields": {"departement": "77", "stop_lat": 48.825551256001276, "code_postal": "77258", "stop_lon": 2.6292725579153386, "coord": [48.825551256001276, 2.6292725579153386], "stop_id": 3677806, "stop_desc": "RUE DE LA MAISON ROUGE - 77258", "stop_name": "CHAMBRE DE COMMERCE ET D'INDUSTRIE"}, "geometry": {"type": "Point", "coordinates": [2.6292725579153386, 48.825551256001276]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b2cc3f2d04fed1adc0e7c3fde13803bf4ec90bce", "fields": {"departement": "77", "stop_lat": 48.82784856931678, "code_postal": "77146", "stop_lon": 2.6379159064951843, "coord": [48.82784856931678, 2.6379159064951843], "stop_id": 3677819, "stop_desc": "RUE LEON JOUHAUX - 77146", "stop_name": "LA MARE A BLONDEAU"}, "geometry": {"type": "Point", "coordinates": [2.6379159064951843, 48.82784856931678]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ae8e6d4aac9838a952cb926b71dc3950ad816078", "fields": {"departement": "77", "stop_lat": 48.85029228306208, "code_postal": "77468", "stop_lon": 2.63368806437434, "coord": [48.85029228306208, 2.63368806437434], "stop_id": 3677732, "stop_desc": "0 COURS DE L'ARCHE GUEDON - 77468", "stop_name": "CITE SCOLAIRE"}, "geometry": {"type": "Point", "coordinates": [2.63368806437434, 48.85029228306208]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "19e9a00b343ea9d4a421dd000cffc1b0b6aca116", "fields": {"departement": "77", "stop_lat": 48.85459760854207, "code_postal": "77468", "stop_lon": 2.637158448222115, "coord": [48.85459760854207, 2.637158448222115], "stop_id": 3677730, "stop_desc": "R JEAN JAURES - 77468", "stop_name": "LA FOSSE AUX LOUPS"}, "geometry": {"type": "Point", "coordinates": [2.637158448222115, 48.85459760854207]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f06dba5ae7ee0866f3cb579484c865e154e28cb8", "fields": {"departement": "77", "stop_lat": 48.832408572708516, "code_postal": "77258", "stop_lon": 2.629392832135877, "coord": [48.832408572708516, 2.629392832135877], "stop_id": 3677802, "stop_desc": "RUE DE LA MAISON ROUGE - 77258", "stop_name": "MAISON ROUGE"}, "geometry": {"type": "Point", "coordinates": [2.629392832135877, 48.832408572708516]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4cec305ceb520ddd7524d5f5e7edbdac4bbe24f7", "fields": {"departement": "77", "stop_lat": 48.84720718243952, "code_postal": "77337", "stop_lon": 2.6160627148221396, "coord": [48.84720718243952, 2.6160627148221396], "stop_id": 3677738, "stop_desc": "CRS DU LUZARD - 77337", "stop_name": "COMMISSARIAT"}, "geometry": {"type": "Point", "coordinates": [2.6160627148221396, 48.84720718243952]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c101d7873837577f4ee5905335aaa50d0a392f6e", "fields": {"departement": "77", "stop_lat": 48.82637430057647, "code_postal": "77146", "stop_lon": 2.6344498494410065, "coord": [48.82637430057647, 2.6344498494410065], "stop_id": 3677808, "stop_desc": "FACE 7 RUE PELLOUTIER - 77146", "stop_name": "PELLOUTIER"}, "geometry": {"type": "Point", "coordinates": [2.6344498494410065, 48.82637430057647]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "44520e591a6a52cf3b66a1e5bf7fac3605191df9", "fields": {"departement": "77", "stop_lat": 48.83939955555686, "code_postal": "77258", "stop_lon": 2.6335985955814634, "coord": [48.83939955555686, 2.6335985955814634], "stop_id": 3677813, "stop_desc": "RUE JEHAN SCARRON - 77258", "stop_name": "LOGNES RER"}, "geometry": {"type": "Point", "coordinates": [2.6335985955814634, 48.83939955555686]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1595f821c9091a7d96d2e1b0102318e240a2ec6d", "fields": {"departement": "77", "stop_lat": 48.82653648485217, "code_postal": "77146", "stop_lon": 2.6342874305518427, "coord": [48.82653648485217, 2.6342874305518427], "stop_id": 3677809, "stop_desc": "7 RUE PELLOUTIER - 77146", "stop_name": "PELLOUTIER"}, "geometry": {"type": "Point", "coordinates": [2.6342874305518427, 48.82653648485217]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1c36e74a244c9338bec30c01afff0fe38c7586cd", "fields": {"departement": "75", "stop_lat": 48.86045533777064, "code_postal": "75120", "stop_lon": 2.388810598217526, "coord": [48.86045533777064, 2.388810598217526], "stop_id": 3673598, "stop_desc": "FACE 27 BOULEVARD DE MENILMONTANT - 75120", "stop_name": "ROQUETTE - PERE LACHAISE"}, "geometry": {"type": "Point", "coordinates": [2.388810598217526, 48.86045533777064]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "02d67e34b390950f4c1084795eadb7428ca6456b", "fields": {"departement": "93", "stop_lat": 49.00336657296951, "code_postal": "93073", "stop_lon": 2.5643591158079393, "coord": [49.00336657296951, 2.5643591158079393], "stop_id": 3672283, "stop_desc": "VOIE PRIVEE AEROPORT CHARLES DE GAULLE - 93073", "stop_name": "TERMINAL 2A-2C"}, "geometry": {"type": "Point", "coordinates": [2.5643591158079393, 49.00336657296951]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "10cc8018328f10480e9c69057a7a83bf874f8777", "fields": {"departement": "75", "stop_lat": 48.86549237923351, "code_postal": "75120", "stop_lon": 2.399073303502112, "coord": [48.86549237923351, 2.399073303502112], "stop_id": 3673605, "stop_desc": "46-48 AVENUE GAMBETTA - 75120", "stop_name": "GAMBETTA - MAIRIE DU 20E"}, "geometry": {"type": "Point", "coordinates": [2.399073303502112, 48.86549237923351]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7797dd212a27dce11e49b1c4ee40b278f159b9c3", "fields": {"departement": "75", "stop_lat": 48.84885840881177, "code_postal": "75112", "stop_lon": 2.372756985185623, "coord": [48.84885840881177, 2.372756985185623], "stop_id": 3673590, "stop_desc": "59 AVENUE LEDRU ROLLIN - 75112", "stop_name": "DAUMESNIL - LEDRU ROLLIN"}, "geometry": {"type": "Point", "coordinates": [2.372756985185623, 48.84885840881177]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6fd366c416c05f553e022f30fee2e2b1bd275bb1", "fields": {"departement": "75", "stop_lat": 48.865618237665586, "code_postal": "75120", "stop_lon": 2.3990053411798007, "coord": [48.865618237665586, 2.3990053411798007], "stop_id": 3673606, "stop_desc": "87 AVENUE GAMBETTA - 75120", "stop_name": "GAMBETTA - MAIRIE DU 20E"}, "geometry": {"type": "Point", "coordinates": [2.3990053411798007, 48.865618237665586]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7d16c559d5d403103b3306e0b446e434c73dc209", "fields": {"departement": "75", "stop_lat": 48.87639012553031, "code_postal": "75120", "stop_lon": 2.40615783127001, "coord": [48.87639012553031, 2.40615783127001], "stop_id": 3673613, "stop_desc": "257 AVENUE GAMBETTA - 75120", "stop_name": "PORTE DES LILAS-METRO"}, "geometry": {"type": "Point", "coordinates": [2.40615783127001, 48.87639012553031]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5b265644d36313585334e1c535f8d26418aba6c4", "fields": {"departement": "93", "stop_lat": 49.004269809288566, "code_postal": "93073", "stop_lon": 2.5712882222403115, "coord": [49.004269809288566, 2.5712882222403115], "stop_id": 3672284, "stop_desc": "AEROPORT CHARLES DE GAULLE - 93073", "stop_name": "GARE TGV-SNCF"}, "geometry": {"type": "Point", "coordinates": [2.5712882222403115, 49.004269809288566]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "448f177ac60f4adf250d23eb06b69f6d3d77e3d0", "fields": {"departement": "75", "stop_lat": 48.85808583827969, "code_postal": "75111", "stop_lon": 2.380853874579723, "coord": [48.85808583827969, 2.380853874579723], "stop_id": 3673596, "stop_desc": "PLACE LEON BLUM - 75111", "stop_name": "VOLTAIRE - LEON BLUM"}, "geometry": {"type": "Point", "coordinates": [2.380853874579723, 48.85808583827969]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5283d46beddbf96075bdafc4cab99c2dc7f95dac", "fields": {"departement": "75", "stop_lat": 48.84386363426828, "code_postal": "75105", "stop_lon": 2.3640388418743408, "coord": [48.84386363426828, 2.3640388418743408], "stop_id": 3673583, "stop_desc": "PLACE VALHUBERT - 75105", "stop_name": "GARE D'AUSTERLITZ"}, "geometry": {"type": "Point", "coordinates": [2.3640388418743408, 48.84386363426828]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d70d6e4cd707618d4d40718920cc7f6747cdc600", "fields": {"departement": "75", "stop_lat": 48.87137633636753, "code_postal": "75120", "stop_lon": 2.4041756900353186, "coord": [48.87137633636753, 2.4041756900353186], "stop_id": 3673608, "stop_desc": "108 AVENUE GAMBETTA - 75120", "stop_name": "SAINT-FARGEAU"}, "geometry": {"type": "Point", "coordinates": [2.4041756900353186, 48.87137633636753]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dddd7165b2415f5eebfa03c680c168618ceb90cf", "fields": {"departement": "77", "stop_lat": 48.88138037659016, "code_postal": "77055", "stop_lon": 2.6298187060550338, "coord": [48.88138037659016, 2.6298187060550338], "stop_id": 3677718, "stop_desc": "FACE 24 AVENUE VICTOR THIEBAUT - 77055", "stop_name": "MAIRIE DE BROU"}, "geometry": {"type": "Point", "coordinates": [2.6298187060550338, 48.88138037659016]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "86035a875cc5e538cdac03deb2aca8c411bd8cb1", "fields": {"departement": "77", "stop_lat": 48.840691236820746, "code_postal": "77258", "stop_lon": 2.6486789147769327, "coord": [48.840691236820746, 2.6486789147769327], "stop_id": 3677722, "stop_desc": "FACE 35-37 COURS DES LACS - 77258", "stop_name": "RU DE MAUBUEE"}, "geometry": {"type": "Point", "coordinates": [2.6486789147769327, 48.840691236820746]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0cb25d6234b6bd43bdfbf21cdd38ead16919ac3c", "fields": {"departement": "77", "stop_lat": 48.87462353224703, "code_postal": "77479", "stop_lon": 2.6399584020460387, "coord": [48.87462353224703, 2.6399584020460387], "stop_id": 3677717, "stop_desc": "GARE ROUTIERE - 77479", "stop_name": "GARE DE VAIRES - TORCY"}, "geometry": {"type": "Point", "coordinates": [2.6399584020460387, 48.87462353224703]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4bf90955f95bdcfbe59e76ce9a9e61f58ed60000", "fields": {"departement": "77", "stop_lat": 48.84683513854755, "code_postal": "77337", "stop_lon": 2.6137321018284156, "coord": [48.84683513854755, 2.6137321018284156], "stop_id": 3677688, "stop_desc": "COURS DES ROCHES - 77337", "stop_name": "COLLEGE LE LUZARD"}, "geometry": {"type": "Point", "coordinates": [2.6137321018284156, 48.84683513854755]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7eede60cf453c382774e8e7baf830a37aba37cae", "fields": {"departement": "77", "stop_lat": 48.85127990915367, "code_postal": "77337", "stop_lon": 2.626788977783583, "coord": [48.85127990915367, 2.626788977783583], "stop_id": 3677698, "stop_desc": "299/300 AVENUE HENRI MENIER - 77337", "stop_name": "JULES FERRY"}, "geometry": {"type": "Point", "coordinates": [2.626788977783583, 48.85127990915367]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b23021175f246d49b474fffc9596915c9c2762fa", "fields": {"departement": "77", "stop_lat": 48.850130645149385, "code_postal": "77468", "stop_lon": 2.633632666637883, "coord": [48.850130645149385, 2.633632666637883], "stop_id": 3677702, "stop_desc": "0 COURS DE L'ARCHE GUEDON - 77468", "stop_name": "CITE SCOLAIRE"}, "geometry": {"type": "Point", "coordinates": [2.633632666637883, 48.850130645149385]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e3724224f3d110efb4f29e07d716b5b55978ea1e", "fields": {"departement": "77", "stop_lat": 48.85200407171796, "code_postal": "77337", "stop_lon": 2.6209096187583643, "coord": [48.85200407171796, 2.6209096187583643], "stop_id": 3677693, "stop_desc": "BD PIERRE CARLE - 77337", "stop_name": "LES QUATRE PAVES"}, "geometry": {"type": "Point", "coordinates": [2.6209096187583643, 48.85200407171796]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f37956069faa62cf2c7cb9432781978407a4b35e", "fields": {"departement": "77", "stop_lat": 48.85765117162262, "code_postal": "77468", "stop_lon": 2.645062363100196, "coord": [48.85765117162262, 2.645062363100196], "stop_id": 3677728, "stop_desc": "AV DE LA REPUBLIQUE - 77468", "stop_name": "LES CANTINES"}, "geometry": {"type": "Point", "coordinates": [2.645062363100196, 48.85765117162262]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "364c43737503beaff2d12f6e8b3658a7065705fa", "fields": {"departement": "77", "stop_lat": 48.84174321620415, "code_postal": "77258", "stop_lon": 2.6308206422384557, "coord": [48.84174321620415, 2.6308206422384557], "stop_id": 3677681, "stop_desc": "COURS DU BUISSON - 77258", "stop_name": "COURS DES LACS"}, "geometry": {"type": "Point", "coordinates": [2.6308206422384557, 48.84174321620415]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d4081855a68be2fbd8e9a8d9e04e5ad5d7a6c0cf", "fields": {"departement": "77", "stop_lat": 48.83957055510643, "code_postal": "77258", "stop_lon": 2.6335042622310265, "coord": [48.83957055510643, 2.6335042622310265], "stop_id": 3677679, "stop_desc": "RUE JEHAN SCARRON - 77258", "stop_name": "LOGNES RER"}, "geometry": {"type": "Point", "coordinates": [2.6335042622310265, 48.83957055510643]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1514b9fd66b914f11170de2f6cc3f0b553737900", "fields": {"departement": "93", "stop_lat": 48.929213819436754, "code_postal": "93007", "stop_lon": 2.479879844919834, "coord": [48.929213819436754, 2.479879844919834], "stop_id": 3672203, "stop_desc": "5 BIS AVENUE PAUL VAILLANT COUTURIER - 93007", "stop_name": "ROND-POINT PIERRE SEMARD - PAUL VAILLANT-COUTURIER"}, "geometry": {"type": "Point", "coordinates": [2.479879844919834, 48.929213819436754]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0259d3ae038114d4f5bc3c77677d5da50cdcd25a", "fields": {"departement": "75", "stop_lat": 48.858176462733276, "code_postal": "75120", "stop_lon": 2.4147418014332063, "coord": [48.858176462733276, 2.4147418014332063], "stop_id": 3672177, "stop_desc": "50 AVENUE DU PROFESSEUR ANDRE LEMIERRE - 75120", "stop_name": "EDOUARD VAILLANT"}, "geometry": {"type": "Point", "coordinates": [2.4147418014332063, 48.858176462733276]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f397954f376e1efbb8cc1f9da4120a43bc1b9a81", "fields": {"departement": "93", "stop_lat": 48.921359498339704, "code_postal": "93007", "stop_lon": 2.471921396034401, "coord": [48.921359498339704, 2.471921396034401], "stop_id": 3672195, "stop_desc": "41 AVENUE JEAN JAURES - 93007", "stop_name": "SURCOUF - JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.471921396034401, 48.921359498339704]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "15efcfcf46e4d22d58ab3e339db113584d8283e8", "fields": {"departement": "93", "stop_lat": 48.92114424225198, "code_postal": "93007", "stop_lon": 2.471538997805475, "coord": [48.92114424225198, 2.471538997805475], "stop_id": 3672196, "stop_desc": "26 AVENUE SURCOUF - 93007", "stop_name": "SURCOUF - JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.471538997805475, 48.92114424225198]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e30f8b357e88a6d72a6b5c447e070bd2c2b203c5", "fields": {"departement": "93", "stop_lat": 48.91953137599179, "code_postal": "93007", "stop_lon": 2.475216716918382, "coord": [48.91953137599179, 2.475216716918382], "stop_id": 3672194, "stop_desc": "AVENUE DE SURCOUF - 93007", "stop_name": "JARDINS DE LA NOUE"}, "geometry": {"type": "Point", "coordinates": [2.475216716918382, 48.91953137599179]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0533cd09a14bdd2009fdfbe2f270c1de2b516c01", "fields": {"departement": "93", "stop_lat": 48.864043684925385, "code_postal": "93006", "stop_lon": 2.417093563493888, "coord": [48.864043684925385, 2.417093563493888], "stop_id": 3672181, "stop_desc": "PISTE GARE ROUTIERE - 93006", "stop_name": "GALLIENI-METRO"}, "geometry": {"type": "Point", "coordinates": [2.417093563493888, 48.864043684925385]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "16833c29fde53ccf91a1fcb57e0f4aaeee1c5724", "fields": {"departement": "93", "stop_lat": 48.917972348346105, "code_postal": "93010", "stop_lon": 2.4788670820144523, "coord": [48.917972348346105, 2.4788670820144523], "stop_id": 3672193, "stop_desc": "AVENUE LEON JOUHAUX - 93010", "stop_name": "JOUHAUX - BLUM"}, "geometry": {"type": "Point", "coordinates": [2.4788670820144523, 48.917972348346105]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8cf6624bec116e50803d209d807c4a76b12b9d1b", "fields": {"departement": "75", "stop_lat": 48.847877242580424, "code_postal": "75112", "stop_lon": 2.3986165404125455, "coord": [48.847877242580424, 2.3986165404125455], "stop_id": 3672170, "stop_desc": "6 AVENUE DU TRONE - 75112", "stop_name": "NATION"}, "geometry": {"type": "Point", "coordinates": [2.3986165404125455, 48.847877242580424]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1aa0cc8a6a0c4adcddc3ec9b1c74f278a1c2b7a5", "fields": {"departement": "93", "stop_lat": 48.99158529799905, "code_postal": "93073", "stop_lon": 2.528488506041771, "coord": [48.99158529799905, 2.528488506041771], "stop_id": 3672210, "stop_desc": "ROUTE DU MIDI - 93073", "stop_name": "RUE DU TE"}, "geometry": {"type": "Point", "coordinates": [2.528488506041771, 48.99158529799905]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2ab756ceadf045f06c149378e7c78f0e08703cf2", "fields": {"departement": "93", "stop_lat": 48.99173782611795, "code_postal": "93073", "stop_lon": 2.5286392829463, "coord": [48.99173782611795, 2.5286392829463], "stop_id": 3672209, "stop_desc": "ROUTE DU MIDI - 93073", "stop_name": "RUE DU TE"}, "geometry": {"type": "Point", "coordinates": [2.5286392829463, 48.99173782611795]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "64d246186ccd4d0690e42d1f586a115ed6df7697", "fields": {"departement": "93", "stop_lat": 48.88922732924038, "code_postal": "93055", "stop_lon": 2.4151970836644328, "coord": [48.88922732924038, 2.4151970836644328], "stop_id": 3673632, "stop_desc": "FACE 26 RUE MEHUL - 93055", "stop_name": "CANDALE-STADE DE LA SEIGNEURIE"}, "geometry": {"type": "Point", "coordinates": [2.4151970836644328, 48.88922732924038]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "83f6bf73e5c3f4d8062a1da1bf4a135cd51e8279", "fields": {"departement": "77", "stop_lat": 48.836528352048354, "code_postal": "77258", "stop_lon": 2.649293830227508, "coord": [48.836528352048354, 2.649293830227508], "stop_id": 3677658, "stop_desc": "28/32 BOULEVARD CAMILLE SAINT SAENS - 77258", "stop_name": "CAMILLE SAINT-SAENS"}, "geometry": {"type": "Point", "coordinates": [2.649293830227508, 48.836528352048354]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ffcb0c5397b4aee101f562c479bd863299427667", "fields": {"departement": "77", "stop_lat": 48.83513512590522, "code_postal": "77258", "stop_lon": 2.652757168065108, "coord": [48.83513512590522, 2.652757168065108], "stop_id": 3677655, "stop_desc": "93 BOULEVARD DU SEGRAIS - 77258", "stop_name": "COLLEGE DU SEGRAIS"}, "geometry": {"type": "Point", "coordinates": [2.652757168065108, 48.83513512590522]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "36c890d69981a8cc856f023953789b7f51729c0a", "fields": {"departement": "93", "stop_lat": 48.889131993226684, "code_postal": "93055", "stop_lon": 2.409609191514184, "coord": [48.889131993226684, 2.409609191514184], "stop_id": 3673625, "stop_desc": "1-3 RUE MEHUL - 93055", "stop_name": "PAUL BERT-CIMETIERE"}, "geometry": {"type": "Point", "coordinates": [2.409609191514184, 48.889131993226684]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "941591ec24cf7a42c36ab9c9290811d5db9d7ede", "fields": {"departement": "93", "stop_lat": 48.882248515981516, "code_postal": "93061", "stop_lon": 2.4083867941823027, "coord": [48.882248515981516, 2.4083867941823027], "stop_id": 3673619, "stop_desc": "58 AV JEAN JAURES - 93061", "stop_name": "PLACE SEVERINE"}, "geometry": {"type": "Point", "coordinates": [2.4083867941823027, 48.882248515981516]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "15beb1a3e8334e0be8bc0d53ecfb1c28a9aaf67c", "fields": {"departement": "77", "stop_lat": 48.832408572708516, "code_postal": "77258", "stop_lon": 2.629392832135877, "coord": [48.832408572708516, 2.629392832135877], "stop_id": 3677675, "stop_desc": "RUE DE LA MAISON ROUGE - 77258", "stop_name": "MAISON ROUGE"}, "geometry": {"type": "Point", "coordinates": [2.629392832135877, 48.832408572708516]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "32e395174c695eb096bbfefc405f29ef72076a59", "fields": {"departement": "77", "stop_lat": 48.83917985395788, "code_postal": "77258", "stop_lon": 2.638771278646525, "coord": [48.83917985395788, 2.638771278646525], "stop_id": 3677668, "stop_desc": "RUE GABRIEL - 77258", "stop_name": "LYCEE EMILY BRONTE"}, "geometry": {"type": "Point", "coordinates": [2.638771278646525, 48.83917985395788]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "94ce2685245f324b3be5c107870b903557555cd0", "fields": {"departement": "77", "stop_lat": 48.8395297453052, "code_postal": "77258", "stop_lon": 2.6390183950454102, "coord": [48.8395297453052, 2.6390183950454102], "stop_id": 3677669, "stop_desc": "RUE GABRIEL - 77258", "stop_name": "LYCEE EMILY BRONTE"}, "geometry": {"type": "Point", "coordinates": [2.6390183950454102, 48.8395297453052]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9e6e6f1c3872f6f407b8d2924e29290f944089f3", "fields": {"departement": "93", "stop_lat": 48.89051177861249, "code_postal": "93055", "stop_lon": 2.4162893368150535, "coord": [48.89051177861249, 2.4162893368150535], "stop_id": 3673627, "stop_desc": "20 RUE COURTOIS - 93055", "stop_name": "CHARLES AURAY"}, "geometry": {"type": "Point", "coordinates": [2.4162893368150535, 48.89051177861249]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e4ce4d10dbdda36d52cc20239a0780edb354210b", "fields": {"departement": "77", "stop_lat": 48.84357882377328, "code_postal": "77468", "stop_lon": 2.6442299428434106, "coord": [48.84357882377328, 2.6442299428434106], "stop_id": 3677665, "stop_desc": "COURS DES LACS - 77468", "stop_name": "BAUDELAIRE"}, "geometry": {"type": "Point", "coordinates": [2.6442299428434106, 48.84357882377328]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c3f3bc3da5c0c7ae60c993e5d1cb67ad0115a680", "fields": {"departement": "77", "stop_lat": 48.825551256001276, "code_postal": "77258", "stop_lon": 2.6292725579153386, "coord": [48.825551256001276, 2.6292725579153386], "stop_id": 3677834, "stop_desc": "RUE DE LA MAISON ROUGE - 77258", "stop_name": "CHAMBRE DE COMMERCE ET D'INDUSTRIE"}, "geometry": {"type": "Point", "coordinates": [2.6292725579153386, 48.825551256001276]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d5aa92d6432ba2b007f0d69e69ccc882f4550838", "fields": {"departement": "77", "stop_lat": 48.83599091440836, "code_postal": "77258", "stop_lon": 2.6309106287804247, "coord": [48.83599091440836, 2.6309106287804247], "stop_id": 3677829, "stop_desc": "FACE 1 COURS DES PETITES ECURIES - 77258", "stop_name": "RUE DE LA FERME"}, "geometry": {"type": "Point", "coordinates": [2.6309106287804247, 48.83599091440836]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e1ccff9a5262834741bdf364fe9fe448cd2b6c0b", "fields": {"departement": "77", "stop_lat": 48.824135096644355, "code_postal": "77258", "stop_lon": 2.6349542702316158, "coord": [48.824135096644355, 2.6349542702316158], "stop_id": 3677822, "stop_desc": "BOULEVARD DE COURCERIN - 77258", "stop_name": "TOUR DE CONTROLE"}, "geometry": {"type": "Point", "coordinates": [2.6349542702316158, 48.824135096644355]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "307f089d09f49c479797c1b6df76a7a3bf1cbecb", "fields": {"departement": "77", "stop_lat": 48.82653648485217, "code_postal": "77146", "stop_lon": 2.6342874305518427, "coord": [48.82653648485217, 2.6342874305518427], "stop_id": 3677837, "stop_desc": "7 RUE PELLOUTIER - 77146", "stop_name": "PELLOUTIER"}, "geometry": {"type": "Point", "coordinates": [2.6342874305518427, 48.82653648485217]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9dabba18488c50bfc76818570608b37e2bbee5c1", "fields": {"departement": "77", "stop_lat": 48.85534399397671, "code_postal": "77083", "stop_lon": 2.5819342599216286, "coord": [48.85534399397671, 2.5819342599216286], "stop_id": 3681622, "stop_desc": "FACE 51 BOULEVARD DE LA REPUBLIQUE - 77083", "stop_name": "ROND-POINT DES PYRAMIDES"}, "geometry": {"type": "Point", "coordinates": [2.5819342599216286, 48.85534399397671]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2232bfd55f45daa2ec1531d42afe6e94efcf06f5", "fields": {"departement": "77", "stop_lat": 48.84498682387142, "code_postal": "77083", "stop_lon": 2.6044898346724326, "coord": [48.84498682387142, 2.6044898346724326], "stop_id": 3681600, "stop_desc": "FACE 14-16 COURS DU LUZARD - 77083", "stop_name": "FONTAINE AUX COULONS"}, "geometry": {"type": "Point", "coordinates": [2.6044898346724326, 48.84498682387142]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "04ac059bc9f65a99e40027d401b324d79d7ef1e5", "fields": {"departement": "93", "stop_lat": 48.85829250037943, "code_postal": "93033", "stop_lon": 2.581634896586026, "coord": [48.85829250037943, 2.581634896586026], "stop_id": 3681621, "stop_desc": "FACE 1 AVENUE DES PRINCES - 93033", "stop_name": "PLACE CHURCHILL"}, "geometry": {"type": "Point", "coordinates": [2.581634896586026, 48.85829250037943]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "40b7197ebf8eb617c6d76afee231f7d7302e34e4", "fields": {"departement": "77", "stop_lat": 48.83573286498586, "code_postal": "77083", "stop_lon": 2.5864026990954727, "coord": [48.83573286498586, 2.5864026990954727], "stop_id": 3681589, "stop_desc": "RUE ALBERT EINSTEIN - 77083", "stop_name": "ESPACE DESCARTES"}, "geometry": {"type": "Point", "coordinates": [2.5864026990954727, 48.83573286498586]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2cb065affd6bda0e049b3b2b3526b3b867f60db4", "fields": {"departement": "77", "stop_lat": 48.84103765462248, "code_postal": "77337", "stop_lon": 2.617786036193528, "coord": [48.84103765462248, 2.617786036193528], "stop_id": 3681609, "stop_desc": "AVENUE PIERRE MENDES FRANCE - 77337", "stop_name": "LES TOTEMS"}, "geometry": {"type": "Point", "coordinates": [2.617786036193528, 48.84103765462248]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "93d6e2ddb3c15d86c084fe9725fe8a9271e7e13d", "fields": {"departement": "77", "stop_lat": 48.84019511198989, "code_postal": "77337", "stop_lon": 2.6206135837899356, "coord": [48.84019511198989, 2.6206135837899356], "stop_id": 3681610, "stop_desc": "FACE 2 AVENUE MENDES FRANCE - 77337", "stop_name": "LES HAMEAUX"}, "geometry": {"type": "Point", "coordinates": [2.6206135837899356, 48.84019511198989]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cda777f262b05d43d2d2c28fd788b38adee6b449", "fields": {"departement": "77", "stop_lat": 48.838882989229866, "code_postal": "77258", "stop_lon": 2.6280405027315052, "coord": [48.838882989229866, 2.6280405027315052], "stop_id": 3681613, "stop_desc": "BOULEVARD DU MANDINET - 77258", "stop_name": "LE VILLAGE"}, "geometry": {"type": "Point", "coordinates": [2.6280405027315052, 48.838882989229866]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fff5ab1a43681a15735b817e60c689835c7d3fc0", "fields": {"departement": "77", "stop_lat": 48.8404375150427, "code_postal": "77337", "stop_lon": 2.6207238353056628, "coord": [48.8404375150427, 2.6207238353056628], "stop_id": 3681611, "stop_desc": "2 AVENUE MENDES FRANCE - 77337", "stop_name": "LES HAMEAUX"}, "geometry": {"type": "Point", "coordinates": [2.6207238353056628, 48.8404375150427]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9cd0ab1a0999c9a20449fbf24bca3395bf6d5623", "fields": {"departement": "77", "stop_lat": 48.86831057428451, "code_postal": "77108", "stop_lon": 2.574175706615011, "coord": [48.86831057428451, 2.574175706615011], "stop_id": 3681617, "stop_desc": "RUE DE GOURNAY - 77108", "stop_name": "RUE DU PORT"}, "geometry": {"type": "Point", "coordinates": [2.574175706615011, 48.86831057428451]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5a34186af7bdaea06c6de3902f5cd1a21423e5da", "fields": {"departement": "92", "stop_lat": 48.839540271584404, "code_postal": "92012", "stop_lon": 2.2404884315548563, "coord": [48.839540271584404, 2.2404884315548563], "stop_id": 3681814, "stop_desc": "71-73 ROUTE DE LA REINE - 92012", "stop_name": "ROUTE DE LA REINE - JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.2404884315548563, 48.839540271584404]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b9f09ff1ce61ab129ed1d3ddd9f1226682a03448", "fields": {"departement": "92", "stop_lat": 48.84564886077318, "code_postal": "92012", "stop_lon": 2.2369365558260963, "coord": [48.84564886077318, 2.2369365558260963], "stop_id": 3681820, "stop_desc": "2 BOULEVARD JEAN JAURES - 92012", "stop_name": "EGLISE DE BOULOGNE-BILLANCOURT"}, "geometry": {"type": "Point", "coordinates": [2.2369365558260963, 48.84564886077318]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "71dada8776f18946e25e76d8b6e153750b077b44", "fields": {"departement": "92", "stop_lat": 48.833107661754134, "code_postal": "92012", "stop_lon": 2.2436180205499823, "coord": [48.833107661754134, 2.2436180205499823], "stop_id": 3681810, "stop_desc": "202 BOULEVARD JEAN JAURES - 92012", "stop_name": "MARCEL SEMBAT-METRO"}, "geometry": {"type": "Point", "coordinates": [2.2436180205499823, 48.833107661754134]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8203a8289ebdbce3d178fc94d055b8fbb284a84d", "fields": {"departement": "92", "stop_lat": 48.82314504635348, "code_postal": "92040", "stop_lon": 2.2497747044972445, "coord": [48.82314504635348, 2.2497747044972445], "stop_id": 3681801, "stop_desc": "FACE 16 BOULEVARD DES ILES - 92040", "stop_name": "ILE SAINT GERMAIN"}, "geometry": {"type": "Point", "coordinates": [2.2497747044972445, 48.82314504635348]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "75c77c4bae922a2988ca340a98dc255ecbe42923", "fields": {"departement": "92", "stop_lat": 48.84171383895608, "code_postal": "92012", "stop_lon": 2.2387551197396354, "coord": [48.84171383895608, 2.2387551197396354], "stop_id": 3681816, "stop_desc": "44 BOULEVARD JEAN JAURES - 92012", "stop_name": "JEAN JAURES-METRO"}, "geometry": {"type": "Point", "coordinates": [2.2387551197396354, 48.84171383895608]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ff88a7a2037d78ceac12815f7c3e55af0ca37ba9", "fields": {"departement": "92", "stop_lat": 48.82168067250145, "code_postal": "92040", "stop_lon": 2.250621051266338, "coord": [48.82168067250145, 2.250621051266338], "stop_id": 3681799, "stop_desc": "PLACE DE LA RESISTANCE - 92040", "stop_name": "LES MOULINEAUX"}, "geometry": {"type": "Point", "coordinates": [2.250621051266338, 48.82168067250145]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "274b3e4676eabcc689d9ee037928113c3e70c91d", "fields": {"departement": "92", "stop_lat": 48.846447575148964, "code_postal": "92012", "stop_lon": 2.2466851017659035, "coord": [48.846447575148964, 2.2466851017659035], "stop_id": 3681825, "stop_desc": "39 BOULEVARD D'AUTEUIL - 92012", "stop_name": "RUE DES PINS"}, "geometry": {"type": "Point", "coordinates": [2.2466851017659035, 48.846447575148964]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "da4d12161af4a07e0f808f3cd055d62a034ff79c", "fields": {"departement": "92", "stop_lat": 48.830259842735266, "code_postal": "92012", "stop_lon": 2.24522951639486, "coord": [48.830259842735266, 2.24522951639486], "stop_id": 3681808, "stop_desc": "FACE 227 BOULEVARD JEAN JAURES - 92012", "stop_name": "DOME"}, "geometry": {"type": "Point", "coordinates": [2.24522951639486, 48.830259842735266]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b6c60760d3335779acd249fe932bb82daaf6c26c", "fields": {"departement": "92", "stop_lat": 48.81974370570486, "code_postal": "92040", "stop_lon": 2.2568578641021544, "coord": [48.81974370570486, 2.2568578641021544], "stop_id": 3681795, "stop_desc": "107 AVENUE DE VERDUN - 92040", "stop_name": "PAUL BERT"}, "geometry": {"type": "Point", "coordinates": [2.2568578641021544, 48.81974370570486]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "526dc976e13baa5f9e7cb64b3b0b483b52dab984", "fields": {"departement": "92", "stop_lat": 48.818126698064745, "code_postal": "92046", "stop_lon": 2.2925458123472287, "coord": [48.818126698064745, 2.2925458123472287], "stop_id": 3681987, "stop_desc": "FACE 5 BD CAMELINAT - 92046", "stop_name": "GARE DE VANVES - MALAKOFF"}, "geometry": {"type": "Point", "coordinates": [2.2925458123472287, 48.818126698064745]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5ff9557829ddd15efff05964e1b486f9e5136b9c", "fields": {"departement": "92", "stop_lat": 48.82055645343307, "code_postal": "92046", "stop_lon": 2.301662850605415, "coord": [48.82055645343307, 2.301662850605415], "stop_id": 3681992, "stop_desc": "PL DU 11 NOVEMBRE - 92046", "stop_name": "HOTEL DE VILLE DE MALAKOFF."}, "geometry": {"type": "Point", "coordinates": [2.301662850605415, 48.82055645343307]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d03ea41c0c420f8b458db1d19a51da8d9944f980", "fields": {"departement": "92", "stop_lat": 48.82063740758417, "code_postal": "92046", "stop_lon": 2.3018805657242396, "coord": [48.82063740758417, 2.3018805657242396], "stop_id": 3681978, "stop_desc": "PL DU 11 NOVEMBRE - 92046", "stop_name": "HOTEL DE VILLE DE MALAKOFF"}, "geometry": {"type": "Point", "coordinates": [2.3018805657242396, 48.82063740758417]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fdc4a3eccd7a4dd69b7971f1a478538763201b0f", "fields": {"departement": "92", "stop_lat": 48.81410730077502, "code_postal": "92046", "stop_lon": 2.287786140478486, "coord": [48.81410730077502, 2.287786140478486], "stop_id": 3681986, "stop_desc": "0 RPT HENRI BARBUSSE - 92046", "stop_name": "ROND-POINT HENRI BARBUSSE"}, "geometry": {"type": "Point", "coordinates": [2.287786140478486, 48.81410730077502]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "578026b03ada892e9bf4050d3450d3593a055ba2", "fields": {"departement": "92", "stop_lat": 48.818264411263996, "code_postal": "92040", "stop_lon": 2.2493474086296885, "coord": [48.818264411263996, 2.2493474086296885], "stop_id": 3681856, "stop_desc": "FACE 37 RUE JEAN PIERRE TIMBAUD - 92040", "stop_name": "PAUL BESNARD"}, "geometry": {"type": "Point", "coordinates": [2.2493474086296885, 48.818264411263996]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0fa37263c5d848588fc23c5948b6607d15a0ad61", "fields": {"departement": "92", "stop_lat": 48.81576327711803, "code_postal": "92046", "stop_lon": 2.293486895647058, "coord": [48.81576327711803, 2.293486895647058], "stop_id": 3682007, "stop_desc": "99 R VAILLANT COUTURIER - 92046", "stop_name": "AMBROISE CROIZAT"}, "geometry": {"type": "Point", "coordinates": [2.293486895647058, 48.81576327711803]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d9726a01d942dd11e89427c6c8003f99bb197257", "fields": {"departement": "92", "stop_lat": 48.825989252020015, "code_postal": "92040", "stop_lon": 2.2699021664711476, "coord": [48.825989252020015, 2.2699021664711476], "stop_id": 3681863, "stop_desc": "RUE DU GOUVERNEUR GENERAL EBOUE - 92040", "stop_name": "MEDIATHEQUE"}, "geometry": {"type": "Point", "coordinates": [2.2699021664711476, 48.825989252020015]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b2ca703359332c517d9217d8a2c83936c42707bd", "fields": {"departement": "92", "stop_lat": 48.8150547502173, "code_postal": "92046", "stop_lon": 2.29778800057985, "coord": [48.8150547502173, 2.29778800057985], "stop_id": 3681989, "stop_desc": "RUE GUY MOQUET - 92046", "stop_name": "ETIENNE DOLET-METRO"}, "geometry": {"type": "Point", "coordinates": [2.29778800057985, 48.8150547502173]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f7e0e0a7e1268e52a4924d77110b1752bf9419ee", "fields": {"departement": "92", "stop_lat": 48.8179051379773, "code_postal": "92046", "stop_lon": 2.3018552078239987, "coord": [48.8179051379773, 2.3018552078239987], "stop_id": 3682012, "stop_desc": "1 R GUY MOQUET - 92046", "stop_name": "AUGUSTIN DUMONT"}, "geometry": {"type": "Point", "coordinates": [2.3018552078239987, 48.8179051379773]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "75713e6c61fc424e3478f14acf64100c57d79a53", "fields": {"departement": "93", "stop_lat": 48.90658543502007, "code_postal": "93010", "stop_lon": 2.4865114865196762, "coord": [48.90658543502007, 2.4865114865196762], "stop_id": 3682172, "stop_desc": "170 AVENUE GALLIENI - 93010", "stop_name": "PASTEUR - HOPITAL JEAN VERDIER"}, "geometry": {"type": "Point", "coordinates": [2.4865114865196762, 48.90658543502007]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "66cac60843d63db010924a855e36a2123059271d", "fields": {"departement": "93", "stop_lat": 48.948312438689825, "code_postal": "93071", "stop_lon": 2.5299250318831574, "coord": [48.948312438689825, 2.5299250318831574], "stop_id": 3682089, "stop_desc": "AVENUE SALVADOR ALLENDE - 93071", "stop_name": "BUTTE MONTCELEUX"}, "geometry": {"type": "Point", "coordinates": [2.5299250318831574, 48.948312438689825]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c66e1e6b24e37034ebfa16b382b11967a7d4ae12", "fields": {"departement": "92", "stop_lat": 48.81493202901691, "code_postal": "92046", "stop_lon": 2.2828724441857347, "coord": [48.81493202901691, 2.2828724441857347], "stop_id": 4473562, "stop_desc": "35 BOULEVARD DE STALINGRAD - 92046", "stop_name": "LOUIS GIRARD"}, "geometry": {"type": "Point", "coordinates": [2.2828724441857347, 48.81493202901691]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "084a10ddf4da928b89d14d8fc7b60294b048267b", "fields": {"departement": "92", "stop_lat": 48.81410730077502, "code_postal": "92046", "stop_lon": 2.287786140478486, "coord": [48.81410730077502, 2.287786140478486], "stop_id": 4473565, "stop_desc": "0 RPT HENRI BARBUSSE - 92046", "stop_name": "ROND-POINT HENRI BARBUSSE"}, "geometry": {"type": "Point", "coordinates": [2.287786140478486, 48.81410730077502]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8051873e733841840601eb7b7ecfd3e0be9870bc", "fields": {"departement": "92", "stop_lat": 48.810852739317866, "code_postal": "92046", "stop_lon": 2.285448648458278, "coord": [48.810852739317866, 2.285448648458278], "stop_id": 4473567, "stop_desc": "BOULEVARD HENRI BARBUSSE - 92046", "stop_name": "BARBUSSE-VEDRINES"}, "geometry": {"type": "Point", "coordinates": [2.285448648458278, 48.810852739317866]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "be27f3a1f5ac4d7662cd79bd74ab5af4805e66a7", "fields": {"departement": "92", "stop_lat": 48.80873378036129, "code_postal": "92020", "stop_lon": 2.290662452573169, "coord": [48.80873378036129, 2.290662452573169], "stop_id": 4473568, "stop_desc": "2 RUE JULES VEDRINES - 92020", "stop_name": "JEAN MERMOZ"}, "geometry": {"type": "Point", "coordinates": [2.290662452573169, 48.80873378036129]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "061f8b9bf8906e6d09de164549846bba5d8dd626", "fields": {"departement": "92", "stop_lat": 48.81128070086906, "code_postal": "92020", "stop_lon": 2.3002947806132377, "coord": [48.81128070086906, 2.3002947806132377], "stop_id": 4473574, "stop_desc": "204 AVENUE DE PARIS - 92020", "stop_name": "CHATILLON-MONTROUGE"}, "geometry": {"type": "Point", "coordinates": [2.3002947806132377, 48.81128070086906]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e403b710090cbcbefde231a95a8c3284cb2486be", "fields": {"departement": "92", "stop_lat": 48.80977495506393, "code_postal": "92007", "stop_lon": 2.318108483673673, "coord": [48.80977495506393, 2.318108483673673], "stop_id": 4473579, "stop_desc": "FACE 76 AVENUE MARX DORMOY - 92007", "stop_name": "AVENUE HENRI GINOUX"}, "geometry": {"type": "Point", "coordinates": [2.318108483673673, 48.80977495506393]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "06da2413bb9ffb3fb6b39f366c49de5a2d35cf11", "fields": {"departement": "94", "stop_lat": 48.80208291625755, "code_postal": "94003", "stop_lon": 2.3395812710225736, "coord": [48.80208291625755, 2.3395812710225736], "stop_id": 4473591, "stop_desc": "FACE 14 AVENUE MALLERET DE JOINVILLE - 94003", "stop_name": "MALLERET-JOINVILLE"}, "geometry": {"type": "Point", "coordinates": [2.3395812710225736, 48.80208291625755]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7df5d19b1abe7f1b69accedb6ed9a06ac349fcd3", "fields": {"departement": "94", "stop_lat": 48.812701913757074, "code_postal": "94041", "stop_lon": 2.3703099274559416, "coord": [48.812701913757074, 2.3703099274559416], "stop_id": 4473600, "stop_desc": "40 AVENUE DE VERDUN - 94041", "stop_name": "CIMETIERE PARISIEN - PLACE DU GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.3703099274559416, 48.812701913757074]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "85bf3c4605ba84eec28265e231a63a91f3ee0a43", "fields": {"departement": "94", "stop_lat": 48.811510913345934, "code_postal": "94041", "stop_lon": 2.3840671320019258, "coord": [48.811510913345934, 2.3840671320019258], "stop_id": 4473609, "stop_desc": "7 PLACE DE LA REPUBLIQUE - 94041", "stop_name": "MAIRIE D'IVRY-METRO"}, "geometry": {"type": "Point", "coordinates": [2.3840671320019258, 48.811510913345934]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5e1b43b5c78881b4a1c07961997b75f13a30bdb0", "fields": {"departement": "94", "stop_lat": 48.814597471656555, "code_postal": "94041", "stop_lon": 2.3958689901981685, "coord": [48.814597471656555, 2.3958689901981685], "stop_id": 4473617, "stop_desc": "FACE 37 BD DE BRANDEBOURG - 94041", "stop_name": "INSURRECTION D'AOUT 1944"}, "geometry": {"type": "Point", "coordinates": [2.3958689901981685, 48.814597471656555]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "75b437877b6ea0987622185b543a66218eb00855", "fields": {"departement": "94", "stop_lat": 48.814513710442014, "code_postal": "94041", "stop_lon": 2.401435001812316, "coord": [48.814513710442014, 2.401435001812316], "stop_id": 4473618, "stop_desc": "FACE 11 BD DE BRANDEBOURG - 94041", "stop_name": "GAMBETTA"}, "geometry": {"type": "Point", "coordinates": [2.401435001812316, 48.814513710442014]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b0da0554e5cfe691ae5cea531753185e2f93ce66", "fields": {"departement": "92", "stop_lat": 48.810878142529376, "code_postal": "92049", "stop_lon": 2.306990255108043, "coord": [48.810878142529376, 2.306990255108043], "stop_id": 4473625, "stop_desc": "178 AVENUE MARX DORMOY - 92049", "stop_name": "MAURICE ARNOUX"}, "geometry": {"type": "Point", "coordinates": [2.306990255108043, 48.810878142529376]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6e6922c467f48c0429235bf3c523133872f229c3", "fields": {"departement": "92", "stop_lat": 48.83098427241765, "code_postal": "92040", "stop_lon": 2.2662745236757686, "coord": [48.83098427241765, 2.2662745236757686], "stop_id": 4473627, "stop_desc": "42 RUE CAMILLE DESMOULINS - 92040", "stop_name": "GALLIENI-CAMILLE DESMOULINS"}, "geometry": {"type": "Point", "coordinates": [2.2662745236757686, 48.83098427241765]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9b0aee2a2573f9aa5c7c09bbb547e71584e6d84a", "fields": {"departement": "92", "stop_lat": 48.82591911767163, "code_postal": "92040", "stop_lon": 2.2731010899323922, "coord": [48.82591911767163, 2.2731010899323922], "stop_id": 4473631, "stop_desc": "FACE 29 RUE KLEBER - 92040", "stop_name": "MAIRIE D'ISSY-METRO"}, "geometry": {"type": "Point", "coordinates": [2.2731010899323922, 48.82591911767163]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "56b4bac25b79637a83f8223825cfb9c3fadd6cfe", "fields": {"departement": "92", "stop_lat": 48.8193227451855, "code_postal": "92040", "stop_lon": 2.2741980687988135, "coord": [48.8193227451855, 2.2741980687988135], "stop_id": 4473633, "stop_desc": "FACE 27 RUE GABRIEL PERI - 92040", "stop_name": "RUE DU FORT"}, "geometry": {"type": "Point", "coordinates": [2.2741980687988135, 48.8193227451855]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d15b9e8b59d8ddc0c9c6f34d585874c4b3b55025", "fields": {"departement": "92", "stop_lat": 48.81422911028907, "code_postal": "92046", "stop_lon": 2.2789129655955733, "coord": [48.81422911028907, 2.2789129655955733], "stop_id": 4473635, "stop_desc": "BD DE STALINGRAD - 92046", "stop_name": "CLOS MONTHOLON"}, "geometry": {"type": "Point", "coordinates": [2.2789129655955733, 48.81422911028907]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c83fb66e4c543d55b33cb7ce245dd225e2b13e37", "fields": {"departement": "92", "stop_lat": 48.81377438920338, "code_postal": "92046", "stop_lon": 2.286915490287406, "coord": [48.81377438920338, 2.286915490287406], "stop_id": 4473637, "stop_desc": "BOULEVARD HENRI BARBUSSE - 92046", "stop_name": "ROND-POINT HENRI BARBUSSE"}, "geometry": {"type": "Point", "coordinates": [2.286915490287406, 48.81377438920338]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9c8dda89d47fd6e75d2b852870ea3ebf766948fd", "fields": {"departement": "92", "stop_lat": 48.81184495378081, "code_postal": "92046", "stop_lon": 2.294401959261595, "coord": [48.81184495378081, 2.294401959261595], "stop_id": 4473640, "stop_desc": "21 BOULEVARD DE STALINGRAD - 92046", "stop_name": "ROND-POINT GAGARINE"}, "geometry": {"type": "Point", "coordinates": [2.294401959261595, 48.81184495378081]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "773f62eee366c5d3028eb5d7788b4728c3b26c49", "fields": {"departement": "92", "stop_lat": 48.811019559519394, "code_postal": "92020", "stop_lon": 2.2987300300980564, "coord": [48.811019559519394, 2.2987300300980564], "stop_id": 4473641, "stop_desc": "7 BOULEVARD DE STALINGRAD - 92020", "stop_name": "MAISON BLANCHE"}, "geometry": {"type": "Point", "coordinates": [2.2987300300980564, 48.811019559519394]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b5facbf4ac602135699e52f62effd75a96edb403", "fields": {"departement": "94", "stop_lat": 48.80946135436161, "code_postal": "94003", "stop_lon": 2.3256200680171903, "coord": [48.80946135436161, 2.3256200680171903], "stop_id": 4473648, "stop_desc": "AVENUE MARX DORMOY - 94003", "stop_name": "PRIEUR DE LA COTE D'OR"}, "geometry": {"type": "Point", "coordinates": [2.3256200680171903, 48.80946135436161]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ade38fffde9bae83de87f4e03e8571a692434c47", "fields": {"departement": "94", "stop_lat": 48.806576843454636, "code_postal": "94003", "stop_lon": 2.3368192563048034, "coord": [48.806576843454636, 2.3368192563048034], "stop_id": 4473652, "stop_desc": "FACE 9 AVENUE PAUL DOUMER - 94003", "stop_name": "HOTEL DE VILLE D'ARCUEIL"}, "geometry": {"type": "Point", "coordinates": [2.3368192563048034, 48.806576843454636]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "54027fa5d99c4631d5c11082da41c1c557b7cdc1", "fields": {"departement": "94", "stop_lat": 48.80727665850562, "code_postal": "94043", "stop_lon": 2.3543860945189143, "coord": [48.80727665850562, 2.3543860945189143], "stop_id": 4473656, "stop_desc": "25 AVENUE CHARLES GIDE - 94043", "stop_name": "BARNUFLES-LA PISCINE"}, "geometry": {"type": "Point", "coordinates": [2.3543860945189143, 48.80727665850562]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3ea8de32e48fac122971f8ce1f726d2571996f77", "fields": {"departement": "94", "stop_lat": 48.811402915146694, "code_postal": "94041", "stop_lon": 2.384434457204656, "coord": [48.811402915146694, 2.384434457204656], "stop_id": 4473663, "stop_desc": "FACE 100 AVENUE GEORGES GOSNAT - 94041", "stop_name": "MAIRIE D'IVRY-METRO"}, "geometry": {"type": "Point", "coordinates": [2.384434457204656, 48.811402915146694]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "93beed5677e6418cf9732c8f589e6c83128f72a0", "fields": {"departement": "93", "stop_lat": 48.95742446586799, "code_postal": "93005", "stop_lon": 2.462940206766457, "coord": [48.95742446586799, 2.462940206766457], "stop_id": 4473669, "stop_desc": "VOIE LONGEANT L'AUTOROUTE A1 - 93005", "stop_name": "GARONOR-PORTE SUD"}, "geometry": {"type": "Point", "coordinates": [2.462940206766457, 48.95742446586799]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1b4ace7da225b5c86a77924c28c6e0af4cfb185f", "fields": {"departement": "94", "stop_lat": 48.768580691760285, "code_postal": "94073", "stop_lon": 2.3687589872860038, "coord": [48.768580691760285, 2.3687589872860038], "stop_id": 4480119, "stop_desc": "127 AVENUE DU GENERAL DE GAULLE - 94073", "stop_name": "BRETAGNE"}, "geometry": {"type": "Point", "coordinates": [2.3687589872860038, 48.768580691760285]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8e3284c04abacfe55a8297a934d2f2f84fa263f5", "fields": {"departement": "92", "stop_lat": 48.851280200084524, "code_postal": "92064", "stop_lon": 2.205357475507049, "coord": [48.851280200084524, 2.205357475507049], "stop_id": 4532993, "stop_desc": "FACE 107 R DE BUZENVAL - 92064", "stop_name": "CHAMP DE COURSES"}, "geometry": {"type": "Point", "coordinates": [2.205357475507049, 48.851280200084524]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a49e33a287fec3c4e078b1965772474175d63cd1", "fields": {"departement": "92", "stop_lat": 48.8532349785962, "code_postal": "92064", "stop_lon": 2.2013620683801602, "coord": [48.8532349785962, 2.2013620683801602], "stop_id": 4532994, "stop_desc": "FACE 153 R DE BUZENVAL - 92064", "stop_name": "LABORATOIRE DEBAT"}, "geometry": {"type": "Point", "coordinates": [2.2013620683801602, 48.8532349785962]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1869aba37fe3969fe0ab449061e56d01e3374f78", "fields": {"departement": "92", "stop_lat": 48.85987883052335, "code_postal": "92064", "stop_lon": 2.2203050624577836, "coord": [48.85987883052335, 2.2203050624577836], "stop_id": 4533008, "stop_desc": "11 R DU VAL D'OR - 92064", "stop_name": "AVENUE DE SURESNES"}, "geometry": {"type": "Point", "coordinates": [2.2203050624577836, 48.85987883052335]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "946c6b40f233738b35b3ae770ddf0ed99c60911d", "fields": {"departement": "92", "stop_lat": 48.82471726818294, "code_postal": "92077", "stop_lon": 2.1863276927532778, "coord": [48.82471726818294, 2.1863276927532778], "stop_id": 4533031, "stop_desc": "30 R DE VERSAILLES - 92077", "stop_name": "JEAN ROSTAND"}, "geometry": {"type": "Point", "coordinates": [2.1863276927532778, 48.82471726818294]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "acd1c289a909a6e6c738fb23a8f13817f473f15c", "fields": {"departement": "92", "stop_lat": 48.8210263628273, "code_postal": "92077", "stop_lon": 2.1749734144286883, "coord": [48.8210263628273, 2.1749734144286883], "stop_id": 4533036, "stop_desc": "125 R DE VERSAILLES - 92077", "stop_name": "LES SAPINS BLEUS"}, "geometry": {"type": "Point", "coordinates": [2.1749734144286883, 48.8210263628273]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3f31c9fa864113fadd90f42ac781f2e5cd48f421", "fields": {"departement": "92", "stop_lat": 48.817414078730216, "code_postal": "92077", "stop_lon": 2.1628175032631214, "coord": [48.817414078730216, 2.1628175032631214], "stop_id": 4533041, "stop_desc": "FACE 235 RUE DE VERSAILLES - 92077", "stop_name": "PORTE VERTE"}, "geometry": {"type": "Point", "coordinates": [2.1628175032631214, 48.817414078730216]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ba9c0f0ee5ba0171137e80a944ae46e30df6ebe5", "fields": {"departement": "78", "stop_lat": 48.81321418465777, "code_postal": "78646", "stop_lon": 2.1550746281726725, "coord": [48.81321418465777, 2.1550746281726725], "stop_id": 4533046, "stop_desc": "144 AV DES ETATS-UNIS - 78646", "stop_name": "GAUTHIER DE CLAGNY"}, "geometry": {"type": "Point", "coordinates": [2.1550746281726725, 48.81321418465777]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2307b16cc370dcb6a2f074c61284900e4ec32942", "fields": {"departement": "78", "stop_lat": 48.80980073246742, "code_postal": "78646", "stop_lon": 2.1340488515269387, "coord": [48.80980073246742, 2.1340488515269387], "stop_id": 4533050, "stop_desc": "55 R DU MARECHAL FOCH - 78646", "stop_name": "GARE DE VERSAILLES - RIVE DROITE"}, "geometry": {"type": "Point", "coordinates": [2.1340488515269387, 48.80980073246742]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cec3f9d40c67570b5a963ff6a2e552346ce7c09b", "fields": {"departement": "92", "stop_lat": 48.829427302164234, "code_postal": "92064", "stop_lon": 2.194005334612934, "coord": [48.829427302164234, 2.194005334612934], "stop_id": 4533051, "stop_desc": "0 ROUTE DE PARIS A VERSAILLES - 92064", "stop_name": "PRADIER"}, "geometry": {"type": "Point", "coordinates": [2.194005334612934, 48.829427302164234]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f2290742075056a5bcb49c0c29b600b2a35bc5ab", "fields": {"departement": "93", "stop_lat": 48.87258924183589, "code_postal": "93064", "stop_lon": 2.4845743335348023, "coord": [48.87258924183589, 2.4845743335348023], "stop_id": 4557272, "stop_desc": "RUE DU GENERAL GALLIENI - 93064", "stop_name": "COPERNIC"}, "geometry": {"type": "Point", "coordinates": [2.4845743335348023, 48.87258924183589]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "44edc36a9fd7e19aa5355a43df70564bd70040d5", "fields": {"departement": "93", "stop_lat": 48.862774686955795, "code_postal": "93064", "stop_lon": 2.498713070287981, "coord": [48.862774686955795, 2.498713070287981], "stop_id": 4557281, "stop_desc": "FACE 6 RUE DES DEUX COMMUNES - 93064", "stop_name": "LES DEUX COMMUNES"}, "geometry": {"type": "Point", "coordinates": [2.498713070287981, 48.862774686955795]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "01e0b39aed0b6971ecf724d6e72e873f04726bd3", "fields": {"departement": "93", "stop_lat": 48.85786341822975, "code_postal": "93049", "stop_lon": 2.5017351434503667, "coord": [48.85786341822975, 2.5017351434503667], "stop_id": 4557284, "stop_desc": "FACE 3 RUE PARMENTIER - 93049", "stop_name": "DANIELLE CASANOVA"}, "geometry": {"type": "Point", "coordinates": [2.5017351434503667, 48.85786341822975]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c5a8d89176844a0e7bae7355e2f0aaacdf2dc023", "fields": {"departement": "94", "stop_lat": 48.850065501068165, "code_postal": "94058", "stop_lon": 2.4993952858883075, "coord": [48.850065501068165, 2.4993952858883075], "stop_id": 4557289, "stop_desc": "63 BOULEVARD ALSACE-LORRAINE - 94058", "stop_name": "AVRON"}, "geometry": {"type": "Point", "coordinates": [2.4993952858883075, 48.850065501068165]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8067559d1478621cc99f00cc6ecb3901b86b9bd3", "fields": {"departement": "94", "stop_lat": 48.85253432483068, "code_postal": "94033", "stop_lon": 2.4877859452410003, "coord": [48.85253432483068, 2.4877859452410003], "stop_id": 4557292, "stop_desc": "AVENUE LOUISON BOBET - 94033", "stop_name": "VAL DE FONTENAY RER - LOUISON BOBET"}, "geometry": {"type": "Point", "coordinates": [2.4877859452410003, 48.85253432483068]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "efd14658587a19a4d1ef82e81f2f66ea64c61a57", "fields": {"departement": "94", "stop_lat": 48.84920123008757, "code_postal": "94033", "stop_lon": 2.4867821452076706, "coord": [48.84920123008757, 2.4867821452076706], "stop_id": 4557297, "stop_desc": "RUE GEORGES GUYNEMER - 94033", "stop_name": "LE BOIS CADET"}, "geometry": {"type": "Point", "coordinates": [2.4867821452076706, 48.84920123008757]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "88324d09b88651753e2402cf98c122e6515fff0d", "fields": {"departement": "77", "stop_lat": 48.84492440170382, "code_postal": "77337", "stop_lon": 2.6198496230932244, "coord": [48.84492440170382, 2.6198496230932244], "stop_id": 4208563, "stop_desc": "BOULEVARD SALVADOR ALLENDE - 77337", "stop_name": "LES PROVINCES"}, "geometry": {"type": "Point", "coordinates": [2.6198496230932244, 48.84492440170382]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "35d3b02bc410a6596d031880c101a3a272206923", "fields": {"departement": "77", "stop_lat": 48.85163425678612, "code_postal": "77337", "stop_lon": 2.6214659706761654, "coord": [48.85163425678612, 2.6214659706761654], "stop_id": 4208565, "stop_desc": "COURS DE L'ARCHE GUEDON - 77337", "stop_name": "LES QUATRE PAVES"}, "geometry": {"type": "Point", "coordinates": [2.6214659706761654, 48.85163425678612]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "41cba41f6d3aa98a96f366751ce9ff373d02a518", "fields": {"departement": "77", "stop_lat": 48.85048981271242, "code_postal": "77337", "stop_lon": 2.6301347406719437, "coord": [48.85048981271242, 2.6301347406719437], "stop_id": 4208568, "stop_desc": "COURS DE L'ARCHE GUEDON - 77337", "stop_name": "LA REMISE AUX FRAISES"}, "geometry": {"type": "Point", "coordinates": [2.6301347406719437, 48.85048981271242]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fce04b25ebff2a0a50b751f1009a3850d5a83fd8", "fields": {"departement": "77", "stop_lat": 48.850679452087306, "code_postal": "77337", "stop_lon": 2.6297681081578985, "coord": [48.850679452087306, 2.6297681081578985], "stop_id": 4208569, "stop_desc": "COURS DE L'ARCHE GUEDON - 77337", "stop_name": "LA REMISE AUX FRAISES"}, "geometry": {"type": "Point", "coordinates": [2.6297681081578985, 48.850679452087306]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9d3330674802cd769d0e70e1919c2019d479749d", "fields": {"departement": "77", "stop_lat": 48.850130645149385, "code_postal": "77468", "stop_lon": 2.633632666637883, "coord": [48.850130645149385, 2.633632666637883], "stop_id": 4208570, "stop_desc": "0 COURS DE L'ARCHE GUEDON - 77468", "stop_name": "CITE SCOLAIRE"}, "geometry": {"type": "Point", "coordinates": [2.633632666637883, 48.850130645149385]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a4398da8f7a4f5e102cbdfd32b1b34159ccaf995", "fields": {"departement": "77", "stop_lat": 48.84983959613489, "code_postal": "77468", "stop_lon": 2.6385881100782096, "coord": [48.84983959613489, 2.6385881100782096], "stop_id": 4208573, "stop_desc": "9 COURS DE L'ARCHE GUEDON - 77468", "stop_name": "LA MOGOTTE"}, "geometry": {"type": "Point", "coordinates": [2.6385881100782096, 48.84983959613489]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a753bc041a3ecc30feb9f087f193fb82fd5aaae7", "fields": {"departement": "77", "stop_lat": 48.84961812216385, "code_postal": "77468", "stop_lon": 2.6408610910140897, "coord": [48.84961812216385, 2.6408610910140897], "stop_id": 4208575, "stop_desc": "FACE 18 COURS DE L'ARCHE GUEDON - 77468", "stop_name": "BEL AIR"}, "geometry": {"type": "Point", "coordinates": [2.6408610910140897, 48.84961812216385]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b13c45026478d594c987f4d5c683cdef02cdf500", "fields": {"departement": "77", "stop_lat": 48.84866889183998, "code_postal": "77468", "stop_lon": 2.656720651347793, "coord": [48.84866889183998, 2.656720651347793], "stop_id": 4208586, "stop_desc": "AV JACQUES PREVERT - 77468", "stop_name": "RUE DES EPINETTES"}, "geometry": {"type": "Point", "coordinates": [2.656720651347793, 48.84866889183998]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "25fd972cee6cda0d5f9e0e5ac79b9d0186467858", "fields": {"departement": "77", "stop_lat": 48.84817571549336, "code_postal": "77468", "stop_lon": 2.6562954559929475, "coord": [48.84817571549336, 2.6562954559929475], "stop_id": 4208587, "stop_desc": "AVENUE JACQUES PREVERT - 77468", "stop_name": "RUE DES EPINETTES"}, "geometry": {"type": "Point", "coordinates": [2.6562954559929475, 48.84817571549336]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8517c042073d4f4f6d8c8d1382be25d989624af0", "fields": {"departement": "77", "stop_lat": 48.83922919476257, "code_postal": "77468", "stop_lon": 2.6543750959439127, "coord": [48.83922919476257, 2.6543750959439127], "stop_id": 4208597, "stop_desc": "AVENUE JEAN MOULIN - 77468", "stop_name": "TORCY-RER"}, "geometry": {"type": "Point", "coordinates": [2.6543750959439127, 48.83922919476257]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cea95d315b698bf7bd5587509a7281e612e3af03", "fields": {"departement": "77", "stop_lat": 48.852290001782066, "code_postal": "77337", "stop_lon": 2.613979083097035, "coord": [48.852290001782066, 2.613979083097035], "stop_id": 4208598, "stop_desc": "COURS DES DEUX PARCS - 77337", "stop_name": "LES DEUX PARCS"}, "geometry": {"type": "Point", "coordinates": [2.613979083097035, 48.852290001782066]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0efe05e387319fc7f1e42a4cccc13dbe4ca04d77", "fields": {"departement": "93", "stop_lat": 48.8484095296312, "code_postal": "93051", "stop_lon": 2.541742050558242, "coord": [48.8484095296312, 2.541742050558242], "stop_id": 4208600, "stop_desc": "39 BOULEVARD SOUCHET - 93051", "stop_name": "CHEMIN DE LA BARONNERIE"}, "geometry": {"type": "Point", "coordinates": [2.541742050558242, 48.8484095296312]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "da06508b40e5283d07ac6b0b4deacaad0deb7bcd", "fields": {"departement": "92", "stop_lat": 48.89561709628899, "code_postal": "92050", "stop_lon": 2.216121673073011, "coord": [48.89561709628899, 2.216121673073011], "stop_id": 4208606, "stop_desc": "R PABLO NERUDA - 92050", "stop_name": "DROITS DE L'HOMME"}, "geometry": {"type": "Point", "coordinates": [2.216121673073011, 48.89561709628899]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "60884acce2bc7c05d2884f36e39bc9176e09d291", "fields": {"departement": "92", "stop_lat": 48.89476489991657, "code_postal": "92050", "stop_lon": 2.2270141509442976, "coord": [48.89476489991657, 2.2270141509442976], "stop_id": 4208608, "stop_desc": "34 BD DE PESARO - 92050", "stop_name": "LES TERRASSES"}, "geometry": {"type": "Point", "coordinates": [2.2270141509442976, 48.89476489991657]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cf2ee17a5184f8f1b2830945a29e42e58a2745ba", "fields": {"departement": "92", "stop_lat": 48.89094728046282, "code_postal": "92050", "stop_lon": 2.2291211585442077, "coord": [48.89094728046282, 2.2291211585442077], "stop_id": 4208611, "stop_desc": "BD DE PESARO - 92050", "stop_name": "MAXIME GORKI"}, "geometry": {"type": "Point", "coordinates": [2.2291211585442077, 48.89094728046282]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4eb3b0976a1f7526d177f2bd73fba78edacedba3", "fields": {"departement": "92", "stop_lat": 48.88675976589596, "code_postal": "92050", "stop_lon": 2.2201626445631053, "coord": [48.88675976589596, 2.2201626445631053], "stop_id": 4208617, "stop_desc": "R DE WATFORD - 92050", "stop_name": "CRAIOVA"}, "geometry": {"type": "Point", "coordinates": [2.2201626445631053, 48.88675976589596]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a3dd7269491ad8f2350237e8ad4a4753631f1ac5", "fields": {"departement": "92", "stop_lat": 48.88354681399069, "code_postal": "92050", "stop_lon": 2.2156593002014677, "coord": [48.88354681399069, 2.2156593002014677], "stop_id": 4208621, "stop_desc": "130 R DE SURESNES - 92050", "stop_name": "SURESNES"}, "geometry": {"type": "Point", "coordinates": [2.2156593002014677, 48.88354681399069]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d6b6fe17ab1c2667c20774014adef6190dee587a", "fields": {"departement": "92", "stop_lat": 48.88726100109216, "code_postal": "92050", "stop_lon": 2.2013001183399865, "coord": [48.88726100109216, 2.2013001183399865], "stop_id": 4208628, "stop_desc": "1 AVENUE GEORGES CLEMENCEAU - 92050", "stop_name": "PLACE DE LA BOULE - CLEMENCEAU"}, "geometry": {"type": "Point", "coordinates": [2.2013001183399865, 48.88726100109216]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4e954aa36b221cd0311e0d37906061a9f9762c42", "fields": {"departement": "92", "stop_lat": 48.88736726938604, "code_postal": "92050", "stop_lon": 2.1999233908349463, "coord": [48.88736726938604, 2.1999233908349463], "stop_id": 4208636, "stop_desc": "PL DE LA BOULE - 92050", "stop_name": "PLACE DE LA BOULE - GAMBETTA"}, "geometry": {"type": "Point", "coordinates": [2.1999233908349463, 48.88736726938604]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cefe287159361011ed2c634cfe1351c8869542e3", "fields": {"departement": "92", "stop_lat": 48.88553311566029, "code_postal": "92050", "stop_lon": 2.207259964985575, "coord": [48.88553311566029, 2.207259964985575], "stop_id": 4208637, "stop_desc": "50 R PHILIPPE TRIAIRE - 92050", "stop_name": "LES CHENEVREUX"}, "geometry": {"type": "Point", "coordinates": [2.207259964985575, 48.88553311566029]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c64b24bc9f942425a80130b46ef5fb95d8f83518", "fields": {"departement": "95", "stop_lat": 48.977105487142616, "code_postal": "95268", "stop_lon": 2.390578703537779, "coord": [48.977105487142616, 2.390578703537779], "stop_id": 4211734, "stop_desc": "PISTE GARE ROUTIERE - 95268", "stop_name": "GARGES-SARCELLES RER"}, "geometry": {"type": "Point", "coordinates": [2.390578703537779, 48.977105487142616]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "98fb1edf691bdff026628a3184bc84c5fa40507c", "fields": {"departement": "95", "stop_lat": 48.979356403578095, "code_postal": "95585", "stop_lon": 2.3799184847998682, "coord": [48.979356403578095, 2.3799184847998682], "stop_id": 4211738, "stop_desc": "38 AVENUE PAUL VALERY - 95585", "stop_name": "PAUL VALERY"}, "geometry": {"type": "Point", "coordinates": [2.3799184847998682, 48.979356403578095]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f7da8e1eda76b2193f47e69c797b132009477937", "fields": {"departement": "95", "stop_lat": 48.97700232905866, "code_postal": "95585", "stop_lon": 2.378797096299196, "coord": [48.97700232905866, 2.378797096299196], "stop_id": 4211741, "stop_desc": "2 BOULEVARD EDOUARD BRANLY - 95585", "stop_name": "LES FLANADES"}, "geometry": {"type": "Point", "coordinates": [2.378797096299196, 48.97700232905866]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4c6de466bb663b23af69e5915e271b98d0c6ec47", "fields": {"departement": "95", "stop_lat": 48.97224051683529, "code_postal": "95585", "stop_lon": 2.375626347962541, "coord": [48.97224051683529, 2.375626347962541], "stop_id": 4211744, "stop_desc": "FACE 2 BOULEVARD HENRI BERGSON - 95585", "stop_name": "LES SABLONS"}, "geometry": {"type": "Point", "coordinates": [2.375626347962541, 48.97224051683529]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "00f97120654978430d02fc146f7ab7c98e179d0b", "fields": {"departement": "93", "stop_lat": 48.96636579066507, "code_postal": "93059", "stop_lon": 2.3668183934090736, "coord": [48.96636579066507, 2.3668183934090736], "stop_id": 4211748, "stop_desc": "47-49 BOULEVARD CHARLES DE GAULLE - 93059", "stop_name": "ETIENNE DOLET - DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.3668183934090736, 48.96636579066507]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3deef7a40f4c41f6fa259fdec44f957dd60f8f11", "fields": {"departement": "93", "stop_lat": 48.9525461304963, "code_postal": "93059", "stop_lon": 2.3581320608734195, "coord": [48.9525461304963, 2.3581320608734195], "stop_id": 4211756, "stop_desc": "AVENUE ELISEE RECLUS - 93059", "stop_name": "PETIT PIERREFITTE"}, "geometry": {"type": "Point", "coordinates": [2.3581320608734195, 48.9525461304963]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8adf0894981131826b36d92bcf9effbbb688b899", "fields": {"departement": "93", "stop_lat": 48.94811582811757, "code_postal": "93066", "stop_lon": 2.3572024701112992, "coord": [48.94811582811757, 2.3572024701112992], "stop_id": 4211757, "stop_desc": "11 AVENUE ROGER SEMAT - 93066", "stop_name": "GUYNEMER"}, "geometry": {"type": "Point", "coordinates": [2.3572024701112992, 48.94811582811757]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "202810c23635c134d7cc61162292f6ec60a0ce4a", "fields": {"departement": "93", "stop_lat": 48.94830448312007, "code_postal": "93066", "stop_lon": 2.3575982253927537, "coord": [48.94830448312007, 2.3575982253927537], "stop_id": 4211758, "stop_desc": "28 AVENUE ROGER SEMAT - 93066", "stop_name": "GUYNEMER"}, "geometry": {"type": "Point", "coordinates": [2.3575982253927537, 48.94830448312007]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8bd56df7b342dddc0fc69e56988b9d994b45bbc3", "fields": {"departement": "93", "stop_lat": 48.944134615991395, "code_postal": "93066", "stop_lon": 2.357637516236243, "coord": [48.944134615991395, 2.357637516236243], "stop_id": 4211759, "stop_desc": "4 AVENUE DE STALINGRAD - 93066", "stop_name": "ROGER SEMAT"}, "geometry": {"type": "Point", "coordinates": [2.357637516236243, 48.944134615991395]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "737c912730b7f925a3928b57d8732b7599bf07c3", "fields": {"departement": "93", "stop_lat": 48.913032678779174, "code_postal": "93070", "stop_lon": 2.335304886790752, "coord": [48.913032678779174, 2.335304886790752], "stop_id": 4211778, "stop_desc": "29 BOULEVARD JEAN JAURES - 93070", "stop_name": "JAURES - DHALENNE"}, "geometry": {"type": "Point", "coordinates": [2.335304886790752, 48.913032678779174]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c8658f32b9523721d2021c6d7bed150611d68718", "fields": {"departement": "93", "stop_lat": 48.9080088414417, "code_postal": "93070", "stop_lon": 2.3323602149860267, "coord": [48.9080088414417, 2.3323602149860267], "stop_id": 4211781, "stop_desc": "54 AVENUE GABRIEL PERI - 93070", "stop_name": "ERNEST RENAN"}, "geometry": {"type": "Point", "coordinates": [2.3323602149860267, 48.9080088414417]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2b65570d59aede7b072e6428dd394f0a1597c105", "fields": {"departement": "93", "stop_lat": 48.90623838248406, "code_postal": "93070", "stop_lon": 2.3321695181146005, "coord": [48.90623838248406, 2.3321695181146005], "stop_id": 4211784, "stop_desc": "1 RUE CHARLES SCHMIDT - 93070", "stop_name": "GARIBALDI"}, "geometry": {"type": "Point", "coordinates": [2.3321695181146005, 48.90623838248406]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6cd4edb043caaafe359f32d872bd67fdb40cf4b5", "fields": {"departement": "75", "stop_lat": 48.89795236411017, "code_postal": "75118", "stop_lon": 2.3395583162084646, "coord": [48.89795236411017, 2.3395583162084646], "stop_id": 4211792, "stop_desc": "134 BOULEVARD NEY - 75118", "stop_name": "CAMILLE FLAMMARION"}, "geometry": {"type": "Point", "coordinates": [2.3395583162084646, 48.89795236411017]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b576f4bdfbf53d3d43f16ce60a0e9bec20e27393", "fields": {"departement": "75", "stop_lat": 48.89422230110277, "code_postal": "75118", "stop_lon": 2.3472727234785546, "coord": [48.89422230110277, 2.3472727234785546], "stop_id": 4211795, "stop_desc": "29 BOULEVARD ORNANO - 75118", "stop_name": "SIMPLON"}, "geometry": {"type": "Point", "coordinates": [2.3472727234785546, 48.89422230110277]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cfc711b91dc4eec3ce32974edd8839b4622b2110", "fields": {"departement": "75", "stop_lat": 48.891391107788415, "code_postal": "75118", "stop_lon": 2.3497663277119103, "coord": [48.891391107788415, 2.3497663277119103], "stop_id": 4211798, "stop_desc": "96 BOULEVARD BARBES - 75118", "stop_name": "MARCADET - POISSONNIERS"}, "geometry": {"type": "Point", "coordinates": [2.3497663277119103, 48.891391107788415]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4657424832db831eb15408857b728c874a927765", "fields": {"departement": "75", "stop_lat": 48.88774231401873, "code_postal": "75118", "stop_lon": 2.3497109337106092, "coord": [48.88774231401873, 2.3497109337106092], "stop_id": 4211800, "stop_desc": "54-56 BOULEVARD BARBES - 75118", "stop_name": "CHATEAU ROUGE"}, "geometry": {"type": "Point", "coordinates": [2.3497109337106092, 48.88774231401873]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8aad8dcb51f8bb53b7725f17cfb54156bed67bc2", "fields": {"departement": "75", "stop_lat": 48.878916395001, "code_postal": "75110", "stop_lon": 2.353469578838293, "coord": [48.878916395001, 2.353469578838293], "stop_id": 4211804, "stop_desc": "103 BOULEVARD DE MAGENTA - 75110", "stop_name": "LA FAYETTE - MAGENTA - GARE DU NORD"}, "geometry": {"type": "Point", "coordinates": [2.353469578838293, 48.878916395001]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "42d49ce3c6fe4c35579d6c0e2f4910e7d13cdf42", "fields": {"departement": "93", "stop_lat": 48.928740296188124, "code_postal": "93066", "stop_lon": 2.3567994737664737, "coord": [48.928740296188124, 2.3567994737664737], "stop_id": 4211812, "stop_desc": "AVENUE DU PRESIDENT WILSON - 93066", "stop_name": "PORTE DE PARIS - STADE DE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.3567994737664737, 48.928740296188124]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "714431e6b577af1be1ec21dd95d2a7d3864b5db1", "fields": {"departement": "93", "stop_lat": 48.93063680368712, "code_postal": "93066", "stop_lon": 2.3550543243123636, "coord": [48.93063680368712, 2.3550543243123636], "stop_id": 4211813, "stop_desc": "10 BOULEVARD MARCEL SEMBAT - 93066", "stop_name": "PORTE DE PARIS-METRO"}, "geometry": {"type": "Point", "coordinates": [2.3550543243123636, 48.93063680368712]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b9a91919f210b8f85d22c497bf07d40649ca6539", "fields": {"departement": "93", "stop_lat": 48.96518044221685, "code_postal": "93059", "stop_lon": 2.362996086733312, "coord": [48.96518044221685, 2.362996086733312], "stop_id": 4211817, "stop_desc": "38 BOULEVARD JEAN MERMOZ - 93059", "stop_name": "ALCIDE D'ORBIGNY"}, "geometry": {"type": "Point", "coordinates": [2.362996086733312, 48.96518044221685]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ee060c060c6ed09536395df64f87965ae51688fd", "fields": {"departement": "93", "stop_lat": 48.96878107104439, "code_postal": "93072", "stop_lon": 2.3743953162388975, "coord": [48.96878107104439, 2.3743953162388975], "stop_id": 4211819, "stop_desc": "54-56 RUE PARMENTIER - 93072", "stop_name": "JEAN GRIGNOUX"}, "geometry": {"type": "Point", "coordinates": [2.3743953162388975, 48.96878107104439]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "52755c4a3cf533175914420f2018b77ceccf9137", "fields": {"departement": "95", "stop_lat": 48.99583370070635, "code_postal": "95539", "stop_lon": 2.361659323391463, "coord": [48.99583370070635, 2.361659323391463], "stop_id": 4226295, "stop_desc": "FACE 8 BOULEVARD DE LA GARE - 95539", "stop_name": "RU DE LA MARLIERE"}, "geometry": {"type": "Point", "coordinates": [2.361659323391463, 48.99583370070635]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4c8b75c78135c427684f7695344d5825f87d4f84", "fields": {"departement": "95", "stop_lat": 48.99484393251932, "code_postal": "95539", "stop_lon": 2.367217053801653, "coord": [48.99484393251932, 2.367217053801653], "stop_id": 4226296, "stop_desc": "58 BOULEVARD DE LA GARE - 95539", "stop_name": "GARE DE SARCELLES-SAINT-BRICE"}, "geometry": {"type": "Point", "coordinates": [2.367217053801653, 48.99484393251932]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aca322f39d083eef5b112321280862fd250e609d", "fields": {"departement": "95", "stop_lat": 48.98615410232925, "code_postal": "95585", "stop_lon": 2.392322116179273, "coord": [48.98615410232925, 2.392322116179273], "stop_id": 4226308, "stop_desc": "RUE EMILE ZOLA - 95585", "stop_name": "HAUT DU ROY"}, "geometry": {"type": "Point", "coordinates": [2.392322116179273, 48.98615410232925]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "afc5661604375e64acf83b6e0ea8394b68c80d17", "fields": {"departement": "95", "stop_lat": 48.98604454066401, "code_postal": "95019", "stop_lon": 2.4120249894413255, "coord": [48.98604454066401, 2.4120249894413255], "stop_id": 4226313, "stop_desc": "FACE 56 AVENUE CHARLES VAILLANT - 95019", "stop_name": "LES CHATAIGNIERS"}, "geometry": {"type": "Point", "coordinates": [2.4120249894413255, 48.98604454066401]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5091e0a9bb356b25f7e99eb9f245c7141f4494dd", "fields": {"departement": "95", "stop_lat": 48.99465090332859, "code_postal": "95019", "stop_lon": 2.416134369205257, "coord": [48.99465090332859, 2.416134369205257], "stop_id": 4226323, "stop_desc": "PLACE DU GENERAL LECLERC - 95019", "stop_name": "VILLIERS LE BEL - GONESSE - ARNOUVILLE RER"}, "geometry": {"type": "Point", "coordinates": [2.416134369205257, 48.99465090332859]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "07b96a842df0c2c9236516291dd78d72c660e41a", "fields": {"departement": "95", "stop_lat": 48.99153632523481, "code_postal": "95585", "stop_lon": 2.3695502507972894, "coord": [48.99153632523481, 2.3695502507972894], "stop_id": 4226325, "stop_desc": "34 RUE THEODORE BULLIER - 95585", "stop_name": "PETITS CLOS - ROSIERS"}, "geometry": {"type": "Point", "coordinates": [2.3695502507972894, 48.99153632523481]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "01b44d830f0336a1918b141c041f9a09f6bc5639", "fields": {"departement": "95", "stop_lat": 48.9831272330852, "code_postal": "95585", "stop_lon": 2.388796313327863, "coord": [48.9831272330852, 2.388796313327863], "stop_id": 4226772, "stop_desc": "ROUTE DES REFUZNIKS - 95585", "stop_name": "HAUT DU ROY"}, "geometry": {"type": "Point", "coordinates": [2.388796313327863, 48.9831272330852]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e6492b733adf5d01e7a684c01144ba3416976120", "fields": {"departement": "95", "stop_lat": 48.99730173969438, "code_postal": "95585", "stop_lon": 2.381572147113851, "coord": [48.99730173969438, 2.381572147113851], "stop_id": 4226778, "stop_desc": "RUE DU DOCTEUR DUMOULIN - 95585", "stop_name": "MARCELLIN BERTHELOT - VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.381572147113851, 48.99730173969438]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "63478dc27a2408c5cebc1f6a7e26ddbe5a76f352", "fields": {"departement": "95", "stop_lat": 48.998794088785566, "code_postal": "95585", "stop_lon": 2.3798935474161667, "coord": [48.998794088785566, 2.3798935474161667], "stop_id": 4226781, "stop_desc": "1 PLACE DU SOUVENIR FRANCAIS - 95585", "stop_name": "PLACE DU SOUVENIR FRANCAIS"}, "geometry": {"type": "Point", "coordinates": [2.3798935474161667, 48.998794088785566]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8d6e0dee73983cd944c4406f45be77c1557d9232", "fields": {"departement": "95", "stop_lat": 49.00236116513231, "code_postal": "95585", "stop_lon": 2.381289654711447, "coord": [49.00236116513231, 2.381289654711447], "stop_id": 4226783, "stop_desc": "FACE 48 AVENUE MARX DORMOY - 95585", "stop_name": "LES CHARDONNERETTES"}, "geometry": {"type": "Point", "coordinates": [2.381289654711447, 49.00236116513231]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d4dea1eed3475707a5560e891af1241cf4431c8b", "fields": {"departement": "95", "stop_lat": 49.01590207047796, "code_postal": "95205", "stop_lon": 2.385017271100971, "coord": [49.01590207047796, 2.385017271100971], "stop_id": 4226789, "stop_desc": "RUE DE PARIS - 95205", "stop_name": "RUE DE PARIS"}, "geometry": {"type": "Point", "coordinates": [2.385017271100971, 49.01590207047796]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "966932803f163e29bb92ef335f552eddddc87a0b", "fields": {"departement": "95", "stop_lat": 49.019596092711964, "code_postal": "95205", "stop_lon": 2.3832718143413834, "coord": [49.019596092711964, 2.3832718143413834], "stop_id": 4226790, "stop_desc": "FACE 25 RUE DU GENERAL LECLERC - 95205", "stop_name": "GENERAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.3832718143413834, 49.019596092711964]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e25d2e1442ffc214e70e466465368a926f83ada9", "fields": {"departement": "95", "stop_lat": 49.0224839277197, "code_postal": "95205", "stop_lon": 2.373819029957812, "coord": [49.0224839277197, 2.373819029957812], "stop_id": 4226794, "stop_desc": "FACE 18 RUE DE LA LIBERATION - 95205", "stop_name": "RUE DE LA LIBERATION N0 20"}, "geometry": {"type": "Point", "coordinates": [2.373819029957812, 49.0224839277197]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ef2dd232a06cdefd0c2de23bf5d66715dfddf3b2", "fields": {"departement": "95", "stop_lat": 49.026520628857526, "code_postal": "95229", "stop_lon": 2.3669211239195964, "coord": [49.026520628857526, 2.3669211239195964], "stop_id": 4226795, "stop_desc": "AVENUE DE LA LIBERATION - 95229", "stop_name": "MARECHAL FOCH"}, "geometry": {"type": "Point", "coordinates": [2.3669211239195964, 49.026520628857526]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "af83e73c2fa4bd4da95bdba54ac751cb5b6883f7", "fields": {"departement": "95", "stop_lat": 49.029029873656924, "code_postal": "95229", "stop_lon": 2.356632414521909, "coord": [49.029029873656924, 2.356632414521909], "stop_id": 4226800, "stop_desc": "31 RUE DES ECOLES - 95229", "stop_name": "PLACE DE LA REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.356632414521909, 49.029029873656924]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "89612ce915d8132fa7ca2839b184d4c8c009118c", "fields": {"departement": "95", "stop_lat": 49.03201306720724, "code_postal": "95229", "stop_lon": 2.3578225033921036, "coord": [49.03201306720724, 2.3578225033921036], "stop_id": 4226804, "stop_desc": "27 AVENUE DE REIMS - 95229", "stop_name": "REIMS - DOMONT"}, "geometry": {"type": "Point", "coordinates": [2.3578225033921036, 49.03201306720724]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8f9fe8829ef16f46e3d7cb37de02f087898e6dfb", "fields": {"departement": "95", "stop_lat": 49.034215891958944, "code_postal": "95229", "stop_lon": 2.3486118838516212, "coord": [49.034215891958944, 2.3486118838516212], "stop_id": 4226807, "stop_desc": "FACE 63 ROUTE DE DOMONT - 95229", "stop_name": "LES BOURGUIGNONS"}, "geometry": {"type": "Point", "coordinates": [2.3486118838516212, 49.034215891958944]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3beaf261d6f7fd3bcbc20b49703b6cbd0bdac307", "fields": {"departement": "95", "stop_lat": 49.04118061592004, "code_postal": "95409", "stop_lon": 2.3392229831776605, "coord": [49.04118061592004, 2.3392229831776605], "stop_id": 4226811, "stop_desc": "AVENUE JEAN ROSTAND - 95409", "stop_name": "CENTRE COMMERCIAL DE MOISSELLES"}, "geometry": {"type": "Point", "coordinates": [2.3392229831776605, 49.04118061592004]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8834e6cb9ba3d5756de8f0032a9c35dbc62be646", "fields": {"departement": "95", "stop_lat": 49.05035533842709, "code_postal": "95028", "stop_lon": 2.3365574529793736, "coord": [49.05035533842709, 2.3365574529793736], "stop_id": 4226814, "stop_desc": "RUE DE MOISSELLES - 95028", "stop_name": "C.H.S."}, "geometry": {"type": "Point", "coordinates": [2.3365574529793736, 49.05035533842709]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ae8c6909291240195a2ffb0478ec2ef720059c14", "fields": {"departement": "94", "stop_lat": 48.821374766362084, "code_postal": "94042", "stop_lon": 2.4642984701169537, "coord": [48.821374766362084, 2.4642984701169537], "stop_id": 3619837, "stop_desc": "FACE 7 AVENUE JEAN JAURES - 94042", "stop_name": "JOINVILLE-LE-PONT RER"}, "geometry": {"type": "Point", "coordinates": [2.4642984701169537, 48.821374766362084]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6d1f8a3c68bd2620d586cfe1826acc24f0d00637", "fields": {"departement": "94", "stop_lat": 48.78580678447589, "code_postal": "94028", "stop_lon": 2.4495625949727304, "coord": [48.78580678447589, 2.4495625949727304], "stop_id": 3619873, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 94028", "stop_name": "LA HAYE AUX MOINES"}, "geometry": {"type": "Point", "coordinates": [2.4495625949727304, 48.78580678447589]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "061ae9904e0a2e2e0d59c9d803eab49bd96b3cea", "fields": {"departement": "94", "stop_lat": 48.801105140283205, "code_postal": "94028", "stop_lon": 2.457772626293411, "coord": [48.801105140283205, 2.457772626293411], "stop_id": 3619859, "stop_desc": "91 AVENUE LAFERRIERE - 94028", "stop_name": "COLLEGE PLAISANCE"}, "geometry": {"type": "Point", "coordinates": [2.457772626293411, 48.801105140283205]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ad2dc5fc51050155705b20c4d86f696f22075b58", "fields": {"departement": "94", "stop_lat": 48.787741776342976, "code_postal": "94028", "stop_lon": 2.446791959956889, "coord": [48.787741776342976, 2.446791959956889], "stop_id": 3619871, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 94028", "stop_name": "UNIVERSITE"}, "geometry": {"type": "Point", "coordinates": [2.446791959956889, 48.787741776342976]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ec8c78eef784479727dd8349b1d11c74cab400f1", "fields": {"departement": "94", "stop_lat": 48.78734645800536, "code_postal": "94028", "stop_lon": 2.4466279027630926, "coord": [48.78734645800536, 2.4466279027630926], "stop_id": 3619870, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 94028", "stop_name": "UNIVERSITE"}, "geometry": {"type": "Point", "coordinates": [2.4466279027630926, 48.78734645800536]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "77fb92794e00b0bd9ebd93de598d1c99c77711b2", "fields": {"departement": "94", "stop_lat": 48.790457035558916, "code_postal": "94028", "stop_lon": 2.445804685136366, "coord": [48.790457035558916, 2.445804685136366], "stop_id": 3619869, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 94028", "stop_name": "MONTAIGUT"}, "geometry": {"type": "Point", "coordinates": [2.445804685136366, 48.790457035558916]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f438fb6e7e85ea4b186095d81e5429a9234e4b6b", "fields": {"departement": "94", "stop_lat": 48.806643717967425, "code_postal": "94028", "stop_lon": 2.4644120982650195, "coord": [48.806643717967425, 2.4644120982650195], "stop_id": 3619853, "stop_desc": "QUAI DE HALAGE - 94028", "stop_name": "MAYENNE"}, "geometry": {"type": "Point", "coordinates": [2.4644120982650195, 48.806643717967425]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a73a7637a58fe8aaf0e5ad0f1196a75c6f41de7c", "fields": {"departement": "94", "stop_lat": 48.798691144546154, "code_postal": "94028", "stop_lon": 2.4540256685936535, "coord": [48.798691144546154, 2.4540256685936535], "stop_id": 3619810, "stop_desc": "FACE 50 AVENUE DU MARECHAL DE LATTRE DE TASSIGNY - 94028", "stop_name": "HENRI MONDOR - LAFERRIERE"}, "geometry": {"type": "Point", "coordinates": [2.4540256685936535, 48.798691144546154]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fa968ee38f670d7cb9d30aee96eced56b2360dc5", "fields": {"departement": "94", "stop_lat": 48.8002054597324, "code_postal": "94046", "stop_lon": 2.4284782846593433, "coord": [48.8002054597324, 2.4284782846593433], "stop_id": 3619799, "stop_desc": "AVENUE DE LA REPUBLIQUE - 94046", "stop_name": "MAISONS-ALFORT - ALFORTVILLE RER."}, "geometry": {"type": "Point", "coordinates": [2.4284782846593433, 48.8002054597324]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bdff93b97a796bb977a72a8a5d5fbf8325b863b3", "fields": {"departement": "94", "stop_lat": 48.80141600844219, "code_postal": "94046", "stop_lon": 2.432072298956643, "coord": [48.80141600844219, 2.432072298956643], "stop_id": 3619800, "stop_desc": "FACE 5 AVENUE DE LA REPUBLIQUE - 94046", "stop_name": "MAIRIE DE MAISONS-ALFORT"}, "geometry": {"type": "Point", "coordinates": [2.432072298956643, 48.80141600844219]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7766ff5372cdb84b8c6c55be459507f93334a616", "fields": {"departement": "94", "stop_lat": 48.80553470940832, "code_postal": "94046", "stop_lon": 2.4401486029306723, "coord": [48.80553470940832, 2.4401486029306723], "stop_id": 3619807, "stop_desc": "89 AVENUE DE LA REPUBLIQUE - 94046", "stop_name": "REPUBLIQUE - GENERAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.4401486029306723, 48.80553470940832]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "65f8d4f2f3a154fd6312e1c241aa3303645bc7d1", "fields": {"departement": "94", "stop_lat": 48.80390570830507, "code_postal": "94002", "stop_lon": 2.419926432841766, "coord": [48.80390570830507, 2.419926432841766], "stop_id": 3619793, "stop_desc": "178 ter R VAILLANT COUTURIER - 94002", "stop_name": "MAIRIE D'ALFORTVILLE"}, "geometry": {"type": "Point", "coordinates": [2.419926432841766, 48.80390570830507]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4dfae0e5cd3afc42719cca3b88adb89660f012c7", "fields": {"departement": "94", "stop_lat": 48.78044293691277, "code_postal": "94028", "stop_lon": 2.4653951686108386, "coord": [48.78044293691277, 2.4653951686108386], "stop_id": 3619825, "stop_desc": "FACE 96BIS RUE JULIETTE SAVAR - 94028", "stop_name": "CASALIS - SAVAR"}, "geometry": {"type": "Point", "coordinates": [2.4653951686108386, 48.78044293691277]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d6f3c7752b808273daf6a9d279de54d2c893185c", "fields": {"departement": "94", "stop_lat": 48.78269113798053, "code_postal": "94028", "stop_lon": 2.4642718538692714, "coord": [48.78269113798053, 2.4642718538692714], "stop_id": 3619823, "stop_desc": "FACE 92 RUE JULIETTE SAVAR - 94028", "stop_name": "HENRI CARDINAUD"}, "geometry": {"type": "Point", "coordinates": [2.4642718538692714, 48.78269113798053]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "21e5b5f19a87ddb483afe49ea5124cd727eff2d4", "fields": {"departement": "94", "stop_lat": 48.794271448231854, "code_postal": "94028", "stop_lon": 2.460613557714741, "coord": [48.794271448231854, 2.460613557714741], "stop_id": 3619815, "stop_desc": "FACE 21 RUE DE PARIS - 94028", "stop_name": "EGLISE DE CRETEIL"}, "geometry": {"type": "Point", "coordinates": [2.460613557714741, 48.794271448231854]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cdefadd4375502315d8c35147a652e57cb7f87ef", "fields": {"departement": "94", "stop_lat": 48.788958585593384, "code_postal": "94028", "stop_lon": 2.4615803091793236, "coord": [48.788958585593384, 2.4615803091793236], "stop_id": 3619819, "stop_desc": "73 RUE DE MESLY - 94028", "stop_name": "HOPITAL CHENEVIER"}, "geometry": {"type": "Point", "coordinates": [2.4615803091793236, 48.788958585593384]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7656b9a1c05f0b1a53a9a4eed8f149ee1dcbe5ba", "fields": {"departement": "94", "stop_lat": 48.777826464918576, "code_postal": "94028", "stop_lon": 2.466286278833099, "coord": [48.777826464918576, 2.466286278833099], "stop_id": 3619827, "stop_desc": "RUE RENE ARCOS - 94028", "stop_name": "RENE ARCOS"}, "geometry": {"type": "Point", "coordinates": [2.466286278833099, 48.777826464918576]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d66910b68206f6018a72ab8b7a0dc0c62a209b0d", "fields": {"departement": "94", "stop_lat": 48.80211396989773, "code_postal": "94081", "stop_lon": 2.4110661948646452, "coord": [48.80211396989773, 2.4110661948646452], "stop_id": 3619785, "stop_desc": "QU JULES GUESDE - 94081", "stop_name": "WALDECK ROUSSEAU - JULES GUESDE"}, "geometry": {"type": "Point", "coordinates": [2.4110661948646452, 48.80211396989773]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c096cdf860ea967060d6771991b343ee04013881", "fields": {"departement": "94", "stop_lat": 48.796594651851805, "code_postal": "94081", "stop_lon": 2.412309950943813, "coord": [48.796594651851805, 2.412309950943813], "stop_id": 3619786, "stop_desc": "R EDITH CAVELL - 94081", "stop_name": "SALVADOR ALLENDE - EDITH CAVELL"}, "geometry": {"type": "Point", "coordinates": [2.412309950943813, 48.796594651851805]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e9273d13c3d9d06803267a316f2a592c3f7aec45", "fields": {"departement": "94", "stop_lat": 48.78580678447589, "code_postal": "94028", "stop_lon": 2.4495625949727304, "coord": [48.78580678447589, 2.4495625949727304], "stop_id": 3619765, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 94028", "stop_name": "LA HAYE AUX MOINES"}, "geometry": {"type": "Point", "coordinates": [2.4495625949727304, 48.78580678447589]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fb0746cac0677e766abd20ce3377ee66610ca806", "fields": {"departement": "94", "stop_lat": 48.802875010281, "code_postal": "94046", "stop_lon": 2.4282652789008736, "coord": [48.802875010281, 2.4282652789008736], "stop_id": 3619750, "stop_desc": "102 AVENUE DU GENERAL DE GAULLE - 94046", "stop_name": "CAPITAINE DEPLANQUE"}, "geometry": {"type": "Point", "coordinates": [2.4282652789008736, 48.802875010281]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "02b85c915da6471503e2c77cfa4e1b0612d0f405", "fields": {"departement": "94", "stop_lat": 48.8044344016384, "code_postal": "94081", "stop_lon": 2.408484273829353, "coord": [48.8044344016384, 2.408484273829353], "stop_id": 3619784, "stop_desc": "QU JULES GUESDE - 94081", "stop_name": "PORT A L'ANGLAIS - JULES GUESDE"}, "geometry": {"type": "Point", "coordinates": [2.408484273829353, 48.8044344016384]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "355823cd639574cf7261af03a9fd508dc5ec30df", "fields": {"departement": "94", "stop_lat": 48.80431895803931, "code_postal": "94002", "stop_lon": 2.420199218744179, "coord": [48.80431895803931, 2.420199218744179], "stop_id": 3619792, "stop_desc": "36 RUE VICTOR HUGO - 94002", "stop_name": "MAIRIE D'ALFORTVILLE"}, "geometry": {"type": "Point", "coordinates": [2.420199218744179, 48.80431895803931]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8f410ce687fa1d7040812560cb1616510d17f7a1", "fields": {"departement": "94", "stop_lat": 48.79756813259181, "code_postal": "94046", "stop_lon": 2.4334121304747134, "coord": [48.79756813259181, 2.4334121304747134], "stop_id": 3619753, "stop_desc": "103 RUE JEAN JAURES - 94046", "stop_name": "GENERAL GALLIENI"}, "geometry": {"type": "Point", "coordinates": [2.4334121304747134, 48.79756813259181]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6aeee8c87ed32c2c13a37f4a5bb452a8570f8552", "fields": {"departement": "94", "stop_lat": 48.810472733578806, "code_postal": "94046", "stop_lon": 2.4242098051495105, "coord": [48.810472733578806, 2.4242098051495105], "stop_id": 3619746, "stop_desc": "RUE PIERRE CURIE - 94046", "stop_name": "PIERRE CURIE"}, "geometry": {"type": "Point", "coordinates": [2.4242098051495105, 48.810472733578806]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1ec4ff33a78b7eb5bcda1bce046f2b236fcd8c4a", "fields": {"departement": "94", "stop_lat": 48.79411605251875, "code_postal": "94046", "stop_lon": 2.434317187490337, "coord": [48.79411605251875, 2.434317187490337], "stop_id": 3619755, "stop_desc": "133 BIS RUE JEAN JAURES - 94046", "stop_name": "BELFORT"}, "geometry": {"type": "Point", "coordinates": [2.434317187490337, 48.79411605251875]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f6a2b73c884a1e2ebb7d26057e89d431fea849b1", "fields": {"departement": "94", "stop_lat": 48.80034395549433, "code_postal": "94046", "stop_lon": 2.4351587565204533, "coord": [48.80034395549433, 2.4351587565204533], "stop_id": 3619777, "stop_desc": "AVENUE LEON BLUM - 94046", "stop_name": "HUGO-BLUM"}, "geometry": {"type": "Point", "coordinates": [2.4351587565204533, 48.80034395549433]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fd9baacbd5c10bc2241f325f194f65441b6e17bb", "fields": {"departement": "94", "stop_lat": 48.79993413223625, "code_postal": "94068", "stop_lon": 2.504503973768863, "coord": [48.79993413223625, 2.504503973768863], "stop_id": 3619686, "stop_desc": "13 BIS BOULEVARD DE CHAMPIGNY - 94068", "stop_name": "STADE A. MARIN"}, "geometry": {"type": "Point", "coordinates": [2.504503973768863, 48.79993413223625]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9822de943d82171151ec35f98c3921b499569c67", "fields": {"departement": "94", "stop_lat": 48.795734441407966, "code_postal": "94068", "stop_lon": 2.499715384912416, "coord": [48.795734441407966, 2.499715384912416], "stop_id": 3619691, "stop_desc": "33 AVENUE LOUIS BLANC - 94068", "stop_name": "RUE DE LA FERME"}, "geometry": {"type": "Point", "coordinates": [2.499715384912416, 48.795734441407966]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8512adbc7e1d6be201d0b4499f2c68c6c2dfa811", "fields": {"departement": "94", "stop_lat": 48.81956171367483, "code_postal": "94017", "stop_lon": 2.529474283990681, "coord": [48.81956171367483, 2.529474283990681], "stop_id": 3619657, "stop_desc": "RUE ALEXANDRE FOURNY - 94017", "stop_name": "ZONE INDUSTRIELLE"}, "geometry": {"type": "Point", "coordinates": [2.529474283990681, 48.81956171367483]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "98ccdf36be0f20e403d281bd0ef8a6e86f11a960", "fields": {"departement": "94", "stop_lat": 48.76972555761743, "code_postal": "94011", "stop_lon": 2.476627336606433, "coord": [48.76972555761743, 2.476627336606433], "stop_id": 3619712, "stop_desc": "25 AVENUE DU DOCTEUR ROUX - 94011", "stop_name": "DOCTEUR ROUX"}, "geometry": {"type": "Point", "coordinates": [2.476627336606433, 48.76972555761743]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "60ff7070d9c87b5c99f5cec409950a7d9f411538", "fields": {"departement": "94", "stop_lat": 48.802285626551836, "code_postal": "94068", "stop_lon": 2.506851760584877, "coord": [48.802285626551836, 2.506851760584877], "stop_id": 3619685, "stop_desc": "50-56 BOULEVARD DE CHAMPIGNY - 94068", "stop_name": "CARPEAUX"}, "geometry": {"type": "Point", "coordinates": [2.506851760584877, 48.802285626551836]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dd6e2ef31412c884e9d55e41eccd26ec6c21ad83", "fields": {"departement": "94", "stop_lat": 48.81773172442604, "code_postal": "94079", "stop_lon": 2.5382323107920874, "coord": [48.81773172442604, 2.5382323107920874], "stop_id": 3619665, "stop_desc": "FACE 155 RUE DE BERNAU - 94079", "stop_name": "BERNAU DOLET"}, "geometry": {"type": "Point", "coordinates": [2.5382323107920874, 48.81773172442604]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "470bd50f8e6d6ceb8a60790234a8077dc0b195dd", "fields": {"departement": "94", "stop_lat": 48.76799703948805, "code_postal": "94011", "stop_lon": 2.4790021563991, "coord": [48.76799703948805, 2.4790021563991], "stop_id": 3619709, "stop_desc": "AVENUE D'ORADOUR SUR GLANE - 94011", "stop_name": "REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.4790021563991, 48.76799703948805]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "60bee3c0ba24a5fe5c849b975bbd473ef49441a7", "fields": {"departement": "94", "stop_lat": 48.80356918870192, "code_postal": "94068", "stop_lon": 2.508039694650274, "coord": [48.80356918870192, 2.508039694650274], "stop_id": 3619683, "stop_desc": "74-76 BOULEVARD DE CHAMPIGNY - 94068", "stop_name": "JOFFRE"}, "geometry": {"type": "Point", "coordinates": [2.508039694650274, 48.80356918870192]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "05a0f569c0be5da4db12728a5df4a65576561262", "fields": {"departement": "94", "stop_lat": 48.78933207731256, "code_postal": "94068", "stop_lon": 2.495247343432333, "coord": [48.78933207731256, 2.495247343432333], "stop_id": 3619694, "stop_desc": "FACE 119 RUE LOUIS BLANC - 94068", "stop_name": "MURIERS"}, "geometry": {"type": "Point", "coordinates": [2.495247343432333, 48.78933207731256]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bc7670eb913d7b93c851cda6fb24b90a455cbd95", "fields": {"departement": "94", "stop_lat": 48.76828255775569, "code_postal": "94028", "stop_lon": 2.473101850782709, "coord": [48.76828255775569, 2.473101850782709], "stop_id": 3619713, "stop_desc": "R SULLY - 94028", "stop_name": "SULLY"}, "geometry": {"type": "Point", "coordinates": [2.473101850782709, 48.76828255775569]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "be353058988999e96573cfec9b8f471f2288232b", "fields": {"departement": "94", "stop_lat": 48.805507392337134, "code_postal": "94046", "stop_lon": 2.440556750042566, "coord": [48.805507392337134, 2.440556750042566], "stop_id": 3619909, "stop_desc": "FACE 89 AVENUE DE LA REPUBLIQUE - 94046", "stop_name": "REPUBLIQUE - GENERAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.440556750042566, 48.805507392337134]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4d4405de1f86c1099824189f4f12b1babae6eedb", "fields": {"departement": "94", "stop_lat": 48.773792276296746, "code_postal": "94028", "stop_lon": 2.4649572131577124, "coord": [48.773792276296746, 2.4649572131577124], "stop_id": 3619887, "stop_desc": "2-4 R DU DOCTEUR RAMON - 94028", "stop_name": "DOCTEUR RAMON"}, "geometry": {"type": "Point", "coordinates": [2.4649572131577124, 48.773792276296746]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "02f79a24c5aed46d451a96a024e3e7294b9067c7", "fields": {"departement": "94", "stop_lat": 48.776161530438884, "code_postal": "94028", "stop_lon": 2.4682540024513275, "coord": [48.776161530438884, 2.4682540024513275], "stop_id": 3619883, "stop_desc": "R JULIETTE SAVAR - 94028", "stop_name": "JEAN MERMOZ"}, "geometry": {"type": "Point", "coordinates": [2.4682540024513275, 48.776161530438884]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4e2ad3828526f93dcb7f88052ef099965dace1ac", "fields": {"departement": "94", "stop_lat": 48.77409346291883, "code_postal": "94028", "stop_lon": 2.468996704263792, "coord": [48.77409346291883, 2.468996704263792], "stop_id": 3619886, "stop_desc": "R JULIETTE SAVAR - 94028", "stop_name": "MONT MESLY"}, "geometry": {"type": "Point", "coordinates": [2.468996704263792, 48.77409346291883]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ecb4ed80fa673e66c20c887b3306e3ba55590b40", "fields": {"departement": "94", "stop_lat": 48.77089405742843, "code_postal": "94028", "stop_lon": 2.468689442837858, "coord": [48.77089405742843, 2.468689442837858], "stop_id": 3619891, "stop_desc": "R DES CORBIERES - 94028", "stop_name": "COTEAUX SUD"}, "geometry": {"type": "Point", "coordinates": [2.468689442837858, 48.77089405742843]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b398b0d327d69f3bf72fbd7ae215b257981566ad", "fields": {"departement": "94", "stop_lat": 48.76828255775569, "code_postal": "94028", "stop_lon": 2.473101850782709, "coord": [48.76828255775569, 2.473101850782709], "stop_id": 3619894, "stop_desc": "R SULLY - 94028", "stop_name": "SULLY"}, "geometry": {"type": "Point", "coordinates": [2.473101850782709, 48.76828255775569]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "98f3fc25334e2aa22d32f13eb63d779e483db3ba", "fields": {"departement": "93", "stop_lat": 48.94345914313876, "code_postal": "93013", "stop_lon": 2.4339150066913304, "coord": [48.94345914313876, 2.4339150066913304], "stop_id": 3666569, "stop_desc": "AVENUE ALAIN BOZEL - 93013", "stop_name": "MICHELET-PARC DES EXPOSITIONS"}, "geometry": {"type": "Point", "coordinates": [2.4339150066913304, 48.94345914313876]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6ee27572beedfe39e23d9e4e168df790a5190654", "fields": {"departement": "75", "stop_lat": 48.89769876400372, "code_postal": "75118", "stop_lon": 2.3589959717945, "coord": [48.89769876400372, 2.3589959717945], "stop_id": 3666568, "stop_desc": "85-87 RUE DE LA CHAPELLE - 75118", "stop_name": "PORTE DE LA CHAPELLE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.3589959717945, 48.89769876400372]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "351e10c042494ff37c0a5079c6df7eb345c469a9", "fields": {"departement": "93", "stop_lat": 48.9315509698401, "code_postal": "93005", "stop_lon": 2.493771636240838, "coord": [48.9315509698401, 2.493771636240838], "stop_id": 3664424, "stop_desc": "PLACE DU GENERAL DE GAULLE - 93005", "stop_name": "AULNAY-SOUS-BOIS RER"}, "geometry": {"type": "Point", "coordinates": [2.493771636240838, 48.9315509698401]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7cea38b4d989ae86d0f9be2ae47b30ad0b82d68d", "fields": {"departement": "75", "stop_lat": 48.87781949763114, "code_postal": "75110", "stop_lon": 2.3564941357294393, "coord": [48.87781949763114, 2.3564941357294393], "stop_id": 3666563, "stop_desc": "140-142 RUE DU FAUBOURG SAINT-DENIS - 75110", "stop_name": "VALENCIENNES"}, "geometry": {"type": "Point", "coordinates": [2.3564941357294393, 48.87781949763114]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7ef50a1b03494094bb1071c6ceed13a1f2b79d46", "fields": {"departement": "93", "stop_lat": 48.90946775056652, "code_postal": "93008", "stop_lon": 2.447553768193413, "coord": [48.90946775056652, 2.447553768193413], "stop_id": 3664427, "stop_desc": "AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "PIERRE SEMARD"}, "geometry": {"type": "Point", "coordinates": [2.447553768193413, 48.90946775056652]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e9dd9aed8f72880c1a258d4476ed5d96e5db63e5", "fields": {"departement": "93", "stop_lat": 48.928463917414284, "code_postal": "93007", "stop_lon": 2.4756360440448932, "coord": [48.928463917414284, 2.4756360440448932], "stop_id": 3664417, "stop_desc": "42 AVENUE PAUL VAILLANT COUTURIER - 93007", "stop_name": "QUEBEC"}, "geometry": {"type": "Point", "coordinates": [2.4756360440448932, 48.928463917414284]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3c3b4fdaf5fd5a85c6b29db817676926fce439ca", "fields": {"departement": "75", "stop_lat": 48.87615667154024, "code_postal": "75110", "stop_lon": 2.3575699124657437, "coord": [48.87615667154024, 2.3575699124657437], "stop_id": 3666561, "stop_desc": "9 RUE DU 8 MAI 1945 - 75110", "stop_name": "GARE DE L'EST"}, "geometry": {"type": "Point", "coordinates": [2.3575699124657437, 48.87615667154024]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "172a13310eb19a8eb23e3b74b8a0bab727e7093a", "fields": {"departement": "93", "stop_lat": 48.9503918147959, "code_postal": "93007", "stop_lon": 2.4499878684013767, "coord": [48.9503918147959, 2.4499878684013767], "stop_id": 3666574, "stop_desc": "AVENUE DESCARTES - 93007", "stop_name": "MAURICE AUDIN"}, "geometry": {"type": "Point", "coordinates": [2.4499878684013767, 48.9503918147959]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f1d3c30dd6b3aab20453a9b215a8190df6f2929f", "fields": {"departement": "77", "stop_lat": 48.878965828315415, "code_postal": "77108", "stop_lon": 2.6134810521284204, "coord": [48.878965828315415, 2.6134810521284204], "stop_id": 3677723, "stop_desc": "BRETELLE DE SORTIE DU CENTRE COMMERCIAL - VERS L'AVENUE DU GENDARME CASTERMANT - 77108", "stop_name": "TERRE CIEL"}, "geometry": {"type": "Point", "coordinates": [2.6134810521284204, 48.878965828315415]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "857ad6706c20960895e27d2502558c9af52be826", "fields": {"departement": "77", "stop_lat": 48.850679452087306, "code_postal": "77337", "stop_lon": 2.6297681081578985, "coord": [48.850679452087306, 2.6297681081578985], "stop_id": 3677733, "stop_desc": "COURS DE L'ARCHE GUEDON - 77337", "stop_name": "LA REMISE AUX FRAISES"}, "geometry": {"type": "Point", "coordinates": [2.6297681081578985, 48.850679452087306]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "77880be924de052475c7eb9c063ab9b397076151", "fields": {"departement": "77", "stop_lat": 48.87462353224703, "code_postal": "77479", "stop_lon": 2.6399584020460387, "coord": [48.87462353224703, 2.6399584020460387], "stop_id": 3677725, "stop_desc": "GARE ROUTIERE - 77479", "stop_name": "GARE DE VAIRES - TORCY"}, "geometry": {"type": "Point", "coordinates": [2.6399584020460387, 48.87462353224703]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c66f7a8192f51ccdd865d1d8f58e363d15ea37c0", "fields": {"departement": "77", "stop_lat": 48.866322520287966, "code_postal": "77479", "stop_lon": 2.642171321020683, "coord": [48.866322520287966, 2.642171321020683], "stop_id": 3677727, "stop_desc": "44 BOULEVARD DE LA MARNE - 77479", "stop_name": "LE CANAL"}, "geometry": {"type": "Point", "coordinates": [2.642171321020683, 48.866322520287966]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0a78fb825be02945419b71f02e78ed3df12e2597", "fields": {"departement": "77", "stop_lat": 48.85765117162262, "code_postal": "77468", "stop_lon": 2.645062363100196, "coord": [48.85765117162262, 2.645062363100196], "stop_id": 3677711, "stop_desc": "AV DE LA REPUBLIQUE - 77468", "stop_name": "LES CANTINES"}, "geometry": {"type": "Point", "coordinates": [2.645062363100196, 48.85765117162262]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e3ca6f963e52c8841fa61ec0b30b8e9e56c62145", "fields": {"departement": "77", "stop_lat": 48.87032474855916, "code_postal": "77479", "stop_lon": 2.641064081206506, "coord": [48.87032474855916, 2.641064081206506], "stop_id": 3677714, "stop_desc": "59-61 AV DE LORRAINE - 77479", "stop_name": "REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.641064081206506, 48.87032474855916]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9999f1cab984285bd1727fdbab367c94ec19f0de", "fields": {"departement": "77", "stop_lat": 48.869290899856864, "code_postal": "77479", "stop_lon": 2.6411806353748193, "coord": [48.869290899856864, 2.6411806353748193], "stop_id": 3677726, "stop_desc": "4 BD DE LA MARNE - 77479", "stop_name": "REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.6411806353748193, 48.869290899856864]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4e71ead640715b028f40917006c6f4ae63dfa576", "fields": {"departement": "77", "stop_lat": 48.854913121659834, "code_postal": "77468", "stop_lon": 2.6403336762724474, "coord": [48.854913121659834, 2.6403336762724474], "stop_id": 3677709, "stop_desc": "R JEAN JAURES - 77468", "stop_name": "LA MALTOURNEE"}, "geometry": {"type": "Point", "coordinates": [2.6403336762724474, 48.854913121659834]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f71f654f67a8fe9e42ede8089432797663f0a037", "fields": {"departement": "77", "stop_lat": 48.854913121659834, "code_postal": "77468", "stop_lon": 2.6403336762724474, "coord": [48.854913121659834, 2.6403336762724474], "stop_id": 3677729, "stop_desc": "R JEAN JAURES - 77468", "stop_name": "LA MALTOURNEE"}, "geometry": {"type": "Point", "coordinates": [2.6403336762724474, 48.854913121659834]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "23f2ceff9caa5367b4d355af8153a99f5c653f34", "fields": {"departement": "77", "stop_lat": 48.83939955555686, "code_postal": "77258", "stop_lon": 2.6335985955814634, "coord": [48.83939955555686, 2.6335985955814634], "stop_id": 3677798, "stop_desc": "RUE JEHAN SCARRON - 77258", "stop_name": "LOGNES RER"}, "geometry": {"type": "Point", "coordinates": [2.6335985955814634, 48.83939955555686]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "36cbe2ed8e5df8d4d99a6ace04be4829e5a50f9f", "fields": {"departement": "77", "stop_lat": 48.82571249824891, "code_postal": "77258", "stop_lon": 2.629491258640077, "coord": [48.82571249824891, 2.629491258640077], "stop_id": 3677835, "stop_desc": "RUE DE LA MAISON ROUGE - 77258", "stop_name": "CHAMBRE DE COMMERCE ET D'INDUSTRIE"}, "geometry": {"type": "Point", "coordinates": [2.629491258640077, 48.82571249824891]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b543f7bb2d5d7db984ec7cc413004511234868ff", "fields": {"departement": "93", "stop_lat": 48.989618845747074, "code_postal": "93073", "stop_lon": 2.5274980640072955, "coord": [48.989618845747074, 2.5274980640072955], "stop_id": 3678796, "stop_desc": "RUE DE LA BELLE BORNE - 93073", "stop_name": "AEROVILLE - RUE DE LA BELLE BORNE"}, "geometry": {"type": "Point", "coordinates": [2.5274980640072955, 48.989618845747074]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9db40979338a8e348bb5c271682fa1308fc86064", "fields": {"departement": "77", "stop_lat": 48.82604549537294, "code_postal": "77146", "stop_lon": 2.6365442421320906, "coord": [48.82604549537294, 2.6365442421320906], "stop_id": 3677821, "stop_desc": "ALLEE DU 1ER MAI - 77146", "stop_name": "CROISSY-BEAUBOURG - Z.I. PARIEST"}, "geometry": {"type": "Point", "coordinates": [2.6365442421320906, 48.82604549537294]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "94f7e06c7efa6ae10996d70b9f8723f82fbf5a95", "fields": {"departement": "77", "stop_lat": 48.824544052604296, "code_postal": "77258", "stop_lon": 2.6331462487305894, "coord": [48.824544052604296, 2.6331462487305894], "stop_id": 3677886, "stop_desc": "BOULEVARD DE COURCERIN - 77258", "stop_name": "AERODROME DE LOGNES"}, "geometry": {"type": "Point", "coordinates": [2.6331462487305894, 48.824544052604296]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4e6e9bace169625b198a58fd9510bcfa4b0f100f", "fields": {"departement": "77", "stop_lat": 48.83594845740181, "code_postal": "77258", "stop_lon": 2.6299028951720893, "coord": [48.83594845740181, 2.6299028951720893], "stop_id": 3677828, "stop_desc": "PL MARTIN LUTHER KING - 77258", "stop_name": "RUE DE LA FERME"}, "geometry": {"type": "Point", "coordinates": [2.6299028951720893, 48.83594845740181]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "abb974a9e3ea0fcaaf5de9b2854f09d6504633be", "fields": {"departement": "77", "stop_lat": 48.82784856931678, "code_postal": "77146", "stop_lon": 2.6379159064951843, "coord": [48.82784856931678, 2.6379159064951843], "stop_id": 3677838, "stop_desc": "RUE LEON JOUHAUX - 77146", "stop_name": "LA MARE A BLONDEAU"}, "geometry": {"type": "Point", "coordinates": [2.6379159064951843, 48.82784856931678]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "68f4adf871d1ac3cd8c0f13b060f47394e4f29c7", "fields": {"departement": "77", "stop_lat": 48.825645131503386, "code_postal": "77146", "stop_lon": 2.638488460077835, "coord": [48.825645131503386, 2.638488460077835], "stop_id": 3677839, "stop_desc": "RUE LEON JOUHAUX - 77146", "stop_name": "LA MARE A BLONDEAU"}, "geometry": {"type": "Point", "coordinates": [2.638488460077835, 48.825645131503386]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a503fb0f82925a9fc852159ef6191b4eb6f90534", "fields": {"departement": "93", "stop_lat": 48.99158529799905, "code_postal": "93073", "stop_lon": 2.528488506041771, "coord": [48.99158529799905, 2.528488506041771], "stop_id": 3678798, "stop_desc": "ROUTE DU MIDI - 93073", "stop_name": "RUE DU TE"}, "geometry": {"type": "Point", "coordinates": [2.528488506041771, 48.99158529799905]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "091be4b3887a6f49154f941aa3c07d9b5ef3196f", "fields": {"departement": "94", "stop_lat": 48.84887515339162, "code_postal": "94058", "stop_lon": 2.495687441698999, "coord": [48.84887515339162, 2.495687441698999], "stop_id": 3682932, "stop_desc": "20 BOULEVARD ALSACE LORRAINE - 94058", "stop_name": "ROND-POINT DU GENERAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.495687441698999, 48.84887515339162]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1911690c8429e49cf330e05710d6cb54aebd9b9a", "fields": {"departement": "93", "stop_lat": 48.85714423915471, "code_postal": "93050", "stop_lon": 2.531683856736101, "coord": [48.85714423915471, 2.531683856736101], "stop_id": 3682950, "stop_desc": "78 AVENUE DU GENERAL DE GAULLE - 93050", "stop_name": "PLACE DE LA RESISTANCE"}, "geometry": {"type": "Point", "coordinates": [2.531683856736101, 48.85714423915471]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6f7dc46a05bec52ce4741ddad2354d0c86931b33", "fields": {"departement": "77", "stop_lat": 48.87396217895166, "code_postal": "77108", "stop_lon": 2.5880578807261676, "coord": [48.87396217895166, 2.5880578807261676], "stop_id": 3682913, "stop_desc": "5 BOULEVARD CHILPERIC - 77108", "stop_name": "CHILPERIC - ADOLPHE BESSON"}, "geometry": {"type": "Point", "coordinates": [2.5880578807261676, 48.87396217895166]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1364422dfd89613c1b64b4eb50e7e0e6aa363702", "fields": {"departement": "93", "stop_lat": 48.854634780445664, "code_postal": "93050", "stop_lon": 2.5216095472047004, "coord": [48.854634780445664, 2.5216095472047004], "stop_id": 3682945, "stop_desc": "11 TER BOULEVARD DU MARECHAL FOCH - 93050", "stop_name": "HELENE BOUCHER"}, "geometry": {"type": "Point", "coordinates": [2.5216095472047004, 48.854634780445664]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "de043206610bed31b299c62df40075bd77382e9b", "fields": {"departement": "94", "stop_lat": 48.850726191890054, "code_postal": "94058", "stop_lon": 2.5025841007304725, "coord": [48.850726191890054, 2.5025841007304725], "stop_id": 3682937, "stop_desc": "89 BOULEVARD ALSACE-LORRAINE - 94058", "stop_name": "JULES FERRY"}, "geometry": {"type": "Point", "coordinates": [2.5025841007304725, 48.850726191890054]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "90e7394559a2e8339c7aa5608aea3bbb1673b7a9", "fields": {"departement": "77", "stop_lat": 48.87590800674432, "code_postal": "77108", "stop_lon": 2.5901519562185276, "coord": [48.87590800674432, 2.5901519562185276], "stop_id": 3682915, "stop_desc": "33 RUE ADOLPHE BESSON - 77108", "stop_name": "RUE DUCHESNE"}, "geometry": {"type": "Point", "coordinates": [2.5901519562185276, 48.87590800674432]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ea58bdad58efae868a6d0a463da184a265a0629c", "fields": {"departement": "94", "stop_lat": 48.850065501068165, "code_postal": "94058", "stop_lon": 2.4993952858883075, "coord": [48.850065501068165, 2.4993952858883075], "stop_id": 3682935, "stop_desc": "63 BOULEVARD ALSACE-LORRAINE - 94058", "stop_name": "AVRON"}, "geometry": {"type": "Point", "coordinates": [2.4993952858883075, 48.850065501068165]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "baa82ea756d26c6d1b55035d8b9146249937bd8f", "fields": {"departement": "93", "stop_lat": 48.86282809345117, "code_postal": "93050", "stop_lon": 2.5453950573798196, "coord": [48.86282809345117, 2.5453950573798196], "stop_id": 3682957, "stop_desc": "AVENUE JEAN JAURES - 93050", "stop_name": "VILLE EVRARD"}, "geometry": {"type": "Point", "coordinates": [2.5453950573798196, 48.86282809345117]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d074790cd99b21769fdeb013daabb6c4fb25f81d", "fields": {"departement": "94", "stop_lat": 48.85196701765014, "code_postal": "94058", "stop_lon": 2.508553140777638, "coord": [48.85196701765014, 2.508553140777638], "stop_id": 3682939, "stop_desc": "167 BOULEVARD ALSACE-LORRAINE - 94058", "stop_name": "JOULEAU"}, "geometry": {"type": "Point", "coordinates": [2.508553140777638, 48.85196701765014]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b332947c2825c59fb45336f153217d4fc131d127", "fields": {"departement": "93", "stop_lat": 48.8678271689098, "code_postal": "93050", "stop_lon": 2.5223512286276963, "coord": [48.8678271689098, 2.5223512286276963], "stop_id": 3682843, "stop_desc": "67 RUE DES FRERES LUMIERE - 93050", "stop_name": "RUE DES FRERES LUMIERE N0 67"}, "geometry": {"type": "Point", "coordinates": [2.5223512286276963, 48.8678271689098]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e87f580ee11e5f786d627290f276eabcee2a3d11", "fields": {"departement": "93", "stop_lat": 48.87035689802614, "code_postal": "93050", "stop_lon": 2.5253574850832208, "coord": [48.87035689802614, 2.5253574850832208], "stop_id": 3682845, "stop_desc": "15 RUE DES FRERES LUMIERE - 93050", "stop_name": "RUE DES FRERES LUMIERE N0 15"}, "geometry": {"type": "Point", "coordinates": [2.5253574850832208, 48.87035689802614]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "53046027092515a8b933bd7af012481c09af0d55", "fields": {"departement": "93", "stop_lat": 48.86545798339906, "code_postal": "93050", "stop_lon": 2.5200950650620375, "coord": [48.86545798339906, 2.5200950650620375], "stop_id": 3682840, "stop_desc": "102 BD LOUIS ARMAND - 93050", "stop_name": "LES CHANOUX - LYCEE CUGNOT"}, "geometry": {"type": "Point", "coordinates": [2.5200950650620375, 48.86545798339906]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a6ab746fb2a02a418d005ae8e947b553c60cde66", "fields": {"departement": "93", "stop_lat": 48.871045215298366, "code_postal": "93050", "stop_lon": 2.53323461724202, "coord": [48.871045215298366, 2.53323461724202], "stop_id": 3682860, "stop_desc": "FACE 80 RUE GASTON NAVAILLES - 93050", "stop_name": "CITE DES BOULEAUX"}, "geometry": {"type": "Point", "coordinates": [2.53323461724202, 48.871045215298366]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "727f80cdf49a2c3de63111c878f8d06192a0a692", "fields": {"departement": "93", "stop_lat": 48.86750083438183, "code_postal": "93050", "stop_lon": 2.518317655418811, "coord": [48.86750083438183, 2.518317655418811], "stop_id": 3682849, "stop_desc": "88/86 RUE LOUIS AMPERE - 93050", "stop_name": "RUE LOUIS AMPERE N0 88"}, "geometry": {"type": "Point", "coordinates": [2.518317655418811, 48.86750083438183]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6872763b213183cc11ca2f878dc3c4ff9560858b", "fields": {"departement": "93", "stop_lat": 48.86611826855342, "code_postal": "93050", "stop_lon": 2.5288567504658026, "coord": [48.86611826855342, 2.5288567504658026], "stop_id": 3682826, "stop_desc": "137 BIS RUE PAUL ET CAMILLE THOMOUX - 93050", "stop_name": "LEON BLUM"}, "geometry": {"type": "Point", "coordinates": [2.5288567504658026, 48.86611826855342]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ba7e6faa8d9c232532439f1bdb7fa351d24028e0", "fields": {"departement": "93", "stop_lat": 48.86018408234069, "code_postal": "93050", "stop_lon": 2.5304012505083278, "coord": [48.86018408234069, 2.5304012505083278], "stop_id": 3682822, "stop_desc": "59 RUE PAUL ET CAMILLE THOMOUX - 93050", "stop_name": "EPI D'OR"}, "geometry": {"type": "Point", "coordinates": [2.5304012505083278, 48.86018408234069]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6cdab50473be58ad0720cafe26d303730dcd4cb4", "fields": {"departement": "93", "stop_lat": 48.86618647933904, "code_postal": "93050", "stop_lon": 2.5255330738242145, "coord": [48.86618647933904, 2.5255330738242145], "stop_id": 3682852, "stop_desc": "15 -17 RUE LOUIS VANNINI - 93050", "stop_name": "11 NOVEMBRE"}, "geometry": {"type": "Point", "coordinates": [2.5255330738242145, 48.86618647933904]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6dd76db10f560bfaa2837c47f11ec0761823acb6", "fields": {"departement": "93", "stop_lat": 48.867540185876635, "code_postal": "93050", "stop_lon": 2.5332077466950484, "coord": [48.867540185876635, 2.5332077466950484], "stop_id": 3682827, "stop_desc": "AVENUE LEON BLUM - 93050", "stop_name": "ILE DE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.5332077466950484, 48.867540185876635]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5953ea71db2c9c21d7db7f54bbd3bf7ede9d3113", "fields": {"departement": "93", "stop_lat": 48.86653078639535, "code_postal": "93050", "stop_lon": 2.529416807489572, "coord": [48.86653078639535, 2.529416807489572], "stop_id": 3682854, "stop_desc": "4-6 AVENUE LEON BLUM - 93050", "stop_name": "LEON BLUM"}, "geometry": {"type": "Point", "coordinates": [2.529416807489572, 48.86653078639535]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "376dba15c7233d091a708c957e5b2ca5b51b1a2b", "fields": {"departement": "94", "stop_lat": 48.84887515339162, "code_postal": "94058", "stop_lon": 2.495687441698999, "coord": [48.84887515339162, 2.495687441698999], "stop_id": 3682873, "stop_desc": "20 BOULEVARD ALSACE LORRAINE - 94058", "stop_name": "ROND-POINT DU GENERAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.495687441698999, 48.84887515339162]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "497e9f4ab946f22bb3284bab290d1c2b92a894ee", "fields": {"departement": "93", "stop_lat": 48.85503415309562, "code_postal": "93050", "stop_lon": 2.5248524619630364, "coord": [48.85503415309562, 2.5248524619630364], "stop_id": 3682887, "stop_desc": "26 BOULEVARD DU MARECHAL FOCH - 93050", "stop_name": "VILLEBOIS - MAREUIL"}, "geometry": {"type": "Point", "coordinates": [2.5248524619630364, 48.85503415309562]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "486302fd76f15f80d58263ef97e7bebe88b707e4", "fields": {"departement": "93", "stop_lat": 48.85582135471058, "code_postal": "93050", "stop_lon": 2.527184318308966, "coord": [48.85582135471058, 2.527184318308966], "stop_id": 3682890, "stop_desc": "FACE 38 AVENUE DU GENERAL DE GAULLE - 93050", "stop_name": "FOCH - DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.527184318308966, 48.85582135471058]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f479a27a50c1be0b2299a0c40e2e1b0b2bed0ee5", "fields": {"departement": "93", "stop_lat": 48.86547170811764, "code_postal": "93050", "stop_lon": 2.564354542874806, "coord": [48.86547170811764, 2.564354542874806], "stop_id": 3682903, "stop_desc": "AVENUE JEAN JAURES - 93050", "stop_name": "POINTE DE GOURNAY"}, "geometry": {"type": "Point", "coordinates": [2.564354542874806, 48.86547170811764]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "30412ded26bb8c5469e6279024166afa5d356d20", "fields": {"departement": "93", "stop_lat": 48.865591003348804, "code_postal": "93050", "stop_lon": 2.5630609260390105, "coord": [48.865591003348804, 2.5630609260390105], "stop_id": 3682904, "stop_desc": "0 AV JEAN JAURES - 93050", "stop_name": "POINTE DE GOURNAY"}, "geometry": {"type": "Point", "coordinates": [2.5630609260390105, 48.865591003348804]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "49f4d3ba07339c0841fe147e75e64e3be5651b7c", "fields": {"departement": "93", "stop_lat": 48.85831643344756, "code_postal": "93050", "stop_lon": 2.5348209878560497, "coord": [48.85831643344756, 2.5348209878560497], "stop_id": 3682893, "stop_desc": "118 AVENUE DU GENERAL DE GAULLE - 93050", "stop_name": "PASTEUR"}, "geometry": {"type": "Point", "coordinates": [2.5348209878560497, 48.85831643344756]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f05131e0ce872295afff765ed125590fd701c583", "fields": {"departement": "93", "stop_lat": 48.853437480755204, "code_postal": "93050", "stop_lon": 2.5170155851458653, "coord": [48.853437480755204, 2.5170155851458653], "stop_id": 3682883, "stop_desc": "32 BOULEVARD GALLIENI - 93050", "stop_name": "CENTRE BUS"}, "geometry": {"type": "Point", "coordinates": [2.5170155851458653, 48.853437480755204]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cba59c488bb4e8438d87d80db7fcb24b6aa7e20c", "fields": {"departement": "94", "stop_lat": 48.85164403695081, "code_postal": "94058", "stop_lon": 2.5081571280065345, "coord": [48.85164403695081, 2.5081571280065345], "stop_id": 3682879, "stop_desc": "140 BOULEVARD ALSACE-LORRAINE - 94058", "stop_name": "JOULEAU"}, "geometry": {"type": "Point", "coordinates": [2.5081571280065345, 48.85164403695081]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "24c1d51776797b4466977906ae852a62ee7584d0", "fields": {"departement": "94", "stop_lat": 48.850065501068165, "code_postal": "94058", "stop_lon": 2.4993952858883075, "coord": [48.850065501068165, 2.4993952858883075], "stop_id": 3682876, "stop_desc": "63 BOULEVARD ALSACE-LORRAINE - 94058", "stop_name": "AVRON"}, "geometry": {"type": "Point", "coordinates": [2.4993952858883075, 48.850065501068165]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b6d4ecd1300bc789ea8a3789dd3c7dbbc8171e09", "fields": {"departement": "93", "stop_lat": 48.86467957262208, "code_postal": "93050", "stop_lon": 2.555401237355375, "coord": [48.86467957262208, 2.555401237355375], "stop_id": 3682901, "stop_desc": "AVENUE JEAN JAURES - 93050", "stop_name": "L'AVENIR"}, "geometry": {"type": "Point", "coordinates": [2.555401237355375, 48.86467957262208]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c7e2fe58004e4becd0e614e6065f882a44dfd436", "fields": {"departement": "93", "stop_lat": 48.86450513633291, "code_postal": "93050", "stop_lon": 2.520214305289419, "coord": [48.86450513633291, 2.520214305289419], "stop_id": 3683019, "stop_desc": "BOULEVARD LOUIS ARMAND - 93050", "stop_name": "LES CHANOUX - LYCEE CUGNOT"}, "geometry": {"type": "Point", "coordinates": [2.520214305289419, 48.86450513633291]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "da9d6caaaf5d465f121c262647c86a1ca6948d5d", "fields": {"departement": "93", "stop_lat": 48.8710350090773, "code_postal": "93032", "stop_lon": 2.564297166615106, "coord": [48.8710350090773, 2.564297166615106], "stop_id": 3683047, "stop_desc": "4 AVENUE DE FONTAINEBLEAU - 93032", "stop_name": "BOULEVARD DES PECHEURS"}, "geometry": {"type": "Point", "coordinates": [2.564297166615106, 48.8710350090773]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "be1d0464bae7faa60087b9f87380819373e07fab", "fields": {"departement": "93", "stop_lat": 48.90450010869527, "code_postal": "93010", "stop_lon": 2.4716730867766277, "coord": [48.90450010869527, 2.4716730867766277], "stop_id": 3682032, "stop_desc": "AVENUE GALLIENI - 93010", "stop_name": "AVENUE DE ROSNY"}, "geometry": {"type": "Point", "coordinates": [2.4716730867766277, 48.90450010869527]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ed712abeaad7a376c1bf7d888176439a4d24dac8", "fields": {"departement": "93", "stop_lat": 48.9323210589346, "code_postal": "93071", "stop_lon": 2.537681287715955, "coord": [48.9323210589346, 2.537681287715955], "stop_id": 3682058, "stop_desc": "52 AVENUE DE LIVRY - 93071", "stop_name": "LOUIS MENARD"}, "geometry": {"type": "Point", "coordinates": [2.537681287715955, 48.9323210589346]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "992153f26299e3586035086504ce575d39f98bf3", "fields": {"departement": "93", "stop_lat": 48.9146242550899, "code_postal": "93046", "stop_lon": 2.527604436444727, "coord": [48.9146242550899, 2.527604436444727], "stop_id": 3682045, "stop_desc": "74 AVENUE ARISTIDE BRIAND - 93046", "stop_name": "GAMBETTA"}, "geometry": {"type": "Point", "coordinates": [2.527604436444727, 48.9146242550899]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "211f5198445e59ebe5db430256b778cd1da99cc2", "fields": {"departement": "93", "stop_lat": 48.918806643655756, "code_postal": "93046", "stop_lon": 2.536510802957832, "coord": [48.918806643655756, 2.536510802957832], "stop_id": 3682101, "stop_desc": "10 AVENUE DU CONSUL GENERAL NORDLING - 93046", "stop_name": "MAIRIE DE LIVRY - GARGAN"}, "geometry": {"type": "Point", "coordinates": [2.536510802957832, 48.918806643655756]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4f248b40644462692996ef6a56657b1f6ce99342", "fields": {"departement": "93", "stop_lat": 48.87035689802614, "code_postal": "93050", "stop_lon": 2.5253574850832208, "coord": [48.87035689802614, 2.5253574850832208], "stop_id": 3682844, "stop_desc": "15 RUE DES FRERES LUMIERE - 93050", "stop_name": "RUE DES FRERES LUMIERE N0 15"}, "geometry": {"type": "Point", "coordinates": [2.5253574850832208, 48.87035689802614]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a463681724e8626d99cb064f5c3a46b60621d923", "fields": {"departement": "93", "stop_lat": 48.85582135471058, "code_postal": "93050", "stop_lon": 2.527184318308966, "coord": [48.85582135471058, 2.527184318308966], "stop_id": 3682818, "stop_desc": "FACE 38 AVENUE DU GENERAL DE GAULLE - 93050", "stop_name": "FOCH - DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.527184318308966, 48.85582135471058]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d8e4147ac97a2cadf415cb90524b1655b9b5697f", "fields": {"departement": "93", "stop_lat": 48.85296447651706, "code_postal": "93049", "stop_lon": 2.5147940192726437, "coord": [48.85296447651706, 2.5147940192726437], "stop_id": 3682810, "stop_desc": "22-24 BOULEVARD GALLIENI - 93049", "stop_name": "NEUILLY-PLAISANCE RER."}, "geometry": {"type": "Point", "coordinates": [2.5147940192726437, 48.85296447651706]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5a6fce4e697fe1907b75050cd524fea2fb3edd8f", "fields": {"departement": "93", "stop_lat": 48.85390183581781, "code_postal": "93049", "stop_lon": 2.5129994635400186, "coord": [48.85390183581781, 2.5129994635400186], "stop_id": 3682833, "stop_desc": "PISTE GARE ROUTIERE - 93049", "stop_name": "NEUILLY-PLAISANCE RER"}, "geometry": {"type": "Point", "coordinates": [2.5129994635400186, 48.85390183581781]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8adf70c13e5baed377860c06c14f2ba27d5f9f83", "fields": {"departement": "77", "stop_lat": 48.84298279745342, "code_postal": "77468", "stop_lon": 2.6555826884396914, "coord": [48.84298279745342, 2.6555826884396914], "stop_id": 3682703, "stop_desc": "AVENUE DE LINGENFELD - 77468", "stop_name": "SALVADOR ALLENDE"}, "geometry": {"type": "Point", "coordinates": [2.6555826884396914, 48.84298279745342]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "94a3d13188ae3535cd61c5c578902384cef8e149", "fields": {"departement": "93", "stop_lat": 48.858465286712345, "code_postal": "93050", "stop_lon": 2.5204109277276596, "coord": [48.858465286712345, 2.5204109277276596], "stop_id": 3682839, "stop_desc": "63 BOULEVARD ARISTIDE BRIAND - 93050", "stop_name": "PAUL DOUMER"}, "geometry": {"type": "Point", "coordinates": [2.5204109277276596, 48.858465286712345]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bf87d7fbeb0e645e67b9f39bacd43a1c30adc2a4", "fields": {"departement": "93", "stop_lat": 48.85840216543347, "code_postal": "93050", "stop_lon": 2.520546910918171, "coord": [48.85840216543347, 2.520546910918171], "stop_id": 3682838, "stop_desc": "28 BOULEVARD ARISTIDE BRIAND - 93050", "stop_name": "PAUL DOUMER"}, "geometry": {"type": "Point", "coordinates": [2.520546910918171, 48.85840216543347]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6b0cbcb02d5d7cad1904a294548924af8390f188", "fields": {"departement": "93", "stop_lat": 48.867432920009676, "code_postal": "93050", "stop_lon": 2.532853143631693, "coord": [48.867432920009676, 2.532853143631693], "stop_id": 3682829, "stop_desc": "AVENUE LEON BLUM - 93050", "stop_name": "ILE DE FRANCE."}, "geometry": {"type": "Point", "coordinates": [2.532853143631693, 48.867432920009676]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1dbd2b4fe453cc2f1c996d0581b4d87e57ffb7b4", "fields": {"departement": "93", "stop_lat": 48.867818366920886, "code_postal": "93050", "stop_lon": 2.5334676366699243, "coord": [48.867818366920886, 2.5334676366699243], "stop_id": 3682828, "stop_desc": "AVENUE LEON BLUM - 93050", "stop_name": "ILE DE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.5334676366699243, 48.867818366920886]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8279e8cbb1526489b181431b1fdc1e51d5a66ca3", "fields": {"departement": "93", "stop_lat": 48.84917282451323, "code_postal": "93051", "stop_lon": 2.5523127821508225, "coord": [48.84917282451323, 2.5523127821508225], "stop_id": 3682644, "stop_desc": "2 RUE GEORGES LAIGNEAU - 93051", "stop_name": "MAIRIE DE NOISY-LE-GRAND"}, "geometry": {"type": "Point", "coordinates": [2.5523127821508225, 48.84917282451323]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a455d32b3e230c49c0b21ef3924f447edec38353", "fields": {"departement": "93", "stop_lat": 48.89549740240577, "code_postal": "93010", "stop_lon": 2.4848439099106594, "coord": [48.89549740240577, 2.4848439099106594], "stop_id": 3682326, "stop_desc": "84 R EDOUARD VAILLANT - 93010", "stop_name": "VAILLANT - SOLIDARITE"}, "geometry": {"type": "Point", "coordinates": [2.4848439099106594, 48.89549740240577]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "327da0340a2009469444a09635048de1fa61b833", "fields": {"departement": "93", "stop_lat": 48.89908422197564, "code_postal": "93010", "stop_lon": 2.4840771420758485, "coord": [48.89908422197564, 2.4840771420758485], "stop_id": 3682350, "stop_desc": "71 RUE LOUIS AUGUSTE BLANQUI - 93010", "stop_name": "BLANQUI - FURCI"}, "geometry": {"type": "Point", "coordinates": [2.4840771420758485, 48.89908422197564]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9f5b025fb60099a45d630fab1727ca5b8cb2c3e0", "fields": {"departement": "93", "stop_lat": 48.913892372405016, "code_postal": "93010", "stop_lon": 2.478760482639465, "coord": [48.913892372405016, 2.478760482639465], "stop_id": 3682337, "stop_desc": "FACE 9 AVENUE LEON BLUM - 93010", "stop_name": "SUZANNE BUISSON"}, "geometry": {"type": "Point", "coordinates": [2.478760482639465, 48.913892372405016]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "af405d072a6ad13b94f391b417151afca178352e", "fields": {"departement": "93", "stop_lat": 48.891632731492024, "code_postal": "93010", "stop_lon": 2.477554842271514, "coord": [48.891632731492024, 2.477554842271514], "stop_id": 3682356, "stop_desc": "FACE 27 RUE ETIENNE DOLET - 93010", "stop_name": "DOLET-BELFORT"}, "geometry": {"type": "Point", "coordinates": [2.477554842271514, 48.891632731492024]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "94493a59582e282ddc49af70b8f7bce748860a1c", "fields": {"departement": "93", "stop_lat": 48.84685302058228, "code_postal": "93051", "stop_lon": 2.532012958700496, "coord": [48.84685302058228, 2.532012958700496], "stop_id": 3682638, "stop_desc": "FACE 42 BOULEVARD DU MARECHAL FOCH - 93051", "stop_name": "VERDUN"}, "geometry": {"type": "Point", "coordinates": [2.532012958700496, 48.84685302058228]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "062e9cd7a7bf68d422d2a760d26fca9f770e5ed9", "fields": {"departement": "93", "stop_lat": 48.89888685045415, "code_postal": "93010", "stop_lon": 2.4762931462601703, "coord": [48.89888685045415, 2.4762931462601703], "stop_id": 3682353, "stop_desc": "6 BIS RUE DE LA FRATERNITE - 93010", "stop_name": "FRATERNITE"}, "geometry": {"type": "Point", "coordinates": [2.4762931462601703, 48.89888685045415]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ac9fa307b5408722d0632cb35d2708fe2d16ff2f", "fields": {"departement": "93", "stop_lat": 48.84707646208017, "code_postal": "93051", "stop_lon": 2.548559237181919, "coord": [48.84707646208017, 2.548559237181919], "stop_id": 3682641, "stop_desc": "FACE 13 RUE DU DOCTEUR SUREAU - 93051", "stop_name": "PASTEUR"}, "geometry": {"type": "Point", "coordinates": [2.548559237181919, 48.84707646208017]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7f84292ba6254efd48535ed7dd5e61384afb4d99", "fields": {"departement": "93", "stop_lat": 48.913127869248015, "code_postal": "93010", "stop_lon": 2.486625780970679, "coord": [48.913127869248015, 2.486625780970679], "stop_id": 3682342, "stop_desc": "VOIE PROMENADE - 93010", "stop_name": "RONSARD - VILLON"}, "geometry": {"type": "Point", "coordinates": [2.486625780970679, 48.913127869248015]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7fe3c3167afd8d8fe3067ea0bd8dd54fc314a30c", "fields": {"departement": "93", "stop_lat": 48.917297449108766, "code_postal": "93010", "stop_lon": 2.479601585394782, "coord": [48.917297449108766, 2.479601585394782], "stop_id": 3682338, "stop_desc": "24 AV LEON BLUM - 93010", "stop_name": "JOUHAUX - BLUM"}, "geometry": {"type": "Point", "coordinates": [2.479601585394782, 48.917297449108766]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8747a4bd5f7de14443467a2746177b44b330abc7", "fields": {"departement": "77", "stop_lat": 48.85552919168464, "code_postal": "77083", "stop_lon": 2.5836512392662123, "coord": [48.85552919168464, 2.5836512392662123], "stop_id": 3682656, "stop_desc": "48 RUE DE LA REPUBLIQUE - 77083", "stop_name": "ROND-POINT DES PYRAMIDES"}, "geometry": {"type": "Point", "coordinates": [2.5836512392662123, 48.85552919168464]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "557265d28906fdd9336d333daee13613dba17a6c", "fields": {"departement": "93", "stop_lat": 48.84951807883047, "code_postal": "93051", "stop_lon": 2.5648158086543447, "coord": [48.84951807883047, 2.5648158086543447], "stop_id": 3682648, "stop_desc": "75 AV EMILE COSSONNEAU - 93051", "stop_name": "POINTE DE GOURNAY"}, "geometry": {"type": "Point", "coordinates": [2.5648158086543447, 48.84951807883047]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "12fe48e8630de647681f2db987112c90d545323b", "fields": {"departement": "77", "stop_lat": 48.854692679419884, "code_postal": "77083", "stop_lon": 2.5966676702967124, "coord": [48.854692679419884, 2.5966676702967124], "stop_id": 3682659, "stop_desc": "FACE 30 RUE DE CHELLES - 77083", "stop_name": "POINTE DE CHAMPS"}, "geometry": {"type": "Point", "coordinates": [2.5966676702967124, 48.854692679419884]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e746b8a645738fe979fd07b8b8a6f2da06780015", "fields": {"departement": "93", "stop_lat": 48.858401939189704, "code_postal": "93033", "stop_lon": 2.5808590358130417, "coord": [48.858401939189704, 2.5808590358130417], "stop_id": 3682654, "stop_desc": "AVENUE ARISTIDE BRIAND - 93033", "stop_name": "PLACE CHURCHILL"}, "geometry": {"type": "Point", "coordinates": [2.5808590358130417, 48.858401939189704]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e6b2ef57f0c8ed998deac65ca30efb6d67653388", "fields": {"departement": "77", "stop_lat": 48.84683513854755, "code_postal": "77337", "stop_lon": 2.6137321018284156, "coord": [48.84683513854755, 2.6137321018284156], "stop_id": 3682673, "stop_desc": "COURS DES ROCHES - 77337", "stop_name": "COLLEGE LE LUZARD"}, "geometry": {"type": "Point", "coordinates": [2.6137321018284156, 48.84683513854755]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e0bafff5f655dc3b8ea6f439485335fedb190aeb", "fields": {"departement": "77", "stop_lat": 48.84866889183998, "code_postal": "77468", "stop_lon": 2.656720651347793, "coord": [48.84866889183998, 2.656720651347793], "stop_id": 3682696, "stop_desc": "AV JACQUES PREVERT - 77468", "stop_name": "RUE DES EPINETTES"}, "geometry": {"type": "Point", "coordinates": [2.656720651347793, 48.84866889183998]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0003365198cef75f7524ae5d09660340b2181cd2", "fields": {"departement": "77", "stop_lat": 48.85089483954968, "code_postal": "77337", "stop_lon": 2.6262148431505064, "coord": [48.85089483954968, 2.6262148431505064], "stop_id": 3682680, "stop_desc": "192 COURS DE L'ARCHE GUEDON - 77337", "stop_name": "JULES FERRY"}, "geometry": {"type": "Point", "coordinates": [2.6262148431505064, 48.85089483954968]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f09570a98b9b660b7de595e9690faccfeecae892", "fields": {"departement": "77", "stop_lat": 48.84961812216385, "code_postal": "77468", "stop_lon": 2.6408610910140897, "coord": [48.84961812216385, 2.6408610910140897], "stop_id": 3682689, "stop_desc": "FACE 18 COURS DE L'ARCHE GUEDON - 77468", "stop_name": "BEL AIR"}, "geometry": {"type": "Point", "coordinates": [2.6408610910140897, 48.84961812216385]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "92e84cbf64acf5cdf08f38a7f65025d65b74cfde", "fields": {"departement": "77", "stop_lat": 48.85223720464594, "code_postal": "77083", "stop_lon": 2.6016127167657035, "coord": [48.85223720464594, 2.6016127167657035], "stop_id": 3682661, "stop_desc": "10 RUE DE PARIS - 77083", "stop_name": "MAIRIE DE CHAMPS"}, "geometry": {"type": "Point", "coordinates": [2.6016127167657035, 48.85223720464594]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ced45ab697143560e944116a0756892456648e18", "fields": {"departement": "77", "stop_lat": 48.85088335370485, "code_postal": "77468", "stop_lon": 2.652022216317478, "coord": [48.85088335370485, 2.652022216317478], "stop_id": 3682693, "stop_desc": "46 RUE DE PARIS - 77468", "stop_name": "MAIRIE DE TORCY"}, "geometry": {"type": "Point", "coordinates": [2.652022216317478, 48.85088335370485]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "30722b6ceafd7a6bebe979629837a2b0e17e0aea", "fields": {"departement": "93", "stop_lat": 48.91205253249752, "code_postal": "93046", "stop_lon": 2.5228092011847636, "coord": [48.91205253249752, 2.5228092011847636], "stop_id": 3682179, "stop_desc": "12 AVENUE CAMILLE DESMOULINS - 93046", "stop_name": "CHANZY - EGLISE SAINT-MICHEL"}, "geometry": {"type": "Point", "coordinates": [2.5228092011847636, 48.91205253249752]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "912ebf6b63399f6688bf5bd17ba996374a70ebb0", "fields": {"departement": "93", "stop_lat": 48.903523017599944, "code_postal": "93053", "stop_lon": 2.469434829520669, "coord": [48.903523017599944, 2.469434829520669], "stop_id": 3682165, "stop_desc": "195 RUE DE PARIS - 93053", "stop_name": "PONT DE BONDY - AVENUE DE ROSNY"}, "geometry": {"type": "Point", "coordinates": [2.469434829520669, 48.903523017599944]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0830867bbf7c4756a51d10c181d3bc8a2e7643b9", "fields": {"departement": "93", "stop_lat": 48.903523017599944, "code_postal": "93053", "stop_lon": 2.469434829520669, "coord": [48.903523017599944, 2.469434829520669], "stop_id": 3682208, "stop_desc": "195 RUE DE PARIS - 93053", "stop_name": "PONT DE BONDY - AVENUE DE ROSNY"}, "geometry": {"type": "Point", "coordinates": [2.469434829520669, 48.903523017599944]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8c86f62f8d7487b76ad49f4d41d5194847fec816", "fields": {"departement": "93", "stop_lat": 48.91078374510361, "code_postal": "93046", "stop_lon": 2.5119789583655017, "coord": [48.91078374510361, 2.5119789583655017], "stop_id": 3682105, "stop_desc": "2-4 AVENUE JULES GUESDE - 93046", "stop_name": "VICTOR HUGO - JULES GUESDE"}, "geometry": {"type": "Point", "coordinates": [2.5119789583655017, 48.91078374510361]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3b12a6968215ff49eab5cb8a13152c3a380aefed", "fields": {"departement": "93", "stop_lat": 48.911837928024454, "code_postal": "93014", "stop_lon": 2.5491233384372705, "coord": [48.911837928024454, 2.5491233384372705], "stop_id": 3682187, "stop_desc": "11 AVENUE DE SEVIGNE - 93014", "stop_name": "MAIRIE DE CLICHY-SOUS-BOIS"}, "geometry": {"type": "Point", "coordinates": [2.5491233384372705, 48.911837928024454]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "43503c81c996202dafaa049f42e62681a782fc9b", "fields": {"departement": "93", "stop_lat": 48.90397868952098, "code_postal": "93010", "stop_lon": 2.4718216924159715, "coord": [48.90397868952098, 2.4718216924159715], "stop_id": 3682209, "stop_desc": "AVENUE DU GENERAL GALLIENI - 93010", "stop_name": "AVENUE DE ROSNY"}, "geometry": {"type": "Point", "coordinates": [2.4718216924159715, 48.90397868952098]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2b23711fc16f5b531cee37cdb437fc67358d0b28", "fields": {"departement": "93", "stop_lat": 48.912055676467105, "code_postal": "93046", "stop_lon": 2.5207776395378794, "coord": [48.912055676467105, 2.5207776395378794], "stop_id": 3682104, "stop_desc": "FACE 300 AVENUE ARISTIDE BRIAND - 93046", "stop_name": "CHANZY"}, "geometry": {"type": "Point", "coordinates": [2.5207776395378794, 48.912055676467105]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1ed8f743fe588e760d8eb6d9779fc31e02506cad", "fields": {"departement": "93", "stop_lat": 48.90803786721315, "code_postal": "93057", "stop_lon": 2.4961546603940876, "coord": [48.90803786721315, 2.4961546603940876], "stop_id": 3682174, "stop_desc": "62 AVENUE ARISTIDE BRIAND - 93057", "stop_name": "LA FOURCHE"}, "geometry": {"type": "Point", "coordinates": [2.4961546603940876, 48.90803786721315]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6c722fa6c2eb600f1f91a626d5047cf8381a7ee1", "fields": {"departement": "93", "stop_lat": 48.91534153263659, "code_postal": "93046", "stop_lon": 2.528657012133192, "coord": [48.91534153263659, 2.528657012133192], "stop_id": 3682103, "stop_desc": "159 AVENUE ARISTIDE BRIAND - 93046", "stop_name": "GAMBETTA"}, "geometry": {"type": "Point", "coordinates": [2.528657012133192, 48.91534153263659]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d8b90004490c39dc78ca35ec61f0b9e74585c2f4", "fields": {"departement": "93", "stop_lat": 48.90027462601666, "code_postal": "93047", "stop_lon": 2.5668653418209715, "coord": [48.90027462601666, 2.5668653418209715], "stop_id": 3682198, "stop_desc": "1 RUE PAUL BERT - 93047", "stop_name": "PAUL BERT"}, "geometry": {"type": "Point", "coordinates": [2.5668653418209715, 48.90027462601666]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "31ca983bb0d461ea002d6da422fc2d1c173189f1", "fields": {"departement": "93", "stop_lat": 48.89497134506774, "code_postal": "93010", "stop_lon": 2.4886725006790553, "coord": [48.89497134506774, 2.4886725006790553], "stop_id": 3682324, "stop_desc": "FACE 131 R EDOUARD VAILLANT - 93010", "stop_name": "LA REMISE A JORELLE"}, "geometry": {"type": "Point", "coordinates": [2.4886725006790553, 48.89497134506774]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7ce388c1f2eec9d87f531ef7f9254c6e6d86660e", "fields": {"departement": "93", "stop_lat": 48.890118186198556, "code_postal": "93010", "stop_lon": 2.481489503492388, "coord": [48.890118186198556, 2.481489503492388], "stop_id": 3682302, "stop_desc": "ROND-POINT GEORGES BRASSENS - 93010", "stop_name": "LA MARE A LA VEUVE"}, "geometry": {"type": "Point", "coordinates": [2.481489503492388, 48.890118186198556]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "861beaecc83e04ac244795e661d6338b12cb0283", "fields": {"departement": "93", "stop_lat": 48.895070151594346, "code_postal": "93010", "stop_lon": 2.488713680079425, "coord": [48.895070151594346, 2.488713680079425], "stop_id": 3682298, "stop_desc": "131 RUE EDOUARD VAILLANT - 93010", "stop_name": "LA REMISE A JORELLE"}, "geometry": {"type": "Point", "coordinates": [2.488713680079425, 48.895070151594346]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e25fd9a1a59e36672e13013cfe5f151e993f359d", "fields": {"departement": "93", "stop_lat": 48.89269402898734, "code_postal": "93077", "stop_lon": 2.4982474651445354, "coord": [48.89269402898734, 2.4982474651445354], "stop_id": 3682292, "stop_desc": "8 AVENUE FRANKLIN - 93077", "stop_name": "FRANKLIN - COQUETIERS"}, "geometry": {"type": "Point", "coordinates": [2.4982474651445354, 48.89269402898734]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "937fc3349b3b59e05b2d8645793ccf28276c95bc", "fields": {"departement": "93", "stop_lat": 48.89124834937275, "code_postal": "93010", "stop_lon": 2.4904743115017753, "coord": [48.89124834937275, 2.4904743115017753], "stop_id": 3682310, "stop_desc": "FACE 21 ROUTE DE VILLEMOMBLE - 93010", "stop_name": "LA SABLIERE"}, "geometry": {"type": "Point", "coordinates": [2.4904743115017753, 48.89124834937275]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4734c386922f500baa1a60ad6b0049d38706e9b9", "fields": {"departement": "93", "stop_lat": 48.89056871610303, "code_postal": "93010", "stop_lon": 2.4947654542780087, "coord": [48.89056871610303, 2.4947654542780087], "stop_id": 3682312, "stop_desc": "42 RUE SAINT-LOUIS PROLONGEE - 93010", "stop_name": "PHILOSOPHIE"}, "geometry": {"type": "Point", "coordinates": [2.4947654542780087, 48.89056871610303]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "363d4907f16b2600c223e127600d97e4261270f4", "fields": {"departement": "93", "stop_lat": 48.89067076760361, "code_postal": "93010", "stop_lon": 2.477838448808409, "coord": [48.89067076760361, 2.477838448808409], "stop_id": 3682286, "stop_desc": "1 AV DE METZ - 93010", "stop_name": "METZ - ETIENNE DOLET"}, "geometry": {"type": "Point", "coordinates": [2.477838448808409, 48.89067076760361]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bd9efe7671b0c15534fa44c9191ecc54db3e8d58", "fields": {"departement": "93", "stop_lat": 48.89274863193003, "code_postal": "93010", "stop_lon": 2.497743338489926, "coord": [48.89274863193003, 2.497743338489926], "stop_id": 3682318, "stop_desc": "AV ANATOLE FRANCE - 93010", "stop_name": "LES COQUETIERS"}, "geometry": {"type": "Point", "coordinates": [2.497743338489926, 48.89274863193003]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fed3e4cd9b887a294641ce974a015a9202617df2", "fields": {"departement": "93", "stop_lat": 48.8927463896491, "code_postal": "93010", "stop_lon": 2.485599334584045, "coord": [48.8927463896491, 2.485599334584045], "stop_id": 3682307, "stop_desc": "100 ROUTE DE VILLEMOMBLE - 93010", "stop_name": "L'ETOILE"}, "geometry": {"type": "Point", "coordinates": [2.485599334584045, 48.8927463896491]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c1aef2bfc749c0c855e9da9b9910cfa6224efd05", "fields": {"departement": "93", "stop_lat": 48.89460732315696, "code_postal": "93010", "stop_lon": 2.492201636932791, "coord": [48.89460732315696, 2.492201636932791], "stop_id": 3682321, "stop_desc": "RUE EDOUARD VAILLANT - 93010", "stop_name": "CORNEILLE"}, "geometry": {"type": "Point", "coordinates": [2.492201636932791, 48.89460732315696]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "df9fa4cbf65af89950e7a0a8c83cfc8d7f0f0f52", "fields": {"departement": "94", "stop_lat": 48.83470447146906, "code_postal": "94052", "stop_lon": 2.4715603393176275, "coord": [48.83470447146906, 2.4715603393176275], "stop_id": 3682862, "stop_desc": "FACE AU 8 AVENUE DES MARRONNIERS - 94052", "stop_name": "NOGENT-SUR-MARNE RER"}, "geometry": {"type": "Point", "coordinates": [2.4715603393176275, 48.83470447146906]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9ece8c65e808e9d004509fc1530657de6e566ac3", "fields": {"departement": "94", "stop_lat": 48.83501004911766, "code_postal": "94052", "stop_lon": 2.471561130297352, "coord": [48.83501004911766, 2.471561130297352], "stop_id": 3682863, "stop_desc": "FACE AU 8 AVENUE DES MARRONNIERS - 94052", "stop_name": "NOGENT-SUR-MARNE RER"}, "geometry": {"type": "Point", "coordinates": [2.471561130297352, 48.83501004911766]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "071c821c07220856e2a4161d8eb25a5c8739248e", "fields": {"departement": "93", "stop_lat": 48.86904180874187, "code_postal": "93050", "stop_lon": 2.521483666616452, "coord": [48.86904180874187, 2.521483666616452], "stop_id": 3682847, "stop_desc": "48 RUE LOUIS AMPERE - 93050", "stop_name": "RUE LOUIS AMPERE N0 48"}, "geometry": {"type": "Point", "coordinates": [2.521483666616452, 48.86904180874187]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ce6285938051bd9113338fcd796f461c60716581", "fields": {"departement": "93", "stop_lat": 48.867432920009676, "code_postal": "93050", "stop_lon": 2.532853143631693, "coord": [48.867432920009676, 2.532853143631693], "stop_id": 3682858, "stop_desc": "AVENUE LEON BLUM - 93050", "stop_name": "ILE DE FRANCE."}, "geometry": {"type": "Point", "coordinates": [2.532853143631693, 48.867432920009676]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2f6f58e67a6424eb39c4c1e6195478305851c901", "fields": {"departement": "93", "stop_lat": 48.865965284395486, "code_postal": "93050", "stop_lon": 2.5233117869995256, "coord": [48.865965284395486, 2.5233117869995256], "stop_id": 3682853, "stop_desc": "26 RUE LOUIS VANNINI - 93050", "stop_name": "11 NOVEMBRE"}, "geometry": {"type": "Point", "coordinates": [2.5233117869995256, 48.865965284395486]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0cf3fb40294a860ae0d355f411ddde5ec40b841d", "fields": {"departement": "93", "stop_lat": 48.90921327860059, "code_postal": "93057", "stop_lon": 2.504120498720451, "coord": [48.90921327860059, 2.504120498720451], "stop_id": 3682218, "stop_desc": "140 AVENUE ARISTIDE BRIAND - 93057", "stop_name": "EGLISE DES PAVILLONS-SOUS-BOIS"}, "geometry": {"type": "Point", "coordinates": [2.504120498720451, 48.90921327860059]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a8c22c439a9dc4eace2b72d40e825d2f0639792e", "fields": {"departement": "93", "stop_lat": 48.90695328855752, "code_postal": "93010", "stop_lon": 2.487003347246266, "coord": [48.90695328855752, 2.487003347246266], "stop_id": 3682215, "stop_desc": "177 AVENUE GALLIENI - 93010", "stop_name": "PASTEUR - HOPITAL JEAN VERDIER"}, "geometry": {"type": "Point", "coordinates": [2.487003347246266, 48.90695328855752]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d7d20ce301ab7f568f8bece277c238195d340620", "fields": {"departement": "93", "stop_lat": 48.9120623362596, "code_postal": "93014", "stop_lon": 2.5492742382312286, "coord": [48.9120623362596, 2.5492742382312286], "stop_id": 3682230, "stop_desc": "AVENUE DE SEVIGNE - 93014", "stop_name": "MAIRIE DE CLICHY-SOUS-BOIS"}, "geometry": {"type": "Point", "coordinates": [2.5492742382312286, 48.9120623362596]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ebb18afa42483f5a06cf4a2aff1158b00860a0ea", "fields": {"departement": "93", "stop_lat": 48.89897493409345, "code_postal": "93047", "stop_lon": 2.5742886405139136, "coord": [48.89897493409345, 2.5742886405139136], "stop_id": 3682253, "stop_desc": "RUE DES JARDINS - 93047", "stop_name": "HOPITAL DE MONTFERMEIL"}, "geometry": {"type": "Point", "coordinates": [2.5742886405139136, 48.89897493409345]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "045ccfd12aee41c45b3888c5ff2a47af93667a9f", "fields": {"departement": "93", "stop_lat": 48.912230461780204, "code_postal": "93014", "stop_lon": 2.550747482095315, "coord": [48.912230461780204, 2.550747482095315], "stop_id": 3682232, "stop_desc": "FACE 2 ALLEE DE COUBRON - 93014", "stop_name": "LES MARRONNIERS"}, "geometry": {"type": "Point", "coordinates": [2.550747482095315, 48.912230461780204]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9b02b65ecb2b7a81e0f50e6101c5e48ef0037d50", "fields": {"departement": "93", "stop_lat": 48.91064373427203, "code_postal": "93046", "stop_lon": 2.527139877834927, "coord": [48.91064373427203, 2.527139877834927], "stop_id": 3682265, "stop_desc": "53-57 AVENUE LEON BLUM - 93046", "stop_name": "ROGER SALENGRO"}, "geometry": {"type": "Point", "coordinates": [2.527139877834927, 48.91064373427203]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b1c176009a4b0e7556735daffc54d6d00e017590", "fields": {"departement": "93", "stop_lat": 48.90579255204801, "code_postal": "93010", "stop_lon": 2.480837851423006, "coord": [48.90579255204801, 2.480837851423006], "stop_id": 3682212, "stop_desc": "112 AVENUE GALLIENI - 93010", "stop_name": "AUGUSTE POLISSARD"}, "geometry": {"type": "Point", "coordinates": [2.480837851423006, 48.90579255204801]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "903d51c40258b4a9f283808489a429bb9cc08ffe", "fields": {"departement": "93", "stop_lat": 48.909753781545426, "code_postal": "93046", "stop_lon": 2.538248420821371, "coord": [48.909753781545426, 2.538248420821371], "stop_id": 3682263, "stop_desc": "159 CHEMIN DES POSTES - 93046", "stop_name": "LES GENETTES"}, "geometry": {"type": "Point", "coordinates": [2.538248420821371, 48.909753781545426]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5931184b3cd613af5afc2230649b7f1a38c831c1", "fields": {"departement": "93", "stop_lat": 48.90709707631595, "code_postal": "93014", "stop_lon": 2.5566705035726716, "coord": [48.90709707631595, 2.5566705035726716], "stop_id": 3682236, "stop_desc": "AVENUE JEAN MOULIN - 93014", "stop_name": "EMILE ZOLA"}, "geometry": {"type": "Point", "coordinates": [2.5566705035726716, 48.90709707631595]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "69aae90523f7290dc1a173823c888930c78a8c64", "fields": {"departement": "93", "stop_lat": 48.905007103245715, "code_postal": "93010", "stop_lon": 2.476268671049849, "coord": [48.905007103245715, 2.476268671049849], "stop_id": 3682211, "stop_desc": "54 AVENUE GALLIENI - 93010", "stop_name": "GATINE RN3"}, "geometry": {"type": "Point", "coordinates": [2.476268671049849, 48.905007103245715]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "72cd5efae3f8cbcc4fb69dd86b601d76c6370644", "fields": {"departement": "93", "stop_lat": 48.91041782200938, "code_postal": "93046", "stop_lon": 2.510232536149553, "coord": [48.91041782200938, 2.510232536149553], "stop_id": 3682079, "stop_desc": "13 AVENUE ARISTIDE BRIAND - 93046", "stop_name": "VICTOR HUGO - JEAN MOULIN"}, "geometry": {"type": "Point", "coordinates": [2.510232536149553, 48.91041782200938]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "210b25534ec2d47ffda7fb34de413ba2e960efb4", "fields": {"departement": "93", "stop_lat": 48.946883761835196, "code_postal": "93071", "stop_lon": 2.5241347045194282, "coord": [48.946883761835196, 2.5241347045194282], "stop_id": 3682090, "stop_desc": "AVENUE DUMONT D'URVILLE - 93071", "stop_name": "SEVRAN - BEAUDOTTES RER"}, "geometry": {"type": "Point", "coordinates": [2.5241347045194282, 48.946883761835196]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f4857c4ef0f04547aba5c3c3abee30805bc8c98f", "fields": {"departement": "93", "stop_lat": 48.926674619066006, "code_postal": "93046", "stop_lon": 2.544492362189119, "coord": [48.926674619066006, 2.544492362189119], "stop_id": 3682099, "stop_desc": "9 AVENUE JEAN-JACQUES ROUSSEAU - 93046", "stop_name": "JEAN-JACQUES ROUSSEAU"}, "geometry": {"type": "Point", "coordinates": [2.544492362189119, 48.926674619066006]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c6e2deb5d94b599921d2e0d407cf034ff06faffc", "fields": {"departement": "93", "stop_lat": 48.922515362987646, "code_postal": "93046", "stop_lon": 2.543507459471364, "coord": [48.922515362987646, 2.543507459471364], "stop_id": 3682100, "stop_desc": "13-15 PLACE DE LA LIBERATION - 93046", "stop_name": "PLACE DE LA LIBERATION"}, "geometry": {"type": "Point", "coordinates": [2.543507459471364, 48.922515362987646]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "880aa8c238f8a49f13b87f710761f3d45b4e2694", "fields": {"departement": "93", "stop_lat": 48.89891177281547, "code_postal": "93008", "stop_lon": 2.443305616866285, "coord": [48.89891177281547, 2.443305616866285], "stop_id": 3682083, "stop_desc": "FACE 16 RUE DE PARIS - 93008", "stop_name": "LA FOLIE - JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.443305616866285, 48.89891177281547]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2604937b00521ce34a2b4b78ba73698a8b799e93", "fields": {"departement": "93", "stop_lat": 48.94826493970891, "code_postal": "93071", "stop_lon": 2.5369516484773884, "coord": [48.94826493970891, 2.5369516484773884], "stop_id": 3682077, "stop_desc": "19 AVENUE RONSARD - 93071", "stop_name": "SEVRAN - AVENUE RONSARD"}, "geometry": {"type": "Point", "coordinates": [2.5369516484773884, 48.94826493970891]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f1dd94abd1f111180b178cd385365e34cf87a873", "fields": {"departement": "93", "stop_lat": 48.947987399904854, "code_postal": "93071", "stop_lon": 2.5363229452604794, "coord": [48.947987399904854, 2.5363229452604794], "stop_id": 3682076, "stop_desc": "AV RONSARD - 93071", "stop_name": "SEVRAN - AVENUE RONSARD"}, "geometry": {"type": "Point", "coordinates": [2.5363229452604794, 48.947987399904854]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eac0ddf13c25e3fa18c2e7498d18244be1fb8a36", "fields": {"departement": "93", "stop_lat": 48.94206362771462, "code_postal": "93071", "stop_lon": 2.520406513711866, "coord": [48.94206362771462, 2.520406513711866], "stop_id": 3682067, "stop_desc": "29 CHEMIN DE SAVIGNY - 93071", "stop_name": "CHEMIN DE SAVIGNY"}, "geometry": {"type": "Point", "coordinates": [2.520406513711866, 48.94206362771462]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0ae9f54bd607c24eac213224b6923f02bd6ec944", "fields": {"departement": "93", "stop_lat": 48.94813774494121, "code_postal": "93071", "stop_lon": 2.532353053668431, "coord": [48.94813774494121, 2.532353053668431], "stop_id": 3682075, "stop_desc": "AVENUE SALVADOR ALLENDE - 93071", "stop_name": "LUTHER KING"}, "geometry": {"type": "Point", "coordinates": [2.532353053668431, 48.94813774494121]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ef52218bb8e32186565b4fd2523af259567651f7", "fields": {"departement": "93", "stop_lat": 48.89842841256089, "code_postal": "93008", "stop_lon": 2.4410963884166126, "coord": [48.89842841256089, 2.4410963884166126], "stop_id": 3682084, "stop_desc": "AVENUE DE METZ - 93008", "stop_name": "LA FOLIE"}, "geometry": {"type": "Point", "coordinates": [2.4410963884166126, 48.89842841256089]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "430949909f5f2e697d9674203ee89f83350e95fa", "fields": {"departement": "94", "stop_lat": 48.846023625181644, "code_postal": "94052", "stop_lon": 2.490722017077124, "coord": [48.846023625181644, 2.490722017077124], "stop_id": 3682871, "stop_desc": "162-164 BOULEVARD DE STRASBOURG - 94052", "stop_name": "RUE DE PLAISANCE - LYCEE LOUIS ARMAND"}, "geometry": {"type": "Point", "coordinates": [2.490722017077124, 48.846023625181644]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3e3d123365c27c2a34fc0c52730aee6773e9c6dd", "fields": {"departement": "93", "stop_lat": 48.85513417080288, "code_postal": "93050", "stop_lon": 2.5241173569868938, "coord": [48.85513417080288, 2.5241173569868938], "stop_id": 3682888, "stop_desc": "27 BOULEVARD DU MARECHAL FOCH - 93050", "stop_name": "VILLEBOIS - MAREUIL"}, "geometry": {"type": "Point", "coordinates": [2.5241173569868938, 48.85513417080288]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5cb73a0030b9a8832b25c820489e22f448941416", "fields": {"departement": "77", "stop_lat": 48.87067862014969, "code_postal": "77108", "stop_lon": 2.576488959824313, "coord": [48.87067862014969, 2.576488959824313], "stop_id": 3682907, "stop_desc": "49 AVENUE DU MARECHAL FOCH - 77108", "stop_name": "AVENUE DES MARTYRS"}, "geometry": {"type": "Point", "coordinates": [2.576488959824313, 48.87067862014969]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2dae82b08a1df10ad77543742416cc46f349f041", "fields": {"departement": "94", "stop_lat": 48.84301923142581, "code_postal": "94052", "stop_lon": 2.48564776888473, "coord": [48.84301923142581, 2.48564776888473], "stop_id": 3682869, "stop_desc": "FACE147BIS BOULEVARD DE STRASBOURG - 94052", "stop_name": "ANQUETIL"}, "geometry": {"type": "Point", "coordinates": [2.48564776888473, 48.84301923142581]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d2cac2b46600ef86e4289ddcda3b6eb45561fdbc", "fields": {"departement": "77", "stop_lat": 48.86784741459195, "code_postal": "77108", "stop_lon": 2.5720620072994205, "coord": [48.86784741459195, 2.5720620072994205], "stop_id": 3682906, "stop_desc": "108 AVENUE DU MARECHAL FOCH - 77108", "stop_name": "RUE DU PORT"}, "geometry": {"type": "Point", "coordinates": [2.5720620072994205, 48.86784741459195]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ce8cd80e99b56aeb2bdccce277c5fcafc9584bf4", "fields": {"departement": "94", "stop_lat": 48.8404625428155, "code_postal": "94052", "stop_lon": 2.4817735438608586, "coord": [48.8404625428155, 2.4817735438608586], "stop_id": 3682867, "stop_desc": "100 BOULEVARD DE STRASBOURG - 94052", "stop_name": "PAUL BERT"}, "geometry": {"type": "Point", "coordinates": [2.4817735438608586, 48.8404625428155]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5d7d55919bf8c16a81e8778fd7b2237b71ebf18f", "fields": {"departement": "94", "stop_lat": 48.84870549363509, "code_postal": "94058", "stop_lon": 2.4948562221266246, "coord": [48.84870549363509, 2.4948562221266246], "stop_id": 3682933, "stop_desc": "29-29 BIS BOULEVARD ALSACE LORRAINE - 94058", "stop_name": "ROND-POINT DU GENERAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.4948562221266246, 48.84870549363509]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "726f602422ba64f1f24a5a5a7cb32f5f954eb7a2", "fields": {"departement": "93", "stop_lat": 48.85513417080288, "code_postal": "93050", "stop_lon": 2.5241173569868938, "coord": [48.85513417080288, 2.5241173569868938], "stop_id": 3682947, "stop_desc": "27 BOULEVARD DU MARECHAL FOCH - 93050", "stop_name": "VILLEBOIS - MAREUIL"}, "geometry": {"type": "Point", "coordinates": [2.5241173569868938, 48.85513417080288]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "97c991c0c14a1d91409c3f63949b8d78d7302ba6", "fields": {"departement": "94", "stop_lat": 48.835913890097316, "code_postal": "94052", "stop_lon": 2.47498075734175, "coord": [48.835913890097316, 2.47498075734175], "stop_id": 3682923, "stop_desc": "2 BOULEVARD DE STRASBOURG - 94052", "stop_name": "PLACE DU GENERAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.47498075734175, 48.835913890097316]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "54c3bbd0e3a242660b64e3b94948264ea3b195a5", "fields": {"departement": "77", "stop_lat": 48.87396217895166, "code_postal": "77108", "stop_lon": 2.5880578807261676, "coord": [48.87396217895166, 2.5880578807261676], "stop_id": 3682972, "stop_desc": "5 BOULEVARD CHILPERIC - 77108", "stop_name": "CHILPERIC - ADOLPHE BESSON"}, "geometry": {"type": "Point", "coordinates": [2.5880578807261676, 48.87396217895166]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3342e47aaa5dd60e809f2ec604fdd7679ff11bd2", "fields": {"departement": "93", "stop_lat": 48.85837112499829, "code_postal": "93050", "stop_lon": 2.5343580955008753, "coord": [48.85837112499829, 2.5343580955008753], "stop_id": 3682953, "stop_desc": "FACE 116 AVENUE DU GENERAL DE GAULLE - 93050", "stop_name": "PASTEUR"}, "geometry": {"type": "Point", "coordinates": [2.5343580955008753, 48.85837112499829]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f2336d8f4508047a6dc21afaeb6d50720c4fff5d", "fields": {"departement": "94", "stop_lat": 48.84301923142581, "code_postal": "94052", "stop_lon": 2.48564776888473, "coord": [48.84301923142581, 2.48564776888473], "stop_id": 3682928, "stop_desc": "FACE147BIS BOULEVARD DE STRASBOURG - 94052", "stop_name": "ANQUETIL"}, "geometry": {"type": "Point", "coordinates": [2.48564776888473, 48.84301923142581]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "35c3672b6c4b3ddb89da0e0a636edaf7187c4835", "fields": {"departement": "93", "stop_lat": 48.865591003348804, "code_postal": "93050", "stop_lon": 2.5630609260390105, "coord": [48.865591003348804, 2.5630609260390105], "stop_id": 3682963, "stop_desc": "0 AV JEAN JAURES - 93050", "stop_name": "POINTE DE GOURNAY"}, "geometry": {"type": "Point", "coordinates": [2.5630609260390105, 48.865591003348804]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2a805bf427180ebe78e32526db0fe018c4f3796d", "fields": {"departement": "93", "stop_lat": 48.85367127728647, "code_postal": "93050", "stop_lon": 2.5169346792383425, "coord": [48.85367127728647, 2.5169346792383425], "stop_id": 3682943, "stop_desc": "FACE 32 BOULEVARD GALLIENI - 93050", "stop_name": "CENTRE BUS"}, "geometry": {"type": "Point", "coordinates": [2.5169346792383425, 48.85367127728647]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b84181e470806b99ecc772f3fa32f6fd62c27b37", "fields": {"departement": "77", "stop_lat": 48.87595331876667, "code_postal": "77108", "stop_lon": 2.589975048930337, "coord": [48.87595331876667, 2.589975048930337], "stop_id": 3682975, "stop_desc": "8 RUE ADOLPHE BESSON - 77108", "stop_name": "RUE DUCHESNE"}, "geometry": {"type": "Point", "coordinates": [2.589975048930337, 48.87595331876667]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5ef51a45f9e37c2e90fa41ec0c7ccb2500b9467b", "fields": {"departement": "94", "stop_lat": 48.85164403695081, "code_postal": "94058", "stop_lon": 2.5081571280065345, "coord": [48.85164403695081, 2.5081571280065345], "stop_id": 3682938, "stop_desc": "140 BOULEVARD ALSACE-LORRAINE - 94058", "stop_name": "JOULEAU"}, "geometry": {"type": "Point", "coordinates": [2.5081571280065345, 48.85164403695081]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a7ff1faa8d36bcf7cc384349692082c08eabbbae", "fields": {"departement": "93", "stop_lat": 48.85714423915471, "code_postal": "93050", "stop_lon": 2.531683856736101, "coord": [48.85714423915471, 2.531683856736101], "stop_id": 3683003, "stop_desc": "78 AVENUE DU GENERAL DE GAULLE - 93050", "stop_name": "PLACE DE LA RESISTANCE"}, "geometry": {"type": "Point", "coordinates": [2.531683856736101, 48.85714423915471]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f68b9f47702c3b085f636e497ca28dcdad88c721", "fields": {"departement": "93", "stop_lat": 48.86501651419178, "code_postal": "93050", "stop_lon": 2.5208018705614887, "coord": [48.86501651419178, 2.5208018705614887], "stop_id": 3683018, "stop_desc": "RUE LOUIS VANNINI - 93050", "stop_name": "LES CHANOUX - LYCEE CUGNOT"}, "geometry": {"type": "Point", "coordinates": [2.5208018705614887, 48.86501651419178]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "90a825e3d7226f4cdd32c6585c59748d30c4d66e", "fields": {"departement": "93", "stop_lat": 48.86918808813368, "code_postal": "93050", "stop_lon": 2.536687954277174, "coord": [48.86918808813368, 2.536687954277174], "stop_id": 3683027, "stop_desc": "FACE 2 AVENUE WINSTON CHURCHILL - 93050", "stop_name": "RUE DES POMMIERS"}, "geometry": {"type": "Point", "coordinates": [2.536687954277174, 48.86918808813368]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "09d6a707aad924c6c821c1aa2e99447084f69884", "fields": {"departement": "77", "stop_lat": 48.87795818868207, "code_postal": "77108", "stop_lon": 2.602070894533932, "coord": [48.87795818868207, 2.602070894533932], "stop_id": 3682981, "stop_desc": "53 AVENUE DU GENDARME CASTERMANT - 77108", "stop_name": "DISPENSAIRE"}, "geometry": {"type": "Point", "coordinates": [2.602070894533932, 48.87795818868207]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b9040c1b8a388f72b537183378fc2471fa2da9af", "fields": {"departement": "93", "stop_lat": 48.86066143215691, "code_postal": "93050", "stop_lon": 2.540591694022896, "coord": [48.86066143215691, 2.540591694022896], "stop_id": 3683005, "stop_desc": "60 AVENUE DU MARECHAL LECLERC - 93050", "stop_name": "BLANCHEVILLE"}, "geometry": {"type": "Point", "coordinates": [2.540591694022896, 48.86066143215691]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2df0bc9f76db777796d66aff6c9e9177f234b9f9", "fields": {"departement": "93", "stop_lat": 48.85283059716511, "code_postal": "93049", "stop_lon": 2.51416708031688, "coord": [48.85283059716511, 2.51416708031688], "stop_id": 3682998, "stop_desc": "BOULEVARD GALLIENI - 93049", "stop_name": "NEUILLY-PLAISANCE RER"}, "geometry": {"type": "Point", "coordinates": [2.51416708031688, 48.85283059716511]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "930968c8145a232401cb4643ff9d38f0dc80a214", "fields": {"departement": "75", "stop_lat": 48.85271034035536, "code_postal": "75106", "stop_lon": 2.337377252975595, "coord": [48.85271034035536, 2.337377252975595], "stop_id": 3765250, "stop_desc": "119 BOULEVARD SAINT GERMAIN - 75106", "stop_name": "SEINE - BUCI"}, "geometry": {"type": "Point", "coordinates": [2.337377252975595, 48.85271034035536]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "72ea4c7b5b1932d57c3d2e4dcc36d708d9d5e552", "fields": {"departement": "75", "stop_lat": 48.84932074474511, "code_postal": "75105", "stop_lon": 2.3549719454521005, "coord": [48.84932074474511, 2.3549719454521005], "stop_id": 3765253, "stop_desc": "3 BOULEVARD SAINT GERMAIN - 75105", "stop_name": "SAINT-GERMAIN - CARDINAL LEMOINE"}, "geometry": {"type": "Point", "coordinates": [2.3549719454521005, 48.84932074474511]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d2c6b8f9719b8aaeb5168741c23d2d4aa860a3bd", "fields": {"departement": "75", "stop_lat": 48.844041290696545, "code_postal": "75112", "stop_lon": 2.3721273154078797, "coord": [48.844041290696545, 2.3721273154078797], "stop_id": 3765256, "stop_desc": "16 RUE VAN GOGH - 75112", "stop_name": "VAN GOGH"}, "geometry": {"type": "Point", "coordinates": [2.3721273154078797, 48.844041290696545]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "53067d78626b9e08b2276ce7737ae5ee3d71c527", "fields": {"departement": "75", "stop_lat": 48.843627486950616, "code_postal": "75112", "stop_lon": 2.3733933899705346, "coord": [48.843627486950616, 2.3733933899705346], "stop_id": 3765257, "stop_desc": "179 RUE DE BERCY - 75112", "stop_name": "GARE DE LYON."}, "geometry": {"type": "Point", "coordinates": [2.3733933899705346, 48.843627486950616]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "65bb3d71dd528f65dd3b98907a31099bec54c99d", "fields": {"departement": "75", "stop_lat": 48.82765113325405, "code_postal": "75113", "stop_lon": 2.3585854722264634, "coord": [48.82765113325405, 2.3585854722264634], "stop_id": 3765259, "stop_desc": "145 AVENUE DE CHOISY - 75113", "stop_name": "PARC DE CHOISY"}, "geometry": {"type": "Point", "coordinates": [2.3585854722264634, 48.82765113325405]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ee5aba6ecca83814c05d3a40fac1f8bfd04f586e", "fields": {"departement": "75", "stop_lat": 48.826607407557404, "code_postal": "75113", "stop_lon": 2.3642885673351617, "coord": [48.826607407557404, 2.3642885673351617], "stop_id": 3765261, "stop_desc": "105 BIS RUE DE TOLBIAC - 75113", "stop_name": "TOLBIAC - BAUDRICOURT"}, "geometry": {"type": "Point", "coordinates": [2.3642885673351617, 48.826607407557404]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f095f524cb93fe4d5eb9224d7ef5bd0151ed6764", "fields": {"departement": "75", "stop_lat": 48.83190571882839, "code_postal": "75113", "stop_lon": 2.379402446155373, "coord": [48.83190571882839, 2.379402446155373], "stop_id": 3765265, "stop_desc": "1-3 RUE NEUVE TOLBIAC - 75113", "stop_name": "PONT DE TOLBIAC"}, "geometry": {"type": "Point", "coordinates": [2.379402446155373, 48.83190571882839]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ce4e99efcc1328ade743554b82ea6ea27bbb5c18", "fields": {"departement": "75", "stop_lat": 48.842157628499734, "code_postal": "75112", "stop_lon": 2.405159221990691, "coord": [48.842157628499734, 2.405159221990691], "stop_id": 3765273, "stop_desc": "20 AVENUE DU DOCTEUR ARNOLD NETTER - 75112", "stop_name": "HOPITAL TROUSSEAU"}, "geometry": {"type": "Point", "coordinates": [2.405159221990691, 48.842157628499734]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6c7788675feea4f9b85aa8855ff5e315495ed3e3", "fields": {"departement": "75", "stop_lat": 48.847917856335386, "code_postal": "75120", "stop_lon": 2.406501309527455, "coord": [48.847917856335386, 2.406501309527455], "stop_id": 3765275, "stop_desc": "2 RUE DES PYRENEES - 75120", "stop_name": "COURS DE VINCENNES"}, "geometry": {"type": "Point", "coordinates": [2.406501309527455, 48.847917856335386]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7a7747937774787a12e862ad126a9835b387b36b", "fields": {"departement": "75", "stop_lat": 48.86203162509228, "code_postal": "75120", "stop_lon": 2.4002406296725773, "coord": [48.86203162509228, 2.4002406296725773], "stop_id": 3765280, "stop_desc": "180-180 BIS RUE DES PYRENEES - 75120", "stop_name": "RAMUS"}, "geometry": {"type": "Point", "coordinates": [2.4002406296725773, 48.86203162509228]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c0bfce028ec24d61d995ef36af0d09595d2faf44", "fields": {"departement": "75", "stop_lat": 48.865141473642645, "code_postal": "75120", "stop_lon": 2.3998357366714287, "coord": [48.865141473642645, 2.3998357366714287], "stop_id": 3765282, "stop_desc": "6 RUE DU JAPON - 75120", "stop_name": "GAMBETTA"}, "geometry": {"type": "Point", "coordinates": [2.3998357366714287, 48.865141473642645]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6c0eb232a4329dc8c526e8650f52515aa94cec99", "fields": {"departement": "75", "stop_lat": 48.85600750472807, "code_postal": "75120", "stop_lon": 2.40489133644558, "coord": [48.85600750472807, 2.40489133644558], "stop_id": 3765286, "stop_desc": "111 RUE DES PYRENEES - 75120", "stop_name": "ORTEAUX"}, "geometry": {"type": "Point", "coordinates": [2.40489133644558, 48.85600750472807]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "48cd8ffc0a001b6d1d3b1634aa683326eb6f67ff", "fields": {"departement": "75", "stop_lat": 48.83970860502141, "code_postal": "75112", "stop_lon": 2.3965917596838264, "coord": [48.83970860502141, 2.3965917596838264], "stop_id": 3765294, "stop_desc": "BOULEVARD DE REUILLY - 75112", "stop_name": "DOCTEUR GOUJON - REUILLY"}, "geometry": {"type": "Point", "coordinates": [2.3965917596838264, 48.83970860502141]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8e8bcf5e8bf2631ab95a7570f24bcdbe53686474", "fields": {"departement": "75", "stop_lat": 48.83589361264422, "code_postal": "75112", "stop_lon": 2.3861994047472814, "coord": [48.83589361264422, 2.3861994047472814], "stop_id": 3765297, "stop_desc": "3 RUE DIJON - 75112", "stop_name": "DIJON - LACHAMBEAUDIE"}, "geometry": {"type": "Point", "coordinates": [2.3861994047472814, 48.83589361264422]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "355fd65d4cafb64179e6deb3bcd571e3915fcbd3", "fields": {"departement": "75", "stop_lat": 48.83385487912311, "code_postal": "75112", "stop_lon": 2.382535279914137, "coord": [48.83385487912311, 2.382535279914137], "stop_id": 3765298, "stop_desc": "1-3 RUE JOSEPH KESSEL - 75112", "stop_name": "PARC DE BERCY"}, "geometry": {"type": "Point", "coordinates": [2.382535279914137, 48.83385487912311]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "245f3858100165b7926c86dd3e8c2d213e59db4b", "fields": {"departement": "75", "stop_lat": 48.83199576267326, "code_postal": "75113", "stop_lon": 2.3789260417460496, "coord": [48.83199576267326, 2.3789260417460496], "stop_id": 3765299, "stop_desc": "12 RUE NEUVE TOLBIAC - 75113", "stop_name": "PONT DE TOLBIAC"}, "geometry": {"type": "Point", "coordinates": [2.3789260417460496, 48.83199576267326]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "35de78a63b921ba326a7c2c40b8fb929452f784c", "fields": {"departement": "75", "stop_lat": 48.82690383710653, "code_postal": "75113", "stop_lon": 2.3649965617517843, "coord": [48.82690383710653, 2.3649965617517843], "stop_id": 3765303, "stop_desc": "90 RUE DE TOLBIAC - 75113", "stop_name": "TOLBIAC - BAUDRICOURT"}, "geometry": {"type": "Point", "coordinates": [2.3649965617517843, 48.82690383710653]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fb6a728328b5c6489c0dfa0e88a90d76f11807b2", "fields": {"departement": "75", "stop_lat": 48.847668324164175, "code_postal": "75106", "stop_lon": 2.340345911574221, "coord": [48.847668324164175, 2.340345911574221], "stop_id": 3765421, "stop_desc": "4 PLACE EDMOND ROSTAND - 75106", "stop_name": "LUXEMBOURG"}, "geometry": {"type": "Point", "coordinates": [2.340345911574221, 48.847668324164175]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "323185f67f723853b2878c299daf7f8679f9535e", "fields": {"departement": "75", "stop_lat": 48.85173952083802, "code_postal": "75106", "stop_lon": 2.3308265961909207, "coord": [48.85173952083802, 2.3308265961909207], "stop_id": 3765429, "stop_desc": "16-18 RUE DU VIEUX COLOMBIER - 75106", "stop_name": "MICHEL DEBRE"}, "geometry": {"type": "Point", "coordinates": [2.3308265961909207, 48.85173952083802]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3cb55682ea7a436b7905b60553928882fa6440ea", "fields": {"departement": "75", "stop_lat": 48.85225182431227, "code_postal": "75106", "stop_lon": 2.3311670066870414, "coord": [48.85225182431227, 2.3311670066870414], "stop_id": 3765430, "stop_desc": "45 RUE DU FOUR - 75106", "stop_name": "MICHEL DEBRE"}, "geometry": {"type": "Point", "coordinates": [2.3311670066870414, 48.85225182431227]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bf781848d8480bc14a3d8758bbec3b88ed6c8328", "fields": {"departement": "75", "stop_lat": 48.856475455970624, "code_postal": "75107", "stop_lon": 2.3250511005783725, "coord": [48.856475455970624, 2.3250511005783725], "stop_id": 3765435, "stop_desc": "209-211 BOULEVARD SAINT-GERMAIN - 75107", "stop_name": "RUE DU BAC - RENE CHAR"}, "geometry": {"type": "Point", "coordinates": [2.3250511005783725, 48.856475455970624]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "94817cb0a6937d5666f8058a2acac798cb240083", "fields": {"departement": "75", "stop_lat": 48.858263784804244, "code_postal": "75107", "stop_lon": 2.323497938538786, "coord": [48.858263784804244, 2.323497938538786], "stop_id": 3765436, "stop_desc": "256 BOULEVARD SAINT GERMAIN - 75107", "stop_name": "SOLFERINO - BELLECHASSE"}, "geometry": {"type": "Point", "coordinates": [2.323497938538786, 48.858263784804244]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3c5eed46e7beed7d139f8253b871b928e035729b", "fields": {"departement": "75", "stop_lat": 48.85821880950313, "code_postal": "75107", "stop_lon": 2.323171057847021, "coord": [48.85821880950313, 2.323171057847021], "stop_id": 3765437, "stop_desc": "223 BOULEVARD SAINT GERMAIN - 75107", "stop_name": "SOLFERINO - BELLECHASSE"}, "geometry": {"type": "Point", "coordinates": [2.323171057847021, 48.85821880950313]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "22e4d055732dafae354cb2e5638b06452b0c6db6", "fields": {"departement": "75", "stop_lat": 48.86161608342362, "code_postal": "75107", "stop_lon": 2.3234561851162594, "coord": [48.86161608342362, 2.3234561851162594], "stop_id": 3765438, "stop_desc": "FACE 11 QUAI ANATOLE FRANCE - 75107", "stop_name": "MUSEE D'ORSAY"}, "geometry": {"type": "Point", "coordinates": [2.3234561851162594, 48.86161608342362]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cdabc61ed7174e8764f1bdc1fd2d4b17cf94c829", "fields": {"departement": "75", "stop_lat": 48.861543739204706, "code_postal": "75107", "stop_lon": 2.3200372331720067, "coord": [48.861543739204706, 2.3200372331720067], "stop_id": 3765440, "stop_desc": "241 BOULEVARD SAINT GERMAIN - 75107", "stop_name": "ASSEMBLEE NATIONALE"}, "geometry": {"type": "Point", "coordinates": [2.3200372331720067, 48.861543739204706]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1a1dd03f435b4acde92e72291fba914f506db04e", "fields": {"departement": "75", "stop_lat": 48.867296005540844, "code_postal": "75108", "stop_lon": 2.322623676294097, "coord": [48.867296005540844, 2.322623676294097], "stop_id": 3765441, "stop_desc": "4 RUE ROYALE - 75108", "stop_name": "CONCORDE"}, "geometry": {"type": "Point", "coordinates": [2.322623676294097, 48.867296005540844]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ee9559acaa04bf587a074e42a91616c592907116", "fields": {"departement": "75", "stop_lat": 48.87248158259685, "code_postal": "75108", "stop_lon": 2.321709386841537, "coord": [48.87248158259685, 2.321709386841537], "stop_id": 3765445, "stop_desc": "20 BOULEVARD MALESHERBES - 75108", "stop_name": "ANJOU - CHAUVEAU LAGARDE"}, "geometry": {"type": "Point", "coordinates": [2.321709386841537, 48.87248158259685]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d96252b084deb839a4e03b63a2dd9a082f243fd7", "fields": {"departement": "75", "stop_lat": 48.87227484566126, "code_postal": "75108", "stop_lon": 2.3214914613261066, "coord": [48.87227484566126, 2.3214914613261066], "stop_id": 3765446, "stop_desc": "23 BOULEVARD MALESHERBES - 75108", "stop_name": "ANJOU - CHAUVEAU LAGARDE"}, "geometry": {"type": "Point", "coordinates": [2.3214914613261066, 48.87227484566126]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "59359be8c99ba2421b0d40258d8c4497c88d45b7", "fields": {"departement": "75", "stop_lat": 48.874350712606415, "code_postal": "75108", "stop_lon": 2.3200329804926563, "coord": [48.874350712606415, 2.3200329804926563], "stop_id": 3765448, "stop_desc": "45 BOULEVARD MALESHERBES - 75108", "stop_name": "SAINT-AUGUSTIN"}, "geometry": {"type": "Point", "coordinates": [2.3200329804926563, 48.874350712606415]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6c315a4b293db8cd8ebc49a8172e4ccf1154f1b5", "fields": {"departement": "75", "stop_lat": 48.87513170578842, "code_postal": "75108", "stop_lon": 2.3146372332326037, "coord": [48.87513170578842, 2.3146372332326037], "stop_id": 3765450, "stop_desc": "119 BOULEVARD HAUSSMANN - 75108", "stop_name": "HAUSSMANN - MIROMESNIL"}, "geometry": {"type": "Point", "coordinates": [2.3146372332326037, 48.87513170578842]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aee44496ceb2d6722ec93c798365c97e3c186d44", "fields": {"departement": "75", "stop_lat": 48.87759314964407, "code_postal": "75108", "stop_lon": 2.309553804488594, "coord": [48.87759314964407, 2.309553804488594], "stop_id": 3765451, "stop_desc": "54 RUE DE LISBONNE - 75108", "stop_name": "RUYSDAEL - PARC MONCEAU"}, "geometry": {"type": "Point", "coordinates": [2.309553804488594, 48.87759314964407]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7a562b8e6bc22974ca8748e9d62abb57a06dceb4", "fields": {"departement": "75", "stop_lat": 48.87694649945393, "code_postal": "75108", "stop_lon": 2.311488963410044, "coord": [48.87694649945393, 2.311488963410044], "stop_id": 3765452, "stop_desc": "23 AVENUE DE MESSINE - 75108", "stop_name": "RUYSDAEL - PARC MONCEAU"}, "geometry": {"type": "Point", "coordinates": [2.311488963410044, 48.87694649945393]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4fffcf0f9f6acbb99713e71a0c53434e4aca9ca8", "fields": {"departement": "75", "stop_lat": 48.881994436243794, "code_postal": "75117", "stop_lon": 2.3004215142126085, "coord": [48.881994436243794, 2.3004215142126085], "stop_id": 3765456, "stop_desc": "138 RUE DE COURCELLES - 75117", "stop_name": "WAGRAM - COURCELLES"}, "geometry": {"type": "Point", "coordinates": [2.3004215142126085, 48.881994436243794]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1e31c400f6b6c3fe217b3b4fa0b3d51e6a70f63f", "fields": {"departement": "75", "stop_lat": 48.88419561119815, "code_postal": "75117", "stop_lon": 2.2982259463480914, "coord": [48.88419561119815, 2.2982259463480914], "stop_id": 3765458, "stop_desc": "184 RUE DE COURCELLES - 75117", "stop_name": "PEREIRE - MARECHAL JUIN"}, "geometry": {"type": "Point", "coordinates": [2.2982259463480914, 48.88419561119815]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "129439124a9656da08790a4ce71179dc07bb404d", "fields": {"departement": "75", "stop_lat": 48.884105649337954, "code_postal": "75117", "stop_lon": 2.2979534674943336, "coord": [48.884105649337954, 2.2979534674943336], "stop_id": 3765459, "stop_desc": "167 RUE DE COURCELLES - 75117", "stop_name": "PEREIRE - MARECHAL JUIN"}, "geometry": {"type": "Point", "coordinates": [2.2979534674943336, 48.884105649337954]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5d91b736cb3ecf1ff8408db7caa8394d015ea6c1", "fields": {"departement": "75", "stop_lat": 48.885085288442156, "code_postal": "75117", "stop_lon": 2.298048117860305, "coord": [48.885085288442156, 2.298048117860305], "stop_id": 3765460, "stop_desc": "4 BIS PLACE DU MARECHAL JUIN - 75117", "stop_name": "PEREIRE"}, "geometry": {"type": "Point", "coordinates": [2.298048117860305, 48.885085288442156]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fd3c7a1dfb74e1583c55c520cd351b1189f9f33d", "fields": {"departement": "75", "stop_lat": 48.85918035179073, "code_postal": "75107", "stop_lon": 2.322258204605786, "coord": [48.85918035179073, 2.322258204605786], "stop_id": 3765466, "stop_desc": "231 BOULEVARD SAINT GERMAIN - 75107", "stop_name": "LILLE - UNIVERSITE"}, "geometry": {"type": "Point", "coordinates": [2.322258204605786, 48.85918035179073]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "be2b9ad38449a980f1ff92afaa341f59c7577dee", "fields": {"departement": "92", "stop_lat": 48.81713719560234, "code_postal": "92049", "stop_lon": 2.329347418009414, "coord": [48.81713719560234, 2.329347418009414], "stop_id": 3781626, "stop_desc": "28 BIS RUE BARBES - 92049", "stop_name": "BARBES - ORY"}, "geometry": {"type": "Point", "coordinates": [2.329347418009414, 48.81713719560234]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5164594efa80dd363b564ccce3192053c0244892", "fields": {"departement": "94", "stop_lat": 48.81665207572103, "code_postal": "94037", "stop_lon": 2.3339611524133974, "coord": [48.81665207572103, 2.3339611524133974], "stop_id": 3781628, "stop_desc": "127 AVENUE PAUL VAILLANT COUTURIER - 94037", "stop_name": "CHAPERON VERT - LENINE"}, "geometry": {"type": "Point", "coordinates": [2.3339611524133974, 48.81665207572103]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1fd4223f7ddb0ad70cddd471892f0398fea11f01", "fields": {"departement": "94", "stop_lat": 48.81503383947245, "code_postal": "94037", "stop_lon": 2.3480603797829307, "coord": [48.81503383947245, 2.3480603797829307], "stop_id": 3781631, "stop_desc": "17 PLACE HENRI BARBUSSE - 94037", "stop_name": "MAIRIE DE GENTILLY"}, "geometry": {"type": "Point", "coordinates": [2.3480603797829307, 48.81503383947245]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c2943c49eb2e82f8d5c0d19110eaabfe0287a9a2", "fields": {"departement": "94", "stop_lat": 48.81010133140996, "code_postal": "94041", "stop_lon": 2.380092353192655, "coord": [48.81010133140996, 2.380092353192655], "stop_id": 3781647, "stop_desc": "100 RUE JEAN LE GALLEU - 94041", "stop_name": "JEAN LE GALLEU"}, "geometry": {"type": "Point", "coordinates": [2.380092353192655, 48.81010133140996]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "079b9e7b084804a364f610b60fd3204fa53f5f02", "fields": {"departement": "94", "stop_lat": 48.811510913345934, "code_postal": "94041", "stop_lon": 2.3840671320019258, "coord": [48.811510913345934, 2.3840671320019258], "stop_id": 3781649, "stop_desc": "7 PLACE DE LA REPUBLIQUE - 94041", "stop_name": "MAIRIE D'IVRY-METRO"}, "geometry": {"type": "Point", "coordinates": [2.3840671320019258, 48.811510913345934]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "82a42e9a446a3e143f835b6ba5646dd09f962186", "fields": {"departement": "94", "stop_lat": 48.81390846585484, "code_postal": "94041", "stop_lon": 2.3893087213234336, "coord": [48.81390846585484, 2.3893087213234336], "stop_id": 3781653, "stop_desc": "66 AVENUE GEORGES GOSNAT - 94041", "stop_name": "IVRY-SUR-SEINE RER"}, "geometry": {"type": "Point", "coordinates": [2.3893087213234336, 48.81390846585484]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "98558f37029acca6cdf73827ef63f28697326725", "fields": {"departement": "94", "stop_lat": 48.81688746102785, "code_postal": "94041", "stop_lon": 2.399573410259213, "coord": [48.81688746102785, 2.399573410259213], "stop_id": 3781658, "stop_desc": "75 BOULEVARD PAUL VAILLANT-COUTURIER - 94041", "stop_name": "MOISE - PIERRE GALAIS"}, "geometry": {"type": "Point", "coordinates": [2.399573410259213, 48.81688746102785]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3a653bdeb5544beb8ead4442b349651826be806d", "fields": {"departement": "94", "stop_lat": 48.81442488992834, "code_postal": "94002", "stop_lon": 2.414758141884331, "coord": [48.81442488992834, 2.414758141884331], "stop_id": 3781663, "stop_desc": "22 RUE CHARLES DE GAULLE - 94002", "stop_name": "GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.414758141884331, 48.81442488992834]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dd227af5d3eff55c0c2885404b9e093b71fee95d", "fields": {"departement": "94", "stop_lat": 48.81481552140245, "code_postal": "94046", "stop_lon": 2.4218490890988167, "coord": [48.81481552140245, 2.4218490890988167], "stop_id": 3781668, "stop_desc": "FACE 37 AVENUE DU GENERAL LECLERC - 94046", "stop_name": "ECOLE VETERINAIRE DE MAISONS-ALFORT"}, "geometry": {"type": "Point", "coordinates": [2.4218490890988167, 48.81481552140245]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6203a533ff35e1c7b1d6675aa4e613174c8627a2", "fields": {"departement": "94", "stop_lat": 48.815474484934164, "code_postal": "94037", "stop_lon": 2.344875893136616, "coord": [48.815474484934164, 2.344875893136616], "stop_id": 3781676, "stop_desc": "26-28 AVENUE PAUL VAILLANT COUTURIER - 94037", "stop_name": "HENRI GAUTHEROT"}, "geometry": {"type": "Point", "coordinates": [2.344875893136616, 48.815474484934164]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ff00cc657510f1fbeade6141f440b5b229916602", "fields": {"departement": "94", "stop_lat": 48.81221992334368, "code_postal": "94041", "stop_lon": 2.3865989447164844, "coord": [48.81221992334368, 2.3865989447164844], "stop_id": 3785916, "stop_desc": "RUE RASPAIL - 94041", "stop_name": "HOTEL DE VILLE D'IVRY"}, "geometry": {"type": "Point", "coordinates": [2.3865989447164844, 48.81221992334368]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "98080603c484a146cd5b78056f2d818f5cedfb76", "fields": {"departement": "94", "stop_lat": 48.79826451434789, "code_postal": "94081", "stop_lon": 2.400040831580739, "coord": [48.79826451434789, 2.400040831580739], "stop_id": 3785928, "stop_desc": "45 AVENUE PAUL VAILLANT-COUTURIER - 94081", "stop_name": "GABRIEL PERI"}, "geometry": {"type": "Point", "coordinates": [2.400040831580739, 48.79826451434789]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f7eb998d8a9f03112a0fea737e09f591c50e6b08", "fields": {"departement": "94", "stop_lat": 48.78957175825886, "code_postal": "94081", "stop_lon": 2.402764429708809, "coord": [48.78957175825886, 2.402764429708809], "stop_id": 3785932, "stop_desc": "114 RUE GABRIEL PERI - 94081", "stop_name": "DANIELLE CASANOVA"}, "geometry": {"type": "Point", "coordinates": [2.402764429708809, 48.78957175825886]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3b8cec2705804583454adf2deae2f647bd9e5232", "fields": {"departement": "94", "stop_lat": 48.78727800368588, "code_postal": "94081", "stop_lon": 2.4060123966330496, "coord": [48.78727800368588, 2.4060123966330496], "stop_id": 3785936, "stop_desc": "RUE JEAN PIERRE TIMBAUD - 94081", "stop_name": "JEAN PIERRE TIMBAUD"}, "geometry": {"type": "Point", "coordinates": [2.4060123966330496, 48.78727800368588]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4475c1e324c6706b44d0717e5fe789194181ca07", "fields": {"departement": "94", "stop_lat": 48.78284630525559, "code_postal": "94081", "stop_lon": 2.407108191901852, "coord": [48.78284630525559, 2.407108191901852], "stop_id": 3785937, "stop_desc": "131 RUE LEON GEFFROY - 94081", "stop_name": "LES ARDOINES RER"}, "geometry": {"type": "Point", "coordinates": [2.407108191901852, 48.78284630525559]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5316ea399e6f6ddb383fc78584109dada2d27196", "fields": {"departement": "94", "stop_lat": 48.77765025964012, "code_postal": "94081", "stop_lon": 2.4087739312604883, "coord": [48.77765025964012, 2.4087739312604883], "stop_id": 3785944, "stop_desc": "FACE 39 RUE LEON GEFFROY - 94081", "stop_name": "DESCARTES"}, "geometry": {"type": "Point", "coordinates": [2.4087739312604883, 48.77765025964012]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2cc8ef8ccf968da37b8dc7672a8736e5cb45d804", "fields": {"departement": "94", "stop_lat": 48.77132267807762, "code_postal": "94022", "stop_lon": 2.408792415801712, "coord": [48.77132267807762, 2.408792415801712], "stop_id": 3785947, "stop_desc": "AVENUE DE LUGO - 94022", "stop_name": "DOCTEUR ROUX"}, "geometry": {"type": "Point", "coordinates": [2.408792415801712, 48.77132267807762]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f2c58435fa4c9d75116196fd7b3245abcae9b1dc", "fields": {"departement": "94", "stop_lat": 48.771816732953816, "code_postal": "94022", "stop_lon": 2.40926902187529, "coord": [48.771816732953816, 2.40926902187529], "stop_id": 3785948, "stop_desc": "AVENUE DE LUGO - 94022", "stop_name": "DOCTEUR ROUX"}, "geometry": {"type": "Point", "coordinates": [2.40926902187529, 48.771816732953816]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4b64becff49cd34dc178b0cc92c3e9e7ead3f257", "fields": {"departement": "94", "stop_lat": 48.768662043005264, "code_postal": "94022", "stop_lon": 2.4090742903590088, "coord": [48.768662043005264, 2.4090742903590088], "stop_id": 3785950, "stop_desc": "49 AVENUE DE LUGO - 94022", "stop_name": "8 MAI 1945"}, "geometry": {"type": "Point", "coordinates": [2.4090742903590088, 48.768662043005264]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7c6b969d8943abaf34949dbca715c9df289b6fba", "fields": {"departement": "94", "stop_lat": 48.75954807774976, "code_postal": "94022", "stop_lon": 2.4227107416124807, "coord": [48.75954807774976, 2.4227107416124807], "stop_id": 3785961, "stop_desc": "FACE 2 AVENUE DE VILLENEUVE SAINT GEORGES - 94022", "stop_name": "AUBERGE DE LA JEUNESSE"}, "geometry": {"type": "Point", "coordinates": [2.4227107416124807, 48.75954807774976]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "33ed2dc69417b93a13143a12494a5d4b8fee2e0f", "fields": {"departement": "94", "stop_lat": 48.75725404833474, "code_postal": "94078", "stop_lon": 2.425520941782399, "coord": [48.75725404833474, 2.425520941782399], "stop_id": 3785963, "stop_desc": "AVENUE DE CHOISY - 94078", "stop_name": "USINES RENAULT"}, "geometry": {"type": "Point", "coordinates": [2.425520941782399, 48.75725404833474]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5138da3bf5de1904fdf886cdc2237505d59e2a21", "fields": {"departement": "94", "stop_lat": 48.752639070637336, "code_postal": "94078", "stop_lon": 2.4308143208554753, "coord": [48.752639070637336, 2.4308143208554753], "stop_id": 3785964, "stop_desc": "119 AVENUE DE CHOISY - 94078", "stop_name": "PAUL BERT"}, "geometry": {"type": "Point", "coordinates": [2.4308143208554753, 48.752639070637336]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a921e25d400db6934c99cf47a92a982f9a5cda7c", "fields": {"departement": "94", "stop_lat": 48.74714216726016, "code_postal": "94078", "stop_lon": 2.4370972573888907, "coord": [48.74714216726016, 2.4370972573888907], "stop_id": 3785970, "stop_desc": "4 RUE RENE GUEGAN - 94078", "stop_name": "VILLENEUVE-TRIAGE RER"}, "geometry": {"type": "Point", "coordinates": [2.4370972573888907, 48.74714216726016]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e63bdfc7c1dd57a27eb8578c65047decec84852e", "fields": {"departement": "94", "stop_lat": 48.808201831257435, "code_postal": "94041", "stop_lon": 2.387928651147245, "coord": [48.808201831257435, 2.387928651147245], "stop_id": 3785973, "stop_desc": "40 RUE MARAT - 94041", "stop_name": "SAINT JUST"}, "geometry": {"type": "Point", "coordinates": [2.387928651147245, 48.808201831257435]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "829fd331bf22b8b7581086a6cf63422970a8fcea", "fields": {"departement": "94", "stop_lat": 48.77802987598312, "code_postal": "94081", "stop_lon": 2.405156985736085, "coord": [48.77802987598312, 2.405156985736085], "stop_id": 3785985, "stop_desc": "95 RUE DU GENERAL MALLERET-JOINVILLE - 94081", "stop_name": "CITE BALZAC"}, "geometry": {"type": "Point", "coordinates": [2.405156985736085, 48.77802987598312]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "485231379fc0d50407e2a6e5b45f86811a9f2d8e", "fields": {"departement": "94", "stop_lat": 48.775978442111104, "code_postal": "94081", "stop_lon": 2.4088532233255204, "coord": [48.775978442111104, 2.4088532233255204], "stop_id": 3785987, "stop_desc": "21-23 RUE LEON GEFFROY - 94081", "stop_name": "LEON GEFFROY"}, "geometry": {"type": "Point", "coordinates": [2.4088532233255204, 48.775978442111104]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5a9884952e2f11d706ffd4eb954be23e94c8f6a8", "fields": {"departement": "94", "stop_lat": 48.81209279119115, "code_postal": "94043", "stop_lon": 2.361872316889022, "coord": [48.81209279119115, 2.361872316889022], "stop_id": 3786053, "stop_desc": "41-43 AVENUE DE FONTAINEBLEAU - 94043", "stop_name": "CONVENTION - FONTAINEBLEAU"}, "geometry": {"type": "Point", "coordinates": [2.361872316889022, 48.81209279119115]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b468db4f945e5072a3c2c0bd598bed6db29d3572", "fields": {"departement": "94", "stop_lat": 48.81046784481521, "code_postal": "94043", "stop_lon": 2.3502367086760128, "coord": [48.81046784481521, 2.3502367086760128], "stop_id": 3786058, "stop_desc": "FACE 92 BIS R GABRIEL PERI - 94043", "stop_name": "BENSERADE - C.H.U. DE BICETRE"}, "geometry": {"type": "Point", "coordinates": [2.3502367086760128, 48.81046784481521]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f92b4f1a8155aab5a0aafea2f67123826270252b", "fields": {"departement": "94", "stop_lat": 48.775811214791446, "code_postal": "94038", "stop_lon": 2.3401104509927557, "coord": [48.775811214791446, 2.3401104509927557], "stop_id": 3786082, "stop_desc": "137 AVENUE PAUL VAILLANT COUTURIER - 94038", "stop_name": "TOURNELLES"}, "geometry": {"type": "Point", "coordinates": [2.3401104509927557, 48.775811214791446]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d455e40958a35282484ab5b7abcf0f0371b8d5e0", "fields": {"departement": "94", "stop_lat": 48.76764111423409, "code_postal": "94021", "stop_lon": 2.336180532146978, "coord": [48.76764111423409, 2.336180532146978], "stop_id": 3786087, "stop_desc": "130 BOULEVARD JEAN MERMOZ - 94021", "stop_name": "LOUIS BLERIOT - CIMETIERE INTERCOMMUNAL"}, "geometry": {"type": "Point", "coordinates": [2.336180532146978, 48.76764111423409]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "48a4fb578babdcda52f08957d88065a9e2150b96", "fields": {"departement": "94", "stop_lat": 48.75992920812349, "code_postal": "94034", "stop_lon": 2.331843962081366, "coord": [48.75992920812349, 2.331843962081366], "stop_id": 3786092, "stop_desc": "AVENUE DE STALINGRAD - 94034", "stop_name": "LA FRESNAIE"}, "geometry": {"type": "Point", "coordinates": [2.331843962081366, 48.75992920812349]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "55fbf3c4ccadda1f18bd9d5648a9e198765410a0", "fields": {"departement": "94", "stop_lat": 48.81209279119115, "code_postal": "94043", "stop_lon": 2.361872316889022, "coord": [48.81209279119115, 2.361872316889022], "stop_id": 3786098, "stop_desc": "41-43 AVENUE DE FONTAINEBLEAU - 94043", "stop_name": "CONVENTION - FONTAINEBLEAU"}, "geometry": {"type": "Point", "coordinates": [2.361872316889022, 48.81209279119115]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "833f08d656667b17e253824cc6a923948bd0bc43", "fields": {"departement": "94", "stop_lat": 48.79347237653763, "code_postal": "94076", "stop_lon": 2.344070054112074, "coord": [48.79347237653763, 2.344070054112074], "stop_id": 3786109, "stop_desc": "FACE 96 AVENUE GABRIEL PERI - 94076", "stop_name": "HAUTES BRUYERES"}, "geometry": {"type": "Point", "coordinates": [2.344070054112074, 48.79347237653763]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2ad450b0b95fcd57c769a8e01227ad3fa35a69f0", "fields": {"departement": "94", "stop_lat": 48.79322971732497, "code_postal": "94016", "stop_lon": 2.343825159621149, "coord": [48.79322971732497, 2.343825159621149], "stop_id": 3786118, "stop_desc": "96-98 RUE GABRIEL PERI - 94016", "stop_name": "HAUTES BRUYERES"}, "geometry": {"type": "Point", "coordinates": [2.343825159621149, 48.79322971732497]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f86878c037c2c08ef03796a2d1e781dff837e513", "fields": {"departement": "94", "stop_lat": 48.78488902766605, "code_postal": "94038", "stop_lon": 2.3416750994842728, "coord": [48.78488902766605, 2.3416750994842728], "stop_id": 3786121, "stop_desc": "68 RUE GABRIEL PERI - 94038", "stop_name": "BELVEDERE"}, "geometry": {"type": "Point", "coordinates": [2.3416750994842728, 48.78488902766605]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "221a87018f602d8c08672d7ecda05d75570949e1", "fields": {"departement": "94", "stop_lat": 48.77589211459192, "code_postal": "94038", "stop_lon": 2.3397704819584093, "coord": [48.77589211459192, 2.3397704819584093], "stop_id": 3786126, "stop_desc": "124 AVENUE PAUL VAILLANT COUTURIER - 94038", "stop_name": "TOURNELLES"}, "geometry": {"type": "Point", "coordinates": [2.3397704819584093, 48.77589211459192]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ec9f7cc94f8f77775b94b37119f4ccb693603e90", "fields": {"departement": "94", "stop_lat": 48.775811214791446, "code_postal": "94038", "stop_lon": 2.3401104509927557, "coord": [48.775811214791446, 2.3401104509927557], "stop_id": 3786127, "stop_desc": "137 AVENUE PAUL VAILLANT COUTURIER - 94038", "stop_name": "TOURNELLES"}, "geometry": {"type": "Point", "coordinates": [2.3401104509927557, 48.775811214791446]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "771cce9bf2408c601f5b52864f99745f69afc56a", "fields": {"departement": "94", "stop_lat": 48.758239317202175, "code_postal": "94034", "stop_lon": 2.3296146694714914, "coord": [48.758239317202175, 2.3296146694714914], "stop_id": 3786138, "stop_desc": "AVENUE DE STALINGRAD - 94034", "stop_name": "ROND-POINT ROOSEVELT"}, "geometry": {"type": "Point", "coordinates": [2.3296146694714914, 48.758239317202175]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aa4c8e36fdc940c62b88b74e8808ee6dd7c2a2fe", "fields": {"departement": "94", "stop_lat": 48.79302295578014, "code_postal": "94016", "stop_lon": 2.329990449800685, "coord": [48.79302295578014, 2.329990449800685], "stop_id": 3786298, "stop_desc": "28 BIS AV DU PRESIDENT WILSON - 94016", "stop_name": "PAUL BERT"}, "geometry": {"type": "Point", "coordinates": [2.329990449800685, 48.79302295578014]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "25c83a2b295b5110fa8681f6c2b8c4c3a346c8a0", "fields": {"departement": "94", "stop_lat": 48.79267161594463, "code_postal": "94016", "stop_lon": 2.3215700354928255, "coord": [48.79267161594463, 2.3215700354928255], "stop_id": 3786300, "stop_desc": "2 R DE REIMS - 94016", "stop_name": "PONT ROYAL"}, "geometry": {"type": "Point", "coordinates": [2.3215700354928255, 48.79267161594463]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "60e224e07fb8bd5548fd580643617710538eac3e", "fields": {"departement": "92", "stop_lat": 48.824749461223334, "code_postal": "92072", "stop_lon": 2.2143133818536844, "coord": [48.824749461223334, 2.2143133818536844], "stop_id": 4008925, "stop_desc": "53 GRANDE RUE - 92072", "stop_name": "MAIRIE DE SEVRES"}, "geometry": {"type": "Point", "coordinates": [2.2143133818536844, 48.824749461223334]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d283cc499d1a20d0246168711d09b3bcb3ac1683", "fields": {"departement": "92", "stop_lat": 48.821937268907554, "code_postal": "92072", "stop_lon": 2.206765926349108, "coord": [48.821937268907554, 2.206765926349108], "stop_id": 4008929, "stop_desc": "35 AVENUE DE L'EUROPE - 92072", "stop_name": "PLACE GABRIEL PERI"}, "geometry": {"type": "Point", "coordinates": [2.206765926349108, 48.821937268907554]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b582fb7ca78395e7e20217b0498a2b3d06fc5f15", "fields": {"departement": "92", "stop_lat": 48.82088927265677, "code_postal": "92072", "stop_lon": 2.20190952396969, "coord": [48.82088927265677, 2.20190952396969], "stop_id": 4008931, "stop_desc": "149 RUE GRANDE RUE - 92072", "stop_name": "HOPITAL JEAN ROSTAND"}, "geometry": {"type": "Point", "coordinates": [2.20190952396969, 48.82088927265677]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "79d9b5a81d619b20bfddbb42a62dc76a877a61e8", "fields": {"departement": "92", "stop_lat": 48.81869202615678, "code_postal": "92022", "stop_lon": 2.198226896460123, "coord": [48.81869202615678, 2.198226896460123], "stop_id": 4008933, "stop_desc": "155 AVENUE ROGER SALENGRO - 92022", "stop_name": "MARIVEL"}, "geometry": {"type": "Point", "coordinates": [2.198226896460123, 48.81869202615678]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6db3f3e429e6c7e7d3a44f1c3fcecc5d312247c5", "fields": {"departement": "92", "stop_lat": 48.8155497567482, "code_postal": "92022", "stop_lon": 2.1935536959173376, "coord": [48.8155497567482, 2.1935536959173376], "stop_id": 4008934, "stop_desc": "664 AVENUE ROGER SALENGRO - 92022", "stop_name": "GUILLEMINOT"}, "geometry": {"type": "Point", "coordinates": [2.1935536959173376, 48.8155497567482]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "59e9394677d5af66f9c3b949d80c05e4c0ea7f18", "fields": {"departement": "92", "stop_lat": 48.812941234038774, "code_postal": "92022", "stop_lon": 2.191846224796117, "coord": [48.812941234038774, 2.191846224796117], "stop_id": 4008936, "stop_desc": "928 AVENUE ROGER SALENGRO - 92022", "stop_name": "ATRIUM"}, "geometry": {"type": "Point", "coordinates": [2.191846224796117, 48.812941234038774]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bd2644a80982c9bb143b0f5ed36c5f8ef6ab141c", "fields": {"departement": "92", "stop_lat": 48.81329240286992, "code_postal": "92022", "stop_lon": 2.192375982764248, "coord": [48.81329240286992, 2.192375982764248], "stop_id": 4008937, "stop_desc": "855 AVENUE ROGER SALENGRO - 92022", "stop_name": "ATRIUM"}, "geometry": {"type": "Point", "coordinates": [2.192375982764248, 48.81329240286992]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b8196e028ed1cfa7462fb612a807a11910f02403", "fields": {"departement": "92", "stop_lat": 48.810819960857444, "code_postal": "92022", "stop_lon": 2.1917160854064868, "coord": [48.810819960857444, 2.1917160854064868], "stop_id": 4008939, "stop_desc": "AVENUE ROGER SALENGRO - 92022", "stop_name": "COURS GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.1917160854064868, 48.810819960857444]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "279f53b5c40821583f2545ae51501c0b1a1fa41b", "fields": {"departement": "92", "stop_lat": 48.829339588647336, "code_postal": "92072", "stop_lon": 2.2302705093554778, "coord": [48.829339588647336, 2.2302705093554778], "stop_id": 4008944, "stop_desc": "GARE ROUTIERE - 92072", "stop_name": "PONT DE SEVRES-METRO"}, "geometry": {"type": "Point", "coordinates": [2.2302705093554778, 48.829339588647336]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a6e773c3389fd92eb7c2c1fb5717718965d85094", "fields": {"departement": "92", "stop_lat": 48.82719400030173, "code_postal": "92072", "stop_lon": 2.2232373238068854, "coord": [48.82719400030173, 2.2232373238068854], "stop_id": 4008947, "stop_desc": "1 GRANDE RUE - 92072", "stop_name": "MUSEE DE SEVRES"}, "geometry": {"type": "Point", "coordinates": [2.2232373238068854, 48.82719400030173]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8fa27ffc894a396bb5ab61b63fecec08d775f6f3", "fields": {"departement": "92", "stop_lat": 48.8155497567482, "code_postal": "92022", "stop_lon": 2.1935536959173376, "coord": [48.8155497567482, 2.1935536959173376], "stop_id": 4008960, "stop_desc": "664 AVENUE ROGER SALENGRO - 92022", "stop_name": "GUILLEMINOT"}, "geometry": {"type": "Point", "coordinates": [2.1935536959173376, 48.8155497567482]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6294575d0691345345876efd7e30797d7f1d5034", "fields": {"departement": "92", "stop_lat": 48.816189030781565, "code_postal": "92022", "stop_lon": 2.1945045924659863, "coord": [48.816189030781565, 2.1945045924659863], "stop_id": 4008961, "stop_desc": "547 AVENUE ROGER SALENGRO - 92022", "stop_name": "GUILLEMINOT"}, "geometry": {"type": "Point", "coordinates": [2.1945045924659863, 48.816189030781565]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d29d5907fafc7c189de8c3afade3297f0c757a17", "fields": {"departement": "92", "stop_lat": 48.80877507090612, "code_postal": "92022", "stop_lon": 2.1879525193180367, "coord": [48.80877507090612, 2.1879525193180367], "stop_id": 4008967, "stop_desc": "1427 AVENUE ROGER SALENGRO - 92022", "stop_name": "PUITS SANS VIN"}, "geometry": {"type": "Point", "coordinates": [2.1879525193180367, 48.80877507090612]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d4dd7c740bf910e08b9f4100f66e0ccb34ff4d6b", "fields": {"departement": "78", "stop_lat": 48.80406669751211, "code_postal": "78686", "stop_lon": 2.1751624878061384, "coord": [48.80406669751211, 2.1751624878061384], "stop_id": 4008972, "stop_desc": "78 AVENUE DU GENERAL LECLERC - 78686", "stop_name": "GRACE DE DIEU"}, "geometry": {"type": "Point", "coordinates": [2.1751624878061384, 48.80406669751211]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dea2c61ca1dbb698d2e8dacc27f079b33f6b55fd", "fields": {"departement": "78", "stop_lat": 48.80313693968308, "code_postal": "78686", "stop_lon": 2.1658860263360036, "coord": [48.80313693968308, 2.1658860263360036], "stop_id": 4008976, "stop_desc": "172 AVENUE DU GENERAL LECLERC - 78686", "stop_name": "PRESIDENT DOUMER"}, "geometry": {"type": "Point", "coordinates": [2.1658860263360036, 48.80313693968308]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c70b9d5d05dc2eaad55fcdb435270e8b0ef85f60", "fields": {"departement": "78", "stop_lat": 48.802742704580076, "code_postal": "78646", "stop_lon": 2.1273823138362977, "coord": [48.802742704580076, 2.1273823138362977], "stop_id": 4008991, "stop_desc": "2 AVENUE DE PARIS - 78646", "stop_name": "CHATEAU DE VERSAILLES"}, "geometry": {"type": "Point", "coordinates": [2.1273823138362977, 48.802742704580076]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1448dc150f265479d1146177402d2e136561440f", "fields": {"departement": "92", "stop_lat": 48.829339588647336, "code_postal": "92072", "stop_lon": 2.2302705093554778, "coord": [48.829339588647336, 2.2302705093554778], "stop_id": 4008992, "stop_desc": "GARE ROUTIERE - 92072", "stop_name": "PONT DE SEVRES-METRO"}, "geometry": {"type": "Point", "coordinates": [2.2302705093554778, 48.829339588647336]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a5f3e031a6b7a02a02eccd68d053d945adabeb82", "fields": {"departement": "92", "stop_lat": 48.879758038904555, "code_postal": "92073", "stop_lon": 2.228967357491691, "coord": [48.879758038904555, 2.228967357491691], "stop_id": 4009006, "stop_desc": "4 RUE VOLTAIRE - 92073", "stop_name": "SALENGRO - CIMETIERE VOLTAIRE"}, "geometry": {"type": "Point", "coordinates": [2.228967357491691, 48.879758038904555]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cceb02d9c6d60351593ed8556ca00184086ffb14", "fields": {"departement": "92", "stop_lat": 48.874682158504655, "code_postal": "92073", "stop_lon": 2.221470658835941, "coord": [48.874682158504655, 2.221470658835941], "stop_id": 4009009, "stop_desc": "FACE 8 RUE JACQUES DECOUR - 92073", "stop_name": "JACQUES DECOUR"}, "geometry": {"type": "Point", "coordinates": [2.221470658835941, 48.874682158504655]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2f60a15e46a30ba2415cf4ef4830973e03a73a78", "fields": {"departement": "92", "stop_lat": 48.86357949867925, "code_postal": "92073", "stop_lon": 2.2013485826677246, "coord": [48.86357949867925, 2.2013485826677246], "stop_id": 4009011, "stop_desc": "1 AVENUE DE L'ABBE SAINT PIERRE - 92073", "stop_name": "PLACE DE STALINGRAD"}, "geometry": {"type": "Point", "coordinates": [2.2013485826677246, 48.86357949867925]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "105d32a212057b6ab7ec20493d1a4daa1100896d", "fields": {"departement": "92", "stop_lat": 48.86472342954114, "code_postal": "92073", "stop_lon": 2.2207028041402745, "coord": [48.86472342954114, 2.2207028041402745], "stop_id": 4009033, "stop_desc": "RUE DE SEVRES - 92073", "stop_name": "JEAN-JACQUES ROUSSEAU"}, "geometry": {"type": "Point", "coordinates": [2.2207028041402745, 48.86472342954114]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "03351087331587415911ed0dea2919d683314a09", "fields": {"departement": "93", "stop_lat": 48.8866547794757, "code_postal": "93061", "stop_lon": 2.4040318801088807, "coord": [48.8866547794757, 2.4040318801088807], "stop_id": 4009046, "stop_desc": "FACE 30 RUE ANDRE JOINEAU - 93061", "stop_name": "D'ESTIENNE D'ORVES"}, "geometry": {"type": "Point", "coordinates": [2.4040318801088807, 48.8866547794757]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e349d4bc349fa1d5ebd5c17211c4f6d3ebe51b41", "fields": {"departement": "93", "stop_lat": 48.89901570524189, "code_postal": "93055", "stop_lon": 2.3973276012268303, "coord": [48.89901570524189, 2.3973276012268303], "stop_id": 4009052, "stop_desc": "12 AVENUE EDOUARD VAILLANT - 93055", "stop_name": "JEAN MOULIN"}, "geometry": {"type": "Point", "coordinates": [2.3973276012268303, 48.89901570524189]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9c11539ad71d45cbde3b8c850676491a57bbf346", "fields": {"departement": "93", "stop_lat": 48.94826493970891, "code_postal": "93071", "stop_lon": 2.5369516484773884, "coord": [48.94826493970891, 2.5369516484773884], "stop_id": 3682087, "stop_desc": "19 AVENUE RONSARD - 93071", "stop_name": "SEVRAN - AVENUE RONSARD"}, "geometry": {"type": "Point", "coordinates": [2.5369516484773884, 48.94826493970891]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6dda98b8f66919d69c84147b751827fb1cfb2946", "fields": {"departement": "93", "stop_lat": 48.900181632555274, "code_postal": "93008", "stop_lon": 2.4501785263809293, "coord": [48.900181632555274, 2.4501785263809293], "stop_id": 3682082, "stop_desc": "105 RUE DE PARIS - 93008", "stop_name": "RUE DE PARIS N0 105"}, "geometry": {"type": "Point", "coordinates": [2.4501785263809293, 48.900181632555274]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "329c7234ee8c5347be1df1a4600267d299bbeae1", "fields": {"departement": "93", "stop_lat": 48.90579255204801, "code_postal": "93010", "stop_lon": 2.480837851423006, "coord": [48.90579255204801, 2.480837851423006], "stop_id": 3682170, "stop_desc": "112 AVENUE GALLIENI - 93010", "stop_name": "AUGUSTE POLISSARD"}, "geometry": {"type": "Point", "coordinates": [2.480837851423006, 48.90579255204801]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1235e0cd5fb7c7b7965f4f8990b18ed62be8a979", "fields": {"departement": "93", "stop_lat": 48.89687201976259, "code_postal": "93008", "stop_lon": 2.432260578793238, "coord": [48.89687201976259, 2.432260578793238], "stop_id": 3682085, "stop_desc": "45-47 AVENUE DE METZ - 93008", "stop_name": "AVENUE DE METZ"}, "geometry": {"type": "Point", "coordinates": [2.432260578793238, 48.89687201976259]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "460a073e6bf68aa8e590bbe834be2590d90d2ee4", "fields": {"departement": "93", "stop_lat": 48.9323210589346, "code_postal": "93071", "stop_lon": 2.537681287715955, "coord": [48.9323210589346, 2.537681287715955], "stop_id": 3682097, "stop_desc": "52 AVENUE DE LIVRY - 93071", "stop_name": "LOUIS MENARD"}, "geometry": {"type": "Point", "coordinates": [2.537681287715955, 48.9323210589346]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "307c09d43a84b26af70fde5d4d348030228619de", "fields": {"departement": "93", "stop_lat": 48.94417085341677, "code_postal": "93071", "stop_lon": 2.517576188065935, "coord": [48.94417085341677, 2.517576188065935], "stop_id": 3682078, "stop_desc": "CHEMIN DE SAVIGNY - 93071", "stop_name": "PIERRE CURIE"}, "geometry": {"type": "Point", "coordinates": [2.517576188065935, 48.94417085341677]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "106aa2d03a5aa5c82b4c574b720c6972fd2f1a7b", "fields": {"departement": "94", "stop_lat": 48.83501004911766, "code_postal": "94052", "stop_lon": 2.471561130297352, "coord": [48.83501004911766, 2.471561130297352], "stop_id": 3682922, "stop_desc": "FACE AU 8 AVENUE DES MARRONNIERS - 94052", "stop_name": "NOGENT-SUR-MARNE RER"}, "geometry": {"type": "Point", "coordinates": [2.471561130297352, 48.83501004911766]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8b6649f47741a44ab097887af3f184913bad336d", "fields": {"departement": "77", "stop_lat": 48.874532919282075, "code_postal": "77108", "stop_lon": 2.581547949321578, "coord": [48.874532919282075, 2.581547949321578], "stop_id": 3682912, "stop_desc": "70 AVENUE DE LA RESISTANCE - 77108", "stop_name": "CHELLES - GOURNAY RER"}, "geometry": {"type": "Point", "coordinates": [2.581547949321578, 48.874532919282075]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "00cac1ac3c48a90e00d33c99b7df101e10a66594", "fields": {"departement": "77", "stop_lat": 48.870957143989884, "code_postal": "77108", "stop_lon": 2.576531116758481, "coord": [48.870957143989884, 2.576531116758481], "stop_id": 3682908, "stop_desc": "50 AVENUE DU MARECHAL FOCH - 77108", "stop_name": "AVENUE DES MARTYRS"}, "geometry": {"type": "Point", "coordinates": [2.576531116758481, 48.870957143989884]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f36dbfe853c9dc6306b4aeccd4d75b34e7234b62", "fields": {"departement": "93", "stop_lat": 48.86066143215691, "code_postal": "93050", "stop_lon": 2.540591694022896, "coord": [48.86066143215691, 2.540591694022896], "stop_id": 3682895, "stop_desc": "60 AVENUE DU MARECHAL LECLERC - 93050", "stop_name": "BLANCHEVILLE"}, "geometry": {"type": "Point", "coordinates": [2.540591694022896, 48.86066143215691]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "701c3283b8f1541ca9d43941ff6990cd6d27fcb3", "fields": {"departement": "77", "stop_lat": 48.87818085149016, "code_postal": "77108", "stop_lon": 2.5905990707298217, "coord": [48.87818085149016, 2.5905990707298217], "stop_id": 3682917, "stop_desc": "RUE LOUIS ETERLET - 77108", "stop_name": "MAIRIE DE CHELLES"}, "geometry": {"type": "Point", "coordinates": [2.5905990707298217, 48.87818085149016]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ba1048ac422fb7c712666e8c3aee6e03d868d989", "fields": {"departement": "93", "stop_lat": 48.86394281893811, "code_postal": "93050", "stop_lon": 2.5503171019272557, "coord": [48.86394281893811, 2.5503171019272557], "stop_id": 3682899, "stop_desc": "AVENUE JEAN JAURES - 93050", "stop_name": "MAISON BLANCHE"}, "geometry": {"type": "Point", "coordinates": [2.5503171019272557, 48.86394281893811]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e93e2649de82613a7a63fdefbe6fd13996ebb31a", "fields": {"departement": "77", "stop_lat": 48.86893998350323, "code_postal": "77108", "stop_lon": 2.574028725109295, "coord": [48.86893998350323, 2.574028725109295], "stop_id": 3682905, "stop_desc": "1 AVENUE DU MARECHAL FOCH - 77108", "stop_name": "RUE DU PORT"}, "geometry": {"type": "Point", "coordinates": [2.574028725109295, 48.86893998350323]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8c74e567e3b3f5ecbab4f42459c960878c836bbe", "fields": {"departement": "77", "stop_lat": 48.87595331876667, "code_postal": "77108", "stop_lon": 2.589975048930337, "coord": [48.87595331876667, 2.589975048930337], "stop_id": 3682916, "stop_desc": "8 RUE ADOLPHE BESSON - 77108", "stop_name": "RUE DUCHESNE"}, "geometry": {"type": "Point", "coordinates": [2.589975048930337, 48.87595331876667]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "899d48c76bea8fa2b0fa36d72ca6e466dfbcf1d6", "fields": {"departement": "93", "stop_lat": 48.86489624039631, "code_postal": "93050", "stop_lon": 2.554870877887246, "coord": [48.86489624039631, 2.554870877887246], "stop_id": 3682902, "stop_desc": "AVENUE JEAN JAURES - 93050", "stop_name": "L'AVENIR"}, "geometry": {"type": "Point", "coordinates": [2.554870877887246, 48.86489624039631]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c473225edf69e4d69a39370cb7688ec15ece7b89", "fields": {"departement": "93", "stop_lat": 48.87172507461094, "code_postal": "93050", "stop_lon": 2.5351581874946048, "coord": [48.87172507461094, 2.5351581874946048], "stop_id": 3683028, "stop_desc": "92 TER RUE GASTON NAVAILLES - 93050", "stop_name": "CITE DES BOULEAUX"}, "geometry": {"type": "Point", "coordinates": [2.5351581874946048, 48.87172507461094]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b95c76781b24e9939bb8b8fa655fe04fbb65b0cb", "fields": {"departement": "93", "stop_lat": 48.87177933763996, "code_postal": "93050", "stop_lon": 2.534954032645659, "coord": [48.87177933763996, 2.534954032645659], "stop_id": 3683029, "stop_desc": "71-73 RUE GASTON NAVAILLES - 93050", "stop_name": "CITE DES BOULEAUX"}, "geometry": {"type": "Point", "coordinates": [2.534954032645659, 48.87177933763996]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "06af5a256c266e453fb77047d18be7dc64fe7f9a", "fields": {"departement": "93", "stop_lat": 48.87551236341278, "code_postal": "93032", "stop_lon": 2.5436202154734446, "coord": [48.87551236341278, 2.5436202154734446], "stop_id": 3683032, "stop_desc": "2-4 AVENUE DU CHATEAU - 93032", "stop_name": "PLACE DES FETES"}, "geometry": {"type": "Point", "coordinates": [2.5436202154734446, 48.87551236341278]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e19d72f43df407b505ecc8d47b7730d7f8c8d3b3", "fields": {"departement": "93", "stop_lat": 48.85367127728647, "code_postal": "93050", "stop_lon": 2.5169346792383425, "coord": [48.85367127728647, 2.5169346792383425], "stop_id": 3683014, "stop_desc": "FACE 32 BOULEVARD GALLIENI - 93050", "stop_name": "CENTRE BUS"}, "geometry": {"type": "Point", "coordinates": [2.5169346792383425, 48.85367127728647]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d35cba3ecdf634c9c7021f6a2d72bf348ee99b74", "fields": {"departement": "93", "stop_lat": 48.87585726927563, "code_postal": "93032", "stop_lon": 2.556810791575328, "coord": [48.87585726927563, 2.556810791575328], "stop_id": 3683044, "stop_desc": "RUE DE LA BERGERIE - 93032", "stop_name": "RUE DE LA BERGERIE"}, "geometry": {"type": "Point", "coordinates": [2.556810791575328, 48.87585726927563]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b6d135f87c931704805bcf754ffa18141f2a6544", "fields": {"departement": "93", "stop_lat": 48.872586653293766, "code_postal": "93032", "stop_lon": 2.5463879373423057, "coord": [48.872586653293766, 2.5463879373423057], "stop_id": 3683035, "stop_desc": "37-39 BOULEVARD DE L'ESPERANCE - 93032", "stop_name": "LE LAC"}, "geometry": {"type": "Point", "coordinates": [2.5463879373423057, 48.872586653293766]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "81fb235a65af72784b09a8c8cd475ab956b078dc", "fields": {"departement": "93", "stop_lat": 48.87254092687955, "code_postal": "93032", "stop_lon": 2.546837356009317, "coord": [48.87254092687955, 2.546837356009317], "stop_id": 3683034, "stop_desc": "FACE 83 AVENUE DE RAMBOUILLET - 93032", "stop_name": "LE LAC"}, "geometry": {"type": "Point", "coordinates": [2.546837356009317, 48.87254092687955]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6eaa1444b0647b520ae992044fb4285c807f4d19", "fields": {"departement": "93", "stop_lat": 48.86394281893811, "code_postal": "93050", "stop_lon": 2.5503171019272557, "coord": [48.86394281893811, 2.5503171019272557], "stop_id": 3683007, "stop_desc": "AVENUE JEAN JAURES - 93050", "stop_name": "MAISON BLANCHE"}, "geometry": {"type": "Point", "coordinates": [2.5503171019272557, 48.86394281893811]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3368e2ede63109afc0dc7290487885ffa8b8dfad", "fields": {"departement": "93", "stop_lat": 48.86467957262208, "code_postal": "93050", "stop_lon": 2.555401237355375, "coord": [48.86467957262208, 2.555401237355375], "stop_id": 3683008, "stop_desc": "AVENUE JEAN JAURES - 93050", "stop_name": "L'AVENIR"}, "geometry": {"type": "Point", "coordinates": [2.555401237355375, 48.86467957262208]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e8976012cf6074791d1c401c1d5e4694d01b524b", "fields": {"departement": "93", "stop_lat": 48.84878486098396, "code_postal": "93051", "stop_lon": 2.5531418777728834, "coord": [48.84878486098396, 2.5531418777728834], "stop_id": 3682643, "stop_desc": "FACE 7 AVENUE EMILE COSSONNEAU - 93051", "stop_name": "MAIRIE DE NOISY-LE-GRAND"}, "geometry": {"type": "Point", "coordinates": [2.5531418777728834, 48.84878486098396]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fb8c0b6d25159a889fcb62275cebc5ce41674a9a", "fields": {"departement": "77", "stop_lat": 48.855865360078624, "code_postal": "77083", "stop_lon": 2.5904900646456364, "coord": [48.855865360078624, 2.5904900646456364], "stop_id": 3682657, "stop_desc": "FACE 65 BIS AV JEAN JAURES - 77083", "stop_name": "C.S.T.B. - MATTEOTTI"}, "geometry": {"type": "Point", "coordinates": [2.5904900646456364, 48.855865360078624]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "32ccd1f59b6101189e91ceb66516110cd17d7d3d", "fields": {"departement": "77", "stop_lat": 48.850679452087306, "code_postal": "77337", "stop_lon": 2.6297681081578985, "coord": [48.850679452087306, 2.6297681081578985], "stop_id": 3682683, "stop_desc": "COURS DE L'ARCHE GUEDON - 77337", "stop_name": "LA REMISE AUX FRAISES"}, "geometry": {"type": "Point", "coordinates": [2.6297681081578985, 48.850679452087306]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bdb1423ac5d162484d8a99cfdcbe5b381dbf746f", "fields": {"departement": "77", "stop_lat": 48.85076123947161, "code_postal": "77468", "stop_lon": 2.6573736160779675, "coord": [48.85076123947161, 2.6573736160779675], "stop_id": 3682695, "stop_desc": "FACE 3-7 RUE DE PARIS - 77468", "stop_name": "LA MARE AUX MARCHAIS"}, "geometry": {"type": "Point", "coordinates": [2.6573736160779675, 48.85076123947161]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "527719769b58f1d6ea80fa2193047800385bde40", "fields": {"departement": "93", "stop_lat": 48.854634780445664, "code_postal": "93050", "stop_lon": 2.5216095472047004, "coord": [48.854634780445664, 2.5216095472047004], "stop_id": 3682814, "stop_desc": "11 TER BOULEVARD DU MARECHAL FOCH - 93050", "stop_name": "HELENE BOUCHER"}, "geometry": {"type": "Point", "coordinates": [2.5216095472047004, 48.854634780445664]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5b804f72408155b6b56dad416a13be1b0de16bc7", "fields": {"departement": "77", "stop_lat": 48.84694657702187, "code_postal": "77468", "stop_lon": 2.6521072695310983, "coord": [48.84694657702187, 2.6521072695310983], "stop_id": 3682698, "stop_desc": "AVENUE DE LINGENFELD - 77468", "stop_name": "JACQUES PREVERT"}, "geometry": {"type": "Point", "coordinates": [2.6521072695310983, 48.84694657702187]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "92f883158abc887ba5115f7f52d034d0fb425ba1", "fields": {"departement": "77", "stop_lat": 48.850130645149385, "code_postal": "77468", "stop_lon": 2.633632666637883, "coord": [48.850130645149385, 2.633632666637883], "stop_id": 3682684, "stop_desc": "0 COURS DE L'ARCHE GUEDON - 77468", "stop_name": "CITE SCOLAIRE"}, "geometry": {"type": "Point", "coordinates": [2.633632666637883, 48.850130645149385]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "53bcc80ea56931da91fd8ecfd6836616c52c1b61", "fields": {"departement": "93", "stop_lat": 48.853437480755204, "code_postal": "93050", "stop_lon": 2.5170155851458653, "coord": [48.853437480755204, 2.5170155851458653], "stop_id": 3682811, "stop_desc": "32 BOULEVARD GALLIENI - 93050", "stop_name": "CENTRE BUS"}, "geometry": {"type": "Point", "coordinates": [2.5170155851458653, 48.853437480755204]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d1f3f858c8f9ef6e442571e57845da55c9f19d79", "fields": {"departement": "77", "stop_lat": 48.839094475647336, "code_postal": "77468", "stop_lon": 2.6576964831372134, "coord": [48.839094475647336, 2.6576964831372134], "stop_id": 3682705, "stop_desc": "AVENUE JEAN MOULIN - 77468", "stop_name": "CITES UNIES"}, "geometry": {"type": "Point", "coordinates": [2.6576964831372134, 48.839094475647336]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2383524b36fe120a27ef26e7e4db1f0836ecebcf", "fields": {"departement": "77", "stop_lat": 48.84276074387724, "code_postal": "77337", "stop_lon": 2.6150311934474253, "coord": [48.84276074387724, 2.6150311934474253], "stop_id": 3682675, "stop_desc": "COURS DES ROCHES - 77337", "stop_name": "NOISIEL RER"}, "geometry": {"type": "Point", "coordinates": [2.6150311934474253, 48.84276074387724]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f973f2630985d7905f240bd67694d8370007e6ac", "fields": {"departement": "93", "stop_lat": 48.848057113244195, "code_postal": "93051", "stop_lon": 2.537573583016719, "coord": [48.848057113244195, 2.537573583016719], "stop_id": 3682640, "stop_desc": "FACE 114 BOULEVARD DU MARECHAL FOCH - 93051", "stop_name": "ROUTE DE NEUILLY"}, "geometry": {"type": "Point", "coordinates": [2.537573583016719, 48.848057113244195]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "163b3a3cc27b1f3f7db21a780ef133417f260ea8", "fields": {"departement": "93", "stop_lat": 48.84537556105787, "code_postal": "93051", "stop_lon": 2.528630347479541, "coord": [48.84537556105787, 2.528630347479541], "stop_id": 3682635, "stop_desc": "8 BOULEVARD DU MARECHAL FOCH - 93051", "stop_name": "MARX DORMOY-CARNOT"}, "geometry": {"type": "Point", "coordinates": [2.528630347479541, 48.84537556105787]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2dea3cecdf81f5bc117301703bbe7585e6e1fa05", "fields": {"departement": "94", "stop_lat": 48.844202199662014, "code_postal": "94015", "stop_lon": 2.5261205119327497, "coord": [48.844202199662014, 2.5261205119327497], "stop_id": 3682634, "stop_desc": "RUE ETIENNE DE SILHOUETTE - 94015", "stop_name": "BRY-SUR-MARNE RER"}, "geometry": {"type": "Point", "coordinates": [2.5261205119327497, 48.844202199662014]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2c2d3a18ecfaaac590df60e97ff3c97b9074ae43", "fields": {"departement": "93", "stop_lat": 48.846768150627604, "code_postal": "93051", "stop_lon": 2.539788268441885, "coord": [48.846768150627604, 2.539788268441885], "stop_id": 3682639, "stop_desc": "58 RUE PIERRE BROSSOLETTTE - 93051", "stop_name": "ROUTE DE NEUILLY"}, "geometry": {"type": "Point", "coordinates": [2.539788268441885, 48.846768150627604]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "670de11f62a54a3f0c41a573c239613861b9ae8f", "fields": {"departement": "93", "stop_lat": 48.89462418028901, "code_postal": "93010", "stop_lon": 2.478639719945247, "coord": [48.89462418028901, 2.478639719945247], "stop_id": 3682355, "stop_desc": "FACE 11 R DE LA LIBERTE - 93010", "stop_name": "GARE DE BONDY RER"}, "geometry": {"type": "Point", "coordinates": [2.478639719945247, 48.89462418028901]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c9e62d352bda98c64f3f0e71d3656752c9b85713", "fields": {"departement": "93", "stop_lat": 48.9089622306807, "code_postal": "93010", "stop_lon": 2.4902812877065927, "coord": [48.9089622306807, 2.4902812877065927], "stop_id": 3682344, "stop_desc": "CHEMIN DU PONT - 93010", "stop_name": "HOPITAL JEAN VERDIER"}, "geometry": {"type": "Point", "coordinates": [2.4902812877065927, 48.9089622306807]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f45fa830da9b646fe14fe61d8a075bf0e6b1ff5e", "fields": {"departement": "93", "stop_lat": 48.900075717229335, "code_postal": "93010", "stop_lon": 2.4816944299365256, "coord": [48.900075717229335, 2.4816944299365256], "stop_id": 3682328, "stop_desc": "49 AVENUE CARNOT - 93010", "stop_name": "BLANQUI - CARNOT"}, "geometry": {"type": "Point", "coordinates": [2.4816944299365256, 48.900075717229335]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f7566d6f4745e6c299b1737e5db19a791599239c", "fields": {"departement": "93", "stop_lat": 48.8928360914602, "code_postal": "93010", "stop_lon": 2.485735887820397, "coord": [48.8928360914602, 2.485735887820397], "stop_id": 3682308, "stop_desc": "FACE 100 ROUTE DE VILLEMOMBLE - 93010", "stop_name": "L'ETOILE"}, "geometry": {"type": "Point", "coordinates": [2.485735887820397, 48.8928360914602]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a067eb687411c6d835db7d96868d5ff0fe553df3", "fields": {"departement": "93", "stop_lat": 48.89401766478635, "code_postal": "93010", "stop_lon": 2.496370642162232, "coord": [48.89401766478635, 2.496370642162232], "stop_id": 3682319, "stop_desc": "241 RUE DES ALOUETTES - 93010", "stop_name": "ALOUETTES"}, "geometry": {"type": "Point", "coordinates": [2.496370642162232, 48.89401766478635]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6411d47ab636da9e422c1434880edc3359b891b8", "fields": {"departement": "93", "stop_lat": 48.88964325369976, "code_postal": "93010", "stop_lon": 2.4945990960401216, "coord": [48.88964325369976, 2.4945990960401216], "stop_id": 3682313, "stop_desc": "R ALEXIS CARREL - 93010", "stop_name": "PHILOSOPHIE"}, "geometry": {"type": "Point", "coordinates": [2.4945990960401216, 48.88964325369976]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ba67b3ecdae1ff945f0dcef2d22e315d8713ea9e", "fields": {"departement": "93", "stop_lat": 48.90939395213068, "code_postal": "93057", "stop_lon": 2.5034530141423437, "coord": [48.90939395213068, 2.5034530141423437], "stop_id": 3682219, "stop_desc": "91 AVENUE ARISTIDE BRIAND - 93057", "stop_name": "EGLISE DES PAVILLONS-SOUS-BOIS"}, "geometry": {"type": "Point", "coordinates": [2.5034530141423437, 48.90939395213068]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7889bb676c9a6993ce332c0ae1af70e135485cd1", "fields": {"departement": "93", "stop_lat": 48.90921327860059, "code_postal": "93057", "stop_lon": 2.504120498720451, "coord": [48.90921327860059, 2.504120498720451], "stop_id": 3682176, "stop_desc": "140 AVENUE ARISTIDE BRIAND - 93057", "stop_name": "EGLISE DES PAVILLONS-SOUS-BOIS"}, "geometry": {"type": "Point", "coordinates": [2.504120498720451, 48.90921327860059]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dec62530af0e35556b61efed68676ac8216cde04", "fields": {"departement": "93", "stop_lat": 48.910494778495185, "code_postal": "93057", "stop_lon": 2.5129187507167723, "coord": [48.910494778495185, 2.5129187507167723], "stop_id": 3682178, "stop_desc": "242 AVENUE ARISTIDE BRIAND - 93057", "stop_name": "VICTOR HUGO - JEAN MOULIN"}, "geometry": {"type": "Point", "coordinates": [2.5129187507167723, 48.910494778495185]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d9c652dab3e66feb9e5d3c2220ba16c781fc0569", "fields": {"departement": "93", "stop_lat": 48.9119045057799, "code_postal": "93014", "stop_lon": 2.552095973224604, "coord": [48.9119045057799, 2.552095973224604], "stop_id": 3682189, "stop_desc": "FACE 7 ALLEE VEUVE LINDET GIRARD - 93014", "stop_name": "LES MARRONNIERS"}, "geometry": {"type": "Point", "coordinates": [2.552095973224604, 48.9119045057799]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aa4553c4217a469d176c7b956e45c337a0eb80e7", "fields": {"departement": "93", "stop_lat": 48.906169876941505, "code_postal": "93010", "stop_lon": 2.4809479623042554, "coord": [48.906169876941505, 2.4809479623042554], "stop_id": 3682213, "stop_desc": "111 AVENUE GALLIENI - 93010", "stop_name": "AUGUSTE POLISSARD"}, "geometry": {"type": "Point", "coordinates": [2.4809479623042554, 48.906169876941505]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3c0ac123dc60fd8e094f329b74ecf4ff995eafd0", "fields": {"departement": "93", "stop_lat": 48.91059910000352, "code_postal": "93014", "stop_lon": 2.5533585541816404, "coord": [48.91059910000352, 2.5533585541816404], "stop_id": 3682234, "stop_desc": "29 ALLEE VEUVE LINDET GIRARD - 93014", "stop_name": "LA PELOUSE"}, "geometry": {"type": "Point", "coordinates": [2.5533585541816404, 48.91059910000352]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b4c3e63c8c75953d0eb6946d875300c2f6a166a8", "fields": {"departement": "93", "stop_lat": 48.90969055055938, "code_postal": "93014", "stop_lon": 2.5384390529437444, "coord": [48.90969055055938, 2.5384390529437444], "stop_id": 3682184, "stop_desc": "FACE 159 CHEMIN DES POSTES - 93014", "stop_name": "LES GENETTES"}, "geometry": {"type": "Point", "coordinates": [2.5384390529437444, 48.90969055055938]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6418337854f89196800ea778ba7bc63039a56146", "fields": {"departement": "93", "stop_lat": 48.907969430629855, "code_postal": "93057", "stop_lon": 2.4935367931702235, "coord": [48.907969430629855, 2.4935367931702235], "stop_id": 3682217, "stop_desc": "11 AVENUE ARISTIDE BRIAND - 93057", "stop_name": "LA FOURCHE"}, "geometry": {"type": "Point", "coordinates": [2.4935367931702235, 48.907969430629855]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "801b30bf349059036205b12be8a379db7eb2eaa9", "fields": {"departement": "93", "stop_lat": 48.906457816424556, "code_postal": "93014", "stop_lon": 2.5573085596291145, "coord": [48.906457816424556, 2.5573085596291145], "stop_id": 3682193, "stop_desc": "AVENUE JEAN MOULIN - 93014", "stop_name": "EMILE ZOLA"}, "geometry": {"type": "Point", "coordinates": [2.5573085596291145, 48.906457816424556]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "74cf99c7c7befd3ee483ad5f1ddd4abb47e6e924", "fields": {"departement": "93", "stop_lat": 48.91004025543617, "code_postal": "93046", "stop_lon": 2.527982985738969, "coord": [48.91004025543617, 2.527982985738969], "stop_id": 3682181, "stop_desc": "4 AVENUE LEON BLUM - 93046", "stop_name": "SALENGRO"}, "geometry": {"type": "Point", "coordinates": [2.527982985738969, 48.91004025543617]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8f93bb9643041d4b5c8650dd2880d23911038fed", "fields": {"departement": "93", "stop_lat": 48.85764811106718, "code_postal": "93050", "stop_lon": 2.531331614853965, "coord": [48.85764811106718, 2.531331614853965], "stop_id": 3682819, "stop_desc": "26 RUE PAUL ET CAMILLE THOMOUX - 93050", "stop_name": "PLACE DE LA RESISTANCE"}, "geometry": {"type": "Point", "coordinates": [2.531331614853965, 48.85764811106718]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aa2fd7bbc6941735fd06cfaabe2eb0cf0e21f6d5", "fields": {"departement": "93", "stop_lat": 48.86569184242489, "code_postal": "93050", "stop_lon": 2.519973286927457, "coord": [48.86569184242489, 2.519973286927457], "stop_id": 3682851, "stop_desc": "102 BD LOUIS ARMAND - 93050", "stop_name": "LES CHANOUX - LYCEE CUGNOT."}, "geometry": {"type": "Point", "coordinates": [2.519973286927457, 48.86569184242489]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "892550b14449243b75694286b940af85dfaac8db", "fields": {"departement": "93", "stop_lat": 48.85551623837613, "code_postal": "93050", "stop_lon": 2.526897183997044, "coord": [48.85551623837613, 2.526897183997044], "stop_id": 3682817, "stop_desc": "38 BOULEVARD DU MARECHAL FOCH - 93050", "stop_name": "FOCH - DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.526897183997044, 48.85551623837613]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8594dce5a1c20eeaec826faab3b6aa2f71995a57", "fields": {"departement": "93", "stop_lat": 48.853479205371784, "code_postal": "93049", "stop_lon": 2.51314784397822, "coord": [48.853479205371784, 2.51314784397822], "stop_id": 3682832, "stop_desc": "PISTE GARE ROUTIERE - 93049", "stop_name": "NEUILLY-PLAISANCE RER"}, "geometry": {"type": "Point", "coordinates": [2.51314784397822, 48.853479205371784]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4cd06117f2e2cd99bc2bc730ae12a2b3384195b1", "fields": {"departement": "93", "stop_lat": 48.85568878516335, "code_postal": "93049", "stop_lon": 2.5200061456617604, "coord": [48.85568878516335, 2.5200061456617604], "stop_id": 3682861, "stop_desc": "13 BOULEVARD ARISTIDE BRIAND - 93049", "stop_name": "FRANCOIS MAURIAC"}, "geometry": {"type": "Point", "coordinates": [2.5200061456617604, 48.85568878516335]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "51d104963dba92040ddd37196dee3c831eb408dd", "fields": {"departement": "93", "stop_lat": 48.86904180874187, "code_postal": "93050", "stop_lon": 2.521483666616452, "coord": [48.86904180874187, 2.521483666616452], "stop_id": 3682846, "stop_desc": "48 RUE LOUIS AMPERE - 93050", "stop_name": "RUE LOUIS AMPERE N0 48"}, "geometry": {"type": "Point", "coordinates": [2.521483666616452, 48.86904180874187]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "60eeaf0b86fe4aed64cc5da3290b6d3f1c32980b", "fields": {"departement": "93", "stop_lat": 48.86659553796948, "code_postal": "93050", "stop_lon": 2.5282727350480747, "coord": [48.86659553796948, 2.5282727350480747], "stop_id": 3682855, "stop_desc": "RUE LOUIS VANNINI - 93050", "stop_name": "LEON BLUM"}, "geometry": {"type": "Point", "coordinates": [2.5282727350480747, 48.86659553796948]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "45b951f0c370a7ad8a6d257315dacba44fab44f9", "fields": {"departement": "93", "stop_lat": 48.900922655507664, "code_postal": "93047", "stop_lon": 2.5709986516900187, "coord": [48.900922655507664, 2.5709986516900187], "stop_id": 3682242, "stop_desc": "3 RUE DU GENERAL LECLERC - 93047", "stop_name": "HOTEL DE VILLE DE MONTFERMEIL"}, "geometry": {"type": "Point", "coordinates": [2.5709986516900187, 48.900922655507664]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a8aa22cbbfb145bc3ba2d7ed685eff743550af79", "fields": {"departement": "93", "stop_lat": 48.91041782200938, "code_postal": "93046", "stop_lon": 2.510232536149553, "coord": [48.91041782200938, 2.510232536149553], "stop_id": 3682252, "stop_desc": "13 AVENUE ARISTIDE BRIAND - 93046", "stop_name": "VICTOR HUGO - JEAN MOULIN"}, "geometry": {"type": "Point", "coordinates": [2.510232536149553, 48.91041782200938]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "07fcba4e2723ec7b8d96d1357801c1314570df5e", "fields": {"departement": "93", "stop_lat": 48.9120623362596, "code_postal": "93014", "stop_lon": 2.5492742382312286, "coord": [48.9120623362596, 2.5492742382312286], "stop_id": 3682261, "stop_desc": "AVENUE DE SEVIGNE - 93014", "stop_name": "MAIRIE DE CLICHY-SOUS-BOIS"}, "geometry": {"type": "Point", "coordinates": [2.5492742382312286, 48.9120623362596]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "10f02d08b6d20a1b95e36f3e97f63a958c77aedb", "fields": {"departement": "93", "stop_lat": 48.89559615956323, "code_postal": "93010", "stop_lon": 2.484925973405418, "coord": [48.89559615956323, 2.484925973405418], "stop_id": 3682299, "stop_desc": "FACE 76 RUE EDOUARD VAILLANT - 93010", "stop_name": "VAILLANT - SOLIDARITE"}, "geometry": {"type": "Point", "coordinates": [2.484925973405418, 48.89559615956323]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ee42101475a64f60e55bca057c5f5758d6443e46", "fields": {"departement": "93", "stop_lat": 48.90888406123371, "code_postal": "93046", "stop_lon": 2.5316053431104883, "coord": [48.90888406123371, 2.5316053431104883], "stop_id": 3682264, "stop_desc": "43 AVENUE LEON BLUM - 93046", "stop_name": "JEAN-BAPTISTE CLEMENT"}, "geometry": {"type": "Point", "coordinates": [2.5316053431104883, 48.90888406123371]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d3c7924d00778979f82c1197532f42ee87cfd8cc", "fields": {"departement": "93", "stop_lat": 48.902680473159826, "code_postal": "93047", "stop_lon": 2.56826649449064, "coord": [48.902680473159826, 2.56826649449064], "stop_id": 3682247, "stop_desc": "32 RUE DE LA TUILERIE - 93047", "stop_name": "MAISON DES JEUNES"}, "geometry": {"type": "Point", "coordinates": [2.56826649449064, 48.902680473159826]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "483c49ef3c3538db0a85a77269ca69baed4febd9", "fields": {"departement": "93", "stop_lat": 48.88939625193998, "code_postal": "93010", "stop_lon": 2.4839134105672915, "coord": [48.88939625193998, 2.4839134105672915], "stop_id": 3682303, "stop_desc": "96 PL MENDES FRANCE - 93010", "stop_name": "PLACE MENDES FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.4839134105672915, 48.88939625193998]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4b7834bbfc9a254e942239cce09b17b0f861d050", "fields": {"departement": "93", "stop_lat": 48.912055676467105, "code_postal": "93046", "stop_lon": 2.5207776395378794, "coord": [48.912055676467105, 2.5207776395378794], "stop_id": 3682251, "stop_desc": "FACE 300 AVENUE ARISTIDE BRIAND - 93046", "stop_name": "CHANZY"}, "geometry": {"type": "Point", "coordinates": [2.5207776395378794, 48.912055676467105]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "75806aec248e27072e162a0692378c1a9de7a716", "fields": {"departement": "93", "stop_lat": 48.89067076760361, "code_postal": "93010", "stop_lon": 2.477838448808409, "coord": [48.89067076760361, 2.477838448808409], "stop_id": 3682304, "stop_desc": "1 AV DE METZ - 93010", "stop_name": "METZ - ETIENNE DOLET"}, "geometry": {"type": "Point", "coordinates": [2.477838448808409, 48.89067076760361]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f108b7e638b1e9de2ed7ea05486413c4cf40aeec", "fields": {"departement": "93", "stop_lat": 48.89363546520329, "code_postal": "93010", "stop_lon": 2.4787460614643035, "coord": [48.89363546520329, 2.4787460614643035], "stop_id": 3682305, "stop_desc": "RUE DE VARSOVIE - 93010", "stop_name": "VARSOVIE"}, "geometry": {"type": "Point", "coordinates": [2.4787460614643035, 48.89363546520329]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "790696b23a1d6d9436281cc377c68eeec69c18b4", "fields": {"departement": "94", "stop_lat": 48.835913890097316, "code_postal": "94052", "stop_lon": 2.47498075734175, "coord": [48.835913890097316, 2.47498075734175], "stop_id": 3682864, "stop_desc": "2 BOULEVARD DE STRASBOURG - 94052", "stop_name": "PLACE DU GENERAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.47498075734175, 48.835913890097316]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6cb2b6a8673598d0301b4890d4b7f0780a23be0d", "fields": {"departement": "94", "stop_lat": 48.837215249606906, "code_postal": "94052", "stop_lon": 2.476563555660945, "coord": [48.837215249606906, 2.476563555660945], "stop_id": 3682866, "stop_desc": "29 BIS BOULEVARD DE STRASBOURG - 94052", "stop_name": "GENERAL FAIDHERBE"}, "geometry": {"type": "Point", "coordinates": [2.476563555660945, 48.837215249606906]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "689e6b238d8287097b4ac1202eb1897bb7710e8c", "fields": {"departement": "93", "stop_lat": 48.85429380589795, "code_postal": "93050", "stop_lon": 2.5212542273863185, "coord": [48.85429380589795, 2.5212542273863185], "stop_id": 3682885, "stop_desc": "FACE 11 BOULEVARD DU MARECHAL FOCH - 93050", "stop_name": "HELENE BOUCHER"}, "geometry": {"type": "Point", "coordinates": [2.5212542273863185, 48.85429380589795]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3c6513989647693fc5c4d69063f05674acd37677", "fields": {"departement": "93", "stop_lat": 48.85551623837613, "code_postal": "93050", "stop_lon": 2.526897183997044, "coord": [48.85551623837613, 2.526897183997044], "stop_id": 3682889, "stop_desc": "38 BOULEVARD DU MARECHAL FOCH - 93050", "stop_name": "FOCH - DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.526897183997044, 48.85551623837613]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "233e5a7f3dabc3e331dc756a02d5166eb78fa158", "fields": {"departement": "94", "stop_lat": 48.850726191890054, "code_postal": "94058", "stop_lon": 2.5025841007304725, "coord": [48.850726191890054, 2.5025841007304725], "stop_id": 3682878, "stop_desc": "89 BOULEVARD ALSACE-LORRAINE - 94058", "stop_name": "JULES FERRY"}, "geometry": {"type": "Point", "coordinates": [2.5025841007304725, 48.850726191890054]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b1c0bfd5e4be3a58489d12203cbffff09894afe7", "fields": {"departement": "94", "stop_lat": 48.842957047022125, "code_postal": "94052", "stop_lon": 2.4850620796582157, "coord": [48.842957047022125, 2.4850620796582157], "stop_id": 3682870, "stop_desc": "147 BIS BOULEVARD DE STRASBOURG - 94052", "stop_name": "ANQUETIL"}, "geometry": {"type": "Point", "coordinates": [2.4850620796582157, 48.842957047022125]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e810e96d7ea083531f711a70835e22c0bb70b3a8", "fields": {"departement": "94", "stop_lat": 48.8507957926177, "code_postal": "94058", "stop_lon": 2.504232174035045, "coord": [48.8507957926177, 2.504232174035045], "stop_id": 3682877, "stop_desc": "106 BOULEVARD ALSACE-LORRAINE - 94058", "stop_name": "JULES FERRY"}, "geometry": {"type": "Point", "coordinates": [2.504232174035045, 48.8507957926177]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6e3ab8776eef67073a0c6eada93769d852ddb0eb", "fields": {"departement": "94", "stop_lat": 48.84976027932212, "code_postal": "94058", "stop_lon": 2.4991355834688176, "coord": [48.84976027932212, 2.4991355834688176], "stop_id": 3682875, "stop_desc": "60 BIS BOULEVARD ALSACE-LORRAINE - 94058", "stop_name": "AVRON"}, "geometry": {"type": "Point", "coordinates": [2.4991355834688176, 48.84976027932212]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2ca3cdae6644fb3370ce731c8a680e7fb87f9218", "fields": {"departement": "94", "stop_lat": 48.846023625181644, "code_postal": "94052", "stop_lon": 2.490722017077124, "coord": [48.846023625181644, 2.490722017077124], "stop_id": 3682930, "stop_desc": "162-164 BOULEVARD DE STRASBOURG - 94052", "stop_name": "RUE DE PLAISANCE - LYCEE LOUIS ARMAND"}, "geometry": {"type": "Point", "coordinates": [2.490722017077124, 48.846023625181644]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ff8f62a3e4acdec440e7d57f81d76307e5beb534", "fields": {"departement": "93", "stop_lat": 48.85683222647169, "code_postal": "93050", "stop_lon": 2.5301163636868558, "coord": [48.85683222647169, 2.5301163636868558], "stop_id": 3682951, "stop_desc": "FACE 52 AVENUE DU GENERAL DE GAULLE - 93050", "stop_name": "PLACE DE LA RESISTANCE"}, "geometry": {"type": "Point", "coordinates": [2.5301163636868558, 48.85683222647169]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a2b0a73a1e7da5ab16abadebe9f601265a1f1c6b", "fields": {"departement": "93", "stop_lat": 48.85582135471058, "code_postal": "93050", "stop_lon": 2.527184318308966, "coord": [48.85582135471058, 2.527184318308966], "stop_id": 3682949, "stop_desc": "FACE 38 AVENUE DU GENERAL DE GAULLE - 93050", "stop_name": "FOCH - DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.527184318308966, 48.85582135471058]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f2fdf50088946fd7a01a4472c05ebe287f6051ca", "fields": {"departement": "94", "stop_lat": 48.836999404720174, "code_postal": "94052", "stop_lon": 2.476685510906942, "coord": [48.836999404720174, 2.476685510906942], "stop_id": 3682924, "stop_desc": "20 BOULEVARD DE STRASBOURG - 94052", "stop_name": "GENERAL FAIDHERBE"}, "geometry": {"type": "Point", "coordinates": [2.476685510906942, 48.836999404720174]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6ffbf8c71a6931f81b8e145fd02478925c068086", "fields": {"departement": "93", "stop_lat": 48.85283059716511, "code_postal": "93049", "stop_lon": 2.51416708031688, "coord": [48.85283059716511, 2.51416708031688], "stop_id": 3682940, "stop_desc": "BOULEVARD GALLIENI - 93049", "stop_name": "NEUILLY-PLAISANCE RER"}, "geometry": {"type": "Point", "coordinates": [2.51416708031688, 48.85283059716511]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ec273a6ddbe3acf3575bedf2b8ca36014347c3ff", "fields": {"departement": "93", "stop_lat": 48.86277297736101, "code_postal": "93050", "stop_lon": 2.546075924660132, "coord": [48.86277297736101, 2.546075924660132], "stop_id": 3682956, "stop_desc": "2 AVENUE DU MARECHAL LECLERC - 93050", "stop_name": "VILLE EVRARD"}, "geometry": {"type": "Point", "coordinates": [2.546075924660132, 48.86277297736101]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e3891ff87ac461efad8b120b8f49450fe30b8850", "fields": {"departement": "94", "stop_lat": 48.842957047022125, "code_postal": "94052", "stop_lon": 2.4850620796582157, "coord": [48.842957047022125, 2.4850620796582157], "stop_id": 3682929, "stop_desc": "147 BIS BOULEVARD DE STRASBOURG - 94052", "stop_name": "ANQUETIL"}, "geometry": {"type": "Point", "coordinates": [2.4850620796582157, 48.842957047022125]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "33c7b7455130a4c2270988c5ee932e9baa82adda", "fields": {"departement": "94", "stop_lat": 48.8404625428155, "code_postal": "94052", "stop_lon": 2.4817735438608586, "coord": [48.8404625428155, 2.4817735438608586], "stop_id": 3682926, "stop_desc": "100 BOULEVARD DE STRASBOURG - 94052", "stop_name": "PAUL BERT"}, "geometry": {"type": "Point", "coordinates": [2.4817735438608586, 48.8404625428155]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "62c07ddb9fe2bf08aca3891809e475121c633435", "fields": {"departement": "93", "stop_lat": 48.86467957262208, "code_postal": "93050", "stop_lon": 2.555401237355375, "coord": [48.86467957262208, 2.555401237355375], "stop_id": 3682960, "stop_desc": "AVENUE JEAN JAURES - 93050", "stop_name": "L'AVENIR"}, "geometry": {"type": "Point", "coordinates": [2.555401237355375, 48.86467957262208]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "278ca69ffc0de6771756095349028754f3e9c67d", "fields": {"departement": "94", "stop_lat": 48.84887515339162, "code_postal": "94058", "stop_lon": 2.495687441698999, "coord": [48.84887515339162, 2.495687441698999], "stop_id": 3682994, "stop_desc": "20 BOULEVARD ALSACE LORRAINE - 94058", "stop_name": "ROND-POINT DU GENERAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.495687441698999, 48.84887515339162]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0ce3a1dacd9576c08599681b960e631f6003588d", "fields": {"departement": "77", "stop_lat": 48.872435896102694, "code_postal": "77108", "stop_lon": 2.5785952142218123, "coord": [48.872435896102694, 2.5785952142218123], "stop_id": 3682969, "stop_desc": "32 AV DU MARECHAL FOCH - 77108", "stop_name": "PARMENTIER - JULES FERRY"}, "geometry": {"type": "Point", "coordinates": [2.5785952142218123, 48.872435896102694]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "640407954be0ba2d6d372e95a076703e6246fcb2", "fields": {"departement": "77", "stop_lat": 48.87238142021725, "code_postal": "77108", "stop_lon": 2.5788674468620263, "coord": [48.87238142021725, 2.5788674468620263], "stop_id": 3682968, "stop_desc": "AV DU MARECHAL FOCH - 77108", "stop_name": "PARMENTIER - JULES FERRY"}, "geometry": {"type": "Point", "coordinates": [2.5788674468620263, 48.87238142021725]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8951f6bd29e281bbbe7ab6b82a66ab831c92e8bd", "fields": {"departement": "93", "stop_lat": 48.85429380589795, "code_postal": "93050", "stop_lon": 2.5212542273863185, "coord": [48.85429380589795, 2.5212542273863185], "stop_id": 3683000, "stop_desc": "FACE 11 BOULEVARD DU MARECHAL FOCH - 93050", "stop_name": "HELENE BOUCHER"}, "geometry": {"type": "Point", "coordinates": [2.5212542273863185, 48.85429380589795]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "72ddb37b1e2df807eb1d3a3c0720a5099df66bcf", "fields": {"departement": "94", "stop_lat": 48.836999404720174, "code_postal": "94052", "stop_lon": 2.476685510906942, "coord": [48.836999404720174, 2.476685510906942], "stop_id": 3682990, "stop_desc": "20 BOULEVARD DE STRASBOURG - 94052", "stop_name": "GENERAL FAIDHERBE"}, "geometry": {"type": "Point", "coordinates": [2.476685510906942, 48.836999404720174]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b1d0bb016b0ce3044160586ea685e9252051ecdb", "fields": {"departement": "93", "stop_lat": 48.85551623837613, "code_postal": "93050", "stop_lon": 2.526897183997044, "coord": [48.85551623837613, 2.526897183997044], "stop_id": 3683002, "stop_desc": "38 BOULEVARD DU MARECHAL FOCH - 93050", "stop_name": "FOCH - DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.526897183997044, 48.85551623837613]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3034fbb7bc64a9c31523c041ec6d37a182f5af10", "fields": {"departement": "77", "stop_lat": 48.8744492608804, "code_postal": "77108", "stop_lon": 2.5828964158767787, "coord": [48.8744492608804, 2.5828964158767787], "stop_id": 3682970, "stop_desc": "PLACE GASNIER GUY - 77108", "stop_name": "CHELLES - GOURNAY RER"}, "geometry": {"type": "Point", "coordinates": [2.5828964158767787, 48.8744492608804]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4711c5d2f3c8f876ecf749838049a03be17cb6f4", "fields": {"departement": "77", "stop_lat": 48.86893998350323, "code_postal": "77108", "stop_lon": 2.574028725109295, "coord": [48.86893998350323, 2.574028725109295], "stop_id": 3682964, "stop_desc": "1 AVENUE DU MARECHAL FOCH - 77108", "stop_name": "RUE DU PORT"}, "geometry": {"type": "Point", "coordinates": [2.574028725109295, 48.86893998350323]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ade4f278d83f1facdaba3f4fd261188e3892d7e8", "fields": {"departement": "93", "stop_lat": 48.853437480755204, "code_postal": "93050", "stop_lon": 2.5170155851458653, "coord": [48.853437480755204, 2.5170155851458653], "stop_id": 3682999, "stop_desc": "32 BOULEVARD GALLIENI - 93050", "stop_name": "CENTRE BUS"}, "geometry": {"type": "Point", "coordinates": [2.5170155851458653, 48.853437480755204]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "88fa52c8581c79c27e155c693f1af5434861956b", "fields": {"departement": "94", "stop_lat": 48.85164403695081, "code_postal": "94058", "stop_lon": 2.5081571280065345, "coord": [48.85164403695081, 2.5081571280065345], "stop_id": 3682997, "stop_desc": "140 BOULEVARD ALSACE-LORRAINE - 94058", "stop_name": "JOULEAU"}, "geometry": {"type": "Point", "coordinates": [2.5081571280065345, 48.85164403695081]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eb16363c74190e46857d25fa0dae2ec240a23ac0", "fields": {"departement": "94", "stop_lat": 48.84287979631081, "code_postal": "94058", "stop_lon": 2.502790576045101, "coord": [48.84287979631081, 2.502790576045101], "stop_id": 3683461, "stop_desc": "FACE 72BIS AVENUE LEDRU-ROLLIN - 94058", "stop_name": "LEDRU-ROLLIN - GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.502790576045101, 48.84287979631081]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "330853a58e90175a24d094c22370316c35ba47fb", "fields": {"departement": "94", "stop_lat": 48.85253432483068, "code_postal": "94033", "stop_lon": 2.4877859452410003, "coord": [48.85253432483068, 2.4877859452410003], "stop_id": 3683453, "stop_desc": "AVENUE LOUISON BOBET - 94033", "stop_name": "VAL DE FONTENAY RER - LOUISON BOBET"}, "geometry": {"type": "Point", "coordinates": [2.4877859452410003, 48.85253432483068]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "72788cdcf27cde74178d3fe3c957513afda7cbf2", "fields": {"departement": "95", "stop_lat": 49.05043620975625, "code_postal": "95028", "stop_lon": 2.336229343110777, "coord": [49.05043620975625, 2.336229343110777], "stop_id": 4226815, "stop_desc": "110 RUE DE MOISSELLES - 95028", "stop_name": "C.H.S."}, "geometry": {"type": "Point", "coordinates": [2.336229343110777, 49.05043620975625]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "84e78b38b540a153a037271380b5fc88cf39dde6", "fields": {"departement": "95", "stop_lat": 49.0331644830302, "code_postal": "95229", "stop_lon": 2.3489806518185485, "coord": [49.0331644830302, 2.3489806518185485], "stop_id": 4226820, "stop_desc": "FACE 12BIS RUE PAUL FORT - 95229", "stop_name": "RU DE VAUX"}, "geometry": {"type": "Point", "coordinates": [2.3489806518185485, 49.0331644830302]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "832a949e83b31b473c4d0b76003ca7ff95bed867", "fields": {"departement": "95", "stop_lat": 49.02665533927686, "code_postal": "95205", "stop_lon": 2.3672491590753753, "coord": [49.02665533927686, 2.3672491590753753], "stop_id": 4226821, "stop_desc": "10 AVENUE DU MARECHAL FOCH - 95205", "stop_name": "MARECHAL FOCH"}, "geometry": {"type": "Point", "coordinates": [2.3672491590753753, 49.02665533927686]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a0b1eddf0262f8c237ebba50ae80f78775d0b79a", "fields": {"departement": "95", "stop_lat": 49.01544344758993, "code_postal": "95205", "stop_lon": 2.385822902328346, "coord": [49.01544344758993, 2.385822902328346], "stop_id": 4226833, "stop_desc": "6 RUE DE PARIS - 95205", "stop_name": "RUE DE PARIS"}, "geometry": {"type": "Point", "coordinates": [2.385822902328346, 49.01544344758993]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9549d6881bf61458e4e2937091ed81fc16f0414c", "fields": {"departement": "95", "stop_lat": 49.032642106436704, "code_postal": "95229", "stop_lon": 2.3577544212689934, "coord": [49.032642106436704, 2.3577544212689934], "stop_id": 4226842, "stop_desc": "36 ROUTE DE DOMONT - 95229", "stop_name": "REIMS - DOMONT"}, "geometry": {"type": "Point", "coordinates": [2.3577544212689934, 49.032642106436704]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5608f8cec6ded85820e503fa167209b3f4b9875b", "fields": {"departement": "95", "stop_lat": 48.998794088785566, "code_postal": "95585", "stop_lon": 2.3798935474161667, "coord": [48.998794088785566, 2.3798935474161667], "stop_id": 4230041, "stop_desc": "1 PLACE DU SOUVENIR FRANCAIS - 95585", "stop_name": "PLACE DU SOUVENIR FRANCAIS"}, "geometry": {"type": "Point", "coordinates": [2.3798935474161667, 48.998794088785566]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "30c1f29c60d141cc5c87e306fbb1258ac8bfe9d2", "fields": {"departement": "95", "stop_lat": 48.991552816451964, "code_postal": "95585", "stop_lon": 2.3746301578176694, "coord": [48.991552816451964, 2.3746301578176694], "stop_id": 4230050, "stop_desc": "FACE 4 AVENUE DIVISION LECLERC - 95585", "stop_name": "THEODORE BULLIER"}, "geometry": {"type": "Point", "coordinates": [2.3746301578176694, 48.991552816451964]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "83e3a8ac436f6fa431a478514d3a797a9d6d8670", "fields": {"departement": "95", "stop_lat": 48.989332563626846, "code_postal": "95585", "stop_lon": 2.3765129504983147, "coord": [48.989332563626846, 2.3765129504983147], "stop_id": 4230052, "stop_desc": "BOULEVARD FRANCOIS MITTERRAND - 95585", "stop_name": "SOUS-PREFECTURE"}, "geometry": {"type": "Point", "coordinates": [2.3765129504983147, 48.989332563626846]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a49d1c23705af1912d3d211b5983fc792315b507", "fields": {"departement": "95", "stop_lat": 48.986726426015004, "code_postal": "95585", "stop_lon": 2.3767157880623673, "coord": [48.986726426015004, 2.3767157880623673], "stop_id": 4230053, "stop_desc": "VOIE MY PLACE - 95585", "stop_name": "MY PLACE"}, "geometry": {"type": "Point", "coordinates": [2.3767157880623673, 48.986726426015004]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cf3494ddee4ef0fbe6226cee038054147f31f72d", "fields": {"departement": "95", "stop_lat": 48.980410089723726, "code_postal": "95585", "stop_lon": 2.3730247424784547, "coord": [48.980410089723726, 2.3730247424784547], "stop_id": 4230059, "stop_desc": "FACE 87 AVENUE PAUL VALERY - 95585", "stop_name": "LOUIS LEBRUN"}, "geometry": {"type": "Point", "coordinates": [2.3730247424784547, 48.980410089723726]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c23e975b42228b88846ca3feee7f8288bb78028e", "fields": {"departement": "95", "stop_lat": 48.977975246651994, "code_postal": "95585", "stop_lon": 2.371302900447818, "coord": [48.977975246651994, 2.371302900447818], "stop_id": 4230062, "stop_desc": "BOULEVARD ALBERT CAMUS - 95585", "stop_name": "LES CHOLETTES"}, "geometry": {"type": "Point", "coordinates": [2.371302900447818, 48.977975246651994]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8a468fae8ed95ee4113b257d630f0cbaf76b8147", "fields": {"departement": "95", "stop_lat": 48.97577875848199, "code_postal": "95585", "stop_lon": 2.3826458295112913, "coord": [48.97577875848199, 2.3826458295112913], "stop_id": 4230072, "stop_desc": "21 AVENUE AUGUSTE PERRET - 95585", "stop_name": "MAURICE RAVEL"}, "geometry": {"type": "Point", "coordinates": [2.3826458295112913, 48.97577875848199]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "45d8513e336804b31ed9639780799ac7beb53c0d", "fields": {"departement": "95", "stop_lat": 48.97832069546756, "code_postal": "95585", "stop_lon": 2.3858290094265384, "coord": [48.97832069546756, 2.3858290094265384], "stop_id": 4230103, "stop_desc": "AVENUE PAUL VALERY - 95585", "stop_name": "LOCHERES"}, "geometry": {"type": "Point", "coordinates": [2.3858290094265384, 48.97832069546756]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d484da8d65ad5243fee1e3b8942a143fe0c6c569", "fields": {"departement": "95", "stop_lat": 48.977222409393406, "code_postal": "95268", "stop_lon": 2.3903603943501546, "coord": [48.977222409393406, 2.3903603943501546], "stop_id": 4230105, "stop_desc": "PISTE GARE ROUTIERE - 95268", "stop_name": "GARGES - SARCELLES RER"}, "geometry": {"type": "Point", "coordinates": [2.3903603943501546, 48.977222409393406]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "66d44ddabbe9d476d5b6735063ad3bb2c37fe0ca", "fields": {"departement": "95", "stop_lat": 49.011019041292165, "code_postal": "95585", "stop_lon": 2.3683739325781117, "coord": [49.011019041292165, 2.3683739325781117], "stop_id": 4238635, "stop_desc": "FACE 95 RUE GABRIEL PERI - 95585", "stop_name": "BOIS D'ECOUEN"}, "geometry": {"type": "Point", "coordinates": [2.3683739325781117, 49.011019041292165]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "45929d5a0868bef46822d18bec20723f59c019fd", "fields": {"departement": "95", "stop_lat": 49.005733947663856, "code_postal": "95585", "stop_lon": 2.3725232038314026, "coord": [49.005733947663856, 2.3725232038314026], "stop_id": 4238638, "stop_desc": "FACE 58 RUE GABRIEL PERI - 95585", "stop_name": "BEL AIR - GOSSEROTS"}, "geometry": {"type": "Point", "coordinates": [2.3725232038314026, 49.005733947663856]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2d926b2d767901a704f93705f5e60f3ca40ca043", "fields": {"departement": "95", "stop_lat": 48.97950042495415, "code_postal": "95585", "stop_lon": 2.379249633233158, "coord": [48.97950042495415, 2.379249633233158], "stop_id": 4238662, "stop_desc": "48 AVENUE PAUL VALERY - 95585", "stop_name": "PAUL VALERY"}, "geometry": {"type": "Point", "coordinates": [2.379249633233158, 48.97950042495415]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3576229b204871bb7a90e0eb104275b5c20c4354", "fields": {"departement": "95", "stop_lat": 48.97832069546756, "code_postal": "95585", "stop_lon": 2.3858290094265384, "coord": [48.97832069546756, 2.3858290094265384], "stop_id": 4238663, "stop_desc": "AVENUE PAUL VALERY - 95585", "stop_name": "LOCHERES"}, "geometry": {"type": "Point", "coordinates": [2.3858290094265384, 48.97832069546756]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fb1005e7819cea5881619db91308f40dd75f4775", "fields": {"departement": "95", "stop_lat": 48.9734622776144, "code_postal": "95268", "stop_lon": 2.3982194329211333, "coord": [48.9734622776144, 2.3982194329211333], "stop_id": 4238669, "stop_desc": "AVENUE FRANCOIS MITTERRAND - 95268", "stop_name": "DE GAULLE - MITTERRAND"}, "geometry": {"type": "Point", "coordinates": [2.3982194329211333, 48.9734622776144]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5828a8bec72c70d87f8b0f3396d5f8d30daf0f91", "fields": {"departement": "95", "stop_lat": 48.96910912624489, "code_postal": "95268", "stop_lon": 2.404984563861394, "coord": [48.96910912624489, 2.404984563861394], "stop_id": 4238675, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 95268", "stop_name": "LINO VENTURA"}, "geometry": {"type": "Point", "coordinates": [2.404984563861394, 48.96910912624489]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4177a961a8895e2702f6356c8fc402a2dfb0b33a", "fields": {"departement": "95", "stop_lat": 48.96599684793511, "code_postal": "95268", "stop_lon": 2.4099350400838073, "coord": [48.96599684793511, 2.4099350400838073], "stop_id": 4238678, "stop_desc": "AVENUE AMBROISE CROIZAT - 95268", "stop_name": "PLACE DU 19 MARS 1962"}, "geometry": {"type": "Point", "coordinates": [2.4099350400838073, 48.96599684793511]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b5cc4623dea7de47311145a1fa46fbc82c448e77", "fields": {"departement": "95", "stop_lat": 48.96337124983975, "code_postal": "95268", "stop_lon": 2.412360733231345, "coord": [48.96337124983975, 2.412360733231345], "stop_id": 4238679, "stop_desc": "FACE 47 AVENUE AMBROISE CROIZAT - 95268", "stop_name": "DECLEMY"}, "geometry": {"type": "Point", "coordinates": [2.412360733231345, 48.96337124983975]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "65620ef70e4a77aa86547565f27ccaaba06952a7", "fields": {"departement": "93", "stop_lat": 48.956772558782895, "code_postal": "93030", "stop_lon": 2.4161994614082407, "coord": [48.956772558782895, 2.4161994614082407], "stop_id": 4238682, "stop_desc": "AVENUE AMBROISE CROIZAT - 93030", "stop_name": "LEO LAGRANGE"}, "geometry": {"type": "Point", "coordinates": [2.4161994614082407, 48.956772558782895]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "687fad5fe1b21c1dbf674dce65978a9df3b5110c", "fields": {"departement": "93", "stop_lat": 48.949700610015846, "code_postal": "93030", "stop_lon": 2.4152881329205003, "coord": [48.949700610015846, 2.4152881329205003], "stop_id": 4238688, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 93030", "stop_name": "ALBERT CHARDAVOINE"}, "geometry": {"type": "Point", "coordinates": [2.4152881329205003, 48.949700610015846]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c8d77acd580f15ac10fbff8be2fadc3327e5dac3", "fields": {"departement": "93", "stop_lat": 48.94115921809414, "code_postal": "93030", "stop_lon": 2.4211141860163914, "coord": [48.94115921809414, 2.4211141860163914], "stop_id": 4238689, "stop_desc": "AVENUE MARECHAL LECLERC - 93030", "stop_name": "LA COMETE"}, "geometry": {"type": "Point", "coordinates": [2.4211141860163914, 48.94115921809414]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7a1ee4131654bef4cd55b8dafe8aecdabc59a0fd", "fields": {"departement": "93", "stop_lat": 48.93692137629533, "code_postal": "93013", "stop_lon": 2.428009787953228, "coord": [48.93692137629533, 2.428009787953228], "stop_id": 4238694, "stop_desc": "88 AVENUE DE LA DIVISION LECLERC - 93013", "stop_name": "PIERRE CURIE"}, "geometry": {"type": "Point", "coordinates": [2.428009787953228, 48.93692137629533]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7c3db80f0ef8449eeb4a516c0606e8c564cd2cad", "fields": {"departement": "93", "stop_lat": 48.93285336721684, "code_postal": "93013", "stop_lon": 2.4239242493787803, "coord": [48.93285336721684, 2.4239242493787803], "stop_id": 4238698, "stop_desc": "2 AVENUE DE LA DIVISION LECLERC - 93013", "stop_name": "JEAN JAURES - DIVISION LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.4239242493787803, 48.93285336721684]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "17380fa2408f739e494019fba1c9dfada2559e36", "fields": {"departement": "95", "stop_lat": 48.994726805411624, "code_postal": "95539", "stop_lon": 2.368405099191321, "coord": [48.994726805411624, 2.368405099191321], "stop_id": 4238703, "stop_desc": "62 BD DE LA GARE - 95539", "stop_name": "GARE DE SARCELLES-SAINT-BRICE"}, "geometry": {"type": "Point", "coordinates": [2.368405099191321, 48.994726805411624]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e2644bf955b6fc15f18576f921feb285d712f6d9", "fields": {"departement": "95", "stop_lat": 48.99361122312051, "code_postal": "95585", "stop_lon": 2.3729382789699915, "coord": [48.99361122312051, 2.3729382789699915], "stop_id": 4238705, "stop_desc": "FACE 17 RUE CARNOT - 95585", "stop_name": "CARNOT"}, "geometry": {"type": "Point", "coordinates": [2.3729382789699915, 48.99361122312051]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "35bf8c61bfb9b654a60c8739790577a28e39fd5b", "fields": {"departement": "95", "stop_lat": 48.983472205531655, "code_postal": "95585", "stop_lon": 2.3799628396528343, "coord": [48.983472205531655, 2.3799628396528343], "stop_id": 4238711, "stop_desc": "AVENUE PAUL LANGEVIN - 95585", "stop_name": "PISCINE"}, "geometry": {"type": "Point", "coordinates": [2.3799628396528343, 48.983472205531655]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b8e3487a5364f2ddf0a19d2ca9600bf078c544c3", "fields": {"departement": "95", "stop_lat": 48.97950042495415, "code_postal": "95585", "stop_lon": 2.379249633233158, "coord": [48.97950042495415, 2.379249633233158], "stop_id": 4238715, "stop_desc": "48 AVENUE PAUL VALERY - 95585", "stop_name": "PAUL VALERY"}, "geometry": {"type": "Point", "coordinates": [2.379249633233158, 48.97950042495415]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "22666c5396158696e271238133d5eb9ff965379b", "fields": {"departement": "93", "stop_lat": 48.9519013403749, "code_postal": "93030", "stop_lon": 2.4168333559747754, "coord": [48.9519013403749, 2.4168333559747754], "stop_id": 4238739, "stop_desc": "6 AVENUE LOUIS LARIVIERE - 93030", "stop_name": "PLACE DU 16 AOUT 1943"}, "geometry": {"type": "Point", "coordinates": [2.4168333559747754, 48.9519013403749]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "28393d232fcb10aa8a57b527fb91eeed41e1639d", "fields": {"departement": "93", "stop_lat": 48.93894577733613, "code_postal": "93013", "stop_lon": 2.4248484457636605, "coord": [48.93894577733613, 2.4248484457636605], "stop_id": 4238745, "stop_desc": "34 AVENUE KENNEDY - 93013", "stop_name": "CIMETIERE DU BOURGET"}, "geometry": {"type": "Point", "coordinates": [2.4248484457636605, 48.93894577733613]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "800b05519ab5aeca829e178597d90acc7b630182", "fields": {"departement": "93", "stop_lat": 48.93692137629533, "code_postal": "93013", "stop_lon": 2.428009787953228, "coord": [48.93692137629533, 2.428009787953228], "stop_id": 4238747, "stop_desc": "88 AVENUE DE LA DIVISION LECLERC - 93013", "stop_name": "PIERRE CURIE"}, "geometry": {"type": "Point", "coordinates": [2.428009787953228, 48.93692137629533]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "115b01bcb12b8a6eebe5611850beca055bbcefc5", "fields": {"departement": "95", "stop_lat": 48.971575049991486, "code_postal": "95268", "stop_lon": 2.3983127619651223, "coord": [48.971575049991486, 2.3983127619651223], "stop_id": 4238774, "stop_desc": "RUE LE NOTRE - 95268", "stop_name": "HOTEL DE VILLE DE GARGES-LES-GONESSE"}, "geometry": {"type": "Point", "coordinates": [2.3983127619651223, 48.971575049991486]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f1a914d033c004cab51d6964b5a87af8d24546f1", "fields": {"departement": "95", "stop_lat": 48.97030717949008, "code_postal": "95268", "stop_lon": 2.399785469428075, "coord": [48.97030717949008, 2.399785469428075], "stop_id": 4238775, "stop_desc": "RUE JEAN GOUJON - 95268", "stop_name": "LES MURIERS"}, "geometry": {"type": "Point", "coordinates": [2.399785469428075, 48.97030717949008]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "29ad00a653169d1920ce64dae6eee90a6ea53160", "fields": {"departement": "95", "stop_lat": 48.96910912624489, "code_postal": "95268", "stop_lon": 2.404984563861394, "coord": [48.96910912624489, 2.404984563861394], "stop_id": 4238776, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 95268", "stop_name": "LINO VENTURA"}, "geometry": {"type": "Point", "coordinates": [2.404984563861394, 48.96910912624489]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "728c8d56d5a1915fb2f633eaac3dba95cad838ed", "fields": {"departement": "93", "stop_lat": 48.95610771523027, "code_postal": "93030", "stop_lon": 2.4159391678675153, "coord": [48.95610771523027, 2.4159391678675153], "stop_id": 4238779, "stop_desc": "FACE 14 AVENUE AMBROISE CROIZAT - 93030", "stop_name": "LEO LAGRANGE"}, "geometry": {"type": "Point", "coordinates": [2.4159391678675153, 48.95610771523027]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e7b4d1f37acf4f1990d1941f2c03082e9139aafe", "fields": {"departement": "93", "stop_lat": 48.9517037960367, "code_postal": "93030", "stop_lon": 2.416587439952859, "coord": [48.9517037960367, 2.416587439952859], "stop_id": 4238781, "stop_desc": "AVENUE LOUIS LARIVIERE - 93030", "stop_name": "PLACE DU 16 AOUT 1943"}, "geometry": {"type": "Point", "coordinates": [2.416587439952859, 48.9517037960367]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3ca05b2c44c3d625d418ba4e7cd794744ef2d3b5", "fields": {"departement": "93", "stop_lat": 48.949359584636994, "code_postal": "93030", "stop_lon": 2.414564459753071, "coord": [48.949359584636994, 2.414564459753071], "stop_id": 4238782, "stop_desc": "14 AVENUE DU GENERAL DE GAULLE - 93030", "stop_name": "ALBERT CHARDAVOINE"}, "geometry": {"type": "Point", "coordinates": [2.414564459753071, 48.949359584636994]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1ba694ee6648d33c8352bbbdf4b0656f3381678e", "fields": {"departement": "93", "stop_lat": 48.94115921809414, "code_postal": "93030", "stop_lon": 2.4211141860163914, "coord": [48.94115921809414, 2.4211141860163914], "stop_id": 4238783, "stop_desc": "AVENUE MARECHAL LECLERC - 93030", "stop_name": "LA COMETE"}, "geometry": {"type": "Point", "coordinates": [2.4211141860163914, 48.94115921809414]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "288fbbb89e0dbf3286cad289d95f0400d4db1726", "fields": {"departement": "92", "stop_lat": 48.92762933986601, "code_postal": "92025", "stop_lon": 2.2470204972043137, "coord": [48.92762933986601, 2.2470204972043137], "stop_id": 4274231, "stop_desc": "0 R PAUL BERT - 92025", "stop_name": "AUDRA"}, "geometry": {"type": "Point", "coordinates": [2.2470204972043137, 48.92762933986601]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7f09d819dafa88add36a67dfe76af5fa1c71d5fb", "fields": {"departement": "92", "stop_lat": 48.925427804368034, "code_postal": "92025", "stop_lon": 2.247365287963375, "coord": [48.925427804368034, 2.247365287963375], "stop_id": 4274234, "stop_desc": "46 BD EDGAR QUINET - 92025", "stop_name": "LES RENOUILLERS"}, "geometry": {"type": "Point", "coordinates": [2.247365287963375, 48.925427804368034]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e6c94b6a68b6241ce5a02f6c35cc3530d2ee4de4", "fields": {"departement": "92", "stop_lat": 48.92322901063561, "code_postal": "92025", "stop_lon": 2.251446755100315, "coord": [48.92322901063561, 2.251446755100315], "stop_id": 4274236, "stop_desc": "14 BIS RUE GABRIEL PERI - 92025", "stop_name": "EGLISE DE COLOMBES"}, "geometry": {"type": "Point", "coordinates": [2.251446755100315, 48.92322901063561]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "244a5bdfe3ac8e1b65fc9e1208ce418babe1eec6", "fields": {"departement": "92", "stop_lat": 48.92277819772375, "code_postal": "92025", "stop_lon": 2.262630259550592, "coord": [48.92277819772375, 2.262630259550592], "stop_id": 4274244, "stop_desc": "FACE 48 RUE HOCHE - 92025", "stop_name": "VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.262630259550592, 48.92277819772375]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "165abac3d931b94a03cf13aba1802686dcd96716", "fields": {"departement": "92", "stop_lat": 48.917265532728386, "code_postal": "92009", "stop_lon": 2.271706178447262, "coord": [48.917265532728386, 2.271706178447262], "stop_id": 4274247, "stop_desc": "61-59 RUE VICTOR HUGO - 92009", "stop_name": "AMIRAL COURBET"}, "geometry": {"type": "Point", "coordinates": [2.271706178447262, 48.917265532728386]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9384ee20e10adf7d25849910733deba0f505e7d3", "fields": {"departement": "92", "stop_lat": 48.90514612550514, "code_postal": "92009", "stop_lon": 2.2633509301777917, "coord": [48.90514612550514, 2.2633509301777917], "stop_id": 4274261, "stop_desc": "17 RUE MICHEL RICARD - 92009", "stop_name": "MICHEL RICARD"}, "geometry": {"type": "Point", "coordinates": [2.2633509301777917, 48.90514612550514]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4795877b88a458539c464f063f17e33a5bf934f1", "fields": {"departement": "92", "stop_lat": 48.90535287880413, "code_postal": "92009", "stop_lon": 2.2634324328113244, "coord": [48.90535287880413, 2.2634324328113244], "stop_id": 4274262, "stop_desc": "RUE MICHEL RICARD - 92009", "stop_name": "MICHEL RICARD"}, "geometry": {"type": "Point", "coordinates": [2.2634324328113244, 48.90535287880413]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "26c2d1922115d644674ce704e49f866384f87e77", "fields": {"departement": "92", "stop_lat": 48.90322593405253, "code_postal": "92026", "stop_lon": 2.2684385398064264, "coord": [48.90322593405253, 2.2684385398064264], "stop_id": 4274263, "stop_desc": "49-53 BOULEVARD GEORGES CLEMENCEAU - 92026", "stop_name": "PLACE DE BELGIQUE"}, "geometry": {"type": "Point", "coordinates": [2.2684385398064264, 48.90322593405253]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a5b4ea51ba06f470c69ab8955244884a34bd933f", "fields": {"departement": "92", "stop_lat": 48.907969599336234, "code_postal": "92004", "stop_lon": 2.265869120650393, "coord": [48.907969599336234, 2.265869120650393], "stop_id": 4274270, "stop_desc": "42 AV CHEVREUL - 92004", "stop_name": "CHEVREUL"}, "geometry": {"type": "Point", "coordinates": [2.265869120650393, 48.907969599336234]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "13ea1352cfb2fe7278c0031c0e8469956d071b23", "fields": {"departement": "93", "stop_lat": 48.95002480024804, "code_postal": "93007", "stop_lon": 2.457709966646667, "coord": [48.95002480024804, 2.457709966646667], "stop_id": 4274284, "stop_desc": "AVENUE DESCARTES - 93007", "stop_name": "CIMETIERE DU BLANC-MESNIL"}, "geometry": {"type": "Point", "coordinates": [2.457709966646667, 48.95002480024804]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c463ef72582d4de7dad2dd787b504a9dc4f9d9da", "fields": {"departement": "93", "stop_lat": 48.94775084226808, "code_postal": "93007", "stop_lon": 2.44878143702231, "coord": [48.94775084226808, 2.44878143702231], "stop_id": 4274287, "stop_desc": "ALLEE D'ALTRINCHAM - 93007", "stop_name": "ALTRINCHAM - LENINE"}, "geometry": {"type": "Point", "coordinates": [2.44878143702231, 48.94775084226808]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ad606fbb0cf2fda8c942d87150cd0748943dd52d", "fields": {"departement": "93", "stop_lat": 48.947856114733135, "code_postal": "93007", "stop_lon": 2.4514968442269582, "coord": [48.947856114733135, 2.4514968442269582], "stop_id": 4274288, "stop_desc": "RUE MAURICE AUDIN - 93007", "stop_name": "ALTRINCHAM"}, "geometry": {"type": "Point", "coordinates": [2.4514968442269582, 48.947856114733135]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ad683dd54e4d14652b9b3cba82d32061ea8ea2c3", "fields": {"departement": "93", "stop_lat": 48.94898407577552, "code_postal": "93007", "stop_lon": 2.455974703488172, "coord": [48.94898407577552, 2.455974703488172], "stop_id": 4274289, "stop_desc": "AVENUE DES COSMONAUTES - 93007", "stop_name": "COSMONAUTES"}, "geometry": {"type": "Point", "coordinates": [2.455974703488172, 48.94898407577552]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "773dd4d8c5f281991c50e38e4362457e01e998b4", "fields": {"departement": "93", "stop_lat": 48.93579014936311, "code_postal": "93029", "stop_lon": 2.4572676250925753, "coord": [48.93579014936311, 2.4572676250925753], "stop_id": 4274302, "stop_desc": "250 RUE ANATOLE FRANCE - 93029", "stop_name": "ROGER SALOMON"}, "geometry": {"type": "Point", "coordinates": [2.4572676250925753, 48.93579014936311]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bafa325c9b9ec6e1cc566a2573910957cd1f9de8", "fields": {"departement": "93", "stop_lat": 48.929220726732375, "code_postal": "93029", "stop_lon": 2.4572796796446728, "coord": [48.929220726732375, 2.4572796796446728], "stop_id": 4274313, "stop_desc": "FACE 26 RUE VICTOR HAUSSONVILLE - 93029", "stop_name": "EMILE DESPREZ"}, "geometry": {"type": "Point", "coordinates": [2.4572796796446728, 48.929220726732375]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4bfbe9c6abe311991595cf5b256b3fd988bfc55c", "fields": {"departement": "93", "stop_lat": 48.94761553926856, "code_postal": "93007", "stop_lon": 2.4585093604450625, "coord": [48.94761553926856, 2.4585093604450625], "stop_id": 4274314, "stop_desc": "AVENUE DES COSMONAUTES - 93007", "stop_name": "ROND-POINT DE LA DIVISION LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.4585093604450625, 48.94761553926856]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3784dedfb0acc8b240b29279246d9ed671617dd5", "fields": {"departement": "94", "stop_lat": 48.75521709399899, "code_postal": "94034", "stop_lon": 2.313112568636334, "coord": [48.75521709399899, 2.313112568636334], "stop_id": 4274392, "stop_desc": "72 BD PASTEUR - 94034", "stop_name": "YVON - PASTEUR"}, "geometry": {"type": "Point", "coordinates": [2.313112568636334, 48.75521709399899]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9aecf3e6fc9fc32610c376aa43956266162294b2", "fields": {"departement": "94", "stop_lat": 48.74987972944154, "code_postal": "94034", "stop_lon": 2.3231324501238246, "coord": [48.74987972944154, 2.3231324501238246], "stop_id": 4274395, "stop_desc": "FACE 47-49 AV DU PARC DES SPORTS - 94034", "stop_name": "THIBAUDES"}, "geometry": {"type": "Point", "coordinates": [2.3231324501238246, 48.74987972944154]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d538c39d87264fde0b8e9a5c49f4c280901ebe34", "fields": {"departement": "94", "stop_lat": 48.77068778511185, "code_postal": "94038", "stop_lon": 2.3290009485512337, "coord": [48.77068778511185, 2.3290009485512337], "stop_id": 4274405, "stop_desc": "RUE DE CHALAIS - 94038", "stop_name": "BLONDEAUX - ECOLES"}, "geometry": {"type": "Point", "coordinates": [2.3290009485512337, 48.77068778511185]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f4faa8d4e26d1c2aa119a2c6c4e4e5045b69e485", "fields": {"departement": "94", "stop_lat": 48.77720420688661, "code_postal": "94038", "stop_lon": 2.330645426735226, "coord": [48.77720420688661, 2.330645426735226], "stop_id": 4274409, "stop_desc": "FACE 16-18 AVENUE JULES GRAVEREAUX - 94038", "stop_name": "COMMISSARIAT DE L'HAY-LES-ROSES"}, "geometry": {"type": "Point", "coordinates": [2.330645426735226, 48.77720420688661]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6ef663ac1f6b24cf97262f04bdb6c32f7c645438", "fields": {"departement": "94", "stop_lat": 48.780529879484185, "code_postal": "94038", "stop_lon": 2.3412667237024913, "coord": [48.780529879484185, 2.3412667237024913], "stop_id": 4274413, "stop_desc": "32 AVENUE DU GENERAL DE GAULLE - 94038", "stop_name": "DE GAULLE - GOUNOD - TABANOU"}, "geometry": {"type": "Point", "coordinates": [2.3412667237024913, 48.780529879484185]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a208b25f45e6d5c59210e107269f7283f1956b79", "fields": {"departement": "94", "stop_lat": 48.774588331216236, "code_postal": "94038", "stop_lon": 2.348663901972049, "coord": [48.774588331216236, 2.348663901972049], "stop_id": 4274419, "stop_desc": "FACE 83 R DE CHEVILLY - 94038", "stop_name": "CHEVILLY - DAHLIAS"}, "geometry": {"type": "Point", "coordinates": [2.348663901972049, 48.774588331216236]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9e905cda63e4cfbb7d600222f745a75b7f6d55d0", "fields": {"departement": "91", "stop_lat": 48.72991364522915, "code_postal": "91479", "stop_lon": 2.3680290369907837, "coord": [48.72991364522915, 2.3680290369907837], "stop_id": 4284898, "stop_desc": "PONT 14 - 91479", "stop_name": "AEROPORT D'ORLY"}, "geometry": {"type": "Point", "coordinates": [2.3680290369907837, 48.72991364522915]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "91672dd272789019299f913b33a1ce2eca766ff3", "fields": {"departement": "94", "stop_lat": 48.7335079903386, "code_postal": "94054", "stop_lon": 2.3716183583147905, "coord": [48.7335079903386, 2.3716183583147905], "stop_id": 4284900, "stop_desc": "AVENUE DE L'UNION - 94054", "stop_name": "COEUR D'ORLY"}, "geometry": {"type": "Point", "coordinates": [2.3716183583147905, 48.7335079903386]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dee479c51faa990b438e8d32c6955ca9857d168a", "fields": {"departement": "94", "stop_lat": 48.74658088759913, "code_postal": "94065", "stop_lon": 2.3527351341785154, "coord": [48.74658088759913, 2.3527351341785154], "stop_id": 4284909, "stop_desc": "6 RUE TRAVERSIERE - 94065", "stop_name": "ROBERT SCHUMAN (PARC SILIC CENTRE)"}, "geometry": {"type": "Point", "coordinates": [2.3527351341785154, 48.74658088759913]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cad53a171d9080095daa507a0968f3d0ce25e1a8", "fields": {"departement": "94", "stop_lat": 48.762837717200874, "code_postal": "94021", "stop_lon": 2.367164828732289, "coord": [48.762837717200874, 2.367164828732289], "stop_id": 4284920, "stop_desc": "20 AVENUE DE LA REPUBLIQUE - 94021", "stop_name": "AUGUSTE PERRET (CIMETIERE PARISIEN)"}, "geometry": {"type": "Point", "coordinates": [2.367164828732289, 48.762837717200874]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e53a93a63179a04f85097ccf35775bb634ebdb7a", "fields": {"departement": "94", "stop_lat": 48.76829332558924, "code_postal": "94021", "stop_lon": 2.3677934294587164, "coord": [48.76829332558924, 2.3677934294587164], "stop_id": 4284931, "stop_desc": "AVENUE DE STALINGRAD - 94021", "stop_name": "BRETAGNE"}, "geometry": {"type": "Point", "coordinates": [2.3677934294587164, 48.76829332558924]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2bb0cca2efb7fd71ddc6564d6db822a9ea402890", "fields": {"departement": "94", "stop_lat": 48.81017914664677, "code_postal": "94043", "stop_lon": 2.357938719977963, "coord": [48.81017914664677, 2.357938719977963], "stop_id": 4293172, "stop_desc": "78 R DU GENERAL LECLERC - 94043", "stop_name": "LECLERC - THOMAS"}, "geometry": {"type": "Point", "coordinates": [2.357938719977963, 48.81017914664677]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "004e025de443217c530cef3bbb63a1520151a455", "fields": {"departement": "94", "stop_lat": 48.809208018958664, "code_postal": "94043", "stop_lon": 2.360374105412841, "coord": [48.809208018958664, 2.360374105412841], "stop_id": 4293173, "stop_desc": "2-4 R JEAN MONNET - 94043", "stop_name": "ESPACE CULTUREL ANDRE MALRAUX"}, "geometry": {"type": "Point", "coordinates": [2.360374105412841, 48.809208018958664]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5e9ee4d89cd41b869b9f03532cea08e222843515", "fields": {"departement": "94", "stop_lat": 48.80558634105472, "code_postal": "94043", "stop_lon": 2.3582090243525666, "coord": [48.80558634105472, 2.3582090243525666], "stop_id": 4293175, "stop_desc": "16-16BIS BOULEVARD CHASTENET DE GERY - 94043", "stop_name": "CHASTENET DE GERY"}, "geometry": {"type": "Point", "coordinates": [2.3582090243525666, 48.80558634105472]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "04537dab8f13b8fab00c56affd2dbd452deadba0", "fields": {"departement": "94", "stop_lat": 48.79609578933776, "code_postal": "94076", "stop_lon": 2.354450426477802, "coord": [48.79609578933776, 2.354450426477802], "stop_id": 4293181, "stop_desc": "76 R MARCEL GROSMENIL - 94076", "stop_name": "VERDUN - GROSMENIL"}, "geometry": {"type": "Point", "coordinates": [2.354450426477802, 48.79609578933776]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bb0260c03098100fbe30e1307db559919a27959e", "fields": {"departement": "94", "stop_lat": 48.80811367950232, "code_postal": "94003", "stop_lon": 2.3329819624156967, "coord": [48.80811367950232, 2.3329819624156967], "stop_id": 4293196, "stop_desc": "32-34 AVENUE LAPLACE - 94003", "stop_name": "LAPLACE RER."}, "geometry": {"type": "Point", "coordinates": [2.3329819624156967, 48.80811367950232]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "44e18f1f73ca0be4b74d421223d13b6ad05460e5", "fields": {"departement": "94", "stop_lat": 48.807763042026984, "code_postal": "94003", "stop_lon": 2.330519072171777, "coord": [48.807763042026984, 2.330519072171777], "stop_id": 4293197, "stop_desc": "AV DU DOCTEUR DURAND - 94003", "stop_name": "DOCTEUR DURAND"}, "geometry": {"type": "Point", "coordinates": [2.330519072171777, 48.807763042026984]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "762b2ff8051d72b3dbad0c01e2f19b5187205ad7", "fields": {"departement": "94", "stop_lat": 48.792879362288005, "code_postal": "94016", "stop_lon": 2.3357991164731167, "coord": [48.792879362288005, 2.3357991164731167], "stop_id": 4293208, "stop_desc": "FACE 14 AV LOUIS GEORGEON - 94016", "stop_name": "PLACE JACQUES CARAT - THEATRE"}, "geometry": {"type": "Point", "coordinates": [2.3357991164731167, 48.792879362288005]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7b004aa4c95c2895bce949ae9ae3864ceb38a1cd", "fields": {"departement": "94", "stop_lat": 48.78697431225155, "code_postal": "94016", "stop_lon": 2.337363493424475, "coord": [48.78697431225155, 2.337363493424475], "stop_id": 4293213, "stop_desc": "80 AV LEON BLUM - 94016", "stop_name": "BLUM - SAUSSAIES"}, "geometry": {"type": "Point", "coordinates": [2.337363493424475, 48.78697431225155]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "edb7e67d0c8a6f30c6773c9da3da1db6b871575d", "fields": {"departement": "94", "stop_lat": 48.80527304622148, "code_postal": "94003", "stop_lon": 2.3256346130653758, "coord": [48.80527304622148, 2.3256346130653758], "stop_id": 4293221, "stop_desc": "77-79 AVENUE ARISTIDE BRIAND - 94003", "stop_name": "CROIX D'ARCUEIL"}, "geometry": {"type": "Point", "coordinates": [2.3256346130653758, 48.80527304622148]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1397c7327ef6466f4fa730c1b0dd17cb9e2fd523", "fields": {"departement": "75", "stop_lat": 48.88406032096609, "code_postal": "75117", "stop_lon": 2.296781552557011, "coord": [48.88406032096609, 2.296781552557011], "stop_id": 4298517, "stop_desc": "95-97 AVENUE NIEL - 75117", "stop_name": "PEREIRE - MARECHAL JUIN"}, "geometry": {"type": "Point", "coordinates": [2.296781552557011, 48.88406032096609]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a0ff907890473074a1c3484f712e9a07127da74e", "fields": {"departement": "91", "stop_lat": 48.72284681621443, "code_postal": "91377", "stop_lon": 2.2618303676799454, "coord": [48.72284681621443, 2.2618303676799454], "stop_id": 4314739, "stop_desc": "8-10 AVENUE RAMOLFO GARNIER - 91377", "stop_name": "RUE DE PARIS"}, "geometry": {"type": "Point", "coordinates": [2.2618303676799454, 48.72284681621443]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f4445d13f3d6cc5a2617d19b89413aec88c4a10c", "fields": {"departement": "91", "stop_lat": 48.71895856592258, "code_postal": "91377", "stop_lon": 2.2679488324049153, "coord": [48.71895856592258, 2.2679488324049153], "stop_id": 4314743, "stop_desc": "17 RUE AMPERE - 91377", "stop_name": "CIMETIERE DE MASSY"}, "geometry": {"type": "Point", "coordinates": [2.2679488324049153, 48.71895856592258]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a05148ce489f3d77c6736316fee54c7f3d70da39", "fields": {"departement": "91", "stop_lat": 48.72419948793552, "code_postal": "91377", "stop_lon": 2.2691373654110616, "coord": [48.72419948793552, 2.2691373654110616], "stop_id": 4314746, "stop_desc": "RUE GALVANI - 91377", "stop_name": "GALVANI NORD"}, "geometry": {"type": "Point", "coordinates": [2.2691373654110616, 48.72419948793552]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "66a79b29a17027e28a620dee81f9418f3e7d6bdd", "fields": {"departement": "91", "stop_lat": 48.719901256044814, "code_postal": "91377", "stop_lon": 2.2661001109027317, "coord": [48.719901256044814, 2.2661001109027317], "stop_id": 4314772, "stop_desc": "14 R AMPERE - 91377", "stop_name": "AMPERE SUD"}, "geometry": {"type": "Point", "coordinates": [2.2661001109027317, 48.719901256044814]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f5c062f2f58c71c6e335ac7de6a8fd755ddcd619", "fields": {"departement": "91", "stop_lat": 48.720128923204506, "code_postal": "91377", "stop_lon": 2.2712211042340074, "coord": [48.720128923204506, 2.2712211042340074], "stop_id": 4314774, "stop_desc": "FACE 17 RUE AMPERE - 91377", "stop_name": "CIMETIERE DE MASSY"}, "geometry": {"type": "Point", "coordinates": [2.2712211042340074, 48.720128923204506]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7205ff807194018f71be3f707920177ffb1815e3", "fields": {"departement": "91", "stop_lat": 48.72584541130804, "code_postal": "91377", "stop_lon": 2.2709964717305606, "coord": [48.72584541130804, 2.2709964717305606], "stop_id": 4314780, "stop_desc": "127 RUE DE PARIS - 91377", "stop_name": "LA TUILERIE"}, "geometry": {"type": "Point", "coordinates": [2.2709964717305606, 48.72584541130804]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d7ac52c982d2c7b0b0b8246333553ade8eb76852", "fields": {"departement": "91", "stop_lat": 48.726816717655204, "code_postal": "91377", "stop_lon": 2.27201419235986, "coord": [48.726816717655204, 2.27201419235986], "stop_id": 4314781, "stop_desc": "FACE 125 RUE DE PARIS - 91377", "stop_name": "LA TUILERIE"}, "geometry": {"type": "Point", "coordinates": [2.27201419235986, 48.726816717655204]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c4b2f86bad986ab01d27c5584911bfc2adeae24e", "fields": {"departement": "91", "stop_lat": 48.72795025712105, "code_postal": "91377", "stop_lon": 2.2738741077748967, "coord": [48.72795025712105, 2.2738741077748967], "stop_id": 4314782, "stop_desc": "RUE DU 8 MAI 1945 - 91377", "stop_name": "8 MAI 1945"}, "geometry": {"type": "Point", "coordinates": [2.2738741077748967, 48.72795025712105]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "33fc692f75a8e39900d286d973beba245fb20c84", "fields": {"departement": "91", "stop_lat": 48.72928165027463, "code_postal": "91377", "stop_lon": 2.2760056052258806, "coord": [48.72928165027463, 2.2760056052258806], "stop_id": 4314784, "stop_desc": "FACE 3 RUE FUSTEL DE COULANGES - 91377", "stop_name": "GABRIEL PERI"}, "geometry": {"type": "Point", "coordinates": [2.2760056052258806, 48.72928165027463]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "209280deb0deaedfd12941d4132a1969c665b1b4", "fields": {"departement": "91", "stop_lat": 48.730337365280135, "code_postal": "91377", "stop_lon": 2.284509841439496, "coord": [48.730337365280135, 2.284509841439496], "stop_id": 4314791, "stop_desc": "FACE 11 RUE DE ROME - 91377", "stop_name": "MOSCOU-ROME"}, "geometry": {"type": "Point", "coordinates": [2.284509841439496, 48.730337365280135]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "60a4ffd382af5292c55f776cece69f832c9b186f", "fields": {"departement": "91", "stop_lat": 48.731469602983324, "code_postal": "91377", "stop_lon": 2.283856501392165, "coord": [48.731469602983324, 2.283856501392165], "stop_id": 4314793, "stop_desc": "1 RUE DE ROME - 91377", "stop_name": "HELENE BOUCHER"}, "geometry": {"type": "Point", "coordinates": [2.283856501392165, 48.731469602983324]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ba1b07dd47763388a7f15996e7f5b67efd0d1dd0", "fields": {"departement": "91", "stop_lat": 48.733178849525345, "code_postal": "91377", "stop_lon": 2.287224513071842, "coord": [48.733178849525345, 2.287224513071842], "stop_id": 4314795, "stop_desc": "RUE DES CANADIENS - 91377", "stop_name": "AVENUE SAINT-MARC"}, "geometry": {"type": "Point", "coordinates": [2.287224513071842, 48.733178849525345]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5d4cc0b4cbd7a444ec265961bc28027e2dcf49fb", "fields": {"departement": "91", "stop_lat": 48.73880089439907, "code_postal": "91377", "stop_lon": 2.2989602054010803, "coord": [48.73880089439907, 2.2989602054010803], "stop_id": 4314802, "stop_desc": "FACE 64 AVENUE DU PRESIDENT KENNEDY - 91377", "stop_name": "SAUSSAYE - MIRABEAU"}, "geometry": {"type": "Point", "coordinates": [2.2989602054010803, 48.73880089439907]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aefec73b4eb31bdea8117f13ce8c21f85ca0e59d", "fields": {"departement": "92", "stop_lat": 48.73601566468644, "code_postal": "92002", "stop_lon": 2.3026719200649035, "coord": [48.73601566468644, 2.3026719200649035], "stop_id": 4314804, "stop_desc": "4 AVENUE LEON JOUHAUX - 92002", "stop_name": "LEON JOUHAUX"}, "geometry": {"type": "Point", "coordinates": [2.3026719200649035, 48.73601566468644]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ac6bf5c6232f1d50461a279d91c9bc8e0a554c3c", "fields": {"departement": "92", "stop_lat": 48.73517219242625, "code_postal": "92002", "stop_lon": 2.3079855022378792, "coord": [48.73517219242625, 2.3079855022378792], "stop_id": 4314807, "stop_desc": "AVENUE LEON JOUHAUX - 92002", "stop_name": "LYCEE MONOD"}, "geometry": {"type": "Point", "coordinates": [2.3079855022378792, 48.73517219242625]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f35ca7e1460824162ac942e279adc81eb5122e7e", "fields": {"departement": "91", "stop_lat": 48.733106964100884, "code_postal": "91689", "stop_lon": 2.318231827644874, "coord": [48.733106964100884, 2.318231827644874], "stop_id": 4314811, "stop_desc": "RUE ANDRE DOLIMIER - 91689", "stop_name": "VILLEMILAN"}, "geometry": {"type": "Point", "coordinates": [2.318231827644874, 48.733106964100884]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4261d32ae655f5d644831d47511cbeca2b1d7f6a", "fields": {"departement": "94", "stop_lat": 48.74152948661348, "code_postal": "94065", "stop_lon": 2.3528287592772252, "coord": [48.74152948661348, 2.3528287592772252], "stop_id": 4314822, "stop_desc": "81 AVENUE DE LA GARE - 94065", "stop_name": "LA FRATERNELLE-RER"}, "geometry": {"type": "Point", "coordinates": [2.3528287592772252, 48.74152948661348]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2bc5230a71119219125e1bdc8c46d61bbffd0b77", "fields": {"departement": "94", "stop_lat": 48.74671519143844, "code_postal": "94065", "stop_lon": 2.3563096877322587, "coord": [48.74671519143844, 2.3563096877322587], "stop_id": 4314827, "stop_desc": "17 AVENUE ROBERT SCHUMAN - 94065", "stop_name": "RUE D'ARCUEIL"}, "geometry": {"type": "Point", "coordinates": [2.3563096877322587, 48.74671519143844]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2ddc96e6f0dc211f797f70b1e50b8efac4728916", "fields": {"departement": "94", "stop_lat": 48.74672408000925, "code_postal": "94065", "stop_lon": 2.3569212998815887, "coord": [48.74672408000925, 2.3569212998815887], "stop_id": 4314828, "stop_desc": "40 - 48 RUE D'ARCUEIL - 94065", "stop_name": "RUE D'ARCUEIL"}, "geometry": {"type": "Point", "coordinates": [2.3569212998815887, 48.74672408000925]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "50a98d5315e44e354b20631263811fc4f7f6557c", "fields": {"departement": "94", "stop_lat": 48.74892323295724, "code_postal": "94073", "stop_lon": 2.370269362301901, "coord": [48.74892323295724, 2.370269362301901], "stop_id": 4314834, "stop_desc": "RUE DES ALOUETTES - 94073", "stop_name": "HAUTS FLOUVIERS"}, "geometry": {"type": "Point", "coordinates": [2.370269362301901, 48.74892323295724]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a5cdbc275b6aefa8dcc3e5f6af6fec40600ba7ee", "fields": {"departement": "94", "stop_lat": 48.75619495336553, "code_postal": "94073", "stop_lon": 2.3692272607020177, "coord": [48.75619495336553, 2.3692272607020177], "stop_id": 4314838, "stop_desc": "AVENUE DE L'EUROPE - 94073", "stop_name": "BELLE EPINE SUD"}, "geometry": {"type": "Point", "coordinates": [2.3692272607020177, 48.75619495336553]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bc6a927ecdcca0e0a48f6f7b7c1028803e80f48d", "fields": {"departement": "94", "stop_lat": 48.759647325903956, "code_postal": "94021", "stop_lon": 2.3655724136005585, "coord": [48.759647325903956, 2.3655724136005585], "stop_id": 4314844, "stop_desc": "RUE DE THIAIS - 94021", "stop_name": "PORTE DE THIAIS"}, "geometry": {"type": "Point", "coordinates": [2.3655724136005585, 48.759647325903956]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7e7c008d234f97e472acfee99334558421cfd7be", "fields": {"departement": "93", "stop_lat": 48.86932276095398, "code_postal": "93050", "stop_lon": 2.5367702131902, "coord": [48.86932276095398, 2.5367702131902], "stop_id": 3683026, "stop_desc": "4 AVENUE WINSTON CHURCHILL - 93050", "stop_name": "RUE DES POMMIERS"}, "geometry": {"type": "Point", "coordinates": [2.5367702131902, 48.86932276095398]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e49e48e948b4d7d6d6a0a09a65e23caa162f276b", "fields": {"departement": "93", "stop_lat": 48.86355062556288, "code_postal": "93064", "stop_lon": 2.4964678637045843, "coord": [48.86355062556288, 2.4964678637045843], "stop_id": 3683443, "stop_desc": "RUE MISSAK MANOUCHIAN - 93064", "stop_name": "MISSAK MANOUCHIAN"}, "geometry": {"type": "Point", "coordinates": [2.4964678637045843, 48.86355062556288]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c0a1b29b3ccd1c1d4127506f8dd7d73346398bf8", "fields": {"departement": "93", "stop_lat": 48.867540185876635, "code_postal": "93050", "stop_lon": 2.5332077466950484, "coord": [48.867540185876635, 2.5332077466950484], "stop_id": 3683024, "stop_desc": "AVENUE LEON BLUM - 93050", "stop_name": "ILE DE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.5332077466950484, 48.867540185876635]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2c8296631c474f516253e49a6ec077f71694a92a", "fields": {"departement": "94", "stop_lat": 48.852897355111516, "code_postal": "94033", "stop_lon": 2.477531777569187, "coord": [48.852897355111516, 2.477531777569187], "stop_id": 3685755, "stop_desc": "FACE 80 AVENUE DU MARECHAL JOFFRE - 94033", "stop_name": "DANIELLE CASANOVA"}, "geometry": {"type": "Point", "coordinates": [2.477531777569187, 48.852897355111516]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6a635721137ecaa4a83c70df3a318ab7886c5e98", "fields": {"departement": "94", "stop_lat": 48.84702899066013, "code_postal": "94080", "stop_lon": 2.4519011919523135, "coord": [48.84702899066013, 2.4519011919523135], "stop_id": 3685743, "stop_desc": "FACE 3 PLACE DU MARECHAL LYAUTEY - 94080", "stop_name": "CLEMENT VIENOT"}, "geometry": {"type": "Point", "coordinates": [2.4519011919523135, 48.84702899066013]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ae48aa204c050b771d5d61d2122d924c3641efdd", "fields": {"departement": "94", "stop_lat": 48.853415042601995, "code_postal": "94033", "stop_lon": 2.4878293591759193, "coord": [48.853415042601995, 2.4878293591759193], "stop_id": 3685761, "stop_desc": "10-12 AV DU VAL DE FONTENAY - 94033", "stop_name": "VAL DE FONTENAY RER"}, "geometry": {"type": "Point", "coordinates": [2.4878293591759193, 48.853415042601995]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bf0e3f0a375c16e30311bbf7344351860ede9766", "fields": {"departement": "94", "stop_lat": 48.85339768655697, "code_postal": "94033", "stop_lon": 2.4873390145395913, "coord": [48.85339768655697, 2.4873390145395913], "stop_id": 3685760, "stop_desc": "9 AVENUE DU VAL DE FONTENAY - 94033", "stop_name": "VAL DE FONTENAY RER"}, "geometry": {"type": "Point", "coordinates": [2.4873390145395913, 48.85339768655697]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b7518b97dbb19aa0abc03221faadbc388d171cb6", "fields": {"departement": "93", "stop_lat": 48.862328741409016, "code_postal": "93064", "stop_lon": 2.482066048514456, "coord": [48.862328741409016, 2.482066048514456], "stop_id": 3685769, "stop_desc": "FACE 287 AV DE LA REPUBLIQUE - 93064", "stop_name": "JULES GUESDE"}, "geometry": {"type": "Point", "coordinates": [2.482066048514456, 48.862328741409016]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7264697cedb840f502842da14c1e1bcd2bec3124", "fields": {"departement": "94", "stop_lat": 48.85287232679907, "code_postal": "94033", "stop_lon": 2.467930214706656, "coord": [48.85287232679907, 2.467930214706656], "stop_id": 3685751, "stop_desc": "243 AVENUE DE LA REPUBLIQUE - 94033", "stop_name": "ANDRE TESSIER"}, "geometry": {"type": "Point", "coordinates": [2.467930214706656, 48.85287232679907]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "019b454810f88209b1b974108b1a4f1c1db815df", "fields": {"departement": "94", "stop_lat": 48.85375898782741, "code_postal": "94033", "stop_lon": 2.4707244202565644, "coord": [48.85375898782741, 2.4707244202565644], "stop_id": 3685752, "stop_desc": "FACE 5 AVENUE DU MARECHAL JOFFRE - 94033", "stop_name": "VERDUN"}, "geometry": {"type": "Point", "coordinates": [2.4707244202565644, 48.85375898782741]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a4d9f478cec47cd51634cd68dd33283feaf0f2d3", "fields": {"departement": "93", "stop_lat": 48.864960593180605, "code_postal": "93064", "stop_lon": 2.4832585401096465, "coord": [48.864960593180605, 2.4832585401096465], "stop_id": 3685771, "stop_desc": "114 AVENUE DE LA REPUBLIQUE - 93064", "stop_name": "DIDEROT"}, "geometry": {"type": "Point", "coordinates": [2.4832585401096465, 48.864960593180605]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "21cba86c09c0ad0958e4c53284a7542a51670878", "fields": {"departement": "94", "stop_lat": 48.85623563273947, "code_postal": "94033", "stop_lon": 2.4817630151132914, "coord": [48.85623563273947, 2.4817630151132914], "stop_id": 3685765, "stop_desc": "FACE 18 AV CHARLES GARCIA - 94033", "stop_name": "JEAN MACE"}, "geometry": {"type": "Point", "coordinates": [2.4817630151132914, 48.85623563273947]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3402eeacaf56b4aa773b94cb3dcb7bbe475636ba", "fields": {"departement": "94", "stop_lat": 48.857341200605816, "code_postal": "94033", "stop_lon": 2.4816707533851594, "coord": [48.857341200605816, 2.4816707533851594], "stop_id": 3685767, "stop_desc": "11 AV CHARLES GARCIA - 94033", "stop_name": "LA FONTAINE"}, "geometry": {"type": "Point", "coordinates": [2.4816707533851594, 48.857341200605816]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1d27d86ba406ef860d563f66a4cebe307a1d8385", "fields": {"departement": "93", "stop_lat": 48.87379559973046, "code_postal": "93064", "stop_lon": 2.4829019304695374, "coord": [48.87379559973046, 2.4829019304695374], "stop_id": 3685728, "stop_desc": "4 RUE DU GENERAL GALLIENI - 93064", "stop_name": "EGLISE DE ROSNY-SOUS-BOIS"}, "geometry": {"type": "Point", "coordinates": [2.4829019304695374, 48.87379559973046]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6735d289200d863860305dae1e16b3ba14064e5e", "fields": {"departement": "93", "stop_lat": 48.87717850845737, "code_postal": "93064", "stop_lon": 2.479859315788344, "coord": [48.87717850845737, 2.479859315788344], "stop_id": 3685727, "stop_desc": "45 AVENUE DU GENERAL DE GAULLE - 93064", "stop_name": "GABRIEL PERI - DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.479859315788344, 48.87717850845737]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a1c055da6f352fd72c0444102bdf9f4b18ae5a20", "fields": {"departement": "93", "stop_lat": 48.87029685379301, "code_postal": "93064", "stop_lon": 2.4850718979150517, "coord": [48.87029685379301, 2.4850718979150517], "stop_id": 3685720, "stop_desc": "11 AVENUE DE LA REPUBLIQUE - 93064", "stop_name": "ROSNY-SOUS-BOIS RER"}, "geometry": {"type": "Point", "coordinates": [2.4850718979150517, 48.87029685379301]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "61d66f92016c0c97cc169118a40feabf968530d3", "fields": {"departement": "93", "stop_lat": 48.862328741409016, "code_postal": "93064", "stop_lon": 2.482066048514456, "coord": [48.862328741409016, 2.482066048514456], "stop_id": 3685715, "stop_desc": "FACE 287 AV DE LA REPUBLIQUE - 93064", "stop_name": "JULES GUESDE"}, "geometry": {"type": "Point", "coordinates": [2.482066048514456, 48.862328741409016]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9011eee8cd8a613d1c3fdcdcbfb3791a4efaf024", "fields": {"departement": "93", "stop_lat": 48.864960593180605, "code_postal": "93064", "stop_lon": 2.4832585401096465, "coord": [48.864960593180605, 2.4832585401096465], "stop_id": 3685717, "stop_desc": "114 AVENUE DE LA REPUBLIQUE - 93064", "stop_name": "DIDEROT"}, "geometry": {"type": "Point", "coordinates": [2.4832585401096465, 48.864960593180605]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1b425c15d7e8d9b0e95c2d05e99f7f560c2d8cd2", "fields": {"departement": "94", "stop_lat": 48.85623563273947, "code_postal": "94033", "stop_lon": 2.4817630151132914, "coord": [48.85623563273947, 2.4817630151132914], "stop_id": 3685711, "stop_desc": "FACE 18 AV CHARLES GARCIA - 94033", "stop_name": "JEAN MACE"}, "geometry": {"type": "Point", "coordinates": [2.4817630151132914, 48.85623563273947]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "38ecf30e26dc42a882a78407294d99da22b766cb", "fields": {"departement": "93", "stop_lat": 48.86546334999699, "code_postal": "93064", "stop_lon": 2.483695874168352, "coord": [48.86546334999699, 2.483695874168352], "stop_id": 3685716, "stop_desc": "89 AVENUE DE LA REPUBLIQUE - 93064", "stop_name": "DIDEROT"}, "geometry": {"type": "Point", "coordinates": [2.483695874168352, 48.86546334999699]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e6347ed92358cca5dd41534c911761d6ad8ae858", "fields": {"departement": "93", "stop_lat": 48.87492666062869, "code_postal": "93064", "stop_lon": 2.483995103062401, "coord": [48.87492666062869, 2.483995103062401], "stop_id": 3685724, "stop_desc": "16 BIS RUE RICHARD GARDEBLED - 93064", "stop_name": "GARDEBLED"}, "geometry": {"type": "Point", "coordinates": [2.483995103062401, 48.87492666062869]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6bdb273b46ffc4fd6d02ba10aa1c6e7e13ad151c", "fields": {"departement": "93", "stop_lat": 48.87258924183589, "code_postal": "93064", "stop_lon": 2.4845743335348023, "coord": [48.87258924183589, 2.4845743335348023], "stop_id": 3685723, "stop_desc": "RUE DU GENERAL GALLIENI - 93064", "stop_name": "COPERNIC"}, "geometry": {"type": "Point", "coordinates": [2.4845743335348023, 48.87258924183589]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "12c7e7253e478daca7e9127c4ebed2b12080308c", "fields": {"departement": "94", "stop_lat": 48.8584205955465, "code_postal": "94033", "stop_lon": 2.4809246260092555, "coord": [48.8584205955465, 2.4809246260092555], "stop_id": 3685712, "stop_desc": "209 RUE LA FONTAINE - 94033", "stop_name": "LA FONTAINE"}, "geometry": {"type": "Point", "coordinates": [2.4809246260092555, 48.8584205955465]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "377e22c77bfb4b71d80a44a8592057d144a97144", "fields": {"departement": "94", "stop_lat": 48.81504970329177, "code_postal": "94046", "stop_lon": 2.421141792054011, "coord": [48.81504970329177, 2.421141792054011], "stop_id": 3686300, "stop_desc": "FACE 7 AVENUE DU GENERAL LECLERC - 94046", "stop_name": "ECOLE VETERINAIRE DE MAISONS-ALFORT"}, "geometry": {"type": "Point", "coordinates": [2.421141792054011, 48.81504970329177]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "44752d8a57db9773bdb23e8118208e1f9b7811ee", "fields": {"departement": "94", "stop_lat": 48.80267030048723, "code_postal": "94002", "stop_lon": 2.425598151502994, "coord": [48.80267030048723, 2.425598151502994], "stop_id": 3686390, "stop_desc": "FACE 16 B RUE MALLERET JOINVILLE - 94002", "stop_name": "MAISONS-ALFORT - ALFORTVILLE RER"}, "geometry": {"type": "Point", "coordinates": [2.425598151502994, 48.80267030048723]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "835f56370b6ec2476bcd7e2bbc93caaed442c47d", "fields": {"departement": "94", "stop_lat": 48.79008704138252, "code_postal": "94002", "stop_lon": 2.425916812256359, "coord": [48.79008704138252, 2.425916812256359], "stop_id": 3686400, "stop_desc": "FACE 108 RUE ETIENNE DOLET - 94002", "stop_name": "PLACE DU PETIT PONT"}, "geometry": {"type": "Point", "coordinates": [2.425916812256359, 48.79008704138252]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f62a458807fb26925eae7372e260962dd55d1695", "fields": {"departement": "94", "stop_lat": 48.78711218269996, "code_postal": "94002", "stop_lon": 2.425721307267386, "coord": [48.78711218269996, 2.425721307267386], "stop_id": 3686402, "stop_desc": "FACE 138B RUE ETIENNE DOLET - 94002", "stop_name": "SAN BENEDETTO"}, "geometry": {"type": "Point", "coordinates": [2.425721307267386, 48.78711218269996]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "48a1fdc297bc408e4730c2c2df4e66c9c8b14a8d", "fields": {"departement": "94", "stop_lat": 48.79513859863443, "code_postal": "94002", "stop_lon": 2.4254356938910138, "coord": [48.79513859863443, 2.4254356938910138], "stop_id": 3686396, "stop_desc": "FACE 52BIS RUE ETIENNE DOLET - 94002", "stop_name": "ACHTARAK"}, "geometry": {"type": "Point", "coordinates": [2.4254356938910138, 48.79513859863443]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "602a9267a6067b65e8566fd9cc59a6655d894282", "fields": {"departement": "94", "stop_lat": 48.79279273202777, "code_postal": "94002", "stop_lon": 2.4254725205040106, "coord": [48.79279273202777, 2.4254725205040106], "stop_id": 3686397, "stop_desc": "72 RUE ETIENNE DOLET - 94002", "stop_name": "ROSES"}, "geometry": {"type": "Point", "coordinates": [2.4254725205040106, 48.79279273202777]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bb1dc64a1f0640232df3205d406636a944bd63f2", "fields": {"departement": "94", "stop_lat": 48.800107762416324, "code_postal": "94002", "stop_lon": 2.426940715163204, "coord": [48.800107762416324, 2.426940715163204], "stop_id": 3686391, "stop_desc": "R JOFFRIN - 94002", "stop_name": "CAMELIAS"}, "geometry": {"type": "Point", "coordinates": [2.426940715163204, 48.800107762416324]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "225fecb76d8bed250734e88bf795acf57b618930", "fields": {"departement": "94", "stop_lat": 48.79788729186993, "code_postal": "94002", "stop_lon": 2.42756269645288, "coord": [48.79788729186993, 2.42756269645288], "stop_id": 3686393, "stop_desc": "R DE VERDUN - 94002", "stop_name": "FLORE"}, "geometry": {"type": "Point", "coordinates": [2.42756269645288, 48.79788729186993]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "32421bf76692edb1c82fccb4f8610999752d3840", "fields": {"departement": "93", "stop_lat": 48.86185931933197, "code_postal": "93049", "stop_lon": 2.5042541756223677, "coord": [48.86185931933197, 2.5042541756223677], "stop_id": 3683577, "stop_desc": "FACE 25 AVENUE GEORGES CLEMENCEAU - 93049", "stop_name": "GEORGES CLEMENCEAU"}, "geometry": {"type": "Point", "coordinates": [2.5042541756223677, 48.86185931933197]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d2fd12e1c5e06046379bdc8cf880820c23503839", "fields": {"departement": "94", "stop_lat": 48.84702899066013, "code_postal": "94080", "stop_lon": 2.4519011919523135, "coord": [48.84702899066013, 2.4519011919523135], "stop_id": 3685689, "stop_desc": "FACE 3 PLACE DU MARECHAL LYAUTEY - 94080", "stop_name": "CLEMENT VIENOT"}, "geometry": {"type": "Point", "coordinates": [2.4519011919523135, 48.84702899066013]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "69f6540ed820395104f45d6646a6524e9ea27eb9", "fields": {"departement": "94", "stop_lat": 48.853415042601995, "code_postal": "94033", "stop_lon": 2.4878293591759193, "coord": [48.853415042601995, 2.4878293591759193], "stop_id": 3685707, "stop_desc": "10-12 AV DU VAL DE FONTENAY - 94033", "stop_name": "VAL DE FONTENAY RER"}, "geometry": {"type": "Point", "coordinates": [2.4878293591759193, 48.853415042601995]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "69003c3eeb90f3946525b5949e48d4fcc5ea5162", "fields": {"departement": "94", "stop_lat": 48.822385434972794, "code_postal": "94017", "stop_lon": 2.4981110273134495, "coord": [48.822385434972794, 2.4981110273134495], "stop_id": 3683556, "stop_desc": "164-166 BD DE STALINGRAD - 94017", "stop_name": "ARISTIDE BRIAND"}, "geometry": {"type": "Point", "coordinates": [2.4981110273134495, 48.822385434972794]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "654f866c4595abd78ae94bfde165dffefb94b75b", "fields": {"departement": "93", "stop_lat": 48.877550507721665, "code_postal": "93064", "stop_lon": 2.4843567962909288, "coord": [48.877550507721665, 2.4843567962909288], "stop_id": 3683586, "stop_desc": "FACE 3 BOULEVARD GABRIEL PERI - 93064", "stop_name": "VAN DERHEYDEN"}, "geometry": {"type": "Point", "coordinates": [2.4843567962909288, 48.877550507721665]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "62ec27662e9efa449fe9ebee883290660da95bc5", "fields": {"departement": "94", "stop_lat": 48.8446246823592, "code_postal": "94080", "stop_lon": 2.437094232812113, "coord": [48.8446246823592, 2.437094232812113], "stop_id": 3685682, "stop_desc": "FACE 10 AVENUE DE PARIS - 94080", "stop_name": "AVENUE DU CHATEAU"}, "geometry": {"type": "Point", "coordinates": [2.437094232812113, 48.8446246823592]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0204f550647ac984e52ba35aba36fed281568e89", "fields": {"departement": "94", "stop_lat": 48.8504026054325, "code_postal": "94058", "stop_lon": 2.496005332689618, "coord": [48.8504026054325, 2.496005332689618], "stop_id": 3683571, "stop_desc": "12-14 RUE DE LA CROIX D'EAU - 94058", "stop_name": "CROIX D'EAU"}, "geometry": {"type": "Point", "coordinates": [2.496005332689618, 48.8504026054325]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "32afe9b78288679482e850e2022787a59472e910", "fields": {"departement": "94", "stop_lat": 48.834542735337955, "code_postal": "94052", "stop_lon": 2.4936151418879726, "coord": [48.834542735337955, 2.4936151418879726], "stop_id": 3683560, "stop_desc": "54 BOULEVARD ALBERT 1ER - 94052", "stop_name": "VIADUC"}, "geometry": {"type": "Point", "coordinates": [2.4936151418879726, 48.834542735337955]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f933fd18a12f8439d89d9d4e93c44467730d43d1", "fields": {"departement": "94", "stop_lat": 48.85624422313098, "code_postal": "94033", "stop_lon": 2.4820899197772075, "coord": [48.85624422313098, 2.4820899197772075], "stop_id": 3685710, "stop_desc": "14 AV CHARLES GARCIA - 94033", "stop_name": "JEAN MACE"}, "geometry": {"type": "Point", "coordinates": [2.4820899197772075, 48.85624422313098]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9321570f0fee2151945f17ad32cb2e2b89d6e57b", "fields": {"departement": "94", "stop_lat": 48.84850929983121, "code_postal": "94080", "stop_lon": 2.4546008259526815, "coord": [48.84850929983121, 2.4546008259526815], "stop_id": 3685690, "stop_desc": "20 RUE FELIX FAURE - 94080", "stop_name": "PASTEUR"}, "geometry": {"type": "Point", "coordinates": [2.4546008259526815, 48.84850929983121]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fbeac8a5ab26225eea4b0f5ad29122d7239cc19a", "fields": {"departement": "94", "stop_lat": 48.84977934782481, "code_postal": "94033", "stop_lon": 2.476978612093639, "coord": [48.84977934782481, 2.476978612093639], "stop_id": 3685898, "stop_desc": "166 BOULEVARD GALLIENI - 94033", "stop_name": "HOTEL DE VILLE DE FONTENAY-SOUS-BOIS"}, "geometry": {"type": "Point", "coordinates": [2.476978612093639, 48.84977934782481]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d07090365800de085f3984ca1c4579baec226f25", "fields": {"departement": "93", "stop_lat": 48.85582135471058, "code_postal": "93050", "stop_lon": 2.527184318308966, "coord": [48.85582135471058, 2.527184318308966], "stop_id": 3685958, "stop_desc": "FACE 38 AVENUE DU GENERAL DE GAULLE - 93050", "stop_name": "FOCH - DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.527184318308966, 48.85582135471058]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9ab29a6cc362cbc21823570eb69648794ecaec57", "fields": {"departement": "94", "stop_lat": 48.83684957358511, "code_postal": "94015", "stop_lon": 2.520879219789748, "coord": [48.83684957358511, 2.520879219789748], "stop_id": 3686081, "stop_desc": "32 GRANDE RUE CHARLES DE GAULLE - 94015", "stop_name": "RUE DU PRESSOIR"}, "geometry": {"type": "Point", "coordinates": [2.520879219789748, 48.83684957358511]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "844a20cbfbd5b7c7cc9b7cf4f9811c9df7e74c9a", "fields": {"departement": "94", "stop_lat": 48.83424543925855, "code_postal": "94015", "stop_lon": 2.5193996628002555, "coord": [48.83424543925855, 2.5193996628002555], "stop_id": 3686080, "stop_desc": "5 PL DAGUERRE - 94015", "stop_name": "MAIRIE DE BRY-SUR-MARNE"}, "geometry": {"type": "Point", "coordinates": [2.5193996628002555, 48.83424543925855]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "57d6d69edba145d687a8f9ad0e63b4b2ce381c84", "fields": {"departement": "94", "stop_lat": 48.84462471993193, "code_postal": "94015", "stop_lon": 2.526053965223131, "coord": [48.84462471993193, 2.526053965223131], "stop_id": 3686084, "stop_desc": "BD DU GENERAL GALLIENI - 94015", "stop_name": "BRY-SUR-MARNE RER"}, "geometry": {"type": "Point", "coordinates": [2.526053965223131, 48.84462471993193]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dfbe43d8a1aa5f0af32f8198811366518412cb1f", "fields": {"departement": "94", "stop_lat": 48.8458162016149, "code_postal": "94033", "stop_lon": 2.4513538202584924, "coord": [48.8458162016149, 2.4513538202584924], "stop_id": 3686059, "stop_desc": "10 AVENUE DE LA PEPINIERE - 94033", "stop_name": "CHARMES - PEPINIERE"}, "geometry": {"type": "Point", "coordinates": [2.4513538202584924, 48.8458162016149]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c15484b0dbc34383290b181314c593eeac7da2ac", "fields": {"departement": "94", "stop_lat": 48.83631306496527, "code_postal": "94052", "stop_lon": 2.4794610851063337, "coord": [48.83631306496527, 2.4794610851063337], "stop_id": 3686066, "stop_desc": "60 GRANDE RUE CHARLES DE GAULLE - 94052", "stop_name": "RUE DE BEAUTE"}, "geometry": {"type": "Point", "coordinates": [2.4794610851063337, 48.83631306496527]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "38a87526456846998443c25c28c295a69415d35c", "fields": {"departement": "93", "stop_lat": 48.8668286822677, "code_postal": "93050", "stop_lon": 2.5341177875330065, "coord": [48.8668286822677, 2.5341177875330065], "stop_id": 3685967, "stop_desc": "340 AVENUE DU 8 MAI 1945 - 93050", "stop_name": "ROUSSILLON."}, "geometry": {"type": "Point", "coordinates": [2.5341177875330065, 48.8668286822677]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "14bf083c4c77092df7076350dac1c4fb39e97c5f", "fields": {"departement": "94", "stop_lat": 48.84633248805177, "code_postal": "94033", "stop_lon": 2.456447870879037, "coord": [48.84633248805177, 2.456447870879037], "stop_id": 3686061, "stop_desc": "RUE DES POMMIERS - 94033", "stop_name": "RUE DES POMMIERS"}, "geometry": {"type": "Point", "coordinates": [2.456447870879037, 48.84633248805177]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cf79f275dcda0a88053092433fe449b19d25c7f5", "fields": {"departement": "94", "stop_lat": 48.79788729186993, "code_postal": "94002", "stop_lon": 2.42756269645288, "coord": [48.79788729186993, 2.42756269645288], "stop_id": 3686318, "stop_desc": "R DE VERDUN - 94002", "stop_name": "FLORE"}, "geometry": {"type": "Point", "coordinates": [2.42756269645288, 48.79788729186993]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bdb3d6122ce9596a4d201a2d068110a325e0156c", "fields": {"departement": "94", "stop_lat": 48.82397897368915, "code_postal": "94017", "stop_lon": 2.4960878428804523, "coord": [48.82397897368915, 2.4960878428804523], "stop_id": 3683466, "stop_desc": "149-151 BOULEVARD DE STALINGRAD - 94017", "stop_name": "GENERAL DE GAULLE - STALINGRAD"}, "geometry": {"type": "Point", "coordinates": [2.4960878428804523, 48.82397897368915]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e0f68e493a39141d2aa625008d42656760356d37", "fields": {"departement": "94", "stop_lat": 48.84854201822675, "code_postal": "94058", "stop_lon": 2.4961358186242504, "coord": [48.84854201822675, 2.4961358186242504], "stop_id": 3683459, "stop_desc": "103 AVENUE DU 11 NOVEMBRE - 94058", "stop_name": "ROND-POINT DU GENERAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.4961358186242504, 48.84854201822675]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7e3491c5556b1636f753c779b89e2eb793af91c2", "fields": {"departement": "94", "stop_lat": 48.819652504878526, "code_postal": "94017", "stop_lon": 2.511359121916845, "coord": [48.819652504878526, 2.511359121916845], "stop_id": 3683552, "stop_desc": "44 AVENUE DE LA REPUBLIQUE - 94017", "stop_name": "REPUBLIQUE - ALEXANDRE FOURNY"}, "geometry": {"type": "Point", "coordinates": [2.511359121916845, 48.819652504878526]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "53c5d7a353036dfa1a6db15065cb4ae9cf27dffb", "fields": {"departement": "94", "stop_lat": 48.819311331150935, "code_postal": "94017", "stop_lon": 2.511112991184935, "coord": [48.819311331150935, 2.511112991184935], "stop_id": 3683472, "stop_desc": "17 AVENUE DE LA REPUBLIQUE - 94017", "stop_name": "REPUBLIQUE - ALEXANDRE FOURNY"}, "geometry": {"type": "Point", "coordinates": [2.511112991184935, 48.819311331150935]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1e8b94626f19ae1b52aec4ddc8baefc17fee49e6", "fields": {"departement": "94", "stop_lat": 48.83842408841958, "code_postal": "94058", "stop_lon": 2.494593529552752, "coord": [48.83842408841958, 2.494593529552752], "stop_id": 3683463, "stop_desc": "PLACE ROBERT BELVAUX - 94058", "stop_name": "NOGENT-LE-PERREUX RER"}, "geometry": {"type": "Point", "coordinates": [2.494593529552752, 48.83842408841958]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1b5fe74cac68426c1990c31a53be68e542ce8ec6", "fields": {"departement": "94", "stop_lat": 48.85237564705022, "code_postal": "94058", "stop_lon": 2.4991301270304054, "coord": [48.85237564705022, 2.4991301270304054], "stop_id": 3683450, "stop_desc": "FACE 30 RUE PIERRE BARBERET - 94058", "stop_name": "MARECHAL LYAUTEY"}, "geometry": {"type": "Point", "coordinates": [2.4991301270304054, 48.85237564705022]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "15b9e1186bc65aa0e2b3c5d00a1441a585d601d0", "fields": {"departement": "94", "stop_lat": 48.81408866114471, "code_postal": "94017", "stop_lon": 2.5116534666993484, "coord": [48.81408866114471, 2.5116534666993484], "stop_id": 3683550, "stop_desc": "48 RUE ALBERT THOMAS - 94017", "stop_name": "MAIRIE DE CHAMPIGNY"}, "geometry": {"type": "Point", "coordinates": [2.5116534666993484, 48.81408866114471]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "050805987db3631b266920d62d3d8be11aa59fc1", "fields": {"departement": "94", "stop_lat": 48.849989653650425, "code_postal": "94058", "stop_lon": 2.495649990633529, "coord": [48.849989653650425, 2.495649990633529], "stop_id": 3683452, "stop_desc": "246 AVENUE DU GENERAL DE GAULLE - 94058", "stop_name": "CROIX D'EAU"}, "geometry": {"type": "Point", "coordinates": [2.495649990633529, 48.849989653650425]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1e71233db0016608cbebdc5954d4516ea00954ff", "fields": {"departement": "94", "stop_lat": 48.82061305697835, "code_postal": "94017", "stop_lon": 2.505904457735628, "coord": [48.82061305697835, 2.505904457735628], "stop_id": 3683554, "stop_desc": "BOULEVARD GABRIEL PERI - 94017", "stop_name": "IRENE JOLIOT CURIE"}, "geometry": {"type": "Point", "coordinates": [2.505904457735628, 48.82061305697835]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2b4a68e08c06ae297229308b9fbf45316625a0ea", "fields": {"departement": "94", "stop_lat": 48.84109791971362, "code_postal": "94058", "stop_lon": 2.4979375730411966, "coord": [48.84109791971362, 2.4979375730411966], "stop_id": 3683462, "stop_desc": "FACE 52 AVENUE LEDRU-ROLLIN - 94058", "stop_name": "LE PARC"}, "geometry": {"type": "Point", "coordinates": [2.4979375730411966, 48.84109791971362]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5fabef1960c231b6ae8918dc992a39958efdbf08", "fields": {"departement": "93", "stop_lat": 48.87029685379301, "code_postal": "93064", "stop_lon": 2.4850718979150517, "coord": [48.87029685379301, 2.4850718979150517], "stop_id": 3685829, "stop_desc": "11 AVENUE DE LA REPUBLIQUE - 93064", "stop_name": "ROSNY-SOUS-BOIS RER"}, "geometry": {"type": "Point", "coordinates": [2.4850718979150517, 48.87029685379301]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b09957b9bfa5ad3679f0122c27f0ced86a67540f", "fields": {"departement": "94", "stop_lat": 48.853415042601995, "code_postal": "94033", "stop_lon": 2.4878293591759193, "coord": [48.853415042601995, 2.4878293591759193], "stop_id": 3685816, "stop_desc": "10-12 AV DU VAL DE FONTENAY - 94033", "stop_name": "VAL DE FONTENAY RER"}, "geometry": {"type": "Point", "coordinates": [2.4878293591759193, 48.853415042601995]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9514c0af528d4ceda21dbb71e44e1faf76fa87ed", "fields": {"departement": "93", "stop_lat": 48.876014031647024, "code_postal": "93064", "stop_lon": 2.4765860591946764, "coord": [48.876014031647024, 2.4765860591946764], "stop_id": 3685781, "stop_desc": "RUE JULES FERRY - 93064", "stop_name": "NANTEUIL ZI - JULES FERRY"}, "geometry": {"type": "Point", "coordinates": [2.4765860591946764, 48.876014031647024]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "036bf9f750596eeead6939490fa82511c42538ba", "fields": {"departement": "75", "stop_lat": 48.84445846840891, "code_postal": "75112", "stop_lon": 2.4422547273027364, "coord": [48.84445846840891, 2.4422547273027364], "stop_id": 3685788, "stop_desc": "13 AVENUE DE NOGENT - 75112", "stop_name": "CHATEAU DE VINCENNES"}, "geometry": {"type": "Point", "coordinates": [2.4422547273027364, 48.84445846840891]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f3a8596d73766a0b1f1cd5ef5942f900cd7e71d5", "fields": {"departement": "94", "stop_lat": 48.84783944640084, "code_postal": "94080", "stop_lon": 2.4403414594989346, "coord": [48.84783944640084, 2.4403414594989346], "stop_id": 3685794, "stop_desc": "51 RUE DE FONTENAY - 94080", "stop_name": "MAIRIE DE VINCENNES"}, "geometry": {"type": "Point", "coordinates": [2.4403414594989346, 48.84783944640084]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1ba7379286f79b90e2b2b474e3a292d0ddd0c359", "fields": {"departement": "94", "stop_lat": 48.85264792420809, "code_postal": "94033", "stop_lon": 2.467670886794354, "coord": [48.85264792420809, 2.467670886794354], "stop_id": 3685805, "stop_desc": "256 AVENUE DE LA REPUBLIQUE - 94033", "stop_name": "ANDRE TESSIER"}, "geometry": {"type": "Point", "coordinates": [2.467670886794354, 48.85264792420809]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4d2fba8f043ddff2f3267abffa3559604df63582", "fields": {"departement": "94", "stop_lat": 48.852348875529906, "code_postal": "94033", "stop_lon": 2.4615688218490126, "coord": [48.852348875529906, 2.4615688218490126], "stop_id": 3685803, "stop_desc": "146 TER AVENUE DE LA REPUBLIQUE - 94033", "stop_name": "DANTON"}, "geometry": {"type": "Point", "coordinates": [2.4615688218490126, 48.852348875529906]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "401e8156ab5bb4ee79bdcf983cd2272ed890c239", "fields": {"departement": "94", "stop_lat": 48.85391188110829, "code_postal": "94033", "stop_lon": 2.470629477801297, "coord": [48.85391188110829, 2.470629477801297], "stop_id": 3685808, "stop_desc": "5 AVENUE DU MARECHAL JOFFRE - 94033", "stop_name": "VERDUN"}, "geometry": {"type": "Point", "coordinates": [2.470629477801297, 48.85391188110829]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "471deb6c6a47c861ed800e480e949e2069314d2e", "fields": {"departement": "94", "stop_lat": 48.8584205955465, "code_postal": "94033", "stop_lon": 2.4809246260092555, "coord": [48.8584205955465, 2.4809246260092555], "stop_id": 3685821, "stop_desc": "209 RUE LA FONTAINE - 94033", "stop_name": "LA FONTAINE"}, "geometry": {"type": "Point", "coordinates": [2.4809246260092555, 48.8584205955465]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "73d3db36341c8ce15d3decb836dbe4adba4a3c13", "fields": {"departement": "93", "stop_lat": 48.872786016638045, "code_postal": "93064", "stop_lon": 2.485337857755734, "coord": [48.872786016638045, 2.485337857755734], "stop_id": 3685831, "stop_desc": "33 RUE PAUL CAVARE - 93064", "stop_name": "COPERNIC"}, "geometry": {"type": "Point", "coordinates": [2.485337857755734, 48.872786016638045]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "16342a8bffb6818224c1a1efa7f701b88acd49e9", "fields": {"departement": "93", "stop_lat": 48.87029685379301, "code_postal": "93064", "stop_lon": 2.4850718979150517, "coord": [48.87029685379301, 2.4850718979150517], "stop_id": 3685774, "stop_desc": "11 AVENUE DE LA REPUBLIQUE - 93064", "stop_name": "ROSNY-SOUS-BOIS RER"}, "geometry": {"type": "Point", "coordinates": [2.4850718979150517, 48.87029685379301]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "02cee99ed40055a4d83c78a9d7a1df26f0d16a50", "fields": {"departement": "93", "stop_lat": 48.85271709698637, "code_postal": "93048", "stop_lon": 2.443252020654814, "coord": [48.85271709698637, 2.443252020654814], "stop_id": 3685870, "stop_desc": "FACE 35 RUE DESGRANGES - 93048", "stop_name": "DESGRANGES-SOLIDARITE"}, "geometry": {"type": "Point", "coordinates": [2.443252020654814, 48.85271709698637]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "92ae981a3ad092d0f78a1852b3206524aa355ffb", "fields": {"departement": "75", "stop_lat": 48.844368449079525, "code_postal": "75112", "stop_lon": 2.4424179479166144, "coord": [48.844368449079525, 2.4424179479166144], "stop_id": 3685859, "stop_desc": "13 AVENUE DE NOGENT - 75112", "stop_name": "CHATEAU DE VINCENNES"}, "geometry": {"type": "Point", "coordinates": [2.4424179479166144, 48.844368449079525]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ecd185d4346b669a361c33746ee1f4774aab94c7", "fields": {"departement": "94", "stop_lat": 48.85093796702249, "code_postal": "94080", "stop_lon": 2.442812588881539, "coord": [48.85093796702249, 2.442812588881539], "stop_id": 3685868, "stop_desc": "33 RUE CHARLES SILVESTRI - 94080", "stop_name": "DIDEROT-SILVESTRI"}, "geometry": {"type": "Point", "coordinates": [2.442812588881539, 48.85093796702249]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2595afe9f9facb23cbadbf9d9888e6ca509d4a83", "fields": {"departement": "94", "stop_lat": 48.85267622530051, "code_postal": "94033", "stop_lon": 2.4486450941347186, "coord": [48.85267622530051, 2.4486450941347186], "stop_id": 3685871, "stop_desc": "3 RUE DE LA SOLIDARITE - 94033", "stop_name": "LES PARAPLUIES"}, "geometry": {"type": "Point", "coordinates": [2.4486450941347186, 48.85267622530051]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d51a6574d4d3d6a27abd46745a4918d1cad07230", "fields": {"departement": "94", "stop_lat": 48.85280248180064, "code_postal": "94033", "stop_lon": 2.448182315301468, "coord": [48.85280248180064, 2.448182315301468], "stop_id": 3685872, "stop_desc": "6 RUE DE LA SOLIDARITE - 94033", "stop_name": "LES PARAPLUIES"}, "geometry": {"type": "Point", "coordinates": [2.448182315301468, 48.85280248180064]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "734fb0bd92c8c505134c6e470ccbeab6dd9a5c46", "fields": {"departement": "94", "stop_lat": 48.851882894083694, "code_postal": "94033", "stop_lon": 2.451217357977865, "coord": [48.851882894083694, 2.451217357977865], "stop_id": 3685874, "stop_desc": "70 AVENUE DE STALINGRAD - 94033", "stop_name": "HECTOR MALOT"}, "geometry": {"type": "Point", "coordinates": [2.451217357977865, 48.851882894083694]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a8037b6fa0a01530e6fc5eacc0b60ac1b07fdad7", "fields": {"departement": "94", "stop_lat": 48.84826968282151, "code_postal": "94080", "stop_lon": 2.4514681604048363, "coord": [48.84826968282151, 2.4514681604048363], "stop_id": 3685842, "stop_desc": "79-81 RUE DEFRANCE - 94080", "stop_name": "CLEMENT VIENOT"}, "geometry": {"type": "Point", "coordinates": [2.4514681604048363, 48.84826968282151]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "abc1cc93bd57e1beeffd70c6590de1abcf554866", "fields": {"departement": "94", "stop_lat": 48.848012935844636, "code_postal": "94080", "stop_lon": 2.437141607802347, "coord": [48.848012935844636, 2.437141607802347], "stop_id": 3685863, "stop_desc": "34 AVENUE DU CHATEAU - 94080", "stop_name": "VINCENNES RER"}, "geometry": {"type": "Point", "coordinates": [2.437141607802347, 48.848012935844636]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a396b7610d2c33bbe6dcdd7984462d7ac45dfbd6", "fields": {"departement": "93", "stop_lat": 48.87492666062869, "code_postal": "93064", "stop_lon": 2.483995103062401, "coord": [48.87492666062869, 2.483995103062401], "stop_id": 3685833, "stop_desc": "16 BIS RUE RICHARD GARDEBLED - 93064", "stop_name": "GARDEBLED"}, "geometry": {"type": "Point", "coordinates": [2.483995103062401, 48.87492666062869]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b2178ccd24758d7292f0dee7a8714f6071c02b64", "fields": {"departement": "94", "stop_lat": 48.81488981158628, "code_postal": "94046", "stop_lon": 2.4184197009305843, "coord": [48.81488981158628, 2.4184197009305843], "stop_id": 3686377, "stop_desc": "17 RUE EUGENE RENAULT - 94046", "stop_name": "MAISONS-ALFORT - ECOLE VETERINAIRE"}, "geometry": {"type": "Point", "coordinates": [2.4184197009305843, 48.81488981158628]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3e8b0c03cf0126d3799bef380700fb8c8e0c3d18", "fields": {"departement": "94", "stop_lat": 48.80491267239551, "code_postal": "94002", "stop_lon": 2.4194518071316327, "coord": [48.80491267239551, 2.4194518071316327], "stop_id": 3686386, "stop_desc": "FACE 168 RUE PAUL VAILLANT COUTURIER - 94002", "stop_name": "MAIRIE D'ALFORTVILLE"}, "geometry": {"type": "Point", "coordinates": [2.4194518071316327, 48.80491267239551]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "88f9e92a53012cbc6dae7884fa7853d37b557c8d", "fields": {"departement": "94", "stop_lat": 48.78373999436898, "code_postal": "94002", "stop_lon": 2.4279869309686917, "coord": [48.78373999436898, 2.4279869309686917], "stop_id": 3686328, "stop_desc": "FACE 183 RUE ETIENNE DOLET - 94002", "stop_name": "CIMETIERE D'ALFORTVILLE"}, "geometry": {"type": "Point", "coordinates": [2.4279869309686917, 48.78373999436898]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "80ecbf79e38e18d36a8b0ddca234ab48072dd737", "fields": {"departement": "94", "stop_lat": 48.766309422860196, "code_postal": "94073", "stop_lon": 2.3870991984731407, "coord": [48.766309422860196, 2.3870991984731407], "stop_id": 3686357, "stop_desc": "5 AVENUE DU GENERAL DE GAULLE - 94073", "stop_name": "LOUIS DUPERREY"}, "geometry": {"type": "Point", "coordinates": [2.3870991984731407, 48.766309422860196]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "250b70e585d30ab8772fee4d538c510f4eb82465", "fields": {"departement": "94", "stop_lat": 48.784171436693946, "code_postal": "94002", "stop_lon": 2.4279604824325824, "coord": [48.784171436693946, 2.4279604824325824], "stop_id": 3686329, "stop_desc": "175 RUE ETIENNE DOLET - 94002", "stop_name": "CIMETIERE D'ALFORTVILLE"}, "geometry": {"type": "Point", "coordinates": [2.4279604824325824, 48.784171436693946]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "de8ddb80b983753a19ae7f207f374c7f77561fa3", "fields": {"departement": "94", "stop_lat": 48.76742758567754, "code_postal": "94022", "stop_lon": 2.4140217936912625, "coord": [48.76742758567754, 2.4140217936912625], "stop_id": 3686342, "stop_desc": "FACE 4 AVENUE D'ALFORTVILLE - 94022", "stop_name": "PONT DE CHOISY"}, "geometry": {"type": "Point", "coordinates": [2.4140217936912625, 48.76742758567754]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b857aa97a25f86d62636aad0f4e7d97d5d038e3f", "fields": {"departement": "94", "stop_lat": 48.81050478489195, "code_postal": "94002", "stop_lon": 2.4169431792660587, "coord": [48.81050478489195, 2.4169431792660587], "stop_id": 3686381, "stop_desc": "85-87 RUE VAILLANT COUTURIER - 94002", "stop_name": "RUE DE SEINE"}, "geometry": {"type": "Point", "coordinates": [2.4169431792660587, 48.81050478489195]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6b81f606127ed606504e5165e6444cc53ad86882", "fields": {"departement": "94", "stop_lat": 48.803849211682014, "code_postal": "94002", "stop_lon": 2.4235456106895175, "coord": [48.803849211682014, 2.4235456106895175], "stop_id": 3686387, "stop_desc": "64 RUE VICTOR HUGO - 94002", "stop_name": "RAYMOND JACLARD"}, "geometry": {"type": "Point", "coordinates": [2.4235456106895175, 48.803849211682014]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ec36239bde52e6012a729aef216430e160e841f4", "fields": {"departement": "94", "stop_lat": 48.77458109249598, "code_postal": "94022", "stop_lon": 2.4155282112229224, "coord": [48.77458109249598, 2.4155282112229224], "stop_id": 3686336, "stop_desc": "113 AVENUE D'ALFORTVILLE - 94022", "stop_name": "MESANGES"}, "geometry": {"type": "Point", "coordinates": [2.4155282112229224, 48.77458109249598]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "843310cc9a73be8f5ae006d02784b909ad6f5f94", "fields": {"departement": "94", "stop_lat": 48.76984576717, "code_postal": "94022", "stop_lon": 2.413413485515799, "coord": [48.76984576717, 2.413413485515799], "stop_id": 3686340, "stop_desc": "35 AVENUE D'ALFORTVILLE - 94022", "stop_name": "JEAN VILAR"}, "geometry": {"type": "Point", "coordinates": [2.413413485515799, 48.76984576717]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eea49e477858ba49f7b64e5b46e0acbe5d1075e8", "fields": {"departement": "94", "stop_lat": 48.85185253110625, "code_postal": "94033", "stop_lon": 2.486789788402135, "coord": [48.85185253110625, 2.486789788402135], "stop_id": 3685894, "stop_desc": "56 RUE ROGER SALENGRO - 94033", "stop_name": "PLACE DU GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.486789788402135, 48.85185253110625]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b2191f00b0b84a40e9c3fb3727e3635cb1a704b0", "fields": {"departement": "93", "stop_lat": 48.87752101636343, "code_postal": "93064", "stop_lon": 2.479029095164195, "coord": [48.87752101636343, 2.479029095164195], "stop_id": 3685836, "stop_desc": "42 BIS BOULEVARD GABRIEL PERI - 93064", "stop_name": "GABRIEL PERI - DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.479029095164195, 48.87752101636343]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d2447990334995ab03b7432673b83431777e22c1", "fields": {"departement": "94", "stop_lat": 48.85320934460998, "code_postal": "94033", "stop_lon": 2.487025227140136, "coord": [48.85320934460998, 2.487025227140136], "stop_id": 3685896, "stop_desc": "FACE 8 AV DU VAL DE FONTENAY - 94033", "stop_name": "VAL DE FONTENAY-RER"}, "geometry": {"type": "Point", "coordinates": [2.487025227140136, 48.85320934460998]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "02a135f85953e9b4327ea96f7469f767d5d6adfe", "fields": {"departement": "93", "stop_lat": 48.86125471947248, "code_postal": "93048", "stop_lon": 2.4705393919318177, "coord": [48.86125471947248, 2.4705393919318177], "stop_id": 3685935, "stop_desc": "66 RUE DES RUFFINS - 93048", "stop_name": "VALLEE DE LA SEINE"}, "geometry": {"type": "Point", "coordinates": [2.4705393919318177, 48.86125471947248]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "13845ccb7503a21640454a918eca4c27a28d4006", "fields": {"departement": "93", "stop_lat": 48.85655341532311, "code_postal": "93048", "stop_lon": 2.4447308321174104, "coord": [48.85655341532311, 2.4447308321174104], "stop_id": 3685924, "stop_desc": "FACE 54 AVENUE GABRIEL PERI - 93048", "stop_name": "JEANNE D'ARC"}, "geometry": {"type": "Point", "coordinates": [2.4447308321174104, 48.85655341532311]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "80ea1125040d67fcf2c210ce10ed391e8a469d91", "fields": {"departement": "94", "stop_lat": 48.848844726919936, "code_postal": "94033", "stop_lon": 2.4606343943651523, "coord": [48.848844726919936, 2.4606343943651523], "stop_id": 3685877, "stop_desc": "83 BIS RUE DALAYRAC - 94033", "stop_name": "PIERRE DULAC"}, "geometry": {"type": "Point", "coordinates": [2.4606343943651523, 48.848844726919936]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a105c1a41e52555789cebce8aa07e3d8a6ff03f1", "fields": {"departement": "94", "stop_lat": 48.85592020075233, "code_postal": "94033", "stop_lon": 2.4583630764393036, "coord": [48.85592020075233, 2.4583630764393036], "stop_id": 3685928, "stop_desc": "FACE 5 AVENUE ERNEST RENAN - 94033", "stop_name": "DANTON"}, "geometry": {"type": "Point", "coordinates": [2.4583630764393036, 48.85592020075233]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8cc0dd9ae976af92448cc5de824343994141bcb9", "fields": {"departement": "94", "stop_lat": 48.848380935988196, "code_postal": "94033", "stop_lon": 2.4657672621844484, "coord": [48.848380935988196, 2.4657672621844484], "stop_id": 3685900, "stop_desc": "24 BIS RUE DALAYRAC - 94033", "stop_name": "ROUBLOT"}, "geometry": {"type": "Point", "coordinates": [2.4657672621844484, 48.848380935988196]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2be5470ef70fb293de7f01e7de837cccf412ca46", "fields": {"departement": "93", "stop_lat": 48.861079505210945, "code_postal": "93048", "stop_lon": 2.4744618752403325, "coord": [48.861079505210945, 2.4744618752403325], "stop_id": 3685936, "stop_desc": "RUE DES RUFFINS - 93048", "stop_name": "LA PAIX"}, "geometry": {"type": "Point", "coordinates": [2.4744618752403325, 48.861079505210945]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e9da1fc44ccc5116a145c7b7c72d400f4c7f7b9a", "fields": {"departement": "93", "stop_lat": 48.87524420547944, "code_postal": "93032", "stop_lon": 2.5427743952539164, "coord": [48.87524420547944, 2.5427743952539164], "stop_id": 3683033, "stop_desc": "10-12 AVENUE DU CHATEAU - 93032", "stop_name": "PLACE DES FETES"}, "geometry": {"type": "Point", "coordinates": [2.5427743952539164, 48.87524420547944]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bc35258a5209c8725f0d5e131497d0e99ddfc49f", "fields": {"departement": "77", "stop_lat": 48.87745810241919, "code_postal": "77108", "stop_lon": 2.6086359081254615, "coord": [48.87745810241919, 2.6086359081254615], "stop_id": 3682982, "stop_desc": "VOIE NOUVELLE (RN34) - 77108", "stop_name": "RUE DU CHELLEEN"}, "geometry": {"type": "Point", "coordinates": [2.6086359081254615, 48.87745810241919]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "86fa2b12bcb5fa03df22914f0ae87a16d58a410c", "fields": {"departement": "93", "stop_lat": 48.87312914193498, "code_postal": "93050", "stop_lon": 2.549632754651426, "coord": [48.87312914193498, 2.549632754651426], "stop_id": 3683036, "stop_desc": "33 RUE HIPPOLYTE PINA - 93050", "stop_name": "HIPPOLYTE PINA"}, "geometry": {"type": "Point", "coordinates": [2.549632754651426, 48.87312914193498]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6cd2c37bf23ad0ca14ca33d138ab5924920d34eb", "fields": {"departement": "93", "stop_lat": 48.86653078639535, "code_postal": "93050", "stop_lon": 2.529416807489572, "coord": [48.86653078639535, 2.529416807489572], "stop_id": 3683022, "stop_desc": "4-6 AVENUE LEON BLUM - 93050", "stop_name": "LEON BLUM"}, "geometry": {"type": "Point", "coordinates": [2.529416807489572, 48.86653078639535]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1e613dc66694381a559def2dfe5dca8b01c2766f", "fields": {"departement": "94", "stop_lat": 48.84611383325415, "code_postal": "94052", "stop_lon": 2.4904635538561393, "coord": [48.84611383325415, 2.4904635538561393], "stop_id": 3682931, "stop_desc": "155 BOULEVARD DE STRASBOURG - 94052", "stop_name": "RUE DE PLAISANCE - LYCEE LOUIS ARMAND"}, "geometry": {"type": "Point", "coordinates": [2.4904635538561393, 48.84611383325415]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2b62e87697e736f428809bbbe291323b45ba95f9", "fields": {"departement": "93", "stop_lat": 48.87663770860066, "code_postal": "93032", "stop_lon": 2.552685595350689, "coord": [48.87663770860066, 2.552685595350689], "stop_id": 3683043, "stop_desc": "FACE 50 RUE DU CHEMIN DE FER - 93032", "stop_name": "LE CHENAY-GAGNY RER"}, "geometry": {"type": "Point", "coordinates": [2.552685595350689, 48.87663770860066]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7dbe1e65162019c6f2346015b04cba6c8a7f3b42", "fields": {"departement": "93", "stop_lat": 48.862774686955795, "code_postal": "93064", "stop_lon": 2.498713070287981, "coord": [48.862774686955795, 2.498713070287981], "stop_id": 3683446, "stop_desc": "FACE 6 RUE DES DEUX COMMUNES - 93064", "stop_name": "LES DEUX COMMUNES"}, "geometry": {"type": "Point", "coordinates": [2.498713070287981, 48.862774686955795]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "172345126098163a113997fc4d815543ac255f48", "fields": {"departement": "93", "stop_lat": 48.85568878516335, "code_postal": "93049", "stop_lon": 2.5200061456617604, "coord": [48.85568878516335, 2.5200061456617604], "stop_id": 3683053, "stop_desc": "13 BOULEVARD ARISTIDE BRIAND - 93049", "stop_name": "FRANCOIS MAURIAC"}, "geometry": {"type": "Point", "coordinates": [2.5200061456617604, 48.85568878516335]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c171d3998a6cec0de64d292e685a27dd2e6753a9", "fields": {"departement": "93", "stop_lat": 48.8633048846353, "code_postal": "93064", "stop_lon": 2.4919855077691397, "coord": [48.8633048846353, 2.4919855077691397], "stop_id": 3683442, "stop_desc": "FACE 173 R VICTOR HUGO - 93064", "stop_name": "SAINT-EXUPERY"}, "geometry": {"type": "Point", "coordinates": [2.4919855077691397, 48.8633048846353]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "594feaaeafe49a29667dc3ed117d0f361f58bf9e", "fields": {"departement": "93", "stop_lat": 48.87200064890599, "code_postal": "93032", "stop_lon": 2.5669036181184093, "coord": [48.87200064890599, 2.5669036181184093], "stop_id": 3683050, "stop_desc": "132 AVENUE ROGER SALENGRO - 93032", "stop_name": "ROGER SALENGRO"}, "geometry": {"type": "Point", "coordinates": [2.5669036181184093, 48.87200064890599]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3673bdca32ddff1dc31d255f50c17f1c5eef35d3", "fields": {"departement": "93", "stop_lat": 48.87605775090422, "code_postal": "93032", "stop_lon": 2.5503396401222402, "coord": [48.87605775090422, 2.5503396401222402], "stop_id": 3683040, "stop_desc": "FACE 62 RUE DE LA MARE - 93032", "stop_name": "LA MARE"}, "geometry": {"type": "Point", "coordinates": [2.5503396401222402, 48.87605775090422]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8acd9eda84400a7e82abd82e14dec95ebe26fcfc", "fields": {"departement": "94", "stop_lat": 48.81197817551925, "code_postal": "94017", "stop_lon": 2.510530485291293, "coord": [48.81197817551925, 2.510530485291293], "stop_id": 3683475, "stop_desc": "FACE 4 BIS RUE ALBERT THOMAS - 94017", "stop_name": "MARCHE DE CHAMPIGNY-SUR-MARNE"}, "geometry": {"type": "Point", "coordinates": [2.510530485291293, 48.81197817551925]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "17875c5fbcb3208237d4a809eee6a5a4d1b87462", "fields": {"departement": "94", "stop_lat": 48.848450867931355, "code_postal": "94058", "stop_lon": 2.4970887986683175, "coord": [48.848450867931355, 2.4970887986683175], "stop_id": 3683565, "stop_desc": "226 AV DU GENERAL DE GAULLE - 94058", "stop_name": "ROND-POINT DU GENERAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.4970887986683175, 48.848450867931355]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f87748a8bdf7e7e1b1e6b4f212a77cca178a3c48", "fields": {"departement": "94", "stop_lat": 48.851789789857, "code_postal": "94033", "stop_lon": 2.4866534188993423, "coord": [48.851789789857, 2.4866534188993423], "stop_id": 3683455, "stop_desc": "FACE 56 RUE ROGER SALENGRO - 94033", "stop_name": "PLACE DU GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.4866534188993423, 48.851789789857]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f094337701a6c6594c4f8443eecbe903030fcb76", "fields": {"departement": "94", "stop_lat": 48.820656373208266, "code_postal": "94017", "stop_lon": 2.500623647427453, "coord": [48.820656373208266, 2.500623647427453], "stop_id": 3683468, "stop_desc": "26 RUE HENRI BARBUSSE - 94017", "stop_name": "GABRIEL PERI - HENRI BARBUSSE"}, "geometry": {"type": "Point", "coordinates": [2.500623647427453, 48.820656373208266]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "af707f70f1ca1cf0261edfb581878e225dd9f10f", "fields": {"departement": "94", "stop_lat": 48.82758592082908, "code_postal": "94017", "stop_lon": 2.4939072681583574, "coord": [48.82758592082908, 2.4939072681583574], "stop_id": 3683465, "stop_desc": "FACE 232 BOULEVARD DE STALINGRAD - 94017", "stop_name": "PARC DU TREMBLAY"}, "geometry": {"type": "Point", "coordinates": [2.4939072681583574, 48.82758592082908]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d473621a35fb61d3fb613585b4fe2aa76ad146b4", "fields": {"departement": "94", "stop_lat": 48.81944954485311, "code_postal": "94017", "stop_lon": 2.502416419140526, "coord": [48.81944954485311, 2.502416419140526], "stop_id": 3683555, "stop_desc": "78 BD GABRIEL PERI - 94017", "stop_name": "GABRIEL PERI - HENRI BARBUSSE"}, "geometry": {"type": "Point", "coordinates": [2.502416419140526, 48.81944954485311]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "10e3f45c9b4c5ce70367b55f6e49d3e7410be56a", "fields": {"departement": "94", "stop_lat": 48.838001853465165, "code_postal": "94058", "stop_lon": 2.4944560966386526, "coord": [48.838001853465165, 2.4944560966386526], "stop_id": 3683561, "stop_desc": "10 PLACE ROBERT BELVAUX - 94058", "stop_name": "NOGENT-LE-PERREUX RER"}, "geometry": {"type": "Point", "coordinates": [2.4944560966386526, 48.838001853465165]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a3cec1cdd7cc82d804e2fae0aff29f39c4919088", "fields": {"departement": "94", "stop_lat": 48.846263223504465, "code_postal": "94058", "stop_lon": 2.499805541229823, "coord": [48.846263223504465, 2.499805541229823], "stop_id": 3683564, "stop_desc": "176 AVENUE DU GENERAL DE GAULLE - 94058", "stop_name": "VICTOR BASCH"}, "geometry": {"type": "Point", "coordinates": [2.499805541229823, 48.846263223504465]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "07ea070dcf54ecdcce60811edc728039e1ff4943", "fields": {"departement": "94", "stop_lat": 48.84093592361724, "code_postal": "94058", "stop_lon": 2.4981004635094584, "coord": [48.84093592361724, 2.4981004635094584], "stop_id": 3683562, "stop_desc": "44 BIS-46 AVENUE LEDRU-ROLLIN - 94058", "stop_name": "LE PARC"}, "geometry": {"type": "Point", "coordinates": [2.4981004635094584, 48.84093592361724]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b0a04168041e7d96ee349d4640b8486980985dac", "fields": {"departement": "94", "stop_lat": 48.84926400554539, "code_postal": "94033", "stop_lon": 2.486891271761358, "coord": [48.84926400554539, 2.486891271761358], "stop_id": 3683567, "stop_desc": "2 RUE ROGER SALENGRO - 94033", "stop_name": "LE BOIS CADET"}, "geometry": {"type": "Point", "coordinates": [2.486891271761358, 48.84926400554539]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0e2774fd3954f1ef19dc384907a9075cdf3915a3", "fields": {"departement": "94", "stop_lat": 48.852897355111516, "code_postal": "94033", "stop_lon": 2.477531777569187, "coord": [48.852897355111516, 2.477531777569187], "stop_id": 3685701, "stop_desc": "FACE 80 AVENUE DU MARECHAL JOFFRE - 94033", "stop_name": "DANIELLE CASANOVA"}, "geometry": {"type": "Point", "coordinates": [2.477531777569187, 48.852897355111516]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "71e6a84eceb7017697c82bd7f9dece5ae85ef206", "fields": {"departement": "94", "stop_lat": 48.85339768655697, "code_postal": "94033", "stop_lon": 2.4873390145395913, "coord": [48.85339768655697, 2.4873390145395913], "stop_id": 3685706, "stop_desc": "9 AVENUE DU VAL DE FONTENAY - 94033", "stop_name": "VAL DE FONTENAY RER"}, "geometry": {"type": "Point", "coordinates": [2.4873390145395913, 48.85339768655697]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "14136b4662df4587a68fa43e3053de515e73b02a", "fields": {"departement": "94", "stop_lat": 48.85273572537729, "code_postal": "94033", "stop_lon": 2.4774087684695574, "coord": [48.85273572537729, 2.4774087684695574], "stop_id": 3685700, "stop_desc": "80 AV DU MARECHAL JOFFRE - 94033", "stop_name": "DANIELLE CASANOVA"}, "geometry": {"type": "Point", "coordinates": [2.4774087684695574, 48.85273572537729]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fdfcdeefc4735238a2516c6ca19dfbe1e307f573", "fields": {"departement": "94", "stop_lat": 48.85264792420809, "code_postal": "94033", "stop_lon": 2.467670886794354, "coord": [48.85264792420809, 2.467670886794354], "stop_id": 3685750, "stop_desc": "256 AVENUE DE LA REPUBLIQUE - 94033", "stop_name": "ANDRE TESSIER"}, "geometry": {"type": "Point", "coordinates": [2.467670886794354, 48.85264792420809]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bef01e93ec6aaa1892c7f99125108a1cd425e687", "fields": {"departement": "94", "stop_lat": 48.85241681373307, "code_postal": "94033", "stop_lon": 2.4810578052880423, "coord": [48.85241681373307, 2.4810578052880423], "stop_id": 3685756, "stop_desc": "AVENUE DU MARECHAL JOFFRE - 94033", "stop_name": "CHARLES GARCIA"}, "geometry": {"type": "Point", "coordinates": [2.4810578052880423, 48.85241681373307]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b6cd0cb0483da90033b4aaa388b145a6bffef2e0", "fields": {"departement": "93", "stop_lat": 48.86284092235296, "code_postal": "93048", "stop_lon": 2.482149209358743, "coord": [48.86284092235296, 2.482149209358743], "stop_id": 3685729, "stop_desc": "289 BIS AVENUE VICTOR HUGO - 93048", "stop_name": "JULES GUESDE"}, "geometry": {"type": "Point", "coordinates": [2.482149209358743, 48.86284092235296]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "36b89c4a050dc397fcf0a8766ae3126c570b06c7", "fields": {"departement": "94", "stop_lat": 48.85522387800214, "code_postal": "94033", "stop_lon": 2.4859550831419543, "coord": [48.85522387800214, 2.4859550831419543], "stop_id": 3685709, "stop_desc": "10-12 AV DES OLYMPIADES - 94033", "stop_name": "PABLO PICASSO"}, "geometry": {"type": "Point", "coordinates": [2.4859550831419543, 48.85522387800214]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3fbe17d3d9a2ad17881c91c72c9d2d30cf73b7a3", "fields": {"departement": "93", "stop_lat": 48.87723554930729, "code_postal": "93064", "stop_lon": 2.4846829157008528, "coord": [48.87723554930729, 2.4846829157008528], "stop_id": 3685726, "stop_desc": "5 RUE ALBERT DENISEAU - 93064", "stop_name": "VAN DERHEYDEN"}, "geometry": {"type": "Point", "coordinates": [2.4846829157008528, 48.87723554930729]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d8eca9943c8a56148f282c0f77b2409556e25822", "fields": {"departement": "94", "stop_lat": 48.85391188110829, "code_postal": "94033", "stop_lon": 2.470629477801297, "coord": [48.85391188110829, 2.470629477801297], "stop_id": 3685753, "stop_desc": "5 AVENUE DU MARECHAL JOFFRE - 94033", "stop_name": "VERDUN"}, "geometry": {"type": "Point", "coordinates": [2.470629477801297, 48.85391188110829]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "64b58842074c5a9462bfccb247847374a7d4d927", "fields": {"departement": "94", "stop_lat": 48.84938892654465, "code_postal": "94080", "stop_lon": 2.4557603648214354, "coord": [48.84938892654465, 2.4557603648214354], "stop_id": 3685731, "stop_desc": "143 RUE DEFRANCE - 94080", "stop_name": "LES RIGOLLOTS"}, "geometry": {"type": "Point", "coordinates": [2.4557603648214354, 48.84938892654465]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b30ebd6f9b3b54711d77c9168bc51513a04a9ef2", "fields": {"departement": "93", "stop_lat": 48.870449992779264, "code_postal": "93064", "stop_lon": 2.484786235477952, "coord": [48.870449992779264, 2.484786235477952], "stop_id": 3685830, "stop_desc": "26 AVENUE DE LA REPUBLIQUE - 93064", "stop_name": "ROSNY-SOUS-BOIS RER"}, "geometry": {"type": "Point", "coordinates": [2.484786235477952, 48.870449992779264]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "095e086c1846c6be82a0eb9cd6ee04e65b7ae6cc", "fields": {"departement": "94", "stop_lat": 48.850164935991366, "code_postal": "94080", "stop_lon": 2.4429335815405078, "coord": [48.850164935991366, 2.4429335815405078], "stop_id": 3685867, "stop_desc": "34 RUE CHARLES SILVESTRI - 94080", "stop_name": "DIDEROT-SILVESTRI"}, "geometry": {"type": "Point", "coordinates": [2.4429335815405078, 48.850164935991366]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d03fc0f24f9178ad663bd4ac5124c898d73d65a6", "fields": {"departement": "93", "stop_lat": 48.852186849254096, "code_postal": "93048", "stop_lon": 2.443237318088632, "coord": [48.852186849254096, 2.443237318088632], "stop_id": 3685869, "stop_desc": "35 RUE DESGRANGES - 93048", "stop_name": "DESGRANGES-SOLIDARITE"}, "geometry": {"type": "Point", "coordinates": [2.443237318088632, 48.852186849254096]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "29e2e7c596d32b04e6b809ec27e1a789e3961e2c", "fields": {"departement": "94", "stop_lat": 48.849991154984615, "code_postal": "94033", "stop_lon": 2.4556936487973515, "coord": [48.849991154984615, 2.4556936487973515], "stop_id": 3685876, "stop_desc": "8 AVENUE DE STALINGRAD - 94033", "stop_name": "LES RIGOLLOTS"}, "geometry": {"type": "Point", "coordinates": [2.4556936487973515, 48.849991154984615]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ebc925bc78d4d283a41d21a38b50b5b2924e32a4", "fields": {"departement": "94", "stop_lat": 48.85522387800214, "code_postal": "94033", "stop_lon": 2.4859550831419543, "coord": [48.85522387800214, 2.4859550831419543], "stop_id": 3685818, "stop_desc": "10-12 AV DES OLYMPIADES - 94033", "stop_name": "PABLO PICASSO"}, "geometry": {"type": "Point", "coordinates": [2.4859550831419543, 48.85522387800214]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ace6878c3e54f7f8e192144b8a3479c813978ea4", "fields": {"departement": "94", "stop_lat": 48.855351310287475, "code_postal": "94033", "stop_lon": 2.48466156778649, "coord": [48.855351310287475, 2.48466156778649], "stop_id": 3685817, "stop_desc": "23 AV DES OLYMPIADES - 94033", "stop_name": "PABLO PICASSO"}, "geometry": {"type": "Point", "coordinates": [2.48466156778649, 48.855351310287475]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "47ed41c24bf1d2b48b12689a86512a091180c50b", "fields": {"departement": "93", "stop_lat": 48.87723554930729, "code_postal": "93064", "stop_lon": 2.4846829157008528, "coord": [48.87723554930729, 2.4846829157008528], "stop_id": 3685835, "stop_desc": "5 RUE ALBERT DENISEAU - 93064", "stop_name": "VAN DERHEYDEN"}, "geometry": {"type": "Point", "coordinates": [2.4846829157008528, 48.87723554930729]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "790fa8422d510d42afe62c2567c7c9838d5a108a", "fields": {"departement": "94", "stop_lat": 48.85623563273947, "code_postal": "94033", "stop_lon": 2.4817630151132914, "coord": [48.85623563273947, 2.4817630151132914], "stop_id": 3685820, "stop_desc": "FACE 18 AV CHARLES GARCIA - 94033", "stop_name": "JEAN MACE"}, "geometry": {"type": "Point", "coordinates": [2.4817630151132914, 48.85623563273947]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4c307035d84f7cd127fdb14467bb174d414d980d", "fields": {"departement": "93", "stop_lat": 48.86685565056985, "code_postal": "93064", "stop_lon": 2.484299210246628, "coord": [48.86685565056985, 2.484299210246628], "stop_id": 3685828, "stop_desc": "72 AVENUE DE LA REPUBLIQUE - 93064", "stop_name": "MEDERIC"}, "geometry": {"type": "Point", "coordinates": [2.484299210246628, 48.86685565056985]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2731b257b622c5635d5d4cbc036bcd41a4ec0f46", "fields": {"departement": "94", "stop_lat": 48.85624422313098, "code_postal": "94033", "stop_lon": 2.4820899197772075, "coord": [48.85624422313098, 2.4820899197772075], "stop_id": 3685819, "stop_desc": "14 AV CHARLES GARCIA - 94033", "stop_name": "JEAN MACE"}, "geometry": {"type": "Point", "coordinates": [2.4820899197772075, 48.85624422313098]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1f3f8514a1b5ac82b3ee94f4ee1b9de980366a01", "fields": {"departement": "94", "stop_lat": 48.76004202458944, "code_postal": "94073", "stop_lon": 2.3686722414037877, "coord": [48.76004202458944, 2.3686722414037877], "stop_id": 3686429, "stop_desc": "AVENUE DE FONTAINEBLEAU - 94073", "stop_name": "LE COR DE CHASSE - LA BELLE EPINE"}, "geometry": {"type": "Point", "coordinates": [2.3686722414037877, 48.76004202458944]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d07d759d2313e001b28d53d300fb75fa3196748a", "fields": {"departement": "94", "stop_lat": 48.76438351129038, "code_postal": "94073", "stop_lon": 2.392658086465313, "coord": [48.76438351129038, 2.392658086465313], "stop_id": 3686436, "stop_desc": "AVENUE RENE PANHARD - 94073", "stop_name": "MAIRIE DE THIAIS"}, "geometry": {"type": "Point", "coordinates": [2.392658086465313, 48.76438351129038]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f613242866146acc76a7307d4e763685ce9ad365", "fields": {"departement": "94", "stop_lat": 48.77743755917018, "code_postal": "94002", "stop_lon": 2.4181027928439263, "coord": [48.77743755917018, 2.4181027928439263], "stop_id": 3686445, "stop_desc": "4 RUE DU CAPITAINE ALFRED DREYFUS - 94002", "stop_name": "COKERIE"}, "geometry": {"type": "Point", "coordinates": [2.4181027928439263, 48.77743755917018]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b84abf07320d122df555f78bd5cd99f427dcfea0", "fields": {"departement": "94", "stop_lat": 48.76102765772384, "code_postal": "94073", "stop_lon": 2.399316084390214, "coord": [48.76102765772384, 2.399316084390214], "stop_id": 3686423, "stop_desc": "0 AV GEORGES HALGOULT - 94073", "stop_name": "GEORGES HALGOULT"}, "geometry": {"type": "Point", "coordinates": [2.399316084390214, 48.76102765772384]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d493bf68e745e6ee89929a94da4ab541cc532035", "fields": {"departement": "94", "stop_lat": 48.77228998931445, "code_postal": "94022", "stop_lon": 2.414232948909853, "coord": [48.77228998931445, 2.414232948909853], "stop_id": 3686443, "stop_desc": "72-78 AVENUE D'ALFORTVILLE - 94022", "stop_name": "LA FOLIE"}, "geometry": {"type": "Point", "coordinates": [2.414232948909853, 48.77228998931445]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5756c76cebe047cb4e534c90f8274ec34faec69d", "fields": {"departement": "94", "stop_lat": 48.763057563786816, "code_postal": "94022", "stop_lon": 2.401956052432323, "coord": [48.763057563786816, 2.401956052432323], "stop_id": 3686425, "stop_desc": "37 AVENUE GAMBETTA - 94022", "stop_name": "RENE PANHARD"}, "geometry": {"type": "Point", "coordinates": [2.401956052432323, 48.763057563786816]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eae39c6237e002c899016733214b972ff81328c6", "fields": {"departement": "94", "stop_lat": 48.77458109249598, "code_postal": "94022", "stop_lon": 2.4155282112229224, "coord": [48.77458109249598, 2.4155282112229224], "stop_id": 3686411, "stop_desc": "113 AVENUE D'ALFORTVILLE - 94022", "stop_name": "MESANGES"}, "geometry": {"type": "Point", "coordinates": [2.4155282112229224, 48.77458109249598]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c651a699858534dec48b6e024b33c803e0240afc", "fields": {"departement": "94", "stop_lat": 48.846991013735796, "code_postal": "94033", "stop_lon": 2.471074681484275, "coord": [48.846991013735796, 2.471074681484275], "stop_id": 3685884, "stop_desc": "10 R NOTRE DAME - 94033", "stop_name": "ANCIENNE MAIRIE DE FONTENAY-SOUS-BOIS"}, "geometry": {"type": "Point", "coordinates": [2.471074681484275, 48.846991013735796]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "766f9658f1b883d05ef900eaf8af08485d3db5b3", "fields": {"departement": "94", "stop_lat": 48.84808801643971, "code_postal": "94033", "stop_lon": 2.478403934500656, "coord": [48.84808801643971, 2.478403934500656], "stop_id": 3685887, "stop_desc": "FACE 109 BOULEVARD GALLIENI - 94033", "stop_name": "HOTEL DE VILLE DE FONTENAY"}, "geometry": {"type": "Point", "coordinates": [2.478403934500656, 48.84808801643971]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7afeedbc04c343df9cad33e6aafac928f1b1a0c3", "fields": {"departement": "93", "stop_lat": 48.85764836077204, "code_postal": "93048", "stop_lon": 2.4361113957831266, "coord": [48.85764836077204, 2.4361113957831266], "stop_id": 3685920, "stop_desc": "7 PLACE JACQUES DUCLOS - 93048", "stop_name": "CROIX DE CHAVAUX-METRO"}, "geometry": {"type": "Point", "coordinates": [2.4361113957831266, 48.85764836077204]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "39120c2638eb58fb5cbc103d3f219ad4f24644d5", "fields": {"departement": "94", "stop_lat": 48.843726597210775, "code_postal": "94033", "stop_lon": 2.464652776320995, "coord": [48.843726597210775, 2.464652776320995], "stop_id": 3685881, "stop_desc": "18 PL MOREAU DAVID - 94033", "stop_name": "FONTENAY-SOUS-BOIS RER"}, "geometry": {"type": "Point", "coordinates": [2.464652776320995, 48.843726597210775]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f524bf8c0081efdc9abbbbef98b4e2f695748d43", "fields": {"departement": "93", "stop_lat": 48.85725826369815, "code_postal": "93048", "stop_lon": 2.440401041914127, "coord": [48.85725826369815, 2.440401041914127], "stop_id": 3685921, "stop_desc": "26 AVENUE GABRIEL PERI - 93048", "stop_name": "WILSON - GABRIEL PERI"}, "geometry": {"type": "Point", "coordinates": [2.440401041914127, 48.85725826369815]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fd0db287929b62ec7468facd6d7b6f32bd2c4d88", "fields": {"departement": "94", "stop_lat": 48.84926400554539, "code_postal": "94033", "stop_lon": 2.486891271761358, "coord": [48.84926400554539, 2.486891271761358], "stop_id": 3685892, "stop_desc": "2 RUE ROGER SALENGRO - 94033", "stop_name": "LE BOIS CADET"}, "geometry": {"type": "Point", "coordinates": [2.486891271761358, 48.84926400554539]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "af8e2cfd9ead6b53c60df001382ec0f802ddbfeb", "fields": {"departement": "93", "stop_lat": 48.85625648554261, "code_postal": "93048", "stop_lon": 2.4451115774479177, "coord": [48.85625648554261, 2.4451115774479177], "stop_id": 3685923, "stop_desc": "60 AVENUE GABRIEL PERI - 93048", "stop_name": "JEANNE D'ARC"}, "geometry": {"type": "Point", "coordinates": [2.4451115774479177, 48.85625648554261]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "213f528c59701dd076e6c9ee3b44f1206d04a0cc", "fields": {"departement": "94", "stop_lat": 48.84837842444064, "code_postal": "94033", "stop_lon": 2.483525079478026, "coord": [48.84837842444064, 2.483525079478026], "stop_id": 3685888, "stop_desc": "R GABRIEL LACASSAGNE - 94033", "stop_name": "MONTESQUIEU"}, "geometry": {"type": "Point", "coordinates": [2.483525079478026, 48.84837842444064]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "efc0695568664484bb1987a940eba2233d55392c", "fields": {"departement": "94", "stop_lat": 48.847319739356294, "code_postal": "94033", "stop_lon": 2.4744254798495784, "coord": [48.847319739356294, 2.4744254798495784], "stop_id": 3685885, "stop_desc": "16 BIS RUE DE NEUILLY - 94033", "stop_name": "LE PARC"}, "geometry": {"type": "Point", "coordinates": [2.4744254798495784, 48.847319739356294]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9a5b7700db9ef30e0bed2c10a32f21ba08a5f374", "fields": {"departement": "94", "stop_lat": 48.84896957443049, "code_postal": "94033", "stop_lon": 2.4615743411935584, "coord": [48.84896957443049, 2.4615743411935584], "stop_id": 3685878, "stop_desc": "RUE DALAYRAC - 94033", "stop_name": "PIERRE DULAC"}, "geometry": {"type": "Point", "coordinates": [2.4615743411935584, 48.84896957443049]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e2b16c4699041078dde1de486d17978d2c19e188", "fields": {"departement": "93", "stop_lat": 48.87752101636343, "code_postal": "93064", "stop_lon": 2.479029095164195, "coord": [48.87752101636343, 2.479029095164195], "stop_id": 3685780, "stop_desc": "42 BIS BOULEVARD GABRIEL PERI - 93064", "stop_name": "GABRIEL PERI - DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.479029095164195, 48.87752101636343]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9816ad3af1e9185ff83fbdbfc07388ffff4d4c39", "fields": {"departement": "94", "stop_lat": 48.85235832504077, "code_postal": "94033", "stop_lon": 2.4847892519496995, "coord": [48.85235832504077, 2.4847892519496995], "stop_id": 3685813, "stop_desc": "124 AVENUE DU MARECHAL JOFFRE - 94033", "stop_name": "GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.4847892519496995, 48.85235832504077]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0b0b1a8691cccac6eb0b422bd6a514056091d152", "fields": {"departement": "94", "stop_lat": 48.84702899066013, "code_postal": "94080", "stop_lon": 2.4519011919523135, "coord": [48.84702899066013, 2.4519011919523135], "stop_id": 3685798, "stop_desc": "FACE 3 PLACE DU MARECHAL LYAUTEY - 94080", "stop_name": "CLEMENT VIENOT"}, "geometry": {"type": "Point", "coordinates": [2.4519011919523135, 48.84702899066013]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b8b604b8b8b6e3967717ea98cd6c7ee670ac17ae", "fields": {"departement": "94", "stop_lat": 48.852479525084256, "code_postal": "94033", "stop_lon": 2.4568569488415384, "coord": [48.852479525084256, 2.4568569488415384], "stop_id": 3685801, "stop_desc": "54 AVENUE DE LA REPUBLIQUE - 94033", "stop_name": "ANDRE LAURENT"}, "geometry": {"type": "Point", "coordinates": [2.4568569488415384, 48.852479525084256]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "643807544e0db4d157931ccaa350cc212ec8b79b", "fields": {"departement": "94", "stop_lat": 48.85264181207475, "code_postal": "94033", "stop_lon": 2.480799666496932, "coord": [48.85264181207475, 2.480799666496932], "stop_id": 3685757, "stop_desc": "AVENUE DU MARECHAL JOFFRE - 94033", "stop_name": "CHARLES GARCIA"}, "geometry": {"type": "Point", "coordinates": [2.480799666496932, 48.85264181207475]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "668a838a8cda26063f12536642ca977d93f15b39", "fields": {"departement": "93", "stop_lat": 48.86284092235296, "code_postal": "93048", "stop_lon": 2.482149209358743, "coord": [48.86284092235296, 2.482149209358743], "stop_id": 3685784, "stop_desc": "289 BIS AVENUE VICTOR HUGO - 93048", "stop_name": "JULES GUESDE"}, "geometry": {"type": "Point", "coordinates": [2.482149209358743, 48.86284092235296]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a86c2f03d5c714223ffeb914a8d481ec59e8f4ff", "fields": {"departement": "94", "stop_lat": 48.855351310287475, "code_postal": "94033", "stop_lon": 2.48466156778649, "coord": [48.855351310287475, 2.48466156778649], "stop_id": 3685762, "stop_desc": "23 AV DES OLYMPIADES - 94033", "stop_name": "PABLO PICASSO"}, "geometry": {"type": "Point", "coordinates": [2.48466156778649, 48.855351310287475]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b3ef0030a88892231c10551ac880b7e2775b3f62", "fields": {"departement": "94", "stop_lat": 48.84683591626402, "code_postal": "94080", "stop_lon": 2.4367308149123965, "coord": [48.84683591626402, 2.4367308149123965], "stop_id": 3685793, "stop_desc": "33 AVENUE DU CHATEAU - 94080", "stop_name": "VINCENNES RER"}, "geometry": {"type": "Point", "coordinates": [2.4367308149123965, 48.84683591626402]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "afca5f18187a0e0a5ac4a1b8278bd90be5a4738f", "fields": {"departement": "94", "stop_lat": 48.8584205955465, "code_postal": "94033", "stop_lon": 2.4809246260092555, "coord": [48.8584205955465, 2.4809246260092555], "stop_id": 3685766, "stop_desc": "209 RUE LA FONTAINE - 94033", "stop_name": "LA FONTAINE"}, "geometry": {"type": "Point", "coordinates": [2.4809246260092555, 48.8584205955465]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9ad1cec409e317163d9cb2d3272d1d97946ffed3", "fields": {"departement": "93", "stop_lat": 48.872786016638045, "code_postal": "93064", "stop_lon": 2.485337857755734, "coord": [48.872786016638045, 2.485337857755734], "stop_id": 3685776, "stop_desc": "33 RUE PAUL CAVARE - 93064", "stop_name": "COPERNIC"}, "geometry": {"type": "Point", "coordinates": [2.485337857755734, 48.872786016638045]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0e6df23487faa80ce275fd412f38633849527c5d", "fields": {"departement": "93", "stop_lat": 48.86135090199443, "code_postal": "93049", "stop_lon": 2.501473777117825, "coord": [48.86135090199443, 2.501473777117825], "stop_id": 3685945, "stop_desc": "30-30 BIS RUE POULET LANGLET - 93049", "stop_name": "BOUREAU - GUERINIERE"}, "geometry": {"type": "Point", "coordinates": [2.501473777117825, 48.86135090199443]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "43d15cd79226338978b261ca641fbeabbb457bb5", "fields": {"departement": "93", "stop_lat": 48.86154879325131, "code_postal": "93049", "stop_lon": 2.501351810902685, "coord": [48.86154879325131, 2.501351810902685], "stop_id": 3685946, "stop_desc": "FACE 30 RUE POULET LANGLET - 93049", "stop_name": "BOUREAU - GUERINIERE"}, "geometry": {"type": "Point", "coordinates": [2.501351810902685, 48.86154879325131]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9b9ff144e4d1be96d2c352ca2cf1989df78a30c7", "fields": {"departement": "93", "stop_lat": 48.864094860889765, "code_postal": "93050", "stop_lon": 2.5351154453058484, "coord": [48.864094860889765, 2.5351154453058484], "stop_id": 3685964, "stop_desc": "80 AVENUE DU 8 MAI 1945 - 93050", "stop_name": "PLACE DES VICTOIRES"}, "geometry": {"type": "Point", "coordinates": [2.5351154453058484, 48.864094860889765]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "248c58e24abbaf725dfbb2abd7a8a07a257a2064", "fields": {"departement": "93", "stop_lat": 48.858000940181434, "code_postal": "93050", "stop_lon": 2.524263891171223, "coord": [48.858000940181434, 2.524263891171223], "stop_id": 3685955, "stop_desc": "43 AVENUE PAUL DOUMER - 93050", "stop_name": "VILLEBOIS - MAREUIL"}, "geometry": {"type": "Point", "coordinates": [2.524263891171223, 48.858000940181434]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3e9b891e603cbb4ccb16c3c6c69dd9761af415ac", "fields": {"departement": "93", "stop_lat": 48.86187583941278, "code_postal": "93064", "stop_lon": 2.492022108423427, "coord": [48.86187583941278, 2.492022108423427], "stop_id": 3685942, "stop_desc": "89 RUE LAVOISIER - 93064", "stop_name": "LES 10 000 ROSIERS"}, "geometry": {"type": "Point", "coordinates": [2.492022108423427, 48.86187583941278]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3fce4c4e41f4ac93ff99ecefb3a68ad0610e0c37", "fields": {"departement": "93", "stop_lat": 48.86051967720738, "code_postal": "93048", "stop_lon": 2.476707884031214, "coord": [48.86051967720738, 2.476707884031214], "stop_id": 3685939, "stop_desc": "150 RUE PIERRE CURIE - 93048", "stop_name": "JULIETTE DODU"}, "geometry": {"type": "Point", "coordinates": [2.476707884031214, 48.86051967720738]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f5ecd8d155cb1216d093066239edd115f1e8859d", "fields": {"departement": "94", "stop_lat": 48.856069632728996, "code_postal": "94033", "stop_lon": 2.4616186001246665, "coord": [48.856069632728996, 2.4616186001246665], "stop_id": 3685930, "stop_desc": "54 AVENUE ERNEST RENAN - 94033", "stop_name": "VEDRINES"}, "geometry": {"type": "Point", "coordinates": [2.4616186001246665, 48.856069632728996]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4e2e52fbafedf142f196a0f1773945fe0bcbd497", "fields": {"departement": "93", "stop_lat": 48.86589496606923, "code_postal": "93050", "stop_lon": 2.5335284715513957, "coord": [48.86589496606923, 2.5335284715513957], "stop_id": 3685965, "stop_desc": "11-13 RUE DU ROUSSILLON - 93050", "stop_name": "ROUSSILLON"}, "geometry": {"type": "Point", "coordinates": [2.5335284715513957, 48.86589496606923]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cebe16161a6d3f303b14c9df95910763b46e5837", "fields": {"departement": "93", "stop_lat": 48.86026248208126, "code_postal": "93048", "stop_lon": 2.4737377962056755, "coord": [48.86026248208126, 2.4737377962056755], "stop_id": 3685937, "stop_desc": "FACE 107 RUE PIERRE CURIE - 93048", "stop_name": "LA PAIX"}, "geometry": {"type": "Point", "coordinates": [2.4737377962056755, 48.86026248208126]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3ebfbc8ec4da7396eee5466b9cf7cd2821081239", "fields": {"departement": "93", "stop_lat": 48.86247878577489, "code_postal": "93064", "stop_lon": 2.4982081470855877, "coord": [48.86247878577489, 2.4982081470855877], "stop_id": 3685972, "stop_desc": "4-6 RUE LAVOISIER - 93064", "stop_name": "EUGENE SUE"}, "geometry": {"type": "Point", "coordinates": [2.4982081470855877, 48.86247878577489]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c93b253ae01278dde24839ea05e8ba8c6e87db5e", "fields": {"departement": "94", "stop_lat": 48.83547370371285, "code_postal": "94052", "stop_lon": 2.474802599415442, "coord": [48.83547370371285, 2.474802599415442], "stop_id": 3686065, "stop_desc": "12 GR CHARLES DE GAULLE - 94052", "stop_name": "PLACE DU GENERAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.474802599415442, 48.83547370371285]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "60dd8c7a70f984b742873ab3bbe7276547902c7d", "fields": {"departement": "94", "stop_lat": 48.84702899066013, "code_postal": "94080", "stop_lon": 2.4519011919523135, "coord": [48.84702899066013, 2.4519011919523135], "stop_id": 3686060, "stop_desc": "FACE 3 PLACE DU MARECHAL LYAUTEY - 94080", "stop_name": "CLEMENT VIENOT"}, "geometry": {"type": "Point", "coordinates": [2.4519011919523135, 48.84702899066013]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5a22f6339c2bc5f6d926e3796b0ed3cc59e865e6", "fields": {"departement": "94", "stop_lat": 48.805320051618516, "code_postal": "94002", "stop_lon": 2.4150983226414313, "coord": [48.805320051618516, 2.4150983226414313], "stop_id": 3686309, "stop_desc": "FACE 173 PLACE SALVADOR ALLENDE - 94002", "stop_name": "SALVADOR ALLENDE"}, "geometry": {"type": "Point", "coordinates": [2.4150983226414313, 48.805320051618516]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "92f88d784970e6166121ae966d0df4bca27d2be6", "fields": {"departement": "94", "stop_lat": 48.80431895803931, "code_postal": "94002", "stop_lon": 2.420199218744179, "coord": [48.80431895803931, 2.420199218744179], "stop_id": 3686310, "stop_desc": "36 RUE VICTOR HUGO - 94002", "stop_name": "MAIRIE D'ALFORTVILLE"}, "geometry": {"type": "Point", "coordinates": [2.420199218744179, 48.80431895803931]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "42cbd1640ab8be6a527f2bacafe5062ee694786b", "fields": {"departement": "94", "stop_lat": 48.80393001308312, "code_postal": "94002", "stop_lon": 2.4236682016103535, "coord": [48.80393001308312, 2.4236682016103535], "stop_id": 3686313, "stop_desc": "71-73 RUE VICTOR HUGO - 94002", "stop_name": "RAYMOND JACLARD"}, "geometry": {"type": "Point", "coordinates": [2.4236682016103535, 48.80393001308312]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9835b0b931c6c28babab96309b1d84e30f81bdc2", "fields": {"departement": "94", "stop_lat": 48.781627104512765, "code_postal": "94002", "stop_lon": 2.4289216711576915, "coord": [48.781627104512765, 2.4289216711576915], "stop_id": 3686331, "stop_desc": "CHEMIN DE VILLENEUVE - 94002", "stop_name": "VAL DE SEINE"}, "geometry": {"type": "Point", "coordinates": [2.4289216711576915, 48.781627104512765]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ceb304dcf999c0bd01eca0b38a3214ed2d9ddbfa", "fields": {"departement": "94", "stop_lat": 48.77835061042173, "code_postal": "94002", "stop_lon": 2.4234080543734717, "coord": [48.77835061042173, 2.4234080543734717], "stop_id": 3686333, "stop_desc": "RUE J.B. PREUX - 94002", "stop_name": "DIGUE-REVOLUTION"}, "geometry": {"type": "Point", "coordinates": [2.4234080543734717, 48.77835061042173]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6183f8d0a631e6eaa15f0242546ea19c47f006e4", "fields": {"departement": "94", "stop_lat": 48.80740318614468, "code_postal": "94002", "stop_lon": 2.41814945914464, "coord": [48.80740318614468, 2.41814945914464], "stop_id": 3686308, "stop_desc": "149 BIS RUE VAILLANT COUTURIER - 94002", "stop_name": "UNION"}, "geometry": {"type": "Point", "coordinates": [2.41814945914464, 48.80740318614468]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f05692f60f3165de4832f7a3d3bc59b9507eed9a", "fields": {"departement": "94", "stop_lat": 48.793197085921115, "code_postal": "94002", "stop_lon": 2.42560924222485, "coord": [48.793197085921115, 2.42560924222485], "stop_id": 3686323, "stop_desc": "69-71 RUE ETIENNE DOLET - 94002", "stop_name": "ROSES"}, "geometry": {"type": "Point", "coordinates": [2.42560924222485, 48.793197085921115]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a4b8d48d83408ec2bbdc96b8b86453ae108ee0d4", "fields": {"departement": "94", "stop_lat": 48.80733356562484, "code_postal": "94002", "stop_lon": 2.4147203407460958, "coord": [48.80733356562484, 2.4147203407460958], "stop_id": 3686307, "stop_desc": "114 RUE VERON - 94002", "stop_name": "UNION"}, "geometry": {"type": "Point", "coordinates": [2.4147203407460958, 48.80733356562484]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "820c51de40000815963b76cbe71c6bd5c8637e3e", "fields": {"departement": "94", "stop_lat": 48.8150761171624, "code_postal": "94046", "stop_lon": 2.4219175598697325, "coord": [48.8150761171624, 2.4219175598697325], "stop_id": 3686374, "stop_desc": "31-35 AVENUE DU GENERAL LECLERC - 94046", "stop_name": "ECOLE VETERINAIRE DE MAISONS-ALFORT"}, "geometry": {"type": "Point", "coordinates": [2.4219175598697325, 48.8150761171624]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "543771ca51548509e986acb616b29b86c5849085", "fields": {"departement": "94", "stop_lat": 48.76654331143228, "code_postal": "94073", "stop_lon": 2.3866235455230114, "coord": [48.76654331143228, 2.3866235455230114], "stop_id": 3686356, "stop_desc": "2 AVENUE DU GENERAL DE GAULLE - 94073", "stop_name": "LOUIS DUPERREY"}, "geometry": {"type": "Point", "coordinates": [2.3866235455230114, 48.76654331143228]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "817490866f70d2a92ee0f99e5b336844309d75bd", "fields": {"departement": "94", "stop_lat": 48.76438351129038, "code_postal": "94073", "stop_lon": 2.392658086465313, "coord": [48.76438351129038, 2.392658086465313], "stop_id": 3686353, "stop_desc": "AVENUE RENE PANHARD - 94073", "stop_name": "MAIRIE DE THIAIS"}, "geometry": {"type": "Point", "coordinates": [2.392658086465313, 48.76438351129038]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aa9db323f86bdd602396949d8a98f79f3dbbd15e", "fields": {"departement": "94", "stop_lat": 48.77743755917018, "code_postal": "94002", "stop_lon": 2.4181027928439263, "coord": [48.77743755917018, 2.4181027928439263], "stop_id": 3686335, "stop_desc": "4 RUE DU CAPITAINE ALFRED DREYFUS - 94002", "stop_name": "COKERIE"}, "geometry": {"type": "Point", "coordinates": [2.4181027928439263, 48.77743755917018]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1177bda04bd6a8cb6c728cccd34e339219ffbe88", "fields": {"departement": "94", "stop_lat": 48.76426039590838, "code_postal": "94022", "stop_lon": 2.4047854974824947, "coord": [48.76426039590838, 2.4047854974824947], "stop_id": 3686346, "stop_desc": "4 AVENUE GAMBETTA - 94022", "stop_name": "ROUGET DE LISLE"}, "geometry": {"type": "Point", "coordinates": [2.4047854974824947, 48.76426039590838]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1664a3c6a350bfd0fcabb067b5b9c1a064769173", "fields": {"departement": "94", "stop_lat": 48.79513870946367, "code_postal": "94002", "stop_lon": 2.4252860502076823, "coord": [48.79513870946367, 2.4252860502076823], "stop_id": 3686395, "stop_desc": "52 BIS RUE ETIENNE DOLET - 94002", "stop_name": "ACHTARAK"}, "geometry": {"type": "Point", "coordinates": [2.4252860502076823, 48.79513870946367]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "777356e4525562a31c3aaee0731b318e16e4e0ac", "fields": {"departement": "94", "stop_lat": 48.77228998931445, "code_postal": "94022", "stop_lon": 2.414232948909853, "coord": [48.77228998931445, 2.414232948909853], "stop_id": 3686339, "stop_desc": "72-78 AVENUE D'ALFORTVILLE - 94022", "stop_name": "LA FOLIE"}, "geometry": {"type": "Point", "coordinates": [2.414232948909853, 48.77228998931445]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "14ab76cef8515713cbe4587f1e3d87b6a2d76efd", "fields": {"departement": "94", "stop_lat": 48.75908996737717, "code_postal": "94021", "stop_lon": 2.3659663516074483, "coord": [48.75908996737717, 2.3659663516074483], "stop_id": 3686367, "stop_desc": "RUE DE THIAIS - 94021", "stop_name": "PORTE DE THIAIS"}, "geometry": {"type": "Point", "coordinates": [2.3659663516074483, 48.75908996737717]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2c741513cd1ccceae5e31bba0468eb83fff46ea2", "fields": {"departement": "94", "stop_lat": 48.77165221585349, "code_postal": "94022", "stop_lon": 2.4136472969351543, "coord": [48.77165221585349, 2.4136472969351543], "stop_id": 3686338, "stop_desc": "59 AVENUE D'ALFORTVILLE - 94022", "stop_name": "LA FOLIE"}, "geometry": {"type": "Point", "coordinates": [2.4136472969351543, 48.77165221585349]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2ff6fd4020f48e28856d8bd2f3cbd98ee93bf7cd", "fields": {"departement": "94", "stop_lat": 48.793197085921115, "code_postal": "94002", "stop_lon": 2.42560924222485, "coord": [48.793197085921115, 2.42560924222485], "stop_id": 3686398, "stop_desc": "69-71 RUE ETIENNE DOLET - 94002", "stop_name": "ROSES"}, "geometry": {"type": "Point", "coordinates": [2.42560924222485, 48.793197085921115]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "54ef2968f9335b674c38071f73e8b4729216c4ff", "fields": {"departement": "94", "stop_lat": 48.79008704138252, "code_postal": "94002", "stop_lon": 2.425916812256359, "coord": [48.79008704138252, 2.425916812256359], "stop_id": 3686451, "stop_desc": "FACE 108 RUE ETIENNE DOLET - 94002", "stop_name": "PLACE DU PETIT PONT"}, "geometry": {"type": "Point", "coordinates": [2.425916812256359, 48.79008704138252]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "84ff47c79077c65d245f277e3a9515bdc2e275b3", "fields": {"departement": "94", "stop_lat": 48.80532493367181, "code_postal": "94002", "stop_lon": 2.4211396852482028, "coord": [48.80532493367181, 2.4211396852482028], "stop_id": 3686458, "stop_desc": "RUE JOSEPH FRANCESCHI - 94002", "stop_name": "MAIRIE D'ALFORTVILLE"}, "geometry": {"type": "Point", "coordinates": [2.4211396852482028, 48.80532493367181]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d72e1da733ed8c24d5475886d7c5c0992ff9c33b", "fields": {"departement": "93", "stop_lat": 48.92906279150295, "code_postal": "93066", "stop_lon": 2.362323454375307, "coord": [48.92906279150295, 2.362323454375307], "stop_id": 4009066, "stop_desc": "FACE 54 RUE DANIELLE CASANOVA - 93066", "stop_name": "HOPITAL"}, "geometry": {"type": "Point", "coordinates": [2.362323454375307, 48.92906279150295]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6a64624eb1c5df22a9c547b19c70befed6f712fa", "fields": {"departement": "93", "stop_lat": 48.9270581864218, "code_postal": "93066", "stop_lon": 2.364709244301241, "coord": [48.9270581864218, 2.364709244301241], "stop_id": 4009075, "stop_desc": "108-110 RUE DANIELLE CASANOVA - 93066", "stop_name": "CHARLES CROS"}, "geometry": {"type": "Point", "coordinates": [2.364709244301241, 48.9270581864218]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "007421a17957afbf90a85082be598996d693a498", "fields": {"departement": "93", "stop_lat": 48.91858851115932, "code_postal": "93001", "stop_lon": 2.3785047925140153, "coord": [48.91858851115932, 2.3785047925140153], "stop_id": 4009079, "stop_desc": "RUE DE SAINT-DENIS - 93001", "stop_name": "HEURTAULT"}, "geometry": {"type": "Point", "coordinates": [2.3785047925140153, 48.91858851115932]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "060fdea7b1050b6b111f5fafba6eb97840caf145", "fields": {"departement": "93", "stop_lat": 48.891454882127, "code_postal": "93055", "stop_lon": 2.4023344067333996, "coord": [48.891454882127, 2.4023344067333996], "stop_id": 4009092, "stop_desc": "3 RUE HOCHE - 93055", "stop_name": "HOCHE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.4023344067333996, 48.891454882127]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "db5f83f0c489fb29c21f2811d1f06914374bd256", "fields": {"departement": "93", "stop_lat": 48.882593144918104, "code_postal": "93061", "stop_lon": 2.402963746832259, "coord": [48.882593144918104, 2.402963746832259], "stop_id": 4009095, "stop_desc": "86 RUE ANDRE JOINEAU - 93061", "stop_name": "MAIRIE DU PRE-SAINT-GERVAIS"}, "geometry": {"type": "Point", "coordinates": [2.402963746832259, 48.882593144918104]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f95cdace19208356eb0c431710f3381754478727", "fields": {"departement": "75", "stop_lat": 48.880334893779356, "code_postal": "75119", "stop_lon": 2.4072668082900868, "coord": [48.880334893779356, 2.4072668082900868], "stop_id": 4009097, "stop_desc": "55 AVENUE DU BELVEDERE - 75119", "stop_name": "JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.4072668082900868, 48.880334893779356]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3cfac2d90a3264614788108682441bee6c9c46e5", "fields": {"departement": "92", "stop_lat": 48.819326981799016, "code_postal": "92048", "stop_lon": 2.229896447704205, "coord": [48.819326981799016, 2.229896447704205], "stop_id": 4009100, "stop_desc": "PLACE DE LA GARE - 92048", "stop_name": "GARE DE BELLEVUE"}, "geometry": {"type": "Point", "coordinates": [2.229896447704205, 48.819326981799016]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c97dc712cd1f2dfc12ce3a0b0e2b06ee87798bf8", "fields": {"departement": "92", "stop_lat": 48.8096941042701, "code_postal": "92048", "stop_lon": 2.2321208331333207, "coord": [48.8096941042701, 2.2321208331333207], "stop_id": 4009110, "stop_desc": "FACE 30 RUE TERRE NEUVE - 92048", "stop_name": "OBSERVATOIRE"}, "geometry": {"type": "Point", "coordinates": [2.2321208331333207, 48.8096941042701]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d98da775dafc07e5b7da8edb698fd1df5d5b6401", "fields": {"departement": "92", "stop_lat": 48.8075402745395, "code_postal": "92048", "stop_lon": 2.2358535787928604, "coord": [48.8075402745395, 2.2358535787928604], "stop_id": 4009112, "stop_desc": "36-38 RUE DE LA REPUBLIQUE - 92048", "stop_name": "EGLISE DE MEUDON"}, "geometry": {"type": "Point", "coordinates": [2.2358535787928604, 48.8075402745395]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a059945cf167b4799d37f63987937592a1fb6132", "fields": {"departement": "92", "stop_lat": 48.80635626509692, "code_postal": "92048", "stop_lon": 2.238686132716897, "coord": [48.80635626509692, 2.238686132716897], "stop_id": 4009115, "stop_desc": "31 AVENUE LOUVOIS - 92048", "stop_name": "VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.238686132716897, 48.80635626509692]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ba1caae080f1a5b344434d760248b1bb21e86e17", "fields": {"departement": "92", "stop_lat": 48.806971284229796, "code_postal": "92048", "stop_lon": 2.2434474466584287, "coord": [48.806971284229796, 2.2434474466584287], "stop_id": 4009117, "stop_desc": "12 RUE CHARLES INFROIT - 92048", "stop_name": "LARRIS"}, "geometry": {"type": "Point", "coordinates": [2.2434474466584287, 48.806971284229796]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f5d711a9cbe930b4b0e72831139ee543a4612615", "fields": {"departement": "92", "stop_lat": 48.814122121331565, "code_postal": "92048", "stop_lon": 2.228832103890688, "coord": [48.814122121331565, 2.228832103890688], "stop_id": 4009142, "stop_desc": "FACE 13 RUE DES CAPUCINS - 92048", "stop_name": "CAPUCINS - BEL AIR"}, "geometry": {"type": "Point", "coordinates": [2.228832103890688, 48.814122121331565]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c5bf28dcdf7194ffa4dc6068692f5dd15a97833a", "fields": {"departement": "92", "stop_lat": 48.81437001409935, "code_postal": "92048", "stop_lon": 2.224776094287459, "coord": [48.81437001409935, 2.224776094287459], "stop_id": 4009143, "stop_desc": "9 BIS R DU BEL AIR - 92048", "stop_name": "COLLEGE - BEL AIR"}, "geometry": {"type": "Point", "coordinates": [2.224776094287459, 48.81437001409935]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c1c1a8ac488979aa4f453c8281fb4138d90ffc28", "fields": {"departement": "92", "stop_lat": 48.80319813132894, "code_postal": "92048", "stop_lon": 2.2346511158179676, "coord": [48.80319813132894, 2.2346511158179676], "stop_id": 4009156, "stop_desc": "RUE DES VERTUGADINS - 92048", "stop_name": "TRIVAUX - VERTUGADINS"}, "geometry": {"type": "Point", "coordinates": [2.2346511158179676, 48.80319813132894]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4551bddb2a678a213f287d045815f120d525d872", "fields": {"departement": "92", "stop_lat": 48.80240071382716, "code_postal": "92048", "stop_lon": 2.237591564608259, "coord": [48.80240071382716, 2.237591564608259], "stop_id": 4009157, "stop_desc": "RUE GEORGES LANGOGNET - 92048", "stop_name": "LYCEE RABELAIS"}, "geometry": {"type": "Point", "coordinates": [2.237591564608259, 48.80240071382716]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1c1fc26e671097c7783e262569bf6fe23e2dfab2", "fields": {"departement": "92", "stop_lat": 48.80635626509692, "code_postal": "92048", "stop_lon": 2.238686132716897, "coord": [48.80635626509692, 2.238686132716897], "stop_id": 4009158, "stop_desc": "31 AVENUE LOUVOIS - 92048", "stop_name": "VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.238686132716897, 48.80635626509692]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ddb19843116b15b3b028831e4a2bd2adf9c29779", "fields": {"departement": "92", "stop_lat": 48.812977370400574, "code_postal": "92048", "stop_lon": 2.2463488472669777, "coord": [48.812977370400574, 2.2463488472669777], "stop_id": 4009168, "stop_desc": "AVENUE JEAN JAURES - 92048", "stop_name": "VIADUC"}, "geometry": {"type": "Point", "coordinates": [2.2463488472669777, 48.812977370400574]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "acb8c70a9fd298999abdb85d69e5c3be73fa36c9", "fields": {"departement": "92", "stop_lat": 48.80923255684322, "code_postal": "92048", "stop_lon": 2.2389256099224246, "coord": [48.80923255684322, 2.2389256099224246], "stop_id": 4009170, "stop_desc": "138 R DE PARIS - 92048", "stop_name": "MAISON ROUGE - RUE DE PARIS"}, "geometry": {"type": "Point", "coordinates": [2.2389256099224246, 48.80923255684322]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8a9b71f31e339c47e9518149c5fa1434c0d0caf0", "fields": {"departement": "92", "stop_lat": 48.81328728338661, "code_postal": "92048", "stop_lon": 2.2404421090340594, "coord": [48.81328728338661, 2.2404421090340594], "stop_id": 4009174, "stop_desc": "FACE 3-5 RUE CLAUDE DALSEME - 92048", "stop_name": "CLAUDE DALSEME"}, "geometry": {"type": "Point", "coordinates": [2.2404421090340594, 48.81328728338661]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a0e7031b3c539729fef2c694c0cb97dbfa93a4a6", "fields": {"departement": "92", "stop_lat": 48.81735392391437, "code_postal": "92048", "stop_lon": 2.2457287409352795, "coord": [48.81735392391437, 2.2457287409352795], "stop_id": 4009177, "stop_desc": "RUE DES MONTALETS - 92048", "stop_name": "JULES GERARD"}, "geometry": {"type": "Point", "coordinates": [2.2457287409352795, 48.81735392391437]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e83869c21324c41ac52368403bb63f82e9a018af", "fields": {"departement": "92", "stop_lat": 48.822846947805765, "code_postal": "92040", "stop_lon": 2.2761674178858353, "coord": [48.822846947805765, 2.2761674178858353], "stop_id": 4009224, "stop_desc": "PLACE DE L'EGLISE - 92040", "stop_name": "PLACE DE L'EGLISE"}, "geometry": {"type": "Point", "coordinates": [2.2761674178858353, 48.822846947805765]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "97ac0d4d4615025c983f3390b2d926cfef5e933a", "fields": {"departement": "92", "stop_lat": 48.82181559799734, "code_postal": "92040", "stop_lon": 2.2806874757051174, "coord": [48.82181559799734, 2.2806874757051174], "stop_id": 4009227, "stop_desc": "9-11 RUE GEORGES MARCEL BURGUN - 92040", "stop_name": "MARCEL BURGUN - CARNOT"}, "geometry": {"type": "Point", "coordinates": [2.2806874757051174, 48.82181559799734]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f32930fdcd78fc9edd94e82d244c2b238aea29ce", "fields": {"departement": "92", "stop_lat": 48.82477864715537, "code_postal": "92040", "stop_lon": 2.274912862904717, "coord": [48.82477864715537, 2.274912862904717], "stop_id": 4009240, "stop_desc": "FACE 45 R DU GENERAL LECLERC - 92040", "stop_name": "HORACE VERNET - MAIRIE"}, "geometry": {"type": "Point", "coordinates": [2.274912862904717, 48.82477864715537]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "035c4131c61179a10473ea3c7d45204958b0de4c", "fields": {"departement": "92", "stop_lat": 48.824805063874585, "code_postal": "92040", "stop_lon": 2.27387833738733, "coord": [48.824805063874585, 2.27387833738733], "stop_id": 4009255, "stop_desc": "RUE KLEBER - 92040", "stop_name": "MAIRIE D'ISSY-METRO"}, "geometry": {"type": "Point", "coordinates": [2.27387833738733, 48.824805063874585]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "97cecafd6e50271211dae13301129336f92088e8", "fields": {"departement": "92", "stop_lat": 48.82653487237657, "code_postal": "92040", "stop_lon": 2.265409427403458, "coord": [48.82653487237657, 2.265409427403458], "stop_id": 4009257, "stop_desc": "7-9 R DU CAPITAINE FERBER - 92040", "stop_name": "CAPITAINE FERBER"}, "geometry": {"type": "Point", "coordinates": [2.265409427403458, 48.82653487237657]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e3a6e9d812d5b167df5b7d65c1b126fd3e159fe8", "fields": {"departement": "92", "stop_lat": 48.82181265292137, "code_postal": "92040", "stop_lon": 2.2468097566301335, "coord": [48.82181265292137, 2.2468097566301335], "stop_id": 4009265, "stop_desc": "FACE 38 RUE PIERRE POLI - 92040", "stop_name": "ALLEE DES MOULINEAUX"}, "geometry": {"type": "Point", "coordinates": [2.2468097566301335, 48.82181265292137]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2deccf1c1f2473c53e404ac7a36883b1ab90d3e4", "fields": {"departement": "92", "stop_lat": 48.82229951120315, "code_postal": "92040", "stop_lon": 2.248836963249033, "coord": [48.82229951120315, 2.248836963249033], "stop_id": 4009266, "stop_desc": "11 RUE PIERRE POLI - 92040", "stop_name": "PIERRE POLI"}, "geometry": {"type": "Point", "coordinates": [2.248836963249033, 48.82229951120315]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e95b0b800595790bfc2e7e4b1ad7e1435d86b222", "fields": {"departement": "92", "stop_lat": 48.82328229032241, "code_postal": "92040", "stop_lon": 2.267006459297967, "coord": [48.82328229032241, 2.267006459297967], "stop_id": 4009271, "stop_desc": "FACE 41 RUE D'ESTIENNE D'ORVES - 92040", "stop_name": "GALLIENI"}, "geometry": {"type": "Point", "coordinates": [2.267006459297967, 48.82328229032241]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e1de22fef6d643584d916660b033df20bf883023", "fields": {"departement": "92", "stop_lat": 48.917697693809146, "code_postal": "92025", "stop_lon": 2.2246335604322915, "coord": [48.917697693809146, 2.2246335604322915], "stop_id": 4009354, "stop_desc": "FACE 195 BD CHARLES DE GAULLE - 92025", "stop_name": "PARC PIERRE LAGRAVERE"}, "geometry": {"type": "Point", "coordinates": [2.2246335604322915, 48.917697693809146]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a09038c60ba88344dd783f5feaedb0da70e87ad1", "fields": {"departement": "92", "stop_lat": 48.913766565994386, "code_postal": "92025", "stop_lon": 2.230259785448907, "coord": [48.913766565994386, 2.230259785448907], "stop_id": 4009356, "stop_desc": "FACE 117 BD CHARLES DE GAULLE - 92025", "stop_name": "VICTOR BASCH"}, "geometry": {"type": "Point", "coordinates": [2.230259785448907, 48.913766565994386]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f24224191191672080080546c930f55fafb9301f", "fields": {"departement": "92", "stop_lat": 48.90243265936361, "code_postal": "92035", "stop_lon": 2.239294045593773, "coord": [48.90243265936361, 2.239294045593773], "stop_id": 4009361, "stop_desc": "7 BD NATIONAL - 92035", "stop_name": "LES FAUVELLES"}, "geometry": {"type": "Point", "coordinates": [2.239294045593773, 48.90243265936361]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "08fd0ae1456bf29dcf578f90fd748f410340344e", "fields": {"departement": "92", "stop_lat": 48.89687952795178, "code_postal": "92026", "stop_lon": 2.2404086291518763, "coord": [48.89687952795178, 2.2404086291518763], "stop_id": 4009364, "stop_desc": "20 BD DE LA MISSION MARCHAND - 92026", "stop_name": "FAUBOURG DE L'ARCHE"}, "geometry": {"type": "Point", "coordinates": [2.2404086291518763, 48.89687952795178]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "46d4394b4687b7dc6de05919dbb079cc11ffaecb", "fields": {"departement": "92", "stop_lat": 48.88312309074343, "code_postal": "92062", "stop_lon": 2.2332528586818414, "coord": [48.88312309074343, 2.2332528586818414], "stop_id": 4009368, "stop_desc": "2 CHE DE LA STATION - 92062", "stop_name": "PUTEAUX"}, "geometry": {"type": "Point", "coordinates": [2.2332528586818414, 48.88312309074343]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "649d2af92436b1e82ad0b7fa58ab9e80548dc58b", "fields": {"departement": "92", "stop_lat": 48.856688420034665, "code_postal": "92064", "stop_lon": 2.220434837741866, "coord": [48.856688420034665, 2.220434837741866], "stop_id": 4009374, "stop_desc": "BD SENARD - 92064", "stop_name": "LES COTEAUX"}, "geometry": {"type": "Point", "coordinates": [2.220434837741866, 48.856688420034665]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "81e1b15069416b36c1dc0abcdc431a7b76e80142", "fields": {"departement": "92", "stop_lat": 48.842893832085416, "code_postal": "92064", "stop_lon": 2.221677770048452, "coord": [48.842893832085416, 2.221677770048452], "stop_id": 4009377, "stop_desc": "3 R DANTAN - 92064", "stop_name": "PARC DE ST-CLOUD"}, "geometry": {"type": "Point", "coordinates": [2.221677770048452, 48.842893832085416]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dcca2f3c51d4e1360f5bce18e40330a0aa77cafa", "fields": {"departement": "92", "stop_lat": 48.82875968379714, "code_postal": "92072", "stop_lon": 2.225166902460968, "coord": [48.82875968379714, 2.225166902460968], "stop_id": 4009379, "stop_desc": "QUAI DE SEVRES - 92072", "stop_name": "MUSEE DE SEVRES"}, "geometry": {"type": "Point", "coordinates": [2.225166902460968, 48.82875968379714]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1a7b5e967fb00d95ee08026e83d159be7789c24f", "fields": {"departement": "92", "stop_lat": 48.82860707343412, "code_postal": "92072", "stop_lon": 2.2253578108257597, "coord": [48.82860707343412, 2.2253578108257597], "stop_id": 4009380, "stop_desc": "QUAI DE SEVRES - 92072", "stop_name": "MUSEE DE SEVRES"}, "geometry": {"type": "Point", "coordinates": [2.2253578108257597, 48.82860707343412]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9bcf99eddf9d27569829d710d7da848f3494016c", "fields": {"departement": "75", "stop_lat": 48.833551236507404, "code_postal": "75115", "stop_lon": 2.2761820444621668, "coord": [48.833551236507404, 2.2761820444621668], "stop_id": 4009392, "stop_desc": "PL DES MARTYRS DE LA RESISTANCE DE LA PORTE DE SEVRES - 75115", "stop_name": "SUZANNE LENGLEN"}, "geometry": {"type": "Point", "coordinates": [2.2761820444621668, 48.833551236507404]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b1fc11f0da9668e0692268489891f997a3225239", "fields": {"departement": "92", "stop_lat": 48.83185497318259, "code_postal": "92040", "stop_lon": 2.2810440992866385, "coord": [48.83185497318259, 2.2810440992866385], "stop_id": 4009395, "stop_desc": "2 R D'ORADOUR-SUR-GLANE - 92040", "stop_name": "PORTE D'ISSY"}, "geometry": {"type": "Point", "coordinates": [2.2810440992866385, 48.83185497318259]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a287a93e4b3d480459d78bde11e7832015e10e92", "fields": {"departement": "75", "stop_lat": 48.8464261185428, "code_postal": "75115", "stop_lon": 2.315589350810912, "coord": [48.8464261185428, 2.315589350810912], "stop_id": 4009537, "stop_desc": "147 BIS RUE DE SEVRES - 75115", "stop_name": "HOPITAL DES ENFANTS MALADES"}, "geometry": {"type": "Point", "coordinates": [2.315589350810912, 48.8464261185428]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "19c161ee41929324f4cf75bcb4032878e5182a0f", "fields": {"departement": "75", "stop_lat": 48.84483663038162, "code_postal": "75106", "stop_lon": 2.3246317107880734, "coord": [48.84483663038162, 2.3246317107880734], "stop_id": 4009620, "stop_desc": "146 BIS RUE DE RENNES - 75106", "stop_name": "RENNES - LITTRE"}, "geometry": {"type": "Point", "coordinates": [2.3246317107880734, 48.84483663038162]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c7c54b74c763b0be0f34b2b6b12e9727b9927684", "fields": {"departement": "75", "stop_lat": 48.84992381627841, "code_postal": "75106", "stop_lon": 2.3273949975521484, "coord": [48.84992381627841, 2.3273949975521484], "stop_id": 4009625, "stop_desc": "59 BOULEVARD RASPAIL - 75106", "stop_name": "RUE DU CHERCHE MIDI"}, "geometry": {"type": "Point", "coordinates": [2.3273949975521484, 48.84992381627841]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9222e740e7dc6c6640977eb9aed4e658025db542", "fields": {"departement": "75", "stop_lat": 48.851910000570065, "code_postal": "75107", "stop_lon": 2.3268362464345342, "coord": [48.851910000570065, 2.3268362464345342], "stop_id": 4009626, "stop_desc": "39 BOULEVARD RASPAIL - 75107", "stop_name": "SEVRES - BABYLONE"}, "geometry": {"type": "Point", "coordinates": [2.3268362464345342, 48.851910000570065]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bdfef9c26990aebec1721d4e5e1eebb3d3caa545", "fields": {"departement": "75", "stop_lat": 48.8562418518031, "code_postal": "75107", "stop_lon": 2.3257457758743554, "coord": [48.8562418518031, 2.3257457758743554], "stop_id": 4009629, "stop_desc": "242 BIS BOULEVARD SAINT-GERMAIN - 75107", "stop_name": "RUE DU BAC - RENE CHAR"}, "geometry": {"type": "Point", "coordinates": [2.3257457758743554, 48.8562418518031]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "710e068f7277088f4725297209cd06ee1b767e5e", "fields": {"departement": "75", "stop_lat": 48.85918035179073, "code_postal": "75107", "stop_lon": 2.322258204605786, "coord": [48.85918035179073, 2.322258204605786], "stop_id": 4009634, "stop_desc": "231 BOULEVARD SAINT GERMAIN - 75107", "stop_name": "LILLE - UNIVERSITE"}, "geometry": {"type": "Point", "coordinates": [2.322258204605786, 48.85918035179073]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "16aa5dd6496f062b0dc7997c8a5e909a416737ca", "fields": {"departement": "75", "stop_lat": 48.869956563045214, "code_postal": "75108", "stop_lon": 2.3253476474582184, "coord": [48.869956563045214, 2.3253476474582184], "stop_id": 4009639, "stop_desc": "16 PLACE DE LA MADELEINE - 75108", "stop_name": "MADELEINE"}, "geometry": {"type": "Point", "coordinates": [2.3253476474582184, 48.869956563045214]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d8d9cce8595fe06c5c4108d0ac5f5e43fd31ca97", "fields": {"departement": "75", "stop_lat": 48.87763952473994, "code_postal": "75108", "stop_lon": 2.316652732221454, "coord": [48.87763952473994, 2.316652732221454], "stop_id": 4009645, "stop_desc": "60 BOULEVARD MALESHERBES - 75108", "stop_name": "LISBONNE - MAIRIE DU 8E"}, "geometry": {"type": "Point", "coordinates": [2.316652732221454, 48.87763952473994]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b61d187f5750254eb5a5919e91a7553f1e0194c1", "fields": {"departement": "75", "stop_lat": 48.88064057924993, "code_postal": "75108", "stop_lon": 2.3129724069391546, "coord": [48.88064057924993, 2.3129724069391546], "stop_id": 4009647, "stop_desc": "92 BOULEVARD MALESHERBES - 75108", "stop_name": "MALESHERBES - COURCELLES"}, "geometry": {"type": "Point", "coordinates": [2.3129724069391546, 48.88064057924993]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aacf3c1b666fbddbda20466b83c4279cb329c348", "fields": {"departement": "75", "stop_lat": 48.88741511213837, "code_postal": "75117", "stop_lon": 2.305187531964956, "coord": [48.88741511213837, 2.305187531964956], "stop_id": 4009653, "stop_desc": "PLACE WAGRAM - 75117", "stop_name": "WAGRAM - PEREIRE"}, "geometry": {"type": "Point", "coordinates": [2.305187531964956, 48.88741511213837]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ce5ba93b9f31cfa9b312fc1a2a077d8ea780b1a9", "fields": {"departement": "75", "stop_lat": 48.88660629260675, "code_postal": "75117", "stop_lon": 2.3052970562220403, "coord": [48.88660629260675, 2.3052970562220403], "stop_id": 4009654, "stop_desc": "179 BOULEVARD MALESHERBES - 75117", "stop_name": "WAGRAM - PEREIRE"}, "geometry": {"type": "Point", "coordinates": [2.3052970562220403, 48.88660629260675]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cdeeef7d4465e385167bc1f3c791c7b322b6bffd", "fields": {"departement": "75", "stop_lat": 48.89072171815623, "code_postal": "75117", "stop_lon": 2.302745882952136, "coord": [48.89072171815623, 2.302745882952136], "stop_id": 4009658, "stop_desc": "9-11 AVENUE DE LA PORTE D'ASNIERES - 75117", "stop_name": "PORTE D'ASNIERES"}, "geometry": {"type": "Point", "coordinates": [2.302745882952136, 48.89072171815623]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "15cb5002ade4b4b09fd4f22afd0d8f388f484198", "fields": {"departement": "92", "stop_lat": 48.89320123324828, "code_postal": "92044", "stop_lon": 2.299623025967514, "coord": [48.89320123324828, 2.299623025967514], "stop_id": 4009663, "stop_desc": "9 RUE VICTOR HUGO - 92044", "stop_name": "ALSACE"}, "geometry": {"type": "Point", "coordinates": [2.299623025967514, 48.89320123324828]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "90a6a3aaae4af0b46e22f1b8745b24069726fc78", "fields": {"departement": "92", "stop_lat": 48.91323216391939, "code_postal": "92004", "stop_lon": 2.295722503467884, "coord": [48.91323216391939, 2.295722503467884], "stop_id": 4015688, "stop_desc": "FACE 33 BD VOLTAIRE - 92004", "stop_name": "PLACE VOLTAIRE"}, "geometry": {"type": "Point", "coordinates": [2.295722503467884, 48.91323216391939]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "23c5d0a9695be65adffb49aa3a75d931d446eea3", "fields": {"departement": "92", "stop_lat": 48.91544202175869, "code_postal": "92004", "stop_lon": 2.2930890662142698, "coord": [48.91544202175869, 2.2930890662142698], "stop_id": 4015690, "stop_desc": "68 BOULEVARD VOLTAIRE - 92004", "stop_name": "DUSSAU"}, "geometry": {"type": "Point", "coordinates": [2.2930890662142698, 48.91544202175869]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "538275a4aa3f521e0c6fc0092855dc141daa765c", "fields": {"departement": "92", "stop_lat": 48.9189240966532, "code_postal": "92004", "stop_lon": 2.2814541711483356, "coord": [48.9189240966532, 2.2814541711483356], "stop_id": 4015696, "stop_desc": "198-200 BOULEVARD VOLTAIRE - 92004", "stop_name": "BOURGUIGNONS"}, "geometry": {"type": "Point", "coordinates": [2.2814541711483356, 48.9189240966532]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "db55010909c063c478692280c1048528d0b4ff83", "fields": {"departement": "92", "stop_lat": 48.929117593087796, "code_postal": "92025", "stop_lon": 2.2686496412914248, "coord": [48.929117593087796, 2.2686496412914248], "stop_id": 4015701, "stop_desc": "48 AVENUE DE STALINGRAD - 92025", "stop_name": "LES CHAMPARONS"}, "geometry": {"type": "Point", "coordinates": [2.2686496412914248, 48.929117593087796]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6ef55aa8a953e5fc299fce88f78246310b80b4bd", "fields": {"departement": "92", "stop_lat": 48.92911734127539, "code_postal": "92025", "stop_lon": 2.2682131879709906, "coord": [48.92911734127539, 2.2682131879709906], "stop_id": 4015702, "stop_desc": "67 AVENUE DE STALINGRAD - 92025", "stop_name": "LES CHAMPARONS"}, "geometry": {"type": "Point", "coordinates": [2.2682131879709906, 48.92911734127539]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8f052a7074ceb4a9f85c3352b4823da0a3b4f0bc", "fields": {"departement": "95", "stop_lat": 48.948437655421316, "code_postal": "95018", "stop_lon": 2.252182695114476, "coord": [48.948437655421316, 2.252182695114476], "stop_id": 4015715, "stop_desc": "2-4 BIS BOULEVARD LEON FEIX - 95018", "stop_name": "LEON FEIX"}, "geometry": {"type": "Point", "coordinates": [2.252182695114476, 48.948437655421316]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d328caa10452ec3b7737ed2c21265654d922a020", "fields": {"departement": "95", "stop_lat": 48.94618569124683, "code_postal": "95018", "stop_lon": 2.257562003803285, "coord": [48.94618569124683, 2.257562003803285], "stop_id": 4015717, "stop_desc": "PISTE GARE ROUTIERE - 95018", "stop_name": "GARE D'ARGENTEUIL"}, "geometry": {"type": "Point", "coordinates": [2.257562003803285, 48.94618569124683]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b7ce7b1d7dfc64ea13cb294b5d7a184847a97970", "fields": {"departement": "92", "stop_lat": 48.92646908462465, "code_postal": "92009", "stop_lon": 2.273385701754743, "coord": [48.92646908462465, 2.273385701754743], "stop_id": 4015719, "stop_desc": "359 AVENUE D'ARGENTEUIL - 92009", "stop_name": "QUATRE ROUTES"}, "geometry": {"type": "Point", "coordinates": [2.273385701754743, 48.92646908462465]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c3d3ecd632d91010ba6788118387163b318fa206", "fields": {"departement": "92", "stop_lat": 48.923333845498576, "code_postal": "92009", "stop_lon": 2.275667055854338, "coord": [48.923333845498576, 2.275667055854338], "stop_id": 4015720, "stop_desc": "299 AVENUE D'ARGENTEUIL - 92009", "stop_name": "GRAMME"}, "geometry": {"type": "Point", "coordinates": [2.275667055854338, 48.923333845498576]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "93cabbee1155f96b71eaa4de571114e8c9e8fa3c", "fields": {"departement": "92", "stop_lat": 48.916323540007774, "code_postal": "92004", "stop_lon": 2.295283679264348, "coord": [48.916323540007774, 2.295283679264348], "stop_id": 4015724, "stop_desc": "PISTE GARE ROUTIERE - 92004", "stop_name": "GABRIEL PERI-METRO"}, "geometry": {"type": "Point", "coordinates": [2.295283679264348, 48.916323540007774]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ea821ef1e9cd0ba33bd2e2adb83c4aa36a0f1791", "fields": {"departement": "92", "stop_lat": 48.9189240966532, "code_postal": "92004", "stop_lon": 2.2814541711483356, "coord": [48.9189240966532, 2.2814541711483356], "stop_id": 4015733, "stop_desc": "198-200 BOULEVARD VOLTAIRE - 92004", "stop_name": "BOURGUIGNONS"}, "geometry": {"type": "Point", "coordinates": [2.2814541711483356, 48.9189240966532]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9e30c046ec5a27911425d2b2736a1589a4246683", "fields": {"departement": "92", "stop_lat": 48.929117593087796, "code_postal": "92025", "stop_lon": 2.2686496412914248, "coord": [48.929117593087796, 2.2686496412914248], "stop_id": 4015738, "stop_desc": "48 AVENUE DE STALINGRAD - 92025", "stop_name": "LES CHAMPARONS"}, "geometry": {"type": "Point", "coordinates": [2.2686496412914248, 48.929117593087796]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "845a9c66f2dd33deb4cd747f58a5f7c8cb2492bc", "fields": {"departement": "92", "stop_lat": 48.92911734127539, "code_postal": "92025", "stop_lon": 2.2682131879709906, "coord": [48.92911734127539, 2.2682131879709906], "stop_id": 4015739, "stop_desc": "67 AVENUE DE STALINGRAD - 92025", "stop_name": "LES CHAMPARONS"}, "geometry": {"type": "Point", "coordinates": [2.2682131879709906, 48.92911734127539]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "991af6e0e82ba3e3ce21abd9417ca4abac16481a", "fields": {"departement": "92", "stop_lat": 48.937549860985655, "code_postal": "92036", "stop_lon": 2.2582982890496095, "coord": [48.937549860985655, 2.2582982890496095], "stop_id": 4015744, "stop_desc": "212 AVENUE D'ARGENTEUIL - 92036", "stop_name": "PETIT GENNEVILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.2582982890496095, 48.937549860985655]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "46abca5b8ea09b5d95442d22b3023cdff518841d", "fields": {"departement": "92", "stop_lat": 48.836421364373635, "code_postal": "92012", "stop_lon": 2.2519579203710243, "coord": [48.836421364373635, 2.2519579203710243], "stop_id": 4015758, "stop_desc": "36 AVENUE EDOUARD VAILLANT - 92012", "stop_name": "HENRI MARTIN"}, "geometry": {"type": "Point", "coordinates": [2.2519579203710243, 48.836421364373635]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "395bd548fd1f19cc1543005bb6bec0b98c9bb924", "fields": {"departement": "92", "stop_lat": 48.83610561626088, "code_postal": "92012", "stop_lon": 2.2387793809367085, "coord": [48.83610561626088, 2.2387793809367085], "stop_id": 4015764, "stop_desc": "AVENUE ANDRE MORIZET - 92012", "stop_name": "HOTEL DE VILLE DE BOULOGNE-BILLANCOURT"}, "geometry": {"type": "Point", "coordinates": [2.2387793809367085, 48.83610561626088]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "da8719c4e3343adaf1a331f3d2aa61ef4d010559", "fields": {"departement": "92", "stop_lat": 48.840151332666906, "code_postal": "92012", "stop_lon": 2.2298942043772487, "coord": [48.840151332666906, 2.2298942043772487], "stop_id": 4015768, "stop_desc": "124 AVENUE ANDRE MORIZET - 92012", "stop_name": "RHIN ET DANUBE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.2298942043772487, 48.840151332666906]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ea7e6fd749573b80c78d5577b55100880ec1ea27", "fields": {"departement": "92", "stop_lat": 48.84109238684097, "code_postal": "92012", "stop_lon": 2.2270056560618907, "coord": [48.84109238684097, 2.2270056560618907], "stop_id": 4015770, "stop_desc": "12-14 AV DU MARECHAL DE LATTRE DE TASSIGNY - 92012", "stop_name": "PONT DE SAINT-CLOUD - ALBERT KAHN"}, "geometry": {"type": "Point", "coordinates": [2.2270056560618907, 48.84109238684097]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e50e2a67e1bf317c6ed7f7e5722fb59a0267b6f2", "fields": {"departement": "92", "stop_lat": 48.846904173837395, "code_postal": "92064", "stop_lon": 2.223657000181071, "coord": [48.846904173837395, 2.223657000181071], "stop_id": 4015774, "stop_desc": "26 QUAI DU PRESIDENT CARNOT - 92064", "stop_name": "FEUDON"}, "geometry": {"type": "Point", "coordinates": [2.223657000181071, 48.846904173837395]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8d5a7ecb0152bb37bae28b6fa51ef99b88819eb7", "fields": {"departement": "92", "stop_lat": 48.85684415927372, "code_postal": "92064", "stop_lon": 2.2234854070821086, "coord": [48.85684415927372, 2.2234854070821086], "stop_id": 4015779, "stop_desc": "FACE 57 QUAI MARCEL DASSAULT - 92064", "stop_name": "AVENUE DE LONGCHAMP"}, "geometry": {"type": "Point", "coordinates": [2.2234854070821086, 48.85684415927372]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "34b43326a98464873a80220cddd31bae948d981b", "fields": {"departement": "92", "stop_lat": 48.87391409145891, "code_postal": "92062", "stop_lon": 2.23670474586473, "coord": [48.87391409145891, 2.23670474586473], "stop_id": 4015788, "stop_desc": "QUAI DE DION BOUTON - 92062", "stop_name": "POMPIDOU"}, "geometry": {"type": "Point", "coordinates": [2.23670474586473, 48.87391409145891]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bfc9ce058873968ae7b53c9001098632993ee729", "fields": {"departement": "92", "stop_lat": 48.87849388233761, "code_postal": "92062", "stop_lon": 2.243140896335424, "coord": [48.87849388233761, 2.243140896335424], "stop_id": 4015789, "stop_desc": "QUAI DE DION BOUTON (OUEST) - 92062", "stop_name": "PONT DE PUTEAUX"}, "geometry": {"type": "Point", "coordinates": [2.243140896335424, 48.87849388233761]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fd6c60a4f4b0356c7c6794a695146d6b38618620", "fields": {"departement": "92", "stop_lat": 48.88180419562212, "code_postal": "92062", "stop_lon": 2.2470185050349207, "coord": [48.88180419562212, 2.2470185050349207], "stop_id": 4015791, "stop_desc": "FACE 37 QUAI DE DION BOUTON - 92062", "stop_name": "SQUARE LEON BLUM"}, "geometry": {"type": "Point", "coordinates": [2.2470185050349207, 48.88180419562212]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fc985ff579c56601cbfe017013d22dbafe850dbd", "fields": {"departement": "92", "stop_lat": 48.89585782252849, "code_postal": "92026", "stop_lon": 2.2562490942081865, "coord": [48.89585782252849, 2.2562490942081865], "stop_id": 4015801, "stop_desc": "15 RUE DE L'HOTEL DE VILLE - 92026", "stop_name": "MAIRIE DE COURBEVOIE"}, "geometry": {"type": "Point", "coordinates": [2.2562490942081865, 48.89585782252849]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5fa3b9c012cb09e8f6ffc942b3e10762a2578610", "fields": {"departement": "92", "stop_lat": 48.90606342326402, "code_postal": "92004", "stop_lon": 2.2809363303492014, "coord": [48.90606342326402, 2.2809363303492014], "stop_id": 4015813, "stop_desc": "23 AVENUE DE LA MARNE - 92004", "stop_name": "GARE D'ASNIERES"}, "geometry": {"type": "Point", "coordinates": [2.2809363303492014, 48.90606342326402]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "268a34e95f604c4ac51391c5354c851d267a428f", "fields": {"departement": "92", "stop_lat": 48.90962496740386, "code_postal": "92004", "stop_lon": 2.2869041697439894, "coord": [48.90962496740386, 2.2869041697439894], "stop_id": 4015814, "stop_desc": "78-BIS AVENUE DE LA MARNE - 92004", "stop_name": "GALLIENI"}, "geometry": {"type": "Point", "coordinates": [2.2869041697439894, 48.90962496740386]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a6338661f2953dde29b5dc4a349fa9ebd82b62bc", "fields": {"departement": "92", "stop_lat": 48.909417811670004, "code_postal": "92004", "stop_lon": 2.2858409199798717, "coord": [48.909417811670004, 2.2858409199798717], "stop_id": 4015815, "stop_desc": "89 AVENUE DE LA MARNE - 92004", "stop_name": "GALLIENI"}, "geometry": {"type": "Point", "coordinates": [2.2858409199798717, 48.909417811670004]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f345fa9e09425206b6f4255a74dedb1d05aa3caf", "fields": {"departement": "92", "stop_lat": 48.84092591926018, "code_postal": "92064", "stop_lon": 2.222049786002583, "coord": [48.84092591926018, 2.222049786002583], "stop_id": 4015830, "stop_desc": "QUAI DU MARECHAL JUIN - 92064", "stop_name": "PONT DE SAINT-CLOUD - RIVE GAUCHE"}, "geometry": {"type": "Point", "coordinates": [2.222049786002583, 48.84092591926018]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "af7a60abc5d67c90c743123ef356c7100fdc8205", "fields": {"departement": "92", "stop_lat": 48.93484434700486, "code_postal": "92036", "stop_lon": 2.291885778996831, "coord": [48.93484434700486, 2.291885778996831], "stop_id": 4015896, "stop_desc": "FACE 12 RUE EUGENE VARLIN - 92036", "stop_name": "VILLEBOIS-MAREUIL"}, "geometry": {"type": "Point", "coordinates": [2.291885778996831, 48.93484434700486]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "042f3d51133f72314ed91efa90d7df8f96294e5b", "fields": {"departement": "92", "stop_lat": 48.93336051822983, "code_postal": "92036", "stop_lon": 2.289336344475095, "coord": [48.93336051822983, 2.289336344475095], "stop_id": 4015898, "stop_desc": "FACE 12 RUE EUGENE DELACROIX - 92036", "stop_name": "CITE DU LUTH-VERLAINE"}, "geometry": {"type": "Point", "coordinates": [2.289336344475095, 48.93336051822983]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5568dfb9e9be338f2585fd728483e4692978b8e6", "fields": {"departement": "92", "stop_lat": 48.93024749817798, "code_postal": "92004", "stop_lon": 2.28116918107572, "coord": [48.93024749817798, 2.28116918107572], "stop_id": 4015902, "stop_desc": "17 R DE LA PAIX - 92004", "stop_name": "QUARTIER DES FLEURS"}, "geometry": {"type": "Point", "coordinates": [2.28116918107572, 48.93024749817798]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "093a50b3694c6a58cae4c1b57f176a802059fe97", "fields": {"departement": "92", "stop_lat": 48.93225782669017, "code_postal": "92004", "stop_lon": 2.275629162856483, "coord": [48.93225782669017, 2.275629162856483], "stop_id": 4015906, "stop_desc": "RUE HENRI POINCARE - 92004", "stop_name": "MOURINOUX"}, "geometry": {"type": "Point", "coordinates": [2.275629162856483, 48.93225782669017]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9fb214c9a60181d33c23c77f630216870f5c6752", "fields": {"departement": "92", "stop_lat": 48.93245315789418, "code_postal": "92025", "stop_lon": 2.271182272626384, "coord": [48.93245315789418, 2.271182272626384], "stop_id": 4015908, "stop_desc": "77 RUE JULES MICHELET - 92025", "stop_name": "LOUISE MICHEL"}, "geometry": {"type": "Point", "coordinates": [2.271182272626384, 48.93245315789418]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fece465a8f66a08eb4bdc23117ff90ac308655a4", "fields": {"departement": "92", "stop_lat": 48.90449961551857, "code_postal": "92024", "stop_lon": 2.304972468676297, "coord": [48.90449961551857, 2.304972468676297], "stop_id": 4016025, "stop_desc": "102 BIS RUE MARTRE - 92024", "stop_name": "LANDY - MARTRE"}, "geometry": {"type": "Point", "coordinates": [2.304972468676297, 48.90449961551857]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f52bdfa2ddac225c3ffae9ceef90142a35d28a18", "fields": {"departement": "92", "stop_lat": 48.90722193611381, "code_postal": "92024", "stop_lon": 2.302271357586615, "coord": [48.90722193611381, 2.302271357586615], "stop_id": 4016026, "stop_desc": "136 RUE MARTRE - 92024", "stop_name": "LEON BLUM"}, "geometry": {"type": "Point", "coordinates": [2.302271357586615, 48.90722193611381]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b96140ee092b9f7e3816ee2773ff4146f7bb3e55", "fields": {"departement": "92", "stop_lat": 48.906403689038, "code_postal": "92024", "stop_lon": 2.3008540579028622, "coord": [48.906403689038, 2.3008540579028622], "stop_id": 4016027, "stop_desc": "136 BOULEVARD JEAN JAURES - 92024", "stop_name": "LEON BLUM"}, "geometry": {"type": "Point", "coordinates": [2.3008540579028622, 48.906403689038]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3f2913af6d71efe612e8e8aed3607e74f03f51ec", "fields": {"departement": "92", "stop_lat": 48.916179398583544, "code_postal": "92004", "stop_lon": 2.2943020208242686, "coord": [48.916179398583544, 2.2943020208242686], "stop_id": 4016029, "stop_desc": "PISTE GARE ROUTIERE - 92004", "stop_name": "GABRIEL PERI-METRO"}, "geometry": {"type": "Point", "coordinates": [2.2943020208242686, 48.916179398583544]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e8c7f64b9589389e8de4ab1a8b36940196d0d5d9", "fields": {"departement": "92", "stop_lat": 48.91976658851471, "code_postal": "92036", "stop_lon": 2.2983355128003558, "coord": [48.91976658851471, 2.2983355128003558], "stop_id": 4016045, "stop_desc": "RUE HENRI BARBUSSE - 92036", "stop_name": "REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.2983355128003558, 48.91976658851471]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b01f24004173ced658f97e640a2fab3341ac3024", "fields": {"departement": "92", "stop_lat": 48.9304260277182, "code_postal": "92036", "stop_lon": 2.301341835637842, "coord": [48.9304260277182, 2.301341835637842], "stop_id": 4016052, "stop_desc": "AVENUE LAURENT CELY - 92036", "stop_name": "MOULIN DE CAGE"}, "geometry": {"type": "Point", "coordinates": [2.301341835637842, 48.9304260277182]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5cd5a23f6b87f615033bc9b0b17c639c6e452552", "fields": {"departement": "92", "stop_lat": 48.936070392573825, "code_postal": "92036", "stop_lon": 2.303438635747753, "coord": [48.936070392573825, 2.303438635747753], "stop_id": 4016057, "stop_desc": "AVENUE MARCEL PAUL - 92036", "stop_name": "LES BARBANNIERS"}, "geometry": {"type": "Point", "coordinates": [2.303438635747753, 48.936070392573825]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1aa4f038ca048243725a031c47dba070a0265cfc", "fields": {"departement": "92", "stop_lat": 48.94140616986662, "code_postal": "92036", "stop_lon": 2.295836328379344, "coord": [48.94140616986662, 2.295836328379344], "stop_id": 4016058, "stop_desc": "ROUTE PRINCIPALE DU PORT - 92036", "stop_name": "IFTIM"}, "geometry": {"type": "Point", "coordinates": [2.295836328379344, 48.94140616986662]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c0e2e410fc518d89be7250fd8f79176e9148ec66", "fields": {"departement": "92", "stop_lat": 48.93558066696842, "code_postal": "92036", "stop_lon": 2.271328331717231, "coord": [48.93558066696842, 2.271328331717231], "stop_id": 4016068, "stop_desc": "ROUTE DES MERCIERES - 92036", "stop_name": "MERCIERES"}, "geometry": {"type": "Point", "coordinates": [2.271328331717231, 48.93558066696842]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7ddd432706789b07485e37264634449d6ac259bc", "fields": {"departement": "92", "stop_lat": 48.93546407839365, "code_postal": "92036", "stop_lon": 2.2717649872842665, "coord": [48.93546407839365, 2.2717649872842665], "stop_id": 4016069, "stop_desc": "ROUTE DES MERCIERES - 92036", "stop_name": "MERCIERES"}, "geometry": {"type": "Point", "coordinates": [2.2717649872842665, 48.93546407839365]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9321f10630e921a52b12f45df5f02605a9b9b589", "fields": {"departement": "92", "stop_lat": 48.936126652714115, "code_postal": "92036", "stop_lon": 2.2674399450981904, "coord": [48.936126652714115, 2.2674399450981904], "stop_id": 4016070, "stop_desc": "62 ROUTE PRINCIPALE DU PORT - 92036", "stop_name": "DIRECTION DU PORT"}, "geometry": {"type": "Point", "coordinates": [2.2674399450981904, 48.936126652714115]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f80c7cd5adda8fddd4435ab6e91f8a11d6960d92", "fields": {"departement": "92", "stop_lat": 48.93449739935261, "code_postal": "92025", "stop_lon": 2.263077151509599, "coord": [48.93449739935261, 2.263077151509599], "stop_id": 4016072, "stop_desc": "FACE 205 AVENUE DE STALINGRAD - 92025", "stop_name": "PONT DU CHEMIN DE FER"}, "geometry": {"type": "Point", "coordinates": [2.263077151509599, 48.93449739935261]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0c3dba97e05c5eda1925157ea76933833b969150", "fields": {"departement": "95", "stop_lat": 48.94692605506069, "code_postal": "95018", "stop_lon": 2.249661062842731, "coord": [48.94692605506069, 2.249661062842731], "stop_id": 4016079, "stop_desc": "23 BOULEVARD LEON FEIX - 95018", "stop_name": "HOTEL DE VILLE D'ARGENTEUIL"}, "geometry": {"type": "Point", "coordinates": [2.249661062842731, 48.94692605506069]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "62ac8eb53b0bc1564da40e685c5ac160a3851c94", "fields": {"departement": "95", "stop_lat": 48.948437655421316, "code_postal": "95018", "stop_lon": 2.252182695114476, "coord": [48.948437655421316, 2.252182695114476], "stop_id": 4016082, "stop_desc": "2-4 BIS BOULEVARD LEON FEIX - 95018", "stop_name": "LEON FEIX"}, "geometry": {"type": "Point", "coordinates": [2.252182695114476, 48.948437655421316]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4a8df636deddb3a400e89485aec4a5aa35473705", "fields": {"departement": "92", "stop_lat": 48.93698391585437, "code_postal": "92025", "stop_lon": 2.258640183272224, "coord": [48.93698391585437, 2.258640183272224], "stop_id": 4016085, "stop_desc": "FACE 212 AVENUE D'ARGENTEUIL - 92025", "stop_name": "PETIT GENNEVILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.258640183272224, 48.93698391585437]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "32aba1163ae969e9c4fc3d9437fbc5445e2f33f8", "fields": {"departement": "93", "stop_lat": 48.87717850845737, "code_postal": "93064", "stop_lon": 2.479859315788344, "coord": [48.87717850845737, 2.479859315788344], "stop_id": 3683438, "stop_desc": "45 AVENUE DU GENERAL DE GAULLE - 93064", "stop_name": "GABRIEL PERI - DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.479859315788344, 48.87717850845737]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9447d630ab4ed9159df6cbee5eeb12e0a525042c", "fields": {"departement": "93", "stop_lat": 48.86096389943349, "code_postal": "93049", "stop_lon": 2.5018675686449208, "coord": [48.86096389943349, 2.5018675686449208], "stop_id": 3683447, "stop_desc": "28-30 RUE DE LA MARNE - 93049", "stop_name": "BOUREAU - GUERINIERE"}, "geometry": {"type": "Point", "coordinates": [2.5018675686449208, 48.86096389943349]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "27481fe75d601d81584fe6359f20e69f26bf0110", "fields": {"departement": "93", "stop_lat": 48.85786341822975, "code_postal": "93049", "stop_lon": 2.5017351434503667, "coord": [48.85786341822975, 2.5017351434503667], "stop_id": 3683448, "stop_desc": "FACE 3 RUE PARMENTIER - 93049", "stop_name": "DANIELLE CASANOVA"}, "geometry": {"type": "Point", "coordinates": [2.5017351434503667, 48.85786341822975]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7cf8d6242b29eed9978b60a9ac680521320c1b77", "fields": {"departement": "93", "stop_lat": 48.87258924183589, "code_postal": "93064", "stop_lon": 2.4845743335348023, "coord": [48.87258924183589, 2.4845743335348023], "stop_id": 3683440, "stop_desc": "RUE DU GENERAL GALLIENI - 93064", "stop_name": "COPERNIC"}, "geometry": {"type": "Point", "coordinates": [2.4845743335348023, 48.87258924183589]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "220dbc6abda9bdc797d30fd6a02a9a50d4349ce9", "fields": {"departement": "93", "stop_lat": 48.866951337008146, "code_postal": "93064", "stop_lon": 2.500537914289821, "coord": [48.866951337008146, 2.500537914289821], "stop_id": 3683445, "stop_desc": "RUE DE STRASBOURG - 93064", "stop_name": "STRASBOURG"}, "geometry": {"type": "Point", "coordinates": [2.500537914289821, 48.866951337008146]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eb3e4c425d770290559179393c5f48bb660274e2", "fields": {"departement": "94", "stop_lat": 48.80267030048723, "code_postal": "94002", "stop_lon": 2.425598151502994, "coord": [48.80267030048723, 2.425598151502994], "stop_id": 3686315, "stop_desc": "FACE 16 B RUE MALLERET JOINVILLE - 94002", "stop_name": "MAISONS-ALFORT - ALFORTVILLE RER"}, "geometry": {"type": "Point", "coordinates": [2.425598151502994, 48.80267030048723]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8326c5eec030920be0e189c57a5443443dc0373b", "fields": {"departement": "94", "stop_lat": 48.84084377806442, "code_postal": "94058", "stop_lon": 2.5062289263976862, "coord": [48.84084377806442, 2.5062289263976862], "stop_id": 3686073, "stop_desc": "103 AVENUE DU GENERAL DE GAULLE - 94058", "stop_name": "MAIRIE DU PERREUX-SUR-MARNE"}, "geometry": {"type": "Point", "coordinates": [2.5062289263976862, 48.84084377806442]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "19f899cadfb06cbf8f978f186c8865b1c88d6c48", "fields": {"departement": "94", "stop_lat": 48.84218500063309, "code_postal": "94015", "stop_lon": 2.5229405575565873, "coord": [48.84218500063309, 2.5229405575565873], "stop_id": 3686083, "stop_desc": "FACE 23 BOULEVARD DU GENERAL GALLIENI - 94015", "stop_name": "PLACE CARNOT"}, "geometry": {"type": "Point", "coordinates": [2.5229405575565873, 48.84218500063309]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fdab0cf2b1d7b14b487aea8f3e47dbf0be157d82", "fields": {"departement": "94", "stop_lat": 48.8327448820135, "code_postal": "94058", "stop_lon": 2.5131728547611707, "coord": [48.8327448820135, 2.5131728547611707], "stop_id": 3686078, "stop_desc": "FACE 107 BOULEVARD FOCH - 94058", "stop_name": "RESIDENCE DES ILES"}, "geometry": {"type": "Point", "coordinates": [2.5131728547611707, 48.8327448820135]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "26297b3d0b61eb5f23d655969d07f1e6457965b1", "fields": {"departement": "94", "stop_lat": 48.814298589736914, "code_postal": "94002", "stop_lon": 2.415479230713905, "coord": [48.814298589736914, 2.415479230713905], "stop_id": 3686304, "stop_desc": "17 R VAILLANT COUTURIER - 94002", "stop_name": "GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.415479230713905, 48.814298589736914]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e0b5f3c0eaa7ce7a4d590caed607ed73dc411de5", "fields": {"departement": "94", "stop_lat": 48.76577673270161, "code_postal": "94022", "stop_lon": 2.4093014390791234, "coord": [48.76577673270161, 2.4093014390791234], "stop_id": 3686344, "stop_desc": "AVENUE JEAN JAURES - 94022", "stop_name": "CHOISY-LE-ROI RER"}, "geometry": {"type": "Point", "coordinates": [2.4093014390791234, 48.76577673270161]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "386f06d5ae34dec14cc6b714af32506cd4c0a5b3", "fields": {"departement": "94", "stop_lat": 48.803849211682014, "code_postal": "94002", "stop_lon": 2.4235456106895175, "coord": [48.803849211682014, 2.4235456106895175], "stop_id": 3686312, "stop_desc": "64 RUE VICTOR HUGO - 94002", "stop_name": "RAYMOND JACLARD"}, "geometry": {"type": "Point", "coordinates": [2.4235456106895175, 48.803849211682014]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c5216c1d31d5165bbd8b5717936d781c928ba3f3", "fields": {"departement": "94", "stop_lat": 48.77428444311341, "code_postal": "94022", "stop_lon": 2.41559575687124, "coord": [48.77428444311341, 2.41559575687124], "stop_id": 3686337, "stop_desc": "FACE 115 AVENUE D'ALFORTVILLE - 94022", "stop_name": "MESANGES"}, "geometry": {"type": "Point", "coordinates": [2.41559575687124, 48.77428444311341]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0aaabc77d154ba0d9dd9a6cceb1a7f942316ff48", "fields": {"departement": "94", "stop_lat": 48.809769579608165, "code_postal": "94002", "stop_lon": 2.4142204865560135, "coord": [48.809769579608165, 2.4142204865560135], "stop_id": 3686305, "stop_desc": "108 RUE VERON - 94002", "stop_name": "RUE DE SEINE"}, "geometry": {"type": "Point", "coordinates": [2.4142204865560135, 48.809769579608165]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "edd9ba2f2e369108e678f466daace1dad8e69450", "fields": {"departement": "94", "stop_lat": 48.80031446208389, "code_postal": "94002", "stop_lon": 2.42696828289225, "coord": [48.80031446208389, 2.42696828289225], "stop_id": 3686317, "stop_desc": "R JOFFRIN - 94002", "stop_name": "CAMELIAS"}, "geometry": {"type": "Point", "coordinates": [2.42696828289225, 48.80031446208389]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b33d3ee24f56ad7e4789c1282a6edc8a446c0219", "fields": {"departement": "94", "stop_lat": 48.85994861762231, "code_postal": "94033", "stop_lon": 2.4807926491059042, "coord": [48.85994861762231, 2.4807926491059042], "stop_id": 3685768, "stop_desc": "FACE 239 AVENUE VICTOR HUGO - 94033", "stop_name": "CIMETIERE DE VINCENNES"}, "geometry": {"type": "Point", "coordinates": [2.4807926491059042, 48.85994861762231]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f5d9209030c6ca18d7f1a770dd842e5fc04a9204", "fields": {"departement": "93", "stop_lat": 48.860568468376464, "code_postal": "93048", "stop_lon": 2.481025924558556, "coord": [48.860568468376464, 2.481025924558556], "stop_id": 3685785, "stop_desc": "261 AVENUE VICTOR HUGO - 93048", "stop_name": "CIMETIERE DE VINCENNES"}, "geometry": {"type": "Point", "coordinates": [2.481025924558556, 48.860568468376464]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "57dc4f1c43015eebd32d0fda232c97f6810cbdcb", "fields": {"departement": "93", "stop_lat": 48.876014031647024, "code_postal": "93064", "stop_lon": 2.4765860591946764, "coord": [48.876014031647024, 2.4765860591946764], "stop_id": 3685782, "stop_desc": "RUE JULES FERRY - 93064", "stop_name": "NANTEUIL ZI - JULES FERRY"}, "geometry": {"type": "Point", "coordinates": [2.4765860591946764, 48.876014031647024]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ce79b426abcf2f6314ebf4149a4a6039668df266", "fields": {"departement": "94", "stop_lat": 48.85522387800214, "code_postal": "94033", "stop_lon": 2.4859550831419543, "coord": [48.85522387800214, 2.4859550831419543], "stop_id": 3685763, "stop_desc": "10-12 AV DES OLYMPIADES - 94033", "stop_name": "PABLO PICASSO"}, "geometry": {"type": "Point", "coordinates": [2.4859550831419543, 48.85522387800214]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1d2fdc790b280e0fef62304742919044605382ce", "fields": {"departement": "94", "stop_lat": 48.852348875529906, "code_postal": "94033", "stop_lon": 2.4615688218490126, "coord": [48.852348875529906, 2.4615688218490126], "stop_id": 3685748, "stop_desc": "146 TER AVENUE DE LA REPUBLIQUE - 94033", "stop_name": "DANTON"}, "geometry": {"type": "Point", "coordinates": [2.4615688218490126, 48.852348875529906]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5cc5553b17435d6cf18f9e7d7ca17f420217a49c", "fields": {"departement": "94", "stop_lat": 48.84826968282151, "code_postal": "94080", "stop_lon": 2.4514681604048363, "coord": [48.84826968282151, 2.4514681604048363], "stop_id": 3685787, "stop_desc": "79-81 RUE DEFRANCE - 94080", "stop_name": "CLEMENT VIENOT"}, "geometry": {"type": "Point", "coordinates": [2.4514681604048363, 48.84826968282151]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7bc6c2e2904e880e10314d16c8ababbbc67eef9c", "fields": {"departement": "93", "stop_lat": 48.87723554930729, "code_postal": "93064", "stop_lon": 2.4846829157008528, "coord": [48.87723554930729, 2.4846829157008528], "stop_id": 3685779, "stop_desc": "5 RUE ALBERT DENISEAU - 93064", "stop_name": "VAN DERHEYDEN"}, "geometry": {"type": "Point", "coordinates": [2.4846829157008528, 48.87723554930729]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bc8607136e003e097aba04447e5d39b463fb6409", "fields": {"departement": "93", "stop_lat": 48.86546334999699, "code_postal": "93064", "stop_lon": 2.483695874168352, "coord": [48.86546334999699, 2.483695874168352], "stop_id": 3685770, "stop_desc": "89 AVENUE DE LA REPUBLIQUE - 93064", "stop_name": "DIDEROT"}, "geometry": {"type": "Point", "coordinates": [2.483695874168352, 48.86546334999699]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "91494b6b8e8db535faf82212ffc8321f5fd71fc3", "fields": {"departement": "93", "stop_lat": 48.87492666062869, "code_postal": "93064", "stop_lon": 2.483995103062401, "coord": [48.87492666062869, 2.483995103062401], "stop_id": 3685778, "stop_desc": "16 BIS RUE RICHARD GARDEBLED - 93064", "stop_name": "GARDEBLED"}, "geometry": {"type": "Point", "coordinates": [2.483995103062401, 48.87492666062869]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "12e235f7b52ee98834fa5ee91384de8478f6dd67", "fields": {"departement": "93", "stop_lat": 48.86771764314497, "code_postal": "93064", "stop_lon": 2.48494193783217, "coord": [48.86771764314497, 2.48494193783217], "stop_id": 3685772, "stop_desc": "AVENUE DE LA REPUBLIQUE - 93064", "stop_name": "MEDERIC"}, "geometry": {"type": "Point", "coordinates": [2.48494193783217, 48.86771764314497]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "204ce763929e897014ce4ae568bc6ee360f0f0bc", "fields": {"departement": "94", "stop_lat": 48.85994861762231, "code_postal": "94033", "stop_lon": 2.4807926491059042, "coord": [48.85994861762231, 2.4807926491059042], "stop_id": 3685714, "stop_desc": "FACE 239 AVENUE VICTOR HUGO - 94033", "stop_name": "CIMETIERE DE VINCENNES"}, "geometry": {"type": "Point", "coordinates": [2.4807926491059042, 48.85994861762231]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2c0399256f5d48bf5b9697e7d96ef80ac8fd9590", "fields": {"departement": "94", "stop_lat": 48.85235832504077, "code_postal": "94033", "stop_lon": 2.4847892519496995, "coord": [48.85235832504077, 2.4847892519496995], "stop_id": 3685704, "stop_desc": "124 AVENUE DU MARECHAL JOFFRE - 94033", "stop_name": "GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.4847892519496995, 48.85235832504077]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "660df91874c142ff86618cd0a9b93f2a9c5f94cc", "fields": {"departement": "94", "stop_lat": 48.84807383726229, "code_postal": "94080", "stop_lon": 2.439511235018801, "coord": [48.84807383726229, 2.439511235018801], "stop_id": 3685740, "stop_desc": "FACE 57 RUE DE FONTENAY - 94080", "stop_name": "MAIRIE DE VINCENNES"}, "geometry": {"type": "Point", "coordinates": [2.439511235018801, 48.84807383726229]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ec1bd268553bb49f8de9ad37e1802a3f84b64570", "fields": {"departement": "94", "stop_lat": 48.853160988206504, "code_postal": "94033", "stop_lon": 2.458424729814948, "coord": [48.853160988206504, 2.458424729814948], "stop_id": 3685693, "stop_desc": "95 AVENUE DE LA REPUBLIQUE - 94033", "stop_name": "ANDRE LAURENT"}, "geometry": {"type": "Point", "coordinates": [2.458424729814948, 48.853160988206504]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7c2e2b2e24d8e9d237f758f4da9d7b5f7bdd5833", "fields": {"departement": "94", "stop_lat": 48.850026084738296, "code_postal": "94033", "stop_lon": 2.4567151078138254, "coord": [48.850026084738296, 2.4567151078138254], "stop_id": 3685691, "stop_desc": "2 AVENUE DE LA REPUBLIQUE - 94033", "stop_name": "LES RIGOLLOTS"}, "geometry": {"type": "Point", "coordinates": [2.4567151078138254, 48.850026084738296]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fd55400956eee20e0c9eeaef51de459b8fd79331", "fields": {"departement": "94", "stop_lat": 48.84826968282151, "code_postal": "94080", "stop_lon": 2.4514681604048363, "coord": [48.84826968282151, 2.4514681604048363], "stop_id": 3685732, "stop_desc": "79-81 RUE DEFRANCE - 94080", "stop_name": "CLEMENT VIENOT"}, "geometry": {"type": "Point", "coordinates": [2.4514681604048363, 48.84826968282151]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d645404d88cc952a629a6bf287dde6ca315daae1", "fields": {"departement": "93", "stop_lat": 48.87723554930729, "code_postal": "93064", "stop_lon": 2.4846829157008528, "coord": [48.87723554930729, 2.4846829157008528], "stop_id": 3685725, "stop_desc": "5 RUE ALBERT DENISEAU - 93064", "stop_name": "VAN DERHEYDEN"}, "geometry": {"type": "Point", "coordinates": [2.4846829157008528, 48.87723554930729]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6c35dc2b34a2a3567e44e7ddc5d174d106060039", "fields": {"departement": "94", "stop_lat": 48.84683591626402, "code_postal": "94080", "stop_lon": 2.4367308149123965, "coord": [48.84683591626402, 2.4367308149123965], "stop_id": 3685738, "stop_desc": "33 AVENUE DU CHATEAU - 94080", "stop_name": "VINCENNES RER"}, "geometry": {"type": "Point", "coordinates": [2.4367308149123965, 48.84683591626402]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9ad7803c43c20cdbfc231920e74307ccb6626c6a", "fields": {"departement": "94", "stop_lat": 48.85391188110829, "code_postal": "94033", "stop_lon": 2.470629477801297, "coord": [48.85391188110829, 2.470629477801297], "stop_id": 3685699, "stop_desc": "5 AVENUE DU MARECHAL JOFFRE - 94033", "stop_name": "VERDUN"}, "geometry": {"type": "Point", "coordinates": [2.470629477801297, 48.85391188110829]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0b1618a84a8e5576dd2e081159e6f4a2cf3d72a1", "fields": {"departement": "94", "stop_lat": 48.857341200605816, "code_postal": "94033", "stop_lon": 2.4816707533851594, "coord": [48.857341200605816, 2.4816707533851594], "stop_id": 3685713, "stop_desc": "11 AV CHARLES GARCIA - 94033", "stop_name": "LA FONTAINE"}, "geometry": {"type": "Point", "coordinates": [2.4816707533851594, 48.857341200605816]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f57c624c5c4897db94737e0731e603176e7f4606", "fields": {"departement": "94", "stop_lat": 48.8150761171624, "code_postal": "94046", "stop_lon": 2.4219175598697325, "coord": [48.8150761171624, 2.4219175598697325], "stop_id": 3686299, "stop_desc": "31-35 AVENUE DU GENERAL LECLERC - 94046", "stop_name": "ECOLE VETERINAIRE DE MAISONS-ALFORT"}, "geometry": {"type": "Point", "coordinates": [2.4219175598697325, 48.8150761171624]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7024c336edef6d3b4eefbf4e36db42cafaa34307", "fields": {"departement": "94", "stop_lat": 48.76742758567754, "code_postal": "94022", "stop_lon": 2.4140217936912625, "coord": [48.76742758567754, 2.4140217936912625], "stop_id": 3686417, "stop_desc": "FACE 4 AVENUE D'ALFORTVILLE - 94022", "stop_name": "PONT DE CHOISY"}, "geometry": {"type": "Point", "coordinates": [2.4140217936912625, 48.76742758567754]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ddf157643dc4eaf894ee47f720779f4474ab8357", "fields": {"departement": "94", "stop_lat": 48.76737347256756, "code_postal": "94022", "stop_lon": 2.4143072447805944, "coord": [48.76737347256756, 2.4143072447805944], "stop_id": 3686418, "stop_desc": "FACE 5 AVENUE D'ALFORTVILLE - 94022", "stop_name": "PONT DE CHOISY"}, "geometry": {"type": "Point", "coordinates": [2.4143072447805944, 48.76737347256756]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8eec2b9cae8f1f7f24fce55dc25768fe4d1be0a0", "fields": {"departement": "94", "stop_lat": 48.765524735623956, "code_postal": "94022", "stop_lon": 2.409844938920653, "coord": [48.765524735623956, 2.409844938920653], "stop_id": 3686420, "stop_desc": "AVENUE JEAN JAURES - 94022", "stop_name": "CHOISY-LE-ROI RER"}, "geometry": {"type": "Point", "coordinates": [2.409844938920653, 48.765524735623956]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "98d7e08104aec7a11dacdb8ebd537d4cfdf9e6d4", "fields": {"departement": "94", "stop_lat": 48.778995662591726, "code_postal": "94002", "stop_lon": 2.426237874429915, "coord": [48.778995662591726, 2.426237874429915], "stop_id": 3686426, "stop_desc": "RUE J.B. PREUX - 94002", "stop_name": "STADE D'ALFORTVILLE"}, "geometry": {"type": "Point", "coordinates": [2.426237874429915, 48.778995662591726]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "053205e621e12ec131016c8311c71583e1caafe4", "fields": {"departement": "94", "stop_lat": 48.76426039590838, "code_postal": "94022", "stop_lon": 2.4047854974824947, "coord": [48.76426039590838, 2.4047854974824947], "stop_id": 3686421, "stop_desc": "4 AVENUE GAMBETTA - 94022", "stop_name": "ROUGET DE LISLE"}, "geometry": {"type": "Point", "coordinates": [2.4047854974824947, 48.76426039590838]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e95adca632e7026a43c1992a93769f05d96d2fba", "fields": {"departement": "94", "stop_lat": 48.76984576717, "code_postal": "94022", "stop_lon": 2.413413485515799, "coord": [48.76984576717, 2.413413485515799], "stop_id": 3686415, "stop_desc": "35 AVENUE D'ALFORTVILLE - 94022", "stop_name": "JEAN VILAR"}, "geometry": {"type": "Point", "coordinates": [2.413413485515799, 48.76984576717]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ab5ed650bb627c1c83a8208273ce474d587799a7", "fields": {"departement": "94", "stop_lat": 48.85185253110625, "code_postal": "94033", "stop_lon": 2.486789788402135, "coord": [48.85185253110625, 2.486789788402135], "stop_id": 3683568, "stop_desc": "56 RUE ROGER SALENGRO - 94033", "stop_name": "PLACE DU GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.486789788402135, 48.85185253110625]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "40f5c2307112cc8e35e937ae3561b51dfd10b419", "fields": {"departement": "94", "stop_lat": 48.81659565308598, "code_postal": "94017", "stop_lon": 2.512056569515946, "coord": [48.81659565308598, 2.512056569515946], "stop_id": 3683551, "stop_desc": "12 AVENUE DE LA REPUBLIQUE - 94017", "stop_name": "REPUBLIQUE - STALINGRAD"}, "geometry": {"type": "Point", "coordinates": [2.512056569515946, 48.81659565308598]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "91accd32a3c47049d3d558bd6c9dd429ff3b3101", "fields": {"departement": "94", "stop_lat": 48.820974547612614, "code_postal": "94017", "stop_lon": 2.510778293039968, "coord": [48.820974547612614, 2.510778293039968], "stop_id": 3683471, "stop_desc": "49BIS-51 AVENUE DE LA REPUBLIQUE - 94017", "stop_name": "CITES JARDINS"}, "geometry": {"type": "Point", "coordinates": [2.510778293039968, 48.820974547612614]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b184e3462d68e7a1593c426daad2c9750596add6", "fields": {"departement": "93", "stop_lat": 48.8823627590568, "code_postal": "93064", "stop_lon": 2.4810318636072166, "coord": [48.8823627590568, 2.4810318636072166], "stop_id": 3683588, "stop_desc": "RUE LEON BLUM - 93064", "stop_name": "BOIS-PERRIER RER - ROSNY 2"}, "geometry": {"type": "Point", "coordinates": [2.4810318636072166, 48.8823627590568]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9961ef3a0473be2a221b0a4371831585b081531a", "fields": {"departement": "94", "stop_lat": 48.8280081599537, "code_postal": "94017", "stop_lon": 2.4940446690229003, "coord": [48.8280081599537, 2.4940446690229003], "stop_id": 3683558, "stop_desc": "236 BOULEVARD DE STALINGRAD - 94017", "stop_name": "PARC DU TREMBLAY"}, "geometry": {"type": "Point", "coordinates": [2.4940446690229003, 48.8280081599537]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a8d1f03b382284310d5c086c3f9248f95207e397", "fields": {"departement": "75", "stop_lat": 48.84445846840891, "code_postal": "75112", "stop_lon": 2.4422547273027364, "coord": [48.84445846840891, 2.4422547273027364], "stop_id": 3685679, "stop_desc": "13 AVENUE DE NOGENT - 75112", "stop_name": "CHATEAU DE VINCENNES"}, "geometry": {"type": "Point", "coordinates": [2.4422547273027364, 48.84445846840891]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3fbcb8b213d4989f004bbf9d51baadf1473f1ea9", "fields": {"departement": "93", "stop_lat": 48.86449006987001, "code_postal": "93049", "stop_lon": 2.4996038544628996, "coord": [48.86449006987001, 2.4996038544628996], "stop_id": 3683579, "stop_desc": "6 RUE DES DEUX COMMUNES - 93049", "stop_name": "LES DEUX COMMUNES"}, "geometry": {"type": "Point", "coordinates": [2.4996038544628996, 48.86449006987001]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "91559837029f3e8cdcc465fb7727c40aa48f0d92", "fields": {"departement": "94", "stop_lat": 48.82153061123755, "code_postal": "94017", "stop_lon": 2.498843367931249, "coord": [48.82153061123755, 2.498843367931249], "stop_id": 3683467, "stop_desc": "FACE 156 BD STALINGRAD - 94017", "stop_name": "ARISTIDE BRIAND"}, "geometry": {"type": "Point", "coordinates": [2.498843367931249, 48.82153061123755]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e3cfbb2574743211e60fae7da3becc6f89c99863", "fields": {"departement": "93", "stop_lat": 48.88056605010287, "code_postal": "93064", "stop_lon": 2.4804136914472807, "coord": [48.88056605010287, 2.4804136914472807], "stop_id": 3683587, "stop_desc": "RUE CONRAD ADENAUER - 93064", "stop_name": "LEON BLUM"}, "geometry": {"type": "Point", "coordinates": [2.4804136914472807, 48.88056605010287]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9fce6156dd2e3d48adddb535cdad64876f908c12", "fields": {"departement": "94", "stop_lat": 48.84799597105422, "code_postal": "94080", "stop_lon": 2.446238301316548, "coord": [48.84799597105422, 2.446238301316548], "stop_id": 3685688, "stop_desc": "1-3 RUE DEFRANCE - 94080", "stop_name": "LIBERATION"}, "geometry": {"type": "Point", "coordinates": [2.446238301316548, 48.84799597105422]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "efe1d19a5e55c1a272b291940697c26b29831c4f", "fields": {"departement": "93", "stop_lat": 48.85683222647169, "code_postal": "93050", "stop_lon": 2.5301163636868558, "coord": [48.85683222647169, 2.5301163636868558], "stop_id": 3685960, "stop_desc": "FACE 52 AVENUE DU GENERAL DE GAULLE - 93050", "stop_name": "PLACE DE LA RESISTANCE"}, "geometry": {"type": "Point", "coordinates": [2.5301163636868558, 48.85683222647169]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8fcb50d558d09d850285987f9384e96853426d03", "fields": {"departement": "75", "stop_lat": 48.84246550312074, "code_postal": "75112", "stop_lon": 2.449617167533425, "coord": [48.84246550312074, 2.449617167533425], "stop_id": 3686058, "stop_desc": "AVENUE DE LA PEPINIERE - 75112", "stop_name": "TREMBLAY - PEPINIERE"}, "geometry": {"type": "Point", "coordinates": [2.449617167533425, 48.84246550312074]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aaccfde7328d8334de2c87a24ac70f5aac2337a3", "fields": {"departement": "94", "stop_lat": 48.85297247950356, "code_postal": "94033", "stop_lon": 2.448999828579167, "coord": [48.85297247950356, 2.448999828579167], "stop_id": 3685975, "stop_desc": "FACE 75 RUE DE STALINGRAD - 94033", "stop_name": "LES PARAPLUIES"}, "geometry": {"type": "Point", "coordinates": [2.448999828579167, 48.85297247950356]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b96e8dadfe8ce66bbe2ce786df3d02dbe3b3210c", "fields": {"departement": "93", "stop_lat": 48.86093786740663, "code_postal": "93050", "stop_lon": 2.536560877624599, "coord": [48.86093786740663, 2.536560877624599], "stop_id": 3685969, "stop_desc": "AVENUE DE VERDUN - 93050", "stop_name": "SIMONE BIGOT."}, "geometry": {"type": "Point", "coordinates": [2.536560877624599, 48.86093786740663]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "672129b65568aaa5ca801a846d583106fb4faad8", "fields": {"departement": "93", "stop_lat": 48.86297552247139, "code_postal": "93049", "stop_lon": 2.5029909422821266, "coord": [48.86297552247139, 2.5029909422821266], "stop_id": 3685971, "stop_desc": "17 AVENUE DU MARECHAL FOCH - 93049", "stop_name": "CARNOT"}, "geometry": {"type": "Point", "coordinates": [2.5029909422821266, 48.86297552247139]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "656a4c1f612c6a28ca5a63c371edef971b505cfe", "fields": {"departement": "93", "stop_lat": 48.86098073125642, "code_postal": "93064", "stop_lon": 2.4891998327035556, "coord": [48.86098073125642, 2.4891998327035556], "stop_id": 3685973, "stop_desc": "8-10 AVENUE FAIDHERBE - 93064", "stop_name": "JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.4891998327035556, 48.86098073125642]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "483487cb73073e31a55146d002e225a74e9c74a3", "fields": {"departement": "94", "stop_lat": 48.83550556446465, "code_postal": "94052", "stop_lon": 2.4927330950685254, "coord": [48.83550556446465, 2.4927330950685254], "stop_id": 3686069, "stop_desc": "26 BIS RUE JACQUES KABLE - 94052", "stop_name": "VIADUC"}, "geometry": {"type": "Point", "coordinates": [2.4927330950685254, 48.83550556446465]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "79eb58172545948e116f03f1ad49b9712f6046b0", "fields": {"departement": "94", "stop_lat": 48.8357349277931, "code_postal": "94052", "stop_lon": 2.489112285575055, "coord": [48.8357349277931, 2.489112285575055], "stop_id": 3686068, "stop_desc": "2 RUE JACQUES KABLE - 94052", "stop_name": "RUE DU PORT"}, "geometry": {"type": "Point", "coordinates": [2.489112285575055, 48.8357349277931]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5923883036804f5f33bc375f19b74f606f534457", "fields": {"departement": "75", "stop_lat": 48.838778695962546, "code_postal": "75112", "stop_lon": 2.4606240718932018, "coord": [48.838778695962546, 2.4606240718932018], "stop_id": 3686063, "stop_desc": "AV DE NOGENT - 75112", "stop_name": "PORTE JAUNE"}, "geometry": {"type": "Point", "coordinates": [2.4606240718932018, 48.838778695962546]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "183fc85cf012ecbb6e9fd496ee9b8dca624ad8b7", "fields": {"departement": "94", "stop_lat": 48.8324244878627, "code_postal": "94058", "stop_lon": 2.5110207899145554, "coord": [48.8324244878627, 2.5110207899145554], "stop_id": 3686077, "stop_desc": "94 BOULEVARD FOCH - 94058", "stop_name": "FOCH"}, "geometry": {"type": "Point", "coordinates": [2.5110207899145554, 48.8324244878627]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "29021950715bd1382ec264c1153d0be2f96546f3", "fields": {"departement": "94", "stop_lat": 48.84573970308236, "code_postal": "94033", "stop_lon": 2.4728825503330905, "coord": [48.84573970308236, 2.4728825503330905], "stop_id": 3685883, "stop_desc": "RUE DE JOINVILLE - 94033", "stop_name": "ANCIENNE MAIRIE DE FONTENAY-SOUS-BOIS"}, "geometry": {"type": "Point", "coordinates": [2.4728825503330905, 48.84573970308236]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f5a2c92bf373a546cd48a95ce4739f40966dd7dd", "fields": {"departement": "94", "stop_lat": 48.843645855174145, "code_postal": "94033", "stop_lon": 2.4645164108617656, "coord": [48.843645855174145, 2.4645164108617656], "stop_id": 3685880, "stop_desc": "FACE12 BIS PLACE MOREAU DAVID - 94033", "stop_name": "FONTENAY-SOUS-BOIS RER"}, "geometry": {"type": "Point", "coordinates": [2.4645164108617656, 48.843645855174145]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1a4b7c02671e6a60bccac0d17ab9edfc39bc12a2", "fields": {"departement": "94", "stop_lat": 48.85994861762231, "code_postal": "94033", "stop_lon": 2.4807926491059042, "coord": [48.85994861762231, 2.4807926491059042], "stop_id": 3685823, "stop_desc": "FACE 239 AVENUE VICTOR HUGO - 94033", "stop_name": "CIMETIERE DE VINCENNES"}, "geometry": {"type": "Point", "coordinates": [2.4807926491059042, 48.85994861762231]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "674b9c0f30d0c5c752ba7a283fef986b41c53216", "fields": {"departement": "93", "stop_lat": 48.862328741409016, "code_postal": "93064", "stop_lon": 2.482066048514456, "coord": [48.862328741409016, 2.482066048514456], "stop_id": 3685824, "stop_desc": "FACE 287 AV DE LA REPUBLIQUE - 93064", "stop_name": "JULES GUESDE"}, "geometry": {"type": "Point", "coordinates": [2.482066048514456, 48.862328741409016]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ab388f927022fdff33c627b33b873c27c8530f7d", "fields": {"departement": "94", "stop_lat": 48.85394800884474, "code_postal": "94033", "stop_lon": 2.453292047191892, "coord": [48.85394800884474, 2.453292047191892], "stop_id": 3685927, "stop_desc": "35 AVENUE PARMENTIER - 94033", "stop_name": "LES BEAUMONTS"}, "geometry": {"type": "Point", "coordinates": [2.453292047191892, 48.85394800884474]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "64f11b3084df35c956950521a9457b0332a1b7df", "fields": {"departement": "93", "stop_lat": 48.87258924183589, "code_postal": "93064", "stop_lon": 2.4845743335348023, "coord": [48.87258924183589, 2.4845743335348023], "stop_id": 3685832, "stop_desc": "RUE DU GENERAL GALLIENI - 93064", "stop_name": "COPERNIC"}, "geometry": {"type": "Point", "coordinates": [2.4845743335348023, 48.87258924183589]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e4a7e58ad3ac79d3778a49c1c7906e549d12364a", "fields": {"departement": "94", "stop_lat": 48.84854903590399, "code_postal": "94033", "stop_lon": 2.4836481226670553, "coord": [48.84854903590399, 2.4836481226670553], "stop_id": 3685889, "stop_desc": "R GABRIEL LACASSAGNE - 94033", "stop_name": "MONTESQUIEU"}, "geometry": {"type": "Point", "coordinates": [2.4836481226670553, 48.84854903590399]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cd7559ed535277bcbcbba38d77a90819500d83f0", "fields": {"departement": "94", "stop_lat": 48.84938892654465, "code_postal": "94080", "stop_lon": 2.4557603648214354, "coord": [48.84938892654465, 2.4557603648214354], "stop_id": 3685841, "stop_desc": "143 RUE DEFRANCE - 94080", "stop_name": "LES RIGOLLOTS"}, "geometry": {"type": "Point", "coordinates": [2.4557603648214354, 48.84938892654465]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "39b3c6c6eb53b6ea0b6b477d98b74f0e57004cdf", "fields": {"departement": "93", "stop_lat": 48.86771764314497, "code_postal": "93064", "stop_lon": 2.48494193783217, "coord": [48.86771764314497, 2.48494193783217], "stop_id": 3685827, "stop_desc": "AVENUE DE LA REPUBLIQUE - 93064", "stop_name": "MEDERIC"}, "geometry": {"type": "Point", "coordinates": [2.48494193783217, 48.86771764314497]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "11c9489d063b9b768b47f3db47a3c330f2d9d813", "fields": {"departement": "94", "stop_lat": 48.84745902236664, "code_postal": "94033", "stop_lon": 2.485687705180975, "coord": [48.84745902236664, 2.485687705180975], "stop_id": 3685891, "stop_desc": "AVENUE DE NEUILLY - 94033", "stop_name": "HOCHE"}, "geometry": {"type": "Point", "coordinates": [2.485687705180975, 48.84745902236664]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a182259f39d8ef6db8f94d0b191f3644f5883109", "fields": {"departement": "93", "stop_lat": 48.857215804703934, "code_postal": "93050", "stop_lon": 2.5318884295907167, "coord": [48.857215804703934, 2.5318884295907167], "stop_id": 3685959, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 93050", "stop_name": "PLACE DE LA RESISTANCE"}, "geometry": {"type": "Point", "coordinates": [2.5318884295907167, 48.857215804703934]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e02b5cfbaa8d6cbbd611a35c8c86ab030531c9d6", "fields": {"departement": "93", "stop_lat": 48.85905053335464, "code_postal": "93050", "stop_lon": 2.5197183347801797, "coord": [48.85905053335464, 2.5197183347801797], "stop_id": 3685953, "stop_desc": "AVENUE PAUL DOUMER - 93050", "stop_name": "ARISTIDE BRIAND - LOUIS ARMAND"}, "geometry": {"type": "Point", "coordinates": [2.5197183347801797, 48.85905053335464]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6782592d853c8977ada8fbffa6f7bbeb2bb363e8", "fields": {"departement": "93", "stop_lat": 48.860568468376464, "code_postal": "93048", "stop_lon": 2.481025924558556, "coord": [48.860568468376464, 2.481025924558556], "stop_id": 3685941, "stop_desc": "261 AVENUE VICTOR HUGO - 93048", "stop_name": "CIMETIERE DE VINCENNES"}, "geometry": {"type": "Point", "coordinates": [2.481025924558556, 48.860568468376464]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fe12beae7c1322057d7d9b3a085436d5220decbc", "fields": {"departement": "93", "stop_lat": 48.86131464937027, "code_postal": "93049", "stop_lon": 2.508080026729301, "coord": [48.86131464937027, 2.508080026729301], "stop_id": 3685950, "stop_desc": "67 AVENUE DU MARECHAL FOCH - 93049", "stop_name": "SQUARE JEAN MERMOZ"}, "geometry": {"type": "Point", "coordinates": [2.508080026729301, 48.86131464937027]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fb84b3f13335ab8a35ff597421a84f3ec3de417d", "fields": {"departement": "93", "stop_lat": 48.86077358328537, "code_postal": "93049", "stop_lon": 2.5093450187751754, "coord": [48.86077358328537, 2.5093450187751754], "stop_id": 3685949, "stop_desc": "AVENUE DU MARECHAL FOCH - 93049", "stop_name": "SQUARE JEAN MERMOZ"}, "geometry": {"type": "Point", "coordinates": [2.5093450187751754, 48.86077358328537]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d6c9d12fd4685622f90de4130be7302d9452de3e", "fields": {"departement": "93", "stop_lat": 48.86315003292279, "code_postal": "93050", "stop_lon": 2.5358065553903844, "coord": [48.86315003292279, 2.5358065553903844], "stop_id": 3685968, "stop_desc": "AVENUE DU 8 MAI 1945 - 93050", "stop_name": "PLACE DES VICTOIRES."}, "geometry": {"type": "Point", "coordinates": [2.5358065553903844, 48.86315003292279]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9391a162fdf09353885aedb6b0436a142f60294f", "fields": {"departement": "93", "stop_lat": 48.86025092172143, "code_postal": "93049", "stop_lon": 2.5040038166287375, "coord": [48.86025092172143, 2.5040038166287375], "stop_id": 3685947, "stop_desc": "52 RUE BOUREAU GUERINIERE - 93049", "stop_name": "GEORGES CLEMENCEAU"}, "geometry": {"type": "Point", "coordinates": [2.5040038166287375, 48.86025092172143]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "de39f37d7156fffd1b791d0cd665dc8fcc23749e", "fields": {"departement": "93", "stop_lat": 48.859659391807774, "code_postal": "93048", "stop_lon": 2.4665171194992577, "coord": [48.859659391807774, 2.4665171194992577], "stop_id": 3685934, "stop_desc": "244 BOULEVARD THEOPHILE SUEUR - 93048", "stop_name": "GRANDS PECHERS"}, "geometry": {"type": "Point", "coordinates": [2.4665171194992577, 48.859659391807774]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "07c2757447dadc9fb37826ada907e4e63355df19", "fields": {"departement": "93", "stop_lat": 48.85975765730079, "code_postal": "93049", "stop_lon": 2.5156890167731607, "coord": [48.85975765730079, 2.5156890167731607], "stop_id": 3685951, "stop_desc": "118 AVENUE DU MARECHAL FOCH - 93049", "stop_name": "ALLEE MARIE"}, "geometry": {"type": "Point", "coordinates": [2.5156890167731607, 48.85975765730079]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e5895347db56320bdd2b6549415711160aed0dc4", "fields": {"departement": "93", "stop_lat": 48.85989263127511, "code_postal": "93049", "stop_lon": 2.5155805131695574, "coord": [48.85989263127511, 2.5155805131695574], "stop_id": 3685952, "stop_desc": "131 AVENUE DU MARECHAL FOCH - 93049", "stop_name": "ALLEE MARIE"}, "geometry": {"type": "Point", "coordinates": [2.5155805131695574, 48.85989263127511]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ccd9861a28ad2a82cd1e971cadcad83e91e34d39", "fields": {"departement": "94", "stop_lat": 48.78373999436898, "code_postal": "94002", "stop_lon": 2.4279869309686917, "coord": [48.78373999436898, 2.4279869309686917], "stop_id": 3686403, "stop_desc": "FACE 183 RUE ETIENNE DOLET - 94002", "stop_name": "CIMETIERE D'ALFORTVILLE"}, "geometry": {"type": "Point", "coordinates": [2.4279869309686917, 48.78373999436898]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9df567a7e09dc7814cc7189fc0b59536914fa214", "fields": {"departement": "94", "stop_lat": 48.805320051618516, "code_postal": "94002", "stop_lon": 2.4150983226414313, "coord": [48.805320051618516, 2.4150983226414313], "stop_id": 3686384, "stop_desc": "FACE 173 PLACE SALVADOR ALLENDE - 94002", "stop_name": "SALVADOR ALLENDE"}, "geometry": {"type": "Point", "coordinates": [2.4150983226414313, 48.805320051618516]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1e1ff94ceeeb714b753c000104808ba0f1e909f2", "fields": {"departement": "94", "stop_lat": 48.814298589736914, "code_postal": "94002", "stop_lon": 2.415479230713905, "coord": [48.814298589736914, 2.415479230713905], "stop_id": 3686379, "stop_desc": "17 R VAILLANT COUTURIER - 94002", "stop_name": "GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.415479230713905, 48.814298589736914]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ff8d5e0380ee8769996c84ec8dd2f767f2ccfb99", "fields": {"departement": "94", "stop_lat": 48.78651893887328, "code_postal": "94002", "stop_lon": 2.425774703668473, "coord": [48.78651893887328, 2.425774703668473], "stop_id": 3686401, "stop_desc": "140-142 RUE ETIENNE DOLET - 94002", "stop_name": "SAN BENEDETTO"}, "geometry": {"type": "Point", "coordinates": [2.425774703668473, 48.78651893887328]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "553b8508fe27d2cd3f3dabdd2f4e36546370352b", "fields": {"departement": "94", "stop_lat": 48.77835061042173, "code_postal": "94002", "stop_lon": 2.4234080543734717, "coord": [48.77835061042173, 2.4234080543734717], "stop_id": 3686408, "stop_desc": "RUE J.B. PREUX - 94002", "stop_name": "DIGUE-REVOLUTION"}, "geometry": {"type": "Point", "coordinates": [2.4234080543734717, 48.77835061042173]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "87d5a22c6fe7894b450ab93e143c694329d23b21", "fields": {"departement": "94", "stop_lat": 48.77228998931445, "code_postal": "94022", "stop_lon": 2.414232948909853, "coord": [48.77228998931445, 2.414232948909853], "stop_id": 3686414, "stop_desc": "72-78 AVENUE D'ALFORTVILLE - 94022", "stop_name": "LA FOLIE"}, "geometry": {"type": "Point", "coordinates": [2.414232948909853, 48.77228998931445]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fa41b53dd2a92f8d06fe57ac46848f7dc27d0170", "fields": {"departement": "94", "stop_lat": 48.80740318614468, "code_postal": "94002", "stop_lon": 2.41814945914464, "coord": [48.80740318614468, 2.41814945914464], "stop_id": 3686383, "stop_desc": "149 BIS RUE VAILLANT COUTURIER - 94002", "stop_name": "UNION"}, "geometry": {"type": "Point", "coordinates": [2.41814945914464, 48.80740318614468]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d72c38369a9efacef894cd549f0014f55b02ae50", "fields": {"departement": "94", "stop_lat": 48.809769579608165, "code_postal": "94002", "stop_lon": 2.4142204865560135, "coord": [48.809769579608165, 2.4142204865560135], "stop_id": 3686380, "stop_desc": "108 RUE VERON - 94002", "stop_name": "RUE DE SEINE"}, "geometry": {"type": "Point", "coordinates": [2.4142204865560135, 48.809769579608165]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "31b1485e9f396af4dbae18aa824b0fb1d0f2f95f", "fields": {"departement": "94", "stop_lat": 48.797752319023104, "code_postal": "94002", "stop_lon": 2.4277665318073747, "coord": [48.797752319023104, 2.4277665318073747], "stop_id": 3686394, "stop_desc": "R DE VERDUN - 94002", "stop_name": "FLORE"}, "geometry": {"type": "Point", "coordinates": [2.4277665318073747, 48.797752319023104]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "57402ea734cec9bd45764513620439c93db23a3d", "fields": {"departement": "94", "stop_lat": 48.80733356562484, "code_postal": "94002", "stop_lon": 2.4147203407460958, "coord": [48.80733356562484, 2.4147203407460958], "stop_id": 3686382, "stop_desc": "114 RUE VERON - 94002", "stop_name": "UNION"}, "geometry": {"type": "Point", "coordinates": [2.4147203407460958, 48.80733356562484]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "081c4b5e09c2f17fd2ece0467ea3e390aa0e0d66", "fields": {"departement": "94", "stop_lat": 48.76461703210473, "code_postal": "94073", "stop_lon": 2.3684438760824804, "coord": [48.76461703210473, 2.3684438760824804], "stop_id": 3686371, "stop_desc": "AVENUE DE FONTAINEBLEAU - 94073", "stop_name": "CIMETIERE PARISIEN DE THIAIS"}, "geometry": {"type": "Point", "coordinates": [2.3684438760824804, 48.76461703210473]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ef1b9009b49dd5ccea9c5ba6ba5d5be721cf124c", "fields": {"departement": "94", "stop_lat": 48.76721953591227, "code_postal": "94073", "stop_lon": 2.3812263093189916, "coord": [48.76721953591227, 2.3812263093189916], "stop_id": 3686358, "stop_desc": "FACE 45 AVENUE DU GENERAL DE GAULLE - 94073", "stop_name": "GRANDS CHAMPS"}, "geometry": {"type": "Point", "coordinates": [2.3812263093189916, 48.76721953591227]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e71c32cb10c25dde6ea95ffdbd5e32121c57003f", "fields": {"departement": "94", "stop_lat": 48.76751753977791, "code_postal": "94073", "stop_lon": 2.377269907434098, "coord": [48.76751753977791, 2.377269907434098], "stop_id": 3686361, "stop_desc": "61 AVENUE DU GENERAL DE GAULLE - 94073", "stop_name": "PAUL LANGEVIN"}, "geometry": {"type": "Point", "coordinates": [2.377269907434098, 48.76751753977791]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f4b55507b80147984426ec23b277c887a4faeffb", "fields": {"departement": "94", "stop_lat": 48.76822901452626, "code_postal": "94073", "stop_lon": 2.3728106606454795, "coord": [48.76822901452626, 2.3728106606454795], "stop_id": 3686360, "stop_desc": "92 AV DU GENERAL DE GAULLE - 94073", "stop_name": "PAUL LANGEVIN"}, "geometry": {"type": "Point", "coordinates": [2.3728106606454795, 48.76822901452626]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "40a65367f6acb07ff373aff8cc44b95cb63f3368", "fields": {"departement": "94", "stop_lat": 48.76386013576496, "code_postal": "94073", "stop_lon": 2.396926607758173, "coord": [48.76386013576496, 2.396926607758173], "stop_id": 3686350, "stop_desc": "FACE 35 AVENUE RENE PANHARD - 94073", "stop_name": "PANHARD - HUGO"}, "geometry": {"type": "Point", "coordinates": [2.396926607758173, 48.76386013576496]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "20649490120e167870be44a1504d7455ca8e0370", "fields": {"departement": "94", "stop_lat": 48.76352710165557, "code_postal": "94073", "stop_lon": 2.397864329095409, "coord": [48.76352710165557, 2.397864329095409], "stop_id": 3686351, "stop_desc": "FACE 36 AVENUE RENE PANHARD - 94073", "stop_name": "PANHARD - HUGO"}, "geometry": {"type": "Point", "coordinates": [2.397864329095409, 48.76352710165557]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a60d532899f28444fe2b4023a57cd9e138fb55db", "fields": {"departement": "94", "stop_lat": 48.778995662591726, "code_postal": "94002", "stop_lon": 2.426237874429915, "coord": [48.778995662591726, 2.426237874429915], "stop_id": 3686373, "stop_desc": "RUE J.B. PREUX - 94002", "stop_name": "STADE D'ALFORTVILLE"}, "geometry": {"type": "Point", "coordinates": [2.426237874429915, 48.778995662591726]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9e1a6adb37eeaacef394c93287cf83de49183ba2", "fields": {"departement": "94", "stop_lat": 48.76432242204478, "code_postal": "94022", "stop_lon": 2.406335512595289, "coord": [48.76432242204478, 2.406335512595289], "stop_id": 3686347, "stop_desc": "7 AV GAMBETTA - 94022", "stop_name": "ROUGET DE LISLE"}, "geometry": {"type": "Point", "coordinates": [2.406335512595289, 48.76432242204478]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5a0055f7c7f72abcbbdeb0c5d2689a2b28bf8f36", "fields": {"departement": "92", "stop_lat": 48.74041965542758, "code_postal": "92002", "stop_lon": 2.301772072962336, "coord": [48.74041965542758, 2.301772072962336], "stop_id": 4314851, "stop_desc": "4-18 AVENUE DU PRESIDENT KENNEDY - 92002", "stop_name": "PETIT MASSY"}, "geometry": {"type": "Point", "coordinates": [2.301772072962336, 48.74041965542758]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aa45ce85b67430776720883c833cf4e62baaf068", "fields": {"departement": "93", "stop_lat": 48.86988799585144, "code_postal": "93048", "stop_lon": 2.4656298376384536, "coord": [48.86988799585144, 2.4656298376384536], "stop_id": 4364011, "stop_desc": "FACE 265 RUE DE ROSNY - 93048", "stop_name": "ACACIA"}, "geometry": {"type": "Point", "coordinates": [2.4656298376384536, 48.86988799585144]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6e48c9cc434e749d29f4a1bc87f0203ba33a7274", "fields": {"departement": "93", "stop_lat": 48.87092577812884, "code_postal": "93048", "stop_lon": 2.469964801821174, "coord": [48.87092577812884, 2.469964801821174], "stop_id": 4364013, "stop_desc": "302 RUE DE ROSNY - 93048", "stop_name": "FORT DE ROSNY"}, "geometry": {"type": "Point", "coordinates": [2.469964801821174, 48.87092577812884]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fc76573d52fe9d13a3d91adcb326a612ecc80719", "fields": {"departement": "93", "stop_lat": 48.88273054353048, "code_postal": "93064", "stop_lon": 2.481605217267796, "coord": [48.88273054353048, 2.481605217267796], "stop_id": 4364021, "stop_desc": "RUE JEAN DE MAILLY - 93064", "stop_name": "BOIS-PERRIER RER-ROSNY 2"}, "geometry": {"type": "Point", "coordinates": [2.481605217267796, 48.88273054353048]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "39f8d338b5db78236616fcf7cf3efd359535a8a9", "fields": {"departement": "93", "stop_lat": 48.884923836097904, "code_postal": "93077", "stop_lon": 2.5020799344980236, "coord": [48.884923836097904, 2.5020799344980236], "stop_id": 4364029, "stop_desc": "FACE 67 AV DE ROSNY - 93077", "stop_name": "MEISSONIER"}, "geometry": {"type": "Point", "coordinates": [2.5020799344980236, 48.884923836097904]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c7c698475e252c925318476384d4a0727e89ac34", "fields": {"departement": "93", "stop_lat": 48.88443086356306, "code_postal": "93077", "stop_lon": 2.507529344691353, "coord": [48.88443086356306, 2.507529344691353], "stop_id": 4364030, "stop_desc": "1 RUE GRANDE RUE - 93077", "stop_name": "AVENUE DU RAINCY"}, "geometry": {"type": "Point", "coordinates": [2.507529344691353, 48.88443086356306]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "82d678a966634040a41420577b0be6559f4f99c3", "fields": {"departement": "93", "stop_lat": 48.877550507721665, "code_postal": "93064", "stop_lon": 2.4843567962909288, "coord": [48.877550507721665, 2.4843567962909288], "stop_id": 4364044, "stop_desc": "FACE 3 BOULEVARD GABRIEL PERI - 93064", "stop_name": "VAN DERHEYDEN"}, "geometry": {"type": "Point", "coordinates": [2.4843567962909288, 48.877550507721665]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "13ab7b810856639a9dcc28f38819559782b9cac1", "fields": {"departement": "91", "stop_lat": 48.699779392992774, "code_postal": "91027", "stop_lon": 2.383464165035811, "coord": [48.699779392992774, 2.383464165035811], "stop_id": 4364134, "stop_desc": "15 AVENUE DU 18 AVRIL - 91027", "stop_name": "DOCTEUR GUERIN"}, "geometry": {"type": "Point", "coordinates": [2.383464165035811, 48.699779392992774]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d50ad0fed500955c4683bcf7685ce866219ed4b8", "fields": {"departement": "91", "stop_lat": 48.6931833463181, "code_postal": "91326", "stop_lon": 2.379262913371422, "coord": [48.6931833463181, 2.379262913371422], "stop_id": 4364141, "stop_desc": "24 RUE VOLTAIRE - 91326", "stop_name": "VOLTAIRE"}, "geometry": {"type": "Point", "coordinates": [2.379262913371422, 48.6931833463181]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2839124b4e0d6c2359f47deb3e7c4d78750c14c4", "fields": {"departement": "91", "stop_lat": 48.708459854175295, "code_postal": "91027", "stop_lon": 2.3893661666025343, "coord": [48.708459854175295, 2.3893661666025343], "stop_id": 4364143, "stop_desc": "6 PL DE L'EGLISE - 91027", "stop_name": "PLACE DE L'EGLISE"}, "geometry": {"type": "Point", "coordinates": [2.3893661666025343, 48.708459854175295]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d4151d65da2c9fe98e66a10ba0fa217958327dd4", "fields": {"departement": "91", "stop_lat": 48.70988833841886, "code_postal": "91027", "stop_lon": 2.390902328356646, "coord": [48.70988833841886, 2.390902328356646], "stop_id": 4364144, "stop_desc": "RUE GENEVIEVE ANTHONIOZ-DE GAULLE - 91027", "stop_name": "SAINT-CHARLES"}, "geometry": {"type": "Point", "coordinates": [2.390902328356646, 48.70988833841886]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "49590d702f1e71fe8570dc8e68cc228f026c3ab5", "fields": {"departement": "91", "stop_lat": 48.71091407362534, "code_postal": "91027", "stop_lon": 2.388526544318977, "coord": [48.71091407362534, 2.388526544318977], "stop_id": 4364145, "stop_desc": "FACE 32 AV HENRI DUNANT - 91027", "stop_name": "CIMETIERE D'ATHIS-MONS"}, "geometry": {"type": "Point", "coordinates": [2.388526544318977, 48.71091407362534]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "474de3034f6d0aa42900720c9eaaf6a2cb28cf99", "fields": {"departement": "91", "stop_lat": 48.70595443969439, "code_postal": "91432", "stop_lon": 2.3331261546438875, "coord": [48.70595443969439, 2.3331261546438875], "stop_id": 4373700, "stop_desc": "21 AVENUE DU GENERAL WARABIOT - 91432", "stop_name": "MAIRIE DE MORANGIS"}, "geometry": {"type": "Point", "coordinates": [2.3331261546438875, 48.70595443969439]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8571524ba15ae43e2809179c0932d475097cf5ce", "fields": {"departement": "91", "stop_lat": 48.69270539500779, "code_postal": "91589", "stop_lon": 2.337661989260674, "coord": [48.69270539500779, 2.337661989260674], "stop_id": 4373712, "stop_desc": "R DE SAVIGNY - 91589", "stop_name": "COMMISSARIAT DE SAVIGNY-SUR-ORGE"}, "geometry": {"type": "Point", "coordinates": [2.337661989260674, 48.69270539500779]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "18a28f413b7ab83e4a5a11fdb6abc233eb5e5597", "fields": {"departement": "91", "stop_lat": 48.68654812682002, "code_postal": "91589", "stop_lon": 2.3413273505134855, "coord": [48.68654812682002, 2.3413273505134855], "stop_id": 4373715, "stop_desc": "37 AV JEAN ALLEMANE - 91589", "stop_name": "GLYCINES"}, "geometry": {"type": "Point", "coordinates": [2.3413273505134855, 48.68654812682002]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "efaa5584c6932490efb760c56b3d921fea465707", "fields": {"departement": "91", "stop_lat": 48.68654812208068, "code_postal": "91589", "stop_lon": 2.341463106434218, "coord": [48.68654812208068, 2.341463106434218], "stop_id": 4373716, "stop_desc": "50 AV JEAN ALLEMANE - 91589", "stop_name": "GLYCINES"}, "geometry": {"type": "Point", "coordinates": [2.341463106434218, 48.68654812208068]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e4e7703de1976f90c8db97dc40e849565b037b15", "fields": {"departement": "91", "stop_lat": 48.67873671160133, "code_postal": "91589", "stop_lon": 2.346240365571396, "coord": [48.67873671160133, 2.346240365571396], "stop_id": 4373721, "stop_desc": "41 AVENUE CHARLES DE GAULLE - 91589", "stop_name": "CENTRE ADMINISTRATIF"}, "geometry": {"type": "Point", "coordinates": [2.346240365571396, 48.67873671160133]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "94daa915f6d9b79a22e6073977d7c2e1ac0e058a", "fields": {"departement": "91", "stop_lat": 48.679662646151584, "code_postal": "91589", "stop_lon": 2.344801703087946, "coord": [48.679662646151584, 2.344801703087946], "stop_id": 4373722, "stop_desc": "FACE 53 AVENUE CHARLES DE GAULLE - 91589", "stop_name": "CENTRE ADMINISTRATIF"}, "geometry": {"type": "Point", "coordinates": [2.344801703087946, 48.679662646151584]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "589749895c45ee72448b35f5296181e75f11f0ae", "fields": {"departement": "91", "stop_lat": 48.67767483208988, "code_postal": "91589", "stop_lon": 2.3564608605373247, "coord": [48.67767483208988, 2.3564608605373247], "stop_id": 4373726, "stop_desc": "9 RUE CHATEAUBRIAND - 91589", "stop_name": "CHATEAUBRIAND"}, "geometry": {"type": "Point", "coordinates": [2.3564608605373247, 48.67767483208988]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2ced075f38b1a41da20428eb91d34ba15d2c6327", "fields": {"departement": "91", "stop_lat": 48.67628226770833, "code_postal": "91589", "stop_lon": 2.351628388871904, "coord": [48.67628226770833, 2.351628388871904], "stop_id": 4373729, "stop_desc": "2 PL DE LA GARE - 91589", "stop_name": "SAVIGNY-SUR-ORGE RER"}, "geometry": {"type": "Point", "coordinates": [2.351628388871904, 48.67628226770833]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eadd2a903f0bbe8c2e1a2cb7ac66c62bd6c04d65", "fields": {"departement": "91", "stop_lat": 48.71541433978244, "code_postal": "91027", "stop_lon": 2.3718101496357558, "coord": [48.71541433978244, 2.3718101496357558], "stop_id": 4376555, "stop_desc": "PISTE GARE ROUTIERE - 91027", "stop_name": "PORTE DE L'ESSONNE"}, "geometry": {"type": "Point", "coordinates": [2.3718101496357558, 48.71541433978244]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fad6b72419ae5349fed99a89d56f4c36e486a022", "fields": {"departement": "91", "stop_lat": 48.708322622460564, "code_postal": "91479", "stop_lon": 2.3711942807962907, "coord": [48.708322622460564, 2.3711942807962907], "stop_id": 4376556, "stop_desc": "BOULEVARD DE FONTAINEBLEAU - 91479", "stop_name": "ARISTIDE BRIAND"}, "geometry": {"type": "Point", "coordinates": [2.3711942807962907, 48.708322622460564]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "16ba91a3ad64c71fdc334af0a6ebf4dbb882ee6a", "fields": {"departement": "91", "stop_lat": 48.7052035724551, "code_postal": "91027", "stop_lon": 2.371341630771376, "coord": [48.7052035724551, 2.371341630771376], "stop_id": 4376557, "stop_desc": "95 AVENUE FRANCOIS MITTERRAND - 91027", "stop_name": "BELLE ETOILE"}, "geometry": {"type": "Point", "coordinates": [2.371341630771376, 48.7052035724551]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1b85328e6acb93b52d112115516e554ebe670738", "fields": {"departement": "91", "stop_lat": 48.70353154847919, "code_postal": "91027", "stop_lon": 2.3718973161518453, "coord": [48.70353154847919, 2.3718973161518453], "stop_id": 4376560, "stop_desc": "FACE 75 AVENUE FRANCOIS MITTERRAND - 91027", "stop_name": "MARX DORMOY"}, "geometry": {"type": "Point", "coordinates": [2.3718973161518453, 48.70353154847919]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3b8080f747f17beb424f962b467dc3a1e393d71e", "fields": {"departement": "91", "stop_lat": 48.70090685562848, "code_postal": "91027", "stop_lon": 2.372044941023077, "coord": [48.70090685562848, 2.372044941023077], "stop_id": 4376562, "stop_desc": "46 AVENUE FRANCOIS MITTERRAND - 91027", "stop_name": "MARCHE DES GRAVILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.372044941023077, 48.70090685562848]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7df37cac6f5b15ad1316ca3f6f960be17b900f25", "fields": {"departement": "91", "stop_lat": 48.695100540265024, "code_postal": "91326", "stop_lon": 2.371036299333733, "coord": [48.695100540265024, 2.371036299333733], "stop_id": 4376564, "stop_desc": "77 AVENUE DE LA COUR DE FRANCE - 91326", "stop_name": "OBSERVATOIRE CAMILLE FLAMMARION"}, "geometry": {"type": "Point", "coordinates": [2.371036299333733, 48.695100540265024]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1919f12fd761abeb9fe83beba4156f483e5b5e8b", "fields": {"departement": "91", "stop_lat": 48.69169394733719, "code_postal": "91326", "stop_lon": 2.3707489718944226, "coord": [48.69169394733719, 2.3707489718944226], "stop_id": 4376567, "stop_desc": "AVENUE DE LA COUR DE FRANCE - 91326", "stop_name": "MAIRIE DE JUVISY"}, "geometry": {"type": "Point", "coordinates": [2.3707489718944226, 48.69169394733719]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "95cc132a273cb51aae900fb1bd0d21b267e05c84", "fields": {"departement": "91", "stop_lat": 48.69082994236396, "code_postal": "91326", "stop_lon": 2.3744412809792466, "coord": [48.69082994236396, 2.3744412809792466], "stop_id": 4376574, "stop_desc": "FACE 3 RUE PIVER - 91326", "stop_name": "HOPITAL DE JUVISY"}, "geometry": {"type": "Point", "coordinates": [2.3744412809792466, 48.69082994236396]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1f96de8ed7135cac4be554853785eaef366c667f", "fields": {"departement": "91", "stop_lat": 48.692258585581776, "code_postal": "91326", "stop_lon": 2.3761394374852545, "coord": [48.692258585581776, 2.3761394374852545], "stop_id": 4376578, "stop_desc": "60 AVENUE D'ESTIENNE D'ORVES - 91326", "stop_name": "MARCHE DE JUVISY"}, "geometry": {"type": "Point", "coordinates": [2.3761394374852545, 48.692258585581776]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "91b55712e3fba4283a7ed9769754d33af17a7b7c", "fields": {"departement": "91", "stop_lat": 48.70919439569311, "code_postal": "91027", "stop_lon": 2.37157513175139, "coord": [48.70919439569311, 2.37157513175139], "stop_id": 4376587, "stop_desc": "AVENUE FRANCOIS MITTERRAND - 91027", "stop_name": "ARISTIDE BRIAND"}, "geometry": {"type": "Point", "coordinates": [2.37157513175139, 48.70919439569311]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f48c31de3350e35cbd4b5f4b17313e15e7f0c476", "fields": {"departement": "91", "stop_lat": 48.71301615974179, "code_postal": "91479", "stop_lon": 2.365221043119854, "coord": [48.71301615974179, 2.365221043119854], "stop_id": 4377188, "stop_desc": "68 AVENUE PAUL VAILLANT COUTURIER - 91479", "stop_name": "HENRI BARBUSSE"}, "geometry": {"type": "Point", "coordinates": [2.365221043119854, 48.71301615974179]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "849c53a16b6034a057b8b4c22b1abd4aff2f6bec", "fields": {"departement": "91", "stop_lat": 48.70962871577974, "code_postal": "91479", "stop_lon": 2.3595149428073428, "coord": [48.70962871577974, 2.3595149428073428], "stop_id": 4377192, "stop_desc": "92 AVENUE DU GENERAL DE GAULLE - 91479", "stop_name": "MAXIME VEDY"}, "geometry": {"type": "Point", "coordinates": [2.3595149428073428, 48.70962871577974]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c2c603fa7cb90d992ff3957ea4a2eb0ff56540de", "fields": {"departement": "91", "stop_lat": 48.70416292043989, "code_postal": "91027", "stop_lon": 2.3633965378367963, "coord": [48.70416292043989, 2.3633965378367963], "stop_id": 4377196, "stop_desc": "11 R DES FROIDES BOUILLIES - 91027", "stop_name": "NOYER RENARD"}, "geometry": {"type": "Point", "coordinates": [2.3633965378367963, 48.70416292043989]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6a6dc25ee941c1b243d8d0af8634d26aceaeedb1", "fields": {"departement": "91", "stop_lat": 48.70226659164685, "code_postal": "91027", "stop_lon": 2.3622413108029874, "coord": [48.70226659164685, 2.3622413108029874], "stop_id": 4377197, "stop_desc": "9 R DES POURPOINTIERS - 91027", "stop_name": "PLEIN MIDI"}, "geometry": {"type": "Point", "coordinates": [2.3622413108029874, 48.70226659164685]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f092c85e4a62b8bbea969ba7436ce3eea86bed00", "fields": {"departement": "91", "stop_lat": 48.70216768058842, "code_postal": "91027", "stop_lon": 2.3624177989832913, "coord": [48.70216768058842, 2.3624177989832913], "stop_id": 4377198, "stop_desc": "10 R DES POURPOINTIERS - 91027", "stop_name": "PLEIN MIDI"}, "geometry": {"type": "Point", "coordinates": [2.3624177989832913, 48.70216768058842]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "39ab750367e0a42bfb7b3c7025abb9194ab98fd7", "fields": {"departement": "91", "stop_lat": 48.69847424001794, "code_postal": "91326", "stop_lon": 2.3580300908982585, "coord": [48.69847424001794, 2.3580300908982585], "stop_id": 4377201, "stop_desc": "21 AV GUYNEMER - 91326", "stop_name": "PLACE GUYNEMER"}, "geometry": {"type": "Point", "coordinates": [2.3580300908982585, 48.69847424001794]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e7393bfb038a53db94c4f36837cc0279f7786909", "fields": {"departement": "91", "stop_lat": 48.698069619664395, "code_postal": "91326", "stop_lon": 2.3587903308386315, "coord": [48.698069619664395, 2.3587903308386315], "stop_id": 4377202, "stop_desc": "28-30 AV DES CAPUCINES - 91326", "stop_name": "PLACE GUYNEMER"}, "geometry": {"type": "Point", "coordinates": [2.3587903308386315, 48.698069619664395]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ed6a3b1527a8c43ca0730b2b0666464e66835a9c", "fields": {"departement": "91", "stop_lat": 48.69787254255577, "code_postal": "91326", "stop_lon": 2.354703106516436, "coord": [48.69787254255577, 2.354703106516436], "stop_id": 4377203, "stop_desc": "1-3 AV ANATOLE FRANCE - 91326", "stop_name": "PALOMBES"}, "geometry": {"type": "Point", "coordinates": [2.354703106516436, 48.69787254255577]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4b6d77551f9c0cfab2e940cb2d20bd35ae1efb70", "fields": {"departement": "91", "stop_lat": 48.695418512815, "code_postal": "91589", "stop_lon": 2.3557070485215164, "coord": [48.695418512815, 2.3557070485215164], "stop_id": 4377205, "stop_desc": "R DES PALOMBES - 91589", "stop_name": "DEBUSSY - CHAMPAGNE"}, "geometry": {"type": "Point", "coordinates": [2.3557070485215164, 48.695418512815]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cd313f19844a9d79949cec76e605544fd27489d8", "fields": {"departement": "91", "stop_lat": 48.69481573206728, "code_postal": "91326", "stop_lon": 2.3589383391239287, "coord": [48.69481573206728, 2.3589383391239287], "stop_id": 4377207, "stop_desc": "AV DES ALOUETTES - 91326", "stop_name": "SQUARE CHEVEAUX"}, "geometry": {"type": "Point", "coordinates": [2.3589383391239287, 48.69481573206728]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4189bc09818d222ab6b092b5e57c53cf63b54096", "fields": {"departement": "91", "stop_lat": 48.693447272497, "code_postal": "91326", "stop_lon": 2.368740646423399, "coord": [48.693447272497, 2.368740646423399], "stop_id": 4377210, "stop_desc": "FACE 7 R PETIT - 91326", "stop_name": "ECOLE JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.368740646423399, 48.693447272497]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8246a1c7655dcea7b14b04c59b6b064babea6289", "fields": {"departement": "91", "stop_lat": 48.69169394733719, "code_postal": "91326", "stop_lon": 2.3707489718944226, "coord": [48.69169394733719, 2.3707489718944226], "stop_id": 4377212, "stop_desc": "AVENUE DE LA COUR DE FRANCE - 91326", "stop_name": "MAIRIE DE JUVISY"}, "geometry": {"type": "Point", "coordinates": [2.3707489718944226, 48.69169394733719]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4e31c55e26a9e6e847e259e11e8fa4b5e846720c", "fields": {"departement": "91", "stop_lat": 48.68892508573745, "code_postal": "91326", "stop_lon": 2.372036929834239, "coord": [48.68892508573745, 2.372036929834239], "stop_id": 4377213, "stop_desc": "35-37 RUE PIVER - 91326", "stop_name": "PIVER"}, "geometry": {"type": "Point", "coordinates": [2.372036929834239, 48.68892508573745]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e0a098aa5506f569b06b59e909b75377dd574aef", "fields": {"departement": "91", "stop_lat": 48.695650556146866, "code_postal": "91326", "stop_lon": 2.364356296186577, "coord": [48.695650556146866, 2.364356296186577], "stop_id": 4377220, "stop_desc": "FACE 19 AV HENRI BARBUSSE - 91326", "stop_name": "PLACE HENRI BARBUSSE"}, "geometry": {"type": "Point", "coordinates": [2.364356296186577, 48.695650556146866]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aa30c1de75c86d9f97d1b24f90c015371bedf1b6", "fields": {"departement": "91", "stop_lat": 48.713051509154916, "code_postal": "91479", "stop_lon": 2.3676794965072774, "coord": [48.713051509154916, 2.3676794965072774], "stop_id": 4377609, "stop_desc": "52-54 AV PAUL VAILLANT COUTURIER - 91479", "stop_name": "CENTRE SPORTIF"}, "geometry": {"type": "Point", "coordinates": [2.3676794965072774, 48.713051509154916]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ebb91a6e83550fc870da526899e8a1672844fc0e", "fields": {"departement": "91", "stop_lat": 48.70517122890431, "code_postal": "91479", "stop_lon": 2.3547055550080347, "coord": [48.70517122890431, 2.3547055550080347], "stop_id": 4377616, "stop_desc": "46 AVENUE CHARLES DE GAULLE - 91479", "stop_name": "LES FLEURS"}, "geometry": {"type": "Point", "coordinates": [2.3547055550080347, 48.70517122890431]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "137f3274f2eeeddcf66de0d8b961276d09d1fbb6", "fields": {"departement": "91", "stop_lat": 48.69289383685861, "code_postal": "91589", "stop_lon": 2.3459576890824585, "coord": [48.69289383685861, 2.3459576890824585], "stop_id": 4377621, "stop_desc": "141 AVENUE GABRIEL PERI - 91589", "stop_name": "CITE DES TILLEULS"}, "geometry": {"type": "Point", "coordinates": [2.3459576890824585, 48.69289383685861]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2b20c87237396a6202b5752dfd202f91b1bc90b3", "fields": {"departement": "91", "stop_lat": 48.68816445328174, "code_postal": "91589", "stop_lon": 2.3573200215398393, "coord": [48.68816445328174, 2.3573200215398393], "stop_id": 4377628, "stop_desc": "2 AVENUE GABRIEL PERI - 91589", "stop_name": "ARISTIDE BRIAND - CHAMPAGNE"}, "geometry": {"type": "Point", "coordinates": [2.3573200215398393, 48.68816445328174]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7100802311a3c8419cb1a053c5d5b9303d00ecc5", "fields": {"departement": "91", "stop_lat": 48.68284267569443, "code_postal": "91589", "stop_lon": 2.3601007677690373, "coord": [48.68284267569443, 2.3601007677690373], "stop_id": 4377630, "stop_desc": "170 AVENUE CARNOT - 91589", "stop_name": "MONTAGNE PAVEE"}, "geometry": {"type": "Point", "coordinates": [2.3601007677690373, 48.68284267569443]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2d07348bbc8eb23092ea7eeca2fac3273ced1572", "fields": {"departement": "91", "stop_lat": 48.677046509255085, "code_postal": "91589", "stop_lon": 2.349850522014017, "coord": [48.677046509255085, 2.349850522014017], "stop_id": 4377633, "stop_desc": "19 AVENUE CARNOT - 91589", "stop_name": "SAVIGNY-SUR-ORGE - CARNOT - RER"}, "geometry": {"type": "Point", "coordinates": [2.349850522014017, 48.677046509255085]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6a07401bee4787e252d4d8f1672bc93a49cc8dd0", "fields": {"departement": "91", "stop_lat": 48.68379767096476, "code_postal": "91589", "stop_lon": 2.3366709530842074, "coord": [48.68379767096476, 2.3366709530842074], "stop_id": 4377640, "stop_desc": "39 AVENUE RAOUL LEBON - 91589", "stop_name": "MARGUERITES - SALVADOR ALLENDE"}, "geometry": {"type": "Point", "coordinates": [2.3366709530842074, 48.68379767096476]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e40f88318671aa2bff58180b8343faa6169d438c", "fields": {"departement": "92", "stop_lat": 48.762603184983526, "code_postal": "92002", "stop_lon": 2.304163323104653, "coord": [48.762603184983526, 2.304163323104653], "stop_id": 4377716, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 92002", "stop_name": "LA CROIX DE BERNY RER"}, "geometry": {"type": "Point", "coordinates": [2.304163323104653, 48.762603184983526]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6b5aee2708a353838b398537367a3ab68ea647a7", "fields": {"departement": "92", "stop_lat": 48.74982316970425, "code_postal": "92002", "stop_lon": 2.308534529548065, "coord": [48.74982316970425, 2.308534529548065], "stop_id": 4377725, "stop_desc": "10 PLACE LEWISHAM - 92002", "stop_name": "LYCEE-LES FLEURS"}, "geometry": {"type": "Point", "coordinates": [2.308534529548065, 48.74982316970425]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fb0cdcb7cd848e478c4d05cb89efda2c5a677c05", "fields": {"departement": "94", "stop_lat": 48.75398578162774, "code_postal": "94034", "stop_lon": 2.3134393775397863, "coord": [48.75398578162774, 2.3134393775397863], "stop_id": 4377726, "stop_desc": "87-85 BOULEVARD JEAN JAURES - 94034", "stop_name": "PASTEUR"}, "geometry": {"type": "Point", "coordinates": [2.3134393775397863, 48.75398578162774]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "261042ae05c527a52fb141fd37a515ba49e0d513", "fields": {"departement": "94", "stop_lat": 48.753958599998995, "code_postal": "94034", "stop_lon": 2.312379120332119, "coord": [48.753958599998995, 2.312379120332119], "stop_id": 4377727, "stop_desc": "66 BOULEVARD JEAN JAURES - 94034", "stop_name": "PASTEUR"}, "geometry": {"type": "Point", "coordinates": [2.312379120332119, 48.753958599998995]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6ddaf7b9bb18e54a1e0b2552b97322293ebd8944", "fields": {"departement": "94", "stop_lat": 48.75318790056363, "code_postal": "94034", "stop_lon": 2.3285415648783627, "coord": [48.75318790056363, 2.3285415648783627], "stop_id": 4377735, "stop_desc": "AVENUE DE LA CERISAIE - 94034", "stop_name": "CERISAIE"}, "geometry": {"type": "Point", "coordinates": [2.3285415648783627, 48.75318790056363]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "04ce5308a5e750fb9afce776366159a30e7a7100", "fields": {"departement": "94", "stop_lat": 48.746976528713446, "code_postal": "94065", "stop_lon": 2.3514576628283086, "coord": [48.746976528713446, 2.3514576628283086], "stop_id": 4377745, "stop_desc": "RUE D'ORLY - 94065", "stop_name": "TRAVERSIERE"}, "geometry": {"type": "Point", "coordinates": [2.3514576628283086, 48.746976528713446]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "409f59e9e5abf5846c77a1e5f32980ed654f0ed7", "fields": {"departement": "94", "stop_lat": 48.746122252953676, "code_postal": "94065", "stop_lon": 2.3544474826124504, "coord": [48.746122252953676, 2.3544474826124504], "stop_id": 4377748, "stop_desc": "44 AVENUE ROBERT SCHUMAN - 94065", "stop_name": "ROBERT SCHUMAN"}, "geometry": {"type": "Point", "coordinates": [2.3544474826124504, 48.746122252953676]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "59db229e449ed5f58e59e9672a21d6132c044d02", "fields": {"departement": "94", "stop_lat": 48.7509120864555, "code_postal": "94073", "stop_lon": 2.3886475579155837, "coord": [48.7509120864555, 2.3886475579155837], "stop_id": 4377762, "stop_desc": "6 RUE DU BAS MARIN - 94073", "stop_name": "RUE DES OLIVIERS"}, "geometry": {"type": "Point", "coordinates": [2.3886475579155837, 48.7509120864555]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5df8f299511ceb9f474720104ccc5021cf2d1be4", "fields": {"departement": "94", "stop_lat": 48.75249006646405, "code_postal": "94073", "stop_lon": 2.3752194138360245, "coord": [48.75249006646405, 2.3752194138360245], "stop_id": 4377769, "stop_desc": "5 RUE DES ALOUETTES - 94073", "stop_name": "ALOUETTES"}, "geometry": {"type": "Point", "coordinates": [2.3752194138360245, 48.75249006646405]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "92fb295adfd837e6eab054f2d5993d9bd6bdb301", "fields": {"departement": "94", "stop_lat": 48.759448634048056, "code_postal": "94073", "stop_lon": 2.3693244252130907, "coord": [48.759448634048056, 2.3693244252130907], "stop_id": 4377772, "stop_desc": "ROUTE DE THIAIS - 94073", "stop_name": "LE COR DE CHASSE"}, "geometry": {"type": "Point", "coordinates": [2.3693244252130907, 48.759448634048056]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0b885d8826e01b8a2f172d63043872154babf640", "fields": {"departement": "94", "stop_lat": 48.759205921508666, "code_postal": "94073", "stop_lon": 2.3694466265799434, "coord": [48.759205921508666, 2.3694466265799434], "stop_id": 4377773, "stop_desc": "RUE DE THIAIS - 94073", "stop_name": "LE COR DE CHASSE"}, "geometry": {"type": "Point", "coordinates": [2.3694466265799434, 48.759205921508666]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b964af453c3103a59bd4973f91e9c7d0a994510e", "fields": {"departement": "94", "stop_lat": 48.759647325903956, "code_postal": "94021", "stop_lon": 2.3655724136005585, "coord": [48.759647325903956, 2.3655724136005585], "stop_id": 4377774, "stop_desc": "RUE DE THIAIS - 94021", "stop_name": "PORTE DE THIAIS"}, "geometry": {"type": "Point", "coordinates": [2.3655724136005585, 48.759647325903956]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8c7ffaa411d0c5651e3a5169523025e02b5a652c", "fields": {"departement": "94", "stop_lat": 48.74987082617042, "code_postal": "94034", "stop_lon": 2.323866427631675, "coord": [48.74987082617042, 2.323866427631675], "stop_id": 4377986, "stop_desc": "AV DU PARC DES SPORTS - 94034", "stop_name": "THIBAUDES"}, "geometry": {"type": "Point", "coordinates": [2.323866427631675, 48.74987082617042]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "994df7c9a708403b1fcf1d4cd245e09a23bc3bff", "fields": {"departement": "94", "stop_lat": 48.75604539891785, "code_postal": "94034", "stop_lon": 2.3214043692119475, "coord": [48.75604539891785, 2.3214043692119475], "stop_id": 4377990, "stop_desc": "17-19 R ROGER SALENGRO - 94034", "stop_name": "CENTRE ADMINISTRATIF"}, "geometry": {"type": "Point", "coordinates": [2.3214043692119475, 48.75604539891785]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1cca82a0258d02648e8c99404ccd8091eda981e0", "fields": {"departement": "94", "stop_lat": 48.77510965880391, "code_postal": "94038", "stop_lon": 2.3260765182652072, "coord": [48.77510965880391, 2.3260765182652072], "stop_id": 4378008, "stop_desc": "FACE 3 AVENUE CHARLES FLOUQUET - 94038", "stop_name": "BARBUSSE - LARROUMES"}, "geometry": {"type": "Point", "coordinates": [2.3260765182652072, 48.77510965880391]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "338f902ba9fe34d794c294edcde0f0e991065c08", "fields": {"departement": "94", "stop_lat": 48.7774019620586, "code_postal": "94038", "stop_lon": 2.330998984286633, "coord": [48.7774019620586, 2.330998984286633], "stop_id": 4378012, "stop_desc": "24 AVENUE JULES GRAVEREAUX - 94038", "stop_name": "COMMISSARIAT DE L'HAY-LES-ROSES"}, "geometry": {"type": "Point", "coordinates": [2.330998984286633, 48.7774019620586]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a551afeb85582aba4e1e613e8d4ae6aa1830e831", "fields": {"departement": "94", "stop_lat": 48.779846859794795, "code_postal": "94038", "stop_lon": 2.337689877550507, "coord": [48.779846859794795, 2.337689877550507], "stop_id": 4378015, "stop_desc": "11 RUE DES JARDINS - 94038", "stop_name": "MAIRIE DE L'HAY-LES-ROSES"}, "geometry": {"type": "Point", "coordinates": [2.337689877550507, 48.779846859794795]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dc261d134fb574d2c18c2941d5ea2492c9557558", "fields": {"departement": "94", "stop_lat": 48.77886711314606, "code_postal": "94038", "stop_lon": 2.340926602240112, "coord": [48.77886711314606, 2.340926602240112], "stop_id": 4378016, "stop_desc": "BOULEVARD PAUL VAILLANT COUTURIER - 94038", "stop_name": "HENRI THIRARD - LEON JOUHAUX"}, "geometry": {"type": "Point", "coordinates": [2.340926602240112, 48.77886711314606]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0ccfee8b9a1dc24157ab057e3a8d4f2a0b6c1f0f", "fields": {"departement": "94", "stop_lat": 48.782039755746986, "code_postal": "94038", "stop_lon": 2.3436333359184234, "coord": [48.782039755746986, 2.3436333359184234], "stop_id": 4378020, "stop_desc": "42 AV DU GENERAL DE GAULLE - 94038", "stop_name": "TENNIS"}, "geometry": {"type": "Point", "coordinates": [2.3436333359184234, 48.782039755746986]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "607e3a3fcdb1861db54a6d4649acb8ac03885f17", "fields": {"departement": "94", "stop_lat": 48.78478099183424, "code_postal": "94038", "stop_lon": 2.3451570145813214, "coord": [48.78478099183424, 2.3451570145813214], "stop_id": 4378023, "stop_desc": "0 NR - 94038", "stop_name": "CENTRE COMMERCIAL DE L'HAY-LES-ROSES"}, "geometry": {"type": "Point", "coordinates": [2.3451570145813214, 48.78478099183424]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d32aaacf1f372c34e96d38ce88a132147acccd74", "fields": {"departement": "94", "stop_lat": 48.78040404822078, "code_postal": "94038", "stop_lon": 2.34125311385678, "coord": [48.78040404822078, 2.34125311385678], "stop_id": 4378025, "stop_desc": "32 AVENUE DU GENERAL DE GAULLE - 94038", "stop_name": "DE GAULLE - GOUNOD - TABANOU."}, "geometry": {"type": "Point", "coordinates": [2.34125311385678, 48.78040404822078]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9f813ffa2ac1e281f75b0041c26159378a41b2ba", "fields": {"departement": "94", "stop_lat": 48.775585469471835, "code_postal": "94038", "stop_lon": 2.3532741343435917, "coord": [48.775585469471835, 2.3532741343435917], "stop_id": 4378032, "stop_desc": "96 R DE BICETRE - 94038", "stop_name": "LES COQUELICOTS"}, "geometry": {"type": "Point", "coordinates": [2.3532741343435917, 48.775585469471835]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e692e877d45d33818fa242dbb7a61cd738764706", "fields": {"departement": "94", "stop_lat": 48.77925899609659, "code_postal": "94038", "stop_lon": 2.3666982911976238, "coord": [48.77925899609659, 2.3666982911976238], "stop_id": 4378039, "stop_desc": "RUE PAUL HOCHART - 94038", "stop_name": "DOMAINE CHERIOUX"}, "geometry": {"type": "Point", "coordinates": [2.3666982911976238, 48.77925899609659]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "323cfeefef52634ce03ec5b89dd50680bedc2a2e", "fields": {"departement": "94", "stop_lat": 48.778471677357714, "code_postal": "94038", "stop_lon": 2.3350243414774474, "coord": [48.778471677357714, 2.3350243414774474], "stop_id": 4378042, "stop_desc": "2 AV LARROUMES - 94038", "stop_name": "SOUS-PREFECTURE"}, "geometry": {"type": "Point", "coordinates": [2.3350243414774474, 48.778471677357714]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d55fd9eed9175d0fa532ec63d1b6b33acfb6b08f", "fields": {"departement": "94", "stop_lat": 48.762670521323194, "code_postal": "94034", "stop_lon": 2.330620083647491, "coord": [48.762670521323194, 2.330620083647491], "stop_id": 4378043, "stop_desc": "AV DE LA PAIX - 94034", "stop_name": "MARCHE NORD"}, "geometry": {"type": "Point", "coordinates": [2.330620083647491, 48.762670521323194]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ea07b5c5bb70090543173daddf294ae3f1bc00dc", "fields": {"departement": "94", "stop_lat": 48.79221063758954, "code_postal": "94076", "stop_lon": 2.3666376189108953, "coord": [48.79221063758954, 2.3666376189108953], "stop_id": 4378050, "stop_desc": "85 RUE JEAN JAURES - 94076", "stop_name": "GUYNEMER - PLACE DES FUSILLES"}, "geometry": {"type": "Point", "coordinates": [2.3666376189108953, 48.79221063758954]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dea340328193d3d3367f60e83b22d4bc6aa130d4", "fields": {"departement": "94", "stop_lat": 48.79440577390818, "code_postal": "94076", "stop_lon": 2.3563816046728325, "coord": [48.79440577390818, 2.3563816046728325], "stop_id": 4378054, "stop_desc": "FACE 60 BOULEVARD PAUL VAILLANT COUTURIER - 94076", "stop_name": "VERDUN - GROSMENIL"}, "geometry": {"type": "Point", "coordinates": [2.3563816046728325, 48.79440577390818]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c675bda1fbf8526c5971876bc31bed904bdd8426", "fields": {"departement": "94", "stop_lat": 48.797524281515265, "code_postal": "94076", "stop_lon": 2.358069724549049, "coord": [48.797524281515265, 2.358069724549049], "stop_id": 4378056, "stop_desc": "17-19 RUE GUY MOQUET - 94076", "stop_name": "GUY MOQUET"}, "geometry": {"type": "Point", "coordinates": [2.358069724549049, 48.797524281515265]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f669b75aba87edb0c4292b4df0d0d2cda8844a69", "fields": {"departement": "94", "stop_lat": 48.805809778422585, "code_postal": "94076", "stop_lon": 2.364427411395281, "coord": [48.805809778422585, 2.364427411395281], "stop_id": 4378060, "stop_desc": "2-4 RUE DAUPHIN - 94076", "stop_name": "DAUPHIN - RN7"}, "geometry": {"type": "Point", "coordinates": [2.364427411395281, 48.805809778422585]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8edac4324d01e87f0b0b9967f1535972b109ba8e", "fields": {"departement": "94", "stop_lat": 48.803021990295115, "code_postal": "94076", "stop_lon": 2.3705894912230656, "coord": [48.803021990295115, 2.3705894912230656], "stop_id": 4378063, "stop_desc": "14 TER R EMILE ZOLA - 94076", "stop_name": "EMILE ZOLA"}, "geometry": {"type": "Point", "coordinates": [2.3705894912230656, 48.803021990295115]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4df2cf430dfc2e46d293073b9f51b1558cf1d695", "fields": {"departement": "94", "stop_lat": 48.79673946245193, "code_postal": "94076", "stop_lon": 2.370680688612628, "coord": [48.79673946245193, 2.370680688612628], "stop_id": 4378065, "stop_desc": "43 RUE JEAN-BAPTISTE CLEMENT - 94076", "stop_name": "CLEMENT-BIZET"}, "geometry": {"type": "Point", "coordinates": [2.370680688612628, 48.79673946245193]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c1824e54fa51ab87b3e339846b8ac3319c3b5fc7", "fields": {"departement": "94", "stop_lat": 48.79238074838206, "code_postal": "94076", "stop_lon": 2.3691951277195096, "coord": [48.79238074838206, 2.3691951277195096], "stop_id": 4378068, "stop_desc": "114 BOULEVARD MAXIME GORKI - 94076", "stop_name": "GUYNEMER - MAXIME GORKI"}, "geometry": {"type": "Point", "coordinates": [2.3691951277195096, 48.79238074838206]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9b057e5ee719ab6cba8247d8947df5b0868f6e08", "fields": {"departement": "94", "stop_lat": 48.78035780179034, "code_postal": "94076", "stop_lon": 2.3553292228019247, "coord": [48.78035780179034, 2.3553292228019247], "stop_id": 4378076, "stop_desc": "FACE 141 RUE DE CHEVILLY - 94076", "stop_name": "YOURI GAGARINE"}, "geometry": {"type": "Point", "coordinates": [2.3553292228019247, 48.78035780179034]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b178940e5035d852f7c597583196fb0c4c1a301a", "fields": {"departement": "75", "stop_lat": 48.82250292790447, "code_postal": "75114", "stop_lon": 2.3305852155803812, "coord": [48.82250292790447, 2.3305852155803812], "stop_id": 4378083, "stop_desc": "FACE 160 RUE DE LA TOMBE-ISSOIRE - 75114", "stop_name": "MONTSOURIS - TOMBE ISSOIRE"}, "geometry": {"type": "Point", "coordinates": [2.3305852155803812, 48.82250292790447]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e2e139cf1b5aa43f497e36800841d13238f2104f", "fields": {"departement": "75", "stop_lat": 48.83034030445196, "code_postal": "75114", "stop_lon": 2.3340691898234978, "coord": [48.83034030445196, 2.3340691898234978], "stop_id": 4378087, "stop_desc": "15 AVENUE RENE COTY - 75114", "stop_name": "DAREAU-RENE COTY"}, "geometry": {"type": "Point", "coordinates": [2.3340691898234978, 48.83034030445196]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dbde91b577d76d6f67a34c0c12f77140c42f5037", "fields": {"departement": "75", "stop_lat": 48.83316238335831, "code_postal": "75114", "stop_lon": 2.3330479705459344, "coord": [48.83316238335831, 2.3330479705459344], "stop_id": 4378088, "stop_desc": "FACE 4-6 AVENUE RENE COTY - 75114", "stop_name": "DENFERT-ROCHEREAU-METRO-RER"}, "geometry": {"type": "Point", "coordinates": [2.3330479705459344, 48.83316238335831]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bf264bbdca4c36f48b0111bda5725681ee58373f", "fields": {"departement": "75", "stop_lat": 48.83352191032987, "code_postal": "75114", "stop_lon": 2.3337558716336257, "coord": [48.83352191032987, 2.3337558716336257], "stop_id": 4378089, "stop_desc": "BOULEVARD SAINT-JACQUES - 75114", "stop_name": "DENFERT-ROCHEREAU-METRO-RER"}, "geometry": {"type": "Point", "coordinates": [2.3337558716336257, 48.83352191032987]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0dea4055daab53ff5ade34ca7a7e5c2756511a3d", "fields": {"departement": "75", "stop_lat": 48.81910555642793, "code_postal": "75114", "stop_lon": 2.344332015989951, "coord": [48.81910555642793, 2.344332015989951], "stop_id": 4378110, "stop_desc": "FACE 1 AVENUE PIERRE DE COUBERTIN - 75114", "stop_name": "STADE CHARLETY - PORTE DE GENTILLY"}, "geometry": {"type": "Point", "coordinates": [2.344332015989951, 48.81910555642793]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "26b1d1c657920431921be5aadef3d8c55f0d8b60", "fields": {"departement": "94", "stop_lat": 48.76091786483258, "code_postal": "94021", "stop_lon": 2.3434132217634307, "coord": [48.76091786483258, 2.3434132217634307], "stop_id": 4378111, "stop_desc": "VOIE SUR VOIE D'ENTREE E1 DU MIN - 94021", "stop_name": "PORTE DE L'HAY-LYONNAIS"}, "geometry": {"type": "Point", "coordinates": [2.3434132217634307, 48.76091786483258]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d9b01df28226b5645298a9ede48e38710f51923b", "fields": {"departement": "94", "stop_lat": 48.745987423719335, "code_postal": "94065", "stop_lon": 2.354488211356527, "coord": [48.745987423719335, 2.354488211356527], "stop_id": 4378117, "stop_desc": "43 AVENUE ROBERT SCHUMAN - 94065", "stop_name": "ROBERT SCHUMAN"}, "geometry": {"type": "Point", "coordinates": [2.354488211356527, 48.745987423719335]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "474750f85dba2408ab4bdf96d0c3955b52fc99b7", "fields": {"departement": "94", "stop_lat": 48.761178081740965, "code_postal": "94021", "stop_lon": 2.349177570277524, "coord": [48.761178081740965, 2.349177570277524], "stop_id": 4378123, "stop_desc": "AVENUE DU LYONNAIS - 94021", "stop_name": "VIADUC"}, "geometry": {"type": "Point", "coordinates": [2.349177570277524, 48.761178081740965]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2ce9c2e164910cdcb708f6f3b83a33d30d67fcc3", "fields": {"departement": "94", "stop_lat": 48.76396322693865, "code_postal": "94021", "stop_lon": 2.3577435746777065, "coord": [48.76396322693865, 2.3577435746777065], "stop_id": 4378126, "stop_desc": "AVENUE DE LA CITE - 94021", "stop_name": "MARCHE INTERNATIONAL DE RUNGIS"}, "geometry": {"type": "Point", "coordinates": [2.3577435746777065, 48.76396322693865]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3963e0417546e672ad78b543fadd40f56f514ec4", "fields": {"departement": "91", "stop_lat": 48.70731415833315, "code_postal": "91027", "stop_lon": 2.3768569051497845, "coord": [48.70731415833315, 2.3768569051497845], "stop_id": 4378135, "stop_desc": "98 AVENUE MARCEL SEMBAT - 91027", "stop_name": "LA PLAINE"}, "geometry": {"type": "Point", "coordinates": [2.3768569051497845, 48.70731415833315]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "425dd71392e9812479bc73280651a0607b694763", "fields": {"departement": "91", "stop_lat": 48.70646575078744, "code_postal": "91027", "stop_lon": 2.3862134249681155, "coord": [48.70646575078744, 2.3862134249681155], "stop_id": 4378137, "stop_desc": "R PAUL VAILLANT COUTURIER - 91027", "stop_name": "LA POSTE"}, "geometry": {"type": "Point", "coordinates": [2.3862134249681155, 48.70646575078744]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e8c29985a76b02c887b6461d2f56b22a89ce0adc", "fields": {"departement": "91", "stop_lat": 48.713212045222434, "code_postal": "91027", "stop_lon": 2.395211426569247, "coord": [48.713212045222434, 2.395211426569247], "stop_id": 4378143, "stop_desc": "FACE 58 AV HENRI DUNANT - 91027", "stop_name": "DELALANDE PASTEUR"}, "geometry": {"type": "Point", "coordinates": [2.395211426569247, 48.713212045222434]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6b018e84773a12020d731882cc3a9d480e21f0cf", "fields": {"departement": "91", "stop_lat": 48.718077682147914, "code_postal": "91027", "stop_lon": 2.4065865118377237, "coord": [48.718077682147914, 2.4065865118377237], "stop_id": 4378146, "stop_desc": "153-155 R ROBERT SCHUMAN - 91027", "stop_name": "RUE D'ABLON"}, "geometry": {"type": "Point", "coordinates": [2.4065865118377237, 48.718077682147914]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8a77ab75ab9a323f9ea061f167a0e1586b45b820", "fields": {"departement": "91", "stop_lat": 48.71936064297995, "code_postal": "91027", "stop_lon": 2.4105547978016584, "coord": [48.71936064297995, 2.4105547978016584], "stop_id": 4378147, "stop_desc": "20-22 R D'ABLON - 91027", "stop_name": "CARON"}, "geometry": {"type": "Point", "coordinates": [2.4105547978016584, 48.71936064297995]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2c7ee698c3e2e78fdbe1a1bd842ae5d64a3957e9", "fields": {"departement": "91", "stop_lat": 48.70437836972327, "code_postal": "91027", "stop_lon": 2.3909509669122206, "coord": [48.70437836972327, 2.3909509669122206], "stop_id": 4378161, "stop_desc": "143-145-147 AVENUE DU 18 AVRIL - 91027", "stop_name": "COUBERTIN"}, "geometry": {"type": "Point", "coordinates": [2.3909509669122206, 48.70437836972327]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4c369b68a859ae25dd4533b831ae7b1de2a7d6f8", "fields": {"departement": "91", "stop_lat": 48.697470201935985, "code_postal": "91027", "stop_lon": 2.3811809353960895, "coord": [48.697470201935985, 2.3811809353960895], "stop_id": 4378167, "stop_desc": "19 AVENUE DU 18 AVRIL - 91027", "stop_name": "LYCEE MARCEL PAGNOL"}, "geometry": {"type": "Point", "coordinates": [2.3811809353960895, 48.697470201935985]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c687861872cadd37eeb677cc1ce0454335a1574f", "fields": {"departement": "94", "stop_lat": 48.84944217434018, "code_postal": "94033", "stop_lon": 2.4732190690109452, "coord": [48.84944217434018, 2.4732190690109452], "stop_id": 3685886, "stop_desc": "39 RUE DE ROSNY - 94033", "stop_name": "LE PARC"}, "geometry": {"type": "Point", "coordinates": [2.4732190690109452, 48.84944217434018]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9619616b54d0d980c9251624cd97e957b01b5f0f", "fields": {"departement": "94", "stop_lat": 48.76102765772384, "code_postal": "94073", "stop_lon": 2.399316084390214, "coord": [48.76102765772384, 2.399316084390214], "stop_id": 3686424, "stop_desc": "0 AV GEORGES HALGOULT - 94073", "stop_name": "GEORGES HALGOULT"}, "geometry": {"type": "Point", "coordinates": [2.399316084390214, 48.76102765772384]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "985311b6ec7c2834684bd947ba65379a78ad3a12", "fields": {"departement": "94", "stop_lat": 48.77165221585349, "code_postal": "94022", "stop_lon": 2.4136472969351543, "coord": [48.77165221585349, 2.4136472969351543], "stop_id": 3686413, "stop_desc": "59 AVENUE D'ALFORTVILLE - 94022", "stop_name": "LA FOLIE"}, "geometry": {"type": "Point", "coordinates": [2.4136472969351543, 48.77165221585349]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "da645cd69c0bc256ffd605ad7d0a873d585dd8a8", "fields": {"departement": "94", "stop_lat": 48.81488981158628, "code_postal": "94046", "stop_lon": 2.4184197009305843, "coord": [48.81488981158628, 2.4184197009305843], "stop_id": 3686463, "stop_desc": "17 RUE EUGENE RENAULT - 94046", "stop_name": "MAISONS-ALFORT - ECOLE VETERINAIRE"}, "geometry": {"type": "Point", "coordinates": [2.4184197009305843, 48.81488981158628]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "81c66cfaa74742283c2367447ba64b6e487c7ab6", "fields": {"departement": "94", "stop_lat": 48.767093813147845, "code_postal": "94073", "stop_lon": 2.3809270768602055, "coord": [48.767093813147845, 2.3809270768602055], "stop_id": 3686433, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 94073", "stop_name": "GRANDS CHAMPS"}, "geometry": {"type": "Point", "coordinates": [2.3809270768602055, 48.767093813147845]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f8d651c83dca051fcd2b601c58c1c6e2a89c7fa6", "fields": {"departement": "94", "stop_lat": 48.80943242744798, "code_postal": "94002", "stop_lon": 2.4210374606933356, "coord": [48.80943242744798, 2.4210374606933356], "stop_id": 3686460, "stop_desc": "13-15 RUE MARCEL BOURDARIAS - 94002", "stop_name": "SQUARE BOURDARIAS"}, "geometry": {"type": "Point", "coordinates": [2.4210374606933356, 48.80943242744798]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cca8ce396b8d8bc790c16e34f29f482c0a40e7de", "fields": {"departement": "94", "stop_lat": 48.78711218269996, "code_postal": "94002", "stop_lon": 2.425721307267386, "coord": [48.78711218269996, 2.425721307267386], "stop_id": 3686450, "stop_desc": "FACE 138B RUE ETIENNE DOLET - 94002", "stop_name": "SAN BENEDETTO"}, "geometry": {"type": "Point", "coordinates": [2.425721307267386, 48.78711218269996]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a03292f84fa87942150d9b9a95a507549bd6bf20", "fields": {"departement": "94", "stop_lat": 48.79513859863443, "code_postal": "94002", "stop_lon": 2.4254356938910138, "coord": [48.79513859863443, 2.4254356938910138], "stop_id": 3686453, "stop_desc": "FACE 52BIS RUE ETIENNE DOLET - 94002", "stop_name": "ACHTARAK"}, "geometry": {"type": "Point", "coordinates": [2.4254356938910138, 48.79513859863443]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "83d5235cfc51dc6d2e1fc7ec7afb1f35375ed1cb", "fields": {"departement": "94", "stop_lat": 48.765957686542926, "code_postal": "94073", "stop_lon": 2.389886111195227, "coord": [48.765957686542926, 2.389886111195227], "stop_id": 3686435, "stop_desc": "FACE 22 AVENUE LEON MARCHAND - 94073", "stop_name": "PERREUX"}, "geometry": {"type": "Point", "coordinates": [2.389886111195227, 48.765957686542926]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2c1d99e76272bf6b04fd12fd4284a8a3231c066f", "fields": {"departement": "94", "stop_lat": 48.77835061042173, "code_postal": "94002", "stop_lon": 2.4234080543734717, "coord": [48.77835061042173, 2.4234080543734717], "stop_id": 3686446, "stop_desc": "RUE J.B. PREUX - 94002", "stop_name": "DIGUE-REVOLUTION"}, "geometry": {"type": "Point", "coordinates": [2.4234080543734717, 48.77835061042173]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9f86dd00eb98140f4c1fd3ecd32fae349d1f3c61", "fields": {"departement": "94", "stop_lat": 48.76432242204478, "code_postal": "94022", "stop_lon": 2.406335512595289, "coord": [48.76432242204478, 2.406335512595289], "stop_id": 3686467, "stop_desc": "7 AV GAMBETTA - 94022", "stop_name": "ROUGET DE LISLE"}, "geometry": {"type": "Point", "coordinates": [2.406335512595289, 48.76432242204478]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fb8ebdc91919d67d9f4e37fbdf1f3690dd69903a", "fields": {"departement": "93", "stop_lat": 48.86179640590272, "code_postal": "93048", "stop_lon": 2.4409821703623398, "coord": [48.86179640590272, 2.4409821703623398], "stop_id": 3687680, "stop_desc": "2 BD ROUGET DE LISLE - 93048", "stop_name": "MAIRIE DE MONTREUIL - ROUGET DE LISLE"}, "geometry": {"type": "Point", "coordinates": [2.4409821703623398, 48.86179640590272]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7d8123a463d80de254a6c24cb8fdab0b2dfff3a8", "fields": {"departement": "93", "stop_lat": 48.8825231592641, "code_postal": "93064", "stop_lon": 2.4821633440949755, "coord": [48.8825231592641, 2.4821633440949755], "stop_id": 3687624, "stop_desc": "0 R JEAN DE MAILLY - 93064", "stop_name": "BOIS-PERRIER-RER - ROSNY 2"}, "geometry": {"type": "Point", "coordinates": [2.4821633440949755, 48.8825231592641]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e659acd16b5c450183da185483d10c7a5456e423", "fields": {"departement": "93", "stop_lat": 48.8825231592641, "code_postal": "93064", "stop_lon": 2.4821633440949755, "coord": [48.8825231592641, 2.4821633440949755], "stop_id": 3687625, "stop_desc": "0 R JEAN DE MAILLY - 93064", "stop_name": "BOIS-PERRIER-RER - ROSNY 2"}, "geometry": {"type": "Point", "coordinates": [2.4821633440949755, 48.8825231592641]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "38740d111556aaee09f7c242ab60ffaf023228cd", "fields": {"departement": "93", "stop_lat": 48.88112555672634, "code_postal": "93064", "stop_lon": 2.4858794903643213, "coord": [48.88112555672634, 2.4858794903643213], "stop_id": 3687619, "stop_desc": "FACE 60 RUE PHILIBERT HOFFMANN - 93064", "stop_name": "BOIS-PERRIER SUD"}, "geometry": {"type": "Point", "coordinates": [2.4858794903643213, 48.88112555672634]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ffa05de91089ce1e12828fb85d7fec0832234fd0", "fields": {"departement": "75", "stop_lat": 48.877169967529646, "code_postal": "75120", "stop_lon": 2.40961974734913, "coord": [48.877169967529646, 2.40961974734913], "stop_id": 3687659, "stop_desc": "1 AV DU DOCTEUR GLEY - 75120", "stop_name": "PORTE DES LILAS-METRO"}, "geometry": {"type": "Point", "coordinates": [2.40961974734913, 48.877169967529646]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "03ee11e4a2f28fedf9bb62c6f09def2ed2839155", "fields": {"departement": "93", "stop_lat": 48.8687413332515, "code_postal": "93048", "stop_lon": 2.4330128093365353, "coord": [48.8687413332515, 2.4330128093365353], "stop_id": 3687674, "stop_desc": "15 PLACE DU GENERAL DE GAULLE - 93048", "stop_name": "GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.4330128093365353, 48.8687413332515]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "877d06f24a81adcc628ce52206a3ad578777989f", "fields": {"departement": "93", "stop_lat": 48.87596018649678, "code_postal": "93006", "stop_lon": 2.4181474296407868, "coord": [48.87596018649678, 2.4181474296407868], "stop_id": 3687663, "stop_desc": "128 AVENUE PASTEUR - 93006", "stop_name": "RUE DE NOISY-LE-SEC"}, "geometry": {"type": "Point", "coordinates": [2.4181474296407868, 48.87596018649678]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5f2d9913fb271fd4477b91ccb61508de2049ff2a", "fields": {"departement": "93", "stop_lat": 48.87253130640089, "code_postal": "93006", "stop_lon": 2.4248179836175887, "coord": [48.87253130640089, 2.4248179836175887], "stop_id": 3687669, "stop_desc": "70 RUE PIERRE ET MARIE CURIE - 93006", "stop_name": "LES MALASSIS"}, "geometry": {"type": "Point", "coordinates": [2.4248179836175887, 48.87253130640089]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1d5644f699682124a8637007fb550927e122a4f6", "fields": {"departement": "93", "stop_lat": 48.86082320601623, "code_postal": "93048", "stop_lon": 2.4438815440753667, "coord": [48.86082320601623, 2.4438815440753667], "stop_id": 3687628, "stop_desc": "5 RUE DE ROSNY - 93048", "stop_name": "CENTRE ADMINISTRATIF"}, "geometry": {"type": "Point", "coordinates": [2.4438815440753667, 48.86082320601623]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c5a1cf8ba366dbcbcc21348bc20c1276ffedfccf", "fields": {"departement": "94", "stop_lat": 48.81785051981082, "code_postal": "94069", "stop_lon": 2.425773698569028, "coord": [48.81785051981082, 2.425773698569028], "stop_id": 3686720, "stop_desc": "FACE 55BIS RUE DU MARECHAL LECLERC - 94069", "stop_name": "MAIRIE DE SAINT-MAURICE"}, "geometry": {"type": "Point", "coordinates": [2.425773698569028, 48.81785051981082]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4da54bcc5e2a2292de43bf8164d872946dacc0a6", "fields": {"departement": "94", "stop_lat": 48.81783566839134, "code_postal": "94069", "stop_lon": 2.4438885020756413, "coord": [48.81783566839134, 2.4438885020756413], "stop_id": 3686724, "stop_desc": "134 RUE DU MARECHAL LECLERC - 94069", "stop_name": "PASSERELLE DE CHARENTONNEAU"}, "geometry": {"type": "Point", "coordinates": [2.4438885020756413, 48.81783566839134]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5484b3bb6705f5cfdf421e9bdf756277773a9c38", "fields": {"departement": "94", "stop_lat": 48.81435751834528, "code_postal": "94069", "stop_lon": 2.4622535492272988, "coord": [48.81435751834528, 2.4622535492272988], "stop_id": 3686729, "stop_desc": "FACE 2 RUE MARECHAL LECLERC - 94069", "stop_name": "JOHN FITZGERALD KENNEDY"}, "geometry": {"type": "Point", "coordinates": [2.4622535492272988, 48.81435751834528]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5d991b236756b8b62599e0633fa14af066b1c3a5", "fields": {"departement": "94", "stop_lat": 48.80686116187773, "code_postal": "94068", "stop_lon": 2.4710256670182504, "coord": [48.80686116187773, 2.4710256670182504], "stop_id": 3686733, "stop_desc": "14 RUE DU PONT DE CRETEIL - 94068", "stop_name": "SAINT-MAUR - CRETEIL RER"}, "geometry": {"type": "Point", "coordinates": [2.4710256670182504, 48.80686116187773]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9edab938777391d9f5a8753e2893f4c06b2ca2fe", "fields": {"departement": "94", "stop_lat": 48.81477302407176, "code_postal": "94069", "stop_lon": 2.460267615019731, "coord": [48.81477302407176, 2.460267615019731], "stop_id": 3686728, "stop_desc": "FACE 3 RUE PAUL VERLAINE - 94069", "stop_name": "ECOLES DE GRAVELLE"}, "geometry": {"type": "Point", "coordinates": [2.460267615019731, 48.81477302407176]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "894b2dd8e2b44563273c721bac820e2d34a34d92", "fields": {"departement": "94", "stop_lat": 48.81802692471475, "code_postal": "94069", "stop_lon": 2.4410444069161104, "coord": [48.81802692471475, 2.4410444069161104], "stop_id": 3686723, "stop_desc": "98-100 RUE DU MARECHAL LECLERC - 94069", "stop_name": "MARECHAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.4410444069161104, 48.81802692471475]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "05c3c43698b74bd01d2d356d0057cdccddb6dd4d", "fields": {"departement": "94", "stop_lat": 48.81672811941364, "code_postal": "94069", "stop_lon": 2.4555769178378704, "coord": [48.81672811941364, 2.4555769178378704], "stop_id": 3686727, "stop_desc": "228 RUE DU MARECHAL LECLERC - 94069", "stop_name": "LES CANADIENS"}, "geometry": {"type": "Point", "coordinates": [2.4555769178378704, 48.81672811941364]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7a663178e64f979722eff43ee5fd614a265f67d6", "fields": {"departement": "94", "stop_lat": 48.82002741880614, "code_postal": "94069", "stop_lon": 2.4232186351513785, "coord": [48.82002741880614, 2.4232186351513785], "stop_id": 3686718, "stop_desc": "23 BIS RUE DU VAL D'OSNE - 94069", "stop_name": "EPINETTES"}, "geometry": {"type": "Point", "coordinates": [2.4232186351513785, 48.82002741880614]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0c55a9ae723599e1a8f3bf8571976ca99c5be295", "fields": {"departement": "94", "stop_lat": 48.77249232695218, "code_postal": "94071", "stop_lon": 2.505612258810384, "coord": [48.77249232695218, 2.505612258810384], "stop_id": 3686596, "stop_desc": "R MARCO POLO - 94071", "stop_name": "SUCY-BONNEUIL RER"}, "geometry": {"type": "Point", "coordinates": [2.505612258810384, 48.77249232695218]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "585575c19e87762c28b3354da55a37effe502a9d", "fields": {"departement": "94", "stop_lat": 48.81835494535775, "code_postal": "94069", "stop_lon": 2.424263840734881, "coord": [48.81835494535775, 2.424263840734881], "stop_id": 3686719, "stop_desc": "3 RUE DU VAL D'OSNE - 94069", "stop_name": "VAL D'OSNE"}, "geometry": {"type": "Point", "coordinates": [2.424263840734881, 48.81835494535775]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fd751ced9e8e111077873c386c849f756b4de75b", "fields": {"departement": "75", "stop_lat": 48.858893562960745, "code_postal": "75107", "stop_lon": 2.331574848358332, "coord": [48.858893562960745, 2.331574848358332], "stop_id": 3687093, "stop_desc": "FACE 13 QUAI VOLTAIRE - 75107", "stop_name": "PONT DU CARROUSEL - QUAI VOLTAIRE"}, "geometry": {"type": "Point", "coordinates": [2.331574848358332, 48.858893562960745]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7b9e94f97fa14d67c0a919047ec65f47af48cd38", "fields": {"departement": "75", "stop_lat": 48.85188700856417, "code_postal": "75112", "stop_lon": 2.3733582882643787, "coord": [48.85188700856417, 2.3733582882643787], "stop_id": 3687254, "stop_desc": "58 RUE DU FAUBOURG SAINT-ANTOINE - 75112", "stop_name": "LA BOULE BLANCHE"}, "geometry": {"type": "Point", "coordinates": [2.3733582882643787, 48.85188700856417]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f39d3a5d019ccce62732628dc1b4b146cc317666", "fields": {"departement": "75", "stop_lat": 48.86488327520136, "code_postal": "75120", "stop_lon": 2.41126451915231, "coord": [48.86488327520136, 2.41126451915231], "stop_id": 3687274, "stop_desc": "7 AVENUE CARTELLIER - 75120", "stop_name": "ECHANGEUR DE BAGNOLET"}, "geometry": {"type": "Point", "coordinates": [2.41126451915231, 48.86488327520136]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "30ea72b27fdbc2535e25f0cadfc51265d33e2b83", "fields": {"departement": "75", "stop_lat": 48.854421916221135, "code_postal": "75111", "stop_lon": 2.3718619045585996, "coord": [48.854421916221135, 2.3718619045585996], "stop_id": 3687124, "stop_desc": "36 RUE DE LA ROQUETTE - 75111", "stop_name": "BREGUET - SABIN"}, "geometry": {"type": "Point", "coordinates": [2.3718619045585996, 48.854421916221135]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3ff9b78f8af9a8189c4c732f7c93b1f6da9672c9", "fields": {"departement": "75", "stop_lat": 48.854740606500755, "code_postal": "75111", "stop_lon": 2.385781362944798, "coord": [48.854740606500755, 2.385781362944798], "stop_id": 3687261, "stop_desc": "114 RUE DE CHARONNE - 75111", "stop_name": "CHARONNE - VOLTAIRE"}, "geometry": {"type": "Point", "coordinates": [2.385781362944798, 48.854740606500755]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "efeeb4af7aecb555a59b675df3fb7d37b066839f", "fields": {"departement": "75", "stop_lat": 48.8620193573115, "code_postal": "75120", "stop_lon": 2.406165979773254, "coord": [48.8620193573115, 2.406165979773254], "stop_id": 3687270, "stop_desc": "148 RUE DE BAGNOLET - 75120", "stop_name": "PELLEPORT - BAGNOLET"}, "geometry": {"type": "Point", "coordinates": [2.406165979773254, 48.8620193573115]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1c6cfb3074c530b82466369cf771392546bdd0af", "fields": {"departement": "75", "stop_lat": 48.85956772609866, "code_postal": "75120", "stop_lon": 2.402743879924822, "coord": [48.85956772609866, 2.402743879924822], "stop_id": 3687269, "stop_desc": "105 RUE DE BAGNOLET - 75120", "stop_name": "PYRENEES - BAGNOLET"}, "geometry": {"type": "Point", "coordinates": [2.402743879924822, 48.85956772609866]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bfecaed6a3691d552ff2b0b20b848def03ad7fc0", "fields": {"departement": "75", "stop_lat": 48.8537676322283, "code_postal": "75104", "stop_lon": 2.3649836922579452, "coord": [48.8537676322283, 2.3649836922579452], "stop_id": 3687249, "stop_desc": "31-33 RUE SAINT-ANTOINE - 75104", "stop_name": "BIRAGUE"}, "geometry": {"type": "Point", "coordinates": [2.3649836922579452, 48.8537676322283]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7296271425f05b03ce29045f39dcbf6055044e92", "fields": {"departement": "75", "stop_lat": 48.85421150939266, "code_postal": "75111", "stop_lon": 2.3828390611282813, "coord": [48.85421150939266, 2.3828390611282813], "stop_id": 3687260, "stop_desc": "93 RUE DE CHARONNE - 75111", "stop_name": "FAIDHERBE"}, "geometry": {"type": "Point", "coordinates": [2.3828390611282813, 48.85421150939266]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ef291dd352e5ce374b67adb86eb91fc6fa317847", "fields": {"departement": "75", "stop_lat": 48.85386641123812, "code_postal": "75104", "stop_lon": 2.365337849043121, "coord": [48.85386641123812, 2.365337849043121], "stop_id": 3687250, "stop_desc": "32 RUE SAINT-ANTOINE - 75104", "stop_name": "BIRAGUE"}, "geometry": {"type": "Point", "coordinates": [2.365337849043121, 48.85386641123812]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6f163936b9d3f5877583d88927832932071ec091", "fields": {"departement": "94", "stop_lat": 48.7794468770786, "code_postal": "94028", "stop_lon": 2.4551519966000233, "coord": [48.7794468770786, 2.4551519966000233], "stop_id": 3686988, "stop_desc": "AVENUE DE LA FRANCE LIBRE - 94028", "stop_name": "CENTRE COMMERCIAL REGIONAL"}, "geometry": {"type": "Point", "coordinates": [2.4551519966000233, 48.7794468770786]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "adaab4ac5088e7a2e0402b418e5b8bd2f060ece8", "fields": {"departement": "94", "stop_lat": 48.7794468770786, "code_postal": "94028", "stop_lon": 2.4551519966000233, "coord": [48.7794468770786, 2.4551519966000233], "stop_id": 3687038, "stop_desc": "AVENUE DE LA FRANCE LIBRE - 94028", "stop_name": "CENTRE COMMERCIAL REGIONAL"}, "geometry": {"type": "Point", "coordinates": [2.4551519966000233, 48.7794468770786]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fb7c8b92ae1954f75894490f3ae0e06575b0bedb", "fields": {"departement": "94", "stop_lat": 48.798269059760955, "code_postal": "94068", "stop_lon": 2.4859416258134512, "coord": [48.798269059760955, 2.4859416258134512], "stop_id": 3687004, "stop_desc": "71-73 AVENUE DE LA REPUBLIQUE - 94068", "stop_name": "THEATRE DE SAINT-MAUR"}, "geometry": {"type": "Point", "coordinates": [2.4859416258134512, 48.798269059760955]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "84b73d2d106de1cdca78e5e6dc794731bbde5b9b", "fields": {"departement": "94", "stop_lat": 48.806185859569304, "code_postal": "94068", "stop_lon": 2.4798139815274216, "coord": [48.806185859569304, 2.4798139815274216], "stop_id": 3687010, "stop_desc": "FACE 47 BOULEVARD RABELAIS - 94068", "stop_name": "CIMETIERE - RABELAIS"}, "geometry": {"type": "Point", "coordinates": [2.4798139815274216, 48.806185859569304]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eabf4c3fa81f792be8e26714795789d31d16e6f6", "fields": {"departement": "94", "stop_lat": 48.80652822464246, "code_postal": "94068", "stop_lon": 2.4791209653403192, "coord": [48.80652822464246, 2.4791209653403192], "stop_id": 3687009, "stop_desc": "43-45 BOULEVARD RABELAIS - 94068", "stop_name": "CIMETIERE - RABELAIS"}, "geometry": {"type": "Point", "coordinates": [2.4791209653403192, 48.80652822464246]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "932d3d7c3c1d9738e46b5102b38d355ac5ee2800", "fields": {"departement": "94", "stop_lat": 48.79956235861386, "code_postal": "94068", "stop_lon": 2.4716327000356686, "coord": [48.79956235861386, 2.4716327000356686], "stop_id": 3687000, "stop_desc": "6 TER BOULEVARD DE CRETEIL - 94068", "stop_name": "DOCTEUR TOURASSE"}, "geometry": {"type": "Point", "coordinates": [2.4716327000356686, 48.79956235861386]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "144de58ec9a7143ecf06f85cce8066c141758cfc", "fields": {"departement": "94", "stop_lat": 48.79137454136224, "code_postal": "94068", "stop_lon": 2.4792428043909154, "coord": [48.79137454136224, 2.4792428043909154], "stop_id": 3686739, "stop_desc": "34 AVENUE JEAN JAURES - 94068", "stop_name": "ARROMANCHES"}, "geometry": {"type": "Point", "coordinates": [2.4792428043909154, 48.79137454136224]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f998791d2a3fbaf1909d113c4722ca4febfdd5c6", "fields": {"departement": "94", "stop_lat": 48.7981603300009, "code_postal": "94068", "stop_lon": 2.479302174617681, "coord": [48.7981603300009, 2.479302174617681], "stop_id": 3687046, "stop_desc": "58 BIS BOULEVARD DE CRETEIL - 94068", "stop_name": "BEAUJEU"}, "geometry": {"type": "Point", "coordinates": [2.479302174617681, 48.7981603300009]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "28b4e89b8503b17185540e52886732a314f22995", "fields": {"departement": "94", "stop_lat": 48.78580514257317, "code_postal": "94068", "stop_lon": 2.4911833490462474, "coord": [48.78580514257317, 2.4911833490462474], "stop_id": 3686743, "stop_desc": "72 AVENUE RASPAIL - 94068", "stop_name": "CORNEILLES"}, "geometry": {"type": "Point", "coordinates": [2.4911833490462474, 48.78580514257317]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9c7bd58f90774ca54b1af76629ca43387d685bfe", "fields": {"departement": "94", "stop_lat": 48.78934126816112, "code_postal": "94068", "stop_lon": 2.480910350828397, "coord": [48.78934126816112, 2.480910350828397], "stop_id": 3686740, "stop_desc": "80 AVENUE JEAN JAURES - 94068", "stop_name": "LA PIE"}, "geometry": {"type": "Point", "coordinates": [2.480910350828397, 48.78934126816112]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3cb142809a6abb7bf54e66ab88b6d33e0daa86e9", "fields": {"departement": "75", "stop_lat": 48.853119051005244, "code_postal": "75111", "stop_lon": 2.37075788101229, "coord": [48.853119051005244, 2.37075788101229], "stop_id": 3687300, "stop_desc": "5-7-9 RUE DU FAUBOURG SAINT-ANTOINE - 75111", "stop_name": "BASTILLE - FAUBOURG SAINT-ANTOINE"}, "geometry": {"type": "Point", "coordinates": [2.37075788101229, 48.853119051005244]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "80ad491767fb50bce023aee33f03927fa258ed41", "fields": {"departement": "75", "stop_lat": 48.87665866619254, "code_postal": "75120", "stop_lon": 2.4079976139019896, "coord": [48.87665866619254, 2.4079976139019896], "stop_id": 3687460, "stop_desc": "GARE ROUTIERE SUR DALLE DU BD PERIPHERIQUE - 75120", "stop_name": "PORTE DES LILAS"}, "geometry": {"type": "Point", "coordinates": [2.4079976139019896, 48.87665866619254]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7ade290b15c650f8232b6d43112476bc6f033b7f", "fields": {"departement": "75", "stop_lat": 48.85747297682197, "code_postal": "75104", "stop_lon": 2.3502484760856097, "coord": [48.85747297682197, 2.3502484760856097], "stop_id": 3687469, "stop_desc": "4-6 RUE DE LA COUTELLERIE - 75104", "stop_name": "CHATELET - HOTEL DE VILLE"}, "geometry": {"type": "Point", "coordinates": [2.3502484760856097, 48.85747297682197]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d59922c4ced6fd618defed1c5e9ede9d1e8b1230", "fields": {"departement": "75", "stop_lat": 48.86245795159531, "code_postal": "75111", "stop_lon": 2.367126936773166, "coord": [48.86245795159531, 2.367126936773166], "stop_id": 3687441, "stop_desc": "RUE OBERKAMPF - 75111", "stop_name": "OBERKAMPF - FILLES DU CALVAIRE"}, "geometry": {"type": "Point", "coordinates": [2.367126936773166, 48.86245795159531]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c17b21d6bddd528501c5fbcb917894e4567d9a92", "fields": {"departement": "75", "stop_lat": 48.86810442109776, "code_postal": "75120", "stop_lon": 2.3868700968617778, "coord": [48.86810442109776, 2.3868700968617778], "stop_id": 3687447, "stop_desc": "53 RUE DE MENILMONTANT - 75120", "stop_name": "JULIEN LACROIX"}, "geometry": {"type": "Point", "coordinates": [2.3868700968617778, 48.86810442109776]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2a5524f1ed5596258f0f0e48c59f9b75763200c7", "fields": {"departement": "75", "stop_lat": 48.872113050849755, "code_postal": "75120", "stop_lon": 2.4046126147243236, "coord": [48.872113050849755, 2.4046126147243236], "stop_id": 3687454, "stop_desc": "118 AVENUE GAMBETTA - 75120", "stop_name": "SAINT-FARGEAU"}, "geometry": {"type": "Point", "coordinates": [2.4046126147243236, 48.872113050849755]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d6c4d9c2ed9422b447350cf40224ce6b2ce4a1d2", "fields": {"departement": "75", "stop_lat": 48.853635860010684, "code_postal": "75106", "stop_lon": 2.343955387801452, "coord": [48.853635860010684, 2.343955387801452], "stop_id": 3687471, "stop_desc": "2-4 PLACE SAINT-MICHEL - 75106", "stop_name": "SAINT-MICHEL"}, "geometry": {"type": "Point", "coordinates": [2.343955387801452, 48.853635860010684]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2a535c903624d64c0d661b0e8e322f8c361a4346", "fields": {"departement": "75", "stop_lat": 48.8528494234173, "code_postal": "75112", "stop_lon": 2.370771325960331, "coord": [48.8528494234173, 2.370771325960331], "stop_id": 3687253, "stop_desc": "4 RUE DU FAUBOURG SAINT-ANTOINE - 75112", "stop_name": "BASTILLE - FAUBOURG SAINT-ANTOINE"}, "geometry": {"type": "Point", "coordinates": [2.370771325960331, 48.8528494234173]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1d3463a222889c7e5ee1f05ea40475d87be2ea00", "fields": {"departement": "75", "stop_lat": 48.856438611249025, "code_postal": "75104", "stop_lon": 2.356281902801697, "coord": [48.856438611249025, 2.356281902801697], "stop_id": 3687301, "stop_desc": "32 RUE DE RIVOLI - 75104", "stop_name": "RUE VIEILLE DU TEMPLE - MAIRIE DU 4E"}, "geometry": {"type": "Point", "coordinates": [2.356281902801697, 48.856438611249025]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d31ab04ff0c041bf48148cd8cdd478eaa61e8a48", "fields": {"departement": "75", "stop_lat": 48.85201275020522, "code_postal": "75111", "stop_lon": 2.3736307537404877, "coord": [48.85201275020522, 2.3736307537404877], "stop_id": 3687299, "stop_desc": "55 RUE DU FAUBOURG SAINT ANTOINE - 75111", "stop_name": "LA BOULE BLANCHE"}, "geometry": {"type": "Point", "coordinates": [2.3736307537404877, 48.85201275020522]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2f2fb87b82128e6951d0c2cc9273cb8817986ea4", "fields": {"departement": "75", "stop_lat": 48.85259344198745, "code_postal": "75106", "stop_lon": 2.3334277286474445, "coord": [48.85259344198745, 2.3334277286474445], "stop_id": 3687422, "stop_desc": "31-33 RUE DU FOUR - 75106", "stop_name": "BONAPARTE - SAINT-GERMAIN"}, "geometry": {"type": "Point", "coordinates": [2.3334277286474445, 48.85259344198745]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c15aca18cffc4c1d3dcd040db4824e729a38bc9e", "fields": {"departement": "75", "stop_lat": 48.85534333466014, "code_postal": "75104", "stop_lon": 2.346107532202977, "coord": [48.85534333466014, 2.346107532202977], "stop_id": 3687427, "stop_desc": "1 BOULEVARD DU PALAIS - 75104", "stop_name": "CITE - PALAIS DE JUSTICE"}, "geometry": {"type": "Point", "coordinates": [2.346107532202977, 48.85534333466014]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cd25ab884a222388917e017ae400a27f16d31cda", "fields": {"departement": "93", "stop_lat": 48.86393605508907, "code_postal": "93006", "stop_lon": 2.416766468956753, "coord": [48.86393605508907, 2.416766468956753], "stop_id": 3687278, "stop_desc": "33 AVENUE DU GENERAL DE GAULLE - 93006", "stop_name": "GALLIENI - METRO"}, "geometry": {"type": "Point", "coordinates": [2.416766468956753, 48.86393605508907]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "32a0ca08bd49f652b5d784576e8b7aa344aefc80", "fields": {"departement": "93", "stop_lat": 48.87054163948335, "code_postal": "93006", "stop_lon": 2.41695370781144, "coord": [48.87054163948335, 2.41695370781144], "stop_id": 3687295, "stop_desc": "FACE 68 AVENUE GAMBETTA - 93006", "stop_name": "MARIE-ANNE COLOMBIER"}, "geometry": {"type": "Point", "coordinates": [2.41695370781144, 48.87054163948335]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "58db4d001afe7ef32381b91225fb84d0a99bccfd", "fields": {"departement": "75", "stop_lat": 48.846103994722135, "code_postal": "75106", "stop_lon": 2.325870580821929, "coord": [48.846103994722135, 2.325870580821929], "stop_id": 3687417, "stop_desc": "128 RUE DE RENNES - 75106", "stop_name": "RENNES - SAINT-PLACIDE"}, "geometry": {"type": "Point", "coordinates": [2.325870580821929, 48.846103994722135]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a2cf2d7ac156025640e9b644fe808dbd152962c7", "fields": {"departement": "75", "stop_lat": 48.856061944099835, "code_postal": "75104", "stop_lon": 2.350302602371364, "coord": [48.856061944099835, 2.350302602371364], "stop_id": 3687429, "stop_desc": "FACE 2 QUAI DE GESVRES - 75104", "stop_name": "HOTEL DE VILLE"}, "geometry": {"type": "Point", "coordinates": [2.350302602371364, 48.856061944099835]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9af6bb3bcf053747beb63d1ab71c4f5a6db998a7", "fields": {"departement": "93", "stop_lat": 48.87374020730656, "code_postal": "93006", "stop_lon": 2.430596861009217, "coord": [48.87374020730656, 2.430596861009217], "stop_id": 3687292, "stop_desc": "5 RUE LOUISE MICHEL - 93006", "stop_name": "GIRARDOT"}, "geometry": {"type": "Point", "coordinates": [2.430596861009217, 48.87374020730656]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aef2063e1fca563052d072ff0f001720f6faca09", "fields": {"departement": "94", "stop_lat": 48.783332619160014, "code_postal": "94028", "stop_lon": 2.452155017363666, "coord": [48.783332619160014, 2.452155017363666], "stop_id": 3687036, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 94028", "stop_name": "PREFECTURE DU VAL-DE-MARNE"}, "geometry": {"type": "Point", "coordinates": [2.452155017363666, 48.783332619160014]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3a61dc26d02f08c6cdcafcbfe415eece733884dc", "fields": {"departement": "75", "stop_lat": 48.857607734065525, "code_postal": "75107", "stop_lon": 2.323770519843578, "coord": [48.857607734065525, 2.323770519843578], "stop_id": 3687097, "stop_desc": "FACE 250 BOULEVARD SAINT-GERMAIN - 75107", "stop_name": "SOLFERINO - BELLECHASSE"}, "geometry": {"type": "Point", "coordinates": [2.323770519843578, 48.857607734065525]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4295608c0bce9bb0b0aec0f52f3e70f85c6db57b", "fields": {"departement": "75", "stop_lat": 48.85783817554002, "code_postal": "75107", "stop_lon": 2.306404416500357, "coord": [48.85783817554002, 2.306404416500357], "stop_id": 3687107, "stop_desc": "184 RUE DE GRENELLE - 75107", "stop_name": "SAINT-PIERRE DU GROS CAILLOU"}, "geometry": {"type": "Point", "coordinates": [2.306404416500357, 48.85783817554002]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f96fde7f1cf45b6aa50b892edd34c23a134e8b02", "fields": {"departement": "75", "stop_lat": 48.85861502191514, "code_postal": "75101", "stop_lon": 2.3412319053226995, "coord": [48.85861502191514, 2.3412319053226995], "stop_id": 3687120, "stop_desc": "FACE 16 QUAI DU LOUVRE - 75101", "stop_name": "PONT NEUF - QUAI DU LOUVRE"}, "geometry": {"type": "Point", "coordinates": [2.3412319053226995, 48.85861502191514]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8defa1d4c26dbc2209561a9aab6c0bc6d03178bb", "fields": {"departement": "75", "stop_lat": 48.856937478832926, "code_postal": "75107", "stop_lon": 2.29960847722716, "coord": [48.856937478832926, 2.29960847722716], "stop_id": 3687112, "stop_desc": "AVENUE JOSEPH BOUVARD - 75107", "stop_name": "RAPP - LA BOURDONNAIS"}, "geometry": {"type": "Point", "coordinates": [2.29960847722716, 48.856937478832926]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "265bac25ed4db16035c78ac1b49a7bb8d39cb6b9", "fields": {"departement": "75", "stop_lat": 48.85559468993547, "code_postal": "75107", "stop_lon": 2.3250785474631543, "coord": [48.85559468993547, 2.3250785474631543], "stop_id": 3687099, "stop_desc": "64 RUE DU BAC - 75107", "stop_name": "RUE DU BAC - RENE CHAR"}, "geometry": {"type": "Point", "coordinates": [2.3250785474631543, 48.85559468993547]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a050b35326e8fc572512f68aba8fa10686cdd743", "fields": {"departement": "75", "stop_lat": 48.859046477901266, "code_postal": "75101", "stop_lon": 2.338494169074047, "coord": [48.859046477901266, 2.338494169074047], "stop_id": 3687119, "stop_desc": "QUAI FRANCOIS MITTERRAND - 75101", "stop_name": "PONT DES ARTS"}, "geometry": {"type": "Point", "coordinates": [2.338494169074047, 48.859046477901266]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "720511ff46d75a8618118ea286b730d609d7ff73", "fields": {"departement": "75", "stop_lat": 48.856061944099835, "code_postal": "75104", "stop_lon": 2.350302602371364, "coord": [48.856061944099835, 2.350302602371364], "stop_id": 3687086, "stop_desc": "FACE 2 QUAI DE GESVRES - 75104", "stop_name": "HOTEL DE VILLE"}, "geometry": {"type": "Point", "coordinates": [2.350302602371364, 48.856061944099835]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "29291bac7cc76bd788113a112a4f747b5fb36d7d", "fields": {"departement": "75", "stop_lat": 48.861139933597755, "code_postal": "75107", "stop_lon": 2.325131730835768, "coord": [48.861139933597755, 2.325131730835768], "stop_id": 3687096, "stop_desc": "QUAI ANATOLE FRANCE - 75107", "stop_name": "MUSEE D'ORSAY"}, "geometry": {"type": "Point", "coordinates": [2.325131730835768, 48.861139933597755]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c074e6b321039ec15691ad4e34a78613e9a0e126", "fields": {"departement": "75", "stop_lat": 48.85547674635916, "code_postal": "75104", "stop_lon": 2.3575481918629646, "coord": [48.85547674635916, 2.3575481918629646], "stop_id": 3687122, "stop_desc": "64 RUE FRANCOIS MIRON - 75104", "stop_name": "RUE DE JOUY"}, "geometry": {"type": "Point", "coordinates": [2.3575481918629646, 48.85547674635916]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "519b004d13f1c90402dd29a2db7d4f60732c1269", "fields": {"departement": "94", "stop_lat": 48.799383900372796, "code_postal": "94028", "stop_lon": 2.4533197609918105, "coord": [48.799383900372796, 2.4533197609918105], "stop_id": 3686554, "stop_desc": "AVENUE DU MARECHAL DE LATTRE DE TASSIGNY - 94028", "stop_name": "HENRI MONDOR - LAFERRIERE"}, "geometry": {"type": "Point", "coordinates": [2.4533197609918105, 48.799383900372796]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "667645abea3015f124cd5d6ec51c7428653e2f54", "fields": {"departement": "94", "stop_lat": 48.79687271996065, "code_postal": "94028", "stop_lon": 2.4569193270234053, "coord": [48.79687271996065, 2.4569193270234053], "stop_id": 3686555, "stop_desc": "29-31 AVENUE DU MARECHAL DE LATTRE DE TASSIGNY - 94028", "stop_name": "GENERAL GALLIENI"}, "geometry": {"type": "Point", "coordinates": [2.4569193270234053, 48.79687271996065]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "971a29c01e68e50bdc739711ebc5c0fd56bc782e", "fields": {"departement": "94", "stop_lat": 48.76533704111121, "code_postal": "94011", "stop_lon": 2.4859697504098315, "coord": [48.76533704111121, 2.4859697504098315], "stop_id": 3686583, "stop_desc": "9 MAIL DE LA RESISTANCE - 94011", "stop_name": "PLACE DES LIBERTES"}, "geometry": {"type": "Point", "coordinates": [2.4859697504098315, 48.76533704111121]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a6695bf046a513fd6c573555d64ccfb632bf5da7", "fields": {"departement": "94", "stop_lat": 48.77406883122277, "code_postal": "94011", "stop_lon": 2.4824319434364592, "coord": [48.77406883122277, 2.4824319434364592], "stop_id": 3686571, "stop_desc": "FACE 28 AVENUE AUGUSTE GROSS - 94011", "stop_name": "AVENUE DE CHOISY"}, "geometry": {"type": "Point", "coordinates": [2.4824319434364592, 48.77406883122277]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6a81dcb163561eec51683dba6714760172845b0d", "fields": {"departement": "94", "stop_lat": 48.7857586849276, "code_postal": "94028", "stop_lon": 2.4700736125397467, "coord": [48.7857586849276, 2.4700736125397467], "stop_id": 3686564, "stop_desc": "169 RUE DU GENERAL LECLERC - 94028", "stop_name": "RUE DU BARRAGE"}, "geometry": {"type": "Point", "coordinates": [2.4700736125397467, 48.7857586849276]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "087466a379ec98d0d41cc14249699a82fac7da01", "fields": {"departement": "94", "stop_lat": 48.771862312911104, "code_postal": "94011", "stop_lon": 2.4860292231432126, "coord": [48.771862312911104, 2.4860292231432126], "stop_id": 3686575, "stop_desc": "34 AVENUE DU COLONEL FABIEN - 94011", "stop_name": "MONTAIGNE"}, "geometry": {"type": "Point", "coordinates": [2.4860292231432126, 48.771862312911104]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bea9f75f1b032b9799032fdb6689507836c51148", "fields": {"departement": "94", "stop_lat": 48.793965959282545, "code_postal": "94028", "stop_lon": 2.4605176061845695, "coord": [48.793965959282545, 2.4605176061845695], "stop_id": 3686557, "stop_desc": "RUE DE PARIS - 94028", "stop_name": "EGLISE DE CRETEIL"}, "geometry": {"type": "Point", "coordinates": [2.4605176061845695, 48.793965959282545]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "46d7a984576ea76b5ba28afd40a72e91de486c2e", "fields": {"departement": "94", "stop_lat": 48.78046790354469, "code_postal": "94011", "stop_lon": 2.4752145435836432, "coord": [48.78046790354469, 2.4752145435836432], "stop_id": 3686567, "stop_desc": "113-115 AVENUE DE PARIS - 94011", "stop_name": "DEUX BICHES"}, "geometry": {"type": "Point", "coordinates": [2.4752145435836432, 48.78046790354469]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c4a26ba29def270377fd8399e22861a32d0bf73a", "fields": {"departement": "94", "stop_lat": 48.80734290991733, "code_postal": "94046", "stop_lon": 2.4382199658929267, "coord": [48.80734290991733, 2.4382199658929267], "stop_id": 3686548, "stop_desc": "179 AVENUE DU GENERAL LECLERC - 94046", "stop_name": "CECILE"}, "geometry": {"type": "Point", "coordinates": [2.4382199658929267, 48.80734290991733]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4133b608f3fbdc2db15868cfe14bc47acd5151ef", "fields": {"departement": "94", "stop_lat": 48.77385846776697, "code_postal": "94011", "stop_lon": 2.4853822150721703, "coord": [48.77385846776697, 2.4853822150721703], "stop_id": 3686573, "stop_desc": "21 AVENUE AUGUSTE GROSS - 94011", "stop_name": "ECOLES"}, "geometry": {"type": "Point", "coordinates": [2.4853822150721703, 48.77385846776697]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "61ec366b794085045fba48ae99e2c08b6d9397bd", "fields": {"departement": "94", "stop_lat": 48.81504970329177, "code_postal": "94046", "stop_lon": 2.421141792054011, "coord": [48.81504970329177, 2.421141792054011], "stop_id": 3686492, "stop_desc": "FACE 7 AVENUE DU GENERAL LECLERC - 94046", "stop_name": "ECOLE VETERINAIRE DE MAISONS-ALFORT"}, "geometry": {"type": "Point", "coordinates": [2.421141792054011, 48.81504970329177]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5740ee58f099dd5de6e38e100fd1cc34a6c68c66", "fields": {"departement": "94", "stop_lat": 48.81504970329177, "code_postal": "94046", "stop_lon": 2.421141792054011, "coord": [48.81504970329177, 2.421141792054011], "stop_id": 3686540, "stop_desc": "FACE 7 AVENUE DU GENERAL LECLERC - 94046", "stop_name": "ECOLE VETERINAIRE DE MAISONS-ALFORT"}, "geometry": {"type": "Point", "coordinates": [2.421141792054011, 48.81504970329177]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ff7a192677dba54e82a0914a50942f4bf1e29dd9", "fields": {"departement": "94", "stop_lat": 48.806258099740894, "code_postal": "94002", "stop_lon": 2.423331904181485, "coord": [48.806258099740894, 2.423331904181485], "stop_id": 3686487, "stop_desc": "55-57 RUE MARCEL BOURDARIAS - 94002", "stop_name": "JOSEPH FRANCESCHI"}, "geometry": {"type": "Point", "coordinates": [2.423331904181485, 48.806258099740894]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e7cbcfb303bcfb9f2f4cf886bfba65ce3a4ce8d4", "fields": {"departement": "94", "stop_lat": 48.80532493367181, "code_postal": "94002", "stop_lon": 2.4211396852482028, "coord": [48.80532493367181, 2.4211396852482028], "stop_id": 3686486, "stop_desc": "RUE JOSEPH FRANCESCHI - 94002", "stop_name": "MAIRIE D'ALFORTVILLE"}, "geometry": {"type": "Point", "coordinates": [2.4211396852482028, 48.80532493367181]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "09358739693667c42af08bde7b67941bf3901727", "fields": {"departement": "94", "stop_lat": 48.80943242744798, "code_postal": "94002", "stop_lon": 2.4210374606933356, "coord": [48.80943242744798, 2.4210374606933356], "stop_id": 3686488, "stop_desc": "13-15 RUE MARCEL BOURDARIAS - 94002", "stop_name": "SQUARE BOURDARIAS"}, "geometry": {"type": "Point", "coordinates": [2.4210374606933356, 48.80943242744798]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a03054af81abf4d06a51aceffa9a6396ac837ada", "fields": {"departement": "94", "stop_lat": 48.78711218269996, "code_postal": "94002", "stop_lon": 2.425721307267386, "coord": [48.78711218269996, 2.425721307267386], "stop_id": 3686478, "stop_desc": "FACE 138B RUE ETIENNE DOLET - 94002", "stop_name": "SAN BENEDETTO"}, "geometry": {"type": "Point", "coordinates": [2.425721307267386, 48.78711218269996]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0095a064747f2816d926a3b98fe5251009daf8d8", "fields": {"departement": "94", "stop_lat": 48.77743755917018, "code_postal": "94002", "stop_lon": 2.4181027928439263, "coord": [48.77743755917018, 2.4181027928439263], "stop_id": 3686473, "stop_desc": "4 RUE DU CAPITAINE ALFRED DREYFUS - 94002", "stop_name": "COKERIE"}, "geometry": {"type": "Point", "coordinates": [2.4181027928439263, 48.77743755917018]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bcb55a267565120b193fbd8dcdac4274fab8abe3", "fields": {"departement": "94", "stop_lat": 48.81004392098946, "code_postal": "94046", "stop_lon": 2.4325507264243877, "coord": [48.81004392098946, 2.4325507264243877], "stop_id": 3686543, "stop_desc": "AVENUE DU GENERAL LECLERC - 94046", "stop_name": "8 MAI 1945"}, "geometry": {"type": "Point", "coordinates": [2.4325507264243877, 48.81004392098946]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "426626fc9603403fe11093537d52d418c78137d8", "fields": {"departement": "94", "stop_lat": 48.793197085921115, "code_postal": "94002", "stop_lon": 2.42560924222485, "coord": [48.793197085921115, 2.42560924222485], "stop_id": 3686480, "stop_desc": "69-71 RUE ETIENNE DOLET - 94002", "stop_name": "ROSES"}, "geometry": {"type": "Point", "coordinates": [2.42560924222485, 48.793197085921115]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6f5b3f8692d71c71c615731ad9334037d65c2feb", "fields": {"departement": "94", "stop_lat": 48.797752319023104, "code_postal": "94002", "stop_lon": 2.4277665318073747, "coord": [48.797752319023104, 2.4277665318073747], "stop_id": 3686482, "stop_desc": "R DE VERDUN - 94002", "stop_name": "FLORE"}, "geometry": {"type": "Point", "coordinates": [2.4277665318073747, 48.797752319023104]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2c9fa571de62a437b29df59a4e493359532948a1", "fields": {"departement": "75", "stop_lat": 48.86488327520136, "code_postal": "75120", "stop_lon": 2.41126451915231, "coord": [48.86488327520136, 2.41126451915231], "stop_id": 3687573, "stop_desc": "7 AVENUE CARTELLIER - 75120", "stop_name": "ECHANGEUR DE BAGNOLET"}, "geometry": {"type": "Point", "coordinates": [2.41126451915231, 48.86488327520136]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eb16b0f74e8cbd8dfae61d402b2a2006e752ebf8", "fields": {"departement": "75", "stop_lat": 48.85156893064887, "code_postal": "75106", "stop_lon": 2.337881145081453, "coord": [48.85156893064887, 2.337881145081453], "stop_id": 3687472, "stop_desc": "10 PLACE SAINT SULPICE - 75106", "stop_name": "EGLISE SAINT-SULPICE"}, "geometry": {"type": "Point", "coordinates": [2.337881145081453, 48.85156893064887]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d4bc3512467c3bfd4ef915c074d5d4cf5e8417e8", "fields": {"departement": "93", "stop_lat": 48.86754005980411, "code_postal": "93006", "stop_lon": 2.4166630116229832, "coord": [48.86754005980411, 2.4166630116229832], "stop_id": 3687574, "stop_desc": "23 RUE ADELAIDE LAHAYE - 93006", "stop_name": "LA POSTE"}, "geometry": {"type": "Point", "coordinates": [2.4166630116229832, 48.86754005980411]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "149512bb1d9061403db284746e7e00bcfee16129", "fields": {"departement": "94", "stop_lat": 48.793197085921115, "code_postal": "94002", "stop_lon": 2.42560924222485, "coord": [48.793197085921115, 2.42560924222485], "stop_id": 3686452, "stop_desc": "69-71 RUE ETIENNE DOLET - 94002", "stop_name": "ROSES"}, "geometry": {"type": "Point", "coordinates": [2.42560924222485, 48.793197085921115]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b2d4cc0df604f3edf83d10244ac1c6f47ce13fa6", "fields": {"departement": "94", "stop_lat": 48.80031446208389, "code_postal": "94002", "stop_lon": 2.42696828289225, "coord": [48.80031446208389, 2.42696828289225], "stop_id": 3686455, "stop_desc": "R JOFFRIN - 94002", "stop_name": "CAMELIAS"}, "geometry": {"type": "Point", "coordinates": [2.42696828289225, 48.80031446208389]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f00c4a0f0bd288fd9a12544dc608dba5a777e979", "fields": {"departement": "94", "stop_lat": 48.84807383726229, "code_postal": "94080", "stop_lon": 2.439511235018801, "coord": [48.84807383726229, 2.439511235018801], "stop_id": 3685686, "stop_desc": "FACE 57 RUE DE FONTENAY - 94080", "stop_name": "MAIRIE DE VINCENNES"}, "geometry": {"type": "Point", "coordinates": [2.439511235018801, 48.84807383726229]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "90a2807eab423be27efe4804df75b4ff9dec512e", "fields": {"departement": "75", "stop_lat": 48.84408977596744, "code_postal": "75112", "stop_lon": 2.4424854671358247, "coord": [48.84408977596744, 2.4424854671358247], "stop_id": 3685680, "stop_desc": "PISTE GARE ROUTIERE - 75112", "stop_name": "CHATEAU DE VINCENNES"}, "geometry": {"type": "Point", "coordinates": [2.4424854671358247, 48.84408977596744]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "44455c4046191dfbc87ebf9bbfe2c9a426b79689", "fields": {"departement": "94", "stop_lat": 48.853837599296924, "code_postal": "94058", "stop_lon": 2.501327413920225, "coord": [48.853837599296924, 2.501327413920225], "stop_id": 3683573, "stop_desc": "FACE 101 AVENUE LAMARTINE - 94058", "stop_name": "LES JONCS MARINS"}, "geometry": {"type": "Point", "coordinates": [2.501327413920225, 48.853837599296924]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2b9a3bf1c0ad5ede24c1b6cd7bd187477661d2ac", "fields": {"departement": "94", "stop_lat": 48.852479525084256, "code_postal": "94033", "stop_lon": 2.4568569488415384, "coord": [48.852479525084256, 2.4568569488415384], "stop_id": 3685692, "stop_desc": "54 AVENUE DE LA REPUBLIQUE - 94033", "stop_name": "ANDRE LAURENT"}, "geometry": {"type": "Point", "coordinates": [2.4568569488415384, 48.852479525084256]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9f2a098fb71d8f94ec025c985e1269082b312fe1", "fields": {"departement": "94", "stop_lat": 48.84783944640084, "code_postal": "94080", "stop_lon": 2.4403414594989346, "coord": [48.84783944640084, 2.4403414594989346], "stop_id": 3685685, "stop_desc": "51 RUE DE FONTENAY - 94080", "stop_name": "MAIRIE DE VINCENNES"}, "geometry": {"type": "Point", "coordinates": [2.4403414594989346, 48.84783944640084]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2277a36ae2e990bac5158a524bc80ba06f5a5dfd", "fields": {"departement": "94", "stop_lat": 48.85264792420809, "code_postal": "94033", "stop_lon": 2.467670886794354, "coord": [48.85264792420809, 2.467670886794354], "stop_id": 3685696, "stop_desc": "256 AVENUE DE LA REPUBLIQUE - 94033", "stop_name": "ANDRE TESSIER"}, "geometry": {"type": "Point", "coordinates": [2.467670886794354, 48.85264792420809]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bfa4a34b5426028fac83324521ca944dea59bf91", "fields": {"departement": "94", "stop_lat": 48.85375898782741, "code_postal": "94033", "stop_lon": 2.4707244202565644, "coord": [48.85375898782741, 2.4707244202565644], "stop_id": 3685698, "stop_desc": "FACE 5 AVENUE DU MARECHAL JOFFRE - 94033", "stop_name": "VERDUN"}, "geometry": {"type": "Point", "coordinates": [2.4707244202565644, 48.85375898782741]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "86edd6fa3fc8372b1f230e99ac49e2451cf10b83", "fields": {"departement": "93", "stop_lat": 48.86706787800096, "code_postal": "93064", "stop_lon": 2.4940674139761208, "coord": [48.86706787800096, 2.4940674139761208], "stop_id": 3683582, "stop_desc": "97 RUE DU GENERAL LECLERC - 93064", "stop_name": "PAUL BERT"}, "geometry": {"type": "Point", "coordinates": [2.4940674139761208, 48.86706787800096]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1a7df57f41564252d73a55462b3c1f8f3c23241a", "fields": {"departement": "94", "stop_lat": 48.852562149777675, "code_postal": "94033", "stop_lon": 2.4638709537730135, "coord": [48.852562149777675, 2.4638709537730135], "stop_id": 3685695, "stop_desc": "191 AVENUE DE LA REPUBLIQUE - 94033", "stop_name": "DANTON"}, "geometry": {"type": "Point", "coordinates": [2.4638709537730135, 48.852562149777675]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9627fb48ca10ace815379127814497dca6a340b0", "fields": {"departement": "93", "stop_lat": 48.8670774582693, "code_postal": "93064", "stop_lon": 2.500320345327849, "coord": [48.8670774582693, 2.500320345327849], "stop_id": 3683580, "stop_desc": "RUE DE STRASBOURG - 93064", "stop_name": "STRASBOURG"}, "geometry": {"type": "Point", "coordinates": [2.500320345327849, 48.8670774582693]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a0a1a41c0f2629debf5d71eccb85015f8a7226d7", "fields": {"departement": "94", "stop_lat": 48.81504970329177, "code_postal": "94046", "stop_lon": 2.421141792054011, "coord": [48.81504970329177, 2.421141792054011], "stop_id": 3686464, "stop_desc": "FACE 7 AVENUE DU GENERAL LECLERC - 94046", "stop_name": "ECOLE VETERINAIRE DE MAISONS-ALFORT"}, "geometry": {"type": "Point", "coordinates": [2.421141792054011, 48.81504970329177]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ac4bd55018918c2ee9c7c2acb1369fee9ea52416", "fields": {"departement": "94", "stop_lat": 48.806258099740894, "code_postal": "94002", "stop_lon": 2.423331904181485, "coord": [48.806258099740894, 2.423331904181485], "stop_id": 3686459, "stop_desc": "55-57 RUE MARCEL BOURDARIAS - 94002", "stop_name": "JOSEPH FRANCESCHI"}, "geometry": {"type": "Point", "coordinates": [2.423331904181485, 48.806258099740894]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3fc4ce353c76be2f518b581dcac8e7bcd9c9a88a", "fields": {"departement": "94", "stop_lat": 48.80866666037178, "code_postal": "94046", "stop_lon": 2.4351744524613728, "coord": [48.80866666037178, 2.4351744524613728], "stop_id": 3686545, "stop_desc": "FACE 149 AVENUE DU GENERAL LECLERC - 94046", "stop_name": "STADE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.4351744524613728, 48.80866666037178]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6aae0380474ae83f6192c452309da8c9e04cf701", "fields": {"departement": "94", "stop_lat": 48.80885525788095, "code_postal": "94046", "stop_lon": 2.4353517068018586, "coord": [48.80885525788095, 2.4353517068018586], "stop_id": 3686546, "stop_desc": "149-151 AVENUE DU GENERAL LECLERC - 94046", "stop_name": "STADE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.4353517068018586, 48.80885525788095]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0ff285252eee8122d7ed83c4dc0f68bcca4aec94", "fields": {"departement": "94", "stop_lat": 48.78548906218913, "code_postal": "94028", "stop_lon": 2.470059321564327, "coord": [48.78548906218913, 2.470059321564327], "stop_id": 3686563, "stop_desc": "146 RUE DU GENERAL LECLERC - 94028", "stop_name": "RUE DU BARRAGE"}, "geometry": {"type": "Point", "coordinates": [2.470059321564327, 48.78548906218913]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "30c70094c7e88e95173a316b0ee64fba8068bcb8", "fields": {"departement": "94", "stop_lat": 48.78044953271467, "code_postal": "94011", "stop_lon": 2.4755544986341733, "coord": [48.78044953271467, 2.4755544986341733], "stop_id": 3686568, "stop_desc": "FACE 99 AVENUE DE PARIS - 94011", "stop_name": "DEUX BICHES"}, "geometry": {"type": "Point", "coordinates": [2.4755544986341733, 48.78044953271467]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "131bc3551e283f59c7a84e7d4d8da81db74065af", "fields": {"departement": "94", "stop_lat": 48.76102765772384, "code_postal": "94073", "stop_lon": 2.399316084390214, "coord": [48.76102765772384, 2.399316084390214], "stop_id": 3686465, "stop_desc": "0 AV GEORGES HALGOULT - 94073", "stop_name": "GEORGES HALGOULT"}, "geometry": {"type": "Point", "coordinates": [2.399316084390214, 48.76102765772384]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b0862e547ca8155acedbd4c40bfcde15fd0889d3", "fields": {"departement": "94", "stop_lat": 48.77931223254862, "code_postal": "94028", "stop_lon": 2.454974892942372, "coord": [48.77931223254862, 2.454974892942372], "stop_id": 3686989, "stop_desc": "30 AVENUE DE LA FRANCE LIBRE - 94028", "stop_name": "CENTRE COMMERCIAL REGIONAL"}, "geometry": {"type": "Point", "coordinates": [2.454974892942372, 48.77931223254862]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7996fc31ecc90e76bceceb4b4b470d20742fe5a2", "fields": {"departement": "94", "stop_lat": 48.77789179415231, "code_postal": "94028", "stop_lon": 2.4553116608432237, "coord": [48.77789179415231, 2.4553116608432237], "stop_id": 3686986, "stop_desc": "AVENUE DE LA FRANCE LIBRE - 94028", "stop_name": "HOTEL DE VILLE DE CRETEIL"}, "geometry": {"type": "Point", "coordinates": [2.4553116608432237, 48.77789179415231]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "239a3477306ad71834ebedd865a716a0386c61f0", "fields": {"departement": "94", "stop_lat": 48.777874060932916, "code_postal": "94028", "stop_lon": 2.455066830013321, "coord": [48.777874060932916, 2.455066830013321], "stop_id": 3686987, "stop_desc": "AVENUE DE LA FRANCE LIBRE - 94028", "stop_name": "HOTEL DE VILLE DE CRETEIL"}, "geometry": {"type": "Point", "coordinates": [2.455066830013321, 48.777874060932916]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "215579a1f6d27dacd758087ba94507b4fc850585", "fields": {"departement": "94", "stop_lat": 48.7901620879359, "code_postal": "94068", "stop_lon": 2.512280457457706, "coord": [48.7901620879359, 2.512280457457706], "stop_id": 3686750, "stop_desc": "FACE 36BIS RUE SAINT HILAIRE - 94068", "stop_name": "EGLISE DE LA VARENNE"}, "geometry": {"type": "Point", "coordinates": [2.512280457457706, 48.7901620879359]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5773b6f560ae6f6cab25aa2fcc92b4167c3d8a8b", "fields": {"departement": "94", "stop_lat": 48.78964938432234, "code_postal": "94028", "stop_lon": 2.4539645305020823, "coord": [48.78964938432234, 2.4539645305020823], "stop_id": 3686994, "stop_desc": "2 RUE MAURICE DEMENITROUX - 94028", "stop_name": "CRETEIL - UNIVERSITE"}, "geometry": {"type": "Point", "coordinates": [2.4539645305020823, 48.78964938432234]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "38f01af2443e412f55241841a00e52aadc31e329", "fields": {"departement": "94", "stop_lat": 48.810726707280864, "code_postal": "94068", "stop_lon": 2.4781254407727564, "coord": [48.810726707280864, 2.4781254407727564], "stop_id": 3687015, "stop_desc": "46 AVENUE DE LA LIBERATION - 94068", "stop_name": "LIBERATION - CONDE"}, "geometry": {"type": "Point", "coordinates": [2.4781254407727564, 48.810726707280864]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eed284176ad4bcca75c2799268d2b77e2fda6f63", "fields": {"departement": "94", "stop_lat": 48.79816237519563, "code_postal": "94068", "stop_lon": 2.4850025893795475, "coord": [48.79816237519563, 2.4850025893795475], "stop_id": 3687005, "stop_desc": "91 BD DE CRETEIL - 94068", "stop_name": "THEATRE DE SAINT-MAUR"}, "geometry": {"type": "Point", "coordinates": [2.4850025893795475, 48.79816237519563]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "635f2598d69bc6d40f7a6e88d2bb778ef06adab2", "fields": {"departement": "94", "stop_lat": 48.80930106575029, "code_postal": "94068", "stop_lon": 2.475209521668586, "coord": [48.80930106575029, 2.475209521668586], "stop_id": 3687014, "stop_desc": "15 BIS AVENUE GODEFROY CAVAIGNAC - 94068", "stop_name": "MARINVILLE"}, "geometry": {"type": "Point", "coordinates": [2.475209521668586, 48.80930106575029]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4af06a7069091cb72dcb7ec1adcfdfabb10e4b0a", "fields": {"departement": "94", "stop_lat": 48.78705761422884, "code_postal": "94068", "stop_lon": 2.50224539865963, "coord": [48.78705761422884, 2.50224539865963], "stop_id": 3686746, "stop_desc": "FACE 46 RUE CHEVALIER - 94068", "stop_name": "FALONNIERES"}, "geometry": {"type": "Point", "coordinates": [2.50224539865963, 48.78705761422884]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cc272756149ec42dc47ea61103d56013078377d4", "fields": {"departement": "94", "stop_lat": 48.773352906686064, "code_postal": "94011", "stop_lon": 2.487162150761159, "coord": [48.773352906686064, 2.487162150761159], "stop_id": 3686574, "stop_desc": "FACE 7 AVENUE DU COLONEL FABIEN ET DE SON REGIMENT - 94011", "stop_name": "MAIRIE DE BONNEUIL"}, "geometry": {"type": "Point", "coordinates": [2.487162150761159, 48.773352906686064]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c9f87e98265308c398e61302dab6896fc92e2147", "fields": {"departement": "94", "stop_lat": 48.78601564796178, "code_postal": "94068", "stop_lon": 2.4882324222937453, "coord": [48.78601564796178, 2.4882324222937453], "stop_id": 3686742, "stop_desc": "50 AVENUE RASPAIL - 94068", "stop_name": "DOCTEUR ROUX - CHAMBRE DES METIERS"}, "geometry": {"type": "Point", "coordinates": [2.4882324222937453, 48.78601564796178]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bfe4c20206d180df349960ffbd57260d3bdd75ee", "fields": {"departement": "94", "stop_lat": 48.81786967316462, "code_postal": "94069", "stop_lon": 2.4460389440703985, "coord": [48.81786967316462, 2.4460389440703985], "stop_id": 3686725, "stop_desc": "150-156 RUE DU MARECHAL LECLERC - 94069", "stop_name": "CFA - ANDRIEU"}, "geometry": {"type": "Point", "coordinates": [2.4460389440703985, 48.81786967316462]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5d87eb1a81254b1ccd499c8798c1f055f5620a1b", "fields": {"departement": "94", "stop_lat": 48.80093266373305, "code_postal": "94028", "stop_lon": 2.4503572214194693, "coord": [48.80093266373305, 2.4503572214194693], "stop_id": 3686593, "stop_desc": "100 AVENUE DU MARECHAL DE LATTRE DE TASSIGNY - 94028", "stop_name": "VIET"}, "geometry": {"type": "Point", "coordinates": [2.4503572214194693, 48.80093266373305]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3d1d30020f28ce9319409b78188bc557beddc379", "fields": {"departement": "94", "stop_lat": 48.796663625497644, "code_postal": "94068", "stop_lon": 2.475679309587896, "coord": [48.796663625497644, 2.475679309587896], "stop_id": 3686737, "stop_desc": "32-34 BOULEVARD DU GENERAL GIRAUD - 94068", "stop_name": "BEAUJEU"}, "geometry": {"type": "Point", "coordinates": [2.475679309587896, 48.796663625497644]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bf62cf1d2d4f176d15f85a7db551a4de02f19343", "fields": {"departement": "94", "stop_lat": 48.76421108396241, "code_postal": "94011", "stop_lon": 2.487910742489557, "coord": [48.76421108396241, 2.487910742489557], "stop_id": 3686584, "stop_desc": "AV DU BICENTENAIRE 1789-1989 - 94011", "stop_name": "BICENTENAIRE"}, "geometry": {"type": "Point", "coordinates": [2.487910742489557, 48.76421108396241]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "531a14828e5c02d797d27b9d908c7a789b2d3052", "fields": {"departement": "94", "stop_lat": 48.77249232695218, "code_postal": "94071", "stop_lon": 2.505612258810384, "coord": [48.77249232695218, 2.505612258810384], "stop_id": 3686591, "stop_desc": "R MARCO POLO - 94071", "stop_name": "SUCY-BONNEUIL RER"}, "geometry": {"type": "Point", "coordinates": [2.505612258810384, 48.77249232695218]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "abae1de16876d6db8e45fc741475eed325450630", "fields": {"departement": "94", "stop_lat": 48.768973182776726, "code_postal": "94011", "stop_lon": 2.4819554014195817, "coord": [48.768973182776726, 2.4819554014195817], "stop_id": 3686578, "stop_desc": "FACE 1 AVENUE JEAN MOULIN - 94011", "stop_name": "VERDUN"}, "geometry": {"type": "Point", "coordinates": [2.4819554014195817, 48.768973182776726]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5dd590ad344265727869b2c634efd0c8726abea1", "fields": {"departement": "94", "stop_lat": 48.766837053758316, "code_postal": "94011", "stop_lon": 2.4937512963575856, "coord": [48.766837053758316, 2.4937512963575856], "stop_id": 3686592, "stop_desc": "GRANDE ALLEE - 94011", "stop_name": "MARRONNIERS"}, "geometry": {"type": "Point", "coordinates": [2.4937512963575856, 48.766837053758316]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3754ab488b1143cc02385116aebb6c6a499713d5", "fields": {"departement": "94", "stop_lat": 48.78588192622703, "code_postal": "94068", "stop_lon": 2.4943255420261448, "coord": [48.78588192622703, 2.4943255420261448], "stop_id": 3686744, "stop_desc": "FACE 77 AVENUE RASPAIL - 94068", "stop_name": "ALMA"}, "geometry": {"type": "Point", "coordinates": [2.4943255420261448, 48.78588192622703]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e6c83006b8d598c4fb0671f14a6e8577942fdd64", "fields": {"departement": "94", "stop_lat": 48.823619739852504, "code_postal": "94017", "stop_lon": 2.4958825713513435, "coord": [48.823619739852504, 2.4958825713513435], "stop_id": 3687024, "stop_desc": "115-113 AVENUE DU GENERAL DE GAULLE - 94017", "stop_name": "GENERAL DE GAULLE - STALINGRAD"}, "geometry": {"type": "Point", "coordinates": [2.4958825713513435, 48.823619739852504]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6f00ef3691b07b2cfa89ac2d1fa162800fbb5840", "fields": {"departement": "94", "stop_lat": 48.811114990867424, "code_postal": "94068", "stop_lon": 2.4765887691953345, "coord": [48.811114990867424, 2.4765887691953345], "stop_id": 3687016, "stop_desc": "FACE 52 AVENUE GODEFROY CAVAIGNAC - 94068", "stop_name": "LIBERATION - CONDE"}, "geometry": {"type": "Point", "coordinates": [2.4765887691953345, 48.811114990867424]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8a3a6ffa8ad0240c5e46f0391b5285d18a3c63f8", "fields": {"departement": "94", "stop_lat": 48.822429558442465, "code_postal": "94017", "stop_lon": 2.4919453082810836, "coord": [48.822429558442465, 2.4919453082810836], "stop_id": 3687022, "stop_desc": "75 AVENUE DU GENERAL DE GAULLE - 94017", "stop_name": "LES MARRONNIERS"}, "geometry": {"type": "Point", "coordinates": [2.4919453082810836, 48.822429558442465]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1b154fcf912bf005ffc8d6a99c755be6c8c1a99a", "fields": {"departement": "94", "stop_lat": 48.81517164208101, "code_postal": "94017", "stop_lon": 2.4814717708253067, "coord": [48.81517164208101, 2.4814717708253067], "stop_id": 3687017, "stop_desc": "57 AVENUE CHARLES FLOQUET - 94017", "stop_name": "CHARLES FLOQUET - DIDEROT"}, "geometry": {"type": "Point", "coordinates": [2.4814717708253067, 48.81517164208101]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "af3e595b5121fe2c378d9f8d4a8e967b4f69ad0c", "fields": {"departement": "94", "stop_lat": 48.81513595487389, "code_postal": "94042", "stop_lon": 2.4812539237749385, "coord": [48.81513595487389, 2.4812539237749385], "stop_id": 3687033, "stop_desc": "AVENUE CHARLES FLOQUET - 94042", "stop_name": "CHARLES FLOQUET - DIDEROT"}, "geometry": {"type": "Point", "coordinates": [2.4812539237749385, 48.81513595487389]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1ad14384f33e28346baf3b7f61d94c3652557494", "fields": {"departement": "94", "stop_lat": 48.83835251163571, "code_postal": "94058", "stop_lon": 2.4943482364108416, "coord": [48.83835251163571, 2.4943482364108416], "stop_id": 3687030, "stop_desc": "0 AV LEDRU ROLLIN - 94058", "stop_name": "NOGENT-LE-PERREUX RER"}, "geometry": {"type": "Point", "coordinates": [2.4943482364108416, 48.83835251163571]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fd47fd9d67a3e7615612d66b2ffb63d58302f811", "fields": {"departement": "94", "stop_lat": 48.83835251163571, "code_postal": "94058", "stop_lon": 2.4943482364108416, "coord": [48.83835251163571, 2.4943482364108416], "stop_id": 3687031, "stop_desc": "0 AV LEDRU ROLLIN - 94058", "stop_name": "NOGENT-LE-PERREUX RER"}, "geometry": {"type": "Point", "coordinates": [2.4943482364108416, 48.83835251163571]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4457ed0ab2d948a724f3c7eae6db2edf4c7b8b6a", "fields": {"departement": "94", "stop_lat": 48.81918790413278, "code_postal": "94017", "stop_lon": 2.482503703425562, "coord": [48.81918790413278, 2.482503703425562], "stop_id": 3687018, "stop_desc": "AVENUE CHARLES FLOQUET - 94017", "stop_name": "42E DE LIGNE"}, "geometry": {"type": "Point", "coordinates": [2.482503703425562, 48.81918790413278]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "23acdd52ca1f4d163417de4706d57769ee836a89", "fields": {"departement": "94", "stop_lat": 48.83506442543633, "code_postal": "94052", "stop_lon": 2.493303581104327, "coord": [48.83506442543633, 2.493303581104327], "stop_id": 3687029, "stop_desc": "BOULEVARD ALBERT 1ER - 94052", "stop_name": "VIADUC"}, "geometry": {"type": "Point", "coordinates": [2.493303581104327, 48.83506442543633]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8ff05d6fd97922a0e75330f7d7dc17c7dbb15c04", "fields": {"departement": "75", "stop_lat": 48.86170601135141, "code_postal": "75111", "stop_lon": 2.3854064805301256, "coord": [48.86170601135141, 2.3854064805301256], "stop_id": 3687067, "stop_desc": "69 RUE DE LA FOLIE REGNAULT - 75111", "stop_name": "FOLIE REGNAULT - CHEMIN VERT"}, "geometry": {"type": "Point", "coordinates": [2.3854064805301256, 48.86170601135141]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0d5ee94e0b5c60ac7a52272ca81a4ea21af4e24f", "fields": {"departement": "94", "stop_lat": 48.79770955422415, "code_postal": "94028", "stop_lon": 2.4646487082311888, "coord": [48.79770955422415, 2.4646487082311888], "stop_id": 3687044, "stop_desc": "FACE 57 AVENUE DE VERDUN - 94028", "stop_name": "HOPITAL INTERCOMMUNAL"}, "geometry": {"type": "Point", "coordinates": [2.4646487082311888, 48.79770955422415]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "506efc8e3d81ec1c5c786dc1781ca3b4576bc15f", "fields": {"departement": "75", "stop_lat": 48.860046250787875, "code_postal": "75111", "stop_lon": 2.3775728599205235, "coord": [48.860046250787875, 2.3775728599205235], "stop_id": 3687072, "stop_desc": "63 RUE DU CHEMIN VERT - 75111", "stop_name": "CHEMIN VERT - PARMENTIER"}, "geometry": {"type": "Point", "coordinates": [2.3775728599205235, 48.860046250787875]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aaf5e2a2c738fa31c70c1cb242518f72447e0cae", "fields": {"departement": "75", "stop_lat": 48.85319164694081, "code_postal": "75104", "stop_lon": 2.3681838978405163, "coord": [48.85319164694081, 2.3681838978405163], "stop_id": 3687079, "stop_desc": "1 RUE SAINT-ANTOINE - 75104", "stop_name": "BASTILLE - RUE SAINT-ANTOINE"}, "geometry": {"type": "Point", "coordinates": [2.3681838978405163, 48.85319164694081]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "45b12852393416d49db4b0b4bd59fa41d7b7ac63", "fields": {"departement": "75", "stop_lat": 48.85912150277622, "code_postal": "75111", "stop_lon": 2.374643676621855, "coord": [48.85912150277622, 2.374643676621855], "stop_id": 3687073, "stop_desc": "43 RUE DU CHEMIN VERT - 75111", "stop_name": "POPINCOURT"}, "geometry": {"type": "Point", "coordinates": [2.374643676621855, 48.85912150277622]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "275b260c066e286738aec8eaafed036481f4662d", "fields": {"departement": "75", "stop_lat": 48.85687343623505, "code_postal": "75111", "stop_lon": 2.378319502912158, "coord": [48.85687343623505, 2.378319502912158], "stop_id": 3687074, "stop_desc": "112 RUE DE LA ROQUETTE - 75111", "stop_name": "POPINCOURT"}, "geometry": {"type": "Point", "coordinates": [2.378319502912158, 48.85687343623505]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "379aaf1250f3c4f2c8f73a39b3cb52d55474b5c2", "fields": {"departement": "75", "stop_lat": 48.86483700048306, "code_postal": "75120", "stop_lon": 2.3977102953683977, "coord": [48.86483700048306, 2.3977102953683977], "stop_id": 3687060, "stop_desc": "FACE 77 AVENUE GAMBETTA - 75120", "stop_name": "GAMBETTA"}, "geometry": {"type": "Point", "coordinates": [2.3977102953683977, 48.86483700048306]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "103ceffe5d19ecda76ac4d4cefac5b0aea45d683", "fields": {"departement": "75", "stop_lat": 48.8552333745965, "code_postal": "75104", "stop_lon": 2.361361624451313, "coord": [48.8552333745965, 2.361361624451313], "stop_id": 3687082, "stop_desc": "94 RUE SAINT ANTOINE - 75104", "stop_name": "SAINT-PAUL"}, "geometry": {"type": "Point", "coordinates": [2.361361624451313, 48.8552333745965]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "36d39112bd25eb68ab073cf0edc4ab3241a9f7d3", "fields": {"departement": "75", "stop_lat": 48.85146373628741, "code_postal": "75111", "stop_lon": 2.376095363071712, "coord": [48.85146373628741, 2.376095363071712], "stop_id": 3687256, "stop_desc": "89 RUE DU FAUBOURG SAINT-ANTOINE - 75111", "stop_name": "LEDRU ROLLIN - FAUBOURG SAINT-ANTOINE"}, "geometry": {"type": "Point", "coordinates": [2.376095363071712, 48.85146373628741]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "46f7ddb89067332491690ef0e26e7ae3111c4f14", "fields": {"departement": "75", "stop_lat": 48.85861502191514, "code_postal": "75101", "stop_lon": 2.3412319053226995, "coord": [48.85861502191514, 2.3412319053226995], "stop_id": 3687240, "stop_desc": "FACE 16 QUAI DU LOUVRE - 75101", "stop_name": "PONT NEUF - QUAI DU LOUVRE"}, "geometry": {"type": "Point", "coordinates": [2.3412319053226995, 48.85861502191514]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fa48d7737aebf284d479c46658beb2efc3684ac7", "fields": {"departement": "75", "stop_lat": 48.85576295980927, "code_postal": "75111", "stop_lon": 2.3909442554287903, "coord": [48.85576295980927, 2.3909442554287903], "stop_id": 3687264, "stop_desc": "165 RUE DE CHARONNE - 75111", "stop_name": "CHARONNE - PHILIPPE AUGUSTE"}, "geometry": {"type": "Point", "coordinates": [2.3909442554287903, 48.85576295980927]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "29c51d814811ae84f3954b990132b84a082f472c", "fields": {"departement": "75", "stop_lat": 48.85556545010317, "code_postal": "75111", "stop_lon": 2.390467356843956, "coord": [48.85556545010317, 2.390467356843956], "stop_id": 3687263, "stop_desc": "158 RUE DE CHARONNE - 75111", "stop_name": "CHARONNE - PHILIPPE AUGUSTE"}, "geometry": {"type": "Point", "coordinates": [2.390467356843956, 48.85556545010317]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "56059be5bddae0cb158d94b26c5fbb8185bb6103", "fields": {"departement": "75", "stop_lat": 48.856031663567855, "code_postal": "75120", "stop_lon": 2.392946666926619, "coord": [48.856031663567855, 2.392946666926619], "stop_id": 3687265, "stop_desc": "174 RUE DE CHARONNE - 75120", "stop_name": "CHARONNE - BAGNOLET"}, "geometry": {"type": "Point", "coordinates": [2.392946666926619, 48.856031663567855]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "807e2317b6f193a60df66425ea8d4a4fc33f5ba5", "fields": {"departement": "75", "stop_lat": 48.857709119091915, "code_postal": "75120", "stop_lon": 2.399404535835359, "coord": [48.857709119091915, 2.399404535835359], "stop_id": 3687267, "stop_desc": "67-69 RUE DE BAGNOLET - 75120", "stop_name": "LA REUNION"}, "geometry": {"type": "Point", "coordinates": [2.399404535835359, 48.857709119091915]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "624b61939682cb5fdc8e269b40f1469ba49b3ab1", "fields": {"departement": "75", "stop_lat": 48.85496370976521, "code_postal": "75104", "stop_lon": 2.361565794177265, "coord": [48.85496370976521, 2.361565794177265], "stop_id": 3687247, "stop_desc": "92 RUE SAINT-ANTOINE - 75104", "stop_name": "SAINT-PAUL"}, "geometry": {"type": "Point", "coordinates": [2.361565794177265, 48.85496370976521]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9dfc6fd0d36326d829a41554c01e13f4a37898c3", "fields": {"departement": "75", "stop_lat": 48.85376253870783, "code_postal": "75111", "stop_lon": 2.3817763566273324, "coord": [48.85376253870783, 2.3817763566273324], "stop_id": 3687259, "stop_desc": "90 RUE DE CHARONNE - 75111", "stop_name": "FAIDHERBE"}, "geometry": {"type": "Point", "coordinates": [2.3817763566273324, 48.85376253870783]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d54004b38d27cf8c984eeba5a6c618cd98845b67", "fields": {"departement": "93", "stop_lat": 48.868990600448974, "code_postal": "93006", "stop_lon": 2.4244033032798584, "coord": [48.868990600448974, 2.4244033032798584], "stop_id": 3687284, "stop_desc": "RUE LENINE - 93006", "stop_name": "PIERRE CURIE"}, "geometry": {"type": "Point", "coordinates": [2.4244033032798584, 48.868990600448974]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9dc75d50aa0ad109ccf472070051623e73427a76", "fields": {"departement": "75", "stop_lat": 48.862578527141316, "code_postal": "75101", "stop_lon": 2.336028731198637, "coord": [48.862578527141316, 2.336028731198637], "stop_id": 3687091, "stop_desc": "172 RUE DE RIVOLI - 75101", "stop_name": "PALAIS ROYAL - MUSEE DU LOUVRE"}, "geometry": {"type": "Point", "coordinates": [2.336028731198637, 48.862578527141316]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "36953c5f4eb300a40f014b1ffcbc4221e5a2806a", "fields": {"departement": "75", "stop_lat": 48.85809064084612, "code_postal": "75107", "stop_lon": 2.3097412870883014, "coord": [48.85809064084612, 2.3097412870883014], "stop_id": 3687106, "stop_desc": "158 RUE DE GRENELLE - 75107", "stop_name": "INVALIDES - LA TOUR-MAUBOURG"}, "geometry": {"type": "Point", "coordinates": [2.3097412870883014, 48.85809064084612]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7416ad264db7fb4170d35f7cab31d62c18624a08", "fields": {"departement": "75", "stop_lat": 48.85788628130985, "code_postal": "75107", "stop_lon": 2.323225629890544, "coord": [48.85788628130985, 2.323225629890544], "stop_id": 3687098, "stop_desc": "01 RUE SAINT DOMINIQUE - 75107", "stop_name": "SOLFERINO - BELLECHASSE"}, "geometry": {"type": "Point", "coordinates": [2.323225629890544, 48.85788628130985]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "61ef0cb5096a3f31e84ae77804d3b3df93976634", "fields": {"departement": "75", "stop_lat": 48.85875832342004, "code_postal": "75111", "stop_lon": 2.384954261522689, "coord": [48.85875832342004, 2.384954261522689], "stop_id": 3687126, "stop_desc": "166 RUE DE LA ROQUETTE - 75111", "stop_name": "SAINT-MAUR - SERVAN"}, "geometry": {"type": "Point", "coordinates": [2.384954261522689, 48.85875832342004]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fc827a94761d32874617d80c95553c8318faaadc", "fields": {"departement": "75", "stop_lat": 48.8566097563472, "code_postal": "75107", "stop_lon": 2.3208015967552327, "coord": [48.8566097563472, 2.3208015967552327], "stop_id": 3687101, "stop_desc": "110 RUE DE GRENELLE - 75107", "stop_name": "GRENELLE - BELLECHASSE"}, "geometry": {"type": "Point", "coordinates": [2.3208015967552327, 48.8566097563472]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "68892c5319f934897fae1e47006c20a7c0d46a26", "fields": {"departement": "75", "stop_lat": 48.85625089437896, "code_postal": "75107", "stop_lon": 2.326331434253565, "coord": [48.85625089437896, 2.326331434253565], "stop_id": 3687100, "stop_desc": "45 RUE DU BAC - 75107", "stop_name": "RUE DU BAC - RENE CHAR"}, "geometry": {"type": "Point", "coordinates": [2.326331434253565, 48.85625089437896]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6ca3e816873b19c9ca2e5264ffbb31a9b57714d2", "fields": {"departement": "75", "stop_lat": 48.86035859070837, "code_postal": "75101", "stop_lon": 2.34089151189953, "coord": [48.86035859070837, 2.34089151189953], "stop_id": 3687239, "stop_desc": "6 PLACE DU LOUVRE - 75101", "stop_name": "LOUVRE - RIVOLI"}, "geometry": {"type": "Point", "coordinates": [2.34089151189953, 48.86035859070837]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0d219b9f7b60fd32a5840e099c0a683d23190af1", "fields": {"departement": "75", "stop_lat": 48.86123038926119, "code_postal": "75101", "stop_lon": 2.3401424006485074, "coord": [48.86123038926119, 2.3401424006485074], "stop_id": 3687090, "stop_desc": "158 RUE DE RIVOLI - 75101", "stop_name": "LOUVRE - RIVOLI"}, "geometry": {"type": "Point", "coordinates": [2.3401424006485074, 48.86123038926119]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fd8b02c29d15ec6796084c432e8c2cbe7ec1e018", "fields": {"departement": "75", "stop_lat": 48.85281401294961, "code_postal": "75104", "stop_lon": 2.3687965324803804, "coord": [48.85281401294961, 2.3687965324803804], "stop_id": 3687123, "stop_desc": "PLACE DE LA BASTILLE - 75104", "stop_name": "BASTILLE"}, "geometry": {"type": "Point", "coordinates": [2.3687965324803804, 48.85281401294961]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2907ce6107133da087feab70fdbcb30cc1cf34b1", "fields": {"departement": "75", "stop_lat": 48.8584078136177, "code_postal": "75104", "stop_lon": 2.3488457910577933, "coord": [48.8584078136177, 2.3488457910577933], "stop_id": 3687087, "stop_desc": "90 RUE DE RIVOLI - 75104", "stop_name": "CHATELET"}, "geometry": {"type": "Point", "coordinates": [2.3488457910577933, 48.8584078136177]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a9924958ea5168e9bf5d309d2ca877bd237b621d", "fields": {"departement": "75", "stop_lat": 48.856453603892085, "code_postal": "75111", "stop_lon": 2.393941384809664, "coord": [48.856453603892085, 2.393941384809664], "stop_id": 3687298, "stop_desc": "FACE 180 RUE DE CHARONNE - 75111", "stop_name": "CHARONNE - BAGNOLET"}, "geometry": {"type": "Point", "coordinates": [2.393941384809664, 48.856453603892085]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6824e3b6554a1132721ab912d0d2add98c3d0f98", "fields": {"departement": "75", "stop_lat": 48.84638266447135, "code_postal": "75106", "stop_lon": 2.3264833034864068, "coord": [48.84638266447135, 2.3264833034864068], "stop_id": 3687416, "stop_desc": "129 RUE DE RENNES - 75106", "stop_name": "RENNES - SAINT-PLACIDE"}, "geometry": {"type": "Point", "coordinates": [2.3264833034864068, 48.84638266447135]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c9919c71cbc9b86961a7202dc9298b575471dbea", "fields": {"departement": "75", "stop_lat": 48.84914202919279, "code_postal": "75106", "stop_lon": 2.3290293232080557, "coord": [48.84914202919279, 2.3290293232080557], "stop_id": 3687418, "stop_desc": "97-99 RUE DE RENNES - 75106", "stop_name": "RENNES - D'ASSAS"}, "geometry": {"type": "Point", "coordinates": [2.3290293232080557, 48.84914202919279]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cd904d5c00de241f2d5c1b729413e45c8949aee8", "fields": {"departement": "75", "stop_lat": 48.84483663038162, "code_postal": "75106", "stop_lon": 2.3246317107880734, "coord": [48.84483663038162, 2.3246317107880734], "stop_id": 3687415, "stop_desc": "146 BIS RUE DE RENNES - 75106", "stop_name": "RENNES - LITTRE"}, "geometry": {"type": "Point", "coordinates": [2.3246317107880734, 48.84483663038162]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c26c6421297dcdc1d7a27389139a64176dd56e73", "fields": {"departement": "93", "stop_lat": 48.87626439856001, "code_postal": "93006", "stop_lon": 2.4321683125499827, "coord": [48.87626439856001, 2.4321683125499827], "stop_id": 3687293, "stop_desc": "50 RUE LOUISE MICHEL - 93006", "stop_name": "LOUISE MICHEL"}, "geometry": {"type": "Point", "coordinates": [2.4321683125499827, 48.87626439856001]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0ae680ad1d82c91b09ad5395d97d1dea0405cd6c", "fields": {"departement": "75", "stop_lat": 48.851308132416946, "code_postal": "75106", "stop_lon": 2.33101731159199, "coord": [48.851308132416946, 2.33101731159199], "stop_id": 3687420, "stop_desc": "69 RUE DE RENNES - 75106", "stop_name": "MICHEL DEBRE"}, "geometry": {"type": "Point", "coordinates": [2.33101731159199, 48.851308132416946]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "905dbf9e29ed08f4bc9f23dba2febd1f55f99461", "fields": {"departement": "93", "stop_lat": 48.87097537966868, "code_postal": "93006", "stop_lon": 2.4263276072013027, "coord": [48.87097537966868, 2.4263276072013027], "stop_id": 3687287, "stop_desc": "30 RUE DESCARTES - 93006", "stop_name": "LES MALASSIS"}, "geometry": {"type": "Point", "coordinates": [2.4263276072013027, 48.87097537966868]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e2b64b3f3fc56d002ed8910dbff88284678f4bb3", "fields": {"departement": "93", "stop_lat": 48.869016233482, "code_postal": "93006", "stop_lon": 2.4262016312842607, "coord": [48.869016233482, 2.4262016312842607], "stop_id": 3687285, "stop_desc": "2 RUE DESCARTES - 93006", "stop_name": "DESCARTES"}, "geometry": {"type": "Point", "coordinates": [2.4262016312842607, 48.869016233482]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "80a6b5e64729e0ad3173bb818347799c23d37a1d", "fields": {"departement": "93", "stop_lat": 48.87752101636343, "code_postal": "93064", "stop_lon": 2.479029095164195, "coord": [48.87752101636343, 2.479029095164195], "stop_id": 3687615, "stop_desc": "42 BIS BOULEVARD GABRIEL PERI - 93064", "stop_name": "GABRIEL PERI - DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.479029095164195, 48.87752101636343]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "abfcba2ccc802fad599a650b335c29ec747f585d", "fields": {"departement": "93", "stop_lat": 48.87686197775712, "code_postal": "93048", "stop_lon": 2.4657969867705822, "coord": [48.87686197775712, 2.4657969867705822], "stop_id": 3687605, "stop_desc": "185-193 RUE EDOUARD BRANLY - 93048", "stop_name": "SALVADOR ALLENDE"}, "geometry": {"type": "Point", "coordinates": [2.4657969867705822, 48.87686197775712]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6e37ba8e1877960cde82255073da8cd14dfeb466", "fields": {"departement": "93", "stop_lat": 48.880061015709764, "code_postal": "93053", "stop_lon": 2.4662000814018366, "coord": [48.880061015709764, 2.4662000814018366], "stop_id": 3687626, "stop_desc": "76 RUELLE DE LA BOISSIERE - 93053", "stop_name": "RUELLE BOISSIERE"}, "geometry": {"type": "Point", "coordinates": [2.4662000814018366, 48.880061015709764]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f3088f314eefd448d87ffb5202217f259eda2acd", "fields": {"departement": "93", "stop_lat": 48.881538356754014, "code_postal": "93064", "stop_lon": 2.4863712342965765, "coord": [48.881538356754014, 2.4863712342965765], "stop_id": 3687618, "stop_desc": "2 RUE PHILIBERT HOFFMANN - 93064", "stop_name": "BOIS-PERRIER SUD"}, "geometry": {"type": "Point", "coordinates": [2.4863712342965765, 48.881538356754014]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f539dfaebceb839d5fe862c76b857a0642980647", "fields": {"departement": "93", "stop_lat": 48.87736261423733, "code_postal": "93064", "stop_lon": 2.4836749841839985, "coord": [48.87736261423733, 2.4836749841839985], "stop_id": 3687616, "stop_desc": "3 BOULEVARD GABRIEL PERI - 93064", "stop_name": "VAN DERHEYDEN"}, "geometry": {"type": "Point", "coordinates": [2.4836749841839985, 48.87736261423733]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dd6460fea2368eebcfa439d364f363d919885b0f", "fields": {"departement": "93", "stop_lat": 48.873234711223226, "code_postal": "93048", "stop_lon": 2.4624091206014262, "coord": [48.873234711223226, 2.4624091206014262], "stop_id": 3687603, "stop_desc": "127 RUE EDOUARD BRANLY - 93048", "stop_name": "RUE DES ROCHES"}, "geometry": {"type": "Point", "coordinates": [2.4624091206014262, 48.873234711223226]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5a0b2719494cfe89699b54e773f51e323009bb3e", "fields": {"departement": "93", "stop_lat": 48.86714742476843, "code_postal": "93048", "stop_lon": 2.456427603199559, "coord": [48.86714742476843, 2.456427603199559], "stop_id": 3687599, "stop_desc": "151 RUE DE ROSNY - 93048", "stop_name": "EDOUARD BRANLY"}, "geometry": {"type": "Point", "coordinates": [2.456427603199559, 48.86714742476843]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fc4a3023347390a75d0b3a5062451b939b26283a", "fields": {"departement": "93", "stop_lat": 48.86833176606974, "code_postal": "93006", "stop_lon": 2.415424513890674, "coord": [48.86833176606974, 2.415424513890674], "stop_id": 3687575, "stop_desc": "20 RUE ADELAIDE LAHAYE - 93006", "stop_name": "LA POSTE"}, "geometry": {"type": "Point", "coordinates": [2.415424513890674, 48.86833176606974]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "257dcd82566852950cb88d4030e0058e3fc2cf0b", "fields": {"departement": "93", "stop_lat": 48.85870595359013, "code_postal": "93048", "stop_lon": 2.4285130814056224, "coord": [48.85870595359013, 2.4285130814056224], "stop_id": 3687585, "stop_desc": "FACE 105 BOULEVARD CHANZY - 93048", "stop_name": "SORINS"}, "geometry": {"type": "Point", "coordinates": [2.4285130814056224, 48.85870595359013]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "15596aa43f97586d869f2c39905ae0984843f7c2", "fields": {"departement": "93", "stop_lat": 48.86443716904679, "code_postal": "93048", "stop_lon": 2.4524300774929575, "coord": [48.86443716904679, 2.4524300774929575], "stop_id": 3687597, "stop_desc": "121 RUE DE ROSNY - 93048", "stop_name": "DANTON"}, "geometry": {"type": "Point", "coordinates": [2.4524300774929575, 48.86443716904679]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7ae29eb3da805727425b445e9d9a69b3c8cc2190", "fields": {"departement": "75", "stop_lat": 48.86332989358739, "code_postal": "75103", "stop_lon": 2.3664599674927325, "coord": [48.86332989358739, 2.3664599674927325], "stop_id": 3687467, "stop_desc": "7 BOULEVARD DU TEMPLE - 75103", "stop_name": "OBERKAMPF - FILLES DU CALVAIRE"}, "geometry": {"type": "Point", "coordinates": [2.3664599674927325, 48.86332989358739]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b2d058375ebccc68bbaab13d20d7651f0b010f9d", "fields": {"departement": "75", "stop_lat": 48.87071417545462, "code_postal": "75120", "stop_lon": 2.39879342935876, "coord": [48.87071417545462, 2.39879342935876], "stop_id": 3687453, "stop_desc": "FACE 164 RUE DE MENILMONTANT - 75120", "stop_name": "MENILMONTANT - PELLEPORT"}, "geometry": {"type": "Point", "coordinates": [2.39879342935876, 48.87071417545462]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b8e3db584e3aba2b55933824bbc01d1c46c56957", "fields": {"departement": "75", "stop_lat": 48.870113854298275, "code_postal": "75120", "stop_lon": 2.395141577479887, "coord": [48.870113854298275, 2.395141577479887], "stop_id": 3687451, "stop_desc": "129 RUE DE MENILMONTANT - 75120", "stop_name": "PYRENEES - MENILMONTANT"}, "geometry": {"type": "Point", "coordinates": [2.395141577479887, 48.870113854298275]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "44c428b3b8c18b9166f3083b41ef8eafd4dead79", "fields": {"departement": "75", "stop_lat": 48.855845636088695, "code_postal": "75104", "stop_lon": 2.355015034282583, "coord": [48.855845636088695, 2.355015034282583], "stop_id": 3687431, "stop_desc": "12 R FRANCOIS MIRON - 75104", "stop_name": "EGLISE SAINT-GERVAIS"}, "geometry": {"type": "Point", "coordinates": [2.355015034282583, 48.855845636088695]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9f9cd49e258b435311a123217b2e55c652ee0d5b", "fields": {"departement": "75", "stop_lat": 48.856643730122705, "code_postal": "75103", "stop_lon": 2.36448128586292, "coord": [48.856643730122705, 2.36448128586292], "stop_id": 3687435, "stop_desc": "26-28 RUE DE TURENNE - 75103", "stop_name": "PLACE DES VOSGES"}, "geometry": {"type": "Point", "coordinates": [2.36448128586292, 48.856643730122705]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "644aa9e96a68ad78e4c6e5b2203fdb8eaab5f2fa", "fields": {"departement": "75", "stop_lat": 48.85685946262876, "code_postal": "75103", "stop_lon": 2.3643315772561415, "coord": [48.85685946262876, 2.3643315772561415], "stop_id": 3687436, "stop_desc": "33 RUE DE TURENNE - 75103", "stop_name": "PLACE DES VOSGES"}, "geometry": {"type": "Point", "coordinates": [2.3643315772561415, 48.85685946262876]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "27350194327d0ecefeea521f278eaea7fea60b6e", "fields": {"departement": "75", "stop_lat": 48.86226074294167, "code_postal": "75103", "stop_lon": 2.3650018554076033, "coord": [48.86226074294167, 2.3650018554076033], "stop_id": 3687440, "stop_desc": "3 RUE DES FILLES DU CALVAIRE - 75103", "stop_name": "BRETAGNE"}, "geometry": {"type": "Point", "coordinates": [2.3650018554076033, 48.86226074294167]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f80384f7bec172494f10b78d963cc33d7a01aba7", "fields": {"departement": "75", "stop_lat": 48.85289907507759, "code_postal": "75106", "stop_lon": 2.336560105706197, "coord": [48.85289907507759, 2.336560105706197], "stop_id": 3687423, "stop_desc": "125 BOULEVARD SAINT-GERMAIN - 75106", "stop_name": "SEINE - BUCI"}, "geometry": {"type": "Point", "coordinates": [2.336560105706197, 48.85289907507759]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cea550e9df20ab2a6b591f0e153c9948677875d7", "fields": {"departement": "92", "stop_lat": 48.90259408337223, "code_postal": "92024", "stop_lon": 2.3039921380474033, "coord": [48.90259408337223, 2.3039921380474033], "stop_id": 4016088, "stop_desc": "89 BOULEVARD JEAN JAURES - 92024", "stop_name": "MAIRIE DE CLICHY-METRO"}, "geometry": {"type": "Point", "coordinates": [2.3039921380474033, 48.90259408337223]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3463cd3f4da2a6e2f41204339b319f473b71b9ae", "fields": {"departement": "92", "stop_lat": 48.905121060238216, "code_postal": "92024", "stop_lon": 2.310357059527946, "coord": [48.905121060238216, 2.310357059527946], "stop_id": 4016092, "stop_desc": "71 BIS BOULEVARD DU GENERAL LECLERC - 92024", "stop_name": "GENERAL LECLERC - VILLENEUVE-HOPITAL BEAUJON"}, "geometry": {"type": "Point", "coordinates": [2.310357059527946, 48.905121060238216]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a7c9fd8a47a36c17259409dd9eb0f8bd013d26fa", "fields": {"departement": "92", "stop_lat": 48.900383733945446, "code_postal": "92024", "stop_lon": 2.305752034473139, "coord": [48.900383733945446, 2.305752034473139], "stop_id": 4016094, "stop_desc": "53 BOULEVARD JEAN JAURES - 92024", "stop_name": "HENRI BARBUSSE - JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.305752034473139, 48.900383733945446]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d0ed34223107bb090a376df67d5d7e9fa9b836ab", "fields": {"departement": "92", "stop_lat": 48.90992896434792, "code_postal": "92024", "stop_lon": 2.3096046868542586, "coord": [48.90992896434792, 2.3096046868542586], "stop_id": 4016105, "stop_desc": "19 AVENUE CLAUDE DEBUSSY - 92024", "stop_name": "CLAUDE DEBUSSY"}, "geometry": {"type": "Point", "coordinates": [2.3096046868542586, 48.90992896434792]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a9ad0e24e1900e3254b9f119ab57f0763e0be7f8", "fields": {"departement": "92", "stop_lat": 48.90889483249582, "code_postal": "92024", "stop_lon": 2.3070420751740435, "coord": [48.90889483249582, 2.3070420751740435], "stop_id": 4016106, "stop_desc": "1 PLACE JULES VERNE - 92024", "stop_name": "HOPITAL BEAUJON"}, "geometry": {"type": "Point", "coordinates": [2.3070420751740435, 48.90889483249582]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "754f36f671b11220b2d48c9d751cb44d9bdf2160", "fields": {"departement": "92", "stop_lat": 48.90479539967374, "code_postal": "92024", "stop_lon": 2.302177566473815, "coord": [48.90479539967374, 2.302177566473815], "stop_id": 4016110, "stop_desc": "FACE 104 BOULEVARD JEAN JAURES - 92024", "stop_name": "DANIELLE CASANOVA"}, "geometry": {"type": "Point", "coordinates": [2.302177566473815, 48.90479539967374]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fec33b5269c223474ea051fad6916f0d7ddad61b", "fields": {"departement": "92", "stop_lat": 48.9030350855107, "code_postal": "92024", "stop_lon": 2.3063502440896, "coord": [48.9030350855107, 2.3063502440896], "stop_id": 4016112, "stop_desc": "90 RUE MARTRE - 92024", "stop_name": "RUE MARTRE - MAIRIE DE CLICHY."}, "geometry": {"type": "Point", "coordinates": [2.3063502440896, 48.9030350855107]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c5d69af47c29b8fb8b147c4bab707f11ea3723c2", "fields": {"departement": "92", "stop_lat": 48.90281670085778, "code_postal": "92024", "stop_lon": 2.297284928151246, "coord": [48.90281670085778, 2.297284928151246], "stop_id": 4016116, "stop_desc": "RUE VALITON - 92024", "stop_name": "PISCINE"}, "geometry": {"type": "Point", "coordinates": [2.297284928151246, 48.90281670085778]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "651c12122e732e34e2124be3c299be44e9c51444", "fields": {"departement": "92", "stop_lat": 48.901846740842636, "code_postal": "92024", "stop_lon": 2.2992623155967955, "coord": [48.901846740842636, 2.2992623155967955], "stop_id": 4016117, "stop_desc": "11 RUE FERDINAND BUISSON - 92024", "stop_name": "PASTEUR"}, "geometry": {"type": "Point", "coordinates": [2.2992623155967955, 48.901846740842636]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "92c245e9adfe66ab113c2b3f034e498b4d308690", "fields": {"departement": "92", "stop_lat": 48.898756310466794, "code_postal": "92024", "stop_lon": 2.303013156292897, "coord": [48.898756310466794, 2.303013156292897], "stop_id": 4016122, "stop_desc": "27 RUE HENRI BARBUSSE - 92024", "stop_name": "CASTERES."}, "geometry": {"type": "Point", "coordinates": [2.303013156292897, 48.898756310466794]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fae244beee7ba46878464362b07c074471473c88", "fields": {"departement": "92", "stop_lat": 48.903146582104675, "code_postal": "92024", "stop_lon": 2.2900595348789694, "coord": [48.903146582104675, 2.2900595348789694], "stop_id": 4016127, "stop_desc": "34 ROUTE D'ASNIERES - 92024", "stop_name": "QUAI DE CLICHY"}, "geometry": {"type": "Point", "coordinates": [2.2900595348789694, 48.903146582104675]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a3153ca80f039f68010499abfe03c0664f96c2c2", "fields": {"departement": "75", "stop_lat": 48.861203399239315, "code_postal": "75101", "stop_lon": 2.3411231334321685, "coord": [48.861203399239315, 2.3411231334321685], "stop_id": 4016269, "stop_desc": "16 RUE DU LOUVRE - 75101", "stop_name": "LOUVRE - RIVOLI"}, "geometry": {"type": "Point", "coordinates": [2.3411231334321685, 48.861203399239315]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b5dc1080b2b334c94fcf96375449edd595b8c366", "fields": {"departement": "75", "stop_lat": 48.86565205893974, "code_postal": "75102", "stop_lon": 2.3433847968096146, "coord": [48.86565205893974, 2.3433847968096146], "stop_id": 4016273, "stop_desc": "54 RUE DU LOUVRE - 75102", "stop_name": "LOUVRE - ETIENNE MARCEL"}, "geometry": {"type": "Point", "coordinates": [2.3433847968096146, 48.86565205893974]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3cac12bd5c22f24f212f5677a19e75e7b3ab727e", "fields": {"departement": "75", "stop_lat": 48.878692816406044, "code_postal": "75109", "stop_lon": 2.3370366675298446, "coord": [48.878692816406044, 2.3370366675298446], "stop_id": 4016281, "stop_desc": "FACE 32 RUE NOTRE DAME DE LORETTE - 75109", "stop_name": "SAINT-GEORGES"}, "geometry": {"type": "Point", "coordinates": [2.3370366675298446, 48.878692816406044]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4165b5e21f305b309f781da85868364c6c506018", "fields": {"departement": "75", "stop_lat": 48.88075986391883, "code_postal": "75109", "stop_lon": 2.334897306526773, "coord": [48.88075986391883, 2.334897306526773], "stop_id": 4016282, "stop_desc": "6-8 RUE FONTAINE - 75109", "stop_name": "PIGALLE - CHAPTAL"}, "geometry": {"type": "Point", "coordinates": [2.334897306526773, 48.88075986391883]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "39162a8826ddfedd261c692b106b502abc9c661f", "fields": {"departement": "75", "stop_lat": 48.8832313018345, "code_postal": "75109", "stop_lon": 2.3329348921041246, "coord": [48.8832313018345, 2.3329348921041246], "stop_id": 4016283, "stop_desc": "52 RUE DE LA FONTAINE - 75109", "stop_name": "BLANCHE"}, "geometry": {"type": "Point", "coordinates": [2.3329348921041246, 48.8832313018345]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f53b48d96b13d4262d15fa382a1a88d98886e9dd", "fields": {"departement": "75", "stop_lat": 48.885324939226564, "code_postal": "75118", "stop_lon": 2.3267205100468256, "coord": [48.885324939226564, 2.3267205100468256], "stop_id": 4016286, "stop_desc": "26-28 AVENUE DE CLICHY - 75118", "stop_name": "GANNERON"}, "geometry": {"type": "Point", "coordinates": [2.3267205100468256, 48.885324939226564]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "790d962dfa52ccf11b3acff70a047d1770e18145", "fields": {"departement": "75", "stop_lat": 48.891587948844105, "code_postal": "75117", "stop_lon": 2.3181327811948154, "coord": [48.891587948844105, 2.3181327811948154], "stop_id": 4016293, "stop_desc": "141 AVENUE DE CLICHY - 75117", "stop_name": "BROCHANT - CARDINET"}, "geometry": {"type": "Point", "coordinates": [2.3181327811948154, 48.891587948844105]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cc7ee04f49bf2d153f5abafe9c00eb365ceae4b4", "fields": {"departement": "92", "stop_lat": 48.89751806839845, "code_postal": "92024", "stop_lon": 2.310797193032208, "coord": [48.89751806839845, 2.310797193032208], "stop_id": 4016298, "stop_desc": "14-16 BOULEVARD VICTOR HUGO - 92024", "stop_name": "VICTOR HUGO - JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.310797193032208, 48.89751806839845]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d4cd81c03ae097eaf69012bab8d07f016ef8367c", "fields": {"departement": "92", "stop_lat": 48.901203740197225, "code_postal": "92024", "stop_lon": 2.3155119226470733, "coord": [48.901203740197225, 2.3155119226470733], "stop_id": 4016302, "stop_desc": "34 BOULEVARD DU GENERAL LECLERC - 92024", "stop_name": "GENERAL LECLERC - VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.3155119226470733, 48.901203740197225]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "14b9b6c4efb16cb8c53be16cd936a5e2b459daf5", "fields": {"departement": "92", "stop_lat": 48.90070046224565, "code_postal": "92024", "stop_lon": 2.3155121338101297, "coord": [48.90070046224565, 2.3155121338101297], "stop_id": 4016303, "stop_desc": "93 BOULEVARD VICTOR HUGO - 92024", "stop_name": "GENERAL LECLERC - VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.3155121338101297, 48.90070046224565]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e2f42e17c62db91430849f25feb560492eff0dd3", "fields": {"departement": "92", "stop_lat": 48.90252446696059, "code_postal": "92024", "stop_lon": 2.3135347035115874, "coord": [48.90252446696059, 2.3135347035115874], "stop_id": 4016305, "stop_desc": "53 BOULEVARD DU GENERAL LECLERC - 92024", "stop_name": "REPUBLIQUE - FRANCOIS MITTERRAND"}, "geometry": {"type": "Point", "coordinates": [2.3135347035115874, 48.90252446696059]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eae003e77df039b2e67518112f19e2171bceaa00", "fields": {"departement": "92", "stop_lat": 48.908858980420824, "code_postal": "92024", "stop_lon": 2.307423843582273, "coord": [48.908858980420824, 2.307423843582273], "stop_id": 4016308, "stop_desc": "114 BOULEVARD DU GENERAL LECLERC - 92024", "stop_name": "HOPITAL BEAUJON"}, "geometry": {"type": "Point", "coordinates": [2.307423843582273, 48.908858980420824]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "defca8b20a2da3acea6cad5124a8fded4457e94c", "fields": {"departement": "92", "stop_lat": 48.90826586918908, "code_postal": "92024", "stop_lon": 2.307560521898799, "coord": [48.90826586918908, 2.307560521898799], "stop_id": 4016309, "stop_desc": "BOULEVARD DU GENERAL LECLERC - 92024", "stop_name": "HOPITAL BEAUJON"}, "geometry": {"type": "Point", "coordinates": [2.307560521898799, 48.90826586918908]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "193588bbdc9ec1f3bf7295bf5c7a3aa78e5c4a0e", "fields": {"departement": "75", "stop_lat": 48.874576588810406, "code_postal": "75109", "stop_lon": 2.340729011773776, "coord": [48.874576588810406, 2.340729011773776], "stop_id": 4016318, "stop_desc": "21-23 RUE DROUOT - 75109", "stop_name": "PROVENCE - DROUOT"}, "geometry": {"type": "Point", "coordinates": [2.340729011773776, 48.874576588810406]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5b6c316a72b01051f602c6fcd58e1f4b1096d6ae", "fields": {"departement": "75", "stop_lat": 48.87222193151079, "code_postal": "75109", "stop_lon": 2.3400476437111686, "coord": [48.87222193151079, 2.3400476437111686], "stop_id": 4016319, "stop_desc": "1 RUE DROUOT - 75109", "stop_name": "RICHELIEU - DROUOT - MAIRIE DU 9E"}, "geometry": {"type": "Point", "coordinates": [2.3400476437111686, 48.87222193151079]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a4eb618bbf67787224265c302a5730809fab2374", "fields": {"departement": "75", "stop_lat": 48.87009195431089, "code_postal": "75102", "stop_lon": 2.339053002863979, "coord": [48.87009195431089, 2.339053002863979], "stop_id": 4016320, "stop_desc": "87 RUE DE RICHELIEU - 75102", "stop_name": "RICHELIEU - 4 SEPTEMBRE"}, "geometry": {"type": "Point", "coordinates": [2.339053002863979, 48.87009195431089]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f76cc9c32aa5e902e1b97a718f4d05bb244d38ab", "fields": {"departement": "75", "stop_lat": 48.8686000083944, "code_postal": "75102", "stop_lon": 2.341069192464145, "coord": [48.8686000083944, 2.341069192464145], "stop_id": 4016321, "stop_desc": "11 PLACE DE LA BOURSE - 75102", "stop_name": "BOURSE"}, "geometry": {"type": "Point", "coordinates": [2.341069192464145, 48.8686000083944]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9ce88fc03050730942bd32a9d26b31b8999f6968", "fields": {"departement": "75", "stop_lat": 48.858057701289326, "code_postal": "75101", "stop_lon": 2.343560965223396, "coord": [48.858057701289326, 2.343560965223396], "stop_id": 4016323, "stop_desc": "FACE 22 QUAI DE LA MEGISSERIE - 75101", "stop_name": "PONT NEUF - QUAI DU LOUVRE"}, "geometry": {"type": "Point", "coordinates": [2.343560965223396, 48.858057701289326]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bd7215dd5af3fa33f5cb3f4295a67e2592329266", "fields": {"departement": "75", "stop_lat": 48.857014888715405, "code_postal": "75104", "stop_lon": 2.347469838537296, "coord": [48.857014888715405, 2.347469838537296], "stop_id": 4016324, "stop_desc": "FACE 16 QUAI DE GESVRES - 75104", "stop_name": "CHATELET"}, "geometry": {"type": "Point", "coordinates": [2.347469838537296, 48.857014888715405]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3fa0cf7d6407cc692be6df6ce56a0d9ec8bf559b", "fields": {"departement": "75", "stop_lat": 48.85809338564947, "code_postal": "75101", "stop_lon": 2.347401948532272, "coord": [48.85809338564947, 2.347401948532272], "stop_id": 4016325, "stop_desc": "2 RUE SAINT DENIS - 75101", "stop_name": "CHATELET"}, "geometry": {"type": "Point", "coordinates": [2.347401948532272, 48.85809338564947]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "48455f8b67e9c9cb4d6cf0836879bc482737b85b", "fields": {"departement": "75", "stop_lat": 48.861131521308295, "code_postal": "75101", "stop_lon": 2.3404011996628897, "coord": [48.861131521308295, 2.3404011996628897], "stop_id": 4016328, "stop_desc": "156 RUE DE RIVOLI - 75101", "stop_name": "LOUVRE - RIVOLI"}, "geometry": {"type": "Point", "coordinates": [2.3404011996628897, 48.861131521308295]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e0d625d851a4f8c4b496bf7018a67868db085869", "fields": {"departement": "75", "stop_lat": 48.86042151469406, "code_postal": "75101", "stop_lon": 2.340469262084462, "coord": [48.86042151469406, 2.340469262084462], "stop_id": 4016329, "stop_desc": "FACE 6 AVENUE DE L'AMIRAL COLIGNY - 75101", "stop_name": "LOUVRE - RIVOLI"}, "geometry": {"type": "Point", "coordinates": [2.340469262084462, 48.86042151469406]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1fd03545f4a9d4b1a08938f39768bd74daa45a90", "fields": {"departement": "75", "stop_lat": 48.866991279826735, "code_postal": "75101", "stop_lon": 2.333671877417782, "coord": [48.866991279826735, 2.333671877417782], "stop_id": 4016332, "stop_desc": "25 - 27 AVENUE DE L'OPERA - 75101", "stop_name": "PYRAMIDES"}, "geometry": {"type": "Point", "coordinates": [2.333671877417782, 48.866991279826735]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8186bee36af1e2761c3940c4d6fb530a908a08bd", "fields": {"departement": "75", "stop_lat": 48.86960655910574, "code_postal": "75102", "stop_lon": 2.332554568380394, "coord": [48.86960655910574, 2.332554568380394], "stop_id": 4016335, "stop_desc": "49 AVENUE DE L'OPERA - 75102", "stop_name": "OPERA - 4 SEPTEMBRE"}, "geometry": {"type": "Point", "coordinates": [2.332554568380394, 48.86960655910574]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6a1891cce28ce102955ec8e5cb8b6656a95775a3", "fields": {"departement": "75", "stop_lat": 48.892757417621844, "code_postal": "75118", "stop_lon": 2.3275231460732115, "coord": [48.892757417621844, 2.3275231460732115], "stop_id": 4016345, "stop_desc": "86 AVENUE DE SAINT OUEN - 75118", "stop_name": "GUY MOQUET"}, "geometry": {"type": "Point", "coordinates": [2.3275231460732115, 48.892757417621844]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "039480e5ed7dd1b1af25547346076cfe850fffe6", "fields": {"departement": "75", "stop_lat": 48.8733809275033, "code_postal": "75109", "stop_lon": 2.3274859090230406, "coord": [48.8733809275033, 2.3274859090230406], "stop_id": 4016360, "stop_desc": "19 RUE AUBER - 75109", "stop_name": "HAVRE - HAUSSMANN"}, "geometry": {"type": "Point", "coordinates": [2.3274859090230406, 48.8733809275033]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "509fb0a84159eaf35d7c98039fcb939082a7e696", "fields": {"departement": "75", "stop_lat": 48.89861724350297, "code_postal": "75118", "stop_lon": 2.3439884675294684, "coord": [48.89861724350297, 2.3439884675294684], "stop_id": 4016537, "stop_desc": "13 AVENUE DE LA PORTE DE CLIGNANCOURT - 75118", "stop_name": "PORTE DE CLIGNANCOURT"}, "geometry": {"type": "Point", "coordinates": [2.3439884675294684, 48.89861724350297]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c2f3788dc0db60d384e8ae3896e56ae4e0af1ba8", "fields": {"departement": "93", "stop_lat": 48.902922217984674, "code_postal": "93070", "stop_lon": 2.3341465235619183, "coord": [48.902922217984674, 2.3341465235619183], "stop_id": 4016544, "stop_desc": "37 RUE CHARLES SCHMIDT - 93070", "stop_name": "KLEBER"}, "geometry": {"type": "Point", "coordinates": [2.3341465235619183, 48.902922217984674]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f52ce5a01e223be378a8546b22f48d7d74347bed", "fields": {"departement": "93", "stop_lat": 48.91486592620741, "code_postal": "93070", "stop_lon": 2.331936869246496, "coord": [48.91486592620741, 2.331936869246496], "stop_id": 4016552, "stop_desc": "51 RUE ALBERT DHALENNE - 93070", "stop_name": "SOUBISE"}, "geometry": {"type": "Point", "coordinates": [2.331936869246496, 48.91486592620741]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1d42028004d0b36d902649f7ec631eb656cd007a", "fields": {"departement": "92", "stop_lat": 48.92356443509411, "code_postal": "92036", "stop_lon": 2.3218304336369053, "coord": [48.92356443509411, 2.3218304336369053], "stop_id": 4016560, "stop_desc": "FACE 3 BOULEVARD GALLIENI - 92036", "stop_name": "QUATRE CHEMINS"}, "geometry": {"type": "Point", "coordinates": [2.3218304336369053, 48.92356443509411]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aeb11e2df62e8d13548f84dad9de93b79ad4fd7c", "fields": {"departement": "92", "stop_lat": 48.930152731411006, "code_postal": "92078", "stop_lon": 2.3321671703219526, "coord": [48.930152731411006, 2.3321671703219526], "stop_id": 4016565, "stop_desc": "142 BOULEVARD GALLIENI - 92078", "stop_name": "MAURICE RAVEL"}, "geometry": {"type": "Point", "coordinates": [2.3321671703219526, 48.930152731411006]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6ecb540c950d7b4dadb092ee4525484eefc428f6", "fields": {"departement": "92", "stop_lat": 48.93486188393629, "code_postal": "92078", "stop_lon": 2.332985148802232, "coord": [48.93486188393629, 2.332985148802232], "stop_id": 4016569, "stop_desc": "212 BOULEVARD GALLIENI - 92078", "stop_name": "MAIRIE DE VILLENEUVE-LA-GARENNE-GALLIENI"}, "geometry": {"type": "Point", "coordinates": [2.332985148802232, 48.93486188393629]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3bd1419f48a3e38cbf706c7041210ab8eeb4b8e0", "fields": {"departement": "92", "stop_lat": 48.940442363100104, "code_postal": "92078", "stop_lon": 2.3272413415122877, "coord": [48.940442363100104, 2.3272413415122877], "stop_id": 4016578, "stop_desc": "FACE 1 AVENUE GEORGES POMPIDOU - 92078", "stop_name": "PLACE PAUL HERBE"}, "geometry": {"type": "Point", "coordinates": [2.3272413415122877, 48.940442363100104]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e72a9a2467a9bb6ff66d8f6e5fdaebe1cb3a069c", "fields": {"departement": "93", "stop_lat": 48.91339215983966, "code_postal": "93070", "stop_lon": 2.3353321433301537, "coord": [48.91339215983966, 2.3353321433301537], "stop_id": 4016598, "stop_desc": "64-66 BOULEVARD JEAN JAURES - 93070", "stop_name": "JAURES - DHALENNE"}, "geometry": {"type": "Point", "coordinates": [2.3353321433301537, 48.91339215983966]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7d6c0dc4b9bffb21e90451a0a0b6d39cbf8b613d", "fields": {"departement": "93", "stop_lat": 48.91648367925108, "code_postal": "93070", "stop_lon": 2.334813866531514, "coord": [48.91648367925108, 2.334813866531514], "stop_id": 4016600, "stop_desc": "21 RUE DU LANDY - 93070", "stop_name": "CLINIQUE DU LANDY"}, "geometry": {"type": "Point", "coordinates": [2.334813866531514, 48.91648367925108]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bd2d4c35b99a191b340d4691663d869a711fac96", "fields": {"departement": "93", "stop_lat": 48.91825406282191, "code_postal": "93070", "stop_lon": 2.3329592448178054, "coord": [48.91825406282191, 2.3329592448178054], "stop_id": 4016602, "stop_desc": "52 RUE SAINT-DENIS - 93070", "stop_name": "SAINT-DENIS ROUSSEAU"}, "geometry": {"type": "Point", "coordinates": [2.3329592448178054, 48.91825406282191]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "49f9cc8bb81be795eec272d1970e9a9522051654", "fields": {"departement": "93", "stop_lat": 48.91505477172237, "code_postal": "93070", "stop_lon": 2.3373774020111786, "coord": [48.91505477172237, 2.3373774020111786], "stop_id": 4016605, "stop_desc": "8 BIS BOULEVARD JEAN JAURES - 93070", "stop_name": "LANDY - JAURES"}, "geometry": {"type": "Point", "coordinates": [2.3373774020111786, 48.91505477172237]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "13e7edb707ed29bc359551bba86218d58fdbfb87", "fields": {"departement": "93", "stop_lat": 48.91505477172237, "code_postal": "93070", "stop_lon": 2.3373774020111786, "coord": [48.91505477172237, 2.3373774020111786], "stop_id": 4016606, "stop_desc": "8 BIS BOULEVARD JEAN JAURES - 93070", "stop_name": "LANDY - JAURES"}, "geometry": {"type": "Point", "coordinates": [2.3373774020111786, 48.91505477172237]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "11d035670aa175dc4c051ffe7d07ffad59833d1a", "fields": {"departement": "93", "stop_lat": 48.91348203168526, "code_postal": "93070", "stop_lon": 2.335441220437127, "coord": [48.91348203168526, 2.335441220437127], "stop_id": 4016607, "stop_desc": "64-66 BOULEVARD JEAN JAURES - 93070", "stop_name": "JAURES - DHALENNE."}, "geometry": {"type": "Point", "coordinates": [2.335441220437127, 48.91348203168526]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d406d0232ba9ada0433f8e7c07407df9a29f0da9", "fields": {"departement": "93", "stop_lat": 48.906274297752944, "code_postal": "93070", "stop_lon": 2.331446957200542, "coord": [48.906274297752944, 2.331446957200542], "stop_id": 4016616, "stop_desc": "5-7 RUE FARCOT - 93070", "stop_name": "FARCOT"}, "geometry": {"type": "Point", "coordinates": [2.331446957200542, 48.906274297752944]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5c8c207a0407eb7da88212283897b45bc2ecdc33", "fields": {"departement": "93", "stop_lat": 48.91168460128968, "code_postal": "93070", "stop_lon": 2.334159632613418, "coord": [48.91168460128968, 2.334159632613418], "stop_id": 4016617, "stop_desc": "BOULEVARD VICTOR HUGO - 93070", "stop_name": "MAIRIE DE SAINT-OUEN - METRO"}, "geometry": {"type": "Point", "coordinates": [2.334159632613418, 48.91168460128968]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "98a941f8eab7ffe949510b2beea0f5c4bade1fd8", "fields": {"departement": "93", "stop_lat": 48.901816355456795, "code_postal": "93070", "stop_lon": 2.3480648469872256, "coord": [48.901816355456795, 2.3480648469872256], "stop_id": 4016618, "stop_desc": "FACE 16 RUE DES POISSONNIERS - 93070", "stop_name": "BOURDARIAS"}, "geometry": {"type": "Point", "coordinates": [2.3480648469872256, 48.901816355456795]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b7633e830efff3e372355af68266c352577d3d76", "fields": {"departement": "92", "stop_lat": 48.92181227159626, "code_postal": "92036", "stop_lon": 2.3242720228007543, "coord": [48.92181227159626, 2.3242720228007543], "stop_id": 4016709, "stop_desc": "FACE 13 AVENUE LOUIS ROCHE - 92036", "stop_name": "QUAI DES GRESILLONS"}, "geometry": {"type": "Point", "coordinates": [2.3242720228007543, 48.92181227159626]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "45f879e63bba9b7480949994290a86d7578bff62", "fields": {"departement": "92", "stop_lat": 48.92541503934069, "code_postal": "92036", "stop_lon": 2.3171110664110377, "coord": [48.92541503934069, 2.3171110664110377], "stop_id": 4016714, "stop_desc": "79 AVENUE LOUIS ROCHE - 92036", "stop_name": "RUE DES NOELS"}, "geometry": {"type": "Point", "coordinates": [2.3171110664110377, 48.92541503934069]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "039849fc656050934017742ff63108a641672ebc", "fields": {"departement": "92", "stop_lat": 48.933331743045414, "code_postal": "92036", "stop_lon": 2.313070463514173, "coord": [48.933331743045414, 2.313070463514173], "stop_id": 4016722, "stop_desc": "RUE THOMAS EDISON - 92036", "stop_name": "PARC DES CHANTERAINES"}, "geometry": {"type": "Point", "coordinates": [2.313070463514173, 48.933331743045414]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bf058e267af052e26352426670509ff226ad881f", "fields": {"departement": "92", "stop_lat": 48.933555153246445, "code_postal": "92036", "stop_lon": 2.3074914596392895, "coord": [48.933555153246445, 2.3074914596392895], "stop_id": 4016723, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 92036", "stop_name": "GENNEVILLIERS RER"}, "geometry": {"type": "Point", "coordinates": [2.3074914596392895, 48.933555153246445]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f4693c9f5229843b94cf228281fa74e29530f7fd", "fields": {"departement": "92", "stop_lat": 48.933114711338796, "code_postal": "92036", "stop_lon": 2.30715070714464, "coord": [48.933114711338796, 2.30715070714464], "stop_id": 4016724, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 92036", "stop_name": "GENNEVILLIERS RER"}, "geometry": {"type": "Point", "coordinates": [2.30715070714464, 48.933114711338796]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "22e71dffdea6f4b0e3b82e4184405275e425d395", "fields": {"departement": "92", "stop_lat": 48.93299675581422, "code_postal": "92036", "stop_lon": 2.3029768762207876, "coord": [48.93299675581422, 2.3029768762207876], "stop_id": 4016726, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 92036", "stop_name": "ROND-POINT PIERRE TIMBAUD"}, "geometry": {"type": "Point", "coordinates": [2.3029768762207876, 48.93299675581422]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "58168954cc475c15af41c40ff4d13983a54be6e9", "fields": {"departement": "92", "stop_lat": 48.936825497481216, "code_postal": "92036", "stop_lon": 2.3041884087956293, "coord": [48.936825497481216, 2.3041884087956293], "stop_id": 4016727, "stop_desc": "AVENUE MARCEL PAUL - 92036", "stop_name": "LES BARBANNIERS"}, "geometry": {"type": "Point", "coordinates": [2.3041884087956293, 48.936825497481216]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5aac9273f48e3c163307f177e106ecde8b480f4a", "fields": {"departement": "92", "stop_lat": 48.939881018424195, "code_postal": "92036", "stop_lon": 2.304186457509024, "coord": [48.939881018424195, 2.304186457509024], "stop_id": 4016729, "stop_desc": "AVENUE MARCEL PAUL - 92036", "stop_name": "ROUTE DU PORT"}, "geometry": {"type": "Point", "coordinates": [2.304186457509024, 48.939881018424195]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0dde38bd542ae1ff1f5fb2fa56d9fc86cf667559", "fields": {"departement": "92", "stop_lat": 48.943170467305066, "code_postal": "92036", "stop_lon": 2.305207572175555, "coord": [48.943170467305066, 2.305207572175555], "stop_id": 4016731, "stop_desc": "AVENUE DES LOUVRESSES - 92036", "stop_name": "ORMETEAU"}, "geometry": {"type": "Point", "coordinates": [2.305207572175555, 48.943170467305066]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0ab0f85fc7e3901fe2f713ea142c2f454c9bf434", "fields": {"departement": "92", "stop_lat": 48.9406818689008, "code_postal": "92036", "stop_lon": 2.30811490509085, "coord": [48.9406818689008, 2.30811490509085], "stop_id": 4016734, "stop_desc": "AVENUE DES LOUVRESSES - 92036", "stop_name": "ZAC DES LOUVRESSES"}, "geometry": {"type": "Point", "coordinates": [2.30811490509085, 48.9406818689008]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "37d903f84c6a13a43f0d038d0d372fe537a59eed", "fields": {"departement": "92", "stop_lat": 48.891908978937664, "code_postal": "92062", "stop_lon": 2.2396137831512752, "coord": [48.891908978937664, 2.2396137831512752], "stop_id": 4016736, "stop_desc": "0 PISTE GARE ROUTIERE - 92062", "stop_name": "LA DEFENSE-METRO-RER-TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.2396137831512752, 48.891908978937664]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "84047ec2a412645ec91041db07a4e5335efe75a4", "fields": {"departement": "92", "stop_lat": 48.88527398449147, "code_postal": "92051", "stop_lon": 2.260899032348932, "coord": [48.88527398449147, 2.260899032348932], "stop_id": 4016744, "stop_desc": "2-4 RUE DU CHATEAU - 92051", "stop_name": "PONT DE NEUILLY"}, "geometry": {"type": "Point", "coordinates": [2.260899032348932, 48.88527398449147]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "66807da335b67c512c252c17144a0716897e1d00", "fields": {"departement": "92", "stop_lat": 48.884523379198406, "code_postal": "92051", "stop_lon": 2.2679727810671557, "coord": [48.884523379198406, 2.2679727810671557], "stop_id": 4016748, "stop_desc": "137-145 AVENUE ACHILLE PERETTI OU DU ROULE - 92051", "stop_name": "SAINTE-FOY"}, "geometry": {"type": "Point", "coordinates": [2.2679727810671557, 48.884523379198406]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e62a452f1751606ed8a62de66b63fcbeb13baffe", "fields": {"departement": "92", "stop_lat": 48.88381571699573, "code_postal": "92051", "stop_lon": 2.272102785565041, "coord": [48.88381571699573, 2.272102785565041], "stop_id": 4016751, "stop_desc": "FACE 103 AVENUE ACHILLE PERETTI OU DU ROULE - 92051", "stop_name": "EGLISE SAINT-PIERRE"}, "geometry": {"type": "Point", "coordinates": [2.272102785565041, 48.88381571699573]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "895fc1bade3b9fd6a5edc5b660ee4f2963b2e522", "fields": {"departement": "92", "stop_lat": 48.88786169288859, "code_postal": "92051", "stop_lon": 2.2753412399840824, "coord": [48.88786169288859, 2.2753412399840824], "stop_id": 4016755, "stop_desc": "54 BOULEVARD INKERMANN - 92051", "stop_name": "INKERMANN - BINEAU"}, "geometry": {"type": "Point", "coordinates": [2.2753412399840824, 48.88786169288859]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c25408fabb5cfb6d306e611cb5a86386d7dbd4b2", "fields": {"departement": "92", "stop_lat": 48.895788595441765, "code_postal": "92044", "stop_lon": 2.2967587629110646, "coord": [48.895788595441765, 2.2967587629110646], "stop_id": 4016767, "stop_desc": "86 RUE VICTOR HUGO - 92044", "stop_name": "JEAN JAURES - VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.2967587629110646, 48.895788595441765]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f97a583b3736cdab207a783e0df3279c798f1bcc", "fields": {"departement": "92", "stop_lat": 48.89895095465131, "code_postal": "92044", "stop_lon": 2.2936074767542185, "coord": [48.89895095465131, 2.2936074767542185], "stop_id": 4016770, "stop_desc": "125 RUE VICTOR HUGO - 92044", "stop_name": "COLLANGE"}, "geometry": {"type": "Point", "coordinates": [2.2936074767542185, 48.89895095465131]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9514380c468e086cd2b5671bdf51781165f0e245", "fields": {"departement": "92", "stop_lat": 48.904057442909036, "code_postal": "92024", "stop_lon": 2.298878982538667, "coord": [48.904057442909036, 2.298878982538667], "stop_id": 4016774, "stop_desc": "25 RUE PIERRE BEREGOVOY - 92024", "stop_name": "FOURNIER"}, "geometry": {"type": "Point", "coordinates": [2.298878982538667, 48.904057442909036]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9154a719fb85079538a500a8a3434c4dbe8ceca3", "fields": {"departement": "92", "stop_lat": 48.905121060238216, "code_postal": "92024", "stop_lon": 2.310357059527946, "coord": [48.905121060238216, 2.310357059527946], "stop_id": 4016781, "stop_desc": "71 BIS BOULEVARD DU GENERAL LECLERC - 92024", "stop_name": "GENERAL LECLERC - VILLENEUVE-HOPITAL BEAUJON"}, "geometry": {"type": "Point", "coordinates": [2.310357059527946, 48.905121060238216]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8be1e3172a9738eaee26e06110959dbb583a28ac", "fields": {"departement": "92", "stop_lat": 48.91272919640059, "code_postal": "92004", "stop_lon": 2.2966091725011912, "coord": [48.91272919640059, 2.2966091725011912], "stop_id": 4016800, "stop_desc": "6 AV DES GRESILLONS - 92004", "stop_name": "PLACE VOLTAIRE"}, "geometry": {"type": "Point", "coordinates": [2.2966091725011912, 48.91272919640059]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c18b6e64d7c5ab8ff6e62ad689a24a456ce9e27d", "fields": {"departement": "92", "stop_lat": 48.91873660785316, "code_postal": "92004", "stop_lon": 2.3112772676000644, "coord": [48.91873660785316, 2.3112772676000644], "stop_id": 4016805, "stop_desc": "252-254 AVENUE DES GRESILLONS - 92004", "stop_name": "PIERRE CURIE"}, "geometry": {"type": "Point", "coordinates": [2.3112772676000644, 48.91873660785316]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d5fd0b51d6eba8d8b87ae9303c65a462376ad4ef", "fields": {"departement": "92", "stop_lat": 48.92083185675926, "code_postal": "92036", "stop_lon": 2.3180674380265387, "coord": [48.92083185675926, 2.3180674380265387], "stop_id": 4016807, "stop_desc": "2 BOULEVARD LOUISE MICHEL - 92036", "stop_name": "CABOEUFS"}, "geometry": {"type": "Point", "coordinates": [2.3180674380265387, 48.92083185675926]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "30e02ab90cd08b8aaeafc5c464edc6d3e34b05ee", "fields": {"departement": "92", "stop_lat": 48.92712404129996, "code_postal": "92078", "stop_lon": 2.330121670796473, "coord": [48.92712404129996, 2.330121670796473], "stop_id": 4016812, "stop_desc": "94 BOULEVARD GALLIENI - 92078", "stop_name": "LYCEE PETIET - C.COMMERCIAL"}, "geometry": {"type": "Point", "coordinates": [2.330121670796473, 48.92712404129996]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3104dbfe644266da80bb12f00303154048887b97", "fields": {"departement": "92", "stop_lat": 48.93802498264676, "code_postal": "92078", "stop_lon": 2.3281694321915785, "coord": [48.93802498264676, 2.3281694321915785], "stop_id": 4016822, "stop_desc": "33 BOULEVARD CHARLES DE GAULLE - 92078", "stop_name": "STADE DE VILLENEUVE-LA-GARENNE"}, "geometry": {"type": "Point", "coordinates": [2.3281694321915785, 48.93802498264676]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ce810900d1a39e5672c0e82c8bc037927eb3162f", "fields": {"departement": "92", "stop_lat": 48.93992995811468, "code_postal": "92078", "stop_lon": 2.325522546093004, "coord": [48.93992995811468, 2.325522546093004], "stop_id": 4016825, "stop_desc": "AVENUE PAUL HERBE - 92078", "stop_name": "SAINT-EXUPERY"}, "geometry": {"type": "Point", "coordinates": [2.325522546093004, 48.93992995811468]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d4659b3fc5a28cf3537cdb2fe61bfd4751d9960e", "fields": {"departement": "92", "stop_lat": 48.941583094215005, "code_postal": "92078", "stop_lon": 2.3217022839640276, "coord": [48.941583094215005, 2.3217022839640276], "stop_id": 4016827, "stop_desc": "BOULEVARD CHARLES DE GAULLE - 92078", "stop_name": "PARC DEPARTEMENTAL"}, "geometry": {"type": "Point", "coordinates": [2.3217022839640276, 48.941583094215005]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c7d898d06ae3ed822d3b82600c410d391b220278", "fields": {"departement": "92", "stop_lat": 48.917837307873704, "code_postal": "92036", "stop_lon": 2.308645931537693, "coord": [48.917837307873704, 2.308645931537693], "stop_id": 4016836, "stop_desc": "145 AVENUE DES GRESILLONS - 92036", "stop_name": "TOUR D'ASNIERES-LAURENT CELY"}, "geometry": {"type": "Point", "coordinates": [2.308645931537693, 48.917837307873704]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "089ab64c011accf3acd253f21e93a0961ef4c683", "fields": {"departement": "92", "stop_lat": 48.9172887292619, "code_postal": "92036", "stop_lon": 2.307132632062069, "coord": [48.9172887292619, 2.307132632062069], "stop_id": 4016837, "stop_desc": "133 AVENUE DES GRESILLONS - 92036", "stop_name": "GRESILLONS-FELIX EBOUE"}, "geometry": {"type": "Point", "coordinates": [2.307132632062069, 48.9172887292619]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f4e8a3bd69ef83e66289a1ec07359ac4b32fce4e", "fields": {"departement": "92", "stop_lat": 48.91444687547524, "code_postal": "92036", "stop_lon": 2.3001666409161383, "coord": [48.91444687547524, 2.3001666409161383], "stop_id": 4016839, "stop_desc": "45 AVENUE DES GRESILLONS - 92036", "stop_name": "MARCHE DE GENNEVILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.3001666409161383, 48.91444687547524]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "526ec2b9c731461746905ee39e8149bb1bed3f11", "fields": {"departement": "92", "stop_lat": 48.91294487085979, "code_postal": "92036", "stop_lon": 2.296568098545183, "coord": [48.91294487085979, 2.296568098545183], "stop_id": 4016840, "stop_desc": "3 AVENUE DES GRESILLONS - 92036", "stop_name": "PLACE VOLTAIRE"}, "geometry": {"type": "Point", "coordinates": [2.296568098545183, 48.91294487085979]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3435b482f7694c9968f2c986f0328aec511a5a17", "fields": {"departement": "93", "stop_lat": 48.92479652839391, "code_postal": "93066", "stop_lon": 2.3424644118312425, "coord": [48.92479652839391, 2.3424644118312425], "stop_id": 4017006, "stop_desc": "65-67 BOULEVARD DE LA LIBERATION - 93066", "stop_name": "AMPERE"}, "geometry": {"type": "Point", "coordinates": [2.3424644118312425, 48.92479652839391]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ed036bcc269560395fe85c38a4597f100c5a575b", "fields": {"departement": "93", "stop_lat": 48.91339215983966, "code_postal": "93070", "stop_lon": 2.3353321433301537, "coord": [48.91339215983966, 2.3353321433301537], "stop_id": 4017011, "stop_desc": "64-66 BOULEVARD JEAN JAURES - 93070", "stop_name": "JAURES - DHALENNE"}, "geometry": {"type": "Point", "coordinates": [2.3353321433301537, 48.91339215983966]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "966736e3ed58d108d385a72b968c9617df786e61", "fields": {"departement": "93", "stop_lat": 48.90790964239018, "code_postal": "93070", "stop_lon": 2.326988590430061, "coord": [48.90790964239018, 2.326988590430061], "stop_id": 4017016, "stop_desc": "88 BOULEVARD VICTOR HUGO - 93070", "stop_name": "CAPITAINE GLARNER"}, "geometry": {"type": "Point", "coordinates": [2.326988590430061, 48.90790964239018]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b26660788858db25ebbb96728f2e6444561a1614", "fields": {"departement": "92", "stop_lat": 48.90385565876156, "code_postal": "92024", "stop_lon": 2.319941379643231, "coord": [48.90385565876156, 2.319941379643231], "stop_id": 4017020, "stop_desc": "63 RUE MADAME DE SANZILLON - 92024", "stop_name": "VICTOR HUGO - SANZILLON"}, "geometry": {"type": "Point", "coordinates": [2.319941379643231, 48.90385565876156]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d072338c30bd20eaf587a332c6947da605af6465", "fields": {"departement": "92", "stop_lat": 48.891865251129495, "code_postal": "92044", "stop_lon": 2.28416829017675, "coord": [48.891865251129495, 2.28416829017675], "stop_id": 4017041, "stop_desc": "38 RUE VOLTAIRE - 92044", "stop_name": "ANATOLE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.28416829017675, 48.891865251129495]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1bdc4eaac4413948f1b78742b2c7248324cf7663", "fields": {"departement": "92", "stop_lat": 48.89030851290143, "code_postal": "92044", "stop_lon": 2.2799449064571067, "coord": [48.89030851290143, 2.2799449064571067], "stop_id": 4017043, "stop_desc": "FACE 3 RUE DE VOLTAIRE - 92044", "stop_name": "VOLTAIRE - VILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.2799449064571067, 48.89030851290143]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fbb473013bea57b0dc1cc3787b7d33cd48d8df20", "fields": {"departement": "92", "stop_lat": 48.90114819778661, "code_postal": "92024", "stop_lon": 2.30794629123773, "coord": [48.90114819778661, 2.30794629123773], "stop_id": 4017046, "stop_desc": "62 RUE MARTRE - 92024", "stop_name": "BARBUSSE - MARTRE"}, "geometry": {"type": "Point", "coordinates": [2.30794629123773, 48.90114819778661]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bde000713c335815c2156fa196eed333c6830a06", "fields": {"departement": "92", "stop_lat": 48.929502519732466, "code_postal": "92036", "stop_lon": 2.309348729922148, "coord": [48.929502519732466, 2.309348729922148], "stop_id": 4017055, "stop_desc": "150 AV LOUIS ROCHE - 92036", "stop_name": "MOULIN DE CAGE"}, "geometry": {"type": "Point", "coordinates": [2.309348729922148, 48.929502519732466]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1bd1003b7e2b9f7db3d3a0b5d933327758988442", "fields": {"departement": "92", "stop_lat": 48.91616614348817, "code_postal": "92004", "stop_lon": 2.3104331393143593, "coord": [48.91616614348817, 2.3104331393143593], "stop_id": 4017062, "stop_desc": "2 R LOUIS ARMAND - 92004", "stop_name": "LOUIS ARMAND"}, "geometry": {"type": "Point", "coordinates": [2.3104331393143593, 48.91616614348817]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ed0ab89508b5afd9d177beff4f240e5e75f66d4c", "fields": {"departement": "75", "stop_lat": 48.86704414391043, "code_postal": "75108", "stop_lon": 2.320961760376363, "coord": [48.86704414391043, 2.320961760376363], "stop_id": 4022887, "stop_desc": "10 PLACE DE LA CONCORDE - 75108", "stop_name": "CONCORDE"}, "geometry": {"type": "Point", "coordinates": [2.320961760376363, 48.86704414391043]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6477f3be88c7cf1fd2c32eba2cd242fc77db529b", "fields": {"departement": "75", "stop_lat": 48.86958522941789, "code_postal": "75108", "stop_lon": 2.3085908130857256, "coord": [48.86958522941789, 2.3085908130857256], "stop_id": 4022892, "stop_desc": "24-26 AVENUE DES CHAMPS ELYSEES - 75108", "stop_name": "ROND-POINT DES CHAMPS-ELYSEES"}, "geometry": {"type": "Point", "coordinates": [2.3085908130857256, 48.86958522941789]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "59ddc7854ce9758f314fa89eed6147371235860a", "fields": {"departement": "75", "stop_lat": 48.87218927378012, "code_postal": "75108", "stop_lon": 2.3003058618572507, "coord": [48.87218927378012, 2.3003058618572507], "stop_id": 4022896, "stop_desc": "116-116BIS AVENUE DES CHAMPS ELYSEES - 75108", "stop_name": "GEORGE V"}, "geometry": {"type": "Point", "coordinates": [2.3003058618572507, 48.87218927378012]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "45f51db53d6e1f159208aa02aff99c20d8d42aed", "fields": {"departement": "75", "stop_lat": 48.87819549713169, "code_postal": "75117", "stop_lon": 2.2837598887649864, "coord": [48.87819549713169, 2.2837598887649864], "stop_id": 4022902, "stop_desc": "PLACE DE LA PORTE MAILLOT - 75117", "stop_name": "PORTE MAILLOT - PALAIS DES CONGRES"}, "geometry": {"type": "Point", "coordinates": [2.2837598887649864, 48.87819549713169]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "575639fc51bfcf31c22c5b97ffd0aecf41b33aa6", "fields": {"departement": "92", "stop_lat": 48.89142218457634, "code_postal": "92062", "stop_lon": 2.2378156376439975, "coord": [48.89142218457634, 2.2378156376439975], "stop_id": 4022918, "stop_desc": "PISTE GARE ROUTIERE - 92062", "stop_name": "LA DEFENSE-METRO-RER-TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.2378156376439975, 48.89142218457634]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "09bf051e4b300d6fd14d5d6dad7510c35581bad8", "fields": {"departement": "92", "stop_lat": 48.906458666465724, "code_postal": "92035", "stop_lon": 2.2390410358719124, "coord": [48.906458666465724, 2.2390410358719124], "stop_id": 4022933, "stop_desc": "9 BIS PLACE DE BELGIQUE - 92035", "stop_name": "LA GARENNE-COLOMBES - CHARLEBOURG"}, "geometry": {"type": "Point", "coordinates": [2.2390410358719124, 48.906458666465724]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "10423772edfa95f8738b7ad60526ce36a1007e26", "fields": {"departement": "92", "stop_lat": 48.906458666465724, "code_postal": "92035", "stop_lon": 2.2390410358719124, "coord": [48.906458666465724, 2.2390410358719124], "stop_id": 4022934, "stop_desc": "9 BIS PLACE DE BELGIQUE - 92035", "stop_name": "LA GARENNE-COLOMBES - CHARLEBOURG"}, "geometry": {"type": "Point", "coordinates": [2.2390410358719124, 48.906458666465724]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ec114a89ee4dc74f5cbe71ab5d9c9643b617baab", "fields": {"departement": "75", "stop_lat": 48.86293570378157, "code_postal": "75107", "stop_lon": 2.3137162721106685, "coord": [48.86293570378157, 2.3137162721106685], "stop_id": 4022949, "stop_desc": "QUAI D'ORSAY - 75107", "stop_name": "INVALIDES."}, "geometry": {"type": "Point", "coordinates": [2.3137162721106685, 48.86293570378157]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5cb5f777ae962c88d2bc282255cda3d55e62713a", "fields": {"departement": "94", "stop_lat": 48.763210933888864, "code_postal": "94022", "stop_lon": 2.400895784647364, "coord": [48.763210933888864, 2.400895784647364], "stop_id": 3686348, "stop_desc": "4 AVENUE RENE PANHARD - 94022", "stop_name": "RENE PANHARD"}, "geometry": {"type": "Point", "coordinates": [2.400895784647364, 48.763210933888864]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8be03f71e827ef2b1b5a69866088eb768c802ebf", "fields": {"departement": "94", "stop_lat": 48.76614646028461, "code_postal": "94073", "stop_lon": 2.3898319168562305, "coord": [48.76614646028461, 2.3898319168562305], "stop_id": 3686354, "stop_desc": "20 AVENUE LEON MARCHAND - 94073", "stop_name": "PERREUX"}, "geometry": {"type": "Point", "coordinates": [2.3898319168562305, 48.76614646028461]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "609d467be351b4ca42e425caf62f7b50c8cbd977", "fields": {"departement": "94", "stop_lat": 48.85339768655697, "code_postal": "94033", "stop_lon": 2.4873390145395913, "coord": [48.85339768655697, 2.4873390145395913], "stop_id": 3685815, "stop_desc": "9 AVENUE DU VAL DE FONTENAY - 94033", "stop_name": "VAL DE FONTENAY RER"}, "geometry": {"type": "Point", "coordinates": [2.4873390145395913, 48.85339768655697]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5eda78a829f0ba40e3e9d9836f1f97d43ec61502", "fields": {"departement": "94", "stop_lat": 48.84807383726229, "code_postal": "94080", "stop_lon": 2.439511235018801, "coord": [48.84807383726229, 2.439511235018801], "stop_id": 3685795, "stop_desc": "FACE 57 RUE DE FONTENAY - 94080", "stop_name": "MAIRIE DE VINCENNES"}, "geometry": {"type": "Point", "coordinates": [2.439511235018801, 48.84807383726229]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c9217b7a6200ee8140ef19d8677041c78dd1eb3c", "fields": {"departement": "94", "stop_lat": 48.85260933136605, "code_postal": "94033", "stop_lon": 2.4853074908421364, "coord": [48.85260933136605, 2.4853074908421364], "stop_id": 3685814, "stop_desc": "PLACE DU GENERAL DE GAULLE - 94033", "stop_name": "GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.4853074908421364, 48.85260933136605]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a9e0944566dd0904d03184f2b41bbf36579ae042", "fields": {"departement": "94", "stop_lat": 48.85264181207475, "code_postal": "94033", "stop_lon": 2.480799666496932, "coord": [48.85264181207475, 2.480799666496932], "stop_id": 3685812, "stop_desc": "AVENUE DU MARECHAL JOFFRE - 94033", "stop_name": "CHARLES GARCIA"}, "geometry": {"type": "Point", "coordinates": [2.480799666496932, 48.85264181207475]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7ac40805db1ee40becf5d5d52846d79302683bbd", "fields": {"departement": "94", "stop_lat": 48.85375898782741, "code_postal": "94033", "stop_lon": 2.4707244202565644, "coord": [48.85375898782741, 2.4707244202565644], "stop_id": 3685807, "stop_desc": "FACE 5 AVENUE DU MARECHAL JOFFRE - 94033", "stop_name": "VERDUN"}, "geometry": {"type": "Point", "coordinates": [2.4707244202565644, 48.85375898782741]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5b71477653329616bbf53d50cea13e59a92741c5", "fields": {"departement": "94", "stop_lat": 48.84479511335644, "code_postal": "94080", "stop_lon": 2.4374894541796297, "coord": [48.84479511335644, 2.4374894541796297], "stop_id": 3685790, "stop_desc": "12 AVENUE DE PARIS - 94080", "stop_name": "AVENUE DU CHATEAU"}, "geometry": {"type": "Point", "coordinates": [2.4374894541796297, 48.84479511335644]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5cf9015e90be072e2602c04994ef664522418f46", "fields": {"departement": "94", "stop_lat": 48.84747432213174, "code_postal": "94080", "stop_lon": 2.44664573687921, "coord": [48.84747432213174, 2.44664573687921], "stop_id": 3685796, "stop_desc": "23 BOULEVARD DE LA LIBERATION - 94080", "stop_name": "LIBERATION"}, "geometry": {"type": "Point", "coordinates": [2.44664573687921, 48.84747432213174]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ade9a0ca4f15a9c3885b01ac689b8982de261433", "fields": {"departement": "94", "stop_lat": 48.857341200605816, "code_postal": "94033", "stop_lon": 2.4816707533851594, "coord": [48.857341200605816, 2.4816707533851594], "stop_id": 3685822, "stop_desc": "11 AV CHARLES GARCIA - 94033", "stop_name": "LA FONTAINE"}, "geometry": {"type": "Point", "coordinates": [2.4816707533851594, 48.857341200605816]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bd397ba03b4f48080e39b4736743ec8bb1d3be25", "fields": {"departement": "94", "stop_lat": 48.84799597105422, "code_postal": "94080", "stop_lon": 2.446238301316548, "coord": [48.84799597105422, 2.446238301316548], "stop_id": 3685797, "stop_desc": "1-3 RUE DEFRANCE - 94080", "stop_name": "LIBERATION"}, "geometry": {"type": "Point", "coordinates": [2.446238301316548, 48.84799597105422]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e3d258c81616d651cf49cc3004456329211650eb", "fields": {"departement": "94", "stop_lat": 48.84850929983121, "code_postal": "94080", "stop_lon": 2.4546008259526815, "coord": [48.84850929983121, 2.4546008259526815], "stop_id": 3685799, "stop_desc": "20 RUE FELIX FAURE - 94080", "stop_name": "PASTEUR"}, "geometry": {"type": "Point", "coordinates": [2.4546008259526815, 48.84850929983121]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ecc016bff834548ce86aa59c926290f3b6a5ae07", "fields": {"departement": "94", "stop_lat": 48.766309422860196, "code_postal": "94073", "stop_lon": 2.3870991984731407, "coord": [48.766309422860196, 2.3870991984731407], "stop_id": 3686434, "stop_desc": "5 AVENUE DU GENERAL DE GAULLE - 94073", "stop_name": "LOUIS DUPERREY"}, "geometry": {"type": "Point", "coordinates": [2.3870991984731407, 48.766309422860196]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bce1210360b2edaa5ccb52e06bb95b690f5b9145", "fields": {"departement": "94", "stop_lat": 48.76352710165557, "code_postal": "94073", "stop_lon": 2.397864329095409, "coord": [48.76352710165557, 2.397864329095409], "stop_id": 3686437, "stop_desc": "FACE 36 AVENUE RENE PANHARD - 94073", "stop_name": "PANHARD - HUGO"}, "geometry": {"type": "Point", "coordinates": [2.397864329095409, 48.76352710165557]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "81b1504ddcf8085537403b1b865f75e20b8f5f94", "fields": {"departement": "94", "stop_lat": 48.804191939783315, "code_postal": "94046", "stop_lon": 2.444214244601107, "coord": [48.804191939783315, 2.444214244601107], "stop_id": 3686552, "stop_desc": "253 BIS AVENUE DU GENERAL LECLERC - 94046", "stop_name": "LES JUILLIOTTES-METRO"}, "geometry": {"type": "Point", "coordinates": [2.444214244601107, 48.804191939783315]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "373ae1449c84615ffb64a3c3eb1cedfce6bd9583", "fields": {"departement": "94", "stop_lat": 48.78248322871807, "code_postal": "94028", "stop_lon": 2.473465408026795, "coord": [48.78248322871807, 2.473465408026795], "stop_id": 3686566, "stop_desc": "219 RUE DU GENERAL LECLERC - 94028", "stop_name": "EDMOND FOUINAT"}, "geometry": {"type": "Point", "coordinates": [2.473465408026795, 48.78248322871807]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f5068a55441bb9add2e25b3bd017534ddd807e5c", "fields": {"departement": "94", "stop_lat": 48.78901679820213, "code_postal": "94028", "stop_lon": 2.4660012265389373, "coord": [48.78901679820213, 2.4660012265389373], "stop_id": 3686561, "stop_desc": "82 AVENUE PIERRE BROSSOLETTE - 94028", "stop_name": "GABRIEL PERI"}, "geometry": {"type": "Point", "coordinates": [2.4660012265389373, 48.78901679820213]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4746f670ebcc275ebd238a41b2927638cb6a25cc", "fields": {"departement": "94", "stop_lat": 48.774420175201065, "code_postal": "94011", "stop_lon": 2.4817665950156056, "coord": [48.774420175201065, 2.4817665950156056], "stop_id": 3686572, "stop_desc": "8 AVENUE DE PARIS - 94011", "stop_name": "AVENUE DE CHOISY"}, "geometry": {"type": "Point", "coordinates": [2.4817665950156056, 48.774420175201065]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "88d3dc67ec0eae7e99ea8b1251e15563351c6972", "fields": {"departement": "94", "stop_lat": 48.76487632215842, "code_postal": "94011", "stop_lon": 2.487817498794676, "coord": [48.76487632215842, 2.487817498794676], "stop_id": 3686585, "stop_desc": "AV DU BICENTENAIRE 1789-1989 - 94011", "stop_name": "BICENTENAIRE"}, "geometry": {"type": "Point", "coordinates": [2.487817498794676, 48.76487632215842]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "180359e83e5ed93d76e962302da9ebfaa969e878", "fields": {"departement": "94", "stop_lat": 48.7704079792521, "code_postal": "94011", "stop_lon": 2.4846381105808426, "coord": [48.7704079792521, 2.4846381105808426], "stop_id": 3686577, "stop_desc": "AVENUE DE VERDUN - 94011", "stop_name": "COLONEL FABIEN"}, "geometry": {"type": "Point", "coordinates": [2.4846381105808426, 48.7704079792521]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "032a68dbc1cfa355db17eb6ed5dc3579db156bf9", "fields": {"departement": "94", "stop_lat": 48.76614727215696, "code_postal": "94011", "stop_lon": 2.4849251456650943, "coord": [48.76614727215696, 2.4849251456650943], "stop_id": 3686580, "stop_desc": "2 MAIL DE LA RESISTANCE - 94011", "stop_name": "I.U.F.M."}, "geometry": {"type": "Point", "coordinates": [2.4849251456650943, 48.76614727215696]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "24c4a609956ba53a64cb2f952323c31a6d74b072", "fields": {"departement": "94", "stop_lat": 48.77699396839792, "code_postal": "94011", "stop_lon": 2.4790947028037733, "coord": [48.77699396839792, 2.4790947028037733], "stop_id": 3686570, "stop_desc": "FACE 57 AVENUE DE PARIS - 94011", "stop_name": "REGARD"}, "geometry": {"type": "Point", "coordinates": [2.4790947028037733, 48.77699396839792]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d9fdc2e1b7422c16f49700465a5cdc3085fd02b2", "fields": {"departement": "75", "stop_lat": 48.859870310504306, "code_postal": "75107", "stop_lon": 2.310448632915866, "coord": [48.859870310504306, 2.310448632915866], "stop_id": 3687116, "stop_desc": "67-69 RUE SAINT DOMINIQUE - 75107", "stop_name": "LA TOUR-MAUBOURG - SAINT-DOMINIQUE"}, "geometry": {"type": "Point", "coordinates": [2.310448632915866, 48.859870310504306]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "547676d1f78ddab6e855cd99ce5c6da9e26bdcab", "fields": {"departement": "75", "stop_lat": 48.85337130716259, "code_postal": "75104", "stop_lon": 2.368524486324227, "coord": [48.85337130716259, 2.368524486324227], "stop_id": 3687078, "stop_desc": "3 BIS PLACE DE LA BASTILLE - 75104", "stop_name": "BASTILLE - RUE SAINT-ANTOINE"}, "geometry": {"type": "Point", "coordinates": [2.368524486324227, 48.85337130716259]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fef30e12a2b29d3530d8036c02d9c36ac86641b9", "fields": {"departement": "75", "stop_lat": 48.85930296073737, "code_postal": "75107", "stop_lon": 2.305776987879807, "coord": [48.85930296073737, 2.305776987879807], "stop_id": 3687108, "stop_desc": "101 RUE SAINT DOMINIQUE - 75107", "stop_name": "SAINT-PIERRE DU GROS CAILLOU"}, "geometry": {"type": "Point", "coordinates": [2.305776987879807, 48.85930296073737]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "415105b87131f474f10d4647a4158afe9c1b9258", "fields": {"departement": "75", "stop_lat": 48.85989806724315, "code_postal": "75107", "stop_lon": 2.3142488684558136, "coord": [48.85989806724315, 2.3142488684558136], "stop_id": 3687105, "stop_desc": "63 RUE SAINT DOMINIQUE - 75107", "stop_name": "ESPLANADE DES INVALIDES"}, "geometry": {"type": "Point", "coordinates": [2.3142488684558136, 48.85989806724315]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e504f3430f36ad504d22b6c19d5add3d1da309a5", "fields": {"departement": "75", "stop_lat": 48.857485703294316, "code_postal": "75107", "stop_lon": 2.2995808386336414, "coord": [48.857485703294316, 2.2995808386336414], "stop_id": 3687111, "stop_desc": "AVENUE JOSEPH BOUVARD - 75107", "stop_name": "RAPP - LA BOURDONNAIS"}, "geometry": {"type": "Point", "coordinates": [2.2995808386336414, 48.857485703294316]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "93b221aea89fa32668cc7a4ad760ebc6a5106ff5", "fields": {"departement": "75", "stop_lat": 48.85301826641808, "code_postal": "75111", "stop_lon": 2.377009011046008, "coord": [48.85301826641808, 2.377009011046008], "stop_id": 3687258, "stop_desc": "111 AVENUE LEDRU ROLLIN - 75111", "stop_name": "CHARONNE - KELLER"}, "geometry": {"type": "Point", "coordinates": [2.377009011046008, 48.85301826641808]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fc6310b344d9970db1763bc0810701e6fa7fc9a3", "fields": {"departement": "75", "stop_lat": 48.859783227521504, "code_postal": "75101", "stop_lon": 2.3445691244058975, "coord": [48.859783227521504, 2.3445691244058975], "stop_id": 3687089, "stop_desc": "126 RUE DE RIVOLI - 75101", "stop_name": "RIVOLI - PONT NEUF"}, "geometry": {"type": "Point", "coordinates": [2.3445691244058975, 48.859783227521504]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "af21043fa55060be8ce2d554c1077edfe9a8ea30", "fields": {"departement": "75", "stop_lat": 48.85496370976521, "code_postal": "75104", "stop_lon": 2.361565794177265, "coord": [48.85496370976521, 2.361565794177265], "stop_id": 3687083, "stop_desc": "92 RUE SAINT-ANTOINE - 75104", "stop_name": "SAINT-PAUL"}, "geometry": {"type": "Point", "coordinates": [2.361565794177265, 48.85496370976521]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6d228b593da5302dfa47247080f4d51a46ece835", "fields": {"departement": "75", "stop_lat": 48.857714626912255, "code_postal": "75107", "stop_lon": 2.3170147768626257, "coord": [48.857714626912255, 2.3170147768626257], "stop_id": 3687102, "stop_desc": "RUE DE GRENELLE - 75107", "stop_name": "BOURGOGNE"}, "geometry": {"type": "Point", "coordinates": [2.3170147768626257, 48.857714626912255]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2f5d96844a380850d79429bee3b507206693dc04", "fields": {"departement": "94", "stop_lat": 48.805470371692955, "code_postal": "94046", "stop_lon": 2.4417812792795126, "coord": [48.805470371692955, 2.4417812792795126], "stop_id": 3686550, "stop_desc": "217 AVENUE DU GENERAL LECLERC - 94046", "stop_name": "REPUBLIQUE - GENERAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.4417812792795126, 48.805470371692955]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0281c8a3e51ba766c71a9d788e4568a69a30b79f", "fields": {"departement": "94", "stop_lat": 48.784171436693946, "code_postal": "94002", "stop_lon": 2.4279604824325824, "coord": [48.784171436693946, 2.4279604824325824], "stop_id": 3686477, "stop_desc": "175 RUE ETIENNE DOLET - 94002", "stop_name": "CIMETIERE D'ALFORTVILLE"}, "geometry": {"type": "Point", "coordinates": [2.4279604824325824, 48.784171436693946]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e7dc725a3ad9b568fd11d7bbe5ecadb8f9dba760", "fields": {"departement": "94", "stop_lat": 48.76737347256756, "code_postal": "94022", "stop_lon": 2.4143072447805944, "coord": [48.76737347256756, 2.4143072447805944], "stop_id": 3686469, "stop_desc": "FACE 5 AVENUE D'ALFORTVILLE - 94022", "stop_name": "PONT DE CHOISY"}, "geometry": {"type": "Point", "coordinates": [2.4143072447805944, 48.76737347256756]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d515a9cc56ca7271aa254fbe128469696835d961", "fields": {"departement": "94", "stop_lat": 48.81050478489195, "code_postal": "94002", "stop_lon": 2.4169431792660587, "coord": [48.81050478489195, 2.4169431792660587], "stop_id": 3686461, "stop_desc": "85-87 RUE VAILLANT COUTURIER - 94002", "stop_name": "RUE DE SEINE"}, "geometry": {"type": "Point", "coordinates": [2.4169431792660587, 48.81050478489195]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "37d3b56cf9fa562c3c829fd13cedf5e3d6401f07", "fields": {"departement": "94", "stop_lat": 48.80393001308312, "code_postal": "94002", "stop_lon": 2.4236682016103535, "coord": [48.80393001308312, 2.4236682016103535], "stop_id": 3686457, "stop_desc": "71-73 RUE VICTOR HUGO - 94002", "stop_name": "RAYMOND JACLARD"}, "geometry": {"type": "Point", "coordinates": [2.4236682016103535, 48.80393001308312]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8cf6225df596386aa62ac49fcb5b65729ef0fc94", "fields": {"departement": "94", "stop_lat": 48.81265425396275, "code_postal": "94046", "stop_lon": 2.427574778454602, "coord": [48.81265425396275, 2.427574778454602], "stop_id": 3686541, "stop_desc": "18 AVENUE DU GENERAL LECLERC - 94046", "stop_name": "ERNEST RENAN"}, "geometry": {"type": "Point", "coordinates": [2.427574778454602, 48.81265425396275]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9a4bbb8b9cdd1aa2b616b772d5859d19f9b408a3", "fields": {"departement": "94", "stop_lat": 48.77835061042173, "code_postal": "94002", "stop_lon": 2.4234080543734717, "coord": [48.77835061042173, 2.4234080543734717], "stop_id": 3686474, "stop_desc": "RUE J.B. PREUX - 94002", "stop_name": "DIGUE-REVOLUTION"}, "geometry": {"type": "Point", "coordinates": [2.4234080543734717, 48.77835061042173]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2dbf528105cce36ea5f802f66acd6201ed9f236a", "fields": {"departement": "94", "stop_lat": 48.77228998931445, "code_postal": "94022", "stop_lon": 2.414232948909853, "coord": [48.77228998931445, 2.414232948909853], "stop_id": 3686471, "stop_desc": "72-78 AVENUE D'ALFORTVILLE - 94022", "stop_name": "LA FOLIE"}, "geometry": {"type": "Point", "coordinates": [2.414232948909853, 48.77228998931445]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "51e296ff3859c315fc69c112b5df5ce9ad5f4488", "fields": {"departement": "94", "stop_lat": 48.763057563786816, "code_postal": "94022", "stop_lon": 2.401956052432323, "coord": [48.763057563786816, 2.401956052432323], "stop_id": 3686438, "stop_desc": "37 AVENUE GAMBETTA - 94022", "stop_name": "RENE PANHARD"}, "geometry": {"type": "Point", "coordinates": [2.401956052432323, 48.763057563786816]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "02bd504eaf1bfff72a9fc1b525d929abe0b6d956", "fields": {"departement": "94", "stop_lat": 48.77428444311341, "code_postal": "94022", "stop_lon": 2.41559575687124, "coord": [48.77428444311341, 2.41559575687124], "stop_id": 3686444, "stop_desc": "FACE 115 AVENUE D'ALFORTVILLE - 94022", "stop_name": "MESANGES"}, "geometry": {"type": "Point", "coordinates": [2.41559575687124, 48.77428444311341]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "94e5c52fbf45056ab1035033dd829fbeb5182593", "fields": {"departement": "94", "stop_lat": 48.81344050424506, "code_postal": "94046", "stop_lon": 2.4216971516081163, "coord": [48.81344050424506, 2.4216971516081163], "stop_id": 3686595, "stop_desc": "7 TER AVENUE DU GENERAL DE GAULLE - 94046", "stop_name": "BOULEY-ECOLE VETERINAIRE"}, "geometry": {"type": "Point", "coordinates": [2.4216971516081163, 48.81344050424506]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6182b69fa58b633cabb776149ad77bd9dd5284db", "fields": {"departement": "94", "stop_lat": 48.81795512775568, "code_postal": "94069", "stop_lon": 2.430033797229572, "coord": [48.81795512775568, 2.430033797229572], "stop_id": 3686721, "stop_desc": "FACE 57 RUE DU MARECHAL LECLERC - 94069", "stop_name": "HOPITAL ESQUIROL"}, "geometry": {"type": "Point", "coordinates": [2.430033797229572, 48.81795512775568]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "323dc532af5a908b079a09afed77fb6ce723d46e", "fields": {"departement": "94", "stop_lat": 48.821372122253266, "code_postal": "94018", "stop_lon": 2.415176842268104, "coord": [48.821372122253266, 2.415176842268104], "stop_id": 3686714, "stop_desc": "R ALFRED SAVOURE - 94018", "stop_name": "CHARENTON-ECOLES-METRO"}, "geometry": {"type": "Point", "coordinates": [2.415176842268104, 48.821372122253266]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "800a4a41b50548290812e99eb919b860c45d58d8", "fields": {"departement": "94", "stop_lat": 48.812726380577566, "code_postal": "94042", "stop_lon": 2.466332203413321, "coord": [48.812726380577566, 2.466332203413321], "stop_id": 3686730, "stop_desc": "8 RUE HENRI BARBUSSE - 94042", "stop_name": "VOISIN - REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.466332203413321, 48.812726380577566]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cc1002d6f7505e32e08e6598f93f5b52aa5dcb41", "fields": {"departement": "94", "stop_lat": 48.81078159169864, "code_postal": "94068", "stop_lon": 2.469457230202651, "coord": [48.81078159169864, 2.469457230202651], "stop_id": 3686731, "stop_desc": "6 BOULEVARD MAURICE BERTEAUX - 94068", "stop_name": "MAURICE BERTEAUX"}, "geometry": {"type": "Point", "coordinates": [2.469457230202651, 48.81078159169864]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "06861ad053c43e65f706184fc471486b7956c74b", "fields": {"departement": "94", "stop_lat": 48.77249232695218, "code_postal": "94071", "stop_lon": 2.505612258810384, "coord": [48.77249232695218, 2.505612258810384], "stop_id": 3686590, "stop_desc": "R MARCO POLO - 94071", "stop_name": "SUCY-BONNEUIL RER"}, "geometry": {"type": "Point", "coordinates": [2.505612258810384, 48.77249232695218]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2e26a7d08847dd5263ff4ced0a9d4ebd3c3c1a32", "fields": {"departement": "94", "stop_lat": 48.790384083368984, "code_postal": "94068", "stop_lon": 2.5079555256354293, "coord": [48.790384083368984, 2.5079555256354293], "stop_id": 3686749, "stop_desc": "74 BOULEVARD DE LA MARNE - 94068", "stop_name": "VOLTAIRE"}, "geometry": {"type": "Point", "coordinates": [2.5079555256354293, 48.790384083368984]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1932f9414bc33acfd1a954c408964df1b52ec946", "fields": {"departement": "94", "stop_lat": 48.81745989066233, "code_postal": "94069", "stop_lon": 2.451726999892649, "coord": [48.81745989066233, 2.451726999892649], "stop_id": 3686726, "stop_desc": "182 RUE DU MARECHAL LECLERC - 94069", "stop_name": "ROSERAIE"}, "geometry": {"type": "Point", "coordinates": [2.451726999892649, 48.81745989066233]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6e73909cb0d18091c3bf807aced57215737c5642", "fields": {"departement": "94", "stop_lat": 48.78634465839506, "code_postal": "94068", "stop_lon": 2.483880834458613, "coord": [48.78634465839506, 2.483880834458613], "stop_id": 3686741, "stop_desc": "6 AVENUE RASPAIL - 94068", "stop_name": "JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.483880834458613, 48.78634465839506]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ed41df679e80ac013e2ff8b0e6029ecd1d76f330", "fields": {"departement": "94", "stop_lat": 48.80474021825175, "code_postal": "94068", "stop_lon": 2.486014584654895, "coord": [48.80474021825175, 2.486014584654895], "stop_id": 3687049, "stop_desc": "3 PL DE LA LOUVIERE - 94068", "stop_name": "LE PARC DE SAINT MAUR RER"}, "geometry": {"type": "Point", "coordinates": [2.486014584654895, 48.80474021825175]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7560c52437fb1cde7af111a7749265004e78299c", "fields": {"departement": "75", "stop_lat": 48.858938104417646, "code_postal": "75111", "stop_lon": 2.384872702577642, "coord": [48.858938104417646, 2.384872702577642], "stop_id": 3687069, "stop_desc": "FACE 166 RUE DE LA ROQUETTE - 75111", "stop_name": "SAINT MAUR - SERVAN"}, "geometry": {"type": "Point", "coordinates": [2.384872702577642, 48.858938104417646]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "012b58a0815e591767e4bdee9fd13b714e5e7752", "fields": {"departement": "94", "stop_lat": 48.80307737363469, "code_postal": "94068", "stop_lon": 2.4860914567450045, "coord": [48.80307737363469, 2.4860914567450045], "stop_id": 3687048, "stop_desc": "11 AVENUE DE LA REPUBLIQUE - 94068", "stop_name": "MAIRIE DE SAINT-MAUR"}, "geometry": {"type": "Point", "coordinates": [2.4860914567450045, 48.80307737363469]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2ce5a4db361c02a0fee83de67579c4d894f1e23e", "fields": {"departement": "94", "stop_lat": 48.790117021924274, "code_postal": "94028", "stop_lon": 2.4536935278554077, "coord": [48.790117021924274, 2.4536935278554077], "stop_id": 3687041, "stop_desc": "2 RUE MAURICE DEMENITROUX - 94028", "stop_name": "CRETEIL - UNIVERSITE"}, "geometry": {"type": "Point", "coordinates": [2.4536935278554077, 48.790117021924274]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dfe1eb92b389bbcc25a4789fe1df6f81276eec38", "fields": {"departement": "75", "stop_lat": 48.85808583827969, "code_postal": "75111", "stop_lon": 2.380853874579723, "coord": [48.85808583827969, 2.380853874579723], "stop_id": 3687070, "stop_desc": "PLACE LEON BLUM - 75111", "stop_name": "VOLTAIRE - LEON BLUM"}, "geometry": {"type": "Point", "coordinates": [2.380853874579723, 48.85808583827969]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "faf5c6347e2576438aa0dbdabbcbed9c00c91e63", "fields": {"departement": "75", "stop_lat": 48.85799008497489, "code_postal": "75111", "stop_lon": 2.371319466967902, "coord": [48.85799008497489, 2.371319466967902], "stop_id": 3687075, "stop_desc": "RUE DU CHEMIN VERT - 75111", "stop_name": "RICHARD LENOIR"}, "geometry": {"type": "Point", "coordinates": [2.371319466967902, 48.85799008497489]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d62594185542ae1be3a20adc2f5bd0f8902f6029", "fields": {"departement": "75", "stop_lat": 48.864766333887154, "code_postal": "75120", "stop_lon": 2.3952309635940914, "coord": [48.864766333887154, 2.3952309635940914], "stop_id": 3687062, "stop_desc": "AVENUE GAMBETTA - 75120", "stop_name": "MARTIN NADAUD"}, "geometry": {"type": "Point", "coordinates": [2.3952309635940914, 48.864766333887154]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7cba7db5b840d55ae11351e45bbd9279c7523adc", "fields": {"departement": "75", "stop_lat": 48.863824392740085, "code_postal": "75120", "stop_lon": 2.3915519700524968, "coord": [48.863824392740085, 2.3915519700524968], "stop_id": 3687064, "stop_desc": "FACE 29 AVENUE GAMBETTA - 75120", "stop_name": "MURIERS"}, "geometry": {"type": "Point", "coordinates": [2.3915519700524968, 48.863824392740085]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "609e1225f780d3cd9391e97ba73e6aabd4b479eb", "fields": {"departement": "94", "stop_lat": 48.834542735337955, "code_postal": "94052", "stop_lon": 2.4936151418879726, "coord": [48.834542735337955, 2.4936151418879726], "stop_id": 3687028, "stop_desc": "54 BOULEVARD ALBERT 1ER - 94052", "stop_name": "VIADUC"}, "geometry": {"type": "Point", "coordinates": [2.4936151418879726, 48.834542735337955]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "af45425fe8af47185935fe7208c4890d42d65de4", "fields": {"departement": "75", "stop_lat": 48.86404002762893, "code_postal": "75120", "stop_lon": 2.391688416422633, "coord": [48.86404002762893, 2.391688416422633], "stop_id": 3687063, "stop_desc": "35-37 AVENUE GAMBETTA - 75120", "stop_name": "MURIERS"}, "geometry": {"type": "Point", "coordinates": [2.391688416422633, 48.86404002762893]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f29755562a69194941a18cc5e9e2518bdc71314d", "fields": {"departement": "94", "stop_lat": 48.82416747810293, "code_postal": "94017", "stop_lon": 2.4962653708220754, "coord": [48.82416747810293, 2.4962653708220754], "stop_id": 3687023, "stop_desc": "202 BOULEVARD DE STALINGRAD - 94017", "stop_name": "GENERAL DE GAULLE - STALINGRAD"}, "geometry": {"type": "Point", "coordinates": [2.4962653708220754, 48.82416747810293]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "64c3df29105c3caa83f9b8d99b11ce37c2cd5be5", "fields": {"departement": "94", "stop_lat": 48.820487646733554, "code_postal": "94017", "stop_lon": 2.48532474491388, "coord": [48.820487646733554, 2.48532474491388], "stop_id": 3687020, "stop_desc": "11 AVENUE DU GENERAL DE GAULLE - 94017", "stop_name": "LA FOURCHETTE DE CHAMPIGNY"}, "geometry": {"type": "Point", "coordinates": [2.48532474491388, 48.820487646733554]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c0ddb1d454bab9346cc60a381a1a44a4858c9d5a", "fields": {"departement": "94", "stop_lat": 48.82758592082908, "code_postal": "94017", "stop_lon": 2.4939072681583574, "coord": [48.82758592082908, 2.4939072681583574], "stop_id": 3687026, "stop_desc": "FACE 232 BOULEVARD DE STALINGRAD - 94017", "stop_name": "PARC DU TREMBLAY"}, "geometry": {"type": "Point", "coordinates": [2.4939072681583574, 48.82758592082908]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "61230dd9a21f2d3423cd154dc630ab0e95f8250c", "fields": {"departement": "94", "stop_lat": 48.79770955422415, "code_postal": "94028", "stop_lon": 2.4646487082311888, "coord": [48.79770955422415, 2.4646487082311888], "stop_id": 3686999, "stop_desc": "FACE 57 AVENUE DE VERDUN - 94028", "stop_name": "HOPITAL INTERCOMMUNAL"}, "geometry": {"type": "Point", "coordinates": [2.4646487082311888, 48.79770955422415]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "66324fa535c2c6b65ed1861a5882ae6cabf8bdba", "fields": {"departement": "94", "stop_lat": 48.80411917381466, "code_postal": "94068", "stop_lon": 2.486720335775644, "coord": [48.80411917381466, 2.486720335775644], "stop_id": 3687008, "stop_desc": "16 BIS AVENUE FOCH - 94068", "stop_name": "LE PARC DE SAINT-MAUR RER"}, "geometry": {"type": "Point", "coordinates": [2.486720335775644, 48.80411917381466]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0f4b032cf710342818193c18646ff91ac265e4b5", "fields": {"departement": "94", "stop_lat": 48.80723447731543, "code_postal": "94068", "stop_lon": 2.4746869575894057, "coord": [48.80723447731543, 2.4746869575894057], "stop_id": 3687012, "stop_desc": "28 RUE DE LA VARENNE - 94068", "stop_name": "LIBERATION - RABELAIS"}, "geometry": {"type": "Point", "coordinates": [2.4746869575894057, 48.80723447731543]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cdb7968b6c56923d8c157aa5ef39684bb7a4ff9f", "fields": {"departement": "94", "stop_lat": 48.79336405322197, "code_postal": "94028", "stop_lon": 2.460244106822518, "coord": [48.79336405322197, 2.460244106822518], "stop_id": 3686998, "stop_desc": "FACE 7 RUE DES MECHES - 94028", "stop_name": "EGLISE DE CRETEIL"}, "geometry": {"type": "Point", "coordinates": [2.460244106822518, 48.79336405322197]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "89a1a6ab41a6ee0cfeb72335fe28fe8aa46b4d93", "fields": {"departement": "94", "stop_lat": 48.78548837703237, "code_postal": "94028", "stop_lon": 2.453547136144548, "coord": [48.78548837703237, 2.453547136144548], "stop_id": 3686991, "stop_desc": "AVENUE FRANCOIS MAURIAC - 94028", "stop_name": "CROIX DES MECHES"}, "geometry": {"type": "Point", "coordinates": [2.453547136144548, 48.78548837703237]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "66f8fe02935268b82b020798e49fce7ea7806a7a", "fields": {"departement": "94", "stop_lat": 48.7981603300009, "code_postal": "94068", "stop_lon": 2.479302174617681, "coord": [48.7981603300009, 2.479302174617681], "stop_id": 3687002, "stop_desc": "58 BIS BOULEVARD DE CRETEIL - 94068", "stop_name": "BEAUJEU"}, "geometry": {"type": "Point", "coordinates": [2.479302174617681, 48.7981603300009]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3923c99d9b8601bbbc1db95b832d028d78e87bff", "fields": {"departement": "94", "stop_lat": 48.79828630588296, "code_postal": "94068", "stop_lon": 2.479180075806201, "coord": [48.79828630588296, 2.479180075806201], "stop_id": 3687003, "stop_desc": "45 BOULEVARD DE CRETEIL - 94068", "stop_name": "BEAUJEU"}, "geometry": {"type": "Point", "coordinates": [2.479180075806201, 48.79828630588296]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8b3d3ce356dad13a4202d8f98905d76cdb1dbc7c", "fields": {"departement": "93", "stop_lat": 48.86427729268341, "code_postal": "93006", "stop_lon": 2.4171892780361164, "coord": [48.86427729268341, 2.4171892780361164], "stop_id": 3687277, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 93006", "stop_name": "GALLIENI - METRO"}, "geometry": {"type": "Point", "coordinates": [2.4171892780361164, 48.86427729268341]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6d564c4a0b81e40f90cd7f11edd9565c2da96fdb", "fields": {"departement": "93", "stop_lat": 48.86923939789337, "code_postal": "93006", "stop_lon": 2.4155621165197254, "coord": [48.86923939789337, 2.4155621165197254], "stop_id": 3687280, "stop_desc": "29 AVENUE GAMBETTA - 93006", "stop_name": "MAIRIE DE BAGNOLET"}, "geometry": {"type": "Point", "coordinates": [2.4155621165197254, 48.86923939789337]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "203c6946ae798b6adea3fde15a4d660ec79648e4", "fields": {"departement": "93", "stop_lat": 48.87006263142268, "code_postal": "93006", "stop_lon": 2.42086295744223, "coord": [48.87006263142268, 2.42086295744223], "stop_id": 3687282, "stop_desc": "FACE 6-10 RUE LENINE - 93006", "stop_name": "EGLISE DE BAGNOLET"}, "geometry": {"type": "Point", "coordinates": [2.42086295744223, 48.87006263142268]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "59ed3a18bf60ce1f8b7d0dfb42c5e66da95e2db6", "fields": {"departement": "93", "stop_lat": 48.862912243186486, "code_postal": "93006", "stop_lon": 2.4156342926225824, "coord": [48.862912243186486, 2.4156342926225824], "stop_id": 3687275, "stop_desc": "RUE DU CHATEAU - 93006", "stop_name": "GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.4156342926225824, 48.862912243186486]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b2de97bd07d8073aa8157d3ad55faa13a1e8bc92", "fields": {"departement": "93", "stop_lat": 48.872376053452285, "code_postal": "93006", "stop_lon": 2.428114790799656, "coord": [48.872376053452285, 2.428114790799656], "stop_id": 3687290, "stop_desc": "51 RUE RAYMOND LEFEBVRE - 93006", "stop_name": "STALINGRAD"}, "geometry": {"type": "Point", "coordinates": [2.428114790799656, 48.872376053452285]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "18afa114e3471985c1aab8575a972f78fc5148e5", "fields": {"departement": "93", "stop_lat": 48.86895507816368, "code_postal": "93006", "stop_lon": 2.423817439339642, "coord": [48.86895507816368, 2.423817439339642], "stop_id": 3687283, "stop_desc": "54 RUE LENINE - 93006", "stop_name": "PIERRE CURIE"}, "geometry": {"type": "Point", "coordinates": [2.423817439339642, 48.86895507816368]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e48a00d7255878ec3fe51ec585dd77fb9552ddc3", "fields": {"departement": "93", "stop_lat": 48.86893546938841, "code_postal": "93006", "stop_lon": 2.4260380125430316, "coord": [48.86893546938841, 2.4260380125430316], "stop_id": 3687286, "stop_desc": "FACE 2 RUE DESCARTES - 93006", "stop_name": "DESCARTES"}, "geometry": {"type": "Point", "coordinates": [2.4260380125430316, 48.86893546938841]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4164d9b1f952726509f39d42344c4fe67dfbb9b2", "fields": {"departement": "93", "stop_lat": 48.862694799673456, "code_postal": "93048", "stop_lon": 2.441378997063559, "coord": [48.862694799673456, 2.441378997063559], "stop_id": 3687678, "stop_desc": "1 AVENUE PASTEUR - 93048", "stop_name": "MAIRIE DE MONTREUIL - PASTEUR"}, "geometry": {"type": "Point", "coordinates": [2.441378997063559, 48.862694799673456]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a318292fb64bb42075b88f72e1d70eaa4f95713f", "fields": {"departement": "93", "stop_lat": 48.88445147468918, "code_postal": "93064", "stop_lon": 2.485371183853036, "coord": [48.88445147468918, 2.485371183853036], "stop_id": 3687622, "stop_desc": "91 BOULEVARD ALSACE-LORRAINE - 93064", "stop_name": "BOIS-PERRIER NORD"}, "geometry": {"type": "Point", "coordinates": [2.485371183853036, 48.88445147468918]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5ab82186d0e8c3d14d7a1f5fd7021451130013c2", "fields": {"departement": "93", "stop_lat": 48.86900185643932, "code_postal": "93048", "stop_lon": 2.4331495241574443, "coord": [48.86900185643932, 2.4331495241574443], "stop_id": 3687675, "stop_desc": "14 PLACE DU GENERAL DE GAULLE - 93048", "stop_name": "GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.4331495241574443, 48.86900185643932]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d2a95ea4b0b0f5e87b3c32b7e2e7f82c727f99a3", "fields": {"departement": "93", "stop_lat": 48.87592014565629, "code_postal": "93006", "stop_lon": 2.4239653207235214, "coord": [48.87592014565629, 2.4239653207235214], "stop_id": 3687667, "stop_desc": "8 RUE FRANCOIS MITTERRAND - 93006", "stop_name": "GIRARDOT"}, "geometry": {"type": "Point", "coordinates": [2.4239653207235214, 48.87592014565629]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cf73417a48f6ad5cd233dfad589b1aca200fd6a5", "fields": {"departement": "93", "stop_lat": 48.87627196440156, "code_postal": "93006", "stop_lon": 2.4221401220691487, "coord": [48.87627196440156, 2.4221401220691487], "stop_id": 3687665, "stop_desc": "189 AVENUE PASTEUR - 93006", "stop_name": "RUE DE PANTIN"}, "geometry": {"type": "Point", "coordinates": [2.4221401220691487, 48.87627196440156]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "efa176ea7883b74762d3d382887e5f62c26ddd48", "fields": {"departement": "93", "stop_lat": 48.877776742999956, "code_postal": "93064", "stop_lon": 2.4755552446130276, "coord": [48.877776742999956, 2.4755552446130276], "stop_id": 3687612, "stop_desc": "1 RUE DE LISBONNE - 93064", "stop_name": "NANTEUIL"}, "geometry": {"type": "Point", "coordinates": [2.4755552446130276, 48.877776742999956]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9fb852a95949c30aee4ce805c7d0ac9d88a6e288", "fields": {"departement": "93", "stop_lat": 48.864854362507295, "code_postal": "93048", "stop_lon": 2.438372809499486, "coord": [48.864854362507295, 2.438372809499486], "stop_id": 3687677, "stop_desc": "48 AVENUE PASTEUR - 93048", "stop_name": "HOCHE"}, "geometry": {"type": "Point", "coordinates": [2.438372809499486, 48.864854362507295]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "30a19744aa677cee9890b4ad70d290100e725f76", "fields": {"departement": "93", "stop_lat": 48.87516490527945, "code_postal": "93006", "stop_lon": 2.424386432132569, "coord": [48.87516490527945, 2.424386432132569], "stop_id": 3687666, "stop_desc": "2 RUE GIRARDOT - 93006", "stop_name": "GIRARDOT"}, "geometry": {"type": "Point", "coordinates": [2.424386432132569, 48.87516490527945]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "681bd137cdda4858ab2587b11b2c28941d40e70f", "fields": {"departement": "75", "stop_lat": 48.856438611249025, "code_postal": "75104", "stop_lon": 2.356281902801697, "coord": [48.856438611249025, 2.356281902801697], "stop_id": 3687468, "stop_desc": "32 RUE DE RIVOLI - 75104", "stop_name": "RUE VIEILLE DU TEMPLE - MAIRIE DU 4E"}, "geometry": {"type": "Point", "coordinates": [2.356281902801697, 48.856438611249025]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "afbafc1c58c65350b63e66f8cb2ca19a17409995", "fields": {"departement": "93", "stop_lat": 48.87064175393145, "code_postal": "93048", "stop_lon": 2.4581658580163386, "coord": [48.87064175393145, 2.4581658580163386], "stop_id": 3687600, "stop_desc": "50 AVENUE DU PRESIDENT SALVADOR ALLENDE - 93048", "stop_name": "RUE SAINT-DENIS"}, "geometry": {"type": "Point", "coordinates": [2.4581658580163386, 48.87064175393145]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3de036132e6b7a906b95b5bfaa9fb1341c8761a2", "fields": {"departement": "93", "stop_lat": 48.8617520482782, "code_postal": "93006", "stop_lon": 2.4168720919850277, "coord": [48.8617520482782, 2.4168720919850277], "stop_id": 3687579, "stop_desc": "50-52 AVENUE DE LA REPUBLIQUE - 93006", "stop_name": "GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.4168720919850277, 48.8617520482782]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b55fc876de4a2ac5d592c13e1a1019c0c67beec3", "fields": {"departement": "93", "stop_lat": 48.85817025029724, "code_postal": "93048", "stop_lon": 2.4353632617811263, "coord": [48.85817025029724, 2.4353632617811263], "stop_id": 3687588, "stop_desc": "1 BIS BOULEVARD CHANZY - 93048", "stop_name": "CROIX DE CHAVAUX-METRO"}, "geometry": {"type": "Point", "coordinates": [2.4353632617811263, 48.85817025029724]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2e158097a0bef470e02d85dd5b8b0edcafcc431c", "fields": {"departement": "93", "stop_lat": 48.87709855532781, "code_postal": "93048", "stop_lon": 2.4630724725939266, "coord": [48.87709855532781, 2.4630724725939266], "stop_id": 3687604, "stop_desc": "186 BOULEVARD DE LA BOISSIERE - 93048", "stop_name": "SALVADOR ALLENDE"}, "geometry": {"type": "Point", "coordinates": [2.4630724725939266, 48.87709855532781]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8cbbcd1d2fb727257752cb253a3b93064bcc9ea6", "fields": {"departement": "75", "stop_lat": 48.87639012553031, "code_postal": "75120", "stop_lon": 2.40615783127001, "coord": [48.87639012553031, 2.40615783127001], "stop_id": 3687459, "stop_desc": "257 AVENUE GAMBETTA - 75120", "stop_name": "PORTE DES LILAS-METRO"}, "geometry": {"type": "Point", "coordinates": [2.40615783127001, 48.87639012553031]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c23c2a0f44887495acd22f468399b92549e8df39", "fields": {"departement": "93", "stop_lat": 48.87076516122789, "code_postal": "93048", "stop_lon": 2.460523069788365, "coord": [48.87076516122789, 2.460523069788365], "stop_id": 3687601, "stop_desc": "FACE 66 RUE EDOUARD BRANLY - 93048", "stop_name": "RUE SAINT-DENIS"}, "geometry": {"type": "Point", "coordinates": [2.460523069788365, 48.87076516122789]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ee43ae87584097a5b5d3fa2e1ab5319f70863ae4", "fields": {"departement": "93", "stop_lat": 48.867494373252924, "code_postal": "93006", "stop_lon": 2.41778002513657, "coord": [48.867494373252924, 2.41778002513657], "stop_id": 3687577, "stop_desc": "8 RUE ADELAIDE LAHAYE - 93006", "stop_name": "CENTRE DE SANTE"}, "geometry": {"type": "Point", "coordinates": [2.41778002513657, 48.867494373252924]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "20d35f9fca5d7180bad74b102426ea0d481bd653", "fields": {"departement": "75", "stop_lat": 48.86886195104528, "code_postal": "75111", "stop_lon": 2.3801953930624014, "coord": [48.86886195104528, 2.3801953930624014], "stop_id": 3687463, "stop_desc": "101 RUE JEAN PIERRE TIMBAUD - 75111", "stop_name": "COURONNES"}, "geometry": {"type": "Point", "coordinates": [2.3801953930624014, 48.86886195104528]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "af2b095d66ba37f23b0a5aa4fb8eed8b30ec12f5", "fields": {"departement": "75", "stop_lat": 48.86465476793721, "code_postal": "75120", "stop_lon": 2.4024233712222123, "coord": [48.86465476793721, 2.4024233712222123], "stop_id": 3687569, "stop_desc": "50 RUE BELGRAND - 75120", "stop_name": "PELLEPORT"}, "geometry": {"type": "Point", "coordinates": [2.4024233712222123, 48.86465476793721]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d0c141a0b4e56665f38940f8a02b1dc42c47e6ef", "fields": {"departement": "75", "stop_lat": 48.85229690140307, "code_postal": "75106", "stop_lon": 2.3391885750727033, "coord": [48.85229690140307, 2.3391885750727033], "stop_id": 3687424, "stop_desc": "FACE 130 BOULEVARD SAINT GERMAIN - 75106", "stop_name": "SAINT-GERMAIN - ODEON"}, "geometry": {"type": "Point", "coordinates": [2.3391885750727033, 48.85229690140307]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6663bee8651679e7c1b6a99b143e5ee7eb543de9", "fields": {"departement": "75", "stop_lat": 48.876533772096494, "code_postal": "75120", "stop_lon": 2.406416903700702, "coord": [48.876533772096494, 2.406416903700702], "stop_id": 3687458, "stop_desc": "FACE 257-259 AV GAMBETTA - 75120", "stop_name": "PORTE DES LILAS-METRO"}, "geometry": {"type": "Point", "coordinates": [2.406416903700702, 48.876533772096494]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1702fe148851515691d30f75d05243fdb82be77e", "fields": {"departement": "75", "stop_lat": 48.87475469777557, "code_postal": "75120", "stop_lon": 2.405706036842063, "coord": [48.87475469777557, 2.405706036842063], "stop_id": 3687456, "stop_desc": "FACE 229 AVENUE GAMBETTA - 75120", "stop_name": "PISCINE DES TOURELLES"}, "geometry": {"type": "Point", "coordinates": [2.405706036842063, 48.87475469777557]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "68fe1feef932d8f7d903a6c2a337d12da15d2ccc", "fields": {"departement": "75", "stop_lat": 48.87456611296517, "code_postal": "75120", "stop_lon": 2.4054469161649683, "coord": [48.87456611296517, 2.4054469161649683], "stop_id": 3687457, "stop_desc": "229 AVENUE GAMBETTA - 75120", "stop_name": "PISCINE DES TOURELLES"}, "geometry": {"type": "Point", "coordinates": [2.4054469161649683, 48.87456611296517]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c21f79a30b2f6b63a3c0a81398825481cd3b5da4", "fields": {"departement": "75", "stop_lat": 48.843731020990745, "code_postal": "75115", "stop_lon": 2.3233383911773933, "coord": [48.843731020990745, 2.3233383911773933], "stop_id": 3687413, "stop_desc": "PLACE DU 18 JUIN 1940 - 75115", "stop_name": "PLACE DU 18 JUIN 1940"}, "geometry": {"type": "Point", "coordinates": [2.3233383911773933, 48.843731020990745]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "56ccead5b0775676efd8a722477d4b0ce72f961d", "fields": {"departement": "91", "stop_lat": 48.6931833463181, "code_postal": "91326", "stop_lon": 2.379262913371422, "coord": [48.6931833463181, 2.379262913371422], "stop_id": 4378172, "stop_desc": "24 RUE VOLTAIRE - 91326", "stop_name": "VOLTAIRE"}, "geometry": {"type": "Point", "coordinates": [2.379262913371422, 48.6931833463181]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c3b28f6166c35f76d7cd5dfe75d565677570377e", "fields": {"departement": "91", "stop_lat": 48.713840073341075, "code_postal": "91027", "stop_lon": 2.397548354116502, "coord": [48.713840073341075, 2.397548354116502], "stop_id": 4378174, "stop_desc": "57-59 R ROBERT SCHUMAN - 91027", "stop_name": "CLOS DE BRETIGNY"}, "geometry": {"type": "Point", "coordinates": [2.397548354116502, 48.713840073341075]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0042f591ce24f1a1e08d3c83efc76bb15b0a1a67", "fields": {"departement": "91", "stop_lat": 48.70667758834862, "code_postal": "91027", "stop_lon": 2.3716821178952556, "coord": [48.70667758834862, 2.3716821178952556], "stop_id": 4378184, "stop_desc": "AVENUE FRANCOIS MITTERRAND - 91027", "stop_name": "BELLE ETOILE"}, "geometry": {"type": "Point", "coordinates": [2.3716821178952556, 48.70667758834862]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e266a3efe5e7d208092958a6b7fd848454c363cb", "fields": {"departement": "91", "stop_lat": 48.70988833841886, "code_postal": "91027", "stop_lon": 2.390902328356646, "coord": [48.70988833841886, 2.390902328356646], "stop_id": 4378191, "stop_desc": "RUE GENEVIEVE ANTHONIOZ-DE GAULLE - 91027", "stop_name": "SAINT-CHARLES"}, "geometry": {"type": "Point", "coordinates": [2.390902328356646, 48.70988833841886]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e56b3cfe4e9208b26a8502dafbbc5fbc4fa49b42", "fields": {"departement": "91", "stop_lat": 48.7119284543995, "code_postal": "91027", "stop_lon": 2.391488468075179, "coord": [48.7119284543995, 2.391488468075179], "stop_id": 4378192, "stop_desc": "FACE 31 AV HENRI DUNANT - 91027", "stop_name": "CLOS NOLLET"}, "geometry": {"type": "Point", "coordinates": [2.391488468075179, 48.7119284543995]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "42c9c4a811f661d506616bc52d4ab92ade41e8fb", "fields": {"departement": "91", "stop_lat": 48.713212045222434, "code_postal": "91027", "stop_lon": 2.395211426569247, "coord": [48.713212045222434, 2.395211426569247], "stop_id": 4378195, "stop_desc": "FACE 58 AV HENRI DUNANT - 91027", "stop_name": "DELALANDE PASTEUR"}, "geometry": {"type": "Point", "coordinates": [2.395211426569247, 48.713212045222434]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fbe46cac491c8e7b9d66f4351a72e9c74b287720", "fields": {"departement": "91", "stop_lat": 48.721709874251665, "code_postal": "91027", "stop_lon": 2.4050698595173374, "coord": [48.721709874251665, 2.4050698595173374], "stop_id": 4378197, "stop_desc": "R ROLAND GARROS - 91027", "stop_name": "ZA LES GUYARDS"}, "geometry": {"type": "Point", "coordinates": [2.4050698595173374, 48.721709874251665]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7c26d28831be927b0ba03a08fc93a04ec0a8eb23", "fields": {"departement": "91", "stop_lat": 48.719936829831965, "code_postal": "91027", "stop_lon": 2.409034166824077, "coord": [48.719936829831965, 2.409034166824077], "stop_id": 4378200, "stop_desc": "AV DE L'EUROPE - 91027", "stop_name": "RUE D'ABLON"}, "geometry": {"type": "Point", "coordinates": [2.409034166824077, 48.719936829831965]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "81a15884e35c8d3b58113bc91149d7f19b135d03", "fields": {"departement": "91", "stop_lat": 48.71845274678824, "code_postal": "91027", "stop_lon": 2.4106621895660574, "coord": [48.71845274678824, 2.4106621895660574], "stop_id": 4378205, "stop_desc": "FACE 2 RUE MAURICE GUNSBOURG - 91027", "stop_name": "CARON - GUNSBOURG"}, "geometry": {"type": "Point", "coordinates": [2.4106621895660574, 48.71845274678824]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9c65741d35a4c652d95fcfbb11de2f2d1facd23b", "fields": {"departement": "91", "stop_lat": 48.71483410975701, "code_postal": "91027", "stop_lon": 2.404408911126855, "coord": [48.71483410975701, 2.404408911126855], "stop_id": 4378206, "stop_desc": "37-39 R CARON - 91027", "stop_name": "LES FONTAINES"}, "geometry": {"type": "Point", "coordinates": [2.404408911126855, 48.71483410975701]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "173d698a68508069d0105626a68ccee3f703211f", "fields": {"departement": "91", "stop_lat": 48.70952445478713, "code_postal": "91027", "stop_lon": 2.399784314364405, "coord": [48.70952445478713, 2.399784314364405], "stop_id": 4378210, "stop_desc": "93 R EDOUARD VAILLANT - 91027", "stop_name": "PROVENCE"}, "geometry": {"type": "Point", "coordinates": [2.399784314364405, 48.70952445478713]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0c34bd0113a88401ed6f54cc86f02026eb013195", "fields": {"departement": "91", "stop_lat": 48.70913802898374, "code_postal": "91027", "stop_lon": 2.399634453413181, "coord": [48.70913802898374, 2.399634453413181], "stop_id": 4378211, "stop_desc": "R EDOUARD VAILLANT - 91027", "stop_name": "PROVENCE"}, "geometry": {"type": "Point", "coordinates": [2.399634453413181, 48.70913802898374]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "434c455298d54e07e9156678af773a5737a97d55", "fields": {"departement": "91", "stop_lat": 48.699779392992774, "code_postal": "91027", "stop_lon": 2.383464165035811, "coord": [48.699779392992774, 2.383464165035811], "stop_id": 4378220, "stop_desc": "15 AVENUE DU 18 AVRIL - 91027", "stop_name": "DOCTEUR GUERIN"}, "geometry": {"type": "Point", "coordinates": [2.383464165035811, 48.699779392992774]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2698bc97f6b555f234626ce10c72ab8dfbb4709d", "fields": {"departement": "91", "stop_lat": 48.70847215909083, "code_postal": "91027", "stop_lon": 2.3811630638879526, "coord": [48.70847215909083, 2.3811630638879526], "stop_id": 4378230, "stop_desc": "44 AVENUE MARCEL SEMBAT - 91027", "stop_name": "SEMBAT"}, "geometry": {"type": "Point", "coordinates": [2.3811630638879526, 48.70847215909083]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5950520b1048ed789f81f15b389f19affde493f7", "fields": {"departement": "92", "stop_lat": 48.78004214128772, "code_postal": "92014", "stop_lon": 2.3130874320121375, "coord": [48.78004214128772, 2.3130874320121375], "stop_id": 4378262, "stop_desc": "PLACE DE LA GARE - 92014", "stop_name": "BOURG-LA-REINE RER"}, "geometry": {"type": "Point", "coordinates": [2.3130874320121375, 48.78004214128772]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "20fa78d51714c7ad71650fa84207d8c38ac1ca4f", "fields": {"departement": "92", "stop_lat": 48.77446957980129, "code_postal": "92071", "stop_lon": 2.3130900241212315, "coord": [48.77446957980129, 2.3130900241212315], "stop_id": 4378265, "stop_desc": "146 AVENUE DU GENERAL LECLERC - 92071", "stop_name": "LES COTTAGES"}, "geometry": {"type": "Point", "coordinates": [2.3130900241212315, 48.77446957980129]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "180490bdcb1cc0edfbd586211453f7befb737302", "fields": {"departement": "94", "stop_lat": 48.76044018922145, "code_postal": "94034", "stop_lon": 2.3185888854725127, "coord": [48.76044018922145, 2.3185888854725127], "stop_id": 4378273, "stop_desc": "AVENUE DE LA DIVISION LECLERC - 94034", "stop_name": "DOCTEUR TENINE"}, "geometry": {"type": "Point", "coordinates": [2.3185888854725127, 48.76044018922145]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2b9471b408f3d6d175b58760dfb90de79306f72b", "fields": {"departement": "94", "stop_lat": 48.75451800791887, "code_postal": "94034", "stop_lon": 2.326787800242939, "coord": [48.75451800791887, 2.326787800242939], "stop_id": 4378279, "stop_desc": "18 AVENUE EDOUARD HERRIOT - 94034", "stop_name": "MONTJEAN"}, "geometry": {"type": "Point", "coordinates": [2.326787800242939, 48.75451800791887]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "530af8e4d921b5f803293df5fc25e56732ee3c2b", "fields": {"departement": "94", "stop_lat": 48.75911678578232, "code_postal": "94021", "stop_lon": 2.366564526644527, "coord": [48.75911678578232, 2.366564526644527], "stop_id": 4378289, "stop_desc": "RUE DE THIAIS - 94021", "stop_name": "PORTE DE THIAIS"}, "geometry": {"type": "Point", "coordinates": [2.366564526644527, 48.75911678578232]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8f6c74ca2776458b470ff4efae9478f2529af0ca", "fields": {"departement": "94", "stop_lat": 48.759205921508666, "code_postal": "94073", "stop_lon": 2.3694466265799434, "coord": [48.759205921508666, 2.3694466265799434], "stop_id": 4378291, "stop_desc": "RUE DE THIAIS - 94073", "stop_name": "LE COR DE CHASSE"}, "geometry": {"type": "Point", "coordinates": [2.3694466265799434, 48.759205921508666]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3f1d1e959dfa2c1d6a6df455f7deec34a40bd67a", "fields": {"departement": "94", "stop_lat": 48.75249006646405, "code_postal": "94073", "stop_lon": 2.3752194138360245, "coord": [48.75249006646405, 2.3752194138360245], "stop_id": 4378295, "stop_desc": "5 RUE DES ALOUETTES - 94073", "stop_name": "ALOUETTES"}, "geometry": {"type": "Point", "coordinates": [2.3752194138360245, 48.75249006646405]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b84f107268bc6349e312dfebda35618517271bc6", "fields": {"departement": "94", "stop_lat": 48.7608206316157, "code_postal": "94073", "stop_lon": 2.399886827106586, "coord": [48.7608206316157, 2.399886827106586], "stop_id": 4378301, "stop_desc": "FACE 18 AVENUE GEORGES HALGOULT - 94073", "stop_name": "GEORGES HALGOULT"}, "geometry": {"type": "Point", "coordinates": [2.399886827106586, 48.7608206316157]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cf68f99c038cffa2d55bc9a8b44eaea64fa712c9", "fields": {"departement": "94", "stop_lat": 48.76426039590838, "code_postal": "94022", "stop_lon": 2.4047854974824947, "coord": [48.76426039590838, 2.4047854974824947], "stop_id": 4378305, "stop_desc": "4 AVENUE GAMBETTA - 94022", "stop_name": "ROUGET DE LISLE"}, "geometry": {"type": "Point", "coordinates": [2.4047854974824947, 48.76426039590838]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "39a0ca92fb036a507cf80fee312123a76862d5bc", "fields": {"departement": "94", "stop_lat": 48.76754244330636, "code_postal": "94022", "stop_lon": 2.417040444311894, "coord": [48.76754244330636, 2.417040444311894], "stop_id": 4378308, "stop_desc": "26 BIS AVENUE VICTOR HUGO - 94022", "stop_name": "PASTEUR"}, "geometry": {"type": "Point", "coordinates": [2.417040444311894, 48.76754244330636]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "07a1b4d77570ba2e16d84ba7b2db6733814b8b19", "fields": {"departement": "94", "stop_lat": 48.78609438546215, "code_postal": "94028", "stop_lon": 2.449576818507116, "coord": [48.78609438546215, 2.449576818507116], "stop_id": 4378320, "stop_desc": "ROUTE DE CHOISY - 94028", "stop_name": "LA HAYE AUX MOINES"}, "geometry": {"type": "Point", "coordinates": [2.449576818507116, 48.78609438546215]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bd01238a45d03e2e5f4938be1761d49932914f1c", "fields": {"departement": "94", "stop_lat": 48.769004919799386, "code_postal": "94022", "stop_lon": 2.420795502042092, "coord": [48.769004919799386, 2.420795502042092], "stop_id": 4378336, "stop_desc": "64 AVENUE VICTOR HUGO - 94022", "stop_name": "MARCELLIN BERTHELOT"}, "geometry": {"type": "Point", "coordinates": [2.420795502042092, 48.769004919799386]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bd7af12c6a7d2a5b547a26866724febb88ad46d6", "fields": {"departement": "94", "stop_lat": 48.81476240384012, "code_postal": "94043", "stop_lon": 2.360621543737651, "coord": [48.81476240384012, 2.360621543737651], "stop_id": 4378354, "stop_desc": "18 AVENUE DE FONTAINEBLEAU - 94043", "stop_name": "ROGER SALENGRO - FONTAINEBLEAU"}, "geometry": {"type": "Point", "coordinates": [2.360621543737651, 48.81476240384012]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "50b3904b37341d6de66c609f26c7e4726bad03f4", "fields": {"departement": "94", "stop_lat": 48.812137822019444, "code_postal": "94043", "stop_lon": 2.361423259884513, "coord": [48.812137822019444, 2.361423259884513], "stop_id": 4378355, "stop_desc": "58 AVENUE DE FONTAINEBLEAU - 94043", "stop_name": "CONVENTION - FONTAINEBLEAU"}, "geometry": {"type": "Point", "coordinates": [2.361423259884513, 48.812137822019444]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a0f50b4aa5bae8fc8a6bdde0f79c8ef6302e95d1", "fields": {"departement": "94", "stop_lat": 48.781666178808514, "code_postal": "94081", "stop_lon": 2.372561450773055, "coord": [48.781666178808514, 2.372561450773055], "stop_id": 4378366, "stop_desc": "RUE JULIAN GRIMAU - 94081", "stop_name": "EDOUARD TREMBLAY"}, "geometry": {"type": "Point", "coordinates": [2.372561450773055, 48.781666178808514]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fce2ba2343c305b693e5bf30faafaa7f384547df", "fields": {"departement": "94", "stop_lat": 48.765957686542926, "code_postal": "94073", "stop_lon": 2.389886111195227, "coord": [48.765957686542926, 2.389886111195227], "stop_id": 4378373, "stop_desc": "FACE 22 AVENUE LEON MARCHAND - 94073", "stop_name": "PERREUX"}, "geometry": {"type": "Point", "coordinates": [2.389886111195227, 48.765957686542926]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "54f245aee2761b229cf2108509924d0766cae153", "fields": {"departement": "94", "stop_lat": 48.7619901951208, "code_postal": "94022", "stop_lon": 2.4133883763250874, "coord": [48.7619901951208, 2.4133883763250874], "stop_id": 4378379, "stop_desc": "FACE 24 AVENUE LOUIS LUC - 94022", "stop_name": "QUARTIER DU PORT"}, "geometry": {"type": "Point", "coordinates": [2.4133883763250874, 48.7619901951208]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fd020a409b188ae27de72f880df056fe776f36c8", "fields": {"departement": "75", "stop_lat": 48.89335452765392, "code_postal": "75119", "stop_lon": 2.373223619335145, "coord": [48.89335452765392, 2.373223619335145], "stop_id": 3750039, "stop_desc": "66 RUE CURIAL - 75119", "stop_name": "CURIAL - CRIMEE"}, "geometry": {"type": "Point", "coordinates": [2.373223619335145, 48.89335452765392]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9e95ed7ad55baf020a5dffb02577e408968f5e30", "fields": {"departement": "75", "stop_lat": 48.83344999682683, "code_postal": "75114", "stop_lon": 2.3333474557640264, "coord": [48.83344999682683, 2.3333474557640264], "stop_id": 3754200, "stop_desc": "4 PLACE DENFERT ROCHEREAU - 75114", "stop_name": "DENFERT-ROCHEREAU-METRO-RER"}, "geometry": {"type": "Point", "coordinates": [2.3333474557640264, 48.83344999682683]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4eef1e1bb02346c51a01e5d46201ca5c33083749", "fields": {"departement": "75", "stop_lat": 48.83209291939569, "code_postal": "75114", "stop_lon": 2.3390108437116397, "coord": [48.83209291939569, 2.3390108437116397], "stop_id": 3754201, "stop_desc": "17 BOULEVARD SAINT-JACQUES - 75114", "stop_name": "DAREAU - SAINT-JACQUES"}, "geometry": {"type": "Point", "coordinates": [2.3390108437116397, 48.83209291939569]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "83a07491c531e93df3f804c01d3ef50fec66ec9e", "fields": {"departement": "75", "stop_lat": 48.81910555642793, "code_postal": "75114", "stop_lon": 2.344332015989951, "coord": [48.81910555642793, 2.344332015989951], "stop_id": 3754203, "stop_desc": "FACE 1 AVENUE PIERRE DE COUBERTIN - 75114", "stop_name": "STADE CHARLETY - PORTE DE GENTILLY"}, "geometry": {"type": "Point", "coordinates": [2.344332015989951, 48.81910555642793]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bec86a4bbfb515f95cd72ed899388a51e63d0b85", "fields": {"departement": "75", "stop_lat": 48.82499269324786, "code_postal": "75114", "stop_lon": 2.3360296178253943, "coord": [48.82499269324786, 2.3360296178253943], "stop_id": 3754209, "stop_desc": "61 AVENUE RENE COTY - 75114", "stop_name": "PARC MONTSOURIS"}, "geometry": {"type": "Point", "coordinates": [2.3360296178253943, 48.82499269324786]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0874ebfa7461b75bd7c65a45143342928b84fcde", "fields": {"departement": "75", "stop_lat": 48.82407482173227, "code_postal": "75113", "stop_lon": 2.3536974503613424, "coord": [48.82407482173227, 2.3536974503613424], "stop_id": 3754263, "stop_desc": "28 RUE HENRI PAPE - 75113", "stop_name": "PLACE DE L'ABBE GEORGES HENOCQUE"}, "geometry": {"type": "Point", "coordinates": [2.3536974503613424, 48.82407482173227]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "89d2870af0a6bc818237d68e3600a5f947b55e97", "fields": {"departement": "75", "stop_lat": 48.82300599252082, "code_postal": "75113", "stop_lon": 2.3473950870001614, "coord": [48.82300599252082, 2.3473950870001614], "stop_id": 3754265, "stop_desc": "102 RUE BOBILLOT - 75113", "stop_name": "RUNGIS"}, "geometry": {"type": "Point", "coordinates": [2.3473950870001614, 48.82300599252082]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2e224b83ce7c8b1b4c8d3f7c96ace13dd5932bb8", "fields": {"departement": "75", "stop_lat": 48.82647556307255, "code_postal": "75113", "stop_lon": 2.342127845891707, "coord": [48.82647556307255, 2.342127845891707], "stop_id": 3754268, "stop_desc": "240 RUE DE TOLBIAC - 75113", "stop_name": "GLACIERE - TOLBIAC"}, "geometry": {"type": "Point", "coordinates": [2.342127845891707, 48.82647556307255]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5a0d8279eb2a629829558b57573b49c39ff23639", "fields": {"departement": "75", "stop_lat": 48.82735598995444, "code_postal": "75114", "stop_lon": 2.326759500564941, "coord": [48.82735598995444, 2.326759500564941], "stop_id": 3754274, "stop_desc": "83-85 AVENUE DU GENERAL LECLERC - 75114", "stop_name": "ALESIA - GENERAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.326759500564941, 48.82735598995444]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "177f6592854beb9657f83463e253ec18c064ade2", "fields": {"departement": "75", "stop_lat": 48.82773379495595, "code_postal": "75114", "stop_lon": 2.3315101951611297, "coord": [48.82773379495595, 2.3315101951611297], "stop_id": 3754276, "stop_desc": "39 RUE D'ALESIA - 75114", "stop_name": "LA TOMBE ISSOIRE"}, "geometry": {"type": "Point", "coordinates": [2.3315101951611297, 48.82773379495595]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f8c14c2c8592b89a19b578c2216adeceb78e64e2", "fields": {"departement": "75", "stop_lat": 48.82603512409599, "code_postal": "75114", "stop_lon": 2.331401486496979, "coord": [48.82603512409599, 2.331401486496979], "stop_id": 3754277, "stop_desc": "4 RUE DU DOUANIER ROUSSEAU - 75114", "stop_name": "DOUANIER ROUSSEAU"}, "geometry": {"type": "Point", "coordinates": [2.331401486496979, 48.82603512409599]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fedafdd865442f8498be4c6079567c6adb206dc8", "fields": {"departement": "75", "stop_lat": 48.824209610274316, "code_postal": "75113", "stop_lon": 2.35388805547429, "coord": [48.824209610274316, 2.35388805547429], "stop_id": 3754292, "stop_desc": "28 RUE HENRI PAPE - 75113", "stop_name": "PLACE DE L'ABBE GEORGES HENOCQUE."}, "geometry": {"type": "Point", "coordinates": [2.35388805547429, 48.824209610274316]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4e53d37a28dab3f8e78a3b1d3934f0698f370305", "fields": {"departement": "94", "stop_lat": 48.80855385142401, "code_postal": "94037", "stop_lon": 2.3457865790498724, "coord": [48.80855385142401, 2.3457865790498724], "stop_id": 3754316, "stop_desc": "R JEAN LOUIS - 94037", "stop_name": "GABRIEL PERI - SOLEIL LEVANT"}, "geometry": {"type": "Point", "coordinates": [2.3457865790498724, 48.80855385142401]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "95012734ac3b4ff5e52c55841046ca7dbefc9011", "fields": {"departement": "94", "stop_lat": 48.81352368758163, "code_postal": "94037", "stop_lon": 2.350183037847167, "coord": [48.81352368758163, 2.350183037847167], "stop_id": 3754322, "stop_desc": "8 RUE SAINT-ELOI - 94037", "stop_name": "JEAN JAURES - SAINT ELOI"}, "geometry": {"type": "Point", "coordinates": [2.350183037847167, 48.81352368758163]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e2dbf963d8f0f93cead584916e3d210663938bac", "fields": {"departement": "94", "stop_lat": 48.812400455148484, "code_postal": "94037", "stop_lon": 2.3477876614385598, "coord": [48.812400455148484, 2.3477876614385598], "stop_id": 3754323, "stop_desc": "2 R DU PRESIDENT ALLENDE - 94037", "stop_name": "ALLENDE - REINE BLANCHE"}, "geometry": {"type": "Point", "coordinates": [2.3477876614385598, 48.812400455148484]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cb8379f0e865603e23f454e733c44dda824c1952", "fields": {"departement": "94", "stop_lat": 48.80408663098778, "code_postal": "94043", "stop_lon": 2.349119394220725, "coord": [48.80408663098778, 2.349119394220725], "stop_id": 3754331, "stop_desc": "96 RUE BENOIT MALON - 94043", "stop_name": "LYCEE DARIUS MILHAUD - BENOIT MALON"}, "geometry": {"type": "Point", "coordinates": [2.349119394220725, 48.80408663098778]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "59dffd9e299f04380fb82b22b107027600f8906e", "fields": {"departement": "94", "stop_lat": 48.805147413569976, "code_postal": "94043", "stop_lon": 2.34664323505667, "coord": [48.805147413569976, 2.34664323505667], "stop_id": 3754333, "stop_desc": "91-93 AVENUE CHARLES GIDE - 94043", "stop_name": "LYCEE DARIUS MILHAUD - CHARLES GIDE"}, "geometry": {"type": "Point", "coordinates": [2.34664323505667, 48.805147413569976]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6a638d097a2914afc43aa36d6aa170c5544f0fc5", "fields": {"departement": "94", "stop_lat": 48.807699659302585, "code_postal": "94043", "stop_lon": 2.3497733691171083, "coord": [48.807699659302585, 2.3497733691171083], "stop_id": 3754334, "stop_desc": "5 R MARCEL SEMBAT - 94043", "stop_name": "MARCEL SEMBAT - COLLEGE ALBERT CRON"}, "geometry": {"type": "Point", "coordinates": [2.3497733691171083, 48.807699659302585]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c5cf0e27c29a73562f4f6108066c2e446494935d", "fields": {"departement": "94", "stop_lat": 48.81046784481521, "code_postal": "94043", "stop_lon": 2.3502367086760128, "coord": [48.81046784481521, 2.3502367086760128], "stop_id": 3754335, "stop_desc": "FACE 92 BIS R GABRIEL PERI - 94043", "stop_name": "BENSERADE - C.H.U. DE BICETRE"}, "geometry": {"type": "Point", "coordinates": [2.3502367086760128, 48.81046784481521]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c62ab81acf786b7c87e1fff7195ae1c1cf1e1930", "fields": {"departement": "94", "stop_lat": 48.81225601159191, "code_postal": "94043", "stop_lon": 2.353475970789407, "coord": [48.81225601159191, 2.353475970789407], "stop_id": 3754336, "stop_desc": "FACE 56 RUE DE LA CONVENTION - 94043", "stop_name": "CONVENTION - JAURES"}, "geometry": {"type": "Point", "coordinates": [2.353475970789407, 48.81225601159191]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d8d034c7b29c1b34cc787a26916766e2cfc86c16", "fields": {"departement": "94", "stop_lat": 48.81247113033132, "code_postal": "94043", "stop_lon": 2.357327249822702, "coord": [48.81247113033132, 2.357327249822702], "stop_id": 3754337, "stop_desc": "16-16 BIS PL JEAN JAURES - 94043", "stop_name": "MAIRIE DU KREMLIN-BICETRE"}, "geometry": {"type": "Point", "coordinates": [2.357327249822702, 48.81247113033132]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "268c47e2a93a4290b7c2024ac75ba9d697a083ce", "fields": {"departement": "94", "stop_lat": 48.81030497539593, "code_postal": "94043", "stop_lon": 2.3579387701183836, "coord": [48.81030497539593, 2.3579387701183836], "stop_id": 3754339, "stop_desc": "78 R DU GENERAL LECLERC - 94043", "stop_name": "LECLERC - THOMAS."}, "geometry": {"type": "Point", "coordinates": [2.3579387701183836, 48.81030497539593]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3708576549ec058b279c6d2383cade9d40334a05", "fields": {"departement": "94", "stop_lat": 48.80320641374882, "code_postal": "94003", "stop_lon": 2.3381118633136007, "coord": [48.80320641374882, 2.3381118633136007], "stop_id": 3755001, "stop_desc": "10 AV PAUL VAILLANT COUTURIER - 94003", "stop_name": "MAISON DU GRAND CEDRE"}, "geometry": {"type": "Point", "coordinates": [2.3381118633136007, 48.80320641374882]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a6c7d9089bf9bc11d4d64dbb78fb45a82acec05f", "fields": {"departement": "94", "stop_lat": 48.80015055137099, "code_postal": "94003", "stop_lon": 2.3381662339042713, "coord": [48.80015055137099, 2.3381662339042713], "stop_id": 3755002, "stop_desc": "R DU COLONEL FABIEN - 94003", "stop_name": "COLONEL FABIEN"}, "geometry": {"type": "Point", "coordinates": [2.3381662339042713, 48.80015055137099]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2c1db9b01655a07e66435a3417637212a11b62b7", "fields": {"departement": "94", "stop_lat": 48.80261303302782, "code_postal": "94003", "stop_lon": 2.3439351949817233, "coord": [48.80261303302782, 2.3439351949817233], "stop_id": 3755004, "stop_desc": "FACE AU 197 AVENUE GABRIEL PERI - 94003", "stop_name": "RICARDO - LE PLATEAU"}, "geometry": {"type": "Point", "coordinates": [2.3439351949817233, 48.80261303302782]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ae08a5de18eb4d208f3eed54643b96029f7ec458", "fields": {"departement": "94", "stop_lat": 48.802810947528144, "code_postal": "94003", "stop_lon": 2.3383703705758205, "coord": [48.802810947528144, 2.3383703705758205], "stop_id": 3755008, "stop_desc": "AVENUE PAUL VAILLANT COUTURIER - 94003", "stop_name": "MAISON DU GRAND CEDRE."}, "geometry": {"type": "Point", "coordinates": [2.3383703705758205, 48.802810947528144]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9e81363b392a7faa088b7ff3c5d44e2e689d2ee6", "fields": {"departement": "94", "stop_lat": 48.80632518597072, "code_postal": "94003", "stop_lon": 2.3372138588206237, "coord": [48.80632518597072, 2.3372138588206237], "stop_id": 3755025, "stop_desc": "10 AV PAUL DOUMER - 94003", "stop_name": "HOTEL DE VILLE - CENTRE."}, "geometry": {"type": "Point", "coordinates": [2.3372138588206237, 48.80632518597072]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "22c08ef170ad63d546b692b52ae84c5ed394329e", "fields": {"departement": "91", "stop_lat": 48.72476050436811, "code_postal": "91377", "stop_lon": 2.2605233770372464, "coord": [48.72476050436811, 2.2605233770372464], "stop_id": 3757175, "stop_desc": "R CARNOT - 91377", "stop_name": "MASSY-PALAISEAU-RER"}, "geometry": {"type": "Point", "coordinates": [2.2605233770372464, 48.72476050436811]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4b86a4bb4d8ffc6a22d8fc30600f408fefbc048a", "fields": {"departement": "91", "stop_lat": 48.72284681621443, "code_postal": "91377", "stop_lon": 2.2618303676799454, "coord": [48.72284681621443, 2.2618303676799454], "stop_id": 3757176, "stop_desc": "8-10 AVENUE RAMOLFO GARNIER - 91377", "stop_name": "RUE DE PARIS"}, "geometry": {"type": "Point", "coordinates": [2.2618303676799454, 48.72284681621443]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cf0fa6cc6d9996dbfefd81bc3ea69c6aa783f624", "fields": {"departement": "91", "stop_lat": 48.717255206067776, "code_postal": "91477", "stop_lon": 2.2605480330625074, "coord": [48.717255206067776, 2.2605480330625074], "stop_id": 3757180, "stop_desc": "FACE 31 AVENUE DES COSMONAUTES - 91477", "stop_name": "COSMONAUTES-FLAUBERT"}, "geometry": {"type": "Point", "coordinates": [2.2605480330625074, 48.717255206067776]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "136af3a3dcaab0b76cf73b3269a36e30d2814629", "fields": {"departement": "91", "stop_lat": 48.70948533298787, "code_postal": "91136", "stop_lon": 2.2689664907576734, "coord": [48.70948533298787, 2.2689664907576734], "stop_id": 3757188, "stop_desc": "36-38 RUE DE LA MAIRIE - 91136", "stop_name": "LA FONTAINE"}, "geometry": {"type": "Point", "coordinates": [2.2689664907576734, 48.70948533298787]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "68242b85f8b40b38748bb52bd98c8e2f03867e3a", "fields": {"departement": "91", "stop_lat": 48.70381969670651, "code_postal": "91136", "stop_lon": 2.2805713356192094, "coord": [48.70381969670651, 2.2805713356192094], "stop_id": 3757191, "stop_desc": "99-101 ROUTE DE VERSAILLES - 91136", "stop_name": "PETIT CHAMPLAN"}, "geometry": {"type": "Point", "coordinates": [2.2805713356192094, 48.70381969670651]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "186a6d20ceb971fff68f3d4eb52b1b40b0761150", "fields": {"departement": "91", "stop_lat": 48.722865008113295, "code_postal": "91377", "stop_lon": 2.2621699682623326, "coord": [48.722865008113295, 2.2621699682623326], "stop_id": 3757205, "stop_desc": "15 AVENUE RAMOLFO GARNIER - 91377", "stop_name": "RUE DE PARIS"}, "geometry": {"type": "Point", "coordinates": [2.2621699682623326, 48.722865008113295]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "03431661c472d82339b7911b4fa24cbe5a3eb7be", "fields": {"departement": "91", "stop_lat": 48.71258187397343, "code_postal": "91477", "stop_lon": 2.261573604137755, "coord": [48.71258187397343, 2.261573604137755], "stop_id": 3757211, "stop_desc": "104 AVENUE DE STALINGRAD - 91477", "stop_name": "PIERRE CURIE"}, "geometry": {"type": "Point", "coordinates": [2.261573604137755, 48.71258187397343]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "69d8a219bc22cc38255b2089211d05a5092cf1ee", "fields": {"departement": "91", "stop_lat": 48.71059686538975, "code_postal": "91136", "stop_lon": 2.2638718288836572, "coord": [48.71059686538975, 2.2638718288836572], "stop_id": 3757213, "stop_desc": "FACE 7-9 RUE DE LA BRETECHE - 91136", "stop_name": "BUTTE CHAUMONT"}, "geometry": {"type": "Point", "coordinates": [2.2638718288836572, 48.71059686538975]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "693b2ad0223879142f098235aa86943c263d9928", "fields": {"departement": "91", "stop_lat": 48.70381969670651, "code_postal": "91136", "stop_lon": 2.2805713356192094, "coord": [48.70381969670651, 2.2805713356192094], "stop_id": 3757219, "stop_desc": "99-101 ROUTE DE VERSAILLES - 91136", "stop_name": "PETIT CHAMPLAN"}, "geometry": {"type": "Point", "coordinates": [2.2805713356192094, 48.70381969670651]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "19186de75867f7527f2236eddf35189f8892f162", "fields": {"departement": "91", "stop_lat": 48.70391868030383, "code_postal": "91136", "stop_lon": 2.280802089957941, "coord": [48.70391868030383, 2.280802089957941], "stop_id": 3757220, "stop_desc": "FACE99-101 ROUTE DE VERSAILLES - 91136", "stop_name": "PETIT CHAMPLAN"}, "geometry": {"type": "Point", "coordinates": [2.280802089957941, 48.70391868030383]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fb6cc678b1a2521131d0bacb53af0fd6e6a2ed85", "fields": {"departement": "91", "stop_lat": 48.69987743744206, "code_postal": "91136", "stop_lon": 2.2889539184996273, "coord": [48.69987743744206, 2.2889539184996273], "stop_id": 3757221, "stop_desc": "23 ROUTE DE VERSAILLES - 91136", "stop_name": "ROUTE DE VERSAILLES N0 21-30"}, "geometry": {"type": "Point", "coordinates": [2.2889539184996273, 48.69987743744206]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c7d4a158f63541d3068b99a3f81464d193d53901", "fields": {"departement": "91", "stop_lat": 48.697317212120595, "code_postal": "91345", "stop_lon": 2.292826140253021, "coord": [48.697317212120595, 2.292826140253021], "stop_id": 3757224, "stop_desc": "2 RUE MICHEL VINCENT - 91345", "stop_name": "PLACE CHARLES STEBER"}, "geometry": {"type": "Point", "coordinates": [2.292826140253021, 48.697317212120595]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "db016af39dfc640b327573a698a65f3c95dc873d", "fields": {"departement": "91", "stop_lat": 48.720482904837056, "code_postal": "91377", "stop_lon": 2.261888133745016, "coord": [48.720482904837056, 2.261888133745016], "stop_id": 3757239, "stop_desc": "9 RUE EMILE BAUDOT - 91377", "stop_name": "BARBUSSE-BAUDOT"}, "geometry": {"type": "Point", "coordinates": [2.261888133745016, 48.720482904837056]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a72f6b01381e425d648cd1c4f5f47b0f2b803dc1", "fields": {"departement": "91", "stop_lat": 48.72703528430663, "code_postal": "91377", "stop_lon": 2.277421212316732, "coord": [48.72703528430663, 2.277421212316732], "stop_id": 3759057, "stop_desc": "AVENUE DE L'EUROPE - 91377", "stop_name": "AVENUE DE L'EUROPE - CENTRE COMMERCIAL"}, "geometry": {"type": "Point", "coordinates": [2.277421212316732, 48.72703528430663]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f8a04a7c8b9f8b5e0f11d787182b5baef02bb057", "fields": {"departement": "91", "stop_lat": 48.70255564704986, "code_postal": "91161", "stop_lon": 2.3203207017167378, "coord": [48.70255564704986, 2.3203207017167378], "stop_id": 3759071, "stop_desc": "7 AVENUE MAZARIN - 91161", "stop_name": "PLACE DE LA LIBERATION"}, "geometry": {"type": "Point", "coordinates": [2.3203207017167378, 48.70255564704986]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "03d50d7e98840ea1203fcee6e4f3bec75932e75e", "fields": {"departement": "91", "stop_lat": 48.702134037740976, "code_postal": "91432", "stop_lon": 2.3280612447081723, "coord": [48.702134037740976, 2.3280612447081723], "stop_id": 3759075, "stop_desc": "41 AVENUE GABRIEL PERI - 91432", "stop_name": "PIERRE LOTI"}, "geometry": {"type": "Point", "coordinates": [2.3280612447081723, 48.702134037740976]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "488f3555932777e9339547e47b99e1617337a21e", "fields": {"departement": "91", "stop_lat": 48.70731144827232, "code_postal": "91432", "stop_lon": 2.3284541793557256, "coord": [48.70731144827232, 2.3284541793557256], "stop_id": 3759080, "stop_desc": "PLACE GABRIEL FONTAINE - 91432", "stop_name": "GABRIEL FONTAINE"}, "geometry": {"type": "Point", "coordinates": [2.3284541793557256, 48.70731144827232]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5857d29bc64d36afa67ab82222c26815c131fd54", "fields": {"departement": "91", "stop_lat": 48.70617915310959, "code_postal": "91432", "stop_lon": 2.333153298254694, "coord": [48.70617915310959, 2.333153298254694], "stop_id": 3759082, "stop_desc": "10 AVENUE DU GENERAL WARABIOT - 91432", "stop_name": "MAIRIE DE MORANGIS"}, "geometry": {"type": "Point", "coordinates": [2.333153298254694, 48.70617915310959]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "34300d3b329958fb67d9b5a819b8e6eead115ee4", "fields": {"departement": "91", "stop_lat": 48.70546774571428, "code_postal": "91479", "stop_lon": 2.3553982615097304, "coord": [48.70546774571428, 2.3553982615097304], "stop_id": 3759087, "stop_desc": "AVENUE DE VERDUN - 91479", "stop_name": "LES FLEURS"}, "geometry": {"type": "Point", "coordinates": [2.3553982615097304, 48.70546774571428]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6483a54176ef127fcbdb42cc854c4cc8e3339dad", "fields": {"departement": "91", "stop_lat": 48.705538053345364, "code_postal": "91027", "stop_lon": 2.3638861287028217, "coord": [48.705538053345364, 2.3638861287028217], "stop_id": 3759089, "stop_desc": "FACE 88-96 AV DE MORANGIS - 91027", "stop_name": "FROIDES BOUILLIES"}, "geometry": {"type": "Point", "coordinates": [2.3638861287028217, 48.705538053345364]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a2d42410420bbcfb665d78f06f8f74c00055d2ca", "fields": {"departement": "91", "stop_lat": 48.697470201935985, "code_postal": "91027", "stop_lon": 2.3811809353960895, "coord": [48.697470201935985, 2.3811809353960895], "stop_id": 3759105, "stop_desc": "19 AVENUE DU 18 AVRIL - 91027", "stop_name": "LYCEE MARCEL PAGNOL"}, "geometry": {"type": "Point", "coordinates": [2.3811809353960895, 48.697470201935985]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "25ae014ec1faa42cb261afba2caf37bae841c77c", "fields": {"departement": "91", "stop_lat": 48.70847215909083, "code_postal": "91027", "stop_lon": 2.3811630638879526, "coord": [48.70847215909083, 2.3811630638879526], "stop_id": 3759111, "stop_desc": "44 AVENUE MARCEL SEMBAT - 91027", "stop_name": "SEMBAT"}, "geometry": {"type": "Point", "coordinates": [2.3811630638879526, 48.70847215909083]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a0482f64e943bd978959ac32d7965722a6741a22", "fields": {"departement": "75", "stop_lat": 48.82245759415938, "code_postal": "75114", "stop_lon": 2.3254810437249733, "coord": [48.82245759415938, 2.3254810437249733], "stop_id": 3763974, "stop_desc": "5 PL DU 25 AOUT 1944 - 75114", "stop_name": "PORTE D'ORLEANS-METRO"}, "geometry": {"type": "Point", "coordinates": [2.3254810437249733, 48.82245759415938]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f8d4369faf293434eb756edab33d2216f70be2e9", "fields": {"departement": "94", "stop_lat": 48.80906595180364, "code_postal": "94003", "stop_lon": 2.326246107567719, "coord": [48.80906595180364, 2.326246107567719], "stop_id": 3763980, "stop_desc": "24 AVENUE ARISTIDE BRIAND - 94003", "stop_name": "VACHE NOIRE"}, "geometry": {"type": "Point", "coordinates": [2.326246107567719, 48.80906595180364]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "268195ded775b3f1f8248ce90100967235994139", "fields": {"departement": "92", "stop_lat": 48.75820876111079, "code_postal": "92002", "stop_lon": 2.3070481155055815, "coord": [48.75820876111079, 2.3070481155055815], "stop_id": 3764003, "stop_desc": "80 AVENUE ARISTIDE BRIAND - 92002", "stop_name": "FERNAND FENZY"}, "geometry": {"type": "Point", "coordinates": [2.3070481155055815, 48.75820876111079]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3b9c19e59e498d6c8a2ae92fc961aa0ae2c70dc0", "fields": {"departement": "92", "stop_lat": 48.744392912887015, "code_postal": "92002", "stop_lon": 2.303318700823705, "coord": [48.744392912887015, 2.303318700823705], "stop_id": 3764009, "stop_desc": "115 AVENUE DE LA DIVISION LECLERC - 92002", "stop_name": "BLANCHE DE CASTILLE"}, "geometry": {"type": "Point", "coordinates": [2.303318700823705, 48.744392912887015]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "43890effdcb315d978f88119af6914ddea0ee400", "fields": {"departement": "92", "stop_lat": 48.738917689264994, "code_postal": "92002", "stop_lon": 2.2987970481475424, "coord": [48.738917689264994, 2.2987970481475424], "stop_id": 3764012, "stop_desc": "52-54 AVENUE DU PRESIDENT KENNEDY - 92002", "stop_name": "SAUSSAYE - MIRABEAU"}, "geometry": {"type": "Point", "coordinates": [2.2987970481475424, 48.738917689264994]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9ddcd1bf6f65c886365943115a7621b6192011b2", "fields": {"departement": "91", "stop_lat": 48.73481745136846, "code_postal": "91377", "stop_lon": 2.2941936819238933, "coord": [48.73481745136846, 2.2941936819238933], "stop_id": 3764016, "stop_desc": "FACE 5 RUE D'ALGER - 91377", "stop_name": "BIARRITZ"}, "geometry": {"type": "Point", "coordinates": [2.2941936819238933, 48.73481745136846]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fb63fb128a34d125c88fde90da6d014ef43f9f73", "fields": {"departement": "91", "stop_lat": 48.73395311332253, "code_postal": "91377", "stop_lon": 2.290335413716929, "coord": [48.73395311332253, 2.290335413716929], "stop_id": 3764017, "stop_desc": "RUE DE MONTPELLIER - 91377", "stop_name": "PLACE DE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.290335413716929, 48.73395311332253]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8bd8aa42c65a291dc580e02f5ad3f9e2c3955632", "fields": {"departement": "92", "stop_lat": 48.77960219728907, "code_postal": "92014", "stop_lon": 2.315508420878453, "coord": [48.77960219728907, 2.315508420878453], "stop_id": 3764024, "stop_desc": "PLACE CONDORCET - 92014", "stop_name": "CONDORCET - MAIRIE-RER"}, "geometry": {"type": "Point", "coordinates": [2.315508420878453, 48.77960219728907]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "648a00f2802ef3b2b4a3e6178946587828bd5ca3", "fields": {"departement": "92", "stop_lat": 48.75451292849927, "code_postal": "92002", "stop_lon": 2.300960444258561, "coord": [48.75451292849927, 2.300960444258561], "stop_id": 3764088, "stop_desc": "FACE 20 R VELPEAU - 92002", "stop_name": "ANTONY RER"}, "geometry": {"type": "Point", "coordinates": [2.300960444258561, 48.75451292849927]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4feaff31368ce2cd3213a3317e4c1f9753b812d0", "fields": {"departement": "92", "stop_lat": 48.75820876111079, "code_postal": "92002", "stop_lon": 2.3070481155055815, "coord": [48.75820876111079, 2.3070481155055815], "stop_id": 3764091, "stop_desc": "80 AVENUE ARISTIDE BRIAND - 92002", "stop_name": "FERNAND FENZY"}, "geometry": {"type": "Point", "coordinates": [2.3070481155055815, 48.75820876111079]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c1cf919bd75a8124700544f958a353c6a3eb7c80", "fields": {"departement": "92", "stop_lat": 48.760366045536514, "code_postal": "92002", "stop_lon": 2.3075770618196296, "coord": [48.760366045536514, 2.3075770618196296], "stop_id": 3764094, "stop_desc": "105 AVENUE ARISTIDE BRIAND - 92002", "stop_name": "MORTEAUX"}, "geometry": {"type": "Point", "coordinates": [2.3075770618196296, 48.760366045536514]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e81fedd9ea18fb936a9e17747b8938aa42d2740f", "fields": {"departement": "92", "stop_lat": 48.768177510907535, "code_postal": "92002", "stop_lon": 2.311026218250398, "coord": [48.768177510907535, 2.311026218250398], "stop_id": 3764096, "stop_desc": "FACE 49 AVENUE RAYMOND ARON - 92002", "stop_name": "NORMANDIE"}, "geometry": {"type": "Point", "coordinates": [2.311026218250398, 48.768177510907535]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f392abb33f7f2f25affb0567d1875cae29014ea5", "fields": {"departement": "91", "stop_lat": 48.72502703563501, "code_postal": "91377", "stop_lon": 2.255835936549794, "coord": [48.72502703563501, 2.255835936549794], "stop_id": 3764102, "stop_desc": "PLACE PIERRE SEMARD - 91377", "stop_name": "MASSY-PALAISEAU RER"}, "geometry": {"type": "Point", "coordinates": [2.255835936549794, 48.72502703563501]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "47b7646dfacfcf2520f3bbe39939aef48b42db6c", "fields": {"departement": "91", "stop_lat": 48.74122106613091, "code_postal": "91645", "stop_lon": 2.265241948180558, "coord": [48.74122106613091, 2.265241948180558], "stop_id": 3764117, "stop_desc": "33 AVENUE GABRIEL PERI - 91645", "stop_name": "CARNOT"}, "geometry": {"type": "Point", "coordinates": [2.265241948180558, 48.74122106613091]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "23d16af31f9b07d46d4b0adf6811b41137933a58", "fields": {"departement": "91", "stop_lat": 48.74282908897804, "code_postal": "91645", "stop_lon": 2.263812739611913, "coord": [48.74282908897804, 2.263812739611913], "stop_id": 3764119, "stop_desc": "FACE 27 BOULEVARD DU MARECHAL FOCH - 91645", "stop_name": "GRANDS CHENES"}, "geometry": {"type": "Point", "coordinates": [2.263812739611913, 48.74282908897804]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "53b552947d8cc564ffaf42fec976c4f26dd57281", "fields": {"departement": "91", "stop_lat": 48.74630205931568, "code_postal": "91645", "stop_lon": 2.2697335974341466, "coord": [48.74630205931568, 2.2697335974341466], "stop_id": 3764122, "stop_desc": "BOULEVARD DU MARECHAL FOCH - 91645", "stop_name": "PARON"}, "geometry": {"type": "Point", "coordinates": [2.2697335974341466, 48.74630205931568]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "59cd83b9e268048dfe738fff6cf485dcce7c4d4d", "fields": {"departement": "91", "stop_lat": 48.75177710235545, "code_postal": "91645", "stop_lon": 2.271928491643091, "coord": [48.75177710235545, 2.271928491643091], "stop_id": 3764127, "stop_desc": "CARREFOUR DE L'EUROPE - 91645", "stop_name": "LES ANTES"}, "geometry": {"type": "Point", "coordinates": [2.271928491643091, 48.75177710235545]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4768473b1ab9835b70729bac58c1ef5d503d9fe9", "fields": {"departement": "92", "stop_lat": 48.75645598632882, "code_postal": "92002", "stop_lon": 2.2818461262569687, "coord": [48.75645598632882, 2.2818461262569687], "stop_id": 3764131, "stop_desc": "171 AVENUE DU BOIS DE VERRIERES - 92002", "stop_name": "MARCEL MAILLARD"}, "geometry": {"type": "Point", "coordinates": [2.2818461262569687, 48.75645598632882]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "39b85049295a3405aec774993f063205871bfd69", "fields": {"departement": "91", "stop_lat": 48.73780692714676, "code_postal": "91377", "stop_lon": 2.2675975711490244, "coord": [48.73780692714676, 2.2675975711490244], "stop_id": 3764144, "stop_desc": "5 RUE PRE - 91377", "stop_name": "VALLEE DE LA BIEVRE"}, "geometry": {"type": "Point", "coordinates": [2.2675975711490244, 48.73780692714676]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "108c3132e28314bf6faf5dc06275ee1a1835cd3a", "fields": {"departement": "75", "stop_lat": 48.82368936403929, "code_postal": "75114", "stop_lon": 2.3318237063338647, "coord": [48.82368936403929, 2.3318237063338647], "stop_id": 3764430, "stop_desc": "59 AVENUE REILLE - 75114", "stop_name": "MONTSOURIS-TOMBE ISSOIRE"}, "geometry": {"type": "Point", "coordinates": [2.3318237063338647, 48.82368936403929]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "825194534295fea971913dd81b6e4213a9f00bca", "fields": {"departement": "75", "stop_lat": 48.864656695043344, "code_postal": "75120", "stop_lon": 2.3987998628210687, "coord": [48.864656695043344, 2.3987998628210687], "stop_id": 3687567, "stop_desc": "4 PLACE GAMBETTA - 75120", "stop_name": "GAMBETTA"}, "geometry": {"type": "Point", "coordinates": [2.3987998628210687, 48.864656695043344]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1e9110028a59ce2a4707ae6efe6752078c43a614", "fields": {"departement": "75", "stop_lat": 48.86478889391968, "code_postal": "75120", "stop_lon": 2.403663165101848, "coord": [48.86478889391968, 2.403663165101848], "stop_id": 3687570, "stop_desc": "3 RUE BELGRAND - 75120", "stop_name": "PELLEPORT"}, "geometry": {"type": "Point", "coordinates": [2.403663165101848, 48.86478889391968]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ca406b03fd188163323e72f48577aafdf9d90ac8", "fields": {"departement": "93", "stop_lat": 48.879683474171955, "code_postal": "93064", "stop_lon": 2.4743203485274017, "coord": [48.879683474171955, 2.4743203485274017], "stop_id": 3687610, "stop_desc": "FACE 16 RUE DE LISBONNE - 93064", "stop_name": "SAUSSAIE BEAUCLAIR - DOMUS"}, "geometry": {"type": "Point", "coordinates": [2.4743203485274017, 48.879683474171955]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "032210d702534b241b52af0ffab1502827491e38", "fields": {"departement": "93", "stop_lat": 48.86062649827987, "code_postal": "93006", "stop_lon": 2.419989610839223, "coord": [48.86062649827987, 2.419989610839223], "stop_id": 3687582, "stop_desc": "81 AVENUE DE LA REPUBLIQUE - 93006", "stop_name": "REPUBLIQUE - ROBESPIERRE"}, "geometry": {"type": "Point", "coordinates": [2.419989610839223, 48.86062649827987]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ac42c1d1ce2f07df2e019022066228ef84556cbf", "fields": {"departement": "93", "stop_lat": 48.87981815748603, "code_postal": "93064", "stop_lon": 2.4744297144074237, "coord": [48.87981815748603, 2.4744297144074237], "stop_id": 3687611, "stop_desc": "16 RUE DE LISBONNE - 93064", "stop_name": "SAUSSAIE BEAUCLAIR - DOMUS"}, "geometry": {"type": "Point", "coordinates": [2.4744297144074237, 48.87981815748603]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2c63b39b1cfad24ed49891da97b15343a5ae3b9e", "fields": {"departement": "93", "stop_lat": 48.8790638869726, "code_postal": "93064", "stop_lon": 2.4657751945393724, "coord": [48.8790638869726, 2.4657751945393724], "stop_id": 3687607, "stop_desc": "FACE 74-76 RUELLE DE LA BOISSIERE - 93064", "stop_name": "RUELLE BOISSIERE"}, "geometry": {"type": "Point", "coordinates": [2.4657751945393724, 48.8790638869726]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "35296de74bc19ff841517d19e50be71f85be2b04", "fields": {"departement": "93", "stop_lat": 48.861895737161, "code_postal": "93006", "stop_lon": 2.417035770572929, "coord": [48.861895737161, 2.417035770572929], "stop_id": 3687580, "stop_desc": "47 AVENUE DE LA REPUBLIQUE - 93006", "stop_name": "GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.417035770572929, 48.861895737161]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c2bc21dea53edc05401c7b1c008214a9148d2092", "fields": {"departement": "93", "stop_lat": 48.858522424684516, "code_postal": "93048", "stop_lon": 2.4333208356182703, "coord": [48.858522424684516, 2.4333208356182703], "stop_id": 3687587, "stop_desc": "50 BOULEVARD CHANZY - 93048", "stop_name": "MARCHE DE MONTREUIL"}, "geometry": {"type": "Point", "coordinates": [2.4333208356182703, 48.858522424684516]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "80f40843794ec6fbff228ea94487ca19ab8f489e", "fields": {"departement": "93", "stop_lat": 48.85962371632797, "code_postal": "93048", "stop_lon": 2.4383489897739583, "coord": [48.85962371632797, 2.4383489897739583], "stop_id": 3687592, "stop_desc": "38 BOULEVARD ROUGET DE LISLE - 93048", "stop_name": "VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.4383489897739583, 48.85962371632797]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9f3894736dee0acd0eb5b05a3d694a5ed24c0bb0", "fields": {"departement": "93", "stop_lat": 48.863424609709654, "code_postal": "93048", "stop_lon": 2.449267546049426, "coord": [48.863424609709654, 2.449267546049426], "stop_id": 3687595, "stop_desc": "79 RUE DE ROSNY - 93048", "stop_name": "LYCEE JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.449267546049426, 48.863424609709654]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2138b9058a9252a6f18fa01546df1ff5413802eb", "fields": {"departement": "93", "stop_lat": 48.858535536270956, "code_postal": "93048", "stop_lon": 2.428063301132043, "coord": [48.858535536270956, 2.428063301132043], "stop_id": 3687584, "stop_desc": "105 BOULEVARD CHANZY - 93048", "stop_name": "SORINS"}, "geometry": {"type": "Point", "coordinates": [2.428063301132043, 48.858535536270956]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f5d6b90699abe188719cb152fdd17d919f3bc50f", "fields": {"departement": "93", "stop_lat": 48.86441887778646, "code_postal": "93048", "stop_lon": 2.45275696892194, "coord": [48.86441887778646, 2.45275696892194], "stop_id": 3687596, "stop_desc": "128-130 RUE DE ROSNY - 93048", "stop_name": "DANTON"}, "geometry": {"type": "Point", "coordinates": [2.45275696892194, 48.86441887778646]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d5fbffba936005327d13e6757255ece700641db3", "fields": {"departement": "94", "stop_lat": 48.84961532686182, "code_postal": "94080", "stop_lon": 2.4339716348977376, "coord": [48.84961532686182, 2.4339716348977376], "stop_id": 3687690, "stop_desc": "77 AVENUE DE LA REPUBLIQUE - 94080", "stop_name": "RUE DE MONTREUIL"}, "geometry": {"type": "Point", "coordinates": [2.4339716348977376, 48.84961532686182]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "739643a40032fed1dd9622e50b74d6141ab98336", "fields": {"departement": "93", "stop_lat": 48.876113760081886, "code_postal": "93045", "stop_lon": 2.4169758991242363, "coord": [48.876113760081886, 2.4169758991242363], "stop_id": 3687700, "stop_desc": "111 AVENUE PASTEUR - 93045", "stop_name": "RUE DE NOISY-LE-SEC"}, "geometry": {"type": "Point", "coordinates": [2.4169758991242363, 48.876113760081886]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2ea1183f8b33111c3e09fce56f30cc51da326d6d", "fields": {"departement": "94", "stop_lat": 48.8446246823592, "code_postal": "94080", "stop_lon": 2.437094232812113, "coord": [48.8446246823592, 2.437094232812113], "stop_id": 3687695, "stop_desc": "FACE 10 AVENUE DE PARIS - 94080", "stop_name": "AVENUE DU CHATEAU"}, "geometry": {"type": "Point", "coordinates": [2.437094232812113, 48.8446246823592]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a97f7357133d3f78fd1d96956b99c0859e13fd26", "fields": {"departement": "93", "stop_lat": 48.874254134629716, "code_postal": "93064", "stop_lon": 2.482753346234189, "coord": [48.874254134629716, 2.482753346234189], "stop_id": 3687731, "stop_desc": "2 RUE RICHARD GARDEBLED - 93064", "stop_name": "EGLISE DE ROSNY"}, "geometry": {"type": "Point", "coordinates": [2.482753346234189, 48.874254134629716]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "73f4e2eb174bfcc24de671e4c6383b3f875174f3", "fields": {"departement": "93", "stop_lat": 48.86335244139611, "code_postal": "93048", "stop_lon": 2.449553449810795, "coord": [48.86335244139611, 2.449553449810795], "stop_id": 3687724, "stop_desc": "90 RUE DE ROSNY - 93048", "stop_name": "LYCEE JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.449553449810795, 48.86335244139611]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ed2cf810c53e8fbc866d387f75261b907fb50c0c", "fields": {"departement": "94", "stop_lat": 48.84738391423499, "code_postal": "94080", "stop_lon": 2.4370178373280935, "coord": [48.84738391423499, 2.4370178373280935], "stop_id": 3687694, "stop_desc": "24 AVENUE DU CHATEAU - 94080", "stop_name": "VINCENNES RER"}, "geometry": {"type": "Point", "coordinates": [2.4370178373280935, 48.84738391423499]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4451205f29d0d4b33e9f2decdaeafbe5edd08697", "fields": {"departement": "93", "stop_lat": 48.86988799585144, "code_postal": "93048", "stop_lon": 2.4656298376384536, "coord": [48.86988799585144, 2.4656298376384536], "stop_id": 3687728, "stop_desc": "FACE 265 RUE DE ROSNY - 93048", "stop_name": "ACACIA"}, "geometry": {"type": "Point", "coordinates": [2.4656298376384536, 48.86988799585144]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f8311660c4b51a7a8d8196287174674f5143f041", "fields": {"departement": "94", "stop_lat": 48.856451330814025, "code_postal": "94033", "stop_lon": 2.481763616113396, "coord": [48.856451330814025, 2.481763616113396], "stop_id": 3690360, "stop_desc": "FACE 3 RUE JEAN MACE - 94033", "stop_name": "CHARLES GARCIA - COLLEGE JEAN MACE"}, "geometry": {"type": "Point", "coordinates": [2.481763616113396, 48.856451330814025]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f39e7440874b24d5953f884277f94903ef79c811", "fields": {"departement": "94", "stop_lat": 48.84819631751823, "code_postal": "94033", "stop_lon": 2.4780229275469767, "coord": [48.84819631751823, 2.4780229275469767], "stop_id": 3690376, "stop_desc": "109 BOULEVARD GALLIENI - 94033", "stop_name": "CIMETIERE DE FONTENAY-SOUS-BOIS"}, "geometry": {"type": "Point", "coordinates": [2.4780229275469767, 48.84819631751823]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6058313ebf1441a15e6af7f2db8d6419c74579d7", "fields": {"departement": "94", "stop_lat": 48.855409597573725, "code_postal": "94033", "stop_lon": 2.4810933428363446, "coord": [48.855409597573725, 2.4810933428363446], "stop_id": 3690359, "stop_desc": "3 RUE JEAN MACE - 94033", "stop_name": "CHARLES GARCIA - COLLEGE JEAN MACE"}, "geometry": {"type": "Point", "coordinates": [2.4810933428363446, 48.855409597573725]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f16fe1c710fff7ffb946af1ab42d0cd84d61bf94", "fields": {"departement": "94", "stop_lat": 48.856770986269645, "code_postal": "94033", "stop_lon": 2.4775013942069823, "coord": [48.856770986269645, 2.4775013942069823], "stop_id": 3690358, "stop_desc": "12 RUE JEAN MACE - 94033", "stop_name": "JEAN MACE - MARTIN LUTHER KING"}, "geometry": {"type": "Point", "coordinates": [2.4775013942069823, 48.856770986269645]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "092ac0de58bddd59c3fb9486a680ca9cbedeb786", "fields": {"departement": "94", "stop_lat": 48.85664522655266, "code_postal": "94033", "stop_lon": 2.4774465735974633, "coord": [48.85664522655266, 2.4774465735974633], "stop_id": 3690357, "stop_desc": "17 RUE JEAN MACE - 94033", "stop_name": "JEAN MACE - MARTIN LUTHER KING"}, "geometry": {"type": "Point", "coordinates": [2.4774465735974633, 48.85664522655266]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "79592a2fb7346808a6d41ae60f9546bb3feb90c4", "fields": {"departement": "94", "stop_lat": 48.856487083172595, "code_postal": "94033", "stop_lon": 2.4743271450001507, "coord": [48.856487083172595, 2.4743271450001507], "stop_id": 3690356, "stop_desc": "FACE 13 RUE JEAN PIERRE TIMBAUD - 94033", "stop_name": "AIMEE MATTERRAZ"}, "geometry": {"type": "Point", "coordinates": [2.4743271450001507, 48.856487083172595]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fa10087dcff3387d33dc6083834448004e25eb82", "fields": {"departement": "94", "stop_lat": 48.855186048482445, "code_postal": "94033", "stop_lon": 2.4874531476263697, "coord": [48.855186048482445, 2.4874531476263697], "stop_id": 3690363, "stop_desc": "14 AVENUE DES OLYMPIADES - 94033", "stop_name": "PABLO PICASSO"}, "geometry": {"type": "Point", "coordinates": [2.4874531476263697, 48.855186048482445]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2130e5984c4e65d4528d4132212f93bba43d7e4d", "fields": {"departement": "94", "stop_lat": 48.85812367901838, "code_postal": "94033", "stop_lon": 2.495375181556799, "coord": [48.85812367901838, 2.495375181556799], "stop_id": 3690371, "stop_desc": "RUE DE LA PRAIRIE - 94033", "stop_name": "LES ALOUETTES"}, "geometry": {"type": "Point", "coordinates": [2.495375181556799, 48.85812367901838]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e2664a11dccae83b006eebf13f8d96a18af4b49b", "fields": {"departement": "94", "stop_lat": 48.85890577468561, "code_postal": "94033", "stop_lon": 2.4733937075926353, "coord": [48.85890577468561, 2.4733937075926353], "stop_id": 3690352, "stop_desc": "172 BIS RUE VICTOR HUGO - 94033", "stop_name": "VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.4733937075926353, 48.85890577468561]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1b04b5c5120303510f9eeef9d4f2e557f2b100af", "fields": {"departement": "93", "stop_lat": 48.85618085584094, "code_postal": "93049", "stop_lon": 2.4965269599485422, "coord": [48.85618085584094, 2.4965269599485422], "stop_id": 3690370, "stop_desc": "RUE DE LA PRAIRIE - 93049", "stop_name": "LA PRAIRIE"}, "geometry": {"type": "Point", "coordinates": [2.4965269599485422, 48.85618085584094]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "774ae564cbb4b1c2206eedaf1b7e5be36088ee94", "fields": {"departement": "94", "stop_lat": 48.855409597573725, "code_postal": "94033", "stop_lon": 2.4810933428363446, "coord": [48.855409597573725, 2.4810933428363446], "stop_id": 3690413, "stop_desc": "3 RUE JEAN MACE - 94033", "stop_name": "CHARLES GARCIA - COLLEGE JEAN MACE"}, "geometry": {"type": "Point", "coordinates": [2.4810933428363446, 48.855409597573725]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "719e2464799bafcab518504eedad6208c22e0076", "fields": {"departement": "94", "stop_lat": 48.856487083172595, "code_postal": "94033", "stop_lon": 2.4743271450001507, "coord": [48.856487083172595, 2.4743271450001507], "stop_id": 3690410, "stop_desc": "FACE 13 RUE JEAN PIERRE TIMBAUD - 94033", "stop_name": "AIMEE MATTERRAZ"}, "geometry": {"type": "Point", "coordinates": [2.4743271450001507, 48.856487083172595]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6adc49e6dab4d2c10178b79251e0d4c87b87fe00", "fields": {"departement": "94", "stop_lat": 48.843726597210775, "code_postal": "94033", "stop_lon": 2.464652776320995, "coord": [48.843726597210775, 2.464652776320995], "stop_id": 3690381, "stop_desc": "18 PL MOREAU DAVID - 94033", "stop_name": "FONTENAY-SOUS-BOIS RER"}, "geometry": {"type": "Point", "coordinates": [2.464652776320995, 48.843726597210775]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e4b794e06dd2e40b2cd5221b4fad4e7c46d0528e", "fields": {"departement": "94", "stop_lat": 48.85297997424272, "code_postal": "94033", "stop_lon": 2.450579667755212, "coord": [48.85297997424272, 2.450579667755212], "stop_id": 3690438, "stop_desc": "7-9 AVENUE PARMENTIER - 94033", "stop_name": "GEORGES LE TIEC"}, "geometry": {"type": "Point", "coordinates": [2.450579667755212, 48.85297997424272]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "411957d44cf5935171a05cd6faa3ccd68bdb077b", "fields": {"departement": "94", "stop_lat": 48.849991154984615, "code_postal": "94033", "stop_lon": 2.4556936487973515, "coord": [48.849991154984615, 2.4556936487973515], "stop_id": 3690390, "stop_desc": "8 AVENUE DE STALINGRAD - 94033", "stop_name": "LES RIGOLLOTS"}, "geometry": {"type": "Point", "coordinates": [2.4556936487973515, 48.849991154984615]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1703fc37d62a441ffcc322fc1fea2026bb0ecb9c", "fields": {"departement": "94", "stop_lat": 48.8455457382008, "code_postal": "94033", "stop_lon": 2.4611848538596774, "coord": [48.8455457382008, 2.4611848538596774], "stop_id": 3690436, "stop_desc": "47 BIS RUE MALLIER - 94033", "stop_name": "MALLIER - GAUCHER"}, "geometry": {"type": "Point", "coordinates": [2.4611848538596774, 48.8455457382008]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c4d06affa57bfa0749d012c4919f3f5c63598d40", "fields": {"departement": "94", "stop_lat": 48.85912474105891, "code_postal": "94033", "stop_lon": 2.492749421074358, "coord": [48.85912474105891, 2.492749421074358], "stop_id": 3690440, "stop_desc": "FACE12BIS RUE DU BOIS GALON - 94033", "stop_name": "BOIS GALON"}, "geometry": {"type": "Point", "coordinates": [2.492749421074358, 48.85912474105891]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "806fbcc42f1f1f648436ae362f707abc4d08cbd3", "fields": {"departement": "94", "stop_lat": 48.85812367901838, "code_postal": "94033", "stop_lon": 2.495375181556799, "coord": [48.85812367901838, 2.495375181556799], "stop_id": 3690425, "stop_desc": "RUE DE LA PRAIRIE - 94033", "stop_name": "LES ALOUETTES"}, "geometry": {"type": "Point", "coordinates": [2.495375181556799, 48.85812367901838]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3c3358fddd8ac2b0b4f7845c0b79df56ecef63f2", "fields": {"departement": "94", "stop_lat": 48.85812367901838, "code_postal": "94033", "stop_lon": 2.495375181556799, "coord": [48.85812367901838, 2.495375181556799], "stop_id": 3690426, "stop_desc": "RUE DE LA PRAIRIE - 94033", "stop_name": "LES ALOUETTES"}, "geometry": {"type": "Point", "coordinates": [2.495375181556799, 48.85812367901838]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b669656f935f80e09c0b932f2d21cfe92a621d00", "fields": {"departement": "94", "stop_lat": 48.847319739356294, "code_postal": "94033", "stop_lon": 2.4744254798495784, "coord": [48.847319739356294, 2.4744254798495784], "stop_id": 3690398, "stop_desc": "16 BIS RUE DE NEUILLY - 94033", "stop_name": "LE PARC"}, "geometry": {"type": "Point", "coordinates": [2.4744254798495784, 48.847319739356294]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ec58801fb01ac2cf4d37281da160a3ac7437b3f8", "fields": {"departement": "94", "stop_lat": 48.83668646197558, "code_postal": "94052", "stop_lon": 2.482838602754057, "coord": [48.83668646197558, 2.482838602754057], "stop_id": 3708133, "stop_desc": "FACE 83 GRANDE RUE CHARLES DE GAULLE - 94052", "stop_name": "SOUS PREFECTURE - JULES FERRY"}, "geometry": {"type": "Point", "coordinates": [2.482838602754057, 48.83668646197558]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "284457964dff4b663220bfc39a1ee85194c1da39", "fields": {"departement": "94", "stop_lat": 48.838185309775355, "code_postal": "94052", "stop_lon": 2.4916246714838945, "coord": [48.838185309775355, 2.4916246714838945], "stop_id": 3708135, "stop_desc": "172 GRANDE RUE CHARLES DE GAULLE - 94052", "stop_name": "MAIRIE DE NOGENT-SUR-MARNE"}, "geometry": {"type": "Point", "coordinates": [2.4916246714838945, 48.838185309775355]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ab276f148d825b222299387666844ddbf3181a65", "fields": {"departement": "94", "stop_lat": 48.83535159234615, "code_postal": "94052", "stop_lon": 2.471548399841407, "coord": [48.83535159234615, 2.471548399841407], "stop_id": 3708130, "stop_desc": "FACE AU 8 AVENUE DES MARRONNIERS - 94052", "stop_name": "NOGENT-SUR-MARNE RER"}, "geometry": {"type": "Point", "coordinates": [2.471548399841407, 48.83535159234615]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9c0c721ea6d814c5df9d08a54ea112bec10b652e", "fields": {"departement": "94", "stop_lat": 48.83631306496527, "code_postal": "94052", "stop_lon": 2.4794610851063337, "coord": [48.83631306496527, 2.4794610851063337], "stop_id": 3708132, "stop_desc": "60 GRANDE RUE CHARLES DE GAULLE - 94052", "stop_name": "RUE DE BEAUTE"}, "geometry": {"type": "Point", "coordinates": [2.4794610851063337, 48.83631306496527]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7faf4198b96421f401166bd8e74a2b40c81cc780", "fields": {"departement": "93", "stop_lat": 48.91398933649287, "code_postal": "93055", "stop_lon": 2.4112255921185435, "coord": [48.91398933649287, 2.4112255921185435], "stop_id": 3708450, "stop_desc": "15 AV DES COURTILLIERES - 93055", "stop_name": "PLACE DU MARCHE"}, "geometry": {"type": "Point", "coordinates": [2.4112255921185435, 48.91398933649287]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8fa5879afc78bb031a22994e6b933e344cf8b72a", "fields": {"departement": "94", "stop_lat": 48.834806586335354, "code_postal": "94058", "stop_lon": 2.5044802352889453, "coord": [48.834806586335354, 2.5044802352889453], "stop_id": 3708138, "stop_desc": "122 BIS AVENUE PIERRE BROSSOLETTE - 94058", "stop_name": "ALMA"}, "geometry": {"type": "Point", "coordinates": [2.5044802352889453, 48.834806586335354]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1e71a2a24911b63e254a1c6b9575936b84a7cdc1", "fields": {"departement": "93", "stop_lat": 48.91328474196549, "code_postal": "93008", "stop_lon": 2.416828575050586, "coord": [48.91328474196549, 2.416828575050586], "stop_id": 3708452, "stop_desc": "1 RUE BALZAC - 93008", "stop_name": "LES COURTILLIERES"}, "geometry": {"type": "Point", "coordinates": [2.416828575050586, 48.91328474196549]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ed7edfa97927708a63aef2c7b15e40e4db676560", "fields": {"departement": "93", "stop_lat": 48.86569483825488, "code_postal": "93048", "stop_lon": 2.443360283956282, "coord": [48.86569483825488, 2.443360283956282], "stop_id": 3689894, "stop_desc": "30 BOULEVARD HENRI BARBUSSE - 93048", "stop_name": "PLACE FRANCOIS MITTERRAND"}, "geometry": {"type": "Point", "coordinates": [2.443360283956282, 48.86569483825488]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e542977a36b75de5e00e8053b86efd400e8da1e2", "fields": {"departement": "93", "stop_lat": 48.87840136909168, "code_postal": "93053", "stop_lon": 2.454600359100925, "coord": [48.87840136909168, 2.454600359100925], "stop_id": 3688550, "stop_desc": "77 BOULEVARD DE LA BOISSIERE - 93053", "stop_name": "HOPITAL ANDRE GREGOIRE"}, "geometry": {"type": "Point", "coordinates": [2.454600359100925, 48.87840136909168]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "52914f327744b2bcdcf2792f471730ddd5ad5622", "fields": {"departement": "93", "stop_lat": 48.90650920647477, "code_postal": "93008", "stop_lon": 2.439490229390998, "coord": [48.90650920647477, 2.439490229390998], "stop_id": 3688568, "stop_desc": "BOULEVARD LENINE - 93008", "stop_name": "CONSERVATOIRE JEAN WIENER"}, "geometry": {"type": "Point", "coordinates": [2.439490229390998, 48.90650920647477]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "db4bc215be0e7303eaea18af7e76d5dc39003ac6", "fields": {"departement": "93", "stop_lat": 48.88298456919616, "code_postal": "93053", "stop_lon": 2.4549105294980316, "coord": [48.88298456919616, 2.4549105294980316], "stop_id": 3688553, "stop_desc": "76 BOULEVARD ROGER SALENGRO - 93053", "stop_name": "FRERES LUMIERE"}, "geometry": {"type": "Point", "coordinates": [2.4549105294980316, 48.88298456919616]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f8dc7002c6ff606d2cf34b7441a53a25daa8b7bb", "fields": {"departement": "93", "stop_lat": 48.88022042333047, "code_postal": "93063", "stop_lon": 2.441005409429169, "coord": [48.88022042333047, 2.441005409429169], "stop_id": 3689903, "stop_desc": "BOULEVARD HENRI BAUBUSSE - 93063", "stop_name": "SENTE DES MARES"}, "geometry": {"type": "Point", "coordinates": [2.441005409429169, 48.88022042333047]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5af6e6ca280dd549b3443842697670af339eb445", "fields": {"departement": "93", "stop_lat": 48.90677822577068, "code_postal": "93008", "stop_lon": 2.450111103877603, "coord": [48.90677822577068, 2.450111103877603], "stop_id": 3688571, "stop_desc": "R PABLO PICASSO - 93008", "stop_name": "BOBIGNY - PABLO PICASSO"}, "geometry": {"type": "Point", "coordinates": [2.450111103877603, 48.90677822577068]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fbc5d3672b5765d48cb5e57fd112afc0f9f6890c", "fields": {"departement": "93", "stop_lat": 48.90216762769519, "code_postal": "93008", "stop_lon": 2.4404359095362715, "coord": [48.90216762769519, 2.4404359095362715], "stop_id": 3688566, "stop_desc": "63 AVENUE JEAN JAURES - 93008", "stop_name": "LOUISE MICHEL"}, "geometry": {"type": "Point", "coordinates": [2.4404359095362715, 48.90216762769519]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ba0ffeea664c20f08367023bb3821d87f551991a", "fields": {"departement": "93", "stop_lat": 48.90676344153678, "code_postal": "93008", "stop_lon": 2.4466891131829183, "coord": [48.90676344153678, 2.4466891131829183], "stop_id": 3688573, "stop_desc": "BOULEVARD MAURICE THOREZ - 93008", "stop_name": "MAURICE THOREZ"}, "geometry": {"type": "Point", "coordinates": [2.4466891131829183, 48.90676344153678]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8f49e3cc9eff8335244ed3fffe97671187da9735", "fields": {"departement": "93", "stop_lat": 48.89129509628378, "code_postal": "93053", "stop_lon": 2.4483055884439326, "coord": [48.89129509628378, 2.4483055884439326], "stop_id": 3688558, "stop_desc": "48 RUE VAILLANT COUTURIER - 93053", "stop_name": "CHAALONS"}, "geometry": {"type": "Point", "coordinates": [2.4483055884439326, 48.89129509628378]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4de2371908bdb8689ff011dd9c8d44c2c8f287ea", "fields": {"departement": "93", "stop_lat": 48.88281796156739, "code_postal": "93063", "stop_lon": 2.4407516953930397, "coord": [48.88281796156739, 2.4407516953930397], "stop_id": 3689905, "stop_desc": "10 BOULEVARD HENRI BARBUSSE - 93063", "stop_name": "CARNOT"}, "geometry": {"type": "Point", "coordinates": [2.4407516953930397, 48.88281796156739]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "14b54643fbe2ccd216f4b71e62e1ad42b6469257", "fields": {"departement": "93", "stop_lat": 48.89164801754887, "code_postal": "93053", "stop_lon": 2.4456758850678475, "coord": [48.89164801754887, 2.4456758850678475], "stop_id": 3688561, "stop_desc": "69 RUE VAILLANT COUTURIER - 93053", "stop_name": "RUE DU PARC - VAILLANT-COUTURIER"}, "geometry": {"type": "Point", "coordinates": [2.4456758850678475, 48.89164801754887]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6eec70d3463742620bf76675432ae3c7c7c66a8f", "fields": {"departement": "75", "stop_lat": 48.86017822754157, "code_postal": "75120", "stop_lon": 2.403902439719576, "coord": [48.86017822754157, 2.403902439719576], "stop_id": 3690057, "stop_desc": "117 RUE DE BAGNOLET - 75120", "stop_name": "EGLISE ST-GERMAIN DE CHARONNE"}, "geometry": {"type": "Point", "coordinates": [2.403902439719576, 48.86017822754157]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a4894f1d6ed1793c105c3451e4a427e0756df8f7", "fields": {"departement": "75", "stop_lat": 48.86208239491901, "code_postal": "75120", "stop_lon": 2.40594811880992, "coord": [48.86208239491901, 2.40594811880992], "stop_id": 3690055, "stop_desc": "141-143 RUE DE BAGNOLET - 75120", "stop_name": "PELLEPORT - BAGNOLET"}, "geometry": {"type": "Point", "coordinates": [2.40594811880992, 48.86208239491901]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b6fadbb722ec1877297da161f0e9831ccda98174", "fields": {"departement": "93", "stop_lat": 48.90677822577068, "code_postal": "93008", "stop_lon": 2.450111103877603, "coord": [48.90677822577068, 2.450111103877603], "stop_id": 3689919, "stop_desc": "R PABLO PICASSO - 93008", "stop_name": "BOBIGNY - PABLO PICASSO"}, "geometry": {"type": "Point", "coordinates": [2.450111103877603, 48.90677822577068]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9b006f1b69584dd5c22d38f830ad554b54e9e5de", "fields": {"departement": "75", "stop_lat": 48.856871440718, "code_postal": "75120", "stop_lon": 2.4028494366261053, "coord": [48.856871440718, 2.4028494366261053], "stop_id": 3690075, "stop_desc": "22-24 RUE VITRUVE - 75120", "stop_name": "ORTEAUX - VITRUVE"}, "geometry": {"type": "Point", "coordinates": [2.4028494366261053, 48.856871440718]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a225f2d92a08ded0ed32931bfcb47d468c8d13d4", "fields": {"departement": "75", "stop_lat": 48.84919040171898, "code_postal": "75120", "stop_lon": 2.4125630899221813, "coord": [48.84919040171898, 2.4125630899221813], "stop_id": 3690065, "stop_desc": "111-113 RUE DE LAGNY - 75120", "stop_name": "HILSZ - LAGNY"}, "geometry": {"type": "Point", "coordinates": [2.4125630899221813, 48.84919040171898]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6cc7f279faad9a4f586f6fcdfb78d006cb8cd846", "fields": {"departement": "93", "stop_lat": 48.89901170412667, "code_postal": "93008", "stop_lon": 2.4420926392411446, "coord": [48.89901170412667, 2.4420926392411446], "stop_id": 3689914, "stop_desc": "FACE 3 AVENUE JEAN JAURES - 93008", "stop_name": "LA FOLIE"}, "geometry": {"type": "Point", "coordinates": [2.4420926392411446, 48.89901170412667]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d72fd61666a22352a9370db734a347daa637fd3a", "fields": {"departement": "75", "stop_lat": 48.86314384549854, "code_postal": "75120", "stop_lon": 2.4043012841483233, "coord": [48.86314384549854, 2.4043012841483233], "stop_id": 3690053, "stop_desc": "25-27 RUE PELLEPORT - 75120", "stop_name": "INDRE"}, "geometry": {"type": "Point", "coordinates": [2.4043012841483233, 48.86314384549854]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "565ac37f5f2c627d84c6412d18b64b8535cb77fd", "fields": {"departement": "93", "stop_lat": 48.889409825829546, "code_postal": "93053", "stop_lon": 2.446093693829578, "coord": [48.889409825829546, 2.446093693829578], "stop_id": 3689908, "stop_desc": "60 RUE DU PARC - 93053", "stop_name": "JURA"}, "geometry": {"type": "Point", "coordinates": [2.446093693829578, 48.889409825829546]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9499416e8239618ca5149bd0de4d1574e6a55fc0", "fields": {"departement": "93", "stop_lat": 48.88940112447211, "code_postal": "93053", "stop_lon": 2.445780214694181, "coord": [48.88940112447211, 2.445780214694181], "stop_id": 3689909, "stop_desc": "55 RUE DU PARC - 93053", "stop_name": "JURA"}, "geometry": {"type": "Point", "coordinates": [2.445780214694181, 48.88940112447211]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bf515e5e64155034fe3c6f9649b4c2e38edf12a2", "fields": {"departement": "93", "stop_lat": 48.88362614709306, "code_postal": "93063", "stop_lon": 2.441516433018337, "coord": [48.88362614709306, 2.441516433018337], "stop_id": 3688087, "stop_desc": "FACE 8 AVENUE PIERRE KERAUTRET - 93063", "stop_name": "ROMAINVILLE - CARNOT"}, "geometry": {"type": "Point", "coordinates": [2.441516433018337, 48.88362614709306]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2293eba973784c3826e6a1eee5a4ce5ddf0b76f5", "fields": {"departement": "93", "stop_lat": 48.87700416170274, "code_postal": "93063", "stop_lon": 2.44961027239612, "coord": [48.87700416170274, 2.44961027239612], "stop_id": 3688084, "stop_desc": "18 AVENUE DU DOCTEUR FERNAND LAMAZE - 93063", "stop_name": "RUE DE ROMAINVILLE"}, "geometry": {"type": "Point", "coordinates": [2.44961027239612, 48.87700416170274]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4ace7421709b4acca74b7ebb8cf75b36cfb82955", "fields": {"departement": "93", "stop_lat": 48.86242440102482, "code_postal": "93048", "stop_lon": 2.442263860889917, "coord": [48.86242440102482, 2.442263860889917], "stop_id": 3688115, "stop_desc": "FACE 5 PLACE JEAN JAURES - 93048", "stop_name": "MAIRIE DE MONTREUIL"}, "geometry": {"type": "Point", "coordinates": [2.442263860889917, 48.86242440102482]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dd1d7b50a0fae53285673081c64d57e0f6a72bd5", "fields": {"departement": "93", "stop_lat": 48.86242440102482, "code_postal": "93048", "stop_lon": 2.442263860889917, "coord": [48.86242440102482, 2.442263860889917], "stop_id": 3688076, "stop_desc": "FACE 5 PLACE JEAN JAURES - 93048", "stop_name": "MAIRIE DE MONTREUIL"}, "geometry": {"type": "Point", "coordinates": [2.442263860889917, 48.86242440102482]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c080defbeb912e260320c7924a9a87d9ee899933", "fields": {"departement": "93", "stop_lat": 48.87823740419263, "code_postal": "93048", "stop_lon": 2.456807367682315, "coord": [48.87823740419263, 2.456807367682315], "stop_id": 3688548, "stop_desc": "99 BOULEVARD DE LA BOISSIERE - 93048", "stop_name": "LA BOISSIERE"}, "geometry": {"type": "Point", "coordinates": [2.456807367682315, 48.87823740419263]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ef85851f6db31358e761d36859c12708b60a4dca", "fields": {"departement": "93", "stop_lat": 48.878047057020524, "code_postal": "93063", "stop_lon": 2.4492173859360737, "coord": [48.878047057020524, 2.4492173859360737], "stop_id": 3688106, "stop_desc": "14 ROUTE DE MONTREUIL - 93063", "stop_name": "TROIS COMMUNES"}, "geometry": {"type": "Point", "coordinates": [2.4492173859360737, 48.878047057020524]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "44c74557183f3dccc54295ef6922c52ddb5381e7", "fields": {"departement": "93", "stop_lat": 48.87655831938892, "code_postal": "93048", "stop_lon": 2.455263829982462, "coord": [48.87655831938892, 2.455263829982462], "stop_id": 3688081, "stop_desc": "1-3 AVENUE LEO LAGRANGE - 93048", "stop_name": "LA BOISSIERE"}, "geometry": {"type": "Point", "coordinates": [2.455263829982462, 48.87655831938892]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "401e845957ea586665d551249b417cb31e46e23b", "fields": {"departement": "93", "stop_lat": 48.88443086356306, "code_postal": "93077", "stop_lon": 2.507529344691353, "coord": [48.88443086356306, 2.507529344691353], "stop_id": 3687738, "stop_desc": "1 RUE GRANDE RUE - 93077", "stop_name": "AVENUE DU RAINCY"}, "geometry": {"type": "Point", "coordinates": [2.507529344691353, 48.88443086356306]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d9d620cc99dcc0820005051e5cb588b89b2f62a4", "fields": {"departement": "93", "stop_lat": 48.884699099389856, "code_postal": "93077", "stop_lon": 2.502120102414242, "coord": [48.884699099389856, 2.502120102414242], "stop_id": 3687737, "stop_desc": "65-67 AV DE ROSNY - 93077", "stop_name": "MEISSONIER"}, "geometry": {"type": "Point", "coordinates": [2.502120102414242, 48.884699099389856]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b94f513809a50041d8f6454b7368beeb105a8234", "fields": {"departement": "94", "stop_lat": 48.85399313364263, "code_postal": "94033", "stop_lon": 2.4703028202860247, "coord": [48.85399313364263, 2.4703028202860247], "stop_id": 3688533, "stop_desc": "2 AVENUE VICTOR HUGO - 94033", "stop_name": "VERDUN"}, "geometry": {"type": "Point", "coordinates": [2.4703028202860247, 48.85399313364263]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "459fc7bc8cc4fa652046e5bc90eecd007f58430c", "fields": {"departement": "93", "stop_lat": 48.883939161337594, "code_postal": "93045", "stop_lon": 2.42064004850465, "coord": [48.883939161337594, 2.42064004850465], "stop_id": 3690236, "stop_desc": "39 AV GEORGES CLEMENCEAU - 93045", "stop_name": "CENTRE DE SANTE B. LAFAY"}, "geometry": {"type": "Point", "coordinates": [2.42064004850465, 48.883939161337594]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8ac09ea17a20cfe5e3369b00cba89ee06917b613", "fields": {"departement": "94", "stop_lat": 48.8536116149176, "code_postal": "94033", "stop_lon": 2.457186423352073, "coord": [48.8536116149176, 2.457186423352073], "stop_id": 3690336, "stop_desc": "FACE 67 R ANDRE LAURENT - 94033", "stop_name": "GAMBETTA - ANDRE LAURENT"}, "geometry": {"type": "Point", "coordinates": [2.457186423352073, 48.8536116149176]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2045fb30d17991a841278d7cb7924f1589f46ad9", "fields": {"departement": "93", "stop_lat": 48.87696033024608, "code_postal": "93045", "stop_lon": 2.414292986045229, "coord": [48.87696033024608, 2.414292986045229], "stop_id": 3690231, "stop_desc": "FACE 32-36 R DES BRUYERES - 93045", "stop_name": "LES PRIMEVERES"}, "geometry": {"type": "Point", "coordinates": [2.414292986045229, 48.87696033024608]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "28ea4d5bf62314ecf6b153ecd0d42f1568a68083", "fields": {"departement": "94", "stop_lat": 48.85341711061478, "code_postal": "94033", "stop_lon": 2.4627834982902463, "coord": [48.85341711061478, 2.4627834982902463], "stop_id": 3690338, "stop_desc": "155-157 R DES MOULINS - 94033", "stop_name": "EUGENE HERICOURT"}, "geometry": {"type": "Point", "coordinates": [2.4627834982902463, 48.85341711061478]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7d4b7e1982004fef7576c15510d067179d520a22", "fields": {"departement": "93", "stop_lat": 48.88213656765963, "code_postal": "93045", "stop_lon": 2.4149547660057524, "coord": [48.88213656765963, 2.4149547660057524], "stop_id": 3690233, "stop_desc": "44 BOULEVARD EUGENE DECROS - 93045", "stop_name": "COMMISSARIAT"}, "geometry": {"type": "Point", "coordinates": [2.4149547660057524, 48.88213656765963]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f3556631e80a607211454ba2691f5a9c3e24d9ac", "fields": {"departement": "93", "stop_lat": 48.882276255542784, "code_postal": "93045", "stop_lon": 2.421018925455389, "coord": [48.882276255542784, 2.421018925455389], "stop_id": 3690237, "stop_desc": "13 AVENUE GEORGES CLEMENCEAU - 93045", "stop_name": "HORTENSIAS"}, "geometry": {"type": "Point", "coordinates": [2.421018925455389, 48.882276255542784]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e9dc9b381550aaccbecf21111a12e2a7cff2767a", "fields": {"departement": "75", "stop_lat": 48.86490755064437, "code_postal": "75120", "stop_lon": 2.4003122344024814, "coord": [48.86490755064437, 2.4003122344024814], "stop_id": 3690080, "stop_desc": "4 RUE DE LA CHINE - 75120", "stop_name": "HOPITAL TENON"}, "geometry": {"type": "Point", "coordinates": [2.4003122344024814, 48.86490755064437]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "04b225e527d5dbfa347f065c7bd8aa8ee2294e07", "fields": {"departement": "94", "stop_lat": 48.846991013735796, "code_postal": "94033", "stop_lon": 2.471074681484275, "coord": [48.846991013735796, 2.471074681484275], "stop_id": 3690458, "stop_desc": "10 R NOTRE DAME - 94033", "stop_name": "ANCIENNE MAIRIE DE FONTENAY-SOUS-BOIS"}, "geometry": {"type": "Point", "coordinates": [2.471074681484275, 48.846991013735796]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6bb37517cd4267591cdaa60e0983de3c31541f91", "fields": {"departement": "94", "stop_lat": 48.84617823330674, "code_postal": "94033", "stop_lon": 2.4579045761282967, "coord": [48.84617823330674, 2.4579045761282967], "stop_id": 3690437, "stop_desc": "FACE 87BIS RUE MARCEL ET JACQUES GAUCHER - 94033", "stop_name": "JEAN-JACQUES ROUSSEAU"}, "geometry": {"type": "Point", "coordinates": [2.4579045761282967, 48.84617823330674]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "560e2135dd932ee98465045403a09e26773188d4", "fields": {"departement": "94", "stop_lat": 48.856770986269645, "code_postal": "94033", "stop_lon": 2.4775013942069823, "coord": [48.856770986269645, 2.4775013942069823], "stop_id": 3690447, "stop_desc": "12 RUE JEAN MACE - 94033", "stop_name": "JEAN MACE - MARTIN LUTHER KING"}, "geometry": {"type": "Point", "coordinates": [2.4775013942069823, 48.856770986269645]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e6956925444fc8097f4bff61ccbe3c5f0d0e2586", "fields": {"departement": "94", "stop_lat": 48.84569879056931, "code_postal": "94033", "stop_lon": 2.469301104436902, "coord": [48.84569879056931, 2.469301104436902], "stop_id": 3690459, "stop_desc": "34-36 RUE MAURICE COUDERCHET - 94033", "stop_name": "MAURICE COUDERCHET"}, "geometry": {"type": "Point", "coordinates": [2.469301104436902, 48.84569879056931]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f57f5d00e0451a6e9bdf4b779d930d6a73eece9c", "fields": {"departement": "94", "stop_lat": 48.85297997424272, "code_postal": "94033", "stop_lon": 2.450579667755212, "coord": [48.85297997424272, 2.450579667755212], "stop_id": 3690465, "stop_desc": "7-9 AVENUE PARMENTIER - 94033", "stop_name": "GEORGES LE TIEC"}, "geometry": {"type": "Point", "coordinates": [2.450579667755212, 48.85297997424272]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7ceba94b41b618332d12a70d9052684715748afd", "fields": {"departement": "94", "stop_lat": 48.85297997424272, "code_postal": "94033", "stop_lon": 2.450579667755212, "coord": [48.85297997424272, 2.450579667755212], "stop_id": 3690492, "stop_desc": "7-9 AVENUE PARMENTIER - 94033", "stop_name": "GEORGES LE TIEC"}, "geometry": {"type": "Point", "coordinates": [2.450579667755212, 48.85297997424272]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "70cc86be0612d1e0a352339ead498e5ce31fd6b1", "fields": {"departement": "94", "stop_lat": 48.84632336215608, "code_postal": "94033", "stop_lon": 2.473347068714114, "coord": [48.84632336215608, 2.473347068714114], "stop_id": 3690457, "stop_desc": "7 RUE LOUIS XAVIER DE RICARD - 94033", "stop_name": "MOLIERE"}, "geometry": {"type": "Point", "coordinates": [2.473347068714114, 48.84632336215608]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6c191499afd48ebc3c131fa41cda49754dc649df", "fields": {"departement": "94", "stop_lat": 48.85912474105891, "code_postal": "94033", "stop_lon": 2.492749421074358, "coord": [48.85912474105891, 2.492749421074358], "stop_id": 3690468, "stop_desc": "FACE12BIS RUE DU BOIS GALON - 94033", "stop_name": "BOIS GALON"}, "geometry": {"type": "Point", "coordinates": [2.492749421074358, 48.85912474105891]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6665a80184c03ab589e0fc4058a252d7fcb8f5ba", "fields": {"departement": "94", "stop_lat": 48.854082291262344, "code_postal": "94033", "stop_lon": 2.4709431635752845, "coord": [48.854082291262344, 2.4709431635752845], "stop_id": 3690479, "stop_desc": "FACE 40 RUE ANATOLE FRANCE - 94033", "stop_name": "VERDUN"}, "geometry": {"type": "Point", "coordinates": [2.4709431635752845, 48.854082291262344]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "43f7f8deca0dcfc34bd26005de8cb7e3398d4043", "fields": {"departement": "93", "stop_lat": 48.9074650418741, "code_postal": "93008", "stop_lon": 2.424113548237613, "coord": [48.9074650418741, 2.424113548237613], "stop_id": 3708456, "stop_desc": "AVENUE DE LA DIVISION LECLERC - 93008", "stop_name": "REPUBLIQUE - DIVISION LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.424113548237613, 48.9074650418741]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3f3ce0597eb456745e3e177438352ec103ba4eff", "fields": {"departement": "93", "stop_lat": 48.90590089960924, "code_postal": "93008", "stop_lon": 2.46457388666915, "coord": [48.90590089960924, 2.46457388666915], "stop_id": 3708471, "stop_desc": "FACE 412 AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "RUE DES PEUPLIERS"}, "geometry": {"type": "Point", "coordinates": [2.46457388666915, 48.90590089960924]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ebfd84cdbff22069aa43008500d39c8d7ddf4696", "fields": {"departement": "93", "stop_lat": 48.905486896676855, "code_postal": "93008", "stop_lon": 2.4651318210827156, "coord": [48.905486896676855, 2.4651318210827156], "stop_id": 3708470, "stop_desc": "412 AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "RUE DES PEUPLIERS"}, "geometry": {"type": "Point", "coordinates": [2.4651318210827156, 48.905486896676855]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d8210bd225614e1bfa595e669ac253365e9e7502", "fields": {"departement": "93", "stop_lat": 48.90569029404579, "code_postal": "93008", "stop_lon": 2.459720013319434, "coord": [48.90569029404579, 2.459720013319434], "stop_id": 3708469, "stop_desc": "AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "CITE ADMINISTRATIVE"}, "geometry": {"type": "Point", "coordinates": [2.459720013319434, 48.90569029404579]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "487354ef2d809af641f4c997cf74511817e99565", "fields": {"departement": "93", "stop_lat": 48.90653616722905, "code_postal": "93008", "stop_lon": 2.449483447525252, "coord": [48.90653616722905, 2.449483447525252], "stop_id": 3708465, "stop_desc": "PISTE GARE ROUTIERE - 93008", "stop_name": "BOBIGNY - PABLO PICASSO"}, "geometry": {"type": "Point", "coordinates": [2.449483447525252, 48.90653616722905]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fff1aa828dc1135755e0195d22cf197b89bc9f0e", "fields": {"departement": "93", "stop_lat": 48.90650920647477, "code_postal": "93008", "stop_lon": 2.439490229390998, "coord": [48.90650920647477, 2.439490229390998], "stop_id": 3708462, "stop_desc": "BOULEVARD LENINE - 93008", "stop_name": "CONSERVATOIRE JEAN WIENER"}, "geometry": {"type": "Point", "coordinates": [2.439490229390998, 48.90650920647477]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0e392b5e51386005cb56037fca189ee38db6a47a", "fields": {"departement": "93", "stop_lat": 48.90752818929823, "code_postal": "93008", "stop_lon": 2.45522530113179, "coord": [48.90752818929823, 2.45522530113179], "stop_id": 3708468, "stop_desc": "AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "LAMARTINE"}, "geometry": {"type": "Point", "coordinates": [2.45522530113179, 48.90752818929823]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f2fe38faa016efe8487df40249438dae2d5ad8b9", "fields": {"departement": "93", "stop_lat": 48.91332218067506, "code_postal": "93010", "stop_lon": 2.4820995089248123, "coord": [48.91332218067506, 2.4820995089248123], "stop_id": 3708479, "stop_desc": "AV HENRI VARAGNAT - 93010", "stop_name": "SUZANNE BUISSON"}, "geometry": {"type": "Point", "coordinates": [2.4820995089248123, 48.91332218067506]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dc23e09d0a32ddfe0db3bbe5789cf5875832ea7d", "fields": {"departement": "75", "stop_lat": 48.859942082082874, "code_postal": "75103", "stop_lon": 2.3646192273656625, "coord": [48.859942082082874, 2.3646192273656625], "stop_id": 3687437, "stop_desc": "68 RUE DE TURENNE - 75103", "stop_name": "SAINT-CLAUDE"}, "geometry": {"type": "Point", "coordinates": [2.3646192273656625, 48.859942082082874]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7abd234ae1ac6d1489f4649e092d46daf9d1d54c", "fields": {"departement": "75", "stop_lat": 48.8552333745965, "code_postal": "75104", "stop_lon": 2.361361624451313, "coord": [48.8552333745965, 2.361361624451313], "stop_id": 3687434, "stop_desc": "94 RUE SAINT ANTOINE - 75104", "stop_name": "SAINT-PAUL"}, "geometry": {"type": "Point", "coordinates": [2.361361624451313, 48.8552333745965]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8f437deed5ae371432ba21208bc64c06c69db607", "fields": {"departement": "93", "stop_lat": 48.86427729268341, "code_postal": "93006", "stop_lon": 2.4171892780361164, "coord": [48.86427729268341, 2.4171892780361164], "stop_id": 3687632, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 93006", "stop_name": "GALLIENI - METRO"}, "geometry": {"type": "Point", "coordinates": [2.4171892780361164, 48.86427729268341]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8688e98f2fffd8256202dd2f59faed6c05f2853e", "fields": {"departement": "75", "stop_lat": 48.8771618648321, "code_postal": "75120", "stop_lon": 2.4081481811510286, "coord": [48.8771618648321, 2.4081481811510286], "stop_id": 3687660, "stop_desc": "RUE DES GLAIEULS - 75120", "stop_name": "PORTE DES LILAS-METRO"}, "geometry": {"type": "Point", "coordinates": [2.4081481811510286, 48.8771618648321]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cb6ffbbe5c6ee2f7ab4fefa86059e34978aa3aaa", "fields": {"departement": "93", "stop_lat": 48.871763127396015, "code_postal": "93006", "stop_lon": 2.4304298125191015, "coord": [48.871763127396015, 2.4304298125191015], "stop_id": 3687673, "stop_desc": "97 AVENUE DE STALINGRAD - 93006", "stop_name": "LES RIGONDES"}, "geometry": {"type": "Point", "coordinates": [2.4304298125191015, 48.871763127396015]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7a90f13ab93152c3cb6c90dba3d410edb2df12f8", "fields": {"departement": "93", "stop_lat": 48.8603866337713, "code_postal": "93048", "stop_lon": 2.4395355132639738, "coord": [48.8603866337713, 2.4395355132639738], "stop_id": 3687682, "stop_desc": "19 BOULEVARD ROUGET DE LISLE - 93048", "stop_name": "VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.4395355132639738, 48.8603866337713]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "964a529e1c986b178ed26a1c71ee6c9af81822a9", "fields": {"departement": "93", "stop_lat": 48.872376053452285, "code_postal": "93006", "stop_lon": 2.428114790799656, "coord": [48.872376053452285, 2.428114790799656], "stop_id": 3687671, "stop_desc": "51 RUE RAYMOND LEFEBVRE - 93006", "stop_name": "STALINGRAD"}, "geometry": {"type": "Point", "coordinates": [2.428114790799656, 48.872376053452285]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f33715669e7cb835275c221a8b26cc9c3909ac17", "fields": {"departement": "93", "stop_lat": 48.876101438501195, "code_postal": "93006", "stop_lon": 2.4218128372951413, "coord": [48.876101438501195, 2.4218128372951413], "stop_id": 3687664, "stop_desc": "174 AVENUE PASTEUR - 93006", "stop_name": "RUE DE PANTIN"}, "geometry": {"type": "Point", "coordinates": [2.4218128372951413, 48.876101438501195]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4fce48df4044a8ee0ecac2f25553c260063c810f", "fields": {"departement": "93", "stop_lat": 48.87641222045218, "code_postal": "93045", "stop_lon": 2.414115042496765, "coord": [48.87641222045218, 2.414115042496765], "stop_id": 3687662, "stop_desc": "73 AVENUE PASTEUR - 93045", "stop_name": "CHASSAGNOLE"}, "geometry": {"type": "Point", "coordinates": [2.414115042496765, 48.87641222045218]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d5c09493c019783e8f3772b971faf79342e51bb7", "fields": {"departement": "93", "stop_lat": 48.86516053204142, "code_postal": "93048", "stop_lon": 2.437665043803602, "coord": [48.86516053204142, 2.437665043803602], "stop_id": 3687676, "stop_desc": "35 AVENUE PASTEUR - 93048", "stop_name": "HOCHE"}, "geometry": {"type": "Point", "coordinates": [2.437665043803602, 48.86516053204142]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6614eb6e1203640ea3c9b97e04d2d780c8d3b918", "fields": {"departement": "93", "stop_lat": 48.85868970531647, "code_postal": "93048", "stop_lon": 2.437543550108734, "coord": [48.85868970531647, 2.437543550108734], "stop_id": 3687684, "stop_desc": "55 BOULEVARD ROUGET DE LISLE - 93048", "stop_name": "CROIX DE CHAVAUX - ROUGET DE LISLE"}, "geometry": {"type": "Point", "coordinates": [2.437543550108734, 48.85868970531647]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e55cc7e73df511a141d698932d25e3483a65db2d", "fields": {"departement": "93", "stop_lat": 48.88423567991556, "code_postal": "93064", "stop_lon": 2.4854523315455075, "coord": [48.88423567991556, 2.4854523315455075], "stop_id": 3687734, "stop_desc": "FACE 99 BOULEVARD ALSACE-LORRAINE - 93064", "stop_name": "BOIS-PERRIER NORD"}, "geometry": {"type": "Point", "coordinates": [2.4854523315455075, 48.88423567991556]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "52d4a1f55bfdb28c434b01c4aeb12ef96701f575", "fields": {"departement": "75", "stop_lat": 48.876856345925695, "code_postal": "75120", "stop_lon": 2.408066010791179, "coord": [48.876856345925695, 2.408066010791179], "stop_id": 3688096, "stop_desc": "FACE 3 RUE CHARLES CROS - 75120", "stop_name": "PORTE DES LILAS - METRO"}, "geometry": {"type": "Point", "coordinates": [2.408066010791179, 48.876856345925695]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "272c4ffb2ec35502cd063d33897e58d56109f3f2", "fields": {"departement": "93", "stop_lat": 48.85495828029568, "code_postal": "93048", "stop_lon": 2.4394703295219546, "coord": [48.85495828029568, 2.4394703295219546], "stop_id": 3687688, "stop_desc": "103 AVENUE DU PRESIDENT WILSON - 93048", "stop_name": "COLMET - LEPINAY"}, "geometry": {"type": "Point", "coordinates": [2.4394703295219546, 48.85495828029568]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "14c93fca4cb1dbfabfa6fea906c2cf65375cc8cc", "fields": {"departement": "93", "stop_lat": 48.87824132865198, "code_postal": "93064", "stop_lon": 2.485326189068649, "coord": [48.87824132865198, 2.485326189068649], "stop_id": 3687732, "stop_desc": "RUE JEAN DE MAILLY - 93064", "stop_name": "JEAN DE MAILLY - HOFFMANN"}, "geometry": {"type": "Point", "coordinates": [2.485326189068649, 48.87824132865198]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "86fbcd7da18279ba8cf3ad806e9beebc90c50944", "fields": {"departement": "94", "stop_lat": 48.84906756474889, "code_postal": "94080", "stop_lon": 2.433385033839715, "coord": [48.84906756474889, 2.433385033839715], "stop_id": 3687691, "stop_desc": "76 AVENUE DE LA REPUBLIQUE - 94080", "stop_name": "RUE DE MONTREUIL"}, "geometry": {"type": "Point", "coordinates": [2.433385033839715, 48.84906756474889]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f091b69fbe1386e2c23d6c3cf6105d9ef344b009", "fields": {"departement": "75", "stop_lat": 48.876730434823244, "code_postal": "75120", "stop_lon": 2.408215718151263, "coord": [48.876730434823244, 2.408215718151263], "stop_id": 3688095, "stop_desc": "RUE DES GLAIEULS - 75120", "stop_name": "PORTE DES LILAS-METRO"}, "geometry": {"type": "Point", "coordinates": [2.408215718151263, 48.876730434823244]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d3159f9ce032d580dd317d2fa34154c0e20506fc", "fields": {"departement": "93", "stop_lat": 48.885028013143746, "code_postal": "93063", "stop_lon": 2.430862484362363, "coord": [48.885028013143746, 2.430862484362363], "stop_id": 3688089, "stop_desc": "14 RUE VASSOU - 93063", "stop_name": "VASSOU - LENINE"}, "geometry": {"type": "Point", "coordinates": [2.430862484362363, 48.885028013143746]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2251adf3e807299ed9eb93f144ad0f378562af07", "fields": {"departement": "94", "stop_lat": 48.84617823330674, "code_postal": "94033", "stop_lon": 2.4579045761282967, "coord": [48.84617823330674, 2.4579045761282967], "stop_id": 3690462, "stop_desc": "FACE 87BIS RUE MARCEL ET JACQUES GAUCHER - 94033", "stop_name": "JEAN-JACQUES ROUSSEAU"}, "geometry": {"type": "Point", "coordinates": [2.4579045761282967, 48.84617823330674]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0b04145ba9f114885b942c6b73e7afed6c3edb90", "fields": {"departement": "94", "stop_lat": 48.84617823330674, "code_postal": "94033", "stop_lon": 2.4579045761282967, "coord": [48.84617823330674, 2.4579045761282967], "stop_id": 3690489, "stop_desc": "FACE 87BIS RUE MARCEL ET JACQUES GAUCHER - 94033", "stop_name": "JEAN-JACQUES ROUSSEAU"}, "geometry": {"type": "Point", "coordinates": [2.4579045761282967, 48.84617823330674]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f382a845afbba184b0b9ff93f4a200cc95f9b062", "fields": {"departement": "94", "stop_lat": 48.83741794915162, "code_postal": "94052", "stop_lon": 2.4872655593059427, "coord": [48.83741794915162, 2.4872655593059427], "stop_id": 3708134, "stop_desc": "140 GRANDE RUE CHARLES DE GAULLE - 94052", "stop_name": "MARCHE DE NOGENT-SUR-MARNE"}, "geometry": {"type": "Point", "coordinates": [2.4872655593059427, 48.83741794915162]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "316257b73e70013d9e8976dd835b8ddafd79db7f", "fields": {"departement": "94", "stop_lat": 48.84658036308523, "code_postal": "94033", "stop_lon": 2.4764933833473752, "coord": [48.84658036308523, 2.4764933833473752], "stop_id": 3690483, "stop_desc": "FACE 4 RUE DE LA RESISTANCE - 94033", "stop_name": "MAISON DU CITOYEN"}, "geometry": {"type": "Point", "coordinates": [2.4764933833473752, 48.84658036308523]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "63856b841869e6d7f3f47ff47f4a225728440bc7", "fields": {"departement": "94", "stop_lat": 48.856487083172595, "code_postal": "94033", "stop_lon": 2.4743271450001507, "coord": [48.856487083172595, 2.4743271450001507], "stop_id": 3690476, "stop_desc": "FACE 13 RUE JEAN PIERRE TIMBAUD - 94033", "stop_name": "AIMEE MATTERRAZ"}, "geometry": {"type": "Point", "coordinates": [2.4743271450001507, 48.856487083172595]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b2adb94761b039d5db7d88bc55907a48884b7e82", "fields": {"departement": "94", "stop_lat": 48.85297247950356, "code_postal": "94033", "stop_lon": 2.448999828579167, "coord": [48.85297247950356, 2.448999828579167], "stop_id": 3690466, "stop_desc": "FACE 75 RUE DE STALINGRAD - 94033", "stop_name": "LES PARAPLUIES"}, "geometry": {"type": "Point", "coordinates": [2.448999828579167, 48.85297247950356]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5efae8c3e3b2b05e8a6e0b1345a520b379e20f23", "fields": {"departement": "94", "stop_lat": 48.849991154984615, "code_postal": "94033", "stop_lon": 2.4556936487973515, "coord": [48.849991154984615, 2.4556936487973515], "stop_id": 3690463, "stop_desc": "8 AVENUE DE STALINGRAD - 94033", "stop_name": "LES RIGOLLOTS"}, "geometry": {"type": "Point", "coordinates": [2.4556936487973515, 48.849991154984615]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f3b15c42ca89b40cde67ad24256ec6255a4bd408", "fields": {"departement": "94", "stop_lat": 48.851882894083694, "code_postal": "94033", "stop_lon": 2.451217357977865, "coord": [48.851882894083694, 2.451217357977865], "stop_id": 3690464, "stop_desc": "70 AVENUE DE STALINGRAD - 94033", "stop_name": "HECTOR MALOT"}, "geometry": {"type": "Point", "coordinates": [2.451217357977865, 48.851882894083694]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1328588050eac67133f62b157f4fcfc154351721", "fields": {"departement": "94", "stop_lat": 48.851882894083694, "code_postal": "94033", "stop_lon": 2.451217357977865, "coord": [48.851882894083694, 2.451217357977865], "stop_id": 3690491, "stop_desc": "70 AVENUE DE STALINGRAD - 94033", "stop_name": "HECTOR MALOT"}, "geometry": {"type": "Point", "coordinates": [2.451217357977865, 48.851882894083694]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "87e830308c1f407cea7ac72522e50f117c869958", "fields": {"departement": "93", "stop_lat": 48.87038874920998, "code_postal": "93048", "stop_lon": 2.4503997374493607, "coord": [48.87038874920998, 2.4503997374493607], "stop_id": 3688112, "stop_desc": "35 BOULEVARD ARISTIDE BRIAND - 93048", "stop_name": "PAUL SIGNAC - CARREFOUR DU 8 MAI 1945"}, "geometry": {"type": "Point", "coordinates": [2.4503997374493607, 48.87038874920998]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6c43abba0c27d4f7cdbe71f2d18e6a96863991fd", "fields": {"departement": "93", "stop_lat": 48.86560469736789, "code_postal": "93048", "stop_lon": 2.4436597940288447, "coord": [48.86560469736789, 2.4436597940288447], "stop_id": 3688114, "stop_desc": "39 BIS BOULEVARD PAUL VAILLANT COUTURIER - 93048", "stop_name": "PLACE FRANCOIS MITTERRAND"}, "geometry": {"type": "Point", "coordinates": [2.4436597940288447, 48.86560469736789]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "43f4d9f79a1991ea91d47cc725d782a4f2f0bdf7", "fields": {"departement": "93", "stop_lat": 48.867894144274636, "code_postal": "93048", "stop_lon": 2.4462392543351186, "coord": [48.867894144274636, 2.4462392543351186], "stop_id": 3688113, "stop_desc": "91 BOULEVARD PAUL VAILLANT COUTURIER - 93048", "stop_name": "SEPT CHEMINS"}, "geometry": {"type": "Point", "coordinates": [2.4462392543351186, 48.867894144274636]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9c1c0c8a5cf9ae798a20fe59203ce9c8c51ddf3d", "fields": {"departement": "93", "stop_lat": 48.883401418698604, "code_postal": "93063", "stop_lon": 2.441570489620952, "coord": [48.883401418698604, 2.441570489620952], "stop_id": 3688104, "stop_desc": "12 AVENUE PIERRE KERAUTRET - 93063", "stop_name": "ROMAINVILLE - CARNOT"}, "geometry": {"type": "Point", "coordinates": [2.441570489620952, 48.883401418698604]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "44555e3c7eba2927e9deb910b6fc25650ec0c924", "fields": {"departement": "93", "stop_lat": 48.86601061431374, "code_postal": "93048", "stop_lon": 2.469134866864839, "coord": [48.86601061431374, 2.469134866864839], "stop_id": 3688540, "stop_desc": "112 BOULEVARD THEOPHILE SUEUR - 93048", "stop_name": "PARC DE MONTREAU"}, "geometry": {"type": "Point", "coordinates": [2.469134866864839, 48.86601061431374]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3b67ef8905e86057b46c27dc7f2658de414c993f", "fields": {"departement": "93", "stop_lat": 48.87985261080566, "code_postal": "93045", "stop_lon": 2.4167636294624626, "coord": [48.87985261080566, 2.4167636294624626], "stop_id": 3688098, "stop_desc": "RUE DE PARIS - 93045", "stop_name": "MAIRIE DES LILAS - METRO"}, "geometry": {"type": "Point", "coordinates": [2.4167636294624626, 48.87985261080566]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1190b3b885bda822b235169116e7c00c616538b8", "fields": {"departement": "93", "stop_lat": 48.85942539386842, "code_postal": "93048", "stop_lon": 2.466816195206703, "coord": [48.85942539386842, 2.466816195206703], "stop_id": 3688535, "stop_desc": "217 BOULEVARD THEOPHILE SUEUR - 93048", "stop_name": "GRANDS PECHERS"}, "geometry": {"type": "Point", "coordinates": [2.466816195206703, 48.85942539386842]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aab6839cf80b0a35119010bba2e0d677c7041d22", "fields": {"departement": "93", "stop_lat": 48.87759022527163, "code_postal": "93048", "stop_lon": 2.456901254635796, "coord": [48.87759022527163, 2.456901254635796], "stop_id": 3688110, "stop_desc": "243 BOULEVARD ARISTIDE BRIAND - 93048", "stop_name": "LA BOISSIERE"}, "geometry": {"type": "Point", "coordinates": [2.456901254635796, 48.87759022527163]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f6128ceedd36c98a3ec8981249ba01a0d4782222", "fields": {"departement": "94", "stop_lat": 48.85675154230017, "code_postal": "94033", "stop_lon": 2.4709636642567148, "coord": [48.85675154230017, 2.4709636642567148], "stop_id": 3688530, "stop_desc": "75 AVENUE VICTOR HUGO - 94033", "stop_name": "EMILE ZOLA"}, "geometry": {"type": "Point", "coordinates": [2.4709636642567148, 48.85675154230017]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c1abe616ea221fbd46abfbec517d67749cc5b584", "fields": {"departement": "94", "stop_lat": 48.8584205955465, "code_postal": "94033", "stop_lon": 2.4809246260092555, "coord": [48.8584205955465, 2.4809246260092555], "stop_id": 3688526, "stop_desc": "209 RUE LA FONTAINE - 94033", "stop_name": "LA FONTAINE"}, "geometry": {"type": "Point", "coordinates": [2.4809246260092555, 48.8584205955465]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e9b32495ef757164a1816c485f9d047a75f97395", "fields": {"departement": "93", "stop_lat": 48.86304516447983, "code_postal": "93048", "stop_lon": 2.441543162232976, "coord": [48.86304516447983, 2.441543162232976], "stop_id": 3689893, "stop_desc": "9 BOULEVARD PAUL VAILLANT COUTURIER - 93048", "stop_name": "MAIRIE DE MONTREUIL"}, "geometry": {"type": "Point", "coordinates": [2.441543162232976, 48.86304516447983]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5d377cc6558dafcad027f0b342fc6c8b6aab8067", "fields": {"departement": "93", "stop_lat": 48.87823063790894, "code_postal": "93048", "stop_lon": 2.4545727210426564, "coord": [48.87823063790894, 2.4545727210426564], "stop_id": 3688576, "stop_desc": "56 BOULEVARD DE LA BOISSIERE - 93048", "stop_name": "HOPITAL ANDRE GREGOIRE"}, "geometry": {"type": "Point", "coordinates": [2.4545727210426564, 48.87823063790894]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5ce138922d1ecac79e67037ffc43d8695c7a9b1c", "fields": {"departement": "93", "stop_lat": 48.87709855532781, "code_postal": "93048", "stop_lon": 2.4630724725939266, "coord": [48.87709855532781, 2.4630724725939266], "stop_id": 3688547, "stop_desc": "186 BOULEVARD DE LA BOISSIERE - 93048", "stop_name": "SALVADOR ALLENDE"}, "geometry": {"type": "Point", "coordinates": [2.4630724725939266, 48.87709855532781]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ae63c29389734b16629e6c0b3f798422b5749f7a", "fields": {"departement": "93", "stop_lat": 48.87854062431923, "code_postal": "93063", "stop_lon": 2.4499951270120235, "coord": [48.87854062431923, 2.4499951270120235], "stop_id": 3688575, "stop_desc": "4 BOULEVARD DE LA BOISSIERE - 93063", "stop_name": "TROIS COMMUNES"}, "geometry": {"type": "Point", "coordinates": [2.4499951270120235, 48.87854062431923]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c0222a30a885717710c3ab98184b420064a50544", "fields": {"departement": "93", "stop_lat": 48.87668108109102, "code_postal": "93048", "stop_lon": 2.4668593190266086, "coord": [48.87668108109102, 2.4668593190266086], "stop_id": 3688544, "stop_desc": "227 BOULEVARD DE LA BOISSIERE - 93048", "stop_name": "ETIENNE DOLET"}, "geometry": {"type": "Point", "coordinates": [2.4668593190266086, 48.87668108109102]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "722d6a891ccef86bb801f2440eb6cf55dc8a0a7e", "fields": {"departement": "93", "stop_lat": 48.871383309409524, "code_postal": "93048", "stop_lon": 2.470701669106039, "coord": [48.871383309409524, 2.470701669106039], "stop_id": 3688577, "stop_desc": "356 BOULEVARD DE LA BOISSIERE - 93048", "stop_name": "FORT DE ROSNY"}, "geometry": {"type": "Point", "coordinates": [2.470701669106039, 48.871383309409524]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3298a477168ee5b1bf79d84786ad08daf8888180", "fields": {"departement": "93", "stop_lat": 48.875952085439906, "code_postal": "93048", "stop_lon": 2.467797635627305, "coord": [48.875952085439906, 2.467797635627305], "stop_id": 3688545, "stop_desc": "254 BOULEVARD DE LA BOISSIERE - 93048", "stop_name": "ETIENNE DOLET"}, "geometry": {"type": "Point", "coordinates": [2.467797635627305, 48.875952085439906]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "073eafed9401cdc8ac1751d5d4c179c2688c2048", "fields": {"departement": "93", "stop_lat": 48.86823095412352, "code_postal": "93048", "stop_lon": 2.4414582301885064, "coord": [48.86823095412352, 2.4414582301885064], "stop_id": 3689897, "stop_desc": "85 BOULEVARD HENRI BARBUSSE - 93048", "stop_name": "VICTOR BEAUSSE"}, "geometry": {"type": "Point", "coordinates": [2.4414582301885064, 48.86823095412352]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bd98252c7428967330c3905d5362b20d3be4f21d", "fields": {"departement": "93", "stop_lat": 48.89508320782615, "code_postal": "93053", "stop_lon": 2.4433523030529054, "coord": [48.89508320782615, 2.4433523030529054], "stop_id": 3688563, "stop_desc": "RUE DU PARC - 93053", "stop_name": "AVENUE DE BOBIGNY"}, "geometry": {"type": "Point", "coordinates": [2.4433523030529054, 48.89508320782615]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bbb5c9c9df0ae5f19604497897ff790b0cc6dfa8", "fields": {"departement": "93", "stop_lat": 48.87206087987862, "code_postal": "93063", "stop_lon": 2.43994002012677, "coord": [48.87206087987862, 2.43994002012677], "stop_id": 3689898, "stop_desc": "81 BOULEVARD EDOUARD BRANLY - 93063", "stop_name": "BERLIOZ"}, "geometry": {"type": "Point", "coordinates": [2.43994002012677, 48.87206087987862]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "055dab08a1fbf8248bed83a1187140e84d488aa9", "fields": {"departement": "94", "stop_lat": 48.856451330814025, "code_postal": "94033", "stop_lon": 2.481763616113396, "coord": [48.856451330814025, 2.481763616113396], "stop_id": 3690414, "stop_desc": "FACE 3 RUE JEAN MACE - 94033", "stop_name": "CHARLES GARCIA - COLLEGE JEAN MACE"}, "geometry": {"type": "Point", "coordinates": [2.481763616113396, 48.856451330814025]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fcaedc31310fda3009ed62df0e8498e003f7eeb0", "fields": {"departement": "94", "stop_lat": 48.85253432483068, "code_postal": "94033", "stop_lon": 2.4877859452410003, "coord": [48.85253432483068, 2.4877859452410003], "stop_id": 3690422, "stop_desc": "AVENUE LOUISON BOBET - 94033", "stop_name": "VAL DE FONTENAY RER - LOUISON BOBET"}, "geometry": {"type": "Point", "coordinates": [2.4877859452410003, 48.85253432483068]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6992bea20123624d6c8095ec32f3a738a8f6f8fb", "fields": {"departement": "94", "stop_lat": 48.85228075608887, "code_postal": "94033", "stop_lon": 2.489296917423076, "coord": [48.85228075608887, 2.489296917423076], "stop_id": 3690421, "stop_desc": "AVENUE LOUISON BOBET - 94033", "stop_name": "VAL DE FONTENAY RER - LOUISON BOBET"}, "geometry": {"type": "Point", "coordinates": [2.489296917423076, 48.85228075608887]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a7529f25d3df2c743e0b012a852b2a0825199146", "fields": {"departement": "94", "stop_lat": 48.856770986269645, "code_postal": "94033", "stop_lon": 2.4775013942069823, "coord": [48.856770986269645, 2.4775013942069823], "stop_id": 3690412, "stop_desc": "12 RUE JEAN MACE - 94033", "stop_name": "JEAN MACE - MARTIN LUTHER KING"}, "geometry": {"type": "Point", "coordinates": [2.4775013942069823, 48.856770986269645]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "34ee3ee355811c478ae814755fc198a158bbf1b1", "fields": {"departement": "94", "stop_lat": 48.85664522655266, "code_postal": "94033", "stop_lon": 2.4774465735974633, "coord": [48.85664522655266, 2.4774465735974633], "stop_id": 3690411, "stop_desc": "17 RUE JEAN MACE - 94033", "stop_name": "JEAN MACE - MARTIN LUTHER KING"}, "geometry": {"type": "Point", "coordinates": [2.4774465735974633, 48.85664522655266]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1eb081e3042c97d57f37975f31f1df9ffd4c1c79", "fields": {"departement": "94", "stop_lat": 48.85128380971573, "code_postal": "94033", "stop_lon": 2.473918451465365, "coord": [48.85128380971573, 2.473918451465365], "stop_id": 3690429, "stop_desc": "9 BIS BOULEVARD DE VERDUN - 94033", "stop_name": "SAINT-GERMAIN"}, "geometry": {"type": "Point", "coordinates": [2.473918451465365, 48.85128380971573]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0ac1bff0378bc311848576e15c780e52d3f1d98d", "fields": {"departement": "94", "stop_lat": 48.85912474105891, "code_postal": "94033", "stop_lon": 2.492749421074358, "coord": [48.85912474105891, 2.492749421074358], "stop_id": 3690427, "stop_desc": "FACE12BIS RUE DU BOIS GALON - 94033", "stop_name": "BOIS GALON"}, "geometry": {"type": "Point", "coordinates": [2.492749421074358, 48.85912474105891]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "839efbbddfddb6dbea7bf72a73563dbbfe7a3539", "fields": {"departement": "93", "stop_lat": 48.85618085584094, "code_postal": "93049", "stop_lon": 2.4965269599485422, "coord": [48.85618085584094, 2.4965269599485422], "stop_id": 3690424, "stop_desc": "RUE DE LA PRAIRIE - 93049", "stop_name": "LA PRAIRIE"}, "geometry": {"type": "Point", "coordinates": [2.4965269599485422, 48.85618085584094]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a31cd5aa4373aecede0d4130c407efaa60f98a45", "fields": {"departement": "93", "stop_lat": 48.8787064485767, "code_postal": "93045", "stop_lon": 2.4236293332932077, "coord": [48.8787064485767, 2.4236293332932077], "stop_id": 3690243, "stop_desc": "FACE 118 AV DU MARECHAL DE LATTRE DE TASSIGNY - 93045", "stop_name": "CROIX DE L'EPINETTE"}, "geometry": {"type": "Point", "coordinates": [2.4236293332932077, 48.8787064485767]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fd33e8ba3370fd5857426f41f29f15f18b284048", "fields": {"departement": "75", "stop_lat": 48.861264258412774, "code_postal": "75120", "stop_lon": 2.406437402985407, "coord": [48.861264258412774, 2.406437402985407], "stop_id": 3690078, "stop_desc": "FACE 19-21 RUE DES BALKANS - 75120", "stop_name": "DEBROUSSE - CENTRE DE SANTE"}, "geometry": {"type": "Point", "coordinates": [2.406437402985407, 48.861264258412774]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "179fb90ca7b857c98579e62f9c6c4fa21233f1a1", "fields": {"departement": "93", "stop_lat": 48.87999789060838, "code_postal": "93045", "stop_lon": 2.4273105743783585, "coord": [48.87999789060838, 2.4273105743783585], "stop_id": 3690242, "stop_desc": "215 AV DU MARECHAL DE LATTRE DE TASSIGNY - 93045", "stop_name": "FLOREAL"}, "geometry": {"type": "Point", "coordinates": [2.4273105743783585, 48.87999789060838]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f0ecb614571c5dd0dec56e1fd088cdd99de9b9ed", "fields": {"departement": "93", "stop_lat": 48.87968189832887, "code_postal": "93045", "stop_lon": 2.416695236771681, "coord": [48.87968189832887, 2.416695236771681], "stop_id": 3690239, "stop_desc": "6 BOULEVARD DE LA LIBERTE - 93045", "stop_name": "MAIRIE DES LILAS"}, "geometry": {"type": "Point", "coordinates": [2.416695236771681, 48.87968189832887]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8ce34cc9333cf27f964caa35c68e68d5e8dafbe6", "fields": {"departement": "94", "stop_lat": 48.84738518778295, "code_postal": "94033", "stop_lon": 2.4722059675502126, "coord": [48.84738518778295, 2.4722059675502126], "stop_id": 3690341, "stop_desc": "4 RUE DE NEUILLY - 94033", "stop_name": "EGLISE SAINT-GERMAIN"}, "geometry": {"type": "Point", "coordinates": [2.4722059675502126, 48.84738518778295]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d22ecab0acb80f705082b460a48ffe552807dc18", "fields": {"departement": "94", "stop_lat": 48.852612866371096, "code_postal": "94033", "stop_lon": 2.4491216254257, "coord": [48.852612866371096, 2.4491216254257], "stop_id": 3690329, "stop_desc": "59 BIS CARREFOUR DES PARAPLUIES - 94033", "stop_name": "LES PARAPLUIES"}, "geometry": {"type": "Point", "coordinates": [2.4491216254257, 48.852612866371096]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8830ff6b0246c8341e9cf02f437e7e678d178ebe", "fields": {"departement": "94", "stop_lat": 48.851775265892286, "code_postal": "94033", "stop_lon": 2.4509856010862467, "coord": [48.851775265892286, 2.4509856010862467], "stop_id": 3690331, "stop_desc": "49 AVENUE DE STALINGRAD - 94033", "stop_name": "HECTOR MALOT"}, "geometry": {"type": "Point", "coordinates": [2.4509856010862467, 48.851775265892286]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c3b54ff4490b468470d70beb3fca8f786b0c144e", "fields": {"departement": "94", "stop_lat": 48.848773998953874, "code_postal": "94033", "stop_lon": 2.4679607443591447, "coord": [48.848773998953874, 2.4679607443591447], "stop_id": 3690340, "stop_desc": "35 RUE CHARLES BASSEE - 94033", "stop_name": "CHARLES BASSEE"}, "geometry": {"type": "Point", "coordinates": [2.4679607443591447, 48.848773998953874]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "45590f7ab32ce3e732d0e0d37501b2343a0ee729", "fields": {"departement": "93", "stop_lat": 48.87808935149886, "code_postal": "93045", "stop_lon": 2.419349818310405, "coord": [48.87808935149886, 2.419349818310405], "stop_id": 3690244, "stop_desc": "61 R DE ROMAINVILLE - 93045", "stop_name": "RUE DU CENTRE"}, "geometry": {"type": "Point", "coordinates": [2.419349818310405, 48.87808935149886]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "99757069130a57e40863f7884d86660206f34634", "fields": {"departement": "75", "stop_lat": 48.86478889391968, "code_postal": "75120", "stop_lon": 2.403663165101848, "coord": [48.86478889391968, 2.403663165101848], "stop_id": 3690079, "stop_desc": "3 RUE BELGRAND - 75120", "stop_name": "PELLEPORT"}, "geometry": {"type": "Point", "coordinates": [2.403663165101848, 48.86478889391968]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1be93f0d2835775cebdd743b8a4508994974ffd3", "fields": {"departement": "93", "stop_lat": 48.90595552801115, "code_postal": "93008", "stop_lon": 2.4456785582783622, "coord": [48.90595552801115, 2.4456785582783622], "stop_id": 3689918, "stop_desc": "AVENUE DU PRESIDENT SALVADOR ALLENDE - 93008", "stop_name": "CENTRE COMMERCIAL DE BOBIGNY"}, "geometry": {"type": "Point", "coordinates": [2.4456785582783622, 48.90595552801115]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "69334ea0208e2ba0038fc256144ab70a64dacac9", "fields": {"departement": "93", "stop_lat": 48.90387945312767, "code_postal": "93008", "stop_lon": 2.44574237671253, "coord": [48.90387945312767, 2.44574237671253], "stop_id": 3689917, "stop_desc": "21 AVENUE DU PRESIDENT SALVADOR ALLENDE - 93008", "stop_name": "ARCHIVES DEPARTEMENTALES"}, "geometry": {"type": "Point", "coordinates": [2.44574237671253, 48.90387945312767]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ae1588163ee55adf4b713ba124ac39fe127d1bbd", "fields": {"departement": "75", "stop_lat": 48.85552870643829, "code_postal": "75120", "stop_lon": 2.409099237856307, "coord": [48.85552870643829, 2.409099237856307], "stop_id": 3690061, "stop_desc": "106 RUE DES ORTEAUX - 75120", "stop_name": "HOPITAL DE LA CROIX SAINT-SIMON"}, "geometry": {"type": "Point", "coordinates": [2.409099237856307, 48.85552870643829]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "56ee652058997bc046f2bfe85f02283422ffaec0", "fields": {"departement": "93", "stop_lat": 48.89250256377624, "code_postal": "93053", "stop_lon": 2.4448326407756977, "coord": [48.89250256377624, 2.4448326407756977], "stop_id": 3689910, "stop_desc": "100 RUE DU PARC - 93053", "stop_name": "RUE DU PARC - VAILLANT-COUTURIER"}, "geometry": {"type": "Point", "coordinates": [2.4448326407756977, 48.89250256377624]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7db3758959135b18e839b6311eb2a4b645e4a94f", "fields": {"departement": "75", "stop_lat": 48.853028556348164, "code_postal": "75120", "stop_lon": 2.4117651317753492, "coord": [48.853028556348164, 2.4117651317753492], "stop_id": 3690063, "stop_desc": "7-9 RUE CHARLES ET ROBERT - 75120", "stop_name": "PORTE DE MONTREUIL"}, "geometry": {"type": "Point", "coordinates": [2.4117651317753492, 48.853028556348164]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bcbbb4d7718c521f8d5e4ced3f8674627523c893", "fields": {"departement": "75", "stop_lat": 48.851599575724556, "code_postal": "75120", "stop_lon": 2.4117222226195065, "coord": [48.851599575724556, 2.4117222226195065], "stop_id": 3690064, "stop_desc": "FACE 2 RUE SHUBERT - 75120", "stop_name": "SCHUBERT - PAGANINI"}, "geometry": {"type": "Point", "coordinates": [2.4117222226195065, 48.851599575724556]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c995c5626b7a5fc0346e9ba10ff8700268f9e81b", "fields": {"departement": "75", "stop_lat": 48.85675851464763, "code_postal": "75120", "stop_lon": 2.411498087550529, "coord": [48.85675851464763, 2.411498087550529], "stop_id": 3690062, "stop_desc": "25 R DES DOCTEURS DEJERINE - 75120", "stop_name": "STADE DEJERINE"}, "geometry": {"type": "Point", "coordinates": [2.411498087550529, 48.85675851464763]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1c3073263a0a54d487873782b7cc9accdc6bfcbd", "fields": {"departement": "75", "stop_lat": 48.859744878161706, "code_postal": "75120", "stop_lon": 2.4073071157225123, "coord": [48.859744878161706, 2.4073071157225123], "stop_id": 3690077, "stop_desc": "2 RUE DES BALKANS - 75120", "stop_name": "VITRUVE - BALKANS"}, "geometry": {"type": "Point", "coordinates": [2.4073071157225123, 48.859744878161706]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6e6609883b38994e11fc2c38911cae25fbfde648", "fields": {"departement": "75", "stop_lat": 48.85852369643829, "code_postal": "75120", "stop_lon": 2.4053985806356, "coord": [48.85852369643829, 2.4053985806356], "stop_id": 3690076, "stop_desc": "FACE 45 RUE VITRUVE - 75120", "stop_name": "PLACE DES GRES"}, "geometry": {"type": "Point", "coordinates": [2.4053985806356, 48.85852369643829]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "37656267e4f8ec5f66f7848f6cbeea792e1e0c18", "fields": {"departement": "93", "stop_lat": 48.8951098533028, "code_postal": "93053", "stop_lon": 2.443706743684697, "coord": [48.8951098533028, 2.443706743684697], "stop_id": 3689912, "stop_desc": "RUE DU PARC - 93053", "stop_name": "AVENUE DE BOBIGNY"}, "geometry": {"type": "Point", "coordinates": [2.443706743684697, 48.8951098533028]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1d349c564fe5873da35177904fad31da1811f3c7", "fields": {"departement": "94", "stop_lat": 48.849665220055705, "code_postal": "94033", "stop_lon": 2.47464957520262, "coord": [48.849665220055705, 2.47464957520262], "stop_id": 3690400, "stop_desc": "FACE 23 RUE GUERIN LEROUX - 94033", "stop_name": "HOTEL DE VILLE DE FONTENAY"}, "geometry": {"type": "Point", "coordinates": [2.47464957520262, 48.849665220055705]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4cbc444db6f21cfbdd27e3a7b74ed8ba125e48c0", "fields": {"departement": "94", "stop_lat": 48.84808801643971, "code_postal": "94033", "stop_lon": 2.478403934500656, "coord": [48.84808801643971, 2.478403934500656], "stop_id": 3690343, "stop_desc": "FACE 109 BOULEVARD GALLIENI - 94033", "stop_name": "HOTEL DE VILLE DE FONTENAY"}, "geometry": {"type": "Point", "coordinates": [2.478403934500656, 48.84808801643971]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3484deca4d01daa8aaedc17bb13aa767fee04a6d", "fields": {"departement": "94", "stop_lat": 48.8536116149176, "code_postal": "94033", "stop_lon": 2.457186423352073, "coord": [48.8536116149176, 2.457186423352073], "stop_id": 3690392, "stop_desc": "FACE 67 R ANDRE LAURENT - 94033", "stop_name": "GAMBETTA - ANDRE LAURENT"}, "geometry": {"type": "Point", "coordinates": [2.457186423352073, 48.8536116149176]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7af1c68cf6a33ec566c6540c0d386e7e40446e58", "fields": {"departement": "94", "stop_lat": 48.84738518778295, "code_postal": "94033", "stop_lon": 2.4722059675502126, "coord": [48.84738518778295, 2.4722059675502126], "stop_id": 3690397, "stop_desc": "4 RUE DE NEUILLY - 94033", "stop_name": "EGLISE SAINT-GERMAIN"}, "geometry": {"type": "Point", "coordinates": [2.4722059675502126, 48.84738518778295]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "28397d0703861c0c19be2da260cf5e2440da3647", "fields": {"departement": "94", "stop_lat": 48.851775265892286, "code_postal": "94033", "stop_lon": 2.4509856010862467, "coord": [48.851775265892286, 2.4509856010862467], "stop_id": 3690387, "stop_desc": "49 AVENUE DE STALINGRAD - 94033", "stop_name": "HECTOR MALOT"}, "geometry": {"type": "Point", "coordinates": [2.4509856010862467, 48.851775265892286]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b43cf7851e126cfca5be2cf731342a46325cec81", "fields": {"departement": "94", "stop_lat": 48.85667038006725, "code_postal": "94033", "stop_lon": 2.471208617513792, "coord": [48.85667038006725, 2.471208617513792], "stop_id": 3690350, "stop_desc": "FACE 71 AVENUE VICTOR HUGO - 94033", "stop_name": "EMILE ZOLA"}, "geometry": {"type": "Point", "coordinates": [2.471208617513792, 48.85667038006725]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e78c429b1fdc5d7b00e3a94d494cf3d2eb43b73f", "fields": {"departement": "94", "stop_lat": 48.84632336215608, "code_postal": "94033", "stop_lon": 2.473347068714114, "coord": [48.84632336215608, 2.473347068714114], "stop_id": 3690378, "stop_desc": "7 RUE LOUIS XAVIER DE RICARD - 94033", "stop_name": "MOLIERE"}, "geometry": {"type": "Point", "coordinates": [2.473347068714114, 48.84632336215608]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "76cc125f94742aa7303c5684178fce12e646b793", "fields": {"departement": "94", "stop_lat": 48.852274617729336, "code_postal": "94033", "stop_lon": 2.472000785161405, "coord": [48.852274617729336, 2.472000785161405], "stop_id": 3690347, "stop_desc": "27 BD DE VERDUN - 94033", "stop_name": "PLACE MICHELET"}, "geometry": {"type": "Point", "coordinates": [2.472000785161405, 48.852274617729336]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1b0b25b5b01ac707bc8d9bb1691ef2ea613517a1", "fields": {"departement": "94", "stop_lat": 48.85890577468561, "code_postal": "94033", "stop_lon": 2.4733937075926353, "coord": [48.85890577468561, 2.4733937075926353], "stop_id": 3690406, "stop_desc": "172 BIS RUE VICTOR HUGO - 94033", "stop_name": "VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.4733937075926353, 48.85890577468561]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b8025718b51d06a50fec45678deee40a874840f3", "fields": {"departement": "94", "stop_lat": 48.84935147661661, "code_postal": "94033", "stop_lon": 2.4572582827026497, "coord": [48.84935147661661, 2.4572582827026497], "stop_id": 3690389, "stop_desc": "135 RUE DALAYRAC - 94033", "stop_name": "LES RIGOLLOTS"}, "geometry": {"type": "Point", "coordinates": [2.4572582827026497, 48.84935147661661]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "94fa344ab59be0e8d61ef1716793a46867991aca", "fields": {"departement": "94", "stop_lat": 48.856451330814025, "code_postal": "94033", "stop_lon": 2.481763616113396, "coord": [48.856451330814025, 2.481763616113396], "stop_id": 3690446, "stop_desc": "FACE 3 RUE JEAN MACE - 94033", "stop_name": "CHARLES GARCIA - COLLEGE JEAN MACE"}, "geometry": {"type": "Point", "coordinates": [2.481763616113396, 48.856451330814025]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "df4b6a2baed70624af10441d5595cf7feaa05913", "fields": {"departement": "94", "stop_lat": 48.84658036308523, "code_postal": "94033", "stop_lon": 2.4764933833473752, "coord": [48.84658036308523, 2.4764933833473752], "stop_id": 3690431, "stop_desc": "FACE 4 RUE DE LA RESISTANCE - 94033", "stop_name": "MAISON DU CITOYEN"}, "geometry": {"type": "Point", "coordinates": [2.4764933833473752, 48.84658036308523]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "88d8ea31a618077f471df631b0ff9aae63567300", "fields": {"departement": "94", "stop_lat": 48.84658036308523, "code_postal": "94033", "stop_lon": 2.4764933833473752, "coord": [48.84658036308523, 2.4764933833473752], "stop_id": 3690456, "stop_desc": "FACE 4 RUE DE LA RESISTANCE - 94033", "stop_name": "MAISON DU CITOYEN"}, "geometry": {"type": "Point", "coordinates": [2.4764933833473752, 48.84658036308523]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d054597bbb226d805ffb5ee1b5d4f9afbc52743a", "fields": {"departement": "94", "stop_lat": 48.84632336215608, "code_postal": "94033", "stop_lon": 2.473347068714114, "coord": [48.84632336215608, 2.473347068714114], "stop_id": 3690432, "stop_desc": "7 RUE LOUIS XAVIER DE RICARD - 94033", "stop_name": "MOLIERE"}, "geometry": {"type": "Point", "coordinates": [2.473347068714114, 48.84632336215608]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6d56b2b6ea6a54f9f61746a61f72b05c1a7a7ed3", "fields": {"departement": "94", "stop_lat": 48.859075989520655, "code_postal": "94033", "stop_lon": 2.473870881419788, "coord": [48.859075989520655, 2.473870881419788], "stop_id": 3690449, "stop_desc": "127-129 AVENUE VICTOR HUGO - 94033", "stop_name": "VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.473870881419788, 48.859075989520655]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3f582614ef1b81cd310a82b79e7345bf5ab80eed", "fields": {"departement": "94", "stop_lat": 48.85812367901838, "code_postal": "94033", "stop_lon": 2.495375181556799, "coord": [48.85812367901838, 2.495375181556799], "stop_id": 3690439, "stop_desc": "RUE DE LA PRAIRIE - 94033", "stop_name": "LES ALOUETTES"}, "geometry": {"type": "Point", "coordinates": [2.495375181556799, 48.85812367901838]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4013f65ccd56a060f34442570ec5b360adc5610f", "fields": {"departement": "93", "stop_lat": 48.91372104318945, "code_postal": "93055", "stop_lon": 2.4090708594396384, "coord": [48.91372104318945, 2.4090708594396384], "stop_id": 3708448, "stop_desc": "23 AVENUE DES COURTILLIERES - 93055", "stop_name": "DIVISION LECLERC - COURTILLIERES"}, "geometry": {"type": "Point", "coordinates": [2.4090708594396384, 48.91372104318945]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "86533712b537d3bb4ae91d3e1ea517fef8576a69", "fields": {"departement": "93", "stop_lat": 48.90555453249922, "code_postal": "93008", "stop_lon": 2.469044655471792, "coord": [48.90555453249922, 2.469044655471792], "stop_id": 3708472, "stop_desc": "FACE 439 AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "PONT DE BONDY"}, "geometry": {"type": "Point", "coordinates": [2.469044655471792, 48.90555453249922]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "06147118a7868bb3d7943c45719ca1ea628ec87e", "fields": {"departement": "93", "stop_lat": 48.90717332711018, "code_postal": "93008", "stop_lon": 2.4296073209290268, "coord": [48.90717332711018, 2.4296073209290268], "stop_id": 3708458, "stop_desc": "140 RUE DE LA REPUBLIQUE - 93008", "stop_name": "LYCEE ANDRE SABATIER"}, "geometry": {"type": "Point", "coordinates": [2.4296073209290268, 48.90717332711018]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "949f13f37b0545f696c315d7cc345289c66a959a", "fields": {"departement": "93", "stop_lat": 48.906577135972725, "code_postal": "93008", "stop_lon": 2.4440166024805547, "coord": [48.906577135972725, 2.4440166024805547], "stop_id": 3708463, "stop_desc": "BOULEVARD LENINE - 93008", "stop_name": "HOTEL DE VILLE DE BOBIGNY"}, "geometry": {"type": "Point", "coordinates": [2.4440166024805547, 48.906577135972725]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fe1fa457c695730aebbda2fd51084b4175be1aa5", "fields": {"departement": "93", "stop_lat": 48.906711868542196, "code_postal": "93008", "stop_lon": 2.444098679824846, "coord": [48.906711868542196, 2.444098679824846], "stop_id": 3708464, "stop_desc": "BOULEVARD LENINE - 93008", "stop_name": "HOTEL DE VILLE DE BOBIGNY"}, "geometry": {"type": "Point", "coordinates": [2.444098679824846, 48.906711868542196]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cd77cbd19bf142efa92077482b99d7de4cb4b3d3", "fields": {"departement": "94", "stop_lat": 48.83684957358511, "code_postal": "94015", "stop_lon": 2.520879219789748, "coord": [48.83684957358511, 2.520879219789748], "stop_id": 3708143, "stop_desc": "32 GRANDE RUE CHARLES DE GAULLE - 94015", "stop_name": "RUE DU PRESSOIR"}, "geometry": {"type": "Point", "coordinates": [2.520879219789748, 48.83684957358511]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1d7e0adc0f9aa1cc25dbfecc7c3817713ca096e9", "fields": {"departement": "93", "stop_lat": 48.914177758098994, "code_postal": "93055", "stop_lon": 2.411716729965043, "coord": [48.914177758098994, 2.411716729965043], "stop_id": 3708451, "stop_desc": "7 AVENUE DES COURTILLIERES - 93055", "stop_name": "PLACE DU MARCHE"}, "geometry": {"type": "Point", "coordinates": [2.411716729965043, 48.914177758098994]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c59eb86c092a50a80d067aa5c58fabfd9e3936f8", "fields": {"departement": "94", "stop_lat": 48.83442006808396, "code_postal": "94058", "stop_lon": 2.5107960297022602, "coord": [48.83442006808396, 2.5107960297022602], "stop_id": 3708139, "stop_desc": "186 AVENUE PIERRE BROSSOLETTE - 94058", "stop_name": "GUY MOQUET"}, "geometry": {"type": "Point", "coordinates": [2.5107960297022602, 48.83442006808396]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4840a4e9270dca19fea65af78d05a816c362d018", "fields": {"departement": "93", "stop_lat": 48.90672978942366, "code_postal": "93008", "stop_lon": 2.433614717029149, "coord": [48.90672978942366, 2.433614717029149], "stop_id": 3708460, "stop_desc": "RUE DE LA REPUBLIQUE - 93008", "stop_name": "RUE DE LA GARE"}, "geometry": {"type": "Point", "coordinates": [2.433614717029149, 48.90672978942366]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "302e1d2bdc898ef5d46399c14723427e4992d0ef", "fields": {"departement": "75", "stop_lat": 48.86525375030457, "code_postal": "75108", "stop_lon": 2.3104186054184357, "coord": [48.86525375030457, 2.3104186054184357], "stop_id": 4022952, "stop_desc": "FACE 5 AVENUE F.D. ROOSEVELT - 75108", "stop_name": "PALAIS DE LA DECOUVERTE"}, "geometry": {"type": "Point", "coordinates": [2.3104186054184357, 48.86525375030457]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2345986c83446056f908ed148c3dcd38b06ad99b", "fields": {"departement": "75", "stop_lat": 48.87186926063576, "code_postal": "75108", "stop_lon": 2.314366174057174, "coord": [48.87186926063576, 2.314366174057174], "stop_id": 4022955, "stop_desc": "36 AVENUE MATIGNON - 75108", "stop_name": "MATIGNON - SAINT-HONORE"}, "geometry": {"type": "Point", "coordinates": [2.314366174057174, 48.87186926063576]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9576cd65ed7ed2483a77bc6dbbbdb9ab8273d612", "fields": {"departement": "75", "stop_lat": 48.873180525721516, "code_postal": "75108", "stop_lon": 2.310155638063019, "coord": [48.873180525721516, 2.310155638063019], "stop_id": 4022957, "stop_desc": "FACE 1 AVENUE MYRON-T.HERRICK - 75108", "stop_name": "SAINT-PHILIPPE-DU-ROULE"}, "geometry": {"type": "Point", "coordinates": [2.310155638063019, 48.873180525721516]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8ec99e7247676fc73fa2c1f382e02aa83accbf4d", "fields": {"departement": "75", "stop_lat": 48.87486965005481, "code_postal": "75108", "stop_lon": 2.3080837702852697, "coord": [48.87486965005481, 2.3080837702852697], "stop_id": 4022960, "stop_desc": "165 BOULEVARD HAUSSMANN - 75108", "stop_name": "HAUSSMANN - COURCELLES"}, "geometry": {"type": "Point", "coordinates": [2.3080837702852697, 48.87486965005481]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e3471845526c2b89c1b5ae3c7d94b8db20876be6", "fields": {"departement": "92", "stop_lat": 48.88847555576239, "code_postal": "92051", "stop_lon": 2.2642878081780484, "coord": [48.88847555576239, 2.2642878081780484], "stop_id": 4022993, "stop_desc": "44 BOULEVARD D'ARGENSON - 92051", "stop_name": "CHATEAU"}, "geometry": {"type": "Point", "coordinates": [2.2642878081780484, 48.88847555576239]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c12fb7dda9fa815348eb5b1f3071ada9c612b65a", "fields": {"departement": "92", "stop_lat": 48.885183911088326, "code_postal": "92051", "stop_lon": 2.2605857298276946, "coord": [48.885183911088326, 2.2605857298276946], "stop_id": 4022994, "stop_desc": "3 RUE DU CHATEAU - 92051", "stop_name": "PONT DE NEUILLY"}, "geometry": {"type": "Point", "coordinates": [2.2605857298276946, 48.885183911088326]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8151ce6fe01bb27cf9f10207c23bef1a56273cbf", "fields": {"departement": "92", "stop_lat": 48.88122845626599, "code_postal": "92051", "stop_lon": 2.2589427639085233, "coord": [48.88122845626599, 2.2589427639085233], "stop_id": 4022997, "stop_desc": "21 AVENUE DE MADRID - 92051", "stop_name": "MAURICE BARRES"}, "geometry": {"type": "Point", "coordinates": [2.2589427639085233, 48.88122845626599]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3e39c6fccc14c093ac227e26f5f76a338621323a", "fields": {"departement": "92", "stop_lat": 48.88060207123808, "code_postal": "92062", "stop_lon": 2.2384223287696106, "coord": [48.88060207123808, 2.2384223287696106], "stop_id": 4023005, "stop_desc": "60 BIS BOULEVARD RICHARD WALLACE - 92062", "stop_name": "WALLACE - JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.2384223287696106, 48.88060207123808]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "40ab75a30afaf8c33db9f355060044a9e8bcc59c", "fields": {"departement": "92", "stop_lat": 48.87992568956772, "code_postal": "92062", "stop_lon": 2.2356438653396578, "coord": [48.87992568956772, 2.2356438653396578], "stop_id": 4023007, "stop_desc": "FACE 4 RUE EUGENE EICHENBERGER - 92062", "stop_name": "BAS ROGERS"}, "geometry": {"type": "Point", "coordinates": [2.2356438653396578, 48.87992568956772]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2cbbef6e22e33c6f4942047f32ca406df3ed6dfb", "fields": {"departement": "92", "stop_lat": 48.86904073037529, "code_postal": "92073", "stop_lon": 2.22419430917762, "coord": [48.86904073037529, 2.22419430917762], "stop_id": 4023015, "stop_desc": "AVENUE CHARLES DE GAULLE - 92073", "stop_name": "SURESNES-DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.22419430917762, 48.86904073037529]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dfe67b293852463fc08217953b27c681eac9dab4", "fields": {"departement": "92", "stop_lat": 48.87855933518828, "code_postal": "92062", "stop_lon": 2.235305896379359, "coord": [48.87855933518828, 2.235305896379359], "stop_id": 4023022, "stop_desc": "140 RUE DE VERDUN - 92062", "stop_name": "RESIDENCE VERDUN"}, "geometry": {"type": "Point", "coordinates": [2.235305896379359, 48.87855933518828]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "64affd24cb7f98262e17ad49480854b6f5ece4af", "fields": {"departement": "92", "stop_lat": 48.87684343387233, "code_postal": "92051", "stop_lon": 2.2472996479819614, "coord": [48.87684343387233, 2.2472996479819614], "stop_id": 4023023, "stop_desc": "135 BOULEVARD DU GENERAL KOENIG - 92051", "stop_name": "BAGATELLE"}, "geometry": {"type": "Point", "coordinates": [2.2472996479819614, 48.87684343387233]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7fb5ab1e61aa0c541bb49090f5fd39ea8fc950a4", "fields": {"departement": "75", "stop_lat": 48.87900870722632, "code_postal": "75117", "stop_lon": 2.2945508340067544, "coord": [48.87900870722632, 2.2945508340067544], "stop_id": 4023047, "stop_desc": "FACE 1 AVENUE NIEL - 75117", "stop_name": "TERNES - MAC MAHON"}, "geometry": {"type": "Point", "coordinates": [2.2945508340067544, 48.87900870722632]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e7735ecb1f8a43b5a19bd2bca6c48b2eda3e65d5", "fields": {"departement": "75", "stop_lat": 48.881489637897715, "code_postal": "75117", "stop_lon": 2.2958160680054274, "coord": [48.881489637897715, 2.2958160680054274], "stop_id": 4023048, "stop_desc": "32 AVENUE NIEL - 75117", "stop_name": "PIERRE DEMOURS"}, "geometry": {"type": "Point", "coordinates": [2.2958160680054274, 48.881489637897715]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c76c9e4c8d43d0f093897599a39774fc31198a0f", "fields": {"departement": "75", "stop_lat": 48.883889646623466, "code_postal": "75117", "stop_lon": 2.297026976722162, "coord": [48.883889646623466, 2.297026976722162], "stop_id": 4023049, "stop_desc": "96 AVENUE NIEL - 75117", "stop_name": "PEREIRE - MARECHAL JUIN"}, "geometry": {"type": "Point", "coordinates": [2.297026976722162, 48.883889646623466]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "add1b485f70cd5e2a66960d6bc35407d538a016f", "fields": {"departement": "75", "stop_lat": 48.885649560413256, "code_postal": "75117", "stop_lon": 2.2925829691367388, "coord": [48.885649560413256, 2.2925829691367388], "stop_id": 4023052, "stop_desc": "135 AVENUE DE VILLIERS - 75117", "stop_name": "PORTE DE CHAMPERRET"}, "geometry": {"type": "Point", "coordinates": [2.2925829691367388, 48.885649560413256]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "679d6a3ce7f2ca5f67d401c76bb87afd31e9d569", "fields": {"departement": "75", "stop_lat": 48.88601688033029, "code_postal": "75117", "stop_lon": 2.289598157269828, "coord": [48.88601688033029, 2.289598157269828], "stop_id": 4023053, "stop_desc": "FACE 5 PLACE DE LA PORTE DE CHAMPERRET - 75117", "stop_name": "L'YSER ET LA SOMME"}, "geometry": {"type": "Point", "coordinates": [2.289598157269828, 48.88601688033029]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cb4976ee64435cc20814cfe51a8446b5c877309a", "fields": {"departement": "92", "stop_lat": 48.87111752398503, "code_postal": "92073", "stop_lon": 2.2249527206200748, "coord": [48.87111752398503, 2.2249527206200748], "stop_id": 4023066, "stop_desc": "2 RUE CARNOT - 92073", "stop_name": "MAIRIE DE SURESNES"}, "geometry": {"type": "Point", "coordinates": [2.2249527206200748, 48.87111752398503]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "257217f1a8ef5980f57a216a568619a161cbed8d", "fields": {"departement": "92", "stop_lat": 48.88097471259445, "code_postal": "92051", "stop_lon": 2.255809049565702, "coord": [48.88097471259445, 2.255809049565702], "stop_id": 4023077, "stop_desc": "7-9 RUE DELABORDERE - 92051", "stop_name": "RUE DU BOIS DE BOULOGNE"}, "geometry": {"type": "Point", "coordinates": [2.255809049565702, 48.88097471259445]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f2979379249807f3324945b1ce341c80fa50457b", "fields": {"departement": "75", "stop_lat": 48.88598204653511, "code_postal": "75117", "stop_lon": 2.2924736600136315, "coord": [48.88598204653511, 2.2924736600136315], "stop_id": 4023096, "stop_desc": "PLACE STUART MERRILL - 75117", "stop_name": "PORTE DE CHAMPERRET-METRO"}, "geometry": {"type": "Point", "coordinates": [2.2924736600136315, 48.88598204653511]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dc2c9700365c91a0e7dfd84c50fa221f03ad339c", "fields": {"departement": "92", "stop_lat": 48.89253149733794, "code_postal": "92051", "stop_lon": 2.2688752558078367, "coord": [48.89253149733794, 2.2688752558078367], "stop_id": 4023108, "stop_desc": "186 BOULEVARD BINEAU - 92051", "stop_name": "LA SAUSSAYE - BINEAU"}, "geometry": {"type": "Point", "coordinates": [2.2688752558078367, 48.89253149733794]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "067e83655f78114ae8c023145225cd1f5889e8b2", "fields": {"departement": "92", "stop_lat": 48.892342586607654, "code_postal": "92051", "stop_lon": 2.268562026580621, "coord": [48.892342586607654, 2.268562026580621], "stop_id": 4023109, "stop_desc": "171 BOULEVARD BINEAU - 92051", "stop_name": "LA SAUSSAYE - BINEAU"}, "geometry": {"type": "Point", "coordinates": [2.268562026580621, 48.892342586607654]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "64c01118c0691f86d2e1657624dd166e1d8d9b45", "fields": {"departement": "92", "stop_lat": 48.90665534199708, "code_postal": "92035", "stop_lon": 2.2377864022980307, "coord": [48.90665534199708, 2.2377864022980307], "stop_id": 4023127, "stop_desc": "AVENUE DE VERDUN 1916 - 92035", "stop_name": "LA GARENNE-COLOMBES - CHARLEBOURG"}, "geometry": {"type": "Point", "coordinates": [2.2377864022980307, 48.90665534199708]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dcdda30386de1817080fe26418406184970db046", "fields": {"departement": "92", "stop_lat": 48.904223353128025, "code_postal": "92035", "stop_lon": 2.231424632660872, "coord": [48.904223353128025, 2.231424632660872], "stop_id": 4023130, "stop_desc": "42-44 AVENUE DE VERDUN 1916 - 92035", "stop_name": "COLLEGE LES CHAMPS PHILIPPE"}, "geometry": {"type": "Point", "coordinates": [2.231424632660872, 48.904223353128025]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "61f5354c7e325ad5d772d2814ee6a5b2c909d629", "fields": {"departement": "92", "stop_lat": 48.90114366662126, "code_postal": "92050", "stop_lon": 2.2247649617257386, "coord": [48.90114366662126, 2.2247649617257386], "stop_id": 4023134, "stop_desc": "103 AVENUE FRANCOIS ARAGO - 92050", "stop_name": "ARRAS"}, "geometry": {"type": "Point", "coordinates": [2.2247649617257386, 48.90114366662126]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "69fee02c1644ea3cc96974b05688305a4dbb95fe", "fields": {"departement": "92", "stop_lat": 48.896986014423774, "code_postal": "92050", "stop_lon": 2.2189809266743676, "coord": [48.896986014423774, 2.2189809266743676], "stop_id": 4023140, "stop_desc": "RUE MARCEL PAUL - 92050", "stop_name": "ESPLANADE CHARLES DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.2189809266743676, 48.896986014423774]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "77a98fb242044026169e73cd940703b4a4031e7d", "fields": {"departement": "92", "stop_lat": 48.8894640565701, "code_postal": "92050", "stop_lon": 2.2105346357560283, "coord": [48.8894640565701, 2.2105346357560283], "stop_id": 4023152, "stop_desc": "50 RUE DE LA LIBERTE - 92050", "stop_name": "LE CHAT PERCHE"}, "geometry": {"type": "Point", "coordinates": [2.2105346357560283, 48.8894640565701]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7997212f0959953f4811d0ad3d46ed6345a8eda3", "fields": {"departement": "92", "stop_lat": 48.8876368174999, "code_postal": "92050", "stop_lon": 2.2078952178439013, "coord": [48.8876368174999, 2.2078952178439013], "stop_id": 4023154, "stop_desc": "10 AV DE LA LIBERTE - 92050", "stop_name": "CARRIERS"}, "geometry": {"type": "Point", "coordinates": [2.2078952178439013, 48.8876368174999]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5954dd2dbf288f7905e74e00737e4df5b50529b6", "fields": {"departement": "92", "stop_lat": 48.88535795431683, "code_postal": "92050", "stop_lon": 2.1955133465880006, "coord": [48.88535795431683, 2.1955133465880006], "stop_id": 4023160, "stop_desc": "30 AVENUE DU MARECHAL JOFFRE - 92050", "stop_name": "SAINTE-GENEVIEVE"}, "geometry": {"type": "Point", "coordinates": [2.1955133465880006, 48.88535795431683]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "023b268f85cff66aec1e2b4579f641464333121d", "fields": {"departement": "92", "stop_lat": 48.88545796036984, "code_postal": "92050", "stop_lon": 2.19648064018029, "coord": [48.88545796036984, 2.19648064018029], "stop_id": 4023161, "stop_desc": "FACE 24 AVENUE DU MARECHAL JOFFRE - 92050", "stop_name": "SAINTE-GENEVIEVE"}, "geometry": {"type": "Point", "coordinates": [2.19648064018029, 48.88545796036984]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "31283e18f532532452001c44a928d6a9f00ccb87", "fields": {"departement": "92", "stop_lat": 48.88387910264952, "code_postal": "92063", "stop_lon": 2.191415575852575, "coord": [48.88387910264952, 2.191415575852575], "stop_id": 4023162, "stop_desc": "10 AVENUE PAUL DOUMER - 92063", "stop_name": "BOULEVARD NATIONAL"}, "geometry": {"type": "Point", "coordinates": [2.191415575852575, 48.88387910264952]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8e55d9390ee5bbc0317ad722ad726ee92d714525", "fields": {"departement": "75", "stop_lat": 48.88598204653511, "code_postal": "75117", "stop_lon": 2.2924736600136315, "coord": [48.88598204653511, 2.2924736600136315], "stop_id": 4023171, "stop_desc": "PLACE STUART MERRILL - 75117", "stop_name": "PORTE DE CHAMPERRET-METRO"}, "geometry": {"type": "Point", "coordinates": [2.2924736600136315, 48.88598204653511]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b690d700d5730d8977d8a5547d957c401bba3bae", "fields": {"departement": "92", "stop_lat": 48.90506065554389, "code_postal": "92026", "stop_lon": 2.256289238138161, "coord": [48.90506065554389, 2.256289238138161], "stop_id": 4023183, "stop_desc": "FACE 165 BOULEVARD DE VERDUN - 92026", "stop_name": "EUROPE"}, "geometry": {"type": "Point", "coordinates": [2.256289238138161, 48.90506065554389]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3df45b80c48aeffdfd01e6b78855d170ee24f8e4", "fields": {"departement": "92", "stop_lat": 48.90736786089014, "code_postal": "92035", "stop_lon": 2.240879829025666, "coord": [48.90736786089014, 2.240879829025666], "stop_id": 4023187, "stop_desc": "98 BOULEVARD DE LA REPUBLIQUE - 92035", "stop_name": "DUMONT D'URVILLE - BELGIQUE"}, "geometry": {"type": "Point", "coordinates": [2.240879829025666, 48.90736786089014]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b7bbc2af2e1940a5613cc7817e9f90dfacb3ad8e", "fields": {"departement": "92", "stop_lat": 48.89584909177021, "code_postal": "92050", "stop_lon": 2.2235497155722275, "coord": [48.89584909177021, 2.2235497155722275], "stop_id": 4023189, "stop_desc": "0 BOULEVARD DE PESARO - 92050", "stop_name": "NANTERRE-PREFECTURE RER"}, "geometry": {"type": "Point", "coordinates": [2.2235497155722275, 48.89584909177021]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9329dc63688e0cced64e5e57ac821dede28fc684", "fields": {"departement": "92", "stop_lat": 48.88864621542606, "code_postal": "92050", "stop_lon": 2.22874436019326, "coord": [48.88864621542606, 2.22874436019326], "stop_id": 4023193, "stop_desc": "133 AVENUE PABLO PICASSO - 92050", "stop_name": "LES ROSIERS"}, "geometry": {"type": "Point", "coordinates": [2.22874436019326, 48.88864621542606]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8adc886c00a74854366622114db61e2e85ec350d", "fields": {"departement": "92", "stop_lat": 48.88871218819234, "code_postal": "92050", "stop_lon": 2.222420573739137, "coord": [48.88871218819234, 2.222420573739137], "stop_id": 4023195, "stop_desc": "99-101 AVENUE PABLO PICASSO - 92050", "stop_name": "LES FONTENELLES"}, "geometry": {"type": "Point", "coordinates": [2.222420573739137, 48.88871218819234]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3b6332f7606418e899e4a71d337fec93d7b6fdf8", "fields": {"departement": "92", "stop_lat": 48.89300491332636, "code_postal": "92050", "stop_lon": 2.2104442000210622, "coord": [48.89300491332636, 2.2104442000210622], "stop_id": 4023201, "stop_desc": "85 AVENUE FREDERIC ET IRENE JOLIOT CURIE - 92050", "stop_name": "PALAIS DES SPORTS"}, "geometry": {"type": "Point", "coordinates": [2.2104442000210622, 48.89300491332636]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4a68b7e9447110373322d68db1c7a7467dd637a6", "fields": {"departement": "92", "stop_lat": 48.88938573912001, "code_postal": "92050", "stop_lon": 2.2046335852696703, "coord": [48.88938573912001, 2.2046335852696703], "stop_id": 4023204, "stop_desc": "92 AVENUE FREDERIC ET IRENE JOLIOT CURIE - 92050", "stop_name": "SADI-CARNOT - JOLIOT-CURIE"}, "geometry": {"type": "Point", "coordinates": [2.2046335852696703, 48.88938573912001]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "883477e4c56c4410fc01400132fb666ab4600119", "fields": {"departement": "92", "stop_lat": 48.87808078212805, "code_postal": "92050", "stop_lon": 2.205534554136397, "coord": [48.87808078212805, 2.205534554136397], "stop_id": 4023210, "stop_desc": "77 RUE DE GARCHES - 92050", "stop_name": "LES CHAILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.205534554136397, 48.87808078212805]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b06fb7ea26b53260fe493ab2ee5058244c5e6541", "fields": {"departement": "92", "stop_lat": 48.89095063633459, "code_postal": "92051", "stop_lon": 2.270431062561649, "coord": [48.89095063633459, 2.270431062561649], "stop_id": 4023225, "stop_desc": "166 BOULEVARD BINEAU - 92051", "stop_name": "BINEAU - CHATEAU"}, "geometry": {"type": "Point", "coordinates": [2.270431062561649, 48.89095063633459]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4efca957551889ae556652dcfe72f23eba0f5435", "fields": {"departement": "92", "stop_lat": 48.90060601237607, "code_postal": "92026", "stop_lon": 2.2607673873457803, "coord": [48.90060601237607, 2.2607673873457803], "stop_id": 4023229, "stop_desc": "68 BOULEVARD DE VERDUN - 92026", "stop_name": "PAIX - VERDUN"}, "geometry": {"type": "Point", "coordinates": [2.2607673873457803, 48.90060601237607]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "48620e78d0063475a310947f192b8dac2ec2d9eb", "fields": {"departement": "92", "stop_lat": 48.90506065554389, "code_postal": "92026", "stop_lon": 2.256289238138161, "coord": [48.90506065554389, 2.256289238138161], "stop_id": 4023231, "stop_desc": "FACE 165 BOULEVARD DE VERDUN - 92026", "stop_name": "EUROPE"}, "geometry": {"type": "Point", "coordinates": [2.256289238138161, 48.90506065554389]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "298ec671f9f418f6fcba4870ca3746f1b688ee79", "fields": {"departement": "92", "stop_lat": 48.906894877620985, "code_postal": "92035", "stop_lon": 2.245093408164089, "coord": [48.906894877620985, 2.245093408164089], "stop_id": 4023234, "stop_desc": "74 BOULEVARD DE LA REPUBLIQUE - 92035", "stop_name": "MAIRIE DE LA GARENNE-COLOMBES"}, "geometry": {"type": "Point", "coordinates": [2.245093408164089, 48.906894877620985]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5abf1e1606291d38e576153a36b7cb72a7ec4ed3", "fields": {"departement": "92", "stop_lat": 48.904223353128025, "code_postal": "92035", "stop_lon": 2.231424632660872, "coord": [48.904223353128025, 2.231424632660872], "stop_id": 4023238, "stop_desc": "42-44 AVENUE DE VERDUN 1916 - 92035", "stop_name": "COLLEGE LES CHAMPS PHILIPPE"}, "geometry": {"type": "Point", "coordinates": [2.231424632660872, 48.904223353128025]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "899928a81f1db19cd5c83c1ff493049d3b2b1093", "fields": {"departement": "92", "stop_lat": 48.88029959733651, "code_postal": "92063", "stop_lon": 2.1822551110716826, "coord": [48.88029959733651, 2.1822551110716826], "stop_id": 4023243, "stop_desc": "83 AVENUE PAUL DOUMER - 92063", "stop_name": "RUEIL - VILLE"}, "geometry": {"type": "Point", "coordinates": [2.1822551110716826, 48.88029959733651]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f1409716659916d6a4e235d44ef17ee4a94550c3", "fields": {"departement": "92", "stop_lat": 48.8928732015959, "code_postal": "92050", "stop_lon": 2.2133885267383153, "coord": [48.8928732015959, 2.2133885267383153], "stop_id": 4023253, "stop_desc": "AVENUE PABLO PICASSO - 92050", "stop_name": "THEATRE DES AMANDIERS"}, "geometry": {"type": "Point", "coordinates": [2.2133885267383153, 48.8928732015959]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bdb1c194221546de17dccfd4ee9a4ec6d1d49b20", "fields": {"departement": "92", "stop_lat": 48.89613064427212, "code_postal": "92050", "stop_lon": 2.2173881097217665, "coord": [48.89613064427212, 2.2173881097217665], "stop_id": 4023255, "stop_desc": "RUE PABLO NERUDA - 92050", "stop_name": "PREFECTURE DES HAUTS-DE-SEINE"}, "geometry": {"type": "Point", "coordinates": [2.2173881097217665, 48.89613064427212]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a12147e3535e41d1f3e96127e5b9a41fab5123c8", "fields": {"departement": "92", "stop_lat": 48.895056889425156, "code_postal": "92050", "stop_lon": 2.222161171082742, "coord": [48.895056889425156, 2.222161171082742], "stop_id": 4023256, "stop_desc": "70 RUE SALVADOR ALLENDE - 92050", "stop_name": "ESPLANADE CHARLES DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.222161171082742, 48.895056889425156]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c3f224f4d62a2210651208463efcfadecdf9fa85", "fields": {"departement": "92", "stop_lat": 48.896889073971664, "code_postal": "92050", "stop_lon": 2.2209303386289885, "coord": [48.896889073971664, 2.2209303386289885], "stop_id": 4023257, "stop_desc": "0 BD DE PESARO - 92050", "stop_name": "NANTERRE-PREFECTURE RER"}, "geometry": {"type": "Point", "coordinates": [2.2209303386289885, 48.896889073971664]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "37ed1d569264a4a57a1bd096449659d7ea4c5add", "fields": {"departement": "92", "stop_lat": 48.90307056824503, "code_postal": "92050", "stop_lon": 2.2287141538705844, "coord": [48.90307056824503, 2.2287141538705844], "stop_id": 4023260, "stop_desc": "204 AVENUE FRANCOIS ARAGO - 92050", "stop_name": "VEUVE LACROIX"}, "geometry": {"type": "Point", "coordinates": [2.2287141538705844, 48.90307056824503]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4a5f1b435a8e2dd259bc5f804b56a539d056a14a", "fields": {"departement": "92", "stop_lat": 48.88728839310905, "code_postal": "92051", "stop_lon": 2.279076042909763, "coord": [48.88728839310905, 2.279076042909763], "stop_id": 4023270, "stop_desc": "75 BOULEVARD BINEAU - 92051", "stop_name": "VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.279076042909763, 48.88728839310905]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eb3972e1f91b4a196cb8cc94a4106f3ba118e429", "fields": {"departement": "92", "stop_lat": 48.88832893507193, "code_postal": "92051", "stop_lon": 2.275163512115956, "coord": [48.88832893507193, 2.275163512115956], "stop_id": 4023271, "stop_desc": "102-104 BOULEVARD BINEAU - 92051", "stop_name": "INKERMANN - BINEAU"}, "geometry": {"type": "Point", "coordinates": [2.275163512115956, 48.88832893507193]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3047e234460f71f3bdef999c4bee98b049c03f17", "fields": {"departement": "92", "stop_lat": 48.88920854622339, "code_postal": "92051", "stop_lon": 2.2730227566215864, "coord": [48.88920854622339, 2.2730227566215864], "stop_id": 4023274, "stop_desc": "131 BOULEVARD BINEAU - 92051", "stop_name": "CHEZY"}, "geometry": {"type": "Point", "coordinates": [2.2730227566215864, 48.88920854622339]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "299396babcc056d52d9497b559b3c6a3b6c0f0f8", "fields": {"departement": "92", "stop_lat": 48.89745348782597, "code_postal": "92026", "stop_lon": 2.2638798727038214, "coord": [48.89745348782597, 2.2638798727038214], "stop_id": 4023281, "stop_desc": "FACE 7 BOULEVARD DE VERDUN - 92026", "stop_name": "PONT BINEAU"}, "geometry": {"type": "Point", "coordinates": [2.2638798727038214, 48.89745348782597]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2dd23c804268053e3dcedd7b4a947dc783ff2dc9", "fields": {"departement": "92", "stop_lat": 48.90063271062068, "code_postal": "92026", "stop_lon": 2.2603583975265384, "coord": [48.90063271062068, 2.2603583975265384], "stop_id": 4023284, "stop_desc": "119 BOULEVARD DE VERDUN - 92026", "stop_name": "PAIX - VERDUN"}, "geometry": {"type": "Point", "coordinates": [2.2603583975265384, 48.90063271062068]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f748bc6e8069224c30630d600d96c77fb14e54ed", "fields": {"departement": "92", "stop_lat": 48.902456168621285, "code_postal": "92026", "stop_lon": 2.25893794686687, "coord": [48.902456168621285, 2.25893794686687], "stop_id": 4023285, "stop_desc": "155 BOULEVARD DE VERDUN - 92026", "stop_name": "VERDUN - RUE LATERALE"}, "geometry": {"type": "Point", "coordinates": [2.25893794686687, 48.902456168621285]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5349207c869da47603310e3b87a6e14ec4282038", "fields": {"departement": "92", "stop_lat": 48.90476405437525, "code_postal": "92026", "stop_lon": 2.2562488033016863, "coord": [48.90476405437525, 2.2562488033016863], "stop_id": 4023288, "stop_desc": "165 BOULEVARD DE VERDUN - 92026", "stop_name": "EUROPE"}, "geometry": {"type": "Point", "coordinates": [2.2562488033016863, 48.90476405437525]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "550c50db50aacf010556b1762b2fcb916799a1bd", "fields": {"departement": "92", "stop_lat": 48.91068539847506, "code_postal": "92035", "stop_lon": 2.2546034257737095, "coord": [48.91068539847506, 2.2546034257737095], "stop_id": 4023292, "stop_desc": "42 AVENUE DU GENERAL DE GAULLE - 92035", "stop_name": "RUE DE L'AIGLE"}, "geometry": {"type": "Point", "coordinates": [2.2546034257737095, 48.91068539847506]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d5ec49bffd2644613278986dd8ae613fce2c2827", "fields": {"departement": "92", "stop_lat": 48.91516855994774, "code_postal": "92025", "stop_lon": 2.252660031115276, "coord": [48.91516855994774, 2.252660031115276], "stop_id": 4023296, "stop_desc": "132 AVENUE HENRI BARBUSSE - 92025", "stop_name": "FELIX FAURE"}, "geometry": {"type": "Point", "coordinates": [2.252660031115276, 48.91516855994774]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e4c68fc33c5cd79f544a784ad64cf397e8380bc9", "fields": {"departement": "92", "stop_lat": 48.92522992750631, "code_postal": "92025", "stop_lon": 2.2471474208812148, "coord": [48.92522992750631, 2.2471474208812148], "stop_id": 4023303, "stop_desc": "29 BOULEVARD EDGAR QUINET - 92025", "stop_name": "LES RENOUILLERS"}, "geometry": {"type": "Point", "coordinates": [2.2471474208812148, 48.92522992750631]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "08770e0721f1af28488ba7efaae24ab83b4fd197", "fields": {"departement": "95", "stop_lat": 48.93589054083308, "code_postal": "95018", "stop_lon": 2.2385214210314346, "coord": [48.93589054083308, 2.2385214210314346], "stop_id": 4023308, "stop_desc": "6 PLACE DU 11 NOVEMBRE - 95018", "stop_name": "PLACE DU 11 NOVEMBRE"}, "geometry": {"type": "Point", "coordinates": [2.2385214210314346, 48.93589054083308]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7ff373df9a3bbb5d4f7bc05c148d61a2f678ea25", "fields": {"departement": "95", "stop_lat": 48.937452665423535, "code_postal": "95018", "stop_lon": 2.2366222908811815, "coord": [48.937452665423535, 2.2366222908811815], "stop_id": 4023311, "stop_desc": "17 RUE AMBROISE THOMAS - 95018", "stop_name": "FERDINAND BERTHOUD"}, "geometry": {"type": "Point", "coordinates": [2.2366222908811815, 48.937452665423535]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a36452d455ac7a7728a288fc7e2f6108e62b6451", "fields": {"departement": "95", "stop_lat": 48.939985016197845, "code_postal": "95018", "stop_lon": 2.2343527895693605, "coord": [48.939985016197845, 2.2343527895693605], "stop_id": 4023313, "stop_desc": "FACE 4 AVENUE MAURICE UTRILLO - 95018", "stop_name": "MAURICE UTRILLO"}, "geometry": {"type": "Point", "coordinates": [2.2343527895693605, 48.939985016197845]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0b7cd441329b0b84430a166a71b2e998bfea73b7", "fields": {"departement": "95", "stop_lat": 48.946570916246806, "code_postal": "95018", "stop_lon": 2.232716089171262, "coord": [48.946570916246806, 2.232716089171262], "stop_id": 4023317, "stop_desc": "151-153 AVENUE MAURICE UTRILLO - 95018", "stop_name": "PLACE FRANCOIS RABELAIS"}, "geometry": {"type": "Point", "coordinates": [2.232716089171262, 48.946570916246806]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7ce43ece1b4992bef46228edb996df874ae438c1", "fields": {"departement": "95", "stop_lat": 48.95230041126562, "code_postal": "95018", "stop_lon": 2.2281879267465583, "coord": [48.95230041126562, 2.2281879267465583], "stop_id": 4023321, "stop_desc": "RUE JEAN LURCAT - 95018", "stop_name": "JEAN LURCAT"}, "geometry": {"type": "Point", "coordinates": [2.2281879267465583, 48.95230041126562]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6a6f2c78d975676fa6c47e590c15b738c0dcaa9d", "fields": {"departement": "95", "stop_lat": 48.95397324256516, "code_postal": "95018", "stop_lon": 2.2200788355207943, "coord": [48.95397324256516, 2.2200788355207943], "stop_id": 4023325, "stop_desc": "ALLEE GUY DE MAUPASSANT - 95018", "stop_name": "BEETHOVEN"}, "geometry": {"type": "Point", "coordinates": [2.2200788355207943, 48.95397324256516]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "15c915be1d8d596d51e418f81fd3eb191296b679", "fields": {"departement": "92", "stop_lat": 48.92701814780932, "code_postal": "92025", "stop_lon": 2.246912453042652, "coord": [48.92701814780932, 2.246912453042652], "stop_id": 4023328, "stop_desc": "17 RUE PAUL BERT - 92025", "stop_name": "AUDRA"}, "geometry": {"type": "Point", "coordinates": [2.246912453042652, 48.92701814780932]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "78469cd45e3007658c23228fa357a6dd6142b1a6", "fields": {"departement": "92", "stop_lat": 48.887147427168095, "code_postal": "92026", "stop_lon": 2.2536188488273443, "coord": [48.887147427168095, 2.2536188488273443], "stop_id": 4023369, "stop_desc": "QUAI DU PRESIDENT PAUL DOUMER - 92026", "stop_name": "PONT DE NEUILLY - RIVE GAUCHE"}, "geometry": {"type": "Point", "coordinates": [2.2536188488273443, 48.887147427168095]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "48067c231fac33deac15baf36cc85d756ea3b5f3", "fields": {"departement": "92", "stop_lat": 48.894757154879926, "code_postal": "92026", "stop_lon": 2.2502399245509297, "coord": [48.894757154879926, 2.2502399245509297], "stop_id": 4023375, "stop_desc": "3-11 PLACE CHARRAS - 92026", "stop_name": "PLACE CHARRAS"}, "geometry": {"type": "Point", "coordinates": [2.2502399245509297, 48.894757154879926]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7fccea63791e3e9078ab768fbb134c56012bde96", "fields": {"departement": "92", "stop_lat": 48.90514682425276, "code_postal": "92035", "stop_lon": 2.2393707113959755, "coord": [48.90514682425276, 2.2393707113959755], "stop_id": 4023382, "stop_desc": "10 RUE LEON MAURICE NORDMANN - 92035", "stop_name": "NORDMANN"}, "geometry": {"type": "Point", "coordinates": [2.2393707113959755, 48.90514682425276]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a816e40736da1ce40fb99028905a2c19eca6f7a5", "fields": {"departement": "92", "stop_lat": 48.92150117940136, "code_postal": "92025", "stop_lon": 2.2482585186554163, "coord": [48.92150117940136, 2.2482585186554163], "stop_id": 4023394, "stop_desc": "22 RUE D'ESTIENNE D'ORVES - 92025", "stop_name": "JACQUES ELEONOR FERME"}, "geometry": {"type": "Point", "coordinates": [2.2482585186554163, 48.92150117940136]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f2051abb5c4548f98aef4558e4db1180913ce6b8", "fields": {"departement": "92", "stop_lat": 48.924416258840814, "code_postal": "92025", "stop_lon": 2.252808582317221, "coord": [48.924416258840814, 2.252808582317221], "stop_id": 4023397, "stop_desc": "2 BOULEVARD DE VALMY - 92025", "stop_name": "GENERAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.252808582317221, 48.924416258840814]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c0fff25ca8a1d388282b7194fcb675b9c45e5856", "fields": {"departement": "92", "stop_lat": 48.92591726742857, "code_postal": "92025", "stop_lon": 2.2530789017004187, "coord": [48.92591726742857, 2.2530789017004187], "stop_id": 4023398, "stop_desc": "28 BOULEVARD DE VALMY - 92025", "stop_name": "FRATERNITE"}, "geometry": {"type": "Point", "coordinates": [2.2530789017004187, 48.92591726742857]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1fcbe135589a9e8aa05eb245a1b0be26e7431b0f", "fields": {"departement": "92", "stop_lat": 48.926132770227056, "code_postal": "92025", "stop_lon": 2.252819421979976, "coord": [48.926132770227056, 2.252819421979976], "stop_id": 4023399, "stop_desc": "33 BOULEVARD DE VALMY - 92025", "stop_name": "FRATERNITE"}, "geometry": {"type": "Point", "coordinates": [2.252819421979976, 48.926132770227056]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f7b010614f4614cfb792830a8c84765f7b1f18c3", "fields": {"departement": "92", "stop_lat": 48.92810181284538, "code_postal": "92025", "stop_lon": 2.254111908403143, "coord": [48.92810181284538, 2.254111908403143], "stop_id": 4023400, "stop_desc": "74 BOULEVARD DE VALMY - 92025", "stop_name": "VALMY - GAMBETTA - STADE"}, "geometry": {"type": "Point", "coordinates": [2.254111908403143, 48.92810181284538]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3055c91a4c4719b6f1d3774a2be9f0cf8a88b756", "fields": {"departement": "92", "stop_lat": 48.93242547445004, "code_postal": "92025", "stop_lon": 2.2555098918777845, "coord": [48.93242547445004, 2.2555098918777845], "stop_id": 4023402, "stop_desc": "144 BOULEVARD DE VALMY - 92025", "stop_name": "BOULEVARD D'ACHERES"}, "geometry": {"type": "Point", "coordinates": [2.2555098918777845, 48.93242547445004]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dce77c9d4cf9af85cd8ab332c9062f3b4220b64e", "fields": {"departement": "92", "stop_lat": 48.932101703666795, "code_postal": "92025", "stop_lon": 2.2551557638672657, "coord": [48.932101703666795, 2.2551557638672657], "stop_id": 4023403, "stop_desc": "141 BOULEVARD DE VALMY - 92025", "stop_name": "BOULEVARD D'ACHERES"}, "geometry": {"type": "Point", "coordinates": [2.2551557638672657, 48.932101703666795]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7282768e2ff1b7b05f785f5dc3978a57c159b75a", "fields": {"departement": "92", "stop_lat": 48.936309270182875, "code_postal": "92025", "stop_lon": 2.2576863324263954, "coord": [48.936309270182875, 2.2576863324263954], "stop_id": 4023404, "stop_desc": "PLACE DE VALMY CHAUSSEE EST - 92025", "stop_name": "PETIT GENNEVILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.2576863324263954, 48.936309270182875]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "666edfdb9ebf3d0bbda2e3efdcf083f7341f84d0", "fields": {"departement": "92", "stop_lat": 48.887154962379554, "code_postal": "92062", "stop_lon": 2.2515746160906414, "coord": [48.887154962379554, 2.2515746160906414], "stop_id": 4023410, "stop_desc": "BOULEVARD PIERRE GAUDIN - 92062", "stop_name": "PONT DE NEUILLY - RIVE GAUCHE"}, "geometry": {"type": "Point", "coordinates": [2.2515746160906414, 48.887154962379554]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "913f01fe2e6c700543e693934ab98ebfdd995991", "fields": {"departement": "95", "stop_lat": 48.925367901149954, "code_postal": "95063", "stop_lon": 2.211005958642109, "coord": [48.925367901149954, 2.211005958642109], "stop_id": 4023489, "stop_desc": "FACE 109 RUE EDOUARD VAILLANT - 95063", "stop_name": "HENRI BARBUSSE"}, "geometry": {"type": "Point", "coordinates": [2.211005958642109, 48.925367901149954]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "da3ecd6c607b3312e6770d5f7d1fa8b2e924213f", "fields": {"departement": "78", "stop_lat": 48.92439706712685, "code_postal": "78311", "stop_lon": 2.2025664357889987, "coord": [48.92439706712685, 2.2025664357889987], "stop_id": 4023493, "stop_desc": "67 BOULEVARD EMILE ZOLA - 78311", "stop_name": "YSER"}, "geometry": {"type": "Point", "coordinates": [2.2025664357889987, 48.92439706712685]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dc574d99ff1c3c629ccaa30c7d8f9216af3f2b5c", "fields": {"departement": "78", "stop_lat": 48.93091823783335, "code_postal": "78311", "stop_lon": 2.184858825547949, "coord": [48.93091823783335, 2.184858825547949], "stop_id": 4023501, "stop_desc": "112 BOULEVARD HENRI BARBUSSE - 78311", "stop_name": "CAMILLE PELLETAN"}, "geometry": {"type": "Point", "coordinates": [2.184858825547949, 48.93091823783335]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6d9cba4fe5f7163fbebd7635fed80bd4ff00bcbe", "fields": {"departement": "78", "stop_lat": 48.933777895447946, "code_postal": "78311", "stop_lon": 2.17935331837722, "coord": [48.933777895447946, 2.17935331837722], "stop_id": 4023503, "stop_desc": "146 BOULEVARD HENRI BARBUSSE - 78311", "stop_name": "GENERAL NEGRIER"}, "geometry": {"type": "Point", "coordinates": [2.17935331837722, 48.933777895447946]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0f2522224e8f40bbfae5c74e4496f9b1447bd4f5", "fields": {"departement": "78", "stop_lat": 48.94016904281243, "code_postal": "78586", "stop_lon": 2.167356053279125, "coord": [48.94016904281243, 2.167356053279125], "stop_id": 4023507, "stop_desc": "73 AVENUE MAURICE BERTEAUX - 78586", "stop_name": "JEAN MERMOZ"}, "geometry": {"type": "Point", "coordinates": [2.167356053279125, 48.94016904281243]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "83435a6fce53deb9689fba05d02bd19331175764", "fields": {"departement": "78", "stop_lat": 48.946810370035685, "code_postal": "78358", "stop_lon": 2.14941985934327, "coord": [48.946810370035685, 2.14941985934327], "stop_id": 4023514, "stop_desc": "67 RUE DE PARIS - 78358", "stop_name": "RUE DU MESNIL"}, "geometry": {"type": "Point", "coordinates": [2.14941985934327, 48.946810370035685]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0ed32ac40b9e538a7de57e7aaa65ebb04b8aad24", "fields": {"departement": "78", "stop_lat": 48.945785577871696, "code_postal": "78358", "stop_lon": 2.1436114027095563, "coord": [48.945785577871696, 2.1436114027095563], "stop_id": 4023516, "stop_desc": "PLACE DE LA LIBERATION - 78358", "stop_name": "GARE DE MAISONS-LAFFITTE-RER"}, "geometry": {"type": "Point", "coordinates": [2.1436114027095563, 48.945785577871696]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "94245d8cc2be5ceb2579044e6060a93a71df8e43", "fields": {"departement": "92", "stop_lat": 48.8950462710121, "code_postal": "92050", "stop_lon": 2.1956095209931936, "coord": [48.8950462710121, 2.1956095209931936], "stop_id": 4023608, "stop_desc": "BOULEVARD DU COUCHANT - 92050", "stop_name": "NANTERRE-VILLE RER"}, "geometry": {"type": "Point", "coordinates": [2.1956095209931936, 48.8950462710121]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b696b8c06d49421af04981b8a96a1c40a0181483", "fields": {"departement": "92", "stop_lat": 48.89496293986389, "code_postal": "92050", "stop_lon": 2.1935652180158973, "coord": [48.89496293986389, 2.1935652180158973], "stop_id": 4023609, "stop_desc": "29 AVENUE HENRI MARTIN - 92050", "stop_name": "JULES QUENTIN"}, "geometry": {"type": "Point", "coordinates": [2.1935652180158973, 48.89496293986389]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dc2a5cf3fc70bd020ddab9e19744138025a88cab", "fields": {"departement": "92", "stop_lat": 48.90332728565032, "code_postal": "92050", "stop_lon": 2.2068745136991184, "coord": [48.90332728565032, 2.2068745136991184], "stop_id": 4023613, "stop_desc": "AVENUE DE LA REPUBLIQUE - 92050", "stop_name": "JEAN BAILLET"}, "geometry": {"type": "Point", "coordinates": [2.2068745136991184, 48.90332728565032]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "77c2a847b050b626652ddd33b3672837f1c3c847", "fields": {"departement": "92", "stop_lat": 48.905550755388155, "code_postal": "92050", "stop_lon": 2.210263532234275, "coord": [48.905550755388155, 2.210263532234275], "stop_id": 4023615, "stop_desc": "212 AVENUE DE LA REPUBLIQUE - 92050", "stop_name": "UNIVERSITE PARIS X"}, "geometry": {"type": "Point", "coordinates": [2.210263532234275, 48.905550755388155]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "117b072ac363c16ae35aee7fd7f0615aaf39f69b", "fields": {"departement": "92", "stop_lat": 48.90763002067973, "code_postal": "92050", "stop_lon": 2.2133532477195574, "coord": [48.90763002067973, 2.2133532477195574], "stop_id": 4023617, "stop_desc": "AVENUE DE LA REPUBLIQUE - 92050", "stop_name": "PONT DE ROUEN"}, "geometry": {"type": "Point", "coordinates": [2.2133532477195574, 48.90763002067973]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f64c6bf35bf95d3618405941afb9c98438663e3e", "fields": {"departement": "92", "stop_lat": 48.913232719382854, "code_postal": "92025", "stop_lon": 2.2263067373086973, "coord": [48.913232719382854, 2.2263067373086973], "stop_id": 4023625, "stop_desc": "FACE 466 RUE GABRIEL PERI - 92025", "stop_name": "VICTOR BASCH"}, "geometry": {"type": "Point", "coordinates": [2.2263067373086973, 48.913232719382854]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a27097f5195df4437afe3657abf1f6af77a5715b", "fields": {"departement": "92", "stop_lat": 48.913340385698675, "code_postal": "92025", "stop_lon": 2.2261156162905245, "coord": [48.913340385698675, 2.2261156162905245], "stop_id": 4023626, "stop_desc": "482 RUE GABRIEL PERI - 92025", "stop_name": "VICTOR BASCH"}, "geometry": {"type": "Point", "coordinates": [2.2261156162905245, 48.913340385698675]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2ac9a6c9c60e79ab485599268e7a08d48008f2a1", "fields": {"departement": "92", "stop_lat": 48.920275329111256, "code_postal": "92025", "stop_lon": 2.243528637039897, "coord": [48.920275329111256, 2.243528637039897], "stop_id": 4023631, "stop_desc": "163 RUE GABRIEL PERI - 92025", "stop_name": "EGALITE"}, "geometry": {"type": "Point", "coordinates": [2.243528637039897, 48.920275329111256]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cddce32b3ef513d9a66edc9300fb9be9171e1fe5", "fields": {"departement": "92", "stop_lat": 48.9233232281649, "code_postal": "92025", "stop_lon": 2.2577199194902486, "coord": [48.9233232281649, 2.2577199194902486], "stop_id": 4023639, "stop_desc": "74 R DU BOURNARD - 92025", "stop_name": "RHIN ET DANUBE"}, "geometry": {"type": "Point", "coordinates": [2.2577199194902486, 48.9233232281649]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "55f863c9150e3c4efb87419a17f84d82d5814abf", "fields": {"departement": "92", "stop_lat": 48.92942065305709, "code_postal": "92004", "stop_lon": 2.281060962478302, "coord": [48.92942065305709, 2.281060962478302], "stop_id": 4023651, "stop_desc": "17 AVENUE DE LA REDOUTE - 92004", "stop_name": "ABBE LEMIRE"}, "geometry": {"type": "Point", "coordinates": [2.281060962478302, 48.92942065305709]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "75c2612d1959dea6b9a5037073fdf6440674c9a2", "fields": {"departement": "95", "stop_lat": 48.94701571196209, "code_postal": "95018", "stop_lon": 2.249374389343935, "coord": [48.94701571196209, 2.249374389343935], "stop_id": 4023680, "stop_desc": "BOULEVARD LEON FEIX - 95018", "stop_name": "HOTEL DE VILLE D'ARGENTEUIL"}, "geometry": {"type": "Point", "coordinates": [2.249374389343935, 48.94701571196209]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "665b22c46fc33a3150746afa362990ba943f6ec2", "fields": {"departement": "95", "stop_lat": 48.94563016428698, "code_postal": "95018", "stop_lon": 2.247248350504414, "coord": [48.94563016428698, 2.247248350504414], "stop_id": 4023683, "stop_desc": "7 BOULEVARD JEANNE D'ARC - 95018", "stop_name": "BELIN"}, "geometry": {"type": "Point", "coordinates": [2.247248350504414, 48.94563016428698]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b2e5aaa731550160481c3851932535820a3d79a3", "fields": {"departement": "95", "stop_lat": 48.93613311768506, "code_postal": "95018", "stop_lon": 2.238439112324141, "coord": [48.93613311768506, 2.238439112324141], "stop_id": 4023693, "stop_desc": "109 RUE HENRI BARBUSSE - 95018", "stop_name": "PLACE DU 11 NOVEMBRE"}, "geometry": {"type": "Point", "coordinates": [2.238439112324141, 48.93613311768506]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "760141f1a3ad65778ce26ef587e9df9acaff2f7e", "fields": {"departement": "75", "stop_lat": 48.84454903838894, "code_postal": "75106", "stop_lon": 2.3247134823772995, "coord": [48.84454903838894, 2.3247134823772995], "stop_id": 3687414, "stop_desc": "169-171 RUE DE RENNES - 75106", "stop_name": "RENNES - LITTRE"}, "geometry": {"type": "Point", "coordinates": [2.3247134823772995, 48.84454903838894]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "09773c944e9d784075dd043401a4d87c614c799d", "fields": {"departement": "93", "stop_lat": 48.86699095256208, "code_postal": "93006", "stop_lon": 2.41796996305945, "coord": [48.86699095256208, 2.41796996305945], "stop_id": 3687297, "stop_desc": "13 RUE SADI CARNOT - 93006", "stop_name": "CENTRE DE SANTE"}, "geometry": {"type": "Point", "coordinates": [2.41796996305945, 48.86699095256208]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d00f33cb45a7a6c2fe4b69e355fdcbba7436f923", "fields": {"departement": "75", "stop_lat": 48.87225690177819, "code_postal": "75120", "stop_lon": 2.404517432081378, "coord": [48.87225690177819, 2.404517432081378], "stop_id": 3687455, "stop_desc": "187 AVENUE GAMBETTA - 75120", "stop_name": "SAINT-FARGEAU"}, "geometry": {"type": "Point", "coordinates": [2.404517432081378, 48.87225690177819]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "392f0bc24a542d1c9be47b826a770606433a96f7", "fields": {"departement": "93", "stop_lat": 48.86754005980411, "code_postal": "93006", "stop_lon": 2.4166630116229832, "coord": [48.86754005980411, 2.4166630116229832], "stop_id": 3687296, "stop_desc": "23 RUE ADELAIDE LAHAYE - 93006", "stop_name": "LA POSTE"}, "geometry": {"type": "Point", "coordinates": [2.4166630116229832, 48.86754005980411]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b9ec515686bdb9cbc6e2371db29fb1683b2ca932", "fields": {"departement": "75", "stop_lat": 48.85496370976521, "code_postal": "75104", "stop_lon": 2.361565794177265, "coord": [48.85496370976521, 2.361565794177265], "stop_id": 3687433, "stop_desc": "92 RUE SAINT-ANTOINE - 75104", "stop_name": "SAINT-PAUL"}, "geometry": {"type": "Point", "coordinates": [2.361565794177265, 48.85496370976521]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "81a7e586d6962074e8c545dc2b6b5c57209f55f2", "fields": {"departement": "93", "stop_lat": 48.88295989291311, "code_postal": "93077", "stop_lon": 2.4989667209034665, "coord": [48.88295989291311, 2.4989667209034665], "stop_id": 3687736, "stop_desc": "FACE 106 AVENUE DE ROSNY-SOUS-BOIS - 93077", "stop_name": "CIMETIERE DE VILLEMOMBLE"}, "geometry": {"type": "Point", "coordinates": [2.4989667209034665, 48.88295989291311]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b6c3379679ad49c79896875e2270717c1337a41a", "fields": {"departement": "93", "stop_lat": 48.87979861447409, "code_postal": "93045", "stop_lon": 2.4168725562657696, "coord": [48.87979861447409, 2.4168725562657696], "stop_id": 3688093, "stop_desc": "1 BOULEVARD DE LA LIBERTE - 93045", "stop_name": "MAIRIE DES LILAS"}, "geometry": {"type": "Point", "coordinates": [2.4168725562657696, 48.87979861447409]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "983cab1fa12cf44774407aa692c413da2bbbf5b2", "fields": {"departement": "93", "stop_lat": 48.88585811088322, "code_postal": "93045", "stop_lon": 2.4265984827675027, "coord": [48.88585811088322, 2.4265984827675027], "stop_id": 3688090, "stop_desc": "AVENUE PAUL DOUMER - 93045", "stop_name": "FORT DE ROMAINVILLE"}, "geometry": {"type": "Point", "coordinates": [2.4265984827675027, 48.88585811088322]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e234ae7b2af871cce5a41cb328856c693e0645b2", "fields": {"departement": "93", "stop_lat": 48.873521677156525, "code_postal": "93048", "stop_lon": 2.454180577798044, "coord": [48.873521677156525, 2.454180577798044], "stop_id": 3688080, "stop_desc": "160 BOULEVARD ARISTIDE BRIAND - 93048", "stop_name": "SAINT-DENIS"}, "geometry": {"type": "Point", "coordinates": [2.454180577798044, 48.873521677156525]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dcc59ba88d1c45c3eadf0e9f411dd3bec9bb764a", "fields": {"departement": "93", "stop_lat": 48.87810973718993, "code_postal": "93063", "stop_lon": 2.4494627850886443, "coord": [48.87810973718993, 2.4494627850886443], "stop_id": 3688085, "stop_desc": "7 ROUTE DE MONTREUIL - 93063", "stop_name": "TROIS COMMUNES"}, "geometry": {"type": "Point", "coordinates": [2.4494627850886443, 48.87810973718993]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fea39372d99d59d801594e9613da8906954857bf", "fields": {"departement": "94", "stop_lat": 48.84484956402065, "code_postal": "94080", "stop_lon": 2.436863176166916, "coord": [48.84484956402065, 2.436863176166916], "stop_id": 3687696, "stop_desc": "16 AVENUE DE PARIS - 94080", "stop_name": "AVENUE DU CHATEAU"}, "geometry": {"type": "Point", "coordinates": [2.436863176166916, 48.84484956402065]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "591d6aee5c1781f30c6dd84562aedb706ff551b0", "fields": {"departement": "93", "stop_lat": 48.87264272732939, "code_postal": "93064", "stop_lon": 2.47748982983825, "coord": [48.87264272732939, 2.47748982983825], "stop_id": 3687730, "stop_desc": "51 RUE DU 4EME ZOUAVES - 93064", "stop_name": "GRAND VERGER"}, "geometry": {"type": "Point", "coordinates": [2.47748982983825, 48.87264272732939]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0986ad1d8fe81a214a6e7588e96954bacea87fe8", "fields": {"departement": "93", "stop_lat": 48.89250256377624, "code_postal": "93053", "stop_lon": 2.4448326407756977, "coord": [48.89250256377624, 2.4448326407756977], "stop_id": 3688560, "stop_desc": "100 RUE DU PARC - 93053", "stop_name": "RUE DU PARC - VAILLANT-COUTURIER"}, "geometry": {"type": "Point", "coordinates": [2.4448326407756977, 48.89250256377624]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "37106e3fcd79f8778aa621ac07d1d4a80d9e6886", "fields": {"departement": "93", "stop_lat": 48.86661184393446, "code_postal": "93048", "stop_lon": 2.4699673837264884, "coord": [48.86661184393446, 2.4699673837264884], "stop_id": 3688539, "stop_desc": "31 BOULEVARD THEOPHILE SUEUR - 93048", "stop_name": "PARC DE MONTREAU"}, "geometry": {"type": "Point", "coordinates": [2.4699673837264884, 48.86661184393446]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "89f15704e7bfbaab0ab5cf22905f066c7643cd10", "fields": {"departement": "93", "stop_lat": 48.859659391807774, "code_postal": "93048", "stop_lon": 2.4665171194992577, "coord": [48.859659391807774, 2.4665171194992577], "stop_id": 3688536, "stop_desc": "244 BOULEVARD THEOPHILE SUEUR - 93048", "stop_name": "GRANDS PECHERS"}, "geometry": {"type": "Point", "coordinates": [2.4665171194992577, 48.859659391807774]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fd952abc955107a7f388a6a63c81ca45bfe92ae3", "fields": {"departement": "93", "stop_lat": 48.88766530831091, "code_postal": "93053", "stop_lon": 2.456529291588347, "coord": [48.88766530831091, 2.456529291588347], "stop_id": 3688554, "stop_desc": "1 BOULEVARD ROGER SALENGRO - 93053", "stop_name": "SALENGRO - AUFFRET"}, "geometry": {"type": "Point", "coordinates": [2.456529291588347, 48.88766530831091]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ce8e4bb83338eed65f34a2a4a09d2654d83864ee", "fields": {"departement": "93", "stop_lat": 48.86253079748854, "code_postal": "93048", "stop_lon": 2.4438986768204614, "coord": [48.86253079748854, 2.4438986768204614], "stop_id": 3689892, "stop_desc": "38 RUE FRANKLIN - 93048", "stop_name": "MAIRIE DE MONTREUIL"}, "geometry": {"type": "Point", "coordinates": [2.4438986768204614, 48.86253079748854]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7df6d8506a9a3e5a5bcfa33bb29bfaa2aeb2b849", "fields": {"departement": "94", "stop_lat": 48.85667038006725, "code_postal": "94033", "stop_lon": 2.471208617513792, "coord": [48.85667038006725, 2.471208617513792], "stop_id": 3688531, "stop_desc": "FACE 71 AVENUE VICTOR HUGO - 94033", "stop_name": "EMILE ZOLA"}, "geometry": {"type": "Point", "coordinates": [2.471208617513792, 48.85667038006725]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "045bc674eb17c05e09af3d546da974dbfc051e5b", "fields": {"departement": "94", "stop_lat": 48.858219364894744, "code_postal": "94033", "stop_lon": 2.4763067027749663, "coord": [48.858219364894744, 2.4763067027749663], "stop_id": 3688529, "stop_desc": "FACE 105 RUE DE LA FONTAINE - 94033", "stop_name": "DESCARTES"}, "geometry": {"type": "Point", "coordinates": [2.4763067027749663, 48.858219364894744]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e5997df08aaef279be4236e986b0fe06db58a9fa", "fields": {"departement": "93", "stop_lat": 48.89901170412667, "code_postal": "93008", "stop_lon": 2.4420926392411446, "coord": [48.89901170412667, 2.4420926392411446], "stop_id": 3688564, "stop_desc": "FACE 3 AVENUE JEAN JAURES - 93008", "stop_name": "LA FOLIE"}, "geometry": {"type": "Point", "coordinates": [2.4420926392411446, 48.89901170412667]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6875695e1e78a53f785c8fbfc6c0b90aeaa8bb96", "fields": {"departement": "93", "stop_lat": 48.8951098533028, "code_postal": "93053", "stop_lon": 2.443706743684697, "coord": [48.8951098533028, 2.443706743684697], "stop_id": 3688562, "stop_desc": "RUE DU PARC - 93053", "stop_name": "AVENUE DE BOBIGNY"}, "geometry": {"type": "Point", "coordinates": [2.443706743684697, 48.8951098533028]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "83cbb1ee2205e31c464835172e22caa0af3d1e1d", "fields": {"departement": "94", "stop_lat": 48.85830985788976, "code_postal": "94033", "stop_lon": 2.475775743136336, "coord": [48.85830985788976, 2.475775743136336], "stop_id": 3688528, "stop_desc": "103 RUE LA FONTAINE - 94033", "stop_name": "DESCARTES"}, "geometry": {"type": "Point", "coordinates": [2.475775743136336, 48.85830985788976]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8c9773f46dad4ee4a748894b9cbe98baf8d6566a", "fields": {"departement": "93", "stop_lat": 48.876779222562476, "code_postal": "93048", "stop_lon": 2.449882293218182, "coord": [48.876779222562476, 2.449882293218182], "stop_id": 3688107, "stop_desc": "FACE 18 AVENUE DU DOCTEUR FERNAND LAMAZE - 93048", "stop_name": "RUE DE ROMAINVILLE"}, "geometry": {"type": "Point", "coordinates": [2.449882293218182, 48.876779222562476]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4cdee9c1a3a62b3b48fc7d38872160fc4bfa7ba2", "fields": {"departement": "93", "stop_lat": 48.88505167124873, "code_postal": "93063", "stop_lon": 2.434978058250651, "coord": [48.88505167124873, 2.434978058250651], "stop_id": 3688103, "stop_desc": "5 AVENUE PAUL VAILLANT-COUTURIER - 93063", "stop_name": "MAIRIE DE ROMAINVILLE"}, "geometry": {"type": "Point", "coordinates": [2.434978058250651, 48.88505167124873]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b8e995355f67043d4b4bf485d85e57891b9be258", "fields": {"departement": "93", "stop_lat": 48.87788854353282, "code_postal": "93048", "stop_lon": 2.455157852359322, "coord": [48.87788854353282, 2.455157852359322], "stop_id": 3688109, "stop_desc": "60 RUE DES SAULES CLOUETS - 93048", "stop_name": "HOPITAL ANDRE GREGOIRE"}, "geometry": {"type": "Point", "coordinates": [2.455157852359322, 48.87788854353282]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fbcf4a2bb18d99af5649650bd2aa0512b814e042", "fields": {"departement": "94", "stop_lat": 48.85320934460998, "code_postal": "94033", "stop_lon": 2.487025227140136, "coord": [48.85320934460998, 2.487025227140136], "stop_id": 3688519, "stop_desc": "FACE 8 AV DU VAL DE FONTENAY - 94033", "stop_name": "VAL DE FONTENAY-RER"}, "geometry": {"type": "Point", "coordinates": [2.487025227140136, 48.85320934460998]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "37fb88af2d142bdcb0403b302717a8da5798084c", "fields": {"departement": "93", "stop_lat": 48.87679375618576, "code_postal": "93048", "stop_lon": 2.4534658103341167, "coord": [48.87679375618576, 2.4534658103341167], "stop_id": 3688108, "stop_desc": "7 AVENUE DU DOCTEUR FERNAND LAMAZE - 93048", "stop_name": "FERNAND LAMAZE"}, "geometry": {"type": "Point", "coordinates": [2.4534658103341167, 48.87679375618576]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8d6449fac319077ebd0abfe35cb6e32d7d71370f", "fields": {"departement": "94", "stop_lat": 48.85332347355978, "code_postal": "94033", "stop_lon": 2.4819455711423513, "coord": [48.85332347355978, 2.4819455711423513], "stop_id": 3688522, "stop_desc": "AVENUE CHARLES GARCIA - 94033", "stop_name": "CHARLES GARCIA"}, "geometry": {"type": "Point", "coordinates": [2.4819455711423513, 48.85332347355978]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "adcdb14ac14a24530d7a7790263c5b2f6db2a455", "fields": {"departement": "94", "stop_lat": 48.85329684182467, "code_postal": "94033", "stop_lon": 2.481673111721984, "coord": [48.85329684182467, 2.481673111721984], "stop_id": 3688523, "stop_desc": "1 AVENUE CHARLES GARCIA - 94033", "stop_name": "CHARLES GARCIA"}, "geometry": {"type": "Point", "coordinates": [2.481673111721984, 48.85329684182467]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "44ed12e337f63dd1b496d91a6cb8bb398d461860", "fields": {"departement": "94", "stop_lat": 48.85623563273947, "code_postal": "94033", "stop_lon": 2.4817630151132914, "coord": [48.85623563273947, 2.4817630151132914], "stop_id": 3688525, "stop_desc": "FACE 18 AV CHARLES GARCIA - 94033", "stop_name": "JEAN MACE"}, "geometry": {"type": "Point", "coordinates": [2.4817630151132914, 48.85623563273947]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9faf4550dff0421b4439cb6e554ced867a0f1b40", "fields": {"departement": "93", "stop_lat": 48.878911777815574, "code_postal": "93045", "stop_lon": 2.4124018763644015, "coord": [48.878911777815574, 2.4124018763644015], "stop_id": 3688094, "stop_desc": "71 RUE DE PARIS - 93045", "stop_name": "LES BRUYERES"}, "geometry": {"type": "Point", "coordinates": [2.4124018763644015, 48.878911777815574]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aabe3b68b818004cec1c8abb1005c6355cd34fe8", "fields": {"departement": "93", "stop_lat": 48.87848998242335, "code_postal": "93045", "stop_lon": 2.411433829034282, "coord": [48.87848998242335, 2.411433829034282], "stop_id": 3688097, "stop_desc": "44 R DE PARIS - 93045", "stop_name": "LES BRUYERES"}, "geometry": {"type": "Point", "coordinates": [2.411433829034282, 48.87848998242335]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c31da86c88b40d9a81c74c94fb9aea801361518a", "fields": {"departement": "93", "stop_lat": 48.87500044560977, "code_postal": "93045", "stop_lon": 2.415298319381536, "coord": [48.87500044560977, 2.415298319381536], "stop_id": 3690247, "stop_desc": "6 RUE DES VILLEGRANGES - 93045", "stop_name": "PLACE DU VEL'D'HIV."}, "geometry": {"type": "Point", "coordinates": [2.415298319381536, 48.87500044560977]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cd9a9078a87d65ee172e3710a5929cd39b3e329c", "fields": {"departement": "93", "stop_lat": 48.8749376771358, "code_postal": "93045", "stop_lon": 2.4150802260975532, "coord": [48.8749376771358, 2.4150802260975532], "stop_id": 3690230, "stop_desc": "6 RUE DES VILLEGRANGES - 93045", "stop_name": "PLACE DU VEL'D'HIV"}, "geometry": {"type": "Point", "coordinates": [2.4150802260975532, 48.8749376771358]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d9d718f7bd13d842eb3f9d77f030d5964500058e", "fields": {"departement": "75", "stop_lat": 48.855604645141945, "code_postal": "75120", "stop_lon": 2.402057883506795, "coord": [48.855604645141945, 2.402057883506795], "stop_id": 3690074, "stop_desc": "76 RUE DES VIGNOLES - 75120", "stop_name": "PLACE DE LA REUNION"}, "geometry": {"type": "Point", "coordinates": [2.402057883506795, 48.855604645141945]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0c7338fd215b28e10dcbb0517c8a6c93a79302b0", "fields": {"departement": "94", "stop_lat": 48.85072489037081, "code_postal": "94033", "stop_lon": 2.4753877853661814, "coord": [48.85072489037081, 2.4753877853661814], "stop_id": 3690345, "stop_desc": "163 BOULEVARD GALLIENI - 94033", "stop_name": "MEDIATHEQUE ARAGON"}, "geometry": {"type": "Point", "coordinates": [2.4753877853661814, 48.85072489037081]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "230575af09a0c2a29c8269ace67296f2174d2fcf", "fields": {"departement": "94", "stop_lat": 48.849991154984615, "code_postal": "94033", "stop_lon": 2.4556936487973515, "coord": [48.849991154984615, 2.4556936487973515], "stop_id": 3690334, "stop_desc": "8 AVENUE DE STALINGRAD - 94033", "stop_name": "LES RIGOLLOTS"}, "geometry": {"type": "Point", "coordinates": [2.4556936487973515, 48.849991154984615]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "58a7867196c52e436ff7b7d87c491ecd5d7469c0", "fields": {"departement": "93", "stop_lat": 48.88416584676858, "code_postal": "93045", "stop_lon": 2.4177241600453825, "coord": [48.88416584676858, 2.4177241600453825], "stop_id": 3690234, "stop_desc": "120 BOULEVARD EUGENE DECROS - 93045", "stop_name": "RUE MARCELLE"}, "geometry": {"type": "Point", "coordinates": [2.4177241600453825, 48.88416584676858]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "596c93fb8ef5d8fe2bdc987226c2246877db3e0b", "fields": {"departement": "93", "stop_lat": 48.87871357432115, "code_postal": "93045", "stop_lon": 2.4131646403855753, "coord": [48.87871357432115, 2.4131646403855753], "stop_id": 3690232, "stop_desc": "5-7 R DES BRUYERES - 93045", "stop_name": "LES BRUYERES"}, "geometry": {"type": "Point", "coordinates": [2.4131646403855753, 48.87871357432115]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cd958460d89d7e127fcd81e1793650bcdd757398", "fields": {"departement": "93", "stop_lat": 48.881243018705845, "code_postal": "93045", "stop_lon": 2.420594831783849, "coord": [48.881243018705845, 2.420594831783849], "stop_id": 3690238, "stop_desc": "185 RUE DE PARIS - 93045", "stop_name": "PAUL DE KOCK"}, "geometry": {"type": "Point", "coordinates": [2.420594831783849, 48.881243018705845]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a2f58b7a2370c7cc8cc51c706a226e40f03d197f", "fields": {"departement": "94", "stop_lat": 48.85338820076925, "code_postal": "94033", "stop_lon": 2.487733946275537, "coord": [48.85338820076925, 2.487733946275537], "stop_id": 3690366, "stop_desc": "AVENUE DU VAL DE FONTENAY - 94033", "stop_name": "VAL-DE-FONTENAY RER"}, "geometry": {"type": "Point", "coordinates": [2.487733946275537, 48.85338820076925]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "78be341bea2478e155410e23088b040b4c24051a", "fields": {"departement": "94", "stop_lat": 48.84569879056931, "code_postal": "94033", "stop_lon": 2.469301104436902, "coord": [48.84569879056931, 2.469301104436902], "stop_id": 3690380, "stop_desc": "34-36 RUE MAURICE COUDERCHET - 94033", "stop_name": "MAURICE COUDERCHET"}, "geometry": {"type": "Point", "coordinates": [2.469301104436902, 48.84569879056931]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "460d418a380d12740e01937f0b287691cbf4b268", "fields": {"departement": "94", "stop_lat": 48.85128380971573, "code_postal": "94033", "stop_lon": 2.473918451465365, "coord": [48.85128380971573, 2.473918451465365], "stop_id": 3690375, "stop_desc": "9 BIS BOULEVARD DE VERDUN - 94033", "stop_name": "SAINT-GERMAIN"}, "geometry": {"type": "Point", "coordinates": [2.473918451465365, 48.85128380971573]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "815e0c9dbc4dc512898a3d989db653249f9daf6b", "fields": {"departement": "94", "stop_lat": 48.85297997424272, "code_postal": "94033", "stop_lon": 2.450579667755212, "coord": [48.85297997424272, 2.450579667755212], "stop_id": 3690384, "stop_desc": "7-9 AVENUE PARMENTIER - 94033", "stop_name": "GEORGES LE TIEC"}, "geometry": {"type": "Point", "coordinates": [2.450579667755212, 48.85297997424272]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9985b7182ebdedde6e2f2f37587ed472850bd771", "fields": {"departement": "94", "stop_lat": 48.859075989520655, "code_postal": "94033", "stop_lon": 2.473870881419788, "coord": [48.859075989520655, 2.473870881419788], "stop_id": 3690353, "stop_desc": "127-129 AVENUE VICTOR HUGO - 94033", "stop_name": "VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.473870881419788, 48.859075989520655]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8a9b36f9d1d84c4241279c89df083f99822ac0c4", "fields": {"departement": "94", "stop_lat": 48.854082291262344, "code_postal": "94033", "stop_lon": 2.4709431635752845, "coord": [48.854082291262344, 2.4709431635752845], "stop_id": 3690349, "stop_desc": "FACE 40 RUE ANATOLE FRANCE - 94033", "stop_name": "VERDUN"}, "geometry": {"type": "Point", "coordinates": [2.4709431635752845, 48.854082291262344]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1bacd733bd6686577f83c0837e9c069a380ba541", "fields": {"departement": "94", "stop_lat": 48.850706662172556, "code_postal": "94033", "stop_lon": 2.4591543991412843, "coord": [48.850706662172556, 2.4591543991412843], "stop_id": 3690391, "stop_desc": "FACE 57 RUE EUGENE MARTIN - 94033", "stop_name": "ROUBLOT"}, "geometry": {"type": "Point", "coordinates": [2.4591543991412843, 48.850706662172556]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b838bf958b37d4bf8ccfc03d08c6d769454ee8d2", "fields": {"departement": "94", "stop_lat": 48.857533865512345, "code_postal": "94033", "stop_lon": 2.4857846415012927, "coord": [48.857533865512345, 2.4857846415012927], "stop_id": 3690362, "stop_desc": "FACE 18 RUE JEAN ZAY - 94033", "stop_name": "JEAN ZAY"}, "geometry": {"type": "Point", "coordinates": [2.4857846415012927, 48.857533865512345]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a22d980c35dd217bce2a9d2ed754274ffe17e50d", "fields": {"departement": "94", "stop_lat": 48.85094587621135, "code_postal": "94033", "stop_lon": 2.462477907739809, "coord": [48.85094587621135, 2.462477907739809], "stop_id": 3690395, "stop_desc": "FACE 60 RUE GAMBETTA - 94033", "stop_name": "GAMBETTA"}, "geometry": {"type": "Point", "coordinates": [2.462477907739809, 48.85094587621135]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "18fdb163f45a7dd132eb7fc7813a81e53b09e8fa", "fields": {"departement": "94", "stop_lat": 48.85399313364263, "code_postal": "94033", "stop_lon": 2.4703028202860247, "coord": [48.85399313364263, 2.4703028202860247], "stop_id": 3690348, "stop_desc": "2 AVENUE VICTOR HUGO - 94033", "stop_name": "VERDUN"}, "geometry": {"type": "Point", "coordinates": [2.4703028202860247, 48.85399313364263]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d7b1b6d1732f5c50c4e230cf023c32cfdc2f420f", "fields": {"departement": "93", "stop_lat": 48.90679444443228, "code_postal": "93008", "stop_lon": 2.4693204756522555, "coord": [48.90679444443228, 2.4693204756522555], "stop_id": 3708518, "stop_desc": "16 AVENUE EDOUARD VAILLANT - 93008", "stop_name": "PONT DE BONDY - ANATOLE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.4693204756522555, 48.90679444443228]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "740ef09552ea3f1a3902894762de095185b91570", "fields": {"departement": "93", "stop_lat": 48.91371257042071, "code_postal": "93055", "stop_lon": 2.4082118350408837, "coord": [48.91371257042071, 2.4082118350408837], "stop_id": 3708494, "stop_desc": "AVENUE DES COURTILLIERES - 93055", "stop_name": "DIVISION LECLERC - COURTILLIERES"}, "geometry": {"type": "Point", "coordinates": [2.4082118350408837, 48.91371257042071]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "867f95828b94c1e752b2f300190242b57f6c4193", "fields": {"departement": "93", "stop_lat": 48.90590089960924, "code_postal": "93008", "stop_lon": 2.46457388666915, "coord": [48.90590089960924, 2.46457388666915], "stop_id": 3708516, "stop_desc": "FACE 412 AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "RUE DES PEUPLIERS"}, "geometry": {"type": "Point", "coordinates": [2.46457388666915, 48.90590089960924]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "48c06b7fc5a7f8f5be63fe18889858736b68accb", "fields": {"departement": "93", "stop_lat": 48.914227247147316, "code_postal": "93001", "stop_lon": 2.404026516251405, "coord": [48.914227247147316, 2.404026516251405], "stop_id": 3708491, "stop_desc": "AVENUE JEAN JAURES - 93001", "stop_name": "FORT D'AUBERVILLIERS-METRO"}, "geometry": {"type": "Point", "coordinates": [2.404026516251405, 48.914227247147316]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9e9d4ca0a632a96fea8da2603d0517d306959503", "fields": {"departement": "93", "stop_lat": 48.906711868542196, "code_postal": "93008", "stop_lon": 2.444098679824846, "coord": [48.906711868542196, 2.444098679824846], "stop_id": 3708509, "stop_desc": "BOULEVARD LENINE - 93008", "stop_name": "HOTEL DE VILLE DE BOBIGNY"}, "geometry": {"type": "Point", "coordinates": [2.444098679824846, 48.906711868542196]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "177ff0ea785acd8e3a8b6fe16d61e5bf5ec8e8e1", "fields": {"departement": "93", "stop_lat": 48.914177758098994, "code_postal": "93055", "stop_lon": 2.411716729965043, "coord": [48.914177758098994, 2.411716729965043], "stop_id": 3708496, "stop_desc": "7 AVENUE DES COURTILLIERES - 93055", "stop_name": "PLACE DU MARCHE"}, "geometry": {"type": "Point", "coordinates": [2.411716729965043, 48.914177758098994]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2ad9ba2cdd770cb6ffd768f37619fa1e3b846ded", "fields": {"departement": "93", "stop_lat": 48.906488254589036, "code_postal": "93008", "stop_lon": 2.4322236788904616, "coord": [48.906488254589036, 2.4322236788904616], "stop_id": 3708504, "stop_desc": "RUE DE LA REPUBLIQUE - 93008", "stop_name": "RUE DE LA GARE"}, "geometry": {"type": "Point", "coordinates": [2.4322236788904616, 48.906488254589036]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9bee27dd1ac190ec7e4d1f92eb591c303521a41f", "fields": {"departement": "75", "stop_lat": 48.84106444132994, "code_postal": "75112", "stop_lon": 2.37832060509252, "coord": [48.84106444132994, 2.37832060509252], "stop_id": 3716925, "stop_desc": "124 RUE DE BERCY - 75112", "stop_name": "MINISTERE DE L'ECONOMIE ET DES FINANCES"}, "geometry": {"type": "Point", "coordinates": [2.37832060509252, 48.84106444132994]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "259a83cda4841a669ed1098942c4bac0df8a91c7", "fields": {"departement": "75", "stop_lat": 48.83184843618731, "code_postal": "75112", "stop_lon": 2.388006198691371, "coord": [48.83184843618731, 2.388006198691371], "stop_id": 3716900, "stop_desc": "FACE 40 AVENUE DES TERROIRS DE FRANCE - 75112", "stop_name": "TERROIRS DE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.388006198691371, 48.83184843618731]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f5b4aeb7223adcbb342cf3dfadad3691c6ba3818", "fields": {"departement": "75", "stop_lat": 48.831938061298615, "code_postal": "75112", "stop_lon": 2.38859167244866, "coord": [48.831938061298615, 2.38859167244866], "stop_id": 3716920, "stop_desc": "42 AVENUE DES TERROIRS DE FRANCE - 75112", "stop_name": "TERROIRS DE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.38859167244866, 48.831938061298615]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "305a442fa387a702e0bfff5f980850d31cee485c", "fields": {"departement": "94", "stop_lat": 48.820876767236136, "code_postal": "94018", "stop_lon": 2.4018920245725224, "coord": [48.820876767236136, 2.4018920245725224], "stop_id": 3716916, "stop_desc": "QUAI DES CARRIERES - 94018", "stop_name": "PONT NELSON MANDELA"}, "geometry": {"type": "Point", "coordinates": [2.4018920245725224, 48.820876767236136]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bdd8e2f5084e68d9235c9246e290a52bc507ea8d", "fields": {"departement": "75", "stop_lat": 48.83547131898762, "code_postal": "75112", "stop_lon": 2.3858994861277054, "coord": [48.83547131898762, 2.3858994861277054], "stop_id": 3716898, "stop_desc": "2 RUE DE DIJON - 75112", "stop_name": "DIJON - LACHAMBEAUDIE"}, "geometry": {"type": "Point", "coordinates": [2.3858994861277054, 48.83547131898762]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ad5b7b81c881613afb6dfcce9794cd292cb26b10", "fields": {"departement": "75", "stop_lat": 48.873219105262045, "code_postal": "75109", "stop_lon": 2.326886462987139, "coord": [48.873219105262045, 2.326886462987139], "stop_id": 3716944, "stop_desc": "34 RUE TRONCHET - 75109", "stop_name": "HAVRE - HAUSSMANN"}, "geometry": {"type": "Point", "coordinates": [2.326886462987139, 48.873219105262045]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "70f1a7dba8750bf727d60beee3e1fa1e682820ed", "fields": {"departement": "94", "stop_lat": 48.81815136070248, "code_postal": "94069", "stop_lon": 2.4198674632527934, "coord": [48.81815136070248, 2.4198674632527934], "stop_id": 3716951, "stop_desc": "2 RUE DU PONT - 94069", "stop_name": "PONT DE CHARENTON"}, "geometry": {"type": "Point", "coordinates": [2.4198674632527934, 48.81815136070248]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a064a77a8ea37b1362571c911c58df973802708b", "fields": {"departement": "94", "stop_lat": 48.82224470146372, "code_postal": "94018", "stop_lon": 2.3984773449336694, "coord": [48.82224470146372, 2.3984773449336694], "stop_id": 3716917, "stop_desc": "7 QUAI DE BERCY - 94018", "stop_name": "PORT AUX LIONS"}, "geometry": {"type": "Point", "coordinates": [2.3984773449336694, 48.82224470146372]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7fadb166e0abe0a544cef4b47ab5bfcc09f9200e", "fields": {"departement": "94", "stop_lat": 48.82482628442783, "code_postal": "94018", "stop_lon": 2.3942062961024053, "coord": [48.82482628442783, 2.3942062961024053], "stop_id": 3716958, "stop_desc": "QUAI DE BERCY - 94018", "stop_name": "PARC DE BERCY"}, "geometry": {"type": "Point", "coordinates": [2.3942062961024053, 48.82482628442783]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9be1fa60e301162c067e579feb1b60589d140a90", "fields": {"departement": "94", "stop_lat": 48.77005834977695, "code_postal": "94021", "stop_lon": 2.3487716862587558, "coord": [48.77005834977695, 2.3487716862587558], "stop_id": 3730057, "stop_desc": "BOULEVARD CIRCULAIRE NORD - 94021", "stop_name": "MAIRIE DE CHEVILLY-LARUE"}, "geometry": {"type": "Point", "coordinates": [2.3487716862587558, 48.77005834977695]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4cc33b8628e867b94524e4ca81a823dd5d6223fd", "fields": {"departement": "94", "stop_lat": 48.806131521325455, "code_postal": "94068", "stop_lon": 2.4724661162705828, "coord": [48.806131521325455, 2.4724661162705828], "stop_id": 3730102, "stop_desc": "PISTE TERMINAL BUS TVM - 94068", "stop_name": "SAINT-MAUR - CRETEIL RER"}, "geometry": {"type": "Point", "coordinates": [2.4724661162705828, 48.806131521325455]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cb0b4a04c2daa1dd438c1fab70095f10d40b3c0f", "fields": {"departement": "75", "stop_lat": 48.82150490371947, "code_postal": "75114", "stop_lon": 2.3255220924767936, "coord": [48.82150490371947, 2.3255220924767936], "stop_id": 3730328, "stop_desc": "AVENUE DE LA PORTE D'ORLEANS - 75114", "stop_name": "PORTE D'ORLEANS - METRO"}, "geometry": {"type": "Point", "coordinates": [2.3255220924767936, 48.82150490371947]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "485046837e7ecb48e7900e2b1085afaf7fae6bfe", "fields": {"departement": "94", "stop_lat": 48.768717139337944, "code_postal": "94022", "stop_lon": 2.421026189476439, "coord": [48.768717139337944, 2.421026189476439], "stop_id": 3730082, "stop_desc": "79 AVENUE VICTOR HUGO - 94022", "stop_name": "MARCELLIN BERTHELOT"}, "geometry": {"type": "Point", "coordinates": [2.421026189476439, 48.768717139337944]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "02a8761a2a3e107960af1e2630b3589fe02cb466", "fields": {"departement": "94", "stop_lat": 48.78609438546215, "code_postal": "94028", "stop_lon": 2.449576818507116, "coord": [48.78609438546215, 2.449576818507116], "stop_id": 3730091, "stop_desc": "ROUTE DE CHOISY - 94028", "stop_name": "LA HAYE AUX MOINES"}, "geometry": {"type": "Point", "coordinates": [2.449576818507116, 48.78609438546215]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7548ebf6e138c86f3c85f71367e55775360deff6", "fields": {"departement": "94", "stop_lat": 48.756445288464626, "code_postal": "94073", "stop_lon": 2.37384932439109, "coord": [48.756445288464626, 2.37384932439109], "stop_id": 3730065, "stop_desc": "AVENUE DU LUXEMBOURG - 94073", "stop_name": "LA BELLE EPINE"}, "geometry": {"type": "Point", "coordinates": [2.37384932439109, 48.756445288464626]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "127b107ee4f2ca2f1021e443070b1c0427091b5b", "fields": {"departement": "94", "stop_lat": 48.7564541376577, "code_postal": "94073", "stop_lon": 2.374297927820151, "coord": [48.7564541376577, 2.374297927820151], "stop_id": 3730066, "stop_desc": "AVENUE DU LUXEMBOURG - 94073", "stop_name": "LA BELLE EPINE"}, "geometry": {"type": "Point", "coordinates": [2.374297927820151, 48.7564541376577]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "665eb788d154de4c67910b4d92e23eb643d0d386", "fields": {"departement": "94", "stop_lat": 48.80906595180364, "code_postal": "94003", "stop_lon": 2.326246107567719, "coord": [48.80906595180364, 2.326246107567719], "stop_id": 3730333, "stop_desc": "24 AVENUE ARISTIDE BRIAND - 94003", "stop_name": "VACHE NOIRE"}, "geometry": {"type": "Point", "coordinates": [2.326246107567719, 48.80906595180364]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "35e2ba97e6a8b2ea448841b990b27973e61bd72a", "fields": {"departement": "94", "stop_lat": 48.77351349029003, "code_postal": "94028", "stop_lon": 2.436916768869354, "coord": [48.77351349029003, 2.436916768869354], "stop_id": 3730086, "stop_desc": "0 AV DE LA POMPADOUR - 94028", "stop_name": "POMPADOUR"}, "geometry": {"type": "Point", "coordinates": [2.436916768869354, 48.77351349029003]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cc5cbcf14c39ec1795fd5328590839e5460ef1e4", "fields": {"departement": "75", "stop_lat": 48.84752230352113, "code_postal": "75120", "stop_lon": 2.406677811879984, "coord": [48.84752230352113, 2.406677811879984], "stop_id": 3690067, "stop_desc": "73 COURS DE VINCENNES - 75120", "stop_name": "PYRENEES - DOCTEUR NETTER"}, "geometry": {"type": "Point", "coordinates": [2.406677811879984, 48.84752230352113]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "32e7732d1641515321c47559ef8816995ad5ab0d", "fields": {"departement": "93", "stop_lat": 48.907058043299465, "code_postal": "93008", "stop_lon": 2.448816542421054, "coord": [48.907058043299465, 2.448816542421054], "stop_id": 3689920, "stop_desc": "FACE 14 RUE PABLO PICASSO - 93008", "stop_name": "BOBIGNY - PABLO PICASSO"}, "geometry": {"type": "Point", "coordinates": [2.448816542421054, 48.907058043299465]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a2e0c09ccf8e3a5a8001dc0cb5443382e6f2f5b6", "fields": {"departement": "93", "stop_lat": 48.87910567077729, "code_postal": "93063", "stop_lon": 2.441384707120585, "coord": [48.87910567077729, 2.441384707120585], "stop_id": 3689902, "stop_desc": "85 BOULEVARD HENRI BARBUSSE - 93063", "stop_name": "SENTE DES MARES"}, "geometry": {"type": "Point", "coordinates": [2.441384707120585, 48.87910567077729]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2ee1b3ea9ebeab0bb012976f9e0304e7b5eb81a4", "fields": {"departement": "93", "stop_lat": 48.90676344153678, "code_postal": "93008", "stop_lon": 2.4466891131829183, "coord": [48.90676344153678, 2.4466891131829183], "stop_id": 3689921, "stop_desc": "BOULEVARD MAURICE THOREZ - 93008", "stop_name": "MAURICE THOREZ"}, "geometry": {"type": "Point", "coordinates": [2.4466891131829183, 48.90676344153678]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "931be2ef4467654b73288112e1356bbe0666c2c4", "fields": {"departement": "75", "stop_lat": 48.85766163745463, "code_postal": "75120", "stop_lon": 2.404103511413994, "coord": [48.85766163745463, 2.404103511413994], "stop_id": 3690059, "stop_desc": "36-38 RUE VITRUVE - 75120", "stop_name": "ALBERT MARQUET"}, "geometry": {"type": "Point", "coordinates": [2.404103511413994, 48.85766163745463]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "438f4edf4340a121ef96482a3fb0eea91c5d0f60", "fields": {"departement": "93", "stop_lat": 48.903970163813376, "code_postal": "93008", "stop_lon": 2.444815552217041, "coord": [48.903970163813376, 2.444815552217041], "stop_id": 3689922, "stop_desc": "8 AVENUE SALVADOR ALLENDE - 93008", "stop_name": "KARL MARX"}, "geometry": {"type": "Point", "coordinates": [2.444815552217041, 48.903970163813376]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "badfe1dbe00125b48026244377e23a8683b05896", "fields": {"departement": "93", "stop_lat": 48.88289931879224, "code_postal": "93063", "stop_lon": 2.440206776933691, "coord": [48.88289931879224, 2.440206776933691], "stop_id": 3689904, "stop_desc": "FACE 6 RUE DE LA REPUBLIQUE - 93063", "stop_name": "CARNOT"}, "geometry": {"type": "Point", "coordinates": [2.440206776933691, 48.88289931879224]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3a8a28e5e5b30fc0cd7c83c88e0d5a5842f834da", "fields": {"departement": "93", "stop_lat": 48.88506304737703, "code_postal": "93053", "stop_lon": 2.442718551344974, "coord": [48.88506304737703, 2.442718551344974], "stop_id": 3689906, "stop_desc": "121 RUE ANATOLE FRANCE - 93053", "stop_name": "RUE DU PARC"}, "geometry": {"type": "Point", "coordinates": [2.442718551344974, 48.88506304737703]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5a6a579f37de8ae049bf5d024ad8e165294d0a32", "fields": {"departement": "93", "stop_lat": 48.89802306132276, "code_postal": "93053", "stop_lon": 2.44215879411988, "coord": [48.89802306132276, 2.44215879411988], "stop_id": 3689923, "stop_desc": "121 RUE DU PARC - 93053", "stop_name": "LA FOLIE"}, "geometry": {"type": "Point", "coordinates": [2.44215879411988, 48.89802306132276]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e7b8bc7e10a0456740b4dda2171110c85aa04adf", "fields": {"departement": "75", "stop_lat": 48.8647200677307, "code_postal": "75120", "stop_lon": 2.397900870363696, "coord": [48.8647200677307, 2.397900870363696], "stop_id": 3690050, "stop_desc": "1 PLACE GAMBETTA - 75120", "stop_name": "GAMBETTA"}, "geometry": {"type": "Point", "coordinates": [2.397900870363696, 48.8647200677307]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9eb883c23a5ef18cb92664cd53ba043e2641ea7f", "fields": {"departement": "94", "stop_lat": 48.856451330814025, "code_postal": "94033", "stop_lon": 2.481763616113396, "coord": [48.856451330814025, 2.481763616113396], "stop_id": 3690474, "stop_desc": "FACE 3 RUE JEAN MACE - 94033", "stop_name": "CHARLES GARCIA - COLLEGE JEAN MACE"}, "geometry": {"type": "Point", "coordinates": [2.481763616113396, 48.856451330814025]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9a5be0ea8d4267afc09510a701563cf6082ec642", "fields": {"departement": "93", "stop_lat": 48.90585160187891, "code_postal": "93008", "stop_lon": 2.4685955199065472, "coord": [48.90585160187891, 2.4685955199065472], "stop_id": 3708473, "stop_desc": "433-435 AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "PONT DE BONDY"}, "geometry": {"type": "Point", "coordinates": [2.4685955199065472, 48.90585160187891]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "323d8da8d5e8102b3c4bb38c4cb74c20436da518", "fields": {"departement": "93", "stop_lat": 48.910544162666014, "code_postal": "93008", "stop_lon": 2.416129016905065, "coord": [48.910544162666014, 2.416129016905065], "stop_id": 3708454, "stop_desc": "RUE DE L'ILLUSTRATION - 93008", "stop_name": "CITE DU PONT DE PIERRE"}, "geometry": {"type": "Point", "coordinates": [2.416129016905065, 48.910544162666014]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4ec85f44a6f126bace2db76cb047d9b6d89d7782", "fields": {"departement": "93", "stop_lat": 48.90637437721665, "code_postal": "93008", "stop_lon": 2.439517229737543, "coord": [48.90637437721665, 2.439517229737543], "stop_id": 3708461, "stop_desc": "BOULEVARD LENINE - 93008", "stop_name": "CONSERVATOIRE JEAN WIENER"}, "geometry": {"type": "Point", "coordinates": [2.439517229737543, 48.90637437721665]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8d6cbfa0f18848dcf9eb6643596cb748c74e799a", "fields": {"departement": "93", "stop_lat": 48.90870952071069, "code_postal": "93008", "stop_lon": 2.451083311558328, "coord": [48.90870952071069, 2.451083311558328], "stop_id": 3708487, "stop_desc": "AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "RENE CAMIER"}, "geometry": {"type": "Point", "coordinates": [2.451083311558328, 48.90870952071069]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3980bc71e5dd7c2a3313a69fec9cccf32c50616b", "fields": {"departement": "93", "stop_lat": 48.90675435432779, "code_postal": "93008", "stop_lon": 2.4467981603729605, "coord": [48.90675435432779, 2.4467981603729605], "stop_id": 3708488, "stop_desc": "15 BOULEVARD MAURICE THOREZ - 93008", "stop_name": "MAURICE THOREZ"}, "geometry": {"type": "Point", "coordinates": [2.4467981603729605, 48.90675435432779]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6854ab0cf471ae738d98e14dcd433986b96d21ae", "fields": {"departement": "93", "stop_lat": 48.906488254589036, "code_postal": "93008", "stop_lon": 2.4322236788904616, "coord": [48.906488254589036, 2.4322236788904616], "stop_id": 3708459, "stop_desc": "RUE DE LA REPUBLIQUE - 93008", "stop_name": "RUE DE LA GARE"}, "geometry": {"type": "Point", "coordinates": [2.4322236788904616, 48.906488254589036]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "51acb46c1679fed14beb162c641d337ee08109a6", "fields": {"departement": "93", "stop_lat": 48.910391118821, "code_postal": "93010", "stop_lon": 2.475615038862434, "coord": [48.910391118821, 2.475615038862434], "stop_id": 3708475, "stop_desc": "RUE JEAN JACQUES ROUSSEAU - 93010", "stop_name": "ETIENNE DOLET"}, "geometry": {"type": "Point", "coordinates": [2.475615038862434, 48.910391118821]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "50eca8384f614ffb166f61c57085c4ce1dbc6a6a", "fields": {"departement": "93", "stop_lat": 48.9178455076262, "code_postal": "93010", "stop_lon": 2.4797258174982626, "coord": [48.9178455076262, 2.4797258174982626], "stop_id": 3708483, "stop_desc": "AV LEON JOUHAUX - 93010", "stop_name": "JOUHAUX-BLUM"}, "geometry": {"type": "Point", "coordinates": [2.4797258174982626, 48.9178455076262]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ba6722fb4aebbb772fe017e41901613ed6a5c7cf", "fields": {"departement": "93", "stop_lat": 48.91371257042071, "code_postal": "93055", "stop_lon": 2.4082118350408837, "coord": [48.91371257042071, 2.4082118350408837], "stop_id": 3708449, "stop_desc": "AVENUE DES COURTILLIERES - 93055", "stop_name": "DIVISION LECLERC - COURTILLIERES"}, "geometry": {"type": "Point", "coordinates": [2.4082118350408837, 48.91371257042071]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fe9a8eea30cb0bc21018aafed2961df1fcf378a5", "fields": {"departement": "94", "stop_lat": 48.85633965570982, "code_postal": "94033", "stop_lon": 2.491964727672761, "coord": [48.85633965570982, 2.491964727672761], "stop_id": 3690469, "stop_desc": "AVENUE DU MARECHAL DE LATTRE DE TASSIGNY - 94033", "stop_name": "DE LATTRE DE TASSIGNY"}, "geometry": {"type": "Point", "coordinates": [2.491964727672761, 48.85633965570982]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "55a5decab57d791dceb34517783947da34cab08f", "fields": {"departement": "94", "stop_lat": 48.849665220055705, "code_postal": "94033", "stop_lon": 2.47464957520262, "coord": [48.849665220055705, 2.47464957520262], "stop_id": 3690481, "stop_desc": "FACE 23 RUE GUERIN LEROUX - 94033", "stop_name": "HOTEL DE VILLE DE FONTENAY"}, "geometry": {"type": "Point", "coordinates": [2.47464957520262, 48.849665220055705]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4071a51a7d3311fbd401035bf6ed6019118bdc34", "fields": {"departement": "94", "stop_lat": 48.84808801643971, "code_postal": "94033", "stop_lon": 2.478403934500656, "coord": [48.84808801643971, 2.478403934500656], "stop_id": 3690399, "stop_desc": "FACE 109 BOULEVARD GALLIENI - 94033", "stop_name": "HOTEL DE VILLE DE FONTENAY"}, "geometry": {"type": "Point", "coordinates": [2.478403934500656, 48.84808801643971]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4da895731d91a08fb17ece8667e1b117d67ebcad", "fields": {"departement": "94", "stop_lat": 48.843726597210775, "code_postal": "94033", "stop_lon": 2.464652776320995, "coord": [48.843726597210775, 2.464652776320995], "stop_id": 3690487, "stop_desc": "18 PL MOREAU DAVID - 94033", "stop_name": "FONTENAY-SOUS-BOIS RER"}, "geometry": {"type": "Point", "coordinates": [2.464652776320995, 48.843726597210775]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1a2e28351818706b02b42eaabd7da4c5da2e8b89", "fields": {"departement": "94", "stop_lat": 48.84569879056931, "code_postal": "94033", "stop_lon": 2.469301104436902, "coord": [48.84569879056931, 2.469301104436902], "stop_id": 3690486, "stop_desc": "34-36 RUE MAURICE COUDERCHET - 94033", "stop_name": "MAURICE COUDERCHET"}, "geometry": {"type": "Point", "coordinates": [2.469301104436902, 48.84569879056931]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dc6a56358b793dc74f9255915d3ddc3c42f5fbfd", "fields": {"departement": "75", "stop_lat": 48.82368936403929, "code_postal": "75114", "stop_lon": 2.3318237063338647, "coord": [48.82368936403929, 2.3318237063338647], "stop_id": 3764431, "stop_desc": "59 AVENUE REILLE - 75114", "stop_name": "MONTSOURIS-TOMBE ISSOIRE"}, "geometry": {"type": "Point", "coordinates": [2.3318237063338647, 48.82368936403929]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "84df5959b3729ca0495af47d092e7111a1c914da", "fields": {"departement": "75", "stop_lat": 48.82765302479091, "code_postal": "75114", "stop_lon": 2.3350766799082034, "coord": [48.82765302479091, 2.3350766799082034], "stop_id": 3764434, "stop_desc": "39 BIS AVENUE RENE COTY - 75114", "stop_name": "ALESIA - RENE COTY"}, "geometry": {"type": "Point", "coordinates": [2.3350766799082034, 48.82765302479091]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "31c68d2645ec8fc504b290dcef3640f9ff62a323", "fields": {"departement": "75", "stop_lat": 48.83316238335831, "code_postal": "75114", "stop_lon": 2.3330479705459344, "coord": [48.83316238335831, 2.3330479705459344], "stop_id": 3764437, "stop_desc": "FACE 4-6 AVENUE RENE COTY - 75114", "stop_name": "DENFERT-ROCHEREAU-METRO-RER"}, "geometry": {"type": "Point", "coordinates": [2.3330479705459344, 48.83316238335831]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0b726367372adfff6cf877b8e4f00b6231d6edfd", "fields": {"departement": "75", "stop_lat": 48.838472494611395, "code_postal": "75115", "stop_lon": 2.3175805117777912, "coord": [48.838472494611395, 2.3175805117777912], "stop_id": 3764446, "stop_desc": "PLACE DES CINQ MARTYRS DU LYCEE BUFFON - 75115", "stop_name": "MONTPARNASSE 2 - GARE TGV"}, "geometry": {"type": "Point", "coordinates": [2.3175805117777912, 48.838472494611395]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5f2772f0f87cee91aecd8b0eaefa478d80938055", "fields": {"departement": "75", "stop_lat": 48.83829156750215, "code_postal": "75115", "stop_lon": 2.311426467123905, "coord": [48.83829156750215, 2.311426467123905], "stop_id": 3764451, "stop_desc": "93 RUE FALGUIERE - 75115", "stop_name": "INSTITUT PASTEUR"}, "geometry": {"type": "Point", "coordinates": [2.311426467123905, 48.83829156750215]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d7e4ff11b3c43d72b25a717b56958ae1d7f01bb6", "fields": {"departement": "75", "stop_lat": 48.83898966923653, "code_postal": "75115", "stop_lon": 2.3003158891450908, "coord": [48.83898966923653, 2.3003158891450908], "stop_id": 3764456, "stop_desc": "1 RUE D'ALLERAY - 75115", "stop_name": "VAUGIRARD"}, "geometry": {"type": "Point", "coordinates": [2.3003158891450908, 48.83898966923653]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2406d8e2581d25721506f9c3516da59aab4045bb", "fields": {"departement": "75", "stop_lat": 48.84288963972782, "code_postal": "75115", "stop_lon": 2.298352336044908, "coord": [48.84288963972782, 2.298352336044908], "stop_id": 3764460, "stop_desc": "9 RUE LEON LHERMITTE - 75115", "stop_name": "PECLET"}, "geometry": {"type": "Point", "coordinates": [2.298352336044908, 48.84288963972782]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e736d89380a526e5a7081b6fa167821f3237b769", "fields": {"departement": "75", "stop_lat": 48.844361117650294, "code_postal": "75115", "stop_lon": 2.291393002278304, "coord": [48.844361117650294, 2.291393002278304], "stop_id": 3764463, "stop_desc": "67 RUE DES ENTREPRENEURS - 75115", "stop_name": "VIOLET"}, "geometry": {"type": "Point", "coordinates": [2.291393002278304, 48.844361117650294]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ed3de8e96b20240835249c7cee9badaf0a34c901", "fields": {"departement": "75", "stop_lat": 48.84639697608864, "code_postal": "75115", "stop_lon": 2.2813143084006957, "coord": [48.84639697608864, 2.2813143084006957], "stop_id": 3764467, "stop_desc": "29-31 AVENUE EMILE ZOLA - 75115", "stop_name": "EMILE ZOLA-JAVEL"}, "geometry": {"type": "Point", "coordinates": [2.2813143084006957, 48.84639697608864]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2c1439697e6ee4c475d32e99694fa74385dadc7a", "fields": {"departement": "75", "stop_lat": 48.8461992381687, "code_postal": "75115", "stop_lon": 2.281287286881781, "coord": [48.8461992381687, 2.281287286881781], "stop_id": 3764468, "stop_desc": "PLACE ALPHONSE HUMBERT - 75115", "stop_name": "EMILE ZOLA-JAVEL"}, "geometry": {"type": "Point", "coordinates": [2.281287286881781, 48.8461992381687]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a6b3527e1ecadf327a780b076d075a26dff6d654", "fields": {"departement": "75", "stop_lat": 48.839993251238624, "code_postal": "75115", "stop_lon": 2.2722531268653094, "coord": [48.839993251238624, 2.2722531268653094], "stop_id": 3764479, "stop_desc": "5-7 RUE LEBLANC - 75115", "stop_name": "HOPITAL EUROPEEN GEORGES POMPIDOU"}, "geometry": {"type": "Point", "coordinates": [2.2722531268653094, 48.839993251238624]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a2f1ea89f038dc66a36e08e6765d2bd8669325f3", "fields": {"departement": "75", "stop_lat": 48.83959225019507, "code_postal": "75115", "stop_lon": 2.301677023842893, "coord": [48.83959225019507, 2.301677023842893], "stop_id": 3764482, "stop_desc": "FACE 252 RUE DE VAUGIRARD - 75115", "stop_name": "VAUGIRARD - FAVORITES"}, "geometry": {"type": "Point", "coordinates": [2.301677023842893, 48.83959225019507]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7f24b6d1ccdba90f457e9cf45978a2a4d11d0627", "fields": {"departement": "75", "stop_lat": 48.88218885999581, "code_postal": "75109", "stop_lon": 2.3373773235099753, "coord": [48.88218885999581, 2.3373773235099753], "stop_id": 3764495, "stop_desc": "FACE 20 BD DE CLICHY - 75109", "stop_name": "PIGALLE"}, "geometry": {"type": "Point", "coordinates": [2.3373773235099753, 48.88218885999581]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ca5ef39532d5d8ef86bb7630406a93ea333b139a", "fields": {"departement": "75", "stop_lat": 48.878692816406044, "code_postal": "75109", "stop_lon": 2.3370366675298446, "coord": [48.878692816406044, 2.3370366675298446], "stop_id": 3764498, "stop_desc": "FACE 32 RUE NOTRE DAME DE LORETTE - 75109", "stop_name": "SAINT-GEORGES"}, "geometry": {"type": "Point", "coordinates": [2.3370366675298446, 48.878692816406044]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e20b4999eec7bc604d9c26247e2865b93a237553", "fields": {"departement": "75", "stop_lat": 48.87009195431089, "code_postal": "75102", "stop_lon": 2.339053002863979, "coord": [48.87009195431089, 2.339053002863979], "stop_id": 3764504, "stop_desc": "87 RUE DE RICHELIEU - 75102", "stop_name": "RICHELIEU - 4 SEPTEMBRE"}, "geometry": {"type": "Point", "coordinates": [2.339053002863979, 48.87009195431089]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "db8854138713f3c0914f54a32068a05bf9adcb88", "fields": {"departement": "75", "stop_lat": 48.86042151469406, "code_postal": "75101", "stop_lon": 2.340469262084462, "coord": [48.86042151469406, 2.340469262084462], "stop_id": 3764507, "stop_desc": "FACE 6 AVENUE DE L'AMIRAL COLIGNY - 75101", "stop_name": "LOUVRE - RIVOLI"}, "geometry": {"type": "Point", "coordinates": [2.340469262084462, 48.86042151469406]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "642545ccff53340ea06dee857d69813b2b10fb5d", "fields": {"departement": "75", "stop_lat": 48.849104948120974, "code_postal": "75105", "stop_lon": 2.3556119239853666, "coord": [48.849104948120974, 2.3556119239853666], "stop_id": 3764516, "stop_desc": "4 RUE DES FOSSES SAINT BERNARD - 75105", "stop_name": "INSTITUT DU MONDE ARABE"}, "geometry": {"type": "Point", "coordinates": [2.3556119239853666, 48.849104948120974]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9471e8424bd2f7cc4f6dd9205aac29c7abb988f6", "fields": {"departement": "75", "stop_lat": 48.84904201040451, "code_postal": "75105", "stop_lon": 2.355775319106966, "coord": [48.84904201040451, 2.355775319106966], "stop_id": 3764517, "stop_desc": "FACE 2 RUE DES FOSSES SAINT BERNARD - 75105", "stop_name": "INSTITUT DU MONDE ARABE"}, "geometry": {"type": "Point", "coordinates": [2.355775319106966, 48.84904201040451]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "162301e2355b218c1f77483bb8c20bfcaed39bce", "fields": {"departement": "75", "stop_lat": 48.8462021413457, "code_postal": "75105", "stop_lon": 2.3545759764763554, "coord": [48.8462021413457, 2.3545759764763554], "stop_id": 3764519, "stop_desc": "PLACE JUSSIEU - 75105", "stop_name": "JUSSIEU"}, "geometry": {"type": "Point", "coordinates": [2.3545759764763554, 48.8462021413457]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fc3b6bf875ae607c963b131fca3aa4bc6365c70a", "fields": {"departement": "75", "stop_lat": 48.834374005977395, "code_postal": "75113", "stop_lon": 2.3578258372775394, "coord": [48.834374005977395, 2.3578258372775394], "stop_id": 3764526, "stop_desc": "141 BOULEVARD DE L'HOPITAL - 75113", "stop_name": "RUBENS - ECOLE DES ARTS ET METIERS"}, "geometry": {"type": "Point", "coordinates": [2.3578258372775394, 48.834374005977395]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9ec7303c8338fc9c9ada8d94927b7eb1481aaee1", "fields": {"departement": "75", "stop_lat": 48.8298809787651, "code_postal": "75113", "stop_lon": 2.352678308752121, "coord": [48.8298809787651, 2.352678308752121], "stop_id": 3764529, "stop_desc": "6 RUE DU MOULIN DES PRES - 75113", "stop_name": "MOULIN DES PRES"}, "geometry": {"type": "Point", "coordinates": [2.352678308752121, 48.8298809787651]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f57d5685f3e7b49d3564dbfd3303af37f5b2a015", "fields": {"departement": "75", "stop_lat": 48.82779590669523, "code_postal": "75113", "stop_lon": 2.352214862577147, "coord": [48.82779590669523, 2.352214862577147], "stop_id": 3764530, "stop_desc": "RUE BOBILLOT - 75113", "stop_name": "VERLAINE"}, "geometry": {"type": "Point", "coordinates": [2.352214862577147, 48.82779590669523]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3445ab426fa219e3ab73ef6090eb66503c184af9", "fields": {"departement": "75", "stop_lat": 48.82831709694314, "code_postal": "75113", "stop_lon": 2.3529364847578846, "coord": [48.82831709694314, 2.3529364847578846], "stop_id": 3764531, "stop_desc": "41 RUE BOBILLOT - 75113", "stop_name": "VERLAINE"}, "geometry": {"type": "Point", "coordinates": [2.3529364847578846, 48.82831709694314]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dfce1853293185b1f8ed2add8a6b3f2136b339f8", "fields": {"departement": "75", "stop_lat": 48.82300599252082, "code_postal": "75113", "stop_lon": 2.3473950870001614, "coord": [48.82300599252082, 2.3473950870001614], "stop_id": 3764534, "stop_desc": "102 RUE BOBILLOT - 75113", "stop_name": "RUNGIS"}, "geometry": {"type": "Point", "coordinates": [2.3473950870001614, 48.82300599252082]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0cfa1fa2fbf5cbaaf599733d478f795b4c21fa48", "fields": {"departement": "75", "stop_lat": 48.83219927738061, "code_postal": "75113", "stop_lon": 2.356191331508679, "coord": [48.83219927738061, 2.356191331508679], "stop_id": 3764540, "stop_desc": "169 BOULEVARD DE L'HOPITAL - 75113", "stop_name": "PLACE D'ITALIE - MAIRIE DU 13E"}, "geometry": {"type": "Point", "coordinates": [2.356191331508679, 48.83219927738061]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e89e732d989335e9137655f540cfd16b3984ca84", "fields": {"departement": "75", "stop_lat": 48.85988210624847, "code_postal": "75101", "stop_lon": 2.344283098140992, "coord": [48.85988210624847, 2.344283098140992], "stop_id": 3764548, "stop_desc": "128 RUE DE RIVOLI - 75101", "stop_name": "RIVOLI - PONT NEUF"}, "geometry": {"type": "Point", "coordinates": [2.344283098140992, 48.85988210624847]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e57c91617ecc9aa267f0da3e689d77836281fd02", "fields": {"departement": "75", "stop_lat": 48.86336033166581, "code_postal": "75101", "stop_lon": 2.3422402882400415, "coord": [48.86336033166581, 2.3422402882400415], "stop_id": 3764549, "stop_desc": "42 RUE DU LOUVRE - 75101", "stop_name": "COQUILLIERE - LES HALLES"}, "geometry": {"type": "Point", "coordinates": [2.3422402882400415, 48.86336033166581]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "83f6698fc2daccb973b575e452474d351019e0fe", "fields": {"departement": "75", "stop_lat": 48.87617468079017, "code_postal": "75110", "stop_lon": 2.3573655408708234, "coord": [48.87617468079017, 2.3573655408708234], "stop_id": 3764607, "stop_desc": "15-17 RUE DU 8 MAI 1945 - 75110", "stop_name": "GARE DE L'EST"}, "geometry": {"type": "Point", "coordinates": [2.3573655408708234, 48.87617468079017]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "14f446808fab8fca2458802288a7f1286093266e", "fields": {"departement": "75", "stop_lat": 48.87534776844683, "code_postal": "75110", "stop_lon": 2.357842096001513, "coord": [48.87534776844683, 2.357842096001513], "stop_id": 3764608, "stop_desc": "72 BOULEVARD DE STRASBOURG - 75110", "stop_name": "GARE DE L'EST"}, "geometry": {"type": "Point", "coordinates": [2.357842096001513, 48.87534776844683]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "00d258317549bc1b639c61c29b78e2ac19da7b89", "fields": {"departement": "75", "stop_lat": 48.865821809644764, "code_postal": "75103", "stop_lon": 2.353928649583883, "coord": [48.865821809644764, 2.353928649583883], "stop_id": 3764612, "stop_desc": "37-39 RUE REAUMUR - 75103", "stop_name": "REAUMUR - ARTS ET METIERS"}, "geometry": {"type": "Point", "coordinates": [2.353928649583883, 48.865821809644764]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "41d8e04eea9a857c5c761d4298087871614ffaa5", "fields": {"departement": "75", "stop_lat": 48.84978931329091, "code_postal": "75106", "stop_lon": 2.342102800318699, "coord": [48.84978931329091, 2.342102800318699], "stop_id": 3764620, "stop_desc": "38 BOULEVARD SAINT-MICHEL - 75106", "stop_name": "LES ECOLES"}, "geometry": {"type": "Point", "coordinates": [2.342102800318699, 48.84978931329091]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b4e05951a47950f53570a1c75c0d9cadefaf6c65", "fields": {"departement": "75", "stop_lat": 48.842078126923646, "code_postal": "75106", "stop_lon": 2.3377448672832224, "coord": [48.842078126923646, 2.3377448672832224], "stop_id": 3764623, "stop_desc": "86 BOULEVARD SAINT MICHEL - 75106", "stop_name": "VAL DE GRACE"}, "geometry": {"type": "Point", "coordinates": [2.3377448672832224, 48.842078126923646]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "32fba139f771c96f9e33fa8bb60bc85e02596cc9", "fields": {"departement": "75", "stop_lat": 48.837224833648605, "code_postal": "75114", "stop_lon": 2.335430268825086, "coord": [48.837224833648605, 2.335430268825086], "stop_id": 3764626, "stop_desc": "FACE 74 AVENUE DENFERT ROCHEREAU - 75114", "stop_name": "HOPITAL SAINT-VINCENT DE PAUL"}, "geometry": {"type": "Point", "coordinates": [2.335430268825086, 48.837224833648605]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9c50332baf7dab5891227672f30693a712f66a59", "fields": {"departement": "75", "stop_lat": 48.83389932071581, "code_postal": "75114", "stop_lon": 2.3319043229181324, "coord": [48.83389932071581, 2.3319043229181324], "stop_id": 3764629, "stop_desc": "2 PLACE DENFERT ROCHEREAU - 75114", "stop_name": "DENFERT-ROCHEREAU"}, "geometry": {"type": "Point", "coordinates": [2.3319043229181324, 48.83389932071581]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4da894560dfde10be274a9efeaf1cf097939218e", "fields": {"departement": "75", "stop_lat": 48.830474895128575, "code_postal": "75114", "stop_lon": 2.3292909331491076, "coord": [48.830474895128575, 2.3292909331491076], "stop_id": 3764631, "stop_desc": "29-31 AVENUE DU GENERAL LECLERC - 75114", "stop_name": "MOUTON - DUVERNET"}, "geometry": {"type": "Point", "coordinates": [2.3292909331491076, 48.830474895128575]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ab52f2d5d89f4dc806730f0ddb404999e7473e7e", "fields": {"departement": "75", "stop_lat": 48.82929741932709, "code_postal": "75114", "stop_lon": 2.3279570462264916, "coord": [48.82929741932709, 2.3279570462264916], "stop_id": 3764632, "stop_desc": "72 AVENUE DU GENERAL LECLERC - 75114", "stop_name": "ALESIA - MAINE"}, "geometry": {"type": "Point", "coordinates": [2.3279570462264916, 48.82929741932709]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3a5623d6432d258e0686e34274f861eac66f0469", "fields": {"departement": "75", "stop_lat": 48.82735598995444, "code_postal": "75114", "stop_lon": 2.326759500564941, "coord": [48.82735598995444, 2.326759500564941], "stop_id": 3764634, "stop_desc": "83-85 AVENUE DU GENERAL LECLERC - 75114", "stop_name": "ALESIA - GENERAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.326759500564941, 48.82735598995444]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3cf58a9f65cdd05ece99fb4433b48a69154245f5", "fields": {"departement": "75", "stop_lat": 48.823617082339766, "code_postal": "75114", "stop_lon": 2.3262974674069907, "coord": [48.823617082339766, 2.3262974674069907], "stop_id": 3764636, "stop_desc": "PISTE GARE ROUTIERE - 75114", "stop_name": "PORTE D'ORLEANS"}, "geometry": {"type": "Point", "coordinates": [2.3262974674069907, 48.823617082339766]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "323b2ea40982540b007382794a390b0c325a32c9", "fields": {"departement": "75", "stop_lat": 48.84195229967122, "code_postal": "75105", "stop_lon": 2.338058039954899, "coord": [48.84195229967122, 2.338058039954899], "stop_id": 3764639, "stop_desc": "131 BOULEVARD SAINT MICHEL - 75105", "stop_name": "VAL DE GRACE"}, "geometry": {"type": "Point", "coordinates": [2.338058039954899, 48.84195229967122]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "828e55bdae6d95336a72834b83012f760d9394c3", "fields": {"departement": "75", "stop_lat": 48.85234167570838, "code_postal": "75105", "stop_lon": 2.343778173799205, "coord": [48.85234167570838, 2.343778173799205], "stop_id": 3764643, "stop_desc": "7 BOULEVARD SAINT-MICHEL - 75105", "stop_name": "SAINT-MICHEL - SAINT-GERMAIN"}, "geometry": {"type": "Point", "coordinates": [2.343778173799205, 48.85234167570838]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f77f5fd83d66672ebe6a077c70fa85b7b40b80db", "fields": {"departement": "75", "stop_lat": 48.85534333466014, "code_postal": "75104", "stop_lon": 2.346107532202977, "coord": [48.85534333466014, 2.346107532202977], "stop_id": 3764644, "stop_desc": "1 BOULEVARD DU PALAIS - 75104", "stop_name": "CITE - PALAIS DE JUSTICE"}, "geometry": {"type": "Point", "coordinates": [2.346107532202977, 48.85534333466014]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "21a350035891e819123963e11816019bd0923b1b", "fields": {"departement": "75", "stop_lat": 48.86069953105734, "code_postal": "75104", "stop_lon": 2.34956822574239, "coord": [48.86069953105734, 2.34956822574239], "stop_id": 3764645, "stop_desc": "28 BOULEVARD DE SEBASTOPOL - 75104", "stop_name": "LES HALLES - CENTRE GEORGES POMPIDOU"}, "geometry": {"type": "Point", "coordinates": [2.34956822574239, 48.86069953105734]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b079224e9f59988d7bf21b1f7747c873ab076ae0", "fields": {"departement": "75", "stop_lat": 48.86586694331711, "code_postal": "75103", "stop_lon": 2.3524574303330636, "coord": [48.86586694331711, 2.3524574303330636], "stop_id": 3764647, "stop_desc": "84 BOULEVARD DE SEBASTOPOL - 75103", "stop_name": "REAUMUR - SEBASTOPOL"}, "geometry": {"type": "Point", "coordinates": [2.3524574303330636, 48.86586694331711]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "76dbca9e20d95db54384777ab3ac655414eeb202", "fields": {"departement": "75", "stop_lat": 48.868338278887315, "code_postal": "75103", "stop_lon": 2.3538613429496, "coord": [48.868338278887315, 2.3538613429496], "stop_id": 3764648, "stop_desc": "108 BOULEVARD DE SEBASTOPOL - 75103", "stop_name": "STRASBOURG - SAINT-DENIS"}, "geometry": {"type": "Point", "coordinates": [2.3538613429496, 48.868338278887315]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ebc4f1d8e1df91d18b3c54cc943f4b52083bd795", "fields": {"departement": "75", "stop_lat": 48.88117158269079, "code_postal": "75110", "stop_lon": 2.357490118558755, "coord": [48.88117158269079, 2.357490118558755], "stop_id": 3764651, "stop_desc": "PISTE GARE ROUTIERE - 75110", "stop_name": "GARE DU NORD"}, "geometry": {"type": "Point", "coordinates": [2.357490118558755, 48.88117158269079]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9942a22422a34bc3ed671478573fe9a1e1b9610a", "fields": {"departement": "75", "stop_lat": 48.879473278409144, "code_postal": "75110", "stop_lon": 2.3557180612431323, "coord": [48.879473278409144, 2.3557180612431323], "stop_id": 3764652, "stop_desc": "33-35 RUE DE SAINT-QUENTIN - 75110", "stop_name": "LA FAYETTE - DUNKERQUE"}, "geometry": {"type": "Point", "coordinates": [2.3557180612431323, 48.879473278409144]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8142b01213c270c8ebaeb949f33552541dc01e1f", "fields": {"departement": "75", "stop_lat": 48.87243595580059, "code_postal": "75110", "stop_lon": 2.3574049633654526, "coord": [48.87243595580059, 2.3574049633654526], "stop_id": 3764655, "stop_desc": "67-69 RUE DU FAUBOURG SAINT-MARTIN - 75110", "stop_name": "MAIRIE DU 10E"}, "geometry": {"type": "Point", "coordinates": [2.3574049633654526, 48.87243595580059]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "009ff3c5be2510ef5776aef9325e52af0b937d87", "fields": {"departement": "75", "stop_lat": 48.865821809644764, "code_postal": "75103", "stop_lon": 2.353928649583883, "coord": [48.865821809644764, 2.353928649583883], "stop_id": 3764657, "stop_desc": "37-39 RUE REAUMUR - 75103", "stop_name": "REAUMUR - ARTS ET METIERS"}, "geometry": {"type": "Point", "coordinates": [2.353928649583883, 48.865821809644764]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c904556621ac95702946761c9d0fcfb5a45d230f", "fields": {"departement": "75", "stop_lat": 48.855415256092286, "code_postal": "75101", "stop_lon": 2.3458079091124455, "coord": [48.855415256092286, 2.3458079091124455], "stop_id": 3764662, "stop_desc": "FACE 1 BOULEVARD DU PALAIS - 75101", "stop_name": "CITE - PALAIS DE JUSTICE"}, "geometry": {"type": "Point", "coordinates": [2.3458079091124455, 48.855415256092286]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3234746bbc261b61af77fb5c03afa47c8970df40", "fields": {"departement": "75", "stop_lat": 48.846634763899694, "code_postal": "75106", "stop_lon": 2.340250527561508, "coord": [48.846634763899694, 2.340250527561508], "stop_id": 3764665, "stop_desc": "FACE 71 BOULEVARD SAINT-MICHEL - 75106", "stop_name": "LUXEMBOURG"}, "geometry": {"type": "Point", "coordinates": [2.340250527561508, 48.846634763899694]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6ed6b4b0ac312ccaa9b8570ff60a5e4c665a3e52", "fields": {"departement": "75", "stop_lat": 48.83250570951872, "code_postal": "75114", "stop_lon": 2.3247844616165105, "coord": [48.83250570951872, 2.3247844616165105], "stop_id": 3764701, "stop_desc": "178 AVENUE DU MAINE - 75114", "stop_name": "MAIRIE DU 14E"}, "geometry": {"type": "Point", "coordinates": [2.3247844616165105, 48.83250570951872]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f9cee49f847ad5750238d817647e29ee9af63bed", "fields": {"departement": "75", "stop_lat": 48.84439601125354, "code_postal": "75106", "stop_lon": 2.3226165172926523, "coord": [48.84439601125354, 2.3226165172926523], "stop_id": 3764711, "stop_desc": "51 BOULEVARD DU MONTPARNASSE - 75106", "stop_name": "PLACE DU 18 JUIN 1940 - RUE DE L'ARRIVEE"}, "geometry": {"type": "Point", "coordinates": [2.3226165172926523, 48.84439601125354]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8e0852c87ffd65ca3f4af41bd7991bb994dffacc", "fields": {"departement": "75", "stop_lat": 48.85301242148468, "code_postal": "75107", "stop_lon": 2.3084093030670783, "coord": [48.85301242148468, 2.3084093030670783], "stop_id": 3764719, "stop_desc": "19 AVENUE DUQUESNE - 75107", "stop_name": "DUQUESNE - LOWENDAL"}, "geometry": {"type": "Point", "coordinates": [2.3084093030670783, 48.85301242148468]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "36279522948ce5d83a0d1ae47674af4061924632", "fields": {"departement": "75", "stop_lat": 48.862000265967225, "code_postal": "75107", "stop_lon": 2.3101887231214606, "coord": [48.862000265967225, 2.3101887231214606], "stop_id": 3764728, "stop_desc": "8 BOULEVARD DE LA TOUR MAUBOURG - 75107", "stop_name": "PONT DES INVALIDES - PLACE DE FINLANDE"}, "geometry": {"type": "Point", "coordinates": [2.3101887231214606, 48.862000265967225]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4706987111a89b4989c8a3e667895b0f22d19274", "fields": {"departement": "75", "stop_lat": 48.86520873004288, "code_postal": "75108", "stop_lon": 2.3100508249308103, "coord": [48.86520873004288, 2.3100508249308103], "stop_id": 3764730, "stop_desc": "1 AVENUE F.D.ROOSEVELT - 75108", "stop_name": "PALAIS DE LA DECOUVERTE"}, "geometry": {"type": "Point", "coordinates": [2.3100508249308103, 48.86520873004288]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2704bceb3c5b10c99121540ea79370840d36eafd", "fields": {"departement": "75", "stop_lat": 48.868336389464545, "code_postal": "75108", "stop_lon": 2.3103080246131436, "coord": [48.868336389464545, 2.3103080246131436], "stop_id": 3764731, "stop_desc": "FACE 43 AVENUE F.D.ROOSEVELT - 75108", "stop_name": "ROND-POINT DES CHAMPS-ELYSEES"}, "geometry": {"type": "Point", "coordinates": [2.3103080246131436, 48.868336389464545]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ec9e8c1f3abb68c0c555022b8d02a1f64398d80d", "fields": {"departement": "75", "stop_lat": 48.87411645667242, "code_postal": "75108", "stop_lon": 2.3163680133309223, "coord": [48.87411645667242, 2.3163680133309223], "stop_id": 3764740, "stop_desc": "20 BIS RUE LA BOETIE - 75108", "stop_name": "LA BOETIE - MIROMESNIL"}, "geometry": {"type": "Point", "coordinates": [2.3163680133309223, 48.87411645667242]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f48eae04f2332a78e590f6eee855f554f15c4bfb", "fields": {"departement": "75", "stop_lat": 48.87006185940335, "code_postal": "75108", "stop_lon": 2.3098711715341227, "coord": [48.87006185940335, 2.3098711715341227], "stop_id": 3764742, "stop_desc": "ROND-POINT DES CHAMPS ELYSEES - 75108", "stop_name": "ROND-POINT DES CHAMPS-ELYSEES - FRANKLIN D. ROOSEVELT"}, "geometry": {"type": "Point", "coordinates": [2.3098711715341227, 48.87006185940335]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3244886e4867b6997bdf521397ded7f3d61caaf6", "fields": {"departement": "75", "stop_lat": 48.85557356193737, "code_postal": "75107", "stop_lon": 2.3072638128695613, "coord": [48.85557356193737, 2.3072638128695613], "stop_id": 3764743, "stop_desc": "28-30 AVENUE DE LA MOTTE PICQUET - 75107", "stop_name": "RUE CLER"}, "geometry": {"type": "Point", "coordinates": [2.3072638128695613, 48.85557356193737]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "58ce0f089ee76deb8cd7c0fbd9c52e4c96cd7042", "fields": {"departement": "75", "stop_lat": 48.84685669671791, "code_postal": "75115", "stop_lon": 2.311463055493155, "coord": [48.84685669671791, 2.311463055493155], "stop_id": 3764744, "stop_desc": "8 PLACE DE BRETEUIL - 75115", "stop_name": "BRETEUIL"}, "geometry": {"type": "Point", "coordinates": [2.311463055493155, 48.84685669671791]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "422b2a15edb8754613ff4065fc1ec63236386a8c", "fields": {"departement": "75", "stop_lat": 48.82735598995444, "code_postal": "75114", "stop_lon": 2.326759500564941, "coord": [48.82735598995444, 2.326759500564941], "stop_id": 3764750, "stop_desc": "83-85 AVENUE DU GENERAL LECLERC - 75114", "stop_name": "ALESIA - GENERAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.326759500564941, 48.82735598995444]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "63d30f94bc3b4151f624cb6af3311fc4728adc8c", "fields": {"departement": "75", "stop_lat": 48.83237093332211, "code_postal": "75114", "stop_lon": 2.32515206500568, "coord": [48.83237093332211, 2.32515206500568], "stop_id": 3764752, "stop_desc": "FACE 180 AVENUE DU MAINE - 75114", "stop_name": "MAIRIE DU 14E"}, "geometry": {"type": "Point", "coordinates": [2.32515206500568, 48.83237093332211]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "36a706ef218c5e3fa4fe59e2233bff091100dfbc", "fields": {"departement": "75", "stop_lat": 48.83556139338345, "code_postal": "75114", "stop_lon": 2.3238715506034704, "coord": [48.83556139338345, 2.3238715506034704], "stop_id": 3764754, "stop_desc": "115 AVENUE DU MAINE - 75114", "stop_name": "LOSSERAND - MAINE"}, "geometry": {"type": "Point", "coordinates": [2.3238715506034704, 48.83556139338345]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2d543cfac2f5f2799ad2801bee26cfe891ac674b", "fields": {"departement": "75", "stop_lat": 48.84597723329333, "code_postal": "75106", "stop_lon": 2.318476408387774, "coord": [48.84597723329333, 2.318476408387774], "stop_id": 3764759, "stop_desc": "15-17 BOULEVARD DU MONTPARNASSE - 75106", "stop_name": "MAINE - VAUGIRARD"}, "geometry": {"type": "Point", "coordinates": [2.318476408387774, 48.84597723329333]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1f527f0e8152db1d9104f1a68cf6bd24889e425f", "fields": {"departement": "75", "stop_lat": 48.87613950699143, "code_postal": "75108", "stop_lon": 2.3224304275220877, "coord": [48.87613950699143, 2.3224304275220877], "stop_id": 3764766, "stop_desc": "FACE 2 RUE DU ROCHER - 75108", "stop_name": "GARE SAINT-LAZARE"}, "geometry": {"type": "Point", "coordinates": [2.3224304275220877, 48.87613950699143]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ed0d1d283c694b051f8c2f569a8726c1d0fbc0c9", "fields": {"departement": "75", "stop_lat": 48.87323478976855, "code_postal": "75108", "stop_lon": 2.311695174941694, "coord": [48.87323478976855, 2.311695174941694], "stop_id": 3764769, "stop_desc": "64 BIS RUE LA BOETIE - 75108", "stop_name": "SAINT-PHILIPPE-DU-ROULE"}, "geometry": {"type": "Point", "coordinates": [2.311695174941694, 48.87323478976855]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2bb841a9570aa5026169f62faede03775ae71f82", "fields": {"departement": "75", "stop_lat": 48.86520873004288, "code_postal": "75108", "stop_lon": 2.3100508249308103, "coord": [48.86520873004288, 2.3100508249308103], "stop_id": 3764772, "stop_desc": "1 AVENUE F.D.ROOSEVELT - 75108", "stop_name": "PALAIS DE LA DECOUVERTE"}, "geometry": {"type": "Point", "coordinates": [2.3100508249308103, 48.86520873004288]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bbb3c2c2876779ef23f7e499278b93fce00f696e", "fields": {"departement": "75", "stop_lat": 48.85845916271155, "code_postal": "75107", "stop_lon": 2.309904538670531, "coord": [48.85845916271155, 2.309904538670531], "stop_id": 3764774, "stop_desc": "42 BOULEVARD DE LA TOUR MAUBOURG - 75107", "stop_name": "LA TOUR MAUBOURG - SAINT-DOMINIQUE"}, "geometry": {"type": "Point", "coordinates": [2.309904538670531, 48.85845916271155]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "36a30fa13414f0bd5b6cfb7341665787eddd5c67", "fields": {"departement": "75", "stop_lat": 48.857101967206134, "code_postal": "75107", "stop_lon": 2.309496647346594, "coord": [48.857101967206134, 2.309496647346594], "stop_id": 3764775, "stop_desc": "10 AVENUE DE LA MOTTE PICQUET - 75107", "stop_name": "INVALIDES - LA TOUR MAUBOURG"}, "geometry": {"type": "Point", "coordinates": [2.309496647346594, 48.857101967206134]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b26de61d9a08fb115c08fb895b3804d6a3459726", "fields": {"departement": "75", "stop_lat": 48.838814669136, "code_postal": "75114", "stop_lon": 2.321991781957784, "coord": [48.838814669136, 2.321991781957784], "stop_id": 3764787, "stop_desc": "FACE 75 AVENUE DU MAINE - 75114", "stop_name": "GAITE"}, "geometry": {"type": "Point", "coordinates": [2.321991781957784, 48.838814669136]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cca4d8f00051d6ec04b4950b011660ee6399e5d7", "fields": {"departement": "75", "stop_lat": 48.875636412341855, "code_postal": "75108", "stop_lon": 2.324079208673973, "coord": [48.875636412341855, 2.324079208673973], "stop_id": 3764794, "stop_desc": "14 RUE DE ROME - 75108", "stop_name": "GARE SAINT-LAZARE"}, "geometry": {"type": "Point", "coordinates": [2.324079208673973, 48.875636412341855]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3076278413a847d2cd335e23a549c3cfe55314eb", "fields": {"departement": "75", "stop_lat": 48.87351575263024, "code_postal": "75109", "stop_lon": 2.327676627244145, "coord": [48.87351575263024, 2.327676627244145], "stop_id": 3764797, "stop_desc": "16-18 RUE AUBER - 75109", "stop_name": "HAVRE - HAUSSMANN"}, "geometry": {"type": "Point", "coordinates": [2.327676627244145, 48.87351575263024]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "13ae3463f2be1a1fdc44f5702cdce418372c9910", "fields": {"departement": "75", "stop_lat": 48.872033003523995, "code_postal": "75109", "stop_lon": 2.3298976383299848, "coord": [48.872033003523995, 2.3298976383299848], "stop_id": 3764798, "stop_desc": "FACE 8 RUE AUBER - 75109", "stop_name": "AUBER"}, "geometry": {"type": "Point", "coordinates": [2.3298976383299848, 48.872033003523995]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cd0e2734824f70ec15b70a1f04b2355715cecbeb", "fields": {"departement": "75", "stop_lat": 48.87219478360626, "code_postal": "75109", "stop_lon": 2.3300338573501684, "coord": [48.87219478360626, 2.3300338573501684], "stop_id": 3764799, "stop_desc": "8 RUE AUBER - 75109", "stop_name": "AUBER"}, "geometry": {"type": "Point", "coordinates": [2.3300338573501684, 48.87219478360626]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "43401fa0e069e7a690130a9576e17d547c3288a4", "fields": {"departement": "75", "stop_lat": 48.86042151469406, "code_postal": "75101", "stop_lon": 2.340469262084462, "coord": [48.86042151469406, 2.340469262084462], "stop_id": 3764808, "stop_desc": "FACE 6 AVENUE DE L'AMIRAL COLIGNY - 75101", "stop_name": "LOUVRE - RIVOLI"}, "geometry": {"type": "Point", "coordinates": [2.340469262084462, 48.86042151469406]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b01ac51cd455cff1bfd1e5f0cd8a6e12b5a44baa", "fields": {"departement": "75", "stop_lat": 48.85902811573952, "code_postal": "75101", "stop_lon": 2.3469390263467473, "coord": [48.85902811573952, 2.3469390263467473], "stop_id": 3764812, "stop_desc": "108 RUE DE RIVOLI - 75101", "stop_name": "CHATELET"}, "geometry": {"type": "Point", "coordinates": [2.3469390263467473, 48.85902811573952]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8630a33a9aba45945882e0ee6a349274399756b6", "fields": {"departement": "75", "stop_lat": 48.84978931329091, "code_postal": "75106", "stop_lon": 2.342102800318699, "coord": [48.84978931329091, 2.342102800318699], "stop_id": 3764815, "stop_desc": "38 BOULEVARD SAINT-MICHEL - 75106", "stop_name": "LES ECOLES"}, "geometry": {"type": "Point", "coordinates": [2.342102800318699, 48.84978931329091]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "842fe13bb60de68c53526e3395a41a83a485178e", "fields": {"departement": "75", "stop_lat": 48.84169151496391, "code_postal": "75105", "stop_lon": 2.343204954429883, "coord": [48.84169151496391, 2.343204954429883], "stop_id": 3764820, "stop_desc": "76 RUE GAY LUSSAC - 75105", "stop_name": "FEUILLANTINES"}, "geometry": {"type": "Point", "coordinates": [2.343204954429883, 48.84169151496391]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f665805257b019717073fa599dc78ebfe40f63fe", "fields": {"departement": "75", "stop_lat": 48.8324791890044, "code_postal": "75113", "stop_lon": 2.3443338405492233, "coord": [48.8324791890044, 2.3443338405492233], "stop_id": 3764827, "stop_desc": "56 RUE DE LA GLACIERE - 75113", "stop_name": "GLACIERE - NORDMANN"}, "geometry": {"type": "Point", "coordinates": [2.3443338405492233, 48.8324791890044]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ce7979784f1da0fc634dad818ecfd2628b80716b", "fields": {"departement": "75", "stop_lat": 48.83057383974846, "code_postal": "75113", "stop_lon": 2.3438979559280613, "coord": [48.83057383974846, 2.3438979559280613], "stop_id": 3764829, "stop_desc": "FACE 69 RUE DE LA GLACIERE - 75113", "stop_name": "GLACIERE - AUGUSTE BLANQUI"}, "geometry": {"type": "Point", "coordinates": [2.3438979559280613, 48.83057383974846]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d294a605b988c8b028eb6194503c5a906fdabd01", "fields": {"departement": "75", "stop_lat": 48.81964485343208, "code_postal": "75114", "stop_lon": 2.3437196214207834, "coord": [48.81964485343208, 2.3437196214207834], "stop_id": 3764837, "stop_desc": "6-10 BOULEVARD JOURDAN - 75114", "stop_name": "STADE CHARLETY - PORTE DE GENTILLY"}, "geometry": {"type": "Point", "coordinates": [2.3437196214207834, 48.81964485343208]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a25b1391829bf7d6ffd64c8194a700d489af7e84", "fields": {"departement": "75", "stop_lat": 48.82668228344791, "code_postal": "75113", "stop_lon": 2.342018967323419, "coord": [48.82668228344791, 2.342018967323419], "stop_id": 3764840, "stop_desc": "127-129 RUE DE LA GLACIERE - 75113", "stop_name": "GLACIERE - TOLBIAC"}, "geometry": {"type": "Point", "coordinates": [2.342018967323419, 48.82668228344791]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "53cbcd8ff246510aadfc3818e7f5f41c50f831d2", "fields": {"departement": "75", "stop_lat": 48.83733240774799, "code_postal": "75105", "stop_lon": 2.345573471780023, "coord": [48.83733240774799, 2.345573471780023], "stop_id": 3764841, "stop_desc": "29 RUE BERTHOLLET - 75105", "stop_name": "PORT ROYAL - BERTHOLLET"}, "geometry": {"type": "Point", "coordinates": [2.345573471780023, 48.83733240774799]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0a23dde5a5938d095e61fd31ce81d330a26fd653", "fields": {"departement": "75", "stop_lat": 48.8598461517609, "code_postal": "75101", "stop_lon": 2.344364818985878, "coord": [48.8598461517609, 2.344364818985878], "stop_id": 3764845, "stop_desc": "128 RUE DE RIVOLI - 75101", "stop_name": "RIVOLI - PONT NEUF"}, "geometry": {"type": "Point", "coordinates": [2.344364818985878, 48.8598461517609]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c12114da1be210110094d7f8ff527ab13f617370", "fields": {"departement": "75", "stop_lat": 48.86817760577774, "code_postal": "75102", "stop_lon": 2.3335219409225676, "coord": [48.86817760577774, 2.3335219409225676], "stop_id": 3764847, "stop_desc": "30-32 AVENUE DE L'OPERA - 75102", "stop_name": "PETITS CHAMPS - DANIELLE CASANOVA"}, "geometry": {"type": "Point", "coordinates": [2.3335219409225676, 48.86817760577774]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c1f8cd0397fe6876f72e43659556771eee22dbf7", "fields": {"departement": "75", "stop_lat": 48.84075687740633, "code_postal": "75114", "stop_lon": 2.33284311590315, "coord": [48.84075687740633, 2.33284311590315], "stop_id": 3764969, "stop_desc": "150 BOULEVARD DU MONTPARNASSE - 75114", "stop_name": "CAMPAGNE PREMIERE"}, "geometry": {"type": "Point", "coordinates": [2.33284311590315, 48.84075687740633]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b6a5346b90effbc7f8676f056631119fde2e1822", "fields": {"departement": "75", "stop_lat": 48.8394357886837, "code_postal": "75114", "stop_lon": 2.3371049092839686, "coord": [48.8394357886837, 2.3371049092839686], "stop_id": 3764970, "stop_desc": "127 BOULEVARD DE PORT ROYAL - 75114", "stop_name": "OBSERVATOIRE - PORT ROYAL"}, "geometry": {"type": "Point", "coordinates": [2.3371049092839686, 48.8394357886837]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1c5fff9089e7a47ef293bf05c3500d7902a2448b", "fields": {"departement": "75", "stop_lat": 48.83960417885431, "code_postal": "75113", "stop_lon": 2.361027586451779, "coord": [48.83960417885431, 2.361027586451779], "stop_id": 3764975, "stop_desc": "1 BOULEVARD SAINT MARCEL - 75113", "stop_name": "SAINT-MARCEL - LA PITIE"}, "geometry": {"type": "Point", "coordinates": [2.361027586451779, 48.83960417885431]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "30921f85e84c58dbb09d367cf9af95d295044721", "fields": {"departement": "75", "stop_lat": 48.8488765289316, "code_postal": "75112", "stop_lon": 2.372266746924533, "coord": [48.8488765289316, 2.372266746924533], "stop_id": 3764981, "stop_desc": "9-11 AVENUE DAUMESNIL - 75112", "stop_name": "LYON - LEDRU ROLLIN"}, "geometry": {"type": "Point", "coordinates": [2.372266746924533, 48.8488765289316]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a999e690121d1ff7070632499504e5870ad5831f", "fields": {"departement": "75", "stop_lat": 48.84311767863822, "code_postal": "75105", "stop_lon": 2.363997607036225, "coord": [48.84311767863822, 2.363997607036225], "stop_id": 3764985, "stop_desc": "4 BOULEVARD DE L'HOPITAL - 75105", "stop_name": "GARE D'AUSTERLITZ"}, "geometry": {"type": "Point", "coordinates": [2.363997607036225, 48.84311767863822]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "41be1d83138df390c8fd16b13da72cea1bb48395", "fields": {"departement": "75", "stop_lat": 48.837026175409214, "code_postal": "75105", "stop_lon": 2.352258369199745, "coord": [48.837026175409214, 2.352258369199745], "stop_id": 3764988, "stop_desc": "FACE 83 BOULEVARD SAINT-MARCEL - 75105", "stop_name": "LES GOBELINS"}, "geometry": {"type": "Point", "coordinates": [2.352258369199745, 48.837026175409214]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b4ecc92baff9f2ff2850c96717702535a7d85b41", "fields": {"departement": "75", "stop_lat": 48.87177251349153, "code_postal": "75109", "stop_lon": 2.3327587333871573, "coord": [48.87177251349153, 2.3327587333871573], "stop_id": 3765147, "stop_desc": "10 RUE HALEVY - 75109", "stop_name": "OPERA"}, "geometry": {"type": "Point", "coordinates": [2.3327587333871573, 48.87177251349153]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "22e5775457a8d3713d59916793d56a68201f1210", "fields": {"departement": "75", "stop_lat": 48.877460712561366, "code_postal": "75108", "stop_lon": 2.323043200916222, "coord": [48.877460712561366, 2.323043200916222], "stop_id": 3765152, "stop_desc": "38 RUE DE ROME - 75108", "stop_name": "GARE SAINT-LAZARE"}, "geometry": {"type": "Point", "coordinates": [2.323043200916222, 48.877460712561366]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c8681647cb4f54141b7b34fd9d759070172e2522", "fields": {"departement": "75", "stop_lat": 48.87900638175775, "code_postal": "75108", "stop_lon": 2.32189819428377, "coord": [48.87900638175775, 2.32189819428377], "stop_id": 3765155, "stop_desc": "53 RUE DE ROME - 75108", "stop_name": "EUROPE"}, "geometry": {"type": "Point", "coordinates": [2.32189819428377, 48.87900638175775]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e3c689fd70e199cae9ffc9912136aa1945401510", "fields": {"departement": "75", "stop_lat": 48.890721839724435, "code_postal": "75117", "stop_lon": 2.3031683839959776, "coord": [48.890721839724435, 2.3031683839959776], "stop_id": 3765167, "stop_desc": "22 AVENUE DE LA PORTE D'ASNIERES - 75117", "stop_name": "PORTE D'ASNIERES"}, "geometry": {"type": "Point", "coordinates": [2.3031683839959776, 48.890721839724435]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "59c83ad20dd29a637fe4345cde82e97c6f1ac69b", "fields": {"departement": "92", "stop_lat": 48.89320123324828, "code_postal": "92044", "stop_lon": 2.299623025967514, "coord": [48.89320123324828, 2.299623025967514], "stop_id": 3765170, "stop_desc": "9 RUE VICTOR HUGO - 92044", "stop_name": "ALSACE"}, "geometry": {"type": "Point", "coordinates": [2.299623025967514, 48.89320123324828]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f657127b82f3c08885f42d18a9b6f4782c0e6acb", "fields": {"departement": "92", "stop_lat": 48.89281222932453, "code_postal": "92044", "stop_lon": 2.2922496846244274, "coord": [48.89281222932453, 2.2922496846244274], "stop_id": 3765176, "stop_desc": "108-110 RUE LOUIS ROUQUIER - 92044", "stop_name": "MARJOLIN"}, "geometry": {"type": "Point", "coordinates": [2.2922496846244274, 48.89281222932453]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "16674dde18e65b0b9d4e5e6b405e93f4b8b9fd83", "fields": {"departement": "92", "stop_lat": 48.89547052508216, "code_postal": "92044", "stop_lon": 2.287463134346214, "coord": [48.89547052508216, 2.287463134346214], "stop_id": 3765179, "stop_desc": "92 RUE DU PRESIDENT WILSON - 92044", "stop_name": "VAILLANT COUTURIER"}, "geometry": {"type": "Point", "coordinates": [2.287463134346214, 48.89547052508216]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f4475316ece184101c7d34e7b4efd24d72b3d9d1", "fields": {"departement": "92", "stop_lat": 48.896472832917475, "code_postal": "92044", "stop_lon": 2.278152483179007, "coord": [48.896472832917475, 2.278152483179007], "stop_id": 3765184, "stop_desc": "FACE 143 RUE DANTON - 92044", "stop_name": "POMPIDOU"}, "geometry": {"type": "Point", "coordinates": [2.278152483179007, 48.896472832917475]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "733c231d8eb56c155d34b8c3f998f1ef8b90ac1a", "fields": {"departement": "92", "stop_lat": 48.89255108972224, "code_postal": "92044", "stop_lon": 2.2909142154289346, "coord": [48.89255108972224, 2.2909142154289346], "stop_id": 3765189, "stop_desc": "21-27 RUE RIVAY - 92044", "stop_name": "ROUQUIER - RIVAY"}, "geometry": {"type": "Point", "coordinates": [2.2909142154289346, 48.89255108972224]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b29467b5dee8fe759ca0d7ab140273b7afb1c4be", "fields": {"departement": "93", "stop_lat": 48.91748955522082, "code_postal": "93010", "stop_lon": 2.484224762465009, "coord": [48.91748955522082, 2.484224762465009], "stop_id": 3708480, "stop_desc": "VOIE NOUVELLE - 93010", "stop_name": "RABELAIS"}, "geometry": {"type": "Point", "coordinates": [2.484224762465009, 48.91748955522082]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e40bc49b852763c8ac382ea651fa69bd1e8c5a3e", "fields": {"departement": "75", "stop_lat": 48.85463346706191, "code_postal": "75101", "stop_lon": 2.343955516715223, "coord": [48.85463346706191, 2.343955516715223], "stop_id": 3716885, "stop_desc": "4 QUAI DES ORFEVRES - 75101", "stop_name": "PONT SAINT-MICHEL - QUAI DES ORFEVRES"}, "geometry": {"type": "Point", "coordinates": [2.343955516715223, 48.85463346706191]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "08a16ae5a8ad0af7bba32922b108b23987496e6f", "fields": {"departement": "93", "stop_lat": 48.9076360931163, "code_postal": "93008", "stop_lon": 2.423704829250072, "coord": [48.9076360931163, 2.423704829250072], "stop_id": 3708490, "stop_desc": "AVENUE DE LA DIVISION LECLERC - 93008", "stop_name": "REPUBLIQUE-DIVISION LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.423704829250072, 48.9076360931163]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "933bec9e5f933ae07ba43aac63f53076ef1c75fe", "fields": {"departement": "75", "stop_lat": 48.84968990052811, "code_postal": "75105", "stop_lon": 2.3496881764388644, "coord": [48.84968990052811, 2.3496881764388644], "stop_id": 3716888, "stop_desc": "47 BOULEVARD SAINT-GERMAIN - 75105", "stop_name": "MAUBERT - MUTUALITE"}, "geometry": {"type": "Point", "coordinates": [2.3496881764388644, 48.84968990052811]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1094fda19fee6921ece5ab8768eb435b6b7f51b3", "fields": {"departement": "93", "stop_lat": 48.90637437721665, "code_postal": "93008", "stop_lon": 2.439517229737543, "coord": [48.90637437721665, 2.439517229737543], "stop_id": 3708506, "stop_desc": "BOULEVARD LENINE - 93008", "stop_name": "CONSERVATOIRE JEAN WIENER"}, "geometry": {"type": "Point", "coordinates": [2.439517229737543, 48.90637437721665]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e04554141909b9ad7eb24c9042453ed57aec3607", "fields": {"departement": "93", "stop_lat": 48.913365186523436, "code_postal": "93008", "stop_lon": 2.4174831801276664, "coord": [48.913365186523436, 2.4174831801276664], "stop_id": 3708498, "stop_desc": "FACE 1 RUE BALZAC - 93008", "stop_name": "LES COURTILLIERES"}, "geometry": {"type": "Point", "coordinates": [2.4174831801276664, 48.913365186523436]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "84549f28dcc9f0769e7b6261d01596bc07f77eef", "fields": {"departement": "75", "stop_lat": 48.84460965957797, "code_postal": "75105", "stop_lon": 2.363766888008652, "coord": [48.84460965957797, 2.363766888008652], "stop_id": 3716892, "stop_desc": "PLACE VALHUBERT - 75105", "stop_name": "JARDIN DES PLANTES"}, "geometry": {"type": "Point", "coordinates": [2.363766888008652, 48.84460965957797]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "81562ab36cd8a7122bc4ad4a7ff9ed55a60a206b", "fields": {"departement": "93", "stop_lat": 48.90752818929823, "code_postal": "93008", "stop_lon": 2.45522530113179, "coord": [48.90752818929823, 2.45522530113179], "stop_id": 3708513, "stop_desc": "AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "LAMARTINE"}, "geometry": {"type": "Point", "coordinates": [2.45522530113179, 48.90752818929823]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "325bc7a8a78ae89bee05fc0d743a5b30ddcbcbde", "fields": {"departement": "93", "stop_lat": 48.90672978942366, "code_postal": "93008", "stop_lon": 2.433614717029149, "coord": [48.90672978942366, 2.433614717029149], "stop_id": 3708505, "stop_desc": "RUE DE LA REPUBLIQUE - 93008", "stop_name": "RUE DE LA GARE"}, "geometry": {"type": "Point", "coordinates": [2.433614717029149, 48.90672978942366]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "32b92b2a8cc0f5a74b966b33f8322bd53603a092", "fields": {"departement": "94", "stop_lat": 48.813165663031356, "code_postal": "94017", "stop_lon": 2.509772359937948, "coord": [48.813165663031356, 2.509772359937948], "stop_id": 3718115, "stop_desc": "RUE GEORGES DIMITROV - 94017", "stop_name": "MAIRIE DE CHAMPIGNY - MARCHE"}, "geometry": {"type": "Point", "coordinates": [2.509772359937948, 48.813165663031356]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4c7a812da43505a14b101055c86b13dbfad5972e", "fields": {"departement": "94", "stop_lat": 48.81795512775568, "code_postal": "94069", "stop_lon": 2.430033797229572, "coord": [48.81795512775568, 2.430033797229572], "stop_id": 3724095, "stop_desc": "FACE 57 RUE DU MARECHAL LECLERC - 94069", "stop_name": "HOPITAL ESQUIROL"}, "geometry": {"type": "Point", "coordinates": [2.430033797229572, 48.81795512775568]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c0bb2a0101fce366ea5b7e716bd6abe4bda06d2b", "fields": {"departement": "94", "stop_lat": 48.81313392039415, "code_postal": "94017", "stop_lon": 2.513038349469217, "coord": [48.81313392039415, 2.513038349469217], "stop_id": 3718114, "stop_desc": "43 RUE LOUIS TALAMONI - 94017", "stop_name": "MAIRIE DE CHAMPIGNY."}, "geometry": {"type": "Point", "coordinates": [2.513038349469217, 48.81313392039415]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "05d02afad7e8b511f202a280400bedb6e0d22596", "fields": {"departement": "94", "stop_lat": 48.81034580258984, "code_postal": "94017", "stop_lon": 2.542313335117928, "coord": [48.81034580258984, 2.542313335117928], "stop_id": 3718105, "stop_desc": "59 R DU BOIS L'ABBE - 94017", "stop_name": "COLOMBE - HARDELET"}, "geometry": {"type": "Point", "coordinates": [2.542313335117928, 48.81034580258984]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "78c5d0e1948949db41e4abb20cc31efbae0cfe5b", "fields": {"departement": "94", "stop_lat": 48.81156828189472, "code_postal": "94017", "stop_lon": 2.552415548105238, "coord": [48.81156828189472, 2.552415548105238], "stop_id": 3718103, "stop_desc": "33-35 RUE DU PLESSIS TREVISE - 94017", "stop_name": "CHATEAUDUN"}, "geometry": {"type": "Point", "coordinates": [2.552415548105238, 48.81156828189472]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a9ecde98930950a37afcaf5c91c8af05d016f052", "fields": {"departement": "94", "stop_lat": 48.806768958429736, "code_postal": "94019", "stop_lon": 2.5572397779127702, "coord": [48.806768958429736, 2.5572397779127702], "stop_id": 3718101, "stop_desc": "ROUTE DU PLESSIS TREVISE - 94019", "stop_name": "BOIS L'ABBE"}, "geometry": {"type": "Point", "coordinates": [2.5572397779127702, 48.806768958429736]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "32ad811279bc04f0f9dfbee93d96313d919bb17e", "fields": {"departement": "94", "stop_lat": 48.81071404297491, "code_postal": "94017", "stop_lon": 2.5204329599768447, "coord": [48.81071404297491, 2.5204329599768447], "stop_id": 3718112, "stop_desc": "FACE 30 AVENUE MARX DORMOY - 94017", "stop_name": "MARTELET."}, "geometry": {"type": "Point", "coordinates": [2.5204329599768447, 48.81071404297491]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8b4d39964c14d9591d655b1b4b03d01c96d9b47a", "fields": {"departement": "94", "stop_lat": 48.81745989066233, "code_postal": "94069", "stop_lon": 2.451726999892649, "coord": [48.81745989066233, 2.451726999892649], "stop_id": 3724105, "stop_desc": "182 RUE DU MARECHAL LECLERC - 94069", "stop_name": "ROSERAIE"}, "geometry": {"type": "Point", "coordinates": [2.451726999892649, 48.81745989066233]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1183e0d30a4601aa5bbfb7aa4967de036c615bdd", "fields": {"departement": "94", "stop_lat": 48.822231640351454, "code_postal": "94069", "stop_lon": 2.4200645134930636, "coord": [48.822231640351454, 2.4200645134930636], "stop_id": 3724089, "stop_desc": "2 RUE VERDUN - 94069", "stop_name": "VERDUN"}, "geometry": {"type": "Point", "coordinates": [2.4200645134930636, 48.822231640351454]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "11bd29ffbf5322f71dd13dfce201f8c63aae964a", "fields": {"departement": "94", "stop_lat": 48.814932080698995, "code_postal": "94046", "stop_lon": 2.4222439451389848, "coord": [48.814932080698995, 2.4222439451389848], "stop_id": 3716950, "stop_desc": "31-35 AVENUE DU GENERAL LECLERC - 94046", "stop_name": "ECOLE VETERINAIRE DE MAISONS-ALFORT-METRO"}, "geometry": {"type": "Point", "coordinates": [2.4222439451389848, 48.814932080698995]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9b6de45152bc825810822bafdc6150917e1533b9", "fields": {"departement": "75", "stop_lat": 48.8511007153224, "code_postal": "75105", "stop_lon": 2.3516359825745714, "coord": [48.8511007153224, 2.3516359825745714], "stop_id": 3716972, "stop_desc": "FACE 55 QUAI DE LA TOURNELLE - 75105", "stop_name": "PONT DE L'ARCHEVECHE"}, "geometry": {"type": "Point", "coordinates": [2.3516359825745714, 48.8511007153224]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4f0811527e03bf954b60ab9e04ad5413f9172e08", "fields": {"departement": "75", "stop_lat": 48.84968990052811, "code_postal": "75105", "stop_lon": 2.3496881764388644, "coord": [48.84968990052811, 2.3496881764388644], "stop_id": 3716976, "stop_desc": "47 BOULEVARD SAINT-GERMAIN - 75105", "stop_name": "MAUBERT - MUTUALITE"}, "geometry": {"type": "Point", "coordinates": [2.3496881764388644, 48.84968990052811]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7b23dac724d621f01e0a585cc808f4d5b1240b9c", "fields": {"departement": "75", "stop_lat": 48.849014689133234, "code_postal": "75105", "stop_lon": 2.357954206837178, "coord": [48.849014689133234, 2.357954206837178], "stop_id": 3716970, "stop_desc": "QUAI SAINT BERNARD - 75105", "stop_name": "UNIVERSITE PARIS VI"}, "geometry": {"type": "Point", "coordinates": [2.357954206837178, 48.849014689133234]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8eb8a5c016ecea9c78b4117da23625578924d356", "fields": {"departement": "94", "stop_lat": 48.81034580258984, "code_postal": "94017", "stop_lon": 2.542313335117928, "coord": [48.81034580258984, 2.542313335117928], "stop_id": 3718010, "stop_desc": "59 R DU BOIS L'ABBE - 94017", "stop_name": "COLOMBE - HARDELET"}, "geometry": {"type": "Point", "coordinates": [2.542313335117928, 48.81034580258984]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "12efadc06899f52c555eb37abf0965a1d749d96f", "fields": {"departement": "75", "stop_lat": 48.838348992494765, "code_postal": "75112", "stop_lon": 2.3816814376226065, "coord": [48.838348992494765, 2.3816814376226065], "stop_id": 3716963, "stop_desc": "RUE DE BERCY - 75112", "stop_name": "GARE DE BERCY - POPB"}, "geometry": {"type": "Point", "coordinates": [2.3816814376226065, 48.838348992494765]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2e7e636dc5400fd425c120ecbb77f43c5b2f3d33", "fields": {"departement": "75", "stop_lat": 48.843744254309904, "code_postal": "75112", "stop_lon": 2.3736249556721383, "coord": [48.843744254309904, 2.3736249556721383], "stop_id": 3716966, "stop_desc": "FACE 179 RUE DE BERCY - 75112", "stop_name": "GARE DE LYON"}, "geometry": {"type": "Point", "coordinates": [2.3736249556721383, 48.843744254309904]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "faea4e47dcfa6ffa80ff60b704d644c7419e930a", "fields": {"departement": "75", "stop_lat": 48.83592072593947, "code_postal": "75112", "stop_lon": 2.385831834104346, "coord": [48.83592072593947, 2.385831834104346], "stop_id": 3716962, "stop_desc": "2 RUE DE BERCY - 75112", "stop_name": "LACHAMBEAUDIE"}, "geometry": {"type": "Point", "coordinates": [2.385831834104346, 48.83592072593947]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cbca14102ef6c8009eb885231cb6519eb8e2fe1e", "fields": {"departement": "94", "stop_lat": 48.81899305429177, "code_postal": "94018", "stop_lon": 2.4109813171069656, "coord": [48.81899305429177, 2.4109813171069656], "stop_id": 3716954, "stop_desc": "7 RUE VICTOR HUGO - 94018", "stop_name": "VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.4109813171069656, 48.81899305429177]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "97871163e5d9133c06184b2eb29b930f503540cd", "fields": {"departement": "75", "stop_lat": 48.867296005540844, "code_postal": "75108", "stop_lon": 2.322623676294097, "coord": [48.867296005540844, 2.322623676294097], "stop_id": 3716942, "stop_desc": "4 RUE ROYALE - 75108", "stop_name": "CONCORDE"}, "geometry": {"type": "Point", "coordinates": [2.322623676294097, 48.867296005540844]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c3f67eadee8d4f33e3fe824d235e5b8377908cb7", "fields": {"departement": "75", "stop_lat": 48.84982392159421, "code_postal": "75105", "stop_lon": 2.355775598313055, "coord": [48.84982392159421, 2.355775598313055], "stop_id": 3716931, "stop_desc": "FACE 3 QUAI DE LA TOURNELLE - 75105", "stop_name": "PONT DE LA TOURNELLE - CARDINAL LEMOINE"}, "geometry": {"type": "Point", "coordinates": [2.355775598313055, 48.84982392159421]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "71d742c87a53d82a5716ef6cbcee57d3556cf047", "fields": {"departement": "75", "stop_lat": 48.84079481495786, "code_postal": "75112", "stop_lon": 2.378320391662055, "coord": [48.84079481495786, 2.378320391662055], "stop_id": 3716896, "stop_desc": "133-135 RUE DE BERCY - 75112", "stop_name": "MINISTERE DE L'ECONOMIE ET DES FINANCES"}, "geometry": {"type": "Point", "coordinates": [2.378320391662055, 48.84079481495786]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6f27dc3ad51b7e69f79197a6ca10cac2b30d0763", "fields": {"departement": "94", "stop_lat": 48.81894991672889, "code_postal": "94018", "stop_lon": 2.4080142264771136, "coord": [48.81894991672889, 2.4080142264771136], "stop_id": 3716905, "stop_desc": "FACE 40 QUAI DES CARRIERES - 94018", "stop_name": "LES BERGES DE CHARENTON"}, "geometry": {"type": "Point", "coordinates": [2.4080142264771136, 48.81894991672889]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "80bb8129e21492e805a64c3a9534e7137e649023", "fields": {"departement": "94", "stop_lat": 48.824897923964144, "code_postal": "94018", "stop_lon": 2.3947508460858735, "coord": [48.824897923964144, 2.3947508460858735], "stop_id": 3716901, "stop_desc": "FACE 3 AVENUE DU GENERAL DE GAULLE - 94018", "stop_name": "PARC DE BERCY"}, "geometry": {"type": "Point", "coordinates": [2.3947508460858735, 48.824897923964144]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "97fea83cf7a1528bd4255d14fb32594247f5de51", "fields": {"departement": "94", "stop_lat": 48.81940876414627, "code_postal": "94018", "stop_lon": 2.4072118416045463, "coord": [48.81940876414627, 2.4072118416045463], "stop_id": 3716915, "stop_desc": "52 QUAI DES CARRIERES - 94018", "stop_name": "LES BERGES DE CHARENTON"}, "geometry": {"type": "Point", "coordinates": [2.4072118416045463, 48.81940876414627]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "99396128a1d378133f7a5d63f58f213b63d06cc4", "fields": {"departement": "94", "stop_lat": 48.8212835905143, "code_postal": "94018", "stop_lon": 2.4130942509604414, "coord": [48.8212835905143, 2.4130942509604414], "stop_id": 3716907, "stop_desc": "36 RUE VICTOR HUGO - 94018", "stop_name": "CHARENTON-ECOLES"}, "geometry": {"type": "Point", "coordinates": [2.4130942509604414, 48.8212835905143]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6cd005af979c92b76b8cc41c93739616d4eb15f1", "fields": {"departement": "75", "stop_lat": 48.838348992494765, "code_postal": "75112", "stop_lon": 2.3816814376226065, "coord": [48.838348992494765, 2.3816814376226065], "stop_id": 3716923, "stop_desc": "RUE DE BERCY - 75112", "stop_name": "GARE DE BERCY - POPB"}, "geometry": {"type": "Point", "coordinates": [2.3816814376226065, 48.838348992494765]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e6fb5cc68ee9a0b2470940dca0dcc988905e12e4", "fields": {"departement": "75", "stop_lat": 48.83390615769929, "code_postal": "75112", "stop_lon": 2.3890292724064803, "coord": [48.83390615769929, 2.3890292724064803], "stop_id": 3716921, "stop_desc": "27-29 RUE BARON LE ROY - 75112", "stop_name": "BARON LE ROY"}, "geometry": {"type": "Point", "coordinates": [2.3890292724064803, 48.83390615769929]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "67adf622af64d96fc253ecd65b2023e8a28617ee", "fields": {"departement": "75", "stop_lat": 48.84369043264488, "code_postal": "75112", "stop_lon": 2.373284500119991, "coord": [48.84369043264488, 2.373284500119991], "stop_id": 3716895, "stop_desc": "179 RUE DE BERCY - 75112", "stop_name": "GARE DE LYON"}, "geometry": {"type": "Point", "coordinates": [2.373284500119991, 48.84369043264488]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "70b8ceddb6dde1b515926d911d2f84156494448c", "fields": {"departement": "94", "stop_lat": 48.82482628442783, "code_postal": "94018", "stop_lon": 2.3942062961024053, "coord": [48.82482628442783, 2.3942062961024053], "stop_id": 3716918, "stop_desc": "QUAI DE BERCY - 94018", "stop_name": "PARC DE BERCY"}, "geometry": {"type": "Point", "coordinates": [2.3942062961024053, 48.82482628442783]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8e25b38a931b08038645af88aadbfde45e5c5659", "fields": {"departement": "94", "stop_lat": 48.804798613299376, "code_postal": "94059", "stop_lon": 2.5723891460903743, "coord": [48.804798613299376, 2.5723891460903743], "stop_id": 3718040, "stop_desc": "AVENUE MAURICE BERTEAUX - 94059", "stop_name": "COLLEGE ALBERT CAMUS - ZA PONROY"}, "geometry": {"type": "Point", "coordinates": [2.5723891460903743, 48.804798613299376]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2054590b27d254134246e63a8747d91353076bb7", "fields": {"departement": "94", "stop_lat": 48.813165663031356, "code_postal": "94017", "stop_lon": 2.509772359937948, "coord": [48.813165663031356, 2.509772359937948], "stop_id": 3718028, "stop_desc": "RUE GEORGES DIMITROV - 94017", "stop_name": "MAIRIE DE CHAMPIGNY - MARCHE"}, "geometry": {"type": "Point", "coordinates": [2.509772359937948, 48.813165663031356]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3a94e906b487e59b26967efce966c7a5bea44b8a", "fields": {"departement": "94", "stop_lat": 48.79506847200073, "code_postal": "94019", "stop_lon": 2.561135374665352, "coord": [48.79506847200073, 2.561135374665352], "stop_id": 3718043, "stop_desc": "AVENUE CHAMPLAIN - 94019", "stop_name": "CENTRE COMMERCIAL DE PINCEVENT"}, "geometry": {"type": "Point", "coordinates": [2.561135374665352, 48.79506847200073]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bcba063cee36d9236caff1ea507de278d70361f2", "fields": {"departement": "94", "stop_lat": 48.798803649845276, "code_postal": "94019", "stop_lon": 2.553464658344232, "coord": [48.798803649845276, 2.553464658344232], "stop_id": 3718047, "stop_desc": "FACE 15 RUE CLEMENT ADER - 94019", "stop_name": "CHAMPLAIN - PAGNOL"}, "geometry": {"type": "Point", "coordinates": [2.553464658344232, 48.798803649845276]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4ce402f1f30671adc94696ba0d09bd6d6029c6e7", "fields": {"departement": "94", "stop_lat": 48.805498654101186, "code_postal": "94019", "stop_lon": 2.5588672050966967, "coord": [48.805498654101186, 2.5588672050966967], "stop_id": 3718051, "stop_desc": "RUE JEAN DE LA FONTAINE - 94019", "stop_name": "JEAN DE LA FONTAINE"}, "geometry": {"type": "Point", "coordinates": [2.5588672050966967, 48.805498654101186]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b6749282986ed5698cc8683423e565f3ee33f117", "fields": {"departement": "94", "stop_lat": 48.808496295953304, "code_postal": "94017", "stop_lon": 2.524765932868587, "coord": [48.808496295953304, 2.524765932868587], "stop_id": 3718021, "stop_desc": "59 AVENUE MARX DORMOY - 94017", "stop_name": "LA CASCADE"}, "geometry": {"type": "Point", "coordinates": [2.524765932868587, 48.808496295953304]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "788b8b2a9cdd84baf8a2b7d6f117c94ab5df7f10", "fields": {"departement": "94", "stop_lat": 48.80690979215043, "code_postal": "94017", "stop_lon": 2.5539610595023534, "coord": [48.80690979215043, 2.5539610595023534], "stop_id": 3718056, "stop_desc": "AVENUE BOILEAU - 94017", "stop_name": "HOUDON"}, "geometry": {"type": "Point", "coordinates": [2.5539610595023534, 48.80690979215043]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ad453bfbe5880b24864be319db6fdad640885034", "fields": {"departement": "94", "stop_lat": 48.80636069242165, "code_postal": "94017", "stop_lon": 2.549441253048244, "coord": [48.80636069242165, 2.549441253048244], "stop_id": 3718057, "stop_desc": "PLACE RODIN - 94017", "stop_name": "RODIN"}, "geometry": {"type": "Point", "coordinates": [2.549441253048244, 48.80636069242165]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "14a21fe6873ef98c4a7ac0d945caf7d0e4c644ae", "fields": {"departement": "92", "stop_lat": 48.81756514042195, "code_postal": "92046", "stop_lon": 2.30746270141898, "coord": [48.81756514042195, 2.30746270141898], "stop_id": 3729702, "stop_desc": "128-130 AV PIERRE BROSSOLETTE - 92046", "stop_name": "PIERRE BROSSOLETTE - AUGUSTIN DUMONT"}, "geometry": {"type": "Point", "coordinates": [2.30746270141898, 48.81756514042195]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6fbf5e0e11b4f6e4c31790c111e7bd10c03e708a", "fields": {"departement": "92", "stop_lat": 48.81340227393181, "code_postal": "92046", "stop_lon": 2.3018174520687054, "coord": [48.81340227393181, 2.3018174520687054], "stop_id": 3729704, "stop_desc": "210 AV PIERRE BROSSOLETTE - 92046", "stop_name": "PIERRE BROSSOLETTE - ETIENNE DOLET"}, "geometry": {"type": "Point", "coordinates": [2.3018174520687054, 48.81340227393181]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "748f6c94c7f8915a76fa58fa0673dfccf0c8d221", "fields": {"departement": "94", "stop_lat": 48.82184523642489, "code_postal": "94069", "stop_lon": 2.4199686200390875, "coord": [48.82184523642489, 2.4199686200390875], "stop_id": 3724112, "stop_desc": "50 AVENUE DU MARECHAL DE LATTRE DE TASSIGNY - 94069", "stop_name": "EDMOND NOCARD"}, "geometry": {"type": "Point", "coordinates": [2.4199686200390875, 48.82184523642489]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "da2a58a7ef0c96f5850c8017d73896bba2d2d92d", "fields": {"departement": "77", "stop_lat": 48.85777961622019, "code_postal": "77083", "stop_lon": 2.5862634422662496, "coord": [48.85777961622019, 2.5862634422662496], "stop_id": 3724670, "stop_desc": "74 BIS-76 RUE AUGUSTE VALLAUD - 77083", "stop_name": "VALLAUD - JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.5862634422662496, 48.85777961622019]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2cc8ecc4acd1f443224b925b9afe92b7a5090702", "fields": {"departement": "77", "stop_lat": 48.85932991352731, "code_postal": "77083", "stop_lon": 2.588422986071892, "coord": [48.85932991352731, 2.588422986071892], "stop_id": 3724672, "stop_desc": "FACE AU 45 RUE AUGUSTE VALLAUD - 77083", "stop_name": "ALBERT BERTHELOT"}, "geometry": {"type": "Point", "coordinates": [2.588422986071892, 48.85932991352731]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "48b06bee8e019d5f9a6a9b319b1ca2c6c44c426e", "fields": {"departement": "94", "stop_lat": 48.81838475693689, "code_postal": "94069", "stop_lon": 2.4202761371458252, "coord": [48.81838475693689, 2.4202761371458252], "stop_id": 3724111, "stop_desc": "5 RUE DU MARECHAL LECLERC - 94069", "stop_name": "PONT DE CHARENTON"}, "geometry": {"type": "Point", "coordinates": [2.4202761371458252, 48.81838475693689]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "41bd9dc30a5ea58c2dcef082de86bd8fc3733069", "fields": {"departement": "94", "stop_lat": 48.816872071529666, "code_postal": "94069", "stop_lon": 2.4554275393875784, "coord": [48.816872071529666, 2.4554275393875784], "stop_id": 3724108, "stop_desc": "103 RUE DU MARECHAL LECLERC - 94069", "stop_name": "LES CANADIENS"}, "geometry": {"type": "Point", "coordinates": [2.4554275393875784, 48.816872071529666]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "22e069097bd860ba9deb37a7051a8763c1551492", "fields": {"departement": "94", "stop_lat": 48.81477725565159, "code_postal": "94069", "stop_lon": 2.4561032273681587, "coord": [48.81477725565159, 2.4561032273681587], "stop_id": 3724109, "stop_desc": "PLACE DE L'ECLUSE - 94069", "stop_name": "PLACE DE L'ECLUSE"}, "geometry": {"type": "Point", "coordinates": [2.4561032273681587, 48.81477725565159]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a3a72db0c96af496e72e87cef921c6b605738354", "fields": {"departement": "94", "stop_lat": 48.75360165356562, "code_postal": "94034", "stop_lon": 2.339538318962512, "coord": [48.75360165356562, 2.339538318962512], "stop_id": 3730053, "stop_desc": "AVENUE DU PARC MEDICIS - 94034", "stop_name": "PARC MEDICIS"}, "geometry": {"type": "Point", "coordinates": [2.339538318962512, 48.75360165356562]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cd5f244a695d649ba26975dce2a8bfb072aec3aa", "fields": {"departement": "94", "stop_lat": 48.7902727327327, "code_postal": "94016", "stop_lon": 2.331337502165569, "coord": [48.7902727327327, 2.331337502165569], "stop_id": 3730345, "stop_desc": "1 AVENUE DE LA DIVISION LECLERC - 94016", "stop_name": "DIVISION LECLERC - CAMILLE DESMOULINS"}, "geometry": {"type": "Point", "coordinates": [2.331337502165569, 48.7902727327327]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "431b2f4fb92277d26a855a7387ba6b4b2c940356", "fields": {"departement": "94", "stop_lat": 48.77917960119566, "code_postal": "94038", "stop_lon": 2.359857546365134, "coord": [48.77917960119566, 2.359857546365134], "stop_id": 3730635, "stop_desc": "FACE 26-32 RUE SAINTE COLOMBE - 94038", "stop_name": "GUSTAVE CHARPENTIER"}, "geometry": {"type": "Point", "coordinates": [2.359857546365134, 48.77917960119566]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "83747fb85f84577efb58fa2a5c56824f7353aaac", "fields": {"departement": "94", "stop_lat": 48.78337654018026, "code_postal": "94076", "stop_lon": 2.3620899204722337, "coord": [48.78337654018026, 2.3620899204722337], "stop_id": 3730631, "stop_desc": "FACE 75 RUE AUGUSTE DELAUNE - 94076", "stop_name": "PLACE AUGUSTE DELAUNE"}, "geometry": {"type": "Point", "coordinates": [2.3620899204722337, 48.78337654018026]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d83c51d5f78d903592a25b22506a693a1c9a082a", "fields": {"departement": "94", "stop_lat": 48.775811214791446, "code_postal": "94038", "stop_lon": 2.3401104509927557, "coord": [48.775811214791446, 2.3401104509927557], "stop_id": 3730647, "stop_desc": "137 AVENUE PAUL VAILLANT COUTURIER - 94038", "stop_name": "TOURNELLES"}, "geometry": {"type": "Point", "coordinates": [2.3401104509927557, 48.775811214791446]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bd30a522f53c2eed3e742c6bd06021073e1e81d8", "fields": {"departement": "94", "stop_lat": 48.76106133960879, "code_postal": "94034", "stop_lon": 2.326405820962682, "coord": [48.76106133960879, 2.326405820962682], "stop_id": 3730373, "stop_desc": "FACE 39 RUE EMILE ZOLA - 94034", "stop_name": "CHARCOT - ZOLA"}, "geometry": {"type": "Point", "coordinates": [2.326405820962682, 48.76106133960879]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4dbd4dcebc14b6159893980995e3db2c5f9b8e8f", "fields": {"departement": "94", "stop_lat": 48.801668773295894, "code_postal": "94003", "stop_lon": 2.3241115821868807, "coord": [48.801668773295894, 2.3241115821868807], "stop_id": 3730375, "stop_desc": "127 AVENUE ARISTIDE BRIAND - 94003", "stop_name": "GRANGE ORY"}, "geometry": {"type": "Point", "coordinates": [2.3241115821868807, 48.801668773295894]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "82d09ffd64641508dcca57bd9f5328723074c63a", "fields": {"departement": "92", "stop_lat": 48.75549283519391, "code_postal": "92002", "stop_lon": 2.3016122529062426, "coord": [48.75549283519391, 2.3016122529062426], "stop_id": 3730667, "stop_desc": "FACE 26-28 R VELPEAU - 92002", "stop_name": "ANTONY RER"}, "geometry": {"type": "Point", "coordinates": [2.3016122529062426, 48.75549283519391]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "979427f3741d62d13bcb3ad477a4d9961a144db6", "fields": {"departement": "94", "stop_lat": 48.758436565941224, "code_postal": "94034", "stop_lon": 2.324027353751202, "coord": [48.758436565941224, 2.324027353751202], "stop_id": 3730371, "stop_desc": "40 RUE HENRI BARBUSSE - 94034", "stop_name": "EMILE ZOLA"}, "geometry": {"type": "Point", "coordinates": [2.324027353751202, 48.758436565941224]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9500d87a246da68887a48afa0a56e37ea6980b48", "fields": {"departement": "94", "stop_lat": 48.79960320040546, "code_postal": "94019", "stop_lon": 2.5435497977978447, "coord": [48.79960320040546, 2.5435497977978447], "stop_id": 3718064, "stop_desc": "FACE 39 ROUTE DE LA LIBERATION - 94019", "stop_name": "RUE DES FUSILLES DE CHATEAUBRIANT"}, "geometry": {"type": "Point", "coordinates": [2.5435497977978447, 48.79960320040546]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f413fa5cb02db2c6076bdf4fa1fe7dcf4423afa5", "fields": {"departement": "94", "stop_lat": 48.81197817551925, "code_postal": "94017", "stop_lon": 2.510530485291293, "coord": [48.81197817551925, 2.510530485291293], "stop_id": 3718078, "stop_desc": "FACE 4 BIS RUE ALBERT THOMAS - 94017", "stop_name": "MARCHE DE CHAMPIGNY-SUR-MARNE"}, "geometry": {"type": "Point", "coordinates": [2.510530485291293, 48.81197817551925]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1ff773dc023821ce5a21ecf82714e0acd3f91bea", "fields": {"departement": "94", "stop_lat": 48.81248980165499, "code_postal": "94017", "stop_lon": 2.51099488416213, "coord": [48.81248980165499, 2.51099488416213], "stop_id": 3718087, "stop_desc": "4 BIS RUE ALBERT THOMAS - 94017", "stop_name": "MARCHE DE CHAMPIGNY-SUR-MARNE"}, "geometry": {"type": "Point", "coordinates": [2.51099488416213, 48.81248980165499]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1d59da526cd931f11036f9c2ec3949b8f470c39c", "fields": {"departement": "94", "stop_lat": 48.80654286951804, "code_postal": "94017", "stop_lon": 2.526704679451085, "coord": [48.80654286951804, 2.526704679451085], "stop_id": 3718069, "stop_desc": "FACE 87 AVENUE MARX DORMOY - 94017", "stop_name": "MUSEE DE LA RESISTANCE"}, "geometry": {"type": "Point", "coordinates": [2.526704679451085, 48.80654286951804]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c7e97b810397f54d4f4d54fe3b869501fedb75e6", "fields": {"departement": "94", "stop_lat": 48.80059300170557, "code_postal": "94019", "stop_lon": 2.5480299257631347, "coord": [48.80059300170557, 2.5480299257631347], "stop_id": 3718095, "stop_desc": "ROUTE DU PLESSIS - 94019", "stop_name": "GROUPE SCOLAIRE ROUSSEAU"}, "geometry": {"type": "Point", "coordinates": [2.5480299257631347, 48.80059300170557]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9d9077dfffe8272af4550687ffd0ba2d120a2e28", "fields": {"departement": "94", "stop_lat": 48.81313554348275, "code_postal": "94017", "stop_lon": 2.511936047825764, "coord": [48.81313554348275, 2.511936047825764], "stop_id": 3718076, "stop_desc": "32 RUE LOUIS TALAMONI - 94017", "stop_name": "MAIRIE DE CHAMPIGNY"}, "geometry": {"type": "Point", "coordinates": [2.511936047825764, 48.81313554348275]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "765dbf6686e3357eb7b843f5dd352f62dbc6fbde", "fields": {"departement": "94", "stop_lat": 48.80191963408518, "code_postal": "94019", "stop_lon": 2.5397357710998154, "coord": [48.80191963408518, 2.5397357710998154], "stop_id": 3718093, "stop_desc": "22 ROUTE DE LA LIBERATION - 94019", "stop_name": "AVENUE GEORGES"}, "geometry": {"type": "Point", "coordinates": [2.5397357710998154, 48.80191963408518]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0f7ea0a2fe4da4656d059fbdac9978b4d3e40f50", "fields": {"departement": "94", "stop_lat": 48.8053443321774, "code_postal": "94019", "stop_lon": 2.554825354314781, "coord": [48.8053443321774, 2.554825354314781], "stop_id": 3718085, "stop_desc": "ROUTE DU PLESSIS TREVISE - 94019", "stop_name": "COLLEGE BOILEAU"}, "geometry": {"type": "Point", "coordinates": [2.554825354314781, 48.8053443321774]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "095098aa70be7734045428e770b3e55c9a4ed116", "fields": {"departement": "94", "stop_lat": 48.80599270326873, "code_postal": "94017", "stop_lon": 2.54915400470061, "coord": [48.80599270326873, 2.54915400470061], "stop_id": 3718098, "stop_desc": "FACE 3 RUE JACQUES SOLOMON - 94017", "stop_name": "RODIN"}, "geometry": {"type": "Point", "coordinates": [2.54915400470061, 48.80599270326873]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0d9fcff66b032896b785909220b2e431e32d2d55", "fields": {"departement": "94", "stop_lat": 48.80690979215043, "code_postal": "94017", "stop_lon": 2.5539610595023534, "coord": [48.80690979215043, 2.5539610595023534], "stop_id": 3718099, "stop_desc": "AVENUE BOILEAU - 94017", "stop_name": "HOUDON"}, "geometry": {"type": "Point", "coordinates": [2.5539610595023534, 48.80690979215043]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "568428d8e29eb103a4bd454659aea93e57bf222a", "fields": {"departement": "94", "stop_lat": 48.78993854813873, "code_postal": "94028", "stop_lon": 2.4523736723550376, "coord": [48.78993854813873, 2.4523736723550376], "stop_id": 3730094, "stop_desc": "ROUTE DE CHOISY - 94028", "stop_name": "CRETEIL - UNIVERSITE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.4523736723550376, 48.78993854813873]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ccf1527dbab5a9f05afdf1c34b559c48392f9f44", "fields": {"departement": "94", "stop_lat": 48.79336405322197, "code_postal": "94028", "stop_lon": 2.460244106822518, "coord": [48.79336405322197, 2.460244106822518], "stop_id": 3730096, "stop_desc": "FACE 7 RUE DES MECHES - 94028", "stop_name": "EGLISE DE CRETEIL"}, "geometry": {"type": "Point", "coordinates": [2.460244106822518, 48.79336405322197]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e87c98b8d0974b6f07982b92d5d0a9f624296365", "fields": {"departement": "94", "stop_lat": 48.75829818885003, "code_postal": "94073", "stop_lon": 2.393440070015161, "coord": [48.75829818885003, 2.393440070015161], "stop_id": 3730071, "stop_desc": "FACE 134 AVENUE DE VERSAILLES - 94073", "stop_name": "VICTOR BASCH"}, "geometry": {"type": "Point", "coordinates": [2.393440070015161, 48.75829818885003]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f04248084142ff29f3e8802d57fc5e015d1f4f20", "fields": {"departement": "94", "stop_lat": 48.76426039590838, "code_postal": "94022", "stop_lon": 2.4047854974824947, "coord": [48.76426039590838, 2.4047854974824947], "stop_id": 3730077, "stop_desc": "4 AVENUE GAMBETTA - 94022", "stop_name": "ROUGET DE LISLE"}, "geometry": {"type": "Point", "coordinates": [2.4047854974824947, 48.76426039590838]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "849eccdb6f3510f8e39b2963af5ca3fbd0caaa22", "fields": {"departement": "94", "stop_lat": 48.753862314195864, "code_postal": "94034", "stop_lon": 2.3393344328051553, "coord": [48.753862314195864, 2.3393344328051553], "stop_id": 3730054, "stop_desc": "AVENUE DU PARC MEDICIS - 94034", "stop_name": "PARC MEDICIS"}, "geometry": {"type": "Point", "coordinates": [2.3393344328051553, 48.753862314195864]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "319bdeee2a1d241bce4948785badfea816782d23", "fields": {"departement": "94", "stop_lat": 48.75885053303255, "code_postal": "94021", "stop_lon": 2.3445277240012836, "coord": [48.75885053303255, 2.3445277240012836], "stop_id": 3730056, "stop_desc": "BOULEVARD CIRCULAIRE OUEST - 94021", "stop_name": "LE DELTA"}, "geometry": {"type": "Point", "coordinates": [2.3445277240012836, 48.75885053303255]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "00b87360f8c62b888bd28acffcd9205cfa5082dd", "fields": {"departement": "94", "stop_lat": 48.76432242204478, "code_postal": "94022", "stop_lon": 2.406335512595289, "coord": [48.76432242204478, 2.406335512595289], "stop_id": 3730076, "stop_desc": "7 AV GAMBETTA - 94022", "stop_name": "ROUGET DE LISLE"}, "geometry": {"type": "Point", "coordinates": [2.406335512595289, 48.76432242204478]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d3db9b9c51245d8429383b2ee886ff673508b00c", "fields": {"departement": "94", "stop_lat": 48.773810015168586, "code_postal": "94028", "stop_lon": 2.4370125265769786, "coord": [48.773810015168586, 2.4370125265769786], "stop_id": 3730087, "stop_desc": "0 AV DE LA POMPADOUR - 94028", "stop_name": "POMPADOUR"}, "geometry": {"type": "Point", "coordinates": [2.4370125265769786, 48.773810015168586]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e9711f60761096704e6edd9ddd7ae546e47ee191", "fields": {"departement": "94", "stop_lat": 48.75249006646405, "code_postal": "94073", "stop_lon": 2.3752194138360245, "coord": [48.75249006646405, 2.3752194138360245], "stop_id": 3730067, "stop_desc": "5 RUE DES ALOUETTES - 94073", "stop_name": "ALOUETTES"}, "geometry": {"type": "Point", "coordinates": [2.3752194138360245, 48.75249006646405]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b36e46e51b9b9c79bae75000f669afcef89f38db", "fields": {"departement": "94", "stop_lat": 48.76175242419238, "code_postal": "94034", "stop_lon": 2.3183980808193474, "coord": [48.76175242419238, 2.3183980808193474], "stop_id": 3730366, "stop_desc": "FACE 13 AVENUE DE LA LIBERTE - 94034", "stop_name": "CARREFOUR DE LA DEPORTATION"}, "geometry": {"type": "Point", "coordinates": [2.3183980808193474, 48.76175242419238]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c2d4f7a6ce9833c9e9137020afb41405ed3b0895", "fields": {"departement": "94", "stop_lat": 48.76150972568236, "code_postal": "94034", "stop_lon": 2.318275812295107, "coord": [48.76150972568236, 2.318275812295107], "stop_id": 3730365, "stop_desc": "7 AVENUE DE LA LIBERTE - 94034", "stop_name": "CARREFOUR DE LA DEPORTATION"}, "geometry": {"type": "Point", "coordinates": [2.318275812295107, 48.76150972568236]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0ac814d196dded700f855246c8236523833778f1", "fields": {"departement": "94", "stop_lat": 48.797234127455916, "code_postal": "94028", "stop_lon": 2.4637768508323474, "coord": [48.797234127455916, 2.4637768508323474], "stop_id": 3730098, "stop_desc": "AVENUE DE VERDUN - 94028", "stop_name": "HOPITAL INTERCOMMUNAL"}, "geometry": {"type": "Point", "coordinates": [2.4637768508323474, 48.797234127455916]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "723455042c0da5662932db810d9f166788c2e872", "fields": {"departement": "94", "stop_lat": 48.755874712688076, "code_postal": "94034", "stop_lon": 2.322084106341217, "coord": [48.755874712688076, 2.322084106341217], "stop_id": 3730370, "stop_desc": "2 AVENUE DE LA REPUBLIQUE - 94034", "stop_name": "MAIRIE DE FRESNES"}, "geometry": {"type": "Point", "coordinates": [2.322084106341217, 48.755874712688076]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4118bba37405ca069a4c3de70214ce5427cb85a4", "fields": {"departement": "94", "stop_lat": 48.79788020669161, "code_postal": "94028", "stop_lon": 2.464757964645731, "coord": [48.79788020669161, 2.464757964645731], "stop_id": 3730097, "stop_desc": "AVENUE DE VERDUN - 94028", "stop_name": "HOPITAL INTERCOMMUNAL"}, "geometry": {"type": "Point", "coordinates": [2.464757964645731, 48.79788020669161]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "43961ff673044d32834b63c05ae46584573651cc", "fields": {"departement": "94", "stop_lat": 48.800506264849396, "code_postal": "94068", "stop_lon": 2.471471878071295, "coord": [48.800506264849396, 2.471471878071295], "stop_id": 3730100, "stop_desc": "86 RUE DU PONT DE CRETEIL - 94068", "stop_name": "PONT DE CRETEIL"}, "geometry": {"type": "Point", "coordinates": [2.471471878071295, 48.800506264849396]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c3957204399bebc874cb6442cfc6505444246c2a", "fields": {"departement": "92", "stop_lat": 48.81363167569627, "code_postal": "92049", "stop_lon": 2.3256327423030254, "coord": [48.81363167569627, 2.3256327423030254], "stop_id": 3730331, "stop_desc": "110 AVENUE ARISTIDE BRIAND - 92049", "stop_name": "LEON GAMBETTA"}, "geometry": {"type": "Point", "coordinates": [2.3256327423030254, 48.81363167569627]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e8abf06c2ab605202107c54f321b64be497ec23d", "fields": {"departement": "94", "stop_lat": 48.78692013218015, "code_postal": "94016", "stop_lon": 2.3295016373320308, "coord": [48.78692013218015, 2.3295016373320308], "stop_id": 3730347, "stop_desc": "AVENUE DE LA DIVISION LECLERC - 94016", "stop_name": "LA PLAINE"}, "geometry": {"type": "Point", "coordinates": [2.3295016373320308, 48.78692013218015]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "97c9edbadb5aa859830b22045a979f7bfd721ada", "fields": {"departement": "94", "stop_lat": 48.78630894084454, "code_postal": "94016", "stop_lon": 2.329324906869928, "coord": [48.78630894084454, 2.329324906869928], "stop_id": 3730348, "stop_desc": "AVENUE DE LA DIVISION LECLERC - 94016", "stop_name": "LA PLAINE"}, "geometry": {"type": "Point", "coordinates": [2.329324906869928, 48.78630894084454]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "763d5c54b2cc3b0a050c3f3594940bc24f82ff46", "fields": {"departement": "94", "stop_lat": 48.79666312097104, "code_postal": "94016", "stop_lon": 2.331336774255205, "coord": [48.79666312097104, 2.331336774255205], "stop_id": 3730341, "stop_desc": "RUE GALLIENI - 94016", "stop_name": "WILSON - PROVIGNY"}, "geometry": {"type": "Point", "coordinates": [2.331336774255205, 48.79666312097104]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8e63c1c8e873b4da4bac59e894ca6e755ff7a005", "fields": {"departement": "94", "stop_lat": 48.772395787216, "code_postal": "94021", "stop_lon": 2.3389680290446595, "coord": [48.772395787216, 2.3389680290446595], "stop_id": 3730687, "stop_desc": "40 BOULEVARD JEAN MERMOZ - 94021", "stop_name": "JEAN MERMOZ - GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.3389680290446595, 48.772395787216]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "915200bcc486abe04f71515ff3f4a3f7de5ad5b6", "fields": {"departement": "94", "stop_lat": 48.78337654018026, "code_postal": "94076", "stop_lon": 2.3620899204722337, "coord": [48.78337654018026, 2.3620899204722337], "stop_id": 3730678, "stop_desc": "FACE 75 RUE AUGUSTE DELAUNE - 94076", "stop_name": "PLACE AUGUSTE DELAUNE"}, "geometry": {"type": "Point", "coordinates": [2.3620899204722337, 48.78337654018026]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b2387117f515acc3d0367ea119e95c15bdd56738", "fields": {"departement": "94", "stop_lat": 48.76391093626095, "code_postal": "94034", "stop_lon": 2.3317347812397253, "coord": [48.76391093626095, 2.3317347812397253], "stop_id": 3730690, "stop_desc": "FACE 94-96 RUE DE LA PAIX - 94034", "stop_name": "STADE DE LA PAIX"}, "geometry": {"type": "Point", "coordinates": [2.3317347812397253, 48.76391093626095]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f9ee2f9da120136f622f636e3575d8a071a89655", "fields": {"departement": "94", "stop_lat": 48.774695416585395, "code_postal": "94021", "stop_lon": 2.3549600895228378, "coord": [48.774695416585395, 2.3549600895228378], "stop_id": 3730675, "stop_desc": "FACE 25 RUE PAUL HOCHART - 94021", "stop_name": "RUE DE LALLIER"}, "geometry": {"type": "Point", "coordinates": [2.3549600895228378, 48.774695416585395]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "33b991d314b39871e5b7d195e7bc155e0a2586f7", "fields": {"departement": "94", "stop_lat": 48.76106133960879, "code_postal": "94034", "stop_lon": 2.326405820962682, "coord": [48.76106133960879, 2.326405820962682], "stop_id": 3730672, "stop_desc": "FACE 39 RUE EMILE ZOLA - 94034", "stop_name": "CHARCOT - ZOLA"}, "geometry": {"type": "Point", "coordinates": [2.326405820962682, 48.76106133960879]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4363633c7979a7fe33cc09e4ba615f816e36ec56", "fields": {"departement": "92", "stop_lat": 48.75549283519391, "code_postal": "92002", "stop_lon": 2.3016122529062426, "coord": [48.75549283519391, 2.3016122529062426], "stop_id": 3730668, "stop_desc": "FACE 26-28 RUE VELPEAU - 92002", "stop_name": "ANTONY RER"}, "geometry": {"type": "Point", "coordinates": [2.3016122529062426, 48.75549283519391]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2ebf6ba4ca71a8ee4862880824b5366d56e8a957", "fields": {"departement": "93", "stop_lat": 48.89034203592814, "code_postal": "93055", "stop_lon": 2.3994027803784967, "coord": [48.89034203592814, 2.3994027803784967], "stop_id": 3731628, "stop_desc": "30 AV JEAN LOLIVE - 93055", "stop_name": "PETITS PONTS"}, "geometry": {"type": "Point", "coordinates": [2.3994027803784967, 48.89034203592814]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "989f2040d00bfb41dd807a182cbca5ecd15e90ea", "fields": {"departement": "94", "stop_lat": 48.7807882194003, "code_postal": "94076", "stop_lon": 2.361041465726019, "coord": [48.7807882194003, 2.361041465726019], "stop_id": 3730679, "stop_desc": "22 RUE SAINTE-COLOMBE - 94076", "stop_name": "LAMARTINE"}, "geometry": {"type": "Point", "coordinates": [2.361041465726019, 48.7807882194003]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "426d84a86d1cf266d0502997f7011bf6b363a64a", "fields": {"departement": "93", "stop_lat": 48.9074650418741, "code_postal": "93008", "stop_lon": 2.424113548237613, "coord": [48.9074650418741, 2.424113548237613], "stop_id": 3708501, "stop_desc": "AVENUE DE LA DIVISION LECLERC - 93008", "stop_name": "REPUBLIQUE - DIVISION LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.424113548237613, 48.9074650418741]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5b3ccc909609271c45754ca30dba83db28da5d79", "fields": {"departement": "93", "stop_lat": 48.905486896676855, "code_postal": "93008", "stop_lon": 2.4651318210827156, "coord": [48.905486896676855, 2.4651318210827156], "stop_id": 3708515, "stop_desc": "412 AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "RUE DES PEUPLIERS"}, "geometry": {"type": "Point", "coordinates": [2.4651318210827156, 48.905486896676855]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7497d4d5a02a227a50d7101f14cb82781a1586ec", "fields": {"departement": "93", "stop_lat": 48.90691264968876, "code_postal": "93008", "stop_lon": 2.4296750229551916, "coord": [48.90691264968876, 2.4296750229551916], "stop_id": 3708502, "stop_desc": "FACE 140 RUE DE LA REPUBLIQUE - 93008", "stop_name": "LYCEE ANDRE SABATIER"}, "geometry": {"type": "Point", "coordinates": [2.4296750229551916, 48.90691264968876]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9329a3925a7c4075a41ade2fc2be4220071cde10", "fields": {"departement": "93", "stop_lat": 48.90569029404579, "code_postal": "93008", "stop_lon": 2.459720013319434, "coord": [48.90569029404579, 2.459720013319434], "stop_id": 3708514, "stop_desc": "AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "CITE ADMINISTRATIVE"}, "geometry": {"type": "Point", "coordinates": [2.459720013319434, 48.90569029404579]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "36910ce6109c1c08f6244128a5fb4096dcb3a4ae", "fields": {"departement": "93", "stop_lat": 48.912236663887136, "code_postal": "93010", "stop_lon": 2.4805148428665595, "coord": [48.912236663887136, 2.4805148428665595], "stop_id": 3708476, "stop_desc": "AVENUE JEAN MOULIN - 93010", "stop_name": "ROUTE D'AULNAY - JEAN MOULIN"}, "geometry": {"type": "Point", "coordinates": [2.4805148428665595, 48.912236663887136]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "25715e1a19a27e5ac51dd79860cf7b8b74dc3179", "fields": {"departement": "93", "stop_lat": 48.906577135972725, "code_postal": "93008", "stop_lon": 2.4440166024805547, "coord": [48.906577135972725, 2.4440166024805547], "stop_id": 3708508, "stop_desc": "BOULEVARD LENINE - 93008", "stop_name": "HOTEL DE VILLE DE BOBIGNY"}, "geometry": {"type": "Point", "coordinates": [2.4440166024805547, 48.906577135972725]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a08708620d794209589251e6de24ccaf9351a1ac", "fields": {"departement": "93", "stop_lat": 48.90650920647477, "code_postal": "93008", "stop_lon": 2.439490229390998, "coord": [48.90650920647477, 2.439490229390998], "stop_id": 3708507, "stop_desc": "BOULEVARD LENINE - 93008", "stop_name": "CONSERVATOIRE JEAN WIENER"}, "geometry": {"type": "Point", "coordinates": [2.439490229390998, 48.90650920647477]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ec7c922c38434683cec64fa810c75c24bac6f954", "fields": {"departement": "93", "stop_lat": 48.90949244703692, "code_postal": "93008", "stop_lon": 2.4676094660723726, "coord": [48.90949244703692, 2.4676094660723726], "stop_id": 3708520, "stop_desc": "60 AVENUE EDOUARD VAILLANT - 93008", "stop_name": "AVENUE MARCELLE"}, "geometry": {"type": "Point", "coordinates": [2.4676094660723726, 48.90949244703692]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "060d7ee7af7e56b1f1150da5c34aabcfcd862986", "fields": {"departement": "93", "stop_lat": 48.91398933649287, "code_postal": "93055", "stop_lon": 2.4112255921185435, "coord": [48.91398933649287, 2.4112255921185435], "stop_id": 3708495, "stop_desc": "15 AV DES COURTILLIERES - 93055", "stop_name": "PLACE DU MARCHE"}, "geometry": {"type": "Point", "coordinates": [2.4112255921185435, 48.91398933649287]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b9b5ee3bc372b21b8fdb61c136519fd39bb7c349", "fields": {"departement": "93", "stop_lat": 48.910725212870034, "code_postal": "93008", "stop_lon": 2.4742524960527454, "coord": [48.910725212870034, 2.4742524960527454], "stop_id": 3708485, "stop_desc": "CHEMIN DE GROSLAY - 93008", "stop_name": "ETIENNE DOLET"}, "geometry": {"type": "Point", "coordinates": [2.4742524960527454, 48.910725212870034]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6f77f4f00ea44259111e99de3bc60eb3be19fb6a", "fields": {"departement": "93", "stop_lat": 48.91057947427579, "code_postal": "93008", "stop_lon": 2.46798032754968, "coord": [48.91057947427579, 2.46798032754968], "stop_id": 3708535, "stop_desc": "17 RUE DE ROME - 93008", "stop_name": "ROBESPIERRE - EDOUARD VAILLANT"}, "geometry": {"type": "Point", "coordinates": [2.46798032754968, 48.91057947427579]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aff93ee33f1b07b77580da3aa1b711f90eb2088c", "fields": {"departement": "93", "stop_lat": 48.864094860889765, "code_postal": "93050", "stop_lon": 2.5351154453058484, "coord": [48.864094860889765, 2.5351154453058484], "stop_id": 3716666, "stop_desc": "80 AVENUE DU 8 MAI 1945 - 93050", "stop_name": "PLACE DES VICTOIRES"}, "geometry": {"type": "Point", "coordinates": [2.5351154453058484, 48.864094860889765]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "11449d88624192706a1396060631439acf2aaec7", "fields": {"departement": "93", "stop_lat": 48.86932276095398, "code_postal": "93050", "stop_lon": 2.5367702131902, "coord": [48.86932276095398, 2.5367702131902], "stop_id": 3716669, "stop_desc": "4 AVENUE WINSTON CHURCHILL - 93050", "stop_name": "RUE DES POMMIERS"}, "geometry": {"type": "Point", "coordinates": [2.5367702131902, 48.86932276095398]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e41ff3ffc42c2990019515d1cbfbae1478b1b882", "fields": {"departement": "93", "stop_lat": 48.910391118821, "code_postal": "93010", "stop_lon": 2.475615038862434, "coord": [48.910391118821, 2.475615038862434], "stop_id": 3708524, "stop_desc": "RUE JEAN JACQUES ROUSSEAU - 93010", "stop_name": "ETIENNE DOLET"}, "geometry": {"type": "Point", "coordinates": [2.475615038862434, 48.910391118821]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "90e40504f2a5c053ae8d5733018a6eb9d217e2ef", "fields": {"departement": "93", "stop_lat": 48.90958817039284, "code_postal": "93008", "stop_lon": 2.4704455892437647, "coord": [48.90958817039284, 2.4704455892437647], "stop_id": 3708523, "stop_desc": "RUE DE VARSOVIE - 93008", "stop_name": "PLACE DE L'EUROPE"}, "geometry": {"type": "Point", "coordinates": [2.4704455892437647, 48.90958817039284]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a1e960aafc737cee5635db0ee82031197a98a5a9", "fields": {"departement": "93", "stop_lat": 48.91332218067506, "code_postal": "93010", "stop_lon": 2.4820995089248123, "coord": [48.91332218067506, 2.4820995089248123], "stop_id": 3708528, "stop_desc": "AV HENRI VARAGNAT - 93010", "stop_name": "SUZANNE BUISSON"}, "geometry": {"type": "Point", "coordinates": [2.4820995089248123, 48.91332218067506]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ec3c0a5681e01dac7faeb100ad488242e4ea48ef", "fields": {"departement": "93", "stop_lat": 48.910341920328406, "code_postal": "93010", "stop_lon": 2.479241618110349, "coord": [48.910341920328406, 2.479241618110349], "stop_id": 3708533, "stop_desc": "FACE 5 RUE PAUL RENAUD - 93010", "stop_name": "PAUL RENAUD"}, "geometry": {"type": "Point", "coordinates": [2.479241618110349, 48.910341920328406]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f0ed0dce1bdd40ba003ba1f3b58b35efa936c22c", "fields": {"departement": "75", "stop_lat": 48.82167554717177, "code_postal": "75114", "stop_lon": 2.3243379025237925, "coord": [48.82167554717177, 2.3243379025237925], "stop_id": 3730327, "stop_desc": "SQUARE DU SERMENT DE KOUFRA - 75114", "stop_name": "PORTE D'ORLEANS - METRO"}, "geometry": {"type": "Point", "coordinates": [2.3243379025237925, 48.82167554717177]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f53a8cc65fa73864deea18b874bd05933cc967f3", "fields": {"departement": "94", "stop_lat": 48.79456906298838, "code_postal": "94016", "stop_lon": 2.334547516787906, "coord": [48.79456906298838, 2.334547516787906], "stop_id": 3730343, "stop_desc": "FACE 3-5 RUE CAMILLE DESMOULINS - 94016", "stop_name": "MAIRIE DE CACHAN"}, "geometry": {"type": "Point", "coordinates": [2.334547516787906, 48.79456906298838]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f08f794c97cb4028d732f440653061a1aeb630d9", "fields": {"departement": "94", "stop_lat": 48.799691406622465, "code_postal": "94016", "stop_lon": 2.3237311377862166, "coord": [48.799691406622465, 2.3237311377862166], "stop_id": 3730337, "stop_desc": "73-75 AVENUE CARNOT - 94016", "stop_name": "CARNOT - ARISTIDE BRIAND"}, "geometry": {"type": "Point", "coordinates": [2.3237311377862166, 48.799691406622465]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "900b4f4bafcd830f4e409de77d8bc4073617936c", "fields": {"departement": "94", "stop_lat": 48.79403877145943, "code_postal": "94016", "stop_lon": 2.3342754705788455, "coord": [48.79403877145943, 2.3342754705788455], "stop_id": 3730344, "stop_desc": "9 RUE CAMILLE DESMOULINS - 94016", "stop_name": "MAIRIE DE CACHAN"}, "geometry": {"type": "Point", "coordinates": [2.3342754705788455, 48.79403877145943]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "026bd94346ba593b47910ddf8fefe42c22d3e8b7", "fields": {"departement": "94", "stop_lat": 48.78308215763365, "code_postal": "94038", "stop_lon": 2.32782930893504, "coord": [48.78308215763365, 2.32782930893504], "stop_id": 3730349, "stop_desc": "31 AVENUE DE LA DIVISION LECLERC - 94038", "stop_name": "STRASBOURG"}, "geometry": {"type": "Point", "coordinates": [2.32782930893504, 48.78308215763365]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b03244c23b6fc5ad5c70b2b06d74dc2356d7f690", "fields": {"departement": "94", "stop_lat": 48.80614050910976, "code_postal": "94068", "stop_lon": 2.472466139678621, "coord": [48.80614050910976, 2.472466139678621], "stop_id": 3730101, "stop_desc": "R LEROUX - 94068", "stop_name": "SAINT-MAUR - CRETEIL RER"}, "geometry": {"type": "Point", "coordinates": [2.472466139678621, 48.80614050910976]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "65eb2caeb54c6d18b254fba6826dbec4e3a52d74", "fields": {"departement": "94", "stop_lat": 48.797786452797745, "code_postal": "94016", "stop_lon": 2.328833386377222, "coord": [48.797786452797745, 2.328833386377222], "stop_id": 3730340, "stop_desc": "28 AVENUE CARNOT - 94016", "stop_name": "ARCUEIL-CACHAN RER"}, "geometry": {"type": "Point", "coordinates": [2.328833386377222, 48.797786452797745]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5956a0b56f382a7fcd9572ba62016ec252cb9a20", "fields": {"departement": "92", "stop_lat": 48.81817044569001, "code_postal": "92049", "stop_lon": 2.3253050858161446, "coord": [48.81817044569001, 2.3253050858161446], "stop_id": 3730329, "stop_desc": "52 AVENUE ARISTIDE BRIAND - 92049", "stop_name": "GABRIEL PERI"}, "geometry": {"type": "Point", "coordinates": [2.3253050858161446, 48.81817044569001]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "62a73fc7aa0530d331fcd551738f96ad95683160", "fields": {"departement": "92", "stop_lat": 48.80103955903768, "code_postal": "92007", "stop_lon": 2.3235267038195793, "coord": [48.80103955903768, 2.3235267038195793], "stop_id": 3730336, "stop_desc": "FACE 1 AVENUE ARISTIDE BRIAND - 92007", "stop_name": "GRANGE ORY"}, "geometry": {"type": "Point", "coordinates": [2.3235267038195793, 48.80103955903768]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "291175863ee44fc7c63482bb4cb64fc37ed86ee7", "fields": {"departement": "94", "stop_lat": 48.82184523642489, "code_postal": "94069", "stop_lon": 2.4199686200390875, "coord": [48.82184523642489, 2.4199686200390875], "stop_id": 3716952, "stop_desc": "50 AVENUE DU MARECHAL DE LATTRE DE TASSIGNY - 94069", "stop_name": "EDMOND NOCARD"}, "geometry": {"type": "Point", "coordinates": [2.4199686200390875, 48.82184523642489]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2858d8289ca2578cf47ea3f2ceaffeaae6cc0be5", "fields": {"departement": "75", "stop_lat": 48.828144659099536, "code_postal": "75112", "stop_lon": 2.390017246298964, "coord": [48.828144659099536, 2.390017246298964], "stop_id": 3716959, "stop_desc": "RUE ROBERT ETLIN - 75112", "stop_name": "PONT NATIONAL - QUAI DE BERCY"}, "geometry": {"type": "Point", "coordinates": [2.390017246298964, 48.828144659099536]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "38e1b5282cc2d6b53269253b69cb9667b8942fe3", "fields": {"departement": "75", "stop_lat": 48.85258403108319, "code_postal": "75105", "stop_lon": 2.348000108567692, "coord": [48.85258403108319, 2.348000108567692], "stop_id": 3716973, "stop_desc": "QUAI DE MONTEBELLO - 75105", "stop_name": "NOTRE-DAME - QUAI DE MONTEBELLO"}, "geometry": {"type": "Point", "coordinates": [2.348000108567692, 48.85258403108319]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "954cb05f8976e912b37bf2b9a3aeb89346fa077a", "fields": {"departement": "75", "stop_lat": 48.85990896102511, "code_postal": "75107", "stop_lon": 2.328591744841365, "coord": [48.85990896102511, 2.328591744841365], "stop_id": 3716939, "stop_desc": "QUAI ANATOLE FRANCE - 75107", "stop_name": "PONT ROYAL - QUAI VOLTAIRE"}, "geometry": {"type": "Point", "coordinates": [2.328591744841365, 48.85990896102511]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d7c8ef7e03db40d73339f65b96606f753a6b30dc", "fields": {"departement": "75", "stop_lat": 48.86254136918029, "code_postal": "75107", "stop_lon": 2.320241226896711, "coord": [48.86254136918029, 2.320241226896711], "stop_id": 3716941, "stop_desc": "FACE 27 QUAI ANATOLE FRANCE - 75107", "stop_name": "ASSEMBLEE NATIONALE"}, "geometry": {"type": "Point", "coordinates": [2.320241226896711, 48.86254136918029]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "45401b6482f517153b9e7058425cdd730a07230b", "fields": {"departement": "75", "stop_lat": 48.85415714947943, "code_postal": "75106", "stop_lon": 2.343642207604387, "coord": [48.85415714947943, 2.343642207604387], "stop_id": 3716935, "stop_desc": "FACE 15-17 QUAI DES GRANDS AUGUSTINS - 75106", "stop_name": "SAINT-MICHEL"}, "geometry": {"type": "Point", "coordinates": [2.343642207604387, 48.85415714947943]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b0b85f5689da3720c52b4a8a92511b4d92f422ad", "fields": {"departement": "75", "stop_lat": 48.849014689133234, "code_postal": "75105", "stop_lon": 2.357954206837178, "coord": [48.849014689133234, 2.357954206837178], "stop_id": 3716930, "stop_desc": "QUAI SAINT BERNARD - 75105", "stop_name": "UNIVERSITE PARIS VI"}, "geometry": {"type": "Point", "coordinates": [2.357954206837178, 48.849014689133234]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b6111268af7ffdebb4aae9003a58718b6f986327", "fields": {"departement": "75", "stop_lat": 48.87543870387126, "code_postal": "75108", "stop_lon": 2.324188259311247, "coord": [48.87543870387126, 2.324188259311247], "stop_id": 3716945, "stop_desc": "FACE 11 RUE DE ROME - 75108", "stop_name": "GARE SAINT-LAZARE"}, "geometry": {"type": "Point", "coordinates": [2.324188259311247, 48.87543870387126]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "605f2f30136e643717e15fed1415119d33321fe0", "fields": {"departement": "75", "stop_lat": 48.84489707858878, "code_postal": "75105", "stop_lon": 2.3645704396042673, "coord": [48.84489707858878, 2.3645704396042673], "stop_id": 3716968, "stop_desc": "PL VALHUBERT - 75105", "stop_name": "GARE D'AUSTERLITZ"}, "geometry": {"type": "Point", "coordinates": [2.3645704396042673, 48.84489707858878]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1d74c5c130c2246405a5816f1318950fdd1491b2", "fields": {"departement": "75", "stop_lat": 48.84698295134104, "code_postal": "75105", "stop_lon": 2.360976497921474, "coord": [48.84698295134104, 2.360976497921474], "stop_id": 3716929, "stop_desc": "FACE 5 QUAI SAINT BERNARD - 75105", "stop_name": "CUVIER"}, "geometry": {"type": "Point", "coordinates": [2.360976497921474, 48.84698295134104]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a97d35cbc11e6d528e8a1ada1a1bfc96ec099fa8", "fields": {"departement": "94", "stop_lat": 48.759308422307306, "code_postal": "94034", "stop_lon": 2.3240951048739342, "coord": [48.759308422307306, 2.3240951048739342], "stop_id": 3730048, "stop_desc": "FACE 50 AVENUE DE LA DIVISION LECLERC - 94034", "stop_name": "LE PETIT FRESNES"}, "geometry": {"type": "Point", "coordinates": [2.3240951048739342, 48.759308422307306]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bdd9f1976c8b18a918e6bb858b7e3058b82c3766", "fields": {"departement": "94", "stop_lat": 48.75654794721687, "code_postal": "94073", "stop_lon": 2.3880006253863586, "coord": [48.75654794721687, 2.3880006253863586], "stop_id": 3730069, "stop_desc": "AVENUE DE VERSAILLES - 94073", "stop_name": "CARREFOUR DE LA RESISTANCE"}, "geometry": {"type": "Point", "coordinates": [2.3880006253863586, 48.75654794721687]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f2efff15e92cb9d7bf65fa37b003d619635c6c10", "fields": {"departement": "94", "stop_lat": 48.75919137810716, "code_postal": "94034", "stop_lon": 2.3224094079317776, "coord": [48.75919137810716, 2.3224094079317776], "stop_id": 3730047, "stop_desc": "50 AVENUE DE LA DIVISION LECLERC - 94034", "stop_name": "LE PETIT FRESNES"}, "geometry": {"type": "Point", "coordinates": [2.3224094079317776, 48.75919137810716]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bfc8cefea2fa4aabddd8d9895c459b8429292e0c", "fields": {"departement": "94", "stop_lat": 48.75995880829257, "code_postal": "94073", "stop_lon": 2.397887356547976, "coord": [48.75995880829257, 2.397887356547976], "stop_id": 3730074, "stop_desc": "86 AVENUE DE VERSAILLES - 94073", "stop_name": "GEORGES HALGOULT"}, "geometry": {"type": "Point", "coordinates": [2.397887356547976, 48.75995880829257]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "75b71f147043061968e250754b7d051452a95911", "fields": {"departement": "94", "stop_lat": 48.7608206316157, "code_postal": "94073", "stop_lon": 2.399886827106586, "coord": [48.7608206316157, 2.399886827106586], "stop_id": 3730073, "stop_desc": "FACE 18 AVENUE GEORGES HALGOULT - 94073", "stop_name": "GEORGES HALGOULT"}, "geometry": {"type": "Point", "coordinates": [2.399886827106586, 48.7608206316157]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ff72cbc9ef72b6a0b3e5438c81095c422195ac39", "fields": {"departement": "94", "stop_lat": 48.759448634048056, "code_postal": "94073", "stop_lon": 2.3693244252130907, "coord": [48.759448634048056, 2.3693244252130907], "stop_id": 3730064, "stop_desc": "ROUTE DE THIAIS - 94073", "stop_name": "LE COR DE CHASSE"}, "geometry": {"type": "Point", "coordinates": [2.3693244252130907, 48.759448634048056]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ecac053f3de0d3a529876101cf0251f29ce3aaef", "fields": {"departement": "94", "stop_lat": 48.759205921508666, "code_postal": "94073", "stop_lon": 2.3694466265799434, "coord": [48.759205921508666, 2.3694466265799434], "stop_id": 3730063, "stop_desc": "RUE DE THIAIS - 94073", "stop_name": "LE COR DE CHASSE"}, "geometry": {"type": "Point", "coordinates": [2.3694466265799434, 48.759205921508666]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "67c956cc207c772c21e31c9b44fe19bfeb66bf95", "fields": {"departement": "94", "stop_lat": 48.75274176572396, "code_postal": "94073", "stop_lon": 2.3751244475256206, "coord": [48.75274176572396, 2.3751244475256206], "stop_id": 3730068, "stop_desc": "FACE 5 RUE DES ALOUETTES - 94073", "stop_name": "ALOUETTES"}, "geometry": {"type": "Point", "coordinates": [2.3751244475256206, 48.75274176572396]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a0e678b4ed540f8cac91e58a9b9b294411399656", "fields": {"departement": "94", "stop_lat": 48.75869772890926, "code_postal": "94021", "stop_lon": 2.34462286368641, "coord": [48.75869772890926, 2.34462286368641], "stop_id": 3730055, "stop_desc": "BOULEVARD CIRCULAIRE OUEST - 94021", "stop_name": "LE DELTA"}, "geometry": {"type": "Point", "coordinates": [2.34462286368641, 48.75869772890926]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a1ce0ac96d30d132da638d013c7f586963e97916", "fields": {"departement": "94", "stop_lat": 48.81504970329177, "code_postal": "94046", "stop_lon": 2.421141792054011, "coord": [48.81504970329177, 2.421141792054011], "stop_id": 3716908, "stop_desc": "FACE 7 AVENUE DU GENERAL LECLERC - 94046", "stop_name": "ECOLE VETERINAIRE DE MAISONS-ALFORT"}, "geometry": {"type": "Point", "coordinates": [2.421141792054011, 48.81504970329177]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6e1bcc7d806e980b436ef688495a043dfb951267", "fields": {"departement": "94", "stop_lat": 48.82184523642489, "code_postal": "94069", "stop_lon": 2.4199686200390875, "coord": [48.82184523642489, 2.4199686200390875], "stop_id": 3716912, "stop_desc": "50 AVENUE DU MARECHAL DE LATTRE DE TASSIGNY - 94069", "stop_name": "EDMOND NOCARD"}, "geometry": {"type": "Point", "coordinates": [2.4199686200390875, 48.82184523642489]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d6acf62d3987e75e61d1b016b3a6250a9a097dc9", "fields": {"departement": "75", "stop_lat": 48.85861502191514, "code_postal": "75101", "stop_lon": 2.3412319053226995, "coord": [48.85861502191514, 2.3412319053226995], "stop_id": 3716883, "stop_desc": "FACE 16 QUAI DU LOUVRE - 75101", "stop_name": "PONT NEUF - QUAI DU LOUVRE"}, "geometry": {"type": "Point", "coordinates": [2.3412319053226995, 48.85861502191514]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e48e5985a24c48a4c99afdfe4bb3262620e7070f", "fields": {"departement": "75", "stop_lat": 48.86378171049178, "code_postal": "75101", "stop_lon": 2.32082656543925, "coord": [48.86378171049178, 2.32082656543925], "stop_id": 3716878, "stop_desc": "QUAI DES TUILERIES - 75101", "stop_name": "CONCORDE - QUAI DES TUILERIES"}, "geometry": {"type": "Point", "coordinates": [2.32082656543925, 48.86378171049178]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d8592a9621f19ab0927bb692718b72d936f477ec", "fields": {"departement": "75", "stop_lat": 48.859873277650976, "code_postal": "75101", "stop_lon": 2.333849441440465, "coord": [48.859873277650976, 2.333849441440465], "stop_id": 3716881, "stop_desc": "QUAI FRANCOIS MITTERRAND - 75101", "stop_name": "QUAI FRANCOIS MITTERRAND"}, "geometry": {"type": "Point", "coordinates": [2.333849441440465, 48.859873277650976]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a028611b1715f7fb9a5b7a7a8e7741e99d00a907", "fields": {"departement": "94", "stop_lat": 48.820687922124755, "code_postal": "94018", "stop_lon": 2.4020823389153256, "coord": [48.820687922124755, 2.4020823389153256], "stop_id": 3716903, "stop_desc": "QUAI DES CARRIERES - 94018", "stop_name": "PONT NELSON MANDELA"}, "geometry": {"type": "Point", "coordinates": [2.4020823389153256, 48.820687922124755]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "662a883c4349c4ae9b2a90496e30cd8ec95201aa", "fields": {"departement": "75", "stop_lat": 48.84870011990761, "code_postal": "75105", "stop_lon": 2.3579949353796334, "coord": [48.84870011990761, 2.3579949353796334], "stop_id": 3716890, "stop_desc": "11 QU SAINT-BERNARD - 75105", "stop_name": "UNIVERSITE PARIS VI"}, "geometry": {"type": "Point", "coordinates": [2.3579949353796334, 48.84870011990761]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9b861c6ba8b4d5d82c6eb82b54c5d74c7ebdd358", "fields": {"departement": "75", "stop_lat": 48.84489707858878, "code_postal": "75105", "stop_lon": 2.3645704396042673, "coord": [48.84489707858878, 2.3645704396042673], "stop_id": 3716928, "stop_desc": "PL VALHUBERT - 75105", "stop_name": "GARE D'AUSTERLITZ"}, "geometry": {"type": "Point", "coordinates": [2.3645704396042673, 48.84489707858878]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "629a140e45ce4635ef562f7e826255b9630371fd", "fields": {"departement": "94", "stop_lat": 48.81815136070248, "code_postal": "94069", "stop_lon": 2.4198674632527934, "coord": [48.81815136070248, 2.4198674632527934], "stop_id": 3716911, "stop_desc": "2 RUE DU PONT - 94069", "stop_name": "PONT DE CHARENTON"}, "geometry": {"type": "Point", "coordinates": [2.4198674632527934, 48.81815136070248]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7bdb7ca878c5027956a15a330ee67d975798d396", "fields": {"departement": "75", "stop_lat": 48.86696330378451, "code_postal": "75108", "stop_lon": 2.3213023563461532, "coord": [48.86696330378451, 2.3213023563461532], "stop_id": 3716877, "stop_desc": "6 PLACE DE LA CONCORDE - 75108", "stop_name": "CONCORDE"}, "geometry": {"type": "Point", "coordinates": [2.3213023563461532, 48.86696330378451]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "825f6545acf152c0b5d244ec9bb122ecc05b55fa", "fields": {"departement": "94", "stop_lat": 48.805390890678495, "code_postal": "94059", "stop_lon": 2.5728544572704126, "coord": [48.805390890678495, 2.5728544572704126], "stop_id": 3718041, "stop_desc": "4-6 AVENUE SAINT PIERRE - 94059", "stop_name": "COLLEGE ALBERT CAMUS - ZA PONROY"}, "geometry": {"type": "Point", "coordinates": [2.5728544572704126, 48.805390890678495]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cf49f07a4e686070a57b534a1a5f899f13743f20", "fields": {"departement": "94", "stop_lat": 48.81248980165499, "code_postal": "94017", "stop_lon": 2.51099488416213, "coord": [48.81248980165499, 2.51099488416213], "stop_id": 3718030, "stop_desc": "4 BIS RUE ALBERT THOMAS - 94017", "stop_name": "MARCHE DE CHAMPIGNY-SUR-MARNE"}, "geometry": {"type": "Point", "coordinates": [2.51099488416213, 48.81248980165499]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a6de7c5a2bbc917512f47fea5047b691d452d862", "fields": {"departement": "94", "stop_lat": 48.8104575894782, "code_postal": "94017", "stop_lon": 2.5452258975293547, "coord": [48.8104575894782, 2.5452258975293547], "stop_id": 3718008, "stop_desc": "FACE 13 R DE L'ABREUVOIR - 94017", "stop_name": "ROND-POINT DU CHATEAU"}, "geometry": {"type": "Point", "coordinates": [2.5452258975293547, 48.8104575894782]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "88db277e6b06c2f05ed883b5b2c17f63511f5040", "fields": {"departement": "94", "stop_lat": 48.81022006804893, "code_postal": "94017", "stop_lon": 2.5422584065375267, "coord": [48.81022006804893, 2.5422584065375267], "stop_id": 3718011, "stop_desc": "FACE 55 R DU BOIS L'ABBE - 94017", "stop_name": "COLOMBE - HARDELET"}, "geometry": {"type": "Point", "coordinates": [2.5422584065375267, 48.81022006804893]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6fd0f2b60d609ee4c227f2430fd3e817e22ec43e", "fields": {"departement": "94", "stop_lat": 48.80906834632684, "code_postal": "94017", "stop_lon": 2.537736110172869, "coord": [48.80906834632684, 2.537736110172869], "stop_id": 3718016, "stop_desc": "FACE 8 AVENUE DU 11 NOVEMBRE 1918 - 94017", "stop_name": "LES MORDACS"}, "geometry": {"type": "Point", "coordinates": [2.537736110172869, 48.80906834632684]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e2287b20ad7f0d4e26a0626fcc54b7d992ad827f", "fields": {"departement": "94", "stop_lat": 48.80618275823874, "code_postal": "94059", "stop_lon": 2.5813079588492873, "coord": [48.80618275823874, 2.5813079588492873], "stop_id": 3718037, "stop_desc": "FACE 76 AVENUE JEAN KIFFER - 94059", "stop_name": "AVENUE BERTRAND"}, "geometry": {"type": "Point", "coordinates": [2.5813079588492873, 48.80618275823874]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "09a595573b8440c8e99813ef7fb33bdbc921e013", "fields": {"departement": "94", "stop_lat": 48.811254036529974, "code_postal": "94017", "stop_lon": 2.536751149327536, "coord": [48.811254036529974, 2.536751149327536], "stop_id": 3718015, "stop_desc": "22 AVENUE DU 11 NOVEMBRE 1918 - 94017", "stop_name": "11 NOVEMBRE 1918"}, "geometry": {"type": "Point", "coordinates": [2.536751149327536, 48.811254036529974]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cdb9fa25ba970a4f5de4f7472056fd82f323ef2d", "fields": {"departement": "94", "stop_lat": 48.81129225052951, "code_postal": "94017", "stop_lon": 2.5559253363655947, "coord": [48.81129225052951, 2.5559253363655947], "stop_id": 3718004, "stop_desc": "FACE 78 RUE DU PLESSIS TREVISE - 94017", "stop_name": "PAUL VENZAC"}, "geometry": {"type": "Point", "coordinates": [2.5559253363655947, 48.81129225052951]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1d14c552fc6a3ce3c08134ac07ca6649bc939cea", "fields": {"departement": "94", "stop_lat": 48.80633566166769, "code_postal": "94059", "stop_lon": 2.581254249718296, "coord": [48.80633566166769, 2.581254249718296], "stop_id": 3718036, "stop_desc": "73 AVENUE JEAN KIFFER - 94059", "stop_name": "AVENUE BERTRAND"}, "geometry": {"type": "Point", "coordinates": [2.581254249718296, 48.80633566166769]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "129ba13f9396b2fb1389def63bd9aac77b33a777", "fields": {"departement": "94", "stop_lat": 48.81079518388607, "code_postal": "94017", "stop_lon": 2.5202699488603515, "coord": [48.81079518388607, 2.5202699488603515], "stop_id": 3718022, "stop_desc": "FACE 30 AVENUE MARX DORMOY - 94017", "stop_name": "MARTELET"}, "geometry": {"type": "Point", "coordinates": [2.5202699488603515, 48.81079518388607]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "db91d378da0ef616baeb1ed6271b21afff6a078c", "fields": {"departement": "94", "stop_lat": 48.818150375922244, "code_postal": "94069", "stop_lon": 2.4331644510330075, "coord": [48.818150375922244, 2.4331644510330075], "stop_id": 3724098, "stop_desc": "69 RUE DU MARECHAL LECLERC - 94069", "stop_name": "PASSERELLE DE SAINT-MAURICE"}, "geometry": {"type": "Point", "coordinates": [2.4331644510330075, 48.818150375922244]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eb93fefb11da807ae57240e1adc6cdd01bed80a0", "fields": {"departement": "94", "stop_lat": 48.81804240272417, "code_postal": "94069", "stop_lon": 2.4333139614357617, "coord": [48.81804240272417, 2.4333139614357617], "stop_id": 3724097, "stop_desc": "44 RUE DU MARECHAL LECLERC - 94069", "stop_name": "PASSERELLE DE SAINT-MAURICE"}, "geometry": {"type": "Point", "coordinates": [2.4333139614357617, 48.81804240272417]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "63c9b80162bddd6eec03554be5de54b1cb968397", "fields": {"departement": "92", "stop_lat": 48.76282769645992, "code_postal": "92002", "stop_lon": 2.303483404063952, "coord": [48.76282769645992, 2.303483404063952], "stop_id": 3730041, "stop_desc": "41 AVENUE DU GENERAL DE GAULLE - 92002", "stop_name": "LA CROIX DE BERNY-RER"}, "geometry": {"type": "Point", "coordinates": [2.303483404063952, 48.76282769645992]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4354af31452478b32badb3de1c6cd5834db05719", "fields": {"departement": "94", "stop_lat": 48.80711639570117, "code_postal": "94068", "stop_lon": 2.5101060436758766, "coord": [48.80711639570117, 2.5101060436758766], "stop_id": 3718080, "stop_desc": "PISTE GARE ROUTIERE - 94068", "stop_name": "CHAMPIGNY - SAINT-MAUR RER"}, "geometry": {"type": "Point", "coordinates": [2.5101060436758766, 48.80711639570117]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2d97448160512b5f5e7eed46906ec78e41f78bb2", "fields": {"departement": "92", "stop_lat": 48.76282769645992, "code_postal": "92002", "stop_lon": 2.303483404063952, "coord": [48.76282769645992, 2.303483404063952], "stop_id": 3730042, "stop_desc": "AV DU GENERAL DE GAULLE - 92002", "stop_name": "LA CROIX DE BERNY-RER"}, "geometry": {"type": "Point", "coordinates": [2.303483404063952, 48.76282769645992]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c62ae6265445a060e9b27969e46475deb14119cd", "fields": {"departement": "94", "stop_lat": 48.80906834632684, "code_postal": "94017", "stop_lon": 2.537736110172869, "coord": [48.80906834632684, 2.537736110172869], "stop_id": 3718108, "stop_desc": "FACE 8 AVENUE DU 11 NOVEMBRE 1918 - 94017", "stop_name": "LES MORDACS"}, "geometry": {"type": "Point", "coordinates": [2.537736110172869, 48.80906834632684]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a835e3bbfa1f7baac4fd9259daccc23b77fd474c", "fields": {"departement": "94", "stop_lat": 48.81672811941364, "code_postal": "94069", "stop_lon": 2.4555769178378704, "coord": [48.81672811941364, 2.4555769178378704], "stop_id": 3724107, "stop_desc": "228 RUE DU MARECHAL LECLERC - 94069", "stop_name": "LES CANADIENS"}, "geometry": {"type": "Point", "coordinates": [2.4555769178378704, 48.81672811941364]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4e18b8f07ca64efae5c4a637a23ac91521293c09", "fields": {"departement": "94", "stop_lat": 48.804622389298956, "code_postal": "94017", "stop_lon": 2.546427109100898, "coord": [48.804622389298956, 2.546427109100898], "stop_id": 3718084, "stop_desc": "2 RUE JACQUES SOLOMON - 94017", "stop_name": "CLAUDE BERNARD"}, "geometry": {"type": "Point", "coordinates": [2.546427109100898, 48.804622389298956]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e06abef6d65484393defb047992ff8ad409924dc", "fields": {"departement": "94", "stop_lat": 48.820958902132894, "code_postal": "94018", "stop_lon": 2.4148495637651513, "coord": [48.820958902132894, 2.4148495637651513], "stop_id": 3724088, "stop_desc": "FACE 3 RUE GABRIELLE - 94018", "stop_name": "RUE GABRIELLE"}, "geometry": {"type": "Point", "coordinates": [2.4148495637651513, 48.820958902132894]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "941fbb588a086dd774cdd063c41fa82f61d2a7a2", "fields": {"departement": "94", "stop_lat": 48.803393584967345, "code_postal": "94017", "stop_lon": 2.550068617897763, "coord": [48.803393584967345, 2.550068617897763], "stop_id": 3718096, "stop_desc": "AVENUE BOILEAU - 94017", "stop_name": "RABELAIS"}, "geometry": {"type": "Point", "coordinates": [2.550068617897763, 48.803393584967345]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f3a98e4bdeaf7fd61e8a4f9a8866d080aac3f828", "fields": {"departement": "94", "stop_lat": 48.79963823044856, "code_postal": "94019", "stop_lon": 2.544080540001482, "coord": [48.79963823044856, 2.544080540001482], "stop_id": 3718063, "stop_desc": "67 ROUTE DE LA LIBERATION - 94019", "stop_name": "RUE DES FUSILLES DE CHATEAUBRIANT"}, "geometry": {"type": "Point", "coordinates": [2.544080540001482, 48.79963823044856]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e9385981011146aa1e6671475386e7d6f1b26918", "fields": {"departement": "94", "stop_lat": 48.81248980165499, "code_postal": "94017", "stop_lon": 2.51099488416213, "coord": [48.81248980165499, 2.51099488416213], "stop_id": 3718079, "stop_desc": "4 BIS RUE ALBERT THOMAS - 94017", "stop_name": "MARCHE DE CHAMPIGNY-SUR-MARNE"}, "geometry": {"type": "Point", "coordinates": [2.51099488416213, 48.81248980165499]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "700214738ce7e4bdf9688238e6255488a9625873", "fields": {"departement": "94", "stop_lat": 48.80702898783379, "code_postal": "94017", "stop_lon": 2.526216596540736, "coord": [48.80702898783379, 2.526216596540736], "stop_id": 3718068, "stop_desc": "87 AVENUE MARX DORMOY - 94017", "stop_name": "MUSEE DE LA RESISTANCE"}, "geometry": {"type": "Point", "coordinates": [2.526216596540736, 48.80702898783379]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8d14efd575f3b663e8586f2d64405a925a1a9ca8", "fields": {"departement": "94", "stop_lat": 48.79875831497821, "code_postal": "94019", "stop_lon": 2.55368214924742, "coord": [48.79875831497821, 2.55368214924742], "stop_id": 3718046, "stop_desc": "15 RUE CLEMENT ADER - 94019", "stop_name": "CHAMPLAIN - PAGNOL"}, "geometry": {"type": "Point", "coordinates": [2.55368214924742, 48.79875831497821]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "27e273df74bf84d0620b1f165b83748878defddf", "fields": {"departement": "94", "stop_lat": 48.806201108282245, "code_postal": "94017", "stop_lon": 2.53240473152121, "coord": [48.806201108282245, 2.53240473152121], "stop_id": 3718067, "stop_desc": "AVENUE MARX DORMOY - 94017", "stop_name": "FORT DE CHAMPIGNY"}, "geometry": {"type": "Point", "coordinates": [2.53240473152121, 48.806201108282245]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "af61716f54136b272fcedeb53afcdbd85685fbd9", "fields": {"departement": "94", "stop_lat": 48.806768958429736, "code_postal": "94019", "stop_lon": 2.5572397779127702, "coord": [48.806768958429736, 2.5572397779127702], "stop_id": 3718053, "stop_desc": "ROUTE DU PLESSIS TREVISE - 94019", "stop_name": "BOIS L'ABBE"}, "geometry": {"type": "Point", "coordinates": [2.5572397779127702, 48.806768958429736]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4c2c9eb1f68568e518f1cc98da3f42b85927c119", "fields": {"departement": "94", "stop_lat": 48.80690402627174, "code_postal": "94019", "stop_lon": 2.5571042790841676, "coord": [48.80690402627174, 2.5571042790841676], "stop_id": 3718052, "stop_desc": "ROUTE DU PLESSIS TREVISE - 94019", "stop_name": "BOIS L'ABBE"}, "geometry": {"type": "Point", "coordinates": [2.5571042790841676, 48.80690402627174]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1f5d60ecf3e7edc2e475ab1afaeab9c3e0999246", "fields": {"departement": "94", "stop_lat": 48.808496295953304, "code_postal": "94017", "stop_lon": 2.524765932868587, "coord": [48.808496295953304, 2.524765932868587], "stop_id": 3718070, "stop_desc": "59 AVENUE MARX DORMOY - 94017", "stop_name": "LA CASCADE"}, "geometry": {"type": "Point", "coordinates": [2.524765932868587, 48.808496295953304]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "596e985f6fbebf6a152c28e61270198114de5adf", "fields": {"departement": "94", "stop_lat": 48.81025489203839, "code_postal": "94017", "stop_lon": 2.520934834992837, "coord": [48.81025489203839, 2.520934834992837], "stop_id": 3718072, "stop_desc": "38-40 AVENUE MARX DORMOY - 94017", "stop_name": "MARTELET"}, "geometry": {"type": "Point", "coordinates": [2.520934834992837, 48.81025489203839]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2edd7ad580d30613b24a16dc617fe898d504636e", "fields": {"departement": "94", "stop_lat": 48.802865567028014, "code_postal": "94019", "stop_lon": 2.5537945127382238, "coord": [48.802865567028014, 2.5537945127382238], "stop_id": 3718049, "stop_desc": "RUE RABELAIS - 94019", "stop_name": "JEAN MERMOZ"}, "geometry": {"type": "Point", "coordinates": [2.5537945127382238, 48.802865567028014]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c9d4484c8bb75a455927207a3ca69b4a026be25b", "fields": {"departement": "94", "stop_lat": 48.77075357232142, "code_postal": "94028", "stop_lon": 2.4263325382408234, "coord": [48.77075357232142, 2.4263325382408234], "stop_id": 3730085, "stop_desc": "112 AVENUE VICTOR HUGO - 94028", "stop_name": "PARC INTERDEPARTEMENTAL DES SPORTS"}, "geometry": {"type": "Point", "coordinates": [2.4263325382408234, 48.77075357232142]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "94d8186c756d3506361c94e03b7fb01d20bbe0d7", "fields": {"departement": "94", "stop_lat": 48.78992000482424, "code_postal": "94028", "stop_lon": 2.4529585442300395, "coord": [48.78992000482424, 2.4529585442300395], "stop_id": 3730093, "stop_desc": "ROUTE DE CHOISY - 94028", "stop_name": "CRETEIL - UNIVERSITE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.4529585442300395, 48.78992000482424]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "55db816759f5b31725181ea0e57051b8a181301b", "fields": {"departement": "94", "stop_lat": 48.78130808599266, "code_postal": "94028", "stop_lon": 2.4449423421727365, "coord": [48.78130808599266, 2.4449423421727365], "stop_id": 3730089, "stop_desc": "ROUTE DE CHOISY - 94028", "stop_name": "BASE DE LOISIRS DE CRETEIL"}, "geometry": {"type": "Point", "coordinates": [2.4449423421727365, 48.78130808599266]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "73eb3804018f707e272adf207bd50a0aea027149", "fields": {"departement": "94", "stop_lat": 48.793919787708134, "code_postal": "94028", "stop_lon": 2.461701016520131, "coord": [48.793919787708134, 2.461701016520131], "stop_id": 3730095, "stop_desc": "2-4 AVENUE DE VERDUN - 94028", "stop_name": "EGLISE DE CRETEIL"}, "geometry": {"type": "Point", "coordinates": [2.461701016520131, 48.793919787708134]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4dcf6ddc3a32ef8480bc8db8e774dcf423447de2", "fields": {"departement": "94", "stop_lat": 48.763057563786816, "code_postal": "94022", "stop_lon": 2.401956052432323, "coord": [48.763057563786816, 2.401956052432323], "stop_id": 3730075, "stop_desc": "37 AVENUE GAMBETTA - 94022", "stop_name": "RENE PANHARD"}, "geometry": {"type": "Point", "coordinates": [2.401956052432323, 48.763057563786816]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "470392191391f075126120b88e38867a8797b75d", "fields": {"departement": "94", "stop_lat": 48.78794997446607, "code_postal": "94076", "stop_lon": 2.368185847356733, "coord": [48.78794997446607, 2.368185847356733], "stop_id": 3730628, "stop_desc": "167-169 BOULEVARD MAXIME GORKI - 94076", "stop_name": "VILLEJUIF - LOUIS ARAGON"}, "geometry": {"type": "Point", "coordinates": [2.368185847356733, 48.78794997446607]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d5eb5f68205b3cffe84090558dffc8dfb71b39f6", "fields": {"departement": "94", "stop_lat": 48.77266465724943, "code_postal": "94038", "stop_lon": 2.3236021909786224, "coord": [48.77266465724943, 2.3236021909786224], "stop_id": 3730355, "stop_desc": "FACE 59 AVENUE CHARLES FLOUQUET - 94038", "stop_name": "COLLEGE RONSARD"}, "geometry": {"type": "Point", "coordinates": [2.3236021909786224, 48.77266465724943]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a1e413e01730986d0b3207b88dd1dda05a172046", "fields": {"departement": "94", "stop_lat": 48.766048781495684, "code_postal": "94034", "stop_lon": 2.318695641825626, "coord": [48.766048781495684, 2.318695641825626], "stop_id": 3730364, "stop_desc": "FACE 87/89 AVENUE DE LA LIBERTE - 94034", "stop_name": "MAISON D'ARRET"}, "geometry": {"type": "Point", "coordinates": [2.318695641825626, 48.766048781495684]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "90444d4d7e773e892bb13c9960a722ba896bdd7e", "fields": {"departement": "94", "stop_lat": 48.77883984445664, "code_postal": "94038", "stop_lon": 2.3279796753155506, "coord": [48.77883984445664, 2.3279796753155506], "stop_id": 3730351, "stop_desc": "FACE 70 AVENUE HENRI BARBUSSE - 94038", "stop_name": "PETIT ROBINSON"}, "geometry": {"type": "Point", "coordinates": [2.3279796753155506, 48.77883984445664]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2ff0c70cf7c9e3ce97c58a76cc44e138394006cf", "fields": {"departement": "94", "stop_lat": 48.76102558999387, "code_postal": "94034", "stop_lon": 2.328920912472801, "coord": [48.76102558999387, 2.328920912472801], "stop_id": 3730374, "stop_desc": "FACE 11-13 RUE FREDERIC MISTRAL - 94034", "stop_name": "CHARCOT - ZOLA"}, "geometry": {"type": "Point", "coordinates": [2.328920912472801, 48.76102558999387]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "46af6fba427039c9f946f1bae5d272df672108a0", "fields": {"departement": "94", "stop_lat": 48.76735214658663, "code_postal": "94038", "stop_lon": 2.3193070280378025, "coord": [48.76735214658663, 2.3193070280378025], "stop_id": 3730362, "stop_desc": "209 AVENUE DE LA LIBERTE - 94038", "stop_name": "MARC SANGNIER"}, "geometry": {"type": "Point", "coordinates": [2.3193070280378025, 48.76735214658663]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "44d7eed3464e0ee954581166f1c2c6d438c77bb5", "fields": {"departement": "94", "stop_lat": 48.77961282202266, "code_postal": "94038", "stop_lon": 2.32811553646874, "coord": [48.77961282202266, 2.32811553646874], "stop_id": 3730352, "stop_desc": "80 AVENUE HENRI BARBUSSE - 94038", "stop_name": "PETIT ROBINSON"}, "geometry": {"type": "Point", "coordinates": [2.32811553646874, 48.77961282202266]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c8d93e922aa68961919d1a7b593ef1a159c7dec7", "fields": {"departement": "94", "stop_lat": 48.759595418541416, "code_postal": "94034", "stop_lon": 2.319323301317652, "coord": [48.759595418541416, 2.319323301317652], "stop_id": 3730367, "stop_desc": "45 AVENUE DE LA REPUBLIQUE - 94034", "stop_name": "TUILERIE"}, "geometry": {"type": "Point", "coordinates": [2.319323301317652, 48.759595418541416]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8c06fe6eb724dc2765b44b7354539f92179bb367", "fields": {"departement": "94", "stop_lat": 48.76687571639442, "code_postal": "94038", "stop_lon": 2.318899295189504, "coord": [48.76687571639442, 2.318899295189504], "stop_id": 3730361, "stop_desc": "224 AVENUE FLOUQUET - 94038", "stop_name": "MARC SANGNIER"}, "geometry": {"type": "Point", "coordinates": [2.318899295189504, 48.76687571639442]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cbc581602bfea970099a0ca38354ddaa02424bb5", "fields": {"departement": "93", "stop_lat": 48.90189991672069, "code_postal": "93055", "stop_lon": 2.4141119526047987, "coord": [48.90189991672069, 2.4141119526047987], "stop_id": 3731641, "stop_desc": "182 AVENUE DU GENERAL LECLERC - 93055", "stop_name": "CIMETIERE PARISIEN"}, "geometry": {"type": "Point", "coordinates": [2.4141119526047987, 48.90189991672069]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8413217cb0ca3ab8666b44e47d8cb38a1badb2c6", "fields": {"departement": "78", "stop_lat": 48.94234423329563, "code_postal": "78586", "stop_lon": 2.1951390600094682, "coord": [48.94234423329563, 2.1951390600094682], "stop_id": 4023723, "stop_desc": "68 AVENUE GEORGES CLEMENCEAU - 78586", "stop_name": "CLEMENCEAU"}, "geometry": {"type": "Point", "coordinates": [2.1951390600094682, 48.94234423329563]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "75d30eaa81f4c3a6d325973d4838ef9f5cdd18d4", "fields": {"departement": "78", "stop_lat": 48.94489266413867, "code_postal": "78586", "stop_lon": 2.177886867143372, "coord": [48.94489266413867, 2.177886867143372], "stop_id": 4023729, "stop_desc": "24 R DE LA BATTERIE - 78586", "stop_name": "PICARDIE"}, "geometry": {"type": "Point", "coordinates": [2.177886867143372, 48.94489266413867]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b6710b95db2456e48d3b071bb8b08b69e5f7b6c2", "fields": {"departement": "78", "stop_lat": 48.94250398342695, "code_postal": "78586", "stop_lon": 2.172600841744579, "coord": [48.94250398342695, 2.172600841744579], "stop_id": 4023732, "stop_desc": "FACE 92 R VOLTAIRE - 78586", "stop_name": "EDOUARD VAILLANT"}, "geometry": {"type": "Point", "coordinates": [2.172600841744579, 48.94250398342695]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8c0107b609ff70d949bb52f7882c744a8ea71951", "fields": {"departement": "78", "stop_lat": 48.94216258000084, "code_postal": "78586", "stop_lon": 2.172670140654095, "coord": [48.94216258000084, 2.172670140654095], "stop_id": 4023733, "stop_desc": "88 R VOLTAIRE - 78586", "stop_name": "EDOUARD VAILLANT"}, "geometry": {"type": "Point", "coordinates": [2.172670140654095, 48.94216258000084]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3161281c4dc2ba29e2748125280ecbed2e524af5", "fields": {"departement": "78", "stop_lat": 48.94124740349812, "code_postal": "78586", "stop_lon": 2.1611179380600802, "coord": [48.94124740349812, 2.1611179380600802], "stop_id": 4023740, "stop_desc": "28 AV JEAN JAURES - 78586", "stop_name": "POSTE"}, "geometry": {"type": "Point", "coordinates": [2.1611179380600802, 48.94124740349812]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7abb6c5b69f8278a48d4ddb3ad7c15e059523380", "fields": {"departement": "95", "stop_lat": 48.94252482707516, "code_postal": "95018", "stop_lon": 2.2528472607038177, "coord": [48.94252482707516, 2.2528472607038177], "stop_id": 4023750, "stop_desc": "2 AVENUE GABRIEL PERI - 95018", "stop_name": "BORDEREL"}, "geometry": {"type": "Point", "coordinates": [2.2528472607038177, 48.94252482707516]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1a6ebd9d35b72e8b5ecb5f5c75fe8b801b8a1606", "fields": {"departement": "95", "stop_lat": 48.94563016428698, "code_postal": "95018", "stop_lon": 2.247248350504414, "coord": [48.94563016428698, 2.247248350504414], "stop_id": 4023755, "stop_desc": "7 BOULEVARD JEANNE D'ARC - 95018", "stop_name": "BELIN"}, "geometry": {"type": "Point", "coordinates": [2.247248350504414, 48.94563016428698]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d096362fac018c54014bf93c3adf401b6c08c749", "fields": {"departement": "95", "stop_lat": 48.93872491361057, "code_postal": "95018", "stop_lon": 2.2428677226717237, "coord": [48.93872491361057, 2.2428677226717237], "stop_id": 4023762, "stop_desc": "70 RUE HENRI BARBUSSE - 95018", "stop_name": "JEAN MOULIN - HENRI BARBUSSE"}, "geometry": {"type": "Point", "coordinates": [2.2428677226717237, 48.93872491361057]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b91efd2519d55fb6b60b32479d0dd6f59bbb6c52", "fields": {"departement": "95", "stop_lat": 48.938338090863965, "code_postal": "95018", "stop_lon": 2.2423773298331198, "coord": [48.938338090863965, 2.2423773298331198], "stop_id": 4023763, "stop_desc": "63 R HENRI BARBUSSE - 95018", "stop_name": "JEAN MOULIN - HENRI BARBUSSE"}, "geometry": {"type": "Point", "coordinates": [2.2423773298331198, 48.938338090863965]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2c9b803ab408824951239880ba98640c8c432e53", "fields": {"departement": "95", "stop_lat": 48.93613311768506, "code_postal": "95018", "stop_lon": 2.238439112324141, "coord": [48.93613311768506, 2.238439112324141], "stop_id": 4023765, "stop_desc": "109 RUE HENRI BARBUSSE - 95018", "stop_name": "PLACE DU 11 NOVEMBRE"}, "geometry": {"type": "Point", "coordinates": [2.238439112324141, 48.93613311768506]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5d7662673b100856ca45629250bc735a5f50b35f", "fields": {"departement": "95", "stop_lat": 48.927474080218055, "code_postal": "95063", "stop_lon": 2.223139316054955, "coord": [48.927474080218055, 2.223139316054955], "stop_id": 4023770, "stop_desc": "FACE 38 RUE JEAN JAURES - 95063", "stop_name": "VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.223139316054955, 48.927474080218055]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "609bfede45235eb50246a26fc4837faa4ae8981d", "fields": {"departement": "95", "stop_lat": 48.92437062089968, "code_postal": "95063", "stop_lon": 2.2200776181423967, "coord": [48.92437062089968, 2.2200776181423967], "stop_id": 4023771, "stop_desc": "RUE JEAN JAURES - 95063", "stop_name": "JAURES - BRANCHARD"}, "geometry": {"type": "Point", "coordinates": [2.2200776181423967, 48.92437062089968]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "85010bd948db472d9d94da51ea16b2b7277105c5", "fields": {"departement": "95", "stop_lat": 48.924289845732346, "code_postal": "95063", "stop_lon": 2.2201869042076, "coord": [48.924289845732346, 2.2201869042076], "stop_id": 4023772, "stop_desc": "79 RUE JEAN JAURES - 95063", "stop_name": "JAURES - BRANCHARD"}, "geometry": {"type": "Point", "coordinates": [2.2201869042076, 48.924289845732346]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f8a915786f4504da3f6dee60e4256bfc0d176f68", "fields": {"departement": "95", "stop_lat": 48.92316367574363, "code_postal": "95063", "stop_lon": 2.2173664624293954, "coord": [48.92316367574363, 2.2173664624293954], "stop_id": 4023774, "stop_desc": "R JULIUS ET ETHEL ROSENBERG - 95063", "stop_name": "PONT DE BEZONS"}, "geometry": {"type": "Point", "coordinates": [2.2173664624293954, 48.92316367574363]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "694e8c7b22a866897ed2a5265c6ae53060847ca6", "fields": {"departement": "95", "stop_lat": 48.93442434515357, "code_postal": "95063", "stop_lon": 2.2088013850436523, "coord": [48.93442434515357, 2.2088013850436523], "stop_id": 4023780, "stop_desc": "FACE 122 AVENUE GABRIEL PERI - 95063", "stop_name": "ALBERT 1ER"}, "geometry": {"type": "Point", "coordinates": [2.2088013850436523, 48.93442434515357]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b95058854d1dd081988d8af57f025cdd221ab6bc", "fields": {"departement": "95", "stop_lat": 48.941492827048634, "code_postal": "95018", "stop_lon": 2.2049912474439646, "coord": [48.941492827048634, 2.2049912474439646], "stop_id": 4023783, "stop_desc": "FACE 232 AVENUE GEORGES CLEMENCEAU - 95018", "stop_name": "VAL NOTRE-DAME"}, "geometry": {"type": "Point", "coordinates": [2.2049912474439646, 48.941492827048634]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "53b893bb81fa0100ada63bb9cd704dff406e9e3a", "fields": {"departement": "78", "stop_lat": 48.94245484646938, "code_postal": "78586", "stop_lon": 2.197485301961916, "coord": [48.94245484646938, 2.197485301961916], "stop_id": 4023792, "stop_desc": "R PAUL BERT - 78586", "stop_name": "BOURQUELOT"}, "geometry": {"type": "Point", "coordinates": [2.197485301961916, 48.94245484646938]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "70a2364c015c824e6f0decaa2fc536719a365d63", "fields": {"departement": "78", "stop_lat": 48.943031052857464, "code_postal": "78586", "stop_lon": 2.1908669596744974, "coord": [48.943031052857464, 2.1908669596744974], "stop_id": 4023796, "stop_desc": "186 AV DU GENERAL CHARLES DE GAULLE - 78586", "stop_name": "RUE DE CHATOU"}, "geometry": {"type": "Point", "coordinates": [2.1908669596744974, 48.943031052857464]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c61f61668e6b5bfebdcdf166293d0ce1a51429bb", "fields": {"departement": "78", "stop_lat": 48.9445292122809, "code_postal": "78586", "stop_lon": 2.18168081189023, "coord": [48.9445292122809, 2.18168081189023], "stop_id": 4023799, "stop_desc": "AV DU GENERAL CHARLES DE GAULLE - 78586", "stop_name": "CHARLES DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.18168081189023, 48.9445292122809]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e8081797359875f38780673d69dc6bc4a970208c", "fields": {"departement": "78", "stop_lat": 48.94489266413867, "code_postal": "78586", "stop_lon": 2.177886867143372, "coord": [48.94489266413867, 2.177886867143372], "stop_id": 4023801, "stop_desc": "24 R DE LA BATTERIE - 78586", "stop_name": "PICARDIE"}, "geometry": {"type": "Point", "coordinates": [2.177886867143372, 48.94489266413867]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3cf9fd2dbd22bbaf6734055a0c25714f8fcbc77a", "fields": {"departement": "78", "stop_lat": 48.94250398342695, "code_postal": "78586", "stop_lon": 2.172600841744579, "coord": [48.94250398342695, 2.172600841744579], "stop_id": 4023804, "stop_desc": "FACE 92 R VOLTAIRE - 78586", "stop_name": "EDOUARD VAILLANT"}, "geometry": {"type": "Point", "coordinates": [2.172600841744579, 48.94250398342695]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e7c31e58bef93b605678c292082fde1aadc843fc", "fields": {"departement": "78", "stop_lat": 48.938257820556124, "code_postal": "78586", "stop_lon": 2.157131114784443, "coord": [48.938257820556124, 2.157131114784443], "stop_id": 4023814, "stop_desc": "PL DES FUSILLES - 78586", "stop_name": "GARE DE SARTROUVILLE-RER"}, "geometry": {"type": "Point", "coordinates": [2.157131114784443, 48.938257820556124]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "379714fb7357e5430408a67cbcf17e24e21fc8bf", "fields": {"departement": "78", "stop_lat": 48.936803538555424, "code_postal": "78586", "stop_lon": 2.158186548448623, "coord": [48.936803538555424, 2.158186548448623], "stop_id": 4023815, "stop_desc": "0 PL DES FUSILLES - 78586", "stop_name": "GARE DE SARTROUVILLE-RER"}, "geometry": {"type": "Point", "coordinates": [2.158186548448623, 48.936803538555424]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6d0148931abee4504f09d23954180ab3d0508657", "fields": {"departement": "95", "stop_lat": 48.941090239816965, "code_postal": "95063", "stop_lon": 2.206642999530818, "coord": [48.941090239816965, 2.206642999530818], "stop_id": 4023816, "stop_desc": "AVENUE LUCIEN SAMPAIX - 95063", "stop_name": "VAL NOTRE-DAME"}, "geometry": {"type": "Point", "coordinates": [2.206642999530818, 48.941090239816965]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "70aeeed1a6dea7d163e5ca120abb3167c70d4c21", "fields": {"departement": "95", "stop_lat": 48.94606280319967, "code_postal": "95018", "stop_lon": 2.2489530539070373, "coord": [48.94606280319967, 2.2489530539070373], "stop_id": 4023818, "stop_desc": "79 AVENUE GABRIEL PERI - 95018", "stop_name": "HOTEL DE VILLE D'ARGENTEUIL"}, "geometry": {"type": "Point", "coordinates": [2.2489530539070373, 48.94606280319967]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c0840e61b989508006341b0a82789da593bace28", "fields": {"departement": "95", "stop_lat": 48.92762850170789, "code_postal": "95063", "stop_lon": 2.21570583272821, "coord": [48.92762850170789, 2.21570583272821], "stop_id": 4023820, "stop_desc": "8 AVENUE GABRIEL PERI - 95063", "stop_name": "LA GRACE DE DIEU"}, "geometry": {"type": "Point", "coordinates": [2.21570583272821, 48.92762850170789]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2e98e0b5dc5f71a86cbeb674900eb9a0af69403c", "fields": {"departement": "78", "stop_lat": 48.94232568134956, "code_postal": "78586", "stop_lon": 2.202383369779194, "coord": [48.94232568134956, 2.202383369779194], "stop_id": 4023826, "stop_desc": "RUE FLORIAN - 78586", "stop_name": "ROMAIN ROLLAND"}, "geometry": {"type": "Point", "coordinates": [2.202383369779194, 48.94232568134956]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d03392a7ef8d585a19a3441b2d4a529d20ac07df", "fields": {"departement": "78", "stop_lat": 48.94547597591713, "code_postal": "78586", "stop_lon": 2.198827852497629, "coord": [48.94547597591713, 2.198827852497629], "stop_id": 4023828, "stop_desc": "45 RUE PAUL BERT - 78586", "stop_name": "PEGUY"}, "geometry": {"type": "Point", "coordinates": [2.198827852497629, 48.94547597591713]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a0710aea7bf1c836b2409740870d5fde14373ed8", "fields": {"departement": "78", "stop_lat": 48.94245484646938, "code_postal": "78586", "stop_lon": 2.197485301961916, "coord": [48.94245484646938, 2.197485301961916], "stop_id": 4023829, "stop_desc": "R PAUL BERT - 78586", "stop_name": "BOURQUELOT"}, "geometry": {"type": "Point", "coordinates": [2.197485301961916, 48.94245484646938]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a4238cb8173a168a6dfcc2d5f969ff8b82ce2eaf", "fields": {"departement": "78", "stop_lat": 48.94271046698098, "code_postal": "78586", "stop_lon": 2.193282637363265, "coord": [48.94271046698098, 2.193282637363265], "stop_id": 4023830, "stop_desc": "FACE 48 AVENUE GEORGES CLEMENCEAU - 78586", "stop_name": "CLEMENCEAU"}, "geometry": {"type": "Point", "coordinates": [2.193282637363265, 48.94271046698098]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fd10ff60b216f5ce3ee86f7d93037235692a40f3", "fields": {"departement": "78", "stop_lat": 48.94489759833591, "code_postal": "78586", "stop_lon": 2.181625131483485, "coord": [48.94489759833591, 2.181625131483485], "stop_id": 4023832, "stop_desc": "AV ROBERT SCHUMAN - 78586", "stop_name": "CHARLES DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.181625131483485, 48.94489759833591]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d896d81860df797830e532b0969aedd8a62c621c", "fields": {"departement": "92", "stop_lat": 48.88371676955176, "code_postal": "92062", "stop_lon": 2.233851265998093, "coord": [48.88371676955176, 2.233851265998093], "stop_id": 4023969, "stop_desc": "RUE DE LA REPUBLIQUE - 92062", "stop_name": "GARE DE PUTEAUX"}, "geometry": {"type": "Point", "coordinates": [2.233851265998093, 48.88371676955176]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0b6e694436cee90b9a7dbcc0d64c6e99b5197ab4", "fields": {"departement": "92", "stop_lat": 48.87862472854438, "code_postal": "92050", "stop_lon": 2.20986620995394, "coord": [48.87862472854438, 2.20986620995394], "stop_id": 4023979, "stop_desc": "17 RUE DE GARCHES - 92050", "stop_name": "PLAIDEURS - VAILLANT-COUTURIER"}, "geometry": {"type": "Point", "coordinates": [2.20986620995394, 48.87862472854438]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7b45fa837d0721b8463f1dd225a8b0034076659f", "fields": {"departement": "92", "stop_lat": 48.87808078212805, "code_postal": "92050", "stop_lon": 2.205534554136397, "coord": [48.87808078212805, 2.205534554136397], "stop_id": 4023981, "stop_desc": "77 RUE DE GARCHES - 92050", "stop_name": "LES CHAILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.205534554136397, 48.87808078212805]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0015d8beecf08252eb29750cb260c5150f917505", "fields": {"departement": "92", "stop_lat": 48.86902191369568, "code_postal": "92063", "stop_lon": 2.1979420952336834, "coord": [48.86902191369568, 2.1979420952336834], "stop_id": 4023995, "stop_desc": "120 AVENUE DU PRESIDENT POMPIDOU - 92063", "stop_name": "RACINE"}, "geometry": {"type": "Point", "coordinates": [2.1979420952336834, 48.86902191369568]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f6186bc4426549ee4aad9c6f2318a156dd7f1db4", "fields": {"departement": "92", "stop_lat": 48.86530961517471, "code_postal": "92063", "stop_lon": 2.1975025289849834, "coord": [48.86530961517471, 2.1975025289849834], "stop_id": 4024000, "stop_desc": "29 RUE DU LIEUTENANT COLONEL DE MONTBRISON - 92063", "stop_name": "VICTORIEN SARDOU"}, "geometry": {"type": "Point", "coordinates": [2.1975025289849834, 48.86530961517471]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "224413ccefda8b3dcc7498cc8e746dc6470dc8f6", "fields": {"departement": "92", "stop_lat": 48.862603086716696, "code_postal": "92063", "stop_lon": 2.1963792217488365, "coord": [48.862603086716696, 2.1963792217488365], "stop_id": 4024001, "stop_desc": "FACE 71-73 RUE DU LIEUTENANT COLONEL DE MONTBRISON - 92063", "stop_name": "LES MAZURIERES"}, "geometry": {"type": "Point", "coordinates": [2.1963792217488365, 48.862603086716696]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0158f45cf160a38f1bef983812ec5858a5f7933d", "fields": {"departement": "92", "stop_lat": 48.86284606766256, "code_postal": "92063", "stop_lon": 2.1966509969329566, "coord": [48.86284606766256, 2.1966509969329566], "stop_id": 4024002, "stop_desc": "83 RUE DU LIEUTENANT COLONEL DE MONTBRISON - 92063", "stop_name": "LES MAZURIERES"}, "geometry": {"type": "Point", "coordinates": [2.1966509969329566, 48.86284606766256]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c719381e8b7054b465ac57bd04a788b0706ab13b", "fields": {"departement": "92", "stop_lat": 48.86256548606598, "code_postal": "92063", "stop_lon": 2.1949899115932214, "coord": [48.86256548606598, 2.1949899115932214], "stop_id": 4024003, "stop_desc": "FACE 58 AVENUE DE FOUILLEUSE - 92063", "stop_name": "FOUILLEUSE"}, "geometry": {"type": "Point", "coordinates": [2.1949899115932214, 48.86256548606598]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "29fd64d11bee070ac11e93cb943c8ba24b210702", "fields": {"departement": "92", "stop_lat": 48.86236706288304, "code_postal": "92063", "stop_lon": 2.194404725521763, "coord": [48.86236706288304, 2.194404725521763], "stop_id": 4024004, "stop_desc": "54 AV DE FOUILLEUSE - 92063", "stop_name": "FOUILLEUSE"}, "geometry": {"type": "Point", "coordinates": [2.194404725521763, 48.86236706288304]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "97347dc3936d0510ea7931289138afdb8c6db0db", "fields": {"departement": "92", "stop_lat": 48.86249754050552, "code_postal": "92063", "stop_lon": 2.1908354879595704, "coord": [48.86249754050552, 2.1908354879595704], "stop_id": 4024006, "stop_desc": "9 RUE DU 19 JANVIER - 92063", "stop_name": "CARREY DE BELLEMARE"}, "geometry": {"type": "Point", "coordinates": [2.1908354879595704, 48.86249754050552]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "37c53648b980b64913dcd8ae6ee33afeeb7fa755", "fields": {"departement": "92", "stop_lat": 48.8611850815715, "code_postal": "92063", "stop_lon": 2.1905940095910346, "coord": [48.8611850815715, 2.1905940095910346], "stop_id": 4024008, "stop_desc": "FACE 44 RUE DU 19 JANVIER - 92063", "stop_name": "DUMOURIEZ"}, "geometry": {"type": "Point", "coordinates": [2.1905940095910346, 48.8611850815715]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d0905b3694fb3cfd19a06c5ff591adf4197b2825", "fields": {"departement": "92", "stop_lat": 48.85937806188428, "code_postal": "92063", "stop_lon": 2.190149631508314, "coord": [48.85937806188428, 2.190149631508314], "stop_id": 4024010, "stop_desc": "57-59 RUE DU 19 JANVIER - 92063", "stop_name": "HENRI REGNAULT"}, "geometry": {"type": "Point", "coordinates": [2.190149631508314, 48.85937806188428]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9448842fa4fc71903e0179bd98cda56de5ce619d", "fields": {"departement": "92", "stop_lat": 48.88662437941958, "code_postal": "92062", "stop_lon": 2.239460201963728, "coord": [48.88662437941958, 2.239460201963728], "stop_id": 4024021, "stop_desc": "3 AVENUE JEAN MOULIN - 92062", "stop_name": "BOIELDIEU"}, "geometry": {"type": "Point", "coordinates": [2.239460201963728, 48.88662437941958]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ff8d819859de07bc7e7718a046ac260b19ca7ce7", "fields": {"departement": "92", "stop_lat": 48.883969094999905, "code_postal": "92062", "stop_lon": 2.2346411462534888, "coord": [48.883969094999905, 2.2346411462534888], "stop_id": 4024025, "stop_desc": "FACE145BIS RUE DE LA REPUBLIQUE - 92062", "stop_name": "GARE DE PUTEAUX"}, "geometry": {"type": "Point", "coordinates": [2.2346411462534888, 48.883969094999905]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d79a43990bab8700b6a8b84c8fae98fed4bb62b1", "fields": {"departement": "92", "stop_lat": 48.88252958973367, "code_postal": "92050", "stop_lon": 2.223061108497506, "coord": [48.88252958973367, 2.223061108497506], "stop_id": 4024031, "stop_desc": "26 ROUTE DES FUSILLES DE LA RESISTANCE - 92050", "stop_name": "FELIX FAURE"}, "geometry": {"type": "Point", "coordinates": [2.223061108497506, 48.88252958973367]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d26350fb2361725e8e6ac1e7198c17e54c69cccb", "fields": {"departement": "92", "stop_lat": 48.87967564135883, "code_postal": "92050", "stop_lon": 2.2179712045178617, "coord": [48.87967564135883, 2.2179712045178617], "stop_id": 4024032, "stop_desc": "141 RUE DES PLAIDEURS - 92050", "stop_name": "LIBERTE - PLAIDEURS"}, "geometry": {"type": "Point", "coordinates": [2.2179712045178617, 48.87967564135883]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a5e497b9abc74b99f9a04f10b5e189aa0b2a7b6a", "fields": {"departement": "92", "stop_lat": 48.87983525134293, "code_postal": "92050", "stop_lon": 2.2158315205732415, "coord": [48.87983525134293, 2.2158315205732415], "stop_id": 4024034, "stop_desc": "84 RUE DES PLAIDEURS - 92050", "stop_name": "ROMAIN ROLLAND"}, "geometry": {"type": "Point", "coordinates": [2.2158315205732415, 48.87983525134293]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0f42fe5760f345452b2aaf7b4a7cf65d31ea1cb6", "fields": {"departement": "92", "stop_lat": 48.878125341421985, "code_postal": "92050", "stop_lon": 2.205193796553508, "coord": [48.878125341421985, 2.205193796553508], "stop_id": 4024037, "stop_desc": "116 RUE DE GARCHES - 92050", "stop_name": "LES CHAILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.205193796553508, 48.878125341421985]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "97ad4789d2369a1ec3084801ce2b08e634c4014b", "fields": {"departement": "92", "stop_lat": 48.871775678404425, "code_postal": "92063", "stop_lon": 2.1934387402330136, "coord": [48.871775678404425, 2.1934387402330136], "stop_id": 4024048, "stop_desc": "FACE 45 AVENUE DU PRESIDENT POMPIDOU - 92063", "stop_name": "SAINT-EXUPERY"}, "geometry": {"type": "Point", "coordinates": [2.1934387402330136, 48.871775678404425]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1aa4a9815189ea1eb96444a53d69cdeac97569a6", "fields": {"departement": "92", "stop_lat": 48.86548918638805, "code_postal": "92063", "stop_lon": 2.197352198011936, "coord": [48.86548918638805, 2.197352198011936], "stop_id": 4024056, "stop_desc": "30 RUE DU LIEUTENANT COLONEL DE MONTBRISON - 92063", "stop_name": "VICTORIEN SARDOU"}, "geometry": {"type": "Point", "coordinates": [2.197352198011936, 48.86548918638805]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8f207fc988bdbd9577c38912d3baf0b621d23272", "fields": {"departement": "92", "stop_lat": 48.86530961517471, "code_postal": "92063", "stop_lon": 2.1975025289849834, "coord": [48.86530961517471, 2.1975025289849834], "stop_id": 4024057, "stop_desc": "29 RUE DU LIEUTENANT COLONEL DE MONTBRISON - 92063", "stop_name": "VICTORIEN SARDOU"}, "geometry": {"type": "Point", "coordinates": [2.1975025289849834, 48.86530961517471]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "47b648c118bc8285cfcf99b24918703b1f55b604", "fields": {"departement": "92", "stop_lat": 48.862603086716696, "code_postal": "92063", "stop_lon": 2.1963792217488365, "coord": [48.862603086716696, 2.1963792217488365], "stop_id": 4024058, "stop_desc": "FACE 71-73 RUE DU LIEUTENANT COLONEL DE MONTBRISON - 92063", "stop_name": "LES MAZURIERES"}, "geometry": {"type": "Point", "coordinates": [2.1963792217488365, 48.862603086716696]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c71c6989179ae69a53e68f59979e2a401e730384", "fields": {"departement": "92", "stop_lat": 48.86284606766256, "code_postal": "92063", "stop_lon": 2.1966509969329566, "coord": [48.86284606766256, 2.1966509969329566], "stop_id": 4024059, "stop_desc": "83 RUE DU LIEUTENANT COLONEL DE MONTBRISON - 92063", "stop_name": "LES MAZURIERES"}, "geometry": {"type": "Point", "coordinates": [2.1966509969329566, 48.86284606766256]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b97a8470638dd98cdaaacb43c82b2f3ed4821091", "fields": {"departement": "92", "stop_lat": 48.86259620059796, "code_postal": "92063", "stop_lon": 2.190671749013255, "coord": [48.86259620059796, 2.190671749013255], "stop_id": 4024062, "stop_desc": "FACE 7 RUE DU 19 JANVIER - 92063", "stop_name": "CARREY DE BELLEMARE"}, "geometry": {"type": "Point", "coordinates": [2.190671749013255, 48.86259620059796]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "51cb4d2fb5dbb03493a718c5f24cf0140cbde885", "fields": {"departement": "92", "stop_lat": 48.86458658354024, "code_postal": "92063", "stop_lon": 2.179850077344955, "coord": [48.86458658354024, 2.179850077344955], "stop_id": 4024070, "stop_desc": "FACE 144 RTE DE L'EMPEREUR - 92063", "stop_name": "LYCEE DE RUEIL"}, "geometry": {"type": "Point", "coordinates": [2.179850077344955, 48.86458658354024]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "df22daf09507580469bb79e51371556aae777b76", "fields": {"departement": "92", "stop_lat": 48.86433506348356, "code_postal": "92063", "stop_lon": 2.1799461959180966, "coord": [48.86433506348356, 2.1799461959180966], "stop_id": 4024071, "stop_desc": "146 ROUTE DE L'EMPEREUR - 92063", "stop_name": "LYCEE DE RUEIL"}, "geometry": {"type": "Point", "coordinates": [2.1799461959180966, 48.86433506348356]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "83f405a9a9b4fccbbfb5f45592b97a2dcf44f214", "fields": {"departement": "92", "stop_lat": 48.90005136480068, "code_postal": "92050", "stop_lon": 2.1949824204525146, "coord": [48.90005136480068, 2.1949824204525146], "stop_id": 4024083, "stop_desc": "66 BOULEVARD DE LA SEINE - 92050", "stop_name": "VOLTAIRE"}, "geometry": {"type": "Point", "coordinates": [2.1949824204525146, 48.90005136480068]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e18a9ca0fa7e1ecd1ebefbf3b25f2ab9bfdab64c", "fields": {"departement": "92", "stop_lat": 48.894928935419784, "code_postal": "92050", "stop_lon": 2.195187305623287, "coord": [48.894928935419784, 2.195187305623287], "stop_id": 4024087, "stop_desc": "FACE 58-60 BOULEVARD DU COUCHANT - 92050", "stop_name": "NANTERRE - VILLE RER"}, "geometry": {"type": "Point", "coordinates": [2.195187305623287, 48.894928935419784]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eb37f1f38349a3d236c0b4344e1323743f15e10d", "fields": {"departement": "92", "stop_lat": 48.85949432773221, "code_postal": "92063", "stop_lon": 2.18260333113373, "coord": [48.85949432773221, 2.18260333113373], "stop_id": 4024105, "stop_desc": "R DE LA CHATAIGNERAIE - 92063", "stop_name": "COLLEGE PASSY - BUZENVAL"}, "geometry": {"type": "Point", "coordinates": [2.18260333113373, 48.85949432773221]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "91b72d5b97675368fd8241a7945fd2a5c927723b", "fields": {"departement": "92", "stop_lat": 48.86128502730734, "code_postal": "92063", "stop_lon": 2.1708972435685348, "coord": [48.86128502730734, 2.1708972435685348], "stop_id": 4024107, "stop_desc": "RUE DE LA CHATAIGNERAIE - 92063", "stop_name": "CENTRE MADELEINE DANIELOU"}, "geometry": {"type": "Point", "coordinates": [2.1708972435685348, 48.86128502730734]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1b9e6be4979ee82d09b3be83d478b63097735f0b", "fields": {"departement": "92", "stop_lat": 48.891720058404495, "code_postal": "92062", "stop_lon": 2.2393824402810596, "coord": [48.891720058404495, 2.2393824402810596], "stop_id": 4024109, "stop_desc": "PISTE GARE ROUTIERE - 92062", "stop_name": "LA DEFENSE-METRO-RER-TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.2393824402810596, 48.891720058404495]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e19581c01e64aa8207ab43f71c9f721d9e8007ed", "fields": {"departement": "92", "stop_lat": 48.89160141473085, "code_postal": "92062", "stop_lon": 2.2372019748450263, "coord": [48.89160141473085, 2.2372019748450263], "stop_id": 4024110, "stop_desc": "PISTE GARE ROUTIERE - 92062", "stop_name": "LA DEFENSE-METRO-RER-TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.2372019748450263, 48.89160141473085]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "443d881c5675c88a9631d311b3464e11c055f68b", "fields": {"departement": "92", "stop_lat": 48.88662437941958, "code_postal": "92062", "stop_lon": 2.239460201963728, "coord": [48.88662437941958, 2.239460201963728], "stop_id": 4024111, "stop_desc": "3 AVENUE JEAN MOULIN - 92062", "stop_name": "BOIELDIEU"}, "geometry": {"type": "Point", "coordinates": [2.239460201963728, 48.88662437941958]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8db258070dfc6fbc1bb57a60634f0ab499ea90f8", "fields": {"departement": "92", "stop_lat": 48.87983525134293, "code_postal": "92050", "stop_lon": 2.2158315205732415, "coord": [48.87983525134293, 2.2158315205732415], "stop_id": 4024124, "stop_desc": "84 RUE DES PLAIDEURS - 92050", "stop_name": "ROMAIN ROLLAND"}, "geometry": {"type": "Point", "coordinates": [2.2158315205732415, 48.87983525134293]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "75c7bd26bbd4863dcee4ff4f5433a1138d496c71", "fields": {"departement": "92", "stop_lat": 48.87873210874558, "code_postal": "92050", "stop_lon": 2.2094299162385465, "coord": [48.87873210874558, 2.2094299162385465], "stop_id": 4024125, "stop_desc": "14 RUE DE GARCHES - 92050", "stop_name": "PLAIDEURS - VAILLANT-COUTURIER"}, "geometry": {"type": "Point", "coordinates": [2.2094299162385465, 48.87873210874558]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7731f4e828cc324fa4e74ebbc294cceca4d3a75c", "fields": {"departement": "92", "stop_lat": 48.87808078212805, "code_postal": "92050", "stop_lon": 2.205534554136397, "coord": [48.87808078212805, 2.205534554136397], "stop_id": 4024128, "stop_desc": "77 RUE DE GARCHES - 92050", "stop_name": "LES CHAILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.205534554136397, 48.87808078212805]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ce02fabe8abb97d9a964f53ef7882a83b3111eb8", "fields": {"departement": "92", "stop_lat": 48.87493598656726, "code_postal": "92063", "stop_lon": 2.190786735325377, "coord": [48.87493598656726, 2.190786735325377], "stop_id": 4024135, "stop_desc": "FACE 41 BOULEVARD EDMOND ROSTAND - 92063", "stop_name": "RUE DES FOLIES"}, "geometry": {"type": "Point", "coordinates": [2.190786735325377, 48.87493598656726]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "31eac6c9ed6337825f3003250ba7e3b8729dcfdc", "fields": {"departement": "92", "stop_lat": 48.87367623584867, "code_postal": "92063", "stop_lon": 2.1895504546143014, "coord": [48.87367623584867, 2.1895504546143014], "stop_id": 4024137, "stop_desc": "FACE 10 R DES BONS RAISINS - 92063", "stop_name": "EDMOND ROSTAND"}, "geometry": {"type": "Point", "coordinates": [2.1895504546143014, 48.87367623584867]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e453bcf17869e860e279e100ca980a1851234f14", "fields": {"departement": "92", "stop_lat": 48.86921083861, "code_postal": "92063", "stop_lon": 2.1981050688502193, "coord": [48.86921083861, 2.1981050688502193], "stop_id": 4024143, "stop_desc": "103 AVENUE DU PRESIDENT POMPIDOU - 92063", "stop_name": "RACINE"}, "geometry": {"type": "Point", "coordinates": [2.1981050688502193, 48.86921083861]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b6ea24a764947e1cad7f9e3dfc389ab61209415f", "fields": {"departement": "92", "stop_lat": 48.862603086716696, "code_postal": "92063", "stop_lon": 2.1963792217488365, "coord": [48.862603086716696, 2.1963792217488365], "stop_id": 4024148, "stop_desc": "FACE 71-73 RUE DU LIEUTENANT COLONEL DE MONTBRISON - 92063", "stop_name": "LES MAZURIERES"}, "geometry": {"type": "Point", "coordinates": [2.1963792217488365, 48.862603086716696]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b9bde1f0f38b026692874b3757c19deec142b75b", "fields": {"departement": "92", "stop_lat": 48.85922478767498, "code_postal": "92063", "stop_lon": 2.1897550626721047, "coord": [48.85922478767498, 2.1897550626721047], "stop_id": 4024156, "stop_desc": "FACE 77 RUE DU 19 JANVIER - 92063", "stop_name": "HENRI REGNAULT"}, "geometry": {"type": "Point", "coordinates": [2.1897550626721047, 48.85922478767498]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e4fd37a63c1457a4404b5d7ba814c8edcefd1cae", "fields": {"departement": "75", "stop_lat": 48.870259577602226, "code_postal": "75108", "stop_lon": 2.309857443429508, "coord": [48.870259577602226, 2.309857443429508], "stop_id": 3749940, "stop_desc": "49 AVENUE F.D ROOSEVELT - 75108", "stop_name": "ROND-POINT DES CHAMPS-ELYSEES - FRANKLIN D. ROOSEVELT"}, "geometry": {"type": "Point", "coordinates": [2.309857443429508, 48.870259577602226]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1f30700338e75f2d5ea41f861f213dd608c29181", "fields": {"departement": "75", "stop_lat": 48.89805996621916, "code_postal": "75118", "stop_lon": 2.3292941800695495, "coord": [48.89805996621916, 2.3292941800695495], "stop_id": 3749951, "stop_desc": "2 AVENUE DE LA PORTE DE SAINT-OUEN - 75118", "stop_name": "PORTE DE SAINT-OUEN - HOPITAL BICHAT"}, "geometry": {"type": "Point", "coordinates": [2.3292941800695495, 48.89805996621916]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9ad0b043aaa133fc56ec6ff8695bf7ee761f8cc4", "fields": {"departement": "75", "stop_lat": 48.89894976781214, "code_postal": "75118", "stop_lon": 2.343974879515095, "coord": [48.89894976781214, 2.343974879515095], "stop_id": 3749948, "stop_desc": "FACE 81 BD ORNANO - 75118", "stop_name": "PORTE DE CLIGNANCOURT"}, "geometry": {"type": "Point", "coordinates": [2.343974879515095, 48.89894976781214]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6365b2f066d46065e981756e70a0a205ad9a38f2", "fields": {"departement": "92", "stop_lat": 48.90373841785489, "code_postal": "92024", "stop_lon": 2.3173239804642205, "coord": [48.90373841785489, 2.3173239804642205], "stop_id": 3749961, "stop_desc": "FACE 21 RUE GEORGES BOISSEAU - 92024", "stop_name": "GEORGES BOISSEAU"}, "geometry": {"type": "Point", "coordinates": [2.3173239804642205, 48.90373841785489]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "049591bd15fa9ccaed63362fa018ac477570b619", "fields": {"departement": "92", "stop_lat": 48.90683823744763, "code_postal": "92024", "stop_lon": 2.313396395643801, "coord": [48.90683823744763, 2.313396395643801], "stop_id": 3749963, "stop_desc": "58 RUE GEORGES BOISSEAU - 92024", "stop_name": "FONDATION ROGUET"}, "geometry": {"type": "Point", "coordinates": [2.313396395643801, 48.90683823744763]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "35847fd981ae705b3a9772e471651bdf84dafbe9", "fields": {"departement": "75", "stop_lat": 48.838086937138364, "code_postal": "75115", "stop_lon": 2.2891792634415777, "coord": [48.838086937138364, 2.2891792634415777], "stop_id": 3749944, "stop_desc": "198 RUE DE LA CROIX NIVERT - 75115", "stop_name": "DURANTON"}, "geometry": {"type": "Point", "coordinates": [2.2891792634415777, 48.838086937138364]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5f715c594adaf9fcef1a24b61f576a9245ddb830", "fields": {"departement": "93", "stop_lat": 48.9013305992624, "code_postal": "93070", "stop_lon": 2.322259639100743, "coord": [48.9013305992624, 2.322259639100743], "stop_id": 3749955, "stop_desc": "RUE VINCENT - 93070", "stop_name": "TOUZET - GAILLARD"}, "geometry": {"type": "Point", "coordinates": [2.322259639100743, 48.9013305992624]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "73d01569ac21396ac72f62f012ca1f42b8faaa5b", "fields": {"departement": "75", "stop_lat": 48.889045801610074, "code_postal": "75118", "stop_lon": 2.34581345976619, "coord": [48.889045801610074, 2.34581345976619], "stop_id": 3749935, "stop_desc": "36 RUE CUSTINE - 75118", "stop_name": "CUSTINE - RAMEY"}, "geometry": {"type": "Point", "coordinates": [2.34581345976619, 48.889045801610074]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eaa8438938212a7b4c642e4f9a1cdfea3a45bc9a", "fields": {"departement": "75", "stop_lat": 48.84511967373433, "code_postal": "75115", "stop_lon": 2.3019728091635527, "coord": [48.84511967373433, 2.3019728091635527], "stop_id": 3749942, "stop_desc": "42-44 RUE CAMBRONNE - 75115", "stop_name": "MIOLLIS"}, "geometry": {"type": "Point", "coordinates": [2.3019728091635527, 48.84511967373433]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "69ded49b3254336d507cd9c2695ea4db27968959", "fields": {"departement": "75", "stop_lat": 48.83526479424455, "code_postal": "75115", "stop_lon": 2.2890729621789574, "coord": [48.83526479424455, 2.2890729621789574], "stop_id": 3749945, "stop_desc": "10 RUE DU HAMEAU - 75115", "stop_name": "HAMEAU"}, "geometry": {"type": "Point", "coordinates": [2.2890729621789574, 48.83526479424455]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bb4b23c7b85a85a1f688befb3648edb047685bbe", "fields": {"departement": "75", "stop_lat": 48.895116597914324, "code_postal": "75118", "stop_lon": 2.371221199357303, "coord": [48.895116597914324, 2.371221199357303], "stop_id": 3750027, "stop_desc": "FACE 182 RUE D'AUBERVILLIERS - 75118", "stop_name": "CRIMEE - AUBERVILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.371221199357303, 48.895116597914324]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4e2d28961bfa4a1269e34ff9f60cbeb7c3cbb480", "fields": {"departement": "92", "stop_lat": 48.908132249415516, "code_postal": "92024", "stop_lon": 2.312782285638509, "coord": [48.908132249415516, 2.312782285638509], "stop_id": 3749966, "stop_desc": "57 RUE DU GENERAL ROGUET - 92024", "stop_name": "CIMETIERE DE CLICHY"}, "geometry": {"type": "Point", "coordinates": [2.312782285638509, 48.908132249415516]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7cc3659a3e7d2bd17d93f0348dc20d28dcbfe461", "fields": {"departement": "75", "stop_lat": 48.88918840965876, "code_postal": "75117", "stop_lon": 2.3183789823686705, "coord": [48.88918840965876, 2.3183789823686705], "stop_id": 3750013, "stop_desc": "24 TER R BROCHANT - 75117", "stop_name": "MARCHE DES BATIGNOLLES"}, "geometry": {"type": "Point", "coordinates": [2.3183789823686705, 48.88918840965876]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e56b0bd14adae54eae3bdf62e2ba6c2b24612870", "fields": {"departement": "75", "stop_lat": 48.89642892083493, "code_postal": "75118", "stop_lon": 2.3705132699148046, "coord": [48.89642892083493, 2.3705132699148046], "stop_id": 3750026, "stop_desc": "193 RUE D'AUBERVILLIERS - 75118", "stop_name": "EVANGILE - AUBERVILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.3705132699148046, 48.89642892083493]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "550c1c75301473801a9410a370e3346b2644fcf9", "fields": {"departement": "92", "stop_lat": 48.90989312899122, "code_postal": "92024", "stop_lon": 2.3100955339868294, "coord": [48.90989312899122, 2.3100955339868294], "stop_id": 3749970, "stop_desc": "FACE 21-23 AVENUE CLAUDE DEBUSSY - 92024", "stop_name": "CLAUDE DEBUSSY"}, "geometry": {"type": "Point", "coordinates": [2.3100955339868294, 48.90989312899122]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1e0c7a755cc194eaccc53c0fdde1571076c7636f", "fields": {"departement": "75", "stop_lat": 48.88984303323951, "code_postal": "75118", "stop_lon": 2.3637082538784577, "coord": [48.88984303323951, 2.3637082538784577], "stop_id": 3750035, "stop_desc": "FACE 76-78 RUE RIQUET - 75118", "stop_name": "PAJOL - RIQUET"}, "geometry": {"type": "Point", "coordinates": [2.3637082538784577, 48.88984303323951]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9ab0f343a22c7d71bfb62c518184bbb66949f6f6", "fields": {"departement": "75", "stop_lat": 48.88683282136078, "code_postal": "75118", "stop_lon": 2.3613490656424054, "coord": [48.88683282136078, 2.3613490656424054], "stop_id": 3750033, "stop_desc": "22 RUE PAJOL - 75118", "stop_name": "PAJOL - DEPARTEMENT"}, "geometry": {"type": "Point", "coordinates": [2.3613490656424054, 48.88683282136078]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "56b5908da3106b6972cfe1585671fcdc2ce4275c", "fields": {"departement": "75", "stop_lat": 48.89719679198877, "code_postal": "75117", "stop_lon": 2.3245644353550117, "coord": [48.89719679198877, 2.3245644353550117], "stop_id": 3750019, "stop_desc": "RUE JACQUES KELINER - 75117", "stop_name": "PORTE POUCHET"}, "geometry": {"type": "Point", "coordinates": [2.3245644353550117, 48.89719679198877]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b074f7ffd271a677aead75b8873705b6e6087abc", "fields": {"departement": "75", "stop_lat": 48.8953543883051, "code_postal": "75117", "stop_lon": 2.3241968687538943, "coord": [48.8953543883051, 2.3241968687538943], "stop_id": 3750018, "stop_desc": "36 R LANTIEZ - 75117", "stop_name": "LANTIEZ"}, "geometry": {"type": "Point", "coordinates": [2.3241968687538943, 48.8953543883051]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1832d0b9c715f711fdbfb36d69fcdc61eb6ac51e", "fields": {"departement": "75", "stop_lat": 48.88681627200852, "code_postal": "75117", "stop_lon": 2.3217323441636695, "coord": [48.88681627200852, 2.3217323441636695], "stop_id": 3750012, "stop_desc": "80 R NOLLET - 75117", "stop_name": "NOLLET"}, "geometry": {"type": "Point", "coordinates": [2.3217323441636695, 48.88681627200852]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "66ab6c4bdf13a9d2bd828be4e8fed96cd27bd68c", "fields": {"departement": "91", "stop_lat": 48.69987743744206, "code_postal": "91136", "stop_lon": 2.2889539184996273, "coord": [48.69987743744206, 2.2889539184996273], "stop_id": 3757193, "stop_desc": "23 ROUTE DE VERSAILLES - 91136", "stop_name": "ROUTE DE VERSAILLES N0 21-30"}, "geometry": {"type": "Point", "coordinates": [2.2889539184996273, 48.69987743744206]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "59c327845962d4b8da559aed22947fe027bbbec9", "fields": {"departement": "91", "stop_lat": 48.71467427546075, "code_postal": "91477", "stop_lon": 2.2586366447284165, "coord": [48.71467427546075, 2.2586366447284165], "stop_id": 3757181, "stop_desc": "FACE 2 AVENUE DES COSMONAUTES - 91477", "stop_name": "COSMONAUTES-STALINGRAD"}, "geometry": {"type": "Point", "coordinates": [2.2586366447284165, 48.71467427546075]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2c1e22f339f1d9cfd79e83d8f196b497cfcd86ab", "fields": {"departement": "91", "stop_lat": 48.71462042569823, "code_postal": "91477", "stop_lon": 2.2587589724528634, "coord": [48.71462042569823, 2.2587589724528634], "stop_id": 3757182, "stop_desc": "4-6 AVENUE DES COSMONAUTES - 91477", "stop_name": "COSMONAUTES-STALINGRAD"}, "geometry": {"type": "Point", "coordinates": [2.2587589724528634, 48.71462042569823]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9892db31c5bbd571a66996ccd3c1f3cabaeee5fb", "fields": {"departement": "91", "stop_lat": 48.70659351216114, "code_postal": "91136", "stop_lon": 2.273411217454407, "coord": [48.70659351216114, 2.273411217454407], "stop_id": 3757189, "stop_desc": "FACE144BIS ROUTE DE VERSAILLES - 91136", "stop_name": "MAIRIE DE CHAMPLAN"}, "geometry": {"type": "Point", "coordinates": [2.273411217454407, 48.70659351216114]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6d4585cc7c1eee89af94544d08adeabaaf0621c7", "fields": {"departement": "94", "stop_lat": 48.80632518597072, "code_postal": "94003", "stop_lon": 2.3372138588206237, "coord": [48.80632518597072, 2.3372138588206237], "stop_id": 3755011, "stop_desc": "10 AV PAUL DOUMER - 94003", "stop_name": "HOTEL DE VILLE - CENTRE."}, "geometry": {"type": "Point", "coordinates": [2.3372138588206237, 48.80632518597072]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b93e3068452b95a96b4ebbe51969ec9f060cb0bd", "fields": {"departement": "94", "stop_lat": 48.800779567729215, "code_postal": "94003", "stop_lon": 2.3315675980405737, "coord": [48.800779567729215, 2.3315675980405737], "stop_id": 3755016, "stop_desc": "FACE 18 R EMILE RASPAIL - 94003", "stop_name": "EMILE RASPAIL"}, "geometry": {"type": "Point", "coordinates": [2.3315675980405737, 48.800779567729215]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "950a86d9eaf534e14adf09f8136a2fb38f843248", "fields": {"departement": "91", "stop_lat": 48.720455844753424, "code_postal": "91477", "stop_lon": 2.2617387440156054, "coord": [48.720455844753424, 2.2617387440156054], "stop_id": 3757178, "stop_desc": "RUE EMILE BAUDOT - 91477", "stop_name": "BARBUSSE-BAUDOT"}, "geometry": {"type": "Point", "coordinates": [2.2617387440156054, 48.720455844753424]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "81e93d42d4e29a697746a720e927a3c3ab79919c", "fields": {"departement": "91", "stop_lat": 48.72476050436811, "code_postal": "91377", "stop_lon": 2.2605233770372464, "coord": [48.72476050436811, 2.2605233770372464], "stop_id": 3757203, "stop_desc": "R CARNOT - 91377", "stop_name": "MASSY-PALAISEAU-RER"}, "geometry": {"type": "Point", "coordinates": [2.2605233770372464, 48.72476050436811]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3e250b1228a33b1748b120fba956e966d9351755", "fields": {"departement": "94", "stop_lat": 48.83971417428451, "code_postal": "94015", "stop_lon": 2.522455164631506, "coord": [48.83971417428451, 2.522455164631506], "stop_id": 3708144, "stop_desc": "4 BIS BOULEVARD DU GENERAL GALLIENI - 94015", "stop_name": "CHATEAU"}, "geometry": {"type": "Point", "coordinates": [2.522455164631506, 48.83971417428451]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0a2fa15fd215e20f19eda7d8824176bded965c55", "fields": {"departement": "93", "stop_lat": 48.913365186523436, "code_postal": "93008", "stop_lon": 2.4174831801276664, "coord": [48.913365186523436, 2.4174831801276664], "stop_id": 3708453, "stop_desc": "FACE 1 RUE BALZAC - 93008", "stop_name": "LES COURTILLIERES"}, "geometry": {"type": "Point", "coordinates": [2.4174831801276664, 48.913365186523436]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "874207c52880a353ddd72809f9bc3e460eda7805", "fields": {"departement": "94", "stop_lat": 48.84632336215608, "code_postal": "94033", "stop_lon": 2.473347068714114, "coord": [48.84632336215608, 2.473347068714114], "stop_id": 3690484, "stop_desc": "7 RUE LOUIS XAVIER DE RICARD - 94033", "stop_name": "MOLIERE"}, "geometry": {"type": "Point", "coordinates": [2.473347068714114, 48.84632336215608]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "54a76d374c3c5f54e28abf3c472888f024da27bc", "fields": {"departement": "94", "stop_lat": 48.857533865512345, "code_postal": "94033", "stop_lon": 2.4857846415012927, "coord": [48.857533865512345, 2.4857846415012927], "stop_id": 3690473, "stop_desc": "FACE 18 RUE JEAN ZAY - 94033", "stop_name": "JEAN ZAY"}, "geometry": {"type": "Point", "coordinates": [2.4857846415012927, 48.857533865512345]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b2f623c24aee6a0449efe81016b058af7d146708", "fields": {"departement": "94", "stop_lat": 48.856487083172595, "code_postal": "94033", "stop_lon": 2.4743271450001507, "coord": [48.856487083172595, 2.4743271450001507], "stop_id": 3690448, "stop_desc": "FACE 13 RUE JEAN PIERRE TIMBAUD - 94033", "stop_name": "AIMEE MATTERRAZ"}, "geometry": {"type": "Point", "coordinates": [2.4743271450001507, 48.856487083172595]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cd032dad771367412419556dec606a49ea643e38", "fields": {"departement": "94", "stop_lat": 48.843726597210775, "code_postal": "94033", "stop_lon": 2.464652776320995, "coord": [48.843726597210775, 2.464652776320995], "stop_id": 3690435, "stop_desc": "18 PL MOREAU DAVID - 94033", "stop_name": "FONTENAY-SOUS-BOIS RER"}, "geometry": {"type": "Point", "coordinates": [2.464652776320995, 48.843726597210775]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0aeb7f9fb42ed4b8671e35621305e475b55c9663", "fields": {"departement": "94", "stop_lat": 48.843726597210775, "code_postal": "94033", "stop_lon": 2.464652776320995, "coord": [48.843726597210775, 2.464652776320995], "stop_id": 3690460, "stop_desc": "18 PL MOREAU DAVID - 94033", "stop_name": "FONTENAY-SOUS-BOIS RER"}, "geometry": {"type": "Point", "coordinates": [2.464652776320995, 48.843726597210775]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "38469515b946cc4c8e7bfd79941f2d606d86679c", "fields": {"departement": "94", "stop_lat": 48.85530369052728, "code_postal": "94033", "stop_lon": 2.4868133584133694, "coord": [48.85530369052728, 2.4868133584133694], "stop_id": 3690418, "stop_desc": "FACE 14 AVENUE DES OLYMPIADES - 94033", "stop_name": "PABLO PICASSO"}, "geometry": {"type": "Point", "coordinates": [2.4868133584133694, 48.85530369052728]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "00aebf6e6db59d9d3a06777b775dd15dd20db59b", "fields": {"departement": "94", "stop_lat": 48.852274617729336, "code_postal": "94033", "stop_lon": 2.472000785161405, "coord": [48.852274617729336, 2.472000785161405], "stop_id": 3690452, "stop_desc": "27 BD DE VERDUN - 94033", "stop_name": "PLACE MICHELET"}, "geometry": {"type": "Point", "coordinates": [2.472000785161405, 48.852274617729336]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "73432f2d29c2e38a4797c4618be39d2697bdd50c", "fields": {"departement": "94", "stop_lat": 48.85675154230017, "code_postal": "94033", "stop_lon": 2.4709636642567148, "coord": [48.85675154230017, 2.4709636642567148], "stop_id": 3690450, "stop_desc": "75 AVENUE VICTOR HUGO - 94033", "stop_name": "EMILE ZOLA"}, "geometry": {"type": "Point", "coordinates": [2.4709636642567148, 48.85675154230017]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3b426e83848cf06dc31161ff5808fc1d8beccb2c", "fields": {"departement": "94", "stop_lat": 48.85812367901838, "code_postal": "94033", "stop_lon": 2.495375181556799, "coord": [48.85812367901838, 2.495375181556799], "stop_id": 3690467, "stop_desc": "RUE DE LA PRAIRIE - 94033", "stop_name": "LES ALOUETTES"}, "geometry": {"type": "Point", "coordinates": [2.495375181556799, 48.85812367901838]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3f36d258a5377ac0ffc1e393ab483429bd95e4d7", "fields": {"departement": "94", "stop_lat": 48.854206354574735, "code_postal": "94033", "stop_lon": 2.494464352121565, "coord": [48.854206354574735, 2.494464352121565], "stop_id": 3690423, "stop_desc": "14 RUE LOUIS AUROUX - 94033", "stop_name": "LOUIS AUROUX"}, "geometry": {"type": "Point", "coordinates": [2.494464352121565, 48.854206354574735]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "79aa5be10b1ab9c215eafc20acbe39127fd6996b", "fields": {"departement": "94", "stop_lat": 48.857533865512345, "code_postal": "94033", "stop_lon": 2.4857846415012927, "coord": [48.857533865512345, 2.4857846415012927], "stop_id": 3690445, "stop_desc": "FACE 18 RUE JEAN ZAY - 94033", "stop_name": "JEAN ZAY"}, "geometry": {"type": "Point", "coordinates": [2.4857846415012927, 48.857533865512345]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "39487c13fd2cab32c5014243667bb28952012eaa", "fields": {"departement": "94", "stop_lat": 48.85399313364263, "code_postal": "94033", "stop_lon": 2.4703028202860247, "coord": [48.85399313364263, 2.4703028202860247], "stop_id": 3690402, "stop_desc": "2 AVENUE VICTOR HUGO - 94033", "stop_name": "VERDUN"}, "geometry": {"type": "Point", "coordinates": [2.4703028202860247, 48.85399313364263]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0a2be264b78f63d84b33720aa2f98f498bed9d0b", "fields": {"departement": "93", "stop_lat": 48.873102529612815, "code_postal": "93049", "stop_lon": 2.510544020933321, "coord": [48.873102529612815, 2.510544020933321], "stop_id": 3715224, "stop_desc": "21 PLACE DE STALINGRAD - ROND POINT D'AVRON - 93049", "stop_name": "PLATEAU D'AVRON - PLACE DE STALINGRAD"}, "geometry": {"type": "Point", "coordinates": [2.510544020933321, 48.873102529612815]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "37a251251f542541b0ff1c5a3855405550982293", "fields": {"departement": "93", "stop_lat": 48.86541686191669, "code_postal": "93049", "stop_lon": 2.5115536428349077, "coord": [48.86541686191669, 2.5115536428349077], "stop_id": 3715229, "stop_desc": "15 AVENUE DU PRESIDENT KENNEDY - 93049", "stop_name": "KENNEDY - RENOUILLERES"}, "geometry": {"type": "Point", "coordinates": [2.5115536428349077, 48.86541686191669]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "19f51cca63f355d505552d6c64426813c7b40451", "fields": {"departement": "93", "stop_lat": 48.87199260175153, "code_postal": "93049", "stop_lon": 2.5074203747740498, "coord": [48.87199260175153, 2.5074203747740498], "stop_id": 3715225, "stop_desc": "FACE 14BIS AVENUE DES FAUVETTES - 93049", "stop_name": "AVENUE DE ROSNY"}, "geometry": {"type": "Point", "coordinates": [2.5074203747740498, 48.87199260175153]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8cdb889938f460f8766d949909298a7cc7d44307", "fields": {"departement": "93", "stop_lat": 48.91785529094698, "code_postal": "93010", "stop_lon": 2.4790576691997925, "coord": [48.91785529094698, 2.4790576691997925], "stop_id": 3708531, "stop_desc": "ROND-POINT JOUHAUX-BLUM - 93010", "stop_name": "JOUHAUX-BLUM"}, "geometry": {"type": "Point", "coordinates": [2.4790576691997925, 48.91785529094698]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "303d397ff6dc72a5f63448db97717e0b64f7c72b", "fields": {"departement": "93", "stop_lat": 48.90759788133574, "code_postal": "93008", "stop_lon": 2.4267723064132727, "coord": [48.90759788133574, 2.4267723064132727], "stop_id": 3708539, "stop_desc": "164 RUE DE LA REPUBLIQUE - 93008", "stop_name": "REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.4267723064132727, 48.90759788133574]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "692236b5f793246264f27584c4fa4657f34f3244", "fields": {"departement": "93", "stop_lat": 48.91695910540304, "code_postal": "93010", "stop_lon": 2.484400525396555, "coord": [48.91695910540304, 2.484400525396555], "stop_id": 3708530, "stop_desc": "AV HENRI VARAGNAT - 93010", "stop_name": "RABELAIS"}, "geometry": {"type": "Point", "coordinates": [2.484400525396555, 48.91695910540304]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "44e90e6443386128c129145e5da2a07fbe3386f5", "fields": {"departement": "93", "stop_lat": 48.91748955522082, "code_postal": "93010", "stop_lon": 2.484224762465009, "coord": [48.91748955522082, 2.484224762465009], "stop_id": 3708529, "stop_desc": "VOIE NOUVELLE - 93010", "stop_name": "RABELAIS"}, "geometry": {"type": "Point", "coordinates": [2.484224762465009, 48.91748955522082]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a1608d2134e86780712dba55e93b863f481e0108", "fields": {"departement": "75", "stop_lat": 48.84932074474511, "code_postal": "75105", "stop_lon": 2.3549719454521005, "coord": [48.84932074474511, 2.3549719454521005], "stop_id": 3716889, "stop_desc": "3 BOULEVARD SAINT GERMAIN - 75105", "stop_name": "SAINT-GERMAIN - CARDINAL LEMOINE"}, "geometry": {"type": "Point", "coordinates": [2.3549719454521005, 48.84932074474511]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f373aee921dfd3ccfeb0a765fae94071b2b929be", "fields": {"departement": "93", "stop_lat": 48.86501651419178, "code_postal": "93050", "stop_lon": 2.5208018705614887, "coord": [48.86501651419178, 2.5208018705614887], "stop_id": 3715233, "stop_desc": "RUE LOUIS VANNINI - 93050", "stop_name": "LES CHANOUX - LYCEE CUGNOT"}, "geometry": {"type": "Point", "coordinates": [2.5208018705614887, 48.86501651419178]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "75e2076f40a298bfd724809ba8f9a86a524082f3", "fields": {"departement": "93", "stop_lat": 48.87716994517538, "code_postal": "93077", "stop_lon": 2.524946187797525, "coord": [48.87716994517538, 2.524946187797525], "stop_id": 3715236, "stop_desc": "60 R SIMON GUITLEVITCH - 93077", "stop_name": "LYCEE GEORGES CLEMENCEAU"}, "geometry": {"type": "Point", "coordinates": [2.524946187797525, 48.87716994517538]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "51c484fed9b2e0cd9641267f826a5e48df8cfc0f", "fields": {"departement": "75", "stop_lat": 48.837728651093556, "code_postal": "75112", "stop_lon": 2.3822118972238107, "coord": [48.837728651093556, 2.3822118972238107], "stop_id": 3716897, "stop_desc": "61 RUE DE BERCY - 75112", "stop_name": "GARE DE BERCY - POPB"}, "geometry": {"type": "Point", "coordinates": [2.3822118972238107, 48.837728651093556]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3af3836628dedea6e188d0656d8c7bbc55c6923e", "fields": {"departement": "75", "stop_lat": 48.87543870387126, "code_postal": "75108", "stop_lon": 2.324188259311247, "coord": [48.87543870387126, 2.324188259311247], "stop_id": 3716873, "stop_desc": "FACE 11 RUE DE ROME - 75108", "stop_name": "GARE SAINT-LAZARE"}, "geometry": {"type": "Point", "coordinates": [2.324188259311247, 48.87543870387126]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3c42ce013f33616abdf6c95522ddf5c1fe7c8527", "fields": {"departement": "75", "stop_lat": 48.87330895556756, "code_postal": "75108", "stop_lon": 2.3266275797112237, "coord": [48.87330895556756, 2.3266275797112237], "stop_id": 3716874, "stop_desc": "35 RUE TRONCHET - 75108", "stop_name": "HAVRE - HAUSSMANN"}, "geometry": {"type": "Point", "coordinates": [2.3266275797112237, 48.87330895556756]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "963fc100d960719317868f42c53528305a004c56", "fields": {"departement": "75", "stop_lat": 48.84362972449656, "code_postal": "75113", "stop_lon": 2.365059973309424, "coord": [48.84362972449656, 2.365059973309424], "stop_id": 3716893, "stop_desc": "PLACE VALHUBERT - 75113", "stop_name": "GARE D'AUSTERLITZ"}, "geometry": {"type": "Point", "coordinates": [2.365059973309424, 48.84362972449656]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8b0fb52ecd4ac6b5296d80d0edc3d4d44487ed91", "fields": {"departement": "93", "stop_lat": 48.86410535261505, "code_postal": "93049", "stop_lon": 2.517161542494919, "coord": [48.86410535261505, 2.517161542494919], "stop_id": 3715232, "stop_desc": "CHE DE MEAUX - 93049", "stop_name": "GEORGES POMPIDOU"}, "geometry": {"type": "Point", "coordinates": [2.517161542494919, 48.86410535261505]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fb2a67012cc7ae73b55c14bc0ebf87e596b03ea7", "fields": {"departement": "93", "stop_lat": 48.867468600810184, "code_postal": "93050", "stop_lon": 2.533016754201017, "coord": [48.867468600810184, 2.533016754201017], "stop_id": 3716668, "stop_desc": "AVENUE LEON BLUM - 93050", "stop_name": "ILE DE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.533016754201017, 48.867468600810184]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2222e6c42f0460c87a6ca690d30e33166df09c58", "fields": {"departement": "75", "stop_lat": 48.87052260432167, "code_postal": "75108", "stop_lon": 2.3238352803584, "coord": [48.87052260432167, 2.3238352803584], "stop_id": 3716875, "stop_desc": "11 PLACE DE LA MADELEINE - 75108", "stop_name": "MADELEINE"}, "geometry": {"type": "Point", "coordinates": [2.3238352803584, 48.87052260432167]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "50d9dd17ed74778c21995a83b63698e5518fb908", "fields": {"departement": "75", "stop_lat": 48.84539937588007, "code_postal": "75112", "stop_lon": 2.3686422351772856, "coord": [48.84539937588007, 2.3686422351772856], "stop_id": 3716967, "stop_desc": "1 BOULEVARD DIDEROT - 75112", "stop_name": "PONT D'AUSTERLITZ - QUAI DE LA RAPEE"}, "geometry": {"type": "Point", "coordinates": [2.3686422351772856, 48.84539937588007]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cf1c47f4dea72d040f9e98d02d0d602b430a9975", "fields": {"departement": "94", "stop_lat": 48.80711639570117, "code_postal": "94068", "stop_lon": 2.5101060436758766, "coord": [48.80711639570117, 2.5101060436758766], "stop_id": 3718031, "stop_desc": "PISTE GARE ROUTIERE - 94068", "stop_name": "CHAMPIGNY - SAINT-MAUR RER"}, "geometry": {"type": "Point", "coordinates": [2.5101060436758766, 48.80711639570117]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a86f748765fda8016e86ff6d9b4a198b1ec1ce48", "fields": {"departement": "94", "stop_lat": 48.80708002919739, "code_postal": "94068", "stop_lon": 2.510391672574071, "coord": [48.80708002919739, 2.510391672574071], "stop_id": 3718032, "stop_desc": "RUE ROCHAMBEAU - 94068", "stop_name": "CHAMPIGNY - SAINT-MAUR RER"}, "geometry": {"type": "Point", "coordinates": [2.510391672574071, 48.80708002919739]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c469e014a05d1df84055232410516ced976f018c", "fields": {"departement": "94", "stop_lat": 48.81114673079737, "code_postal": "94017", "stop_lon": 2.5364241396969507, "coord": [48.81114673079737, 2.5364241396969507], "stop_id": 3718014, "stop_desc": "FACE 22 AV DU 11 NOVEMBRE 1918 - 94017", "stop_name": "11 NOVEMBRE 1918"}, "geometry": {"type": "Point", "coordinates": [2.5364241396969507, 48.81114673079737]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c50eb2a2a99b1962b040bdb28090e71472bb7cb6", "fields": {"departement": "94", "stop_lat": 48.806201108282245, "code_postal": "94017", "stop_lon": 2.53240473152121, "coord": [48.806201108282245, 2.53240473152121], "stop_id": 3718018, "stop_desc": "AVENUE MARX DORMOY - 94017", "stop_name": "FORT DE CHAMPIGNY"}, "geometry": {"type": "Point", "coordinates": [2.53240473152121, 48.806201108282245]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "06dc401d7d13190820fa99f29fc52e601f03bd83", "fields": {"departement": "94", "stop_lat": 48.808618224470386, "code_postal": "94017", "stop_lon": 2.5381698136887874, "coord": [48.808618224470386, 2.5381698136887874], "stop_id": 3718017, "stop_desc": "AVENUE DU 11 NOVEMBRE 1918 - 94017", "stop_name": "LES MORDACS"}, "geometry": {"type": "Point", "coordinates": [2.5381698136887874, 48.808618224470386]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "33473a9dbdf107d348d5db7baebe49ffaee4d242", "fields": {"departement": "94", "stop_lat": 48.81150662059484, "code_postal": "94017", "stop_lon": 2.5517212682018378, "coord": [48.81150662059484, 2.5517212682018378], "stop_id": 3718007, "stop_desc": "38 RUE DU PLESSIS TREVISE - 94017", "stop_name": "CHATEAUDUN"}, "geometry": {"type": "Point", "coordinates": [2.5517212682018378, 48.81150662059484]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "15b882f803818cf00abf2922a7d07093d39fc12a", "fields": {"departement": "75", "stop_lat": 48.85059796516235, "code_postal": "75105", "stop_lon": 2.345984155428729, "coord": [48.85059796516235, 2.345984155428729], "stop_id": 3716975, "stop_desc": "63 BD SAINT-GERMAIN - 75105", "stop_name": "DANTE"}, "geometry": {"type": "Point", "coordinates": [2.345984155428729, 48.85059796516235]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7bd862205d65f0e377c48e8b00bb83ba74725201", "fields": {"departement": "94", "stop_lat": 48.79527519230832, "code_postal": "94019", "stop_lon": 2.5611362659209886, "coord": [48.79527519230832, 2.5611362659209886], "stop_id": 3718042, "stop_desc": "AVENUE CHAMPLAIN - 94019", "stop_name": "CENTRE COMMERCIAL DE PINCEVENT"}, "geometry": {"type": "Point", "coordinates": [2.5611362659209886, 48.79527519230832]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "decbd42ddc1e32a9cf371996f62edf7596421c49", "fields": {"departement": "94", "stop_lat": 48.802225242332476, "code_postal": "94019", "stop_lon": 2.5397233570433895, "coord": [48.802225242332476, 2.5397233570433895], "stop_id": 3718065, "stop_desc": "11 BIS ROUTE DE LA LIBERATION - 94019", "stop_name": "AVENUE GEORGES"}, "geometry": {"type": "Point", "coordinates": [2.5397233570433895, 48.802225242332476]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c358c3e88f9790124ed59f800947617da2110f3f", "fields": {"departement": "94", "stop_lat": 48.80191963408518, "code_postal": "94019", "stop_lon": 2.5397357710998154, "coord": [48.80191963408518, 2.5397357710998154], "stop_id": 3718066, "stop_desc": "22 ROUTE DE LA LIBERATION - 94019", "stop_name": "AVENUE GEORGES"}, "geometry": {"type": "Point", "coordinates": [2.5397357710998154, 48.80191963408518]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "737d01ea4503d900b7cde3b5ef131883f105b7c5", "fields": {"departement": "94", "stop_lat": 48.812500911822575, "code_postal": "94017", "stop_lon": 2.5156354416957813, "coord": [48.812500911822575, 2.5156354416957813], "stop_id": 3718073, "stop_desc": "1 AVENUE MARX DORMOY - 94017", "stop_name": "RUE DU MONUMENT"}, "geometry": {"type": "Point", "coordinates": [2.5156354416957813, 48.812500911822575]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "505d54fe69c95d6deffa9b239a31a8d611edb4bb", "fields": {"departement": "94", "stop_lat": 48.80637518638514, "code_postal": "94059", "stop_lon": 2.575049648846353, "coord": [48.80637518638514, 2.575049648846353], "stop_id": 3718038, "stop_desc": "51 AVENUE JEAN KIFFER - 94059", "stop_name": "AVENUE ARDOUIN"}, "geometry": {"type": "Point", "coordinates": [2.575049648846353, 48.80637518638514]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "098f894581e53f1dfbc869b4fc195977bacc865c", "fields": {"departement": "94", "stop_lat": 48.81079518388607, "code_postal": "94017", "stop_lon": 2.5202699488603515, "coord": [48.81079518388607, 2.5202699488603515], "stop_id": 3718071, "stop_desc": "FACE 30 AVENUE MARX DORMOY - 94017", "stop_name": "MARTELET"}, "geometry": {"type": "Point", "coordinates": [2.5202699488603515, 48.81079518388607]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b7b55bb1ea873a7f4c0290822c4d02f78505d206", "fields": {"departement": "94", "stop_lat": 48.79847608769021, "code_postal": "94019", "stop_lon": 2.555653684306482, "coord": [48.79847608769021, 2.555653684306482], "stop_id": 3718045, "stop_desc": "RUE DES BORDES - 94019", "stop_name": "LYCEE CHAMPLAIN"}, "geometry": {"type": "Point", "coordinates": [2.555653684306482, 48.79847608769021]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7aa344ad167d2fa299ca7a74ae61e341e6e9805f", "fields": {"departement": "94", "stop_lat": 48.80418174889629, "code_postal": "94019", "stop_lon": 2.546561397788981, "coord": [48.80418174889629, 2.546561397788981], "stop_id": 3718059, "stop_desc": "19 AVENUE BOILEAU - 94019", "stop_name": "CLAUDE BERNARD"}, "geometry": {"type": "Point", "coordinates": [2.546561397788981, 48.80418174889629]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c6eaa41c5dfca7f24a577fc2c4aa9b48f79ce839", "fields": {"departement": "94", "stop_lat": 48.80599270326873, "code_postal": "94017", "stop_lon": 2.54915400470061, "coord": [48.80599270326873, 2.54915400470061], "stop_id": 3718058, "stop_desc": "FACE 3 RUE JACQUES SOLOMON - 94017", "stop_name": "RODIN"}, "geometry": {"type": "Point", "coordinates": [2.54915400470061, 48.80599270326873]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b64b49899a2cebf4f7a60501b96fb3ff9dcfdc83", "fields": {"departement": "94", "stop_lat": 48.813165663031356, "code_postal": "94017", "stop_lon": 2.509772359937948, "coord": [48.813165663031356, 2.509772359937948], "stop_id": 3718077, "stop_desc": "RUE GEORGES DIMITROV - 94017", "stop_name": "MAIRIE DE CHAMPIGNY - MARCHE"}, "geometry": {"type": "Point", "coordinates": [2.509772359937948, 48.813165663031356]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8cc453d6212047eaa297cfecbc4ea54c2f823072", "fields": {"departement": "94", "stop_lat": 48.807025805427855, "code_postal": "94068", "stop_lon": 2.5105955986551045, "coord": [48.807025805427855, 2.5105955986551045], "stop_id": 3718117, "stop_desc": "PISTE GARE ROUTIERE - 94068", "stop_name": "CHAMPIGNY - SAINT-MAUR RER."}, "geometry": {"type": "Point", "coordinates": [2.5105955986551045, 48.807025805427855]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "745d242b26620df230e23c8a28358ccbb0bf1a60", "fields": {"departement": "94", "stop_lat": 48.806917555441274, "code_postal": "94068", "stop_lon": 2.510867379207914, "coord": [48.806917555441274, 2.510867379207914], "stop_id": 3718086, "stop_desc": "PISTE GARE ROUTIERE - 94068", "stop_name": "CHAMPIGNY - SAINT-MAUR RER"}, "geometry": {"type": "Point", "coordinates": [2.510867379207914, 48.806917555441274]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "61151438872d7efb20ab7dbdf105a2d53d28d637", "fields": {"departement": "94", "stop_lat": 48.8104575894782, "code_postal": "94017", "stop_lon": 2.5452258975293547, "coord": [48.8104575894782, 2.5452258975293547], "stop_id": 3718104, "stop_desc": "FACE 13 R DE L'ABREUVOIR - 94017", "stop_name": "ROND-POINT DU CHATEAU"}, "geometry": {"type": "Point", "coordinates": [2.5452258975293547, 48.8104575894782]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5d928cbf5bc5a9d7e11d35a9bef55d710afaf1ab", "fields": {"departement": "94", "stop_lat": 48.81114673079737, "code_postal": "94017", "stop_lon": 2.5364241396969507, "coord": [48.81114673079737, 2.5364241396969507], "stop_id": 3718107, "stop_desc": "FACE 22 AV DU 11 NOVEMBRE 1918 - 94017", "stop_name": "11 NOVEMBRE 1918"}, "geometry": {"type": "Point", "coordinates": [2.5364241396969507, 48.81114673079737]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6121e12d54110ae59639dd498e67de6be7a2247c", "fields": {"departement": "94", "stop_lat": 48.821372122253266, "code_postal": "94018", "stop_lon": 2.415176842268104, "coord": [48.821372122253266, 2.415176842268104], "stop_id": 3724086, "stop_desc": "R ALFRED SAVOURE - 94018", "stop_name": "CHARENTON-ECOLES-METRO"}, "geometry": {"type": "Point", "coordinates": [2.415176842268104, 48.821372122253266]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b1138011825f6feb371385eab6cd4949418f9127", "fields": {"departement": "94", "stop_lat": 48.805516067822516, "code_postal": "94019", "stop_lon": 2.53359954975718, "coord": [48.805516067822516, 2.53359954975718], "stop_id": 3718092, "stop_desc": "ROUTE DE LA LIBERATION - 94019", "stop_name": "FORT DE CHAMPIGNY"}, "geometry": {"type": "Point", "coordinates": [2.53359954975718, 48.805516067822516]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4c866c9564ee90af1b8230719e98b359d3d375b7", "fields": {"departement": "94", "stop_lat": 48.8053443321774, "code_postal": "94019", "stop_lon": 2.554825354314781, "coord": [48.8053443321774, 2.554825354314781], "stop_id": 3718100, "stop_desc": "ROUTE DU PLESSIS TREVISE - 94019", "stop_name": "COLLEGE BOILEAU"}, "geometry": {"type": "Point", "coordinates": [2.554825354314781, 48.8053443321774]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ddfb9ec19529d50c2b89558a287af91762a42699", "fields": {"departement": "94", "stop_lat": 48.81245572828767, "code_postal": "94017", "stop_lon": 2.5157985890662338, "coord": [48.81245572828767, 2.5157985890662338], "stop_id": 3718113, "stop_desc": "1 AVENUE MARX DORMOY - 94017", "stop_name": "RUE DU MONUMENT."}, "geometry": {"type": "Point", "coordinates": [2.5157985890662338, 48.81245572828767]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8ac17705b3862eec2669dd11c65940bc78203659", "fields": {"departement": "94", "stop_lat": 48.81025489203839, "code_postal": "94017", "stop_lon": 2.520934834992837, "coord": [48.81025489203839, 2.520934834992837], "stop_id": 3718090, "stop_desc": "38-40 AVENUE MARX DORMOY - 94017", "stop_name": "MARTELET"}, "geometry": {"type": "Point", "coordinates": [2.520934834992837, 48.81025489203839]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f869750b00e7e4fdecd16363630245dc74aeabd2", "fields": {"departement": "94", "stop_lat": 48.76992408524456, "code_postal": "94021", "stop_lon": 2.3378937546024634, "coord": [48.76992408524456, 2.3378937546024634], "stop_id": 3730651, "stop_desc": "FACE 88/92 BOULEVARD JEAN MERMOZ - 94021", "stop_name": "CROIX DU SUD - CENTRE DE PNEUMOLOGIE"}, "geometry": {"type": "Point", "coordinates": [2.3378937546024634, 48.76992408524456]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fde0d236c6a8252e43b644117f938eb5a1342c81", "fields": {"departement": "94", "stop_lat": 48.790164885806014, "code_postal": "94016", "stop_lon": 2.3315007465699185, "coord": [48.790164885806014, 2.3315007465699185], "stop_id": 3730346, "stop_desc": "FACE 1 AV DE LA DIVISION LECLERC - 94016", "stop_name": "DIVISION LECLERC - CAMILLE DESMOULINS"}, "geometry": {"type": "Point", "coordinates": [2.3315007465699185, 48.790164885806014]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5f5ea23feedb2545f8c37be8a47adf490c7ca5dd", "fields": {"departement": "94", "stop_lat": 48.77510965880391, "code_postal": "94038", "stop_lon": 2.3260765182652072, "coord": [48.77510965880391, 2.3260765182652072], "stop_id": 3730353, "stop_desc": "FACE 3 AVENUE CHARLES FLOUQUET - 94038", "stop_name": "BARBUSSE - LARROUMES"}, "geometry": {"type": "Point", "coordinates": [2.3260765182652072, 48.77510965880391]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c7d26511c62cb38ab9b108f64339929fc491d226", "fields": {"departement": "94", "stop_lat": 48.78742885991961, "code_postal": "94076", "stop_lon": 2.367464633032502, "coord": [48.78742885991961, 2.367464633032502], "stop_id": 3730627, "stop_desc": "PISTE GARE ROUTIERE - 94076", "stop_name": "VILLEJUIF - LOUIS ARAGON"}, "geometry": {"type": "Point", "coordinates": [2.367464633032502, 48.78742885991961]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1b8c578424179acc8cb2722e9c03752d9cd13365", "fields": {"departement": "92", "stop_lat": 48.80574038095107, "code_postal": "92007", "stop_lon": 2.3253215530584908, "coord": [48.80574038095107, 2.3253215530584908], "stop_id": 3730335, "stop_desc": "26 AVENUE ARISTIDE BRIAND - 92007", "stop_name": "CROIX D'ARCUEIL"}, "geometry": {"type": "Point", "coordinates": [2.3253215530584908, 48.80574038095107]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ccacab5a53750b91bfb7f79de4498468629ad23e", "fields": {"departement": "94", "stop_lat": 48.77589211459192, "code_postal": "94038", "stop_lon": 2.3397704819584093, "coord": [48.77589211459192, 2.3397704819584093], "stop_id": 3730646, "stop_desc": "124 AVENUE PAUL VAILLANT COUTURIER - 94038", "stop_name": "TOURNELLES"}, "geometry": {"type": "Point", "coordinates": [2.3397704819584093, 48.77589211459192]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "58a22baab775d537d27c32574cb63d5f5a45c563", "fields": {"departement": "94", "stop_lat": 48.78461598883045, "code_postal": "94076", "stop_lon": 2.3660348682465173, "coord": [48.78461598883045, 2.3660348682465173], "stop_id": 3730629, "stop_desc": "4 RUE DES VILLAS - 94076", "stop_name": "LES BONS ENFANTS"}, "geometry": {"type": "Point", "coordinates": [2.3660348682465173, 48.78461598883045]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "53128003a849e4fa11aeee1fd1db08546ee6b015", "fields": {"departement": "94", "stop_lat": 48.7807882194003, "code_postal": "94076", "stop_lon": 2.361041465726019, "coord": [48.7807882194003, 2.361041465726019], "stop_id": 3730633, "stop_desc": "22 RUE SAINTE-COLOMBE - 94076", "stop_name": "LAMARTINE"}, "geometry": {"type": "Point", "coordinates": [2.361041465726019, 48.7807882194003]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "48f16fa3da5e8aa41c47486f72b5243349c80856", "fields": {"departement": "92", "stop_lat": 48.819462162874615, "code_postal": "92046", "stop_lon": 2.310033969847727, "coord": [48.819462162874615, 2.310033969847727], "stop_id": 3729701, "stop_desc": "62 AVENUE PIERRE BROSSOLETTE - 92046", "stop_name": "PIERRE BROSSOLETTE - GABRIEL PERI"}, "geometry": {"type": "Point", "coordinates": [2.310033969847727, 48.819462162874615]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a4a7481cb6c0155211493d0fbb2d1aa087eeb79d", "fields": {"departement": "94", "stop_lat": 48.81783566839134, "code_postal": "94069", "stop_lon": 2.4438885020756413, "coord": [48.81783566839134, 2.4438885020756413], "stop_id": 3724101, "stop_desc": "134 RUE DU MARECHAL LECLERC - 94069", "stop_name": "PASSERELLE DE CHARENTONNEAU"}, "geometry": {"type": "Point", "coordinates": [2.4438885020756413, 48.81783566839134]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "75e5baba92b827c7e6dfdd4e4f371f77754ef8e4", "fields": {"departement": "94", "stop_lat": 48.757493168483855, "code_postal": "94034", "stop_lon": 2.3277659781564033, "coord": [48.757493168483855, 2.3277659781564033], "stop_id": 3730049, "stop_desc": "80 AVENUE DE LA DIVISION LECLERC - 94034", "stop_name": "LE CLOS LA GARENNE"}, "geometry": {"type": "Point", "coordinates": [2.3277659781564033, 48.757493168483855]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7583d3a34bb5e9ce138ea58d3df67e5330903ff3", "fields": {"departement": "77", "stop_lat": 48.85768954307082, "code_postal": "77083", "stop_lon": 2.5863583529846585, "coord": [48.85768954307082, 2.5863583529846585], "stop_id": 3724669, "stop_desc": "FACE AU 76 RUE AUGUSTE VALLAUD - 77083", "stop_name": "VALLAUD - JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.5863583529846585, 48.85768954307082]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d0f0928a2018a9f5efea931dd09c0ba75478b6a0", "fields": {"departement": "94", "stop_lat": 48.82141691790273, "code_postal": "94018", "stop_lon": 2.415394683512984, "coord": [48.82141691790273, 2.415394683512984], "stop_id": 3724087, "stop_desc": "4 RUE ALFRED SAVOURE - 94018", "stop_name": "CHARENTON-ECOLES-METRO"}, "geometry": {"type": "Point", "coordinates": [2.415394683512984, 48.82141691790273]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9242504cf315f7c80f86d6e577b4dbdb002a7cd9", "fields": {"departement": "94", "stop_lat": 48.81799355417233, "code_postal": "94069", "stop_lon": 2.4481487511090174, "coord": [48.81799355417233, 2.4481487511090174], "stop_id": 3724104, "stop_desc": "FACE 156 RUE DU MARECHAL LECLERC - 94069", "stop_name": "CFA - ANDRIEU"}, "geometry": {"type": "Point", "coordinates": [2.4481487511090174, 48.81799355417233]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1dc211b81b54c27ef00cb3673f86d16389938983", "fields": {"departement": "94", "stop_lat": 48.76078187321723, "code_postal": "94034", "stop_lon": 2.319472436806623, "coord": [48.76078187321723, 2.319472436806623], "stop_id": 3730046, "stop_desc": "AVENUE DE LA DIVISION LECLERC - 94034", "stop_name": "DOCTEUR TENINE"}, "geometry": {"type": "Point", "coordinates": [2.319472436806623, 48.76078187321723]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c78cd660e183fecc21cde5e65801cb152b644dc2", "fields": {"departement": "77", "stop_lat": 48.85937295143276, "code_postal": "77083", "stop_lon": 2.589322173836797, "coord": [48.85937295143276, 2.589322173836797], "stop_id": 3724671, "stop_desc": "22 AVENUE DE LA MORELLE - 77083", "stop_name": "ALBERT BERTHELOT"}, "geometry": {"type": "Point", "coordinates": [2.589322173836797, 48.85937295143276]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6f6633134ae2a3892d27f091d528c0d7120455d2", "fields": {"departement": "92", "stop_lat": 48.816448613894025, "code_postal": "92046", "stop_lon": 2.3001686149082823, "coord": [48.816448613894025, 2.3001686149082823], "stop_id": 3729705, "stop_desc": "39 R GUY MOCQUET - 92046", "stop_name": "MAURICE THOREZ"}, "geometry": {"type": "Point", "coordinates": [2.3001686149082823, 48.816448613894025]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "92a9b695dbef4fe12ad510dfb83874d612e125a6", "fields": {"departement": "92", "stop_lat": 48.821745681267025, "code_postal": "92046", "stop_lon": 2.313013571294374, "coord": [48.821745681267025, 2.313013571294374], "stop_id": 3729699, "stop_desc": "FACE 37 AV PIERRE BROSSOLETTE - 92046", "stop_name": "DEPINOY"}, "geometry": {"type": "Point", "coordinates": [2.313013571294374, 48.821745681267025]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f83b3762788f7bd5983cf842c89a7c994f3c5f4c", "fields": {"departement": "94", "stop_lat": 48.77917960119566, "code_postal": "94038", "stop_lon": 2.359857546365134, "coord": [48.77917960119566, 2.359857546365134], "stop_id": 3730680, "stop_desc": "FACE 26-32 RUE SAINTE COLOMBE - 94038", "stop_name": "GUSTAVE CHARPENTIER"}, "geometry": {"type": "Point", "coordinates": [2.359857546365134, 48.77917960119566]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0d4abc8aca89a5869dd88e86613a5364a91c3438", "fields": {"departement": "94", "stop_lat": 48.753447516698884, "code_postal": "94034", "stop_lon": 2.319271049887183, "coord": [48.753447516698884, 2.319271049887183], "stop_id": 3730661, "stop_desc": "FACE 17 RUE AUGUSTE DAIX - 94034", "stop_name": "LA TOUR AUX CHARTIERS"}, "geometry": {"type": "Point", "coordinates": [2.319271049887183, 48.753447516698884]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cf75e30f011f2eb377f0d57d89a3dcbae18242fb", "fields": {"departement": "94", "stop_lat": 48.75334866322361, "code_postal": "94034", "stop_lon": 2.319379828415558, "coord": [48.75334866322361, 2.319379828415558], "stop_id": 3730662, "stop_desc": "21-23 RUE AUGUSTE DAIX - 94034", "stop_name": "LA TOUR AUX CHARTIERS"}, "geometry": {"type": "Point", "coordinates": [2.319379828415558, 48.75334866322361]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f98b59e7d2ea59b7871e7d60679ddfc9af602a56", "fields": {"departement": "94", "stop_lat": 48.755973573677295, "code_postal": "94034", "stop_lon": 2.322016108850226, "coord": [48.755973573677295, 2.322016108850226], "stop_id": 3730659, "stop_desc": "SQUARE DU 19 MARS 1962 - 94034", "stop_name": "MAIRIE DE FRESNES"}, "geometry": {"type": "Point", "coordinates": [2.322016108850226, 48.755973573677295]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0f6310c9044a91d9a16b6432262c6817c26a62dd", "fields": {"departement": "94", "stop_lat": 48.75574884176963, "code_postal": "94034", "stop_lon": 2.321798676035864, "coord": [48.75574884176963, 2.321798676035864], "stop_id": 3730660, "stop_desc": "SQUARE DU 19 MARS 1962 - 94034", "stop_name": "MAIRIE DE FRESNES"}, "geometry": {"type": "Point", "coordinates": [2.321798676035864, 48.75574884176963]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d81d813904be33f3c7bb8beb7178ed223f1d20b7", "fields": {"departement": "94", "stop_lat": 48.76693101878247, "code_postal": "94038", "stop_lon": 2.334073074719126, "coord": [48.76693101878247, 2.334073074719126], "stop_id": 3730652, "stop_desc": "56 BIS RUE DE FRESNES - 94038", "stop_name": "CAMELIAS-DAUVIN"}, "geometry": {"type": "Point", "coordinates": [2.334073074719126, 48.76693101878247]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7aded711c35194a37dcdcac58661bacf5f036be9", "fields": {"departement": "94", "stop_lat": 48.78461598883045, "code_postal": "94076", "stop_lon": 2.3660348682465173, "coord": [48.78461598883045, 2.3660348682465173], "stop_id": 3730677, "stop_desc": "4 RUE DES VILLAS - 94076", "stop_name": "LES BONS ENFANTS"}, "geometry": {"type": "Point", "coordinates": [2.3660348682465173, 48.78461598883045]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9b3882cd70f37389596d9a6b9a75c72ff4ac3762", "fields": {"departement": "94", "stop_lat": 48.75273637115016, "code_postal": "94034", "stop_lon": 2.3131680923667566, "coord": [48.75273637115016, 2.3131680923667566], "stop_id": 3730671, "stop_desc": "AVENUE DU PARC DES SPORTS - 94034", "stop_name": "8 MAI 1945"}, "geometry": {"type": "Point", "coordinates": [2.3131680923667566, 48.75273637115016]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "872a3b6328759b47e844812bffddd95ab441c704", "fields": {"departement": "94", "stop_lat": 48.76133126781931, "code_postal": "94034", "stop_lon": 2.3301852104480387, "coord": [48.76133126781931, 2.3301852104480387], "stop_id": 3730656, "stop_desc": "54 AVENUE DE LA PAIX - 94034", "stop_name": "GALLIENI"}, "geometry": {"type": "Point", "coordinates": [2.3301852104480387, 48.76133126781931]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f4f469b4e183af31987eea7cdf4c7d79cd1398d4", "fields": {"departement": "93", "stop_lat": 48.896658925161226, "code_postal": "93055", "stop_lon": 2.4014549509994745, "coord": [48.896658925161226, 2.4014549509994745], "stop_id": 3731636, "stop_desc": "FACE 80 AVENUE DU GENERAL LECLERC - 93055", "stop_name": "PANTIN RER - MAIRIE"}, "geometry": {"type": "Point", "coordinates": [2.4014549509994745, 48.896658925161226]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e357819a7df5c6efabcd7a0173bac5883f9b09d5", "fields": {"departement": "93", "stop_lat": 48.91793100082623, "code_postal": "93029", "stop_lon": 2.4678488815745263, "coord": [48.91793100082623, 2.4678488815745263], "stop_id": 3731671, "stop_desc": "FACE 48-50 RUE DE L'ARGONNE - 93029", "stop_name": "ARGONNE - BOIS DE GROSLAY"}, "geometry": {"type": "Point", "coordinates": [2.4678488815745263, 48.91793100082623]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c370b537c1cd48cc6262c817ed19367f06a31217", "fields": {"departement": "93", "stop_lat": 48.91995160206817, "code_postal": "93029", "stop_lon": 2.4517898551894257, "coord": [48.91995160206817, 2.4517898551894257], "stop_id": 3731660, "stop_desc": "128 AVENUE HENRI BARBUSSE - 93029", "stop_name": "PLACE DU 19 MARS 1962"}, "geometry": {"type": "Point", "coordinates": [2.4517898551894257, 48.91995160206817]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7fa78c5d177751561af0045fd982e629701ecfd6", "fields": {"departement": "93", "stop_lat": 48.90369485870172, "code_postal": "93008", "stop_lon": 2.4178635488682256, "coord": [48.90369485870172, 2.4178635488682256], "stop_id": 3731643, "stop_desc": "2-6 AVENUE HENRI BARBUSSE - 93008", "stop_name": "CHEMIN DES VIGNES"}, "geometry": {"type": "Point", "coordinates": [2.4178635488682256, 48.90369485870172]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "36cbf2f639775599b6fc1b8744f916d7ee893be8", "fields": {"departement": "93", "stop_lat": 48.91663286278753, "code_postal": "93029", "stop_lon": 2.4448691169000547, "coord": [48.91663286278753, 2.4448691169000547], "stop_id": 3731656, "stop_desc": "46 AVENUE HENRI BARBUSSE - 93029", "stop_name": "CHARLES GIDE"}, "geometry": {"type": "Point", "coordinates": [2.4448691169000547, 48.91663286278753]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0c45c66b63aed271fa69dbe6be4839adc133ac46", "fields": {"departement": "93", "stop_lat": 48.918166678354744, "code_postal": "93029", "stop_lon": 2.465994938008684, "coord": [48.918166678354744, 2.465994938008684], "stop_id": 3731669, "stop_desc": "R DES BOIS DE GROSLAY - 93029", "stop_name": "MARCEL CACHIN"}, "geometry": {"type": "Point", "coordinates": [2.465994938008684, 48.918166678354744]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "906267018197c76d914e39e6353eee20adc40578", "fields": {"departement": "94", "stop_lat": 48.76113351614437, "code_postal": "94034", "stop_lon": 2.329967716107387, "coord": [48.76113351614437, 2.329967716107387], "stop_id": 3730691, "stop_desc": "FACE 50 AVENUE DE LA PAIX - 94034", "stop_name": "GALLIENI"}, "geometry": {"type": "Point", "coordinates": [2.329967716107387, 48.76113351614437]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "982e1e2e806f65bd6982b7f836b76b52637e4cf0", "fields": {"departement": "93", "stop_lat": 48.898166318336614, "code_postal": "93055", "stop_lon": 2.4058460102302743, "coord": [48.898166318336614, 2.4058460102302743], "stop_id": 3731638, "stop_desc": "AVENUE DU GENERAL LECLERC - 93055", "stop_name": "DELIZY"}, "geometry": {"type": "Point", "coordinates": [2.4058460102302743, 48.898166318336614]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0e0c960fc0fdcb322be64f2ab9c07ceac61f5cde", "fields": {"departement": "93", "stop_lat": 48.89786081877813, "code_postal": "93055", "stop_lon": 2.4057365582595267, "coord": [48.89786081877813, 2.4057365582595267], "stop_id": 3731637, "stop_desc": "AVENUE DU GENERAL LECLERC - 93055", "stop_name": "DELIZY"}, "geometry": {"type": "Point", "coordinates": [2.4057365582595267, 48.89786081877813]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3b95391225014a7e126402a5893d008236f6582d", "fields": {"departement": "93", "stop_lat": 48.891454882127, "code_postal": "93055", "stop_lon": 2.4023344067333996, "coord": [48.891454882127, 2.4023344067333996], "stop_id": 3731630, "stop_desc": "3 RUE HOCHE - 93055", "stop_name": "HOCHE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.4023344067333996, 48.891454882127]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "247539e79c6e60055546d03480606e8d4f158a53", "fields": {"departement": "91", "stop_lat": 48.669856074950665, "code_postal": "91216", "stop_lon": 2.3317854623021534, "coord": [48.669856074950665, 2.3317854623021534], "stop_id": 3732115, "stop_desc": "PLACE STALINGRAD - 91216", "stop_name": "GARE D'EPINAY-SUR-ORGE RER"}, "geometry": {"type": "Point", "coordinates": [2.3317854623021534, 48.669856074950665]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f7c39bd8bf3236a5c22ac16fe02a04338af87e54", "fields": {"departement": "91", "stop_lat": 48.669856074950665, "code_postal": "91216", "stop_lon": 2.3317854623021534, "coord": [48.669856074950665, 2.3317854623021534], "stop_id": 3732116, "stop_desc": "PLACE STALINGRAD - 91216", "stop_name": "GARE D'EPINAY-SUR-ORGE RER"}, "geometry": {"type": "Point", "coordinates": [2.3317854623021534, 48.669856074950665]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "756d977e7cdea8f30d2e2a2f9ef4dc21cb64cedc", "fields": {"departement": "91", "stop_lat": 48.67269658436055, "code_postal": "91589", "stop_lon": 2.3409326784132385, "coord": [48.67269658436055, 2.3409326784132385], "stop_id": 3732121, "stop_desc": "FACE 5 AV HENRI OUZILLEAU - 91589", "stop_name": "COLLEGE JEAN MERMOZ"}, "geometry": {"type": "Point", "coordinates": [2.3409326784132385, 48.67269658436055]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5cbf09b9b990da25b022e87ae2c6ec70c03fef52", "fields": {"departement": "93", "stop_lat": 48.91859536998403, "code_postal": "93010", "stop_lon": 2.4763869562903142, "coord": [48.91859536998403, 2.4763869562903142], "stop_id": 3731673, "stop_desc": "18 AVENUE DE SURCOUF - 93010", "stop_name": "JARDINS DE LA NOUE"}, "geometry": {"type": "Point", "coordinates": [2.4763869562903142, 48.91859536998403]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b128eb65ab6fb6be1c4a57245022efa6478882f5", "fields": {"departement": "91", "stop_lat": 48.674583884495874, "code_postal": "91589", "stop_lon": 2.346850409634568, "coord": [48.674583884495874, 2.346850409634568], "stop_id": 3732125, "stop_desc": "5-7 AV GAMBETTA - 91589", "stop_name": "MARTINIERE"}, "geometry": {"type": "Point", "coordinates": [2.346850409634568, 48.674583884495874]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a7f9c54d151a7af2f0428431e59c6a53a34a4406", "fields": {"departement": "75", "stop_lat": 48.882484174807665, "code_postal": "75117", "stop_lon": 2.3198940095468057, "coord": [48.882484174807665, 2.3198940095468057], "stop_id": 3765190, "stop_desc": "77 R DE ROME - 75117", "stop_name": "ROME - BATIGNOLLES"}, "geometry": {"type": "Point", "coordinates": [2.3198940095468057, 48.882484174807665]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "95ed0183a6641cb3fa39b706526283e5be8beba8", "fields": {"departement": "75", "stop_lat": 48.872033003523995, "code_postal": "75109", "stop_lon": 2.3298976383299848, "coord": [48.872033003523995, 2.3298976383299848], "stop_id": 3765192, "stop_desc": "FACE 8 RUE AUBER - 75109", "stop_name": "AUBER"}, "geometry": {"type": "Point", "coordinates": [2.3298976383299848, 48.872033003523995]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "42580e0b35b06347b8ca02945ee71644387e09a7", "fields": {"departement": "75", "stop_lat": 48.84705496127261, "code_postal": "75105", "stop_lon": 2.3604182094584814, "coord": [48.84705496127261, 2.3604182094584814], "stop_id": 3765198, "stop_desc": "5 QUAI SAINT BERNARD - 75105", "stop_name": "CUVIER"}, "geometry": {"type": "Point", "coordinates": [2.3604182094584814, 48.84705496127261]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7238a468e344472beb17b4df474fedf4c3cd083e", "fields": {"departement": "75", "stop_lat": 48.8564215738714, "code_postal": "75107", "stop_lon": 2.3254733349230117, "coord": [48.8564215738714, 2.3254733349230117], "stop_id": 3765212, "stop_desc": "242 BOULEVARD SAINT-GERMAIN - 75107", "stop_name": "RUE DU BAC - RENE CHAR"}, "geometry": {"type": "Point", "coordinates": [2.3254733349230117, 48.8564215738714]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "28df7834008e2fbd002ac4cc774ae6e821e3c531", "fields": {"departement": "75", "stop_lat": 48.857607734065525, "code_postal": "75107", "stop_lon": 2.323770519843578, "coord": [48.857607734065525, 2.323770519843578], "stop_id": 3765215, "stop_desc": "FACE 250 BOULEVARD SAINT-GERMAIN - 75107", "stop_name": "SOLFERINO - BELLECHASSE"}, "geometry": {"type": "Point", "coordinates": [2.323770519843578, 48.857607734065525]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5f04c00629081c91937412c36073e2d4c312c7eb", "fields": {"departement": "75", "stop_lat": 48.86303579060667, "code_postal": "75116", "stop_lon": 2.2882298532894727, "coord": [48.86303579060667, 2.2882298532894727], "stop_id": 3765234, "stop_desc": "FACE 48 AVENUE DU PRESIDENT WILSON - 75116", "stop_name": "TROCADERO"}, "geometry": {"type": "Point", "coordinates": [2.2882298532894727, 48.86303579060667]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7d06266664445422a72d6e3e1e46d361545d6b61", "fields": {"departement": "75", "stop_lat": 48.86327842723398, "code_postal": "75116", "stop_lon": 2.2697992496794286, "coord": [48.86327842723398, 2.2697992496794286], "stop_id": 3765243, "stop_desc": "96 AVENUE HENRI MARTIN - 75116", "stop_name": "OCTAVE FEUILLET"}, "geometry": {"type": "Point", "coordinates": [2.2697992496794286, 48.86327842723398]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0daf7a5a39624c9b5d09e9f6a099778a525cb77c", "fields": {"departement": "75", "stop_lat": 48.86290968142258, "code_postal": "75116", "stop_lon": 2.2693365893947055, "coord": [48.86290968142258, 2.2693365893947055], "stop_id": 3765244, "stop_desc": "115 AVENUE HENRI MARTIN - 75116", "stop_name": "OCTAVE FEUILLET"}, "geometry": {"type": "Point", "coordinates": [2.2693365893947055, 48.86290968142258]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6938215289c4e0f1fbc16695071c66cb804d1769", "fields": {"departement": "75", "stop_lat": 48.86237873625398, "code_postal": "75116", "stop_lon": 2.268138581898066, "coord": [48.86237873625398, 2.268138581898066], "stop_id": 3765246, "stop_desc": "BOULEVARD SUCHET - 75116", "stop_name": "PORTE DE LA MUETTE"}, "geometry": {"type": "Point", "coordinates": [2.268138581898066, 48.86237873625398]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f6b62963da6e19ccb141f7cfd4b34bceee939794", "fields": {"departement": "75", "stop_lat": 48.85462441442023, "code_postal": "75107", "stop_lon": 2.3294779001454495, "coord": [48.85462441442023, 2.3294779001454495], "stop_id": 3765248, "stop_desc": "183-185 BOULEVARD SAINT GERMAIN - 75107", "stop_name": "SAINT-GUILLAUME"}, "geometry": {"type": "Point", "coordinates": [2.3294779001454495, 48.85462441442023]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bdd17b76119f0751c3db2a8d1763fe007c308654", "fields": {"departement": "75", "stop_lat": 48.84968990052811, "code_postal": "75105", "stop_lon": 2.3496881764388644, "coord": [48.84968990052811, 2.3496881764388644], "stop_id": 3765252, "stop_desc": "47 BOULEVARD SAINT-GERMAIN - 75105", "stop_name": "MAUBERT - MUTUALITE"}, "geometry": {"type": "Point", "coordinates": [2.3496881764388644, 48.84968990052811]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5b22a7ae8dad4c2526f68b89724b7a346bf50445", "fields": {"departement": "75", "stop_lat": 48.84353974667888, "code_postal": "75113", "stop_lon": 2.365495658602017, "coord": [48.84353974667888, 2.365495658602017], "stop_id": 3765255, "stop_desc": "QUAI D'AUSTERLITZ - 75113", "stop_name": "GARE D'AUSTERLITZ"}, "geometry": {"type": "Point", "coordinates": [2.365495658602017, 48.84353974667888]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b7151ac135dbda32fd052819c9f8dd211a603472", "fields": {"departement": "75", "stop_lat": 48.831570105297956, "code_postal": "75113", "stop_lon": 2.35643614543779, "coord": [48.831570105297956, 2.35643614543779], "stop_id": 3765258, "stop_desc": "7 PLACE D'ITALIE - 75113", "stop_name": "PLACE D'ITALIE"}, "geometry": {"type": "Point", "coordinates": [2.35643614543779, 48.831570105297956]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fc7b08c944aa3693252838716bb8ae9c8a7c149c", "fields": {"departement": "75", "stop_lat": 48.82702909203566, "code_postal": "75113", "stop_lon": 2.367351563599449, "coord": [48.82702909203566, 2.367351563599449], "stop_id": 3765262, "stop_desc": "89 RUE DE TOLBIAC - 75113", "stop_name": "OLYMPIADES"}, "geometry": {"type": "Point", "coordinates": [2.367351563599449, 48.82702909203566]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cfdc35d9007b99493ae0d666f72f72893b70df47", "fields": {"departement": "75", "stop_lat": 48.82946258331531, "code_postal": "75113", "stop_lon": 2.3749354044210107, "coord": [48.82946258331531, 2.3749354044210107], "stop_id": 3765264, "stop_desc": "7 RUE DE TOLBIAC - 75113", "stop_name": "BIBLIOTHEQUE CHEVALERET"}, "geometry": {"type": "Point", "coordinates": [2.3749354044210107, 48.82946258331531]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fdaee1c508fde056e5995f0e5a2e787f6eee03fe", "fields": {"departement": "75", "stop_lat": 48.83949141603019, "code_postal": "75112", "stop_lon": 2.3995052525251834, "coord": [48.83949141603019, 2.3995052525251834], "stop_id": 3765271, "stop_desc": "76 BOULEVARD DE REUILLY - 75112", "stop_name": "PICPUS - REUILLY"}, "geometry": {"type": "Point", "coordinates": [2.3995052525251834, 48.83949141603019]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "21ff0bb14547d48f99b41a2a35821712544fc0e7", "fields": {"departement": "75", "stop_lat": 48.851171364007484, "code_postal": "75120", "stop_lon": 2.406437559672925, "coord": [48.851171364007484, 2.406437559672925], "stop_id": 3765276, "stop_desc": "40-42 RUE DES PYRENEES - 75120", "stop_name": "LA PLAINE"}, "geometry": {"type": "Point", "coordinates": [2.406437559672925, 48.851171364007484]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9611027264d74a64cc5332f46b8e440bd5c6cde2", "fields": {"departement": "75", "stop_lat": 48.86130368224057, "code_postal": "75120", "stop_lon": 2.4001716388244585, "coord": [48.86130368224057, 2.4001716388244585], "stop_id": 3765284, "stop_desc": "191 RUE DES PYRENEES - 75120", "stop_name": "RAMUS"}, "geometry": {"type": "Point", "coordinates": [2.4001716388244585, 48.86130368224057]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "91f6680e69c8aa976ca06cb5178a558f439d282c", "fields": {"departement": "75", "stop_lat": 48.85883098235677, "code_postal": "75120", "stop_lon": 2.4023343288357757, "coord": [48.85883098235677, 2.4023343288357757], "stop_id": 3765285, "stop_desc": "145 RUE DES PYRENEES - 75120", "stop_name": "PYRENEES - BAGNOLET"}, "geometry": {"type": "Point", "coordinates": [2.4023343288357757, 48.85883098235677]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5f534fb4336d941f0d08feee51cf92120a37f295", "fields": {"departement": "75", "stop_lat": 48.850272711588964, "code_postal": "75120", "stop_lon": 2.406272939730884, "coord": [48.850272711588964, 2.406272939730884], "stop_id": 3765288, "stop_desc": "33 RUE DES PYRENEES - 75120", "stop_name": "LA PLAINE"}, "geometry": {"type": "Point", "coordinates": [2.406272939730884, 48.850272711588964]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dad67ca14c66f6ce429c12e07a0c1b234b30f72b", "fields": {"departement": "75", "stop_lat": 48.84795395647359, "code_postal": "75120", "stop_lon": 2.4062426188405976, "coord": [48.84795395647359, 2.4062426188405976], "stop_id": 3765289, "stop_desc": "1-3 RUE DES PYRENEES - 75120", "stop_name": "COURS DE VINCENNES"}, "geometry": {"type": "Point", "coordinates": [2.4062426188405976, 48.84795395647359]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1fc5a7e28cc68497a325ebd78c5cc783df74b213", "fields": {"departement": "75", "stop_lat": 48.83747324234245, "code_postal": "75112", "stop_lon": 2.391252090552033, "coord": [48.83747324234245, 2.391252090552033], "stop_id": 3765296, "stop_desc": "39 RUE PROUDHON - 75112", "stop_name": "CHARENTON - WATTIGNIES"}, "geometry": {"type": "Point", "coordinates": [2.391252090552033, 48.83747324234245]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "108d78b103cc988c3a142178eac3b3cebfdbc620", "fields": {"departement": "75", "stop_lat": 48.827128133014696, "code_postal": "75113", "stop_lon": 2.3666437779895237, "coord": [48.827128133014696, 2.3666437779895237], "stop_id": 3765302, "stop_desc": "76 RUE DE TOLBIAC - 75113", "stop_name": "OLYMPIADES"}, "geometry": {"type": "Point", "coordinates": [2.3666437779895237, 48.827128133014696]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "829091fc959bd5f00877f4997276c3818f6f942b", "fields": {"departement": "75", "stop_lat": 48.84920522522324, "code_postal": "75106", "stop_lon": 2.3369823179740905, "coord": [48.84920522522324, 2.3369823179740905], "stop_id": 3765424, "stop_desc": "FACE 19 RUE DE VAUGIRARD - 75106", "stop_name": "SENAT"}, "geometry": {"type": "Point", "coordinates": [2.3369823179740905, 48.84920522522324]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1e115ee77d2a068f07fb99aeaf0deda31d5bb287", "fields": {"departement": "75", "stop_lat": 48.851793228857055, "code_postal": "75107", "stop_lon": 2.327612543675961, "coord": [48.851793228857055, 2.327612543675961], "stop_id": 3765431, "stop_desc": "16 RUE DE SEVRES - 75107", "stop_name": "SEVRES - BABYLONE"}, "geometry": {"type": "Point", "coordinates": [2.327612543675961, 48.851793228857055]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5466b70049c658b6794c0c8b81774b58e07101f7", "fields": {"departement": "75", "stop_lat": 48.8564215738714, "code_postal": "75107", "stop_lon": 2.3254733349230117, "coord": [48.8564215738714, 2.3254733349230117], "stop_id": 3765434, "stop_desc": "242 BOULEVARD SAINT-GERMAIN - 75107", "stop_name": "RUE DU BAC - RENE CHAR"}, "geometry": {"type": "Point", "coordinates": [2.3254733349230117, 48.8564215738714]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e5b01eed2b2526dcfb081103949915641b383378", "fields": {"departement": "75", "stop_lat": 48.87441332622057, "code_postal": "75108", "stop_lon": 2.318084616089399, "coord": [48.87441332622057, 2.318084616089399], "stop_id": 3765447, "stop_desc": "10-12 RUE LA BOETIE - 75108", "stop_name": "SAINT-AUGUSTIN"}, "geometry": {"type": "Point", "coordinates": [2.318084616089399, 48.87441332622057]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9563afb89f7507ac734150367735f3f41a9b8c7a", "fields": {"departement": "75", "stop_lat": 48.88189550471555, "code_postal": "75117", "stop_lon": 2.3001899297869444, "coord": [48.88189550471555, 2.3001899297869444], "stop_id": 3765457, "stop_desc": "107-105 RUE DE COURCELLES - 75117", "stop_name": "WAGRAM - COURCELLES"}, "geometry": {"type": "Point", "coordinates": [2.3001899297869444, 48.88189550471555]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "42d78f57b6430f6c447c90497a19cb81ab79ce49", "fields": {"departement": "75", "stop_lat": 48.88588328924992, "code_postal": "75117", "stop_lon": 2.2927463012748963, "coord": [48.88588328924992, 2.2927463012748963], "stop_id": 3765461, "stop_desc": "FACE 145 AVENUE DE VILLIERS - 75117", "stop_name": "PORTE DE CHAMPERRET"}, "geometry": {"type": "Point", "coordinates": [2.2927463012748963, 48.88588328924992]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7c05dc63c4f0f8828cba84105f33c482aed7c375", "fields": {"departement": "75", "stop_lat": 48.887277052890184, "code_postal": "75117", "stop_lon": 2.2947893290138164, "coord": [48.887277052890184, 2.2947893290138164], "stop_id": 3765463, "stop_desc": "189 RUE DE COURCELLES - 75117", "stop_name": "PORTE DE COURCELLES"}, "geometry": {"type": "Point", "coordinates": [2.2947893290138164, 48.887277052890184]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5ec09a1bc4301e78e8e882595846345a5cce6033", "fields": {"departement": "75", "stop_lat": 48.82263735044073, "code_postal": "75114", "stop_lon": 2.3255082253288597, "coord": [48.82263735044073, 2.3255082253288597], "stop_id": 3781622, "stop_desc": "3 PLACE DU 25 AOUT 1944 - 75114", "stop_name": "PORTE D'ORLEANS-METRO"}, "geometry": {"type": "Point", "coordinates": [2.3255082253288597, 48.82263735044073]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2d6d6ea91f6e0d23db73e1563edf06d0432ea079", "fields": {"departement": "75", "stop_lat": 48.82263735044073, "code_postal": "75114", "stop_lon": 2.3255082253288597, "coord": [48.82263735044073, 2.3255082253288597], "stop_id": 3781623, "stop_desc": "3 PLACE DU 25 AOUT 1944 - 75114", "stop_name": "PORTE D'ORLEANS-METRO"}, "geometry": {"type": "Point", "coordinates": [2.3255082253288597, 48.82263735044073]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "84cb0819a47de94557a19866f93f8bcffdec10a3", "fields": {"departement": "92", "stop_lat": 48.818062641326925, "code_postal": "92049", "stop_lon": 2.3257950701996193, "coord": [48.818062641326925, 2.3257950701996193], "stop_id": 3781625, "stop_desc": "51 BIS AVENUE ARISTIDE BRIAND - 92049", "stop_name": "GABRIEL PERI"}, "geometry": {"type": "Point", "coordinates": [2.3257950701996193, 48.818062641326925]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fbf1af88216a9c151ae227bdd5f21daa571c3bb1", "fields": {"departement": "94", "stop_lat": 48.81381129980006, "code_postal": "94037", "stop_lon": 2.3501422828708467, "coord": [48.81381129980006, 2.3501422828708467], "stop_id": 3781633, "stop_desc": "FACE 21 AVENUE JEAN JAURES - 94037", "stop_name": "RASPAIL-JAURES"}, "geometry": {"type": "Point", "coordinates": [2.3501422828708467, 48.81381129980006]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0de75ab01e2f8d2a97122bad4b98d286c1f48172", "fields": {"departement": "94", "stop_lat": 48.81235479181862, "code_postal": "94043", "stop_lon": 2.354088383787724, "coord": [48.81235479181862, 2.354088383787724], "stop_id": 3781636, "stop_desc": "56 RUE DE LA CONVENTION - 94043", "stop_name": "CONVENTION - JAURES"}, "geometry": {"type": "Point", "coordinates": [2.354088383787724, 48.81235479181862]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e376f19596394abeb16d066060211197fa57316c", "fields": {"departement": "94", "stop_lat": 48.812066724767554, "code_postal": "94043", "stop_lon": 2.3570685335223565, "coord": [48.812066724767554, 2.3570685335223565], "stop_id": 3781637, "stop_desc": "29 RUE DE LA CONVENTION - 94043", "stop_name": "MAIRIE DU KREMLIN-BICETRE"}, "geometry": {"type": "Point", "coordinates": [2.3570685335223565, 48.812066724767554]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "acf0da7188b456945ac873d5a15d92a0e480b069", "fields": {"departement": "94", "stop_lat": 48.814771316142455, "code_postal": "94043", "stop_lon": 2.361002603265579, "coord": [48.814771316142455, 2.361002603265579], "stop_id": 3781639, "stop_desc": "17 AVENUE DE FONTAINEBLEAU - 94043", "stop_name": "ROGER SALENGRO - FONTAINEBLEAU"}, "geometry": {"type": "Point", "coordinates": [2.361002603265579, 48.814771316142455]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "654d29875d048524bdc9da9192c700bd2f176972", "fields": {"departement": "94", "stop_lat": 48.811402915146694, "code_postal": "94041", "stop_lon": 2.384434457204656, "coord": [48.811402915146694, 2.384434457204656], "stop_id": 3781648, "stop_desc": "FACE 100 AVENUE GEORGES GOSNAT - 94041", "stop_name": "MAIRIE D'IVRY-METRO"}, "geometry": {"type": "Point", "coordinates": [2.384434457204656, 48.811402915146694]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a7113b2a53a6f5fbc5cc6a6cf7828273f5704659", "fields": {"departement": "94", "stop_lat": 48.81561459843082, "code_postal": "94041", "stop_lon": 2.392712769672973, "coord": [48.81561459843082, 2.392712769672973], "stop_id": 3781655, "stop_desc": "58 AVENUE GEORGES GOSNAT (SUR RAMPE D'ACCES AU PONT SNCF) - 94041", "stop_name": "MOLIERE"}, "geometry": {"type": "Point", "coordinates": [2.392712769672973, 48.81561459843082]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cfb13ca01f5a458adeafda60a7b2e29a7c9212c4", "fields": {"departement": "94", "stop_lat": 48.81460461799604, "code_postal": "94002", "stop_lon": 2.4147992375058376, "coord": [48.81460461799604, 2.4147992375058376], "stop_id": 3781664, "stop_desc": "17 RUE CHARLES DE GAULLE - 94002", "stop_name": "GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.4147992375058376, 48.81460461799604]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "73defcc2f671fc756608a2520b41aad1935ef254", "fields": {"departement": "94", "stop_lat": 48.81488981158628, "code_postal": "94046", "stop_lon": 2.4184197009305843, "coord": [48.81488981158628, 2.4184197009305843], "stop_id": 3781665, "stop_desc": "17 RUE EUGENE RENAULT - 94046", "stop_name": "MAISONS-ALFORT - ECOLE VETERINAIRE"}, "geometry": {"type": "Point", "coordinates": [2.4184197009305843, 48.81488981158628]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ece2b0d4f7506190c1f056473a2fa0e5ff3ca800", "fields": {"departement": "94", "stop_lat": 48.81462482947732, "code_postal": "94002", "stop_lon": 2.4112881217219546, "coord": [48.81462482947732, 2.4112881217219546], "stop_id": 3781669, "stop_desc": "PONT D'IVRY - 94002", "stop_name": "CHINAGORA"}, "geometry": {"type": "Point", "coordinates": [2.4112881217219546, 48.81462482947732]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "163a9e9e0aac04b4f4067983a416c05db30358c4", "fields": {"departement": "94", "stop_lat": 48.81780722509447, "code_postal": "94041", "stop_lon": 2.3935180980322706, "coord": [48.81780722509447, 2.3935180980322706], "stop_id": 3781671, "stop_desc": "FACE 37 RUE WESTERMEYER - 94041", "stop_name": "JEAN-JACQUES ROUSSEAU"}, "geometry": {"type": "Point", "coordinates": [2.3935180980322706, 48.81780722509447]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "860442abb90c6c4cd9f7185beaa8bf2e6886487d", "fields": {"departement": "75", "stop_lat": 48.81679589116382, "code_postal": "75114", "stop_lon": 2.3344238715889363, "coord": [48.81679589116382, 2.3344238715889363], "stop_id": 3781678, "stop_desc": "144 AVENUE PAUL VAILLANT COUTURIER - 75114", "stop_name": "CHAPERON VERT - LENINE"}, "geometry": {"type": "Point", "coordinates": [2.3344238715889363, 48.81679589116382]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8fcb4f261855b8c73dd22a87e97b3fd6f638cb0d", "fields": {"departement": "94", "stop_lat": 48.80543996337165, "code_postal": "94041", "stop_lon": 2.3937360085830046, "coord": [48.80543996337165, 2.3937360085830046], "stop_id": 3785921, "stop_desc": "14 AVENUE DE LA REPUBLIQUE - 94041", "stop_name": "HOPITAL CHARLES FOIX"}, "geometry": {"type": "Point", "coordinates": [2.3937360085830046, 48.80543996337165]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "110f30eeba3eb0626c54dd70f6ebdd7b8b5df174", "fields": {"departement": "94", "stop_lat": 48.782900000699755, "code_postal": "94081", "stop_lon": 2.407502686727866, "coord": [48.782900000699755, 2.407502686727866], "stop_id": 3785938, "stop_desc": "116-118 RUE LEON GEFFROY - 94081", "stop_name": "LES ARDOINES RER"}, "geometry": {"type": "Point", "coordinates": [2.407502686727866, 48.782900000699755]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "926a6748d8cdd1e73e3740301600a27d7da287c6", "fields": {"departement": "94", "stop_lat": 48.7663518707158, "code_postal": "94022", "stop_lon": 2.4094653939897843, "coord": [48.7663518707158, 2.4094653939897843], "stop_id": 3785952, "stop_desc": "AV PABLO PICASSO - 94022", "stop_name": "CHOISY-LE-ROI RER"}, "geometry": {"type": "Point", "coordinates": [2.4094653939897843, 48.7663518707158]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2e458b7b85d0b52ed6f314469717e0561f9a15ef", "fields": {"departement": "94", "stop_lat": 48.76639357851541, "code_postal": "94022", "stop_lon": 2.4146049136959706, "coord": [48.76639357851541, 2.4146049136959706], "stop_id": 3785953, "stop_desc": "FACE 3 AVENUE DE VILLENEUVE-SAINT-GEORGES - 94022", "stop_name": "PONT DE CHOISY"}, "geometry": {"type": "Point", "coordinates": [2.4146049136959706, 48.76639357851541]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "032c8650857ad887226ff349143498cf378f5fea", "fields": {"departement": "94", "stop_lat": 48.7623277710914, "code_postal": "94022", "stop_lon": 2.4193572500163665, "coord": [48.7623277710914, 2.4193572500163665], "stop_id": 3785959, "stop_desc": "93 AVENUE DE VILLENEUVE SAINT GEORGES - 94022", "stop_name": "THEOPHILE DUCLOUX"}, "geometry": {"type": "Point", "coordinates": [2.4193572500163665, 48.7623277710914]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eb36d568060ebdf40b669a8413b8b6d20ed81b86", "fields": {"departement": "94", "stop_lat": 48.751226555885445, "code_postal": "94078", "stop_lon": 2.4325380250139608, "coord": [48.751226555885445, 2.4325380250139608], "stop_id": 3785966, "stop_desc": "89 AVENUE DE CHOISY - 94078", "stop_name": "AMELIE"}, "geometry": {"type": "Point", "coordinates": [2.4325380250139608, 48.751226555885445]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9d38b89fa1845cec9c69138ea03693ca0d4f27cf", "fields": {"departement": "94", "stop_lat": 48.75168511622782, "code_postal": "94078", "stop_lon": 2.4323349764850257, "coord": [48.75168511622782, 2.4323349764850257], "stop_id": 3785967, "stop_desc": "60 AVENUE DE CHOISY - 94078", "stop_name": "AMELIE"}, "geometry": {"type": "Point", "coordinates": [2.4323349764850257, 48.75168511622782]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "703620f7fec929c48c91e2aab878e0d1835550e3", "fields": {"departement": "94", "stop_lat": 48.748348057709805, "code_postal": "94078", "stop_lon": 2.435332647155768, "coord": [48.748348057709805, 2.435332647155768], "stop_id": 3785968, "stop_desc": "45/45BIS AVENUE DE CHOISY - 94078", "stop_name": "MAIRIE ANNEXE"}, "geometry": {"type": "Point", "coordinates": [2.435332647155768, 48.748348057709805]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "68d8d4b60234990cfa9c07e81e1f157f4c3d28a6", "fields": {"departement": "94", "stop_lat": 48.80002606720367, "code_postal": "94081", "stop_lon": 2.4001654091272115, "coord": [48.80002606720367, 2.4001654091272115], "stop_id": 3785977, "stop_desc": "7 AVENUE DE LA REPUBLIQUE - 94081", "stop_name": "REPUBLIQUE - VAILLANT COUTURIER"}, "geometry": {"type": "Point", "coordinates": [2.4001654091272115, 48.80002606720367]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dd82c5a4e6ae95a3a2ae8924d568e35e6eaa6aaf", "fields": {"departement": "94", "stop_lat": 48.81234517080877, "code_postal": "94043", "stop_lon": 2.358089276515501, "coord": [48.81234517080877, 2.358089276515501], "stop_id": 3786055, "stop_desc": "54 RUE DU GENERAL LECLERC - 94043", "stop_name": "MAIRIE DU KREMLIN-BICETRE"}, "geometry": {"type": "Point", "coordinates": [2.358089276515501, 48.81234517080877]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bf34f251ee60105a59dd48f6ac18a72acdfd58c5", "fields": {"departement": "94", "stop_lat": 48.79347237653763, "code_postal": "94076", "stop_lon": 2.344070054112074, "coord": [48.79347237653763, 2.344070054112074], "stop_id": 3786064, "stop_desc": "FACE 96 AVENUE GABRIEL PERI - 94076", "stop_name": "HAUTES BRUYERES"}, "geometry": {"type": "Point", "coordinates": [2.344070054112074, 48.79347237653763]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cb1fd73a15a1ede9dabd681e7d3b9cc6a1570251", "fields": {"departement": "94", "stop_lat": 48.80251420048116, "code_postal": "94003", "stop_lon": 2.343309310300123, "coord": [48.80251420048116, 2.343309310300123], "stop_id": 3786070, "stop_desc": "FACE AU 13 AVENUE GABRIEL PERI - 94003", "stop_name": "RICARDO"}, "geometry": {"type": "Point", "coordinates": [2.343309310300123, 48.80251420048116]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "91143db659867b9b793fc6bd045a980eee556095", "fields": {"departement": "94", "stop_lat": 48.77895700307597, "code_postal": "94038", "stop_lon": 2.340586615053609, "coord": [48.77895700307597, 2.340586615053609], "stop_id": 3786079, "stop_desc": "BOULEVARD PAUL VAILLANT COUTURIER - 94038", "stop_name": "HENRI THIRARD - LEON JOUHAUX"}, "geometry": {"type": "Point", "coordinates": [2.340586615053609, 48.77895700307597]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6b314458aa825b9953cce21f284de5c121962a8b", "fields": {"departement": "94", "stop_lat": 48.768063557426416, "code_postal": "94021", "stop_lon": 2.3367923835022073, "coord": [48.768063557426416, 2.3367923835022073], "stop_id": 3786088, "stop_desc": "FACE 138 BOULEVARD JEAN MERMOZ - 94021", "stop_name": "LOUIS BLERIOT - CIMETIERE INTERCOMMUNAL"}, "geometry": {"type": "Point", "coordinates": [2.3367923835022073, 48.768063557426416]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "56caf2eebcfdfff91760996b04abf23ffa5d09f0", "fields": {"departement": "94", "stop_lat": 48.812066724767554, "code_postal": "94043", "stop_lon": 2.3570685335223565, "coord": [48.812066724767554, 2.3570685335223565], "stop_id": 3786101, "stop_desc": "29 RUE DE LA CONVENTION - 94043", "stop_name": "MAIRIE DU KREMLIN-BICETRE"}, "geometry": {"type": "Point", "coordinates": [2.3570685335223565, 48.812066724767554]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9a49fcbb42bfede661e5eef06ecf9b30016f0818", "fields": {"departement": "94", "stop_lat": 48.81225601159191, "code_postal": "94043", "stop_lon": 2.353475970789407, "coord": [48.81225601159191, 2.353475970789407], "stop_id": 3786102, "stop_desc": "FACE 56 RUE DE LA CONVENTION - 94043", "stop_name": "CONVENTION - JAURES"}, "geometry": {"type": "Point", "coordinates": [2.353475970789407, 48.81225601159191]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d847bbcaf1275f658a45054664f650cd0bcfcaa8", "fields": {"departement": "94", "stop_lat": 48.80519246039765, "code_postal": "94043", "stop_lon": 2.3451601222663663, "coord": [48.80519246039765, 2.3451601222663663], "stop_id": 3786105, "stop_desc": "169 RUE GABRIEL PERI - 94043", "stop_name": "TROIS COMMUNES"}, "geometry": {"type": "Point", "coordinates": [2.3451601222663663, 48.80519246039765]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3efa5458f119f00afc1224e8ae00b75e34e3c8c9", "fields": {"departement": "94", "stop_lat": 48.80251420048116, "code_postal": "94003", "stop_lon": 2.343309310300123, "coord": [48.80251420048116, 2.343309310300123], "stop_id": 3786115, "stop_desc": "FACE AU 13 AVENUE GABRIEL PERI - 94003", "stop_name": "RICARDO"}, "geometry": {"type": "Point", "coordinates": [2.343309310300123, 48.80251420048116]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fbfbf7eb8ffefcd3d29b0cbdf8d1e8bac35faf0c", "fields": {"departement": "94", "stop_lat": 48.78017936047285, "code_postal": "94038", "stop_lon": 2.340885894880827, "coord": [48.78017936047285, 2.340885894880827], "stop_id": 3786123, "stop_desc": "58 BOULEVARD PAUL VAILLANT COUTURIER - 94038", "stop_name": "DE GAULLE - GOUNOD - TABANOU"}, "geometry": {"type": "Point", "coordinates": [2.340885894880827, 48.78017936047285]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ba84e208de0939b185a6cc1ff8c33261e08fffd0", "fields": {"departement": "94", "stop_lat": 48.772395787216, "code_postal": "94021", "stop_lon": 2.3389680290446595, "coord": [48.772395787216, 2.3389680290446595], "stop_id": 3786128, "stop_desc": "40 BOULEVARD JEAN MERMOZ - 94021", "stop_name": "JEAN MERMOZ - GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.3389680290446595, 48.772395787216]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "75b4e8581cc6a6066a0f9bab98b087e706ba9c9d", "fields": {"departement": "94", "stop_lat": 48.76764111423409, "code_postal": "94021", "stop_lon": 2.336180532146978, "coord": [48.76764111423409, 2.336180532146978], "stop_id": 3786132, "stop_desc": "130 BOULEVARD JEAN MERMOZ - 94021", "stop_name": "LOUIS BLERIOT - CIMETIERE INTERCOMMUNAL"}, "geometry": {"type": "Point", "coordinates": [2.336180532146978, 48.76764111423409]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "800de52e92e1bcb98a94b3a416d6f77dd3d05954", "fields": {"departement": "94", "stop_lat": 48.76310208832712, "code_postal": "94034", "stop_lon": 2.333910161861606, "coord": [48.76310208832712, 2.333910161861606], "stop_id": 3786135, "stop_desc": "FACE 7 AVENUE DE STALINGRAD - 94034", "stop_name": "ALLEE DU PLATEAU"}, "geometry": {"type": "Point", "coordinates": [2.333910161861606, 48.76310208832712]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "582e5f6da8611aed1480046f415995be9cd8cb7e", "fields": {"departement": "94", "stop_lat": 48.75993818030176, "code_postal": "94034", "stop_lon": 2.3315040920386356, "coord": [48.75993818030176, 2.3315040920386356], "stop_id": 3786136, "stop_desc": "AVENUE DE STALINGRAD - 94034", "stop_name": "LA FRESNAIE"}, "geometry": {"type": "Point", "coordinates": [2.3315040920386356, 48.75993818030176]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "72c3998783f9b8aacefe8160290a266bd68ae3f8", "fields": {"departement": "94", "stop_lat": 48.790370662338596, "code_postal": "94016", "stop_lon": 2.321189853846184, "coord": [48.790370662338596, 2.321189853846184], "stop_id": 3786301, "stop_desc": "45-47 AV PAUL VAILLANT COUTURIER - 94016", "stop_name": "ARISTIDE BRIAND"}, "geometry": {"type": "Point", "coordinates": [2.321189853846184, 48.790370662338596]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a4d82a5a54150a28911bea1f3c77cd9213c86ab1", "fields": {"departement": "94", "stop_lat": 48.79280746551407, "code_postal": "94016", "stop_lon": 2.3364792869327036, "coord": [48.79280746551407, 2.3364792869327036], "stop_id": 3786308, "stop_desc": "16 BIS AV LOUIS GEORGEON - 94016", "stop_name": "PLACE JACQUES CARAT - THEATRE"}, "geometry": {"type": "Point", "coordinates": [2.3364792869327036, 48.79280746551407]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "99e26e2468193a9b024883de1c989220446cb916", "fields": {"departement": "94", "stop_lat": 48.78703722781365, "code_postal": "94016", "stop_lon": 2.337173067552837, "coord": [48.78703722781365, 2.337173067552837], "stop_id": 3786326, "stop_desc": "78 AV LEON BLUM - 94016", "stop_name": "BLUM - SAUSSAIES"}, "geometry": {"type": "Point", "coordinates": [2.337173067552837, 48.78703722781365]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "942818b361a07a6c076d1fda6f4d055fa3174f74", "fields": {"departement": "94", "stop_lat": 48.786165330224435, "code_postal": "94016", "stop_lon": 2.3412671592917373, "coord": [48.786165330224435, 2.3412671592917373], "stop_id": 3786327, "stop_desc": "40 R DES SAUSSAIES - 94016", "stop_name": "LE COTEAU - COURBET"}, "geometry": {"type": "Point", "coordinates": [2.3412671592917373, 48.786165330224435]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "08fb3d0c1b4d753c003cf341527bd6ae9bd48e51", "fields": {"departement": "94", "stop_lat": 48.79296015903825, "code_postal": "94016", "stop_lon": 2.342206319832772, "coord": [48.79296015903825, 2.342206319832772], "stop_id": 3786330, "stop_desc": "103-105 BD DE LA VANNE - 94016", "stop_name": "LE COTEAU - PANORAMA"}, "geometry": {"type": "Point", "coordinates": [2.342206319832772, 48.79296015903825]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f9ca0d5797fea0247a4b63e030471985890f2a39", "fields": {"departement": "94", "stop_lat": 48.79695081510082, "code_postal": "94016", "stop_lon": 2.3411727620180645, "coord": [48.79695081510082, 2.3411727620180645], "stop_id": 3786331, "stop_desc": "23 BD DE LA VANNE - 94016", "stop_name": "LE COTEAU - DEFAIT"}, "geometry": {"type": "Point", "coordinates": [2.3411727620180645, 48.79695081510082]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b7c95b7304116ae47a546b18630a2f2dfaba575c", "fields": {"departement": "94", "stop_lat": 48.79849674938397, "code_postal": "94016", "stop_lon": 2.3340983518261917, "coord": [48.79849674938397, 2.3340983518261917], "stop_id": 3786333, "stop_desc": "9 R DE LA CITADELLE - 94016", "stop_name": "SAINT-JOSEPH"}, "geometry": {"type": "Point", "coordinates": [2.3340983518261917, 48.79849674938397]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5286445008e7f052a4d3f555bca5d3640e117db7", "fields": {"departement": "75", "stop_lat": 48.82042539819488, "code_postal": "75113", "stop_lon": 2.356527300495637, "coord": [48.82042539819488, 2.356527300495637], "stop_id": 3792948, "stop_desc": "22 BOULEVARD KELLERMANN - 75113", "stop_name": "DAMESME"}, "geometry": {"type": "Point", "coordinates": [2.356527300495637, 48.82042539819488]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0e4b2b79b52eceef25b4a073156a750c827c04c1", "fields": {"departement": "94", "stop_lat": 48.805812872889824, "code_postal": "94003", "stop_lon": 2.3386833910766978, "coord": [48.805812872889824, 2.3386833910766978], "stop_id": 3792957, "stop_desc": "35 AV FRANCOIS VINCENT RASPAIL - 94003", "stop_name": "PAUL DOUMER"}, "geometry": {"type": "Point", "coordinates": [2.3386833910766978, 48.805812872889824]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "00492324933f5c3c1df8ce15d53277b2afaf52ca", "fields": {"departement": "94", "stop_lat": 48.797930487387106, "code_postal": "94016", "stop_lon": 2.333200475290441, "coord": [48.797930487387106, 2.333200475290441], "stop_id": 3792964, "stop_desc": "68 AVENUE COUSIN DE MERICOURT - 94016", "stop_name": "COUSIN DE MERICOURT"}, "geometry": {"type": "Point", "coordinates": [2.333200475290441, 48.797930487387106]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1c71a81b3e479481400e0d9adc687b4513da1b01", "fields": {"departement": "94", "stop_lat": 48.79456906298838, "code_postal": "94016", "stop_lon": 2.334547516787906, "coord": [48.79456906298838, 2.334547516787906], "stop_id": 3792965, "stop_desc": "FACE 3-5 RUE CAMILLE DESMOULINS - 94016", "stop_name": "MAIRIE DE CACHAN"}, "geometry": {"type": "Point", "coordinates": [2.334547516787906, 48.79456906298838]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1985081f13904c46157c5f00913f56267bf22614", "fields": {"departement": "94", "stop_lat": 48.78607541164516, "code_postal": "94016", "stop_lon": 2.3322084829326877, "coord": [48.78607541164516, 2.3322084829326877], "stop_id": 3792970, "stop_desc": "RUE MARC SANGNIER - 94016", "stop_name": "CARREFOUR DES POULETS"}, "geometry": {"type": "Point", "coordinates": [2.3322084829326877, 48.78607541164516]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dbe6d08f893c555143538ce80228934d39beb23e", "fields": {"departement": "94", "stop_lat": 48.77631442599705, "code_postal": "94038", "stop_lon": 2.331243898097316, "coord": [48.77631442599705, 2.331243898097316], "stop_id": 3792975, "stop_desc": "28 AVENUE LARROUMES - 94038", "stop_name": "SOUS-PREFECTURE - ROSERAIE"}, "geometry": {"type": "Point", "coordinates": [2.331243898097316, 48.77631442599705]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5bda22d7017a5ba1f109cc0e94dd1917f43a4ebb", "fields": {"departement": "94", "stop_lat": 48.76500736011814, "code_postal": "94034", "stop_lon": 2.329518502038864, "coord": [48.76500736011814, 2.329518502038864], "stop_id": 3792980, "stop_desc": "FACE 56 RUE CHARCOT - 94034", "stop_name": "CHARCOT"}, "geometry": {"type": "Point", "coordinates": [2.329518502038864, 48.76500736011814]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c2b305b76e9de27400dbc48cf63d2997b9e33b31", "fields": {"departement": "94", "stop_lat": 48.76632849655934, "code_postal": "94038", "stop_lon": 2.3279547152132936, "coord": [48.76632849655934, 2.3279547152132936], "stop_id": 3792994, "stop_desc": "159 RUE DE CHALAIS - 94038", "stop_name": "CHALAIS - THERESE"}, "geometry": {"type": "Point", "coordinates": [2.3279547152132936, 48.76632849655934]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "94049a19308e82fc60a1da479fc1fe616c8914d3", "fields": {"departement": "94", "stop_lat": 48.77827394172297, "code_postal": "94038", "stop_lon": 2.3350379495207525, "coord": [48.77827394172297, 2.3350379495207525], "stop_id": 3792996, "stop_desc": "FACE 13 RUE JEAN JAURES - 94038", "stop_name": "SOUS-PREFECTURE - EGLISE DE L'HAY-LES-ROSES"}, "geometry": {"type": "Point", "coordinates": [2.3350379495207525, 48.77827394172297]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8b8a7d2e6e943c26fc8a9f0ea7a43c9195c6e239", "fields": {"departement": "94", "stop_lat": 48.8100998700319, "code_postal": "94037", "stop_lon": 2.3438817271543786, "coord": [48.8100998700319, 2.3438817271543786], "stop_id": 3792998, "stop_desc": "113 AVENUE RASPAIL - 94037", "stop_name": "FRAYSSE"}, "geometry": {"type": "Point", "coordinates": [2.3438817271543786, 48.8100998700319]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3ed242d68d0d184e962873431902ff42c59b677f", "fields": {"departement": "93", "stop_lat": 48.90469973320885, "code_postal": "93053", "stop_lon": 2.4699695091744798, "coord": [48.90469973320885, 2.4699695091744798], "stop_id": 3798444, "stop_desc": "ROUTE DE STAINS - 93053", "stop_name": "PONT DE BONDY"}, "geometry": {"type": "Point", "coordinates": [2.4699695091744798, 48.90469973320885]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "87ccd99e9f51c25af594d4a20d4eb6d0331f50ed", "fields": {"departement": "93", "stop_lat": 48.90667646849791, "code_postal": "93008", "stop_lon": 2.443485109369775, "coord": [48.90667646849791, 2.443485109369775], "stop_id": 3798451, "stop_desc": "BOULEVARD LENINE - 93008", "stop_name": "HOTEL DE VILLE DE BOBIGNY"}, "geometry": {"type": "Point", "coordinates": [2.443485109369775, 48.90667646849791]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "24ea952a8e9df75f4fa0bbeb2a4f9d505d928831", "fields": {"departement": "93", "stop_lat": 48.92444651157094, "code_postal": "93027", "stop_lon": 2.402075826672901, "coord": [48.92444651157094, 2.402075826672901], "stop_id": 3798467, "stop_desc": "31 AVENUE JEAN JAURES - 93027", "stop_name": "STADE GEO ANDRE"}, "geometry": {"type": "Point", "coordinates": [2.402075826672901, 48.92444651157094]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "375911c1a1064d3d4e6b4a6160f3a546c366e860", "fields": {"departement": "93", "stop_lat": 48.92741682316744, "code_postal": "93027", "stop_lon": 2.3929143192774025, "coord": [48.92741682316744, 2.3929143192774025], "stop_id": 3798469, "stop_desc": "76 RUE DE LA CONVENTION - 93027", "stop_name": "HOTEL DE VILLE DE LA COURNEUVE"}, "geometry": {"type": "Point", "coordinates": [2.3929143192774025, 48.92741682316744]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6ec690b1d499eccd5c3b84a93a29662febb672c7", "fields": {"departement": "93", "stop_lat": 48.9302423872842, "code_postal": "93027", "stop_lon": 2.3843790473947437, "coord": [48.9302423872842, 2.3843790473947437], "stop_id": 3798471, "stop_desc": "RUE DE SAINT DENIS - 93027", "stop_name": "LA COURNEUVE - SIX ROUTES"}, "geometry": {"type": "Point", "coordinates": [2.3843790473947437, 48.9302423872842]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ffeee5320762010fc3425193f904f0f170ec1e39", "fields": {"departement": "93", "stop_lat": 48.93761835474619, "code_postal": "93066", "stop_lon": 2.3620002027025153, "coord": [48.93761835474619, 2.3620002027025153], "stop_id": 3798478, "stop_desc": "3 RUE EDOUARD VAILLANT - 93066", "stop_name": "BASILIQUE DE SAINT-DENIS"}, "geometry": {"type": "Point", "coordinates": [2.3620002027025153, 48.93761835474619]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c4edc02aded5983cbb45e5d8158bed27d612c788", "fields": {"departement": "93", "stop_lat": 48.93842831013453, "code_postal": "93066", "stop_lon": 2.3556981591811432, "coord": [48.93842831013453, 2.3556981591811432], "stop_id": 3798481, "stop_desc": "3 BOULEVARD CARNOT - 93066", "stop_name": "MARCHE DE SAINT-DENIS"}, "geometry": {"type": "Point", "coordinates": [2.3556981591811432, 48.93842831013453]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ebb0f4250836e12b9902748bf612b7c7082e38ab", "fields": {"departement": "93", "stop_lat": 48.93588643026154, "code_postal": "93039", "stop_lon": 2.339969233050552, "coord": [48.93588643026154, 2.339969233050552], "stop_id": 3798486, "stop_desc": "1 R MECHIN - 93039", "stop_name": "L'ILE-SAINT-DENIS"}, "geometry": {"type": "Point", "coordinates": [2.339969233050552, 48.93588643026154]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7ef1d79525bed4227db37ccd0678d62d358a0c9a", "fields": {"departement": "92", "stop_lat": 48.93513110836804, "code_postal": "92078", "stop_lon": 2.326805864324871, "coord": [48.93513110836804, 2.326805864324871], "stop_id": 3798490, "stop_desc": "0 AV DE VERDUN - 92078", "stop_name": "LA NOUE"}, "geometry": {"type": "Point", "coordinates": [2.326805864324871, 48.93513110836804]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "473e58a0c8db7a912a9b67753426319fff628f79", "fields": {"departement": "92", "stop_lat": 48.93446552176436, "code_postal": "92078", "stop_lon": 2.3216771403957503, "coord": [48.93446552176436, 2.3216771403957503], "stop_id": 3798493, "stop_desc": "0 AV DE VERDUN - 92078", "stop_name": "CHEMIN DES RENIERS"}, "geometry": {"type": "Point", "coordinates": [2.3216771403957503, 48.93446552176436]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fd6a02649a072685dbe3553276ffedb9dff055c3", "fields": {"departement": "92", "stop_lat": 48.93408672982138, "code_postal": "92036", "stop_lon": 2.313520246800056, "coord": [48.93408672982138, 2.313520246800056], "stop_id": 3798494, "stop_desc": "0 AV DU GENERAL CHARLES DE GAULLE - 92036", "stop_name": "PARC DES CHANTERAINES"}, "geometry": {"type": "Point", "coordinates": [2.313520246800056, 48.93408672982138]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "335e546139f14cf8aae47f5286ef31b602d171bd", "fields": {"departement": "92", "stop_lat": 48.93375423495771, "code_postal": "92036", "stop_lon": 2.3136158819443446, "coord": [48.93375423495771, 2.3136158819443446], "stop_id": 3798495, "stop_desc": "0 AV DU GENERAL DE GAULLE - 92036", "stop_name": "PARC DES CHANTERAINES"}, "geometry": {"type": "Point", "coordinates": [2.3136158819443446, 48.93375423495771]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "283bcf7fa97cedd3176990990ce6eadb1fa7ee04", "fields": {"departement": "92", "stop_lat": 48.93350113617405, "code_postal": "92036", "stop_lon": 2.3071095615256496, "coord": [48.93350113617405, 2.3071095615256496], "stop_id": 3798496, "stop_desc": "0 AV DU GENERAL CHARLES DE GAULLE - 92036", "stop_name": "GARE DE GENNEVILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.3071095615256496, 48.93350113617405]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "29cdaa547f72ea543e91c505478fc8bdb44e2fe2", "fields": {"departement": "92", "stop_lat": 48.93339847895917, "code_postal": "92036", "stop_lon": 2.2946423865699295, "coord": [48.93339847895917, 2.2946423865699295], "stop_id": 3798500, "stop_desc": "92 R PIERRE TIMBAUD - 92036", "stop_name": "LE VILLAGE"}, "geometry": {"type": "Point", "coordinates": [2.2946423865699295, 48.93339847895917]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b6199d40e0a79ec85579aa7f9d124546d9810ef1", "fields": {"departement": "93", "stop_lat": 48.91778705258113, "code_postal": "93008", "stop_lon": 2.4170945791008953, "coord": [48.91778705258113, 2.4170945791008953], "stop_id": 3798508, "stop_desc": "FACE 230 RUE DE STALINGRAD - 93008", "stop_name": "DRANCY-AVENIR"}, "geometry": {"type": "Point", "coordinates": [2.4170945791008953, 48.91778705258113]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3fd574bcf8cf3db510ed1b93717e2c63882e26f7", "fields": {"departement": "93", "stop_lat": 48.91565108683878, "code_postal": "93008", "stop_lon": 2.4256681007873255, "coord": [48.91565108683878, 2.4256681007873255], "stop_id": 3798509, "stop_desc": "FACE 124 RUE DE STALINGRAD - 93008", "stop_name": "HOPITAL AVICENNE"}, "geometry": {"type": "Point", "coordinates": [2.4256681007873255, 48.91565108683878]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "20a26f1c46c18a699a7cb354db74d74c12d0e5e9", "fields": {"departement": "93", "stop_lat": 48.91320601823796, "code_postal": "93008", "stop_lon": 2.437771801133996, "coord": [48.91320601823796, 2.437771801133996], "stop_id": 3731652, "stop_desc": "6 AVENUE LOUIS ARAGON - 93008", "stop_name": "ESCADRILLE NORMANDIE-NIEMEN - PAUL VAILLANT-COUTURIER-TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.437771801133996, 48.91320601823796]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0f2f9199af0579578ba25cd439ec7a112710d528", "fields": {"departement": "93", "stop_lat": 48.912228084056785, "code_postal": "93008", "stop_lon": 2.435792866942983, "coord": [48.912228084056785, 2.435792866942983], "stop_id": 3731650, "stop_desc": "230 AVENUE HENRI BARBUSSE - 93008", "stop_name": "ESCADRILLE NORMANDIE NIEMEN - JEAN JAURES-TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.435792866942983, 48.912228084056785]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3d26cb5219f15e761891e0e3bb78a5b5463f7309", "fields": {"departement": "93", "stop_lat": 48.919285735118976, "code_postal": "93029", "stop_lon": 2.461593097310341, "coord": [48.919285735118976, 2.461593097310341], "stop_id": 3731667, "stop_desc": "RUE DES BOIS DE GROSLAY - 93029", "stop_name": "JULES AUFFRET"}, "geometry": {"type": "Point", "coordinates": [2.461593097310341, 48.919285735118976]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7cda4f1f157332ed1cdcf6b7195f6d6990b3d9f3", "fields": {"departement": "93", "stop_lat": 48.92038844562934, "code_postal": "93007", "stop_lon": 2.4723279782204757, "coord": [48.92038844562934, 2.4723279782204757], "stop_id": 3731672, "stop_desc": "62 AVENUE LEJEUNE - 93007", "stop_name": "SURCOUF - LEJEUNE"}, "geometry": {"type": "Point", "coordinates": [2.4723279782204757, 48.92038844562934]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "67fc13c7e861c2ac79cbdd3a4902168d78f73ed5", "fields": {"departement": "93", "stop_lat": 48.91780070306678, "code_postal": "93010", "stop_lon": 2.4796166045523513, "coord": [48.91780070306678, 2.4796166045523513], "stop_id": 3731674, "stop_desc": "ROND-POINT JOUHAUX BLUM - 93010", "stop_name": "JOUHAUX - BLUM"}, "geometry": {"type": "Point", "coordinates": [2.4796166045523513, 48.91780070306678]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d9c735dda05410ecbd41d1a54a1c54121930fb9b", "fields": {"departement": "93", "stop_lat": 48.89997054613696, "code_postal": "93055", "stop_lon": 2.4095425364246923, "coord": [48.89997054613696, 2.4095425364246923], "stop_id": 3731640, "stop_desc": "83 AVENUE DU GENERAL LECLERC - 93055", "stop_name": "DIDEROT"}, "geometry": {"type": "Point", "coordinates": [2.4095425364246923, 48.89997054613696]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4587389baa8cfda81f9c844ac0c3bfc564bd5831", "fields": {"departement": "93", "stop_lat": 48.9147315849429, "code_postal": "93008", "stop_lon": 2.4403791218378608, "coord": [48.9147315849429, 2.4403791218378608], "stop_id": 3731655, "stop_desc": "59 AVENUE LOUIS ARAGON - 93008", "stop_name": "PAUL BELWO"}, "geometry": {"type": "Point", "coordinates": [2.4403791218378608, 48.9147315849429]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "347ef9caad850cee5dacf77c185d2e352d0ac65d", "fields": {"departement": "93", "stop_lat": 48.89394469691144, "code_postal": "93055", "stop_lon": 2.401656037394683, "coord": [48.89394469691144, 2.401656037394683], "stop_id": 3731632, "stop_desc": "FACE 34 RUE HOCHE - 93055", "stop_name": "MONTGOLFIER"}, "geometry": {"type": "Point", "coordinates": [2.401656037394683, 48.89394469691144]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7332aeb15307d94a89f813c29cfd04ba6a932f5f", "fields": {"departement": "93", "stop_lat": 48.891535699652785, "code_postal": "93055", "stop_lon": 2.4024571717916654, "coord": [48.891535699652785, 2.4024571717916654], "stop_id": 3731629, "stop_desc": "2-8 RUE HOCHE - 93055", "stop_name": "HOCHE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.4024571717916654, 48.891535699652785]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fb8c03a3e01cb7152bcadf402e5dc1cf403c7438", "fields": {"departement": "91", "stop_lat": 48.695370053417975, "code_postal": "91326", "stop_lon": 2.371538856451079, "coord": [48.695370053417975, 2.371538856451079], "stop_id": 3732156, "stop_desc": "40 BIS AVENUE DE LA COUR DE FRANCE - 91326", "stop_name": "OBSERVATOIRE CAMILLE FLAMMARION"}, "geometry": {"type": "Point", "coordinates": [2.371538856451079, 48.695370053417975]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "669e07d87ed1b352c02c0337fe5fcfab2826261b", "fields": {"departement": "91", "stop_lat": 48.679662646151584, "code_postal": "91589", "stop_lon": 2.344801703087946, "coord": [48.679662646151584, 2.344801703087946], "stop_id": 3732129, "stop_desc": "FACE 53 AVENUE CHARLES DE GAULLE - 91589", "stop_name": "CENTRE ADMINISTRATIF"}, "geometry": {"type": "Point", "coordinates": [2.344801703087946, 48.679662646151584]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0a912f0fa0209a39efe302cd523ec1d58bebd212", "fields": {"departement": "91", "stop_lat": 48.698273120726405, "code_postal": "91027", "stop_lon": 2.372355488763076, "coord": [48.698273120726405, 2.372355488763076], "stop_id": 3732145, "stop_desc": "2 BIS AV JULES VALLES - 91027", "stop_name": "PYRAMIDE DE JUVISY"}, "geometry": {"type": "Point", "coordinates": [2.372355488763076, 48.698273120726405]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "31392ac845133d350e5e9d424d86874a0816625a", "fields": {"departement": "91", "stop_lat": 48.69121600148547, "code_postal": "91326", "stop_lon": 2.375853545289377, "coord": [48.69121600148547, 2.375853545289377], "stop_id": 3732149, "stop_desc": "R DU MARECHAL JUIN - 91326", "stop_name": "MARCHE DE JUVISY"}, "geometry": {"type": "Point", "coordinates": [2.375853545289377, 48.69121600148547]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7d527949188bcfe0e68f890a409c92fc072fa430", "fields": {"departement": "91", "stop_lat": 48.67601347026757, "code_postal": "91589", "stop_lon": 2.3385576652217677, "coord": [48.67601347026757, 2.3385576652217677], "stop_id": 3732118, "stop_desc": "10 R VAN GOGH - 91589", "stop_name": "TOULOUSE-LAUTREC"}, "geometry": {"type": "Point", "coordinates": [2.3385576652217677, 48.67601347026757]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5f1cd9a166b6081d58f406a046fe9a372a05ae80", "fields": {"departement": "91", "stop_lat": 48.673055930070326, "code_postal": "91589", "stop_lon": 2.3451129024556816, "coord": [48.673055930070326, 2.3451129024556816], "stop_id": 3732123, "stop_desc": "25-23 AV GAMBETTA - 91589", "stop_name": "BILLOIR"}, "geometry": {"type": "Point", "coordinates": [2.3451129024556816, 48.673055930070326]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5bc1fe9e33ec2f8d42a6c454bc354e79ab1b4b47", "fields": {"departement": "91", "stop_lat": 48.67388314342264, "code_postal": "91589", "stop_lon": 2.338747623791262, "coord": [48.67388314342264, 2.338747623791262], "stop_id": 3732119, "stop_desc": "AV HENRI OUZILLEAU - 91589", "stop_name": "UTRILLO"}, "geometry": {"type": "Point", "coordinates": [2.338747623791262, 48.67388314342264]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3f1e4ae7711a867e6258a7183fe24f958e8e154c", "fields": {"departement": "91", "stop_lat": 48.69382267955351, "code_postal": "91326", "stop_lon": 2.375896211585746, "coord": [48.69382267955351, 2.375896211585746], "stop_id": 3732153, "stop_desc": "8-10 AVENUE RASPAIL - 91326", "stop_name": "RASPAIL"}, "geometry": {"type": "Point", "coordinates": [2.375896211585746, 48.69382267955351]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "87499465efcaf15ef27e1fa7a294a1247a5cc7fb", "fields": {"departement": "75", "stop_lat": 48.89315301342331, "code_postal": "75118", "stop_lon": 2.344764650722631, "coord": [48.89315301342331, 2.344764650722631], "stop_id": 3749639, "stop_desc": "FACE 85-87 R DU MONT CENIS - 75118", "stop_name": "MAIRIE DU 18E - JULES JOFFRIN"}, "geometry": {"type": "Point", "coordinates": [2.344764650722631, 48.89315301342331]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "658123dad3f427d2cd928bd1a88ea4aa8bf09e8c", "fields": {"departement": "75", "stop_lat": 48.87697969338554, "code_postal": "75108", "stop_lon": 2.300915593355041, "coord": [48.87697969338554, 2.300915593355041], "stop_id": 3749700, "stop_desc": "254 RUE DU FAUBOURG SAINT-HONORE - 75108", "stop_name": "HOCHE - SAINT-HONORE"}, "geometry": {"type": "Point", "coordinates": [2.300915593355041, 48.87697969338554]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7fe585fc307fa94b63d3c9f244f4fbe2dbfac378", "fields": {"departement": "92", "stop_lat": 48.88481078773734, "code_postal": "92051", "stop_lon": 2.26765896400631, "coord": [48.88481078773734, 2.26765896400631], "stop_id": 3749716, "stop_desc": "FACE 149 AVENUE ACHILLE PERETTI OU DU ROULE - 92051", "stop_name": "SAINTE-FOY"}, "geometry": {"type": "Point", "coordinates": [2.26765896400631, 48.88481078773734]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4ba03797877d794f103db7595f339228ac8b82d2", "fields": {"departement": "75", "stop_lat": 48.87513170578842, "code_postal": "75108", "stop_lon": 2.3146372332326037, "coord": [48.87513170578842, 2.3146372332326037], "stop_id": 3749695, "stop_desc": "119 BOULEVARD HAUSSMANN - 75108", "stop_name": "HAUSSMANN - MIROMESNIL"}, "geometry": {"type": "Point", "coordinates": [2.3146372332326037, 48.87513170578842]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a88de143354a9ad42c8f7c1f0b6b155c3a89bec0", "fields": {"departement": "92", "stop_lat": 48.88256889254122, "code_postal": "92051", "stop_lon": 2.276655746559639, "coord": [48.88256889254122, 2.276655746559639], "stop_id": 3749713, "stop_desc": "63 AVENUE ACHILLE PERETTI OU DU ROULE - 92051", "stop_name": "CHARTRES"}, "geometry": {"type": "Point", "coordinates": [2.276655746559639, 48.88256889254122]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "50ec9cbd59176024a9631909974dbc3873e85aba", "fields": {"departement": "75", "stop_lat": 48.87524105469884, "code_postal": "75108", "stop_lon": 2.3248559340121537, "coord": [48.87524105469884, 2.3248559340121537], "stop_id": 3749690, "stop_desc": "119-121 RUE SAINT LAZARE - 75108", "stop_name": "GARE SAINT-LAZARE"}, "geometry": {"type": "Point", "coordinates": [2.3248559340121537, 48.87524105469884]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cdc5736ea34bc1b11c6199c072dd16cc4306699c", "fields": {"departement": "75", "stop_lat": 48.874261363183884, "code_postal": "75108", "stop_lon": 2.324147681777442, "coord": [48.874261363183884, 2.324147681777442], "stop_id": 3749691, "stop_desc": "86 BOULEVARD HAUSSMANN - 75108", "stop_name": "PASQUIER - ANJOU"}, "geometry": {"type": "Point", "coordinates": [2.324147681777442, 48.874261363183884]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0e6dac4adf53e0fbebb6643c760ce3463686375b", "fields": {"departement": "75", "stop_lat": 48.87863131986088, "code_postal": "75117", "stop_lon": 2.2947691591166657, "coord": [48.87863131986088, 2.2947691591166657], "stop_id": 3749703, "stop_desc": "24 AV DES TERNES - 75117", "stop_name": "TERNES - MAC MAHON"}, "geometry": {"type": "Point", "coordinates": [2.2947691591166657, 48.87863131986088]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "62ee639d0deadcece57588ff2e69254a054d14e2", "fields": {"departement": "75", "stop_lat": 48.874791847456805, "code_postal": "75108", "stop_lon": 2.326477402115536, "coord": [48.874791847456805, 2.326477402115536], "stop_id": 3749689, "stop_desc": "3 RUE DU HAVRE - 75108", "stop_name": "GARE SAINT-LAZARE"}, "geometry": {"type": "Point", "coordinates": [2.326477402115536, 48.874791847456805]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d051d16c00003ea13ebbfc74e00803f14716d45f", "fields": {"departement": "75", "stop_lat": 48.87441332622057, "code_postal": "75108", "stop_lon": 2.318084616089399, "coord": [48.87441332622057, 2.318084616089399], "stop_id": 3749692, "stop_desc": "10-12 RUE LA BOETIE - 75108", "stop_name": "SAINT-AUGUSTIN"}, "geometry": {"type": "Point", "coordinates": [2.318084616089399, 48.87441332622057]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2c4f560ddaaa1c0f9674d54e3492d1810fc29ffd", "fields": {"departement": "75", "stop_lat": 48.886817264618806, "code_postal": "75118", "stop_lon": 2.3393261443813564, "coord": [48.886817264618806, 2.3393261443813564], "stop_id": 3749652, "stop_desc": "10 RUE JEAN BAPTISTE CLEMENT - 75118", "stop_name": "PLACE DU TERTRE - NORVINS"}, "geometry": {"type": "Point", "coordinates": [2.3393261443813564, 48.886817264618806]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f199b51393a98b76486ffe762ce552cbb8e9aefb", "fields": {"departement": "75", "stop_lat": 48.88005756021677, "code_postal": "75110", "stop_lon": 2.3549960773675407, "coord": [48.88005756021677, 2.3549960773675407], "stop_id": 3749677, "stop_desc": "PLACE NAPOLEON III - 75110", "stop_name": "GARE DU NORD - DUNKERQUE"}, "geometry": {"type": "Point", "coordinates": [2.3549960773675407, 48.88005756021677]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "43de32c8208e7c80aeddbe33f9ed8e14e6fd323d", "fields": {"departement": "75", "stop_lat": 48.87824322907468, "code_postal": "75109", "stop_lon": 2.3445581036681564, "coord": [48.87824322907468, 2.3445581036681564], "stop_id": 3749680, "stop_desc": "29 RUE DE MAUBEUGE - 75109", "stop_name": "MAUBEUGE - ROCHECHOUART"}, "geometry": {"type": "Point", "coordinates": [2.3445581036681564, 48.87824322907468]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "516219a4dd9329f78fc878d5fd9b8526391258d8", "fields": {"departement": "75", "stop_lat": 48.876032563673256, "code_postal": "75109", "stop_lon": 2.339312087994025, "coord": [48.876032563673256, 2.339312087994025], "stop_id": 3749682, "stop_desc": "18 RUE DE CHATEAUDUN - 75109", "stop_name": "CARREFOUR DE CHATEAUDUN"}, "geometry": {"type": "Point", "coordinates": [2.339312087994025, 48.876032563673256]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bec3f7de4b77704a19cff14da88febd8bf1582a9", "fields": {"departement": "75", "stop_lat": 48.889962656364695, "code_postal": "75118", "stop_lon": 2.343155981984433, "coord": [48.889962656364695, 2.343155981984433], "stop_id": 3749643, "stop_desc": "42 RUE DU MONT-CENIS - 75118", "stop_name": "CUSTINE - MONT-CENIS"}, "geometry": {"type": "Point", "coordinates": [2.343155981984433, 48.889962656364695]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ffc38daf431ce49f487076f63e3c52a95b45c3a0", "fields": {"departement": "75", "stop_lat": 48.88590045443896, "code_postal": "75118", "stop_lon": 2.342869335612497, "coord": [48.88590045443896, 2.342869335612497], "stop_id": 3749650, "stop_desc": "FACE 9 RUE DU CARDINAL DUBOIS - 75118", "stop_name": "FUNICULAIRE"}, "geometry": {"type": "Point", "coordinates": [2.342869335612497, 48.88590045443896]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "19b552d08a27a3ff70318d42ba7114311b70c6e2", "fields": {"departement": "75", "stop_lat": 48.882215821789494, "code_postal": "75109", "stop_lon": 2.337213801603721, "coord": [48.882215821789494, 2.337213801603721], "stop_id": 3749664, "stop_desc": "FACE 20 BOULEVARD DE CLICHY - 75109", "stop_name": "PIGALLE"}, "geometry": {"type": "Point", "coordinates": [2.337213801603721, 48.882215821789494]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d57cb4ac22c0c60cf9e0b863e66c79ed9a42ec70", "fields": {"departement": "75", "stop_lat": 48.88173773288124, "code_postal": "75110", "stop_lon": 2.3577628736883685, "coord": [48.88173773288124, 2.3577628736883685], "stop_id": 3749675, "stop_desc": "PISTE GARE ROUTIERE - 75110", "stop_name": "GARE DU NORD"}, "geometry": {"type": "Point", "coordinates": [2.3577628736883685, 48.88173773288124]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7f3c4f7202793ab7d8c2a363ac15f078a5cdaaad", "fields": {"departement": "75", "stop_lat": 48.88766201508936, "code_postal": "75118", "stop_lon": 2.341193250155962, "coord": [48.88766201508936, 2.341193250155962], "stop_id": 3749653, "stop_desc": "02 RUE CORTOT - 75118", "stop_name": "MONT CENIS - CORTOT"}, "geometry": {"type": "Point", "coordinates": [2.341193250155962, 48.88766201508936]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7bfcb896842ed21834f2ea1c6820b486e886fc08", "fields": {"departement": "75", "stop_lat": 48.88486705533481, "code_postal": "75118", "stop_lon": 2.33771801810923, "coord": [48.88486705533481, 2.33771801810923], "stop_id": 3749662, "stop_desc": "26 RUE DES ABBESSES - 75118", "stop_name": "ABBESSES"}, "geometry": {"type": "Point", "coordinates": [2.33771801810923, 48.88486705533481]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b99f0a73119211b228f27d833d9b343b8274542c", "fields": {"departement": "75", "stop_lat": 48.88362477105826, "code_postal": "75110", "stop_lon": 2.3593443757229804, "coord": [48.88362477105826, 2.3593443757229804], "stop_id": 3749791, "stop_desc": "226-228 RUE DU FAUBOURG SAINT-DENIS - 75110", "stop_name": "PLACE DE LA CHAPELLE"}, "geometry": {"type": "Point", "coordinates": [2.3593443757229804, 48.88362477105826]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f665c5cf18dd9752ed709f26f4c417bd2fc472a4", "fields": {"departement": "75", "stop_lat": 48.86239878309448, "code_postal": "75101", "stop_lon": 2.33803111409913, "coord": [48.86239878309448, 2.33803111409913], "stop_id": 3749780, "stop_desc": "153 RUE SAINT HONORE - 75101", "stop_name": "PALAIS ROYAL - MUSEE DU LOUVRE"}, "geometry": {"type": "Point", "coordinates": [2.33803111409913, 48.86239878309448]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1245ec672bcd243b9ba0d8317fa14c0cc99557cb", "fields": {"departement": "75", "stop_lat": 48.86796196579372, "code_postal": "75102", "stop_lon": 2.337949459051578, "coord": [48.86796196579372, 2.337949459051578], "stop_id": 3749778, "stop_desc": "FACE 58 RUE DE RICHELIEU - 75102", "stop_name": "BIBLIOTHEQUE NATIONALE"}, "geometry": {"type": "Point", "coordinates": [2.337949459051578, 48.86796196579372]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f340db928a6483bb2b00eddbdd8125b3f8e22a1e", "fields": {"departement": "75", "stop_lat": 48.87379427725917, "code_postal": "75109", "stop_lon": 2.3478001358170366, "coord": [48.87379427725917, 2.3478001358170366], "stop_id": 3749773, "stop_desc": "41 RUE DU FAUBOURG POISSONNIERE - 75109", "stop_name": "PETITES ECURIES"}, "geometry": {"type": "Point", "coordinates": [2.3478001358170366, 48.87379427725917]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "694701bb9726eeb783e5316c94b1474bc4bdf1bd", "fields": {"departement": "75", "stop_lat": 48.880390553874314, "code_postal": "75110", "stop_lon": 2.351535098083727, "coord": [48.880390553874314, 2.351535098083727], "stop_id": 3749770, "stop_desc": "77-79 RUE DE MAUBEUGE - 75110", "stop_name": "MAGENTA - MAUBEUGE"}, "geometry": {"type": "Point", "coordinates": [2.351535098083727, 48.880390553874314]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f5e9af5cd3718e2840fc0c913209bb9dff0e4aad", "fields": {"departement": "75", "stop_lat": 48.87654445856856, "code_postal": "75109", "stop_lon": 2.3469968002225374, "coord": [48.87654445856856, 2.3469968002225374], "stop_id": 3749788, "stop_desc": "90 RUE LA FAYETTE - 75109", "stop_name": "SQUARE MONTHOLON"}, "geometry": {"type": "Point", "coordinates": [2.3469968002225374, 48.87654445856856]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5d8e77767b30440f122b3ff4d4dac0c183804f68", "fields": {"departement": "75", "stop_lat": 48.84068693742022, "code_postal": "75115", "stop_lon": 2.2961073600849584, "coord": [48.84068693742022, 2.2961073600849584], "stop_id": 3749882, "stop_desc": "188 RUE LECOURBE - 75115", "stop_name": "ABBE GROULT"}, "geometry": {"type": "Point", "coordinates": [2.2961073600849584, 48.84068693742022]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "36756d43110c696c7e6f250e74874fee8e0fa3db", "fields": {"departement": "92", "stop_lat": 48.79818875011609, "code_postal": "92023", "stop_lon": 2.2675301792541487, "coord": [48.79818875011609, 2.2675301792541487], "stop_id": 4687361, "stop_desc": "42 AVENUE JEAN BAPTISTE CLEMENT - 92023", "stop_name": "PLESSIS PIQUET"}, "geometry": {"type": "Point", "coordinates": [2.2675301792541487, 48.79818875011609]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "57ec877af658c0dfc03feb2c0f601528174ae005", "fields": {"departement": "92", "stop_lat": 48.79426934167928, "code_postal": "92023", "stop_lon": 2.266351914731897, "coord": [48.79426934167928, 2.266351914731897], "stop_id": 4687364, "stop_desc": "97 BIS AVENUE JEAN BAPTISTE CLEMENT - 92023", "stop_name": "CIMETIERE DE CLAMART"}, "geometry": {"type": "Point", "coordinates": [2.266351914731897, 48.79426934167928]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6b12b16ea0a008b6a814538cb82387181847ff0b", "fields": {"departement": "92", "stop_lat": 48.791769140552354, "code_postal": "92023", "stop_lon": 2.2637707386635664, "coord": [48.791769140552354, 2.2637707386635664], "stop_id": 4687366, "stop_desc": "FACE 138 AVENUE JEAN BAPTISTE CLEMENT - 92023", "stop_name": "SOLEIL LEVANT"}, "geometry": {"type": "Point", "coordinates": [2.2637707386635664, 48.791769140552354]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c4082d4b7f21ebc666f566a8bc3b45586bb6d17a", "fields": {"departement": "92", "stop_lat": 48.790947891449136, "code_postal": "92023", "stop_lon": 2.258534788752693, "coord": [48.790947891449136, 2.258534788752693], "stop_id": 4687367, "stop_desc": "52 RUE DE LA PORTE DE TRIVAUX - 92023", "stop_name": "JARDIN PARISIEN - COQUELICOTS"}, "geometry": {"type": "Point", "coordinates": [2.258534788752693, 48.790947891449136]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "015b296d3828378702cb6c858d2d4fc5208e5550", "fields": {"departement": "92", "stop_lat": 48.787037998768085, "code_postal": "92023", "stop_lon": 2.2457685628922226, "coord": [48.787037998768085, 2.2457685628922226], "stop_id": 4687371, "stop_desc": "FACE 179 R DE LA PORTE DE TRIVAUX - 92023", "stop_name": "CIMETIERE INTERCOMMUNAL"}, "geometry": {"type": "Point", "coordinates": [2.2457685628922226, 48.787037998768085]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dca2dd72752b8712ec7c06e8237d271a105b6f98", "fields": {"departement": "95", "stop_lat": 48.996475701301144, "code_postal": "95585", "stop_lon": 2.3796184973023964, "coord": [48.996475701301144, 2.3796184973023964], "stop_id": 4695637, "stop_desc": "FACE 141 RUE PIERRE BROSSOLETTE - 95585", "stop_name": "MAIRIE DE SARCELLES"}, "geometry": {"type": "Point", "coordinates": [2.3796184973023964, 48.996475701301144]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f0d7bff15772705ccf379d22a3bc9c0b87ac0ca2", "fields": {"departement": "95", "stop_lat": 49.00334228360203, "code_postal": "95585", "stop_lon": 2.376687491356626, "coord": [49.00334228360203, 2.376687491356626], "stop_id": 4695654, "stop_desc": "9 RUE ANDRE GRUNIG - 95585", "stop_name": "ECOLE JULES FERRY"}, "geometry": {"type": "Point", "coordinates": [2.376687491356626, 49.00334228360203]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a34bb111569470a64f54f166caa1b1b883ac6e14", "fields": {"departement": "95", "stop_lat": 48.99436259243544, "code_postal": "95585", "stop_lon": 2.38315376864614, "coord": [48.99436259243544, 2.38315376864614], "stop_id": 4695664, "stop_desc": "FACE 9 RUE JEAN-JACQUES ROUSSEAU - 95585", "stop_name": "LYCEE JEAN-JACQUES ROUSSEAU"}, "geometry": {"type": "Point", "coordinates": [2.38315376864614, 48.99436259243544]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "abb20358f1f6af91b64c98e62d24fb1501cc4d03", "fields": {"departement": "95", "stop_lat": 49.00334228360203, "code_postal": "95585", "stop_lon": 2.376687491356626, "coord": [49.00334228360203, 2.376687491356626], "stop_id": 4695668, "stop_desc": "9 RUE ANDRE GRUNIG - 95585", "stop_name": "ECOLE JULES FERRY"}, "geometry": {"type": "Point", "coordinates": [2.376687491356626, 49.00334228360203]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2435931c5deea29dd71bce223b83a6b4c661d7ac", "fields": {"departement": "95", "stop_lat": 49.00543684496062, "code_postal": "95585", "stop_lon": 2.374353347795506, "coord": [49.00543684496062, 2.374353347795506], "stop_id": 4695669, "stop_desc": "41 RUE DU FOUR DEFAIT - 95585", "stop_name": "CHAMP DE CHARTRES"}, "geometry": {"type": "Point", "coordinates": [2.374353347795506, 49.00543684496062]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "134f235da862336c5b52f221992d93a47b02edb4", "fields": {"departement": "95", "stop_lat": 49.002064656160755, "code_postal": "95585", "stop_lon": 2.381180134920911, "coord": [49.002064656160755, 2.381180134920911], "stop_id": 4695674, "stop_desc": "FACE 48 AVENUE MARX DORMOY - 95585", "stop_name": "LES CHARDONNERETTES."}, "geometry": {"type": "Point", "coordinates": [2.381180134920911, 49.002064656160755]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fc888d118b1251def597a6d48f07186764ae8baa", "fields": {"departement": "93", "stop_lat": 48.885158838792506, "code_postal": "93055", "stop_lon": 2.410925523608771, "coord": [48.885158838792506, 2.410925523608771], "stop_id": 4705563, "stop_desc": "74 RUE JULES AUFFRET - 93055", "stop_name": "LES POMMIERS"}, "geometry": {"type": "Point", "coordinates": [2.410925523608771, 48.885158838792506]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "98bf2e8434f834e756793959b48bcf324896654a", "fields": {"departement": "93", "stop_lat": 48.892978463248916, "code_postal": "93055", "stop_lon": 2.409682709962268, "coord": [48.892978463248916, 2.409682709962268], "stop_id": 4705569, "stop_desc": "FACE 11BIS RUE DELIZY - 93055", "stop_name": "LYCEE PROFESSIONNEL SIMONE WEIL - EGLISE DE PANTIN"}, "geometry": {"type": "Point", "coordinates": [2.409682709962268, 48.892978463248916]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "764ba0cb0f6d57d54a8a28d9cb58b5cd05ac4f0d", "fields": {"departement": "93", "stop_lat": 48.901398906016496, "code_postal": "93055", "stop_lon": 2.394031449337831, "coord": [48.901398906016496, 2.394031449337831], "stop_id": 4705582, "stop_desc": "55 AVENUE EDOUARD VAILLANT - 93055", "stop_name": "LA PEROUSE"}, "geometry": {"type": "Point", "coordinates": [2.394031449337831, 48.901398906016496]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1d6cfdae6486719a93fcf745be56e75afc8470af", "fields": {"departement": "93", "stop_lat": 48.90288244987511, "code_postal": "93055", "stop_lon": 2.392601686654297, "coord": [48.90288244987511, 2.392601686654297], "stop_id": 4705584, "stop_desc": "91 AVENUE EDOUARD VAILLANT - 93055", "stop_name": "QUATRE CHEMINS - EDOUARD VAILLANT"}, "geometry": {"type": "Point", "coordinates": [2.392601686654297, 48.90288244987511]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1a1ebd188a8c66de99015ae68dc9a3ef437f4cfc", "fields": {"departement": "93", "stop_lat": 48.90399735605275, "code_postal": "93001", "stop_lon": 2.3914986400152225, "coord": [48.90399735605275, 2.3914986400152225], "stop_id": 4705586, "stop_desc": "144 AVENUE DE LA REPUBLIQUE - 93001", "stop_name": "QUATRE CHEMINS - REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.3914986400152225, 48.90399735605275]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "82cee3fbdaf148fb895346b7fde43243c18e066b", "fields": {"departement": "93", "stop_lat": 48.91880699588042, "code_postal": "93001", "stop_lon": 2.3936278000572, "coord": [48.91880699588042, 2.3936278000572], "stop_id": 4705596, "stop_desc": "94 R CHARLES TILLON - 93001", "stop_name": "DANIELLE CASANOVA - PONT BLANC"}, "geometry": {"type": "Point", "coordinates": [2.3936278000572, 48.91880699588042]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "22948a88f0aca9fb840a34820815c29402565a1e", "fields": {"departement": "93", "stop_lat": 48.92099148363308, "code_postal": "93001", "stop_lon": 2.392225562923133, "coord": [48.92099148363308, 2.392225562923133], "stop_id": 4705599, "stop_desc": "PETIT CHEMIN DU PONT BLANC - 93001", "stop_name": "PETIT CHEMIN DU PONT BLANC"}, "geometry": {"type": "Point", "coordinates": [2.392225562923133, 48.92099148363308]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0c64ca68ba879f8222cd7e3b65e4923a33e49937", "fields": {"departement": "93", "stop_lat": 48.926131929170396, "code_postal": "93027", "stop_lon": 2.392408318020954, "coord": [48.926131929170396, 2.392408318020954], "stop_id": 4705604, "stop_desc": "FACE 9 RUE JULES FERRY - 93027", "stop_name": "HOTEL DE VILLE - CENTRE ADMINISTRATIF"}, "geometry": {"type": "Point", "coordinates": [2.392408318020954, 48.926131929170396]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2ac06b414bbc6c0d1d5a84000add3dcad9d774b1", "fields": {"departement": "93", "stop_lat": 48.9314223343293, "code_postal": "93030", "stop_lon": 2.3983199782883196, "coord": [48.9314223343293, 2.3983199782883196], "stop_id": 4705608, "stop_desc": "FACE 61 R EDGAR QUINET - 93030", "stop_name": "JEAN MERMOZ - HENRI BARBUSSE"}, "geometry": {"type": "Point", "coordinates": [2.3983199782883196, 48.9314223343293]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0f044a9cdb5088a85f79537e9c5788355201609f", "fields": {"departement": "93", "stop_lat": 48.949700610015846, "code_postal": "93030", "stop_lon": 2.4152881329205003, "coord": [48.949700610015846, 2.4152881329205003], "stop_id": 4705615, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 93030", "stop_name": "ALBERT CHARDAVOINE"}, "geometry": {"type": "Point", "coordinates": [2.4152881329205003, 48.949700610015846]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a23948f5d5f5b92da53f4e4b7f313d7aad5b815b", "fields": {"departement": "93", "stop_lat": 48.92754239689394, "code_postal": "93027", "stop_lon": 2.3934327271265685, "coord": [48.92754239689394, 2.3934327271265685], "stop_id": 4705625, "stop_desc": "FACE 2 RUE EDGAR QUINET - 93027", "stop_name": "HOTEL DE VILLE DE LA COURNEUVE-TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.3934327271265685, 48.92754239689394]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "640a2a2bcef57b268e5c926f3dd0ae143f73d8d4", "fields": {"departement": "93", "stop_lat": 48.91289586731542, "code_postal": "93001", "stop_lon": 2.3884946437181336, "coord": [48.91289586731542, 2.3884946437181336], "stop_id": 4705626, "stop_desc": "161 RUE DES CITES - 93001", "stop_name": "NOUVELLE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.3884946437181336, 48.91289586731542]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7f4487a46a5ce83ba221786b5a94eb06a72bbf63", "fields": {"departement": "93", "stop_lat": 48.953905794238224, "code_postal": "93030", "stop_lon": 2.4162087349141093, "coord": [48.953905794238224, 2.4162087349141093], "stop_id": 4705633, "stop_desc": "21 AVENUE LOUIS LARIVIERE - 93030", "stop_name": "GABRIEL PERI"}, "geometry": {"type": "Point", "coordinates": [2.4162087349141093, 48.953905794238224]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b2a9e64e408dfbf276b99166d68cec2d0d75da55", "fields": {"departement": "93", "stop_lat": 48.949359584636994, "code_postal": "93030", "stop_lon": 2.414564459753071, "coord": [48.949359584636994, 2.414564459753071], "stop_id": 4705635, "stop_desc": "14 AVENUE DU GENERAL DE GAULLE - 93030", "stop_name": "ALBERT CHARDAVOINE"}, "geometry": {"type": "Point", "coordinates": [2.414564459753071, 48.949359584636994]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7b4daf87023c48f3028b426ebcf7ba68d9f2b263", "fields": {"departement": "93", "stop_lat": 48.930120313484025, "code_postal": "93027", "stop_lon": 2.3961770509521334, "coord": [48.930120313484025, 2.3961770509521334], "stop_id": 4705640, "stop_desc": "23 BIS RUE EDGAR QUINET - 93027", "stop_name": "CHABROL"}, "geometry": {"type": "Point", "coordinates": [2.3961770509521334, 48.930120313484025]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a0ef6843ea724c9a8951082fba01da35107457f6", "fields": {"departement": "93", "stop_lat": 48.92619490057146, "code_postal": "93027", "stop_lon": 2.39227200102727, "coord": [48.92619490057146, 2.39227200102727], "stop_id": 4705642, "stop_desc": "9 RUE JULES FERRY - 93027", "stop_name": "HOTEL DE VILLE - CENTRE ADMINISTRATIF"}, "geometry": {"type": "Point", "coordinates": [2.39227200102727, 48.92619490057146]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b4fe5e0ec7edae7b71eb6afe969aa7eea23627ba", "fields": {"departement": "93", "stop_lat": 48.917126840375, "code_postal": "93001", "stop_lon": 2.392753266432231, "coord": [48.917126840375, 2.392753266432231], "stop_id": 4705647, "stop_desc": "FACE 46 R CHARLES TILLON - 93001", "stop_name": "CIMETIERE - PONT BLANC"}, "geometry": {"type": "Point", "coordinates": [2.392753266432231, 48.917126840375]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d4809d09ef17d0842f15e3004198f526a4d57799", "fields": {"departement": "93", "stop_lat": 48.909130517454116, "code_postal": "93001", "stop_lon": 2.38798646491481, "coord": [48.909130517454116, 2.38798646491481], "stop_id": 4705650, "stop_desc": "FACE 110 RUE DES CITES - 93001", "stop_name": "PAUL BERT"}, "geometry": {"type": "Point", "coordinates": [2.38798646491481, 48.909130517454116]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a2bd317575c588089c67255c212ec2041a700c7f", "fields": {"departement": "93", "stop_lat": 48.89931266233647, "code_postal": "93055", "stop_lon": 2.3965645909629774, "coord": [48.89931266233647, 2.3965645909629774], "stop_id": 4705655, "stop_desc": "31 AVENUE EDOUARD VAILLANT - 93055", "stop_name": "JEAN MOULIN"}, "geometry": {"type": "Point", "coordinates": [2.3965645909629774, 48.89931266233647]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ebf5626c177864031a757ea02e68aab6d68dd6a1", "fields": {"departement": "93", "stop_lat": 48.89054284872542, "code_postal": "93055", "stop_lon": 2.40982922555458, "coord": [48.89054284872542, 2.40982922555458], "stop_id": 4705661, "stop_desc": "22 RUE JULES AUFFRET - 93055", "stop_name": "8 MAI 1945"}, "geometry": {"type": "Point", "coordinates": [2.40982922555458, 48.89054284872542]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a29cbc8facdd9777962e117eccb6c534df75cb5c", "fields": {"departement": "93", "stop_lat": 48.88691177296166, "code_postal": "93055", "stop_lon": 2.4102329834834952, "coord": [48.88691177296166, 2.4102329834834952], "stop_id": 4705663, "stop_desc": "56 RUE JULES AUFFRET - 93055", "stop_name": "MONTIGNY - MAISON DE RETRAITE"}, "geometry": {"type": "Point", "coordinates": [2.4102329834834952, 48.88691177296166]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a1a77aa4367ba1c8ce8cde6807e30bad9099aa1a", "fields": {"departement": "95", "stop_lat": 48.98924288195465, "code_postal": "95585", "stop_lon": 2.375953026331125, "coord": [48.98924288195465, 2.375953026331125], "stop_id": 4712391, "stop_desc": "BOULEVARD FRANCOIS MITTERRAND - 95585", "stop_name": "SOUS-PREFECTURE"}, "geometry": {"type": "Point", "coordinates": [2.375953026331125, 48.98924288195465]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9a2d4103f352958debe99dc67844f03742d1da77", "fields": {"departement": "95", "stop_lat": 48.989332563626846, "code_postal": "95585", "stop_lon": 2.3765129504983147, "coord": [48.989332563626846, 2.3765129504983147], "stop_id": 4712392, "stop_desc": "BOULEVARD FRANCOIS MITTERRAND - 95585", "stop_name": "SOUS-PREFECTURE"}, "geometry": {"type": "Point", "coordinates": [2.3765129504983147, 48.989332563626846]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fe1cd5c732749f63c84ff2351d87488332636c11", "fields": {"departement": "75", "stop_lat": 48.831731660986215, "code_postal": "75112", "stop_lon": 2.3878563351392117, "coord": [48.831731660986215, 2.3878563351392117], "stop_id": 4723801, "stop_desc": "FACE 30 AVENUE DES TERROIRS DE FRANCE - 75112", "stop_name": "TERROIRS DE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.3878563351392117, 48.831731660986215]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7eb72984b5c0b3b62db304719e667b58d05e1a38", "fields": {"departement": "75", "stop_lat": 48.8315739894512, "code_postal": "75112", "stop_lon": 2.398270535794567, "coord": [48.8315739894512, 2.398270535794567], "stop_id": 4723807, "stop_desc": "AVENUE DE LA PORTE DE CHARENTON - 75112", "stop_name": "PORTE DE CHARENTON"}, "geometry": {"type": "Point", "coordinates": [2.398270535794567, 48.8315739894512]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "14e9e39945ecdcf96eab15971f8b980d258f43ff", "fields": {"departement": "94", "stop_lat": 48.825529348029235, "code_postal": "94018", "stop_lon": 2.407260928275537, "coord": [48.825529348029235, 2.407260928275537], "stop_id": 4723810, "stop_desc": "135 RUE DE PARIS - 94018", "stop_name": "LIBERTE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.407260928275537, 48.825529348029235]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d8151c2b0bcb58c40c06d9079dd5566d43a6f99d", "fields": {"departement": "94", "stop_lat": 48.820958902132894, "code_postal": "94018", "stop_lon": 2.4148495637651513, "coord": [48.820958902132894, 2.4148495637651513], "stop_id": 4723814, "stop_desc": "FACE 3 RUE GABRIELLE - 94018", "stop_name": "RUE GABRIELLE"}, "geometry": {"type": "Point", "coordinates": [2.4148495637651513, 48.820958902132894]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9d1e4a3d59c89999695e8fc0aec3ff33c9aa1561", "fields": {"departement": "94", "stop_lat": 48.82194179585436, "code_postal": "94069", "stop_lon": 2.4232218060551216, "coord": [48.82194179585436, 2.4232218060551216], "stop_id": 4723816, "stop_desc": "39 RUE DU VAL D'OSNE - 94069", "stop_name": "HOPITAL NATIONAL DE SAINT-MAURICE"}, "geometry": {"type": "Point", "coordinates": [2.4232218060551216, 48.82194179585436]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8abcf1a58f94e06e9fd09121a6ab047d06a8361c", "fields": {"departement": "94", "stop_lat": 48.81804496236758, "code_postal": "94069", "stop_lon": 2.4300883977837833, "coord": [48.81804496236758, 2.4300883977837833], "stop_id": 4723822, "stop_desc": "57 RUE DU MARECHAL LECLERC - 94069", "stop_name": "HOPITAL ESQUIROL"}, "geometry": {"type": "Point", "coordinates": [2.4300883977837833, 48.81804496236758]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4165db9c5684af79b40850d139c6df569cf2c189", "fields": {"departement": "94", "stop_lat": 48.81799355417233, "code_postal": "94069", "stop_lon": 2.4481487511090174, "coord": [48.81799355417233, 2.4481487511090174], "stop_id": 4723830, "stop_desc": "FACE 156 RUE DU MARECHAL LECLERC - 94069", "stop_name": "CFA - ANDRIEU"}, "geometry": {"type": "Point", "coordinates": [2.4481487511090174, 48.81799355417233]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aab6ff3376f7211bb544bedef900cdf4ce74a058", "fields": {"departement": "94", "stop_lat": 48.81763994544958, "code_postal": "94069", "stop_lon": 2.4514143694904704, "coord": [48.81763994544958, 2.4514143694904704], "stop_id": 4723832, "stop_desc": "FACE 178 RUE DU MARECHAL LECLERC - 94069", "stop_name": "ROSERAIE"}, "geometry": {"type": "Point", "coordinates": [2.4514143694904704, 48.81763994544958]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "571d7308a419ea98759857447fcb27d52ae0b8cd", "fields": {"departement": "94", "stop_lat": 48.812275166309234, "code_postal": "94068", "stop_lon": 2.46800492561192, "coord": [48.812275166309234, 2.46800492561192], "stop_id": 4723842, "stop_desc": "BOULEVARD DE L'EUROPE - 94068", "stop_name": "MAURICE BERTEAUX"}, "geometry": {"type": "Point", "coordinates": [2.46800492561192, 48.812275166309234]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3322e31c3af9ea4efeec0d027e3e5959cc49142a", "fields": {"departement": "94", "stop_lat": 48.80679780315122, "code_postal": "94068", "stop_lon": 2.4714201083472345, "coord": [48.80679780315122, 2.4714201083472345], "stop_id": 4723846, "stop_desc": "37 RUE DU PONT DE CRETEIL - 94068", "stop_name": "SAINT-MAUR - CRETEIL RER"}, "geometry": {"type": "Point", "coordinates": [2.4714201083472345, 48.80679780315122]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7baf1dea813a6ddf36dd3242bdf43e8da2e96729", "fields": {"departement": "94", "stop_lat": 48.794361222724945, "code_postal": "94068", "stop_lon": 2.4769655328437334, "coord": [48.794361222724945, 2.4769655328437334], "stop_id": 4723854, "stop_desc": "5 PLACE GALILEE - 94068", "stop_name": "GALILEE"}, "geometry": {"type": "Point", "coordinates": [2.4769655328437334, 48.794361222724945]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c6aa389e8afd6ad54066947cafc221d306afe003", "fields": {"departement": "94", "stop_lat": 48.78634465839506, "code_postal": "94068", "stop_lon": 2.483880834458613, "coord": [48.78634465839506, 2.483880834458613], "stop_id": 4723858, "stop_desc": "6 AVENUE RASPAIL - 94068", "stop_name": "JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.483880834458613, 48.78634465839506]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "019a7e12d5733ac5218c8aa0a5a022f217a1a0c3", "fields": {"departement": "94", "stop_lat": 48.78871998891044, "code_postal": "94068", "stop_lon": 2.489042821180194, "coord": [48.78871998891044, 2.489042821180194], "stop_id": 4723860, "stop_desc": "161 BOULEVARD DU GENERAL GIRAUD - 94068", "stop_name": "DOCTEUR ROUX - CHAMBRE DES METIERS"}, "geometry": {"type": "Point", "coordinates": [2.489042821180194, 48.78871998891044]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8c2669899aed6a9dc9c5d4f0f65bdfe8a80c913a", "fields": {"departement": "94", "stop_lat": 48.79490458353255, "code_postal": "94068", "stop_lon": 2.514391451014474, "coord": [48.79490458353255, 2.514391451014474], "stop_id": 4723875, "stop_desc": "8 AVENUE DU MESNIL - 94068", "stop_name": "LA VARENNE-CHENNEVIERES RER"}, "geometry": {"type": "Point", "coordinates": [2.514391451014474, 48.79490458353255]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "579280bc392f926fd4e1287f2222cc13cded3c96", "fields": {"departement": "94", "stop_lat": 48.80535296183323, "code_postal": "94068", "stop_lon": 2.5173933587041386, "coord": [48.80535296183323, 2.5173933587041386], "stop_id": 4723884, "stop_desc": "R DU 11 NOVEMBRE - 94068", "stop_name": "GUSTAVE GOUBLIER"}, "geometry": {"type": "Point", "coordinates": [2.5173933587041386, 48.80535296183323]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f5a3a6bdaef246b33de05dc82bcef2e1b3f3a5a7", "fields": {"departement": "75", "stop_lat": 48.828144659099536, "code_postal": "75112", "stop_lon": 2.390017246298964, "coord": [48.828144659099536, 2.390017246298964], "stop_id": 4723895, "stop_desc": "RUE ROBERT ETLIN - 75112", "stop_name": "PONT NATIONAL - QUAI DE BERCY"}, "geometry": {"type": "Point", "coordinates": [2.390017246298964, 48.828144659099536]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "34d83fcc6a1f6d2e02a2795d03ee4838edd34a39", "fields": {"departement": "94", "stop_lat": 48.76668386265578, "code_postal": "94011", "stop_lon": 2.4940499591836605, "coord": [48.76668386265578, 2.4940499591836605], "stop_id": 4726696, "stop_desc": "GRANDE ALLEE - 94011", "stop_name": "MARRONNIERS"}, "geometry": {"type": "Point", "coordinates": [2.4940499591836605, 48.76668386265578]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3b3533c066df0b0aeadc41ac2064f3da6b840e91", "fields": {"departement": "75", "stop_lat": 48.843217014382596, "code_postal": "75115", "stop_lon": 2.3127039743389797, "coord": [48.843217014382596, 2.3127039743389797], "stop_id": 4726702, "stop_desc": "31 BOULEVARD PASTEUR - 75115", "stop_name": "PASTEUR - LYCEE BUFFON"}, "geometry": {"type": "Point", "coordinates": [2.3127039743389797, 48.843217014382596]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ca6c8773f7410de5b9c724f19ea415b6a8c8c7ad", "fields": {"departement": "75", "stop_lat": 48.85223383948741, "code_postal": "75106", "stop_lon": 2.330976343440543, "coord": [48.85223383948741, 2.330976343440543], "stop_id": 4726708, "stop_desc": "49-51 RUE DU FOUR - 75106", "stop_name": "MICHEL DEBRE"}, "geometry": {"type": "Point", "coordinates": [2.330976343440543, 48.85223383948741]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "25deece536393a5e6fd77c25f61718a695a310d8", "fields": {"departement": "75", "stop_lat": 48.85436397838255, "code_postal": "75106", "stop_lon": 2.3336727493054252, "coord": [48.85436397838255, 2.3336727493054252], "stop_id": 4726709, "stop_desc": "PLACE SAINT-GERMAIN DES PRES - 75106", "stop_name": "SAINT-GERMAIN-DES-PRES"}, "geometry": {"type": "Point", "coordinates": [2.3336727493054252, 48.85436397838255]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2a5411bcabe4caf82d1e0c91fe3bb49c1a549f21", "fields": {"departement": "75", "stop_lat": 48.863504222036035, "code_postal": "75101", "stop_lon": 2.3355519423553974, "coord": [48.863504222036035, 2.3355519423553974], "stop_id": 4726713, "stop_desc": "PLACE ANDRE MALRAUX - 75101", "stop_name": "PALAIS ROYAL - COMEDIE FRANCAISE"}, "geometry": {"type": "Point", "coordinates": [2.3355519423553974, 48.863504222036035]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "99dac24f24b83cf103887275f1d1bef0eabd588c", "fields": {"departement": "75", "stop_lat": 48.85319065972661, "code_postal": "75116", "stop_lon": 2.2795228651902506, "coord": [48.85319065972661, 2.2795228651902506], "stop_id": 4726714, "stop_desc": "8 RUE RANELAGH - 75116", "stop_name": "RADIO FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.2795228651902506, 48.85319065972661]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "db4bf9b6af5f27fde5aa67b31ef5bd38d2025270", "fields": {"departement": "93", "stop_lat": 48.910550831592126, "code_postal": "93008", "stop_lon": 2.4316857542938997, "coord": [48.910550831592126, 2.4316857542938997], "stop_id": 3731649, "stop_desc": "AVENUE HENRI BARBUSSE - 93008", "stop_name": "GARE - GRANDE CEINTURE"}, "geometry": {"type": "Point", "coordinates": [2.4316857542938997, 48.910550831592126]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6ca8f7f68dd08cbca414dc9e483c5b0e0632e1be", "fields": {"departement": "93", "stop_lat": 48.90861280077064, "code_postal": "93008", "stop_lon": 2.4275920869735432, "coord": [48.90861280077064, 2.4275920869735432], "stop_id": 3731647, "stop_desc": "53 AVENUE HENRI BARBUSSE - 93008", "stop_name": "LYCEE ALFRED COSTES"}, "geometry": {"type": "Point", "coordinates": [2.4275920869735432, 48.90861280077064]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3a2eff61a540e92eaf77078d8ff516e9b74652dd", "fields": {"departement": "93", "stop_lat": 48.91625647411163, "code_postal": "93029", "stop_lon": 2.4436820205402117, "coord": [48.91625647411163, 2.4436820205402117], "stop_id": 3731657, "stop_desc": "33-35 AVENUE HENRI BARBUSSE - 93029", "stop_name": "CHARLES GIDE"}, "geometry": {"type": "Point", "coordinates": [2.4436820205402117, 48.91625647411163]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dbc52ea248459cee591f11b03a9315b74e092442", "fields": {"departement": "94", "stop_lat": 48.77804860687779, "code_postal": "94038", "stop_lon": 2.3497390229670976, "coord": [48.77804860687779, 2.3497390229670976], "stop_id": 3730684, "stop_desc": "1 RUE JULES FERRY - 94038", "stop_name": "JULES FERRY-FERRER"}, "geometry": {"type": "Point", "coordinates": [2.3497390229670976, 48.77804860687779]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "07e0f41ee4358d3d73efdf4e6c20cd738dd7d3e7", "fields": {"departement": "93", "stop_lat": 48.90002406190681, "code_postal": "93055", "stop_lon": 2.410210555550883, "coord": [48.90002406190681, 2.410210555550883], "stop_id": 3731639, "stop_desc": "128 AVENUE DU GENERAL LECLERC - 93055", "stop_name": "DIDEROT"}, "geometry": {"type": "Point", "coordinates": [2.410210555550883, 48.90002406190681]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0b37b8879ed8f686e13a877b6d483a0ee7f8e0fb", "fields": {"departement": "93", "stop_lat": 48.91448882982782, "code_postal": "93008", "stop_lon": 2.440501356576236, "coord": [48.91448882982782, 2.440501356576236], "stop_id": 3731654, "stop_desc": "66 AVENUE LOUIS ARAGON - 93008", "stop_name": "PAUL BELWO"}, "geometry": {"type": "Point", "coordinates": [2.440501356576236, 48.91448882982782]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "473f69a0ec4ba30db85a3e3dc2c27b62aa446c29", "fields": {"departement": "93", "stop_lat": 48.89388169834081, "code_postal": "93055", "stop_lon": 2.4018195179428488, "coord": [48.89388169834081, 2.4018195179428488], "stop_id": 3731631, "stop_desc": "34-36 RUE HOCHE - 93055", "stop_name": "MONTGOLFIER"}, "geometry": {"type": "Point", "coordinates": [2.4018195179428488, 48.89388169834081]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "94cff330fb508b8be6bc4ec4b033af07a1c0616b", "fields": {"departement": "94", "stop_lat": 48.772395787216, "code_postal": "94021", "stop_lon": 2.3389680290446595, "coord": [48.772395787216, 2.3389680290446595], "stop_id": 3730648, "stop_desc": "40 BOULEVARD JEAN MERMOZ - 94021", "stop_name": "JEAN MERMOZ - GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.3389680290446595, 48.772395787216]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "253a7a22b7fd340eea5aac4e10e61ef321c43de6", "fields": {"departement": "94", "stop_lat": 48.7782559158079, "code_postal": "94038", "stop_lon": 2.341348145312451, "coord": [48.7782559158079, 2.341348145312451], "stop_id": 3730645, "stop_desc": "RUE HENRI THIRARD - 94038", "stop_name": "HENRI THIRARD-LEON JOUHAUX"}, "geometry": {"type": "Point", "coordinates": [2.341348145312451, 48.7782559158079]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "07d57e5019cc39c2a1eae89f45da9486cba70652", "fields": {"departement": "94", "stop_lat": 48.75198192285552, "code_postal": "94034", "stop_lon": 2.3161044616529747, "coord": [48.75198192285552, 2.3161044616529747], "stop_id": 3730664, "stop_desc": "FACE 15 AVENUE DU PARC DES SPORTS - 94034", "stop_name": "PARC DES SPORTS"}, "geometry": {"type": "Point", "coordinates": [2.3161044616529747, 48.75198192285552]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "269e37b88316aaa26dac1a74b41a24e9355faa6c", "fields": {"departement": "94", "stop_lat": 48.77844264493586, "code_postal": "94038", "stop_lon": 2.3595444346841847, "coord": [48.77844264493586, 2.3595444346841847], "stop_id": 3730636, "stop_desc": "RUE SAINTE COLOMBE - 94038", "stop_name": "GUSTAVE CHARPENTIER"}, "geometry": {"type": "Point", "coordinates": [2.3595444346841847, 48.77844264493586]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0c90aeadf89832f0cac68fec9cf401b2e96378c5", "fields": {"departement": "94", "stop_lat": 48.76385701390974, "code_postal": "94034", "stop_lon": 2.331870744861793, "coord": [48.76385701390974, 2.331870744861793], "stop_id": 3730654, "stop_desc": "94 AVENUE DE LA PAIX - 94034", "stop_name": "STADE DE LA PAIX"}, "geometry": {"type": "Point", "coordinates": [2.331870744861793, 48.76385701390974]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "60d5c8e8ce97fb0ddffcc1b984f4c0f322a9ed5f", "fields": {"departement": "94", "stop_lat": 48.77619667073651, "code_postal": "94038", "stop_lon": 2.3531519316774583, "coord": [48.77619667073651, 2.3531519316774583], "stop_id": 3730641, "stop_desc": "5 RUE DES MARGUERITES - 94038", "stop_name": "RUE DE BICETRE"}, "geometry": {"type": "Point", "coordinates": [2.3531519316774583, 48.77619667073651]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b369ca94b4aec9506e0bb32d0853c2ff6735c1cd", "fields": {"departement": "92", "stop_lat": 48.74982316970425, "code_postal": "92002", "stop_lon": 2.308534529548065, "coord": [48.74982316970425, 2.308534529548065], "stop_id": 3730670, "stop_desc": "10 PLACE LEWISHAM - 92002", "stop_name": "LYCEE-LES FLEURS"}, "geometry": {"type": "Point", "coordinates": [2.308534529548065, 48.74982316970425]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "045bd0bd56c0663f3389e9a7f1a443618c6587cf", "fields": {"departement": "94", "stop_lat": 48.78087805270045, "code_postal": "94076", "stop_lon": 2.361272711040473, "coord": [48.78087805270045, 2.361272711040473], "stop_id": 3730634, "stop_desc": "23 RUE SAINTE-COLOMBE - 94076", "stop_name": "LAMARTINE"}, "geometry": {"type": "Point", "coordinates": [2.361272711040473, 48.78087805270045]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "615168ece50f223c1079176bf1812e39a3feb366", "fields": {"departement": "94", "stop_lat": 48.775575985902144, "code_postal": "94038", "stop_lon": 2.3566058513906185, "coord": [48.775575985902144, 2.3566058513906185], "stop_id": 3730637, "stop_desc": "39 RUE PAUL HOCHART - 94038", "stop_name": "POITOU"}, "geometry": {"type": "Point", "coordinates": [2.3566058513906185, 48.775575985902144]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f834ffcfc1622f014f115276d845ae1e65dc2b7a", "fields": {"departement": "94", "stop_lat": 48.77648348864581, "code_postal": "94038", "stop_lon": 2.358292477233825, "coord": [48.77648348864581, 2.358292477233825], "stop_id": 3730638, "stop_desc": "RUE SAINTE COLOMBE - 94038", "stop_name": "POITOU"}, "geometry": {"type": "Point", "coordinates": [2.358292477233825, 48.77648348864581]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9e6b414337e3360b4670c903c02a3cba58e5085e", "fields": {"departement": "91", "stop_lat": 48.68687073348949, "code_postal": "91589", "stop_lon": 2.353070335849902, "coord": [48.68687073348949, 2.353070335849902], "stop_id": 3732138, "stop_desc": "155 BD ARISTIDE BRIAND - 91589", "stop_name": "MARCHE DE SAVIGNY-SUR-ORGE"}, "geometry": {"type": "Point", "coordinates": [2.353070335849902, 48.68687073348949]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6ea4afc57fd92cfa2f974fbe20e093af3b150521", "fields": {"departement": "91", "stop_lat": 48.67584190149792, "code_postal": "91589", "stop_lon": 2.3509496272348955, "coord": [48.67584190149792, 2.3509496272348955], "stop_id": 3732127, "stop_desc": "4 RUE CHAMBERLIN - 91589", "stop_name": "GARE DE SAVIGNY-SUR-ORGE RER"}, "geometry": {"type": "Point", "coordinates": [2.3509496272348955, 48.67584190149792]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9f8690b54a93f32f0ef5a95399539fc578629d23", "fields": {"departement": "93", "stop_lat": 48.92092869371912, "code_postal": "93007", "stop_lon": 2.471415705673426, "coord": [48.92092869371912, 2.471415705673426], "stop_id": 3731677, "stop_desc": "2-4 RUE DES MASCOTTES - 93007", "stop_name": "SURCOUF - JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.471415705673426, 48.92092869371912]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3630483af7bf7aff547dac970b945e9fd8034017", "fields": {"departement": "91", "stop_lat": 48.680912180885926, "code_postal": "91589", "stop_lon": 2.342833636658366, "coord": [48.680912180885926, 2.342833636658366], "stop_id": 3732131, "stop_desc": "6 BD ARISTIDE BRIAND - 91589", "stop_name": "BRIAND - SALENGRO"}, "geometry": {"type": "Point", "coordinates": [2.342833636658366, 48.680912180885926]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d0dc11ebc56bf2ec86db06559f6a45ecf6a43ea0", "fields": {"departement": "93", "stop_lat": 48.91953137599179, "code_postal": "93007", "stop_lon": 2.475216716918382, "coord": [48.91953137599179, 2.475216716918382], "stop_id": 3731676, "stop_desc": "AVENUE DE SURCOUF - 93007", "stop_name": "JARDINS DE LA NOUE"}, "geometry": {"type": "Point", "coordinates": [2.475216716918382, 48.91953137599179]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e8dc9e8522b6117b9292450cda8bfe08b2b9494f", "fields": {"departement": "93", "stop_lat": 48.91971930797134, "code_postal": "93029", "stop_lon": 2.459466810714059, "coord": [48.91971930797134, 2.459466810714059], "stop_id": 3731665, "stop_desc": "77 R AUGUSTE BLANQUI - 93029", "stop_name": "EDOUARD LIEVIN"}, "geometry": {"type": "Point", "coordinates": [2.459466810714059, 48.91971930797134]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1ad6ba14cea182ea114ee097e63635e145b79ea4", "fields": {"departement": "91", "stop_lat": 48.683464847717204, "code_postal": "91589", "stop_lon": 2.344870128655364, "coord": [48.683464847717204, 2.344870128655364], "stop_id": 3732133, "stop_desc": "26 BD ARISTIDE BRIAND - 91589", "stop_name": "GOUNOD"}, "geometry": {"type": "Point", "coordinates": [2.344870128655364, 48.683464847717204]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "14cd577f1ec69f39955611a79b50aaea0f79ee64", "fields": {"departement": "91", "stop_lat": 48.67465580293729, "code_postal": "91589", "stop_lon": 2.346741842972062, "coord": [48.67465580293729, 2.346741842972062], "stop_id": 3732126, "stop_desc": "8-10 AV GAMBETTA - 91589", "stop_name": "MARTINIERE"}, "geometry": {"type": "Point", "coordinates": [2.346741842972062, 48.67465580293729]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4e7b1d6f4efa3083959aafc82014a5ce5871a886", "fields": {"departement": "75", "stop_lat": 48.863504222036035, "code_postal": "75101", "stop_lon": 2.3355519423553974, "coord": [48.863504222036035, 2.3355519423553974], "stop_id": 3749779, "stop_desc": "PLACE ANDRE MALRAUX - 75101", "stop_name": "PALAIS ROYAL - COMEDIE FRANCAISE"}, "geometry": {"type": "Point", "coordinates": [2.3355519423553974, 48.863504222036035]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5d2569f5d5c03e5d7e696827d72ebf4a5a4ca233", "fields": {"departement": "75", "stop_lat": 48.87920722627799, "code_postal": "75119", "stop_lon": 2.3986945030683886, "coord": [48.87920722627799, 2.3986945030683886], "stop_id": 3749796, "stop_desc": "74-76 RUE DU PRE SAINT-GERVAIS - 75119", "stop_name": "PRE-SAINT-GERVAIS - ALLES"}, "geometry": {"type": "Point", "coordinates": [2.3986945030683886, 48.87920722627799]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4cadeca33020d032bf5663c74ada8ea4463a4f65", "fields": {"departement": "75", "stop_lat": 48.87084646432337, "code_postal": "75109", "stop_lon": 2.3474861878041238, "coord": [48.87084646432337, 2.3474861878041238], "stop_id": 3749774, "stop_desc": "4 BOULEVARD POISSONNIERE - 75109", "stop_name": "POISSONNIERE - BONNE NOUVELLE"}, "geometry": {"type": "Point", "coordinates": [2.3474861878041238, 48.87084646432337]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "984b415bda80d08eef680c0ebfcf18f02ffc547f", "fields": {"departement": "75", "stop_lat": 48.87812082340856, "code_postal": "75119", "stop_lon": 2.3966084744339966, "coord": [48.87812082340856, 2.3966084744339966], "stop_id": 3749795, "stop_desc": "FACE 29BIS RUE DU PRE SAINT-GERVAIS - 75119", "stop_name": "LOUISE THULIEZ"}, "geometry": {"type": "Point", "coordinates": [2.3966084744339966, 48.87812082340856]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7b52f0643eccf470cf14cbdc18f06a797077e202", "fields": {"departement": "75", "stop_lat": 48.883379976623885, "code_postal": "75110", "stop_lon": 2.368842386422918, "coord": [48.883379976623885, 2.368842386422918], "stop_id": 3749794, "stop_desc": "11 PLACE DE LA BATAILLE DE STALINGRAD - 75110", "stop_name": "STALINGRAD"}, "geometry": {"type": "Point", "coordinates": [2.368842386422918, 48.883379976623885]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5fe88139f0e10e4f99ecd8cf66d70618965e4faa", "fields": {"departement": "75", "stop_lat": 48.88441392026158, "code_postal": "75119", "stop_lon": 2.367248609568296, "coord": [48.88441392026158, 2.367248609568296], "stop_id": 3749762, "stop_desc": "222 BOULEVARD DE LA VILLETTE - 75119", "stop_name": "STALINGRAD"}, "geometry": {"type": "Point", "coordinates": [2.367248609568296, 48.88441392026158]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4f39d86a2b0a8169c711723d05e64aa250277154", "fields": {"departement": "75", "stop_lat": 48.871574850762954, "code_postal": "75102", "stop_lon": 2.3397615041178366, "coord": [48.871574850762954, 2.3397615041178366], "stop_id": 3749776, "stop_desc": "103 RUE DE RICHELIEU - 75102", "stop_name": "RICHELIEU - DROUOT"}, "geometry": {"type": "Point", "coordinates": [2.3397615041178366, 48.871574850762954]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a95c11bfca1707caf7849fb493310b13e5f1ab7e", "fields": {"departement": "75", "stop_lat": 48.87794593694368, "code_postal": "75110", "stop_lon": 2.3521884586483655, "coord": [48.87794593694368, 2.3521884586483655], "stop_id": 3749789, "stop_desc": "130 RUE LA FAYETTE - 75110", "stop_name": "PLACE FRANZ LISZT"}, "geometry": {"type": "Point", "coordinates": [2.3521884586483655, 48.87794593694368]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "563af9c6f9671e90ee1d4d8cc08ec326c9749f98", "fields": {"departement": "75", "stop_lat": 48.87588828612577, "code_postal": "75109", "stop_lon": 2.3481548161726318, "coord": [48.87588828612577, 2.3481548161726318], "stop_id": 3749772, "stop_desc": "69 RUE DU FAUBOURG POISSONNIERE - 75109", "stop_name": "PARADIS"}, "geometry": {"type": "Point", "coordinates": [2.3481548161726318, 48.87588828612577]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c6beca64e10094c0862a5f19f748be47df06108d", "fields": {"departement": "75", "stop_lat": 48.851113099962134, "code_postal": "75112", "stop_lon": 2.3764764230229707, "coord": [48.851113099962134, 2.3764764230229707], "stop_id": 3748059, "stop_desc": "90-92 RUE DU FAUBOURG SAINT ANTOINE - 75112", "stop_name": "LEDRU ROLLIN - FAUBOURG SAINT-ANTOINE"}, "geometry": {"type": "Point", "coordinates": [2.3764764230229707, 48.851113099962134]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5b8e74fce609b15bcc30c1e754638b88c7a3d1e2", "fields": {"departement": "75", "stop_lat": 48.849842516859745, "code_postal": "75112", "stop_lon": 2.3855861239156644, "coord": [48.849842516859745, 2.3855861239156644], "stop_id": 3748063, "stop_desc": "206 RUE DU FAUBOURG SAINT ANTOINE - 75112", "stop_name": "FAIDHERBE - CHALIGNY"}, "geometry": {"type": "Point", "coordinates": [2.3855861239156644, 48.849842516859745]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "69f6b103c6ef0660488e70a24957c2ee9591b53b", "fields": {"departement": "75", "stop_lat": 48.853429302159356, "code_postal": "75106", "stop_lon": 2.334367396488073, "coord": [48.853429302159356, 2.334367396488073], "stop_id": 3748041, "stop_desc": "145 BOULEVARD SAINT GERMAIN - 75106", "stop_name": "SAINT-GERMAIN-DES-PRES"}, "geometry": {"type": "Point", "coordinates": [2.334367396488073, 48.853429302159356]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a415a851545a1679c961fe913031208ba804aefc", "fields": {"departement": "75", "stop_lat": 48.852162079896225, "code_postal": "75106", "stop_lon": 2.3397060895787947, "coord": [48.852162079896225, 2.3397060895787947], "stop_id": 3748044, "stop_desc": "87 BOULEVARD SAINT GERMAIN - 75106", "stop_name": "SAINT-GERMAIN - ODEON"}, "geometry": {"type": "Point", "coordinates": [2.3397060895787947, 48.852162079896225]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7d8124713a0d77d922e411587d0378fa78db5ada", "fields": {"departement": "75", "stop_lat": 48.855829993598746, "code_postal": "75111", "stop_lon": 2.380851978185481, "coord": [48.855829993598746, 2.380851978185481], "stop_id": 3747964, "stop_desc": "26 RUE GODEFROY-CAVAIGNAC - 75111", "stop_name": "GODEFROY - CAVAIGNAC"}, "geometry": {"type": "Point", "coordinates": [2.380851978185481, 48.855829993598746]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6384c9560e74ab6220e3dc1fafbaff7e5941e575", "fields": {"departement": "75", "stop_lat": 48.83937307193849, "code_postal": "75112", "stop_lon": 2.429527475122012, "coord": [48.83937307193849, 2.429527475122012], "stop_id": 3747956, "stop_desc": "AVENUE DAUMESNIL - 75112", "stop_name": "TOURELLE - DAUMESNIL"}, "geometry": {"type": "Point", "coordinates": [2.429527475122012, 48.83937307193849]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "489296f78d0c900b07cd41f6cc4a91c418abc39b", "fields": {"departement": "75", "stop_lat": 48.8507261218596, "code_postal": "75111", "stop_lon": 2.378015027674748, "coord": [48.8507261218596, 2.378015027674748], "stop_id": 3748060, "stop_desc": "120 R DU FAUBOURG SAINT-ANTOINE - 75111", "stop_name": "CROZATIER"}, "geometry": {"type": "Point", "coordinates": [2.378015027674748, 48.8507261218596]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1dbc7925132e441ca00132dc98cc593087a9e1dd", "fields": {"departement": "75", "stop_lat": 48.8782477025437, "code_postal": "75119", "stop_lon": 2.370855875922014, "coord": [48.8782477025437, 2.370855875922014], "stop_id": 3747967, "stop_desc": "4 PLACE DU COLONEL FABIEN - 75119", "stop_name": "COLONEL FABIEN"}, "geometry": {"type": "Point", "coordinates": [2.370855875922014, 48.8782477025437]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a724ac16ef4cccd34544b6f71a2d070f21f7d66c", "fields": {"departement": "94", "stop_lat": 48.834187321739286, "code_postal": "94067", "stop_lon": 2.416965937001891, "coord": [48.834187321739286, 2.416965937001891], "stop_id": 3747952, "stop_desc": "31 BIS AVENUE DAUMESNIL - 94067", "stop_name": "ALPHAND"}, "geometry": {"type": "Point", "coordinates": [2.416965937001891, 48.834187321739286]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ae3b748f3aa7c6415659c995cd9cc1309f8fd2cd", "fields": {"departement": "75", "stop_lat": 48.84787500756238, "code_postal": "75120", "stop_lon": 2.402810824531941, "coord": [48.84787500756238, 2.402810824531941], "stop_id": 3748083, "stop_desc": "39 COURS DE VINCENNES - 75120", "stop_name": "MARSOULAN"}, "geometry": {"type": "Point", "coordinates": [2.402810824531941, 48.84787500756238]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1b07cb44260576fa6b956ae64ecb68a5b4d1f77e", "fields": {"departement": "75", "stop_lat": 48.878107383214136, "code_postal": "75110", "stop_lon": 2.354586637385039, "coord": [48.878107383214136, 2.354586637385039], "stop_id": 3740296, "stop_desc": "110 BOULEVARD DE MAGENTA - 75110", "stop_name": "LA FAYETTE - MAGENTA - GARE DU NORD"}, "geometry": {"type": "Point", "coordinates": [2.354586637385039, 48.878107383214136]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "766f319e6b56e10ac5906633c442877ed916c41f", "fields": {"departement": "75", "stop_lat": 48.881334194288584, "code_postal": "75110", "stop_lon": 2.351712503852361, "coord": [48.881334194288584, 2.351712503852361], "stop_id": 3740298, "stop_desc": "140-142 BOULEVARD DE MAGENTA - 75110", "stop_name": "MAGENTA - MAUBEUGE - GARE DU NORD"}, "geometry": {"type": "Point", "coordinates": [2.351712503852361, 48.881334194288584]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d6d7a7bae9d24865cb2e36ab2f779f5e44407009", "fields": {"departement": "75", "stop_lat": 48.878916395001, "code_postal": "75110", "stop_lon": 2.353469578838293, "coord": [48.878916395001, 2.353469578838293], "stop_id": 3740297, "stop_desc": "103 BOULEVARD DE MAGENTA - 75110", "stop_name": "LA FAYETTE - MAGENTA - GARE DU NORD"}, "geometry": {"type": "Point", "coordinates": [2.353469578838293, 48.878916395001]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0bb6d709ebb604314f80812d7daf6032432e60a7", "fields": {"departement": "75", "stop_lat": 48.8834647199869, "code_postal": "75118", "stop_lon": 2.3460987084741514, "coord": [48.8834647199869, 2.3460987084741514], "stop_id": 3740301, "stop_desc": "44-46 BOULEVARD DE ROCHECHOUART - 75118", "stop_name": "ROCHECHOUART - CLIGNANCOURT"}, "geometry": {"type": "Point", "coordinates": [2.3460987084741514, 48.8834647199869]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ffb25ba743ce84593eaf3422743b00e5ea4d8075", "fields": {"departement": "75", "stop_lat": 48.88305144279706, "code_postal": "75118", "stop_lon": 2.3440273262563576, "coord": [48.88305144279706, 2.3440273262563576], "stop_id": 3740302, "stop_desc": "68-70 BOULEVARD DE ROCHECHOUART - 75118", "stop_name": "ANVERS - SACRE COEUR"}, "geometry": {"type": "Point", "coordinates": [2.3440273262563576, 48.88305144279706]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "51ddc665cdd0d19345bb2dbca1f2981aea0d442e", "fields": {"departement": "91", "stop_lat": 48.67594077881741, "code_postal": "91589", "stop_lon": 2.35093608043074, "coord": [48.67594077881741, 2.35093608043074], "stop_id": 3732219, "stop_desc": "4 RUE CHAMBERLIN - 91589", "stop_name": "GARE DE SAVIGNY-SUR-ORGE RER"}, "geometry": {"type": "Point", "coordinates": [2.35093608043074, 48.67594077881741]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "46741adb1272768ece7bf9ac1a60798a2e81d954", "fields": {"departement": "75", "stop_lat": 48.88235845069882, "code_postal": "75117", "stop_lon": 2.3205753950835835, "coord": [48.88235845069882, 2.3205753950835835], "stop_id": 3740309, "stop_desc": "BOULEVARD DES BATIGNOLLES - 75117", "stop_name": "ROME - BATIGNOLLES"}, "geometry": {"type": "Point", "coordinates": [2.3205753950835835, 48.88235845069882]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "30b59a1faed7d1b6ece450d65c04592ae3d1f8fd", "fields": {"departement": "91", "stop_lat": 48.69127355130377, "code_postal": "91589", "stop_lon": 2.362371799704561, "coord": [48.69127355130377, 2.362371799704561], "stop_id": 3732211, "stop_desc": "263 BOULEVARD ARISTIDE BRIAND - 91589", "stop_name": "TOURTERELLES"}, "geometry": {"type": "Point", "coordinates": [2.362371799704561, 48.69127355130377]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ced5616245e3270e8f3f26beba7ee548750de206", "fields": {"departement": "75", "stop_lat": 48.87568923822874, "code_postal": "75110", "stop_lon": 2.358114733926893, "coord": [48.87568923822874, 2.358114733926893], "stop_id": 3740294, "stop_desc": "76 BOULEVARD DE STRASBOURG - 75110", "stop_name": "GARE DE L'EST"}, "geometry": {"type": "Point", "coordinates": [2.358114733926893, 48.87568923822874]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1d7d685a87de36808094ec1c396c6073bbd5ba6c", "fields": {"departement": "91", "stop_lat": 48.68370754567684, "code_postal": "91589", "stop_lon": 2.344802289929455, "coord": [48.68370754567684, 2.344802289929455], "stop_id": 3732215, "stop_desc": "45-47 BD ARISTIDE BRIAND - 91589", "stop_name": "GOUNOD"}, "geometry": {"type": "Point", "coordinates": [2.344802289929455, 48.68370754567684]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eb78175002b3a31a38e8c072b3968d5af549d369", "fields": {"departement": "75", "stop_lat": 48.87315216917849, "code_postal": "75110", "stop_lon": 2.3699124864047145, "coord": [48.87315216917849, 2.3699124864047145], "stop_id": 3747917, "stop_desc": "FACE 22 AVENUE CLAUDE VELLEFAUX - 75110", "stop_name": "HOPITAL SAINT-LOUIS"}, "geometry": {"type": "Point", "coordinates": [2.3699124864047145, 48.87315216917849]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c9afe3d87bd0b2e93271eff2b685bf133688c5b5", "fields": {"departement": "75", "stop_lat": 48.853856485402765, "code_postal": "75111", "stop_lon": 2.369069554093801, "coord": [48.853856485402765, 2.369069554093801], "stop_id": 3747869, "stop_desc": "2 BOULEVARD BEAUMARCHAIS - 75111", "stop_name": "BASTILLE - BEAUMARCHAIS"}, "geometry": {"type": "Point", "coordinates": [2.369069554093801, 48.853856485402765]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "48b63dc17f2c7ac087cb92bc303bb3bdbf44e8ce", "fields": {"departement": "75", "stop_lat": 48.864639698019886, "code_postal": "75111", "stop_lon": 2.3748519886940653, "coord": [48.864639698019886, 2.3748519886940653], "stop_id": 3747923, "stop_desc": "75 AVENUE PARMENTIER - 75111", "stop_name": "PARMENTIER - REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.3748519886940653, 48.864639698019886]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "448fbe2d309b2e38d6f85eee7a690488dd2ad93b", "fields": {"departement": "75", "stop_lat": 48.8653105403532, "code_postal": "75102", "stop_lon": 2.3433575116499887, "coord": [48.8653105403532, 2.3433575116499887], "stop_id": 3747878, "stop_desc": "44 RUE ETIENNE MARCEL - 75102", "stop_name": "LOUVRE - ETIENNE MARCEL"}, "geometry": {"type": "Point", "coordinates": [2.3433575116499887, 48.8653105403532]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e112f62dd15ca1d08dea42dd3fbaa4faebb90354", "fields": {"departement": "75", "stop_lat": 48.84690293855667, "code_postal": "75112", "stop_lon": 2.3872038743131854, "coord": [48.84690293855667, 2.3872038743131854], "stop_id": 3747937, "stop_desc": "35 BIS-35 RUE DE REUILLY - 75112", "stop_name": "REUILLY - DIDEROT"}, "geometry": {"type": "Point", "coordinates": [2.3872038743131854, 48.84690293855667]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7877b33e598a64f0705927159ed894d5296ac86d", "fields": {"departement": "75", "stop_lat": 48.876650394154844, "code_postal": "75110", "stop_lon": 2.3607175660937445, "coord": [48.876650394154844, 2.3607175660937445], "stop_id": 3747911, "stop_desc": "FACE 156 RUE DU FAUBOURG SAINT-MARTIN - 75110", "stop_name": "VERDUN"}, "geometry": {"type": "Point", "coordinates": [2.3607175660937445, 48.876650394154844]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "827f2d97f1491e9dfb1ba9efc04545dcad02532a", "fields": {"departement": "75", "stop_lat": 48.87617468079017, "code_postal": "75110", "stop_lon": 2.3573655408708234, "coord": [48.87617468079017, 2.3573655408708234], "stop_id": 3747908, "stop_desc": "15-17 RUE DU 8 MAI 1945 - 75110", "stop_name": "GARE DE L'EST"}, "geometry": {"type": "Point", "coordinates": [2.3573655408708234, 48.87617468079017]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "26be4f08a7913cb7dae14433bc193c4ef7fd54a2", "fields": {"departement": "75", "stop_lat": 48.867884872081355, "code_postal": "75111", "stop_lon": 2.3724430590789156, "coord": [48.867884872081355, 2.3724430590789156], "stop_id": 3747921, "stop_desc": "109 AVENUE PARMENTIER - 75111", "stop_name": "FONTAINE AU ROI"}, "geometry": {"type": "Point", "coordinates": [2.3724430590789156, 48.867884872081355]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "82663964babf5277bcf748d598546041e0483519", "fields": {"departement": "75", "stop_lat": 48.85600953662013, "code_postal": "75111", "stop_lon": 2.381410546966965, "coord": [48.85600953662013, 2.381410546966965], "stop_id": 3747931, "stop_desc": "35 RUE RICHARD LENOIR - 75111", "stop_name": "GYMNASE JAPY"}, "geometry": {"type": "Point", "coordinates": [2.381410546966965, 48.85600953662013]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e2800080a6bfa6825154bb775aed6c22ad303020", "fields": {"departement": "75", "stop_lat": 48.836045910838756, "code_postal": "75112", "stop_lon": 2.405464361486412, "coord": [48.836045910838756, 2.405464361486412], "stop_id": 3747949, "stop_desc": "275 AVENUE DAUMESNIL - 75112", "stop_name": "PORTE DOREE"}, "geometry": {"type": "Point", "coordinates": [2.405464361486412, 48.836045910838756]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3eead8f51271a6069736ae294620ccfa6896264d", "fields": {"departement": "93", "stop_lat": 48.908159946736106, "code_postal": "93066", "stop_lon": 2.3578278674899718, "coord": [48.908159946736106, 2.3578278674899718], "stop_id": 3741076, "stop_desc": "123 AVENUE DU PRESIDENT WILSON - 93066", "stop_name": "EGLISE DE LA PLAINE"}, "geometry": {"type": "Point", "coordinates": [2.3578278674899718, 48.908159946736106]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "07ec250a6e05bb0d8c72d3adc61236c62724cc05", "fields": {"departement": "94", "stop_lat": 48.80702898783379, "code_postal": "94017", "stop_lon": 2.526216596540736, "coord": [48.80702898783379, 2.526216596540736], "stop_id": 3743464, "stop_desc": "87 AVENUE MARX DORMOY - 94017", "stop_name": "MUSEE DE LA RESISTANCE"}, "geometry": {"type": "Point", "coordinates": [2.526216596540736, 48.80702898783379]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b8046c4b37c297b328ee50d9e7edbcd25c717ecb", "fields": {"departement": "93", "stop_lat": 48.92827480422056, "code_postal": "93027", "stop_lon": 2.382972444955277, "coord": [48.92827480422056, 2.382972444955277], "stop_id": 3741089, "stop_desc": "66 AVENUE DU GENERAL LECLERC - 93027", "stop_name": "RUE DE L'UNION"}, "geometry": {"type": "Point", "coordinates": [2.382972444955277, 48.92827480422056]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a48f553730ce4fa0252992012c5d242cc011f53f", "fields": {"departement": "94", "stop_lat": 48.811254036529974, "code_postal": "94017", "stop_lon": 2.536751149327536, "coord": [48.811254036529974, 2.536751149327536], "stop_id": 3743460, "stop_desc": "22 AVENUE DU 11 NOVEMBRE 1918 - 94017", "stop_name": "11 NOVEMBRE 1918"}, "geometry": {"type": "Point", "coordinates": [2.536751149327536, 48.811254036529974]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "68d40080ab1ca87c1a88af03036e89e127942452", "fields": {"departement": "94", "stop_lat": 48.81129225052951, "code_postal": "94017", "stop_lon": 2.5559253363655947, "coord": [48.81129225052951, 2.5559253363655947], "stop_id": 3743449, "stop_desc": "FACE 78 RUE DU PLESSIS TREVISE - 94017", "stop_name": "PAUL VENZAC"}, "geometry": {"type": "Point", "coordinates": [2.5559253363655947, 48.81129225052951]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f7bf5919da2c69bc3b7e321cd43014c9a62a1b60", "fields": {"departement": "94", "stop_lat": 48.806201108282245, "code_postal": "94017", "stop_lon": 2.53240473152121, "coord": [48.806201108282245, 2.53240473152121], "stop_id": 3743463, "stop_desc": "AVENUE MARX DORMOY - 94017", "stop_name": "FORT DE CHAMPIGNY"}, "geometry": {"type": "Point", "coordinates": [2.53240473152121, 48.806201108282245]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b8299e2adab5ca24ef931762f6c3d1979196657c", "fields": {"departement": "94", "stop_lat": 48.808618224470386, "code_postal": "94017", "stop_lon": 2.5381698136887874, "coord": [48.808618224470386, 2.5381698136887874], "stop_id": 3743462, "stop_desc": "AVENUE DU 11 NOVEMBRE 1918 - 94017", "stop_name": "LES MORDACS"}, "geometry": {"type": "Point", "coordinates": [2.5381698136887874, 48.808618224470386]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "20c07035227c27ee3ca4c2c7ab6ba884c9feb560", "fields": {"departement": "94", "stop_lat": 48.81079518388607, "code_postal": "94017", "stop_lon": 2.5202699488603515, "coord": [48.81079518388607, 2.5202699488603515], "stop_id": 3743467, "stop_desc": "FACE 30 AVENUE MARX DORMOY - 94017", "stop_name": "MARTELET"}, "geometry": {"type": "Point", "coordinates": [2.5202699488603515, 48.81079518388607]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "28b7e969d5b2286efad2cd77761632fe7f539c62", "fields": {"departement": "93", "stop_lat": 48.92807636702345, "code_postal": "93027", "stop_lon": 2.3848271601630664, "coord": [48.92807636702345, 2.3848271601630664], "stop_id": 3741091, "stop_desc": "VOIE NOUVELLE - 93027", "stop_name": "6 ROUTES-TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.3848271601630664, 48.92807636702345]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "10d2e4e3789e73e7fe5ee8c09c97c4352fb005a1", "fields": {"departement": "94", "stop_lat": 48.81142543777465, "code_postal": "94017", "stop_lon": 2.556810436968841, "coord": [48.81142543777465, 2.556810436968841], "stop_id": 3743450, "stop_desc": "FACE 16 AVENUE PAUL VENZAC - 94017", "stop_name": "PAUL VENZAC"}, "geometry": {"type": "Point", "coordinates": [2.556810436968841, 48.81142543777465]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2e525d69cf380162598f4c23d6727dcb50cbeef1", "fields": {"departement": "75", "stop_lat": 48.84867011775387, "code_postal": "75111", "stop_lon": 2.3946546338555432, "coord": [48.84867011775387, 2.3946546338555432], "stop_id": 3748086, "stop_desc": "1 PLACE DE LA NATION - 75111", "stop_name": "NATION - FAUBOURG SAINT-ANTOINE"}, "geometry": {"type": "Point", "coordinates": [2.3946546338555432, 48.84867011775387]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7c6085fbcd644eb87daeef956dbfd04220256560", "fields": {"departement": "75", "stop_lat": 48.89282046633723, "code_postal": "75118", "stop_lon": 2.3451053430084388, "coord": [48.89282046633723, 2.3451053430084388], "stop_id": 3749638, "stop_desc": "FACE 30 RUE HERMEL - 75118", "stop_name": "MAIRIE DU 18E - JULES JOFFRIN"}, "geometry": {"type": "Point", "coordinates": [2.3451053430084388, 48.89282046633723]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bf96a1330973e60ec2d25b60f66b107435073a2b", "fields": {"departement": "75", "stop_lat": 48.85028364056995, "code_postal": "75111", "stop_lon": 2.38373442649756, "coord": [48.85028364056995, 2.38373442649756], "stop_id": 3748090, "stop_desc": "201 RUE DU FAUBOURG SAINT ANTOINE - 75111", "stop_name": "HOPITAL SAINT-ANTOINE"}, "geometry": {"type": "Point", "coordinates": [2.38373442649756, 48.85028364056995]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9151870b728431d42759ea1db72db575dd8076cb", "fields": {"departement": "75", "stop_lat": 48.85156893064887, "code_postal": "75106", "stop_lon": 2.337881145081453, "coord": [48.85156893064887, 2.337881145081453], "stop_id": 3748098, "stop_desc": "10 PLACE SAINT SULPICE - 75106", "stop_name": "EGLISE SAINT-SULPICE"}, "geometry": {"type": "Point", "coordinates": [2.337881145081453, 48.85156893064887]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "99f9c44334dae16534cd7e7e3432d21bbfd5f35d", "fields": {"departement": "75", "stop_lat": 48.849321725621934, "code_postal": "75105", "stop_lon": 2.3462154498324934, "coord": [48.849321725621934, 2.3462154498324934], "stop_id": 3748097, "stop_desc": "42 RUE DES ECOLES - 75105", "stop_name": "COLLEGE DE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.3462154498324934, 48.849321725621934]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a98926148475a26f0915eafae2684536ce2f0c23", "fields": {"departement": "75", "stop_lat": 48.8862329311857, "code_postal": "75118", "stop_lon": 2.3438505795005207, "coord": [48.8862329311857, 2.3438505795005207], "stop_id": 3749649, "stop_desc": "RUE DU CARDINAL DUBOIS - 75118", "stop_name": "UTRILLO"}, "geometry": {"type": "Point", "coordinates": [2.3438505795005207, 48.8862329311857]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aeccf2e8b1ed3f0772ce26a83364c28c8ace3db8", "fields": {"departement": "75", "stop_lat": 48.88258429865896, "code_postal": "75118", "stop_lon": 2.337431832166389, "coord": [48.88258429865896, 2.337431832166389], "stop_id": 3749663, "stop_desc": "22 BOULEVARD DE CLICHY - 75118", "stop_name": "PIGALLE"}, "geometry": {"type": "Point", "coordinates": [2.337431832166389, 48.88258429865896]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bf5f8fbb7583b62e93b5264f5c84a3530d46aa6d", "fields": {"departement": "75", "stop_lat": 48.848929915496655, "code_postal": "75111", "stop_lon": 2.3963708007370164, "coord": [48.848929915496655, 2.3963708007370164], "stop_id": 3748085, "stop_desc": "13 PLACE DE LA NATION - 75111", "stop_name": "NATION"}, "geometry": {"type": "Point", "coordinates": [2.3963708007370164, 48.848929915496655]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "89445d630149d1f6fee030a92419cf319e9b6494", "fields": {"departement": "75", "stop_lat": 48.89014225050806, "code_postal": "75118", "stop_lon": 2.345650093872668, "coord": [48.89014225050806, 2.345650093872668], "stop_id": 3749640, "stop_desc": "59 RUE RAMEY - 75118", "stop_name": "MARCADET"}, "geometry": {"type": "Point", "coordinates": [2.345650093872668, 48.89014225050806]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "60fd4f0d0fedec74f784a666dfb625892c2615ae", "fields": {"departement": "75", "stop_lat": 48.88454343773727, "code_postal": "75118", "stop_lon": 2.341574581522387, "coord": [48.88454343773727, 2.341574581522387], "stop_id": 3749659, "stop_desc": "19 RUE CHAPPE - 75118", "stop_name": "CHAPPE"}, "geometry": {"type": "Point", "coordinates": [2.341574581522387, 48.88454343773727]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a97a7def3eeb391739f19511550993a5b0d03cc0", "fields": {"departement": "75", "stop_lat": 48.84210891180533, "code_postal": "75112", "stop_lon": 2.4114907385437307, "coord": [48.84210891180533, 2.4114907385437307], "stop_id": 3747864, "stop_desc": "13 AVENUE MAURICE RAVEL - 75112", "stop_name": "JULES LEMAITRE - MAURICE RAVEL"}, "geometry": {"type": "Point", "coordinates": [2.4114907385437307, 48.84210891180533]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "100bee5c5223f40f2e75b53d2136b3032249ce22", "fields": {"departement": "75", "stop_lat": 48.841030074958574, "code_postal": "75112", "stop_lon": 2.4120202195413376, "coord": [48.841030074958574, 2.4120202195413376], "stop_id": 3747865, "stop_desc": "FACE 17-19 AVENUE EMILE LAURENT - 75112", "stop_name": "PORTE DE MONTEMPOIVRE"}, "geometry": {"type": "Point", "coordinates": [2.4120202195413376, 48.841030074958574]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4cae4fc7bf908e8c6f2183a871f1ec80b74167fb", "fields": {"departement": "75", "stop_lat": 48.865031913199054, "code_postal": "75101", "stop_lon": 2.3437116590470035, "coord": [48.865031913199054, 2.3437116590470035], "stop_id": 3747823, "stop_desc": "43 RUE ETIENNE MARCEL - 75101", "stop_name": "ETIENNE MARCEL - MONTMARTRE"}, "geometry": {"type": "Point", "coordinates": [2.3437116590470035, 48.865031913199054]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e3859e2040e7b21d1c8a33802ebd7a18143920eb", "fields": {"departement": "75", "stop_lat": 48.839447624740785, "code_postal": "75112", "stop_lon": 2.397272241277198, "coord": [48.839447624740785, 2.397272241277198], "stop_id": 3747850, "stop_desc": "54 BOULEVARD DE REUILLY - 75112", "stop_name": "DOCTEUR GOUJON - REUILLY"}, "geometry": {"type": "Point", "coordinates": [2.397272241277198, 48.839447624740785]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a3e9367c2b3fe49e9398756bfedd30fb4cb1674a", "fields": {"departement": "75", "stop_lat": 48.83970860502141, "code_postal": "75112", "stop_lon": 2.3965917596838264, "coord": [48.83970860502141, 2.3965917596838264], "stop_id": 3747851, "stop_desc": "BOULEVARD DE REUILLY - 75112", "stop_name": "DOCTEUR GOUJON - REUILLY"}, "geometry": {"type": "Point", "coordinates": [2.3965917596838264, 48.83970860502141]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "35752b3ee7200d79bc2dc199df72d42fe87e0936", "fields": {"departement": "75", "stop_lat": 48.842907780543314, "code_postal": "75112", "stop_lon": 2.3973715599631165, "coord": [48.842907780543314, 2.3973715599631165], "stop_id": 3747854, "stop_desc": "FACE 62BIS RUE DE PICPUS - 75112", "stop_name": "HOPITAL ROTHSCHILD"}, "geometry": {"type": "Point", "coordinates": [2.3973715599631165, 48.842907780543314]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c01558bd3649c38b4d3b9ea9d925f7a5cda6bffe", "fields": {"departement": "75", "stop_lat": 48.857102638416876, "code_postal": "75104", "stop_lon": 2.3619617836269846, "coord": [48.857102638416876, 2.3619617836269846], "stop_id": 3747831, "stop_desc": "25 RUE DES FRANCS BOURGEOIS - 75104", "stop_name": "PAYENNE"}, "geometry": {"type": "Point", "coordinates": [2.3619617836269846, 48.857102638416876]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cdfb12006e0cc8b2b90f47f97a18108328b2df13", "fields": {"departement": "75", "stop_lat": 48.84076285472389, "code_postal": "75112", "stop_lon": 2.3908878839379035, "coord": [48.84076285472389, 2.3908878839379035], "stop_id": 3747847, "stop_desc": "171 AVENUE DAUMESNIL - 75112", "stop_name": "DUBRUNFAUT"}, "geometry": {"type": "Point", "coordinates": [2.3908878839379035, 48.84076285472389]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f64f973b5d33483362560d01c29ef0ae58da3a49", "fields": {"departement": "75", "stop_lat": 48.85281401294961, "code_postal": "75104", "stop_lon": 2.3687965324803804, "coord": [48.85281401294961, 2.3687965324803804], "stop_id": 3747835, "stop_desc": "PLACE DE LA BASTILLE - 75104", "stop_name": "BASTILLE"}, "geometry": {"type": "Point", "coordinates": [2.3687965324803804, 48.85281401294961]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bfa386f39879c8b73f0bd3e84cdfb82d02c298b2", "fields": {"departement": "75", "stop_lat": 48.85239140153054, "code_postal": "75112", "stop_lon": 2.369545320283473, "coord": [48.85239140153054, 2.369545320283473], "stop_id": 3747868, "stop_desc": "RUE DE LYON - 75112", "stop_name": "BASTILLE"}, "geometry": {"type": "Point", "coordinates": [2.369545320283473, 48.85239140153054]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e72327f5e9d559676463cd2cd86c41c09e57fe07", "fields": {"departement": "94", "stop_lat": 48.80702898783379, "code_postal": "94017", "stop_lon": 2.526216596540736, "coord": [48.80702898783379, 2.526216596540736], "stop_id": 3743498, "stop_desc": "87 AVENUE MARX DORMOY - 94017", "stop_name": "MUSEE DE LA RESISTANCE"}, "geometry": {"type": "Point", "coordinates": [2.526216596540736, 48.80702898783379]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9414fc268e92e92ed7eb240a24d313f56976779a", "fields": {"departement": "94", "stop_lat": 48.81673809581467, "code_postal": "94017", "stop_lon": 2.5003527310760174, "coord": [48.81673809581467, 2.5003527310760174], "stop_id": 3743477, "stop_desc": "151 AVENUE ROGER SALENGRO - 94017", "stop_name": "PLAGE DE CHAMPIGNY"}, "geometry": {"type": "Point", "coordinates": [2.5003527310760174, 48.81673809581467]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9cff25b6f5faac4ec381f03e62ae6d5709ab12a0", "fields": {"departement": "94", "stop_lat": 48.81673809581467, "code_postal": "94017", "stop_lon": 2.5003527310760174, "coord": [48.81673809581467, 2.5003527310760174], "stop_id": 3743511, "stop_desc": "151 AVENUE ROGER SALENGRO - 94017", "stop_name": "PLAGE DE CHAMPIGNY"}, "geometry": {"type": "Point", "coordinates": [2.5003527310760174, 48.81673809581467]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "42f59a052a3b530905072aa3f95d70faf5b50769", "fields": {"departement": "94", "stop_lat": 48.802225242332476, "code_postal": "94019", "stop_lon": 2.5397233570433895, "coord": [48.802225242332476, 2.5397233570433895], "stop_id": 3743495, "stop_desc": "11 BIS ROUTE DE LA LIBERATION - 94019", "stop_name": "AVENUE GEORGES"}, "geometry": {"type": "Point", "coordinates": [2.5397233570433895, 48.802225242332476]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "377890574d439c1c1e661940c531d30ca887d5b3", "fields": {"departement": "94", "stop_lat": 48.806201108282245, "code_postal": "94017", "stop_lon": 2.53240473152121, "coord": [48.806201108282245, 2.53240473152121], "stop_id": 3743497, "stop_desc": "AVENUE MARX DORMOY - 94017", "stop_name": "FORT DE CHAMPIGNY"}, "geometry": {"type": "Point", "coordinates": [2.53240473152121, 48.806201108282245]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "283539017e4905fac5d4a6ea56304297686b5d23", "fields": {"departement": "75", "stop_lat": 48.87351575263024, "code_postal": "75109", "stop_lon": 2.327676627244145, "coord": [48.87351575263024, 2.327676627244145], "stop_id": 3747812, "stop_desc": "16-18 RUE AUBER - 75109", "stop_name": "HAVRE - HAUSSMANN"}, "geometry": {"type": "Point", "coordinates": [2.327676627244145, 48.87351575263024]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bcc736487d29c44211dc365187d7f0715f36160b", "fields": {"departement": "75", "stop_lat": 48.825000117610074, "code_postal": "75113", "stop_lon": 2.356583446772517, "coord": [48.825000117610074, 2.356583446772517], "stop_id": 3754291, "stop_desc": "1 R DU MOULIN DE LA POINTE - 75113", "stop_name": "DOCTEUR LAURENT"}, "geometry": {"type": "Point", "coordinates": [2.356583446772517, 48.825000117610074]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9117777157a4bf001de974647146e2694f1b366b", "fields": {"departement": "75", "stop_lat": 48.823949981770554, "code_postal": "75114", "stop_lon": 2.3313064408617787, "coord": [48.823949981770554, 2.3313064408617787], "stop_id": 3754272, "stop_desc": "FACE 59 RUE BEAUNIER - 75114", "stop_name": "PLACE JULES HENAFFE"}, "geometry": {"type": "Point", "coordinates": [2.3313064408617787, 48.823949981770554]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3d2761404fe9534932c7d7466f7d774af8f4ddf0", "fields": {"departement": "75", "stop_lat": 48.82607097082971, "code_postal": "75113", "stop_lon": 2.3449318980433134, "coord": [48.82607097082971, 2.3449318980433134], "stop_id": 3754267, "stop_desc": "226 RUE DE TOLBIAC - 75113", "stop_name": "VERGNIAUD - TOLBIAC"}, "geometry": {"type": "Point", "coordinates": [2.3449318980433134, 48.82607097082971]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d273ffd1a90e4885e5c6a2ad30d65d7cefd4ca40", "fields": {"departement": "75", "stop_lat": 48.82592735408744, "code_postal": "75114", "stop_lon": 2.3410932785585543, "coord": [48.82592735408744, 2.3410932785585543], "stop_id": 3754202, "stop_desc": "6-8 AVENUE REILLE - 75114", "stop_name": "GLACIERE - TOLBIAC"}, "geometry": {"type": "Point", "coordinates": [2.3410932785585543, 48.82592735408744]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "beecd257d1b3c2e283c22b951fd2224dba3e8871", "fields": {"departement": "75", "stop_lat": 48.88956244909878, "code_postal": "75119", "stop_lon": 2.371490134612509, "coord": [48.88956244909878, 2.371490134612509], "stop_id": 3750037, "stop_desc": "FACE 3 RUE CURIAL - 75119", "stop_name": "CURIAL - ARCHEREAU"}, "geometry": {"type": "Point", "coordinates": [2.371490134612509, 48.88956244909878]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4c1e05ba58b3dead243f5f8bef51ab628c8e99b9", "fields": {"departement": "94", "stop_lat": 48.809866287850035, "code_postal": "94037", "stop_lon": 2.341745266589601, "coord": [48.809866287850035, 2.341745266589601], "stop_id": 3754318, "stop_desc": "FACE 6 RUE EMILE BOUGARD - 94037", "stop_name": "FRAYSSE"}, "geometry": {"type": "Point", "coordinates": [2.341745266589601, 48.809866287850035]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cfe1248623df30c48d42f64819fbad8fd90911ce", "fields": {"departement": "75", "stop_lat": 48.82386901167662, "code_postal": "75113", "stop_lon": 2.3446457305052797, "coord": [48.82386901167662, 2.3446457305052797], "stop_id": 3754286, "stop_desc": "23 RUE BOUSSINGAULT - 75113", "stop_name": "VERGNIAUD"}, "geometry": {"type": "Point", "coordinates": [2.3446457305052797, 48.82386901167662]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7a53d887eca05871c097c2a2d437b59529efee61", "fields": {"departement": "94", "stop_lat": 48.72897837633657, "code_postal": "94054", "stop_lon": 2.3698355106261935, "coord": [48.72897837633657, 2.3698355106261935], "stop_id": 3754205, "stop_desc": "AEROPORT D'ORLY-SUD - 94054", "stop_name": "ORLY SUD"}, "geometry": {"type": "Point", "coordinates": [2.3698355106261935, 48.72897837633657]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bce0b8189da8c4dd49a4142bad6f95176c0d623c", "fields": {"departement": "94", "stop_lat": 48.72897837633657, "code_postal": "94054", "stop_lon": 2.3698355106261935, "coord": [48.72897837633657, 2.3698355106261935], "stop_id": 3754206, "stop_desc": "AEROPORT D'ORLY-SUD - 94054", "stop_name": "ORLY SUD"}, "geometry": {"type": "Point", "coordinates": [2.3698355106261935, 48.72897837633657]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fe4471563418f5c76e298b5de6fb5a9399a0c526", "fields": {"departement": "75", "stop_lat": 48.891431537496594, "code_postal": "75119", "stop_lon": 2.372336383125807, "coord": [48.891431537496594, 2.372336383125807], "stop_id": 3750038, "stop_desc": "32 RUE CURIAL - 75119", "stop_name": "MATHIS"}, "geometry": {"type": "Point", "coordinates": [2.372336383125807, 48.891431537496594]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ffdeba6204e574fe8d57b16ea0c1593f16f7f552", "fields": {"departement": "91", "stop_lat": 48.688452467479706, "code_postal": "91345", "stop_lon": 2.2877834020090235, "coord": [48.688452467479706, 2.2877834020090235], "stop_id": 3757232, "stop_desc": "RUE DU PRESIDENT FRAN\u00c7OIS MITTERRAND - 91345", "stop_name": "DOCTEUR CATHELIN"}, "geometry": {"type": "Point", "coordinates": [2.2877834020090235, 48.688452467479706]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "73009382909d0d8ab460d1580ed68595f3ae32d0", "fields": {"departement": "91", "stop_lat": 48.717255206067776, "code_postal": "91477", "stop_lon": 2.2605480330625074, "coord": [48.717255206067776, 2.2605480330625074], "stop_id": 3757208, "stop_desc": "FACE 31 AVENUE DES COSMONAUTES - 91477", "stop_name": "COSMONAUTES-FLAUBERT"}, "geometry": {"type": "Point", "coordinates": [2.2605480330625074, 48.717255206067776]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "096f5c64de1f1aed9c2af8e09d17a676ad041fef", "fields": {"departement": "91", "stop_lat": 48.71462042569823, "code_postal": "91477", "stop_lon": 2.2587589724528634, "coord": [48.71462042569823, 2.2587589724528634], "stop_id": 3757210, "stop_desc": "4-6 AVENUE DES COSMONAUTES - 91477", "stop_name": "COSMONAUTES-STALINGRAD"}, "geometry": {"type": "Point", "coordinates": [2.2587589724528634, 48.71462042569823]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "018dda52ea056d3f2a208753746b0c41eeaf280a", "fields": {"departement": "91", "stop_lat": 48.71383870908266, "code_postal": "91477", "stop_lon": 2.259181216507663, "coord": [48.71383870908266, 2.259181216507663], "stop_id": 3757212, "stop_desc": "75 AVENUE DE STALINGRAD - 91477", "stop_name": "PIERRE CURIE"}, "geometry": {"type": "Point", "coordinates": [2.259181216507663, 48.71383870908266]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e458e97953634b67761a9bca69cb5a0538f5202d", "fields": {"departement": "93", "stop_lat": 48.93552692998491, "code_postal": "93039", "stop_lon": 2.340951356107357, "coord": [48.93552692998491, 2.340951356107357], "stop_id": 5092002, "stop_desc": "QUAI DE SEINE - 93039", "stop_name": "MAIRIE DE L'ILE SAINT-DENIS"}, "geometry": {"type": "Point", "coordinates": [2.340951356107357, 48.93552692998491]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7d60018cf673c7fd936ce7f8ec9b64a7b1bd534f", "fields": {"departement": "93", "stop_lat": 48.93883411384412, "code_postal": "93039", "stop_lon": 2.339887537235672, "coord": [48.93883411384412, 2.339887537235672], "stop_id": 5092004, "stop_desc": "QUAI DE LA MARINE - 93039", "stop_name": "RENE ET ISA LEFEVRE"}, "geometry": {"type": "Point", "coordinates": [2.339887537235672, 48.93883411384412]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8b0197bda557bef9df103280f7a8744a695a4422", "fields": {"departement": "93", "stop_lat": 48.94655341934208, "code_postal": "93039", "stop_lon": 2.327731335141976, "coord": [48.94655341934208, 2.327731335141976], "stop_id": 5092010, "stop_desc": "QUAI DE LA MARINE - 93039", "stop_name": "COLLEGE SISLEY"}, "geometry": {"type": "Point", "coordinates": [2.327731335141976, 48.94655341934208]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1ecd2599d45c4e53bf6bea19c0a5bc1117b2a9f5", "fields": {"departement": "78", "stop_lat": 48.78558499303665, "code_postal": "78640", "stop_lon": 2.2186769554268198, "coord": [48.78558499303665, 2.2186769554268198], "stop_id": 5121005, "stop_desc": "19-21 AVENUE MORANE SAULNIER - 78640", "stop_name": "VELIZY 2"}, "geometry": {"type": "Point", "coordinates": [2.2186769554268198, 48.78558499303665]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4ec63a44e1930d7588e4f38befdad4cd87887389", "fields": {"departement": "78", "stop_lat": 48.78598126598431, "code_postal": "78640", "stop_lon": 2.210732717828359, "coord": [48.78598126598431, 2.210732717828359], "stop_id": 5121007, "stop_desc": "RUE MARCEL DASSAULT - 78640", "stop_name": "DASSAULT"}, "geometry": {"type": "Point", "coordinates": [2.210732717828359, 48.78598126598431]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "28ca61d388b865cbfd813a11ca006607d8182ef6", "fields": {"departement": "78", "stop_lat": 48.786436740368664, "code_postal": "78640", "stop_lon": 2.208024866376492, "coord": [48.786436740368664, 2.208024866376492], "stop_id": 5121008, "stop_desc": "RUE GRANGE DAME ROSE - 78640", "stop_name": "LE BOIS"}, "geometry": {"type": "Point", "coordinates": [2.208024866376492, 48.786436740368664]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "04b253debd1d2416d205c331e51ca904cc987ba9", "fields": {"departement": "78", "stop_lat": 48.78476765893701, "code_postal": "78640", "stop_lon": 2.219250075071638, "coord": [48.78476765893701, 2.219250075071638], "stop_id": 5121011, "stop_desc": "GARE ROUTIERE - 78640", "stop_name": "VELIZY 2"}, "geometry": {"type": "Point", "coordinates": [2.219250075071638, 48.78476765893701]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d28ac64aaf2b77be09a090e3a37404bab3e368bd", "fields": {"departement": "78", "stop_lat": 48.786320118818225, "code_postal": "78640", "stop_lon": 2.2082291818662445, "coord": [48.786320118818225, 2.2082291818662445], "stop_id": 5121013, "stop_desc": "58 RUE DE LA GRANGE DAME ROSE - 78640", "stop_name": "LE BOIS"}, "geometry": {"type": "Point", "coordinates": [2.2082291818662445, 48.786320118818225]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e4e4cfe12a8d57659fc65e332a63970b89197316", "fields": {"departement": "78", "stop_lat": 48.78476765893701, "code_postal": "78640", "stop_lon": 2.219250075071638, "coord": [48.78476765893701, 2.219250075071638], "stop_id": 5121016, "stop_desc": "GARE ROUTIERE - 78640", "stop_name": "VELIZY 2"}, "geometry": {"type": "Point", "coordinates": [2.219250075071638, 48.78476765893701]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1ef66449b5eacef6eebfab4f2773bec9421a2bed", "fields": {"departement": "78", "stop_lat": 48.784847683593604, "code_postal": "78640", "stop_lon": 2.2183794100939678, "coord": [48.784847683593604, 2.2183794100939678], "stop_id": 5121021, "stop_desc": "GARE ROUTIERE - 78640", "stop_name": "VELIZY 2"}, "geometry": {"type": "Point", "coordinates": [2.2183794100939678, 48.784847683593604]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c1bb95e9996e983fbb7a87f45ff19b426f971663", "fields": {"departement": "92", "stop_lat": 48.77738976143551, "code_postal": "92023", "stop_lon": 2.2300511155441054, "coord": [48.77738976143551, 2.2300511155441054], "stop_id": 5121026, "stop_desc": "10 ROUTE DE LA GARENNE - 92023", "stop_name": "ROND-POINT DU PETIT CLAMART"}, "geometry": {"type": "Point", "coordinates": [2.2300511155441054, 48.77738976143551]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "33e24ce5afbc98a312b10c31b7acdf4495e952df", "fields": {"departement": "92", "stop_lat": 48.77363257599805, "code_postal": "92060", "stop_lon": 2.24029843310275, "coord": [48.77363257599805, 2.24029843310275], "stop_id": 5121027, "stop_desc": "CONTRE-ALLEE DE L'AVENUE DE LA DIVISION LECLERC - 92060", "stop_name": "LA BOURSIDIERE"}, "geometry": {"type": "Point", "coordinates": [2.24029843310275, 48.77363257599805]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "75597acb626968ce91ceb347e54cf6846e27c446", "fields": {"departement": "92", "stop_lat": 48.77542050061621, "code_postal": "92060", "stop_lon": 2.239451969018562, "coord": [48.77542050061621, 2.239451969018562], "stop_id": 5121028, "stop_desc": "AVENUE DE LA DIVISION LECLERC - 92060", "stop_name": "LA BOURSIDIERE"}, "geometry": {"type": "Point", "coordinates": [2.239451969018562, 48.77542050061621]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d0aead6c20c241a6204c36b048cac271e7af06ba", "fields": {"departement": "92", "stop_lat": 48.77070774393733, "code_postal": "92019", "stop_lon": 2.2469939065189317, "coord": [48.77070774393733, 2.2469939065189317], "stop_id": 5121029, "stop_desc": "369 AVENUE DE LA DIVISION LECLERC - 92019", "stop_name": "FERME DE MALABRY"}, "geometry": {"type": "Point", "coordinates": [2.2469939065189317, 48.77070774393733]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "58bd64b63f98590b75678a957849a3de7625f0a0", "fields": {"departement": "92", "stop_lat": 48.76995424851963, "code_postal": "92019", "stop_lon": 2.248994032426121, "coord": [48.76995424851963, 2.248994032426121], "stop_id": 5121030, "stop_desc": "AVENUE DE LA DIVISION LECLERC - 92019", "stop_name": "FERME DE MALABRY"}, "geometry": {"type": "Point", "coordinates": [2.248994032426121, 48.76995424851963]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dc0b19942410da34511a1e735c78277278c92071", "fields": {"departement": "92", "stop_lat": 48.76610283824545, "code_postal": "92019", "stop_lon": 2.255241315319122, "coord": [48.76610283824545, 2.255241315319122], "stop_id": 5121033, "stop_desc": "327 AVENUE DE LA DIVISION LECLERC - 92019", "stop_name": "FRANCIS DE PRESSENSE"}, "geometry": {"type": "Point", "coordinates": [2.255241315319122, 48.76610283824545]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6f92335d5e7714c932f077578ccb61f6c6dfe854", "fields": {"departement": "92", "stop_lat": 48.763651715473046, "code_postal": "92019", "stop_lon": 2.2742928179820256, "coord": [48.763651715473046, 2.2742928179820256], "stop_id": 5121040, "stop_desc": "FACE 197 AVENUE DE LA DIVISION LECLERC - 92019", "stop_name": "LES VALLEES"}, "geometry": {"type": "Point", "coordinates": [2.2742928179820256, 48.763651715473046]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6621a3a30c515d09824e1ae54ab44266afd4ac19", "fields": {"departement": "92", "stop_lat": 48.76244127336439, "code_postal": "92002", "stop_lon": 2.3037147773341946, "coord": [48.76244127336439, 2.3037147773341946], "stop_id": 5121048, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 92002", "stop_name": "LA CROIX DE BERNY RER"}, "geometry": {"type": "Point", "coordinates": [2.3037147773341946, 48.76244127336439]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b08f040204c7b1ce49213e501f1dd54329f96aad", "fields": {"departement": "92", "stop_lat": 48.76406362158655, "code_postal": "92019", "stop_lon": 2.2714371907722835, "coord": [48.76406362158655, 2.2714371907722835], "stop_id": 5121051, "stop_desc": "FACE 231 AVENUE DE LA DIVISION LECLERC - 92019", "stop_name": "PRESIDENT ALLENDE"}, "geometry": {"type": "Point", "coordinates": [2.2714371907722835, 48.76406362158655]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c3478312f2fd49d3eb14ed95ad60afddd4c2db71", "fields": {"departement": "92", "stop_lat": 48.78481065530936, "code_postal": "92023", "stop_lon": 2.2367004292831227, "coord": [48.78481065530936, 2.2367004292831227], "stop_id": 5121305, "stop_desc": "PLACE GEORGES POMPIDOU - 92023", "stop_name": "GEORGES POMPIDOU"}, "geometry": {"type": "Point", "coordinates": [2.2367004292831227, 48.78481065530936]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "15db94990bae59b06c4274baa2c2991b7c132810", "fields": {"departement": "92", "stop_lat": 48.787346674834005, "code_postal": "92048", "stop_lon": 2.2281126885775113, "coord": [48.787346674834005, 2.2281126885775113], "stop_id": 5121311, "stop_desc": "FACE 15 AVENUE DE CELLE - 92048", "stop_name": "EGLISE - AVENUE DE CELLE"}, "geometry": {"type": "Point", "coordinates": [2.2281126885775113, 48.787346674834005]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e06d8e0f1e84b0b84241307138f6e22c922179c2", "fields": {"departement": "92", "stop_lat": 48.7879586489924, "code_postal": "92048", "stop_lon": 2.228981937708429, "coord": [48.7879586489924, 2.228981937708429], "stop_id": 5121313, "stop_desc": "13-15 AVENUE DU GENERAL DE GAULLE - 92048", "stop_name": "EGLISE DE MEUDON-LA-FORET"}, "geometry": {"type": "Point", "coordinates": [2.228981937708429, 48.7879586489924]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cb66a8fa46e4f1a0493c05c53115d146510d5930", "fields": {"departement": "92", "stop_lat": 48.78882610499131, "code_postal": "92048", "stop_lon": 2.234176222510831, "coord": [48.78882610499131, 2.234176222510831], "stop_id": 5121315, "stop_desc": "AVENUE ROBERT SCHUMAN - 92048", "stop_name": "TAPIS VERT"}, "geometry": {"type": "Point", "coordinates": [2.234176222510831, 48.78882610499131]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8edf434910385cf03ed096eccaad6b35647ead57", "fields": {"departement": "92", "stop_lat": 48.81108232012079, "code_postal": "92048", "stop_lon": 2.236867272802698, "coord": [48.81108232012079, 2.236867272802698], "stop_id": 5121323, "stop_desc": "PLACE RABELAIS - 92048", "stop_name": "RABELAIS"}, "geometry": {"type": "Point", "coordinates": [2.236867272802698, 48.81108232012079]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2fd98b7f5ed1e235fc970701af44f00758d5ed0f", "fields": {"departement": "92", "stop_lat": 48.81661431402316, "code_postal": "92048", "stop_lon": 2.231712137797927, "coord": [48.81661431402316, 2.231712137797927], "stop_id": 5121328, "stop_desc": "16 BOULEVARD VERD-DE-ST JULIEN - 92048", "stop_name": "JEANNE D'ARC"}, "geometry": {"type": "Point", "coordinates": [2.231712137797927, 48.81661431402316]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f629eeed2402299ab1bb99c981d2994fc997126f", "fields": {"departement": "92", "stop_lat": 48.818697289035434, "code_postal": "92048", "stop_lon": 2.229285292630867, "coord": [48.818697289035434, 2.229285292630867], "stop_id": 5121330, "stop_desc": "32 AVENUE DU GENERAL GALLIENI - 92048", "stop_name": "GARE DE BELLEVUE"}, "geometry": {"type": "Point", "coordinates": [2.229285292630867, 48.818697289035434]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f88d2452005c4527fdebd786d86c91c166042b57", "fields": {"departement": "92", "stop_lat": 48.821319799672125, "code_postal": "92048", "stop_lon": 2.2272109871942822, "coord": [48.821319799672125, 2.2272109871942822], "stop_id": 5121332, "stop_desc": "12 RUE MARCEL ALLEGOT - 92048", "stop_name": "11 NOVEMBRE"}, "geometry": {"type": "Point", "coordinates": [2.2272109871942822, 48.821319799672125]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bbca1229b06df0d5a589bb7b7d2bb52391d541e1", "fields": {"departement": "92", "stop_lat": 48.83410601972173, "code_postal": "92012", "stop_lon": 2.2445555991222914, "coord": [48.83410601972173, 2.2445555991222914], "stop_id": 5121342, "stop_desc": "108 AVENUE EDOUARD VAILLANT - 92012", "stop_name": "MARCEL SEMBAT-METRO"}, "geometry": {"type": "Point", "coordinates": [2.2445555991222914, 48.83410601972173]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4784ac43d6172b98168f463c3b189186b678a7fb", "fields": {"departement": "92", "stop_lat": 48.83612495942025, "code_postal": "92012", "stop_lon": 2.2522170875706116, "coord": [48.83612495942025, 2.2522170875706116], "stop_id": 5121345, "stop_desc": "35 AVENUE EDOUARD VAILLANT - 92012", "stop_name": "HENRI MARTIN"}, "geometry": {"type": "Point", "coordinates": [2.2522170875706116, 48.83612495942025]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d577f4e3e49d0757ebb9492a80136edcc561df61", "fields": {"departement": "75", "stop_lat": 48.84884762551571, "code_postal": "75116", "stop_lon": 2.2753741876820532, "coord": [48.84884762551571, 2.2753741876820532], "stop_id": 5121358, "stop_desc": "41 AVENUE DE VERSAILLES - 75116", "stop_name": "DEGAS"}, "geometry": {"type": "Point", "coordinates": [2.2753741876820532, 48.84884762551571]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a87e62874e4e2e1e17b122382d80b978a68cd535", "fields": {"departement": "75", "stop_lat": 48.84890136594033, "code_postal": "75116", "stop_lon": 2.275020053410374, "coord": [48.84890136594033, 2.275020053410374], "stop_id": 5121359, "stop_desc": "42 AVENUE DE VERSAILLES - 75116", "stop_name": "DEGAS"}, "geometry": {"type": "Point", "coordinates": [2.275020053410374, 48.84890136594033]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7227e975696eb86e1a210dde5209dcc1382d574e", "fields": {"departement": "75", "stop_lat": 48.84896773666375, "code_postal": "75115", "stop_lon": 2.282033295404702, "coord": [48.84896773666375, 2.282033295404702], "stop_id": 5121361, "stop_desc": "6-8 RUE LINOIS - 75115", "stop_name": "PONT DE GRENELLE - PLACE FERNAND FOREST"}, "geometry": {"type": "Point", "coordinates": [2.282033295404702, 48.84896773666375]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "75e544c06b2b479f6d827b8e922312f1eedc37c1", "fields": {"departement": "75", "stop_lat": 48.84691492035998, "code_postal": "75115", "stop_lon": 2.2950402505664087, "coord": [48.84691492035998, 2.2950402505664087], "stop_id": 5121365, "stop_desc": "154 AVENUE EMILE ZOLA - 75115", "stop_name": "AVENUE EMILE ZOLA"}, "geometry": {"type": "Point", "coordinates": [2.2950402505664087, 48.84691492035998]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5e76063e53b5fb664413e3deba2c6e8e4a68e3ea", "fields": {"departement": "75", "stop_lat": 48.84756368697721, "code_postal": "75115", "stop_lon": 2.300037429389743, "coord": [48.84756368697721, 2.300037429389743], "stop_id": 5121367, "stop_desc": "44 RUE FREMICOURT - 75115", "stop_name": "CAMBRONNE"}, "geometry": {"type": "Point", "coordinates": [2.300037429389743, 48.84756368697721]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f21e53cf26f2f91fc827d965fe5107c765fede4d", "fields": {"departement": "75", "stop_lat": 48.84077310974983, "code_postal": "75115", "stop_lon": 2.3164086680713942, "coord": [48.84077310974983, 2.3164086680713942], "stop_id": 5121370, "stop_desc": "65 BOULEVARD DE VAUGIRARD - 75115", "stop_name": "ARMORIQUE - MUSEE POSTAL"}, "geometry": {"type": "Point", "coordinates": [2.3164086680713942, 48.84077310974983]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "85aea502923b33a4b0f424a2df8a42127a26890a", "fields": {"departement": "75", "stop_lat": 48.8383835564642, "code_postal": "75116", "stop_lon": 2.256107368981866, "coord": [48.8383835564642, 2.256107368981866], "stop_id": 5121378, "stop_desc": "PLACE DE LA PORTE DE SAINT-CLOUD - 75116", "stop_name": "PORTE DE SAINT-CLOUD"}, "geometry": {"type": "Point", "coordinates": [2.256107368981866, 48.8383835564642]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "27cc31a6ada7d7b33efbfd5b5d8deb85f5dde7ce", "fields": {"departement": "92", "stop_lat": 48.8323758684232, "code_postal": "92012", "stop_lon": 2.2389089828573803, "coord": [48.8323758684232, 2.2389089828573803], "stop_id": 5121379, "stop_desc": "54 AVENUE DU GENERAL LECLERC - 92012", "stop_name": "BILLANCOURT"}, "geometry": {"type": "Point", "coordinates": [2.2389089828573803, 48.8323758684232]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "be85a9534bff01794c74684e8b101a810a40e0fb", "fields": {"departement": "75", "stop_lat": 48.84192399180133, "code_postal": "75115", "stop_lon": 2.3193356989783784, "coord": [48.84192399180133, 2.3193356989783784], "stop_id": 5121383, "stop_desc": "8-10 BOULEVARD DE VAUGIRARD - 75115", "stop_name": "GARE MONTPARNASSE."}, "geometry": {"type": "Point", "coordinates": [2.3193356989783784, 48.84192399180133]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2ea4d3438a9d45784159fbf185e65655d1f7a11b", "fields": {"departement": "75", "stop_lat": 48.83755647668036, "code_postal": "75114", "stop_lon": 2.3225231410021627, "coord": [48.83755647668036, 2.3225231410021627], "stop_id": 5121388, "stop_desc": "3 RUE JEAN ZAY - 75114", "stop_name": "JEAN ZAY - MAINE"}, "geometry": {"type": "Point", "coordinates": [2.3225231410021627, 48.83755647668036]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "111f4b075d6064ada525c6cb2e0521f21195f932", "fields": {"departement": "75", "stop_lat": 48.83766430038165, "code_postal": "75114", "stop_lon": 2.322305268313168, "coord": [48.83766430038165, 2.322305268313168], "stop_id": 5121389, "stop_desc": "6 RUE JEAN ZAY - 75114", "stop_name": "JEAN ZAY - MAINE"}, "geometry": {"type": "Point", "coordinates": [2.322305268313168, 48.83766430038165]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bf6e6bbff838d353136009a17febb1c2c8da93e9", "fields": {"departement": "75", "stop_lat": 48.83556139338345, "code_postal": "75114", "stop_lon": 2.3238715506034704, "coord": [48.83556139338345, 2.3238715506034704], "stop_id": 5121391, "stop_desc": "115 AVENUE DU MAINE - 75114", "stop_name": "LOSSERAND - MAINE"}, "geometry": {"type": "Point", "coordinates": [2.3238715506034704, 48.83556139338345]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "34282568c4997506999bbf556d3411e3556fb615", "fields": {"departement": "75", "stop_lat": 48.828425493707726, "code_postal": "75114", "stop_lon": 2.326473417482039, "coord": [48.828425493707726, 2.326473417482039], "stop_id": 5121396, "stop_desc": "230 AVENUE DU MAINE - 75114", "stop_name": "ALESIA - MAINE"}, "geometry": {"type": "Point", "coordinates": [2.326473417482039, 48.828425493707726]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "53cae87987daad8b3fceedfed793549e68a4db42", "fields": {"departement": "92", "stop_lat": 48.819462162874615, "code_postal": "92046", "stop_lon": 2.310033969847727, "coord": [48.819462162874615, 2.310033969847727], "stop_id": 5121406, "stop_desc": "62 AVENUE PIERRE BROSSOLETTE - 92046", "stop_name": "PIERRE BROSSOLETTE - GABRIEL PERI"}, "geometry": {"type": "Point", "coordinates": [2.310033969847727, 48.819462162874615]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2d3b72117ae14ced2c166e94a0061ef188fe6045", "fields": {"departement": "92", "stop_lat": 48.81609960993273, "code_postal": "92046", "stop_lon": 2.3054085119085057, "coord": [48.81609960993273, 2.3054085119085057], "stop_id": 5121408, "stop_desc": "132-134 AVENUE PIERRE BROSSOLETTE - 92046", "stop_name": "AUGUSTIN DUMONT"}, "geometry": {"type": "Point", "coordinates": [2.3054085119085057, 48.81609960993273]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3be7f4c053c1b4aae7247687751729801eaff3d4", "fields": {"departement": "92", "stop_lat": 48.80423910044471, "code_postal": "92020", "stop_lon": 2.2887071691495366, "coord": [48.80423910044471, 2.2887071691495366], "stop_id": 5121413, "stop_desc": "1 AVENUE DE PARIS - 92020", "stop_name": "CENTRE DE CHATILLON"}, "geometry": {"type": "Point", "coordinates": [2.2887071691495366, 48.80423910044471]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e082fd8cb6812c716c64a6ecb3d853cbce1b592e", "fields": {"departement": "92", "stop_lat": 48.80210842496292, "code_postal": "92020", "stop_lon": 2.2873485804549465, "coord": [48.80210842496292, 2.2873485804549465], "stop_id": 5121414, "stop_desc": "34 RUE GABRIEL PERI - 92020", "stop_name": "CENTRE DE CHATILLON - MARCHE"}, "geometry": {"type": "Point", "coordinates": [2.2873485804549465, 48.80210842496292]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "91650f0957d8565dd55a47750dfbb95186861485", "fields": {"departement": "92", "stop_lat": 48.79743234704115, "code_postal": "92020", "stop_lon": 2.2819248456131125, "coord": [48.79743234704115, 2.2819248456131125], "stop_id": 5121417, "stop_desc": "29 AVENUE DE LA DIVISION LECLERC - 92020", "stop_name": "LES SABLONS"}, "geometry": {"type": "Point", "coordinates": [2.2819248456131125, 48.79743234704115]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8a0ca99dbac2f145a18d73c40abd89438868ef2d", "fields": {"departement": "92", "stop_lat": 48.78687634148946, "code_postal": "92023", "stop_lon": 2.245932069536149, "coord": [48.78687634148946, 2.245932069536149], "stop_id": 5121423, "stop_desc": "183 R DE LA PORTE DE TRIVAUX - 92023", "stop_name": "CIMETIERE INTERCOMMUNAL"}, "geometry": {"type": "Point", "coordinates": [2.245932069536149, 48.78687634148946]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "322d0d815f7458378d150a5f797db5e7e18c1fb5", "fields": {"departement": "92", "stop_lat": 48.78499898712389, "code_postal": "92023", "stop_lon": 2.2362104166240977, "coord": [48.78499898712389, 2.2362104166240977], "stop_id": 5121425, "stop_desc": "RUE DE LA PORTE DE TRIVAUX - 92023", "stop_name": "GEORGES POMPIDOU"}, "geometry": {"type": "Point", "coordinates": [2.2362104166240977, 48.78499898712389]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "286326d495f592b9b3f87f5f381171f600f4b208", "fields": {"departement": "92", "stop_lat": 48.7836645351824, "code_postal": "92048", "stop_lon": 2.2313438596022097, "coord": [48.7836645351824, 2.2313438596022097], "stop_id": 5121427, "stop_desc": "AVENUE DE VILLACOUBLAY - 92048", "stop_name": "GEORGES MILLANDY"}, "geometry": {"type": "Point", "coordinates": [2.2313438596022097, 48.7836645351824]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8b000e7e51384eed37cc0a280a0b6e820a41b87e", "fields": {"departement": "92", "stop_lat": 48.78223995246046, "code_postal": "92048", "stop_lon": 2.2264233419911954, "coord": [48.78223995246046, 2.2264233419911954], "stop_id": 5121429, "stop_desc": "0 RUE DU PETIT CLAMART - 92048", "stop_name": "AVENUE DE LA SYGRIE"}, "geometry": {"type": "Point", "coordinates": [2.2264233419911954, 48.78223995246046]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "de67abd3c4d947b62f219e3b1e5e2acea2462922", "fields": {"departement": "78", "stop_lat": 48.78162035092704, "code_postal": "78640", "stop_lon": 2.209097684751481, "coord": [48.78162035092704, 2.209097684751481], "stop_id": 5121435, "stop_desc": "9 AVENUE MORANE SAULNIER - 78640", "stop_name": "INOVEL PARC NORD"}, "geometry": {"type": "Point", "coordinates": [2.209097684751481, 48.78162035092704]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0aa7850b4fa88893a4f3850f9976ed54edb42b17", "fields": {"departement": "78", "stop_lat": 48.77970101899226, "code_postal": "78640", "stop_lon": 2.1968080595754342, "coord": [48.77970101899226, 2.1968080595754342], "stop_id": 5121438, "stop_desc": "FACE 62 AVENUE DE L'EUROPE (CHAUSSEE SUD) - 78640", "stop_name": "LOUVOIS"}, "geometry": {"type": "Point", "coordinates": [2.1968080595754342, 48.77970101899226]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6ef091e441268e0ad54783b6b5a5300834abd13d", "fields": {"departement": "78", "stop_lat": 48.78499972821854, "code_postal": "78640", "stop_lon": 2.1791391815478742, "coord": [48.78499972821854, 2.1791391815478742], "stop_id": 5121444, "stop_desc": "AV ROBERT WAGNER - 78640", "stop_name": "ROBERT WAGNER"}, "geometry": {"type": "Point", "coordinates": [2.1791391815478742, 48.78499972821854]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "348b7f0fb95aee49511af719d0b694e0901b4386", "fields": {"departement": "92", "stop_lat": 48.7942551077991, "code_postal": "92032", "stop_lon": 2.2729361506767765, "coord": [48.7942551077991, 2.2729361506767765], "stop_id": 5121449, "stop_desc": "PLACE DE LA DIVISION LECLERC - 92032", "stop_name": "DIVISION LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.2729361506767765, 48.7942551077991]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "04b54ea99f7aaecd663b7c28131f109fdedb70dc", "fields": {"departement": "92", "stop_lat": 48.818086708432794, "code_postal": "92049", "stop_lon": 2.308605641659359, "coord": [48.818086708432794, 2.308605641659359], "stop_id": 5121453, "stop_desc": "105 AV PIERRE BROSSOLETTE - 92049", "stop_name": "12 FEVRIER 1934"}, "geometry": {"type": "Point", "coordinates": [2.308605641659359, 48.818086708432794]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "49c416aa1bcab2e224f3f8291a1cce233107ee01", "fields": {"departement": "92", "stop_lat": 48.82193457809965, "code_postal": "92049", "stop_lon": 2.3137893102917633, "coord": [48.82193457809965, 2.3137893102917633], "stop_id": 5121455, "stop_desc": "33 AVENUE PIERRE BROSSOLETTE - 92049", "stop_name": "DEPINOY"}, "geometry": {"type": "Point", "coordinates": [2.3137893102917633, 48.82193457809965]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a84bc34671d67bf980ec97abbb10dac4dfad9756", "fields": {"departement": "92", "stop_lat": 48.899664239058524, "code_postal": "92044", "stop_lon": 2.2801526624819535, "coord": [48.899664239058524, 2.2801526624819535], "stop_id": 5121464, "stop_desc": "QUAI MICHELET - 92044", "stop_name": "PICASSO"}, "geometry": {"type": "Point", "coordinates": [2.2801526624819535, 48.899664239058524]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bab6d792f76a1f64cd6b4daa0447e96229241f0b", "fields": {"departement": "92", "stop_lat": 48.91842078150043, "code_postal": "92004", "stop_lon": 2.2813592588188216, "coord": [48.91842078150043, 2.2813592588188216], "stop_id": 5121476, "stop_desc": "FACE 185 AVENUE D'ARGENTEUIL - 92004", "stop_name": "BOURGUIGNONS"}, "geometry": {"type": "Point", "coordinates": [2.2813592588188216, 48.91842078150043]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "86d9e1058e48a86eb444ad53a56efde7fc8811f0", "fields": {"departement": "92", "stop_lat": 48.91874406854453, "code_postal": "92004", "stop_lon": 2.2808407251176197, "coord": [48.91874406854453, 2.2808407251176197], "stop_id": 5121477, "stop_desc": "185 AVENUE D'ARGENTEUIL - 92004", "stop_name": "BOURGUIGNONS"}, "geometry": {"type": "Point", "coordinates": [2.2808407251176197, 48.91874406854453]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "248bfcc0aeea66ab333fe161c3266fb9e073d42d", "fields": {"departement": "92", "stop_lat": 48.92524363395361, "code_postal": "92036", "stop_lon": 2.2852387696877594, "coord": [48.92524363395361, 2.2852387696877594], "stop_id": 5121482, "stop_desc": "BOULEVARD PIERRE DE COUBERTIN - 92036", "stop_name": "ABBE GLATZ"}, "geometry": {"type": "Point", "coordinates": [2.2852387696877594, 48.92524363395361]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d3c53510921fcee2f3f6374a6234e50d7bc48b72", "fields": {"departement": "92", "stop_lat": 48.93084208433091, "code_postal": "92036", "stop_lon": 2.2843465707019854, "coord": [48.93084208433091, 2.2843465707019854], "stop_id": 5121484, "stop_desc": "BOULEVARD INTERCOMMUNAL - 92036", "stop_name": "ASNIERES - GENNEVILLIERS - LES COURTILLES"}, "geometry": {"type": "Point", "coordinates": [2.2843465707019854, 48.93084208433091]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d18ed1e77449a18c6ba7e0282d8bfffc084fd9d5", "fields": {"departement": "92", "stop_lat": 48.93752543173913, "code_postal": "92036", "stop_lon": 2.278214757875636, "coord": [48.93752543173913, 2.278214757875636], "stop_id": 5121486, "stop_desc": "BOULEVARD INTERCOMMUNAL - 92036", "stop_name": "PORT DE GENNEVILLIERS - CENTRE DE VIE"}, "geometry": {"type": "Point", "coordinates": [2.278214757875636, 48.93752543173913]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "49b85f54c8bef3e7407a4de3d31f4f194c84f3c6", "fields": {"departement": "93", "stop_lat": 48.95009070059307, "code_postal": "93039", "stop_lon": 2.3068270072880397, "coord": [48.95009070059307, 2.3068270072880397], "stop_id": 5121499, "stop_desc": "AVENUE DU PONT D'EPINAY - 93039", "stop_name": "PONT D'EPINAY"}, "geometry": {"type": "Point", "coordinates": [2.3068270072880397, 48.95009070059307]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f1a20d08761d6d8479cc3d000b022b4eae4104a2", "fields": {"departement": "93", "stop_lat": 48.955849516158175, "code_postal": "93031", "stop_lon": 2.300860225319865, "coord": [48.955849516158175, 2.300860225319865], "stop_id": 5121503, "stop_desc": "FACE 11 RUE FELIX MERLIN - 93031", "stop_name": "EPINAY-SUR-SEINE - GARE"}, "geometry": {"type": "Point", "coordinates": [2.300860225319865, 48.955849516158175]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "53ca06681b8b1b5547879349720b168a6102ccde", "fields": {"departement": "93", "stop_lat": 48.95647624951043, "code_postal": "93031", "stop_lon": 2.2938728368327754, "coord": [48.95647624951043, 2.2938728368327754], "stop_id": 5121508, "stop_desc": "FACE 8 RUE DE MARSEILLE - 93031", "stop_name": "RUE DE MARSEILLE"}, "geometry": {"type": "Point", "coordinates": [2.2938728368327754, 48.95647624951043]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5121bba7340d19e4c130535dca67750638adeb26", "fields": {"departement": "93", "stop_lat": 48.95994495181, "code_postal": "93031", "stop_lon": 2.2934468632100247, "coord": [48.95994495181, 2.2934468632100247], "stop_id": 5121510, "stop_desc": "RUE DE MARSEILLE - 93031", "stop_name": "DUNKERQUE"}, "geometry": {"type": "Point", "coordinates": [2.2934468632100247, 48.95994495181]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "77c849c9ade57c88dded2fe6f01d3a8ea2ba656a", "fields": {"departement": "92", "stop_lat": 48.92798429491097, "code_postal": "92004", "stop_lon": 2.2844449622932146, "coord": [48.92798429491097, 2.2844449622932146], "stop_id": 5121516, "stop_desc": "BOULEVARD PIERRE DE COUBERTIN - 92004", "stop_name": "PATINOIRE"}, "geometry": {"type": "Point", "coordinates": [2.2844449622932146, 48.92798429491097]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2d176ad7549a37a10ebda374b0199a737fc00aa4", "fields": {"departement": "75", "stop_lat": 48.83825867806939, "code_postal": "75116", "stop_lon": 2.257509939435403, "coord": [48.83825867806939, 2.257509939435403], "stop_id": 5121562, "stop_desc": "PLACE DE LA PORTE DE SAINT-CLOUD - 75116", "stop_name": "PORTE DE SAINT-CLOUD-METRO"}, "geometry": {"type": "Point", "coordinates": [2.257509939435403, 48.83825867806939]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "78a490f05f22a8a1165c3c86754c97931678d85f", "fields": {"departement": "92", "stop_lat": 48.82565158540696, "code_postal": "92012", "stop_lon": 2.2483956687800117, "coord": [48.82565158540696, 2.2483956687800117], "stop_id": 5121569, "stop_desc": "FACE 4 AVENUE PIERRE GRENIER - 92012", "stop_name": "PONT DE BILLANCOURT"}, "geometry": {"type": "Point", "coordinates": [2.2483956687800117, 48.82565158540696]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dcf30dd7e7e52075509b427d8818c26af73fe6fc", "fields": {"departement": "92", "stop_lat": 48.82167109764111, "code_postal": "92040", "stop_lon": 2.2498180216492933, "coord": [48.82167109764111, 2.2498180216492933], "stop_id": 5121573, "stop_desc": "PLACE DE LA RESISTANCE - 92040", "stop_name": "LES MOULINEAUX"}, "geometry": {"type": "Point", "coordinates": [2.2498180216492933, 48.82167109764111]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8717f8b45c83100080c0ff98f9ec421f811359c8", "fields": {"departement": "92", "stop_lat": 48.818264411263996, "code_postal": "92040", "stop_lon": 2.2493474086296885, "coord": [48.818264411263996, 2.2493474086296885], "stop_id": 5121575, "stop_desc": "FACE 37 RUE JEAN PIERRE TIMBAUD - 92040", "stop_name": "PAUL BESNARD"}, "geometry": {"type": "Point", "coordinates": [2.2493474086296885, 48.818264411263996]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c7f0ffc26d8e424a65d16107673a0707df783735", "fields": {"departement": "92", "stop_lat": 48.812977370400574, "code_postal": "92048", "stop_lon": 2.2463488472669777, "coord": [48.812977370400574, 2.2463488472669777], "stop_id": 5121579, "stop_desc": "AVENUE JEAN JAURES - 92048", "stop_name": "VIADUC"}, "geometry": {"type": "Point", "coordinates": [2.2463488472669777, 48.812977370400574]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9a36eaeda5aabd83d2452b62c7e1b37123767696", "fields": {"departement": "92", "stop_lat": 48.798927673593, "code_postal": "92048", "stop_lon": 2.2332310308419236, "coord": [48.798927673593, 2.2332310308419236], "stop_id": 5121588, "stop_desc": "AVENUE DE TRIVAUX - 92048", "stop_name": "CIMETIERE DE TRIVAUX"}, "geometry": {"type": "Point", "coordinates": [2.2332310308419236, 48.798927673593]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "37c79dfccbfa5fa748258e2569af0895766918b9", "fields": {"departement": "92", "stop_lat": 48.7879586489924, "code_postal": "92048", "stop_lon": 2.228981937708429, "coord": [48.7879586489924, 2.228981937708429], "stop_id": 5121592, "stop_desc": "13-15 AVENUE DU GENERAL DE GAULLE - 92048", "stop_name": "EGLISE DE MEUDON-LA-FORET"}, "geometry": {"type": "Point", "coordinates": [2.228981937708429, 48.7879586489924]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a3288524b53513259d9354db09ae51f4bc7e3735", "fields": {"departement": "92", "stop_lat": 48.78725665822654, "code_postal": "92048", "stop_lon": 2.2279632565302556, "coord": [48.78725665822654, 2.2279632565302556], "stop_id": 5121593, "stop_desc": "17 AVENUE DE CELLE - 92048", "stop_name": "EGLISE - AVENUE DE CELLE"}, "geometry": {"type": "Point", "coordinates": [2.2279632565302556, 48.78725665822654]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "68498490c54760f80dac27a1c414d2d229f9aa48", "fields": {"departement": "92", "stop_lat": 48.787405564917776, "code_postal": "92048", "stop_lon": 2.2336621671073633, "coord": [48.787405564917776, 2.2336621671073633], "stop_id": 5121597, "stop_desc": "AVENUE DU MARECHAL DE LATTRE DE TASSIGNY - 92048", "stop_name": "ESPACE CULTUREL - ROBERT DOISNEAU"}, "geometry": {"type": "Point", "coordinates": [2.2336621671073633, 48.787405564917776]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dec4e46f27b313bc1c2d056eeadc50c3f1b0a461", "fields": {"departement": "92", "stop_lat": 48.82614646071634, "code_postal": "92012", "stop_lon": 2.237736533402742, "coord": [48.82614646071634, 2.237736533402742], "stop_id": 5121613, "stop_desc": "50 AV PIERRE LEFAUCHEUX - 92012", "stop_name": "PARC DE BILLANCOURT"}, "geometry": {"type": "Point", "coordinates": [2.237736533402742, 48.82614646071634]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "67a2cbeb7e6a12bb71c7e92d19143c0fafcc911d", "fields": {"departement": "92", "stop_lat": 48.82779325540712, "code_postal": "92012", "stop_lon": 2.2402244721107896, "coord": [48.82779325540712, 2.2402244721107896], "stop_id": 5121614, "stop_desc": "FACE 738 RUE YVES KERMEN - 92012", "stop_name": "EMILE ZOLA"}, "geometry": {"type": "Point", "coordinates": [2.2402244721107896, 48.82779325540712]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eebcef29a8b64a05931f5509293ba102b28c00f7", "fields": {"departement": "92", "stop_lat": 48.82720176152352, "code_postal": "92012", "stop_lon": 2.2423218868188237, "coord": [48.82720176152352, 2.2423218868188237], "stop_id": 5121617, "stop_desc": "36 RUE YVES KERMEN - 92012", "stop_name": "PLACE JULES GUESDE"}, "geometry": {"type": "Point", "coordinates": [2.2423218868188237, 48.82720176152352]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "458f6bb8237730d83533e75183c9624f20f75fee", "fields": {"departement": "92", "stop_lat": 48.818264411263996, "code_postal": "92040", "stop_lon": 2.2493474086296885, "coord": [48.818264411263996, 2.2493474086296885], "stop_id": 5121623, "stop_desc": "FACE 37 RUE JEAN PIERRE TIMBAUD - 92040", "stop_name": "PAUL BESNARD"}, "geometry": {"type": "Point", "coordinates": [2.2493474086296885, 48.818264411263996]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ac08b705b04699622e52f6f7a0dc9c14465b504d", "fields": {"departement": "92", "stop_lat": 48.818799964460155, "code_postal": "92048", "stop_lon": 2.244460443361091, "coord": [48.818799964460155, 2.244460443361091], "stop_id": 5121624, "stop_desc": "169 AVENUE DE VERDUN - 92048", "stop_name": "GROUPE SCOLAIRE BROSSOLETTE"}, "geometry": {"type": "Point", "coordinates": [2.244460443361091, 48.818799964460155]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b1e7f972560bdb884f8554b0fc2104f73668e278", "fields": {"departement": "92", "stop_lat": 48.81870583090119, "code_postal": "92048", "stop_lon": 2.2391526467363607, "coord": [48.81870583090119, 2.2391526467363607], "stop_id": 5121628, "stop_desc": "19 ROUTE DES GARDES - 92048", "stop_name": "MEUDON SUR SEINE-TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.2391526467363607, 48.81870583090119]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f42f88e928ef52080f8dd475c9eec7dcfd444a38", "fields": {"departement": "92", "stop_lat": 48.81108232012079, "code_postal": "92048", "stop_lon": 2.236867272802698, "coord": [48.81108232012079, 2.236867272802698], "stop_id": 5121636, "stop_desc": "PLACE RABELAIS - 92048", "stop_name": "RABELAIS"}, "geometry": {"type": "Point", "coordinates": [2.236867272802698, 48.81108232012079]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ccbbc2530a2cb55cad550d54ef7e24ee7c1ac8be", "fields": {"departement": "92", "stop_lat": 48.798927673593, "code_postal": "92048", "stop_lon": 2.2332310308419236, "coord": [48.798927673593, 2.2332310308419236], "stop_id": 5121642, "stop_desc": "AVENUE DE TRIVAUX - 92048", "stop_name": "CIMETIERE DE TRIVAUX"}, "geometry": {"type": "Point", "coordinates": [2.2332310308419236, 48.798927673593]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d722309bd4284060c9c674030d1a008db56d2cd5", "fields": {"departement": "92", "stop_lat": 48.78905975534039, "code_postal": "92048", "stop_lon": 2.2341349515820745, "coord": [48.78905975534039, 2.2341349515820745], "stop_id": 5121643, "stop_desc": "FACE 2 AVENUE ROBERT SCHUMAN - 92048", "stop_name": "TAPIS VERT"}, "geometry": {"type": "Point", "coordinates": [2.2341349515820745, 48.78905975534039]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "726335acd9cd931ac96da579ead1ed2fcf8e0300", "fields": {"departement": "91", "stop_lat": 48.67303796942494, "code_postal": "91589", "stop_lon": 2.3448550304356597, "coord": [48.67303796942494, 2.3448550304356597], "stop_id": 3732124, "stop_desc": "36-38 AV GAMBETTA - 91589", "stop_name": "BILLOIR"}, "geometry": {"type": "Point", "coordinates": [2.3448550304356597, 48.67303796942494]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6166c86d4e3616e07a254e983e7a4bfe7344e5b8", "fields": {"departement": "91", "stop_lat": 48.695370053417975, "code_postal": "91326", "stop_lon": 2.371538856451079, "coord": [48.695370053417975, 2.371538856451079], "stop_id": 3732208, "stop_desc": "40 BIS AVENUE DE LA COUR DE FRANCE - 91326", "stop_name": "OBSERVATOIRE CAMILLE FLAMMARION"}, "geometry": {"type": "Point", "coordinates": [2.371538856451079, 48.695370053417975]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c68f1d45f748474f479d77f73c0cd3e8e3b3b20c", "fields": {"departement": "91", "stop_lat": 48.69391547251368, "code_postal": "91589", "stop_lon": 2.3655909462287816, "coord": [48.69391547251368, 2.3655909462287816], "stop_id": 3732210, "stop_desc": "325 BOULEVARD ARISTIDE BRIAND - 91589", "stop_name": "CIMETIERE DE SAVIGNY-SUR-ORGE"}, "geometry": {"type": "Point", "coordinates": [2.3655909462287816, 48.69391547251368]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ce54164f5c97450024d6db1618c0b5a911794858", "fields": {"departement": "91", "stop_lat": 48.68811042850665, "code_postal": "91589", "stop_lon": 2.3578630407104293, "coord": [48.68811042850665, 2.3578630407104293], "stop_id": 3732212, "stop_desc": "193 BOULEVARD ARISTIDE BRIAND - 91589", "stop_name": "ARISTIDE BRIAND - CHAMPAGNE"}, "geometry": {"type": "Point", "coordinates": [2.3578630407104293, 48.68811042850665]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d2edfb0e9c129554b79246d372bb2a2f7f23b164", "fields": {"departement": "91", "stop_lat": 48.68687073348949, "code_postal": "91589", "stop_lon": 2.353070335849902, "coord": [48.68687073348949, 2.353070335849902], "stop_id": 3732213, "stop_desc": "155 BD ARISTIDE BRIAND - 91589", "stop_name": "MARCHE DE SAVIGNY-SUR-ORGE"}, "geometry": {"type": "Point", "coordinates": [2.353070335849902, 48.68687073348949]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3700f3fce7d445e1de8f072d8874b7a237c5dc42", "fields": {"departement": "91", "stop_lat": 48.69847991744048, "code_postal": "91027", "stop_lon": 2.372151947688958, "coord": [48.69847991744048, 2.372151947688958], "stop_id": 3732175, "stop_desc": "10 AV FRANCOIS MITTERRAND - 91027", "stop_name": "PYRAMIDE DE JUVISY"}, "geometry": {"type": "Point", "coordinates": [2.372151947688958, 48.69847991744048]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1b6752b6dd82f3814772b473412770b5fb899afe", "fields": {"departement": "91", "stop_lat": 48.67332581487367, "code_postal": "91589", "stop_lon": 2.340226971440059, "coord": [48.67332581487367, 2.340226971440059], "stop_id": 3732222, "stop_desc": "AV HENRI OUZILLEAU - 91589", "stop_name": "COLLEGE JEAN MERMOZ"}, "geometry": {"type": "Point", "coordinates": [2.340226971440059, 48.67332581487367]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ade19ad2c58a2174b585b002aafa7b220f86069d", "fields": {"departement": "91", "stop_lat": 48.69136332994177, "code_postal": "91589", "stop_lon": 2.3628741864603233, "coord": [48.69136332994177, 2.3628741864603233], "stop_id": 3732173, "stop_desc": "168 BD ARISTIDE BRIAND - 91589", "stop_name": "TOURTERELLES"}, "geometry": {"type": "Point", "coordinates": [2.3628741864603233, 48.69136332994177]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5e6ed003f7210103fb7fd13ddedfb1b08b839a6d", "fields": {"departement": "91", "stop_lat": 48.69064764216272, "code_postal": "91326", "stop_lon": 2.381786125631908, "coord": [48.69064764216272, 2.381786125631908], "stop_id": 3732177, "stop_desc": "FACE 41 RUE DES GAULOIS - 91326", "stop_name": "JUVISY RER"}, "geometry": {"type": "Point", "coordinates": [2.381786125631908, 48.69064764216272]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9caf2b81ea823f937c62ede095013fb685123fa4", "fields": {"departement": "91", "stop_lat": 48.67465580293729, "code_postal": "91589", "stop_lon": 2.346741842972062, "coord": [48.67465580293729, 2.346741842972062], "stop_id": 3732220, "stop_desc": "8-10 AV GAMBETTA - 91589", "stop_name": "MARTINIERE"}, "geometry": {"type": "Point", "coordinates": [2.346741842972062, 48.67465580293729]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5370aa5086c05866f9799b459b747fcb760e9bef", "fields": {"departement": "91", "stop_lat": 48.69382267955351, "code_postal": "91326", "stop_lon": 2.375896211585746, "coord": [48.69382267955351, 2.375896211585746], "stop_id": 3732179, "stop_desc": "8-10 AVENUE RASPAIL - 91326", "stop_name": "RASPAIL"}, "geometry": {"type": "Point", "coordinates": [2.375896211585746, 48.69382267955351]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7f49ede26a822160b4dd42b6cd4be99cdc45d5df", "fields": {"departement": "75", "stop_lat": 48.850119889984526, "code_postal": "75104", "stop_lon": 2.3593981982611987, "coord": [48.850119889984526, 2.3593981982611987], "stop_id": 3748051, "stop_desc": "FACE 3-5 BOULEVARD HENRI IV - 75104", "stop_name": "PONT SULLY - QUAI DE BETHUNE"}, "geometry": {"type": "Point", "coordinates": [2.3593981982611987, 48.850119889984526]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c7180d64e1e27bcba58e87222147dbe2feaa3b69", "fields": {"departement": "75", "stop_lat": 48.85029067481675, "code_postal": "75104", "stop_lon": 2.3592757051746074, "coord": [48.85029067481675, 2.3592757051746074], "stop_id": 3748052, "stop_desc": "1-3 BOULEVARD HENRI IV - 75104", "stop_name": "PONT SULLY - QUAI DE BETHUNE"}, "geometry": {"type": "Point", "coordinates": [2.3592757051746074, 48.85029067481675]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "303ff6214bf16b865d93c874d066d68dc5815158", "fields": {"departement": "75", "stop_lat": 48.84804889034139, "code_postal": "75112", "stop_lon": 2.396873657460073, "coord": [48.84804889034139, 2.396873657460073], "stop_id": 3748067, "stop_desc": "30 PLACE DE LA NATION - 75112", "stop_name": "NATION - PLACE DES ANTILLES"}, "geometry": {"type": "Point", "coordinates": [2.396873657460073, 48.84804889034139]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c73428eb230347bbfac58a7c11f7a67c82e1be40", "fields": {"departement": "75", "stop_lat": 48.85828368072684, "code_postal": "75111", "stop_lon": 2.380527147829766, "coord": [48.85828368072684, 2.380527147829766], "stop_id": 3747930, "stop_desc": "6 BIS PLACE LEON BLUM - 75111", "stop_name": "VOLTAIRE - LEON BLUM"}, "geometry": {"type": "Point", "coordinates": [2.380527147829766, 48.85828368072684]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ca44ac77d270d10f04212deefd254afae85cd7a1", "fields": {"departement": "75", "stop_lat": 48.85067175199644, "code_postal": "75111", "stop_lon": 2.379295128256451, "coord": [48.85067175199644, 2.379295128256451], "stop_id": 3748061, "stop_desc": "153-155 RUE DU FAUBOURG SAINT-ANTOINE - 75111", "stop_name": "CROZATIER"}, "geometry": {"type": "Point", "coordinates": [2.379295128256451, 48.85067175199644]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "28662bccb87af7548575bbc9353cc6cb42f9cb20", "fields": {"departement": "75", "stop_lat": 48.84973489237593, "code_postal": "75112", "stop_lon": 2.3850276733110722, "coord": [48.84973489237593, 2.3850276733110722], "stop_id": 3747935, "stop_desc": "1 RUE DE REUILLY - 75112", "stop_name": "FAIDHERBE - CHALIGNY"}, "geometry": {"type": "Point", "coordinates": [2.3850276733110722, 48.84973489237593]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7bf01940ddfef157576d900833c49c2b3658483e", "fields": {"departement": "75", "stop_lat": 48.83708107071685, "code_postal": "75112", "stop_lon": 2.402633806208425, "coord": [48.83708107071685, 2.402633806208425], "stop_id": 3747947, "stop_desc": "253 TER AVENUE DAUMESNIL - 75112", "stop_name": "MICHEL BIZOT"}, "geometry": {"type": "Point", "coordinates": [2.402633806208425, 48.83708107071685]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7a025ba0069ff426b92a77f1a3cda8550e7ee27f", "fields": {"departement": "75", "stop_lat": 48.85300708608977, "code_postal": "75111", "stop_lon": 2.38311038576739, "coord": [48.85300708608977, 2.38311038576739], "stop_id": 3747933, "stop_desc": "44 RUE FAIDHERBE - 75111", "stop_name": "CHARONNE - CHANZY"}, "geometry": {"type": "Point", "coordinates": [2.38311038576739, 48.85300708608977]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b694b75aeeb6df4ac467a771c20521ce0b37b3b6", "fields": {"departement": "75", "stop_lat": 48.835020355270444, "code_postal": "75112", "stop_lon": 2.407137589539533, "coord": [48.835020355270444, 2.407137589539533], "stop_id": 3747948, "stop_desc": "2 PLACE EDOUARD RENARD - 75112", "stop_name": "PORTE DOREE"}, "geometry": {"type": "Point", "coordinates": [2.407137589539533, 48.835020355270444]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ecb9a1106e16384b78ba09cf6cc173dc68a2697f", "fields": {"departement": "75", "stop_lat": 48.84111880202587, "code_postal": "75112", "stop_lon": 2.4379725289919545, "coord": [48.84111880202587, 2.4379725289919545], "stop_id": 3747958, "stop_desc": "ROUTE DE L'ARTILLERIE - 75112", "stop_name": "PARC FLORAL"}, "geometry": {"type": "Point", "coordinates": [2.4379725289919545, 48.84111880202587]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b92c0cc1c591e61e1b2ad78fc55715adfc29ae77", "fields": {"departement": "75", "stop_lat": 48.86655095104825, "code_postal": "75101", "stop_lon": 2.3379494401058456, "coord": [48.86655095104825, 2.3379494401058456], "stop_id": 3747880, "stop_desc": "FACE 15 R DES PETITS CHAMPS - 75101", "stop_name": "BIBLIOTHEQUE NATIONALE"}, "geometry": {"type": "Point", "coordinates": [2.3379494401058456, 48.86655095104825]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b967f3653cf6e433b27f9de82870d2eadda0c344", "fields": {"departement": "75", "stop_lat": 48.860194629991966, "code_postal": "75103", "stop_lon": 2.360369594494444, "coord": [48.860194629991966, 2.360369594494444], "stop_id": 3747873, "stop_desc": "6 RUE DES QUATRE FILS - 75103", "stop_name": "RUE VIEILLE DU TEMPLE"}, "geometry": {"type": "Point", "coordinates": [2.360369594494444, 48.860194629991966]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "deeff711a085fb42330ea70814eeb0a36c4e6559", "fields": {"departement": "75", "stop_lat": 48.87863626955432, "code_postal": "75110", "stop_lon": 2.362258190577353, "coord": [48.87863626955432, 2.362258190577353], "stop_id": 3747912, "stop_desc": "190 RUE DU FAUBOURG SAINT-MARTIN - 75110", "stop_name": "CHATEAU LANDON"}, "geometry": {"type": "Point", "coordinates": [2.362258190577353, 48.87863626955432]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "29383a088a53a3e5535547ea2b336388544e916f", "fields": {"departement": "75", "stop_lat": 48.848426890902694, "code_postal": "75112", "stop_lon": 2.373151610559424, "coord": [48.848426890902694, 2.373151610559424], "stop_id": 3747867, "stop_desc": "15 AVENUE DAUMESNIL - 75112", "stop_name": "DAUMESNIL - LEDRU ROLLIN"}, "geometry": {"type": "Point", "coordinates": [2.373151610559424, 48.848426890902694]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0cc27cef7f19230b7470f9ab448ea8a28195fda6", "fields": {"departement": "75", "stop_lat": 48.844122540397606, "code_postal": "75112", "stop_lon": 2.410812778561765, "coord": [48.844122540397606, 2.410812778561765], "stop_id": 3747862, "stop_desc": "4 AVENUE COURTELINE - 75112", "stop_name": "PORTE DE SAINT-MANDE"}, "geometry": {"type": "Point", "coordinates": [2.410812778561765, 48.844122540397606]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "58637e54087407be0a9ff8e879a79a95c50a0f9c", "fields": {"departement": "75", "stop_lat": 48.85854460023915, "code_postal": "75111", "stop_lon": 2.3797373699705835, "coord": [48.85854460023915, 2.3797373699705835], "stop_id": 3747929, "stop_desc": "1 AVENUE PARMENTIER - 75111", "stop_name": "VOLTAIRE - LEON BLUM"}, "geometry": {"type": "Point", "coordinates": [2.3797373699705835, 48.85854460023915]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "64cbc1379bca75d3ef6c3f86635299de866fa3ec", "fields": {"departement": "75", "stop_lat": 48.84453883847328, "code_postal": "75112", "stop_lon": 2.4060065891934315, "coord": [48.84453883847328, 2.4060065891934315], "stop_id": 3747860, "stop_desc": "92 AVENUE DE SAINT-MANDE - 75112", "stop_name": "DOCTEUR NETTER"}, "geometry": {"type": "Point", "coordinates": [2.4060065891934315, 48.84453883847328]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cf008f28445684715de1984fb6c498ea33c6f568", "fields": {"departement": "75", "stop_lat": 48.84473606545388, "code_postal": "75112", "stop_lon": 2.406864721018619, "coord": [48.84473606545388, 2.406864721018619], "stop_id": 3747861, "stop_desc": "67 AVENUE DE SAINT-MANDE - 75112", "stop_name": "DOCTEUR NETTER"}, "geometry": {"type": "Point", "coordinates": [2.406864721018619, 48.84473606545388]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e6ae83ea265acba40ec20b4dd02231c29ffa2520", "fields": {"departement": "75", "stop_lat": 48.88067732281017, "code_postal": "75110", "stop_lon": 2.35725827635385, "coord": [48.88067732281017, 2.35725827635385], "stop_id": 3747905, "stop_desc": "PISTE GARE ROUTIERE - 75110", "stop_name": "GARE DU NORD"}, "geometry": {"type": "Point", "coordinates": [2.35725827635385, 48.88067732281017]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4491929ec7aabd78a4b9841eb57cfc777aaaf274", "fields": {"departement": "75", "stop_lat": 48.87139966091467, "code_postal": "75110", "stop_lon": 2.3698432625652974, "coord": [48.87139966091467, 2.3698432625652974], "stop_id": 3747919, "stop_desc": "155 AVENUE PARMENTIER - 75110", "stop_name": "ALIBERT"}, "geometry": {"type": "Point", "coordinates": [2.3698432625652974, 48.87139966091467]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c8462918f2da4fc2ab8f03d83ebf3fb2f04e0518", "fields": {"departement": "93", "stop_lat": 48.910289751928175, "code_postal": "93066", "stop_lon": 2.3585376924812618, "coord": [48.910289751928175, 2.3585376924812618], "stop_id": 3741077, "stop_desc": "38 RUE DE L'ENCYCLOPEDIE - 93066", "stop_name": "ENCYCLOPEDIE - METALLURGIE"}, "geometry": {"type": "Point", "coordinates": [2.3585376924812618, 48.910289751928175]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3d827236c50e10891e9e80dccb612870aed40a8f", "fields": {"departement": "95", "stop_lat": 48.96723761706791, "code_postal": "95268", "stop_lon": 2.3919334574113376, "coord": [48.96723761706791, 2.3919334574113376], "stop_id": 3740991, "stop_desc": "41-43 RUE PAUL VAILLANT COUTURIER - 95268", "stop_name": "PIERRE SEMARD"}, "geometry": {"type": "Point", "coordinates": [2.3919334574113376, 48.96723761706791]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6e102d2695e66d999a90b076494c254a0ef10bc0", "fields": {"departement": "93", "stop_lat": 48.927017769165985, "code_postal": "93027", "stop_lon": 2.379916284235061, "coord": [48.927017769165985, 2.379916284235061], "stop_id": 3741087, "stop_desc": "AVENUE DU GENERAL LECLERC - 93027", "stop_name": "LANGEVIN - WALLON"}, "geometry": {"type": "Point", "coordinates": [2.379916284235061, 48.927017769165985]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "48b6dbc431c804d88420513b28cb163e5b24511f", "fields": {"departement": "75", "stop_lat": 48.8807131555147, "code_postal": "75110", "stop_lon": 2.357939612000532, "coord": [48.8807131555147, 2.357939612000532], "stop_id": 3741053, "stop_desc": "184 RUE DU FAUBOURG SAINT-DENIS - 75110", "stop_name": "GARE DU NORD."}, "geometry": {"type": "Point", "coordinates": [2.357939612000532, 48.8807131555147]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2ec748cac363d4ec3c3b7a94fea5ef8b67a1d08e", "fields": {"departement": "95", "stop_lat": 48.971513468947926, "code_postal": "95268", "stop_lon": 2.3956645213121854, "coord": [48.971513468947926, 2.3956645213121854], "stop_id": 3740995, "stop_desc": "AVENUE FRANCOIS MITTERRAND - 95268", "stop_name": "PLEIN MIDI"}, "geometry": {"type": "Point", "coordinates": [2.3956645213121854, 48.971513468947926]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "081a0349ee74c44b5a1db2c0837578145a9aac7c", "fields": {"departement": "93", "stop_lat": 48.92807636702345, "code_postal": "93027", "stop_lon": 2.3848271601630664, "coord": [48.92807636702345, 2.3848271601630664], "stop_id": 3741090, "stop_desc": "VOIE NOUVELLE - 93027", "stop_name": "6 ROUTES-TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.3848271601630664, 48.92807636702345]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "79028550ca5ec5ae0099f3f3e9e600debaff209b", "fields": {"departement": "75", "stop_lat": 48.89483281614878, "code_postal": "75118", "stop_lon": 2.3529429833338122, "coord": [48.89483281614878, 2.3529429833338122], "stop_id": 3741065, "stop_desc": "118 RUE DES POISSONNIERS - 75118", "stop_name": "CHAMPIONNET"}, "geometry": {"type": "Point", "coordinates": [2.3529429833338122, 48.89483281614878]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7f839c957b7e1365ebdaca3f3a2cff783fd0cf8a", "fields": {"departement": "75", "stop_lat": 48.894733977114015, "code_postal": "75118", "stop_lon": 2.3527930220613307, "coord": [48.894733977114015, 2.3527930220613307], "stop_id": 3741066, "stop_desc": "131 R DES POISSONNIERS - 75118", "stop_name": "CHAMPIONNET"}, "geometry": {"type": "Point", "coordinates": [2.3527930220613307, 48.894733977114015]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3fe14b92582afdef35be02a0ed426e35b053b2a2", "fields": {"departement": "93", "stop_lat": 48.91400948552992, "code_postal": "93066", "stop_lon": 2.363066105327928, "coord": [48.91400948552992, 2.363066105327928], "stop_id": 3741079, "stop_desc": "RUE DE LA PROCESSION - 93066", "stop_name": "MARAICHERS"}, "geometry": {"type": "Point", "coordinates": [2.363066105327928, 48.91400948552992]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cf55b371e48748e05a2f101cb2c099b50dd5ebd7", "fields": {"departement": "75", "stop_lat": 48.88885589599425, "code_postal": "75118", "stop_lon": 2.3560484896304, "coord": [48.88885589599425, 2.3560484896304], "stop_id": 3741059, "stop_desc": "60 RUE STEPHENSON - 75118", "stop_name": "DOUDEAUVILLE"}, "geometry": {"type": "Point", "coordinates": [2.3560484896304, 48.88885589599425]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4ce9fed2ded596882f345f67941152bf07a6c1c3", "fields": {"departement": "75", "stop_lat": 48.874785174138395, "code_postal": "75108", "stop_lon": 2.2959440504647897, "coord": [48.874785174138395, 2.2959440504647897], "stop_id": 3740325, "stop_desc": "2 AVENUE DE WAGRAM - 75108", "stop_name": "CHARLES DE GAULLE - ETOILE - WAGRAM"}, "geometry": {"type": "Point", "coordinates": [2.2959440504647897, 48.874785174138395]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8b21f32c83fb38a51036b522f194c532cb2b517f", "fields": {"departement": "75", "stop_lat": 48.858571991029, "code_postal": "75116", "stop_lon": 2.2752536202265197, "coord": [48.858571991029, 2.2752536202265197], "stop_id": 3740538, "stop_desc": "6-8 CHAUSSEE DE LA MUETTE - 75116", "stop_name": "LA MUETTE - BOULAINVILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.2752536202265197, 48.858571991029]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b6bcc293d716b0d9bb3c40b897d115a0f1a0c4dc", "fields": {"departement": "75", "stop_lat": 48.86407025913033, "code_postal": "75116", "stop_lon": 2.2905173822662883, "coord": [48.86407025913033, 2.2905173822662883], "stop_id": 3740529, "stop_desc": "32 AVENUE DU PRESIDENT WILSON - 75116", "stop_name": "ALBERT DE MUN"}, "geometry": {"type": "Point", "coordinates": [2.2905173822662883, 48.86407025913033]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c3b3badfcf805f9019d43a2ebc5cb0ef4913e334", "fields": {"departement": "93", "stop_lat": 48.95179255165845, "code_postal": "93072", "stop_lon": 2.384889891033903, "coord": [48.95179255165845, 2.384889891033903], "stop_id": 3740982, "stop_desc": "FACE 57 BOULEVARD MAXIME GORKI - 93072", "stop_name": "FRANCOIS BEGUE"}, "geometry": {"type": "Point", "coordinates": [2.384889891033903, 48.95179255165845]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a09a5ffbfaa4bc487be3dd6ba0319249168d62e9", "fields": {"departement": "75", "stop_lat": 48.87524105469884, "code_postal": "75108", "stop_lon": 2.3248559340121537, "coord": [48.87524105469884, 2.3248559340121537], "stop_id": 3740559, "stop_desc": "119-121 RUE SAINT LAZARE - 75108", "stop_name": "GARE SAINT-LAZARE"}, "geometry": {"type": "Point", "coordinates": [2.3248559340121537, 48.87524105469884]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "83815b484aabd6585441b8d96a4866f5b1a9f445", "fields": {"departement": "93", "stop_lat": 48.952466555775885, "code_postal": "93072", "stop_lon": 2.384890511280149, "coord": [48.952466555775885, 2.384890511280149], "stop_id": 3740981, "stop_desc": "45 BOULEVARD MAXIME GORKI - 93072", "stop_name": "FRANCOIS BEGUE"}, "geometry": {"type": "Point", "coordinates": [2.384890511280149, 48.952466555775885]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "36bd76ad9a0bf8d4f6f8350961bd1b592f7dde19", "fields": {"departement": "93", "stop_lat": 48.960097426554526, "code_postal": "93072", "stop_lon": 2.38186782564374, "coord": [48.960097426554526, 2.38186782564374], "stop_id": 3740986, "stop_desc": "47 AVENUE MARCEL CACHIN - 93072", "stop_name": "LES PAROUZETS"}, "geometry": {"type": "Point", "coordinates": [2.38186782564374, 48.960097426554526]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "24f29dd3c64f0f71f0ec0c2fb6b26f009980b176", "fields": {"departement": "75", "stop_lat": 48.850276623773084, "code_postal": "75116", "stop_lon": 2.2599700212197678, "coord": [48.850276623773084, 2.2599700212197678], "stop_id": 3740545, "stop_desc": "118 BOULEVARD SUCHET - 75116", "stop_name": "ALFRED CAPUS"}, "geometry": {"type": "Point", "coordinates": [2.2599700212197678, 48.850276623773084]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d9a56a302ed7b66795da16a1dd54e9bc73dba92e", "fields": {"departement": "75", "stop_lat": 48.85031282049884, "code_postal": "75116", "stop_lon": 2.260351284060412, "coord": [48.85031282049884, 2.260351284060412], "stop_id": 3740546, "stop_desc": "85 BOULEVARD SUCHET - 75116", "stop_name": "ALFRED CAPUS"}, "geometry": {"type": "Point", "coordinates": [2.260351284060412, 48.85031282049884]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "42d7dc3bc5560e6a78ae58ddb21c96bdccbd1cdd", "fields": {"departement": "75", "stop_lat": 48.860129277354844, "code_postal": "75116", "stop_lon": 2.280182571795972, "coord": [48.860129277354844, 2.280182571795972], "stop_id": 3740536, "stop_desc": "56 AVENUE PAUL DOUMER - 75116", "stop_name": "LA TOUR"}, "geometry": {"type": "Point", "coordinates": [2.280182571795972, 48.860129277354844]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9a5987e22e87ba67bbee443576e1dc6bcfcefbee", "fields": {"departement": "94", "stop_lat": 48.817445659342866, "code_postal": "94017", "stop_lon": 2.4955234559960484, "coord": [48.817445659342866, 2.4955234559960484], "stop_id": 3743514, "stop_desc": "112-114 AVENUE ROGER SALENGRO - 94017", "stop_name": "JEAN-BAPTISTE CLEMENT"}, "geometry": {"type": "Point", "coordinates": [2.4955234559960484, 48.817445659342866]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ab5931850fa41ce5913eddcee30e313748fbb905", "fields": {"departement": "94", "stop_lat": 48.81313554348275, "code_postal": "94017", "stop_lon": 2.511936047825764, "coord": [48.81313554348275, 2.511936047825764], "stop_id": 3743506, "stop_desc": "32 RUE LOUIS TALAMONI - 94017", "stop_name": "MAIRIE DE CHAMPIGNY"}, "geometry": {"type": "Point", "coordinates": [2.511936047825764, 48.81313554348275]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b8299e6147d65218b4de2aba6641c4b10a26e610", "fields": {"departement": "75", "stop_lat": 48.8746658461575, "code_postal": "75108", "stop_lon": 2.324651698857363, "coord": [48.8746658461575, 2.324651698857363], "stop_id": 3747809, "stop_desc": "FACE 61 RUE DE L'ARCADE - 75108", "stop_name": "GARE SAINT-LAZARE"}, "geometry": {"type": "Point", "coordinates": [2.324651698857363, 48.8746658461575]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ffba3fc415ff470f9b25762927eb4d3607354e99", "fields": {"departement": "94", "stop_lat": 48.8140197332999, "code_postal": "94017", "stop_lon": 2.5096118909357625, "coord": [48.8140197332999, 2.5096118909357625], "stop_id": 3743507, "stop_desc": "85 AVENUE JEAN JAURES - 94017", "stop_name": "MAIRIE - MARCHE"}, "geometry": {"type": "Point", "coordinates": [2.5096118909357625, 48.8140197332999]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a9e14c9cbde2bae3cd79bfc7be3cf6e8827597ab", "fields": {"departement": "75", "stop_lat": 48.86639813613503, "code_postal": "75102", "stop_lon": 2.3400064618451983, "coord": [48.86639813613503, 2.3400064618451983], "stop_id": 3747821, "stop_desc": "6-8 RUE DE LA BANQUE - 75102", "stop_name": "MAIRIE DU II"}, "geometry": {"type": "Point", "coordinates": [2.3400064618451983, 48.86639813613503]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b5cc97f7912a8db5f71e4e5c81af83871a17a353", "fields": {"departement": "94", "stop_lat": 48.812500911822575, "code_postal": "94017", "stop_lon": 2.5156354416957813, "coord": [48.812500911822575, 2.5156354416957813], "stop_id": 3743503, "stop_desc": "1 AVENUE MARX DORMOY - 94017", "stop_name": "RUE DU MONUMENT"}, "geometry": {"type": "Point", "coordinates": [2.5156354416957813, 48.812500911822575]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d1ba5f749e0fafa4a8b7706e3c5d06c4d1091228", "fields": {"departement": "94", "stop_lat": 48.804622389298956, "code_postal": "94017", "stop_lon": 2.546427109100898, "coord": [48.804622389298956, 2.546427109100898], "stop_id": 3743517, "stop_desc": "2 RUE JACQUES SOLOMON - 94017", "stop_name": "CLAUDE BERNARD"}, "geometry": {"type": "Point", "coordinates": [2.546427109100898, 48.804622389298956]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fb3525713dd2622c0973c6aaf8bdb60188313271", "fields": {"departement": "94", "stop_lat": 48.81025489203839, "code_postal": "94017", "stop_lon": 2.520934834992837, "coord": [48.81025489203839, 2.520934834992837], "stop_id": 3743502, "stop_desc": "38-40 AVENUE MARX DORMOY - 94017", "stop_name": "MARTELET"}, "geometry": {"type": "Point", "coordinates": [2.520934834992837, 48.81025489203839]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e091a351e0eab6581000f4d6bcc5da50710d2d88", "fields": {"departement": "75", "stop_lat": 48.8733809275033, "code_postal": "75109", "stop_lon": 2.3274859090230406, "coord": [48.8733809275033, 2.3274859090230406], "stop_id": 3747811, "stop_desc": "19 RUE AUBER - 75109", "stop_name": "HAVRE - HAUSSMANN"}, "geometry": {"type": "Point", "coordinates": [2.3274859090230406, 48.8733809275033]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a679af91fa779a8c15f11dbea569979443ebe16a", "fields": {"departement": "75", "stop_lat": 48.87219478360626, "code_postal": "75109", "stop_lon": 2.3300338573501684, "coord": [48.87219478360626, 2.3300338573501684], "stop_id": 3747814, "stop_desc": "8 RUE AUBER - 75109", "stop_name": "AUBER"}, "geometry": {"type": "Point", "coordinates": [2.3300338573501684, 48.87219478360626]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b080ea674e76c32e212c07c15f6767e17a1e6282", "fields": {"departement": "75", "stop_lat": 48.84752230352113, "code_postal": "75120", "stop_lon": 2.406677811879984, "coord": [48.84752230352113, 2.406677811879984], "stop_id": 3748082, "stop_desc": "73 COURS DE VINCENNES - 75120", "stop_name": "PYRENEES - DOCTEUR NETTER"}, "geometry": {"type": "Point", "coordinates": [2.406677811879984, 48.84752230352113]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9a67c29f4ddd26c2496ee377328578d8f50de1c4", "fields": {"departement": "75", "stop_lat": 48.8495085082438, "code_postal": "75111", "stop_lon": 2.389085700710158, "coord": [48.8495085082438, 2.389085700710158], "stop_id": 3748088, "stop_desc": "273 RUE DU FAUBOURG SAINT ANTOINE - 75111", "stop_name": "CLAUDE TILLIER"}, "geometry": {"type": "Point", "coordinates": [2.389085700710158, 48.8495085082438]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c529313e04c43d5169422c628f29b7d98ef6d6ef", "fields": {"departement": "94", "stop_lat": 48.83829408516734, "code_postal": "94067", "stop_lon": 2.417802780011613, "coord": [48.83829408516734, 2.417802780011613], "stop_id": 3748078, "stop_desc": "75-77 AVENUE DU GENERAL DE GAULLE - 94067", "stop_name": "JEAN MERMOZ"}, "geometry": {"type": "Point", "coordinates": [2.417802780011613, 48.83829408516734]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5d9ce3db3fcb902d29ab5f92acdbba1c8807752a", "fields": {"departement": "75", "stop_lat": 48.848976709956254, "code_postal": "75111", "stop_lon": 2.3925033129439575, "coord": [48.848976709956254, 2.3925033129439575], "stop_id": 3748087, "stop_desc": "305 RUE DU FAUBOURG SAINT ANTOINE - 75111", "stop_name": "CHEVREUL"}, "geometry": {"type": "Point", "coordinates": [2.3925033129439575, 48.848976709956254]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f58fe8f734800d9a0d02273a9c5527e5005afcb9", "fields": {"departement": "94", "stop_lat": 48.80654286951804, "code_postal": "94017", "stop_lon": 2.526704679451085, "coord": [48.80654286951804, 2.526704679451085], "stop_id": 3743465, "stop_desc": "FACE 87 AVENUE MARX DORMOY - 94017", "stop_name": "MUSEE DE LA RESISTANCE"}, "geometry": {"type": "Point", "coordinates": [2.526704679451085, 48.80654286951804]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a6dab21ee43600201b418702c44c2f05caff674a", "fields": {"departement": "94", "stop_lat": 48.8104575894782, "code_postal": "94017", "stop_lon": 2.5452258975293547, "coord": [48.8104575894782, 2.5452258975293547], "stop_id": 3743453, "stop_desc": "FACE 13 R DE L'ABREUVOIR - 94017", "stop_name": "ROND-POINT DU CHATEAU"}, "geometry": {"type": "Point", "coordinates": [2.5452258975293547, 48.8104575894782]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e081a759f3debe1fe6c6b4b531c7f23a44db0460", "fields": {"departement": "94", "stop_lat": 48.81022006804893, "code_postal": "94017", "stop_lon": 2.5422584065375267, "coord": [48.81022006804893, 2.5422584065375267], "stop_id": 3743456, "stop_desc": "FACE 55 R DU BOIS L'ABBE - 94017", "stop_name": "COLOMBE - HARDELET"}, "geometry": {"type": "Point", "coordinates": [2.5422584065375267, 48.81022006804893]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1cafcfbd564b54f63841c0ce39d8bedef63bd4ff", "fields": {"departement": "94", "stop_lat": 48.81114673079737, "code_postal": "94017", "stop_lon": 2.5364241396969507, "coord": [48.81114673079737, 2.5364241396969507], "stop_id": 3743459, "stop_desc": "FACE 22 AV DU 11 NOVEMBRE 1918 - 94017", "stop_name": "11 NOVEMBRE 1918"}, "geometry": {"type": "Point", "coordinates": [2.5364241396969507, 48.81114673079737]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3a36684179225c01f3701a51dfeb1b3f308c64e3", "fields": {"departement": "75", "stop_lat": 48.88506276042979, "code_postal": "75118", "stop_lon": 2.3591678300283867, "coord": [48.88506276042979, 2.3591678300283867], "stop_id": 3741095, "stop_desc": "5 RUE MARX DORMOY - 75118", "stop_name": "PLACE DE LA CHAPELLE"}, "geometry": {"type": "Point", "coordinates": [2.3591678300283867, 48.88506276042979]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cfd56646cf80ef72e0cac803be931705794ea2fa", "fields": {"departement": "94", "stop_lat": 48.8140197332999, "code_postal": "94017", "stop_lon": 2.5096118909357625, "coord": [48.8140197332999, 2.5096118909357625], "stop_id": 3743473, "stop_desc": "85 AVENUE JEAN JAURES - 94017", "stop_name": "MAIRIE - MARCHE"}, "geometry": {"type": "Point", "coordinates": [2.5096118909357625, 48.8140197332999]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b0b0bc5e0411354a96ea03b9aefac4f55689f0cc", "fields": {"departement": "94", "stop_lat": 48.806768958429736, "code_postal": "94019", "stop_lon": 2.5572397779127702, "coord": [48.806768958429736, 2.5572397779127702], "stop_id": 3743483, "stop_desc": "ROUTE DU PLESSIS TREVISE - 94019", "stop_name": "BOIS L'ABBE"}, "geometry": {"type": "Point", "coordinates": [2.5572397779127702, 48.806768958429736]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2b5f3ddb37281e41b435d776626468198fe318a8", "fields": {"departement": "94", "stop_lat": 48.81079518388607, "code_postal": "94017", "stop_lon": 2.5202699488603515, "coord": [48.81079518388607, 2.5202699488603515], "stop_id": 3743501, "stop_desc": "FACE 30 AVENUE MARX DORMOY - 94017", "stop_name": "MARTELET"}, "geometry": {"type": "Point", "coordinates": [2.5202699488603515, 48.81079518388607]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6fc9357378d8f3285c665045c29fc5b0820e6337", "fields": {"departement": "93", "stop_lat": 48.92590456243213, "code_postal": "93066", "stop_lon": 2.3765057854114358, "coord": [48.92590456243213, 2.3765057854114358], "stop_id": 3741093, "stop_desc": "RUE FRANCIS DE PRESSENSE - 93066", "stop_name": "GENEVE"}, "geometry": {"type": "Point", "coordinates": [2.3765057854114358, 48.92590456243213]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7b810a52bbb65cb16b55cad3fca67df93fd9cbb2", "fields": {"departement": "94", "stop_lat": 48.80636069242165, "code_postal": "94017", "stop_lon": 2.549441253048244, "coord": [48.80636069242165, 2.549441253048244], "stop_id": 3743487, "stop_desc": "PLACE RODIN - 94017", "stop_name": "RODIN"}, "geometry": {"type": "Point", "coordinates": [2.549441253048244, 48.80636069242165]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3d9976116b73341602555a8f680a048b02d03bc1", "fields": {"departement": "75", "stop_lat": 48.87294217395915, "code_postal": "75116", "stop_lon": 2.294242469445494, "coord": [48.87294217395915, 2.294242469445494], "stop_id": 3740316, "stop_desc": "2 AVENUE KLEBER - 75116", "stop_name": "CHARLES DE GAULLE - ETOILE - KLEBER"}, "geometry": {"type": "Point", "coordinates": [2.294242469445494, 48.87294217395915]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "51db1b754c001c2927df826fe7ba6716bf8eac0e", "fields": {"departement": "75", "stop_lat": 48.8728344242601, "code_postal": "75116", "stop_lon": 2.294515046174537, "coord": [48.8728344242601, 2.294515046174537], "stop_id": 3740317, "stop_desc": "1 AVENUE KLEBER - 75116", "stop_name": "CHARLES DE GAULLE - ETOILE - KLEBER"}, "geometry": {"type": "Point", "coordinates": [2.294515046174537, 48.8728344242601]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f5676c1fcfce25518e56cd1f9c4b8e93f7686718", "fields": {"departement": "75", "stop_lat": 48.88324867913404, "code_postal": "75110", "stop_lon": 2.3499415145297466, "coord": [48.88324867913404, 2.3499415145297466], "stop_id": 3740300, "stop_desc": "168 BOULEVARD DE MAGENTA - 75110", "stop_name": "BARBES - ROCHECHOUART"}, "geometry": {"type": "Point", "coordinates": [2.3499415145297466, 48.88324867913404]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "531138d4f19b4ad9585ab1219de63ae90628fb9d", "fields": {"departement": "75", "stop_lat": 48.88314082382094, "code_postal": "75117", "stop_lon": 2.3244861136794466, "coord": [48.88314082382094, 2.3244861136794466], "stop_id": 3740308, "stop_desc": "28 BOULEVARD DES BATIGNOLLES - 75117", "stop_name": "TURIN - BATIGNOLLES"}, "geometry": {"type": "Point", "coordinates": [2.3244861136794466, 48.88314082382094]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "833848b9c648dacbc0fbde5106e25d739bb6e719", "fields": {"departement": "75", "stop_lat": 48.875141086436834, "code_postal": "75110", "stop_lon": 2.3576921392329484, "coord": [48.875141086436834, 2.3576921392329484], "stop_id": 3740295, "stop_desc": "74 BOULEVARD DE STRASBOURG - 75110", "stop_name": "GARE DE L'EST"}, "geometry": {"type": "Point", "coordinates": [2.3576921392329484, 48.875141086436834]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a2ed6610a2ccf1c328868ad77281fe8347513800", "fields": {"departement": "75", "stop_lat": 48.869517082474346, "code_postal": "75116", "stop_lon": 2.2917658343907847, "coord": [48.869517082474346, 2.2917658343907847], "stop_id": 3740318, "stop_desc": "50 AVENUE KLEBER - 75116", "stop_name": "KLEBER - PAUL VALERY"}, "geometry": {"type": "Point", "coordinates": [2.2917658343907847, 48.869517082474346]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d6426d33f77dff20aa4dbc37180a93e1a9aa6143", "fields": {"departement": "75", "stop_lat": 48.87522201161175, "code_postal": "75110", "stop_lon": 2.3574605462529226, "coord": [48.87522201161175, 2.3574605462529226], "stop_id": 3740501, "stop_desc": "79 BOULEVARD DE STRASBOURG - 75110", "stop_name": "GARE DE L'EST"}, "geometry": {"type": "Point", "coordinates": [2.3574605462529226, 48.87522201161175]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0c372a0149246bc34b9aee8fa6c7ecf76e445966", "fields": {"departement": "75", "stop_lat": 48.883177013837376, "code_postal": "75109", "stop_lon": 2.3269798610834647, "coord": [48.883177013837376, 2.3269798610834647], "stop_id": 3740333, "stop_desc": "6 PLACE DE CLICHY - 75109", "stop_name": "PLACE DE CLICHY"}, "geometry": {"type": "Point", "coordinates": [2.3269798610834647, 48.883177013837376]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1aa0d4de629e64d7afb6748f163278762aa73179", "fields": {"departement": "91", "stop_lat": 48.67601347026757, "code_postal": "91589", "stop_lon": 2.3385576652217677, "coord": [48.67601347026757, 2.3385576652217677], "stop_id": 3732224, "stop_desc": "10 R VAN GOGH - 91589", "stop_name": "TOULOUSE-LAUTREC"}, "geometry": {"type": "Point", "coordinates": [2.3385576652217677, 48.67601347026757]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c2b039fb3275f027fd02ba0a2641b1d596bee5ec", "fields": {"departement": "75", "stop_lat": 48.88258429865896, "code_postal": "75118", "stop_lon": 2.337431832166389, "coord": [48.88258429865896, 2.337431832166389], "stop_id": 3740304, "stop_desc": "22 BOULEVARD DE CLICHY - 75118", "stop_name": "PIGALLE"}, "geometry": {"type": "Point", "coordinates": [2.337431832166389, 48.88258429865896]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "103a40b29e3ddfdd37b0a45b150c0790efa5ef30", "fields": {"departement": "75", "stop_lat": 48.87027649546204, "code_postal": "75108", "stop_lon": 2.3055932182690912, "coord": [48.87027649546204, 2.3055932182690912], "stop_id": 3740523, "stop_desc": "39 AVENUE DES CHAMPS ELYSEES - 75108", "stop_name": "LA BOETIE - CHAMPS-ELYSEES"}, "geometry": {"type": "Point", "coordinates": [2.3055932182690912, 48.87027649546204]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5195af3c9aebfd47b00c8f7af83f83851c6a2163", "fields": {"departement": "75", "stop_lat": 48.87602359181986, "code_postal": "75109", "stop_lon": 2.336505295756201, "coord": [48.87602359181986, 2.336505295756201], "stop_id": 3740512, "stop_desc": "31-33 RUE DE CHATEAUDUN - 75109", "stop_name": "SAINT-GEORGES - CHATEAUDUN"}, "geometry": {"type": "Point", "coordinates": [2.336505295756201, 48.87602359181986]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f90a15500cd49790c934651b320fea5ac5229312", "fields": {"departement": "75", "stop_lat": 48.87571760094273, "code_postal": "75109", "stop_lon": 2.3271857160925067, "coord": [48.87571760094273, 2.3271857160925067], "stop_id": 3740515, "stop_desc": "102 RUE SAINT-LAZARE - 75109", "stop_name": "GARE SAINT-LAZARE - BUDAPEST"}, "geometry": {"type": "Point", "coordinates": [2.3271857160925067, 48.87571760094273]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "84975124b91996cd67ebd8a54bfd4d55c198774b", "fields": {"departement": "75", "stop_lat": 48.87622131126687, "code_postal": "75109", "stop_lon": 2.3363690403507302, "coord": [48.87622131126687, 2.3363690403507302], "stop_id": 3740511, "stop_desc": "36 RUE DE CHATEAUDUN - 75109", "stop_name": "SAINT-GEORGES - CHATEAUDUN"}, "geometry": {"type": "Point", "coordinates": [2.3363690403507302, 48.87622131126687]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "64dea9e44be20de2a2a6cb7429b899216fa0067d", "fields": {"departement": "75", "stop_lat": 48.870743847499625, "code_postal": "75108", "stop_lon": 2.3056338043485445, "coord": [48.870743847499625, 2.3056338043485445], "stop_id": 3740522, "stop_desc": "128 RUE LA BOETIE - 75108", "stop_name": "LA BOETIE - CHAMPS-ELYSEES"}, "geometry": {"type": "Point", "coordinates": [2.3056338043485445, 48.870743847499625]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bd48b1124ee335e858372139fffa29a08800d69f", "fields": {"departement": "75", "stop_lat": 48.87411645667242, "code_postal": "75108", "stop_lon": 2.3163680133309223, "coord": [48.87411645667242, 2.3163680133309223], "stop_id": 3740520, "stop_desc": "20 BIS RUE LA BOETIE - 75108", "stop_name": "LA BOETIE - MIROMESNIL"}, "geometry": {"type": "Point", "coordinates": [2.3163680133309223, 48.87411645667242]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cb5ce59bd844e1519b65fcb3673cb8c6620611a4", "fields": {"departement": "75", "stop_lat": 48.874863096583965, "code_postal": "75108", "stop_lon": 2.3207958046274593, "coord": [48.874863096583965, 2.3207958046274593], "stop_id": 3740519, "stop_desc": "FACE 24 RUE DE LA PEPINIERE - 75108", "stop_name": "SAINT-AUGUSTIN"}, "geometry": {"type": "Point", "coordinates": [2.3207958046274593, 48.874863096583965]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7fae555de2b7eba20858140c2b78d42aa06044d4", "fields": {"departement": "75", "stop_lat": 48.87452141519527, "code_postal": "75110", "stop_lon": 2.354857934680523, "coord": [48.87452141519527, 2.354857934680523], "stop_id": 3740503, "stop_desc": "2 RUE DE PARADIS - 75110", "stop_name": "FAUBOURG SAINT-DENIS"}, "geometry": {"type": "Point", "coordinates": [2.354857934680523, 48.87452141519527]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7221d7e2ba73c6fdcfe23b4380e80b241d63ae1d", "fields": {"departement": "75", "stop_lat": 48.87465646998024, "code_postal": "75108", "stop_lon": 2.3213953633663262, "coord": [48.87465646998024, 2.3213953633663262], "stop_id": 3740518, "stop_desc": "108 BOULEVARD HAUSSMANN - 75108", "stop_name": "SAINT-AUGUSTIN"}, "geometry": {"type": "Point", "coordinates": [2.3213953633663262, 48.87465646998024]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3e0e53a49b624450369066e71354a9fc0e8d1679", "fields": {"departement": "75", "stop_lat": 48.87547465274991, "code_postal": "75110", "stop_lon": 2.350321113612174, "coord": [48.87547465274991, 2.350321113612174], "stop_id": 3740504, "stop_desc": "44 RUE DE PARADIS - 75110", "stop_name": "HAUTEVILLE"}, "geometry": {"type": "Point", "coordinates": [2.350321113612174, 48.87547465274991]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cdffb9a90739092a36e7c8b0e689f2a61e61db07", "fields": {"departement": "75", "stop_lat": 48.858792946162055, "code_postal": "75104", "stop_lon": 2.3584756956171975, "coord": [48.858792946162055, 2.3584756956171975], "stop_id": 3747830, "stop_desc": "FACE 48 RUE DES FRANCS BOURGEOIS - 75104", "stop_name": "RUE VIEILLE DU TEMPLE"}, "geometry": {"type": "Point", "coordinates": [2.3584756956171975, 48.858792946162055]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a0cac85f45c982277be3c84a47290aac3e1994e1", "fields": {"departement": "75", "stop_lat": 48.84563186778721, "code_postal": "75112", "stop_lon": 2.3728500974777273, "coord": [48.84563186778721, 2.3728500974777273], "stop_id": 3747837, "stop_desc": "FACE 21 BOULEVARD DIDEROT - 75112", "stop_name": "GARE DE LYON - DIDEROT"}, "geometry": {"type": "Point", "coordinates": [2.3728500974777273, 48.84563186778721]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e787beaa539244f895b51a42a03237c8c843e6d0", "fields": {"departement": "75", "stop_lat": 48.85385657226886, "code_postal": "75104", "stop_lon": 2.3687426889970005, "coord": [48.85385657226886, 2.3687426889970005], "stop_id": 3747834, "stop_desc": "7 BOULEVARD BEAUMARCHAIS - 75104", "stop_name": "BASTILLE - BEAUMARCHAIS"}, "geometry": {"type": "Point", "coordinates": [2.3687426889970005, 48.85385657226886]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "18e69818cf18a7693a57659cc05f7968844d58e5", "fields": {"departement": "75", "stop_lat": 48.85630216391385, "code_postal": "75104", "stop_lon": 2.3646717868697147, "coord": [48.85630216391385, 2.3646717868697147], "stop_id": 3747832, "stop_desc": "1 RUE DES FRANCS BOURGEOIS - 75104", "stop_name": "PLACE DES VOSGES"}, "geometry": {"type": "Point", "coordinates": [2.3646717868697147, 48.85630216391385]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7ea26871f921aa1b8684cb85fee1daeb8b882168", "fields": {"departement": "75", "stop_lat": 48.85536654929761, "code_postal": "75104", "stop_lon": 2.3684167310968207, "coord": [48.85536654929761, 2.3684167310968207], "stop_id": 3747833, "stop_desc": "25 BOULEVARD BEAUMARCHAIS - 75104", "stop_name": "PASTEUR - WAGNER"}, "geometry": {"type": "Point", "coordinates": [2.3684167310968207, 48.85536654929761]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e5277c08b4a428761bfa2d9833a9fe1892ae6e02", "fields": {"departement": "75", "stop_lat": 48.874062503585236, "code_postal": "75110", "stop_lon": 2.3583048250119405, "coord": [48.874062503585236, 2.3583048250119405], "stop_id": 3807566, "stop_desc": "119 RUE DU FAUBOURG SAINT-MARTIN - 75110", "stop_name": "MAGENTA - SAINT-MARTIN"}, "geometry": {"type": "Point", "coordinates": [2.3583048250119405, 48.874062503585236]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0fa36a90fb163ae86359d5759d5229af596a29cb", "fields": {"departement": "75", "stop_lat": 48.869488683314614, "code_postal": "75110", "stop_lon": 2.3536846061068, "coord": [48.869488683314614, 2.3536846061068], "stop_id": 3807569, "stop_desc": "12-14 BOULEVARD BONNE NOUVELLE - 75110", "stop_name": "PORTE SAINT-DENIS"}, "geometry": {"type": "Point", "coordinates": [2.3536846061068, 48.869488683314614]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4ba37f968280a1dcdd19681b7a4a6998ab9e2a6b", "fields": {"departement": "75", "stop_lat": 48.87084646432337, "code_postal": "75109", "stop_lon": 2.3474861878041238, "coord": [48.87084646432337, 2.3474861878041238], "stop_id": 3807570, "stop_desc": "4 BOULEVARD POISSONNIERE - 75109", "stop_name": "POISSONNIERE - BONNE NOUVELLE"}, "geometry": {"type": "Point", "coordinates": [2.3474861878041238, 48.87084646432337]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8548167535751d59003163d7dea7165587cf2dc5", "fields": {"departement": "75", "stop_lat": 48.87009195431089, "code_postal": "75102", "stop_lon": 2.339053002863979, "coord": [48.87009195431089, 2.339053002863979], "stop_id": 3807573, "stop_desc": "87 RUE DE RICHELIEU - 75102", "stop_name": "RICHELIEU - 4 SEPTEMBRE"}, "geometry": {"type": "Point", "coordinates": [2.339053002863979, 48.87009195431089]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "003418938d8d58de1c6b876d5aaa544e659ddc83", "fields": {"departement": "75", "stop_lat": 48.86917525585135, "code_postal": "75102", "stop_lon": 2.3381810732063615, "coord": [48.86917525585135, 2.3381810732063615], "stop_id": 3807574, "stop_desc": "7 RUE DU 4 SEPTEMBRE - 75102", "stop_name": "RICHELIEU - 4 SEPTEMBRE"}, "geometry": {"type": "Point", "coordinates": [2.3381810732063615, 48.86917525585135]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e24fd05d2496814cdb5cae05159d7366ab65fb4e", "fields": {"departement": "75", "stop_lat": 48.863504222036035, "code_postal": "75101", "stop_lon": 2.3355519423553974, "coord": [48.863504222036035, 2.3355519423553974], "stop_id": 3807576, "stop_desc": "PLACE ANDRE MALRAUX - 75101", "stop_name": "PALAIS ROYAL - COMEDIE FRANCAISE"}, "geometry": {"type": "Point", "coordinates": [2.3355519423553974, 48.863504222036035]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cdfb5df62789656274dd556dfbb1b36ec148958d", "fields": {"departement": "75", "stop_lat": 48.85328544303421, "code_postal": "75106", "stop_lon": 2.3325015699609604, "coord": [48.85328544303421, 2.3325015699609604], "stop_id": 3807582, "stop_desc": "54 RUE DE RENNES - 75106", "stop_name": "SAINT-GERMAIN-DES-PRES"}, "geometry": {"type": "Point", "coordinates": [2.3325015699609604, 48.85328544303421]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d362c9eca3935c88581172ba03f4d678b58813e8", "fields": {"departement": "75", "stop_lat": 48.84487942666907, "code_postal": "75115", "stop_lon": 2.311382336330597, "coord": [48.84487942666907, 2.311382336330597], "stop_id": 3807591, "stop_desc": "1 PLACE HENRI QUEUILLE - 75115", "stop_name": "SEVRES - LECOURBE"}, "geometry": {"type": "Point", "coordinates": [2.311382336330597, 48.84487942666907]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8e0af9294e70eb84f8bb6cfe751c6a7815eee629", "fields": {"departement": "75", "stop_lat": 48.83914826598913, "code_postal": "75115", "stop_lon": 2.2911933772060062, "coord": [48.83914826598913, 2.2911933772060062], "stop_id": 3807597, "stop_desc": "250 RUE LECOURBE - 75115", "stop_name": "CONVENTION - LECOURBE"}, "geometry": {"type": "Point", "coordinates": [2.2911933772060062, 48.83914826598913]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "02bc7b3fdfdaa9e3ea0fce793e99484290f6ccd7", "fields": {"departement": "75", "stop_lat": 48.836455270676616, "code_postal": "75115", "stop_lon": 2.2782480783935948, "coord": [48.836455270676616, 2.2782480783935948], "stop_id": 3807601, "stop_desc": "PLACE BALARD - 75115", "stop_name": "BALARD"}, "geometry": {"type": "Point", "coordinates": [2.2782480783935948, 48.836455270676616]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cdd398e2f94263084b0c0e40d70664399dbbae39", "fields": {"departement": "75", "stop_lat": 48.82981201095135, "code_postal": "75115", "stop_lon": 2.2754513391086495, "coord": [48.82981201095135, 2.2754513391086495], "stop_id": 3807603, "stop_desc": "FACE 29 RUE DU COLONEL PIERRE AVIA - 75115", "stop_name": "COLONEL PIERRE AVIA"}, "geometry": {"type": "Point", "coordinates": [2.2754513391086495, 48.82981201095135]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0454edb8f8168b5752e9e368a7992ee5cf2b6837", "fields": {"departement": "75", "stop_lat": 48.8289844058538, "code_postal": "75115", "stop_lon": 2.2740365876550577, "coord": [48.8289844058538, 2.2740365876550577], "stop_id": 3807604, "stop_desc": "36 R DU COLONEL AVIA - 75115", "stop_name": "FRERES VOISIN"}, "geometry": {"type": "Point", "coordinates": [2.2740365876550577, 48.8289844058538]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6c9f6609de650b65bf1ef32425ca7e87452634c5", "fields": {"departement": "75", "stop_lat": 48.828444674765805, "code_postal": "75115", "stop_lon": 2.2731524186663283, "coord": [48.828444674765805, 2.2731524186663283], "stop_id": 3807605, "stop_desc": "38 R DU COLONEL AVIA - 75115", "stop_name": "FRERES VOISIN"}, "geometry": {"type": "Point", "coordinates": [2.2731524186663283, 48.828444674765805]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5186caf6c0d923364977e5664cd2c298f52c2163", "fields": {"departement": "92", "stop_lat": 48.830667352064815, "code_postal": "92040", "stop_lon": 2.278445245919053, "coord": [48.830667352064815, 2.278445245919053], "stop_id": 3807607, "stop_desc": "23 RUE GUYNEMER - 92040", "stop_name": "SEVERINE"}, "geometry": {"type": "Point", "coordinates": [2.278445245919053, 48.830667352064815]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2245691d83c9a7cac3f1013379fe2448ae1fc359", "fields": {"departement": "75", "stop_lat": 48.837352823094804, "code_postal": "75115", "stop_lon": 2.2968996770026644, "coord": [48.837352823094804, 2.2968996770026644], "stop_id": 3807614, "stop_desc": "333-335 R DE VAUGIRARD - 75115", "stop_name": "CONVENTION - VAUGIRARD"}, "geometry": {"type": "Point", "coordinates": [2.2968996770026644, 48.837352823094804]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0635b811947e3e77278a66db0f9bdca4cb2e774c", "fields": {"departement": "75", "stop_lat": 48.867189049199695, "code_postal": "75102", "stop_lon": 2.336028622326613, "coord": [48.867189049199695, 2.336028622326613], "stop_id": 3807625, "stop_desc": "40-42 RUE SAINTE ANNE - 75102", "stop_name": "SAINTE-ANNE - PETITS CHAMPS"}, "geometry": {"type": "Point", "coordinates": [2.336028622326613, 48.867189049199695]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d4d2904e7af9f5f4fbea3ec38c2d1a2c7895a4ee", "fields": {"departement": "75", "stop_lat": 48.86637918616713, "code_postal": "75103", "stop_lon": 2.3527436565861946, "coord": [48.86637918616713, 2.3527436565861946], "stop_id": 3807629, "stop_desc": "FACE 107 BOULEVARD DE SEBASTOPOL - 75103", "stop_name": "REAUMUR - SEBASTOPOL"}, "geometry": {"type": "Point", "coordinates": [2.3527436565861946, 48.86637918616713]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "130967e6c0fe504c64ffaa6b75271f9c319e7d91", "fields": {"departement": "75", "stop_lat": 48.872337311493894, "code_postal": "75110", "stop_lon": 2.3560833742278997, "coord": [48.872337311493894, 2.3560833742278997], "stop_id": 3807631, "stop_desc": "32 BOULEVARD DE STRASBOURG - 75110", "stop_name": "CHATEAU D'EAU"}, "geometry": {"type": "Point", "coordinates": [2.3560833742278997, 48.872337311493894]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e80172a78577108d2ec64b0652539432c1c1a1df", "fields": {"departement": "75", "stop_lat": 48.88097388157959, "code_postal": "75110", "stop_lon": 2.357381029341471, "coord": [48.88097388157959, 2.357381029341471], "stop_id": 3811224, "stop_desc": "GARE ROUTIERE - 75110", "stop_name": "GARE DU NORD"}, "geometry": {"type": "Point", "coordinates": [2.357381029341471, 48.88097388157959]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "86692b888d9e454fe5f40db02de41c59081696d0", "fields": {"departement": "75", "stop_lat": 48.876697570163095, "code_postal": "75109", "stop_lon": 2.341355921470186, "coord": [48.876697570163095, 2.341355921470186], "stop_id": 3811228, "stop_desc": "9 RUE DE MAUBEUGE - 75109", "stop_name": "CHATEAUDUN - LAMARTINE"}, "geometry": {"type": "Point", "coordinates": [2.341355921470186, 48.876697570163095]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "189514aecd6352fb3ab3769a571a503a2e5b3605", "fields": {"departement": "75", "stop_lat": 48.87257239866247, "code_postal": "75109", "stop_lon": 2.333140144345554, "coord": [48.87257239866247, 2.333140144345554], "stop_id": 3811231, "stop_desc": "16 RUE HALEVY - 75109", "stop_name": "CHAUSSEE D'ANTIN"}, "geometry": {"type": "Point", "coordinates": [2.333140144345554, 48.87257239866247]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b7b6bf00c20cd0e4a9f532f981f1c0c80c20dc44", "fields": {"departement": "75", "stop_lat": 48.868408068744486, "code_postal": "75108", "stop_lon": 2.30935436315784, "coord": [48.868408068744486, 2.30935436315784], "stop_id": 3811243, "stop_desc": "3 ROND-POINT DES CHAMPS ELYSEES - 75108", "stop_name": "ROND-POINT DES CHAMPS-ELYSEES"}, "geometry": {"type": "Point", "coordinates": [2.30935436315784, 48.868408068744486]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9f3bdfc8ee071ca12853e1963c5ee94678386386", "fields": {"departement": "75", "stop_lat": 48.860306503340254, "code_postal": "75107", "stop_lon": 2.295819372686668, "coord": [48.860306503340254, 2.295819372686668], "stop_id": 3811250, "stop_desc": "4 AVENUE DE LA BOURDONNAIS - 75107", "stop_name": "TOUR EIFFEL"}, "geometry": {"type": "Point", "coordinates": [2.295819372686668, 48.860306503340254]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dca1f398307ec9dce26c8a88ecd5c0a05c84c4e0", "fields": {"departement": "75", "stop_lat": 48.85517509086005, "code_postal": "75107", "stop_lon": 2.297008388344208, "coord": [48.85517509086005, 2.297008388344208], "stop_id": 3811257, "stop_desc": "AVENUE JOSEPH BOUVARD - 75107", "stop_name": "CHAMP DE MARS - SUFFREN"}, "geometry": {"type": "Point", "coordinates": [2.297008388344208, 48.85517509086005]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "79e515f899df71136390fa9d96572c79c7f1c861", "fields": {"departement": "75", "stop_lat": 48.84545611633852, "code_postal": "75115", "stop_lon": 2.287701779268976, "coord": [48.84545611633852, 2.287701779268976], "stop_id": 3811266, "stop_desc": "76-78 RUE DE LOURMEL - 75115", "stop_name": "CHARLES MICHELS"}, "geometry": {"type": "Point", "coordinates": [2.287701779268976, 48.84545611633852]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "215a0c1695268dbab0023e95d1c131d8b8f3731d", "fields": {"departement": "75", "stop_lat": 48.836357751338085, "code_postal": "75115", "stop_lon": 2.2810256065344885, "coord": [48.836357751338085, 2.2810256065344885], "stop_id": 3811273, "stop_desc": "103-105 RUE LEBLANC - 75115", "stop_name": "BALARD - LECOURBE"}, "geometry": {"type": "Point", "coordinates": [2.2810256065344885, 48.836357751338085]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c098a11df19d382af442c525e511bde91ef5ba7c", "fields": {"departement": "75", "stop_lat": 48.839993251238624, "code_postal": "75115", "stop_lon": 2.2722531268653094, "coord": [48.839993251238624, 2.2722531268653094], "stop_id": 3811278, "stop_desc": "5-7 RUE LEBLANC - 75115", "stop_name": "HOPITAL EUROPEEN GEORGES POMPIDOU"}, "geometry": {"type": "Point", "coordinates": [2.2722531268653094, 48.839993251238624]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4721474898969f81cd90d1cf91acb0c9a7f66f28", "fields": {"departement": "75", "stop_lat": 48.87376777738523, "code_postal": "75109", "stop_lon": 2.336191962260811, "coord": [48.87376777738523, 2.336191962260811], "stop_id": 3811287, "stop_desc": "20 BIS RUE LA FAYETTE - 75109", "stop_name": "SAINT-GEORGES - PROVENCE"}, "geometry": {"type": "Point", "coordinates": [2.336191962260811, 48.87376777738523]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c9aa3d64d0e21bfb4d741131d9b1e98d3571509c", "fields": {"departement": "75", "stop_lat": 48.87443283305722, "code_postal": "75109", "stop_lon": 2.338767033058915, "coord": [48.87443283305722, 2.338767033058915], "stop_id": 3811288, "stop_desc": "36 RUE LA FAYETTE - 75109", "stop_name": "LE PELETIER"}, "geometry": {"type": "Point", "coordinates": [2.338767033058915, 48.87443283305722]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0680e75638ed1cf861994594cf9ba2f49203b2b2", "fields": {"departement": "75", "stop_lat": 48.85612555459301, "code_postal": "75106", "stop_lon": 2.339229577879742, "coord": [48.85612555459301, 2.339229577879742], "stop_id": 3812923, "stop_desc": "2 RUE GUENEGAUD - 75106", "stop_name": "PONT NEUF - QUAI DES GRANDS AUGUSTINS"}, "geometry": {"type": "Point", "coordinates": [2.339229577879742, 48.85612555459301]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2f34e806ff6e6078fbb0025fea10b38d4a936f11", "fields": {"departement": "75", "stop_lat": 48.85109205620137, "code_postal": "75107", "stop_lon": 2.325910342202172, "coord": [48.85109205620137, 2.325910342202172], "stop_id": 3812930, "stop_desc": "FACE 29 RUE DE SEVRES - 75107", "stop_name": "SEVRES - BABYLONE"}, "geometry": {"type": "Point", "coordinates": [2.325910342202172, 48.85109205620137]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2c61131a6cd2793d309b93cd983e87985d149c15", "fields": {"departement": "75", "stop_lat": 48.84396164200655, "code_postal": "75115", "stop_lon": 2.3069028723393976, "coord": [48.84396164200655, 2.3069028723393976], "stop_id": 3812936, "stop_desc": "54 RUE LECOURBE - 75115", "stop_name": "VOLONTAIRES - LECOURBE"}, "geometry": {"type": "Point", "coordinates": [2.3069028723393976, 48.84396164200655]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d014fce77ad9cfb309a2a16d23c8bf8d93bb85ed", "fields": {"departement": "75", "stop_lat": 48.8425042999016, "code_postal": "75115", "stop_lon": 2.3019609713401774, "coord": [48.8425042999016, 2.3019609713401774], "stop_id": 3812937, "stop_desc": "118-120 RUE LECOURBE - 75115", "stop_name": "CAMBRONNE - LECOURBE"}, "geometry": {"type": "Point", "coordinates": [2.3019609713401774, 48.8425042999016]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ce1c24871045f915f6e71eff599e4ffdead0b028", "fields": {"departement": "75", "stop_lat": 48.84373438260969, "code_postal": "75115", "stop_lon": 2.298092984850313, "coord": [48.84373438260969, 2.298092984850313], "stop_id": 3812940, "stop_desc": "45 RUE MADEMOISELLE - 75115", "stop_name": "PECLET"}, "geometry": {"type": "Point", "coordinates": [2.298092984850313, 48.84373438260969]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0c107123da85e8c76524a64885f916004ec0dc7e", "fields": {"departement": "75", "stop_lat": 48.8489498688076, "code_postal": "75115", "stop_lon": 2.2822648220421606, "coord": [48.8489498688076, 2.2822648220421606], "stop_id": 3812948, "stop_desc": "3 RUE LINOIS - 75115", "stop_name": "PONT DE GRENELLE - PLACE FERNAND FOREST"}, "geometry": {"type": "Point", "coordinates": [2.2822648220421606, 48.8489498688076]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "777d46fbe6870cfff948996a5193e0ed544c11bb", "fields": {"departement": "75", "stop_lat": 48.85104242404219, "code_postal": "75116", "stop_lon": 2.279048603558448, "coord": [48.85104242404219, 2.279048603558448], "stop_id": 3812950, "stop_desc": "FACE 5 RUE MAURICE BOURDET - 75116", "stop_name": "PONT DE GRENELLE - MAURICE BOURDET"}, "geometry": {"type": "Point", "coordinates": [2.279048603558448, 48.85104242404219]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b2b750444c5b1090731107345f39167a9e727acb", "fields": {"departement": "75", "stop_lat": 48.85351291192326, "code_postal": "75116", "stop_lon": 2.276907602136328, "coord": [48.85351291192326, 2.276907602136328], "stop_id": 3812954, "stop_desc": "88 RUE RAYNOUARD - 75116", "stop_name": "RAYNOUARD - RANELAGH"}, "geometry": {"type": "Point", "coordinates": [2.276907602136328, 48.85351291192326]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "48d8f3d8e4ecabc699eefc38dbef38df3ef019e0", "fields": {"departement": "75", "stop_lat": 48.85259344198745, "code_postal": "75106", "stop_lon": 2.3334277286474445, "coord": [48.85259344198745, 2.3334277286474445], "stop_id": 3812964, "stop_desc": "31-33 RUE DU FOUR - 75106", "stop_name": "BONAPARTE - SAINT-GERMAIN"}, "geometry": {"type": "Point", "coordinates": [2.3334277286474445, 48.85259344198745]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3d21a96ce7940b2ce6d164b57c25abc66c078bdf", "fields": {"departement": "75", "stop_lat": 48.857014888715405, "code_postal": "75104", "stop_lon": 2.347469838537296, "coord": [48.857014888715405, 2.347469838537296], "stop_id": 3812967, "stop_desc": "FACE 16 QUAI DE GESVRES - 75104", "stop_name": "CHATELET"}, "geometry": {"type": "Point", "coordinates": [2.347469838537296, 48.857014888715405]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2de414cc5d219d1965af7abcc5ba95bd1b8aab3f", "fields": {"departement": "75", "stop_lat": 48.84428002701616, "code_postal": "75106", "stop_lon": 2.333945782562057, "coord": [48.84428002701616, 2.333945782562057], "stop_id": 3812972, "stop_desc": "17 RUE AUGUSTE COMTE - 75106", "stop_name": "GUYNEMER - VAVIN"}, "geometry": {"type": "Point", "coordinates": [2.333945782562057, 48.84428002701616]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0da1e05deba2772e8b52d720e92ca47b154d234d", "fields": {"departement": "75", "stop_lat": 48.84730704447769, "code_postal": "75107", "stop_lon": 2.3164332779011825, "coord": [48.84730704447769, 2.3164332779011825], "stop_id": 3812978, "stop_desc": "65 BOULEVARD DES INVALIDES - 75107", "stop_name": "DUROC"}, "geometry": {"type": "Point", "coordinates": [2.3164332779011825, 48.84730704447769]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0ccdf553c16d93dd16fd7c949e724651736c1e81", "fields": {"departement": "75", "stop_lat": 48.847369889708794, "code_postal": "75107", "stop_lon": 2.3160519577082312, "coord": [48.847369889708794, 2.3160519577082312], "stop_id": 3812979, "stop_desc": "56 BOULEVARD DES INVALIDES - 75107", "stop_name": "DUROC"}, "geometry": {"type": "Point", "coordinates": [2.3160519577082312, 48.847369889708794]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8dd0209f07497bc695db0b1a926832e8de4e02f5", "fields": {"departement": "75", "stop_lat": 48.861203568891256, "code_postal": "75116", "stop_lon": 2.291255516571881, "coord": [48.861203568891256, 2.291255516571881], "stop_id": 3812996, "stop_desc": "AVENUE DES NATIONS UNIES - 75116", "stop_name": "VARSOVIE"}, "geometry": {"type": "Point", "coordinates": [2.291255516571881, 48.861203568891256]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7ad25c7923ab01014065350a886f2568ad43de6b", "fields": {"departement": "75", "stop_lat": 48.87036823280709, "code_postal": "75116", "stop_lon": 2.2852938208115736, "coord": [48.87036823280709, 2.2852938208115736], "stop_id": 3813004, "stop_desc": "86 AVENUE RAYMOND POINCARE - 75116", "stop_name": "VICTOR HUGO - POINCARE"}, "geometry": {"type": "Point", "coordinates": [2.2852938208115736, 48.87036823280709]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "98193223afb04c6b4145dee06c69b56b73897600", "fields": {"departement": "75", "stop_lat": 48.87194982895181, "code_postal": "75116", "stop_lon": 2.2848971358911285, "coord": [48.87194982895181, 2.2848971358911285], "stop_id": 3813006, "stop_desc": "114 AVENUE RAYMOND POINCARE - 75116", "stop_name": "FOCH"}, "geometry": {"type": "Point", "coordinates": [2.2848971358911285, 48.87194982895181]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7c79c4290bdab27ee9892ac6a9310d6be899edb5", "fields": {"departement": "75", "stop_lat": 48.87161720814327, "code_postal": "75116", "stop_lon": 2.284693111042786, "coord": [48.87161720814327, 2.284693111042786], "stop_id": 3813007, "stop_desc": "105 AVENUE RAYMOND POINCARE - 75116", "stop_name": "FOCH"}, "geometry": {"type": "Point", "coordinates": [2.284693111042786, 48.87161720814327]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9999a28b2c10d64c7ed82345d98a1d4443827e86", "fields": {"departement": "92", "stop_lat": 48.88381571699573, "code_postal": "92051", "stop_lon": 2.272102785565041, "coord": [48.88381571699573, 2.272102785565041], "stop_id": 3813017, "stop_desc": "FACE 103 AVENUE ACHILLE PERETTI OU DU ROULE - 92051", "stop_name": "EGLISE SAINT-PIERRE"}, "geometry": {"type": "Point", "coordinates": [2.272102785565041, 48.88381571699573]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9d36f2ca55cfbf84dd018cab760bfed80da42a0c", "fields": {"departement": "92", "stop_lat": 48.88361794572945, "code_postal": "92051", "stop_lon": 2.272007643706733, "coord": [48.88361794572945, 2.272007643706733], "stop_id": 3813018, "stop_desc": "97 AVENUE ACHILLE PERETTI OU DU ROULE - 92051", "stop_name": "EGLISE SAINT-PIERRE"}, "geometry": {"type": "Point", "coordinates": [2.272007643706733, 48.88361794572945]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d0eac85879df3d77384af1d913e964f735df4ee3", "fields": {"departement": "92", "stop_lat": 48.884523379198406, "code_postal": "92051", "stop_lon": 2.2679727810671557, "coord": [48.884523379198406, 2.2679727810671557], "stop_id": 3813020, "stop_desc": "137-145 AVENUE ACHILLE PERETTI OU DU ROULE - 92051", "stop_name": "SAINTE-FOY"}, "geometry": {"type": "Point", "coordinates": [2.2679727810671557, 48.884523379198406]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4d99a42bf6f3261c34d25c9cb29031d78849879a", "fields": {"departement": "92", "stop_lat": 48.887828209770674, "code_postal": "92051", "stop_lon": 2.2638526134825514, "coord": [48.887828209770674, 2.2638526134825514], "stop_id": 3813022, "stop_desc": "1 BOULEVARD DU CHATEAU - 92051", "stop_name": "CHATEAU"}, "geometry": {"type": "Point", "coordinates": [2.2638526134825514, 48.887828209770674]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "29478e525b70f19227c454afcaa9b105cb6aff63", "fields": {"departement": "92", "stop_lat": 48.89062411486402, "code_postal": "92051", "stop_lon": 2.2653069619419313, "coord": [48.89062411486402, 2.2653069619419313], "stop_id": 3813024, "stop_desc": "38 BOULEVARD DE LA SAUSSAYE - 92051", "stop_name": "PERRONET"}, "geometry": {"type": "Point", "coordinates": [2.2653069619419313, 48.89062411486402]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "db1d6cf01893f5f2c9970971c178e9ba5f67f3c3", "fields": {"departement": "92", "stop_lat": 48.89340569622934, "code_postal": "92051", "stop_lon": 2.2732765206429564, "coord": [48.89340569622934, 2.2732765206429564], "stop_id": 3813028, "stop_desc": "63 BOULEVARD VICTOR HUGO - 92051", "stop_name": "HOPITAL AMERICAIN"}, "geometry": {"type": "Point", "coordinates": [2.2732765206429564, 48.89340569622934]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9f72cf5dd1391d6426c02597efe80ad736153ce1", "fields": {"departement": "92", "stop_lat": 48.890572867952834, "code_postal": "92051", "stop_lon": 2.2698863882949065, "coord": [48.890572867952834, 2.2698863882949065], "stop_id": 3813029, "stop_desc": "39 BOULEVARD DU CHATEAU - 92051", "stop_name": "BINEAU - CHATEAU"}, "geometry": {"type": "Point", "coordinates": [2.2698863882949065, 48.890572867952834]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1becf0b3c993fc376bf120947409877584114f01", "fields": {"departement": "75", "stop_lat": 48.857186227056815, "code_postal": "75115", "stop_lon": 2.29134080107518, "coord": [48.857186227056815, 2.29134080107518], "stop_id": 3813034, "stop_desc": "FACE 1 AVENUE DE SUFFREN - 75115", "stop_name": "CHAMP DE MARS"}, "geometry": {"type": "Point", "coordinates": [2.29134080107518, 48.857186227056815]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dfb26f97818afe109bb1e75b7e12cc27e91ed2b8", "fields": {"departement": "75", "stop_lat": 48.846041587705, "code_postal": "75105", "stop_lon": 2.3402777279421545, "coord": [48.846041587705, 2.3402777279421545], "stop_id": 3813043, "stop_desc": "75 BOULEVARD SAINT-MICHEL - 75105", "stop_name": "LUXEMBOURG"}, "geometry": {"type": "Point", "coordinates": [2.3402777279421545, 48.846041587705]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e332dd7c1a72d3743596b8ee87e381b2baedcb81", "fields": {"departement": "75", "stop_lat": 48.85235639595524, "code_postal": "75107", "stop_lon": 2.308654809644413, "coord": [48.85235639595524, 2.308654809644413], "stop_id": 3813052, "stop_desc": "14 AVENUE DUQUESNE - 75107", "stop_name": "DUQUESNE - LOWENDAL"}, "geometry": {"type": "Point", "coordinates": [2.308654809644413, 48.85235639595524]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "50d8fc6f4c7a60bb531ee20643e7b1fdc26ab53d", "fields": {"departement": "75", "stop_lat": 48.851164321077135, "code_postal": "75105", "stop_lon": 2.3437099323238684, "coord": [48.851164321077135, 2.3437099323238684], "stop_id": 3813068, "stop_desc": "BD SAINT-GERMAIN - 75105", "stop_name": "CLUNY"}, "geometry": {"type": "Point", "coordinates": [2.3437099323238684, 48.851164321077135]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a9523cf4689c3dd2c332c67d95356c87b9275314", "fields": {"departement": "75", "stop_lat": 48.8483376180706, "code_postal": "75112", "stop_lon": 2.3710952409746535, "coord": [48.8483376180706, 2.3710952409746535], "stop_id": 3813080, "stop_desc": "41 RUE DE LYON - 75112", "stop_name": "LYON - LEDRU ROLLIN"}, "geometry": {"type": "Point", "coordinates": [2.3710952409746535, 48.8483376180706]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5f8c685a4486eb55d1b7bda2732d29a36f492f21", "fields": {"departement": "75", "stop_lat": 48.84009247169696, "code_postal": "75112", "stop_lon": 2.3819688617960826, "coord": [48.84009247169696, 2.3819688617960826], "stop_id": 3813090, "stop_desc": "15 BOULEVARD DE BERCY - 75112", "stop_name": "GARE DE BERCY"}, "geometry": {"type": "Point", "coordinates": [2.3819688617960826, 48.84009247169696]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dd4d6425da090d972c1e16039be21496555bf871", "fields": {"departement": "75", "stop_lat": 48.835135751614494, "code_postal": "75112", "stop_lon": 2.3928153218855033, "coord": [48.835135751614494, 2.3928153218855033], "stop_id": 3813095, "stop_desc": "302 - 304 RUE DE CHARENTON - 75112", "stop_name": "NICOLAI"}, "geometry": {"type": "Point", "coordinates": [2.3928153218855033, 48.835135751614494]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f62aec82f0e1265ccb19375c82390d415d1eb9ab", "fields": {"departement": "75", "stop_lat": 48.83213161645041, "code_postal": "75112", "stop_lon": 2.397495211634291, "coord": [48.83213161645041, 2.397495211634291], "stop_id": 3813098, "stop_desc": "10 AVENUE DU GENERAL MICHEL BIZOT - 75112", "stop_name": "PORTE DE CHARENTON"}, "geometry": {"type": "Point", "coordinates": [2.397495211634291, 48.83213161645041]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "88e7c9a1074bad3ca0999cbbbd010a5246f21c0a", "fields": {"departement": "75", "stop_lat": 48.835186646328395, "code_postal": "75112", "stop_lon": 2.398969122879859, "coord": [48.835186646328395, 2.398969122879859], "stop_id": 3813101, "stop_desc": "FACE 52-54 RUE DE WATTIGNIES - 75112", "stop_name": "WATTIGNIES - GRAVELLE"}, "geometry": {"type": "Point", "coordinates": [2.398969122879859, 48.835186646328395]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "623513c74ee7701b61864b6d20912e290279ac8f", "fields": {"departement": "75", "stop_lat": 48.84898813585947, "code_postal": "75105", "stop_lon": 2.3554484654153858, "coord": [48.84898813585947, 2.3554484654153858], "stop_id": 3813104, "stop_desc": "6 RUE DES FOSSES SAINT-BERNARD - 75105", "stop_name": "INSTITUT DU MONDE ARABE"}, "geometry": {"type": "Point", "coordinates": [2.3554484654153858, 48.84898813585947]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "94d926c4fa777c4ea7570927006683f32d558a84", "fields": {"departement": "75", "stop_lat": 48.84202305182629, "code_postal": "75115", "stop_lon": 2.320697292153351, "coord": [48.84202305182629, 2.320697292153351], "stop_id": 3813113, "stop_desc": "PLACE RAOUL DAUTRY - 75115", "stop_name": "GARE MONTPARNASSE"}, "geometry": {"type": "Point", "coordinates": [2.320697292153351, 48.84202305182629]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c61c70a869f5175a4a275bc59394a340029d00c5", "fields": {"departement": "75", "stop_lat": 48.849616522707365, "code_postal": "75107", "stop_lon": 2.314743685797424, "coord": [48.849616522707365, 2.314743685797424], "stop_id": 3813121, "stop_desc": "48 BOULEVARD DES INVALIDES - 75107", "stop_name": "OUDINOT"}, "geometry": {"type": "Point", "coordinates": [2.314743685797424, 48.849616522707365]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9831421153fea95124a7e81cd85c9ba696213bc6", "fields": {"departement": "75", "stop_lat": 48.852186655965916, "code_postal": "75107", "stop_lon": 2.3132853436335314, "coord": [48.852186655965916, 2.3132853436335314], "stop_id": 3813123, "stop_desc": "18 AVENUE DE VILLARS - 75107", "stop_name": "SAINT-FRANCOIS XAVIER"}, "geometry": {"type": "Point", "coordinates": [2.3132853436335314, 48.852186655965916]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "92bd9a8a3086f912923844bbee8f0a86ef93db17", "fields": {"departement": "75", "stop_lat": 48.853444477702595, "code_postal": "75107", "stop_lon": 2.3112691100642078, "coord": [48.853444477702595, 2.3112691100642078], "stop_id": 3813125, "stop_desc": "1 AVENUE DE TOURVILLE - 75107", "stop_name": "VAUBAN - HOTEL DES INVALIDES"}, "geometry": {"type": "Point", "coordinates": [2.3112691100642078, 48.853444477702595]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8126fd2202e9e470ee5b6251878a9d6664abbde0", "fields": {"departement": "75", "stop_lat": 48.85430600663912, "code_postal": "75107", "stop_lon": 2.305997932351291, "coord": [48.85430600663912, 2.305997932351291], "stop_id": 3813126, "stop_desc": "5 PL DE L'ECOLE MILITAIRE - 75107", "stop_name": "ECOLE MILITAIRE"}, "geometry": {"type": "Point", "coordinates": [2.305997932351291, 48.85430600663912]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "959bfab82caffb7fc1eef7423884ab4c74d0d17e", "fields": {"departement": "75", "stop_lat": 48.856876049163155, "code_postal": "75107", "stop_lon": 2.3046343661421838, "coord": [48.856876049163155, 2.3046343661421838], "stop_id": 3813128, "stop_desc": "51 AVENUE BOSQUET - 75107", "stop_name": "BOSQUET - GRENELLE"}, "geometry": {"type": "Point", "coordinates": [2.3046343661421838, 48.856876049163155]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fe2892b10743c3914575aa9f2f2a42e18ac46ff7", "fields": {"departement": "75", "stop_lat": 48.86158471268089, "code_postal": "75107", "stop_lon": 2.3020297149717073, "coord": [48.86158471268089, 2.3020297149717073], "stop_id": 3813133, "stop_desc": "2 AVENUE BOSQUET - 75107", "stop_name": "BOSQUET - RAPP"}, "geometry": {"type": "Point", "coordinates": [2.3020297149717073, 48.86158471268089]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e157eb9676932018857bdcfa877017a8f43e9db2", "fields": {"departement": "75", "stop_lat": 48.86492756261513, "code_postal": "75108", "stop_lon": 2.300515370213525, "coord": [48.86492756261513, 2.300515370213525], "stop_id": 3813134, "stop_desc": "2-4 AVENUE DU PRESIDENT WILSON - 75108", "stop_name": "ALMA - MARCEAU"}, "geometry": {"type": "Point", "coordinates": [2.300515370213525, 48.86492756261513]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9b483e42f03482a3a0045b7b019ea72cbddaa065", "fields": {"departement": "75", "stop_lat": 48.873086554625615, "code_postal": "75108", "stop_lon": 2.295890906109411, "coord": [48.873086554625615, 2.295890906109411], "stop_id": 3813137, "stop_desc": "84 AVENUE MARCEAU - 75108", "stop_name": "CHARLES DE GAULLE - ETOILE - MARCEAU"}, "geometry": {"type": "Point", "coordinates": [2.295890906109411, 48.873086554625615]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8fcdfcf391fb76cb3ba12df137f482b0c5992a3b", "fields": {"departement": "75", "stop_lat": 48.87458713841152, "code_postal": "75117", "stop_lon": 2.295044969628724, "coord": [48.87458713841152, 2.295044969628724], "stop_id": 3813138, "stop_desc": "2 AVENUE MAC MAHON - 75117", "stop_name": "CHARLES DE GAULLE - ETOILE - MAC MAHON"}, "geometry": {"type": "Point", "coordinates": [2.295044969628724, 48.87458713841152]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2e9b147af9da64c5d31790d648ebfe76b531e8dc", "fields": {"departement": "75", "stop_lat": 48.883889646623466, "code_postal": "75117", "stop_lon": 2.297026976722162, "coord": [48.883889646623466, 2.297026976722162], "stop_id": 3813144, "stop_desc": "96 AVENUE NIEL - 75117", "stop_name": "PEREIRE - MARECHAL JUIN"}, "geometry": {"type": "Point", "coordinates": [2.297026976722162, 48.883889646623466]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fb4c2958d3dc95023697c46acbd0f2c55594772c", "fields": {"departement": "75", "stop_lat": 48.86705711802949, "code_postal": "75116", "stop_lon": 2.299083462320914, "coord": [48.86705711802949, 2.299083462320914], "stop_id": 3813153, "stop_desc": "27 AVENUE MARCEAU - 75116", "stop_name": "MARCEAU - PIERRE 1ER DE SERBIE - PLACE DE BEYROUTH"}, "geometry": {"type": "Point", "coordinates": [2.299083462320914, 48.86705711802949]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9ec884b8460612d7af5a124edb262beb0888bc48", "fields": {"departement": "75", "stop_lat": 48.83826701051644, "code_postal": "75115", "stop_lon": 2.2711116049412285, "coord": [48.83826701051644, 2.2711116049412285], "stop_id": 3813157, "stop_desc": "1 BOULEVARD DU GENERAL MARTIAL VALLIN - 75115", "stop_name": "PONT DU GARIGLIANO - HOPITAL EUROPEEN GEORGES POMPIDOU"}, "geometry": {"type": "Point", "coordinates": [2.2711116049412285, 48.83826701051644]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cef71730939edb5073bc4e73c8c8587cd8c0875c", "fields": {"departement": "75", "stop_lat": 48.83817802656563, "code_postal": "75116", "stop_lon": 2.257864060448581, "coord": [48.83817802656563, 2.257864060448581], "stop_id": 3813163, "stop_desc": "232 AVENUE DE VERSAILLES - 75116", "stop_name": "PORTE DE SAINT-CLOUD - MURAT"}, "geometry": {"type": "Point", "coordinates": [2.257864060448581, 48.83817802656563]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e3e0b286aac39fa591fa84a49084b4e801bbe157", "fields": {"departement": "75", "stop_lat": 48.841609984324684, "code_postal": "75116", "stop_lon": 2.255952544627221, "coord": [48.841609984324684, 2.255952544627221], "stop_id": 3813168, "stop_desc": "62 BOULEVARD MURAT - 75116", "stop_name": "LYCEE CLAUDE BERNARD"}, "geometry": {"type": "Point", "coordinates": [2.255952544627221, 48.841609984324684]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "067e0de773c8b404ec7759c58496b2ded9c3a3f9", "fields": {"departement": "75", "stop_lat": 48.85686705664624, "code_postal": "75116", "stop_lon": 2.2641279748790972, "coord": [48.85686705664624, 2.2641279748790972], "stop_id": 3813178, "stop_desc": "44 BOULEVARD SUCHET - 75116", "stop_name": "PORTE DE PASSY"}, "geometry": {"type": "Point", "coordinates": [2.2641279748790972, 48.85686705664624]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2fff21bcaf5f4f15a2b0198bb4e94ec5f591ae4a", "fields": {"departement": "75", "stop_lat": 48.86324192615674, "code_postal": "75116", "stop_lon": 2.2688321458097525, "coord": [48.86324192615674, 2.2688321458097525], "stop_id": 3813181, "stop_desc": "77 BOULEVARD LANNES - 75116", "stop_name": "PORTE DE LA MUETTE"}, "geometry": {"type": "Point", "coordinates": [2.2688321458097525, 48.86324192615674]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d866aca235ebecc18b00fef322c84c2c7743a216", "fields": {"departement": "75", "stop_lat": 48.863466508821226, "code_postal": "75116", "stop_lon": 2.2686547646745057, "coord": [48.863466508821226, 2.2686547646745057], "stop_id": 3813182, "stop_desc": "FACE 75 BOULEVARD LANNES - 75116", "stop_name": "PORTE DE LA MUETTE"}, "geometry": {"type": "Point", "coordinates": [2.2686547646745057, 48.863466508821226]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f0d1737145765d83479de7dcc165734a0d76b1eb", "fields": {"departement": "75", "stop_lat": 48.86628995211967, "code_postal": "75116", "stop_lon": 2.271143974577282, "coord": [48.86628995211967, 2.271143974577282], "stop_id": 3813184, "stop_desc": "FACE 43 BOULEVARD LANNES - 75116", "stop_name": "DUFRENOY"}, "geometry": {"type": "Point", "coordinates": [2.271143974577282, 48.86628995211967]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d4c7a5aeaa9df5356d893c46ce135acac5449b53", "fields": {"departement": "75", "stop_lat": 48.869158237208794, "code_postal": "75116", "stop_lon": 2.273565283454568, "coord": [48.869158237208794, 2.273565283454568], "stop_id": 3813186, "stop_desc": "FACE 15 BOULEVARD LANNES - 75116", "stop_name": "LONGCHAMP"}, "geometry": {"type": "Point", "coordinates": [2.273565283454568, 48.869158237208794]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d09e0aefc667ed277f6074c977548ede4901b4f4", "fields": {"departement": "75", "stop_lat": 48.883328927509616, "code_postal": "75117", "stop_lon": 2.2877064578922117, "coord": [48.883328927509616, 2.2877064578922117], "stop_id": 3813199, "stop_desc": "28 BOULEVARD GOUVION-SAINT-CYR - 75117", "stop_name": "PORTE DE VILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.2877064578922117, 48.883328927509616]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e56b8a74895778f19fd99558555831d4da2c1756", "fields": {"departement": "75", "stop_lat": 48.88576673797391, "code_postal": "75117", "stop_lon": 2.2935095562752412, "coord": [48.88576673797391, 2.2935095562752412], "stop_id": 3813201, "stop_desc": "FACE 99 BOULEVARD BERTHIER - 75117", "stop_name": "PORTE DE CHAMPERRET"}, "geometry": {"type": "Point", "coordinates": [2.2935095562752412, 48.88576673797391]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "89de9106574b176565b1d2c4c97ecc93732893d9", "fields": {"departement": "75", "stop_lat": 48.86357254303908, "code_postal": "75120", "stop_lon": 2.408933297088454, "coord": [48.86357254303908, 2.408933297088454], "stop_id": 3813316, "stop_desc": "162-168 BD DAVOUT - 75120", "stop_name": "PORTE DE BAGNOLET"}, "geometry": {"type": "Point", "coordinates": [2.408933297088454, 48.86357254303908]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c3f2e129f9de82ceb8207670dda1750a41003f05", "fields": {"departement": "75", "stop_lat": 48.86734733439899, "code_postal": "75120", "stop_lon": 2.408775040084198, "coord": [48.86734733439899, 2.408775040084198], "stop_id": 3813319, "stop_desc": "51 BD MORTIER - 75120", "stop_name": "SEVERINE"}, "geometry": {"type": "Point", "coordinates": [2.408775040084198, 48.86734733439899]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aec4aa82706855492b2c2c850024e2a1ab2e5237", "fields": {"departement": "93", "stop_lat": 48.89397361760397, "code_postal": "93055", "stop_lon": 2.397921473378691, "coord": [48.89397361760397, 2.397921473378691], "stop_id": 3813328, "stop_desc": "7-15 R DELPHINE SEYRIG - 93055", "stop_name": "DELPHINE SEYRIG"}, "geometry": {"type": "Point", "coordinates": [2.397921473378691, 48.89397361760397]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "faafa24f9475aee0ec96f54fe3c8d36a77f787ff", "fields": {"departement": "93", "stop_lat": 48.893928771873036, "code_postal": "93055", "stop_lon": 2.3977442319891407, "coord": [48.893928771873036, 2.3977442319891407], "stop_id": 3813329, "stop_desc": "FACE 7-15 R DELPHINE SEYRIG - 93055", "stop_name": "DELPHINE SEYRIG"}, "geometry": {"type": "Point", "coordinates": [2.3977442319891407, 48.893928771873036]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "875f1a676c18d621d887119fac877869e2dfcaac", "fields": {"departement": "75", "stop_lat": 48.89897817753844, "code_postal": "75119", "stop_lon": 2.380179455559747, "coord": [48.89897817753844, 2.380179455559747], "stop_id": 3813332, "stop_desc": "FACE 137 BD MACDONALD - 75119", "stop_name": "CANAL SAINT DENIS"}, "geometry": {"type": "Point", "coordinates": [2.380179455559747, 48.89897817753844]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "775f82d22017d60d82d350db01f1516858792f28", "fields": {"departement": "75", "stop_lat": 48.8987623733382, "code_postal": "75119", "stop_lon": 2.380492794030591, "coord": [48.8987623733382, 2.380492794030591], "stop_id": 3813333, "stop_desc": "137 BD MACDONALD - 75119", "stop_name": "CANAL SAINT DENIS"}, "geometry": {"type": "Point", "coordinates": [2.380492794030591, 48.8987623733382]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "30e51c625d737fca62e5b911f00ecc193d24a02b", "fields": {"departement": "75", "stop_lat": 48.8985323439321, "code_postal": "75118", "stop_lon": 2.368919778586098, "coord": [48.8985323439321, 2.368919778586098], "stop_id": 3813337, "stop_desc": "1-3 BD NEY - 75118", "stop_name": "PORTE D'AUBERVILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.368919778586098, 48.8985323439321]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "157bb31d6ce73b86793bc67241371b11e5a06e2c", "fields": {"departement": "75", "stop_lat": 48.8379613500494, "code_postal": "75115", "stop_lon": 2.270962227260772, "coord": [48.8379613500494, 2.270962227260772], "stop_id": 3813500, "stop_desc": "BD DU GENERAL MARTIAL VALIN - 75115", "stop_name": "PONT GARIGLIANO - HOPITAL EUROPEEN GEORGE POMPIDOU"}, "geometry": {"type": "Point", "coordinates": [2.270962227260772, 48.8379613500494]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b9470e8f20b29bac640b34a855557698244ba79d", "fields": {"departement": "75", "stop_lat": 48.835718624568095, "code_postal": "75115", "stop_lon": 2.278929647248125, "coord": [48.835718624568095, 2.278929647248125], "stop_id": 3813502, "stop_desc": "1 TER BD VICTOR - 75115", "stop_name": "BALARD"}, "geometry": {"type": "Point", "coordinates": [2.278929647248125, 48.835718624568095]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b84a6d003dbc6c34d0dc8fcb96b5580483500ad9", "fields": {"departement": "75", "stop_lat": 48.83402248922237, "code_postal": "75115", "stop_lon": 2.2843227679990963, "coord": [48.83402248922237, 2.2843227679990963], "stop_id": 3813504, "stop_desc": "19 BOULEVARD VICTOR - 75115", "stop_name": "DESNOUETTES"}, "geometry": {"type": "Point", "coordinates": [2.2843227679990963, 48.83402248922237]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2eb793914d73d13213c8b1b119b3620798758c7b", "fields": {"departement": "75", "stop_lat": 48.82946154305645, "code_postal": "75115", "stop_lon": 2.296415746251944, "coord": [48.82946154305645, 2.296415746251944], "stop_id": 3813508, "stop_desc": "87 BOULEVARD LEFEBVRE - 75115", "stop_name": "GEORGES BRASSENS"}, "geometry": {"type": "Point", "coordinates": [2.296415746251944, 48.82946154305645]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "33ea97aeeab4c7d1b9ff33367d8a4cb4e806e06e", "fields": {"departement": "75", "stop_lat": 48.83020701227299, "code_postal": "75115", "stop_lon": 2.2949721630550806, "coord": [48.83020701227299, 2.2949721630550806], "stop_id": 3813509, "stop_desc": "58 BOULEVARD LEFEBVRE - 75115", "stop_name": "GEORGES BRASSENS"}, "geometry": {"type": "Point", "coordinates": [2.2949721630550806, 48.83020701227299]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "34c14dd461707313f267ca4851813d5c06231c6f", "fields": {"departement": "75", "stop_lat": 48.827271571354885, "code_postal": "75114", "stop_lon": 2.306422586810065, "coord": [48.827271571354885, 2.306422586810065], "stop_id": 3813512, "stop_desc": "17 BOULEVARD BRUNE - 75114", "stop_name": "PORTE DE VANVES"}, "geometry": {"type": "Point", "coordinates": [2.306422586810065, 48.827271571354885]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "88e3ee1fc91f99c7c258ebf0d39da8e5e1f4bf0e", "fields": {"departement": "75", "stop_lat": 48.824847497722445, "code_postal": "75114", "stop_lon": 2.319001300339279, "coord": [48.824847497722445, 2.319001300339279], "stop_id": 3813517, "stop_desc": "FACE 139 BOULEVARD BRUNE - 75114", "stop_name": "JEAN MOULIN"}, "geometry": {"type": "Point", "coordinates": [2.319001300339279, 48.824847497722445]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8615e5617c9aeab1a93ba01101b58fdd574b19ab", "fields": {"departement": "75", "stop_lat": 48.821217828313955, "code_postal": "75114", "stop_lon": 2.3338928087848245, "coord": [48.821217828313955, 2.3338928087848245], "stop_id": 3813520, "stop_desc": "FACE 38 BOULEVARD JOURDAN - 75114", "stop_name": "MONTSOURIS"}, "geometry": {"type": "Point", "coordinates": [2.3338928087848245, 48.821217828313955]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "af3ba33d4db10ccbd04d8dfa6a8f7213d853bf99", "fields": {"departement": "75", "stop_lat": 48.85351291192326, "code_postal": "75116", "stop_lon": 2.276907602136328, "coord": [48.85351291192326, 2.276907602136328], "stop_id": 4726715, "stop_desc": "88 RUE RAYNOUARD - 75116", "stop_name": "RAYNOUARD - RANELAGH"}, "geometry": {"type": "Point", "coordinates": [2.276907602136328, 48.85351291192326]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "06fc19b3a5fee7cf38d57713ce38a52b8423b815", "fields": {"departement": "75", "stop_lat": 48.83959225019507, "code_postal": "75115", "stop_lon": 2.301677023842893, "coord": [48.83959225019507, 2.301677023842893], "stop_id": 4726724, "stop_desc": "FACE 252 RUE DE VAUGIRARD - 75115", "stop_name": "VAUGIRARD - FAVORITES"}, "geometry": {"type": "Point", "coordinates": [2.301677023842893, 48.83959225019507]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "909a42b5e72fb3868abfaf85ce4a46fc8dacd65b", "fields": {"departement": "75", "stop_lat": 48.84038395608434, "code_postal": "75115", "stop_lon": 2.304467729103389, "coord": [48.84038395608434, 2.304467729103389], "stop_id": 4726725, "stop_desc": "249 RUE DE VAUGIRARD - 75115", "stop_name": "CAMBRONNE - VAUGIRARD"}, "geometry": {"type": "Point", "coordinates": [2.304467729103389, 48.84038395608434]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "13e3feeeddef4758ef0eda9f0c648706f0aacfea", "fields": {"departement": "75", "stop_lat": 48.84153536388469, "code_postal": "75115", "stop_lon": 2.3083339871069257, "coord": [48.84153536388469, 2.3083339871069257], "stop_id": 4726726, "stop_desc": "225-223 RUE DE VAUGIRARD - 75115", "stop_name": "VOLONTAIRES - VAUGIRARD"}, "geometry": {"type": "Point", "coordinates": [2.3083339871069257, 48.84153536388469]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "df6eefed7b73f8bb536cdb79ab7e1cfedaa4a83f", "fields": {"departement": "75", "stop_lat": 48.8464261185428, "code_postal": "75115", "stop_lon": 2.315589350810912, "coord": [48.8464261185428, 2.315589350810912], "stop_id": 4726729, "stop_desc": "147 BIS RUE DE SEVRES - 75115", "stop_name": "HOPITAL DES ENFANTS MALADES"}, "geometry": {"type": "Point", "coordinates": [2.315589350810912, 48.8464261185428]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7d67db88b4ad8380b14d91e1803cd099ab99d9cf", "fields": {"departement": "75", "stop_lat": 48.84992345516465, "code_postal": "75106", "stop_lon": 2.323718043780384, "coord": [48.84992345516465, 2.323718043780384], "stop_id": 4726731, "stop_desc": "83 RUE DE SEVRES - 75106", "stop_name": "BAC - SAINT-PLACIDE"}, "geometry": {"type": "Point", "coordinates": [2.323718043780384, 48.84992345516465]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ca9d63fbd683635412b879bcd89be54fe7ac452a", "fields": {"departement": "75", "stop_lat": 48.85376186529585, "code_postal": "75106", "stop_lon": 2.3386029974652143, "coord": [48.85376186529585, 2.3386029974652143], "stop_id": 4726736, "stop_desc": "53 RUE DAUPHINE - 75106", "stop_name": "SAINT-ANDRE DES ARTS"}, "geometry": {"type": "Point", "coordinates": [2.3386029974652143, 48.85376186529585]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "08b16f3c92b8fccef30ba84902e1b8b904821487", "fields": {"departement": "75", "stop_lat": 48.858237481253475, "code_postal": "75101", "stop_lon": 2.3429344426817336, "coord": [48.858237481253475, 2.3429344426817336], "stop_id": 4726738, "stop_desc": "FACE 22 QUAI DE LA MEGISSERIE - 75101", "stop_name": "PONT NEUF - QUAI DU LOUVRE"}, "geometry": {"type": "Point", "coordinates": [2.3429344426817336, 48.858237481253475]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "19a337f4590b0c52669741150eb7a2d55ba4e98d", "fields": {"departement": "75", "stop_lat": 48.88594618449054, "code_postal": "75117", "stop_lon": 2.2927053638286177, "coord": [48.88594618449054, 2.2927053638286177], "stop_id": 4726741, "stop_desc": "PLACE STUART MERRILL - 75117", "stop_name": "PORTE DE CHAMPERRET"}, "geometry": {"type": "Point", "coordinates": [2.2927053638286177, 48.88594618449054]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "06baa70b50f536b412ad29991afef4d349299d73", "fields": {"departement": "75", "stop_lat": 48.88406032096609, "code_postal": "75117", "stop_lon": 2.296781552557011, "coord": [48.88406032096609, 2.296781552557011], "stop_id": 4726744, "stop_desc": "95-97 AVENUE NIEL - 75117", "stop_name": "PEREIRE - MARECHAL JUIN"}, "geometry": {"type": "Point", "coordinates": [2.296781552557011, 48.88406032096609]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1c1f544e935c65c9fd0219a1647607adbefd0118", "fields": {"departement": "75", "stop_lat": 48.874542100215145, "code_postal": "75117", "stop_lon": 2.294758885161445, "coord": [48.874542100215145, 2.294758885161445], "stop_id": 4726747, "stop_desc": "FACE 2 AVENUE MAC MAHON - 75117", "stop_name": "CHARLES DE GAULLE - ETOILE - MAC MAHON"}, "geometry": {"type": "Point", "coordinates": [2.294758885161445, 48.874542100215145]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "78c22e755f4cbd657234c62770ab90b58e75dba0", "fields": {"departement": "75", "stop_lat": 48.85851141448971, "code_postal": "75107", "stop_lon": 2.3033938626480066, "coord": [48.85851141448971, 2.3033938626480066], "stop_id": 4726753, "stop_desc": "20 AVENUE BOSQUET - 75107", "stop_name": "BOSQUET - SAINT-DOMINIQUE"}, "geometry": {"type": "Point", "coordinates": [2.3033938626480066, 48.85851141448971]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e1ff89b84843b256689f303bdb5bb3e7fbc283f5", "fields": {"departement": "75", "stop_lat": 48.85418005267749, "code_postal": "75107", "stop_lon": 2.305507707472057, "coord": [48.85418005267749, 2.305507707472057], "stop_id": 4726755, "stop_desc": "PLACE DE L'ECOLE MILITAIRE - 75107", "stop_name": "ECOLE MILITAIRE"}, "geometry": {"type": "Point", "coordinates": [2.305507707472057, 48.85418005267749]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "64d4d2bb2a32e7ae477974d52aa80eef46a37de8", "fields": {"departement": "75", "stop_lat": 48.85229449181487, "code_postal": "75107", "stop_lon": 2.313217198951669, "coord": [48.85229449181487, 2.313217198951669], "stop_id": 4726757, "stop_desc": "18 AVENUE DE VILLARS - 75107", "stop_name": "SAINT-FRANCOIS-XAVIER"}, "geometry": {"type": "Point", "coordinates": [2.313217198951669, 48.85229449181487]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "06f4d9bca99fbb252ff2c844d14ae8cf1875864a", "fields": {"departement": "75", "stop_lat": 48.847369889708794, "code_postal": "75107", "stop_lon": 2.3160519577082312, "coord": [48.847369889708794, 2.3160519577082312], "stop_id": 4726759, "stop_desc": "56 BOULEVARD DES INVALIDES - 75107", "stop_name": "DUROC"}, "geometry": {"type": "Point", "coordinates": [2.3160519577082312, 48.847369889708794]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "93de4ded0329d2ce57ea70c739013e48e1dfcf94", "fields": {"departement": "75", "stop_lat": 48.84381179353463, "code_postal": "75115", "stop_lon": 2.32238519748455, "coord": [48.84381179353463, 2.32238519748455], "stop_id": 4726762, "stop_desc": "FACE 3 RUE DE L'ARRIVEE - 75115", "stop_name": "PLACE DU 18 JUIN 1940 - RUE DE L'ARRIVEE"}, "geometry": {"type": "Point", "coordinates": [2.32238519748455, 48.84381179353463]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6c32aa585f2b88522559029620ee95a7530ff178", "fields": {"departement": "75", "stop_lat": 48.875070457405144, "code_postal": "75108", "stop_lon": 2.3265182190657376, "coord": [48.875070457405144, 2.3265182190657376], "stop_id": 4726915, "stop_desc": "3 RUE INTERIEURE - 75108", "stop_name": "GARE SAINT-LAZARE"}, "geometry": {"type": "Point", "coordinates": [2.3265182190657376, 48.875070457405144]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f4f76aa38277b1385f53b5b9e994da314ed7a273", "fields": {"departement": "75", "stop_lat": 48.8733809275033, "code_postal": "75109", "stop_lon": 2.3274859090230406, "coord": [48.8733809275033, 2.3274859090230406], "stop_id": 4726916, "stop_desc": "19 RUE AUBER - 75109", "stop_name": "HAVRE - HAUSSMANN"}, "geometry": {"type": "Point", "coordinates": [2.3274859090230406, 48.8733809275033]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "da2c1642b7156474c4726c60a1be537fda0aa6ce", "fields": {"departement": "75", "stop_lat": 48.87351575263024, "code_postal": "75109", "stop_lon": 2.327676627244145, "coord": [48.87351575263024, 2.327676627244145], "stop_id": 4726917, "stop_desc": "16-18 RUE AUBER - 75109", "stop_name": "HAVRE - HAUSSMANN"}, "geometry": {"type": "Point", "coordinates": [2.327676627244145, 48.87351575263024]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "16b300619677ac78710e97a37ee1cfb4511b7814", "fields": {"departement": "75", "stop_lat": 48.87219478360626, "code_postal": "75109", "stop_lon": 2.3300338573501684, "coord": [48.87219478360626, 2.3300338573501684], "stop_id": 4726919, "stop_desc": "8 RUE AUBER - 75109", "stop_name": "AUBER"}, "geometry": {"type": "Point", "coordinates": [2.3300338573501684, 48.87219478360626]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a7ed378a64fd1b985d7bebff9a9e233e7fcbd058", "fields": {"departement": "75", "stop_lat": 48.86917525585135, "code_postal": "75102", "stop_lon": 2.3381810732063615, "coord": [48.86917525585135, 2.3381810732063615], "stop_id": 4726923, "stop_desc": "7 RUE DU 4 SEPTEMBRE - 75102", "stop_name": "RICHELIEU - 4 SEPTEMBRE"}, "geometry": {"type": "Point", "coordinates": [2.3381810732063615, 48.86917525585135]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "29ddbafe54c01ef152daf481061a9a9853d40a67", "fields": {"departement": "75", "stop_lat": 48.86625191048184, "code_postal": "75103", "stop_lon": 2.361462105708011, "coord": [48.86625191048184, 2.361462105708011], "stop_id": 4726931, "stop_desc": "164-166 RUE DU TEMPLE - 75103", "stop_name": "TURBIGO - REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.361462105708011, 48.86625191048184]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e7dfe9dea94c32afcda99e9df8f97063d053dcf6", "fields": {"departement": "75", "stop_lat": 48.866682718988855, "code_postal": "75103", "stop_lon": 2.3641868567643844, "coord": [48.866682718988855, 2.3641868567643844], "stop_id": 4726932, "stop_desc": "9 PLACE DE LA REPUBLIQUE - 75103", "stop_name": "REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.3641868567643844, 48.866682718988855]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "88f0b4fb7e0988edf4044b3f799d1f8129a3d995", "fields": {"departement": "75", "stop_lat": 48.85728098955349, "code_postal": "75103", "stop_lon": 2.367968412184262, "coord": [48.85728098955349, 2.367968412184262], "stop_id": 4726936, "stop_desc": "57 BOULEVARD BEAUMARCHAIS - 75103", "stop_name": "SAINT-GILLES - CHEMIN VERT"}, "geometry": {"type": "Point", "coordinates": [2.367968412184262, 48.85728098955349]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2da096cf9cc14eda766517e53ad89d086affc90d", "fields": {"departement": "75", "stop_lat": 48.84612641829164, "code_postal": "75112", "stop_lon": 2.372047013071946, "coord": [48.84612641829164, 2.372047013071946], "stop_id": 4726942, "stop_desc": "3 RUE DE LYON - 75112", "stop_name": "GARE DE LYON - DIDEROT"}, "geometry": {"type": "Point", "coordinates": [2.372047013071946, 48.84612641829164]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1a3cacd2ce16f473a606afebc6cf7408e8834661", "fields": {"departement": "75", "stop_lat": 48.842665144499236, "code_postal": "75112", "stop_lon": 2.3755577341141434, "coord": [48.842665144499236, 2.3755577341141434], "stop_id": 4726947, "stop_desc": "FACE 165 RUE DE BERCY - 75112", "stop_name": "GARE DE LYON."}, "geometry": {"type": "Point", "coordinates": [2.3755577341141434, 48.842665144499236]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6708e7c67a7162f050949ea9b25ec07c6cec0afa", "fields": {"departement": "75", "stop_lat": 48.85239140153054, "code_postal": "75112", "stop_lon": 2.369545320283473, "coord": [48.85239140153054, 2.369545320283473], "stop_id": 4726948, "stop_desc": "RUE DE LYON - 75112", "stop_name": "BASTILLE"}, "geometry": {"type": "Point", "coordinates": [2.369545320283473, 48.85239140153054]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "306e68e8f635cda9415f48088b57778b5c90df0f", "fields": {"departement": "75", "stop_lat": 48.853856485402765, "code_postal": "75111", "stop_lon": 2.369069554093801, "coord": [48.853856485402765, 2.369069554093801], "stop_id": 4726949, "stop_desc": "2 BOULEVARD BEAUMARCHAIS - 75111", "stop_name": "BASTILLE - BEAUMARCHAIS"}, "geometry": {"type": "Point", "coordinates": [2.369069554093801, 48.853856485402765]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0beecd9b833c156e4adcda444c8bab841efb01c8", "fields": {"departement": "75", "stop_lat": 48.85977057434427, "code_postal": "75111", "stop_lon": 2.367697467983941, "coord": [48.85977057434427, 2.367697467983941], "stop_id": 4726952, "stop_desc": "90 BOULEVARD BEAUMARCHAIS - 75111", "stop_name": "SAINT-CLAUDE"}, "geometry": {"type": "Point", "coordinates": [2.367697467983941, 48.85977057434427]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1a5ee3483c95768d851ca1ed7003df1ef5213050", "fields": {"departement": "75", "stop_lat": 48.86497475517658, "code_postal": "75111", "stop_lon": 2.3657525342739234, "coord": [48.86497475517658, 2.3657525342739234], "stop_id": 4726954, "stop_desc": "28 BOULEVARD DU TEMPLE - 75111", "stop_name": "JEAN-PIERRE TIMBAUD"}, "geometry": {"type": "Point", "coordinates": [2.3657525342739234, 48.86497475517658]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3e6c47e6cbf8b2e9e27560096e84807df331771f", "fields": {"departement": "75", "stop_lat": 48.86612529914724, "code_postal": "75111", "stop_lon": 2.3650720364493116, "coord": [48.86612529914724, 2.3650720364493116], "stop_id": 4726955, "stop_desc": "50-52 BOULEVARD DU TEMPLE - 75111", "stop_name": "REPUBLIQUE - TEMPLE"}, "geometry": {"type": "Point", "coordinates": [2.3650720364493116, 48.86612529914724]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "59786b4e5e135565386ec5c9a461919f387b33b8", "fields": {"departement": "75", "stop_lat": 48.868166178190165, "code_postal": "75110", "stop_lon": 2.3616537233948978, "coord": [48.868166178190165, 2.3616537233948978], "stop_id": 4726956, "stop_desc": "2 BIS BOULEVARD SAINT MARTIN - 75110", "stop_name": "REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.3616537233948978, 48.868166178190165]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "19bccd7ae26bb8df9fc482e07afb2fd01eefbf89", "fields": {"departement": "75", "stop_lat": 48.828144659099536, "code_postal": "75112", "stop_lon": 2.390017246298964, "coord": [48.828144659099536, 2.390017246298964], "stop_id": 4739159, "stop_desc": "RUE ROBERT ETLIN - 75112", "stop_name": "PONT NATIONAL - QUAI DE BERCY"}, "geometry": {"type": "Point", "coordinates": [2.390017246298964, 48.828144659099536]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "449bfdc454902fed1ceebb1c9b17cf4e1a68008b", "fields": {"departement": "75", "stop_lat": 48.83390615769929, "code_postal": "75112", "stop_lon": 2.3890292724064803, "coord": [48.83390615769929, 2.3890292724064803], "stop_id": 4739161, "stop_desc": "27-29 RUE BARON LE ROY - 75112", "stop_name": "BARON LE ROY"}, "geometry": {"type": "Point", "coordinates": [2.3890292724064803, 48.83390615769929]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fd613417d16d86770fc1063e4cec93e9273cd729", "fields": {"departement": "75", "stop_lat": 48.83592072593947, "code_postal": "75112", "stop_lon": 2.385831834104346, "coord": [48.83592072593947, 2.385831834104346], "stop_id": 4739162, "stop_desc": "2 RUE DE BERCY - 75112", "stop_name": "LACHAMBEAUDIE"}, "geometry": {"type": "Point", "coordinates": [2.385831834104346, 48.83592072593947]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "73135819da237e02e547c3fcca43c94eee249ad6", "fields": {"departement": "75", "stop_lat": 48.84489707858878, "code_postal": "75105", "stop_lon": 2.3645704396042673, "coord": [48.84489707858878, 2.3645704396042673], "stop_id": 4739168, "stop_desc": "PL VALHUBERT - 75105", "stop_name": "GARE D'AUSTERLITZ"}, "geometry": {"type": "Point", "coordinates": [2.3645704396042673, 48.84489707858878]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "999a9f0f24c42a153a7eaec148722308275f43b9", "fields": {"departement": "75", "stop_lat": 48.85768938378177, "code_postal": "75106", "stop_lon": 2.3374453668304107, "coord": [48.85768938378177, 2.3374453668304107], "stop_id": 4739202, "stop_desc": "FACE 23 QUAI DE CONTI - 75106", "stop_name": "PONT DES ARTS - QUAI DE CONTI"}, "geometry": {"type": "Point", "coordinates": [2.3374453668304107, 48.85768938378177]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "82f39a4f56cbc0fb070afb367d02229011ba3038", "fields": {"departement": "75", "stop_lat": 48.86161608342362, "code_postal": "75107", "stop_lon": 2.3234561851162594, "coord": [48.86161608342362, 2.3234561851162594], "stop_id": 4739205, "stop_desc": "FACE 11 QUAI ANATOLE FRANCE - 75107", "stop_name": "MUSEE D'ORSAY"}, "geometry": {"type": "Point", "coordinates": [2.3234561851162594, 48.86161608342362]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a2eb9c5374184a45938c8e8c126205d0a250a773", "fields": {"departement": "75", "stop_lat": 48.867296005540844, "code_postal": "75108", "stop_lon": 2.322623676294097, "coord": [48.867296005540844, 2.322623676294097], "stop_id": 4739207, "stop_desc": "4 RUE ROYALE - 75108", "stop_name": "CONCORDE"}, "geometry": {"type": "Point", "coordinates": [2.322623676294097, 48.867296005540844]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cb226a05f26a1818ef8b64022f216e64e318117e", "fields": {"departement": "93", "stop_lat": 48.90292094149015, "code_postal": "93070", "stop_lon": 2.3195327236531718, "coord": [48.90292094149015, 2.3195327236531718], "stop_id": 4758939, "stop_desc": "134 BD VICTOR HUGO - 93070", "stop_name": "VICTOR HUGO - SANZILLON"}, "geometry": {"type": "Point", "coordinates": [2.3195327236531718, 48.90292094149015]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e10516ee37efea1678e3a5fa4552317c0aa8b657", "fields": {"departement": "93", "stop_lat": 48.90516809669935, "code_postal": "93070", "stop_lon": 2.3223403258000137, "coord": [48.90516809669935, 2.3223403258000137], "stop_id": 4758941, "stop_desc": "BOULEVARD VICTOR HUGO - 93070", "stop_name": "SAINT-OUEN RER"}, "geometry": {"type": "Point", "coordinates": [2.3223403258000137, 48.90516809669935]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "48179a82c69643333668e7694fec054027c1efcd", "fields": {"departement": "93", "stop_lat": 48.914577941456194, "code_postal": "93066", "stop_lon": 2.34838112314179, "coord": [48.914577941456194, 2.34838112314179], "stop_id": 4758953, "stop_desc": "149 RUE DU LANDY - 93066", "stop_name": "LANDY - PLEYEL"}, "geometry": {"type": "Point", "coordinates": [2.34838112314179, 48.914577941456194]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "76e77ee2d15981d7a77ba6696339b50a834844e1", "fields": {"departement": "93", "stop_lat": 48.918055082500004, "code_postal": "93066", "stop_lon": 2.355159090829287, "coord": [48.918055082500004, 2.355159090829287], "stop_id": 4758959, "stop_desc": "3 AVENUE FRANCOIS MITTERRAND - 93066", "stop_name": "AVENUE DES FRUITIERS"}, "geometry": {"type": "Point", "coordinates": [2.355159090829287, 48.918055082500004]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0ca9698d6dcf973f4aafaf65108fd15eb6a0a121", "fields": {"departement": "93", "stop_lat": 48.91528499578044, "code_postal": "93066", "stop_lon": 2.3658892956966664, "coord": [48.91528499578044, 2.3658892956966664], "stop_id": 4758965, "stop_desc": "15 RUE DU LANDY - 93066", "stop_name": "MURGER"}, "geometry": {"type": "Point", "coordinates": [2.3658892956966664, 48.91528499578044]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "78d6083d51e0d084ac69a94d4f7285120c7a6023", "fields": {"departement": "93", "stop_lat": 48.915102290338595, "code_postal": "93001", "stop_lon": 2.376333974574496, "coord": [48.915102290338595, 2.376333974574496], "stop_id": 4758969, "stop_desc": "52 R HEURTAULT - 93001", "stop_name": "HEURTAULT"}, "geometry": {"type": "Point", "coordinates": [2.376333974574496, 48.915102290338595]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cd6ea9834cc76055a8bcc5eef69be967592b8713", "fields": {"departement": "93", "stop_lat": 48.91418375472208, "code_postal": "93001", "stop_lon": 2.381651025931646, "coord": [48.91418375472208, 2.381651025931646], "stop_id": 4758971, "stop_desc": "AVENUE DE LA REPUBLIQUE - 93001", "stop_name": "MAIRIE D'AUBERVILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.381651025931646, 48.91418375472208]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7f86006d134b880bb601c8a979f4bf993560828d", "fields": {"departement": "93", "stop_lat": 48.915370701674085, "code_postal": "93001", "stop_lon": 2.400155491968183, "coord": [48.915370701674085, 2.400155491968183], "stop_id": 4758980, "stop_desc": "RUE DANIELLE CASANOVA - 93001", "stop_name": "BALZAC"}, "geometry": {"type": "Point", "coordinates": [2.400155491968183, 48.915370701674085]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2b50a46208e92f54ffe3136bcaeba6f422d7081c", "fields": {"departement": "75", "stop_lat": 48.8314984744011, "code_postal": "75113", "stop_lon": 2.3546799758762553, "coord": [48.8314984744011, 2.3546799758762553], "stop_id": 4767045, "stop_desc": "10 PLACE D'ITALIE - 75113", "stop_name": "PLACE D'ITALIE"}, "geometry": {"type": "Point", "coordinates": [2.3546799758762553, 48.8314984744011]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ebbc22220e027ac455b0e8cda8118fc17842fa72", "fields": {"departement": "75", "stop_lat": 48.831570105297956, "code_postal": "75113", "stop_lon": 2.35643614543779, "coord": [48.831570105297956, 2.35643614543779], "stop_id": 4767046, "stop_desc": "7 PLACE D'ITALIE - 75113", "stop_name": "PLACE D'ITALIE"}, "geometry": {"type": "Point", "coordinates": [2.35643614543779, 48.831570105297956]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bb295abaca491e1a322ffa115c427ba9a8d5b8fa", "fields": {"departement": "75", "stop_lat": 48.828172718149084, "code_postal": "75113", "stop_lon": 2.356829656095805, "coord": [48.828172718149084, 2.356829656095805], "stop_id": 4767048, "stop_desc": "27 AVENUE D'ITALIE - 75113", "stop_name": "VANDREZANNE"}, "geometry": {"type": "Point", "coordinates": [2.356829656095805, 48.828172718149084]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4ae5385a55cb7234fca0f7357326e7d94f26c66d", "fields": {"departement": "94", "stop_lat": 48.81047498025869, "code_postal": "94043", "stop_lon": 2.361939589627888, "coord": [48.81047498025869, 2.361939589627888], "stop_id": 4767061, "stop_desc": "94-96 AVENUE DE FONTAINEBLEAU - 94043", "stop_name": "LE KREMLIN-BICETRE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.361939589627888, 48.81047498025869]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "14f8bc02c93743d7ca70233e1d2ebe63a8b630f4", "fields": {"departement": "94", "stop_lat": 48.7992481272412, "code_postal": "94076", "stop_lon": 2.3666960218389126, "coord": [48.7992481272412, 2.3666960218389126], "stop_id": 4767068, "stop_desc": "9 BOULEVARD MAXIME GORKI - 94076", "stop_name": "DISPENSAIRE DANIELLE CASANOVA"}, "geometry": {"type": "Point", "coordinates": [2.3666960218389126, 48.7992481272412]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "65857f994e8186daff953e6b4ba38d6b4cf2b235", "fields": {"departement": "94", "stop_lat": 48.77982512725138, "code_postal": "94021", "stop_lon": 2.3671474111380566, "coord": [48.77982512725138, 2.3671474111380566], "stop_id": 4767078, "stop_desc": "AVENUE STALINGRAD - 94021", "stop_name": "DOMAINE CHERIOUX"}, "geometry": {"type": "Point", "coordinates": [2.3671474111380566, 48.77982512725138]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e536a77ce285b27b17ff2fd667e272fe03be5c4b", "fields": {"departement": "94", "stop_lat": 48.76829332558924, "code_postal": "94021", "stop_lon": 2.3677934294587164, "coord": [48.76829332558924, 2.3677934294587164], "stop_id": 4767080, "stop_desc": "240 AVENUE DE STALINGRAD - 94021", "stop_name": "BRETAGNE"}, "geometry": {"type": "Point", "coordinates": [2.3677934294587164, 48.76829332558924]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d11ba193b46d4a78acd8c3417c05bd4ec3992388", "fields": {"departement": "94", "stop_lat": 48.76150973348482, "code_postal": "94021", "stop_lon": 2.356179161915079, "coord": [48.76150973348482, 2.356179161915079], "stop_id": 4767088, "stop_desc": "AVENUE DES TROIS MARCHES - 94021", "stop_name": "TROIS MARCHES"}, "geometry": {"type": "Point", "coordinates": [2.356179161915079, 48.76150973348482]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7ec5df6c547b2b519b4efe918925ef2faeedbe7d", "fields": {"departement": "94", "stop_lat": 48.76461703210473, "code_postal": "94073", "stop_lon": 2.3684438760824804, "coord": [48.76461703210473, 2.3684438760824804], "stop_id": 4767095, "stop_desc": "AVENUE DE FONTAINEBLEAU - 94073", "stop_name": "CIMETIERE PARISIEN DE THIAIS"}, "geometry": {"type": "Point", "coordinates": [2.3684438760824804, 48.76461703210473]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "60fdd6bbb2d68653cd8c2b92b15986a20aaaa4d3", "fields": {"departement": "91", "stop_lat": 48.70274441181845, "code_postal": "91161", "stop_lon": 2.320361379742285, "coord": [48.70274441181845, 2.320361379742285], "stop_id": 4770073, "stop_desc": "FACE 5 AVENUE MAZARIN - 91161", "stop_name": "PLACE DE LA LIBERATION"}, "geometry": {"type": "Point", "coordinates": [2.320361379742285, 48.70274441181845]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "235590838eff2d0f45238f658e41af10d5ad6cb2", "fields": {"departement": "91", "stop_lat": 48.70424493000524, "code_postal": "91161", "stop_lon": 2.316775717016181, "coord": [48.70424493000524, 2.316775717016181], "stop_id": 4770076, "stop_desc": "37 AVENUE MAZARIN - 91161", "stop_name": "BEAUREGARD"}, "geometry": {"type": "Point", "coordinates": [2.316775717016181, 48.70424493000524]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4a0f49997cd13cc872ff28ad77a6e4b00f97c27a", "fields": {"departement": "91", "stop_lat": 48.71498184738707, "code_postal": "91161", "stop_lon": 2.299262984602106, "coord": [48.71498184738707, 2.299262984602106], "stop_id": 4770081, "stop_desc": "FACE 101 ROUTE DE MASSY - 91161", "stop_name": "ROUTE DE MASSY - LES CHAMPARTS"}, "geometry": {"type": "Point", "coordinates": [2.299262984602106, 48.71498184738707]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9e89e1ea148d2902773857efa83601407bcef2ca", "fields": {"departement": "91", "stop_lat": 48.72334548650861, "code_postal": "91377", "stop_lon": 2.286962268814599, "coord": [48.72334548650861, 2.286962268814599], "stop_id": 4770085, "stop_desc": "AVENUE DE L'EUROPE - 91377", "stop_name": "LA BONDE"}, "geometry": {"type": "Point", "coordinates": [2.286962268814599, 48.72334548650861]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a729784d5c24e640014f95d1ee8027937a0465e0", "fields": {"departement": "91", "stop_lat": 48.728177760401586, "code_postal": "91377", "stop_lon": 2.27934917567897, "coord": [48.728177760401586, 2.27934917567897], "stop_id": 4770094, "stop_desc": "29 RUE DE LONGJUMEAU - 91377", "stop_name": "JEAN MERMOZ"}, "geometry": {"type": "Point", "coordinates": [2.27934917567897, 48.728177760401586]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "235774b85fff0d056614ed21520f889fd64162f9", "fields": {"departement": "91", "stop_lat": 48.730337365280135, "code_postal": "91377", "stop_lon": 2.284509841439496, "coord": [48.730337365280135, 2.284509841439496], "stop_id": 4770098, "stop_desc": "FACE 11 RUE DE ROME - 91377", "stop_name": "MOSCOU-ROME"}, "geometry": {"type": "Point", "coordinates": [2.284509841439496, 48.730337365280135]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "abbb9792d2190ecf92e21125b8ee499fad57a760", "fields": {"departement": "91", "stop_lat": 48.73481745136846, "code_postal": "91377", "stop_lon": 2.2941936819238933, "coord": [48.73481745136846, 2.2941936819238933], "stop_id": 4770105, "stop_desc": "FACE 5 RUE D'ALGER - 91377", "stop_name": "BIARRITZ"}, "geometry": {"type": "Point", "coordinates": [2.2941936819238933, 48.73481745136846]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6ad5d78ed4d12d316dbd347dbea4ed3117438c7b", "fields": {"departement": "92", "stop_lat": 48.741525495145915, "code_postal": "92002", "stop_lon": 2.3027362046921716, "coord": [48.741525495145915, 2.3027362046921716], "stop_id": 4770110, "stop_desc": "157 AVENUE DE LA DIVISION LECLERC - 92002", "stop_name": "PETIT MASSY"}, "geometry": {"type": "Point", "coordinates": [2.3027362046921716, 48.741525495145915]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "84a121916bac6a890dab37ff5d59d0850a8113f9", "fields": {"departement": "92", "stop_lat": 48.74507597561904, "code_postal": "92002", "stop_lon": 2.3031687552534903, "coord": [48.74507597561904, 2.3031687552534903], "stop_id": 4770113, "stop_desc": "134 AVENUE DE LA DIVISION LECLERC - 92002", "stop_name": "BLANCHE DE CASTILLE"}, "geometry": {"type": "Point", "coordinates": [2.3031687552534903, 48.74507597561904]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a3184ffad78ae00b44c9301c302478e6eb8d813f", "fields": {"departement": "92", "stop_lat": 48.75043325524002, "code_postal": "92002", "stop_lon": 2.3042526245193016, "coord": [48.75043325524002, 2.3042526245193016], "stop_id": 4770115, "stop_desc": "46 AVENUE DE LA DIVISION LECLERC - 92002", "stop_name": "PONT D'ANTONY"}, "geometry": {"type": "Point", "coordinates": [2.3042526245193016, 48.75043325524002]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "39ac26401c3b5baa956806947b902f90c58f33e2", "fields": {"departement": "92", "stop_lat": 48.768177510907535, "code_postal": "92002", "stop_lon": 2.311026218250398, "coord": [48.768177510907535, 2.311026218250398], "stop_id": 4770123, "stop_desc": "FACE 49 AVENUE RAYMOND ARON - 92002", "stop_name": "NORMANDIE"}, "geometry": {"type": "Point", "coordinates": [2.311026218250398, 48.768177510907535]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4c4551f957056cf9c8e4b44d38c794921b68bdb4", "fields": {"departement": "92", "stop_lat": 48.770703432969064, "code_postal": "92002", "stop_lon": 2.3123167134725082, "coord": [48.770703432969064, 2.3123167134725082], "stop_id": 4770125, "stop_desc": "26 AV RAYMOND ARON - 92002", "stop_name": "LA FONTAINE"}, "geometry": {"type": "Point", "coordinates": [2.3123167134725082, 48.770703432969064]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1e6660bfd0a5735bab4067eae40606acb99cd16c", "fields": {"departement": "92", "stop_lat": 48.779063025919605, "code_postal": "92014", "stop_lon": 2.316107036451739, "coord": [48.779063025919605, 2.316107036451739], "stop_id": 4770130, "stop_desc": "6 BOULEVARD CARNOT - 92014", "stop_name": "CONDORCET - MAIRIE-RER"}, "geometry": {"type": "Point", "coordinates": [2.316107036451739, 48.779063025919605]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c2375a7167035dca2fea7854d075109dc27ba4b6", "fields": {"departement": "92", "stop_lat": 48.77753596618915, "code_postal": "92014", "stop_lon": 2.321982585930126, "coord": [48.77753596618915, 2.321982585930126], "stop_id": 4770132, "stop_desc": "29 BOULEVARD CARNOT - 92014", "stop_name": "GALOIS"}, "geometry": {"type": "Point", "coordinates": [2.321982585930126, 48.77753596618915]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b4fcb0e78ef459f23576874956e4f706659cb52b", "fields": {"departement": "94", "stop_lat": 48.775559027184684, "code_postal": "94038", "stop_lon": 2.325736450284986, "coord": [48.775559027184684, 2.325736450284986], "stop_id": 4770133, "stop_desc": "65 AVENUE LARROUMES - 94038", "stop_name": "BARBUSSE - LARROUMES"}, "geometry": {"type": "Point", "coordinates": [2.325736450284986, 48.775559027184684]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5317ce46cb8f925a831c6040fc78e82e34dcc88f", "fields": {"departement": "94", "stop_lat": 48.77631442599705, "code_postal": "94038", "stop_lon": 2.331243898097316, "coord": [48.77631442599705, 2.331243898097316], "stop_id": 4770135, "stop_desc": "28 AVENUE LARROUMES - 94038", "stop_name": "SOUS-PREFECTURE - ROSERAIE"}, "geometry": {"type": "Point", "coordinates": [2.331243898097316, 48.77631442599705]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5206478ae1db8d9e31d8098fe092081d19b6544b", "fields": {"departement": "94", "stop_lat": 48.77838179451567, "code_postal": "94038", "stop_lon": 2.3348747498291758, "coord": [48.77838179451567, 2.3348747498291758], "stop_id": 4770138, "stop_desc": "7-9 RUE JEAN JAURES - 94038", "stop_name": "SOUS-PREFECTURE - EGLISE DE L'HAY-LES-ROSES"}, "geometry": {"type": "Point", "coordinates": [2.3348747498291758, 48.77838179451567]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c724df4d6836097ea3674919eb3221c00fea08dc", "fields": {"departement": "94", "stop_lat": 48.79042553189924, "code_postal": "94016", "stop_lon": 2.3314327039783245, "coord": [48.79042553189924, 2.3314327039783245], "stop_id": 4770144, "stop_desc": "6 AVENUE DU MARECHAL DE LATTRE DE TASSIGNY - 94016", "stop_name": "DIVISION LECLERC - CAMILLE DESMOULINS"}, "geometry": {"type": "Point", "coordinates": [2.3314327039783245, 48.79042553189924]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "29799de6acca30d74d5cc12fb2a9366b343d44ca", "fields": {"departement": "94", "stop_lat": 48.79403877145943, "code_postal": "94016", "stop_lon": 2.3342754705788455, "coord": [48.79403877145943, 2.3342754705788455], "stop_id": 4770145, "stop_desc": "9 RUE CAMILLE DESMOULINS - 94016", "stop_name": "MAIRIE DE CACHAN"}, "geometry": {"type": "Point", "coordinates": [2.3342754705788455, 48.79403877145943]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d25fcdcf918b3981ccde09c737d7dfdb24f067a1", "fields": {"departement": "94", "stop_lat": 48.80061786069688, "code_postal": "94003", "stop_lon": 2.3334179522173053, "coord": [48.80061786069688, 2.3334179522173053], "stop_id": 4770149, "stop_desc": "FACE 7 AVENUE DE LA CONVENTION - 94003", "stop_name": "CITE JARDINS"}, "geometry": {"type": "Point", "coordinates": [2.3334179522173053, 48.80061786069688]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a6624f2ae94fc2d85d7bad766d38984f733abd17", "fields": {"departement": "94", "stop_lat": 48.80193912894198, "code_postal": "94003", "stop_lon": 2.3383295345202058, "coord": [48.80193912894198, 2.3383295345202058], "stop_id": 4770152, "stop_desc": "1 RUE AUGUSTE DELAUNE - 94003", "stop_name": "AUGUSTE DELAUNE"}, "geometry": {"type": "Point", "coordinates": [2.3383295345202058, 48.80193912894198]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6a44e88b85c0713c4a03b4ab26a00b66cd3cd764", "fields": {"departement": "94", "stop_lat": 48.80669368515831, "code_postal": "94003", "stop_lon": 2.336941718396992, "coord": [48.80669368515831, 2.336941718396992], "stop_id": 4770154, "stop_desc": "9-11 AVENUE PAUL DOUMER - 94003", "stop_name": "HOTEL DE VILLE D'ARCUEIL"}, "geometry": {"type": "Point", "coordinates": [2.336941718396992, 48.80669368515831]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c57a676a92e4e1e7c937043559570c54fba86300", "fields": {"departement": "94", "stop_lat": 48.806576843454636, "code_postal": "94003", "stop_lon": 2.3368192563048034, "coord": [48.806576843454636, 2.3368192563048034], "stop_id": 4770155, "stop_desc": "FACE 9 AVENUE PAUL DOUMER - 94003", "stop_name": "HOTEL DE VILLE D'ARCUEIL"}, "geometry": {"type": "Point", "coordinates": [2.3368192563048034, 48.806576843454636]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9c92f1e8687879b23e3ba702901926206dda09db", "fields": {"departement": "94", "stop_lat": 48.80818557426659, "code_postal": "94003", "stop_lon": 2.3327778455238666, "coord": [48.80818557426659, 2.3327778455238666], "stop_id": 4770156, "stop_desc": "32-34 AVENUE LAPLACE - 94003", "stop_name": "LAPLACE RER"}, "geometry": {"type": "Point", "coordinates": [2.3327778455238666, 48.80818557426659]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "903f6eb68a9a0c1a34b39933d4bb380c2007f03c", "fields": {"departement": "94", "stop_lat": 48.80784404743202, "code_postal": "94003", "stop_lon": 2.3330228065226883, "coord": [48.80784404743202, 2.3330228065226883], "stop_id": 4770157, "stop_desc": "AVENUE LAPLACE - 94003", "stop_name": "LAPLACE RER"}, "geometry": {"type": "Point", "coordinates": [2.3330228065226883, 48.80784404743202]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d2f55bcfa9e620460f1291d4ad26c4587d953472", "fields": {"departement": "92", "stop_lat": 48.81363167569627, "code_postal": "92049", "stop_lon": 2.3256327423030254, "coord": [48.81363167569627, 2.3256327423030254], "stop_id": 4770160, "stop_desc": "110 AVENUE ARISTIDE BRIAND - 92049", "stop_name": "LEON GAMBETTA"}, "geometry": {"type": "Point", "coordinates": [2.3256327423030254, 48.81363167569627]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "203cd9d32ee4d6de78f0a4eb838e6e78baad4fea", "fields": {"departement": "92", "stop_lat": 48.818062641326925, "code_postal": "92049", "stop_lon": 2.3257950701996193, "coord": [48.818062641326925, 2.3257950701996193], "stop_id": 4770161, "stop_desc": "51 BIS AVENUE ARISTIDE BRIAND - 92049", "stop_name": "GABRIEL PERI"}, "geometry": {"type": "Point", "coordinates": [2.3257950701996193, 48.818062641326925]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3c94b1e9e5c7ec46dbe91372b57609cd3a6f9060", "fields": {"departement": "75", "stop_lat": 48.830474895128575, "code_postal": "75114", "stop_lon": 2.3292909331491076, "coord": [48.830474895128575, 2.3292909331491076], "stop_id": 4770167, "stop_desc": "29-31 AVENUE DU GENERAL LECLERC - 75114", "stop_name": "MOUTON - DUVERNET"}, "geometry": {"type": "Point", "coordinates": [2.3292909331491076, 48.830474895128575]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d36080cbf62e11bc6b43e5ea94fd61fe00891995", "fields": {"departement": "75", "stop_lat": 48.83487001531102, "code_postal": "75114", "stop_lon": 2.3327347010432598, "coord": [48.83487001531102, 2.3327347010432598], "stop_id": 4770171, "stop_desc": "108-110 AVENUE DENFERT-ROCHEREAU - 75114", "stop_name": "DENFERT-ROCHEREAU - ARAGO"}, "geometry": {"type": "Point", "coordinates": [2.3327347010432598, 48.83487001531102]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "21e4294b7e1dd1645023d476230d530cfef84819", "fields": {"departement": "75", "stop_lat": 48.839256036606045, "code_postal": "75114", "stop_lon": 2.3367645211123738, "coord": [48.839256036606045, 2.3367645211123738], "stop_id": 4770174, "stop_desc": "49 AVENUE DE L'OBSERVATOIRE - 75114", "stop_name": "OBSERVATOIRE - PORT ROYAL"}, "geometry": {"type": "Point", "coordinates": [2.3367645211123738, 48.839256036606045]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b6667b5cd64cf625a01a0c63524e8fe00ca226a0", "fields": {"departement": "75", "stop_lat": 48.857014888715405, "code_postal": "75104", "stop_lon": 2.347469838537296, "coord": [48.857014888715405, 2.347469838537296], "stop_id": 4770181, "stop_desc": "FACE 16 QUAI DE GESVRES - 75104", "stop_name": "CHATELET"}, "geometry": {"type": "Point", "coordinates": [2.347469838537296, 48.857014888715405]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d985abf5122c0fa4415a3f5c7ae1823f92b8879c", "fields": {"departement": "75", "stop_lat": 48.8576349330687, "code_postal": "75104", "stop_lon": 2.3484506274986714, "coord": [48.8576349330687, 2.3484506274986714], "stop_id": 4770184, "stop_desc": "FACE 15 AVENUE VICTORIA - 75104", "stop_name": "CHATELET."}, "geometry": {"type": "Point", "coordinates": [2.3484506274986714, 48.8576349330687]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "568dad71949fcd62b55d44eb2d6aa4c630ec5fbc", "fields": {"departement": "75", "stop_lat": 48.85247650155603, "code_postal": "75106", "stop_lon": 2.3435194294224857, "coord": [48.85247650155603, 2.3435194294224857], "stop_id": 4770186, "stop_desc": "10 BOULEVARD SAINT-MICHEL - 75106", "stop_name": "SAINT-MICHEL - SAINT-GERMAIN"}, "geometry": {"type": "Point", "coordinates": [2.3435194294224857, 48.85247650155603]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "84c2647790f5774bb5b053961695717e14e93fa8", "fields": {"departement": "75", "stop_lat": 48.84414524904412, "code_postal": "75106", "stop_lon": 2.3388750838231998, "coord": [48.84414524904412, 2.3388750838231998], "stop_id": 4770189, "stop_desc": "68 BOULEVARD SAINT-MICHEL - 75106", "stop_name": "AUGUSTE COMTE"}, "geometry": {"type": "Point", "coordinates": [2.3388750838231998, 48.84414524904412]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e3d0f0c94c6a66ed24b41bc3c721b0db7d8a0f2d", "fields": {"departement": "75", "stop_lat": 48.842078126923646, "code_postal": "75106", "stop_lon": 2.3377448672832224, "coord": [48.842078126923646, 2.3377448672832224], "stop_id": 4770190, "stop_desc": "86 BOULEVARD SAINT MICHEL - 75106", "stop_name": "VAL DE GRACE"}, "geometry": {"type": "Point", "coordinates": [2.3377448672832224, 48.842078126923646]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "47b443564ab526bc073feb2b0c16a0e4fb34bda5", "fields": {"departement": "75", "stop_lat": 48.84028960403854, "code_postal": "75106", "stop_lon": 2.336492195010898, "coord": [48.84028960403854, 2.336492195010898], "stop_id": 4770191, "stop_desc": "18 AVENUE DE L'OBSERVATOIRE - 75106", "stop_name": "OBSERVATOIRE - PORT ROYAL"}, "geometry": {"type": "Point", "coordinates": [2.336492195010898, 48.84028960403854]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "76e67f23c536b70b07252f4273c23b76be54d5b4", "fields": {"departement": "75", "stop_lat": 48.82929741932709, "code_postal": "75114", "stop_lon": 2.3279570462264916, "coord": [48.82929741932709, 2.3279570462264916], "stop_id": 4770193, "stop_desc": "72 AVENUE DU GENERAL LECLERC - 75114", "stop_name": "ALESIA - MAINE"}, "geometry": {"type": "Point", "coordinates": [2.3279570462264916, 48.82929741932709]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "af7b0ccc55d855d930b8f81f9f992255301eccef", "fields": {"departement": "92", "stop_lat": 48.77446957980129, "code_postal": "92071", "stop_lon": 2.3130900241212315, "coord": [48.77446957980129, 2.3130900241212315], "stop_id": 4770199, "stop_desc": "146 AVENUE DU GENERAL LECLERC - 92071", "stop_name": "LES COTTAGES"}, "geometry": {"type": "Point", "coordinates": [2.3130900241212315, 48.77446957980129]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5be3921d0614af7eba608a57d99fdffda791a281", "fields": {"departement": "92", "stop_lat": 48.738917689264994, "code_postal": "92002", "stop_lon": 2.2987970481475424, "coord": [48.738917689264994, 2.2987970481475424], "stop_id": 4770201, "stop_desc": "52-54 AVENUE DU PRESIDENT KENNEDY - 92002", "stop_name": "SAUSSAYE - MIRABEAU"}, "geometry": {"type": "Point", "coordinates": [2.2987970481475424, 48.738917689264994]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "29036c8260969db7b91b9a7e050c658e948f00b7", "fields": {"departement": "95", "stop_lat": 48.99436259243544, "code_postal": "95585", "stop_lon": 2.38315376864614, "coord": [48.99436259243544, 2.38315376864614], "stop_id": 4775777, "stop_desc": "FACE 9 RUE JEAN-JACQUES ROUSSEAU - 95585", "stop_name": "LYCEE JEAN-JACQUES ROUSSEAU"}, "geometry": {"type": "Point", "coordinates": [2.38315376864614, 48.99436259243544]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4f969394fceef6c380c27d7d0c342b4728a299d1", "fields": {"departement": "95", "stop_lat": 48.99397653556502, "code_postal": "95585", "stop_lon": 2.3822111429168356, "coord": [48.99397653556502, 2.3822111429168356], "stop_id": 4775778, "stop_desc": "1 RUE JEAN-JACQUES ROUSSEAU - 95585", "stop_name": "LYCEE JEAN-JACQUES ROUSSEAU"}, "geometry": {"type": "Point", "coordinates": [2.3822111429168356, 48.99397653556502]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "868c3e23cbb02b01e6b3683f88296a3414156bd4", "fields": {"departement": "94", "stop_lat": 48.83618446865984, "code_postal": "94052", "stop_lon": 2.481761627795849, "coord": [48.83618446865984, 2.481761627795849], "stop_id": 4798800, "stop_desc": "FACE 83 GRANDE RUE CHARLES DE GAULLE - 94052", "stop_name": "SOUS-PREFECTURE - JULES FERRY"}, "geometry": {"type": "Point", "coordinates": [2.481761627795849, 48.83618446865984]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0b0712a0713fc33a945cc32466af3a8014ca47a9", "fields": {"departement": "94", "stop_lat": 48.83741794915162, "code_postal": "94052", "stop_lon": 2.4872655593059427, "coord": [48.83741794915162, 2.4872655593059427], "stop_id": 4798801, "stop_desc": "140 GRANDE RUE CHARLES DE GAULLE - 94052", "stop_name": "MARCHE DE NOGENT-SUR-MARNE"}, "geometry": {"type": "Point", "coordinates": [2.4872655593059427, 48.83741794915162]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b050b233b87c758464c9a3b33d7be4f2fa5809d9", "fields": {"departement": "94", "stop_lat": 48.846324431357445, "code_postal": "94058", "stop_lon": 2.5074587305616003, "coord": [48.846324431357445, 2.5074587305616003], "stop_id": 4798806, "stop_desc": "106 AVENUE LEDRU ROLLIN - 94058", "stop_name": "BELLEVUE"}, "geometry": {"type": "Point", "coordinates": [2.5074587305616003, 48.846324431357445]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e7e9534d63a50a76deff624af7f585d630c5b619", "fields": {"departement": "94", "stop_lat": 48.80418174889629, "code_postal": "94019", "stop_lon": 2.546561397788981, "coord": [48.80418174889629, 2.546561397788981], "stop_id": 3743489, "stop_desc": "19 AVENUE BOILEAU - 94019", "stop_name": "CLAUDE BERNARD"}, "geometry": {"type": "Point", "coordinates": [2.546561397788981, 48.80418174889629]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "425d0bcd8a04170ac924e65ed0d4302c414e733c", "fields": {"departement": "94", "stop_lat": 48.81505742534415, "code_postal": "94017", "stop_lon": 2.506757397808122, "coord": [48.81505742534415, 2.506757397808122], "stop_id": 3743475, "stop_desc": "43 RUE JEAN JAURES - 94017", "stop_name": "GUITTARD"}, "geometry": {"type": "Point", "coordinates": [2.506757397808122, 48.81505742534415]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1228430ae19fc9da5daa89b5daad809525079d8b", "fields": {"departement": "75", "stop_lat": 48.8686000083944, "code_postal": "75102", "stop_lon": 2.341069192464145, "coord": [48.8686000083944, 2.341069192464145], "stop_id": 3747820, "stop_desc": "11 PLACE DE LA BOURSE - 75102", "stop_name": "BOURSE"}, "geometry": {"type": "Point", "coordinates": [2.341069192464145, 48.8686000083944]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b60745c3e6ae78f76e3995108dccba15812b7d11", "fields": {"departement": "75", "stop_lat": 48.871287153820475, "code_postal": "75109", "stop_lon": 2.3317097306442087, "coord": [48.871287153820475, 2.3317097306442087], "stop_id": 3747816, "stop_desc": "FACE 1 RUE AUBER - 75109", "stop_name": "OPERA"}, "geometry": {"type": "Point", "coordinates": [2.3317097306442087, 48.871287153820475]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "211fb642e403d3b214dec42183cfa514eda19773", "fields": {"departement": "75", "stop_lat": 48.87921417131018, "code_postal": "75117", "stop_lon": 2.2912122839828744, "coord": [48.87921417131018, 2.2912122839828744], "stop_id": 3749706, "stop_desc": "5 PLACE TRISTAN BERBARD - 75117", "stop_name": "EGLISE SAINT-FERDINAND"}, "geometry": {"type": "Point", "coordinates": [2.2912122839828744, 48.87921417131018]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8a8ba62c9d428fb2430f388d0fa6d7ec801321ac", "fields": {"departement": "75", "stop_lat": 48.87478831052261, "code_postal": "75108", "stop_lon": 2.3062853319385006, "coord": [48.87478831052261, 2.3062853319385006], "stop_id": 3749699, "stop_desc": "169-171 BOULEVARD HAUSSMANN - 75108", "stop_name": "FRIEDLAND - HAUSSMANN"}, "geometry": {"type": "Point", "coordinates": [2.3062853319385006, 48.87478831052261]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "38d577c07b97262e2d47b1412ce2877d003feb46", "fields": {"departement": "75", "stop_lat": 48.880111718441405, "code_postal": "75117", "stop_lon": 2.2882545840252586, "coord": [48.880111718441405, 2.2882545840252586], "stop_id": 3749707, "stop_desc": "AV DES TERNES - 75117", "stop_name": "PEREIRE - PORTE MAILLOT"}, "geometry": {"type": "Point", "coordinates": [2.2882545840252586, 48.880111718441405]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fc09d423ea3ec7d51db8bc9bee215ac68cc02ca7", "fields": {"departement": "75", "stop_lat": 48.86702101931276, "code_postal": "75116", "stop_lon": 2.298620312356525, "coord": [48.86702101931276, 2.298620312356525], "stop_id": 3740555, "stop_desc": "24 AVENUE PIERRE 1ER DE SERBIE - 75116", "stop_name": "MARCEAU - PIERRE 1ER DE SERBIE - PLACE DE BEYROUTH"}, "geometry": {"type": "Point", "coordinates": [2.298620312356525, 48.86702101931276]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3db03b896013b797b7b6343729e637321ef70e07", "fields": {"departement": "75", "stop_lat": 48.898094104626196, "code_postal": "75118", "stop_lon": 2.359500484916856, "coord": [48.898094104626196, 2.359500484916856], "stop_id": 3740974, "stop_desc": "RUE DE LA CHAPELLE - 75118", "stop_name": "PORTE DE LA CHAPELLE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.359500484916856, 48.898094104626196]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "345b01206c8fc663831705875c0175b4a411867c", "fields": {"departement": "75", "stop_lat": 48.86303579060667, "code_postal": "75116", "stop_lon": 2.2882298532894727, "coord": [48.86303579060667, 2.2882298532894727], "stop_id": 3740533, "stop_desc": "FACE 48 AVENUE DU PRESIDENT WILSON - 75116", "stop_name": "TROCADERO"}, "geometry": {"type": "Point", "coordinates": [2.2882298532894727, 48.86303579060667]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3d2b1ecfabb288b6bba8265e93913b52bbe02b70", "fields": {"departement": "93", "stop_lat": 48.96281925443562, "code_postal": "93072", "stop_lon": 2.384790855872679, "coord": [48.96281925443562, 2.384790855872679], "stop_id": 3740987, "stop_desc": "FACE 37 AVENUE JULES GUESDE - 93072", "stop_name": "LEO LAGRANGE"}, "geometry": {"type": "Point", "coordinates": [2.384790855872679, 48.96281925443562]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "71e718db320f680b5f92b01177b4955386018b47", "fields": {"departement": "93", "stop_lat": 48.946903036868115, "code_postal": "93072", "stop_lon": 2.386672737644679, "coord": [48.946903036868115, 2.386672737644679], "stop_id": 3740977, "stop_desc": "169 BOULEVARD MAXIME GORKI - 93072", "stop_name": "CROIX BLANCHE"}, "geometry": {"type": "Point", "coordinates": [2.386672737644679, 48.946903036868115]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "80db240e23c80319db9ecf470ef5200a02cfc8f9", "fields": {"departement": "75", "stop_lat": 48.85702014290565, "code_postal": "75116", "stop_lon": 2.26461808683408, "coord": [48.85702014290565, 2.26461808683408], "stop_id": 3740542, "stop_desc": "35 BOULEVARD SUCHET - 75116", "stop_name": "PORTE DE PASSY"}, "geometry": {"type": "Point", "coordinates": [2.26461808683408, 48.85702014290565]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b012f23ad85fbbffb2770864e4df08e09d78c751", "fields": {"departement": "93", "stop_lat": 48.94932063631951, "code_postal": "93072", "stop_lon": 2.3862793551203967, "coord": [48.94932063631951, 2.3862793551203967], "stop_id": 3740979, "stop_desc": "95 BOULEVARD MAXIME GORKI - 93072", "stop_name": "LE GLOBE"}, "geometry": {"type": "Point", "coordinates": [2.3862793551203967, 48.94932063631951]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1e76328985063c9429d01e98845002b8920c0179", "fields": {"departement": "75", "stop_lat": 48.85834254861258, "code_postal": "75116", "stop_lon": 2.283998295150484, "coord": [48.85834254861258, 2.283998295150484], "stop_id": 3740554, "stop_desc": "9 RUE DE PASSY - 75116", "stop_name": "PASSY - LA TOUR"}, "geometry": {"type": "Point", "coordinates": [2.283998295150484, 48.85834254861258]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d47863b76e0e01bba9eae5b2290f869d5fab9d3a", "fields": {"departement": "75", "stop_lat": 48.860212743960716, "code_postal": "75116", "stop_lon": 2.285848837785571, "coord": [48.860212743960716, 2.285848837785571], "stop_id": 3740535, "stop_desc": "20 RUE FRANKLIN - 75116", "stop_name": "SCHEFFER"}, "geometry": {"type": "Point", "coordinates": [2.285848837785571, 48.860212743960716]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3dc968659aced1bdc1b3e9c786127bcec2de8183", "fields": {"departement": "75", "stop_lat": 48.85813741035067, "code_postal": "75116", "stop_lon": 2.269410941458637, "coord": [48.85813741035067, 2.269410941458637], "stop_id": 3740540, "stop_desc": "AVENUE INGRES - 75116", "stop_name": "RANELAGH"}, "geometry": {"type": "Point", "coordinates": [2.269410941458637, 48.85813741035067]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8bab500be79a5b5366790df197d93ae2813e4c51", "fields": {"departement": "95", "stop_lat": 48.975961680577434, "code_postal": "95268", "stop_lon": 2.3959425734505366, "coord": [48.975961680577434, 2.3959425734505366], "stop_id": 3740999, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 95268", "stop_name": "JEAN-BAPTISTE COROT - LAMARTINE"}, "geometry": {"type": "Point", "coordinates": [2.3959425734505366, 48.975961680577434]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2997411a7f12f6bbc2b5ed49cedaa71c28a7d3c0", "fields": {"departement": "93", "stop_lat": 48.908824842056234, "code_postal": "93066", "stop_lon": 2.3586597951517585, "coord": [48.908824842056234, 2.3586597951517585], "stop_id": 3741075, "stop_desc": "124 AVENUE DU PRESIDENT WILSON - 93066", "stop_name": "EGLISE DE LA PLAINE"}, "geometry": {"type": "Point", "coordinates": [2.3586597951517585, 48.908824842056234]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6771b8642f8ac761f6f62d49c48497633cae19a7", "fields": {"departement": "75", "stop_lat": 48.891507708942434, "code_postal": "75118", "stop_lon": 2.3518107469883427, "coord": [48.891507708942434, 2.3518107469883427], "stop_id": 3741063, "stop_desc": "FACE 69 RUE DES POISSONNIERS - 75118", "stop_name": "MARCADET - POISSONNIERS"}, "geometry": {"type": "Point", "coordinates": [2.3518107469883427, 48.891507708942434]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8d3562f0e302b5051b5176fc56d09960fede8fea", "fields": {"departement": "95", "stop_lat": 48.9734622776144, "code_postal": "95268", "stop_lon": 2.3982194329211333, "coord": [48.9734622776144, 2.3982194329211333], "stop_id": 3740998, "stop_desc": "AVENUE FRANCOIS MITTERRAND - 95268", "stop_name": "DE GAULLE - MITTERRAND"}, "geometry": {"type": "Point", "coordinates": [2.3982194329211333, 48.9734622776144]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "44b69c6aa3bee3cdf373f7cdaf7b1ab83de0312e", "fields": {"departement": "75", "stop_lat": 48.89766383272256, "code_postal": "75118", "stop_lon": 2.3524258665025357, "coord": [48.89766383272256, 2.3524258665025357], "stop_id": 3741068, "stop_desc": "159 RUE DES POISSONNIERS - 75118", "stop_name": "PORTE DES POISSONNIERS"}, "geometry": {"type": "Point", "coordinates": [2.3524258665025357, 48.89766383272256]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c58750d8bea6ee8a0bd17b18fdcca5f7a7a13c5c", "fields": {"departement": "75", "stop_lat": 48.88983551923764, "code_postal": "75118", "stop_lon": 2.355926185359724, "coord": [48.88983551923764, 2.355926185359724], "stop_id": 3741061, "stop_desc": "FACE 59 RUE STEPHENSON - 75118", "stop_name": "PONT MARCADET"}, "geometry": {"type": "Point", "coordinates": [2.355926185359724, 48.88983551923764]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fcd6e8bc3f09b7f505bb9d9be323d3d1498f1303", "fields": {"departement": "93", "stop_lat": 48.90595792856695, "code_postal": "93066", "stop_lon": 2.358890372990476, "coord": [48.90595792856695, 2.358890372990476], "stop_id": 3741073, "stop_desc": "80 AVENUE DU PRESIDENT WILSON - 93066", "stop_name": "PROUDHON"}, "geometry": {"type": "Point", "coordinates": [2.358890372990476, 48.90595792856695]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "08e8eeabfe9da3700f3e58aa2f31ad3fc91f74fc", "fields": {"departement": "93", "stop_lat": 48.96432742015381, "code_postal": "93072", "stop_lon": 2.388627456697834, "coord": [48.96432742015381, 2.388627456697834], "stop_id": 3740989, "stop_desc": "FACE 83 AVENUE JULES GUESDE - 93072", "stop_name": "L'AVENIR"}, "geometry": {"type": "Point", "coordinates": [2.388627456697834, 48.96432742015381]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2335c184bf5afbf565d0ec04b7f99c53bd836e1d", "fields": {"departement": "75", "stop_lat": 48.88097388157959, "code_postal": "75110", "stop_lon": 2.357381029341471, "coord": [48.88097388157959, 2.357381029341471], "stop_id": 3741052, "stop_desc": "GARE ROUTIERE - 75110", "stop_name": "GARE DU NORD"}, "geometry": {"type": "Point", "coordinates": [2.357381029341471, 48.88097388157959]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "07db18feff69c72bc337d1d63bdc5c9556f25dfa", "fields": {"departement": "75", "stop_lat": 48.89041977052216, "code_postal": "75118", "stop_lon": 2.355381236320418, "coord": [48.89041977052216, 2.355381236320418], "stop_id": 3741062, "stop_desc": "RUE ORDENER - 75118", "stop_name": "PONT MARCADET"}, "geometry": {"type": "Point", "coordinates": [2.355381236320418, 48.89041977052216]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2fa35ea7837b03136f9808645aa179ad79279436", "fields": {"departement": "75", "stop_lat": 48.88267396530856, "code_postal": "75109", "stop_lon": 2.34425893510232, "coord": [48.88267396530856, 2.34425893510232], "stop_id": 3740337, "stop_desc": "FACE 68 BOULEVARD DE ROCHECHOUART - 75109", "stop_name": "ANVERS - SACRE COEUR"}, "geometry": {"type": "Point", "coordinates": [2.34425893510232, 48.88267396530856]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "99462639f91968e5523f106f43d6d42d791b30eb", "fields": {"departement": "75", "stop_lat": 48.881963047854896, "code_postal": "75108", "stop_lon": 2.3208344308278557, "coord": [48.881963047854896, 2.3208344308278557], "stop_id": 3740331, "stop_desc": "43 BIS BOULEVARD DES BATIGNOLLES - 75108", "stop_name": "ROME - BATIGNOLLES"}, "geometry": {"type": "Point", "coordinates": [2.3208344308278557, 48.881963047854896]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d4608ccb90a3b498f59a2125bfd883a173d7ae33", "fields": {"departement": "75", "stop_lat": 48.88270045779929, "code_postal": "75108", "stop_lon": 2.3245679838907285, "coord": [48.88270045779929, 2.3245679838907285], "stop_id": 3740332, "stop_desc": "23 BOULEVARD DES BATIGNOLLES - 75108", "stop_name": "TURIN - BATIGNOLLES"}, "geometry": {"type": "Point", "coordinates": [2.3245679838907285, 48.88270045779929]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2adad0b4cc37ebd8f2ab926da27fcc3a5a3e87d8", "fields": {"departement": "75", "stop_lat": 48.876032563673256, "code_postal": "75109", "stop_lon": 2.339312087994025, "coord": [48.876032563673256, 2.339312087994025], "stop_id": 3740509, "stop_desc": "18 RUE DE CHATEAUDUN - 75109", "stop_name": "CARREFOUR DE CHATEAUDUN"}, "geometry": {"type": "Point", "coordinates": [2.339312087994025, 48.876032563673256]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ac000c9ae1932e3b364b8eccb1afb3eed7860ea0", "fields": {"departement": "75", "stop_lat": 48.87432421623703, "code_postal": "75108", "stop_lon": 2.3236299251277788, "coord": [48.87432421623703, 2.3236299251277788], "stop_id": 3740517, "stop_desc": "94 BOULEVARD HAUSSMANN - 75108", "stop_name": "PASQUIER - ANJOU"}, "geometry": {"type": "Point", "coordinates": [2.3236299251277788, 48.87432421623703]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b0aa01f744d54102858c30db0c5ab6ee083c73c3", "fields": {"departement": "75", "stop_lat": 48.87611168124885, "code_postal": "75110", "stop_lon": 2.357883275054754, "coord": [48.87611168124885, 2.357883275054754], "stop_id": 3740502, "stop_desc": "9-11 RUE DU 8 MAI 1945 - 75110", "stop_name": "GARE DE L'EST"}, "geometry": {"type": "Point", "coordinates": [2.357883275054754, 48.87611168124885]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2760bbb19cc4f81c6c2760843488281f65fd37d4", "fields": {"departement": "75", "stop_lat": 48.863359257762404, "code_postal": "75116", "stop_lon": 2.28803884120187, "coord": [48.863359257762404, 2.28803884120187], "stop_id": 3740532, "stop_desc": "50 AVENUE DU PRESIDENT WILSON - 75116", "stop_name": "TROCADERO"}, "geometry": {"type": "Point", "coordinates": [2.28803884120187, 48.863359257762404]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6c89ba37327cdfcad4b188074439696d531036ac", "fields": {"departement": "75", "stop_lat": 48.88159396071515, "code_postal": "75117", "stop_lon": 2.3168828140764535, "coord": [48.88159396071515, 2.3168828140764535], "stop_id": 3740310, "stop_desc": "98 BOULEVARD DES BATIGNOLLES - 75117", "stop_name": "VILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.3168828140764535, 48.88159396071515]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1ffc8ed93d7b01721ff77c3297f5776f1ce71393", "fields": {"departement": "75", "stop_lat": 48.87843513550398, "code_postal": "75117", "stop_lon": 2.2993203500650656, "coord": [48.87843513550398, 2.2993203500650656], "stop_id": 3740314, "stop_desc": "128 BOULEVARD DE COURCELLES - 75117", "stop_name": "TERNES"}, "geometry": {"type": "Point", "coordinates": [2.2993203500650656, 48.87843513550398]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ff1d1ae05b224bf1ecbe644a1d2a756b14005026", "fields": {"departement": "75", "stop_lat": 48.883788451969494, "code_postal": "75109", "stop_lon": 2.331544866765384, "coord": [48.883788451969494, 2.331544866765384], "stop_id": 3740334, "stop_desc": "57 BOULEVARD DE CLICHY - 75109", "stop_name": "BLANCHE"}, "geometry": {"type": "Point", "coordinates": [2.331544866765384, 48.883788451969494]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d1efffd14ff4d1f58b94a48e81f292274ed9eb20", "fields": {"departement": "91", "stop_lat": 48.69391547251368, "code_postal": "91589", "stop_lon": 2.3655909462287816, "coord": [48.69391547251368, 2.3655909462287816], "stop_id": 3732157, "stop_desc": "325 BOULEVARD ARISTIDE BRIAND - 91589", "stop_name": "CIMETIERE DE SAVIGNY-SUR-ORGE"}, "geometry": {"type": "Point", "coordinates": [2.3655909462287816, 48.69391547251368]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dbe0442c15ae94e0b4df553b2f178f086ff4561c", "fields": {"departement": "91", "stop_lat": 48.679662646151584, "code_postal": "91589", "stop_lon": 2.344801703087946, "coord": [48.679662646151584, 2.344801703087946], "stop_id": 3732166, "stop_desc": "FACE 53 AVENUE CHARLES DE GAULLE - 91589", "stop_name": "CENTRE ADMINISTRATIF"}, "geometry": {"type": "Point", "coordinates": [2.344801703087946, 48.679662646151584]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cb2c8ce8c197abbe0c2eb2e7154f5cb1c9071807", "fields": {"departement": "91", "stop_lat": 48.68811042850665, "code_postal": "91589", "stop_lon": 2.3578630407104293, "coord": [48.68811042850665, 2.3578630407104293], "stop_id": 3732140, "stop_desc": "193 BOULEVARD ARISTIDE BRIAND - 91589", "stop_name": "ARISTIDE BRIAND - CHAMPAGNE"}, "geometry": {"type": "Point", "coordinates": [2.3578630407104293, 48.68811042850665]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7d05a5df72f95135d92e5fef3e4f7743625c93c7", "fields": {"departement": "91", "stop_lat": 48.692258585581776, "code_postal": "91326", "stop_lon": 2.3761394374852545, "coord": [48.692258585581776, 2.3761394374852545], "stop_id": 3732150, "stop_desc": "60 AVENUE D'ESTIENNE D'ORVES - 91326", "stop_name": "MARCHE DE JUVISY"}, "geometry": {"type": "Point", "coordinates": [2.3761394374852545, 48.692258585581776]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "492d13f3c24dcebcd6f0a9f116d54a68069b0748", "fields": {"departement": "91", "stop_lat": 48.692258585581776, "code_postal": "91326", "stop_lon": 2.3761394374852545, "coord": [48.692258585581776, 2.3761394374852545], "stop_id": 3732178, "stop_desc": "60 AVENUE D'ESTIENNE D'ORVES - 91326", "stop_name": "MARCHE DE JUVISY"}, "geometry": {"type": "Point", "coordinates": [2.3761394374852545, 48.692258585581776]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "990078c9bf8479679777fe16eef1ad7c04b80068", "fields": {"departement": "91", "stop_lat": 48.69136332994177, "code_postal": "91589", "stop_lon": 2.3628741864603233, "coord": [48.69136332994177, 2.3628741864603233], "stop_id": 3732141, "stop_desc": "168 BD ARISTIDE BRIAND - 91589", "stop_name": "TOURTERELLES"}, "geometry": {"type": "Point", "coordinates": [2.3628741864603233, 48.69136332994177]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "703ec40b30060566e1716483abf74975d7064ebf", "fields": {"departement": "91", "stop_lat": 48.69324782302952, "code_postal": "91326", "stop_lon": 2.3746059371922, "coord": [48.69324782302952, 2.3746059371922], "stop_id": 3732154, "stop_desc": "36 AVENUE RASPAIL - 91326", "stop_name": "PARC DES GROTTES"}, "geometry": {"type": "Point", "coordinates": [2.3746059371922, 48.69324782302952]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b9594de73e8bfdaccb98f0ab8f04c59ca4de52d7", "fields": {"departement": "91", "stop_lat": 48.69324782302952, "code_postal": "91326", "stop_lon": 2.3746059371922, "coord": [48.69324782302952, 2.3746059371922], "stop_id": 3732180, "stop_desc": "36 AVENUE RASPAIL - 91326", "stop_name": "PARC DES GROTTES"}, "geometry": {"type": "Point", "coordinates": [2.3746059371922, 48.69324782302952]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b16dd2b99d705c42fda8e6b61975c5a61e7c41ef", "fields": {"departement": "91", "stop_lat": 48.69398544536874, "code_postal": "91326", "stop_lon": 2.372787077174569, "coord": [48.69398544536874, 2.372787077174569], "stop_id": 3732207, "stop_desc": "32 AVENUE CAMILLE FLAMMARION - 91326", "stop_name": "THIERS"}, "geometry": {"type": "Point", "coordinates": [2.372787077174569, 48.69398544536874]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9d70c665df50d4d409c8c93d06c927676af06833", "fields": {"departement": "91", "stop_lat": 48.69592612478876, "code_postal": "91326", "stop_lon": 2.375531166766716, "coord": [48.69592612478876, 2.375531166766716], "stop_id": 3732147, "stop_desc": "25 AVENUE GOUNOD - 91326", "stop_name": "BOTHEREL"}, "geometry": {"type": "Point", "coordinates": [2.375531166766716, 48.69592612478876]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "91bf200f65b9735028662204ae5edce5d0880980", "fields": {"departement": "75", "stop_lat": 48.87529316389243, "code_postal": "75108", "stop_lon": 2.3130430364059853, "coord": [48.87529316389243, 2.3130430364059853], "stop_id": 3749694, "stop_desc": "142 BOULEVARD HAUSSMANN - 75108", "stop_name": "HAUSSMANN - MIROMESNIL"}, "geometry": {"type": "Point", "coordinates": [2.3130430364059853, 48.87529316389243]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7cec3537ff0e4be032aa865944fbc9b137e72463", "fields": {"departement": "75", "stop_lat": 48.876697570163095, "code_postal": "75109", "stop_lon": 2.341355921470186, "coord": [48.876697570163095, 2.341355921470186], "stop_id": 3749681, "stop_desc": "9 RUE DE MAUBEUGE - 75109", "stop_name": "CHATEAUDUN - LAMARTINE"}, "geometry": {"type": "Point", "coordinates": [2.341355921470186, 48.876697570163095]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e32fd853bb07ab738d05bb81010a0f788501bf19", "fields": {"departement": "75", "stop_lat": 48.887059936615465, "code_postal": "75118", "stop_lon": 2.337663525346581, "coord": [48.887059936615465, 2.337663525346581], "stop_id": 3749671, "stop_desc": "100-102 RUE LEPIC - 75118", "stop_name": "MOULIN DE LA GALETTE"}, "geometry": {"type": "Point", "coordinates": [2.337663525346581, 48.887059936615465]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1df977222343e1e6e64fc69e1f3224e811cb377f", "fields": {"departement": "75", "stop_lat": 48.880390553874314, "code_postal": "75110", "stop_lon": 2.351535098083727, "coord": [48.880390553874314, 2.351535098083727], "stop_id": 3749678, "stop_desc": "77-79 RUE DE MAUBEUGE - 75110", "stop_name": "MAGENTA - MAUBEUGE"}, "geometry": {"type": "Point", "coordinates": [2.351535098083727, 48.880390553874314]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2da1d8741162d105788ce93fb5de8a417ad6403d", "fields": {"departement": "75", "stop_lat": 48.888075465446754, "code_postal": "75118", "stop_lon": 2.3397486742100146, "coord": [48.888075465446754, 2.3397486742100146], "stop_id": 3749672, "stop_desc": "12-14 RUE DES SAULES - 75118", "stop_name": "LES VIGNES"}, "geometry": {"type": "Point", "coordinates": [2.3397486742100146, 48.888075465446754]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dfe8a5003b51c6cd15e2fdc48d1c8bbb8598bb60", "fields": {"departement": "75", "stop_lat": 48.88338413495622, "code_postal": "75118", "stop_lon": 2.3398438383500104, "coord": [48.88338413495622, 2.3398438383500104], "stop_id": 3749666, "stop_desc": "86-88 RUE DES MARTYRS - 75118", "stop_name": "ORSEL"}, "geometry": {"type": "Point", "coordinates": [2.3398438383500104, 48.88338413495622]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b3381b1b1da9b0733ba70160c3b722c87e6291b8", "fields": {"departement": "75", "stop_lat": 48.88073927491752, "code_postal": "75117", "stop_lon": 2.284615729895482, "coord": [48.88073927491752, 2.284615729895482], "stop_id": 3749710, "stop_desc": "FACE 2 PLACE DU GENERAL KOENIG - 75117", "stop_name": "GENERAL KOENIG - PALAIS DES CONGRES"}, "geometry": {"type": "Point", "coordinates": [2.284615729895482, 48.88073927491752]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3ff38f159ed7dcd1fb758a91c49fca6a35049e16", "fields": {"departement": "75", "stop_lat": 48.88243186331477, "code_postal": "75119", "stop_lon": 2.382632220716057, "coord": [48.88243186331477, 2.382632220716057], "stop_id": 3749757, "stop_desc": "FACE 7 PLACE ARMAND CARREL - 75119", "stop_name": "ARMAND CARREL - MAIRIE DU 19E"}, "geometry": {"type": "Point", "coordinates": [2.382632220716057, 48.88243186331477]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0f4ddba7bbaccb67d89afda0e293c462bfa9e060", "fields": {"departement": "92", "stop_lat": 48.877178860829154, "code_postal": "92051", "stop_lon": 2.251223214396305, "coord": [48.877178860829154, 2.251223214396305], "stop_id": 3749729, "stop_desc": "FACE 97BIS RUE DE LONGCHAMP - 92051", "stop_name": "PLACE DE BAGATELLE"}, "geometry": {"type": "Point", "coordinates": [2.251223214396305, 48.877178860829154]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "72370aa790c5c201f561623edc91c62df08307ed", "fields": {"departement": "92", "stop_lat": 48.881072510051695, "code_postal": "92051", "stop_lon": 2.254269097155883, "coord": [48.881072510051695, 2.254269097155883], "stop_id": 3749724, "stop_desc": "56 RUE DE LONGCHAMP - 92051", "stop_name": "RUE DU BOIS DE BOULOGNE"}, "geometry": {"type": "Point", "coordinates": [2.254269097155883, 48.881072510051695]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3addfcc9d7a5a64648e3b904c6761d464d9b789b", "fields": {"departement": "75", "stop_lat": 48.87604613955116, "code_postal": "75119", "stop_lon": 2.393772054863151, "coord": [48.87604613955116, 2.393772054863151], "stop_id": 3749751, "stop_desc": "17-19 RUE AUGUSTIN THIERRY - 75119", "stop_name": "PLACE DES FETES"}, "geometry": {"type": "Point", "coordinates": [2.393772054863151, 48.87604613955116]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3438428d0a56f85e8e0d238da6484d8f4755b803", "fields": {"departement": "75", "stop_lat": 48.880334893779356, "code_postal": "75119", "stop_lon": 2.4072668082900868, "coord": [48.880334893779356, 2.4072668082900868], "stop_id": 3749744, "stop_desc": "55 AVENUE DU BELVEDERE - 75119", "stop_name": "JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.4072668082900868, 48.880334893779356]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ad604b8c187eec42c7c611386ab525733dc73fdd", "fields": {"departement": "75", "stop_lat": 48.88287490815723, "code_postal": "75119", "stop_lon": 2.374974231125722, "coord": [48.88287490815723, 2.374974231125722], "stop_id": 3749758, "stop_desc": "58 RUE ARMAND CARREL - 75119", "stop_name": "RUE DE MEAUX"}, "geometry": {"type": "Point", "coordinates": [2.374974231125722, 48.88287490815723]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "88d02af10890fa5fbd2b23f5bc54709663fc593c", "fields": {"departement": "92", "stop_lat": 48.87922972282795, "code_postal": "92051", "stop_lon": 2.2536997527624316, "coord": [48.87922972282795, 2.2536997527624316], "stop_id": 3749727, "stop_desc": "5 BIS RUE DU CENTRE - 92051", "stop_name": "RUE DU CENTRE"}, "geometry": {"type": "Point", "coordinates": [2.2536997527624316, 48.87922972282795]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0084ad6d34fdebdb1f8c1820bc7673ce4c0654f6", "fields": {"departement": "75", "stop_lat": 48.869469015384865, "code_postal": "75108", "stop_lon": 2.3113019501850944, "coord": [48.869469015384865, 2.3113019501850944], "stop_id": 3749910, "stop_desc": "FACE 3 AVENUE MATIGNON - 75108", "stop_name": "ROND-POINT DES CHAMPS-ELYSEES - MATIGNON"}, "geometry": {"type": "Point", "coordinates": [2.3113019501850944, 48.869469015384865]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4b173bdfc91657043d80d1653595a19ef29a7782", "fields": {"departement": "75", "stop_lat": 48.84876740451529, "code_postal": "75115", "stop_lon": 2.2981436574704905, "coord": [48.84876740451529, 2.2981436574704905], "stop_id": 3749894, "stop_desc": "130 BOULEVARD DE GRENELLE - 75115", "stop_name": "LA MOTTE PICQUET - GRENELLE"}, "geometry": {"type": "Point", "coordinates": [2.2981436574704905, 48.84876740451529]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1a3af6bcaea98dd9ded86036791e41950933d81b", "fields": {"departement": "75", "stop_lat": 48.83959225019507, "code_postal": "75115", "stop_lon": 2.301677023842893, "coord": [48.83959225019507, 2.301677023842893], "stop_id": 3749883, "stop_desc": "FACE 252 RUE DE VAUGIRARD - 75115", "stop_name": "VAUGIRARD - FAVORITES"}, "geometry": {"type": "Point", "coordinates": [2.301677023842893, 48.83959225019507]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c00e3061b2afbfef1bebe3b0fd80f70638bd1d5d", "fields": {"departement": "75", "stop_lat": 48.83276610455111, "code_postal": "75115", "stop_lon": 2.28873493607968, "coord": [48.83276610455111, 2.28873493607968], "stop_id": 3749877, "stop_desc": "403 BIS RUE DE VAUGIRARD - 75115", "stop_name": "PORTE DE VERSAILLES."}, "geometry": {"type": "Point", "coordinates": [2.28873493607968, 48.83276610455111]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "47529a075a8bf232998ebb43b3410f28224066d5", "fields": {"departement": "75", "stop_lat": 48.885181424384605, "code_postal": "75118", "stop_lon": 2.3306180358391235, "coord": [48.885181424384605, 2.3306180358391235], "stop_id": 3749923, "stop_desc": "8 RUE CAULAINCOURT - 75118", "stop_name": "CLICHY - CAULAINCOURT"}, "geometry": {"type": "Point", "coordinates": [2.3306180358391235, 48.885181424384605]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "91220839d4b4a05fbbb3087610be52652f39106d", "fields": {"departement": "75", "stop_lat": 48.84299874653093, "code_postal": "75115", "stop_lon": 2.302409980498977, "coord": [48.84299874653093, 2.302409980498977], "stop_id": 3749886, "stop_desc": "78 RUE DE CAMBRONNE - 75115", "stop_name": "CAMBRONNE - LECOURBE"}, "geometry": {"type": "Point", "coordinates": [2.302409980498977, 48.84299874653093]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d79311e08a3b330cabc88e68eb67b7e49f1806ea", "fields": {"departement": "75", "stop_lat": 48.833070896850366, "code_postal": "75115", "stop_lon": 2.286842315231685, "coord": [48.833070896850366, 2.286842315231685], "stop_id": 3749875, "stop_desc": "BOULEVARD VICTOR - 75115", "stop_name": "PORTE DE VERSAILLES"}, "geometry": {"type": "Point", "coordinates": [2.286842315231685, 48.833070896850366]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "27bbcd68e0e5fc6d55212e08fe286f72f281a464", "fields": {"departement": "75", "stop_lat": 48.851419759852476, "code_postal": "75107", "stop_lon": 2.3014782493507147, "coord": [48.851419759852476, 2.3014782493507147], "stop_id": 3749895, "stop_desc": "23 PLACE JOFFRE - 75107", "stop_name": "GAL DE BOLLARDIERE"}, "geometry": {"type": "Point", "coordinates": [2.3014782493507147, 48.851419759852476]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c9b0a3a5abe824005aa2947364d23f4b42241606", "fields": {"departement": "75", "stop_lat": 48.87576218699689, "code_postal": "75108", "stop_lon": 2.3236567975351456, "coord": [48.87576218699689, 2.3236567975351456], "stop_id": 3749916, "stop_desc": "17 RUE DE ROME - 75108", "stop_name": "GARE SAINT-LAZARE"}, "geometry": {"type": "Point", "coordinates": [2.3236567975351456, 48.87576218699689]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0d06769865a6dfceed675a2a483c09a0c8adf4e0", "fields": {"departement": "94", "stop_lat": 48.80928933116081, "code_postal": "94043", "stop_lon": 2.358088049981442, "coord": [48.80928933116081, 2.358088049981442], "stop_id": 3754328, "stop_desc": "1 RUE DE VERDUN-LAZARE PONTICELLI - 94043", "stop_name": "HOPITAL DU KREMLIN-BICETRE"}, "geometry": {"type": "Point", "coordinates": [2.358088049981442, 48.80928933116081]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b180d393e3178d9abe796f5c515cef0c611da04a", "fields": {"departement": "75", "stop_lat": 48.82645768040182, "code_postal": "75114", "stop_lon": 2.3385614505506465, "coord": [48.82645768040182, 2.3385614505506465], "stop_id": 3754283, "stop_desc": "RUE DE LA SIBELLE - 75114", "stop_name": "THOMAS FRANCINE"}, "geometry": {"type": "Point", "coordinates": [2.3385614505506465, 48.82645768040182]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "22d186854a207639347e52b1b1c8e70cdfaa45c6", "fields": {"departement": "75", "stop_lat": 48.825414872145686, "code_postal": "75114", "stop_lon": 2.3295775596781514, "coord": [48.825414872145686, 2.3295775596781514], "stop_id": 3754278, "stop_desc": "40 RUE DU PERE CORENTIN - 75114", "stop_name": "PERE CORENTIN"}, "geometry": {"type": "Point", "coordinates": [2.3295775596781514, 48.825414872145686]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c34de51440e6b527e94ee21d2db163d476ba9f0d", "fields": {"departement": "94", "stop_lat": 48.81364075955538, "code_postal": "94037", "stop_lon": 2.3478423484763105, "coord": [48.81364075955538, 2.3478423484763105], "stop_id": 3754321, "stop_desc": "73 AVENUE RASPAIL - 94037", "stop_name": "REINE BLANCHE"}, "geometry": {"type": "Point", "coordinates": [2.3478423484763105, 48.81364075955538]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bbec61d7f2e671d5175b6a0f370fe073f2e195ab", "fields": {"departement": "94", "stop_lat": 48.802531952188296, "code_postal": "94043", "stop_lon": 2.3467380034215988, "coord": [48.802531952188296, 2.3467380034215988], "stop_id": 3754332, "stop_desc": "35 R LEO LAGRANGE - 94043", "stop_name": "LEO LAGRANGE"}, "geometry": {"type": "Point", "coordinates": [2.3467380034215988, 48.802531952188296]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1fd9716550a4d2baea5e37817c3d95523cb4dbae", "fields": {"departement": "75", "stop_lat": 48.8253610601409, "code_postal": "75113", "stop_lon": 2.342890007704927, "coord": [48.8253610601409, 2.342890007704927], "stop_id": 3754285, "stop_desc": "45 RUE BOUSSINGAULT - 75113", "stop_name": "BOUSSINGAULT"}, "geometry": {"type": "Point", "coordinates": [2.342890007704927, 48.8253610601409]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8c97c8e99e93af531b684ad096415e4dbe4b27be", "fields": {"departement": "75", "stop_lat": 48.82457027122062, "code_postal": "75114", "stop_lon": 2.338643073121751, "coord": [48.82457027122062, 2.338643073121751], "stop_id": 3754270, "stop_desc": "40 AVENUE REILLE - 75114", "stop_name": "LA SIBELLE"}, "geometry": {"type": "Point", "coordinates": [2.338643073121751, 48.82457027122062]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f70842eb7f0f808a560da5208486cd8b3dd5a0d8", "fields": {"departement": "75", "stop_lat": 48.82211592393122, "code_postal": "75113", "stop_lon": 2.3503485111190985, "coord": [48.82211592393122, 2.3503485111190985], "stop_id": 3754288, "stop_desc": "FACE 16 RUE KUSS - 75113", "stop_name": "KUSS"}, "geometry": {"type": "Point", "coordinates": [2.3503485111190985, 48.82211592393122]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b4fd832955a173d4aa6c6a39ee7729ce01eae8f4", "fields": {"departement": "91", "stop_lat": 48.68646771220963, "code_postal": "91345", "stop_lon": 2.2921294721319643, "coord": [48.68646771220963, 2.2921294721319643], "stop_id": 3757233, "stop_desc": "20-26 BOULEVARD DU DOCTEUR CATHELIN - 91345", "stop_name": "RESIDENCE FONTANGES"}, "geometry": {"type": "Point", "coordinates": [2.2921294721319643, 48.68646771220963]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "408d0fff3d7a8c76da90de076810ebb6c09c43b3", "fields": {"departement": "91", "stop_lat": 48.70659351216114, "code_postal": "91136", "stop_lon": 2.273411217454407, "coord": [48.70659351216114, 2.273411217454407], "stop_id": 3757217, "stop_desc": "FACE144BIS ROUTE DE VERSAILLES - 91136", "stop_name": "MAIRIE DE CHAMPLAN"}, "geometry": {"type": "Point", "coordinates": [2.273411217454407, 48.70659351216114]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0ff19a7e643b82ff67cb17829b43199b39df47b8", "fields": {"departement": "91", "stop_lat": 48.710858608611034, "code_postal": "91136", "stop_lon": 2.2656371121606407, "coord": [48.710858608611034, 2.2656371121606407], "stop_id": 3757214, "stop_desc": "FACE 199 ROUTE DE VERSAILLES - 91136", "stop_name": "BUTTE CHAUMONT"}, "geometry": {"type": "Point", "coordinates": [2.2656371121606407, 48.710858608611034]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "978a745e3cce13c252e471bae770f38f8fa7d408", "fields": {"departement": "91", "stop_lat": 48.70391868030383, "code_postal": "91136", "stop_lon": 2.280802089957941, "coord": [48.70391868030383, 2.280802089957941], "stop_id": 3757192, "stop_desc": "FACE99-101 ROUTE DE VERSAILLES - 91136", "stop_name": "PETIT CHAMPLAN"}, "geometry": {"type": "Point", "coordinates": [2.280802089957941, 48.70391868030383]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "533c524e8fb7cdf264d0310cd9953676a3243ab1", "fields": {"departement": "91", "stop_lat": 48.69036349266314, "code_postal": "91587", "stop_lon": 2.2798935862636833, "coord": [48.69036349266314, 2.2798935862636833], "stop_id": 3757199, "stop_desc": "32-36 RUE DU PONT NEUF - 91587", "stop_name": "PABLO PICASSO"}, "geometry": {"type": "Point", "coordinates": [2.2798935862636833, 48.69036349266314]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a27d12a5ac3576fd5b4a5f5d6f2e4f795cbcff6c", "fields": {"departement": "91", "stop_lat": 48.720482904837056, "code_postal": "91377", "stop_lon": 2.261888133745016, "coord": [48.720482904837056, 2.261888133745016], "stop_id": 3757201, "stop_desc": "9 RUE EMILE BAUDOT - 91377", "stop_name": "BARBUSSE-BAUDOT"}, "geometry": {"type": "Point", "coordinates": [2.261888133745016, 48.720482904837056]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "17ddfdd3e64ec88b8cdae67e771ff6a5716cb4a9", "fields": {"departement": "91", "stop_lat": 48.720455844753424, "code_postal": "91477", "stop_lon": 2.2617387440156054, "coord": [48.720455844753424, 2.2617387440156054], "stop_id": 3757206, "stop_desc": "RUE EMILE BAUDOT - 91477", "stop_name": "BARBUSSE-BAUDOT"}, "geometry": {"type": "Point", "coordinates": [2.2617387440156054, 48.720455844753424]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1faa7e245672a3483947a170074a800cb651c7ee", "fields": {"departement": "91", "stop_lat": 48.70948533298787, "code_postal": "91136", "stop_lon": 2.2689664907576734, "coord": [48.70948533298787, 2.2689664907576734], "stop_id": 3757216, "stop_desc": "36-38 RUE DE LA MAIRIE - 91136", "stop_name": "LA FONTAINE"}, "geometry": {"type": "Point", "coordinates": [2.2689664907576734, 48.70948533298787]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cca251d41d871c2104be3a52176d63d6d7fb7421", "fields": {"departement": "91", "stop_lat": 48.69625528152623, "code_postal": "91345", "stop_lon": 2.2895275620689732, "coord": [48.69625528152623, 2.2895275620689732], "stop_id": 3757198, "stop_desc": "RUE DU CANAL - 91345", "stop_name": "CANAL DE L'YVETTE"}, "geometry": {"type": "Point", "coordinates": [2.2895275620689732, 48.69625528152623]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d16e72ca975e6114dc6473dff0eadfd7a6c5f8c5", "fields": {"departement": "94", "stop_lat": 48.79491959443785, "code_postal": "94016", "stop_lon": 2.33473795344113, "coord": [48.79491959443785, 2.33473795344113], "stop_id": 3786309, "stop_desc": "FACE 8 R GALLIENI - 94016", "stop_name": "CENTRE VILLE."}, "geometry": {"type": "Point", "coordinates": [2.33473795344113, 48.79491959443785]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "efb7e9ba215a5af22622071535ee48de22588648", "fields": {"departement": "94", "stop_lat": 48.79494653952937, "code_postal": "94016", "stop_lon": 2.333976132094692, "coord": [48.79494653952937, 2.333976132094692], "stop_id": 3786323, "stop_desc": "FACE 8 R GALLIENI - 94016", "stop_name": "CENTRE VILLE"}, "geometry": {"type": "Point", "coordinates": [2.333976132094692, 48.79494653952937]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "04ef48fd942fd3e5a525bdc3e5f537bba4f0eaf9", "fields": {"departement": "94", "stop_lat": 48.79709463577202, "code_postal": "94016", "stop_lon": 2.3338127426577424, "coord": [48.79709463577202, 2.3338127426577424], "stop_id": 3786334, "stop_desc": "FACE 62 AVENUE COUSIN DE MERICOURT - 94016", "stop_name": "COUSIN DE MERICOURT"}, "geometry": {"type": "Point", "coordinates": [2.3338127426577424, 48.79709463577202]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "685fbff89391bb24732c29f56c207ef03d047dcd", "fields": {"departement": "94", "stop_lat": 48.81007292302495, "code_postal": "94037", "stop_lon": 2.3435823500614354, "coord": [48.81007292302495, 2.3435823500614354], "stop_id": 3792956, "stop_desc": "82 AVENUE RASPAIL - 94037", "stop_name": "FRAYSSE - VAL DE BIEVRE"}, "geometry": {"type": "Point", "coordinates": [2.3435823500614354, 48.81007292302495]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a7792c95b5aa50b198168e5e9b2b7c6d0d997240", "fields": {"departement": "94", "stop_lat": 48.80455458275324, "code_postal": "94003", "stop_lon": 2.336043705709114, "coord": [48.80455458275324, 2.336043705709114], "stop_id": 3792959, "stop_desc": "11 AVENUE FRANCOIS VINCENT RASPAIL - 94003", "stop_name": "LOUIS FREBAULT"}, "geometry": {"type": "Point", "coordinates": [2.336043705709114, 48.80455458275324]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8f5a82e82953a1047a20953c555fa67699fb5f7a", "fields": {"departement": "94", "stop_lat": 48.790164885806014, "code_postal": "94016", "stop_lon": 2.3315007465699185, "coord": [48.790164885806014, 2.3315007465699185], "stop_id": 3792968, "stop_desc": "FACE 1 AV DE LA DIVISION LECLERC - 94016", "stop_name": "DIVISION LECLERC - CAMILLE DESMOULINS"}, "geometry": {"type": "Point", "coordinates": [2.3315007465699185, 48.790164885806014]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0d396d0830bad1e4d81336cb0b972fc0bc345951", "fields": {"departement": "94", "stop_lat": 48.77838179451567, "code_postal": "94038", "stop_lon": 2.3348747498291758, "coord": [48.77838179451567, 2.3348747498291758], "stop_id": 3792973, "stop_desc": "7-9 RUE JEAN JAURES - 94038", "stop_name": "SOUS-PREFECTURE - EGLISE DE L'HAY-LES-ROSES"}, "geometry": {"type": "Point", "coordinates": [2.3348747498291758, 48.77838179451567]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "793c63ae409becc90b32ea5d62b3136b00881e59", "fields": {"departement": "94", "stop_lat": 48.76704773173498, "code_postal": "94038", "stop_lon": 2.330809877681118, "coord": [48.76704773173498, 2.330809877681118], "stop_id": 3792979, "stop_desc": "FACE 13 RUE CHARLES GIDE - 94038", "stop_name": "CHARLES PERRAULT"}, "geometry": {"type": "Point", "coordinates": [2.330809877681118, 48.76704773173498]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f6dca7bc5c1cc55fdcacddd0fe8302bf91a27d93", "fields": {"departement": "94", "stop_lat": 48.755973573677295, "code_postal": "94034", "stop_lon": 2.322016108850226, "coord": [48.755973573677295, 2.322016108850226], "stop_id": 3792985, "stop_desc": "SQUARE DU 19 MARS 1962 - 94034", "stop_name": "MAIRIE DE FRESNES"}, "geometry": {"type": "Point", "coordinates": [2.322016108850226, 48.755973573677295]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "99f503bb1f7024f2252b967e282231d6227e5157", "fields": {"departement": "94", "stop_lat": 48.75492143665341, "code_postal": "94034", "stop_lon": 2.3183733720797615, "coord": [48.75492143665341, 2.3183733720797615], "stop_id": 3792988, "stop_desc": "23 BOULEVARD JEAN JAURES - 94034", "stop_name": "LES ANEMONES"}, "geometry": {"type": "Point", "coordinates": [2.3183733720797615, 48.75492143665341]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4468f9ef54692ca843dba4bb9cbff92766cf07ca", "fields": {"departement": "94", "stop_lat": 48.7543631910671, "code_postal": "94034", "stop_lon": 2.3129770321900693, "coord": [48.7543631910671, 2.3129770321900693], "stop_id": 3792989, "stop_desc": "95-97 BOULEVARD PASTEUR - 94034", "stop_name": "VERDUN"}, "geometry": {"type": "Point", "coordinates": [2.3129770321900693, 48.7543631910671]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "73521ccf947efb9e0e63687ea545d5947a450464", "fields": {"departement": "94", "stop_lat": 48.756889356962006, "code_postal": "94034", "stop_lon": 2.3155315180484903, "coord": [48.756889356962006, 2.3155315180484903], "stop_id": 3792990, "stop_desc": "FACE 38 BD PASTEUR - 94034", "stop_name": "LA PEUPLERAIE"}, "geometry": {"type": "Point", "coordinates": [2.3155315180484903, 48.756889356962006]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a64dd8ddf6ac25881a0740d516b5fb57c014871f", "fields": {"departement": "94", "stop_lat": 48.756961219677066, "code_postal": "94034", "stop_lon": 2.315300390249999, "coord": [48.756961219677066, 2.315300390249999], "stop_id": 3792991, "stop_desc": "FACE 65 BD PASTEUR - 94034", "stop_name": "LA PEUPLERAIE"}, "geometry": {"type": "Point", "coordinates": [2.315300390249999, 48.756961219677066]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d582da3e3ac5a13445ed0cab5d6857cffe35fc78", "fields": {"departement": "92", "stop_lat": 48.7902763590761, "code_postal": "92048", "stop_lon": 2.227698450190972, "coord": [48.7902763590761, 2.227698450190972], "stop_id": 5121648, "stop_desc": "AVENUE HENRI DALSEME - 92048", "stop_name": "ACACIAS"}, "geometry": {"type": "Point", "coordinates": [2.227698450190972, 48.7902763590761]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6d84d9c98f32dd36fef2e73662c7d1b8e652b688", "fields": {"departement": "92", "stop_lat": 48.788419438121515, "code_postal": "92048", "stop_lon": 2.221975826992787, "coord": [48.788419438121515, 2.221975826992787], "stop_id": 5121653, "stop_desc": "FACE-28 30 AVENUE DU MARECHAL LECLERC - 92048", "stop_name": "AERODROME MORANE"}, "geometry": {"type": "Point", "coordinates": [2.221975826992787, 48.788419438121515]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a1ce4fee26d0910d5d2334ebb33cbf204d7482ff", "fields": {"departement": "92", "stop_lat": 48.787405564917776, "code_postal": "92048", "stop_lon": 2.2336621671073633, "coord": [48.787405564917776, 2.2336621671073633], "stop_id": 5121661, "stop_desc": "AVENUE DU MARECHAL DE LATTRE DE TASSIGNY - 92048", "stop_name": "ESPACE CULTUREL - ROBERT DOISNEAU"}, "geometry": {"type": "Point", "coordinates": [2.2336621671073633, 48.787405564917776]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d22744eaec781631ff5ee3417858071a26949356", "fields": {"departement": "92", "stop_lat": 48.81877841626567, "code_postal": "92040", "stop_lon": 2.2516874897032806, "coord": [48.81877841626567, 2.2516874897032806], "stop_id": 5121666, "stop_desc": "31 RUE DU DOCTEUR LOMBARD - 92040", "stop_name": "VERDUN - DOCTEUR LOMBARD"}, "geometry": {"type": "Point", "coordinates": [2.2516874897032806, 48.81877841626567]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3c269eda67fd3b98f9656aacb7d4dccac5a96d5c", "fields": {"departement": "92", "stop_lat": 48.82439043938498, "code_postal": "92012", "stop_lon": 2.244627399270202, "coord": [48.82439043938498, 2.244627399270202], "stop_id": 5121667, "stop_desc": "6 R NATIONALE - 92012", "stop_name": "TRAVERSIERE"}, "geometry": {"type": "Point", "coordinates": [2.244627399270202, 48.82439043938498]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5776339842ecf9e27cdda67a02aeec21bf68baf8", "fields": {"departement": "92", "stop_lat": 48.829042334210506, "code_postal": "92012", "stop_lon": 2.2295360266497624, "coord": [48.829042334210506, 2.2295360266497624], "stop_id": 5121668, "stop_desc": "AVENUE DU GENERAL LECLERC - 92012", "stop_name": "PONT DE SEVRES-METRO"}, "geometry": {"type": "Point", "coordinates": [2.2295360266497624, 48.829042334210506]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c6d579906ec9be9ef1ce02604033ad64e12072f4", "fields": {"departement": "92", "stop_lat": 48.82822027480617, "code_postal": "92012", "stop_lon": 2.2349827985612585, "coord": [48.82822027480617, 2.2349827985612585], "stop_id": 5121672, "stop_desc": "12 CRS DE L'ILE SEGUIN - 92012", "stop_name": "COURS DE L'ILE SEGUIN"}, "geometry": {"type": "Point", "coordinates": [2.2349827985612585, 48.82822027480617]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "03f15932fb28824362835ee9776ebb7f54ebe447", "fields": {"departement": "92", "stop_lat": 48.818799964460155, "code_postal": "92048", "stop_lon": 2.244460443361091, "coord": [48.818799964460155, 2.244460443361091], "stop_id": 5121686, "stop_desc": "169 AVENUE DE VERDUN - 92048", "stop_name": "GROUPE SCOLAIRE BROSSOLETTE"}, "geometry": {"type": "Point", "coordinates": [2.244460443361091, 48.818799964460155]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "35004bba3ba22c70a8dff6e32dbeac1ede049354", "fields": {"departement": "92", "stop_lat": 48.81879641264312, "code_postal": "92048", "stop_lon": 2.229570900490973, "coord": [48.81879641264312, 2.229570900490973], "stop_id": 5121692, "stop_desc": "PLACE DE LA GARE - 92048", "stop_name": "GARE DE BELLEVUE"}, "geometry": {"type": "Point", "coordinates": [2.229570900490973, 48.81879641264312]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e41d5067adc8ee5ff2c63ce45f4d24ba61abfc80", "fields": {"departement": "92", "stop_lat": 48.81661431402316, "code_postal": "92048", "stop_lon": 2.231712137797927, "coord": [48.81661431402316, 2.231712137797927], "stop_id": 5121693, "stop_desc": "16 BOULEVARD VERD-DE-ST JULIEN - 92048", "stop_name": "JEANNE D'ARC"}, "geometry": {"type": "Point", "coordinates": [2.231712137797927, 48.81661431402316]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4726800028aac0cefc804a8e02e8865d014867bd", "fields": {"departement": "92", "stop_lat": 48.81183731423944, "code_postal": "92048", "stop_lon": 2.2368930295294303, "coord": [48.81183731423944, 2.2368930295294303], "stop_id": 5121697, "stop_desc": "PLACE RABELAIS - 92048", "stop_name": "RABELAIS"}, "geometry": {"type": "Point", "coordinates": [2.2368930295294303, 48.81183731423944]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "664ae0e3a3482e2be1627fc7a83b435ec4f3ac3d", "fields": {"departement": "92", "stop_lat": 48.80365618046732, "code_postal": "92048", "stop_lon": 2.2342692363964143, "coord": [48.80365618046732, 2.2342692363964143], "stop_id": 5121702, "stop_desc": "FACE 6 AV DE TRIVAUX - 92048", "stop_name": "TRIVAUX - VERTUGADINS - LYCEE"}, "geometry": {"type": "Point", "coordinates": [2.2342692363964143, 48.80365618046732]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c39dec26e6e4bdc85451bc3be315199b8066cce1", "fields": {"departement": "92", "stop_lat": 48.78951587021313, "code_postal": "92048", "stop_lon": 2.2315495674082637, "coord": [48.78951587021313, 2.2315495674082637], "stop_id": 5121708, "stop_desc": "AVENUE MEDERIC - 92048", "stop_name": "SQUARE MEDERIC"}, "geometry": {"type": "Point", "coordinates": [2.2315495674082637, 48.78951587021313]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b554d6f3d345612e2b514eb95ccb1e1e9ee5ede6", "fields": {"departement": "92", "stop_lat": 48.79043642313257, "code_postal": "92048", "stop_lon": 2.225848137014192, "coord": [48.79043642313257, 2.225848137014192], "stop_id": 5121709, "stop_desc": "AVENUE HENRI DALSEME - 92048", "stop_name": "ACACIAS"}, "geometry": {"type": "Point", "coordinates": [2.225848137014192, 48.79043642313257]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dc8dc9f2be3a7d435cc2141be89c4ecd480a1482", "fields": {"departement": "92", "stop_lat": 48.788419438121515, "code_postal": "92048", "stop_lon": 2.221975826992787, "coord": [48.788419438121515, 2.221975826992787], "stop_id": 5121713, "stop_desc": "FACE-28 30 AVENUE DU MARECHAL LECLERC - 92048", "stop_name": "AERODROME MORANE"}, "geometry": {"type": "Point", "coordinates": [2.221975826992787, 48.788419438121515]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "886440a82488cdfeb7f488944ace2b23d0801a14", "fields": {"departement": "92", "stop_lat": 48.78756642646553, "code_postal": "92048", "stop_lon": 2.2228482489959354, "coord": [48.78756642646553, 2.2228482489959354], "stop_id": 5121714, "stop_desc": "38 AVENUE COLONEL MARCEL MORANE - 92048", "stop_name": "AERODROME MORANE"}, "geometry": {"type": "Point", "coordinates": [2.2228482489959354, 48.78756642646553]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f91ad90c3e729f73e758d85c0b53b794dde0c65f", "fields": {"departement": "92", "stop_lat": 48.787346674834005, "code_postal": "92048", "stop_lon": 2.2281126885775113, "coord": [48.787346674834005, 2.2281126885775113], "stop_id": 5121718, "stop_desc": "FACE 15 AVENUE DE CELLE - 92048", "stop_name": "EGLISE - AVENUE DE CELLE"}, "geometry": {"type": "Point", "coordinates": [2.2281126885775113, 48.787346674834005]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5182d1981772574106330bddd28ded073e6c8881", "fields": {"departement": "92", "stop_lat": 48.785882969066456, "code_postal": "92048", "stop_lon": 2.2295711321190135, "coord": [48.785882969066456, 2.2295711321190135], "stop_id": 5121719, "stop_desc": "AVENUE DU MARECHAL DE LATTRE DE TASSIGNY - 92048", "stop_name": "LE LAC"}, "geometry": {"type": "Point", "coordinates": [2.2295711321190135, 48.785882969066456]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "843f4b17ba1bdd48e93646f3555f2700243dbb25", "fields": {"departement": "92", "stop_lat": 48.787585335210935, "code_postal": "92048", "stop_lon": 2.233675410556486, "coord": [48.787585335210935, 2.233675410556486], "stop_id": 5121722, "stop_desc": "FACE 5-7 AVENUE DU MARECHAL DE LATTRE DE TASSIGNY - 92048", "stop_name": "ESPACE CULTUREL - ROBERT DOISNEAU"}, "geometry": {"type": "Point", "coordinates": [2.233675410556486, 48.787585335210935]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "296e20542e24900806e431aa205e211ebfb6cb62", "fields": {"departement": "92", "stop_lat": 48.78481065530936, "code_postal": "92023", "stop_lon": 2.2367004292831227, "coord": [48.78481065530936, 2.2367004292831227], "stop_id": 5121723, "stop_desc": "PLACE GEORGES POMPIDOU - 92023", "stop_name": "GEORGES POMPIDOU"}, "geometry": {"type": "Point", "coordinates": [2.2367004292831227, 48.78481065530936]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f5ff419c1a56b73d3dbd19c9c1a71727ab33c002", "fields": {"departement": "92", "stop_lat": 48.815009431633264, "code_postal": "92046", "stop_lon": 2.296658472343413, "coord": [48.815009431633264, 2.296658472343413], "stop_id": 5121769, "stop_desc": "FACE 102 BOULEVARD CAMELINAT - 92046", "stop_name": "RUE ETIENNE DOLET"}, "geometry": {"type": "Point", "coordinates": [2.296658472343413, 48.815009431633264]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d5b60adbc83aad9e671a170b5cf332f15bf13e4a", "fields": {"departement": "92", "stop_lat": 48.81114636018278, "code_postal": "92020", "stop_lon": 2.3018598164939665, "coord": [48.81114636018278, 2.3018598164939665], "stop_id": 5121772, "stop_desc": "105 AV MARX DORMOY - 92020", "stop_name": "CHATILLON-MONTROUGE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.3018598164939665, 48.81114636018278]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d1c1c4fccb774a1f54c4c7c5b9eac96d3419a3a8", "fields": {"departement": "92", "stop_lat": 48.79525571522624, "code_postal": "92007", "stop_lon": 2.3012584666043696, "coord": [48.79525571522624, 2.3012584666043696], "stop_id": 5121779, "stop_desc": "18 R SALVADOR ALLENDE - 92007", "stop_name": "DAMPIERRE"}, "geometry": {"type": "Point", "coordinates": [2.3012584666043696, 48.79525571522624]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "163a440e431c3b0aaec14691d30382fe14927c94", "fields": {"departement": "92", "stop_lat": 48.79217368925883, "code_postal": "92007", "stop_lon": 2.3040764660427913, "coord": [48.79217368925883, 2.3040764660427913], "stop_id": 5121784, "stop_desc": "0 R PABLO NERUDA - 92007", "stop_name": "SENTIER DES BRUGNAUTS"}, "geometry": {"type": "Point", "coordinates": [2.3040764660427913, 48.79217368925883]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "55689880245afbc01e73b1b7a659bd69b74e03b0", "fields": {"departement": "92", "stop_lat": 48.789567234522615, "code_postal": "92007", "stop_lon": 2.304214156277905, "coord": [48.789567234522615, 2.304214156277905], "stop_id": 5121787, "stop_desc": "FACE 40 R DE LA FONTAINE - 92007", "stop_name": "FONTAINE - GUEFFIER"}, "geometry": {"type": "Point", "coordinates": [2.304214156277905, 48.789567234522615]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "78eeac0ab6e2a19ae8a13d319093c451131d156c", "fields": {"departement": "92", "stop_lat": 48.787931395121284, "code_postal": "92007", "stop_lon": 2.304079175961665, "coord": [48.787931395121284, 2.304079175961665], "stop_id": 5121788, "stop_desc": "34-36 RUE DES CUVERONS - 92007", "stop_name": "CUVERONS"}, "geometry": {"type": "Point", "coordinates": [2.304079175961665, 48.787931395121284]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a2e0467e2975e859771f4851cdc11e57567cea5e", "fields": {"departement": "92", "stop_lat": 48.78709563079346, "code_postal": "92007", "stop_lon": 2.3044877660039913, "coord": [48.78709563079346, 2.3044877660039913], "stop_id": 5121789, "stop_desc": "FACE 64 R DE LA FONTAINE - 92007", "stop_name": "CUVERONS"}, "geometry": {"type": "Point", "coordinates": [2.3044877660039913, 48.78709563079346]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6f112eea23287e20bf90e229cccaa661cf3e435b", "fields": {"departement": "92", "stop_lat": 48.78483172379547, "code_postal": "92071", "stop_lon": 2.308569578440949, "coord": [48.78483172379547, 2.308569578440949], "stop_id": 5121791, "stop_desc": "FACE 52 AVENUE DE BOURG LA REINE - 92071", "stop_name": "CLEMENCEAU"}, "geometry": {"type": "Point", "coordinates": [2.308569578440949, 48.78483172379547]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f4600f187c645e6700a65a6c34f8c35e662dfea6", "fields": {"departement": "92", "stop_lat": 48.78852620312861, "code_postal": "92007", "stop_lon": 2.310444648339094, "coord": [48.78852620312861, 2.310444648339094], "stop_id": 5121793, "stop_desc": "FACE 8 BIS RUE DES FRERES LUMIERE - 92007", "stop_name": "FRERES LUMIERE"}, "geometry": {"type": "Point", "coordinates": [2.310444648339094, 48.78852620312861]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ef21bde7d3b9c8a0c90800a9283495f19e6ac480", "fields": {"departement": "92", "stop_lat": 48.789758358425495, "code_postal": "92007", "stop_lon": 2.31432074503127, "coord": [48.789758358425495, 2.31432074503127], "stop_id": 5121795, "stop_desc": "AVENUE PAUL VAILLANT-COUTURIER - 92007", "stop_name": "PORT GALAND"}, "geometry": {"type": "Point", "coordinates": [2.31432074503127, 48.789758358425495]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0fd952cb44625d9ed1977d2a1117d2d5b2c5c173", "fields": {"departement": "92", "stop_lat": 48.7928684616351, "code_postal": "92007", "stop_lon": 2.315870157613037, "coord": [48.7928684616351, 2.315870157613037], "stop_id": 5121797, "stop_desc": "31 AVENUE PAUL VAILLANT COUTURIER - 92007", "stop_name": "LES BLAINS"}, "geometry": {"type": "Point", "coordinates": [2.315870157613037, 48.7928684616351]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "adef51f17cbb66adf6d5a120b4308848a5cd5ff3", "fields": {"departement": "92", "stop_lat": 48.82795039915451, "code_postal": "92072", "stop_lon": 2.2247466599919257, "coord": [48.82795039915451, 2.2247466599919257], "stop_id": 5121809, "stop_desc": "ALLEE DU PONT DE SEVRES - 92072", "stop_name": "MUSEE DE SEVRES"}, "geometry": {"type": "Point", "coordinates": [2.2247466599919257, 48.82795039915451]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e1317523e363013a0ae25824cb5f52205ba8ab20", "fields": {"departement": "92", "stop_lat": 48.81276889075504, "code_postal": "92072", "stop_lon": 2.2143689730338156, "coord": [48.81276889075504, 2.2143689730338156], "stop_id": 5121814, "stop_desc": "RUE DES BRUYERES - 92072", "stop_name": "ROND-POINT DES BRUYERES"}, "geometry": {"type": "Point", "coordinates": [2.2143689730338156, 48.81276889075504]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5a215b0dbf3f49f0d3740197ad934f16130b4961", "fields": {"departement": "78", "stop_lat": 48.78480321871707, "code_postal": "78640", "stop_lon": 2.2188555569366892, "coord": [48.78480321871707, 2.2188555569366892], "stop_id": 5121816, "stop_desc": "GARE ROUTIERE - 78640", "stop_name": "VELIZY 2"}, "geometry": {"type": "Point", "coordinates": [2.2188555569366892, 48.78480321871707]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9b6e7a7eaa3e41dffec980cbf32e1b63d30d243d", "fields": {"departement": "78", "stop_lat": 48.78165577303442, "code_postal": "78640", "stop_lon": 2.226465389834906, "coord": [48.78165577303442, 2.226465389834906], "stop_id": 5121818, "stop_desc": "RUE DU PETIT CLAMART - 78640", "stop_name": "AVENUE DE LA SYGRIE"}, "geometry": {"type": "Point", "coordinates": [2.226465389834906, 48.78165577303442]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "51ec738f30833a9fe8a8b22f56e178807cf4cba1", "fields": {"departement": "92", "stop_lat": 48.77956429702969, "code_postal": "92071", "stop_lon": 2.2818078784187574, "coord": [48.77956429702969, 2.2818078784187574], "stop_id": 5121831, "stop_desc": "2 AVENUE DE LA GARE - 92071", "stop_name": "ROBINSON RER"}, "geometry": {"type": "Point", "coordinates": [2.2818078784187574, 48.77956429702969]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ed223fd9937a31be6d735de27dd57da8d9ee89ec", "fields": {"departement": "92", "stop_lat": 48.77963600999411, "code_postal": "92071", "stop_lon": 2.2813998041873496, "coord": [48.77963600999411, 2.2813998041873496], "stop_id": 5121833, "stop_desc": "FACE 4 AVENUE DE LA GARE - 92071", "stop_name": "ROBINSON RER"}, "geometry": {"type": "Point", "coordinates": [2.2813998041873496, 48.77963600999411]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "07f390235d3afc5cfef12656ec38fc954d6d1145", "fields": {"departement": "92", "stop_lat": 48.782191967671956, "code_postal": "92060", "stop_lon": 2.2705029809301642, "coord": [48.782191967671956, 2.2705029809301642], "stop_id": 5121835, "stop_desc": "27 AVENUE DE LA REPUBLIQUE - 92060", "stop_name": "CITE BASSE"}, "geometry": {"type": "Point", "coordinates": [2.2705029809301642, 48.782191967671956]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0403237f4284ec6549078ed0986e7c151f658d92", "fields": {"departement": "92", "stop_lat": 48.78223995246046, "code_postal": "92048", "stop_lon": 2.2264233419911954, "coord": [48.78223995246046, 2.2264233419911954], "stop_id": 5121847, "stop_desc": "0 RUE DU PETIT CLAMART - 92048", "stop_name": "AVENUE DE LA SYGRIE"}, "geometry": {"type": "Point", "coordinates": [2.2264233419911954, 48.78223995246046]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "807493d6ac94886e62769c6452a556b4fc9d56ea", "fields": {"departement": "92", "stop_lat": 48.81302967559631, "code_postal": "92072", "stop_lon": 2.214504442536174, "coord": [48.81302967559631, 2.214504442536174], "stop_id": 5121853, "stop_desc": "FACE 111 RUE DES BRUYERES - 92072", "stop_name": "ROND-POINT DES BRUYERES"}, "geometry": {"type": "Point", "coordinates": [2.214504442536174, 48.81302967559631]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ea347fa7480f1c5ddbd69ec8d4615f741dc274c2", "fields": {"departement": "91", "stop_lat": 48.72503602399836, "code_postal": "91377", "stop_lon": 2.255835922477194, "coord": [48.72503602399836, 2.255835922477194], "stop_id": 5121930, "stop_desc": "PISTE GARE ROUTIERE - 91377", "stop_name": "MASSY-PALAISEAU RER"}, "geometry": {"type": "Point", "coordinates": [2.255835922477194, 48.72503602399836]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4cd2d945cf9506a5bd0702d4160fe84975ac8f89", "fields": {"departement": "91", "stop_lat": 48.73195699870029, "code_postal": "91377", "stop_lon": 2.255757147921993, "coord": [48.73195699870029, 2.255757147921993], "stop_id": 5121936, "stop_desc": "71 RUE DE VERSAILLES - 91377", "stop_name": "LYCEE DE VILGENIS"}, "geometry": {"type": "Point", "coordinates": [2.255757147921993, 48.73195699870029]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2d5cb3b02f8f60781d9d8435ea7d89ef7558942d", "fields": {"departement": "91", "stop_lat": 48.73430404493988, "code_postal": "91377", "stop_lon": 2.257370449190574, "coord": [48.73430404493988, 2.257370449190574], "stop_id": 5121938, "stop_desc": "53 BOULEVARD DU 1ER MAI - 91377", "stop_name": "GEORGES MANDEL"}, "geometry": {"type": "Point", "coordinates": [2.257370449190574, 48.73430404493988]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a55eb3339b9da51417241e480766c75959c652f8", "fields": {"departement": "91", "stop_lat": 48.73375007805158, "code_postal": "91377", "stop_lon": 2.2624531835693826, "coord": [48.73375007805158, 2.2624531835693826], "stop_id": 5121941, "stop_desc": "FACE 7-9 BOULEVARD DU 1ER MAI - 91377", "stop_name": "BOULEVARD DU 1ER MAI"}, "geometry": {"type": "Point", "coordinates": [2.2624531835693826, 48.73375007805158]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "afb4d6143a6c685be79442b6ebbf29ee65b790b4", "fields": {"departement": "92", "stop_lat": 48.76432452376771, "code_postal": "92019", "stop_lon": 2.271885525552727, "coord": [48.76432452376771, 2.271885525552727], "stop_id": 5121960, "stop_desc": "AVENUE ROGER SALENGRO - 92019", "stop_name": "PRESIDENT ALLENDE"}, "geometry": {"type": "Point", "coordinates": [2.271885525552727, 48.76432452376771]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bafbd7f4424069d56ef9048d7ba57cef1ef2670b", "fields": {"departement": "92", "stop_lat": 48.76784850968755, "code_postal": "92019", "stop_lon": 2.273091210688663, "coord": [48.76784850968755, 2.273091210688663], "stop_id": 5121963, "stop_desc": "FACE 104 AVENUE ROGER SALENGRO - 92019", "stop_name": "DOCTEUR LE SAVOUREUX"}, "geometry": {"type": "Point", "coordinates": [2.273091210688663, 48.76784850968755]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7f156134f4fe5a6a62ba0747ac1aeff053759899", "fields": {"departement": "92", "stop_lat": 48.76782133944119, "code_postal": "92019", "stop_lon": 2.272710532959813, "coord": [48.76782133944119, 2.272710532959813], "stop_id": 5121964, "stop_desc": "FACE 131 AVENUE ROGER SALENGRO - 92019", "stop_name": "DOCTEUR LE SAVOUREUX"}, "geometry": {"type": "Point", "coordinates": [2.272710532959813, 48.76782133944119]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9996a03dd0d73e44cdc34905c9f166ecc3a87653", "fields": {"departement": "92", "stop_lat": 48.78378902648166, "code_postal": "92032", "stop_lon": 2.282633030295862, "coord": [48.78378902648166, 2.282633030295862], "stop_id": 5121972, "stop_desc": "FACE 84 AVENUE JEAN MOULIN - 92032", "stop_name": "CARREFOUR DES MOUILLEBOEUFS"}, "geometry": {"type": "Point", "coordinates": [2.282633030295862, 48.78378902648166]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1f36abc7fe70c6de7aed6eaf0602656bf9907b99", "fields": {"departement": "92", "stop_lat": 48.78621774264672, "code_postal": "92032", "stop_lon": 2.28710541769771, "coord": [48.78621774264672, 2.28710541769771], "stop_id": 5121974, "stop_desc": "23BIS-25 AVENUE JEAN MOULIN - 92032", "stop_name": "AUGUSTIN CLAUDE"}, "geometry": {"type": "Point", "coordinates": [2.28710541769771, 48.78621774264672]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b871a36885bf6587b78dfdb45997bb50f7677333", "fields": {"departement": "75", "stop_lat": 48.83618134524368, "code_postal": "75114", "stop_lon": 2.322264851311997, "coord": [48.83618134524368, 2.322264851311997], "stop_id": 5122000, "stop_desc": "5 RUE RAYMOND LOSSERAND - 75114", "stop_name": "LOSSERAND - MAINE"}, "geometry": {"type": "Point", "coordinates": [2.322264851311997, 48.83618134524368]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "41d4dbd033b5c7aefa719627ca71acdef131b6ba", "fields": {"departement": "75", "stop_lat": 48.84191517852695, "code_postal": "75115", "stop_lon": 2.320533931631091, "coord": [48.84191517852695, 2.320533931631091], "stop_id": 5122008, "stop_desc": "PLACE RAOUL DAUTRY - 75115", "stop_name": "GARE MONTPARNASSE."}, "geometry": {"type": "Point", "coordinates": [2.320533931631091, 48.84191517852695]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "76f6fee671714a6248ef3dcfabd1876537bc8d7c", "fields": {"departement": "91", "stop_lat": 48.756594343963975, "code_postal": "91645", "stop_lon": 2.2711747722847595, "coord": [48.756594343963975, 2.2711747722847595], "stop_id": 5122013, "stop_desc": "AVENUE GEORGES POMPIDOU - 91645", "stop_name": "GROUPE SCOLAIRE SOPHIE BARAT"}, "geometry": {"type": "Point", "coordinates": [2.2711747722847595, 48.756594343963975]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c6b825b29eb21df1ab25ab8a540d205b77405bc0", "fields": {"departement": "91", "stop_lat": 48.73780692714676, "code_postal": "91377", "stop_lon": 2.2675975711490244, "coord": [48.73780692714676, 2.2675975711490244], "stop_id": 5122014, "stop_desc": "5 RUE PRE - 91377", "stop_name": "VALLEE DE LA BIEVRE"}, "geometry": {"type": "Point", "coordinates": [2.2675975711490244, 48.73780692714676]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "361e1b5f6147abb0126821633532fc082fdcb33b", "fields": {"departement": "92", "stop_lat": 48.81750220253278, "code_postal": "92046", "stop_lon": 2.3073674686478984, "coord": [48.81750220253278, 2.3073674686478984], "stop_id": 5122021, "stop_desc": "102 AVENUE PIERRE BROSSOLETTE - 92046", "stop_name": "12 FEVRIER 1934"}, "geometry": {"type": "Point", "coordinates": [2.3073674686478984, 48.81750220253278]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1ca900e2ac84c488cd4724f3cdb61c15573028e8", "fields": {"departement": "92", "stop_lat": 48.81128070086906, "code_postal": "92020", "stop_lon": 2.3002947806132377, "coord": [48.81128070086906, 2.3002947806132377], "stop_id": 5122025, "stop_desc": "204 AVENUE DE PARIS - 92020", "stop_name": "CHATILLON-MONTROUGE"}, "geometry": {"type": "Point", "coordinates": [2.3002947806132377, 48.81128070086906]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e48a3575a27c6abcf8639eb7c5bc1b1a809ec4ab", "fields": {"departement": "92", "stop_lat": 48.80877914567906, "code_postal": "92020", "stop_lon": 2.2917646239249407, "coord": [48.80877914567906, 2.2917646239249407], "stop_id": 5122028, "stop_desc": "FACE 70 R MARCELIN BERTHELOT - 92020", "stop_name": "JEAN MERMOZ"}, "geometry": {"type": "Point", "coordinates": [2.2917646239249407, 48.80877914567906]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4817f8d4ec7104c8b3c5d5ea8d1ee3f4d82f79ad", "fields": {"departement": "92", "stop_lat": 48.80801371203143, "code_postal": "92020", "stop_lon": 2.288064093805718, "coord": [48.80801371203143, 2.288064093805718], "stop_id": 5122031, "stop_desc": "R D'AYWAILLE - 92020", "stop_name": "STADE DE CHATILLON"}, "geometry": {"type": "Point", "coordinates": [2.288064093805718, 48.80801371203143]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "24386ee8b42b219a492bc624888b5ae2b1adb3ea", "fields": {"departement": "92", "stop_lat": 48.801910761177105, "code_postal": "92020", "stop_lon": 2.2875120395185693, "coord": [48.801910761177105, 2.2875120395185693], "stop_id": 5122035, "stop_desc": "21 AVENUE GABRIEL PERI - 92020", "stop_name": "CENTRE DE CHATILLON - MARCHE"}, "geometry": {"type": "Point", "coordinates": [2.2875120395185693, 48.801910761177105]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dbd8488af8b40da7c7d096ba1a5eaafe913bb754", "fields": {"departement": "92", "stop_lat": 48.79783894278399, "code_postal": "92020", "stop_lon": 2.286740472674869, "coord": [48.79783894278399, 2.286740472674869], "stop_id": 5122038, "stop_desc": "32 BIS RUE FONTENAY - 92020", "stop_name": "PIERRELAIS"}, "geometry": {"type": "Point", "coordinates": [2.286740472674869, 48.79783894278399]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "378f2eca3cdb15430d93db2dcb00a0e1cb03f5e8", "fields": {"departement": "92", "stop_lat": 48.79054868854144, "code_postal": "92032", "stop_lon": 2.2842582546709322, "coord": [48.79054868854144, 2.2842582546709322], "stop_id": 5122043, "stop_desc": "4 RUE D'ESTIENNE D'ORVES - 92032", "stop_name": "CARNOT - JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.2842582546709322, 48.79054868854144]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1963d956e4733ed8bc001b2f1333d137ad010170", "fields": {"departement": "92", "stop_lat": 48.7867192580975, "code_postal": "92032", "stop_lon": 2.28298359496056, "coord": [48.7867192580975, 2.28298359496056], "stop_id": 5122045, "stop_desc": "4 AVENUE RAYMOND CROLAND - 92032", "stop_name": "ABBE GRANDJEAN"}, "geometry": {"type": "Point", "coordinates": [2.28298359496056, 48.7867192580975]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bb5ebbf803ddbe8db4fe2f803c812c990209adcc", "fields": {"departement": "92", "stop_lat": 48.78365354917881, "code_postal": "92032", "stop_lon": 2.2812186713823306, "coord": [48.78365354917881, 2.2812186713823306], "stop_id": 5122051, "stop_desc": "181 AVENUE DE LA RESISTANCE - 92032", "stop_name": "CARREFOUR DES MOUILLEBOEUFS"}, "geometry": {"type": "Point", "coordinates": [2.2812186713823306, 48.78365354917881]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8a7457f6fee372818060e71114d4e7a1c14336ca", "fields": {"departement": "92", "stop_lat": 48.77302725091217, "code_postal": "92019", "stop_lon": 2.276171604837392, "coord": [48.77302725091217, 2.276171604837392], "stop_id": 5122056, "stop_desc": "FACE 36 AVENUE ROGER SALENGRO - 92019", "stop_name": "MARC SANGNIER"}, "geometry": {"type": "Point", "coordinates": [2.276171604837392, 48.77302725091217]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e0169a525ffed51c613fbe95bfc314e8151a4d89", "fields": {"departement": "92", "stop_lat": 48.76994317207525, "code_postal": "92019", "stop_lon": 2.2739180644920944, "coord": [48.76994317207525, 2.2739180644920944], "stop_id": 5122057, "stop_desc": "88 AVENUE ROGER SALENGRO - 92019", "stop_name": "JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.2739180644920944, 48.76994317207525]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b11fe617baf46504823741e98624e4aa7c74625e", "fields": {"departement": "92", "stop_lat": 48.77004221401073, "code_postal": "92019", "stop_lon": 2.2742442816575563, "coord": [48.77004221401073, 2.2742442816575563], "stop_id": 5122058, "stop_desc": "89 AVENUE ROGER SALENGRO - 92019", "stop_name": "JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.2742442816575563, 48.77004221401073]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "902051eede6c9f17a701da37a5eb5b92a4c0da96", "fields": {"departement": "92", "stop_lat": 48.76782133944119, "code_postal": "92019", "stop_lon": 2.272710532959813, "coord": [48.76782133944119, 2.272710532959813], "stop_id": 5122059, "stop_desc": "FACE 131 AVENUE ROGER SALENGRO - 92019", "stop_name": "DOCTEUR LE SAVOUREUX"}, "geometry": {"type": "Point", "coordinates": [2.272710532959813, 48.76782133944119]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "78ad09c74823c5bda37713031f79ea4e6860ae12", "fields": {"departement": "92", "stop_lat": 48.76481537199997, "code_postal": "92019", "stop_lon": 2.265807475737512, "coord": [48.76481537199997, 2.265807475737512], "stop_id": 5122065, "stop_desc": "FACE 299 AVENUE DE LA DIVISION LECLERC - 92019", "stop_name": "GENERAL DUVAL"}, "geometry": {"type": "Point", "coordinates": [2.265807475737512, 48.76481537199997]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1e07b975bb45f5597c67f5a8a83389b286ae7caf", "fields": {"departement": "92", "stop_lat": 48.765638264023494, "code_postal": "92019", "stop_lon": 2.259416101222433, "coord": [48.765638264023494, 2.259416101222433], "stop_id": 5122067, "stop_desc": "354 AVENUE DE LA DIVISION LECLERC - 92019", "stop_name": "BUTTE ROUGE - CITE JARDINS"}, "geometry": {"type": "Point", "coordinates": [2.259416101222433, 48.765638264023494]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4cae73808047ad54c0840d6ab3f4110bf22911e3", "fields": {"departement": "92", "stop_lat": 48.76523468265433, "code_postal": "92019", "stop_lon": 2.2607763214489163, "coord": [48.76523468265433, 2.2607763214489163], "stop_id": 5122068, "stop_desc": "301 AVENUE DE LA DIVISION LECLERC - 92019", "stop_name": "BUTTE ROUGE - CITE JARDINS"}, "geometry": {"type": "Point", "coordinates": [2.2607763214489163, 48.76523468265433]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e0f29e653061777359e5dca65f447a18523ee562", "fields": {"departement": "92", "stop_lat": 48.7674052392766, "code_postal": "92019", "stop_lon": 2.2539883608258457, "coord": [48.7674052392766, 2.2539883608258457], "stop_id": 5122072, "stop_desc": "AVENUE JEAN JAURES - 92019", "stop_name": "LYCEE POLYVALENT"}, "geometry": {"type": "Point", "coordinates": [2.2539883608258457, 48.7674052392766]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2a4214b70472cb38074b19a242d4e1f5f02aa51d", "fields": {"departement": "92", "stop_lat": 48.813375447567154, "code_postal": "92049", "stop_lon": 2.302280168230667, "coord": [48.813375447567154, 2.302280168230667], "stop_id": 5122077, "stop_desc": "189 AVENUE PIERRE BROSSOLETTE - 92049", "stop_name": "ETIENNE DOLET"}, "geometry": {"type": "Point", "coordinates": [2.302280168230667, 48.813375447567154]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dac97b7103d6ec1360a960a4101c591d80656fa5", "fields": {"departement": "92", "stop_lat": 48.818086708432794, "code_postal": "92049", "stop_lon": 2.308605641659359, "coord": [48.818086708432794, 2.308605641659359], "stop_id": 5122079, "stop_desc": "105 AV PIERRE BROSSOLETTE - 92049", "stop_name": "12 FEVRIER 1934"}, "geometry": {"type": "Point", "coordinates": [2.308605641659359, 48.818086708432794]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "50c30ceb0c2d6523561694495e86c63b2962ea50", "fields": {"departement": "75", "stop_lat": 48.82332914428735, "code_postal": "75114", "stop_lon": 2.32313969054984, "coord": [48.82332914428735, 2.32313969054984], "stop_id": 5122082, "stop_desc": "1 AVENUE DE LA PORTE DE MONTROUGE - 75114", "stop_name": "PORTE D'ORLEANS - ERNEST REYER"}, "geometry": {"type": "Point", "coordinates": [2.32313969054984, 48.82332914428735]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "93f3d2b7cd013e6e87458dc9eb1869b4b6eca06d", "fields": {"departement": "92", "stop_lat": 48.779573433391995, "code_postal": "92023", "stop_lon": 2.2400289462447596, "coord": [48.779573433391995, 2.2400289462447596], "stop_id": 5122146, "stop_desc": "FACE 2 AVENUE REAUMUR - 92023", "stop_name": "PAVE BLANC"}, "geometry": {"type": "Point", "coordinates": [2.2400289462447596, 48.779573433391995]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f0a82179d3beacb3eb835ad2b4e948cf237750db", "fields": {"departement": "92", "stop_lat": 48.78204615202421, "code_postal": "92060", "stop_lon": 2.2531624584101624, "coord": [48.78204615202421, 2.2531624584101624], "stop_id": 5122155, "stop_desc": "AVENUE PAUL LANGEVIN - 92060", "stop_name": "PARC TECHNOLOGIQUE"}, "geometry": {"type": "Point", "coordinates": [2.2531624584101624, 48.78204615202421]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "596c6af7fa638bf331a03f7d8d8b3e5907ce389b", "fields": {"departement": "92", "stop_lat": 48.780197818644, "code_postal": "92060", "stop_lon": 2.257803075801119, "coord": [48.780197818644, 2.257803075801119], "stop_id": 5122159, "stop_desc": "10 AVENUE ARISTIDE BRIAND - 92060", "stop_name": "LA POSTE"}, "geometry": {"type": "Point", "coordinates": [2.257803075801119, 48.780197818644]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7523def913e5cc74aa03784c58546d19ce13ce65", "fields": {"departement": "92", "stop_lat": 48.77963362439875, "code_postal": "92060", "stop_lon": 2.2609319216029258, "coord": [48.77963362439875, 2.2609319216029258], "stop_id": 5122162, "stop_desc": "AVENUE CHARLES DE GAULLE - 92060", "stop_name": "RESISTANCE"}, "geometry": {"type": "Point", "coordinates": [2.2609319216029258, 48.77963362439875]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e263d42bba7a9b6bc4edf0ae4c927f971d0be3f0", "fields": {"departement": "92", "stop_lat": 48.78139682184434, "code_postal": "92060", "stop_lon": 2.263391000895894, "coord": [48.78139682184434, 2.263391000895894], "stop_id": 5122164, "stop_desc": "FACE 20 AVENUE CHARLES DE GAULLE - 92060", "stop_name": "COEUR DE VILLE"}, "geometry": {"type": "Point", "coordinates": [2.263391000895894, 48.78139682184434]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c81ad77a0cae40e0c86e05cb45bfcbe5061a4f0b", "fields": {"departement": "92", "stop_lat": 48.78301697540244, "code_postal": "92060", "stop_lon": 2.2672241255368664, "coord": [48.78301697540244, 2.2672241255368664], "stop_id": 5122165, "stop_desc": "AVENUE CHARLES DE GAULLE - 92060", "stop_name": "L'ESCALIER"}, "geometry": {"type": "Point", "coordinates": [2.2672241255368664, 48.78301697540244]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "53c2ed968699acb3200ac3badcf5d5f34ed92b03", "fields": {"departement": "92", "stop_lat": 48.78363898332207, "code_postal": "92060", "stop_lon": 2.270419515514898, "coord": [48.78363898332207, 2.270419515514898], "stop_id": 5122168, "stop_desc": "AVENUE DE LA RESISTANCE - 92060", "stop_name": "TOUR DE L'ETANG"}, "geometry": {"type": "Point", "coordinates": [2.270419515514898, 48.78363898332207]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b5dd3ea9ecc63ecfc440c6efe160e3270d24227f", "fields": {"departement": "92", "stop_lat": 48.78302093644826, "code_postal": "92060", "stop_lon": 2.274310142531963, "coord": [48.78302093644826, 2.274310142531963], "stop_id": 5122169, "stop_desc": "138 AVENUE DE LA RESISTANCE - 92060", "stop_name": "HOPITAL MARIE LANNELONGUE"}, "geometry": {"type": "Point", "coordinates": [2.274310142531963, 48.78302093644826]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f66a34c917d9f3baddb66230a3c4a477dbd5dad1", "fields": {"departement": "92", "stop_lat": 48.779878267094254, "code_postal": "92071", "stop_lon": 2.2805155445877006, "coord": [48.779878267094254, 2.2805155445877006], "stop_id": 5122176, "stop_desc": "FACE 11BIS AVENUE DU PLESSIS - 92071", "stop_name": "ROBINSON RER"}, "geometry": {"type": "Point", "coordinates": [2.2805155445877006, 48.779878267094254]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f2ddb562a4d0688cab7f597a4a98f9443c7e3f9d", "fields": {"departement": "92", "stop_lat": 48.77889294434602, "code_postal": "92071", "stop_lon": 2.2880508701269706, "coord": [48.77889294434602, 2.2880508701269706], "stop_id": 5122180, "stop_desc": "126 RUE HOUDAN - 92071", "stop_name": "MAIRIE DE SCEAUX"}, "geometry": {"type": "Point", "coordinates": [2.2880508701269706, 48.77889294434602]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9b0faf96201d450bdd65a4e6eef1d1e1ad432e33", "fields": {"departement": "92", "stop_lat": 48.77839980497763, "code_postal": "92071", "stop_lon": 2.291043248848461, "coord": [48.77839980497763, 2.291043248848461], "stop_id": 5122181, "stop_desc": "FACE 7 BIS RUE VOLTAIRE - 92071", "stop_name": "FONTENAY - HOUDAN"}, "geometry": {"type": "Point", "coordinates": [2.291043248848461, 48.77839980497763]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "776f3f593c049fb5e34d426ab2adbc80283e7e2f", "fields": {"departement": "92", "stop_lat": 48.75907530861674, "code_postal": "92002", "stop_lon": 2.2906390018338043, "coord": [48.75907530861674, 2.2906390018338043], "stop_id": 5122188, "stop_desc": "FACE 108 RUE DE CHATENAY - 92002", "stop_name": "CIMETIERE D'ANTONY"}, "geometry": {"type": "Point", "coordinates": [2.2906390018338043, 48.75907530861674]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "20ea2d9c28bf2a1b2b7671c3226d02e65ab8fe4c", "fields": {"departement": "92", "stop_lat": 48.811217620547396, "code_postal": "92020", "stop_lon": 2.299764105927095, "coord": [48.811217620547396, 2.299764105927095], "stop_id": 5137974, "stop_desc": "AVENUE PIERRE BROSSOLETTE - 92020", "stop_name": "CHATILLON-MONTROUGE"}, "geometry": {"type": "Point", "coordinates": [2.299764105927095, 48.811217620547396]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ce5e047ddb9802dbb631fbc534e7538fd6d02414", "fields": {"departement": "92", "stop_lat": 48.80882637531065, "code_postal": "92020", "stop_lon": 2.2982145699513783, "coord": [48.80882637531065, 2.2982145699513783], "stop_id": 5137975, "stop_desc": "5-7 AV SAINT-EXUPERY - 92020", "stop_name": "MAISON BLANCHE"}, "geometry": {"type": "Point", "coordinates": [2.2982145699513783, 48.80882637531065]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7a80114fa652279e05807355f67270d6abca73cd", "fields": {"departement": "92", "stop_lat": 48.80622881995387, "code_postal": "92020", "stop_lon": 2.297957992282904, "coord": [48.80622881995387, 2.297957992282904], "stop_id": 5137976, "stop_desc": "AVENUE DE LA REPUBLIQUE - 92020", "stop_name": "PIERRE SEMARD"}, "geometry": {"type": "Point", "coordinates": [2.297957992282904, 48.80622881995387]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "21e974c2d7212812ba9cd8e603a6c285ef88b5f5", "fields": {"departement": "92", "stop_lat": 48.796864844005626, "code_postal": "92007", "stop_lon": 2.3022640792634257, "coord": [48.796864844005626, 2.3022640792634257], "stop_id": 5137982, "stop_desc": "AVENUE GABRIEL PERI - 92007", "stop_name": "ROSENBERG"}, "geometry": {"type": "Point", "coordinates": [2.3022640792634257, 48.796864844005626]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2abc9d01c9fc3a1930cd343e5ccd21fcd95fbd30", "fields": {"departement": "92", "stop_lat": 48.797657241493184, "code_postal": "92007", "stop_lon": 2.3076645876486594, "coord": [48.797657241493184, 2.3076645876486594], "stop_id": 5137983, "stop_desc": "2 AVENUE HENRI BARBUSSE - 92007", "stop_name": "RUE DES OLIVETTES"}, "geometry": {"type": "Point", "coordinates": [2.3076645876486594, 48.797657241493184]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "240642554575778dd70e5cf2826ba06ffa4e4907", "fields": {"departement": "92", "stop_lat": 48.78971336344474, "code_postal": "92007", "stop_lon": 2.314035111158828, "coord": [48.78971336344474, 2.314035111158828], "stop_id": 5137990, "stop_desc": "AVENUE PAUL VAILLANT COUTURIER - 92007", "stop_name": "PORT GALAND"}, "geometry": {"type": "Point", "coordinates": [2.314035111158828, 48.78971336344474]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "68af6a94cb14758a86155497da6ac23995f2d7c3", "fields": {"departement": "92", "stop_lat": 48.788391316467134, "code_postal": "92007", "stop_lon": 2.310145469278022, "coord": [48.788391316467134, 2.310145469278022], "stop_id": 5137991, "stop_desc": "RUE DES FRERES LUMIERE - 92007", "stop_name": "FRERES LUMIERE"}, "geometry": {"type": "Point", "coordinates": [2.310145469278022, 48.788391316467134]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "59f37fb6894af282747221f3f4d2f15d3e9302b7", "fields": {"departement": "92", "stop_lat": 48.78565914388523, "code_postal": "92014", "stop_lon": 2.3108541730810153, "coord": [48.78565914388523, 2.3108541730810153], "stop_id": 5137998, "stop_desc": "5 RUE DES BAS COQUARTS - 92014", "stop_name": "LES BAS COQUARTS"}, "geometry": {"type": "Point", "coordinates": [2.3108541730810153, 48.78565914388523]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bfdeb1609bc69f735f0d97b0229c24984a2b02d8", "fields": {"departement": "92", "stop_lat": 48.78852620312861, "code_postal": "92007", "stop_lon": 2.310444648339094, "coord": [48.78852620312861, 2.310444648339094], "stop_id": 5137999, "stop_desc": "FACE 8 BIS RUE DES FRERES LUMIERE - 92007", "stop_name": "FRERES LUMIERE"}, "geometry": {"type": "Point", "coordinates": [2.310444648339094, 48.78852620312861]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "940c50e4f168601745ad9bdc94cdc022ef723260", "fields": {"departement": "92", "stop_lat": 48.79614928832564, "code_postal": "92007", "stop_lon": 2.3173108566165337, "coord": [48.79614928832564, 2.3173108566165337], "stop_id": 5138002, "stop_desc": "2 AVENUE LOUIS PASTEUR - 92007", "stop_name": "ALBERT PETIT"}, "geometry": {"type": "Point", "coordinates": [2.3173108566165337, 48.79614928832564]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dc005cb72444695d9cb057b29e0a03eb9f3d6d4e", "fields": {"departement": "92", "stop_lat": 48.80383802353411, "code_postal": "92020", "stop_lon": 2.2978373453843948, "coord": [48.80383802353411, 2.2978373453843948], "stop_id": 5138013, "stop_desc": "FACE 91 AVENUE DE LA REPUBLIQUE - 92020", "stop_name": "REPUBLIQUE - DEFORGES"}, "geometry": {"type": "Point", "coordinates": [2.2978373453843948, 48.80383802353411]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bdea71f85fa59df9035bcdc37896f0f9764c8889", "fields": {"departement": "92", "stop_lat": 48.809275848620665, "code_postal": "92020", "stop_lon": 2.2984727779887484, "coord": [48.809275848620665, 2.2984727779887484], "stop_id": 5138015, "stop_desc": "FACE 1-3 AV SAINT-EXUPERY - 92020", "stop_name": "MAISON BLANCHE"}, "geometry": {"type": "Point", "coordinates": [2.2984727779887484, 48.809275848620665]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fb11719d3121e628ecedcfacce89a6e136da90bf", "fields": {"departement": "75", "stop_lat": 48.82323941968463, "code_postal": "75114", "stop_lon": 2.324487238165042, "coord": [48.82323941968463, 2.324487238165042], "stop_id": 5138024, "stop_desc": "132 BD BRUNE - 75114", "stop_name": "PORTE D'ORLEANS"}, "geometry": {"type": "Point", "coordinates": [2.324487238165042, 48.82323941968463]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "de14ea295a168b35319427657e521219d60e8846", "fields": {"departement": "75", "stop_lat": 48.88298861040912, "code_postal": "75109", "stop_lon": 2.332035528074624, "coord": [48.88298861040912, 2.332035528074624], "stop_id": 5138026, "stop_desc": "77 RUE BLANCHE - 75109", "stop_name": "BLANCHE"}, "geometry": {"type": "Point", "coordinates": [2.332035528074624, 48.88298861040912]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c7476fc7a4804329e039955acafad6ace7d1574f", "fields": {"departement": "75", "stop_lat": 48.88191012130814, "code_postal": "75109", "stop_lon": 2.331599580614686, "coord": [48.88191012130814, 2.331599580614686], "stop_id": 5138027, "stop_desc": "61-63 RUE BLANCHE - 75109", "stop_name": "BLANCHE - CALAIS"}, "geometry": {"type": "Point", "coordinates": [2.331599580614686, 48.88191012130814]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8b8f29b214dd02cd6fd434fefa824a1402b72087", "fields": {"departement": "75", "stop_lat": 48.8483376180706, "code_postal": "75112", "stop_lon": 2.3710952409746535, "coord": [48.8483376180706, 2.3710952409746535], "stop_id": 3747836, "stop_desc": "41 RUE DE LYON - 75112", "stop_name": "LYON - LEDRU ROLLIN"}, "geometry": {"type": "Point", "coordinates": [2.3710952409746535, 48.8483376180706]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "642d36b2377634b92b7838f0db0cfdf3310e4ada", "fields": {"departement": "75", "stop_lat": 48.843048630831994, "code_postal": "75112", "stop_lon": 2.3839049592217068, "coord": [48.843048630831994, 2.3839049592217068], "stop_id": 3747842, "stop_desc": "102 AVENUE DAUMESNIL - 75112", "stop_name": "CHARLES BOSSUT"}, "geometry": {"type": "Point", "coordinates": [2.3839049592217068, 48.843048630831994]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "849ccf44201f1a2277751a274d66c436930d1689", "fields": {"departement": "75", "stop_lat": 48.843318315289224, "code_postal": "75112", "stop_lon": 2.383755418962855, "coord": [48.843318315289224, 2.383755418962855], "stop_id": 3747843, "stop_desc": "139 AVENUE DAUMESNIL - 75112", "stop_name": "CHARLES BOSSUT"}, "geometry": {"type": "Point", "coordinates": [2.383755418962855, 48.843318315289224]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2d66a06cf92634d097d74fe7d58a7e4e35d5f63b", "fields": {"departement": "75", "stop_lat": 48.8405831344347, "code_postal": "75112", "stop_lon": 2.390819618647147, "coord": [48.8405831344347, 2.390819618647147], "stop_id": 3747846, "stop_desc": "144-146 AVENUE DAUMESNIL - 75112", "stop_name": "DUBRUNFAUT"}, "geometry": {"type": "Point", "coordinates": [2.390819618647147, 48.8405831344347]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "08ba1ba6fcbba8cd978afc836f6f892f42395602", "fields": {"departement": "75", "stop_lat": 48.84166320820454, "code_postal": "75112", "stop_lon": 2.3872124455710426, "coord": [48.84166320820454, 2.3872124455710426], "stop_id": 3747845, "stop_desc": "AVENUE DAUMESNIL - 75112", "stop_name": "MAIRIE DU 12E"}, "geometry": {"type": "Point", "coordinates": [2.3872124455710426, 48.84166320820454]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f80044efbf313cba1861d1aa6d0734bbb6797f28", "fields": {"departement": "91", "stop_lat": 48.69429281893805, "code_postal": "91326", "stop_lon": 2.366310765272141, "coord": [48.69429281893805, 2.366310765272141], "stop_id": 3732144, "stop_desc": "FACE 5 AVENUE GABRIEL PERI - 91326", "stop_name": "CIMETIERE DE JUVISY-SUR-ORGE"}, "geometry": {"type": "Point", "coordinates": [2.366310765272141, 48.69429281893805]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0d6fa3205d66af07719902c7598d6e1377790cb6", "fields": {"departement": "91", "stop_lat": 48.68797556126162, "code_postal": "91589", "stop_lon": 2.358080202731522, "coord": [48.68797556126162, 2.358080202731522], "stop_id": 3732139, "stop_desc": "FACE 209 BOULEVARD ARISTIDE BRIAND - 91589", "stop_name": "ARISTIDE BRIAND - CHAMPAGNE"}, "geometry": {"type": "Point", "coordinates": [2.358080202731522, 48.68797556126162]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b169ed3e4d1a63a61604e3640c1f56cee1dcc362", "fields": {"departement": "91", "stop_lat": 48.68673587671857, "code_postal": "91589", "stop_lon": 2.353273929477104, "coord": [48.68673587671857, 2.353273929477104], "stop_id": 3732137, "stop_desc": "80 BD ARISTIDE BRIAND - 91589", "stop_name": "MARCHE DE SAVIGNY-SUR-ORGE"}, "geometry": {"type": "Point", "coordinates": [2.353273929477104, 48.68673587671857]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "69145cceb43de1b4d1e0aa6ee575a29423f3ea4a", "fields": {"departement": "91", "stop_lat": 48.68673587671857, "code_postal": "91589", "stop_lon": 2.353273929477104, "coord": [48.68673587671857, 2.353273929477104], "stop_id": 3732171, "stop_desc": "80 BD ARISTIDE BRIAND - 91589", "stop_name": "MARCHE DE SAVIGNY-SUR-ORGE"}, "geometry": {"type": "Point", "coordinates": [2.353273929477104, 48.68673587671857]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "71c48d27c7a9ea3475541707ec2db47e9dabadb8", "fields": {"departement": "91", "stop_lat": 48.67594077881741, "code_postal": "91589", "stop_lon": 2.35093608043074, "coord": [48.67594077881741, 2.35093608043074], "stop_id": 3732128, "stop_desc": "4 RUE CHAMBERLIN - 91589", "stop_name": "GARE DE SAVIGNY-SUR-ORGE RER"}, "geometry": {"type": "Point", "coordinates": [2.35093608043074, 48.67594077881741]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "99413cdf356ce90a16dbe37abfa3f885fa1cd45a", "fields": {"departement": "91", "stop_lat": 48.69769829702339, "code_postal": "91027", "stop_lon": 2.3708207301238646, "coord": [48.69769829702339, 2.3708207301238646], "stop_id": 3732146, "stop_desc": "4-6 ROUTE DE MONTLHERY - 91027", "stop_name": "PYRAMIDE DE JUVISY"}, "geometry": {"type": "Point", "coordinates": [2.3708207301238646, 48.69769829702339]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4eed7e3ba174454b6ec3038a8d8635cedf49ae07", "fields": {"departement": "91", "stop_lat": 48.69127355130377, "code_postal": "91589", "stop_lon": 2.362371799704561, "coord": [48.69127355130377, 2.362371799704561], "stop_id": 3732143, "stop_desc": "263 BOULEVARD ARISTIDE BRIAND - 91589", "stop_name": "TOURTERELLES"}, "geometry": {"type": "Point", "coordinates": [2.362371799704561, 48.69127355130377]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ceb756e2247aa209ac2c5f7075b6a25c43f68015", "fields": {"departement": "91", "stop_lat": 48.69064764216272, "code_postal": "91326", "stop_lon": 2.381786125631908, "coord": [48.69064764216272, 2.381786125631908], "stop_id": 3732152, "stop_desc": "FACE 41 RUE DES GAULOIS - 91326", "stop_name": "JUVISY RER"}, "geometry": {"type": "Point", "coordinates": [2.381786125631908, 48.69064764216272]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1cbd626c868dfec59e92b9042e6b6af9a854264a", "fields": {"departement": "91", "stop_lat": 48.68370754567684, "code_postal": "91589", "stop_lon": 2.344802289929455, "coord": [48.68370754567684, 2.344802289929455], "stop_id": 3732134, "stop_desc": "45-47 BD ARISTIDE BRIAND - 91589", "stop_name": "GOUNOD"}, "geometry": {"type": "Point", "coordinates": [2.344802289929455, 48.68370754567684]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dbc6b53509ec9a582f012344a4c64462bdeedfb1", "fields": {"departement": "91", "stop_lat": 48.69492797505953, "code_postal": "91326", "stop_lon": 2.3768067437687628, "coord": [48.69492797505953, 2.3768067437687628], "stop_id": 3732148, "stop_desc": "3 AVENUE GOUNOD - 91326", "stop_name": "TERRASSE"}, "geometry": {"type": "Point", "coordinates": [2.3768067437687628, 48.69492797505953]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dc86973b25cf6f9e958ee60b5a541e43aba05932", "fields": {"departement": "75", "stop_lat": 48.869469015384865, "code_postal": "75108", "stop_lon": 2.3113019501850944, "coord": [48.869469015384865, 2.3113019501850944], "stop_id": 3740556, "stop_desc": "FACE 3 AVENUE MATIGNON - 75108", "stop_name": "ROND-POINT DES CHAMPS-ELYSEES - MATIGNON"}, "geometry": {"type": "Point", "coordinates": [2.3113019501850944, 48.869469015384865]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c258cf6e6e45721a3adcc0483fb6c7c3629c1f1f", "fields": {"departement": "75", "stop_lat": 48.84726135533499, "code_postal": "75112", "stop_lon": 2.4072085511495405, "coord": [48.84726135533499, 2.4072085511495405], "stop_id": 3748069, "stop_desc": "82-84 COURS DE VINCENNES - 75112", "stop_name": "PYRENEES - DOCTEUR NETTER"}, "geometry": {"type": "Point", "coordinates": [2.4072085511495405, 48.84726135533499]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f825129e8a7abf419ba319f1175305b44bddfa76", "fields": {"departement": "94", "stop_lat": 48.84292286373719, "code_postal": "94067", "stop_lon": 2.4175240200745383, "coord": [48.84292286373719, 2.4175240200745383], "stop_id": 3748073, "stop_desc": "40 AVENUE DU GENERAL DE GAULLE - 94067", "stop_name": "MAIRIE DE SAINT-MANDE"}, "geometry": {"type": "Point", "coordinates": [2.4175240200745383, 48.84292286373719]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2e8e6c5b85fae8ef1a2acf2c78e14ae5e0afc2f5", "fields": {"departement": "94", "stop_lat": 48.83814143459987, "code_postal": "94067", "stop_lon": 2.4175983140877286, "coord": [48.83814143459987, 2.4175983140877286], "stop_id": 3748077, "stop_desc": "94-96 AVENUE DU GENERAL DE GAULLE - 94067", "stop_name": "JEAN MERMOZ"}, "geometry": {"type": "Point", "coordinates": [2.4175983140877286, 48.83814143459987]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cfa6d180d33e31885dea4cfd88b1043e74c938a3", "fields": {"departement": "75", "stop_lat": 48.84700789118935, "code_postal": "75112", "stop_lon": 2.4102313138152516, "coord": [48.84700789118935, 2.4102313138152516], "stop_id": 3748070, "stop_desc": "116 CRS DE VINCENNES - 75112", "stop_name": "PORTE DE VINCENNES"}, "geometry": {"type": "Point", "coordinates": [2.4102313138152516, 48.84700789118935]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3b02c81aa673cf0f5301069beb66ab6245db0b42", "fields": {"departement": "75", "stop_lat": 48.853119051005244, "code_postal": "75111", "stop_lon": 2.37075788101229, "coord": [48.853119051005244, 2.37075788101229], "stop_id": 3748093, "stop_desc": "5-7-9 RUE DU FAUBOURG SAINT-ANTOINE - 75111", "stop_name": "BASTILLE - FAUBOURG SAINT-ANTOINE"}, "geometry": {"type": "Point", "coordinates": [2.37075788101229, 48.853119051005244]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "17c56002092b55210df9f7d4fe9c83a8798f6681", "fields": {"departement": "75", "stop_lat": 48.853056803181765, "code_postal": "75104", "stop_lon": 2.368306389968919, "coord": [48.853056803181765, 2.368306389968919], "stop_id": 3748094, "stop_desc": "1-3 PLACE DE LA BASTILLE - 75104", "stop_name": "BASTILLE - RUE SAINT-ANTOINE"}, "geometry": {"type": "Point", "coordinates": [2.368306389968919, 48.853056803181765]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "65521da5d57b5cde93ae3e356c297909a63af2d3", "fields": {"departement": "75", "stop_lat": 48.85201275020522, "code_postal": "75111", "stop_lon": 2.3736307537404877, "coord": [48.85201275020522, 2.3736307537404877], "stop_id": 3748092, "stop_desc": "55 RUE DU FAUBOURG SAINT ANTOINE - 75111", "stop_name": "LA BOULE BLANCHE"}, "geometry": {"type": "Point", "coordinates": [2.3736307537404877, 48.85201275020522]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "314d21b0365cb79c200debf87bf2e4075745b661", "fields": {"departement": "75", "stop_lat": 48.88844396088033, "code_postal": "75118", "stop_lon": 2.3384403589906495, "coord": [48.88844396088033, 2.3384403589906495], "stop_id": 3749655, "stop_desc": "16 RUE DE L'ABREUVOIR - 75118", "stop_name": "ABREUVOIR - GIRARDON"}, "geometry": {"type": "Point", "coordinates": [2.3384403589906495, 48.88844396088033]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cdc6407152db2369775494d11e71af5df81bb589", "fields": {"departement": "75", "stop_lat": 48.8897110005581, "code_postal": "75118", "stop_lon": 2.343442158157412, "coord": [48.8897110005581, 2.343442158157412], "stop_id": 3749642, "stop_desc": "60-62 RUE CUSTINE - 75118", "stop_name": "CUSTINE - MONT-CENIS"}, "geometry": {"type": "Point", "coordinates": [2.343442158157412, 48.8897110005581]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "77dd465dae738ab7ffd2c168b18e684eda42ee38", "fields": {"departement": "75", "stop_lat": 48.88652069728974, "code_postal": "75118", "stop_lon": 2.3385765945770394, "coord": [48.88652069728974, 2.3385765945770394], "stop_id": 3749657, "stop_desc": "1 PLACE JEAN BAPTISTE CLEMENT - 75118", "stop_name": "GABRIELLE"}, "geometry": {"type": "Point", "coordinates": [2.3385765945770394, 48.88652069728974]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3d017006460e0d7eaa90f1559151320b5d11130f", "fields": {"departement": "75", "stop_lat": 48.884103086657674, "code_postal": "75118", "stop_lon": 2.34087955113396, "coord": [48.884103086657674, 2.34087955113396], "stop_id": 3749660, "stop_desc": "2 RUE YVONNE LE TAC - 75118", "stop_name": "YVONNE LE TAC"}, "geometry": {"type": "Point", "coordinates": [2.34087955113396, 48.884103086657674]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bfb4055b226abb81badbfd7744bdeab6088d79f7", "fields": {"departement": "75", "stop_lat": 48.889045801610074, "code_postal": "75118", "stop_lon": 2.34581345976619, "coord": [48.889045801610074, 2.34581345976619], "stop_id": 3749641, "stop_desc": "36 RUE CUSTINE - 75118", "stop_name": "CUSTINE - RAMEY"}, "geometry": {"type": "Point", "coordinates": [2.34581345976619, 48.889045801610074]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2188ad044cf17effb79aa37984c95db83d7edf7f", "fields": {"departement": "75", "stop_lat": 48.88096390201391, "code_postal": "75117", "stop_lon": 2.2844928632641652, "coord": [48.88096390201391, 2.2844928632641652], "stop_id": 3749709, "stop_desc": "2 PLACE DE LA PORTE DES TERNES - 75117", "stop_name": "GENERAL KOENIG - PALAIS DES CONGRES"}, "geometry": {"type": "Point", "coordinates": [2.2844928632641652, 48.88096390201391]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "16912d6daf708feb5369e0b73e9c375022e7eab4", "fields": {"departement": "75", "stop_lat": 48.88180705644337, "code_postal": "75117", "stop_lon": 2.280894549269997, "coord": [48.88180705644337, 2.280894549269997], "stop_id": 3749711, "stop_desc": "FACE 27 AVENUE DE LA PORTE DES TERNES - 75117", "stop_name": "MONTROSIER - PARMENTIER"}, "geometry": {"type": "Point", "coordinates": [2.280894549269997, 48.88180705644337]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "24f0f3821232dbf8697b669101e7ab719fdb28d7", "fields": {"departement": "75", "stop_lat": 48.87571760094273, "code_postal": "75109", "stop_lon": 2.3271857160925067, "coord": [48.87571760094273, 2.3271857160925067], "stop_id": 3749688, "stop_desc": "102 RUE SAINT-LAZARE - 75109", "stop_name": "GARE SAINT-LAZARE - BUDAPEST"}, "geometry": {"type": "Point", "coordinates": [2.3271857160925067, 48.87571760094273]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fd53c3543933d17cf3b303d4f8ac190005e94f18", "fields": {"departement": "75", "stop_lat": 48.87958240532934, "code_postal": "75117", "stop_lon": 2.290585154457603, "coord": [48.87958240532934, 2.290585154457603], "stop_id": 3749705, "stop_desc": "68 AV DES TERNES - 75117", "stop_name": "EGLISE SAINT-FERDINAND"}, "geometry": {"type": "Point", "coordinates": [2.290585154457603, 48.87958240532934]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f28d486e32c337a67098ba01debc17ab00727bfb", "fields": {"departement": "75", "stop_lat": 48.875121390460386, "code_postal": "75108", "stop_lon": 2.30847875269421, "coord": [48.875121390460386, 2.30847875269421], "stop_id": 3749696, "stop_desc": "174 BOULEVARD HAUSSMANN - 75108", "stop_name": "HAUSSMANN - COURCELLES"}, "geometry": {"type": "Point", "coordinates": [2.30847875269421, 48.875121390460386]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ac5f0adda780cb17d423149bcf52d0bad4e720df", "fields": {"departement": "75", "stop_lat": 48.87995880011713, "code_postal": "75117", "stop_lon": 2.2879276987978083, "coord": [48.87995880011713, 2.2879276987978083], "stop_id": 3749708, "stop_desc": "AV DES TERNES - 75117", "stop_name": "PEREIRE - PORTE MAILLOT"}, "geometry": {"type": "Point", "coordinates": [2.2879276987978083, 48.87995880011713]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "21dbf2b61902874555591fab8198181944229077", "fields": {"departement": "75", "stop_lat": 48.88618817575125, "code_postal": "75118", "stop_lon": 2.336573288432968, "coord": [48.88618817575125, 2.336573288432968], "stop_id": 3749667, "stop_desc": "22-24 RUE DURANTIN - 75118", "stop_name": "DURANTIN - BURQ"}, "geometry": {"type": "Point", "coordinates": [2.336573288432968, 48.88618817575125]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e39b0c768733a132e7eeeda59a2dce080847b0f2", "fields": {"departement": "75", "stop_lat": 48.887221663718265, "code_postal": "75118", "stop_lon": 2.3340384395409357, "coord": [48.887221663718265, 2.3340384395409357], "stop_id": 3749669, "stop_desc": "64-66 RUE LEPIC - 75118", "stop_name": "TOURLAQUE"}, "geometry": {"type": "Point", "coordinates": [2.3340384395409357, 48.887221663718265]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ed153e1d50716c79f50ecd49c27ed4f2ea31ce69", "fields": {"departement": "75", "stop_lat": 48.88097388157959, "code_postal": "75110", "stop_lon": 2.357381029341471, "coord": [48.88097388157959, 2.357381029341471], "stop_id": 3749676, "stop_desc": "GARE ROUTIERE - 75110", "stop_name": "GARE DU NORD"}, "geometry": {"type": "Point", "coordinates": [2.357381029341471, 48.88097388157959]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a3873b86a2b8122dff306db3a36340949345a224", "fields": {"departement": "75", "stop_lat": 48.88594549562022, "code_postal": "75118", "stop_lon": 2.3347062814548414, "coord": [48.88594549562022, 2.3347062814548414], "stop_id": 3749668, "stop_desc": "36 RUE LEPIC - 75118", "stop_name": "THOLOZE"}, "geometry": {"type": "Point", "coordinates": [2.3347062814548414, 48.88594549562022]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "52004a05cf6a048322c609e1182f954108c53931", "fields": {"departement": "75", "stop_lat": 48.879286439821286, "code_postal": "75119", "stop_lon": 2.4018558441108144, "coord": [48.879286439821286, 2.4018558441108144], "stop_id": 3749748, "stop_desc": "AVENUE DE LA PORTE DU PRE SAINT-GERVAIS - 75119", "stop_name": "HOPITAL R. DEBRE - PRE ST GERVAIS"}, "geometry": {"type": "Point", "coordinates": [2.4018558441108144, 48.879286439821286]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d36e9ec6a7e62bc0f53c5cfd9cbe40c2a3accc42", "fields": {"departement": "75", "stop_lat": 48.878170973103636, "code_postal": "75109", "stop_lon": 2.349027345325796, "coord": [48.878170973103636, 2.349027345325796], "stop_id": 3749771, "stop_desc": "115 RUE DU FAUBOURG POISSONNIERE - 75109", "stop_name": "LA FAYETTE - POISSONNIERE"}, "geometry": {"type": "Point", "coordinates": [2.349027345325796, 48.878170973103636]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4f2e7ab9ea33e8bac006558c50c7fc8079ffa37a", "fields": {"departement": "75", "stop_lat": 48.86239878309448, "code_postal": "75101", "stop_lon": 2.33803111409913, "coord": [48.86239878309448, 2.33803111409913], "stop_id": 3749781, "stop_desc": "153 RUE SAINT HONORE - 75101", "stop_name": "PALAIS ROYAL - MUSEE DU LOUVRE"}, "geometry": {"type": "Point", "coordinates": [2.33803111409913, 48.86239878309448]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ff5592b2ff7dd907b60c2ed5df01d5647a15dad6", "fields": {"departement": "75", "stop_lat": 48.884567463040085, "code_postal": "75118", "stop_lon": 2.364059875108995, "coord": [48.884567463040085, 2.364059875108995], "stop_id": 3749763, "stop_desc": "6-8 BOULEVARD DE LA CHAPELLE - 75118", "stop_name": "CHAPELLE - CAILLIE"}, "geometry": {"type": "Point", "coordinates": [2.364059875108995, 48.884567463040085]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "67343a8d5be14c8bf8a2425dc31228b44d135fc8", "fields": {"departement": "75", "stop_lat": 48.88458616844703, "code_postal": "75119", "stop_lon": 2.3605848838197243, "coord": [48.88458616844703, 2.3605848838197243], "stop_id": 3749764, "stop_desc": "BOULEVARD DE LA CHAPELLE - 75119", "stop_name": "PLACE DE LA CHAPELLE"}, "geometry": {"type": "Point", "coordinates": [2.3605848838197243, 48.88458616844703]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eb9008d6f70caa0b0cae85ca8ea53c0981e3d393", "fields": {"departement": "75", "stop_lat": 48.87153877146487, "code_postal": "75109", "stop_lon": 2.3433582449134955, "coord": [48.87153877146487, 2.3433582449134955], "stop_id": 3749775, "stop_desc": "32 BOULEVARD POISSONNIERE - 75109", "stop_name": "GRANDS BOULEVARDS"}, "geometry": {"type": "Point", "coordinates": [2.3433582449134955, 48.87153877146487]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f452079e2ef70143d85cd136626b10227c002a29", "fields": {"departement": "75", "stop_lat": 48.864366984182, "code_postal": "75101", "stop_lon": 2.3402787968132306, "coord": [48.864366984182, 2.3402787968132306], "stop_id": 3749782, "stop_desc": "42 RUE CROIX DES PETITS CHAMPS - 75101", "stop_name": "COQUILLIERE"}, "geometry": {"type": "Point", "coordinates": [2.3402787968132306, 48.864366984182]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7308589ba754847aed97ebb3721b4ca72e4a472d", "fields": {"departement": "75", "stop_lat": 48.84826115001549, "code_postal": "75106", "stop_lon": 2.327626818016069, "coord": [48.84826115001549, 2.327626818016069], "stop_id": 5138184, "stop_desc": "76 BOULEVARD RASPAIL - 75106", "stop_name": "RENNES - RASPAIL"}, "geometry": {"type": "Point", "coordinates": [2.327626818016069, 48.84826115001549]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b0222da6dfbe35c77e625747836ea508779f1c56", "fields": {"departement": "75", "stop_lat": 48.84166445005082, "code_postal": "75114", "stop_lon": 2.329520690967109, "coord": [48.84166445005082, 2.329520690967109], "stop_id": 5138188, "stop_desc": "206 BOULEVARD RASPAIL - 75114", "stop_name": "VAVIN"}, "geometry": {"type": "Point", "coordinates": [2.329520690967109, 48.84166445005082]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2ad2e3a0262a5a01a1281aecba235d79ec93ce78", "fields": {"departement": "75", "stop_lat": 48.82332914428735, "code_postal": "75114", "stop_lon": 2.32313969054984, "coord": [48.82332914428735, 2.32313969054984], "stop_id": 5138204, "stop_desc": "1 AVENUE DE LA PORTE DE MONTROUGE - 75114", "stop_name": "PORTE D'ORLEANS - ERNEST REYER"}, "geometry": {"type": "Point", "coordinates": [2.32313969054984, 48.82332914428735]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6a042c8a0aff0aec2cbf6841a03851f0f2575f98", "fields": {"departement": "92", "stop_lat": 48.81885285245728, "code_postal": "92049", "stop_lon": 2.319942511783087, "coord": [48.81885285245728, 2.319942511783087], "stop_id": 5138207, "stop_desc": "FACE 34 AVENUE DE LA REPUBLIQUE - 92049", "stop_name": "MAIRIE DE MONTROUGE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.319942511783087, 48.81885285245728]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4c682c1d10cdcd326bbb5dd7774e400edd1b5cb3", "fields": {"departement": "94", "stop_lat": 48.78382278637771, "code_postal": "94028", "stop_lon": 2.447055715521933, "coord": [48.78382278637771, 2.447055715521933], "stop_id": 5144789, "stop_desc": "ROUTE DE CHOISY - 94028", "stop_name": "PREFECTURE DU VAL-DE-MARNE"}, "geometry": {"type": "Point", "coordinates": [2.447055715521933, 48.78382278637771]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "197276628ca9a9c922fadafdb414e3d775741f5e", "fields": {"departement": "75", "stop_lat": 48.894804487305976, "code_postal": "75117", "stop_lon": 2.3133337846585755, "coord": [48.894804487305976, 2.3133337846585755], "stop_id": 5150147, "stop_desc": "AVENUE DE LA PORTE DE CLICHY - 75117", "stop_name": "PORTE DE CLICHY"}, "geometry": {"type": "Point", "coordinates": [2.3133337846585755, 48.894804487305976]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f2f99807cb668b38d98cc051c48b4d9425becd56", "fields": {"departement": "75", "stop_lat": 48.82724857606228, "code_postal": "75114", "stop_lon": 2.334831673721825, "coord": [48.82724857606228, 2.334831673721825], "stop_id": 5150149, "stop_desc": "42 AVENUE RENE COTY - 75114", "stop_name": "ALESIA - RENE COTY"}, "geometry": {"type": "Point", "coordinates": [2.334831673721825, 48.82724857606228]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "25a1bfdbb4cb1c2f167acd69663c93f77c02becd", "fields": {"departement": "92", "stop_lat": 48.93762453557405, "code_postal": "92036", "stop_lon": 2.278719377274554, "coord": [48.93762453557405, 2.278719377274554], "stop_id": 5150157, "stop_desc": "BOULEVARD INTERCOMMUNAL - 92036", "stop_name": "PORT DE GENNEVILLIERS - CENTRE DE VIE"}, "geometry": {"type": "Point", "coordinates": [2.278719377274554, 48.93762453557405]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "20de664b45962bdebef04cff96c40a2b4e075004", "fields": {"departement": "92", "stop_lat": 48.93393582511503, "code_postal": "92025", "stop_lon": 2.2563259345574527, "coord": [48.93393582511503, 2.2563259345574527], "stop_id": 5150165, "stop_desc": "RUE DES ENTREPRENEURS - 92025", "stop_name": "JAURES"}, "geometry": {"type": "Point", "coordinates": [2.2563259345574527, 48.93393582511503]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "68aebc08f55bc3ad07b23cbdeeb89d97c0e35177", "fields": {"departement": "92", "stop_lat": 48.89565690949968, "code_postal": "92050", "stop_lon": 2.195198940382233, "coord": [48.89565690949968, 2.195198940382233], "stop_id": 5150173, "stop_desc": "23 - 25 RUE HENRI MARTIN - 92050", "stop_name": "NANTERRE - VILLE RER"}, "geometry": {"type": "Point", "coordinates": [2.195198940382233, 48.89565690949968]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6ff0a579857be4cc199657cb06651eff025bbb14", "fields": {"departement": "92", "stop_lat": 48.893923902710036, "code_postal": "92050", "stop_lon": 2.2126227396461546, "coord": [48.893923902710036, 2.2126227396461546], "stop_id": 5150176, "stop_desc": "FACE 123 AV FREDERIC ET IRENE JOLIOT CURIE - 92050", "stop_name": "JOLIOT-CURIE - COURBEVOIE"}, "geometry": {"type": "Point", "coordinates": [2.2126227396461546, 48.893923902710036]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "df1b77bf9bb0a7217622a4192baae92ef4970d53", "fields": {"departement": "93", "stop_lat": 48.9179746055291, "code_postal": "93066", "stop_lon": 2.35221363561536, "coord": [48.9179746055291, 2.35221363561536], "stop_id": 5150185, "stop_desc": "FACE 19 R DES CHEMINOTS - 93066", "stop_name": "STADE DE FRANCE - SAINT-DENIS RER"}, "geometry": {"type": "Point", "coordinates": [2.35221363561536, 48.9179746055291]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e80faf036bb6e2e46b77ebbdf3ae35da07ecd532", "fields": {"departement": "93", "stop_lat": 48.91550215331743, "code_postal": "93066", "stop_lon": 2.358921630509063, "coord": [48.91550215331743, 2.358921630509063], "stop_id": 5150190, "stop_desc": "64 RUE DU LANDY - 93066", "stop_name": "LANDY - PONT DE SOISSONS"}, "geometry": {"type": "Point", "coordinates": [2.358921630509063, 48.91550215331743]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0f8ca0c5eb41cdd09b9d13f02faa78a974b334a5", "fields": {"departement": "93", "stop_lat": 48.918413404869824, "code_postal": "93066", "stop_lon": 2.3616773917397325, "coord": [48.918413404869824, 2.3616773917397325], "stop_id": 5150192, "stop_desc": "AVENUE DU STADE DE FRANCE - 93066", "stop_name": "LA PLAINE - STADE DE FRANCE RER"}, "geometry": {"type": "Point", "coordinates": [2.3616773917397325, 48.918413404869824]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "13eeecbc92b44ae2160dd6fe6a11ca776093eb45", "fields": {"departement": "93", "stop_lat": 48.92031862273414, "code_postal": "93066", "stop_lon": 2.361773748068758, "coord": [48.92031862273414, 2.361773748068758], "stop_id": 5150193, "stop_desc": "AVENUE DU STADE DE FRANCE - 93066", "stop_name": "AVENUE DU STADE DE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.361773748068758, 48.92031862273414]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7857ff6224fe4e7aea699b381a79279c5af61dcd", "fields": {"departement": "93", "stop_lat": 48.923400592077186, "code_postal": "93066", "stop_lon": 2.364339088469392, "coord": [48.923400592077186, 2.364339088469392], "stop_id": 5150196, "stop_desc": "5 RUE JESSE OWEN - 93066", "stop_name": "JESSE OWENS"}, "geometry": {"type": "Point", "coordinates": [2.364339088469392, 48.923400592077186]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5d105bb545875b87133f8dd96ec3ad2ac5e67045", "fields": {"departement": "93", "stop_lat": 48.92609724777595, "code_postal": "93066", "stop_lon": 2.3616673768276093, "coord": [48.92609724777595, 2.3616673768276093], "stop_id": 5150198, "stop_desc": "RUE HENRI DELAUNAY - 93066", "stop_name": "DELAUNAY - RIMET"}, "geometry": {"type": "Point", "coordinates": [2.3616673768276093, 48.92609724777595]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "35606ae90ea1762c1d90c4b1bb75713b7ef50b1e", "fields": {"departement": "93", "stop_lat": 48.928902058125175, "code_postal": "93066", "stop_lon": 2.356813173931948, "coord": [48.928902058125175, 2.356813173931948], "stop_id": 5150201, "stop_desc": "AVENUE DU PRESIDENT WILSON - 93066", "stop_name": "PORTE DE PARIS - STADE DE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.356813173931948, 48.928902058125175]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5af58263e1913d04ad42254e7d5c118cce875df0", "fields": {"departement": "93", "stop_lat": 48.92992559027362, "code_postal": "93066", "stop_lon": 2.362051084336665, "coord": [48.92992559027362, 2.362051084336665], "stop_id": 5150203, "stop_desc": "0 AV PAUL VAILLANT COUTURIER - 93066", "stop_name": "HOPITAL"}, "geometry": {"type": "Point", "coordinates": [2.362051084336665, 48.92992559027362]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8e0868b9ca74f997cf9e96921f1c1af0c7417256", "fields": {"departement": "93", "stop_lat": 48.93361750012276, "code_postal": "93066", "stop_lon": 2.3691867593373637, "coord": [48.93361750012276, 2.3691867593373637], "stop_id": 5150207, "stop_desc": "7 AVENUE IRENE ET FREDERIC JOLIOT CURIE - 93066", "stop_name": "JOLIOT CURIE"}, "geometry": {"type": "Point", "coordinates": [2.3691867593373637, 48.93361750012276]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "61c1095342e060b7b006f03d0da24629a3b696ca", "fields": {"departement": "93", "stop_lat": 48.93597116256128, "code_postal": "93066", "stop_lon": 2.372366558699002, "coord": [48.93597116256128, 2.372366558699002], "stop_id": 5150208, "stop_desc": "AVENUE DU DOCTEUR LAMAZE - 93066", "stop_name": "HOPITAL DELAFONTAINE"}, "geometry": {"type": "Point", "coordinates": [2.372366558699002, 48.93597116256128]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8268e75910d8e2f432e4c8e2fced45c7740dee42", "fields": {"departement": "93", "stop_lat": 48.94227281671999, "code_postal": "93066", "stop_lon": 2.3652084472315726, "coord": [48.94227281671999, 2.3652084472315726], "stop_id": 5150212, "stop_desc": "AVENUE LENINE - 93066", "stop_name": "LYCEE PAUL ELUARD"}, "geometry": {"type": "Point", "coordinates": [2.3652084472315726, 48.94227281671999]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a1fddfc674df2f6088a33e9b905e6eececbe3941", "fields": {"departement": "93", "stop_lat": 48.945670047269445, "code_postal": "93066", "stop_lon": 2.3642279471956593, "coord": [48.945670047269445, 2.3642279471956593], "stop_id": 5150213, "stop_desc": "AVENUE DE STALINGRAD - 93066", "stop_name": "SAINT-DENIS - UNIVERSITE"}, "geometry": {"type": "Point", "coordinates": [2.3642279471956593, 48.945670047269445]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fb60ae69a3b1eb1969eabd8eec7b2560bb0370ef", "fields": {"departement": "93", "stop_lat": 48.94453030711624, "code_postal": "93066", "stop_lon": 2.3559731976678484, "coord": [48.94453030711624, 2.3559731976678484], "stop_id": 5150215, "stop_desc": "2 AVENUE DU COLONEL FABIEN - 93066", "stop_name": "ROGER SEMAT"}, "geometry": {"type": "Point", "coordinates": [2.3559731976678484, 48.94453030711624]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c322b75faf1770ac69b929c0da3b369225ae5ee6", "fields": {"departement": "93", "stop_lat": 48.94622084193486, "code_postal": "93066", "stop_lon": 2.3475829471105745, "coord": [48.94622084193486, 2.3475829471105745], "stop_id": 5150219, "stop_desc": "46 AVENUE DU COLONEL FABIEN - 93066", "stop_name": "DELAUNAY - BELLEVILLE"}, "geometry": {"type": "Point", "coordinates": [2.3475829471105745, 48.94622084193486]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "70579ac7c028fd0361991ac46a4b2085858935f4", "fields": {"departement": "93", "stop_lat": 48.94594223300662, "code_postal": "93066", "stop_lon": 2.3478011891927646, "coord": [48.94594223300662, 2.3478011891927646], "stop_id": 5150220, "stop_desc": "33 AVENUE DU COLONEL FABIEN - 93066", "stop_name": "DELAUNAY - BELLEVILLE"}, "geometry": {"type": "Point", "coordinates": [2.3478011891927646, 48.94594223300662]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ea5b7e7efa053b0164eb085d50838551ba71a6a4", "fields": {"departement": "95", "stop_lat": 48.95838905774594, "code_postal": "95427", "stop_lon": 2.329489605716314, "coord": [48.95838905774594, 2.329489605716314], "stop_id": 5150229, "stop_desc": "5 ROUTE DE SAINT-LEU - 95427", "stop_name": "GARE D'EPINAY-VILLETANEUSE"}, "geometry": {"type": "Point", "coordinates": [2.329489605716314, 48.95838905774594]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c3efdf11d1d40552b3fab5b6352aef8116e3437f", "fields": {"departement": "93", "stop_lat": 48.945732880199664, "code_postal": "93066", "stop_lon": 2.364555425126458, "coord": [48.945732880199664, 2.364555425126458], "stop_id": 5150249, "stop_desc": "AVENUE DE STALINGRAD - 93066", "stop_name": "SAINT-DENIS - UNIVERSITE"}, "geometry": {"type": "Point", "coordinates": [2.364555425126458, 48.945732880199664]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ece4657ee27307c09ff87407617b89a6165e28ed", "fields": {"departement": "93", "stop_lat": 48.94555310405411, "code_postal": "93066", "stop_lon": 2.3647326958539416, "coord": [48.94555310405411, 2.3647326958539416], "stop_id": 5150250, "stop_desc": "AVENUE DE STALINGRAD - 93066", "stop_name": "SAINT-DENIS - UNIVERSITE"}, "geometry": {"type": "Point", "coordinates": [2.3647326958539416, 48.94555310405411]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c0fb08276dd6fd953c77de226afcc597c68f2cdc", "fields": {"departement": "93", "stop_lat": 48.94948912219902, "code_postal": "93059", "stop_lon": 2.365512523883428, "coord": [48.94948912219902, 2.365512523883428], "stop_id": 5150251, "stop_desc": "RUE TOUSSAINT LOUVERTURE - 93059", "stop_name": "TOUSSAINT LOUVERTURE"}, "geometry": {"type": "Point", "coordinates": [2.365512523883428, 48.94948912219902]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5ddcdb3bc2836e93b98c51acf21f7417b364e286", "fields": {"departement": "93", "stop_lat": 48.96344860443361, "code_postal": "93079", "stop_lon": 2.3440514965489405, "coord": [48.96344860443361, 2.3440514965489405], "stop_id": 5150260, "stop_desc": "FACE 49 RUE ROGER SALENGRO - 93079", "stop_name": "EGLISE DE VILLETANEUSE"}, "geometry": {"type": "Point", "coordinates": [2.3440514965489405, 48.96344860443361]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "091228760550dd4772686e2d09c6b07560f8d059", "fields": {"departement": "93", "stop_lat": 48.96539867910872, "code_postal": "93079", "stop_lon": 2.344461214685562, "coord": [48.96539867910872, 2.344461214685562], "stop_id": 5150262, "stop_desc": "84 RUE MAURICE GRANDCOING - 93079", "stop_name": "CITE GRANDCOING"}, "geometry": {"type": "Point", "coordinates": [2.344461214685562, 48.96539867910872]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b0a93a2e3a90ce27aae596e753dbe96abd894de3", "fields": {"departement": "95", "stop_lat": 48.97563448352471, "code_postal": "95197", "stop_lon": 2.3316439441869936, "coord": [48.97563448352471, 2.3316439441869936], "stop_id": 5150271, "stop_desc": "105 RUE HAUTE - 95197", "stop_name": "RUE HAUTE"}, "geometry": {"type": "Point", "coordinates": [2.3316439441869936, 48.97563448352471]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5c0634ca870c75eccfea89d17b9a48ef711935c2", "fields": {"departement": "95", "stop_lat": 48.975275061700295, "code_postal": "95197", "stop_lon": 2.332572274202748, "coord": [48.975275061700295, 2.332572274202748], "stop_id": 5150272, "stop_desc": "8 RUE DE LA GARE - 95197", "stop_name": "RUE HAUTE"}, "geometry": {"type": "Point", "coordinates": [2.332572274202748, 48.975275061700295]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6910cbdbf92e24379235bc71da710310f62909ed", "fields": {"departement": "95", "stop_lat": 48.973656750805446, "code_postal": "95197", "stop_lon": 2.323235196873776, "coord": [48.973656750805446, 2.323235196873776], "stop_id": 5150275, "stop_desc": "8 RUE DES MORTEFONTAINES - 95197", "stop_name": "LA POSTE"}, "geometry": {"type": "Point", "coordinates": [2.323235196873776, 48.973656750805446]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fe80246d96a9c95aa59a3a4a7f6ef533cd2aa9bb", "fields": {"departement": "95", "stop_lat": 48.970078517040896, "code_postal": "95197", "stop_lon": 2.3133126393722603, "coord": [48.970078517040896, 2.3133126393722603], "stop_id": 5150282, "stop_desc": "80 AVENUE DE LA DIVISION LECLERC - 95197", "stop_name": "LES COUTURES"}, "geometry": {"type": "Point", "coordinates": [2.3133126393722603, 48.970078517040896]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8e8ffff8eb595df4c27a98cd932169683d32c4f5", "fields": {"departement": "95", "stop_lat": 48.97232399190837, "code_postal": "95210", "stop_lon": 2.3080561344066988, "coord": [48.97232399190837, 2.3080561344066988], "stop_id": 5150285, "stop_desc": "FACE 12 RUE DU DEPART - 95210", "stop_name": "GARE D'ENGHIEN-LES-BAINS"}, "geometry": {"type": "Point", "coordinates": [2.3080561344066988, 48.97232399190837]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e009e8a4fc0105758be5d2f6bf5b02e5fb8989ba", "fields": {"departement": "95", "stop_lat": 48.971931289559954, "code_postal": "95197", "stop_lon": 2.322894402940944, "coord": [48.971931289559954, 2.322894402940944], "stop_id": 5150288, "stop_desc": "RUE DE LA BARRE - 95197", "stop_name": "MARCHE DE DEUIL-LA-BARRE"}, "geometry": {"type": "Point", "coordinates": [2.322894402940944, 48.971931289559954]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "23a0d516e573a507e74e3d98650075d67269ac86", "fields": {"departement": "93", "stop_lat": 48.914227247147316, "code_postal": "93001", "stop_lon": 2.404026516251405, "coord": [48.914227247147316, 2.404026516251405], "stop_id": 5150325, "stop_desc": "AVENUE JEAN JAURES - 93001", "stop_name": "FORT D'AUBERVILLIERS-METRO"}, "geometry": {"type": "Point", "coordinates": [2.404026516251405, 48.914227247147316]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7a7143496421d66131c6cd5b282984e4d8b55606", "fields": {"departement": "93", "stop_lat": 48.91328474196549, "code_postal": "93008", "stop_lon": 2.416828575050586, "coord": [48.91328474196549, 2.416828575050586], "stop_id": 5150328, "stop_desc": "1 RUE BALZAC - 93008", "stop_name": "LES COURTILLIERES"}, "geometry": {"type": "Point", "coordinates": [2.416828575050586, 48.91328474196549]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "166a3897fd1c51b189b725ba97c0295f0a2736d5", "fields": {"departement": "93", "stop_lat": 48.9074650418741, "code_postal": "93008", "stop_lon": 2.424113548237613, "coord": [48.9074650418741, 2.424113548237613], "stop_id": 5150330, "stop_desc": "AVENUE DE LA DIVISION LECLERC - 93008", "stop_name": "REPUBLIQUE - DIVISION LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.424113548237613, 48.9074650418741]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2e6967a6e87675890bb79f893febe8c7b4e51a8c", "fields": {"departement": "93", "stop_lat": 48.906577135972725, "code_postal": "93008", "stop_lon": 2.4440166024805547, "coord": [48.906577135972725, 2.4440166024805547], "stop_id": 5150334, "stop_desc": "BOULEVARD LENINE - 93008", "stop_name": "HOTEL DE VILLE DE BOBIGNY"}, "geometry": {"type": "Point", "coordinates": [2.4440166024805547, 48.906577135972725]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4a7cd7d7b804df6f804e667d067eb14b5e4b270b", "fields": {"departement": "93", "stop_lat": 48.90657485833315, "code_postal": "93008", "stop_lon": 2.4559320596369205, "coord": [48.90657485833315, 2.4559320596369205], "stop_id": 5150336, "stop_desc": "302 AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "LAMARTINE"}, "geometry": {"type": "Point", "coordinates": [2.4559320596369205, 48.90657485833315]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dfdbb5d509aa230aa780f88ec58d8780ef65c0e5", "fields": {"departement": "93", "stop_lat": 48.905486896676855, "code_postal": "93008", "stop_lon": 2.4651318210827156, "coord": [48.905486896676855, 2.4651318210827156], "stop_id": 5150338, "stop_desc": "412 AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "RUE DES PEUPLIERS"}, "geometry": {"type": "Point", "coordinates": [2.4651318210827156, 48.905486896676855]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "29df41e24ce47ee32464850c38be3b5fed4c0c9d", "fields": {"departement": "93", "stop_lat": 48.910391118821, "code_postal": "93010", "stop_lon": 2.475615038862434, "coord": [48.910391118821, 2.475615038862434], "stop_id": 5150343, "stop_desc": "RUE JEAN JACQUES ROUSSEAU - 93010", "stop_name": "ETIENNE DOLET"}, "geometry": {"type": "Point", "coordinates": [2.475615038862434, 48.910391118821]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "64fd7cc1833131acacecf33755c3d86e0afcb5fc", "fields": {"departement": "93", "stop_lat": 48.91372104318945, "code_postal": "93055", "stop_lon": 2.4090708594396384, "coord": [48.91372104318945, 2.4090708594396384], "stop_id": 5150372, "stop_desc": "23 AVENUE DES COURTILLIERES - 93055", "stop_name": "DIVISION LECLERC - COURTILLIERES"}, "geometry": {"type": "Point", "coordinates": [2.4090708594396384, 48.91372104318945]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "86de69340188797df93c7246d29fef9cb33a1c5e", "fields": {"departement": "93", "stop_lat": 48.913365186523436, "code_postal": "93008", "stop_lon": 2.4174831801276664, "coord": [48.913365186523436, 2.4174831801276664], "stop_id": 5150377, "stop_desc": "FACE 1 RUE BALZAC - 93008", "stop_name": "LES COURTILLIERES"}, "geometry": {"type": "Point", "coordinates": [2.4174831801276664, 48.913365186523436]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4f22dcec2c6d3059df43826c699c0c628a40f808", "fields": {"departement": "93", "stop_lat": 48.90672978942366, "code_postal": "93008", "stop_lon": 2.433614717029149, "coord": [48.90672978942366, 2.433614717029149], "stop_id": 5150385, "stop_desc": "RUE DE LA REPUBLIQUE - 93008", "stop_name": "RUE DE LA GARE"}, "geometry": {"type": "Point", "coordinates": [2.433614717029149, 48.90672978942366]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "43c780cbccf0803ecb4416fb7268b00a8f1742cc", "fields": {"departement": "93", "stop_lat": 48.906577135972725, "code_postal": "93008", "stop_lon": 2.4440166024805547, "coord": [48.906577135972725, 2.4440166024805547], "stop_id": 5150388, "stop_desc": "BOULEVARD LENINE - 93008", "stop_name": "HOTEL DE VILLE DE BOBIGNY"}, "geometry": {"type": "Point", "coordinates": [2.4440166024805547, 48.906577135972725]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "68e7fbbc13805d98b369c945f40fe5bf47ad2447", "fields": {"departement": "93", "stop_lat": 48.90752818929823, "code_postal": "93008", "stop_lon": 2.45522530113179, "coord": [48.90752818929823, 2.45522530113179], "stop_id": 5150393, "stop_desc": "AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "LAMARTINE"}, "geometry": {"type": "Point", "coordinates": [2.45522530113179, 48.90752818929823]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3b8c81ce6ac6c54510e4b24536c29cf3900048da", "fields": {"departement": "93", "stop_lat": 48.910391118821, "code_postal": "93010", "stop_lon": 2.475615038862434, "coord": [48.910391118821, 2.475615038862434], "stop_id": 5150404, "stop_desc": "RUE JEAN JACQUES ROUSSEAU - 93010", "stop_name": "ETIENNE DOLET"}, "geometry": {"type": "Point", "coordinates": [2.475615038862434, 48.910391118821]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d33e3c084c1002342e5b7506aa0c0f556d2df409", "fields": {"departement": "93", "stop_lat": 48.91147757762218, "code_postal": "93010", "stop_lon": 2.4839486506088377, "coord": [48.91147757762218, 2.4839486506088377], "stop_id": 5150408, "stop_desc": "FACE 6 AVENUE MARX DORMOY - 93010", "stop_name": "MAISON DE RETRAITE"}, "geometry": {"type": "Point", "coordinates": [2.4839486506088377, 48.91147757762218]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "31befc9e6095e43aa501f70ea4ff402e2de726fe", "fields": {"departement": "93", "stop_lat": 48.913127869248015, "code_postal": "93010", "stop_lon": 2.486625780970679, "coord": [48.913127869248015, 2.486625780970679], "stop_id": 5150409, "stop_desc": "VOIE PROMENADE - 93010", "stop_name": "RONSARD - VILLON"}, "geometry": {"type": "Point", "coordinates": [2.486625780970679, 48.913127869248015]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5f29ddbdca45f9beb005d8797ff35ffb0bdc8678", "fields": {"departement": "93", "stop_lat": 48.91398334545437, "code_postal": "93057", "stop_lon": 2.492327766588215, "coord": [48.91398334545437, 2.492327766588215], "stop_id": 5150411, "stop_desc": "BOULEVARD DE PARIS - 93057", "stop_name": "LYCEE CLAUDE-NICOLAS LEDOUX"}, "geometry": {"type": "Point", "coordinates": [2.492327766588215, 48.91398334545437]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a104e23254e10b4d709713642812d579ae45b5fa", "fields": {"departement": "93", "stop_lat": 48.910757442503375, "code_postal": "93046", "stop_lon": 2.5115289353873873, "coord": [48.910757442503375, 2.5115289353873873], "stop_id": 5150420, "stop_desc": "FACE 10 AVENUE JULES GUESDE - 93046", "stop_name": "VICTOR HUGO - JULES GUESDE"}, "geometry": {"type": "Point", "coordinates": [2.5115289353873873, 48.910757442503375]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4e85afaeb11dfb2d6898cf4e51f3ada6e92a2075", "fields": {"departement": "75", "stop_lat": 48.82004946029484, "code_postal": "75114", "stop_lon": 2.3391601513527824, "coord": [48.82004946029484, 2.3391601513527824], "stop_id": 3813522, "stop_desc": "FACE 24 BOULEVARD JOURDAN - 75114", "stop_name": "CITE UNIVERSITAIRE"}, "geometry": {"type": "Point", "coordinates": [2.3391601513527824, 48.82004946029484]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cb98b764635cee66995f048aa51dedb690ae7964", "fields": {"departement": "75", "stop_lat": 48.81949193115387, "code_postal": "75113", "stop_lon": 2.3458019878670338, "coord": [48.81949193115387, 2.3458019878670338], "stop_id": 3813524, "stop_desc": "97 BOULEVARD KELLERMANN - 75113", "stop_name": "STADE CHARLETY - PORTE DE GENTILLY"}, "geometry": {"type": "Point", "coordinates": [2.3458019878670338, 48.81949193115387]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9f69490fa846ec45e2928934f47517b0f374e8cc", "fields": {"departement": "75", "stop_lat": 48.819707651417815, "code_postal": "75113", "stop_lon": 2.3455842566908545, "coord": [48.819707651417815, 2.3455842566908545], "stop_id": 3813525, "stop_desc": "FACE 97 BOULEVARD KELLERMANN - 75113", "stop_name": "STADE CHARLETY - PORTE DE GENTILLY"}, "geometry": {"type": "Point", "coordinates": [2.3455842566908545, 48.819707651417815]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "55b837dbf97171297f3e0b6a1145fecd24e9717b", "fields": {"departement": "75", "stop_lat": 48.82094735715549, "code_postal": "75113", "stop_lon": 2.351790955188557, "coord": [48.82094735715549, 2.351790955188557], "stop_id": 3813526, "stop_desc": "63-65 BOULEVARD KELLERMANN - 75113", "stop_name": "POTERNE DES PEUPLIERS"}, "geometry": {"type": "Point", "coordinates": [2.351790955188557, 48.82094735715549]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "184f93e0968296c6940b142cb425ce9277b7bc8f", "fields": {"departement": "75", "stop_lat": 48.81992070046206, "code_postal": "75113", "stop_lon": 2.3637406652017106, "coord": [48.81992070046206, 2.3637406652017106], "stop_id": 3813531, "stop_desc": "FACE 128 BOULEVARD MASSENA - 75113", "stop_name": "PORTE DE CHOISY"}, "geometry": {"type": "Point", "coordinates": [2.3637406652017106, 48.81992070046206]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f52314d71b40aec2e99f780e49323f3bb9eb130a", "fields": {"departement": "75", "stop_lat": 48.82437487935594, "code_postal": "75113", "stop_lon": 2.3770687385249265, "coord": [48.82437487935594, 2.3770687385249265], "stop_id": 3813535, "stop_desc": "7-9 BD DU GENERAL JEAN SIMON - 75113", "stop_name": "MARYSE BASTIE"}, "geometry": {"type": "Point", "coordinates": [2.3770687385249265, 48.82437487935594]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e8d978767a5e8ef63c9783ea3d7deb89584c1eaa", "fields": {"departement": "75", "stop_lat": 48.82538909430547, "code_postal": "75113", "stop_lon": 2.3810305828136284, "coord": [48.82538909430547, 2.3810305828136284], "stop_id": 3813536, "stop_desc": "BD DU GENERAL JEAN SIMON - 75113", "stop_name": "AVENUE DE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.3810305828136284, 48.82538909430547]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "61138fc88f4a059cf463fac2035e0094def87086", "fields": {"departement": "75", "stop_lat": 48.832077386194484, "code_postal": "75112", "stop_lon": 2.398094150060432, "coord": [48.832077386194484, 2.398094150060432], "stop_id": 3813541, "stop_desc": "15 BD PONIATOWSKI - 75112", "stop_name": "PORTE DE CHARENTON"}, "geometry": {"type": "Point", "coordinates": [2.398094150060432, 48.832077386194484]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b7f1b7685f57df5d696e0e1c6a1406c57f89d4d7", "fields": {"departement": "75", "stop_lat": 48.84361961611373, "code_postal": "75112", "stop_lon": 2.4101993140051765, "coord": [48.84361961611373, 2.4101993140051765], "stop_id": 3813546, "stop_desc": "FACE 111 BD SOULT - 75112", "stop_name": "ALEXANDRA DAVID-NEEL"}, "geometry": {"type": "Point", "coordinates": [2.4101993140051765, 48.84361961611373]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "52c6c563ebf91b43922be7798db5ab8c2a2a5caf", "fields": {"departement": "75", "stop_lat": 48.84686443202718, "code_postal": "75112", "stop_lon": 2.4096727924318846, "coord": [48.84686443202718, 2.4096727924318846], "stop_id": 3813548, "stop_desc": "112 CRS DE VINCENNES - 75112", "stop_name": "PORTE DE VINCENNES"}, "geometry": {"type": "Point", "coordinates": [2.4096727924318846, 48.84686443202718]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2a8ab5015b445c8b0b379455298f039b84b78991", "fields": {"departement": "75", "stop_lat": 48.846810614546875, "code_postal": "75112", "stop_lon": 2.409495689330423, "coord": [48.846810614546875, 2.409495689330423], "stop_id": 3813549, "stop_desc": "CRS DE VINCENNES - 75112", "stop_name": "PORTE DE VINCENNES"}, "geometry": {"type": "Point", "coordinates": [2.409495689330423, 48.846810614546875]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8c7f17a262a6d78b6ed51038d6e5bfcbd12dacdc", "fields": {"departement": "94", "stop_lat": 48.809738105933455, "code_postal": "94043", "stop_lon": 2.361340495740618, "coord": [48.809738105933455, 2.361340495740618], "stop_id": 3864881, "stop_desc": "6 AVENUE EUGENE THOMAS - 94043", "stop_name": "LE KREMLIN-BICETRE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.361340495740618, 48.809738105933455]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5150851b5fe8d1c859b12ce0ea220e90db78e7d1", "fields": {"departement": "94", "stop_lat": 48.80943303655347, "code_postal": "94043", "stop_lon": 2.3586460244237313, "coord": [48.80943303655347, 2.3586460244237313], "stop_id": 3864884, "stop_desc": "1 RUE DE VERDUN - 94043", "stop_name": "HOPITAL DU KREMLIN-BICETRE"}, "geometry": {"type": "Point", "coordinates": [2.3586460244237313, 48.80943303655347]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "76918e078168aefeb4520bc8eab03b55d7cefb59", "fields": {"departement": "94", "stop_lat": 48.797983182715456, "code_postal": "94076", "stop_lon": 2.35484558862714, "coord": [48.797983182715456, 2.35484558862714], "stop_id": 3864889, "stop_desc": "PLACE DU 8 MAI 1945 - 94076", "stop_name": "PLACE DU 8 MAI 1945"}, "geometry": {"type": "Point", "coordinates": [2.35484558862714, 48.797983182715456]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c501f07118a4bfd5312cc23e3e428b4419f0720a", "fields": {"departement": "94", "stop_lat": 48.79403759305073, "code_postal": "94076", "stop_lon": 2.354259293159642, "coord": [48.79403759305073, 2.354259293159642], "stop_id": 3864892, "stop_desc": "17 RUE DE VERDUN - 94076", "stop_name": "INSTITUT GUSTAVE ROUSSY"}, "geometry": {"type": "Point", "coordinates": [2.354259293159642, 48.79403759305073]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7cd0e3e94bcdd67607970c7fc5fa9f6111d65d47", "fields": {"departement": "94", "stop_lat": 48.791287372333734, "code_postal": "94076", "stop_lon": 2.3537278766347285, "coord": [48.791287372333734, 2.3537278766347285], "stop_id": 3864894, "stop_desc": "RUE DE VERDUN - 94076", "stop_name": "VERDUN - HAUTES BRUYERES"}, "geometry": {"type": "Point", "coordinates": [2.3537278766347285, 48.791287372333734]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3d3fc9872471997286eb33d945a7cf1c5f755e69", "fields": {"departement": "94", "stop_lat": 48.7773468779113, "code_postal": "94038", "stop_lon": 2.354974592688749, "coord": [48.7773468779113, 2.354974592688749], "stop_id": 3864902, "stop_desc": "FACE 141 RUE DE BICETRE - 94038", "stop_name": "LES DAHLIAS"}, "geometry": {"type": "Point", "coordinates": [2.354974592688749, 48.7773468779113]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3961c2800160206bd5024198be3df7f590b1bf99", "fields": {"departement": "94", "stop_lat": 48.77140654784083, "code_postal": "94038", "stop_lon": 2.348867169554591, "coord": [48.77140654784083, 2.348867169554591], "stop_id": 3864905, "stop_desc": "FACE 92 AVENUE DU GENERAL LECLERC - 94038", "stop_name": "MAIRIE DE CHEVILLY-LARUE"}, "geometry": {"type": "Point", "coordinates": [2.348867169554591, 48.77140654784083]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a232cfaa59a11717a704efe5fb0d98c3375a8558", "fields": {"departement": "94", "stop_lat": 48.768063557426416, "code_postal": "94021", "stop_lon": 2.3367923835022073, "coord": [48.768063557426416, 2.3367923835022073], "stop_id": 3864912, "stop_desc": "FACE 138 BOULEVARD JEAN MERMOZ - 94021", "stop_name": "LOUIS BLERIOT - CIMETIERE INTERCOMMUNAL"}, "geometry": {"type": "Point", "coordinates": [2.3367923835022073, 48.768063557426416]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4ddfdf7c1e83801c8d992fa4c53171dd9404ba1b", "fields": {"departement": "94", "stop_lat": 48.75593823782415, "code_postal": "94065", "stop_lon": 2.346498405390813, "coord": [48.75593823782415, 2.346498405390813], "stop_id": 3864920, "stop_desc": "AVENUE CHARLES LINDBERGH - 94065", "stop_name": "LES CLOSEAUX"}, "geometry": {"type": "Point", "coordinates": [2.346498405390813, 48.75593823782415]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "158869280aa8372bc1452359efeff5ef3757461c", "fields": {"departement": "94", "stop_lat": 48.75242393733586, "code_postal": "94065", "stop_lon": 2.3455190986372156, "coord": [48.75242393733586, 2.3455190986372156], "stop_id": 3864922, "stop_desc": "15 AVENUE DES ANTES - 94065", "stop_name": "LES ANTES"}, "geometry": {"type": "Point", "coordinates": [2.3455190986372156, 48.75242393733586]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "701f4759216aed46ff3db0bf40fa5970fe873f2f", "fields": {"departement": "94", "stop_lat": 48.746122252953676, "code_postal": "94065", "stop_lon": 2.3544474826124504, "coord": [48.746122252953676, 2.3544474826124504], "stop_id": 3864929, "stop_desc": "44 AVENUE ROBERT SCHUMAN - 94065", "stop_name": "ROBERT SCHUMAN"}, "geometry": {"type": "Point", "coordinates": [2.3544474826124504, 48.746122252953676]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2d7117c7b71731d5e1812fa09a126c2522146f93", "fields": {"departement": "94", "stop_lat": 48.74671519143844, "code_postal": "94065", "stop_lon": 2.3563096877322587, "coord": [48.74671519143844, 2.3563096877322587], "stop_id": 3864930, "stop_desc": "17 AVENUE ROBERT SCHUMAN - 94065", "stop_name": "RUE D'ARCUEIL"}, "geometry": {"type": "Point", "coordinates": [2.3563096877322587, 48.74671519143844]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fb21a9a17b53326b588d266b61e4fe813d7a7d8a", "fields": {"departement": "94", "stop_lat": 48.74054978434813, "code_postal": "94065", "stop_lon": 2.3526925687723703, "coord": [48.74054978434813, 2.3526925687723703], "stop_id": 3864933, "stop_desc": "PISTE PARVIS DE LA GARE - 94065", "stop_name": "RUNGIS - LA FRATERNELLE RER"}, "geometry": {"type": "Point", "coordinates": [2.3526925687723703, 48.74054978434813]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "97a87dd9f3c00ab91de92ca3e0d31179fc510e0e", "fields": {"departement": "92", "stop_lat": 48.885614220888584, "code_postal": "92062", "stop_lon": 2.2462759747958674, "coord": [48.885614220888584, 2.2462759747958674], "stop_id": 3877775, "stop_desc": "11 BIS RUE PAUL LAFARGUE - 92062", "stop_name": "PAUL LAFARGUE"}, "geometry": {"type": "Point", "coordinates": [2.2462759747958674, 48.885614220888584]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "163623c3975e08dd0f72d5745dc85f67830eeb08", "fields": {"departement": "92", "stop_lat": 48.88609749358888, "code_postal": "92062", "stop_lon": 2.2436449494598567, "coord": [48.88609749358888, 2.2436449494598567], "stop_id": 3877777, "stop_desc": "65 RUE DE LA REPUBLIQUE - 92062", "stop_name": "ROUSSELLE"}, "geometry": {"type": "Point", "coordinates": [2.2436449494598567, 48.88609749358888]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d07fd6904f06630940c47397fc4fde70b90742ee", "fields": {"departement": "92", "stop_lat": 48.884503004736075, "code_postal": "92062", "stop_lon": 2.238987243699706, "coord": [48.884503004736075, 2.238987243699706], "stop_id": 3877779, "stop_desc": "FACE104BIS RUE DE LA REPUBLIQUE - 92062", "stop_name": "MAIRIE DE PUTEAUX"}, "geometry": {"type": "Point", "coordinates": [2.238987243699706, 48.884503004736075]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c65639446d8a7060b5901cd6ef9668266ffee9cb", "fields": {"departement": "92", "stop_lat": 48.886684248614685, "code_postal": "92050", "stop_lon": 2.2079657352696955, "coord": [48.886684248614685, 2.2079657352696955], "stop_id": 3877789, "stop_desc": "119 AVENUE GEORGES CLEMENCEAU - 92050", "stop_name": "CLEMENCEAU - SADI CARNOT"}, "geometry": {"type": "Point", "coordinates": [2.2079657352696955, 48.886684248614685]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5672cd4c08710109382a8b3d376f358f0c1f3dc6", "fields": {"departement": "92", "stop_lat": 48.88726100109216, "code_postal": "92050", "stop_lon": 2.2013001183399865, "coord": [48.88726100109216, 2.2013001183399865], "stop_id": 3877793, "stop_desc": "1 AVENUE GEORGES CLEMENCEAU - 92050", "stop_name": "PLACE DE LA BOULE - CLEMENCEAU"}, "geometry": {"type": "Point", "coordinates": [2.2013001183399865, 48.88726100109216]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b2f05126e52165302099b9ae8a9e0b2578bb612c", "fields": {"departement": "92", "stop_lat": 48.886962342334975, "code_postal": "92050", "stop_lon": 2.199488364504161, "coord": [48.886962342334975, 2.199488364504161], "stop_id": 3877796, "stop_desc": "PLACE DE LA BOULE - 92050", "stop_name": "PLACE DE LA BOULE - LENINE"}, "geometry": {"type": "Point", "coordinates": [2.199488364504161, 48.886962342334975]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f10c0eabf48c4d4a07c9d6994aae95fdc6d17b3d", "fields": {"departement": "92", "stop_lat": 48.92728729275542, "code_postal": "92004", "stop_lon": 2.274134820908049, "coord": [48.92728729275542, 2.274134820908049], "stop_id": 3887643, "stop_desc": "5 AVENUE DE LA REDOUTE - 92004", "stop_name": "QUATRE ROUTES - LA REDOUTE"}, "geometry": {"type": "Point", "coordinates": [2.274134820908049, 48.92728729275542]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4b2debc20667da1435acac63d73d02ef7284dadf", "fields": {"departement": "92", "stop_lat": 48.923186035500706, "code_postal": "92025", "stop_lon": 2.2542152626298364, "coord": [48.923186035500706, 2.2542152626298364], "stop_id": 3887648, "stop_desc": "FACE 20 RUE DU BOURNARD - 92025", "stop_name": "MAIRIE DE COLOMBES"}, "geometry": {"type": "Point", "coordinates": [2.2542152626298364, 48.923186035500706]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fcb9c8210460bd39b489a749191721874fb5537a", "fields": {"departement": "92", "stop_lat": 48.92729640014206, "code_postal": "92025", "stop_lon": 2.246461890539216, "coord": [48.92729640014206, 2.246461890539216], "stop_id": 3887651, "stop_desc": "FACE 1 AVENUE DE L'EUROPE - 92025", "stop_name": "AUDRA"}, "geometry": {"type": "Point", "coordinates": [2.246461890539216, 48.92729640014206]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7350570ee7f621902b06ae1d0f2c50a339d02880", "fields": {"departement": "92", "stop_lat": 48.92649449009768, "code_postal": "92025", "stop_lon": 2.2437765137696033, "coord": [48.92649449009768, 2.2437765137696033], "stop_id": 3887652, "stop_desc": "24-26 AVENUE DE L'EUROPE - 92025", "stop_name": "TOUR D'AUVERGNE"}, "geometry": {"type": "Point", "coordinates": [2.2437765137696033, 48.92649449009768]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c68c12f0dfef3bcf092a274ab906e0224df024d6", "fields": {"departement": "92", "stop_lat": 48.924909248221034, "code_postal": "92025", "stop_lon": 2.239360639083351, "coord": [48.924909248221034, 2.239360639083351], "stop_id": 3887653, "stop_desc": "AVENUE DE L'EUROPE - 92025", "stop_name": "EUROPE"}, "geometry": {"type": "Point", "coordinates": [2.239360639083351, 48.924909248221034]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "67f6bbec258dbfed99d26f8a07e0ef11f2a74c8d", "fields": {"departement": "92", "stop_lat": 48.90969828013789, "code_postal": "92050", "stop_lon": 2.2145481001800866, "coord": [48.90969828013789, 2.2145481001800866], "stop_id": 3887662, "stop_desc": "RUE DU 1ER MAI - 92050", "stop_name": "LES GRANDS PRES"}, "geometry": {"type": "Point", "coordinates": [2.2145481001800866, 48.90969828013789]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "90d125446f3a9af513a5c97a9b0ced56ab8e7ea6", "fields": {"departement": "92", "stop_lat": 48.901251906231444, "code_postal": "92050", "stop_lon": 2.2159994460417605, "coord": [48.901251906231444, 2.2159994460417605], "stop_id": 3887665, "stop_desc": "BOULEVARD DES PROVINCES FRANCAISES - 92050", "stop_name": "NANTERRE - UNIVERSITE RER"}, "geometry": {"type": "Point", "coordinates": [2.2159994460417605, 48.901251906231444]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7022c892a0ae39379f414032216a5091b8f3e3f6", "fields": {"departement": "92", "stop_lat": 48.88745761169952, "code_postal": "92050", "stop_lon": 2.200331998357145, "coord": [48.88745761169952, 2.200331998357145], "stop_id": 3887673, "stop_desc": "PLACE DE LA BOULE - 92050", "stop_name": "PLACE DE LA BOULE"}, "geometry": {"type": "Point", "coordinates": [2.200331998357145, 48.88745761169952]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b4b6f79fa2e345524a7157d46c50191a2dc68c1d", "fields": {"departement": "92", "stop_lat": 48.92313572137065, "code_postal": "92025", "stop_lon": 2.2356545619085146, "coord": [48.92313572137065, 2.2356545619085146], "stop_id": 3887691, "stop_desc": "211 RUE DES RENOUILLERS - 92025", "stop_name": "HOPITAL LOUIS MOURIER"}, "geometry": {"type": "Point", "coordinates": [2.2356545619085146, 48.92313572137065]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "48d5854f9e2bd39ae514328c03c8f75807175b80", "fields": {"departement": "92", "stop_lat": 48.92299546791915, "code_postal": "92025", "stop_lon": 2.2516107928123716, "coord": [48.92299546791915, 2.2516107928123716], "stop_id": 3887696, "stop_desc": "5 RUE GABRIEL PERI - 92025", "stop_name": "EGLISE DE COLOMBES"}, "geometry": {"type": "Point", "coordinates": [2.2516107928123716, 48.92299546791915]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "28cf9607bc2cfa17932af4b435ec10262f90febb", "fields": {"departement": "92", "stop_lat": 48.9233232281649, "code_postal": "92025", "stop_lon": 2.2577199194902486, "coord": [48.9233232281649, 2.2577199194902486], "stop_id": 3887698, "stop_desc": "74 R DU BOURNARD - 92025", "stop_name": "RHIN ET DANUBE"}, "geometry": {"type": "Point", "coordinates": [2.2577199194902486, 48.9233232281649]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "62dda0fa37a90b0b549aea0c69c4ecd01bc210fc", "fields": {"departement": "92", "stop_lat": 48.92340543054013, "code_postal": "92025", "stop_lon": 2.2597245313593417, "coord": [48.92340543054013, 2.2597245313593417], "stop_id": 3887699, "stop_desc": "RUE DU BOURNARD - 92025", "stop_name": "GARE DE COLOMBES"}, "geometry": {"type": "Point", "coordinates": [2.2597245313593417, 48.92340543054013]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3280f232f65939fa3c16270608c95f1478178a49", "fields": {"departement": "92", "stop_lat": 48.92825985835548, "code_postal": "92004", "stop_lon": 2.2779934583711285, "coord": [48.92825985835548, 2.2779934583711285], "stop_id": 3887703, "stop_desc": "AVENUE DE LA REDOUTE - 92004", "stop_name": "FREYCINET"}, "geometry": {"type": "Point", "coordinates": [2.2779934583711285, 48.92825985835548]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c718eb1590bf971d5ce2386e0a988ff9d50f8488", "fields": {"departement": "92", "stop_lat": 48.905550755388155, "code_postal": "92050", "stop_lon": 2.210263532234275, "coord": [48.905550755388155, 2.210263532234275], "stop_id": 3887707, "stop_desc": "212 AVENUE DE LA REPUBLIQUE - 92050", "stop_name": "UNIVERSITE PARIS X"}, "geometry": {"type": "Point", "coordinates": [2.210263532234275, 48.905550755388155]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a9ccb0bb7d913e8a11b7386035d64b0fd411c1af", "fields": {"departement": "92", "stop_lat": 48.90763002067973, "code_postal": "92050", "stop_lon": 2.2133532477195574, "coord": [48.90763002067973, 2.2133532477195574], "stop_id": 3887715, "stop_desc": "AVENUE DE LA REPUBLIQUE - 92050", "stop_name": "PONT DE ROUEN"}, "geometry": {"type": "Point", "coordinates": [2.2133532477195574, 48.90763002067973]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e00ecb9b17cd054621bbb9eae969714918a49686", "fields": {"departement": "92", "stop_lat": 48.91042239419866, "code_postal": "92050", "stop_lon": 2.219659234743806, "coord": [48.91042239419866, 2.219659234743806], "stop_id": 3887717, "stop_desc": "354 AVENUE DE LA REPUBLIQUE - 92050", "stop_name": "LES ORMES"}, "geometry": {"type": "Point", "coordinates": [2.219659234743806, 48.91042239419866]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5705af303cddbacb6f7123992dca6e5372723126", "fields": {"departement": "92", "stop_lat": 48.912206021163, "code_postal": "92050", "stop_lon": 2.22399103145728, "coord": [48.912206021163, 2.22399103145728], "stop_id": 3887718, "stop_desc": "FACE 403 AVENUE DE LA REPUBLIQUE - 92050", "stop_name": "HOPITAL DE NANTERRE"}, "geometry": {"type": "Point", "coordinates": [2.22399103145728, 48.912206021163]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b20d8b1cb62d61a2aacdea4f56cfd09e0e9e521e", "fields": {"departement": "92", "stop_lat": 48.92470257140328, "code_postal": "92025", "stop_lon": 2.2393883057572723, "coord": [48.92470257140328, 2.2393883057572723], "stop_id": 3887724, "stop_desc": "RUE DES RENOUILLERS - 92025", "stop_name": "EUROPE"}, "geometry": {"type": "Point", "coordinates": [2.2393883057572723, 48.92470257140328]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cda61010106a5429a7926c27e7b0122165cafba9", "fields": {"departement": "92", "stop_lat": 48.92701814780932, "code_postal": "92025", "stop_lon": 2.246912453042652, "coord": [48.92701814780932, 2.246912453042652], "stop_id": 3887726, "stop_desc": "17 RUE PAUL BERT - 92025", "stop_name": "AUDRA"}, "geometry": {"type": "Point", "coordinates": [2.246912453042652, 48.92701814780932]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ebadf98b6b7da92dae98b892cb40723c23508d7a", "fields": {"departement": "92", "stop_lat": 48.92293456245295, "code_postal": "92025", "stop_lon": 2.2544475041603773, "coord": [48.92293456245295, 2.2544475041603773], "stop_id": 3887729, "stop_desc": "28 RUE DU BOURNARD - 92025", "stop_name": "MAIRIE DE COLOMBES"}, "geometry": {"type": "Point", "coordinates": [2.2544475041603773, 48.92293456245295]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "17afa2396c89c579893ed94382e1c8899fd1d7e8", "fields": {"departement": "92", "stop_lat": 48.92340543054013, "code_postal": "92025", "stop_lon": 2.2597245313593417, "coord": [48.92340543054013, 2.2597245313593417], "stop_id": 3887731, "stop_desc": "RUE DU BOURNARD - 92025", "stop_name": "GARE DE COLOMBES"}, "geometry": {"type": "Point", "coordinates": [2.2597245313593417, 48.92340543054013]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2568aa30c43be6f8cfea886003108300c1576dd3", "fields": {"departement": "92", "stop_lat": 48.92421689404357, "code_postal": "92025", "stop_lon": 2.2638965101958997, "coord": [48.92421689404357, 2.2638965101958997], "stop_id": 3887732, "stop_desc": "58-60 AVENUE DE L'AGENT SARRE - 92025", "stop_name": "BEAUSEJOUR"}, "geometry": {"type": "Point", "coordinates": [2.2638965101958997, 48.92421689404357]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7c932bc2b73e6133c766938c25b9c51e14c82cb6", "fields": {"departement": "92", "stop_lat": 48.925217275166055, "code_postal": "92025", "stop_lon": 2.2686548076317994, "coord": [48.925217275166055, 2.2686548076317994], "stop_id": 3887733, "stop_desc": "110 AVENUE DE L'AGENT SARRE - 92025", "stop_name": "GRAMME"}, "geometry": {"type": "Point", "coordinates": [2.2686548076317994, 48.925217275166055]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c9b4b3997a9997810a2c7949832d6880ae47cb87", "fields": {"departement": "92", "stop_lat": 48.92825985835548, "code_postal": "92004", "stop_lon": 2.2779934583711285, "coord": [48.92825985835548, 2.2779934583711285], "stop_id": 3887735, "stop_desc": "AVENUE DE LA REDOUTE - 92004", "stop_name": "FREYCINET"}, "geometry": {"type": "Point", "coordinates": [2.2779934583711285, 48.92825985835548]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c22fe2c002c190c085cbed712102eb18182e502c", "fields": {"departement": "75", "stop_lat": 48.830387626694915, "code_postal": "75113", "stop_lon": 2.3770325123774514, "coord": [48.830387626694915, 2.3770325123774514], "stop_id": 3887747, "stop_desc": "110 AVENUE DE FRANCE - 75113", "stop_name": "BIBLIOTHEQUE FRANCOIS MITTERRAND"}, "geometry": {"type": "Point", "coordinates": [2.3770325123774514, 48.830387626694915]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "356ec4b5a7dc5531105c89e2665e930c9455168f", "fields": {"departement": "75", "stop_lat": 48.8462021413457, "code_postal": "75105", "stop_lon": 2.3545759764763554, "coord": [48.8462021413457, 2.3545759764763554], "stop_id": 3887761, "stop_desc": "PLACE JUSSIEU - 75105", "stop_name": "JUSSIEU"}, "geometry": {"type": "Point", "coordinates": [2.3545759764763554, 48.8462021413457]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3e5a22dc5256612b207716ddaf300e67867d9b21", "fields": {"departement": "75", "stop_lat": 48.846696817570944, "code_postal": "75105", "stop_lon": 2.3518662590386423, "coord": [48.846696817570944, 2.3518662590386423], "stop_id": 3887763, "stop_desc": "53 RUE DU CARDINAL LEMOINE - 75105", "stop_name": "CARDINAL LEMOINE - MONGE"}, "geometry": {"type": "Point", "coordinates": [2.3518662590386423, 48.846696817570944]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a90529ddd84ebaedaa9124f9fb813c333d4db71f", "fields": {"departement": "75", "stop_lat": 48.846562716073876, "code_postal": "75105", "stop_lon": 2.3439000040664557, "coord": [48.846562716073876, 2.3439000040664557], "stop_id": 3887767, "stop_desc": "5-7 RUE SOUFFLOT - 75105", "stop_name": "MAIRIE DU VE - PANTHEON"}, "geometry": {"type": "Point", "coordinates": [2.3439000040664557, 48.846562716073876]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1e24b9a7bd61700228636f90fc68080e254e8689", "fields": {"departement": "75", "stop_lat": 48.847668324164175, "code_postal": "75106", "stop_lon": 2.340345911574221, "coord": [48.847668324164175, 2.340345911574221], "stop_id": 3887768, "stop_desc": "4 PLACE EDMOND ROSTAND - 75106", "stop_name": "LUXEMBOURG"}, "geometry": {"type": "Point", "coordinates": [2.340345911574221, 48.847668324164175]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5c3adbc37d66dc27a264292cd5adfca2bb1552ce", "fields": {"departement": "75", "stop_lat": 48.84920522522324, "code_postal": "75106", "stop_lon": 2.3369823179740905, "coord": [48.84920522522324, 2.3369823179740905], "stop_id": 3887771, "stop_desc": "FACE 19 RUE DE VAUGIRARD - 75106", "stop_name": "SENAT"}, "geometry": {"type": "Point", "coordinates": [2.3369823179740905, 48.84920522522324]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cb2d5ba308a94c69080561f912e69b5b64784610", "fields": {"departement": "75", "stop_lat": 48.84454903838894, "code_postal": "75106", "stop_lon": 2.3247134823772995, "coord": [48.84454903838894, 2.3247134823772995], "stop_id": 3887779, "stop_desc": "169-171 RUE DE RENNES - 75106", "stop_name": "RENNES - LITTRE"}, "geometry": {"type": "Point", "coordinates": [2.3247134823772995, 48.84454903838894]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "721ec35d29ee70b5e6eca90dc6690631ccbbe3fd", "fields": {"departement": "75", "stop_lat": 48.84396164200655, "code_postal": "75115", "stop_lon": 2.3069028723393976, "coord": [48.84396164200655, 2.3069028723393976], "stop_id": 3887784, "stop_desc": "54 RUE LECOURBE - 75115", "stop_name": "VOLONTAIRES - LECOURBE"}, "geometry": {"type": "Point", "coordinates": [2.3069028723393976, 48.84396164200655]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2c84bc94cd9d5d03b07659d69e7512c36ec1a613", "fields": {"departement": "75", "stop_lat": 48.83301220049441, "code_postal": "75115", "stop_lon": 2.2980466211395094, "coord": [48.83301220049441, 2.2980466211395094], "stop_id": 3887793, "stop_desc": "36 RUE DANTZIG - 75115", "stop_name": "MORILLONS - DANTZIG"}, "geometry": {"type": "Point", "coordinates": [2.2980466211395094, 48.83301220049441]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1e608e2eef8b12971d9163dcfea123ec1d3c5d00", "fields": {"departement": "75", "stop_lat": 48.828247021839424, "code_postal": "75115", "stop_lon": 2.293081600098408, "coord": [48.828247021839424, 2.293081600098408], "stop_id": 3887797, "stop_desc": "FACE 13 RUE DU GENERAL GUILLAUMAT - 75115", "stop_name": "THEATRE DE LA PLAINE - GUILLAUMAT"}, "geometry": {"type": "Point", "coordinates": [2.293081600098408, 48.828247021839424]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4f00894850ae40d2d6eac62e9153bde1438e75eb", "fields": {"departement": "92", "stop_lat": 48.82343843362548, "code_postal": "92075", "stop_lon": 2.292568459506517, "coord": [48.82343843362548, 2.292568459506517], "stop_id": 3887801, "stop_desc": "43 AVENUE MARCEL MARTINIE - 92075", "stop_name": "AVENUE MARCEL MARTINIE"}, "geometry": {"type": "Point", "coordinates": [2.292568459506517, 48.82343843362548]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e72a73e3e3bd8a6929cefe957d596d17b3c01eef", "fields": {"departement": "92", "stop_lat": 48.820319278175376, "code_postal": "92075", "stop_lon": 2.2914414666017158, "coord": [48.820319278175376, 2.2914414666017158], "stop_id": 3887807, "stop_desc": "11 RUE ERNEST LAVAL - 92075", "stop_name": "CARREFOUR DE L'INSURRECTION"}, "geometry": {"type": "Point", "coordinates": [2.2914414666017158, 48.820319278175376]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "031c81397146ebe03c6fcf9632145421519badc7", "fields": {"departement": "75", "stop_lat": 48.84153536388469, "code_postal": "75115", "stop_lon": 2.3083339871069257, "coord": [48.84153536388469, 2.3083339871069257], "stop_id": 3887809, "stop_desc": "225-223 RUE DE VAUGIRARD - 75115", "stop_name": "VOLONTAIRES - VAUGIRARD"}, "geometry": {"type": "Point", "coordinates": [2.3083339871069257, 48.84153536388469]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2eb349467d06dcc837c4f18be85aeecfb1d93b2a", "fields": {"departement": "75", "stop_lat": 48.84870011990761, "code_postal": "75105", "stop_lon": 2.3579949353796334, "coord": [48.84870011990761, 2.3579949353796334], "stop_id": 3887814, "stop_desc": "11 QU SAINT-BERNARD - 75105", "stop_name": "UNIVERSITE PARIS VI"}, "geometry": {"type": "Point", "coordinates": [2.3579949353796334, 48.84870011990761]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "056ab8ff486a69c9afa49c8248d0cf55ffdf2b8a", "fields": {"departement": "75", "stop_lat": 48.87505229858006, "code_postal": "75108", "stop_lon": 2.32463797997698, "coord": [48.87505229858006, 2.32463797997698], "stop_id": 3893336, "stop_desc": "14 PLACE GABRIEL PERI - 75108", "stop_name": "GARE SAINT-LAZARE"}, "geometry": {"type": "Point", "coordinates": [2.32463797997698, 48.87505229858006]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4e07f8c94bb509850df55f88a1db0a953bd15731", "fields": {"departement": "75", "stop_lat": 48.86403446820581, "code_postal": "75101", "stop_lon": 2.334993420779704, "coord": [48.86403446820581, 2.334993420779704], "stop_id": 3893347, "stop_desc": "1-3 AVENUE DE L'OPERA - 75101", "stop_name": "PALAIS ROYAL - COMEDIE FRANCAISE"}, "geometry": {"type": "Point", "coordinates": [2.334993420779704, 48.86403446820581]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2e72bd9ee61e44a5b0b8a77be4ddfdb715026a7c", "fields": {"departement": "75", "stop_lat": 48.859046477901266, "code_postal": "75101", "stop_lon": 2.338494169074047, "coord": [48.859046477901266, 2.338494169074047], "stop_id": 3893350, "stop_desc": "QUAI FRANCOIS MITTERRAND - 75101", "stop_name": "PONT DES ARTS"}, "geometry": {"type": "Point", "coordinates": [2.338494169074047, 48.859046477901266]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "66e2ac76a78f13cb90db6b173c4f9fa256c52306", "fields": {"departement": "75", "stop_lat": 48.85247650155603, "code_postal": "75106", "stop_lon": 2.3435194294224857, "coord": [48.85247650155603, 2.3435194294224857], "stop_id": 3893354, "stop_desc": "10 BOULEVARD SAINT-MICHEL - 75106", "stop_name": "SAINT-MICHEL - SAINT-GERMAIN"}, "geometry": {"type": "Point", "coordinates": [2.3435194294224857, 48.85247650155603]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "92b8f92eaa8af791970f0163ebc614e8d39f48b5", "fields": {"departement": "75", "stop_lat": 48.84384857248528, "code_postal": "75105", "stop_lon": 2.3421158616941082, "coord": [48.84384857248528, 2.3421158616941082], "stop_id": 3893358, "stop_desc": "38 RUE GAY LUSSAC - 75105", "stop_name": "SAINT-JACQUES - GAY-LUSSAC"}, "geometry": {"type": "Point", "coordinates": [2.3421158616941082, 48.84384857248528]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b2897eb48310ad701c7de317d40c1111e7082625", "fields": {"departement": "75", "stop_lat": 48.84002861889747, "code_postal": "75105", "stop_lon": 2.346363617701741, "coord": [48.84002861889747, 2.346363617701741], "stop_id": 3893362, "stop_desc": "43 RUE CLAUDE BERNARD - 75105", "stop_name": "BERTHOLLET - VAUQUELIN"}, "geometry": {"type": "Point", "coordinates": [2.346363617701741, 48.84002861889747]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "40fbdac691a1319b73b796bfad3ca12698367d89", "fields": {"departement": "75", "stop_lat": 48.84046904641703, "code_postal": "75105", "stop_lon": 2.3458599080092717, "coord": [48.84046904641703, 2.3458599080092717], "stop_id": 3893363, "stop_desc": "70 RUE CLAUDE BERNARD - 75105", "stop_name": "BERTHOLLET - VAUQUELIN"}, "geometry": {"type": "Point", "coordinates": [2.3458599080092717, 48.84046904641703]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "54e21b5302bceb0d8403df092d4a38e523d23d6d", "fields": {"departement": "75", "stop_lat": 48.829068840154136, "code_postal": "75113", "stop_lon": 2.3690679690086, "coord": [48.829068840154136, 2.3690679690086], "stop_id": 3893378, "stop_desc": "7 RUE JEANNE D'ARC - 75113", "stop_name": "JEANNE D'ARC - EGLISE DE LA GARE"}, "geometry": {"type": "Point", "coordinates": [2.3690679690086, 48.829068840154136]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1639d28465eee6e399cd2e607fda4f7530a4c1ff", "fields": {"departement": "75", "stop_lat": 48.82926652427411, "code_postal": "75113", "stop_lon": 2.3692314453376437, "coord": [48.82926652427411, 2.3692314453376437], "stop_id": 3893379, "stop_desc": "14 RUE JEANNE D'ARC - 75113", "stop_name": "JEANNE D'ARC - EGLISE DE LA GARE"}, "geometry": {"type": "Point", "coordinates": [2.3692314453376437, 48.82926652427411]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c65d598a61f882992b5ec126aca10780dd398fdc", "fields": {"departement": "75", "stop_lat": 48.82059282959358, "code_postal": "75113", "stop_lon": 2.3713901948830167, "coord": [48.82059282959358, 2.3713901948830167], "stop_id": 3893389, "stop_desc": "38 AV DE LA PORTE D'IVRY - 75113", "stop_name": "PORTE D'IVRY"}, "geometry": {"type": "Point", "coordinates": [2.3713901948830167, 48.82059282959358]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fb5461797d5803a97a89b4b69a8f3e8f4f9f43cf", "fields": {"departement": "75", "stop_lat": 48.82113240214591, "code_postal": "75113", "stop_lon": 2.3702880754552216, "coord": [48.82113240214591, 2.3702880754552216], "stop_id": 3893390, "stop_desc": "50 AV DE LA PORTE D'IVRY - 75113", "stop_name": "PORTE D'IVRY"}, "geometry": {"type": "Point", "coordinates": [2.3702880754552216, 48.82113240214591]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c4de9a81270bf4ceab531d376311202bfd780f30", "fields": {"departement": "75", "stop_lat": 48.88324867913404, "code_postal": "75110", "stop_lon": 2.3499415145297466, "coord": [48.88324867913404, 2.3499415145297466], "stop_id": 4036934, "stop_desc": "168 BOULEVARD DE MAGENTA - 75110", "stop_name": "BARBES - ROCHECHOUART"}, "geometry": {"type": "Point", "coordinates": [2.3499415145297466, 48.88324867913404]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "453b4d4ad29981b24b8649471b772914882fb817", "fields": {"departement": "93", "stop_lat": 48.91044329400517, "code_postal": "93008", "stop_lon": 2.442074869299911, "coord": [48.91044329400517, 2.442074869299911], "stop_id": 4036940, "stop_desc": "80 AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "LIEUTENANT LEBRUN"}, "geometry": {"type": "Point", "coordinates": [2.442074869299911, 48.91044329400517]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7b0313ff093bb29d462f0bdf3fd8a1f2d9ba75bc", "fields": {"departement": "93", "stop_lat": 48.91280193544806, "code_postal": "93008", "stop_lon": 2.437375605363845, "coord": [48.91280193544806, 2.437375605363845], "stop_id": 4036941, "stop_desc": "AVENUE PAUL VAILLANT COUTURIER - 93008", "stop_name": "ESCADRILLE NORMANDIE NIEMEN - PAUL VAILLANT COUTURIER-TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.437375605363845, 48.91280193544806]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d1a99f4a1374da888c6b4fbb7f22973d80e7a201", "fields": {"departement": "93", "stop_lat": 48.89543676209062, "code_postal": "93055", "stop_lon": 2.4012898731919776, "coord": [48.89543676209062, 2.4012898731919776], "stop_id": 4036961, "stop_desc": "52 RUE HOCHE - 93055", "stop_name": "CENTRE NATIONAL DE LA DANSE"}, "geometry": {"type": "Point", "coordinates": [2.4012898731919776, 48.89543676209062]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "abefe0d11e5c1cdc9092fd9c08b2246e3590a517", "fields": {"departement": "75", "stop_lat": 48.88292996267457, "code_postal": "75119", "stop_lon": 2.3712132136426027, "coord": [48.88292996267457, 2.3712132136426027], "stop_id": 4036973, "stop_desc": "6-8 AVENUE JEAN JAURES - 75119", "stop_name": "JAURES"}, "geometry": {"type": "Point", "coordinates": [2.3712132136426027, 48.88292996267457]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "daf225546e96667ecdd6229bb33a16d56cdb90b3", "fields": {"departement": "75", "stop_lat": 48.87863626955432, "code_postal": "75110", "stop_lon": 2.362258190577353, "coord": [48.87863626955432, 2.362258190577353], "stop_id": 4036977, "stop_desc": "190 RUE DU FAUBOURG SAINT-MARTIN - 75110", "stop_name": "CHATEAU LANDON"}, "geometry": {"type": "Point", "coordinates": [2.362258190577353, 48.87863626955432]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b7f315772978478bbe2dc2c8044d94d4516a463a", "fields": {"departement": "75", "stop_lat": 48.868778444624105, "code_postal": "75110", "stop_lon": 2.355332800316335, "coord": [48.868778444624105, 2.355332800316335], "stop_id": 4036981, "stop_desc": "FACE 326 RUE SAINT-MARTIN - 75110", "stop_name": "PORTE SAINT-MARTIN"}, "geometry": {"type": "Point", "coordinates": [2.355332800316335, 48.868778444624105]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "22c5c71034bb4be84a8e4e1620b63efa900abbb5", "fields": {"departement": "75", "stop_lat": 48.86287390987719, "code_postal": "75103", "stop_lon": 2.354213758372903, "coord": [48.86287390987719, 2.354213758372903], "stop_id": 4036983, "stop_desc": "59 RUE BEAUBOURG - 75103", "stop_name": "GRENIER SAINT-LAZARE - QUARTIER DE L'HORLOGE"}, "geometry": {"type": "Point", "coordinates": [2.354213758372903, 48.86287390987719]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0de5e5eea29ccd6c7e5e3f88638da4104b94abf8", "fields": {"departement": "75", "stop_lat": 48.85746411278103, "code_postal": "75104", "stop_lon": 2.349063505360302, "coord": [48.85746411278103, 2.349063505360302], "stop_id": 4036985, "stop_desc": "FACE 13 AVENUE VICTORIA - 75104", "stop_name": "CHATELET"}, "geometry": {"type": "Point", "coordinates": [2.349063505360302, 48.85746411278103]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "db96990aeda45bd761729959eb6b170c19bb35ae", "fields": {"departement": "75", "stop_lat": 48.85583791617629, "code_postal": "75106", "stop_lon": 2.3409320544688788, "coord": [48.85583791617629, 2.3409320544688788], "stop_id": 4036989, "stop_desc": "FACE 55 QUAI DES GRANDS AUGUSTINS - 75106", "stop_name": "PONT NEUF - QUAI DES GRANDS AUGUSTINS"}, "geometry": {"type": "Point", "coordinates": [2.3409320544688788, 48.85583791617629]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8e10de1160fac8060e5003b77426ab8435fe90c4", "fields": {"departement": "75", "stop_lat": 48.856008585004595, "code_postal": "75107", "stop_lon": 2.3312891453604494, "coord": [48.856008585004595, 2.3312891453604494], "stop_id": 4036992, "stop_desc": "26-28 RUE DES SAINTS-PERES - 75107", "stop_name": "JACOB"}, "geometry": {"type": "Point", "coordinates": [2.3312891453604494, 48.856008585004595]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a19c4e7abb650e3072f4bc5c114ccbb09ff4833b", "fields": {"departement": "75", "stop_lat": 48.85328544303421, "code_postal": "75106", "stop_lon": 2.3325015699609604, "coord": [48.85328544303421, 2.3325015699609604], "stop_id": 4036993, "stop_desc": "54 RUE DE RENNES - 75106", "stop_name": "SAINT-GERMAIN-DES-PRES"}, "geometry": {"type": "Point", "coordinates": [2.3325015699609604, 48.85328544303421]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9030a3a64a59f2fe0b7c02eb98824f7fade40d57", "fields": {"departement": "75", "stop_lat": 48.84454903838894, "code_postal": "75106", "stop_lon": 2.3247134823772995, "coord": [48.84454903838894, 2.3247134823772995], "stop_id": 4037001, "stop_desc": "169-171 RUE DE RENNES - 75106", "stop_name": "RENNES - LITTRE"}, "geometry": {"type": "Point", "coordinates": [2.3247134823772995, 48.84454903838894]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6ca7cfef7cf7114007cde7c9b97649cd21ced7af", "fields": {"departement": "75", "stop_lat": 48.84381179353463, "code_postal": "75115", "stop_lon": 2.32238519748455, "coord": [48.84381179353463, 2.32238519748455], "stop_id": 4037002, "stop_desc": "FACE 3 RUE DE L'ARRIVEE - 75115", "stop_name": "PLACE DU 18 JUIN 1940 - RUE DE L'ARRIVEE"}, "geometry": {"type": "Point", "coordinates": [2.32238519748455, 48.84381179353463]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1e0f92e69c3172949c5c3df279e702ea691b9bce", "fields": {"departement": "75", "stop_lat": 48.84202305182629, "code_postal": "75115", "stop_lon": 2.320697292153351, "coord": [48.84202305182629, 2.320697292153351], "stop_id": 4037004, "stop_desc": "PLACE RAOUL DAUTRY - 75115", "stop_name": "GARE MONTPARNASSE"}, "geometry": {"type": "Point", "coordinates": [2.320697292153351, 48.84202305182629]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f3942df1cc8ef92ee227a8f4fb571312cdceb8ae", "fields": {"departement": "75", "stop_lat": 48.843217014382596, "code_postal": "75115", "stop_lon": 2.3127039743389797, "coord": [48.843217014382596, 2.3127039743389797], "stop_id": 4037007, "stop_desc": "31 BOULEVARD PASTEUR - 75115", "stop_name": "PASTEUR - LYCEE BUFFON"}, "geometry": {"type": "Point", "coordinates": [2.3127039743389797, 48.843217014382596]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7c349f82d5f971888008ce8ec7286fbc8e1bdeba", "fields": {"departement": "75", "stop_lat": 48.828444674765805, "code_postal": "75115", "stop_lon": 2.2731524186663283, "coord": [48.828444674765805, 2.2731524186663283], "stop_id": 4037021, "stop_desc": "38 R DU COLONEL AVIA - 75115", "stop_name": "FRERES VOISIN"}, "geometry": {"type": "Point", "coordinates": [2.2731524186663283, 48.828444674765805]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a0a945191b3827521a698a5d3b1b71a9079ee49c", "fields": {"departement": "75", "stop_lat": 48.84038395608434, "code_postal": "75115", "stop_lon": 2.304467729103389, "coord": [48.84038395608434, 2.304467729103389], "stop_id": 4037034, "stop_desc": "249 RUE DE VAUGIRARD - 75115", "stop_name": "CAMBRONNE - VAUGIRARD"}, "geometry": {"type": "Point", "coordinates": [2.304467729103389, 48.84038395608434]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ff0e433c750496199681369fcaaa975799463549", "fields": {"departement": "75", "stop_lat": 48.84153536388469, "code_postal": "75115", "stop_lon": 2.3083339871069257, "coord": [48.84153536388469, 2.3083339871069257], "stop_id": 4037035, "stop_desc": "225-223 RUE DE VAUGIRARD - 75115", "stop_name": "VOLONTAIRES - VAUGIRARD"}, "geometry": {"type": "Point", "coordinates": [2.3083339871069257, 48.84153536388469]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b039a6227e108228fc47706bebd8c939b5121960", "fields": {"departement": "75", "stop_lat": 48.84092542778849, "code_postal": "75115", "stop_lon": 2.3138760334790764, "coord": [48.84092542778849, 2.3138760334790764], "stop_id": 4037036, "stop_desc": "52 BOULEVARD PASTEUR - 75115", "stop_name": "PASTEUR - FALGUIERE"}, "geometry": {"type": "Point", "coordinates": [2.3138760334790764, 48.84092542778849]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5b5fdee539b160d4108eb1f8d143bcb33fe48f55", "fields": {"departement": "75", "stop_lat": 48.852162079896225, "code_postal": "75106", "stop_lon": 2.3397060895787947, "coord": [48.852162079896225, 2.3397060895787947], "stop_id": 4037040, "stop_desc": "87 BOULEVARD SAINT GERMAIN - 75106", "stop_name": "SAINT-GERMAIN - ODEON"}, "geometry": {"type": "Point", "coordinates": [2.3397060895787947, 48.852162079896225]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e23c87ac2252a3a2ad8e8cf1de19e8cecdb91d39", "fields": {"departement": "93", "stop_lat": 48.85675424193214, "code_postal": "93049", "stop_lon": 2.5106936994562683, "coord": [48.85675424193214, 2.5106936994562683], "stop_id": 4798811, "stop_desc": "RUE FAIDHERBE - 93049", "stop_name": "FAIDHERBE - EGLISE"}, "geometry": {"type": "Point", "coordinates": [2.5106936994562683, 48.85675424193214]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0a470d33c2ba23b6ce1ac4dde325bdc4fafbcd35", "fields": {"departement": "93", "stop_lat": 48.85833935460912, "code_postal": "93049", "stop_lon": 2.508397120703054, "coord": [48.85833935460912, 2.508397120703054], "stop_id": 4798812, "stop_desc": "2 RUE ALEXANDRE 1ER - 93049", "stop_name": "ALEXANDRE 1ER"}, "geometry": {"type": "Point", "coordinates": [2.508397120703054, 48.85833935460912]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d23ebbb909b101d23cf7a9ca3143eb595cd95fd1", "fields": {"departement": "78", "stop_lat": 48.933777895447946, "code_postal": "78311", "stop_lon": 2.17935331837722, "coord": [48.933777895447946, 2.17935331837722], "stop_id": 4798860, "stop_desc": "146 BOULEVARD HENRI BARBUSSE - 78311", "stop_name": "GENERAL NEGRIER"}, "geometry": {"type": "Point", "coordinates": [2.17935331837722, 48.933777895447946]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "50493a0f6f46a71e624168abf5b9272c17329056", "fields": {"departement": "78", "stop_lat": 48.93864537025909, "code_postal": "78586", "stop_lon": 2.1702530958492527, "coord": [48.93864537025909, 2.1702530958492527], "stop_id": 4798861, "stop_desc": "121 AVENUE MAURICE BERTEAUX - 78586", "stop_name": "VOLTAIRE"}, "geometry": {"type": "Point", "coordinates": [2.1702530958492527, 48.93864537025909]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7cd43fd0c5fb2f261ee479aa406ee876335dd3f7", "fields": {"departement": "78", "stop_lat": 48.94016904281243, "code_postal": "78586", "stop_lon": 2.167356053279125, "coord": [48.94016904281243, 2.167356053279125], "stop_id": 4798862, "stop_desc": "73 AVENUE MAURICE BERTEAUX - 78586", "stop_name": "JEAN MERMOZ"}, "geometry": {"type": "Point", "coordinates": [2.167356053279125, 48.94016904281243]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f259a101eb28182856506abca7e7a9b32f3d9958", "fields": {"departement": "95", "stop_lat": 48.92333364375808, "code_postal": "95063", "stop_lon": 2.20801063048684, "coord": [48.92333364375808, 2.20801063048684], "stop_id": 4798864, "stop_desc": "PLACE DU GRAND CERF - 95063", "stop_name": "GRAND CERF"}, "geometry": {"type": "Point", "coordinates": [2.20801063048684, 48.92333364375808]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3ca6fa984120ffccd378e9711f4ebd8115fd2caf", "fields": {"departement": "95", "stop_lat": 48.925367901149954, "code_postal": "95063", "stop_lon": 2.211005958642109, "coord": [48.925367901149954, 2.211005958642109], "stop_id": 4798866, "stop_desc": "FACE 109 RUE EDOUARD VAILLANT - 95063", "stop_name": "HENRI BARBUSSE"}, "geometry": {"type": "Point", "coordinates": [2.211005958642109, 48.925367901149954]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "23b6c3559eefefa67df5a8b0cf68b6777e832349", "fields": {"departement": "92", "stop_lat": 48.8967714050638, "code_postal": "92026", "stop_lon": 2.24006806449667, "coord": [48.8967714050638, 2.24006806449667], "stop_id": 4798877, "stop_desc": "FACE 24 BOULEVARD DE LA MISSION MARCHAND - 92026", "stop_name": "FAUBOURG DE L'ARCHE"}, "geometry": {"type": "Point", "coordinates": [2.24006806449667, 48.8967714050638]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5d32fc1ef92d43f9a9a33daa5868dadcbcc8ec0c", "fields": {"departement": "92", "stop_lat": 48.89539650652404, "code_postal": "92026", "stop_lon": 2.2402342065353684, "coord": [48.89539650652404, 2.2402342065353684], "stop_id": 4798878, "stop_desc": "AVENUE DE LA DIVISION LECLERC - 92026", "stop_name": "CARON"}, "geometry": {"type": "Point", "coordinates": [2.2402342065353684, 48.89539650652404]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "467731731d6a6bb9d2de4c7a830ab98e71b78c4c", "fields": {"departement": "93", "stop_lat": 48.92974676755339, "code_postal": "93066", "stop_lon": 2.357168115742564, "coord": [48.92974676755339, 2.357168115742564], "stop_id": 4798986, "stop_desc": "RUE DANIELLE CASANOVA - 93066", "stop_name": "SAINT-DENIS - PORTE DE PARIS"}, "geometry": {"type": "Point", "coordinates": [2.357168115742564, 48.92974676755339]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "68d7c483e547fb03be59f4d20ba6db86c44ad105", "fields": {"departement": "93", "stop_lat": 48.93574226391828, "code_postal": "93066", "stop_lon": 2.34711706578437, "coord": [48.93574226391828, 2.34711706578437], "stop_id": 4798991, "stop_desc": "BOULEVARD MARCEL SEMBAT - 93066", "stop_name": "SAINT-DENIS - GARE"}, "geometry": {"type": "Point", "coordinates": [2.34711706578437, 48.93574226391828]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "59e374fea3df6164276849eb3e565865346a3c7f", "fields": {"departement": "93", "stop_lat": 48.94951033462527, "code_postal": "93079", "stop_lon": 2.3423031647045156, "coord": [48.94951033462527, 2.3423031647045156], "stop_id": 4798997, "stop_desc": "AVENUE DIVISION LECLERC - 93079", "stop_name": "CESAR"}, "geometry": {"type": "Point", "coordinates": [2.3423031647045156, 48.94951033462527]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5ac5953297878196b15adcb3f2dea8f98537b52e", "fields": {"departement": "93", "stop_lat": 48.92974676755339, "code_postal": "93066", "stop_lon": 2.357168115742564, "coord": [48.92974676755339, 2.357168115742564], "stop_id": 4799004, "stop_desc": "RUE DANIELLE CASANOVA - 93066", "stop_name": "SAINT-DENIS - PORTE DE PARIS"}, "geometry": {"type": "Point", "coordinates": [2.357168115742564, 48.92974676755339]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "05a471165b5b4adf651163d7fb44a2b7c89e36be", "fields": {"departement": "93", "stop_lat": 48.9320839916094, "code_postal": "93066", "stop_lon": 2.352913349098698, "coord": [48.9320839916094, 2.352913349098698], "stop_id": 4799006, "stop_desc": "BOULEVARD MARCEL SEMBAT - 93066", "stop_name": "PIERRE DE GEYTER"}, "geometry": {"type": "Point", "coordinates": [2.352913349098698, 48.9320839916094]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c994bb95659937cc6dc88f602b4657cb700eeb2a", "fields": {"departement": "93", "stop_lat": 48.94587936456207, "code_postal": "93066", "stop_lon": 2.347350937993363, "coord": [48.94587936456207, 2.347350937993363], "stop_id": 4799012, "stop_desc": "RUE DE LA POTERIE - 93066", "stop_name": "DELAUNAY-BELLEVILLE"}, "geometry": {"type": "Point", "coordinates": [2.347350937993363, 48.94587936456207]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9d517969f0716ab1fd8134277874fdedec2b99f6", "fields": {"departement": "93", "stop_lat": 48.94793774656713, "code_postal": "93031", "stop_lon": 2.339069352523681, "coord": [48.94793774656713, 2.339069352523681], "stop_id": 4799014, "stop_desc": "AVENUE DE LA REPUBLIQUE - 93031", "stop_name": "BLUMENTHAL"}, "geometry": {"type": "Point", "coordinates": [2.339069352523681, 48.94793774656713]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "26be588bdc792185e46945af92c7a78f38604e1c", "fields": {"departement": "92", "stop_lat": 48.82995037911324, "code_postal": "92012", "stop_lon": 2.2298608565838434, "coord": [48.82995037911324, 2.2298608565838434], "stop_id": 4834508, "stop_desc": "PISTE GARE ROUTIERE - 92012", "stop_name": "PONT DE SEVRES"}, "geometry": {"type": "Point", "coordinates": [2.2298608565838434, 48.82995037911324]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6db089c2ee331697dc8bca43d4211c6c37d66ff7", "fields": {"departement": "92", "stop_lat": 48.826516619377834, "code_postal": "92072", "stop_lon": 2.219835757126419, "coord": [48.826516619377834, 2.219835757126419], "stop_id": 4834512, "stop_desc": "25 BIS GRANDE RUE - 92072", "stop_name": "PARC DE SAINT-CLOUD"}, "geometry": {"type": "Point", "coordinates": [2.219835757126419, 48.826516619377834]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "27492760aabe47b0e2237e6d4d69d6502b199b16", "fields": {"departement": "92", "stop_lat": 48.824383249849056, "code_postal": "92072", "stop_lon": 2.207984826167632, "coord": [48.824383249849056, 2.207984826167632], "stop_id": 4834515, "stop_desc": "FACE 11 RUE DE VILLE D'AVRAY - 92072", "stop_name": "SQUARE DE LA FORGE"}, "geometry": {"type": "Point", "coordinates": [2.207984826167632, 48.824383249849056]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e777290aa98644f7e0a885ff37a4347d9a67a5d0", "fields": {"departement": "92", "stop_lat": 48.82421236610395, "code_postal": "92072", "stop_lon": 2.2078763588551, "coord": [48.82421236610395, 2.2078763588551], "stop_id": 4834516, "stop_desc": "9 RUE DE VILLE D'AVRAY - 92072", "stop_name": "SQUARE DE LA FORGE"}, "geometry": {"type": "Point", "coordinates": [2.2078763588551, 48.82421236610395]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e5976c46839e8eda0db4cb337bd8c42a41f46652", "fields": {"departement": "92", "stop_lat": 48.82588183220225, "code_postal": "92072", "stop_lon": 2.2058303883552366, "coord": [48.82588183220225, 2.2058303883552366], "stop_id": 4834517, "stop_desc": "52 RUE DE VILLE D'AVRAY - 92072", "stop_name": "PRE VERDY"}, "geometry": {"type": "Point", "coordinates": [2.2058303883552366, 48.82588183220225]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "556eefdf3e2fefda7e7467f7d79c58aabb5cce85", "fields": {"departement": "92", "stop_lat": 48.83034079803131, "code_postal": "92047", "stop_lon": 2.177340215360539, "coord": [48.83034079803131, 2.177340215360539], "stop_id": 4834526, "stop_desc": "PL DE LA MAIRIE - 92047", "stop_name": "MAIRIE DE MARNES"}, "geometry": {"type": "Point", "coordinates": [2.177340215360539, 48.83034079803131]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a0cec92904bf083c07a9b04d10b0d54f4d03307b", "fields": {"departement": "92", "stop_lat": 48.83767900459509, "code_postal": "92076", "stop_lon": 2.15530187551761, "coord": [48.83767900459509, 2.15530187551761], "stop_id": 4834530, "stop_desc": "84-88 BD DE LA REPUBLIQUE - 92076", "stop_name": "FER ROUGE"}, "geometry": {"type": "Point", "coordinates": [2.15530187551761, 48.83767900459509]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "651407e0ec50ec73241164c923331a612da8bd5e", "fields": {"departement": "78", "stop_lat": 48.836846329742755, "code_postal": "78126", "stop_lon": 2.1297631369932235, "coord": [48.836846329742755, 2.1297631369932235], "stop_id": 4834537, "stop_desc": "AVENUE LUCIEN RENE DUCHESNE - 78126", "stop_name": "BEL AIR"}, "geometry": {"type": "Point", "coordinates": [2.1297631369932235, 48.836846329742755]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "58a9c70d749e8d3ab8b0e402a40cae4e5268c907", "fields": {"departement": "78", "stop_lat": 48.841252442530866, "code_postal": "78126", "stop_lon": 2.1310254303130347, "coord": [48.841252442530866, 2.1310254303130347], "stop_id": 4834542, "stop_desc": "FACE 31 AVENUE LUCIEN RENE DUCHESNE - 78126", "stop_name": "GRANDE TERRASSE"}, "geometry": {"type": "Point", "coordinates": [2.1310254303130347, 48.841252442530866]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dc45e6dd4deeec73d858397ccecde47a56b3b194", "fields": {"departement": "78", "stop_lat": 48.83537969804066, "code_postal": "78158", "stop_lon": 2.1340167497828455, "coord": [48.83537969804066, 2.1340167497828455], "stop_id": 4834550, "stop_desc": "FACE 44 AV DE VERDUN - 78158", "stop_name": "JULES VERNE"}, "geometry": {"type": "Point", "coordinates": [2.1340167497828455, 48.83537969804066]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a83061e99048bc49f5fe80a1e7d4ee6f8fde600b", "fields": {"departement": "92", "stop_lat": 48.82780439929386, "code_postal": "92077", "stop_lon": 2.175945936492329, "coord": [48.82780439929386, 2.175945936492329], "stop_id": 4834555, "stop_desc": "FACE 42 AV THIERRY - 92077", "stop_name": "CIMETIERE DE VILLE-D'AVRAY"}, "geometry": {"type": "Point", "coordinates": [2.175945936492329, 48.82780439929386]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b7e0524b0efafab99f9c46ec8786af58af39899b", "fields": {"departement": "92", "stop_lat": 48.82424295014318, "code_postal": "92072", "stop_lon": 2.2112519659654075, "coord": [48.82424295014318, 2.2112519659654075], "stop_id": 4834558, "stop_desc": "PL DU THEATRE - 92072", "stop_name": "PLACE DU THEATRE - MARCHE SAINT-ROMAIN"}, "geometry": {"type": "Point", "coordinates": [2.2112519659654075, 48.82424295014318]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a7953b1a8de07dfece4a7b4271c340b0f73616fd", "fields": {"departement": "92", "stop_lat": 48.77875821431904, "code_postal": "92071", "stop_lon": 2.288268592816922, "coord": [48.77875821431904, 2.288268592816922], "stop_id": 4834564, "stop_desc": "83 RUE HOUDAN - 92071", "stop_name": "MAIRIE DE SCEAUX"}, "geometry": {"type": "Point", "coordinates": [2.288268592816922, 48.77875821431904]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e34e4bc733a2dd58ca3ee2c83dd5c064c200d27e", "fields": {"departement": "92", "stop_lat": 48.779063025919605, "code_postal": "92014", "stop_lon": 2.316107036451739, "coord": [48.779063025919605, 2.316107036451739], "stop_id": 4834574, "stop_desc": "6 BOULEVARD CARNOT - 92014", "stop_name": "CONDORCET - MAIRIE-RER"}, "geometry": {"type": "Point", "coordinates": [2.316107036451739, 48.779063025919605]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "72ab9c2abc51c0f069b134eeee459cffb3d8e738", "fields": {"departement": "94", "stop_lat": 48.772629461588615, "code_postal": "94021", "stop_lon": 2.3397839218859495, "coord": [48.772629461588615, 2.3397839218859495], "stop_id": 4834588, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 94021", "stop_name": "JEAN MERMOZ - GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.3397839218859495, 48.772629461588615]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7a17d6f0f1514c12c78cfb65a4079376d4e5c290", "fields": {"departement": "94", "stop_lat": 48.77062233301879, "code_postal": "94021", "stop_lon": 2.363158030290623, "coord": [48.77062233301879, 2.363158030290623], "stop_id": 4834597, "stop_desc": "65 AVENUE DU PRESIDENT ROOSEVELT - 94021", "stop_name": "JACQUES BREL"}, "geometry": {"type": "Point", "coordinates": [2.363158030290623, 48.77062233301879]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dd29d036bf5af70eaf85771d49ec016d77620647", "fields": {"departement": "94", "stop_lat": 48.75908996737717, "code_postal": "94021", "stop_lon": 2.3659663516074483, "coord": [48.75908996737717, 2.3659663516074483], "stop_id": 4834604, "stop_desc": "RUE DE THIAIS - 94021", "stop_name": "PORTE DE THIAIS"}, "geometry": {"type": "Point", "coordinates": [2.3659663516074483, 48.75908996737717]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5a278986f36ef0a5fe43e5ef891103809b2cef6b", "fields": {"departement": "94", "stop_lat": 48.76329818182903, "code_postal": "94021", "stop_lon": 2.35730825180501, "coord": [48.76329818182903, 2.35730825180501], "stop_id": 4834612, "stop_desc": "AVENUE DE LA CITE - 94021", "stop_name": "MARCHE INTERNATIONAL DE RUNGIS"}, "geometry": {"type": "Point", "coordinates": [2.35730825180501, 48.76329818182903]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e0e054a23d3e48525058af9a27cd1b00fe268af6", "fields": {"departement": "94", "stop_lat": 48.77215293268769, "code_postal": "94038", "stop_lon": 2.3439720705528613, "coord": [48.77215293268769, 2.3439720705528613], "stop_id": 4834617, "stop_desc": "FACE 80 AVENUE DU GENERAL LECLERC - 94038", "stop_name": "CIMETIERE COMMUNAL"}, "geometry": {"type": "Point", "coordinates": [2.3439720705528613, 48.77215293268769]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4458f4a5f61b8f9f12d3f2f8aa32bac4594fb5a6", "fields": {"departement": "92", "stop_lat": 48.77960179320402, "code_postal": "92014", "stop_lon": 2.313400434821077, "coord": [48.77960179320402, 2.313400434821077], "stop_id": 4834621, "stop_desc": "72 BOULEVARD DU MARECHAL JOFFRE - 92014", "stop_name": "BOURG-LA-REINE RER"}, "geometry": {"type": "Point", "coordinates": [2.313400434821077, 48.77960179320402]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9a94c02c1214c0b82d1c4a0bb4ebe0fc02923b9e", "fields": {"departement": "92", "stop_lat": 48.777524106211125, "code_postal": "92014", "stop_lon": 2.3069824873860822, "coord": [48.777524106211125, 2.3069824873860822], "stop_id": 4834623, "stop_desc": "36 AVENUE VICTOR HUGO - 92014", "stop_name": "LYCEE LAKANAL"}, "geometry": {"type": "Point", "coordinates": [2.3069824873860822, 48.777524106211125]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "48e845759aa217e046f8ad81e510fd91a88146b2", "fields": {"departement": "92", "stop_lat": 48.77990566863007, "code_postal": "92071", "stop_lon": 2.281440314220599, "coord": [48.77990566863007, 2.281440314220599], "stop_id": 4834624, "stop_desc": "FACE 4 AVENUE DE LA GARE - 92071", "stop_name": "ROBINSON RER"}, "geometry": {"type": "Point", "coordinates": [2.281440314220599, 48.77990566863007]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "48a82f7ccc0b07bdf3c2cf35ddd3308031dfc465", "fields": {"departement": "92", "stop_lat": 48.77700575939989, "code_postal": "92014", "stop_lon": 2.3226627033398617, "coord": [48.77700575939989, 2.3226627033398617], "stop_id": 4834640, "stop_desc": "FACE 35 BOULEVARD CARNOT - 92014", "stop_name": "GALOIS"}, "geometry": {"type": "Point", "coordinates": [2.3226627033398617, 48.77700575939989]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "09012cfb8b38d260e3e183d45bf1cfb743ee7042", "fields": {"departement": "94", "stop_lat": 48.77631442599705, "code_postal": "94038", "stop_lon": 2.331243898097316, "coord": [48.77631442599705, 2.331243898097316], "stop_id": 4834644, "stop_desc": "28 AVENUE LARROUMES - 94038", "stop_name": "SOUS-PREFECTURE - ROSERAIE"}, "geometry": {"type": "Point", "coordinates": [2.331243898097316, 48.77631442599705]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "71e8e89194e4c2312399fce856558004582ed941", "fields": {"departement": "94", "stop_lat": 48.77882222928945, "code_postal": "94038", "stop_lon": 2.3376490697971875, "coord": [48.77882222928945, 2.3376490697971875], "stop_id": 4834648, "stop_desc": "40 RUE JEAN JAURES - 94038", "stop_name": "MAIRIE DE L'HAY-LES-ROSES"}, "geometry": {"type": "Point", "coordinates": [2.3376490697971875, 48.77882222928945]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ba1e984f085ffce99f9b03bdab90ded97b00c1c6", "fields": {"departement": "94", "stop_lat": 48.77070532619788, "code_postal": "94021", "stop_lon": 2.3503491492177844, "coord": [48.77070532619788, 2.3503491492177844], "stop_id": 4834655, "stop_desc": "100 AVENUE DU GENERAL DE GAULLE - 94021", "stop_name": "CENTRE CULTUREL - ANDRE MALRAUX"}, "geometry": {"type": "Point", "coordinates": [2.3503491492177844, 48.77070532619788]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c5a6e7ac78e53fd3b6847328d2e7e47f661b2fc7", "fields": {"departement": "94", "stop_lat": 48.77084862744517, "code_postal": "94021", "stop_lon": 2.3543468854886394, "coord": [48.77084862744517, 2.3543468854886394], "stop_id": 4834656, "stop_desc": "12 RUE DU PERE MAZURIE - 94021", "stop_name": "EGLISE DE CHEVILLY-LARUE"}, "geometry": {"type": "Point", "coordinates": [2.3543468854886394, 48.77084862744517]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ffeaf38c1fd0d4fc394ef8c70fb2ac2a50b6254e", "fields": {"departement": "94", "stop_lat": 48.771091259341816, "code_postal": "94021", "stop_lon": 2.3546597120364807, "coord": [48.771091259341816, 2.3546597120364807], "stop_id": 4834657, "stop_desc": "27 RUE DU PERE MAZURIE - 94021", "stop_name": "EGLISE DE CHEVILLY-LARUE"}, "geometry": {"type": "Point", "coordinates": [2.3546597120364807, 48.771091259341816]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "948e8c7aead50e78cd81d92c9545ca17c3edff48", "fields": {"departement": "94", "stop_lat": 48.76938120248103, "code_postal": "94021", "stop_lon": 2.366515928750708, "coord": [48.76938120248103, 2.366515928750708], "stop_id": 4834663, "stop_desc": "89 AVENUE DU PRESIDENT FRANKLIN ROOSEVELT - 94021", "stop_name": "BRETAGNE"}, "geometry": {"type": "Point", "coordinates": [2.366515928750708, 48.76938120248103]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "702162f3ddefd54a63a3acd42b52c9224589bc1c", "fields": {"departement": "94", "stop_lat": 48.76329818182903, "code_postal": "94021", "stop_lon": 2.35730825180501, "coord": [48.76329818182903, 2.35730825180501], "stop_id": 4834669, "stop_desc": "AVENUE DE LA CITE - 94021", "stop_name": "MARCHE INTERNATIONAL DE RUNGIS"}, "geometry": {"type": "Point", "coordinates": [2.35730825180501, 48.76329818182903]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1758ed65c3ff140113eb33c7e4b37e1c3547f264", "fields": {"departement": "94", "stop_lat": 48.76461703210473, "code_postal": "94073", "stop_lon": 2.3684438760824804, "coord": [48.76461703210473, 2.3684438760824804], "stop_id": 4834672, "stop_desc": "AVENUE DE FONTAINEBLEAU - 94073", "stop_name": "CIMETIERE PARISIEN DE THIAIS"}, "geometry": {"type": "Point", "coordinates": [2.3684438760824804, 48.76461703210473]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "622efe4254bad1c1cc20e1b8fc9ca5b206ede2c6", "fields": {"departement": "92", "stop_lat": 48.782711905190155, "code_postal": "92014", "stop_lon": 2.3147998813643778, "coord": [48.782711905190155, 2.3147998813643778], "stop_id": 4834677, "stop_desc": "FACE 43 BOULEVARD DU MARECHAL JOFFRE - 92014", "stop_name": "RUE DU 8 MAI 1945"}, "geometry": {"type": "Point", "coordinates": [2.3147998813643778, 48.782711905190155]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "69d1d1bc3d4ae13379d8f230a10aea727cbcf963", "fields": {"departement": "75", "stop_lat": 48.82773792696931, "code_postal": "75113", "stop_lon": 2.371735208270784, "coord": [48.82773792696931, 2.371735208270784], "stop_id": 4843408, "stop_desc": "45 RUE DE TOLBIAC - 75113", "stop_name": "PATAY - TOLBIAC"}, "geometry": {"type": "Point", "coordinates": [2.371735208270784, 48.82773792696931]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "039d7e930f1847795b2d12e7ddc8b5dc8f2ca149", "fields": {"departement": "75", "stop_lat": 48.82310745758169, "code_postal": "75113", "stop_lon": 2.3775441621261817, "coord": [48.82310745758169, 2.3775441621261817], "stop_id": 4843413, "stop_desc": "15-17 AVENUE DE LA PORTE DE VITRY - 75113", "stop_name": "PORTE DE VITRY"}, "geometry": {"type": "Point", "coordinates": [2.3775441621261817, 48.82310745758169]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "703cd782edd8ea519edd81650dfc994e419a8b11", "fields": {"departement": "94", "stop_lat": 48.81567257758314, "code_postal": "94041", "stop_lon": 2.383199886102447, "coord": [48.81567257758314, 2.383199886102447], "stop_id": 4843420, "stop_desc": "59 AVENUE DANIELLE CASANOVA - 94041", "stop_name": "LEDRU ROLLIN"}, "geometry": {"type": "Point", "coordinates": [2.383199886102447, 48.81567257758314]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a4c813c6526a958927ba86f5223b9089065fbdd0", "fields": {"departement": "94", "stop_lat": 48.80518150019703, "code_postal": "94041", "stop_lon": 2.388932592492534, "coord": [48.80518150019703, 2.388932592492534], "stop_id": 4843460, "stop_desc": "ROND-POINT JEAN DOMBROWSKI - 94041", "stop_name": "FORT D'IVRY"}, "geometry": {"type": "Point", "coordinates": [2.388932592492534, 48.80518150019703]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "03b4fbf93125c4ad8ca5bad6e762ac888be4f5a5", "fields": {"departement": "94", "stop_lat": 48.79871818959465, "code_postal": "94081", "stop_lon": 2.391320625619278, "coord": [48.79871818959465, 2.391320625619278], "stop_id": 4843464, "stop_desc": "15-17 RUE LAVOISIER - 94081", "stop_name": "LAVOISIER - CARRIERES"}, "geometry": {"type": "Point", "coordinates": [2.391320625619278, 48.79871818959465]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "32eef4df167d76be7ef6a28f27450c9e0a6c2b27", "fields": {"departement": "94", "stop_lat": 48.795230694736865, "code_postal": "94081", "stop_lon": 2.39176592662908, "coord": [48.795230694736865, 2.39176592662908], "stop_id": 4843467, "stop_desc": "FACE 49-51 RUE GENERAL DE GAULLE - 94081", "stop_name": "MALRAUX - CHARLES INFROIT"}, "geometry": {"type": "Point", "coordinates": [2.39176592662908, 48.795230694736865]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "de93951b7e998ad77123a3041bb0063c6080b963", "fields": {"departement": "94", "stop_lat": 48.79047578726445, "code_postal": "94081", "stop_lon": 2.392441073532451, "coord": [48.79047578726445, 2.392441073532451], "stop_id": 4843473, "stop_desc": "7 AVENUE DE L'ABBE ROGER DERRY - 94081", "stop_name": "AUDIGEOIS"}, "geometry": {"type": "Point", "coordinates": [2.392441073532451, 48.79047578726445]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "63e7d21915e402cdb09a3a518b2855aab104b290", "fields": {"departement": "94", "stop_lat": 48.790200620228866, "code_postal": "94081", "stop_lon": 2.3844015918727153, "coord": [48.790200620228866, 2.3844015918727153], "stop_id": 4843478, "stop_desc": "FACE 15 RUE EDOUARD TIL - 94081", "stop_name": "UTRILLO"}, "geometry": {"type": "Point", "coordinates": [2.3844015918727153, 48.790200620228866]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "888588fc5deb725304e05eb23aae3fedcb6ac308", "fields": {"departement": "94", "stop_lat": 48.78819951255128, "code_postal": "94076", "stop_lon": 2.3754903577138555, "coord": [48.78819951255128, 2.3754903577138555], "stop_id": 4843513, "stop_desc": "133 AVENUE DU COLONEL FABIEN - 94076", "stop_name": "COLONEL FABIEN"}, "geometry": {"type": "Point", "coordinates": [2.3754903577138555, 48.78819951255128]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f9746b7d1f652103a88f42aaff6169cad6ee88e4", "fields": {"departement": "94", "stop_lat": 48.7855382719393, "code_postal": "94081", "stop_lon": 2.377936662476007, "coord": [48.7855382719393, 2.377936662476007], "stop_id": 4843515, "stop_desc": "78 AVENUE DU COLONEL FABIEN - 94081", "stop_name": "EDOUARD TREMBLAY"}, "geometry": {"type": "Point", "coordinates": [2.377936662476007, 48.7855382719393]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8e87011208f371c5418788d89f7c50f6f7ea0c50", "fields": {"departement": "75", "stop_lat": 48.83010047423811, "code_postal": "75113", "stop_lon": 2.3756573644191827, "coord": [48.83010047423811, 2.3756573644191827], "stop_id": 4843804, "stop_desc": "12-14 RUE DE TOLBIAC - 75113", "stop_name": "BIBLIOTHEQUE CHEVALERET"}, "geometry": {"type": "Point", "coordinates": [2.3756573644191827, 48.83010047423811]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d68cc985ddf2fa4d3061da435bb6a3cfb6bec70a", "fields": {"departement": "75", "stop_lat": 48.82451004472554, "code_postal": "75113", "stop_lon": 2.376007131149646, "coord": [48.82451004472554, 2.376007131149646], "stop_id": 4843807, "stop_desc": "5 BIS RUE DE PATAY - 75113", "stop_name": "REGNAULT"}, "geometry": {"type": "Point", "coordinates": [2.376007131149646, 48.82451004472554]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1108c0a18795385225dc37101a720b4b89f0d0b8", "fields": {"departement": "94", "stop_lat": 48.81530405440552, "code_postal": "94041", "stop_lon": 2.3832676062282143, "coord": [48.81530405440552, 2.3832676062282143], "stop_id": 4843811, "stop_desc": "114 AVENUE DANIELLE CASANOVA - 94041", "stop_name": "LEDRU ROLLIN"}, "geometry": {"type": "Point", "coordinates": [2.3832676062282143, 48.81530405440552]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "217999d327fe4ee08bc5f2026a7bc38425424071", "fields": {"departement": "94", "stop_lat": 48.81267861217987, "code_postal": "94041", "stop_lon": 2.385837300329046, "coord": [48.81267861217987, 2.385837300329046], "stop_id": 4843812, "stop_desc": "152 AVENUE DANIELLE CASANOVA - 94041", "stop_name": "VOLTAIRE"}, "geometry": {"type": "Point", "coordinates": [2.385837300329046, 48.81267861217987]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "43ed58355a1f89d3ee485a4dfe24e0981b5af455", "fields": {"departement": "94", "stop_lat": 48.805181752874724, "code_postal": "94041", "stop_lon": 2.38834750833391, "coord": [48.805181752874724, 2.38834750833391], "stop_id": 4843817, "stop_desc": "RUE AMEDEE HUON - 94041", "stop_name": "FORT D'IVRY"}, "geometry": {"type": "Point", "coordinates": [2.38834750833391, 48.805181752874724]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2e74f27de7d1bf89c7fd406d4b50064e5a78ce0f", "fields": {"departement": "94", "stop_lat": 48.8002302722686, "code_postal": "94081", "stop_lon": 2.3864242861741203, "coord": [48.8002302722686, 2.3864242861741203], "stop_id": 4843819, "stop_desc": "PLACE DE LA LIBERTE - 94081", "stop_name": "PLACE DE LA LIBERTE"}, "geometry": {"type": "Point", "coordinates": [2.3864242861741203, 48.8002302722686]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "51c58bab99389669f64315b1dc8fe8f9eaf057a0", "fields": {"departement": "94", "stop_lat": 48.78788118498327, "code_postal": "94081", "stop_lon": 2.3857732964043232, "coord": [48.78788118498327, 2.3857732964043232], "stop_id": 4843825, "stop_desc": "RUE EDOUARD TIL - 94081", "stop_name": "EDOUARD TIL"}, "geometry": {"type": "Point", "coordinates": [2.3857732964043232, 48.78788118498327]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "974c7bd69791798b39115e1b197cb9812157690e", "fields": {"departement": "94", "stop_lat": 48.790200620228866, "code_postal": "94081", "stop_lon": 2.3844015918727153, "coord": [48.790200620228866, 2.3844015918727153], "stop_id": 4843826, "stop_desc": "FACE 15 RUE EDOUARD TIL - 94081", "stop_name": "UTRILLO"}, "geometry": {"type": "Point", "coordinates": [2.3844015918727153, 48.790200620228866]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b1df22c87f2232003a27177b91aef295d928058e", "fields": {"departement": "94", "stop_lat": 48.77232889042314, "code_postal": "94081", "stop_lon": 2.368067762021552, "coord": [48.77232889042314, 2.368067762021552], "stop_id": 4843835, "stop_desc": "1 RUE DU MOULIN VERT - 94081", "stop_name": "MOULIN VERT"}, "geometry": {"type": "Point", "coordinates": [2.368067762021552, 48.77232889042314]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c8ffbc853f3655da25421f87e91145b79bc2bd67", "fields": {"departement": "93", "stop_lat": 48.90676356658909, "code_postal": "93008", "stop_lon": 2.446552780443455, "coord": [48.90676356658909, 2.446552780443455], "stop_id": 4889459, "stop_desc": "15 BOULEVARD MAURICE THOREZ - 93008", "stop_name": "MAURICE THOREZ"}, "geometry": {"type": "Point", "coordinates": [2.446552780443455, 48.90676356658909]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6e0cbc252f1ddba5bafdce3aa434c6f643bf6e8a", "fields": {"departement": "93", "stop_lat": 48.923581735322124, "code_postal": "93029", "stop_lon": 2.4613715689703417, "coord": [48.923581735322124, 2.4613715689703417], "stop_id": 4889471, "stop_desc": "AVENUE HENRI BARBUSSE - 93029", "stop_name": "DANIEL FERY"}, "geometry": {"type": "Point", "coordinates": [2.4613715689703417, 48.923581735322124]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8e56b5ccca33d74429f217bfdd03604619c9c73d", "fields": {"departement": "93", "stop_lat": 48.92631381258556, "code_postal": "93007", "stop_lon": 2.4696839333626395, "coord": [48.92631381258556, 2.4696839333626395], "stop_id": 4889477, "stop_desc": "FACE 124 AVENUE PAUL VAILLANT COUTURIER - 93007", "stop_name": "PIERRE MONTILLET"}, "geometry": {"type": "Point", "coordinates": [2.4696839333626395, 48.92631381258556]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "47fd372969c5531a10ee4d1cc4591859d02fbc22", "fields": {"departement": "93", "stop_lat": 48.926484956933145, "code_postal": "93007", "stop_lon": 2.469329770033911, "coord": [48.926484956933145, 2.469329770033911], "stop_id": 4889478, "stop_desc": "122 AVENUE PAUL VAILLANT COUTURIER - 93007", "stop_name": "PIERRE MONTILLET"}, "geometry": {"type": "Point", "coordinates": [2.469329770033911, 48.926484956933145]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4dda6fb432766d3f6233d7915461d5406af2c562", "fields": {"departement": "93", "stop_lat": 48.931381553795, "code_postal": "93005", "stop_lon": 2.4856963662922227, "coord": [48.931381553795, 2.4856963662922227], "stop_id": 4889486, "stop_desc": "17 RTE DES PETITS PONTS - 93005", "stop_name": "LA SABLIERE"}, "geometry": {"type": "Point", "coordinates": [2.4856963662922227, 48.931381553795]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "61f4f6d3f8fe353ded4199f80684d581e7bbde8b", "fields": {"departement": "93", "stop_lat": 48.91631840448515, "code_postal": "93029", "stop_lon": 2.444773012931289, "coord": [48.91631840448515, 2.444773012931289], "stop_id": 4889500, "stop_desc": "114 AVENUE CHARLES GIDE - 93029", "stop_name": "CHARLES GIDE"}, "geometry": {"type": "Point", "coordinates": [2.444773012931289, 48.91631840448515]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b10dba0b9ee45d07d25753673ed377e8f71551b4", "fields": {"departement": "93", "stop_lat": 48.918319618663716, "code_postal": "93029", "stop_lon": 2.4479271617152185, "coord": [48.918319618663716, 2.4479271617152185], "stop_id": 4889502, "stop_desc": "FACE 86 AVENUE HENRI BARBUSSE - 93029", "stop_name": "JANE JOYE"}, "geometry": {"type": "Point", "coordinates": [2.4479271617152185, 48.918319618663716]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5854a586983879af8299efc10694819b19be1646", "fields": {"departement": "93", "stop_lat": 48.923581735322124, "code_postal": "93029", "stop_lon": 2.4613715689703417, "coord": [48.923581735322124, 2.4613715689703417], "stop_id": 4889509, "stop_desc": "AVENUE HENRI BARBUSSE - 93029", "stop_name": "DANIEL FERY"}, "geometry": {"type": "Point", "coordinates": [2.4613715689703417, 48.923581735322124]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dd724837a823f37754c91aa688766abf9865648f", "fields": {"departement": "93", "stop_lat": 48.92712853010298, "code_postal": "93007", "stop_lon": 2.472441027496559, "coord": [48.92712853010298, 2.472441027496559], "stop_id": 4889518, "stop_desc": "84 AVENUE PAUL VAILLANT COUTURIER - 93007", "stop_name": "DANIELLE CASANOVA - PAUL VAILLANT-COUTURIER"}, "geometry": {"type": "Point", "coordinates": [2.472441027496559, 48.92712853010298]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6a9ccab67f869afce3ad67bd94b26f71ec6d68eb", "fields": {"departement": "93", "stop_lat": 48.928463917414284, "code_postal": "93007", "stop_lon": 2.4756360440448932, "coord": [48.928463917414284, 2.4756360440448932], "stop_id": 4889520, "stop_desc": "42 AVENUE PAUL VAILLANT COUTURIER - 93007", "stop_name": "QUEBEC"}, "geometry": {"type": "Point", "coordinates": [2.4756360440448932, 48.928463917414284]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3323264706be8e0048a644c860e636c5f42a13c1", "fields": {"departement": "93", "stop_lat": 48.92935800046463, "code_postal": "93007", "stop_lon": 2.4795528998155345, "coord": [48.92935800046463, 2.4795528998155345], "stop_id": 4889522, "stop_desc": "12 AVENUE PAUL VAILLANT COUTURIER - 93007", "stop_name": "ROND-POINT PIERRE SEMARD - PAUL VAILLANT-COUTURIER"}, "geometry": {"type": "Point", "coordinates": [2.4795528998155345, 48.92935800046463]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "30ca73d02431b3c83faea906c402dcc3518f3037", "fields": {"departement": "93", "stop_lat": 48.93178471941148, "code_postal": "93005", "stop_lon": 2.4866932345626394, "coord": [48.93178471941148, 2.4866932345626394], "stop_id": 4889525, "stop_desc": "R DES PETITS PONTS - 93005", "stop_name": "LA SABLIERE"}, "geometry": {"type": "Point", "coordinates": [2.4866932345626394, 48.93178471941148]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "38b130bdd64fa195a7d2eea0b274682b31292612", "fields": {"departement": "92", "stop_lat": 48.80013099330203, "code_postal": "92007", "stop_lon": 2.3178263283554, "coord": [48.80013099330203, 2.3178263283554], "stop_id": 4889631, "stop_desc": "21 AVENUE LOUIS PASTEUR - 92007", "stop_name": "COSSON - LONGUET"}, "geometry": {"type": "Point", "coordinates": [2.3178263283554, 48.80013099330203]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4ede512f8644028558d05d83b9ccc38ba5f0f592", "fields": {"departement": "92", "stop_lat": 48.795525376089955, "code_postal": "92007", "stop_lon": 2.3013399041826292, "coord": [48.795525376089955, 2.3013399041826292], "stop_id": 4889647, "stop_desc": "FACE 10 RUE DE LA REPUBLIQUE - 92007", "stop_name": "DAMPIERRE"}, "geometry": {"type": "Point", "coordinates": [2.3013399041826292, 48.795525376089955]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "93478b167df939c09a1a73af369764873322e0be", "fields": {"departement": "92", "stop_lat": 48.79763791138375, "code_postal": "92007", "stop_lon": 2.302644488159289, "coord": [48.79763791138375, 2.302644488159289], "stop_id": 4889650, "stop_desc": "AVENUE HENRI RAVERA - 92007", "stop_name": "ROSENBERG"}, "geometry": {"type": "Point", "coordinates": [2.302644488159289, 48.79763791138375]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9af999fd401681ee0aabde6e979f5bb958054048", "fields": {"departement": "92", "stop_lat": 48.785533285448516, "code_postal": "92014", "stop_lon": 2.310731823869322, "coord": [48.785533285448516, 2.310731823869322], "stop_id": 4889656, "stop_desc": "AVENUE DE MONTROUGE - 92014", "stop_name": "LES BAS COQUARTS"}, "geometry": {"type": "Point", "coordinates": [2.310731823869322, 48.785533285448516]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8e0e0a821c92a6adaddc2f55925733e816e9bfe9", "fields": {"departement": "75", "stop_lat": 48.82245759415938, "code_postal": "75114", "stop_lon": 2.3254810437249733, "coord": [48.82245759415938, 2.3254810437249733], "stop_id": 4890496, "stop_desc": "5 PL DU 25 AOUT 1944 - 75114", "stop_name": "PORTE D'ORLEANS-METRO"}, "geometry": {"type": "Point", "coordinates": [2.3254810437249733, 48.82245759415938]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "64683a6d401e948a93a680d59afb26c3c110de7f", "fields": {"departement": "92", "stop_lat": 48.79951155253117, "code_postal": "92007", "stop_lon": 2.322901271964075, "coord": [48.79951155253117, 2.322901271964075], "stop_id": 4890505, "stop_desc": "116 AVENUE ARISTIDE BRIAND - 92007", "stop_name": "CARNOT - ARISTIDE BRIAND"}, "geometry": {"type": "Point", "coordinates": [2.322901271964075, 48.79951155253117]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3a36821daaf948e1984b2d0b036ae5f20e366b7c", "fields": {"departement": "92", "stop_lat": 48.77446957980129, "code_postal": "92071", "stop_lon": 2.3130900241212315, "coord": [48.77446957980129, 2.3130900241212315], "stop_id": 4890516, "stop_desc": "146 AVENUE DU GENERAL LECLERC - 92071", "stop_name": "LES COTTAGES"}, "geometry": {"type": "Point", "coordinates": [2.3130900241212315, 48.77446957980129]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "471380651ce7aad33d1ce612a11dcf5e0d5169ae", "fields": {"departement": "92", "stop_lat": 48.770703432969064, "code_postal": "92002", "stop_lon": 2.3123167134725082, "coord": [48.770703432969064, 2.3123167134725082], "stop_id": 4890518, "stop_desc": "26 AV RAYMOND ARON - 92002", "stop_name": "LA FONTAINE"}, "geometry": {"type": "Point", "coordinates": [2.3123167134725082, 48.770703432969064]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b1c34882d0d8e2893bfac16f323eeaa385b8a5a0", "fields": {"departement": "92", "stop_lat": 48.76263134269084, "code_postal": "92002", "stop_lon": 2.308772169484832, "coord": [48.76263134269084, 2.308772169484832], "stop_id": 4890522, "stop_desc": "148 AVENUE ARISTIDE BRIAND - 92002", "stop_name": "GENERAL DE GAULLE - CROIX DE BERNY"}, "geometry": {"type": "Point", "coordinates": [2.308772169484832, 48.76263134269084]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "599cebbe4c2494f17be741f5c2409a9eed4ffbfe", "fields": {"departement": "92", "stop_lat": 48.75820876111079, "code_postal": "92002", "stop_lon": 2.3070481155055815, "coord": [48.75820876111079, 2.3070481155055815], "stop_id": 4890533, "stop_desc": "80 AVENUE ARISTIDE BRIAND - 92002", "stop_name": "FERNAND FENZY"}, "geometry": {"type": "Point", "coordinates": [2.3070481155055815, 48.75820876111079]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dec575e3eadbdfbbb3309800b207e95550204be2", "fields": {"departement": "91", "stop_lat": 48.740271136626134, "code_postal": "91689", "stop_lon": 2.3217217392188005, "coord": [48.740271136626134, 2.3217217392188005], "stop_id": 4890544, "stop_desc": "FACE 51 RUE DU CHEMIN DE LA VALLEE - 91689", "stop_name": "FRIBOULI"}, "geometry": {"type": "Point", "coordinates": [2.3217217392188005, 48.740271136626134]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "74f5a84e87042d3d3c696da6ee9d7be083c3cdd0", "fields": {"departement": "91", "stop_lat": 48.71556903984361, "code_postal": "91161", "stop_lon": 2.3099796752608137, "coord": [48.71556903984361, 2.3099796752608137], "stop_id": 4890555, "stop_desc": "RTE DE WISSOUS - 91161", "stop_name": "VIEILLE REMISE"}, "geometry": {"type": "Point", "coordinates": [2.3099796752608137, 48.71556903984361]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f11ef42f69419e5978c2a8cbbed940255308cfe5", "fields": {"departement": "91", "stop_lat": 48.707425732597464, "code_postal": "91689", "stop_lon": 2.3110432656858193, "coord": [48.707425732597464, 2.3110432656858193], "stop_id": 4890556, "stop_desc": "FACE 62 AVENUE MAZARIN - 91689", "stop_name": "CIMETIERE DE CHILLY-MAZARIN"}, "geometry": {"type": "Point", "coordinates": [2.3110432656858193, 48.707425732597464]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b78f583f94e991653b2b3c50a4625b98328c8691", "fields": {"departement": "91", "stop_lat": 48.69983848798071, "code_postal": "91161", "stop_lon": 2.307095580964295, "coord": [48.69983848798071, 2.307095580964295], "stop_id": 4890587, "stop_desc": "47 R HENRI BARBUSSE - 91161", "stop_name": "MAZARIN-RER"}, "geometry": {"type": "Point", "coordinates": [2.307095580964295, 48.69983848798071]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b5c343512e729d8ea35f632dc2d61a8707330181", "fields": {"departement": "91", "stop_lat": 48.738977729476964, "code_postal": "91689", "stop_lon": 2.3321043379272886, "coord": [48.738977729476964, 2.3321043379272886], "stop_id": 4890589, "stop_desc": "27 ROUTE DE MONTJEAN - 91689", "stop_name": "MONTJEAN"}, "geometry": {"type": "Point", "coordinates": [2.3321043379272886, 48.738977729476964]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9928643dc6ac97fe322f21e9d1469c6fbf808d75", "fields": {"departement": "94", "stop_lat": 48.80906595180364, "code_postal": "94003", "stop_lon": 2.326246107567719, "coord": [48.80906595180364, 2.326246107567719], "stop_id": 4890603, "stop_desc": "24 AVENUE ARISTIDE BRIAND - 94003", "stop_name": "VACHE NOIRE"}, "geometry": {"type": "Point", "coordinates": [2.326246107567719, 48.80906595180364]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e3cfb006297e81ca0041d9812c7bd8f2efcf1628", "fields": {"departement": "92", "stop_lat": 48.79951155253117, "code_postal": "92007", "stop_lon": 2.322901271964075, "coord": [48.79951155253117, 2.322901271964075], "stop_id": 4890606, "stop_desc": "116 AVENUE ARISTIDE BRIAND - 92007", "stop_name": "CARNOT - ARISTIDE BRIAND"}, "geometry": {"type": "Point", "coordinates": [2.322901271964075, 48.79951155253117]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "500613104f8dca0c63278ce749ba8661129a9838", "fields": {"departement": "92", "stop_lat": 48.79369610412017, "code_postal": "92007", "stop_lon": 2.3206038703652614, "coord": [48.79369610412017, 2.3206038703652614], "stop_id": 4890608, "stop_desc": "206-208 AVENUE ARISTIDE BRIAND - 92007", "stop_name": "PONT ROYAL - RER"}, "geometry": {"type": "Point", "coordinates": [2.3206038703652614, 48.79369610412017]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "008aeb85567e7e73320c39a46dbe250a786923a2", "fields": {"departement": "92", "stop_lat": 48.78596594872719, "code_postal": "92014", "stop_lon": 2.3170563365355727, "coord": [48.78596594872719, 2.3170563365355727], "stop_id": 4890610, "stop_desc": "12 BOULEVARD DU MARECHAL JOFFRE - 92014", "stop_name": "PLACE DE LA RESISTANCE - CHARLES DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.3170563365355727, 48.78596594872719]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e8b0459ee5c0f1e65569f222c7de9e0b67981ac7", "fields": {"departement": "92", "stop_lat": 48.77960179320402, "code_postal": "92014", "stop_lon": 2.313400434821077, "coord": [48.77960179320402, 2.313400434821077], "stop_id": 4890612, "stop_desc": "72 BOULEVARD DU MARECHAL JOFFRE - 92014", "stop_name": "BOURG-LA-REINE RER"}, "geometry": {"type": "Point", "coordinates": [2.313400434821077, 48.77960179320402]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a772a6a4935948fc19de424bd51db708e1aa48cd", "fields": {"departement": "92", "stop_lat": 48.760366045536514, "code_postal": "92002", "stop_lon": 2.3075770618196296, "coord": [48.760366045536514, 2.3075770618196296], "stop_id": 4890618, "stop_desc": "105 AVENUE ARISTIDE BRIAND - 92002", "stop_name": "MORTEAUX"}, "geometry": {"type": "Point", "coordinates": [2.3075770618196296, 48.760366045536514]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3a65284550c4478e564938da235f7252ffbd4953", "fields": {"departement": "94", "stop_lat": 48.81175347724286, "code_postal": "94037", "stop_lon": 2.3460592717364808, "coord": [48.81175347724286, 2.3460592717364808], "stop_id": 3792999, "stop_desc": "FACE 70 AV RASPAIL - 94037", "stop_name": "BOUT DU RANG - PICASSO"}, "geometry": {"type": "Point", "coordinates": [2.3460592717364808, 48.81175347724286]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f1ecb3eee1d8dc1741b8321860053023ce8cb7ce", "fields": {"departement": "94", "stop_lat": 48.81688469793853, "code_postal": "94037", "stop_lon": 2.3534638078265386, "coord": [48.81688469793853, 2.3534638078265386], "stop_id": 3793002, "stop_desc": "3-5 AVENUE GALLIENI - 94037", "stop_name": "VERDUN"}, "geometry": {"type": "Point", "coordinates": [2.3534638078265386, 48.81688469793853]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f6a952b30adb0e83945aeb0f52d5644f22d2442b", "fields": {"departement": "93", "stop_lat": 48.90019369599354, "code_postal": "93053", "stop_lon": 2.4649415480257995, "coord": [48.90019369599354, 2.4649415480257995], "stop_id": 3798442, "stop_desc": "71 AVENUE GALLIENI - 93053", "stop_name": "PETIT NOISY"}, "geometry": {"type": "Point", "coordinates": [2.4649415480257995, 48.90019369599354]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3bb1421fd2fa1ce3f57b264288535f31f1295802", "fields": {"departement": "93", "stop_lat": 48.90765542904627, "code_postal": "93008", "stop_lon": 2.453780435927193, "coord": [48.90765542904627, 2.453780435927193], "stop_id": 3798448, "stop_desc": "FACE 247 AVENUE PAUL VAILLANT COUTURIER - 93008", "stop_name": "JEAN ROSTAND"}, "geometry": {"type": "Point", "coordinates": [2.453780435927193, 48.90765542904627]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a319894d58e20405024ecadcd16f01294758f474", "fields": {"departement": "93", "stop_lat": 48.90652700036462, "code_postal": "93008", "stop_lon": 2.4496742930127837, "coord": [48.90652700036462, 2.4496742930127837], "stop_id": 3798450, "stop_desc": "RUE CARNOT - 93008", "stop_name": "BOBIGNY - PABLO PICASSO"}, "geometry": {"type": "Point", "coordinates": [2.4496742930127837, 48.90652700036462]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2d9309217acedd44964332efa526228afa313298", "fields": {"departement": "93", "stop_lat": 48.90698613782764, "code_postal": "93008", "stop_lon": 2.4387686025565873, "coord": [48.90698613782764, 2.4387686025565873], "stop_id": 3798453, "stop_desc": "142 AVENUE JEAN JAURES - 93008", "stop_name": "LIBERATION"}, "geometry": {"type": "Point", "coordinates": [2.4387686025565873, 48.90698613782764]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "68df987a2ca3cc0aada5ec6629873af45cec59fb", "fields": {"departement": "93", "stop_lat": 48.906761681704474, "code_postal": "93008", "stop_lon": 2.4385091301190283, "coord": [48.906761681704474, 2.4385091301190283], "stop_id": 3798454, "stop_desc": "FACE 142 AVENUE JEAN JAURES - 93008", "stop_name": "LIBERATION"}, "geometry": {"type": "Point", "coordinates": [2.4385091301190283, 48.906761681704474]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fa2022421033422fd1be31f1149f3a067ab93473", "fields": {"departement": "93", "stop_lat": 48.90973714291589, "code_postal": "93008", "stop_lon": 2.4376287301070017, "coord": [48.90973714291589, 2.4376287301070017], "stop_id": 3798455, "stop_desc": "188 AVENUE JEAN JAURES - 93008", "stop_name": "LA FERME"}, "geometry": {"type": "Point", "coordinates": [2.4376287301070017, 48.90973714291589]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f4980f728b834aa84ceb0567ec283bf62054c8c7", "fields": {"departement": "93", "stop_lat": 48.90961161086947, "code_postal": "93008", "stop_lon": 2.4372876357087225, "coord": [48.90961161086947, 2.4372876357087225], "stop_id": 3798456, "stop_desc": "FACE 188 AVENUE JEAN JAURES - 93008", "stop_name": "LA FERME"}, "geometry": {"type": "Point", "coordinates": [2.4372876357087225, 48.90961161086947]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "01c8cba424a2c7db73b73513cf4b991dc4f34a34", "fields": {"departement": "93", "stop_lat": 48.912803937330025, "code_postal": "93008", "stop_lon": 2.434962234138841, "coord": [48.912803937330025, 2.434962234138841], "stop_id": 3798458, "stop_desc": "RUE DE STALINGRAD - 93008", "stop_name": "ESCADRILLE NORMANDIE-NIEMEN"}, "geometry": {"type": "Point", "coordinates": [2.434962234138841, 48.912803937330025]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "23df27211660e8977eac5adb47e1c155c4108ebd", "fields": {"departement": "93", "stop_lat": 48.91909197580446, "code_postal": "93029", "stop_lon": 2.4143420096346087, "coord": [48.91909197580446, 2.4143420096346087], "stop_id": 3798462, "stop_desc": "286 RUE DE STALINGRAD - 93029", "stop_name": "MAURICE LACHATRE"}, "geometry": {"type": "Point", "coordinates": [2.4143420096346087, 48.91909197580446]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ca197824eafcc527ed78b03f84b7f812a802028f", "fields": {"departement": "93", "stop_lat": 48.931817367638416, "code_postal": "93066", "stop_lon": 2.3782152526584133, "coord": [48.931817367638416, 2.3782152526584133], "stop_id": 3798473, "stop_desc": "63 RUE DE SAINT DENIS - 93066", "stop_name": "COSMONAUTES"}, "geometry": {"type": "Point", "coordinates": [2.3782152526584133, 48.931817367638416]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5395f1ad088bfd1db565d7dcae9772dfda9f6a05", "fields": {"departement": "93", "stop_lat": 48.93757349362246, "code_postal": "93066", "stop_lon": 2.361645504871931, "coord": [48.93757349362246, 2.361645504871931], "stop_id": 3798479, "stop_desc": "RUE EDOUARD VAILLANT - 93066", "stop_name": "BASILIQUE DE SAINT-DENIS"}, "geometry": {"type": "Point", "coordinates": [2.361645504871931, 48.93757349362246]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b65b1376b007cf7a5fca742e87099a882d55b70d", "fields": {"departement": "93", "stop_lat": 48.93725177469419, "code_postal": "93066", "stop_lon": 2.3500502359001296, "coord": [48.93725177469419, 2.3500502359001296], "stop_id": 3798482, "stop_desc": "FACE46 BIS BOULEVARD JULES GUESDE - 93066", "stop_name": "THEATRE GERARD PHILIPE"}, "geometry": {"type": "Point", "coordinates": [2.3500502359001296, 48.93725177469419]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "532c046fb56bd410904ab7a74ea31f824e7b100a", "fields": {"departement": "93", "stop_lat": 48.93567973727426, "code_postal": "93039", "stop_lon": 2.3397646087114214, "coord": [48.93567973727426, 2.3397646087114214], "stop_id": 3798487, "stop_desc": "1 R MECHIN - 93039", "stop_name": "L'ILE-SAINT-DENIS"}, "geometry": {"type": "Point", "coordinates": [2.3397646087114214, 48.93567973727426]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7038a9b3b9898defe3befaf067e740c1764d2ce0", "fields": {"departement": "92", "stop_lat": 48.93481656253936, "code_postal": "92078", "stop_lon": 2.3267377244265623, "coord": [48.93481656253936, 2.3267377244265623], "stop_id": 3798491, "stop_desc": "0 AV DE VERDUN - 92078", "stop_name": "LA NOUE"}, "geometry": {"type": "Point", "coordinates": [2.3267377244265623, 48.93481656253936]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "801d07ee7ce6a8f2593f026bbba8a8cb25ff7b97", "fields": {"departement": "92", "stop_lat": 48.933132709126006, "code_postal": "92036", "stop_lon": 2.3072461782928078, "coord": [48.933132709126006, 2.3072461782928078], "stop_id": 3798497, "stop_desc": "0 AV DU GENERAL DE GAULLE - 92036", "stop_name": "GARE DE GENNEVILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.3072461782928078, 48.933132709126006]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ba07503fea4f845e598a0dd033a9eaa6c313f5be", "fields": {"departement": "92", "stop_lat": 48.9317335355189, "code_postal": "92036", "stop_lon": 2.2884512588242454, "coord": [48.9317335355189, 2.2884512588242454], "stop_id": 3798502, "stop_desc": "28 AV LUCIEN LANTERNIER - 92036", "stop_name": "LE LUTH"}, "geometry": {"type": "Point", "coordinates": [2.2884512588242454, 48.9317335355189]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "22fae0de674de8a8f988b00abd8dc5ae9dba96d5", "fields": {"departement": "75", "stop_lat": 48.87153877146487, "code_postal": "75109", "stop_lon": 2.3433582449134955, "coord": [48.87153877146487, 2.3433582449134955], "stop_id": 3807571, "stop_desc": "32 BOULEVARD POISSONNIERE - 75109", "stop_name": "GRANDS BOULEVARDS"}, "geometry": {"type": "Point", "coordinates": [2.3433582449134955, 48.87153877146487]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f6ef3ca28558f952f39a1db0834fb4d6c0f68d64", "fields": {"departement": "75", "stop_lat": 48.8517844515023, "code_postal": "75106", "stop_lon": 2.3307040210995797, "coord": [48.8517844515023, 2.3307040210995797], "stop_id": 3807584, "stop_desc": "18-20 RUE DU VIEUX COLOMBIER - 75106", "stop_name": "MICHEL DEBRE"}, "geometry": {"type": "Point", "coordinates": [2.3307040210995797, 48.8517844515023]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9bd26ee8f62d0132d674605ca0e16e762657c70c", "fields": {"departement": "75", "stop_lat": 48.84473518742932, "code_postal": "75115", "stop_lon": 2.3094351792376666, "coord": [48.84473518742932, 2.3094351792376666], "stop_id": 3807590, "stop_desc": "20 RUE LECOURBE - 75115", "stop_name": "SEVRES - LECOURBE"}, "geometry": {"type": "Point", "coordinates": [2.3094351792376666, 48.84473518742932]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "86d78bbbcb7d98b2cbb51774536075aa3d7d1852", "fields": {"departement": "75", "stop_lat": 48.84396164200655, "code_postal": "75115", "stop_lon": 2.3069028723393976, "coord": [48.84396164200655, 2.3069028723393976], "stop_id": 3807592, "stop_desc": "54 RUE LECOURBE - 75115", "stop_name": "VOLONTAIRES - LECOURBE"}, "geometry": {"type": "Point", "coordinates": [2.3069028723393976, 48.84396164200655]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "79ed2dd66bc7eb4cf286ad9d72145501717cb4e9", "fields": {"departement": "75", "stop_lat": 48.8425042999016, "code_postal": "75115", "stop_lon": 2.3019609713401774, "coord": [48.8425042999016, 2.3019609713401774], "stop_id": 3807593, "stop_desc": "118-120 RUE LECOURBE - 75115", "stop_name": "CAMBRONNE - LECOURBE"}, "geometry": {"type": "Point", "coordinates": [2.3019609713401774, 48.8425042999016]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f4dd9e31bcc49ba7ee362d3b57d85154a4ad4906", "fields": {"departement": "75", "stop_lat": 48.838446179632186, "code_postal": "75115", "stop_lon": 2.2885390097212523, "coord": [48.838446179632186, 2.2885390097212523], "stop_id": 3807598, "stop_desc": "276-278 R LECOURBE - 75115", "stop_name": "DURANTON"}, "geometry": {"type": "Point", "coordinates": [2.2885390097212523, 48.838446179632186]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "00d4b626922a12ee15715de8bd8a7b11a060fb7b", "fields": {"departement": "92", "stop_lat": 48.831836707153386, "code_postal": "92040", "stop_lon": 2.2804315068912797, "coord": [48.831836707153386, 2.2804315068912797], "stop_id": 3807608, "stop_desc": "FACE 2 BIS RUE JEANNE D'ARC - 92040", "stop_name": "PORTE D'ISSY"}, "geometry": {"type": "Point", "coordinates": [2.2804315068912797, 48.831836707153386]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "50e736dea992b52ebc4f7f8923e6e264d54746ff", "fields": {"departement": "75", "stop_lat": 48.83569519876966, "code_postal": "75115", "stop_lon": 2.286662775559932, "coord": [48.83569519876966, 2.286662775559932], "stop_id": 3807610, "stop_desc": "69 RUE DESNOUETTES - 75115", "stop_name": "DESNOUETTES - VASCO DE GAMA"}, "geometry": {"type": "Point", "coordinates": [2.286662775559932, 48.83569519876966]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7cc439a9527c357091526eba21ff745dc5f58ec8", "fields": {"departement": "75", "stop_lat": 48.83558092732886, "code_postal": "75115", "stop_lon": 2.2931162004514722, "coord": [48.83558092732886, 2.2931162004514722], "stop_id": 3807613, "stop_desc": "383 RUE DE VAUGIRARD - 75115", "stop_name": "HOPITAL DE VAUGIRARD"}, "geometry": {"type": "Point", "coordinates": [2.2931162004514722, 48.83558092732886]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2eb6c9925a9220671e6c92e41d2792ade95479a8", "fields": {"departement": "75", "stop_lat": 48.85826452640826, "code_postal": "75106", "stop_lon": 2.333713341644251, "coord": [48.85826452640826, 2.333713341644251], "stop_id": 3807624, "stop_desc": "FACE 21 QUAI MALAQUAIS - 75106", "stop_name": "PONT DU CARROUSEL - QUAI VOLTAIRE"}, "geometry": {"type": "Point", "coordinates": [2.333713341644251, 48.85826452640826]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "08ce0393208a5117a1ad71d9877f44bb3de73e8f", "fields": {"departement": "75", "stop_lat": 48.87933042390682, "code_postal": "75109", "stop_lon": 2.3480465314325087, "coord": [48.87933042390682, 2.3480465314325087], "stop_id": 3811226, "stop_desc": "59 RUE DE MAUBEUGE - 75109", "stop_name": "CONDORCET"}, "geometry": {"type": "Point", "coordinates": [2.3480465314325087, 48.87933042390682]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "45a4753133f42f5a6ee9e1352fa11f71c7494384", "fields": {"departement": "75", "stop_lat": 48.87446877702517, "code_postal": "75109", "stop_lon": 2.3391349035653084, "coord": [48.87446877702517, 2.3391349035653084], "stop_id": 3811229, "stop_desc": "RUE LE PELETIER - 75109", "stop_name": "LE PELETIER - HAUSSMANN"}, "geometry": {"type": "Point", "coordinates": [2.3391349035653084, 48.87446877702517]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "99aaed4d75646d32a508ef92f219db05efd620d0", "fields": {"departement": "75", "stop_lat": 48.86672008014077, "code_postal": "75108", "stop_lon": 2.3175289269176997, "coord": [48.86672008014077, 2.3175289269176997], "stop_id": 3811238, "stop_desc": "AVENUE DES CHAMPS ELYSEES - 75108", "stop_name": "CONCORDE - COURS LA REINE"}, "geometry": {"type": "Point", "coordinates": [2.3175289269176997, 48.86672008014077]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6135d5b3f172675081f81da4cec2ea19bc246a0b", "fields": {"departement": "75", "stop_lat": 48.86803149252129, "code_postal": "75108", "stop_lon": 2.3134687431580963, "coord": [48.86803149252129, 2.3134687431580963], "stop_id": 3811240, "stop_desc": "AVENUE DES CHAMPS ELYSEES - 75108", "stop_name": "CHAMPS-ELYSEES - CLEMENCEAU"}, "geometry": {"type": "Point", "coordinates": [2.3134687431580963, 48.86803149252129]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "56e14345fd286cca1affba95888961a65a1e64c5", "fields": {"departement": "75", "stop_lat": 48.86731087606469, "code_postal": "75108", "stop_lon": 2.306371535143338, "coord": [48.86731087606469, 2.306371535143338], "stop_id": 3811244, "stop_desc": "35-37 AVENUE MONTAIGNE - 75108", "stop_name": "MONTAIGNE - FRANCOIS 1ER"}, "geometry": {"type": "Point", "coordinates": [2.306371535143338, 48.86731087606469]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6751e8a4c4b094c33815e8707c90d0028907a6e6", "fields": {"departement": "75", "stop_lat": 48.856937478832926, "code_postal": "75107", "stop_lon": 2.29960847722716, "coord": [48.856937478832926, 2.29960847722716], "stop_id": 3811255, "stop_desc": "AVENUE JOSEPH BOUVARD - 75107", "stop_name": "RAPP - LA BOURDONNAIS"}, "geometry": {"type": "Point", "coordinates": [2.29960847722716, 48.856937478832926]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6016a953a7467019260ff73c49f877771cfcf2f7", "fields": {"departement": "75", "stop_lat": 48.846938281719225, "code_postal": "75115", "stop_lon": 2.2858756095752795, "coord": [48.846938281719225, 2.2858756095752795], "stop_id": 3811267, "stop_desc": "85 RUE SAINT-CHARLES - 75115", "stop_name": "CHARLES MICHELS"}, "geometry": {"type": "Point", "coordinates": [2.2858756095752795, 48.846938281719225]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d925095dce661818cc7760607abec733552b2207", "fields": {"departement": "75", "stop_lat": 48.83909053174574, "code_postal": "75115", "stop_lon": 2.2822208095504717, "coord": [48.83909053174574, 2.2822208095504717], "stop_id": 3811270, "stop_desc": "170 RUE DE LOURMEL - 75115", "stop_name": "LOURMEL - FELIX FAURE"}, "geometry": {"type": "Point", "coordinates": [2.2822208095504717, 48.83909053174574]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a20ccd1ea7d4869752d5a4b7df89f1794f6166bb", "fields": {"departement": "75", "stop_lat": 48.837281719828525, "code_postal": "75115", "stop_lon": 2.2774302365424126, "coord": [48.837281719828525, 2.2774302365424126], "stop_id": 3811275, "stop_desc": "241-243 RUE SAINT CHARLES - 75115", "stop_name": "PLACE BALARD"}, "geometry": {"type": "Point", "coordinates": [2.2774302365424126, 48.837281719828525]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f42950a4a536559a128eb3208e417804f00398e4", "fields": {"departement": "75", "stop_lat": 48.83799070116469, "code_postal": "75115", "stop_lon": 2.2754007513995216, "coord": [48.83799070116469, 2.2754007513995216], "stop_id": 3811280, "stop_desc": "56 RUE LEBLANC - 75115", "stop_name": "LEBLANC - DELBARRE"}, "geometry": {"type": "Point", "coordinates": [2.2754007513995216, 48.83799070116469]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "af1b6e671aef149ffc8e99eac67234848a6a8ec5", "fields": {"departement": "75", "stop_lat": 48.871332126753245, "code_postal": "75109", "stop_lon": 2.3325544120051322, "coord": [48.871332126753245, 2.3325544120051322], "stop_id": 3811286, "stop_desc": "8 RUE HALEVY - 75109", "stop_name": "OPERA"}, "geometry": {"type": "Point", "coordinates": [2.3325544120051322, 48.871332126753245]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a09744ee844df56f49c49672a857bd199e39a69e", "fields": {"departement": "75", "stop_lat": 48.87871842290168, "code_postal": "75110", "stop_lon": 2.3552272595494315, "coord": [48.87871842290168, 2.3552272595494315], "stop_id": 3811292, "stop_desc": "142 RUE LA FAYETTE - 75110", "stop_name": "LA FAYETTE - MAGENTA"}, "geometry": {"type": "Point", "coordinates": [2.3552272595494315, 48.87871842290168]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9e02db6baf6d130b7f59056a4000e18fc01918a3", "fields": {"departement": "75", "stop_lat": 48.859199141976376, "code_postal": "75101", "stop_lon": 2.3427847194148588, "coord": [48.859199141976376, 2.3427847194148588], "stop_id": 3812921, "stop_desc": "RUE DE LA MONNAIE - 75101", "stop_name": "PONT NEUF - QUAI DU LOUVRE"}, "geometry": {"type": "Point", "coordinates": [2.3427847194148588, 48.859199141976376]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "530b93e52808ae76a652d88d2d897e8de88aaf6b", "fields": {"departement": "75", "stop_lat": 48.85559527709221, "code_postal": "75106", "stop_lon": 2.340142086729639, "coord": [48.85559527709221, 2.340142086729639], "stop_id": 3812924, "stop_desc": "1 RUE DAUPHINE - 75106", "stop_name": "PONT NEUF - QUAI DES GRANDS AUGUSTINS"}, "geometry": {"type": "Point", "coordinates": [2.340142086729639, 48.85559527709221]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "89594bc03954c1318d690f21e0f0a8e43e92e18b", "fields": {"departement": "75", "stop_lat": 48.85424719280736, "code_postal": "75106", "stop_lon": 2.3380309918243136, "coord": [48.85424719280736, 2.3380309918243136], "stop_id": 3812925, "stop_desc": "60-62 RUE MAZARINE - 75106", "stop_name": "MAZARINE"}, "geometry": {"type": "Point", "coordinates": [2.3380309918243136, 48.85424719280736]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3afab1b513c482c6c33ac313fea76ed70e48855a", "fields": {"departement": "75", "stop_lat": 48.85156893064887, "code_postal": "75106", "stop_lon": 2.337881145081453, "coord": [48.85156893064887, 2.337881145081453], "stop_id": 3812927, "stop_desc": "10 PLACE SAINT SULPICE - 75106", "stop_name": "EGLISE SAINT-SULPICE"}, "geometry": {"type": "Point", "coordinates": [2.337881145081453, 48.85156893064887]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e3ef6c1b33634c9c4bd8d82e3a09ab5dcd7a8ba3", "fields": {"departement": "75", "stop_lat": 48.85223383948741, "code_postal": "75106", "stop_lon": 2.330976343440543, "coord": [48.85223383948741, 2.330976343440543], "stop_id": 3812929, "stop_desc": "49-51 RUE DU FOUR - 75106", "stop_name": "MICHEL DEBRE"}, "geometry": {"type": "Point", "coordinates": [2.330976343440543, 48.85223383948741]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f127561bf79e09ca5e7c0269f4a83348373b1531", "fields": {"departement": "75", "stop_lat": 48.84868281900701, "code_postal": "75107", "stop_lon": 2.3208313468452886, "coord": [48.84868281900701, 2.3208313468452886], "stop_id": 3812932, "stop_desc": "56 RUE DE SEVRES - 75107", "stop_name": "VANEAU - SAINT-ROMAIN"}, "geometry": {"type": "Point", "coordinates": [2.3208313468452886, 48.84868281900701]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "622c82ea03e5099436f3dbf4aab72d1782577684", "fields": {"departement": "75", "stop_lat": 48.84203604439376, "code_postal": "75115", "stop_lon": 2.2990337900210607, "coord": [48.84203604439376, 2.2990337900210607], "stop_id": 3812938, "stop_desc": "FACE 12 RUE PETEL - 75115", "stop_name": "MAIRIE DU 15E"}, "geometry": {"type": "Point", "coordinates": [2.2990337900210607, 48.84203604439376]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "044679a514872b2820b58f4e969590171da160b7", "fields": {"departement": "75", "stop_lat": 48.84357109451511, "code_postal": "75115", "stop_lon": 2.2937357699636536, "coord": [48.84357109451511, 2.2937357699636536], "stop_id": 3812942, "stop_desc": "7 RUE MADEMOISELLE - 75115", "stop_name": "FELIX FAURE"}, "geometry": {"type": "Point", "coordinates": [2.2937357699636536, 48.84357109451511]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4239cda17685134805ca98cc5240bc48df9e6b79", "fields": {"departement": "75", "stop_lat": 48.84400145379661, "code_postal": "75106", "stop_lon": 2.3384393419561365, "coord": [48.84400145379661, 2.3384393419561365], "stop_id": 3812970, "stop_desc": "3 RUE AUGUSTE COMTE - 75106", "stop_name": "AUGUSTE COMTE"}, "geometry": {"type": "Point", "coordinates": [2.3384393419561365, 48.84400145379661]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b93cafc0413f14422a81ef57bbbb9d0140051558", "fields": {"departement": "75", "stop_lat": 48.843794538635784, "code_postal": "75106", "stop_lon": 2.330214827150182, "coord": [48.843794538635784, 2.330214827150182], "stop_id": 3812973, "stop_desc": "22-24 RUE VAVIN - 75106", "stop_name": "BREA - NOTRE-DAME-DES-CHAMPS"}, "geometry": {"type": "Point", "coordinates": [2.330214827150182, 48.843794538635784]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "506746ac6bdfa7184b69de2779a95f4682cb9a75", "fields": {"departement": "75", "stop_lat": 48.84248225530111, "code_postal": "75106", "stop_lon": 2.3286355034590827, "coord": [48.84248225530111, 2.3286355034590827], "stop_id": 3812974, "stop_desc": "103 BOULEVARD DU MONTPARNASSE - 75106", "stop_name": "VAVIN"}, "geometry": {"type": "Point", "coordinates": [2.3286355034590827, 48.84248225530111]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b5355b43ef25cf263047887297887d8d79d49bea", "fields": {"departement": "75", "stop_lat": 48.84375813058096, "code_postal": "75106", "stop_lon": 2.32465920663277, "coord": [48.84375813058096, 2.32465920663277], "stop_id": 3812975, "stop_desc": "71 BOULEVARD DU MONTPARNASSE - 75106", "stop_name": "PLACE DU 18 JUIN 1940"}, "geometry": {"type": "Point", "coordinates": [2.32465920663277, 48.84375813058096]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cca948eb382eee2abfc95b1f7eed87d43ad982d5", "fields": {"departement": "75", "stop_lat": 48.851422903990496, "code_postal": "75107", "stop_lon": 2.314211770978317, "coord": [48.851422903990496, 2.314211770978317], "stop_id": 3812982, "stop_desc": "AVENUE DE VILLARS - 75107", "stop_name": "SAINT-FRANCOIS XAVIER"}, "geometry": {"type": "Point", "coordinates": [2.314211770978317, 48.851422903990496]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d7eb0c0c49ad0844ee441630cf08cc0bf8291ef8", "fields": {"departement": "75", "stop_lat": 48.85430600663912, "code_postal": "75107", "stop_lon": 2.305997932351291, "coord": [48.85430600663912, 2.305997932351291], "stop_id": 3812986, "stop_desc": "5 PL DE L'ECOLE MILITAIRE - 75107", "stop_name": "ECOLE MILITAIRE"}, "geometry": {"type": "Point", "coordinates": [2.305997932351291, 48.85430600663912]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8ee6c3882d554fc08346c5d3127ccca4c40e7e87", "fields": {"departement": "75", "stop_lat": 48.861149770286154, "code_postal": "75116", "stop_lon": 2.291582475434109, "coord": [48.861149770286154, 2.291582475434109], "stop_id": 3812995, "stop_desc": "AVENUE DES NATIONS-UNIES - 75116", "stop_name": "VARSOVIE"}, "geometry": {"type": "Point", "coordinates": [2.291582475434109, 48.861149770286154]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6091f91f098c0ee1ba1710b319b4c670879c2ac1", "fields": {"departement": "75", "stop_lat": 48.86606597659639, "code_postal": "75116", "stop_lon": 2.2918642198736587, "coord": [48.86606597659639, 2.2918642198736587], "stop_id": 3812999, "stop_desc": "18 RUE BOISSIERE - 75116", "stop_name": "LUBECK"}, "geometry": {"type": "Point", "coordinates": [2.2918642198736587, 48.86606597659639]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "955e5bfb1fa68bc63ab7039625e66a97a71d838a", "fields": {"departement": "75", "stop_lat": 48.865185655355006, "code_postal": "75116", "stop_lon": 2.2930365131841, "coord": [48.865185655355006, 2.2930365131841], "stop_id": 3813000, "stop_desc": "7 RUE BOISSIERE - 75116", "stop_name": "LUBECK"}, "geometry": {"type": "Point", "coordinates": [2.2930365131841, 48.865185655355006]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9b61279235a65591f002f6dc17119b140a57bf65", "fields": {"departement": "75", "stop_lat": 48.86695478755065, "code_postal": "75116", "stop_lon": 2.2894658250786595, "coord": [48.86695478755065, 2.2894658250786595], "stop_id": 3813002, "stop_desc": "35-37 RUE BOISSIERE - 75116", "stop_name": "KLEBER - BOISSIERE"}, "geometry": {"type": "Point", "coordinates": [2.2894658250786595, 48.86695478755065]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "60cf7f9bf93621b6efff0da2c87687e1737eac56", "fields": {"departement": "75", "stop_lat": 48.87431321441946, "code_postal": "75116", "stop_lon": 2.284268010432452, "coord": [48.87431321441946, 2.284268010432452], "stop_id": 3813008, "stop_desc": "130-132 AVENUE DE MALAKOFF - 75116", "stop_name": "ALPHAND"}, "geometry": {"type": "Point", "coordinates": [2.284268010432452, 48.87431321441946]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6945ce40f993c2e5faede3745bfcc8a64068d257", "fields": {"departement": "92", "stop_lat": 48.88481078773734, "code_postal": "92051", "stop_lon": 2.26765896400631, "coord": [48.88481078773734, 2.26765896400631], "stop_id": 3813019, "stop_desc": "FACE 149 AVENUE ACHILLE PERETTI OU DU ROULE - 92051", "stop_name": "SAINTE-FOY"}, "geometry": {"type": "Point", "coordinates": [2.26765896400631, 48.88481078773734]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2df77dc373b12676dec7a8052ba6f579d7fac5b7", "fields": {"departement": "92", "stop_lat": 48.88786395669064, "code_postal": "92051", "stop_lon": 2.2635254831395835, "coord": [48.88786395669064, 2.2635254831395835], "stop_id": 3813021, "stop_desc": "50 AVENUE SAINTE-FOY - 92051", "stop_name": "CHATEAU"}, "geometry": {"type": "Point", "coordinates": [2.2635254831395835, 48.88786395669064]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "53dfcc3633e9d994f3433d3042b01298331ffac4", "fields": {"departement": "75", "stop_lat": 48.85507589362406, "code_postal": "75107", "stop_lon": 2.2960278467667523, "coord": [48.85507589362406, 2.2960278467667523], "stop_id": 3813045, "stop_desc": "AVENUE JOSEPH BOUVARD - 75107", "stop_name": "CHAMP DE MARS"}, "geometry": {"type": "Point", "coordinates": [2.2960278467667523, 48.85507589362406]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6334365a5d1fab90e25d07f29bdb6a4056ada0ed", "fields": {"departement": "75", "stop_lat": 48.85412622900593, "code_postal": "75107", "stop_lon": 2.305889085070191, "coord": [48.85412622900593, 2.305889085070191], "stop_id": 3813050, "stop_desc": "PLACE DE L'ECOLE MILITAIRE - 75107", "stop_name": "ECOLE MILITAIRE"}, "geometry": {"type": "Point", "coordinates": [2.305889085070191, 48.85412622900593]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "933b5b43528d595ca86f5ead18f828dd957d66e8", "fields": {"departement": "75", "stop_lat": 48.85430600663912, "code_postal": "75107", "stop_lon": 2.305997932351291, "coord": [48.85430600663912, 2.305997932351291], "stop_id": 3813051, "stop_desc": "5 PL DE L'ECOLE MILITAIRE - 75107", "stop_name": "ECOLE MILITAIRE"}, "geometry": {"type": "Point", "coordinates": [2.305997932351291, 48.85430600663912]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f2865196e093ddc6b44236eb18afe44086025be6", "fields": {"departement": "75", "stop_lat": 48.85301242148468, "code_postal": "75107", "stop_lon": 2.3084093030670783, "coord": [48.85301242148468, 2.3084093030670783], "stop_id": 3813053, "stop_desc": "19 AVENUE DUQUESNE - 75107", "stop_name": "DUQUESNE - LOWENDAL"}, "geometry": {"type": "Point", "coordinates": [2.3084093030670783, 48.85301242148468]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "052de71055cc530fa5468c02e8c6b86b60509175", "fields": {"departement": "75", "stop_lat": 48.847369889708794, "code_postal": "75107", "stop_lon": 2.3160519577082312, "coord": [48.847369889708794, 2.3160519577082312], "stop_id": 3813058, "stop_desc": "56 BOULEVARD DES INVALIDES - 75107", "stop_name": "DUROC"}, "geometry": {"type": "Point", "coordinates": [2.3160519577082312, 48.847369889708794]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fb9e03bde4e9932fd04753f0e9e36f97acf97d9b", "fields": {"departement": "75", "stop_lat": 48.85259344198745, "code_postal": "75106", "stop_lon": 2.3334277286474445, "coord": [48.85259344198745, 2.3334277286474445], "stop_id": 3813064, "stop_desc": "31-33 RUE DU FOUR - 75106", "stop_name": "BONAPARTE - SAINT-GERMAIN"}, "geometry": {"type": "Point", "coordinates": [2.3334277286474445, 48.85259344198745]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9739e1970836b122fa135a40af06772bec5ace39", "fields": {"departement": "75", "stop_lat": 48.85140439083716, "code_postal": "75104", "stop_lon": 2.3629259995215057, "coord": [48.85140439083716, 2.3629259995215057], "stop_id": 3813076, "stop_desc": "13 BOULEVARD HENRI IV - 75104", "stop_name": "SULLY - MORLAND"}, "geometry": {"type": "Point", "coordinates": [2.3629259995215057, 48.85140439083716]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6bb82cba6001974919081a45e0270ff41bf1ede3", "fields": {"departement": "75", "stop_lat": 48.84598203749001, "code_postal": "75112", "stop_lon": 2.3739805748450498, "coord": [48.84598203749001, 2.3739805748450498], "stop_id": 3813083, "stop_desc": "FACE 23BIS BOULEVARD DIDEROT - 75112", "stop_name": "GARE DE LYON - DIDEROT"}, "geometry": {"type": "Point", "coordinates": [2.3739805748450498, 48.84598203749001]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4f45b4c1edfc95a19bb71bfd02b8d491322368ba", "fields": {"departement": "75", "stop_lat": 48.843744254309904, "code_postal": "75112", "stop_lon": 2.3736249556721383, "coord": [48.843744254309904, 2.3736249556721383], "stop_id": 3813086, "stop_desc": "FACE 179 RUE DE BERCY - 75112", "stop_name": "GARE DE LYON"}, "geometry": {"type": "Point", "coordinates": [2.3736249556721383, 48.843744254309904]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0ee5020b98c5fb0a0194a8e1faf3f8e1a8f9c6d1", "fields": {"departement": "75", "stop_lat": 48.840002834777216, "code_postal": "75112", "stop_lon": 2.381328844496672, "coord": [48.840002834777216, 2.381328844496672], "stop_id": 3813089, "stop_desc": "42-44 BOULEVARD DE BERCY - 75112", "stop_name": "GARE DE BERCY"}, "geometry": {"type": "Point", "coordinates": [2.381328844496672, 48.840002834777216]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "89407284d832ffb0cc5c11a555ad0a0cbceb9836", "fields": {"departement": "75", "stop_lat": 48.853056803181765, "code_postal": "75104", "stop_lon": 2.368306389968919, "coord": [48.853056803181765, 2.368306389968919], "stop_id": 3813103, "stop_desc": "1-3 PLACE DE LA BASTILLE - 75104", "stop_name": "BASTILLE - RUE SAINT-ANTOINE"}, "geometry": {"type": "Point", "coordinates": [2.368306389968919, 48.853056803181765]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bbf688e637e8ff93e08cf20976b3c8204f73693b", "fields": {"departement": "75", "stop_lat": 48.85156600221144, "code_postal": "75107", "stop_lon": 2.310834250142299, "coord": [48.85156600221144, 2.310834250142299], "stop_id": 3813111, "stop_desc": "18 RUE D'ESTREE - 75107", "stop_name": "BRETEUIL"}, "geometry": {"type": "Point", "coordinates": [2.310834250142299, 48.85156600221144]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "43b8cddbdb0034a7e07ded77c1e40c0e5ab2f73d", "fields": {"departement": "75", "stop_lat": 48.85656139533593, "code_postal": "75107", "stop_lon": 2.3042940617474543, "coord": [48.85656139533593, 2.3042940617474543], "stop_id": 3813129, "stop_desc": "40 AVENUE BOSQUET - 75107", "stop_name": "BOSQUET - GRENELLE"}, "geometry": {"type": "Point", "coordinates": [2.3042940617474543, 48.85656139533593]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cdd5968dfb95182a29bbcff3a3b3cd245fb443a9", "fields": {"departement": "75", "stop_lat": 48.87900870722632, "code_postal": "75117", "stop_lon": 2.2945508340067544, "coord": [48.87900870722632, 2.2945508340067544], "stop_id": 3813140, "stop_desc": "FACE 1 AVENUE NIEL - 75117", "stop_name": "TERNES - MAC MAHON"}, "geometry": {"type": "Point", "coordinates": [2.2945508340067544, 48.87900870722632]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0d07a0145c85d59cdf2cc5a98893a1aae5f16ed4", "fields": {"departement": "75", "stop_lat": 48.881489637897715, "code_postal": "75117", "stop_lon": 2.2958160680054274, "coord": [48.881489637897715, 2.2958160680054274], "stop_id": 3813142, "stop_desc": "32 AVENUE NIEL - 75117", "stop_name": "PIERRE DEMOURS"}, "geometry": {"type": "Point", "coordinates": [2.2958160680054274, 48.881489637897715]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c53ae922498cd024791b6706eeb248efb9eaa56a", "fields": {"departement": "75", "stop_lat": 48.88594618449054, "code_postal": "75117", "stop_lon": 2.2927053638286177, "coord": [48.88594618449054, 2.2927053638286177], "stop_id": 3813147, "stop_desc": "PLACE STUART MERRILL - 75117", "stop_name": "PORTE DE CHAMPERRET"}, "geometry": {"type": "Point", "coordinates": [2.2927053638286177, 48.88594618449054]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "465e5a99b1c64903b793061dc03d2a532fbe2cb3", "fields": {"departement": "75", "stop_lat": 48.88547124572192, "code_postal": "75117", "stop_lon": 2.29657603558797, "coord": [48.88547124572192, 2.29657603558797], "stop_id": 3813150, "stop_desc": "173-175 RUE DE COURCELLES - 75117", "stop_name": "PEREIRE - LE CHATELIER"}, "geometry": {"type": "Point", "coordinates": [2.29657603558797, 48.88547124572192]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d851046a70bc30ef331498d8071bed5b1e467743", "fields": {"departement": "75", "stop_lat": 48.86926772294137, "code_postal": "75116", "stop_lon": 2.2982099355081997, "coord": [48.86926772294137, 2.2982099355081997], "stop_id": 3813152, "stop_desc": "59 AVENUE MARCEAU - 75116", "stop_name": "BASSANO"}, "geometry": {"type": "Point", "coordinates": [2.2982099355081997, 48.86926772294137]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e37ab21790eb57151c820ed9128d617c11ade13d", "fields": {"departement": "75", "stop_lat": 48.84381179353463, "code_postal": "75115", "stop_lon": 2.32238519748455, "coord": [48.84381179353463, 2.32238519748455], "stop_id": 3813156, "stop_desc": "FACE 3 RUE DE L'ARRIVEE - 75115", "stop_name": "PLACE DU 18 JUIN 1940 - RUE DE L'ARRIVEE"}, "geometry": {"type": "Point", "coordinates": [2.32238519748455, 48.84381179353463]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1cbb5979e537476b964694f69cd4dc444bc8972e", "fields": {"departement": "75", "stop_lat": 48.83920477695226, "code_postal": "75116", "stop_lon": 2.2611846812238183, "coord": [48.83920477695226, 2.2611846812238183], "stop_id": 3813161, "stop_desc": "186 AVENUE DE VERSAILLES - 75116", "stop_name": "VERSAILLES - CHARDON LAGACHE"}, "geometry": {"type": "Point", "coordinates": [2.2611846812238183, 48.83920477695226]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "82ad365f78f237a24be22f4eb7bf16af2edeab4b", "fields": {"departement": "75", "stop_lat": 48.85031282049884, "code_postal": "75116", "stop_lon": 2.260351284060412, "coord": [48.85031282049884, 2.260351284060412], "stop_id": 3813173, "stop_desc": "85 BOULEVARD SUCHET - 75116", "stop_name": "ALFRED CAPUS"}, "geometry": {"type": "Point", "coordinates": [2.260351284060412, 48.85031282049884]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5bf6e48ee4d3fd42c0e6ac1e01491df45722b828", "fields": {"departement": "75", "stop_lat": 48.850276623773084, "code_postal": "75116", "stop_lon": 2.2599700212197678, "coord": [48.850276623773084, 2.2599700212197678], "stop_id": 3813174, "stop_desc": "118 BOULEVARD SUCHET - 75116", "stop_name": "ALFRED CAPUS"}, "geometry": {"type": "Point", "coordinates": [2.2599700212197678, 48.850276623773084]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "066d2a077809b2d9856dcf0959033ab3adb1b3e2", "fields": {"departement": "75", "stop_lat": 48.853468464049335, "code_postal": "75116", "stop_lon": 2.2619809194689444, "coord": [48.853468464049335, 2.2619809194689444], "stop_id": 3813176, "stop_desc": "BOULEVARD SUCHET - 75116", "stop_name": "RAFFET"}, "geometry": {"type": "Point", "coordinates": [2.2619809194689444, 48.853468464049335]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f1fdd399d9e93233a11a6c4f359094ed3a2c011c", "fields": {"departement": "75", "stop_lat": 48.85702014290565, "code_postal": "75116", "stop_lon": 2.26461808683408, "coord": [48.85702014290565, 2.26461808683408], "stop_id": 3813177, "stop_desc": "35 BOULEVARD SUCHET - 75116", "stop_name": "PORTE DE PASSY"}, "geometry": {"type": "Point", "coordinates": [2.26461808683408, 48.85702014290565]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ea3664ef828e014cb5e3eefe8d48dc37b23f0f7a", "fields": {"departement": "75", "stop_lat": 48.86617326732225, "code_postal": "75116", "stop_lon": 2.2714165757339324, "coord": [48.86617326732225, 2.2714165757339324], "stop_id": 3813183, "stop_desc": "43 BOULEVARD LANNES - 75116", "stop_name": "DUFRENOY"}, "geometry": {"type": "Point", "coordinates": [2.2714165757339324, 48.86617326732225]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8718d6e0f9ebceda5e9003241b799d16482a3edc", "fields": {"departement": "75", "stop_lat": 48.86831324458991, "code_postal": "75116", "stop_lon": 2.273225741785854, "coord": [48.86831324458991, 2.273225741785854], "stop_id": 3813185, "stop_desc": "15 BOULEVARD LANNES - 75116", "stop_name": "LONGCHAMP"}, "geometry": {"type": "Point", "coordinates": [2.273225741785854, 48.86831324458991]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1393374c08cd09f6e8aca9bea08cbeb7b00e4022", "fields": {"departement": "75", "stop_lat": 48.87068657535412, "code_postal": "75116", "stop_lon": 2.274489824916088, "coord": [48.87068657535412, 2.274489824916088], "stop_id": 3813188, "stop_desc": "BOULEVARD LANNES - 75116", "stop_name": "PORTE DAUPHINE - MARECHAL DE LATTRE DE TASSIGNY"}, "geometry": {"type": "Point", "coordinates": [2.274489824916088, 48.87068657535412]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7b9dfba0e3e2f3f866ad71c912af51f77bc01df0", "fields": {"departement": "75", "stop_lat": 48.8749759460806, "code_postal": "75116", "stop_lon": 2.2792669833390873, "coord": [48.8749759460806, 2.2792669833390873], "stop_id": 3813189, "stop_desc": "38 BOULEVARD DE L'AMIRAL BRUIX - 75116", "stop_name": "MARBEAU"}, "geometry": {"type": "Point", "coordinates": [2.2792669833390873, 48.8749759460806]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a98670a82b13696137dd87c16b59e721b63d2246", "fields": {"departement": "75", "stop_lat": 48.883949638361095, "code_postal": "75117", "stop_lon": 2.289150357249773, "coord": [48.883949638361095, 2.289150357249773], "stop_id": 3813198, "stop_desc": "FACE 24 BOULEVARD GOUVION-SAINT-CYR - 75117", "stop_name": "PORTE DE VILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.289150357249773, 48.883949638361095]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d718910b653b2ea43c98a5777fd06b5928473d4c", "fields": {"departement": "75", "stop_lat": 48.84729595599754, "code_postal": "75120", "stop_lon": 2.409469129917919, "coord": [48.84729595599754, 2.409469129917919], "stop_id": 3813311, "stop_desc": "103 CRS DE VINCENNES - 75120", "stop_name": "PORTE DE VINCENNES"}, "geometry": {"type": "Point", "coordinates": [2.409469129917919, 48.84729595599754]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "494c709674371a87dcd0a98d9d728257d6e68fbf", "fields": {"departement": "75", "stop_lat": 48.85879989853992, "code_postal": "75120", "stop_lon": 2.4094851486951954, "coord": [48.85879989853992, 2.4094851486951954], "stop_id": 3813315, "stop_desc": "139-145 BD DAVOUT - 75120", "stop_name": "MARIE DE MIRIBEL"}, "geometry": {"type": "Point", "coordinates": [2.4094851486951954, 48.85879989853992]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "872dd4b5938af1d620e0d182c01b83d51300ff90", "fields": {"departement": "75", "stop_lat": 48.88501408966721, "code_postal": "75119", "stop_lon": 2.3965209747909855, "coord": [48.88501408966721, 2.3965209747909855], "stop_id": 3813326, "stop_desc": "BD D'INDOCHINE - 75119", "stop_name": "BUTTE DU CHAPEAU ROUGE"}, "geometry": {"type": "Point", "coordinates": [2.3965209747909855, 48.88501408966721]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b16bcce4daf42d9a9ea76574a88d9d91e180f16f", "fields": {"departement": "75", "stop_lat": 48.88889689362215, "code_postal": "75119", "stop_lon": 2.3958576137354113, "coord": [48.88889689362215, 2.3958576137354113], "stop_id": 3813327, "stop_desc": "FACE 179 BIS BD SERURIER - 75119", "stop_name": "PORTE DE PANTIN - PARC DE LA VILLETTE"}, "geometry": {"type": "Point", "coordinates": [2.3958576137354113, 48.88889689362215]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4ef2dd96a8aecc47aa4f5fac1908e8576a14bb87", "fields": {"departement": "75", "stop_lat": 48.89730909234759, "code_postal": "75119", "stop_lon": 2.372490300970134, "coord": [48.89730909234759, 2.372490300970134], "stop_id": 3813335, "stop_desc": "0 NR - 75119", "stop_name": "ROSA PARKS"}, "geometry": {"type": "Point", "coordinates": [2.372490300970134, 48.89730909234759]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "91eb941316b49bf3ede6e7b7b8b8335884cb9662", "fields": {"departement": "75", "stop_lat": 48.898775032382886, "code_postal": "75118", "stop_lon": 2.368783615022626, "coord": [48.898775032382886, 2.368783615022626], "stop_id": 3813336, "stop_desc": "FACE 1-3 BD NEY - 75118", "stop_name": "PORTE D'AUBERVILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.368783615022626, 48.898775032382886]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "981124d48a6929de73ec4eb7d444ae6a95c3b4fc", "fields": {"departement": "75", "stop_lat": 48.8379613500494, "code_postal": "75115", "stop_lon": 2.270962227260772, "coord": [48.8379613500494, 2.270962227260772], "stop_id": 3813501, "stop_desc": "BD DU GENERAL MARTIAL VALIN - 75115", "stop_name": "PONT GARIGLIANO - HOPITAL EUROPEEN GEORGE POMPIDOU"}, "geometry": {"type": "Point", "coordinates": [2.270962227260772, 48.8379613500494]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8df01b9c61f5661e33ee0573adfeb58ff30b4dbe", "fields": {"departement": "75", "stop_lat": 48.83261302467199, "code_postal": "75115", "stop_lon": 2.2880271612581975, "coord": [48.83261302467199, 2.2880271612581975], "stop_id": 3813506, "stop_desc": "75 BOULEVARD VICTOR - 75115", "stop_name": "PORTE DE VERSAILLES - PARC DES EXPOSITIONS"}, "geometry": {"type": "Point", "coordinates": [2.2880271612581975, 48.83261302467199]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2006e7fe2cfaba784e83ea36e4286499fd6bb122", "fields": {"departement": "75", "stop_lat": 48.832864761854, "code_postal": "75115", "stop_lon": 2.288231130535906, "coord": [48.832864761854, 2.288231130535906], "stop_id": 3813507, "stop_desc": "FACE 75 BOULEVARD LEFEBVRE - 75115", "stop_name": "PORTE DE VERSAILLES - PARC DES EXPOSITIONS"}, "geometry": {"type": "Point", "coordinates": [2.288231130535906, 48.832864761854]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5cdfd61bd5d9a47b18f00a97ec02feff09fac5b6", "fields": {"departement": "75", "stop_lat": 48.823518067877714, "code_postal": "75114", "stop_lon": 2.3247730094186108, "coord": [48.823518067877714, 2.3247730094186108], "stop_id": 3813519, "stop_desc": "117 BD BRUNE - 75114", "stop_name": "PORTE D'ORLEANS"}, "geometry": {"type": "Point", "coordinates": [2.3247730094186108, 48.823518067877714]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3c9a70cf4bd523f054c39b7960948c76830b69ac", "fields": {"departement": "75", "stop_lat": 48.87237456779904, "code_postal": "75109", "stop_lon": 2.3306877960484598, "coord": [48.87237456779904, 2.3306877960484598], "stop_id": 5138031, "stop_desc": "17 RUE SCRIBE - 75109", "stop_name": "OPERA - SCRIBE"}, "geometry": {"type": "Point", "coordinates": [2.3306877960484598, 48.87237456779904]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "923f636c2186de53bfcaeab12ae04cc4f817571b", "fields": {"departement": "75", "stop_lat": 48.86960655910574, "code_postal": "75102", "stop_lon": 2.332554568380394, "coord": [48.86960655910574, 2.332554568380394], "stop_id": 5138032, "stop_desc": "49 AVENUE DE L'OPERA - 75102", "stop_name": "OPERA - 4 SEPTEMBRE"}, "geometry": {"type": "Point", "coordinates": [2.332554568380394, 48.86960655910574]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8c6ba4cbcfd386455b33704752705b19afdd93c6", "fields": {"departement": "75", "stop_lat": 48.86403446820581, "code_postal": "75101", "stop_lon": 2.334993420779704, "coord": [48.86403446820581, 2.334993420779704], "stop_id": 5138034, "stop_desc": "1-3 AVENUE DE L'OPERA - 75101", "stop_name": "PALAIS ROYAL - COMEDIE FRANCAISE"}, "geometry": {"type": "Point", "coordinates": [2.334993420779704, 48.86403446820581]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c9eea4507e915ea89fbf20f124097916097f98a9", "fields": {"departement": "75", "stop_lat": 48.85990896102511, "code_postal": "75107", "stop_lon": 2.328591744841365, "coord": [48.85990896102511, 2.328591744841365], "stop_id": 5138037, "stop_desc": "QUAI ANATOLE FRANCE - 75107", "stop_name": "PONT ROYAL - QUAI VOLTAIRE"}, "geometry": {"type": "Point", "coordinates": [2.328591744841365, 48.85990896102511]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4766abde86ce7b2b763a82fd4da8aea0139fb1ed", "fields": {"departement": "75", "stop_lat": 48.85821880950313, "code_postal": "75107", "stop_lon": 2.323171057847021, "coord": [48.85821880950313, 2.323171057847021], "stop_id": 5138039, "stop_desc": "223 BOULEVARD SAINT GERMAIN - 75107", "stop_name": "SOLFERINO - BELLECHASSE"}, "geometry": {"type": "Point", "coordinates": [2.323171057847021, 48.85821880950313]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f6e1f3d8ba23047d7bd635bb1081118f3ea39933", "fields": {"departement": "75", "stop_lat": 48.85109213482204, "code_postal": "75106", "stop_lon": 2.3267683174103593, "coord": [48.85109213482204, 2.3267683174103593], "stop_id": 5138042, "stop_desc": "48 BOULEVARD RASPAIL - 75106", "stop_name": "SEVRES - BABYLONE"}, "geometry": {"type": "Point", "coordinates": [2.3267683174103593, 48.85109213482204]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3ac771da486528ebe195730d42c860d95521349a", "fields": {"departement": "92", "stop_lat": 48.818520317166126, "code_postal": "92049", "stop_lon": 2.32001067322558, "coord": [48.818520317166126, 2.32001067322558], "stop_id": 5138055, "stop_desc": "RUE GABRIEL PERI - 92049", "stop_name": "MAIRIE DE MONTROUGE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.32001067322558, 48.818520317166126]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a3c267722da28f6c229832843bcbc04906ba9145", "fields": {"departement": "75", "stop_lat": 48.8537550960755, "code_postal": "75111", "stop_lon": 2.377431775835071, "coord": [48.8537550960755, 2.377431775835071], "stop_id": 5138085, "stop_desc": "127 AVENUE LEDRU ROLLIN - 75111", "stop_name": "CHARONNE - KELLER"}, "geometry": {"type": "Point", "coordinates": [2.377431775835071, 48.8537550960755]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8f290c1855723582c251816c74c1d0d3b332b6b1", "fields": {"departement": "75", "stop_lat": 48.88313213989916, "code_postal": "75109", "stop_lon": 2.327729358929872, "coord": [48.88313213989916, 2.327729358929872], "stop_id": 5138159, "stop_desc": "86 RUE DE CLICHY - 75109", "stop_name": "PLACE DE CLICHY"}, "geometry": {"type": "Point", "coordinates": [2.327729358929872, 48.88313213989916]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9d163d0fb8fe2fa878936b468aab261a5dd1c400", "fields": {"departement": "75", "stop_lat": 48.87237456779904, "code_postal": "75109", "stop_lon": 2.3306877960484598, "coord": [48.87237456779904, 2.3306877960484598], "stop_id": 5138167, "stop_desc": "17 RUE SCRIBE - 75109", "stop_name": "OPERA - SCRIBE"}, "geometry": {"type": "Point", "coordinates": [2.3306877960484598, 48.87237456779904]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "87b165022228283e19d6b5b161da0b16bead4615", "fields": {"departement": "75", "stop_lat": 48.86683849717729, "code_postal": "75101", "stop_lon": 2.3337536247087347, "coord": [48.86683849717729, 2.3337536247087347], "stop_id": 5138170, "stop_desc": "29 AVENUE DE L'OPERA - 75101", "stop_name": "PYRAMIDES"}, "geometry": {"type": "Point", "coordinates": [2.3337536247087347, 48.86683849717729]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6372a0cb3cbb1fa4c972f00e2b661639bcb8abb7", "fields": {"departement": "75", "stop_lat": 48.859010249775515, "code_postal": "75107", "stop_lon": 2.3290141376749216, "coord": [48.859010249775515, 2.3290141376749216], "stop_id": 5138176, "stop_desc": "7 RUE DU BAC - 75107", "stop_name": "PONT ROYAL - QUAI VOLTAIRE"}, "geometry": {"type": "Point", "coordinates": [2.3290141376749216, 48.859010249775515]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2017350ef2d4cbe53aa5a026fb141a547bd7088d", "fields": {"departement": "75", "stop_lat": 48.85821880950313, "code_postal": "75107", "stop_lon": 2.323171057847021, "coord": [48.85821880950313, 2.323171057847021], "stop_id": 5138178, "stop_desc": "223 BOULEVARD SAINT GERMAIN - 75107", "stop_name": "SOLFERINO - BELLECHASSE"}, "geometry": {"type": "Point", "coordinates": [2.323171057847021, 48.85821880950313]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6031b43016a3bde0d1637bafa1db63c30c0a7e2d", "fields": {"departement": "75", "stop_lat": 48.855468910858235, "code_postal": "75107", "stop_lon": 2.3255280305074826, "coord": [48.855468910858235, 2.3255280305074826], "stop_id": 5138179, "stop_desc": "2 BOULEVARD RASPAIL - 75107", "stop_name": "RUE DU BAC - RENE CHAR"}, "geometry": {"type": "Point", "coordinates": [2.3255280305074826, 48.855468910858235]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "364393c9a85f5e995626810f002c37ed68712a34", "fields": {"departement": "75", "stop_lat": 48.848638637786514, "code_postal": "75106", "stop_lon": 2.3277901640867884, "coord": [48.848638637786514, 2.3277901640867884], "stop_id": 5138185, "stop_desc": "81 BOULEVARD RASPAIL - 75106", "stop_name": "RENNES - RASPAIL"}, "geometry": {"type": "Point", "coordinates": [2.3277901640867884, 48.848638637786514]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8351faddd87fd1a54ea438923e5bbdb6db371538", "fields": {"departement": "75", "stop_lat": 48.84490888358271, "code_postal": "75106", "stop_lon": 2.3285806322371982, "coord": [48.84490888358271, 2.3285806322371982], "stop_id": 5138186, "stop_desc": "110-112 BOULEVARD RASPAIL - 75106", "stop_name": "NOTRE-DAME-DES-CHAMPS"}, "geometry": {"type": "Point", "coordinates": [2.3285806322371982, 48.84490888358271]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "db14d5f22b340e9e74cedd20dda1700dfdec1696", "fields": {"departement": "75", "stop_lat": 48.841529660225085, "code_postal": "75114", "stop_lon": 2.3298883469474805, "coord": [48.841529660225085, 2.3298883469474805], "stop_id": 5138189, "stop_desc": "201-203 BOULEVARD RASPAIL - 75114", "stop_name": "VAVIN"}, "geometry": {"type": "Point", "coordinates": [2.3298883469474805, 48.841529660225085]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b212ece6bd843cb09fb1b1cef3ed74379b1faf61", "fields": {"departement": "75", "stop_lat": 48.83377347264631, "code_postal": "75114", "stop_lon": 2.3314414561924695, "coord": [48.83377347264631, 2.3314414561924695], "stop_id": 5138194, "stop_desc": "30 PLACE DENFERT ROCHEREAU - 75114", "stop_name": "DENFERT-ROCHEREAU"}, "geometry": {"type": "Point", "coordinates": [2.3314414561924695, 48.83377347264631]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e808a573ccdfc2091c4c1d6fb666dfc41e2c929b", "fields": {"departement": "75", "stop_lat": 48.830474895128575, "code_postal": "75114", "stop_lon": 2.3292909331491076, "coord": [48.830474895128575, 2.3292909331491076], "stop_id": 5138197, "stop_desc": "29-31 AVENUE DU GENERAL LECLERC - 75114", "stop_name": "MOUTON - DUVERNET"}, "geometry": {"type": "Point", "coordinates": [2.3292909331491076, 48.830474895128575]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "185e0da68a5590627f18c7a5569156bdbfeb4263", "fields": {"departement": "75", "stop_lat": 48.82425513830218, "code_postal": "75114", "stop_lon": 2.3255759172850463, "coord": [48.82425513830218, 2.3255759172850463], "stop_id": 5138201, "stop_desc": "130 AVENUE DU GENERAL LECLERC - 75114", "stop_name": "PORTE D'ORLEANS"}, "geometry": {"type": "Point", "coordinates": [2.3255759172850463, 48.82425513830218]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "54ee72d8b54618022d8a128318809dc70ec8c2e4", "fields": {"departement": "92", "stop_lat": 48.815022396313154, "code_postal": "92049", "stop_lon": 2.310771194260721, "coord": [48.815022396313154, 2.310771194260721], "stop_id": 5138209, "stop_desc": "FACE AU 105 RUE MAURICE ARNOUX - 92049", "stop_name": "JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.310771194260721, 48.815022396313154]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2b219bb69b654ab4cd6e7fe460d57dbf11012ce0", "fields": {"departement": "92", "stop_lat": 48.815930333000836, "code_postal": "92049", "stop_lon": 2.311573687396447, "coord": [48.815930333000836, 2.311573687396447], "stop_id": 5138210, "stop_desc": "28-30 PL JEAN JAURES - 92049", "stop_name": "JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.311573687396447, 48.815930333000836]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1d04907862353997005b7c990a2e09748094d5c8", "fields": {"departement": "92", "stop_lat": 48.81109318574074, "code_postal": "92020", "stop_lon": 2.3044862279926117, "coord": [48.81109318574074, 2.3044862279926117], "stop_id": 5138214, "stop_desc": "AVENUE MARX DORMOY - 92020", "stop_name": "CHATILLON-MONTROUGE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.3044862279926117, 48.81109318574074]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c232bdbf83fec80e0ec3ef2031db8bce44fbc251", "fields": {"departement": "75", "stop_lat": 48.86817760577774, "code_postal": "75102", "stop_lon": 2.3335219409225676, "coord": [48.86817760577774, 2.3335219409225676], "stop_id": 5138222, "stop_desc": "30-32 AVENUE DE L'OPERA - 75102", "stop_name": "PETITS CHAMPS - DANIELLE CASANOVA"}, "geometry": {"type": "Point", "coordinates": [2.3335219409225676, 48.86817760577774]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "244d42e22796ca62d5ec94026ce37339758b078a", "fields": {"departement": "94", "stop_lat": 48.80727849158766, "code_postal": "94068", "stop_lon": 2.5098888682742966, "coord": [48.80727849158766, 2.5098888682742966], "stop_id": 5150150, "stop_desc": "PISTE GARE ROUTIERE - 94068", "stop_name": "CHAMPIGNY - SAINT-MAUR RER"}, "geometry": {"type": "Point", "coordinates": [2.5098888682742966, 48.80727849158766]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d17d86510cc3ced2a623b434121496e047e6a5e0", "fields": {"departement": "92", "stop_lat": 48.877790442841146, "code_postal": "92063", "stop_lon": 2.195316025714653, "coord": [48.877790442841146, 2.195316025714653], "stop_id": 5150153, "stop_desc": "138 BOULEVARD EDMOND ROSTAND - 92063", "stop_name": "FABRE D'EGLANTINE"}, "geometry": {"type": "Point", "coordinates": [2.195316025714653, 48.877790442841146]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "85391e83a4c1732e80b658c05ba7caa01506021d", "fields": {"departement": "92", "stop_lat": 48.877790442841146, "code_postal": "92063", "stop_lon": 2.195316025714653, "coord": [48.877790442841146, 2.195316025714653], "stop_id": 5150155, "stop_desc": "138 BOULEVARD EDMOND ROSTAND - 92063", "stop_name": "FABRE D'EGLANTINE"}, "geometry": {"type": "Point", "coordinates": [2.195316025714653, 48.877790442841146]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e332f7e69eaf2996aa315f21811a9db043495c87", "fields": {"departement": "92", "stop_lat": 48.937174269351154, "code_postal": "92036", "stop_lon": 2.2768646698013257, "coord": [48.937174269351154, 2.2768646698013257], "stop_id": 5150158, "stop_desc": "RUE ALFRED SUQUET - 92036", "stop_name": "CENTRE DE VIE"}, "geometry": {"type": "Point", "coordinates": [2.2768646698013257, 48.937174269351154]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b6076c6388b33bc5889bf06ade66307751ce1729", "fields": {"departement": "92", "stop_lat": 48.93449739935261, "code_postal": "92025", "stop_lon": 2.263077151509599, "coord": [48.93449739935261, 2.263077151509599], "stop_id": 5150161, "stop_desc": "FACE 205 AVENUE DE STALINGRAD - 92025", "stop_name": "PONT DU CHEMIN DE FER"}, "geometry": {"type": "Point", "coordinates": [2.263077151509599, 48.93449739935261]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1993c3b493212f7468e8a2b868107656ac300c7d", "fields": {"departement": "92", "stop_lat": 48.93074305254229, "code_postal": "92004", "stop_lon": 2.283951123396349, "coord": [48.93074305254229, 2.283951123396349], "stop_id": 5150171, "stop_desc": "0 BD INTERCOMMUNAL - 92004", "stop_name": "LES COURTILLES"}, "geometry": {"type": "Point", "coordinates": [2.283951123396349, 48.93074305254229]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "381f16f8fb45a1a0abad2f5e98a679ecf38e92c3", "fields": {"departement": "93", "stop_lat": 48.92102950975254, "code_postal": "93066", "stop_lon": 2.3568102011449907, "coord": [48.92102950975254, 2.3568102011449907], "stop_id": 5150184, "stop_desc": "299 AVENUE DU PRESIDENT WILSON - 93066", "stop_name": "CORNILLON SUD"}, "geometry": {"type": "Point", "coordinates": [2.3568102011449907, 48.92102950975254]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "019300cbea174b42b53dce098bb8df884b68a345", "fields": {"departement": "93", "stop_lat": 48.9303489005, "code_postal": "93066", "stop_lon": 2.357100149802827, "coord": [48.9303489005, 2.357100149802827], "stop_id": 5150202, "stop_desc": "R DANIELLE CASANOVA - 93066", "stop_name": "PORTE DE PARIS - STADE DE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.357100149802827, 48.9303489005]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6492db909337964e1ac602b04206cda245a7c949", "fields": {"departement": "93", "stop_lat": 48.9317313775328, "code_postal": "93066", "stop_lon": 2.364684442153732, "coord": [48.9317313775328, 2.364684442153732], "stop_id": 5150204, "stop_desc": "50-52 AVENUE PAUL VAILLANT COUTURIER - 93066", "stop_name": "PARC DE LA LEGION D'HONNEUR"}, "geometry": {"type": "Point", "coordinates": [2.364684442153732, 48.9317313775328]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "322e14a9ec3cd38fcbefc7280919906400cd5589", "fields": {"departement": "93", "stop_lat": 48.935926391632314, "code_postal": "93066", "stop_lon": 2.3718072487168924, "coord": [48.935926391632314, 2.3718072487168924], "stop_id": 5150209, "stop_desc": "AVENUE DU DOCTEUR LAMAZE - 93066", "stop_name": "HOPITAL DELAFONTAINE"}, "geometry": {"type": "Point", "coordinates": [2.3718072487168924, 48.935926391632314]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ebc9415b8ea08630112cb0552d077ce74dff3a39", "fields": {"departement": "93", "stop_lat": 48.9399174293773, "code_postal": "93066", "stop_lon": 2.368604037927512, "coord": [48.9399174293773, 2.368604037927512], "stop_id": 5150210, "stop_desc": "FACE 13 AVENUE LENINE - 93066", "stop_name": "MARCEL CACHIN - DESNOS"}, "geometry": {"type": "Point", "coordinates": [2.368604037927512, 48.9399174293773]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dd1d3448177f07f530e5095f4a44ff414d51a495", "fields": {"departement": "93", "stop_lat": 48.93877580048832, "code_postal": "93066", "stop_lon": 2.36973560921535, "coord": [48.93877580048832, 2.36973560921535], "stop_id": 5150211, "stop_desc": "0 AV MARCEL CACHIN - 93066", "stop_name": "MARCEL CACHIN - DESNOS"}, "geometry": {"type": "Point", "coordinates": [2.36973560921535, 48.93877580048832]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "16a19c99bc6a83d16c00e6b75c411da08492efc5", "fields": {"departement": "93", "stop_lat": 48.944134615991395, "code_postal": "93066", "stop_lon": 2.357637516236243, "coord": [48.944134615991395, 2.357637516236243], "stop_id": 5150216, "stop_desc": "4 AVENUE DE STALINGRAD - 93066", "stop_name": "ROGER SEMAT"}, "geometry": {"type": "Point", "coordinates": [2.357637516236243, 48.944134615991395]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f792843e42fc99f35c27a62ae66513c80b2a4f0c", "fields": {"departement": "93", "stop_lat": 48.946895036631396, "code_postal": "93079", "stop_lon": 2.34512718767249, "coord": [48.946895036631396, 2.34512718767249], "stop_id": 5150222, "stop_desc": "3 ROUTE DE SAINT-LEU - 93079", "stop_name": "ROBINSON - LIMITE DE SAINT-DENIS"}, "geometry": {"type": "Point", "coordinates": [2.34512718767249, 48.946895036631396]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3c5311bb4386b68f66dcc0d76a2634afe017a8c6", "fields": {"departement": "93", "stop_lat": 48.948584659598694, "code_postal": "93079", "stop_lon": 2.3431763096561817, "coord": [48.948584659598694, 2.3431763096561817], "stop_id": 5150223, "stop_desc": "ROUTE DE SAINT-LEU - 93079", "stop_name": "CESAR"}, "geometry": {"type": "Point", "coordinates": [2.3431763096561817, 48.948584659598694]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5a168955c19f608e38797cc49c0e46c0dd82ab0d", "fields": {"departement": "95", "stop_lat": 48.969459633562245, "code_postal": "95197", "stop_lon": 2.320260676499444, "coord": [48.969459633562245, 2.320260676499444], "stop_id": 5150237, "stop_desc": "41 RUE DU CHATEAU - 95197", "stop_name": "LE STADE"}, "geometry": {"type": "Point", "coordinates": [2.320260676499444, 48.969459633562245]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cde978784957890f8784bfeed171ea6476764dec", "fields": {"departement": "93", "stop_lat": 48.9416795621275, "code_postal": "93066", "stop_lon": 2.365740183711599, "coord": [48.9416795621275, 2.365740183711599], "stop_id": 5150245, "stop_desc": "AVENUE LENINE - 93066", "stop_name": "LYCEE PAUL ELUARD"}, "geometry": {"type": "Point", "coordinates": [2.365740183711599, 48.9416795621275]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5e40f064b1502e606375d67c0c381caed0b93a4a", "fields": {"departement": "93", "stop_lat": 48.96012270381033, "code_postal": "93079", "stop_lon": 2.3529627743099315, "coord": [48.96012270381033, 2.3529627743099315], "stop_id": 5150257, "stop_desc": "RUE JEAN ALLEMANE - 93079", "stop_name": "COLLEGE LUCIE AUBRAC"}, "geometry": {"type": "Point", "coordinates": [2.3529627743099315, 48.96012270381033]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fa39752a07fdeb85ecad82a9bd9eb2e1d46cdbcc", "fields": {"departement": "93", "stop_lat": 48.96120184136328, "code_postal": "93079", "stop_lon": 2.3456479738126736, "coord": [48.96120184136328, 2.3456479738126736], "stop_id": 5150259, "stop_desc": "11 RUE ROGER SALENGRO - 93079", "stop_name": "EDOUARD VAILLANT"}, "geometry": {"type": "Point", "coordinates": [2.3456479738126736, 48.96120184136328]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "041bbb8a56f8091d3c1dc84913209722e68c6e97", "fields": {"departement": "95", "stop_lat": 48.97426827627478, "code_postal": "95427", "stop_lon": 2.346824085752981, "coord": [48.97426827627478, 2.346824085752981], "stop_id": 5150269, "stop_desc": "4 AVENUE DU GENERAL DE GAULLE - 95427", "stop_name": "MAIRIE DE MONTMAGNY"}, "geometry": {"type": "Point", "coordinates": [2.346824085752981, 48.97426827627478]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1ae0cac2af05a6c0632ce92d15bf6cfdc1ac280c", "fields": {"departement": "95", "stop_lat": 48.97432183726224, "code_postal": "95197", "stop_lon": 2.323944873220267, "coord": [48.97432183726224, 2.323944873220267], "stop_id": 5150276, "stop_desc": "FACE 16 RUE DE LA BARRE - 95197", "stop_name": "LA POSTE"}, "geometry": {"type": "Point", "coordinates": [2.323944873220267, 48.97432183726224]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c757729d329bb70bff29071e0aae5c4ecee0c1e6", "fields": {"departement": "95", "stop_lat": 48.96900129780344, "code_postal": "95197", "stop_lon": 2.3201243301766588, "coord": [48.96900129780344, 2.3201243301766588], "stop_id": 5150279, "stop_desc": "FACE 31 RUE DU CHATEAU - 95197", "stop_name": "LE STADE"}, "geometry": {"type": "Point", "coordinates": [2.3201243301766588, 48.96900129780344]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5c1087d6d32414a5e4623fe8d05bb861775f8734", "fields": {"departement": "93", "stop_lat": 48.84075123203691, "code_postal": "93051", "stop_lon": 2.552454880082173, "coord": [48.84075123203691, 2.552454880082173], "stop_id": 5150290, "stop_desc": "PISTE GARE ROUTIERE - 93051", "stop_name": "NOISY-LE-GRAND - MONT D'EST RER"}, "geometry": {"type": "Point", "coordinates": [2.552454880082173, 48.84075123203691]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2727ab997e57217af4fc6b6c00c9fa956a43bdef", "fields": {"departement": "94", "stop_lat": 48.80035371422413, "code_postal": "94002", "stop_lon": 2.4224785837142826, "coord": [48.80035371422413, 2.4224785837142826], "stop_id": 5150319, "stop_desc": "FACE 228 R PAUL VAILLANT COUTURIER - 94002", "stop_name": "DOLET - ZOLA"}, "geometry": {"type": "Point", "coordinates": [2.4224785837142826, 48.80035371422413]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cce54f4bb2b407353da013633f4b23a0feaff14d", "fields": {"departement": "94", "stop_lat": 48.8023680595688, "code_postal": "94002", "stop_lon": 2.420971637308082, "coord": [48.8023680595688, 2.420971637308082], "stop_id": 5150320, "stop_desc": "192 RUE PAUL VAILLANT-COUTURIER - 94002", "stop_name": "PAUL VAILLANT COUTURIER - KENNEDY"}, "geometry": {"type": "Point", "coordinates": [2.420971637308082, 48.8023680595688]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6f3f74e0631305adecaa840c03578bcae8f64764", "fields": {"departement": "93", "stop_lat": 48.90949244703692, "code_postal": "93008", "stop_lon": 2.4676094660723726, "coord": [48.90949244703692, 2.4676094660723726], "stop_id": 5150341, "stop_desc": "60 AVENUE EDOUARD VAILLANT - 93008", "stop_name": "AVENUE MARCELLE"}, "geometry": {"type": "Point", "coordinates": [2.4676094660723726, 48.90949244703692]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2a75acfe9d6e3eeba5db75750e0a66808f8e5007", "fields": {"departement": "93", "stop_lat": 48.91127967872346, "code_postal": "93010", "stop_lon": 2.484098069741226, "coord": [48.91127967872346, 2.484098069741226], "stop_id": 5150345, "stop_desc": "6 AVENUE MARX DORMOY - 93010", "stop_name": "MAISON DE RETRAITE"}, "geometry": {"type": "Point", "coordinates": [2.484098069741226, 48.91127967872346]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "23f811f4f931a040347786fcff792422bbcc24b4", "fields": {"departement": "93", "stop_lat": 48.9074650418741, "code_postal": "93008", "stop_lon": 2.424113548237613, "coord": [48.9074650418741, 2.424113548237613], "stop_id": 5150380, "stop_desc": "AVENUE DE LA DIVISION LECLERC - 93008", "stop_name": "REPUBLIQUE - DIVISION LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.424113548237613, 48.9074650418741]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4a931cfb25f917c1b70a559e8a5c0b14888c9867", "fields": {"departement": "93", "stop_lat": 48.90691264968876, "code_postal": "93008", "stop_lon": 2.4296750229551916, "coord": [48.90691264968876, 2.4296750229551916], "stop_id": 5150382, "stop_desc": "FACE 140 RUE DE LA REPUBLIQUE - 93008", "stop_name": "LYCEE ANDRE SABATIER"}, "geometry": {"type": "Point", "coordinates": [2.4296750229551916, 48.90691264968876]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eaf4e995544a923c0c076660fd9e4fb8d522a63d", "fields": {"departement": "93", "stop_lat": 48.90637437721665, "code_postal": "93008", "stop_lon": 2.439517229737543, "coord": [48.90637437721665, 2.439517229737543], "stop_id": 5150386, "stop_desc": "BOULEVARD LENINE - 93008", "stop_name": "CONSERVATOIRE JEAN WIENER"}, "geometry": {"type": "Point", "coordinates": [2.439517229737543, 48.90637437721665]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "903774f4142a9c0f9bfc127928ee98a39f39a6fa", "fields": {"departement": "93", "stop_lat": 48.90657485833315, "code_postal": "93008", "stop_lon": 2.4559320596369205, "coord": [48.90657485833315, 2.4559320596369205], "stop_id": 5150392, "stop_desc": "302 AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "LAMARTINE"}, "geometry": {"type": "Point", "coordinates": [2.4559320596369205, 48.90657485833315]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9dff03039236744aa21b18318b4fed16c2bd7347", "fields": {"departement": "93", "stop_lat": 48.90590089960924, "code_postal": "93008", "stop_lon": 2.46457388666915, "coord": [48.90590089960924, 2.46457388666915], "stop_id": 5150396, "stop_desc": "FACE 412 AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "RUE DES PEUPLIERS"}, "geometry": {"type": "Point", "coordinates": [2.46457388666915, 48.90590089960924]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9333572b952f09fec797d11e9801ecbb42148282", "fields": {"departement": "93", "stop_lat": 48.90679444443228, "code_postal": "93008", "stop_lon": 2.4693204756522555, "coord": [48.90679444443228, 2.4693204756522555], "stop_id": 5150398, "stop_desc": "16 AVENUE EDOUARD VAILLANT - 93008", "stop_name": "PONT DE BONDY - ANATOLE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.4693204756522555, 48.90679444443228]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8ae2edbd48cab85c3652c9e49c56b5ec03600134", "fields": {"departement": "93", "stop_lat": 48.906426065874264, "code_postal": "93008", "stop_lon": 2.469237737369291, "coord": [48.906426065874264, 2.469237737369291], "stop_id": 5150399, "stop_desc": "15 AVENUE EDOUARD VAILLANT - 93008", "stop_name": "PONT DE BONDY - ANATOLE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.469237737369291, 48.906426065874264]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1dc868a25b4b2a8e4de11e05ec1e6510c4aa772b", "fields": {"departement": "93", "stop_lat": 48.9162860028772, "code_postal": "93057", "stop_lon": 2.497625358261496, "coord": [48.9162860028772, 2.497625358261496], "stop_id": 5150414, "stop_desc": "AVENUE DE ROME - 93057", "stop_name": "ROBERT SCHUMAN"}, "geometry": {"type": "Point", "coordinates": [2.497625358261496, 48.9162860028772]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "69d8da6120687cf4f2a98e1fb324afc88468e189", "fields": {"departement": "93", "stop_lat": 48.91630523836681, "code_postal": "93057", "stop_lon": 2.4966845457751448, "coord": [48.91630523836681, 2.4966845457751448], "stop_id": 5150415, "stop_desc": "BOULEVARD DE PARIS - 93057", "stop_name": "ROBERT SCHUMAN"}, "geometry": {"type": "Point", "coordinates": [2.4966845457751448, 48.91630523836681]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c82d648fd045316b159e7690ef94891f65184e73", "fields": {"departement": "93", "stop_lat": 48.91480718682727, "code_postal": "93057", "stop_lon": 2.5012614408347824, "coord": [48.91480718682727, 2.5012614408347824], "stop_id": 5150416, "stop_desc": "91 AVENUE DE ROME - 93057", "stop_name": "Z.I. DE LA POUDRETTE"}, "geometry": {"type": "Point", "coordinates": [2.5012614408347824, 48.91480718682727]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "617afe251908ea1b5808c6314c74fefb78c42cad", "fields": {"departement": "93", "stop_lat": 48.91320905904461, "code_postal": "93046", "stop_lon": 2.5187910125266835, "coord": [48.91320905904461, 2.5187910125266835], "stop_id": 5150423, "stop_desc": "30 AVENUE DE VAUBAN - 93046", "stop_name": "GUTENBERG"}, "geometry": {"type": "Point", "coordinates": [2.5187910125266835, 48.91320905904461]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "175929b75512f7de3db0bcd98ed1ffeda3a02928", "fields": {"departement": "93", "stop_lat": 48.92230018221277, "code_postal": "93046", "stop_lon": 2.5325284785553945, "coord": [48.92230018221277, 2.5325284785553945], "stop_id": 5150429, "stop_desc": "FACE 82 AVENUE COLLAVERI - 93046", "stop_name": "COLLEGES"}, "geometry": {"type": "Point", "coordinates": [2.5325284785553945, 48.92230018221277]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "36f642d82733b1857abb7960a2b2dc346a1dd030", "fields": {"departement": "93", "stop_lat": 48.90675435432779, "code_postal": "93008", "stop_lon": 2.4467981603729605, "coord": [48.90675435432779, 2.4467981603729605], "stop_id": 5150442, "stop_desc": "15 BOULEVARD MAURICE THOREZ - 93008", "stop_name": "MAURICE THOREZ"}, "geometry": {"type": "Point", "coordinates": [2.4467981603729605, 48.90675435432779]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9b90f5fb5301ef3d1f260c7d3a50f0def0cf981a", "fields": {"departement": "93", "stop_lat": 48.90759788133574, "code_postal": "93008", "stop_lon": 2.4267723064132727, "coord": [48.90759788133574, 2.4267723064132727], "stop_id": 5150443, "stop_desc": "164 RUE DE LA REPUBLIQUE - 93008", "stop_name": "REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.4267723064132727, 48.90759788133574]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f1f096a8f8da40708cf5dbc5bd722205070379ab", "fields": {"departement": "93", "stop_lat": 48.90555453249922, "code_postal": "93008", "stop_lon": 2.469044655471792, "coord": [48.90555453249922, 2.469044655471792], "stop_id": 5150458, "stop_desc": "FACE 439 AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "PONT DE BONDY"}, "geometry": {"type": "Point", "coordinates": [2.469044655471792, 48.90555453249922]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "02f675fca7a53ca6219ea99b823de644982141e7", "fields": {"departement": "93", "stop_lat": 48.90949244703692, "code_postal": "93008", "stop_lon": 2.4676094660723726, "coord": [48.90949244703692, 2.4676094660723726], "stop_id": 5150460, "stop_desc": "60 AVENUE EDOUARD VAILLANT - 93008", "stop_name": "AVENUE MARCELLE"}, "geometry": {"type": "Point", "coordinates": [2.4676094660723726, 48.90949244703692]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2a4ba7b4c4e2104ad10f45401114f42da2ec7744", "fields": {"departement": "93", "stop_lat": 48.912236663887136, "code_postal": "93010", "stop_lon": 2.4805148428665595, "coord": [48.912236663887136, 2.4805148428665595], "stop_id": 5150463, "stop_desc": "AVENUE JEAN MOULIN - 93010", "stop_name": "ROUTE D'AULNAY - JEAN MOULIN"}, "geometry": {"type": "Point", "coordinates": [2.4805148428665595, 48.912236663887136]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "817551e47632d35ce156441f157958134a1855da", "fields": {"departement": "93", "stop_lat": 48.91398334545437, "code_postal": "93057", "stop_lon": 2.492327766588215, "coord": [48.91398334545437, 2.492327766588215], "stop_id": 5150466, "stop_desc": "BOULEVARD DE PARIS - 93057", "stop_name": "LYCEE CLAUDE-NICOLAS LEDOUX"}, "geometry": {"type": "Point", "coordinates": [2.492327766588215, 48.91398334545437]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1ff1a4e808f65945d07a7e20ddcc0839224153c9", "fields": {"departement": "93", "stop_lat": 48.914227247147316, "code_postal": "93001", "stop_lon": 2.404026516251405, "coord": [48.914227247147316, 2.404026516251405], "stop_id": 5150469, "stop_desc": "AVENUE JEAN JAURES - 93001", "stop_name": "FORT D'AUBERVILLIERS-METRO"}, "geometry": {"type": "Point", "coordinates": [2.404026516251405, 48.914227247147316]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fc471e09354aeccdaff1294f3611a0f3dd42592c", "fields": {"departement": "93", "stop_lat": 48.91398933649287, "code_postal": "93055", "stop_lon": 2.4112255921185435, "coord": [48.91398933649287, 2.4112255921185435], "stop_id": 5150473, "stop_desc": "15 AV DES COURTILLIERES - 93055", "stop_name": "PLACE DU MARCHE"}, "geometry": {"type": "Point", "coordinates": [2.4112255921185435, 48.91398933649287]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "62c7946d6b5266d761fcd3a76caf1cac36806c82", "fields": {"departement": "93", "stop_lat": 48.914177758098994, "code_postal": "93055", "stop_lon": 2.411716729965043, "coord": [48.914177758098994, 2.411716729965043], "stop_id": 5150474, "stop_desc": "7 AVENUE DES COURTILLIERES - 93055", "stop_name": "PLACE DU MARCHE"}, "geometry": {"type": "Point", "coordinates": [2.411716729965043, 48.914177758098994]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d07558884e138c7f420e45bb8732e810f91a731f", "fields": {"departement": "93", "stop_lat": 48.91328474196549, "code_postal": "93008", "stop_lon": 2.416828575050586, "coord": [48.91328474196549, 2.416828575050586], "stop_id": 5150475, "stop_desc": "1 RUE BALZAC - 93008", "stop_name": "LES COURTILLIERES"}, "geometry": {"type": "Point", "coordinates": [2.416828575050586, 48.91328474196549]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "28ff22daac511148ca643c2b554332438bd9614a", "fields": {"departement": "93", "stop_lat": 48.913365186523436, "code_postal": "93008", "stop_lon": 2.4174831801276664, "coord": [48.913365186523436, 2.4174831801276664], "stop_id": 5150476, "stop_desc": "FACE 1 RUE BALZAC - 93008", "stop_name": "LES COURTILLIERES"}, "geometry": {"type": "Point", "coordinates": [2.4174831801276664, 48.913365186523436]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "826368f740cf16f64390a7a79e059666f13cdb55", "fields": {"departement": "93", "stop_lat": 48.910544162666014, "code_postal": "93008", "stop_lon": 2.416129016905065, "coord": [48.910544162666014, 2.416129016905065], "stop_id": 5150477, "stop_desc": "RUE DE L'ILLUSTRATION - 93008", "stop_name": "CITE DU PONT DE PIERRE"}, "geometry": {"type": "Point", "coordinates": [2.416129016905065, 48.910544162666014]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "815cdae82823c9f98512f853ef88b032378dc59a", "fields": {"departement": "93", "stop_lat": 48.91022964359314, "code_postal": "93008", "stop_lon": 2.41608763544949, "coord": [48.91022964359314, 2.41608763544949], "stop_id": 5150478, "stop_desc": "AVENUE DE L'ILLUSTRATION - 93008", "stop_name": "CITE DU PONT DE PIERRE"}, "geometry": {"type": "Point", "coordinates": [2.41608763544949, 48.91022964359314]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cc6da89946f3500240a64bde9c6f21501f5f8de9", "fields": {"departement": "93", "stop_lat": 48.9074650418741, "code_postal": "93008", "stop_lon": 2.424113548237613, "coord": [48.9074650418741, 2.424113548237613], "stop_id": 5150479, "stop_desc": "AVENUE DE LA DIVISION LECLERC - 93008", "stop_name": "REPUBLIQUE - DIVISION LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.424113548237613, 48.9074650418741]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "79d2c09d65937067563a946265dd4c48cd038ff1", "fields": {"departement": "93", "stop_lat": 48.90657485833315, "code_postal": "93008", "stop_lon": 2.4559320596369205, "coord": [48.90657485833315, 2.4559320596369205], "stop_id": 5150491, "stop_desc": "302 AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "LAMARTINE"}, "geometry": {"type": "Point", "coordinates": [2.4559320596369205, 48.90657485833315]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3566467166c3ec0d9bf755ce0535bfdf18687582", "fields": {"departement": "93", "stop_lat": 48.91329163826983, "code_postal": "93057", "stop_lon": 2.5053744235784774, "coord": [48.91329163826983, 2.5053744235784774], "stop_id": 5150511, "stop_desc": "FACE 42 ALLEE DE MONTHYON - 93057", "stop_name": "COLONEL FABIEN"}, "geometry": {"type": "Point", "coordinates": [2.5053744235784774, 48.91329163826983]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e20fdfa1a25059ff6134de72fb199f946fe064f9", "fields": {"departement": "93", "stop_lat": 48.910494778495185, "code_postal": "93057", "stop_lon": 2.5129187507167723, "coord": [48.910494778495185, 2.5129187507167723], "stop_id": 5150515, "stop_desc": "242 AVENUE ARISTIDE BRIAND - 93057", "stop_name": "VICTOR HUGO - JEAN MOULIN"}, "geometry": {"type": "Point", "coordinates": [2.5129187507167723, 48.910494778495185]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0225027e3c5d11a018e4c0652aaf9640d7020a43", "fields": {"departement": "93", "stop_lat": 48.91794686277048, "code_postal": "93046", "stop_lon": 2.523553037655228, "coord": [48.91794686277048, 2.523553037655228], "stop_id": 5150518, "stop_desc": "138 AVENUE VAUBAN - 93046", "stop_name": "GAMBETTA"}, "geometry": {"type": "Point", "coordinates": [2.523553037655228, 48.91794686277048]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f5ec3812e419b6d030a12d4e4c76dc2ba364086c", "fields": {"departement": "93", "stop_lat": 48.920835371173375, "code_postal": "93046", "stop_lon": 2.526918136128955, "coord": [48.920835371173375, 2.526918136128955], "stop_id": 5150520, "stop_desc": "FACE 136 AVENUE COLLAVERI - 93046", "stop_name": "JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.526918136128955, 48.920835371173375]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "160c562ec5947895a9599adc6bf222d509f1d74e", "fields": {"departement": "93", "stop_lat": 48.91825555686385, "code_postal": "93046", "stop_lon": 2.5382268639728545, "coord": [48.91825555686385, 2.5382268639728545], "stop_id": 5150526, "stop_desc": "10 AVENUE ALBERT THOMAS - 93046", "stop_name": "MAIRIE DE LIVRY-GARGAN"}, "geometry": {"type": "Point", "coordinates": [2.5382268639728545, 48.91825555686385]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f7b9a6385a89f780e8e4f2c143470fc7fe00221a", "fields": {"departement": "93", "stop_lat": 48.90675435432779, "code_postal": "93008", "stop_lon": 2.4467981603729605, "coord": [48.90675435432779, 2.4467981603729605], "stop_id": 5150535, "stop_desc": "15 BOULEVARD MAURICE THOREZ - 93008", "stop_name": "MAURICE THOREZ"}, "geometry": {"type": "Point", "coordinates": [2.4467981603729605, 48.90675435432779]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7dd6877bfe7889b40bd48863ee24d1a7a19d30f8", "fields": {"departement": "93", "stop_lat": 48.90759788133574, "code_postal": "93008", "stop_lon": 2.4267723064132727, "coord": [48.90759788133574, 2.4267723064132727], "stop_id": 5150536, "stop_desc": "164 RUE DE LA REPUBLIQUE - 93008", "stop_name": "REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.4267723064132727, 48.90759788133574]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8ab145191c76b8bbe8ba38ec6a0052d38d8daed3", "fields": {"departement": "93", "stop_lat": 48.91636801953909, "code_postal": "93057", "stop_lon": 2.4967801898976902, "coord": [48.91636801953909, 2.4967801898976902], "stop_id": 5150547, "stop_desc": "0 NR - 93057", "stop_name": "ROBERT SHUMAN (DESCENTE)"}, "geometry": {"type": "Point", "coordinates": [2.4967801898976902, 48.91636801953909]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "059dd41d30b5e1544596c724de77c2cba96d13d9", "fields": {"departement": "93", "stop_lat": 48.93029813807712, "code_postal": "93005", "stop_lon": 2.4824470582545466, "coord": [48.93029813807712, 2.4824470582545466], "stop_id": 5150704, "stop_desc": "RUE CHARLES DE GAULLE - 93005", "stop_name": "ROND-POINT PIERRE SEMARD - TURGOT"}, "geometry": {"type": "Point", "coordinates": [2.4824470582545466, 48.93029813807712]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "afa77f571524a3d36936d638dd8ca9e262cf89ab", "fields": {"departement": "94", "stop_lat": 48.784301382448355, "code_postal": "94028", "stop_lon": 2.454142929287659, "coord": [48.784301382448355, 2.454142929287659], "stop_id": 5150707, "stop_desc": "AVENUE DE LA BRECHE - 94028", "stop_name": "PREFECTURE DU VAL-DE-MARNE"}, "geometry": {"type": "Point", "coordinates": [2.454142929287659, 48.784301382448355]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4dd4206e03d78b83651d9191ac9139396ed0deaf", "fields": {"departement": "94", "stop_lat": 48.805075606125854, "code_postal": "94043", "stop_lon": 2.345350596636895, "coord": [48.805075606125854, 2.345350596636895], "stop_id": 5150709, "stop_desc": "FACE 129 AVENUE CHARLES GIDE - 94043", "stop_name": "LYCEE DARIUS MILHAUD - CHARLES GIDE"}, "geometry": {"type": "Point", "coordinates": [2.345350596636895, 48.805075606125854]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f99e3551c54a9b180c9fbc7738bbf4a77aa3ab80", "fields": {"departement": "93", "stop_lat": 48.9366502179917, "code_postal": "93066", "stop_lon": 2.342711145405582, "coord": [48.9366502179917, 2.342711145405582], "stop_id": 5150712, "stop_desc": "QUAI DE SEINE - 93066", "stop_name": "RUE DU PORT"}, "geometry": {"type": "Point", "coordinates": [2.342711145405582, 48.9366502179917]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "419c13ed3635da26275c5e608e0118b2b6ba86ec", "fields": {"departement": "93", "stop_lat": 48.949555094366055, "code_postal": "93031", "stop_lon": 2.3290679494908786, "coord": [48.949555094366055, 2.3290679494908786], "stop_id": 5150719, "stop_desc": "BOULEVARD FOCH - 93031", "stop_name": "LES MOBILES"}, "geometry": {"type": "Point", "coordinates": [2.3290679494908786, 48.949555094366055]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8c4109cf4e1cb16186a3beecb6c7a17aed951694", "fields": {"departement": "93", "stop_lat": 48.9515132665837, "code_postal": "93031", "stop_lon": 2.320211987730745, "coord": [48.9515132665837, 2.320211987730745], "stop_id": 5150725, "stop_desc": "FACE 16 AVENUE DE LA REPUBLIQUE - 93031", "stop_name": "LES BEATUS"}, "geometry": {"type": "Point", "coordinates": [2.320211987730745, 48.9515132665837]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f582914eb72919059ca0ef34f6761051576586da", "fields": {"departement": "93", "stop_lat": 48.95283371042151, "code_postal": "93031", "stop_lon": 2.3164044805876465, "coord": [48.95283371042151, 2.3164044805876465], "stop_id": 5150726, "stop_desc": "PLACE DU GENERAL LECLERC - 93031", "stop_name": "ROSE BERTIN"}, "geometry": {"type": "Point", "coordinates": [2.3164044805876465, 48.95283371042151]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7b5f14cd628c746203e0353af0348f6275bd54f2", "fields": {"departement": "93", "stop_lat": 48.95482797177079, "code_postal": "93031", "stop_lon": 2.31229624732756, "coord": [48.95482797177079, 2.31229624732756], "stop_id": 5150729, "stop_desc": "AVENUE DE LATTRE DE TASSIGNY - 93031", "stop_name": "LACEPEDE"}, "geometry": {"type": "Point", "coordinates": [2.31229624732756, 48.95482797177079]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b23255ae5ad906813b9c5ed322d1de1a3e308bd5", "fields": {"departement": "93", "stop_lat": 48.95942727421821, "code_postal": "93031", "stop_lon": 2.3045151484510247, "coord": [48.95942727421821, 2.3045151484510247], "stop_id": 5150731, "stop_desc": "AVENUE DE LATTRE DE TASSIGNY - 93031", "stop_name": "PLACE FITZELIN"}, "geometry": {"type": "Point", "coordinates": [2.3045151484510247, 48.95942727421821]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "74e0dfd50a294b386ae2f1a6dca1fce28b8a96a9", "fields": {"departement": "93", "stop_lat": 48.96320837383561, "code_postal": "93031", "stop_lon": 2.29704721447519, "coord": [48.96320837383561, 2.29704721447519], "stop_id": 5150737, "stop_desc": "66 AVENUE GALLIENI - 93031", "stop_name": "RUE DE SAINT-GRATIEN"}, "geometry": {"type": "Point", "coordinates": [2.29704721447519, 48.96320837383561]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8065c9cc563b46854014d09c0d2ba2e20b10cf79", "fields": {"departement": "75", "stop_lat": 48.83320208384542, "code_postal": "75112", "stop_lon": 2.395604113614291, "coord": [48.83320208384542, 2.395604113614291], "stop_id": 5150753, "stop_desc": "319 RUE DE CHARENTON - 75112", "stop_name": "CHARENTON - JARDINIERS"}, "geometry": {"type": "Point", "coordinates": [2.395604113614291, 48.83320208384542]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "236b928648ae95e2a8db703dd110b028a8d2285f", "fields": {"departement": "75", "stop_lat": 48.83755647668036, "code_postal": "75114", "stop_lon": 2.3225231410021627, "coord": [48.83755647668036, 2.3225231410021627], "stop_id": 5150758, "stop_desc": "3 RUE JEAN ZAY - 75114", "stop_name": "JEAN ZAY - MAINE"}, "geometry": {"type": "Point", "coordinates": [2.3225231410021627, 48.83755647668036]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "71d524e7e0e0bfe603d9a39897b72986c5984bcf", "fields": {"departement": "77", "stop_lat": 48.855865360078624, "code_postal": "77083", "stop_lon": 2.5904900646456364, "coord": [48.855865360078624, 2.5904900646456364], "stop_id": 5150766, "stop_desc": "FACE 65 BIS AV JEAN JAURES - 77083", "stop_name": "C.S.T.B. - MATTEOTTI"}, "geometry": {"type": "Point", "coordinates": [2.5904900646456364, 48.855865360078624]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4d57283189cafe7695c2283687ddbd3e8a4016f8", "fields": {"departement": "95", "stop_lat": 48.96527036654493, "code_postal": "95555", "stop_lon": 2.284393265665219, "coord": [48.96527036654493, 2.284393265665219], "stop_id": 5150770, "stop_desc": "11 BOULEVARD DU MARECHAL FOCH - 95555", "stop_name": "BERTHIE ALBRECHT"}, "geometry": {"type": "Point", "coordinates": [2.284393265665219, 48.96527036654493]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "39fc4c1baf0c9e59e879a9057f3c7e5a6b80fa9f", "fields": {"departement": "93", "stop_lat": 48.91078374510361, "code_postal": "93046", "stop_lon": 2.5119789583655017, "coord": [48.91078374510361, 2.5119789583655017], "stop_id": 5150421, "stop_desc": "2-4 AVENUE JULES GUESDE - 93046", "stop_name": "VICTOR HUGO - JULES GUESDE"}, "geometry": {"type": "Point", "coordinates": [2.5119789583655017, 48.91078374510361]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b14b5445a906a46da6c5389a24206bfaf9eb0b10", "fields": {"departement": "93", "stop_lat": 48.910494778495185, "code_postal": "93057", "stop_lon": 2.5129187507167723, "coord": [48.910494778495185, 2.5129187507167723], "stop_id": 5150422, "stop_desc": "242 AVENUE ARISTIDE BRIAND - 93057", "stop_name": "VICTOR HUGO - JEAN MOULIN"}, "geometry": {"type": "Point", "coordinates": [2.5129187507167723, 48.910494778495185]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "73933cf5d8630893358becbf486bae483286d7b6", "fields": {"departement": "93", "stop_lat": 48.92019055876804, "code_postal": "93046", "stop_lon": 2.5254975415618333, "coord": [48.92019055876804, 2.5254975415618333], "stop_id": 5150428, "stop_desc": "173 AVENUE VAUBAN - 93046", "stop_name": "JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.5254975415618333, 48.92019055876804]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7fcdd4d69be158274e46731242f83ddc8b49560f", "fields": {"departement": "93", "stop_lat": 48.90653371180456, "code_postal": "93008", "stop_lon": 2.4610444314823243, "coord": [48.90653371180456, 2.4610444314823243], "stop_id": 5150440, "stop_desc": "AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "AUGUSTE DELAUNE"}, "geometry": {"type": "Point", "coordinates": [2.4610444314823243, 48.90653371180456]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "04a131a0120a8c24a6231e5899005013658bd08b", "fields": {"departement": "93", "stop_lat": 48.91398933649287, "code_postal": "93055", "stop_lon": 2.4112255921185435, "coord": [48.91398933649287, 2.4112255921185435], "stop_id": 5150446, "stop_desc": "15 AV DES COURTILLIERES - 93055", "stop_name": "PLACE DU MARCHE"}, "geometry": {"type": "Point", "coordinates": [2.4112255921185435, 48.91398933649287]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "659b5f34360ae8a8b29511d57bcd816230e26e7f", "fields": {"departement": "93", "stop_lat": 48.910544162666014, "code_postal": "93008", "stop_lon": 2.416129016905065, "coord": [48.910544162666014, 2.416129016905065], "stop_id": 5150448, "stop_desc": "RUE DE L'ILLUSTRATION - 93008", "stop_name": "CITE DU PONT DE PIERRE"}, "geometry": {"type": "Point", "coordinates": [2.416129016905065, 48.910544162666014]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b395c038d09d21c366f53a0074052b446424058e", "fields": {"departement": "93", "stop_lat": 48.906488254589036, "code_postal": "93008", "stop_lon": 2.4322236788904616, "coord": [48.906488254589036, 2.4322236788904616], "stop_id": 5150451, "stop_desc": "RUE DE LA REPUBLIQUE - 93008", "stop_name": "RUE DE LA GARE"}, "geometry": {"type": "Point", "coordinates": [2.4322236788904616, 48.906488254589036]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d9bbb08145e8b14403e24e5bcac89eb82a593747", "fields": {"departement": "93", "stop_lat": 48.90637437721665, "code_postal": "93008", "stop_lon": 2.439517229737543, "coord": [48.90637437721665, 2.439517229737543], "stop_id": 5150452, "stop_desc": "BOULEVARD LENINE - 93008", "stop_name": "CONSERVATOIRE JEAN WIENER"}, "geometry": {"type": "Point", "coordinates": [2.439517229737543, 48.90637437721665]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "11bff84aca9152aa4b9cf2ab68aca1f4eb2fecc0", "fields": {"departement": "93", "stop_lat": 48.90657485833315, "code_postal": "93008", "stop_lon": 2.4559320596369205, "coord": [48.90657485833315, 2.4559320596369205], "stop_id": 5150455, "stop_desc": "302 AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "LAMARTINE"}, "geometry": {"type": "Point", "coordinates": [2.4559320596369205, 48.90657485833315]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6e73368d697096544c9323897636d0cd32b8bbf6", "fields": {"departement": "93", "stop_lat": 48.905486896676855, "code_postal": "93008", "stop_lon": 2.4651318210827156, "coord": [48.905486896676855, 2.4651318210827156], "stop_id": 5150457, "stop_desc": "412 AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "RUE DES PEUPLIERS"}, "geometry": {"type": "Point", "coordinates": [2.4651318210827156, 48.905486896676855]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "18df24397e49428865ef64fc69919bdebf4b08db", "fields": {"departement": "93", "stop_lat": 48.91477031606463, "code_postal": "93057", "stop_lon": 2.4952890088316666, "coord": [48.91477031606463, 2.4952890088316666], "stop_id": 5150467, "stop_desc": "FACE 50 BOULEVARD DE PARIS - 93057", "stop_name": "LOUISE MICHEL"}, "geometry": {"type": "Point", "coordinates": [2.4952890088316666, 48.91477031606463]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "31ccc7ab771aacdc38ffe004ed3279675382ce38", "fields": {"departement": "93", "stop_lat": 48.91630523836681, "code_postal": "93057", "stop_lon": 2.4966845457751448, "coord": [48.91630523836681, 2.4966845457751448], "stop_id": 5150468, "stop_desc": "BOULEVARD DE PARIS - 93057", "stop_name": "ROBERT SCHUMAN"}, "geometry": {"type": "Point", "coordinates": [2.4966845457751448, 48.91630523836681]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "204bdab0bcf53167e85f366dce2433285237842c", "fields": {"departement": "93", "stop_lat": 48.91371257042071, "code_postal": "93055", "stop_lon": 2.4082118350408837, "coord": [48.91371257042071, 2.4082118350408837], "stop_id": 5150472, "stop_desc": "AVENUE DES COURTILLIERES - 93055", "stop_name": "DIVISION LECLERC - COURTILLIERES"}, "geometry": {"type": "Point", "coordinates": [2.4082118350408837, 48.91371257042071]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "932155007d74f398f5b102aad5e0982df285c185", "fields": {"departement": "93", "stop_lat": 48.907626779012226, "code_postal": "93008", "stop_lon": 2.424154719953233, "coord": [48.907626779012226, 2.424154719953233], "stop_id": 5150480, "stop_desc": "AVENUE DE LA DIVISION LECLERC - 93008", "stop_name": "REPUBLIQUE - DIVISION LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.424154719953233, 48.907626779012226]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "84ef5a6bb1331be0d8615fb53dadebdd9f391446", "fields": {"departement": "93", "stop_lat": 48.90691264968876, "code_postal": "93008", "stop_lon": 2.4296750229551916, "coord": [48.90691264968876, 2.4296750229551916], "stop_id": 5150481, "stop_desc": "FACE 140 RUE DE LA REPUBLIQUE - 93008", "stop_name": "LYCEE ANDRE SABATIER"}, "geometry": {"type": "Point", "coordinates": [2.4296750229551916, 48.90691264968876]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "31c8ac1e589edb137b95ccf40da9ae68ff4e97cd", "fields": {"departement": "93", "stop_lat": 48.90637437721665, "code_postal": "93008", "stop_lon": 2.439517229737543, "coord": [48.90637437721665, 2.439517229737543], "stop_id": 5150485, "stop_desc": "BOULEVARD LENINE - 93008", "stop_name": "CONSERVATOIRE JEAN WIENER"}, "geometry": {"type": "Point", "coordinates": [2.439517229737543, 48.90637437721665]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cfe2fc75de3c2d498b2a9a292051f31800c93d97", "fields": {"departement": "93", "stop_lat": 48.90759726631874, "code_postal": "93008", "stop_lon": 2.4488177035089067, "coord": [48.90759726631874, 2.4488177035089067], "stop_id": 5150490, "stop_desc": "PISTE GARE ROUTIERE - 93008", "stop_name": "BOBIGNY - PABLO PICASSO"}, "geometry": {"type": "Point", "coordinates": [2.4488177035089067, 48.90759726631874]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a4c23cfe38e52b684cef644f3108538261caa985", "fields": {"departement": "93", "stop_lat": 48.91206052158729, "code_postal": "93010", "stop_lon": 2.4849320000344766, "coord": [48.91206052158729, 2.4849320000344766], "stop_id": 5150505, "stop_desc": "VOIE PROMENADE - 93010", "stop_name": "RONSARD - VILLON"}, "geometry": {"type": "Point", "coordinates": [2.4849320000344766, 48.91206052158729]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5c523b01d74369486da42aaa4234b0612dce2d29", "fields": {"departement": "93", "stop_lat": 48.91477031606463, "code_postal": "93057", "stop_lon": 2.4952890088316666, "coord": [48.91477031606463, 2.4952890088316666], "stop_id": 5150507, "stop_desc": "FACE 50 BOULEVARD DE PARIS - 93057", "stop_name": "LOUISE MICHEL"}, "geometry": {"type": "Point", "coordinates": [2.4952890088316666, 48.91477031606463]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3263cebbb1587176ab8dd0a366b1541491f560c4", "fields": {"departement": "93", "stop_lat": 48.910757442503375, "code_postal": "93046", "stop_lon": 2.5115289353873873, "coord": [48.910757442503375, 2.5115289353873873], "stop_id": 5150513, "stop_desc": "FACE 10 AVENUE JULES GUESDE - 93046", "stop_name": "VICTOR HUGO - JULES GUESDE"}, "geometry": {"type": "Point", "coordinates": [2.5115289353873873, 48.910757442503375]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "51111ce33bb44f017bb6eee2ca010740f270a800", "fields": {"departement": "93", "stop_lat": 48.91320905904461, "code_postal": "93046", "stop_lon": 2.5187910125266835, "coord": [48.91320905904461, 2.5187910125266835], "stop_id": 5150516, "stop_desc": "30 AVENUE DE VAUBAN - 93046", "stop_name": "GUTENBERG"}, "geometry": {"type": "Point", "coordinates": [2.5187910125266835, 48.91320905904461]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1cfa6e81d1e520ef541c614c43cebcb859a3ae35", "fields": {"departement": "93", "stop_lat": 48.917328207596725, "code_postal": "93046", "stop_lon": 2.5226235574970115, "coord": [48.917328207596725, 2.5226235574970115], "stop_id": 5150519, "stop_desc": "123 AVENUE VAUBAN - 93046", "stop_name": "GAMBETTA"}, "geometry": {"type": "Point", "coordinates": [2.5226235574970115, 48.917328207596725]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f4dc8b18acd4706e163de917d412f8d3df380e70", "fields": {"departement": "93", "stop_lat": 48.92019055876804, "code_postal": "93046", "stop_lon": 2.5254975415618333, "coord": [48.92019055876804, 2.5254975415618333], "stop_id": 5150521, "stop_desc": "173 AVENUE VAUBAN - 93046", "stop_name": "JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.5254975415618333, 48.92019055876804]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "02e55eb6eed10e584fee2544b5a3a703a3f799da", "fields": {"departement": "93", "stop_lat": 48.922006104726435, "code_postal": "93046", "stop_lon": 2.530999987669346, "coord": [48.922006104726435, 2.530999987669346], "stop_id": 5150523, "stop_desc": "94 AVENUE COLLAVERI - 93046", "stop_name": "COLLEGES"}, "geometry": {"type": "Point", "coordinates": [2.530999987669346, 48.922006104726435]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f04b540d422ccf9fae24335e9c3afb75119f9949", "fields": {"departement": "93", "stop_lat": 48.91419001079481, "code_postal": "93010", "stop_lon": 2.4923556557697606, "coord": [48.91419001079481, 2.4923556557697606], "stop_id": 5150530, "stop_desc": "VOIE PROMENADE - 93010", "stop_name": "LYCEE CLAUDE-NICOLAS LEDOUX"}, "geometry": {"type": "Point", "coordinates": [2.4923556557697606, 48.91419001079481]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a2f142aa84a7427d9c65c4040b26ec1b09d1dac3", "fields": {"departement": "93", "stop_lat": 48.917328207596725, "code_postal": "93046", "stop_lon": 2.5226235574970115, "coord": [48.917328207596725, 2.5226235574970115], "stop_id": 5150541, "stop_desc": "123 AVENUE VAUBAN - 93046", "stop_name": "GAMBETTA"}, "geometry": {"type": "Point", "coordinates": [2.5226235574970115, 48.917328207596725]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0a97cf69cd1e8cce36db8420cec5ddc34031eb59", "fields": {"departement": "93", "stop_lat": 48.913146574234354, "code_postal": "93057", "stop_lon": 2.5062738627029915, "coord": [48.913146574234354, 2.5062738627029915], "stop_id": 5150544, "stop_desc": "34-36 ALLEE DE MONTHYON - 93057", "stop_name": "COLONEL FABIEN"}, "geometry": {"type": "Point", "coordinates": [2.5062738627029915, 48.913146574234354]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "10c3d651cf243f6957d252a162a9b8821b7d56b6", "fields": {"departement": "93", "stop_lat": 48.93029813807712, "code_postal": "93005", "stop_lon": 2.4824470582545466, "coord": [48.93029813807712, 2.4824470582545466], "stop_id": 5150702, "stop_desc": "RUE CHARLES DE GAULLE - 93005", "stop_name": "ROND-POINT PIERRE SEMARD - TURGOT"}, "geometry": {"type": "Point", "coordinates": [2.4824470582545466, 48.93029813807712]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fc79019396f91667b1e78f4e64df3be5958a6fa4", "fields": {"departement": "93", "stop_lat": 48.95279015464042, "code_postal": "93031", "stop_lon": 2.3269660448838123, "coord": [48.95279015464042, 2.3269660448838123], "stop_id": 5150720, "stop_desc": "49 RUE DU COMMANDANT LOUIS BOUCHET - 93031", "stop_name": "AVENUE DE LA MARNE - COMMANDANT LOUIS BOUCHET"}, "geometry": {"type": "Point", "coordinates": [2.3269660448838123, 48.95279015464042]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8ee679da7dc7a07d6d531cfd82c99be55e955f07", "fields": {"departement": "93", "stop_lat": 48.953050253528204, "code_postal": "93031", "stop_lon": 2.322121848600631, "coord": [48.953050253528204, 2.322121848600631], "stop_id": 5150722, "stop_desc": "FACE 34 RUE DU COMMANDANT LOUIS BOUCHET - 93031", "stop_name": "LYCEE D'EPINAY-SUR-SEINE"}, "geometry": {"type": "Point", "coordinates": [2.322121848600631, 48.953050253528204]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1d8583b92f1e9713adc545f38e5902679ac90bec", "fields": {"departement": "93", "stop_lat": 48.9526179031098, "code_postal": "93031", "stop_lon": 2.315695008580914, "coord": [48.9526179031098, 2.315695008580914], "stop_id": 5150727, "stop_desc": "RUE DE LA REPUBLIQUE - 93031", "stop_name": "ROSE BERTIN"}, "geometry": {"type": "Point", "coordinates": [2.315695008580914, 48.9526179031098]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9276099456198cf7fb943dc48f23eeb0c2571049", "fields": {"departement": "93", "stop_lat": 48.96144666587019, "code_postal": "93031", "stop_lon": 2.296093244588012, "coord": [48.96144666587019, 2.296093244588012], "stop_id": 5150734, "stop_desc": "AVENUE JOFFRE - 93031", "stop_name": "CYGNE D'ENGHIEN - JOFFRE"}, "geometry": {"type": "Point", "coordinates": [2.296093244588012, 48.96144666587019]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2b31eb343cbc42696fe1d25fcbadf2f8a61d5dbb", "fields": {"departement": "93", "stop_lat": 48.96121297521404, "code_postal": "93031", "stop_lon": 2.2959842493910503, "coord": [48.96121297521404, 2.2959842493910503], "stop_id": 5150735, "stop_desc": "95-97 AVENUE JOFFRE - 93031", "stop_name": "CYGNE D'ENGHIEN - JOFFRE"}, "geometry": {"type": "Point", "coordinates": [2.2959842493910503, 48.96121297521404]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a2b30d1d87f378d0157ddb5650f53a41dd1f0ca6", "fields": {"departement": "93", "stop_lat": 48.96339730303593, "code_postal": "93031", "stop_lon": 2.2976748852355953, "coord": [48.96339730303593, 2.2976748852355953], "stop_id": 5150736, "stop_desc": "41 AVENUE GALLIENI - 93031", "stop_name": "RUE DE SAINT-GRATIEN"}, "geometry": {"type": "Point", "coordinates": [2.2976748852355953, 48.96339730303593]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a81356c0ef57e0ec6374cb35fb0c3c0adf01fbb6", "fields": {"departement": "93", "stop_lat": 48.96539316212714, "code_postal": "93031", "stop_lon": 2.3002529694434806, "coord": [48.96539316212714, 2.3002529694434806], "stop_id": 5150738, "stop_desc": "7 AVENUE GALLIENI - 93031", "stop_name": "LIMITE DES DEPARTEMENTS"}, "geometry": {"type": "Point", "coordinates": [2.3002529694434806, 48.96539316212714]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e730ba63317ee018202a970928af9981d798c56c", "fields": {"departement": "95", "stop_lat": 48.96880955751207, "code_postal": "95210", "stop_lon": 2.305396438763414, "coord": [48.96880955751207, 2.305396438763414], "stop_id": 5150740, "stop_desc": "FACE 3 BOULEVARD COTTE - 95210", "stop_name": "CASINO"}, "geometry": {"type": "Point", "coordinates": [2.305396438763414, 48.96880955751207]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "98a928004b4b875431405ac4a31ad3b3ba346e61", "fields": {"departement": "95", "stop_lat": 48.969555053657814, "code_postal": "95210", "stop_lon": 2.3039627475464566, "coord": [48.969555053657814, 2.3039627475464566], "stop_id": 5150741, "stop_desc": "FACE 4 AVENUE DE CEINTURE - 95210", "stop_name": "CASINO"}, "geometry": {"type": "Point", "coordinates": [2.3039627475464566, 48.969555053657814]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2b3b0a8ebd002439f6da7535549592eb3050b71a", "fields": {"departement": "95", "stop_lat": 48.97217114640024, "code_postal": "95210", "stop_lon": 2.3077559091969886, "coord": [48.97217114640024, 2.3077559091969886], "stop_id": 5150743, "stop_desc": "FACE 3 RUE DE L'ARRIVEE - 95210", "stop_name": "GARE D'ENGHIEN-LES-BAINS"}, "geometry": {"type": "Point", "coordinates": [2.3077559091969886, 48.97217114640024]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "71d8278f2c2444bdaadbc0f25d4ab3637b19e731", "fields": {"departement": "95", "stop_lat": 48.976763931744124, "code_postal": "95268", "stop_lon": 2.390728520601148, "coord": [48.976763931744124, 2.390728520601148], "stop_id": 5150760, "stop_desc": "PISTE GARE ROUTIERE - 95268", "stop_name": "GARGES - SARCELLES RER"}, "geometry": {"type": "Point", "coordinates": [2.390728520601148, 48.976763931744124]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2e9cabd62067dfd50e6a62ceae2e67c207035b4b", "fields": {"departement": "75", "stop_lat": 48.845173856761555, "code_postal": "75112", "stop_lon": 2.3716514782199765, "coord": [48.845173856761555, 2.3716514782199765], "stop_id": 5150763, "stop_desc": "FACE 207 RUE DE BERCY - 75112", "stop_name": "GARE DE LYON - VAN GOGH"}, "geometry": {"type": "Point", "coordinates": [2.3716514782199765, 48.845173856761555]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8fec4bb1943725bd2cd788374880a6220c4ff04b", "fields": {"departement": "93", "stop_lat": 48.9580245491208, "code_postal": "93031", "stop_lon": 2.3017047969455877, "coord": [48.9580245491208, 2.3017047969455877], "stop_id": 5150775, "stop_desc": "FACE 42 AVENUE JOFFRE - 93031", "stop_name": "JOFFRE CINEMA"}, "geometry": {"type": "Point", "coordinates": [2.3017047969455877, 48.9580245491208]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "46a705663d8c9e4ed6f79048a16ab48999278b46", "fields": {"departement": "93", "stop_lat": 48.95823127515412, "code_postal": "93031", "stop_lon": 2.3018138297170445, "coord": [48.95823127515412, 2.3018138297170445], "stop_id": 5150776, "stop_desc": "42 AVENUE JOFFRE - 93031", "stop_name": "JOFFRE CINEMA"}, "geometry": {"type": "Point", "coordinates": [2.3018138297170445, 48.95823127515412]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2b4f57929db3cb9665b225f740050a0157e96909", "fields": {"departement": "93", "stop_lat": 48.95009070059307, "code_postal": "93039", "stop_lon": 2.3068270072880397, "coord": [48.95009070059307, 2.3068270072880397], "stop_id": 5150780, "stop_desc": "AVENUE DU PONT D'EPINAY - 93039", "stop_name": "PONT D'EPINAY"}, "geometry": {"type": "Point", "coordinates": [2.3068270072880397, 48.95009070059307]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "634b2aca13d21ea68f4ee12d85baf5e972545b08", "fields": {"departement": "92", "stop_lat": 48.94662128647738, "code_postal": "92036", "stop_lon": 2.304823410121321, "coord": [48.94662128647738, 2.304823410121321], "stop_id": 5150782, "stop_desc": "FACE 139 AVENUE MARCEL PAUL - 92036", "stop_name": "DEQUEVAUVILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.304823410121321, 48.94662128647738]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a92c469f42c53da7ceee1583130dd63d247b1263", "fields": {"departement": "92", "stop_lat": 48.94376578832819, "code_postal": "92078", "stop_lon": 2.3148118977226675, "coord": [48.94376578832819, 2.3148118977226675], "stop_id": 5150785, "stop_desc": "BOULEVARD CHARLES DE GAULLE - 92078", "stop_name": "COMMANDANT D'ESTIENNE D'ORVES"}, "geometry": {"type": "Point", "coordinates": [2.3148118977226675, 48.94376578832819]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cd6ab472351ca9790b3651ce495ecd1206b56618", "fields": {"departement": "92", "stop_lat": 48.94275078777386, "code_postal": "92078", "stop_lon": 2.31769096078661, "coord": [48.94275078777386, 2.31769096078661], "stop_id": 5150786, "stop_desc": "FACE 270 BOULEVARD CHARLES DE GAULLE - 92078", "stop_name": "ZONE INDUSTRIELLE NORD"}, "geometry": {"type": "Point", "coordinates": [2.31769096078661, 48.94275078777386]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e2f8634d448cff3fe768904722cbc016039a5216", "fields": {"departement": "92", "stop_lat": 48.93510412850019, "code_postal": "92078", "stop_lon": 2.326587617791972, "coord": [48.93510412850019, 2.326587617791972], "stop_id": 5150793, "stop_desc": "AVENUE DE VERDUN - 92078", "stop_name": "LA NOUE"}, "geometry": {"type": "Point", "coordinates": [2.326587617791972, 48.93510412850019]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a8670dc99613f530dfba7d4e62fea756198f328a", "fields": {"departement": "92", "stop_lat": 48.933594381715906, "code_postal": "92078", "stop_lon": 2.327106262099634, "coord": [48.933594381715906, 2.327106262099634], "stop_id": 5150795, "stop_desc": "36 RUE DU HAUT DE LA NOUE - 92078", "stop_name": "ACACIAS"}, "geometry": {"type": "Point", "coordinates": [2.327106262099634, 48.933594381715906]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a9efa520352668ab840eca83ec72cdacf744cd3c", "fields": {"departement": "92", "stop_lat": 48.929989857586115, "code_postal": "92078", "stop_lon": 2.320205431224248, "coord": [48.929989857586115, 2.320205431224248], "stop_id": 5150798, "stop_desc": "29 AVENUE DE LA LONGUE BERTRANE - 92078", "stop_name": "LONGUE BERTRANE"}, "geometry": {"type": "Point", "coordinates": [2.320205431224248, 48.929989857586115]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f76b71fbdd6a9b4a2b376a10126472a152aa2098", "fields": {"departement": "95", "stop_lat": 48.98329613500791, "code_postal": "95252", "stop_lon": 2.2291738965827066, "coord": [48.98329613500791, 2.2291738965827066], "stop_id": 5150810, "stop_desc": "RUE DU GENERAL LECLERC - 95252", "stop_name": "EGLISE DE FRANCONVILLE"}, "geometry": {"type": "Point", "coordinates": [2.2291738965827066, 48.98329613500791]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5639d164d6d43cd9d678eb5efb3aeeef0559f370", "fields": {"departement": "95", "stop_lat": 48.979725402030006, "code_postal": "95252", "stop_lon": 2.2358983985102747, "coord": [48.979725402030006, 2.2358983985102747], "stop_id": 5150811, "stop_desc": "1 RUE DE PARIS - 95252", "stop_name": "MAISON BLEUE"}, "geometry": {"type": "Point", "coordinates": [2.2358983985102747, 48.979725402030006]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cbd1606f18fe26e914668ee4242fc57b9f8211dc", "fields": {"departement": "95", "stop_lat": 48.974874368958574, "code_postal": "95582", "stop_lon": 2.249381678020889, "coord": [48.974874368958574, 2.249381678020889], "stop_id": 5150814, "stop_desc": "19 BOULEVARD GAMBETTA - 95582", "stop_name": "GAMBETTA"}, "geometry": {"type": "Point", "coordinates": [2.249381678020889, 48.974874368958574]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a0b811bdbf60759d02b1d2b90377799f93f67449", "fields": {"departement": "95", "stop_lat": 48.97002172543155, "code_postal": "95582", "stop_lon": 2.2627532295241366, "coord": [48.97002172543155, 2.2627532295241366], "stop_id": 5150819, "stop_desc": "6 BOULEVARD CHARLES DE GAULLE - 95582", "stop_name": "GARE DE SANNOIS"}, "geometry": {"type": "Point", "coordinates": [2.2627532295241366, 48.97002172543155]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b21759f8f03cc7f7a98a9608cf8480d3cd01b775", "fields": {"departement": "95", "stop_lat": 48.967717212698936, "code_postal": "95582", "stop_lon": 2.2713283393393366, "coord": [48.967717212698936, 2.2713283393393366], "stop_id": 5150823, "stop_desc": "101 BOULEVARD MAURICE BERTEAUX - 95582", "stop_name": "LEON PROTAIS"}, "geometry": {"type": "Point", "coordinates": [2.2713283393393366, 48.967717212698936]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ea05be0cea0edea53dabf1fb4a847305b39549c2", "fields": {"departement": "95", "stop_lat": 48.96405006721757, "code_postal": "95555", "stop_lon": 2.2888302358118695, "coord": [48.96405006721757, 2.2888302358118695], "stop_id": 5150828, "stop_desc": "80 BOULEVARD DU MARECHAL FOCH - 95555", "stop_name": "SAINT-GRATIEN-RER-GUYNEMER"}, "geometry": {"type": "Point", "coordinates": [2.2888302358118695, 48.96405006721757]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2e5e4152b0c2decad752b053dcd0113f0c566509", "fields": {"departement": "93", "stop_lat": 48.9580245491208, "code_postal": "93031", "stop_lon": 2.3017047969455877, "coord": [48.9580245491208, 2.3017047969455877], "stop_id": 5150832, "stop_desc": "FACE 42 AVENUE JOFFRE - 93031", "stop_name": "JOFFRE CINEMA"}, "geometry": {"type": "Point", "coordinates": [2.3017047969455877, 48.9580245491208]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cb46203a122716ca5387eef29afb74fca736cf1d", "fields": {"departement": "93", "stop_lat": 48.9555365638021, "code_postal": "93031", "stop_lon": 2.306482652652806, "coord": [48.9555365638021, 2.306482652652806], "stop_id": 5150835, "stop_desc": "FACE 119 RUE DE PARIS - 93031", "stop_name": "GILBERT BONNEMAISON"}, "geometry": {"type": "Point", "coordinates": [2.306482652652806, 48.9555365638021]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ef683dbdf3cfb9546b75de4309d72f324d53c72f", "fields": {"departement": "93", "stop_lat": 48.95009070059307, "code_postal": "93039", "stop_lon": 2.3068270072880397, "coord": [48.95009070059307, 2.3068270072880397], "stop_id": 5150837, "stop_desc": "AVENUE DU PONT D'EPINAY - 93039", "stop_name": "PONT D'EPINAY"}, "geometry": {"type": "Point", "coordinates": [2.3068270072880397, 48.95009070059307]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1514b9f6b928977be4a42f98fc53922cbc59911c", "fields": {"departement": "92", "stop_lat": 48.946459397738785, "code_postal": "92036", "stop_lon": 2.3043596243230122, "coord": [48.946459397738785, 2.3043596243230122], "stop_id": 5150838, "stop_desc": "FACE 144 BOULEVARD DEQUEVAUVILLIERS - 92036", "stop_name": "DEQUEVAUVILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.3043596243230122, 48.946459397738785]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "007f9995761b6b6558db9075d179f76e9e3458af", "fields": {"departement": "92", "stop_lat": 48.94376578832819, "code_postal": "92078", "stop_lon": 2.3148118977226675, "coord": [48.94376578832819, 2.3148118977226675], "stop_id": 5150842, "stop_desc": "BOULEVARD CHARLES DE GAULLE - 92078", "stop_name": "COMMANDANT D'ESTIENNE D'ORVES"}, "geometry": {"type": "Point", "coordinates": [2.3148118977226675, 48.94376578832819]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "33dba5dfd4aad42240fd6234e92c481c56f421f6", "fields": {"departement": "92", "stop_lat": 48.93697316078468, "code_postal": "92078", "stop_lon": 2.324254580584753, "coord": [48.93697316078468, 2.324254580584753], "stop_id": 5150847, "stop_desc": "AVENUE DU MARECHAL LECLERC - 92078", "stop_name": "MARECHAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.324254580584753, 48.93697316078468]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f436fd9c4f66d98b5799d9c3b7399f8d4386c4f5", "fields": {"departement": "92", "stop_lat": 48.933118072070265, "code_postal": "92078", "stop_lon": 2.3270381543108196, "coord": [48.933118072070265, 2.3270381543108196], "stop_id": 5150851, "stop_desc": "RUE DU HAUT DE LA NOUE - 92078", "stop_name": "ACACIAS"}, "geometry": {"type": "Point", "coordinates": [2.3270381543108196, 48.933118072070265]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "408e69f68e15757da614c99b8b48919468ce10ef", "fields": {"departement": "92", "stop_lat": 48.930862213729235, "code_postal": "92078", "stop_lon": 2.3253882039394207, "coord": [48.930862213729235, 2.3253882039394207], "stop_id": 5150853, "stop_desc": "FACE 8 AVENUE JEAN JAURES - 92078", "stop_name": "AMPERE"}, "geometry": {"type": "Point", "coordinates": [2.3253882039394207, 48.930862213729235]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e0b4eae6f1daf80fcbe0daa03b91e823d8c9d62b", "fields": {"departement": "95", "stop_lat": 48.97806731992255, "code_postal": "95582", "stop_lon": 2.241253264559096, "coord": [48.97806731992255, 2.241253264559096], "stop_id": 5150862, "stop_desc": "108 BOULEVARD GAMBETTA - 95582", "stop_name": "COLLEGE JEAN MOULIN"}, "geometry": {"type": "Point", "coordinates": [2.241253264559096, 48.97806731992255]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7e8151a8723d434d894418ed69dd3a95f175bf2e", "fields": {"departement": "95", "stop_lat": 48.989138863422475, "code_postal": "95252", "stop_lon": 2.230868564599863, "coord": [48.989138863422475, 2.230868564599863], "stop_id": 5150865, "stop_desc": "54 BOULEVARD MAURICE BERTEAUX - 95252", "stop_name": "MAURICE BERTEAUX"}, "geometry": {"type": "Point", "coordinates": [2.230868564599863, 48.989138863422475]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "979b7e42eec634e82e12362993ef26d4aefdb4cb", "fields": {"departement": "92", "stop_lat": 48.935742636586, "code_postal": "92078", "stop_lon": 2.334362808773992, "coord": [48.935742636586, 2.334362808773992], "stop_id": 5150868, "stop_desc": "AVENUE DE VERDUN - 92078", "stop_name": "MAIRIE DE VILLENEUVE-LA-GARENNE"}, "geometry": {"type": "Point", "coordinates": [2.334362808773992, 48.935742636586]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3077dae97806456c86f35c26f5baa783afab3580", "fields": {"departement": "95", "stop_lat": 48.961839731006414, "code_postal": "95197", "stop_lon": 2.3268004723925837, "coord": [48.961839731006414, 2.3268004723925837], "stop_id": 5150877, "stop_desc": "FACE 18 RUE ABEL FAUVEAU - 95197", "stop_name": "ABEL FAUVEAU"}, "geometry": {"type": "Point", "coordinates": [2.3268004723925837, 48.961839731006414]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "140cda88b16a2e235a7d3bf82bd2803bdbe986c7", "fields": {"departement": "95", "stop_lat": 48.97576896393597, "code_postal": "95197", "stop_lon": 2.3268932183240683, "coord": [48.97576896393597, 2.3268932183240683], "stop_id": 5150894, "stop_desc": "20-22 RUE CHARLES DE GAULLE - 95197", "stop_name": "EGLISE DE DEUIL-LA-BARRE"}, "geometry": {"type": "Point", "coordinates": [2.3268932183240683, 48.97576896393597]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "80f11785b8e093d8208bbea08bc95e8ce6f67481", "fields": {"departement": "95", "stop_lat": 48.97515832288238, "code_postal": "95427", "stop_lon": 2.3361079735458423, "coord": [48.97515832288238, 2.3361079735458423], "stop_id": 5150898, "stop_desc": "40 AVENUE DE LA GARE - 95427", "stop_name": "GARE DE DEUIL - MONTMAGNY"}, "geometry": {"type": "Point", "coordinates": [2.3361079735458423, 48.97515832288238]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4ddab5ac010335b5413872cd5d1d3463fe3b74b3", "fields": {"departement": "93", "stop_lat": 48.96710337437886, "code_postal": "93059", "stop_lon": 2.363925187769817, "coord": [48.96710337437886, 2.363925187769817], "stop_id": 5150907, "stop_desc": "28 BOULEVARD CHARLES DE GAULLE - 93059", "stop_name": "ALCIDE D'ORBIGNY"}, "geometry": {"type": "Point", "coordinates": [2.363925187769817, 48.96710337437886]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f61a1fa210da5929a58ba2ab28f7198540fe7173", "fields": {"departement": "93", "stop_lat": 48.96453277877218, "code_postal": "93059", "stop_lon": 2.3657527627930537, "coord": [48.96453277877218, 2.3657527627930537], "stop_id": 5150909, "stop_desc": "46 BOULEVARD PASTEUR - 93059", "stop_name": "ETIENNE DOLET - PASTEUR"}, "geometry": {"type": "Point", "coordinates": [2.3657527627930537, 48.96453277877218]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d1e61495c5acaca472c5450b057bdb2dfe22ccfd", "fields": {"departement": "93", "stop_lat": 48.96722020943238, "code_postal": "93059", "stop_lon": 2.363884300340911, "coord": [48.96722020943238, 2.363884300340911], "stop_id": 5150923, "stop_desc": "23 BOULEVARD CHARLES DE GAULLE - 93059", "stop_name": "ALCIDE D'ORBIGNY"}, "geometry": {"type": "Point", "coordinates": [2.363884300340911, 48.96722020943238]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "928f97c95936c7f9271171f20497b98b3eaf2b3f", "fields": {"departement": "92", "stop_lat": 48.89638495152772, "code_postal": "92026", "stop_lon": 2.251791075763871, "coord": [48.89638495152772, 2.251791075763871], "stop_id": 5151254, "stop_desc": "RUE BAUDIN - 92026", "stop_name": "ALMA BAUDIN"}, "geometry": {"type": "Point", "coordinates": [2.251791075763871, 48.89638495152772]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "54f429c1027364d1a03402e407be3a4e4bc0e7ec", "fields": {"departement": "93", "stop_lat": 48.96376745970183, "code_postal": "93059", "stop_lon": 2.3713072012659175, "coord": [48.96376745970183, 2.3713072012659175], "stop_id": 5151271, "stop_desc": "AVENUE LEDRU ROLLIN - 93059", "stop_name": "GARE DE PIERREFITTE - STAINS RER"}, "geometry": {"type": "Point", "coordinates": [2.3713072012659175, 48.96376745970183]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "53737808c0745a73fa4c06bde32f93fad6906c46", "fields": {"departement": "93", "stop_lat": 48.96636579066507, "code_postal": "93059", "stop_lon": 2.3668183934090736, "coord": [48.96636579066507, 2.3668183934090736], "stop_id": 5151272, "stop_desc": "47-49 BOULEVARD CHARLES DE GAULLE - 93059", "stop_name": "ETIENNE DOLET - DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.3668183934090736, 48.96636579066507]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a33215146d64dc6124b56b20f7742a399b889569", "fields": {"departement": "93", "stop_lat": 48.96344860443361, "code_postal": "93079", "stop_lon": 2.3440514965489405, "coord": [48.96344860443361, 2.3440514965489405], "stop_id": 5151282, "stop_desc": "FACE 49 RUE ROGER SALENGRO - 93079", "stop_name": "EGLISE DE VILLETANEUSE"}, "geometry": {"type": "Point", "coordinates": [2.3440514965489405, 48.96344860443361]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cb6bea27bc0a640cdf42c52f56766b4ef3a83b30", "fields": {"departement": "93", "stop_lat": 48.95314107920405, "code_postal": "93031", "stop_lon": 2.3368043817358464, "coord": [48.95314107920405, 2.3368043817358464], "stop_id": 5151290, "stop_desc": "FACE 133 ROUTE DE SAINT-LEU - 93031", "stop_name": "J.-B. CLEMENT - CARNOT"}, "geometry": {"type": "Point", "coordinates": [2.3368043817358464, 48.95314107920405]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "78e2c2f8b7cbcd1e5f1515d383c8889c7431f0af", "fields": {"departement": "95", "stop_lat": 48.95857752117405, "code_postal": "95197", "stop_lon": 2.3262279600161255, "coord": [48.95857752117405, 2.3262279600161255], "stop_id": 5151295, "stop_desc": "AVENUE JEAN JAURES - 95197", "stop_name": "GARE D'EPINAY-VILLETANEUSE"}, "geometry": {"type": "Point", "coordinates": [2.3262279600161255, 48.95857752117405]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6d4add3f5b7b9877df4b1a9014d44842f86ca2c0", "fields": {"departement": "93", "stop_lat": 48.953050253528204, "code_postal": "93031", "stop_lon": 2.322121848600631, "coord": [48.953050253528204, 2.322121848600631], "stop_id": 5151300, "stop_desc": "FACE 34 RUE DU COMMANDANT LOUIS BOUCHET - 93031", "stop_name": "LYCEE D'EPINAY-SUR-SEINE"}, "geometry": {"type": "Point", "coordinates": [2.322121848600631, 48.953050253528204]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "071b1f247d9e65234ca51f3f07fd502f7a63d968", "fields": {"departement": "93", "stop_lat": 48.95181883855375, "code_postal": "93031", "stop_lon": 2.320375628968274, "coord": [48.95181883855375, 2.320375628968274], "stop_id": 5151302, "stop_desc": "35 AVENUE DE LA REPUBLIQUE - 93031", "stop_name": "LES BEATUS"}, "geometry": {"type": "Point", "coordinates": [2.320375628968274, 48.95181883855375]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "65c3bdd3320be7303671f4b249ac10ff8e5215a7", "fields": {"departement": "93", "stop_lat": 48.953632548033376, "code_postal": "93031", "stop_lon": 2.311396212017012, "coord": [48.953632548033376, 2.311396212017012], "stop_id": 5151306, "stop_desc": "28 RUE DE PARIS - 93031", "stop_name": "PLACE RENE CLAIR"}, "geometry": {"type": "Point", "coordinates": [2.311396212017012, 48.953632548033376]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9a84b53779590f5a8777b2b26ba38bf107fcd416", "fields": {"departement": "95", "stop_lat": 48.95514445321752, "code_postal": "95018", "stop_lon": 2.289261594242082, "coord": [48.95514445321752, 2.289261594242082], "stop_id": 5151317, "stop_desc": "378 RUE D'EPINAY - 95018", "stop_name": "ILE DE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.289261594242082, 48.95514445321752]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7f6a27b015e46cff19f76fc275ceb4ec531a8e97", "fields": {"departement": "95", "stop_lat": 48.95497265252175, "code_postal": "95018", "stop_lon": 2.2867099539738462, "coord": [48.95497265252175, 2.2867099539738462], "stop_id": 5151318, "stop_desc": "305 RUE D'EPINAY - 95018", "stop_name": "SAINT-FERDINAND"}, "geometry": {"type": "Point", "coordinates": [2.2867099539738462, 48.95497265252175]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9f81d885c686085f19ed1d7eb8548f0baffd3e5a", "fields": {"departement": "95", "stop_lat": 48.95161657732276, "code_postal": "95018", "stop_lon": 2.2779530748422707, "coord": [48.95161657732276, 2.2779530748422707], "stop_id": 5151323, "stop_desc": "FACE 209 RUE D'EPINAY - 95018", "stop_name": "BELVEDERE"}, "geometry": {"type": "Point", "coordinates": [2.2779530748422707, 48.95161657732276]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "28ff2e30221dfb9fe9144fb050b4719b49487c9f", "fields": {"departement": "95", "stop_lat": 48.94931086112727, "code_postal": "95018", "stop_lon": 2.268431857663438, "coord": [48.94931086112727, 2.268431857663438], "stop_id": 5151328, "stop_desc": "87 RUE D'EPINAY - 95018", "stop_name": "BERINGIER"}, "geometry": {"type": "Point", "coordinates": [2.268431857663438, 48.94931086112727]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "21d68c055852da8668009790a81464886559a2d3", "fields": {"departement": "95", "stop_lat": 48.95025988461632, "code_postal": "95018", "stop_lon": 2.2624951307498824, "coord": [48.95025988461632, 2.2624951307498824], "stop_id": 5151332, "stop_desc": "FACE 48 AVENUE DE STALINGRAD - 95018", "stop_name": "HENRI VASSEUR"}, "geometry": {"type": "Point", "coordinates": [2.2624951307498824, 48.95025988461632]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e2125777aebbf50264daecd8a40f756284338458", "fields": {"departement": "92", "stop_lat": 48.78036417660201, "code_postal": "92071", "stop_lon": 2.2816982237256243, "coord": [48.78036417660201, 2.2816982237256243], "stop_id": 5151445, "stop_desc": "5 AVENUE DE LA GARE - 92071", "stop_name": "ROBINSON RER"}, "geometry": {"type": "Point", "coordinates": [2.2816982237256243, 48.78036417660201]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a883ed879814367f915f4702223405d92ecac395", "fields": {"departement": "92", "stop_lat": 48.78036417660201, "code_postal": "92071", "stop_lon": 2.2816982237256243, "coord": [48.78036417660201, 2.2816982237256243], "stop_id": 5151446, "stop_desc": "5 AVENUE DE LA GARE - 92071", "stop_name": "ROBINSON RER"}, "geometry": {"type": "Point", "coordinates": [2.2816982237256243, 48.78036417660201]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cd8bfd0e5be1873020c872a0a12db3c4b4e14b43", "fields": {"departement": "92", "stop_lat": 48.78191322606919, "code_postal": "92060", "stop_lon": 2.2702993313233732, "coord": [48.78191322606919, 2.2702993313233732], "stop_id": 5151450, "stop_desc": "34 AVENUE DE LA REPUBLIQUE - 92060", "stop_name": "CITE BASSE"}, "geometry": {"type": "Point", "coordinates": [2.2702993313233732, 48.78191322606919]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "14c4898402a79f3ee1bf4f41dc72fb6decf2b90c", "fields": {"departement": "92", "stop_lat": 48.78290831132887, "code_postal": "92060", "stop_lon": 2.2658641938640955, "coord": [48.78290831132887, 2.2658641938640955], "stop_id": 5151451, "stop_desc": "AVENUE CHARLES DE GAULLE - 92060", "stop_name": "L'ESCALIER"}, "geometry": {"type": "Point", "coordinates": [2.2658641938640955, 48.78290831132887]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c941bc52e9f06ce896461c17cc0dbd33ada580c7", "fields": {"departement": "92", "stop_lat": 48.781618640138575, "code_postal": "92060", "stop_lon": 2.2588889381999437, "coord": [48.781618640138575, 2.2588889381999437], "stop_id": 5151458, "stop_desc": "FACE 7 RUE PIERRE D'ARTAGNAN - 92060", "stop_name": "DANIEL DE FOE"}, "geometry": {"type": "Point", "coordinates": [2.2588889381999437, 48.781618640138575]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6e558de46826f02b9873d63efb325bc08a72c483", "fields": {"departement": "92", "stop_lat": 48.78797297359984, "code_postal": "92023", "stop_lon": 2.2586617167369663, "coord": [48.78797297359984, 2.2586617167369663], "stop_id": 5151461, "stop_desc": "1-3 RUE DE LA CAVEE - 92023", "stop_name": "LA CAVEE"}, "geometry": {"type": "Point", "coordinates": [2.2586617167369663, 48.78797297359984]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "256c2014c3da92f8f110e519184ece360a9baa50", "fields": {"departement": "92", "stop_lat": 48.80120565130998, "code_postal": "92020", "stop_lon": 2.278601065075664, "coord": [48.80120565130998, 2.278601065075664], "stop_id": 5151467, "stop_desc": "70 BIS RUE PIERRE BROSSOLETTE - 92020", "stop_name": "JEANNE D'ARC"}, "geometry": {"type": "Point", "coordinates": [2.278601065075664, 48.80120565130998]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c7d508a14372698af0625637ff7d6b68bae790c0", "fields": {"departement": "92", "stop_lat": 48.80182791343605, "code_postal": "92023", "stop_lon": 2.265987844077671, "coord": [48.80182791343605, 2.265987844077671], "stop_id": 5151471, "stop_desc": "FACE 7 RUE PAUL VAILLANT COUTURIER - 92023", "stop_name": "MARCHE DE CLAMART"}, "geometry": {"type": "Point", "coordinates": [2.265987844077671, 48.80182791343605]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6940480b061a28a96e3c05ea8c5d3beea1663889", "fields": {"departement": "92", "stop_lat": 48.804281619719895, "code_postal": "92023", "stop_lon": 2.266038901605573, "coord": [48.804281619719895, 2.266038901605573], "stop_id": 5151474, "stop_desc": "65 AVENUE JEAN JAURES - 92023", "stop_name": "GABRIEL PERI"}, "geometry": {"type": "Point", "coordinates": [2.266038901605573, 48.804281619719895]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aab3414b24dcbd011ef8d5f2088f7e6521d5c67e", "fields": {"departement": "92", "stop_lat": 48.809938467265454, "code_postal": "92023", "stop_lon": 2.2721955035508885, "coord": [48.809938467265454, 2.2721955035508885], "stop_id": 5151477, "stop_desc": "178 AVENUE VICTOR HUGO - 92023", "stop_name": "LAZARE - CARNOT"}, "geometry": {"type": "Point", "coordinates": [2.2721955035508885, 48.809938467265454]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5615ce1341588588de3fe9005d9c919f514690f8", "fields": {"departement": "92", "stop_lat": 48.81018855143633, "code_postal": "92023", "stop_lon": 2.269378348987505, "coord": [48.81018855143633, 2.269378348987505], "stop_id": 5151478, "stop_desc": "179 BIS AVENUE JEAN JAURES - 92023", "stop_name": "LAZARE - CARNOT"}, "geometry": {"type": "Point", "coordinates": [2.269378348987505, 48.81018855143633]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0c1b689b12d316a80cc57a51f27fb0c8efe6e772", "fields": {"departement": "92", "stop_lat": 48.814111354918694, "code_postal": "92046", "stop_lon": 2.2770758889235725, "coord": [48.814111354918694, 2.2770758889235725], "stop_id": 5151482, "stop_desc": "FACE 5 BOULEVARD DES FRERES VIGOUROUX - 92046", "stop_name": "CLOS MONTHOLON"}, "geometry": {"type": "Point", "coordinates": [2.2770758889235725, 48.814111354918694]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b4fe3569ece075d266e47a33cda3589a428709cf", "fields": {"departement": "92", "stop_lat": 48.81614397966697, "code_postal": "92075", "stop_lon": 2.2799043060567024, "coord": [48.81614397966697, 2.2799043060567024], "stop_id": 5151483, "stop_desc": "FACE 14 RUE LARMEROUX - 92075", "stop_name": "STADE DE VANVES"}, "geometry": {"type": "Point", "coordinates": [2.2799043060567024, 48.81614397966697]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a868f70dd8f5a37166a6654f6efed09ea106670a", "fields": {"departement": "92", "stop_lat": 48.816413604778866, "code_postal": "92075", "stop_lon": 2.279890398603526, "coord": [48.816413604778866, 2.279890398603526], "stop_id": 5151484, "stop_desc": "12 RUE LARMEROUX - 92075", "stop_name": "STADE DE VANVES"}, "geometry": {"type": "Point", "coordinates": [2.279890398603526, 48.816413604778866]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8276bf8a630e178be6c4abfc3c8541a90d6bd426", "fields": {"departement": "94", "stop_lat": 48.84479511335644, "code_postal": "94080", "stop_lon": 2.4374894541796297, "coord": [48.84479511335644, 2.4374894541796297], "stop_id": 4037162, "stop_desc": "12 AVENUE DE PARIS - 94080", "stop_name": "AVENUE DU CHATEAU"}, "geometry": {"type": "Point", "coordinates": [2.4374894541796297, 48.84479511335644]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "28896f20090b633b6462140dea23fc17fcda663a", "fields": {"departement": "94", "stop_lat": 48.8446246823592, "code_postal": "94080", "stop_lon": 2.437094232812113, "coord": [48.8446246823592, 2.437094232812113], "stop_id": 4037163, "stop_desc": "FACE 10 AVENUE DE PARIS - 94080", "stop_name": "AVENUE DU CHATEAU"}, "geometry": {"type": "Point", "coordinates": [2.437094232812113, 48.8446246823592]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a31183e4ec5b9e0dc0c3f0b8b47268746fd9f4ad", "fields": {"departement": "75", "stop_lat": 48.84831065096546, "code_postal": "75112", "stop_lon": 2.3945861464375446, "coord": [48.84831065096546, 2.3945861464375446], "stop_id": 4037173, "stop_desc": "PLACE DE LA NATION - 75112", "stop_name": "DIDEROT - NATION"}, "geometry": {"type": "Point", "coordinates": [2.3945861464375446, 48.84831065096546]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "817f14ef9bc0de9de5481535853c2b2f140ca282", "fields": {"departement": "75", "stop_lat": 48.847181924666934, "code_postal": "75112", "stop_lon": 2.386305379345434, "coord": [48.847181924666934, 2.386305379345434], "stop_id": 4037178, "stop_desc": "116 BOULEVARD DIDEROT - 75112", "stop_name": "REUILLY - DIDEROT"}, "geometry": {"type": "Point", "coordinates": [2.386305379345434, 48.847181924666934]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0ce0efd3d34160bbaa4626f5a37c2c6083b0ff1c", "fields": {"departement": "75", "stop_lat": 48.84563186778721, "code_postal": "75112", "stop_lon": 2.3728500974777273, "coord": [48.84563186778721, 2.3728500974777273], "stop_id": 4037184, "stop_desc": "FACE 21 BOULEVARD DIDEROT - 75112", "stop_name": "GARE DE LYON - DIDEROT"}, "geometry": {"type": "Point", "coordinates": [2.3728500974777273, 48.84563186778721]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "165cce750abd5bb2c274dc6fd5c1e1aab7beca56", "fields": {"departement": "75", "stop_lat": 48.85319164694081, "code_postal": "75104", "stop_lon": 2.3681838978405163, "coord": [48.85319164694081, 2.3681838978405163], "stop_id": 4037189, "stop_desc": "1 RUE SAINT-ANTOINE - 75104", "stop_name": "BASTILLE - RUE SAINT-ANTOINE"}, "geometry": {"type": "Point", "coordinates": [2.3681838978405163, 48.85319164694081]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "70a42c77e851665adcc75de07ae657e7d06e0acc", "fields": {"departement": "75", "stop_lat": 48.8537676322283, "code_postal": "75104", "stop_lon": 2.3649836922579452, "coord": [48.8537676322283, 2.3649836922579452], "stop_id": 4037191, "stop_desc": "31-33 RUE SAINT-ANTOINE - 75104", "stop_name": "BIRAGUE"}, "geometry": {"type": "Point", "coordinates": [2.3649836922579452, 48.8537676322283]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f3170bbc79b6b3c9c6077c0db83eb622dfd11383", "fields": {"departement": "75", "stop_lat": 48.8552333745965, "code_postal": "75104", "stop_lon": 2.361361624451313, "coord": [48.8552333745965, 2.361361624451313], "stop_id": 4037192, "stop_desc": "94 RUE SAINT ANTOINE - 75104", "stop_name": "SAINT-PAUL"}, "geometry": {"type": "Point", "coordinates": [2.361361624451313, 48.8552333745965]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d31a7718c5f223f8ddcdac29cc4491b25b3cf3ac", "fields": {"departement": "75", "stop_lat": 48.85726596088864, "code_postal": "75104", "stop_lon": 2.3527954157613853, "coord": [48.85726596088864, 2.3527954157613853], "stop_id": 4037195, "stop_desc": "62 RUE DE RIVOLI - 75104", "stop_name": "HOTEL DE VILLE"}, "geometry": {"type": "Point", "coordinates": [2.3527954157613853, 48.85726596088864]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3479c9447af8aeb52d23e3b66538bfa209c28d4d", "fields": {"departement": "75", "stop_lat": 48.85753603492456, "code_postal": "75104", "stop_lon": 2.3488319758479785, "coord": [48.85753603492456, 2.3488319758479785], "stop_id": 4037197, "stop_desc": "FACE 15 AVENUE VICTORIA - 75104", "stop_name": "CHATELET"}, "geometry": {"type": "Point", "coordinates": [2.3488319758479785, 48.85753603492456]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ad7e9c0574db0813c20e7575d6fe55c136b86dd1", "fields": {"departement": "75", "stop_lat": 48.865516960040004, "code_postal": "75101", "stop_lon": 2.326942492564363, "coord": [48.865516960040004, 2.326942492564363], "stop_id": 4037203, "stop_desc": "234 RUE DE RIVOLI - 75101", "stop_name": "CASTIGLIONE"}, "geometry": {"type": "Point", "coordinates": [2.326942492564363, 48.865516960040004]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7ba62a02d42bba9cf3a8e966277d306362433b37", "fields": {"departement": "75", "stop_lat": 48.866999231212986, "code_postal": "75108", "stop_lon": 2.32113887130694, "coord": [48.866999231212986, 2.32113887130694], "stop_id": 4037204, "stop_desc": "8 PLACE DE LA CONCORDE - 75108", "stop_name": "CONCORDE"}, "geometry": {"type": "Point", "coordinates": [2.32113887130694, 48.866999231212986]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a2b37e6254c5b60b08119ebe4f79fbafe61bebf2", "fields": {"departement": "75", "stop_lat": 48.86654928858581, "code_postal": "75108", "stop_lon": 2.3173382738845345, "coord": [48.86654928858581, 2.3173382738845345], "stop_id": 4037206, "stop_desc": "AVENUE DES CHAMPS ELYSEES - 75108", "stop_name": "CONCORDE - COURS LA REINE"}, "geometry": {"type": "Point", "coordinates": [2.3173382738845345, 48.86654928858581]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "59d88b9886b09ef3bdc05e446174242e4f3dc87b", "fields": {"departement": "75", "stop_lat": 48.86803149252129, "code_postal": "75108", "stop_lon": 2.3134687431580963, "coord": [48.86803149252129, 2.3134687431580963], "stop_id": 4037207, "stop_desc": "AVENUE DES CHAMPS ELYSEES - 75108", "stop_name": "CHAMPS-ELYSEES - CLEMENCEAU"}, "geometry": {"type": "Point", "coordinates": [2.3134687431580963, 48.86803149252129]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c347c77d40de9ed45b3e12a2ff534a3fe4f69757", "fields": {"departement": "75", "stop_lat": 48.867842706224465, "code_postal": "75108", "stop_lon": 2.3132099917230624, "coord": [48.867842706224465, 2.3132099917230624], "stop_id": 4037208, "stop_desc": "AVENUE DES CHAMPS ELYSEES - 75108", "stop_name": "CHAMPS-ELYSEES - CLEMENCEAU"}, "geometry": {"type": "Point", "coordinates": [2.3132099917230624, 48.867842706224465]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a3a4a4293afbf07bdd232f624d68e83ec2cea2a4", "fields": {"departement": "75", "stop_lat": 48.87346419088715, "code_postal": "75108", "stop_lon": 2.2963810880084012, "coord": [48.87346419088715, 2.2963810880084012], "stop_id": 4037215, "stop_desc": "AVENUE DES CHAMPS ELYSEES - 75108", "stop_name": "CHARLES DE GAULLE - ETOILE - CHAMPS-ELYSEES"}, "geometry": {"type": "Point", "coordinates": [2.2963810880084012, 48.87346419088715]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4e1866fac1abadd1099b1cbe95feb4b30c90dc71", "fields": {"departement": "75", "stop_lat": 48.8759239102111, "code_postal": "75117", "stop_lon": 2.288898925441744, "coord": [48.8759239102111, 2.288898925441744], "stop_id": 4037218, "stop_desc": "40 AVENUE DE LA GRANDE ARMEE - 75117", "stop_name": "ARGENTINE"}, "geometry": {"type": "Point", "coordinates": [2.288898925441744, 48.8759239102111]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e29e0d1b90016f2260b4d61a343b5a820c718ece", "fields": {"departement": "75", "stop_lat": 48.87713349214627, "code_postal": "75116", "stop_lon": 2.280504490492322, "coord": [48.87713349214627, 2.280504490492322], "stop_id": 4037232, "stop_desc": "PLACE DE LA PORTE MAILLOT - 75116", "stop_name": "PALAIS DES CONGRES"}, "geometry": {"type": "Point", "coordinates": [2.280504490492322, 48.87713349214627]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d8fab52098d8ef13168f1c93909203e370d2fe19", "fields": {"departement": "75", "stop_lat": 48.87553755046, "code_postal": "75116", "stop_lon": 2.289130912119065, "coord": [48.87553755046, 2.289130912119065], "stop_id": 4037234, "stop_desc": "43-47 AVENUE DE LA GRANDE ARMEE - 75116", "stop_name": "ARGENTINE"}, "geometry": {"type": "Point", "coordinates": [2.289130912119065, 48.87553755046]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "040693f13e21995424d39c8602c5ca60e831c747", "fields": {"departement": "75", "stop_lat": 48.86055619281375, "code_postal": "75101", "stop_lon": 2.330771019079064, "coord": [48.86055619281375, 2.330771019079064], "stop_id": 4037238, "stop_desc": "QUAI FRANCOIS MITTERRAND - 75101", "stop_name": "PONT ROYAL"}, "geometry": {"type": "Point", "coordinates": [2.330771019079064, 48.86055619281375]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b001d4330fc37cbe4e9f0da7fcb39b26e0ff6bf2", "fields": {"departement": "75", "stop_lat": 48.84726135533499, "code_postal": "75112", "stop_lon": 2.4072085511495405, "coord": [48.84726135533499, 2.4072085511495405], "stop_id": 4037246, "stop_desc": "82-84 COURS DE VINCENNES - 75112", "stop_name": "PYRENEES - DOCTEUR NETTER"}, "geometry": {"type": "Point", "coordinates": [2.4072085511495405, 48.84726135533499]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b83f202848ee1acdb18a868ce1ad58489cb832b5", "fields": {"departement": "75", "stop_lat": 48.84700789118935, "code_postal": "75112", "stop_lon": 2.4102313138152516, "coord": [48.84700789118935, 2.4102313138152516], "stop_id": 4037247, "stop_desc": "116 CRS DE VINCENNES - 75112", "stop_name": "PORTE DE VINCENNES"}, "geometry": {"type": "Point", "coordinates": [2.4102313138152516, 48.84700789118935]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fe111d75c254260b9dfa13ae6fb3b8e868921a11", "fields": {"departement": "94", "stop_lat": 48.84612062838356, "code_postal": "94067", "stop_lon": 2.420143500707147, "coord": [48.84612062838356, 2.420143500707147], "stop_id": 4037248, "stop_desc": "113-115 RUE DE PARIS - 94067", "stop_name": "TOURELLE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.420143500707147, 48.84612062838356]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4f8381d7d9efeeaa23722ffc3633416a84d4afa6", "fields": {"departement": "75", "stop_lat": 48.841798238989874, "code_postal": "75115", "stop_lon": 2.319825926144041, "coord": [48.841798238989874, 2.319825926144041], "stop_id": 4037251, "stop_desc": "PLACE RAOUL DAUTRY - 75115", "stop_name": "GARE MONTPARNASSE"}, "geometry": {"type": "Point", "coordinates": [2.319825926144041, 48.841798238989874]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9740c9cf62159a8adae17040ea6f5ab2ef28673e", "fields": {"departement": "75", "stop_lat": 48.84523749224217, "code_postal": "75112", "stop_lon": 2.3690506507770803, "coord": [48.84523749224217, 2.3690506507770803], "stop_id": 4037261, "stop_desc": "4 BIS BOULEVARD DIDEROT - 75112", "stop_name": "PONT D'AUSTERLITZ - QUAI DE LA RAPEE"}, "geometry": {"type": "Point", "coordinates": [2.3690506507770803, 48.84523749224217]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a671d16ec0ec5fa87fb9797d462425a4300225c5", "fields": {"departement": "75", "stop_lat": 48.85239140153054, "code_postal": "75112", "stop_lon": 2.369545320283473, "coord": [48.85239140153054, 2.369545320283473], "stop_id": 4037264, "stop_desc": "RUE DE LYON - 75112", "stop_name": "BASTILLE"}, "geometry": {"type": "Point", "coordinates": [2.369545320283473, 48.85239140153054]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0fa40c9c77e8fa4961bd1b90787030fd633f03c7", "fields": {"departement": "75", "stop_lat": 48.86270065196884, "code_postal": "75111", "stop_lon": 2.3669636161395187, "coord": [48.86270065196884, 2.3669636161395187], "stop_id": 4037267, "stop_desc": "20 BOULEVARD DES FILLES DU CALVAIRES - 75111", "stop_name": "OBERKAMPF - FILLES DU CALVAIRE"}, "geometry": {"type": "Point", "coordinates": [2.3669636161395187, 48.86270065196884]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ff41d812162299fa10c9d6ac2c93f88c7e4a2529", "fields": {"departement": "75", "stop_lat": 48.868039861543714, "code_postal": "75110", "stop_lon": 2.363955968897187, "coord": [48.868039861543714, 2.363955968897187], "stop_id": 4037268, "stop_desc": "12 PLACE DE LA REPUBLIQUE - 75110", "stop_name": "REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.363955968897187, 48.868039861543714]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "73d64e58698cf68d366f899d6a56a537db58a988", "fields": {"departement": "75", "stop_lat": 48.8834647199869, "code_postal": "75118", "stop_lon": 2.3460987084741514, "coord": [48.8834647199869, 2.3460987084741514], "stop_id": 4037274, "stop_desc": "44-46 BOULEVARD DE ROCHECHOUART - 75118", "stop_name": "ROCHECHOUART - CLIGNANCOURT"}, "geometry": {"type": "Point", "coordinates": [2.3460987084741514, 48.8834647199869]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "04223229bd2a5797aaf44ab9fad73b4ac96d9b41", "fields": {"departement": "75", "stop_lat": 48.88449829296056, "code_postal": "75118", "stop_lon": 2.328982831569093, "coord": [48.88449829296056, 2.328982831569093], "stop_id": 4037279, "stop_desc": "132-134 BOULEVARD DE CLICHY - 75118", "stop_name": "PLACE DE CLICHY - CAULAINCOURT"}, "geometry": {"type": "Point", "coordinates": [2.328982831569093, 48.88449829296056]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e18bb9c460eacd4be37499b7165d78be95e2dde7", "fields": {"departement": "75", "stop_lat": 48.87006185940335, "code_postal": "75108", "stop_lon": 2.3098711715341227, "coord": [48.87006185940335, 2.3098711715341227], "stop_id": 4037286, "stop_desc": "ROND-POINT DES CHAMPS ELYSEES - 75108", "stop_name": "ROND-POINT DES CHAMPS-ELYSEES - FRANKLIN D. ROOSEVELT"}, "geometry": {"type": "Point", "coordinates": [2.3098711715341227, 48.87006185940335]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "371cfdcdf1b9b6ae48a12ae5d5960b20b53d0096", "fields": {"departement": "75", "stop_lat": 48.84483663038162, "code_postal": "75106", "stop_lon": 2.3246317107880734, "coord": [48.84483663038162, 2.3246317107880734], "stop_id": 4037296, "stop_desc": "146 BIS RUE DE RENNES - 75106", "stop_name": "RENNES - LITTRE"}, "geometry": {"type": "Point", "coordinates": [2.3246317107880734, 48.84483663038162]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0a332c6617fba57c3ac6a6c81db0d763d9836b46", "fields": {"departement": "75", "stop_lat": 48.84381179353463, "code_postal": "75115", "stop_lon": 2.32238519748455, "coord": [48.84381179353463, 2.32238519748455], "stop_id": 4037297, "stop_desc": "FACE 3 RUE DE L'ARRIVEE - 75115", "stop_name": "PLACE DU 18 JUIN 1940 - RUE DE L'ARRIVEE"}, "geometry": {"type": "Point", "coordinates": [2.32238519748455, 48.84381179353463]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f3b59901e6bb8b50989ab51ea26209deab16b883", "fields": {"departement": "75", "stop_lat": 48.842175774710704, "code_postal": "75115", "stop_lon": 2.320234288743028, "coord": [48.842175774710704, 2.320234288743028], "stop_id": 4037298, "stop_desc": "PLACE RAOUL DAUTRY - 75115", "stop_name": "GARE MONTPARNASSE."}, "geometry": {"type": "Point", "coordinates": [2.320234288743028, 48.842175774710704]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f3e0e2ed5d4ffd6d9f93df90b3152a7005c19c55", "fields": {"departement": "92", "stop_lat": 48.91741081652648, "code_postal": "92025", "stop_lon": 2.2253841697951615, "coord": [48.91741081652648, 2.2253841697951615], "stop_id": 4037727, "stop_desc": "202 BD CHARLES DE GAULLE - 92025", "stop_name": "PARC PIERRE LAGRAVERE"}, "geometry": {"type": "Point", "coordinates": [2.2253841697951615, 48.91741081652648]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "52b78a292692b887d13c1e31b81891e19f7f8e69", "fields": {"departement": "92", "stop_lat": 48.914924620432, "code_postal": "92025", "stop_lon": 2.2288529425389245, "coord": [48.914924620432, 2.2288529425389245], "stop_id": 4037729, "stop_desc": "154 BD CHARLES DE GAULLE - 92025", "stop_name": "VICTOR BASCH"}, "geometry": {"type": "Point", "coordinates": [2.2288529425389245, 48.914924620432]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "144f5ff889b703df2f6ea1a0deafec2b0aadd18f", "fields": {"departement": "92", "stop_lat": 48.90250480211311, "code_postal": "92026", "stop_lon": 2.2395938170992964, "coord": [48.90250480211311, 2.2395938170992964], "stop_id": 4037739, "stop_desc": "94 BD DE LA MISSION MARCHAND - 92026", "stop_name": "LES FAUVELLES"}, "geometry": {"type": "Point", "coordinates": [2.2395938170992964, 48.90250480211311]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ae115a3953feceef701b8b59f552089f66b36b3a", "fields": {"departement": "92", "stop_lat": 48.8996110567207, "code_postal": "92026", "stop_lon": 2.2397219534481287, "coord": [48.8996110567207, 2.2397219534481287], "stop_id": 4037740, "stop_desc": "FACE 64-66 BD DE LA MISSION MARCHAND - 92026", "stop_name": "DIEPPE"}, "geometry": {"type": "Point", "coordinates": [2.2397219534481287, 48.8996110567207]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "42ab496d92fbca0ebd7c6c08060619a720122d0a", "fields": {"departement": "92", "stop_lat": 48.89682561624369, "code_postal": "92026", "stop_lon": 2.240422360584157, "coord": [48.89682561624369, 2.240422360584157], "stop_id": 4037743, "stop_desc": "24 BOULEVARD DE LA MISSION MARCHAND - 92026", "stop_name": "FAUBOURG DE L'ARCHE"}, "geometry": {"type": "Point", "coordinates": [2.240422360584157, 48.89682561624369]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "556f4693ed1b97243fcac102e68b41a1cd8fb406", "fields": {"departement": "92", "stop_lat": 48.8871763106982, "code_postal": "92062", "stop_lon": 2.244092729902989, "coord": [48.8871763106982, 2.244092729902989], "stop_id": 4037749, "stop_desc": "39 RUE PAUL LAFARGUE - 92062", "stop_name": "GALLIENI"}, "geometry": {"type": "Point", "coordinates": [2.244092729902989, 48.8871763106982]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6a0cd072aabd12643a852bb44241f480d42260e5", "fields": {"departement": "92", "stop_lat": 48.881047347727176, "code_postal": "92051", "stop_lon": 2.2715612036989734, "coord": [48.881047347727176, 2.2715612036989734], "stop_id": 4037758, "stop_desc": "101 AVENUE CHARLES DE GAULLE - 92051", "stop_name": "LES SABLONS"}, "geometry": {"type": "Point", "coordinates": [2.2715612036989734, 48.881047347727176]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1c5ab0346dbf07eee283b1e3b9326799dbe18127", "fields": {"departement": "92", "stop_lat": 48.88056374397198, "code_postal": "92051", "stop_lon": 2.2747367679822643, "coord": [48.88056374397198, 2.2747367679822643], "stop_id": 4037761, "stop_desc": "44 AVENUE CHARLES DE GAULLE - 92051", "stop_name": "MARCHE DE NEUILLY-SUR-SEINE"}, "geometry": {"type": "Point", "coordinates": [2.2747367679822643, 48.88056374397198]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "113b88914698c9aff5be3dd975155f85377519c8", "fields": {"departement": "75", "stop_lat": 48.87713349214627, "code_postal": "75116", "stop_lon": 2.280504490492322, "coord": [48.87713349214627, 2.280504490492322], "stop_id": 4037763, "stop_desc": "PLACE DE LA PORTE MAILLOT - 75116", "stop_name": "PALAIS DES CONGRES"}, "geometry": {"type": "Point", "coordinates": [2.280504490492322, 48.87713349214627]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9f53e6ce91d28497ce42d96c912f1985f8dca1d1", "fields": {"departement": "75", "stop_lat": 48.87709023274955, "code_postal": "75116", "stop_lon": 2.284142542845437, "coord": [48.87709023274955, 2.284142542845437], "stop_id": 4037764, "stop_desc": "85 AVENUE DE LA GRANDE ARMEE - 75116", "stop_name": "PORTE MAILLOT"}, "geometry": {"type": "Point", "coordinates": [2.284142542845437, 48.87709023274955]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c21915afa6568e66320f963332de87f89f0530aa", "fields": {"departement": "75", "stop_lat": 48.87329337582345, "code_postal": "75108", "stop_lon": 2.296217728814878, "coord": [48.87329337582345, 2.296217728814878], "stop_id": 4037767, "stop_desc": "135 AVENUE DES CHAMPS ELYSEES - 75108", "stop_name": "CHARLES DE GAULLE - ETOILE - CHAMPS-ELYSEES"}, "geometry": {"type": "Point", "coordinates": [2.296217728814878, 48.87329337582345]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5bac19ee55289eba5f4da6ba2010e0f16db8ca86", "fields": {"departement": "75", "stop_lat": 48.87346419088715, "code_postal": "75108", "stop_lon": 2.2963810880084012, "coord": [48.87346419088715, 2.2963810880084012], "stop_id": 4037768, "stop_desc": "AVENUE DES CHAMPS ELYSEES - 75108", "stop_name": "CHARLES DE GAULLE - ETOILE - CHAMPS-ELYSEES"}, "geometry": {"type": "Point", "coordinates": [2.2963810880084012, 48.87346419088715]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b8c45575751bea2a437fa61db7da1769fd5ebe94", "fields": {"departement": "75", "stop_lat": 48.86654928858581, "code_postal": "75108", "stop_lon": 2.3173382738845345, "coord": [48.86654928858581, 2.3173382738845345], "stop_id": 4037777, "stop_desc": "AVENUE DES CHAMPS ELYSEES - 75108", "stop_name": "CONCORDE - COURS LA REINE"}, "geometry": {"type": "Point", "coordinates": [2.3173382738845345, 48.86654928858581]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b3abaeedf8f9d2ea0f690e5a8b1d43e8883a0a20", "fields": {"departement": "75", "stop_lat": 48.862110639738226, "code_postal": "75101", "stop_lon": 2.3258125813412875, "coord": [48.862110639738226, 2.3258125813412875], "stop_id": 4037780, "stop_desc": "QUAI DES TUILERIES - 75101", "stop_name": "PONT DE SOLFERINO - QUAI DES TUILERIES"}, "geometry": {"type": "Point", "coordinates": [2.3258125813412875, 48.862110639738226]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6cd3e353ae17f8032ed62c63b7b8f9e4a34198a6", "fields": {"departement": "75", "stop_lat": 48.858237481253475, "code_postal": "75101", "stop_lon": 2.3429344426817336, "coord": [48.858237481253475, 2.3429344426817336], "stop_id": 4037784, "stop_desc": "FACE 22 QUAI DE LA MEGISSERIE - 75101", "stop_name": "PONT NEUF - QUAI DU LOUVRE"}, "geometry": {"type": "Point", "coordinates": [2.3429344426817336, 48.858237481253475]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5f6603998d361011d62b02e861263b2846e1ac8b", "fields": {"departement": "75", "stop_lat": 48.85709549291431, "code_postal": "75104", "stop_lon": 2.3503573433471843, "coord": [48.85709549291431, 2.3503573433471843], "stop_id": 4037787, "stop_desc": "02 AVENUE VICTORIA - 75104", "stop_name": "CHATELET."}, "geometry": {"type": "Point", "coordinates": [2.3503573433471843, 48.85709549291431]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7cc3dd98eeceb7c034acdccb3a67dbb7b32b1028", "fields": {"departement": "75", "stop_lat": 48.861131521308295, "code_postal": "75101", "stop_lon": 2.3404011996628897, "coord": [48.861131521308295, 2.3404011996628897], "stop_id": 4037789, "stop_desc": "156 RUE DE RIVOLI - 75101", "stop_name": "LOUVRE - RIVOLI"}, "geometry": {"type": "Point", "coordinates": [2.3404011996628897, 48.861131521308295]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4780a3c42a2636c5e34d006581c1006572c2a74c", "fields": {"departement": "92", "stop_lat": 48.887111564357454, "code_postal": "92026", "stop_lon": 2.2537415598241908, "coord": [48.887111564357454, 2.2537415598241908], "stop_id": 4037798, "stop_desc": "BOULEVARD DE NEUILLY (SUR PISTE) - 92026", "stop_name": "PONT DE NEUILLY - RIVE GAUCHE"}, "geometry": {"type": "Point", "coordinates": [2.2537415598241908, 48.887111564357454]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e95b384972d4ac7f8d49dc836168aebbb9ba18db", "fields": {"departement": "75", "stop_lat": 48.85728098955349, "code_postal": "75103", "stop_lon": 2.367968412184262, "coord": [48.85728098955349, 2.367968412184262], "stop_id": 4044992, "stop_desc": "57 BOULEVARD BEAUMARCHAIS - 75103", "stop_name": "SAINT-GILLES - CHEMIN VERT"}, "geometry": {"type": "Point", "coordinates": [2.367968412184262, 48.85728098955349]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "79a7004f2d8bbbc8598068919de9d562d1fa2d68", "fields": {"departement": "75", "stop_lat": 48.85385657226886, "code_postal": "75104", "stop_lon": 2.3687426889970005, "coord": [48.85385657226886, 2.3687426889970005], "stop_id": 4044993, "stop_desc": "7 BOULEVARD BEAUMARCHAIS - 75104", "stop_name": "BASTILLE - BEAUMARCHAIS"}, "geometry": {"type": "Point", "coordinates": [2.3687426889970005, 48.85385657226886]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c8d56b3ea846b6eaf2cbca581bfb48642fdd5924", "fields": {"departement": "75", "stop_lat": 48.83978396247523, "code_postal": "75105", "stop_lon": 2.3608642805982956, "coord": [48.83978396247523, 2.3608642805982956], "stop_id": 4044999, "stop_desc": "FACE 1 BOULEVARD SAINT-MARCEL - 75105", "stop_name": "SAINT-MARCEL - LA PITIE"}, "geometry": {"type": "Point", "coordinates": [2.3608642805982956, 48.83978396247523]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5e23db95d41af77b335f0a688ae3762827294682", "fields": {"departement": "75", "stop_lat": 48.83826590356717, "code_postal": "75105", "stop_lon": 2.3561663153689802, "coord": [48.83826590356717, 2.3561663153689802], "stop_id": 4045000, "stop_desc": "FACE 47 BOULEVARD SAINT- MARCEL - 75105", "stop_name": "SAINT-MARCEL - JEANNE D'ARC"}, "geometry": {"type": "Point", "coordinates": [2.3561663153689802, 48.83826590356717]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4397785d8c6123d8bb72e4347613cbfbece619f0", "fields": {"departement": "75", "stop_lat": 48.8396514901034, "code_postal": "75105", "stop_lon": 2.337349990389469, "coord": [48.8396514901034, 2.337349990389469], "stop_id": 4045003, "stop_desc": "100 BOULEVARD DE PORT ROYAL - 75105", "stop_name": "OBSERVATOIRE - PORT ROYAL"}, "geometry": {"type": "Point", "coordinates": [2.337349990389469, 48.8396514901034]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2a6225c77ff7a8fd01a4d8cf6410cf3b424118bc", "fields": {"departement": "75", "stop_lat": 48.84349739847797, "code_postal": "75114", "stop_lon": 2.3238014203032726, "coord": [48.84349739847797, 2.3238014203032726], "stop_id": 4045008, "stop_desc": "PLACE DU 18 JUIN 1940 - 75114", "stop_name": "PLACE DU 18 JUIN 1940"}, "geometry": {"type": "Point", "coordinates": [2.3238014203032726, 48.84349739847797]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bfe03ea18b62725caeb31c971ab8533bc5bf22b9", "fields": {"departement": "75", "stop_lat": 48.878916395001, "code_postal": "75110", "stop_lon": 2.353469578838293, "coord": [48.878916395001, 2.353469578838293], "stop_id": 4045033, "stop_desc": "103 BOULEVARD DE MAGENTA - 75110", "stop_name": "LA FAYETTE - MAGENTA - GARE DU NORD"}, "geometry": {"type": "Point", "coordinates": [2.353469578838293, 48.878916395001]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "be8c50cbbcdd7bc33aa3bdc5f445d2e5db31efb2", "fields": {"departement": "93", "stop_lat": 49.00342885341075, "code_postal": "93073", "stop_lon": 2.5646872012157114, "coord": [49.00342885341075, 2.5646872012157114], "stop_id": 4075434, "stop_desc": "AER CHARLES DE GAULLE - 93073", "stop_name": "TERMINAL 2A-2C"}, "geometry": {"type": "Point", "coordinates": [2.5646872012157114, 49.00342885341075]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9cb08cedf6d60f2c600523dafe0457c197a1e333", "fields": {"departement": "77", "stop_lat": 49.015367784893186, "code_postal": "77282", "stop_lon": 2.541992530464244, "coord": [49.015367784893186, 2.541992530464244], "stop_id": 4075437, "stop_desc": "AEROPORT CHARLES DE GAULLE - 77282", "stop_name": "TERMINAL 1"}, "geometry": {"type": "Point", "coordinates": [2.541992530464244, 49.015367784893186]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8bb334632d87d744804c97e48be76e00a509f6c5", "fields": {"departement": "92", "stop_lat": 48.886965346281166, "code_postal": "92063", "stop_lon": 2.180122821649824, "coord": [48.886965346281166, 2.180122821649824], "stop_id": 4102133, "stop_desc": "AVENUE DE COLMAR - 92063", "stop_name": "D'ESTIENNE D'ORVES"}, "geometry": {"type": "Point", "coordinates": [2.180122821649824, 48.886965346281166]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "57abe7e7f95c5fbfe17e1d86517d7976465d4480", "fields": {"departement": "92", "stop_lat": 48.88628184978007, "code_postal": "92050", "stop_lon": 2.2098473916330406, "coord": [48.88628184978007, 2.2098473916330406], "stop_id": 4102140, "stop_desc": "128 AVENUE GEORGES CLEMENCEAU - 92050", "stop_name": "CLEMENCEAU - SADI CARNOT"}, "geometry": {"type": "Point", "coordinates": [2.2098473916330406, 48.88628184978007]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6c111c95687fb14bce287615140beb9c725e00c9", "fields": {"departement": "92", "stop_lat": 48.885918139125366, "code_postal": "92050", "stop_lon": 2.2143863501236374, "coord": [48.885918139125366, 2.2143863501236374], "stop_id": 4102141, "stop_desc": "196 AVENUE GEORGES CLEMENCEAU - 92050", "stop_name": "FELIX FAURE"}, "geometry": {"type": "Point", "coordinates": [2.2143863501236374, 48.885918139125366]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "82f3667ccc2c7a555bed1c238477708387c3bad5", "fields": {"departement": "92", "stop_lat": 48.884503004736075, "code_postal": "92062", "stop_lon": 2.238987243699706, "coord": [48.884503004736075, 2.238987243699706], "stop_id": 4102146, "stop_desc": "FACE104BIS RUE DE LA REPUBLIQUE - 92062", "stop_name": "MAIRIE DE PUTEAUX"}, "geometry": {"type": "Point", "coordinates": [2.238987243699706, 48.884503004736075]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "83b66d7b8b4d40f5a63fc6d25a7472c45fb0a0f4", "fields": {"departement": "92", "stop_lat": 48.885470572986875, "code_postal": "92051", "stop_lon": 2.2591543980581945, "coord": [48.885470572986875, 2.2591543980581945], "stop_id": 4102151, "stop_desc": "AVENUE CHARLES DE GAULLE - 92051", "stop_name": "PONT DE NEUILLY-METRO"}, "geometry": {"type": "Point", "coordinates": [2.2591543980581945, 48.885470572986875]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "036f9dac11c91c5b450b45bed48c867c92600752", "fields": {"departement": "94", "stop_lat": 48.835945431006095, "code_postal": "94052", "stop_lon": 2.4709645048297553, "coord": [48.835945431006095, 2.4709645048297553], "stop_id": 4109734, "stop_desc": "FACE 7-9 AV GEORGES CLEMENCEAU - 94052", "stop_name": "NOGENT-SUR-MARNE RER - PIERRE SEMARD"}, "geometry": {"type": "Point", "coordinates": [2.4709645048297553, 48.835945431006095]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e257f9b5f659e0f3ecf70727bdda6b26857210c6", "fields": {"departement": "94", "stop_lat": 48.83547370371285, "code_postal": "94052", "stop_lon": 2.474802599415442, "coord": [48.83547370371285, 2.474802599415442], "stop_id": 4109736, "stop_desc": "12 GR CHARLES DE GAULLE - 94052", "stop_name": "PLACE DU GENERAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.474802599415442, 48.83547370371285]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "195d37ab829b6fec2d49dde7a26f5689c856203c", "fields": {"departement": "94", "stop_lat": 48.83574292139633, "code_postal": "94052", "stop_lon": 2.4751572939223943, "coord": [48.83574292139633, 2.4751572939223943], "stop_id": 4109737, "stop_desc": "3-5 GRANDE RUE CHARLES DE GAULLE - 94052", "stop_name": "PLACE DU GENERAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.4751572939223943, 48.83574292139633]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1b664adf8a0fa9d3c5ede315e6a69433b8dc2950", "fields": {"departement": "94", "stop_lat": 48.84599286547505, "code_postal": "94058", "stop_lon": 2.506776775295317, "coord": [48.84599286547505, 2.506776775295317], "stop_id": 4109752, "stop_desc": "113 AVENUE LEDRU ROLLIN - 94058", "stop_name": "BELLEVUE"}, "geometry": {"type": "Point", "coordinates": [2.506776775295317, 48.84599286547505]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1ef551e59aabb5b44a3136c49120829d48709402", "fields": {"departement": "94", "stop_lat": 48.848946899060834, "code_postal": "94058", "stop_lon": 2.5087746753805695, "coord": [48.848946899060834, 2.5087746753805695], "stop_id": 4109753, "stop_desc": "FACE 159 AVENUE DU 8 MAI 1945 - 94058", "stop_name": "BORDS DE MARNE"}, "geometry": {"type": "Point", "coordinates": [2.5087746753805695, 48.848946899060834]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b9069a0a1322e37406f1ed6656e76d7bde1fc5e3", "fields": {"departement": "94", "stop_lat": 48.8492795137521, "code_postal": "94058", "stop_lon": 2.508721302374306, "coord": [48.8492795137521, 2.508721302374306], "stop_id": 4109754, "stop_desc": "163 AVENUE DU 8 MAI 1945 - 94058", "stop_name": "BORDS DE MARNE"}, "geometry": {"type": "Point", "coordinates": [2.508721302374306, 48.8492795137521]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6172cf4d563bb43037ef856e5be0a2aef32549e3", "fields": {"departement": "93", "stop_lat": 48.852696795117474, "code_postal": "93049", "stop_lon": 2.513485668431387, "coord": [48.852696795117474, 2.513485668431387], "stop_id": 4109755, "stop_desc": "14 BOULEVARD GALLIENI - 93049", "stop_name": "NEUILLY-PLAISANCE RER"}, "geometry": {"type": "Point", "coordinates": [2.513485668431387, 48.852696795117474]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "62e552a6970c2a7c6151346fa79b88218fa30d3a", "fields": {"departement": "93", "stop_lat": 48.85675424193214, "code_postal": "93049", "stop_lon": 2.5106936994562683, "coord": [48.85675424193214, 2.5106936994562683], "stop_id": 4109758, "stop_desc": "RUE FAIDHERBE - 93049", "stop_name": "FAIDHERBE - EGLISE"}, "geometry": {"type": "Point", "coordinates": [2.5106936994562683, 48.85675424193214]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d91153f37d2ce1aed9939ac19f7b54dca423c93d", "fields": {"departement": "93", "stop_lat": 48.85710008891055, "code_postal": "93049", "stop_lon": 2.5076983977962444, "coord": [48.85710008891055, 2.5076983977962444], "stop_id": 4109759, "stop_desc": "57 AVENUE VICTOR HUGO - 93049", "stop_name": "FAIDHERBE - EGLISE"}, "geometry": {"type": "Point", "coordinates": [2.5076983977962444, 48.85710008891055]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aa4f4800c14221bea33cb2e5496b75da56af9b55", "fields": {"departement": "93", "stop_lat": 48.87199260175153, "code_postal": "93049", "stop_lon": 2.5074203747740498, "coord": [48.87199260175153, 2.5074203747740498], "stop_id": 4109780, "stop_desc": "FACE 14BIS AVENUE DES FAUVETTES - 93049", "stop_name": "AVENUE DE ROSNY"}, "geometry": {"type": "Point", "coordinates": [2.5074203747740498, 48.87199260175153]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4e00d0e444941b400bb94d7baff6077928528382", "fields": {"departement": "93", "stop_lat": 48.88407582329434, "code_postal": "93077", "stop_lon": 2.510676096876497, "coord": [48.88407582329434, 2.510676096876497], "stop_id": 4109786, "stop_desc": "PLACE EMILE DUCATE - 93077", "stop_name": "CHATEAU DE VILLEMOMBLE"}, "geometry": {"type": "Point", "coordinates": [2.510676096876497, 48.88407582329434]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "78024635a543fda4c55bfb628a05951b28436a4f", "fields": {"departement": "93", "stop_lat": 48.891522527610825, "code_postal": "93077", "stop_lon": 2.507007471282, "coord": [48.891522527610825, 2.507007471282], "stop_id": 4109794, "stop_desc": "48-50 AVENUE DU GENERAL GALLIENI - 93077", "stop_name": "MARIUS GONIN"}, "geometry": {"type": "Point", "coordinates": [2.507007471282, 48.891522527610825]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0f9ee8d960e15621661619a38092c1ad743b6915", "fields": {"departement": "93", "stop_lat": 48.89323600952376, "code_postal": "93077", "stop_lon": 2.502801487969641, "coord": [48.89323600952376, 2.502801487969641], "stop_id": 4109796, "stop_desc": "94 AVENUE DU GENERAL GALLIENI - 93077", "stop_name": "LES COQUETIERS"}, "geometry": {"type": "Point", "coordinates": [2.502801487969641, 48.89323600952376]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e80525caaa6d8cb8b8d5ec8c017362c131ee9f28", "fields": {"departement": "93", "stop_lat": 48.896090004515145, "code_postal": "93077", "stop_lon": 2.505604859560125, "coord": [48.896090004515145, 2.505604859560125], "stop_id": 4109798, "stop_desc": "86-88 BOULEVARD D'AULNAY - 93077", "stop_name": "ALLEE DE LA TOUR"}, "geometry": {"type": "Point", "coordinates": [2.505604859560125, 48.896090004515145]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2996b0be2b17af63de2cdcc79c911fe23801a142", "fields": {"departement": "93", "stop_lat": 48.85882768868064, "code_postal": "93049", "stop_lon": 2.50628752096187, "coord": [48.85882768868064, 2.50628752096187], "stop_id": 4109804, "stop_desc": "81 AVENUE VICTOR HUGO - 93049", "stop_name": "JEAN JAURES - VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.50628752096187, 48.85882768868064]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "be97a5bc82e847acc9d38701ed708f4ef6cad3cb", "fields": {"departement": "94", "stop_lat": 48.838333354068794, "code_postal": "94052", "stop_lon": 2.4883165865023296, "coord": [48.838333354068794, 2.4883165865023296], "stop_id": 4109806, "stop_desc": "FACE 3 RUE EUGENE GALBRUN - 94052", "stop_name": "HOTEL DES COIGNARD"}, "geometry": {"type": "Point", "coordinates": [2.4883165865023296, 48.838333354068794]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4b7ac99452f884e32dff7e20dec8a817f169c123", "fields": {"departement": "93", "stop_lat": 48.88885730679274, "code_postal": "93077", "stop_lon": 2.510487666300401, "coord": [48.88885730679274, 2.510487666300401], "stop_id": 4109808, "stop_desc": "61 AVENUE DU RAINCY - 93077", "stop_name": "LE RAINCY-VILLEMOMBLE-MONTFERMEIL RER"}, "geometry": {"type": "Point", "coordinates": [2.510487666300401, 48.88885730679274]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0b36f8b98ec1bd3d4b643423dd52e86788cbb293", "fields": {"departement": "93", "stop_lat": 48.88637065382866, "code_postal": "93077", "stop_lon": 2.5085441857559028, "coord": [48.88637065382866, 2.5085441857559028], "stop_id": 4109809, "stop_desc": "31 AVENUE DU RAINCY - 93077", "stop_name": "GENERAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.5085441857559028, 48.88637065382866]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e0b5c981f01cad21e3cf640a50611eea4fe6351f", "fields": {"departement": "93", "stop_lat": 48.873102529612815, "code_postal": "93049", "stop_lon": 2.510544020933321, "coord": [48.873102529612815, 2.510544020933321], "stop_id": 4109814, "stop_desc": "21 PLACE DE STALINGRAD - ROND POINT D'AVRON - 93049", "stop_name": "PLATEAU D'AVRON - PLACE DE STALINGRAD"}, "geometry": {"type": "Point", "coordinates": [2.510544020933321, 48.873102529612815]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "32414e97f52bc64619c3f246fc2bae758b2f3a86", "fields": {"departement": "93", "stop_lat": 48.86541686191669, "code_postal": "93049", "stop_lon": 2.5115536428349077, "coord": [48.86541686191669, 2.5115536428349077], "stop_id": 4109819, "stop_desc": "15 AVENUE DU PRESIDENT KENNEDY - 93049", "stop_name": "KENNEDY - RENOUILLERES"}, "geometry": {"type": "Point", "coordinates": [2.5115536428349077, 48.86541686191669]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eeed90c91f5983b5d8d9adb88bb05a32e40ba389", "fields": {"departement": "93", "stop_lat": 48.86349863968202, "code_postal": "93049", "stop_lon": 2.514203474951785, "coord": [48.86349863968202, 2.514203474951785], "stop_id": 4109823, "stop_desc": "FACE 2 CHEMIN DE MEAUX - 93049", "stop_name": "CIMETIERE DE NEUILLY-PLAISANCE"}, "geometry": {"type": "Point", "coordinates": [2.514203474951785, 48.86349863968202]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a94c50f0b1b110c1306cf50f9676b86736b52e4e", "fields": {"departement": "92", "stop_lat": 48.88736726938604, "code_postal": "92050", "stop_lon": 2.1999233908349463, "coord": [48.88736726938604, 2.1999233908349463], "stop_id": 4109830, "stop_desc": "PL DE LA BOULE - 92050", "stop_name": "PLACE DE LA BOULE - GAMBETTA"}, "geometry": {"type": "Point", "coordinates": [2.1999233908349463, 48.88736726938604]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f0b6d3348ae46e415cb39d5f3e9e475f407cbe3c", "fields": {"departement": "92", "stop_lat": 48.88401647962881, "code_postal": "92050", "stop_lon": 2.2011859820808213, "coord": [48.88401647962881, 2.2011859820808213], "stop_id": 4109831, "stop_desc": "FACE 57 R DE SAINT-CLOUD - 92050", "stop_name": "OMBRAIES"}, "geometry": {"type": "Point", "coordinates": [2.2011859820808213, 48.88401647962881]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2e077f9bce7000944f46fb8e6d32aa6cc4ca16bc", "fields": {"departement": "92", "stop_lat": 48.877764661670334, "code_postal": "92063", "stop_lon": 2.1963107711420347, "coord": [48.877764661670334, 2.1963107711420347], "stop_id": 4109838, "stop_desc": "86 RUE DANTON - 92063", "stop_name": "FABRE D'EGLANTINE"}, "geometry": {"type": "Point", "coordinates": [2.1963107711420347, 48.877764661670334]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a8aac88b0715edd82b9fecd2fffa6b730ca1cf4e", "fields": {"departement": "92", "stop_lat": 48.877908296637465, "code_postal": "92063", "stop_lon": 2.1961741234389067, "coord": [48.877908296637465, 2.1961741234389067], "stop_id": 4109839, "stop_desc": "101 RUE DANTON - 92063", "stop_name": "FABRE D'EGLANTINE"}, "geometry": {"type": "Point", "coordinates": [2.1961741234389067, 48.877908296637465]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "834af86aa656abacf01266b39ced592f8d5b933d", "fields": {"departement": "92", "stop_lat": 48.87476292813592, "code_postal": "92063", "stop_lon": 2.196332556319265, "coord": [48.87476292813592, 2.196332556319265], "stop_id": 4109842, "stop_desc": "56 R VOLTAIRE - 92063", "stop_name": "LE BRIX"}, "geometry": {"type": "Point", "coordinates": [2.196332556319265, 48.87476292813592]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "92a309893fef426990fb47e6e5e34d79875bb069", "fields": {"departement": "92", "stop_lat": 48.87366562263421, "code_postal": "92063", "stop_lon": 2.1956134347514946, "coord": [48.87366562263421, 2.1956134347514946], "stop_id": 4109845, "stop_desc": "FACE 84 R VOLTAIRE - 92063", "stop_name": "LES GODARDES"}, "geometry": {"type": "Point", "coordinates": [2.1956134347514946, 48.87366562263421]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9aa03d00d646f1cc5f8a4051ae84604080835618", "fields": {"departement": "92", "stop_lat": 48.86902191369568, "code_postal": "92063", "stop_lon": 2.1979420952336834, "coord": [48.86902191369568, 2.1979420952336834], "stop_id": 4109848, "stop_desc": "120 AVENUE DU PRESIDENT POMPIDOU - 92063", "stop_name": "RACINE"}, "geometry": {"type": "Point", "coordinates": [2.1979420952336834, 48.86902191369568]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cacb3cc55b5d6dd8933ee087f8e25dc8e248412a", "fields": {"departement": "92", "stop_lat": 48.86988873094465, "code_postal": "92063", "stop_lon": 2.2095607061834173, "coord": [48.86988873094465, 2.2095607061834173], "stop_id": 4109854, "stop_desc": "100 R DES ROSIERS - 92063", "stop_name": "BUFFON"}, "geometry": {"type": "Point", "coordinates": [2.2095607061834173, 48.86988873094465]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2ae9690ed19381eb9b7a17ae067deb9858704970", "fields": {"departement": "92", "stop_lat": 48.868221256238435, "code_postal": "92073", "stop_lon": 2.213515531952819, "coord": [48.868221256238435, 2.213515531952819], "stop_id": 4109856, "stop_desc": "FACE 58 AV DES LANDES - 92073", "stop_name": "AVENUE DES LANDES"}, "geometry": {"type": "Point", "coordinates": [2.213515531952819, 48.868221256238435]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "217402239899cdb6c3a0f4c7874d7c044e212759", "fields": {"departement": "92", "stop_lat": 48.87008007301693, "code_postal": "92073", "stop_lon": 2.2208814945368083, "coord": [48.87008007301693, 2.2208814945368083], "stop_id": 4109860, "stop_desc": "FACE 33 R WORTH - 92073", "stop_name": "HOPITAL FOCH"}, "geometry": {"type": "Point", "coordinates": [2.2208814945368083, 48.87008007301693]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f43e735e56010050a8b9f2adc3b369d478ca23aa", "fields": {"departement": "92", "stop_lat": 48.87152742989966, "code_postal": "92073", "stop_lon": 2.2212869671153754, "coord": [48.87152742989966, 2.2212869671153754], "stop_id": 4109863, "stop_desc": "R WORTH - 92073", "stop_name": "GARE DE SURESNES - MONT VALERIEN"}, "geometry": {"type": "Point", "coordinates": [2.2212869671153754, 48.87152742989966]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ed146c831c3f2606c632669986e9bbe42ed8af8c", "fields": {"departement": "93", "stop_lat": 48.87658775595986, "code_postal": "93006", "stop_lon": 2.4324005357009613, "coord": [48.87658775595986, 2.4324005357009613], "stop_id": 4117610, "stop_desc": "FACE 55 RUE LOUISE MICHEL - 93006", "stop_name": "LOUISE MICHEL"}, "geometry": {"type": "Point", "coordinates": [2.4324005357009613, 48.87658775595986]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2147f9c9b9f79133857e486fe483d53a583be537", "fields": {"departement": "93", "stop_lat": 48.87263055541107, "code_postal": "93048", "stop_lon": 2.4358266028694477, "coord": [48.87263055541107, 2.4358266028694477], "stop_id": 4117612, "stop_desc": "AV FERDINAND BUISSON - 93048", "stop_name": "VERT BOIS"}, "geometry": {"type": "Point", "coordinates": [2.4358266028694477, 48.87263055541107]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eb856b3d06403d40585993435a18f8d4118dec4b", "fields": {"departement": "91", "stop_lat": 48.740459841601286, "code_postal": "91689", "stop_lon": 2.321354761735861, "coord": [48.740459841601286, 2.321354761735861], "stop_id": 4890625, "stop_desc": "ROUTE D'ANTONY-CHARLES DE GAULLE - 91689", "stop_name": "FRIBOULI"}, "geometry": {"type": "Point", "coordinates": [2.321354761735861, 48.740459841601286]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bb09e37fdb9a15c8835678e7cbf8b1f61b1cdb0d", "fields": {"departement": "91", "stop_lat": 48.702134037740976, "code_postal": "91432", "stop_lon": 2.3280612447081723, "coord": [48.702134037740976, 2.3280612447081723], "stop_id": 4890637, "stop_desc": "41 AVENUE GABRIEL PERI - 91432", "stop_name": "PIERRE LOTI"}, "geometry": {"type": "Point", "coordinates": [2.3280612447081723, 48.702134037740976]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d978136548939e3dca1247d04566939750141d1a", "fields": {"departement": "91", "stop_lat": 48.70396784643142, "code_postal": "91432", "stop_lon": 2.3302744832297666, "coord": [48.70396784643142, 2.3302744832297666], "stop_id": 4890638, "stop_desc": "1 AVENUE GABRIEL PERI - 91432", "stop_name": "PIERRE BROSSOLETTE"}, "geometry": {"type": "Point", "coordinates": [2.3302744832297666, 48.70396784643142]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "04a1a26dae26ec847854a3f7d9fd507aac90ef98", "fields": {"departement": "91", "stop_lat": 48.70617915310959, "code_postal": "91432", "stop_lon": 2.333153298254694, "coord": [48.70617915310959, 2.333153298254694], "stop_id": 4890641, "stop_desc": "10 AVENUE DU GENERAL WARABIOT - 91432", "stop_name": "MAIRIE DE MORANGIS"}, "geometry": {"type": "Point", "coordinates": [2.333153298254694, 48.70617915310959]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ca7bc8205913a3c9d706bc79a8358a115a939d19", "fields": {"departement": "91", "stop_lat": 48.69972359172762, "code_postal": "91161", "stop_lon": 2.316152861000321, "coord": [48.69972359172762, 2.316152861000321], "stop_id": 4890644, "stop_desc": "AVENUE PIERRE BROSSOLETTE - 91161", "stop_name": "DIVISION LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.316152861000321, 48.69972359172762]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f07f6124da743b51798d2c7314dd8bf244e9fd8b", "fields": {"departement": "91", "stop_lat": 48.69415489177082, "code_postal": "91345", "stop_lon": 2.2974995272158125, "coord": [48.69415489177082, 2.2974995272158125], "stop_id": 4890651, "stop_desc": "1 AVENUE DU GENERAL DE GAULLE - 91345", "stop_name": "LEONTINE SOHIER"}, "geometry": {"type": "Point", "coordinates": [2.2974995272158125, 48.69415489177082]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "26931e99db76db0d54bf853ef98de6816551fb63", "fields": {"departement": "91", "stop_lat": 48.697317212120595, "code_postal": "91345", "stop_lon": 2.292826140253021, "coord": [48.697317212120595, 2.292826140253021], "stop_id": 4890655, "stop_desc": "2 RUE MICHEL VINCENT - 91345", "stop_name": "PLACE CHARLES STEBER"}, "geometry": {"type": "Point", "coordinates": [2.292826140253021, 48.697317212120595]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7ccf9bbbfae1773cbbefbfeb584b1acdbe23e1b7", "fields": {"departement": "91", "stop_lat": 48.694029119668265, "code_postal": "91345", "stop_lon": 2.2977032864842424, "coord": [48.694029119668265, 2.2977032864842424], "stop_id": 4890674, "stop_desc": "2 AVENUE DU GENERAL DE GAULLE - 91345", "stop_name": "LEONTINE SOHIER"}, "geometry": {"type": "Point", "coordinates": [2.2977032864842424, 48.694029119668265]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e46d943cf2069b110da5c6f74b54ee4e3840d4d3", "fields": {"departement": "91", "stop_lat": 48.69983848798071, "code_postal": "91161", "stop_lon": 2.307095580964295, "coord": [48.69983848798071, 2.307095580964295], "stop_id": 4890677, "stop_desc": "47 R HENRI BARBUSSE - 91161", "stop_name": "MAZARIN-RER"}, "geometry": {"type": "Point", "coordinates": [2.307095580964295, 48.69983848798071]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "92f1cba2946bf4c266870967b0cafae0804228fa", "fields": {"departement": "91", "stop_lat": 48.69451817758564, "code_postal": "91161", "stop_lon": 2.3109547232875918, "coord": [48.69451817758564, 2.3109547232875918], "stop_id": 4890679, "stop_desc": "69 RUE PIERRE MENDES FRANCE - 91161", "stop_name": "GRAND JARDIN"}, "geometry": {"type": "Point", "coordinates": [2.3109547232875918, 48.69451817758564]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0f0d24f0df6b78b6055f3aaabb79104f405d2e77", "fields": {"departement": "91", "stop_lat": 48.71556903984361, "code_postal": "91161", "stop_lon": 2.3099796752608137, "coord": [48.71556903984361, 2.3099796752608137], "stop_id": 4890686, "stop_desc": "RTE DE WISSOUS - 91161", "stop_name": "VIEILLE REMISE"}, "geometry": {"type": "Point", "coordinates": [2.3099796752608137, 48.71556903984361]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7578b3e5ce1dbe4f23b1fe7a3f858a867d53629b", "fields": {"departement": "91", "stop_lat": 48.73678440241334, "code_postal": "91689", "stop_lon": 2.3288296760290894, "coord": [48.73678440241334, 2.3288296760290894], "stop_id": 4890693, "stop_desc": "1 RUE DE MONTJEAN - 91689", "stop_name": "JUMELAGES"}, "geometry": {"type": "Point", "coordinates": [2.3288296760290894, 48.73678440241334]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d43dbea4ab535f6e1fd6a40767975bab67ebb7ab", "fields": {"departement": "94", "stop_lat": 48.75460337720744, "code_postal": "94073", "stop_lon": 2.3948633794539624, "coord": [48.75460337720744, 2.3948633794539624], "stop_id": 4909843, "stop_desc": "37 RUE JEAN-FRANCOIS MARMONTEL - 94073", "stop_name": "FERME DE GRIGNON"}, "geometry": {"type": "Point", "coordinates": [2.3948633794539624, 48.75460337720744]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a829fec9281edb345eb548892897d10ba405c507", "fields": {"departement": "94", "stop_lat": 48.75270480655273, "code_postal": "94073", "stop_lon": 2.398979916389768, "coord": [48.75270480655273, 2.398979916389768], "stop_id": 4909845, "stop_desc": "1 RUE DU 11 NOVEMBRE - 94073", "stop_name": "STADE MIMOUN"}, "geometry": {"type": "Point", "coordinates": [2.398979916389768, 48.75270480655273]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "efc0d95628521dfc5c66fdd922474c5f3580d4fc", "fields": {"departement": "94", "stop_lat": 48.76654331143228, "code_postal": "94073", "stop_lon": 2.3866235455230114, "coord": [48.76654331143228, 2.3866235455230114], "stop_id": 4909856, "stop_desc": "2 AVENUE DU GENERAL DE GAULLE - 94073", "stop_name": "LOUIS DUPERREY"}, "geometry": {"type": "Point", "coordinates": [2.3866235455230114, 48.76654331143228]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "683a66d78fba22a20844276568eefaf3c38ce2f9", "fields": {"departement": "75", "stop_lat": 48.842530379578726, "code_postal": "75112", "stop_lon": 2.3754078541183516, "coord": [48.842530379578726, 2.3754078541183516], "stop_id": 4996975, "stop_desc": "FACE 165 RUE DE BERCY - 75112", "stop_name": "GARE DE LYON"}, "geometry": {"type": "Point", "coordinates": [2.3754078541183516, 48.842530379578726]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b4ae84691897c7e689ad6ed15f4798bb147202e5", "fields": {"departement": "75", "stop_lat": 48.8483376180706, "code_postal": "75112", "stop_lon": 2.3710952409746535, "coord": [48.8483376180706, 2.3710952409746535], "stop_id": 4996979, "stop_desc": "41 RUE DE LYON - 75112", "stop_name": "LYON - LEDRU ROLLIN"}, "geometry": {"type": "Point", "coordinates": [2.3710952409746535, 48.8483376180706]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4a47ab49901e13b72beea0c907a6e4585d3aa678", "fields": {"departement": "75", "stop_lat": 48.85239140153054, "code_postal": "75112", "stop_lon": 2.369545320283473, "coord": [48.85239140153054, 2.369545320283473], "stop_id": 4996980, "stop_desc": "RUE DE LYON - 75112", "stop_name": "BASTILLE"}, "geometry": {"type": "Point", "coordinates": [2.369545320283473, 48.85239140153054]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3d2b6917da788fbf91d6b4ef0560f873f957b9bb", "fields": {"departement": "75", "stop_lat": 48.85977057434427, "code_postal": "75111", "stop_lon": 2.367697467983941, "coord": [48.85977057434427, 2.367697467983941], "stop_id": 4996984, "stop_desc": "90 BOULEVARD BEAUMARCHAIS - 75111", "stop_name": "SAINT-CLAUDE"}, "geometry": {"type": "Point", "coordinates": [2.367697467983941, 48.85977057434427]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f6e79ddb0f1eab81f8fe7b38a5e1d492acf905cc", "fields": {"departement": "75", "stop_lat": 48.88982587827333, "code_postal": "75118", "stop_lon": 2.3597149972338234, "coord": [48.88982587827333, 2.3597149972338234], "stop_id": 4997004, "stop_desc": "69 RUE MARX DORMOY - 75118", "stop_name": "ORDENER - MARX DORMOY"}, "geometry": {"type": "Point", "coordinates": [2.3597149972338234, 48.88982587827333]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aa78862e70f26d8420cd9ab561ad87ed01e4fee8", "fields": {"departement": "75", "stop_lat": 48.879473278409144, "code_postal": "75110", "stop_lon": 2.3557180612431323, "coord": [48.879473278409144, 2.3557180612431323], "stop_id": 4997012, "stop_desc": "33-35 RUE DE SAINT-QUENTIN - 75110", "stop_name": "LA FAYETTE - DUNKERQUE"}, "geometry": {"type": "Point", "coordinates": [2.3557180612431323, 48.879473278409144]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2db7b099577552b6dea6c190da5d674b6b40c671", "fields": {"departement": "75", "stop_lat": 48.874062503585236, "code_postal": "75110", "stop_lon": 2.3583048250119405, "coord": [48.874062503585236, 2.3583048250119405], "stop_id": 4997013, "stop_desc": "119 RUE DU FAUBOURG SAINT-MARTIN - 75110", "stop_name": "MAGENTA - SAINT-MARTIN"}, "geometry": {"type": "Point", "coordinates": [2.3583048250119405, 48.874062503585236]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c354df0aa61a008b6f165f5cfa25598b2296d133", "fields": {"departement": "75", "stop_lat": 48.85385657226886, "code_postal": "75104", "stop_lon": 2.3687426889970005, "coord": [48.85385657226886, 2.3687426889970005], "stop_id": 4997020, "stop_desc": "7 BOULEVARD BEAUMARCHAIS - 75104", "stop_name": "BASTILLE - BEAUMARCHAIS"}, "geometry": {"type": "Point", "coordinates": [2.3687426889970005, 48.85385657226886]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6b1d98f0fcbda1869ac8ed62962c179e5856bbb8", "fields": {"departement": "92", "stop_lat": 48.91887135273581, "code_postal": "92036", "stop_lon": 2.311004470539435, "coord": [48.91887135273581, 2.311004470539435], "stop_id": 5009397, "stop_desc": "185 AVENUE DES GRESILLONS - 92036", "stop_name": "PIERRE CURIE"}, "geometry": {"type": "Point", "coordinates": [2.311004470539435, 48.91887135273581]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8b75b7d909af11c3ae6839df04fb067ce9f1d85c", "fields": {"departement": "92", "stop_lat": 48.93186669884235, "code_postal": "92025", "stop_lon": 2.2671319703624646, "coord": [48.93186669884235, 2.2671319703624646], "stop_id": 5009413, "stop_desc": "FACE 8 RUE JULES MICHELET - 92025", "stop_name": "SOLFERINO"}, "geometry": {"type": "Point", "coordinates": [2.2671319703624646, 48.93186669884235]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "146e7e8cd41219b4e218e7ab3689c8a9431af4f0", "fields": {"departement": "92", "stop_lat": 48.931447707508035, "code_postal": "92025", "stop_lon": 2.2581848345727455, "coord": [48.931447707508035, 2.2581848345727455], "stop_id": 5009434, "stop_desc": "FACE 29 BOULEVARD DE FINLANDE - 92025", "stop_name": "COLLEGE JEAN-BAPTISTE CLEMENT"}, "geometry": {"type": "Point", "coordinates": [2.2581848345727455, 48.931447707508035]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b78c5fe023e064cc118b5306ee0a53f8af188c21", "fields": {"departement": "75", "stop_lat": 48.88087584272046, "code_postal": "75110", "stop_lon": 2.351726002486145, "coord": [48.88087584272046, 2.351726002486145], "stop_id": 5018145, "stop_desc": "129 BOULEVARD DE MAGENTA - 75110", "stop_name": "MAGENTA - MAUBEUGE - GARE DU NORD"}, "geometry": {"type": "Point", "coordinates": [2.351726002486145, 48.88087584272046]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "25c16fccb6c519357ca9d05d81aade10546b934d", "fields": {"departement": "75", "stop_lat": 48.8842642695008, "code_postal": "75118", "stop_lon": 2.349628333621673, "coord": [48.8842642695008, 2.349628333621673], "stop_id": 5018146, "stop_desc": "8 BOULEVARD BARBES - 75118", "stop_name": "BARBES - ROCHECHOUART"}, "geometry": {"type": "Point", "coordinates": [2.349628333621673, 48.8842642695008]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f83302c6667980b500d066e608c06fbf63e2b495", "fields": {"departement": "75", "stop_lat": 48.89362058230884, "code_postal": "75118", "stop_lon": 2.3370229752620117, "coord": [48.89362058230884, 2.3370229752620117], "stop_id": 5018156, "stop_desc": "154 BIS RUE ORDENER - 75118", "stop_name": "DAMREMONT - ORDENER"}, "geometry": {"type": "Point", "coordinates": [2.3370229752620117, 48.89362058230884]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4241c6b985f14f210d0cbacd6658d0fd54c8ca71", "fields": {"departement": "75", "stop_lat": 48.89388116032677, "code_postal": "75118", "stop_lon": 2.333806318144026, "coord": [48.89388116032677, 2.333806318144026], "stop_id": 5018159, "stop_desc": "205 RUE ORDENER - 75118", "stop_name": "VAUVENARGUES"}, "geometry": {"type": "Point", "coordinates": [2.333806318144026, 48.89388116032677]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8aa8ff73b7a2f9279b1fdc45226f28b79de955fa", "fields": {"departement": "75", "stop_lat": 48.88891841168186, "code_postal": "75117", "stop_lon": 2.316103105578142, "coord": [48.88891841168186, 2.316103105578142], "stop_id": 5018166, "stop_desc": "152 RUE CARDINET - 75117", "stop_name": "PARC MARTIN LUTHER KING"}, "geometry": {"type": "Point", "coordinates": [2.316103105578142, 48.88891841168186]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b09f9f12fe6b40192b15fd12b2b315f241ef4eb6", "fields": {"departement": "75", "stop_lat": 48.88717441776452, "code_postal": "75117", "stop_lon": 2.3135689841028446, "coord": [48.88717441776452, 2.3135689841028446], "stop_id": 5018168, "stop_desc": "3-5 RUE JOUFFROY D'ABBANS - 75117", "stop_name": "PONT CARDINET"}, "geometry": {"type": "Point", "coordinates": [2.3135689841028446, 48.88717441776452]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "667c419e1a816e854f6528b85eaf64029c50a968", "fields": {"departement": "75", "stop_lat": 48.88491703215499, "code_postal": "75117", "stop_lon": 2.3065790866122793, "coord": [48.88491703215499, 2.3065790866122793], "stop_id": 5018171, "stop_desc": "56 RUE JOUFFROY D'ABBANS - 75117", "stop_name": "JOUFFROY D'ABBANS - MALESHERBES"}, "geometry": {"type": "Point", "coordinates": [2.3065790866122793, 48.88491703215499]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f3279d93695f8a1a8c2c4e81d784214d0f9286f6", "fields": {"departement": "75", "stop_lat": 48.8833345278671, "code_postal": "75117", "stop_lon": 2.303786462218826, "coord": [48.8833345278671, 2.303786462218826], "stop_id": 5018173, "stop_desc": "78 RUE JOUFFROY D'ABBANS - 75117", "stop_name": "JOUFFROY D'ABBANS - VILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.303786462218826, 48.8833345278671]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "849c938942d54602d249bb4e1f39650333fb3cdf", "fields": {"departement": "75", "stop_lat": 48.88401794717766, "code_postal": "75117", "stop_lon": 2.3052032607811097, "coord": [48.88401794717766, 2.3052032607811097], "stop_id": 5018174, "stop_desc": "71 RUE JOUFFROY D'ABBANS - 75117", "stop_name": "JOUFFROY D'ABBANS - VILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.3052032607811097, 48.88401794717766]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "409cc45261e5267be54febd6bade0aae09799b77", "fields": {"departement": "75", "stop_lat": 48.88301957214625, "code_postal": "75117", "stop_lon": 2.3023830800884686, "coord": [48.88301957214625, 2.3023830800884686], "stop_id": 5018176, "stop_desc": "65 RUE DE PRONY - 75117", "stop_name": "WAGRAM - PRONY"}, "geometry": {"type": "Point", "coordinates": [2.3023830800884686, 48.88301957214625]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e4b36c32b4920ff1fab683d817e9882789c54a1b", "fields": {"departement": "75", "stop_lat": 48.876242627424915, "code_postal": "75108", "stop_lon": 2.3005618531507235, "coord": [48.876242627424915, 2.3005618531507235], "stop_id": 5018180, "stop_desc": "20 AVENUE HOCHE - 75108", "stop_name": "HOCHE - SAINT-HONORE"}, "geometry": {"type": "Point", "coordinates": [2.3005618531507235, 48.876242627424915]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "979c1e73fef87ce18c86a9ca73d48b15b79a5407", "fields": {"departement": "75", "stop_lat": 48.877460712561366, "code_postal": "75108", "stop_lon": 2.323043200916222, "coord": [48.877460712561366, 2.323043200916222], "stop_id": 5018191, "stop_desc": "38 RUE DE ROME - 75108", "stop_name": "GARE SAINT-LAZARE"}, "geometry": {"type": "Point", "coordinates": [2.323043200916222, 48.877460712561366]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "70da0242376755cf5a6cb665b4428d61c9734826", "fields": {"departement": "75", "stop_lat": 48.87829652117301, "code_postal": "75108", "stop_lon": 2.322974842811343, "coord": [48.87829652117301, 2.322974842811343], "stop_id": 5018193, "stop_desc": "24 RUE DE VIENNE - 75108", "stop_name": "EUROPE"}, "geometry": {"type": "Point", "coordinates": [2.322974842811343, 48.87829652117301]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "17d8fb6a4ea954236f887d242432994868b368e8", "fields": {"departement": "75", "stop_lat": 48.88098387448241, "code_postal": "75108", "stop_lon": 2.3243912593593636, "coord": [48.88098387448241, 2.3243912593593636], "stop_id": 5018196, "stop_desc": "1 RUE CLAPEYRON - 75108", "stop_name": "BUCAREST"}, "geometry": {"type": "Point", "coordinates": [2.3243912593593636, 48.88098387448241]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "39827016f555e33cf95529689444d867d83fba92", "fields": {"departement": "75", "stop_lat": 48.88440771648958, "code_postal": "75117", "stop_lon": 2.3218829668409033, "coord": [48.88440771648958, 2.3218829668409033], "stop_id": 5018198, "stop_desc": "18 RUE DES BATIGNOLLES - 75117", "stop_name": "MAIRIE DU 17E"}, "geometry": {"type": "Point", "coordinates": [2.3218829668409033, 48.88440771648958]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7d013dcb7a63dd407f31a794217f64c74e7d0269", "fields": {"departement": "75", "stop_lat": 48.895812554112624, "code_postal": "75117", "stop_lon": 2.322656517410389, "coord": [48.895812554112624, 2.322656517410389], "stop_id": 5018209, "stop_desc": "RUE NAVIER - 75117", "stop_name": "NAVIER"}, "geometry": {"type": "Point", "coordinates": [2.322656517410389, 48.895812554112624]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b72475739c8b22c98cd855eb157af891f48ead7c", "fields": {"departement": "75", "stop_lat": 48.89932630358991, "code_postal": "75117", "stop_lon": 2.3209652426357072, "coord": [48.89932630358991, 2.3209652426357072], "stop_id": 5018212, "stop_desc": "6 BOULEVARD DU BOIS LE PRETRE - 75117", "stop_name": "BOIS LE PRETRE"}, "geometry": {"type": "Point", "coordinates": [2.3209652426357072, 48.89932630358991]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c13fc7257887db71e1783e6318f2c18be2b2ee93", "fields": {"departement": "92", "stop_lat": 48.90140172282209, "code_postal": "92024", "stop_lon": 2.3170249778974994, "coord": [48.90140172282209, 2.3170249778974994], "stop_id": 5018216, "stop_desc": "92-98 BOULEVARD VICTOR HUGO - 92024", "stop_name": "CLICHY - VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.3170249778974994, 48.90140172282209]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5c5f0a9df60d860231d056f9268ced31901c41a3", "fields": {"departement": "75", "stop_lat": 48.873300053901026, "code_postal": "75109", "stop_lon": 2.327635793622974, "coord": [48.873300053901026, 2.327635793622974], "stop_id": 5018222, "stop_desc": "21 RUE AUBER - 75109", "stop_name": "HAVRE - HAUSSMANN"}, "geometry": {"type": "Point", "coordinates": [2.327635793622974, 48.873300053901026]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "51f08f2166bf5f339518954180eb35e25a132db9", "fields": {"departement": "75", "stop_lat": 48.87523993264867, "code_postal": "75110", "stop_lon": 2.357773928188207, "coord": [48.87523993264867, 2.357773928188207], "stop_id": 5018331, "stop_desc": "FACE 87 BOULEVARD DE STRASBOURG - 75110", "stop_name": "GARE DE L'EST"}, "geometry": {"type": "Point", "coordinates": [2.357773928188207, 48.87523993264867]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "08ff1fba577e6d4fb9dd09087267f156ba2b8319", "fields": {"departement": "75", "stop_lat": 48.868778444624105, "code_postal": "75110", "stop_lon": 2.355332800316335, "coord": [48.868778444624105, 2.355332800316335], "stop_id": 5018334, "stop_desc": "FACE 326 RUE SAINT-MARTIN - 75110", "stop_name": "PORTE SAINT-MARTIN"}, "geometry": {"type": "Point", "coordinates": [2.355332800316335, 48.868778444624105]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d2b04eb0d0901230954f0eee7e5e1b810c1267f5", "fields": {"departement": "75", "stop_lat": 48.865821809644764, "code_postal": "75103", "stop_lon": 2.353928649583883, "coord": [48.865821809644764, 2.353928649583883], "stop_id": 5018335, "stop_desc": "37-39 RUE REAUMUR - 75103", "stop_name": "REAUMUR - ARTS ET METIERS"}, "geometry": {"type": "Point", "coordinates": [2.353928649583883, 48.865821809644764]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f37801a7a0503b35a357b0b28803b68c2a0f3b50", "fields": {"departement": "75", "stop_lat": 48.85059796516235, "code_postal": "75105", "stop_lon": 2.345984155428729, "coord": [48.85059796516235, 2.345984155428729], "stop_id": 5018341, "stop_desc": "63 BD SAINT-GERMAIN - 75105", "stop_name": "DANTE"}, "geometry": {"type": "Point", "coordinates": [2.345984155428729, 48.85059796516235]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9b90acf8a0bcb4c8cffc9bff5e65dcd6d243c1cf", "fields": {"departement": "75", "stop_lat": 48.84621152039148, "code_postal": "75105", "stop_lon": 2.351634626985254, "coord": [48.84621152039148, 2.351634626985254], "stop_id": 5018344, "stop_desc": "36 RUE MONGE - 75105", "stop_name": "CARDINAL LEMOINE"}, "geometry": {"type": "Point", "coordinates": [2.351634626985254, 48.84621152039148]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6b8dc90bc37b55196b086bb31c885f3a2ea8654c", "fields": {"departement": "75", "stop_lat": 48.846894585583044, "code_postal": "75105", "stop_lon": 2.351512258385521, "coord": [48.846894585583044, 2.351512258385521], "stop_id": 5018345, "stop_desc": "27 RUE MONGE - 75105", "stop_name": "CARDINAL LEMOINE"}, "geometry": {"type": "Point", "coordinates": [2.351512258385521, 48.846894585583044]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f5062774948e18fbe48115b8b51088406135721c", "fields": {"departement": "75", "stop_lat": 48.828172718149084, "code_postal": "75113", "stop_lon": 2.356829656095805, "coord": [48.828172718149084, 2.356829656095805], "stop_id": 5018359, "stop_desc": "27 AVENUE D'ITALIE - 75113", "stop_name": "VANDREZANNE"}, "geometry": {"type": "Point", "coordinates": [2.356829656095805, 48.828172718149084]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "97458f2e7a906cd637a22b76cc7409cb964aab63", "fields": {"departement": "75", "stop_lat": 48.818519431681594, "code_postal": "75113", "stop_lon": 2.359793018671695, "coord": [48.818519431681594, 2.359793018671695], "stop_id": 5018367, "stop_desc": "AVENUE DE LA PORTE D'ITALIE - 75113", "stop_name": "PORTE D'ITALIE - HELENE BOUCHER"}, "geometry": {"type": "Point", "coordinates": [2.359793018671695, 48.818519431681594]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "681461c846b3e3e625a1ea29adeaed188eb15fbf", "fields": {"departement": "94", "stop_lat": 48.81476240384012, "code_postal": "94043", "stop_lon": 2.360621543737651, "coord": [48.81476240384012, 2.360621543737651], "stop_id": 5018368, "stop_desc": "18 AVENUE DE FONTAINEBLEAU - 94043", "stop_name": "ROGER SALENGRO - FONTAINEBLEAU"}, "geometry": {"type": "Point", "coordinates": [2.360621543737651, 48.81476240384012]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "40336f8282f4770c8b90b22bccde8adf7c4b6900", "fields": {"departement": "94", "stop_lat": 48.812137822019444, "code_postal": "94043", "stop_lon": 2.361423259884513, "coord": [48.812137822019444, 2.361423259884513], "stop_id": 5018370, "stop_desc": "58 AVENUE DE FONTAINEBLEAU - 94043", "stop_name": "CONVENTION - FONTAINEBLEAU"}, "geometry": {"type": "Point", "coordinates": [2.361423259884513, 48.812137822019444]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7064040a238b2d0cab11160910bb11e68a22769d", "fields": {"departement": "94", "stop_lat": 48.80943303655347, "code_postal": "94043", "stop_lon": 2.3586460244237313, "coord": [48.80943303655347, 2.3586460244237313], "stop_id": 5018375, "stop_desc": "1 RUE DE VERDUN - 94043", "stop_name": "HOPITAL DU KREMLIN-BICETRE"}, "geometry": {"type": "Point", "coordinates": [2.3586460244237313, 48.80943303655347]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bdb2692127f21c6224e81bf82c51058cf7020022", "fields": {"departement": "75", "stop_lat": 48.86586694331711, "code_postal": "75103", "stop_lon": 2.3524574303330636, "coord": [48.86586694331711, 2.3524574303330636], "stop_id": 5018389, "stop_desc": "84 BOULEVARD DE SEBASTOPOL - 75103", "stop_name": "REAUMUR - SEBASTOPOL"}, "geometry": {"type": "Point", "coordinates": [2.3524574303330636, 48.86586694331711]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b8bf865af308386c9b8ce6324c97fd6a0466f4c5", "fields": {"departement": "75", "stop_lat": 48.87243595580059, "code_postal": "75110", "stop_lon": 2.3574049633654526, "coord": [48.87243595580059, 2.3574049633654526], "stop_id": 5018394, "stop_desc": "67-69 RUE DU FAUBOURG SAINT-MARTIN - 75110", "stop_name": "MAIRIE DU 10E"}, "geometry": {"type": "Point", "coordinates": [2.3574049633654526, 48.87243595580059]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6538533cc65c26be652082702f368e9b7139574b", "fields": {"departement": "75", "stop_lat": 48.868778444624105, "code_postal": "75110", "stop_lon": 2.355332800316335, "coord": [48.868778444624105, 2.355332800316335], "stop_id": 5018395, "stop_desc": "FACE 326 RUE SAINT-MARTIN - 75110", "stop_name": "PORTE SAINT-MARTIN"}, "geometry": {"type": "Point", "coordinates": [2.355332800316335, 48.868778444624105]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "26504369f7914d6ef1b72162c0a6527237623ff7", "fields": {"departement": "75", "stop_lat": 48.8597465272257, "code_postal": "75104", "stop_lon": 2.35249649876749, "coord": [48.8597465272257, 2.35249649876749], "stop_id": 5018398, "stop_desc": "FACE 22 RUE DU RENARD - 75104", "stop_name": "CENTRE GEORGES POMPIDOU"}, "geometry": {"type": "Point", "coordinates": [2.35249649876749, 48.8597465272257]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1687601ce67afa10ba76bc8a19b4b7d2d059fde7", "fields": {"departement": "75", "stop_lat": 48.853761468030406, "code_postal": "75104", "stop_lon": 2.3470742363782513, "coord": [48.853761468030406, 2.3470742363782513], "stop_id": 5018400, "stop_desc": "6 RUE DE LA CITE - 75104", "stop_name": "CITE - PARVIS NOTRE-DAME"}, "geometry": {"type": "Point", "coordinates": [2.3470742363782513, 48.853761468030406]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9da6914edfeacff62fec786b5bae3b04ef80d55f", "fields": {"departement": "75", "stop_lat": 48.85241340970007, "code_postal": "75105", "stop_lon": 2.346311317055316, "coord": [48.85241340970007, 2.346311317055316], "stop_id": 5018401, "stop_desc": "4 RUE DU PETIT PONT - 75105", "stop_name": "PETIT PONT"}, "geometry": {"type": "Point", "coordinates": [2.346311317055316, 48.85241340970007]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8a8c1ddfed7595067b9ee445dacd087fe3a7d219", "fields": {"departement": "75", "stop_lat": 48.849411331848685, "code_postal": "75105", "stop_lon": 2.349265945050231, "coord": [48.849411331848685, 2.349265945050231], "stop_id": 5018403, "stop_desc": "4 RUE MONGE - 75105", "stop_name": "MAUBERT - MUTUALITE"}, "geometry": {"type": "Point", "coordinates": [2.349265945050231, 48.849411331848685]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8e33629bc148e823c9d50d0becaf41e68048643f", "fields": {"departement": "75", "stop_lat": 48.84621152039148, "code_postal": "75105", "stop_lon": 2.351634626985254, "coord": [48.84621152039148, 2.351634626985254], "stop_id": 5018404, "stop_desc": "36 RUE MONGE - 75105", "stop_name": "CARDINAL LEMOINE"}, "geometry": {"type": "Point", "coordinates": [2.351634626985254, 48.84621152039148]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b51cb4b424dcf28ed1eac4ee6e77a1d502a0e206", "fields": {"departement": "94", "stop_lat": 48.810501863902964, "code_postal": "94043", "stop_lon": 2.362320626590704, "coord": [48.810501863902964, 2.362320626590704], "stop_id": 5018427, "stop_desc": "75 AVENUE DE FONTAINEBLEAU - 94043", "stop_name": "LE KREMLIN-BICETRE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.362320626590704, 48.810501863902964]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a537a6cc229b1fc89d6dc2f216cd2e2f3e735aaa", "fields": {"departement": "75", "stop_lat": 48.818519431681594, "code_postal": "75113", "stop_lon": 2.359793018671695, "coord": [48.818519431681594, 2.359793018671695], "stop_id": 5018430, "stop_desc": "AVENUE DE LA PORTE D'ITALIE - 75113", "stop_name": "PORTE D'ITALIE - HELENE BOUCHER"}, "geometry": {"type": "Point", "coordinates": [2.359793018671695, 48.818519431681594]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cd1b61ffd040ddd37f5ba1986ed97d0945bfad52", "fields": {"departement": "75", "stop_lat": 48.82641104428314, "code_postal": "75113", "stop_lon": 2.357400702995543, "coord": [48.82641104428314, 2.357400702995543], "stop_id": 5018433, "stop_desc": "55-57 AVENUE D'ITALIE - 75113", "stop_name": "ITALIE - TOLBIAC"}, "geometry": {"type": "Point", "coordinates": [2.357400702995543, 48.82641104428314]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "05cf3c63c04059e11477111ceb96a9733d769efb", "fields": {"departement": "75", "stop_lat": 48.831651002586945, "code_postal": "75113", "stop_lon": 2.3563817211355413, "coord": [48.831651002586945, 2.3563817211355413], "stop_id": 5018435, "stop_desc": "9 PLACE D'ITALIE - 75113", "stop_name": "PLACE D'ITALIE"}, "geometry": {"type": "Point", "coordinates": [2.3563817211355413, 48.831651002586945]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "95ee420eabd90d2e9f55905f260318b3e59a837a", "fields": {"departement": "92", "stop_lat": 48.8297341467827, "code_postal": "92012", "stop_lon": 2.229275942430251, "coord": [48.8297341467827, 2.229275942430251], "stop_id": 5018458, "stop_desc": "PISTE GARE ROUTIERE - 92012", "stop_name": "PONT DE SEVRES-METRO"}, "geometry": {"type": "Point", "coordinates": [2.229275942430251, 48.8297341467827]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "104e2785d179eeba1aac493989157111166004c5", "fields": {"departement": "92", "stop_lat": 48.82795039915451, "code_postal": "92072", "stop_lon": 2.2247466599919257, "coord": [48.82795039915451, 2.2247466599919257], "stop_id": 5018459, "stop_desc": "ALLEE DU PONT DE SEVRES - 92072", "stop_name": "MUSEE DE SEVRES"}, "geometry": {"type": "Point", "coordinates": [2.2247466599919257, 48.82795039915451]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "360420c49a3b1fc7c54b5f6afbd6080f83b3a907", "fields": {"departement": "92", "stop_lat": 48.809683828737846, "code_postal": "92023", "stop_lon": 2.253104083076981, "coord": [48.809683828737846, 2.253104083076981], "stop_id": 5018474, "stop_desc": "163 RUE DE FLEURY - 92023", "stop_name": "RIVOLI"}, "geometry": {"type": "Point", "coordinates": [2.253104083076981, 48.809683828737846]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4a903e914eb94d3a0246c03a0edf996b8b70869a", "fields": {"departement": "92", "stop_lat": 48.81725930585249, "code_postal": "92040", "stop_lon": 2.2649595333518677, "coord": [48.81725930585249, 2.2649595333518677], "stop_id": 5018479, "stop_desc": "34 RUE RABELAIS - 92040", "stop_name": "VERDI"}, "geometry": {"type": "Point", "coordinates": [2.2649595333518677, 48.81725930585249]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5cd5682ccb1d0148f64f73cfba0aa4d05ffdea41", "fields": {"departement": "92", "stop_lat": 48.82283664125882, "code_postal": "92040", "stop_lon": 2.273649349876303, "coord": [48.82283664125882, 2.273649349876303], "stop_id": 5018484, "stop_desc": "13 BIS RUE AUGUSTE GERVAIS - 92040", "stop_name": "MUSEE"}, "geometry": {"type": "Point", "coordinates": [2.273649349876303, 48.82283664125882]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d3fc6ad2744dce3b4d63efef7d89abd9ce462b69", "fields": {"departement": "75", "stop_lat": 48.83330919354311, "code_postal": "75115", "stop_lon": 2.2774075885147833, "coord": [48.83330919354311, 2.2774075885147833], "stop_id": 5018490, "stop_desc": "PLACE DES MARTYRS DE LA RESISTANCE DE LA PORTE DE SEVRES - 75115", "stop_name": "SUZANNE LENGLEN"}, "geometry": {"type": "Point", "coordinates": [2.2774075885147833, 48.83330919354311]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ee7b3ff8136a20ca1fa561ec5cf3ec2f4b98fbb4", "fields": {"departement": "75", "stop_lat": 48.83573626432821, "code_postal": "75115", "stop_lon": 2.278248896047409, "coord": [48.83573626432821, 2.278248896047409], "stop_id": 5018491, "stop_desc": "1-3 AVENUE DE LA PORTE DE SEVRES - 75115", "stop_name": "BALARD"}, "geometry": {"type": "Point", "coordinates": [2.278248896047409, 48.83573626432821]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d1a609d5695088176119b24960b1bb3f88ce191b", "fields": {"departement": "75", "stop_lat": 48.8369676365704, "code_postal": "75115", "stop_lon": 2.2783972601736324, "coord": [48.8369676365704, 2.2783972601736324], "stop_id": 5018492, "stop_desc": "85 RUE LEBLANC - 75115", "stop_name": "PLACE BALARD"}, "geometry": {"type": "Point", "coordinates": [2.2783972601736324, 48.8369676365704]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6826c1b043284c4396e863d60328d99ed0a0b2be", "fields": {"departement": "75", "stop_lat": 48.83946421233197, "code_postal": "75115", "stop_lon": 2.274541211540746, "coord": [48.83946421233197, 2.274541211540746], "stop_id": 5018493, "stop_desc": "31 RUE LEBLANC - 75115", "stop_name": "RUE LEBLANC"}, "geometry": {"type": "Point", "coordinates": [2.274541211540746, 48.83946421233197]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a244eec1aa3edcee83d5d5bd5ba13abcaa01d46d", "fields": {"departement": "92", "stop_lat": 48.91787456218363, "code_postal": "92004", "stop_lon": 2.314741297717607, "coord": [48.91787456218363, 2.314741297717607], "stop_id": 5020413, "stop_desc": "3 RUE PIERRE CURIE - 92004", "stop_name": "ASNIERES - BORDS DE SEINE"}, "geometry": {"type": "Point", "coordinates": [2.314741297717607, 48.91787456218363]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fd137b0c5c42a10b80fcb32adcf4add9146460c0", "fields": {"departement": "92", "stop_lat": 48.9179182298342, "code_postal": "92004", "stop_lon": 2.3088095215304976, "coord": [48.9179182298342, 2.3088095215304976], "stop_id": 5020417, "stop_desc": "145 AVENUE DES GRESILLONS - 92004", "stop_name": "TOUR D'ASNIERES - LAURENT CELY"}, "geometry": {"type": "Point", "coordinates": [2.3088095215304976, 48.9179182298342]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ef0484a6d67f4fa22946a3da9ea73080361111e7", "fields": {"departement": "92", "stop_lat": 48.917810434682245, "code_postal": "92004", "stop_lon": 2.3090141236510027, "coord": [48.917810434682245, 2.3090141236510027], "stop_id": 5020418, "stop_desc": "198 AVENUE DES GRESILLONS - 92004", "stop_name": "TOUR D'ASNIERES - LAURENT CELY"}, "geometry": {"type": "Point", "coordinates": [2.3090141236510027, 48.917810434682245]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "faa58759f3b3a1ffcebe0b7ef602f2169dc8802f", "fields": {"departement": "92", "stop_lat": 48.92211258700736, "code_postal": "92036", "stop_lon": 2.2995883843019325, "coord": [48.92211258700736, 2.2995883843019325], "stop_id": 5020423, "stop_desc": "FACE 58 AVENUE CHANDON - 92036", "stop_name": "BARBUSSE"}, "geometry": {"type": "Point", "coordinates": [2.2995883843019325, 48.92211258700736]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4127742a3c309acb99ac7570b39cc31b27c8df62", "fields": {"departement": "92", "stop_lat": 48.923540562795125, "code_postal": "92036", "stop_lon": 2.296696152480557, "coord": [48.923540562795125, 2.296696152480557], "stop_id": 5020425, "stop_desc": "21 AVENUE CHANDON - 92036", "stop_name": "DEBUSSY - CHANDON"}, "geometry": {"type": "Point", "coordinates": [2.296696152480557, 48.923540562795125]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "453a6f803bc48dbca0cb69e05138df7264f62767", "fields": {"departement": "92", "stop_lat": 48.92482327770003, "code_postal": "92036", "stop_lon": 2.2901216113838316, "coord": [48.92482327770003, 2.2901216113838316], "stop_id": 5020429, "stop_desc": "FACE 60 RUE LOUIS CALMEL - 92036", "stop_name": "COUTURE D'AUXERRE"}, "geometry": {"type": "Point", "coordinates": [2.2901216113838316, 48.92482327770003]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1d834a5cb6d61df26912a147bc9994e0eb3f9d78", "fields": {"departement": "92", "stop_lat": 48.92822094965031, "code_postal": "92004", "stop_lon": 2.2723060650553872, "coord": [48.92822094965031, 2.2723060650553872], "stop_id": 5020436, "stop_desc": "4 AVENUE D'ORGEMONT - 92004", "stop_name": "ROBERT LAVERGNE"}, "geometry": {"type": "Point", "coordinates": [2.2723060650553872, 48.92822094965031]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bc227af29c78b8a5cc163625a4d4799dd00b6a4a", "fields": {"departement": "92", "stop_lat": 48.93225782669017, "code_postal": "92004", "stop_lon": 2.275629162856483, "coord": [48.93225782669017, 2.275629162856483], "stop_id": 5020439, "stop_desc": "RUE HENRI POINCARE - 92004", "stop_name": "MOURINOUX"}, "geometry": {"type": "Point", "coordinates": [2.275629162856483, 48.93225782669017]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a325a8767693cf794277a4bd128fc3acbff607ce", "fields": {"departement": "92", "stop_lat": 48.92944817233457, "code_postal": "92025", "stop_lon": 2.265362140738861, "coord": [48.92944817233457, 2.265362140738861], "stop_id": 5020446, "stop_desc": "77 BOULEVARD MARCEAU - 92025", "stop_name": "MARCHE MARCEAU"}, "geometry": {"type": "Point", "coordinates": [2.265362140738861, 48.92944817233457]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9ce33139b7c132679da16b83f98ae608fe588d64", "fields": {"departement": "92", "stop_lat": 48.931447707508035, "code_postal": "92025", "stop_lon": 2.2581848345727455, "coord": [48.931447707508035, 2.2581848345727455], "stop_id": 5020450, "stop_desc": "FACE 29 BOULEVARD DE FINLANDE - 92025", "stop_name": "COLLEGE JEAN-BAPTISTE CLEMENT"}, "geometry": {"type": "Point", "coordinates": [2.2581848345727455, 48.931447707508035]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "453387d0bef1077d160d8caac0b72f82f785b2ca", "fields": {"departement": "92", "stop_lat": 48.92292290293099, "code_postal": "92025", "stop_lon": 2.250683559504476, "coord": [48.92292290293099, 2.250683559504476], "stop_id": 5020457, "stop_desc": "FACE 14 RUE GABRIEL PERI - 92025", "stop_name": "EGLISE DE COLOMBES"}, "geometry": {"type": "Point", "coordinates": [2.250683559504476, 48.92292290293099]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b08d277f0da95bba0d9123e98cb9c0b1a74b4452", "fields": {"departement": "92", "stop_lat": 48.91970778205413, "code_postal": "92036", "stop_lon": 2.314099576330498, "coord": [48.91970778205413, 2.314099576330498], "stop_id": 5020463, "stop_desc": "FACE 207 AVENUE DES GRESILLONS - 92036", "stop_name": "LES GRESILLONS RER"}, "geometry": {"type": "Point", "coordinates": [2.314099576330498, 48.91970778205413]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "608448378f86d2e0efb04344c41a1f6b1b7825b2", "fields": {"departement": "92", "stop_lat": 48.91481883587677, "code_postal": "92025", "stop_lon": 2.253751435373694, "coord": [48.91481883587677, 2.253751435373694], "stop_id": 5020467, "stop_desc": "R FELIX FAURE - 92025", "stop_name": "FELIX FAURE"}, "geometry": {"type": "Point", "coordinates": [2.253751435373694, 48.91481883587677]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3f4e9c6515d38aab57d22bb3a31ab522b77109b8", "fields": {"departement": "92", "stop_lat": 48.923081303409, "code_postal": "92025", "stop_lon": 2.2588112980874206, "coord": [48.923081303409, 2.2588112980874206], "stop_id": 5020472, "stop_desc": "19 R JULIEN GALLE - 92025", "stop_name": "JULIEN GALLE"}, "geometry": {"type": "Point", "coordinates": [2.2588112980874206, 48.923081303409]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b978cb033f890a545728c9b3d704efc46e9806ec", "fields": {"departement": "92", "stop_lat": 48.913173570724645, "code_postal": "92025", "stop_lon": 2.2409781085053257, "coord": [48.913173570724645, 2.2409781085053257], "stop_id": 5020480, "stop_desc": "39 R DU GENERAL CREMER - 92025", "stop_name": "GENERAL CREMER"}, "geometry": {"type": "Point", "coordinates": [2.2409781085053257, 48.913173570724645]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7e137b9b41436f0b6e924fa07eeb20abda4b6db7", "fields": {"departement": "92", "stop_lat": 48.92637786305897, "code_postal": "92025", "stop_lon": 2.2440358549998067, "coord": [48.92637786305897, 2.2440358549998067], "stop_id": 5020490, "stop_desc": "FACE 20 AVENUE DE L'EUROPE - 92025", "stop_name": "TOUR D'AUVERGNE"}, "geometry": {"type": "Point", "coordinates": [2.2440358549998067, 48.92637786305897]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b878a120d2317ebfddbc9a2aa6805f2772e71213", "fields": {"departement": "92", "stop_lat": 48.92993791085241, "code_postal": "92025", "stop_lon": 2.2456252563669428, "coord": [48.92993791085241, 2.2456252563669428], "stop_id": 5020495, "stop_desc": "79-81 RUE PAUL BERT - 92025", "stop_name": "LES SAULES"}, "geometry": {"type": "Point", "coordinates": [2.2456252563669428, 48.92993791085241]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f999654a3fe1aa3731bd686507354e24f595fd38", "fields": {"departement": "92", "stop_lat": 48.9304293909131, "code_postal": "92025", "stop_lon": 2.2420508308051317, "coord": [48.9304293909131, 2.2420508308051317], "stop_id": 5020496, "stop_desc": "VOIE DU PARC - 92025", "stop_name": "PARC PIERRE LAGRAVERE"}, "geometry": {"type": "Point", "coordinates": [2.2420508308051317, 48.9304293909131]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e60ebd7eb700c7466c9bb05be34c2659f212f108", "fields": {"departement": "92", "stop_lat": 48.92610764353979, "code_postal": "92025", "stop_lon": 2.232470986928988, "coord": [48.92610764353979, 2.232470986928988], "stop_id": 5020500, "stop_desc": "VOIE DU PARC - 92025", "stop_name": "PISCINE - PATINOIRE"}, "geometry": {"type": "Point", "coordinates": [2.232470986928988, 48.92610764353979]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "69433e6460b3035b513532339fa164152235bf96", "fields": {"departement": "92", "stop_lat": 48.92610764353979, "code_postal": "92025", "stop_lon": 2.232470986928988, "coord": [48.92610764353979, 2.232470986928988], "stop_id": 5020501, "stop_desc": "VOIE DU PARC - 92025", "stop_name": "PISCINE - PATINOIRE"}, "geometry": {"type": "Point", "coordinates": [2.232470986928988, 48.92610764353979]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "47c83cc7df89c55429e1152c3e4367ec1de1f621", "fields": {"departement": "78", "stop_lat": 48.778911931683034, "code_postal": "78640", "stop_lon": 2.214748261777173, "coord": [48.778911931683034, 2.214748261777173], "stop_id": 5067271, "stop_desc": "FACE 45 AVENUE DE L'EUROPE (CHAUSSEE NORD) - 78640", "stop_name": "LIAISON INOVEL SUD"}, "geometry": {"type": "Point", "coordinates": [2.214748261777173, 48.778911931683034]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "40f9c9400cfe289e848a22ace78ea40b44c47fbf", "fields": {"departement": "78", "stop_lat": 48.78480321871707, "code_postal": "78640", "stop_lon": 2.2188555569366892, "coord": [48.78480321871707, 2.2188555569366892], "stop_id": 5067300, "stop_desc": "GARE ROUTIERE - 78640", "stop_name": "VELIZY 2"}, "geometry": {"type": "Point", "coordinates": [2.2188555569366892, 48.78480321871707]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1c5f1386020a3ac6a05bba7ce452d47593428952", "fields": {"departement": "92", "stop_lat": 48.78691790681044, "code_postal": "92023", "stop_lon": 2.2535626256996477, "coord": [48.78691790681044, 2.2535626256996477], "stop_id": 5067450, "stop_desc": "AVENUE CLAUDE TREBIGNAUD - 92023", "stop_name": "HOPITAL ANTOINE BECLERE"}, "geometry": {"type": "Point", "coordinates": [2.2535626256996477, 48.78691790681044]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e572623ca85df1e01ee9717962bfd42e450e0fcc", "fields": {"departement": "75", "stop_lat": 48.820911616638455, "code_postal": "75113", "stop_lon": 2.3499534959271067, "coord": [48.820911616638455, 2.3499534959271067], "stop_id": 3813527, "stop_desc": "FACE 53 BOULEVARD KELLERMANN - 75113", "stop_name": "POTERNE DES PEUPLIERS"}, "geometry": {"type": "Point", "coordinates": [2.3499534959271067, 48.820911616638455]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b7227a6e85b2c92442a11cc5ade24f5ed0039748", "fields": {"departement": "75", "stop_lat": 48.82167167470405, "code_postal": "75113", "stop_lon": 2.3702475859019176, "coord": [48.82167167470405, 2.3702475859019176], "stop_id": 3813532, "stop_desc": "FACE 72 BD MASSENA - 75113", "stop_name": "PORTE D'IVRY"}, "geometry": {"type": "Point", "coordinates": [2.3702475859019176, 48.82167167470405]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6a90a6802aca58ccc7055dc31353c55c1b8bf909", "fields": {"departement": "75", "stop_lat": 48.8218964457047, "code_postal": "75113", "stop_lon": 2.3699618979128303, "coord": [48.8218964457047, 2.3699618979128303], "stop_id": 3813533, "stop_desc": "72 BOULEVARD MASSENA - 75113", "stop_name": "PORTE D'IVRY"}, "geometry": {"type": "Point", "coordinates": [2.3699618979128303, 48.8218964457047]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "90f4c373e98653500ff1c79d31eec46ef0293078", "fields": {"departement": "75", "stop_lat": 48.824132010530164, "code_postal": "75113", "stop_lon": 2.37766746177698, "coord": [48.824132010530164, 2.37766746177698], "stop_id": 3813534, "stop_desc": "BD DU GENERAL JEAN SIMON - 75113", "stop_name": "MARYSE BASTIE"}, "geometry": {"type": "Point", "coordinates": [2.37766746177698, 48.824132010530164]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2f3c448bca9283220ba776fb0cda8dd3081fb5fd", "fields": {"departement": "75", "stop_lat": 48.83989967563712, "code_postal": "75112", "stop_lon": 2.4087099699960133, "coord": [48.83989967563712, 2.4087099699960133], "stop_id": 3813545, "stop_desc": "61 BD SOULT - 75112", "stop_name": "MONTEMPOIVRE"}, "geometry": {"type": "Point", "coordinates": [2.4087099699960133, 48.83989967563712]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dff24f78ea6aed708408d1d2b9fe1caa5447e941", "fields": {"departement": "75", "stop_lat": 48.81884297364722, "code_postal": "75113", "stop_lon": 2.359874820335962, "coord": [48.81884297364722, 2.359874820335962], "stop_id": 3864875, "stop_desc": "FACE 164 BOULEVARD MASSENA - 75113", "stop_name": "PORTE D'ITALIE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.359874820335962, 48.81884297364722]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f4521f8f976e17dd84143315542d4a3e907eb279", "fields": {"departement": "94", "stop_lat": 48.810501863902964, "code_postal": "94043", "stop_lon": 2.362320626590704, "coord": [48.810501863902964, 2.362320626590704], "stop_id": 3864882, "stop_desc": "75 AVENUE DE FONTAINEBLEAU - 94043", "stop_name": "LE KREMLIN-BICETRE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.362320626590704, 48.810501863902964]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e89b4f30493868280f4df33e76319ada478e4124", "fields": {"departement": "94", "stop_lat": 48.80928933116081, "code_postal": "94043", "stop_lon": 2.358088049981442, "coord": [48.80928933116081, 2.358088049981442], "stop_id": 3864883, "stop_desc": "1 RUE DE VERDUN-LAZARE PONTICELLI - 94043", "stop_name": "HOPITAL DU KREMLIN-BICETRE"}, "geometry": {"type": "Point", "coordinates": [2.358088049981442, 48.80928933116081]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d4957aa6fd7da674470b749b5de4e03e457b4285", "fields": {"departement": "94", "stop_lat": 48.80348316255257, "code_postal": "94043", "stop_lon": 2.3583850556020804, "coord": [48.80348316255257, 2.3583850556020804], "stop_id": 3864886, "stop_desc": "FACE 50 BOULEVARD CHASTENET DE GERY - 94043", "stop_name": "LES COQUETTES"}, "geometry": {"type": "Point", "coordinates": [2.3583850556020804, 48.80348316255257]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5a681de7920aed5ea48e6111d654a8a521b9dee7", "fields": {"departement": "94", "stop_lat": 48.78035780179034, "code_postal": "94076", "stop_lon": 2.3553292228019247, "coord": [48.78035780179034, 2.3553292228019247], "stop_id": 3864899, "stop_desc": "FACE 141 RUE DE CHEVILLY - 94076", "stop_name": "YOURI GAGARINE"}, "geometry": {"type": "Point", "coordinates": [2.3553292228019247, 48.78035780179034]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cecede18daadf9123cb750f6a23752573b572b0e", "fields": {"departement": "94", "stop_lat": 48.78152620546666, "code_postal": "94076", "stop_lon": 2.3555472360672267, "coord": [48.78152620546666, 2.3555472360672267], "stop_id": 3864900, "stop_desc": "119 RUE DE CHEVILLY - 94076", "stop_name": "YOURI GAGARINE"}, "geometry": {"type": "Point", "coordinates": [2.3555472360672267, 48.78152620546666]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a0a4328f136385f9133084e323eccecb37405e1d", "fields": {"departement": "94", "stop_lat": 48.775190042091346, "code_postal": "94038", "stop_lon": 2.352934043488661, "coord": [48.775190042091346, 2.352934043488661], "stop_id": 3864904, "stop_desc": "84 RUE DE BICETRE - 94038", "stop_name": "LES COQUELICOTS"}, "geometry": {"type": "Point", "coordinates": [2.352934043488661, 48.775190042091346]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8da8c1d58827e0bf72c058d04326483ee303c836", "fields": {"departement": "94", "stop_lat": 48.772629461588615, "code_postal": "94021", "stop_lon": 2.3397839218859495, "coord": [48.772629461588615, 2.3397839218859495], "stop_id": 3864908, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 94021", "stop_name": "JEAN MERMOZ - GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.3397839218859495, 48.772629461588615]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6b59be3e301c8bdf3290644fe3754881744eab61", "fields": {"departement": "94", "stop_lat": 48.760378641419756, "code_postal": "94021", "stop_lon": 2.342026480109605, "coord": [48.760378641419756, 2.342026480109605], "stop_id": 3864916, "stop_desc": "CHAUSSEE CIRCULAIRE EST DE L'AVENUE GUYNEMER (CD 65) - 94021", "stop_name": "MARCHE DE RUNGIS - ENTREE E1"}, "geometry": {"type": "Point", "coordinates": [2.342026480109605, 48.760378641419756]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e4929a86715c4807e657e288a8104274b34c6822", "fields": {"departement": "94", "stop_lat": 48.7576101808364, "code_postal": "94021", "stop_lon": 2.3443508263230424, "coord": [48.7576101808364, 2.3443508263230424], "stop_id": 3864917, "stop_desc": "AVENUE CHARLES LINDBERGH - 94021", "stop_name": "LE DELTA"}, "geometry": {"type": "Point", "coordinates": [2.3443508263230424, 48.7576101808364]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7939363c9eed776066dd37559a4c1564214781f5", "fields": {"departement": "94", "stop_lat": 48.7579067870183, "code_postal": "94021", "stop_lon": 2.3443916495395594, "coord": [48.7579067870183, 2.3443916495395594], "stop_id": 3864918, "stop_desc": "AVENUE CHARLES LINDBERGH - 94021", "stop_name": "LE DELTA"}, "geometry": {"type": "Point", "coordinates": [2.3443916495395594, 48.7579067870183]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "04d9adf7186f51d01f3fa6a9a83474425c25d6f1", "fields": {"departement": "94", "stop_lat": 48.747641908841686, "code_postal": "94065", "stop_lon": 2.3491608729950526, "coord": [48.747641908841686, 2.3491608729950526], "stop_id": 3864925, "stop_desc": "FACE 1 RUE DE L'EGLISE - 94065", "stop_name": "MAIRIE DE RUNGIS"}, "geometry": {"type": "Point", "coordinates": [2.3491608729950526, 48.747641908841686]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d4b978745a97f86b7a5cc4260574d72b29027454", "fields": {"departement": "94", "stop_lat": 48.74054978434813, "code_postal": "94065", "stop_lon": 2.3526925687723703, "coord": [48.74054978434813, 2.3526925687723703], "stop_id": 3864932, "stop_desc": "PISTE PARVIS DE LA GARE - 94065", "stop_name": "RUNGIS - LA FRATERNELLE RER"}, "geometry": {"type": "Point", "coordinates": [2.3526925687723703, 48.74054978434813]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "502ed629d6cff6ff2c4a16f600f295f4540d929b", "fields": {"departement": "94", "stop_lat": 48.77130776729869, "code_postal": "94021", "stop_lon": 2.3479289034384623, "coord": [48.77130776729869, 2.3479289034384623], "stop_id": 3864935, "stop_desc": "88 AVENUE DU GENERAL DE GAULLE - 94021", "stop_name": "MAIRIE DE CHEVILLY-LARUE"}, "geometry": {"type": "Point", "coordinates": [2.3479289034384623, 48.77130776729869]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "57774b449743b5b3ed5c7881738d9a1b5867dfaf", "fields": {"departement": "94", "stop_lat": 48.803420226026184, "code_postal": "94076", "stop_lon": 2.358507485336182, "coord": [48.803420226026184, 2.358507485336182], "stop_id": 3864936, "stop_desc": "7 BOULEVARD CHASTENET DE GERY - 94076", "stop_name": "LES COQUETTES"}, "geometry": {"type": "Point", "coordinates": [2.358507485336182, 48.803420226026184]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ae11d9891f19e06efa2646e15585d0fc103bbf0e", "fields": {"departement": "94", "stop_lat": 48.8061526129115, "code_postal": "94076", "stop_lon": 2.3579779362065865, "coord": [48.8061526129115, 2.3579779362065865], "stop_id": 3864937, "stop_desc": "5 BOULEVARD CHASTENET DE GERY - 94076", "stop_name": "CHASTENET DE GERY"}, "geometry": {"type": "Point", "coordinates": [2.3579779362065865, 48.8061526129115]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cdf4f34c76ebd74c1d5cfb93badea77e965f9bd6", "fields": {"departement": "92", "stop_lat": 48.885470572986875, "code_postal": "92051", "stop_lon": 2.2591543980581945, "coord": [48.885470572986875, 2.2591543980581945], "stop_id": 3877768, "stop_desc": "AVENUE CHARLES DE GAULLE - 92051", "stop_name": "PONT DE NEUILLY-METRO"}, "geometry": {"type": "Point", "coordinates": [2.2591543980581945, 48.885470572986875]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d2dc9ffeab52ba6a2fc8a9e3a469211f54123ec2", "fields": {"departement": "92", "stop_lat": 48.88461955721549, "code_postal": "92062", "stop_lon": 2.2386463359117337, "coord": [48.88461955721549, 2.2386463359117337], "stop_id": 3877778, "stop_desc": "110-112 R DE LA REPUBLIQUE - 92062", "stop_name": "MAIRIE DE PUTEAUX"}, "geometry": {"type": "Point", "coordinates": [2.2386463359117337, 48.88461955721549]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "32363f92c710e1c2f9aa46c0c9e7b8d4bbb57ace", "fields": {"departement": "92", "stop_lat": 48.883969094999905, "code_postal": "92062", "stop_lon": 2.2346411462534888, "coord": [48.883969094999905, 2.2346411462534888], "stop_id": 3877780, "stop_desc": "FACE145BIS RUE DE LA REPUBLIQUE - 92062", "stop_name": "GARE DE PUTEAUX"}, "geometry": {"type": "Point", "coordinates": [2.2346411462534888, 48.883969094999905]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1f2692fc8d8667e558564931272323c00a7e8d24", "fields": {"departement": "92", "stop_lat": 48.88463762429675, "code_postal": "92062", "stop_lon": 2.228425692075591, "coord": [48.88463762429675, 2.228425692075591], "stop_id": 3877782, "stop_desc": "198 RUE DE LA REPUBLIQUE - 92062", "stop_name": "PALISSY"}, "geometry": {"type": "Point", "coordinates": [2.228425692075591, 48.88463762429675]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b855ac610b6f825ce782037cf267d65377b34144", "fields": {"departement": "92", "stop_lat": 48.88703095931309, "code_postal": "92050", "stop_lon": 2.2045169572232255, "coord": [48.88703095931309, 2.2045169572232255], "stop_id": 3877791, "stop_desc": "FACE 48 AVENUE GEORGES CLEMENCEAU - 92050", "stop_name": "LA SOURCE"}, "geometry": {"type": "Point", "coordinates": [2.2045169572232255, 48.88703095931309]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b2e611a46a3da3bd3aa09b18d6df0ae23a4f40be", "fields": {"departement": "92", "stop_lat": 48.886671501742555, "code_postal": "92050", "stop_lon": 2.2045451337846096, "coord": [48.886671501742555, 2.2045451337846096], "stop_id": 3877792, "stop_desc": "FACE AU 103 AVENUE GEORGES CLEMENCEAU - 92050", "stop_name": "LA SOURCE"}, "geometry": {"type": "Point", "coordinates": [2.2045451337846096, 48.886671501742555]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "95638e2af05dd8cb172be167f64545a8f0b7af9a", "fields": {"departement": "92", "stop_lat": 48.887447524764085, "code_postal": "92050", "stop_lon": 2.199378049116164, "coord": [48.887447524764085, 2.199378049116164], "stop_id": 3877795, "stop_desc": "FACE 7 AVENUE LENINE - 92050", "stop_name": "PLACE DE LA BOULE - LENINE"}, "geometry": {"type": "Point", "coordinates": [2.199378049116164, 48.887447524764085]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "326e9d55fe631dba63c59edb9d111e0349a3b250", "fields": {"departement": "92", "stop_lat": 48.887946428384666, "code_postal": "92050", "stop_lon": 2.1882696085948057, "coord": [48.887946428384666, 2.1882696085948057], "stop_id": 3877799, "stop_desc": "FACE 85 AVENUE LENINE - 92050", "stop_name": "LES GOULVENTS"}, "geometry": {"type": "Point", "coordinates": [2.1882696085948057, 48.887946428384666]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "73140b4c5b15023bb9ef19937c61e7e802dbd6d0", "fields": {"departement": "92", "stop_lat": 48.889714162379136, "code_postal": "92063", "stop_lon": 2.1791604700885814, "coord": [48.889714162379136, 2.1791604700885814], "stop_id": 3877803, "stop_desc": "RUE PEREIRE - 92063", "stop_name": "PEREIRE"}, "geometry": {"type": "Point", "coordinates": [2.1791604700885814, 48.889714162379136]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "67f61163b1fee863828ae1ebf9e1719df04ca0c5", "fields": {"departement": "92", "stop_lat": 48.886589576197764, "code_postal": "92062", "stop_lon": 2.252706673716969, "coord": [48.886589576197764, 2.252706673716969], "stop_id": 3877810, "stop_desc": "VOIE D'ACCES AU PONT DE NEUILLY - 92062", "stop_name": "PONT DE NEUILLY - RIVE GAUCHE"}, "geometry": {"type": "Point", "coordinates": [2.252706673716969, 48.886589576197764]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "312ac6e3fe2ee0f39564d3feaba4e2475bd4055c", "fields": {"departement": "92", "stop_lat": 48.91146691458132, "code_postal": "92050", "stop_lon": 2.2217293138477805, "coord": [48.91146691458132, 2.2217293138477805], "stop_id": 3887634, "stop_desc": "391 AVENUE DE LA REPUBLIQUE - 92050", "stop_name": "PLACE DES MUGUETS"}, "geometry": {"type": "Point", "coordinates": [2.2217293138477805, 48.91146691458132]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8d1dec8eb26e46e64be774264e8a152138d592cb", "fields": {"departement": "92", "stop_lat": 48.91021477465872, "code_postal": "92050", "stop_lon": 2.218732579690156, "coord": [48.91021477465872, 2.218732579690156], "stop_id": 3887635, "stop_desc": "367 AVENUE DE LA REPUBLIQUE - 92050", "stop_name": "AUBEPINES"}, "geometry": {"type": "Point", "coordinates": [2.218732579690156, 48.91021477465872]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "677e88632fa4350cc51ec4121e95293a98f29c69", "fields": {"departement": "92", "stop_lat": 48.92942065305709, "code_postal": "92004", "stop_lon": 2.281060962478302, "coord": [48.92942065305709, 2.281060962478302], "stop_id": 3887641, "stop_desc": "17 AVENUE DE LA REDOUTE - 92004", "stop_name": "ABBE LEMIRE"}, "geometry": {"type": "Point", "coordinates": [2.281060962478302, 48.92942065305709]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e4764cb0b56963ac3d9378bbdf4ff0650d12d29f", "fields": {"departement": "92", "stop_lat": 48.9280344727097, "code_postal": "92004", "stop_lon": 2.27657527168149, "coord": [48.9280344727097, 2.27657527168149], "stop_id": 3887642, "stop_desc": "3/7 AVENUE DE LA REDOUTE - 92004", "stop_name": "FREYCINET"}, "geometry": {"type": "Point", "coordinates": [2.27657527168149, 48.9280344727097]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "95ca83265f552009ae49750de6d7ae5669343fc9", "fields": {"departement": "92", "stop_lat": 48.92365679804589, "code_postal": "92025", "stop_lon": 2.2593150228901626, "coord": [48.92365679804589, 2.2593150228901626], "stop_id": 3887646, "stop_desc": "3 RUE DU BOURNARD - 92025", "stop_name": "GARE DE COLOMBES"}, "geometry": {"type": "Point", "coordinates": [2.2593150228901626, 48.92365679804589]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eeb7e20e29fbced5a14a1cde3fb854a9047e6fba", "fields": {"departement": "92", "stop_lat": 48.923229167415165, "code_postal": "92025", "stop_lon": 2.2516649569046066, "coord": [48.923229167415165, 2.2516649569046066], "stop_id": 3887649, "stop_desc": "22 AVENUE GABRIEL PERI - 92025", "stop_name": "EGLISE DE COLOMBES"}, "geometry": {"type": "Point", "coordinates": [2.2516649569046066, 48.923229167415165]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "857a5e3ecbb2e4fb1610092be3448df5313b8cb5", "fields": {"departement": "92", "stop_lat": 48.92336039469299, "code_postal": "92025", "stop_lon": 2.2356541211941527, "coord": [48.92336039469299, 2.2356541211941527], "stop_id": 3887654, "stop_desc": "FACE 207 RUE DES RENOUILLERS - 92025", "stop_name": "HOPITAL LOUIS MOURIER"}, "geometry": {"type": "Point", "coordinates": [2.2356541211941527, 48.92336039469299]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a772ef1ce89d79ae268979fff4f13319cc7b9d3b", "fields": {"departement": "92", "stop_lat": 48.913340385698675, "code_postal": "92025", "stop_lon": 2.2261156162905245, "coord": [48.913340385698675, 2.2261156162905245], "stop_id": 3887658, "stop_desc": "482 RUE GABRIEL PERI - 92025", "stop_name": "VICTOR BASCH"}, "geometry": {"type": "Point", "coordinates": [2.2261156162905245, 48.913340385698675]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "570bcd20fcf24b664c45b009ac56dcfc449a55a5", "fields": {"departement": "92", "stop_lat": 48.89847241282332, "code_postal": "92050", "stop_lon": 2.213593241126523, "coord": [48.89847241282332, 2.213593241126523], "stop_id": 3887666, "stop_desc": "BOULEVARD DES PROVINCES FRANCAISES - 92050", "stop_name": "SOUFFLOT"}, "geometry": {"type": "Point", "coordinates": [2.213593241126523, 48.89847241282332]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5b1da26aaedeeb74b871f639750fb805bd75b616", "fields": {"departement": "92", "stop_lat": 48.89300491332636, "code_postal": "92050", "stop_lon": 2.2104442000210622, "coord": [48.89300491332636, 2.2104442000210622], "stop_id": 3887669, "stop_desc": "85 AVENUE FREDERIC ET IRENE JOLIOT CURIE - 92050", "stop_name": "PALAIS DES SPORTS"}, "geometry": {"type": "Point", "coordinates": [2.2104442000210622, 48.89300491332636]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "13000da68b759a1ce1391c5230106ac0d138e0de", "fields": {"departement": "92", "stop_lat": 48.88789927816196, "code_postal": "92050", "stop_lon": 2.2014619842956105, "coord": [48.88789927816196, 2.2014619842956105], "stop_id": 3887672, "stop_desc": "FACE 6 AVENUE FREDERIC ET IRENE JOLIOT CURIE - 92050", "stop_name": "PLACE DE LA BOULE - JOLIOT CURIE"}, "geometry": {"type": "Point", "coordinates": [2.2014619842956105, 48.88789927816196]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5438e874bf3501e1b848a094136801b98cb61821", "fields": {"departement": "92", "stop_lat": 48.89146575447876, "code_postal": "92050", "stop_lon": 2.2082536517344415, "coord": [48.89146575447876, 2.2082536517344415], "stop_id": 3887676, "stop_desc": "96 AVENUE FREDERIC ET IRENE JOLIOT CURIE - 92050", "stop_name": "MAIRIE DE NANTERRE"}, "geometry": {"type": "Point", "coordinates": [2.2082536517344415, 48.89146575447876]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5d793e8e16a2f9aee5462d15fbd406642253d7d1", "fields": {"departement": "92", "stop_lat": 48.91042239419866, "code_postal": "92050", "stop_lon": 2.219659234743806, "coord": [48.91042239419866, 2.219659234743806], "stop_id": 3887685, "stop_desc": "354 AVENUE DE LA REPUBLIQUE - 92050", "stop_name": "LES ORMES"}, "geometry": {"type": "Point", "coordinates": [2.219659234743806, 48.91042239419866]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9935466d1a2527985bd3bc6eb14b003eafa6edcb", "fields": {"departement": "92", "stop_lat": 48.92470257140328, "code_postal": "92025", "stop_lon": 2.2393883057572723, "coord": [48.92470257140328, 2.2393883057572723], "stop_id": 3887692, "stop_desc": "RUE DES RENOUILLERS - 92025", "stop_name": "EUROPE"}, "geometry": {"type": "Point", "coordinates": [2.2393883057572723, 48.92470257140328]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "abef1c97fcfa3528979117123dda08c8e5caed0d", "fields": {"departement": "92", "stop_lat": 48.92637786305897, "code_postal": "92025", "stop_lon": 2.2440358549998067, "coord": [48.92637786305897, 2.2440358549998067], "stop_id": 3887693, "stop_desc": "FACE 20 AVENUE DE L'EUROPE - 92025", "stop_name": "TOUR D'AUVERGNE"}, "geometry": {"type": "Point", "coordinates": [2.2440358549998067, 48.92637786305897]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6f986bb3abdc5c950a6fec140a6c3146b5270fa5", "fields": {"departement": "92", "stop_lat": 48.92293456245295, "code_postal": "92025", "stop_lon": 2.2544475041603773, "coord": [48.92293456245295, 2.2544475041603773], "stop_id": 3887697, "stop_desc": "28 RUE DU BOURNARD - 92025", "stop_name": "MAIRIE DE COLOMBES"}, "geometry": {"type": "Point", "coordinates": [2.2544475041603773, 48.92293456245295]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6123ffcae48d0b9bf34009b4b99b26d80f2a4acd", "fields": {"departement": "92", "stop_lat": 48.925217275166055, "code_postal": "92025", "stop_lon": 2.2686548076317994, "coord": [48.925217275166055, 2.2686548076317994], "stop_id": 3887701, "stop_desc": "110 AVENUE DE L'AGENT SARRE - 92025", "stop_name": "GRAMME"}, "geometry": {"type": "Point", "coordinates": [2.2686548076317994, 48.925217275166055]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "29c2e89f228654e614dec898cb1893c7a15c6b3c", "fields": {"departement": "92", "stop_lat": 48.927359703595755, "code_postal": "92004", "stop_lon": 2.2751167199882802, "coord": [48.927359703595755, 2.2751167199882802], "stop_id": 3887702, "stop_desc": "32 AVENUE DE LA REDOUTE - 92004", "stop_name": "QUATRE ROUTES"}, "geometry": {"type": "Point", "coordinates": [2.2751167199882802, 48.927359703595755]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2dca3b25c606513b72bcc319c4732841c20cef67", "fields": {"departement": "92", "stop_lat": 48.92927697817656, "code_postal": "92004", "stop_lon": 2.281306624278163, "coord": [48.92927697817656, 2.281306624278163], "stop_id": 3887704, "stop_desc": "FACE 17 AVENUE DE LA REDOUTE - 92004", "stop_name": "ABBE LEMIRE"}, "geometry": {"type": "Point", "coordinates": [2.281306624278163, 48.92927697817656]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b1f41a4994ce16c863f14fbe02d215920428671b", "fields": {"departement": "92", "stop_lat": 48.90763002067973, "code_postal": "92050", "stop_lon": 2.2133532477195574, "coord": [48.90763002067973, 2.2133532477195574], "stop_id": 3887708, "stop_desc": "AVENUE DE LA REPUBLIQUE - 92050", "stop_name": "PONT DE ROUEN"}, "geometry": {"type": "Point", "coordinates": [2.2133532477195574, 48.90763002067973]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2dff1e2bb7e5715913d60aded57812dd5cc6c16d", "fields": {"departement": "92", "stop_lat": 48.91956937608856, "code_postal": "92025", "stop_lon": 2.227193185179809, "coord": [48.91956937608856, 2.227193185179809], "stop_id": 3887721, "stop_desc": "239 RUE PRESIDENT SALVADOR ALLENDE - 92025", "stop_name": "ZONE INDUSTRIELLE"}, "geometry": {"type": "Point", "coordinates": [2.227193185179809, 48.91956937608856]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d19bd8496b2ae980268f79502caaa28b5e4ddad2", "fields": {"departement": "92", "stop_lat": 48.9212712633758, "code_postal": "92025", "stop_lon": 2.2308852279801386, "coord": [48.9212712633758, 2.2308852279801386], "stop_id": 3887722, "stop_desc": "RUE PRESIDENT SALVADOR ALLENDE - 92025", "stop_name": "RUE DE SEINE"}, "geometry": {"type": "Point", "coordinates": [2.2308852279801386, 48.9212712633758]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9c8aed8b0fe07db80520d13792e31003c86af013", "fields": {"departement": "92", "stop_lat": 48.9233232281649, "code_postal": "92025", "stop_lon": 2.2577199194902486, "coord": [48.9233232281649, 2.2577199194902486], "stop_id": 3887730, "stop_desc": "74 R DU BOURNARD - 92025", "stop_name": "RHIN ET DANUBE"}, "geometry": {"type": "Point", "coordinates": [2.2577199194902486, 48.9233232281649]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ca5136b231b5871ac1fbd30973827274276bc192", "fields": {"departement": "92", "stop_lat": 48.927359703595755, "code_postal": "92004", "stop_lon": 2.2751167199882802, "coord": [48.927359703595755, 2.2751167199882802], "stop_id": 3887734, "stop_desc": "32 AVENUE DE LA REDOUTE - 92004", "stop_name": "QUATRE ROUTES"}, "geometry": {"type": "Point", "coordinates": [2.2751167199882802, 48.927359703595755]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2fce2f6382cc7e48860a4abba3f634afc37d227d", "fields": {"departement": "75", "stop_lat": 48.828814432307446, "code_postal": "75113", "stop_lon": 2.3780931055620878, "coord": [48.828814432307446, 2.3780931055620878], "stop_id": 3887746, "stop_desc": "89-91 AVENUE DE FRANCE - 75113", "stop_name": "BIBLIOTHEQUE RUE MANN"}, "geometry": {"type": "Point", "coordinates": [2.3780931055620878, 48.828814432307446]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4153c5560b57da23a4f41c1209c32f4ee7c4c32b", "fields": {"departement": "75", "stop_lat": 48.83670773674378, "code_postal": "75113", "stop_lon": 2.371128499919556, "coord": [48.83670773674378, 2.371128499919556], "stop_id": 3887753, "stop_desc": "2 AVENUE PIERRE MENDES FRANCE - 75113", "stop_name": "VINCENT AURIOL"}, "geometry": {"type": "Point", "coordinates": [2.371128499919556, 48.83670773674378]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a0458f1cb155d9e020634cd9143180b4e3d0129b", "fields": {"departement": "75", "stop_lat": 48.846265822858534, "code_postal": "75105", "stop_lon": 2.348066886540125, "coord": [48.846265822858534, 2.348066886540125], "stop_id": 3887765, "stop_desc": "13 RUE CLOVIS - 75105", "stop_name": "LYCEE HENRI IV"}, "geometry": {"type": "Point", "coordinates": [2.348066886540125, 48.846265822858534]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2bf97b61745d38cede36190ae30b1f6dcf6a2dfd", "fields": {"departement": "75", "stop_lat": 48.84670649906331, "code_postal": "75105", "stop_lon": 2.344199607555224, "coord": [48.84670649906331, 2.344199607555224], "stop_id": 3887766, "stop_desc": "FACE 3 RUE SOUFFLOT - 75105", "stop_name": "MAIRIE DU VE - PANTHEON"}, "geometry": {"type": "Point", "coordinates": [2.344199607555224, 48.84670649906331]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f0953a22c15b67e7b346e4bfca00235a53ac10a5", "fields": {"departement": "75", "stop_lat": 48.8473987049821, "code_postal": "75106", "stop_lon": 2.3401143948599588, "coord": [48.8473987049821, 2.3401143948599588], "stop_id": 3887769, "stop_desc": "FACE 6 PLACE EDMOND ROSTAND - 75106", "stop_name": "LUXEMBOURG"}, "geometry": {"type": "Point", "coordinates": [2.3401143948599588, 48.8473987049821]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "09ff1de7b8a880be2b655012f8baeb1a57b6d7c2", "fields": {"departement": "75", "stop_lat": 48.84937598759071, "code_postal": "75106", "stop_lon": 2.3374589542121296, "coord": [48.84937598759071, 2.3374589542121296], "stop_id": 3887770, "stop_desc": "FACE 15 RUE DE VAUGIRARD - 75106", "stop_name": "SENAT"}, "geometry": {"type": "Point", "coordinates": [2.3374589542121296, 48.84937598759071]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eff282bc81b2764a7101e1b4a651771b8b1921cd", "fields": {"departement": "75", "stop_lat": 48.84859396154179, "code_postal": "75106", "stop_lon": 2.332025369749846, "coord": [48.84859396154179, 2.332025369749846], "stop_id": 3887772, "stop_desc": "60 RUE DE VAUGIRARD - 75106", "stop_name": "MUSEE DU LUXEMBOURG"}, "geometry": {"type": "Point", "coordinates": [2.332025369749846, 48.84859396154179]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "20366a3a5677260308c5b93536fe89327a06deb4", "fields": {"departement": "75", "stop_lat": 48.848665899498116, "code_postal": "75106", "stop_lon": 2.332978623710176, "coord": [48.848665899498116, 2.332978623710176], "stop_id": 3887773, "stop_desc": "FACE 56 RUE DE VAUGIRARD - 75106", "stop_name": "MUSEE DU LUXEMBOURG"}, "geometry": {"type": "Point", "coordinates": [2.332978623710176, 48.848665899498116]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7495764aba8b532f86be1248178667ec004cfb46", "fields": {"departement": "75", "stop_lat": 48.84745235546356, "code_postal": "75106", "stop_lon": 2.3286755309081357, "coord": [48.84745235546356, 2.3286755309081357], "stop_id": 3887775, "stop_desc": "55 RUE DE VAUGIRARD - 75106", "stop_name": "RENNES - RASPAIL"}, "geometry": {"type": "Point", "coordinates": [2.3286755309081357, 48.84745235546356]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e3a7635cb8a3611a38631e00ae66283b34add267", "fields": {"departement": "75", "stop_lat": 48.84473518742932, "code_postal": "75115", "stop_lon": 2.3094351792376666, "coord": [48.84473518742932, 2.3094351792376666], "stop_id": 3887783, "stop_desc": "20 RUE LECOURBE - 75115", "stop_name": "SEVRES - LECOURBE"}, "geometry": {"type": "Point", "coordinates": [2.3094351792376666, 48.84473518742932]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "58211c54883cf55e0fcfbb57f749f7a59072cc45", "fields": {"departement": "75", "stop_lat": 48.83696017604233, "code_postal": "75115", "stop_lon": 2.306267065405852, "coord": [48.83696017604233, 2.306267065405852], "stop_id": 3887789, "stop_desc": "43 RUE PAUL BARRUEL - 75115", "stop_name": "ALLERAY"}, "geometry": {"type": "Point", "coordinates": [2.306267065405852, 48.83696017604233]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e26a13f7f07b21993e2edfd675883e0eac5fe511", "fields": {"departement": "75", "stop_lat": 48.83001857840628, "code_postal": "75115", "stop_lon": 2.2958435566186726, "coord": [48.83001857840628, 2.2958435566186726], "stop_id": 3887796, "stop_desc": "61 RUE DE DANTZIG - 75115", "stop_name": "GEORGES BRASSENS"}, "geometry": {"type": "Point", "coordinates": [2.2958435566186726, 48.83001857840628]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d684850e730c047f19ead81a90dc6cee0ff1ecbc", "fields": {"departement": "75", "stop_lat": 48.84298341104219, "code_postal": "75115", "stop_lon": 2.3130581145626485, "coord": [48.84298341104219, 2.3130581145626485], "stop_id": 3887810, "stop_desc": "181 RUE DE VAUGIRARD - 75115", "stop_name": "PASTEUR - LYCEE BUFFON"}, "geometry": {"type": "Point", "coordinates": [2.3130581145626485, 48.84298341104219]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "904bb658ae25785750978a7e885bb5a4a1b35881", "fields": {"departement": "75", "stop_lat": 48.84475505734411, "code_postal": "75115", "stop_lon": 2.3192938702090236, "coord": [48.84475505734411, 2.3192938702090236], "stop_id": 3887811, "stop_desc": "115 RUE DE VAUGIRARD - 75115", "stop_name": "MAINE - VAUGIRARD"}, "geometry": {"type": "Point", "coordinates": [2.3192938702090236, 48.84475505734411]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5dd2c4efbd0bfc4eb8f6e5af5b6f54ea4a1418ed", "fields": {"departement": "75", "stop_lat": 48.84460965957797, "code_postal": "75105", "stop_lon": 2.363766888008652, "coord": [48.84460965957797, 2.363766888008652], "stop_id": 3887816, "stop_desc": "PLACE VALHUBERT - 75105", "stop_name": "JARDIN DES PLANTES"}, "geometry": {"type": "Point", "coordinates": [2.363766888008652, 48.84460965957797]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "534a6d4c3df5d1bfe8b8ab5344537d708dbc40ad", "fields": {"departement": "75", "stop_lat": 48.87219478360626, "code_postal": "75109", "stop_lon": 2.3300338573501684, "coord": [48.87219478360626, 2.3300338573501684], "stop_id": 3893340, "stop_desc": "8 RUE AUBER - 75109", "stop_name": "AUBER"}, "geometry": {"type": "Point", "coordinates": [2.3300338573501684, 48.87219478360626]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "adf7e1ae67b0a493f96b6b33b3cfea844cf97010", "fields": {"departement": "75", "stop_lat": 48.86960655910574, "code_postal": "75102", "stop_lon": 2.332554568380394, "coord": [48.86960655910574, 2.332554568380394], "stop_id": 3893343, "stop_desc": "49 AVENUE DE L'OPERA - 75102", "stop_name": "OPERA - 4 SEPTEMBRE"}, "geometry": {"type": "Point", "coordinates": [2.332554568380394, 48.86960655910574]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cae7ff1c6f9b6850c052cdd0d45fdba3f760eb8a", "fields": {"departement": "75", "stop_lat": 48.866991279826735, "code_postal": "75101", "stop_lon": 2.333671877417782, "coord": [48.866991279826735, 2.333671877417782], "stop_id": 3893345, "stop_desc": "25 - 27 AVENUE DE L'OPERA - 75101", "stop_name": "PYRAMIDES"}, "geometry": {"type": "Point", "coordinates": [2.333671877417782, 48.866991279826735]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b65745e5a65e92b349fe2b55f5ef38f4ed5f263c", "fields": {"departement": "75", "stop_lat": 48.84632917208576, "code_postal": "75105", "stop_lon": 2.3408496756727897, "coord": [48.84632917208576, 2.3408496756727897], "stop_id": 3893356, "stop_desc": "FACE 5 RUE GAY LUSSAC - 75105", "stop_name": "LUXEMBOURG"}, "geometry": {"type": "Point", "coordinates": [2.3408496756727897, 48.84632917208576]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b406fa84412d587b32bff752bbe221421ca10473", "fields": {"departement": "75", "stop_lat": 48.841637574364405, "code_postal": "75105", "stop_lon": 2.3435045040350824, "coord": [48.841637574364405, 2.3435045040350824], "stop_id": 3893361, "stop_desc": "49-51 RUE GAY LUSSAC - 75105", "stop_name": "FEUILLANTINES"}, "geometry": {"type": "Point", "coordinates": [2.3435045040350824, 48.841637574364405]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b5f718171d4398c53028350b937e92059b790c3a", "fields": {"departement": "75", "stop_lat": 48.838770005097885, "code_postal": "75105", "stop_lon": 2.3502029451190003, "coord": [48.838770005097885, 2.3502029451190003], "stop_id": 3893365, "stop_desc": "FACE 3-5 RUE CLAUDE BERNARD - 75105", "stop_name": "MONGE - CLAUDE BERNARD"}, "geometry": {"type": "Point", "coordinates": [2.3502029451190003, 48.838770005097885]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "674a1154e8b076dfdde0acb2f80a165c4ca4f763", "fields": {"departement": "75", "stop_lat": 48.8363880998256, "code_postal": "75113", "stop_lon": 2.351917814788917, "coord": [48.8363880998256, 2.351917814788917], "stop_id": 3893366, "stop_desc": "26 AVENUE DES GOBELINS - 75113", "stop_name": "LES GOBELINS"}, "geometry": {"type": "Point", "coordinates": [2.351917814788917, 48.8363880998256]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e6b20f0222ff05dd517c2df9d531f3f5878e71a0", "fields": {"departement": "75", "stop_lat": 48.834176950124636, "code_postal": "75113", "stop_lon": 2.3534828245635113, "coord": [48.834176950124636, 2.3534828245635113], "stop_id": 3893367, "stop_desc": "50 AVENUE DES GOBELINS - 75113", "stop_name": "BANQUIER"}, "geometry": {"type": "Point", "coordinates": [2.3534828245635113, 48.834176950124636]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "202063c6d7181b91f4015bba12775f4cd296e7cb", "fields": {"departement": "75", "stop_lat": 48.83216285773066, "code_postal": "75113", "stop_lon": 2.3589412829183023, "coord": [48.83216285773066, 2.3589412829183023], "stop_id": 3893373, "stop_desc": "FACE 179 BOULEVARD VINCENT AURIOL - 75113", "stop_name": "LES ALPES"}, "geometry": {"type": "Point", "coordinates": [2.3589412829183023, 48.83216285773066]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a0b46037b8d44b78435a6605adb87072ae4022d0", "fields": {"departement": "75", "stop_lat": 48.83278228500094, "code_postal": "75113", "stop_lon": 2.3625764395921625, "coord": [48.83278228500094, 2.3625764395921625], "stop_id": 3893374, "stop_desc": "145 BOULEVARD VINCENT AURIOL - 75113", "stop_name": "NATIONALE"}, "geometry": {"type": "Point", "coordinates": [2.3625764395921625, 48.83278228500094]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3e145a75512eda2f9fc534827bc508a88a6b713c", "fields": {"departement": "75", "stop_lat": 48.8307411075395, "code_postal": "75113", "stop_lon": 2.3668636373891108, "coord": [48.8307411075395, 2.3668636373891108], "stop_id": 3893376, "stop_desc": "51 RUE JEANNE D'ARC - 75113", "stop_name": "CLISSON"}, "geometry": {"type": "Point", "coordinates": [2.3668636373891108, 48.8307411075395]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e177172c5bf1350bb9318a181269f8d173253433", "fields": {"departement": "75", "stop_lat": 48.83159511832635, "code_postal": "75113", "stop_lon": 2.366101766585164, "coord": [48.83159511832635, 2.366101766585164], "stop_id": 3893377, "stop_desc": "64 RUE JEANNE D'ARC - 75113", "stop_name": "CLISSON"}, "geometry": {"type": "Point", "coordinates": [2.366101766585164, 48.83159511832635]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "03cf5027427e3014194f5df9e0fe97e80e433be6", "fields": {"departement": "75", "stop_lat": 48.82745038137856, "code_postal": "75113", "stop_lon": 2.3715308304362543, "coord": [48.82745038137856, 2.3715308304362543], "stop_id": 3893380, "stop_desc": "103-105 RUE DE PATAY - 75113", "stop_name": "PATAY - TOLBIAC"}, "geometry": {"type": "Point", "coordinates": [2.3715308304362543, 48.82745038137856]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "722b400650d010403b69a9ae39f71b1aeeb71a95", "fields": {"departement": "75", "stop_lat": 48.82310745758169, "code_postal": "75113", "stop_lon": 2.3775441621261817, "coord": [48.82310745758169, 2.3775441621261817], "stop_id": 3893386, "stop_desc": "15-17 AVENUE DE LA PORTE DE VITRY - 75113", "stop_name": "PORTE DE VITRY"}, "geometry": {"type": "Point", "coordinates": [2.3775441621261817, 48.82310745758169]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "19bbd2e0e2d8527d8c8ea5395ab299647769184e", "fields": {"departement": "75", "stop_lat": 48.82384472031774, "code_postal": "75113", "stop_lon": 2.3767280441419465, "coord": [48.82384472031774, 2.3767280441419465], "stop_id": 3893387, "stop_desc": "21 BOULEVARD MASSENA - 75113", "stop_name": "PORTE DE VITRY"}, "geometry": {"type": "Point", "coordinates": [2.3767280441419465, 48.82384472031774]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2991c637aa85f2aa547a58d99d36daba167811aa", "fields": {"departement": "75", "stop_lat": 48.850067906070635, "code_postal": "75105", "stop_lon": 2.3425522330838273, "coord": [48.850067906070635, 2.3425522330838273], "stop_id": 3893393, "stop_desc": "29-31 BOULEVARD SAINT-MICHEL - 75105", "stop_name": "LES ECOLES"}, "geometry": {"type": "Point", "coordinates": [2.3425522330838273, 48.850067906070635]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "844a7d41efaae005607b09577b8e377e838194d2", "fields": {"departement": "75", "stop_lat": 48.85768938378177, "code_postal": "75106", "stop_lon": 2.3374453668304107, "coord": [48.85768938378177, 2.3374453668304107], "stop_id": 3893397, "stop_desc": "FACE 23 QUAI DE CONTI - 75106", "stop_name": "PONT DES ARTS - QUAI DE CONTI"}, "geometry": {"type": "Point", "coordinates": [2.3374453668304107, 48.85768938378177]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "27ef5350538bcc05c90927cce00978b7760411b1", "fields": {"departement": "75", "stop_lat": 48.875048935083306, "code_postal": "75108", "stop_lon": 2.3062579263665284, "coord": [48.875048935083306, 2.3062579263665284], "stop_id": 3893402, "stop_desc": "190 BOULEVARD HAUSSMANN - 75108", "stop_name": "FRIEDLAND - HAUSSMANN"}, "geometry": {"type": "Point", "coordinates": [2.3062579263665284, 48.875048935083306]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "20e708fe125d7934ffc074849d34503e1dd905c3", "fields": {"departement": "75", "stop_lat": 48.875121390460386, "code_postal": "75108", "stop_lon": 2.30847875269421, "coord": [48.875121390460386, 2.30847875269421], "stop_id": 3893404, "stop_desc": "174 BOULEVARD HAUSSMANN - 75108", "stop_name": "HAUSSMANN - COURCELLES"}, "geometry": {"type": "Point", "coordinates": [2.30847875269421, 48.875121390460386]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5095f2e654ea9dd0754b23a0f51585869909fd7f", "fields": {"departement": "75", "stop_lat": 48.86275609127557, "code_postal": "75107", "stop_lon": 2.3144110612463655, "coord": [48.86275609127557, 2.3144110612463655], "stop_id": 3893410, "stop_desc": "QUAI D'ORSAY - 75107", "stop_name": "INVALIDES"}, "geometry": {"type": "Point", "coordinates": [2.3144110612463655, 48.86275609127557]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3d05b0557e94c691e22c2beb27b73dd57db30896", "fields": {"departement": "75", "stop_lat": 48.85918035179073, "code_postal": "75107", "stop_lon": 2.322258204605786, "coord": [48.85918035179073, 2.322258204605786], "stop_id": 3893414, "stop_desc": "231 BOULEVARD SAINT GERMAIN - 75107", "stop_name": "LILLE - UNIVERSITE"}, "geometry": {"type": "Point", "coordinates": [2.322258204605786, 48.85918035179073]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8722c2de782bfdeec591b9402ed6718a23e8c96a", "fields": {"departement": "75", "stop_lat": 48.85386019995564, "code_postal": "75107", "stop_lon": 2.3259642143692596, "coord": [48.85386019995564, 2.3259642143692596], "stop_id": 3893420, "stop_desc": "22 BOULEVARD RASPAIL - 75107", "stop_name": "VARENNE - RASPAIL"}, "geometry": {"type": "Point", "coordinates": [2.3259642143692596, 48.85386019995564]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9a6b45311a216b8fc7862b3ba9310f335337af91", "fields": {"departement": "75", "stop_lat": 48.851910000570065, "code_postal": "75107", "stop_lon": 2.3268362464345342, "coord": [48.851910000570065, 2.3268362464345342], "stop_id": 3893423, "stop_desc": "39 BOULEVARD RASPAIL - 75107", "stop_name": "SEVRES - BABYLONE"}, "geometry": {"type": "Point", "coordinates": [2.3268362464345342, 48.851910000570065]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0a87a1e7ce4442faccb4038ba17fa3cdb6c836f4", "fields": {"departement": "75", "stop_lat": 48.849213890228604, "code_postal": "75106", "stop_lon": 2.328484585367302, "coord": [48.849213890228604, 2.328484585367302], "stop_id": 3893424, "stop_desc": "6-8 RUE D'ASSAS - 75106", "stop_name": "RENNES - D'ASSAS"}, "geometry": {"type": "Point", "coordinates": [2.328484585367302, 48.849213890228604]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "44c7c15d32ddc812466c4104acbb5259e9f1bcd8", "fields": {"departement": "75", "stop_lat": 48.842141017978896, "code_postal": "75106", "stop_lon": 2.3349262928432912, "coord": [48.842141017978896, 2.3349262928432912], "stop_id": 3893430, "stop_desc": "116-118 RUE D'ASSAS - 75106", "stop_name": "MICHELET"}, "geometry": {"type": "Point", "coordinates": [2.3349262928432912, 48.842141017978896]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "625fab2918e76ee3857926758d1485b13649e005", "fields": {"departement": "75", "stop_lat": 48.83562458590581, "code_postal": "75113", "stop_lon": 2.347860449792025, "coord": [48.83562458590581, 2.347860449792025], "stop_id": 3893440, "stop_desc": "28 BOULEVARD ARAGO - 75113", "stop_name": "PASCAL"}, "geometry": {"type": "Point", "coordinates": [2.347860449792025, 48.83562458590581]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0521556643facc61504ffa4a54f7a47f9543bdef", "fields": {"departement": "75", "stop_lat": 48.830338321640625, "code_postal": "75113", "stop_lon": 2.3592127845007784, "coord": [48.830338321640625, 2.3592127845007784], "stop_id": 3893450, "stop_desc": "6 RUE ALBERT BAYET - 75113", "stop_name": "INSTITUT DENTAIRE"}, "geometry": {"type": "Point", "coordinates": [2.3592127845007784, 48.830338321640625]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0519da39d0d9c84b06478412f160792de1e58900", "fields": {"departement": "75", "stop_lat": 48.82720092004734, "code_postal": "75113", "stop_lon": 2.3628051265430305, "coord": [48.82720092004734, 2.3628051265430305], "stop_id": 3893451, "stop_desc": "RUE CHARLES MOUREU - 75113", "stop_name": "LYCEE CLAUDE MONET"}, "geometry": {"type": "Point", "coordinates": [2.3628051265430305, 48.82720092004734]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a14c8b399f2a1a7639092aa475761faec313530f", "fields": {"departement": "75", "stop_lat": 48.826255719064086, "code_postal": "75113", "stop_lon": 2.369025407986246, "coord": [48.826255719064086, 2.369025407986246], "stop_id": 3893456, "stop_desc": "71 RUE DU CHATEAU DES RENTIERS - 75113", "stop_name": "PONSCARME"}, "geometry": {"type": "Point", "coordinates": [2.369025407986246, 48.826255719064086]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f14ad336c4a63725402621713a4cd3aa54955896", "fields": {"departement": "75", "stop_lat": 48.8396514901034, "code_postal": "75105", "stop_lon": 2.337349990389469, "coord": [48.8396514901034, 2.337349990389469], "stop_id": 3893468, "stop_desc": "100 BOULEVARD DE PORT ROYAL - 75105", "stop_name": "OBSERVATOIRE - PORT ROYAL"}, "geometry": {"type": "Point", "coordinates": [2.337349990389469, 48.8396514901034]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2c2bba57ed5621edb2ef863265cdfc9b0789acda", "fields": {"departement": "93", "stop_lat": 48.96144666587019, "code_postal": "93031", "stop_lon": 2.296093244588012, "coord": [48.96144666587019, 2.296093244588012], "stop_id": 5150774, "stop_desc": "AVENUE JOFFRE - 93031", "stop_name": "CYGNE D'ENGHIEN - JOFFRE"}, "geometry": {"type": "Point", "coordinates": [2.296093244588012, 48.96144666587019]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "27ccdd22870a8a6faf310a3ade881079bfc78596", "fields": {"departement": "93", "stop_lat": 48.95020746179774, "code_postal": "93039", "stop_lon": 2.3065676888040505, "coord": [48.95020746179774, 2.3065676888040505], "stop_id": 5150779, "stop_desc": "AVENUE DU PONT D'EPINAY - 93039", "stop_name": "PONT D'EPINAY"}, "geometry": {"type": "Point", "coordinates": [2.3065676888040505, 48.95020746179774]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "417a70b54fe8eed8c35a652cc3ec82e09d1037c6", "fields": {"departement": "92", "stop_lat": 48.94293955264489, "code_postal": "92078", "stop_lon": 2.3179501029113507, "coord": [48.94293955264489, 2.3179501029113507], "stop_id": 5150787, "stop_desc": "270 BOULEVARD CHARLES DE GAULLE - 92078", "stop_name": "ZONE INDUSTRIELLE NORD"}, "geometry": {"type": "Point", "coordinates": [2.3179501029113507, 48.94293955264489]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a78c83eca5aaaaff9f4f03a2123c4d2a3eac0d9b", "fields": {"departement": "92", "stop_lat": 48.941583094215005, "code_postal": "92078", "stop_lon": 2.3217022839640276, "coord": [48.941583094215005, 2.3217022839640276], "stop_id": 5150789, "stop_desc": "BOULEVARD CHARLES DE GAULLE - 92078", "stop_name": "PARC DEPARTEMENTAL"}, "geometry": {"type": "Point", "coordinates": [2.3217022839640276, 48.941583094215005]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2368e4954829bba6e47859cd7a201fed2dbbcf7c", "fields": {"departement": "92", "stop_lat": 48.93722482016393, "code_postal": "92078", "stop_lon": 2.3245137022434514, "coord": [48.93722482016393, 2.3245137022434514], "stop_id": 5150791, "stop_desc": "AVENUE DU MARECHAL LECLERC - 92078", "stop_name": "MARECHAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.3245137022434514, 48.93722482016393]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e99c9d9d5ca81b63344cc45116407450aba9eb74", "fields": {"departement": "95", "stop_lat": 48.993984788225895, "code_postal": "95252", "stop_lon": 2.2334123229842686, "coord": [48.993984788225895, 2.2334123229842686], "stop_id": 5150805, "stop_desc": "RUE HENRI BARBUSSE - 95252", "stop_name": "GARE DE FRANCONVILLE"}, "geometry": {"type": "Point", "coordinates": [2.2334123229842686, 48.993984788225895]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8a36246b9e89c59fa39d8a21f3c40d6c1b9f1a8e", "fields": {"departement": "95", "stop_lat": 48.993984788225895, "code_postal": "95252", "stop_lon": 2.2334123229842686, "coord": [48.993984788225895, 2.2334123229842686], "stop_id": 5150806, "stop_desc": "RUE HENRI BARBUSSE - 95252", "stop_name": "GARE DE FRANCONVILLE"}, "geometry": {"type": "Point", "coordinates": [2.2334123229842686, 48.993984788225895]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6d8292e43561ccd8665e74c6df41381d3f74e300", "fields": {"departement": "95", "stop_lat": 48.971949847923, "code_postal": "95582", "stop_lon": 2.256607742764855, "coord": [48.971949847923, 2.256607742764855], "stop_id": 5150816, "stop_desc": "FACE 58 PLACE DU GENERAL LECLERC - 95582", "stop_name": "MAIRIE DE SANNOIS"}, "geometry": {"type": "Point", "coordinates": [2.256607742764855, 48.971949847923]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "39d28c8c32c286aa49135d2b56944804f57bf221", "fields": {"departement": "95", "stop_lat": 48.97219236522783, "code_postal": "95582", "stop_lon": 2.2564299078583088, "coord": [48.97219236522783, 2.2564299078583088], "stop_id": 5150817, "stop_desc": "BOULEVARD CHARLES DE GAULLE - 95582", "stop_name": "MAIRIE DE SANNOIS"}, "geometry": {"type": "Point", "coordinates": [2.2564299078583088, 48.97219236522783]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a6c46562bc7ab9575ee43f7f34d76beb92227571", "fields": {"departement": "95", "stop_lat": 48.96893590570315, "code_postal": "95582", "stop_lon": 2.2652936318488663, "coord": [48.96893590570315, 2.2652936318488663], "stop_id": 5150820, "stop_desc": "FACE 6 RUE DU MARECHAL FOCH - 95582", "stop_name": "GARE DE SANNOIS - MARECHAL FOCH"}, "geometry": {"type": "Point", "coordinates": [2.2652936318488663, 48.96893590570315]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4a432fb4b20e837d97e6d343a4622ba5aeae6bee", "fields": {"departement": "92", "stop_lat": 48.94662128647738, "code_postal": "92036", "stop_lon": 2.304823410121321, "coord": [48.94662128647738, 2.304823410121321], "stop_id": 5150839, "stop_desc": "FACE 139 AVENUE MARCEL PAUL - 92036", "stop_name": "DEQUEVAUVILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.304823410121321, 48.94662128647738]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1e99e433d3562290a48631d893d07ae4194cc8c6", "fields": {"departement": "95", "stop_lat": 48.96597364036557, "code_postal": "95197", "stop_lon": 2.327482081579869, "coord": [48.96597364036557, 2.327482081579869], "stop_id": 5150871, "stop_desc": "53 RUE GALLIENI - 95197", "stop_name": "GALLIENI - JONAS"}, "geometry": {"type": "Point", "coordinates": [2.327482081579869, 48.96597364036557]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6863736d849607925455243dd7daaac7bcded834", "fields": {"departement": "95", "stop_lat": 48.966081499636815, "code_postal": "95197", "stop_lon": 2.327727741658711, "coord": [48.966081499636815, 2.327727741658711], "stop_id": 5150872, "stop_desc": "RUE GALLIENI - 95197", "stop_name": "GALLIENI - JONAS"}, "geometry": {"type": "Point", "coordinates": [2.327727741658711, 48.966081499636815]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "242c4bcbe595d3177edb2a05422f6732ee1b1434", "fields": {"departement": "95", "stop_lat": 48.96170493602493, "code_postal": "95197", "stop_lon": 2.3268550906577112, "coord": [48.96170493602493, 2.3268550906577112], "stop_id": 5150878, "stop_desc": "16 RUE ABEL FAUVEAU - 95197", "stop_name": "ABEL FAUVEAU"}, "geometry": {"type": "Point", "coordinates": [2.3268550906577112, 48.96170493602493]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "df7e645555328c3313f9b95087d87fa69f15c41f", "fields": {"departement": "95", "stop_lat": 48.9592785762858, "code_postal": "95427", "stop_lon": 2.3273059331207584, "coord": [48.9592785762858, 2.3273059331207584], "stop_id": 5150879, "stop_desc": "147 RUE DU CHEMIN DE FER - 95427", "stop_name": "GARE D'EPINAY - VILLETANEUSE"}, "geometry": {"type": "Point", "coordinates": [2.3273059331207584, 48.9592785762858]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f99b9a3d7484805de41e63615f5497eef4cb9a13", "fields": {"departement": "95", "stop_lat": 48.96669142273999, "code_postal": "95197", "stop_lon": 2.318036786343671, "coord": [48.96669142273999, 2.318036786343671], "stop_id": 5150884, "stop_desc": "FACE 13 AVENUE DE LA DIVISION LECLERC - 95197", "stop_name": "PLACE DE LA BARRE"}, "geometry": {"type": "Point", "coordinates": [2.318036786343671, 48.96669142273999]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eeb6cd9e70ed9e72e2b1b18a28fdb0dd72d28e4e", "fields": {"departement": "95", "stop_lat": 48.969926877230584, "code_postal": "95197", "stop_lon": 2.3198510252077416, "coord": [48.969926877230584, 2.3198510252077416], "stop_id": 5150886, "stop_desc": "AVENUE PAUL FLEURY - 95197", "stop_name": "18 JUIN 1940"}, "geometry": {"type": "Point", "coordinates": [2.3198510252077416, 48.969926877230584]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6e8c3024a9387be1878c0e697dda34a81b11414d", "fields": {"departement": "95", "stop_lat": 48.97164277514684, "code_postal": "95428", "stop_lon": 2.316478804005383, "coord": [48.97164277514684, 2.316478804005383], "stop_id": 5150889, "stop_desc": "46 BOULEVARD DE MONTMORENCY - 95428", "stop_name": "EUGENE LAMARRE"}, "geometry": {"type": "Point", "coordinates": [2.316478804005383, 48.97164277514684]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "48643b38b41a11aeaab29808e75edbcbd3d810e8", "fields": {"departement": "95", "stop_lat": 48.97527367806716, "code_postal": "95197", "stop_lon": 2.3184840928825365, "coord": [48.97527367806716, 2.3184840928825365], "stop_id": 5150890, "stop_desc": "77 RUE CAUCHOIX - 95197", "stop_name": "CIMETIERE DE DEUIL-LA-BARRE"}, "geometry": {"type": "Point", "coordinates": [2.3184840928825365, 48.97527367806716]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b43ff985ff1b66e8d784fe17d4280c7aa01dd79d", "fields": {"departement": "95", "stop_lat": 48.97514834359045, "code_postal": "95197", "stop_lon": 2.321815056939144, "coord": [48.97514834359045, 2.321815056939144], "stop_id": 5150892, "stop_desc": "23-25 RUE CAUCHOIX - 95197", "stop_name": "MATHIEU CHAZOTTE"}, "geometry": {"type": "Point", "coordinates": [2.321815056939144, 48.97514834359045]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "90f0509298f413e957ce79c1dd5caf407385be3b", "fields": {"departement": "95", "stop_lat": 48.975275061700295, "code_postal": "95197", "stop_lon": 2.332572274202748, "coord": [48.975275061700295, 2.332572274202748], "stop_id": 5150896, "stop_desc": "8 RUE DE LA GARE - 95197", "stop_name": "RUE HAUTE"}, "geometry": {"type": "Point", "coordinates": [2.332572274202748, 48.975275061700295]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2a6df6fd8aa4fc5a86a97d2f59d717c9727761cd", "fields": {"departement": "93", "stop_lat": 48.96722020943238, "code_postal": "93059", "stop_lon": 2.363884300340911, "coord": [48.96722020943238, 2.363884300340911], "stop_id": 5150908, "stop_desc": "23 BOULEVARD CHARLES DE GAULLE - 93059", "stop_name": "ALCIDE D'ORBIGNY"}, "geometry": {"type": "Point", "coordinates": [2.363884300340911, 48.96722020943238]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d9c910e810ce7f17fc15e2fb9903b10aa6ebf802", "fields": {"departement": "95", "stop_lat": 48.96922697658946, "code_postal": "95197", "stop_lon": 2.330088568169852, "coord": [48.96922697658946, 2.330088568169852], "stop_id": 5150919, "stop_desc": "101 RUE GALLIENI - 95197", "stop_name": "VILLAGE ARTISANAL"}, "geometry": {"type": "Point", "coordinates": [2.330088568169852, 48.96922697658946]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "20aa2e0ab3c68f7a7c1e9cbf60807ebec50d482c", "fields": {"departement": "93", "stop_lat": 48.96328239313857, "code_postal": "93059", "stop_lon": 2.3705562323799776, "coord": [48.96328239313857, 2.3705562323799776], "stop_id": 5150921, "stop_desc": "AVENUE LEDRU ROLLIN - 93059", "stop_name": "GARE DE PIERREFITTE - STAINS RER"}, "geometry": {"type": "Point", "coordinates": [2.3705562323799776, 48.96328239313857]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "66b2340c44fb79b4f36da51022429c0043e16b53", "fields": {"departement": "95", "stop_lat": 48.97224553492985, "code_postal": "95427", "stop_lon": 2.353812788019778, "coord": [48.97224553492985, 2.353812788019778], "stop_id": 5150925, "stop_desc": "101 RUE DE PIERREFITTE - 95427", "stop_name": "SUZANNE VALADON"}, "geometry": {"type": "Point", "coordinates": [2.353812788019778, 48.97224553492985]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7d5102f885a0364435afc0c4f0fe19b056b48759", "fields": {"departement": "92", "stop_lat": 48.902797800336785, "code_postal": "92026", "stop_lon": 2.2743146074061666, "coord": [48.902797800336785, 2.2743146074061666], "stop_id": 5151248, "stop_desc": "2 BOULEVARD GEORGES CLEMENCEAU - 92026", "stop_name": "PLACE MERMOZ"}, "geometry": {"type": "Point", "coordinates": [2.2743146074061666, 48.902797800336785]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f99ccbd775c72aa0ed5a18317c662f4c45e757d0", "fields": {"departement": "92", "stop_lat": 48.90337876169204, "code_postal": "92026", "stop_lon": 2.2685201312486116, "coord": [48.90337876169204, 2.2685201312486116], "stop_id": 5151249, "stop_desc": "FACE 53 BOULEVARD GEORGES CLEMENCEAU - 92026", "stop_name": "PLACE DE BELGIQUE"}, "geometry": {"type": "Point", "coordinates": [2.2685201312486116, 48.90337876169204]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "692eb8c185cec2eaaaacce75d2ac467ee36a4b67", "fields": {"departement": "93", "stop_lat": 48.96363648181494, "code_postal": "93079", "stop_lon": 2.3529774891108026, "coord": [48.96363648181494, 2.3529774891108026], "stop_id": 5151277, "stop_desc": "70 AVENUE JEAN JAURES - 93079", "stop_name": "GASTON NOREUX"}, "geometry": {"type": "Point", "coordinates": [2.3529774891108026, 48.96363648181494]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5e93c8626717564081b72af190b531b39182ac80", "fields": {"departement": "93", "stop_lat": 48.96400539223529, "code_postal": "93079", "stop_lon": 2.3489922782331814, "coord": [48.96400539223529, 2.3489922782331814], "stop_id": 5151279, "stop_desc": "40 AVENUE JEAN - JAURES - 93079", "stop_name": "CHEMIN DES ROSES"}, "geometry": {"type": "Point", "coordinates": [2.3489922782331814, 48.96400539223529]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9c9c1f183cef7761643cb6a678d249254210a0f9", "fields": {"departement": "93", "stop_lat": 48.962810553011046, "code_postal": "93079", "stop_lon": 2.344051412749311, "coord": [48.962810553011046, 2.344051412749311], "stop_id": 5151281, "stop_desc": "39 RUE ROGER SALENGRO - 93079", "stop_name": "EGLISE DE VILLETANEUSE"}, "geometry": {"type": "Point", "coordinates": [2.344051412749311, 48.962810553011046]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0768a69f8cc9f2214529a26293d4e3a0d25666fa", "fields": {"departement": "93", "stop_lat": 48.96154334180808, "code_postal": "93079", "stop_lon": 2.345538847462394, "coord": [48.96154334180808, 2.345538847462394], "stop_id": 5151284, "stop_desc": "14 RUE ROGER SALENGRO - 93079", "stop_name": "EDOUARD VAILLANT"}, "geometry": {"type": "Point", "coordinates": [2.345538847462394, 48.96154334180808]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7629a0b9ba528280a62fa23f7f8d82bcde968707", "fields": {"departement": "93", "stop_lat": 48.95965634950431, "code_postal": "93079", "stop_lon": 2.34166273514596, "coord": [48.95965634950431, 2.34166273514596], "stop_id": 5151286, "stop_desc": "AVENUE JEAN BAPTISTE CLEMENT - 93079", "stop_name": "UNIVERSITE - TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.34166273514596, 48.95965634950431]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1e51e1ed55889debfa5e6651a35c0900bbd6d813", "fields": {"departement": "93", "stop_lat": 48.956358312197, "code_postal": "93079", "stop_lon": 2.33860567192674, "coord": [48.956358312197, 2.33860567192674], "stop_id": 5151288, "stop_desc": "AVENUE GARE ROUTIERE-QUAI DE DROITE - 93079", "stop_name": "UNIVERSITE - PARIS 13"}, "geometry": {"type": "Point", "coordinates": [2.33860567192674, 48.956358312197]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "716289b87e12f833b797b5ab0782cae80b6c1509", "fields": {"departement": "93", "stop_lat": 48.95587253291794, "code_postal": "93031", "stop_lon": 2.3262694749112587, "coord": [48.95587253291794, 2.3262694749112587], "stop_id": 5151296, "stop_desc": "73 AVENUE DE LA MARNE - 93031", "stop_name": "RUE DES PRESLES"}, "geometry": {"type": "Point", "coordinates": [2.3262694749112587, 48.95587253291794]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d7ffe4b3d68c3b651a7f296aa72c3bba069fe97b", "fields": {"departement": "93", "stop_lat": 48.95279015464042, "code_postal": "93031", "stop_lon": 2.3269660448838123, "coord": [48.95279015464042, 2.3269660448838123], "stop_id": 5151298, "stop_desc": "49 RUE DU COMMANDANT LOUIS BOUCHET - 93031", "stop_name": "AVENUE DE LA MARNE - COMMANDANT LOUIS BOUCHET"}, "geometry": {"type": "Point", "coordinates": [2.3269660448838123, 48.95279015464042]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8f68c7a91be13a1c3e6545feb469b7e48579dac6", "fields": {"departement": "93", "stop_lat": 48.95312270561949, "code_postal": "93031", "stop_lon": 2.327470862167839, "coord": [48.95312270561949, 2.327470862167839], "stop_id": 5151299, "stop_desc": "FACE 35 AVENUE DE LA MARNE - 93031", "stop_name": "AVENUE DE LA MARNE - COMMANDANT LOUIS BOUCHET"}, "geometry": {"type": "Point", "coordinates": [2.327470862167839, 48.95312270561949]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ae0e8db69bce7ef8d181f4cc7c552cb92bea4dfd", "fields": {"departement": "93", "stop_lat": 48.9515132665837, "code_postal": "93031", "stop_lon": 2.320211987730745, "coord": [48.9515132665837, 2.320211987730745], "stop_id": 5151303, "stop_desc": "FACE 16 AVENUE DE LA REPUBLIQUE - 93031", "stop_name": "LES BEATUS"}, "geometry": {"type": "Point", "coordinates": [2.320211987730745, 48.9515132665837]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "226de58f02514663b0246d0a777774589291f3f9", "fields": {"departement": "93", "stop_lat": 48.95499747019719, "code_postal": "93031", "stop_lon": 2.306905998884448, "coord": [48.95499747019719, 2.306905998884448], "stop_id": 5151309, "stop_desc": "115 RUE DE PARIS - 93031", "stop_name": "GILBERT BONNEMAISON"}, "geometry": {"type": "Point", "coordinates": [2.306905998884448, 48.95499747019719]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2b7b04c584eddec6959d864dcc349be411d673ac", "fields": {"departement": "93", "stop_lat": 48.95528965496646, "code_postal": "93031", "stop_lon": 2.2929186064253337, "coord": [48.95528965496646, 2.2929186064253337], "stop_id": 5151314, "stop_desc": "74 RUE FELIX MERLIN - 93031", "stop_name": "LYON"}, "geometry": {"type": "Point", "coordinates": [2.2929186064253337, 48.95528965496646]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f047f0033c01f094c64143c4d55c8c36cbea65ec", "fields": {"departement": "95", "stop_lat": 48.9489258430048, "code_postal": "95018", "stop_lon": 2.2563570786201685, "coord": [48.9489258430048, 2.2563570786201685], "stop_id": 5151335, "stop_desc": "16 RUE DU DOCTEUR LERAY - 95018", "stop_name": "ARISTIDE BRIAND"}, "geometry": {"type": "Point", "coordinates": [2.2563570786201685, 48.9489258430048]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2447e5eae8a4645ccb21d463db3b833cfc50a574", "fields": {"departement": "95", "stop_lat": 48.94600617419926, "code_postal": "95018", "stop_lon": 2.2578897272041454, "coord": [48.94600617419926, 2.2578897272041454], "stop_id": 5151337, "stop_desc": "PISTE GARE ROUTIERE - 95018", "stop_name": "GARE D'ARGENTEUIL"}, "geometry": {"type": "Point", "coordinates": [2.2578897272041454, 48.94600617419926]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e9f1af0f92cf2f84675bb892898954efe2921a1d", "fields": {"departement": "93", "stop_lat": 48.96453277877218, "code_postal": "93059", "stop_lon": 2.3657527627930537, "coord": [48.96453277877218, 2.3657527627930537], "stop_id": 5151342, "stop_desc": "46 BOULEVARD PASTEUR - 93059", "stop_name": "ETIENNE DOLET - PASTEUR"}, "geometry": {"type": "Point", "coordinates": [2.3657527627930537, 48.96453277877218]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cd00c98d20f14c5c4811fc1729819fe7beae111f", "fields": {"departement": "92", "stop_lat": 48.80106182589178, "code_postal": "92020", "stop_lon": 2.2785604109353716, "coord": [48.80106182589178, 2.2785604109353716], "stop_id": 5151468, "stop_desc": "FACE 70BIS RUE PIERRE BROSSOLETTE - 92020", "stop_name": "JEANNE D'ARC"}, "geometry": {"type": "Point", "coordinates": [2.2785604109353716, 48.80106182589178]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "72056d0a31ca84d717421464b72de4c5ae008af9", "fields": {"departement": "92", "stop_lat": 48.801642529417165, "code_postal": "92023", "stop_lon": 2.2718385446972253, "coord": [48.801642529417165, 2.2718385446972253], "stop_id": 5151470, "stop_desc": "46 RUE DE CHATILLON - 92023", "stop_name": "PIERRE CORBY"}, "geometry": {"type": "Point", "coordinates": [2.2718385446972253, 48.801642529417165]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f38b4d5195f3ddbf8f0766f22de71bff4cd68c7a", "fields": {"departement": "92", "stop_lat": 48.80150455495496, "code_postal": "92023", "stop_lon": 2.266328429226022, "coord": [48.80150455495496, 2.266328429226022], "stop_id": 5151472, "stop_desc": "5 RUE PAUL VAILLANT COUTURIER - 92023", "stop_name": "MARCHE DE CLAMART"}, "geometry": {"type": "Point", "coordinates": [2.266328429226022, 48.80150455495496]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6382960bcdbbb1a94c0c6449aeafe0fe11067b75", "fields": {"departement": "92", "stop_lat": 48.80388678659438, "code_postal": "92023", "stop_lon": 2.26710073279269, "coord": [48.80388678659438, 2.26710073279269], "stop_id": 5151473, "stop_desc": "34 AVENUE VICTOR HUGO - 92023", "stop_name": "GABRIEL PERI"}, "geometry": {"type": "Point", "coordinates": [2.26710073279269, 48.80388678659438]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aa5677a230c12e9e3b1f342c017574d0f269d1ef", "fields": {"departement": "92", "stop_lat": 48.817754353454205, "code_postal": "92075", "stop_lon": 2.2832641746607196, "coord": [48.817754353454205, 2.2832641746607196], "stop_id": 5151486, "stop_desc": "FACE 3 RUE LARMEROUX - 92075", "stop_name": "RUE DE CHATILLON"}, "geometry": {"type": "Point", "coordinates": [2.2832641746607196, 48.817754353454205]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "28200a3c251783961593c6eecd7c7b011dd2b7a2", "fields": {"departement": "92", "stop_lat": 48.82108197471381, "code_postal": "92075", "stop_lon": 2.2882830919650754, "coord": [48.82108197471381, 2.2882830919650754], "stop_id": 5151488, "stop_desc": "32 RUE ANTOINE FRATACCI - 92075", "stop_name": "MAIRIE DE VANVES - CENTRE ADMINISTRATIF"}, "geometry": {"type": "Point", "coordinates": [2.2882830919650754, 48.82108197471381]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c5db7c867ff202319a9e1cd01b6e4d9d4e6ae5db", "fields": {"departement": "92", "stop_lat": 48.82234784339921, "code_postal": "92075", "stop_lon": 2.2850016190088835, "coord": [48.82234784339921, 2.2850016190088835], "stop_id": 5151489, "stop_desc": "FACE 13 BOULEVARD DU LYCEE - 92075", "stop_name": "PLACE DU MARECHAL DE LATTRE DE TASSIGNY"}, "geometry": {"type": "Point", "coordinates": [2.2850016190088835, 48.82234784339921]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2efa313e07b79cfd9e1d71b3df490169bc92a463", "fields": {"departement": "92", "stop_lat": 48.82224888312768, "code_postal": "92075", "stop_lon": 2.284783941220651, "coord": [48.82224888312768, 2.284783941220651], "stop_id": 5151490, "stop_desc": "9 BOULEVARD DU LYCEE - 92075", "stop_name": "PLACE DU MARECHAL DE LATTRE DE TASSIGNY"}, "geometry": {"type": "Point", "coordinates": [2.284783941220651, 48.82224888312768]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4d985fa0885f859d3800bcb9fc0b4bf50f7b17db", "fields": {"departement": "92", "stop_lat": 48.82444080124116, "code_postal": "92075", "stop_lon": 2.2823996840556604, "coord": [48.82444080124116, 2.2823996840556604], "stop_id": 5151491, "stop_desc": "40 BD DU LYCEE - 92075", "stop_name": "GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.2823996840556604, 48.82444080124116]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b9cfd6705a9906947bf388685ea3f539615d75d6", "fields": {"departement": "92", "stop_lat": 48.82837374190805, "code_postal": "92040", "stop_lon": 2.2749766076077833, "coord": [48.82837374190805, 2.2749766076077833], "stop_id": 5151495, "stop_desc": "71 RUE GUYNEMER - 92040", "stop_name": "MAISON DE RETRAITE"}, "geometry": {"type": "Point", "coordinates": [2.2749766076077833, 48.82837374190805]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dd2e36f1e82abd2ab259e9b9eb26c835877f3746", "fields": {"departement": "92", "stop_lat": 48.831836707153386, "code_postal": "92040", "stop_lon": 2.2804315068912797, "coord": [48.831836707153386, 2.2804315068912797], "stop_id": 5151497, "stop_desc": "FACE 2 BIS RUE JEANNE D'ARC - 92040", "stop_name": "PORTE D'ISSY"}, "geometry": {"type": "Point", "coordinates": [2.2804315068912797, 48.831836707153386]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2f0a292118a4a399480aa1e43183596828e0ef52", "fields": {"departement": "75", "stop_lat": 48.83558092732886, "code_postal": "75115", "stop_lon": 2.2931162004514722, "coord": [48.83558092732886, 2.2931162004514722], "stop_id": 5151500, "stop_desc": "383 RUE DE VAUGIRARD - 75115", "stop_name": "HOPITAL DE VAUGIRARD"}, "geometry": {"type": "Point", "coordinates": [2.2931162004514722, 48.83558092732886]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a61661cc43152cd64310cda50a3cc0a801402195", "fields": {"departement": "75", "stop_lat": 48.84153536388469, "code_postal": "75115", "stop_lon": 2.3083339871069257, "coord": [48.84153536388469, 2.3083339871069257], "stop_id": 5151506, "stop_desc": "225-223 RUE DE VAUGIRARD - 75115", "stop_name": "VOLONTAIRES - VAUGIRARD"}, "geometry": {"type": "Point", "coordinates": [2.3083339871069257, 48.84153536388469]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0d0b94978ba492ca1256ee983094a10a32930770", "fields": {"departement": "75", "stop_lat": 48.84195996643212, "code_postal": "75115", "stop_lon": 2.3194990816420824, "coord": [48.84195996643212, 2.3194990816420824], "stop_id": 5151511, "stop_desc": "8-10 BOULEVARD DE VAUGIRARD - 75115", "stop_name": "GARE MONTPARNASSE"}, "geometry": {"type": "Point", "coordinates": [2.3194990816420824, 48.84195996643212]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "df0e7cc9bc0881da610433a999b1463c23d3053a", "fields": {"departement": "75", "stop_lat": 48.843217014382596, "code_postal": "75115", "stop_lon": 2.3127039743389797, "coord": [48.843217014382596, 2.3127039743389797], "stop_id": 5151513, "stop_desc": "31 BOULEVARD PASTEUR - 75115", "stop_name": "PASTEUR - LYCEE BUFFON"}, "geometry": {"type": "Point", "coordinates": [2.3127039743389797, 48.843217014382596]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ad198188d80e85ecd87ede2aaf023f7d4e68046a", "fields": {"departement": "75", "stop_lat": 48.84396164200655, "code_postal": "75115", "stop_lon": 2.3069028723393976, "coord": [48.84396164200655, 2.3069028723393976], "stop_id": 5151515, "stop_desc": "54 RUE LECOURBE - 75115", "stop_name": "VOLONTAIRES - LECOURBE"}, "geometry": {"type": "Point", "coordinates": [2.3069028723393976, 48.84396164200655]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8cd4d227f6303d0af60a0b1439aa5a987faeda14", "fields": {"departement": "75", "stop_lat": 48.8425042999016, "code_postal": "75115", "stop_lon": 2.3019609713401774, "coord": [48.8425042999016, 2.3019609713401774], "stop_id": 5151516, "stop_desc": "118-120 RUE LECOURBE - 75115", "stop_name": "CAMBRONNE - LECOURBE"}, "geometry": {"type": "Point", "coordinates": [2.3019609713401774, 48.8425042999016]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e2f171973b70d93ad37f82a6b60d4794c848d720", "fields": {"departement": "92", "stop_lat": 48.80260013465449, "code_postal": "92023", "stop_lon": 2.264775855467971, "coord": [48.80260013465449, 2.264775855467971], "stop_id": 5151527, "stop_desc": "39 AV JEAN JAURES - 92023", "stop_name": "CENTRE CULTUREL JEAN ARP"}, "geometry": {"type": "Point", "coordinates": [2.264775855467971, 48.80260013465449]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a5d572443a70adb4b6f98620edb5acbd4b02889f", "fields": {"departement": "92", "stop_lat": 48.75491599272716, "code_postal": "92002", "stop_lon": 2.2966238515531257, "coord": [48.75491599272716, 2.2966238515531257], "stop_id": 5155516, "stop_desc": "13 RUE MAURICE LABROUSSE - 92002", "stop_name": "THEATRE-MAIRIE"}, "geometry": {"type": "Point", "coordinates": [2.2966238515531257, 48.75491599272716]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d86b0783b5cf8415ccf6f283a2bf51174d27a7cb", "fields": {"departement": "93", "stop_lat": 48.965393060143406, "code_postal": "93031", "stop_lon": 2.2999253999120457, "coord": [48.965393060143406, 2.2999253999120457], "stop_id": 5157988, "stop_desc": "FACE 7 AVENUE GALLIENI - 93031", "stop_name": "LIMITE DES DEPARTEMENTS"}, "geometry": {"type": "Point", "coordinates": [2.2999253999120457, 48.965393060143406]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7b66b211e7b74f9d5bce9df1f1fe7f1046363e62", "fields": {"departement": "93", "stop_lat": 48.96320837383561, "code_postal": "93031", "stop_lon": 2.29704721447519, "coord": [48.96320837383561, 2.29704721447519], "stop_id": 5157990, "stop_desc": "66 AVENUE GALLIENI - 93031", "stop_name": "RUE DE SAINT-GRATIEN"}, "geometry": {"type": "Point", "coordinates": [2.29704721447519, 48.96320837383561]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1fee74e752a49ab7b56c85c49fdc5893733d1375", "fields": {"departement": "93", "stop_lat": 48.96137426016086, "code_postal": "93031", "stop_lon": 2.2946330010451486, "coord": [48.96137426016086, 2.2946330010451486], "stop_id": 5157993, "stop_desc": "1 ROUTE D'ARGENTEUIL - 93031", "stop_name": "CYGNE D'ENGHIEN"}, "geometry": {"type": "Point", "coordinates": [2.2946330010451486, 48.96137426016086]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "affe76e0e85b4eb35c3a565b362c2c2c3af2c0eb", "fields": {"departement": "93", "stop_lat": 48.955141570032396, "code_postal": "93031", "stop_lon": 2.3081613491390556, "coord": [48.955141570032396, 2.3081613491390556], "stop_id": 5158002, "stop_desc": "AVENUE SALVADOR ALLENDE - 93031", "stop_name": "GILBERT BONNEMAISON"}, "geometry": {"type": "Point", "coordinates": [2.3081613491390556, 48.955141570032396]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "90e6270d1ad8f38aa94bc8dd243485e1b16acf10", "fields": {"departement": "93", "stop_lat": 48.9555365638021, "code_postal": "93031", "stop_lon": 2.306482652652806, "coord": [48.9555365638021, 2.306482652652806], "stop_id": 5158003, "stop_desc": "FACE 119 RUE DE PARIS - 93031", "stop_name": "GILBERT BONNEMAISON"}, "geometry": {"type": "Point", "coordinates": [2.306482652652806, 48.9555365638021]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0e5928f6084319c846bd5d1fd2a05cd0c2ee7ea7", "fields": {"departement": "93", "stop_lat": 48.95284347419519, "code_postal": "93031", "stop_lon": 2.321466928731806, "coord": [48.95284347419519, 2.321466928731806], "stop_id": 5158010, "stop_desc": "FACE 15 RUE HENRI DUNANT - 93031", "stop_name": "LYCEE D'EPINAY-SUR-SEINE"}, "geometry": {"type": "Point", "coordinates": [2.321466928731806, 48.95284347419519]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7e16ae14c9289adfac5151fd550bfb66dba11031", "fields": {"departement": "95", "stop_lat": 48.95631326835775, "code_postal": "95427", "stop_lon": 2.3319462579160413, "coord": [48.95631326835775, 2.3319462579160413], "stop_id": 5158017, "stop_desc": "209 ROUTE DE SAINT-LEU - 95427", "stop_name": "SABLONS"}, "geometry": {"type": "Point", "coordinates": [2.3319462579160413, 48.95631326835775]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e7d4a2fabf12c2d127fb321828d2f291e18dbe50", "fields": {"departement": "93", "stop_lat": 48.953824055600066, "code_postal": "93031", "stop_lon": 2.335385224920676, "coord": [48.953824055600066, 2.335385224920676], "stop_id": 5158019, "stop_desc": "149 ROUTE DE SAINT-LEU - 93031", "stop_name": "YSER"}, "geometry": {"type": "Point", "coordinates": [2.335385224920676, 48.953824055600066]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7668b5fdb300d7918eea995443e078352582761f", "fields": {"departement": "93", "stop_lat": 48.9366502179917, "code_postal": "93066", "stop_lon": 2.342711145405582, "coord": [48.9366502179917, 2.342711145405582], "stop_id": 5158028, "stop_desc": "QUAI DE SEINE - 93066", "stop_name": "RUE DU PORT"}, "geometry": {"type": "Point", "coordinates": [2.342711145405582, 48.9366502179917]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "98e6de6925923e24c48d6d36a691269a99a9c218", "fields": {"departement": "93", "stop_lat": 48.93585048905387, "code_postal": "93039", "stop_lon": 2.33968277131982, "coord": [48.93585048905387, 2.33968277131982], "stop_id": 5158029, "stop_desc": "RUE MECHIN - 93039", "stop_name": "L'ILE-SAINT-DENIS"}, "geometry": {"type": "Point", "coordinates": [2.33968277131982, 48.93585048905387]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4ee586a2592c5405626dbc30324bf2b01df67bb9", "fields": {"departement": "92", "stop_lat": 48.93322738865775, "code_postal": "92036", "stop_lon": 2.2937013496860867, "coord": [48.93322738865775, 2.2937013496860867], "stop_id": 5158041, "stop_desc": "FACE 1 AVENUE LUCIEN LANTERNIER - 92036", "stop_name": "LE VILLAGE"}, "geometry": {"type": "Point", "coordinates": [2.2937013496860867, 48.93322738865775]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "86ac7ce3671c31404b5ce374a0e03de6bfedb87f", "fields": {"departement": "92", "stop_lat": 48.93300278659405, "code_postal": "92036", "stop_lon": 2.293892501341222, "coord": [48.93300278659405, 2.293892501341222], "stop_id": 5158042, "stop_desc": "1 AVENUE LUCIEN LANTERNIER - 92036", "stop_name": "LE VILLAGE"}, "geometry": {"type": "Point", "coordinates": [2.293892501341222, 48.93300278659405]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1af98862deb113bfcc573fc550a566f791a511e3", "fields": {"departement": "92", "stop_lat": 48.90329564012262, "code_postal": "92024", "stop_lon": 2.306077441180394, "coord": [48.90329564012262, 2.306077441180394], "stop_id": 5158060, "stop_desc": "88 RUE MARTRE - 92024", "stop_name": "MAIRIE DE CLICHY-METRO"}, "geometry": {"type": "Point", "coordinates": [2.306077441180394, 48.90329564012262]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4b565371c8ca7fcb37e5f6bff9c0685cadc0b199", "fields": {"departement": "75", "stop_lat": 48.88783222281554, "code_postal": "75117", "stop_lon": 2.325152745158805, "coord": [48.88783222281554, 2.325152745158805], "stop_id": 5158072, "stop_desc": "70 AVENUE DE CLICHY - 75117", "stop_name": "LA FOURCHE"}, "geometry": {"type": "Point", "coordinates": [2.325152745158805, 48.88783222281554]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7cdbf2eee5cf4fa238a6a875fb4b047dce672656", "fields": {"departement": "75", "stop_lat": 48.885324939226564, "code_postal": "75118", "stop_lon": 2.3267205100468256, "coord": [48.885324939226564, 2.3267205100468256], "stop_id": 5158074, "stop_desc": "26-28 AVENUE DE CLICHY - 75118", "stop_name": "GANNERON"}, "geometry": {"type": "Point", "coordinates": [2.3267205100468256, 48.885324939226564]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6f05c9fd796ee1c830799398b74857cb53f7a61f", "fields": {"departement": "75", "stop_lat": 48.88284442780483, "code_postal": "75108", "stop_lon": 2.326325831178574, "coord": [48.88284442780483, 2.326325831178574], "stop_id": 5158075, "stop_desc": "43-45 RUE DE SAINT PETERSBOURG - 75108", "stop_name": "PLACE DE CLICHY"}, "geometry": {"type": "Point", "coordinates": [2.326325831178574, 48.88284442780483]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eecba5b22ebc65fb8c21e6e3a6b4cf7cb9b228e3", "fields": {"departement": "75", "stop_lat": 48.88023794533592, "code_postal": "75108", "stop_lon": 2.3245140812346885, "coord": [48.88023794533592, 2.3245140812346885], "stop_id": 5158078, "stop_desc": "12 RUE DE SAINT-PETERSBOURG - 75108", "stop_name": "BUCAREST"}, "geometry": {"type": "Point", "coordinates": [2.3245140812346885, 48.88023794533592]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e18f5be0fa33c6c44bf47d804b719fe9898bc52d", "fields": {"departement": "75", "stop_lat": 48.87829652117301, "code_postal": "75108", "stop_lon": 2.322974842811343, "coord": [48.87829652117301, 2.322974842811343], "stop_id": 5158080, "stop_desc": "24 RUE DE VIENNE - 75108", "stop_name": "EUROPE"}, "geometry": {"type": "Point", "coordinates": [2.322974842811343, 48.87829652117301]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a9f11fbb23bf241d0d427c2184e529383169bd04", "fields": {"departement": "75", "stop_lat": 48.87576218699689, "code_postal": "75108", "stop_lon": 2.3236567975351456, "coord": [48.87576218699689, 2.3236567975351456], "stop_id": 5158081, "stop_desc": "17 RUE DE ROME - 75108", "stop_name": "GARE SAINT-LAZARE"}, "geometry": {"type": "Point", "coordinates": [2.3236567975351456, 48.87576218699689]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "af843f43f70656bad23388e26d7b5e58ecb6175a", "fields": {"departement": "92", "stop_lat": 48.79845615600595, "code_postal": "92007", "stop_lon": 2.303868379302459, "coord": [48.79845615600595, 2.303868379302459], "stop_id": 5161424, "stop_desc": "55 AVENUE HENRI RAVERA - 92007", "stop_name": "HOTEL DE VILLE DE BAGNEUX"}, "geometry": {"type": "Point", "coordinates": [2.303868379302459, 48.79845615600595]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4a79e67397c7020c89385cf2b0adf39545b4b5f4", "fields": {"departement": "92", "stop_lat": 48.79531838058483, "code_postal": "92007", "stop_lon": 2.300442181479905, "coord": [48.79531838058483, 2.300442181479905], "stop_id": 5161427, "stop_desc": "4 RUE DE FONTENAY - 92007", "stop_name": "DAMPIERRE"}, "geometry": {"type": "Point", "coordinates": [2.300442181479905, 48.79531838058483]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "451a904c85e9fc78bbf1ef4abcddcea57458fbf2", "fields": {"departement": "92", "stop_lat": 48.78940168904218, "code_postal": "92032", "stop_lon": 2.292679359839008, "coord": [48.78940168904218, 2.292679359839008], "stop_id": 5161431, "stop_desc": "FACE 44 AVENUE LOMBART - 92032", "stop_name": "CHATEAU SAINTE-BARBE"}, "geometry": {"type": "Point", "coordinates": [2.292679359839008, 48.78940168904218]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "209d78d8d5daa635e059c9201d5bd47d0970e362", "fields": {"departement": "92", "stop_lat": 48.77889294434602, "code_postal": "92071", "stop_lon": 2.2880508701269706, "coord": [48.77889294434602, 2.2880508701269706], "stop_id": 5161441, "stop_desc": "126 RUE HOUDAN - 92071", "stop_name": "MAIRIE DE SCEAUX"}, "geometry": {"type": "Point", "coordinates": [2.2880508701269706, 48.77889294434602]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "be688fb3bcba4ccc54ab9b285d1d1a4943152c8b", "fields": {"departement": "92", "stop_lat": 48.77909754800662, "code_postal": "92071", "stop_lon": 2.283168354791031, "coord": [48.77909754800662, 2.283168354791031], "stop_id": 5161443, "stop_desc": "FACE 131 RUE HOUDAN - 92071", "stop_name": "CIMETIERE DE SCEAUX"}, "geometry": {"type": "Point", "coordinates": [2.283168354791031, 48.77909754800662]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d2c36a3c024785b54c3f7430f9fb1fea0efe2bb3", "fields": {"departement": "92", "stop_lat": 48.78036417660201, "code_postal": "92071", "stop_lon": 2.2816982237256243, "coord": [48.78036417660201, 2.2816982237256243], "stop_id": 5161445, "stop_desc": "5 AVENUE DE LA GARE - 92071", "stop_name": "ROBINSON RER"}, "geometry": {"type": "Point", "coordinates": [2.2816982237256243, 48.78036417660201]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a0112688870c64106cc8cea4394b45a5c6bbfe77", "fields": {"departement": "92", "stop_lat": 48.79745809070738, "code_postal": "92007", "stop_lon": 2.3024269345899246, "coord": [48.79745809070738, 2.3024269345899246], "stop_id": 5161447, "stop_desc": "FACE 21 AV HENRI RAVERA - 92007", "stop_name": "ROSENBERG"}, "geometry": {"type": "Point", "coordinates": [2.3024269345899246, 48.79745809070738]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0f00f29aefc72fc6877d84da59fa60505e259cfc", "fields": {"departement": "92", "stop_lat": 48.81012533937183, "code_postal": "92049", "stop_lon": 2.317264664205692, "coord": [48.81012533937183, 2.317264664205692], "stop_id": 5161448, "stop_desc": "43 AVENUE DE VERDUN - 92049", "stop_name": "CIMETIERE PARISIEN"}, "geometry": {"type": "Point", "coordinates": [2.317264664205692, 48.81012533937183]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8a0c252397253bb6902df6c14511063fecc27e6a", "fields": {"departement": "75", "stop_lat": 48.82150449009198, "code_postal": "75114", "stop_lon": 2.3218879847732494, "coord": [48.82150449009198, 2.3218879847732494], "stop_id": 5161450, "stop_desc": "FACE 18 AV DE LA PORTE DE MONTROUGE - 75114", "stop_name": "CIMETIERE DE MONTROUGE"}, "geometry": {"type": "Point", "coordinates": [2.3218879847732494, 48.82150449009198]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "851a92f278ab66deb7bee3380bd1f6a50bd7c6cc", "fields": {"departement": "92", "stop_lat": 48.777515228878336, "code_postal": "92060", "stop_lon": 2.2400871958767454, "coord": [48.777515228878336, 2.2400871958767454], "stop_id": 5161451, "stop_desc": "AVENUE DESCARTES - 92060", "stop_name": "REAUMUR"}, "geometry": {"type": "Point", "coordinates": [2.2400871958767454, 48.777515228878336]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3206d82c30448fad170bc9ae99ddeffe78d42b51", "fields": {"departement": "92", "stop_lat": 48.8020850518021, "code_postal": "92020", "stop_lon": 2.2968046352222333, "coord": [48.8020850518021, 2.2968046352222333], "stop_id": 5161462, "stop_desc": "RUE PERROTIN - 92020", "stop_name": "PERROTIN"}, "geometry": {"type": "Point", "coordinates": [2.2968046352222333, 48.8020850518021]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d5b1e904dffb559347661a13c5dc0b0cfc6c506d", "fields": {"departement": "92", "stop_lat": 48.79473999766578, "code_postal": "92032", "stop_lon": 2.2913552016110916, "coord": [48.79473999766578, 2.2913552016110916], "stop_id": 5161464, "stop_desc": "FACE 22 AVENUE JEANNE ET MAURICE DOLIVET - 92032", "stop_name": "CIMETIERE DE FONTENAY-AUX-ROSES"}, "geometry": {"type": "Point", "coordinates": [2.2913552016110916, 48.79473999766578]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "17541dbd5026b7fdb2a9a10f1d4c97451522702b", "fields": {"departement": "92", "stop_lat": 48.78306061174014, "code_postal": "92032", "stop_lon": 2.2817905454624388, "coord": [48.78306061174014, 2.2817905454624388], "stop_id": 5161472, "stop_desc": "33 AVENUE JULES GUESDES - 92032", "stop_name": "CARREFOUR DES MOUILLEBOEUFS"}, "geometry": {"type": "Point", "coordinates": [2.2817905454624388, 48.78306061174014]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a8a906a2cad75b202271bd9cb1c2271ee768322f", "fields": {"departement": "92", "stop_lat": 48.779356696723205, "code_postal": "92019", "stop_lon": 2.279958520425801, "coord": [48.779356696723205, 2.279958520425801], "stop_id": 5161474, "stop_desc": "AVENUE DU PLESSIS - 92019", "stop_name": "ROBINSON RER"}, "geometry": {"type": "Point", "coordinates": [2.279958520425801, 48.779356696723205]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9fa53402125cf6535c6eabb720fee5f6a5c410ba", "fields": {"departement": "92", "stop_lat": 48.775562577228506, "code_postal": "92019", "stop_lon": 2.277555707263493, "coord": [48.775562577228506, 2.277555707263493], "stop_id": 5161475, "stop_desc": "6 AVENUE ROGER SALENGRO - 92019", "stop_name": "PROFESSEUR EINSTEIN"}, "geometry": {"type": "Point", "coordinates": [2.277555707263493, 48.775562577228506]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c081fed5d7d2a464f9573977469bdc6e30150d80", "fields": {"departement": "92", "stop_lat": 48.77569758793708, "code_postal": "92019", "stop_lon": 2.277936321101258, "coord": [48.77569758793708, 2.277936321101258], "stop_id": 5161476, "stop_desc": "15-17 AVENUE ROGER SALENGRO - 92019", "stop_name": "PROFESSEUR EINSTEIN"}, "geometry": {"type": "Point", "coordinates": [2.277936321101258, 48.77569758793708]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c5424e06a9834a906010c0772713c44bb3bffc5a", "fields": {"departement": "92", "stop_lat": 48.76994317207525, "code_postal": "92019", "stop_lon": 2.2739180644920944, "coord": [48.76994317207525, 2.2739180644920944], "stop_id": 5161479, "stop_desc": "88 AVENUE ROGER SALENGRO - 92019", "stop_name": "JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.2739180644920944, 48.76994317207525]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a3a7933cbf5d4fbc81439b2563f4b95f33cc7b5e", "fields": {"departement": "92", "stop_lat": 48.766266284732275, "code_postal": "92019", "stop_lon": 2.272494921821088, "coord": [48.766266284732275, 2.272494921821088], "stop_id": 5161484, "stop_desc": "FACE 136 AVENUE ROGER SALENGRO - 92019", "stop_name": "JULES VERNE"}, "geometry": {"type": "Point", "coordinates": [2.272494921821088, 48.766266284732275]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "09b6914add4e1b65f5623a341eef95e3091eb869", "fields": {"departement": "92", "stop_lat": 48.76432452376771, "code_postal": "92019", "stop_lon": 2.271885525552727, "coord": [48.76432452376771, 2.271885525552727], "stop_id": 5161485, "stop_desc": "AVENUE ROGER SALENGRO - 92019", "stop_name": "PRESIDENT ALLENDE"}, "geometry": {"type": "Point", "coordinates": [2.271885525552727, 48.76432452376771]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7a2a43959e42ff88c68632eb3730e94a92d68796", "fields": {"departement": "92", "stop_lat": 48.762346781670225, "code_postal": "92019", "stop_lon": 2.2712354343075263, "coord": [48.762346781670225, 2.2712354343075263], "stop_id": 5161488, "stop_desc": "RUE JEAN-BAPTISTE CLEMENT - 92019", "stop_name": "FACULTE DE PHARMACIE"}, "geometry": {"type": "Point", "coordinates": [2.2712354343075263, 48.762346781670225]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bac9ba91a672ae8a83b7ff5f9a259f1473f6eea8", "fields": {"departement": "92", "stop_lat": 48.82739562507031, "code_postal": "92040", "stop_lon": 2.2779861305343347, "coord": [48.82739562507031, 2.2779861305343347], "stop_id": 5151493, "stop_desc": "FACE 10 BOULEVARD GAMBETTA - 92040", "stop_name": "CORENTIN CELTON-METRO"}, "geometry": {"type": "Point", "coordinates": [2.2779861305343347, 48.82739562507031]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b00b596f7bbb2a967944563f0c746c1589272d37", "fields": {"departement": "75", "stop_lat": 48.84077310974983, "code_postal": "75115", "stop_lon": 2.3164086680713942, "coord": [48.84077310974983, 2.3164086680713942], "stop_id": 5151508, "stop_desc": "65 BOULEVARD DE VAUGIRARD - 75115", "stop_name": "ARMORIQUE - MUSEE POSTAL"}, "geometry": {"type": "Point", "coordinates": [2.3164086680713942, 48.84077310974983]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4a94f855ce5568cf7d8cf6e597edcba6efd17f67", "fields": {"departement": "75", "stop_lat": 48.84473518742932, "code_postal": "75115", "stop_lon": 2.3094351792376666, "coord": [48.84473518742932, 2.3094351792376666], "stop_id": 5151514, "stop_desc": "20 RUE LECOURBE - 75115", "stop_name": "SEVRES - LECOURBE"}, "geometry": {"type": "Point", "coordinates": [2.3094351792376666, 48.84473518742932]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3f58d46b352bafec315f2b6883e1bd3428be151b", "fields": {"departement": "75", "stop_lat": 48.836357751338085, "code_postal": "75115", "stop_lon": 2.2810256065344885, "coord": [48.836357751338085, 2.2810256065344885], "stop_id": 5151521, "stop_desc": "103-105 RUE LEBLANC - 75115", "stop_name": "BALARD - LECOURBE"}, "geometry": {"type": "Point", "coordinates": [2.2810256065344885, 48.836357751338085]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a057e756af839c7045cefe8acf1a87f6c06e4dce", "fields": {"departement": "75", "stop_lat": 48.836455270676616, "code_postal": "75115", "stop_lon": 2.2782480783935948, "coord": [48.836455270676616, 2.2782480783935948], "stop_id": 5151522, "stop_desc": "PLACE BALARD - 75115", "stop_name": "BALARD"}, "geometry": {"type": "Point", "coordinates": [2.2782480783935948, 48.836455270676616]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "659f865592a1e2b389773d54d6d862dcebb71b14", "fields": {"departement": "75", "stop_lat": 48.832330067121525, "code_postal": "75115", "stop_lon": 2.278456975264492, "coord": [48.832330067121525, 2.278456975264492], "stop_id": 5151523, "stop_desc": "FACE 1 RUE DU COLONEL PIERRE AVIA - 75115", "stop_name": "LOUIS ARMAND"}, "geometry": {"type": "Point", "coordinates": [2.278456975264492, 48.832330067121525]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2832736b8cea232a43344266d096dce0fb9b7d31", "fields": {"departement": "92", "stop_lat": 48.827744278090094, "code_postal": "92040", "stop_lon": 2.2743511865626744, "coord": [48.827744278090094, 2.2743511865626744], "stop_id": 5151526, "stop_desc": "4 RUE GAMBETTA - 92040", "stop_name": "VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.2743511865626744, 48.827744278090094]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "034d3d01906506fde72cbc62d1ae67d3f62fa2e6", "fields": {"departement": "93", "stop_lat": 48.95994495181, "code_postal": "93031", "stop_lon": 2.2934468632100247, "coord": [48.95994495181, 2.2934468632100247], "stop_id": 5157994, "stop_desc": "RUE DE MARSEILLE - 93031", "stop_name": "DUNKERQUE"}, "geometry": {"type": "Point", "coordinates": [2.2934468632100247, 48.95994495181]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "014f6871ce7a3d69797465c4156da51e4656eed2", "fields": {"departement": "93", "stop_lat": 48.9552995000875, "code_postal": "93031", "stop_lon": 2.2952930146074264, "coord": [48.9552995000875, 2.2952930146074264], "stop_id": 5157998, "stop_desc": "RUE FELIX MERLIN - 93031", "stop_name": "EPINAY - ORGEMONT"}, "geometry": {"type": "Point", "coordinates": [2.2952930146074264, 48.9552995000875]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6abfb99cd041c7fab1fc98f04fcbb65502a870d0", "fields": {"departement": "93", "stop_lat": 48.955452355277394, "code_postal": "93031", "stop_lon": 2.295524874607837, "coord": [48.955452355277394, 2.295524874607837], "stop_id": 5157999, "stop_desc": "RUE FELIX MERLIN - 93031", "stop_name": "EPINAY - ORGEMONT"}, "geometry": {"type": "Point", "coordinates": [2.295524874607837, 48.955452355277394]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ff5efbe0bd27b6df4657eec26327f227c0e66ad3", "fields": {"departement": "93", "stop_lat": 48.955741865588486, "code_postal": "93031", "stop_lon": 2.301488025682573, "coord": [48.955741865588486, 2.301488025682573], "stop_id": 5158000, "stop_desc": "RUE FELIX MERLIN - 93031", "stop_name": "EPINAY-SUR-SEINE - GARE"}, "geometry": {"type": "Point", "coordinates": [2.301488025682573, 48.955741865588486]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1dc7677fff24a4ec7fb12a69000625b180f4efb0", "fields": {"departement": "93", "stop_lat": 48.95497185231882, "code_postal": "93031", "stop_lon": 2.31274649544972, "coord": [48.95497185231882, 2.31274649544972], "stop_id": 5158005, "stop_desc": "AVENUE DE LATTRE DE TASSIGNY - 93031", "stop_name": "LACEPEDE"}, "geometry": {"type": "Point", "coordinates": [2.31274649544972, 48.95497185231882]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "32119d53671a9c69b205ce75380a82aca59fdf06", "fields": {"departement": "95", "stop_lat": 48.95659185515301, "code_postal": "95427", "stop_lon": 2.331932582935581, "coord": [48.95659185515301, 2.331932582935581], "stop_id": 5158018, "stop_desc": "11 ROUTE DE SAINT-LEU - 95427", "stop_name": "SABLONS"}, "geometry": {"type": "Point", "coordinates": [2.331932582935581, 48.95659185515301]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4c1c5a4d8537ee05c6565205a87d1fbb7efe7057", "fields": {"departement": "93", "stop_lat": 48.94979794073656, "code_postal": "93031", "stop_lon": 2.341525449398937, "coord": [48.94979794073656, 2.341525449398937], "stop_id": 5158022, "stop_desc": "14-16 ROUTE DE SAINT-LEU - 93031", "stop_name": "CESAR"}, "geometry": {"type": "Point", "coordinates": [2.341525449398937, 48.94979794073656]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "96edf595e373ccbd4393ac6946bab335eb7c3e11", "fields": {"departement": "93", "stop_lat": 48.941772758952226, "code_postal": "93066", "stop_lon": 2.341388362293004, "coord": [48.941772758952226, 2.341388362293004], "stop_id": 5158025, "stop_desc": "QUAI DE SEINE - 93066", "stop_name": "LA BRICHE"}, "geometry": {"type": "Point", "coordinates": [2.341388362293004, 48.941772758952226]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e7a6d33887a167551841e38d3c7bdc638c11193d", "fields": {"departement": "92", "stop_lat": 48.93539214038885, "code_postal": "92078", "stop_lon": 2.334008166911718, "coord": [48.93539214038885, 2.334008166911718], "stop_id": 5158032, "stop_desc": "AVENUE DE VERDUN - 92078", "stop_name": "MAIRIE DE VILLENEUVE-LA-GARENNE"}, "geometry": {"type": "Point", "coordinates": [2.334008166911718, 48.93539214038885]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "be9a403b093dd81ddc6774489ee8494adb8fa78c", "fields": {"departement": "92", "stop_lat": 48.931607590506914, "code_postal": "92036", "stop_lon": 2.288137661423614, "coord": [48.931607590506914, 2.288137661423614], "stop_id": 5158043, "stop_desc": "AVENUE LUCIEN LANTERNIER - 92036", "stop_name": "LE LUTH"}, "geometry": {"type": "Point", "coordinates": [2.288137661423614, 48.931607590506914]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4e31cac946f19154116f2c57e7a1baaf4fd5f75a", "fields": {"departement": "92", "stop_lat": 48.923329876851064, "code_postal": "92036", "stop_lon": 2.286304428319951, "coord": [48.923329876851064, 2.286304428319951], "stop_id": 5158050, "stop_desc": "BOULEVARD PIERRE DE COUBERTIN - 92036", "stop_name": "LES AGNETTES-METRO"}, "geometry": {"type": "Point", "coordinates": [2.286304428319951, 48.923329876851064]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5e9f553a2e5323287901a16e40e7068834b9428b", "fields": {"departement": "92", "stop_lat": 48.920365206951814, "code_postal": "92004", "stop_lon": 2.2887619809699933, "coord": [48.920365206951814, 2.2887619809699933], "stop_id": 5158052, "stop_desc": "RUE DES BAS - 92004", "stop_name": "GILLET"}, "geometry": {"type": "Point", "coordinates": [2.2887619809699933, 48.920365206951814]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "54f3ff02db896a0cd4fb57e21b429323b3c349cc", "fields": {"departement": "92", "stop_lat": 48.916664954153504, "code_postal": "92004", "stop_lon": 2.2950243206473284, "coord": [48.916664954153504, 2.2950243206473284], "stop_id": 5158054, "stop_desc": "PISTE GARE ROUTIERE - 92004", "stop_name": "GABRIEL PERI-METRO"}, "geometry": {"type": "Point", "coordinates": [2.2950243206473284, 48.916664954153504]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "737df80e9b8ee60bf486815902950d748e43cc2a", "fields": {"departement": "92", "stop_lat": 48.90259408337223, "code_postal": "92024", "stop_lon": 2.3039921380474033, "coord": [48.90259408337223, 2.3039921380474033], "stop_id": 5158059, "stop_desc": "89 BOULEVARD JEAN JAURES - 92024", "stop_name": "MAIRIE DE CLICHY-METRO"}, "geometry": {"type": "Point", "coordinates": [2.3039921380474033, 48.90259408337223]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "36daa4c6738113dcf8d876da6acf88998aabe57d", "fields": {"departement": "92", "stop_lat": 48.897014353385735, "code_postal": "92024", "stop_lon": 2.3089027796946073, "coord": [48.897014353385735, 2.3089027796946073], "stop_id": 5158062, "stop_desc": "3 BOULEVARD JEAN JAURES - 92024", "stop_name": "VICTOR HUGO - JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.3089027796946073, 48.897014353385735]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5a46f4877508ba54898014026fd7cc39f8bee2f2", "fields": {"departement": "75", "stop_lat": 48.89495721386351, "code_postal": "75117", "stop_lon": 2.313061110532158, "coord": [48.89495721386351, 2.313061110532158], "stop_id": 5158064, "stop_desc": "AVENUE DE LA PORTE DE CLICHY - 75117", "stop_name": "PORTE DE CLICHY"}, "geometry": {"type": "Point", "coordinates": [2.313061110532158, 48.89495721386351]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "56fa95341444e0eef7b4ff969495d14db88caebc", "fields": {"departement": "75", "stop_lat": 48.89295368222563, "code_postal": "75117", "stop_lon": 2.316251384985718, "coord": [48.89295368222563, 2.316251384985718], "stop_id": 5158066, "stop_desc": "182 AVENUE DE CLICHY - 75117", "stop_name": "BOULAY"}, "geometry": {"type": "Point", "coordinates": [2.316251384985718, 48.89295368222563]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6a2e01433ff0c7377d632f36903b6b12dd84def1", "fields": {"departement": "75", "stop_lat": 48.891587948844105, "code_postal": "75117", "stop_lon": 2.3181327811948154, "coord": [48.891587948844105, 2.3181327811948154], "stop_id": 5158067, "stop_desc": "141 AVENUE DE CLICHY - 75117", "stop_name": "BROCHANT - CARDINET"}, "geometry": {"type": "Point", "coordinates": [2.3181327811948154, 48.891587948844105]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7561392417e3b7d661e53fedfe1dcab8c59d80eb", "fields": {"departement": "75", "stop_lat": 48.89185755313465, "code_postal": "75117", "stop_lon": 2.3180645348981526, "coord": [48.89185755313465, 2.3180645348981526], "stop_id": 5158068, "stop_desc": "168 AVENUE DE CLICHY - 75117", "stop_name": "BROCHANT - CARDINET"}, "geometry": {"type": "Point", "coordinates": [2.3180645348981526, 48.89185755313465]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fafefd436a9393137f6be2ee1a9c7253ff01155b", "fields": {"departement": "75", "stop_lat": 48.88941360841949, "code_postal": "75117", "stop_lon": 2.322004140832718, "coord": [48.88941360841949, 2.322004140832718], "stop_id": 5158069, "stop_desc": "103 AVENUE DE CLICHY - 75117", "stop_name": "LEGENDRE"}, "geometry": {"type": "Point", "coordinates": [2.322004140832718, 48.88941360841949]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9df18677c0ab681c048ae3358c45fd20f7619aa2", "fields": {"departement": "92", "stop_lat": 48.80929837171818, "code_postal": "92007", "stop_lon": 2.3167206749822755, "coord": [48.80929837171818, 2.3167206749822755], "stop_id": 5161417, "stop_desc": "FACE 262 RUE HENRI RAVERA - 92007", "stop_name": "CIMETIERE PARISIEN"}, "geometry": {"type": "Point", "coordinates": [2.3167206749822755, 48.80929837171818]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f6f3faede07971e3d22555238159766164013600", "fields": {"departement": "92", "stop_lat": 48.800461761052816, "code_postal": "92007", "stop_lon": 2.3089418947839695, "coord": [48.800461761052816, 2.3089418947839695], "stop_id": 5161423, "stop_desc": "FACE 117 AVENUE HENRI RAVERA - 92007", "stop_name": "RUE DE L'EGALITE"}, "geometry": {"type": "Point", "coordinates": [2.3089418947839695, 48.800461761052816]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f110b7dbcd114493cfd7576584fb2f8ecae763a3", "fields": {"departement": "92", "stop_lat": 48.79869913208948, "code_postal": "92007", "stop_lon": 2.3049702210875753, "coord": [48.79869913208948, 2.3049702210875753], "stop_id": 5161425, "stop_desc": "54 AV HENRI RAVERA - 92007", "stop_name": "HOTEL DE VILLE DE BAGNEUX"}, "geometry": {"type": "Point", "coordinates": [2.3049702210875753, 48.79869913208948]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a1d9bae5c230c1874bae575ec697df9a2607197d", "fields": {"departement": "92", "stop_lat": 48.79731360245945, "code_postal": "92007", "stop_lon": 2.300168676057517, "coord": [48.79731360245945, 2.300168676057517], "stop_id": 5161426, "stop_desc": "10 AVENUE JEAN-BAPTISTE FORTIN - 92007", "stop_name": "RUE FROIDE"}, "geometry": {"type": "Point", "coordinates": [2.300168676057517, 48.79731360245945]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6f1344cfd64ca1ca43f62ecdb0234d1f1d2850ae", "fields": {"departement": "92", "stop_lat": 48.781789219898194, "code_postal": "92071", "stop_lon": 2.2935427228851637, "coord": [48.781789219898194, 2.2935427228851637], "stop_id": 5161438, "stop_desc": "18 RUE DE FONTENAY - 92071", "stop_name": "RUE DU LYCEE"}, "geometry": {"type": "Point", "coordinates": [2.2935427228851637, 48.781789219898194]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b8477c4efcc924a9047e6223806e2089ec5f1d10", "fields": {"departement": "92", "stop_lat": 48.77934390999618, "code_postal": "92071", "stop_lon": 2.291994398166143, "coord": [48.77934390999618, 2.291994398166143], "stop_id": 5161440, "stop_desc": "4 RUE DE FONTENAY - 92071", "stop_name": "FONTENAY - HOUDAN"}, "geometry": {"type": "Point", "coordinates": [2.291994398166143, 48.77934390999618]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4f93248f9b0b6123909a4dccd2018eddf7fa2da4", "fields": {"departement": "92", "stop_lat": 48.78036417660201, "code_postal": "92071", "stop_lon": 2.2816982237256243, "coord": [48.78036417660201, 2.2816982237256243], "stop_id": 5161446, "stop_desc": "5 AVENUE DE LA GARE - 92071", "stop_name": "ROBINSON RER"}, "geometry": {"type": "Point", "coordinates": [2.2816982237256243, 48.78036417660201]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "48438944fc5389210dc9b8146869132b4b4e8416", "fields": {"departement": "92", "stop_lat": 48.81551808357888, "code_postal": "92049", "stop_lon": 2.317834179108738, "coord": [48.81551808357888, 2.317834179108738], "stop_id": 5161449, "stop_desc": "77 AVENUE DE LA REPUBLIQUE - 92049", "stop_name": "VERDIER - REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.317834179108738, 48.81551808357888]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d4702bde7f4691f92f2a47abf5c1408296313189", "fields": {"departement": "92", "stop_lat": 48.777515228878336, "code_postal": "92060", "stop_lon": 2.2400871958767454, "coord": [48.777515228878336, 2.2400871958767454], "stop_id": 5161452, "stop_desc": "AVENUE DESCARTES - 92060", "stop_name": "REAUMUR"}, "geometry": {"type": "Point", "coordinates": [2.2400871958767454, 48.777515228878336]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d2b0719b409ee5fbad2cebbad03ffa9e844c6b34", "fields": {"departement": "92", "stop_lat": 48.7909013635518, "code_postal": "92032", "stop_lon": 2.2893181633221373, "coord": [48.7909013635518, 2.2893181633221373], "stop_id": 5161467, "stop_desc": "AVENUE JEANNE ET MAURICE DOLIVET - 92032", "stop_name": "THEATRE DES SOURCES"}, "geometry": {"type": "Point", "coordinates": [2.2893181633221373, 48.7909013635518]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "86aefdc8592e14134432d8b19cb52ddf30f08fa3", "fields": {"departement": "91", "stop_lat": 48.756594343963975, "code_postal": "91645", "stop_lon": 2.2711747722847595, "coord": [48.756594343963975, 2.2711747722847595], "stop_id": 5161489, "stop_desc": "AVENUE GEORGES POMPIDOU - 91645", "stop_name": "GROUPE SCOLAIRE SOPHIE BARAT"}, "geometry": {"type": "Point", "coordinates": [2.2711747722847595, 48.756594343963975]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "89e840a958c88b140a111be7ab42ed46da46a463", "fields": {"departement": "91", "stop_lat": 48.74241485917584, "code_postal": "91645", "stop_lon": 2.26257661775109, "coord": [48.74241485917584, 2.26257661775109], "stop_id": 5161498, "stop_desc": "19 BOULEVARD DU MARECHAL FOCH - 91645", "stop_name": "GRANDS CHENES"}, "geometry": {"type": "Point", "coordinates": [2.26257661775109, 48.74241485917584]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c5ebb7c75b43cbf56d46b0b2a7a60481e60d7dff", "fields": {"departement": "91", "stop_lat": 48.74118271418382, "code_postal": "91312", "stop_lon": 2.2269593414718485, "coord": [48.74118271418382, 2.2269593414718485], "stop_id": 5161513, "stop_desc": "5-7 RUE AMBROIZE CROIZAT - 91312", "stop_name": "MAIRIE D'IGNY"}, "geometry": {"type": "Point", "coordinates": [2.2269593414718485, 48.74118271418382]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "be9c189244ade57613fce31eec46bee6f8da8807", "fields": {"departement": "92", "stop_lat": 48.79794970412889, "code_postal": "92007", "stop_lon": 2.2941277270548075, "coord": [48.79794970412889, 2.2941277270548075], "stop_id": 5161520, "stop_desc": "FACE 11 RUE DE CHARTRES - 92007", "stop_name": "LIBERTE"}, "geometry": {"type": "Point", "coordinates": [2.2941277270548075, 48.79794970412889]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e519f1a35bc43497c19dd913ac259b6fe41cada7", "fields": {"departement": "94", "stop_lat": 48.80818557426659, "code_postal": "94003", "stop_lon": 2.3327778455238666, "coord": [48.80818557426659, 2.3327778455238666], "stop_id": 5161525, "stop_desc": "32-34 AVENUE LAPLACE - 94003", "stop_name": "LAPLACE RER"}, "geometry": {"type": "Point", "coordinates": [2.3327778455238666, 48.80818557426659]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "343b04179dc728c0a758c550aa31b44788cd5cab", "fields": {"departement": "94", "stop_lat": 48.80669368515831, "code_postal": "94003", "stop_lon": 2.336941718396992, "coord": [48.80669368515831, 2.336941718396992], "stop_id": 5161527, "stop_desc": "9-11 AVENUE PAUL DOUMER - 94003", "stop_name": "HOTEL DE VILLE D'ARCUEIL"}, "geometry": {"type": "Point", "coordinates": [2.336941718396992, 48.80669368515831]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "67f9c00cc629a8ff2cad92c1b161c85c22fda7fb", "fields": {"departement": "94", "stop_lat": 48.80320641374882, "code_postal": "94003", "stop_lon": 2.3381118633136007, "coord": [48.80320641374882, 2.3381118633136007], "stop_id": 5161528, "stop_desc": "10 AV PAUL VAILLANT COUTURIER - 94003", "stop_name": "MAISON DU GRAND CEDRE"}, "geometry": {"type": "Point", "coordinates": [2.3381118633136007, 48.80320641374882]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "258e4e05b2be2cd23e630602e5104ccde077fb7e", "fields": {"departement": "94", "stop_lat": 48.80295475303635, "code_postal": "94003", "stop_lon": 2.3383295555894, "coord": [48.80295475303635, 2.3383295555894], "stop_id": 5161529, "stop_desc": "AVENUE PAUL VAILLANT COUTURIER - 94003", "stop_name": "MAISON DU GRAND CEDRE"}, "geometry": {"type": "Point", "coordinates": [2.3383295555894, 48.80295475303635]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3dc077cf72f0117fc63ab53966150091d866a597", "fields": {"departement": "94", "stop_lat": 48.79067620604572, "code_postal": "94076", "stop_lon": 2.3536460658781135, "coord": [48.79067620604572, 2.3536460658781135], "stop_id": 5161538, "stop_desc": "RUE DE VERDUN - 94076", "stop_name": "VERDUN - HAUTES BRUYERES"}, "geometry": {"type": "Point", "coordinates": [2.3536460658781135, 48.79067620604572]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0cdfe05cf824b320f663f3aaec6e16c4aa8b8797", "fields": {"departement": "94", "stop_lat": 48.78763810455098, "code_postal": "94076", "stop_lon": 2.354937298346551, "coord": [48.78763810455098, 2.354937298346551], "stop_id": 5161541, "stop_desc": "FACE 125 AVENUE DE LA REPUBLIQUE - 94076", "stop_name": "VERDUN - REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.354937298346551, 48.78763810455098]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "111bccac37acf02507cbd2435a6d2265d5f9ebca", "fields": {"departement": "94", "stop_lat": 48.78834768470263, "code_postal": "94076", "stop_lon": 2.357834808835799, "coord": [48.78834768470263, 2.357834808835799], "stop_id": 5161543, "stop_desc": "54 AVENUE DE LA REPUBLIQUE - 94076", "stop_name": "HOPITAL PAUL GUIRAUD"}, "geometry": {"type": "Point", "coordinates": [2.357834808835799, 48.78834768470263]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "98f3ae670716e7479eaee4408d94077abc0a83e0", "fields": {"departement": "94", "stop_lat": 48.788418735281006, "code_postal": "94076", "stop_lon": 2.362282762940594, "coord": [48.788418735281006, 2.362282762940594], "stop_id": 5161544, "stop_desc": "39-41 AVENUE DE LA REPUBLIQUE - 94076", "stop_name": "AUGUSTE DELAUNE"}, "geometry": {"type": "Point", "coordinates": [2.362282762940594, 48.788418735281006]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b4d2ef67ccc54595f2875fa98d8c8b3b3981e0ba", "fields": {"departement": "75", "stop_lat": 48.82252946284516, "code_postal": "75114", "stop_lon": 2.325154359598891, "coord": [48.82252946284516, 2.325154359598891], "stop_id": 5221739, "stop_desc": "4 PLACE DU 25 AOUT 1944 - 75114", "stop_name": "PORTE D'ORLEANS"}, "geometry": {"type": "Point", "coordinates": [2.325154359598891, 48.82252946284516]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d2badbadf26d30831b25d661c64ea3c67ea11d82", "fields": {"departement": "75", "stop_lat": 48.8237688886814, "code_postal": "75114", "stop_lon": 2.3184299973037343, "coord": [48.8237688886814, 2.3184299973037343], "stop_id": 5221741, "stop_desc": "AVENUE ERNEST REYER - 75114", "stop_name": "JEAN MOULIN"}, "geometry": {"type": "Point", "coordinates": [2.3184299973037343, 48.8237688886814]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4208cca88db3023e078b7803793ee2eb08a17826", "fields": {"departement": "92", "stop_lat": 48.81354611827791, "code_postal": "92046", "stop_lon": 2.301953441925509, "coord": [48.81354611827791, 2.301953441925509], "stop_id": 5221747, "stop_desc": "192 AVENUE PIERRE BROSSOLETTE - 92046", "stop_name": "ETIENNE DOLET"}, "geometry": {"type": "Point", "coordinates": [2.301953441925509, 48.81354611827791]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "95339c5a8b1c741b18822393c4c260c997ba3b6a", "fields": {"departement": "92", "stop_lat": 48.785719632003165, "code_postal": "92032", "stop_lon": 2.278836177074233, "coord": [48.785719632003165, 2.278836177074233], "stop_id": 5221771, "stop_desc": "46 AVENUE RAYMOND CROLAND - 92032", "stop_name": "PASTEUR"}, "geometry": {"type": "Point", "coordinates": [2.278836177074233, 48.785719632003165]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b949b93e2a347a217d5670bb4747427be9eb6196", "fields": {"departement": "92", "stop_lat": 48.78340985585742, "code_postal": "92060", "stop_lon": 2.2790971921326983, "coord": [48.78340985585742, 2.2790971921326983], "stop_id": 5221772, "stop_desc": "164 AVENUE DE LA RESISTANCE - 92060", "stop_name": "EDMOND ABOUT"}, "geometry": {"type": "Point", "coordinates": [2.2790971921326983, 48.78340985585742]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e4f7973395c3083ebf29aad88e0bab8cb08a0258", "fields": {"departement": "92", "stop_lat": 48.78365354917881, "code_postal": "92032", "stop_lon": 2.2812186713823306, "coord": [48.78365354917881, 2.2812186713823306], "stop_id": 5221775, "stop_desc": "181 AVENUE DE LA RESISTANCE - 92032", "stop_name": "CARREFOUR DES MOUILLEBOEUFS"}, "geometry": {"type": "Point", "coordinates": [2.2812186713823306, 48.78365354917881]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "73594532edd7c7c6fda6ced8304a9388fa38ad72", "fields": {"departement": "92", "stop_lat": 48.77245154539877, "code_postal": "92019", "stop_lon": 2.2752612128272904, "coord": [48.77245154539877, 2.2752612128272904], "stop_id": 5221779, "stop_desc": "72 AVENUE ROGER SALENGRO - 92019", "stop_name": "MARC SANGNIER"}, "geometry": {"type": "Point", "coordinates": [2.2752612128272904, 48.77245154539877]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "86fc692a588844b8c7e9f84f42c0f43ca7a2fcd3", "fields": {"departement": "92", "stop_lat": 48.76784850968755, "code_postal": "92019", "stop_lon": 2.273091210688663, "coord": [48.76784850968755, 2.273091210688663], "stop_id": 5221784, "stop_desc": "FACE 104 AVENUE ROGER SALENGRO - 92019", "stop_name": "DOCTEUR LE SAVOUREUX"}, "geometry": {"type": "Point", "coordinates": [2.273091210688663, 48.76784850968755]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c1132dc30626522b22f407acf62bc4b0d84d5c40", "fields": {"departement": "92", "stop_lat": 48.813375447567154, "code_postal": "92049", "stop_lon": 2.302280168230667, "coord": [48.813375447567154, 2.302280168230667], "stop_id": 5221795, "stop_desc": "189 AVENUE PIERRE BROSSOLETTE - 92049", "stop_name": "ETIENNE DOLET"}, "geometry": {"type": "Point", "coordinates": [2.302280168230667, 48.813375447567154]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9049af437c3ca2c4ac3b76ad68cbf5bd02cae22c", "fields": {"departement": "92", "stop_lat": 48.818086708432794, "code_postal": "92049", "stop_lon": 2.308605641659359, "coord": [48.818086708432794, 2.308605641659359], "stop_id": 5221797, "stop_desc": "105 AV PIERRE BROSSOLETTE - 92049", "stop_name": "12 FEVRIER 1934"}, "geometry": {"type": "Point", "coordinates": [2.308605641659359, 48.818086708432794]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "947bf1991c138ca51f9c9c61fc5ec7a4943e8235", "fields": {"departement": "94", "stop_lat": 48.81665110081543, "code_postal": "94037", "stop_lon": 2.352837692438503, "coord": [48.81665110081543, 2.352837692438503], "stop_id": 5221804, "stop_desc": "FACE 7 RUE CHARLES FREROT - 94037", "stop_name": "VERDUN - VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.352837692438503, 48.81665110081543]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b963d845e49a840d24c85dcf65f4c78c90f947a8", "fields": {"departement": "94", "stop_lat": 48.805812872889824, "code_postal": "94003", "stop_lon": 2.3386833910766978, "coord": [48.805812872889824, 2.3386833910766978], "stop_id": 5221809, "stop_desc": "35 AV FRANCOIS VINCENT RASPAIL - 94003", "stop_name": "PAUL DOUMER"}, "geometry": {"type": "Point", "coordinates": [2.3386833910766978, 48.805812872889824]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "476c47270b60da9d2c2f2095ccfb97b722defc40", "fields": {"departement": "94", "stop_lat": 48.78607541164516, "code_postal": "94016", "stop_lon": 2.3322084829326877, "coord": [48.78607541164516, 2.3322084829326877], "stop_id": 5221815, "stop_desc": "RUE MARC SANGNIER - 94016", "stop_name": "CARREFOUR DES POULETS"}, "geometry": {"type": "Point", "coordinates": [2.3322084829326877, 48.78607541164516]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b694f8d47592766d440abf5f9c6b5d841003a827", "fields": {"departement": "91", "stop_lat": 48.69524149849297, "code_postal": "91326", "stop_lon": 2.3799163125470466, "coord": [48.69524149849297, 2.3799163125470466], "stop_id": 5221902, "stop_desc": "FACE 60 AVENUE DU 18 AVRIL 1944 - 91326", "stop_name": "LYCEE JEAN MONNET"}, "geometry": {"type": "Point", "coordinates": [2.3799163125470466, 48.69524149849297]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "78b8800020506f4f51a42fc3f83c7744c1054c9c", "fields": {"departement": "77", "stop_lat": 48.839094475647336, "code_postal": "77468", "stop_lon": 2.6576964831372134, "coord": [48.839094475647336, 2.6576964831372134], "stop_id": 5231529, "stop_desc": "AVENUE JEAN MOULIN - 77468", "stop_name": "CITES UNIES"}, "geometry": {"type": "Point", "coordinates": [2.6576964831372134, 48.839094475647336]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "312e08fa2f28836ed18cbed20bba6a519a23e012", "fields": {"departement": "77", "stop_lat": 48.85010804193541, "code_postal": "77468", "stop_lon": 2.646066225456977, "coord": [48.85010804193541, 2.646066225456977], "stop_id": 5231536, "stop_desc": "82 RUE DE PARIS - 77468", "stop_name": "LES TILLEULS"}, "geometry": {"type": "Point", "coordinates": [2.646066225456977, 48.85010804193541]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d4697cec92342d0a92b69dfc3d04d331efb37bbe", "fields": {"departement": "77", "stop_lat": 48.84983959613489, "code_postal": "77468", "stop_lon": 2.6385881100782096, "coord": [48.84983959613489, 2.6385881100782096], "stop_id": 5231538, "stop_desc": "9 COURS DE L'ARCHE GUEDON - 77468", "stop_name": "LA MOGOTTE"}, "geometry": {"type": "Point", "coordinates": [2.6385881100782096, 48.84983959613489]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1e000ae7961bbf46b568d1435432e0602995d9d7", "fields": {"departement": "77", "stop_lat": 48.85029228306208, "code_postal": "77468", "stop_lon": 2.63368806437434, "coord": [48.85029228306208, 2.63368806437434], "stop_id": 5231539, "stop_desc": "0 COURS DE L'ARCHE GUEDON - 77468", "stop_name": "CITE SCOLAIRE"}, "geometry": {"type": "Point", "coordinates": [2.63368806437434, 48.85029228306208]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "10da122de98db6a15be72bb0a20ff97a9ee7d3ac", "fields": {"departement": "77", "stop_lat": 48.85239050434027, "code_postal": "77083", "stop_lon": 2.601381973860583, "coord": [48.85239050434027, 2.601381973860583], "stop_id": 5231544, "stop_desc": "FACE 8-6 RUE DE PARIS - 77083", "stop_name": "MAIRIE DE CHAMPS"}, "geometry": {"type": "Point", "coordinates": [2.601381973860583, 48.85239050434027]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1a9a91b91100f2125a699337368ddbdc38358e2b", "fields": {"departement": "93", "stop_lat": 48.853105174374925, "code_postal": "93051", "stop_lon": 2.5734933846867474, "coord": [48.853105174374925, 2.5734933846867474], "stop_id": 5231551, "stop_desc": "FACE98/100 ROUTE DE GOURNAY - 93051", "stop_name": "LES PREVOYANTS"}, "geometry": {"type": "Point", "coordinates": [2.5734933846867474, 48.853105174374925]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dcf42c5bacb696979f1f65f5e4f86ab0037e13fb", "fields": {"departement": "93", "stop_lat": 48.84618061310176, "code_postal": "93051", "stop_lon": 2.5519599418394168, "coord": [48.84618061310176, 2.5519599418394168], "stop_id": 5231555, "stop_desc": "17 RUE DE LA REPUBLIQUE - 93051", "stop_name": "ESPACE MICHEL SIMON"}, "geometry": {"type": "Point", "coordinates": [2.5519599418394168, 48.84618061310176]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "05b943080dab1f8753f8e09f92e489cf4b2814e2", "fields": {"departement": "94", "stop_lat": 48.85253432483068, "code_postal": "94033", "stop_lon": 2.4877859452410003, "coord": [48.85253432483068, 2.4877859452410003], "stop_id": 5231570, "stop_desc": "AVENUE LOUISON BOBET - 94033", "stop_name": "VAL DE FONTENAY RER - LOUISON BOBET"}, "geometry": {"type": "Point", "coordinates": [2.4877859452410003, 48.85253432483068]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9dc2f3acf7660cbc141a05cdc2d9b8a028bba0aa", "fields": {"departement": "93", "stop_lat": 48.869745513479096, "code_postal": "93048", "stop_lon": 2.4644033634110007, "coord": [48.869745513479096, 2.4644033634110007], "stop_id": 5231582, "stop_desc": "259 RUE DE ROSNY - 93048", "stop_name": "ACACIA"}, "geometry": {"type": "Point", "coordinates": [2.4644033634110007, 48.869745513479096]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8a14ca88cf07a25b160cd9b3fbe4b17252fdf26d", "fields": {"departement": "93", "stop_lat": 48.86179640590272, "code_postal": "93048", "stop_lon": 2.4409821703623398, "coord": [48.86179640590272, 2.4409821703623398], "stop_id": 5231588, "stop_desc": "2 BOULEVARD ROUGET DE LISLE - 93048", "stop_name": "MAIRIE DE MONTREUIL - ROUGET DE LISLE"}, "geometry": {"type": "Point", "coordinates": [2.4409821703623398, 48.86179640590272]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ab2229bcac53018ddbcad42f7f9eff2e7af5dbfb", "fields": {"departement": "93", "stop_lat": 48.85962371632797, "code_postal": "93048", "stop_lon": 2.4383489897739583, "coord": [48.85962371632797, 2.4383489897739583], "stop_id": 5231589, "stop_desc": "38 BOULEVARD ROUGET DE LISLE - 93048", "stop_name": "VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.4383489897739583, 48.85962371632797]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bfdca38b4eea8010fbdb9cf6c535aa69d02a009a", "fields": {"departement": "93", "stop_lat": 48.859842396882804, "code_postal": "93006", "stop_lon": 2.4230939388017254, "coord": [48.859842396882804, 2.4230939388017254], "stop_id": 5231593, "stop_desc": "115 AVENUE DE LA REPUBLIQUE - 93006", "stop_name": "FRATERNITE"}, "geometry": {"type": "Point", "coordinates": [2.4230939388017254, 48.859842396882804]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "61f9b6f798ee676764f9eedf5fe3bb21b42c2518", "fields": {"departement": "93", "stop_lat": 48.86062649827987, "code_postal": "93006", "stop_lon": 2.419989610839223, "coord": [48.86062649827987, 2.419989610839223], "stop_id": 5231594, "stop_desc": "81 AVENUE DE LA REPUBLIQUE - 93006", "stop_name": "REPUBLIQUE - ROBESPIERRE"}, "geometry": {"type": "Point", "coordinates": [2.419989610839223, 48.86062649827987]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "067d251fb7ae3458b62399da24e33fbe172aba26", "fields": {"departement": "75", "stop_lat": 48.86491653801377, "code_postal": "75120", "stop_lon": 2.4003122453315737, "coord": [48.86491653801377, 2.4003122453315737], "stop_id": 5231598, "stop_desc": "FACE 14 RUE BELGRAND - 75120", "stop_name": "HOPITAL TENON"}, "geometry": {"type": "Point", "coordinates": [2.4003122453315737, 48.86491653801377]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1e8b695b55da83d86a1cbf250f4d666425ef2ef1", "fields": {"departement": "75", "stop_lat": 48.86518711129566, "code_postal": "75120", "stop_lon": 2.398487178082869, "coord": [48.86518711129566, 2.398487178082869], "stop_id": 5231599, "stop_desc": "PLACE GAMBETTA - 75120", "stop_name": "GAMBETTA"}, "geometry": {"type": "Point", "coordinates": [2.398487178082869, 48.86518711129566]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c652092695f486e2080c7ebcf3afff6bbff086c5", "fields": {"departement": "75", "stop_lat": 48.86170601135141, "code_postal": "75111", "stop_lon": 2.3854064805301256, "coord": [48.86170601135141, 2.3854064805301256], "stop_id": 5231603, "stop_desc": "69 RUE DE LA FOLIE REGNAULT - 75111", "stop_name": "FOLIE REGNAULT - CHEMIN VERT"}, "geometry": {"type": "Point", "coordinates": [2.3854064805301256, 48.86170601135141]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "945132e685d109e09d0cd20fea24368180f76e55", "fields": {"departement": "75", "stop_lat": 48.858938104417646, "code_postal": "75111", "stop_lon": 2.384872702577642, "coord": [48.858938104417646, 2.384872702577642], "stop_id": 5231605, "stop_desc": "FACE 166 RUE DE LA ROQUETTE - 75111", "stop_name": "SAINT MAUR - SERVAN"}, "geometry": {"type": "Point", "coordinates": [2.384872702577642, 48.858938104417646]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a04a7164653d56f06937278c3fea5bbfb274b6ca", "fields": {"departement": "75", "stop_lat": 48.845677278703754, "code_postal": "75112", "stop_lon": 2.3712296777810264, "coord": [48.845677278703754, 2.3712296777810264], "stop_id": 5231611, "stop_desc": "15-17 BOULEVARD DIDEROT - 75112", "stop_name": "GARE DE LYON - DIDEROT"}, "geometry": {"type": "Point", "coordinates": [2.3712296777810264, 48.845677278703754]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "65d6a6988b758385cdb466453b4dd9c974e17200", "fields": {"departement": "75", "stop_lat": 48.84563186778721, "code_postal": "75112", "stop_lon": 2.3728500974777273, "coord": [48.84563186778721, 2.3728500974777273], "stop_id": 5231613, "stop_desc": "FACE 21 BOULEVARD DIDEROT - 75112", "stop_name": "GARE DE LYON - DIDEROT"}, "geometry": {"type": "Point", "coordinates": [2.3728500974777273, 48.84563186778721]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5405f6f037972f2032e790a569f89ff068d133fe", "fields": {"departement": "75", "stop_lat": 48.85525560358834, "code_postal": "75111", "stop_lon": 2.3785906169257642, "coord": [48.85525560358834, 2.3785906169257642], "stop_id": 5231617, "stop_desc": "150 AVENUE LEDRU ROLLIN - 75111", "stop_name": "BASFROI"}, "geometry": {"type": "Point", "coordinates": [2.3785906169257642, 48.85525560358834]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ba32ac04d441eecc304254758d3a6a3c97eadd37", "fields": {"departement": "75", "stop_lat": 48.85875832342004, "code_postal": "75111", "stop_lon": 2.384954261522689, "coord": [48.85875832342004, 2.384954261522689], "stop_id": 5231619, "stop_desc": "166 RUE DE LA ROQUETTE - 75111", "stop_name": "SAINT-MAUR - SERVAN"}, "geometry": {"type": "Point", "coordinates": [2.384954261522689, 48.85875832342004]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1b628c137c3d8e54daadfbbd57fdcf360ec8bc78", "fields": {"departement": "93", "stop_lat": 48.859410350200605, "code_postal": "93048", "stop_lon": 2.423992199575018, "coord": [48.859410350200605, 2.423992199575018], "stop_id": 5231630, "stop_desc": "165 BOULEVARD CHANZY - 93048", "stop_name": "FRATERNITE"}, "geometry": {"type": "Point", "coordinates": [2.423992199575018, 48.859410350200605]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d83d0d03844bcecd324e5631d47f70fb5ffd84f2", "fields": {"departement": "93", "stop_lat": 48.858535536270956, "code_postal": "93048", "stop_lon": 2.428063301132043, "coord": [48.858535536270956, 2.428063301132043], "stop_id": 5231631, "stop_desc": "105 BOULEVARD CHANZY - 93048", "stop_name": "SORINS"}, "geometry": {"type": "Point", "coordinates": [2.428063301132043, 48.858535536270956]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ea927f4d6140d93024f8724db380b209c76c32d3", "fields": {"departement": "93", "stop_lat": 48.85838831333966, "code_postal": "93048", "stop_lon": 2.432448870052002, "coord": [48.85838831333966, 2.432448870052002], "stop_id": 5231632, "stop_desc": "33 BOULEVARD CHANZY - 93048", "stop_name": "MARCHE DE MONTREUIL"}, "geometry": {"type": "Point", "coordinates": [2.432448870052002, 48.85838831333966]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ab97135dd8f129b6181493ad6d89a6e7c85c7840", "fields": {"departement": "93", "stop_lat": 48.8603866337713, "code_postal": "93048", "stop_lon": 2.4395355132639738, "coord": [48.8603866337713, 2.4395355132639738], "stop_id": 5231634, "stop_desc": "19 BOULEVARD ROUGET DE LISLE - 93048", "stop_name": "VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.4395355132639738, 48.8603866337713]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6ebc05a6de551e0ef7ce7c22cc002c52cb3850e6", "fields": {"departement": "93", "stop_lat": 48.86441887778646, "code_postal": "93048", "stop_lon": 2.45275696892194, "coord": [48.86441887778646, 2.45275696892194], "stop_id": 5231637, "stop_desc": "128-130 RUE DE ROSNY - 93048", "stop_name": "DANTON"}, "geometry": {"type": "Point", "coordinates": [2.45275696892194, 48.86441887778646]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6465a5978c148d9363c1c8d7729188c90b454650", "fields": {"departement": "93", "stop_lat": 48.868849201159506, "code_postal": "93048", "stop_lon": 2.4621124450708733, "coord": [48.868849201159506, 2.4621124450708733], "stop_id": 5231639, "stop_desc": "222 RUE DE ROSNY - 93048", "stop_name": "NOUVELLE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.4621124450708733, 48.868849201159506]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e4f527bce9482144145195a13d18bd4955ff4bba", "fields": {"departement": "93", "stop_lat": 48.86284092235296, "code_postal": "93048", "stop_lon": 2.482149209358743, "coord": [48.86284092235296, 2.482149209358743], "stop_id": 5231646, "stop_desc": "289 BIS AVENUE VICTOR HUGO - 93048", "stop_name": "JULES GUESDE"}, "geometry": {"type": "Point", "coordinates": [2.482149209358743, 48.86284092235296]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "78e437c6a8854dd6b81bd28d9b6407da21c5ea40", "fields": {"departement": "93", "stop_lat": 48.860568468376464, "code_postal": "93048", "stop_lon": 2.481025924558556, "coord": [48.860568468376464, 2.481025924558556], "stop_id": 5231647, "stop_desc": "261 AVENUE VICTOR HUGO - 93048", "stop_name": "CIMETIERE DE VINCENNES"}, "geometry": {"type": "Point", "coordinates": [2.481025924558556, 48.860568468376464]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "110faceaf1491607e3cc588ba990bb7fafc677f4", "fields": {"departement": "94", "stop_lat": 48.857341200605816, "code_postal": "94033", "stop_lon": 2.4816707533851594, "coord": [48.857341200605816, 2.4816707533851594], "stop_id": 5231648, "stop_desc": "11 AV CHARLES GARCIA - 94033", "stop_name": "LA FONTAINE"}, "geometry": {"type": "Point", "coordinates": [2.4816707533851594, 48.857341200605816]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d197334f04daf052811814f816e1719785020499", "fields": {"departement": "94", "stop_lat": 48.85623563273947, "code_postal": "94033", "stop_lon": 2.4817630151132914, "coord": [48.85623563273947, 2.4817630151132914], "stop_id": 5231649, "stop_desc": "FACE 18 AV CHARLES GARCIA - 94033", "stop_name": "JEAN MACE"}, "geometry": {"type": "Point", "coordinates": [2.4817630151132914, 48.85623563273947]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "476031cf5f52ed410be564fa1190736ab60dd7e2", "fields": {"departement": "94", "stop_lat": 48.85522387800214, "code_postal": "94033", "stop_lon": 2.4859550831419543, "coord": [48.85522387800214, 2.4859550831419543], "stop_id": 5231650, "stop_desc": "10-12 AV DES OLYMPIADES - 94033", "stop_name": "PABLO PICASSO"}, "geometry": {"type": "Point", "coordinates": [2.4859550831419543, 48.85522387800214]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fbebe445f3b28e1ed9c8ac759b036fb6c18df42e", "fields": {"departement": "94", "stop_lat": 48.853415042601995, "code_postal": "94033", "stop_lon": 2.4878293591759193, "coord": [48.853415042601995, 2.4878293591759193], "stop_id": 5231651, "stop_desc": "10-12 AV DU VAL DE FONTENAY - 94033", "stop_name": "VAL DE FONTENAY RER"}, "geometry": {"type": "Point", "coordinates": [2.4878293591759193, 48.853415042601995]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6af20bba8ed071286bcf269db425b06c282a4cb2", "fields": {"departement": "94", "stop_lat": 48.8507957926177, "code_postal": "94058", "stop_lon": 2.504232174035045, "coord": [48.8507957926177, 2.504232174035045], "stop_id": 5231654, "stop_desc": "106 BOULEVARD ALSACE-LORRAINE - 94058", "stop_name": "JULES FERRY"}, "geometry": {"type": "Point", "coordinates": [2.504232174035045, 48.8507957926177]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1ea3609380e0c4b9163cc03d7a38415c01c46b6a", "fields": {"departement": "93", "stop_lat": 48.853437480755204, "code_postal": "93050", "stop_lon": 2.5170155851458653, "coord": [48.853437480755204, 2.5170155851458653], "stop_id": 5231657, "stop_desc": "32 BOULEVARD GALLIENI - 93050", "stop_name": "CENTRE BUS"}, "geometry": {"type": "Point", "coordinates": [2.5170155851458653, 48.853437480755204]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "43cdc50c4335e5fa969e95bb448fcdca1eacaf9b", "fields": {"departement": "93", "stop_lat": 48.84878486098396, "code_postal": "93051", "stop_lon": 2.5531418777728834, "coord": [48.84878486098396, 2.5531418777728834], "stop_id": 5231667, "stop_desc": "FACE 7 AVENUE EMILE COSSONNEAU - 93051", "stop_name": "MAIRIE DE NOISY-LE-GRAND"}, "geometry": {"type": "Point", "coordinates": [2.5531418777728834, 48.84878486098396]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "58ca4e5a3d5aa30bbb6766ee464a9d56fa73d892", "fields": {"departement": "93", "stop_lat": 48.848900736886335, "code_postal": "93051", "stop_lon": 2.5585623765321235, "coord": [48.848900736886335, 2.5585623765321235], "stop_id": 5231668, "stop_desc": "50 AVENUE EMILE COSSONNEAU - 93051", "stop_name": "CARREFOUR DE MALNOUE"}, "geometry": {"type": "Point", "coordinates": [2.5585623765321235, 48.848900736886335]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b19f1e74dbe8de4801f32a6e4aacab8b14d7842b", "fields": {"departement": "93", "stop_lat": 48.87709855532781, "code_postal": "93048", "stop_lon": 2.4630724725939266, "coord": [48.87709855532781, 2.4630724725939266], "stop_id": 4117622, "stop_desc": "186 BOULEVARD DE LA BOISSIERE - 93048", "stop_name": "SALVADOR ALLENDE"}, "geometry": {"type": "Point", "coordinates": [2.4630724725939266, 48.87709855532781]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b4667aec53ee0eb81c3909a44c6a946cf20b9f01", "fields": {"departement": "93", "stop_lat": 48.87675165415139, "code_postal": "93064", "stop_lon": 2.468072157260162, "coord": [48.87675165415139, 2.468072157260162], "stop_id": 4117624, "stop_desc": "4 RUE ETIENNE DOLET - 93064", "stop_name": "ETIENNE DOLET"}, "geometry": {"type": "Point", "coordinates": [2.468072157260162, 48.87675165415139]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2fb4c9b8028d7b02ddbaa0473d4e5bec92ca71b0", "fields": {"departement": "93", "stop_lat": 48.8790638869726, "code_postal": "93064", "stop_lon": 2.4657751945393724, "coord": [48.8790638869726, 2.4657751945393724], "stop_id": 4117625, "stop_desc": "FACE 74-76 RUELLE DE LA BOISSIERE - 93064", "stop_name": "RUELLE BOISSIERE"}, "geometry": {"type": "Point", "coordinates": [2.4657751945393724, 48.8790638869726]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9fe4ff4bf00b6cc323a14471d6d23aba13cffb08", "fields": {"departement": "93", "stop_lat": 48.890978386407994, "code_postal": "93053", "stop_lon": 2.4596852500473565, "coord": [48.890978386407994, 2.4596852500473565], "stop_id": 4117642, "stop_desc": "FACE 43TER BOULEVARD MICHELET - 93053", "stop_name": "MARCEAU"}, "geometry": {"type": "Point", "coordinates": [2.4596852500473565, 48.890978386407994]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "90f04b9549fa9a2f104eefcd03e83378e47aa848", "fields": {"departement": "93", "stop_lat": 48.89358734948423, "code_postal": "93053", "stop_lon": 2.4570472249714883, "coord": [48.89358734948423, 2.4570472249714883], "stop_id": 4117646, "stop_desc": "63 RUE JEAN JAURES - 93053", "stop_name": "SAINT-JEAN"}, "geometry": {"type": "Point", "coordinates": [2.4570472249714883, 48.89358734948423]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7b15da5dee39a300b52295e7d9d7c26e8a790e08", "fields": {"departement": "93", "stop_lat": 48.89145097999565, "code_postal": "93053", "stop_lon": 2.454452724830586, "coord": [48.89145097999565, 2.454452724830586], "stop_id": 4117647, "stop_desc": "RUE JEAN JAURES - 93053", "stop_name": "MARCHE DES DECOUVERTES"}, "geometry": {"type": "Point", "coordinates": [2.454452724830586, 48.89145097999565]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e0a7e681dc50fa325cd265a74b3fea6e4663406f", "fields": {"departement": "93", "stop_lat": 48.87840136909168, "code_postal": "93053", "stop_lon": 2.454600359100925, "coord": [48.87840136909168, 2.454600359100925], "stop_id": 4117651, "stop_desc": "77 BOULEVARD DE LA BOISSIERE - 93053", "stop_name": "HOPITAL ANDRE GREGOIRE"}, "geometry": {"type": "Point", "coordinates": [2.454600359100925, 48.87840136909168]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e0a1fad98606c622e2ef008e86041c6c2e66de3c", "fields": {"departement": "93", "stop_lat": 48.91280193544806, "code_postal": "93008", "stop_lon": 2.437375605363845, "coord": [48.91280193544806, 2.437375605363845], "stop_id": 4117662, "stop_desc": "AVENUE PAUL VAILLANT COUTURIER - 93008", "stop_name": "ESCADRILLE NORMANDIE NIEMEN - PAUL VAILLANT COUTURIER-TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.437375605363845, 48.91280193544806]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "042bef70745a36cc48f2b155d18535ed960668b2", "fields": {"departement": "93", "stop_lat": 48.91701779259019, "code_postal": "93029", "stop_lon": 2.4362383300492274, "coord": [48.91701779259019, 2.4362383300492274], "stop_id": 4117666, "stop_desc": "89 RUE ROGER SALENGRO - 93029", "stop_name": "CHAVEZ - NIEUPORT"}, "geometry": {"type": "Point", "coordinates": [2.4362383300492274, 48.91701779259019]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "20ef62056ada9d62ab96e9a68475d77b6c2a5602", "fields": {"departement": "93", "stop_lat": 48.92090545862487, "code_postal": "93029", "stop_lon": 2.4405959689506393, "coord": [48.92090545862487, 2.4405959689506393], "stop_id": 4117670, "stop_desc": "11 RUE ROGER SALENGRO - 93029", "stop_name": "GEORGES DUCERF"}, "geometry": {"type": "Point", "coordinates": [2.4405959689506393, 48.92090545862487]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "863c0e5add8ece65a427903b05458b248506607c", "fields": {"departement": "93", "stop_lat": 48.92706117602465, "code_postal": "93029", "stop_lon": 2.4508508729298515, "coord": [48.92706117602465, 2.4508508729298515], "stop_id": 4117679, "stop_desc": "FACE 76 RUE ANATOLE FRANCE - 93029", "stop_name": "HENRI ROUANET"}, "geometry": {"type": "Point", "coordinates": [2.4508508729298515, 48.92706117602465]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "56c3884de2b48793066ab397d8be60f30733cc7e", "fields": {"departement": "93", "stop_lat": 48.93875222326211, "code_postal": "93007", "stop_lon": 2.460780414235105, "coord": [48.93875222326211, 2.460780414235105], "stop_id": 4117689, "stop_desc": "FACE 42 AVENUE HENRI BARBUSSE - 93007", "stop_name": "HOTEL DE VILLE DU BLANC-MESNIL"}, "geometry": {"type": "Point", "coordinates": [2.460780414235105, 48.93875222326211]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "465e36fdb61b63f186099da171b9372965496272", "fields": {"departement": "93", "stop_lat": 48.940233053832436, "code_postal": "93007", "stop_lon": 2.4626938434728123, "coord": [48.940233053832436, 2.4626938434728123], "stop_id": 4117690, "stop_desc": "74-76 AVENUE HENRI BARBUSSE - 93007", "stop_name": "AUDRAN"}, "geometry": {"type": "Point", "coordinates": [2.4626938434728123, 48.940233053832436]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b47b9dca80255661621fe5f9574dc459d9cbb4b5", "fields": {"departement": "93", "stop_lat": 48.943609127934664, "code_postal": "93007", "stop_lon": 2.465485196660577, "coord": [48.943609127934664, 2.465485196660577], "stop_id": 4117692, "stop_desc": "FACE 3 AVENUE DE LA DIVISION LECLERC - 93007", "stop_name": "LIBERATION"}, "geometry": {"type": "Point", "coordinates": [2.465485196660577, 48.943609127934664]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8f25c3a8ef20940e1e86643f9199607b6a1c8764", "fields": {"departement": "93", "stop_lat": 48.94349249031491, "code_postal": "93007", "stop_lon": 2.4653075490783922, "coord": [48.94349249031491, 2.4653075490783922], "stop_id": 4117693, "stop_desc": "13 AVENUE DE LA DIVISION LECLERC - 93007", "stop_name": "LIBERATION"}, "geometry": {"type": "Point", "coordinates": [2.4653075490783922, 48.94349249031491]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dbf057207980019c29590cc206c43282afd66111", "fields": {"departement": "93", "stop_lat": 48.94680572307827, "code_postal": "93007", "stop_lon": 2.440470299669143, "coord": [48.94680572307827, 2.440470299669143], "stop_id": 4117703, "stop_desc": "42 RUE DES MARTYRS DE LA DEPORTATION - 93007", "stop_name": "LOUIS BLERIOT"}, "geometry": {"type": "Point", "coordinates": [2.440470299669143, 48.94680572307827]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "11910e8d18c9ce2ddbc30117a0201a43873bb0fc", "fields": {"departement": "93", "stop_lat": 48.91041782200938, "code_postal": "93046", "stop_lon": 2.510232536149553, "coord": [48.91041782200938, 2.510232536149553], "stop_id": 4118154, "stop_desc": "13 AVENUE ARISTIDE BRIAND - 93046", "stop_name": "VICTOR HUGO - JEAN MOULIN"}, "geometry": {"type": "Point", "coordinates": [2.510232536149553, 48.91041782200938]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "da27644f652b7d426524fe0db2f995b9b9c3f2fb", "fields": {"departement": "93", "stop_lat": 48.90695328855752, "code_postal": "93010", "stop_lon": 2.487003347246266, "coord": [48.90695328855752, 2.487003347246266], "stop_id": 4118157, "stop_desc": "177 AVENUE GALLIENI - 93010", "stop_name": "PASTEUR - HOPITAL JEAN VERDIER"}, "geometry": {"type": "Point", "coordinates": [2.487003347246266, 48.90695328855752]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "99f4bc5239be63b0253f9a9d7df2526c9350f715", "fields": {"departement": "93", "stop_lat": 48.906169876941505, "code_postal": "93010", "stop_lon": 2.4809479623042554, "coord": [48.906169876941505, 2.4809479623042554], "stop_id": 4118158, "stop_desc": "111 AVENUE GALLIENI - 93010", "stop_name": "AUGUSTE POLISSARD"}, "geometry": {"type": "Point", "coordinates": [2.4809479623042554, 48.906169876941505]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0bca980fc1769b2a28c8c86e530aaaa45bb0590b", "fields": {"departement": "93", "stop_lat": 48.9044195781789, "code_postal": "93010", "stop_lon": 2.4713593259826454, "coord": [48.9044195781789, 2.4713593259826454], "stop_id": 4118159, "stop_desc": "AVENUE DU GENERAL GALLIENI - 93010", "stop_name": "AVENUE DE ROSNY"}, "geometry": {"type": "Point", "coordinates": [2.4713593259826454, 48.9044195781789]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5dbd67d73f7ab62d5bcd18325ccdb57e3ab7dda9", "fields": {"departement": "93", "stop_lat": 48.91695910540304, "code_postal": "93010", "stop_lon": 2.484400525396555, "coord": [48.91695910540304, 2.484400525396555], "stop_id": 4118163, "stop_desc": "AV HENRI VARAGNAT - 93010", "stop_name": "RABELAIS"}, "geometry": {"type": "Point", "coordinates": [2.484400525396555, 48.91695910540304]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dc3737862256e82596933eb5dfda31ec10749a1f", "fields": {"departement": "93", "stop_lat": 48.91477031606463, "code_postal": "93057", "stop_lon": 2.4952890088316666, "coord": [48.91477031606463, 2.4952890088316666], "stop_id": 4118168, "stop_desc": "FACE 50 BOULEVARD DE PARIS - 93057", "stop_name": "LOUISE MICHEL"}, "geometry": {"type": "Point", "coordinates": [2.4952890088316666, 48.91477031606463]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "36c3a710b505795fb34bbe9daebe1da69522211d", "fields": {"departement": "94", "stop_lat": 48.75574884176963, "code_postal": "94034", "stop_lon": 2.321798676035864, "coord": [48.75574884176963, 2.321798676035864], "stop_id": 4124811, "stop_desc": "SQUARE DU 19 MARS 1962 - 94034", "stop_name": "MAIRIE DE FRESNES"}, "geometry": {"type": "Point", "coordinates": [2.321798676035864, 48.75574884176963]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8008a23bf8f313872198348c40f077e4044d9685", "fields": {"departement": "94", "stop_lat": 48.758436565941224, "code_postal": "94034", "stop_lon": 2.324027353751202, "coord": [48.758436565941224, 2.324027353751202], "stop_id": 4124812, "stop_desc": "40 RUE HENRI BARBUSSE - 94034", "stop_name": "EMILE ZOLA"}, "geometry": {"type": "Point", "coordinates": [2.324027353751202, 48.758436565941224]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c37efe873799c9e56ea2435dbf4301cb1e6f9d09", "fields": {"departement": "94", "stop_lat": 48.76106133960879, "code_postal": "94034", "stop_lon": 2.326405820962682, "coord": [48.76106133960879, 2.326405820962682], "stop_id": 4124813, "stop_desc": "FACE 39 RUE EMILE ZOLA - 94034", "stop_name": "CHARCOT - ZOLA"}, "geometry": {"type": "Point", "coordinates": [2.326405820962682, 48.76106133960879]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6cdd3cf954ba7492cdfac0770fc88682978a4909", "fields": {"departement": "94", "stop_lat": 48.77408540111115, "code_postal": "94038", "stop_lon": 2.3313121482244825, "coord": [48.77408540111115, 2.3313121482244825], "stop_id": 4124816, "stop_desc": "3 RUE DE CHALAIS - 94038", "stop_name": "LECLERC - CHALAIS"}, "geometry": {"type": "Point", "coordinates": [2.3313121482244825, 48.77408540111115]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b646341cf230485405d42718ea99a957280a380a", "fields": {"departement": "94", "stop_lat": 48.78607541164516, "code_postal": "94016", "stop_lon": 2.3322084829326877, "coord": [48.78607541164516, 2.3322084829326877], "stop_id": 4124820, "stop_desc": "RUE MARC SANGNIER - 94016", "stop_name": "CARREFOUR DES POULETS"}, "geometry": {"type": "Point", "coordinates": [2.3322084829326877, 48.78607541164516]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dc05058cb2da9b53e1365760afee4da57a66ab69", "fields": {"departement": "94", "stop_lat": 48.79403877145943, "code_postal": "94016", "stop_lon": 2.3342754705788455, "coord": [48.79403877145943, 2.3342754705788455], "stop_id": 4124823, "stop_desc": "9 RUE CAMILLE DESMOULINS - 94016", "stop_name": "MAIRIE DE CACHAN"}, "geometry": {"type": "Point", "coordinates": [2.3342754705788455, 48.79403877145943]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3a61ff93f53d0b17bff7a5953abc703b8207e319", "fields": {"departement": "94", "stop_lat": 48.797930487387106, "code_postal": "94016", "stop_lon": 2.333200475290441, "coord": [48.797930487387106, 2.333200475290441], "stop_id": 4124824, "stop_desc": "68 AVENUE COUSIN DE MERICOURT - 94016", "stop_name": "COUSIN DE MERICOURT"}, "geometry": {"type": "Point", "coordinates": [2.333200475290441, 48.797930487387106]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8f3d2a645a241f93d1716444b36451cbe80d09fa", "fields": {"departement": "94", "stop_lat": 48.81364075955538, "code_postal": "94037", "stop_lon": 2.3478423484763105, "coord": [48.81364075955538, 2.3478423484763105], "stop_id": 4124830, "stop_desc": "73 AVENUE RASPAIL - 94037", "stop_name": "REINE BLANCHE"}, "geometry": {"type": "Point", "coordinates": [2.3478423484763105, 48.81364075955538]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "30ae4a79b590e4452209a50f7a8de3674c97e134", "fields": {"departement": "92", "stop_lat": 48.91042239419866, "code_postal": "92050", "stop_lon": 2.219659234743806, "coord": [48.91042239419866, 2.219659234743806], "stop_id": 4130524, "stop_desc": "354 AVENUE DE LA REPUBLIQUE - 92050", "stop_name": "LES ORMES"}, "geometry": {"type": "Point", "coordinates": [2.219659234743806, 48.91042239419866]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dab5bcda70ae0e34543e46d3d5e922556a4896eb", "fields": {"departement": "93", "stop_lat": 48.92935800046463, "code_postal": "93007", "stop_lon": 2.4795528998155345, "coord": [48.92935800046463, 2.4795528998155345], "stop_id": 4146097, "stop_desc": "12 AVENUE PAUL VAILLANT COUTURIER - 93007", "stop_name": "ROND-POINT PIERRE SEMARD - PAUL VAILLANT-COUTURIER"}, "geometry": {"type": "Point", "coordinates": [2.4795528998155345, 48.92935800046463]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "80f4ec93ca08fa8d3170ed9ba5e6e1d1a7cd0454", "fields": {"departement": "93", "stop_lat": 48.911687882007875, "code_postal": "93010", "stop_lon": 2.4809905365254483, "coord": [48.911687882007875, 2.4809905365254483], "stop_id": 4146107, "stop_desc": "ROUTE D'AULNAY - 93010", "stop_name": "ROUTE D'AULNAY - JEAN MOULIN"}, "geometry": {"type": "Point", "coordinates": [2.4809905365254483, 48.911687882007875]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0567196519f01058c1b72feb1add8ebc33bf8ee1", "fields": {"departement": "75", "stop_lat": 48.86509918311279, "code_postal": "75120", "stop_lon": 2.4109242688351746, "coord": [48.86509918311279, 2.4109242688351746], "stop_id": 4146111, "stop_desc": "AVENUE DE LA PORTE DE BAGNOLET - 75120", "stop_name": "ECHANGEUR DE BAGNOLET"}, "geometry": {"type": "Point", "coordinates": [2.4109242688351746, 48.86509918311279]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3e3de352064948ce47912750802262d5905e4716", "fields": {"departement": "75", "stop_lat": 48.85290349248154, "code_postal": "75120", "stop_lon": 2.410539229875432, "coord": [48.85290349248154, 2.410539229875432], "stop_id": 4146113, "stop_desc": "65 BOULEVARD DAVOUT - 75120", "stop_name": "PORTE DE MONTREUIL"}, "geometry": {"type": "Point", "coordinates": [2.410539229875432, 48.85290349248154]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dc8cf3f6ba7be9c17b94be6f45f0c07c9b3afe88", "fields": {"departement": "75", "stop_lat": 48.84724208878028, "code_postal": "75120", "stop_lon": 2.4093737313816925, "coord": [48.84724208878028, 2.4093737313816925], "stop_id": 4146114, "stop_desc": "107/109 CRS DE VINCENNES - 75120", "stop_name": "PORTE DE VINCENNES"}, "geometry": {"type": "Point", "coordinates": [2.4093737313816925, 48.84724208878028]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d0cd24d132b49d3adbb654c699110713da98d591", "fields": {"departement": "93", "stop_lat": 49.01048426253027, "code_postal": "93073", "stop_lon": 2.559308602563976, "coord": [49.01048426253027, 2.559308602563976], "stop_id": 4146117, "stop_desc": "AEROPORT CHARLES DE GAULLE (T3) - 93073", "stop_name": "ROISSYPOLE"}, "geometry": {"type": "Point", "coordinates": [2.559308602563976, 49.01048426253027]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a22c3b8dc8cbf901619e7a6a4cd0a8f7fc04922f", "fields": {"departement": "93", "stop_lat": 48.9939157315064, "code_postal": "93073", "stop_lon": 2.5266398659308664, "coord": [48.9939157315064, 2.5266398659308664], "stop_id": 4146123, "stop_desc": "RUE DE LA JEUNE FILLE - 93073", "stop_name": "RUE DE LA JEUNE FILLE"}, "geometry": {"type": "Point", "coordinates": [2.5266398659308664, 48.9939157315064]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dfb1eca262abc2b020097e88c489e2e4308838ba", "fields": {"departement": "93", "stop_lat": 48.989618845747074, "code_postal": "93073", "stop_lon": 2.5274980640072955, "coord": [48.989618845747074, 2.5274980640072955], "stop_id": 4146125, "stop_desc": "RUE DE LA BELLE BORNE - 93073", "stop_name": "AEROVILLE - RUE DE LA BELLE BORNE"}, "geometry": {"type": "Point", "coordinates": [2.5274980640072955, 48.989618845747074]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "579190f1370f8123b617ebd0f1a3f5635d30e939", "fields": {"departement": "93", "stop_lat": 48.92935800046463, "code_postal": "93007", "stop_lon": 2.4795528998155345, "coord": [48.92935800046463, 2.4795528998155345], "stop_id": 4146126, "stop_desc": "12 AVENUE PAUL VAILLANT COUTURIER - 93007", "stop_name": "ROND-POINT PIERRE SEMARD - PAUL VAILLANT-COUTURIER"}, "geometry": {"type": "Point", "coordinates": [2.4795528998155345, 48.92935800046463]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f5a273d430790b501d31ec40df6e88545edff639", "fields": {"departement": "93", "stop_lat": 48.92527529901001, "code_postal": "93007", "stop_lon": 2.4741273246311293, "coord": [48.92527529901001, 2.4741273246311293], "stop_id": 4146128, "stop_desc": "BOULEVARD JACQUES DECOUR - 93007", "stop_name": "LES 4 TOURS"}, "geometry": {"type": "Point", "coordinates": [2.4741273246311293, 48.92527529901001]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c00dec88804a749f18e0b891fb5692968d2d5c43", "fields": {"departement": "93", "stop_lat": 48.92414475246889, "code_postal": "93007", "stop_lon": 2.4725423425858173, "coord": [48.92414475246889, 2.4725423425858173], "stop_id": 4146129, "stop_desc": "21 AVENUE JEAN BAPTISTE BUSNEL - 93007", "stop_name": "DANIELLE CASANOVA"}, "geometry": {"type": "Point", "coordinates": [2.4725423425858173, 48.92414475246889]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4e3da51276c2cb462f054df3fe14f5259e27a42f", "fields": {"departement": "93", "stop_lat": 48.91695910540304, "code_postal": "93010", "stop_lon": 2.484400525396555, "coord": [48.91695910540304, 2.484400525396555], "stop_id": 4146134, "stop_desc": "AV HENRI VARAGNAT - 93010", "stop_name": "RABELAIS"}, "geometry": {"type": "Point", "coordinates": [2.484400525396555, 48.91695910540304]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "758e0ee7de9911bb0851a4ed4631aeccc0b4fe49", "fields": {"departement": "93", "stop_lat": 48.90955920281512, "code_postal": "93010", "stop_lon": 2.479948443344676, "coord": [48.90955920281512, 2.479948443344676], "stop_id": 4146137, "stop_desc": "FACE 48 ROUTE D'AULNAY - 93010", "stop_name": "GUEUGNON"}, "geometry": {"type": "Point", "coordinates": [2.479948443344676, 48.90955920281512]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ff606b9c0c8bd7e8cae9d5515a484a8c4a8d1fb9", "fields": {"departement": "75", "stop_lat": 48.858491137349816, "code_postal": "75120", "stop_lon": 2.414565203745361, "coord": [48.858491137349816, 2.414565203745361], "stop_id": 4146141, "stop_desc": "AVENUE DU PROFESSEUR ANDRE LEMIERRE - 75120", "stop_name": "EDOUARD VAILLANT"}, "geometry": {"type": "Point", "coordinates": [2.414565203745361, 48.858491137349816]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d4ba16d13b8f5ff639db99d2394ed0deb483bab5", "fields": {"departement": "95", "stop_lat": 48.9769523722321, "code_postal": "95585", "stop_lon": 2.391343045670867, "coord": [48.9769523722321, 2.391343045670867], "stop_id": 4146213, "stop_desc": "0 AVENUE DU GENERAL DE GAULLE - 95585", "stop_name": "GARGES-SARCELLES RER"}, "geometry": {"type": "Point", "coordinates": [2.391343045670867, 48.9769523722321]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ed7a15016d718a9e5595788ee29e0eb477c13a75", "fields": {"departement": "95", "stop_lat": 48.979338347397245, "code_postal": "95585", "stop_lon": 2.3801505609318845, "coord": [48.979338347397245, 2.3801505609318845], "stop_id": 4146217, "stop_desc": "44 AVENUE PAUL VALERY - 95585", "stop_name": "PAUL VALERY"}, "geometry": {"type": "Point", "coordinates": [2.3801505609318845, 48.979338347397245]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5af9d3aff5733df6216b4e7076d91ab40128863e", "fields": {"departement": "93", "stop_lat": 48.954828771784285, "code_postal": "93059", "stop_lon": 2.358037459933026, "coord": [48.954828771784285, 2.358037459933026], "stop_id": 4146233, "stop_desc": "144 AVENUE LENINE - 93059", "stop_name": "JONCHEROLLES"}, "geometry": {"type": "Point", "coordinates": [2.358037459933026, 48.954828771784285]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "00ba6d28a221f81ec5badf6f55015c37d5e46642", "fields": {"departement": "77", "stop_lat": 48.85605652217107, "code_postal": "77083", "stop_lon": 2.589346915627523, "coord": [48.85605652217107, 2.589346915627523], "stop_id": 4146258, "stop_desc": "2 BOULEVARD DE LA REPUBLIQUE - 77083", "stop_name": "C.S.T.B. - MATTEOTTI"}, "geometry": {"type": "Point", "coordinates": [2.589346915627523, 48.85605652217107]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d0aecbf20bd5f6f68315fb9549dfba52baaa76de", "fields": {"departement": "93", "stop_lat": 48.923312997617195, "code_postal": "93027", "stop_lon": 2.385572855532466, "coord": [48.923312997617195, 2.385572855532466], "stop_id": 4179703, "stop_desc": "4-6 RUE SUZANNE MASSON - 93027", "stop_name": "LA COURNEUVE - AUBERVILLIERS RER"}, "geometry": {"type": "Point", "coordinates": [2.385572855532466, 48.923312997617195]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "11512630ce1d06f483aacaf8153e2d1d8f3d25ac", "fields": {"departement": "93", "stop_lat": 48.92701752331649, "code_postal": "93027", "stop_lon": 2.380598215065691, "coord": [48.92701752331649, 2.380598215065691], "stop_id": 4179704, "stop_desc": "FACE 26 RUE SAINT-JUST - 93027", "stop_name": "LANGEVIN - WALLON"}, "geometry": {"type": "Point", "coordinates": [2.380598215065691, 48.92701752331649]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dbe38b218baaa3b1dde589695025d1d9357f8399", "fields": {"departement": "93", "stop_lat": 48.92590456243213, "code_postal": "93066", "stop_lon": 2.3765057854114358, "coord": [48.92590456243213, 2.3765057854114358], "stop_id": 4179706, "stop_desc": "RUE FRANCIS DE PRESSENSE - 93066", "stop_name": "GENEVE"}, "geometry": {"type": "Point", "coordinates": [2.3765057854114358, 48.92590456243213]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b4527836bf6e5c85349f760605d08fb91bdfabe5", "fields": {"departement": "93", "stop_lat": 48.9303489005, "code_postal": "93066", "stop_lon": 2.357100149802827, "coord": [48.9303489005, 2.357100149802827], "stop_id": 4179715, "stop_desc": "R DANIELLE CASANOVA - 93066", "stop_name": "PORTE DE PARIS - STADE DE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.357100149802827, 48.9303489005]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1c27b62d0ed65aa6fbee11695e1db30e748a5463", "fields": {"departement": "93", "stop_lat": 48.930726417069806, "code_postal": "93066", "stop_lon": 2.3566911066037166, "coord": [48.930726417069806, 2.3566911066037166], "stop_id": 4179716, "stop_desc": "R DE LA LEGION D'HONNEUR - 93066", "stop_name": "PORTE DE PARIS-METRO"}, "geometry": {"type": "Point", "coordinates": [2.3566911066037166, 48.930726417069806]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7f5bca9821ba1b069f4eba19a63391192534bab7", "fields": {"departement": "93", "stop_lat": 48.93257758456558, "code_postal": "93066", "stop_lon": 2.3574692861766655, "coord": [48.93257758456558, 2.3574692861766655], "stop_id": 4179718, "stop_desc": "27 RUE DE LA LEGION D'HONNEUR - 93066", "stop_name": "PLACE LANNE"}, "geometry": {"type": "Point", "coordinates": [2.3574692861766655, 48.93257758456558]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b07d37b9df6d62e24fcd01914d2fff593aefb903", "fields": {"departement": "93", "stop_lat": 48.93682788623877, "code_postal": "93066", "stop_lon": 2.360130980098404, "coord": [48.93682788623877, 2.360130980098404], "stop_id": 4179720, "stop_desc": "18 RUE JEAN JAURES - 93066", "stop_name": "BASILIQUE DE SAINT-DENIS - HOTEL DE VILLE-METRO-TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.360130980098404, 48.93682788623877]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ab6a3aab023454cf46733d759df5211eeb4c5c36", "fields": {"departement": "93", "stop_lat": 48.94965104630664, "code_postal": "93059", "stop_lon": 2.364816738568956, "coord": [48.94965104630664, 2.364816738568956], "stop_id": 4179735, "stop_desc": "66 AVENUE EMILE ZOLA - 93059", "stop_name": "TOUSSAINT LOUVERTURE"}, "geometry": {"type": "Point", "coordinates": [2.364816738568956, 48.94965104630664]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "255e9797129e790edaee9f64b8c1868556ad9c6c", "fields": {"departement": "93", "stop_lat": 48.95280407808958, "code_postal": "93072", "stop_lon": 2.370003674653913, "coord": [48.95280407808958, 2.370003674653913], "stop_id": 4179737, "stop_desc": "RUE JEAN DURAND - 93072", "stop_name": "EMILE ZOLA"}, "geometry": {"type": "Point", "coordinates": [2.370003674653913, 48.95280407808958]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bebb929e1ab78a5f0c5c3181598fb752a08177dc", "fields": {"departement": "93", "stop_lat": 48.95216229994017, "code_postal": "93072", "stop_lon": 2.3815335008042746, "coord": [48.95216229994017, 2.3815335008042746], "stop_id": 4179743, "stop_desc": "9 PLACE MARCEL POINTET - 93072", "stop_name": "MARCEL POINTET"}, "geometry": {"type": "Point", "coordinates": [2.3815335008042746, 48.95216229994017]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "29c46e0455d230b4df93eaa1091e15d15c023aa1", "fields": {"departement": "93", "stop_lat": 48.95495639533847, "code_postal": "93072", "stop_lon": 2.3835691423676826, "coord": [48.95495639533847, 2.3835691423676826], "stop_id": 4179745, "stop_desc": "11 BOULEVARD MAXIME GORKI - 93072", "stop_name": "MAIRIE DE STAINS"}, "geometry": {"type": "Point", "coordinates": [2.3835691423676826, 48.95495639533847]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b531b69a04eb65cd7723f551d2c58e7ac9e793f0", "fields": {"departement": "93", "stop_lat": 48.93473471035391, "code_postal": "93066", "stop_lon": 2.355751406190871, "coord": [48.93473471035391, 2.355751406190871], "stop_id": 4179749, "stop_desc": "73 RUE GABRIEL PERI - 93066", "stop_name": "GABRIEL PERI - FRANKLIN"}, "geometry": {"type": "Point", "coordinates": [2.355751406190871, 48.93473471035391]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f7bc705d4b741789ded023dd34f207e6c0d5aa32", "fields": {"departement": "94", "stop_lat": 48.802225242332476, "code_postal": "94019", "stop_lon": 2.5397233570433895, "coord": [48.802225242332476, 2.5397233570433895], "stop_id": 4180933, "stop_desc": "11 BIS ROUTE DE LA LIBERATION - 94019", "stop_name": "AVENUE GEORGES"}, "geometry": {"type": "Point", "coordinates": [2.5397233570433895, 48.802225242332476]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "022868c1bd71809b70faf8a8a7ebd9563588ed78", "fields": {"departement": "94", "stop_lat": 48.80350526201342, "code_postal": "94019", "stop_lon": 2.537510535409534, "coord": [48.80350526201342, 2.537510535409534], "stop_id": 4180934, "stop_desc": "107-109 RUE ARISTIDE BRIAND - 94019", "stop_name": "COLLEGE MOLIERE"}, "geometry": {"type": "Point", "coordinates": [2.537510535409534, 48.80350526201342]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f5652f9933a29d84c5923792ef57d91c3cd95628", "fields": {"departement": "94", "stop_lat": 48.80702898783379, "code_postal": "94017", "stop_lon": 2.526216596540736, "coord": [48.80702898783379, 2.526216596540736], "stop_id": 4180936, "stop_desc": "87 AVENUE MARX DORMOY - 94017", "stop_name": "MUSEE DE LA RESISTANCE"}, "geometry": {"type": "Point", "coordinates": [2.526216596540736, 48.80702898783379]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a0ef28cccbe235911f576d1364668a72012eaed8", "fields": {"departement": "94", "stop_lat": 48.81317916036105, "code_postal": "94017", "stop_lon": 2.5128343715435313, "coord": [48.81317916036105, 2.5128343715435313], "stop_id": 4180940, "stop_desc": "43 RUE LOUIS TALAMONI - 94017", "stop_name": "MAIRIE DE CHAMPIGNY"}, "geometry": {"type": "Point", "coordinates": [2.5128343715435313, 48.81317916036105]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b12271404b4b734b1ca6c7a69123bf28285eccfc", "fields": {"departement": "93", "stop_lat": 48.86403488892529, "code_postal": "93006", "stop_lon": 2.4168074866829308, "coord": [48.86403488892529, 2.4168074866829308], "stop_id": 4199316, "stop_desc": "RUE GARE ROUTIERE - 93006", "stop_name": "GALLIENI-METRO"}, "geometry": {"type": "Point", "coordinates": [2.4168074866829308, 48.86403488892529]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bca19b6c66360679ce7bf2afae8e604360d0d10e", "fields": {"departement": "93", "stop_lat": 48.86923939789337, "code_postal": "93006", "stop_lon": 2.4155621165197254, "coord": [48.86923939789337, 2.4155621165197254], "stop_id": 4199318, "stop_desc": "29 AVENUE GAMBETTA - 93006", "stop_name": "MAIRIE DE BAGNOLET"}, "geometry": {"type": "Point", "coordinates": [2.4155621165197254, 48.86923939789337]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f9ce38b029ef78f3e777d277eeec035b00914b01", "fields": {"departement": "93", "stop_lat": 48.85886096918219, "code_postal": "93048", "stop_lon": 2.4369445702581713, "coord": [48.85886096918219, 2.4369445702581713], "stop_id": 4199334, "stop_desc": "8 AVENUE DE LA RESISTANCE - 93048", "stop_name": "CROIX DE CHAVAUX-METRO"}, "geometry": {"type": "Point", "coordinates": [2.4369445702581713, 48.85886096918219]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f78a546cd41b351fc18ddeee8f10fce40d78c5e5", "fields": {"departement": "93", "stop_lat": 48.85868970531647, "code_postal": "93048", "stop_lon": 2.437543550108734, "coord": [48.85868970531647, 2.437543550108734], "stop_id": 4199335, "stop_desc": "55 BOULEVARD ROUGET DE LISLE - 93048", "stop_name": "CROIX DE CHAVAUX - ROUGET DE LISLE"}, "geometry": {"type": "Point", "coordinates": [2.437543550108734, 48.85868970531647]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "93a56c3d62aea152aec8be8e832e973b632ea8c7", "fields": {"departement": "93", "stop_lat": 48.86081974368124, "code_postal": "93048", "stop_lon": 2.447681857864659, "coord": [48.86081974368124, 2.447681857864659], "stop_id": 4199340, "stop_desc": "FACE 23 TE RUE GALILEE - 93048", "stop_name": "EUGENE VARLIN"}, "geometry": {"type": "Point", "coordinates": [2.447681857864659, 48.86081974368124]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a5255498a585ffb039ea8f35856764e50cbe3e60", "fields": {"departement": "93", "stop_lat": 48.86090956709095, "code_postal": "93048", "stop_lon": 2.447736534115838, "coord": [48.86090956709095, 2.447736534115838], "stop_id": 4199341, "stop_desc": "23 RUE GALILEE - 93048", "stop_name": "EUGENE VARLIN"}, "geometry": {"type": "Point", "coordinates": [2.447736534115838, 48.86090956709095]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1823e2adcd6d74f575b51314e3a5fcf605f71f51", "fields": {"departement": "93", "stop_lat": 48.859811140728205, "code_postal": "93048", "stop_lon": 2.4498318215390626, "coord": [48.859811140728205, 2.4498318215390626], "stop_id": 4199342, "stop_desc": "RUE GALILEE - 93048", "stop_name": "COLLEGE JEAN MOULIN"}, "geometry": {"type": "Point", "coordinates": [2.4498318215390626, 48.859811140728205]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2f06de16006a3344e16087b336b61f34a0a9702e", "fields": {"departement": "93", "stop_lat": 48.8599819913967, "code_postal": "93048", "stop_lon": 2.4497368453997925, "coord": [48.8599819913967, 2.4497368453997925], "stop_id": 4199343, "stop_desc": "RUE GALILEE - 93048", "stop_name": "COLLEGE JEAN MOULIN"}, "geometry": {"type": "Point", "coordinates": [2.4497368453997925, 48.8599819913967]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "42595d7e5da88da6ec0de654487f8f6037696585", "fields": {"departement": "93", "stop_lat": 48.860466996817955, "code_postal": "93048", "stop_lon": 2.4591909625729285, "coord": [48.860466996817955, 2.4591909625729285], "stop_id": 4199349, "stop_desc": "21 RUE DU BEL AIR - 93048", "stop_name": "LENAIN DE TILLEMONT"}, "geometry": {"type": "Point", "coordinates": [2.4591909625729285, 48.860466996817955]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "42507a54dcdd7994d835cba431426369b0537e06", "fields": {"departement": "93", "stop_lat": 48.86299660841789, "code_postal": "93048", "stop_lon": 2.4638283219200012, "coord": [48.86299660841789, 2.4638283219200012], "stop_id": 4199350, "stop_desc": "FACE 134 RUE DE LA NOUVELLE FRANCE - 93048", "stop_name": "NOUVELLE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.4638283219200012, 48.86299660841789]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fa64c27a1561c514307518e84a8e9db0fb28a9cb", "fields": {"departement": "93", "stop_lat": 48.86358627135531, "code_postal": "93048", "stop_lon": 2.467085408141435, "coord": [48.86358627135531, 2.467085408141435], "stop_id": 4199352, "stop_desc": "BOULEVARD THEOPHILE SUEUR - 93048", "stop_name": "LES RUFFINS"}, "geometry": {"type": "Point", "coordinates": [2.467085408141435, 48.86358627135531]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "12a8785a26d1eb1253338c5bfedc6f1335536c1e", "fields": {"departement": "93", "stop_lat": 48.86696566350693, "code_postal": "93048", "stop_lon": 2.4749678728776043, "coord": [48.86696566350693, 2.4749678728776043], "stop_id": 4199357, "stop_desc": "70 RUE DES BLANCS VILAINS - 93048", "stop_name": "BABEUF"}, "geometry": {"type": "Point", "coordinates": [2.4749678728776043, 48.86696566350693]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3027be22eaaf15b6aa18e77be5f7d1a471bff4a8", "fields": {"departement": "93", "stop_lat": 48.86588454639278, "code_postal": "93048", "stop_lon": 2.477226346724179, "coord": [48.86588454639278, 2.477226346724179], "stop_id": 4199358, "stop_desc": "RUE CHARLES DELAVACQUERIE - 93048", "stop_name": "CHARLES DELAVACQUERIE"}, "geometry": {"type": "Point", "coordinates": [2.477226346724179, 48.86588454639278]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "574d92c7bb0fdc4e812be841c7820618b4ed3921", "fields": {"departement": "94", "stop_lat": 48.857341200605816, "code_postal": "94033", "stop_lon": 2.4816707533851594, "coord": [48.857341200605816, 2.4816707533851594], "stop_id": 4199364, "stop_desc": "11 AV CHARLES GARCIA - 94033", "stop_name": "LA FONTAINE"}, "geometry": {"type": "Point", "coordinates": [2.4816707533851594, 48.857341200605816]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "907652029340436f1e65ab4af900f8ef04d9facb", "fields": {"departement": "94", "stop_lat": 48.85260933136605, "code_postal": "94033", "stop_lon": 2.4853074908421364, "coord": [48.85260933136605, 2.4853074908421364], "stop_id": 4199371, "stop_desc": "PLACE DU GENERAL DE GAULLE - 94033", "stop_name": "GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.4853074908421364, 48.85260933136605]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fe46d981083b5d4219b01655cb688524c1cafdae", "fields": {"departement": "94", "stop_lat": 48.85994861762231, "code_postal": "94033", "stop_lon": 2.4807926491059042, "coord": [48.85994861762231, 2.4807926491059042], "stop_id": 4199373, "stop_desc": "FACE 239 AVENUE VICTOR HUGO - 94033", "stop_name": "CIMETIERE DE VINCENNES"}, "geometry": {"type": "Point", "coordinates": [2.4807926491059042, 48.85994861762231]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "364afd8852f8d289c199f287f7253441d578fa36", "fields": {"departement": "93", "stop_lat": 48.84685302058228, "code_postal": "93051", "stop_lon": 2.532012958700496, "coord": [48.84685302058228, 2.532012958700496], "stop_id": 4208522, "stop_desc": "FACE 42 BOULEVARD DU MARECHAL FOCH - 93051", "stop_name": "VERDUN"}, "geometry": {"type": "Point", "coordinates": [2.532012958700496, 48.84685302058228]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "64771942063b1fceddb8aec572dd1f7c61809e7b", "fields": {"departement": "93", "stop_lat": 48.84951807883047, "code_postal": "93051", "stop_lon": 2.5648158086543447, "coord": [48.84951807883047, 2.5648158086543447], "stop_id": 4208532, "stop_desc": "75 AV EMILE COSSONNEAU - 93051", "stop_name": "POINTE DE GOURNAY"}, "geometry": {"type": "Point", "coordinates": [2.5648158086543447, 48.84951807883047]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0d9284a7296fdc64dd418dee5e0816804eb8fe14", "fields": {"departement": "93", "stop_lat": 48.853105174374925, "code_postal": "93051", "stop_lon": 2.5734933846867474, "coord": [48.853105174374925, 2.5734933846867474], "stop_id": 4208534, "stop_desc": "FACE98/100 ROUTE DE GOURNAY - 93051", "stop_name": "LES PREVOYANTS"}, "geometry": {"type": "Point", "coordinates": [2.5734933846867474, 48.853105174374925]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0fe07264c287bf044ac069999c2db3940c582664", "fields": {"departement": "93", "stop_lat": 48.85558974422964, "code_postal": "93033", "stop_lon": 2.575983523003637, "coord": [48.85558974422964, 2.575983523003637], "stop_id": 4208536, "stop_desc": "FACE 47 AVENUE ARISTIDE BRIAND - 93033", "stop_name": "LES ROSIERS"}, "geometry": {"type": "Point", "coordinates": [2.575983523003637, 48.85558974422964]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b321f4c635758ba885e8f3e9501d7cc00e42d0ae", "fields": {"departement": "77", "stop_lat": 48.8498772791612, "code_postal": "77337", "stop_lon": 2.61572298775755, "coord": [48.8498772791612, 2.61572298775755], "stop_id": 4208552, "stop_desc": "FACE 1 COURS DES DEUX PARCS - 77337", "stop_name": "LE CARRE DU FAON"}, "geometry": {"type": "Point", "coordinates": [2.61572298775755, 48.8498772791612]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4458a4af32a7c59840fff1810e82c69191c0ee32", "fields": {"departement": "77", "stop_lat": 48.849985955636875, "code_postal": "77337", "stop_lon": 2.6153694914997123, "coord": [48.849985955636875, 2.6153694914997123], "stop_id": 4208553, "stop_desc": "1 COURS DES DEUX PARC - 77337", "stop_name": "LE CARRE DU FAON"}, "geometry": {"type": "Point", "coordinates": [2.6153694914997123, 48.849985955636875]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "efec24eca39a00f7565321407b5004672273c0fb", "fields": {"departement": "77", "stop_lat": 48.84683513854755, "code_postal": "77337", "stop_lon": 2.6137321018284156, "coord": [48.84683513854755, 2.6137321018284156], "stop_id": 4208559, "stop_desc": "COURS DES ROCHES - 77337", "stop_name": "COLLEGE LE LUZARD"}, "geometry": {"type": "Point", "coordinates": [2.6137321018284156, 48.84683513854755]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3cd7f5915fa5adfe0885bb992cc067fea0f2a0e0", "fields": {"departement": "94", "stop_lat": 48.84854201822675, "code_postal": "94058", "stop_lon": 2.4961358186242504, "coord": [48.84854201822675, 2.4961358186242504], "stop_id": 4557302, "stop_desc": "103 AVENUE DU 11 NOVEMBRE - 94058", "stop_name": "ROND-POINT DU GENERAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.4961358186242504, 48.84854201822675]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c7de975ed6299dd8df53a55ee02a561a0ff68b42", "fields": {"departement": "94", "stop_lat": 48.83842408841958, "code_postal": "94058", "stop_lon": 2.494593529552752, "coord": [48.83842408841958, 2.494593529552752], "stop_id": 4557310, "stop_desc": "PLACE ROBERT BELVAUX - 94058", "stop_name": "NOGENT-LE-PERREUX RER"}, "geometry": {"type": "Point", "coordinates": [2.494593529552752, 48.83842408841958]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "96de10d1607d7ea0fb4b62754eb5967db95396a4", "fields": {"departement": "94", "stop_lat": 48.838001853465165, "code_postal": "94058", "stop_lon": 2.4944560966386526, "coord": [48.838001853465165, 2.4944560966386526], "stop_id": 4557311, "stop_desc": "10 PLACE ROBERT BELVAUX - 94058", "stop_name": "NOGENT-LE-PERREUX RER"}, "geometry": {"type": "Point", "coordinates": [2.4944560966386526, 48.838001853465165]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b918510691bda5fdec0432849234743521d0869d", "fields": {"departement": "94", "stop_lat": 48.82416747810293, "code_postal": "94017", "stop_lon": 2.4962653708220754, "coord": [48.82416747810293, 2.4962653708220754], "stop_id": 4557317, "stop_desc": "202 BOULEVARD DE STALINGRAD - 94017", "stop_name": "GENERAL DE GAULLE - STALINGRAD"}, "geometry": {"type": "Point", "coordinates": [2.4962653708220754, 48.82416747810293]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "54621feb3f57d3f23ff359b7d7547595c685aaf2", "fields": {"departement": "94", "stop_lat": 48.820656373208266, "code_postal": "94017", "stop_lon": 2.500623647427453, "coord": [48.820656373208266, 2.500623647427453], "stop_id": 4557320, "stop_desc": "26 RUE HENRI BARBUSSE - 94017", "stop_name": "GABRIEL PERI - HENRI BARBUSSE"}, "geometry": {"type": "Point", "coordinates": [2.500623647427453, 48.820656373208266]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b6343fc16244ca95a7c9b8aa7978a795ddad1c8d", "fields": {"departement": "94", "stop_lat": 48.82061305697835, "code_postal": "94017", "stop_lon": 2.505904457735628, "coord": [48.82061305697835, 2.505904457735628], "stop_id": 4557323, "stop_desc": "BOULEVARD GABRIEL PERI - 94017", "stop_name": "IRENE JOLIOT CURIE"}, "geometry": {"type": "Point", "coordinates": [2.505904457735628, 48.82061305697835]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "50cc767b1f5d250432619928621d711b7e26fa8f", "fields": {"departement": "94", "stop_lat": 48.823403507335144, "code_postal": "94017", "stop_lon": 2.5092074894469842, "coord": [48.823403507335144, 2.5092074894469842], "stop_id": 4557324, "stop_desc": "FACE 6 RUE GERMINAL - 94017", "stop_name": "LOUIS LOUCHEUR"}, "geometry": {"type": "Point", "coordinates": [2.5092074894469842, 48.823403507335144]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d95c68ac96b8b8b7f758d1e289f9b772ba4d50eb", "fields": {"departement": "94", "stop_lat": 48.819311331150935, "code_postal": "94017", "stop_lon": 2.511112991184935, "coord": [48.819311331150935, 2.511112991184935], "stop_id": 4557327, "stop_desc": "17 AVENUE DE LA REPUBLIQUE - 94017", "stop_name": "REPUBLIQUE - ALEXANDRE FOURNY"}, "geometry": {"type": "Point", "coordinates": [2.511112991184935, 48.819311331150935]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f0d67eca478ca44a8af10d7ed7d5c439467cc678", "fields": {"departement": "94", "stop_lat": 48.81248980165499, "code_postal": "94017", "stop_lon": 2.51099488416213, "coord": [48.81248980165499, 2.51099488416213], "stop_id": 4557333, "stop_desc": "4 BIS RUE ALBERT THOMAS - 94017", "stop_name": "MARCHE DE CHAMPIGNY-SUR-MARNE"}, "geometry": {"type": "Point", "coordinates": [2.51099488416213, 48.81248980165499]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0490176b7a980c446fe224f30894068153fd4569", "fields": {"departement": "94", "stop_lat": 48.80711639570117, "code_postal": "94068", "stop_lon": 2.5101060436758766, "coord": [48.80711639570117, 2.5101060436758766], "stop_id": 4557334, "stop_desc": "PISTE GARE ROUTIERE - 94068", "stop_name": "CHAMPIGNY - SAINT-MAUR RER"}, "geometry": {"type": "Point", "coordinates": [2.5101060436758766, 48.80711639570117]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6e4e56b0b3929c3e0e46ead80bd3098ec173a9d6", "fields": {"departement": "93", "stop_lat": 48.86185931933197, "code_postal": "93049", "stop_lon": 2.5042541756223677, "coord": [48.86185931933197, 2.5042541756223677], "stop_id": 4557341, "stop_desc": "FACE 25 AVENUE GEORGES CLEMENCEAU - 93049", "stop_name": "GEORGES CLEMENCEAU"}, "geometry": {"type": "Point", "coordinates": [2.5042541756223677, 48.86185931933197]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b9b134dfab8a9ad2d1f4a799157d8ffba5e12274", "fields": {"departement": "93", "stop_lat": 48.86297552247139, "code_postal": "93049", "stop_lon": 2.5029909422821266, "coord": [48.86297552247139, 2.5029909422821266], "stop_id": 4557342, "stop_desc": "17 AVENUE DU MARECHAL FOCH - 93049", "stop_name": "CARNOT"}, "geometry": {"type": "Point", "coordinates": [2.5029909422821266, 48.86297552247139]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d907868830f84713d798e61dd0b0a5f3d2920913", "fields": {"departement": "92", "stop_lat": 48.78797297359984, "code_postal": "92023", "stop_lon": 2.2586617167369663, "coord": [48.78797297359984, 2.2586617167369663], "stop_id": 5067452, "stop_desc": "1-3 RUE DE LA CAVEE - 92023", "stop_name": "LA CAVEE"}, "geometry": {"type": "Point", "coordinates": [2.2586617167369663, 48.78797297359984]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5b2fdffef0bd5f56097a1d5569cb1568ad7ec3a6", "fields": {"departement": "92", "stop_lat": 48.78150498892182, "code_postal": "92060", "stop_lon": 2.2638940624309085, "coord": [48.78150498892182, 2.2638940624309085], "stop_id": 5067459, "stop_desc": "AVENUE CHARLES DE GAULLE - 92060", "stop_name": "COEUR DE VILLE"}, "geometry": {"type": "Point", "coordinates": [2.2638940624309085, 48.78150498892182]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9e993017b1b733d66c18b37e11be92a8b108e9d4", "fields": {"departement": "92", "stop_lat": 48.78139682184434, "code_postal": "92060", "stop_lon": 2.263391000895894, "coord": [48.78139682184434, 2.263391000895894], "stop_id": 5067460, "stop_desc": "FACE 20 AVENUE CHARLES DE GAULLE - 92060", "stop_name": "COEUR DE VILLE"}, "geometry": {"type": "Point", "coordinates": [2.263391000895894, 48.78139682184434]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e6a23d44e967023c770174775167dbb4ef7b5659", "fields": {"departement": "92", "stop_lat": 48.78356199872459, "code_postal": "92060", "stop_lon": 2.2777777295145034, "coord": [48.78356199872459, 2.2777777295145034], "stop_id": 5067468, "stop_desc": "FACE 156 AVENUE DE LA RESISTANCE - 92060", "stop_name": "EDMOND ABOUT"}, "geometry": {"type": "Point", "coordinates": [2.2777777295145034, 48.78356199872459]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "15750d2be5e49f7642ac53dd5c55a51a1ca35100", "fields": {"departement": "92", "stop_lat": 48.78461289587934, "code_postal": "92071", "stop_lon": 2.297702321341176, "coord": [48.78461289587934, 2.297702321341176], "stop_id": 5067474, "stop_desc": "30 AVENUE JEAN PERRIN - 92071", "stop_name": "LEON BLUM"}, "geometry": {"type": "Point", "coordinates": [2.297702321341176, 48.78461289587934]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a53e25bcaecfe55c10f83498717a1e1cd43cd914", "fields": {"departement": "78", "stop_lat": 48.7809461622579, "code_postal": "78640", "stop_lon": 2.2176403235283693, "coord": [48.7809461622579, 2.2176403235283693], "stop_id": 5067488, "stop_desc": "12 AVENUE DE L'EUROPE (CHAUSSEE OUEST) - 78640", "stop_name": "CENTRE COMMERCIAL DE VELIZY-VILLACOUBLAY"}, "geometry": {"type": "Point", "coordinates": [2.2176403235283693, 48.7809461622579]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c84138e8addccd5f5cc9f82059ae77e6593e0e32", "fields": {"departement": "92", "stop_lat": 48.82966193244689, "code_postal": "92040", "stop_lon": 2.2643568943423986, "coord": [48.82966193244689, 2.2643568943423986], "stop_id": 5067572, "stop_desc": "74-78 RUE CAMILLE DESMOULINS - 92040", "stop_name": "ISSY - VAL DE SEINE RER"}, "geometry": {"type": "Point", "coordinates": [2.2643568943423986, 48.82966193244689]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a5aaea88636a9297059e6d24f4491f6da7beb28e", "fields": {"departement": "92", "stop_lat": 48.82739562507031, "code_postal": "92040", "stop_lon": 2.2779861305343347, "coord": [48.82739562507031, 2.2779861305343347], "stop_id": 5067574, "stop_desc": "FACE 10 BOULEVARD GAMBETTA - 92040", "stop_name": "CORENTIN CELTON-METRO"}, "geometry": {"type": "Point", "coordinates": [2.2779861305343347, 48.82739562507031]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3dc0e5b5281c6d5930bd7cf9b4b21680c06bdca4", "fields": {"departement": "92", "stop_lat": 48.81151574234897, "code_postal": "92046", "stop_lon": 2.2808483900184924, "coord": [48.81151574234897, 2.2808483900184924], "stop_id": 5067581, "stop_desc": "64 BOULEVARD DU COLONEL FABIEN - 92046", "stop_name": "COLONEL FABIEN"}, "geometry": {"type": "Point", "coordinates": [2.2808483900184924, 48.81151574234897]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2742154015de5d840c94d6d8f9ede85827b9aac4", "fields": {"departement": "92", "stop_lat": 48.80628732978911, "code_postal": "92020", "stop_lon": 2.2863376527004067, "coord": [48.80628732978911, 2.2863376527004067], "stop_id": 5067584, "stop_desc": "FACE 33 BOULEVARD DE VANVES - 92020", "stop_name": "FELIX FAURE"}, "geometry": {"type": "Point", "coordinates": [2.2863376527004067, 48.80628732978911]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e4f38d33a9db47411c90652ecfa04b525f9555d1", "fields": {"departement": "92", "stop_lat": 48.79454220125779, "code_postal": "92020", "stop_lon": 2.2719835271448834, "coord": [48.79454220125779, 2.2719835271448834], "stop_id": 5067590, "stop_desc": "AVENUE DE VERDUN - 92020", "stop_name": "DIVISION LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.2719835271448834, 48.79454220125779]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1ee5fd95a4a4a75765d4057cfed7cce0dea5df3a", "fields": {"departement": "92", "stop_lat": 48.79106492489035, "code_postal": "92032", "stop_lon": 2.2739059086828264, "coord": [48.79106492489035, 2.2739059086828264], "stop_id": 5067592, "stop_desc": "RUE JOLIOT CURIE - 92032", "stop_name": "STADE DU PANORAMA"}, "geometry": {"type": "Point", "coordinates": [2.2739059086828264, 48.79106492489035]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c33892482646bb88bd76c7e1ad05877b2211582c", "fields": {"departement": "92", "stop_lat": 48.78940168904218, "code_postal": "92032", "stop_lon": 2.292679359839008, "coord": [48.78940168904218, 2.292679359839008], "stop_id": 5067603, "stop_desc": "FACE 44 AVENUE LOMBART - 92032", "stop_name": "CHATEAU SAINTE-BARBE"}, "geometry": {"type": "Point", "coordinates": [2.292679359839008, 48.78940168904218]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6b5bda4aabc1423cc6bb98601e6b6a5c43a93959", "fields": {"departement": "92", "stop_lat": 48.790398897908354, "code_postal": "92032", "stop_lon": 2.2914950655606523, "coord": [48.790398897908354, 2.2914950655606523], "stop_id": 5067604, "stop_desc": "10 PL DU CHATEAU SAINTE-BARBE - 92032", "stop_name": "CHATEAU SAINTE-BARBE"}, "geometry": {"type": "Point", "coordinates": [2.2914950655606523, 48.790398897908354]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "225f1aca3790b9a9e7bd010d2d485681906a5993", "fields": {"departement": "92", "stop_lat": 48.78778418627184, "code_postal": "92032", "stop_lon": 2.2935512795662203, "coord": [48.78778418627184, 2.2935512795662203], "stop_id": 5067606, "stop_desc": "26 AVENUE LOMBART - 92032", "stop_name": "FONTENAY-AUX-ROSES RER"}, "geometry": {"type": "Point", "coordinates": [2.2935512795662203, 48.78778418627184]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "19032179632f739ea9c702fcd5de7265c905ed31", "fields": {"departement": "92", "stop_lat": 48.7942551077991, "code_postal": "92032", "stop_lon": 2.2729361506767765, "coord": [48.7942551077991, 2.2729361506767765], "stop_id": 5067616, "stop_desc": "PLACE DE LA DIVISION LECLERC - 92032", "stop_name": "DIVISION LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.2729361506767765, 48.7942551077991]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "93033689b2f0eb2c9e65002256b764b5452e14f9", "fields": {"departement": "92", "stop_lat": 48.79537992622254, "code_postal": "92032", "stop_lon": 2.2754515062396203, "coord": [48.79537992622254, 2.2754515062396203], "stop_id": 5067617, "stop_desc": "3-5 AVENUE DE LA DIVISION LECLERC - 92032", "stop_name": "CENTRE BUS"}, "geometry": {"type": "Point", "coordinates": [2.2754515062396203, 48.79537992622254]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "365cc532072035b1449edfe5dabb458ca1c47a7a", "fields": {"departement": "92", "stop_lat": 48.81140571088759, "code_postal": "92023", "stop_lon": 2.2764258295286113, "coord": [48.81140571088759, 2.2764258295286113], "stop_id": 5067618, "stop_desc": "189 AVENUE MARGUERITE RENAUDIN - 92023", "stop_name": "HEBERT"}, "geometry": {"type": "Point", "coordinates": [2.2764258295286113, 48.81140571088759]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f3e7c672289f93f625bd6f29646c4965ea305fe2", "fields": {"departement": "92", "stop_lat": 48.82795039915451, "code_postal": "92072", "stop_lon": 2.2247466599919257, "coord": [48.82795039915451, 2.2247466599919257], "stop_id": 5073971, "stop_desc": "ALLEE DU PONT DE SEVRES - 92072", "stop_name": "MUSEE DE SEVRES"}, "geometry": {"type": "Point", "coordinates": [2.2247466599919257, 48.82795039915451]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "55747ffa0ce98034121f3133c8ff61fd25588c24", "fields": {"departement": "92", "stop_lat": 48.81661431402316, "code_postal": "92048", "stop_lon": 2.231712137797927, "coord": [48.81661431402316, 2.231712137797927], "stop_id": 5073976, "stop_desc": "16 BOULEVARD VERD-DE-ST JULIEN - 92048", "stop_name": "JEANNE D'ARC"}, "geometry": {"type": "Point", "coordinates": [2.231712137797927, 48.81661431402316]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fbc72aed79183af5ecbbed54784879ce0f0db3ad", "fields": {"departement": "92", "stop_lat": 48.80272419537944, "code_postal": "92048", "stop_lon": 2.237495701841666, "coord": [48.80272419537944, 2.237495701841666], "stop_id": 5073980, "stop_desc": "39 RUE D'ALEMBERT - 92048", "stop_name": "D'ALEMBERT - VERTUGADINS - LYCEE"}, "geometry": {"type": "Point", "coordinates": [2.237495701841666, 48.80272419537944]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2d9304dde6b2dad2c3629865a777a68ee7d3b8c9", "fields": {"departement": "92", "stop_lat": 48.80847209310078, "code_postal": "92048", "stop_lon": 2.243254230057932, "coord": [48.80847209310078, 2.243254230057932], "stop_id": 5073983, "stop_desc": "FACE 50 RUE HENRI BARBUSSE - 92048", "stop_name": "ANDRE SCHOCK"}, "geometry": {"type": "Point", "coordinates": [2.243254230057932, 48.80847209310078]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ec984d7936496bc8b156c6ae509566ffcb80dac0", "fields": {"departement": "92", "stop_lat": 48.808376802438694, "code_postal": "92048", "stop_lon": 2.2478945456893578, "coord": [48.808376802438694, 2.2478945456893578], "stop_id": 5073985, "stop_desc": "FACE 69 RUE DE BELGIQUE - 92048", "stop_name": "ORPHELINAT"}, "geometry": {"type": "Point", "coordinates": [2.2478945456893578, 48.808376802438694]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "549c56bbaad0094c12fa908298c25edb1b882c01", "fields": {"departement": "92", "stop_lat": 48.8147381437127, "code_postal": "92023", "stop_lon": 2.257750209717775, "coord": [48.8147381437127, 2.257750209717775], "stop_id": 5073989, "stop_desc": "138 AVENUE HENRI BARBUSSE - 92023", "stop_name": "HOPITAL PERCY"}, "geometry": {"type": "Point", "coordinates": [2.257750209717775, 48.8147381437127]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d9cde9f6ab4a071e945823b24399f2e1611a9b3c", "fields": {"departement": "92", "stop_lat": 48.817005195778684, "code_postal": "92040", "stop_lon": 2.261026679177312, "coord": [48.817005195778684, 2.261026679177312], "stop_id": 5073990, "stop_desc": "57 RUE DE L'EGALITE - 92040", "stop_name": "EPINETTES"}, "geometry": {"type": "Point", "coordinates": [2.261026679177312, 48.817005195778684]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cfb6aeddeae0c6e28b4b5163c516f8bf250ab616", "fields": {"departement": "92", "stop_lat": 48.81495832481246, "code_postal": "92040", "stop_lon": 2.264758600292619, "coord": [48.81495832481246, 2.264758600292619], "stop_id": 5073993, "stop_desc": "62 BIS RUE EMILE DUPLOYE - 92040", "stop_name": "E. DUPLOYE"}, "geometry": {"type": "Point", "coordinates": [2.264758600292619, 48.81495832481246]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "392701c37bd69d277983715055157ca00b2cf8e6", "fields": {"departement": "92", "stop_lat": 48.81942176095425, "code_postal": "92040", "stop_lon": 2.274483765828633, "coord": [48.81942176095425, 2.274483765828633], "stop_id": 5073996, "stop_desc": "25 RUE GABRIEL PERI - 92040", "stop_name": "RUE DU FORT"}, "geometry": {"type": "Point", "coordinates": [2.274483765828633, 48.81942176095425]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9c0332c8e7d39a34e3000fef5e673be1d2db0a87", "fields": {"departement": "92", "stop_lat": 48.827501031407145, "code_postal": "92040", "stop_lon": 2.273262483998071, "coord": [48.827501031407145, 2.273262483998071], "stop_id": 5073999, "stop_desc": "5 RUE DU GOUVERNEUR GENERAL EBOUE - 92040", "stop_name": "VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.273262483998071, 48.827501031407145]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f577dcfe4acd1101be211faa136c95eb1b0d5315", "fields": {"departement": "75", "stop_lat": 48.8369676365704, "code_postal": "75115", "stop_lon": 2.2783972601736324, "coord": [48.8369676365704, 2.2783972601736324], "stop_id": 5074005, "stop_desc": "85 RUE LEBLANC - 75115", "stop_name": "PLACE BALARD"}, "geometry": {"type": "Point", "coordinates": [2.2783972601736324, 48.8369676365704]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d1d3067a319868c21cf11264d757809d2dc1ceef", "fields": {"departement": "75", "stop_lat": 48.83946421233197, "code_postal": "75115", "stop_lon": 2.274541211540746, "coord": [48.83946421233197, 2.274541211540746], "stop_id": 5074006, "stop_desc": "31 RUE LEBLANC - 75115", "stop_name": "RUE LEBLANC"}, "geometry": {"type": "Point", "coordinates": [2.274541211540746, 48.83946421233197]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f7c404958ceb4e2e241da6d6db6c7c062b98da55", "fields": {"departement": "78", "stop_lat": 48.80116434164711, "code_postal": "78686", "stop_lon": 2.1629537291516154, "coord": [48.80116434164711, 2.1629537291516154], "stop_id": 5079444, "stop_desc": "161 AVENUE DU GENERAL LECLERC - 78686", "stop_name": "PIERRE EDOUARD"}, "geometry": {"type": "Point", "coordinates": [2.1629537291516154, 48.80116434164711]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e402a43037fec6750ff1e78191b174b0a11fe39d", "fields": {"departement": "78", "stop_lat": 48.80275022907373, "code_postal": "78686", "stop_lon": 2.1657240306264756, "coord": [48.80275022907373, 2.1657240306264756], "stop_id": 5079445, "stop_desc": "129 AVENUE DU GENERAL LECLERC - 78686", "stop_name": "PRESIDENT DOUMER"}, "geometry": {"type": "Point", "coordinates": [2.1657240306264756, 48.80275022907373]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "16a337f9f81b83353d467a877ace433a9ccc45d6", "fields": {"departement": "92", "stop_lat": 48.824749461223334, "code_postal": "92072", "stop_lon": 2.2143133818536844, "coord": [48.824749461223334, 2.2143133818536844], "stop_id": 5079458, "stop_desc": "53 GRANDE RUE - 92072", "stop_name": "MAIRIE DE SEVRES"}, "geometry": {"type": "Point", "coordinates": [2.2143133818536844, 48.824749461223334]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "32a963757cc29451b2b6cb920e00a263359562a5", "fields": {"departement": "92", "stop_lat": 48.810936330749946, "code_postal": "92022", "stop_lon": 2.1841768474421084, "coord": [48.810936330749946, 2.1841768474421084], "stop_id": 5079463, "stop_desc": "39 AVENUE DE LA RESISTANCE - 92022", "stop_name": "COLLEGE JEAN MOULIN"}, "geometry": {"type": "Point", "coordinates": [2.1841768474421084, 48.810936330749946]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e104e0c73ca868d95f24c1bf14f6a200ad96b5e6", "fields": {"departement": "92", "stop_lat": 48.80877507090612, "code_postal": "92022", "stop_lon": 2.1879525193180367, "coord": [48.80877507090612, 2.1879525193180367], "stop_id": 5079465, "stop_desc": "1427 AVENUE ROGER SALENGRO - 92022", "stop_name": "PUITS SANS VIN"}, "geometry": {"type": "Point", "coordinates": [2.1879525193180367, 48.80877507090612]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b05358fcae7dbc30d7f4939dda6fe1619de63da1", "fields": {"departement": "92", "stop_lat": 48.80489281197289, "code_postal": "92022", "stop_lon": 2.188331060591998, "coord": [48.80489281197289, 2.188331060591998], "stop_id": 5079477, "stop_desc": "FACE 27 PLACE GASTON ROBERT AUDONNET - 92022", "stop_name": "GARE DE CHAVILLE RIVE GAUCHE"}, "geometry": {"type": "Point", "coordinates": [2.188331060591998, 48.80489281197289]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b6fe1076f6fa290f8b285f7a6eb71146a004eada", "fields": {"departement": "92", "stop_lat": 48.81329240286992, "code_postal": "92022", "stop_lon": 2.192375982764248, "coord": [48.81329240286992, 2.192375982764248], "stop_id": 5079480, "stop_desc": "855 AVENUE ROGER SALENGRO - 92022", "stop_name": "ATRIUM"}, "geometry": {"type": "Point", "coordinates": [2.192375982764248, 48.81329240286992]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5987c9d5bb51479785f792632ec4cf9f184e7361", "fields": {"departement": "92", "stop_lat": 48.82088927265677, "code_postal": "92072", "stop_lon": 2.20190952396969, "coord": [48.82088927265677, 2.20190952396969], "stop_id": 5079483, "stop_desc": "149 RUE GRANDE RUE - 92072", "stop_name": "HOPITAL JEAN ROSTAND"}, "geometry": {"type": "Point", "coordinates": [2.20190952396969, 48.82088927265677]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "28540b60bce9b9cc89c63dcbc6357382d58ede7d", "fields": {"departement": "92", "stop_lat": 48.82904303376725, "code_postal": "92072", "stop_lon": 2.2303119593717184, "coord": [48.82904303376725, 2.2303119593717184], "stop_id": 5079489, "stop_desc": "GARE ROUTIERE - 92072", "stop_name": "PONT DE SEVRES"}, "geometry": {"type": "Point", "coordinates": [2.2303119593717184, 48.82904303376725]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8076b9560534c35d96ac4d54f88e3aed96cf733b", "fields": {"departement": "92", "stop_lat": 48.89751806839845, "code_postal": "92024", "stop_lon": 2.310797193032208, "coord": [48.89751806839845, 2.310797193032208], "stop_id": 5081721, "stop_desc": "14-16 BOULEVARD VICTOR HUGO - 92024", "stop_name": "VICTOR HUGO - JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.310797193032208, 48.89751806839845]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9882ab69dd119ad1b06e882833b42ae30b6b6d50", "fields": {"departement": "92", "stop_lat": 48.897724754228356, "code_postal": "92024", "stop_lon": 2.3107153020541866, "coord": [48.897724754228356, 2.3107153020541866], "stop_id": 5081722, "stop_desc": "31 BOULEVARD VICTOR HUGO - 92024", "stop_name": "VICTOR HUGO - JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.3107153020541866, 48.897724754228356]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1de52770eab304cc96d1d61cd25f2903f6b7bbe4", "fields": {"departement": "92", "stop_lat": 48.8987676280021, "code_postal": "92024", "stop_lon": 2.312418665985478, "coord": [48.8987676280021, 2.312418665985478], "stop_id": 5081724, "stop_desc": "53 BOULEVARD VICTOR HUGO - 92024", "stop_name": "CURTON"}, "geometry": {"type": "Point", "coordinates": [2.312418665985478, 48.8987676280021]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ba34bfdf3571933419b8968aa21c44752686ef09", "fields": {"departement": "92", "stop_lat": 48.90070046224565, "code_postal": "92024", "stop_lon": 2.3155121338101297, "coord": [48.90070046224565, 2.3155121338101297], "stop_id": 5081726, "stop_desc": "93 BOULEVARD VICTOR HUGO - 92024", "stop_name": "GENERAL LECLERC - VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.3155121338101297, 48.90070046224565]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "278af4d517e62141d6c2384690141424ec7fe770", "fields": {"departement": "92", "stop_lat": 48.90579566629995, "code_postal": "92024", "stop_lon": 2.3130424168390693, "coord": [48.90579566629995, 2.3130424168390693], "stop_id": 5081729, "stop_desc": "40 RUE DU GENERAL ROGUET - 92024", "stop_name": "VILLENEUVE"}, "geometry": {"type": "Point", "coordinates": [2.3130424168390693, 48.90579566629995]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4638c1d78a8551f93c6255423232482e82a9234a", "fields": {"departement": "92", "stop_lat": 48.911717858080024, "code_postal": "92024", "stop_lon": 2.311730728406615, "coord": [48.911717858080024, 2.311730728406615], "stop_id": 5081734, "stop_desc": "AVENUE DU PONT DE GENNEVILLIERS - 92024", "stop_name": "QUAI DE CLICHY"}, "geometry": {"type": "Point", "coordinates": [2.311730728406615, 48.911717858080024]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "941b38d9536aace83a3ca08ecd97bc7a37e77815", "fields": {"departement": "92", "stop_lat": 48.91810653077115, "code_postal": "92036", "stop_lon": 2.3070776114271685, "coord": [48.91810653077115, 2.3070776114271685], "stop_id": 5081738, "stop_desc": "AVENUE LAURENT CELY - 92036", "stop_name": "GRESILLONS - LAURENT CELY"}, "geometry": {"type": "Point", "coordinates": [2.3070776114271685, 48.91810653077115]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "04be1289ff58cafab067c516fcc49612ad1c95a5", "fields": {"departement": "92", "stop_lat": 48.92126065348259, "code_postal": "92036", "stop_lon": 2.305902982956347, "coord": [48.92126065348259, 2.305902982956347], "stop_id": 5081740, "stop_desc": "141-139 AVENUE LAURENT CELY - 92036", "stop_name": "PAUL VAILLANT COUTURIER"}, "geometry": {"type": "Point", "coordinates": [2.305902982956347, 48.92126065348259]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e7bb8a2ae6bd086d5b119310518740000913c0c2", "fields": {"departement": "92", "stop_lat": 48.936825497481216, "code_postal": "92036", "stop_lon": 2.3041884087956293, "coord": [48.936825497481216, 2.3041884087956293], "stop_id": 5081747, "stop_desc": "AVENUE MARCEL PAUL - 92036", "stop_name": "LES BARBANNIERS"}, "geometry": {"type": "Point", "coordinates": [2.3041884087956293, 48.936825497481216]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "764ada2ee076749fbffc99b51a8fd4c3371295c3", "fields": {"departement": "93", "stop_lat": 48.9555365638021, "code_postal": "93031", "stop_lon": 2.306482652652806, "coord": [48.9555365638021, 2.306482652652806], "stop_id": 5081757, "stop_desc": "FACE 119 RUE DE PARIS - 93031", "stop_name": "GILBERT BONNEMAISON"}, "geometry": {"type": "Point", "coordinates": [2.306482652652806, 48.9555365638021]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "acabe8546938802cb528c6451684590290e1be19", "fields": {"departement": "93", "stop_lat": 48.95459321635721, "code_postal": "93031", "stop_lon": 2.3074930089657295, "coord": [48.95459321635721, 2.3074930089657295], "stop_id": 5081758, "stop_desc": "AVENUE DU 18 JUIN 1940 - 93031", "stop_name": "GILBERT BONNEMAISON"}, "geometry": {"type": "Point", "coordinates": [2.3074930089657295, 48.95459321635721]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aebf8d98b360300f81634ee62caa182bc734549b", "fields": {"departement": "95", "stop_lat": 49.008552728010315, "code_postal": "95680", "stop_lon": 2.4011977341662143, "coord": [49.008552728010315, 2.4011977341662143], "stop_id": 5726589, "stop_desc": "RUE SIGNAC - 95680", "stop_name": "PUITS LA MARLIERE"}, "geometry": {"type": "Point", "coordinates": [2.4011977341662143, 49.008552728010315]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6d498a0882ebfc88cb761dedd6273399c8cc9f1c", "fields": {"departement": "95", "stop_lat": 49.00118946263233, "code_postal": "95680", "stop_lon": 2.4073757872421946, "coord": [49.00118946263233, 2.4073757872421946], "stop_id": 5726601, "stop_desc": "AVENUE PIERRE SEMARD - 95680", "stop_name": "LOUIS PERREIN"}, "geometry": {"type": "Point", "coordinates": [2.4073757872421946, 49.00118946263233]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "10e44304daa62af897b3b361c3dca55c074c826f", "fields": {"departement": "95", "stop_lat": 48.99465963659114, "code_postal": "95019", "stop_lon": 2.4165167634680578, "coord": [48.99465963659114, 2.4165167634680578], "stop_id": 5726611, "stop_desc": "FACE 13 RUE JEAN LAUGERE - 95019", "stop_name": "VILLIERS LE BEL - GONESSE - ARNOUVILLE RER"}, "geometry": {"type": "Point", "coordinates": [2.4165167634680578, 48.99465963659114]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2c3bb82ca15450a6edd132c1dbd7a25892e8ca9e", "fields": {"departement": "95", "stop_lat": 49.007306678768096, "code_postal": "95680", "stop_lon": 2.3952268608031857, "coord": [49.007306678768096, 2.3952268608031857], "stop_id": 5726612, "stop_desc": "FACE 20 RUE DU GENERAL ARCHINARD - 95680", "stop_name": "LES LIERRES - HERIVAUX"}, "geometry": {"type": "Point", "coordinates": [2.3952268608031857, 49.007306678768096]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "af3d7e8d43639267c3c58df4798530d5f74571b9", "fields": {"departement": "95", "stop_lat": 48.97224051683529, "code_postal": "95585", "stop_lon": 2.375626347962541, "coord": [48.97224051683529, 2.375626347962541], "stop_id": 5726614, "stop_desc": "FACE 2 BOULEVARD HENRI BERGSON - 95585", "stop_name": "LES SABLONS"}, "geometry": {"type": "Point", "coordinates": [2.375626347962541, 48.97224051683529]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f9fc2b2a066454b1ba7c15b32bcb3c803e547842", "fields": {"departement": "93", "stop_lat": 48.95220232733996, "code_postal": "93059", "stop_lon": 2.368666058938969, "coord": [48.95220232733996, 2.368666058938969], "stop_id": 5726619, "stop_desc": "AVENUE EMILE ZOLA - 93059", "stop_name": "LYCEE DE PIERREFITTE-SUR-SEINE"}, "geometry": {"type": "Point", "coordinates": [2.368666058938969, 48.95220232733996]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6d46ff1d06319285c5d9d914ac20e8a83cec78c2", "fields": {"departement": "93", "stop_lat": 48.96535124369496, "code_postal": "93059", "stop_lon": 2.362736845979033, "coord": [48.96535124369496, 2.362736845979033], "stop_id": 5726652, "stop_desc": "33 BOULEVARD JEAN MERMOZ - 93059", "stop_name": "ALCIDE D'ORBIGNY"}, "geometry": {"type": "Point", "coordinates": [2.362736845979033, 48.96535124369496]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9324f0ee889167e147e9296811126ef410e83a10", "fields": {"departement": "93", "stop_lat": 48.95849526144328, "code_postal": "93059", "stop_lon": 2.358489280339655, "coord": [48.95849526144328, 2.358489280339655], "stop_id": 5726654, "stop_desc": "68 AVENUE LENINE - 93059", "stop_name": "SUZANNE VALADON"}, "geometry": {"type": "Point", "coordinates": [2.358489280339655, 48.95849526144328]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4a9309f5bcb547d279d8b610e13031995f904a16", "fields": {"departement": "93", "stop_lat": 48.94811582811757, "code_postal": "93066", "stop_lon": 2.3572024701112992, "coord": [48.94811582811757, 2.3572024701112992], "stop_id": 5726657, "stop_desc": "11 AVENUE ROGER SEMAT - 93066", "stop_name": "GUYNEMER"}, "geometry": {"type": "Point", "coordinates": [2.3572024701112992, 48.94811582811757]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f89636bbfb69edceac81ed4f0b19e368e4b7fcf9", "fields": {"departement": "75", "stop_lat": 48.85650995705465, "code_postal": "75116", "stop_lon": 2.2859206081269443, "coord": [48.85650995705465, 2.2859206081269443], "stop_id": 5727647, "stop_desc": "22 AVENUE DU PRESIDENT KENNEDY - 75116", "stop_name": "PONT DE BIR-HAKEIM"}, "geometry": {"type": "Point", "coordinates": [2.2859206081269443, 48.85650995705465]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1135b48ed03f5d5ed4b57eed2753848d7b96576e", "fields": {"departement": "75", "stop_lat": 48.85437891360111, "code_postal": "75116", "stop_lon": 2.2836073987864585, "coord": [48.85437891360111, 2.2836073987864585], "stop_id": 5727650, "stop_desc": "FACE 46 AVENUE DU PRESIDENT KENNEDY - 75116", "stop_name": "LAMBALLE - ANKARA"}, "geometry": {"type": "Point", "coordinates": [2.2836073987864585, 48.85437891360111]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dcbb5c61232a0a584430e9d4388ccb6fbc2027fe", "fields": {"departement": "75", "stop_lat": 48.852112151408996, "code_postal": "75116", "stop_lon": 2.2794968277194116, "coord": [48.852112151408996, 2.2794968277194116], "stop_id": 5727659, "stop_desc": "116 AVENUE DU PRESIDENT KENNEDY - 75116", "stop_name": "RADIO FRANCE - PONT DE GRENELLE"}, "geometry": {"type": "Point", "coordinates": [2.2794968277194116, 48.852112151408996]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "572c4ff73e3095d345b036390457a4a23b3bc36c", "fields": {"departement": "75", "stop_lat": 48.84890136594033, "code_postal": "75116", "stop_lon": 2.275020053410374, "coord": [48.84890136594033, 2.275020053410374], "stop_id": 5727664, "stop_desc": "42 AVENUE DE VERSAILLES - 75116", "stop_name": "DEGAS"}, "geometry": {"type": "Point", "coordinates": [2.275020053410374, 48.84890136594033]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0df909676eb0cac5d1fd3c3f72e4da13bad61e50", "fields": {"departement": "75", "stop_lat": 48.84701297358328, "code_postal": "75116", "stop_lon": 2.273102239033009, "coord": [48.84701297358328, 2.273102239033009], "stop_id": 5727666, "stop_desc": "64 AVENUE DE VERSAILLES - 75116", "stop_name": "PONT MIRABEAU"}, "geometry": {"type": "Point", "coordinates": [2.273102239033009, 48.84701297358328]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b378c2acac3f7a9d1d36439d9abbd25ce73ef08f", "fields": {"departement": "92", "stop_lat": 48.840281265708, "code_postal": "92012", "stop_lon": 2.2345505488329875, "coord": [48.840281265708, 2.2345505488329875], "stop_id": 5727686, "stop_desc": "124 ROUTE DE LA REINE - 92012", "stop_name": "ANCIENNE MAIRIE DE BOULOGNE-BILLANCOURT"}, "geometry": {"type": "Point", "coordinates": [2.2345505488329875, 48.840281265708]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "35293ec8bca5ed9238806fb6aad8923a4a0355eb", "fields": {"departement": "92", "stop_lat": 48.84010126785559, "code_postal": "92012", "stop_lon": 2.234264973754274, "coord": [48.84010126785559, 2.234264973754274], "stop_id": 5727687, "stop_desc": "FACE 126 ROUTE DE LA REINE - 92012", "stop_name": "ANCIENNE MAIRIE DE BOULOGNE-BILLANCOURT"}, "geometry": {"type": "Point", "coordinates": [2.234264973754274, 48.84010126785559]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1c8803c8759eca5d909d0248db6aa37e3efac845", "fields": {"departement": "92", "stop_lat": 48.842750677411814, "code_postal": "92064", "stop_lon": 2.2223452964396566, "coord": [48.842750677411814, 2.2223452964396566], "stop_id": 5727692, "stop_desc": "QUAI DU PRESIDENT CARNOT - 92064", "stop_name": "PARC DE SAINT-CLOUD"}, "geometry": {"type": "Point", "coordinates": [2.2223452964396566, 48.842750677411814]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a0fdb9b66af4e05ec623decaa8655440de3bca2e", "fields": {"departement": "92", "stop_lat": 48.840795898892736, "code_postal": "92012", "stop_lon": 2.2271152138204995, "coord": [48.840795898892736, 2.2271152138204995], "stop_id": 5727695, "stop_desc": "5 BIS AV DU MARECHAL DE LATTRE DE TASSIGNY - 92012", "stop_name": "RHIN ET DANUBE."}, "geometry": {"type": "Point", "coordinates": [2.2271152138204995, 48.840795898892736]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "78d169f6f28a0332acb8e290865953fff8a31023", "fields": {"departement": "75", "stop_lat": 48.859873277650976, "code_postal": "75101", "stop_lon": 2.333849441440465, "coord": [48.859873277650976, 2.333849441440465], "stop_id": 5727699, "stop_desc": "QUAI FRANCOIS MITTERRAND - 75101", "stop_name": "QUAI FRANCOIS MITTERRAND"}, "geometry": {"type": "Point", "coordinates": [2.333849441440465, 48.859873277650976]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6a02ae157ac0e97bd3587b72061e73e3a5c1de60", "fields": {"departement": "75", "stop_lat": 48.859046477901266, "code_postal": "75101", "stop_lon": 2.338494169074047, "coord": [48.859046477901266, 2.338494169074047], "stop_id": 5727700, "stop_desc": "QUAI FRANCOIS MITTERRAND - 75101", "stop_name": "PONT DES ARTS"}, "geometry": {"type": "Point", "coordinates": [2.338494169074047, 48.859046477901266]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7c6e0cfc2eb12caedf2f8979a111fadc84260630", "fields": {"departement": "75", "stop_lat": 48.858057701289326, "code_postal": "75101", "stop_lon": 2.343560965223396, "coord": [48.858057701289326, 2.343560965223396], "stop_id": 5727701, "stop_desc": "FACE 22 QUAI DE LA MEGISSERIE - 75101", "stop_name": "PONT NEUF - QUAI DU LOUVRE"}, "geometry": {"type": "Point", "coordinates": [2.343560965223396, 48.858057701289326]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a50f0cff979e6bd8832fadc2271e26ab138252fa", "fields": {"departement": "93", "stop_lat": 48.945413056241726, "code_postal": "93073", "stop_lon": 2.568511744564486, "coord": [48.945413056241726, 2.568511744564486], "stop_id": 5747139, "stop_desc": "PISTE GARE ROUTIERE - 93073", "stop_name": "VERT GALANT RER"}, "geometry": {"type": "Point", "coordinates": [2.568511744564486, 48.945413056241726]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2e1e77176508380015190a782f1f266e37f26ff1", "fields": {"departement": "93", "stop_lat": 48.929295651530516, "code_postal": "93046", "stop_lon": 2.541106673510697, "coord": [48.929295651530516, 2.541106673510697], "stop_id": 5747147, "stop_desc": "49 AVENUE JEAN-JACQUES ROUSSEAU - 93046", "stop_name": "MAUROUARD"}, "geometry": {"type": "Point", "coordinates": [2.541106673510697, 48.929295651530516]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5e2b23299ea9f71dcfb2bca94c3320583291c335", "fields": {"departement": "93", "stop_lat": 48.92962844508479, "code_postal": "93046", "stop_lon": 2.540944311254965, "coord": [48.92962844508479, 2.540944311254965], "stop_id": 5747148, "stop_desc": "68 AVENUE JEAN-JACQUES ROUSSEAU - 93046", "stop_name": "MAUROUARD"}, "geometry": {"type": "Point", "coordinates": [2.540944311254965, 48.92962844508479]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "58f9f47a589a9d59755298b4755a91995c61e8e9", "fields": {"departement": "93", "stop_lat": 48.92586466008603, "code_postal": "93046", "stop_lon": 2.545143762663158, "coord": [48.92586466008603, 2.545143762663158], "stop_id": 5747150, "stop_desc": "FACE 35 RUE EUGENE MASSE - 93046", "stop_name": "JEAN-JACQUES ROUSSEAU"}, "geometry": {"type": "Point", "coordinates": [2.545143762663158, 48.92586466008603]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ff4ffd4d14a3d018bff9288015d35f0950d028a9", "fields": {"departement": "93", "stop_lat": 48.921905359266106, "code_postal": "93046", "stop_lon": 2.542864076399184, "coord": [48.921905359266106, 2.542864076399184], "stop_id": 5747152, "stop_desc": "FACE 4 AVENUE DU MARECHAL LECLERC - 93046", "stop_name": "PLACE DE LA LIBERATION"}, "geometry": {"type": "Point", "coordinates": [2.542864076399184, 48.921905359266106]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "33425d26b924dd2431b02b658f50fa2cdb920d2b", "fields": {"departement": "93", "stop_lat": 48.918806643655756, "code_postal": "93046", "stop_lon": 2.536510802957832, "coord": [48.918806643655756, 2.536510802957832], "stop_id": 5747153, "stop_desc": "10 AVENUE DU CONSUL GENERAL NORDLING - 93046", "stop_name": "MAIRIE DE LIVRY - GARGAN"}, "geometry": {"type": "Point", "coordinates": [2.536510802957832, 48.918806643655756]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "04ebd8764ad86eea00351bce2fc7df3114ff828d", "fields": {"departement": "93", "stop_lat": 48.919100903743015, "code_postal": "93046", "stop_lon": 2.537889229327745, "coord": [48.919100903743015, 2.537889229327745], "stop_id": 5747154, "stop_desc": "67 AVENUE DU MARECHAL LECLERC - 93046", "stop_name": "MAIRIE DE LIVRY - GARGAN"}, "geometry": {"type": "Point", "coordinates": [2.537889229327745, 48.919100903743015]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2a6854e9eb856901b6c508632a54343902553d5a", "fields": {"departement": "93", "stop_lat": 48.9146242550899, "code_postal": "93046", "stop_lon": 2.527604436444727, "coord": [48.9146242550899, 2.527604436444727], "stop_id": 5747158, "stop_desc": "74 AVENUE ARISTIDE BRIAND - 93046", "stop_name": "GAMBETTA"}, "geometry": {"type": "Point", "coordinates": [2.527604436444727, 48.9146242550899]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ffbc60187106563c127e2de9906b4d6f22a08d13", "fields": {"departement": "93", "stop_lat": 48.91078374510361, "code_postal": "93046", "stop_lon": 2.5119789583655017, "coord": [48.91078374510361, 2.5119789583655017], "stop_id": 5747161, "stop_desc": "2-4 AVENUE JULES GUESDE - 93046", "stop_name": "VICTOR HUGO - JULES GUESDE"}, "geometry": {"type": "Point", "coordinates": [2.5119789583655017, 48.91078374510361]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fd2b24c35549b29287e66f85784a045c9e36b3c7", "fields": {"departement": "93", "stop_lat": 48.910757442503375, "code_postal": "93046", "stop_lon": 2.5115289353873873, "coord": [48.910757442503375, 2.5115289353873873], "stop_id": 5747162, "stop_desc": "FACE 10 AVENUE JULES GUESDE - 93046", "stop_name": "VICTOR HUGO - JULES GUESDE"}, "geometry": {"type": "Point", "coordinates": [2.5115289353873873, 48.910757442503375]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "96bc40891ff26fb30f0f7ddd2b777e95ec78f99b", "fields": {"departement": "93", "stop_lat": 48.91571716671948, "code_postal": "93057", "stop_lon": 2.499587134063073, "coord": [48.91571716671948, 2.499587134063073], "stop_id": 5747167, "stop_desc": "AVENUE DE ROME - 93057", "stop_name": "CIMETIERE DE LES_PAVILLONS-SOUS-BOIS"}, "geometry": {"type": "Point", "coordinates": [2.499587134063073, 48.91571716671948]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ab3a83cd5bcf2ca225b2dc25e7a46e7124023e38", "fields": {"departement": "93", "stop_lat": 48.9089622306807, "code_postal": "93010", "stop_lon": 2.4902812877065927, "coord": [48.9089622306807, 2.4902812877065927], "stop_id": 5747174, "stop_desc": "CHEMIN DU PONT - 93010", "stop_name": "HOPITAL JEAN VERDIER"}, "geometry": {"type": "Point", "coordinates": [2.4902812877065927, 48.9089622306807]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9d2e7f4e09fa37f555d534c40fbeb92218dbacf1", "fields": {"departement": "93", "stop_lat": 48.90695328855752, "code_postal": "93010", "stop_lon": 2.487003347246266, "coord": [48.90695328855752, 2.487003347246266], "stop_id": 5747176, "stop_desc": "177 AVENUE GALLIENI - 93010", "stop_name": "PASTEUR - HOPITAL JEAN VERDIER"}, "geometry": {"type": "Point", "coordinates": [2.487003347246266, 48.90695328855752]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "abaac909b1c71ad70c58fc4152417a61975ab102", "fields": {"departement": "93", "stop_lat": 48.90579255204801, "code_postal": "93010", "stop_lon": 2.480837851423006, "coord": [48.90579255204801, 2.480837851423006], "stop_id": 5747179, "stop_desc": "112 AVENUE GALLIENI - 93010", "stop_name": "AUGUSTE POLISSARD"}, "geometry": {"type": "Point", "coordinates": [2.480837851423006, 48.90579255204801]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "685fed1ef5f03895f6599a9a34f94215b00223ab", "fields": {"departement": "93", "stop_lat": 48.90590089960924, "code_postal": "93008", "stop_lon": 2.46457388666915, "coord": [48.90590089960924, 2.46457388666915], "stop_id": 5747184, "stop_desc": "FACE 412 AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "RUE DES PEUPLIERS"}, "geometry": {"type": "Point", "coordinates": [2.46457388666915, 48.90590089960924]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5109e5fa85cdacdd4839c0a83e3946cb2bba947d", "fields": {"departement": "93", "stop_lat": 48.905486896676855, "code_postal": "93008", "stop_lon": 2.4651318210827156, "coord": [48.905486896676855, 2.4651318210827156], "stop_id": 5747185, "stop_desc": "412 AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "RUE DES PEUPLIERS"}, "geometry": {"type": "Point", "coordinates": [2.4651318210827156, 48.905486896676855]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4e40f0a8c33df1346d6ab1bcae30e9a584685a77", "fields": {"departement": "93", "stop_lat": 48.911252186179276, "code_postal": "93008", "stop_lon": 2.4420083335197096, "coord": [48.911252186179276, 2.4420083335197096], "stop_id": 5747192, "stop_desc": "AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "LIEUTENANT LEBRUN"}, "geometry": {"type": "Point", "coordinates": [2.4420083335197096, 48.911252186179276]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2c6ea494969cf7241302e03c9fa384e974654e86", "fields": {"departement": "93", "stop_lat": 48.91229909660558, "code_postal": "93008", "stop_lon": 2.436856512880611, "coord": [48.91229909660558, 2.436856512880611], "stop_id": 5747195, "stop_desc": "AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "ESCADRILLE NORMANDIE NIEMEN - PAUL VAILLANT-COUTURIER-TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.436856512880611, 48.91229909660558]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f875ba7394b26837a7931f1a1b9ac49d254e8207", "fields": {"departement": "93", "stop_lat": 48.90341697332724, "code_postal": "93055", "stop_lon": 2.4167997882929195, "coord": [48.90341697332724, 2.4167997882929195], "stop_id": 5747204, "stop_desc": "FACE 210 AVENUE DU GENERAL LECLERC - 93055", "stop_name": "CHEMIN DES VIGNES"}, "geometry": {"type": "Point", "coordinates": [2.4167997882929195, 48.90341697332724]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b56f346a7f3fb70f2b9a15af207883b0449aa83e", "fields": {"departement": "93", "stop_lat": 48.891535699652785, "code_postal": "93055", "stop_lon": 2.4024571717916654, "coord": [48.891535699652785, 2.4024571717916654], "stop_id": 5747218, "stop_desc": "2-8 RUE HOCHE - 93055", "stop_name": "HOCHE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.4024571717916654, 48.891535699652785]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d61952695d241608564017341ae6c573e0ee1ff7", "fields": {"departement": "75", "stop_lat": 48.888620105775956, "code_postal": "75119", "stop_lon": 2.392041315664997, "coord": [48.888620105775956, 2.392041315664997], "stop_id": 5747219, "stop_desc": "FACE 208 AVENUE JEAN JAURES - 75119", "stop_name": "PORTE DE PANTIN - METRO"}, "geometry": {"type": "Point", "coordinates": [2.392041315664997, 48.888620105775956]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ad7995cfef6fd99441226bd25de8ef913f394bb3", "fields": {"departement": "75", "stop_lat": 48.88842234356189, "code_postal": "75119", "stop_lon": 2.392136505883537, "coord": [48.88842234356189, 2.392136505883537], "stop_id": 5747220, "stop_desc": "204-206 AVENUE JEAN JAURES - 75119", "stop_name": "PORTE DE PANTIN - METRO"}, "geometry": {"type": "Point", "coordinates": [2.392136505883537, 48.88842234356189]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7431b5f67e8dfc351af14d095baa0f2cbb055a1f", "fields": {"departement": "75", "stop_lat": 48.880711840653206, "code_postal": "75110", "stop_lon": 2.3644803008586255, "coord": [48.880711840653206, 2.3644803008586255], "stop_id": 5747227, "stop_desc": "217 RUE DU FAUBOURG SAINT-MARTIN - 75110", "stop_name": "LOUIS BLANC"}, "geometry": {"type": "Point", "coordinates": [2.3644803008586255, 48.880711840653206]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fbd086414620a4ce03d361efff58eff28f0d6962", "fields": {"departement": "75", "stop_lat": 48.878384730659775, "code_postal": "75110", "stop_lon": 2.361753913742779, "coord": [48.878384730659775, 2.361753913742779], "stop_id": 5747229, "stop_desc": "FACE 186 RUE DU FAUBOURG SAINT-MARTIN - 75110", "stop_name": "CHATEAU LANDON"}, "geometry": {"type": "Point", "coordinates": [2.361753913742779, 48.878384730659775]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8961cc6d6918b1f0a0866b252dc998aee6e74784", "fields": {"departement": "93", "stop_lat": 48.91398334545437, "code_postal": "93057", "stop_lon": 2.492327766588215, "coord": [48.91398334545437, 2.492327766588215], "stop_id": 5747239, "stop_desc": "BOULEVARD DE PARIS - 93057", "stop_name": "LYCEE CLAUDE-NICOLAS LEDOUX"}, "geometry": {"type": "Point", "coordinates": [2.492327766588215, 48.91398334545437]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1031cdd45cb497899f15a1c4d3cad827b97bedc2", "fields": {"departement": "93", "stop_lat": 48.910494778495185, "code_postal": "93057", "stop_lon": 2.5129187507167723, "coord": [48.910494778495185, 2.5129187507167723], "stop_id": 5747240, "stop_desc": "242 AVENUE ARISTIDE BRIAND - 93057", "stop_name": "VICTOR HUGO - JEAN MOULIN"}, "geometry": {"type": "Point", "coordinates": [2.5129187507167723, 48.910494778495185]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d5943727e8a65fbd490df308556afd14a6734767", "fields": {"departement": "95", "stop_lat": 48.95446717548616, "code_postal": "95018", "stop_lon": 2.219736570739411, "coord": [48.95446717548616, 2.219736570739411], "stop_id": 5747247, "stop_desc": "ALLEE GUY DE MAUPASSANT - 95018", "stop_name": "BEETHOVEN"}, "geometry": {"type": "Point", "coordinates": [2.219736570739411, 48.95446717548616]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0b761ef583bb5bbef4abdb453c3672937191e2cf", "fields": {"departement": "95", "stop_lat": 48.95019067794116, "code_postal": "95018", "stop_lon": 2.2305665558582644, "coord": [48.95019067794116, 2.2305665558582644], "stop_id": 5747252, "stop_desc": "RUE JEAN LURCAT - 95018", "stop_name": "GARE DU VAL D'ARGENTEUIL"}, "geometry": {"type": "Point", "coordinates": [2.2305665558582644, 48.95019067794116]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d866dacb61d1f58e712eb78f4f936b934bc9a79e", "fields": {"departement": "95", "stop_lat": 48.946570916246806, "code_postal": "95018", "stop_lon": 2.232716089171262, "coord": [48.946570916246806, 2.232716089171262], "stop_id": 5747254, "stop_desc": "151-153 AVENUE MAURICE UTRILLO - 95018", "stop_name": "PLACE FRANCOIS RABELAIS"}, "geometry": {"type": "Point", "coordinates": [2.232716089171262, 48.946570916246806]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1eeefa26cb9278ef0859d64b465ca33b7e40bb67", "fields": {"departement": "75", "stop_lat": 48.827128133014696, "code_postal": "75113", "stop_lon": 2.3666437779895237, "coord": [48.827128133014696, 2.3666437779895237], "stop_id": 3893483, "stop_desc": "76 RUE DE TOLBIAC - 75113", "stop_name": "OLYMPIADES"}, "geometry": {"type": "Point", "coordinates": [2.3666437779895237, 48.827128133014696]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9d2c7b374ce7d90d6f1eef81f95dfda16986a2b8", "fields": {"departement": "75", "stop_lat": 48.826374409435104, "code_postal": "75113", "stop_lon": 2.3611031985372395, "coord": [48.826374409435104, 2.3611031985372395], "stop_id": 3893487, "stop_desc": "118 RUE DE TOLBIAC - 75113", "stop_name": "CHOISY - TOLBIAC"}, "geometry": {"type": "Point", "coordinates": [2.3611031985372395, 48.826374409435104]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bf589313eda5859ae8f75053bd78d633eec71dc2", "fields": {"departement": "75", "stop_lat": 48.82606962672378, "code_postal": "75113", "stop_lon": 2.3567199660344915, "coord": [48.82606962672378, 2.3567199660344915], "stop_id": 3893490, "stop_desc": "151 RUE DE TOLBIAC - 75113", "stop_name": "ITALIE - TOLBIAC"}, "geometry": {"type": "Point", "coordinates": [2.3567199660344915, 48.82606962672378]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2013e856909e0aa578abc345014959f68f4ed2f3", "fields": {"departement": "75", "stop_lat": 48.82576533408557, "code_postal": "75113", "stop_lon": 2.3457621853067754, "coord": [48.82576533408557, 2.3457621853067754], "stop_id": 3893496, "stop_desc": "225 RUE DE TOLBIAC - 75113", "stop_name": "VERGNIAUD"}, "geometry": {"type": "Point", "coordinates": [2.3457621853067754, 48.82576533408557]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6be34e309dfd30215ecae27024f4179ad9ce24cf", "fields": {"departement": "75", "stop_lat": 48.827895587198704, "code_postal": "75114", "stop_lon": 2.3318232662921696, "coord": [48.827895587198704, 2.3318232662921696], "stop_id": 3893500, "stop_desc": "20 RUE D'ALESIA - 75114", "stop_name": "LA TOMBE ISSOIRE"}, "geometry": {"type": "Point", "coordinates": [2.3318232662921696, 48.827895587198704]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e1f460797c2d9f5fb032f35a7b9514aae1eb03ad", "fields": {"departement": "75", "stop_lat": 48.82925201218562, "code_postal": "75114", "stop_lon": 2.3231789185075455, "coord": [48.82925201218562, 2.3231789185075455], "stop_id": 3893506, "stop_desc": "114 RUE D'ALESIA - 75114", "stop_name": "LES PLANTES"}, "geometry": {"type": "Point", "coordinates": [2.3231789185075455, 48.82925201218562]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2a95279a256d9901baef770d317a2e288a97d6e4", "fields": {"departement": "75", "stop_lat": 48.8316233800827, "code_postal": "75114", "stop_lon": 2.3143839252787277, "coord": [48.8316233800827, 2.3143839252787277], "stop_id": 3893511, "stop_desc": "201-203 RUE D'ALESIA - 75114", "stop_name": "PLAISANCE - HOPITAL SAINT-JOSEPH"}, "geometry": {"type": "Point", "coordinates": [2.3143839252787277, 48.8316233800827]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7e2f60b1c2215075014885bb331fc10a6a54d2cd", "fields": {"departement": "75", "stop_lat": 48.83518873126143, "code_postal": "75115", "stop_lon": 2.303014262276221, "coord": [48.83518873126143, 2.303014262276221], "stop_id": 3893519, "stop_desc": "2 RUE DE VOUILLE - 75115", "stop_name": "PLACE CHARLES VALLIN"}, "geometry": {"type": "Point", "coordinates": [2.303014262276221, 48.83518873126143]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "79f12e397caf2b6e3cfa292003347631dce5269e", "fields": {"departement": "75", "stop_lat": 48.839534893458044, "code_postal": "75115", "stop_lon": 2.2916151182756663, "coord": [48.839534893458044, 2.2916151182756663], "stop_id": 3893522, "stop_desc": "145 RUE DE LA CONVENTION - 75115", "stop_name": "CONVENTION - LECOURBE"}, "geometry": {"type": "Point", "coordinates": [2.2916151182756663, 48.839534893458044]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e03dec67068b150f35a8b5bdbc234363d043f167", "fields": {"departement": "75", "stop_lat": 48.842381111208454, "code_postal": "75115", "stop_lon": 2.28473634755989, "coord": [48.842381111208454, 2.28473634755989], "stop_id": 3893527, "stop_desc": "FACE 77 RUE DE LA CONVENTION - 75115", "stop_name": "BOUCICAUT"}, "geometry": {"type": "Point", "coordinates": [2.28473634755989, 48.842381111208454]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8595bfeea5d73e7c3e00229178484746d67a0262", "fields": {"departement": "75", "stop_lat": 48.84563151207833, "code_postal": "75115", "stop_lon": 2.2781559377851237, "coord": [48.84563151207833, 2.2781559377851237], "stop_id": 3893530, "stop_desc": "5 RUE DE LA CONVENTION - 75115", "stop_name": "JAVEL"}, "geometry": {"type": "Point", "coordinates": [2.2781559377851237, 48.84563151207833]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8ef84ff297a76b21be6c9242d2d93925aa74042a", "fields": {"departement": "75", "stop_lat": 48.84570307916629, "code_postal": "75115", "stop_lon": 2.2774886113337085, "coord": [48.84570307916629, 2.2774886113337085], "stop_id": 3893531, "stop_desc": "2 RUE DE LA CONVENTION - 75115", "stop_name": "JAVEL"}, "geometry": {"type": "Point", "coordinates": [2.2774886113337085, 48.84570307916629]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0df62dd9b4346d06eb26f4c50fa17473e0de044d", "fields": {"departement": "75", "stop_lat": 48.83817802656563, "code_postal": "75116", "stop_lon": 2.257864060448581, "coord": [48.83817802656563, 2.257864060448581], "stop_id": 3893539, "stop_desc": "232 AVENUE DE VERSAILLES - 75116", "stop_name": "PORTE DE SAINT-CLOUD - MURAT"}, "geometry": {"type": "Point", "coordinates": [2.257864060448581, 48.83817802656563]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1df4ee40eaef16681548fa7feba5c7cb09fde84e", "fields": {"departement": "93", "stop_lat": 48.91523878870637, "code_postal": "93001", "stop_lon": 2.3707707858062474, "coord": [48.91523878870637, 2.3707707858062474], "stop_id": 3908820, "stop_desc": "FACE 36 RUE DU LANDY - 93001", "stop_name": "CANAL"}, "geometry": {"type": "Point", "coordinates": [2.3707707858062474, 48.91523878870637]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "519976d235aa19056f4c84e30136f45d28e345b1", "fields": {"departement": "93", "stop_lat": 48.90706163028774, "code_postal": "93001", "stop_lon": 2.3668390863978126, "coord": [48.90706163028774, 2.3668390863978126], "stop_id": 3908822, "stop_desc": "0 R WALDECK ROCHET - 93001", "stop_name": "FRONT POPULAIRE-GARDINOUX"}, "geometry": {"type": "Point", "coordinates": [2.3668390863978126, 48.90706163028774]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2c1bbdb145f5a1fb0bde92571d81b69fdfee1023", "fields": {"departement": "92", "stop_lat": 48.78378902648166, "code_postal": "92032", "stop_lon": 2.282633030295862, "coord": [48.78378902648166, 2.282633030295862], "stop_id": 3909009, "stop_desc": "FACE 84 AVENUE JEAN MOULIN - 92032", "stop_name": "CARREFOUR DES MOUILLEBOEUFS"}, "geometry": {"type": "Point", "coordinates": [2.282633030295862, 48.78378902648166]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "093064cc132cffe9959cc27edbabe2fc106bb8aa", "fields": {"departement": "92", "stop_lat": 48.78570194090637, "code_postal": "92032", "stop_lon": 2.3025164263735864, "coord": [48.78570194090637, 2.3025164263735864], "stop_id": 3909015, "stop_desc": "FACE 119 AVENUE GABRIEL PERI - 92032", "stop_name": "LES BLAGIS"}, "geometry": {"type": "Point", "coordinates": [2.3025164263735864, 48.78570194090637]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6a77e316ecd6817dd6405fd53b330c25885604b3", "fields": {"departement": "92", "stop_lat": 48.791260868710474, "code_postal": "92032", "stop_lon": 2.2892906255623, "coord": [48.791260868710474, 2.2892906255623], "stop_id": 3909021, "stop_desc": "AVENUE JEANNE ET MAURICE DOLIVET - 92032", "stop_name": "THEATRE DES SOURCES"}, "geometry": {"type": "Point", "coordinates": [2.2892906255623, 48.791260868710474]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c76ff8e07ba7ead318c4ea7b48145d1172b6cfa5", "fields": {"departement": "92", "stop_lat": 48.81391095719406, "code_postal": "92023", "stop_lon": 2.2720136091014633, "coord": [48.81391095719406, 2.2720136091014633], "stop_id": 3909031, "stop_desc": "RUE DE FLEURY - 92023", "stop_name": "GARE DE CLAMART"}, "geometry": {"type": "Point", "coordinates": [2.2720136091014633, 48.81391095719406]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5403e4d58cb2f899a9f1a56aa706a9fca82715bc", "fields": {"departement": "92", "stop_lat": 48.81260854724898, "code_postal": "92023", "stop_lon": 2.258501942338852, "coord": [48.81260854724898, 2.258501942338852], "stop_id": 3909036, "stop_desc": "23 R DU PONT D'AMOUR - 92023", "stop_name": "PONT D'AMOUR - HOPITAL PERCY"}, "geometry": {"type": "Point", "coordinates": [2.258501942338852, 48.81260854724898]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4ac762ac231f5910016aa947e10dc91296ce3518", "fields": {"departement": "92", "stop_lat": 48.80171076912714, "code_postal": "92023", "stop_lon": 2.2654845936995978, "coord": [48.80171076912714, 2.2654845936995978], "stop_id": 3909047, "stop_desc": "FACE 28 RUE PIERRE ET MARIE CURIE - 92023", "stop_name": "MARCHE DE CLAMART"}, "geometry": {"type": "Point", "coordinates": [2.2654845936995978, 48.80171076912714]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f971bd1cb47f5478ca494e32efff8a25d6d36ce8", "fields": {"departement": "92", "stop_lat": 48.799059201674176, "code_postal": "92023", "stop_lon": 2.2652297633702143, "coord": [48.799059201674176, 2.2652297633702143], "stop_id": 3909053, "stop_desc": "12 R DE BIEVRES - 92023", "stop_name": "RUE DE BIEVRES"}, "geometry": {"type": "Point", "coordinates": [2.2652297633702143, 48.799059201674176]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5d654d878e1a7bc9b3451ca139d35e4644c44984", "fields": {"departement": "92", "stop_lat": 48.79231208036079, "code_postal": "92023", "stop_lon": 2.2556080229887487, "coord": [48.79231208036079, 2.2556080229887487], "stop_id": 3909066, "stop_desc": "76 BIS R DU PARC - 92023", "stop_name": "RUE DU PARC"}, "geometry": {"type": "Point", "coordinates": [2.2556080229887487, 48.79231208036079]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b6e276a49667b1962b7021e5ed37e757cf8cea2b", "fields": {"departement": "92", "stop_lat": 48.78997427565056, "code_postal": "92023", "stop_lon": 2.254237832172685, "coord": [48.78997427565056, 2.254237832172685], "stop_id": 3909069, "stop_desc": "145 RUE DE LA PORTE DE TRIVAUX - 92023", "stop_name": "JARDIN PARISIEN - HOPITAL ANTOINE BECLERE"}, "geometry": {"type": "Point", "coordinates": [2.254237832172685, 48.78997427565056]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0d2710d4c57ca88778b52db03c9bd314aca1de5d", "fields": {"departement": "92", "stop_lat": 48.78349096523256, "code_postal": "92023", "stop_lon": 2.2385391109424915, "coord": [48.78349096523256, 2.2385391109424915], "stop_id": 3909076, "stop_desc": "48 RUE DE NORMANDIE - 92023", "stop_name": "CRECHE DE NORMANDIE"}, "geometry": {"type": "Point", "coordinates": [2.2385391109424915, 48.78349096523256]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dac5f49734b18539e20d846027d188f214a25c90", "fields": {"departement": "92", "stop_lat": 48.78258847798476, "code_postal": "92023", "stop_lon": 2.234188600918894, "coord": [48.78258847798476, 2.234188600918894], "stop_id": 3909077, "stop_desc": "54 R DANTON - 92023", "stop_name": "REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.234188600918894, 48.78258847798476]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "00703ad9b879a7d530fd6973aeab811ab51e747a", "fields": {"departement": "92", "stop_lat": 48.7806549987283, "code_postal": "92023", "stop_lon": 2.2329684194167303, "coord": [48.7806549987283, 2.2329684194167303], "stop_id": 3909079, "stop_desc": "41 R DU COMMANDANT DUVAL - 92023", "stop_name": "MAISON DE QUARTIER DU PETIT CLAMART"}, "geometry": {"type": "Point", "coordinates": [2.2329684194167303, 48.7806549987283]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7fcbca4208451a8883afa1bf11b203c07f3cdd75", "fields": {"departement": "92", "stop_lat": 48.780618867791894, "code_postal": "92023", "stop_lon": 2.232764489123585, "coord": [48.780618867791894, 2.232764489123585], "stop_id": 3909080, "stop_desc": "R DE LA BOURCILLIERE - 92023", "stop_name": "MAISON DE QUARTIER DU PETIT CLAMART"}, "geometry": {"type": "Point", "coordinates": [2.232764489123585, 48.780618867791894]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fb2d855ce475400ec6cdf55aa2f83e1bb5447b7b", "fields": {"departement": "92", "stop_lat": 48.777812233827, "code_postal": "92023", "stop_lon": 2.2300910420566633, "coord": [48.777812233827, 2.2300910420566633], "stop_id": 3909083, "stop_desc": "76 R DE LA GAITE - 92023", "stop_name": "MAISON DE QUARTIER - ANDRE CHARRE"}, "geometry": {"type": "Point", "coordinates": [2.2300910420566633, 48.777812233827]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fc067fa1ad966c15f1fa84be32e7001839a7dcba", "fields": {"departement": "92", "stop_lat": 48.78656178483337, "code_postal": "92023", "stop_lon": 2.245959826099128, "coord": [48.78656178483337, 2.245959826099128], "stop_id": 3909088, "stop_desc": "R DE PROVENCE - 92023", "stop_name": "CIMETIERE INTERCOMMUNAL"}, "geometry": {"type": "Point", "coordinates": [2.245959826099128, 48.78656178483337]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1689688e0404f82954b6fea2ea1afdc1699902ba", "fields": {"departement": "92", "stop_lat": 48.78926265301571, "code_postal": "92023", "stop_lon": 2.2520081681720394, "coord": [48.78926265301571, 2.2520081681720394], "stop_id": 3909089, "stop_desc": "169 ROUTE DE LA PORTE DE TRIVAUX - 92023", "stop_name": "EUGENE BEAUJARD"}, "geometry": {"type": "Point", "coordinates": [2.2520081681720394, 48.78926265301571]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9327119d5185c165c91226fff498fb6450618eb6", "fields": {"departement": "92", "stop_lat": 48.808437253531984, "code_postal": "92023", "stop_lon": 2.257052270478873, "coord": [48.808437253531984, 2.257052270478873], "stop_id": 3909095, "stop_desc": "30 BIS R JEAN GEORGET - 92023", "stop_name": "JEAN GEORGET"}, "geometry": {"type": "Point", "coordinates": [2.257052270478873, 48.808437253531984]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ae5e68779083e5e6a8280dc13acff37f42508a39", "fields": {"departement": "92", "stop_lat": 48.78901890772784, "code_postal": "92032", "stop_lon": 2.280287920737367, "coord": [48.78901890772784, 2.280287920737367], "stop_id": 3909101, "stop_desc": "1-3 R DE BELLEVUE - 92032", "stop_name": "BELLEVUE - VILDE"}, "geometry": {"type": "Point", "coordinates": [2.280287920737367, 48.78901890772784]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bc606a7dc111522679aca8a2095d5f34ca157a40", "fields": {"departement": "92", "stop_lat": 48.78378902648166, "code_postal": "92032", "stop_lon": 2.282633030295862, "coord": [48.78378902648166, 2.282633030295862], "stop_id": 3909105, "stop_desc": "FACE 84 AVENUE JEAN MOULIN - 92032", "stop_name": "CARREFOUR DES MOUILLEBOEUFS"}, "geometry": {"type": "Point", "coordinates": [2.282633030295862, 48.78378902648166]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0a94cfc406a6be5d294bb7eb578a5d3d78fad188", "fields": {"departement": "92", "stop_lat": 48.78824246516923, "code_postal": "92032", "stop_lon": 2.2932652482672524, "coord": [48.78824246516923, 2.2932652482672524], "stop_id": 3909108, "stop_desc": "25 AVENUE LOMBART - 92032", "stop_name": "FONTENAY-AUX-ROSES RER"}, "geometry": {"type": "Point", "coordinates": [2.2932652482672524, 48.78824246516923]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "840cff689ef07f0b49d686d9cddaf04b6aa58197", "fields": {"departement": "92", "stop_lat": 48.793990857323564, "code_postal": "92032", "stop_lon": 2.283819424118415, "coord": [48.793990857323564, 2.283819424118415], "stop_id": 3909121, "stop_desc": "FACE 1-1BIS R ANDRE SALEL - 92032", "stop_name": "ANDRE SALEL"}, "geometry": {"type": "Point", "coordinates": [2.283819424118415, 48.793990857323564]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b2f4045a86f716656c57294735300518e2e83e8b", "fields": {"departement": "92", "stop_lat": 48.79323298839284, "code_postal": "92032", "stop_lon": 2.2777394466318053, "coord": [48.79323298839284, 2.2777394466318053], "stop_id": 3909123, "stop_desc": "R DURAND BENECH - 92032", "stop_name": "JEAN MONNET"}, "geometry": {"type": "Point", "coordinates": [2.2777394466318053, 48.79323298839284]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "45ada05966052c20423fa4b12c75191cb12e5370", "fields": {"departement": "92", "stop_lat": 48.776711452918306, "code_postal": "92060", "stop_lon": 2.2466026986059076, "coord": [48.776711452918306, 2.2466026986059076], "stop_id": 3909814, "stop_desc": "7 AVENUE DESCARTES - 92060", "stop_name": "GALILEE"}, "geometry": {"type": "Point", "coordinates": [2.2466026986059076, 48.776711452918306]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bc5a170c921e68455c95ec747a76c7de42cbb6ad", "fields": {"departement": "92", "stop_lat": 48.77639883447205, "code_postal": "92060", "stop_lon": 2.2492142676281586, "coord": [48.77639883447205, 2.2492142676281586], "stop_id": 3909816, "stop_desc": "1 AVENUE DESCARTES - 92060", "stop_name": "LANGEVIN"}, "geometry": {"type": "Point", "coordinates": [2.2492142676281586, 48.77639883447205]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fecd08f51df5b101e7a1f38f369f1e29c2dec702", "fields": {"departement": "92", "stop_lat": 48.77662285651918, "code_postal": "92060", "stop_lon": 2.248302745641102, "coord": [48.77662285651918, 2.248302745641102], "stop_id": 3909817, "stop_desc": "2 AVENUE DESCARTES - 92060", "stop_name": "LANGEVIN"}, "geometry": {"type": "Point", "coordinates": [2.248302745641102, 48.77662285651918]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f872bc1b7186d46167de091318036f61afa68e7e", "fields": {"departement": "92", "stop_lat": 48.77974342139406, "code_postal": "92071", "stop_lon": 2.28046129206943, "coord": [48.77974342139406, 2.28046129206943], "stop_id": 3909823, "stop_desc": "FACE 3 AV DU PLESSIS - 92071", "stop_name": "ROBINSON RER"}, "geometry": {"type": "Point", "coordinates": [2.28046129206943, 48.77974342139406]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4e4655ab11cb7fbcdf0cdb22988efd011673a8dd", "fields": {"departement": "92", "stop_lat": 48.77639883447205, "code_postal": "92060", "stop_lon": 2.2492142676281586, "coord": [48.77639883447205, 2.2492142676281586], "stop_id": 3909832, "stop_desc": "1 AVENUE DESCARTES - 92060", "stop_name": "LANGEVIN"}, "geometry": {"type": "Point", "coordinates": [2.2492142676281586, 48.77639883447205]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "37fe7ed5eec27b34290c2f27d6e165ee6fe3f516", "fields": {"departement": "75", "stop_lat": 48.838778695962546, "code_postal": "75112", "stop_lon": 2.4606240718932018, "coord": [48.838778695962546, 2.4606240718932018], "stop_id": 3922296, "stop_desc": "AV DE NOGENT - 75112", "stop_name": "PORTE JAUNE"}, "geometry": {"type": "Point", "coordinates": [2.4606240718932018, 48.838778695962546]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8eb8ba38cc33d13f4ff358ea94a0e45cb54ca790", "fields": {"departement": "94", "stop_lat": 48.83547370371285, "code_postal": "94052", "stop_lon": 2.474802599415442, "coord": [48.83547370371285, 2.474802599415442], "stop_id": 3922298, "stop_desc": "12 GR CHARLES DE GAULLE - 94052", "stop_name": "PLACE DU GENERAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.474802599415442, 48.83547370371285]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7bf90387f8af99bddda48d5775778a67bc8df959", "fields": {"departement": "94", "stop_lat": 48.83631306496527, "code_postal": "94052", "stop_lon": 2.4794610851063337, "coord": [48.83631306496527, 2.4794610851063337], "stop_id": 3922299, "stop_desc": "60 GRANDE RUE CHARLES DE GAULLE - 94052", "stop_name": "RUE DE BEAUTE"}, "geometry": {"type": "Point", "coordinates": [2.4794610851063337, 48.83631306496527]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d022b046b25b365a5b78cfd5dc863d6fccf6da12", "fields": {"departement": "94", "stop_lat": 48.83550556446465, "code_postal": "94052", "stop_lon": 2.4927330950685254, "coord": [48.83550556446465, 2.4927330950685254], "stop_id": 3922302, "stop_desc": "26 BIS RUE JACQUES KABLE - 94052", "stop_name": "VIADUC"}, "geometry": {"type": "Point", "coordinates": [2.4927330950685254, 48.83550556446465]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "628c82352c97568b32b7978261a9eb21ef2f9253", "fields": {"departement": "94", "stop_lat": 48.83593023716701, "code_postal": "94058", "stop_lon": 2.5106240895836107, "coord": [48.83593023716701, 2.5106240895836107], "stop_id": 3922308, "stop_desc": "16 ALLEE GUY MOQUET - 94058", "stop_name": "PLACE BEAUFRANCHET"}, "geometry": {"type": "Point", "coordinates": [2.5106240895836107, 48.83593023716701]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6f12203c15a980a3e4a0e0994ab540410f1a9e13", "fields": {"departement": "75", "stop_lat": 48.898001763801254, "code_postal": "75118", "stop_lon": 2.3701735048124477, "coord": [48.898001763801254, 2.3701735048124477], "stop_id": 3922450, "stop_desc": "215 RUE D'AUBERVILLIERS - 75118", "stop_name": "PORTE D'AUBERVILLIERS - MACDONALD"}, "geometry": {"type": "Point", "coordinates": [2.3701735048124477, 48.898001763801254]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "91de8b566cc93d70376bac818240432ad30d70d0", "fields": {"departement": "75", "stop_lat": 48.87984885258133, "code_postal": "75117", "stop_lon": 2.2830904982986158, "coord": [48.87984885258133, 2.2830904982986158], "stop_id": 3926132, "stop_desc": "11 BIS BOULEVARD PERSHING - 75117", "stop_name": "PORTE MAILLOT - PERSHING"}, "geometry": {"type": "Point", "coordinates": [2.2830904982986158, 48.87984885258133]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "93f8d61bd8f3c1fd1589e745f5fd5e05445ae757", "fields": {"departement": "75", "stop_lat": 48.889580290177456, "code_postal": "75117", "stop_lon": 2.302555840141141, "coord": [48.889580290177456, 2.302555840141141], "stop_id": 3926144, "stop_desc": "106 BOULEVARD BERTHIER - 75117", "stop_name": "PORTE D'ASNIERES"}, "geometry": {"type": "Point", "coordinates": [2.302555840141141, 48.889580290177456]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "940120295cb401563f7177005953398d958b787f", "fields": {"departement": "75", "stop_lat": 48.8976010161314, "code_postal": "75117", "stop_lon": 2.3228332150358777, "coord": [48.8976010161314, 2.3228332150358777], "stop_id": 3926152, "stop_desc": "46 BOULEVARD BESSIERES - 75117", "stop_name": "PORTE POUCHET"}, "geometry": {"type": "Point", "coordinates": [2.3228332150358777, 48.8976010161314]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "59b9eb429a78c9931f25f5fe9c7458ad82390f0f", "fields": {"departement": "75", "stop_lat": 48.89745787204729, "code_postal": "75118", "stop_lon": 2.329975814491889, "coord": [48.89745787204729, 2.329975814491889], "stop_id": 3926155, "stop_desc": "151 BOULEVARD NEY - 75118", "stop_name": "PORTE DE SAINT-OUEN - HOPITAL BICHAT"}, "geometry": {"type": "Point", "coordinates": [2.329975814491889, 48.89745787204729]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6d6f2ee4ea17a01b01f177808cb1f2a9ac68cbfe", "fields": {"departement": "75", "stop_lat": 48.84077310974983, "code_postal": "75115", "stop_lon": 2.3164086680713942, "coord": [48.84077310974983, 2.3164086680713942], "stop_id": 3926184, "stop_desc": "65 BOULEVARD DE VAUGIRARD - 75115", "stop_name": "ARMORIQUE - MUSEE POSTAL"}, "geometry": {"type": "Point", "coordinates": [2.3164086680713942, 48.84077310974983]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "36dd58e3c79e50eeb3bd6a2015ff7f9f730584a9", "fields": {"departement": "75", "stop_lat": 48.84109667094733, "code_postal": "75115", "stop_lon": 2.316463002196349, "coord": [48.84109667094733, 2.316463002196349], "stop_id": 3926185, "stop_desc": "44 BOULEVARD DE VAUGIRARD - 75115", "stop_name": "ARMORIQUE - MUSEE POSTAL"}, "geometry": {"type": "Point", "coordinates": [2.316463002196349, 48.84109667094733]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "291cc5bd61c88c63692a40022dbd8d7fb56314db", "fields": {"departement": "75", "stop_lat": 48.84454903838894, "code_postal": "75106", "stop_lon": 2.3247134823772995, "coord": [48.84454903838894, 2.3247134823772995], "stop_id": 3926189, "stop_desc": "169-171 RUE DE RENNES - 75106", "stop_name": "RENNES - LITTRE"}, "geometry": {"type": "Point", "coordinates": [2.3247134823772995, 48.84454903838894]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "acf1baa49335a16a18d4b67aec78e1cd72a956eb", "fields": {"departement": "75", "stop_lat": 48.851308132416946, "code_postal": "75106", "stop_lon": 2.33101731159199, "coord": [48.851308132416946, 2.33101731159199], "stop_id": 3926195, "stop_desc": "69 RUE DE RENNES - 75106", "stop_name": "MICHEL DEBRE"}, "geometry": {"type": "Point", "coordinates": [2.33101731159199, 48.851308132416946]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7d975b0459cf58d14c7e525ee31ba92cebccfcc4", "fields": {"departement": "75", "stop_lat": 48.856125538622685, "code_postal": "75106", "stop_lon": 2.3344762062815754, "coord": [48.856125538622685, 2.3344762062815754], "stop_id": 3926199, "stop_desc": "13-15 RUE BONAPARTE - 75106", "stop_name": "JACOB"}, "geometry": {"type": "Point", "coordinates": [2.3344762062815754, 48.856125538622685]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2878da521234d2e624e86148bf39cd13cf492d5d", "fields": {"departement": "75", "stop_lat": 48.87087377575082, "code_postal": "75109", "stop_lon": 2.332622572793309, "coord": [48.87087377575082, 2.332622572793309], "stop_id": 3926210, "stop_desc": "8 PLACE DE L'OPERA - 75109", "stop_name": "OPERA"}, "geometry": {"type": "Point", "coordinates": [2.332622572793309, 48.87087377575082]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7112a3e8c749bc8d4afd6575018374406e7e69c4", "fields": {"departement": "75", "stop_lat": 48.872033003523995, "code_postal": "75109", "stop_lon": 2.3298976383299848, "coord": [48.872033003523995, 2.3298976383299848], "stop_id": 3926213, "stop_desc": "FACE 8 RUE AUBER - 75109", "stop_name": "AUBER"}, "geometry": {"type": "Point", "coordinates": [2.3298976383299848, 48.872033003523995]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b0e3e8fdc134d4e241437eabd463f52a9922a644", "fields": {"departement": "75", "stop_lat": 48.87445933562997, "code_postal": "75108", "stop_lon": 2.3266818431115697, "coord": [48.87445933562997, 2.3266818431115697], "stop_id": 3926217, "stop_desc": "9 RUE DU HAVRE - 75108", "stop_name": "GARE SAINT-LAZARE"}, "geometry": {"type": "Point", "coordinates": [2.3266818431115697, 48.87445933562997]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f094aa2deeacdd5506a929286b3327959db29c25", "fields": {"departement": "75", "stop_lat": 48.88023794533592, "code_postal": "75108", "stop_lon": 2.3245140812346885, "coord": [48.88023794533592, 2.3245140812346885], "stop_id": 3926219, "stop_desc": "12 RUE DE SAINT-PETERSBOURG - 75108", "stop_name": "BUCAREST"}, "geometry": {"type": "Point", "coordinates": [2.3245140812346885, 48.88023794533592]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ad2d60abb1796b688292e51b707e60b8280f4621", "fields": {"departement": "75", "stop_lat": 48.882763601993, "code_postal": "75108", "stop_lon": 2.3269935699922413, "coord": [48.882763601993, 2.3269935699922413], "stop_id": 3926221, "stop_desc": "99 RUE D'AMSTERDAM - 75108", "stop_name": "PLACE DE CLICHY"}, "geometry": {"type": "Point", "coordinates": [2.3269935699922413, 48.882763601993]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4bfa50bab003537720c5b28f167fa22cc7b47365", "fields": {"departement": "75", "stop_lat": 48.890798457854345, "code_postal": "75118", "stop_lon": 2.331216996562207, "coord": [48.890798457854345, 2.331216996562207], "stop_id": 3926225, "stop_desc": "105 R LAMARCK - 75118", "stop_name": "PLACE JACQUES FROMENT"}, "geometry": {"type": "Point", "coordinates": [2.331216996562207, 48.890798457854345]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "692eecc6aa208fe6d8b98f3d3d36153b7d34a3c5", "fields": {"departement": "75", "stop_lat": 48.89108606505758, "code_postal": "75118", "stop_lon": 2.331571321304886, "coord": [48.89108606505758, 2.331571321304886], "stop_id": 3926226, "stop_desc": "6 PLACE JACQUES FROMENT - 75118", "stop_name": "PLACE JACQUES FROMENT"}, "geometry": {"type": "Point", "coordinates": [2.331571321304886, 48.89108606505758]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b079132c37760398308a685cadadaf0e5a3156fe", "fields": {"departement": "75", "stop_lat": 48.89054692285555, "code_postal": "75118", "stop_lon": 2.3339155720782396, "coord": [48.89054692285555, 2.3339155720782396], "stop_id": 3926227, "stop_desc": "99 RUE LAMARCK - 75118", "stop_name": "DAMREMONT - LAMARCK"}, "geometry": {"type": "Point", "coordinates": [2.3339155720782396, 48.89054692285555]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "254e5ddff780187fa524c53ccfc74f368336b8b1", "fields": {"departement": "75", "stop_lat": 48.89201186283511, "code_postal": "75118", "stop_lon": 2.3352511595694234, "coord": [48.89201186283511, 2.3352511595694234], "stop_id": 3926228, "stop_desc": "78 RUE DAMREMONT - 75118", "stop_name": "DAMREMONT - MARCADET"}, "geometry": {"type": "Point", "coordinates": [2.3352511595694234, 48.89201186283511]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "34e103eb7f31ad075ec237215d184ac1aba82715", "fields": {"departement": "75", "stop_lat": 48.89175122200907, "code_postal": "75118", "stop_lon": 2.3345969614157576, "coord": [48.89175122200907, 2.3345969614157576], "stop_id": 3926229, "stop_desc": "204 RUE MARCADET - 75118", "stop_name": "DAMREMONT - MARCADET"}, "geometry": {"type": "Point", "coordinates": [2.3345969614157576, 48.89175122200907]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "04d98b3cce0836cf48d18985376a764e6c699478", "fields": {"departement": "75", "stop_lat": 48.856008585004595, "code_postal": "75107", "stop_lon": 2.3312891453604494, "coord": [48.856008585004595, 2.3312891453604494], "stop_id": 3926245, "stop_desc": "26-28 RUE DES SAINTS-PERES - 75107", "stop_name": "JACOB"}, "geometry": {"type": "Point", "coordinates": [2.3312891453604494, 48.856008585004595]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f9cd6a6b5d72c5065b8ecdd3b23e98c93e4be64c", "fields": {"departement": "75", "stop_lat": 48.83423650893377, "code_postal": "75115", "stop_lon": 2.304662212610296, "coord": [48.83423650893377, 2.304662212610296], "stop_id": 3926250, "stop_desc": "32 RUE BRANCION - 75115", "stop_name": "BRANCION - VOUILLE"}, "geometry": {"type": "Point", "coordinates": [2.304662212610296, 48.83423650893377]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8c42145e625b5ffb7a0a05f6e96b582b1d7e3ae8", "fields": {"departement": "75", "stop_lat": 48.82530272173102, "code_postal": "75114", "stop_lon": 2.30435474951014, "coord": [48.82530272173102, 2.30435474951014], "stop_id": 3926254, "stop_desc": "AVENUE DE LA PORTE DE VANVES - 75114", "stop_name": "PONT DE LA VALLEE"}, "geometry": {"type": "Point", "coordinates": [2.30435474951014, 48.82530272173102]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "07de4f9a7ae8476567d3128eaf2a19f36d861b7e", "fields": {"departement": "75", "stop_lat": 48.85299263208113, "code_postal": "75120", "stop_lon": 2.4117242226892044, "coord": [48.85299263208113, 2.4117242226892044], "stop_id": 3926256, "stop_desc": "R CHARLES ET ROBERT - 75120", "stop_name": "PORTE DE MONTREUIL"}, "geometry": {"type": "Point", "coordinates": [2.4117242226892044, 48.85299263208113]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "13c8ff31420b5b094799941f640a4c710e6ee89d", "fields": {"departement": "75", "stop_lat": 48.853934110216926, "code_postal": "75120", "stop_lon": 2.415171284434349, "coord": [48.853934110216926, 2.415171284434349], "stop_id": 3926259, "stop_desc": "AVENUE BENOIT FRACHON - 75120", "stop_name": "RUE DE PARIS"}, "geometry": {"type": "Point", "coordinates": [2.415171284434349, 48.853934110216926]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cad0ebef3192fc00742cfddbfcffe61d06fef66e", "fields": {"departement": "93", "stop_lat": 48.849450768106884, "code_postal": "93048", "stop_lon": 2.4260046618007154, "coord": [48.849450768106884, 2.4260046618007154], "stop_id": 3926267, "stop_desc": "FACE 94 RUE ROBESPIERRE - 93048", "stop_name": "LES LAITIERES"}, "geometry": {"type": "Point", "coordinates": [2.4260046618007154, 48.849450768106884]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0915e33511e88560ab490f0000bb0ddf9ca7ec14", "fields": {"departement": "94", "stop_lat": 48.847156087985, "code_postal": "94080", "stop_lon": 2.4297728193534036, "coord": [48.847156087985, 2.4297728193534036], "stop_id": 3926268, "stop_desc": "2 AVENUE ANTOINE QUINSON - 94080", "stop_name": "VINCENNES RER - REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.4297728193534036, 48.847156087985]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ffa08dfc62a6164bd6b4499d9fc9e58bbdb3d0f5", "fields": {"departement": "93", "stop_lat": 48.85076882200282, "code_postal": "93048", "stop_lon": 2.4177268219797488, "coord": [48.85076882200282, 2.4177268219797488], "stop_id": 3926271, "stop_desc": "RUE DE VALMY - 93048", "stop_name": "VALMY - ARMAND CARREL"}, "geometry": {"type": "Point", "coordinates": [2.4177268219797488, 48.85076882200282]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8afc4d1f27714717fb2f36defd49c83d1e8bd041", "fields": {"departement": "75", "stop_lat": 48.84644830763424, "code_postal": "75112", "stop_lon": 2.3773307944168156, "coord": [48.84644830763424, 2.3773307944168156], "stop_id": 3926296, "stop_desc": "69 AVENUE DAUMESNIL - 75112", "stop_name": "DAUMESNIL - DIDEROT"}, "geometry": {"type": "Point", "coordinates": [2.3773307944168156, 48.84644830763424]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bb878f02fe3a1a3740101a4cb4fa6f133f218bdd", "fields": {"departement": "75", "stop_lat": 48.84311767863822, "code_postal": "75105", "stop_lon": 2.363997607036225, "coord": [48.84311767863822, 2.363997607036225], "stop_id": 3926301, "stop_desc": "4 BOULEVARD DE L'HOPITAL - 75105", "stop_name": "GARE D'AUSTERLITZ"}, "geometry": {"type": "Point", "coordinates": [2.363997607036225, 48.84311767863822]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a3f26ea7041bed23ade6674df306f57043e99992", "fields": {"departement": "75", "stop_lat": 48.82831709694314, "code_postal": "75113", "stop_lon": 2.3529364847578846, "coord": [48.82831709694314, 2.3529364847578846], "stop_id": 3926312, "stop_desc": "41 RUE BOBILLOT - 75113", "stop_name": "VERLAINE"}, "geometry": {"type": "Point", "coordinates": [2.3529364847578846, 48.82831709694314]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "62c5351052ba2f1001b684d7d28c39cb0c3afb44", "fields": {"departement": "75", "stop_lat": 48.825522216177426, "code_postal": "75113", "stop_lon": 2.3506624453956095, "coord": [48.825522216177426, 2.3506624453956095], "stop_id": 3926313, "stop_desc": "31 RUE CHARLES FOURIER - 75113", "stop_name": "BOBILLOT - TOLBIAC"}, "geometry": {"type": "Point", "coordinates": [2.3506624453956095, 48.825522216177426]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6fa987b0ca25acfe45f86ef50e9573421e340d79", "fields": {"departement": "94", "stop_lat": 48.81100780529823, "code_postal": "94003", "stop_lon": 2.335444797357414, "coord": [48.81100780529823, 2.335444797357414], "stop_id": 3926327, "stop_desc": "FACE 92 AVENUE JEAN JAURES - 94003", "stop_name": "CHAPERON VERT"}, "geometry": {"type": "Point", "coordinates": [2.335444797357414, 48.81100780529823]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4df92cde593bd8b945e7017ea7066db2a1db6268", "fields": {"departement": "75", "stop_lat": 48.83219927738061, "code_postal": "75113", "stop_lon": 2.356191331508679, "coord": [48.83219927738061, 2.356191331508679], "stop_id": 3926337, "stop_desc": "169 BOULEVARD DE L'HOPITAL - 75113", "stop_name": "PLACE D'ITALIE - MAIRIE DU 13E"}, "geometry": {"type": "Point", "coordinates": [2.356191331508679, 48.83219927738061]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c62e33fb244b70bae2e6542013b15083b861e5a3", "fields": {"departement": "75", "stop_lat": 48.84260538929042, "code_postal": "75113", "stop_lon": 2.363997342939993, "coord": [48.84260538929042, 2.363997342939993], "stop_id": 3926338, "stop_desc": "5 BIS BOULEVARD DE L'HOPITAL - 75113", "stop_name": "GARE D'AUSTERLITZ"}, "geometry": {"type": "Point", "coordinates": [2.363997342939993, 48.84260538929042]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9f89942e32e88e7857f65a252adeeb786736f155", "fields": {"departement": "75", "stop_lat": 48.84700789118935, "code_postal": "75120", "stop_lon": 2.4102313138152516, "coord": [48.84700789118935, 2.4102313138152516], "stop_id": 3926376, "stop_desc": "116 CRS DE VINCENNES - 75120", "stop_name": "PORTE DE VINCENNES"}, "geometry": {"type": "Point", "coordinates": [2.4102313138152516, 48.84700789118935]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b5ab16e124de7b369276b7f07b65f79c3650c36b", "fields": {"departement": "75", "stop_lat": 48.86455178820427, "code_postal": "75120", "stop_lon": 2.409561271654804, "coord": [48.86455178820427, 2.409561271654804], "stop_id": 3926379, "stop_desc": "2 AVENUE DE LA PORTE DE BAGNOLET - 75120", "stop_name": "PORTE DE BAGNOLET"}, "geometry": {"type": "Point", "coordinates": [2.409561271654804, 48.86455178820427]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d406b24e2bcf045bef332e391f42dd4b3512e61a", "fields": {"departement": "75", "stop_lat": 48.856061944099835, "code_postal": "75104", "stop_lon": 2.350302602371364, "coord": [48.856061944099835, 2.350302602371364], "stop_id": 3926388, "stop_desc": "FACE 2 QUAI DE GESVRES - 75104", "stop_name": "HOTEL DE VILLE"}, "geometry": {"type": "Point", "coordinates": [2.350302602371364, 48.856061944099835]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "52a7b70b41a9e02fe06e4893b15bed481fc0b7a9", "fields": {"departement": "75", "stop_lat": 48.86680908230982, "code_postal": "75103", "stop_lon": 2.3616803303586003, "coord": [48.86680908230982, 2.3616803303586003], "stop_id": 3926395, "stop_desc": "85 RUE DE TURBIGO - 75103", "stop_name": "TURBIGO - REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.3616803303586003, 48.86680908230982]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "597cdc713844a8bc1afaa075f3dd358c7479bef9", "fields": {"departement": "75", "stop_lat": 48.869117506762755, "code_postal": "75110", "stop_lon": 2.3674577349690984, "coord": [48.869117506762755, 2.3674577349690984], "stop_id": 3926398, "stop_desc": "36-38 QUAI DE JEMMAPES - 75110", "stop_name": "JULES FERRY"}, "geometry": {"type": "Point", "coordinates": [2.3674577349690984, 48.869117506762755]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "baddcf7899ebd804ed41c94be6b1c1f23b4481bd", "fields": {"departement": "75", "stop_lat": 48.871149034266644, "code_postal": "75110", "stop_lon": 2.3658785433185914, "coord": [48.871149034266644, 2.3658785433185914], "stop_id": 3926400, "stop_desc": "68-70 QUAI DE JEMMAPES - 75110", "stop_name": "ALIBERT"}, "geometry": {"type": "Point", "coordinates": [2.3658785433185914, 48.871149034266644]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2a8a42f3cfb38cb3cace9b9577cef1a70a79607b", "fields": {"departement": "75", "stop_lat": 48.87139966091467, "code_postal": "75110", "stop_lon": 2.3698432625652974, "coord": [48.87139966091467, 2.3698432625652974], "stop_id": 3926401, "stop_desc": "155 AVENUE PARMENTIER - 75110", "stop_name": "ALIBERT"}, "geometry": {"type": "Point", "coordinates": [2.3698432625652974, 48.87139966091467]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ef027a2cd250734cec8670800771179e33c4dbd7", "fields": {"departement": "75", "stop_lat": 48.8782477025437, "code_postal": "75119", "stop_lon": 2.370855875922014, "coord": [48.8782477025437, 2.370855875922014], "stop_id": 3926407, "stop_desc": "4 PLACE DU COLONEL FABIEN - 75119", "stop_name": "COLONEL FABIEN"}, "geometry": {"type": "Point", "coordinates": [2.370855875922014, 48.8782477025437]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e401d2296b9eb2f4cd3dc9cc6bfd7dc8e3569b8b", "fields": {"departement": "75", "stop_lat": 48.88240505655071, "code_postal": "75119", "stop_lon": 2.382223390760729, "coord": [48.88240505655071, 2.382223390760729], "stop_id": 3926415, "stop_desc": "5 PLACE ARMAND CARREL - 75119", "stop_name": "ARMAND CARREL - MAIRIE DU 19E"}, "geometry": {"type": "Point", "coordinates": [2.382223390760729, 48.88240505655071]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "83bceacced5e4735bfd44a03b23e6f588fce771c", "fields": {"departement": "75", "stop_lat": 48.88312196922278, "code_postal": "75119", "stop_lon": 2.38740229993742, "coord": [48.88312196922278, 2.38740229993742], "stop_id": 3926416, "stop_desc": "20 RUE MANIN - 75119", "stop_name": "D'HAUTPOUL"}, "geometry": {"type": "Point", "coordinates": [2.38740229993742, 48.88312196922278]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4ae0505c020814d03d065addc4a19efad63a0061", "fields": {"departement": "93", "stop_lat": 48.890100894125055, "code_postal": "93055", "stop_lon": 2.396431389245738, "coord": [48.890100894125055, 2.396431389245738], "stop_id": 3926432, "stop_desc": "1 AV DE LA PORTE DE PANTIN - 93055", "stop_name": "PORTE DE PANTIN"}, "geometry": {"type": "Point", "coordinates": [2.396431389245738, 48.890100894125055]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f0ddc8b368b6a6b0bb515d854b6c75acab3294fe", "fields": {"departement": "75", "stop_lat": 48.87934985665537, "code_postal": "75119", "stop_lon": 2.4009157234698697, "coord": [48.87934985665537, 2.4009157234698697], "stop_id": 3926664, "stop_desc": "BD D'ALGERIE - 75119", "stop_name": "HOPITAL ROBERT DEBRE"}, "geometry": {"type": "Point", "coordinates": [2.4009157234698697, 48.87934985665537]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d7b0cd33f4900e50371570c338448c7d95b83708", "fields": {"departement": "94", "stop_lat": 48.81175347724286, "code_postal": "94037", "stop_lon": 2.3460592717364808, "coord": [48.81175347724286, 2.3460592717364808], "stop_id": 3970586, "stop_desc": "FACE 70 AV RASPAIL - 94037", "stop_name": "BOUT DU RANG - PICASSO"}, "geometry": {"type": "Point", "coordinates": [2.3460592717364808, 48.81175347724286]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "73b8a167d1b44be92c12c33e89c79304313e3cbe", "fields": {"departement": "94", "stop_lat": 48.81320076893865, "code_postal": "94037", "stop_lon": 2.3334034140116247, "coord": [48.81320076893865, 2.3334034140116247], "stop_id": 3970596, "stop_desc": "1ERE AVENUE - 94037", "stop_name": "CHAPERON VERT - MARCEL CACHIN."}, "geometry": {"type": "Point", "coordinates": [2.3334034140116247, 48.81320076893865]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7c30786fbca1bba77555f4f4daf794420b0982f2", "fields": {"departement": "94", "stop_lat": 48.812400455148484, "code_postal": "94037", "stop_lon": 2.3477876614385598, "coord": [48.812400455148484, 2.3477876614385598], "stop_id": 3970605, "stop_desc": "2 R DU PRESIDENT ALLENDE - 94037", "stop_name": "ALLENDE - REINE BLANCHE"}, "geometry": {"type": "Point", "coordinates": [2.3477876614385598, 48.812400455148484]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dab3858991ca3ea277c73429fd87f12a9284e790", "fields": {"departement": "93", "stop_lat": 48.90129304047551, "code_postal": "93055", "stop_lon": 2.389710036547281, "coord": [48.90129304047551, 2.389710036547281], "stop_id": 3972546, "stop_desc": "32 AVENUE JEAN JAURES - 93055", "stop_name": "MAGENTA"}, "geometry": {"type": "Point", "coordinates": [2.389710036547281, 48.90129304047551]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e0458c3faf1def1b1dda93c366f0783c6a02607c", "fields": {"departement": "93", "stop_lat": 48.90651471481911, "code_postal": "93001", "stop_lon": 2.3893063263870644, "coord": [48.90651471481911, 2.3893063263870644], "stop_id": 3972549, "stop_desc": "FACE 104 AVENUE DE LA REPUBLIQUE - 93001", "stop_name": "HOPITAL LA ROSERAIE"}, "geometry": {"type": "Point", "coordinates": [2.3893063263870644, 48.90651471481911]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3cad11d6e07b5ce0de77607926d695d6abb51ba6", "fields": {"departement": "93", "stop_lat": 48.90530105233507, "code_postal": "93001", "stop_lon": 2.3902321446836763, "coord": [48.90530105233507, 2.3902321446836763], "stop_id": 3972550, "stop_desc": "120 AVENUE DE LA REPUBLIQUE - 93001", "stop_name": "HOPITAL LA ROSERAIE"}, "geometry": {"type": "Point", "coordinates": [2.3902321446836763, 48.90530105233507]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "833c0c1b2c76b50cfe50efdfd83ce279df5b9b9a", "fields": {"departement": "91", "stop_lat": 48.74046788956081, "code_postal": "91645", "stop_lon": 2.2542761204537243, "coord": [48.74046788956081, 2.2542761204537243], "stop_id": 5161503, "stop_desc": "141 RUE D'ESTIENNE D'ORVES - 91645", "stop_name": "RIANTES CITES"}, "geometry": {"type": "Point", "coordinates": [2.2542761204537243, 48.74046788956081]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0dc44927071cd98d7339a7a616ae4afd3284a8d5", "fields": {"departement": "91", "stop_lat": 48.74129934675022, "code_postal": "91312", "stop_lon": 2.2267280656644344, "coord": [48.74129934675022, 2.2267280656644344], "stop_id": 5161514, "stop_desc": "FACE 5 RUE AMBROIZE CROIZAT - 91312", "stop_name": "MAIRIE D'IGNY"}, "geometry": {"type": "Point", "coordinates": [2.2267280656644344, 48.74129934675022]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fbea1c205821e745ca99bbe51f28d8dc97add872", "fields": {"departement": "93", "stop_lat": 48.84618061310176, "code_postal": "93051", "stop_lon": 2.5519599418394168, "coord": [48.84618061310176, 2.5519599418394168], "stop_id": 4614489, "stop_desc": "17 RUE DE LA REPUBLIQUE - 93051", "stop_name": "ESPACE MICHEL SIMON"}, "geometry": {"type": "Point", "coordinates": [2.5519599418394168, 48.84618061310176]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8d3e4fa5fe631acc20bd77a518ce5f4b8227d379", "fields": {"departement": "93", "stop_lat": 48.84878486098396, "code_postal": "93051", "stop_lon": 2.5531418777728834, "coord": [48.84878486098396, 2.5531418777728834], "stop_id": 4614490, "stop_desc": "FACE 7 AVENUE EMILE COSSONNEAU - 93051", "stop_name": "MAIRIE DE NOISY-LE-GRAND"}, "geometry": {"type": "Point", "coordinates": [2.5531418777728834, 48.84878486098396]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "db86304e6f58b5c95a037cf769dee5346248a484", "fields": {"departement": "93", "stop_lat": 48.848910240758386, "code_postal": "93051", "stop_lon": 2.553387525992279, "coord": [48.848910240758386, 2.553387525992279], "stop_id": 4614491, "stop_desc": "AV EMILE COSSONNEAU - 93051", "stop_name": "MAIRIE DE NOISY-LE-GRAND"}, "geometry": {"type": "Point", "coordinates": [2.553387525992279, 48.848910240758386]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e99dea94c0ac4466e387b1c5af90d9e0410a14e4", "fields": {"departement": "93", "stop_lat": 48.84550392368511, "code_postal": "93051", "stop_lon": 2.5630960442432134, "coord": [48.84550392368511, 2.5630960442432134], "stop_id": 4614494, "stop_desc": "32 R DE MALNOUE - 93051", "stop_name": "ROUGET DE LISLE"}, "geometry": {"type": "Point", "coordinates": [2.5630960442432134, 48.84550392368511]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ba8629a17ce9bc9154a835bde1fc1ac000d2cf97", "fields": {"departement": "93", "stop_lat": 48.842340234601245, "code_postal": "93051", "stop_lon": 2.5678207840987546, "coord": [48.842340234601245, 2.5678207840987546], "stop_id": 4614496, "stop_desc": "FACE 91 RUE DE MALNOUE - 93051", "stop_name": "LA HAUTE MAISON"}, "geometry": {"type": "Point", "coordinates": [2.5678207840987546, 48.842340234601245]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "14984180f3e6267260c4e9aa9f25d7c235047174", "fields": {"departement": "93", "stop_lat": 48.84274540956712, "code_postal": "93051", "stop_lon": 2.567441322232726, "coord": [48.84274540956712, 2.567441322232726], "stop_id": 4614497, "stop_desc": "89 RUE DE MALNOUE - 93051", "stop_name": "LA HAUTE MAISON"}, "geometry": {"type": "Point", "coordinates": [2.567441322232726, 48.84274540956712]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "beb92472e6857d4a88b690b7bb9d93b99840cbe6", "fields": {"departement": "93", "stop_lat": 48.84224149380249, "code_postal": "93051", "stop_lon": 2.5723546034497047, "coord": [48.84224149380249, 2.5723546034497047], "stop_id": 4614498, "stop_desc": "0 R DU MARECHAL JUIN - 93051", "stop_name": "LES HAUTS CHATEAUX"}, "geometry": {"type": "Point", "coordinates": [2.5723546034497047, 48.84224149380249]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8433158595399173c442c8db644740ef7b1fb006", "fields": {"departement": "93", "stop_lat": 48.84618061310176, "code_postal": "93051", "stop_lon": 2.5519599418394168, "coord": [48.84618061310176, 2.5519599418394168], "stop_id": 4614507, "stop_desc": "17 RUE DE LA REPUBLIQUE - 93051", "stop_name": "ESPACE MICHEL SIMON"}, "geometry": {"type": "Point", "coordinates": [2.5519599418394168, 48.84618061310176]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7a23caac3f9bcae3f296ecd83544cf6c0ce49984", "fields": {"departement": "93", "stop_lat": 48.848900736886335, "code_postal": "93051", "stop_lon": 2.5585623765321235, "coord": [48.848900736886335, 2.5585623765321235], "stop_id": 4614510, "stop_desc": "50 AVENUE EMILE COSSONNEAU - 93051", "stop_name": "CARREFOUR DE MALNOUE"}, "geometry": {"type": "Point", "coordinates": [2.5585623765321235, 48.848900736886335]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "686c8d056a7ecb2445cc8998fb4178513838f583", "fields": {"departement": "93", "stop_lat": 48.839319638816946, "code_postal": "93051", "stop_lon": 2.5728042944408505, "coord": [48.839319638816946, 2.5728042944408505], "stop_id": 4614525, "stop_desc": "RUE DE LA BUTTE VERTE - 93051", "stop_name": "LA BUTTE VERTE"}, "geometry": {"type": "Point", "coordinates": [2.5728042944408505, 48.839319638816946]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f4a56ba19ac9c5ae6025f09277557428352610c0", "fields": {"departement": "93", "stop_lat": 48.83701016751778, "code_postal": "93051", "stop_lon": 2.5726304293980573, "coord": [48.83701016751778, 2.5726304293980573], "stop_id": 4614527, "stop_desc": "BOULEVARD DE CHAMPY - 93051", "stop_name": "LE CLOSEAU"}, "geometry": {"type": "Point", "coordinates": [2.5726304293980573, 48.83701016751778]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "631416f8febc9374aeabce3881f5bc9903e177d6", "fields": {"departement": "93", "stop_lat": 48.83164444343375, "code_postal": "93051", "stop_lon": 2.581604688788016, "coord": [48.83164444343375, 2.581604688788016], "stop_id": 4614534, "stop_desc": "RUE DU BALLON - 93051", "stop_name": "RUE DES AEROSTIERS"}, "geometry": {"type": "Point", "coordinates": [2.581604688788016, 48.83164444343375]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "29b6f84bf54d721fe02fd13da038adfc893783d7", "fields": {"departement": "93", "stop_lat": 48.83207859919901, "code_postal": "93051", "stop_lon": 2.566672475587616, "coord": [48.83207859919901, 2.566672475587616], "stop_id": 4614543, "stop_desc": "28 AVENUE GABRIEL PERI - 93051", "stop_name": "GABRIEL PERI"}, "geometry": {"type": "Point", "coordinates": [2.566672475587616, 48.83207859919901]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b3c4dda4c45890c15b9f1ef6feaa9a94a5f1f881", "fields": {"departement": "93", "stop_lat": 48.845133860047326, "code_postal": "93051", "stop_lon": 2.5492866499490487, "coord": [48.845133860047326, 2.5492866499490487], "stop_id": 4614557, "stop_desc": "FACE 45 RUE DU DOCTEUR SUREAU - 93051", "stop_name": "REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.5492866499490487, 48.845133860047326]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f1213ba807e4d7f0138a3cb60ef66a7886c19921", "fields": {"departement": "93", "stop_lat": 48.84618061310176, "code_postal": "93051", "stop_lon": 2.5519599418394168, "coord": [48.84618061310176, 2.5519599418394168], "stop_id": 4614559, "stop_desc": "17 RUE DE LA REPUBLIQUE - 93051", "stop_name": "ESPACE MICHEL SIMON"}, "geometry": {"type": "Point", "coordinates": [2.5519599418394168, 48.84618061310176]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f494184d20374f9ca17525db1f89f313363eb18f", "fields": {"departement": "93", "stop_lat": 48.85764811106718, "code_postal": "93050", "stop_lon": 2.531331614853965, "coord": [48.85764811106718, 2.531331614853965], "stop_id": 4614566, "stop_desc": "26 RUE PAUL ET CAMILLE THOMOUX - 93050", "stop_name": "PLACE DE LA RESISTANCE"}, "geometry": {"type": "Point", "coordinates": [2.531331614853965, 48.85764811106718]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "efcbac9966b67ee70b53e940a80a4314e31e5be9", "fields": {"departement": "93", "stop_lat": 48.86362648686356, "code_postal": "93050", "stop_lon": 2.530264230340083, "coord": [48.86362648686356, 2.530264230340083], "stop_id": 4614570, "stop_desc": "FACE 111 RUE PAUL ET CAMILLE THOMOUX - 93050", "stop_name": "CIMETIERE DE NEUILLY-SUR-MARNE"}, "geometry": {"type": "Point", "coordinates": [2.530264230340083, 48.86362648686356]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ec865b2e59f97d1df5eb4f39d35f80bdf2e9e0c7", "fields": {"departement": "93", "stop_lat": 48.86611826855342, "code_postal": "93050", "stop_lon": 2.5288567504658026, "coord": [48.86611826855342, 2.5288567504658026], "stop_id": 4614573, "stop_desc": "137 BIS RUE PAUL ET CAMILLE THOMOUX - 93050", "stop_name": "LEON BLUM"}, "geometry": {"type": "Point", "coordinates": [2.5288567504658026, 48.86611826855342]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bee34e1c5a68e14ed92df87e1fd2a6c32c2b0d1b", "fields": {"departement": "93", "stop_lat": 48.874287642887154, "code_postal": "93050", "stop_lon": 2.528941440616018, "coord": [48.874287642887154, 2.528941440616018], "stop_id": 4614580, "stop_desc": "141 R DE VILLEMOMBLE - 93050", "stop_name": "TROIS COMMUNES"}, "geometry": {"type": "Point", "coordinates": [2.528941440616018, 48.874287642887154]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7c531783cd13b9832333c9cb128283899a7f5578", "fields": {"departement": "93", "stop_lat": 48.88651366422562, "code_postal": "93077", "stop_lon": 2.5090897780963624, "coord": [48.88651366422562, 2.5090897780963624], "stop_id": 4614592, "stop_desc": "32 AVENUE DU GENERAL LECLERC - 93077", "stop_name": "AVENUE DU RAINCY"}, "geometry": {"type": "Point", "coordinates": [2.5090897780963624, 48.88651366422562]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f3dcd7c87082a1ff1dc48af6bcbac354815071d6", "fields": {"departement": "93", "stop_lat": 48.89500194695772, "code_postal": "93010", "stop_lon": 2.4783817764764313, "coord": [48.89500194695772, 2.4783817764764313], "stop_id": 4614608, "stop_desc": "FACE 7 R DE LA LIBERTE - 93010", "stop_name": "GARE DE BONDY RER"}, "geometry": {"type": "Point", "coordinates": [2.4783817764764313, 48.89500194695772]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f2b26ec6856e3b560c6e5a52dd5cfe2e127a9ee3", "fields": {"departement": "93", "stop_lat": 48.90421097774594, "code_postal": "93010", "stop_lon": 2.4730356002728167, "coord": [48.90421097774594, 2.4730356002728167], "stop_id": 4614615, "stop_desc": "FACE 1 RUE JULES GUESDE - 93010", "stop_name": "LYCEES PAGNOL - RENOIR"}, "geometry": {"type": "Point", "coordinates": [2.4730356002728167, 48.90421097774594]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3a715a9311b06745ff4d55e6ecd16af14d612337", "fields": {"departement": "93", "stop_lat": 48.90585160187891, "code_postal": "93008", "stop_lon": 2.4685955199065472, "coord": [48.90585160187891, 2.4685955199065472], "stop_id": 4614618, "stop_desc": "433-435 AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "PONT DE BONDY"}, "geometry": {"type": "Point", "coordinates": [2.4685955199065472, 48.90585160187891]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dd9eb16467cccbbd732ff3983135494493107faa", "fields": {"departement": "93", "stop_lat": 48.90870952071069, "code_postal": "93008", "stop_lon": 2.451083311558328, "coord": [48.90870952071069, 2.451083311558328], "stop_id": 4614625, "stop_desc": "AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "RENE CAMIER"}, "geometry": {"type": "Point", "coordinates": [2.451083311558328, 48.90870952071069]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6a35dc6853b8088aac3f86f7ed836631ab0d15e9", "fields": {"departement": "93", "stop_lat": 48.89795091404474, "code_postal": "93010", "stop_lon": 2.4773811142980615, "coord": [48.89795091404474, 2.4773811142980615], "stop_id": 4614630, "stop_desc": "90-92 RUE ROGER SALENGRO - 93010", "stop_name": "BAUDIN"}, "geometry": {"type": "Point", "coordinates": [2.4773811142980615, 48.89795091404474]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0b2c74975147e24d27207cb696fefa6550a29ce6", "fields": {"departement": "93", "stop_lat": 48.88646284176616, "code_postal": "93077", "stop_lon": 2.500490355104128, "coord": [48.88646284176616, 2.500490355104128], "stop_id": 4614631, "stop_desc": "57 RUE FRANCOIS COPPEE - 93077", "stop_name": "MEISSONIER"}, "geometry": {"type": "Point", "coordinates": [2.500490355104128, 48.88646284176616]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c316b31c63ab22fb9093741b634e07632cca2544", "fields": {"departement": "93", "stop_lat": 48.84707646208017, "code_postal": "93051", "stop_lon": 2.548559237181919, "coord": [48.84707646208017, 2.548559237181919], "stop_id": 4614633, "stop_desc": "FACE 13 RUE DU DOCTEUR SUREAU - 93051", "stop_name": "PASTEUR"}, "geometry": {"type": "Point", "coordinates": [2.548559237181919, 48.84707646208017]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d59b6e038b12cccea7fc7b92516f28e868102659", "fields": {"departement": "93", "stop_lat": 48.84075839430718, "code_postal": "93051", "stop_lon": 2.553462493289277, "coord": [48.84075839430718, 2.553462493289277], "stop_id": 4614635, "stop_desc": "PISTE GARE ROUTIERE - 93051", "stop_name": "NOISY-LE-GRAND - MONT D'EST RER"}, "geometry": {"type": "Point", "coordinates": [2.553462493289277, 48.84075839430718]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2c5bb7055c05f8e1de183b0950723a5b29dc4b9e", "fields": {"departement": "93", "stop_lat": 48.84825078188364, "code_postal": "93051", "stop_lon": 2.5399710907027604, "coord": [48.84825078188364, 2.5399710907027604], "stop_id": 4614640, "stop_desc": "17 BOULEVARD SOUCHET - 93051", "stop_name": "ROUTE DE NEUILLY"}, "geometry": {"type": "Point", "coordinates": [2.5399710907027604, 48.84825078188364]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a69f12cd5a1354557c43d858e4829c271a19613e", "fields": {"departement": "93", "stop_lat": 48.84076085882967, "code_postal": "93051", "stop_lon": 2.55210090418231, "coord": [48.84076085882967, 2.55210090418231], "stop_id": 4614644, "stop_desc": "PISTE GARE ROUTIERE - 93051", "stop_name": "NOISY-LE-GRAND - MONT D'EST RER"}, "geometry": {"type": "Point", "coordinates": [2.55210090418231, 48.84076085882967]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0c63b4659a2e559ebf54a468778e01bc39aee347", "fields": {"departement": "93", "stop_lat": 48.84943411331682, "code_postal": "93051", "stop_lon": 2.5469074126833733, "coord": [48.84943411331682, 2.5469074126833733], "stop_id": 4614650, "stop_desc": "39 BOULEVARD PAUL PAMBRUN - 93051", "stop_name": "EGLISE DE NOISY-LE-GRAND"}, "geometry": {"type": "Point", "coordinates": [2.5469074126833733, 48.84943411331682]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "feebddb3215098835ad0384d568ccc69f4e5d9c5", "fields": {"departement": "93", "stop_lat": 48.860651050318076, "code_postal": "93050", "stop_lon": 2.5306345501909777, "coord": [48.860651050318076, 2.5306345501909777], "stop_id": 4614657, "stop_desc": "RUE PAUL ET CAMILLE THOMOUX - 93050", "stop_name": "EPI D'OR"}, "geometry": {"type": "Point", "coordinates": [2.5306345501909777, 48.860651050318076]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c643071fcc25fee095b464e7c5feb9735d5fa93c", "fields": {"departement": "93", "stop_lat": 48.88407582329434, "code_postal": "93077", "stop_lon": 2.510676096876497, "coord": [48.88407582329434, 2.510676096876497], "stop_id": 4614680, "stop_desc": "PLACE EMILE DUCATE - 93077", "stop_name": "CHATEAU DE VILLEMOMBLE"}, "geometry": {"type": "Point", "coordinates": [2.510676096876497, 48.88407582329434]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "72890190511217651423141bc49ad193d6efedf4", "fields": {"departement": "93", "stop_lat": 48.884699099389856, "code_postal": "93077", "stop_lon": 2.502120102414242, "coord": [48.884699099389856, 2.502120102414242], "stop_id": 4614685, "stop_desc": "65-67 AV DE ROSNY - 93077", "stop_name": "MEISSONIER"}, "geometry": {"type": "Point", "coordinates": [2.502120102414242, 48.884699099389856]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "db45cdb5604486c07a266d4f5bbb6f75872e7ede", "fields": {"departement": "93", "stop_lat": 48.88295989291311, "code_postal": "93077", "stop_lon": 2.4989667209034665, "coord": [48.88295989291311, 2.4989667209034665], "stop_id": 4614687, "stop_desc": "FACE 106 AVENUE DE ROSNY-SOUS-BOIS - 93077", "stop_name": "CIMETIERE DE VILLEMOMBLE"}, "geometry": {"type": "Point", "coordinates": [2.4989667209034665, 48.88295989291311]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "451d3a7eec027aa14e6a5b09fdd004d3605ec8b9", "fields": {"departement": "93", "stop_lat": 48.887322141077284, "code_postal": "93077", "stop_lon": 2.4895359876953287, "coord": [48.887322141077284, 2.4895359876953287], "stop_id": 4614689, "stop_desc": "ALLEE DES DEUX COMMUNES - 93077", "stop_name": "DENIS PAPIN"}, "geometry": {"type": "Point", "coordinates": [2.4895359876953287, 48.887322141077284]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5bae2c955ec77157641eacffe523819a6b02bbe2", "fields": {"departement": "93", "stop_lat": 48.89367013081008, "code_postal": "93010", "stop_lon": 2.4798229154480134, "coord": [48.89367013081008, 2.4798229154480134], "stop_id": 4614695, "stop_desc": "FACE 24 ROUTE DE VILLEMOMBLE - 93010", "stop_name": "VARSOVIE"}, "geometry": {"type": "Point", "coordinates": [2.4798229154480134, 48.89367013081008]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "82560f3c8bd6e5206d8f943130fda60ff3c242f3", "fields": {"departement": "93", "stop_lat": 48.90084337776183, "code_postal": "93010", "stop_lon": 2.4785612667664876, "coord": [48.90084337776183, 2.4785612667664876], "stop_id": 4614718, "stop_desc": "50 RUE ROGER SALENGRO - 93010", "stop_name": "BLANQUI - SALENGRO"}, "geometry": {"type": "Point", "coordinates": [2.4785612667664876, 48.90084337776183]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "123bd150fdaf5f2f7e72ddab63852b710080df2e", "fields": {"departement": "93", "stop_lat": 48.89795091404474, "code_postal": "93010", "stop_lon": 2.4773811142980615, "coord": [48.89795091404474, 2.4773811142980615], "stop_id": 4614719, "stop_desc": "90-92 RUE ROGER SALENGRO - 93010", "stop_name": "BAUDIN"}, "geometry": {"type": "Point", "coordinates": [2.4773811142980615, 48.89795091404474]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a60be76346c5832edaed9beca05d6e5aa63e0825", "fields": {"departement": "93", "stop_lat": 48.90323300235931, "code_postal": "93010", "stop_lon": 2.479358461626498, "coord": [48.90323300235931, 2.479358461626498], "stop_id": 4614763, "stop_desc": "60 RUE JULES GUESDE - 93010", "stop_name": "EGLISE DE BONDY"}, "geometry": {"type": "Point", "coordinates": [2.479358461626498, 48.90323300235931]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1661c6ba98ef2cfedc34acf83a517694f4952e7d", "fields": {"departement": "93", "stop_lat": 48.89556049930796, "code_postal": "93010", "stop_lon": 2.4772383471583588, "coord": [48.89556049930796, 2.4772383471583588], "stop_id": 4614766, "stop_desc": "RUE ROGER SALENGRO - 93010", "stop_name": "GARE DE BONDY RER"}, "geometry": {"type": "Point", "coordinates": [2.4772383471583588, 48.89556049930796]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cbdc76b6e6b45b9e2a1fb1c046aac59f95569089", "fields": {"departement": "93", "stop_lat": 48.8927463896491, "code_postal": "93010", "stop_lon": 2.485599334584045, "coord": [48.8927463896491, 2.485599334584045], "stop_id": 4614768, "stop_desc": "100 ROUTE DE VILLEMOMBLE - 93010", "stop_name": "L'ETOILE"}, "geometry": {"type": "Point", "coordinates": [2.485599334584045, 48.8927463896491]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dc695e6f930623a92604c76752b1dd1c74cd8a84", "fields": {"departement": "93", "stop_lat": 48.88740899012201, "code_postal": "93077", "stop_lon": 2.505167816587231, "coord": [48.88740899012201, 2.505167816587231], "stop_id": 4614774, "stop_desc": "7 RUE FRANCOIS COPPEE - 93077", "stop_name": "FRANCOIS COPPEE"}, "geometry": {"type": "Point", "coordinates": [2.505167816587231, 48.88740899012201]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b80b83605dd5d39b39ce417777957cadd4b7fb39", "fields": {"departement": "93", "stop_lat": 48.88651366422562, "code_postal": "93077", "stop_lon": 2.5090897780963624, "coord": [48.88651366422562, 2.5090897780963624], "stop_id": 4614775, "stop_desc": "32 AVENUE DU GENERAL LECLERC - 93077", "stop_name": "AVENUE DU RAINCY"}, "geometry": {"type": "Point", "coordinates": [2.5090897780963624, 48.88651366422562]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c3d038ecae5b8ad6983fa3742b6eda4833a3f280", "fields": {"departement": "93", "stop_lat": 48.88389623140881, "code_postal": "93077", "stop_lon": 2.5166442565883966, "coord": [48.88389623140881, 2.5166442565883966], "stop_id": 4614777, "stop_desc": "18 AVENUE HENRY DUNANT - 93077", "stop_name": "POTTIER"}, "geometry": {"type": "Point", "coordinates": [2.5166442565883966, 48.88389623140881]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d29ef9ddada2ee1e0c4556290341b42ef25964e6", "fields": {"departement": "93", "stop_lat": 48.87669368484657, "code_postal": "93077", "stop_lon": 2.524903587293289, "coord": [48.87669368484657, 2.524903587293289], "stop_id": 4614780, "stop_desc": "FACE 111 RUE DE NEUILLY - 93077", "stop_name": "LYCEE GEORGES CLEMENCEAU"}, "geometry": {"type": "Point", "coordinates": [2.524903587293289, 48.87669368484657]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3af9d5159cb2dd9968f645fe4802be5601b04c8a", "fields": {"departement": "93", "stop_lat": 48.86918808813368, "code_postal": "93050", "stop_lon": 2.536687954277174, "coord": [48.86918808813368, 2.536687954277174], "stop_id": 4614783, "stop_desc": "FACE 2 AVENUE WINSTON CHURCHILL - 93050", "stop_name": "RUE DES POMMIERS"}, "geometry": {"type": "Point", "coordinates": [2.536687954277174, 48.86918808813368]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cff6fb0ea095f5db9e0ecb3c465ed45aaf0d5b37", "fields": {"departement": "75", "stop_lat": 48.82735598995444, "code_postal": "75114", "stop_lon": 2.326759500564941, "coord": [48.82735598995444, 2.326759500564941], "stop_id": 4651122, "stop_desc": "83-85 AVENUE DU GENERAL LECLERC - 75114", "stop_name": "ALESIA - GENERAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.326759500564941, 48.82735598995444]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b4644903163bb3030878c30ed9d0de1424e6168c", "fields": {"departement": "75", "stop_lat": 48.8576349330687, "code_postal": "75104", "stop_lon": 2.3484506274986714, "coord": [48.8576349330687, 2.3484506274986714], "stop_id": 4651135, "stop_desc": "FACE 15 AVENUE VICTORIA - 75104", "stop_name": "CHATELET."}, "geometry": {"type": "Point", "coordinates": [2.3484506274986714, 48.8576349330687]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6659fa34546fce3268e97c00acaf42f76fd8b720", "fields": {"departement": "75", "stop_lat": 48.89740290639083, "code_postal": "75119", "stop_lon": 2.3866936859228653, "coord": [48.89740290639083, 2.3866936859228653], "stop_id": 4658156, "stop_desc": "81-83 BD MACDONALD - 75119", "stop_name": "PORTE DE LA VILLETTE"}, "geometry": {"type": "Point", "coordinates": [2.3866936859228653, 48.89740290639083]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3686e0a3d6fc2fce4025851996688301f1657ac9", "fields": {"departement": "93", "stop_lat": 48.90386206128232, "code_postal": "93055", "stop_lon": 2.392561835479137, "coord": [48.90386206128232, 2.392561835479137], "stop_id": 4658159, "stop_desc": "84 AVENUE JEAN JAURES - 93055", "stop_name": "QUATRE CHEMINS-METRO"}, "geometry": {"type": "Point", "coordinates": [2.392561835479137, 48.90386206128232]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "640f1a97fc9b8e958388e4d4c4f9dad7cb1123a6", "fields": {"departement": "93", "stop_lat": 48.9059639721162, "code_postal": "93055", "stop_lon": 2.394813537419497, "coord": [48.9059639721162, 2.394813537419497], "stop_id": 4658160, "stop_desc": "120 AVENUE JEAN JAURES - 93055", "stop_name": "CONDORCET"}, "geometry": {"type": "Point", "coordinates": [2.394813537419497, 48.9059639721162]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0bbeb511115acf6f39b7c13143f63591602e2872", "fields": {"departement": "93", "stop_lat": 48.910895384137824, "code_postal": "93001", "stop_lon": 2.3997410269389743, "coord": [48.910895384137824, 2.3997410269389743], "stop_id": 4658163, "stop_desc": "183 AVENUE JEAN JAURES - 93001", "stop_name": "RECHOSSIERE"}, "geometry": {"type": "Point", "coordinates": [2.3997410269389743, 48.910895384137824]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7e4a3467a2a04f6998d7c88dfe1e07ca63155052", "fields": {"departement": "93", "stop_lat": 48.9291895200751, "code_postal": "93027", "stop_lon": 2.419976389381094, "coord": [48.9291895200751, 2.419976389381094], "stop_id": 4658172, "stop_desc": "178 AVENUE PAUL VAILLANT-COUTURIER - 93027", "stop_name": "AVENUE PAUL VAILLANT COUTURIER N0 176-191"}, "geometry": {"type": "Point", "coordinates": [2.419976389381094, 48.9291895200751]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e50d7648202ea13209c237b0cace1bdf8191bcb1", "fields": {"departement": "93", "stop_lat": 48.94333342758962, "code_postal": "93007", "stop_lon": 2.4337919856393526, "coord": [48.94333342758962, 2.4337919856393526], "stop_id": 4658182, "stop_desc": "52 AVENUE DU 8 MAI 1945 - 93007", "stop_name": "MICHELET - PARC DES EXPOSITIONS"}, "geometry": {"type": "Point", "coordinates": [2.4337919856393526, 48.94333342758962]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c09d51b5af9b970d69a6294a827f22185805b8a9", "fields": {"departement": "93", "stop_lat": 48.94982606812028, "code_postal": "93007", "stop_lon": 2.4395484863144565, "coord": [48.94982606812028, 2.4395484863144565], "stop_id": 4658185, "stop_desc": "174-176 AVENUE DU 8 MAI 1945 - 93007", "stop_name": "LENINE"}, "geometry": {"type": "Point", "coordinates": [2.4395484863144565, 48.94982606812028]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ae368b3051c4afe5c41795c70768125bf497d0bb", "fields": {"departement": "93", "stop_lat": 48.95409401787022, "code_postal": "93007", "stop_lon": 2.4503370755822766, "coord": [48.95409401787022, 2.4503370755822766], "stop_id": 4658194, "stop_desc": "RUE DES FRERES LUMIERE - 93007", "stop_name": "ZA DU PONT YBLON"}, "geometry": {"type": "Point", "coordinates": [2.4503370755822766, 48.95409401787022]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5f5a85d65086ed4ac98045452debdb35c4fe8928", "fields": {"departement": "93", "stop_lat": 48.94508493858331, "code_postal": "93013", "stop_lon": 2.4349140095036543, "coord": [48.94508493858331, 2.4349140095036543], "stop_id": 4658198, "stop_desc": "FACE 76 AVENUE DU 8 MAI 1945 - 93013", "stop_name": "DIDEROT"}, "geometry": {"type": "Point", "coordinates": [2.4349140095036543, 48.94508493858331]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5148f9a2bfd37bbb6b71c9d2415803f2cd95f7fe", "fields": {"departement": "93", "stop_lat": 48.90129304047551, "code_postal": "93055", "stop_lon": 2.389710036547281, "coord": [48.90129304047551, 2.389710036547281], "stop_id": 4658208, "stop_desc": "32 AVENUE JEAN JAURES - 93055", "stop_name": "MAGENTA"}, "geometry": {"type": "Point", "coordinates": [2.389710036547281, 48.90129304047551]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "70de1b09316c0e1387ff5ef451906acf81b5b33f", "fields": {"departement": "93", "stop_lat": 48.91432621093042, "code_postal": "93001", "stop_lon": 2.403835749858755, "coord": [48.91432621093042, 2.403835749858755], "stop_id": 4658214, "stop_desc": "AVENUE JEAN JAURES - 93001", "stop_name": "FORT D'AUBERVILLIERS - METRO"}, "geometry": {"type": "Point", "coordinates": [2.403835749858755, 48.91432621093042]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e224894d336948f5dd0c1e4d9848ce2e5b9fc714", "fields": {"departement": "93", "stop_lat": 48.92037956025435, "code_postal": "93027", "stop_lon": 2.410457415914394, "coord": [48.92037956025435, 2.410457415914394], "stop_id": 4658218, "stop_desc": "FACE 48 AV PAUL VAILLANT COUTURIER - 93027", "stop_name": "LA COURNEUVE-8 MAI 1945"}, "geometry": {"type": "Point", "coordinates": [2.410457415914394, 48.92037956025435]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f3652b336d3c9b588880daede75f815dc75e88f5", "fields": {"departement": "93", "stop_lat": 48.95568117726325, "code_postal": "93030", "stop_lon": 2.4443771603692106, "coord": [48.95568117726325, 2.4443771603692106], "stop_id": 4658240, "stop_desc": "FACE 238 AVENUE DU 8 MAI 45 - 93030", "stop_name": "COLONEL FABIEN"}, "geometry": {"type": "Point", "coordinates": [2.4443771603692106, 48.95568117726325]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c4c5b4497283d10ab9a582baee864f89a21d2ab1", "fields": {"departement": "95", "stop_lat": 48.962690802742394, "code_postal": "95277", "stop_lon": 2.4539452926487346, "coord": [48.962690802742394, 2.4539452926487346], "stop_id": 4658242, "stop_desc": "0 R DE LA FERME SAINT-SIMON - 95277", "stop_name": "FERME SAINT-SIMON"}, "geometry": {"type": "Point", "coordinates": [2.4539452926487346, 48.962690802742394]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3f108a5796b51fe69ba1132bb7b0a92f0dc250cd", "fields": {"departement": "95", "stop_lat": 48.963712003974884, "code_postal": "95277", "stop_lon": 2.4572504848848284, "coord": [48.963712003974884, 2.4572504848848284], "stop_id": 4658243, "stop_desc": "AV DU 21EME SIECLE - 95277", "stop_name": "ROUTE DES PARCS"}, "geometry": {"type": "Point", "coordinates": [2.4572504848848284, 48.963712003974884]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5d27f88bd22ce1b1aae856a39eed11a64de61896", "fields": {"departement": "95", "stop_lat": 48.96366746806967, "code_postal": "95277", "stop_lon": 2.4568545811257336, "coord": [48.96366746806967, 2.4568545811257336], "stop_id": 4658244, "stop_desc": "AV DU 21EME SIECLE - 95277", "stop_name": "ROUTE DES PARCS"}, "geometry": {"type": "Point", "coordinates": [2.4568545811257336, 48.96366746806967]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ce01b9e1c7a38cbafd833bec292d57972fb79cce", "fields": {"departement": "93", "stop_lat": 48.91614972446159, "code_postal": "93001", "stop_lon": 2.4053380274974674, "coord": [48.91614972446159, 2.4053380274974674], "stop_id": 4658255, "stop_desc": "FACE 186 AVENUE JEAN JAURES - 93001", "stop_name": "HELENE COCHENNEC"}, "geometry": {"type": "Point", "coordinates": [2.4053380274974674, 48.91614972446159]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b8d694e12efbb43b0c7721943b18ccb2a4f08b20", "fields": {"departement": "93", "stop_lat": 48.904149780361635, "code_postal": "93001", "stop_lon": 2.3922758579397665, "coord": [48.904149780361635, 2.3922758579397665], "stop_id": 4658258, "stop_desc": "57 AVENUE JEAN JAURES - 93001", "stop_name": "QUATRE CHEMINS-METRO"}, "geometry": {"type": "Point", "coordinates": [2.3922758579397665, 48.904149780361635]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3b24b91ed61ac8e17bc8c4fbdb2b0c5257a429b3", "fields": {"departement": "92", "stop_lat": 48.897071132341935, "code_postal": "92044", "stop_lon": 2.289656145580502, "coord": [48.897071132341935, 2.289656145580502], "stop_id": 4677623, "stop_desc": "64 RUE PAUL VAILLANT-COUTURIER - 92044", "stop_name": "JULES GUESDE"}, "geometry": {"type": "Point", "coordinates": [2.289656145580502, 48.897071132341935]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "261ed4601bd1f6c5892c3fd632a6b672ec2106a2", "fields": {"departement": "92", "stop_lat": 48.9011253545939, "code_postal": "92024", "stop_lon": 2.292310623720337, "coord": [48.9011253545939, 2.292310623720337], "stop_id": 4677627, "stop_desc": "ROUTE D'ASNIERES - 92024", "stop_name": "RUE DES CHASSES"}, "geometry": {"type": "Point", "coordinates": [2.292310623720337, 48.9011253545939]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ec4d77411d44f8b9784e5b3cfb9f68e39439c7f2", "fields": {"departement": "92", "stop_lat": 48.907036143099916, "code_postal": "92004", "stop_lon": 2.2856115161654933, "coord": [48.907036143099916, 2.2856115161654933], "stop_id": 4677632, "stop_desc": "FACE 32 RUE DE LA STATION - 92004", "stop_name": "RUE DE LA STATION"}, "geometry": {"type": "Point", "coordinates": [2.2856115161654933, 48.907036143099916]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e0da8feb02b8141c756cbe8cdbed33adc61af549", "fields": {"departement": "92", "stop_lat": 48.91842078150043, "code_postal": "92004", "stop_lon": 2.2813592588188216, "coord": [48.91842078150043, 2.2813592588188216], "stop_id": 4677639, "stop_desc": "FACE 185 AVENUE D'ARGENTEUIL - 92004", "stop_name": "BOURGUIGNONS"}, "geometry": {"type": "Point", "coordinates": [2.2813592588188216, 48.91842078150043]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "54c6a68a941f6877ac09f54f089527909a460fd2", "fields": {"departement": "92", "stop_lat": 48.92095388981479, "code_postal": "92004", "stop_lon": 2.2788200385932735, "coord": [48.92095388981479, 2.2788200385932735], "stop_id": 4677641, "stop_desc": "218 AVENUE D'ARGENTEUIL - 92004", "stop_name": "JAURES"}, "geometry": {"type": "Point", "coordinates": [2.2788200385932735, 48.92095388981479]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eb48b05430f0604ed3812b922133fc84ead8a8f3", "fields": {"departement": "92", "stop_lat": 48.92939052181482, "code_postal": "92004", "stop_lon": 2.274691466676802, "coord": [48.92939052181482, 2.274691466676802], "stop_id": 4677645, "stop_desc": "RUE DES MOURINOUX - 92004", "stop_name": "HENRI ROBERT"}, "geometry": {"type": "Point", "coordinates": [2.274691466676802, 48.92939052181482]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "84ca7af06aacfca8bcfee25fe06bd47af8f33a14", "fields": {"departement": "92", "stop_lat": 48.93104570600111, "code_postal": "92004", "stop_lon": 2.277812954592855, "coord": [48.93104570600111, 2.277812954592855], "stop_id": 4677648, "stop_desc": "0 RUE DU 18 JUIN 1940 - 92004", "stop_name": "ASNIERES-18 JUIN 1940"}, "geometry": {"type": "Point", "coordinates": [2.277812954592855, 48.93104570600111]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bf81a7d0362025d1875168487b9a845c80c8f6c2", "fields": {"departement": "92", "stop_lat": 48.92646908462465, "code_postal": "92009", "stop_lon": 2.273385701754743, "coord": [48.92646908462465, 2.273385701754743], "stop_id": 4677651, "stop_desc": "359 AVENUE D'ARGENTEUIL - 92009", "stop_name": "QUATRE ROUTES"}, "geometry": {"type": "Point", "coordinates": [2.273385701754743, 48.92646908462465]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5346b9888fa9a4f8ed9ba1acef9136b6c4670a60", "fields": {"departement": "92", "stop_lat": 48.891276197025505, "code_postal": "92044", "stop_lon": 2.29434991753627, "coord": [48.891276197025505, 2.29434991753627], "stop_id": 4677655, "stop_desc": "FACE 20 RUE JULES GUESDE - 92044", "stop_name": "EIFFEL"}, "geometry": {"type": "Point", "coordinates": [2.29434991753627, 48.891276197025505]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "224fdd48f8c5a9ae44643d9ae0c89aeedc2584fe", "fields": {"departement": "94", "stop_lat": 48.816459574639566, "code_postal": "94041", "stop_lon": 2.367345434609985, "coord": [48.816459574639566, 2.367345434609985], "stop_id": 4677658, "stop_desc": "4 AVENUE DE VERDUN - 94041", "stop_name": "VERDUN - CHATEAUDUN"}, "geometry": {"type": "Point", "coordinates": [2.367345434609985, 48.816459574639566]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6116d9f2609cabdcc1d24f09264f8f8353c31019", "fields": {"departement": "94", "stop_lat": 48.79274353783585, "code_postal": "94081", "stop_lon": 2.3860363032250977, "coord": [48.79274353783585, 2.3860363032250977], "stop_id": 4677666, "stop_desc": "3 AVENUE EUGENE PELLETAN - 94081", "stop_name": "MUSEE MAC-VAL"}, "geometry": {"type": "Point", "coordinates": [2.3860363032250977, 48.79274353783585]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "10880e39efce92ab3d4d0be98742d47f126d43ab", "fields": {"departement": "94", "stop_lat": 48.78990240188759, "code_postal": "94081", "stop_lon": 2.388318873018915, "coord": [48.78990240188759, 2.388318873018915], "stop_id": 4677667, "stop_desc": "FACE 23 AVENUE MAXIMILIEN ROBESPIERRE - 94081", "stop_name": "HOTEL DE VILLE DE VITRY"}, "geometry": {"type": "Point", "coordinates": [2.388318873018915, 48.78990240188759]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "50a0d896a5d357e9453ebaacda3c974858d5ece8", "fields": {"departement": "94", "stop_lat": 48.76796449757513, "code_postal": "94073", "stop_lon": 2.402981928452445, "coord": [48.76796449757513, 2.402981928452445], "stop_id": 4677673, "stop_desc": "3 BOULEVARD DE STALINGRAD - 94073", "stop_name": "VERDUN - HOCHE"}, "geometry": {"type": "Point", "coordinates": [2.402981928452445, 48.76796449757513]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8dc5d7fb843b5c274a23aa9a439cb40791282a89", "fields": {"departement": "94", "stop_lat": 48.8168640152177, "code_postal": "94041", "stop_lon": 2.3673728884374636, "coord": [48.8168640152177, 2.3673728884374636], "stop_id": 4677678, "stop_desc": "15 AVENUE DE VERDUN - 94041", "stop_name": "VERDUN - CHATEAUDUN"}, "geometry": {"type": "Point", "coordinates": [2.3673728884374636, 48.8168640152177]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b18746dc9ed568a42eaaf85d7028c8436d4ab4bb", "fields": {"departement": "94", "stop_lat": 48.8015993230809, "code_postal": "94081", "stop_lon": 2.378820010546215, "coord": [48.8015993230809, 2.378820010546215], "stop_id": 4677686, "stop_desc": "113 BOULEVARD DE STALINGRAD - 94081", "stop_name": "MALASSIS"}, "geometry": {"type": "Point", "coordinates": [2.378820010546215, 48.8015993230809]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d0f4838ca493d08b9323c66b79debbc99e96999f", "fields": {"departement": "94", "stop_lat": 48.79466763030436, "code_postal": "94081", "stop_lon": 2.3843376284366515, "coord": [48.79466763030436, 2.3843376284366515], "stop_id": 4677689, "stop_desc": "21 AVENUE EUGENE PELLETAN - 94081", "stop_name": "CHARLES INFROIT"}, "geometry": {"type": "Point", "coordinates": [2.3843376284366515, 48.79466763030436]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f44734c9e1a58dfa31d3b014f4288399fbb0d9a8", "fields": {"departement": "94", "stop_lat": 48.7949551072651, "code_postal": "94081", "stop_lon": 2.3846779874533124, "coord": [48.7949551072651, 2.3846779874533124], "stop_id": 4677690, "stop_desc": "BOULEVARD DE STALINGRAD - 94081", "stop_name": "CHARLES INFROIT"}, "geometry": {"type": "Point", "coordinates": [2.3846779874533124, 48.7949551072651]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "713f835f0e226a96a651b4e2407fa61099555f41", "fields": {"departement": "94", "stop_lat": 48.79274353783585, "code_postal": "94081", "stop_lon": 2.3860363032250977, "coord": [48.79274353783585, 2.3860363032250977], "stop_id": 4677691, "stop_desc": "3 AVENUE EUGENE PELLETAN - 94081", "stop_name": "MUSEE MAC-VAL"}, "geometry": {"type": "Point", "coordinates": [2.3860363032250977, 48.79274353783585]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "daae9999f5911025e7c54681d47d2fc020980a08", "fields": {"departement": "94", "stop_lat": 48.79312091733187, "code_postal": "94081", "stop_lon": 2.386308726814493, "coord": [48.79312091733187, 2.386308726814493], "stop_id": 4677692, "stop_desc": "FACE 5 RUE EUGENE PELLETAN - 94081", "stop_name": "MUSEE MAC-VAL"}, "geometry": {"type": "Point", "coordinates": [2.386308726814493, 48.79312091733187]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a1acae16fe7aa3b8c49abb3790bbf45ae7ef18ee", "fields": {"departement": "94", "stop_lat": 48.77366491253502, "code_postal": "94073", "stop_lon": 2.3992767882574992, "coord": [48.77366491253502, 2.3992767882574992], "stop_id": 4677701, "stop_desc": "1 BD DE STALINGRAD - 94073", "stop_name": "TROIS COMMUNES"}, "geometry": {"type": "Point", "coordinates": [2.3992767882574992, 48.77366491253502]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2b066c7ee49e0f71ee2bfc4198a5cbd4a290220d", "fields": {"departement": "94", "stop_lat": 48.77041910587895, "code_postal": "94073", "stop_lon": 2.4013941250520006, "coord": [48.77041910587895, 2.4013941250520006], "stop_id": 4677702, "stop_desc": "39 BOULEVARD DE STALINGRAD - 94073", "stop_name": "DOCTEUR ROUX"}, "geometry": {"type": "Point", "coordinates": [2.4013941250520006, 48.77041910587895]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8c444392928114a0566cdba2f8c92bebf123c22e", "fields": {"departement": "94", "stop_lat": 48.75384773922528, "code_postal": "94022", "stop_lon": 2.4121258754862116, "coord": [48.75384773922528, 2.4121258754862116], "stop_id": 4677712, "stop_desc": "AVENUE DE NEWBURN - 94022", "stop_name": "ROBERT PEARY"}, "geometry": {"type": "Point", "coordinates": [2.4121258754862116, 48.75384773922528]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d0b8087cec195308b4f858a8d152eaa032769dc1", "fields": {"departement": "94", "stop_lat": 48.74701405136239, "code_postal": "94054", "stop_lon": 2.4162342230163825, "coord": [48.74701405136239, 2.4162342230163825], "stop_id": 4677716, "stop_desc": "FACE 4 RUE JEAN MERMOZ - 94054", "stop_name": "LES SAULES RER"}, "geometry": {"type": "Point", "coordinates": [2.4162342230163825, 48.74701405136239]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "31be5b5144806d0eeadb380d3128493fe4ae167a", "fields": {"departement": "94", "stop_lat": 48.74698680598638, "code_postal": "94054", "stop_lon": 2.416655514518507, "coord": [48.74698680598638, 2.416655514518507], "stop_id": 4677717, "stop_desc": "4 RUE JEAN MERMOZ - 94054", "stop_name": "LES SAULES RER"}, "geometry": {"type": "Point", "coordinates": [2.416655514518507, 48.74698680598638]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3e26c60e0995e87c0107e5c963730ac613917971", "fields": {"departement": "94", "stop_lat": 48.745606431933844, "code_postal": "94054", "stop_lon": 2.4107277200513724, "coord": [48.745606431933844, 2.4107277200513724], "stop_id": 4677718, "stop_desc": "VOI DES SAULES - 94054", "stop_name": "MARCEL CACHIN - VOIE DES SAULES"}, "geometry": {"type": "Point", "coordinates": [2.4107277200513724, 48.745606431933844]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b2b800bbec6e94a0dd045cb9d714ab34bbcbabc5", "fields": {"departement": "94", "stop_lat": 48.74533081824955, "code_postal": "94054", "stop_lon": 2.387690673104419, "coord": [48.74533081824955, 2.387690673104419], "stop_id": 4677726, "stop_desc": "FACE 125 AVENUE CHARLES TILLON - 94054", "stop_name": "CIMETIERE PAYSAGER"}, "geometry": {"type": "Point", "coordinates": [2.387690673104419, 48.74533081824955]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2c10a4db82d59205720e3060499ad5c301716526", "fields": {"departement": "91", "stop_lat": 48.74352272051869, "code_postal": "91479", "stop_lon": 2.3647346098291497, "coord": [48.74352272051869, 2.3647346098291497], "stop_id": 4677731, "stop_desc": "ROUTE NUMERO 5 - 91479", "stop_name": "HANGAR N 6"}, "geometry": {"type": "Point", "coordinates": [2.3647346098291497, 48.74352272051869]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aa1a7cd33c903aa8debd34cf0e6d0b11b3e99b3f", "fields": {"departement": "91", "stop_lat": 48.736834210108675, "code_postal": "91479", "stop_lon": 2.369663780810606, "coord": [48.736834210108675, 2.369663780810606], "stop_id": 4677733, "stop_desc": "AVENUE DE L'EUROPE - 91479", "stop_name": "CAROLINE AIGLE"}, "geometry": {"type": "Point", "coordinates": [2.369663780810606, 48.736834210108675]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3082b6c9ed1b929abc65dceff58278bc5d3033db", "fields": {"departement": "75", "stop_lat": 48.81954334884737, "code_postal": "75113", "stop_lon": 2.363141616039275, "coord": [48.81954334884737, 2.363141616039275], "stop_id": 4677745, "stop_desc": "FACE 142 BOULEVARD MASSENA - 75113", "stop_name": "PORTE DE CHOISY"}, "geometry": {"type": "Point", "coordinates": [2.363141616039275, 48.81954334884737]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d318586f0baadb1830257472866b599d39c7ab76", "fields": {"departement": "75", "stop_lat": 48.81977703496593, "code_postal": "75113", "stop_lon": 2.3631145117251053, "coord": [48.81977703496593, 2.3631145117251053], "stop_id": 4677746, "stop_desc": "0 BD MASSENA - 75113", "stop_name": "PORTE DE CHOISY"}, "geometry": {"type": "Point", "coordinates": [2.3631145117251053, 48.81977703496593]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5baed5eaa2d44b926777cbb666db2c51e7d6a95b", "fields": {"departement": "94", "stop_lat": 48.81331311831112, "code_postal": "94041", "stop_lon": 2.370174229249393, "coord": [48.81331311831112, 2.370174229249393], "stop_id": 4677750, "stop_desc": "73 AVENUE DE VERDUN - 94041", "stop_name": "CIMETIERE PARISIEN - PLACE DU GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.370174229249393, 48.81331311831112]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b3679ba75b36bce59f291bf8dfcbed844d38d548", "fields": {"departement": "77", "stop_lat": 48.855411989118174, "code_postal": "77083", "stop_lon": 2.5838277405949586, "coord": [48.855411989118174, 2.5838277405949586], "stop_id": 5231673, "stop_desc": "37 BOULEVARD DE LA REPUBLIQUE - 77083", "stop_name": "ROND-POINT DES PYRAMIDES"}, "geometry": {"type": "Point", "coordinates": [2.5838277405949586, 48.855411989118174]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0041b0355ce505646f9b088b8f4543331fb33511", "fields": {"departement": "77", "stop_lat": 48.85582007552604, "code_postal": "77083", "stop_lon": 2.5906532831396203, "coord": [48.85582007552604, 2.5906532831396203], "stop_id": 5231674, "stop_desc": "FACE 65 BIS AVENUE JEAN JAURES - 77083", "stop_name": "C.S.T.B. MATTEOTTI"}, "geometry": {"type": "Point", "coordinates": [2.5906532831396203, 48.85582007552604]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "96067ff7ca3d9047a865aed9e08c91359f2a0f1b", "fields": {"departement": "77", "stop_lat": 48.85223720464594, "code_postal": "77083", "stop_lon": 2.6016127167657035, "coord": [48.85223720464594, 2.6016127167657035], "stop_id": 5231677, "stop_desc": "10 RUE DE PARIS - 77083", "stop_name": "MAIRIE DE CHAMPS"}, "geometry": {"type": "Point", "coordinates": [2.6016127167657035, 48.85223720464594]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d7b058ebb491976c2637bf56b0d279b7384be6d7", "fields": {"departement": "77", "stop_lat": 48.85243498342096, "code_postal": "77083", "stop_lon": 2.609567271347769, "coord": [48.85243498342096, 2.609567271347769], "stop_id": 5231678, "stop_desc": "RUE DE PARIS - 77083", "stop_name": "MAISON DE RETRAITE"}, "geometry": {"type": "Point", "coordinates": [2.609567271347769, 48.85243498342096]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fc8443d4acfaa3a837095b43d53f53a74ddfa22b", "fields": {"departement": "77", "stop_lat": 48.850130645149385, "code_postal": "77468", "stop_lon": 2.633632666637883, "coord": [48.850130645149385, 2.633632666637883], "stop_id": 5231682, "stop_desc": "0 COURS DE L'ARCHE GUEDON - 77468", "stop_name": "CITE SCOLAIRE"}, "geometry": {"type": "Point", "coordinates": [2.633632666637883, 48.850130645149385]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cafcc8180f6760302f02b495ee4848ab74d4fe78", "fields": {"departement": "77", "stop_lat": 48.850712449056154, "code_postal": "77468", "stop_lon": 2.6520756538555257, "coord": [48.850712449056154, 2.6520756538555257], "stop_id": 5231686, "stop_desc": "FACE 50 RUE DE PARIS - 77468", "stop_name": "MAIRIE DE TORCY"}, "geometry": {"type": "Point", "coordinates": [2.6520756538555257, 48.850712449056154]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "df28434a12b8e872fa883dfc142eff35e72d450d", "fields": {"departement": "77", "stop_lat": 48.850599319807685, "code_postal": "77468", "stop_lon": 2.657427091333727, "coord": [48.850599319807685, 2.657427091333727], "stop_id": 5231687, "stop_desc": "1 RUE DE PARIS - 77468", "stop_name": "LA MARE AUX MARCHAIS"}, "geometry": {"type": "Point", "coordinates": [2.657427091333727, 48.850599319807685]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "12f45691fe56a96fc1a73e88d7028576698704ab", "fields": {"departement": "77", "stop_lat": 48.83922919476257, "code_postal": "77468", "stop_lon": 2.6543750959439127, "coord": [48.83922919476257, 2.6543750959439127], "stop_id": 5231693, "stop_desc": "AVENUE JEAN MOULIN - 77468", "stop_name": "TORCY-RER"}, "geometry": {"type": "Point", "coordinates": [2.6543750959439127, 48.83922919476257]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "36c628093af2ebdf8957a4c6507f64071829d3fe", "fields": {"departement": "91", "stop_lat": 48.73970899646605, "code_postal": "91645", "stop_lon": 2.2488958968010944, "coord": [48.73970899646605, 2.2488958968010944], "stop_id": 5231696, "stop_desc": "FACE 12 RUE DE PARIS - 91645", "stop_name": "CROIX PASQUIER"}, "geometry": {"type": "Point", "coordinates": [2.2488958968010944, 48.73970899646605]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cb8d034d616c0ef5fb8ec7e600d0735ab2ba2ab5", "fields": {"departement": "91", "stop_lat": 48.74439504485675, "code_postal": "91645", "stop_lon": 2.267126659210256, "coord": [48.74439504485675, 2.267126659210256], "stop_id": 5231706, "stop_desc": "42 BOULEVARD DU MARECHAL FOCH - 91645", "stop_name": "FOCH - LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.267126659210256, 48.74439504485675]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "87a4ab471c8b655841b1d81526b9cbb9f7ebf527", "fields": {"departement": "91", "stop_lat": 48.74586122520928, "code_postal": "91645", "stop_lon": 2.269013842406873, "coord": [48.74586122520928, 2.269013842406873], "stop_id": 5231708, "stop_desc": "FACE 56 BOULEVARD DU MARECHAL FOCH - 91645", "stop_name": "PARON"}, "geometry": {"type": "Point", "coordinates": [2.269013842406873, 48.74586122520928]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dd1d6a463a2f8d94ec295837633850394d507ada", "fields": {"departement": "92", "stop_lat": 48.75668946180795, "code_postal": "92002", "stop_lon": 2.2813836841328583, "coord": [48.75668946180795, 2.2813836841328583], "stop_id": 5231717, "stop_desc": "170 AVENUE DU BOIS DE VERRIERES - 92002", "stop_name": "MARCEL MAILLARD"}, "geometry": {"type": "Point", "coordinates": [2.2813836841328583, 48.75668946180795]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "82e2f60f7af384ebff81354de82e0844ce71a029", "fields": {"departement": "92", "stop_lat": 48.8949267944631, "code_postal": "92050", "stop_lon": 2.227150108430016, "coord": [48.8949267944631, 2.227150108430016], "stop_id": 5231842, "stop_desc": "FACE 34 BD DE PESARO - 92050", "stop_name": "LES TERRASSES"}, "geometry": {"type": "Point", "coordinates": [2.227150108430016, 48.8949267944631]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "da2c3bdbcbe51754a8f7ca0eb02f933b54e62212", "fields": {"departement": "91", "stop_lat": 48.735003657424244, "code_postal": "91377", "stop_lon": 2.2876575810939976, "coord": [48.735003657424244, 2.2876575810939976], "stop_id": 5244890, "stop_desc": "18 AVENUE DU PRESIDENT KENNEDY - 91377", "stop_name": "CENTRE SPORTIF LIONEL TERRAY"}, "geometry": {"type": "Point", "coordinates": [2.2876575810939976, 48.735003657424244]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9ea2c7a0c2e48adcbb387e27ab02a6fa24469b7e", "fields": {"departement": "92", "stop_lat": 48.73933315419369, "code_postal": "92002", "stop_lon": 2.3055914294546302, "coord": [48.73933315419369, 2.3055914294546302], "stop_id": 5244894, "stop_desc": "FACE 188 RUE DES RABATS - 92002", "stop_name": "COLLEGE DES RABATS"}, "geometry": {"type": "Point", "coordinates": [2.3055914294546302, 48.73933315419369]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9a80edb93fd28124ced5f58365b487c54d537289", "fields": {"departement": "92", "stop_lat": 48.745447044142786, "code_postal": "92002", "stop_lon": 2.3136879267601707, "coord": [48.745447044142786, 2.3136879267601707], "stop_id": 5244899, "stop_desc": "10 RUE DES RABATS - 92002", "stop_name": "LES RABATS - ARMAND GUILLEBAUD"}, "geometry": {"type": "Point", "coordinates": [2.3136879267601707, 48.745447044142786]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f3e3621b4bbea9ce953ee5e7d156803aa56fb529", "fields": {"departement": "92", "stop_lat": 48.74038263948592, "code_postal": "92002", "stop_lon": 2.298374685284482, "coord": [48.74038263948592, 2.298374685284482], "stop_id": 5244903, "stop_desc": "117 BIS RUE MIRABEAU - 92002", "stop_name": "BACONNETS - MIRABEAU"}, "geometry": {"type": "Point", "coordinates": [2.298374685284482, 48.74038263948592]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "679e8f714a945160fee08cf5413b69bac378f60c", "fields": {"departement": "92", "stop_lat": 48.73627282979433, "code_postal": "92002", "stop_lon": 2.2922357213290274, "coord": [48.73627282979433, 2.2922357213290274], "stop_id": 5244910, "stop_desc": "2-4 AVENUE DU PRESIDENT J-F KENNEDY - 92002", "stop_name": "KENNEDY - BOURGOGNE"}, "geometry": {"type": "Point", "coordinates": [2.2922357213290274, 48.73627282979433]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1b999fa4856175ab4486cb10e1eae058b8ce0a3f", "fields": {"departement": "92", "stop_lat": 48.9374526254832, "code_postal": "92036", "stop_lon": 2.2764005385463992, "coord": [48.9374526254832, 2.2764005385463992], "stop_id": 5244912, "stop_desc": "ROUTE PRINCIPALE DU PORT - 92036", "stop_name": "CENTRE DE VIE"}, "geometry": {"type": "Point", "coordinates": [2.2764005385463992, 48.9374526254832]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "781af683e9f1504f11bebd57f34ac600d0bfdd01", "fields": {"departement": "92", "stop_lat": 48.93835357740893, "code_postal": "92036", "stop_lon": 2.281023984871198, "coord": [48.93835357740893, 2.281023984871198], "stop_id": 5244918, "stop_desc": "35 ROUTE PRINCIPALE DU PORT - 92036", "stop_name": "BASSIN N0 2"}, "geometry": {"type": "Point", "coordinates": [2.281023984871198, 48.93835357740893]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "842561ec204ae32de12a97b649dd49baee14169f", "fields": {"departement": "92", "stop_lat": 48.94733982923478, "code_postal": "92036", "stop_lon": 2.279881774405817, "coord": [48.94733982923478, 2.279881774405817], "stop_id": 5244923, "stop_desc": "0 RTE DE LA SEINE - 92036", "stop_name": "CORUS"}, "geometry": {"type": "Point", "coordinates": [2.279881774405817, 48.94733982923478]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "56028eef3b1cbb6dcda97bd38ac094d93162c8ce", "fields": {"departement": "92", "stop_lat": 48.94649287294931, "code_postal": "92036", "stop_lon": 2.296364365181311, "coord": [48.94649287294931, 2.296364365181311], "stop_id": 5244929, "stop_desc": "FACE 23 CHEMIN DES PETITS MARAIS - 92036", "stop_name": "CHEMIN DES PETITS MARAIS"}, "geometry": {"type": "Point", "coordinates": [2.296364365181311, 48.94649287294931]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "077e72b07a181855a168b430fd0fa14146a9c80f", "fields": {"departement": "92", "stop_lat": 48.94637609167923, "code_postal": "92036", "stop_lon": 2.296500894619952, "coord": [48.94637609167923, 2.296500894619952], "stop_id": 5244931, "stop_desc": "23 CHEMIN DES PETITS MARAIS - 92036", "stop_name": "CHEMIN DES PETITS MARAIS."}, "geometry": {"type": "Point", "coordinates": [2.296500894619952, 48.94637609167923]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ac511fd763606b34df794a4b85cebf10fc453b18", "fields": {"departement": "92", "stop_lat": 48.94906812034571, "code_postal": "92036", "stop_lon": 2.2861153640092398, "coord": [48.94906812034571, 2.2861153640092398], "stop_id": 5244932, "stop_desc": "FACE 27-29 RTE DU BASSIN NUMERO 6 - 92036", "stop_name": "PETROLIERS"}, "geometry": {"type": "Point", "coordinates": [2.2861153640092398, 48.94906812034571]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "53ebcc589a492733cdf7776726079105777a6e91", "fields": {"departement": "92", "stop_lat": 48.94733982923478, "code_postal": "92036", "stop_lon": 2.279881774405817, "coord": [48.94733982923478, 2.279881774405817], "stop_id": 5244950, "stop_desc": "0 RTE DE LA SEINE - 92036", "stop_name": "CORUS"}, "geometry": {"type": "Point", "coordinates": [2.279881774405817, 48.94733982923478]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "37a70e8b9c0f784cc0fabc016ce5591bfeaf4cff", "fields": {"departement": "92", "stop_lat": 48.94139654436982, "code_postal": "92036", "stop_lon": 2.2940355382058546, "coord": [48.94139654436982, 2.2940355382058546], "stop_id": 5244953, "stop_desc": "ROUTE PRINCIPALE DU PORT - 92036", "stop_name": "DARSE N0 5"}, "geometry": {"type": "Point", "coordinates": [2.2940355382058546, 48.94139654436982]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3dcc10e11a4aec87843300647596178adff27c2e", "fields": {"departement": "92", "stop_lat": 48.94832048428063, "code_postal": "92036", "stop_lon": 2.282213851657548, "coord": [48.94832048428063, 2.282213851657548], "stop_id": 5244958, "stop_desc": "FACE 39 RTE DU BASSIN NUMERO 6 - 92036", "stop_name": "ROND-POINT SEINE"}, "geometry": {"type": "Point", "coordinates": [2.282213851657548, 48.94832048428063]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "56990d89f37f91746bc05c633f31904059a38ad7", "fields": {"departement": "92", "stop_lat": 48.94140616986662, "code_postal": "92036", "stop_lon": 2.295836328379344, "coord": [48.94140616986662, 2.295836328379344], "stop_id": 5244965, "stop_desc": "ROUTE PRINCIPALE DU PORT - 92036", "stop_name": "IFTIM"}, "geometry": {"type": "Point", "coordinates": [2.295836328379344, 48.94140616986662]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5d1a1b8e57749a4d5181d0d3c5ea07d0e37c3a04", "fields": {"departement": "92", "stop_lat": 48.93350110162918, "code_postal": "92036", "stop_lon": 2.3069731582744093, "coord": [48.93350110162918, 2.3069731582744093], "stop_id": 5244967, "stop_desc": "0 AV DU GENERAL DE GAULLE - 92036", "stop_name": "GENNEVILLIERS RER"}, "geometry": {"type": "Point", "coordinates": [2.3069731582744093, 48.93350110162918]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c700bf9f2d3bbec1ab3f050100c3ade4b2c2c653", "fields": {"departement": "92", "stop_lat": 48.93040707631775, "code_postal": "92025", "stop_lon": 2.261023443112197, "coord": [48.93040707631775, 2.261023443112197], "stop_id": 5244968, "stop_desc": "BOULEVARD MARCEAU - 92025", "stop_name": "GARE DU STADE"}, "geometry": {"type": "Point", "coordinates": [2.261023443112197, 48.93040707631775]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0a803b54e156ec18ad6b298134f65e4c927c4859", "fields": {"departement": "92", "stop_lat": 48.93040707631775, "code_postal": "92025", "stop_lon": 2.261023443112197, "coord": [48.93040707631775, 2.261023443112197], "stop_id": 5244969, "stop_desc": "BOULEVARD MARCEAU - 92025", "stop_name": "GARE DU STADE"}, "geometry": {"type": "Point", "coordinates": [2.261023443112197, 48.93040707631775]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5b178458008511a1099cb117be17672793219a57", "fields": {"departement": "92", "stop_lat": 48.93779637657669, "code_postal": "92036", "stop_lon": 2.2643820060671325, "coord": [48.93779637657669, 2.2643820060671325], "stop_id": 5244973, "stop_desc": "0 RTE OUEST DU MOLE NUMERO 1 - 92036", "stop_name": "CFM"}, "geometry": {"type": "Point", "coordinates": [2.2643820060671325, 48.93779637657669]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "52e583b407cddb986b3ba487d92d91b467eb284d", "fields": {"departement": "92", "stop_lat": 48.93546407839365, "code_postal": "92036", "stop_lon": 2.2717649872842665, "coord": [48.93546407839365, 2.2717649872842665], "stop_id": 5244974, "stop_desc": "ROUTE DES MERCIERES - 92036", "stop_name": "MERCIERES"}, "geometry": {"type": "Point", "coordinates": [2.2717649872842665, 48.93546407839365]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3673b19583276e30f8415d057a41789d7dc657e4", "fields": {"departement": "92", "stop_lat": 48.9374526254832, "code_postal": "92036", "stop_lon": 2.2764005385463992, "coord": [48.9374526254832, 2.2764005385463992], "stop_id": 5244979, "stop_desc": "ROUTE PRINCIPALE DU PORT - 92036", "stop_name": "CENTRE DE VIE"}, "geometry": {"type": "Point", "coordinates": [2.2764005385463992, 48.9374526254832]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2cb17248954aad11c3282a6f6620c179c2c515ed", "fields": {"departement": "92", "stop_lat": 48.93892783859855, "code_postal": "92036", "stop_lon": 2.279154440214823, "coord": [48.93892783859855, 2.279154440214823], "stop_id": 5244980, "stop_desc": "0 RTE PRINCIPALE DU PORT - 92036", "stop_name": "DEBARCADERE"}, "geometry": {"type": "Point", "coordinates": [2.279154440214823, 48.93892783859855]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d1444d0d47623d73683144d42fc6b782c45628bd", "fields": {"departement": "92", "stop_lat": 48.93892783859855, "code_postal": "92036", "stop_lon": 2.279154440214823, "coord": [48.93892783859855, 2.279154440214823], "stop_id": 5244981, "stop_desc": "0 RTE PRINCIPALE DU PORT - 92036", "stop_name": "DEBARCADERE"}, "geometry": {"type": "Point", "coordinates": [2.279154440214823, 48.93892783859855]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "057d43133dbb213ebf269b1eb78bed0f99c86f2d", "fields": {"departement": "92", "stop_lat": 48.94299631080269, "code_postal": "92036", "stop_lon": 2.2741293126156603, "coord": [48.94299631080269, 2.2741293126156603], "stop_id": 5244983, "stop_desc": "12 RTE DU MOLE 2 ET 3 - 92036", "stop_name": "OSCARO"}, "geometry": {"type": "Point", "coordinates": [2.2741293126156603, 48.94299631080269]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "130084f263fe4cc83f9f0febb789b72d2b390c3f", "fields": {"departement": "92", "stop_lat": 48.94635817395166, "code_postal": "92036", "stop_lon": 2.2966646333099496, "coord": [48.94635817395166, 2.2966646333099496], "stop_id": 5244992, "stop_desc": "23 CHEMIN DES PETITS MARAIS - 92036", "stop_name": "CHEMIN DES PETITS MARAIS"}, "geometry": {"type": "Point", "coordinates": [2.2966646333099496, 48.94635817395166]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "141a5478cb33397bd483c266a2f80bb2fe736128", "fields": {"departement": "92", "stop_lat": 48.94637609167923, "code_postal": "92036", "stop_lon": 2.296500894619952, "coord": [48.94637609167923, 2.296500894619952], "stop_id": 5244995, "stop_desc": "23 CHEMIN DES PETITS MARAIS - 92036", "stop_name": "CHEMIN DES PETITS MARAIS."}, "geometry": {"type": "Point", "coordinates": [2.296500894619952, 48.94637609167923]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ed965e4184f92050e7ca2b7de740a518f7088e98", "fields": {"departement": "92", "stop_lat": 48.94906812034571, "code_postal": "92036", "stop_lon": 2.2861153640092398, "coord": [48.94906812034571, 2.2861153640092398], "stop_id": 5244996, "stop_desc": "FACE 27-29 RTE DU BASSIN NUMERO 6 - 92036", "stop_name": "PETROLIERS"}, "geometry": {"type": "Point", "coordinates": [2.2861153640092398, 48.94906812034571]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "045e8a762b6e8a639292e54abc52fe8aaefe7999", "fields": {"departement": "92", "stop_lat": 48.94832048428063, "code_postal": "92036", "stop_lon": 2.282213851657548, "coord": [48.94832048428063, 2.282213851657548], "stop_id": 5244997, "stop_desc": "FACE 39 RTE DU BASSIN NUMERO 6 - 92036", "stop_name": "ROND-POINT SEINE"}, "geometry": {"type": "Point", "coordinates": [2.282213851657548, 48.94832048428063]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4fe6db7aca504d7cbfae3498b91e99ab5113c6b8", "fields": {"departement": "92", "stop_lat": 48.90259408337223, "code_postal": "92024", "stop_lon": 2.3039921380474033, "coord": [48.90259408337223, 2.3039921380474033], "stop_id": 5250729, "stop_desc": "89 BOULEVARD JEAN JAURES - 92024", "stop_name": "MAIRIE DE CLICHY-METRO"}, "geometry": {"type": "Point", "coordinates": [2.3039921380474033, 48.90259408337223]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7fac4daac10f76820648b4746b45f93fef03eba2", "fields": {"departement": "92", "stop_lat": 48.90259408337223, "code_postal": "92024", "stop_lon": 2.3039921380474033, "coord": [48.90259408337223, 2.3039921380474033], "stop_id": 5250730, "stop_desc": "89 BOULEVARD JEAN JAURES - 92024", "stop_name": "MAIRIE DE CLICHY-METRO"}, "geometry": {"type": "Point", "coordinates": [2.3039921380474033, 48.90259408337223]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bdd3553c6068bf4b9d232ad247996dd7b3f0d4f5", "fields": {"departement": "75", "stop_lat": 48.878158015689465, "code_postal": "75116", "stop_lon": 2.280448865923247, "coord": [48.878158015689465, 2.280448865923247], "stop_id": 5251749, "stop_desc": "PLACE JOSEPH ET MARIE HACKIN - 75116", "stop_name": "PORTE MAILLOT - METRO - RER"}, "geometry": {"type": "Point", "coordinates": [2.280448865923247, 48.878158015689465]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d254fa80390c3127edb190c10395e71cf4582cc2", "fields": {"departement": "75", "stop_lat": 48.874980953536664, "code_postal": "75116", "stop_lon": 2.271596140216787, "coord": [48.874980953536664, 2.271596140216787], "stop_id": 5251751, "stop_desc": "ALLEE DE LONGCHAMP - 75116", "stop_name": "JARDIN D'ACCLIMATATION"}, "geometry": {"type": "Point", "coordinates": [2.271596140216787, 48.874980953536664]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ba8a32fde66179528aa9ecfaac12b21601e4971f", "fields": {"departement": "75", "stop_lat": 48.87250506354038, "code_postal": "75116", "stop_lon": 2.2640786708486185, "coord": [48.87250506354038, 2.2640786708486185], "stop_id": 5251752, "stop_desc": "ALLEE DE LONGCHAMP - 75116", "stop_name": "ROUTE DE LA MUETTE"}, "geometry": {"type": "Point", "coordinates": [2.2640786708486185, 48.87250506354038]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c04479acba0dd616ba2dab5290107fac359db78b", "fields": {"departement": "75", "stop_lat": 48.86374350708938, "code_postal": "75116", "stop_lon": 2.2404432688798335, "coord": [48.86374350708938, 2.2404432688798335], "stop_id": 5251759, "stop_desc": "ALLEE DE LONGCHAMP - 75116", "stop_name": "CARREFOUR DE LONGCHAMP"}, "geometry": {"type": "Point", "coordinates": [2.2404432688798335, 48.86374350708938]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "36c2d18d4c2c9a6033949a5f3a88fc3cd5525f26", "fields": {"departement": "92", "stop_lat": 48.86767710841224, "code_postal": "92073", "stop_lon": 2.226812902957634, "coord": [48.86767710841224, 2.226812902957634], "stop_id": 5251762, "stop_desc": "FACE 13 BOULEVARD HENRI SELLIER - 92073", "stop_name": "RUE DES BOURETS - PONT DE SURESNES"}, "geometry": {"type": "Point", "coordinates": [2.226812902957634, 48.86767710841224]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a0887176f7225d66d368081ce67451016573fbea", "fields": {"departement": "92", "stop_lat": 48.867290753577876, "code_postal": "92073", "stop_lon": 2.2269227092177055, "coord": [48.867290753577876, 2.2269227092177055], "stop_id": 5251763, "stop_desc": "BOULEVARD HENRI SELLIER - 92073", "stop_name": "RUE DES BOURETS - PONT DE SURESNES"}, "geometry": {"type": "Point", "coordinates": [2.2269227092177055, 48.867290753577876]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "66b820d1f57194e4dcd095cb52be1b31368cf63a", "fields": {"departement": "92", "stop_lat": 48.86837636340144, "code_postal": "92073", "stop_lon": 2.2249314109891505, "coord": [48.86837636340144, 2.2249314109891505], "stop_id": 5251764, "stop_desc": "38 BOULEVARD HENRI SELLIER - 92073", "stop_name": "SURESNES DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.2249314109891505, 48.86837636340144]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0ff4c1fca955ed78a2a345627b487e668c8c264f", "fields": {"departement": "92", "stop_lat": 48.86787309807707, "code_postal": "92073", "stop_lon": 2.2249597473026133, "coord": [48.86787309807707, 2.2249597473026133], "stop_id": 5251765, "stop_desc": "39 BOULEVARD HENRI SELLIER - 92073", "stop_name": "SURESNES DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.2249597473026133, 48.86787309807707]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fa7958a8af29cb8e1b17994f6b35d88b0830f0ca", "fields": {"departement": "92", "stop_lat": 48.86006972889107, "code_postal": "92073", "stop_lon": 2.213548602298387, "coord": [48.86006972889107, 2.213548602298387], "stop_id": 5251770, "stop_desc": "20 BOULEVARD LOUIS LOUCHEUR - 92073", "stop_name": "VAL D'OR"}, "geometry": {"type": "Point", "coordinates": [2.213548602298387, 48.86006972889107]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "64fc843595a3dff0521f4083e4e45a1ce3b56f61", "fields": {"departement": "92", "stop_lat": 48.86140775640603, "code_postal": "92073", "stop_lon": 2.212496564318806, "coord": [48.86140775640603, 2.212496564318806], "stop_id": 5251773, "stop_desc": "CARREFOUR DE LA CROIX DU ROY - 92073", "stop_name": "CROIX DU ROY"}, "geometry": {"type": "Point", "coordinates": [2.212496564318806, 48.86140775640603]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4792fd3f058149a406ca83ba53bc4b3cbcb25ecb", "fields": {"departement": "92", "stop_lat": 48.86371353049643, "code_postal": "92073", "stop_lon": 2.2087449708660327, "coord": [48.86371353049643, 2.2087449708660327], "stop_id": 5251775, "stop_desc": "23 AVENUE JEAN JAURES - 92073", "stop_name": "PLACE JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.2087449708660327, 48.86371353049643]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "22adacca5dafe4febf50c3747353ea0791236fcd", "fields": {"departement": "92", "stop_lat": 48.867051237469475, "code_postal": "92063", "stop_lon": 2.203655370596936, "coord": [48.867051237469475, 2.203655370596936], "stop_id": 5251778, "stop_desc": "64 RUE GALLIENI - 92063", "stop_name": "LES HOUTRAITS"}, "geometry": {"type": "Point", "coordinates": [2.203655370596936, 48.867051237469475]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6848f1875ab4adbde8fe8222cb8608117c9d5304", "fields": {"departement": "92", "stop_lat": 48.87266704184456, "code_postal": "92063", "stop_lon": 2.1947850777900255, "coord": [48.87266704184456, 2.1947850777900255], "stop_id": 5251784, "stop_desc": "54 RUE DES BONS RAISINS - 92063", "stop_name": "LES GODARDES"}, "geometry": {"type": "Point", "coordinates": [2.1947850777900255, 48.87266704184456]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ec737c7a5f12f1e614996df8c0db0f0486d4327f", "fields": {"departement": "92", "stop_lat": 48.87598159287678, "code_postal": "92063", "stop_lon": 2.1860558312203677, "coord": [48.87598159287678, 2.1860558312203677], "stop_id": 5251788, "stop_desc": "46 RUE HABY SOMMER - 92063", "stop_name": "HOPITAL STELL"}, "geometry": {"type": "Point", "coordinates": [2.1860558312203677, 48.87598159287678]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "530d6fdad92a82dd5096df3bf7603dee61f68277", "fields": {"departement": "92", "stop_lat": 48.88033043782723, "code_postal": "92063", "stop_lon": 2.1852664446552246, "coord": [48.88033043782723, 2.1852664446552246], "stop_id": 5251789, "stop_desc": "FACE 16 BOULEVARD DE L'HOPITAL STELL - 92063", "stop_name": "LE GUE"}, "geometry": {"type": "Point", "coordinates": [2.1852664446552246, 48.88033043782723]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6e14b9afedf155baf095917bd08df5d4fed4a501", "fields": {"departement": "92", "stop_lat": 48.887055008410314, "code_postal": "92063", "stop_lon": 2.1732948560407204, "coord": [48.887055008410314, 2.1732948560407204], "stop_id": 5251795, "stop_desc": "PISTE GARE ROUTIERE - 92063", "stop_name": "RUEIL-MALMAISON RER"}, "geometry": {"type": "Point", "coordinates": [2.1732948560407204, 48.887055008410314]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "da0955f4f301fe80cc5273860ecc839cb7d94115", "fields": {"departement": "92", "stop_lat": 48.883420797768736, "code_postal": "92063", "stop_lon": 2.1708670863203836, "coord": [48.883420797768736, 2.1708670863203836], "stop_id": 5251797, "stop_desc": "FACE 62 AVENUE DE LA REPUBLIQUE - 92063", "stop_name": "LES MARTINETS"}, "geometry": {"type": "Point", "coordinates": [2.1708670863203836, 48.883420797768736]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "776891a38d73e814ebcdbb2fe864d977debe79c2", "fields": {"departement": "92", "stop_lat": 48.92531739125098, "code_postal": "92078", "stop_lon": 2.3264123370895655, "coord": [48.92531739125098, 2.3264123370895655], "stop_id": 5276844, "stop_desc": "22 BOULEVARD GALLIENI - 92078", "stop_name": "BONGARDE"}, "geometry": {"type": "Point", "coordinates": [2.3264123370895655, 48.92531739125098]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1377402330b9dae57c465782be15a09fb4d6ffec", "fields": {"departement": "92", "stop_lat": 48.92525441752627, "code_postal": "92036", "stop_lon": 2.325716804396905, "coord": [48.92525441752627, 2.325716804396905], "stop_id": 5276845, "stop_desc": "5 BOULEVARD GALLIENI - 92036", "stop_name": "BONGARDE"}, "geometry": {"type": "Point", "coordinates": [2.325716804396905, 48.92525441752627]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b6faa150b897e955fa940eba47d5ee3c1cc9e5ea", "fields": {"departement": "92", "stop_lat": 48.92525441752627, "code_postal": "92036", "stop_lon": 2.325716804396905, "coord": [48.92525441752627, 2.325716804396905], "stop_id": 5276847, "stop_desc": "5 BOULEVARD GALLIENI - 92036", "stop_name": "BONGARDE"}, "geometry": {"type": "Point", "coordinates": [2.325716804396905, 48.92525441752627]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ec8311c8574af79002c60385e1f9886d8c42f306", "fields": {"departement": "75", "stop_lat": 48.875460170880956, "code_postal": "75119", "stop_lon": 2.3974365569554887, "coord": [48.875460170880956, 2.3974365569554887], "stop_id": 5289085, "stop_desc": "245-247 RUE DE BELLEVILLE - 75119", "stop_name": "PELLEPORT - BELLEVILLE"}, "geometry": {"type": "Point", "coordinates": [2.3974365569554887, 48.875460170880956]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9fe429af15dc5564edebc5a282f95e92f902d548", "fields": {"departement": "75", "stop_lat": 48.87404566886351, "code_postal": "75119", "stop_lon": 2.385349817779035, "coord": [48.87404566886351, 2.385349817779035], "stop_id": 5289087, "stop_desc": "95 RUE DE BELLEVILLE - 75119", "stop_name": "PYRENEES"}, "geometry": {"type": "Point", "coordinates": [2.385349817779035, 48.87404566886351]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f5b39778e06c9898bf74b008d317ce861abed2d6", "fields": {"departement": "75", "stop_lat": 48.86897362596347, "code_postal": "75110", "stop_lon": 2.36778461159907, "coord": [48.86897362596347, 2.36778461159907], "stop_id": 5289090, "stop_desc": "31/33 RUE DU FAUBOURG DU TEMPLE - 75110", "stop_name": "JULES FERRY"}, "geometry": {"type": "Point", "coordinates": [2.36778461159907, 48.86897362596347]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8b39f646a0513c4b223eac8b7de7079604aad42e", "fields": {"departement": "75", "stop_lat": 48.86581231751377, "code_postal": "75103", "stop_lon": 2.357211673996915, "coord": [48.86581231751377, 2.357211673996915], "stop_id": 5289093, "stop_desc": "FACE 56 RUE DE TURBIGO - 75103", "stop_name": "ARTS ET METIERS"}, "geometry": {"type": "Point", "coordinates": [2.357211673996915, 48.86581231751377]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a4224d27053672419605212b9842fabe6a1252e5", "fields": {"departement": "75", "stop_lat": 48.85746411278103, "code_postal": "75104", "stop_lon": 2.349063505360302, "coord": [48.85746411278103, 2.349063505360302], "stop_id": 5289096, "stop_desc": "FACE 13 AVENUE VICTORIA - 75104", "stop_name": "CHATELET"}, "geometry": {"type": "Point", "coordinates": [2.349063505360302, 48.85746411278103]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c0c82ff6b91f2e41d23590b3359fe05a04ebe414", "fields": {"departement": "75", "stop_lat": 48.846103994722135, "code_postal": "75106", "stop_lon": 2.325870580821929, "coord": [48.846103994722135, 2.325870580821929], "stop_id": 5289106, "stop_desc": "128 RUE DE RENNES - 75106", "stop_name": "RENNES - SAINT-PLACIDE"}, "geometry": {"type": "Point", "coordinates": [2.325870580821929, 48.846103994722135]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "422db08fee1717157012e586a94406bbde1d93b6", "fields": {"departement": "75", "stop_lat": 48.8489498688076, "code_postal": "75115", "stop_lon": 2.2822648220421606, "coord": [48.8489498688076, 2.2822648220421606], "stop_id": 5289116, "stop_desc": "3 RUE LINOIS - 75115", "stop_name": "PONT DE GRENELLE - PLACE FERNAND FOREST"}, "geometry": {"type": "Point", "coordinates": [2.2822648220421606, 48.8489498688076]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f48ea1dbee2cb04171c938c463b14f5765e0cfc6", "fields": {"departement": "75", "stop_lat": 48.84890136594033, "code_postal": "75116", "stop_lon": 2.275020053410374, "coord": [48.84890136594033, 2.275020053410374], "stop_id": 5289118, "stop_desc": "42 AVENUE DE VERSAILLES - 75116", "stop_name": "DEGAS"}, "geometry": {"type": "Point", "coordinates": [2.275020053410374, 48.84890136594033]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c50c829e1c3260b920cb2d3b21c2da49640ac51c", "fields": {"departement": "75", "stop_lat": 48.83817802656563, "code_postal": "75116", "stop_lon": 2.257864060448581, "coord": [48.83817802656563, 2.257864060448581], "stop_id": 5289123, "stop_desc": "232 AVENUE DE VERSAILLES - 75116", "stop_name": "PORTE DE SAINT-CLOUD - MURAT"}, "geometry": {"type": "Point", "coordinates": [2.257864060448581, 48.83817802656563]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d16c58f4fdc2821c9453fa476685a0c62c5aa8f4", "fields": {"departement": "92", "stop_lat": 48.8323758684232, "code_postal": "92012", "stop_lon": 2.2389089828573803, "coord": [48.8323758684232, 2.2389089828573803], "stop_id": 5289128, "stop_desc": "54 AVENUE DU GENERAL LECLERC - 92012", "stop_name": "BILLANCOURT"}, "geometry": {"type": "Point", "coordinates": [2.2389089828573803, 48.8323758684232]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a83ecd8b4e607f4bb308e968ad4028ff707900b9", "fields": {"departement": "75", "stop_lat": 48.84884762551571, "code_postal": "75116", "stop_lon": 2.2753741876820532, "coord": [48.84884762551571, 2.2753741876820532], "stop_id": 5289141, "stop_desc": "41 AVENUE DE VERSAILLES - 75116", "stop_name": "DEGAS"}, "geometry": {"type": "Point", "coordinates": [2.2753741876820532, 48.84884762551571]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4c05f6abec6a6d365bf755a6f9e31e1da7fe4e17", "fields": {"departement": "75", "stop_lat": 48.84756368697721, "code_postal": "75115", "stop_lon": 2.300037429389743, "coord": [48.84756368697721, 2.300037429389743], "stop_id": 5289146, "stop_desc": "44 RUE FREMICOURT - 75115", "stop_name": "CAMBRONNE"}, "geometry": {"type": "Point", "coordinates": [2.300037429389743, 48.84756368697721]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9d6f3230a45d459ad2c8b44984f4960d6c967c5f", "fields": {"departement": "75", "stop_lat": 48.843731020990745, "code_postal": "75115", "stop_lon": 2.3233383911773933, "coord": [48.843731020990745, 2.3233383911773933], "stop_id": 5289150, "stop_desc": "PLACE DU 18 JUIN 1940 - 75115", "stop_name": "PLACE DU 18 JUIN 1940"}, "geometry": {"type": "Point", "coordinates": [2.3233383911773933, 48.843731020990745]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8ab084b161a23999a839476f950e211871e1133b", "fields": {"departement": "75", "stop_lat": 48.84454903838894, "code_postal": "75106", "stop_lon": 2.3247134823772995, "coord": [48.84454903838894, 2.3247134823772995], "stop_id": 5289151, "stop_desc": "169-171 RUE DE RENNES - 75106", "stop_name": "RENNES - LITTRE"}, "geometry": {"type": "Point", "coordinates": [2.3247134823772995, 48.84454903838894]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a0c2eb2a0337ae9c797284b40b51a76c0e7ddd97", "fields": {"departement": "75", "stop_lat": 48.85289907507759, "code_postal": "75106", "stop_lon": 2.336560105706197, "coord": [48.85289907507759, 2.336560105706197], "stop_id": 5289156, "stop_desc": "125 BOULEVARD SAINT-GERMAIN - 75106", "stop_name": "SEINE - BUCI"}, "geometry": {"type": "Point", "coordinates": [2.336560105706197, 48.85289907507759]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "81f1f625cae563c0439824aca3ce197f0df0b8ad", "fields": {"departement": "75", "stop_lat": 48.852162079896225, "code_postal": "75106", "stop_lon": 2.3397060895787947, "coord": [48.852162079896225, 2.3397060895787947], "stop_id": 5289157, "stop_desc": "87 BOULEVARD SAINT GERMAIN - 75106", "stop_name": "SAINT-GERMAIN - ODEON"}, "geometry": {"type": "Point", "coordinates": [2.3397060895787947, 48.852162079896225]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0168bedc49bab28749ae15f85a558e662dda4b67", "fields": {"departement": "75", "stop_lat": 48.863997699201235, "code_postal": "75103", "stop_lon": 2.351407984903802, "coord": [48.863997699201235, 2.351407984903802], "stop_id": 5289162, "stop_desc": "66 BOULEVARD DE SEBASTOPOL - 75103", "stop_name": "TURBIGO - ETIENNE MARCEL"}, "geometry": {"type": "Point", "coordinates": [2.351407984903802, 48.863997699201235]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "78bac3b251e394ad44c04511e8cd324dcdeb910e", "fields": {"departement": "75", "stop_lat": 48.86625191048184, "code_postal": "75103", "stop_lon": 2.361462105708011, "coord": [48.86625191048184, 2.361462105708011], "stop_id": 5289166, "stop_desc": "164-166 RUE DU TEMPLE - 75103", "stop_name": "TURBIGO - REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.361462105708011, 48.86625191048184]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ca1b92847ee959383c78230d69db620806befc27", "fields": {"departement": "75", "stop_lat": 48.866112001913585, "code_postal": "75111", "stop_lon": 2.3796890795072163, "coord": [48.866112001913585, 2.3796890795072163], "stop_id": 5289169, "stop_desc": "120 RUE OBERKAMPF - 75111", "stop_name": "SAINT-MAUR - JEAN AICARD"}, "geometry": {"type": "Point", "coordinates": [2.3796890795072163, 48.866112001913585]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "75de1748d9e300ed1f5860a6b0523724d8fdfb6c", "fields": {"departement": "75", "stop_lat": 48.874054501568004, "code_postal": "75120", "stop_lon": 2.3857313172499337, "coord": [48.874054501568004, 2.3857313172499337], "stop_id": 5289173, "stop_desc": "88-90 RUE DE BELLEVILLE - 75120", "stop_name": "PYRENEES"}, "geometry": {"type": "Point", "coordinates": [2.3857313172499337, 48.874054501568004]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ddd6554fdcf927cde9c0bb00a94c89df9aad11ff", "fields": {"departement": "93", "stop_lat": 48.87848998242335, "code_postal": "93045", "stop_lon": 2.411433829034282, "coord": [48.87848998242335, 2.411433829034282], "stop_id": 5289178, "stop_desc": "44 R DE PARIS - 93045", "stop_name": "LES BRUYERES"}, "geometry": {"type": "Point", "coordinates": [2.411433829034282, 48.87848998242335]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a905755a24b76b75c508cd3522edbc1ee302578f", "fields": {"departement": "93", "stop_lat": 48.88094305908556, "code_postal": "93045", "stop_lon": 2.4252954936046307, "coord": [48.88094305908556, 2.4252954936046307], "stop_id": 5289181, "stop_desc": "48 BOULEVARD DU GENERAL LECLERC - 93045", "stop_name": "JOSEPH DEPINAY"}, "geometry": {"type": "Point", "coordinates": [2.4252954936046307, 48.88094305908556]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "221fe65f32c64b5b55a7fe3eb5b36d40ebbfe554", "fields": {"departement": "93", "stop_lat": 48.88289931879224, "code_postal": "93063", "stop_lon": 2.440206776933691, "coord": [48.88289931879224, 2.440206776933691], "stop_id": 5289184, "stop_desc": "FACE 6 RUE DE LA REPUBLIQUE - 93063", "stop_name": "CARNOT"}, "geometry": {"type": "Point", "coordinates": [2.440206776933691, 48.88289931879224]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "98a46b4060a7300d494c7966b5d0212b789fcba5", "fields": {"departement": "91", "stop_lat": 48.7224548288822, "code_postal": "91377", "stop_lon": 2.2675637939678728, "coord": [48.7224548288822, 2.2675637939678728], "stop_id": 5298002, "stop_desc": "12-14 RUE ALEXANDRA DAVID NEEL - 91377", "stop_name": "LEONARD DE VINCI"}, "geometry": {"type": "Point", "coordinates": [2.2675637939678728, 48.7224548288822]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "82687fec6124d6996a59cd23e912f2bce14d7865", "fields": {"departement": "91", "stop_lat": 48.7225358357411, "code_postal": "91377", "stop_lon": 2.267753875299475, "coord": [48.7225358357411, 2.267753875299475], "stop_id": 5298005, "stop_desc": "FACE AU 12-14 RUE ALEXANDRA DAVIS NEEL - 91377", "stop_name": "LEONARD DE VINCI"}, "geometry": {"type": "Point", "coordinates": [2.267753875299475, 48.7225358357411]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a8a21c296c1a4c0bd5b648bd21e88a94d2693ca1", "fields": {"departement": "92", "stop_lat": 48.808164959125065, "code_postal": "92020", "stop_lon": 2.2844579905904205, "coord": [48.808164959125065, 2.2844579905904205], "stop_id": 5315278, "stop_desc": "74 BOULEVARD DE VANVES - 92020", "stop_name": "NOTRE-DAME DU CALVAIRE"}, "geometry": {"type": "Point", "coordinates": [2.2844579905904205, 48.808164959125065]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d41a9516bb981886d663de38afaab4c6b32be6a7", "fields": {"departement": "92", "stop_lat": 48.80824566733703, "code_postal": "92020", "stop_lon": 2.2840496859962265, "coord": [48.80824566733703, 2.2840496859962265], "stop_id": 5315279, "stop_desc": "73 BD DE VANVES - 92020", "stop_name": "NOTRE-DAME DU CALVAIRE"}, "geometry": {"type": "Point", "coordinates": [2.2840496859962265, 48.80824566733703]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "167dbaab0a51f22599c5ce0b7a34ad0a530e2f6a", "fields": {"departement": "92", "stop_lat": 48.80476676295409, "code_postal": "92020", "stop_lon": 2.2826653874084424, "coord": [48.80476676295409, 2.2826653874084424], "stop_id": 5315284, "stop_desc": "70 AV DE LA PAIX - 92020", "stop_name": "ECOLE MARCEL DORET"}, "geometry": {"type": "Point", "coordinates": [2.2826653874084424, 48.80476676295409]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "46ca804a27820dd5b5b44b70cb7cbf7cd41bbbad", "fields": {"departement": "92", "stop_lat": 48.80567331683369, "code_postal": "92020", "stop_lon": 2.280079152990146, "coord": [48.80567331683369, 2.280079152990146], "stop_id": 5315286, "stop_desc": "74 R GAY LUSSAC - 92020", "stop_name": "COLLEGE GEORGE SAND"}, "geometry": {"type": "Point", "coordinates": [2.280079152990146, 48.80567331683369]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cad627c3260b6fe0b03ffc40fcc301d99b500609", "fields": {"departement": "92", "stop_lat": 48.802683043689086, "code_postal": "92020", "stop_lon": 2.285933008404492, "coord": [48.802683043689086, 2.285933008404492], "stop_id": 5315293, "stop_desc": "FACE 21 R JEAN PIERRE TIMBAUD - 92020", "stop_name": "JEAN-PIERRE TIMBAUD"}, "geometry": {"type": "Point", "coordinates": [2.285933008404492, 48.802683043689086]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e7c0bb82070953ac2bee19c643e632e0d8e5fee5", "fields": {"departement": "92", "stop_lat": 48.804158859735296, "code_postal": "92020", "stop_lon": 2.2903263993006653, "coord": [48.804158859735296, 2.2903263993006653], "stop_id": 5315297, "stop_desc": "FACE 6 R PAUL BERT - 92020", "stop_name": "CONSERVATOIRE"}, "geometry": {"type": "Point", "coordinates": [2.2903263993006653, 48.804158859735296]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "baa5dda562371528d4568b065b25db79afbee836", "fields": {"departement": "92", "stop_lat": 48.79994385199227, "code_postal": "92020", "stop_lon": 2.2910512864175656, "coord": [48.79994385199227, 2.2910512864175656], "stop_id": 5315302, "stop_desc": "AVENUE DE LA REPUBLIQUE - 92020", "stop_name": "MAIRIE DE CHATILLON"}, "geometry": {"type": "Point", "coordinates": [2.2910512864175656, 48.79994385199227]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e67d37f8fa62914c8aaa75330abfac64cda24c77", "fields": {"departement": "92", "stop_lat": 48.79845235424311, "code_postal": "92020", "stop_lon": 2.2923178645592674, "coord": [48.79845235424311, 2.2923178645592674], "stop_id": 5315304, "stop_desc": "12 R DE BAGNEUX - 92020", "stop_name": "PAUL ELUARD"}, "geometry": {"type": "Point", "coordinates": [2.2923178645592674, 48.79845235424311]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "860b9c0e13205a8188d77d0a0136158f08553f66", "fields": {"departement": "92", "stop_lat": 48.80552651161405, "code_postal": "92020", "stop_lon": 2.2943119273307477, "coord": [48.80552651161405, 2.2943119273307477], "stop_id": 5315306, "stop_desc": "FACE 18 R HENRI GATINOT - 92020", "stop_name": "ETIENNE DEFORGES"}, "geometry": {"type": "Point", "coordinates": [2.2943119273307477, 48.80552651161405]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1af0fd67dda17d313301881a6cad1193888079e6", "fields": {"departement": "75", "stop_lat": 48.83160590950846, "code_postal": "75112", "stop_lon": 2.387679236448177, "coord": [48.83160590950846, 2.387679236448177], "stop_id": 5325151, "stop_desc": "FACE 24-26 AVENUE DES TERROIRS DE FRANCE - 75112", "stop_name": "TERROIRS DE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.387679236448177, 48.83160590950846]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c9686261f8ef64c3d1b3399b8aa8102ce91458bf", "fields": {"departement": "94", "stop_lat": 48.824897923964144, "code_postal": "94018", "stop_lon": 2.3947508460858735, "coord": [48.824897923964144, 2.3947508460858735], "stop_id": 5325153, "stop_desc": "FACE 3 AVENUE DU GENERAL DE GAULLE - 94018", "stop_name": "PARC DE BERCY"}, "geometry": {"type": "Point", "coordinates": [2.3947508460858735, 48.824897923964144]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2e145b2b2e45c8f5969ccd37b560048efa10a70f", "fields": {"departement": "94", "stop_lat": 48.82548655995478, "code_postal": "94018", "stop_lon": 2.4035039751096807, "coord": [48.82548655995478, 2.4035039751096807], "stop_id": 5325160, "stop_desc": "10 AVENUE WINSTON CHURCHILL - 94018", "stop_name": "CHURCHILL"}, "geometry": {"type": "Point", "coordinates": [2.4035039751096807, 48.82548655995478]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2e1181a65b0af91ad9060f359e0e5581d030758e", "fields": {"departement": "93", "stop_lat": 48.87517502004982, "code_postal": "93064", "stop_lon": 2.486639056925365, "coord": [48.87517502004982, 2.486639056925365], "stop_id": 4557345, "stop_desc": "RUE LECH WALESA - 93064", "stop_name": "COMMISSARIAT"}, "geometry": {"type": "Point", "coordinates": [2.486639056925365, 48.87517502004982]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d161ad12b22b2fb04dc26a8cc9c091b1397eec16", "fields": {"departement": "93", "stop_lat": 48.877550507721665, "code_postal": "93064", "stop_lon": 2.4843567962909288, "coord": [48.877550507721665, 2.4843567962909288], "stop_id": 4557346, "stop_desc": "FACE 3 BOULEVARD GABRIEL PERI - 93064", "stop_name": "VAN DERHEYDEN"}, "geometry": {"type": "Point", "coordinates": [2.4843567962909288, 48.877550507721665]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "43f69cf3a3ab27520f2eed817440905b8392fcc4", "fields": {"departement": "93", "stop_lat": 48.90530302155479, "code_postal": "93070", "stop_lon": 2.3233218559753235, "coord": [48.90530302155479, 2.3233218559753235], "stop_id": 4574150, "stop_desc": "131-133 BOULEVARD VICTOR HUGO - 93070", "stop_name": "SAINT-OUEN RER"}, "geometry": {"type": "Point", "coordinates": [2.3233218559753235, 48.90530302155479]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2d724f1d1d704cfc6e85b4ce698b9dc9647fc334", "fields": {"departement": "93", "stop_lat": 48.90516809669935, "code_postal": "93070", "stop_lon": 2.3223403258000137, "coord": [48.90516809669935, 2.3223403258000137], "stop_id": 4574151, "stop_desc": "BOULEVARD VICTOR HUGO - 93070", "stop_name": "SAINT-OUEN RER"}, "geometry": {"type": "Point", "coordinates": [2.3223403258000137, 48.90516809669935]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9c024dda90874e49d60d394dd545403abe6118b1", "fields": {"departement": "93", "stop_lat": 48.91785777136231, "code_postal": "93066", "stop_lon": 2.3522408742882575, "coord": [48.91785777136231, 2.3522408742882575], "stop_id": 4574168, "stop_desc": "FACE 19 R DES CHEMINOTS - 93066", "stop_name": "STADE DE FRANCE - SAINT-DENIS-RER"}, "geometry": {"type": "Point", "coordinates": [2.3522408742882575, 48.91785777136231]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3ce036367b49fdc901072e7a2549676861aabb42", "fields": {"departement": "93", "stop_lat": 48.914767792852096, "code_postal": "93001", "stop_lon": 2.3819651405715088, "coord": [48.914767792852096, 2.3819651405715088], "stop_id": 4574182, "stop_desc": "24 RUE DU MOUTIER - 93001", "stop_name": "MAIRIE D'AUBERVILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.3819651405715088, 48.914767792852096]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "60d211ea546c36bf3f75cccd0b85b15885fb33e0", "fields": {"departement": "93", "stop_lat": 48.91393824322177, "code_postal": "93001", "stop_lon": 2.388768378315134, "coord": [48.91393824322177, 2.388768378315134], "stop_id": 4574183, "stop_desc": "FACE 167 RUE DES CITES - 93001", "stop_name": "RUE DES CITES"}, "geometry": {"type": "Point", "coordinates": [2.388768378315134, 48.91393824322177]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6ec4886986eabc0844d566aae56a245e28b40002", "fields": {"departement": "93", "stop_lat": 48.91526937152716, "code_postal": "93001", "stop_lon": 2.386274400335616, "coord": [48.91526937152716, 2.386274400335616], "stop_id": 4574184, "stop_desc": "FACE 1 RUE DU COMMANDANT L'HERMINIER - 93001", "stop_name": "SQUARE LUCIEN BRUN"}, "geometry": {"type": "Point", "coordinates": [2.386274400335616, 48.91526937152716]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "746950b0ee338b7eccb4b20f6eb86fedc7daace3", "fields": {"departement": "93", "stop_lat": 48.915476117263545, "code_postal": "93001", "stop_lon": 2.3861655113159377, "coord": [48.915476117263545, 2.3861655113159377], "stop_id": 4574185, "stop_desc": "1 RUE DU COMMANDANT L'HERMINIER - 93001", "stop_name": "SQUARE LUCIEN BRUN"}, "geometry": {"type": "Point", "coordinates": [2.3861655113159377, 48.915476117263545]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "102204985d0f033a8bc78c390a88e87eee4bbfce", "fields": {"departement": "93", "stop_lat": 48.915370701674085, "code_postal": "93001", "stop_lon": 2.400155491968183, "coord": [48.915370701674085, 2.400155491968183], "stop_id": 4574190, "stop_desc": "RUE DANIELLE CASANOVA - 93001", "stop_name": "BALZAC"}, "geometry": {"type": "Point", "coordinates": [2.400155491968183, 48.915370701674085]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cfdec0f65d2a9c005b5dc1761d5d8912c4820748", "fields": {"departement": "93", "stop_lat": 48.91843969494924, "code_postal": "93027", "stop_lon": 2.4082728559481428, "coord": [48.91843969494924, 2.4082728559481428], "stop_id": 4574195, "stop_desc": "8-8 BIS AVENUE PAUL VAILLANT-COUTURIER - 93027", "stop_name": "EDOUARD VAILLANT - JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.4082728559481428, 48.91843969494924]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7a85016d8579f64ebec608898b9d26a96cdc9d97", "fields": {"departement": "92", "stop_lat": 48.90365798799515, "code_postal": "92024", "stop_lon": 2.3202549925025453, "coord": [48.90365798799515, 2.3202549925025453], "stop_id": 4574203, "stop_desc": "159 BOULEVARD VICTOR HUGO - 92024", "stop_name": "VICTOR HUGO - SANZILLON"}, "geometry": {"type": "Point", "coordinates": [2.3202549925025453, 48.90365798799515]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bfa53e6f624708a5c73012ee5c84dd96370a738a", "fields": {"departement": "75", "stop_lat": 48.82130668579712, "code_postal": "75114", "stop_lon": 2.321316388100568, "coord": [48.82130668579712, 2.321316388100568], "stop_id": 4606663, "stop_desc": "AVENUE DE LA PORTE DE MONTROUGE - 75114", "stop_name": "CIMETIERE DE MONTROUGE"}, "geometry": {"type": "Point", "coordinates": [2.321316388100568, 48.82130668579712]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1aea82dd6b2dc66f8ccf0af8fa15d022a8cb1a62", "fields": {"departement": "94", "stop_lat": 48.83574292139633, "code_postal": "94052", "stop_lon": 2.4751572939223943, "coord": [48.83574292139633, 2.4751572939223943], "stop_id": 4614205, "stop_desc": "3-5 GRANDE RUE CHARLES DE GAULLE - 94052", "stop_name": "PLACE DU GENERAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.4751572939223943, 48.83574292139633]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "08172dbecaf6556a1c03e1a6444171adaa2f15b3", "fields": {"departement": "94", "stop_lat": 48.83741794915162, "code_postal": "94052", "stop_lon": 2.4872655593059427, "coord": [48.83741794915162, 2.4872655593059427], "stop_id": 4614210, "stop_desc": "140 GRANDE RUE CHARLES DE GAULLE - 94052", "stop_name": "MARCHE DE NOGENT-SUR-MARNE"}, "geometry": {"type": "Point", "coordinates": [2.4872655593059427, 48.83741794915162]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "533690c2265bb05bd9417ee602519a0b143ee90b", "fields": {"departement": "94", "stop_lat": 48.83824673249438, "code_postal": "94052", "stop_lon": 2.4857294258841103, "coord": [48.83824673249438, 2.4857294258841103], "stop_id": 4614211, "stop_desc": "FACE 50 RUE DES HEROS NOGENTAIS - 94052", "stop_name": "MARCHE DE NOGENT-SUR-MARNE"}, "geometry": {"type": "Point", "coordinates": [2.4857294258841103, 48.83824673249438]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "af60060bd79634a54e84a38c1ae648f7f0c6389c", "fields": {"departement": "94", "stop_lat": 48.83999340120814, "code_postal": "94015", "stop_lon": 2.522061303805624, "coord": [48.83999340120814, 2.522061303805624], "stop_id": 4614230, "stop_desc": "RUE DU MARECHAL FOCH - 94015", "stop_name": "CHATEAU"}, "geometry": {"type": "Point", "coordinates": [2.522061303805624, 48.83999340120814]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9be4bb643b87643cf6ec5052e01b4fe05c8abbd7", "fields": {"departement": "94", "stop_lat": 48.834435102950806, "code_postal": "94015", "stop_lon": 2.5302237140784376, "coord": [48.834435102950806, 2.5302237140784376], "stop_id": 4614244, "stop_desc": "AV DE L'EUROPE - 94015", "stop_name": "EUROPE"}, "geometry": {"type": "Point", "coordinates": [2.5302237140784376, 48.834435102950806]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "39d4739fcd10424d1acdb4772063e10b74673439", "fields": {"departement": "94", "stop_lat": 48.836184082067945, "code_postal": "94015", "stop_lon": 2.5324358136717753, "coord": [48.836184082067945, 2.5324358136717753], "stop_id": 4614245, "stop_desc": "AV DES FRERES LUMIERE - 94015", "stop_name": "MOLIERE"}, "geometry": {"type": "Point", "coordinates": [2.5324358136717753, 48.836184082067945]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c86d1ece66d06e0804d2bad9053d8387e7f62443", "fields": {"departement": "93", "stop_lat": 48.83877045106099, "code_postal": "93051", "stop_lon": 2.5390626589042355, "coord": [48.83877045106099, 2.5390626589042355], "stop_id": 4614249, "stop_desc": "BOULEVARD GEORGES MELIES - 93051", "stop_name": "HOPITAL PRIVE DE MARNE LA VALLEE"}, "geometry": {"type": "Point", "coordinates": [2.5390626589042355, 48.83877045106099]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9edeb757a4274fe97499da286ec7b32bf6d3be51", "fields": {"departement": "93", "stop_lat": 48.84207081830411, "code_postal": "93051", "stop_lon": 2.543187629581788, "coord": [48.84207081830411, 2.543187629581788], "stop_id": 4614251, "stop_desc": "AVENUE DU MONT D'EST - 93051", "stop_name": "LE THEATRE"}, "geometry": {"type": "Point", "coordinates": [2.543187629581788, 48.84207081830411]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "89e9d7c9e1c088dce9f9490b4defb025aa8eb7dd", "fields": {"departement": "93", "stop_lat": 48.84076085882967, "code_postal": "93051", "stop_lon": 2.55210090418231, "coord": [48.84076085882967, 2.55210090418231], "stop_id": 4614253, "stop_desc": "PISTE GARE ROUTIERE - 93051", "stop_name": "NOISY-LE-GRAND - MONT D'EST RER"}, "geometry": {"type": "Point", "coordinates": [2.55210090418231, 48.84076085882967]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ce940de7573ea9397b709f3b7b4e51ea3a0fa746", "fields": {"departement": "94", "stop_lat": 48.83348118957876, "code_postal": "94015", "stop_lon": 2.525373556761865, "coord": [48.83348118957876, 2.525373556761865], "stop_id": 4614256, "stop_desc": "FACE 188 BD PASTEUR - 94015", "stop_name": "2 DECEMBRE 1870"}, "geometry": {"type": "Point", "coordinates": [2.525373556761865, 48.83348118957876]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "81bf3336e9c6536ad91c39a7712de41855df130b", "fields": {"departement": "94", "stop_lat": 48.84045641817912, "code_postal": "94015", "stop_lon": 2.519040223418052, "coord": [48.84045641817912, 2.519040223418052], "stop_id": 4614257, "stop_desc": "FACE 48 AVENUE DE RIGNY - 94015", "stop_name": "RUE DE LA MARNE"}, "geometry": {"type": "Point", "coordinates": [2.519040223418052, 48.84045641817912]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d3aabfb7d98c285018187e316326ff4b8efba590", "fields": {"departement": "94", "stop_lat": 48.837931792305795, "code_postal": "94015", "stop_lon": 2.518459537824707, "coord": [48.837931792305795, 2.518459537824707], "stop_id": 4614258, "stop_desc": "17 BIS AVENUE DE RIGNY - 94015", "stop_name": "AVENUE DE RIGNY"}, "geometry": {"type": "Point", "coordinates": [2.518459537824707, 48.837931792305795]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9b92b1dc8a9b26df9e1a8287d22ed4e130cce11c", "fields": {"departement": "94", "stop_lat": 48.82270638059257, "code_postal": "94079", "stop_lon": 2.540905768943888, "coord": [48.82270638059257, 2.540905768943888], "stop_id": 4614272, "stop_desc": "FACE 3 RUE DU CHEMIN DE FER - 94079", "stop_name": "VILLIERS-SUR-MARNE - LE PLESSIS-TREVISE RER"}, "geometry": {"type": "Point", "coordinates": [2.540905768943888, 48.82270638059257]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2a54912531152b248160526567eb50480dbf8788", "fields": {"departement": "94", "stop_lat": 48.81861229418567, "code_postal": "94059", "stop_lon": 2.558623772322491, "coord": [48.81861229418567, 2.558623772322491], "stop_id": 4614277, "stop_desc": "8-10 AVENUE ANDRE ROUY - 94059", "stop_name": "LA DAME BLANCHE"}, "geometry": {"type": "Point", "coordinates": [2.558623772322491, 48.81861229418567]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "95aee8aee22d2738ed75772fb4df9df9ca498c59", "fields": {"departement": "94", "stop_lat": 48.81903496778702, "code_postal": "94059", "stop_lon": 2.5584894720829774, "coord": [48.81903496778702, 2.5584894720829774], "stop_id": 4614278, "stop_desc": "27 AVENUE ANDRE ROUY - 94059", "stop_name": "LA DAME BLANCHE"}, "geometry": {"type": "Point", "coordinates": [2.5584894720829774, 48.81903496778702]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "446a3367c9dc40e24d8ecb5658c04839267da5b6", "fields": {"departement": "94", "stop_lat": 48.81368270752159, "code_postal": "94059", "stop_lon": 2.5656521573903093, "coord": [48.81368270752159, 2.5656521573903093], "stop_id": 4614280, "stop_desc": "2 AVENUE MAURICE BERTEAUX - 94059", "stop_name": "MICHEL BONY"}, "geometry": {"type": "Point", "coordinates": [2.5656521573903093, 48.81368270752159]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1f394be7aa4c72f0370efe112643dba5c52be350", "fields": {"departement": "94", "stop_lat": 48.8063175199114, "code_postal": "94059", "stop_lon": 2.576913539871558, "coord": [48.8063175199114, 2.576913539871558], "stop_id": 4614285, "stop_desc": "FACE 35 AVENUE ARDOUIN - 94059", "stop_name": "JEAN KIFFER"}, "geometry": {"type": "Point", "coordinates": [2.576913539871558, 48.8063175199114]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "75e9c809635fa6fac977d6a212dbbc47f163b4ef", "fields": {"departement": "94", "stop_lat": 48.80509612543583, "code_postal": "94059", "stop_lon": 2.5852215676535764, "coord": [48.80509612543583, 2.5852215676535764], "stop_id": 4614289, "stop_desc": "FACE 3 AVENUE GONZALVE - 94059", "stop_name": "PLACE DE VERDUN"}, "geometry": {"type": "Point", "coordinates": [2.5852215676535764, 48.80509612543583]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "52c0c1d65129a0097c8fe3fbb4384d2b148f475e", "fields": {"departement": "94", "stop_lat": 48.80391176336479, "code_postal": "94059", "stop_lon": 2.588535859800287, "coord": [48.80391176336479, 2.588535859800287], "stop_id": 4614291, "stop_desc": "50 AVENUE DE COMBAULT - 94059", "stop_name": "GONZALVE"}, "geometry": {"type": "Point", "coordinates": [2.588535859800287, 48.80391176336479]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "398af0e0365f8818a72b96906abcacfeec5d6d45", "fields": {"departement": "94", "stop_lat": 48.80418326083198, "code_postal": "94059", "stop_lon": 2.587652756585226, "coord": [48.80418326083198, 2.587652756585226], "stop_id": 4614292, "stop_desc": "13 TER AVENUE GONZALVE - 94059", "stop_name": "GONZALVE"}, "geometry": {"type": "Point", "coordinates": [2.587652756585226, 48.80418326083198]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6f44fc69b4a53eb261cf1528213f13bba8c654bf", "fields": {"departement": "77", "stop_lat": 48.80460501582365, "code_postal": "77373", "stop_lon": 2.6004585382949084, "coord": [48.80460501582365, 2.6004585382949084], "stop_id": 4614295, "stop_desc": "AVENUE DE CAMINHA - 77373", "stop_name": "BOIS LA CROIX"}, "geometry": {"type": "Point", "coordinates": [2.6004585382949084, 48.80460501582365]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a9229aac8b24e34224449f19860b92300e1a6221", "fields": {"departement": "77", "stop_lat": 48.80480268629085, "code_postal": "77373", "stop_lon": 2.6004867535905216, "coord": [48.80480268629085, 2.6004867535905216], "stop_id": 4614296, "stop_desc": "AVENUE DE CAMINHA - 77373", "stop_name": "BOIS LA CROIX"}, "geometry": {"type": "Point", "coordinates": [2.6004867535905216, 48.80480268629085]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ec9d050c7210d655fa1cbc90389d3889ec7e8c80", "fields": {"departement": "77", "stop_lat": 48.801925479196356, "code_postal": "77373", "stop_lon": 2.605002909772952, "coord": [48.801925479196356, 2.605002909772952], "stop_id": 4614297, "stop_desc": "AVENUE CAMINHA - 77373", "stop_name": "STADE LUCIEN MORANE"}, "geometry": {"type": "Point", "coordinates": [2.605002909772952, 48.801925479196356]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f2eb8c0e6e363b1998be28ddc0cdea79e1b8d78a", "fields": {"departement": "77", "stop_lat": 48.798356970372154, "code_postal": "77373", "stop_lon": 2.6168615913507516, "coord": [48.798356970372154, 2.6168615913507516], "stop_id": 4614306, "stop_desc": "RUE DES TILLEULS - 77373", "stop_name": "RESIDENCE DES TILLEULS"}, "geometry": {"type": "Point", "coordinates": [2.6168615913507516, 48.798356970372154]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9e07cea246b20594f09be45cbc89fd1da3a4c92d", "fields": {"departement": "77", "stop_lat": 48.800221584701596, "code_postal": "77373", "stop_lon": 2.6189260476363585, "coord": [48.800221584701596, 2.6189260476363585], "stop_id": 4614308, "stop_desc": "RUE DES TILLEULS - 77373", "stop_name": "MASSENA"}, "geometry": {"type": "Point", "coordinates": [2.6189260476363585, 48.800221584701596]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "47343019d38ffa0599163329ae7637f8afbdf829", "fields": {"departement": "77", "stop_lat": 48.8001772574934, "code_postal": "77373", "stop_lon": 2.618667304806818, "coord": [48.8001772574934, 2.618667304806818], "stop_id": 4614309, "stop_desc": "FACE 45 RUE DES TILLEULS - 77373", "stop_name": "MASSENA"}, "geometry": {"type": "Point", "coordinates": [2.618667304806818, 48.8001772574934]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3d8e44d8bc01cff0258459b20061a0826af0b779", "fields": {"departement": "77", "stop_lat": 48.801683266411665, "code_postal": "77373", "stop_lon": 2.6203353728784604, "coord": [48.801683266411665, 2.6203353728784604], "stop_id": 4614311, "stop_desc": "RUE DES TILLEULS - 77373", "stop_name": "COLLEGE CONDORCET"}, "geometry": {"type": "Point", "coordinates": [2.6203353728784604, 48.801683266411665]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "12a6411aadaf7cc486701766cf2fc63251249ebb", "fields": {"departement": "77", "stop_lat": 48.7994406108241, "code_postal": "77373", "stop_lon": 2.606867611989963, "coord": [48.7994406108241, 2.606867611989963], "stop_id": 4614317, "stop_desc": "AVENUE DE LA REPUBLIQUE - 77373", "stop_name": "HOTEL DE VILLE DE PONTAULT-COMBAULT"}, "geometry": {"type": "Point", "coordinates": [2.606867611989963, 48.7994406108241]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c79ce942c53367be46d5186ccc4c0f892036eaab", "fields": {"departement": "93", "stop_lat": 48.83880776872974, "code_postal": "93051", "stop_lon": 2.5486344844287583, "coord": [48.83880776872974, 2.5486344844287583], "stop_id": 4614325, "stop_desc": "BD DU LEVANT - 93051", "stop_name": "CIMETIERE DE NOISY-LE-GRAND"}, "geometry": {"type": "Point", "coordinates": [2.5486344844287583, 48.83880776872974]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "35fce35eae7182d6182bddf935b00b8ef56c88a8", "fields": {"departement": "94", "stop_lat": 48.81861229418567, "code_postal": "94059", "stop_lon": 2.558623772322491, "coord": [48.81861229418567, 2.558623772322491], "stop_id": 4614333, "stop_desc": "8-10 AVENUE ANDRE ROUY - 94059", "stop_name": "LA DAME BLANCHE"}, "geometry": {"type": "Point", "coordinates": [2.558623772322491, 48.81861229418567]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1db58f1a41493d1e325ef4ed5e007b03f4a69929", "fields": {"departement": "94", "stop_lat": 48.81368270752159, "code_postal": "94059", "stop_lon": 2.5656521573903093, "coord": [48.81368270752159, 2.5656521573903093], "stop_id": 4614335, "stop_desc": "2 AVENUE MAURICE BERTEAUX - 94059", "stop_name": "MICHEL BONY"}, "geometry": {"type": "Point", "coordinates": [2.5656521573903093, 48.81368270752159]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d05c7cab07053def653359cd91c94717a18e5128", "fields": {"departement": "94", "stop_lat": 48.810134597675855, "code_postal": "94059", "stop_lon": 2.569229050320323, "coord": [48.810134597675855, 2.569229050320323], "stop_id": 4614336, "stop_desc": "FACE 24 AVENUE DU GENERAL LECLERC - 94059", "stop_name": "MAURICE BERTEAUX - GENERAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.569229050320323, 48.810134597675855]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "18c93821cf68a4c41dc8ce2a110d6a72ad57a9e6", "fields": {"departement": "94", "stop_lat": 48.80532308289604, "code_postal": "94059", "stop_lon": 2.584134114369526, "coord": [48.80532308289604, 2.584134114369526], "stop_id": 4614340, "stop_desc": "PL VERDUN - 94059", "stop_name": "PLACE DE VERDUN"}, "geometry": {"type": "Point", "coordinates": [2.584134114369526, 48.80532308289604]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cd6babfb2ea27e34648654475c4281eebf201318", "fields": {"departement": "94", "stop_lat": 48.78560191500597, "code_postal": "94060", "stop_lon": 2.5805855780880003, "coord": [48.78560191500597, 2.5805855780880003], "stop_id": 4614341, "stop_desc": "17 R DU GENERAL LECLERC - 94060", "stop_name": "HOPITAL DE LA QUEUE-EN-BRIE"}, "geometry": {"type": "Point", "coordinates": [2.5805855780880003, 48.78560191500597]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d9f1c2e987e94a022dc53c08710df39d3394bf69", "fields": {"departement": "94", "stop_lat": 48.78796567716506, "code_postal": "94060", "stop_lon": 2.5761895514892115, "coord": [48.78796567716506, 2.5761895514892115], "stop_id": 4614342, "stop_desc": "RUE DU 8 MAI 1945 - 94060", "stop_name": "PAUL VALERY"}, "geometry": {"type": "Point", "coordinates": [2.5761895514892115, 48.78796567716506]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7e89345f044fc2d1bb5d2736adcb0cba286d150f", "fields": {"departement": "94", "stop_lat": 48.791910121607096, "code_postal": "94060", "stop_lon": 2.576819843748092, "coord": [48.791910121607096, 2.576819843748092], "stop_id": 4614345, "stop_desc": "5-9 RUE PIERRE DE COUBERTIN - 94060", "stop_name": "PIERRE DE COUBERTIN"}, "geometry": {"type": "Point", "coordinates": [2.576819843748092, 48.791910121607096]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dd495cbbe8e42966f9d687f0f8cdb0cd0fedf4d1", "fields": {"departement": "94", "stop_lat": 48.805390890678495, "code_postal": "94059", "stop_lon": 2.5728544572704126, "coord": [48.805390890678495, 2.5728544572704126], "stop_id": 4614347, "stop_desc": "4-6 AVENUE SAINT PIERRE - 94059", "stop_name": "COLLEGE ALBERT CAMUS - ZA PONROY"}, "geometry": {"type": "Point", "coordinates": [2.5728544572704126, 48.805390890678495]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a063835a7e61d140e3ea60eea024598019df9456", "fields": {"departement": "94", "stop_lat": 48.80939821239567, "code_postal": "94059", "stop_lon": 2.5734849939653817, "coord": [48.80939821239567, 2.5734849939653817], "stop_id": 4614349, "stop_desc": "9 AVENUE ARDOUIN - 94059", "stop_name": "MAIRIE DU PLESSIS-TREVISE"}, "geometry": {"type": "Point", "coordinates": [2.5734849939653817, 48.80939821239567]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8c472aec3dad3860b363e87c749167b804cd667c", "fields": {"departement": "94", "stop_lat": 48.81025154425368, "code_postal": "94059", "stop_lon": 2.569175140910702, "coord": [48.81025154425368, 2.569175140910702], "stop_id": 4614350, "stop_desc": "22 AVENUE DU GENERAL LECLERC - 94059", "stop_name": "MAURICE BERTEAUX - GENERAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.569175140910702, 48.81025154425368]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5bc3d45ab1da660e1732ac4bb0f9a5bb15d60f37", "fields": {"departement": "94", "stop_lat": 48.81435795899422, "code_postal": "94059", "stop_lon": 2.5650427202063413, "coord": [48.81435795899422, 2.5650427202063413], "stop_id": 4614352, "stop_desc": "FACE 110 AVENUE MAURICE BERTEAUX - 94059", "stop_name": "MAURICE BERTEAUX - TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.5650427202063413, 48.81435795899422]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "855e909dad04859b6984a50224dcebf167fca7e0", "fields": {"departement": "94", "stop_lat": 48.81903496778702, "code_postal": "94059", "stop_lon": 2.5584894720829774, "coord": [48.81903496778702, 2.5584894720829774], "stop_id": 4614354, "stop_desc": "27 AVENUE ANDRE ROUY - 94059", "stop_name": "LA DAME BLANCHE"}, "geometry": {"type": "Point", "coordinates": [2.5584894720829774, 48.81903496778702]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fc65e271931aae917124609bc53706f10a5df77a", "fields": {"departement": "94", "stop_lat": 48.82291487630359, "code_postal": "94079", "stop_lon": 2.5501622767944943, "coord": [48.82291487630359, 2.5501622767944943], "stop_id": 4614356, "stop_desc": "FACE 46 AVENUE ANDRE ROUY - 94079", "stop_name": "GEORGES DEMESY"}, "geometry": {"type": "Point", "coordinates": [2.5501622767944943, 48.82291487630359]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "32949c8c611798e6381ad71b4c3a3833209a0008", "fields": {"departement": "94", "stop_lat": 48.82710102375364, "code_postal": "94079", "stop_lon": 2.5462863027214926, "coord": [48.82710102375364, 2.5462863027214926], "stop_id": 4614360, "stop_desc": "108 RUE DU GENERAL DE GAULLE - 94079", "stop_name": "COURTS SILLONS"}, "geometry": {"type": "Point", "coordinates": [2.5462863027214926, 48.82710102375364]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e94ce2a3dec0b03dfc1a2baed2e7c0907e436244", "fields": {"departement": "94", "stop_lat": 48.792071793436904, "code_postal": "94060", "stop_lon": 2.5768750025246923, "coord": [48.792071793436904, 2.5768750025246923], "stop_id": 4614389, "stop_desc": "4 RUE PIERRE DE COUBERTIN - 94060", "stop_name": "PIERRE DE COUBERTIN"}, "geometry": {"type": "Point", "coordinates": [2.5768750025246923, 48.792071793436904]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "712176d224abe1380f6bec9d1465b4d721d2baf9", "fields": {"departement": "94", "stop_lat": 48.789347335828175, "code_postal": "94060", "stop_lon": 2.572931302191502, "coord": [48.789347335828175, 2.572931302191502], "stop_id": 4614391, "stop_desc": "15 AVENUE PAUL CLAUDEL - 94060", "stop_name": "HOTEL DE VILLE DE LA QUEUE-EN-BRIE"}, "geometry": {"type": "Point", "coordinates": [2.572931302191502, 48.789347335828175]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8636f697c1822f8ffd0496bb9d1bdf670c4984bd", "fields": {"departement": "94", "stop_lat": 48.809162214755624, "code_postal": "94068", "stop_lon": 2.470868304362221, "coord": [48.809162214755624, 2.470868304362221], "stop_id": 4614398, "stop_desc": "7 RUE DU PONT DE CRETEIL - 94068", "stop_name": "CROIX SOURIS"}, "geometry": {"type": "Point", "coordinates": [2.470868304362221, 48.809162214755624]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e8ae5e3e4d3e826674d6611a90fd17fc7d7915a3", "fields": {"departement": "94", "stop_lat": 48.810923921488886, "code_postal": "94068", "stop_lon": 2.4785614363808293, "coord": [48.810923921488886, 2.4785614363808293], "stop_id": 4614403, "stop_desc": "36 BIS AVENUE DE CONDE - 94068", "stop_name": "LIBERATION-CONDE"}, "geometry": {"type": "Point", "coordinates": [2.4785614363808293, 48.810923921488886]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "41d6eee196df74c7b7d2df82489890b3f9b8fe1f", "fields": {"departement": "94", "stop_lat": 48.80676759395297, "code_postal": "94068", "stop_lon": 2.495967149760495, "coord": [48.80676759395297, 2.495967149760495], "stop_id": 4614411, "stop_desc": "AVENUE DE LATTRE DE TASSIGNY - 94068", "stop_name": "ANATOLE FRANCE-PIERRE BROSSOLETTE"}, "geometry": {"type": "Point", "coordinates": [2.495967149760495, 48.80676759395297]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ad22825525924935cf64d966751127c96fe66cb9", "fields": {"departement": "94", "stop_lat": 48.80728769641353, "code_postal": "94068", "stop_lon": 2.509739219725313, "coord": [48.80728769641353, 2.509739219725313], "stop_id": 4614419, "stop_desc": "PISTE GARE ROUTIERE - 94068", "stop_name": "CHAMPIGNY - SAINT-MAUR RER"}, "geometry": {"type": "Point", "coordinates": [2.509739219725313, 48.80728769641353]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1a3d697c3b4006cc85070158afc7adf9d4b951e9", "fields": {"departement": "94", "stop_lat": 48.81317916036105, "code_postal": "94017", "stop_lon": 2.5128343715435313, "coord": [48.81317916036105, 2.5128343715435313], "stop_id": 4614424, "stop_desc": "43 RUE LOUIS TALAMONI - 94017", "stop_name": "MAIRIE DE CHAMPIGNY"}, "geometry": {"type": "Point", "coordinates": [2.5128343715435313, 48.81317916036105]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "53f3591c20a4ce41796b389c39c1164e6af8de01", "fields": {"departement": "94", "stop_lat": 48.82351335385903, "code_postal": "94079", "stop_lon": 2.542025075555393, "coord": [48.82351335385903, 2.542025075555393], "stop_id": 4614445, "stop_desc": "3-5 RUE DU CHEMIN DE FER - 94079", "stop_name": "VILLIERS-SUR-MARNE - LE PLESSIS-TREVISE RER"}, "geometry": {"type": "Point", "coordinates": [2.542025075555393, 48.82351335385903]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a0bbf462c2bca8142a79335e7324d088d7228142", "fields": {"departement": "94", "stop_lat": 48.826068431366515, "code_postal": "94079", "stop_lon": 2.540524210599729, "coord": [48.826068431366515, 2.540524210599729], "stop_id": 4614446, "stop_desc": "FACE 37 RUE DU GENERAL GALLIENI - 94079", "stop_name": "MAIRIE DE VILLIERS-SUR-MARNE"}, "geometry": {"type": "Point", "coordinates": [2.540524210599729, 48.826068431366515]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4010133506820ae71b928c9acbc44b4a5e8a1135", "fields": {"departement": "94", "stop_lat": 48.82765770181653, "code_postal": "94079", "stop_lon": 2.53611996989436, "coord": [48.82765770181653, 2.53611996989436], "stop_id": 4614449, "stop_desc": "3-5 BOULEVARD ARISTIDE BRIAND - 94079", "stop_name": "ARISTIDE BRIAND-GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.53611996989436, 48.82765770181653]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c020cd78cb0502b893ca501c1dd1541509dea696", "fields": {"departement": "94", "stop_lat": 48.83148010474214, "code_postal": "94079", "stop_lon": 2.534528220074093, "coord": [48.83148010474214, 2.534528220074093], "stop_id": 4614450, "stop_desc": "FACE 35 ROUTE ROUTE DE BRY - 94079", "stop_name": "ROUTE DE BRY - ARISTIDE BRIAND"}, "geometry": {"type": "Point", "coordinates": [2.534528220074093, 48.83148010474214]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "94adfc1c20b12697a7989d14c6ff75b1fc73abe3", "fields": {"departement": "94", "stop_lat": 48.83121921645381, "code_postal": "94079", "stop_lon": 2.534676976540491, "coord": [48.83121921645381, 2.534676976540491], "stop_id": 4614451, "stop_desc": "33 ROUTE DE BRY - 94079", "stop_name": "ROUTE DE BRY - ARISTIDE BRIAND"}, "geometry": {"type": "Point", "coordinates": [2.534676976540491, 48.83121921645381]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6a7796bdc0d1cd3d4ab6cb067c4f6ac4946cceda", "fields": {"departement": "94", "stop_lat": 48.83420583561828, "code_postal": "94079", "stop_lon": 2.5384186491009015, "coord": [48.83420583561828, 2.5384186491009015], "stop_id": 4614452, "stop_desc": "BOULEVARD BISHOP'S STORTFORD - 94079", "stop_name": "PLACE DE FLORE"}, "geometry": {"type": "Point", "coordinates": [2.5384186491009015, 48.83420583561828]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a92ea931138884099bf6089cfb24f627f6251975", "fields": {"departement": "94", "stop_lat": 48.834722552519175, "code_postal": "94079", "stop_lon": 2.5411026898444202, "coord": [48.834722552519175, 2.5411026898444202], "stop_id": 4614455, "stop_desc": "BOULEVARD BISHOP'S STORTFORD - 94079", "stop_name": "LES TROIS MUSICIENS"}, "geometry": {"type": "Point", "coordinates": [2.5411026898444202, 48.834722552519175]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c278c5bddcb7c8384b714df2f0786efae64c001e", "fields": {"departement": "94", "stop_lat": 48.832945485228045, "code_postal": "94079", "stop_lon": 2.5448667694120215, "coord": [48.832945485228045, 2.5448667694120215], "stop_id": 4614456, "stop_desc": "BOULEVARD DE FRIEDBERG - 94079", "stop_name": "SQUARE DES ALLOBROGES"}, "geometry": {"type": "Point", "coordinates": [2.5448667694120215, 48.832945485228045]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9553b171839f4e01981da8e6d46e1641e2a54b92", "fields": {"departement": "94", "stop_lat": 48.833388030196396, "code_postal": "94079", "stop_lon": 2.5436296610939437, "coord": [48.833388030196396, 2.5436296610939437], "stop_id": 4614457, "stop_desc": "BD DE BISHOP S STORDFORD - 94079", "stop_name": "SQUARE DES ALLOBROGES"}, "geometry": {"type": "Point", "coordinates": [2.5436296610939437, 48.833388030196396]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "12f1d1f286df6391af262421e1eb255f30b5a572", "fields": {"departement": "93", "stop_lat": 48.839739559711695, "code_postal": "93051", "stop_lon": 2.5502721677203333, "coord": [48.839739559711695, 2.5502721677203333], "stop_id": 4614459, "stop_desc": "BOULEVARD DU LEVANT - 93051", "stop_name": "CIMETIERE DE NOISY-LE-GRAND"}, "geometry": {"type": "Point", "coordinates": [2.5502721677203333, 48.839739559711695]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d234b98d49e617d7e10601463bced7193262ca15", "fields": {"departement": "93", "stop_lat": 48.840760588494334, "code_postal": "93051", "stop_lon": 2.552250678990395, "coord": [48.840760588494334, 2.552250678990395], "stop_id": 4614462, "stop_desc": "GARE ROUTIERE - 93051", "stop_name": "NOISY-LE-GRAND - MONT D'EST RER"}, "geometry": {"type": "Point", "coordinates": [2.552250678990395, 48.840760588494334]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f8c1e3a76f3b84d46b7d9fba9be17d6771b06877", "fields": {"departement": "93", "stop_lat": 48.829513054903664, "code_postal": "93051", "stop_lon": 2.564101879986771, "coord": [48.829513054903664, 2.564101879986771], "stop_id": 4614473, "stop_desc": "50 AVENUE MEDERIC - 93051", "stop_name": "PLACE DU COMBAT"}, "geometry": {"type": "Point", "coordinates": [2.564101879986771, 48.829513054903664]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ea3a7b8e8818de987962205f7af0cc72e34dfb5c", "fields": {"departement": "93", "stop_lat": 48.832088472979706, "code_postal": "93051", "stop_lon": 2.5566664332432274, "coord": [48.832088472979706, 2.5566664332432274], "stop_id": 4614476, "stop_desc": "AV AUGUSTE RODIN - 93051", "stop_name": "LE FORT"}, "geometry": {"type": "Point", "coordinates": [2.5566664332432274, 48.832088472979706]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7fd96b57cc4db227976d57c135204a6133a8cab9", "fields": {"departement": "93", "stop_lat": 48.84519643284332, "code_postal": "93051", "stop_lon": 2.5494775458929206, "coord": [48.84519643284332, 2.5494775458929206], "stop_id": 4614486, "stop_desc": "1 ROUTE DE VILLIERS - 93051", "stop_name": "REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.5494775458929206, 48.84519643284332]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a1e4fea9b88a8276609724edc5e9cd695b1a3d11", "fields": {"departement": "93", "stop_lat": 48.84548553533953, "code_postal": "93051", "stop_lon": 2.563313840012154, "coord": [48.84548553533953, 2.563313840012154], "stop_id": 4614495, "stop_desc": "FACE 32 RUE DE MALNOUE - 93051", "stop_name": "ROUGET DE LISLE"}, "geometry": {"type": "Point", "coordinates": [2.563313840012154, 48.84548553533953]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "54acb66cb81ddbc55444f1f120ea54b6f56e8058", "fields": {"departement": "93", "stop_lat": 48.84243865383515, "code_postal": "93051", "stop_lon": 2.5726414422503816, "coord": [48.84243865383515, 2.5726414422503816], "stop_id": 4614499, "stop_desc": "0 R DU MARECHAL JUIN - 93051", "stop_name": "LES HAUTS CHATEAUX"}, "geometry": {"type": "Point", "coordinates": [2.5726414422503816, 48.84243865383515]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "14a116e0ee101d17a8d7dba559edaff97f55a5bd", "fields": {"departement": "93", "stop_lat": 48.845133860047326, "code_postal": "93051", "stop_lon": 2.5492866499490487, "coord": [48.845133860047326, 2.5492866499490487], "stop_id": 4614505, "stop_desc": "FACE 45 RUE DU DOCTEUR SUREAU - 93051", "stop_name": "REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.5492866499490487, 48.845133860047326]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9cd46e0650dfae2f15c32aa42b3060351d45619f", "fields": {"departement": "93", "stop_lat": 48.848910240758386, "code_postal": "93051", "stop_lon": 2.553387525992279, "coord": [48.848910240758386, 2.553387525992279], "stop_id": 4614509, "stop_desc": "AV EMILE COSSONNEAU - 93051", "stop_name": "MAIRIE DE NOISY-LE-GRAND"}, "geometry": {"type": "Point", "coordinates": [2.553387525992279, 48.848910240758386]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a2e5279be60706b057f5d227586f8150df7f285d", "fields": {"departement": "93", "stop_lat": 48.848823452640055, "code_postal": "93051", "stop_lon": 2.5566146567258454, "coord": [48.848823452640055, 2.5566146567258454], "stop_id": 4614511, "stop_desc": "11-13 AVENUE EMILE COSSONNEAU - 93051", "stop_name": "CARREFOUR DE MALNOUE"}, "geometry": {"type": "Point", "coordinates": [2.5566146567258454, 48.848823452640055]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9fb05710950c19d8268924d1abfee0b1cb40806c", "fields": {"departement": "93", "stop_lat": 48.849221336887275, "code_postal": "93051", "stop_lon": 2.5648962161644984, "coord": [48.849221336887275, 2.5648962161644984], "stop_id": 4614512, "stop_desc": "88 AV EMILE COSSONNEAU - 93051", "stop_name": "POINTE DE GOURNAY"}, "geometry": {"type": "Point", "coordinates": [2.5648962161644984, 48.849221336887275]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "84cd3a9453bcc6899a92c05309e6ee9f55ac6c84", "fields": {"departement": "93", "stop_lat": 48.837117856417755, "code_postal": "93051", "stop_lon": 2.572712608222497, "coord": [48.837117856417755, 2.572712608222497], "stop_id": 4614528, "stop_desc": "BOULEVARD DE CHAMPY - 93051", "stop_name": "LE CLOSEAU"}, "geometry": {"type": "Point", "coordinates": [2.572712608222497, 48.837117856417755]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2cd589bcc6d50e4fcda288d7c1fe7cda15cf7843", "fields": {"departement": "93", "stop_lat": 48.8258411494713, "code_postal": "93051", "stop_lon": 2.584626473276657, "coord": [48.8258411494713, 2.584626473276657], "stop_id": 4614535, "stop_desc": "AVENUE DES GRAVIERS - 93051", "stop_name": "COLLEGE DES YVRIS"}, "geometry": {"type": "Point", "coordinates": [2.584626473276657, 48.8258411494713]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6e405fd9e634d250f5aaf4e49a6588cc2d20ea86", "fields": {"departement": "93", "stop_lat": 48.825795701995126, "code_postal": "93051", "stop_lon": 2.584871274149016, "coord": [48.825795701995126, 2.584871274149016], "stop_id": 4614536, "stop_desc": "AVENUE DES GRAVIERS - 93051", "stop_name": "COLLEGE DES YVRIS"}, "geometry": {"type": "Point", "coordinates": [2.584871274149016, 48.825795701995126]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f2c66a190ab16c7aca138efcdf5494d5e7648b93", "fields": {"departement": "93", "stop_lat": 48.82668997900703, "code_postal": "93051", "stop_lon": 2.5738223411104824, "coord": [48.82668997900703, 2.5738223411104824], "stop_id": 4614539, "stop_desc": "FACE 48 AVENUE ROGER CAILTEUX - 93051", "stop_name": "VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.5738223411104824, 48.82668997900703]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4daf430fe0de8b1d5730d6cff5dddb7410233848", "fields": {"departement": "93", "stop_lat": 48.82950673186499, "code_postal": "93051", "stop_lon": 2.5673962097616947, "coord": [48.82950673186499, 2.5673962097616947], "stop_id": 4614542, "stop_desc": "FACE 54 AV GABRIEL PERI - 93051", "stop_name": "LES RICHARDETS CENTRE"}, "geometry": {"type": "Point", "coordinates": [2.5673962097616947, 48.82950673186499]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "04ccf4dd02235ce6299c0da846a847b97a4d0d02", "fields": {"departement": "93", "stop_lat": 48.83151230326947, "code_postal": "93051", "stop_lon": 2.5667108125757916, "coord": [48.83151230326947, 2.5667108125757916], "stop_id": 4614544, "stop_desc": "31 AVENUE GABRIEL PERI - 93051", "stop_name": "GABRIEL PERI"}, "geometry": {"type": "Point", "coordinates": [2.5667108125757916, 48.83151230326947]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7abdb79017c8e5ceef2dc8b2c233500124ae88a5", "fields": {"departement": "93", "stop_lat": 48.83873980682847, "code_postal": "93051", "stop_lon": 2.561228512127296, "coord": [48.83873980682847, 2.561228512127296], "stop_id": 4614547, "stop_desc": "17-19 AVENUE DU PAVE NEUF - 93051", "stop_name": "ETIENNE DOLET"}, "geometry": {"type": "Point", "coordinates": [2.561228512127296, 48.83873980682847]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4b77e5f1c80b0cbfa71503b68145832e10383142", "fields": {"departement": "93", "stop_lat": 48.84093078540504, "code_postal": "93051", "stop_lon": 2.5525645531811643, "coord": [48.84093078540504, 2.5525645531811643], "stop_id": 4614551, "stop_desc": "PISTE GARE ROUTIERE - 93051", "stop_name": "NOISY-LE-GRAND - MONT D'EST RER."}, "geometry": {"type": "Point", "coordinates": [2.5525645531811643, 48.84093078540504]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1007ef0ab88e2bbce84bb32d6d63fba6e7153cca", "fields": {"departement": "93", "stop_lat": 48.84242792804296, "code_postal": "93051", "stop_lon": 2.5780062719733907, "coord": [48.84242792804296, 2.5780062719733907], "stop_id": 4614553, "stop_desc": "ALLEE JEAN RENOIR - 93051", "stop_name": "NOISY - CHAMPS RER"}, "geometry": {"type": "Point", "coordinates": [2.5780062719733907, 48.84242792804296]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2912e95ce1fbe8226e849d4b1f18e70cdd5578b7", "fields": {"departement": "93", "stop_lat": 48.847136080766774, "code_postal": "93051", "stop_lon": 2.5401165288448864, "coord": [48.847136080766774, 2.5401165288448864], "stop_id": 4614563, "stop_desc": "FACE 95 ROUTE DE NEUILLY - 93051", "stop_name": "ROUTE DE NEUILLY"}, "geometry": {"type": "Point", "coordinates": [2.5401165288448864, 48.847136080766774]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aff02baac78735e4833e60d09efeb22eb4e94fc4", "fields": {"departement": "93", "stop_lat": 48.85059519865477, "code_postal": "93051", "stop_lon": 2.5354180326589923, "coord": [48.85059519865477, 2.5354180326589923], "stop_id": 4614564, "stop_desc": "FACE 33 ROUTE DE NEUILLY - 93051", "stop_name": "RENE NAVIER"}, "geometry": {"type": "Point", "coordinates": [2.5354180326589923, 48.85059519865477]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "22236984b96579630a17149ff844036edf7cb53f", "fields": {"departement": "93", "stop_lat": 48.88389623140881, "code_postal": "93077", "stop_lon": 2.5166442565883966, "coord": [48.88389623140881, 2.5166442565883966], "stop_id": 4614588, "stop_desc": "18 AVENUE HENRY DUNANT - 93077", "stop_name": "POTTIER"}, "geometry": {"type": "Point", "coordinates": [2.5166442565883966, 48.88389623140881]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ecbc1bc5efa34313203bffe06961117cce8a332c", "fields": {"departement": "93", "stop_lat": 48.88774450414245, "code_postal": "93077", "stop_lon": 2.4895644852244905, "coord": [48.88774450414245, 2.4895644852244905], "stop_id": 4614601, "stop_desc": "FACE 33 ALLEE DES DEUX COMMUNES - 93077", "stop_name": "DENIS PAPIN"}, "geometry": {"type": "Point", "coordinates": [2.4895644852244905, 48.88774450414245]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "175b94ac484bd0327349b9903843b822f7e9e0eb", "fields": {"departement": "93", "stop_lat": 48.89363546520329, "code_postal": "93010", "stop_lon": 2.4787460614643035, "coord": [48.89363546520329, 2.4787460614643035], "stop_id": 4614607, "stop_desc": "RUE DE VARSOVIE - 93010", "stop_name": "VARSOVIE"}, "geometry": {"type": "Point", "coordinates": [2.4787460614643035, 48.89363546520329]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f0c501e2431252b707ac5f956190269b753ccd76", "fields": {"departement": "93", "stop_lat": 48.89556049930796, "code_postal": "93010", "stop_lon": 2.4772383471583588, "coord": [48.89556049930796, 2.4772383471583588], "stop_id": 4614609, "stop_desc": "RUE ROGER SALENGRO - 93010", "stop_name": "GARE DE BONDY RER"}, "geometry": {"type": "Point", "coordinates": [2.4772383471583588, 48.89556049930796]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2f710caa9b7df02c6efa2e2db871e46bfcb017b6", "fields": {"departement": "93", "stop_lat": 48.90653371180456, "code_postal": "93008", "stop_lon": 2.4610444314823243, "coord": [48.90653371180456, 2.4610444314823243], "stop_id": 4614622, "stop_desc": "AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "AUGUSTE DELAUNE"}, "geometry": {"type": "Point", "coordinates": [2.4610444314823243, 48.90653371180456]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "68bfc8ace111d4fd79e3dcaf64d51d47321ec7a9", "fields": {"departement": "93", "stop_lat": 48.907282528066425, "code_postal": "93008", "stop_lon": 2.449021527354522, "coord": [48.907282528066425, 2.449021527354522], "stop_id": 4614627, "stop_desc": "PISTE GARE ROUTIERE - 93008", "stop_name": "BOBIGNY - PABLO PICASSO"}, "geometry": {"type": "Point", "coordinates": [2.449021527354522, 48.907282528066425]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d872531e97de3aae8587e090aa38bd405e958059", "fields": {"departement": "92", "stop_lat": 48.93137217953591, "code_postal": "92025", "stop_lon": 2.266723446850035, "coord": [48.93137217953591, 2.266723446850035], "stop_id": 5747277, "stop_desc": "121 AVENUE DE STALINGRAD - 92025", "stop_name": "SOLFERINO"}, "geometry": {"type": "Point", "coordinates": [2.266723446850035, 48.93137217953591]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "07fdb712800258da3d90a6c6cbd238cbbe206a69", "fields": {"departement": "92", "stop_lat": 48.92911734127539, "code_postal": "92025", "stop_lon": 2.2682131879709906, "coord": [48.92911734127539, 2.2682131879709906], "stop_id": 5747279, "stop_desc": "67 AVENUE DE STALINGRAD - 92025", "stop_name": "LES CHAMPARONS"}, "geometry": {"type": "Point", "coordinates": [2.2682131879709906, 48.92911734127539]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fa0cc7e0063fccc7db4d2d1b0b1717f5dbad7b0b", "fields": {"departement": "92", "stop_lat": 48.923333845498576, "code_postal": "92009", "stop_lon": 2.275667055854338, "coord": [48.923333845498576, 2.275667055854338], "stop_id": 5747282, "stop_desc": "299 AVENUE D'ARGENTEUIL - 92009", "stop_name": "GRAMME"}, "geometry": {"type": "Point", "coordinates": [2.275667055854338, 48.923333845498576]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "60752cc483b8ea8a58476ffdf466967e7c5db5e2", "fields": {"departement": "92", "stop_lat": 48.90337876169204, "code_postal": "92026", "stop_lon": 2.2685201312486116, "coord": [48.90337876169204, 2.2685201312486116], "stop_id": 5747292, "stop_desc": "FACE 53 BOULEVARD GEORGES CLEMENCEAU - 92026", "stop_name": "PLACE DE BELGIQUE"}, "geometry": {"type": "Point", "coordinates": [2.2685201312486116, 48.90337876169204]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "49912b5776a45e1dcc8447ca4f852d3b4f0d6616", "fields": {"departement": "75", "stop_lat": 48.881216560788346, "code_postal": "75108", "stop_lon": 2.317264506301832, "coord": [48.881216560788346, 2.317264506301832], "stop_id": 5747301, "stop_desc": "63 BOULEVARD DES BATIGNOLLES - 75108", "stop_name": "VILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.317264506301832, 48.881216560788346]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8fa40267653cd9e9f83269fdd225b6f88ee9e6f9", "fields": {"departement": "92", "stop_lat": 48.89539865067683, "code_postal": "92044", "stop_lon": 2.2875177246000464, "coord": [48.89539865067683, 2.2875177246000464], "stop_id": 5747310, "stop_desc": "92 RUE DU PRESIDENT WILSON - 92044", "stop_name": "VAILLANT-COUTURIER"}, "geometry": {"type": "Point", "coordinates": [2.2875177246000464, 48.89539865067683]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "630fcfcda7b17316d69518407157c78552eea43e", "fields": {"departement": "92", "stop_lat": 48.912907359327576, "code_postal": "92004", "stop_lon": 2.272666136273818, "coord": [48.912907359327576, 2.272666136273818], "stop_id": 5747313, "stop_desc": "42 RUE DES BOURGUIGNONS - 92004", "stop_name": "GARE DE BOIS-COLOMBES"}, "geometry": {"type": "Point", "coordinates": [2.272666136273818, 48.912907359327576]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "199d99f853af3443acd8a713ad63ad170d48f936", "fields": {"departement": "92", "stop_lat": 48.92757405566248, "code_postal": "92025", "stop_lon": 2.272606929228948, "coord": [48.92757405566248, 2.272606929228948], "stop_id": 5747318, "stop_desc": "384 AVENUE D'ARGENTEUIL - 92025", "stop_name": "QUATRE ROUTES"}, "geometry": {"type": "Point", "coordinates": [2.272606929228948, 48.92757405566248]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3eb088685eb35d79ba5ea9a8414cc6dcd80ebc1f", "fields": {"departement": "95", "stop_lat": 48.94591398921132, "code_postal": "95018", "stop_lon": 2.2544789675810435, "coord": [48.94591398921132, 2.2544789675810435], "stop_id": 5747320, "stop_desc": "42 RUE ALFRED LABRIERE - 95018", "stop_name": "LABRIERE"}, "geometry": {"type": "Point", "coordinates": [2.2544789675810435, 48.94591398921132]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2ff6acddd69664c1ddef0e530e6fa783b7822502", "fields": {"departement": "95", "stop_lat": 48.95529108126409, "code_postal": "95018", "stop_lon": 2.216855376493315, "coord": [48.95529108126409, 2.216855376493315], "stop_id": 5747321, "stop_desc": "RUE DES ALLOBROGES - 95018", "stop_name": "COLLEGE CLAUDE MONET"}, "geometry": {"type": "Point", "coordinates": [2.216855376493315, 48.95529108126409]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "06ef3c33867d173dfed5f53b17c58bbe6b2c6576", "fields": {"departement": "95", "stop_lat": 48.945745321750415, "code_postal": "95018", "stop_lon": 2.2340821126286916, "coord": [48.945745321750415, 2.2340821126286916], "stop_id": 5747327, "stop_desc": "17 BOULEVARD DU GENERAL LECLERC - 95018", "stop_name": "BRETAGNE"}, "geometry": {"type": "Point", "coordinates": [2.2340821126286916, 48.945745321750415]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d72957a783be8cfb499fbf2e05f352fd30bf9255", "fields": {"departement": "95", "stop_lat": 48.94663807097142, "code_postal": "95018", "stop_lon": 2.237682296333733, "coord": [48.94663807097142, 2.237682296333733], "stop_id": 5747328, "stop_desc": "BOULEVARD DU GENERAL LECLERC - 95018", "stop_name": "CHARCOT HOPITAL"}, "geometry": {"type": "Point", "coordinates": [2.237682296333733, 48.94663807097142]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e8eaaa3d50f1de2c5cd42345512ac3816e9e1225", "fields": {"departement": "95", "stop_lat": 48.94692605506069, "code_postal": "95018", "stop_lon": 2.249661062842731, "coord": [48.94692605506069, 2.249661062842731], "stop_id": 5747332, "stop_desc": "23 BOULEVARD LEON FEIX - 95018", "stop_name": "HOTEL DE VILLE D'ARGENTEUIL"}, "geometry": {"type": "Point", "coordinates": [2.249661062842731, 48.94692605506069]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "11a233b5a8ba6a8681fde529b309da01e8d8772f", "fields": {"departement": "95", "stop_lat": 48.94696689774625, "code_postal": "95018", "stop_lon": 2.2566057295781374, "coord": [48.94696689774625, 2.2566057295781374], "stop_id": 5747334, "stop_desc": "39 BOULEVARD KARL MARX - 95018", "stop_name": "GARE D'ARGENTEUIL"}, "geometry": {"type": "Point", "coordinates": [2.2566057295781374, 48.94696689774625]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9a6e505456a0378f55389e1373bf877d24ad4562", "fields": {"departement": "92", "stop_lat": 48.93137217953591, "code_postal": "92025", "stop_lon": 2.266723446850035, "coord": [48.93137217953591, 2.266723446850035], "stop_id": 5747338, "stop_desc": "121 AVENUE DE STALINGRAD - 92025", "stop_name": "SOLFERINO"}, "geometry": {"type": "Point", "coordinates": [2.266723446850035, 48.93137217953591]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "229380e62e84d4f786a9a86f78417eaebd9b08cb", "fields": {"departement": "92", "stop_lat": 48.786312380632396, "code_postal": "92032", "stop_lon": 2.3000677176653634, "coord": [48.786312380632396, 2.3000677176653634], "stop_id": 5747353, "stop_desc": "RUE DES PARADIS - 92032", "stop_name": "RUE DES PARADIS."}, "geometry": {"type": "Point", "coordinates": [2.3000677176653634, 48.786312380632396]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a25c73181436f962dcbfd4b57331c2f11dd9078a", "fields": {"departement": "93", "stop_lat": 48.903026636762846, "code_postal": "93001", "stop_lon": 2.366005211935522, "coord": [48.903026636762846, 2.366005211935522], "stop_id": 5761280, "stop_desc": "AVENUE DES MAGASINS GENERAUX - 93001", "stop_name": "NET SQU@RE"}, "geometry": {"type": "Point", "coordinates": [2.366005211935522, 48.903026636762846]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4e75fb3b51313f761d8c1422e19aa95817e57cd7", "fields": {"departement": "93", "stop_lat": 48.90456342500238, "code_postal": "93001", "stop_lon": 2.366019697402115, "coord": [48.90456342500238, 2.366019697402115], "stop_id": 5761281, "stop_desc": "201 RUE DES FILLETTES - 93001", "stop_name": "MODES ET MEDIAS"}, "geometry": {"type": "Point", "coordinates": [2.366019697402115, 48.90456342500238]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "51b195f04b9629f5ff8b02ce998a497c704a792e", "fields": {"departement": "93", "stop_lat": 48.93546214227096, "code_postal": "93066", "stop_lon": 2.3587526515474195, "coord": [48.93546214227096, 2.3587526515474195], "stop_id": 5761305, "stop_desc": "5 RUE DE LA LEGION D'HONNEUR - 93066", "stop_name": "MEDIATHEQUE"}, "geometry": {"type": "Point", "coordinates": [2.3587526515474195, 48.93546214227096]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "37bb991e0dd1bcff2bd1c59d4c9a971c0e5bb32b", "fields": {"departement": "93", "stop_lat": 48.91237315845954, "code_postal": "93066", "stop_lon": 2.3660785728934317, "coord": [48.91237315845954, 2.3660785728934317], "stop_id": 5761309, "stop_desc": "19 RUE DES FILLETTES - 93066", "stop_name": "SAINT-GOBAIN"}, "geometry": {"type": "Point", "coordinates": [2.3660785728934317, 48.91237315845954]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "60fe23de199b8e6bf99b2e9d295eacb2999c9aae", "fields": {"departement": "93", "stop_lat": 48.91090833219724, "code_postal": "93066", "stop_lon": 2.3658323390749714, "coord": [48.91090833219724, 2.3658323390749714], "stop_id": 5761310, "stop_desc": "RUE DES FILLETTES - 93066", "stop_name": "LA MONTJOIE - GERMAINE TILLION"}, "geometry": {"type": "Point", "coordinates": [2.3658323390749714, 48.91090833219724]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a1e6380c389ff77f90cac7dc24a3002fac23f44a", "fields": {"departement": "75", "stop_lat": 48.898001763801254, "code_postal": "75118", "stop_lon": 2.3701735048124477, "coord": [48.898001763801254, 2.3701735048124477], "stop_id": 5761315, "stop_desc": "215 RUE D'AUBERVILLIERS - 75118", "stop_name": "PORTE D'AUBERVILLIERS - MACDONALD"}, "geometry": {"type": "Point", "coordinates": [2.3701735048124477, 48.898001763801254]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "33573a69fdd360a940dfeab96232767732b83795", "fields": {"departement": "92", "stop_lat": 48.82602778051459, "code_postal": "92072", "stop_lon": 2.199772635808918, "coord": [48.82602778051459, 2.199772635808918], "stop_id": 5761316, "stop_desc": "AVENUE GAMBETTA - 92072", "stop_name": "SEVRES-VILLE D'AVRAY - GARE SNCF RIVE DROITE"}, "geometry": {"type": "Point", "coordinates": [2.199772635808918, 48.82602778051459]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "68f7343f5ca8936737377d5458bc6dfac9a6e935", "fields": {"departement": "92", "stop_lat": 48.827074737056954, "code_postal": "92077", "stop_lon": 2.1884715919839444, "coord": [48.827074737056954, 2.1884715919839444], "stop_id": 5761321, "stop_desc": "PLACE CHARLES LAROCHE - 92077", "stop_name": "EGLISE DE VILLE D'AVRAY"}, "geometry": {"type": "Point", "coordinates": [2.1884715919839444, 48.827074737056954]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "694ade19d1e63540374d2ad3fe73dd234abb00aa", "fields": {"departement": "75", "stop_lat": 48.878158015689465, "code_postal": "75116", "stop_lon": 2.280448865923247, "coord": [48.878158015689465, 2.280448865923247], "stop_id": 5761326, "stop_desc": "PLACE JOSEPH ET MARIE HACKIN - 75116", "stop_name": "PORTE MAILLOT - METRO - RER"}, "geometry": {"type": "Point", "coordinates": [2.280448865923247, 48.878158015689465]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c9673d77d8777c8c223e3e8eceec21c66ff8d430", "fields": {"departement": "75", "stop_lat": 48.877100114494276, "code_postal": "75116", "stop_lon": 2.2683369639970232, "coord": [48.877100114494276, 2.2683369639970232], "stop_id": 5761327, "stop_desc": "AVENUE DU MAHATMA GANDHI - 75116", "stop_name": "JARDIN D'ACCLIMATATION"}, "geometry": {"type": "Point", "coordinates": [2.2683369639970232, 48.877100114494276]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e71707004164e9c327224da8ff16b9f3ce91e815", "fields": {"departement": "75", "stop_lat": 48.87599152087763, "code_postal": "75116", "stop_lon": 2.26307911028656, "coord": [48.87599152087763, 2.26307911028656], "stop_id": 5761330, "stop_desc": "AVENUE DU MAHATMA GANDHI - 75116", "stop_name": "FONDATION L. VUITTON"}, "geometry": {"type": "Point", "coordinates": [2.26307911028656, 48.87599152087763]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "25b6354026f8855efa88a49d1a8d9d7541adfee0", "fields": {"departement": "75", "stop_lat": 48.863886994497285, "code_postal": "75116", "stop_lon": 2.2400615843159772, "coord": [48.863886994497285, 2.2400615843159772], "stop_id": 5761335, "stop_desc": "ALLEE DE LONGCHAMP - 75116", "stop_name": "CARREFOUR DE LONGCHAMP"}, "geometry": {"type": "Point", "coordinates": [2.2400615843159772, 48.863886994497285]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5211aadcb13cee8341d4e27fc8406cf704750009", "fields": {"departement": "75", "stop_lat": 48.865311004088845, "code_postal": "75116", "stop_lon": 2.2341331715569654, "coord": [48.865311004088845, 2.2341331715569654], "stop_id": 5761337, "stop_desc": "ROUTE DE SURESNES - 75116", "stop_name": "LES MOULINS - CAMPING"}, "geometry": {"type": "Point", "coordinates": [2.2341331715569654, 48.865311004088845]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b6f0cfb9988203991dfe0413c2642a33b0a8bd97", "fields": {"departement": "92", "stop_lat": 48.862932246409954, "code_postal": "92073", "stop_lon": 2.2179824740747285, "coord": [48.862932246409954, 2.2179824740747285], "stop_id": 5761345, "stop_desc": "124 BOULEVARD HENRI SELLIER - 92073", "stop_name": "GARIBALDI"}, "geometry": {"type": "Point", "coordinates": [2.2179824740747285, 48.862932246409954]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3b119f6607825d5971bf59ffc10fc6078ea16290", "fields": {"departement": "92", "stop_lat": 48.86495981904738, "code_postal": "92063", "stop_lon": 2.2060310416999966, "coord": [48.86495981904738, 2.2060310416999966], "stop_id": 5761353, "stop_desc": "183 AVENUE JEAN JAURES - 92063", "stop_name": "PLACE DE LA PAIX"}, "geometry": {"type": "Point", "coordinates": [2.2060310416999966, 48.86495981904738]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f05de814042b216d9de5c0dd11a691ee113df581", "fields": {"departement": "92", "stop_lat": 48.867051237469475, "code_postal": "92063", "stop_lon": 2.203655370596936, "coord": [48.867051237469475, 2.203655370596936], "stop_id": 5761355, "stop_desc": "64 RUE GALLIENI - 92063", "stop_name": "LES HOUTRAITS"}, "geometry": {"type": "Point", "coordinates": [2.203655370596936, 48.867051237469475]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "075671315666fe7ec33a69e8d85c0a0d2f15f82f", "fields": {"departement": "92", "stop_lat": 48.87203330081155, "code_postal": "92063", "stop_lon": 2.198478970961869, "coord": [48.87203330081155, 2.198478970961869], "stop_id": 5761359, "stop_desc": "78 RUE DES BONS RAISINS - 92063", "stop_name": "RUE DE LA PAIX"}, "geometry": {"type": "Point", "coordinates": [2.198478970961869, 48.87203330081155]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "807dd51c2bae9475b77b88bcf9b319361555a8d2", "fields": {"departement": "92", "stop_lat": 48.880673665885105, "code_postal": "92063", "stop_lon": 2.1796649666871524, "coord": [48.880673665885105, 2.1796649666871524], "stop_id": 5761370, "stop_desc": "6 AVENUE ALBERT 1ER - 92063", "stop_name": "ALBERT 1ER - RUEIL - VILLE"}, "geometry": {"type": "Point", "coordinates": [2.1796649666871524, 48.880673665885105]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d5d8cc76cb67447ff95324c7d9d37fa5081503e6", "fields": {"departement": "92", "stop_lat": 48.883420797768736, "code_postal": "92063", "stop_lon": 2.1708670863203836, "coord": [48.883420797768736, 2.1708670863203836], "stop_id": 5761375, "stop_desc": "FACE 62 AVENUE DE LA REPUBLIQUE - 92063", "stop_name": "LES MARTINETS"}, "geometry": {"type": "Point", "coordinates": [2.1708670863203836, 48.883420797768736]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6d9c695f52e21dd37d29f7e5972f104445085cd0", "fields": {"departement": "93", "stop_lat": 48.91103922499613, "code_postal": "93001", "stop_lon": 2.3790850612919217, "coord": [48.91103922499613, 2.3790850612919217], "stop_id": 5761413, "stop_desc": "159-161 AVENUE VICTOR HUGO - 93001", "stop_name": "VILLEBOIS - MAREUIL"}, "geometry": {"type": "Point", "coordinates": [2.3790850612919217, 48.91103922499613]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "31555333eba89dd748a807749c239c45d55ae301", "fields": {"departement": "93", "stop_lat": 48.91088635912227, "code_postal": "93001", "stop_lon": 2.379330356593486, "coord": [48.91088635912227, 2.379330356593486], "stop_id": 5761414, "stop_desc": "118 BIS AVENUE VICTOR HUGO - 93001", "stop_name": "VILLEBOIS - MAREUIL"}, "geometry": {"type": "Point", "coordinates": [2.379330356593486, 48.91088635912227]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0b0fd48f1d5dcddeeb44e50aa0a3043b8ca01c00", "fields": {"departement": "93", "stop_lat": 48.90663673218606, "code_postal": "93001", "stop_lon": 2.3756322932290774, "coord": [48.90663673218606, 2.3756322932290774], "stop_id": 5761417, "stop_desc": "105-107 AVENUE VICTOR HUGO - 93001", "stop_name": "GARDINOUX"}, "geometry": {"type": "Point", "coordinates": [2.3756322932290774, 48.90663673218606]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "86dd5ce13cbbee80e494a6eae08a75673cac3838", "fields": {"departement": "75", "stop_lat": 48.901911180630954, "code_postal": "75118", "stop_lon": 2.370094196430709, "coord": [48.901911180630954, 2.370094196430709], "stop_id": 5761421, "stop_desc": "23 AVENUE DE LA PORTE D'AUBERVILLIERS - 75118", "stop_name": "PARC DU MILLENAIRE"}, "geometry": {"type": "Point", "coordinates": [2.370094196430709, 48.901911180630954]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3c9a13ef777096b04627fcd243fd8e88ba480bff", "fields": {"departement": "75", "stop_lat": 48.89446186291321, "code_postal": "75118", "stop_lon": 2.366191281039042, "coord": [48.89446186291321, 2.366191281039042], "stop_id": 5761426, "stop_desc": "35 RUE DE L'EVANGILE - 75118", "stop_name": "TRISTAN TZARA"}, "geometry": {"type": "Point", "coordinates": [2.366191281039042, 48.89446186291321]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c26049a630733c4fe121decfca144d09bb0203f1", "fields": {"departement": "75", "stop_lat": 48.891344398291665, "code_postal": "75118", "stop_lon": 2.3613239046694137, "coord": [48.891344398291665, 2.3613239046694137], "stop_id": 5761431, "stop_desc": "8 RUE DE L'EVANGILE - 75118", "stop_name": "PLACE DE TORCY"}, "geometry": {"type": "Point", "coordinates": [2.3613239046694137, 48.891344398291665]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6c97764df312c84d33583a463ba6d82e40a20a8d", "fields": {"departement": "75", "stop_lat": 48.89052682710956, "code_postal": "75118", "stop_lon": 2.359987881341442, "coord": [48.89052682710956, 2.359987881341442], "stop_id": 5761433, "stop_desc": "8 RUE DE LA CHAPELLE - 75118", "stop_name": "ORDENER - MARX DORMOY"}, "geometry": {"type": "Point", "coordinates": [2.359987881341442, 48.89052682710956]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9bae9c8e777f8c3d25a8b7205922fe39bae5755d", "fields": {"departement": "75", "stop_lat": 48.87619243475698, "code_postal": "75110", "stop_lon": 2.3586326958393027, "coord": [48.87619243475698, 2.3586326958393027], "stop_id": 5761443, "stop_desc": "FACE 7 RUE DU 8 MAI 1945 - 75110", "stop_name": "GARE DE L'EST"}, "geometry": {"type": "Point", "coordinates": [2.3586326958393027, 48.87619243475698]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8fbce5e1b0764474e018cd070e5348344d052cc9", "fields": {"departement": "75", "stop_lat": 48.87781949763114, "code_postal": "75110", "stop_lon": 2.3564941357294393, "coord": [48.87781949763114, 2.3564941357294393], "stop_id": 5761445, "stop_desc": "140-142 RUE DU FAUBOURG SAINT-DENIS - 75110", "stop_name": "VALENCIENNES"}, "geometry": {"type": "Point", "coordinates": [2.3564941357294393, 48.87781949763114]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "86fc515426b3f01fbc8559539044dadd7bc8968d", "fields": {"departement": "75", "stop_lat": 48.89978999921138, "code_postal": "75119", "stop_lon": 2.3708971078870964, "coord": [48.89978999921138, 2.3708971078870964], "stop_id": 5761961, "stop_desc": "R D'AUBERVILLIERS - 75119", "stop_name": "PORTE D'AUBERVILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.3708971078870964, 48.89978999921138]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3fc325b6cf7134d3dd15672ada70003581dd9503", "fields": {"departement": "75", "stop_lat": 48.898001763801254, "code_postal": "75118", "stop_lon": 2.3701735048124477, "coord": [48.898001763801254, 2.3701735048124477], "stop_id": 5761962, "stop_desc": "215 RUE D'AUBERVILLIERS - 75118", "stop_name": "PORTE D'AUBERVILLIERS - MACDONALD"}, "geometry": {"type": "Point", "coordinates": [2.3701735048124477, 48.898001763801254]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7cea3d6491fdd921580bb9013f64f78a3497012f", "fields": {"departement": "75", "stop_lat": 48.890872677145964, "code_postal": "75119", "stop_lon": 2.377569582525219, "coord": [48.890872677145964, 2.377569582525219], "stop_id": 5761969, "stop_desc": "104 AVENUE DE FLANDRE - 75119", "stop_name": "CRIMEE"}, "geometry": {"type": "Point", "coordinates": [2.377569582525219, 48.890872677145964]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5051196e9c2640f303bb5eb60007dea5fd0cd081", "fields": {"departement": "75", "stop_lat": 48.87959876119247, "code_postal": "75110", "stop_lon": 2.3577892797369544, "coord": [48.87959876119247, 2.3577892797369544], "stop_id": 5761981, "stop_desc": "FACE 166 RUE LA FAYETTE - 75110", "stop_name": "LA FAYETTE - DUNKERQUE"}, "geometry": {"type": "Point", "coordinates": [2.3577892797369544, 48.87959876119247]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "144e1bd2664228c4f9c7d54a73e735148287521d", "fields": {"departement": "75", "stop_lat": 48.88087584272046, "code_postal": "75110", "stop_lon": 2.351726002486145, "coord": [48.88087584272046, 2.351726002486145], "stop_id": 5761985, "stop_desc": "129 BOULEVARD DE MAGENTA - 75110", "stop_name": "MAGENTA - MAUBEUGE - GARE DU NORD"}, "geometry": {"type": "Point", "coordinates": [2.351726002486145, 48.88087584272046]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2837b48a96343fab1eddc20e9a2b4a624b42fff6", "fields": {"departement": "75", "stop_lat": 48.88590006808008, "code_postal": "75118", "stop_lon": 2.326134397795573, "coord": [48.88590006808008, 2.326134397795573], "stop_id": 5761994, "stop_desc": "31 AVENUE DE CLICHY - 75118", "stop_name": "GANNERON"}, "geometry": {"type": "Point", "coordinates": [2.326134397795573, 48.88590006808008]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3f51785fc417814983d84f6a37cd06856197082e", "fields": {"departement": "75", "stop_lat": 48.88783222281554, "code_postal": "75117", "stop_lon": 2.325152745158805, "coord": [48.88783222281554, 2.325152745158805], "stop_id": 5761995, "stop_desc": "70 AVENUE DE CLICHY - 75117", "stop_name": "LA FOURCHE"}, "geometry": {"type": "Point", "coordinates": [2.325152745158805, 48.88783222281554]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6c5db557cb2d96917f4eb5b2d89fa3c5d851e47e", "fields": {"departement": "75", "stop_lat": 48.89044694908414, "code_postal": "75117", "stop_lon": 2.320613679282316, "coord": [48.89044694908414, 2.320613679282316], "stop_id": 5761999, "stop_desc": "130 AVENUE DE CLICHY - 75117", "stop_name": "RUE DES MOINES"}, "geometry": {"type": "Point", "coordinates": [2.320613679282316, 48.89044694908414]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "89bccf6e64118e50f0dcfd87b86d12f19c6e4c96", "fields": {"departement": "75", "stop_lat": 48.891587948844105, "code_postal": "75117", "stop_lon": 2.3181327811948154, "coord": [48.891587948844105, 2.3181327811948154], "stop_id": 5762001, "stop_desc": "141 AVENUE DE CLICHY - 75117", "stop_name": "BROCHANT - CARDINET"}, "geometry": {"type": "Point", "coordinates": [2.3181327811948154, 48.891587948844105]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5aa90b5d5032d95314bb28dc6b48007b2c809568", "fields": {"departement": "75", "stop_lat": 48.8947234218669, "code_postal": "75117", "stop_lon": 2.3124478642572925, "coord": [48.8947234218669, 2.3124478642572925], "stop_id": 5762005, "stop_desc": "1 AVENUE DE LA PORTE DE CLICHY - 75117", "stop_name": "PORTE DE CLICHY"}, "geometry": {"type": "Point", "coordinates": [2.3124478642572925, 48.8947234218669]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0a86ae37613600452f30ab9e54da4d54aa60c8bb", "fields": {"departement": "92", "stop_lat": 48.906403689038, "code_postal": "92024", "stop_lon": 2.3008540579028622, "coord": [48.906403689038, 2.3008540579028622], "stop_id": 5762012, "stop_desc": "136 BOULEVARD JEAN JAURES - 92024", "stop_name": "LEON BLUM"}, "geometry": {"type": "Point", "coordinates": [2.3008540579028622, 48.906403689038]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1c6088854c7243b83af173cf6b68112d37f753d7", "fields": {"departement": "92", "stop_lat": 48.91218097424025, "code_postal": "92004", "stop_lon": 2.296568698464727, "coord": [48.91218097424025, 2.296568698464727], "stop_id": 5762013, "stop_desc": "22 BOULEVARD VOLTAIRE - 92004", "stop_name": "PLACE VOLTAIRE"}, "geometry": {"type": "Point", "coordinates": [2.296568698464727, 48.91218097424025]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a4ee3853fec75e36e97e09bb9d8d944e64aea360", "fields": {"departement": "92", "stop_lat": 48.913025400714396, "code_postal": "92004", "stop_lon": 2.2955454150474894, "coord": [48.913025400714396, 2.2955454150474894], "stop_id": 5762014, "stop_desc": "FACE 24 BOULEVARD VOLTAIRE - 92004", "stop_name": "PLACE VOLTAIRE"}, "geometry": {"type": "Point", "coordinates": [2.2955454150474894, 48.913025400714396]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0dd87596b16b8b0b6f03856db13ef854ca10703c", "fields": {"departement": "92", "stop_lat": 48.91585586683023, "code_postal": "92004", "stop_lon": 2.294302289078872, "coord": [48.91585586683023, 2.294302289078872], "stop_id": 5762016, "stop_desc": "PISTE GARE ROUTIERE - 92004", "stop_name": "GABRIEL PERI-METRO"}, "geometry": {"type": "Point", "coordinates": [2.294302289078872, 48.91585586683023]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cecc42150a6147ccae42ae69c5d050bbb6d6577f", "fields": {"departement": "75", "stop_lat": 48.882215821789494, "code_postal": "75109", "stop_lon": 2.337213801603721, "coord": [48.882215821789494, 2.337213801603721], "stop_id": 5762022, "stop_desc": "FACE 20 BOULEVARD DE CLICHY - 75109", "stop_name": "PIGALLE"}, "geometry": {"type": "Point", "coordinates": [2.337213801603721, 48.882215821789494]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4d3ff44581417fc1577c925031dd12d63260d4ae", "fields": {"departement": "75", "stop_lat": 48.86546515452374, "code_postal": "75120", "stop_lon": 2.399577301079139, "coord": [48.86546515452374, 2.399577301079139], "stop_id": 5770764, "stop_desc": "0 R DU JAPON - 75120", "stop_name": "GAMBETTA"}, "geometry": {"type": "Point", "coordinates": [2.399577301079139, 48.86546515452374]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cc03c1401a993ac6d1f2feb5b23130619d272e9a", "fields": {"departement": "75", "stop_lat": 48.86898751261993, "code_postal": "75120", "stop_lon": 2.4008757539524264, "coord": [48.86898751261993, 2.4008757539524264], "stop_id": 5770766, "stop_desc": "102-104 RUE PELLEPORT - 75120", "stop_name": "PELLEPORT - GAMBETTA"}, "geometry": {"type": "Point", "coordinates": [2.4008757539524264, 48.86898751261993]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8c93cffa4d3983dbb5b94d6b8cd35094b831d7eb", "fields": {"departement": "75", "stop_lat": 48.8679628753725, "code_postal": "75120", "stop_lon": 2.401024350717871, "coord": [48.8679628753725, 2.401024350717871], "stop_id": 5770767, "stop_desc": "125 AVENUE GAMBETTA - 75120", "stop_name": "PELLEPORT - GAMBETTA"}, "geometry": {"type": "Point", "coordinates": [2.401024350717871, 48.8679628753725]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d2bbb894138aea7d98dfcdd2410f944328d596f8", "fields": {"departement": "75", "stop_lat": 48.87101957520212, "code_postal": "75120", "stop_lon": 2.3991207652618476, "coord": [48.87101957520212, 2.3991207652618476], "stop_id": 5770768, "stop_desc": "138 RUE PELLEPORT - 75120", "stop_name": "MENILMONTANT - PELLEPORT"}, "geometry": {"type": "Point", "coordinates": [2.3991207652618476, 48.87101957520212]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d5a493a09b78726532ab90e696f55ee88eaca2df", "fields": {"departement": "75", "stop_lat": 48.870570109690824, "code_postal": "75120", "stop_lon": 2.3993109617995647, "coord": [48.870570109690824, 2.3993109617995647], "stop_id": 5770769, "stop_desc": "FACE 128 RUE PELLEPORT - 75120", "stop_name": "MENILMONTANT - PELLEPORT"}, "geometry": {"type": "Point", "coordinates": [2.3993109617995647, 48.870570109690824]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "30c662e568e90aa706ed037c6a30f9901c2fbf2e", "fields": {"departement": "75", "stop_lat": 48.875460170880956, "code_postal": "75119", "stop_lon": 2.3974365569554887, "coord": [48.875460170880956, 2.3974365569554887], "stop_id": 5770772, "stop_desc": "245-247 RUE DE BELLEVILLE - 75119", "stop_name": "PELLEPORT - BELLEVILLE"}, "geometry": {"type": "Point", "coordinates": [2.3974365569554887, 48.875460170880956]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "142f193684e4c2550784c842906d28aee6ab85a8", "fields": {"departement": "75", "stop_lat": 48.87538948599352, "code_postal": "75119", "stop_lon": 2.3949839675989684, "coord": [48.87538948599352, 2.3949839675989684], "stop_id": 5770774, "stop_desc": "213 RUE COMPANS - 75119", "stop_name": "PIXERECOURT"}, "geometry": {"type": "Point", "coordinates": [2.3949839675989684, 48.87538948599352]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "997dc7ec1533b5e93603d71a3fbd2a20552f3c2c", "fields": {"departement": "75", "stop_lat": 48.88590992105624, "code_postal": "75119", "stop_lon": 2.382635265641091, "coord": [48.88590992105624, 2.382635265641091], "stop_id": 5770785, "stop_desc": "112 AVENUE JEAN JAURES - 75119", "stop_name": "JEAN JAURES - LORRAINE"}, "geometry": {"type": "Point", "coordinates": [2.382635265641091, 48.88590992105624]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ead2d6903f4645604bc8867263fb941784b5e7d9", "fields": {"departement": "75", "stop_lat": 48.88767962717128, "code_postal": "75119", "stop_lon": 2.3846265425079824, "coord": [48.88767962717128, 2.3846265425079824], "stop_id": 5770787, "stop_desc": "FACE 11-13 RUE DE L'OURCQ - 75119", "stop_name": "OURCQ - JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.3846265425079824, 48.88767962717128]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "614fe9309af3823e93c359e219ebf57ecedefff9", "fields": {"departement": "75", "stop_lat": 48.88980114446895, "code_postal": "75119", "stop_lon": 2.3832519700102193, "coord": [48.88980114446895, 2.3832519700102193], "stop_id": 5770789, "stop_desc": "FACE 43 RUE DE L'OURCQ - 75119", "stop_name": "CANAL DE L'OURCQ"}, "geometry": {"type": "Point", "coordinates": [2.3832519700102193, 48.88980114446895]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5d8f7cac72d1454674385b28d633104d1c8062d1", "fields": {"departement": "75", "stop_lat": 48.894963464526604, "code_postal": "75119", "stop_lon": 2.372434185376385, "coord": [48.894963464526604, 2.372434185376385], "stop_id": 5770796, "stop_desc": "RUE DE CRIMEE - 75119", "stop_name": "CRIMEE - ROSA PARKS"}, "geometry": {"type": "Point", "coordinates": [2.372434185376385, 48.894963464526604]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a27f033c088d020a3661ef4ad813f05d40647950", "fields": {"departement": "75", "stop_lat": 48.89446186291321, "code_postal": "75118", "stop_lon": 2.366191281039042, "coord": [48.89446186291321, 2.366191281039042], "stop_id": 5770800, "stop_desc": "35 RUE DE L'EVANGILE - 75118", "stop_name": "TRISTAN TZARA"}, "geometry": {"type": "Point", "coordinates": [2.366191281039042, 48.89446186291321]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b64cde0288a4f22fee69f8cf56969d5f6703e082", "fields": {"departement": "75", "stop_lat": 48.892988682621194, "code_postal": "75118", "stop_lon": 2.363082895018561, "coord": [48.892988682621194, 2.363082895018561], "stop_id": 5770802, "stop_desc": "19 RUE DE L'EVANGILE - 75118", "stop_name": "PLACE HEBERT"}, "geometry": {"type": "Point", "coordinates": [2.363082895018561, 48.892988682621194]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6a48e4ee31072d6315cb878eb4c494e3e7db7131", "fields": {"departement": "75", "stop_lat": 48.89069848684011, "code_postal": "75118", "stop_lon": 2.354618106359687, "coord": [48.89069848684011, 2.354618106359687], "stop_id": 5770808, "stop_desc": "24 RUE ORDENER - 75118", "stop_name": "PONT MARCADET"}, "geometry": {"type": "Point", "coordinates": [2.354618106359687, 48.89069848684011]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2cedc0442a6c0884f7aeb61f10b1ac77585b2bad", "fields": {"departement": "75", "stop_lat": 48.89264078827443, "code_postal": "75118", "stop_lon": 2.344042209171573, "coord": [48.89264078827443, 2.344042209171573], "stop_id": 5770812, "stop_desc": "PLACE JULES JOFFRIN - 75118", "stop_name": "MAIRIE DU 18E - JULES JOFFRIN"}, "geometry": {"type": "Point", "coordinates": [2.344042209171573, 48.89264078827443]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a95d981ad8b46877f3476c70a8311e893ff65a66", "fields": {"departement": "75", "stop_lat": 48.89347678757357, "code_postal": "75118", "stop_lon": 2.3369548269427955, "coord": [48.89347678757357, 2.3369548269427955], "stop_id": 5770817, "stop_desc": "171 RUE ORDENER - 75118", "stop_name": "DAMREMONT - ORDENER"}, "geometry": {"type": "Point", "coordinates": [2.3369548269427955, 48.89347678757357]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8b01b96ed4d80ad9e5e566a6e65aab375cbbb9e8", "fields": {"departement": "75", "stop_lat": 48.890872677145964, "code_postal": "75119", "stop_lon": 2.377569582525219, "coord": [48.890872677145964, 2.377569582525219], "stop_id": 5770829, "stop_desc": "104 AVENUE DE FLANDRE - 75119", "stop_name": "CRIMEE"}, "geometry": {"type": "Point", "coordinates": [2.377569582525219, 48.890872677145964]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3cac96ff53a8577c5f37917c367bc9bfb425aeb8", "fields": {"departement": "92", "stop_lat": 48.8958012046481, "code_postal": "92026", "stop_lon": 2.2405742092276215, "coord": [48.8958012046481, 2.2405742092276215], "stop_id": 5775570, "stop_desc": "8 BOULEVARD DE LA MISSION MARCHAND - 92026", "stop_name": "CARON"}, "geometry": {"type": "Point", "coordinates": [2.2405742092276215, 48.8958012046481]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fb6bfe76a597c0c71674a4a26e34f45f81d152d4", "fields": {"departement": "92", "stop_lat": 48.89539650652404, "code_postal": "92026", "stop_lon": 2.2402342065353684, "coord": [48.89539650652404, 2.2402342065353684], "stop_id": 5775571, "stop_desc": "AVENUE DE LA DIVISION LECLERC - 92026", "stop_name": "CARON"}, "geometry": {"type": "Point", "coordinates": [2.2402342065353684, 48.89539650652404]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "69ae536ae3a7e40d687cbcedc9ae61c4cefaa9ba", "fields": {"departement": "92", "stop_lat": 48.8967714050638, "code_postal": "92026", "stop_lon": 2.24006806449667, "coord": [48.8967714050638, 2.24006806449667], "stop_id": 5775573, "stop_desc": "FACE 24 BOULEVARD DE LA MISSION MARCHAND - 92026", "stop_name": "FAUBOURG DE L'ARCHE"}, "geometry": {"type": "Point", "coordinates": [2.24006806449667, 48.8967714050638]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b83a144152cb793be6960f5164cc894995f8f589", "fields": {"departement": "92", "stop_lat": 48.899733072956245, "code_postal": "92026", "stop_lon": 2.2462784498091732, "coord": [48.899733072956245, 2.2462784498091732], "stop_id": 5775576, "stop_desc": "8 AVENUE DE LA REPUBLIQUE - 92026", "stop_name": "MARCEAU"}, "geometry": {"type": "Point", "coordinates": [2.2462784498091732, 48.899733072956245]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8785048517cb4fb4b25093b7fbedfae0fde2d6c8", "fields": {"departement": "92", "stop_lat": 48.901372379579094, "code_postal": "92026", "stop_lon": 2.2511966793487317, "coord": [48.901372379579094, 2.2511966793487317], "stop_id": 5775578, "stop_desc": "60 AVENUE DE LA REPUBLIQUE - 92026", "stop_name": "D'ESTIENNE D'ORVES"}, "geometry": {"type": "Point", "coordinates": [2.2511966793487317, 48.901372379579094]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1a69917cd37fd411cf25ae12bab8c7baea557c26", "fields": {"departement": "92", "stop_lat": 48.90557331513925, "code_postal": "92026", "stop_lon": 2.2568746552245837, "coord": [48.90557331513925, 2.2568746552245837], "stop_id": 5775582, "stop_desc": "77 AVENUE DE L'EUROPE - 92026", "stop_name": "EUROPE"}, "geometry": {"type": "Point", "coordinates": [2.2568746552245837, 48.90557331513925]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3911f7e405a506f53daa3e3c498124e63557f11b", "fields": {"departement": "92", "stop_lat": 48.90745767067383, "code_postal": "92004", "stop_lon": 2.266428798456684, "coord": [48.90745767067383, 2.266428798456684], "stop_id": 5775585, "stop_desc": "10 AVENUE FAIDHERBE - 92004", "stop_name": "CHEVREUL"}, "geometry": {"type": "Point", "coordinates": [2.266428798456684, 48.90745767067383]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "934b93b0b129dabc4733a09bf127e7e56026491f", "fields": {"departement": "92", "stop_lat": 48.909419676509756, "code_postal": "92004", "stop_lon": 2.2713616210811174, "coord": [48.909419676509756, 2.2713616210811174], "stop_id": 5775589, "stop_desc": "81 AVENUE FAIDHERBE - 92004", "stop_name": "CHANZY"}, "geometry": {"type": "Point", "coordinates": [2.2713616210811174, 48.909419676509756]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b1ed93ad15cda40240565f4b275e3e1f0090b4c5", "fields": {"departement": "92", "stop_lat": 48.916702465399936, "code_postal": "92004", "stop_lon": 2.2776385104689867, "coord": [48.916702465399936, 2.2776385104689867], "stop_id": 5775591, "stop_desc": "132-134 RUE DES BOURGUIGNONS - 92004", "stop_name": "CAYRON - CHEFSON"}, "geometry": {"type": "Point", "coordinates": [2.2776385104689867, 48.916702465399936]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8cc4d305515e8f44cb86dbeea72964892632d1a6", "fields": {"departement": "92", "stop_lat": 48.91863589388542, "code_postal": "92004", "stop_lon": 2.2801453857521996, "coord": [48.91863589388542, 2.2801453857521996], "stop_id": 5775592, "stop_desc": "188 RUE DES BOURGUIGNONS - 92004", "stop_name": "BOURGUIGNONS"}, "geometry": {"type": "Point", "coordinates": [2.2801453857521996, 48.91863589388542]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8138643804a3e8d86e0c8bf3f71e6d8d094f9dd3", "fields": {"departement": "92", "stop_lat": 48.92873601378656, "code_postal": "92036", "stop_lon": 2.2997881532733775, "coord": [48.92873601378656, 2.2997881532733775], "stop_id": 5775601, "stop_desc": "52 BOULEVARD CAMELINAT - 92036", "stop_name": "DESLANDES - CABOEUFS"}, "geometry": {"type": "Point", "coordinates": [2.2997881532733775, 48.92873601378656]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0f5ef7d2aae2d618a38bae644f79b0f3a94269a5", "fields": {"departement": "92", "stop_lat": 48.93335625390836, "code_postal": "92036", "stop_lon": 2.3030584799968534, "coord": [48.93335625390836, 2.3030584799968534], "stop_id": 5775606, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 92036", "stop_name": "ROND-POINT PIERRE TIMBAUD"}, "geometry": {"type": "Point", "coordinates": [2.3030584799968534, 48.93335625390836]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4d9cae04c41cf1fd8ff3a944ce3bcfa79b526b77", "fields": {"departement": "92", "stop_lat": 48.933114711338796, "code_postal": "92036", "stop_lon": 2.30715070714464, "coord": [48.933114711338796, 2.30715070714464], "stop_id": 5775607, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 92036", "stop_name": "GENNEVILLIERS RER"}, "geometry": {"type": "Point", "coordinates": [2.30715070714464, 48.933114711338796]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0b105cf68760bb5b974b71b0bc41531bb5779dd5", "fields": {"departement": "92", "stop_lat": 48.92677493166906, "code_postal": "92036", "stop_lon": 2.29406137822655, "coord": [48.92677493166906, 2.29406137822655], "stop_id": 5775614, "stop_desc": "2-4 RUE LOUIS CALMEL - 92036", "stop_name": "JAURES - CAMELINAT - MAIRIE"}, "geometry": {"type": "Point", "coordinates": [2.29406137822655, 48.92677493166906]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a1e064158dfa03b0907bad9d4829708e9cc94bb4", "fields": {"departement": "93", "stop_lat": 48.93099140848212, "code_postal": "93013", "stop_lon": 2.42619895871939, "coord": [48.93099140848212, 2.42619895871939], "stop_id": 5794604, "stop_desc": "PLACE DES DEPORTES - 93013", "stop_name": "LE BOURGET RER"}, "geometry": {"type": "Point", "coordinates": [2.42619895871939, 48.93099140848212]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0eddc06903023b596811fa11c1d36b5956427875", "fields": {"departement": "93", "stop_lat": 48.9262278336695, "code_postal": "93029", "stop_lon": 2.4268863373219367, "coord": [48.9262278336695, 2.4268863373219367], "stop_id": 5794606, "stop_desc": "237 RUE DE LA REPUBLIQUE - 93029", "stop_name": "REPUBLIQUE - VINSON"}, "geometry": {"type": "Point", "coordinates": [2.4268863373219367, 48.9262278336695]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "739a2641af2d0b3e089647ec40f79f0df57fc425", "fields": {"departement": "93", "stop_lat": 48.921498360563156, "code_postal": "93029", "stop_lon": 2.440869895425127, "coord": [48.921498360563156, 2.440869895425127], "stop_id": 5794610, "stop_desc": "FACE 5 RUE ROGER SALENGRO - 93029", "stop_name": "GEORGES DUCERF"}, "geometry": {"type": "Point", "coordinates": [2.440869895425127, 48.921498360563156]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "07a5d8b2052a0015a69b8f7f3653ebd46b386ce7", "fields": {"departement": "93", "stop_lat": 48.919568653703536, "code_postal": "93029", "stop_lon": 2.4379614248273005, "coord": [48.919568653703536, 2.4379614248273005], "stop_id": 5794611, "stop_desc": "FACE 37 RUE ROGER SALENGRO - 93029", "stop_name": "DANTON"}, "geometry": {"type": "Point", "coordinates": [2.4379614248273005, 48.919568653703536]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "43abd49a236bde413158797ba38cd679da9194dd", "fields": {"departement": "93", "stop_lat": 48.91819586364193, "code_postal": "93029", "stop_lon": 2.4352996760558927, "coord": [48.91819586364193, 2.4352996760558927], "stop_id": 5794612, "stop_desc": "RUE FERNAND PENA - 93029", "stop_name": "FERNAND PENA"}, "geometry": {"type": "Point", "coordinates": [2.4352996760558927, 48.91819586364193]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "71136868cf8ccbb4f81ae41395c781ae817d8587", "fields": {"departement": "93", "stop_lat": 48.90569029404579, "code_postal": "93008", "stop_lon": 2.459720013319434, "coord": [48.90569029404579, 2.459720013319434], "stop_id": 5794621, "stop_desc": "AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "CITE ADMINISTRATIVE"}, "geometry": {"type": "Point", "coordinates": [2.459720013319434, 48.90569029404579]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c0024da4e1d3dc786f6226f98d8c2501f93bc5b1", "fields": {"departement": "93", "stop_lat": 48.90773725251889, "code_postal": "93046", "stop_lon": 2.5179265581912933, "coord": [48.90773725251889, 2.5179265581912933], "stop_id": 5794635, "stop_desc": "1 AVENUE DE LA GARE DE GARGAN - 93046", "stop_name": "GARE DE GARGAN"}, "geometry": {"type": "Point", "coordinates": [2.5179265581912933, 48.90773725251889]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8d3bcc2e0b244e53f5d29d6a7e80112e920613bc", "fields": {"departement": "93", "stop_lat": 48.90859629871849, "code_postal": "93046", "stop_lon": 2.531713334134483, "coord": [48.90859629871849, 2.531713334134483], "stop_id": 5794638, "stop_desc": "26 AVENUE LEON BLUM - 93046", "stop_name": "JEAN-BAPTISTE CLEMENT"}, "geometry": {"type": "Point", "coordinates": [2.531713334134483, 48.90859629871849]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "979a316a3fa7eafbf1998a0e6d0b9a24d2553705", "fields": {"departement": "93", "stop_lat": 48.90498336322662, "code_postal": "93014", "stop_lon": 2.542510634909016, "coord": [48.90498336322662, 2.542510634909016], "stop_id": 5794640, "stop_desc": "BOULEVARD GAGARINE - 93014", "stop_name": "AVENUE LADRETTE"}, "geometry": {"type": "Point", "coordinates": [2.542510634909016, 48.90498336322662]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f4a8a91b5d44e24e86c5ba7a86f3bc2b359a64c1", "fields": {"departement": "93", "stop_lat": 48.93101006011957, "code_postal": "93013", "stop_lon": 2.425285132274111, "coord": [48.93101006011957, 2.425285132274111], "stop_id": 5794646, "stop_desc": "22 AVENUE FRANCIS DE PRESSENSE - 93013", "stop_name": "LE BOURGET-RER"}, "geometry": {"type": "Point", "coordinates": [2.425285132274111, 48.93101006011957]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "361eab083d8fcc1403d08ea1b093cbce5194752a", "fields": {"departement": "93", "stop_lat": 48.90824092123932, "code_postal": "93001", "stop_lon": 2.387699286570942, "coord": [48.90824092123932, 2.387699286570942], "stop_id": 3972551, "stop_desc": "FACE 82-84 AVENUE DE LA REPUBLIQUE - 93001", "stop_name": "RUE DES CITES"}, "geometry": {"type": "Point", "coordinates": [2.387699286570942, 48.90824092123932]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2e059f31111a0daed877b70e4a61a1bebf5cedbd", "fields": {"departement": "93", "stop_lat": 48.92275658140487, "code_postal": "93027", "stop_lon": 2.3836221740870704, "coord": [48.92275658140487, 2.3836221740870704], "stop_id": 3972559, "stop_desc": "51 BOULEVARD PASTEUR - 93027", "stop_name": "LA COURNEUVE - AUBERVILLIERS RER"}, "geometry": {"type": "Point", "coordinates": [2.3836221740870704, 48.92275658140487]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ba135c0cd7e2c840a3387562d8900124e8e93765", "fields": {"departement": "93", "stop_lat": 48.929037580636226, "code_postal": "93027", "stop_lon": 2.3857827838557766, "coord": [48.929037580636226, 2.3857827838557766], "stop_id": 3972562, "stop_desc": "BOULEVARD PASTEUR - 93027", "stop_name": "SIX ROUTES - TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.3857827838557766, 48.929037580636226]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eb4752edbf0788dd8f28aaf6d4eaa82f0aaca8aa", "fields": {"departement": "93", "stop_lat": 48.932838565426906, "code_postal": "93027", "stop_lon": 2.386918478660045, "coord": [48.932838565426906, 2.386918478660045], "stop_id": 3972565, "stop_desc": "AVENUE ROGER SALENGRO - 93027", "stop_name": "PARC DES SPORTS"}, "geometry": {"type": "Point", "coordinates": [2.386918478660045, 48.932838565426906]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "89b5082bfe00c20b08400f50024adc8a71b11402", "fields": {"departement": "93", "stop_lat": 48.94932980719165, "code_postal": "93072", "stop_lon": 2.385829095319729, "coord": [48.94932980719165, 2.385829095319729], "stop_id": 3972571, "stop_desc": "FACE 97 BOULEVARD MAXIME GORKI - 93072", "stop_name": "LE GLOBE"}, "geometry": {"type": "Point", "coordinates": [2.385829095319729, 48.94932980719165]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ec0ebb27aaf24351aade470348242681766ae2c6", "fields": {"departement": "93", "stop_lat": 48.956214648833715, "code_postal": "93072", "stop_lon": 2.3832700493319843, "coord": [48.956214648833715, 2.3832700493319843], "stop_id": 3972574, "stop_desc": "FACE 5 AVENUE MARCEL CACHIN - 93072", "stop_name": "MAIRIE DE STAINS"}, "geometry": {"type": "Point", "coordinates": [2.3832700493319843, 48.956214648833715]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d48b9e8e6a3b0913642c867236ddf60fd2e8e8e0", "fields": {"departement": "93", "stop_lat": 48.9546688790513, "code_postal": "93072", "stop_lon": 2.383418780134514, "coord": [48.9546688790513, 2.383418780134514], "stop_id": 3972575, "stop_desc": "FACE 5 BOULEVARD MAXIME GORKI - 93072", "stop_name": "MAIRIE DE STAINS"}, "geometry": {"type": "Point", "coordinates": [2.383418780134514, 48.9546688790513]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "008a35de2e68f56c43f9a966d35cf24f02a49213", "fields": {"departement": "93", "stop_lat": 48.960420869630234, "code_postal": "93072", "stop_lon": 2.3820728157965996, "coord": [48.960420869630234, 2.3820728157965996], "stop_id": 3972576, "stop_desc": "FACE 47 AVENUE MARCEL CACHIN - 93072", "stop_name": "LES PAROUZETS"}, "geometry": {"type": "Point", "coordinates": [2.3820728157965996, 48.960420869630234]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "de6ea3c67ddf274c141075a8eba12832c2dc1450", "fields": {"departement": "93", "stop_lat": 48.960097426554526, "code_postal": "93072", "stop_lon": 2.38186782564374, "coord": [48.960097426554526, 2.38186782564374], "stop_id": 3972577, "stop_desc": "47 AVENUE MARCEL CACHIN - 93072", "stop_name": "LES PAROUZETS"}, "geometry": {"type": "Point", "coordinates": [2.38186782564374, 48.960097426554526]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "604162e9c86b0d2c5ff06c0bd5505d655c5b1311", "fields": {"departement": "93", "stop_lat": 48.962057259865865, "code_postal": "93072", "stop_lon": 2.3798359847502955, "coord": [48.962057259865865, 2.3798359847502955], "stop_id": 3972579, "stop_desc": "33-35 AVENUE ARISTIDE BRIAND - 93072", "stop_name": "JEAN JAURES - ARISTIDE BRIAND"}, "geometry": {"type": "Point", "coordinates": [2.3798359847502955, 48.962057259865865]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e8524bd543739bd6253056d68b9f23941ee7e472", "fields": {"departement": "93", "stop_lat": 48.936180115998646, "code_postal": "93066", "stop_lon": 2.3636091572222897, "coord": [48.936180115998646, 2.3636091572222897], "stop_id": 4000548, "stop_desc": "32 RUE DE STRASBOURG - 93066", "stop_name": "CIMETIERE DE SAINT-DENIS-TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.3636091572222897, 48.936180115998646]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "acea9290a8540c3c37b2fae4b2ecb7ec741b237e", "fields": {"departement": "93", "stop_lat": 48.942950350255785, "code_postal": "93066", "stop_lon": 2.3829171897892314, "coord": [48.942950350255785, 2.3829171897892314], "stop_id": 4000559, "stop_desc": "1 RUE PLOUICH - 93066", "stop_name": "CITE FLOREAL"}, "geometry": {"type": "Point", "coordinates": [2.3829171897892314, 48.942950350255785]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "87590833f389ba1f7685cc13464cc1ea60a00e50", "fields": {"departement": "93", "stop_lat": 48.93278467741047, "code_postal": "93066", "stop_lon": 2.3549868619249192, "coord": [48.93278467741047, 2.3549868619249192], "stop_id": 4000572, "stop_desc": "FACE 26 PLACE DE RESISTANCE - 93066", "stop_name": "PLACE DE LA RESISTANCE"}, "geometry": {"type": "Point", "coordinates": [2.3549868619249192, 48.93278467741047]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bddbea4efe23aecae980380780d51de688cf1c45", "fields": {"departement": "93", "stop_lat": 48.956690805608744, "code_postal": "93079", "stop_lon": 2.3395336383450567, "coord": [48.956690805608744, 2.3395336383450567], "stop_id": 4000738, "stop_desc": "PISTE GARE ROUTIERE - 93079", "stop_name": "UNIVERSITE - PARIS 13"}, "geometry": {"type": "Point", "coordinates": [2.3395336383450567, 48.956690805608744]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3a0c8f258282b97e1bc9c26504fd324218deb912", "fields": {"departement": "93", "stop_lat": 48.95323993272999, "code_postal": "93079", "stop_lon": 2.3377868588603916, "coord": [48.95323993272999, 2.3377868588603916], "stop_id": 4000742, "stop_desc": "AVENUE JEAN-BAPTISTE CLEMENT - 93079", "stop_name": "J-B CLEMENT - CARNOT"}, "geometry": {"type": "Point", "coordinates": [2.3377868588603916, 48.95323993272999]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "621b6e20ee5068ca2f379ed76e055a96d80c15f1", "fields": {"departement": "95", "stop_lat": 48.97745619840204, "code_postal": "95268", "stop_lon": 2.390046640216754, "coord": [48.97745619840204, 2.390046640216754], "stop_id": 4008110, "stop_desc": "PISTE GARE ROUTIERE - 95268", "stop_name": "GARGES - SARCELLES RER"}, "geometry": {"type": "Point", "coordinates": [2.390046640216754, 48.97745619840204]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "46c1da4ed8afc889d031ab4095e3192e376091e8", "fields": {"departement": "95", "stop_lat": 48.98310038531361, "code_postal": "95585", "stop_lon": 2.388536871850163, "coord": [48.98310038531361, 2.388536871850163], "stop_id": 4008113, "stop_desc": "ROUTE DES REFUZNIKS - 95585", "stop_name": "HAUT DU ROY"}, "geometry": {"type": "Point", "coordinates": [2.388536871850163, 48.98310038531361]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d52f97aa4a76978ea7d4336e58a83a2c9d3d3a00", "fields": {"departement": "95", "stop_lat": 48.99643473915978, "code_postal": "95585", "stop_lon": 2.3919643254475065, "coord": [48.99643473915978, 2.3919643254475065], "stop_id": 4008120, "stop_desc": "20 RUE DU FER A CHEVAL - 95585", "stop_name": "RUE D'ABLEVAL - PARC INDUSTRIEL"}, "geometry": {"type": "Point", "coordinates": [2.3919643254475065, 48.99643473915978]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6fc12ec8fd3fc077c8f12557bf3938e5401b2ad6", "fields": {"departement": "95", "stop_lat": 48.996696295030056, "code_postal": "95585", "stop_lon": 2.389847767706124, "coord": [48.996696295030056, 2.389847767706124], "stop_id": 4008122, "stop_desc": "FACE 31 RUE D'ESCOUVRIER - 95585", "stop_name": "PARC INDUSTRIEL NORD"}, "geometry": {"type": "Point", "coordinates": [2.389847767706124, 48.996696295030056]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c55b36cd98d08b755c8639cf8d3fab82ce524e86", "fields": {"departement": "95", "stop_lat": 49.0036378046073, "code_postal": "95680", "stop_lon": 2.4000852913298445, "coord": [49.0036378046073, 2.4000852913298445], "stop_id": 4008134, "stop_desc": "FACE 1 AVENUE PIERRE SEMARD - 95680", "stop_name": "LA POSTE"}, "geometry": {"type": "Point", "coordinates": [2.4000852913298445, 49.0036378046073]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "05756cbdf720888a3b0f5c1f1d5de163d3616b27", "fields": {"departement": "95", "stop_lat": 48.998794668395874, "code_postal": "95680", "stop_lon": 2.414542755640942, "coord": [48.998794668395874, 2.414542755640942], "stop_id": 4008140, "stop_desc": "6 AVENUE DE LA CONCORDE - 95680", "stop_name": "LES CARREAUX"}, "geometry": {"type": "Point", "coordinates": [2.414542755640942, 48.998794668395874]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "64ab25a571e1763667f83273ffb2be936f61fbe1", "fields": {"departement": "95", "stop_lat": 48.99465090332859, "code_postal": "95019", "stop_lon": 2.416134369205257, "coord": [48.99465090332859, 2.416134369205257], "stop_id": 4008142, "stop_desc": "PLACE DU GENERAL LECLERC - 95019", "stop_name": "VILLIERS LE BEL - GONESSE - ARNOUVILLE RER"}, "geometry": {"type": "Point", "coordinates": [2.416134369205257, 48.99465090332859]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d2cc314cb122d7764124c79f0a7e3649010beead", "fields": {"departement": "75", "stop_lat": 48.870649045172456, "code_postal": "75109", "stop_lon": 2.33153268958499, "coord": [48.870649045172456, 2.33153268958499], "stop_id": 4008204, "stop_desc": "6 BOULEVARD DES CAPUCINES - 75109", "stop_name": "OPERA."}, "geometry": {"type": "Point", "coordinates": [2.33153268958499, 48.870649045172456]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b54b4cf19aea53a221172cc8a43a13dcdaf61112", "fields": {"departement": "75", "stop_lat": 48.87026246441203, "code_postal": "75109", "stop_lon": 2.3293393182375897, "coord": [48.87026246441203, 2.3293393182375897], "stop_id": 4008205, "stop_desc": "14-16 BOULEVARD DES CAPUCINES - 75109", "stop_name": "CAPUCINES - CAUMARTIN"}, "geometry": {"type": "Point", "coordinates": [2.3293393182375897, 48.87026246441203]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "604c181ca60b33684a31a100cacb22eda9c21baa", "fields": {"departement": "75", "stop_lat": 48.87479712605779, "code_postal": "75108", "stop_lon": 2.3056313323357602, "coord": [48.87479712605779, 2.3056313323357602], "stop_id": 4008219, "stop_desc": "177 BOULEVARD HAUSSMANN - 75108", "stop_name": "FRIEDLAND - HAUSSMANN"}, "geometry": {"type": "Point", "coordinates": [2.3056313323357602, 48.87479712605779]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a7f49845ef93092c692dc4e032daecc3514495a2", "fields": {"departement": "75", "stop_lat": 48.87110677966517, "code_postal": "75116", "stop_lon": 2.2890669048546903, "coord": [48.87110677966517, 2.2890669048546903], "stop_id": 4008227, "stop_desc": "51 AVENUE VICTOR HUGO - 75116", "stop_name": "VICTOR HUGO - PAUL VALERY"}, "geometry": {"type": "Point", "coordinates": [2.2890669048546903, 48.87110677966517]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c97320d151420c35027ee7575f09bd666557fa9b", "fields": {"departement": "75", "stop_lat": 48.8699266028549, "code_postal": "75116", "stop_lon": 2.2825014245073847, "coord": [48.8699266028549, 2.2825014245073847], "stop_id": 4008230, "stop_desc": "167-169 RUE DE LA POMPE - 75116", "stop_name": "BUGEAUD"}, "geometry": {"type": "Point", "coordinates": [2.2825014245073847, 48.8699266028549]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9ef5aaea8b9df2d31e0f31dfdecc411517c834c8", "fields": {"departement": "75", "stop_lat": 48.86367781678552, "code_postal": "75116", "stop_lon": 2.2771682126291473, "coord": [48.86367781678552, 2.2771682126291473], "stop_id": 4008236, "stop_desc": "78-80 RUE DE LA POMPE - 75116", "stop_name": "POMPE - MAIRIE DU 16EME"}, "geometry": {"type": "Point", "coordinates": [2.2771682126291473, 48.86367781678552]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "82465c33de76ad247e9777d34453ff164b2fd731", "fields": {"departement": "75", "stop_lat": 48.86179868807939, "code_postal": "75116", "stop_lon": 2.275672028147311, "coord": [48.86179868807939, 2.275672028147311], "stop_id": 4008237, "stop_desc": "43 RUE DE LA POMPE - 75116", "stop_name": "NICOLO - JEAN RICHEPIN"}, "geometry": {"type": "Point", "coordinates": [2.275672028147311, 48.86179868807939]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "13f9d09258684203ffecdd5d4f3dd754c84b3ccf", "fields": {"departement": "75", "stop_lat": 48.85791537342734, "code_postal": "75116", "stop_lon": 2.2742328714160207, "coord": [48.85791537342734, 2.2742328714160207], "stop_id": 4008240, "stop_desc": "7 AVENUE MOZART - 75116", "stop_name": "LA MUETTE - BOULAINVILLIERS RER"}, "geometry": {"type": "Point", "coordinates": [2.2742328714160207, 48.85791537342734]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "255a0b82948d734ba1111031ec2210c0b010b8dc", "fields": {"departement": "75", "stop_lat": 48.85315277938903, "code_postal": "75116", "stop_lon": 2.275668673992765, "coord": [48.85315277938903, 2.275668673992765], "stop_id": 4008242, "stop_desc": "19 BIS RUE BOULAINVILLIERS - 75116", "stop_name": "ASSOMPTION - RADIO FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.275668673992765, 48.85315277938903]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "34e11902ab4771a11bd7521f2fdbe63eb89dd9d5", "fields": {"departement": "75", "stop_lat": 48.85098473812681, "code_postal": "75116", "stop_lon": 2.2718035570269244, "coord": [48.85098473812681, 2.2718035570269244], "stop_id": 4008243, "stop_desc": "40 RUE LA FONTAINE - 75116", "stop_name": "LEOPOLD II"}, "geometry": {"type": "Point", "coordinates": [2.2718035570269244, 48.85098473812681]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b4aeea821f770f0b60cccfa2b2c42bcd6a1899d1", "fields": {"departement": "75", "stop_lat": 48.84780825353484, "code_postal": "75116", "stop_lon": 2.2650531374112775, "coord": [48.84780825353484, 2.2650531374112775], "stop_id": 4008247, "stop_desc": "51 RUE D'AUTEUIL - 75116", "stop_name": "MICHEL-ANGE - AUTEUIL"}, "geometry": {"type": "Point", "coordinates": [2.2650531374112775, 48.84780825353484]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e9c75c0da25507a8e4ba74960ba9dd5a999a25e1", "fields": {"departement": "75", "stop_lat": 48.84739036149703, "code_postal": "75116", "stop_lon": 2.2580269917135367, "coord": [48.84739036149703, 2.2580269917135367], "stop_id": 4008251, "stop_desc": "PLACE DE LA PORTE D'AUTEUIL - 75116", "stop_name": "PORTE D'AUTEUIL"}, "geometry": {"type": "Point", "coordinates": [2.2580269917135367, 48.84739036149703]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f3dd35013198737724d4b4afa826c2175d5e09d7", "fields": {"departement": "92", "stop_lat": 48.84339104004485, "code_postal": "92012", "stop_lon": 2.2456691896994294, "coord": [48.84339104004485, 2.2456691896994294], "stop_id": 4008256, "stop_desc": "58 RUE DU CHATEAU - 92012", "stop_name": "DENFERT ROCHEREAU"}, "geometry": {"type": "Point", "coordinates": [2.2456691896994294, 48.84339104004485]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "438140ad4573ea8d3725a9f60fe6f3879762bd2a", "fields": {"departement": "92", "stop_lat": 48.842136500397636, "code_postal": "92012", "stop_lon": 2.2390538761825014, "coord": [48.842136500397636, 2.2390538761825014], "stop_id": 4008260, "stop_desc": "138 RUE DU CHATEAU - 92012", "stop_name": "JEAN JAURES-METRO"}, "geometry": {"type": "Point", "coordinates": [2.2390538761825014, 48.842136500397636]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "25973bc564c66f79ef22960c041ccdda19296965", "fields": {"departement": "92", "stop_lat": 48.84086085614501, "code_postal": "92012", "stop_lon": 2.2293480968867856, "coord": [48.84086085614501, 2.2293480968867856], "stop_id": 4008271, "stop_desc": "157-159 R DE PARIS - 92012", "stop_name": "RHIN ET DANUBE-METRO."}, "geometry": {"type": "Point", "coordinates": [2.2293480968867856, 48.84086085614501]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5d26086ca05d398b71830b39c1a11fc493408dd2", "fields": {"departement": "75", "stop_lat": 48.86981973660597, "code_postal": "75116", "stop_lon": 2.28468130953981, "coord": [48.86981973660597, 2.28468130953981], "stop_id": 4008289, "stop_desc": "2-4 AVENUE BUGEAUD - 75116", "stop_name": "VICTOR HUGO - POINCARE"}, "geometry": {"type": "Point", "coordinates": [2.28468130953981, 48.86981973660597]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "94317efd9bcd9e9a87393bc8dbfced8f006ca182", "fields": {"departement": "75", "stop_lat": 48.85098473812681, "code_postal": "75116", "stop_lon": 2.2718035570269244, "coord": [48.85098473812681, 2.2718035570269244], "stop_id": 4008304, "stop_desc": "40 RUE LA FONTAINE - 75116", "stop_name": "LEOPOLD II"}, "geometry": {"type": "Point", "coordinates": [2.2718035570269244, 48.85098473812681]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "29de412cc2332c7d8a478ef340a44e4f3d480426", "fields": {"departement": "92", "stop_lat": 48.843119375874195, "code_postal": "92064", "stop_lon": 2.2225623450036838, "coord": [48.843119375874195, 2.2225623450036838], "stop_id": 4008358, "stop_desc": "QUAI DU PRESIDENT CARNOT - 92064", "stop_name": "PARC DE SAINT-CLOUD"}, "geometry": {"type": "Point", "coordinates": [2.2225623450036838, 48.843119375874195]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "11aaf6caf5cf2219ff29f8968f0982509d45b3b0", "fields": {"departement": "92", "stop_lat": 48.84183945014846, "code_postal": "92012", "stop_lon": 2.2384961727732495, "coord": [48.84183945014846, 2.2384961727732495], "stop_id": 4008365, "stop_desc": "123 RUE DU CHATEAU - 92012", "stop_name": "JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.2384961727732495, 48.84183945014846]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c1531ede99a6c1f5e3648c3cfb2511e63faa0229", "fields": {"departement": "75", "stop_lat": 48.84739036149703, "code_postal": "75116", "stop_lon": 2.2580269917135367, "coord": [48.84739036149703, 2.2580269917135367], "stop_id": 4008370, "stop_desc": "PLACE DE LA PORTE D'AUTEUIL - 75116", "stop_name": "PORTE D'AUTEUIL"}, "geometry": {"type": "Point", "coordinates": [2.2580269917135367, 48.84739036149703]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ffa73670bb81116662ec1646bf3667dbc3539d0d", "fields": {"departement": "75", "stop_lat": 48.8496185218846, "code_postal": "75116", "stop_lon": 2.271587388512346, "coord": [48.8496185218846, 2.271587388512346], "stop_id": 4008374, "stop_desc": "31 AVENUE THEOPHILE GAUTIER - 75116", "stop_name": "PERRICHONT"}, "geometry": {"type": "Point", "coordinates": [2.271587388512346, 48.8496185218846]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b23da194769187fd67cd9dc2382648ef5e472157", "fields": {"departement": "75", "stop_lat": 48.861079569495644, "code_postal": "75116", "stop_lon": 2.2754276990104105, "coord": [48.861079569495644, 2.2754276990104105], "stop_id": 4008379, "stop_desc": "36 RUE DE LA POMPE - 75116", "stop_name": "NICOLO - JEAN RICHEPIN"}, "geometry": {"type": "Point", "coordinates": [2.2754276990104105, 48.861079569495644]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c7d55a3b4a87386b3a35360e27eae87368177d84", "fields": {"departement": "75", "stop_lat": 48.86982026544612, "code_postal": "75116", "stop_lon": 2.2858938072772896, "coord": [48.86982026544612, 2.2858938072772896], "stop_id": 4008383, "stop_desc": "89 AVENUE VICTOR HUGO - 75116", "stop_name": "VICTOR HUGO - POINCARE"}, "geometry": {"type": "Point", "coordinates": [2.2858938072772896, 48.86982026544612]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9a4d44dbe6eea6f345f1b52be7ffe456e750789f", "fields": {"departement": "75", "stop_lat": 48.87374046011082, "code_postal": "75109", "stop_lon": 2.327989951615834, "coord": [48.87374046011082, 2.327989951615834], "stop_id": 4008836, "stop_desc": "64-66 BOULEVARD HAUSSMANN - 75109", "stop_name": "HAVRE - CAUMARTIN"}, "geometry": {"type": "Point", "coordinates": [2.327989951615834, 48.87374046011082]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f744e3da1dd66b0d3e895f6ed83a47313180eb7f", "fields": {"departement": "75", "stop_lat": 48.87493294387232, "code_postal": "75108", "stop_lon": 2.3096914749426154, "coord": [48.87493294387232, 2.3096914749426154], "stop_id": 4008843, "stop_desc": "153 BOULEVARD HAUSSMANN - 75108", "stop_name": "HAUSSMANN - COURCELLES"}, "geometry": {"type": "Point", "coordinates": [2.3096914749426154, 48.87493294387232]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6c051c3645fdfce308a4b112f1fcbe10978e8fa0", "fields": {"departement": "75", "stop_lat": 48.86419500504601, "code_postal": "75116", "stop_lon": 2.2878473386642373, "coord": [48.86419500504601, 2.2878473386642373], "stop_id": 4008855, "stop_desc": "120 AVENUE KLEBER - 75116", "stop_name": "TROCADERO"}, "geometry": {"type": "Point", "coordinates": [2.2878473386642373, 48.86419500504601]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3252a8f475d1ec84d8c4651b653a69fb8b2fcff7", "fields": {"departement": "75", "stop_lat": 48.864096307085475, "code_postal": "75116", "stop_lon": 2.288242472786513, "coord": [48.864096307085475, 2.288242472786513], "stop_id": 4008856, "stop_desc": "93 AVENUE KLEBER - 75116", "stop_name": "TROCADERO"}, "geometry": {"type": "Point", "coordinates": [2.288242472786513, 48.864096307085475]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "612e190dec9ab0ecd2a8fec6d2e23d12a55ab2ec", "fields": {"departement": "75", "stop_lat": 48.861101670705104, "code_postal": "75116", "stop_lon": 2.283968219228734, "coord": [48.861101670705104, 2.283968219228734], "stop_id": 4008858, "stop_desc": "19 AVENUE PAUL DOUMER - 75116", "stop_name": "SCHEFFER"}, "geometry": {"type": "Point", "coordinates": [2.283968219228734, 48.861101670705104]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "64db8da60c24b623ba090f39650115ad6c0894d4", "fields": {"departement": "75", "stop_lat": 48.860129277354844, "code_postal": "75116", "stop_lon": 2.280182571795972, "coord": [48.860129277354844, 2.280182571795972], "stop_id": 4008859, "stop_desc": "56 AVENUE PAUL DOUMER - 75116", "stop_name": "LA TOUR"}, "geometry": {"type": "Point", "coordinates": [2.280182571795972, 48.860129277354844]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8824b333516be11b35345c29b0bddf852e1e9765", "fields": {"departement": "75", "stop_lat": 48.852658546616404, "code_postal": "75116", "stop_lon": 2.275819070570975, "coord": [48.852658546616404, 2.275819070570975], "stop_id": 4008866, "stop_desc": "11-13 RUE DE BOULAINVILLIERS - 75116", "stop_name": "PLACE DU DOCTEUR HAYEM - RADIO FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.275819070570975, 48.852658546616404]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0faed0fe94b162889c943fc563f6504027520ef6", "fields": {"departement": "75", "stop_lat": 48.8409511553474, "code_postal": "75116", "stop_lon": 2.26568901604171, "coord": [48.8409511553474, 2.26568901604171], "stop_id": 4008879, "stop_desc": "167 AVENUE DE VERSAILLES - 75116", "stop_name": "VERSAILLES - EXELMANS"}, "geometry": {"type": "Point", "coordinates": [2.26568901604171, 48.8409511553474]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c2f1f1b3a676b6bca0bd52ac5d9f92e163aa420c", "fields": {"departement": "75", "stop_lat": 48.851935221374724, "code_postal": "75116", "stop_lon": 2.267934595619757, "coord": [48.851935221374724, 2.267934595619757], "stop_id": 4008884, "stop_desc": "89 AVENUE MOZART - 75116", "stop_name": "JASMIN"}, "geometry": {"type": "Point", "coordinates": [2.267934595619757, 48.851935221374724]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2e8f4f686b206c97a51e645d124e958eae47461a", "fields": {"departement": "75", "stop_lat": 48.86691015970453, "code_postal": "75116", "stop_lon": 2.2902423664360336, "coord": [48.86691015970453, 2.2902423664360336], "stop_id": 4008887, "stop_desc": "57 AVENUE KLEBER - 75116", "stop_name": "KLEBER - BOISSIERE"}, "geometry": {"type": "Point", "coordinates": [2.2902423664360336, 48.86691015970453]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "926ac3da8f8b9482f6f719d7f6afc85666074fb0", "fields": {"departement": "75", "stop_lat": 48.872033003523995, "code_postal": "75109", "stop_lon": 2.3298976383299848, "coord": [48.872033003523995, 2.3298976383299848], "stop_id": 4008890, "stop_desc": "FACE 8 RUE AUBER - 75109", "stop_name": "AUBER"}, "geometry": {"type": "Point", "coordinates": [2.3298976383299848, 48.872033003523995]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a3ad0e599a11163409c451d133f7db63ac03b9ce", "fields": {"departement": "92", "stop_lat": 48.82642556896797, "code_postal": "92072", "stop_lon": 2.2186517020558836, "coord": [48.82642556896797, 2.2186517020558836], "stop_id": 4008894, "stop_desc": "16 GRANDE RUE - 92072", "stop_name": "PARC DE SAINT-CLOUD"}, "geometry": {"type": "Point", "coordinates": [2.2186517020558836, 48.82642556896797]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5b84be674c1ce97b06a3b8edf1b2ab8da30bd2c8", "fields": {"departement": "92", "stop_lat": 48.8155497567482, "code_postal": "92022", "stop_lon": 2.1935536959173376, "coord": [48.8155497567482, 2.1935536959173376], "stop_id": 4008906, "stop_desc": "664 AVENUE ROGER SALENGRO - 92022", "stop_name": "GUILLEMINOT"}, "geometry": {"type": "Point", "coordinates": [2.1935536959173376, 48.8155497567482]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "28f36c86221a274b6d78cccfc3a9b696c8e5dd75", "fields": {"departement": "92", "stop_lat": 48.816189030781565, "code_postal": "92022", "stop_lon": 2.1945045924659863, "coord": [48.816189030781565, 2.1945045924659863], "stop_id": 4008907, "stop_desc": "547 AVENUE ROGER SALENGRO - 92022", "stop_name": "GUILLEMINOT"}, "geometry": {"type": "Point", "coordinates": [2.1945045924659863, 48.816189030781565]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e9be4574c3d0a5b7750fe8005edd15c3a67a12dd", "fields": {"departement": "92", "stop_lat": 48.82795039915451, "code_postal": "92072", "stop_lon": 2.2247466599919257, "coord": [48.82795039915451, 2.2247466599919257], "stop_id": 4008920, "stop_desc": "ALLEE DU PONT DE SEVRES - 92072", "stop_name": "MUSEE DE SEVRES"}, "geometry": {"type": "Point", "coordinates": [2.2247466599919257, 48.82795039915451]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ef26fbc6e43732ed121ccb1df4b4e58c1ec5cb89", "fields": {"departement": "92", "stop_lat": 48.824703549250714, "code_postal": "92072", "stop_lon": 2.2133742801364997, "coord": [48.824703549250714, 2.2133742801364997], "stop_id": 4008924, "stop_desc": "48 GRANDE RUE - 92072", "stop_name": "MAIRIE DE SEVRES"}, "geometry": {"type": "Point", "coordinates": [2.2133742801364997, 48.824703549250714]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "522ebc3f13cec8cb16c755945331ae39e45afbfd", "fields": {"departement": "94", "stop_lat": 48.77927130313195, "code_postal": "94038", "stop_lon": 2.3284419923184068, "coord": [48.77927130313195, 2.3284419923184068], "stop_id": 4274408, "stop_desc": "59 RUE DE LA COSARDE - 94038", "stop_name": "PETIT ROBINSON"}, "geometry": {"type": "Point", "coordinates": [2.3284419923184068, 48.77927130313195]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ef4c7ecad6c00ed31ad4d981a5b92deff8a2b1b3", "fields": {"departement": "94", "stop_lat": 48.77886711314606, "code_postal": "94038", "stop_lon": 2.340926602240112, "coord": [48.77886711314606, 2.340926602240112], "stop_id": 4274412, "stop_desc": "BOULEVARD PAUL VAILLANT COUTURIER - 94038", "stop_name": "HENRI THIRARD - LEON JOUHAUX"}, "geometry": {"type": "Point", "coordinates": [2.340926602240112, 48.77886711314606]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "265a9fe6f5a6f0bf34400ecaa6db00af34bba219", "fields": {"departement": "94", "stop_lat": 48.77582008512248, "code_postal": "94038", "stop_lon": 2.3432654010570015, "coord": [48.77582008512248, 2.3432654010570015], "stop_id": 4274418, "stop_desc": "FACE 27 R DE CHEVILLY - 94038", "stop_name": "STADE L'HAYETTE"}, "geometry": {"type": "Point", "coordinates": [2.3432654010570015, 48.77582008512248]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9b1b1c32d39dd3ce4f694c8918cb289f6c5597d4", "fields": {"departement": "94", "stop_lat": 48.775585469471835, "code_postal": "94038", "stop_lon": 2.3532741343435917, "coord": [48.775585469471835, 2.3532741343435917], "stop_id": 4274420, "stop_desc": "96 R DE BICETRE - 94038", "stop_name": "LES COQUELICOTS"}, "geometry": {"type": "Point", "coordinates": [2.3532741343435917, 48.775585469471835]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f5dc9ea65c8dbbbd3880a937e009b15d4d10ae7c", "fields": {"departement": "94", "stop_lat": 48.7773468779113, "code_postal": "94038", "stop_lon": 2.354974592688749, "coord": [48.7773468779113, 2.354974592688749], "stop_id": 4274421, "stop_desc": "FACE 141 RUE DE BICETRE - 94038", "stop_name": "LES DAHLIAS"}, "geometry": {"type": "Point", "coordinates": [2.354974592688749, 48.7773468779113]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cba76636d780e138c2d2c196325f86c2c43c39e8", "fields": {"departement": "94", "stop_lat": 48.77760619446858, "code_postal": "94038", "stop_lon": 2.3623863479879135, "coord": [48.77760619446858, 2.3623863479879135], "stop_id": 4274423, "stop_desc": "FACE 103 R PAUL HOCHART - 94038", "stop_name": "RUE PAUL HOCHART"}, "geometry": {"type": "Point", "coordinates": [2.3623863479879135, 48.77760619446858]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "48e324924e21bda0cfee025aef604124dbec8111", "fields": {"departement": "91", "stop_lat": 48.715216538741494, "code_postal": "91027", "stop_lon": 2.3720001812741356, "coord": [48.715216538741494, 2.3720001812741356], "stop_id": 4284897, "stop_desc": "RUE PAUL DEMANGE - 91027", "stop_name": "PORTE DE L'ESSONNE"}, "geometry": {"type": "Point", "coordinates": [2.3720001812741356, 48.715216538741494]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7c2433a49097ab7a7eb32f842dd5e1020fab8c15", "fields": {"departement": "91", "stop_lat": 48.72963508042285, "code_postal": "91479", "stop_lon": 2.3677435484138623, "coord": [48.72963508042285, 2.3677435484138623], "stop_id": 4284899, "stop_desc": "RUE DU MUSEE - 91479", "stop_name": "AEROPORT D'ORLY"}, "geometry": {"type": "Point", "coordinates": [2.3677435484138623, 48.72963508042285]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2e89ed1cc9f52de37f8d343ed9660c8d4981cd62", "fields": {"departement": "94", "stop_lat": 48.738856524465646, "code_postal": "94054", "stop_lon": 2.369841701938621, "coord": [48.738856524465646, 2.369841701938621], "stop_id": 4284902, "stop_desc": "AVENUE DU MARECHAL DEVAUX - 94054", "stop_name": "CAROLINE AIGLE (ORLYFRET)"}, "geometry": {"type": "Point", "coordinates": [2.369841701938621, 48.738856524465646]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "30a4eeeb094128ee99f2ef0689535057f58b53f3", "fields": {"departement": "94", "stop_lat": 48.750202953452586, "code_postal": "94065", "stop_lon": 2.35406825057595, "coord": [48.750202953452586, 2.35406825057595], "stop_id": 4284911, "stop_desc": "RUE SAARINEN - 94065", "stop_name": "SAARINEN (PARC SILIC NORD)"}, "geometry": {"type": "Point", "coordinates": [2.35406825057595, 48.750202953452586]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7b7acfca03cdf6ccfebc52c40d72a58cb19f0941", "fields": {"departement": "94", "stop_lat": 48.75609618186749, "code_postal": "94065", "stop_lon": 2.3688601683981094, "coord": [48.75609618186749, 2.3688601683981094], "stop_id": 4284916, "stop_desc": "RUE LATERALE - 94065", "stop_name": "LA BELLE EPINE"}, "geometry": {"type": "Point", "coordinates": [2.3688601683981094, 48.75609618186749]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b1c3288ee2b1fcfe7b35037b5b053777c98c6e68", "fields": {"departement": "94", "stop_lat": 48.78755481770094, "code_postal": "94076", "stop_lon": 2.3669614325199984, "coord": [48.78755481770094, 2.3669614325199984], "stop_id": 4284929, "stop_desc": "AVENUE DE STALINGRAD - 94076", "stop_name": "VILLEJUIF - LOUIS ARAGON"}, "geometry": {"type": "Point", "coordinates": [2.3669614325199984, 48.78755481770094]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fdd15bcd3ba252a47f7dbda4724d0e3915dcca19", "fields": {"departement": "94", "stop_lat": 48.80348316255257, "code_postal": "94043", "stop_lon": 2.3583850556020804, "coord": [48.80348316255257, 2.3583850556020804], "stop_id": 4293176, "stop_desc": "FACE 50 BOULEVARD CHASTENET DE GERY - 94043", "stop_name": "LES COQUETTES"}, "geometry": {"type": "Point", "coordinates": [2.3583850556020804, 48.80348316255257]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "821d17ffd5c66cd683108f48104540b86108dfa5", "fields": {"departement": "94", "stop_lat": 48.79832469082517, "code_postal": "94076", "stop_lon": 2.3550497765575598, "coord": [48.79832469082517, 2.3550497765575598], "stop_id": 4293180, "stop_desc": "PLACE DU 8 MAI 1945 - 94076", "stop_name": "PLACE DU 8 MAI 1945"}, "geometry": {"type": "Point", "coordinates": [2.3550497765575598, 48.79832469082517]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e791800770953a88c5f8ae681b31d903915ed212", "fields": {"departement": "94", "stop_lat": 48.795664357750326, "code_postal": "94076", "stop_lon": 2.3545455124151435, "coord": [48.795664357750326, 2.3545455124151435], "stop_id": 4293182, "stop_desc": "59 R MARCEL GROSMENIL - 94076", "stop_name": "VERDUN - GROSMENIL"}, "geometry": {"type": "Point", "coordinates": [2.3545455124151435, 48.795664357750326]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "88ccea82fddda048aa8c3467f2ffab6f853af7d3", "fields": {"departement": "94", "stop_lat": 48.80295475303635, "code_postal": "94003", "stop_lon": 2.3383295555894, "coord": [48.80295475303635, 2.3383295555894], "stop_id": 4293187, "stop_desc": "AVENUE PAUL VAILLANT COUTURIER - 94003", "stop_name": "MAISON DU GRAND CEDRE"}, "geometry": {"type": "Point", "coordinates": [2.3383295555894, 48.80295475303635]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a03d7a00dde8a80dc25eb93b80f4f1173494f67f", "fields": {"departement": "94", "stop_lat": 48.80669368515831, "code_postal": "94003", "stop_lon": 2.336941718396992, "coord": [48.80669368515831, 2.336941718396992], "stop_id": 4293189, "stop_desc": "9-11 AVENUE PAUL DOUMER - 94003", "stop_name": "HOTEL DE VILLE D'ARCUEIL"}, "geometry": {"type": "Point", "coordinates": [2.336941718396992, 48.80669368515831]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9a91f4a3eb890a23bea82000099fffdae4488b90", "fields": {"departement": "94", "stop_lat": 48.81100780529823, "code_postal": "94003", "stop_lon": 2.335444797357414, "coord": [48.81100780529823, 2.335444797357414], "stop_id": 4293193, "stop_desc": "FACE 92 AVENUE JEAN JAURES - 94003", "stop_name": "CHAPERON VERT"}, "geometry": {"type": "Point", "coordinates": [2.335444797357414, 48.81100780529823]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ae661fc48786738e3944e7a15cf42a0705deb2de", "fields": {"departement": "94", "stop_lat": 48.806864260033116, "code_postal": "94003", "stop_lon": 2.3304647605334337, "coord": [48.806864260033116, 2.3304647605334337], "stop_id": 4293198, "stop_desc": "24-26 AV DU DOCTEUR DURAND - 94003", "stop_name": "DOCTEUR DURAND"}, "geometry": {"type": "Point", "coordinates": [2.3304647605334337, 48.806864260033116]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "571f671336b5942b8008466e19a1024bf3442021", "fields": {"departement": "94", "stop_lat": 48.80460821685429, "code_postal": "94003", "stop_lon": 2.3288186737090397, "coord": [48.80460821685429, 2.3288186737090397], "stop_id": 4293199, "stop_desc": "FACE 49 R BERTHOLLET - 94003", "stop_name": "CROIX D'ARCUEIL"}, "geometry": {"type": "Point", "coordinates": [2.3288186737090397, 48.80460821685429]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d20c3766cbd74720d946b68b3403313029413dd1", "fields": {"departement": "94", "stop_lat": 48.79793023194136, "code_postal": "94016", "stop_lon": 2.328466035866289, "coord": [48.79793023194136, 2.328466035866289], "stop_id": 4293203, "stop_desc": "30 AVENUE CARNOT - 94016", "stop_name": "ARCUEIL-CACHAN RER"}, "geometry": {"type": "Point", "coordinates": [2.328466035866289, 48.79793023194136]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1d42c5b83d5acc89054e944d303a7947ef7b9df7", "fields": {"departement": "94", "stop_lat": 48.795036424790915, "code_postal": "94016", "stop_lon": 2.3342209975753114, "coord": [48.795036424790915, 2.3342209975753114], "stop_id": 4293207, "stop_desc": "4 RUE GALLIENI - 94016", "stop_name": "MAIRIE DE CACHAN"}, "geometry": {"type": "Point", "coordinates": [2.3342209975753114, 48.795036424790915]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "45efb90d34127ca00790c320f50304ac1079bcfb", "fields": {"departement": "94", "stop_lat": 48.78985943459691, "code_postal": "94016", "stop_lon": 2.3367105749585892, "coord": [48.78985943459691, 2.3367105749585892], "stop_id": 4293210, "stop_desc": "AV LEON BLUM - 94016", "stop_name": "BLUM - BELGRAND"}, "geometry": {"type": "Point", "coordinates": [2.3367105749585892, 48.78985943459691]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6502bc2a4bd9e734a907d319ea6a274136fe2fac", "fields": {"departement": "94", "stop_lat": 48.779846859794795, "code_postal": "94038", "stop_lon": 2.337689877550507, "coord": [48.779846859794795, 2.337689877550507], "stop_id": 4293219, "stop_desc": "11 RUE DES JARDINS - 94038", "stop_name": "MAIRIE DE L'HAY-LES-ROSES"}, "geometry": {"type": "Point", "coordinates": [2.337689877550507, 48.779846859794795]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0d67dce904f4edb94990c882a62dbf6649cc5926", "fields": {"departement": "94", "stop_lat": 48.808895686141355, "code_postal": "94003", "stop_lon": 2.3385337926160976, "coord": [48.808895686141355, 2.3385337926160976], "stop_id": 4293234, "stop_desc": "FACE 54 R HENRI BARBUSSE - 94003", "stop_name": "HENRI BARBUSSE"}, "geometry": {"type": "Point", "coordinates": [2.3385337926160976, 48.808895686141355]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "24ed4a58930ead0762f61e2044e4935cd3f5b18f", "fields": {"departement": "94", "stop_lat": 48.80795157028177, "code_postal": "94037", "stop_lon": 2.3470791770842157, "coord": [48.80795157028177, 2.3470791770842157], "stop_id": 4294846, "stop_desc": "150 R GABRIEL PERI - 94037", "stop_name": "CITE DES H.B.M."}, "geometry": {"type": "Point", "coordinates": [2.3470791770842157, 48.80795157028177]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c798bd0abc67a722998fe1b1b98eeb91577c15b6", "fields": {"departement": "92", "stop_lat": 48.87962956937935, "code_postal": "92050", "stop_lon": 2.2002027861043563, "coord": [48.87962956937935, 2.2002027861043563], "stop_id": 4296818, "stop_desc": "RUE DE SAINT-CLOUD - 92050", "stop_name": "LES GIBETS"}, "geometry": {"type": "Point", "coordinates": [2.2002027861043563, 48.87962956937935]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c610519ae69c2bdcd854abafc14f98a4b41f1ed3", "fields": {"departement": "75", "stop_lat": 48.87900870722632, "code_postal": "75117", "stop_lon": 2.2945508340067544, "coord": [48.87900870722632, 2.2945508340067544], "stop_id": 4298516, "stop_desc": "FACE 1 AVENUE NIEL - 75117", "stop_name": "TERNES - MAC MAHON"}, "geometry": {"type": "Point", "coordinates": [2.2945508340067544, 48.87900870722632]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f0218f491501ea5e99a469c3465dced7b73f0301", "fields": {"departement": "91", "stop_lat": 48.71952362096611, "code_postal": "91377", "stop_lon": 2.265896864471809, "coord": [48.71952362096611, 2.265896864471809], "stop_id": 4314741, "stop_desc": "9 RUE AMPERE - 91377", "stop_name": "AMPERE SUD"}, "geometry": {"type": "Point", "coordinates": [2.265896864471809, 48.71952362096611]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7a38cdae0b7900ed26266a910a2c49a059275a48", "fields": {"departement": "91", "stop_lat": 48.72584541130804, "code_postal": "91377", "stop_lon": 2.2709964717305606, "coord": [48.72584541130804, 2.2709964717305606], "stop_id": 4314748, "stop_desc": "127 RUE DE PARIS - 91377", "stop_name": "LA TUILERIE"}, "geometry": {"type": "Point", "coordinates": [2.2709964717305606, 48.72584541130804]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "64bdfffb80aa33524cf3fea821aeb35a65a73a91", "fields": {"departement": "91", "stop_lat": 48.726816717655204, "code_postal": "91377", "stop_lon": 2.27201419235986, "coord": [48.726816717655204, 2.27201419235986], "stop_id": 4314749, "stop_desc": "FACE 125 RUE DE PARIS - 91377", "stop_name": "LA TUILERIE"}, "geometry": {"type": "Point", "coordinates": [2.27201419235986, 48.726816717655204]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1862807175e9a3167f4ad6958d18019766debd65", "fields": {"departement": "91", "stop_lat": 48.72795025712105, "code_postal": "91377", "stop_lon": 2.2738741077748967, "coord": [48.72795025712105, 2.2738741077748967], "stop_id": 4314750, "stop_desc": "RUE DU 8 MAI 1945 - 91377", "stop_name": "8 MAI 1945"}, "geometry": {"type": "Point", "coordinates": [2.2738741077748967, 48.72795025712105]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "df359011d6866a1e4cffab723ef78f541f7a7c88", "fields": {"departement": "91", "stop_lat": 48.728177760401586, "code_postal": "91377", "stop_lon": 2.27934917567897, "coord": [48.728177760401586, 2.27934917567897], "stop_id": 4314755, "stop_desc": "29 RUE DE LONGJUMEAU - 91377", "stop_name": "JEAN MERMOZ"}, "geometry": {"type": "Point", "coordinates": [2.27934917567897, 48.728177760401586]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bee465f7cbc146e7d71e3a4d7c31a26c2f0d06bf", "fields": {"departement": "91", "stop_lat": 48.727847083549705, "code_postal": "91377", "stop_lon": 2.2833711116416517, "coord": [48.727847083549705, 2.2833711116416517], "stop_id": 4314756, "stop_desc": "21 AVENUE NATIONALE - 91377", "stop_name": "AUSTRALIE"}, "geometry": {"type": "Point", "coordinates": [2.2833711116416517, 48.727847083549705]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2cf1fe7733d0692bcbcd80208446ea24f5364891", "fields": {"departement": "91", "stop_lat": 48.73172414014607, "code_postal": "91377", "stop_lon": 2.2906635223453393, "coord": [48.73172414014607, 2.2906635223453393], "stop_id": 4314766, "stop_desc": "PLACE SAINT EXUPERY - 91377", "stop_name": "MASSY-OPERA THEATRE"}, "geometry": {"type": "Point", "coordinates": [2.2906635223453393, 48.73172414014607]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "32b5fc43c7731a7d9a56d192167eb9057355f1e0", "fields": {"departement": "91", "stop_lat": 48.72269936030673, "code_postal": "91377", "stop_lon": 2.270783119401868, "coord": [48.72269936030673, 2.270783119401868], "stop_id": 4314777, "stop_desc": "6 RUE GALVANI - 91377", "stop_name": "GALVANI SUD"}, "geometry": {"type": "Point", "coordinates": [2.270783119401868, 48.72269936030673]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "510e5aba0eb1ab828757799a607c2ade307c1c26", "fields": {"departement": "91", "stop_lat": 48.72419948793552, "code_postal": "91377", "stop_lon": 2.2691373654110616, "coord": [48.72419948793552, 2.2691373654110616], "stop_id": 4314778, "stop_desc": "RUE GALVANI - 91377", "stop_name": "GALVANI NORD"}, "geometry": {"type": "Point", "coordinates": [2.2691373654110616, 48.72419948793552]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "22f0133fe89c6e8183f95a05043f262237aef964", "fields": {"departement": "91", "stop_lat": 48.72419031999736, "code_postal": "91377", "stop_lon": 2.2688249126725273, "coord": [48.72419031999736, 2.2688249126725273], "stop_id": 4314779, "stop_desc": "RUE GALVANI - 91377", "stop_name": "GALVANI NORD"}, "geometry": {"type": "Point", "coordinates": [2.2688249126725273, 48.72419031999736]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3d72c5c5c57f7ebe0b4e0e0b2abf5e6d78711784", "fields": {"departement": "91", "stop_lat": 48.72805807374259, "code_postal": "91377", "stop_lon": 2.2737924577619357, "coord": [48.72805807374259, 2.2737924577619357], "stop_id": 4314783, "stop_desc": "RUE DU 8 MAI 1945 - 91377", "stop_name": "8 MAI 1945"}, "geometry": {"type": "Point", "coordinates": [2.2737924577619357, 48.72805807374259]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b5cb72ac28fb4ad7cf164911eccad70628990c2e", "fields": {"departement": "94", "stop_lat": 48.80558194626264, "code_postal": "94041", "stop_lon": 2.3757889011211692, "coord": [48.80558194626264, 2.3757889011211692], "stop_id": 4677753, "stop_desc": "183 BOULEVARD DE STALINGRAD - 94041", "stop_name": "LA BRIQUETERIE"}, "geometry": {"type": "Point", "coordinates": [2.3757889011211692, 48.80558194626264]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "152644dd1b16d3be82ca83fd56166fc1c60f9876", "fields": {"departement": "94", "stop_lat": 48.79274353783585, "code_postal": "94081", "stop_lon": 2.3860363032250977, "coord": [48.79274353783585, 2.3860363032250977], "stop_id": 4677761, "stop_desc": "3 AVENUE EUGENE PELLETAN - 94081", "stop_name": "MUSEE MAC-VAL"}, "geometry": {"type": "Point", "coordinates": [2.3860363032250977, 48.79274353783585]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b2f84d8ff6d98ea8655567a4342497142bf4774f", "fields": {"departement": "94", "stop_lat": 48.79312091733187, "code_postal": "94081", "stop_lon": 2.386308726814493, "coord": [48.79312091733187, 2.386308726814493], "stop_id": 4677762, "stop_desc": "FACE 5 RUE EUGENE PELLETAN - 94081", "stop_name": "MUSEE MAC-VAL"}, "geometry": {"type": "Point", "coordinates": [2.386308726814493, 48.79312091733187]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "85454351a54b6cd7ceb1518a94235586286fa0e4", "fields": {"departement": "94", "stop_lat": 48.77366491253502, "code_postal": "94073", "stop_lon": 2.3992767882574992, "coord": [48.77366491253502, 2.3992767882574992], "stop_id": 4677771, "stop_desc": "1 BD DE STALINGRAD - 94073", "stop_name": "TROIS COMMUNES"}, "geometry": {"type": "Point", "coordinates": [2.3992767882574992, 48.77366491253502]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "21e562bbc342dd1a53b6add67fe7829a764e5695", "fields": {"departement": "94", "stop_lat": 48.75863110658494, "code_postal": "94022", "stop_lon": 2.409427476173478, "coord": [48.75863110658494, 2.409427476173478], "stop_id": 4677779, "stop_desc": "47 BIS AVENUE DE LA REPUBLIQUE - 94022", "stop_name": "PARMENTIER"}, "geometry": {"type": "Point", "coordinates": [2.409427476173478, 48.75863110658494]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "52f379d78949e74db3a21f3614c4e886fa9982f2", "fields": {"departement": "94", "stop_lat": 48.75593384837047, "code_postal": "94022", "stop_lon": 2.410755915003695, "coord": [48.75593384837047, 2.410755915003695], "stop_id": 4677780, "stop_desc": "20 AVENUE DE NEWBURN - 94022", "stop_name": "LAMARTINE"}, "geometry": {"type": "Point", "coordinates": [2.410755915003695, 48.75593384837047]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "07ff55b34b840cd0ae6f7eaa389fbf2825037186", "fields": {"departement": "94", "stop_lat": 48.750332280104146, "code_postal": "94054", "stop_lon": 2.413819843454324, "coord": [48.750332280104146, 2.413819843454324], "stop_id": 4677784, "stop_desc": "25 R JEAN MERMOZ - 94054", "stop_name": "JEAN MERMOZ"}, "geometry": {"type": "Point", "coordinates": [2.413819843454324, 48.750332280104146]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d8f7ce2e8e673735ffd8ffd59cd8b2b828c260d3", "fields": {"departement": "94", "stop_lat": 48.745606431933844, "code_postal": "94054", "stop_lon": 2.4107277200513724, "coord": [48.745606431933844, 2.4107277200513724], "stop_id": 4677788, "stop_desc": "VOI DES SAULES - 94054", "stop_name": "MARCEL CACHIN - VOIE DES SAULES"}, "geometry": {"type": "Point", "coordinates": [2.4107277200513724, 48.745606431933844]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "945d0f3025586aba2f317338a45f37b867ca4149", "fields": {"departement": "94", "stop_lat": 48.74457500601486, "code_postal": "94054", "stop_lon": 2.4070431683026823, "coord": [48.74457500601486, 2.4070431683026823], "stop_id": 4677791, "stop_desc": "58 AVENUE ADRIEN RAYNAL - 94054", "stop_name": "FER A CHEVAL"}, "geometry": {"type": "Point", "coordinates": [2.4070431683026823, 48.74457500601486]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f0f3ebbb444a07e60cdd730f1eee76e87a8ab320", "fields": {"departement": "75", "stop_lat": 48.83464479056905, "code_postal": "75116", "stop_lon": 2.256208516396553, "coord": [48.83464479056905, 2.256208516396553], "stop_id": 4687324, "stop_desc": "AVENUE FELIX D'HERELLE - 75116", "stop_name": "PIERRE DE COUBERTIN"}, "geometry": {"type": "Point", "coordinates": [2.256208516396553, 48.83464479056905]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1e3952e8b9a26ec4bc41e434f4f7692276c4ed6b", "fields": {"departement": "75", "stop_lat": 48.83488721393346, "code_postal": "75116", "stop_lon": 2.2558541631345435, "coord": [48.83488721393346, 2.2558541631345435], "stop_id": 4687325, "stop_desc": "7 AVENUE FELIX D'HERELLE - 75116", "stop_name": "PIERRE DE COUBERTIN"}, "geometry": {"type": "Point", "coordinates": [2.2558541631345435, 48.83488721393346]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2d206d13576ce747c0240781756ee44f48e512e5", "fields": {"departement": "92", "stop_lat": 48.83446630286203, "code_postal": "92012", "stop_lon": 2.25808756823335, "coord": [48.83446630286203, 2.25808756823335], "stop_id": 4687327, "stop_desc": "AVENUE LE JOUR SE LEVE - 92012", "stop_name": "ABEL GANCE"}, "geometry": {"type": "Point", "coordinates": [2.25808756823335, 48.83446630286203]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "236a8ee5c0dc3dc5b35190dac713454077cf5126", "fields": {"departement": "92", "stop_lat": 48.83369507930508, "code_postal": "92012", "stop_lon": 2.2607026510715507, "coord": [48.83369507930508, 2.2607026510715507], "stop_id": 4687328, "stop_desc": "1 QUAI DU POINT DU JOUR - 92012", "stop_name": "VOIE LACTEE"}, "geometry": {"type": "Point", "coordinates": [2.2607026510715507, 48.83369507930508]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7f2af9f56d42cb98f19736749d541e7664868102", "fields": {"departement": "92", "stop_lat": 48.827788312419415, "code_postal": "92040", "stop_lon": 2.272663177862002, "coord": [48.827788312419415, 2.272663177862002], "stop_id": 4687334, "stop_desc": "32 BOULEVARD DES FRERES VOISIN - 92040", "stop_name": "VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.272663177862002, 48.827788312419415]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dcf4ba61520c991af7b987bff0b45b343fad40b2", "fields": {"departement": "92", "stop_lat": 48.82444080124116, "code_postal": "92075", "stop_lon": 2.2823996840556604, "coord": [48.82444080124116, 2.2823996840556604], "stop_id": 4687339, "stop_desc": "40 BD DU LYCEE - 92075", "stop_name": "GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.2823996840556604, 48.82444080124116]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0ff3b750ffc20e8c98a56d3169bc0530669897e0", "fields": {"departement": "92", "stop_lat": 48.817754353454205, "code_postal": "92075", "stop_lon": 2.2832641746607196, "coord": [48.817754353454205, 2.2832641746607196], "stop_id": 4687344, "stop_desc": "FACE 3 RUE LARMEROUX - 92075", "stop_name": "RUE DE CHATILLON"}, "geometry": {"type": "Point", "coordinates": [2.2832641746607196, 48.817754353454205]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "df53b6a779db2e2b842b306e9401bfa4a9d3ac18", "fields": {"departement": "92", "stop_lat": 48.812949955838086, "code_postal": "92023", "stop_lon": 2.2732804214942113, "coord": [48.812949955838086, 2.2732804214942113], "stop_id": 4687350, "stop_desc": "17-19 RUE DE VANVES - 92023", "stop_name": "HEBERT - GARE"}, "geometry": {"type": "Point", "coordinates": [2.2732804214942113, 48.812949955838086]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "da3878f5501e88b3514d4780073203ad8ec61e4f", "fields": {"departement": "92", "stop_lat": 48.80150455495496, "code_postal": "92023", "stop_lon": 2.266328429226022, "coord": [48.80150455495496, 2.266328429226022], "stop_id": 4687359, "stop_desc": "5 RUE PAUL VAILLANT COUTURIER - 92023", "stop_name": "MARCHE DE CLAMART"}, "geometry": {"type": "Point", "coordinates": [2.266328429226022, 48.80150455495496]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e2b59274df00458e6377b765cabe7a9bf79ef2c1", "fields": {"departement": "92", "stop_lat": 48.80182791343605, "code_postal": "92023", "stop_lon": 2.265987844077671, "coord": [48.80182791343605, 2.265987844077671], "stop_id": 4687360, "stop_desc": "FACE 7 RUE PAUL VAILLANT COUTURIER - 92023", "stop_name": "MARCHE DE CLAMART"}, "geometry": {"type": "Point", "coordinates": [2.265987844077671, 48.80182791343605]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "70455e7ef14bfa5f66cc0d444a05c5fe87c3dcc1", "fields": {"departement": "92", "stop_lat": 48.78531651659945, "code_postal": "92023", "stop_lon": 2.2397461674974344, "coord": [48.78531651659945, 2.2397461674974344], "stop_id": 4687373, "stop_desc": "110 R DE LA PORTE DE TRIVAUX - 92023", "stop_name": "ILE DE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.2397461674974344, 48.78531651659945]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f24df8a710e6bcee42a8790be1749524be70d3d4", "fields": {"departement": "92", "stop_lat": 48.78551534747869, "code_postal": "92023", "stop_lon": 2.2410923396775755, "coord": [48.78551534747869, 2.2410923396775755], "stop_id": 4687374, "stop_desc": "RUE DE LA PORTE DE TRIVAUX - 92023", "stop_name": "ILE DE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.2410923396775755, 48.78551534747869]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "065b47c82b0fbd198b9a1327ee8afb548c1a9829", "fields": {"departement": "92", "stop_lat": 48.84104066858327, "code_postal": "92012", "stop_lon": 2.229415803041866, "coord": [48.84104066858327, 2.229415803041866], "stop_id": 4687379, "stop_desc": "188-190 RUE DE PARIS - 92012", "stop_name": "RHIN ET DANUBE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.229415803041866, 48.84104066858327]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "de587db260d7c01ebbe5006abbf64db4a400d339", "fields": {"departement": "95", "stop_lat": 49.00334228360203, "code_postal": "95585", "stop_lon": 2.376687491356626, "coord": [49.00334228360203, 2.376687491356626], "stop_id": 4695640, "stop_desc": "9 RUE ANDRE GRUNIG - 95585", "stop_name": "ECOLE JULES FERRY"}, "geometry": {"type": "Point", "coordinates": [2.376687491356626, 49.00334228360203]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c16db77dbb1e2f197345ed329d3b80018a9ed7db", "fields": {"departement": "95", "stop_lat": 49.00543684496062, "code_postal": "95585", "stop_lon": 2.374353347795506, "coord": [49.00543684496062, 2.374353347795506], "stop_id": 4695641, "stop_desc": "41 RUE DU FOUR DEFAIT - 95585", "stop_name": "CHAMP DE CHARTRES"}, "geometry": {"type": "Point", "coordinates": [2.374353347795506, 49.00543684496062]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "30ee7c0e43189cd2aab9641750eda10192a2f937", "fields": {"departement": "95", "stop_lat": 49.006632690879485, "code_postal": "95585", "stop_lon": 2.372141347510079, "coord": [49.006632690879485, 2.372141347510079], "stop_id": 4695642, "stop_desc": "FACE 75 RUE DES GOSSEROTS - 95585", "stop_name": "BEL AIR - GOSSEROTS"}, "geometry": {"type": "Point", "coordinates": [2.372141347510079, 49.006632690879485]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bced1dfc9c7ce91807094ac880f85d19fb8eda41", "fields": {"departement": "95", "stop_lat": 49.00456558843109, "code_postal": "95585", "stop_lon": 2.3729868154366365, "coord": [49.00456558843109, 2.3729868154366365], "stop_id": 4695643, "stop_desc": "33 RUE GABRIEL PERI - 95585", "stop_name": "CHAMP DE CHARTRES."}, "geometry": {"type": "Point", "coordinates": [2.3729868154366365, 49.00456558843109]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "23b09e3db6af3bc6d14a026521cc8086cfaf10dd", "fields": {"departement": "95", "stop_lat": 49.0020851548009, "code_postal": "95585", "stop_lon": 2.3736680224056275, "coord": [49.0020851548009, 2.3736680224056275], "stop_id": 4695644, "stop_desc": "FACE 18 RUE GABRIEL PERI - 95585", "stop_name": "ECOLE JULES FERRY."}, "geometry": {"type": "Point", "coordinates": [2.3736680224056275, 49.0020851548009]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fc4d2abc8a3d4958c19ddf174366478a2d521ba1", "fields": {"departement": "95", "stop_lat": 49.00213819553513, "code_postal": "95585", "stop_lon": 2.3764407214189807, "coord": [49.00213819553513, 2.3764407214189807], "stop_id": 4695659, "stop_desc": "12-14 AVENUE DES FAUVETTES - 95585", "stop_name": "AVENUE DU NID"}, "geometry": {"type": "Point", "coordinates": [2.3764407214189807, 49.00213819553513]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "391daa09794a74e06163a3a20b36b4443b7cf9e9", "fields": {"departement": "95", "stop_lat": 48.99857843547482, "code_postal": "95585", "stop_lon": 2.379838739646569, "coord": [48.99857843547482, 2.379838739646569], "stop_id": 4695661, "stop_desc": "1 PLACE DU SOUVENIR FRANCAIS - 95585", "stop_name": "PLACE DU SOUVENIR FRANCAIS."}, "geometry": {"type": "Point", "coordinates": [2.379838739646569, 48.99857843547482]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5f1285b3c5d5d1f99049c3cee6572b8934e4a5ef", "fields": {"departement": "95", "stop_lat": 49.00213819553513, "code_postal": "95585", "stop_lon": 2.3764407214189807, "coord": [49.00213819553513, 2.3764407214189807], "stop_id": 4695673, "stop_desc": "12-14 AVENUE DES FAUVETTES - 95585", "stop_name": "AVENUE DU NID"}, "geometry": {"type": "Point", "coordinates": [2.3764407214189807, 49.00213819553513]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "425d2a526b455b05609e848dc9b5963331df4d9e", "fields": {"departement": "93", "stop_lat": 48.87835546087665, "code_postal": "93045", "stop_lon": 2.410970358588144, "coord": [48.87835546087665, 2.410970358588144], "stop_id": 4705560, "stop_desc": "40 R DE PARIS - 93045", "stop_name": "LES BRUYERES"}, "geometry": {"type": "Point", "coordinates": [2.410970358588144, 48.87835546087665]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2ae9f92ad787693beed240585607c61ba33a770d", "fields": {"departement": "93", "stop_lat": 48.88341488530977, "code_postal": "93055", "stop_lon": 2.41161802978753, "coord": [48.88341488530977, 2.41161802978753], "stop_id": 4705561, "stop_desc": "77 RUE JULES AUFFRET - 93055", "stop_name": "CONVENTION"}, "geometry": {"type": "Point", "coordinates": [2.41161802978753, 48.88341488530977]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "11bf965c2c1bd3e148dd021654d1a0c6a8fad607", "fields": {"departement": "93", "stop_lat": 48.88733409643871, "code_postal": "93055", "stop_lon": 2.410356231754876, "coord": [48.88733409643871, 2.410356231754876], "stop_id": 4705564, "stop_desc": "59 RUE JULES AUFFRET - 93055", "stop_name": "MONTIGNY - MAISON DE RETRAITE"}, "geometry": {"type": "Point", "coordinates": [2.410356231754876, 48.88733409643871]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "73b4aefd9c637514922fe110b4defaceeb0dc2a5", "fields": {"departement": "93", "stop_lat": 48.89786081877813, "code_postal": "93055", "stop_lon": 2.4057365582595267, "coord": [48.89786081877813, 2.4057365582595267], "stop_id": 4705574, "stop_desc": "AVENUE DU GENERAL LECLERC - 93055", "stop_name": "DELIZY"}, "geometry": {"type": "Point", "coordinates": [2.4057365582595267, 48.89786081877813]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e55d53020d8849a521c8ab8910e8d012859421c9", "fields": {"departement": "93", "stop_lat": 48.896658925161226, "code_postal": "93055", "stop_lon": 2.4014549509994745, "coord": [48.896658925161226, 2.4014549509994745], "stop_id": 4705575, "stop_desc": "FACE 80 AVENUE DU GENERAL LECLERC - 93055", "stop_name": "PANTIN RER - MAIRIE"}, "geometry": {"type": "Point", "coordinates": [2.4014549509994745, 48.896658925161226]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "28f876fc80f689aecdcb3d2e77e1dc4c4e9d90e6", "fields": {"departement": "93", "stop_lat": 48.897271098289345, "code_postal": "93055", "stop_lon": 2.3994792442491883, "coord": [48.897271098289345, 2.3994792442491883], "stop_id": 4705578, "stop_desc": "13 AVENUE EDOUARD VAILLANT - 93055", "stop_name": "PANTIN RER - MAIRIE."}, "geometry": {"type": "Point", "coordinates": [2.3994792442491883, 48.897271098289345]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c498448112a3efc9307a57d5b601d9bd4754f14e", "fields": {"departement": "93", "stop_lat": 48.90152464089519, "code_postal": "93055", "stop_lon": 2.3942088019686834, "coord": [48.90152464089519, 2.3942088019686834], "stop_id": 4705581, "stop_desc": "42 AVENUE EDOUARD VAILLANT - 93055", "stop_name": "LA PEROUSE"}, "geometry": {"type": "Point", "coordinates": [2.3942088019686834, 48.90152464089519]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fb9fadfcc141bfd7204abaa4a3ce9bc0585f0c29", "fields": {"departement": "93", "stop_lat": 48.90319701064309, "code_postal": "93055", "stop_lon": 2.392574757954796, "coord": [48.90319701064309, 2.392574757954796], "stop_id": 4705583, "stop_desc": "80 AVENUE EDOUARD VAILLANT - 93055", "stop_name": "QUATRE CHEMINS - EDOUARD VAILLANT"}, "geometry": {"type": "Point", "coordinates": [2.392574757954796, 48.90319701064309]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "85ede9b713c06aa8ed7804bb5cc1ce03e9b0149e", "fields": {"departement": "93", "stop_lat": 48.90412310687165, "code_postal": "93001", "stop_lon": 2.3916487302155858, "coord": [48.90412310687165, 2.3916487302155858], "stop_id": 4705585, "stop_desc": "113 AVENUE DE LA REPUBLIQUE - 93001", "stop_name": "QUATRE CHEMINS - REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.3916487302155858, 48.90412310687165]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c020610e3f4a1b6d9a65a844b30ade5fbfcad31e", "fields": {"departement": "93", "stop_lat": 48.9146736626455, "code_postal": "93001", "stop_lon": 2.3921643172372513, "coord": [48.9146736626455, 2.3921643172372513], "stop_id": 4705592, "stop_desc": "0 R CHARLES TILLON - 93001", "stop_name": "MAISON DE RETRAITE"}, "geometry": {"type": "Point", "coordinates": [2.3921643172372513, 48.9146736626455]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e2dde4264f09c1dcc1f534c8e0b9a70877011217", "fields": {"departement": "93", "stop_lat": 48.917126840375, "code_postal": "93001", "stop_lon": 2.392753266432231, "coord": [48.917126840375, 2.392753266432231], "stop_id": 4705595, "stop_desc": "FACE 46 R CHARLES TILLON - 93001", "stop_name": "CIMETIERE - PONT BLANC"}, "geometry": {"type": "Point", "coordinates": [2.392753266432231, 48.917126840375]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7487eab43d6704d4b147cdcfd19f214cdc7b2dd3", "fields": {"departement": "93", "stop_lat": 48.923133690428365, "code_postal": "93027", "stop_lon": 2.3844953179804316, "coord": [48.923133690428365, 2.3844953179804316], "stop_id": 4705601, "stop_desc": "6 R SUZANNE MASSON - 93027", "stop_name": "LA COURNEUVE - AUBERVILLIERS RER"}, "geometry": {"type": "Point", "coordinates": [2.3844953179804316, 48.923133690428365]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4fadfec69906859ec9388cfdf9f1d35926e5301f", "fields": {"departement": "93", "stop_lat": 48.95439164186058, "code_postal": "93030", "stop_lon": 2.415349788191931, "coord": [48.95439164186058, 2.415349788191931], "stop_id": 4705620, "stop_desc": "FACE 29 RUE GEORGES GUYNEMER - 93030", "stop_name": "DUGNY - CENTRE VILLE"}, "geometry": {"type": "Point", "coordinates": [2.415349788191931, 48.95439164186058]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "90e3a930545ef3031768783edba0caa8e0428564", "fields": {"departement": "93", "stop_lat": 48.955938597089734, "code_postal": "93030", "stop_lon": 2.4134280015675635, "coord": [48.955938597089734, 2.4134280015675635], "stop_id": 4705621, "stop_desc": "FACE 9 RUE CHARLES GUENARD - 93030", "stop_name": "CITE DU MOULIN"}, "geometry": {"type": "Point", "coordinates": [2.4134280015675635, 48.955938597089734]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8d4a79ce6c35c267d46b4a40b625448703c5a321", "fields": {"departement": "93", "stop_lat": 48.953905794238224, "code_postal": "93030", "stop_lon": 2.4162087349141093, "coord": [48.953905794238224, 2.4162087349141093], "stop_id": 4705623, "stop_desc": "21 AVENUE LOUIS LARIVIERE - 93030", "stop_name": "GABRIEL PERI"}, "geometry": {"type": "Point", "coordinates": [2.4162087349141093, 48.953905794238224]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "99d61a41a3d7b1062bf5dbe00d823ef82e56845d", "fields": {"departement": "93", "stop_lat": 48.931754764816354, "code_postal": "93027", "stop_lon": 2.3984840487352446, "coord": [48.931754764816354, 2.3984840487352446], "stop_id": 4705624, "stop_desc": "59 RUE EDGAR QUINET - 93027", "stop_name": "JEAN MERMOZ - HENRI BARBUSSE"}, "geometry": {"type": "Point", "coordinates": [2.3984840487352446, 48.931754764816354]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a1e9070d5ea1b933f4d924969a6acc0906167f01", "fields": {"departement": "93", "stop_lat": 48.955938597089734, "code_postal": "93030", "stop_lon": 2.4134280015675635, "coord": [48.955938597089734, 2.4134280015675635], "stop_id": 4705631, "stop_desc": "FACE 9 RUE CHARLES GUENARD - 93030", "stop_name": "CITE DU MOULIN"}, "geometry": {"type": "Point", "coordinates": [2.4134280015675635, 48.955938597089734]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e44ec56cebd79564017664ffd4ca7ee161055101", "fields": {"departement": "93", "stop_lat": 48.9517037960367, "code_postal": "93030", "stop_lon": 2.416587439952859, "coord": [48.9517037960367, 2.416587439952859], "stop_id": 4705634, "stop_desc": "AVENUE LOUIS LARIVIERE - 93030", "stop_name": "PLACE DU 16 AOUT 1943"}, "geometry": {"type": "Point", "coordinates": [2.416587439952859, 48.9517037960367]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3f6afdbf2af3420de4498ece11bf23b42aa39c8d", "fields": {"departement": "93", "stop_lat": 48.92099148363308, "code_postal": "93001", "stop_lon": 2.392225562923133, "coord": [48.92099148363308, 2.392225562923133], "stop_id": 4705645, "stop_desc": "PETIT CHEMIN DU PONT BLANC - 93001", "stop_name": "PETIT CHEMIN DU PONT BLANC"}, "geometry": {"type": "Point", "coordinates": [2.392225562923133, 48.92099148363308]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5ffaec7d760371442775df19aa8c474518ae6be4", "fields": {"departement": "93", "stop_lat": 48.91883413026361, "code_postal": "93001", "stop_lon": 2.3932596449665913, "coord": [48.91883413026361, 2.3932596449665913], "stop_id": 4705646, "stop_desc": "FACE 84 RUE CHARLES TILLON - 93001", "stop_name": "DANIELLE CASANOVA - PONT BLANC"}, "geometry": {"type": "Point", "coordinates": [2.3932596449665913, 48.91883413026361]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "15085639a7d77c63e6426cd128bc859b63bcde52", "fields": {"departement": "93", "stop_lat": 48.90530105233507, "code_postal": "93001", "stop_lon": 2.3902321446836763, "coord": [48.90530105233507, 2.3902321446836763], "stop_id": 4705651, "stop_desc": "120 AVENUE DE LA REPUBLIQUE - 93001", "stop_name": "HOPITAL LA ROSERAIE"}, "geometry": {"type": "Point", "coordinates": [2.3902321446836763, 48.90530105233507]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a1f578b5387ceec173419145ece42b001da505d2", "fields": {"departement": "93", "stop_lat": 48.90399735605275, "code_postal": "93001", "stop_lon": 2.3914986400152225, "coord": [48.90399735605275, 2.3914986400152225], "stop_id": 4705652, "stop_desc": "144 AVENUE DE LA REPUBLIQUE - 93001", "stop_name": "QUATRE CHEMINS - REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.3914986400152225, 48.90399735605275]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "16baf19cdd78c0e5f3fd078d823df27f4685a739", "fields": {"departement": "93", "stop_lat": 48.89718117000412, "code_postal": "93055", "stop_lon": 2.3995881824305783, "coord": [48.89718117000412, 2.3995881824305783], "stop_id": 4705656, "stop_desc": "13 AVENUE EDOUARD VAILLANT - 93055", "stop_name": "PANTIN RER - MAIRIE"}, "geometry": {"type": "Point", "coordinates": [2.3995881824305783, 48.89718117000412]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c07de64b7ef48bc7df31a126d64919d02ca498c3", "fields": {"departement": "93", "stop_lat": 48.89648796341706, "code_postal": "93055", "stop_lon": 2.401836395676118, "coord": [48.89648796341706, 2.401836395676118], "stop_id": 4705657, "stop_desc": "AVENUE DU GENERAL LECLERC - 93055", "stop_name": "PANTIN RER - MAIRIE."}, "geometry": {"type": "Point", "coordinates": [2.401836395676118, 48.89648796341706]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "24a60574d938ac84455702aea5f38e3aa06671b5", "fields": {"departement": "93", "stop_lat": 48.89786081877813, "code_postal": "93055", "stop_lon": 2.4057365582595267, "coord": [48.89786081877813, 2.4057365582595267], "stop_id": 4705658, "stop_desc": "AVENUE DU GENERAL LECLERC - 93055", "stop_name": "DELIZY"}, "geometry": {"type": "Point", "coordinates": [2.4057365582595267, 48.89786081877813]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d270e0ef2275561ececaf63ab499d1884d817ad7", "fields": {"departement": "95", "stop_lat": 48.98924288195465, "code_postal": "95585", "stop_lon": 2.375953026331125, "coord": [48.98924288195465, 2.375953026331125], "stop_id": 4712395, "stop_desc": "BOULEVARD FRANCOIS MITTERRAND - 95585", "stop_name": "SOUS-PREFECTURE"}, "geometry": {"type": "Point", "coordinates": [2.375953026331125, 48.98924288195465]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4c8d2fdffb47b9ececab2807006e06f2900988d9", "fields": {"departement": "94", "stop_lat": 48.82916356574205, "code_postal": "94018", "stop_lon": 2.4015756371245263, "coord": [48.82916356574205, 2.4015756371245263], "stop_id": 4723808, "stop_desc": "183 RUE DE PARIS - 94018", "stop_name": "FELIX LANGLAIS"}, "geometry": {"type": "Point", "coordinates": [2.4015756371245263, 48.82916356574205]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a7aa4e26710be88d056e80a958e3f50c52047c84", "fields": {"departement": "94", "stop_lat": 48.822231640351454, "code_postal": "94069", "stop_lon": 2.4200645134930636, "coord": [48.822231640351454, 2.4200645134930636], "stop_id": 4723815, "stop_desc": "2 RUE VERDUN - 94069", "stop_name": "VERDUN"}, "geometry": {"type": "Point", "coordinates": [2.4200645134930636, 48.822231640351454]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "392b6d35bee47164df946d85a50d4285870dc8aa", "fields": {"departement": "94", "stop_lat": 48.81785051981082, "code_postal": "94069", "stop_lon": 2.425773698569028, "coord": [48.81785051981082, 2.425773698569028], "stop_id": 4723819, "stop_desc": "FACE 55BIS RUE DU MARECHAL LECLERC - 94069", "stop_name": "MAIRIE DE SAINT-MAURICE"}, "geometry": {"type": "Point", "coordinates": [2.425773698569028, 48.81785051981082]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e7a7e9db902db5ae9c8ae06a0bea274a905d3578", "fields": {"departement": "94", "stop_lat": 48.81796678050282, "code_postal": "94069", "stop_lon": 2.4265496652267307, "coord": [48.81796678050282, 2.4265496652267307], "stop_id": 4723820, "stop_desc": "55 RUE DU MARECHAL LECLERC - 94069", "stop_name": "MAIRIE DE SAINT-MAURICE"}, "geometry": {"type": "Point", "coordinates": [2.4265496652267307, 48.81796678050282]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0238d256ffc44242b5215b0a2b5e47f7a13f2cf7", "fields": {"departement": "94", "stop_lat": 48.81795512775568, "code_postal": "94069", "stop_lon": 2.430033797229572, "coord": [48.81795512775568, 2.430033797229572], "stop_id": 4723821, "stop_desc": "FACE 57 RUE DU MARECHAL LECLERC - 94069", "stop_name": "HOPITAL ESQUIROL"}, "geometry": {"type": "Point", "coordinates": [2.430033797229572, 48.81795512775568]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "414d4e6c55e1382e7890ef72a3e6cc155d90bb11", "fields": {"departement": "94", "stop_lat": 48.81804240272417, "code_postal": "94069", "stop_lon": 2.4333139614357617, "coord": [48.81804240272417, 2.4333139614357617], "stop_id": 4723823, "stop_desc": "44 RUE DU MARECHAL LECLERC - 94069", "stop_name": "PASSERELLE DE SAINT-MAURICE"}, "geometry": {"type": "Point", "coordinates": [2.4333139614357617, 48.81804240272417]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0557ab5ea7fe031e4ecbc3544c28f78fcec197a5", "fields": {"departement": "94", "stop_lat": 48.81783566839134, "code_postal": "94069", "stop_lon": 2.4438885020756413, "coord": [48.81783566839134, 2.4438885020756413], "stop_id": 4723827, "stop_desc": "134 RUE DU MARECHAL LECLERC - 94069", "stop_name": "PASSERELLE DE CHARENTONNEAU"}, "geometry": {"type": "Point", "coordinates": [2.4438885020756413, 48.81783566839134]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "617e1ab5ff8966cc87f79d03cb738b4be7a1bb09", "fields": {"departement": "94", "stop_lat": 48.81672811941364, "code_postal": "94069", "stop_lon": 2.4555769178378704, "coord": [48.81672811941364, 2.4555769178378704], "stop_id": 4723833, "stop_desc": "228 RUE DU MARECHAL LECLERC - 94069", "stop_name": "LES CANADIENS"}, "geometry": {"type": "Point", "coordinates": [2.4555769178378704, 48.81672811941364]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9c57d3ba1db8fe9d70698da3aa04bd6f636d5268", "fields": {"departement": "94", "stop_lat": 48.812726380577566, "code_postal": "94042", "stop_lon": 2.466332203413321, "coord": [48.812726380577566, 2.466332203413321], "stop_id": 4723839, "stop_desc": "8 RUE HENRI BARBUSSE - 94042", "stop_name": "VOISIN - REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.466332203413321, 48.812726380577566]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "72c06e0c3fb3d9cd205062df9ae7c4c123c5a07b", "fields": {"departement": "94", "stop_lat": 48.80686116187773, "code_postal": "94068", "stop_lon": 2.4710256670182504, "coord": [48.80686116187773, 2.4710256670182504], "stop_id": 4723845, "stop_desc": "14 RUE DU PONT DE CRETEIL - 94068", "stop_name": "SAINT-MAUR - CRETEIL RER"}, "geometry": {"type": "Point", "coordinates": [2.4710256670182504, 48.80686116187773]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d559b913e79d270cfd4b766e3ddef3df6b2919ed", "fields": {"departement": "94", "stop_lat": 48.80386787555055, "code_postal": "94068", "stop_lon": 2.4713308992074583, "coord": [48.80386787555055, 2.4713308992074583], "stop_id": 4723847, "stop_desc": "FACE 59 RUE DU PONT DE CRETEIL - 94068", "stop_name": "RUE DES REMISES"}, "geometry": {"type": "Point", "coordinates": [2.4713308992074583, 48.80386787555055]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "715b91882e8c621380fdb8f819af53a84f8ff22e", "fields": {"departement": "94", "stop_lat": 48.80437071624623, "code_postal": "94068", "stop_lon": 2.4717539967583275, "coord": [48.80437071624623, 2.4717539967583275], "stop_id": 4723848, "stop_desc": "61 RUE DU PONT DE CRETEIL - 94068", "stop_name": "RUE DES REMISES"}, "geometry": {"type": "Point", "coordinates": [2.4717539967583275, 48.80437071624623]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f9b390b07b427cf9d4d0c91000c984161d64f61a", "fields": {"departement": "94", "stop_lat": 48.80093815541192, "code_postal": "94068", "stop_lon": 2.471051223419979, "coord": [48.80093815541192, 2.471051223419979], "stop_id": 4723849, "stop_desc": "RUE DU CHEMIN VERT - 94068", "stop_name": "CHEMIN VERT"}, "geometry": {"type": "Point", "coordinates": [2.471051223419979, 48.80093815541192]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f117e3bad193d1cda8d99aa621b1182849695bf8", "fields": {"departement": "94", "stop_lat": 48.79642046203381, "code_postal": "94068", "stop_lon": 2.476100395803062, "coord": [48.79642046203381, 2.476100395803062], "stop_id": 4723853, "stop_desc": "35 BOULEVARD DU GENERAL GIRAUD - 94068", "stop_name": "BEAUJEU"}, "geometry": {"type": "Point", "coordinates": [2.476100395803062, 48.79642046203381]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5755cbb6b5f81d5d3bdd5a67c3e23d29b7f43101", "fields": {"departement": "94", "stop_lat": 48.787538805050225, "code_postal": "94068", "stop_lon": 2.4919638022374393, "coord": [48.787538805050225, 2.4919638022374393], "stop_id": 4723862, "stop_desc": "179 BIS PLACE DES CORNEILLES - 94068", "stop_name": "CORNEILLES"}, "geometry": {"type": "Point", "coordinates": [2.4919638022374393, 48.787538805050225]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f4faedc79bd2648251805b26f897a8244b8e271a", "fields": {"departement": "94", "stop_lat": 48.78588192622703, "code_postal": "94068", "stop_lon": 2.4943255420261448, "coord": [48.78588192622703, 2.4943255420261448], "stop_id": 4723863, "stop_desc": "FACE 77 AVENUE RASPAIL - 94068", "stop_name": "ALMA"}, "geometry": {"type": "Point", "coordinates": [2.4943255420261448, 48.78588192622703]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "901ed5f61b15c5bdee14fa60515f68637cf4db57", "fields": {"departement": "94", "stop_lat": 48.787674731845975, "code_postal": "94068", "stop_lon": 2.4979083039361076, "coord": [48.787674731845975, 2.4979083039361076], "stop_id": 4723866, "stop_desc": "55 AVENUE DES PERDRIX - 94068", "stop_name": "SORBIERS"}, "geometry": {"type": "Point", "coordinates": [2.4979083039361076, 48.787674731845975]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8337d9b6a464f13d761cc3651b58053e3194ba40", "fields": {"departement": "94", "stop_lat": 48.791008619456996, "code_postal": "94068", "stop_lon": 2.504883316430706, "coord": [48.791008619456996, 2.504883316430706], "stop_id": 4723870, "stop_desc": "RUE CHEVALIER - 94068", "stop_name": "AVENUE DE BONNEUIL"}, "geometry": {"type": "Point", "coordinates": [2.504883316430706, 48.791008619456996]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "91eb1b94916fede54970e7d7a7e79a995d6c75db", "fields": {"departement": "94", "stop_lat": 48.7952190773792, "code_postal": "94068", "stop_lon": 2.514446939968507, "coord": [48.7952190773792, 2.514446939968507], "stop_id": 4723876, "stop_desc": "FACE 8 AVENUE DU MESNIL - 94068", "stop_name": "LA VARENNE-CHENNEVIERES RER"}, "geometry": {"type": "Point", "coordinates": [2.514446939968507, 48.7952190773792]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a86e8a6ae42368b20a815ede9ead5a9b250f52eb", "fields": {"departement": "94", "stop_lat": 48.79678115320149, "code_postal": "94068", "stop_lon": 2.5156630660123462, "coord": [48.79678115320149, 2.5156630660123462], "stop_id": 4723878, "stop_desc": "31 AVENUE DU MESNIL - 94068", "stop_name": "CAPITAINE CHARTON"}, "geometry": {"type": "Point", "coordinates": [2.5156630660123462, 48.79678115320149]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8064f14506573b68561d9ec7c30f56f587502f39", "fields": {"departement": "94", "stop_lat": 48.80095609056281, "code_postal": "94068", "stop_lon": 2.5185889970595916, "coord": [48.80095609056281, 2.5185889970595916], "stop_id": 4723880, "stop_desc": "1 AVENUE RAYMOND POINCARE - 94068", "stop_name": "CHARLES PEGUY"}, "geometry": {"type": "Point", "coordinates": [2.5185889970595916, 48.80095609056281]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b3c04f3b173c06d2defc9ed2a074c6094ee464fb", "fields": {"departement": "94", "stop_lat": 48.806870463392045, "code_postal": "94068", "stop_lon": 2.5123367871767623, "coord": [48.806870463392045, 2.5123367871767623], "stop_id": 4723887, "stop_desc": "12 AVENUE DU 11 NOVEMBRE - 94068", "stop_name": "ALEXANDRE DUMAS"}, "geometry": {"type": "Point", "coordinates": [2.5123367871767623, 48.806870463392045]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b96d2591a64b02e78868c15133049ae5e38d2291", "fields": {"departement": "94", "stop_lat": 48.790515956138684, "code_postal": "94068", "stop_lon": 2.509996379311157, "coord": [48.790515956138684, 2.509996379311157], "stop_id": 4723889, "stop_desc": "4 RUE ARAGO - 94068", "stop_name": "ARAGO"}, "geometry": {"type": "Point", "coordinates": [2.509996379311157, 48.790515956138684]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5fe124ce051d270475c4449160686d5e3ffb6597", "fields": {"departement": "94", "stop_lat": 48.78988273218762, "code_postal": "94068", "stop_lon": 2.4864345150389475, "coord": [48.78988273218762, 2.4864345150389475], "stop_id": 4723890, "stop_desc": "129 BOULEVARD DU GENERAL GIRAUD - 94068", "stop_name": "GUYNEMER"}, "geometry": {"type": "Point", "coordinates": [2.4864345150389475, 48.78988273218762]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8f99f7651225a4fa71aae63ea208411dba91657c", "fields": {"departement": "94", "stop_lat": 48.79207386657092, "code_postal": "94068", "stop_lon": 2.480686655615311, "coord": [48.79207386657092, 2.480686655615311], "stop_id": 4723891, "stop_desc": "91 BOULEVARD DU GENERAL GIRAUD - 94068", "stop_name": "BOURBAKI"}, "geometry": {"type": "Point", "coordinates": [2.480686655615311, 48.79207386657092]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a64154b782926af9751a16824cfbaa966fd7fbd6", "fields": {"departement": "94", "stop_lat": 48.821606439542855, "code_postal": "94018", "stop_lon": 2.4141972075539684, "coord": [48.821606439542855, 2.4141972075539684], "stop_id": 4723894, "stop_desc": "RUE DE LA REPUBLIQUE - 94018", "stop_name": "CHARENTON-ECOLES"}, "geometry": {"type": "Point", "coordinates": [2.4141972075539684, 48.821606439542855]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a4b05349786e7eddf349624aa8e671947c230dc1", "fields": {"departement": "75", "stop_lat": 48.83959225019507, "code_postal": "75115", "stop_lon": 2.301677023842893, "coord": [48.83959225019507, 2.301677023842893], "stop_id": 4726699, "stop_desc": "FACE 252 RUE DE VAUGIRARD - 75115", "stop_name": "VAUGIRARD - FAVORITES"}, "geometry": {"type": "Point", "coordinates": [2.301677023842893, 48.83959225019507]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e4aac5f43b67281d9db9571c9cba0a3d797efc96", "fields": {"departement": "75", "stop_lat": 48.85826452640826, "code_postal": "75106", "stop_lon": 2.333713341644251, "coord": [48.85826452640826, 2.333713341644251], "stop_id": 4726711, "stop_desc": "FACE 21 QUAI MALAQUAIS - 75106", "stop_name": "PONT DU CARROUSEL - QUAI VOLTAIRE"}, "geometry": {"type": "Point", "coordinates": [2.333713341644251, 48.85826452640826]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f0048a68387e7223a8ff2ea7b06f48c16fbd261b", "fields": {"departement": "75", "stop_lat": 48.850979405056876, "code_postal": "75116", "stop_lon": 2.2788307762199547, "coord": [48.850979405056876, 2.2788307762199547], "stop_id": 4726717, "stop_desc": "7 RUE MAURICE BOURDET - 75116", "stop_name": "PONT DE GRENELLE - MAURICE BOURDET"}, "geometry": {"type": "Point", "coordinates": [2.2788307762199547, 48.850979405056876]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "677171eddc1a4cc967d86f310156c016f5799b1e", "fields": {"departement": "75", "stop_lat": 48.84634523535695, "code_postal": "75115", "stop_lon": 2.2861757799721945, "coord": [48.84634523535695, 2.2861757799721945], "stop_id": 4726719, "stop_desc": "40 RUE DES ENTREPRENEURS - 75115", "stop_name": "CHARLES MICHELS"}, "geometry": {"type": "Point", "coordinates": [2.2861757799721945, 48.84634523535695]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b43465983b6bba8e216e33f774508a18f0097c14", "fields": {"departement": "75", "stop_lat": 48.85289907507759, "code_postal": "75106", "stop_lon": 2.336560105706197, "coord": [48.85289907507759, 2.336560105706197], "stop_id": 4726735, "stop_desc": "125 BOULEVARD SAINT-GERMAIN - 75106", "stop_name": "SEINE - BUCI"}, "geometry": {"type": "Point", "coordinates": [2.336560105706197, 48.85289907507759]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6a59493fa7a236432f396886404779c823b0b55c", "fields": {"departement": "75", "stop_lat": 48.88104905742808, "code_postal": "75117", "stop_lon": 2.2952304795629583, "coord": [48.88104905742808, 2.2952304795629583], "stop_id": 4726745, "stop_desc": "25 AVENUE NIEL - 75117", "stop_name": "PIERRE DEMOURS"}, "geometry": {"type": "Point", "coordinates": [2.2952304795629583, 48.88104905742808]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f30f4d51c08c645603be5aa3635e6484d22652f3", "fields": {"departement": "75", "stop_lat": 48.87899060028815, "code_postal": "75117", "stop_lon": 2.2941829473245234, "coord": [48.87899060028815, 2.2941829473245234], "stop_id": 4726746, "stop_desc": "1 AVENUE NIEL - 75117", "stop_name": "TERNES - MAC MAHON"}, "geometry": {"type": "Point", "coordinates": [2.2941829473245234, 48.87899060028815]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cd69414d66df0770417be236eb6a1bc0a596c4af", "fields": {"departement": "75", "stop_lat": 48.86481072678524, "code_postal": "75116", "stop_lon": 2.300515452987258, "coord": [48.86481072678524, 2.300515452987258], "stop_id": 4726751, "stop_desc": "1 AVENUE DU PRESIDENT WILSON - 75116", "stop_name": "ALMA - MARCEAU"}, "geometry": {"type": "Point", "coordinates": [2.300515452987258, 48.86481072678524]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2e9d1399fb820b3dabe2ad74622f7da5c5e95d1e", "fields": {"departement": "75", "stop_lat": 48.84195996643212, "code_postal": "75115", "stop_lon": 2.3194990816420824, "coord": [48.84195996643212, 2.3194990816420824], "stop_id": 4726763, "stop_desc": "8-10 BOULEVARD DE VAUGIRARD - 75115", "stop_name": "GARE MONTPARNASSE"}, "geometry": {"type": "Point", "coordinates": [2.3194990816420824, 48.84195996643212]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "74eee355c2358ff2f4f626871b080d93b5bd5749", "fields": {"departement": "75", "stop_lat": 48.86740438643242, "code_postal": "75102", "stop_lon": 2.3465863945789227, "coord": [48.86740438643242, 2.3465863945789227], "stop_id": 4726926, "stop_desc": "91 RUE REAUMUR - 75102", "stop_name": "SENTIER"}, "geometry": {"type": "Point", "coordinates": [2.3465863945789227, 48.86740438643242]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "682f5a2600b063c1416846e53165c285b10a2d42", "fields": {"departement": "75", "stop_lat": 48.86191877949409, "code_postal": "75103", "stop_lon": 2.3668405747099737, "coord": [48.86191877949409, 2.3668405747099737], "stop_id": 4726934, "stop_desc": "11 BOULEVARD DES FILLES DU CALVAIRE - 75103", "stop_name": "OBERKAMPF - FILLES DU CALVAIRE"}, "geometry": {"type": "Point", "coordinates": [2.3668405747099737, 48.86191877949409]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6bbdd98abab97ec5a7f2fe668b257ec99eacf5ea", "fields": {"departement": "75", "stop_lat": 48.85385657226886, "code_postal": "75104", "stop_lon": 2.3687426889970005, "coord": [48.85385657226886, 2.3687426889970005], "stop_id": 4726938, "stop_desc": "7 BOULEVARD BEAUMARCHAIS - 75104", "stop_name": "BASTILLE - BEAUMARCHAIS"}, "geometry": {"type": "Point", "coordinates": [2.3687426889970005, 48.85385657226886]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ace049a1a72ff6c014ac6d29dc01c2b9e29f9026", "fields": {"departement": "75", "stop_lat": 48.84369043264488, "code_postal": "75112", "stop_lon": 2.373284500119991, "coord": [48.84369043264488, 2.373284500119991], "stop_id": 4726945, "stop_desc": "179 RUE DE BERCY - 75112", "stop_name": "GARE DE LYON"}, "geometry": {"type": "Point", "coordinates": [2.373284500119991, 48.84369043264488]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9320b0c3295b9250db39eb413aa727642a99c168", "fields": {"departement": "75", "stop_lat": 48.856022593043754, "code_postal": "75111", "stop_lon": 2.368566944738585, "coord": [48.856022593043754, 2.368566944738585], "stop_id": 4726950, "stop_desc": "32 BOULEVARD BEAUMARCHAIS - 75111", "stop_name": "PASTEUR - WAGNER"}, "geometry": {"type": "Point", "coordinates": [2.368566944738585, 48.856022593043754]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c4857ea7bb5089c6fd29aa7062bb9ee05a1d6eec", "fields": {"departement": "75", "stop_lat": 48.857271920933975, "code_postal": "75111", "stop_lon": 2.368281673209091, "coord": [48.857271920933975, 2.368281673209091], "stop_id": 4726951, "stop_desc": "50 BOULEVARD BEAUMARCHAIS - 75111", "stop_name": "SAINT-GILLES - CHEMIN VERT"}, "geometry": {"type": "Point", "coordinates": [2.368281673209091, 48.857271920933975]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7d9d6697f17e8b1115062d276db3c0b410344145", "fields": {"departement": "75", "stop_lat": 48.86270065196884, "code_postal": "75111", "stop_lon": 2.3669636161395187, "coord": [48.86270065196884, 2.3669636161395187], "stop_id": 4726953, "stop_desc": "20 BOULEVARD DES FILLES DU CALVAIRES - 75111", "stop_name": "OBERKAMPF - FILLES DU CALVAIRE"}, "geometry": {"type": "Point", "coordinates": [2.3669636161395187, 48.86270065196884]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "13f1e81799781edbd12fa3c3bffa04cc3cef7d0a", "fields": {"departement": "75", "stop_lat": 48.869488683314614, "code_postal": "75110", "stop_lon": 2.3536846061068, "coord": [48.869488683314614, 2.3536846061068], "stop_id": 4726958, "stop_desc": "12-14 BOULEVARD BONNE NOUVELLE - 75110", "stop_name": "PORTE SAINT-DENIS"}, "geometry": {"type": "Point", "coordinates": [2.3536846061068, 48.869488683314614]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "83fa61d6ce1733929b9120e6b71ba66d1f6714c9", "fields": {"departement": "75", "stop_lat": 48.87143107549418, "code_postal": "75109", "stop_lon": 2.3362192580847188, "coord": [48.87143107549418, 2.3362192580847188], "stop_id": 4726962, "stop_desc": "26 BOULEVARD DES ITALIENS - 75109", "stop_name": "CHOISEUL"}, "geometry": {"type": "Point", "coordinates": [2.3362192580847188, 48.87143107549418]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b9a7d550e47c5c01dd33c9c1807d93e2102fb649", "fields": {"departement": "94", "stop_lat": 48.82310543004951, "code_postal": "94018", "stop_lon": 2.402412030293493, "coord": [48.82310543004951, 2.402412030293493], "stop_id": 5325167, "stop_desc": "13 RUE DE L'ARCADE - 94018", "stop_name": "PONT NELSON MANDELA - RIVE DROITE"}, "geometry": {"type": "Point", "coordinates": [2.402412030293493, 48.82310543004951]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "65a4995d0aa635979e2fed06e6f9d15c780276f5", "fields": {"departement": "75", "stop_lat": 48.82179239591537, "code_postal": "75114", "stop_lon": 2.324419539244177, "coord": [48.82179239591537, 2.324419539244177], "stop_id": 5325170, "stop_desc": "SQUARE DU SERMENT DE KOUFRA - 75114", "stop_name": "PORTE D'ORLEANS-METRO"}, "geometry": {"type": "Point", "coordinates": [2.324419539244177, 48.82179239591537]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e7fd679fe6d8b16a622aa31fa74bc152a6e821f0", "fields": {"departement": "93", "stop_lat": 48.90697171897168, "code_postal": "93001", "stop_lon": 2.3670026351704965, "coord": [48.90697171897168, 2.3670026351704965], "stop_id": 5355360, "stop_desc": "0 R WALDECK ROCHET - 93001", "stop_name": "FRONT POPULAIRE-GARDINOUX"}, "geometry": {"type": "Point", "coordinates": [2.3670026351704965, 48.90697171897168]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e23083c8bddd7554193913c2f15d69f6c084383e", "fields": {"departement": "93", "stop_lat": 48.91528499578044, "code_postal": "93066", "stop_lon": 2.3658892956966664, "coord": [48.91528499578044, 2.3658892956966664], "stop_id": 5355367, "stop_desc": "15 RUE DU LANDY - 93066", "stop_name": "MURGER"}, "geometry": {"type": "Point", "coordinates": [2.3658892956966664, 48.91528499578044]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "53acef484a9a6324dcf2ff23e60941ae69c27ca1", "fields": {"departement": "93", "stop_lat": 48.9179746055291, "code_postal": "93066", "stop_lon": 2.35221363561536, "coord": [48.9179746055291, 2.35221363561536], "stop_id": 5355374, "stop_desc": "FACE 19 R DES CHEMINOTS - 93066", "stop_name": "STADE DE FRANCE - SAINT-DENIS RER"}, "geometry": {"type": "Point", "coordinates": [2.35221363561536, 48.9179746055291]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "50f9acc36370433794c54c2d8bb08be6acda787c", "fields": {"departement": "93", "stop_lat": 48.9155480488809, "code_postal": "93066", "stop_lon": 2.3527583588299725, "coord": [48.9155480488809, 2.3527583588299725], "stop_id": 5355377, "stop_desc": "7 R DES CHEMINOTS - 93066", "stop_name": "LANDY - CHEMINOTS"}, "geometry": {"type": "Point", "coordinates": [2.3527583588299725, 48.9155480488809]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a97bd528a3bfcad639e55ac8fa1cdba0bb2df75c", "fields": {"departement": "93", "stop_lat": 48.920024562446784, "code_postal": "93070", "stop_lon": 2.335631906375853, "coord": [48.920024562446784, 2.335631906375853], "stop_id": 5355387, "stop_desc": "90 R DE SAINT-DENIS - 93070", "stop_name": "RUE NICOLAU"}, "geometry": {"type": "Point", "coordinates": [2.335631906375853, 48.920024562446784]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5cf638cdea5e9372a964bf90c1a99abec9f44b70", "fields": {"departement": "93", "stop_lat": 48.91758896938038, "code_postal": "93070", "stop_lon": 2.3315956863449316, "coord": [48.91758896938038, 2.3315956863449316], "stop_id": 5355388, "stop_desc": "2 RUE DU LANDY - 93070", "stop_name": "QUAI DE SEINE"}, "geometry": {"type": "Point", "coordinates": [2.3315956863449316, 48.91758896938038]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a58711bd25abda3322f37e06ec13518421890c58", "fields": {"departement": "93", "stop_lat": 48.91851469557598, "code_postal": "93070", "stop_lon": 2.333259223565405, "coord": [48.91851469557598, 2.333259223565405], "stop_id": 5355389, "stop_desc": "60 RUE DE SAINT-DENIS - 93070", "stop_name": "QUAI DE SEINE"}, "geometry": {"type": "Point", "coordinates": [2.333259223565405, 48.91851469557598]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "de9773f95c7125d791d2772a72ad198f7cc0e591", "fields": {"departement": "93", "stop_lat": 48.918397860710186, "code_postal": "93070", "stop_lon": 2.333136505433718, "coord": [48.918397860710186, 2.333136505433718], "stop_id": 5355390, "stop_desc": "60 RUE DE SAINT-DENIS - 93070", "stop_name": "QUAI DE SEINE."}, "geometry": {"type": "Point", "coordinates": [2.333136505433718, 48.918397860710186]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4c0dbdcbcf3209023c9028afaf45941ac316b6dc", "fields": {"departement": "93", "stop_lat": 48.91237315845954, "code_postal": "93066", "stop_lon": 2.3660785728934317, "coord": [48.91237315845954, 2.3660785728934317], "stop_id": 5355391, "stop_desc": "19 RUE DES FILLETTES - 93066", "stop_name": "SAINT-GOBAIN"}, "geometry": {"type": "Point", "coordinates": [2.3660785728934317, 48.91237315845954]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "117e4b3d54049cfcaaf288c771a56413c633f687", "fields": {"departement": "93", "stop_lat": 48.91090833219724, "code_postal": "93066", "stop_lon": 2.3658323390749714, "coord": [48.91090833219724, 2.3658323390749714], "stop_id": 5355392, "stop_desc": "RUE DES FILLETTES - 93066", "stop_name": "LA MONTJOIE - GERMAINE TILLION"}, "geometry": {"type": "Point", "coordinates": [2.3658323390749714, 48.91090833219724]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e8aeceb5c64cd7e2e176c01ee0330c7f9c3288e0", "fields": {"departement": "93", "stop_lat": 48.90679037909738, "code_postal": "93001", "stop_lon": 2.3728375814359004, "coord": [48.90679037909738, 2.3728375814359004], "stop_id": 5355394, "stop_desc": "FACE 43 RUE DE LA HAIE COQ - 93001", "stop_name": "RUE DE LA HAIE-COQ"}, "geometry": {"type": "Point", "coordinates": [2.3728375814359004, 48.90679037909738]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d1f3dca68537c7639824db198fa31a32c91ba2d7", "fields": {"departement": "92", "stop_lat": 48.78365354917881, "code_postal": "92032", "stop_lon": 2.2812186713823306, "coord": [48.78365354917881, 2.2812186713823306], "stop_id": 5370696, "stop_desc": "181 AVENUE DE LA RESISTANCE - 92032", "stop_name": "CARREFOUR DES MOUILLEBOEUFS"}, "geometry": {"type": "Point", "coordinates": [2.2812186713823306, 48.78365354917881]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "99bc08851f56625eafd863a9dfcf2cef8f793cad", "fields": {"departement": "92", "stop_lat": 48.79101633072165, "code_postal": "92032", "stop_lon": 2.2848699080951174, "coord": [48.79101633072165, 2.2848699080951174], "stop_id": 5370701, "stop_desc": "FACE 32 RUE JEAN JAURES - 92032", "stop_name": "CARNOT - JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.2848699080951174, 48.79101633072165]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3278b58b4bfcf62a871d48e6d97938134ffd7046", "fields": {"departement": "92", "stop_lat": 48.796274445962815, "code_postal": "92032", "stop_lon": 2.285327149411923, "coord": [48.796274445962815, 2.285327149411923], "stop_id": 5370704, "stop_desc": "148 RUE BOUCICAUT - 92032", "stop_name": "LE PLATEAU"}, "geometry": {"type": "Point", "coordinates": [2.285327149411923, 48.796274445962815]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3b2539e7aa4bb108a4d5c2789c40d50dc816a375", "fields": {"departement": "92", "stop_lat": 48.79971713568461, "code_postal": "92020", "stop_lon": 2.2861128071739714, "coord": [48.79971713568461, 2.2861128071739714], "stop_id": 5370706, "stop_desc": "3 RUE D'ESTIENNE D'ORVES - 92020", "stop_name": "D'ESTIENNE D'ORVES - DIVISION LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.2861128071739714, 48.79971713568461]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "95ae636a1e549939551eb36405659eaa12a5b52a", "fields": {"departement": "92", "stop_lat": 48.80832006340144, "code_postal": "92020", "stop_lon": 2.289955237180157, "coord": [48.80832006340144, 2.289955237180157], "stop_id": 5370710, "stop_desc": "FACE 55 R MARCELIN BERTHELOT - 92020", "stop_name": "JEAN MERMOZ"}, "geometry": {"type": "Point", "coordinates": [2.289955237180157, 48.80832006340144]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "18de385b7f297549368fdf2927cf3aa503b5bd6c", "fields": {"departement": "94", "stop_lat": 48.75280986245938, "code_postal": "94065", "stop_lon": 2.3515000359753047, "coord": [48.75280986245938, 2.3515000359753047], "stop_id": 5408981, "stop_desc": "RUE DE LA VANNE - 94065", "stop_name": "LE STADE"}, "geometry": {"type": "Point", "coordinates": [2.3515000359753047, 48.75280986245938]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e446b584136a47da72fc8faab17644279c4c822e", "fields": {"departement": "94", "stop_lat": 48.8255747954595, "code_postal": "94018", "stop_lon": 2.406389823927422, "coord": [48.8255747954595, 2.406389823927422], "stop_id": 5411275, "stop_desc": "FACE 16 AVENUE DE LA LIBERTE - 94018", "stop_name": "LIBERTE"}, "geometry": {"type": "Point", "coordinates": [2.406389823927422, 48.8255747954595]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5dbbac95b23c630732c4606b4291468acfd1fdfe", "fields": {"departement": "92", "stop_lat": 48.829986868403815, "code_postal": "92012", "stop_lon": 2.2304597586909325, "coord": [48.829986868403815, 2.2304597586909325], "stop_id": 5419721, "stop_desc": "AVENUE DU GENERAL LECLERC - 92012", "stop_name": "PONT DE SEVRES"}, "geometry": {"type": "Point", "coordinates": [2.2304597586909325, 48.829986868403815]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5ecf3a723d896383cf8eb7c8451090850b68b370", "fields": {"departement": "92", "stop_lat": 48.829079179722584, "code_postal": "92012", "stop_lon": 2.2305296911160575, "coord": [48.829079179722584, 2.2305296911160575], "stop_id": 5419722, "stop_desc": "PISTE GARE ROUTIERE - 92012", "stop_name": "PONT DE SEVRES"}, "geometry": {"type": "Point", "coordinates": [2.2305296911160575, 48.829079179722584]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "758a97877fb7b4948d2176f5787b12222e7ede7e", "fields": {"departement": "92", "stop_lat": 48.90075212578295, "code_postal": "92044", "stop_lon": 2.3054519129764897, "coord": [48.90075212578295, 2.3054519129764897], "stop_id": 5419724, "stop_desc": "51 BOULEVARD JEAN JAURES - 92044", "stop_name": "JAURES - BARBUSSE"}, "geometry": {"type": "Point", "coordinates": [2.3054519129764897, 48.90075212578295]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3edac601787069968722ae4dd1515a8d5a6792ec", "fields": {"departement": "93", "stop_lat": 48.96488132742599, "code_postal": "93059", "stop_lon": 2.3729321174174043, "coord": [48.96488132742599, 2.3729321174174043], "stop_id": 5423650, "stop_desc": "RUE PARMENTIER - 93059", "stop_name": "GARE DE PIERREFITTE - STAINS RER"}, "geometry": {"type": "Point", "coordinates": [2.3729321174174043, 48.96488132742599]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f5dbd1515ada5f9647ba814ab790cbc27a2d6991", "fields": {"departement": "92", "stop_lat": 48.810903650071864, "code_postal": "92020", "stop_lon": 2.301723900846867, "coord": [48.810903650071864, 2.301723900846867], "stop_id": 5423657, "stop_desc": "PISTE GARE ROUTIERE - 92020", "stop_name": "CHATILLON - MONTROUGE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.301723900846867, 48.810903650071864]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9b14a676153671082e11b704d0a72ab86fe33305", "fields": {"departement": "92", "stop_lat": 48.8020850518021, "code_postal": "92020", "stop_lon": 2.2968046352222333, "coord": [48.8020850518021, 2.2968046352222333], "stop_id": 5423663, "stop_desc": "RUE PERROTIN - 92020", "stop_name": "PERROTIN"}, "geometry": {"type": "Point", "coordinates": [2.2968046352222333, 48.8020850518021]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "260e2c79e5138f9e696eb49ac1350f5e143ceb36", "fields": {"departement": "92", "stop_lat": 48.79971713568461, "code_postal": "92020", "stop_lon": 2.2861128071739714, "coord": [48.79971713568461, 2.2861128071739714], "stop_id": 5423670, "stop_desc": "3 RUE D'ESTIENNE D'ORVES - 92020", "stop_name": "D'ESTIENNE D'ORVES - DIVISION LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.2861128071739714, 48.79971713568461]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e5f5d133279bd4a1a0d31a9cb29e5caecfc77a9b", "fields": {"departement": "92", "stop_lat": 48.795721662558684, "code_postal": "92020", "stop_lon": 2.2758320153493683, "coord": [48.795721662558684, 2.2758320153493683], "stop_id": 5423676, "stop_desc": "FACE 3 AVENUE DE LA DIVISION LECLERC - 92020", "stop_name": "CENTRE BUS"}, "geometry": {"type": "Point", "coordinates": [2.2758320153493683, 48.795721662558684]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "06f4e9577ec2033fa98dd639cd517bcc0a8badf1", "fields": {"departement": "92", "stop_lat": 48.79454220125779, "code_postal": "92020", "stop_lon": 2.2719835271448834, "coord": [48.79454220125779, 2.2719835271448834], "stop_id": 5423677, "stop_desc": "AVENUE DE VERDUN - 92020", "stop_name": "DIVISION LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.2719835271448834, 48.79454220125779]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "807cf74e375cfb8268cafb12cb6301dca455c729", "fields": {"departement": "92", "stop_lat": 48.786544287053275, "code_postal": "92060", "stop_lon": 2.2592623549480146, "coord": [48.786544287053275, 2.2592623549480146], "stop_id": 5423681, "stop_desc": "88 BOULEVARD DU MOULIN DE LA TOUR - 92060", "stop_name": "RUE GABRIELLE"}, "geometry": {"type": "Point", "coordinates": [2.2592623549480146, 48.786544287053275]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6add4f61abe53d8dfa4b8041f5829c193ea2e45b", "fields": {"departement": "92", "stop_lat": 48.773708035421556, "code_postal": "92060", "stop_lon": 2.257146680420341, "coord": [48.773708035421556, 2.257146680420341], "stop_id": 5423691, "stop_desc": "14 RUE DU MOULIN FIDEL - 92060", "stop_name": "MOULIN FIDEL"}, "geometry": {"type": "Point", "coordinates": [2.257146680420341, 48.773708035421556]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4c0bf69d2a4e0df3f5092779fd116d20cfeaf6d5", "fields": {"departement": "92", "stop_lat": 48.768724332319636, "code_postal": "92019", "stop_lon": 2.2509676970806165, "coord": [48.768724332319636, 2.2509676970806165], "stop_id": 5423695, "stop_desc": "AVENUE DE LA DIVISION LECLERC - 92019", "stop_name": "CYRANO DE BERGERAC"}, "geometry": {"type": "Point", "coordinates": [2.2509676970806165, 48.768724332319636]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d34dca09fa5dd46eb4966a42cb3b2e884508aec9", "fields": {"departement": "92", "stop_lat": 48.76541462761812, "code_postal": "92019", "stop_lon": 2.2610615768725446, "coord": [48.76541462761812, 2.2610615768725446], "stop_id": 5423699, "stop_desc": "FACE 305 AVENUE DE LA DIVISION LECLERC - 92019", "stop_name": "BUTTE ROUGE - CITE JARDINS"}, "geometry": {"type": "Point", "coordinates": [2.2610615768725446, 48.76541462761812]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "274bbb3613686c64d10ed61830904035650a02fa", "fields": {"departement": "92", "stop_lat": 48.76481537199997, "code_postal": "92019", "stop_lon": 2.265807475737512, "coord": [48.76481537199997, 2.265807475737512], "stop_id": 5423701, "stop_desc": "FACE 299 AVENUE DE LA DIVISION LECLERC - 92019", "stop_name": "GENERAL DUVAL"}, "geometry": {"type": "Point", "coordinates": [2.265807475737512, 48.76481537199997]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "df79923de28aec239c483a8eb1a2f1fc56ca0534", "fields": {"departement": "92", "stop_lat": 48.76294436508194, "code_postal": "92019", "stop_lon": 2.279636728058831, "coord": [48.76294436508194, 2.279636728058831], "stop_id": 5423705, "stop_desc": "130 AVENUE DE LA DIVISION LECLERC - 92019", "stop_name": "LA BRIAUDE"}, "geometry": {"type": "Point", "coordinates": [2.279636728058831, 48.76294436508194]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "19962c4cf43c4087938f20f64060a3d72b3fd01b", "fields": {"departement": "92", "stop_lat": 48.7656776649009, "code_postal": "92019", "stop_lon": 2.281564367481111, "coord": [48.7656776649009, 2.281564367481111], "stop_id": 5423708, "stop_desc": "21 RUE HENRI-IRENEE MARROU - 92019", "stop_name": "RUE DES VIGNES"}, "geometry": {"type": "Point", "coordinates": [2.281564367481111, 48.7656776649009]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a259f5401282bf0ae0eba3436f1fa9d615893272", "fields": {"departement": "92", "stop_lat": 48.766558053543704, "code_postal": "92019", "stop_lon": 2.2806252654114942, "coord": [48.766558053543704, 2.2806252654114942], "stop_id": 5423709, "stop_desc": "16 RUE HENRI-IRENEE MARROU - 92019", "stop_name": "RUE DES VIGNES"}, "geometry": {"type": "Point", "coordinates": [2.2806252654114942, 48.766558053543704]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8cbd4cba73a5ebdbcdabc4ccb5dd6c4af53b5999", "fields": {"departement": "92", "stop_lat": 48.767312522073375, "code_postal": "92019", "stop_lon": 2.279523110651518, "coord": [48.767312522073375, 2.279523110651518], "stop_id": 5423711, "stop_desc": "98 RUE JEAN LONGUET - 92019", "stop_name": "MAIRIE DE CHATENAY-MALABRY"}, "geometry": {"type": "Point", "coordinates": [2.279523110651518, 48.767312522073375]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5908dc684b63de8d324a4c2e32b2c1840cdb3b24", "fields": {"departement": "92", "stop_lat": 48.77066560411142, "code_postal": "92019", "stop_lon": 2.280634385989185, "coord": [48.77066560411142, 2.280634385989185], "stop_id": 5423712, "stop_desc": "35 RUE JEAN LONGUET - 92019", "stop_name": "PRES HAUTS"}, "geometry": {"type": "Point", "coordinates": [2.280634385989185, 48.77066560411142]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4a15398195dd2e0400d67f7b80d6e54571c73fea", "fields": {"departement": "92", "stop_lat": 48.7948199241652, "code_postal": "92032", "stop_lon": 2.2889200331325124, "coord": [48.7948199241652, 2.2889200331325124], "stop_id": 5423726, "stop_desc": "32-34 RUE BLANCHARD - 92032", "stop_name": "PIERRELAIS - BLANCHARD"}, "geometry": {"type": "Point", "coordinates": [2.2889200331325124, 48.7948199241652]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a5bea221c34eaa760a7f7d60c73bc5cf7ec69f81", "fields": {"departement": "92", "stop_lat": 48.887476553353096, "code_postal": "92063", "stop_lon": 2.179317205682856, "coord": [48.887476553353096, 2.179317205682856], "stop_id": 5423774, "stop_desc": "101 RUE ESTIENNE D'ORVES - 92063", "stop_name": "D'ESTIENNE D'ORVES"}, "geometry": {"type": "Point", "coordinates": [2.179317205682856, 48.887476553353096]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "690a28894dcbfcfa349e7880a1ec1f3682a12e13", "fields": {"departement": "75", "stop_lat": 48.82027398784946, "code_postal": "75114", "stop_lon": 2.343801363217265, "coord": [48.82027398784946, 2.343801363217265], "stop_id": 5454875, "stop_desc": "96 RUE DE L' AMIRAL MOUCHEZ - 75114", "stop_name": "STADE CHARLETY - PORTE DE GENTILLY"}, "geometry": {"type": "Point", "coordinates": [2.343801363217265, 48.82027398784946]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "92ef4243159594546c8d9d439dbc0f2fa8904a88", "fields": {"departement": "75", "stop_lat": 48.834374005977395, "code_postal": "75113", "stop_lon": 2.3578258372775394, "coord": [48.834374005977395, 2.3578258372775394], "stop_id": 5454882, "stop_desc": "141 BOULEVARD DE L'HOPITAL - 75113", "stop_name": "RUBENS - ECOLE DES ARTS ET METIERS"}, "geometry": {"type": "Point", "coordinates": [2.3578258372775394, 48.834374005977395]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "512431e9fc130c2dc430940121bd1929ff30d303", "fields": {"departement": "75", "stop_lat": 48.84904201040451, "code_postal": "75105", "stop_lon": 2.355775319106966, "coord": [48.84904201040451, 2.355775319106966], "stop_id": 5454888, "stop_desc": "FACE 2 RUE DES FOSSES SAINT BERNARD - 75105", "stop_name": "INSTITUT DU MONDE ARABE"}, "geometry": {"type": "Point", "coordinates": [2.355775319106966, 48.84904201040451]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "24c19022c58b7b3707a646b0bb4f158b28934757", "fields": {"departement": "75", "stop_lat": 48.8584078136177, "code_postal": "75104", "stop_lon": 2.3488457910577933, "coord": [48.8584078136177, 2.3488457910577933], "stop_id": 5454894, "stop_desc": "90 RUE DE RIVOLI - 75104", "stop_name": "CHATELET"}, "geometry": {"type": "Point", "coordinates": [2.3488457910577933, 48.8584078136177]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2dab895bc3d5042ee1d9a8899ded56781d2229c3", "fields": {"departement": "75", "stop_lat": 48.861203399239315, "code_postal": "75101", "stop_lon": 2.3411231334321685, "coord": [48.861203399239315, 2.3411231334321685], "stop_id": 5454896, "stop_desc": "16 RUE DU LOUVRE - 75101", "stop_name": "LOUVRE - RIVOLI"}, "geometry": {"type": "Point", "coordinates": [2.3411231334321685, 48.861203399239315]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "010a658f75eb67c3635901695b9f28e8883e371a", "fields": {"departement": "75", "stop_lat": 48.856061944099835, "code_postal": "75104", "stop_lon": 2.350302602371364, "coord": [48.856061944099835, 2.350302602371364], "stop_id": 5454906, "stop_desc": "FACE 2 QUAI DE GESVRES - 75104", "stop_name": "HOTEL DE VILLE"}, "geometry": {"type": "Point", "coordinates": [2.350302602371364, 48.856061944099835]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "677f49e7772650e93073992d13f3473a98359af2", "fields": {"departement": "75", "stop_lat": 48.85445267414927, "code_postal": "75104", "stop_lon": 2.35438805855369, "coord": [48.85445267414927, 2.35438805855369], "stop_id": 5454908, "stop_desc": "FACE 52 QUAI DE L'HOTEL DE VILLE - 75104", "stop_name": "PONT LOUIS PHILIPPE"}, "geometry": {"type": "Point", "coordinates": [2.35438805855369, 48.85445267414927]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0c28c1c3ca21ffdb804730e1143bbf38b55d66ba", "fields": {"departement": "75", "stop_lat": 48.82779590669523, "code_postal": "75113", "stop_lon": 2.352214862577147, "coord": [48.82779590669523, 2.352214862577147], "stop_id": 5454926, "stop_desc": "RUE BOBILLOT - 75113", "stop_name": "VERLAINE"}, "geometry": {"type": "Point", "coordinates": [2.352214862577147, 48.82779590669523]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "42329c3914127cb2fbcc81540732f216dc71550b", "fields": {"departement": "75", "stop_lat": 48.85403888472589, "code_postal": "75104", "stop_lon": 2.356771321817855, "coord": [48.85403888472589, 2.356771321817855], "stop_id": 5454940, "stop_desc": "QUAI DE L'HOTEL DE VILLE - 75104", "stop_name": "PONT MARIE"}, "geometry": {"type": "Point", "coordinates": [2.356771321817855, 48.85403888472589]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5068fd91b6428ad8f242f6f79048b1397adf4969", "fields": {"departement": "92", "stop_lat": 48.77951018460229, "code_postal": "92071", "stop_lon": 2.281413539368541, "coord": [48.77951018460229, 2.281413539368541], "stop_id": 5478211, "stop_desc": "3 AVENUE DE LA GARE - 92071", "stop_name": "ROBINSON RER"}, "geometry": {"type": "Point", "coordinates": [2.281413539368541, 48.77951018460229]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "68348a0f2667a02c8fa81f57f2b8723bfdb5dfb9", "fields": {"departement": "92", "stop_lat": 48.76294436508194, "code_postal": "92019", "stop_lon": 2.279636728058831, "coord": [48.76294436508194, 2.279636728058831], "stop_id": 5478218, "stop_desc": "130 AVENUE DE LA DIVISION LECLERC - 92019", "stop_name": "LA BRIAUDE"}, "geometry": {"type": "Point", "coordinates": [2.279636728058831, 48.76294436508194]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "53bb2268952667a3783594a243d61e1dcf127835", "fields": {"departement": "92", "stop_lat": 48.76640827315518, "code_postal": "92019", "stop_lon": 2.255009693324619, "coord": [48.76640827315518, 2.255009693324619], "stop_id": 5478223, "stop_desc": "FACE 327 AVENUE DE LA DIVISION LECLERC - 92019", "stop_name": "FRANCIS DE PRESSENSE"}, "geometry": {"type": "Point", "coordinates": [2.255009693324619, 48.76640827315518]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "91afc335f5882f3e1c40a0f8905cc05a1f99501d", "fields": {"departement": "92", "stop_lat": 48.778581644594894, "code_postal": "92060", "stop_lon": 2.260335082615534, "coord": [48.778581644594894, 2.260335082615534], "stop_id": 5478228, "stop_desc": "5 AVENUE CHARLES DE GAULLE - 92060", "stop_name": "RESISTANCE"}, "geometry": {"type": "Point", "coordinates": [2.260335082615534, 48.778581644594894]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0afa4f67f8d1b1bc53581a828e7c889cf2e404cf", "fields": {"departement": "92", "stop_lat": 48.79316722656794, "code_postal": "92023", "stop_lon": 2.272298135045123, "coord": [48.79316722656794, 2.272298135045123], "stop_id": 5478233, "stop_desc": "CHEMIN DE LA FOSSE BAZIN - 92023", "stop_name": "DIVISION LECLERC - FOSSE BAZIN"}, "geometry": {"type": "Point", "coordinates": [2.272298135045123, 48.79316722656794]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e6d02aaebe570a2190fa0e44de839fbc720f6a10", "fields": {"departement": "75", "stop_lat": 48.829860486645096, "code_postal": "75112", "stop_lon": 2.3918159182403222, "coord": [48.829860486645096, 2.3918159182403222], "stop_id": 5478240, "stop_desc": "20 BD PONIATOWSKI - 75112", "stop_name": "BARON LE ROY"}, "geometry": {"type": "Point", "coordinates": [2.3918159182403222, 48.829860486645096]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d6ddf5e2c122a6fca678f7c45aad2336a396d59b", "fields": {"departement": "94", "stop_lat": 48.82002741880614, "code_postal": "94069", "stop_lon": 2.4232186351513785, "coord": [48.82002741880614, 2.4232186351513785], "stop_id": 5478248, "stop_desc": "23 BIS RUE DU VAL D'OSNE - 94069", "stop_name": "EPINETTES"}, "geometry": {"type": "Point", "coordinates": [2.4232186351513785, 48.82002741880614]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "907331147693792d6d69daddfd8c2b6e53563a0d", "fields": {"departement": "94", "stop_lat": 48.81795512775568, "code_postal": "94069", "stop_lon": 2.430033797229572, "coord": [48.81795512775568, 2.430033797229572], "stop_id": 5478251, "stop_desc": "FACE 57 RUE DU MARECHAL LECLERC - 94069", "stop_name": "HOPITAL ESQUIROL"}, "geometry": {"type": "Point", "coordinates": [2.430033797229572, 48.81795512775568]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3268e16358b8a3206c2150bf80373aa60d8d5a95", "fields": {"departement": "94", "stop_lat": 48.81672811941364, "code_postal": "94069", "stop_lon": 2.4555769178378704, "coord": [48.81672811941364, 2.4555769178378704], "stop_id": 5478257, "stop_desc": "228 RUE DU MARECHAL LECLERC - 94069", "stop_name": "LES CANADIENS"}, "geometry": {"type": "Point", "coordinates": [2.4555769178378704, 48.81672811941364]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "76d8f77e2f718ed162446027b8f25831daff15e0", "fields": {"departement": "94", "stop_lat": 48.78934126816112, "code_postal": "94068", "stop_lon": 2.480910350828397, "coord": [48.78934126816112, 2.480910350828397], "stop_id": 5478270, "stop_desc": "80 AVENUE JEAN JAURES - 94068", "stop_name": "LA PIE"}, "geometry": {"type": "Point", "coordinates": [2.480910350828397, 48.78934126816112]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "add1145b93a1435e0ee9d7c7146d3d3812c792ef", "fields": {"departement": "94", "stop_lat": 48.7901620879359, "code_postal": "94068", "stop_lon": 2.512280457457706, "coord": [48.7901620879359, 2.512280457457706], "stop_id": 5478280, "stop_desc": "FACE 36BIS RUE SAINT HILAIRE - 94068", "stop_name": "EGLISE DE LA VARENNE"}, "geometry": {"type": "Point", "coordinates": [2.512280457457706, 48.7901620879359]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "308ac2330781173697b2963ada905a88dbe659a4", "fields": {"departement": "94", "stop_lat": 48.794877640222786, "code_postal": "94068", "stop_lon": 2.5143777551591184, "coord": [48.794877640222786, 2.5143777551591184], "stop_id": 5478281, "stop_desc": "3 AVENUE DU MESNIL - 94068", "stop_name": "LA VARENNE - CHENNEVIERES RER"}, "geometry": {"type": "Point", "coordinates": [2.5143777551591184, 48.794877640222786]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f6737926723f530a2fa973ab268717ea6050773c", "fields": {"departement": "94", "stop_lat": 48.822231640351454, "code_postal": "94069", "stop_lon": 2.4200645134930636, "coord": [48.822231640351454, 2.4200645134930636], "stop_id": 5478285, "stop_desc": "2 RUE VERDUN - 94069", "stop_name": "VERDUN"}, "geometry": {"type": "Point", "coordinates": [2.4200645134930636, 48.822231640351454]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5a823004d8cff5fbd10eb229e91eeb0f9092a239", "fields": {"departement": "94", "stop_lat": 48.82194179585436, "code_postal": "94069", "stop_lon": 2.4232218060551216, "coord": [48.82194179585436, 2.4232218060551216], "stop_id": 5478286, "stop_desc": "39 RUE DU VAL D'OSNE - 94069", "stop_name": "HOPITAL NATIONAL DE SAINT-MAURICE"}, "geometry": {"type": "Point", "coordinates": [2.4232218060551216, 48.82194179585436]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "73436760aca299d05a1fc33e10534a32bee112a0", "fields": {"departement": "94", "stop_lat": 48.82002741880614, "code_postal": "94069", "stop_lon": 2.4232186351513785, "coord": [48.82002741880614, 2.4232186351513785], "stop_id": 5478287, "stop_desc": "23 BIS RUE DU VAL D'OSNE - 94069", "stop_name": "EPINETTES"}, "geometry": {"type": "Point", "coordinates": [2.4232186351513785, 48.82002741880614]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a85b22f952ac6d20e2a72ef5a5bf45ee5577b309", "fields": {"departement": "94", "stop_lat": 48.81785051981082, "code_postal": "94069", "stop_lon": 2.425773698569028, "coord": [48.81785051981082, 2.425773698569028], "stop_id": 5478289, "stop_desc": "FACE 55BIS RUE DU MARECHAL LECLERC - 94069", "stop_name": "MAIRIE DE SAINT-MAURICE"}, "geometry": {"type": "Point", "coordinates": [2.425773698569028, 48.81785051981082]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8bfeed2c909380b2489f9e8c756057bf9bf52efe", "fields": {"departement": "94", "stop_lat": 48.81804240272417, "code_postal": "94069", "stop_lon": 2.4333139614357617, "coord": [48.81804240272417, 2.4333139614357617], "stop_id": 5478293, "stop_desc": "44 RUE DU MARECHAL LECLERC - 94069", "stop_name": "PASSERELLE DE SAINT-MAURICE"}, "geometry": {"type": "Point", "coordinates": [2.4333139614357617, 48.81804240272417]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0fb1935127d484830f4b45002b4227a25df75f9a", "fields": {"departement": "77", "stop_lat": 48.8428596378912, "code_postal": "77337", "stop_lon": 2.6150181063879754, "coord": [48.8428596378912, 2.6150181063879754], "stop_id": 4208560, "stop_desc": "COURS DES ROCHES - 77337", "stop_name": "NOISIEL RER"}, "geometry": {"type": "Point", "coordinates": [2.6150181063879754, 48.8428596378912]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9875b71433c9cbedf88899b74929358a4eb93226", "fields": {"departement": "77", "stop_lat": 48.84276074387724, "code_postal": "77337", "stop_lon": 2.6150311934474253, "coord": [48.84276074387724, 2.6150311934474253], "stop_id": 4208561, "stop_desc": "COURS DES ROCHES - 77337", "stop_name": "NOISIEL RER"}, "geometry": {"type": "Point", "coordinates": [2.6150311934474253, 48.84276074387724]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "86bae8ab68e32e4d78565be4826a7c6bfc795c36", "fields": {"departement": "77", "stop_lat": 48.85029228306208, "code_postal": "77468", "stop_lon": 2.63368806437434, "coord": [48.85029228306208, 2.63368806437434], "stop_id": 4208571, "stop_desc": "0 COURS DE L'ARCHE GUEDON - 77468", "stop_name": "CITE SCOLAIRE"}, "geometry": {"type": "Point", "coordinates": [2.63368806437434, 48.85029228306208]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d22e83fb7f6bcc94cbbd6af6fd7bf900cb63cda1", "fields": {"departement": "77", "stop_lat": 48.84694657702187, "code_postal": "77468", "stop_lon": 2.6521072695310983, "coord": [48.84694657702187, 2.6521072695310983], "stop_id": 4208588, "stop_desc": "AVENUE DE LINGENFELD - 77468", "stop_name": "JACQUES PREVERT"}, "geometry": {"type": "Point", "coordinates": [2.6521072695310983, 48.84694657702187]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c8780717ec29da0a657bc57c8d95bbe1753a714a", "fields": {"departement": "77", "stop_lat": 48.83924806864605, "code_postal": "77468", "stop_lon": 2.6573978872932438, "coord": [48.83924806864605, 2.6573978872932438], "stop_id": 4208594, "stop_desc": "AVENUE JEAN MOULIN - 77468", "stop_name": "CITES UNIES"}, "geometry": {"type": "Point", "coordinates": [2.6573978872932438, 48.83924806864605]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6c07b2e794600337288ba1982a4d14ee78ad73dc", "fields": {"departement": "92", "stop_lat": 48.8949267944631, "code_postal": "92050", "stop_lon": 2.227150108430016, "coord": [48.8949267944631, 2.227150108430016], "stop_id": 4208609, "stop_desc": "FACE 34 BD DE PESARO - 92050", "stop_name": "LES TERRASSES"}, "geometry": {"type": "Point", "coordinates": [2.227150108430016, 48.8949267944631]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "48f4c4a9388ddd73e43579d5e86e6aee9eac8e16", "fields": {"departement": "92", "stop_lat": 48.88864621542606, "code_postal": "92050", "stop_lon": 2.22874436019326, "coord": [48.88864621542606, 2.22874436019326], "stop_id": 4208613, "stop_desc": "133 AVENUE PABLO PICASSO - 92050", "stop_name": "LES ROSIERS"}, "geometry": {"type": "Point", "coordinates": [2.22874436019326, 48.88864621542606]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5ae57ee9169c851f36eb25b6daa1d4f2ad9a5c2e", "fields": {"departement": "92", "stop_lat": 48.891376177926425, "code_postal": "92050", "stop_lon": 2.200457938732742, "coord": [48.891376177926425, 2.200457938732742], "stop_id": 4208633, "stop_desc": "PLACE JEAN-BAPTISTE PLAINCHAMP - 92050", "stop_name": "PLAINCHAMP-ROCHET"}, "geometry": {"type": "Point", "coordinates": [2.200457938732742, 48.891376177926425]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "37c5208bc3b5923e03e48326f83bfb57b075f338", "fields": {"departement": "92", "stop_lat": 48.885321343250595, "code_postal": "92050", "stop_lon": 2.2196889256981716, "coord": [48.885321343250595, 2.2196889256981716], "stop_id": 4208641, "stop_desc": "1 R PASTEUR - 92050", "stop_name": "PASTEUR"}, "geometry": {"type": "Point", "coordinates": [2.2196889256981716, 48.885321343250595]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dd347889a0699db9b771733b83e76b65b88e625c", "fields": {"departement": "95", "stop_lat": 48.978284356790724, "code_postal": "95585", "stop_lon": 2.3867846247994557, "coord": [48.978284356790724, 2.3867846247994557], "stop_id": 4211736, "stop_desc": "12 AVENUE PAUL VALERY - 95585", "stop_name": "LOCHERES"}, "geometry": {"type": "Point", "coordinates": [2.3867846247994557, 48.978284356790724]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f02cfabd5b24a7af15c22dd9d4df1e2e620be597", "fields": {"departement": "93", "stop_lat": 48.96535124369496, "code_postal": "93059", "stop_lon": 2.362736845979033, "coord": [48.96535124369496, 2.362736845979033], "stop_id": 4211749, "stop_desc": "33 BOULEVARD JEAN MERMOZ - 93059", "stop_name": "ALCIDE D'ORBIGNY"}, "geometry": {"type": "Point", "coordinates": [2.362736845979033, 48.96535124369496]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6fa14634209b954c2431bafa48f66a720bd748fa", "fields": {"departement": "93", "stop_lat": 48.963608376113065, "code_postal": "93059", "stop_lon": 2.3600745767108173, "coord": [48.963608376113065, 2.3600745767108173], "stop_id": 4211750, "stop_desc": "BOULEVARD JEAN MERMOZ - 93059", "stop_name": "MAIRIE DE PIERREFITTE"}, "geometry": {"type": "Point", "coordinates": [2.3600745767108173, 48.963608376113065]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c38f47b0bfef7624107285cfb3c9c244be36caee", "fields": {"departement": "93", "stop_lat": 48.95849526144328, "code_postal": "93059", "stop_lon": 2.358489280339655, "coord": [48.95849526144328, 2.358489280339655], "stop_id": 4211752, "stop_desc": "68 AVENUE LENINE - 93059", "stop_name": "SUZANNE VALADON"}, "geometry": {"type": "Point", "coordinates": [2.358489280339655, 48.95849526144328]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "14e8e2c84ad3dd7f9d0b4ebf872d034101f2d6ff", "fields": {"departement": "93", "stop_lat": 48.95845026441542, "code_postal": "93059", "stop_lon": 2.358844081323728, "coord": [48.95845026441542, 2.358844081323728], "stop_id": 4211753, "stop_desc": "85 AVENUE LENINE - 93059", "stop_name": "SUZANNE VALADON"}, "geometry": {"type": "Point", "coordinates": [2.358844081323728, 48.95845026441542]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a94db2c072005cc6e0f755b49abdcb198ebe7983", "fields": {"departement": "93", "stop_lat": 48.952555178753656, "code_postal": "93059", "stop_lon": 2.357777285486661, "coord": [48.952555178753656, 2.357777285486661], "stop_id": 4211755, "stop_desc": "AVENUE ELISEE RECLUS - 93059", "stop_name": "PETIT PIERREFITTE"}, "geometry": {"type": "Point", "coordinates": [2.357777285486661, 48.952555178753656]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c8dd38a2cd20b7a2a711cead968587afeba3d708", "fields": {"departement": "93", "stop_lat": 48.934250176681076, "code_postal": "93066", "stop_lon": 2.349967651030712, "coord": [48.934250176681076, 2.349967651030712], "stop_id": 4211767, "stop_desc": "FACE 8 BOULEVARD JULES GUESDE - 93066", "stop_name": "DENFERT-ROCHEREAU"}, "geometry": {"type": "Point", "coordinates": [2.349967651030712, 48.934250176681076]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "318b58aba5845b74a61c40dbdff8a1f4b81245a1", "fields": {"departement": "93", "stop_lat": 48.91339215983966, "code_postal": "93070", "stop_lon": 2.3353321433301537, "coord": [48.91339215983966, 2.3353321433301537], "stop_id": 4211777, "stop_desc": "64-66 BOULEVARD JEAN JAURES - 93070", "stop_name": "JAURES - DHALENNE"}, "geometry": {"type": "Point", "coordinates": [2.3353321433301537, 48.91339215983966]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "af1208ec4d6d0d8603e68aaa460c4c3b08f47a94", "fields": {"departement": "93", "stop_lat": 48.91197216252709, "code_postal": "93070", "stop_lon": 2.3333551706347166, "coord": [48.91197216252709, 2.3333551706347166], "stop_id": 4211779, "stop_desc": "PLACE DE LA REPUBLIQUE - 93070", "stop_name": "MAIRIE DE SAINT-OUEN"}, "geometry": {"type": "Point", "coordinates": [2.3333551706347166, 48.91197216252709]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "61f7d5cd038fa2be29ad017116468674b3939388", "fields": {"departement": "93", "stop_lat": 48.90900642715508, "code_postal": "93070", "stop_lon": 2.3329600113604876, "coord": [48.90900642715508, 2.3329600113604876], "stop_id": 4211782, "stop_desc": "37 BIS AVENUE GABRIEL PERI - 93070", "stop_name": "ERNEST RENAN"}, "geometry": {"type": "Point", "coordinates": [2.3329600113604876, 48.90900642715508]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "15782ddba16e781b5787df3bef1f356d10d23665", "fields": {"departement": "93", "stop_lat": 48.903119925799416, "code_postal": "93070", "stop_lon": 2.333846600482987, "coord": [48.903119925799416, 2.333846600482987], "stop_id": 4211785, "stop_desc": "54 RUE CHARLES SCHMIDT - 93070", "stop_name": "KLEBER"}, "geometry": {"type": "Point", "coordinates": [2.333846600482987, 48.903119925799416]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2c218cac247d4d9cfebc2525c52708a6c858f77f", "fields": {"departement": "75", "stop_lat": 48.89797036055378, "code_postal": "75118", "stop_lon": 2.3371047417495974, "coord": [48.89797036055378, 2.3371047417495974], "stop_id": 4211789, "stop_desc": "1 AVENUE DE LA PORTE DE MONTMARTRE - 75118", "stop_name": "PORTE DE MONTMARTRE - BD NEY"}, "geometry": {"type": "Point", "coordinates": [2.3371047417495974, 48.89797036055378]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e609d72b3aa10c881fca10156ca4d2547cb598a9", "fields": {"departement": "75", "stop_lat": 48.87567135548821, "code_postal": "75110", "stop_lon": 2.357583347393136, "coord": [48.87567135548821, 2.357583347393136], "stop_id": 4211807, "stop_desc": "81 BOULEVARD DE STRASBOURG - 75110", "stop_name": "GARE DE L'EST"}, "geometry": {"type": "Point", "coordinates": [2.357583347393136, 48.87567135548821]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "327e396f596d7bb92597ce2659d52dbfa8d9a810", "fields": {"departement": "75", "stop_lat": 48.88324867913404, "code_postal": "75110", "stop_lon": 2.3499415145297466, "coord": [48.88324867913404, 2.3499415145297466], "stop_id": 4211808, "stop_desc": "168 BOULEVARD DE MAGENTA - 75110", "stop_name": "BARBES - ROCHECHOUART"}, "geometry": {"type": "Point", "coordinates": [2.3499415145297466, 48.88324867913404]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8718fafd33534f37b34c0cbed84b52cf17200724", "fields": {"departement": "93", "stop_lat": 48.95653614039444, "code_postal": "93059", "stop_lon": 2.35862494056431, "coord": [48.95653614039444, 2.35862494056431], "stop_id": 4211816, "stop_desc": "125 AVENUE LENINE - 93059", "stop_name": "JONCHEROLLES"}, "geometry": {"type": "Point", "coordinates": [2.35862494056431, 48.95653614039444]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b367de489dc3aabd57b2ac04b64d33847db9c422", "fields": {"departement": "95", "stop_lat": 48.991445119553724, "code_postal": "95585", "stop_lon": 2.374179444928489, "coord": [48.991445119553724, 2.374179444928489], "stop_id": 4226300, "stop_desc": "49 RUE PIERRE BROSSOLETTE - 95585", "stop_name": "THEODORE BULLIER"}, "geometry": {"type": "Point", "coordinates": [2.374179444928489, 48.991445119553724]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "46ca9c93728330288c42e5c66e8e318d1f6dc7c1", "fields": {"departement": "95", "stop_lat": 48.99425639765105, "code_postal": "95585", "stop_lon": 2.378660734943352, "coord": [48.99425639765105, 2.378660734943352], "stop_id": 4226301, "stop_desc": "FACE 103 RUE PIERRE BROSSOLETTE - 95585", "stop_name": "PLACE DE VERDUN"}, "geometry": {"type": "Point", "coordinates": [2.378660734943352, 48.99425639765105]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0e3e487b386a30fa5a13624b9ccc9d27dfc6955f", "fields": {"departement": "95", "stop_lat": 48.99327536827765, "code_postal": "95585", "stop_lon": 2.382811401514755, "coord": [48.99327536827765, 2.382811401514755], "stop_id": 4226303, "stop_desc": "RUE DES BAUVES - 95585", "stop_name": "LYCEE DE LA TOURELLE"}, "geometry": {"type": "Point", "coordinates": [2.382811401514755, 48.99327536827765]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e966f92a588f739251bb3970b71c62d6565efc3a", "fields": {"departement": "95", "stop_lat": 48.985929415561884, "code_postal": "95585", "stop_lon": 2.3923764936090817, "coord": [48.985929415561884, 2.3923764936090817], "stop_id": 4226307, "stop_desc": "RUE EMILE ZOLA - 95585", "stop_name": "HAUT DU ROY"}, "geometry": {"type": "Point", "coordinates": [2.3923764936090817, 48.985929415561884]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a1f70a9428bf52d416315f3eb8d992da26e0b8db", "fields": {"departement": "95", "stop_lat": 48.98483842216481, "code_postal": "95585", "stop_lon": 2.399748418960329, "coord": [48.98483842216481, 2.399748418960329], "stop_id": 4226310, "stop_desc": "10 R EMILE ZOLA - 95585", "stop_name": "MONT DE GIF"}, "geometry": {"type": "Point", "coordinates": [2.399748418960329, 48.98483842216481]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8a2781186a75862b7fb75efec6b6794de7289355", "fields": {"departement": "95", "stop_lat": 48.99391311827342, "code_postal": "95019", "stop_lon": 2.4174852142696843, "coord": [48.99391311827342, 2.4174852142696843], "stop_id": 4226320, "stop_desc": "FACE 19 RUE JEAN JAURES - 95019", "stop_name": "JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.4174852142696843, 48.99391311827342]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6b2d64beaa9ae35c6f09d0707782cce052fbeb39", "fields": {"departement": "95", "stop_lat": 48.977105487142616, "code_postal": "95268", "stop_lon": 2.390578703537779, "coord": [48.977105487142616, 2.390578703537779], "stop_id": 4226768, "stop_desc": "PISTE GARE ROUTIERE - 95268", "stop_name": "GARGES-SARCELLES RER"}, "geometry": {"type": "Point", "coordinates": [2.390578703537779, 48.977105487142616]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b86200d513b13d09f5d1579243368aa1c6cd3ce2", "fields": {"departement": "95", "stop_lat": 48.9882130963267, "code_postal": "95585", "stop_lon": 2.389893761468781, "coord": [48.9882130963267, 2.389893761468781], "stop_id": 4226774, "stop_desc": "RUE EMILE ZOLA - 95585", "stop_name": "LES PERREUX"}, "geometry": {"type": "Point", "coordinates": [2.389893761468781, 48.9882130963267]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "afdd470a548f70ffe5269e7cc1a851ea20ec2896", "fields": {"departement": "95", "stop_lat": 49.00265761831511, "code_postal": "95585", "stop_lon": 2.3815494199763547, "coord": [49.00265761831511, 2.3815494199763547], "stop_id": 4226782, "stop_desc": "56 AVENUE MARX DORMOY - 95585", "stop_name": "LES CHARDONNERETTES"}, "geometry": {"type": "Point", "coordinates": [2.3815494199763547, 49.00265761831511]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "95b8cbfe8e9850b278404d3f39bb8f572f6fa437", "fields": {"departement": "93", "stop_lat": 48.90569029404579, "code_postal": "93008", "stop_lon": 2.459720013319434, "coord": [48.90569029404579, 2.459720013319434], "stop_id": 4614628, "stop_desc": "AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "CITE ADMINISTRATIVE"}, "geometry": {"type": "Point", "coordinates": [2.459720013319434, 48.90569029404579]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9074eee4abe176f9e836d690088152405a98a7e0", "fields": {"departement": "93", "stop_lat": 48.84917282451323, "code_postal": "93051", "stop_lon": 2.5523127821508225, "coord": [48.84917282451323, 2.5523127821508225], "stop_id": 4614638, "stop_desc": "2 RUE GEORGES LAIGNEAU - 93051", "stop_name": "MAIRIE DE NOISY-LE-GRAND"}, "geometry": {"type": "Point", "coordinates": [2.5523127821508225, 48.84917282451323]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "59be27517e38137cda404d4c715ecd2503c3c25c", "fields": {"departement": "93", "stop_lat": 48.845133860047326, "code_postal": "93051", "stop_lon": 2.5492866499490487, "coord": [48.845133860047326, 2.5492866499490487], "stop_id": 4614646, "stop_desc": "FACE 45 RUE DU DOCTEUR SUREAU - 93051", "stop_name": "REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.5492866499490487, 48.845133860047326]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6fba259b04b91767df5fd6a1adfb31357cefe484", "fields": {"departement": "93", "stop_lat": 48.84619689031638, "code_postal": "93051", "stop_lon": 2.5528996112196936, "coord": [48.84619689031638, 2.5528996112196936], "stop_id": 4614647, "stop_desc": "20 RUE DE LA REPUBLIQUE - 93051", "stop_name": "ESPACE MICHEL SIMON"}, "geometry": {"type": "Point", "coordinates": [2.5528996112196936, 48.84619689031638]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "80b002b5235fc72f6a23beb1ad443dbe2bf35087", "fields": {"departement": "93", "stop_lat": 48.84618061310176, "code_postal": "93051", "stop_lon": 2.5519599418394168, "coord": [48.84618061310176, 2.5519599418394168], "stop_id": 4614648, "stop_desc": "17 RUE DE LA REPUBLIQUE - 93051", "stop_name": "ESPACE MICHEL SIMON"}, "geometry": {"type": "Point", "coordinates": [2.5519599418394168, 48.84618061310176]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c5861546a09acf9dde8776affed7905c5ffd6696", "fields": {"departement": "93", "stop_lat": 48.84982102924448, "code_postal": "93051", "stop_lon": 2.536164085113424, "coord": [48.84982102924448, 2.536164085113424], "stop_id": 4614654, "stop_desc": "36-38 ROUTE DE NEUILLY - 93051", "stop_name": "RENE NAVIER"}, "geometry": {"type": "Point", "coordinates": [2.536164085113424, 48.84982102924448]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3b002634694c18d2bef3548add51a0a499b51085", "fields": {"departement": "93", "stop_lat": 48.86362648686356, "code_postal": "93050", "stop_lon": 2.530264230340083, "coord": [48.86362648686356, 2.530264230340083], "stop_id": 4614659, "stop_desc": "FACE 111 RUE PAUL ET CAMILLE THOMOUX - 93050", "stop_name": "CIMETIERE DE NEUILLY-SUR-MARNE"}, "geometry": {"type": "Point", "coordinates": [2.530264230340083, 48.86362648686356]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2f90814fe6f5c0566482e6d3baa497e5bef30593", "fields": {"departement": "93", "stop_lat": 48.86251256156095, "code_postal": "93050", "stop_lon": 2.529946785428853, "coord": [48.86251256156095, 2.529946785428853], "stop_id": 4614660, "stop_desc": "93 RUE PAUL ET CAMILLE THOMOUX - 93050", "stop_name": "CIMETIERE DE NEUILLY-SUR-MARNE"}, "geometry": {"type": "Point", "coordinates": [2.529946785428853, 48.86251256156095]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "61b86b6f9a707eeb57d626e56b2534c42b300d5e", "fields": {"departement": "93", "stop_lat": 48.86653078639535, "code_postal": "93050", "stop_lon": 2.529416807489572, "coord": [48.86653078639535, 2.529416807489572], "stop_id": 4614661, "stop_desc": "4-6 AVENUE LEON BLUM - 93050", "stop_name": "LEON BLUM"}, "geometry": {"type": "Point", "coordinates": [2.529416807489572, 48.86653078639535]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6f2cd92e6796e6c0ff6ad0c624509f29b85ddc58", "fields": {"departement": "93", "stop_lat": 48.87202496498664, "code_postal": "93050", "stop_lon": 2.5331565754378143, "coord": [48.87202496498664, 2.5331565754378143], "stop_id": 4614668, "stop_desc": "9 AVENUE ROBERT SCHUMAN - 93050", "stop_name": "CITE DES BOULEAUX"}, "geometry": {"type": "Point", "coordinates": [2.5331565754378143, 48.87202496498664]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cc4c2c4824d695dffcefe5e3dfbcaef58033f570", "fields": {"departement": "93", "stop_lat": 48.87397267142347, "code_postal": "93050", "stop_lon": 2.5291991454845535, "coord": [48.87397267142347, 2.5291991454845535], "stop_id": 4614670, "stop_desc": "28 BIS RUE DE VILLEMOMBLE - 93050", "stop_name": "TROIS COMMUNES"}, "geometry": {"type": "Point", "coordinates": [2.5291991454845535, 48.87397267142347]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ed91aeb2f1f3e866873cf06e1d808e5c76b6f1b0", "fields": {"departement": "93", "stop_lat": 48.88180455357744, "code_postal": "93077", "stop_lon": 2.5209975811063257, "coord": [48.88180455357744, 2.5209975811063257], "stop_id": 4614677, "stop_desc": "154-156 RUE GRANDE RUE - 93077", "stop_name": "BOULEVARD ANDRE"}, "geometry": {"type": "Point", "coordinates": [2.5209975811063257, 48.88180455357744]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "173e396ba2cf5a271388d6ae1c2e03061f105fed", "fields": {"departement": "93", "stop_lat": 48.88287391562427, "code_postal": "93077", "stop_lon": 2.5151553713886163, "coord": [48.88287391562427, 2.5151553713886163], "stop_id": 4614678, "stop_desc": "91 RUE GRANDE RUE - 93077", "stop_name": "RUE DE NEUILLY"}, "geometry": {"type": "Point", "coordinates": [2.5151553713886163, 48.88287391562427]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9efb864327bd4fec86e75b0f833ceec76c12c3af", "fields": {"departement": "93", "stop_lat": 48.882703747741374, "code_postal": "93077", "stop_lon": 2.514759604548513, "coord": [48.882703747741374, 2.514759604548513], "stop_id": 4614679, "stop_desc": "FACE 73 RUE GRANDE RUE - 93077", "stop_name": "RUE DE NEUILLY"}, "geometry": {"type": "Point", "coordinates": [2.514759604548513, 48.882703747741374]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d16f490d85db493c3e695b1696a698233d962001", "fields": {"departement": "93", "stop_lat": 48.884963221706364, "code_postal": "93077", "stop_lon": 2.506045686703492, "coord": [48.884963221706364, 2.506045686703492], "stop_id": 4614682, "stop_desc": "12 TER AV DE ROSNY - 93077", "stop_name": "AVENUE DU RAINCY"}, "geometry": {"type": "Point", "coordinates": [2.506045686703492, 48.884963221706364]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "19c34d6a6cef83f563a4f8886ebf948b8b5d9f9b", "fields": {"departement": "93", "stop_lat": 48.89124834937275, "code_postal": "93010", "stop_lon": 2.4904743115017753, "coord": [48.89124834937275, 2.4904743115017753], "stop_id": 4614692, "stop_desc": "FACE 21 ROUTE DE VILLEMOMBLE - 93010", "stop_name": "LA SABLIERE"}, "geometry": {"type": "Point", "coordinates": [2.4904743115017753, 48.89124834937275]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "824b9cf6f655f94942a93bde59cd69c790551e7e", "fields": {"departement": "93", "stop_lat": 48.8928360914602, "code_postal": "93010", "stop_lon": 2.485735887820397, "coord": [48.8928360914602, 2.485735887820397], "stop_id": 4614693, "stop_desc": "FACE 100 ROUTE DE VILLEMOMBLE - 93010", "stop_name": "L'ETOILE"}, "geometry": {"type": "Point", "coordinates": [2.485735887820397, 48.8928360914602]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1082d2a3932c002235bcf08862504bf1e9e33cfc", "fields": {"departement": "93", "stop_lat": 48.89500194695772, "code_postal": "93010", "stop_lon": 2.4783817764764313, "coord": [48.89500194695772, 2.4783817764764313], "stop_id": 4614697, "stop_desc": "FACE 7 R DE LA LIBERTE - 93010", "stop_name": "GARE DE BONDY RER"}, "geometry": {"type": "Point", "coordinates": [2.4783817764764313, 48.89500194695772]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eb2c63bcf072183b8cd7c35aa178a2d790eebf18", "fields": {"departement": "93", "stop_lat": 48.89556049930796, "code_postal": "93010", "stop_lon": 2.4772383471583588, "coord": [48.89556049930796, 2.4772383471583588], "stop_id": 4614698, "stop_desc": "RUE ROGER SALENGRO - 93010", "stop_name": "GARE DE BONDY RER"}, "geometry": {"type": "Point", "coordinates": [2.4772383471583588, 48.89556049930796]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a70c2384f271257c80e6d0ba01a4680b27aed29c", "fields": {"departement": "93", "stop_lat": 48.900075717229335, "code_postal": "93010", "stop_lon": 2.4816944299365256, "coord": [48.900075717229335, 2.4816944299365256], "stop_id": 4614700, "stop_desc": "49 AVENUE CARNOT - 93010", "stop_name": "BLANQUI - CARNOT"}, "geometry": {"type": "Point", "coordinates": [2.4816944299365256, 48.900075717229335]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "426f54ed7fbf429813486821bd5fb9c2ce570bae", "fields": {"departement": "93", "stop_lat": 48.90585160187891, "code_postal": "93008", "stop_lon": 2.4685955199065472, "coord": [48.90585160187891, 2.4685955199065472], "stop_id": 4614707, "stop_desc": "433-435 AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "PONT DE BONDY"}, "geometry": {"type": "Point", "coordinates": [2.4685955199065472, 48.90585160187891]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f219e699bf21525cf13cabfa6b2f2d8e27d1d559", "fields": {"departement": "93", "stop_lat": 48.905486896676855, "code_postal": "93008", "stop_lon": 2.4651318210827156, "coord": [48.905486896676855, 2.4651318210827156], "stop_id": 4614710, "stop_desc": "412 AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "RUE DES PEUPLIERS"}, "geometry": {"type": "Point", "coordinates": [2.4651318210827156, 48.905486896676855]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5e7bd883667e929d0d5642413959ff2913687075", "fields": {"departement": "93", "stop_lat": 48.90569029404579, "code_postal": "93008", "stop_lon": 2.459720013319434, "coord": [48.90569029404579, 2.459720013319434], "stop_id": 4614758, "stop_desc": "AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "CITE ADMINISTRATIVE"}, "geometry": {"type": "Point", "coordinates": [2.459720013319434, 48.90569029404579]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1b244ca3432cbe843bd4adf5168c5a8d6634a3e0", "fields": {"departement": "93", "stop_lat": 48.90555453249922, "code_postal": "93008", "stop_lon": 2.469044655471792, "coord": [48.90555453249922, 2.469044655471792], "stop_id": 4614760, "stop_desc": "FACE 439 AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "PONT DE BONDY"}, "geometry": {"type": "Point", "coordinates": [2.469044655471792, 48.90555453249922]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9401caa55e489a624e1eeee15848f8fa5b0a7f60", "fields": {"departement": "93", "stop_lat": 48.90084337776183, "code_postal": "93010", "stop_lon": 2.4785612667664876, "coord": [48.90084337776183, 2.4785612667664876], "stop_id": 4614764, "stop_desc": "50 RUE ROGER SALENGRO - 93010", "stop_name": "BLANQUI - SALENGRO"}, "geometry": {"type": "Point", "coordinates": [2.4785612667664876, 48.90084337776183]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d32b939170a28f4bc2cd2b1c1d7399a0be45f3e9", "fields": {"departement": "93", "stop_lat": 48.89795091404474, "code_postal": "93010", "stop_lon": 2.4773811142980615, "coord": [48.89795091404474, 2.4773811142980615], "stop_id": 4614765, "stop_desc": "90-92 RUE ROGER SALENGRO - 93010", "stop_name": "BAUDIN"}, "geometry": {"type": "Point", "coordinates": [2.4773811142980615, 48.89795091404474]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "482d3d6b210b9ba137cb5578518b79e1d73d827b", "fields": {"departement": "93", "stop_lat": 48.88646284176616, "code_postal": "93077", "stop_lon": 2.500490355104128, "coord": [48.88646284176616, 2.500490355104128], "stop_id": 4614773, "stop_desc": "57 RUE FRANCOIS COPPEE - 93077", "stop_name": "MEISSONIER"}, "geometry": {"type": "Point", "coordinates": [2.500490355104128, 48.88646284176616]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "55300876f261f58eafec27e13c85f50c1ccd6fc7", "fields": {"departement": "93", "stop_lat": 48.88559272991972, "code_postal": "93077", "stop_lon": 2.512003064011451, "coord": [48.88559272991972, 2.512003064011451], "stop_id": 4614776, "stop_desc": "16-18 AVENUE DU GENERAL LECLERC - 93077", "stop_name": "GUSTAVE RODET"}, "geometry": {"type": "Point", "coordinates": [2.512003064011451, 48.88559272991972]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "54a5a57df213e7d03fa9f3c3ebf3a606a015f532", "fields": {"departement": "93", "stop_lat": 48.87397267142347, "code_postal": "93050", "stop_lon": 2.5291991454845535, "coord": [48.87397267142347, 2.5291991454845535], "stop_id": 4614781, "stop_desc": "28 BIS RUE DE VILLEMOMBLE - 93050", "stop_name": "TROIS COMMUNES"}, "geometry": {"type": "Point", "coordinates": [2.5291991454845535, 48.87397267142347]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8cf6e3971c68567b3c1269ea30cde94b49e7905d", "fields": {"departement": "94", "stop_lat": 48.76456680792492, "code_postal": "94034", "stop_lon": 2.3276559189748434, "coord": [48.76456680792492, 2.3276559189748434], "stop_id": 4651119, "stop_desc": "FACE 43 R EMILE ZOLA - 94034", "stop_name": "POSTE ANNEXE"}, "geometry": {"type": "Point", "coordinates": [2.3276559189748434, 48.76456680792492]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a817968f0da35e539a6a8ff5756f0d63bec5f7a6", "fields": {"departement": "75", "stop_lat": 48.823617082339766, "code_postal": "75114", "stop_lon": 2.3262974674069907, "coord": [48.823617082339766, 2.3262974674069907], "stop_id": 4651121, "stop_desc": "PISTE GARE ROUTIERE - 75114", "stop_name": "PORTE D'ORLEANS"}, "geometry": {"type": "Point", "coordinates": [2.3262974674069907, 48.823617082339766]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e235ac9d50ff829194bf98d042f775c029402841", "fields": {"departement": "75", "stop_lat": 48.83479812557195, "code_postal": "75114", "stop_lon": 2.3330342236102313, "coord": [48.83479812557195, 2.3330342236102313], "stop_id": 4651125, "stop_desc": "95 AVENUE DENFERT-ROCHEREAU - 75114", "stop_name": "DENFERT-ROCHEREAU - ARAGO"}, "geometry": {"type": "Point", "coordinates": [2.3330342236102313, 48.83479812557195]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "818fee2b3ff4eaa3d185d1e36dad2155aa731bf1", "fields": {"departement": "75", "stop_lat": 48.839256036606045, "code_postal": "75114", "stop_lon": 2.3367645211123738, "coord": [48.839256036606045, 2.3367645211123738], "stop_id": 4651127, "stop_desc": "49 AVENUE DE L'OBSERVATOIRE - 75114", "stop_name": "OBSERVATOIRE - PORT ROYAL"}, "geometry": {"type": "Point", "coordinates": [2.3367645211123738, 48.839256036606045]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "213e4645f17494f09cf35e93c83878f4ba50e950", "fields": {"departement": "75", "stop_lat": 48.84195229967122, "code_postal": "75105", "stop_lon": 2.338058039954899, "coord": [48.84195229967122, 2.338058039954899], "stop_id": 4651128, "stop_desc": "131 BOULEVARD SAINT MICHEL - 75105", "stop_name": "VAL DE GRACE"}, "geometry": {"type": "Point", "coordinates": [2.338058039954899, 48.84195229967122]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "56aaebbfc1eb04d86067f1c261fd9771b05682f7", "fields": {"departement": "75", "stop_lat": 48.843552071590224, "code_postal": "75105", "stop_lon": 2.3389295319749386, "coord": [48.843552071590224, 2.3389295319749386], "stop_id": 4651129, "stop_desc": "109 BOULEVARD SAINT MICHEL - 75105", "stop_name": "AUGUSTE COMTE"}, "geometry": {"type": "Point", "coordinates": [2.3389295319749386, 48.843552071590224]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "79eca0a7d7e187a70dd061756973ea7b7a86292f", "fields": {"departement": "75", "stop_lat": 48.89741211839957, "code_postal": "75119", "stop_lon": 2.386148461529299, "coord": [48.89741211839957, 2.386148461529299], "stop_id": 4658157, "stop_desc": "81/83 BD MACDONALD - 75119", "stop_name": "PORTE DE LA VILLETTE"}, "geometry": {"type": "Point", "coordinates": [2.386148461529299, 48.89741211839957]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "085eab76d2334dca1d585c3664b6da3ab0b65e2a", "fields": {"departement": "93", "stop_lat": 48.91439831194438, "code_postal": "93001", "stop_lon": 2.403467689395335, "coord": [48.91439831194438, 2.403467689395335], "stop_id": 4658165, "stop_desc": "213 AVENUE JEAN JAURES - 93001", "stop_name": "FORT D'AUBERVILLIERS - METRO"}, "geometry": {"type": "Point", "coordinates": [2.403467689395335, 48.91439831194438]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "878af17877d6785f513c3948296dc96e2ff0aaab", "fields": {"departement": "93", "stop_lat": 48.92037956025435, "code_postal": "93027", "stop_lon": 2.410457415914394, "coord": [48.92037956025435, 2.410457415914394], "stop_id": 4658168, "stop_desc": "FACE 48 AV PAUL VAILLANT COUTURIER - 93027", "stop_name": "LA COURNEUVE-8 MAI 1945"}, "geometry": {"type": "Point", "coordinates": [2.410457415914394, 48.92037956025435]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "95e4719600383b487679c021a1b646532d4e56bf", "fields": {"departement": "93", "stop_lat": 48.924968772529134, "code_postal": "93027", "stop_lon": 2.4153736130101375, "coord": [48.924968772529134, 2.4153736130101375], "stop_id": 4658170, "stop_desc": "140 AVENUE PAUL VAILLANT-COUTURIER - 93027", "stop_name": "RUE RATEAU"}, "geometry": {"type": "Point", "coordinates": [2.4153736130101375, 48.924968772529134]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1733cf7fa3ca18f696404ed49346c5385c9d28f1", "fields": {"departement": "93", "stop_lat": 48.93447002280072, "code_postal": "93013", "stop_lon": 2.425263733014868, "coord": [48.93447002280072, 2.425263733014868], "stop_id": 4658177, "stop_desc": "65 AVENUE DE LA DIVISION LECLERC - 93013", "stop_name": "ANIZAN CAVILLON - HOTEL DE VILLE"}, "geometry": {"type": "Point", "coordinates": [2.425263733014868, 48.93447002280072]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f16392f0195abd6f5e6957c8c5185c539cf59706", "fields": {"departement": "93", "stop_lat": 48.9364636778597, "code_postal": "93013", "stop_lon": 2.4271768776938742, "coord": [48.9364636778597, 2.4271768776938742], "stop_id": 4658179, "stop_desc": "95 AVENUE DE LA DIVISION LECLERC - 93013", "stop_name": "PIERRE CURIE"}, "geometry": {"type": "Point", "coordinates": [2.4271768776938742, 48.9364636778597]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "977a8a2a36f88baf3b3f2ed2add629d123a43d40", "fields": {"departement": "93", "stop_lat": 48.95610285084341, "code_postal": "93030", "stop_lon": 2.4451558718862723, "coord": [48.95610285084341, 2.4451558718862723], "stop_id": 4658189, "stop_desc": "238 AV DU 8 MAI 1945 - 93030", "stop_name": "COLONEL FABIEN"}, "geometry": {"type": "Point", "coordinates": [2.4451558718862723, 48.95610285084341]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0c5f3288613cde866aa7c4083bc4b79dde4e997a", "fields": {"departement": "93", "stop_lat": 48.95409401787022, "code_postal": "93007", "stop_lon": 2.4503370755822766, "coord": [48.95409401787022, 2.4503370755822766], "stop_id": 4658193, "stop_desc": "AVENUE DES FRERES LUMIERE - 93007", "stop_name": "ZA DU PONT YBLON"}, "geometry": {"type": "Point", "coordinates": [2.4503370755822766, 48.95409401787022]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cfb5e9d433eea97d52c2b48598dbbc0911d6ab96", "fields": {"departement": "93", "stop_lat": 48.947437743110015, "code_postal": "93030", "stop_lon": 2.437005981300839, "coord": [48.947437743110015, 2.437005981300839], "stop_id": 4658197, "stop_desc": "FACE 122 AVENUE DU 8 MAI 1945 - 93030", "stop_name": "MUSEE DE L'AIR ET DE L'ESPACE"}, "geometry": {"type": "Point", "coordinates": [2.437005981300839, 48.947437743110015]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2bd0652d3d668cf2eef6f99ab3604742ea6aa245", "fields": {"departement": "93", "stop_lat": 48.943450608178786, "code_postal": "93013", "stop_lon": 2.4333556294850047, "coord": [48.943450608178786, 2.4333556294850047], "stop_id": 4658199, "stop_desc": "FACE 52 AV DU 8 MAI 1945 - 93013", "stop_name": "MICHELET - PARC DES EXPOSITIONS"}, "geometry": {"type": "Point", "coordinates": [2.4333556294850047, 48.943450608178786]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3cadd71f85791a02e5ff901ce792295e13d6c888", "fields": {"departement": "93", "stop_lat": 48.906134844593, "code_postal": "93001", "stop_lon": 2.394568330990257, "coord": [48.906134844593, 2.394568330990257], "stop_id": 4658203, "stop_desc": "103 BIS AVENUE JEAN JAURES - 93001", "stop_name": "CONDORCET"}, "geometry": {"type": "Point", "coordinates": [2.394568330990257, 48.906134844593]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6398f7d90fd4b1302ec545920a86c7a7ebedf7d5", "fields": {"departement": "93", "stop_lat": 48.9059639721162, "code_postal": "93055", "stop_lon": 2.394813537419497, "coord": [48.9059639721162, 2.394813537419497], "stop_id": 4658210, "stop_desc": "120 AVENUE JEAN JAURES - 93055", "stop_name": "CONDORCET"}, "geometry": {"type": "Point", "coordinates": [2.394813537419497, 48.9059639721162]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8790148acf8f0c252980bfc6ac10fff2b863da8b", "fields": {"departement": "93", "stop_lat": 48.91142512932666, "code_postal": "93001", "stop_lon": 2.400668813128449, "coord": [48.91142512932666, 2.400668813128449], "stop_id": 4658212, "stop_desc": "172 AVENUE JEAN JAURES - 93001", "stop_name": "RECHOSSIERE"}, "geometry": {"type": "Point", "coordinates": [2.400668813128449, 48.91142512932666]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8e319da6049adc898d13a1e27d30d12a83449681", "fields": {"departement": "93", "stop_lat": 48.916724295544824, "code_postal": "93055", "stop_lon": 2.4063751121186447, "coord": [48.916724295544824, 2.4063751121186447], "stop_id": 4658216, "stop_desc": "FACE 247 AVENUE JEAN JAURES - 93055", "stop_name": "HELENE COCHENNEC"}, "geometry": {"type": "Point", "coordinates": [2.4063751121186447, 48.916724295544824]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b05cd58b0e8eaee13898e6a36f947c2b7613999f", "fields": {"departement": "93", "stop_lat": 48.921080375066495, "code_postal": "93027", "stop_lon": 2.4107311475850186, "coord": [48.921080375066495, 2.4107311475850186], "stop_id": 4658219, "stop_desc": "63 AVENUE PAUL VAILLANT COUTURIER - 93027", "stop_name": "LA COURNEUVE-8 MAI 1945"}, "geometry": {"type": "Point", "coordinates": [2.4107311475850186, 48.921080375066495]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "43e7434820877f205dfd1880c055464dc781ba0f", "fields": {"departement": "93", "stop_lat": 48.9291895200751, "code_postal": "93027", "stop_lon": 2.419976389381094, "coord": [48.9291895200751, 2.419976389381094], "stop_id": 4658222, "stop_desc": "178 AVENUE PAUL VAILLANT-COUTURIER - 93027", "stop_name": "AVENUE PAUL VAILLANT COUTURIER N0 176-191"}, "geometry": {"type": "Point", "coordinates": [2.419976389381094, 48.9291895200751]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4dd7f97c71740545747c5d1f1ae262a1705438de", "fields": {"departement": "93", "stop_lat": 48.9364636778597, "code_postal": "93013", "stop_lon": 2.4271768776938742, "coord": [48.9364636778597, 2.4271768776938742], "stop_id": 4658229, "stop_desc": "95 AVENUE DE LA DIVISION LECLERC - 93013", "stop_name": "PIERRE CURIE"}, "geometry": {"type": "Point", "coordinates": [2.4271768776938742, 48.9364636778597]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "285b0db42ec3cffe22c78bb2437c0b9ab44db6de", "fields": {"departement": "93", "stop_lat": 48.94333342758962, "code_postal": "93007", "stop_lon": 2.4337919856393526, "coord": [48.94333342758962, 2.4337919856393526], "stop_id": 4658232, "stop_desc": "52 AVENUE DU 8 MAI 1945 - 93007", "stop_name": "MICHELET - PARC DES EXPOSITIONS"}, "geometry": {"type": "Point", "coordinates": [2.4337919856393526, 48.94333342758962]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e66258fbc5cfc4b7cc7a8e60f2287c94b6965883", "fields": {"departement": "93", "stop_lat": 48.9481288514466, "code_postal": "93007", "stop_lon": 2.438044271536468, "coord": [48.9481288514466, 2.438044271536468], "stop_id": 4658234, "stop_desc": "AVENUE DU 8 MAI 1945 - 93007", "stop_name": "MUSEE DE L'AIR ET DE L'ESPACE"}, "geometry": {"type": "Point", "coordinates": [2.438044271536468, 48.9481288514466]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0e4159d9d739d9e7bdfaa1198f420931732e1b0d", "fields": {"departement": "93", "stop_lat": 48.94982606812028, "code_postal": "93007", "stop_lon": 2.4395484863144565, "coord": [48.94982606812028, 2.4395484863144565], "stop_id": 4658235, "stop_desc": "174-176 AVENUE DU 8 MAI 1945 - 93007", "stop_name": "LENINE"}, "geometry": {"type": "Point", "coordinates": [2.4395484863144565, 48.94982606812028]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3a9f297932eadfb01c77631e7e92da6d308f8d68", "fields": {"departement": "93", "stop_lat": 48.95443302604512, "code_postal": "93030", "stop_lon": 2.443255617206152, "coord": [48.95443302604512, 2.443255617206152], "stop_id": 4658238, "stop_desc": "AV DU 8 MAI 1945 - 93030", "stop_name": "PONT YBLON - SANTOS DUMONT"}, "geometry": {"type": "Point", "coordinates": [2.443255617206152, 48.95443302604512]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "36636330af70cd124e804412329adeaa7abbf07a", "fields": {"departement": "95", "stop_lat": 48.96234065705168, "code_postal": "95277", "stop_lon": 2.453603304611677, "coord": [48.96234065705168, 2.453603304611677], "stop_id": 4658241, "stop_desc": "0 R DE LA FERME SAINT-SIMON - 95277", "stop_name": "FERME SAINT-SIMON"}, "geometry": {"type": "Point", "coordinates": [2.453603304611677, 48.96234065705168]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e89c728e4dc1a0c7aad5b161ae4e22bee815c7ee", "fields": {"departement": "93", "stop_lat": 48.91778431436412, "code_postal": "93001", "stop_lon": 2.407140153386434, "coord": [48.91778431436412, 2.407140153386434], "stop_id": 4658254, "stop_desc": "263 AVENUE JEAN JAURES - 93001", "stop_name": "EDOUARD VAILLANT - JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.407140153386434, 48.91778431436412]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c163a108ec99774b7bb989d1d4c640ab3a83835c", "fields": {"departement": "75", "stop_lat": 48.88590111544366, "code_postal": "75117", "stop_lon": 2.292351079713893, "coord": [48.88590111544366, 2.292351079713893], "stop_id": 4677617, "stop_desc": "PLACE STUART MERRILL - 75117", "stop_name": "PORTE DE CHAMPERRET"}, "geometry": {"type": "Point", "coordinates": [2.292351079713893, 48.88590111544366]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d169972a1f98490b2940804b7695198fe57735ca", "fields": {"departement": "92", "stop_lat": 48.890376638026304, "code_postal": "92044", "stop_lon": 2.29207462275655, "coord": [48.890376638026304, 2.29207462275655], "stop_id": 4677620, "stop_desc": "2 RUE DU PRESIDENT WILSON - 92044", "stop_name": "WILSON - COURCELLES"}, "geometry": {"type": "Point", "coordinates": [2.29207462275655, 48.890376638026304]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "22f62c9abc5973adb43a21aaa71198d5fe7b7be3", "fields": {"departement": "92", "stop_lat": 48.9127783467993, "code_postal": "92004", "stop_lon": 2.2844331930387765, "coord": [48.9127783467993, 2.2844331930387765], "stop_id": 4677635, "stop_desc": "66 AVENUE D'ARGENTEUIL - 92004", "stop_name": "COMETE"}, "geometry": {"type": "Point", "coordinates": [2.2844331930387765, 48.9127783467993]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ab826f6462db2e201ba3a8f4a246e7c9342a3d1f", "fields": {"departement": "92", "stop_lat": 48.91233799498084, "code_postal": "92004", "stop_lon": 2.2844609115267955, "coord": [48.91233799498084, 2.2844609115267955], "stop_id": 4677636, "stop_desc": "47 AVENUE D'ARGENTEUIL - 92004", "stop_name": "COMETE"}, "geometry": {"type": "Point", "coordinates": [2.2844609115267955, 48.91233799498084]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c922233d9cb410c04cf6e2bbe8f0e41edddaa7e6", "fields": {"departement": "92", "stop_lat": 48.91540172320488, "code_postal": "92004", "stop_lon": 2.282589717064443, "coord": [48.91540172320488, 2.282589717064443], "stop_id": 4677638, "stop_desc": "107 AVENUE D'ARGENTEUIL - 92004", "stop_name": "RUE DES CHAMPS"}, "geometry": {"type": "Point", "coordinates": [2.282589717064443, 48.91540172320488]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "16922bc3ca4ce057a3bfbe882cf9f7502d10f330", "fields": {"departement": "94", "stop_lat": 48.80858458226651, "code_postal": "94041", "stop_lon": 2.3735186767175427, "coord": [48.80858458226651, 2.3735186767175427], "stop_id": 4677660, "stop_desc": "78 AVENUE DE VERDUN - 94041", "stop_name": "CARNOT"}, "geometry": {"type": "Point", "coordinates": [2.3735186767175427, 48.80858458226651]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5d0b27dd4c296cbc8ae8f116b4644d1bb6601fb1", "fields": {"departement": "94", "stop_lat": 48.79826381702136, "code_postal": "94081", "stop_lon": 2.3816335340724804, "coord": [48.79826381702136, 2.3816335340724804], "stop_id": 4677664, "stop_desc": "61 BOULEVARD DE STALINGRAD - 94081", "stop_name": "LA CIVETTE"}, "geometry": {"type": "Point", "coordinates": [2.3816335340724804, 48.79826381702136]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ea8995cc271c9fe975d0f83ef9339db25d1c50bd", "fields": {"departement": "75", "stop_lat": 48.81954334884737, "code_postal": "75113", "stop_lon": 2.363141616039275, "coord": [48.81954334884737, 2.363141616039275], "stop_id": 4677675, "stop_desc": "FACE 142 BOULEVARD MASSENA - 75113", "stop_name": "PORTE DE CHOISY"}, "geometry": {"type": "Point", "coordinates": [2.363141616039275, 48.81954334884737]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6c3ad96a67e689b233ae338166ef14a341c8c2e5", "fields": {"departement": "94", "stop_lat": 48.816459574639566, "code_postal": "94041", "stop_lon": 2.367345434609985, "coord": [48.816459574639566, 2.367345434609985], "stop_id": 4677677, "stop_desc": "4 AVENUE DE VERDUN - 94041", "stop_name": "VERDUN - CHATEAUDUN"}, "geometry": {"type": "Point", "coordinates": [2.367345434609985, 48.816459574639566]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0b628e575ca6f0107ee9bd4ef5f83e9c0eee033a", "fields": {"departement": "94", "stop_lat": 48.81331311831112, "code_postal": "94041", "stop_lon": 2.370174229249393, "coord": [48.81331311831112, 2.370174229249393], "stop_id": 4677680, "stop_desc": "73 AVENUE DE VERDUN - 94041", "stop_name": "CIMETIERE PARISIEN - PLACE DU GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.370174229249393, 48.81331311831112]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6690fd07920b00063f898d89c12aad178466835c", "fields": {"departement": "94", "stop_lat": 48.80858458226651, "code_postal": "94041", "stop_lon": 2.3735186767175427, "coord": [48.80858458226651, 2.3735186767175427], "stop_id": 4677681, "stop_desc": "78 AVENUE DE VERDUN - 94041", "stop_name": "CARNOT"}, "geometry": {"type": "Point", "coordinates": [2.3735186767175427, 48.80858458226651]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3f3d0657b2a658090588fe217f8d55da343c383c", "fields": {"departement": "94", "stop_lat": 48.80922268950512, "code_postal": "94041", "stop_lon": 2.373600768521272, "coord": [48.80922268950512, 2.373600768521272], "stop_id": 4677682, "stop_desc": "73 AVENUE DE VERDUN - 94041", "stop_name": "CARNOT"}, "geometry": {"type": "Point", "coordinates": [2.373600768521272, 48.80922268950512]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "410f49148ba19c6d94a3a68fa064de8f20395f21", "fields": {"departement": "94", "stop_lat": 48.80391880828929, "code_postal": "94081", "stop_lon": 2.3769850194880426, "coord": [48.80391880828929, 2.3769850194880426], "stop_id": 4677685, "stop_desc": "FACE 140 BOULEVARD DE STALINGRAD - 94081", "stop_name": "CENTRE BUS DE VITRY"}, "geometry": {"type": "Point", "coordinates": [2.3769850194880426, 48.80391880828929]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5cf22182262a369ea815f6dda738751f53499082", "fields": {"departement": "94", "stop_lat": 48.79826381702136, "code_postal": "94081", "stop_lon": 2.3816335340724804, "coord": [48.79826381702136, 2.3816335340724804], "stop_id": 4677687, "stop_desc": "61 BOULEVARD DE STALINGRAD - 94081", "stop_name": "LA CIVETTE"}, "geometry": {"type": "Point", "coordinates": [2.3816335340724804, 48.79826381702136]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ea171ff04031703f7864c193a8656d48455bf983", "fields": {"departement": "94", "stop_lat": 48.78563163463027, "code_postal": "94081", "stop_lon": 2.3917014455806394, "coord": [48.78563163463027, 2.3917014455806394], "stop_id": 4677695, "stop_desc": "AVENUE YOURI GAGARINE - 94081", "stop_name": "CAMILLE GROULT"}, "geometry": {"type": "Point", "coordinates": [2.3917014455806394, 48.78563163463027]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0399c034670afee030dbba017db3c36dbbf55c04", "fields": {"departement": "94", "stop_lat": 48.78288941619004, "code_postal": "94081", "stop_lon": 2.3936162801973566, "coord": [48.78288941619004, 2.3936162801973566], "stop_id": 4677697, "stop_desc": "FACE AU 167 AVENUE YOURI GAGARINE - 94081", "stop_name": "CONSTANT COQUELIN"}, "geometry": {"type": "Point", "coordinates": [2.3936162801973566, 48.78288941619004]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "917c3300c732d778046aeefe5b0faef4e814b8a2", "fields": {"departement": "94", "stop_lat": 48.76796449757513, "code_postal": "94073", "stop_lon": 2.402981928452445, "coord": [48.76796449757513, 2.402981928452445], "stop_id": 4677703, "stop_desc": "3 BOULEVARD DE STALINGRAD - 94073", "stop_name": "VERDUN - HOCHE"}, "geometry": {"type": "Point", "coordinates": [2.402981928452445, 48.76796449757513]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dad4789b39e9f9a853e6451863b0c997a5d086a2", "fields": {"departement": "94", "stop_lat": 48.76459279271852, "code_postal": "94022", "stop_lon": 2.4050714452376734, "coord": [48.76459279271852, 2.4050714452376734], "stop_id": 4677704, "stop_desc": "1 BOULEVARD DES ALLIES - 94022", "stop_name": "ROUGET DE LISLE"}, "geometry": {"type": "Point", "coordinates": [2.4050714452376734, 48.76459279271852]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cb135495b996d4788fa6f5038b8c5cf72924c2c5", "fields": {"departement": "94", "stop_lat": 48.76512298112146, "code_postal": "94022", "stop_lon": 2.4052624830228733, "coord": [48.76512298112146, 2.4052624830228733], "stop_id": 4677705, "stop_desc": "BOULEVARD DES ALLIES - 94022", "stop_name": "ROUGET DE LISLE"}, "geometry": {"type": "Point", "coordinates": [2.4052624830228733, 48.76512298112146]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3bf7ce42bd83ed5d73ae9cbc6ec556f96badc562", "fields": {"departement": "94", "stop_lat": 48.75393738910948, "code_postal": "94022", "stop_lon": 2.4124930210682587, "coord": [48.75393738910948, 2.4124930210682587], "stop_id": 4677713, "stop_desc": "AVENUE DE NEWBURN - 94022", "stop_name": "ROBERT PEARY"}, "geometry": {"type": "Point", "coordinates": [2.4124930210682587, 48.75393738910948]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9a88aafbf99a26577d550a452b70f45d22a9a14d", "fields": {"departement": "94", "stop_lat": 48.74457500601486, "code_postal": "94054", "stop_lon": 2.4070431683026823, "coord": [48.74457500601486, 2.4070431683026823], "stop_id": 4677721, "stop_desc": "58 AVENUE ADRIEN RAYNAL - 94054", "stop_name": "FER A CHEVAL"}, "geometry": {"type": "Point", "coordinates": [2.4070431683026823, 48.74457500601486]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "98401c6771ba7333dfddd4e41113e72dad796cce", "fields": {"departement": "94", "stop_lat": 48.7447445765711, "code_postal": "94054", "stop_lon": 2.392215838582799, "coord": [48.7447445765711, 2.392215838582799], "stop_id": 4677725, "stop_desc": "FACE 40 AVENUE CHARLES TILLON - 94054", "stop_name": "PARC MELIES"}, "geometry": {"type": "Point", "coordinates": [2.392215838582799, 48.7447445765711]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "488da04824ca02d8641a928ea30c8d86597f2802", "fields": {"departement": "94", "stop_lat": 48.746323965957295, "code_postal": "94054", "stop_lon": 2.3758265141008157, "coord": [48.746323965957295, 2.3758265141008157], "stop_id": 4677728, "stop_desc": "RUE CHARLES TILLON - 94054", "stop_name": "CITE JARDINS"}, "geometry": {"type": "Point", "coordinates": [2.3758265141008157, 48.746323965957295]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "944be09a78a614bf499cd46ff3eea4cf250057ba", "fields": {"departement": "94", "stop_lat": 48.74627181595754, "code_postal": "94073", "stop_lon": 2.3698871247463935, "coord": [48.74627181595754, 2.3698871247463935], "stop_id": 4677730, "stop_desc": "AVENUE DU DOCTEUR MARIE - 94073", "stop_name": "THIAIS PONT DE RUNGIS"}, "geometry": {"type": "Point", "coordinates": [2.3698871247463935, 48.74627181595754]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "47cfb9961b36a50043dfd9b50564da9d3ec3c797", "fields": {"departement": "91", "stop_lat": 48.74359458544199, "code_postal": "91479", "stop_lon": 2.3649113242053637, "coord": [48.74359458544199, 2.3649113242053637], "stop_id": 4677732, "stop_desc": "ROUTE NUMERO 5 - 91479", "stop_name": "HANGAR N 6"}, "geometry": {"type": "Point", "coordinates": [2.3649113242053637, 48.74359458544199]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ffe2b2adf000f33d8b0ceabee4c420e06230488b", "fields": {"departement": "94", "stop_lat": 48.734946454964906, "code_postal": "94054", "stop_lon": 2.3704371330916256, "coord": [48.734946454964906, 2.3704371330916256], "stop_id": 4677734, "stop_desc": "AVENUE DE L'UNION - 94054", "stop_name": "COEUR D'ORLY"}, "geometry": {"type": "Point", "coordinates": [2.3704371330916256, 48.734946454964906]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "82006753522b0e5ad1c17285e2beb5ecd42253b6", "fields": {"departement": "94", "stop_lat": 48.735027212023176, "code_postal": "94054", "stop_lon": 2.370926361700839, "coord": [48.735027212023176, 2.370926361700839], "stop_id": 4677735, "stop_desc": "AVENUE DE L'UNION - 94054", "stop_name": "COEUR D'ORLY"}, "geometry": {"type": "Point", "coordinates": [2.370926361700839, 48.735027212023176]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f798b43bd9cc124c46b8f36f5aaecb8c5a6c7702", "fields": {"departement": "94", "stop_lat": 48.728879688960305, "code_postal": "94054", "stop_lon": 2.369156116527317, "coord": [48.728879688960305, 2.369156116527317], "stop_id": 4677736, "stop_desc": "AEROPORT D'ORLY - 94054", "stop_name": "AEROPORT D'ORLY-TERMINAL SUD"}, "geometry": {"type": "Point", "coordinates": [2.369156116527317, 48.728879688960305]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c080decb43cf230b68218f07690865f76f75d360", "fields": {"departement": "94", "stop_lat": 48.80417032541045, "code_postal": "94041", "stop_lon": 2.3774070087558283, "coord": [48.80417032541045, 2.3774070087558283], "stop_id": 4677744, "stop_desc": "148 BOULEVARD DE STALINGRAD - 94041", "stop_name": "CENTRE BUS DE VITRY"}, "geometry": {"type": "Point", "coordinates": [2.3774070087558283, 48.80417032541045]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "24542417479046c71a22ca2e29ec391f08dc76ac", "fields": {"departement": "94", "stop_lat": 48.80922268950512, "code_postal": "94041", "stop_lon": 2.373600768521272, "coord": [48.80922268950512, 2.373600768521272], "stop_id": 4677752, "stop_desc": "73 AVENUE DE VERDUN - 94041", "stop_name": "CARNOT"}, "geometry": {"type": "Point", "coordinates": [2.373600768521272, 48.80922268950512]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "204193c59e02e59b51a3388bf6bd212da8d423ae", "fields": {"departement": "94", "stop_lat": 48.7949551072651, "code_postal": "94081", "stop_lon": 2.3846779874533124, "coord": [48.7949551072651, 2.3846779874533124], "stop_id": 4677760, "stop_desc": "BOULEVARD DE STALINGRAD - 94081", "stop_name": "CHARLES INFROIT"}, "geometry": {"type": "Point", "coordinates": [2.3846779874533124, 48.7949551072651]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "44eff97b15468df8c498eacd2076db98e6cb2eae", "fields": {"departement": "94", "stop_lat": 48.76512298112146, "code_postal": "94022", "stop_lon": 2.4052624830228733, "coord": [48.76512298112146, 2.4052624830228733], "stop_id": 4677775, "stop_desc": "BOULEVARD DES ALLIES - 94022", "stop_name": "ROUGET DE LISLE"}, "geometry": {"type": "Point", "coordinates": [2.4052624830228733, 48.76512298112146]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b2b5d3e7079e4f77b1b9caf7ae21acc2ae24d9a7", "fields": {"departement": "94", "stop_lat": 48.76091523800913, "code_postal": "94022", "stop_lon": 2.4075137501114936, "coord": [48.76091523800913, 2.4075137501114936], "stop_id": 4677776, "stop_desc": "22 AVENUE DE LA REPUBLIQUE - 94022", "stop_name": "WALDECK ROUSSEAU"}, "geometry": {"type": "Point", "coordinates": [2.4075137501114936, 48.76091523800913]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3f98fcb52bbcdf0c500db1c44f3ff012b8bdf8f0", "fields": {"departement": "94", "stop_lat": 48.75384773922528, "code_postal": "94022", "stop_lon": 2.4121258754862116, "coord": [48.75384773922528, 2.4121258754862116], "stop_id": 4677782, "stop_desc": "AVENUE DE NEWBURN - 94022", "stop_name": "ROBERT PEARY"}, "geometry": {"type": "Point", "coordinates": [2.4121258754862116, 48.75384773922528]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "97d70ffdf877192f58d5b39f4587d1f7cd0fbca5", "fields": {"departement": "94", "stop_lat": 48.74701405136239, "code_postal": "94054", "stop_lon": 2.4162342230163825, "coord": [48.74701405136239, 2.4162342230163825], "stop_id": 4677786, "stop_desc": "FACE 4 RUE JEAN MERMOZ - 94054", "stop_name": "LES SAULES RER"}, "geometry": {"type": "Point", "coordinates": [2.4162342230163825, 48.74701405136239]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6b4fb6685dda959fe3796e696476c5a92411ed8c", "fields": {"departement": "94", "stop_lat": 48.74479958382108, "code_postal": "94054", "stop_lon": 2.4072609227980992, "coord": [48.74479958382108, 2.4072609227980992], "stop_id": 4677790, "stop_desc": "71 AVENUE ADRIEN RAYNAL - 94054", "stop_name": "FER A CHEVAL"}, "geometry": {"type": "Point", "coordinates": [2.4072609227980992, 48.74479958382108]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b6bcd25551251456f957927b6641cf34b1618d23", "fields": {"departement": "75", "stop_lat": 48.83834852631959, "code_postal": "75116", "stop_lon": 2.2574689553932474, "coord": [48.83834852631959, 2.2574689553932474], "stop_id": 4687322, "stop_desc": "PLACE DE LA PORTE DE SAINT CLOUD - 75116", "stop_name": "PORTE DE SAINT-CLOUD-METRO"}, "geometry": {"type": "Point", "coordinates": [2.2574689553932474, 48.83834852631959]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fdbb18900a2ce6fc334178d29b7b4cb3969be8fb", "fields": {"departement": "92", "stop_lat": 48.83422429460844, "code_postal": "92012", "stop_lon": 2.259081776529187, "coord": [48.83422429460844, 2.259081776529187], "stop_id": 4687326, "stop_desc": "AVENUE LE JOUR SE LEVE - 92012", "stop_name": "ABEL GANCE"}, "geometry": {"type": "Point", "coordinates": [2.259081776529187, 48.83422429460844]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "64e5f18485680a8992c15642b6c3c5d2d3c7d7e7", "fields": {"departement": "92", "stop_lat": 48.82913147873064, "code_postal": "92040", "stop_lon": 2.2640581557633284, "coord": [48.82913147873064, 2.2640581557633284], "stop_id": 4687331, "stop_desc": "FACE 6 RUE ROUGET DE L'ISLE - 92040", "stop_name": "ISSY-VAL DE SEINE"}, "geometry": {"type": "Point", "coordinates": [2.2640581557633284, 48.82913147873064]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6ac6806de3a68e8e385cbc726bd1b67dcb0376b8", "fields": {"departement": "92", "stop_lat": 48.82770486209949, "code_postal": "92040", "stop_lon": 2.26810308702108, "coord": [48.82770486209949, 2.26810308702108], "stop_id": 4687332, "stop_desc": "6-8 BOULEVARD DES FRERES VOISIN - 92040", "stop_name": "PRESIDENT ROBERT SCHUMAN"}, "geometry": {"type": "Point", "coordinates": [2.26810308702108, 48.82770486209949]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7c50e8141bbaebd41d4832e994589a573a678fcc", "fields": {"departement": "92", "stop_lat": 48.82801275135446, "code_postal": "92040", "stop_lon": 2.2722000700485663, "coord": [48.82801275135446, 2.2722000700485663], "stop_id": 4687335, "stop_desc": "19 BOULEVARD DES FRERES VOISIN - 92040", "stop_name": "VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.2722000700485663, 48.82801275135446]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d2707ad63effe98831fb23d5c3f7114596c1ec07", "fields": {"departement": "92", "stop_lat": 48.82739562507031, "code_postal": "92040", "stop_lon": 2.2779861305343347, "coord": [48.82739562507031, 2.2779861305343347], "stop_id": 4687337, "stop_desc": "FACE 10 BOULEVARD GAMBETTA - 92040", "stop_name": "CORENTIN CELTON-METRO"}, "geometry": {"type": "Point", "coordinates": [2.2779861305343347, 48.82739562507031]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c84887d8234074031b3dc1de94a5ea8fa649f72f", "fields": {"departement": "93", "stop_lat": 48.926325728066686, "code_postal": "93029", "stop_lon": 2.4392702163160442, "coord": [48.926325728066686, 2.4392702163160442], "stop_id": 5794649, "stop_desc": "125 RUE SADI CARNOT - 93029", "stop_name": "ARISTIDE BRIAND"}, "geometry": {"type": "Point", "coordinates": [2.4392702163160442, 48.926325728066686]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "54c626741e9aefadfe2dfd3839189bca6d836dcc", "fields": {"departement": "93", "stop_lat": 48.91995250198689, "code_postal": "93029", "stop_lon": 2.4508489198538204, "coord": [48.91995250198689, 2.4508489198538204], "stop_id": 5794655, "stop_desc": "74 AVENUE JEAN JAURES - 93029", "stop_name": "PLACE DU 19 MARS 1962"}, "geometry": {"type": "Point", "coordinates": [2.4508489198538204, 48.91995250198689]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "20a68a04b1e60497fbefcbd36158be22df4e2c0d", "fields": {"departement": "93", "stop_lat": 48.92014120206481, "code_postal": "93029", "stop_lon": 2.450876607325212, "coord": [48.92014120206481, 2.450876607325212], "stop_id": 5794656, "stop_desc": "79 AVENUE JEAN JAURES - 93029", "stop_name": "PLACE DU 19 MARS 1962"}, "geometry": {"type": "Point", "coordinates": [2.450876607325212, 48.92014120206481]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "589c60804c6357667a384358a66efdf760ac3d99", "fields": {"departement": "93", "stop_lat": 48.92265178851074, "code_postal": "93029", "stop_lon": 2.4567735079056705, "coord": [48.92265178851074, 2.4567735079056705], "stop_id": 5794660, "stop_desc": "219 AVENUE HENRI BARBUSSE - 93029", "stop_name": "BARBUSSE - CROIZAT"}, "geometry": {"type": "Point", "coordinates": [2.4567735079056705, 48.92265178851074]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6073a338d9e42fde64ad808b5ccec1b983ed1f58", "fields": {"departement": "93", "stop_lat": 48.90796351706181, "code_postal": "93014", "stop_lon": 2.5339605105943814, "coord": [48.90796351706181, 2.5339605105943814], "stop_id": 5794670, "stop_desc": "BOULEVARD GAGARINE - 93014", "stop_name": "COLLEGE LOUISE MICHEL"}, "geometry": {"type": "Point", "coordinates": [2.5339605105943814, 48.90796351706181]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1e022a962b4b8dde568b10b5633280bf49ea0ca3", "fields": {"departement": "93", "stop_lat": 48.909341809093966, "code_postal": "93046", "stop_lon": 2.5263852358477106, "coord": [48.909341809093966, 2.5263852358477106], "stop_id": 5794672, "stop_desc": "20 BOULEVARD MARX DORMOY - 93046", "stop_name": "SALENGRO"}, "geometry": {"type": "Point", "coordinates": [2.5263852358477106, 48.909341809093966]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ddb2a0491b0bdf57f498f3861db117e83dd029ef", "fields": {"departement": "93", "stop_lat": 48.90611111259935, "code_postal": "93046", "stop_lon": 2.5234286814581375, "coord": [48.90611111259935, 2.5234286814581375], "stop_id": 5794673, "stop_desc": "FACE 87 BOULEVARD MARX DORMOY - 93046", "stop_name": "REPUBLIQUE - MARX DORMOY"}, "geometry": {"type": "Point", "coordinates": [2.5234286814581375, 48.90611111259935]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6e1a4f9980089b606eca779d3b2a1a39a4da9a25", "fields": {"departement": "93", "stop_lat": 48.90585160187891, "code_postal": "93008", "stop_lon": 2.4685955199065472, "coord": [48.90585160187891, 2.4685955199065472], "stop_id": 5794686, "stop_desc": "433-435 AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "PONT DE BONDY"}, "geometry": {"type": "Point", "coordinates": [2.4685955199065472, 48.90585160187891]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ed9736f76d678cd97e3bd01428bd083ce054c031", "fields": {"departement": "93", "stop_lat": 48.90870952071069, "code_postal": "93008", "stop_lon": 2.451083311558328, "coord": [48.90870952071069, 2.451083311558328], "stop_id": 5794690, "stop_desc": "AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "RENE CAMIER"}, "geometry": {"type": "Point", "coordinates": [2.451083311558328, 48.90870952071069]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c08a7bb9abc31e12faea6c2d9260e1abc24801d1", "fields": {"departement": "93", "stop_lat": 48.911252186179276, "code_postal": "93008", "stop_lon": 2.4420083335197096, "coord": [48.911252186179276, 2.4420083335197096], "stop_id": 5794694, "stop_desc": "AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "LIEUTENANT LEBRUN"}, "geometry": {"type": "Point", "coordinates": [2.4420083335197096, 48.911252186179276]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "94814fe01f8cd59f8a882870ed5fee6ed902e015", "fields": {"departement": "93", "stop_lat": 48.91423410186426, "code_postal": "93029", "stop_lon": 2.4334514173350046, "coord": [48.91423410186426, 2.4334514173350046], "stop_id": 5794697, "stop_desc": "RUE DE STALINGRAD - 93029", "stop_name": "VOLTAIRE"}, "geometry": {"type": "Point", "coordinates": [2.4334514173350046, 48.91423410186426]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d8afa18ae3bddc20472bfc9ed90f3e90f92a4e28", "fields": {"departement": "93", "stop_lat": 48.932538229574945, "code_postal": "93013", "stop_lon": 2.4247421268099214, "coord": [48.932538229574945, 2.4247421268099214], "stop_id": 5794708, "stop_desc": "8 AVENUE FRANCIS DE PRESSENSE - 93013", "stop_name": "JEAN JAURES - DIVISION LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.4247421268099214, 48.932538229574945]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8c9991e7fef0511093191181a3a8070b30ec3e05", "fields": {"departement": "93", "stop_lat": 48.90796351706181, "code_postal": "93014", "stop_lon": 2.5339605105943814, "coord": [48.90796351706181, 2.5339605105943814], "stop_id": 5794715, "stop_desc": "BOULEVARD GAGARINE - 93014", "stop_name": "COLLEGE LOUISE MICHEL"}, "geometry": {"type": "Point", "coordinates": [2.5339605105943814, 48.90796351706181]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b47b0512270af6297dae2c0454ad53ab57900c26", "fields": {"departement": "77", "stop_lat": 48.84523513115238, "code_postal": "77083", "stop_lon": 2.585263641276989, "coord": [48.84523513115238, 2.585263641276989], "stop_id": 5815084, "stop_desc": "RUE NELSON MANDELA - 77083", "stop_name": "LYCEE RENE DESCARTES"}, "geometry": {"type": "Point", "coordinates": [2.585263641276989, 48.84523513115238]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "13f3df6d74e1d25482f9ddc5444d42e2af036864", "fields": {"departement": "91", "stop_lat": 48.70216768058842, "code_postal": "91027", "stop_lon": 2.3624177989832913, "coord": [48.70216768058842, 2.3624177989832913], "stop_id": 5816775, "stop_desc": "10 R DES POURPOINTIERS - 91027", "stop_name": "PLEIN MIDI"}, "geometry": {"type": "Point", "coordinates": [2.3624177989832913, 48.70216768058842]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2528e60688e6fd4d5c9563e9e862543da38e0695", "fields": {"departement": "91", "stop_lat": 48.71091389701225, "code_postal": "91027", "stop_lon": 2.388934002771103, "coord": [48.71091389701225, 2.388934002771103], "stop_id": 5816783, "stop_desc": "28 AV HENRI DUNANT - 91027", "stop_name": "CIMETIERE D'ATHIS-MONS"}, "geometry": {"type": "Point", "coordinates": [2.388934002771103, 48.71091389701225]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "08e224ce7b7c3bcd61a2b9075ea9e691170ec155", "fields": {"departement": "91", "stop_lat": 48.711650315597296, "code_postal": "91027", "stop_lon": 2.3903744420213293, "coord": [48.711650315597296, 2.3903744420213293], "stop_id": 5816786, "stop_desc": "AV HENRI DUNANT - 91027", "stop_name": "CLOS NOLLET"}, "geometry": {"type": "Point", "coordinates": [2.3903744420213293, 48.711650315597296]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9f43f85afa6b3f0b1d1a4e98cb5760de0cc404d8", "fields": {"departement": "91", "stop_lat": 48.70942281040112, "code_postal": "91027", "stop_lon": 2.386582910577231, "coord": [48.70942281040112, 2.386582910577231], "stop_id": 5816789, "stop_desc": "AVENUE MARCEL SEMBAT - 91027", "stop_name": "PLACE HENRI DEUDON"}, "geometry": {"type": "Point", "coordinates": [2.386582910577231, 48.70942281040112]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4ec91293bebcb4cb04a02c786e4074ba3ace0e90", "fields": {"departement": "91", "stop_lat": 48.70560395966478, "code_postal": "91027", "stop_lon": 2.3834557586682097, "coord": [48.70560395966478, 2.3834557586682097], "stop_id": 5816790, "stop_desc": "163-165 AV JULES VALLES - 91027", "stop_name": "PANORAMA"}, "geometry": {"type": "Point", "coordinates": [2.3834557586682097, 48.70560395966478]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c5d16348147699a5a4d1248bf04bcff2c60ac86e", "fields": {"departement": "91", "stop_lat": 48.69946259847792, "code_postal": "91027", "stop_lon": 2.3601080668735013, "coord": [48.69946259847792, 2.3601080668735013], "stop_id": 5816796, "stop_desc": "2 - 2 BIS R DES JARDINIERS - 91027", "stop_name": "JARDINIERS"}, "geometry": {"type": "Point", "coordinates": [2.3601080668735013, 48.69946259847792]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5af0fef90180f6c391c49c1ceffafcc3f1932482", "fields": {"departement": "91", "stop_lat": 48.70018033170158, "code_postal": "91027", "stop_lon": 2.366286895414, "coord": [48.70018033170158, 2.366286895414], "stop_id": 5816800, "stop_desc": "43-45 R HENRI BARBUSSE - 91027", "stop_name": "NORMANN"}, "geometry": {"type": "Point", "coordinates": [2.366286895414, 48.70018033170158]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d0d7489590073a2f73d5c5ccb1ad3e61776f6a21", "fields": {"departement": "91", "stop_lat": 48.698273120726405, "code_postal": "91027", "stop_lon": 2.372355488763076, "coord": [48.698273120726405, 2.372355488763076], "stop_id": 5816802, "stop_desc": "2 BIS AV JULES VALLES - 91027", "stop_name": "PYRAMIDE DE JUVISY"}, "geometry": {"type": "Point", "coordinates": [2.372355488763076, 48.698273120726405]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dcc72a44fe6ebd4504ee63f35f35295a39c43a9b", "fields": {"departement": "91", "stop_lat": 48.70646575078744, "code_postal": "91027", "stop_lon": 2.3862134249681155, "coord": [48.70646575078744, 2.3862134249681155], "stop_id": 5816806, "stop_desc": "R PAUL VAILLANT COUTURIER - 91027", "stop_name": "LA POSTE"}, "geometry": {"type": "Point", "coordinates": [2.3862134249681155, 48.70646575078744]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ead1cf47bc37b6b0fda8a7b8e36ae8edd7070b53", "fields": {"departement": "91", "stop_lat": 48.70988833841886, "code_postal": "91027", "stop_lon": 2.390902328356646, "coord": [48.70988833841886, 2.390902328356646], "stop_id": 5816808, "stop_desc": "RUE GENEVIEVE ANTHONIOZ-DE GAULLE - 91027", "stop_name": "SAINT-CHARLES"}, "geometry": {"type": "Point", "coordinates": [2.390902328356646, 48.70988833841886]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ef5b1c20a9ad4def77c3483b880de8d6b21ecab4", "fields": {"departement": "91", "stop_lat": 48.70612911534911, "code_postal": "91027", "stop_lon": 2.3722793058279845, "coord": [48.70612911534911, 2.3722793058279845], "stop_id": 5816816, "stop_desc": "138 AVENUE MARCEL SEMBAT - 91027", "stop_name": "BELLE ETOILE - LA POMPE"}, "geometry": {"type": "Point", "coordinates": [2.3722793058279845, 48.70612911534911]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fcd3d2f8af4174f67ac399fe9c98bd931b54c153", "fields": {"departement": "94", "stop_lat": 48.84523046287141, "code_postal": "94080", "stop_lon": 2.432683449855939, "coord": [48.84523046287141, 2.432683449855939], "stop_id": 5922161, "stop_desc": "48-50 AVENUE DE PARIS - 94080", "stop_name": "VIGNERONS"}, "geometry": {"type": "Point", "coordinates": [2.432683449855939, 48.84523046287141]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "36acc52b2c29d926d9e35ba9d81de2502f5be89e", "fields": {"departement": "93", "stop_lat": 48.8517619438065, "code_postal": "93048", "stop_lon": 2.42411559777833, "coord": [48.8517619438065, 2.42411559777833], "stop_id": 5922165, "stop_desc": "FACE 68 RUE ROBESPIERRE - 93048", "stop_name": "CUVIER"}, "geometry": {"type": "Point", "coordinates": [2.42411559777833, 48.8517619438065]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6660d0669da5fcb0ab021da9d416160bff5774a5", "fields": {"departement": "93", "stop_lat": 48.861895737161, "code_postal": "93006", "stop_lon": 2.417035770572929, "coord": [48.861895737161, 2.417035770572929], "stop_id": 5922170, "stop_desc": "47 AVENUE DE LA REPUBLIQUE - 93006", "stop_name": "GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.417035770572929, 48.861895737161]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3017134edb3b43912cd271263ce380294e772357", "fields": {"departement": "93", "stop_lat": 48.863810058805996, "code_postal": "93006", "stop_lon": 2.4170250937886517, "coord": [48.863810058805996, 2.4170250937886517], "stop_id": 5922171, "stop_desc": "PISTE GARE ROUTIERE - 93006", "stop_name": "GALLIENI"}, "geometry": {"type": "Point", "coordinates": [2.4170250937886517, 48.863810058805996]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c11093f723d80ae0be8727173416f7a6e06ad81a", "fields": {"departement": "93", "stop_lat": 48.869095448059795, "code_postal": "93006", "stop_lon": 2.415793496742091, "coord": [48.869095448059795, 2.415793496742091], "stop_id": 5922174, "stop_desc": "52 AVENUE GAMBETTA - 93006", "stop_name": "MAIRIE DE BAGNOLET"}, "geometry": {"type": "Point", "coordinates": [2.415793496742091, 48.869095448059795]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "76cf9617246736c5fa2ff2ab02ad4be77b4d19da", "fields": {"departement": "93", "stop_lat": 48.87097248146681, "code_postal": "93006", "stop_lon": 2.4177718030705373, "coord": [48.87097248146681, 2.4177718030705373], "stop_id": 5922175, "stop_desc": "82 AVENUE GAMBETTA - 93006", "stop_name": "MARIE-ANNE COLOMBIER"}, "geometry": {"type": "Point", "coordinates": [2.4177718030705373, 48.87097248146681]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e690c90817adeaca6c2fbd361918c47976d3d0dd", "fields": {"departement": "93", "stop_lat": 48.88891248049133, "code_postal": "93063", "stop_lon": 2.428293694325462, "coord": [48.88891248049133, 2.428293694325462], "stop_id": 5922187, "stop_desc": "65 AVENUE DU COLONEL FABIEN - 93063", "stop_name": "MANEYROL"}, "geometry": {"type": "Point", "coordinates": [2.428293694325462, 48.88891248049133]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5ca76506d5bff8b61195c8ff4cdb70cd0ffa122a", "fields": {"departement": "93", "stop_lat": 48.88473959333616, "code_postal": "93063", "stop_lon": 2.4319112813314825, "coord": [48.88473959333616, 2.4319112813314825], "stop_id": 5922201, "stop_desc": "41-43 AVENUE PAUL VAILLANT-COUTURIER - 93063", "stop_name": "VASSOU - LENINE"}, "geometry": {"type": "Point", "coordinates": [2.4319112813314825, 48.88473959333616]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d68f700eb52774770dbf757f8e1b86d9bac99468", "fields": {"departement": "93", "stop_lat": 48.878870653419405, "code_postal": "93063", "stop_lon": 2.432241214103226, "coord": [48.878870653419405, 2.432241214103226], "stop_id": 5922205, "stop_desc": "FACE 58 RUE FLOREAL - 93063", "stop_name": "LES NOYERS"}, "geometry": {"type": "Point", "coordinates": [2.432241214103226, 48.878870653419405]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b62bb426ed6af75b80bdf1bd8d1f7e3dd956c82d", "fields": {"departement": "93", "stop_lat": 48.87377474556996, "code_postal": "93006", "stop_lon": 2.4203648328031924, "coord": [48.87377474556996, 2.4203648328031924], "stop_id": 5922209, "stop_desc": "133 AVENUE GAMBETTA - 93006", "stop_name": "GAMBETTA - RENE ALAZARD"}, "geometry": {"type": "Point", "coordinates": [2.4203648328031924, 48.87377474556996]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7fb4d527bffd93bd09ba0c5936dd779582537f05", "fields": {"departement": "93", "stop_lat": 48.85293066998596, "code_postal": "93048", "stop_lon": 2.423627265788063, "coord": [48.85293066998596, 2.423627265788063], "stop_id": 5922219, "stop_desc": "54 RUE ROBESPIERRE - 93048", "stop_name": "RASPAIL - REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.423627265788063, 48.85293066998596]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1a5d405a42732dd8b15c93677ce7f80892d125ea", "fields": {"departement": "93", "stop_lat": 48.850647019372666, "code_postal": "93048", "stop_lon": 2.4247674209220653, "coord": [48.850647019372666, 2.4247674209220653], "stop_id": 5922220, "stop_desc": "82 RUE ROBESPIERRE - 93048", "stop_name": "CUVIER"}, "geometry": {"type": "Point", "coordinates": [2.4247674209220653, 48.850647019372666]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0134760fe174b1a0946d5049f8de5e042615b3b3", "fields": {"departement": "94", "stop_lat": 48.84508719554478, "code_postal": "94080", "stop_lon": 2.4320159489963507, "coord": [48.84508719554478, 2.4320159489963507], "stop_id": 5922223, "stop_desc": "21 AVENUE DE PARIS - 94080", "stop_name": "VIGNERONS"}, "geometry": {"type": "Point", "coordinates": [2.4320159489963507, 48.84508719554478]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8b3892c965969cf003364e21b55ed85fe5433d43", "fields": {"departement": "93", "stop_lat": 48.91437948795612, "code_postal": "93001", "stop_lon": 2.404981183228012, "coord": [48.91437948795612, 2.404981183228012], "stop_id": 5944485, "stop_desc": "PISTE GARE ROUTIERE - 93001", "stop_name": "FORT D'AUBERVILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.404981183228012, 48.91437948795612]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a0f4ab2b8ff909ca648c70a3ee0874680bc38179", "fields": {"departement": "93", "stop_lat": 48.910895384137824, "code_postal": "93001", "stop_lon": 2.3997410269389743, "coord": [48.910895384137824, 2.3997410269389743], "stop_id": 5944486, "stop_desc": "183 AVENUE JEAN JAURES - 93001", "stop_name": "RECHOSSIERE"}, "geometry": {"type": "Point", "coordinates": [2.3997410269389743, 48.910895384137824]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ab428a3879340bf7213d2bd305b4e8d079acfc93", "fields": {"departement": "93", "stop_lat": 48.89901570524189, "code_postal": "93055", "stop_lon": 2.3973276012268303, "coord": [48.89901570524189, 2.3973276012268303], "stop_id": 5944493, "stop_desc": "12 AVENUE EDOUARD VAILLANT - 93055", "stop_name": "JEAN MOULIN"}, "geometry": {"type": "Point", "coordinates": [2.3973276012268303, 48.89901570524189]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7e84f3877dd646e81477c5e5a9dbd921ad9e6f6e", "fields": {"departement": "93", "stop_lat": 48.89120416649082, "code_postal": "93055", "stop_lon": 2.4006168128646403, "coord": [48.89120416649082, 2.4006168128646403], "stop_id": 5944499, "stop_desc": "FACE 2 R AUGER - 93055", "stop_name": "HOCHE - JEAN LOLIVE"}, "geometry": {"type": "Point", "coordinates": [2.4006168128646403, 48.89120416649082]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6757c457f0cb8b873580a2b0977015664c14b5a5", "fields": {"departement": "93", "stop_lat": 48.89054284872542, "code_postal": "93055", "stop_lon": 2.40982922555458, "coord": [48.89054284872542, 2.40982922555458], "stop_id": 5944504, "stop_desc": "22 RUE JULES AUFFRET - 93055", "stop_name": "8 MAI 1945"}, "geometry": {"type": "Point", "coordinates": [2.40982922555458, 48.89054284872542]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "721b19d65432a5cb260fafcbdb87f8a1f030510e", "fields": {"departement": "93", "stop_lat": 48.885374227770924, "code_postal": "93055", "stop_lon": 2.4114164257653017, "coord": [48.885374227770924, 2.4114164257653017], "stop_id": 5944508, "stop_desc": "41A R DES POMMIERS - 93055", "stop_name": "MAISON DE QUARTIER - POMMIERS"}, "geometry": {"type": "Point", "coordinates": [2.4114164257653017, 48.885374227770924]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "98d73d4f0171f75bd18cc1bb880e837c6537a95f", "fields": {"departement": "93", "stop_lat": 48.88630517153943, "code_postal": "93055", "stop_lon": 2.4171823647965054, "coord": [48.88630517153943, 2.4171823647965054], "stop_id": 5944509, "stop_desc": "FACE 2 R DES POMMIERS - 93055", "stop_name": "POMMIERS - CIMETIERE"}, "geometry": {"type": "Point", "coordinates": [2.4171823647965054, 48.88630517153943]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "48f250d647f13b5aad3aa455cb7da36ee32d8964", "fields": {"departement": "93", "stop_lat": 48.89490898245388, "code_postal": "93055", "stop_lon": 2.4255645627297566, "coord": [48.89490898245388, 2.4255645627297566], "stop_id": 5944515, "stop_desc": "FACE 4 AV ANATOLE FRANCE - 93055", "stop_name": "RAYMOND QUENEAU - ANATOLE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.4255645627297566, 48.89490898245388]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aa2c880927cb51df36c43132b1bc302f56265afc", "fields": {"departement": "93", "stop_lat": 48.885318656347145, "code_postal": "93055", "stop_lon": 2.41401922797563, "coord": [48.885318656347145, 2.41401922797563], "stop_id": 5944517, "stop_desc": "185 LA RUE DU BOIS - 93055", "stop_name": "PARC HENRI BARBUSSE"}, "geometry": {"type": "Point", "coordinates": [2.41401922797563, 48.885318656347145]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bb24a2176557c79e6fc1619d8f20a0cbac29d495", "fields": {"departement": "93", "stop_lat": 48.885644173819145, "code_postal": "93055", "stop_lon": 2.4108853302043145, "coord": [48.885644173819145, 2.4108853302043145], "stop_id": 5944520, "stop_desc": "FACE 68 RUE JULES AUFFRET - 93055", "stop_name": "LES POMMIERS"}, "geometry": {"type": "Point", "coordinates": [2.4108853302043145, 48.885644173819145]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0b54e463f6d52477cf2d640cf5e45a8bd1ab5f70", "fields": {"departement": "92", "stop_lat": 48.788527964826656, "code_postal": "92032", "stop_lon": 2.28787851531733, "coord": [48.788527964826656, 2.28787851531733], "stop_id": 5976637, "stop_desc": "4 AVENUE JEAN MOULIN - 92032", "stop_name": "BOULEVARD DE LA REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.28787851531733, 48.788527964826656]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b24339a189801acabf8f7747a9811e6669987b5f", "fields": {"departement": "92", "stop_lat": 48.78378902648166, "code_postal": "92032", "stop_lon": 2.282633030295862, "coord": [48.78378902648166, 2.282633030295862], "stop_id": 5976642, "stop_desc": "FACE 84 AVENUE JEAN MOULIN - 92032", "stop_name": "CARREFOUR DES MOUILLEBOEUFS"}, "geometry": {"type": "Point", "coordinates": [2.282633030295862, 48.78378902648166]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6ffbc2f7bdba5a3f2d531dc9769164147b4e53b3", "fields": {"departement": "92", "stop_lat": 48.77245154539877, "code_postal": "92019", "stop_lon": 2.2752612128272904, "coord": [48.77245154539877, 2.2752612128272904], "stop_id": 5976646, "stop_desc": "72 AVENUE ROGER SALENGRO - 92019", "stop_name": "MARC SANGNIER"}, "geometry": {"type": "Point", "coordinates": [2.2752612128272904, 48.77245154539877]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aac87c4798ef33810a0133dc1c961a0e7f26f6de", "fields": {"departement": "92", "stop_lat": 48.77004221401073, "code_postal": "92019", "stop_lon": 2.2742442816575563, "coord": [48.77004221401073, 2.2742442816575563], "stop_id": 5976649, "stop_desc": "89 AVENUE ROGER SALENGRO - 92019", "stop_name": "JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.2742442816575563, 48.77004221401073]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3b1a4ed86fbb9688bd9ac29e73169f11bfe2b5a3", "fields": {"departement": "91", "stop_lat": 48.74586122520928, "code_postal": "91645", "stop_lon": 2.269013842406873, "coord": [48.74586122520928, 2.269013842406873], "stop_id": 5976663, "stop_desc": "FACE 56 BOULEVARD DU MARECHAL FOCH - 91645", "stop_name": "PARON"}, "geometry": {"type": "Point", "coordinates": [2.269013842406873, 48.74586122520928]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8a0c4d47e0c73be6a6aa8c425d9edcd58dcbe4b9", "fields": {"departement": "91", "stop_lat": 48.74074601079986, "code_postal": "91645", "stop_lon": 2.2535418298794765, "coord": [48.74074601079986, 2.2535418298794765], "stop_id": 5976671, "stop_desc": "FACE 143 RUE D'ESTIENNE D'ORVES - 91645", "stop_name": "RIANTES CITES"}, "geometry": {"type": "Point", "coordinates": [2.2535418298794765, 48.74074601079986]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "789c78eb04009500025b4b556979569dedd4a95f", "fields": {"departement": "91", "stop_lat": 48.7382193017177, "code_postal": "91312", "stop_lon": 2.2299280516962123, "coord": [48.7382193017177, 2.2299280516962123], "stop_id": 5976680, "stop_desc": "AVENUE DU PRESIDENT KENNEDY - 91312", "stop_name": "KENNEDY - BELLEVUE"}, "geometry": {"type": "Point", "coordinates": [2.2299280516962123, 48.7382193017177]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "78c5ec0b5e321084a88a665d328ed1c564b93791", "fields": {"departement": "92", "stop_lat": 48.75801370668038, "code_postal": "92019", "stop_lon": 2.2698135409649574, "coord": [48.75801370668038, 2.2698135409649574], "stop_id": 5976685, "stop_desc": "FACE 5 RUE JEAN-BAPTISTE CLEMENT - 92019", "stop_name": "GROUPE SCOLAIRE SOPHIE BARAT"}, "geometry": {"type": "Point", "coordinates": [2.2698135409649574, 48.75801370668038]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1671c1cab1455c203f7580c78b7ca3d7a159aab5", "fields": {"departement": "92", "stop_lat": 48.78002209425372, "code_postal": "92071", "stop_lon": 2.280556187562754, "coord": [48.78002209425372, 2.280556187562754], "stop_id": 5976686, "stop_desc": "FACE 3 AVENUE DU PLESSIS - 92071", "stop_name": "ROBINSON RER"}, "geometry": {"type": "Point", "coordinates": [2.280556187562754, 48.78002209425372]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "98cc707395b7d7760546ecb85a241b2becb004d8", "fields": {"departement": "92", "stop_lat": 48.80648956893726, "code_postal": "92020", "stop_lon": 2.2982707549064973, "coord": [48.80648956893726, 2.2982707549064973], "stop_id": 5976687, "stop_desc": "140 AVENUE DE LA REPUBLIQUE - 92020", "stop_name": "PIERRE SEMARD - CHATILLON-MONTROUGE"}, "geometry": {"type": "Point", "coordinates": [2.2982707549064973, 48.80648956893726]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9fb3962c4fab6dd1ba2e51721eab6a581b6801d6", "fields": {"departement": "92", "stop_lat": 48.80648956893726, "code_postal": "92020", "stop_lon": 2.2982707549064973, "coord": [48.80648956893726, 2.2982707549064973], "stop_id": 5976688, "stop_desc": "140 AVENUE DE LA REPUBLIQUE - 92020", "stop_name": "PIERRE SEMARD - CHATILLON-MONTROUGE"}, "geometry": {"type": "Point", "coordinates": [2.2982707549064973, 48.80648956893726]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f0fb9345600bcdba9598d910ae3f340cd0b156bb", "fields": {"departement": "92", "stop_lat": 48.802264645455615, "code_postal": "92020", "stop_lon": 2.2963282906160316, "coord": [48.802264645455615, 2.2963282906160316], "stop_id": 5976692, "stop_desc": "33 RUE PERROTIN - 92020", "stop_name": "PERROTIN"}, "geometry": {"type": "Point", "coordinates": [2.2963282906160316, 48.802264645455615]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c9207458ae0cbc153163fc31065141a48eafb22d", "fields": {"departement": "92", "stop_lat": 48.79598046005003, "code_postal": "92032", "stop_lon": 2.2917078144657896, "coord": [48.79598046005003, 2.2917078144657896], "stop_id": 5976696, "stop_desc": "63-65 RUE BLANCHARD - 92032", "stop_name": "CHARTRES - BLANCHARD"}, "geometry": {"type": "Point", "coordinates": [2.2917078144657896, 48.79598046005003]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b0071980089e1b0ade90b414816782fe403fbc3b", "fields": {"departement": "92", "stop_lat": 48.797947265450254, "code_postal": "92020", "stop_lon": 2.2878559541892347, "coord": [48.797947265450254, 2.2878559541892347], "stop_id": 5976698, "stop_desc": "1 RUE DES PIERRELAIS - 92020", "stop_name": "PIERRELAIS - FONTENAY"}, "geometry": {"type": "Point", "coordinates": [2.2878559541892347, 48.797947265450254]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b37a3b2e73fa748449f8a576dbcfc677c20e2518", "fields": {"departement": "92", "stop_lat": 48.79787526636481, "code_postal": "92020", "stop_lon": 2.2876247427945486, "coord": [48.79787526636481, 2.2876247427945486], "stop_id": 5976699, "stop_desc": "FACE 1 RUE DES PIERRELAIS - 92020", "stop_name": "PIERRELAIS - FONTENAY"}, "geometry": {"type": "Point", "coordinates": [2.2876247427945486, 48.79787526636481]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7237ef273039abbbaf9cfb22a2da35f71c6c110a", "fields": {"departement": "92", "stop_lat": 48.79888932890812, "code_postal": "92020", "stop_lon": 2.2840048528585277, "coord": [48.79888932890812, 2.2840048528585277], "stop_id": 5976702, "stop_desc": "16BIS-18 AVENUE DE LA DIVISION LECLERC - 92020", "stop_name": "DIVISION LECLERC - BROSSELETTE"}, "geometry": {"type": "Point", "coordinates": [2.2840048528585277, 48.79888932890812]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1e2014d101e2cb9112c384533e417803e7ba0a24", "fields": {"departement": "92", "stop_lat": 48.78948039145754, "code_postal": "92023", "stop_lon": 2.269092555647171, "coord": [48.78948039145754, 2.269092555647171], "stop_id": 5976709, "stop_desc": "2 BOULEVARD DU MOULIN DE LA TOUR - 92023", "stop_name": "LOUIS PERGAUD"}, "geometry": {"type": "Point", "coordinates": [2.269092555647171, 48.78948039145754]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f705ed5e9551f35dde1a1f53ae70a8c29af2ac9c", "fields": {"departement": "92", "stop_lat": 48.785249576251935, "code_postal": "92060", "stop_lon": 2.25858422925446, "coord": [48.785249576251935, 2.25858422925446], "stop_id": 5976712, "stop_desc": "FACE 42 RUE PAUL RIVET - 92060", "stop_name": "MOULIN DE LA TOUR"}, "geometry": {"type": "Point", "coordinates": [2.25858422925446, 48.785249576251935]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f6fa3385f1138b882e338f207510f5589a1bcc5f", "fields": {"departement": "92", "stop_lat": 48.76523468265433, "code_postal": "92019", "stop_lon": 2.2607763214489163, "coord": [48.76523468265433, 2.2607763214489163], "stop_id": 5976728, "stop_desc": "301 AVENUE DE LA DIVISION LECLERC - 92019", "stop_name": "BUTTE ROUGE - CITE JARDINS"}, "geometry": {"type": "Point", "coordinates": [2.2607763214489163, 48.76523468265433]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "776d62c6ce694f8cb45ebdb8c9323a8d776c4d09", "fields": {"departement": "92", "stop_lat": 48.763651715473046, "code_postal": "92019", "stop_lon": 2.2742928179820256, "coord": [48.763651715473046, 2.2742928179820256], "stop_id": 5976733, "stop_desc": "FACE 197 AVENUE DE LA DIVISION LECLERC - 92019", "stop_name": "LES VALLEES"}, "geometry": {"type": "Point", "coordinates": [2.2742928179820256, 48.763651715473046]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3c7e577bd96b494e1357c2336495c3be58f7269a", "fields": {"departement": "92", "stop_lat": 48.7656776649009, "code_postal": "92019", "stop_lon": 2.281564367481111, "coord": [48.7656776649009, 2.281564367481111], "stop_id": 5976738, "stop_desc": "21 RUE HENRI-IRENEE MARROU - 92019", "stop_name": "RUE DES VIGNES"}, "geometry": {"type": "Point", "coordinates": [2.281564367481111, 48.7656776649009]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "053edda88559c18ca6f4de772ba3d49a33d4c8d1", "fields": {"departement": "92", "stop_lat": 48.77302065093243, "code_postal": "92019", "stop_lon": 2.281012568764139, "coord": [48.77302065093243, 2.281012568764139], "stop_id": 5976744, "stop_desc": "5 RUE JEAN LONGUET - 92019", "stop_name": "HELENE ROEDERER"}, "geometry": {"type": "Point", "coordinates": [2.281012568764139, 48.77302065093243]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "590842283e1fea41dc588c96b8b65ef4018d7a11", "fields": {"departement": "92", "stop_lat": 48.77612938311899, "code_postal": "92019", "stop_lon": 2.278683773355305, "coord": [48.77612938311899, 2.278683773355305], "stop_id": 5976746, "stop_desc": "63 AVENUE EDOUARD DEPREUX - 92019", "stop_name": "EDOUARD DEPREUX - ROGER SALENGRO"}, "geometry": {"type": "Point", "coordinates": [2.278683773355305, 48.77612938311899]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d4f48a5d776d4b7a99a156dced0149de2ffc270a", "fields": {"departement": "92", "stop_lat": 48.77951018460229, "code_postal": "92071", "stop_lon": 2.281413539368541, "coord": [48.77951018460229, 2.281413539368541], "stop_id": 5976749, "stop_desc": "3 AVENUE DE LA GARE - 92071", "stop_name": "ROBINSON RER"}, "geometry": {"type": "Point", "coordinates": [2.281413539368541, 48.77951018460229]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "68eb86978b2ffd9c366e9a2aaf62a3dca3f6fdd0", "fields": {"departement": "92", "stop_lat": 48.779303460940056, "code_postal": "92071", "stop_lon": 2.2814137615884182, "coord": [48.779303460940056, 2.2814137615884182], "stop_id": 5976750, "stop_desc": "3 AVENUE DE LA GARE - 92071", "stop_name": "ROBINSON RER."}, "geometry": {"type": "Point", "coordinates": [2.2814137615884182, 48.779303460940056]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4f27efb0b335e4e7e4005fa621af69862d9a937d", "fields": {"departement": "92", "stop_lat": 48.78797297359984, "code_postal": "92023", "stop_lon": 2.2586617167369663, "coord": [48.78797297359984, 2.2586617167369663], "stop_id": 5976752, "stop_desc": "1-3 RUE DE LA CAVEE - 92023", "stop_name": "LA CAVEE"}, "geometry": {"type": "Point", "coordinates": [2.2586617167369663, 48.78797297359984]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5115c740dd251329577fdd1f47ea9f85b62beba9", "fields": {"departement": "93", "stop_lat": 48.92350162360845, "code_postal": "93027", "stop_lon": 2.3858185100183706, "coord": [48.92350162360845, 2.3858185100183706], "stop_id": 5991316, "stop_desc": "FACE 8-10 RUE SUZANNE MASSON - 93027", "stop_name": "LA COURNEUVE - AUBERVILLIERS RER"}, "geometry": {"type": "Point", "coordinates": [2.3858185100183706, 48.92350162360845]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f956919f7e427212481804913ef4847b631dd42b", "fields": {"departement": "93", "stop_lat": 48.923312997617195, "code_postal": "93027", "stop_lon": 2.385572855532466, "coord": [48.923312997617195, 2.385572855532466], "stop_id": 5991317, "stop_desc": "4-6 RUE SUZANNE MASSON - 93027", "stop_name": "LA COURNEUVE - AUBERVILLIERS RER"}, "geometry": {"type": "Point", "coordinates": [2.385572855532466, 48.923312997617195]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7d59d74ca3407f9f14e1758b0d273e7785932f7f", "fields": {"departement": "93", "stop_lat": 48.92701752331649, "code_postal": "93027", "stop_lon": 2.380598215065691, "coord": [48.92701752331649, 2.380598215065691], "stop_id": 5991318, "stop_desc": "FACE 26 RUE SAINT-JUST - 93027", "stop_name": "LANGEVIN - WALLON"}, "geometry": {"type": "Point", "coordinates": [2.380598215065691, 48.92701752331649]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "410786eb33856191bed43ac9e2db34c6c55d9bfd", "fields": {"departement": "93", "stop_lat": 48.92740407400025, "code_postal": "93027", "stop_lon": 2.3802848479592296, "coord": [48.92740407400025, 2.3802848479592296], "stop_id": 5991319, "stop_desc": "31 AVENUE DU GENERAL LECLERC - 93027", "stop_name": "LANGEVIN - WALLON"}, "geometry": {"type": "Point", "coordinates": [2.3802848479592296, 48.92740407400025]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9e09532df63e9493c8da4e3ff7f05a9cf2fbf135", "fields": {"departement": "93", "stop_lat": 48.93175820686094, "code_postal": "93027", "stop_lon": 2.391364040223026, "coord": [48.93175820686094, 2.391364040223026], "stop_id": 5991323, "stop_desc": "40 AVENUE HENRI BARBUSSE - 93027", "stop_name": "PAUL VERLAINE"}, "geometry": {"type": "Point", "coordinates": [2.391364040223026, 48.93175820686094]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "707cba3718a921b0643b528b311c3f66fea4411e", "fields": {"departement": "93", "stop_lat": 48.9318841157274, "code_postal": "93027", "stop_lon": 2.391159573229721, "coord": [48.9318841157274, 2.391159573229721], "stop_id": 5991324, "stop_desc": "49 AVENUE HENRI BARBUSSE - 93027", "stop_name": "PAUL VERLAINE"}, "geometry": {"type": "Point", "coordinates": [2.391159573229721, 48.9318841157274]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e1d43155789330159a778c3f5ba4a60ad6f5dfad", "fields": {"departement": "93", "stop_lat": 48.93120616158244, "code_postal": "93013", "stop_lon": 2.427440543055621, "coord": [48.93120616158244, 2.427440543055621], "stop_id": 5991337, "stop_desc": "FACE 13 RUE ETIENNE DOLET - 93013", "stop_name": "LE BOURGET-RER."}, "geometry": {"type": "Point", "coordinates": [2.427440543055621, 48.93120616158244]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ae5b923f4641a5cc09b167faa786bc5c0ed8a3d3", "fields": {"departement": "93", "stop_lat": 48.92993519829031, "code_postal": "93029", "stop_lon": 2.432348512476636, "coord": [48.92993519829031, 2.432348512476636], "stop_id": 5991339, "stop_desc": "90 AVENUE MARCEAU - 93029", "stop_name": "EDOUARD VAILLANT"}, "geometry": {"type": "Point", "coordinates": [2.432348512476636, 48.92993519829031]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5ab88177f310e724857f62e72dccc0f8987205a7", "fields": {"departement": "93", "stop_lat": 48.926325728066686, "code_postal": "93029", "stop_lon": 2.4392702163160442, "coord": [48.926325728066686, 2.4392702163160442], "stop_id": 5991340, "stop_desc": "125 RUE SADI CARNOT - 93029", "stop_name": "ARISTIDE BRIAND"}, "geometry": {"type": "Point", "coordinates": [2.4392702163160442, 48.926325728066686]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e8054c92106aee7a298603557e15220af06a7a24", "fields": {"departement": "93", "stop_lat": 48.92723414897826, "code_postal": "93029", "stop_lon": 2.4383991297305485, "coord": [48.92723414897826, 2.4383991297305485], "stop_id": 5991341, "stop_desc": "1 PLACE MAURICE NILES - 93029", "stop_name": "ARISTIDE BRIAND"}, "geometry": {"type": "Point", "coordinates": [2.4383991297305485, 48.92723414897826]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e6e8f9bce33c3c9fc83c0651f56670fe67dc1218", "fields": {"departement": "93", "stop_lat": 48.92014120206481, "code_postal": "93029", "stop_lon": 2.450876607325212, "coord": [48.92014120206481, 2.450876607325212], "stop_id": 5991347, "stop_desc": "79 AVENUE JEAN JAURES - 93029", "stop_name": "PLACE DU 19 MARS 1962"}, "geometry": {"type": "Point", "coordinates": [2.450876607325212, 48.92014120206481]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9730f86e723321a5c8c4d64b4863e98ad459f078", "fields": {"departement": "93", "stop_lat": 48.91607112809631, "code_postal": "93029", "stop_lon": 2.458940045218131, "coord": [48.91607112809631, 2.458940045218131], "stop_id": 5991351, "stop_desc": "207 AVENUE JEAN JAURES - 93029", "stop_name": "BALZAC"}, "geometry": {"type": "Point", "coordinates": [2.458940045218131, 48.91607112809631]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c35bf00964d9e8b80685da1d52bd6ed50f081eee", "fields": {"departement": "93", "stop_lat": 48.91122938094961, "code_postal": "93008", "stop_lon": 2.46536414714809, "coord": [48.91122938094961, 2.46536414714809], "stop_id": 5991354, "stop_desc": "107 AVENUE EDOUARD VAILLANT - 93008", "stop_name": "CHEMIN DU TONNEAU"}, "geometry": {"type": "Point", "coordinates": [2.46536414714809, 48.91122938094961]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5f516f53cdbc459861392650e95b7d18acd3cbe4", "fields": {"departement": "93", "stop_lat": 48.9121110136449, "code_postal": "93008", "stop_lon": 2.4645209751406223, "coord": [48.9121110136449, 2.4645209751406223], "stop_id": 5991355, "stop_desc": "108 AVENUE EDOUARD VAILLANT - 93008", "stop_name": "CHEMIN DU TONNEAU"}, "geometry": {"type": "Point", "coordinates": [2.4645209751406223, 48.9121110136449]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f39503344f42100f1c9e16a32a8a7737edba4b96", "fields": {"departement": "93", "stop_lat": 48.88929481458247, "code_postal": "93053", "stop_lon": 2.4708159294754166, "coord": [48.88929481458247, 2.4708159294754166], "stop_id": 5991368, "stop_desc": "28 AVENUE DU GENERAL LECLERC - 93053", "stop_name": "LES CARROUGES"}, "geometry": {"type": "Point", "coordinates": [2.4708159294754166, 48.88929481458247]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d00a70939ee78137a24a10674d3b1cbeea4fb4d9", "fields": {"departement": "93", "stop_lat": 48.8709253732804, "code_postal": "93064", "stop_lon": 2.4855505258562105, "coord": [48.8709253732804, 2.4855505258562105], "stop_id": 5991380, "stop_desc": "PLACE DES MARTYRS DE LA RESISTANCE - 93064", "stop_name": "ROSNY-SOUS-BOIS RER"}, "geometry": {"type": "Point", "coordinates": [2.4855505258562105, 48.8709253732804]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0ae0aec9e40a420273ae69efd6666d408f72e2eb", "fields": {"departement": "93", "stop_lat": 48.90016006801663, "code_postal": "93010", "stop_lon": 2.471021144801085, "coord": [48.90016006801663, 2.471021144801085], "stop_id": 5991384, "stop_desc": "202 AVENUE DE ROSNY - 93010", "stop_name": "BAUDIN"}, "geometry": {"type": "Point", "coordinates": [2.471021144801085, 48.90016006801663]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0c10470c1b7943ac6c3b2d57afe1e4fac4b7f3e4", "fields": {"departement": "91", "stop_lat": 48.731469602983324, "code_postal": "91377", "stop_lon": 2.283856501392165, "coord": [48.731469602983324, 2.283856501392165], "stop_id": 6041766, "stop_desc": "1 RUE DE ROME - 91377", "stop_name": "HELENE BOUCHER"}, "geometry": {"type": "Point", "coordinates": [2.283856501392165, 48.731469602983324]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c96452619a39886a61456958e47dc38e20e6637d", "fields": {"departement": "91", "stop_lat": 48.728177760401586, "code_postal": "91377", "stop_lon": 2.27934917567897, "coord": [48.728177760401586, 2.27934917567897], "stop_id": 6041772, "stop_desc": "29 RUE DE LONGJUMEAU - 91377", "stop_name": "JEAN MERMOZ"}, "geometry": {"type": "Point", "coordinates": [2.27934917567897, 48.728177760401586]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dd518eba8f990f8338370575269beddcb43b998d", "fields": {"departement": "91", "stop_lat": 48.72805807374259, "code_postal": "91377", "stop_lon": 2.2737924577619357, "coord": [48.72805807374259, 2.2737924577619357], "stop_id": 6041776, "stop_desc": "RUE DU 8 MAI 1945 - 91377", "stop_name": "8 MAI 1945"}, "geometry": {"type": "Point", "coordinates": [2.2737924577619357, 48.72805807374259]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3bb912f761f8b28d141b499a554e7f980f50c3bb", "fields": {"departement": "91", "stop_lat": 48.72795025712105, "code_postal": "91377", "stop_lon": 2.2738741077748967, "coord": [48.72795025712105, 2.2738741077748967], "stop_id": 6041777, "stop_desc": "RUE DU 8 MAI 1945 - 91377", "stop_name": "8 MAI 1945"}, "geometry": {"type": "Point", "coordinates": [2.2738741077748967, 48.72795025712105]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bcbe846cee4ad69752b82efe5cd8a627a743b498", "fields": {"departement": "91", "stop_lat": 48.731032255685456, "code_postal": "91377", "stop_lon": 2.2720224904071755, "coord": [48.731032255685456, 2.2720224904071755], "stop_id": 6041778, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 91377", "stop_name": "MAIRIE DE MASSY"}, "geometry": {"type": "Point", "coordinates": [2.2720224904071755, 48.731032255685456]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4260d996363b04b21dd6056a784cb68a3e41ad4a", "fields": {"departement": "91", "stop_lat": 48.72942210057407, "code_postal": "91377", "stop_lon": 2.2697962766939255, "coord": [48.72942210057407, 2.2697962766939255], "stop_id": 6041779, "stop_desc": "RUE VICTOR BASCH - 91377", "stop_name": "MAIRIE DE MASSY"}, "geometry": {"type": "Point", "coordinates": [2.2697962766939255, 48.72942210057407]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f637ecad9688150b67261179eb22ba4bf3767ae3", "fields": {"departement": "91", "stop_lat": 48.73042073643698, "code_postal": "91377", "stop_lon": 2.256846520054254, "coord": [48.73042073643698, 2.256846520054254], "stop_id": 6041789, "stop_desc": "AVENUE DU PRESIDENT ALLENDE - 91377", "stop_name": "PRESIDENT ALLENDE"}, "geometry": {"type": "Point", "coordinates": [2.256846520054254, 48.73042073643698]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b8affb364293fea9b4ac41cdb611ae0afa677227", "fields": {"departement": "91", "stop_lat": 48.728688026648655, "code_postal": "91377", "stop_lon": 2.2599197711273744, "coord": [48.728688026648655, 2.2599197711273744], "stop_id": 6041792, "stop_desc": "49 AVENUE RAYMOND ARON - 91377", "stop_name": "RAYMOND ARON"}, "geometry": {"type": "Point", "coordinates": [2.2599197711273744, 48.728688026648655]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "93c01725a170c5230301faeb6c18c1d53c9f3768", "fields": {"departement": "91", "stop_lat": 48.730357946729534, "code_postal": "91377", "stop_lon": 2.2570368356717774, "coord": [48.730357946729534, 2.2570368356717774], "stop_id": 6041799, "stop_desc": "AVENUE DU PRESIDENT ALLENDE - 91377", "stop_name": "PRESIDENT ALLENDE."}, "geometry": {"type": "Point", "coordinates": [2.2570368356717774, 48.730357946729534]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "19ce3b0491add1064fcf3fad517abfcbadcbadc2", "fields": {"departement": "91", "stop_lat": 48.729353668825254, "code_postal": "91377", "stop_lon": 2.2762229087458588, "coord": [48.729353668825254, 2.2762229087458588], "stop_id": 4314785, "stop_desc": "3 RUE FUSTEL DE COULANGES - 91377", "stop_name": "GABRIEL PERI"}, "geometry": {"type": "Point", "coordinates": [2.2762229087458588, 48.729353668825254]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1e9f1a91dfadb260aa382895dca24747af9c3534", "fields": {"departement": "91", "stop_lat": 48.72788290719792, "code_postal": "91377", "stop_lon": 2.2830857604019945, "coord": [48.72788290719792, 2.2830857604019945], "stop_id": 4314789, "stop_desc": "AVENUE NATIONALE - 91377", "stop_name": "AUSTRALIE"}, "geometry": {"type": "Point", "coordinates": [2.2830857604019945, 48.72788290719792]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "73faab231e74367813d892e06ac0271c3105a347", "fields": {"departement": "91", "stop_lat": 48.73361104650575, "code_postal": "91377", "stop_lon": 2.289058461406938, "coord": [48.73361104650575, 2.289058461406938], "stop_id": 4314797, "stop_desc": "RUE DES CANADIENS - 91377", "stop_name": "PLACE DE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.289058461406938, 48.73361104650575]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d28468afeefc0b1d6bbbfa1301fc3214720038c0", "fields": {"departement": "92", "stop_lat": 48.734893654886136, "code_postal": "92002", "stop_lon": 2.3083933055221246, "coord": [48.734893654886136, 2.3083933055221246], "stop_id": 4314806, "stop_desc": "CARREFOUR BOYAN - 92002", "stop_name": "LYCEE MONOD"}, "geometry": {"type": "Point", "coordinates": [2.3083933055221246, 48.734893654886136]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "56154dd0c7ac6b0387a640617c8e78fc725ce0c2", "fields": {"departement": "92", "stop_lat": 48.73404093505158, "code_postal": "92002", "stop_lon": 2.3136930962604088, "coord": [48.73404093505158, 2.3136930962604088], "stop_id": 4314809, "stop_desc": "AVENUE LEON JOUHAUX - 92002", "stop_name": "ANTONYPOLE"}, "geometry": {"type": "Point", "coordinates": [2.3136930962604088, 48.73404093505158]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "55bcbc2f30c48e78e49ae83b1ffdba990949cfac", "fields": {"departement": "91", "stop_lat": 48.731822498424634, "code_postal": "91689", "stop_lon": 2.3247406684283005, "coord": [48.731822498424634, 2.3247406684283005], "stop_id": 4314813, "stop_desc": "FACE 17 RUE ANDRE DOLIMIER - 91689", "stop_name": "DOCTEUR TENINE"}, "geometry": {"type": "Point", "coordinates": [2.3247406684283005, 48.731822498424634]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eab07e4b271f4cad61dd90bd0a2eebaa369a90a7", "fields": {"departement": "91", "stop_lat": 48.738977729476964, "code_postal": "91689", "stop_lon": 2.3321043379272886, "coord": [48.738977729476964, 2.3321043379272886], "stop_id": 4314818, "stop_desc": "27 ROUTE DE MONTJEAN - 91689", "stop_name": "MONTJEAN"}, "geometry": {"type": "Point", "coordinates": [2.3321043379272886, 48.738977729476964]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "472953e8a4cb5886ff7d439bd87ceac72868bef2", "fields": {"departement": "94", "stop_lat": 48.74219456123007, "code_postal": "94065", "stop_lon": 2.3532502524215375, "coord": [48.74219456123007, 2.3532502524215375], "stop_id": 4314821, "stop_desc": "AVENUE DE LA GARE - 94065", "stop_name": "LA FRATERNELLE-RER"}, "geometry": {"type": "Point", "coordinates": [2.3532502524215375, 48.74219456123007]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7e93ec51f6f2469f70dd1e81c0221fa275bb3856", "fields": {"departement": "94", "stop_lat": 48.74349759957139, "code_postal": "94065", "stop_lon": 2.3550581852984696, "coord": [48.74349759957139, 2.3550581852984696], "stop_id": 4314823, "stop_desc": "8 RUE LONGJUMEAU - 94065", "stop_name": "LES SOLETS"}, "geometry": {"type": "Point", "coordinates": [2.3550581852984696, 48.74349759957139]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d1a8a0d67ba2fd27b6ea5e14aeef5ed8d07244a8", "fields": {"departement": "94", "stop_lat": 48.74479109752754, "code_postal": "94065", "stop_lon": 2.3598154095515556, "coord": [48.74479109752754, 2.3598154095515556], "stop_id": 4314829, "stop_desc": "RUE DES SOLETS - 94065", "stop_name": "LINDBERGH"}, "geometry": {"type": "Point", "coordinates": [2.3598154095515556, 48.74479109752754]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ef1a44bb0c0cf1a161b86bab97dfcba0f7a2a2e8", "fields": {"departement": "91", "stop_lat": 48.74437677346975, "code_postal": "91479", "stop_lon": 2.3639875731300255, "coord": [48.74437677346975, 2.3639875731300255], "stop_id": 4314831, "stop_desc": "CHEMIN DES AVERNAISES - 91479", "stop_name": "LES AVERNAISES"}, "geometry": {"type": "Point", "coordinates": [2.3639875731300255, 48.74437677346975]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "55cb8157e0749ce65c56635fc5dbbbb86449774c", "fields": {"departement": "94", "stop_lat": 48.74663144489944, "code_postal": "94073", "stop_lon": 2.3695203858416476, "coord": [48.74663144489944, 2.3695203858416476], "stop_id": 4314833, "stop_desc": "ROUTE DE FONTAINEBLEAU (EX RN7) - 94073", "stop_name": "PONT DE RUNGIS-RER"}, "geometry": {"type": "Point", "coordinates": [2.3695203858416476, 48.74663144489944]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a165f5ec50fc0d831a6cd596624619f08e57361e", "fields": {"departement": "94", "stop_lat": 48.755745633075236, "code_postal": "94073", "stop_lon": 2.3689007361969465, "coord": [48.755745633075236, 2.3689007361969465], "stop_id": 4314839, "stop_desc": "AVENUE DE L'EUROPE - 94073", "stop_name": "BELLE EPINE SUD"}, "geometry": {"type": "Point", "coordinates": [2.3689007361969465, 48.755745633075236]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f179345ac0735b505c5e760e25595df43b3b736d", "fields": {"departement": "94", "stop_lat": 48.759448634048056, "code_postal": "94073", "stop_lon": 2.3693244252130907, "coord": [48.759448634048056, 2.3693244252130907], "stop_id": 4314842, "stop_desc": "ROUTE DE THIAIS - 94073", "stop_name": "LE COR DE CHASSE"}, "geometry": {"type": "Point", "coordinates": [2.3693244252130907, 48.759448634048056]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ec9bf3eeec255fd838acc32d256c3bbd9d739bf8", "fields": {"departement": "94", "stop_lat": 48.75911678578232, "code_postal": "94021", "stop_lon": 2.366564526644527, "coord": [48.75911678578232, 2.366564526644527], "stop_id": 4314845, "stop_desc": "RUE DE THIAIS - 94021", "stop_name": "PORTE DE THIAIS"}, "geometry": {"type": "Point", "coordinates": [2.366564526644527, 48.75911678578232]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d348197aeb5c2071da9923b113071ec0e8a6a64a", "fields": {"departement": "94", "stop_lat": 48.76338788403687, "code_postal": "94021", "stop_lon": 2.3583415571494344, "coord": [48.76338788403687, 2.3583415571494344], "stop_id": 4314846, "stop_desc": "AVENUE DE LA CITE - 94021", "stop_name": "MARCHE INTERNATIONAL DE RUNGIS"}, "geometry": {"type": "Point", "coordinates": [2.3583415571494344, 48.76338788403687]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "341e9daf03bbbfd3ad42cc18778ecfa5100db910", "fields": {"departement": "91", "stop_lat": 48.72193082205003, "code_postal": "91377", "stop_lon": 2.263135840244733, "coord": [48.72193082205003, 2.263135840244733], "stop_id": 4314853, "stop_desc": "1 RUE AMPERE - 91377", "stop_name": "MAIL AMPERE"}, "geometry": {"type": "Point", "coordinates": [2.263135840244733, 48.72193082205003]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "25bb272f3070d64e15c1176667c929220be63fa2", "fields": {"departement": "93", "stop_lat": 48.867559196125555, "code_postal": "93048", "stop_lon": 2.458063309002578, "coord": [48.867559196125555, 2.458063309002578], "stop_id": 4364007, "stop_desc": "192 RUE DE ROSNY - 93048", "stop_name": "EDOUARD BRANLY"}, "geometry": {"type": "Point", "coordinates": [2.458063309002578, 48.867559196125555]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ff72bdc704b3386ac25d149fc59372d0de794010", "fields": {"departement": "93", "stop_lat": 48.88324072702506, "code_postal": "93064", "stop_lon": 2.4904778963421714, "coord": [48.88324072702506, 2.4904778963421714], "stop_id": 4364024, "stop_desc": "190-192 BOULEVARD ALSACE LORRAINE - 93064", "stop_name": "LES MARNAUDES"}, "geometry": {"type": "Point", "coordinates": [2.4904778963421714, 48.88324072702506]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f7345c1c408f4b807a8dc70c3e25d324f994a476", "fields": {"departement": "93", "stop_lat": 48.88388732971967, "code_postal": "93077", "stop_lon": 2.5105119386049104, "coord": [48.88388732971967, 2.5105119386049104], "stop_id": 4364032, "stop_desc": "RUE GRANDE RUE - 93077", "stop_name": "CHATEAU DE VILLEMOMBLE"}, "geometry": {"type": "Point", "coordinates": [2.5105119386049104, 48.88388732971967]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ee0e5e5590dd2ac8e8dd14bb62d867d51e553944", "fields": {"departement": "93", "stop_lat": 48.882703747741374, "code_postal": "93077", "stop_lon": 2.514759604548513, "coord": [48.882703747741374, 2.514759604548513], "stop_id": 4364034, "stop_desc": "FACE 73 RUE GRANDE RUE - 93077", "stop_name": "RUE DE NEUILLY"}, "geometry": {"type": "Point", "coordinates": [2.514759604548513, 48.882703747741374]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6520814e101d540a1fe4dab95968eb5b55765086", "fields": {"departement": "93", "stop_lat": 48.88180455357744, "code_postal": "93077", "stop_lon": 2.5209975811063257, "coord": [48.88180455357744, 2.5209975811063257], "stop_id": 4364036, "stop_desc": "154-156 RUE GRANDE RUE - 93077", "stop_name": "BOULEVARD ANDRE"}, "geometry": {"type": "Point", "coordinates": [2.5209975811063257, 48.88180455357744]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3ba64668a573acad8057c872b6bb84f49ef2b46d", "fields": {"departement": "93", "stop_lat": 48.882391916339124, "code_postal": "93077", "stop_lon": 2.5247198110024587, "coord": [48.882391916339124, 2.5247198110024587], "stop_id": 4364038, "stop_desc": "178 BIS RUE GRANDE RUE - 93077", "stop_name": "GAGNY RER"}, "geometry": {"type": "Point", "coordinates": [2.5247198110024587, 48.882391916339124]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "510e9aaad9996f9ed90795e2a6842223bada0bf9", "fields": {"departement": "93", "stop_lat": 48.87957837736191, "code_postal": "93077", "stop_lon": 2.5250502909960995, "coord": [48.87957837736191, 2.5250502909960995], "stop_id": 4364043, "stop_desc": "29-33 RUE SIMON GUITLEVITCH - 93077", "stop_name": "AVENUE LUCIE"}, "geometry": {"type": "Point", "coordinates": [2.5250502909960995, 48.87957837736191]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "947bf64f030fbbab554a1c87411e7b2e7364c793", "fields": {"departement": "91", "stop_lat": 48.70194421424275, "code_postal": "91027", "stop_lon": 2.3869696279314057, "coord": [48.70194421424275, 2.3869696279314057], "stop_id": 4364132, "stop_desc": "FACE 94BIS AVENUE DU 18 AVRIL - 91027", "stop_name": "CITE MOZART"}, "geometry": {"type": "Point", "coordinates": [2.3869696279314057, 48.70194421424275]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "308a90180df34da14c810d97885ab975c011a568", "fields": {"departement": "91", "stop_lat": 48.6909622075468, "code_postal": "91326", "stop_lon": 2.38188143207025, "coord": [48.6909622075468, 2.38188143207025], "stop_id": 4364140, "stop_desc": "FACE 43 R DES GAULOIS - 91326", "stop_name": "JUVISY RER"}, "geometry": {"type": "Point", "coordinates": [2.38188143207025, 48.6909622075468]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "90fe7de714f9c291833f471a63ad8ea455468319", "fields": {"departement": "91", "stop_lat": 48.70220512156463, "code_postal": "91161", "stop_lon": 2.320510931279847, "coord": [48.70220512156463, 2.320510931279847], "stop_id": 4373694, "stop_desc": "36 AVENUE PIERRE BROSSOLETTE - 91161", "stop_name": "PLACE DE LA LIBERATION"}, "geometry": {"type": "Point", "coordinates": [2.320510931279847, 48.70220512156463]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9aedce1255d336f30676547fb80a97027ca1b634", "fields": {"departement": "91", "stop_lat": 48.70610685091893, "code_postal": "91432", "stop_lon": 2.3267432153335452, "coord": [48.70610685091893, 2.3267432153335452], "stop_id": 4373696, "stop_desc": "61 R DE GENERAL LECLERC - 91432", "stop_name": "LYCEE DE MORANGIS"}, "geometry": {"type": "Point", "coordinates": [2.3267432153335452, 48.70610685091893]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a5e6d7f6e181dd46c6ad0a99fc1fbabf0c2e1404", "fields": {"departement": "91", "stop_lat": 48.70731144827232, "code_postal": "91432", "stop_lon": 2.3284541793557256, "coord": [48.70731144827232, 2.3284541793557256], "stop_id": 4373699, "stop_desc": "PLACE GABRIEL FONTAINE - 91432", "stop_name": "GABRIEL FONTAINE"}, "geometry": {"type": "Point", "coordinates": [2.3284541793557256, 48.70731144827232]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1a4b58ce641c095d93217a0692a96c3e6bd5ec92", "fields": {"departement": "91", "stop_lat": 48.69962658643448, "code_postal": "91432", "stop_lon": 2.3384224681687362, "coord": [48.69962658643448, 2.3384224681687362], "stop_id": 4373706, "stop_desc": "18 AV FERDINAND DE LESSEPS - 91432", "stop_name": "EIFFEL - LESSEPS"}, "geometry": {"type": "Point", "coordinates": [2.3384224681687362, 48.69962658643448]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "204ee6b2abc527174561af2ee94b9dda2b03134b", "fields": {"departement": "91", "stop_lat": 48.697478328312435, "code_postal": "91432", "stop_lon": 2.337526242506751, "coord": [48.697478328312435, 2.337526242506751], "stop_id": 4373708, "stop_desc": "FACE 9 AV FERDINAND DE LESSEPS - 91432", "stop_name": "DOCTEUR SCHWEITZER"}, "geometry": {"type": "Point", "coordinates": [2.337526242506751, 48.697478328312435]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "907995b9d01ba8d4e9f24372621a83a7d5462e80", "fields": {"departement": "91", "stop_lat": 48.69815246801482, "code_postal": "91432", "stop_lon": 2.337987919147224, "coord": [48.69815246801482, 2.337987919147224], "stop_id": 4373709, "stop_desc": "FACE 10 AV FERDINAND DE LESSEPS - 91432", "stop_name": "DOCTEUR SCHWEITZER"}, "geometry": {"type": "Point", "coordinates": [2.337987919147224, 48.69815246801482]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "36694dc0b8d036568cdf27589aa3c309e9d21abd", "fields": {"departement": "91", "stop_lat": 48.68999081888685, "code_postal": "91589", "stop_lon": 2.339413335066175, "coord": [48.68999081888685, 2.339413335066175], "stop_id": 4373713, "stop_desc": "83 AV JEAN ALLEMANE - 91589", "stop_name": "RESERVOIR"}, "geometry": {"type": "Point", "coordinates": [2.339413335066175, 48.68999081888685]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fc405a878ce21bd25fab322e968b00d7265c77be", "fields": {"departement": "91", "stop_lat": 48.68988295059515, "code_postal": "91589", "stop_lon": 2.33967128336369, "coord": [48.68988295059515, 2.33967128336369], "stop_id": 4373714, "stop_desc": "88 AV JEAN ALLEMANE - 91589", "stop_name": "RESERVOIR"}, "geometry": {"type": "Point", "coordinates": [2.33967128336369, 48.68988295059515]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b42b895bacc2035b10de4cacc4275f2c75846850", "fields": {"departement": "91", "stop_lat": 48.680912180885926, "code_postal": "91589", "stop_lon": 2.342833636658366, "coord": [48.680912180885926, 2.342833636658366], "stop_id": 4373720, "stop_desc": "6 BD ARISTIDE BRIAND - 91589", "stop_name": "BRIAND - SALENGRO"}, "geometry": {"type": "Point", "coordinates": [2.342833636658366, 48.680912180885926]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "db74e71724f039040dca66391f847730c0b2cdd1", "fields": {"departement": "91", "stop_lat": 48.6770825231923, "code_postal": "91589", "stop_lon": 2.3492804595440546, "coord": [48.6770825231923, 2.3492804595440546], "stop_id": 4373723, "stop_desc": "15 AVENUE CHARLES DE GAULLE - 91589", "stop_name": "SAVIGNY-SUR-ORGE - CARNOT - RER"}, "geometry": {"type": "Point", "coordinates": [2.3492804595440546, 48.6770825231923]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6ada311caf9aef676f569678c536e56117588152", "fields": {"departement": "91", "stop_lat": 48.679740762204, "code_postal": "91589", "stop_lon": 2.3640358129997754, "coord": [48.679740762204, 2.3640358129997754], "stop_id": 4373727, "stop_desc": "FACE 49 RUE DES PRES SAINT-MARTIN - 91589", "stop_name": "PRES SAINT-MARTIN"}, "geometry": {"type": "Point", "coordinates": [2.3640358129997754, 48.679740762204]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3cae68df93f583b1934a8a5fd454ca3544c1f6fc", "fields": {"departement": "91", "stop_lat": 48.71541433978244, "code_postal": "91027", "stop_lon": 2.3718101496357558, "coord": [48.71541433978244, 2.3718101496357558], "stop_id": 4376554, "stop_desc": "PISTE GARE ROUTIERE - 91027", "stop_name": "PORTE DE L'ESSONNE"}, "geometry": {"type": "Point", "coordinates": [2.3718101496357558, 48.71541433978244]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1736a48d08a4f6fac2f9e99ea98e9bc2e11b24b1", "fields": {"departement": "91", "stop_lat": 48.690764432770045, "code_postal": "91326", "stop_lon": 2.381949145916975, "coord": [48.690764432770045, 2.381949145916975], "stop_id": 4376572, "stop_desc": "43 R DES GAULOIS - 91326", "stop_name": "JUVISY-RER"}, "geometry": {"type": "Point", "coordinates": [2.381949145916975, 48.690764432770045]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1dfa649de04fb2dde416a0cc79cd18364775184c", "fields": {"departement": "91", "stop_lat": 48.70919439569311, "code_postal": "91027", "stop_lon": 2.37157513175139, "coord": [48.70919439569311, 2.37157513175139], "stop_id": 4376576, "stop_desc": "AVENUE FRANCOIS MITTERRAND - 91027", "stop_name": "ARISTIDE BRIAND"}, "geometry": {"type": "Point", "coordinates": [2.37157513175139, 48.70919439569311]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e719d925915ac65196e1f19ff36d4bad49544a87", "fields": {"departement": "91", "stop_lat": 48.68892529439915, "code_postal": "91326", "stop_lon": 2.371317390654125, "coord": [48.68892529439915, 2.371317390654125], "stop_id": 4376580, "stop_desc": "18-20 AVENUE DE LA COUR DE FRANCE - 91326", "stop_name": "PIVER"}, "geometry": {"type": "Point", "coordinates": [2.371317390654125, 48.68892529439915]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "97a20f2e8a4607b8da05dda287fb647ba8434726", "fields": {"departement": "91", "stop_lat": 48.69847991744048, "code_postal": "91027", "stop_lon": 2.372151947688958, "coord": [48.69847991744048, 2.372151947688958], "stop_id": 4376583, "stop_desc": "10 AV FRANCOIS MITTERRAND - 91027", "stop_name": "PYRAMIDE DE JUVISY"}, "geometry": {"type": "Point", "coordinates": [2.372151947688958, 48.69847991744048]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d49a9503ad33c5e49ff13e37cf02037b12b332c1", "fields": {"departement": "91", "stop_lat": 48.70353154847919, "code_postal": "91027", "stop_lon": 2.3718973161518453, "coord": [48.70353154847919, 2.3718973161518453], "stop_id": 4376585, "stop_desc": "FACE 75 AVENUE FRANCOIS MITTERRAND - 91027", "stop_name": "MARX DORMOY"}, "geometry": {"type": "Point", "coordinates": [2.3718973161518453, 48.70353154847919]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "38d49ea1cd2b9a940ecdb9c2b431aa63be2960fd", "fields": {"departement": "91", "stop_lat": 48.71540535529991, "code_postal": "91027", "stop_lon": 2.371796560540588, "coord": [48.71540535529991, 2.371796560540588], "stop_id": 4377184, "stop_desc": "PISTE GARE ROUTIERE - 91027", "stop_name": "PORTE DE L'ESSONNE"}, "geometry": {"type": "Point", "coordinates": [2.371796560540588, 48.71540535529991]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0e0aaffc63b6a5ff8463dbcaab970b7276fbbb77", "fields": {"departement": "91", "stop_lat": 48.713051509154916, "code_postal": "91479", "stop_lon": 2.3676794965072774, "coord": [48.713051509154916, 2.3676794965072774], "stop_id": 4377186, "stop_desc": "52-54 AV PAUL VAILLANT COUTURIER - 91479", "stop_name": "CENTRE SPORTIF"}, "geometry": {"type": "Point", "coordinates": [2.3676794965072774, 48.713051509154916]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "44f872882e614f8c05384d72c5f5106ee823e703", "fields": {"departement": "91", "stop_lat": 48.71290818217382, "code_postal": "91479", "stop_lon": 2.365709954080588, "coord": [48.71290818217382, 2.365709954080588], "stop_id": 4377189, "stop_desc": "61 AVENUE PAUL VAILLANT COUTURIER - 91479", "stop_name": "HENRI BARBUSSE"}, "geometry": {"type": "Point", "coordinates": [2.365709954080588, 48.71290818217382]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "11f107ee63728336da917ac2c354ef5461fdf921", "fields": {"departement": "91", "stop_lat": 48.70958382150276, "code_postal": "91479", "stop_lon": 2.359256873106853, "coord": [48.70958382150276, 2.359256873106853], "stop_id": 4377191, "stop_desc": "FACE 92 AVENUE DU GENERAL DE GAULLE - 91479", "stop_name": "MAXIME VEDY"}, "geometry": {"type": "Point", "coordinates": [2.359256873106853, 48.70958382150276]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5f180107d3d86e3f642e3f9acd1102da750b7441", "fields": {"departement": "91", "stop_lat": 48.70479216077662, "code_postal": "91027", "stop_lon": 2.3631931487726177, "coord": [48.70479216077662, 2.3631931487726177], "stop_id": 4377195, "stop_desc": "R DES FROIDES BOUILLIES - 91027", "stop_name": "NOYER RENARD"}, "geometry": {"type": "Point", "coordinates": [2.3631931487726177, 48.70479216077662]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "88e1f6ab4dcd97791a22215581836c5017885635", "fields": {"departement": "91", "stop_lat": 48.694672212735604, "code_postal": "91326", "stop_lon": 2.3572410652810616, "coord": [48.694672212735604, 2.3572410652810616], "stop_id": 4377206, "stop_desc": "AVENUE ALBERT SARRAUT - 91326", "stop_name": "SQUARE CHEVEAUX"}, "geometry": {"type": "Point", "coordinates": [2.3572410652810616, 48.694672212735604]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5905718ed5587334d89117881e4e7648d79bb518", "fields": {"departement": "91", "stop_lat": 48.694419682409396, "code_postal": "91326", "stop_lon": 2.3617759021521834, "coord": [48.694419682409396, 2.3617759021521834], "stop_id": 4377208, "stop_desc": "FACE 20-22 AV ALBERT SARRAUT - 91326", "stop_name": "POSTE"}, "geometry": {"type": "Point", "coordinates": [2.3617759021521834, 48.694419682409396]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "22b4da5ffced1529b0936d6b5e26138ba915b589", "fields": {"departement": "91", "stop_lat": 48.69121600148547, "code_postal": "91326", "stop_lon": 2.375853545289377, "coord": [48.69121600148547, 2.375853545289377], "stop_id": 4377215, "stop_desc": "R DU MARECHAL JUIN - 91326", "stop_name": "MARCHE DE JUVISY"}, "geometry": {"type": "Point", "coordinates": [2.375853545289377, 48.69121600148547]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5a0b1e68409119d27cc3967afdc24c9444287273", "fields": {"departement": "91", "stop_lat": 48.71547730219704, "code_postal": "91027", "stop_lon": 2.371660776884332, "coord": [48.71547730219704, 2.371660776884332], "stop_id": 4377608, "stop_desc": "PISTE GARE ROUTIERE - 91027", "stop_name": "PORTE DE L'ESSONNE"}, "geometry": {"type": "Point", "coordinates": [2.371660776884332, 48.71547730219704]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5711c3221083e878ec885f7082328e812ca6547c", "fields": {"departement": "91", "stop_lat": 48.71301615974179, "code_postal": "91479", "stop_lon": 2.365221043119854, "coord": [48.71301615974179, 2.365221043119854], "stop_id": 4377611, "stop_desc": "68 AVENUE PAUL VAILLANT COUTURIER - 91479", "stop_name": "HENRI BARBUSSE"}, "geometry": {"type": "Point", "coordinates": [2.365221043119854, 48.71301615974179]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "57227eacff77a12f0676719d3d2d3a347c5fb8c5", "fields": {"departement": "91", "stop_lat": 48.70958382150276, "code_postal": "91479", "stop_lon": 2.359256873106853, "coord": [48.70958382150276, 2.359256873106853], "stop_id": 4377613, "stop_desc": "FACE 92 AVENUE DU GENERAL DE GAULLE - 91479", "stop_name": "MAXIME VEDY"}, "geometry": {"type": "Point", "coordinates": [2.359256873106853, 48.70958382150276]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f21ee5617b815e2fa4700a235770edc9fdae0c85", "fields": {"departement": "91", "stop_lat": 48.67873671160133, "code_postal": "91589", "stop_lon": 2.346240365571396, "coord": [48.67873671160133, 2.346240365571396], "stop_id": 4377636, "stop_desc": "41 AVENUE CHARLES DE GAULLE - 91589", "stop_name": "CENTRE ADMINISTRATIF"}, "geometry": {"type": "Point", "coordinates": [2.346240365571396, 48.67873671160133]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1a5247e36b5046804084515aff0af23552bde809", "fields": {"departement": "91", "stop_lat": 48.68984694343399, "code_postal": "91589", "stop_lon": 2.3329645140640505, "coord": [48.68984694343399, 2.3329645140640505], "stop_id": 4377645, "stop_desc": "62 AVENUE DU GENERAL LOUIS MORAND - 91589", "stop_name": "PERE COINDREAU"}, "geometry": {"type": "Point", "coordinates": [2.3329645140640505, 48.68984694343399]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7d174002c25004d598fc28b4df452c57317ae7d5", "fields": {"departement": "91", "stop_lat": 48.68961319475132, "code_postal": "91589", "stop_lon": 2.331864845590076, "coord": [48.68961319475132, 2.331864845590076], "stop_id": 4377646, "stop_desc": "33-35 AVENUE DU GENERAL FRIANT - 91589", "stop_name": "PERE COINDREAU"}, "geometry": {"type": "Point", "coordinates": [2.331864845590076, 48.68961319475132]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f6562fc974d84751ab245d9aff7a4b04521c6ca2", "fields": {"departement": "92", "stop_lat": 48.75812776706284, "code_postal": "92002", "stop_lon": 2.3066539281211798, "coord": [48.75812776706284, 2.3066539281211798], "stop_id": 4377721, "stop_desc": "63 AVENUE ARISTIDE BRIAND - 92002", "stop_name": "FERNAND FENZY"}, "geometry": {"type": "Point", "coordinates": [2.3066539281211798, 48.75812776706284]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7ed7b13715de3692745dda23ab89ea9b745cf45d", "fields": {"departement": "92", "stop_lat": 48.75820876111079, "code_postal": "92002", "stop_lon": 2.3070481155055815, "coord": [48.75820876111079, 2.3070481155055815], "stop_id": 4377722, "stop_desc": "80 AVENUE ARISTIDE BRIAND - 92002", "stop_name": "FERNAND FENZY"}, "geometry": {"type": "Point", "coordinates": [2.3070481155055815, 48.75820876111079]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0ef89096da8a81502bafdebe6ab055134322bccc", "fields": {"departement": "92", "stop_lat": 48.754019754575175, "code_postal": "92002", "stop_lon": 2.305038753866696, "coord": [48.754019754575175, 2.305038753866696], "stop_id": 4377723, "stop_desc": "AVENUE ARISTIDE BRIAND - 92002", "stop_name": "AUGUSTE MOUNIE"}, "geometry": {"type": "Point", "coordinates": [2.305038753866696, 48.754019754575175]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bc2f231d0d35d6af45d0a2daf3ff39cbc60455ea", "fields": {"departement": "94", "stop_lat": 48.754732379673456, "code_postal": "94034", "stop_lon": 2.316538331355197, "coord": [48.754732379673456, 2.316538331355197], "stop_id": 4377729, "stop_desc": "34-36 AVENUE JEAN JAURES - 94034", "stop_name": "LES ANEMONES"}, "geometry": {"type": "Point", "coordinates": [2.316538331355197, 48.754732379673456]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1b22cb39728d9478813b6e3de72174502946f87b", "fields": {"departement": "94", "stop_lat": 48.75574884176963, "code_postal": "94034", "stop_lon": 2.321798676035864, "coord": [48.75574884176963, 2.321798676035864], "stop_id": 4377730, "stop_desc": "SQUARE DU 19 MARS 1962 - 94034", "stop_name": "MAIRIE DE FRESNES"}, "geometry": {"type": "Point", "coordinates": [2.321798676035864, 48.75574884176963]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "53df1dd3e6c90326b274aed9da6385f79a31a2a2", "fields": {"departement": "94", "stop_lat": 48.75127373284376, "code_postal": "94034", "stop_lon": 2.338314891732863, "coord": [48.75127373284376, 2.338314891732863], "stop_id": 4377738, "stop_desc": "CHEMIN DES OTAGES - 94034", "stop_name": "VOIE DES LAITIERES"}, "geometry": {"type": "Point", "coordinates": [2.338314891732863, 48.75127373284376]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d7ee017869c164df9507ded11838704994af3be3", "fields": {"departement": "94", "stop_lat": 48.75126474097202, "code_postal": "94034", "stop_lon": 2.3386682964353143, "coord": [48.75126474097202, 2.3386682964353143], "stop_id": 4377739, "stop_desc": "CHEMIN DES OTAGES - 94034", "stop_name": "VOIE DES LAITIERES"}, "geometry": {"type": "Point", "coordinates": [2.3386682964353143, 48.75126474097202]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a7e80c4c5b02de6633c0a8c56e86e447b4203cfe", "fields": {"departement": "94", "stop_lat": 48.74898160034977, "code_postal": "94065", "stop_lon": 2.3431807445419834, "coord": [48.74898160034977, 2.3431807445419834], "stop_id": 4377740, "stop_desc": "RUE DE L'ORMETEAU - 94065", "stop_name": "ORMETEAU"}, "geometry": {"type": "Point", "coordinates": [2.3431807445419834, 48.74898160034977]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8b297b74d45b80c2fa9e14808d3840090c0455df", "fields": {"departement": "94", "stop_lat": 48.74672408000925, "code_postal": "94065", "stop_lon": 2.3569212998815887, "coord": [48.74672408000925, 2.3569212998815887], "stop_id": 4377750, "stop_desc": "40 - 48 RUE D'ARCUEIL - 94065", "stop_name": "RUE D'ARCUEIL"}, "geometry": {"type": "Point", "coordinates": [2.3569212998815887, 48.74672408000925]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aafed28a0587ce5da6c300f723e671d4c6de854a", "fields": {"departement": "94", "stop_lat": 48.746617343491515, "code_postal": "94054", "stop_lon": 2.384756204379618, "coord": [48.746617343491515, 2.384756204379618], "stop_id": 4377759, "stop_desc": "RUE DU BAS MARIN - 94054", "stop_name": "RUE DES QUINZE ARPENTS"}, "geometry": {"type": "Point", "coordinates": [2.384756204379618, 48.746617343491515]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f4680bcda6e2e3434f1cce443c2248c81c5b6bd8", "fields": {"departement": "94", "stop_lat": 48.7511010314616, "code_postal": "94073", "stop_lon": 2.3881991937176164, "coord": [48.7511010314616, 2.3881991937176164], "stop_id": 4377763, "stop_desc": "FACE 6 RUE DU BAS MARIN - 94073", "stop_name": "RUE DES OLIVIERS"}, "geometry": {"type": "Point", "coordinates": [2.3881991937176164, 48.7511010314616]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ff776f698b75ec7962a0bc82890f98bd501741a4", "fields": {"departement": "94", "stop_lat": 48.75381606931811, "code_postal": "94073", "stop_lon": 2.3867609796899667, "coord": [48.75381606931811, 2.3867609796899667], "stop_id": 4377764, "stop_desc": "12 RUE DU BAS MARIN - 94073", "stop_name": "CENTRE BUS DE THIAIS"}, "geometry": {"type": "Point", "coordinates": [2.3867609796899667, 48.75381606931811]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5fb0638c62cff52062b46a3c7a6e37e72bf3a551", "fields": {"departement": "94", "stop_lat": 48.75274176572396, "code_postal": "94073", "stop_lon": 2.3751244475256206, "coord": [48.75274176572396, 2.3751244475256206], "stop_id": 4377768, "stop_desc": "FACE 5 RUE DES ALOUETTES - 94073", "stop_name": "ALOUETTES"}, "geometry": {"type": "Point", "coordinates": [2.3751244475256206, 48.75274176572396]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d08bc2881a67b880cc8474f7f2ecc80f05888b76", "fields": {"departement": "94", "stop_lat": 48.7564541376577, "code_postal": "94073", "stop_lon": 2.374297927820151, "coord": [48.7564541376577, 2.374297927820151], "stop_id": 4377770, "stop_desc": "AVENUE DU LUXEMBOURG - 94073", "stop_name": "LA BELLE EPINE"}, "geometry": {"type": "Point", "coordinates": [2.374297927820151, 48.7564541376577]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0c0865d71e3d4808d750a8b822a0aa960a3d1e79", "fields": {"departement": "94", "stop_lat": 48.756445288464626, "code_postal": "94073", "stop_lon": 2.37384932439109, "coord": [48.756445288464626, 2.37384932439109], "stop_id": 4377771, "stop_desc": "AVENUE DU LUXEMBOURG - 94073", "stop_name": "LA BELLE EPINE"}, "geometry": {"type": "Point", "coordinates": [2.37384932439109, 48.756445288464626]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "229edbf7d4dcc8cdb28ba8414e933d40c40cadb7", "fields": {"departement": "94", "stop_lat": 48.75687180698333, "code_postal": "94034", "stop_lon": 2.3180056265785707, "coord": [48.75687180698333, 2.3180056265785707], "stop_id": 4377977, "stop_desc": "2 R DU DOCTEUR EMILE ROUX - 94034", "stop_name": "FOYER EMILE ROUX"}, "geometry": {"type": "Point", "coordinates": [2.3180056265785707, 48.75687180698333]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0ae18ffdf4be43b883c856e198868daab604724b", "fields": {"departement": "94", "stop_lat": 48.75294305489144, "code_postal": "94034", "stop_lon": 2.3129505096274396, "coord": [48.75294305489144, 2.3129505096274396], "stop_id": 4377982, "stop_desc": "3 BIS AV DU PARC DES SPORTS - 94034", "stop_name": "8 MAI 1945"}, "geometry": {"type": "Point", "coordinates": [2.3129505096274396, 48.75294305489144]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1d83fa21d4a84f3d91db4c2962586c069fa6b6c5", "fields": {"departement": "94", "stop_lat": 48.74987972944154, "code_postal": "94034", "stop_lon": 2.3231324501238246, "coord": [48.74987972944154, 2.3231324501238246], "stop_id": 4377985, "stop_desc": "FACE 47-49 AV DU PARC DES SPORTS - 94034", "stop_name": "THIBAUDES"}, "geometry": {"type": "Point", "coordinates": [2.3231324501238246, 48.74987972944154]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a7fd4178aacab1be2cd531b5a85286347c436699", "fields": {"departement": "94", "stop_lat": 48.75847322976688, "code_postal": "94034", "stop_lon": 2.334848471824227, "coord": [48.75847322976688, 2.334848471824227], "stop_id": 4377995, "stop_desc": "5 R DE LA BUTTE - 94034", "stop_name": "CIMETIERE DE FRESNES"}, "geometry": {"type": "Point", "coordinates": [2.334848471824227, 48.75847322976688]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8fe3e89c17f7d1937bcfc45b3cd22148e3ed103b", "fields": {"departement": "94", "stop_lat": 48.76496225030248, "code_postal": "94034", "stop_lon": 2.3272479635756946, "coord": [48.76496225030248, 2.3272479635756946], "stop_id": 4377998, "stop_desc": "FACE 2 R DU GENERAL LOUIS WARABIOT - 94034", "stop_name": "POSTE ANNEXE"}, "geometry": {"type": "Point", "coordinates": [2.3272479635756946, 48.76496225030248]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cc84b9da363952428012a21b06a3d80f6e9a8fab", "fields": {"departement": "94", "stop_lat": 48.76495289978352, "code_postal": "94034", "stop_lon": 2.3236042168679667, "coord": [48.76495289978352, 2.3236042168679667], "stop_id": 4378000, "stop_desc": "22 R JEAN MOULIN - 94034", "stop_name": "AVARA - GYMNASE VALLEE AUX RENARDS"}, "geometry": {"type": "Point", "coordinates": [2.3236042168679667, 48.76495289978352]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b68e97a4acfbd7e71be0f6b0f456f7fd895b7207", "fields": {"departement": "94", "stop_lat": 48.769150449119266, "code_postal": "94038", "stop_lon": 2.324677291068708, "coord": [48.769150449119266, 2.324677291068708], "stop_id": 4378001, "stop_desc": "FACE 72 R DE LA VALLEE AUX RENARDS - 94038", "stop_name": "A.R.E.P.A."}, "geometry": {"type": "Point", "coordinates": [2.324677291068708, 48.769150449119266]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f32ecb9bb9b0192950b444f69665da5270a21254", "fields": {"departement": "94", "stop_lat": 48.77068778511185, "code_postal": "94038", "stop_lon": 2.3290009485512337, "coord": [48.77068778511185, 2.3290009485512337], "stop_id": 4378003, "stop_desc": "RUE DE CHALAIS - 94038", "stop_name": "BLONDEAUX - ECOLES"}, "geometry": {"type": "Point", "coordinates": [2.3290009485512337, 48.77068778511185]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "69bb9e969080f38b404d11439fb6878583ad50c8", "fields": {"departement": "94", "stop_lat": 48.77827394172297, "code_postal": "94038", "stop_lon": 2.3350379495207525, "coord": [48.77827394172297, 2.3350379495207525], "stop_id": 4378013, "stop_desc": "FACE 13 RUE JEAN JAURES - 94038", "stop_name": "SOUS-PREFECTURE - EGLISE DE L'HAY-LES-ROSES"}, "geometry": {"type": "Point", "coordinates": [2.3350379495207525, 48.77827394172297]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0d6477821f733ae76f8a41a5967311fc3d393726", "fields": {"departement": "94", "stop_lat": 48.778903076266886, "code_postal": "94038", "stop_lon": 2.340545812408918, "coord": [48.778903076266886, 2.340545812408918], "stop_id": 4378026, "stop_desc": "BOULEVARD PAUL VAILLANT COUTURIER - 94038", "stop_name": "HENRI THIRARD - LEON JOUHAUX."}, "geometry": {"type": "Point", "coordinates": [2.340545812408918, 48.778903076266886]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "65fda95890d17a1f578be59e2fd790699ec62789", "fields": {"departement": "94", "stop_lat": 48.775693340248715, "code_postal": "94038", "stop_lon": 2.3531653765116993, "coord": [48.775693340248715, 2.3531653765116993], "stop_id": 4378033, "stop_desc": "105 RUE DE BICETRE - 94038", "stop_name": "LES COQUELICOTS"}, "geometry": {"type": "Point", "coordinates": [2.3531653765116993, 48.775693340248715]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0b895ad07e4bd03d9e6dcb4a0fccea01ce73c371", "fields": {"departement": "94", "stop_lat": 48.7773468779113, "code_postal": "94038", "stop_lon": 2.354974592688749, "coord": [48.7773468779113, 2.354974592688749], "stop_id": 4378035, "stop_desc": "FACE 141 RUE DE BICETRE - 94038", "stop_name": "LES DAHLIAS"}, "geometry": {"type": "Point", "coordinates": [2.354974592688749, 48.7773468779113]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "48222f392c15cbe5c333cf50f50ba2abc6d224f3", "fields": {"departement": "94", "stop_lat": 48.77982512725138, "code_postal": "94021", "stop_lon": 2.3671474111380566, "coord": [48.77982512725138, 2.3671474111380566], "stop_id": 4378038, "stop_desc": "AVENUE STALINGRAD - 94021", "stop_name": "DOMAINE CHERIOUX"}, "geometry": {"type": "Point", "coordinates": [2.3671474111380566, 48.77982512725138]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "77a355832973a521674ce8adee355765c83da3a0", "fields": {"departement": "94", "stop_lat": 48.775575985902144, "code_postal": "94038", "stop_lon": 2.3566058513906185, "coord": [48.775575985902144, 2.3566058513906185], "stop_id": 4378041, "stop_desc": "39 RUE PAUL HOCHART - 94038", "stop_name": "POITOU"}, "geometry": {"type": "Point", "coordinates": [2.3566058513906185, 48.775575985902144]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "800639b70d76d279c7bf55a7dad083128119fa5b", "fields": {"departement": "94", "stop_lat": 48.75528198096087, "code_postal": "94034", "stop_lon": 2.3265565561283457, "coord": [48.75528198096087, 2.3265565561283457], "stop_id": 4378044, "stop_desc": "35 R MAURICE TENINE - 94034", "stop_name": "FERME DE COTTINVILLE"}, "geometry": {"type": "Point", "coordinates": [2.3265565561283457, 48.75528198096087]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7246dfaac7e9004eea2aa3e240f4e3f2d9afb4b7", "fields": {"departement": "94", "stop_lat": 48.79403759305073, "code_postal": "94076", "stop_lon": 2.354259293159642, "coord": [48.79403759305073, 2.354259293159642], "stop_id": 4378053, "stop_desc": "17 RUE DE VERDUN - 94076", "stop_name": "INSTITUT GUSTAVE ROUSSY"}, "geometry": {"type": "Point", "coordinates": [2.354259293159642, 48.79403759305073]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bc42731e9f1d4c69c4d7b5afe3426484bc660961", "fields": {"departement": "94", "stop_lat": 48.805046380389854, "code_postal": "94076", "stop_lon": 2.361828155704529, "coord": [48.805046380389854, 2.361828155704529], "stop_id": 4378059, "stop_desc": "FACE 22BIS RUE RENE THIBERT - 94076", "stop_name": "RUE DES GUIPONS"}, "geometry": {"type": "Point", "coordinates": [2.361828155704529, 48.805046380389854]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "03f62e808e1a0fef69085bb08c0c46bf93588f6d", "fields": {"departement": "94", "stop_lat": 48.78450808719232, "code_postal": "94076", "stop_lon": 2.366225225199101, "coord": [48.78450808719232, 2.366225225199101], "stop_id": 4378071, "stop_desc": "3 RUE DES VILLAS - 94076", "stop_name": "LES BONS ENFANTS"}, "geometry": {"type": "Point", "coordinates": [2.366225225199101, 48.78450808719232]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7b1dffcc59cfe3584d283ca705639536a4105ffd", "fields": {"departement": "75", "stop_lat": 48.82499269324786, "code_postal": "75114", "stop_lon": 2.3360296178253943, "coord": [48.82499269324786, 2.3360296178253943], "stop_id": 4378084, "stop_desc": "61 AVENUE RENE COTY - 75114", "stop_name": "PARC MONTSOURIS"}, "geometry": {"type": "Point", "coordinates": [2.3360296178253943, 48.82499269324786]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "729fea7922866beec71428a5c470ef88794b17b1", "fields": {"departement": "94", "stop_lat": 48.75375397549794, "code_postal": "94065", "stop_lon": 2.3481427875365295, "coord": [48.75375397549794, 2.3481427875365295], "stop_id": 4378097, "stop_desc": "AVENUE CHARLES LINDBERGH - 94065", "stop_name": "CARREFOUR DE L'EUROPE"}, "geometry": {"type": "Point", "coordinates": [2.3481427875365295, 48.75375397549794]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "44b7d9b0bec0cf3eb97835737b3e7ea516668b91", "fields": {"departement": "94", "stop_lat": 48.75252173809831, "code_postal": "94065", "stop_lon": 2.3552107981240065, "coord": [48.75252173809831, 2.3552107981240065], "stop_id": 4378099, "stop_desc": "PL DU RELAIS - 94065", "stop_name": "PORTE DE RUNGIS"}, "geometry": {"type": "Point", "coordinates": [2.3552107981240065, 48.75252173809831]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "388fc55b9681d51821622e609243193cb6943279", "fields": {"departement": "94", "stop_lat": 48.761178081740965, "code_postal": "94021", "stop_lon": 2.349177570277524, "coord": [48.761178081740965, 2.349177570277524], "stop_id": 4378102, "stop_desc": "AVENUE DU LYONNAIS - 94021", "stop_name": "VIADUC"}, "geometry": {"type": "Point", "coordinates": [2.349177570277524, 48.761178081740965]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fb70e586bf7d6e63ce33705c15a898619ef371f0", "fields": {"departement": "94", "stop_lat": 48.76317343511212, "code_postal": "94021", "stop_lon": 2.3492460062814264, "coord": [48.76317343511212, 2.3492460062814264], "stop_id": 4378103, "stop_desc": "AVENUE DES MARAICHERS - 94021", "stop_name": "AGEN"}, "geometry": {"type": "Point", "coordinates": [2.3492460062814264, 48.76317343511212]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0dc84642f0a90aa1cacc6fcfc2f6fc0175a50e0d", "fields": {"departement": "94", "stop_lat": 48.764862757592766, "code_postal": "94021", "stop_lon": 2.3530125029203894, "coord": [48.764862757592766, 2.3530125029203894], "stop_id": 4378104, "stop_desc": "AVENUE DES MARAICHERS - 94021", "stop_name": "CHATEAURENARD"}, "geometry": {"type": "Point", "coordinates": [2.3530125029203894, 48.764862757592766]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "917d5ac1861fdd7a3705cf7ed1fb053c9049c1a4", "fields": {"departement": "75", "stop_lat": 48.82416580440166, "code_postal": "75114", "stop_lon": 2.339922551596341, "coord": [48.82416580440166, 2.339922551596341], "stop_id": 4378108, "stop_desc": "FACE 2 RUE GAZAN - 75114", "stop_name": "PARC MONTSOURIS"}, "geometry": {"type": "Point", "coordinates": [2.339922551596341, 48.82416580440166]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "63b189fdeb581e275246f3a512a757bbe9d1f0a4", "fields": {"departement": "94", "stop_lat": 48.75871557826966, "code_postal": "94065", "stop_lon": 2.3464445217916294, "coord": [48.75871557826966, 2.3464445217916294], "stop_id": 4378112, "stop_desc": "RUE DU PONT DES HALLES - 94065", "stop_name": "LE DELTA"}, "geometry": {"type": "Point", "coordinates": [2.3464445217916294, 48.75871557826966]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "24a10d0becf66f06b321cca1993d2dfcc8ffa351", "fields": {"departement": "91", "stop_lat": 48.71111808019668, "code_postal": "91479", "stop_lon": 2.371046702909022, "coord": [48.71111808019668, 2.371046702909022], "stop_id": 4378129, "stop_desc": "59 BD DE FONTAINEBLEAU - 91479", "stop_name": "CENTRE COMMERCIAL - RIGOLET"}, "geometry": {"type": "Point", "coordinates": [2.371046702909022, 48.71111808019668]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6cb95b8e4324a944588b92bbf7e23af110e97cb7", "fields": {"departement": "91", "stop_lat": 48.70733186538039, "code_postal": "91027", "stop_lon": 2.3776581986811003, "coord": [48.70733186538039, 2.3776581986811003], "stop_id": 4378134, "stop_desc": "81 AVENUE MARCEL SEMBAT - 91027", "stop_name": "LA PLAINE"}, "geometry": {"type": "Point", "coordinates": [2.3776581986811003, 48.70733186538039]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "de97806bbb415ff0b94806120d646b1b279e1eb6", "fields": {"departement": "75", "stop_lat": 48.87462097017322, "code_postal": "75108", "stop_lon": 2.3252375776631626, "coord": [48.87462097017322, 2.3252375776631626], "stop_id": 4726963, "stop_desc": "10 RUE DE ROME - 75108", "stop_name": "GARE SAINT-LAZARE."}, "geometry": {"type": "Point", "coordinates": [2.3252375776631626, 48.87462097017322]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8362aa293d22e1010dd4401f1fe2f928c3fac91e", "fields": {"departement": "94", "stop_lat": 48.814932080698995, "code_postal": "94046", "stop_lon": 2.4222439451389848, "coord": [48.814932080698995, 2.4222439451389848], "stop_id": 4739150, "stop_desc": "31-35 AVENUE DU GENERAL LECLERC - 94046", "stop_name": "ECOLE VETERINAIRE DE MAISONS-ALFORT-METRO"}, "geometry": {"type": "Point", "coordinates": [2.4222439451389848, 48.814932080698995]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d57b31885159cbd12a225d0fb12235837b873bcf", "fields": {"departement": "94", "stop_lat": 48.820876767236136, "code_postal": "94018", "stop_lon": 2.4018920245725224, "coord": [48.820876767236136, 2.4018920245725224], "stop_id": 4739156, "stop_desc": "QUAI DES CARRIERES - 94018", "stop_name": "PONT NELSON MANDELA"}, "geometry": {"type": "Point", "coordinates": [2.4018920245725224, 48.820876767236136]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a7f947b081f7be74e7bbeb584f38b1fd81bc93c3", "fields": {"departement": "75", "stop_lat": 48.84009247169696, "code_postal": "75112", "stop_lon": 2.3819688617960826, "coord": [48.84009247169696, 2.3819688617960826], "stop_id": 4739164, "stop_desc": "15 BOULEVARD DE BERCY - 75112", "stop_name": "GARE DE BERCY"}, "geometry": {"type": "Point", "coordinates": [2.3819688617960826, 48.84009247169696]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d334a356d0b306acac21a70b73550421418a8377", "fields": {"departement": "75", "stop_lat": 48.84106444132994, "code_postal": "75112", "stop_lon": 2.37832060509252, "coord": [48.84106444132994, 2.37832060509252], "stop_id": 4739165, "stop_desc": "124 RUE DE BERCY - 75112", "stop_name": "MINISTERE DE L'ECONOMIE ET DES FINANCES"}, "geometry": {"type": "Point", "coordinates": [2.37832060509252, 48.84106444132994]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f041f38d8899c199232e17a4efca6f369c85a980", "fields": {"departement": "75", "stop_lat": 48.843744254309904, "code_postal": "75112", "stop_lon": 2.3736249556721383, "coord": [48.843744254309904, 2.3736249556721383], "stop_id": 4739166, "stop_desc": "FACE 179 RUE DE BERCY - 75112", "stop_name": "GARE DE LYON"}, "geometry": {"type": "Point", "coordinates": [2.3736249556721383, 48.843744254309904]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "73c5e599761f9e190ae8da2f4898737fdf28aef1", "fields": {"departement": "75", "stop_lat": 48.849014689133234, "code_postal": "75105", "stop_lon": 2.357954206837178, "coord": [48.849014689133234, 2.357954206837178], "stop_id": 4739170, "stop_desc": "QUAI SAINT BERNARD - 75105", "stop_name": "UNIVERSITE PARIS VI"}, "geometry": {"type": "Point", "coordinates": [2.357954206837178, 48.849014689133234]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "85b2199085b14dfe631ba9a267bf17659035b030", "fields": {"departement": "75", "stop_lat": 48.85415714947943, "code_postal": "75106", "stop_lon": 2.343642207604387, "coord": [48.85415714947943, 2.343642207604387], "stop_id": 4739200, "stop_desc": "FACE 15-17 QUAI DES GRANDS AUGUSTINS - 75106", "stop_name": "SAINT-MICHEL"}, "geometry": {"type": "Point", "coordinates": [2.343642207604387, 48.85415714947943]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "65dc467f5fed0e2b9563ccb77bf2d18b751448ab", "fields": {"departement": "75", "stop_lat": 48.86254136918029, "code_postal": "75107", "stop_lon": 2.320241226896711, "coord": [48.86254136918029, 2.320241226896711], "stop_id": 4739206, "stop_desc": "FACE 27 QUAI ANATOLE FRANCE - 75107", "stop_name": "ASSEMBLEE NATIONALE"}, "geometry": {"type": "Point", "coordinates": [2.320241226896711, 48.86254136918029]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2a5988a9ef6f17176c406b6ba40a7b21d77f7378", "fields": {"departement": "75", "stop_lat": 48.869956563045214, "code_postal": "75108", "stop_lon": 2.3253476474582184, "coord": [48.869956563045214, 2.3253476474582184], "stop_id": 4739208, "stop_desc": "16 PLACE DE LA MADELEINE - 75108", "stop_name": "MADELEINE"}, "geometry": {"type": "Point", "coordinates": [2.3253476474582184, 48.869956563045214]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "221facf51851559f0d7de2b90616e2a90de3096b", "fields": {"departement": "75", "stop_lat": 48.89932630358991, "code_postal": "75117", "stop_lon": 2.3209652426357072, "coord": [48.89932630358991, 2.3209652426357072], "stop_id": 4758935, "stop_desc": "6 BOULEVARD DU BOIS LE PRETRE - 75117", "stop_name": "BOIS LE PRETRE"}, "geometry": {"type": "Point", "coordinates": [2.3209652426357072, 48.89932630358991]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "029ca060dbbaeec37704d873bd9a2c093754d81c", "fields": {"departement": "92", "stop_lat": 48.90059282967282, "code_postal": "92024", "stop_lon": 2.3167117653989426, "coord": [48.90059282967282, 2.3167117653989426], "stop_id": 4758936, "stop_desc": "16 BD DU GENERAL LECLERC - 92024", "stop_name": "GENERAL LECLERC - VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.3167117653989426, 48.90059282967282]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c3bcf2eeeee4446b051abcfcb338435381512b3a", "fields": {"departement": "93", "stop_lat": 48.91339215983966, "code_postal": "93070", "stop_lon": 2.3353321433301537, "coord": [48.91339215983966, 2.3353321433301537], "stop_id": 4758948, "stop_desc": "64-66 BOULEVARD JEAN JAURES - 93070", "stop_name": "JAURES - DHALENNE"}, "geometry": {"type": "Point", "coordinates": [2.3353321433301537, 48.91339215983966]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2001a32d99a69f1d682d6299b4438cd54821778d", "fields": {"departement": "93", "stop_lat": 48.91411099802808, "code_postal": "93066", "stop_lon": 2.342995110662038, "coord": [48.91411099802808, 2.342995110662038], "stop_id": 4758951, "stop_desc": "122 R DU LANDY - 93066", "stop_name": "LANDY - ORNANO"}, "geometry": {"type": "Point", "coordinates": [2.342995110662038, 48.91411099802808]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b41062d179a9214f2ec28a1e41f5a4b7b0309201", "fields": {"departement": "93", "stop_lat": 48.91460496652382, "code_postal": "93066", "stop_lon": 2.3476720907060686, "coord": [48.91460496652382, 2.3476720907060686], "stop_id": 4758954, "stop_desc": "150 R DU LANDY - 93066", "stop_name": "LANDY - PLEYEL"}, "geometry": {"type": "Point", "coordinates": [2.3476720907060686, 48.91460496652382]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "02ff4a0369379d25e6fd37c652da5ebd3603fa56", "fields": {"departement": "93", "stop_lat": 48.915637938262854, "code_postal": "93066", "stop_lon": 2.3526083938828766, "coord": [48.915637938262854, 2.3526083938828766], "stop_id": 4758956, "stop_desc": "FACE 4 R DES CHEMINOTS - 93066", "stop_name": "LANDY - CHEMINOTS"}, "geometry": {"type": "Point", "coordinates": [2.3526083938828766, 48.915637938262854]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8c68af69cfc98d02e5e5e13f97baf9ad1c4ce3ed", "fields": {"departement": "93", "stop_lat": 48.91806433349263, "code_postal": "93066", "stop_lon": 2.353304562451186, "coord": [48.91806433349263, 2.353304562451186], "stop_id": 4758957, "stop_desc": "11 AV FRANCOIS MITTERRAND - 93066", "stop_name": "STADE DE FRANCE - SAINT-DENIS RER"}, "geometry": {"type": "Point", "coordinates": [2.353304562451186, 48.91806433349263]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "68c05085e8a9f5e61eeb32d26a575160e0028cd7", "fields": {"departement": "93", "stop_lat": 48.9179746055291, "code_postal": "93066", "stop_lon": 2.35221363561536, "coord": [48.9179746055291, 2.35221363561536], "stop_id": 4758958, "stop_desc": "FACE 19 R DES CHEMINOTS - 93066", "stop_name": "STADE DE FRANCE - SAINT-DENIS RER"}, "geometry": {"type": "Point", "coordinates": [2.35221363561536, 48.9179746055291]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7524897ff4e70ca04ebb04d9c1c9dab1ecce9f89", "fields": {"departement": "93", "stop_lat": 48.91858416019787, "code_postal": "93066", "stop_lon": 2.361663835852147, "coord": [48.91858416019787, 2.361663835852147], "stop_id": 4758963, "stop_desc": "AVENUE DU STADE DE FRANCE - 93066", "stop_name": "LA PLAINE - STADE DE FRANCE RER"}, "geometry": {"type": "Point", "coordinates": [2.361663835852147, 48.91858416019787]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7645d82b48bc39ec07a4e49872328c8b5fe8f751", "fields": {"departement": "93", "stop_lat": 48.91537356682731, "code_postal": "93001", "stop_lon": 2.370866321888482, "coord": [48.91537356682731, 2.370866321888482], "stop_id": 4758968, "stop_desc": "36 RUE DU LANDY - 93001", "stop_name": "CANAL"}, "geometry": {"type": "Point", "coordinates": [2.370866321888482, 48.91537356682731]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8167c365affd8d6ea3aa9bbb972c267a873f18e8", "fields": {"departement": "93", "stop_lat": 48.91558740373701, "code_postal": "93001", "stop_lon": 2.376893400596234, "coord": [48.91558740373701, 2.376893400596234], "stop_id": 4758970, "stop_desc": "43 RUE HEURTAULT - 93001", "stop_name": "HEURTAULT"}, "geometry": {"type": "Point", "coordinates": [2.376893400596234, 48.91558740373701]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f24380fe4d00da410af7439de15247f8a0632773", "fields": {"departement": "93", "stop_lat": 48.91482097258037, "code_postal": "93001", "stop_lon": 2.402977354782398, "coord": [48.91482097258037, 2.402977354782398], "stop_id": 4758982, "stop_desc": "RUE DANIELLE CASANOVA - 93001", "stop_name": "FORT D'AUBERVILLIERS - DANIELLE CASANOVA"}, "geometry": {"type": "Point", "coordinates": [2.402977354782398, 48.91482097258037]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a3ece26e98a61ef99b9cb76e7687ed206c7dd6b3", "fields": {"departement": "93", "stop_lat": 48.91129810539569, "code_postal": "93070", "stop_lon": 2.332523518059746, "coord": [48.91129810539569, 2.332523518059746], "stop_id": 4758992, "stop_desc": "2 BOULEVARD VICTOR HUGO - 93070", "stop_name": "MAIRIE DE SAINT-OUEN"}, "geometry": {"type": "Point", "coordinates": [2.332523518059746, 48.91129810539569]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ea39b717d6be11f6eafccf17db0f72b734e4ed9d", "fields": {"departement": "94", "stop_lat": 48.81209279119115, "code_postal": "94043", "stop_lon": 2.361872316889022, "coord": [48.81209279119115, 2.361872316889022], "stop_id": 4767060, "stop_desc": "41-43 AVENUE DE FONTAINEBLEAU - 94043", "stop_name": "CONVENTION - FONTAINEBLEAU"}, "geometry": {"type": "Point", "coordinates": [2.361872316889022, 48.81209279119115]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d8558529882ae6d40a9ec63c2d6202fd24ef3d43", "fields": {"departement": "94", "stop_lat": 48.759448634048056, "code_postal": "94073", "stop_lon": 2.3693244252130907, "coord": [48.759448634048056, 2.3693244252130907], "stop_id": 4767083, "stop_desc": "ROUTE DE THIAIS - 94073", "stop_name": "LE COR DE CHASSE"}, "geometry": {"type": "Point", "coordinates": [2.3693244252130907, 48.759448634048056]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "978dad032f3f7325c2018622f57549b8f7fc7082", "fields": {"departement": "94", "stop_lat": 48.75953299135263, "code_postal": "94021", "stop_lon": 2.3515698526455524, "coord": [48.75953299135263, 2.3515698526455524], "stop_id": 4767089, "stop_desc": "AVENUE DES TROIS MARCHES - 94021", "stop_name": "MAREE"}, "geometry": {"type": "Point", "coordinates": [2.3515698526455524, 48.75953299135263]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0d4d1efedd46f7766250936c5606cfd2686feb51", "fields": {"departement": "94", "stop_lat": 48.761178081740965, "code_postal": "94021", "stop_lon": 2.349177570277524, "coord": [48.761178081740965, 2.349177570277524], "stop_id": 4767090, "stop_desc": "AVENUE DU LYONNAIS - 94021", "stop_name": "VIADUC"}, "geometry": {"type": "Point", "coordinates": [2.349177570277524, 48.761178081740965]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7ea4e919333e643019f8c3a1d4bcd61892924ad4", "fields": {"departement": "94", "stop_lat": 48.764862757592766, "code_postal": "94021", "stop_lon": 2.3530125029203894, "coord": [48.764862757592766, 2.3530125029203894], "stop_id": 4767092, "stop_desc": "AVENUE DES MARAICHERS - 94021", "stop_name": "CHATEAURENARD"}, "geometry": {"type": "Point", "coordinates": [2.3530125029203894, 48.764862757592766]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9171cd48558d3d5473e1933c9e80731384ca06cd", "fields": {"departement": "94", "stop_lat": 48.76004202458944, "code_postal": "94073", "stop_lon": 2.3686722414037877, "coord": [48.76004202458944, 2.3686722414037877], "stop_id": 4767094, "stop_desc": "AVENUE DE FONTAINEBLEAU - 94073", "stop_name": "LE COR DE CHASSE - LA BELLE EPINE"}, "geometry": {"type": "Point", "coordinates": [2.3686722414037877, 48.76004202458944]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "acbd16cdba343860bdeca3585c9e5f7e6dc12cdb", "fields": {"departement": "94", "stop_lat": 48.77178962568978, "code_postal": "94081", "stop_lon": 2.367999452823662, "coord": [48.77178962568978, 2.367999452823662], "stop_id": 4767097, "stop_desc": "ROUTE DE FONTAINEBLEAU - 94081", "stop_name": "MOULIN VERT"}, "geometry": {"type": "Point", "coordinates": [2.367999452823662, 48.77178962568978]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0532e1deb7c72f591b94d0c165446c708180db9f", "fields": {"departement": "91", "stop_lat": 48.70757856381556, "code_postal": "91689", "stop_lon": 2.3111654184174446, "coord": [48.70757856381556, 2.3111654184174446], "stop_id": 4770079, "stop_desc": "AVENUE MAZARIN - 91689", "stop_name": "CIMETIERE DE CHILLY-MAZARIN"}, "geometry": {"type": "Point", "coordinates": [2.3111654184174446, 48.70757856381556]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "58edbfff707271c42880112fc4b341b8e4c71d39", "fields": {"departement": "91", "stop_lat": 48.71677842244562, "code_postal": "91377", "stop_lon": 2.2959337186988806, "coord": [48.71677842244562, 2.2959337186988806], "stop_id": 4770083, "stop_desc": "50 RUE DE CHILLY - 91377", "stop_name": "RUE DES FLEURS"}, "geometry": {"type": "Point", "coordinates": [2.2959337186988806, 48.71677842244562]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "17d990fcc7748cf4f6bd0c0c53be278bb233832b", "fields": {"departement": "91", "stop_lat": 48.726891202649426, "code_postal": "91377", "stop_lon": 2.2768915190940655, "coord": [48.726891202649426, 2.2768915190940655], "stop_id": 4770088, "stop_desc": "AVENUE DE L'EUROPE - 91377", "stop_name": "AVENUE DE L'EUROPE - CENTRE COMMERCIAL"}, "geometry": {"type": "Point", "coordinates": [2.2768915190940655, 48.726891202649426]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "71b92045ff8cddc71c214d34c304c64fe52c0e97", "fields": {"departement": "91", "stop_lat": 48.72788290719792, "code_postal": "91377", "stop_lon": 2.2830857604019945, "coord": [48.72788290719792, 2.2830857604019945], "stop_id": 4770096, "stop_desc": "AVENUE NATIONALE - 91377", "stop_name": "AUSTRALIE"}, "geometry": {"type": "Point", "coordinates": [2.2830857604019945, 48.72788290719792]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6e0d57542d13f1a86aeeed4ea7ee53688d130aa8", "fields": {"departement": "91", "stop_lat": 48.73880089439907, "code_postal": "91377", "stop_lon": 2.2989602054010803, "coord": [48.73880089439907, 2.2989602054010803], "stop_id": 4770109, "stop_desc": "FACE 64 AVENUE DU PRESIDENT KENNEDY - 91377", "stop_name": "SAUSSAYE - MIRABEAU"}, "geometry": {"type": "Point", "coordinates": [2.2989602054010803, 48.73880089439907]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2275df9c992818bc1ec1a13f33bfcc82e07b8eb6", "fields": {"departement": "92", "stop_lat": 48.75820876111079, "code_postal": "92002", "stop_lon": 2.3070481155055815, "coord": [48.75820876111079, 2.3070481155055815], "stop_id": 4770117, "stop_desc": "80 AVENUE ARISTIDE BRIAND - 92002", "stop_name": "FERNAND FENZY"}, "geometry": {"type": "Point", "coordinates": [2.3070481155055815, 48.75820876111079]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1abc194abef7dbba12ff906e69aa4d4a0e891b4f", "fields": {"departement": "92", "stop_lat": 48.76014140331745, "code_postal": "92002", "stop_lon": 2.3078218968349273, "coord": [48.76014140331745, 2.3078218968349273], "stop_id": 4770119, "stop_desc": "118 AVENUE ARISTIDE BRIAND - 92002", "stop_name": "MORTEAUX"}, "geometry": {"type": "Point", "coordinates": [2.3078218968349273, 48.76014140331745]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fe07f8f76bb81729dc678b48614bc017d5bce307", "fields": {"departement": "92", "stop_lat": 48.760366045536514, "code_postal": "92002", "stop_lon": 2.3075770618196296, "coord": [48.760366045536514, 2.3075770618196296], "stop_id": 4770120, "stop_desc": "105 AVENUE ARISTIDE BRIAND - 92002", "stop_name": "MORTEAUX"}, "geometry": {"type": "Point", "coordinates": [2.3075770618196296, 48.760366045536514]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e50eb7c3821776b435ea0305d4952b7fcfc8d6ed", "fields": {"departement": "92", "stop_lat": 48.76263134269084, "code_postal": "92002", "stop_lon": 2.308772169484832, "coord": [48.76263134269084, 2.308772169484832], "stop_id": 4770121, "stop_desc": "148 AVENUE ARISTIDE BRIAND - 92002", "stop_name": "GENERAL DE GAULLE - CROIX DE BERNY"}, "geometry": {"type": "Point", "coordinates": [2.308772169484832, 48.76263134269084]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0f3c08cca798d683d3ebc9f89004d85512b81d4f", "fields": {"departement": "92", "stop_lat": 48.772240461974114, "code_postal": "92014", "stop_lon": 2.312669523337748, "coord": [48.772240461974114, 2.312669523337748], "stop_id": 4770127, "stop_desc": "177-175 AVENUE DE GENERAL LECLERC - 92014", "stop_name": "LES COTTAGES"}, "geometry": {"type": "Point", "coordinates": [2.312669523337748, 48.772240461974114]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b841635774e722c867e539822d42aaf0fca6d106", "fields": {"departement": "92", "stop_lat": 48.77713929852077, "code_postal": "92014", "stop_lon": 2.3145031060719545, "coord": [48.77713929852077, 2.3145031060719545], "stop_id": 4770128, "stop_desc": "131 AVENUE DU GENERAL LECLERC - 92014", "stop_name": "PETIT CHAMBORD - LYCEE LAKANAL"}, "geometry": {"type": "Point", "coordinates": [2.3145031060719545, 48.77713929852077]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cb6f9f7d57b74d3466e5616a29c3feed4899635b", "fields": {"departement": "94", "stop_lat": 48.78607541164516, "code_postal": "94016", "stop_lon": 2.3322084829326877, "coord": [48.78607541164516, 2.3322084829326877], "stop_id": 4770141, "stop_desc": "RUE MARC SANGNIER - 94016", "stop_name": "CARREFOUR DES POULETS"}, "geometry": {"type": "Point", "coordinates": [2.3322084829326877, 48.78607541164516]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "12f2aa24b85465a62da2007246bdcb489e7f7ae7", "fields": {"departement": "94", "stop_lat": 48.78564402029445, "code_postal": "94016", "stop_lon": 2.3329702084198036, "coord": [48.78564402029445, 2.3329702084198036], "stop_id": 4770142, "stop_desc": "FACE 9 AVENUE DE FRANCE - 94016", "stop_name": "CARREFOUR DES POULETS"}, "geometry": {"type": "Point", "coordinates": [2.3329702084198036, 48.78564402029445]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1cc7d2d3b5d6356e6e3ebb0d6867bf95b107be26", "fields": {"departement": "94", "stop_lat": 48.80187620108928, "code_postal": "94003", "stop_lon": 2.3351866061310647, "coord": [48.80187620108928, 2.3351866061310647], "stop_id": 4770151, "stop_desc": "3 RUE MAXIMILIEN ROBESPIERRE - 94003", "stop_name": "ROBESPIERRE"}, "geometry": {"type": "Point", "coordinates": [2.3351866061310647, 48.80187620108928]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9292ad0e221bfaf7d923b2cc5bc4da7716d32bc3", "fields": {"departement": "75", "stop_lat": 48.837224833648605, "code_postal": "75114", "stop_lon": 2.335430268825086, "coord": [48.837224833648605, 2.335430268825086], "stop_id": 4770172, "stop_desc": "FACE 74 AVENUE DENFERT ROCHEREAU - 75114", "stop_name": "HOPITAL SAINT-VINCENT DE PAUL"}, "geometry": {"type": "Point", "coordinates": [2.335430268825086, 48.837224833648605]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3c44ef722f719193bde9c38edb4249d531b0a5c2", "fields": {"departement": "75", "stop_lat": 48.84195229967122, "code_postal": "75105", "stop_lon": 2.338058039954899, "coord": [48.84195229967122, 2.338058039954899], "stop_id": 4770175, "stop_desc": "131 BOULEVARD SAINT MICHEL - 75105", "stop_name": "VAL DE GRACE"}, "geometry": {"type": "Point", "coordinates": [2.338058039954899, 48.84195229967122]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a15b41285eb7b6eb640fde551dbb32d55598a61f", "fields": {"departement": "75", "stop_lat": 48.85534333466014, "code_postal": "75104", "stop_lon": 2.346107532202977, "coord": [48.85534333466014, 2.346107532202977], "stop_id": 4770180, "stop_desc": "1 BOULEVARD DU PALAIS - 75104", "stop_name": "CITE - PALAIS DE JUSTICE"}, "geometry": {"type": "Point", "coordinates": [2.346107532202977, 48.85534333466014]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dd346b9525e0bb01db0e11829af0d08e7f8c9d47", "fields": {"departement": "75", "stop_lat": 48.85702356778014, "code_postal": "75104", "stop_lon": 2.3505888687775256, "coord": [48.85702356778014, 2.3505888687775256], "stop_id": 4770183, "stop_desc": "2-4 AVENUE VICTORIA - 75104", "stop_name": "HOTEL DE VILLE"}, "geometry": {"type": "Point", "coordinates": [2.3505888687775256, 48.85702356778014]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "556fcd8b57fa57a4faa89d35989fc40b9c5ed9d8", "fields": {"departement": "75", "stop_lat": 48.855415256092286, "code_postal": "75101", "stop_lon": 2.3458079091124455, "coord": [48.855415256092286, 2.3458079091124455], "stop_id": 4770185, "stop_desc": "FACE 1 BOULEVARD DU PALAIS - 75101", "stop_name": "CITE - PALAIS DE JUSTICE"}, "geometry": {"type": "Point", "coordinates": [2.3458079091124455, 48.855415256092286]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d92061dc741137d5171c36aca0b59bc5cbb717ae", "fields": {"departement": "75", "stop_lat": 48.83389932071581, "code_postal": "75114", "stop_lon": 2.3319043229181324, "coord": [48.83389932071581, 2.3319043229181324], "stop_id": 4770192, "stop_desc": "2 PLACE DENFERT ROCHEREAU - 75114", "stop_name": "DENFERT-ROCHEREAU"}, "geometry": {"type": "Point", "coordinates": [2.3319043229181324, 48.83389932071581]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9f1848bfe4e28ea7d2039c5bb438693e20a5dc9e", "fields": {"departement": "75", "stop_lat": 48.84427981615022, "code_postal": "75112", "stop_lon": 2.4410016129217893, "coord": [48.84427981615022, 2.4410016129217893], "stop_id": 4798794, "stop_desc": "13 AVENUE DE NOGENT - 75112", "stop_name": "CHATEAU DE VINCENNES"}, "geometry": {"type": "Point", "coordinates": [2.4410016129217893, 48.84427981615022]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "882c4240121a347e0c75ee024e75ced60f257d74", "fields": {"departement": "94", "stop_lat": 48.835945431006095, "code_postal": "94052", "stop_lon": 2.4709645048297553, "coord": [48.835945431006095, 2.4709645048297553], "stop_id": 4798797, "stop_desc": "FACE 7-9 AV GEORGES CLEMENCEAU - 94052", "stop_name": "NOGENT-SUR-MARNE RER - PIERRE SEMARD"}, "geometry": {"type": "Point", "coordinates": [2.4709645048297553, 48.835945431006095]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8ce4ebe17683404673e29ac6812bcac58e5f45b6", "fields": {"departement": "94", "stop_lat": 48.83631306496527, "code_postal": "94052", "stop_lon": 2.4794610851063337, "coord": [48.83631306496527, 2.4794610851063337], "stop_id": 4798799, "stop_desc": "60 GRANDE RUE CHARLES DE GAULLE - 94052", "stop_name": "RUE DE BEAUTE"}, "geometry": {"type": "Point", "coordinates": [2.4794610851063337, 48.83631306496527]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0d2dbd225ba5b65c7515c77660e46599b86ff7d8", "fields": {"departement": "93", "stop_lat": 48.852696795117474, "code_postal": "93049", "stop_lon": 2.513485668431387, "coord": [48.852696795117474, 2.513485668431387], "stop_id": 4798809, "stop_desc": "14 BOULEVARD GALLIENI - 93049", "stop_name": "NEUILLY-PLAISANCE RER"}, "geometry": {"type": "Point", "coordinates": [2.513485668431387, 48.852696795117474]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9516a4a93370b66699d219785e410d0530aa55c0", "fields": {"departement": "93", "stop_lat": 48.85353950987013, "code_postal": "93049", "stop_lon": 2.5149049422533456, "coord": [48.85353950987013, 2.5149049422533456], "stop_id": 4798810, "stop_desc": "2 RUE RASPAIL - 93049", "stop_name": "RASPAIL - RER"}, "geometry": {"type": "Point", "coordinates": [2.5149049422533456, 48.85353950987013]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6c880663af37d714b8e0661d8475980ea292961a", "fields": {"departement": "93", "stop_lat": 48.86410535261505, "code_postal": "93049", "stop_lon": 2.517161542494919, "coord": [48.86410535261505, 2.517161542494919], "stop_id": 4798815, "stop_desc": "CHE DE MEAUX - 93049", "stop_name": "GEORGES POMPIDOU"}, "geometry": {"type": "Point", "coordinates": [2.517161542494919, 48.86410535261505]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dd9fe8ea80f1cbe5250e59979e958b1160124bea", "fields": {"departement": "78", "stop_lat": 48.92496620108442, "code_postal": "78311", "stop_lon": 2.1973279257361393, "coord": [48.92496620108442, 2.1973279257361393], "stop_id": 4798856, "stop_desc": "1 BOULEVARD EMILE ZOLA - 78311", "stop_name": "PAUL BERT - JOSEPH BARA"}, "geometry": {"type": "Point", "coordinates": [2.1973279257361393, 48.92496620108442]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8cf1d68494e3dfaa5bb212798c895e7a0eb536a6", "fields": {"departement": "78", "stop_lat": 48.926758035842404, "code_postal": "78311", "stop_lon": 2.1926723314908734, "coord": [48.926758035842404, 2.1926723314908734], "stop_id": 4798857, "stop_desc": "BOULEVARD HENRI BARBUSSE - 78311", "stop_name": "LES BLANCHES"}, "geometry": {"type": "Point", "coordinates": [2.1926723314908734, 48.926758035842404]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "31fb1198bef92cbba02389176926f0d2bad80e5d", "fields": {"departement": "94", "stop_lat": 48.812429850427804, "code_postal": "94041", "stop_lon": 2.378134648958845, "coord": [48.812429850427804, 2.378134648958845], "stop_id": 4798883, "stop_desc": "48 RUE JEAN LE GALLEU - 94041", "stop_name": "HOPITAL JEAN ROSTAND"}, "geometry": {"type": "Point", "coordinates": [2.378134648958845, 48.812429850427804]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "337a861378634a5b3c047e2bef3c46b7430675c2", "fields": {"departement": "93", "stop_lat": 48.939678642523866, "code_postal": "93066", "stop_lon": 2.34515337428564, "coord": [48.939678642523866, 2.34515337428564], "stop_id": 4798992, "stop_desc": "0 RUE MAURICE THOREZ - 93066", "stop_name": "PAUL ELUARD"}, "geometry": {"type": "Point", "coordinates": [2.34515337428564, 48.939678642523866]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "515d45dd30571492bfecc57e61e71121e2c07558", "fields": {"departement": "93", "stop_lat": 48.95279043728249, "code_postal": "93079", "stop_lon": 2.3434496990029876, "coord": [48.95279043728249, 2.3434496990029876], "stop_id": 4798998, "stop_desc": "AVENUE DIVISION LECLERC - 93079", "stop_name": "JEAN VILAR"}, "geometry": {"type": "Point", "coordinates": [2.3434496990029876, 48.95279043728249]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7f269c109fe012b9c12b0d43d13c9150bfa50739", "fields": {"departement": "93", "stop_lat": 48.95939574111999, "code_postal": "93079", "stop_lon": 2.341526241443334, "coord": [48.95939574111999, 2.341526241443334], "stop_id": 4799003, "stop_desc": "0 RUE DU 19 MARS 1962 - 93079", "stop_name": "VILLETANEUSE-UNIVERSITE"}, "geometry": {"type": "Point", "coordinates": [2.341526241443334, 48.95939574111999]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "65d275279dfeb1acb7c45ea69c7c14e709d401a8", "fields": {"departement": "93", "stop_lat": 48.951621247232545, "code_postal": "93031", "stop_lon": 2.3212216896653497, "coord": [48.951621247232545, 2.3212216896653497], "stop_id": 4799018, "stop_desc": "57 AVENUE DE LA REPUBLIQUE - 93031", "stop_name": "LES BEATUS"}, "geometry": {"type": "Point", "coordinates": [2.3212216896653497, 48.951621247232545]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "463ead896bceaa22f381551ca05e9a97d7ed2581", "fields": {"departement": "93", "stop_lat": 48.95325580160146, "code_postal": "93031", "stop_lon": 2.3148350743686517, "coord": [48.95325580160146, 2.3148350743686517], "stop_id": 4799021, "stop_desc": "AV. DE LATTRE DE TASSIGNY - 93031", "stop_name": "ROSE BERTIN (CENTRE COMMERCIAL L'ILO)"}, "geometry": {"type": "Point", "coordinates": [2.3148350743686517, 48.95325580160146]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c4fd760ceccc68a8f64bebc414890c2745a33459", "fields": {"departement": "93", "stop_lat": 48.95531751659944, "code_postal": "93031", "stop_lon": 2.2954158146962182, "coord": [48.95531751659944, 2.2954158146962182], "stop_id": 4799029, "stop_desc": "RUE FELIX MERLIN - 93031", "stop_name": "EPINAY - ORGEMONT"}, "geometry": {"type": "Point", "coordinates": [2.2954158146962182, 48.95531751659944]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c33f90ceaf0c8ccc333a5c13b25cce29662a0fe7", "fields": {"departement": "92", "stop_lat": 48.82795039915451, "code_postal": "92072", "stop_lon": 2.2247466599919257, "coord": [48.82795039915451, 2.2247466599919257], "stop_id": 4834509, "stop_desc": "ALLEE DU PONT DE SEVRES - 92072", "stop_name": "MUSEE DE SEVRES"}, "geometry": {"type": "Point", "coordinates": [2.2247466599919257, 48.82795039915451]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3720c011b613994235ee111435aa4a42d89a1e04", "fields": {"departement": "92", "stop_lat": 48.82719400030173, "code_postal": "92072", "stop_lon": 2.2232373238068854, "coord": [48.82719400030173, 2.2232373238068854], "stop_id": 4834510, "stop_desc": "1 GRANDE RUE - 92072", "stop_name": "MUSEE DE SEVRES"}, "geometry": {"type": "Point", "coordinates": [2.2232373238068854, 48.82719400030173]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "749a865fe21562fb3d0902d3ae340898cee9a2aa", "fields": {"departement": "92", "stop_lat": 48.82642556896797, "code_postal": "92072", "stop_lon": 2.2186517020558836, "coord": [48.82642556896797, 2.2186517020558836], "stop_id": 4834511, "stop_desc": "16 GRANDE RUE - 92072", "stop_name": "PARC DE SAINT-CLOUD"}, "geometry": {"type": "Point", "coordinates": [2.2186517020558836, 48.82642556896797]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ad07297837ac38fb8bf5861795f42156c32871cb", "fields": {"departement": "92", "stop_lat": 48.824703549250714, "code_postal": "92072", "stop_lon": 2.2133742801364997, "coord": [48.824703549250714, 2.2133742801364997], "stop_id": 4834513, "stop_desc": "48 GRANDE RUE - 92072", "stop_name": "MAIRIE DE SEVRES"}, "geometry": {"type": "Point", "coordinates": [2.2133742801364997, 48.824703549250714]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2880a97d438f20ec74b3eb8ebc06908dff56dece", "fields": {"departement": "92", "stop_lat": 48.82600556845315, "code_postal": "92077", "stop_lon": 2.196151878145116, "coord": [48.82600556845315, 2.196151878145116], "stop_id": 4834521, "stop_desc": "FACE 61 R DE SEVRES - 92077", "stop_name": "PARC DE LESSER"}, "geometry": {"type": "Point", "coordinates": [2.196151878145116, 48.82600556845315]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bf2256bea963951aa8a4f7e262b2ee678aed9b55", "fields": {"departement": "92", "stop_lat": 48.82734840672573, "code_postal": "92077", "stop_lon": 2.184564034802297, "coord": [48.82734840672573, 2.184564034802297], "stop_id": 4834525, "stop_desc": "9 R DE MARNES - 92077", "stop_name": "CHATEAU DE VILLE D'AVRAY"}, "geometry": {"type": "Point", "coordinates": [2.184564034802297, 48.82734840672573]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "128800e2e65281b4f30207c9e040ace9f8d9a2c0", "fields": {"departement": "92", "stop_lat": 48.838547281937004, "code_postal": "92033", "stop_lon": 2.171351380628767, "coord": [48.838547281937004, 2.171351380628767], "stop_id": 4834527, "stop_desc": "104 BOULEVARD RAYMOND POINCARE - 92033", "stop_name": "HOPITAL DE GARCHES"}, "geometry": {"type": "Point", "coordinates": [2.171351380628767, 48.838547281937004]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "75415a7c42916781978ab0d96a7ce973aa43a0d1", "fields": {"departement": "92", "stop_lat": 48.837536718513554, "code_postal": "92076", "stop_lon": 2.156296279149216, "coord": [48.837536718513554, 2.156296279149216], "stop_id": 4834531, "stop_desc": "81 BIS BD DE LA REPUBLIQUE - 92076", "stop_name": "FER ROUGE"}, "geometry": {"type": "Point", "coordinates": [2.156296279149216, 48.837536718513554]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9e3627c55e9f4e56097478c5f9a83a282e8336ec", "fields": {"departement": "78", "stop_lat": 48.83645048465435, "code_postal": "78126", "stop_lon": 2.140112010533826, "coord": [48.83645048465435, 2.140112010533826], "stop_id": 4834535, "stop_desc": "6 AV DE VERDUN - 78126", "stop_name": "PLACE DE VERDUN"}, "geometry": {"type": "Point", "coordinates": [2.140112010533826, 48.83645048465435]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c2c0956277ec70bfa3873b760b5a2000fdde2ec6", "fields": {"departement": "78", "stop_lat": 48.836693090393624, "code_postal": "78126", "stop_lon": 2.1295050662845267, "coord": [48.836693090393624, 2.1295050662845267], "stop_id": 4834538, "stop_desc": "AV LUCIEN RENE DUCHESNE - 78126", "stop_name": "BEL AIR"}, "geometry": {"type": "Point", "coordinates": [2.1295050662845267, 48.836693090393624]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9304080e3c28c385747a3ff1f119796ec372f668", "fields": {"departement": "78", "stop_lat": 48.841118006927466, "code_postal": "78126", "stop_lon": 2.1312438220239707, "coord": [48.841118006927466, 2.1312438220239707], "stop_id": 4834541, "stop_desc": "31 AVENUE LUCIEN RENE DUCHESNE - 78126", "stop_name": "GRANDE TERRASSE"}, "geometry": {"type": "Point", "coordinates": [2.1312438220239707, 48.841118006927466]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1b0ecb50052a4cf28d9ea426833e9d6b2c7fb04b", "fields": {"departement": "78", "stop_lat": 48.843493783225576, "code_postal": "78126", "stop_lon": 2.1383286907641343, "coord": [48.843493783225576, 2.1383286907641343], "stop_id": 4834547, "stop_desc": "PL CORNEILLE - 78126", "stop_name": "LA CELLE ST-CLOUD - GARE SNCF"}, "geometry": {"type": "Point", "coordinates": [2.1383286907641343, 48.843493783225576]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8f82d711246d46a18e155692de83cfc1cb14a558", "fields": {"departement": "78", "stop_lat": 48.83624410892972, "code_postal": "78158", "stop_lon": 2.1403170166599637, "coord": [48.83624410892972, 2.1403170166599637], "stop_id": 4834551, "stop_desc": "AV DE VERDUN - 78158", "stop_name": "PLACE DE VERDUN"}, "geometry": {"type": "Point", "coordinates": [2.1403170166599637, 48.83624410892972]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f7ad28487e490ee04467926f2aeaf2a646c87329", "fields": {"departement": "92", "stop_lat": 48.83753556192118, "code_postal": "92047", "stop_lon": 2.1615244933677267, "coord": [48.83753556192118, 2.1615244933677267], "stop_id": 4834553, "stop_desc": "41-43 BD DE LA REPUBLIQUE - 92047", "stop_name": "STADE DE LA MARCHE"}, "geometry": {"type": "Point", "coordinates": [2.1615244933677267, 48.83753556192118]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "115beed7f2522c3c9741eae5cbd5f54afaa5baa2", "fields": {"departement": "92", "stop_lat": 48.82770148931494, "code_postal": "92077", "stop_lon": 2.1796352556870064, "coord": [48.82770148931494, 2.1796352556870064], "stop_id": 4834556, "stop_desc": "27 AV THIERRY - 92077", "stop_name": "MATIGNON"}, "geometry": {"type": "Point", "coordinates": [2.1796352556870064, 48.82770148931494]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a988faed49bdf37045c4797c94a1b31be469e9d1", "fields": {"departement": "92", "stop_lat": 48.778723681750364, "code_postal": "92071", "stop_lon": 2.2918453420322225, "coord": [48.778723681750364, 2.2918453420322225], "stop_id": 4834566, "stop_desc": "2 AVENUE DE CAMBERWELL - 92071", "stop_name": "FONTENAY - HOUDAN"}, "geometry": {"type": "Point", "coordinates": [2.2918453420322225, 48.778723681750364]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "15dd4692f97064f19c4397e8bf49e4e0a6a88b59", "fields": {"departement": "92", "stop_lat": 48.77843797277436, "code_postal": "92071", "stop_lon": 2.297149438839424, "coord": [48.77843797277436, 2.297149438839424], "stop_id": 4834568, "stop_desc": "FACE 17 BOULEVARD COLBERT - 92071", "stop_name": "EGLISE DE SCEAUX"}, "geometry": {"type": "Point", "coordinates": [2.297149438839424, 48.77843797277436]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bf66c299278ab897cf5ee6e2af15183aac225450", "fields": {"departement": "92", "stop_lat": 48.778313723161865, "code_postal": "92071", "stop_lon": 2.3021541783156794, "coord": [48.778313723161865, 2.3021541783156794], "stop_id": 4834570, "stop_desc": "FACE 4 AVENUE DU PRESIDENT FRANKLIN ROOSEVELT - 92071", "stop_name": "PARC DE SCEAUX"}, "geometry": {"type": "Point", "coordinates": [2.3021541783156794, 48.778313723161865]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c13833c4c818ff2d28ceb02921b0ed8b3fe7a075", "fields": {"departement": "92", "stop_lat": 48.77753596618915, "code_postal": "92014", "stop_lon": 2.321982585930126, "coord": [48.77753596618915, 2.321982585930126], "stop_id": 4834577, "stop_desc": "29 BOULEVARD CARNOT - 92014", "stop_name": "GALOIS"}, "geometry": {"type": "Point", "coordinates": [2.321982585930126, 48.77753596618915]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f56eda03524625d5e8352b7e59d0c82ee9952eb4", "fields": {"departement": "94", "stop_lat": 48.77562197572188, "code_postal": "94038", "stop_lon": 2.3260764080515264, "coord": [48.77562197572188, 2.3260764080515264], "stop_id": 4834579, "stop_desc": "74 AVENUE LARROUMES - 94038", "stop_name": "BARBUSSE - LARROUMES"}, "geometry": {"type": "Point", "coordinates": [2.3260764080515264, 48.77562197572188]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9434e5ef43ba308d95938744fef3c0750e90038f", "fields": {"departement": "94", "stop_lat": 48.77631442599705, "code_postal": "94038", "stop_lon": 2.331243898097316, "coord": [48.77631442599705, 2.331243898097316], "stop_id": 4834580, "stop_desc": "28 AVENUE LARROUMES - 94038", "stop_name": "SOUS-PREFECTURE - ROSERAIE"}, "geometry": {"type": "Point", "coordinates": [2.331243898097316, 48.77631442599705]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dedb2bd57df133a017694399b18933c4fc674759", "fields": {"departement": "94", "stop_lat": 48.77630541298781, "code_postal": "94038", "stop_lon": 2.330767932472282, "coord": [48.77630541298781, 2.330767932472282], "stop_id": 4834581, "stop_desc": "30 AVENUE LARROUMES - 94038", "stop_name": "SOUS-PREFECTURE - ROSERAIE"}, "geometry": {"type": "Point", "coordinates": [2.330767932472282, 48.77630541298781]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7cd03da6ca1f0c677e2527c01cb7b9ea1a1cc763", "fields": {"departement": "94", "stop_lat": 48.779846859794795, "code_postal": "94038", "stop_lon": 2.337689877550507, "coord": [48.779846859794795, 2.337689877550507], "stop_id": 4834585, "stop_desc": "11 RUE DES JARDINS - 94038", "stop_name": "MAIRIE DE L'HAY-LES-ROSES"}, "geometry": {"type": "Point", "coordinates": [2.337689877550507, 48.779846859794795]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5e807337be9e8414cfa19b1f1423d20e35daf968", "fields": {"departement": "94", "stop_lat": 48.77589211459192, "code_postal": "94038", "stop_lon": 2.3397704819584093, "coord": [48.77589211459192, 2.3397704819584093], "stop_id": 4834586, "stop_desc": "124 AVENUE PAUL VAILLANT COUTURIER - 94038", "stop_name": "TOURNELLES"}, "geometry": {"type": "Point", "coordinates": [2.3397704819584093, 48.77589211459192]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c7627799705a75b3450f81fec748b9c4c63cb1bd", "fields": {"departement": "94", "stop_lat": 48.77070532619788, "code_postal": "94021", "stop_lon": 2.3503491492177844, "coord": [48.77070532619788, 2.3503491492177844], "stop_id": 4834591, "stop_desc": "100 AVENUE DU GENERAL DE GAULLE - 94021", "stop_name": "CENTRE CULTUREL - ANDRE MALRAUX"}, "geometry": {"type": "Point", "coordinates": [2.3503491492177844, 48.77070532619788]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b77847a5d2804a65e4df1bc3d38dabbc66b5057c", "fields": {"departement": "94", "stop_lat": 48.77199845269846, "code_postal": "94021", "stop_lon": 2.358358650425997, "coord": [48.77199845269846, 2.358358650425997], "stop_id": 4834595, "stop_desc": "11 BIS AVENUE DU PRESIDENT FRANKLIN ROOSEVELT - 94021", "stop_name": "CITE DES SORBIERS"}, "geometry": {"type": "Point", "coordinates": [2.358358650425997, 48.77199845269846]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "729afd907891ab0cdad940875c49780910829158", "fields": {"departement": "94", "stop_lat": 48.76829332558924, "code_postal": "94021", "stop_lon": 2.3677934294587164, "coord": [48.76829332558924, 2.3677934294587164], "stop_id": 4834598, "stop_desc": "240 AVENUE DE STALINGRAD - 94021", "stop_name": "BRETAGNE"}, "geometry": {"type": "Point", "coordinates": [2.3677934294587164, 48.76829332558924]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fa6d486bbd5de5a757d192bebb6a19d01c68479d", "fields": {"departement": "94", "stop_lat": 48.759647325903956, "code_postal": "94021", "stop_lon": 2.3655724136005585, "coord": [48.759647325903956, 2.3655724136005585], "stop_id": 4834603, "stop_desc": "RUE DE THIAIS - 94021", "stop_name": "PORTE DE THIAIS"}, "geometry": {"type": "Point", "coordinates": [2.3655724136005585, 48.759647325903956]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3ce7e60cae57d93c0d9487e0a9bdd62c9de18696", "fields": {"departement": "94", "stop_lat": 48.76150973348482, "code_postal": "94021", "stop_lon": 2.356179161915079, "coord": [48.76150973348482, 2.356179161915079], "stop_id": 4834606, "stop_desc": "AVENUE DES TROIS MARCHES - 94021", "stop_name": "TROIS MARCHES"}, "geometry": {"type": "Point", "coordinates": [2.356179161915079, 48.76150973348482]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f3d3f9f98ab20890cb0175c5719c18018bd667d4", "fields": {"departement": "94", "stop_lat": 48.764862757592766, "code_postal": "94021", "stop_lon": 2.3530125029203894, "coord": [48.764862757592766, 2.3530125029203894], "stop_id": 4834610, "stop_desc": "AVENUE DES MARAICHERS - 94021", "stop_name": "CHATEAURENARD"}, "geometry": {"type": "Point", "coordinates": [2.3530125029203894, 48.764862757592766]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fa68a6e3c0eb206fded0c2b1205c9761fce9cb52", "fields": {"departement": "94", "stop_lat": 48.77854357434589, "code_postal": "94038", "stop_lon": 2.3398250090358874, "coord": [48.77854357434589, 2.3398250090358874], "stop_id": 4834619, "stop_desc": "5 RUE HENRI THIRARD - 94038", "stop_name": "HENRI THIRARD-LEON JOUHAUX"}, "geometry": {"type": "Point", "coordinates": [2.3398250090358874, 48.77854357434589]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b91040ef20eddde667b5f89b6e15eb5bb529568d", "fields": {"departement": "92", "stop_lat": 48.77909754800662, "code_postal": "92071", "stop_lon": 2.283168354791031, "coord": [48.77909754800662, 2.283168354791031], "stop_id": 4834627, "stop_desc": "FACE 131 RUE HOUDAN - 92071", "stop_name": "CIMETIERE DE SCEAUX"}, "geometry": {"type": "Point", "coordinates": [2.283168354791031, 48.77909754800662]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a392da41acb00daa985a6424dfdc1da0280209d2", "fields": {"departement": "92", "stop_lat": 48.77843797277436, "code_postal": "92071", "stop_lon": 2.297149438839424, "coord": [48.77843797277436, 2.297149438839424], "stop_id": 4834632, "stop_desc": "FACE 17 BOULEVARD COLBERT - 92071", "stop_name": "EGLISE DE SCEAUX"}, "geometry": {"type": "Point", "coordinates": [2.297149438839424, 48.77843797277436]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4b899067595f9f48120cc2ae01e0a7d3c34bfab2", "fields": {"departement": "92", "stop_lat": 48.77866238995284, "code_postal": "92071", "stop_lon": 2.2963196859352615, "coord": [48.77866238995284, 2.2963196859352615], "stop_id": 4834633, "stop_desc": "17-19 BOULEVARD COLBERT - 92071", "stop_name": "EGLISE DE SCEAUX"}, "geometry": {"type": "Point", "coordinates": [2.2963196859352615, 48.77866238995284]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2aab551d0d4d5cd66bcf09d3adb7b1975e38e75a", "fields": {"departement": "92", "stop_lat": 48.778313723161865, "code_postal": "92071", "stop_lon": 2.3021541783156794, "coord": [48.778313723161865, 2.3021541783156794], "stop_id": 4834634, "stop_desc": "FACE 4 AVENUE DU PRESIDENT FRANKLIN ROOSEVELT - 92071", "stop_name": "PARC DE SCEAUX"}, "geometry": {"type": "Point", "coordinates": [2.3021541783156794, 48.778313723161865]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "093c5324dab487457ba62ff9fb4eb0a198296cce", "fields": {"departement": "95", "stop_lat": 49.00591027276414, "code_postal": "95680", "stop_lon": 2.382603982284786, "coord": [49.00591027276414, 2.382603982284786], "stop_id": 4226784, "stop_desc": "FACE 33 RUE DE PARIS - 95680", "stop_name": "DOCTEUR RAMPON"}, "geometry": {"type": "Point", "coordinates": [2.382603982284786, 49.00591027276414]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6f471cda1cbc203e82e1a955142892c01d793e34", "fields": {"departement": "95", "stop_lat": 49.01038482417008, "code_postal": "95680", "stop_lon": 2.3842198589862327, "coord": [49.01038482417008, 2.3842198589862327], "stop_id": 4226786, "stop_desc": "FACE 73 RUE DE PARIS - 95680", "stop_name": "L'ESPERANCE"}, "geometry": {"type": "Point", "coordinates": [2.3842198589862327, 49.01038482417008]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9fb16119061d6551f29dc77167ec971035b6f5f7", "fields": {"departement": "95", "stop_lat": 49.0087766464134, "code_postal": "95680", "stop_lon": 2.3832758453998397, "coord": [49.0087766464134, 2.3832758453998397], "stop_id": 4226787, "stop_desc": "65 RUE DE PARIS - 95680", "stop_name": "L'ESPERANCE"}, "geometry": {"type": "Point", "coordinates": [2.3832758453998397, 49.0087766464134]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5251dc6a299337975cc0393655c4f0a2637dfff0", "fields": {"departement": "95", "stop_lat": 49.032202453507374, "code_postal": "95229", "stop_lon": 2.3534083393181398, "coord": [49.032202453507374, 2.3534083393181398], "stop_id": 4226806, "stop_desc": "9 RUE DE FLEMING - 95229", "stop_name": "FLEMING"}, "geometry": {"type": "Point", "coordinates": [2.3534083393181398, 49.032202453507374]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a260f056b23f2d8e590717bbeccdabd5dc42c3c6", "fields": {"departement": "95", "stop_lat": 49.03412643918496, "code_postal": "95229", "stop_lon": 2.3428581058312687, "coord": [49.03412643918496, 2.3428581058312687], "stop_id": 4226808, "stop_desc": "94 ROUTE DE DOMONT - 95229", "stop_name": "PISCINE"}, "geometry": {"type": "Point", "coordinates": [2.3428581058312687, 49.03412643918496]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a8b7e4493c2e1eced81efc2cc36aed989fa3abd7", "fields": {"departement": "95", "stop_lat": 49.03400957129806, "code_postal": "95229", "stop_lon": 2.3438147729072463, "coord": [49.03400957129806, 2.3438147729072463], "stop_id": 4226809, "stop_desc": "85 ROUTE DE DOMONT - 95229", "stop_name": "PISCINE"}, "geometry": {"type": "Point", "coordinates": [2.3438147729072463, 49.03400957129806]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e8fa0a85915c180d0b1f4500fd3054c602d3e402", "fields": {"departement": "95", "stop_lat": 49.01882493468095, "code_postal": "95205", "stop_lon": 2.378748727453501, "coord": [49.01882493468095, 2.378748727453501], "stop_id": 4226822, "stop_desc": "3 RUE PAUL LORILLON - 95205", "stop_name": "MAIRIE CHATEAU"}, "geometry": {"type": "Point", "coordinates": [2.378748727453501, 49.01882493468095]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "39e7d67c3e0d5dd405c037262bea18f3a0ee7328", "fields": {"departement": "95", "stop_lat": 48.9831272330852, "code_postal": "95585", "stop_lon": 2.388796313327863, "coord": [48.9831272330852, 2.388796313327863], "stop_id": 4226825, "stop_desc": "ROUTE DES REFUZNIKS - 95585", "stop_name": "HAUT DU ROY"}, "geometry": {"type": "Point", "coordinates": [2.388796313327863, 48.9831272330852]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "57decd2f66d1714130c8fa42bc03e144577d1220", "fields": {"departement": "95", "stop_lat": 48.998632157678905, "code_postal": "95585", "stop_lon": 2.3803850841361296, "coord": [48.998632157678905, 2.3803850841361296], "stop_id": 4226829, "stop_desc": "PLACE DU SOUVENIR FRANCAIS - 95585", "stop_name": "PLACE DU SOUVENIR FRANCAIS"}, "geometry": {"type": "Point", "coordinates": [2.3803850841361296, 48.998632157678905]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e2de8bc9766c4111dd8ef1cc2d966924ded4e21e", "fields": {"departement": "95", "stop_lat": 49.00591027276414, "code_postal": "95680", "stop_lon": 2.382603982284786, "coord": [49.00591027276414, 2.382603982284786], "stop_id": 4226831, "stop_desc": "FACE 33 RUE DE PARIS - 95680", "stop_name": "DOCTEUR RAMPON"}, "geometry": {"type": "Point", "coordinates": [2.382603982284786, 49.00591027276414]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4b72b437a239fbc299854d40540b732fb2ccd0bb", "fields": {"departement": "95", "stop_lat": 49.022953862802616, "code_postal": "95229", "stop_lon": 2.3637627087742024, "coord": [49.022953862802616, 2.3637627087742024], "stop_id": 4226838, "stop_desc": "44-46 RUE DE LA GARE - 95229", "stop_name": "GARE D'ECOUEN - EZANVILLE"}, "geometry": {"type": "Point", "coordinates": [2.3637627087742024, 49.022953862802616]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "14016510baf7190bc832f9ee9e326ff4a7b59c19", "fields": {"departement": "95", "stop_lat": 49.0331644830302, "code_postal": "95229", "stop_lon": 2.3489806518185485, "coord": [49.0331644830302, 2.3489806518185485], "stop_id": 4226845, "stop_desc": "FACE 12BIS RUE PAUL FORT - 95229", "stop_name": "RU DE VAUX"}, "geometry": {"type": "Point", "coordinates": [2.3489806518185485, 49.0331644830302]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "110ae7d8f0466705b20a80e962097eb13c3d9bfd", "fields": {"departement": "95", "stop_lat": 48.99397653556502, "code_postal": "95585", "stop_lon": 2.3822111429168356, "coord": [48.99397653556502, 2.3822111429168356], "stop_id": 4230045, "stop_desc": "1 RUE JEAN-JACQUES ROUSSEAU - 95585", "stop_name": "LYCEE JEAN-JACQUES ROUSSEAU"}, "geometry": {"type": "Point", "coordinates": [2.3822111429168356, 48.99397653556502]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "337b04fb32cb8542b3431e2c52d0c700c2bf459d", "fields": {"departement": "95", "stop_lat": 48.99436259243544, "code_postal": "95585", "stop_lon": 2.38315376864614, "coord": [48.99436259243544, 2.38315376864614], "stop_id": 4230046, "stop_desc": "FACE 9 RUE JEAN-JACQUES ROUSSEAU - 95585", "stop_name": "LYCEE JEAN-JACQUES ROUSSEAU"}, "geometry": {"type": "Point", "coordinates": [2.38315376864614, 48.99436259243544]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "15d312c4440ebea1971349323ac2dcb2d847111e", "fields": {"departement": "95", "stop_lat": 48.991445119553724, "code_postal": "95585", "stop_lon": 2.374179444928489, "coord": [48.991445119553724, 2.374179444928489], "stop_id": 4230049, "stop_desc": "49 RUE PIERRE BROSSOLETTE - 95585", "stop_name": "THEODORE BULLIER"}, "geometry": {"type": "Point", "coordinates": [2.374179444928489, 48.991445119553724]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1eef1e1aa751d4657158d417be085612e8b8555f", "fields": {"departement": "95", "stop_lat": 48.982296748410626, "code_postal": "95585", "stop_lon": 2.374678083360822, "coord": [48.982296748410626, 2.374678083360822], "stop_id": 4230057, "stop_desc": "RUE RAYMOND ROCHON - 95585", "stop_name": "COLLEGE CHANTEREINE"}, "geometry": {"type": "Point", "coordinates": [2.374678083360822, 48.982296748410626]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6dcb0e189cf2a583763bf8bbb3610c409028e1ad", "fields": {"departement": "95", "stop_lat": 48.98255755604929, "code_postal": "95585", "stop_lon": 2.3740365687099394, "coord": [48.98255755604929, 2.3740365687099394], "stop_id": 4230058, "stop_desc": "RUE RAYMOND ROCHON - 95585", "stop_name": "COLLEGE CHANTEREINE"}, "geometry": {"type": "Point", "coordinates": [2.3740365687099394, 48.98255755604929]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1b811d01f1f1e72cb2392f9b1cff5b8d425c6e97", "fields": {"departement": "95", "stop_lat": 48.98032024507773, "code_postal": "95585", "stop_lon": 2.372956417001388, "coord": [48.98032024507773, 2.372956417001388], "stop_id": 4230060, "stop_desc": "75 AVENUE PAUL VALERY - 95585", "stop_name": "LOUIS LEBRUN"}, "geometry": {"type": "Point", "coordinates": [2.372956417001388, 48.98032024507773]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7ec8b5ba6ab2c26567257e99e2f904417c7f1a88", "fields": {"departement": "95", "stop_lat": 48.97644768689324, "code_postal": "95585", "stop_lon": 2.370769480865649, "coord": [48.97644768689324, 2.370769480865649], "stop_id": 4230064, "stop_desc": "BOULEVARD ALBERT CAMUS - 95585", "stop_name": "PLACE ANDRE GIDE"}, "geometry": {"type": "Point", "coordinates": [2.370769480865649, 48.97644768689324]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "11f6d86473250fa7573c6e374dfb22fd3792c075", "fields": {"departement": "95", "stop_lat": 48.97359879262448, "code_postal": "95585", "stop_lon": 2.3713273223638187, "coord": [48.97359879262448, 2.3713273223638187], "stop_id": 4230065, "stop_desc": "FACE 30 AVENUE CESAR FRANCK - 95585", "stop_name": "CAMILLE SAINT-SAENS"}, "geometry": {"type": "Point", "coordinates": [2.3713273223638187, 48.97359879262448]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5d8413fc87aed086227188305e2109e65edd3092", "fields": {"departement": "95", "stop_lat": 48.97923057772253, "code_postal": "95585", "stop_lon": 2.3799593381925406, "coord": [48.97923057772253, 2.3799593381925406], "stop_id": 4230087, "stop_desc": "35 AVENUE PAUL VALERY - 95585", "stop_name": "PAUL VALERY"}, "geometry": {"type": "Point", "coordinates": [2.3799593381925406, 48.97923057772253]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "abca693ff4061f495ccd44d426aa59e701edbbce", "fields": {"departement": "95", "stop_lat": 49.0085567894623, "code_postal": "95585", "stop_lon": 2.3684134310552074, "coord": [49.0085567894623, 2.3684134310552074], "stop_id": 4238637, "stop_desc": "25 AVENUE DE LA RUCHE - 95585", "stop_name": "AVENUE DU ROND-POINT"}, "geometry": {"type": "Point", "coordinates": [2.3684134310552074, 49.0085567894623]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a4b0054f8f8ae171a5b74e84bd1715f968340629", "fields": {"departement": "95", "stop_lat": 49.0044038223668, "code_postal": "95585", "stop_lon": 2.373027680745698, "coord": [49.0044038223668, 2.373027680745698], "stop_id": 4238640, "stop_desc": "33 RUE GABRIEL PERI - 95585", "stop_name": "CHAMP DE CHARTRES"}, "geometry": {"type": "Point", "coordinates": [2.373027680745698, 49.0044038223668]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "869adbe635b77b0d20701826f09f42e7f981231b", "fields": {"departement": "95", "stop_lat": 49.00220200632929, "code_postal": "95585", "stop_lon": 2.3735724955463757, "coord": [49.00220200632929, 2.3735724955463757], "stop_id": 4238642, "stop_desc": "FACE 18 RUE GABRIEL PERI - 95585", "stop_name": "ECOLE JULES FERRY"}, "geometry": {"type": "Point", "coordinates": [2.3735724955463757, 49.00220200632929]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4687cb8bdd3fe47aa5b7c2ed1124b4723fcac197", "fields": {"departement": "95", "stop_lat": 48.992838363351694, "code_postal": "95585", "stop_lon": 2.373033337598192, "coord": [48.992838363351694, 2.373033337598192], "stop_id": 4238651, "stop_desc": "15 BD DU GENERAL DE GAULLE - 95585", "stop_name": "CARNOT"}, "geometry": {"type": "Point", "coordinates": [2.373033337598192, 48.992838363351694]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "814af53fc14b9226608a27f0427096841965f225", "fields": {"departement": "95", "stop_lat": 48.983472205531655, "code_postal": "95585", "stop_lon": 2.3799628396528343, "coord": [48.983472205531655, 2.3799628396528343], "stop_id": 4238658, "stop_desc": "AVENUE PAUL LANGEVIN - 95585", "stop_name": "PISCINE"}, "geometry": {"type": "Point", "coordinates": [2.3799628396528343, 48.983472205531655]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f8916ee5a7d4430dfe0d533d1b1887f34f1cec9b", "fields": {"departement": "95", "stop_lat": 48.97980646193852, "code_postal": "95585", "stop_lon": 2.3778163653237265, "coord": [48.97980646193852, 2.3778163653237265], "stop_id": 4238659, "stop_desc": "1 BOULEVARD ALEXIS CARREL - 95585", "stop_name": "PAUL VALERY - DE LATTRE DE TASSIGNY"}, "geometry": {"type": "Point", "coordinates": [2.3778163653237265, 48.97980646193852]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "99fdce98e05cb7c5ffa466ec3d6ccbb9c58a31ac", "fields": {"departement": "95", "stop_lat": 48.97569199699532, "code_postal": "95268", "stop_lon": 2.396119736437475, "coord": [48.97569199699532, 2.396119736437475], "stop_id": 4238667, "stop_desc": "AVENUE CHARLES DE GAULLE - 95268", "stop_name": "JEAN-BAPTISTE COROT - LAMARTINE"}, "geometry": {"type": "Point", "coordinates": [2.396119736437475, 48.97569199699532]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "27be6e748e749404bd67f7b31f8a0a3c4b722895", "fields": {"departement": "95", "stop_lat": 48.97356093396896, "code_postal": "95268", "stop_lon": 2.3986017741043617, "coord": [48.97356093396896, 2.3986017741043617], "stop_id": 4238670, "stop_desc": "AVENUE FRANCOIS MITTERRAND - 95268", "stop_name": "DE GAULLE - MITTERRAND"}, "geometry": {"type": "Point", "coordinates": [2.3986017741043617, 48.97356093396896]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "066fb23028e23e609fcd6a8fda306ce9febcb978", "fields": {"departement": "95", "stop_lat": 48.97030717949008, "code_postal": "95268", "stop_lon": 2.399785469428075, "coord": [48.97030717949008, 2.399785469428075], "stop_id": 4238673, "stop_desc": "RUE JEAN GOUJON - 95268", "stop_name": "LES MURIERS"}, "geometry": {"type": "Point", "coordinates": [2.399785469428075, 48.97030717949008]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c997fed92762e69b00d4bdfecd929e7480dcf7d4", "fields": {"departement": "95", "stop_lat": 48.97049573285289, "code_postal": "95268", "stop_lon": 2.40009964917705, "coord": [48.97049573285289, 2.40009964917705], "stop_id": 4238674, "stop_desc": "RUE JEAN GOUJON - 95268", "stop_name": "LES MURIERS"}, "geometry": {"type": "Point", "coordinates": [2.40009964917705, 48.97049573285289]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "608a5459885ec7f6d835192b71643d82683d482c", "fields": {"departement": "95", "stop_lat": 48.96899188793405, "code_postal": "95268", "stop_lon": 2.4057078437948904, "coord": [48.96899188793405, 2.4057078437948904], "stop_id": 4238676, "stop_desc": "AV DU GENERAL DE GAULLE - 95268", "stop_name": "LINO VENTURA"}, "geometry": {"type": "Point", "coordinates": [2.4057078437948904, 48.96899188793405]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "19b693c98ea3e22f813abf21e0785c4e2a5d85ee", "fields": {"departement": "93", "stop_lat": 48.95610771523027, "code_postal": "93030", "stop_lon": 2.4159391678675153, "coord": [48.95610771523027, 2.4159391678675153], "stop_id": 4238681, "stop_desc": "FACE 14 AVENUE AMBROISE CROIZAT - 93030", "stop_name": "LEO LAGRANGE"}, "geometry": {"type": "Point", "coordinates": [2.4159391678675153, 48.95610771523027]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dc62f5b38164959353ee8632a7413430d441d72c", "fields": {"departement": "93", "stop_lat": 48.95413029004509, "code_postal": "93030", "stop_lon": 2.4164683469583084, "coord": [48.95413029004509, 2.4164683469583084], "stop_id": 4238684, "stop_desc": "AVENUE LOUIS LARIVIERE - 93030", "stop_name": "GABRIEL PERI"}, "geometry": {"type": "Point", "coordinates": [2.4164683469583084, 48.95413029004509]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a3b556d7735cbd24ef494404fdaec9818c756cd6", "fields": {"departement": "95", "stop_lat": 49.00890691299258, "code_postal": "95585", "stop_lon": 2.3696977026677843, "coord": [49.00890691299258, 2.3696977026677843], "stop_id": 4238701, "stop_desc": "98 RUE GABRIEL PERI - 95585", "stop_name": "CHEMIN DES COUTURES"}, "geometry": {"type": "Point", "coordinates": [2.3696977026677843, 49.00890691299258]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "717478b8e19d59a3d21c0d97150d5fc59bd59579", "fields": {"departement": "95", "stop_lat": 48.991552816451964, "code_postal": "95585", "stop_lon": 2.3746301578176694, "coord": [48.991552816451964, 2.3746301578176694], "stop_id": 4238707, "stop_desc": "FACE 4 AVENUE DIVISION LECLERC - 95585", "stop_name": "THEODORE BULLIER"}, "geometry": {"type": "Point", "coordinates": [2.3746301578176694, 48.991552816451964]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2d55c07ee8edf0d1a63ab076dbb5650d7fbe78a2", "fields": {"departement": "95", "stop_lat": 49.011019041292165, "code_postal": "95585", "stop_lon": 2.3683739325781117, "coord": [49.011019041292165, 2.3683739325781117], "stop_id": 4238755, "stop_desc": "FACE 95 RUE GABRIEL PERI - 95585", "stop_name": "BOIS D'ECOUEN"}, "geometry": {"type": "Point", "coordinates": [2.3683739325781117, 49.011019041292165]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d438cb976dec15a97e792b284259dc96117872c7", "fields": {"departement": "95", "stop_lat": 49.0085567894623, "code_postal": "95585", "stop_lon": 2.3684134310552074, "coord": [49.0085567894623, 2.3684134310552074], "stop_id": 4238756, "stop_desc": "25 AVENUE DE LA RUCHE - 95585", "stop_name": "AVENUE DU ROND-POINT"}, "geometry": {"type": "Point", "coordinates": [2.3684134310552074, 49.0085567894623]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0ad2bcdb2e1cd3634d9c91878850ebac6692027f", "fields": {"departement": "95", "stop_lat": 49.00113214356447, "code_postal": "95585", "stop_lon": 2.3751424332945916, "coord": [49.00113214356447, 2.3751424332945916], "stop_id": 4238760, "stop_desc": "27 RUE DE GIRAUDON - 95585", "stop_name": "RUE DES FAUVETTES"}, "geometry": {"type": "Point", "coordinates": [2.3751424332945916, 49.00113214356447]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2654822a4af3850a59371a152f64fd0121fa7609", "fields": {"departement": "95", "stop_lat": 48.994897529127414, "code_postal": "95539", "stop_lon": 2.368473484612116, "coord": [48.994897529127414, 2.368473484612116], "stop_id": 4238763, "stop_desc": "PLACE DE LA GARE - 95539", "stop_name": "GARE DE SARCELLES-SAINT-BRICE"}, "geometry": {"type": "Point", "coordinates": [2.368473484612116, 48.994897529127414]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7b70cb88a04e8a43525631a7c1827c55989800c5", "fields": {"departement": "95", "stop_lat": 48.992838363351694, "code_postal": "95585", "stop_lon": 2.373033337598192, "coord": [48.992838363351694, 2.373033337598192], "stop_id": 4238764, "stop_desc": "15 BD DU GENERAL DE GAULLE - 95585", "stop_name": "CARNOT"}, "geometry": {"type": "Point", "coordinates": [2.373033337598192, 48.992838363351694]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9d2e1c4fa75acb4086a740d6d06dfba6f65aaab5", "fields": {"departement": "95", "stop_lat": 48.983445372512016, "code_postal": "95585", "stop_lon": 2.3796078265809943, "coord": [48.983445372512016, 2.3796078265809943], "stop_id": 4238767, "stop_desc": "AVENUE PAUL LANGEVIN - 95585", "stop_name": "PISCINE"}, "geometry": {"type": "Point", "coordinates": [2.3796078265809943, 48.983445372512016]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "62ff4388d52c6bf083afa80ab604f3d1c2c5aeb9", "fields": {"departement": "95", "stop_lat": 48.97980646193852, "code_postal": "95585", "stop_lon": 2.3778163653237265, "coord": [48.97980646193852, 2.3778163653237265], "stop_id": 4238768, "stop_desc": "1 BOULEVARD ALEXIS CARREL - 95585", "stop_name": "PAUL VALERY - DE LATTRE DE TASSIGNY"}, "geometry": {"type": "Point", "coordinates": [2.3778163653237265, 48.97980646193852]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9df9331f209f201e4fbe838452265c80619d1ed2", "fields": {"departement": "95", "stop_lat": 48.97569199699532, "code_postal": "95268", "stop_lon": 2.396119736437475, "coord": [48.97569199699532, 2.396119736437475], "stop_id": 4238772, "stop_desc": "AVENUE CHARLES DE GAULLE - 95268", "stop_name": "JEAN-BAPTISTE COROT - LAMARTINE"}, "geometry": {"type": "Point", "coordinates": [2.396119736437475, 48.97569199699532]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "387be48ac5add15c6f736c3e109f0886b3a0cf9e", "fields": {"departement": "93", "stop_lat": 48.93447002280072, "code_postal": "93013", "stop_lon": 2.425263733014868, "coord": [48.93447002280072, 2.425263733014868], "stop_id": 4238786, "stop_desc": "65 AVENUE DE LA DIVISION LECLERC - 93013", "stop_name": "ANIZAN CAVILLON - HOTEL DE VILLE"}, "geometry": {"type": "Point", "coordinates": [2.425263733014868, 48.93447002280072]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a01e53bbde4d5e326dc009be250a465276d3e288", "fields": {"departement": "93", "stop_lat": 48.932538229574945, "code_postal": "93013", "stop_lon": 2.4247421268099214, "coord": [48.932538229574945, 2.4247421268099214], "stop_id": 4238787, "stop_desc": "8 AVENUE FRANCIS DE PRESSENSE - 93013", "stop_name": "JEAN JAURES - DIVISION LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.4247421268099214, 48.932538229574945]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "387b44edd03df8da6e96bb475c98ec2f9a5d1d86", "fields": {"departement": "93", "stop_lat": 48.93101006011957, "code_postal": "93013", "stop_lon": 2.425285132274111, "coord": [48.93101006011957, 2.425285132274111], "stop_id": 4238788, "stop_desc": "22 AVENUE FRANCIS DE PRESSENSE - 93013", "stop_name": "LE BOURGET-RER"}, "geometry": {"type": "Point", "coordinates": [2.425285132274111, 48.93101006011957]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "289b75179455d90e7c6bb68a6b4069c6997e6e56", "fields": {"departement": "92", "stop_lat": 48.9233232281649, "code_postal": "92025", "stop_lon": 2.2577199194902486, "coord": [48.9233232281649, 2.2577199194902486], "stop_id": 4274239, "stop_desc": "74 R DU BOURNARD - 92025", "stop_name": "RHIN ET DANUBE"}, "geometry": {"type": "Point", "coordinates": [2.2577199194902486, 48.9233232281649]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "962f9de94408cf01cc76740a06a9e26f196c94be", "fields": {"departement": "92", "stop_lat": 48.92340543054013, "code_postal": "92025", "stop_lon": 2.2597245313593417, "coord": [48.92340543054013, 2.2597245313593417], "stop_id": 4274241, "stop_desc": "RUE DU BOURNARD - 92025", "stop_name": "GARE DE COLOMBES"}, "geometry": {"type": "Point", "coordinates": [2.2597245313593417, 48.92340543054013]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ce26d939c9d9b2aed47b52220b81e3aa6abb07ee", "fields": {"departement": "92", "stop_lat": 48.92083768631448, "code_postal": "92025", "stop_lon": 2.263710378006438, "coord": [48.92083768631448, 2.263710378006438], "stop_id": 4274243, "stop_desc": "40 RUE VICTOR HUGO - 92025", "stop_name": "VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.263710378006438, 48.92083768631448]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "47b2029073054fc6083089e0d34d13b25ff74ae7", "fields": {"departement": "92", "stop_lat": 48.915305366196876, "code_postal": "92009", "stop_lon": 2.269908767441802, "coord": [48.915305366196876, 2.269908767441802], "stop_id": 4274250, "stop_desc": "FACE 43 RUE DU GENERAL LECLERC - 92009", "stop_name": "GARE DE BOIS-COLOMBES"}, "geometry": {"type": "Point", "coordinates": [2.269908767441802, 48.915305366196876]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "059c6d90331541de39c1e7d0a904ac45b6fa10ee", "fields": {"departement": "92", "stop_lat": 48.9131907285221, "code_postal": "92009", "stop_lon": 2.265302891917478, "coord": [48.9131907285221, 2.265302891917478], "stop_id": 4274254, "stop_desc": "6 RUE HEYNEN - 92009", "stop_name": "CLOAREC - PISCINE"}, "geometry": {"type": "Point", "coordinates": [2.265302891917478, 48.9131907285221]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "226dae8e52da01bf46bdfe97a2dd4c47e6f42caf", "fields": {"departement": "92", "stop_lat": 48.910413499458954, "code_postal": "92009", "stop_lon": 2.2649113555775453, "coord": [48.910413499458954, 2.2649113555775453], "stop_id": 4274257, "stop_desc": "FACE 28 RUE PELLETIER - 92009", "stop_name": "JOIGNEAUX - CAMUS"}, "geometry": {"type": "Point", "coordinates": [2.2649113555775453, 48.910413499458954]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "803ce10e3621818000dadc62f929b777386dd6ed", "fields": {"departement": "92", "stop_lat": 48.902797800336785, "code_postal": "92026", "stop_lon": 2.2743146074061666, "coord": [48.902797800336785, 2.2743146074061666], "stop_id": 4274266, "stop_desc": "2 BOULEVARD GEORGES CLEMENCEAU - 92026", "stop_name": "PLACE MERMOZ"}, "geometry": {"type": "Point", "coordinates": [2.2743146074061666, 48.902797800336785]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "287cde5b1f4a9ea8a81a7c0b35a9dd7f8506e471", "fields": {"departement": "92", "stop_lat": 48.91704401852636, "code_postal": "92009", "stop_lon": 2.277733569369412, "coord": [48.91704401852636, 2.277733569369412], "stop_id": 4274272, "stop_desc": "4 RUE CHARLES CHEFSON - 92009", "stop_name": "CAYRON - CHEFSON"}, "geometry": {"type": "Point", "coordinates": [2.277733569369412, 48.91704401852636]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eba22645f9886fd75a8350fea868b394e5472242", "fields": {"departement": "93", "stop_lat": 48.95433871107077, "code_postal": "93005", "stop_lon": 2.457433442997565, "coord": [48.95433871107077, 2.457433442997565], "stop_id": 4274277, "stop_desc": "RUE ROBERT BREMOND - 93005", "stop_name": "ROBERT BREMOND"}, "geometry": {"type": "Point", "coordinates": [2.457433442997565, 48.95433871107077]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "12bb478cff1bfd074844531a9c8c4937ac305002", "fields": {"departement": "93", "stop_lat": 48.9526171602876, "code_postal": "93007", "stop_lon": 2.4623827191222363, "coord": [48.9526171602876, 2.4623827191222363], "stop_id": 4274280, "stop_desc": "RUE ANATOLE SIGONNEAU - 93007", "stop_name": "ANATOLE SIGONNEAU - CENTRE D'AFFAIRES"}, "geometry": {"type": "Point", "coordinates": [2.4623827191222363, 48.9526171602876]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9ce6f53fbde67a74f01c0caddc96dc8964f8c0bd", "fields": {"departement": "93", "stop_lat": 48.950186781515434, "code_postal": "93007", "stop_lon": 2.4574920277380605, "coord": [48.950186781515434, 2.4574920277380605], "stop_id": 4274283, "stop_desc": "AVENUE DESCARTES - 93007", "stop_name": "CIMETIERE DU BLANC-MESNIL"}, "geometry": {"type": "Point", "coordinates": [2.4574920277380605, 48.950186781515434]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fa9353563314de110fb4d0a7e8af5f5ef035d14b", "fields": {"departement": "93", "stop_lat": 48.94925358279104, "code_postal": "93007", "stop_lon": 2.4560708330054455, "coord": [48.94925358279104, 2.4560708330054455], "stop_id": 4274290, "stop_desc": "FACE 25 AVENUE DES COSMONAUTES - 93007", "stop_name": "COSMONAUTES"}, "geometry": {"type": "Point", "coordinates": [2.4560708330054455, 48.94925358279104]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6687028d62310dfb448215ab9181266f120df979", "fields": {"departement": "93", "stop_lat": 48.92581313170106, "code_postal": "93029", "stop_lon": 2.4588129125897304, "coord": [48.92581313170106, 2.4588129125897304], "stop_id": 4274310, "stop_desc": "FACE 63 RUE DU DOCTEUR ALBERT SCHWEITZER - 93029", "stop_name": "STADE CHARLES SAGE"}, "geometry": {"type": "Point", "coordinates": [2.4588129125897304, 48.92581313170106]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "26e9224faaa357d70732af4283561a97aab5f0f5", "fields": {"departement": "93", "stop_lat": 48.927206046432644, "code_postal": "93029", "stop_lon": 2.458870736668276, "coord": [48.927206046432644, 2.458870736668276], "stop_id": 4274312, "stop_desc": "65-67 RUE VICTOR HAUSSONVILLE - 93029", "stop_name": "HAUSSONVILLE"}, "geometry": {"type": "Point", "coordinates": [2.458870736668276, 48.927206046432644]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "54573d4a73939b1e78593a20f4ab877f827eb17f", "fields": {"departement": "94", "stop_lat": 48.75198192285552, "code_postal": "94034", "stop_lon": 2.3161044616529747, "coord": [48.75198192285552, 2.3161044616529747], "stop_id": 4274394, "stop_desc": "FACE 15 AVENUE DU PARC DES SPORTS - 94034", "stop_name": "PARC DES SPORTS"}, "geometry": {"type": "Point", "coordinates": [2.3161044616529747, 48.75198192285552]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eefe77919b89353a65c40f3b003da41c6e0d7091", "fields": {"departement": "94", "stop_lat": 48.75280995344707, "code_postal": "94034", "stop_lon": 2.3237841132649644, "coord": [48.75280995344707, 2.3237841132649644], "stop_id": 4274396, "stop_desc": "27-29 R JULIEN CHAILLIOUX - 94034", "stop_name": "MAISON DE RETRAITE"}, "geometry": {"type": "Point", "coordinates": [2.3237841132649644, 48.75280995344707]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b79515f735686fe774d262a00fd932d76bc714c6", "fields": {"departement": "94", "stop_lat": 48.75847322976688, "code_postal": "94034", "stop_lon": 2.334848471824227, "coord": [48.75847322976688, 2.334848471824227], "stop_id": 4274400, "stop_desc": "5 R DE LA BUTTE - 94034", "stop_name": "CIMETIERE DE FRESNES"}, "geometry": {"type": "Point", "coordinates": [2.334848471824227, 48.75847322976688]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bd302699be67c1d7ad52820aba59f17e4927b89a", "fields": {"departement": "94", "stop_lat": 48.76456680792492, "code_postal": "94034", "stop_lon": 2.3276559189748434, "coord": [48.76456680792492, 2.3276559189748434], "stop_id": 4274402, "stop_desc": "FACE 43 R EMILE ZOLA - 94034", "stop_name": "POSTE ANNEXE"}, "geometry": {"type": "Point", "coordinates": [2.3276559189748434, 48.76456680792492]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0cf0cf72b1df4e7ba3eb6864e170306c5706ffca", "fields": {"departement": "91", "stop_lat": 48.715216538741494, "code_postal": "91027", "stop_lon": 2.3720001812741356, "coord": [48.715216538741494, 2.3720001812741356], "stop_id": 4284896, "stop_desc": "RUE PAUL DEMANGE - 91027", "stop_name": "PORTE DE L'ESSONNE"}, "geometry": {"type": "Point", "coordinates": [2.3720001812741356, 48.715216538741494]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d5c466ef842d1a858299ba0861aa9b54c53f6e1b", "fields": {"departement": "94", "stop_lat": 48.733795814597535, "code_postal": "94054", "stop_lon": 2.3709255641386013, "coord": [48.733795814597535, 2.3709255641386013], "stop_id": 4284901, "stop_desc": "AVENUE DE L'UNION - 94054", "stop_name": "COEUR D'ORLY"}, "geometry": {"type": "Point", "coordinates": [2.3709255641386013, 48.733795814597535]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "deb550cb091725b7605e9d0ca12d2dddab60ead2", "fields": {"departement": "94", "stop_lat": 48.74087328431323, "code_postal": "94065", "stop_lon": 2.3532770253508573, "coord": [48.74087328431323, 2.3532770253508573], "stop_id": 4284906, "stop_desc": "AVENUE DE LA GARE - 94065", "stop_name": "LA FRATERNELLE"}, "geometry": {"type": "Point", "coordinates": [2.3532770253508573, 48.74087328431323]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "31c20f468d3e7c21ed86b08c9e0e6748cd255b55", "fields": {"departement": "94", "stop_lat": 48.740909264659145, "code_postal": "94065", "stop_lon": 2.3530731896185713, "coord": [48.740909264659145, 2.3530731896185713], "stop_id": 4284907, "stop_desc": "RUE DES ALPES - 94065", "stop_name": "LA FRATERNELLE"}, "geometry": {"type": "Point", "coordinates": [2.3530731896185713, 48.740909264659145]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4a3566984898f8373ee3a2f1c320111824696d54", "fields": {"departement": "94", "stop_lat": 48.74664378197582, "code_postal": "94065", "stop_lon": 2.352911839651234, "coord": [48.74664378197582, 2.352911839651234], "stop_id": 4284908, "stop_desc": "6 RUE TRAVERSIERE - 94065", "stop_name": "ROBERT SCHUMAN (PARC SILIC CENTRE)"}, "geometry": {"type": "Point", "coordinates": [2.352911839651234, 48.74664378197582]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c1754e3450df1d78c8cdd39ea6e22b1b84f4f9a2", "fields": {"departement": "94", "stop_lat": 48.752530711860864, "code_postal": "94065", "stop_lon": 2.3553059510145418, "coord": [48.752530711860864, 2.3553059510145418], "stop_id": 4284912, "stop_desc": "PLACE DU RELAIS - 94065", "stop_name": "PORTE DE RUNGIS"}, "geometry": {"type": "Point", "coordinates": [2.3553059510145418, 48.752530711860864]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7d1c4dba72183ca195231f1061069aab876684fc", "fields": {"departement": "94", "stop_lat": 48.77209534461233, "code_postal": "94081", "stop_lon": 2.3675101076806793, "coord": [48.77209534461233, 2.3675101076806793], "stop_id": 4284924, "stop_desc": "AVENUE DE STALINGRAD - 94081", "stop_name": "MOULIN VERT"}, "geometry": {"type": "Point", "coordinates": [2.3675101076806793, 48.77209534461233]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e7ad7ab8a6f7e64759dd940a8fae95ca42954dd5", "fields": {"departement": "94", "stop_lat": 48.778863409174654, "code_postal": "94021", "stop_lon": 2.3671604573737404, "coord": [48.778863409174654, 2.3671604573737404], "stop_id": 4284926, "stop_desc": "AVENUE ARMAND PETITJEAN - 94021", "stop_name": "DOMAINE CHERIOUX"}, "geometry": {"type": "Point", "coordinates": [2.3671604573737404, 48.778863409174654]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d21b290a93c28c397cae1d82b6a8369443dee269", "fields": {"departement": "94", "stop_lat": 48.78316863580082, "code_postal": "94076", "stop_lon": 2.3672173397642844, "coord": [48.78316863580082, 2.3672173397642844], "stop_id": 4284927, "stop_desc": "AVENUE DE STALINGRAD - 94076", "stop_name": "LAMARTINE"}, "geometry": {"type": "Point", "coordinates": [2.3672173397642844, 48.78316863580082]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ab8c0040eaeeee419b1350bcd0e2ef677cd80f09", "fields": {"departement": "94", "stop_lat": 48.787536899371986, "code_postal": "94076", "stop_lon": 2.3667301884492553, "coord": [48.787536899371986, 2.3667301884492553], "stop_id": 4284930, "stop_desc": "19 AVENUE DE STALINGRAD - 94076", "stop_name": "VILLEJUIF - LOUIS ARAGON"}, "geometry": {"type": "Point", "coordinates": [2.3667301884492553, 48.787536899371986]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d7f7b52bfa0a10ddfae8fc47d27feb0c2e35e9ff", "fields": {"departement": "94", "stop_lat": 48.80928933116081, "code_postal": "94043", "stop_lon": 2.358088049981442, "coord": [48.80928933116081, 2.358088049981442], "stop_id": 4293174, "stop_desc": "1 RUE DE VERDUN-LAZARE PONTICELLI - 94043", "stop_name": "HOPITAL DU KREMLIN-BICETRE"}, "geometry": {"type": "Point", "coordinates": [2.358088049981442, 48.80928933116081]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b075cc513a823be3d0f221fc468c569c9145f4b7", "fields": {"departement": "94", "stop_lat": 48.800535643137906, "code_postal": "94076", "stop_lon": 2.3554314854308616, "coord": [48.800535643137906, 2.3554314854308616], "stop_id": 4293178, "stop_desc": "2 BOULEVARD CHASTENET DE GERY - 94076", "stop_name": "AMBROISE CROIZAT"}, "geometry": {"type": "Point", "coordinates": [2.3554314854308616, 48.800535643137906]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6a09ae21622c9ae354c76d5d5c5bb01651743eaf", "fields": {"departement": "94", "stop_lat": 48.80887768914778, "code_postal": "94003", "stop_lon": 2.3346556318968643, "coord": [48.80887768914778, 2.3346556318968643], "stop_id": 4293195, "stop_desc": "R ERNEST RENAN - 94003", "stop_name": "LAPLACE RER"}, "geometry": {"type": "Point", "coordinates": [2.3346556318968643, 48.80887768914778]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f39c9226a12184502635cad87bf7d652cdbabe79", "fields": {"departement": "94", "stop_lat": 48.799691406622465, "code_postal": "94016", "stop_lon": 2.3237311377862166, "coord": [48.799691406622465, 2.3237311377862166], "stop_id": 4293200, "stop_desc": "73-75 AVENUE CARNOT - 94016", "stop_name": "CARNOT - ARISTIDE BRIAND"}, "geometry": {"type": "Point", "coordinates": [2.3237311377862166, 48.799691406622465]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c864425428d028a7a0ab0bb9797e023ba461d7c3", "fields": {"departement": "94", "stop_lat": 48.79666312097104, "code_postal": "94016", "stop_lon": 2.331336774255205, "coord": [48.79666312097104, 2.331336774255205], "stop_id": 4293204, "stop_desc": "RUE GALLIENI - 94016", "stop_name": "WILSON - PROVIGNY"}, "geometry": {"type": "Point", "coordinates": [2.331336774255205, 48.79666312097104]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "78479ab95e45fd5034423fcdf4528f20c787196e", "fields": {"departement": "94", "stop_lat": 48.78453857393657, "code_postal": "94016", "stop_lon": 2.3384379832645243, "coord": [48.78453857393657, 2.3384379832645243], "stop_id": 4293214, "stop_desc": "FACE 107 AV LEON BLUM - 94016", "stop_name": "BLUM - FRETTE"}, "geometry": {"type": "Point", "coordinates": [2.3384379832645243, 48.78453857393657]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "19e7c99338960a9d7d6910db411a60f0c3bd2974", "fields": {"departement": "94", "stop_lat": 48.784763272698704, "code_postal": "94016", "stop_lon": 2.3384379883943014, "coord": [48.784763272698704, 2.3384379883943014], "stop_id": 4293215, "stop_desc": "FACE 116 AV LEON BLUM - 94016", "stop_name": "BLUM - FRETTE"}, "geometry": {"type": "Point", "coordinates": [2.3384379883943014, 48.784763272698704]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2a59912a2e89c6a17d2b73a19649b9f9fe2386ed", "fields": {"departement": "94", "stop_lat": 48.78198599899823, "code_postal": "94038", "stop_lon": 2.3374178848788283, "coord": [48.78198599899823, 2.3374178848788283], "stop_id": 4293216, "stop_desc": "27-31 R DU 11 NOVEMBRE 1918 - 94038", "stop_name": "RUE DU 11 NOVEMBRE 1918"}, "geometry": {"type": "Point", "coordinates": [2.3374178848788283, 48.78198599899823]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "db8b9113c330898deb27b53818ed2b38e839bac5", "fields": {"departement": "94", "stop_lat": 48.77882222928945, "code_postal": "94038", "stop_lon": 2.3376490697971875, "coord": [48.77882222928945, 2.3376490697971875], "stop_id": 4293218, "stop_desc": "40 RUE JEAN JAURES - 94038", "stop_name": "MAIRIE DE L'HAY-LES-ROSES"}, "geometry": {"type": "Point", "coordinates": [2.3376490697971875, 48.77882222928945]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a4e5e7a16a633996dcb7697ec686bb1401f93a79", "fields": {"departement": "94", "stop_lat": 48.80825607222491, "code_postal": "94043", "stop_lon": 2.3560737375105423, "coord": [48.80825607222491, 2.3560737375105423], "stop_id": 4293247, "stop_desc": "FACE 35-45 R SEVERINE - 94043", "stop_name": "PISCINE"}, "geometry": {"type": "Point", "coordinates": [2.3560737375105423, 48.80825607222491]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "565f025e88ff30324d974e9fda3f0b628f4edd9f", "fields": {"departement": "94", "stop_lat": 48.80795157028177, "code_postal": "94037", "stop_lon": 2.3470791770842157, "coord": [48.80795157028177, 2.3470791770842157], "stop_id": 4294861, "stop_desc": "150 R GABRIEL PERI - 94037", "stop_name": "CITE DES H.B.M."}, "geometry": {"type": "Point", "coordinates": [2.3470791770842157, 48.80795157028177]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "13b411ad8afec26480b5495c2efc2536587547ae", "fields": {"departement": "75", "stop_lat": 48.87899060028815, "code_postal": "75117", "stop_lon": 2.2941829473245234, "coord": [48.87899060028815, 2.2941829473245234], "stop_id": 4298515, "stop_desc": "1 AVENUE NIEL - 75117", "stop_name": "TERNES - MAC MAHON"}, "geometry": {"type": "Point", "coordinates": [2.2941829473245234, 48.87899060028815]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b77e44d68b8cff961c694cc198260ee3500ad947", "fields": {"departement": "91", "stop_lat": 48.722573795601974, "code_postal": "91377", "stop_lon": 2.2712723399342725, "coord": [48.722573795601974, 2.2712723399342725], "stop_id": 4314744, "stop_desc": "3 RUE GALVANI - 91377", "stop_name": "GALVANI SUD"}, "geometry": {"type": "Point", "coordinates": [2.2712723399342725, 48.722573795601974]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0048d44ec55acdeda6d53d7135c329b553e86e93", "fields": {"departement": "91", "stop_lat": 48.72419031999736, "code_postal": "91377", "stop_lon": 2.2688249126725273, "coord": [48.72419031999736, 2.2688249126725273], "stop_id": 4314747, "stop_desc": "RUE GALVANI - 91377", "stop_name": "GALVANI NORD"}, "geometry": {"type": "Point", "coordinates": [2.2688249126725273, 48.72419031999736]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f82e724554c68341049cf6efc00b265434b25b41", "fields": {"departement": "91", "stop_lat": 48.72928165027463, "code_postal": "91377", "stop_lon": 2.2760056052258806, "coord": [48.72928165027463, 2.2760056052258806], "stop_id": 4314752, "stop_desc": "FACE 3 RUE FUSTEL DE COULANGES - 91377", "stop_name": "GABRIEL PERI"}, "geometry": {"type": "Point", "coordinates": [2.2760056052258806, 48.72928165027463]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a40776b0f2854f7fe93c3fff0ce2d1aeba5bd1e9", "fields": {"departement": "91", "stop_lat": 48.728042941856216, "code_postal": "91377", "stop_lon": 2.2793629122347263, "coord": [48.728042941856216, 2.2793629122347263], "stop_id": 4314754, "stop_desc": "54 RUE DE LONGJUMEAU - 91377", "stop_name": "JEAN MERMOZ"}, "geometry": {"type": "Point", "coordinates": [2.2793629122347263, 48.728042941856216]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2a8a1081ac9a63481c81a4469efa0c9ba0141dd0", "fields": {"departement": "91", "stop_lat": 48.72788290719792, "code_postal": "91377", "stop_lon": 2.2830857604019945, "coord": [48.72788290719792, 2.2830857604019945], "stop_id": 4314757, "stop_desc": "AVENUE NATIONALE - 91377", "stop_name": "AUSTRALIE"}, "geometry": {"type": "Point", "coordinates": [2.2830857604019945, 48.72788290719792]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b38c91f4177776b44495a6cdaeef2cf152d8eaa3", "fields": {"departement": "91", "stop_lat": 48.731469602983324, "code_postal": "91377", "stop_lon": 2.283856501392165, "coord": [48.731469602983324, 2.283856501392165], "stop_id": 4314761, "stop_desc": "1 RUE DE ROME - 91377", "stop_name": "HELENE BOUCHER"}, "geometry": {"type": "Point", "coordinates": [2.283856501392165, 48.731469602983324]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6431f515fa2fab7dfe4b42baf15f793aab408bc0", "fields": {"departement": "91", "stop_lat": 48.733178849525345, "code_postal": "91377", "stop_lon": 2.287224513071842, "coord": [48.733178849525345, 2.287224513071842], "stop_id": 4314763, "stop_desc": "RUE DES CANADIENS - 91377", "stop_name": "AVENUE SAINT-MARC"}, "geometry": {"type": "Point", "coordinates": [2.287224513071842, 48.733178849525345]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f2c724eaada7b8b5d1d3b8e2f7d74c310ae48a98", "fields": {"departement": "91", "stop_lat": 48.73370125203245, "code_postal": "91377", "stop_lon": 2.2898600642683493, "coord": [48.73370125203245, 2.2898600642683493], "stop_id": 4314764, "stop_desc": "RUE DES CANADIENS - 91377", "stop_name": "PLACE DE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.2898600642683493, 48.73370125203245]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "88d59fac7a8ffbd330930e4677e532ac9cf71d6e", "fields": {"departement": "91", "stop_lat": 48.72492240887915, "code_postal": "91377", "stop_lon": 2.2606997511595344, "coord": [48.72492240887915, 2.2606997511595344], "stop_id": 4314769, "stop_desc": "RUE CARNOT - 91377", "stop_name": "MASSY-PALAISEAU RER"}, "geometry": {"type": "Point", "coordinates": [2.2606997511595344, 48.72492240887915]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f77e55b4dcf1ff4dc0ed598f0375a3299acac203", "fields": {"departement": "91", "stop_lat": 48.72492240887915, "code_postal": "91377", "stop_lon": 2.2606997511595344, "coord": [48.72492240887915, 2.2606997511595344], "stop_id": 4314770, "stop_desc": "RUE CARNOT - 91377", "stop_name": "MASSY-PALAISEAU RER"}, "geometry": {"type": "Point", "coordinates": [2.2606997511595344, 48.72492240887915]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "38589f288f6ae49c54284892f0c0fd56c1ce2409", "fields": {"departement": "91", "stop_lat": 48.71895856592258, "code_postal": "91377", "stop_lon": 2.2679488324049153, "coord": [48.71895856592258, 2.2679488324049153], "stop_id": 4314775, "stop_desc": "17 RUE AMPERE - 91377", "stop_name": "CIMETIERE DE MASSY"}, "geometry": {"type": "Point", "coordinates": [2.2679488324049153, 48.71895856592258]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6d87ae4ef5c3311553423eb3d1efa8323b96ce4d", "fields": {"departement": "91", "stop_lat": 48.727847083549705, "code_postal": "91377", "stop_lon": 2.2833711116416517, "coord": [48.727847083549705, 2.2833711116416517], "stop_id": 4314788, "stop_desc": "21 AVENUE NATIONALE - 91377", "stop_name": "AUSTRALIE"}, "geometry": {"type": "Point", "coordinates": [2.2833711116416517, 48.727847083549705]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7b08f29e42d4389f05c08eec81b9dd9fd6c80c2e", "fields": {"departement": "91", "stop_lat": 48.73294496958157, "code_postal": "91377", "stop_lon": 2.28678993142112, "coord": [48.73294496958157, 2.28678993142112], "stop_id": 4314794, "stop_desc": "67 RUE DES CANADIENS - 91377", "stop_name": "AVENUE SAINT-MARC"}, "geometry": {"type": "Point", "coordinates": [2.28678993142112, 48.73294496958157]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "23e25d5116d42d2f14b955dfdf614c2e1b4adcce", "fields": {"departement": "92", "stop_lat": 48.820918902945465, "code_postal": "92075", "stop_lon": 2.285234440151342, "coord": [48.820918902945465, 2.285234440151342], "stop_id": 4687342, "stop_desc": "PLACE DE LA REPUBLIQUE - 92075", "stop_name": "REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.285234440151342, 48.820918902945465]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7a359ae699125195ab7e79cdcf7557c7870c315a", "fields": {"departement": "92", "stop_lat": 48.81796156576998, "code_postal": "92075", "stop_lon": 2.2843663662499045, "coord": [48.81796156576998, 2.2843663662499045], "stop_id": 4687345, "stop_desc": "FACE 10 RUE LARMEROUX - 92075", "stop_name": "RUE DE CHATILLON"}, "geometry": {"type": "Point", "coordinates": [2.2843663662499045, 48.81796156576998]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "96ba0448c890c71e57e9a896fa8d906d1478c988", "fields": {"departement": "92", "stop_lat": 48.8140307256396, "code_postal": "92046", "stop_lon": 2.277593121911239, "coord": [48.8140307256396, 2.277593121911239], "stop_id": 4687349, "stop_desc": "9 BOULEVARD DES FRERES VIGOUROUX - 92046", "stop_name": "CLOS MONTHOLON"}, "geometry": {"type": "Point", "coordinates": [2.277593121911239, 48.8140307256396]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7d0850d53e58d680047c381ed03e0dc0ff3a819a", "fields": {"departement": "92", "stop_lat": 48.809938467265454, "code_postal": "92023", "stop_lon": 2.2721955035508885, "coord": [48.809938467265454, 2.2721955035508885], "stop_id": 4687353, "stop_desc": "178 AVENUE VICTOR HUGO - 92023", "stop_name": "LAZARE - CARNOT"}, "geometry": {"type": "Point", "coordinates": [2.2721955035508885, 48.809938467265454]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c57d69a5ce5b965ab76b59710ce413996cd297f1", "fields": {"departement": "92", "stop_lat": 48.88726100109216, "code_postal": "92050", "stop_lon": 2.2013001183399865, "coord": [48.88726100109216, 2.2013001183399865], "stop_id": 4025376, "stop_desc": "1 AVENUE GEORGES CLEMENCEAU - 92050", "stop_name": "PLACE DE LA BOULE - CLEMENCEAU"}, "geometry": {"type": "Point", "coordinates": [2.2013001183399865, 48.88726100109216]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6c3452d104eaabd823972ade38adb7ed22cc6dc8", "fields": {"departement": "92", "stop_lat": 48.89615432880161, "code_postal": "92050", "stop_lon": 2.2232082831045985, "coord": [48.89615432880161, 2.2232082831045985], "stop_id": 4025386, "stop_desc": "BOULEVARD DE PESARO - 92050", "stop_name": "NANTERRE-PREFECTURE RER"}, "geometry": {"type": "Point", "coordinates": [2.2232082831045985, 48.89615432880161]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e7fb660aa27595fe3012da96598f2ce2daa499c1", "fields": {"departement": "94", "stop_lat": 48.8458162016149, "code_postal": "94033", "stop_lon": 2.4513538202584924, "coord": [48.8458162016149, 2.4513538202584924], "stop_id": 4028767, "stop_desc": "10 AVENUE DE LA PEPINIERE - 94033", "stop_name": "CHARMES - PEPINIERE"}, "geometry": {"type": "Point", "coordinates": [2.4513538202584924, 48.8458162016149]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "20dabc9685cfe74082a674c29a96b23bc0999141", "fields": {"departement": "94", "stop_lat": 48.84385425997899, "code_postal": "94033", "stop_lon": 2.46292375978694, "coord": [48.84385425997899, 2.46292375978694], "stop_id": 4028772, "stop_desc": "1 AV FOCH - 94033", "stop_name": "FONTENAY-SOUS-BOIS RER"}, "geometry": {"type": "Point", "coordinates": [2.46292375978694, 48.84385425997899]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9c7662e916f16426ff05bd776263a6d29624ea63", "fields": {"departement": "75", "stop_lat": 48.83894023183105, "code_postal": "75112", "stop_lon": 2.460855919192387, "coord": [48.83894023183105, 2.460855919192387], "stop_id": 4028774, "stop_desc": "AV DE NOGENT - 75112", "stop_name": "PORTE JAUNE"}, "geometry": {"type": "Point", "coordinates": [2.460855919192387, 48.83894023183105]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f2cf6ad149ea28c1ab67493cf4a383c81bbe7cb3", "fields": {"departement": "94", "stop_lat": 48.83651943713013, "code_postal": "94052", "stop_lon": 2.479747562623527, "coord": [48.83651943713013, 2.479747562623527], "stop_id": 4028780, "stop_desc": "FACE 60BIS GRANDE RUE CHARLES DE GAULLE - 94052", "stop_name": "RUE DE BEAUTE"}, "geometry": {"type": "Point", "coordinates": [2.479747562623527, 48.83651943713013]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8a23ad347a0e527d8c55f48525a94d54d5aab23f", "fields": {"departement": "94", "stop_lat": 48.83567647044124, "code_postal": "94052", "stop_lon": 2.4926246901215525, "coord": [48.83567647044124, 2.4926246901215525], "stop_id": 4028786, "stop_desc": "39-41 RUE JACQUES KABLE - 94052", "stop_name": "VIADUC"}, "geometry": {"type": "Point", "coordinates": [2.4926246901215525, 48.83567647044124]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8ab4053e4bc91c962e9819b8a5375c6974472af4", "fields": {"departement": "94", "stop_lat": 48.8327448820135, "code_postal": "94058", "stop_lon": 2.5131728547611707, "coord": [48.8327448820135, 2.5131728547611707], "stop_id": 4028800, "stop_desc": "FACE 107 BOULEVARD FOCH - 94058", "stop_name": "RESIDENCE DES ILES"}, "geometry": {"type": "Point", "coordinates": [2.5131728547611707, 48.8327448820135]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "122bf503b0a68ff22fdb074cbb2c16160e4756c6", "fields": {"departement": "94", "stop_lat": 48.83424543925855, "code_postal": "94015", "stop_lon": 2.5193996628002555, "coord": [48.83424543925855, 2.5193996628002555], "stop_id": 4028803, "stop_desc": "5 PL DAGUERRE - 94015", "stop_name": "MAIRIE DE BRY-SUR-MARNE"}, "geometry": {"type": "Point", "coordinates": [2.5193996628002555, 48.83424543925855]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f1e1b29dfa3a9cb4e571eebddc286ba5688d16fc", "fields": {"departement": "94", "stop_lat": 48.844148576874794, "code_postal": "94015", "stop_lon": 2.5259296805163265, "coord": [48.844148576874794, 2.5259296805163265], "stop_id": 4028810, "stop_desc": "AVENUE ETIENNE DE SILHOUETTE - 94015", "stop_name": "BRY-SUR-MARNE RER"}, "geometry": {"type": "Point", "coordinates": [2.5259296805163265, 48.844148576874794]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bf5bf5f88f1b1e3c01bcb38545b7fbc5755b979a", "fields": {"departement": "94", "stop_lat": 48.84080528787608, "code_postal": "94015", "stop_lon": 2.5258766738291087, "coord": [48.84080528787608, 2.5258766738291087], "stop_id": 4028812, "stop_desc": "4 BD PASTEUR - 94015", "stop_name": "CIMETIERE - FUNERARIUM DE BRY"}, "geometry": {"type": "Point", "coordinates": [2.5258766738291087, 48.84080528787608]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bc312a05aaa7cd66e931046a38fd59615e909c0b", "fields": {"departement": "94", "stop_lat": 48.83348118957876, "code_postal": "94015", "stop_lon": 2.525373556761865, "coord": [48.83348118957876, 2.525373556761865], "stop_id": 4028819, "stop_desc": "FACE 188 BD PASTEUR - 94015", "stop_name": "2 DECEMBRE 1870"}, "geometry": {"type": "Point", "coordinates": [2.525373556761865, 48.83348118957876]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "452ee42173c9ad5190f4b1916fffe453e6e920f0", "fields": {"departement": "94", "stop_lat": 48.83255133199548, "code_postal": "94015", "stop_lon": 2.527970426752671, "coord": [48.83255133199548, 2.527970426752671], "stop_id": 4028820, "stop_desc": "BOULEVARD PASTEUR - 94015", "stop_name": "HOPITAL SAINT-CAMILLE"}, "geometry": {"type": "Point", "coordinates": [2.527970426752671, 48.83255133199548]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "67ea25b93a5b0a5554606e64883f21ffc022c934", "fields": {"departement": "94", "stop_lat": 48.83256110366599, "code_postal": "94015", "stop_lon": 2.5274803647566753, "coord": [48.83256110366599, 2.5274803647566753], "stop_id": 4028821, "stop_desc": "BOULEVARD PASTEUR - 94015", "stop_name": "HOPITAL SAINT-CAMILLE"}, "geometry": {"type": "Point", "coordinates": [2.5274803647566753, 48.83256110366599]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f9a6cbec86aac0586704699a093be224ce793768", "fields": {"departement": "94", "stop_lat": 48.82629358652719, "code_postal": "94079", "stop_lon": 2.540252848669576, "coord": [48.82629358652719, 2.540252848669576], "stop_id": 4028828, "stop_desc": "41 RUE DU GENERAL GALLIENI - 94079", "stop_name": "MAIRIE DE VILLIERS-SUR-MARNE"}, "geometry": {"type": "Point", "coordinates": [2.540252848669576, 48.82629358652719]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "30afc44ceb8d2db29f3a6332e1f65a5da745f0b2", "fields": {"departement": "94", "stop_lat": 48.82386008176018, "code_postal": "94079", "stop_lon": 2.5442179040062154, "coord": [48.82386008176018, 2.5442179040062154], "stop_id": 4028831, "stop_desc": "1 R DU CHEMIN DE FER - 94079", "stop_name": "VILLIERS-SUR-MARNE - LE PLESSIS-TREVISE RER"}, "geometry": {"type": "Point", "coordinates": [2.5442179040062154, 48.82386008176018]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7512752c8d3f302a3eb27de0193349d41966f6f3", "fields": {"departement": "94", "stop_lat": 48.82724329014408, "code_postal": "94079", "stop_lon": 2.541998956217836, "coord": [48.82724329014408, 2.541998956217836], "stop_id": 4028832, "stop_desc": "2 RUE DU GENERAL DE GAULLE - 94079", "stop_name": "EGLISE DE VILLIERS-SUR-MARNE"}, "geometry": {"type": "Point", "coordinates": [2.541998956217836, 48.82724329014408]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4645ebe89aa1f146c27ab80d0b20d7d7b1c2d01a", "fields": {"departement": "94", "stop_lat": 48.84045641817912, "code_postal": "94015", "stop_lon": 2.519040223418052, "coord": [48.84045641817912, 2.519040223418052], "stop_id": 4028833, "stop_desc": "FACE 48 AVENUE DE RIGNY - 94015", "stop_name": "RUE DE LA MARNE"}, "geometry": {"type": "Point", "coordinates": [2.519040223418052, 48.84045641817912]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8d5332e8c01706c3233aead704ea3344e0b066ae", "fields": {"departement": "94", "stop_lat": 48.83547370371285, "code_postal": "94052", "stop_lon": 2.474802599415442, "coord": [48.83547370371285, 2.474802599415442], "stop_id": 4028844, "stop_desc": "12 GR CHARLES DE GAULLE - 94052", "stop_name": "PLACE DU GENERAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.474802599415442, 48.83547370371285]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "26e63dafc83f5df205e89631f824856bb68eae5a", "fields": {"departement": "94", "stop_lat": 48.836159089337194, "code_postal": "94052", "stop_lon": 2.4877384362504795, "coord": [48.836159089337194, 2.4877384362504795], "stop_id": 4028851, "stop_desc": "27 RUE CHARLES VII - 94052", "stop_name": "RUE DU PORT"}, "geometry": {"type": "Point", "coordinates": [2.4877384362504795, 48.836159089337194]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "823e61e1c0854d5b6ee8711bd723369e1987d689", "fields": {"departement": "94", "stop_lat": 48.838001853465165, "code_postal": "94058", "stop_lon": 2.4944560966386526, "coord": [48.838001853465165, 2.4944560966386526], "stop_id": 4028854, "stop_desc": "10 PLACE ROBERT BELVAUX - 94058", "stop_name": "NOGENT-LE-PERREUX RER"}, "geometry": {"type": "Point", "coordinates": [2.4944560966386526, 48.838001853465165]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "486fb509eeda3693f15521865dae762aca346044", "fields": {"departement": "94", "stop_lat": 48.84101438643778, "code_postal": "94058", "stop_lon": 2.5063384103979285, "coord": [48.84101438643778, 2.5063384103979285], "stop_id": 4028860, "stop_desc": "FACE 93 AVENUE DU GENERAL DE GAULLE - 94058", "stop_name": "MAIRIE DU PERREUX-SUR-MARNE"}, "geometry": {"type": "Point", "coordinates": [2.5063384103979285, 48.84101438643778]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6cff595dcfdfc483c1c34bf151dac371007d807f", "fields": {"departement": "94", "stop_lat": 48.836395480091795, "code_postal": "94058", "stop_lon": 2.5120688161789144, "coord": [48.836395480091795, 2.5120688161789144], "stop_id": 4028864, "stop_desc": "44-48 AVENUE DU GENERAL DE GAULLE - 94058", "stop_name": "PLACE BEAUFRANCHET"}, "geometry": {"type": "Point", "coordinates": [2.5120688161789144, 48.836395480091795]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8dde28af0c26df0dc02854838aa1af9d7c8d13df", "fields": {"departement": "94", "stop_lat": 48.834303962813244, "code_postal": "94058", "stop_lon": 2.5102919129696097, "coord": [48.834303962813244, 2.5102919129696097], "stop_id": 4028865, "stop_desc": "38-40 ALLEE GUY MOQUET - 94058", "stop_name": "GUY MOQUET"}, "geometry": {"type": "Point", "coordinates": [2.5102919129696097, 48.834303962813244]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c303afdb44508285d8ad97d9fbd007e3a7f6e5c2", "fields": {"departement": "94", "stop_lat": 48.83477537240173, "code_postal": "94015", "stop_lon": 2.5196193536418727, "coord": [48.83477537240173, 2.5196193536418727], "stop_id": 4028871, "stop_desc": "1 AV DE RIGNY - 94015", "stop_name": "MAIRIE DE BRY-SUR-MARNE"}, "geometry": {"type": "Point", "coordinates": [2.5196193536418727, 48.83477537240173]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7f246c389076274caa589d2137c05a12fc9284fb", "fields": {"departement": "94", "stop_lat": 48.84218500063309, "code_postal": "94015", "stop_lon": 2.5229405575565873, "coord": [48.84218500063309, 2.5229405575565873], "stop_id": 4028875, "stop_desc": "FACE 23 BOULEVARD DU GENERAL GALLIENI - 94015", "stop_name": "PLACE CARNOT"}, "geometry": {"type": "Point", "coordinates": [2.5229405575565873, 48.84218500063309]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4910d245774c11da4d1ee5a081fd138121ec7b6b", "fields": {"departement": "94", "stop_lat": 48.84078285853387, "code_postal": "94015", "stop_lon": 2.5286678698461236, "coord": [48.84078285853387, 2.5286678698461236], "stop_id": 4028882, "stop_desc": "BOULEVARD PASTEUR - 94015", "stop_name": "CHEMIN DES MOINES"}, "geometry": {"type": "Point", "coordinates": [2.5286678698461236, 48.84078285853387]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5e5c4798230736a34cfe2c25b0f78644486d33ad", "fields": {"departement": "94", "stop_lat": 48.83679452994152, "code_postal": "94015", "stop_lon": 2.5273188916761153, "coord": [48.83679452994152, 2.5273188916761153], "stop_id": 4028884, "stop_desc": "109 BOULEVARD PASTEUR - 94015", "stop_name": "DOCTEUR ARMAND BRILLARD"}, "geometry": {"type": "Point", "coordinates": [2.5273188916761153, 48.83679452994152]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "99f2582e2ed52b5d82f92ce50cf85e7243ec148c", "fields": {"departement": "94", "stop_lat": 48.83255133199548, "code_postal": "94015", "stop_lon": 2.527970426752671, "coord": [48.83255133199548, 2.527970426752671], "stop_id": 4028887, "stop_desc": "BOULEVARD PASTEUR - 94015", "stop_name": "HOPITAL SAINT-CAMILLE"}, "geometry": {"type": "Point", "coordinates": [2.527970426752671, 48.83255133199548]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e26408b426fc3d71f3c6168837a7f351d13d333b", "fields": {"departement": "94", "stop_lat": 48.82982876807472, "code_postal": "94079", "stop_lon": 2.5384697464405925, "coord": [48.82982876807472, 2.5384697464405925], "stop_id": 4028893, "stop_desc": "7-9 ROUTE DE BRY - 94079", "stop_name": "FRIEDBERG"}, "geometry": {"type": "Point", "coordinates": [2.5384697464405925, 48.82982876807472]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "52f4f5779b8115d77396223d10c44b185cb5d7a8", "fields": {"departement": "94", "stop_lat": 48.837931792305795, "code_postal": "94015", "stop_lon": 2.518459537824707, "coord": [48.837931792305795, 2.518459537824707], "stop_id": 4028901, "stop_desc": "17 BIS AVENUE DE RIGNY - 94015", "stop_name": "AVENUE DE RIGNY"}, "geometry": {"type": "Point", "coordinates": [2.518459537824707, 48.837931792305795]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "032f613f5db88ae693bcd8b2001dbb04db3098a9", "fields": {"departement": "94", "stop_lat": 48.82724329014408, "code_postal": "94079", "stop_lon": 2.541998956217836, "coord": [48.82724329014408, 2.541998956217836], "stop_id": 4028905, "stop_desc": "2 RUE DU GENERAL DE GAULLE - 94079", "stop_name": "EGLISE DE VILLIERS-SUR-MARNE"}, "geometry": {"type": "Point", "coordinates": [2.541998956217836, 48.82724329014408]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "46d9185e6380f98973a42f3294e5003989da2b2f", "fields": {"departement": "94", "stop_lat": 48.84078285853387, "code_postal": "94015", "stop_lon": 2.5286678698461236, "coord": [48.84078285853387, 2.5286678698461236], "stop_id": 4028912, "stop_desc": "BOULEVARD PASTEUR - 94015", "stop_name": "CHEMIN DES MOINES"}, "geometry": {"type": "Point", "coordinates": [2.5286678698461236, 48.84078285853387]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1dec4da116915dabf359c1b11e96e66468cc9ddb", "fields": {"departement": "94", "stop_lat": 48.83999340120814, "code_postal": "94015", "stop_lon": 2.522061303805624, "coord": [48.83999340120814, 2.522061303805624], "stop_id": 4028916, "stop_desc": "RUE DU MARECHAL FOCH - 94015", "stop_name": "CHATEAU"}, "geometry": {"type": "Point", "coordinates": [2.522061303805624, 48.83999340120814]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5e8193f8ef0291de75cf9e9906e259ee981ed4d3", "fields": {"departement": "94", "stop_lat": 48.84101438643778, "code_postal": "94058", "stop_lon": 2.5063384103979285, "coord": [48.84101438643778, 2.5063384103979285], "stop_id": 4028923, "stop_desc": "FACE 93 AVENUE DU GENERAL DE GAULLE - 94058", "stop_name": "MAIRIE DU PERREUX-SUR-MARNE"}, "geometry": {"type": "Point", "coordinates": [2.5063384103979285, 48.84101438643778]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "24c7754dc293aba361d9e4d123ecec9f968acf0e", "fields": {"departement": "94", "stop_lat": 48.8425473339877, "code_postal": "94058", "stop_lon": 2.502735049441534, "coord": [48.8425473339877, 2.502735049441534], "stop_id": 4028924, "stop_desc": "74 BIS-76 AVENUE LEDRU-ROLLIN - 94058", "stop_name": "LEDRU-ROLLIN - GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.502735049441534, 48.8425473339877]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "585e158d7aabade65773b4d0981f6dab48aaeaa4", "fields": {"departement": "92", "stop_lat": 48.81846633711334, "code_postal": "92049", "stop_lon": 2.319643218617825, "coord": [48.81846633711334, 2.319643218617825], "stop_id": 4028973, "stop_desc": "Rue Louis Rolland - 92049", "stop_name": "Mairie de Montrouge"}, "geometry": {"type": "Point", "coordinates": [2.319643218617825, 48.81846633711334]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "80de67fdde262ccc16aad5eab5fbaadd5126ee36", "fields": {"departement": "78", "stop_lat": 48.89655107776364, "code_postal": "78650", "stop_lon": 2.120514234028132, "coord": [48.89655107776364, 2.120514234028132], "stop_id": 4035023, "stop_desc": "105 BOULEVARD CARNOT - 78650", "stop_name": "LE VESINET - LE PECQ RER"}, "geometry": {"type": "Point", "coordinates": [2.120514234028132, 48.89655107776364]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aa570355e3c0b4d6eb22a515c8418658f25de8cf", "fields": {"departement": "78", "stop_lat": 48.89662440936725, "code_postal": "78650", "stop_lon": 2.121304506246528, "coord": [48.89662440936725, 2.121304506246528], "stop_id": 4035024, "stop_desc": "BOULEVARD CARNOT - 78650", "stop_name": "LE VESINET - LE PECQ RER"}, "geometry": {"type": "Point", "coordinates": [2.121304506246528, 48.89662440936725]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "db95675d201145c56f3e122c958df2e36e299f99", "fields": {"departement": "78", "stop_lat": 48.89422741702106, "code_postal": "78650", "stop_lon": 2.1329681764334767, "coord": [48.89422741702106, 2.1329681764334767], "stop_id": 4035025, "stop_desc": "71 BOULEVARD CARNOT - 78650", "stop_name": "HOTEL DE VILLE-LE VESINET CENTRE-RER"}, "geometry": {"type": "Point", "coordinates": [2.1329681764334767, 48.89422741702106]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "781af68c9d628d288004b8d02172d83cdcc8fd18", "fields": {"departement": "78", "stop_lat": 48.88950450742885, "code_postal": "78146", "stop_lon": 2.1580228743255394, "coord": [48.88950450742885, 2.1580228743255394], "stop_id": 4035028, "stop_desc": "12 AVENUE DU MARECHAL FOCH - 78146", "stop_name": "MAIRIE - CHATOU - CROISSY RER"}, "geometry": {"type": "Point", "coordinates": [2.1580228743255394, 48.88950450742885]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "055c5f2704890cf1f1fd2366f3e48a7378e9a02f", "fields": {"departement": "92", "stop_lat": 48.88663850207259, "code_postal": "92063", "stop_lon": 2.171061177695267, "coord": [48.88663850207259, 2.171061177695267], "stop_id": 4035029, "stop_desc": "AVENUE DE COLMAR - 92063", "stop_name": "RUEIL-MALMAISON RER"}, "geometry": {"type": "Point", "coordinates": [2.171061177695267, 48.88663850207259]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2d57c4ea80b3a50d3215bd77848d011af0a5882d", "fields": {"departement": "75", "stop_lat": 48.87536697356267, "code_postal": "75108", "stop_lon": 2.325823281094452, "coord": [48.87536697356267, 2.325823281094452], "stop_id": 4035038, "stop_desc": "111 R SAINT-LAZARE - 75108", "stop_name": "GARE SAINT-LAZARE"}, "geometry": {"type": "Point", "coordinates": [2.325823281094452, 48.87536697356267]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "06115cb4e0d36c0d77e5176fb455e3a5cd976d1a", "fields": {"departement": "93", "stop_lat": 48.89897493409345, "code_postal": "93047", "stop_lon": 2.5742886405139136, "coord": [48.89897493409345, 2.5742886405139136], "stop_id": 4035475, "stop_desc": "RUE DES JARDINS - 93047", "stop_name": "HOPITAL DE MONTFERMEIL"}, "geometry": {"type": "Point", "coordinates": [2.5742886405139136, 48.89897493409345]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aee0563c0c4084cbf96960ea548616d8cfd1a10e", "fields": {"departement": "93", "stop_lat": 48.90386287775983, "code_postal": "93047", "stop_lon": 2.5608829071805457, "coord": [48.90386287775983, 2.5608829071805457], "stop_id": 4035482, "stop_desc": "AVENUE DE CLICHY - 93047", "stop_name": "LES BOSQUETS"}, "geometry": {"type": "Point", "coordinates": [2.5608829071805457, 48.90386287775983]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "32cd3e00f874a8c586322c440e41a7ff915548ff", "fields": {"departement": "93", "stop_lat": 48.90519794816186, "code_postal": "93014", "stop_lon": 2.5482918443949325, "coord": [48.90519794816186, 2.5482918443949325], "stop_id": 4035491, "stop_desc": "BOULEVARD EMILE ZOLA - 93014", "stop_name": "GAGARINE"}, "geometry": {"type": "Point", "coordinates": [2.5482918443949325, 48.90519794816186]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dc8ea3a40a027839ccbaebd8fcd4177b1117662a", "fields": {"departement": "93", "stop_lat": 48.909341809093966, "code_postal": "93046", "stop_lon": 2.5263852358477106, "coord": [48.909341809093966, 2.5263852358477106], "stop_id": 4035499, "stop_desc": "20 BOULEVARD MARX DORMOY - 93046", "stop_name": "SALENGRO"}, "geometry": {"type": "Point", "coordinates": [2.5263852358477106, 48.909341809093966]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cbf2ef9e6b732091f7a2b53f165885f9490a1810", "fields": {"departement": "93", "stop_lat": 48.90191102628285, "code_postal": "93062", "stop_lon": 2.5196238814497884, "coord": [48.90191102628285, 2.5196238814497884], "stop_id": 4035503, "stop_desc": "23 AVENUE DE LIVRY - 93062", "stop_name": "ALLEE DES BOSQUETS"}, "geometry": {"type": "Point", "coordinates": [2.5196238814497884, 48.90191102628285]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a71b540b006def1bbef3d380c230f3ddbb8329ca", "fields": {"departement": "93", "stop_lat": 48.902023861813646, "code_postal": "93057", "stop_lon": 2.51024541094009, "coord": [48.902023861813646, 2.51024541094009], "stop_id": 4035510, "stop_desc": "22 AVENUE JEAN JAURES - 93057", "stop_name": "GARE DES PAVILLONS-SOUS-BOIS"}, "geometry": {"type": "Point", "coordinates": [2.51024541094009, 48.902023861813646]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5b9ca92112693e294716fb5eb378fc7e463ab133", "fields": {"departement": "93", "stop_lat": 48.90445035565068, "code_postal": "93057", "stop_lon": 2.5039552000123417, "coord": [48.90445035565068, 2.5039552000123417], "stop_id": 4035514, "stop_desc": "FACE 119 AVENUE JEAN JAURES - 93057", "stop_name": "PIERRE BROSSOLETTE - LA BASOCHE"}, "geometry": {"type": "Point", "coordinates": [2.5039552000123417, 48.90445035565068]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "112b5efa40c16500c5c37aadc5a5ad50fd9fbc85", "fields": {"departement": "93", "stop_lat": 48.90579255204801, "code_postal": "93010", "stop_lon": 2.480837851423006, "coord": [48.90579255204801, 2.480837851423006], "stop_id": 4035523, "stop_desc": "112 AVENUE GALLIENI - 93010", "stop_name": "AUGUSTE POLISSARD"}, "geometry": {"type": "Point", "coordinates": [2.480837851423006, 48.90579255204801]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "45617bcdd7e6d5a8aea5f36b1d1987034cba3776", "fields": {"departement": "93", "stop_lat": 48.903907330531226, "code_postal": "93010", "stop_lon": 2.4713443676447677, "coord": [48.903907330531226, 2.4713443676447677], "stop_id": 4035525, "stop_desc": "AVENUE GALLIENI - 93010", "stop_name": "AVENUE DE ROSNY"}, "geometry": {"type": "Point", "coordinates": [2.4713443676447677, 48.903907330531226]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c072fa9c04d0941e317b1851b8d844e41bf4d2c2", "fields": {"departement": "93", "stop_lat": 48.90585160187891, "code_postal": "93008", "stop_lon": 2.4685955199065472, "coord": [48.90585160187891, 2.4685955199065472], "stop_id": 4035526, "stop_desc": "433-435 AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "PONT DE BONDY"}, "geometry": {"type": "Point", "coordinates": [2.4685955199065472, 48.90585160187891]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "247740f6b43a77a86b583b19b4cc77103f218709", "fields": {"departement": "93", "stop_lat": 48.90590089960924, "code_postal": "93008", "stop_lon": 2.46457388666915, "coord": [48.90590089960924, 2.46457388666915], "stop_id": 4035528, "stop_desc": "FACE 412 AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "RUE DES PEUPLIERS"}, "geometry": {"type": "Point", "coordinates": [2.46457388666915, 48.90590089960924]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fbcdb3946d424f97c3ecd6e8d3f678ffd6e85cb2", "fields": {"departement": "93", "stop_lat": 48.907039883330384, "code_postal": "93008", "stop_lon": 2.4582235319318775, "coord": [48.907039883330384, 2.4582235319318775], "stop_id": 4035530, "stop_desc": "AVENUE PAUL VAILLANT COUTURIER - 93008", "stop_name": "AUGUSTE DELAUNE-TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.4582235319318775, 48.907039883330384]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9b106a091a28ee54df62e40c34fe8acec2f850c0", "fields": {"departement": "93", "stop_lat": 48.90657485833315, "code_postal": "93008", "stop_lon": 2.4559320596369205, "coord": [48.90657485833315, 2.4559320596369205], "stop_id": 4035532, "stop_desc": "302 AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "LAMARTINE"}, "geometry": {"type": "Point", "coordinates": [2.4559320596369205, 48.90657485833315]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bda8448828c83a60b3fa3968c8d270d5a764f502", "fields": {"departement": "93", "stop_lat": 48.90870952071069, "code_postal": "93008", "stop_lon": 2.451083311558328, "coord": [48.90870952071069, 2.451083311558328], "stop_id": 4035533, "stop_desc": "AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "RENE CAMIER"}, "geometry": {"type": "Point", "coordinates": [2.451083311558328, 48.90870952071069]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4d942f7e51e4e5afd903d091c30b7b30d9b12aae", "fields": {"departement": "93", "stop_lat": 48.90676344153678, "code_postal": "93008", "stop_lon": 2.4466891131829183, "coord": [48.90676344153678, 2.4466891131829183], "stop_id": 4035536, "stop_desc": "BOULEVARD MAURICE THOREZ - 93008", "stop_name": "MAURICE THOREZ"}, "geometry": {"type": "Point", "coordinates": [2.4466891131829183, 48.90676344153678]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a5e9be472c8ed0630bb3c7b6ef282fa27fa22267", "fields": {"departement": "93", "stop_lat": 48.89182156439479, "code_postal": "93055", "stop_lon": 2.405537767131282, "coord": [48.89182156439479, 2.405537767131282], "stop_id": 4035548, "stop_desc": "73 BIS AVENUE JEAN LOLIVE - 93055", "stop_name": "ETIENNE MARCEL - CORNET"}, "geometry": {"type": "Point", "coordinates": [2.405537767131282, 48.89182156439479]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "caa136004acdc556b5541830ee957f3ce8b93ad6", "fields": {"departement": "75", "stop_lat": 48.888620105775956, "code_postal": "75119", "stop_lon": 2.392041315664997, "coord": [48.888620105775956, 2.392041315664997], "stop_id": 4035549, "stop_desc": "FACE 208 AVENUE JEAN JAURES - 75119", "stop_name": "PORTE DE PANTIN - METRO"}, "geometry": {"type": "Point", "coordinates": [2.392041315664997, 48.888620105775956]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ff558fc27225e7043e1e9bb585330350b7a0c484", "fields": {"departement": "75", "stop_lat": 48.88590992105624, "code_postal": "75119", "stop_lon": 2.382635265641091, "coord": [48.88590992105624, 2.382635265641091], "stop_id": 4035554, "stop_desc": "112 AVENUE JEAN JAURES - 75119", "stop_name": "JEAN JAURES - LORRAINE"}, "geometry": {"type": "Point", "coordinates": [2.382635265641091, 48.88590992105624]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8fe2d2f0282840dc727c5c6a2727de5c51ad1904", "fields": {"departement": "75", "stop_lat": 48.87863626955432, "code_postal": "75110", "stop_lon": 2.362258190577353, "coord": [48.87863626955432, 2.362258190577353], "stop_id": 4035560, "stop_desc": "190 RUE DU FAUBOURG SAINT-MARTIN - 75110", "stop_name": "CHATEAU LANDON"}, "geometry": {"type": "Point", "coordinates": [2.362258190577353, 48.87863626955432]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "16a7a99d24720af0e62786d8abcb88de59c6c5c5", "fields": {"departement": "93", "stop_lat": 48.89530457817166, "code_postal": "93055", "stop_lon": 2.425347152348767, "coord": [48.89530457817166, 2.425347152348767], "stop_id": 4035566, "stop_desc": "AVENUE JEAN LOLIVE - 93055", "stop_name": "RAYMOND QUENEAU-METRO"}, "geometry": {"type": "Point", "coordinates": [2.425347152348767, 48.89530457817166]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "96d9b5a4f3523f9e084aef61a1f3267cafaf1aa8", "fields": {"departement": "93", "stop_lat": 48.905007103245715, "code_postal": "93010", "stop_lon": 2.476268671049849, "coord": [48.905007103245715, 2.476268671049849], "stop_id": 4035571, "stop_desc": "54 AVENUE GALLIENI - 93010", "stop_name": "GATINE RN3"}, "geometry": {"type": "Point", "coordinates": [2.476268671049849, 48.905007103245715]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "69d0c267ae5b05a207eb0f85b1ac9535079da60a", "fields": {"departement": "95", "stop_lat": 48.992838363351694, "code_postal": "95585", "stop_lon": 2.373033337598192, "coord": [48.992838363351694, 2.373033337598192], "stop_id": 4035651, "stop_desc": "15 BD DU GENERAL DE GAULLE - 95585", "stop_name": "CARNOT"}, "geometry": {"type": "Point", "coordinates": [2.373033337598192, 48.992838363351694]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a535a891903e2c598f0a847801e2c1381c0cb1ba", "fields": {"departement": "95", "stop_lat": 48.99361122312051, "code_postal": "95585", "stop_lon": 2.3729382789699915, "coord": [48.99361122312051, 2.3729382789699915], "stop_id": 4035652, "stop_desc": "FACE 17 RUE CARNOT - 95585", "stop_name": "CARNOT"}, "geometry": {"type": "Point", "coordinates": [2.3729382789699915, 48.99361122312051]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fe0e80861b2c096a094875b983d1ea687c5b16c2", "fields": {"departement": "95", "stop_lat": 48.978284356790724, "code_postal": "95585", "stop_lon": 2.3867846247994557, "coord": [48.978284356790724, 2.3867846247994557], "stop_id": 4035664, "stop_desc": "12 AVENUE PAUL VALERY - 95585", "stop_name": "LOCHERES"}, "geometry": {"type": "Point", "coordinates": [2.3867846247994557, 48.978284356790724]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c81155e5fba85adcf306e0347cf8ecfe4ad210a3", "fields": {"departement": "95", "stop_lat": 48.97356093396896, "code_postal": "95268", "stop_lon": 2.3986017741043617, "coord": [48.97356093396896, 2.3986017741043617], "stop_id": 4035669, "stop_desc": "AVENUE FRANCOIS MITTERRAND - 95268", "stop_name": "DE GAULLE - MITTERRAND"}, "geometry": {"type": "Point", "coordinates": [2.3986017741043617, 48.97356093396896]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "99240c44de77ffc9c959a040faa34929395bfa0b", "fields": {"departement": "95", "stop_lat": 48.96895355249564, "code_postal": "95268", "stop_lon": 2.393027244535697, "coord": [48.96895355249564, 2.393027244535697], "stop_id": 4035672, "stop_desc": "42 RUE PAUL VAILLANT COUTURIER - 95268", "stop_name": "BELLEVUE"}, "geometry": {"type": "Point", "coordinates": [2.393027244535697, 48.96895355249564]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bb8417932d92b9247402f990009993e3d0d1ad70", "fields": {"departement": "95", "stop_lat": 48.967318565198234, "code_postal": "95268", "stop_lon": 2.3917834012672485, "coord": [48.967318565198234, 2.3917834012672485], "stop_id": 4035674, "stop_desc": "72 RUE PAUL VAILLANT COUTURIER - 95268", "stop_name": "PIERRE SEMARD"}, "geometry": {"type": "Point", "coordinates": [2.3917834012672485, 48.967318565198234]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "55eca29174fb1831301b45407f26b9596b0ce8f3", "fields": {"departement": "93", "stop_lat": 48.96450714684167, "code_postal": "93072", "stop_lon": 2.388641283610825, "coord": [48.96450714684167, 2.388641283610825], "stop_id": 4035676, "stop_desc": "93 AVENUE JULES GUESDE - 93072", "stop_name": "L'AVENIR"}, "geometry": {"type": "Point", "coordinates": [2.388641283610825, 48.96450714684167]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "43a153a00d8190b55338cd0a7c0db83314e8e932", "fields": {"departement": "93", "stop_lat": 48.96281925443562, "code_postal": "93072", "stop_lon": 2.384790855872679, "coord": [48.96281925443562, 2.384790855872679], "stop_id": 4035679, "stop_desc": "FACE 37 AVENUE JULES GUESDE - 93072", "stop_name": "LEO LAGRANGE"}, "geometry": {"type": "Point", "coordinates": [2.384790855872679, 48.96281925443562]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b4e9385bd9eb47a91f7fcda8eb8ebe5e9e097184", "fields": {"departement": "93", "stop_lat": 48.941582600962306, "code_postal": "93066", "stop_lon": 2.3872952124781888, "coord": [48.941582600962306, 2.3872952124781888], "stop_id": 4035690, "stop_desc": "8-10 AVENUE ROGER SALENGRO - 93066", "stop_name": "CITE FLOREAL"}, "geometry": {"type": "Point", "coordinates": [2.3872952124781888, 48.941582600962306]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "51ca068682946679c2f6b8c811b50dad4a064ccb", "fields": {"departement": "93", "stop_lat": 48.93274884950854, "code_postal": "93027", "stop_lon": 2.386550109086291, "coord": [48.93274884950854, 2.386550109086291], "stop_id": 4035691, "stop_desc": "FACE 38 AVENUE ROGER SALENGRO - 93027", "stop_name": "PARC DES SPORTS"}, "geometry": {"type": "Point", "coordinates": [2.386550109086291, 48.93274884950854]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "230283071e5c20f980d373a9b7d041fc3a1d45c5", "fields": {"departement": "93", "stop_lat": 48.928336795835285, "code_postal": "93027", "stop_lon": 2.3853047632900903, "coord": [48.928336795835285, 2.3853047632900903], "stop_id": 4035693, "stop_desc": "FACE 100 BOULEVARD PASTEUR - 93027", "stop_name": "SIX ROUTES - TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.3853047632900903, 48.928336795835285]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9c2131aacacd85bd9a4960cf3a6462b0ef837612", "fields": {"departement": "93", "stop_lat": 48.92623412112914, "code_postal": "93027", "stop_lon": 2.38464816857512, "coord": [48.92623412112914, 2.38464816857512], "stop_id": 4035695, "stop_desc": "FACE 66 BOULEVARD PASTEUR - 93027", "stop_name": "MICHELET"}, "geometry": {"type": "Point", "coordinates": [2.38464816857512, 48.92623412112914]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fb21fd564087dfa7ff30c982a6aa57d3dc10b357", "fields": {"departement": "93", "stop_lat": 48.92638678455641, "code_postal": "93027", "stop_lon": 2.3849347158324132, "coord": [48.92638678455641, 2.3849347158324132], "stop_id": 4035696, "stop_desc": "80-82 BOULEVARD PASTEUR - 93027", "stop_name": "MICHELET"}, "geometry": {"type": "Point", "coordinates": [2.3849347158324132, 48.92638678455641]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ac704eaff8e9c121156673daf88f0350b77039ff", "fields": {"departement": "93", "stop_lat": 48.91384255517411, "code_postal": "93001", "stop_lon": 2.3808189892371905, "coord": [48.91384255517411, 2.3808189892371905], "stop_id": 4035701, "stop_desc": "168 AVENUE VICTOR HUGO - 93001", "stop_name": "MAIRIE D'AUBERVILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.3808189892371905, 48.91384255517411]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "15714e9a9e851511c53de370a0551194ffb8c144", "fields": {"departement": "93", "stop_lat": 48.91103922499613, "code_postal": "93001", "stop_lon": 2.3790850612919217, "coord": [48.91103922499613, 2.3790850612919217], "stop_id": 4035702, "stop_desc": "159-161 AVENUE VICTOR HUGO - 93001", "stop_name": "VILLEBOIS - MAREUIL"}, "geometry": {"type": "Point", "coordinates": [2.3790850612919217, 48.91103922499613]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0980b5f6553a18509f754348c7eeeaff234aa5b2", "fields": {"departement": "93", "stop_lat": 48.90663673218606, "code_postal": "93001", "stop_lon": 2.3756322932290774, "coord": [48.90663673218606, 2.3756322932290774], "stop_id": 4035706, "stop_desc": "105-107 AVENUE VICTOR HUGO - 93001", "stop_name": "GARDINOUX"}, "geometry": {"type": "Point", "coordinates": [2.3756322932290774, 48.90663673218606]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d36cd417fa0de897bba93763f7face0345a0e6c5", "fields": {"departement": "93", "stop_lat": 48.904166194640815, "code_postal": "93001", "stop_lon": 2.372699453216886, "coord": [48.904166194640815, 2.372699453216886], "stop_id": 4035708, "stop_desc": "57 AVENUE VICTOR HUGO - 93001", "stop_name": "LA HAIE COQ"}, "geometry": {"type": "Point", "coordinates": [2.372699453216886, 48.904166194640815]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f4785bd36ddc3247e93de083d1813908edffe56f", "fields": {"departement": "75", "stop_lat": 48.88982587827333, "code_postal": "75118", "stop_lon": 2.3597149972338234, "coord": [48.88982587827333, 2.3597149972338234], "stop_id": 4035720, "stop_desc": "69 RUE MARX DORMOY - 75118", "stop_name": "ORDENER - MARX DORMOY"}, "geometry": {"type": "Point", "coordinates": [2.3597149972338234, 48.88982587827333]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bb49fcf928600f8b2d02a33b468188093563adaa", "fields": {"departement": "75", "stop_lat": 48.89052682710956, "code_postal": "75118", "stop_lon": 2.359987881341442, "coord": [48.89052682710956, 2.359987881341442], "stop_id": 4035721, "stop_desc": "8 RUE DE LA CHAPELLE - 75118", "stop_name": "ORDENER - MARX DORMOY"}, "geometry": {"type": "Point", "coordinates": [2.359987881341442, 48.89052682710956]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ca3fc460156d42bf761201b30f8f02549a64c231", "fields": {"departement": "75", "stop_lat": 48.87567135548821, "code_postal": "75110", "stop_lon": 2.357583347393136, "coord": [48.87567135548821, 2.357583347393136], "stop_id": 4035730, "stop_desc": "81 BOULEVARD DE STRASBOURG - 75110", "stop_name": "GARE DE L'EST"}, "geometry": {"type": "Point", "coordinates": [2.357583347393136, 48.87567135548821]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9db65c083b4a3db27f23e13cb8414a131f136b20", "fields": {"departement": "75", "stop_lat": 48.87567135548821, "code_postal": "75110", "stop_lon": 2.357583347393136, "coord": [48.87567135548821, 2.357583347393136], "stop_id": 4035731, "stop_desc": "81 BOULEVARD DE STRASBOURG - 75110", "stop_name": "GARE DE L'EST"}, "geometry": {"type": "Point", "coordinates": [2.357583347393136, 48.87567135548821]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "29106f9019c71f7f22aa164eca735a04fd6f8f5e", "fields": {"departement": "75", "stop_lat": 48.88362477105826, "code_postal": "75110", "stop_lon": 2.3593443757229804, "coord": [48.88362477105826, 2.3593443757229804], "stop_id": 4035733, "stop_desc": "226-228 RUE DU FAUBOURG SAINT-DENIS - 75110", "stop_name": "PLACE DE LA CHAPELLE"}, "geometry": {"type": "Point", "coordinates": [2.3593443757229804, 48.88362477105826]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "19389e2f0752be7ea2b521f37a8cf0810f0959bc", "fields": {"departement": "93", "stop_lat": 48.94907406524525, "code_postal": "93007", "stop_lon": 2.4558521098568, "coord": [48.94907406524525, 2.4558521098568], "stop_id": 4035750, "stop_desc": "33 AVENUE DES COSMONAUTES - 93007", "stop_name": "COSMONAUTES"}, "geometry": {"type": "Point", "coordinates": [2.4558521098568, 48.94907406524525]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9ed2bf6b001424051da6bedbe5f496f60f07e3a6", "fields": {"departement": "93", "stop_lat": 48.93518871535055, "code_postal": "93029", "stop_lon": 2.45658419184077, "coord": [48.93518871535055, 2.45658419184077], "stop_id": 4035761, "stop_desc": "FACE 242 RUE ANATOLE FRANCE - 93029", "stop_name": "ROGER SALOMON"}, "geometry": {"type": "Point", "coordinates": [2.45658419184077, 48.93518871535055]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "76a75a9ad98f77788bde5c025c7a513c59f8ee42", "fields": {"departement": "93", "stop_lat": 48.92482629275242, "code_postal": "93029", "stop_lon": 2.447804684804251, "coord": [48.92482629275242, 2.447804684804251], "stop_id": 4035770, "stop_desc": "FACE 45 RUE ANATOLE FRANCE - 93029", "stop_name": "CIMETIERE DE DRANCY"}, "geometry": {"type": "Point", "coordinates": [2.447804684804251, 48.92482629275242]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f006ea357cd003f1dacb431887de213ba850c055", "fields": {"departement": "93", "stop_lat": 48.92723414897826, "code_postal": "93029", "stop_lon": 2.4383991297305485, "coord": [48.92723414897826, 2.4383991297305485], "stop_id": 4035773, "stop_desc": "1 PLACE MAURICE NILES - 93029", "stop_name": "ARISTIDE BRIAND"}, "geometry": {"type": "Point", "coordinates": [2.4383991297305485, 48.92723414897826]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "618c2bb4fe394a6904cc2c5a198c2db164642acb", "fields": {"departement": "93", "stop_lat": 48.93159194439806, "code_postal": "93013", "stop_lon": 2.42830052435121, "coord": [48.93159194439806, 2.42830052435121], "stop_id": 4035777, "stop_desc": "FACE 60 AVENUE JEAN JAURES - 93013", "stop_name": "LE BOURGET-RER"}, "geometry": {"type": "Point", "coordinates": [2.42830052435121, 48.93159194439806]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0602339f1e2b0f12aa97c2b6d36f19a5db301d77", "fields": {"departement": "93", "stop_lat": 48.9291895200751, "code_postal": "93027", "stop_lon": 2.419976389381094, "coord": [48.9291895200751, 2.419976389381094], "stop_id": 4035782, "stop_desc": "178 AVENUE PAUL VAILLANT-COUTURIER - 93027", "stop_name": "AVENUE PAUL VAILLANT COUTURIER N0 176-191"}, "geometry": {"type": "Point", "coordinates": [2.419976389381094, 48.9291895200751]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bfe31a1f02bc244debb1daf55f00bd7f62f811e2", "fields": {"departement": "93", "stop_lat": 48.92522052234096, "code_postal": "93027", "stop_lon": 2.4151966967494456, "coord": [48.92522052234096, 2.4151966967494456], "stop_id": 4035783, "stop_desc": "135 AVENUE PAUL VAILLANT-COUTURIER - 93027", "stop_name": "RUE RATEAU"}, "geometry": {"type": "Point", "coordinates": [2.4151966967494456, 48.92522052234096]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "af5108d849fd75ffd20c6b7a4440b0be26816232", "fields": {"departement": "93", "stop_lat": 48.92108905855783, "code_postal": "93027", "stop_lon": 2.4112220941941844, "coord": [48.92108905855783, 2.4112220941941844], "stop_id": 4035786, "stop_desc": "68 AVENUE PAUL VAILLANT COUTURIER - 93027", "stop_name": "8 MAI 1945 - METRO - TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.4112220941941844, 48.92108905855783]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4db324e8e3109209632236090a40e1979ad0059e", "fields": {"departement": "93", "stop_lat": 48.91614972446159, "code_postal": "93001", "stop_lon": 2.4053380274974674, "coord": [48.91614972446159, 2.4053380274974674], "stop_id": 4035790, "stop_desc": "FACE 186 AVENUE JEAN JAURES - 93001", "stop_name": "HELENE COCHENNEC"}, "geometry": {"type": "Point", "coordinates": [2.4053380274974674, 48.91614972446159]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "53f94c20659857a239b7108479e3f6ec798a45cc", "fields": {"departement": "93", "stop_lat": 48.910895384137824, "code_postal": "93001", "stop_lon": 2.3997410269389743, "coord": [48.910895384137824, 2.3997410269389743], "stop_id": 4035793, "stop_desc": "183 AVENUE JEAN JAURES - 93001", "stop_name": "RECHOSSIERE"}, "geometry": {"type": "Point", "coordinates": [2.3997410269389743, 48.910895384137824]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d188b9f53b6a8b4349bccac1b13dfee6bdc169a0", "fields": {"departement": "91", "stop_lat": 48.726386097069756, "code_postal": "91377", "stop_lon": 2.2459703723155227, "coord": [48.726386097069756, 2.2459703723155227], "stop_id": 6041807, "stop_desc": "31 ROUTE DE PALAISEAU - 91377", "stop_name": "CLOS BERTHELOT"}, "geometry": {"type": "Point", "coordinates": [2.2459703723155227, 48.726386097069756]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "84c057744f145b9879f7bf45d9d0bc1d81ff7371", "fields": {"departement": "91", "stop_lat": 48.72694748628049, "code_postal": "91689", "stop_lon": 2.306454897434583, "coord": [48.72694748628049, 2.306454897434583], "stop_id": 6041842, "stop_desc": "RUE DIDIER DAURAT - 91689", "stop_name": "PLACE DE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.306454897434583, 48.72694748628049]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b113498fb1d2fff4e76544545b1446c8abe1b931", "fields": {"departement": "91", "stop_lat": 48.71463130265708, "code_postal": "91161", "stop_lon": 2.2992768235553367, "coord": [48.71463130265708, 2.2992768235553367], "stop_id": 6041849, "stop_desc": "79 ROUTE DE MASSY - 91161", "stop_name": "ROUTE DE MASSY - LES CHAMPARTS"}, "geometry": {"type": "Point", "coordinates": [2.2992768235553367, 48.71463130265708]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bfb87542bbdb0e2b57798164dc1cf15c14dbb2d8", "fields": {"departement": "91", "stop_lat": 48.70255564704986, "code_postal": "91161", "stop_lon": 2.3203207017167378, "coord": [48.70255564704986, 2.3203207017167378], "stop_id": 6041857, "stop_desc": "7 AVENUE MAZARIN - 91161", "stop_name": "PLACE DE LA LIBERATION"}, "geometry": {"type": "Point", "coordinates": [2.3203207017167378, 48.70255564704986]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4c21d8224c1355b68c9b4567ea64bfd5d4ce9ae8", "fields": {"departement": "91", "stop_lat": 48.700399000274075, "code_postal": "91432", "stop_lon": 2.3252506554713914, "coord": [48.700399000274075, 2.3252506554713914], "stop_id": 6041860, "stop_desc": "86 AVENUE ARISTIDE BRIAND - 91432", "stop_name": "L'AVENIR"}, "geometry": {"type": "Point", "coordinates": [2.3252506554713914, 48.700399000274075]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "740bf813278d82efb9fe881ca9cd9df61c5737bb", "fields": {"departement": "91", "stop_lat": 48.70731144827232, "code_postal": "91432", "stop_lon": 2.3284541793557256, "coord": [48.70731144827232, 2.3284541793557256], "stop_id": 6041866, "stop_desc": "PLACE GABRIEL FONTAINE - 91432", "stop_name": "GABRIEL FONTAINE"}, "geometry": {"type": "Point", "coordinates": [2.3284541793557256, 48.70731144827232]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f025ab826f3b7c70eccf2d82f50725ad1822ba2c", "fields": {"departement": "91", "stop_lat": 48.69625528152623, "code_postal": "91345", "stop_lon": 2.2895275620689732, "coord": [48.69625528152623, 2.2895275620689732], "stop_id": 6041874, "stop_desc": "RUE DU CANAL - 91345", "stop_name": "CANAL DE L'YVETTE"}, "geometry": {"type": "Point", "coordinates": [2.2895275620689732, 48.69625528152623]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7a2ea6dc2a67bfc4975fcaa993f023930f9d6d21", "fields": {"departement": "91", "stop_lat": 48.691959054551646, "code_postal": "91345", "stop_lon": 2.2903189686409093, "coord": [48.691959054551646, 2.2903189686409093], "stop_id": 6041876, "stop_desc": "159 RUE DU PRESIDENT FRANCOIS MITTERRAND - 91345", "stop_name": "HOPITAL DE LONGJUMEAU"}, "geometry": {"type": "Point", "coordinates": [2.2903189686409093, 48.691959054551646]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7ce362892fa4643e4a315dc6aea9a24bbad15b9e", "fields": {"departement": "91", "stop_lat": 48.69958678808771, "code_postal": "91161", "stop_lon": 2.3070142528801103, "coord": [48.69958678808771, 2.3070142528801103], "stop_id": 6041886, "stop_desc": "FACE 47 RUE HENRI BARBUSSE - 91161", "stop_name": "CHILLY-MAZARIN RER"}, "geometry": {"type": "Point", "coordinates": [2.3070142528801103, 48.69958678808771]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f6b11f87fedba0f368977ccf41072bf8b2833d7c", "fields": {"departement": "91", "stop_lat": 48.69657690148715, "code_postal": "91161", "stop_lon": 2.312542333307825, "coord": [48.69657690148715, 2.312542333307825], "stop_id": 6041892, "stop_desc": "28 BIS RUE PIERRE MENDES FRANCE - 91161", "stop_name": "ELISEE RECLUS"}, "geometry": {"type": "Point", "coordinates": [2.312542333307825, 48.69657690148715]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "482f9b6c90a3dcd7e7d0a0091278de9530c2a11c", "fields": {"departement": "91", "stop_lat": 48.706996800991995, "code_postal": "91432", "stop_lon": 2.3278023479938312, "coord": [48.706996800991995, 2.3278023479938312], "stop_id": 6041897, "stop_desc": "FACE 43 RUE DU GENERAL LECLERC - 91432", "stop_name": "SQUARE - CONDORCET"}, "geometry": {"type": "Point", "coordinates": [2.3278023479938312, 48.706996800991995]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "36abba03a61d51b70b75dd836efaa93827ed05f5", "fields": {"departement": "91", "stop_lat": 48.694029119668265, "code_postal": "91345", "stop_lon": 2.2977032864842424, "coord": [48.694029119668265, 2.2977032864842424], "stop_id": 6041899, "stop_desc": "2 AVENUE DU GENERAL DE GAULLE - 91345", "stop_name": "LEONTINE SOHIER"}, "geometry": {"type": "Point", "coordinates": [2.2977032864842424, 48.694029119668265]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bfb3d81f5f0c3b7e6de2bf9ed0f1e5e9e50e9970", "fields": {"departement": "91", "stop_lat": 48.69683766498326, "code_postal": "91161", "stop_lon": 2.313003870905301, "coord": [48.69683766498326, 2.313003870905301], "stop_id": 6041905, "stop_desc": "27 BIS RUE PIERRE MENDES FRANCE - 91161", "stop_name": "ELISEE RECLUS"}, "geometry": {"type": "Point", "coordinates": [2.313003870905301, 48.69683766498326]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f536cbb113d180edcf983a097c5aa525b0e82120", "fields": {"departement": "91", "stop_lat": 48.706042051347254, "code_postal": "91161", "stop_lon": 2.3136514533219743, "coord": [48.706042051347254, 2.3136514533219743], "stop_id": 6041909, "stop_desc": "32 AVENUE MAZARIN - 91161", "stop_name": "COLLEGE DE CHILLY-MAZARIN"}, "geometry": {"type": "Point", "coordinates": [2.3136514533219743, 48.706042051347254]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c63f8750a6ced9c2d24b27f12bfb0ba0fc1d39bd", "fields": {"departement": "93", "stop_lat": 48.93317249702303, "code_postal": "93046", "stop_lon": 2.5494152298620016, "coord": [48.93317249702303, 2.5494152298620016], "stop_id": 6041912, "stop_desc": "77 RUE DU DOCTEUR ROUX - 93046", "stop_name": "SQUARE HENRI LEGRAND"}, "geometry": {"type": "Point", "coordinates": [2.5494152298620016, 48.93317249702303]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cdc535c67146cb0ac27ce6aee24fd19c27585a85", "fields": {"departement": "92", "stop_lat": 48.807386925894036, "code_postal": "92020", "stop_lon": 2.2941471022464484, "coord": [48.807386925894036, 2.2941471022464484], "stop_id": 6046777, "stop_desc": "FACE 90 AVENUE DE PARIS - 92020", "stop_name": "VAUBAN"}, "geometry": {"type": "Point", "coordinates": [2.2941471022464484, 48.807386925894036]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5ee31bd4e00f19985c4bbf2639aefbcc43455251", "fields": {"departement": "92", "stop_lat": 48.80724319014688, "code_postal": "92020", "stop_lon": 2.2943377217382683, "coord": [48.80724319014688, 2.2943377217382683], "stop_id": 6046778, "stop_desc": "96 AVENUE DE PARIS - 92020", "stop_name": "VAUBAN"}, "geometry": {"type": "Point", "coordinates": [2.2943377217382683, 48.80724319014688]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "254dd99b328396ecd8cf42ab1a27efb110001acf", "fields": {"departement": "92", "stop_lat": 48.804293077197215, "code_postal": "92020", "stop_lon": 2.2888295761075117, "coord": [48.804293077197215, 2.2888295761075117], "stop_id": 6046779, "stop_desc": "AVENUE DE PARIS - 92020", "stop_name": "CENTRE DE CHATILLON"}, "geometry": {"type": "Point", "coordinates": [2.2888295761075117, 48.804293077197215]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f9a270a87735798aaf0d9dabfb0f320889c07494", "fields": {"departement": "92", "stop_lat": 48.79048408035756, "code_postal": "92023", "stop_lon": 2.2641126260841, "coord": [48.79048408035756, 2.2641126260841], "stop_id": 6046786, "stop_desc": "117 AVENUE DU GENERAL DE GAULLE - 92023", "stop_name": "SOLEIL LEVANT"}, "geometry": {"type": "Point", "coordinates": [2.2641126260841, 48.79048408035756]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "02c5ab722ed89dcf105efa04e631da5f8fb53730", "fields": {"departement": "92", "stop_lat": 48.78699980386893, "code_postal": "92023", "stop_lon": 2.255004290390715, "coord": [48.78699980386893, 2.255004290390715], "stop_id": 6046787, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 92023", "stop_name": "HOPITAL BECLERE"}, "geometry": {"type": "Point", "coordinates": [2.255004290390715, 48.78699980386893]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5112645eb3942bc48c6f7d068d8aeed5d40b1ef9", "fields": {"departement": "92", "stop_lat": 48.780778066293436, "code_postal": "92023", "stop_lon": 2.2403258965438773, "coord": [48.780778066293436, 2.2403258965438773], "stop_id": 6046792, "stop_desc": "FACE 436 AVENUE DU GENERAL DE GAULLE - 92023", "stop_name": "PAVE BLANC (PARC NOVEOS)"}, "geometry": {"type": "Point", "coordinates": [2.2403258965438773, 48.780778066293436]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e4fd44d95492e17a2ad720139171f5bc772f7ff7", "fields": {"departement": "92", "stop_lat": 48.78480119462611, "code_postal": "92023", "stop_lon": 2.236142794992364, "coord": [48.78480119462611, 2.236142794992364], "stop_id": 6046794, "stop_desc": "RUE DE LA PORTE DE TRIVAUX - 92023", "stop_name": "GEORGES POMPIDOU"}, "geometry": {"type": "Point", "coordinates": [2.236142794992364, 48.78480119462611]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6c737791b034ba1e5237cf5ea47a35f22e993287", "fields": {"departement": "92", "stop_lat": 48.78340302083531, "code_postal": "92048", "stop_lon": 2.23037872764543, "coord": [48.78340302083531, 2.23037872764543], "stop_id": 6046795, "stop_desc": "AVENUE DE VILLACOUBLAY - 92048", "stop_name": "GEORGES MILLANDY"}, "geometry": {"type": "Point", "coordinates": [2.23037872764543, 48.78340302083531]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "776eccd9f6b3fb34b3eadfc5013b50d591480423", "fields": {"departement": "92", "stop_lat": 48.7835151718337, "code_postal": "92048", "stop_lon": 2.2252781412703584, "coord": [48.7835151718337, 2.2252781412703584], "stop_id": 6046796, "stop_desc": "RUE DU PETIT CLAMART - 92048", "stop_name": "MEUDON-LA-FORET"}, "geometry": {"type": "Point", "coordinates": [2.2252781412703584, 48.7835151718337]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2a93f4fe31fe365741acb0e162a3e493d944af01", "fields": {"departement": "78", "stop_lat": 48.7847409377564, "code_postal": "78640", "stop_lon": 2.2194949586652197, "coord": [48.7847409377564, 2.2194949586652197], "stop_id": 6046799, "stop_desc": "AVENUE MORANE SAULNIER - 78640", "stop_name": "VELIZY 2"}, "geometry": {"type": "Point", "coordinates": [2.2194949586652197, 48.7847409377564]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a473dda3bf009f44b447eaea970cfd3d9287ab0c", "fields": {"departement": "78", "stop_lat": 48.78333287029129, "code_postal": "78640", "stop_lon": 2.2136361616077904, "coord": [48.78333287029129, 2.2136361616077904], "stop_id": 6046801, "stop_desc": "AVENUE MORANE SAULNIER - 78640", "stop_name": "DEWOITINE"}, "geometry": {"type": "Point", "coordinates": [2.2136361616077904, 48.78333287029129]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b47a2103e623433b78395f60cfa13719c63f1f65", "fields": {"departement": "78", "stop_lat": 48.78023105200936, "code_postal": "78640", "stop_lon": 2.1965890249373223, "coord": [48.78023105200936, 2.1965890249373223], "stop_id": 6046804, "stop_desc": "AVENUE DE L'EUROPE - 78640", "stop_name": "LOUVOIS"}, "geometry": {"type": "Point", "coordinates": [2.1965890249373223, 48.78023105200936]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d96298d64fc47fb2b7c538c4af5bc331ed374d87", "fields": {"departement": "78", "stop_lat": 48.78008734100824, "code_postal": "78640", "stop_lon": 2.1966710144596644, "coord": [48.78008734100824, 2.1966710144596644], "stop_id": 6046805, "stop_desc": "AVENUE DE L'EUROPE - 78640", "stop_name": "LOUVOIS"}, "geometry": {"type": "Point", "coordinates": [2.1966710144596644, 48.78008734100824]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5a353c32d1894d3cd161869880c4ead1735c3a72", "fields": {"departement": "78", "stop_lat": 48.782098728287224, "code_postal": "78640", "stop_lon": 2.1807392815123343, "coord": [48.782098728287224, 2.1807392815123343], "stop_id": 6046808, "stop_desc": "4 AVENUE LOUIS BREGUET - 78640", "stop_name": "L'ONDE (MAISON DES ARTS)"}, "geometry": {"type": "Point", "coordinates": [2.1807392815123343, 48.782098728287224]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "53b73b38b4d910f5d69c15f0033829ea5d3366b7", "fields": {"departement": "78", "stop_lat": 48.781963837417614, "code_postal": "78640", "stop_lon": 2.1806852857458376, "coord": [48.781963837417614, 2.1806852857458376], "stop_id": 6046809, "stop_desc": "AVENUE LOUIS BREGUET - 78640", "stop_name": "L'ONDE (MAISON DES ARTS)"}, "geometry": {"type": "Point", "coordinates": [2.1806852857458376, 48.781963837417614]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d259fc835a79fd277265f2dfaf0c9e53dd03fc38", "fields": {"departement": "78", "stop_lat": 48.801032576044896, "code_postal": "78686", "stop_lon": 2.171376010345041, "coord": [48.801032576044896, 2.171376010345041], "stop_id": 6046812, "stop_desc": "RUE RIEUSSEC - 78686", "stop_name": "VIROFLAY - RIVE GAUCHE"}, "geometry": {"type": "Point", "coordinates": [2.171376010345041, 48.801032576044896]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7713ced55b7da263b3476105c521d783593a02f2", "fields": {"departement": "91", "stop_lat": 48.692786291644545, "code_postal": "91589", "stop_lon": 2.3378249165344362, "coord": [48.692786291644545, 2.3378249165344362], "stop_id": 6053474, "stop_desc": "AV DE SAVIGNY - 91589", "stop_name": "COMMISSARIAT DE SAVIGNY-SUR-ORGE"}, "geometry": {"type": "Point", "coordinates": [2.3378249165344362, 48.692786291644545]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b7f563fb93e3ed0daf5f375016cab0b7023b335e", "fields": {"departement": "75", "stop_lat": 48.81884297364722, "code_postal": "75113", "stop_lon": 2.359874820335962, "coord": [48.81884297364722, 2.359874820335962], "stop_id": 6075081, "stop_desc": "FACE 164 BOULEVARD MASSENA - 75113", "stop_name": "PORTE D'ITALIE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.359874820335962, 48.81884297364722]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e4f8270110a05037afe52f62bfee3b822beaeeda", "fields": {"departement": "94", "stop_lat": 48.80348316255257, "code_postal": "94043", "stop_lon": 2.3583850556020804, "coord": [48.80348316255257, 2.3583850556020804], "stop_id": 6075091, "stop_desc": "FACE 50 BOULEVARD CHASTENET DE GERY - 94043", "stop_name": "LES COQUETTES"}, "geometry": {"type": "Point", "coordinates": [2.3583850556020804, 48.80348316255257]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b2df941e899541146c335d6ae634a90c4c4da8ff", "fields": {"departement": "94", "stop_lat": 48.797983182715456, "code_postal": "94076", "stop_lon": 2.35484558862714, "coord": [48.797983182715456, 2.35484558862714], "stop_id": 6075094, "stop_desc": "PLACE DU 8 MAI 1945 - 94076", "stop_name": "PLACE DU 8 MAI 1945"}, "geometry": {"type": "Point", "coordinates": [2.35484558862714, 48.797983182715456]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0b671c9e8bd5b890e0fc66997a13a1229c20ae76", "fields": {"departement": "94", "stop_lat": 48.78035780179034, "code_postal": "94076", "stop_lon": 2.3553292228019247, "coord": [48.78035780179034, 2.3553292228019247], "stop_id": 6075104, "stop_desc": "FACE 141 RUE DE CHEVILLY - 94076", "stop_name": "YOURI GAGARINE"}, "geometry": {"type": "Point", "coordinates": [2.3553292228019247, 48.78035780179034]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2ff69cbf005cdcfe34f708a579fa3419085e0f9d", "fields": {"departement": "94", "stop_lat": 48.7773468779113, "code_postal": "94038", "stop_lon": 2.354974592688749, "coord": [48.7773468779113, 2.354974592688749], "stop_id": 6075107, "stop_desc": "FACE 141 RUE DE BICETRE - 94038", "stop_name": "LES DAHLIAS"}, "geometry": {"type": "Point", "coordinates": [2.354974592688749, 48.7773468779113]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7ec0c2dad3c82ff194f2772d80ba63862d099294", "fields": {"departement": "94", "stop_lat": 48.77070532619788, "code_postal": "94021", "stop_lon": 2.3503491492177844, "coord": [48.77070532619788, 2.3503491492177844], "stop_id": 6075110, "stop_desc": "100 AVENUE DU GENERAL DE GAULLE - 94021", "stop_name": "CENTRE CULTUREL - ANDRE MALRAUX"}, "geometry": {"type": "Point", "coordinates": [2.3503491492177844, 48.77070532619788]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "84a38b9c7f03bc6eb30579a7d6fa27c66ea16dbe", "fields": {"departement": "94", "stop_lat": 48.770175020675374, "code_postal": "94021", "stop_lon": 2.350444197636118, "coord": [48.770175020675374, 2.350444197636118], "stop_id": 6075112, "stop_desc": "AVENUE DU 8 MAI 1945 - 94021", "stop_name": "MAIRIE DE CHEVILLY-LARUE - THEATRE"}, "geometry": {"type": "Point", "coordinates": [2.350444197636118, 48.770175020675374]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "71a2e2d93cf7b4b520a27ed9bc5a2ada90fd6a5c", "fields": {"departement": "92", "stop_lat": 48.74788189955395, "code_postal": "92002", "stop_lon": 2.309296732352314, "coord": [48.74788189955395, 2.309296732352314], "stop_id": 6085204, "stop_desc": "AVENUE ARMAND GUILLEBAUD - 92002", "stop_name": "DESCARTES"}, "geometry": {"type": "Point", "coordinates": [2.309296732352314, 48.74788189955395]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3dbacf31836d5358878dcb881cea7601839d0490", "fields": {"departement": "75", "stop_lat": 48.86661383061701, "code_postal": "75101", "stop_lon": 2.3344075309487886, "coord": [48.86661383061701, 2.3344075309487886], "stop_id": 6129305, "stop_desc": "Rue de l'Echelle - 75101", "stop_name": "Pyramides"}, "geometry": {"type": "Point", "coordinates": [2.3344075309487886, 48.86661383061701]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5b5e8b5f8bd8a0ee9a2df87c0f227ad151ed9240", "fields": {"departement": "75", "stop_lat": 48.8976010161314, "code_postal": "75117", "stop_lon": 2.3228332150358777, "coord": [48.8976010161314, 2.3228332150358777], "stop_id": 6131939, "stop_desc": "46 BOULEVARD BESSIERES - 75117", "stop_name": "PORTE POUCHET"}, "geometry": {"type": "Point", "coordinates": [2.3228332150358777, 48.8976010161314]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8d925f281e5359228510d191888a111251f10dee", "fields": {"departement": "75", "stop_lat": 48.89815807207283, "code_postal": "75118", "stop_lon": 2.3528349419067323, "coord": [48.89815807207283, 2.3528349419067323], "stop_id": 6131940, "stop_desc": "FACE 78 BOULEVARD NEY - 75118", "stop_name": "PORTE DES POISSONNIERS"}, "geometry": {"type": "Point", "coordinates": [2.3528349419067323, 48.89815807207283]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "688f56bec67a242bde70034d82d1898ae4a35565", "fields": {"departement": "75", "stop_lat": 48.89850873220388, "code_postal": "75118", "stop_lon": 2.351540091366487, "coord": [48.89850873220388, 2.351540091366487], "stop_id": 6131941, "stop_desc": "84 BOULEVARD NEY - 75118", "stop_name": "PORTE DES POISSONNIERS"}, "geometry": {"type": "Point", "coordinates": [2.351540091366487, 48.89850873220388]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e1d25e705a53156b00e0078e47fa0ed82052fd38", "fields": {"departement": "75", "stop_lat": 48.89743950276973, "code_postal": "75117", "stop_lon": 2.3251232401258224, "coord": [48.89743950276973, 2.3251232401258224], "stop_id": 6131953, "stop_desc": "31 BOULEVARD BESSIERES - 75117", "stop_name": "LOUIS LOUCHEUR"}, "geometry": {"type": "Point", "coordinates": [2.3251232401258224, 48.89743950276973]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "500330dbe272db7fc625148c745817532ebe61f9", "fields": {"departement": "75", "stop_lat": 48.89764618016655, "code_postal": "75117", "stop_lon": 2.32486420486476, "coord": [48.89764618016655, 2.32486420486476], "stop_id": 6131954, "stop_desc": "36 BOULEVARD BESSIERES - 75117", "stop_name": "LOUIS LOUCHEUR"}, "geometry": {"type": "Point", "coordinates": [2.32486420486476, 48.89764618016655]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "717c5d353ef27f5b00e0f2bed8f3cf213ee70650", "fields": {"departement": "75", "stop_lat": 48.886143903230625, "code_postal": "75117", "stop_lon": 2.2927051939001406, "coord": [48.886143903230625, 2.2927051939001406], "stop_id": 6131957, "stop_desc": "15 AVENUE STEPHANE MALLARME - 75117", "stop_name": "PORTE DE CHAMPERRET"}, "geometry": {"type": "Point", "coordinates": [2.2927051939001406, 48.886143903230625]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "757893f1b1303f926944f30894f143cc429c9502", "fields": {"departement": "75", "stop_lat": 48.89591076610747, "code_postal": "75117", "stop_lon": 2.318090294952848, "coord": [48.89591076610747, 2.318090294952848], "stop_id": 6131958, "stop_desc": "95 BIS BOULEVARD BESSIERES - 75117", "stop_name": "LYCEE HONORE DE BALZAC"}, "geometry": {"type": "Point", "coordinates": [2.318090294952848, 48.89591076610747]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ce405d616d1e606b42c12b75ad7dfa94c8de2675", "fields": {"departement": "75", "stop_lat": 48.897754632133875, "code_postal": "75118", "stop_lon": 2.3402398532607034, "coord": [48.897754632133875, 2.3402398532607034], "stop_id": 6131962, "stop_desc": "65 BOULEVARD NEY - 75118", "stop_name": "CAMILLE FLAMMARION"}, "geometry": {"type": "Point", "coordinates": [2.3402398532607034, 48.897754632133875]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cca3cf31e3e28edbbabf04d000ce1e103cca9dbb", "fields": {"departement": "75", "stop_lat": 48.88571275955294, "code_postal": "75117", "stop_lon": 2.2933596965538796, "coord": [48.88571275955294, 2.2933596965538796], "stop_id": 6131969, "stop_desc": "FACE 99 BOULEVARD BERTHIER - 75117", "stop_name": "PORTE DE CHAMPERRET - BERTHIER"}, "geometry": {"type": "Point", "coordinates": [2.2933596965538796, 48.88571275955294]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f8e397630e63c24e2355ea8de1211d3c31d5e715", "fields": {"departement": "75", "stop_lat": 48.88106312095276, "code_postal": "75117", "stop_lon": 2.2853103541311532, "coord": [48.88106312095276, 2.2853103541311532], "stop_id": 6131970, "stop_desc": "48 BOULEVARD GOUVION-SAINT-CYR - 75117", "stop_name": "GENERAL KOENIG - PALAIS DES CONGRES"}, "geometry": {"type": "Point", "coordinates": [2.2853103541311532, 48.88106312095276]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "43a9fa4a00fe90c9ff380ec45ec1c457e6d840ee", "fields": {"departement": "75", "stop_lat": 48.898774923524925, "code_postal": "75118", "stop_lon": 2.369192550549825, "coord": [48.898774923524925, 2.369192550549825], "stop_id": 6131971, "stop_desc": "4 BOULEVARD NEY - 75118", "stop_name": "PORTE D'AUBERVILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.369192550549825, 48.898774923524925]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e82286cf44bc843d45400d28b4d8292db9496a7a", "fields": {"departement": "75", "stop_lat": 48.88600877100075, "code_postal": "75117", "stop_lon": 2.2918467567357994, "coord": [48.88600877100075, 2.2918467567357994], "stop_id": 6131972, "stop_desc": "14 AVENUE STEPHANE MALLARME - 75117", "stop_name": "PORTE DE CHAMPERRET - STEPHANE MALLARME"}, "geometry": {"type": "Point", "coordinates": [2.2918467567357994, 48.88600877100075]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0bba32bd4974736556c5595844eb68f7ff2bc6de", "fields": {"departement": "94", "stop_lat": 48.787527716775635, "code_postal": "94076", "stop_lon": 2.3675054965008373, "coord": [48.787527716775635, 2.3675054965008373], "stop_id": 6143542, "stop_desc": "PISTE GARE ROUTIERE - 94076", "stop_name": "VILLEJUIF - LOUIS ARAGON-METRO"}, "geometry": {"type": "Point", "coordinates": [2.3675054965008373, 48.787527716775635]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f69d823782cca7473e610246dc1516ad9ca2b798", "fields": {"departement": "94", "stop_lat": 48.825529348029235, "code_postal": "94018", "stop_lon": 2.407260928275537, "coord": [48.825529348029235, 2.407260928275537], "stop_id": 6143562, "stop_desc": "135 RUE DE PARIS - 94018", "stop_name": "LIBERTE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.407260928275537, 48.825529348029235]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b322d8df8f44b6c4dffb7798387b9dd4e023557a", "fields": {"departement": "94", "stop_lat": 48.816429008859835, "code_postal": "94041", "stop_lon": 2.3997225650243545, "coord": [48.816429008859835, 2.3997225650243545], "stop_id": 6143571, "stop_desc": "94 BOULEVARD PAUL VAILLANT-COUTURIER - 94041", "stop_name": "MOISE - PIERRE GALAIS"}, "geometry": {"type": "Point", "coordinates": [2.3997225650243545, 48.816429008859835]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a6e13f6d750d231818c4d6e003265e16a5e79b57", "fields": {"departement": "94", "stop_lat": 48.81486417327504, "code_postal": "94041", "stop_lon": 2.401544308380196, "coord": [48.81486417327504, 2.401544308380196], "stop_id": 6143572, "stop_desc": "FACE 119 BOULEVARD PAUL VAILLANT-COUTURIER - 94041", "stop_name": "GAMBETTA"}, "geometry": {"type": "Point", "coordinates": [2.401544308380196, 48.81486417327504]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e8c077119d5e2f34a7525d37a626081aa738316e", "fields": {"departement": "94", "stop_lat": 48.80158865978527, "code_postal": "94081", "stop_lon": 2.4025619011687778, "coord": [48.80158865978527, 2.4025619011687778], "stop_id": 6143576, "stop_desc": "3 PLACE PIERRE SEMARD - 94081", "stop_name": "VITRY RER"}, "geometry": {"type": "Point", "coordinates": [2.4025619011687778, 48.80158865978527]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "66b754c9a3599a7394d2be4bc363f061ed724a7f", "fields": {"departement": "94", "stop_lat": 48.795245983898745, "code_postal": "94081", "stop_lon": 2.3973435873756848, "coord": [48.795245983898745, 2.3973435873756848], "stop_id": 6143578, "stop_desc": "70 AVENUE PAUL VAILLANT-COUTURIER - 94081", "stop_name": "PAUL VAILLANT-COUTURIER"}, "geometry": {"type": "Point", "coordinates": [2.3973435873756848, 48.795245983898745]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1c2d3d1707809cab63bd432ae25679f5338218f0", "fields": {"departement": "94", "stop_lat": 48.790579620426534, "code_postal": "94081", "stop_lon": 2.380429921953688, "coord": [48.790579620426534, 2.380429921953688], "stop_id": 6143584, "stop_desc": "78 AVENUE DU MOULIN DE SAQUET - 94081", "stop_name": "CAMELINAT"}, "geometry": {"type": "Point", "coordinates": [2.380429921953688, 48.790579620426534]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c4fab71079d244230e536efe07809f5e57637dd9", "fields": {"departement": "94", "stop_lat": 48.78867613628673, "code_postal": "94076", "stop_lon": 2.3746609690403804, "coord": [48.78867613628673, 2.3746609690403804], "stop_id": 6143585, "stop_desc": "77 AVENUE LOUIS ARAGON - 94076", "stop_name": "COLONEL FABIEN"}, "geometry": {"type": "Point", "coordinates": [2.3746609690403804, 48.78867613628673]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6541254feb920d782d67990dfd7d577325aecd4a", "fields": {"departement": "94", "stop_lat": 48.816429008859835, "code_postal": "94041", "stop_lon": 2.3997225650243545, "coord": [48.816429008859835, 2.3997225650243545], "stop_id": 6143593, "stop_desc": "94 BOULEVARD PAUL VAILLANT-COUTURIER - 94041", "stop_name": "MOISE - PIERRE GALAIS"}, "geometry": {"type": "Point", "coordinates": [2.3997225650243545, 48.816429008859835]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b3ecc6e60f223b394411c8ef1062f194704c09a1", "fields": {"departement": "94", "stop_lat": 48.81486417327504, "code_postal": "94041", "stop_lon": 2.401544308380196, "coord": [48.81486417327504, 2.401544308380196], "stop_id": 6143594, "stop_desc": "FACE 119 BOULEVARD PAUL VAILLANT-COUTURIER - 94041", "stop_name": "GAMBETTA"}, "geometry": {"type": "Point", "coordinates": [2.401544308380196, 48.81486417327504]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fd93e80b38414b7e0682ebbf9e46d8eba62a08e6", "fields": {"departement": "94", "stop_lat": 48.80158865978527, "code_postal": "94081", "stop_lon": 2.4025619011687778, "coord": [48.80158865978527, 2.4025619011687778], "stop_id": 6143598, "stop_desc": "3 PLACE PIERRE SEMARD - 94081", "stop_name": "VITRY RER"}, "geometry": {"type": "Point", "coordinates": [2.4025619011687778, 48.80158865978527]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c389fa5c41cf2552e4b8b77876d2700d9ff8f506", "fields": {"departement": "94", "stop_lat": 48.79209689981996, "code_postal": "94081", "stop_lon": 2.3848250122745944, "coord": [48.79209689981996, 2.3848250122745944], "stop_id": 6143605, "stop_desc": "FACE 11-13 AVENUE DU MOULIN DE SAQUET - 94081", "stop_name": "MUSEE MAC-VAL"}, "geometry": {"type": "Point", "coordinates": [2.3848250122745944, 48.79209689981996]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "baf238bdefd85abdfd7759cf8bcd6ea914e8884a", "fields": {"departement": "94", "stop_lat": 48.790579620426534, "code_postal": "94081", "stop_lon": 2.380429921953688, "coord": [48.790579620426534, 2.380429921953688], "stop_id": 6143606, "stop_desc": "78 AVENUE DU MOULIN DE SAQUET - 94081", "stop_name": "CAMELINAT"}, "geometry": {"type": "Point", "coordinates": [2.380429921953688, 48.790579620426534]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "70421c61d4f9cf27c0fcb06dcb1bf1dbcc3028e8", "fields": {"departement": "75", "stop_lat": 48.85109213482204, "code_postal": "75106", "stop_lon": 2.3267683174103593, "coord": [48.85109213482204, 2.3267683174103593], "stop_id": 5138183, "stop_desc": "48 BOULEVARD RASPAIL - 75106", "stop_name": "SEVRES - BABYLONE"}, "geometry": {"type": "Point", "coordinates": [2.3267683174103593, 48.85109213482204]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "051ef40b7f4b997a1f0156340a2562e1bd9cdcf0", "fields": {"departement": "75", "stop_lat": 48.8382222938237, "code_postal": "75114", "stop_lon": 2.330814655185892, "coord": [48.8382222938237, 2.330814655185892], "stop_id": 5138190, "stop_desc": "244 BOULEVARD RASPAIL - 75114", "stop_name": "RASPAIL - EDGAR QUINET"}, "geometry": {"type": "Point", "coordinates": [2.330814655185892, 48.8382222938237]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2149d92429c80f925c37faf06c0fcb4fc158301c", "fields": {"departement": "75", "stop_lat": 48.838986236741825, "code_postal": "75114", "stop_lon": 2.3308145603867607, "coord": [48.838986236741825, 2.3308145603867607], "stop_id": 5138191, "stop_desc": "237 BOULEVARD RASPAIL - 75114", "stop_name": "RASPAIL - EDGAR QUINET"}, "geometry": {"type": "Point", "coordinates": [2.3308145603867607, 48.838986236741825]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6d1eb868f173d5426aa3256482912d7a5495dfa2", "fields": {"departement": "75", "stop_lat": 48.83521150991317, "code_postal": "75114", "stop_lon": 2.3319178021429443, "coord": [48.83521150991317, 2.3319178021429443], "stop_id": 5138192, "stop_desc": "286 BOULEVARD RASPAIL - 75114", "stop_name": "VICTOR CONSIDERANT"}, "geometry": {"type": "Point", "coordinates": [2.3319178021429443, 48.83521150991317]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b63adf120863287341371b956fb5d3ed006a5aae", "fields": {"departement": "75", "stop_lat": 48.83328820139704, "code_postal": "75114", "stop_lon": 2.3328165226659383, "coord": [48.83328820139704, 2.3328165226659383], "stop_id": 5138195, "stop_desc": "3 PLACE DENFERT ROCHEREAU - 75114", "stop_name": "DENFERT-ROCHEREAU"}, "geometry": {"type": "Point", "coordinates": [2.3328165226659383, 48.83328820139704]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0f4a06842b5bc1075f9ee5a4bdf3f6dd538a0968", "fields": {"departement": "75", "stop_lat": 48.8316073794591, "code_postal": "75114", "stop_lon": 2.3299850499497685, "coord": [48.8316073794591, 2.3299850499497685], "stop_id": 5138196, "stop_desc": "32 AVENUE DU GENERAL LECLERC - 75114", "stop_name": "MOUTON - DUVERNET"}, "geometry": {"type": "Point", "coordinates": [2.3299850499497685, 48.8316073794591]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8435e631f7bbac52cdec9b062790c7f13423f434", "fields": {"departement": "92", "stop_lat": 48.818520317166126, "code_postal": "92049", "stop_lon": 2.32001067322558, "coord": [48.818520317166126, 2.32001067322558], "stop_id": 5138206, "stop_desc": "RUE GABRIEL PERI - 92049", "stop_name": "MAIRIE DE MONTROUGE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.32001067322558, 48.818520317166126]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d808d4c8a671276306aa9ab1aa2cd9b4f439df46", "fields": {"departement": "92", "stop_lat": 48.81201108232607, "code_postal": "92049", "stop_lon": 2.308949204555559, "coord": [48.81201108232607, 2.308949204555559], "stop_id": 5138211, "stop_desc": "146 RUE MAURICE ARNOUX - 92049", "stop_name": "JULES GUESDE"}, "geometry": {"type": "Point", "coordinates": [2.308949204555559, 48.81201108232607]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bc701610848d1ddcde32bf9df434172b31a38ce2", "fields": {"departement": "92", "stop_lat": 48.893276528327654, "code_postal": "92050", "stop_lon": 2.212338071568413, "coord": [48.893276528327654, 2.212338071568413], "stop_id": 5150174, "stop_desc": "4 AVENUE PABLO PICASSO - 92050", "stop_name": "JOLIOT-CURIE - COURBEVOIE"}, "geometry": {"type": "Point", "coordinates": [2.212338071568413, 48.893276528327654]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "881e7f5db42a1ce6cf4e5a034799468ceef7bc5f", "fields": {"departement": "92", "stop_lat": 48.893923902710036, "code_postal": "92050", "stop_lon": 2.2126227396461546, "coord": [48.893923902710036, 2.2126227396461546], "stop_id": 5150177, "stop_desc": "FACE 123 AV FREDERIC ET IRENE JOLIOT CURIE - 92050", "stop_name": "JOLIOT-CURIE - COURBEVOIE"}, "geometry": {"type": "Point", "coordinates": [2.2126227396461546, 48.893923902710036]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fe800acf484245deccbda7e22932106cb68589d6", "fields": {"departement": "92", "stop_lat": 48.893923902710036, "code_postal": "92050", "stop_lon": 2.2126227396461546, "coord": [48.893923902710036, 2.2126227396461546], "stop_id": 5150181, "stop_desc": "FACE 123 AV FREDERIC ET IRENE JOLIOT CURIE - 92050", "stop_name": "JOLIOT-CURIE - COURBEVOIE"}, "geometry": {"type": "Point", "coordinates": [2.2126227396461546, 48.893923902710036]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7e63622fe422f874c6a71d36fbb2b680dbda6852", "fields": {"departement": "93", "stop_lat": 48.91524229230028, "code_postal": "93066", "stop_lon": 2.354217267819174, "coord": [48.91524229230028, 2.354217267819174], "stop_id": 5150187, "stop_desc": "99 RUE DU LANDY - 93066", "stop_name": "LANDY - FRUITIERS"}, "geometry": {"type": "Point", "coordinates": [2.354217267819174, 48.91524229230028]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2d2f6b4c1ac566c1fe55436075bd5a7bb62e7aa9", "fields": {"departement": "93", "stop_lat": 48.91538525739473, "code_postal": "93066", "stop_lon": 2.3592761060856327, "coord": [48.91538525739473, 2.3592761060856327], "stop_id": 5150189, "stop_desc": "61 RUE DU LANDY - 93066", "stop_name": "LANDY - PONT DE SOISSONS"}, "geometry": {"type": "Point", "coordinates": [2.3592761060856327, 48.91538525739473]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b95124679d3893a7a72be86e14c27bcefdc727d3", "fields": {"departement": "93", "stop_lat": 48.923562300968015, "code_postal": "93066", "stop_lon": 2.3645846518052496, "coord": [48.923562300968015, 2.3645846518052496], "stop_id": 5150195, "stop_desc": "4 RUE JESSE OWEN - 93066", "stop_name": "JESSE OWENS"}, "geometry": {"type": "Point", "coordinates": [2.3645846518052496, 48.923562300968015]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2a631c630296d737a907c60ef1ab9b32e60e81d6", "fields": {"departement": "93", "stop_lat": 48.92619611781577, "code_postal": "93066", "stop_lon": 2.3615992314179888, "coord": [48.92619611781577, 2.3615992314179888], "stop_id": 5150197, "stop_desc": "RUE HENRI DELAUNAY - 93066", "stop_name": "DELAUNAY - RIMET"}, "geometry": {"type": "Point", "coordinates": [2.3615992314179888, 48.92619611781577]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1b2628d58252a35ceea681190c490909cc16fb18", "fields": {"departement": "93", "stop_lat": 48.9259451264698, "code_postal": "93066", "stop_lon": 2.3582168059200574, "coord": [48.9259451264698, 2.3582168059200574], "stop_id": 5150200, "stop_desc": "RUE HENRI DELAUNAY - 93066", "stop_name": "PONT DU CANAL"}, "geometry": {"type": "Point", "coordinates": [2.3582168059200574, 48.9259451264698]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8edba1c04d895621d77b2419ee4e1465e395e02e", "fields": {"departement": "93", "stop_lat": 48.93129126341453, "code_postal": "93066", "stop_lon": 2.3636066691817836, "coord": [48.93129126341453, 2.3636066691817836], "stop_id": 5150205, "stop_desc": "FACE 144 AVENUE PAUL VAILLANT COUTURIER - 93066", "stop_name": "PARC DE LA LEGION D'HONNEUR"}, "geometry": {"type": "Point", "coordinates": [2.3636066691817836, 48.93129126341453]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "46259ae778c2361884726512257a260344c3400e", "fields": {"departement": "93", "stop_lat": 48.93343768953375, "code_postal": "93066", "stop_lon": 2.3694594546698897, "coord": [48.93343768953375, 2.3694594546698897], "stop_id": 5150206, "stop_desc": "14 AVENUE IRENE ET FREDERIC JOLIOT CURIE - 93066", "stop_name": "JOLIOT CURIE"}, "geometry": {"type": "Point", "coordinates": [2.3694594546698897, 48.93343768953375]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c799c9379f8483d6527ff0b55c49ffeecae5526b", "fields": {"departement": "93", "stop_lat": 48.9455914628228, "code_postal": "93066", "stop_lon": 2.350652611698067, "coord": [48.9455914628228, 2.350652611698067], "stop_id": 5150217, "stop_desc": "30 AVENUE DU COLONEL FABIEN - 93066", "stop_name": "STADE AUGUSTE DELAUNE"}, "geometry": {"type": "Point", "coordinates": [2.350652611698067, 48.9455914628228]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "64944c9499cb80a05d01227441c54b7cf375ff52", "fields": {"departement": "93", "stop_lat": 48.948467840514276, "code_postal": "93079", "stop_lon": 2.342998920786016, "coord": [48.948467840514276, 2.342998920786016], "stop_id": 5150224, "stop_desc": "ROUTE DE SAINT-LEU - 93079", "stop_name": "CESAR"}, "geometry": {"type": "Point", "coordinates": [2.342998920786016, 48.948467840514276]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8cc7396808caf629ca6a3a3055d6876f89a1ab4f", "fields": {"departement": "95", "stop_lat": 48.96511909024717, "code_postal": "95197", "stop_lon": 2.320180209863594, "coord": [48.96511909024717, 2.320180209863594], "stop_id": 5150232, "stop_desc": "118 ROUTE DE SAINT-DENIS - 95197", "stop_name": "MARECHAL FOCH"}, "geometry": {"type": "Point", "coordinates": [2.320180209863594, 48.96511909024717]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3a2cbc9d8e986de7dd8af56afca55f5060d719dc", "fields": {"departement": "95", "stop_lat": 48.965002240585115, "code_postal": "95197", "stop_lon": 2.3200164648643242, "coord": [48.965002240585115, 2.3200164648643242], "stop_id": 5150233, "stop_desc": "93 ROUTE DE SAINT-DENIS - 95197", "stop_name": "MARECHAL FOCH"}, "geometry": {"type": "Point", "coordinates": [2.3200164648643242, 48.965002240585115]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6b3a436c7b985675ec1612e67bf6906e88514cb0", "fields": {"departement": "95", "stop_lat": 48.96669142273999, "code_postal": "95197", "stop_lon": 2.318036786343671, "coord": [48.96669142273999, 2.318036786343671], "stop_id": 5150234, "stop_desc": "FACE 13 AVENUE DE LA DIVISION LECLERC - 95197", "stop_name": "PLACE DE LA BARRE"}, "geometry": {"type": "Point", "coordinates": [2.318036786343671, 48.96669142273999]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c5c6d6ca81b47ae7e9325827dba946709ad89c4f", "fields": {"departement": "95", "stop_lat": 48.973656750805446, "code_postal": "95197", "stop_lon": 2.323235196873776, "coord": [48.973656750805446, 2.323235196873776], "stop_id": 5150239, "stop_desc": "8 RUE DES MORTEFONTAINES - 95197", "stop_name": "LA POSTE"}, "geometry": {"type": "Point", "coordinates": [2.323235196873776, 48.973656750805446]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e1d98f2804c2031b68857f671f587d7a866daa40", "fields": {"departement": "93", "stop_lat": 48.95816434930164, "code_postal": "93031", "stop_lon": 2.328875532262177, "coord": [48.95816434930164, 2.328875532262177], "stop_id": 5150242, "stop_desc": "ROUTE DE SAINT-LEU - 93031", "stop_name": "GARE D'EPINAY-VILLETANEUSE"}, "geometry": {"type": "Point", "coordinates": [2.328875532262177, 48.95816434930164]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4d00d3cf11a3b48e881441fa49d2fea740ffaad5", "fields": {"departement": "91", "stop_lat": 48.74456528855754, "code_postal": "91645", "stop_lon": 2.2662294400974075, "coord": [48.74456528855754, 2.2662294400974075], "stop_id": 5150246, "stop_desc": "27 AVENUE DU GENERAL LECLERC - 91645", "stop_name": "FOCH - LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.2662294400974075, 48.74456528855754]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4cdbdff1807c212783cf2f15352bded28d1e5633", "fields": {"departement": "92", "stop_lat": 48.78691889542465, "code_postal": "92014", "stop_lon": 2.3184297505046834, "coord": [48.78691889542465, 2.3184297505046834], "stop_id": 5150247, "stop_desc": "9 AVENUE DU GENERAL LECLERC - 92014", "stop_name": "PLACE DE LA RESISTANCE - CHARLES DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.3184297505046834, 48.78691889542465]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "775ad612dae3c39148678a05047d4f4eeea25f1f", "fields": {"departement": "93", "stop_lat": 48.96154334180808, "code_postal": "93079", "stop_lon": 2.345538847462394, "coord": [48.96154334180808, 2.345538847462394], "stop_id": 5150258, "stop_desc": "14 RUE ROGER SALENGRO - 93079", "stop_name": "EDOUARD VAILLANT"}, "geometry": {"type": "Point", "coordinates": [2.345538847462394, 48.96154334180808]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e9de873ba582229075f2442049b3459e1549f3d6", "fields": {"departement": "93", "stop_lat": 48.9654256487516, "code_postal": "93079", "stop_lon": 2.3442974335529625, "coord": [48.9654256487516, 2.3442974335529625], "stop_id": 5150263, "stop_desc": "RUE MAURICE GRANDCOING - 93079", "stop_name": "CITE GRANDCOING"}, "geometry": {"type": "Point", "coordinates": [2.3442974335529625, 48.9654256487516]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a920b6820ad72bc06e3d46e8183b5c428a0d3086", "fields": {"departement": "95", "stop_lat": 48.97576896393597, "code_postal": "95197", "stop_lon": 2.3268932183240683, "coord": [48.97576896393597, 2.3268932183240683], "stop_id": 5150274, "stop_desc": "20-22 RUE CHARLES DE GAULLE - 95197", "stop_name": "EGLISE DE DEUIL-LA-BARRE"}, "geometry": {"type": "Point", "coordinates": [2.3268932183240683, 48.97576896393597]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2180f8fb5898adb3db82facea3e3acb8822c2b3c", "fields": {"departement": "95", "stop_lat": 48.969459633562245, "code_postal": "95197", "stop_lon": 2.320260676499444, "coord": [48.969459633562245, 2.320260676499444], "stop_id": 5150278, "stop_desc": "41 RUE DU CHATEAU - 95197", "stop_name": "LE STADE"}, "geometry": {"type": "Point", "coordinates": [2.320260676499444, 48.969459633562245]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7a09a7b127fcdc61bc5fbf1f87f68c7ba8cc4fcf", "fields": {"departement": "95", "stop_lat": 48.96712273357037, "code_postal": "95197", "stop_lon": 2.3177499932101875, "coord": [48.96712273357037, 2.3177499932101875], "stop_id": 5150280, "stop_desc": "3 RUE DU CHATEAU - 95197", "stop_name": "PLACE DE LA BARRE"}, "geometry": {"type": "Point", "coordinates": [2.3177499932101875, 48.96712273357037]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "af6ec89ac747999cec634b408b2700a5aec20f01", "fields": {"departement": "95", "stop_lat": 48.97232399190837, "code_postal": "95210", "stop_lon": 2.3080561344066988, "coord": [48.97232399190837, 2.3080561344066988], "stop_id": 5150284, "stop_desc": "FACE 12 RUE DU DEPART - 95210", "stop_name": "GARE D'ENGHIEN-LES-BAINS"}, "geometry": {"type": "Point", "coordinates": [2.3080561344066988, 48.97232399190837]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9c79a8cf35335edfc70625f44c763ac85d7f7838", "fields": {"departement": "95", "stop_lat": 48.97411736566462, "code_postal": "95555", "stop_lon": 2.294909175916355, "coord": [48.97411736566462, 2.294909175916355], "stop_id": 5150286, "stop_desc": "112 AVENUE DE CEINTURE - 95555", "stop_name": "LYCEE D'ENGHIEN"}, "geometry": {"type": "Point", "coordinates": [2.294909175916355, 48.97411736566462]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "afb459e6a0522217f325a5cbcf550fd293374e54", "fields": {"departement": "91", "stop_lat": 48.7077884725674, "code_postal": "91027", "stop_lon": 2.3826564118763565, "coord": [48.7077884725674, 2.3826564118763565], "stop_id": 4378136, "stop_desc": "RUE JEAN-BAPTISTE DE LA SALLE - 91027", "stop_name": "ALBERT SARRAUT"}, "geometry": {"type": "Point", "coordinates": [2.3826564118763565, 48.7077884725674]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2f3f1dd90ab0e570b83b24655f0a073c84385c31", "fields": {"departement": "91", "stop_lat": 48.70988833841886, "code_postal": "91027", "stop_lon": 2.390902328356646, "coord": [48.70988833841886, 2.390902328356646], "stop_id": 4378139, "stop_desc": "RUE GENEVIEVE ANTHONIOZ-DE GAULLE - 91027", "stop_name": "SAINT-CHARLES"}, "geometry": {"type": "Point", "coordinates": [2.390902328356646, 48.70988833841886]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "82100a6d3a17894310e77ba8671dfa26561efe44", "fields": {"departement": "91", "stop_lat": 48.70952445478713, "code_postal": "91027", "stop_lon": 2.399784314364405, "coord": [48.70952445478713, 2.399784314364405], "stop_id": 4378155, "stop_desc": "93 R EDOUARD VAILLANT - 91027", "stop_name": "PROVENCE"}, "geometry": {"type": "Point", "coordinates": [2.399784314364405, 48.70952445478713]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cce29a8cfbe3fc829e9db304b096e054c6b67ab8", "fields": {"departement": "91", "stop_lat": 48.707943662135136, "code_postal": "91027", "stop_lon": 2.397500775836439, "coord": [48.707943662135136, 2.397500775836439], "stop_id": 4378157, "stop_desc": "49 R EDOUARD VAILLANT - 91027", "stop_name": "EDOUARD VAILLANT"}, "geometry": {"type": "Point", "coordinates": [2.397500775836439, 48.707943662135136]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5efb68c3200cc68301ce35dc6bd8b466b1af384f", "fields": {"departement": "91", "stop_lat": 48.707835758959824, "code_postal": "91027", "stop_lon": 2.3975821377708644, "coord": [48.707835758959824, 2.3975821377708644], "stop_id": 4378158, "stop_desc": "R EDOUARD VAILLANT - 91027", "stop_name": "EDOUARD VAILLANT"}, "geometry": {"type": "Point", "coordinates": [2.3975821377708644, 48.707835758959824]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "878175fb6f48a7e8eb1519af455ee647a2592a01", "fields": {"departement": "91", "stop_lat": 48.70194421424275, "code_postal": "91027", "stop_lon": 2.3869696279314057, "coord": [48.70194421424275, 2.3869696279314057], "stop_id": 4378163, "stop_desc": "FACE 94BIS AVENUE DU 18 AVRIL - 91027", "stop_name": "CITE MOZART"}, "geometry": {"type": "Point", "coordinates": [2.3869696279314057, 48.70194421424275]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dc46e29799ad604ba2d431e45d8b845d8a95a673", "fields": {"departement": "91", "stop_lat": 48.699779392992774, "code_postal": "91027", "stop_lon": 2.383464165035811, "coord": [48.699779392992774, 2.383464165035811], "stop_id": 4378165, "stop_desc": "15 AVENUE DU 18 AVRIL - 91027", "stop_name": "DOCTEUR GUERIN"}, "geometry": {"type": "Point", "coordinates": [2.383464165035811, 48.699779392992774]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e50496c8405b644114cf3a367c60538a08c44f5b", "fields": {"departement": "91", "stop_lat": 48.6905128741131, "code_postal": "91326", "stop_lon": 2.38162309074947, "coord": [48.6905128741131, 2.38162309074947], "stop_id": 4378170, "stop_desc": "R DES GAULOIS - 91326", "stop_name": "JUVISY RER"}, "geometry": {"type": "Point", "coordinates": [2.38162309074947, 48.6905128741131]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a8cabe787aea7ebc5fb8adc8f4f9094b08fce13a", "fields": {"departement": "91", "stop_lat": 48.70847215909083, "code_postal": "91027", "stop_lon": 2.3811630638879526, "coord": [48.70847215909083, 2.3811630638879526], "stop_id": 4378177, "stop_desc": "44 AVENUE MARCEL SEMBAT - 91027", "stop_name": "SEMBAT"}, "geometry": {"type": "Point", "coordinates": [2.3811630638879526, 48.70847215909083]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b3d3ee47bd8858c6a1edabe8ed7766907402cedf", "fields": {"departement": "91", "stop_lat": 48.714776333210814, "code_postal": "91027", "stop_lon": 2.3712120754283355, "coord": [48.714776333210814, 2.3712120754283355], "stop_id": 4378180, "stop_desc": "PISTE GARE ROUTIERE - 91027", "stop_name": "PORTE DE L'ESSONNE"}, "geometry": {"type": "Point", "coordinates": [2.3712120754283355, 48.714776333210814]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9cbf0e62523936477ff53f4a9028fa6c2614c0ef", "fields": {"departement": "91", "stop_lat": 48.70619232311715, "code_postal": "91027", "stop_lon": 2.371287955840267, "coord": [48.70619232311715, 2.371287955840267], "stop_id": 4378183, "stop_desc": "FACE 103 BIS AV FRANCOIS MITTERRAND - 91027", "stop_name": "BELLE ETOILE"}, "geometry": {"type": "Point", "coordinates": [2.371287955840267, 48.70619232311715]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f72dcfde2923b2d83c438c6911e7498c885fea8b", "fields": {"departement": "91", "stop_lat": 48.708459854175295, "code_postal": "91027", "stop_lon": 2.3893661666025343, "coord": [48.708459854175295, 2.3893661666025343], "stop_id": 4378190, "stop_desc": "6 PL DE L'EGLISE - 91027", "stop_name": "PLACE DE L'EGLISE"}, "geometry": {"type": "Point", "coordinates": [2.3893661666025343, 48.708459854175295]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1a3fb7b2d1098cd9a2b4cb3a4effaa3e142add51", "fields": {"departement": "91", "stop_lat": 48.711650315597296, "code_postal": "91027", "stop_lon": 2.3903744420213293, "coord": [48.711650315597296, 2.3903744420213293], "stop_id": 4378193, "stop_desc": "AV HENRI DUNANT - 91027", "stop_name": "CLOS NOLLET"}, "geometry": {"type": "Point", "coordinates": [2.3903744420213293, 48.711650315597296]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "11e390e7525bb571f2cb7c4eaf43c55be3b40599", "fields": {"departement": "91", "stop_lat": 48.72335107539913, "code_postal": "91027", "stop_lon": 2.4112260977687714, "coord": [48.72335107539913, 2.4112260977687714], "stop_id": 4378199, "stop_desc": "AV DE L'EUROPE - 91027", "stop_name": "CHATEAU D'ABLON"}, "geometry": {"type": "Point", "coordinates": [2.4112260977687714, 48.72335107539913]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c817c0af62b7aa425a7cd7dc428a266932f86331", "fields": {"departement": "91", "stop_lat": 48.719873795954214, "code_postal": "91027", "stop_lon": 2.409224259978109, "coord": [48.719873795954214, 2.409224259978109], "stop_id": 4378201, "stop_desc": "AV DE L'EUROPE - 91027", "stop_name": "RUE D'ABLON"}, "geometry": {"type": "Point", "coordinates": [2.409224259978109, 48.719873795954214]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "36eb50ae5fe56e24896023b0da0bd6ac9fa7886f", "fields": {"departement": "91", "stop_lat": 48.71294720675443, "code_postal": "91027", "stop_lon": 2.4032112159887076, "coord": [48.71294720675443, 2.4032112159887076], "stop_id": 4378209, "stop_desc": "0 PL DE ROTHENBURG-OB-DER-TAUBER - 91027", "stop_name": "ATHIS-MONS RER"}, "geometry": {"type": "Point", "coordinates": [2.4032112159887076, 48.71294720675443]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "975f989ad9f848a360dcc28a758dcfbfd76588b9", "fields": {"departement": "91", "stop_lat": 48.70437836972327, "code_postal": "91027", "stop_lon": 2.3909509669122206, "coord": [48.70437836972327, 2.3909509669122206], "stop_id": 4378216, "stop_desc": "143-145-147 AVENUE DU 18 AVRIL - 91027", "stop_name": "COUBERTIN"}, "geometry": {"type": "Point", "coordinates": [2.3909509669122206, 48.70437836972327]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ae94ca5551ab6ee7089c6725175f3264d16b63c5", "fields": {"departement": "91", "stop_lat": 48.70476451673544, "code_postal": "91027", "stop_lon": 2.3917390257535804, "coord": [48.70476451673544, 2.3917390257535804], "stop_id": 4378217, "stop_desc": "140-142 AVENUE DU 18 AVRIL - 91027", "stop_name": "COUBERTIN"}, "geometry": {"type": "Point", "coordinates": [2.3917390257535804, 48.70476451673544]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "78063d2491e2a754e878e9b07eea73c0cd969a72", "fields": {"departement": "91", "stop_lat": 48.70194421424275, "code_postal": "91027", "stop_lon": 2.3869696279314057, "coord": [48.70194421424275, 2.3869696279314057], "stop_id": 4378218, "stop_desc": "FACE 94BIS AVENUE DU 18 AVRIL - 91027", "stop_name": "CITE MOZART"}, "geometry": {"type": "Point", "coordinates": [2.3869696279314057, 48.70194421424275]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f4de32badc3d15e4ea6507fee7fc424c85501054", "fields": {"departement": "91", "stop_lat": 48.69204209970009, "code_postal": "91326", "stop_lon": 2.3783930622157, "coord": [48.69204209970009, 2.3783930622157], "stop_id": 4378224, "stop_desc": "FACE 8 AVENUE DU GENERAL DE GAULLE - 91326", "stop_name": "HOTEL DE POLICE"}, "geometry": {"type": "Point", "coordinates": [2.3783930622157, 48.69204209970009]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "46c22e9bb3c59a52e49ca3f0b54869847dcc049c", "fields": {"departement": "91", "stop_lat": 48.6931833463181, "code_postal": "91326", "stop_lon": 2.379262913371422, "coord": [48.6931833463181, 2.379262913371422], "stop_id": 4378227, "stop_desc": "24 RUE VOLTAIRE - 91326", "stop_name": "VOLTAIRE"}, "geometry": {"type": "Point", "coordinates": [2.379262913371422, 48.6931833463181]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "77f2d8c0d2ad6d4ebfad363aecb213a8dad72934", "fields": {"departement": "91", "stop_lat": 48.70942281040112, "code_postal": "91027", "stop_lon": 2.386582910577231, "coord": [48.70942281040112, 2.386582910577231], "stop_id": 4378229, "stop_desc": "AVENUE MARCEL SEMBAT - 91027", "stop_name": "PLACE HENRI DEUDON"}, "geometry": {"type": "Point", "coordinates": [2.386582910577231, 48.70942281040112]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "26b810d5a6fe15353b289b2976de885f739793dd", "fields": {"departement": "92", "stop_lat": 48.770703432969064, "code_postal": "92002", "stop_lon": 2.3123167134725082, "coord": [48.770703432969064, 2.3123167134725082], "stop_id": 4378267, "stop_desc": "26 AV RAYMOND ARON - 92002", "stop_name": "LA FONTAINE"}, "geometry": {"type": "Point", "coordinates": [2.3123167134725082, 48.770703432969064]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "78552db80a340013c551bbb2f74fd9a98975749f", "fields": {"departement": "92", "stop_lat": 48.76304499124328, "code_postal": "92002", "stop_lon": 2.309601273025239, "coord": [48.76304499124328, 2.309601273025239], "stop_id": 4378271, "stop_desc": "2 AVENUE DU DOCTEUR TENINE - 92002", "stop_name": "BERNY-RAYMOND ARON"}, "geometry": {"type": "Point", "coordinates": [2.309601273025239, 48.76304499124328]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3fd6299491bcd9ab626646169729dd2a4e0eb75c", "fields": {"departement": "92", "stop_lat": 48.76371911769389, "code_postal": "92002", "stop_lon": 2.30968248881964, "coord": [48.76371911769389, 2.30968248881964], "stop_id": 4378272, "stop_desc": "1 AVENUE DU DOCTEUR TENINE - 92002", "stop_name": "BERNY-RAYMOND ARON"}, "geometry": {"type": "Point", "coordinates": [2.30968248881964, 48.76371911769389]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "917bdcb994c7a1ea034c9807380a08788d2ede1c", "fields": {"departement": "94", "stop_lat": 48.75360165356562, "code_postal": "94034", "stop_lon": 2.339538318962512, "coord": [48.75360165356562, 2.339538318962512], "stop_id": 4378281, "stop_desc": "AVENUE DU PARC MEDICIS - 94034", "stop_name": "PARC MEDICIS"}, "geometry": {"type": "Point", "coordinates": [2.339538318962512, 48.75360165356562]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9d34d254a0d5d2011c65a0935055e734f14e67ca", "fields": {"departement": "94", "stop_lat": 48.75869772890926, "code_postal": "94021", "stop_lon": 2.34462286368641, "coord": [48.75869772890926, 2.34462286368641], "stop_id": 4378283, "stop_desc": "BOULEVARD CIRCULAIRE OUEST - 94021", "stop_name": "LE DELTA"}, "geometry": {"type": "Point", "coordinates": [2.34462286368641, 48.75869772890926]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f9de4bb69f6dd2bd30316831970c4bf8fc72e9d9", "fields": {"departement": "94", "stop_lat": 48.759647325903956, "code_postal": "94021", "stop_lon": 2.3655724136005585, "coord": [48.759647325903956, 2.3655724136005585], "stop_id": 4378290, "stop_desc": "RUE DE THIAIS - 94021", "stop_name": "PORTE DE THIAIS"}, "geometry": {"type": "Point", "coordinates": [2.3655724136005585, 48.759647325903956]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c9189d9289a1344897e433f28a9f229c7c29e247", "fields": {"departement": "94", "stop_lat": 48.75274176572396, "code_postal": "94073", "stop_lon": 2.3751244475256206, "coord": [48.75274176572396, 2.3751244475256206], "stop_id": 4378296, "stop_desc": "FACE 5 RUE DES ALOUETTES - 94073", "stop_name": "ALOUETTES"}, "geometry": {"type": "Point", "coordinates": [2.3751244475256206, 48.75274176572396]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8a5559015640c6b2f706062eda83e0fbcbea394d", "fields": {"departement": "94", "stop_lat": 48.75829818885003, "code_postal": "94073", "stop_lon": 2.393440070015161, "coord": [48.75829818885003, 2.393440070015161], "stop_id": 4378299, "stop_desc": "FACE 134 AVENUE DE VERSAILLES - 94073", "stop_name": "VICTOR BASCH"}, "geometry": {"type": "Point", "coordinates": [2.393440070015161, 48.75829818885003]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8ef9d8f3c865d75629f1df6fba975c9b6814995b", "fields": {"departement": "94", "stop_lat": 48.77351349029003, "code_postal": "94028", "stop_lon": 2.436916768869354, "coord": [48.77351349029003, 2.436916768869354], "stop_id": 4378314, "stop_desc": "0 AV DE LA POMPADOUR - 94028", "stop_name": "POMPADOUR"}, "geometry": {"type": "Point", "coordinates": [2.436916768869354, 48.77351349029003]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4ffebd407b10b6eba619e30c43e6efa93da79f96", "fields": {"departement": "94", "stop_lat": 48.773810015168586, "code_postal": "94028", "stop_lon": 2.4370125265769786, "coord": [48.773810015168586, 2.4370125265769786], "stop_id": 4378315, "stop_desc": "0 AV DE LA POMPADOUR - 94028", "stop_name": "POMPADOUR"}, "geometry": {"type": "Point", "coordinates": [2.4370125265769786, 48.773810015168586]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7329ef5c4fbaa862d28bed520a2e52e88e40582f", "fields": {"departement": "94", "stop_lat": 48.78142438618897, "code_postal": "94028", "stop_lon": 2.4455410009269434, "coord": [48.78142438618897, 2.4455410009269434], "stop_id": 4378316, "stop_desc": "ROUTE DE CHOISY - 94028", "stop_name": "BASE DE LOISIRS DE CRETEIL"}, "geometry": {"type": "Point", "coordinates": [2.4455410009269434, 48.78142438618897]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d0c265bed0e66802b28908648e1b0f247b485669", "fields": {"departement": "94", "stop_lat": 48.783436078303545, "code_postal": "94028", "stop_lon": 2.4472997147150757, "coord": [48.783436078303545, 2.4472997147150757], "stop_id": 4378318, "stop_desc": "ROUTE DE CHOISY - 94028", "stop_name": "PREFECTURE DU VAL-DE-MARNE"}, "geometry": {"type": "Point", "coordinates": [2.4472997147150757, 48.783436078303545]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4f6ee936722f76e13d9b25ffe7deb16d9c924264", "fields": {"departement": "94", "stop_lat": 48.793919787708134, "code_postal": "94028", "stop_lon": 2.461701016520131, "coord": [48.793919787708134, 2.461701016520131], "stop_id": 4378324, "stop_desc": "2-4 AVENUE DE VERDUN - 94028", "stop_name": "EGLISE DE CRETEIL"}, "geometry": {"type": "Point", "coordinates": [2.461701016520131, 48.793919787708134]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bea2bb1d4f84a2a1321b821eaa7af508f11ccf0c", "fields": {"departement": "94", "stop_lat": 48.79788020669161, "code_postal": "94028", "stop_lon": 2.464757964645731, "coord": [48.79788020669161, 2.464757964645731], "stop_id": 4378326, "stop_desc": "AVENUE DE VERDUN - 94028", "stop_name": "HOPITAL INTERCOMMUNAL"}, "geometry": {"type": "Point", "coordinates": [2.464757964645731, 48.79788020669161]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7be7617a98c43008330eeb821d4e7e9ddb328cb7", "fields": {"departement": "94", "stop_lat": 48.80614050910976, "code_postal": "94068", "stop_lon": 2.472466139678621, "coord": [48.80614050910976, 2.472466139678621], "stop_id": 4378330, "stop_desc": "R LEROUX - 94068", "stop_name": "SAINT-MAUR - CRETEIL RER"}, "geometry": {"type": "Point", "coordinates": [2.472466139678621, 48.80614050910976]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ee706d0d4aec6ede6ba5601ce44c2106457bb13d", "fields": {"departement": "92", "stop_lat": 48.772240461974114, "code_postal": "92014", "stop_lon": 2.312669523337748, "coord": [48.772240461974114, 2.312669523337748], "stop_id": 4378333, "stop_desc": "177-175 AVENUE DE GENERAL LECLERC - 92014", "stop_name": "LES COTTAGES"}, "geometry": {"type": "Point", "coordinates": [2.312669523337748, 48.772240461974114]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "279ae618cb8f6fd9a4600462b45112aa8a9bc010", "fields": {"departement": "94", "stop_lat": 48.80503701410409, "code_postal": "94076", "stop_lon": 2.363597005894514, "coord": [48.80503701410409, 2.363597005894514], "stop_id": 4378357, "stop_desc": "FACE 41 AVENUE DE PARIS - 94076", "stop_name": "DAUPHIN - ANATOLE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.363597005894514, 48.80503701410409]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4280d93e24950288c16e91e83b6edf2f1c916ec2", "fields": {"departement": "94", "stop_lat": 48.79822371158427, "code_postal": "94076", "stop_lon": 2.3658791536218233, "coord": [48.79822371158427, 2.3658791536218233], "stop_id": 4378359, "stop_desc": "128 AVENUE DE PARIS - 94076", "stop_name": "DISPENSAIRE DANIELLE CASANOVA"}, "geometry": {"type": "Point", "coordinates": [2.3658791536218233, 48.79822371158427]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2d455be7201300d40ccc34b0355643386d8f9cbc", "fields": {"departement": "94", "stop_lat": 48.79306454434045, "code_postal": "94076", "stop_lon": 2.366406843667121, "coord": [48.79306454434045, 2.366406843667121], "stop_id": 4378361, "stop_desc": "FACE 75 RUE JEAN JAURES - 94076", "stop_name": "GUYNEMER - PLACE DES FUSILLES"}, "geometry": {"type": "Point", "coordinates": [2.366406843667121, 48.79306454434045]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d759b01744fd22a527a00557e82afd76027f1162", "fields": {"departement": "94", "stop_lat": 48.78463354464198, "code_postal": "94076", "stop_lon": 2.3677214303870877, "coord": [48.78463354464198, 2.3677214303870877], "stop_id": 4378364, "stop_desc": "AVENUE DE LA DIVISION LECLERC - 94076", "stop_name": "VILLEJUIF DIVISION LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.3677214303870877, 48.78463354464198]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f84268b707a417e62ec87445abcabe327410b2c9", "fields": {"departement": "94", "stop_lat": 48.7841022853461, "code_postal": "94076", "stop_lon": 2.371298205457802, "coord": [48.7841022853461, 2.371298205457802], "stop_id": 4378365, "stop_desc": "RUE JEAN LURCAT - 94076", "stop_name": "LURCAT - LUISETTE"}, "geometry": {"type": "Point", "coordinates": [2.371298205457802, 48.7841022853461]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "60fcba7d9803caef40c2fc35b5e5b4f4244d0df0", "fields": {"departement": "94", "stop_lat": 48.77512254541031, "code_postal": "94081", "stop_lon": 2.3737944884119186, "coord": [48.77512254541031, 2.3737944884119186], "stop_id": 4378369, "stop_desc": "RUE PAUL ARMANGOT - 94081", "stop_name": "CAMILLE RISCH"}, "geometry": {"type": "Point", "coordinates": [2.3737944884119186, 48.77512254541031]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c3abd92e1525f0825626d6096a20bfcd77983d57", "fields": {"departement": "94", "stop_lat": 48.77256916423477, "code_postal": "94081", "stop_lon": 2.376253943278025, "coord": [48.77256916423477, 2.376253943278025], "stop_id": 4378370, "stop_desc": "RUE EUGENE DERRIEN - 94081", "stop_name": "CITE DU MOULIN VERT"}, "geometry": {"type": "Point", "coordinates": [2.376253943278025, 48.77256916423477]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e79be51aa540c432bd4ec9e9aa9325d9a616984b", "fields": {"departement": "94", "stop_lat": 48.769403366897784, "code_postal": "94073", "stop_lon": 2.3819488115811853, "coord": [48.769403366897784, 2.3819488115811853], "stop_id": 4378371, "stop_desc": "RUE DE LA SAUSSAIE - 94073", "stop_name": "PISCINE"}, "geometry": {"type": "Point", "coordinates": [2.3819488115811853, 48.769403366897784]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "73fcaa9d288ef5b6c8c1ee152e4e189fbfefb9c3", "fields": {"departement": "94", "stop_lat": 48.76352710165557, "code_postal": "94073", "stop_lon": 2.397864329095409, "coord": [48.76352710165557, 2.397864329095409], "stop_id": 4378375, "stop_desc": "FACE 36 AVENUE RENE PANHARD - 94073", "stop_name": "PANHARD - HUGO"}, "geometry": {"type": "Point", "coordinates": [2.397864329095409, 48.76352710165557]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7403c442ac1f0448c4dba11fd1ea8888f68ea1cc", "fields": {"departement": "94", "stop_lat": 48.76192301609, "code_postal": "94022", "stop_lon": 2.4056117723222226, "coord": [48.76192301609, 2.4056117723222226], "stop_id": 4378377, "stop_desc": "7 AV GENERAL LECLERC - 94022", "stop_name": "GENERAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.4056117723222226, 48.76192301609]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5ec0b089ad149e751f792515fd1a3fa2c26688ce", "fields": {"departement": "94", "stop_lat": 48.754764659842415, "code_postal": "94022", "stop_lon": 2.411923295240397, "coord": [48.754764659842415, 2.411923295240397], "stop_id": 4378383, "stop_desc": "AVENUE DE NEWBURN - 94022", "stop_name": "CHOISY SUD"}, "geometry": {"type": "Point", "coordinates": [2.411923295240397, 48.754764659842415]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ad97423766c389bdbd297490f94abccf6aba3958", "fields": {"departement": "94", "stop_lat": 48.76200296778939, "code_postal": "94022", "stop_lon": 2.4072297193798553, "coord": [48.76200296778939, 2.4072297193798553], "stop_id": 4378388, "stop_desc": "FACE 7 AVENUE GENERAL LECLERC - 94022", "stop_name": "GENERAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.4072297193798553, 48.76200296778939]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "72713a6f6ada6748ea51e5d1e8c9ae59555e43bf", "fields": {"departement": "94", "stop_lat": 48.76614646028461, "code_postal": "94073", "stop_lon": 2.3898319168562305, "coord": [48.76614646028461, 2.3898319168562305], "stop_id": 4378392, "stop_desc": "20 AVENUE LEON MARCHAND - 94073", "stop_name": "PERREUX"}, "geometry": {"type": "Point", "coordinates": [2.3898319168562305, 48.76614646028461]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3c0b360ac012f10e7ed2f54e14d8db148d362840", "fields": {"departement": "94", "stop_lat": 48.772829655650504, "code_postal": "94081", "stop_lon": 2.3767436718610018, "coord": [48.772829655650504, 2.3767436718610018], "stop_id": 4378395, "stop_desc": "RUE EUGENE DERRIEN - 94081", "stop_name": "CITE DU MOULIN VERT"}, "geometry": {"type": "Point", "coordinates": [2.3767436718610018, 48.772829655650504]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "16685ba8887c4bb2c0dc105c21564c5829b4797f", "fields": {"departement": "94", "stop_lat": 48.77769219027568, "code_postal": "94081", "stop_lon": 2.3766929708744233, "coord": [48.77769219027568, 2.3766929708744233], "stop_id": 4378397, "stop_desc": "FACE 115 RUE JULIAN GRIMAU - 94081", "stop_name": "PAUL ARMANGOT"}, "geometry": {"type": "Point", "coordinates": [2.3766929708744233, 48.77769219027568]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5ecf0030093b3c47b61f763e11969f5ac26d2bf9", "fields": {"departement": "94", "stop_lat": 48.78218760941786, "code_postal": "94081", "stop_lon": 2.372126586384184, "coord": [48.78218760941786, 2.372126586384184], "stop_id": 4378399, "stop_desc": "234 RUE JULIAN GRIMAU - 94081", "stop_name": "EDOUARD TREMBLAY"}, "geometry": {"type": "Point", "coordinates": [2.372126586384184, 48.78218760941786]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ff4213759ab5ab9278811144276d29e29382632c", "fields": {"departement": "94", "stop_lat": 48.7992481272412, "code_postal": "94076", "stop_lon": 2.3666960218389126, "coord": [48.7992481272412, 2.3666960218389126], "stop_id": 4378406, "stop_desc": "9 BOULEVARD MAXIME GORKI - 94076", "stop_name": "DISPENSAIRE DANIELLE CASANOVA"}, "geometry": {"type": "Point", "coordinates": [2.3666960218389126, 48.7992481272412]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c15b97e4dd4dd8af9b3d26154e9de7f29faf2955", "fields": {"departement": "94", "stop_lat": 48.810501863902964, "code_postal": "94043", "stop_lon": 2.362320626590704, "coord": [48.810501863902964, 2.362320626590704], "stop_id": 4378409, "stop_desc": "75 AVENUE DE FONTAINEBLEAU - 94043", "stop_name": "LE KREMLIN-BICETRE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.362320626590704, 48.810501863902964]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eb3660f7d5efdb6fefa4491349b1e76cca2dc093", "fields": {"departement": "94", "stop_lat": 48.814771316142455, "code_postal": "94043", "stop_lon": 2.361002603265579, "coord": [48.814771316142455, 2.361002603265579], "stop_id": 4378411, "stop_desc": "17 AVENUE DE FONTAINEBLEAU - 94043", "stop_name": "ROGER SALENGRO - FONTAINEBLEAU"}, "geometry": {"type": "Point", "coordinates": [2.361002603265579, 48.814771316142455]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e0b56f380465da0e9e1a6cb3e6f891bbbb9e1190", "fields": {"departement": "94", "stop_lat": 48.77019074739032, "code_postal": "94021", "stop_lon": 2.363878479826917, "coord": [48.77019074739032, 2.363878479826917], "stop_id": 4390972, "stop_desc": "112 AVENUE DU PRESIDENT ROOSEVELT - 94021", "stop_name": "JACQUES BREL"}, "geometry": {"type": "Point", "coordinates": [2.363878479826917, 48.77019074739032]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "81360238e60dca8acbc8e5bbb5b0b41c8e7e6421", "fields": {"departement": "91", "stop_lat": 48.69289383685861, "code_postal": "91589", "stop_lon": 2.3459576890824585, "coord": [48.69289383685861, 2.3459576890824585], "stop_id": 4394963, "stop_desc": "141 AVENUE GABRIEL PERI - 91589", "stop_name": "CITE DES TILLEULS"}, "geometry": {"type": "Point", "coordinates": [2.3459576890824585, 48.69289383685861]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8d4a3431a44c6d68052ff819dd1da63e7ad8ae1a", "fields": {"departement": "91", "stop_lat": 48.68893782592309, "code_postal": "91589", "stop_lon": 2.3551209728143228, "coord": [48.68893782592309, 2.3551209728143228], "stop_id": 4394965, "stop_desc": "33 AVENUE GABRIEL PERI - 91589", "stop_name": "LES BLEUETS"}, "geometry": {"type": "Point", "coordinates": [2.3551209728143228, 48.68893782592309]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "13be25eadfa668152cd24999494327213dce62bd", "fields": {"departement": "91", "stop_lat": 48.71547730219704, "code_postal": "91027", "stop_lon": 2.371660776884332, "coord": [48.71547730219704, 2.371660776884332], "stop_id": 4394973, "stop_desc": "PISTE GARE ROUTIERE - 91027", "stop_name": "PORTE DE L'ESSONNE"}, "geometry": {"type": "Point", "coordinates": [2.371660776884332, 48.71547730219704]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0ef778aadd764b17e22071cd5f73563d3ba863c6", "fields": {"departement": "91", "stop_lat": 48.68106502916987, "code_postal": "91589", "stop_lon": 2.3418834617169133, "coord": [48.68106502916987, 2.3418834617169133], "stop_id": 4394979, "stop_desc": "85 AVENUE ROGER SALENGRO - 91589", "stop_name": "SALENGRO - DUNANT"}, "geometry": {"type": "Point", "coordinates": [2.3418834617169133, 48.68106502916987]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "089e19e7b4fa0b37c513df7d3418ded8b1c81ddb", "fields": {"departement": "91", "stop_lat": 48.68018291128831, "code_postal": "91589", "stop_lon": 2.354941505807853, "coord": [48.68018291128831, 2.354941505807853], "stop_id": 4394982, "stop_desc": "104 AVENUE CARNOT - 91589", "stop_name": "RUE DES ARTISTES"}, "geometry": {"type": "Point", "coordinates": [2.354941505807853, 48.68018291128831]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fc5ac526a2a87823eee514b1e5d29e4fc2a9f329", "fields": {"departement": "91", "stop_lat": 48.69289383685861, "code_postal": "91589", "stop_lon": 2.3459576890824585, "coord": [48.69289383685861, 2.3459576890824585], "stop_id": 4394996, "stop_desc": "141 AVENUE GABRIEL PERI - 91589", "stop_name": "CITE DES TILLEULS"}, "geometry": {"type": "Point", "coordinates": [2.3459576890824585, 48.69289383685861]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cc1be99e75cf7d14fb84a5dceff67bb60bfbe545", "fields": {"departement": "91", "stop_lat": 48.68805660585001, "code_postal": "91589", "stop_lon": 2.3572249480463734, "coord": [48.68805660585001, 2.3572249480463734], "stop_id": 4394999, "stop_desc": "9 AVENUE GABRIEL PERI - 91589", "stop_name": "ARISTIDE BRIAND - CHAMPAGNE"}, "geometry": {"type": "Point", "coordinates": [2.3572249480463734, 48.68805660585001]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7cf179652f6c5bef572e0282187337e275e4b723", "fields": {"departement": "91", "stop_lat": 48.70517122890431, "code_postal": "91479", "stop_lon": 2.3547055550080347, "coord": [48.70517122890431, 2.3547055550080347], "stop_id": 4395002, "stop_desc": "46 AVENUE CHARLES DE GAULLE - 91479", "stop_name": "LES FLEURS"}, "geometry": {"type": "Point", "coordinates": [2.3547055550080347, 48.70517122890431]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "99b681e98a944253fa3547d44b9a0ac605ee01b8", "fields": {"departement": "91", "stop_lat": 48.71290818217382, "code_postal": "91479", "stop_lon": 2.365709954080588, "coord": [48.71290818217382, 2.365709954080588], "stop_id": 4395004, "stop_desc": "61 AVENUE PAUL VAILLANT COUTURIER - 91479", "stop_name": "HENRI BARBUSSE"}, "geometry": {"type": "Point", "coordinates": [2.365709954080588, 48.71290818217382]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3a0401e234cd83005e3774e024cef4a21a3e42b9", "fields": {"departement": "94", "stop_lat": 48.78742885991961, "code_postal": "94076", "stop_lon": 2.367464633032502, "coord": [48.78742885991961, 2.367464633032502], "stop_id": 4423342, "stop_desc": "PISTE GARE ROUTIERE - 94076", "stop_name": "VILLEJUIF - LOUIS ARAGON"}, "geometry": {"type": "Point", "coordinates": [2.367464633032502, 48.78742885991961]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c3ebced852c41a6ee2af1ef8767007f1096c62cf", "fields": {"departement": "94", "stop_lat": 48.77841770877821, "code_postal": "94038", "stop_lon": 2.3410761660577335, "coord": [48.77841770877821, 2.3410761660577335], "stop_id": 4423351, "stop_desc": "RUE HENRI THIRARD - 94038", "stop_name": "HENRI THIRARD-LEON JOUHAUX"}, "geometry": {"type": "Point", "coordinates": [2.3410761660577335, 48.77841770877821]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "195e475ba5c00d5c437681e8405ac21472862233", "fields": {"departement": "94", "stop_lat": 48.76693101878247, "code_postal": "94038", "stop_lon": 2.334073074719126, "coord": [48.76693101878247, 2.334073074719126], "stop_id": 4423355, "stop_desc": "56 BIS RUE DE FRESNES - 94038", "stop_name": "CAMELIAS-DAUVIN"}, "geometry": {"type": "Point", "coordinates": [2.334073074719126, 48.76693101878247]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "be7a03e945360a2ad3846cb37a211248444800f9", "fields": {"departement": "94", "stop_lat": 48.76113351614437, "code_postal": "94034", "stop_lon": 2.329967716107387, "coord": [48.76113351614437, 2.329967716107387], "stop_id": 4423357, "stop_desc": "FACE 50 AVENUE DE LA PAIX - 94034", "stop_name": "GALLIENI"}, "geometry": {"type": "Point", "coordinates": [2.329967716107387, 48.76113351614437]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0863e29a9531d57fad375d0b5d6be47aea621c51", "fields": {"departement": "94", "stop_lat": 48.790610719207514, "code_postal": "94081", "stop_lon": 2.392196366578341, "coord": [48.790610719207514, 2.392196366578341], "stop_id": 4439447, "stop_desc": "10 AVENUE DE L'ABBE ROGER DERRY - 94081", "stop_name": "AUDIGEOIS"}, "geometry": {"type": "Point", "coordinates": [2.392196366578341, 48.790610719207514]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f2beac4c45507be40c65048cbee6db996aabd7b2", "fields": {"departement": "94", "stop_lat": 48.78961431654919, "code_postal": "94081", "stop_lon": 2.3894067925901123, "coord": [48.78961431654919, 2.3894067925901123], "stop_id": 4439448, "stop_desc": "FACE 41 AVENUE DE L'ABBE ROGER DERRY - 94081", "stop_name": "HOTEL DE VILLE DE VITRY - R.DERRY"}, "geometry": {"type": "Point", "coordinates": [2.3894067925901123, 48.78961431654919]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b1de9604a7e32ce62481bfef294f79174d880879", "fields": {"departement": "94", "stop_lat": 48.80869730181348, "code_postal": "94081", "stop_lon": 2.403849952527833, "coord": [48.80869730181348, 2.403849952527833], "stop_id": 4439463, "stop_desc": "88 AV JEAN JAURES - 94081", "stop_name": "RUE DE LA BAIGNADE"}, "geometry": {"type": "Point", "coordinates": [2.403849952527833, 48.80869730181348]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b68889bba88fc75e83ed0ad8186244a43af23e82", "fields": {"departement": "94", "stop_lat": 48.7983005517985, "code_postal": "94081", "stop_lon": 2.399877617408329, "coord": [48.7983005517985, 2.399877617408329], "stop_id": 4439466, "stop_desc": "30 AVENUE PAUL VAILLANT-COUTURIER - 94081", "stop_name": "GABRIEL PERI"}, "geometry": {"type": "Point", "coordinates": [2.399877617408329, 48.7983005517985]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "60ba25de25d84de034e3c3acd6d823875824bf91", "fields": {"departement": "94", "stop_lat": 48.79298344235775, "code_postal": "94081", "stop_lon": 2.392375721426145, "coord": [48.79298344235775, 2.392375721426145], "stop_id": 4439468, "stop_desc": "AVENUE HENRI BARBUSSE - 94081", "stop_name": "EXPLORADOME"}, "geometry": {"type": "Point", "coordinates": [2.392375721426145, 48.79298344235775]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8b266d67c3c9ce66cc86bbef0dfb7004099c25fa", "fields": {"departement": "94", "stop_lat": 48.790610719207514, "code_postal": "94081", "stop_lon": 2.392196366578341, "coord": [48.790610719207514, 2.392196366578341], "stop_id": 4439469, "stop_desc": "10 AVENUE DE L'ABBE ROGER DERRY - 94081", "stop_name": "AUDIGEOIS"}, "geometry": {"type": "Point", "coordinates": [2.392196366578341, 48.790610719207514]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f3a318ca564eb5dbe042fdd80ab698f0ad05ffa3", "fields": {"departement": "94", "stop_lat": 48.79045958793866, "code_postal": "94081", "stop_lon": 2.3884690512328666, "coord": [48.79045958793866, 2.3884690512328666], "stop_id": 4439471, "stop_desc": "17 AVENUE MAXIMILIEN ROBESPIERRE - 94081", "stop_name": "HOTEL DE VILLE DE VITRY"}, "geometry": {"type": "Point", "coordinates": [2.3884690512328666, 48.79045958793866]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f016c7c1f65f0832d38c80b540855f875e153602", "fields": {"departement": "94", "stop_lat": 48.79209689981996, "code_postal": "94081", "stop_lon": 2.3848250122745944, "coord": [48.79209689981996, 2.3848250122745944], "stop_id": 4439472, "stop_desc": "FACE 11-13 AVENUE DU MOULIN DE SAQUET - 94081", "stop_name": "MUSEE MAC-VAL"}, "geometry": {"type": "Point", "coordinates": [2.3848250122745944, 48.79209689981996]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "06038d78e1a5ba7a07a1164d727245eab1b18ffc", "fields": {"departement": "94", "stop_lat": 48.787527716775635, "code_postal": "94076", "stop_lon": 2.3675054965008373, "coord": [48.787527716775635, 2.3675054965008373], "stop_id": 4439476, "stop_desc": "PISTE GARE ROUTIERE - 94076", "stop_name": "VILLEJUIF - LOUIS ARAGON-METRO"}, "geometry": {"type": "Point", "coordinates": [2.3675054965008373, 48.787527716775635]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a1bef97440abd2ef36b3b9f02979f2f63b907578", "fields": {"departement": "94", "stop_lat": 48.78850494351641, "code_postal": "94081", "stop_lon": 2.3759802633642253, "coord": [48.78850494351641, 2.3759802633642253], "stop_id": 4439478, "stop_desc": "133 AVENUE DU MOULIN DE SAQUET - 94081", "stop_name": "COLONEL FABIEN"}, "geometry": {"type": "Point", "coordinates": [2.3759802633642253, 48.78850494351641]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bf3603c5f9a4426f10f9d1bcd18d041598ad6076", "fields": {"departement": "94", "stop_lat": 48.79196144548288, "code_postal": "94081", "stop_lon": 2.3863892504374427, "coord": [48.79196144548288, 2.3863892504374427], "stop_id": 4439480, "stop_desc": "13 AVENUE DU MOULIN DE SAQUET - 94081", "stop_name": "MUSEE MAC-VAL"}, "geometry": {"type": "Point", "coordinates": [2.3863892504374427, 48.79196144548288]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cee6d1260b30afa4d5b0c73566f6d688913cc144", "fields": {"departement": "94", "stop_lat": 48.79047578726445, "code_postal": "94081", "stop_lon": 2.392441073532451, "coord": [48.79047578726445, 2.392441073532451], "stop_id": 4439483, "stop_desc": "7 AVENUE DE L'ABBE ROGER DERRY - 94081", "stop_name": "AUDIGEOIS"}, "geometry": {"type": "Point", "coordinates": [2.392441073532451, 48.79047578726445]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8217088198f9612ac70156029cbe60f5a273e22a", "fields": {"departement": "94", "stop_lat": 48.79826451434789, "code_postal": "94081", "stop_lon": 2.400040831580739, "coord": [48.79826451434789, 2.400040831580739], "stop_id": 4439486, "stop_desc": "45 AVENUE PAUL VAILLANT-COUTURIER - 94081", "stop_name": "GABRIEL PERI"}, "geometry": {"type": "Point", "coordinates": [2.400040831580739, 48.79826451434789]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d099d206562050a721bd49bdc110aef991dbb306", "fields": {"departement": "94", "stop_lat": 48.80129206892912, "code_postal": "94081", "stop_lon": 2.402547922508139, "coord": [48.80129206892912, 2.402547922508139], "stop_id": 4439487, "stop_desc": "PLACE PIERRE SEMARD - 94081", "stop_name": "VITRY RER"}, "geometry": {"type": "Point", "coordinates": [2.402547922508139, 48.80129206892912]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "458e0cd8c56239be4734a40744c55c4eed636e09", "fields": {"departement": "94", "stop_lat": 48.808445499086595, "code_postal": "94041", "stop_lon": 2.4041081714684718, "coord": [48.808445499086595, 2.4041081714684718], "stop_id": 4439489, "stop_desc": "AVENUE JEAN JAURES - 94041", "stop_name": "RUE DE LA BAIGNADE"}, "geometry": {"type": "Point", "coordinates": [2.4041081714684718, 48.808445499086595]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3ba84ad98bce7c288c8bbca6bafdfebd6a564ecc", "fields": {"departement": "94", "stop_lat": 48.818290102338466, "code_postal": "94041", "stop_lon": 2.398499900300091, "coord": [48.818290102338466, 2.398499900300091], "stop_id": 4439493, "stop_desc": "5 RUE LENINE - 94041", "stop_name": "VAILLANT COUTURIER - LENINE"}, "geometry": {"type": "Point", "coordinates": [2.398499900300091, 48.818290102338466]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "77fc88ec132758adaa68a6a02b35ab81728f0f74", "fields": {"departement": "94", "stop_lat": 48.82245788268191, "code_postal": "94018", "stop_lon": 2.403200663736245, "coord": [48.82245788268191, 2.403200663736245], "stop_id": 4439494, "stop_desc": "4 BIS AVENUE DE LA LIBERTE - 94018", "stop_name": "PONT NELSON MANDELA - RIVE DROITE"}, "geometry": {"type": "Point", "coordinates": [2.403200663736245, 48.82245788268191]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e70c16adf6f1d531c8ea062142ef7b6094bcaee5", "fields": {"departement": "75", "stop_lat": 48.84288605707058, "code_postal": "75105", "stop_lon": 2.352287297121382, "coord": [48.84288605707058, 2.352287297121382], "stop_id": 4439510, "stop_desc": "77 BIS RUE MONGE - 75105", "stop_name": "MONGE"}, "geometry": {"type": "Point", "coordinates": [2.352287297121382, 48.84288605707058]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7fb33fd352b69a97a44ad2b654b0b61b8200256f", "fields": {"departement": "75", "stop_lat": 48.84097177701128, "code_postal": "75105", "stop_lon": 2.3517557184666833, "coord": [48.84097177701128, 2.3517557184666833], "stop_id": 4439511, "stop_desc": "96 RUE MONGE - 75105", "stop_name": "CENSIER - DAUBENTON"}, "geometry": {"type": "Point", "coordinates": [2.3517557184666833, 48.84097177701128]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9de7382180693b630b6642942e04cde14a9d162b", "fields": {"departement": "75", "stop_lat": 48.831570105297956, "code_postal": "75113", "stop_lon": 2.35643614543779, "coord": [48.831570105297956, 2.35643614543779], "stop_id": 4439519, "stop_desc": "7 PLACE D'ITALIE - 75113", "stop_name": "PLACE D'ITALIE"}, "geometry": {"type": "Point", "coordinates": [2.35643614543779, 48.831570105297956]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3056c6da6abaa13cfca07888bbf4cc324c4f02f7", "fields": {"departement": "75", "stop_lat": 48.828172718149084, "code_postal": "75113", "stop_lon": 2.356829656095805, "coord": [48.828172718149084, 2.356829656095805], "stop_id": 4439521, "stop_desc": "27 AVENUE D'ITALIE - 75113", "stop_name": "VANDREZANNE"}, "geometry": {"type": "Point", "coordinates": [2.356829656095805, 48.828172718149084]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "23e5536f8ffbb839b2853690efbcb7d93941aaf0", "fields": {"departement": "94", "stop_lat": 48.814771316142455, "code_postal": "94043", "stop_lon": 2.361002603265579, "coord": [48.814771316142455, 2.361002603265579], "stop_id": 4439531, "stop_desc": "17 AVENUE DE FONTAINEBLEAU - 94043", "stop_name": "ROGER SALENGRO - FONTAINEBLEAU"}, "geometry": {"type": "Point", "coordinates": [2.361002603265579, 48.814771316142455]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d82c94a332f17fc5209f0ca7ab647f19d794c162", "fields": {"departement": "94", "stop_lat": 48.810501863902964, "code_postal": "94043", "stop_lon": 2.362320626590704, "coord": [48.810501863902964, 2.362320626590704], "stop_id": 4439535, "stop_desc": "75 AVENUE DE FONTAINEBLEAU - 94043", "stop_name": "LE KREMLIN-BICETRE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.362320626590704, 48.810501863902964]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "079d32be8b06ed080eef222dbab30b5fa1d2a208", "fields": {"departement": "94", "stop_lat": 48.80503701410409, "code_postal": "94076", "stop_lon": 2.363597005894514, "coord": [48.80503701410409, 2.363597005894514], "stop_id": 4439536, "stop_desc": "FACE 41 AVENUE DE PARIS - 94076", "stop_name": "DAUPHIN - ANATOLE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.363597005894514, 48.80503701410409]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "45baab183e5d05ae04796b97cb2e76d4db9950b1", "fields": {"departement": "94", "stop_lat": 48.80237644371773, "code_postal": "94076", "stop_lon": 2.3643847967808878, "coord": [48.80237644371773, 2.3643847967808878], "stop_id": 4439538, "stop_desc": "62 AVENUE DE PARIS - 94076", "stop_name": "HENRI BARBUSSE"}, "geometry": {"type": "Point", "coordinates": [2.3643847967808878, 48.80237644371773]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "689b3cb37103bac514083de05400de9eaf290c39", "fields": {"departement": "94", "stop_lat": 48.76378088217269, "code_postal": "94073", "stop_lon": 2.3694086738771816, "coord": [48.76378088217269, 2.3694086738771816], "stop_id": 4439555, "stop_desc": "ESPLANADE AUGUSTE PERRET - 94073", "stop_name": "AUGUSTE PERRET"}, "geometry": {"type": "Point", "coordinates": [2.3694086738771816, 48.76378088217269]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f3624c1b66b49230628b28f9c84c2c6d304ae2c3", "fields": {"departement": "94", "stop_lat": 48.76353172246238, "code_postal": "94021", "stop_lon": 2.3581784670689125, "coord": [48.76353172246238, 2.3581784670689125], "stop_id": 4439561, "stop_desc": "AVENUE DE LA CITE - 94021", "stop_name": "MARCHE INTERNATIONAL DE RUNGIS"}, "geometry": {"type": "Point", "coordinates": [2.3581784670689125, 48.76353172246238]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d8b1d7be9f81f2ea75482df565b351c022328aa4", "fields": {"departement": "94", "stop_lat": 48.76150973348482, "code_postal": "94021", "stop_lon": 2.356179161915079, "coord": [48.76150973348482, 2.356179161915079], "stop_id": 4439562, "stop_desc": "AVENUE DES TROIS MARCHES - 94021", "stop_name": "TROIS MARCHES"}, "geometry": {"type": "Point", "coordinates": [2.356179161915079, 48.76150973348482]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cd2ebfab4651a91eeeb5acfb91ed51fd40f5f7d4", "fields": {"departement": "94", "stop_lat": 48.761178081740965, "code_postal": "94021", "stop_lon": 2.349177570277524, "coord": [48.761178081740965, 2.349177570277524], "stop_id": 4439567, "stop_desc": "AVENUE DU LYONNAIS - 94021", "stop_name": "VIADUC"}, "geometry": {"type": "Point", "coordinates": [2.349177570277524, 48.761178081740965]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "05bfe95082a4b374b433f0a9ec2b2ab9a6621950", "fields": {"departement": "94", "stop_lat": 48.775811214791446, "code_postal": "94038", "stop_lon": 2.3401104509927557, "coord": [48.775811214791446, 2.3401104509927557], "stop_id": 4834651, "stop_desc": "137 AVENUE PAUL VAILLANT COUTURIER - 94038", "stop_name": "TOURNELLES"}, "geometry": {"type": "Point", "coordinates": [2.3401104509927557, 48.775811214791446]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f92b9a3bf43eec01412dc3d46e8823aa6ce5542f", "fields": {"departement": "94", "stop_lat": 48.771773690860535, "code_postal": "94021", "stop_lon": 2.3586985056609033, "coord": [48.771773690860535, 2.3586985056609033], "stop_id": 4834658, "stop_desc": "AVENUE DU PRESIDENT FRANKLIN ROOSEVELT - 94021", "stop_name": "CITE DES SORBIERS"}, "geometry": {"type": "Point", "coordinates": [2.3586985056609033, 48.771773690860535]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6a1b3baa3e44a7c399497624368e0b46d5d92af6", "fields": {"departement": "94", "stop_lat": 48.77019074739032, "code_postal": "94021", "stop_lon": 2.363878479826917, "coord": [48.77019074739032, 2.363878479826917], "stop_id": 4834660, "stop_desc": "112 AVENUE DU PRESIDENT ROOSEVELT - 94021", "stop_name": "JACQUES BREL"}, "geometry": {"type": "Point", "coordinates": [2.363878479826917, 48.77019074739032]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ee91d4f6a4afe15c5e0b5a3d5c9e4e116bdfcb74", "fields": {"departement": "94", "stop_lat": 48.77854357434589, "code_postal": "94038", "stop_lon": 2.3398250090358874, "coord": [48.77854357434589, 2.3398250090358874], "stop_id": 4834676, "stop_desc": "5 RUE HENRI THIRARD - 94038", "stop_name": "HENRI THIRARD-LEON JOUHAUX"}, "geometry": {"type": "Point", "coordinates": [2.3398250090358874, 48.77854357434589]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a821c00e33092abc002ea7c547fae67f2449f0dc", "fields": {"departement": "92", "stop_lat": 48.77960179320402, "code_postal": "92014", "stop_lon": 2.313400434821077, "coord": [48.77960179320402, 2.313400434821077], "stop_id": 4834678, "stop_desc": "72 BOULEVARD DU MARECHAL JOFFRE - 92014", "stop_name": "BOURG-LA-REINE RER"}, "geometry": {"type": "Point", "coordinates": [2.313400434821077, 48.77960179320402]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b71e50643af611d9ee12cdf650361e7eb4d0204c", "fields": {"departement": "95", "stop_lat": 49.00391440690258, "code_postal": "95527", "stop_lon": 2.5692104518710632, "coord": [49.00391440690258, 2.5692104518710632], "stop_id": 48431, "stop_desc": "Gare de Roissy TGV - 95527", "stop_name": "A\u00e9roport Charles de Gaulle 2 TGV"}, "geometry": {"type": "Point", "coordinates": [2.5692104518710632, 49.00391440690258]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b757afc63557e334cb2d5bd5f96edfd8f010052d", "fields": {"departement": "94", "stop_lat": 48.82055423229888, "code_postal": "94041", "stop_lon": 2.379624608458189, "coord": [48.82055423229888, 2.379624608458189], "stop_id": 4843416, "stop_desc": "FACE 18BIS AVENUE PIERRE SEMARD - 94041", "stop_name": "RUE DES JARDINS"}, "geometry": {"type": "Point", "coordinates": [2.379624608458189, 48.82055423229888]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3b75f62753c077798488b0aaddf9bfacbf13ca05", "fields": {"departement": "94", "stop_lat": 48.81530405440552, "code_postal": "94041", "stop_lon": 2.3832676062282143, "coord": [48.81530405440552, 2.3832676062282143], "stop_id": 4843419, "stop_desc": "114 AVENUE DANIELLE CASANOVA - 94041", "stop_name": "LEDRU ROLLIN"}, "geometry": {"type": "Point", "coordinates": [2.3832676062282143, 48.81530405440552]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "06e070740d415ac4b58b3fb6b688edc2cc36a5ca", "fields": {"departement": "94", "stop_lat": 48.81297520230373, "code_postal": "94041", "stop_lon": 2.3858511865781136, "coord": [48.81297520230373, 2.3858511865781136], "stop_id": 4843453, "stop_desc": "AVENUE DANIELLE CASANOVA - 94041", "stop_name": "VOLTAIRE"}, "geometry": {"type": "Point", "coordinates": [2.3858511865781136, 48.81297520230373]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0a159e0af7a222b99d4c195a5ea4a5493d3fcaf1", "fields": {"departement": "94", "stop_lat": 48.800409808538625, "code_postal": "94081", "stop_lon": 2.386955065373094, "coord": [48.800409808538625, 2.386955065373094], "stop_id": 4843463, "stop_desc": "RUE DE LA LIBERTE - 94081", "stop_name": "PLACE DE LA LIBERTE"}, "geometry": {"type": "Point", "coordinates": [2.386955065373094, 48.800409808538625]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "de55704c225ab3daa414dd93ad7869cafc54fd33", "fields": {"departement": "94", "stop_lat": 48.7932529526218, "code_postal": "94081", "stop_lon": 2.392648077289847, "coord": [48.7932529526218, 2.392648077289847], "stop_id": 4843468, "stop_desc": "FACE 2 RUE DU GENERAL DE GAULLE - 94081", "stop_name": "EXPLORADOME"}, "geometry": {"type": "Point", "coordinates": [2.392648077289847, 48.7932529526218]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f4ee486cea9e40928a49a812a26ad161492450e9", "fields": {"departement": "94", "stop_lat": 48.7924967978393, "code_postal": "94081", "stop_lon": 2.395109466390311, "coord": [48.7924967978393, 2.395109466390311], "stop_id": 4843470, "stop_desc": "AVENUE PAUL VAILLANT-COUTURIER - 94081", "stop_name": "EGLISE DE VITRY"}, "geometry": {"type": "Point", "coordinates": [2.395109466390311, 48.7924967978393]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d096acbf28422054c726ac64167330aa77639256", "fields": {"departement": "94", "stop_lat": 48.79202047251417, "code_postal": "94081", "stop_lon": 2.3950409198816547, "coord": [48.79202047251417, 2.3950409198816547], "stop_id": 4843471, "stop_desc": "157 AVENUE PAUL VAILLANT-COUTURIER - 94081", "stop_name": "EGLISE DE VITRY"}, "geometry": {"type": "Point", "coordinates": [2.3950409198816547, 48.79202047251417]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "24f27bf9fabbbeceffdbf9496eb3174cb628f3c2", "fields": {"departement": "92", "stop_lat": 48.88066535817667, "code_postal": "92050", "stop_lon": 2.210351747286266, "coord": [48.88066535817667, 2.210351747286266], "stop_id": 4025371, "stop_desc": "161 R DE LA SOURCE - 92050", "stop_name": "LUAPS"}, "geometry": {"type": "Point", "coordinates": [2.210351747286266, 48.88066535817667]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e6d8b86fee25c76a36e21f131fd39d4802650a3d", "fields": {"departement": "92", "stop_lat": 48.88495723387458, "code_postal": "92050", "stop_lon": 2.206620913412666, "coord": [48.88495723387458, 2.206620913412666], "stop_id": 4025373, "stop_desc": "43 R DE LA SOURCE - 92050", "stop_name": "LIBERATION"}, "geometry": {"type": "Point", "coordinates": [2.206620913412666, 48.88495723387458]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c570f620293463fbafd812fda99b2dc050d6de11", "fields": {"departement": "92", "stop_lat": 48.88653863826318, "code_postal": "92050", "stop_lon": 2.2063034841934472, "coord": [48.88653863826318, 2.2063034841934472], "stop_id": 4025375, "stop_desc": "68 AVENUE GEORGES CLEMENCEAU - 92050", "stop_name": "LA SOURCE"}, "geometry": {"type": "Point", "coordinates": [2.2063034841934472, 48.88653863826318]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2663a008a40a4e4db5fa088fd36d6bddb7d2ff2d", "fields": {"departement": "92", "stop_lat": 48.88736726938604, "code_postal": "92050", "stop_lon": 2.1999233908349463, "coord": [48.88736726938604, 2.1999233908349463], "stop_id": 4025378, "stop_desc": "PL DE LA BOULE - 92050", "stop_name": "PLACE DE LA BOULE - GAMBETTA"}, "geometry": {"type": "Point", "coordinates": [2.1999233908349463, 48.88736726938604]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "42c31d5b84365d6fb13bced813c4d73fe37821fb", "fields": {"departement": "92", "stop_lat": 48.88275839405862, "code_postal": "92050", "stop_lon": 2.209419987945448, "coord": [48.88275839405862, 2.209419987945448], "stop_id": 4025381, "stop_desc": "122 R PHILIPPE TRIAIRE - 92050", "stop_name": "DANIEL BECKER"}, "geometry": {"type": "Point", "coordinates": [2.209419987945448, 48.88275839405862]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e5c958773796dd3198e50a4ad01bb9c3927e0b28", "fields": {"departement": "94", "stop_lat": 48.83574292139633, "code_postal": "94052", "stop_lon": 2.4751572939223943, "coord": [48.83574292139633, 2.4751572939223943], "stop_id": 4028778, "stop_desc": "3-5 GRANDE RUE CHARLES DE GAULLE - 94052", "stop_name": "PLACE DU GENERAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.4751572939223943, 48.83574292139633]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "95924c31eb766a4871cda326e8b823d124a6b132", "fields": {"departement": "94", "stop_lat": 48.838001853465165, "code_postal": "94058", "stop_lon": 2.4944560966386526, "coord": [48.838001853465165, 2.4944560966386526], "stop_id": 4028787, "stop_desc": "10 PLACE ROBERT BELVAUX - 94058", "stop_name": "NOGENT-LE-PERREUX RER"}, "geometry": {"type": "Point", "coordinates": [2.4944560966386526, 48.838001853465165]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5ffff4bc00f670effae3996232812613a5cd1c09", "fields": {"departement": "94", "stop_lat": 48.84272630714998, "code_postal": "94058", "stop_lon": 2.5032938963627904, "coord": [48.84272630714998, 2.5032938963627904], "stop_id": 4028791, "stop_desc": "2 R DE LA STATION - 94058", "stop_name": "LEDRU ROLLIN - GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.5032938963627904, 48.84272630714998]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aa8d9c1efb40fba78a9385a721ab219616bb697a", "fields": {"departement": "94", "stop_lat": 48.834303962813244, "code_postal": "94058", "stop_lon": 2.5102919129696097, "coord": [48.834303962813244, 2.5102919129696097], "stop_id": 4028798, "stop_desc": "38-40 ALLEE GUY MOQUET - 94058", "stop_name": "GUY MOQUET"}, "geometry": {"type": "Point", "coordinates": [2.5102919129696097, 48.834303962813244]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fc346d168d7a7cffd685331db0079d0238339fe1", "fields": {"departement": "94", "stop_lat": 48.833711015988115, "code_postal": "94058", "stop_lon": 2.5162120806998196, "coord": [48.833711015988115, 2.5162120806998196], "stop_id": 4028801, "stop_desc": "FACE127BIS BOULEVARD FOCH - 94058", "stop_name": "MARECHAL JOFFRE - PONT DE BRY"}, "geometry": {"type": "Point", "coordinates": [2.5162120806998196, 48.833711015988115]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f39fd548792e72f2128410b346e050332dd75624", "fields": {"departement": "94", "stop_lat": 48.83999340120814, "code_postal": "94015", "stop_lon": 2.522061303805624, "coord": [48.83999340120814, 2.522061303805624], "stop_id": 4028807, "stop_desc": "RUE DU MARECHAL FOCH - 94015", "stop_name": "CHATEAU"}, "geometry": {"type": "Point", "coordinates": [2.522061303805624, 48.83999340120814]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b53a754f86631ac4a1fc33c85d12eefbee1792e3", "fields": {"departement": "94", "stop_lat": 48.84032410062164, "code_postal": "94015", "stop_lon": 2.528911262894006, "coord": [48.84032410062164, 2.528911262894006], "stop_id": 4028814, "stop_desc": "FACE 25 BOULEVARD PASTEUR - 94015", "stop_name": "CHEMIN DES MOINES"}, "geometry": {"type": "Point", "coordinates": [2.528911262894006, 48.84032410062164]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9902b0d1177e10d77c6c36194ff53e808b0d2781", "fields": {"departement": "94", "stop_lat": 48.83121921645381, "code_postal": "94079", "stop_lon": 2.534676976540491, "coord": [48.83121921645381, 2.534676976540491], "stop_id": 4028824, "stop_desc": "33 ROUTE DE BRY - 94079", "stop_name": "ROUTE DE BRY - ARISTIDE BRIAND"}, "geometry": {"type": "Point", "coordinates": [2.534676976540491, 48.83121921645381]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dcdab6cf596d26d543c3168c7a458e441004e945", "fields": {"departement": "94", "stop_lat": 48.8299271941974, "code_postal": "94079", "stop_lon": 2.5387287778459253, "coord": [48.8299271941974, 2.5387287778459253], "stop_id": 4028827, "stop_desc": "10 ROUTE DE BRY - 94079", "stop_name": "FRIEDBERG"}, "geometry": {"type": "Point", "coordinates": [2.5387287778459253, 48.8299271941974]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ddf95b47d8f8d36a468851698e0af87e8a06c556", "fields": {"departement": "94", "stop_lat": 48.823395811335416, "code_postal": "94079", "stop_lon": 2.542432954768838, "coord": [48.823395811335416, 2.542432954768838], "stop_id": 4028830, "stop_desc": "PL PIERRE SEMARD - 94079", "stop_name": "VILLIERS-SUR-MARNE - LE PLESSIS-TREVISE RER"}, "geometry": {"type": "Point", "coordinates": [2.542432954768838, 48.823395811335416]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4c4539aa5c8d6f659e6bdb87058605872bf6e6b4", "fields": {"departement": "75", "stop_lat": 48.841674600518346, "code_postal": "75112", "stop_lon": 2.4496154545513202, "coord": [48.841674600518346, 2.4496154545513202], "stop_id": 4028838, "stop_desc": "AVENUE DE NOGENT - 75112", "stop_name": "TREMBLAY - PEPINIERE"}, "geometry": {"type": "Point", "coordinates": [2.4496154545513202, 48.841674600518346]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "50cc440602ed928ca18121a8da9f336b35b72490", "fields": {"departement": "75", "stop_lat": 48.84248422077351, "code_postal": "75112", "stop_lon": 2.4488274563768555, "coord": [48.84248422077351, 2.4488274563768555], "stop_id": 4028839, "stop_desc": "AV DE NOGENT - 75112", "stop_name": "TREMBLAY - PEPINIERE"}, "geometry": {"type": "Point", "coordinates": [2.4488274563768555, 48.84248422077351]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5d20d0b4bd5960769b73704c3d8ca5a9ee4e9611", "fields": {"departement": "94", "stop_lat": 48.8327448820135, "code_postal": "94058", "stop_lon": 2.5131728547611707, "coord": [48.8327448820135, 2.5131728547611707], "stop_id": 4028867, "stop_desc": "FACE 107 BOULEVARD FOCH - 94058", "stop_name": "RESIDENCE DES ILES"}, "geometry": {"type": "Point", "coordinates": [2.5131728547611707, 48.8327448820135]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ad2107e60cc9078030dc26a4e5f7788c8af1beae", "fields": {"departement": "94", "stop_lat": 48.83424543925855, "code_postal": "94015", "stop_lon": 2.5193996628002555, "coord": [48.83424543925855, 2.5193996628002555], "stop_id": 4028870, "stop_desc": "5 PL DAGUERRE - 94015", "stop_name": "MAIRIE DE BRY-SUR-MARNE"}, "geometry": {"type": "Point", "coordinates": [2.5193996628002555, 48.83424543925855]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "373b22fa481ae2f3b4a4b9208a014043a46209ee", "fields": {"departement": "94", "stop_lat": 48.83999340120814, "code_postal": "94015", "stop_lon": 2.522061303805624, "coord": [48.83999340120814, 2.522061303805624], "stop_id": 4028874, "stop_desc": "RUE DU MARECHAL FOCH - 94015", "stop_name": "CHATEAU"}, "geometry": {"type": "Point", "coordinates": [2.522061303805624, 48.83999340120814]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1749281993a85cd6f7bb18b918fa3a7da3e26e17", "fields": {"departement": "94", "stop_lat": 48.84093158731507, "code_postal": "94015", "stop_lon": 2.5255775804370817, "coord": [48.84093158731507, 2.5255775804370817], "stop_id": 4028880, "stop_desc": "BOULEVARD PASTEUR - 94015", "stop_name": "CIMETIERE - FUNERARIUM DE BRY"}, "geometry": {"type": "Point", "coordinates": [2.5255775804370817, 48.84093158731507]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2c13b56d2efd7fe73b519ae3e3ac4dfb35e5ce55", "fields": {"departement": "94", "stop_lat": 48.83393968487427, "code_postal": "94015", "stop_lon": 2.525293533899705, "coord": [48.83393968487427, 2.525293533899705], "stop_id": 4028885, "stop_desc": "180 BOULEVARD PASTEUR - 94015", "stop_name": "2 DECEMBRE 1870"}, "geometry": {"type": "Point", "coordinates": [2.525293533899705, 48.83393968487427]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f2999bd7d0ff84a6d116a5a63e90851b11d4ffe3", "fields": {"departement": "94", "stop_lat": 48.82629358652719, "code_postal": "94079", "stop_lon": 2.540252848669576, "coord": [48.82629358652719, 2.540252848669576], "stop_id": 4028895, "stop_desc": "41 RUE DU GENERAL GALLIENI - 94079", "stop_name": "MAIRIE DE VILLIERS-SUR-MARNE"}, "geometry": {"type": "Point", "coordinates": [2.540252848669576, 48.82629358652719]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a6b857c4230439bfca2c9a6645381f77f6db2668", "fields": {"departement": "94", "stop_lat": 48.84045641817912, "code_postal": "94015", "stop_lon": 2.519040223418052, "coord": [48.84045641817912, 2.519040223418052], "stop_id": 4028900, "stop_desc": "FACE 48 AVENUE DE RIGNY - 94015", "stop_name": "RUE DE LA MARNE"}, "geometry": {"type": "Point", "coordinates": [2.519040223418052, 48.84045641817912]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3a967edc4274119e56097e600c82653880c0fe53", "fields": {"departement": "94", "stop_lat": 48.826068431366515, "code_postal": "94079", "stop_lon": 2.540524210599729, "coord": [48.826068431366515, 2.540524210599729], "stop_id": 4028904, "stop_desc": "FACE 37 RUE DU GENERAL GALLIENI - 94079", "stop_name": "MAIRIE DE VILLIERS-SUR-MARNE"}, "geometry": {"type": "Point", "coordinates": [2.540524210599729, 48.826068431366515]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ad494167a9f393c0cd9957d247e0c420a63fbeb2", "fields": {"departement": "94", "stop_lat": 48.8299271941974, "code_postal": "94079", "stop_lon": 2.5387287778459253, "coord": [48.8299271941974, 2.5387287778459253], "stop_id": 4028906, "stop_desc": "10 ROUTE DE BRY - 94079", "stop_name": "FRIEDBERG"}, "geometry": {"type": "Point", "coordinates": [2.5387287778459253, 48.8299271941974]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f85c3e71540839205edae31506893b0d18e1f43b", "fields": {"departement": "94", "stop_lat": 48.83148010474214, "code_postal": "94079", "stop_lon": 2.534528220074093, "coord": [48.83148010474214, 2.534528220074093], "stop_id": 4028907, "stop_desc": "FACE 35 ROUTE ROUTE DE BRY - 94079", "stop_name": "ROUTE DE BRY - ARISTIDE BRIAND"}, "geometry": {"type": "Point", "coordinates": [2.534528220074093, 48.83148010474214]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8655990ab0e673cddb0eeea9212a16453d5b9605", "fields": {"departement": "94", "stop_lat": 48.83348118957876, "code_postal": "94015", "stop_lon": 2.525373556761865, "coord": [48.83348118957876, 2.525373556761865], "stop_id": 4028910, "stop_desc": "FACE 188 BD PASTEUR - 94015", "stop_name": "2 DECEMBRE 1870"}, "geometry": {"type": "Point", "coordinates": [2.525373556761865, 48.83348118957876]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2add5b331d60a11fd0ecf2752fb0f962f2b7c5cb", "fields": {"departement": "94", "stop_lat": 48.84093158731507, "code_postal": "94015", "stop_lon": 2.5255775804370817, "coord": [48.84093158731507, 2.5255775804370817], "stop_id": 4028913, "stop_desc": "BOULEVARD PASTEUR - 94015", "stop_name": "CIMETIERE - FUNERARIUM DE BRY"}, "geometry": {"type": "Point", "coordinates": [2.5255775804370817, 48.84093158731507]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f42a03c1f337e8ed595fd736e58372529a0d6dc4", "fields": {"departement": "92", "stop_lat": 48.88462644850585, "code_postal": "92051", "stop_lon": 2.2601913576941075, "coord": [48.88462644850585, 2.2601913576941075], "stop_id": 4035033, "stop_desc": "201 AVENUE CHARLES DE GAULLE - 92051", "stop_name": "PONT DE NEUILLY-METRO"}, "geometry": {"type": "Point", "coordinates": [2.2601913576941075, 48.88462644850585]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "186bad9b5c02623e8ce1aa20f16ba1137b689f11", "fields": {"departement": "75", "stop_lat": 48.87401247719477, "code_postal": "75108", "stop_lon": 2.296557776569808, "coord": [48.87401247719477, 2.296557776569808], "stop_id": 4035037, "stop_desc": "AVENUE DE FRIEDLAND - 75108", "stop_name": "CHARLES DE GAULLE - ETOILE - FRIEDLAND"}, "geometry": {"type": "Point", "coordinates": [2.296557776569808, 48.87401247719477]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3acc6fac35537801a78c1a2e8a622492e65a2d8d", "fields": {"departement": "93", "stop_lat": 48.89897493409345, "code_postal": "93047", "stop_lon": 2.5742886405139136, "coord": [48.89897493409345, 2.5742886405139136], "stop_id": 4035476, "stop_desc": "RUE DES JARDINS - 93047", "stop_name": "HOPITAL DE MONTFERMEIL"}, "geometry": {"type": "Point", "coordinates": [2.5742886405139136, 48.89897493409345]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "693f068c43d166e34338b3f9a1972f93ba5c14b8", "fields": {"departement": "93", "stop_lat": 48.900922655507664, "code_postal": "93047", "stop_lon": 2.5709986516900187, "coord": [48.900922655507664, 2.5709986516900187], "stop_id": 4035477, "stop_desc": "3 RUE DU GENERAL LECLERC - 93047", "stop_name": "HOTEL DE VILLE DE MONTFERMEIL"}, "geometry": {"type": "Point", "coordinates": [2.5709986516900187, 48.900922655507664]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d43d130e0921be699a781b1b7840b22d4c1d1cd7", "fields": {"departement": "93", "stop_lat": 48.91059910000352, "code_postal": "93014", "stop_lon": 2.5533585541816404, "coord": [48.91059910000352, 2.5533585541816404], "stop_id": 4035485, "stop_desc": "29 ALLEE VEUVE LINDET GIRARD - 93014", "stop_name": "LA PELOUSE"}, "geometry": {"type": "Point", "coordinates": [2.5533585541816404, 48.91059910000352]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3a2329f37a867b87662ba0d381f54616e2b00b8d", "fields": {"departement": "93", "stop_lat": 48.90924174071748, "code_postal": "93014", "stop_lon": 2.553530134299135, "coord": [48.90924174071748, 2.553530134299135], "stop_id": 4035486, "stop_desc": "ALLEE VEUVE LINDET GIRARD - 93014", "stop_name": "LA PELOUSE"}, "geometry": {"type": "Point", "coordinates": [2.553530134299135, 48.90924174071748]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3acc2c826459ed3a6706e1dd7056fb344a17eb32", "fields": {"departement": "93", "stop_lat": 48.90621831778443, "code_postal": "93046", "stop_lon": 2.5238380621365057, "coord": [48.90621831778443, 2.5238380621365057], "stop_id": 4035502, "stop_desc": "87 BOULEVARD MARX DORMOY - 93046", "stop_name": "REPUBLIQUE - MARX DORMOY"}, "geometry": {"type": "Point", "coordinates": [2.5238380621365057, 48.90621831778443]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1c8374968f6f9f60e5dc7cddb53d937a4eccaecc", "fields": {"departement": "93", "stop_lat": 48.89981082893602, "code_postal": "93062", "stop_lon": 2.517789869849923, "coord": [48.89981082893602, 2.517789869849923], "stop_id": 4035505, "stop_desc": "1 AVENUE DE LIVRY - 93062", "stop_name": "ROND-POINT THIERS"}, "geometry": {"type": "Point", "coordinates": [2.517789869849923, 48.89981082893602]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "58cac44e448f48f3a5f5658bfb3461f4023a3cee", "fields": {"departement": "93", "stop_lat": 48.90076982510812, "code_postal": "93062", "stop_lon": 2.513540106450058, "coord": [48.90076982510812, 2.513540106450058], "stop_id": 4035508, "stop_desc": "FACE 13 AVENUE THIERS - 93062", "stop_name": "CENTRE SPORTIF - PISCINE"}, "geometry": {"type": "Point", "coordinates": [2.513540106450058, 48.90076982510812]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d4e09bf0cb5fb0f090db8750f5245f49dde21e5c", "fields": {"departement": "93", "stop_lat": 48.90223965052625, "code_postal": "93057", "stop_lon": 2.510177970708728, "coord": [48.90223965052625, 2.510177970708728], "stop_id": 4035509, "stop_desc": "215 AVENUE JEAN JAURES - 93057", "stop_name": "GARE DES PAVILLONS-SOUS-BOIS"}, "geometry": {"type": "Point", "coordinates": [2.510177970708728, 48.90223965052625]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4ea8da7187b2d31554a73b3e6cbce26957771c7a", "fields": {"departement": "93", "stop_lat": 48.902899045704345, "code_postal": "93057", "stop_lon": 2.507862679783337, "coord": [48.902899045704345, 2.507862679783337], "stop_id": 4035512, "stop_desc": "FACE 169 AVENUE JEAN JAURES - 93057", "stop_name": "PRESIDENT WILSON - MAIRIE"}, "geometry": {"type": "Point", "coordinates": [2.507862679783337, 48.902899045704345]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bab4b49ee7c213668ae57d9635183d42100e4e3e", "fields": {"departement": "93", "stop_lat": 48.905730467371214, "code_postal": "93057", "stop_lon": 2.501110012082014, "coord": [48.905730467371214, 2.501110012082014], "stop_id": 4035515, "stop_desc": "71 AVENUE JEAN JAURES - 93057", "stop_name": "JEAN-BAPTISTE CLEMENT - JAURES"}, "geometry": {"type": "Point", "coordinates": [2.501110012082014, 48.905730467371214]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4463fe741226c8a416e09582d1a9176971318625", "fields": {"departement": "93", "stop_lat": 48.90778666578987, "code_postal": "93057", "stop_lon": 2.495826683951808, "coord": [48.90778666578987, 2.495826683951808], "stop_id": 4035517, "stop_desc": "3 AVENUE JEAN JAURES - 93057", "stop_name": "PAVILLONS DE GARDE"}, "geometry": {"type": "Point", "coordinates": [2.495826683951808, 48.90778666578987]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9b6a9c92b5f10544f9f372bd82f561a1dc549918", "fields": {"departement": "93", "stop_lat": 48.907969430629855, "code_postal": "93057", "stop_lon": 2.4935367931702235, "coord": [48.907969430629855, 2.4935367931702235], "stop_id": 4035518, "stop_desc": "11 AVENUE ARISTIDE BRIAND - 93057", "stop_name": "LA FOURCHE"}, "geometry": {"type": "Point", "coordinates": [2.4935367931702235, 48.907969430629855]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "884c36ae8c6d7408ff11cae61063bb3de022fab1", "fields": {"departement": "93", "stop_lat": 48.9072112412486, "code_postal": "93057", "stop_lon": 2.496015790879614, "coord": [48.9072112412486, 2.496015790879614], "stop_id": 4035519, "stop_desc": "20 ALLEE DANIELLE CASANOVA - 93057", "stop_name": "LA FOURCHE"}, "geometry": {"type": "Point", "coordinates": [2.496015790879614, 48.9072112412486]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "532f94df42621c798e1c54078567c019fde5f3a3", "fields": {"departement": "93", "stop_lat": 48.90658543502007, "code_postal": "93010", "stop_lon": 2.4865114865196762, "coord": [48.90658543502007, 2.4865114865196762], "stop_id": 4035521, "stop_desc": "170 AVENUE GALLIENI - 93010", "stop_name": "PASTEUR - HOPITAL JEAN VERDIER"}, "geometry": {"type": "Point", "coordinates": [2.4865114865196762, 48.90658543502007]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6382118d2d7fd7daf84dab3461142d2efd8f7e80", "fields": {"departement": "93", "stop_lat": 48.906169876941505, "code_postal": "93010", "stop_lon": 2.4809479623042554, "coord": [48.906169876941505, 2.4809479623042554], "stop_id": 4035522, "stop_desc": "111 AVENUE GALLIENI - 93010", "stop_name": "AUGUSTE POLISSARD"}, "geometry": {"type": "Point", "coordinates": [2.4809479623042554, 48.906169876941505]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fb7e22c326cc5c2521f6373d4bf551a31d7c06b5", "fields": {"departement": "93", "stop_lat": 48.90450010869527, "code_postal": "93010", "stop_lon": 2.4716730867766277, "coord": [48.90450010869527, 2.4716730867766277], "stop_id": 4035524, "stop_desc": "AVENUE GALLIENI - 93010", "stop_name": "AVENUE DE ROSNY"}, "geometry": {"type": "Point", "coordinates": [2.4716730867766277, 48.90450010869527]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e313b6c26bf01784a4c3b38d5228394a310413f9", "fields": {"departement": "93", "stop_lat": 48.90555453249922, "code_postal": "93008", "stop_lon": 2.469044655471792, "coord": [48.90555453249922, 2.469044655471792], "stop_id": 4035527, "stop_desc": "FACE 439 AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "PONT DE BONDY"}, "geometry": {"type": "Point", "coordinates": [2.469044655471792, 48.90555453249922]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7ef5ee4c9112835a57359bc87bc277e4925bc8f9", "fields": {"departement": "93", "stop_lat": 48.900898648108544, "code_postal": "93008", "stop_lon": 2.442491777859412, "coord": [48.900898648108544, 2.442491777859412], "stop_id": 4035539, "stop_desc": "AVENUE DU PRESIDENT SALVADOR ALLENDE - 93008", "stop_name": "JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.442491777859412, 48.900898648108544]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "07973ae1cef5b694dd3b04d3dd9d5dc5d15e7ba5", "fields": {"departement": "93", "stop_lat": 48.89901170412667, "code_postal": "93008", "stop_lon": 2.4420926392411446, "coord": [48.89901170412667, 2.4420926392411446], "stop_id": 4035541, "stop_desc": "FACE 3 AVENUE JEAN JAURES - 93008", "stop_name": "LA FOLIE"}, "geometry": {"type": "Point", "coordinates": [2.4420926392411446, 48.89901170412667]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e364633943eff1bbfe795ad35f65b41df3d1c111", "fields": {"departement": "93", "stop_lat": 48.89447302655296, "code_postal": "93055", "stop_lon": 2.419389401798118, "coord": [48.89447302655296, 2.419389401798118], "stop_id": 4035544, "stop_desc": "207 AVENUE JEAN LOLIVE - 93055", "stop_name": "PIERRE BROSSOLETTE"}, "geometry": {"type": "Point", "coordinates": [2.419389401798118, 48.89447302655296]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bba7e4e712a7f6c727206bcba99cd2ab28461e7c", "fields": {"departement": "93", "stop_lat": 48.894382655105986, "code_postal": "93055", "stop_lon": 2.420111650565813, "coord": [48.894382655105986, 2.420111650565813], "stop_id": 4035545, "stop_desc": "176 AVENUE JEAN LOLIVE - 93055", "stop_name": "PIERRE BROSSOLETTE"}, "geometry": {"type": "Point", "coordinates": [2.420111650565813, 48.894382655105986]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c4cd397b04dc0e5db2ffcf8b04146807e0338227", "fields": {"departement": "93", "stop_lat": 48.89323637850389, "code_postal": "93055", "stop_lon": 2.4140173260750295, "coord": [48.89323637850389, 2.4140173260750295], "stop_id": 4035547, "stop_desc": "AVENUE JEAN LOLIVE - 93055", "stop_name": "EGLISE DE PANTIN-METRO"}, "geometry": {"type": "Point", "coordinates": [2.4140173260750295, 48.89323637850389]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "896b26dbb0b964481415dc304dabed31202d4e0d", "fields": {"departement": "75", "stop_lat": 48.88340600662427, "code_postal": "75119", "stop_lon": 2.372181052819465, "coord": [48.88340600662427, 2.372181052819465], "stop_id": 4035555, "stop_desc": "13 AVENUE JEAN JAURES - 75119", "stop_name": "JAURES"}, "geometry": {"type": "Point", "coordinates": [2.372181052819465, 48.88340600662427]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "71ae96e693cab38c6ebe04e95b083fd0f1d15519", "fields": {"departement": "75", "stop_lat": 48.88164607374856, "code_postal": "75110", "stop_lon": 2.3663476469834346, "coord": [48.88164607374856, 2.3663476469834346], "stop_id": 4035558, "stop_desc": "210 RUE LA FAYETTE - 75110", "stop_name": "LOUIS BLANC"}, "geometry": {"type": "Point", "coordinates": [2.3663476469834346, 48.88164607374856]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6a364460c041ce7e7571353f2209eb631c96f443", "fields": {"departement": "75", "stop_lat": 48.87534776844683, "code_postal": "75110", "stop_lon": 2.357842096001513, "coord": [48.87534776844683, 2.357842096001513], "stop_id": 4035562, "stop_desc": "72 BOULEVARD DE STRASBOURG - 75110", "stop_name": "GARE DE L'EST"}, "geometry": {"type": "Point", "coordinates": [2.357842096001513, 48.87534776844683]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eccfcda2177718be6239d9782eaef2a80dff13af", "fields": {"departement": "95", "stop_lat": 48.994897529127414, "code_postal": "95539", "stop_lon": 2.368473484612116, "coord": [48.994897529127414, 2.368473484612116], "stop_id": 4035649, "stop_desc": "PLACE DE LA GARE - 95539", "stop_name": "GARE DE SARCELLES-SAINT-BRICE"}, "geometry": {"type": "Point", "coordinates": [2.368473484612116, 48.994897529127414]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3de2c9aeed7353d007b15c0a62207b9309785de6", "fields": {"departement": "95", "stop_lat": 48.988595467302254, "code_postal": "95585", "stop_lon": 2.3771405144502658, "coord": [48.988595467302254, 2.3771405144502658], "stop_id": 4035655, "stop_desc": "0 BOULEVARD FRANCOIS MITTERRAND - 95585", "stop_name": "MOZART - MALESHERBES"}, "geometry": {"type": "Point", "coordinates": [2.3771405144502658, 48.988595467302254]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "23ba2948f41b2af07066d492e5a822169a41fb16", "fields": {"departement": "95", "stop_lat": 48.97923057772253, "code_postal": "95585", "stop_lon": 2.3799593381925406, "coord": [48.97923057772253, 2.3799593381925406], "stop_id": 4035661, "stop_desc": "35 AVENUE PAUL VALERY - 95585", "stop_name": "PAUL VALERY"}, "geometry": {"type": "Point", "coordinates": [2.3799593381925406, 48.97923057772253]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "667586a9fcfe9ef42ae2f2cf259adf439eadb607", "fields": {"departement": "95", "stop_lat": 48.97950042495415, "code_postal": "95585", "stop_lon": 2.379249633233158, "coord": [48.97950042495415, 2.379249633233158], "stop_id": 4035662, "stop_desc": "48 AVENUE PAUL VALERY - 95585", "stop_name": "PAUL VALERY"}, "geometry": {"type": "Point", "coordinates": [2.379249633233158, 48.97950042495415]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3b5e89eedf3c5f84ce9cc79096242a0c5d7c3933", "fields": {"departement": "95", "stop_lat": 48.971522595422556, "code_postal": "95268", "stop_lon": 2.3953778742083647, "coord": [48.971522595422556, 2.3953778742083647], "stop_id": 4035670, "stop_desc": "AVENUE FRANCOIS MITTERRAND - 95268", "stop_name": "PLEIN MIDI"}, "geometry": {"type": "Point", "coordinates": [2.3953778742083647, 48.971522595422556]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7ded068a71a76448d4fe9dba7e59c71723898282", "fields": {"departement": "93", "stop_lat": 48.96254996245579, "code_postal": "93072", "stop_lon": 2.3840126733930727, "coord": [48.96254996245579, 2.3840126733930727], "stop_id": 4035678, "stop_desc": "31 AVENUE JULES GUESDE - 93072", "stop_name": "LEO LAGRANGE"}, "geometry": {"type": "Point", "coordinates": [2.3840126733930727, 48.96254996245579]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6f33ec09cd8213b79e692bc5def9df97a6b28be9", "fields": {"departement": "93", "stop_lat": 48.960097426554526, "code_postal": "93072", "stop_lon": 2.38186782564374, "coord": [48.960097426554526, 2.38186782564374], "stop_id": 4035680, "stop_desc": "47 AVENUE MARCEL CACHIN - 93072", "stop_name": "LES PAROUZETS"}, "geometry": {"type": "Point", "coordinates": [2.38186782564374, 48.960097426554526]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "390455233d1d5958b9f9e220e9b1d05664179e8c", "fields": {"departement": "93", "stop_lat": 48.94932063631951, "code_postal": "93072", "stop_lon": 2.3862793551203967, "coord": [48.94932063631951, 2.3862793551203967], "stop_id": 4035687, "stop_desc": "95 BOULEVARD MAXIME GORKI - 93072", "stop_name": "LE GLOBE"}, "geometry": {"type": "Point", "coordinates": [2.3862793551203967, 48.94932063631951]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bafe312ef6a28fd9a639480d850d7a77ba26c8ae", "fields": {"departement": "93", "stop_lat": 48.92390665860271, "code_postal": "93027", "stop_lon": 2.384264180372188, "coord": [48.92390665860271, 2.384264180372188], "stop_id": 4035698, "stop_desc": "BOULEVARD PASTEUR - 93027", "stop_name": "LA COURNEUVE - AUBERVILLIERS RER"}, "geometry": {"type": "Point", "coordinates": [2.384264180372188, 48.92390665860271]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8ce2a2cb502ca94d2fda65dcb8d662dd2b87ad0c", "fields": {"departement": "93", "stop_lat": 48.90480393133661, "code_postal": "93001", "stop_lon": 2.373845042411548, "coord": [48.90480393133661, 2.373845042411548], "stop_id": 4035709, "stop_desc": "FACE 75 AVENUE VICTOR HUGO - 93001", "stop_name": "LA HAIE COQ"}, "geometry": {"type": "Point", "coordinates": [2.373845042411548, 48.90480393133661]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e2549d73c4755db34c3bd77148edec7027713f0d", "fields": {"departement": "75", "stop_lat": 48.90006882773614, "code_postal": "75118", "stop_lon": 2.3700793973012155, "coord": [48.90006882773614, 2.3700793973012155], "stop_id": 4035710, "stop_desc": "AVENUE DE LA PORTE D'AUBERVILLIERS - 75118", "stop_name": "SKANDERBEG"}, "geometry": {"type": "Point", "coordinates": [2.3700793973012155, 48.90006882773614]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "36fecc25516f38d1d25b4386b37051fbbf005ab4", "fields": {"departement": "75", "stop_lat": 48.89267478539982, "code_postal": "75118", "stop_lon": 2.3598661573340323, "coord": [48.89267478539982, 2.3598661573340323], "stop_id": 4035719, "stop_desc": "34 RUE DE LA CHAPELLE - 75118", "stop_name": "LES ROSES"}, "geometry": {"type": "Point", "coordinates": [2.3598661573340323, 48.89267478539982]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "071ee4dc22fb37dfdb3926f2e153fb00e96a5860", "fields": {"departement": "75", "stop_lat": 48.88082998036255, "code_postal": "75110", "stop_lon": 2.3579941644875797, "coord": [48.88082998036255, 2.3579941644875797], "stop_id": 4035728, "stop_desc": "184 RUE DU FAUBOURG SAINT-DENIS - 75110", "stop_name": "GARE DU NORD"}, "geometry": {"type": "Point", "coordinates": [2.3579941644875797, 48.88082998036255]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a5492c070c150dec7231b1fb717b442f17d112da", "fields": {"departement": "75", "stop_lat": 48.879473278409144, "code_postal": "75110", "stop_lon": 2.3557180612431323, "coord": [48.879473278409144, 2.3557180612431323], "stop_id": 4035729, "stop_desc": "33-35 RUE DE SAINT-QUENTIN - 75110", "stop_name": "LA FAYETTE - DUNKERQUE"}, "geometry": {"type": "Point", "coordinates": [2.3557180612431323, 48.879473278409144]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "af777253bd2fb247b2c54314be9aced86ecd913b", "fields": {"departement": "95", "stop_lat": 48.99603815234851, "code_postal": "95585", "stop_lon": 2.370864116699428, "coord": [48.99603815234851, 2.370864116699428], "stop_id": 4035740, "stop_desc": "32 BOULEVARD DU DOCTEUR GALVANI - 95585", "stop_name": "GALVANI - VOLTAIRE"}, "geometry": {"type": "Point", "coordinates": [2.370864116699428, 48.99603815234851]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ccc8fa9e971604894cfadda9847536d7223b2190", "fields": {"departement": "93", "stop_lat": 48.950665169998864, "code_postal": "93007", "stop_lon": 2.4641518334444137, "coord": [48.950665169998864, 2.4641518334444137], "stop_id": 4035747, "stop_desc": "5 AVENUE E.RENAULT - 93007", "stop_name": "DESCARTES - RENAULT"}, "geometry": {"type": "Point", "coordinates": [2.4641518334444137, 48.950665169998864]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c3572336f6d881283486cbafdfd91882c1301eac", "fields": {"departement": "93", "stop_lat": 48.95030571554676, "code_postal": "93007", "stop_lon": 2.4641373075254696, "coord": [48.95030571554676, 2.4641373075254696], "stop_id": 4035748, "stop_desc": "FACE 9 AVENUE EDOUARD RENAULT - 93007", "stop_name": "DESCARTES - RENAULT"}, "geometry": {"type": "Point", "coordinates": [2.4641373075254696, 48.95030571554676]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "116f4e76743e52174fd1b60391947197629edaff", "fields": {"departement": "93", "stop_lat": 48.946742961962975, "code_postal": "93007", "stop_lon": 2.4593532342715596, "coord": [48.946742961962975, 2.4593532342715596], "stop_id": 4035752, "stop_desc": "109 AVENUE DE LA DIVISION LECLERC - 93007", "stop_name": "DIVISION LECLERC - LANGEVIN"}, "geometry": {"type": "Point", "coordinates": [2.4593532342715596, 48.946742961962975]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0be4f7b79cecc9405f927788dec58e6b81aaf6bb", "fields": {"departement": "93", "stop_lat": 48.932960982135306, "code_postal": "93029", "stop_lon": 2.455569683574768, "coord": [48.932960982135306, 2.455569683574768], "stop_id": 4035764, "stop_desc": "RUE ANATOLE FRANCE - 93029", "stop_name": "DRANCY RER"}, "geometry": {"type": "Point", "coordinates": [2.455569683574768, 48.932960982135306]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3bff996e2df064134ac060934d743579cb92c9fa", "fields": {"departement": "93", "stop_lat": 48.92730328852421, "code_postal": "93029", "stop_lon": 2.451410591017012, "coord": [48.92730328852421, 2.451410591017012], "stop_id": 4035768, "stop_desc": "92 RUE ANATOLE FRANCE - 93029", "stop_name": "HENRI ROUANET"}, "geometry": {"type": "Point", "coordinates": [2.451410591017012, 48.92730328852421]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e1de371a28ee7d12ab2c15daa2b7bdf3fc496c71", "fields": {"departement": "93", "stop_lat": 48.924763737630265, "code_postal": "93029", "stop_lon": 2.4474226861997432, "coord": [48.924763737630265, 2.4474226861997432], "stop_id": 4035769, "stop_desc": "RUE ANATOLE FRANCE - 93029", "stop_name": "CIMETIERE DE DRANCY"}, "geometry": {"type": "Point", "coordinates": [2.4474226861997432, 48.924763737630265]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "14038b0a79dc111d5462af4b60de68b2f05101f6", "fields": {"departement": "93", "stop_lat": 48.930884062408396, "code_postal": "93013", "stop_lon": 2.425530431713646, "coord": [48.930884062408396, 2.425530431713646], "stop_id": 4035778, "stop_desc": "PLACE DES DEPORTES - 93013", "stop_name": "LE BOURGET-RER"}, "geometry": {"type": "Point", "coordinates": [2.425530431713646, 48.930884062408396]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2aca99a940862d15ecb97a2b7d71745a5aa0c2f7", "fields": {"departement": "93", "stop_lat": 48.93282676236949, "code_postal": "93013", "stop_lon": 2.423433159202592, "coord": [48.93282676236949, 2.423433159202592], "stop_id": 4035779, "stop_desc": "45 AVENUE DE LA DIVISION LECLERC - 93013", "stop_name": "JEAN JAURES - DIVISION LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.423433159202592, 48.93282676236949]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "88f0f26a7bd5a39ca4dc928a6b3f49aacd6428ae", "fields": {"departement": "93", "stop_lat": 48.93285336721684, "code_postal": "93013", "stop_lon": 2.4239242493787803, "coord": [48.93285336721684, 2.4239242493787803], "stop_id": 4035780, "stop_desc": "2 AVENUE DE LA DIVISION LECLERC - 93013", "stop_name": "JEAN JAURES - DIVISION LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.4239242493787803, 48.93285336721684]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f6d5702a78f2e3a433f50504aaf3c2f50100dda5", "fields": {"departement": "93", "stop_lat": 48.924968772529134, "code_postal": "93027", "stop_lon": 2.4153736130101375, "coord": [48.924968772529134, 2.4153736130101375], "stop_id": 4035784, "stop_desc": "140 AVENUE PAUL VAILLANT-COUTURIER - 93027", "stop_name": "RUE RATEAU"}, "geometry": {"type": "Point", "coordinates": [2.4153736130101375, 48.924968772529134]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "adb021317baa282d7b86909bc94d76f05f96c353", "fields": {"departement": "93", "stop_lat": 48.92116120720275, "code_postal": "93027", "stop_lon": 2.4108130847461395, "coord": [48.92116120720275, 2.4108130847461395], "stop_id": 4035785, "stop_desc": "63 AVENUE PAUL VAILLANT COUTURIER - 93027", "stop_name": "8 MAI 1945 - METRO - TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.4108130847461395, 48.92116120720275]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "597872893376f559d7ed656333e98f61d9b5e310", "fields": {"departement": "93", "stop_lat": 48.92046975508175, "code_postal": "93027", "stop_lon": 2.4099257042648707, "coord": [48.92046975508175, 2.4099257042648707], "stop_id": 4035787, "stop_desc": "49 AVENUE PAUL VAILLANT COUTURIER - 93027", "stop_name": "8 MAI 1945 - MARCHE"}, "geometry": {"type": "Point", "coordinates": [2.4099257042648707, 48.92046975508175]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "215e86abd099f84bdecb5d40d06dd81f923bf26e", "fields": {"departement": "93", "stop_lat": 48.92017298557592, "code_postal": "93027", "stop_lon": 2.4102525716371304, "coord": [48.92017298557592, 2.4102525716371304], "stop_id": 4035788, "stop_desc": "48 AV PAUL VAILLANT COUTURIER - 93027", "stop_name": "8 MAI 1945 - MARCHE"}, "geometry": {"type": "Point", "coordinates": [2.4102525716371304, 48.92017298557592]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "accc23cdd9fdad3ef0857ad418c00bdefd683df3", "fields": {"departement": "93", "stop_lat": 48.91432621093042, "code_postal": "93001", "stop_lon": 2.403835749858755, "coord": [48.91432621093042, 2.403835749858755], "stop_id": 4035792, "stop_desc": "AVENUE JEAN JAURES - 93001", "stop_name": "FORT D'AUBERVILLIERS - METRO"}, "geometry": {"type": "Point", "coordinates": [2.403835749858755, 48.91432621093042]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2781927e3b9c914a46197da285dc5aa6b096f3d3", "fields": {"departement": "93", "stop_lat": 48.901427984542, "code_postal": "93001", "stop_lon": 2.389396639770175, "coord": [48.901427984542, 2.389396639770175], "stop_id": 4035798, "stop_desc": "3 AVENUE JEAN JAURES - 93001", "stop_name": "MAGENTA"}, "geometry": {"type": "Point", "coordinates": [2.389396639770175, 48.901427984542]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a8c264fa7cb7643ed91ebe6b105d4ddf72fddb69", "fields": {"departement": "75", "stop_lat": 48.89879594482221, "code_postal": "75119", "stop_lon": 2.386613227814099, "coord": [48.89879594482221, 2.386613227814099], "stop_id": 4035799, "stop_desc": "5 AVENUE DE LA PORTE DE LA VILLETTE - 75119", "stop_name": "PORTE DE LA VILLETTE"}, "geometry": {"type": "Point", "coordinates": [2.386613227814099, 48.89879594482221]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b0da402d42ab7c4abb918186b9c6a72d32dffdcb", "fields": {"departement": "91", "stop_lat": 48.73664329348613, "code_postal": "91377", "stop_lon": 2.2976980478096194, "coord": [48.73664329348613, 2.2976980478096194], "stop_id": 4314801, "stop_desc": "FACE 3 RUE DU DAUPHINE - 91377", "stop_name": "PERIGORD"}, "geometry": {"type": "Point", "coordinates": [2.2976980478096194, 48.73664329348613]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0a995e792ace244a84609e06d077512786de77e7", "fields": {"departement": "92", "stop_lat": 48.736249304719664, "code_postal": "92002", "stop_lon": 2.30248152466835, "coord": [48.736249304719664, 2.30248152466835], "stop_id": 4314805, "stop_desc": "7 AVENUE LEON JOUHAUX - 92002", "stop_name": "LEON JOUHAUX"}, "geometry": {"type": "Point", "coordinates": [2.30248152466835, 48.736249304719664]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8b297a0efa1ef0dc63b9f086b875da3b4d8f2e48", "fields": {"departement": "91", "stop_lat": 48.73886088602601, "code_postal": "91689", "stop_lon": 2.332199474263897, "coord": [48.73886088602601, 2.332199474263897], "stop_id": 4314817, "stop_desc": "ROUTE DE MONTJEAN - 91689", "stop_name": "MONTJEAN"}, "geometry": {"type": "Point", "coordinates": [2.332199474263897, 48.73886088602601]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9ded37ddf9c340b92685bcc7902bcaeb743dc2f7", "fields": {"departement": "91", "stop_lat": 48.73435784707985, "code_postal": "91689", "stop_lon": 2.335420285739719, "coord": [48.73435784707985, 2.335420285739719], "stop_id": 4314819, "stop_desc": "BOULEVARD DE L'EUROPE - 91689", "stop_name": "CUCHERON"}, "geometry": {"type": "Point", "coordinates": [2.335420285739719, 48.73435784707985]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2acfca4a7ed547638878f268a31eaca51a6ac54c", "fields": {"departement": "91", "stop_lat": 48.73453761736959, "code_postal": "91689", "stop_lon": 2.335719218102518, "coord": [48.73453761736959, 2.335719218102518], "stop_id": 4314820, "stop_desc": "BOULEVARD DE L'EUROPE - 91689", "stop_name": "CUCHERON"}, "geometry": {"type": "Point", "coordinates": [2.335719218102518, 48.73453761736959]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "182e51f3d9e9cdfa1220e7a305558b9d75c25a8e", "fields": {"departement": "94", "stop_lat": 48.746122252953676, "code_postal": "94065", "stop_lon": 2.3544474826124504, "coord": [48.746122252953676, 2.3544474826124504], "stop_id": 4314826, "stop_desc": "44 AVENUE ROBERT SCHUMAN - 94065", "stop_name": "ROBERT SCHUMAN"}, "geometry": {"type": "Point", "coordinates": [2.3544474826124504, 48.746122252953676]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d6377a465179eb8ab437278a8d7ee6c12d8973b9", "fields": {"departement": "94", "stop_lat": 48.75246346958303, "code_postal": "94073", "stop_lon": 2.374050412684415, "coord": [48.75246346958303, 2.374050412684415], "stop_id": 4314836, "stop_desc": "RUE DES ALOUETTES - 94073", "stop_name": "LES ALOUETTES-PONT D'ESPAGNE"}, "geometry": {"type": "Point", "coordinates": [2.374050412684415, 48.75246346958303]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c4cac9883f298ebd351c66f11ab0233e5359c01c", "fields": {"departement": "94", "stop_lat": 48.759205921508666, "code_postal": "94073", "stop_lon": 2.3694466265799434, "coord": [48.759205921508666, 2.3694466265799434], "stop_id": 4314843, "stop_desc": "RUE DE THIAIS - 94073", "stop_name": "LE COR DE CHASSE"}, "geometry": {"type": "Point", "coordinates": [2.3694466265799434, 48.759205921508666]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f88c6870f1410328fd0068aa260e728675b7d587", "fields": {"departement": "94", "stop_lat": 48.76338788403687, "code_postal": "94021", "stop_lon": 2.3583415571494344, "coord": [48.76338788403687, 2.3583415571494344], "stop_id": 4314847, "stop_desc": "AVENUE DE LA CITE - 94021", "stop_name": "MARCHE INTERNATIONAL DE RUNGIS"}, "geometry": {"type": "Point", "coordinates": [2.3583415571494344, 48.76338788403687]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9b6cb9723835803eb027213a2bc06e8922385407", "fields": {"departement": "94", "stop_lat": 48.747215807095856, "code_postal": "94065", "stop_lon": 2.3690450482901046, "coord": [48.747215807095856, 2.3690450482901046], "stop_id": 4314848, "stop_desc": "ROUTE DE FONTAINEBLEAU - 94065", "stop_name": "PONT DE RUNGIS-RER"}, "geometry": {"type": "Point", "coordinates": [2.3690450482901046, 48.747215807095856]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0eacbec93d70ad1b7b4d10c2a5c8942928865e3f", "fields": {"departement": "93", "stop_lat": 48.86441887778646, "code_postal": "93048", "stop_lon": 2.45275696892194, "coord": [48.86441887778646, 2.45275696892194], "stop_id": 4364005, "stop_desc": "128-130 RUE DE ROSNY - 93048", "stop_name": "DANTON"}, "geometry": {"type": "Point", "coordinates": [2.45275696892194, 48.86441887778646]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c128f1d1b8ad80dac3c30ad6242fdfe063112e1d", "fields": {"departement": "93", "stop_lat": 48.87284014299054, "code_postal": "93064", "stop_lon": 2.4777492271916777, "coord": [48.87284014299054, 2.4777492271916777], "stop_id": 4364016, "stop_desc": "50 RUE DU 4EME ZOUAVES - 93064", "stop_name": "GRAND VERGER"}, "geometry": {"type": "Point", "coordinates": [2.4777492271916777, 48.87284014299054]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "14ce5f2a81b8d95ce7109cd7021ebe667851f9a5", "fields": {"departement": "93", "stop_lat": 48.88423567991556, "code_postal": "93064", "stop_lon": 2.4854523315455075, "coord": [48.88423567991556, 2.4854523315455075], "stop_id": 4364022, "stop_desc": "FACE 99 BOULEVARD ALSACE-LORRAINE - 93064", "stop_name": "BOIS-PERRIER NORD"}, "geometry": {"type": "Point", "coordinates": [2.4854523315455075, 48.88423567991556]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "899df19eb4bcbe88320996fe33a6f4922ec915ab", "fields": {"departement": "93", "stop_lat": 48.884156965835444, "code_postal": "93077", "stop_lon": 2.5104992124805396, "coord": [48.884156965835444, 2.5104992124805396], "stop_id": 4364033, "stop_desc": "PLACE EMILE DUCATE - 93077", "stop_name": "CHATEAU DE VILLEMOMBLE"}, "geometry": {"type": "Point", "coordinates": [2.5104992124805396, 48.884156965835444]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a6eaf489968466e1cb0f9d22f260bb02290791af", "fields": {"departement": "93", "stop_lat": 48.88287391562427, "code_postal": "93077", "stop_lon": 2.5151553713886163, "coord": [48.88287391562427, 2.5151553713886163], "stop_id": 4364035, "stop_desc": "91 RUE GRANDE RUE - 93077", "stop_name": "RUE DE NEUILLY"}, "geometry": {"type": "Point", "coordinates": [2.5151553713886163, 48.88287391562427]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c4b4e5558469e07eafd95fbbc089e03b23a0c32e", "fields": {"departement": "91", "stop_lat": 48.705836684388174, "code_postal": "91027", "stop_lon": 2.385900478442477, "coord": [48.705836684388174, 2.385900478442477], "stop_id": 4364128, "stop_desc": "1 AVENUE ARISTIDE BRIAND - 91027", "stop_name": "CENTRE ADMINISTRATIF"}, "geometry": {"type": "Point", "coordinates": [2.385900478442477, 48.705836684388174]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "88c01963462b1969b03dbcfc182f05a275d9a31e", "fields": {"departement": "91", "stop_lat": 48.70646575078744, "code_postal": "91027", "stop_lon": 2.3862134249681155, "coord": [48.70646575078744, 2.3862134249681155], "stop_id": 4364142, "stop_desc": "R PAUL VAILLANT COUTURIER - 91027", "stop_name": "LA POSTE"}, "geometry": {"type": "Point", "coordinates": [2.3862134249681155, 48.70646575078744]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bf56be75e1a8b2918daa7a0ea30aa78e26b07144", "fields": {"departement": "91", "stop_lat": 48.70494778570426, "code_postal": "91432", "stop_lon": 2.335475642559281, "coord": [48.70494778570426, 2.335475642559281], "stop_id": 4373703, "stop_desc": "3 R DE SAVIGNY - 91432", "stop_name": "PLACE LUCIEN BOILLEAU"}, "geometry": {"type": "Point", "coordinates": [2.335475642559281, 48.70494778570426]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "57e5bcff9651f3373257e17235c996935e57fa30", "fields": {"departement": "91", "stop_lat": 48.70086699648631, "code_postal": "91432", "stop_lon": 2.3354214645203717, "coord": [48.70086699648631, 2.3354214645203717], "stop_id": 4373705, "stop_desc": "5 R GUSTAVE EIFFEL - 91432", "stop_name": "RUE DE SAVIGNY"}, "geometry": {"type": "Point", "coordinates": [2.3354214645203717, 48.70086699648631]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "339d3834bd494e7229cd1c75c87e52ecffcdf90e", "fields": {"departement": "91", "stop_lat": 48.70044454734647, "code_postal": "91432", "stop_lon": 2.3379472139484507, "coord": [48.70044454734647, 2.3379472139484507], "stop_id": 4373707, "stop_desc": "13 R GUSTAVE EIFFEL - 91432", "stop_name": "EIFFEL - LESSEPS"}, "geometry": {"type": "Point", "coordinates": [2.3379472139484507, 48.70044454734647]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d8af081e385b100355ea3eb7368486b322a9b632", "fields": {"departement": "91", "stop_lat": 48.68430991609238, "code_postal": "91589", "stop_lon": 2.342345300827472, "coord": [48.68430991609238, 2.342345300827472], "stop_id": 4373718, "stop_desc": "AV JEAN ALLEMANE - 91589", "stop_name": "ALLEMANE - BOILEAU"}, "geometry": {"type": "Point", "coordinates": [2.342345300827472, 48.68430991609238]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "44cf1561bd444e75682e7db84ec94323036985c7", "fields": {"departement": "91", "stop_lat": 48.700754181010744, "code_postal": "91027", "stop_lon": 2.3715967220092815, "coord": [48.700754181010744, 2.3715967220092815], "stop_id": 4376561, "stop_desc": "FACE 36 AVENUE FRANCOIS MITTERRAND - 91027", "stop_name": "MARCHE DES GRAVILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.3715967220092815, 48.700754181010744]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "90eafab82a590f498ec4ee1441bca9dd89e26e67", "fields": {"departement": "91", "stop_lat": 48.691685042643485, "code_postal": "91326", "stop_lon": 2.370450273624753, "coord": [48.691685042643485, 2.370450273624753], "stop_id": 4376566, "stop_desc": "FACE 28 AVENUE DE LA COUR DE FRANCE - 91326", "stop_name": "MAIRIE DE JUVISY"}, "geometry": {"type": "Point", "coordinates": [2.370450273624753, 48.691685042643485]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c6efaa348af027793ff146b4efb5840d9d8a4267", "fields": {"departement": "91", "stop_lat": 48.69121600148547, "code_postal": "91326", "stop_lon": 2.375853545289377, "coord": [48.69121600148547, 2.375853545289377], "stop_id": 4376570, "stop_desc": "R DU MARECHAL JUIN - 91326", "stop_name": "MARCHE DE JUVISY"}, "geometry": {"type": "Point", "coordinates": [2.375853545289377, 48.69121600148547]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b5b4ebf4864f3bc1552fa4e87cd499964afe7f92", "fields": {"departement": "91", "stop_lat": 48.690764432770045, "code_postal": "91326", "stop_lon": 2.381949145916975, "coord": [48.690764432770045, 2.381949145916975], "stop_id": 4376573, "stop_desc": "FACE 43 RUE DES GAULOIS - 91326", "stop_name": "JUVISY-RER"}, "geometry": {"type": "Point", "coordinates": [2.381949145916975, 48.690764432770045]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "32cdb0e323aebf95a0de32b812080eb8a41d99d1", "fields": {"departement": "91", "stop_lat": 48.69847991744048, "code_postal": "91027", "stop_lon": 2.372151947688958, "coord": [48.69847991744048, 2.372151947688958], "stop_id": 4376575, "stop_desc": "10 AV FRANCOIS MITTERRAND - 91027", "stop_name": "PYRAMIDE DE JUVISY"}, "geometry": {"type": "Point", "coordinates": [2.372151947688958, 48.69847991744048]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c398c58379142d75c3e5409bc44a658362bed50e", "fields": {"departement": "91", "stop_lat": 48.70090685562848, "code_postal": "91027", "stop_lon": 2.372044941023077, "coord": [48.70090685562848, 2.372044941023077], "stop_id": 4376584, "stop_desc": "46 AVENUE FRANCOIS MITTERRAND - 91027", "stop_name": "MARCHE DES GRAVILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.372044941023077, 48.70090685562848]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f0e12e5ef4b5c3beb1521a5996d8f71311cb60d4", "fields": {"departement": "91", "stop_lat": 48.71527053273419, "code_postal": "91027", "stop_lon": 2.3717828879033798, "coord": [48.71527053273419, 2.3717828879033798], "stop_id": 4376588, "stop_desc": "PISTE GARE ROUTIERE - 91027", "stop_name": "PORTE DE L'ESSONNE"}, "geometry": {"type": "Point", "coordinates": [2.3717828879033798, 48.71527053273419]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "547a040b121d2867f616ca570b19e13ec78a4c97", "fields": {"departement": "91", "stop_lat": 48.71540535529991, "code_postal": "91027", "stop_lon": 2.371796560540588, "coord": [48.71540535529991, 2.371796560540588], "stop_id": 4377185, "stop_desc": "PISTE GARE ROUTIERE - 91027", "stop_name": "PORTE DE L'ESSONNE"}, "geometry": {"type": "Point", "coordinates": [2.371796560540588, 48.71540535529991]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "64ec094dd0649aab14d6a5b682b317ae07ea00c7", "fields": {"departement": "91", "stop_lat": 48.712943503772166, "code_postal": "91479", "stop_lon": 2.3682363150974677, "coord": [48.712943503772166, 2.3682363150974677], "stop_id": 4377187, "stop_desc": "23-25 AV PAUL VAILLANT COUTURIER - 91479", "stop_name": "CENTRE SPORTIF"}, "geometry": {"type": "Point", "coordinates": [2.3682363150974677, 48.712943503772166]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "30a213d47ea9e27030bcd4848092d2c426661dfc", "fields": {"departement": "91", "stop_lat": 48.713061528609884, "code_postal": "91479", "stop_lon": 2.3633466807417447, "coord": [48.713061528609884, 2.3633466807417447], "stop_id": 4377190, "stop_desc": "AV D'ALSACE-LORRAINE - 91479", "stop_name": "MAIRIE DE PARAY-VIEILLE-POSTE"}, "geometry": {"type": "Point", "coordinates": [2.3633466807417447, 48.713061528609884]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e3453dc38d0edabf96abb691e676090cabe93daf", "fields": {"departement": "91", "stop_lat": 48.7060057028407, "code_postal": "91479", "stop_lon": 2.362759172484374, "coord": [48.7060057028407, 2.362759172484374], "stop_id": 4377193, "stop_desc": "3 AV GABRIEL PERI - 91479", "stop_name": "GABRIEL PERI"}, "geometry": {"type": "Point", "coordinates": [2.362759172484374, 48.7060057028407]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d31d543e1bcc289bfad90808d2da17fc801ec414", "fields": {"departement": "91", "stop_lat": 48.706104564644946, "code_postal": "91479", "stop_lon": 2.3628135437453928, "coord": [48.706104564644946, 2.3628135437453928], "stop_id": 4377194, "stop_desc": "2 AV GABRIEL PERI - 91479", "stop_name": "GABRIEL PERI"}, "geometry": {"type": "Point", "coordinates": [2.3628135437453928, 48.706104564644946]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "028921333ecc4b62105715dde2bc00c0e0e864ec", "fields": {"departement": "91", "stop_lat": 48.700226965627955, "code_postal": "91027", "stop_lon": 2.3582616366624984, "coord": [48.700226965627955, 2.3582616366624984], "stop_id": 4377200, "stop_desc": "FACE 15 R DE LA VOIE VERTE - 91027", "stop_name": "SAINT SAENS - LES OISEAUX"}, "geometry": {"type": "Point", "coordinates": [2.3582616366624984, 48.700226965627955]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3a4f2fa3ae74b1106a8e71ef97d4b561999660d7", "fields": {"departement": "91", "stop_lat": 48.69520279971083, "code_postal": "91589", "stop_lon": 2.3556255049047556, "coord": [48.69520279971083, 2.3556255049047556], "stop_id": 4377204, "stop_desc": "R DES PALOMBES - 91589", "stop_name": "DEBUSSY - CHAMPAGNE"}, "geometry": {"type": "Point", "coordinates": [2.3556255049047556, 48.69520279971083]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cf589954e00b4fd0bf9d67ab5feb75e85b498439", "fields": {"departement": "91", "stop_lat": 48.691685042643485, "code_postal": "91326", "stop_lon": 2.370450273624753, "coord": [48.691685042643485, 2.370450273624753], "stop_id": 4377211, "stop_desc": "FACE 28 AVENUE DE LA COUR DE FRANCE - 91326", "stop_name": "MAIRIE DE JUVISY"}, "geometry": {"type": "Point", "coordinates": [2.370450273624753, 48.691685042643485]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1968958268cf78e5851fe19e132933006a3d7d3b", "fields": {"departement": "91", "stop_lat": 48.69042292706394, "code_postal": "91326", "stop_lon": 2.3817859333141653, "coord": [48.69042292706394, 2.3817859333141653], "stop_id": 4377217, "stop_desc": "FACE 41 RUE DES GAULOIS - 91326", "stop_name": "JUVISY RER"}, "geometry": {"type": "Point", "coordinates": [2.3817859333141653, 48.69042292706394]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d4f6bed48fa20e604ab28a9e8bcace751b53ca3a", "fields": {"departement": "91", "stop_lat": 48.69662242462606, "code_postal": "91326", "stop_lon": 2.3589934050621655, "coord": [48.69662242462606, 2.3589934050621655], "stop_id": 4377222, "stop_desc": "FACE 24 AV GUYNEMER - 91326", "stop_name": "GUYNEMER"}, "geometry": {"type": "Point", "coordinates": [2.3589934050621655, 48.69662242462606]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "158b90273142a0d66284f56596f9d3fc26d69999", "fields": {"departement": "91", "stop_lat": 48.69946259847792, "code_postal": "91027", "stop_lon": 2.3601080668735013, "coord": [48.69946259847792, 2.3601080668735013], "stop_id": 4377225, "stop_desc": "2 - 2 BIS R DES JARDINIERS - 91027", "stop_name": "JARDINIERS"}, "geometry": {"type": "Point", "coordinates": [2.3601080668735013, 48.69946259847792]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ccd95db717d155e00610f1c1916af4e5aae01ffc", "fields": {"departement": "91", "stop_lat": 48.70136040022298, "code_postal": "91589", "stop_lon": 2.3525044043904537, "coord": [48.70136040022298, 2.3525044043904537], "stop_id": 4377617, "stop_desc": "FACE 52 BOULEVARD DES BELGES - 91589", "stop_name": "BOULEVARD DES BELGES"}, "geometry": {"type": "Point", "coordinates": [2.3525044043904537, 48.70136040022298]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3b50695ceaab225c261afac0ad8284bdcf78a8b4", "fields": {"departement": "91", "stop_lat": 48.70137835800327, "code_postal": "91589", "stop_lon": 2.352653783738852, "coord": [48.70137835800327, 2.352653783738852], "stop_id": 4377618, "stop_desc": "FACE 47 BOULEVARD DES BELGES - 91589", "stop_name": "BOULEVARD DES BELGES"}, "geometry": {"type": "Point", "coordinates": [2.352653783738852, 48.70137835800327]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "26b415625074443187db42fd67284c27ee88f9f9", "fields": {"departement": "91", "stop_lat": 48.6932893287219, "code_postal": "91589", "stop_lon": 2.346039219363003, "coord": [48.6932893287219, 2.346039219363003], "stop_id": 4377622, "stop_desc": "72 AVENUE ROBERT LEUTHREAU - 91589", "stop_name": "CITE DES TILLEULS"}, "geometry": {"type": "Point", "coordinates": [2.346039219363003, 48.6932893287219]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "429c2554d4a77e7933f4dbe00403c9d021f7309f", "fields": {"departement": "91", "stop_lat": 48.69036746920007, "code_postal": "91589", "stop_lon": 2.3517951995057187, "coord": [48.69036746920007, 2.3517951995057187], "stop_id": 4377623, "stop_desc": "79 AVENUE GABRIEL PERI - 91589", "stop_name": "PLACE DE LA REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.3517951995057187, 48.69036746920007]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4763d1f6dd70f1a23670aca1be483633d0b10994", "fields": {"departement": "91", "stop_lat": 48.68294156657322, "code_postal": "91589", "stop_lon": 2.3600193632742115, "coord": [48.68294156657322, 2.3600193632742115], "stop_id": 4377629, "stop_desc": "155 AVENUE CARNOT - 91589", "stop_name": "MONTAGNE PAVEE"}, "geometry": {"type": "Point", "coordinates": [2.3600193632742115, 48.68294156657322]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2f74785564badd9bc969ab15cc1cd953f88d33d5", "fields": {"departement": "91", "stop_lat": 48.679662646151584, "code_postal": "91589", "stop_lon": 2.344801703087946, "coord": [48.679662646151584, 2.344801703087946], "stop_id": 4377635, "stop_desc": "FACE 53 AVENUE CHARLES DE GAULLE - 91589", "stop_name": "CENTRE ADMINISTRATIF"}, "geometry": {"type": "Point", "coordinates": [2.344801703087946, 48.679662646151584]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "acb5f2e355e331b19e6867fab9ef40a7a73b4c31", "fields": {"departement": "91", "stop_lat": 48.68106502916987, "code_postal": "91589", "stop_lon": 2.3418834617169133, "coord": [48.68106502916987, 2.3418834617169133], "stop_id": 4377638, "stop_desc": "85 AVENUE ROGER SALENGRO - 91589", "stop_name": "SALENGRO - DUNANT"}, "geometry": {"type": "Point", "coordinates": [2.3418834617169133, 48.68106502916987]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "166bdebe46d63cac1722de926ba83338762afa73", "fields": {"departement": "91", "stop_lat": 48.68762670003191, "code_postal": "91589", "stop_lon": 2.3316478372203764, "coord": [48.68762670003191, 2.3316478372203764], "stop_id": 4377643, "stop_desc": "6 AVENUE DU GENERAL LOUIS MORAND - 91589", "stop_name": "MEUNIERS"}, "geometry": {"type": "Point", "coordinates": [2.3316478372203764, 48.68762670003191]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "796c66be7af987f3d375891228676524b9e95197", "fields": {"departement": "91", "stop_lat": 48.69168964503534, "code_postal": "91589", "stop_lon": 2.334186286277667, "coord": [48.69168964503534, 2.334186286277667], "stop_id": 4377648, "stop_desc": "AVENUE DU GENERAL LOUIS MORAND - 91589", "stop_name": "ZAC LES GATINES - CAPITAINE JEAN D'HERS"}, "geometry": {"type": "Point", "coordinates": [2.334186286277667, 48.69168964503534]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2ed5a84f4970cbd80577b83f5f9f268334727f3c", "fields": {"departement": "92", "stop_lat": 48.76239755022339, "code_postal": "92002", "stop_lon": 2.3083508399551924, "coord": [48.76239755022339, 2.3083508399551924], "stop_id": 4377718, "stop_desc": "127 AVENUE ARISTIDE BRIAND - 92002", "stop_name": "GENERAL DE GAULLE - CROIX DE BERNY"}, "geometry": {"type": "Point", "coordinates": [2.3083508399551924, 48.76239755022339]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c087ba5ad20e02432143ce597610cfe4277d35cb", "fields": {"departement": "94", "stop_lat": 48.75386172672599, "code_postal": "94034", "stop_lon": 2.325251903610218, "coord": [48.75386172672599, 2.325251903610218], "stop_id": 4377732, "stop_desc": "14 RUE ALBERT ROPER - 94034", "stop_name": "ALBERT ROPER"}, "geometry": {"type": "Point", "coordinates": [2.325251903610218, 48.75386172672599]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "27b042567c9fb85b466eb28578de188fc0009196", "fields": {"departement": "94", "stop_lat": 48.75322412428181, "code_postal": "94034", "stop_lon": 2.333870017985791, "coord": [48.75322412428181, 2.333870017985791], "stop_id": 4377737, "stop_desc": "CHEMIN DES OTAGES - 94034", "stop_name": "PARC DE MEDICIS"}, "geometry": {"type": "Point", "coordinates": [2.333870017985791, 48.75322412428181]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f6bc8b33c9c51a3656d48bd2a65cf759889cf56d", "fields": {"departement": "94", "stop_lat": 48.74842438912627, "code_postal": "94065", "stop_lon": 2.341889464457833, "coord": [48.74842438912627, 2.341889464457833], "stop_id": 4377741, "stop_desc": "AVENUE DE FRESNES - 94065", "stop_name": "ORMETEAU"}, "geometry": {"type": "Point", "coordinates": [2.341889464457833, 48.74842438912627]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4250d6b6830e86dcd3e38cd3520df33c78b14fae", "fields": {"departement": "94", "stop_lat": 48.74911625963764, "code_postal": "94065", "stop_lon": 2.345858370868455, "coord": [48.74911625963764, 2.345858370868455], "stop_id": 4377743, "stop_desc": "FACE 5 RUE DE LA GRANGE - 94065", "stop_name": "LA GRANGE"}, "geometry": {"type": "Point", "coordinates": [2.345858370868455, 48.74911625963764]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1ba87a018df03f5ffbb22a9a4f03cdbd7c144b95", "fields": {"departement": "94", "stop_lat": 48.74716531499765, "code_postal": "94065", "stop_lon": 2.351172294523596, "coord": [48.74716531499765, 2.351172294523596], "stop_id": 4377746, "stop_desc": "RUE D'ORLY PROLONGEE - 94065", "stop_name": "TRAVERSIERE"}, "geometry": {"type": "Point", "coordinates": [2.351172294523596, 48.74716531499765]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6880328a8c30d7017f8da105bd6cadff91830a14", "fields": {"departement": "94", "stop_lat": 48.745987423719335, "code_postal": "94065", "stop_lon": 2.354488211356527, "coord": [48.745987423719335, 2.354488211356527], "stop_id": 4377747, "stop_desc": "43 AVENUE ROBERT SCHUMAN - 94065", "stop_name": "ROBERT SCHUMAN"}, "geometry": {"type": "Point", "coordinates": [2.354488211356527, 48.745987423719335]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c8a3a369ec1f5a6992e930906c41a2fde320ed4a", "fields": {"departement": "94", "stop_lat": 48.74671519143844, "code_postal": "94065", "stop_lon": 2.3563096877322587, "coord": [48.74671519143844, 2.3563096877322587], "stop_id": 4377749, "stop_desc": "17 AVENUE ROBERT SCHUMAN - 94065", "stop_name": "RUE D'ARCUEIL"}, "geometry": {"type": "Point", "coordinates": [2.3563096877322587, 48.74671519143844]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3794ca581793c59222ab316f3f5941f3635e9ea9", "fields": {"departement": "94", "stop_lat": 48.74479109752754, "code_postal": "94065", "stop_lon": 2.3598154095515556, "coord": [48.74479109752754, 2.3598154095515556], "stop_id": 4377751, "stop_desc": "RUE DES SOLETS - 94065", "stop_name": "LINDBERGH"}, "geometry": {"type": "Point", "coordinates": [2.3598154095515556, 48.74479109752754]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "893cca3e5a67de32bb5b7bd6e16973953b93e17a", "fields": {"departement": "94", "stop_lat": 48.74641958097029, "code_postal": "94054", "stop_lon": 2.3848103885660987, "coord": [48.74641958097029, 2.3848103885660987], "stop_id": 4377758, "stop_desc": "RUE DU BAS MARIN - 94054", "stop_name": "RUE DES QUINZE ARPENTS"}, "geometry": {"type": "Point", "coordinates": [2.3848103885660987, 48.74641958097029]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "355f37689c04c9ffd3850078ae64d424e9e7230e", "fields": {"departement": "94", "stop_lat": 48.747253795216295, "code_postal": "94054", "stop_lon": 2.388861403805956, "coord": [48.747253795216295, 2.388861403805956], "stop_id": 4377760, "stop_desc": "RUE DU BAS MARIN - 94054", "stop_name": "RUE DU PUITS DIXME"}, "geometry": {"type": "Point", "coordinates": [2.388861403805956, 48.747253795216295]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a0edf320e06d0ed4f490c9bbb877056c222fd18f", "fields": {"departement": "94", "stop_lat": 48.749097806434726, "code_postal": "94065", "stop_lon": 2.3509417492951146, "coord": [48.749097806434726, 2.3509417492951146], "stop_id": 4377779, "stop_desc": "6 PLACE DU GENERAL DE GAULLE - 94065", "stop_name": "GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.3509417492951146, 48.749097806434726]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "43c848417a301b0131f39a40bbee7bf710459d2b", "fields": {"departement": "94", "stop_lat": 48.75972109850383, "code_postal": "94034", "stop_lon": 2.318330844280497, "coord": [48.75972109850383, 2.318330844280497], "stop_id": 4377974, "stop_desc": "FACE 7-9 BOULEVARD PASTEUR - 94034", "stop_name": "PASTEUR"}, "geometry": {"type": "Point", "coordinates": [2.318330844280497, 48.75972109850383]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c45dbbd317bb339eb873c936b421077663321b98", "fields": {"departement": "94", "stop_lat": 48.756961219677066, "code_postal": "94034", "stop_lon": 2.315300390249999, "coord": [48.756961219677066, 2.315300390249999], "stop_id": 4377978, "stop_desc": "FACE 65 BD PASTEUR - 94034", "stop_name": "LA PEUPLERAIE"}, "geometry": {"type": "Point", "coordinates": [2.315300390249999, 48.756961219677066]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "072de0fcc8ea5d41b58b7f906204f291f7924fee", "fields": {"departement": "94", "stop_lat": 48.75521709399899, "code_postal": "94034", "stop_lon": 2.313112568636334, "coord": [48.75521709399899, 2.313112568636334], "stop_id": 4377980, "stop_desc": "72 BD PASTEUR - 94034", "stop_name": "YVON - PASTEUR"}, "geometry": {"type": "Point", "coordinates": [2.313112568636334, 48.75521709399899]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9a92adc9eeb26b1ef80c8925e8c6a395e3c6307b", "fields": {"departement": "94", "stop_lat": 48.75273637115016, "code_postal": "94034", "stop_lon": 2.3131680923667566, "coord": [48.75273637115016, 2.3131680923667566], "stop_id": 4377981, "stop_desc": "AVENUE DU PARC DES SPORTS - 94034", "stop_name": "8 MAI 1945"}, "geometry": {"type": "Point", "coordinates": [2.3131680923667566, 48.75273637115016]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7bfa6e918343a3942bad92a631a3cddbd88aaa50", "fields": {"departement": "94", "stop_lat": 48.752071816727536, "code_postal": "94034", "stop_lon": 2.3161723886118133, "coord": [48.752071816727536, 2.3161723886118133], "stop_id": 4377984, "stop_desc": "11-13 AVENUE DU PARC DES SPORTS - 94034", "stop_name": "PARC DES SPORTS"}, "geometry": {"type": "Point", "coordinates": [2.3161723886118133, 48.752071816727536]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3b16809157b77cc1abf8d79da8ec45e2e4b2c2a5", "fields": {"departement": "94", "stop_lat": 48.75524612449099, "code_postal": "94034", "stop_lon": 2.3276848270817165, "coord": [48.75524612449099, 2.3276848270817165], "stop_id": 4377992, "stop_desc": "AV EDOUARD HERRIOT - 94034", "stop_name": "CLOS LA GARENNE"}, "geometry": {"type": "Point", "coordinates": [2.3276848270817165, 48.75524612449099]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "33fecec3eb2bd58954947ca5e4b7f1878ffcc31e", "fields": {"departement": "94", "stop_lat": 48.75847322976688, "code_postal": "94034", "stop_lon": 2.334848471824227, "coord": [48.75847322976688, 2.334848471824227], "stop_id": 4377994, "stop_desc": "5 R DE LA BUTTE - 94034", "stop_name": "CIMETIERE DE FRESNES"}, "geometry": {"type": "Point", "coordinates": [2.334848471824227, 48.75847322976688]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "99bf0ededa1b61d0236e748f0438399a6f625ab8", "fields": {"departement": "94", "stop_lat": 48.77936119499181, "code_postal": "94038", "stop_lon": 2.3286051752442676, "coord": [48.77936119499181, 2.3286051752442676], "stop_id": 4378010, "stop_desc": "46 RUE DE LA COSARDE - 94038", "stop_name": "PETIT ROBINSON"}, "geometry": {"type": "Point", "coordinates": [2.3286051752442676, 48.77936119499181]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0ff291160664de98092fc7e5632f76c285625c7a", "fields": {"departement": "94", "stop_lat": 48.77882222928945, "code_postal": "94038", "stop_lon": 2.3376490697971875, "coord": [48.77882222928945, 2.3376490697971875], "stop_id": 4378014, "stop_desc": "40 RUE JEAN JAURES - 94038", "stop_name": "MAIRIE DE L'HAY-LES-ROSES"}, "geometry": {"type": "Point", "coordinates": [2.3376490697971875, 48.77882222928945]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a2463d1dc1bbff77bd8a44ffd6c6e74640e37098", "fields": {"departement": "94", "stop_lat": 48.782039755746986, "code_postal": "94038", "stop_lon": 2.3436333359184234, "coord": [48.782039755746986, 2.3436333359184234], "stop_id": 4378021, "stop_desc": "42 AV DU GENERAL DE GAULLE - 94038", "stop_name": "TENNIS"}, "geometry": {"type": "Point", "coordinates": [2.3436333359184234, 48.782039755746986]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "330d27cb761d61d5611774cd2e753e702329228c", "fields": {"departement": "94", "stop_lat": 48.77585602239053, "code_postal": "94038", "stop_lon": 2.3435509827472454, "coord": [48.77585602239053, 2.3435509827472454], "stop_id": 4378029, "stop_desc": "R DE CHEVILLY - 94038", "stop_name": "STADE L'HAYETTE"}, "geometry": {"type": "Point", "coordinates": [2.3435509827472454, 48.77585602239053]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5f7cc3115372be19f775ac1e34f73c100b17bd57", "fields": {"departement": "94", "stop_lat": 48.77760619446858, "code_postal": "94038", "stop_lon": 2.3623863479879135, "coord": [48.77760619446858, 2.3623863479879135], "stop_id": 4378037, "stop_desc": "FACE 103 R PAUL HOCHART - 94038", "stop_name": "RUE PAUL HOCHART"}, "geometry": {"type": "Point", "coordinates": [2.3623863479879135, 48.77760619446858]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f9996f6584f4730cd1ac2fa01717f1467a1351af", "fields": {"departement": "94", "stop_lat": 48.7543631910671, "code_postal": "94034", "stop_lon": 2.3129770321900693, "coord": [48.7543631910671, 2.3129770321900693], "stop_id": 4378045, "stop_desc": "95-97 BOULEVARD PASTEUR - 94034", "stop_name": "VERDUN"}, "geometry": {"type": "Point", "coordinates": [2.3129770321900693, 48.7543631910671]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2d527aff76cdaec568f281287074e7f33a25a0ae", "fields": {"departement": "94", "stop_lat": 48.78794997446607, "code_postal": "94076", "stop_lon": 2.368185847356733, "coord": [48.78794997446607, 2.368185847356733], "stop_id": 4378049, "stop_desc": "167-169 BOULEVARD MAXIME GORKI - 94076", "stop_name": "VILLEJUIF - LOUIS ARAGON"}, "geometry": {"type": "Point", "coordinates": [2.368185847356733, 48.78794997446607]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "592618451ed9fcfd135ee7ec778bf29a73686883", "fields": {"departement": "94", "stop_lat": 48.79250790038271, "code_postal": "94076", "stop_lon": 2.3638219058015024, "coord": [48.79250790038271, 2.3638219058015024], "stop_id": 4378051, "stop_desc": "36 RUE GEORGES LE BIGOT - 94076", "stop_name": "MAIRIE DE VILLEJUIF"}, "geometry": {"type": "Point", "coordinates": [2.3638219058015024, 48.79250790038271]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "476bc9ae2929b6e7e5fe043de70a4fa353b77a94", "fields": {"departement": "94", "stop_lat": 48.804640917008896, "code_postal": "94076", "stop_lon": 2.3663180989772243, "coord": [48.804640917008896, 2.3663180989772243], "stop_id": 4378061, "stop_desc": "58 RUE PASTEUR - 94076", "stop_name": "GROUPE SCOLAIRE PASTEUR"}, "geometry": {"type": "Point", "coordinates": [2.3663180989772243, 48.804640917008896]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e7830296fd28846a6aeee7acae3467baee115ab7", "fields": {"departement": "94", "stop_lat": 48.8042358924373, "code_postal": "94076", "stop_lon": 2.3685765287186755, "coord": [48.8042358924373, 2.3685765287186755], "stop_id": 4378062, "stop_desc": "74-76 RUE HENRI BARBUSSE - 94076", "stop_name": "HENRI BARBUSSE"}, "geometry": {"type": "Point", "coordinates": [2.3685765287186755, 48.8042358924373]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4d7d252312b1cd073049f3689019cd98e533228c", "fields": {"departement": "94", "stop_lat": 48.79554496238662, "code_postal": "94076", "stop_lon": 2.3673605223725263, "coord": [48.79554496238662, 2.3673605223725263], "stop_id": 4378066, "stop_desc": "14 BOULEVARD PAUL VAILLANT COUTURIER - 94076", "stop_name": "PAUL VAILLANT-COUTURIER-METRO"}, "geometry": {"type": "Point", "coordinates": [2.3673605223725263, 48.79554496238662]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "749999a8a3c6165d9603a3dba2756d99d3b96c35", "fields": {"departement": "94", "stop_lat": 48.78461598883045, "code_postal": "94076", "stop_lon": 2.3660348682465173, "coord": [48.78461598883045, 2.3660348682465173], "stop_id": 4378070, "stop_desc": "4 RUE DES VILLAS - 94076", "stop_name": "LES BONS ENFANTS"}, "geometry": {"type": "Point", "coordinates": [2.3660348682465173, 48.78461598883045]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aca3d28e3ddf79d7b8ea2f6fa5a9a784e8dd63b4", "fields": {"departement": "94", "stop_lat": 48.784590306959025, "code_postal": "94076", "stop_lon": 2.3601319255886763, "coord": [48.784590306959025, 2.3601319255886763], "stop_id": 4378072, "stop_desc": "FACE 51 AVENUE KARL MARX - 94076", "stop_name": "AUGUSTE DELAUNE - STADE NAUTIQUE"}, "geometry": {"type": "Point", "coordinates": [2.3601319255886763, 48.784590306959025]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a22fd3bb11fb2050c84afcac8bf19d344d353c52", "fields": {"departement": "94", "stop_lat": 48.78446435901983, "code_postal": "94076", "stop_lon": 2.36073032222307, "coord": [48.78446435901983, 2.36073032222307], "stop_id": 4378073, "stop_desc": "51 AVENUE KARL MARX - 94076", "stop_name": "AUGUSTE DELAUNE - STADE NAUTIQUE"}, "geometry": {"type": "Point", "coordinates": [2.36073032222307, 48.78446435901983]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "95f0d8ebf96e8cdc0a4be6435b60665ca7110d49", "fields": {"departement": "94", "stop_lat": 48.7773468779113, "code_postal": "94038", "stop_lon": 2.354974592688749, "coord": [48.7773468779113, 2.354974592688749], "stop_id": 4378078, "stop_desc": "FACE 141 RUE DE BICETRE - 94038", "stop_name": "LES DAHLIAS"}, "geometry": {"type": "Point", "coordinates": [2.354974592688749, 48.7773468779113]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "204a76e3cc8ac436937dd0f54bf797b825995ea3", "fields": {"departement": "94", "stop_lat": 48.7773468779113, "code_postal": "94038", "stop_lon": 2.354974592688749, "coord": [48.7773468779113, 2.354974592688749], "stop_id": 4378079, "stop_desc": "FACE 141 RUE DE BICETRE - 94038", "stop_name": "LES DAHLIAS"}, "geometry": {"type": "Point", "coordinates": [2.354974592688749, 48.7773468779113]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "df9e1b3a4b41c1f9dbdff16dba59cdf5a0a494d6", "fields": {"departement": "75", "stop_lat": 48.82765302479091, "code_postal": "75114", "stop_lon": 2.3350766799082034, "coord": [48.82765302479091, 2.3350766799082034], "stop_id": 4378086, "stop_desc": "39 BIS AVENUE RENE COTY - 75114", "stop_name": "ALESIA - RENE COTY"}, "geometry": {"type": "Point", "coordinates": [2.3350766799082034, 48.82765302479091]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a137db45b9674639ac084160627cc1c812395d79", "fields": {"departement": "75", "stop_lat": 48.83209291939569, "code_postal": "75114", "stop_lon": 2.3390108437116397, "coord": [48.83209291939569, 2.3390108437116397], "stop_id": 4378090, "stop_desc": "17 BOULEVARD SAINT-JACQUES - 75114", "stop_name": "DAREAU - SAINT-JACQUES"}, "geometry": {"type": "Point", "coordinates": [2.3390108437116397, 48.83209291939569]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "daf1d53d48f62a5523fe9d9cc2f4f0c8d8210ffc", "fields": {"departement": "75", "stop_lat": 48.82156834002888, "code_postal": "75114", "stop_lon": 2.3408887923895567, "coord": [48.82156834002888, 2.3408887923895567], "stop_id": 4378092, "stop_desc": "FACE 43 R GAZAN - 75114", "stop_name": "CITE UNIVERSITAIRE"}, "geometry": {"type": "Point", "coordinates": [2.3408887923895567, 48.82156834002888]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "307195a4dbbf041bf676fdf8f6f1d74c32f4d639", "fields": {"departement": "75", "stop_lat": 48.81910555642793, "code_postal": "75114", "stop_lon": 2.344332015989951, "coord": [48.81910555642793, 2.344332015989951], "stop_id": 4378093, "stop_desc": "FACE 1 AVENUE PIERRE DE COUBERTIN - 75114", "stop_name": "STADE CHARLETY - PORTE DE GENTILLY"}, "geometry": {"type": "Point", "coordinates": [2.344332015989951, 48.81910555642793]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "250fa63b2a9d6ebac13d6e2390bde0c8856930c0", "fields": {"departement": "94", "stop_lat": 48.76091786483258, "code_postal": "94021", "stop_lon": 2.3434132217634307, "coord": [48.76091786483258, 2.3434132217634307], "stop_id": 4378094, "stop_desc": "VOIE SUR VOIE D'ENTREE E1 DU MIN - 94021", "stop_name": "PORTE DE L'HAY-LYONNAIS"}, "geometry": {"type": "Point", "coordinates": [2.3434132217634307, 48.76091786483258]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7879f804aa7f0e637d62b2023b91e6cecc287108", "fields": {"departement": "94", "stop_lat": 48.75871557826966, "code_postal": "94065", "stop_lon": 2.3464445217916294, "coord": [48.75871557826966, 2.3464445217916294], "stop_id": 4378095, "stop_desc": "RUE DU PONT DES HALLES - 94065", "stop_name": "LE DELTA"}, "geometry": {"type": "Point", "coordinates": [2.3464445217916294, 48.75871557826966]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ea7de6a8740d35755b771ad7f3ddaea0e7b4409b", "fields": {"departement": "75", "stop_lat": 48.83352191032987, "code_postal": "75114", "stop_lon": 2.3337558716336257, "coord": [48.83352191032987, 2.3337558716336257], "stop_id": 4378105, "stop_desc": "BOULEVARD SAINT-JACQUES - 75114", "stop_name": "DENFERT-ROCHEREAU-METRO-RER"}, "geometry": {"type": "Point", "coordinates": [2.3337558716336257, 48.83352191032987]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "14078f931beff9097485e5b466d968bfb3ff4595", "fields": {"departement": "75", "stop_lat": 48.82156834002888, "code_postal": "75114", "stop_lon": 2.3408887923895567, "coord": [48.82156834002888, 2.3408887923895567], "stop_id": 4378109, "stop_desc": "FACE 43 R GAZAN - 75114", "stop_name": "CITE UNIVERSITAIRE"}, "geometry": {"type": "Point", "coordinates": [2.3408887923895567, 48.82156834002888]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "14c2bf14e25e5c47a65a80e48415beeb5482088a", "fields": {"departement": "94", "stop_lat": 48.74671519143844, "code_postal": "94065", "stop_lon": 2.3563096877322587, "coord": [48.74671519143844, 2.3563096877322587], "stop_id": 4378118, "stop_desc": "17 AVENUE ROBERT SCHUMAN - 94065", "stop_name": "RUE D'ARCUEIL"}, "geometry": {"type": "Point", "coordinates": [2.3563096877322587, 48.74671519143844]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b8882160f030a7ec8210b1069e0567bab7a8bde8", "fields": {"departement": "94", "stop_lat": 48.75843670476903, "code_postal": "94065", "stop_lon": 2.3491633467954522, "coord": [48.75843670476903, 2.3491633467954522], "stop_id": 4378122, "stop_desc": "BOULEVARD CIRCULAIRE OUEST - 94065", "stop_name": "MARCHE DE RUNGIS-PONDORLY"}, "geometry": {"type": "Point", "coordinates": [2.3491633467954522, 48.75843670476903]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d3c2adac0e615d219763d323ee7a9bb02edb61b5", "fields": {"departement": "94", "stop_lat": 48.76317343511212, "code_postal": "94021", "stop_lon": 2.3492460062814264, "coord": [48.76317343511212, 2.3492460062814264], "stop_id": 4378124, "stop_desc": "AVENUE DES MARAICHERS - 94021", "stop_name": "AGEN"}, "geometry": {"type": "Point", "coordinates": [2.3492460062814264, 48.76317343511212]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d4c8e483862dce8186a0e4b68ae9958215180f72", "fields": {"departement": "94", "stop_lat": 48.764862757592766, "code_postal": "94021", "stop_lon": 2.3530125029203894, "coord": [48.764862757592766, 2.3530125029203894], "stop_id": 4378125, "stop_desc": "AVENUE DES MARAICHERS - 94021", "stop_name": "CHATEAURENARD"}, "geometry": {"type": "Point", "coordinates": [2.3530125029203894, 48.764862757592766]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e6ab0dc43bfb520916598d8e1a140c46900fa73d", "fields": {"departement": "91", "stop_lat": 48.708322622460564, "code_postal": "91479", "stop_lon": 2.3711942807962907, "coord": [48.708322622460564, 2.3711942807962907], "stop_id": 4378130, "stop_desc": "BOULEVARD DE FONTAINEBLEAU - 91479", "stop_name": "ARISTIDE BRIAND"}, "geometry": {"type": "Point", "coordinates": [2.3711942807962907, 48.708322622460564]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f038a0ead408fa41ba654cc1cb766800eab4dd34", "fields": {"departement": "91", "stop_lat": 48.70667758834862, "code_postal": "91027", "stop_lon": 2.3716821178952556, "coord": [48.70667758834862, 2.3716821178952556], "stop_id": 4378132, "stop_desc": "AVENUE FRANCOIS MITTERRAND - 91027", "stop_name": "BELLE ETOILE"}, "geometry": {"type": "Point", "coordinates": [2.3716821178952556, 48.70667758834862]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "85c7597b65dcf77500b6419bdf1850704bc4f3b6", "fields": {"departement": "91", "stop_lat": 48.708459854175295, "code_postal": "91027", "stop_lon": 2.3893661666025343, "coord": [48.708459854175295, 2.3893661666025343], "stop_id": 4378138, "stop_desc": "6 PL DE L'EGLISE - 91027", "stop_name": "PLACE DE L'EGLISE"}, "geometry": {"type": "Point", "coordinates": [2.3893661666025343, 48.708459854175295]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4e4303d930a6bf3a9685fcda5c0512788bccc04f", "fields": {"departement": "91", "stop_lat": 48.711650315597296, "code_postal": "91027", "stop_lon": 2.3903744420213293, "coord": [48.711650315597296, 2.3903744420213293], "stop_id": 4378141, "stop_desc": "AV HENRI DUNANT - 91027", "stop_name": "CLOS NOLLET"}, "geometry": {"type": "Point", "coordinates": [2.3903744420213293, 48.711650315597296]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "368fc1c276517f51711e875ff8cfa4bcd6f0f45d", "fields": {"departement": "91", "stop_lat": 48.71895664834559, "code_postal": "91027", "stop_lon": 2.4097663530436666, "coord": [48.71895664834559, 2.4097663530436666], "stop_id": 4378148, "stop_desc": "15-17 R D'ABLON - 91027", "stop_name": "CARON"}, "geometry": {"type": "Point", "coordinates": [2.4097663530436666, 48.71895664834559]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "be6c688cabb25027c4efa27044148176212e8dc0", "fields": {"departement": "93", "stop_lat": 48.904149780361635, "code_postal": "93001", "stop_lon": 2.3922758579397665, "coord": [48.904149780361635, 2.3922758579397665], "stop_id": 4035797, "stop_desc": "57 AVENUE JEAN JAURES - 93001", "stop_name": "QUATRE CHEMINS-METRO"}, "geometry": {"type": "Point", "coordinates": [2.3922758579397665, 48.904149780361635]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c6a0d39ccf302b56399246ac47546f60921d343f", "fields": {"departement": "75", "stop_lat": 48.88450329345483, "code_postal": "75119", "stop_lon": 2.369170129386173, "coord": [48.88450329345483, 2.369170129386173], "stop_id": 4035808, "stop_desc": "11 AVENUE DE FLANDRE - 75119", "stop_name": "QUAI DE LA SEINE - STALINGRAD"}, "geometry": {"type": "Point", "coordinates": [2.369170129386173, 48.88450329345483]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "235c29f2716a6b353d31cdd898c321f2a8417524", "fields": {"departement": "75", "stop_lat": 48.880711840653206, "code_postal": "75110", "stop_lon": 2.3644803008586255, "coord": [48.880711840653206, 2.3644803008586255], "stop_id": 4035811, "stop_desc": "217 RUE DU FAUBOURG SAINT-MARTIN - 75110", "stop_name": "LOUIS BLANC"}, "geometry": {"type": "Point", "coordinates": [2.3644803008586255, 48.880711840653206]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "21753ff5171415115f5641e6cd6d2d1bcf348ec2", "fields": {"departement": "75", "stop_lat": 48.87568923822874, "code_postal": "75110", "stop_lon": 2.358114733926893, "coord": [48.87568923822874, 2.358114733926893], "stop_id": 4035815, "stop_desc": "76 BOULEVARD DE STRASBOURG - 75110", "stop_name": "GARE DE L'EST"}, "geometry": {"type": "Point", "coordinates": [2.358114733926893, 48.87568923822874]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "886e8fb8c6e97ef3c32dfa1a4a591d237338ecba", "fields": {"departement": "75", "stop_lat": 48.87628189386968, "code_postal": "75110", "stop_lon": 2.3608264014869884, "coord": [48.87628189386968, 2.3608264014869884], "stop_id": 4035817, "stop_desc": "156 RUE DU FAUBOURG SAINT-MARTIN - 75110", "stop_name": "VERDUN"}, "geometry": {"type": "Point", "coordinates": [2.3608264014869884, 48.87628189386968]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "11ba159f5ac52676a5379e1b9034ca27079120f1", "fields": {"departement": "75", "stop_lat": 48.88233740972725, "code_postal": "75110", "stop_lon": 2.3690189003299653, "coord": [48.88233740972725, 2.3690189003299653], "stop_id": 4035818, "stop_desc": "FACE 247 RUE LA FAYETTE - 75110", "stop_name": "JAURES - STALINGRAD"}, "geometry": {"type": "Point", "coordinates": [2.3690189003299653, 48.88233740972725]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fb9198563d4dcc0e5e061a98bb1b0d15a227418c", "fields": {"departement": "93", "stop_lat": 48.923705436403374, "code_postal": "93029", "stop_lon": 2.445061102721301, "coord": [48.923705436403374, 2.445061102721301], "stop_id": 4035826, "stop_desc": "39-41 RUE SADI CARNOT - 93029", "stop_name": "MAIRIE DE DRANCY"}, "geometry": {"type": "Point", "coordinates": [2.445061102721301, 48.923705436403374]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fa533bb532cbe882fb92e519fbb1369b2d8f86b7", "fields": {"departement": "93", "stop_lat": 48.94761553926856, "code_postal": "93007", "stop_lon": 2.4585093604450625, "coord": [48.94761553926856, 2.4585093604450625], "stop_id": 4035827, "stop_desc": "AVENUE DES COSMONAUTES - 93007", "stop_name": "ROND-POINT DE LA DIVISION LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.4585093604450625, 48.94761553926856]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d5fa282cc92b48a83320fbdc84ba25b9c5ce25ea", "fields": {"departement": "94", "stop_lat": 48.82416747810293, "code_postal": "94017", "stop_lon": 2.4962653708220754, "coord": [48.82416747810293, 2.4962653708220754], "stop_id": 4035933, "stop_desc": "202 BOULEVARD DE STALINGRAD - 94017", "stop_name": "GENERAL DE GAULLE - STALINGRAD"}, "geometry": {"type": "Point", "coordinates": [2.4962653708220754, 48.82416747810293]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d41cc0c1c21d7850f9ca6c69236ad8b480013f38", "fields": {"departement": "94", "stop_lat": 48.811114990867424, "code_postal": "94068", "stop_lon": 2.4765887691953345, "coord": [48.811114990867424, 2.4765887691953345], "stop_id": 4035940, "stop_desc": "FACE 52 AVENUE GODEFROY CAVAIGNAC - 94068", "stop_name": "LIBERATION - CONDE"}, "geometry": {"type": "Point", "coordinates": [2.4765887691953345, 48.811114990867424]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b831a5eb7ec034a447103e83793962784da94dbb", "fields": {"departement": "94", "stop_lat": 48.80433445713847, "code_postal": "94068", "stop_lon": 2.4720260310108393, "coord": [48.80433445713847, 2.4720260310108393], "stop_id": 4035947, "stop_desc": "45-47 RUE DES REMISES - 94068", "stop_name": "RUE DES REMISES"}, "geometry": {"type": "Point", "coordinates": [2.4720260310108393, 48.80433445713847]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3e69869abbbd11eb5f32c314d6dee89c2817dac5", "fields": {"departement": "94", "stop_lat": 48.793965959282545, "code_postal": "94028", "stop_lon": 2.4605176061845695, "coord": [48.793965959282545, 2.4605176061845695], "stop_id": 4035953, "stop_desc": "RUE DE PARIS - 94028", "stop_name": "EGLISE DE CRETEIL"}, "geometry": {"type": "Point", "coordinates": [2.4605176061845695, 48.793965959282545]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ebaf07c6fc36b3e8f1358733ba8c65705cdd518f", "fields": {"departement": "94", "stop_lat": 48.80734290991733, "code_postal": "94046", "stop_lon": 2.4382199658929267, "coord": [48.80734290991733, 2.4382199658929267], "stop_id": 4035963, "stop_desc": "179 AVENUE DU GENERAL LECLERC - 94046", "stop_name": "CECILE"}, "geometry": {"type": "Point", "coordinates": [2.4382199658929267, 48.80734290991733]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9566d38bc4634752339445730323fd19ae6c4282", "fields": {"departement": "94", "stop_lat": 48.8074424310896, "code_postal": "94046", "stop_lon": 2.437444548191373, "coord": [48.8074424310896, 2.437444548191373], "stop_id": 4035964, "stop_desc": "38 AVENUE DU GENERAL LECLERC - 94046", "stop_name": "CECILE"}, "geometry": {"type": "Point", "coordinates": [2.437444548191373, 48.8074424310896]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fab1f8b3bf4ca24d282d35c039671f5150aecfab", "fields": {"departement": "94", "stop_lat": 48.80866666037178, "code_postal": "94046", "stop_lon": 2.4351744524613728, "coord": [48.80866666037178, 2.4351744524613728], "stop_id": 4035966, "stop_desc": "FACE 149 AVENUE DU GENERAL LECLERC - 94046", "stop_name": "STADE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.4351744524613728, 48.80866666037178]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "140c05fb4eb3059ddbc2e3b3db856c65adf3127d", "fields": {"departement": "94", "stop_lat": 48.81064656812028, "code_postal": "94046", "stop_lon": 2.4319666864318217, "coord": [48.81064656812028, 2.4319666864318217], "stop_id": 4035967, "stop_desc": "103 AVENUE DU GENERAL LECLERC - 94046", "stop_name": "8 MAI 1945"}, "geometry": {"type": "Point", "coordinates": [2.4319666864318217, 48.81064656812028]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4a457318b3bfbfcbb264340ee61a5083b64a7ccc", "fields": {"departement": "94", "stop_lat": 48.81004392098946, "code_postal": "94046", "stop_lon": 2.4325507264243877, "coord": [48.81004392098946, 2.4325507264243877], "stop_id": 4035968, "stop_desc": "AVENUE DU GENERAL LECLERC - 94046", "stop_name": "8 MAI 1945"}, "geometry": {"type": "Point", "coordinates": [2.4325507264243877, 48.81004392098946]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dd8cdc54df13893f33ba656a21630aaf87bae540", "fields": {"departement": "75", "stop_lat": 48.84397806224592, "code_postal": "75112", "stop_lon": 2.3731893823763586, "coord": [48.84397806224592, 2.3731893823763586], "stop_id": 4035988, "stop_desc": "FACE 191 RUE DE BERCY - 75112", "stop_name": "GARE DE LYON"}, "geometry": {"type": "Point", "coordinates": [2.3731893823763586, 48.84397806224592]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7e1bc2a410bfc408e059b5d328c78eefe53adbfc", "fields": {"departement": "75", "stop_lat": 48.84591927095906, "code_postal": "75112", "stop_lon": 2.373503924985088, "coord": [48.84591927095906, 2.373503924985088], "stop_id": 4035992, "stop_desc": "FACE 21 BOULEVARD DIDEROT - 75112", "stop_name": "GARE DE LYON - DIDEROT."}, "geometry": {"type": "Point", "coordinates": [2.373503924985088, 48.84591927095906]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "74c6cd0ba7d163ee61f75eaa7d71f0c2c2f607d1", "fields": {"departement": "94", "stop_lat": 48.82122092756626, "code_postal": "94018", "stop_lon": 2.412699445540962, "coord": [48.82122092756626, 2.412699445540962], "stop_id": 4035994, "stop_desc": "27-29 RUE VICTOR HUGO - 94018", "stop_name": "CHARENTON-ECOLES"}, "geometry": {"type": "Point", "coordinates": [2.412699445540962, 48.82122092756626]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e272afffb08456cd384aefc4efbda23848a11780", "fields": {"departement": "94", "stop_lat": 48.81517164208101, "code_postal": "94017", "stop_lon": 2.4814717708253067, "coord": [48.81517164208101, 2.4814717708253067], "stop_id": 4035999, "stop_desc": "57 AVENUE CHARLES FLOQUET - 94017", "stop_name": "CHARLES FLOQUET - DIDEROT"}, "geometry": {"type": "Point", "coordinates": [2.4814717708253067, 48.81517164208101]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ccf716866849a747c21ded2b9ec64da9f9abb6e7", "fields": {"departement": "94", "stop_lat": 48.80702898783379, "code_postal": "94017", "stop_lon": 2.526216596540736, "coord": [48.80702898783379, 2.526216596540736], "stop_id": 4036173, "stop_desc": "87 AVENUE MARX DORMOY - 94017", "stop_name": "MUSEE DE LA RESISTANCE"}, "geometry": {"type": "Point", "coordinates": [2.526216596540736, 48.80702898783379]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "422c15408dfa4cf4217d0b3942a2c125ee39cc69", "fields": {"departement": "94", "stop_lat": 48.812500911822575, "code_postal": "94017", "stop_lon": 2.5156354416957813, "coord": [48.812500911822575, 2.5156354416957813], "stop_id": 4036176, "stop_desc": "1 AVENUE MARX DORMOY - 94017", "stop_name": "RUE DU MONUMENT"}, "geometry": {"type": "Point", "coordinates": [2.5156354416957813, 48.812500911822575]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f6b4300e9dd44cf93e28ea6d189e947f6e373459", "fields": {"departement": "94", "stop_lat": 48.81317916036105, "code_postal": "94017", "stop_lon": 2.5128343715435313, "coord": [48.81317916036105, 2.5128343715435313], "stop_id": 4036177, "stop_desc": "43 RUE LOUIS TALAMONI - 94017", "stop_name": "MAIRIE DE CHAMPIGNY"}, "geometry": {"type": "Point", "coordinates": [2.5128343715435313, 48.81317916036105]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "241a9673edff9d72b94d8e50353458f64b0721a8", "fields": {"departement": "94", "stop_lat": 48.81975942429994, "code_postal": "94017", "stop_lon": 2.485499603323852, "coord": [48.81975942429994, 2.485499603323852], "stop_id": 4036183, "stop_desc": "25 AVENUE ROGER SALENGRO - 94017", "stop_name": "LA FOURCHETTE DE CHAMPIGNY"}, "geometry": {"type": "Point", "coordinates": [2.485499603323852, 48.81975942429994]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6b49529d9d1fc47a4364caba27a6f1ea55f3ffdb", "fields": {"departement": "94", "stop_lat": 48.82052837728242, "code_postal": "94042", "stop_lon": 2.4738102453124604, "coord": [48.82052837728242, 2.4738102453124604], "stop_id": 4036185, "stop_desc": "PLACE DE VERDUN - 94042", "stop_name": "VERDUN"}, "geometry": {"type": "Point", "coordinates": [2.4738102453124604, 48.82052837728242]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "40fc1ad5bbe32fa88d4db97c5244793d8b82ba2f", "fields": {"departement": "94", "stop_lat": 48.8357724958462, "code_postal": "94052", "stop_lon": 2.4728837253016107, "coord": [48.8357724958462, 2.4728837253016107], "stop_id": 4036188, "stop_desc": "AV GEORGES CLEMENCEAU - 94052", "stop_name": "NOGENT-SUR-MARNE RER - PIERRE SEMARD"}, "geometry": {"type": "Point", "coordinates": [2.4728837253016107, 48.8357724958462]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dc1ced38d8627a244218485ce5ea0602430bbe9d", "fields": {"departement": "75", "stop_lat": 48.83894023183105, "code_postal": "75112", "stop_lon": 2.460855919192387, "coord": [48.83894023183105, 2.460855919192387], "stop_id": 4036189, "stop_desc": "AV DE NOGENT - 75112", "stop_name": "PORTE JAUNE"}, "geometry": {"type": "Point", "coordinates": [2.460855919192387, 48.83894023183105]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6c2a8fa7708cb45250581679e2ba5813eaa578aa", "fields": {"departement": "75", "stop_lat": 48.84420733285396, "code_postal": "75112", "stop_lon": 2.4416686940517773, "coord": [48.84420733285396, 2.4416686940517773], "stop_id": 4036191, "stop_desc": "AVENUE DE NOGENT - 75112", "stop_name": "CHATEAU DE VINCENNES"}, "geometry": {"type": "Point", "coordinates": [2.4416686940517773, 48.84420733285396]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cd8796364162d20c21e4541f0f7979635f8bc299", "fields": {"departement": "94", "stop_lat": 48.84479511335644, "code_postal": "94080", "stop_lon": 2.4374894541796297, "coord": [48.84479511335644, 2.4374894541796297], "stop_id": 4036192, "stop_desc": "12 AVENUE DE PARIS - 94080", "stop_name": "AVENUE DU CHATEAU"}, "geometry": {"type": "Point", "coordinates": [2.4374894541796297, 48.84479511335644]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3d1d8830107fcbd9249d549bc7ee8aeb681e5c74", "fields": {"departement": "75", "stop_lat": 48.84433838362532, "code_postal": "75112", "stop_lon": 2.4105815975354195, "coord": [48.84433838362532, 2.4105815975354195], "stop_id": 4036197, "stop_desc": "1 AVENUE COURTELINE - 75112", "stop_name": "PORTE DE SAINT-MANDE"}, "geometry": {"type": "Point", "coordinates": [2.4105815975354195, 48.84433838362532]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "02579d07da15ce568a9dc7a49b7a1c53a5994d08", "fields": {"departement": "75", "stop_lat": 48.84166320820454, "code_postal": "75112", "stop_lon": 2.3872124455710426, "coord": [48.84166320820454, 2.3872124455710426], "stop_id": 4036202, "stop_desc": "AVENUE DAUMESNIL - 75112", "stop_name": "MAIRIE DU 12E"}, "geometry": {"type": "Point", "coordinates": [2.3872124455710426, 48.84166320820454]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "844d58234acc5bfcd95a43a39b372b902280f867", "fields": {"departement": "75", "stop_lat": 48.84644830763424, "code_postal": "75112", "stop_lon": 2.3773307944168156, "coord": [48.84644830763424, 2.3773307944168156], "stop_id": 4036204, "stop_desc": "69 AVENUE DAUMESNIL - 75112", "stop_name": "DAUMESNIL - DIDEROT"}, "geometry": {"type": "Point", "coordinates": [2.3773307944168156, 48.84644830763424]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aaf6ba3a1bfca6bbd6d76ccf1d82906288a6f05c", "fields": {"departement": "75", "stop_lat": 48.84369043264488, "code_postal": "75112", "stop_lon": 2.373284500119991, "coord": [48.84369043264488, 2.373284500119991], "stop_id": 4036206, "stop_desc": "179 RUE DE BERCY - 75112", "stop_name": "GARE DE LYON"}, "geometry": {"type": "Point", "coordinates": [2.373284500119991, 48.84369043264488]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "288b578772988c4acaa7548a5dccbde1a2659a51", "fields": {"departement": "75", "stop_lat": 48.83559618711016, "code_postal": "75112", "stop_lon": 2.4060628123214385, "coord": [48.83559618711016, 2.4060628123214385], "stop_id": 4036212, "stop_desc": "278-280 AVENUE DAUMESNIL - 75112", "stop_name": "PORTE DOREE"}, "geometry": {"type": "Point", "coordinates": [2.4060628123214385, 48.83559618711016]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b91481fef458faf23e8c8b235c260dd231fcc14b", "fields": {"departement": "75", "stop_lat": 48.84056444258899, "code_postal": "75112", "stop_lon": 2.409228289664324, "coord": [48.84056444258899, 2.409228289664324], "stop_id": 4036213, "stop_desc": "BD SOULT - 75112", "stop_name": "MONTEMPOIVRE"}, "geometry": {"type": "Point", "coordinates": [2.409228289664324, 48.84056444258899]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7e212fa1d8dc71eaa6dd3ae8ce9338017674d148", "fields": {"departement": "94", "stop_lat": 48.84508719554478, "code_postal": "94080", "stop_lon": 2.4320159489963507, "coord": [48.84508719554478, 2.4320159489963507], "stop_id": 4036218, "stop_desc": "21 AVENUE DE PARIS - 94080", "stop_name": "VIGNERONS"}, "geometry": {"type": "Point", "coordinates": [2.4320159489963507, 48.84508719554478]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bd72eb850ac654eb2ede166be64a9f9ae18ef90f", "fields": {"departement": "94", "stop_lat": 48.81824154779597, "code_postal": "94017", "stop_lon": 2.4917422856669598, "coord": [48.81824154779597, 2.4917422856669598], "stop_id": 4036229, "stop_desc": "82 BIS AVENUE ROGER SALENGRO - 94017", "stop_name": "ARISTIDE BRIAND - LE PLANT"}, "geometry": {"type": "Point", "coordinates": [2.4917422856669598, 48.81824154779597]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "53fa22e93500ca494f9b2508a6bd0845104f923c", "fields": {"departement": "94", "stop_lat": 48.81025489203839, "code_postal": "94017", "stop_lon": 2.520934834992837, "coord": [48.81025489203839, 2.520934834992837], "stop_id": 4036236, "stop_desc": "38-40 AVENUE MARX DORMOY - 94017", "stop_name": "MARTELET"}, "geometry": {"type": "Point", "coordinates": [2.520934834992837, 48.81025489203839]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "409a0650f9ab17fd5c4d42e1a3e34824964182f3", "fields": {"departement": "77", "stop_lat": 48.86784741459195, "code_postal": "77108", "stop_lon": 2.5720620072994205, "coord": [48.86784741459195, 2.5720620072994205], "stop_id": 4036246, "stop_desc": "108 AVENUE DU MARECHAL FOCH - 77108", "stop_name": "RUE DU PORT"}, "geometry": {"type": "Point", "coordinates": [2.5720620072994205, 48.86784741459195]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a98a5c3a9e20124bb51ab0fad6c862c4fc34052c", "fields": {"departement": "93", "stop_lat": 48.88208234058181, "code_postal": "93032", "stop_lon": 2.5382092607526596, "coord": [48.88208234058181, 2.5382092607526596], "stop_id": 4036253, "stop_desc": "37 AVENUE DU PRESIDENT POMPIDOU - 93032", "stop_name": "FLORIAN"}, "geometry": {"type": "Point", "coordinates": [2.5382092607526596, 48.88208234058181]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2adf9d279b24c9988e49480e0d0ce932d2dd9778", "fields": {"departement": "93", "stop_lat": 48.884923836097904, "code_postal": "93077", "stop_lon": 2.5020799344980236, "coord": [48.884923836097904, 2.5020799344980236], "stop_id": 4036260, "stop_desc": "FACE 67 AV DE ROSNY - 93077", "stop_name": "MEISSONIER"}, "geometry": {"type": "Point", "coordinates": [2.5020799344980236, 48.884923836097904]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ab0a1b68563d0aef249e097a0ac2994dd56d5e61", "fields": {"departement": "93", "stop_lat": 48.88445147468918, "code_postal": "93064", "stop_lon": 2.485371183853036, "coord": [48.88445147468918, 2.485371183853036], "stop_id": 4036263, "stop_desc": "91 BOULEVARD ALSACE-LORRAINE - 93064", "stop_name": "BOIS-PERRIER NORD"}, "geometry": {"type": "Point", "coordinates": [2.485371183853036, 48.88445147468918]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cccb332d3e206fbf6a5dff76c52afb7fb56e8224", "fields": {"departement": "93", "stop_lat": 48.88823770072594, "code_postal": "93053", "stop_lon": 2.450166132400812, "coord": [48.88823770072594, 2.450166132400812], "stop_id": 4036271, "stop_desc": "FACE 41 BI RUE ANATOLE FRANCE - 93053", "stop_name": "HELENE"}, "geometry": {"type": "Point", "coordinates": [2.450166132400812, 48.88823770072594]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ee6a1fed3e0308a1c85b6723dca8432622982564", "fields": {"departement": "93", "stop_lat": 48.880538625445055, "code_postal": "93063", "stop_lon": 2.436727356200238, "coord": [48.880538625445055, 2.436727356200238], "stop_id": 4036275, "stop_desc": "94 RUE DE LA REPUBLIQUE - 93063", "stop_name": "GABRIEL HUSSON"}, "geometry": {"type": "Point", "coordinates": [2.436727356200238, 48.880538625445055]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "36fb85a155fe351ee66180a31bf5f0d708fc7529", "fields": {"departement": "93", "stop_lat": 48.878870653419405, "code_postal": "93063", "stop_lon": 2.432241214103226, "coord": [48.878870653419405, 2.432241214103226], "stop_id": 4036276, "stop_desc": "FACE 58 RUE FLOREAL - 93063", "stop_name": "LES NOYERS"}, "geometry": {"type": "Point", "coordinates": [2.432241214103226, 48.878870653419405]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "de29603f15c7da141d001ede6e3a061d90690e8f", "fields": {"departement": "93", "stop_lat": 48.87796712857922, "code_postal": "93006", "stop_lon": 2.426830146332843, "coord": [48.87796712857922, 2.426830146332843], "stop_id": 4036277, "stop_desc": "217 RUE SADI CARNOT - 93006", "stop_name": "FLOREAL"}, "geometry": {"type": "Point", "coordinates": [2.426830146332843, 48.87796712857922]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3360ff94fbf3629ac5a15cec95e52fc17355cb41", "fields": {"departement": "93", "stop_lat": 48.87636861120778, "code_postal": "93006", "stop_lon": 2.4251923480377013, "coord": [48.87636861120778, 2.4251923480377013], "stop_id": 4036278, "stop_desc": "FACE 214 AVENUE PASTEUR - 93006", "stop_name": "CIMETIERE DE BAGNOLET"}, "geometry": {"type": "Point", "coordinates": [2.4251923480377013, 48.87636861120778]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5d445a8528ec7bc31c218b84dd82918d24f5edff", "fields": {"departement": "93", "stop_lat": 48.87963324271645, "code_postal": "93045", "stop_lon": 2.4220911214059, "coord": [48.87963324271645, 2.4220911214059], "stop_id": 4036279, "stop_desc": "37-39 AVENUE DU MARECHAL JUIN - 93045", "stop_name": "JALENCLOUD"}, "geometry": {"type": "Point", "coordinates": [2.4220911214059, 48.87963324271645]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9be77c93f0097d83940f6e86f4a28af7dc78c5c0", "fields": {"departement": "93", "stop_lat": 48.88021901272251, "code_postal": "93045", "stop_lon": 2.4198164856309488, "coord": [48.88021901272251, 2.4198164856309488], "stop_id": 4036280, "stop_desc": "33 BOULEVARD DE LA LIBERTE - 93045", "stop_name": "MARECHAL JUIN"}, "geometry": {"type": "Point", "coordinates": [2.4198164856309488, 48.88021901272251]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "119608c342fbeb344d27a990c9ec7055f6906359", "fields": {"departement": "75", "stop_lat": 48.86897362596347, "code_postal": "75110", "stop_lon": 2.36778461159907, "coord": [48.86897362596347, 2.36778461159907], "stop_id": 4036289, "stop_desc": "31/33 RUE DU FAUBOURG DU TEMPLE - 75110", "stop_name": "JULES FERRY"}, "geometry": {"type": "Point", "coordinates": [2.36778461159907, 48.86897362596347]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4a9165e5e4c5fceef19c353dc87078d947575327", "fields": {"departement": "75", "stop_lat": 48.86287390987719, "code_postal": "75103", "stop_lon": 2.354213758372903, "coord": [48.86287390987719, 2.354213758372903], "stop_id": 4036293, "stop_desc": "59 RUE BEAUBOURG - 75103", "stop_name": "GRENIER SAINT-LAZARE - QUARTIER DE L'HORLOGE"}, "geometry": {"type": "Point", "coordinates": [2.354213758372903, 48.86287390987719]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4112ba246865e2db0faba15f276f29635dd36cf8", "fields": {"departement": "75", "stop_lat": 48.865821809644764, "code_postal": "75103", "stop_lon": 2.353928649583883, "coord": [48.865821809644764, 2.353928649583883], "stop_id": 4036300, "stop_desc": "37-39 RUE REAUMUR - 75103", "stop_name": "REAUMUR - ARTS ET METIERS"}, "geometry": {"type": "Point", "coordinates": [2.353928649583883, 48.865821809644764]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c41cab4dcb23f9a77c81d78a464f2709e0048c90", "fields": {"departement": "75", "stop_lat": 48.8649490060928, "code_postal": "75103", "stop_lon": 2.3601265126259983, "coord": [48.8649490060928, 2.3601265126259983], "stop_id": 4036301, "stop_desc": "FACE 171 RUE DU TEMPLE - 75103", "stop_name": "SQUARE DU TEMPLE - MAIRIE DU 3EME - CARREAU DU TEMPLE"}, "geometry": {"type": "Point", "coordinates": [2.3601265126259983, 48.8649490060928]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4bfb7ae85f1ffc3b9f115f49970408f0302212f3", "fields": {"departement": "75", "stop_lat": 48.87212533036264, "code_postal": "75120", "stop_lon": 2.3773915146330897, "coord": [48.87212533036264, 2.3773915146330897], "stop_id": 4036308, "stop_desc": "4 RUE DE BELLEVILLE - 75120", "stop_name": "BELLEVILLE"}, "geometry": {"type": "Point", "coordinates": [2.3773915146330897, 48.87212533036264]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "32252e5ccf5a71fb51396fb6474ddc3ff7b1e846", "fields": {"departement": "75", "stop_lat": 48.875548837113016, "code_postal": "75120", "stop_lon": 2.39978017411952, "coord": [48.875548837113016, 2.39978017411952], "stop_id": 4036312, "stop_desc": "RUE DE BELLEVILLE - 75120", "stop_name": "PELLEPORT - BELLEVILLE"}, "geometry": {"type": "Point", "coordinates": [2.39978017411952, 48.875548837113016]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "73a6777cb241e45b37354b7a7b3c87930af00e3d", "fields": {"departement": "93", "stop_lat": 48.881676627413, "code_postal": "93063", "stop_lon": 2.4297662965308153, "coord": [48.881676627413, 2.4297662965308153], "stop_id": 4036318, "stop_desc": "FACE 108 AVENUE DE VERDUN - 93063", "stop_name": "LIBERTE"}, "geometry": {"type": "Point", "coordinates": [2.4297662965308153, 48.881676627413]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9740e7322a43580fc515885700e0510cb7d0caa8", "fields": {"departement": "93", "stop_lat": 48.88638007778591, "code_postal": "93053", "stop_lon": 2.4472457067252935, "coord": [48.88638007778591, 2.4472457067252935], "stop_id": 4036321, "stop_desc": "RUE ANATOLE FRANCE - 93053", "stop_name": "HOCHE"}, "geometry": {"type": "Point", "coordinates": [2.4472457067252935, 48.88638007778591]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "94cf5bfb58489a8c18a70b3bbb8a28c547ea115c", "fields": {"departement": "93", "stop_lat": 48.88773963962272, "code_postal": "93053", "stop_lon": 2.462907506964655, "coord": [48.88773963962272, 2.462907506964655], "stop_id": 4036323, "stop_desc": "FACE 163 RUE DE BREMENT - 93053", "stop_name": "SQUARE STEPHENSON"}, "geometry": {"type": "Point", "coordinates": [2.462907506964655, 48.88773963962272]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e088bca5db3b4459174b4ce4cfcc096912b53d5c", "fields": {"departement": "93", "stop_lat": 48.88316949263554, "code_postal": "93032", "stop_lon": 2.532994286367524, "coord": [48.88316949263554, 2.532994286367524], "stop_id": 4036337, "stop_desc": "FACE 16 AVENUE PARMENTIER - 93032", "stop_name": "JEAN JAURES - HENRI BARBUSSE"}, "geometry": {"type": "Point", "coordinates": [2.532994286367524, 48.88316949263554]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5d1251550284a108f8b503168134aea07a1d8c01", "fields": {"departement": "93", "stop_lat": 48.87672538178333, "code_postal": "93032", "stop_lon": 2.548898087819418, "coord": [48.87672538178333, 2.548898087819418], "stop_id": 4036341, "stop_desc": "AVENUE PAUL VAILLANT COUTURIER - 93032", "stop_name": "LA MARE"}, "geometry": {"type": "Point", "coordinates": [2.548898087819418, 48.87672538178333]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4af832fdf0974b5bb1113b910f7a00555db092c1", "fields": {"departement": "93", "stop_lat": 48.86062649827987, "code_postal": "93006", "stop_lon": 2.419989610839223, "coord": [48.86062649827987, 2.419989610839223], "stop_id": 4036623, "stop_desc": "81 AVENUE DE LA REPUBLIQUE - 93006", "stop_name": "REPUBLIQUE - ROBESPIERRE"}, "geometry": {"type": "Point", "coordinates": [2.419989610839223, 48.86062649827987]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fd160d005193e2461c4f79b920080835270907de", "fields": {"departement": "75", "stop_lat": 48.86170601135141, "code_postal": "75111", "stop_lon": 2.3854064805301256, "coord": [48.86170601135141, 2.3854064805301256], "stop_id": 4036632, "stop_desc": "69 RUE DE LA FOLIE REGNAULT - 75111", "stop_name": "FOLIE REGNAULT - CHEMIN VERT"}, "geometry": {"type": "Point", "coordinates": [2.3854064805301256, 48.86170601135141]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "be51e6eba55684c6026245bda62dc35453c0c11a", "fields": {"departement": "75", "stop_lat": 48.8488765289316, "code_postal": "75112", "stop_lon": 2.372266746924533, "coord": [48.8488765289316, 2.372266746924533], "stop_id": 4036641, "stop_desc": "9-11 AVENUE DAUMESNIL - 75112", "stop_name": "LYON - LEDRU ROLLIN"}, "geometry": {"type": "Point", "coordinates": [2.372266746924533, 48.8488765289316]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6d7887466554032f0aaabb2f2c1e09e3aa0b2765", "fields": {"departement": "75", "stop_lat": 48.856438611249025, "code_postal": "75104", "stop_lon": 2.356281902801697, "coord": [48.856438611249025, 2.356281902801697], "stop_id": 4036646, "stop_desc": "32 RUE DE RIVOLI - 75104", "stop_name": "RUE VIEILLE DU TEMPLE - MAIRIE DU 4E"}, "geometry": {"type": "Point", "coordinates": [2.356281902801697, 48.856438611249025]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "586e6e5f882d1af007dbdcb9f0c6cfcc203cbfcf", "fields": {"departement": "75", "stop_lat": 48.85726596088864, "code_postal": "75104", "stop_lon": 2.3527954157613853, "coord": [48.85726596088864, 2.3527954157613853], "stop_id": 4036647, "stop_desc": "62 RUE DE RIVOLI - 75104", "stop_name": "HOTEL DE VILLE"}, "geometry": {"type": "Point", "coordinates": [2.3527954157613853, 48.85726596088864]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1e9bb8609f7bb6eed4c81d118456e920dfeedb75", "fields": {"departement": "75", "stop_lat": 48.87066702165196, "code_postal": "75102", "stop_lon": 2.342935804602398, "coord": [48.87066702165196, 2.342935804602398], "stop_id": 4036654, "stop_desc": "170 RUE MONTMARTRE - 75102", "stop_name": "GRANDS BOULEVARDS"}, "geometry": {"type": "Point", "coordinates": [2.342935804602398, 48.87066702165196]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "052a5cc27862452998891d7711899d4fb69df8e7", "fields": {"departement": "75", "stop_lat": 48.87195232806171, "code_postal": "75109", "stop_lon": 2.3392438053086133, "coord": [48.87195232806171, 2.3392438053086133], "stop_id": 4036655, "stop_desc": "2 BOULEVARD DES ITALIENS - 75109", "stop_name": "RICHELIEU - DROUOT"}, "geometry": {"type": "Point", "coordinates": [2.3392438053086133, 48.87195232806171]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "42c4c542e80a214287afc363ba98ec696632cfbb", "fields": {"departement": "75", "stop_lat": 48.87143107549418, "code_postal": "75109", "stop_lon": 2.3362192580847188, "coord": [48.87143107549418, 2.3362192580847188], "stop_id": 4036656, "stop_desc": "26 BOULEVARD DES ITALIENS - 75109", "stop_name": "CHOISEUL"}, "geometry": {"type": "Point", "coordinates": [2.3362192580847188, 48.87143107549418]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f29f07f4737e6e5fb7668d57788e7ae546b9fad0", "fields": {"departement": "75", "stop_lat": 48.87088277826318, "code_postal": "75109", "stop_lon": 2.333031287561144, "coord": [48.87088277826318, 2.333031287561144], "stop_id": 4036657, "stop_desc": "6 BOULEVARD DES CAPUCINES - 75109", "stop_name": "OPERA"}, "geometry": {"type": "Point", "coordinates": [2.333031287561144, 48.87088277826318]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "13623a59d2e9193d0c0721ad31bc3d1f28fce453", "fields": {"departement": "75", "stop_lat": 48.87219478360626, "code_postal": "75109", "stop_lon": 2.3300338573501684, "coord": [48.87219478360626, 2.3300338573501684], "stop_id": 4036658, "stop_desc": "8 RUE AUBER - 75109", "stop_name": "AUBER"}, "geometry": {"type": "Point", "coordinates": [2.3300338573501684, 48.87219478360626]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cf4caf2a42541e5db401952e6841c815995b7bcb", "fields": {"departement": "75", "stop_lat": 48.879033381813336, "code_postal": "75108", "stop_lon": 2.322197958167492, "coord": [48.879033381813336, 2.322197958167492], "stop_id": 4036662, "stop_desc": "52 RUE DE ROME - 75108", "stop_name": "EUROPE"}, "geometry": {"type": "Point", "coordinates": [2.322197958167492, 48.879033381813336]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7f805b1ec784811b035e8b1617893530070d39bc", "fields": {"departement": "92", "stop_lat": 48.89547052508216, "code_postal": "92044", "stop_lon": 2.287463134346214, "coord": [48.89547052508216, 2.287463134346214], "stop_id": 4036668, "stop_desc": "92 RUE DU PRESIDENT WILSON - 92044", "stop_name": "VAILLANT COUTURIER"}, "geometry": {"type": "Point", "coordinates": [2.287463134346214, 48.89547052508216]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a31539cb1acf5348d81c796e69745912b965307b", "fields": {"departement": "92", "stop_lat": 48.89736347692711, "code_postal": "92044", "stop_lon": 2.2800325202686906, "coord": [48.89736347692711, 2.2800325202686906], "stop_id": 4036670, "stop_desc": "RUE ANATOLE FRANCE - 92044", "stop_name": "PONT DE LEVALLOIS-METRO"}, "geometry": {"type": "Point", "coordinates": [2.2800325202686906, 48.89736347692711]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b2339d5597065375fc37d598eab657a012a8db2f", "fields": {"departement": "92", "stop_lat": 48.90075212578295, "code_postal": "92024", "stop_lon": 2.3054519129764897, "coord": [48.90075212578295, 2.3054519129764897], "stop_id": 4036729, "stop_desc": "51 BOULEVARD JEAN JAURES - 92024", "stop_name": "JAURES - BARBUSSE"}, "geometry": {"type": "Point", "coordinates": [2.3054519129764897, 48.90075212578295]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a9bccd81cc892cb33c50efa6a90e6513002fc198", "fields": {"departement": "75", "stop_lat": 48.8947234218669, "code_postal": "75117", "stop_lon": 2.3124478642572925, "coord": [48.8947234218669, 2.3124478642572925], "stop_id": 4036731, "stop_desc": "1 AVENUE DE LA PORTE DE CLICHY - 75117", "stop_name": "PORTE DE CLICHY"}, "geometry": {"type": "Point", "coordinates": [2.3124478642572925, 48.8947234218669]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e032ce324d9d499f804a6b6e439eaccf5aba372c", "fields": {"departement": "75", "stop_lat": 48.89288171215441, "code_postal": "75117", "stop_lon": 2.315842525078344, "coord": [48.89288171215441, 2.315842525078344], "stop_id": 4036732, "stop_desc": "177 AVENUE DE CLICHY - 75117", "stop_name": "BOULAY"}, "geometry": {"type": "Point", "coordinates": [2.315842525078344, 48.89288171215441]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a8d5fb3cdb9e88812a67217cbb07b3cba2c7fa4d", "fields": {"departement": "75", "stop_lat": 48.89185755313465, "code_postal": "75117", "stop_lon": 2.3180645348981526, "coord": [48.89185755313465, 2.3180645348981526], "stop_id": 4036735, "stop_desc": "168 AVENUE DE CLICHY - 75117", "stop_name": "BROCHANT - CARDINET"}, "geometry": {"type": "Point", "coordinates": [2.3180645348981526, 48.89185755313465]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "98e2bebfcaf51d63ccec8a61e600887987adfedc", "fields": {"departement": "75", "stop_lat": 48.87849422642491, "code_postal": "75108", "stop_lon": 2.32285215568243, "coord": [48.87849422642491, 2.32285215568243], "stop_id": 4036745, "stop_desc": "27 RUE DE VIENNE - 75108", "stop_name": "EUROPE"}, "geometry": {"type": "Point", "coordinates": [2.32285215568243, 48.87849422642491]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dfd7337570477f76b05d32c624ff8e851de7c393", "fields": {"departement": "75", "stop_lat": 48.87576218699689, "code_postal": "75108", "stop_lon": 2.3236567975351456, "coord": [48.87576218699689, 2.3236567975351456], "stop_id": 4036747, "stop_desc": "17 RUE DE ROME - 75108", "stop_name": "GARE SAINT-LAZARE"}, "geometry": {"type": "Point", "coordinates": [2.3236567975351456, 48.87576218699689]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0ab0c97ca3b833b5f457259685d14edc19eb6130", "fields": {"departement": "75", "stop_lat": 48.86336033166581, "code_postal": "75101", "stop_lon": 2.3422402882400415, "coord": [48.86336033166581, 2.3422402882400415], "stop_id": 4036763, "stop_desc": "42 RUE DU LOUVRE - 75101", "stop_name": "COQUILLIERE - LES HALLES"}, "geometry": {"type": "Point", "coordinates": [2.3422402882400415, 48.86336033166581]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "64685e7df34a2af7da6c4708ca9c906bec5b1f77", "fields": {"departement": "75", "stop_lat": 48.86042151469406, "code_postal": "75101", "stop_lon": 2.340469262084462, "coord": [48.86042151469406, 2.340469262084462], "stop_id": 4036764, "stop_desc": "FACE 6 AVENUE DE L'AMIRAL COLIGNY - 75101", "stop_name": "LOUVRE - RIVOLI"}, "geometry": {"type": "Point", "coordinates": [2.340469262084462, 48.86042151469406]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "38c3eec4a5f342ae905d859d5d5b207e773269bb", "fields": {"departement": "75", "stop_lat": 48.858057701289326, "code_postal": "75101", "stop_lon": 2.343560965223396, "coord": [48.858057701289326, 2.343560965223396], "stop_id": 4036766, "stop_desc": "FACE 22 QUAI DE LA MEGISSERIE - 75101", "stop_name": "PONT NEUF - QUAI DU LOUVRE"}, "geometry": {"type": "Point", "coordinates": [2.343560965223396, 48.858057701289326]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a7a35ebd936c05b6adf0f86cd08efcde009e46cb", "fields": {"departement": "75", "stop_lat": 48.84621152039148, "code_postal": "75105", "stop_lon": 2.351634626985254, "coord": [48.84621152039148, 2.351634626985254], "stop_id": 4036775, "stop_desc": "36 RUE MONGE - 75105", "stop_name": "CARDINAL LEMOINE"}, "geometry": {"type": "Point", "coordinates": [2.351634626985254, 48.84621152039148]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8fbd24e6ecc0de0b755f22643ed56030436c0ac1", "fields": {"departement": "75", "stop_lat": 48.81843859863193, "code_postal": "75113", "stop_lon": 2.359493561653259, "coord": [48.81843859863193, 2.359493561653259], "stop_id": 4036796, "stop_desc": "AVENUE DE LA PORTE D'ITALIE - 75113", "stop_name": "PORTE D'ITALIE - HELENE BOUCHER"}, "geometry": {"type": "Point", "coordinates": [2.359493561653259, 48.81843859863193]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9eb4a24b6dc8ba8c9a34ad2bb9b99b7b5641a096", "fields": {"departement": "75", "stop_lat": 48.818519431681594, "code_postal": "75113", "stop_lon": 2.359793018671695, "coord": [48.818519431681594, 2.359793018671695], "stop_id": 4036797, "stop_desc": "AVENUE DE LA PORTE D'ITALIE - 75113", "stop_name": "PORTE D'ITALIE - HELENE BOUCHER"}, "geometry": {"type": "Point", "coordinates": [2.359793018671695, 48.818519431681594]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "166ab9325e272c371a51b34aab948872e9f7cb1a", "fields": {"departement": "94", "stop_lat": 48.812137822019444, "code_postal": "94043", "stop_lon": 2.361423259884513, "coord": [48.812137822019444, 2.361423259884513], "stop_id": 4036800, "stop_desc": "58 AVENUE DE FONTAINEBLEAU - 94043", "stop_name": "CONVENTION - FONTAINEBLEAU"}, "geometry": {"type": "Point", "coordinates": [2.361423259884513, 48.812137822019444]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "002a70a55e9d7703575c0904b47cbf30ff39fc37", "fields": {"departement": "94", "stop_lat": 48.79306454434045, "code_postal": "94076", "stop_lon": 2.366406843667121, "coord": [48.79306454434045, 2.366406843667121], "stop_id": 4036811, "stop_desc": "FACE 75 RUE JEAN JAURES - 94076", "stop_name": "GUYNEMER - PLACE DES FUSILLES"}, "geometry": {"type": "Point", "coordinates": [2.366406843667121, 48.79306454434045]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "87e4376d18b70a18a0fa03640f6b1dd76f93488f", "fields": {"departement": "94", "stop_lat": 48.796272681571224, "code_postal": "94076", "stop_lon": 2.368517307929323, "coord": [48.796272681571224, 2.368517307929323], "stop_id": 4036817, "stop_desc": "33 BOULEVARD MAXIME GORKI - 94076", "stop_name": "PAUL VAILLANT-COUTURIER - HOPITAL PAUL BROUSSE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.368517307929323, 48.796272681571224]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "279baa57fce7a947504747a751a0ad3c8d6cd32c", "fields": {"departement": "75", "stop_lat": 48.87143107549418, "code_postal": "75109", "stop_lon": 2.3362192580847188, "coord": [48.87143107549418, 2.3362192580847188], "stop_id": 4036826, "stop_desc": "26 BOULEVARD DES ITALIENS - 75109", "stop_name": "CHOISEUL"}, "geometry": {"type": "Point", "coordinates": [2.3362192580847188, 48.87143107549418]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b37fb02978018bd59e40a41fdb2d5f3e854a1bad", "fields": {"departement": "75", "stop_lat": 48.895020110065616, "code_postal": "75117", "stop_lon": 2.312992930179708, "coord": [48.895020110065616, 2.312992930179708], "stop_id": 4036830, "stop_desc": "AVENUE DE LA PORTE DE CLICHY - 75117", "stop_name": "PORTE DE CLICHY - METRO"}, "geometry": {"type": "Point", "coordinates": [2.312992930179708, 48.895020110065616]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5c9e330c39bd1012e131b934e5f23ccaafc257c8", "fields": {"departement": "92", "stop_lat": 48.89846158223141, "code_postal": "92024", "stop_lon": 2.310196942773822, "coord": [48.89846158223141, 2.310196942773822], "stop_id": 4036831, "stop_desc": "FACE 17 RUE DU 8 MAI 1945 - 92024", "stop_name": "VICTOR HUGO - 8 MAI 1945"}, "geometry": {"type": "Point", "coordinates": [2.310196942773822, 48.89846158223141]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e3747112fa4c1fe5e9e0d92e671bf53d0f1e4f03", "fields": {"departement": "92", "stop_lat": 48.90114819778661, "code_postal": "92024", "stop_lon": 2.30794629123773, "coord": [48.90114819778661, 2.30794629123773], "stop_id": 4036832, "stop_desc": "62 RUE MARTRE - 92024", "stop_name": "BARBUSSE - MARTRE"}, "geometry": {"type": "Point", "coordinates": [2.30794629123773, 48.90114819778661]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1d8ec6f040457865a897c2a4402c03b33297f55e", "fields": {"departement": "93", "stop_lat": 48.90623838248406, "code_postal": "93070", "stop_lon": 2.3321695181146005, "coord": [48.90623838248406, 2.3321695181146005], "stop_id": 4036839, "stop_desc": "1 RUE CHARLES SCHMIDT - 93070", "stop_name": "GARIBALDI"}, "geometry": {"type": "Point", "coordinates": [2.3321695181146005, 48.90623838248406]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bb6aac1713ac90ea49f55a67a3be260ef4d8588a", "fields": {"departement": "75", "stop_lat": 48.89795236411017, "code_postal": "75118", "stop_lon": 2.3395583162084646, "coord": [48.89795236411017, 2.3395583162084646], "stop_id": 4036847, "stop_desc": "134 BOULEVARD NEY - 75118", "stop_name": "CAMILLE FLAMMARION"}, "geometry": {"type": "Point", "coordinates": [2.3395583162084646, 48.89795236411017]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2c71b5286df635f621c54e059d1dab276b3d324a", "fields": {"departement": "75", "stop_lat": 48.89726014402725, "code_postal": "75118", "stop_lon": 2.3447107228641832, "coord": [48.89726014402725, 2.3447107228641832], "stop_id": 4036848, "stop_desc": "75 BIS BOULEVARD ORNANO - 75118", "stop_name": "PORTE DE CLIGNANCOURT"}, "geometry": {"type": "Point", "coordinates": [2.3447107228641832, 48.89726014402725]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f1a14d389b6d109f0cc62dbb0e881a0f13deb6ff", "fields": {"departement": "75", "stop_lat": 48.891391107788415, "code_postal": "75118", "stop_lon": 2.3497663277119103, "coord": [48.891391107788415, 2.3497663277119103], "stop_id": 4036853, "stop_desc": "96 BOULEVARD BARBES - 75118", "stop_name": "MARCADET - POISSONNIERS"}, "geometry": {"type": "Point", "coordinates": [2.3497663277119103, 48.891391107788415]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "72be89a065c985c7871ea6ed2f012023158e0998", "fields": {"departement": "75", "stop_lat": 48.88783222118241, "code_postal": "75118", "stop_lon": 2.349370247627986, "coord": [48.88783222118241, 2.349370247627986], "stop_id": 4036854, "stop_desc": "37 BOULEVARD BARBES - 75118", "stop_name": "CHATEAU ROUGE"}, "geometry": {"type": "Point", "coordinates": [2.349370247627986, 48.88783222118241]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "86e9040ccc9dde338060bae1fcb9a2c2f4f615e1", "fields": {"departement": "75", "stop_lat": 48.881334194288584, "code_postal": "75110", "stop_lon": 2.351712503852361, "coord": [48.881334194288584, 2.351712503852361], "stop_id": 4036858, "stop_desc": "140-142 BOULEVARD DE MAGENTA - 75110", "stop_name": "MAGENTA - MAUBEUGE - GARE DU NORD"}, "geometry": {"type": "Point", "coordinates": [2.351712503852361, 48.881334194288584]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "542fa3c73ed5b78ea8f9d0895fe344c54f6b8778", "fields": {"departement": "75", "stop_lat": 48.878107383214136, "code_postal": "75110", "stop_lon": 2.354586637385039, "coord": [48.878107383214136, 2.354586637385039], "stop_id": 4036860, "stop_desc": "110 BOULEVARD DE MAGENTA - 75110", "stop_name": "LA FAYETTE - MAGENTA - GARE DU NORD"}, "geometry": {"type": "Point", "coordinates": [2.354586637385039, 48.878107383214136]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e3192a259949d9f7af59241e990e3f88755c78cf", "fields": {"departement": "95", "stop_lat": 48.97515832288238, "code_postal": "95427", "stop_lon": 2.3361079735458423, "coord": [48.97515832288238, 2.3361079735458423], "stop_id": 5150289, "stop_desc": "40 AVENUE DE LA GARE - 95427", "stop_name": "GARE DE DEUIL - MONTMAGNY"}, "geometry": {"type": "Point", "coordinates": [2.3361079735458423, 48.97515832288238]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "51075fd74fa11b6e296d4d45a34dff3cab005ad6", "fields": {"departement": "93", "stop_lat": 48.90691264968876, "code_postal": "93008", "stop_lon": 2.4296750229551916, "coord": [48.90691264968876, 2.4296750229551916], "stop_id": 5150331, "stop_desc": "FACE 140 RUE DE LA REPUBLIQUE - 93008", "stop_name": "LYCEE ANDRE SABATIER"}, "geometry": {"type": "Point", "coordinates": [2.4296750229551916, 48.90691264968876]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f98a0b5addbb1d32952aec56a027cf7996b41a96", "fields": {"departement": "93", "stop_lat": 48.90637437721665, "code_postal": "93008", "stop_lon": 2.439517229737543, "coord": [48.90637437721665, 2.439517229737543], "stop_id": 5150333, "stop_desc": "BOULEVARD LENINE - 93008", "stop_name": "CONSERVATOIRE JEAN WIENER"}, "geometry": {"type": "Point", "coordinates": [2.439517229737543, 48.90637437721665]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2ef1cdfb17427ab4a9b73855dd97ea01ee5ee14a", "fields": {"departement": "93", "stop_lat": 48.90679444443228, "code_postal": "93008", "stop_lon": 2.4693204756522555, "coord": [48.90679444443228, 2.4693204756522555], "stop_id": 5150340, "stop_desc": "16 AVENUE EDOUARD VAILLANT - 93008", "stop_name": "PONT DE BONDY - ANATOLE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.4693204756522555, 48.90679444443228]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "704ff9cfaa6b8107e80dbfcc5082e69213e5aaad", "fields": {"departement": "93", "stop_lat": 48.912236663887136, "code_postal": "93010", "stop_lon": 2.4805148428665595, "coord": [48.912236663887136, 2.4805148428665595], "stop_id": 5150344, "stop_desc": "AVENUE JEAN MOULIN - 93010", "stop_name": "ROUTE D'AULNAY - JEAN MOULIN"}, "geometry": {"type": "Point", "coordinates": [2.4805148428665595, 48.912236663887136]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "89c866cca182ac841edaf20c5bd6514f484d9308", "fields": {"departement": "93", "stop_lat": 48.91636801953909, "code_postal": "93057", "stop_lon": 2.4967801898976902, "coord": [48.91636801953909, 2.4967801898976902], "stop_id": 5150349, "stop_desc": "0 NR - 93057", "stop_name": "ROBERT SHUMAN (DESCENTE)"}, "geometry": {"type": "Point", "coordinates": [2.4967801898976902, 48.91636801953909]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f45303717b327d8320435f68f745b5d7b3b84957", "fields": {"departement": "93", "stop_lat": 48.914227247147316, "code_postal": "93001", "stop_lon": 2.404026516251405, "coord": [48.914227247147316, 2.404026516251405], "stop_id": 5150371, "stop_desc": "AVENUE JEAN JAURES - 93001", "stop_name": "FORT D'AUBERVILLIERS-METRO"}, "geometry": {"type": "Point", "coordinates": [2.404026516251405, 48.914227247147316]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3437115af0add973aa1f24de2de7f8ead27af735", "fields": {"departement": "93", "stop_lat": 48.914177758098994, "code_postal": "93055", "stop_lon": 2.411716729965043, "coord": [48.914177758098994, 2.411716729965043], "stop_id": 5150375, "stop_desc": "7 AVENUE DES COURTILLIERES - 93055", "stop_name": "PLACE DU MARCHE"}, "geometry": {"type": "Point", "coordinates": [2.411716729965043, 48.914177758098994]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b872e8d1c870be78e8d87d02aa7a92b9c6462cf9", "fields": {"departement": "93", "stop_lat": 48.906488254589036, "code_postal": "93008", "stop_lon": 2.4322236788904616, "coord": [48.906488254589036, 2.4322236788904616], "stop_id": 5150384, "stop_desc": "RUE DE LA REPUBLIQUE - 93008", "stop_name": "RUE DE LA GARE"}, "geometry": {"type": "Point", "coordinates": [2.4322236788904616, 48.906488254589036]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "43a5fc8b889dcbef57f4070428b1d988bfb3963a", "fields": {"departement": "93", "stop_lat": 48.90650920647477, "code_postal": "93008", "stop_lon": 2.439490229390998, "coord": [48.90650920647477, 2.439490229390998], "stop_id": 5150387, "stop_desc": "BOULEVARD LENINE - 93008", "stop_name": "CONSERVATOIRE JEAN WIENER"}, "geometry": {"type": "Point", "coordinates": [2.439490229390998, 48.90650920647477]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0932a4582ccae4d7799496d91861cf570c049067", "fields": {"departement": "93", "stop_lat": 48.90925885871582, "code_postal": "93008", "stop_lon": 2.46754070853601, "coord": [48.90925885871582, 2.46754070853601], "stop_id": 5150401, "stop_desc": "FACE 56 AVENUE EDOUARD VAILLANT - 93008", "stop_name": "AVENUE MARCELLE"}, "geometry": {"type": "Point", "coordinates": [2.46754070853601, 48.90925885871582]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dd26f4d167ed9e9edd1c68fe25ad9e769c563d79", "fields": {"departement": "93", "stop_lat": 48.90958817039284, "code_postal": "93008", "stop_lon": 2.4704455892437647, "coord": [48.90958817039284, 2.4704455892437647], "stop_id": 5150403, "stop_desc": "RUE DE VARSOVIE - 93008", "stop_name": "PLACE DE L'EUROPE"}, "geometry": {"type": "Point", "coordinates": [2.4704455892437647, 48.90958817039284]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c54b3ae160ae72cb28b7ace431ed78a9f3dfc378", "fields": {"departement": "93", "stop_lat": 48.912236663887136, "code_postal": "93010", "stop_lon": 2.4805148428665595, "coord": [48.912236663887136, 2.4805148428665595], "stop_id": 5150405, "stop_desc": "AVENUE JEAN MOULIN - 93010", "stop_name": "ROUTE D'AULNAY - JEAN MOULIN"}, "geometry": {"type": "Point", "coordinates": [2.4805148428665595, 48.912236663887136]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1c928df4e0fee4768c2994fc421fc1867b2bd2ba", "fields": {"departement": "93", "stop_lat": 48.911687882007875, "code_postal": "93010", "stop_lon": 2.4809905365254483, "coord": [48.911687882007875, 2.4809905365254483], "stop_id": 5150406, "stop_desc": "ROUTE D'AULNAY - 93010", "stop_name": "ROUTE D'AULNAY - JEAN MOULIN"}, "geometry": {"type": "Point", "coordinates": [2.4809905365254483, 48.911687882007875]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "817e3e4db96dc7c4f95a35ccfd58c69db9f828d6", "fields": {"departement": "93", "stop_lat": 48.91206052158729, "code_postal": "93010", "stop_lon": 2.4849320000344766, "coord": [48.91206052158729, 2.4849320000344766], "stop_id": 5150410, "stop_desc": "VOIE PROMENADE - 93010", "stop_name": "RONSARD - VILLON"}, "geometry": {"type": "Point", "coordinates": [2.4849320000344766, 48.91206052158729]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "edc7f7139e40e4abcbfddeea4d76c83eb0321617", "fields": {"departement": "93", "stop_lat": 48.91329163826983, "code_postal": "93057", "stop_lon": 2.5053744235784774, "coord": [48.91329163826983, 2.5053744235784774], "stop_id": 5150418, "stop_desc": "FACE 42 ALLEE DE MONTHYON - 93057", "stop_name": "COLONEL FABIEN"}, "geometry": {"type": "Point", "coordinates": [2.5053744235784774, 48.91329163826983]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0b41c8a86fc014298541c2384411dfbf3687e48e", "fields": {"departement": "93", "stop_lat": 48.913146574234354, "code_postal": "93057", "stop_lon": 2.5062738627029915, "coord": [48.913146574234354, 2.5062738627029915], "stop_id": 5150419, "stop_desc": "34-36 ALLEE DE MONTHYON - 93057", "stop_name": "COLONEL FABIEN"}, "geometry": {"type": "Point", "coordinates": [2.5062738627029915, 48.913146574234354]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0460a432e098fdff0e69eb488890fadd8468a592", "fields": {"departement": "93", "stop_lat": 48.917328207596725, "code_postal": "93046", "stop_lon": 2.5226235574970115, "coord": [48.917328207596725, 2.5226235574970115], "stop_id": 5150426, "stop_desc": "123 AVENUE VAUBAN - 93046", "stop_name": "GAMBETTA"}, "geometry": {"type": "Point", "coordinates": [2.5226235574970115, 48.917328207596725]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c2e01f0dba0028f7f370436181f77f40777efe62", "fields": {"departement": "93", "stop_lat": 48.920835371173375, "code_postal": "93046", "stop_lon": 2.526918136128955, "coord": [48.920835371173375, 2.526918136128955], "stop_id": 5150427, "stop_desc": "FACE 136 AVENUE COLLAVERI - 93046", "stop_name": "JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.526918136128955, 48.920835371173375]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1c44ad7e50beb2ab623772883c99febe502f9eed", "fields": {"departement": "93", "stop_lat": 48.922006104726435, "code_postal": "93046", "stop_lon": 2.530999987669346, "coord": [48.922006104726435, 2.530999987669346], "stop_id": 5150430, "stop_desc": "94 AVENUE COLLAVERI - 93046", "stop_name": "COLLEGES"}, "geometry": {"type": "Point", "coordinates": [2.530999987669346, 48.922006104726435]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bbf81691a999b5529d4657bfadd24ebff8b49197", "fields": {"departement": "93", "stop_lat": 48.921330190639104, "code_postal": "93046", "stop_lon": 2.537584209689117, "coord": [48.921330190639104, 2.537584209689117], "stop_id": 5150431, "stop_desc": "FACE 20 ALLEE JOSEPH NOIZE - 93046", "stop_name": "FRANCOIS VILLON"}, "geometry": {"type": "Point", "coordinates": [2.537584209689117, 48.921330190639104]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7069a774d3d9e4b0de11dff28460a53f5e0f3455", "fields": {"departement": "93", "stop_lat": 48.9210236487363, "code_postal": "93046", "stop_lon": 2.538169418762132, "coord": [48.9210236487363, 2.538169418762132], "stop_id": 5150432, "stop_desc": "5 ALLEE JOSEPH NOIZE - 93046", "stop_name": "FRANCOIS VILLON"}, "geometry": {"type": "Point", "coordinates": [2.538169418762132, 48.9210236487363]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b0f936f0759162a87a6e1bad09c947a6efb80a28", "fields": {"departement": "93", "stop_lat": 48.91825555686385, "code_postal": "93046", "stop_lon": 2.5382268639728545, "coord": [48.91825555686385, 2.5382268639728545], "stop_id": 5150434, "stop_desc": "10 AVENUE ALBERT THOMAS - 93046", "stop_name": "MAIRIE DE LIVRY-GARGAN"}, "geometry": {"type": "Point", "coordinates": [2.5382268639728545, 48.91825555686385]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c719ffb8c71794e5896882748201766486222894", "fields": {"departement": "93", "stop_lat": 48.91571716671948, "code_postal": "93057", "stop_lon": 2.499587134063073, "coord": [48.91571716671948, 2.499587134063073], "stop_id": 5150435, "stop_desc": "AVENUE DE ROME - 93057", "stop_name": "CIMETIERE DE LES_PAVILLONS-SOUS-BOIS"}, "geometry": {"type": "Point", "coordinates": [2.499587134063073, 48.91571716671948]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ea25f511c456de2536bf3b93ff2fc7186371d2e5", "fields": {"departement": "93", "stop_lat": 48.91372104318945, "code_postal": "93055", "stop_lon": 2.4090708594396384, "coord": [48.91372104318945, 2.4090708594396384], "stop_id": 5150445, "stop_desc": "23 AVENUE DES COURTILLIERES - 93055", "stop_name": "DIVISION LECLERC - COURTILLIERES"}, "geometry": {"type": "Point", "coordinates": [2.4090708594396384, 48.91372104318945]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a3c9a2d4f425b120ae2c513cc7845be7923dfd5f", "fields": {"departement": "93", "stop_lat": 48.91328474196549, "code_postal": "93008", "stop_lon": 2.416828575050586, "coord": [48.91328474196549, 2.416828575050586], "stop_id": 5150447, "stop_desc": "1 RUE BALZAC - 93008", "stop_name": "LES COURTILLIERES"}, "geometry": {"type": "Point", "coordinates": [2.416828575050586, 48.91328474196549]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b04bbd0337a735eed35e9257ad3813f365d73569", "fields": {"departement": "93", "stop_lat": 48.90679444443228, "code_postal": "93008", "stop_lon": 2.4693204756522555, "coord": [48.90679444443228, 2.4693204756522555], "stop_id": 5150459, "stop_desc": "16 AVENUE EDOUARD VAILLANT - 93008", "stop_name": "PONT DE BONDY - ANATOLE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.4693204756522555, 48.90679444443228]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "212bd667d7652de0f895cb1bf4bf6ec779be147f", "fields": {"departement": "93", "stop_lat": 48.90934329593462, "code_postal": "93008", "stop_lon": 2.472421887673177, "coord": [48.90934329593462, 2.472421887673177], "stop_id": 5150461, "stop_desc": "RUE DE VARSOVIE - 93008", "stop_name": "PLACE DE L'EUROPE"}, "geometry": {"type": "Point", "coordinates": [2.472421887673177, 48.90934329593462]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bd61635d623170be4691ff7977945b46b7b51331", "fields": {"departement": "93", "stop_lat": 48.914227247147316, "code_postal": "93001", "stop_lon": 2.404026516251405, "coord": [48.914227247147316, 2.404026516251405], "stop_id": 5150470, "stop_desc": "AVENUE JEAN JAURES - 93001", "stop_name": "FORT D'AUBERVILLIERS-METRO"}, "geometry": {"type": "Point", "coordinates": [2.404026516251405, 48.914227247147316]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5eda3c070df6b2c9d815a3ffcb87e82c89450727", "fields": {"departement": "93", "stop_lat": 48.90672978942366, "code_postal": "93008", "stop_lon": 2.433614717029149, "coord": [48.90672978942366, 2.433614717029149], "stop_id": 5150484, "stop_desc": "RUE DE LA REPUBLIQUE - 93008", "stop_name": "RUE DE LA GARE"}, "geometry": {"type": "Point", "coordinates": [2.433614717029149, 48.90672978942366]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "63fe7ae80c406582e21b8db74190d83e993ae1e3", "fields": {"departement": "93", "stop_lat": 48.90569029404579, "code_postal": "93008", "stop_lon": 2.459720013319434, "coord": [48.90569029404579, 2.459720013319434], "stop_id": 5150493, "stop_desc": "AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "CITE ADMINISTRATIVE"}, "geometry": {"type": "Point", "coordinates": [2.459720013319434, 48.90569029404579]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0e1c77c03489f838775a06ad50266df6498374d9", "fields": {"departement": "93", "stop_lat": 48.90590089960924, "code_postal": "93008", "stop_lon": 2.46457388666915, "coord": [48.90590089960924, 2.46457388666915], "stop_id": 5150495, "stop_desc": "FACE 412 AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "RUE DES PEUPLIERS"}, "geometry": {"type": "Point", "coordinates": [2.46457388666915, 48.90590089960924]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4f8c333a61758c7517cc9e8534c47b90fc743d7c", "fields": {"departement": "93", "stop_lat": 48.906307579968086, "code_postal": "93010", "stop_lon": 2.470723452889686, "coord": [48.906307579968086, 2.470723452889686], "stop_id": 5150498, "stop_desc": "16-18 CHEMIN DE GROSLAY - 93010", "stop_name": "PONT DE BONDY - ANATOLE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.470723452889686, 48.906307579968086]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2a7a07aae6822ea2fcfbbe54a52546c59ddb193f", "fields": {"departement": "93", "stop_lat": 48.910391118821, "code_postal": "93010", "stop_lon": 2.475615038862434, "coord": [48.910391118821, 2.475615038862434], "stop_id": 5150499, "stop_desc": "RUE JEAN JACQUES ROUSSEAU - 93010", "stop_name": "ETIENNE DOLET"}, "geometry": {"type": "Point", "coordinates": [2.475615038862434, 48.910391118821]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4a28b4c93778482defe26352bb0434f6b42a705a", "fields": {"departement": "93", "stop_lat": 48.911687882007875, "code_postal": "93010", "stop_lon": 2.4809905365254483, "coord": [48.911687882007875, 2.4809905365254483], "stop_id": 5150501, "stop_desc": "ROUTE D'AULNAY - 93010", "stop_name": "ROUTE D'AULNAY - JEAN MOULIN"}, "geometry": {"type": "Point", "coordinates": [2.4809905365254483, 48.911687882007875]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c10a7c96c219266ed14b2c42c3039b7051d0174c", "fields": {"departement": "93", "stop_lat": 48.91127967872346, "code_postal": "93010", "stop_lon": 2.484098069741226, "coord": [48.91127967872346, 2.484098069741226], "stop_id": 5150502, "stop_desc": "6 AVENUE MARX DORMOY - 93010", "stop_name": "MAISON DE RETRAITE"}, "geometry": {"type": "Point", "coordinates": [2.484098069741226, 48.91127967872346]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a177d3b9292bfc9f5bdc88c88b0b5d4f198cd387", "fields": {"departement": "93", "stop_lat": 48.91078374510361, "code_postal": "93046", "stop_lon": 2.5119789583655017, "coord": [48.91078374510361, 2.5119789583655017], "stop_id": 5150514, "stop_desc": "2-4 AVENUE JULES GUESDE - 93046", "stop_name": "VICTOR HUGO - JULES GUESDE"}, "geometry": {"type": "Point", "coordinates": [2.5119789583655017, 48.91078374510361]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a5afc0870fe32e55b25805cf0f885d976eff5434", "fields": {"departement": "93", "stop_lat": 48.92230018221277, "code_postal": "93046", "stop_lon": 2.5325284785553945, "coord": [48.92230018221277, 2.5325284785553945], "stop_id": 5150522, "stop_desc": "FACE 82 AVENUE COLLAVERI - 93046", "stop_name": "COLLEGES"}, "geometry": {"type": "Point", "coordinates": [2.5325284785553945, 48.92230018221277]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f316616e0093d09c204c450c75e0ea9209b60291", "fields": {"departement": "93", "stop_lat": 48.910341920328406, "code_postal": "93010", "stop_lon": 2.479241618110349, "coord": [48.910341920328406, 2.479241618110349], "stop_id": 5150531, "stop_desc": "FACE 5 RUE PAUL RENAUD - 93010", "stop_name": "PAUL RENAUD"}, "geometry": {"type": "Point", "coordinates": [2.479241618110349, 48.910341920328406]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "371b839cca344bfd6477ef8cf3c51bc950e96da8", "fields": {"departement": "93", "stop_lat": 48.91825555686385, "code_postal": "93046", "stop_lon": 2.5382268639728545, "coord": [48.91825555686385, 2.5382268639728545], "stop_id": 5150537, "stop_desc": "10 AVENUE ALBERT THOMAS - 93046", "stop_name": "MAIRIE DE LIVRY-GARGAN"}, "geometry": {"type": "Point", "coordinates": [2.5382268639728545, 48.91825555686385]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c09ccba5021105d11951649fc048ef8db3dd5fb3", "fields": {"departement": "93", "stop_lat": 48.9210236487363, "code_postal": "93046", "stop_lon": 2.538169418762132, "coord": [48.9210236487363, 2.538169418762132], "stop_id": 5150538, "stop_desc": "5 ALLEE JOSEPH NOIZE - 93046", "stop_name": "FRANCOIS VILLON"}, "geometry": {"type": "Point", "coordinates": [2.538169418762132, 48.9210236487363]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3658d1d74ba6d2d04b9c45be3f599c96115d2051", "fields": {"departement": "93", "stop_lat": 48.922006104726435, "code_postal": "93046", "stop_lon": 2.530999987669346, "coord": [48.922006104726435, 2.530999987669346], "stop_id": 5150539, "stop_desc": "94 AVENUE COLLAVERI - 93046", "stop_name": "COLLEGES"}, "geometry": {"type": "Point", "coordinates": [2.530999987669346, 48.922006104726435]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3ab95e6012f6d3c5307fce237201737368d98e5e", "fields": {"departement": "93", "stop_lat": 48.91078374510361, "code_postal": "93046", "stop_lon": 2.5119789583655017, "coord": [48.91078374510361, 2.5119789583655017], "stop_id": 5150543, "stop_desc": "2-4 AVENUE JULES GUESDE - 93046", "stop_name": "VICTOR HUGO - JULES GUESDE"}, "geometry": {"type": "Point", "coordinates": [2.5119789583655017, 48.91078374510361]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3958a60ef4d0920d0ef41043bd9be7ff95a69f5c", "fields": {"departement": "93", "stop_lat": 48.93029813807712, "code_postal": "93005", "stop_lon": 2.4824470582545466, "coord": [48.93029813807712, 2.4824470582545466], "stop_id": 5150703, "stop_desc": "RUE CHARLES DE GAULLE - 93005", "stop_name": "ROND-POINT PIERRE SEMARD - TURGOT"}, "geometry": {"type": "Point", "coordinates": [2.4824470582545466, 48.93029813807712]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "50695dbbddb2ac4b128dcce6636c9b3405e1c9fb", "fields": {"departement": "93", "stop_lat": 48.947766895218265, "code_postal": "93031", "stop_lon": 2.33197442235964, "coord": [48.947766895218265, 2.33197442235964], "stop_id": 5150717, "stop_desc": "25 BD FOCH - 93031", "stop_name": "RUE DE L'UNION"}, "geometry": {"type": "Point", "coordinates": [2.33197442235964, 48.947766895218265]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1960a98fbc3d209ac541088a478177c64859c4c6", "fields": {"departement": "93", "stop_lat": 48.95284347419519, "code_postal": "93031", "stop_lon": 2.321466928731806, "coord": [48.95284347419519, 2.321466928731806], "stop_id": 5150723, "stop_desc": "FACE 15 RUE HENRI DUNANT - 93031", "stop_name": "LYCEE D'EPINAY-SUR-SEINE"}, "geometry": {"type": "Point", "coordinates": [2.321466928731806, 48.95284347419519]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b18eeb01575ace5c83d14fd930ad39c736f93509", "fields": {"departement": "93", "stop_lat": 48.95181883855375, "code_postal": "93031", "stop_lon": 2.320375628968274, "coord": [48.95181883855375, 2.320375628968274], "stop_id": 5150724, "stop_desc": "35 AVENUE DE LA REPUBLIQUE - 93031", "stop_name": "LES BEATUS"}, "geometry": {"type": "Point", "coordinates": [2.320375628968274, 48.95181883855375]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ae51f2809ed119e591e7cd3413c18fe5b12d93ca", "fields": {"departement": "93", "stop_lat": 48.959660557098054, "code_postal": "93031", "stop_lon": 2.303191220399641, "coord": [48.959660557098054, 2.303191220399641], "stop_id": 5150730, "stop_desc": "AVENUE DE LATTRE DE TASSIGNY - 93031", "stop_name": "PLACE FITZELIN"}, "geometry": {"type": "Point", "coordinates": [2.303191220399641, 48.959660557098054]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fbe096205ee47dcc568c5aef2988b4faa1bf0c54", "fields": {"departement": "93", "stop_lat": 48.95955204909924, "code_postal": "93031", "stop_lon": 2.3009258577690974, "coord": [48.95955204909924, 2.3009258577690974], "stop_id": 5150732, "stop_desc": "AVENUE DE LATTRE DE TASSIGNY - 93031", "stop_name": "JOFFRE - DE LATTRE DE TASSIGNY"}, "geometry": {"type": "Point", "coordinates": [2.3009258577690974, 48.95955204909924]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0f2de2ad90d1773e090895f496ec325bab4d42bc", "fields": {"departement": "95", "stop_lat": 48.96987984977362, "code_postal": "95210", "stop_lon": 2.308917458272139, "coord": [48.96987984977362, 2.308917458272139], "stop_id": 5150742, "stop_desc": "9 RUE DE MALLEVILLE - 95210", "stop_name": "MAIRIE D'ENGHIEN-LES-BAINS"}, "geometry": {"type": "Point", "coordinates": [2.308917458272139, 48.96987984977362]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9db75341c2572a426e8c0e5e02488d63ccd5befa", "fields": {"departement": "92", "stop_lat": 48.89658424842914, "code_postal": "92050", "stop_lon": 2.1966003533715783, "coord": [48.89658424842914, 2.1966003533715783], "stop_id": 5150745, "stop_desc": "2 AVENUE DE LA REPUBLIQUE - 92050", "stop_name": "NANTERRE - VILLE RER - FAIDHERBE"}, "geometry": {"type": "Point", "coordinates": [2.1966003533715783, 48.89658424842914]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a2719aa5daf77996e6f874a57cd0a6ddfd10667d", "fields": {"departement": "78", "stop_lat": 48.84716628124298, "code_postal": "78126", "stop_lon": 2.136299192876604, "coord": [48.84716628124298, 2.136299192876604], "stop_id": 5150751, "stop_desc": "2 AVENUE PIERRE CORNEILLE - 78126", "stop_name": "HOTEL DE VILLE DE LA CELLE-SAINT-CLOUD"}, "geometry": {"type": "Point", "coordinates": [2.136299192876604, 48.84716628124298]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "95f6d5dd1aa1b39bcff5ae4ad5b65ad472fe65c9", "fields": {"departement": "77", "stop_lat": 48.85605652217107, "code_postal": "77083", "stop_lon": 2.589346915627523, "coord": [48.85605652217107, 2.589346915627523], "stop_id": 5150765, "stop_desc": "2 BOULEVARD DE LA REPUBLIQUE - 77083", "stop_name": "C.S.T.B. - MATTEOTTI"}, "geometry": {"type": "Point", "coordinates": [2.589346915627523, 48.85605652217107]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b08b71c2ee3f911c8c39106fcb9ec7d9ee665256", "fields": {"departement": "95", "stop_lat": 48.96289851620853, "code_postal": "95555", "stop_lon": 2.285815088300164, "coord": [48.96289851620853, 2.285815088300164], "stop_id": 5150767, "stop_desc": "RUE MASSENET - 95555", "stop_name": "SAINT-GRATIEN - RER"}, "geometry": {"type": "Point", "coordinates": [2.285815088300164, 48.96289851620853]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dad3d67e1a762b3d0bc4dd421f592ae3ae2f7900", "fields": {"departement": "95", "stop_lat": 48.96405006721757, "code_postal": "95555", "stop_lon": 2.2888302358118695, "coord": [48.96405006721757, 2.2888302358118695], "stop_id": 5150771, "stop_desc": "80 BOULEVARD DU MARECHAL FOCH - 95555", "stop_name": "SAINT-GRATIEN-RER-GUYNEMER"}, "geometry": {"type": "Point", "coordinates": [2.2888302358118695, 48.96405006721757]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "760e900ebf8a75d6577d8d6e3ff787a742ead8e0", "fields": {"departement": "92", "stop_lat": 48.944519955241304, "code_postal": "92078", "stop_lon": 2.311250687814272, "coord": [48.944519955241304, 2.311250687814272], "stop_id": 5150783, "stop_desc": "148 BOULEVARD CHARLES DE GAULLE - 92078", "stop_name": "ZI DU VAL DE SEINE"}, "geometry": {"type": "Point", "coordinates": [2.311250687814272, 48.944519955241304]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a46810f6eb6cb08813717a9c695482671b3424fd", "fields": {"departement": "92", "stop_lat": 48.94342440679763, "code_postal": "92078", "stop_lon": 2.315439620989305, "coord": [48.94342440679763, 2.315439620989305], "stop_id": 5150784, "stop_desc": "BOULEVARD CHARLES DE GAULLE - 92078", "stop_name": "COMMANDANT D'ESTIENNE D'ORVES"}, "geometry": {"type": "Point", "coordinates": [2.315439620989305, 48.94342440679763]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a45150ec05e173ad2aaee0691b6cc38f8ba7f44e", "fields": {"departement": "92", "stop_lat": 48.941376361861714, "code_postal": "92078", "stop_lon": 2.3214294980369004, "coord": [48.941376361861714, 2.3214294980369004], "stop_id": 5150788, "stop_desc": "BOULEVARD CHARLES DE GAULLE - 92078", "stop_name": "PARC DEPARTEMENTAL"}, "geometry": {"type": "Point", "coordinates": [2.3214294980369004, 48.941376361861714]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a8ae69ccb4744699e4e9f14a73f4b73db5d63432", "fields": {"departement": "92", "stop_lat": 48.93472662034221, "code_postal": "92078", "stop_lon": 2.325932944395314, "coord": [48.93472662034221, 2.325932944395314], "stop_id": 5150792, "stop_desc": "AVENUE DE VERDUN - 92078", "stop_name": "LA NOUE"}, "geometry": {"type": "Point", "coordinates": [2.325932944395314, 48.93472662034221]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3b9647e0ff97fb78770a3a1ef432c67cc1549a2d", "fields": {"departement": "92", "stop_lat": 48.933118072070265, "code_postal": "92078", "stop_lon": 2.3270381543108196, "coord": [48.933118072070265, 2.3270381543108196], "stop_id": 5150794, "stop_desc": "RUE DU HAUT DE LA NOUE - 92078", "stop_name": "ACACIAS"}, "geometry": {"type": "Point", "coordinates": [2.3270381543108196, 48.933118072070265]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d39c77211149a974c6fd2405939ca0e168cf4743", "fields": {"departement": "92", "stop_lat": 48.930862213729235, "code_postal": "92078", "stop_lon": 2.3253882039394207, "coord": [48.930862213729235, 2.3253882039394207], "stop_id": 5150796, "stop_desc": "FACE 8 AVENUE JEAN JAURES - 92078", "stop_name": "AMPERE"}, "geometry": {"type": "Point", "coordinates": [2.3253882039394207, 48.930862213729235]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f724b671dd2dcb38146c9129a4a5f3a4b319cfa4", "fields": {"departement": "92", "stop_lat": 48.92591009969317, "code_postal": "92036", "stop_lon": 2.3224298215034977, "coord": [48.92591009969317, 2.3224298215034977], "stop_id": 5150800, "stop_desc": "RUE DE LA BONGARDE - 92036", "stop_name": "HENRI COLIN"}, "geometry": {"type": "Point", "coordinates": [2.3224298215034977, 48.92591009969317]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "82e200deeb1ba884160dc73418b685f3359511c5", "fields": {"departement": "92", "stop_lat": 48.926071872704725, "code_postal": "92036", "stop_lon": 2.3224979670489403, "coord": [48.926071872704725, 2.3224979670489403], "stop_id": 5150801, "stop_desc": "FACE 77 RUE DE LA BONGARDE - 92036", "stop_name": "HENRI COLIN"}, "geometry": {"type": "Point", "coordinates": [2.3224979670489403, 48.926071872704725]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5c7a883cd25423fbf16fb07d02234541f3ec46c1", "fields": {"departement": "92", "stop_lat": 48.92516459095208, "code_postal": "92078", "stop_lon": 2.326166882721144, "coord": [48.92516459095208, 2.326166882721144], "stop_id": 5150803, "stop_desc": "22 BOULEVARD GALLIENI - 92078", "stop_name": "BONGARDE"}, "geometry": {"type": "Point", "coordinates": [2.326166882721144, 48.92516459095208]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cf082ae759d5edeff30c0451c2da0c8c8ce06a04", "fields": {"departement": "95", "stop_lat": 48.990565178989655, "code_postal": "95252", "stop_lon": 2.2280662766630535, "coord": [48.990565178989655, 2.2280662766630535], "stop_id": 5150807, "stop_desc": "77 RUE DU PLESSIS BOUCHARD - 95252", "stop_name": "LA GARANCIERE"}, "geometry": {"type": "Point", "coordinates": [2.2280662766630535, 48.990565178989655]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1f199dc467e1aed711a22562c36240bbfefde4a9", "fields": {"departement": "95", "stop_lat": 48.97504516351033, "code_postal": "95582", "stop_lon": 2.249449644388353, "coord": [48.97504516351033, 2.249449644388353], "stop_id": 5150815, "stop_desc": "6-8 BOULEVARD GAMBETTA - 95582", "stop_name": "GAMBETTA"}, "geometry": {"type": "Point", "coordinates": [2.249449644388353, 48.97504516351033]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e6ecef094407e3146af7933f17e45d48c3ca9f57", "fields": {"departement": "95", "stop_lat": 48.96969840389336, "code_postal": "95582", "stop_lon": 2.2630676421163067, "coord": [48.96969840389336, 2.2630676421163067], "stop_id": 5150818, "stop_desc": "PLACE SALVADOR ALLENDE - 95582", "stop_name": "GARE DE SANNOIS"}, "geometry": {"type": "Point", "coordinates": [2.2630676421163067, 48.96969840389336]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "135e1a67d596fc177b30332fe4f94f43f0211b86", "fields": {"departement": "95", "stop_lat": 48.96597802584934, "code_postal": "95555", "stop_lon": 2.2794652936593978, "coord": [48.96597802584934, 2.2794652936593978], "stop_id": 5150824, "stop_desc": "BOULEVARD PASTEUR - 95555", "stop_name": "LIBERTE"}, "geometry": {"type": "Point", "coordinates": [2.2794652936593978, 48.96597802584934]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "949858c07cc425fb1b0bb02833b88df7ac0d62ff", "fields": {"departement": "95", "stop_lat": 48.96414901405228, "code_postal": "95555", "stop_lon": 2.2890621661377106, "coord": [48.96414901405228, 2.2890621661377106], "stop_id": 5150829, "stop_desc": "FACE 80 BOULEVARD DU MARECHAL FOCH - 95555", "stop_name": "SAINT-GRATIEN-RER-GUYNEMER"}, "geometry": {"type": "Point", "coordinates": [2.2890621661377106, 48.96414901405228]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ab3339dc23910ded6f081942d50cd6dde5568fd0", "fields": {"departement": "92", "stop_lat": 48.944519955241304, "code_postal": "92078", "stop_lon": 2.311250687814272, "coord": [48.944519955241304, 2.311250687814272], "stop_id": 5150840, "stop_desc": "148 BOULEVARD CHARLES DE GAULLE - 92078", "stop_name": "ZI DU VAL DE SEINE"}, "geometry": {"type": "Point", "coordinates": [2.311250687814272, 48.944519955241304]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d16dac3048dbb955f35c5e94e6869e3956475f55", "fields": {"departement": "92", "stop_lat": 48.94275078777386, "code_postal": "92078", "stop_lon": 2.31769096078661, "coord": [48.94275078777386, 2.31769096078661], "stop_id": 5150843, "stop_desc": "FACE 270 BOULEVARD CHARLES DE GAULLE - 92078", "stop_name": "ZONE INDUSTRIELLE NORD"}, "geometry": {"type": "Point", "coordinates": [2.31769096078661, 48.94275078777386]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cfe989269945b5d470a62d3835b7726000246fc7", "fields": {"departement": "92", "stop_lat": 48.94293955264489, "code_postal": "92078", "stop_lon": 2.3179501029113507, "coord": [48.94293955264489, 2.3179501029113507], "stop_id": 5150844, "stop_desc": "270 BOULEVARD CHARLES DE GAULLE - 92078", "stop_name": "ZONE INDUSTRIELLE NORD"}, "geometry": {"type": "Point", "coordinates": [2.3179501029113507, 48.94293955264489]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "70421381f051842e516186e8041ce96a7ad927ca", "fields": {"departement": "92", "stop_lat": 48.941583094215005, "code_postal": "92078", "stop_lon": 2.3217022839640276, "coord": [48.941583094215005, 2.3217022839640276], "stop_id": 5150846, "stop_desc": "BOULEVARD CHARLES DE GAULLE - 92078", "stop_name": "PARC DEPARTEMENTAL"}, "geometry": {"type": "Point", "coordinates": [2.3217022839640276, 48.941583094215005]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "30566e6786a54a23d61964d3012de52c140958dd", "fields": {"departement": "92", "stop_lat": 48.93510412850019, "code_postal": "92078", "stop_lon": 2.326587617791972, "coord": [48.93510412850019, 2.326587617791972], "stop_id": 5150850, "stop_desc": "AVENUE DE VERDUN - 92078", "stop_name": "LA NOUE"}, "geometry": {"type": "Point", "coordinates": [2.326587617791972, 48.93510412850019]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c388d99c25e6cc9fff1df8d016476906382cc967", "fields": {"departement": "92", "stop_lat": 48.92991799730106, "code_postal": "92078", "stop_lon": 2.320450963769417, "coord": [48.92991799730106, 2.320450963769417], "stop_id": 5150856, "stop_desc": "FACE 25 AVENUE DE LA LONGUE BERTRANE - 92078", "stop_name": "LONGUE BERTRANE"}, "geometry": {"type": "Point", "coordinates": [2.320450963769417, 48.92991799730106]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "23c8e51cc8c2d11776c571d1343bd2eef62ecc4d", "fields": {"departement": "92", "stop_lat": 48.926071872704725, "code_postal": "92036", "stop_lon": 2.3224979670489403, "coord": [48.926071872704725, 2.3224979670489403], "stop_id": 5150858, "stop_desc": "FACE 77 RUE DE LA BONGARDE - 92036", "stop_name": "HENRI COLIN"}, "geometry": {"type": "Point", "coordinates": [2.3224979670489403, 48.926071872704725]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1a80e5604ddef58ffb8c1dde0d9a3c8a6f66dbab", "fields": {"departement": "92", "stop_lat": 48.92516459095208, "code_postal": "92078", "stop_lon": 2.326166882721144, "coord": [48.92516459095208, 2.326166882721144], "stop_id": 5150860, "stop_desc": "22 BOULEVARD GALLIENI - 92078", "stop_name": "BONGARDE"}, "geometry": {"type": "Point", "coordinates": [2.326166882721144, 48.92516459095208]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "46874cba6a32cc06c50123255f88378d2c58d3a0", "fields": {"departement": "92", "stop_lat": 48.94474458594041, "code_postal": "92036", "stop_lon": 2.3110732122311077, "coord": [48.94474458594041, 2.3110732122311077], "stop_id": 5150861, "stop_desc": "55 BOULEVARD DEQUEVAUVILLIERS - 92036", "stop_name": "ZI DU VAL DE SEINE"}, "geometry": {"type": "Point", "coordinates": [2.3110732122311077, 48.94474458594041]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b6210be8f4c66cc5da0ac7fafa8f2a7fcc0f189e", "fields": {"departement": "95", "stop_lat": 48.98579347925429, "code_postal": "95252", "stop_lon": 2.22818558159938, "coord": [48.98579347925429, 2.22818558159938], "stop_id": 5150864, "stop_desc": "14 BOULEVARD MAURICE BERTEAUX - 95252", "stop_name": "MARCHE DE FRANCONVILLE"}, "geometry": {"type": "Point", "coordinates": [2.22818558159938, 48.98579347925429]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "78ddcd14a602d4c05435211af3d4080a3f02c326", "fields": {"departement": "95", "stop_lat": 48.960823766615135, "code_postal": "95197", "stop_lon": 2.322351583732632, "coord": [48.960823766615135, 2.322351583732632], "stop_id": 5150880, "stop_desc": "44 RUE CAMILLE FLAMMARION - 95197", "stop_name": "FLAMMARION"}, "geometry": {"type": "Point", "coordinates": [2.322351583732632, 48.960823766615135]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "73d459245d95c291fb974c2f49109365d4229dc0", "fields": {"departement": "95", "stop_lat": 48.9620723858317, "code_postal": "95197", "stop_lon": 2.3186117114838733, "coord": [48.9620723858317, 2.3186117114838733], "stop_id": 5150881, "stop_desc": "27 RUE DU PROGRES - 95197", "stop_name": "CHOPIN"}, "geometry": {"type": "Point", "coordinates": [2.3186117114838733, 48.9620723858317]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "45f2bae81ba903547a9ceb4e022449e3ec3a1cf4", "fields": {"departement": "95", "stop_lat": 48.96712273357037, "code_postal": "95197", "stop_lon": 2.3177499932101875, "coord": [48.96712273357037, 2.3177499932101875], "stop_id": 5150885, "stop_desc": "3 RUE DU CHATEAU - 95197", "stop_name": "PLACE DE LA BARRE"}, "geometry": {"type": "Point", "coordinates": [2.3177499932101875, 48.96712273357037]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bce1e16d9e3e4e38b496af2bf8e438a03ef4f74f", "fields": {"departement": "95", "stop_lat": 48.96981903418877, "code_postal": "95197", "stop_lon": 2.3198237616782578, "coord": [48.96981903418877, 2.3198237616782578], "stop_id": 5150887, "stop_desc": "AVENUE PAUL FLEURY - 95197", "stop_name": "18 JUIN 1940"}, "geometry": {"type": "Point", "coordinates": [2.3198237616782578, 48.96981903418877]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2da88f291b86fe4a8280ff9681a2ce0942999982", "fields": {"departement": "95", "stop_lat": 48.97544435297354, "code_postal": "95197", "stop_lon": 2.3180471866814374, "coord": [48.97544435297354, 2.3180471866814374], "stop_id": 5150891, "stop_desc": "FACE 85 RUE CAUCHOIX - 95197", "stop_name": "CIMETIERE DE DEUIL-LA-BARRE"}, "geometry": {"type": "Point", "coordinates": [2.3180471866814374, 48.97544435297354]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1817fbb2680064cd748be4f227bdd1e22e674cc8", "fields": {"departement": "95", "stop_lat": 48.97535497325671, "code_postal": "95197", "stop_lon": 2.3213508490352073, "coord": [48.97535497325671, 2.3213508490352073], "stop_id": 5150893, "stop_desc": "10-12 RUE CAUCHOIX - 95197", "stop_name": "MATHIEU CHAZOTTE"}, "geometry": {"type": "Point", "coordinates": [2.3213508490352073, 48.97535497325671]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "710c780c3c6e3e36ccbbfa97ff401f048e4ba978", "fields": {"departement": "95", "stop_lat": 48.974942400305544, "code_postal": "95427", "stop_lon": 2.3449949427801995, "coord": [48.974942400305544, 2.3449949427801995], "stop_id": 5150900, "stop_desc": "FACE 9 RUE DU 11 NOVEMBRE - 95427", "stop_name": "MAIRIE DE MONTMAGNY"}, "geometry": {"type": "Point", "coordinates": [2.3449949427801995, 48.974942400305544]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c0dc1ac981072cd39ec2490155ec8f0de224e630", "fields": {"departement": "93", "stop_lat": 48.96808355018677, "code_postal": "93059", "stop_lon": 2.3609091661790065, "coord": [48.96808355018677, 2.3609091661790065], "stop_id": 5150906, "stop_desc": "14-16 AVENUE DE LA REPUBLIQUE - 93059", "stop_name": "RUE DE LA REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.3609091661790065, 48.96808355018677]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "afeb314c5b9871f73df43418c91ff385bb94838a", "fields": {"departement": "93", "stop_lat": 48.96328239313857, "code_postal": "93059", "stop_lon": 2.3705562323799776, "coord": [48.96328239313857, 2.3705562323799776], "stop_id": 5150910, "stop_desc": "AVENUE LEDRU ROLLIN - 93059", "stop_name": "GARE DE PIERREFITTE - STAINS RER"}, "geometry": {"type": "Point", "coordinates": [2.3705562323799776, 48.96328239313857]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d593a5f143d3a1bafce48f44d296a0aea07124dd", "fields": {"departement": "95", "stop_lat": 48.96575696466103, "code_postal": "95197", "stop_lon": 2.3189925513426464, "coord": [48.96575696466103, 2.3189925513426464], "stop_id": 5150914, "stop_desc": "125 ROUTE DE SAINT-DENIS - 95197", "stop_name": "MARECHAL FOCH"}, "geometry": {"type": "Point", "coordinates": [2.3189925513426464, 48.96575696466103]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "24a5d6d018a67cdc4957e53b30d4632cec6ed109", "fields": {"departement": "95", "stop_lat": 48.961164104253136, "code_postal": "95197", "stop_lon": 2.314940829619705, "coord": [48.961164104253136, 2.314940829619705], "stop_id": 5150915, "stop_desc": "21-23 RUE LA BRUYERE - 95197", "stop_name": "ALEXANDRE DUMAS"}, "geometry": {"type": "Point", "coordinates": [2.314940829619705, 48.961164104253136]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d1cfc55d539cf12312d0c0f2f6e6ec2fce99b1ea", "fields": {"departement": "93", "stop_lat": 48.95969073955379, "code_postal": "93031", "stop_lon": 2.31747984936643, "coord": [48.95969073955379, 2.31747984936643], "stop_id": 5150916, "stop_desc": "7 RUE LA BRUYERE - 93031", "stop_name": "LES PRESLES"}, "geometry": {"type": "Point", "coordinates": [2.31747984936643, 48.95969073955379]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c41caf41471a536a13669d16303c45ed3b193805", "fields": {"departement": "95", "stop_lat": 48.95897290016605, "code_postal": "95197", "stop_lon": 2.3258594057287527, "coord": [48.95897290016605, 2.3258594057287527], "stop_id": 5150918, "stop_desc": "FACE 8 RUE DES PRESLES - 95197", "stop_name": "GARE D'EPINAY - VILLETANEUSE"}, "geometry": {"type": "Point", "coordinates": [2.3258594057287527, 48.95897290016605]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f43262c8067eb634dfdaf57c7b3e061f5069d373", "fields": {"departement": "95", "stop_lat": 48.97426827627478, "code_postal": "95427", "stop_lon": 2.346824085752981, "coord": [48.97426827627478, 2.346824085752981], "stop_id": 5150927, "stop_desc": "4 AVENUE DU GENERAL DE GAULLE - 95427", "stop_name": "MAIRIE DE MONTMAGNY"}, "geometry": {"type": "Point", "coordinates": [2.346824085752981, 48.97426827627478]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1dd80ddf884cd1376d473acf4aae6b2294ecd8e7", "fields": {"departement": "92", "stop_lat": 48.896472832917475, "code_postal": "92044", "stop_lon": 2.278152483179007, "coord": [48.896472832917475, 2.278152483179007], "stop_id": 5151247, "stop_desc": "FACE 143 RUE DANTON - 92044", "stop_name": "POMPIDOU"}, "geometry": {"type": "Point", "coordinates": [2.278152483179007, 48.896472832917475]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a00654dc55f7140e6caedfa95974d7317db67e7c", "fields": {"departement": "92", "stop_lat": 48.90026416008041, "code_postal": "92026", "stop_lon": 2.2602362601770274, "coord": [48.90026416008041, 2.2602362601770274], "stop_id": 5151251, "stop_desc": "15 BOULEVARD ARISTIDE BRIAND - 92026", "stop_name": "PAIX - VERDUN"}, "geometry": {"type": "Point", "coordinates": [2.2602362601770274, 48.90026416008041]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4111c30a2dfa5bd3259d13ea1921dc021f49eda8", "fields": {"departement": "92", "stop_lat": 48.89713404196785, "code_postal": "92026", "stop_lon": 2.256315253118939, "coord": [48.89713404196785, 2.256315253118939], "stop_id": 5151253, "stop_desc": "1-3 PLACE HEROLD - 92026", "stop_name": "HEROLD - MAIRIE DE COURBEVOIE"}, "geometry": {"type": "Point", "coordinates": [2.256315253118939, 48.89713404196785]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "42419aca56b906440149ea2db5b4196fe09bf731", "fields": {"departement": "92", "stop_lat": 48.89490027911459, "code_postal": "92026", "stop_lon": 2.2493264625537774, "coord": [48.89490027911459, 2.2493264625537774], "stop_id": 5151255, "stop_desc": "6 PLACE CHARRAS - 92026", "stop_name": "PLACE CHARRAS"}, "geometry": {"type": "Point", "coordinates": [2.2493264625537774, 48.89490027911459]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8de378840e6f3b4a1ca7ac0d11cb131d81e261ce", "fields": {"departement": "92", "stop_lat": 48.89160141473085, "code_postal": "92062", "stop_lon": 2.2372019748450263, "coord": [48.89160141473085, 2.2372019748450263], "stop_id": 5151257, "stop_desc": "PISTE GARE ROUTIERE - 92062", "stop_name": "LA DEFENSE-METRO-RER-TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.2372019748450263, 48.89160141473085]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fd2f8386c2f1d8f7304eaf39544934d374cbd2c9", "fields": {"departement": "93", "stop_lat": 48.963608376113065, "code_postal": "93059", "stop_lon": 2.3600745767108173, "coord": [48.963608376113065, 2.3600745767108173], "stop_id": 5151274, "stop_desc": "BOULEVARD JEAN MERMOZ - 93059", "stop_name": "MAIRIE DE PIERREFITTE"}, "geometry": {"type": "Point", "coordinates": [2.3600745767108173, 48.963608376113065]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0397f7a6a73ff5d1b820255d834f83d60764a0a4", "fields": {"departement": "93", "stop_lat": 48.964482011701975, "code_postal": "93079", "stop_lon": 2.3449660812303934, "coord": [48.964482011701975, 2.3449660812303934], "stop_id": 5151280, "stop_desc": "9 AVENUE JEAN JAURES - 93079", "stop_name": "JEAN JAURES - SALENGRO"}, "geometry": {"type": "Point", "coordinates": [2.3449660812303934, 48.964482011701975]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2d3409dfbe17324309acf774e73859b369457f19", "fields": {"departement": "94", "stop_lat": 48.764862757592766, "code_postal": "94021", "stop_lon": 2.3530125029203894, "coord": [48.764862757592766, 2.3530125029203894], "stop_id": 4439571, "stop_desc": "AVENUE DES MARAICHERS - 94021", "stop_name": "CHATEAURENARD"}, "geometry": {"type": "Point", "coordinates": [2.3530125029203894, 48.764862757592766]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b8ec601cb14ee682d950fe80937fd5310f99437b", "fields": {"departement": "91", "stop_lat": 48.703603590416634, "code_postal": "91027", "stop_lon": 2.371435642632003, "coord": [48.703603590416634, 2.371435642632003], "stop_id": 4439589, "stop_desc": "AVENUE FRANCOIS MITTERRAND - 91027", "stop_name": "MARX DORMOY"}, "geometry": {"type": "Point", "coordinates": [2.371435642632003, 48.703603590416634]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aaed4995a4c059f8ecfa85f8ef763180b28dc3af", "fields": {"departement": "91", "stop_lat": 48.70353154847919, "code_postal": "91027", "stop_lon": 2.3718973161518453, "coord": [48.70353154847919, 2.3718973161518453], "stop_id": 4439590, "stop_desc": "FACE 75 AVENUE FRANCOIS MITTERRAND - 91027", "stop_name": "MARX DORMOY"}, "geometry": {"type": "Point", "coordinates": [2.3718973161518453, 48.70353154847919]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "95381a9b4ae5cdd4dda493308089207c7e7aab66", "fields": {"departement": "91", "stop_lat": 48.69169394733719, "code_postal": "91326", "stop_lon": 2.3707489718944226, "coord": [48.69169394733719, 2.3707489718944226], "stop_id": 4439597, "stop_desc": "AVENUE DE LA COUR DE FRANCE - 91326", "stop_name": "MAIRIE DE JUVISY"}, "geometry": {"type": "Point", "coordinates": [2.3707489718944226, 48.69169394733719]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0c7c4d0614606475b8a92c5944e685eadc0cee36", "fields": {"departement": "94", "stop_lat": 48.737031881671214, "code_postal": "94054", "stop_lon": 2.36992209078468, "coord": [48.737031881671214, 2.36992209078468], "stop_id": 4439608, "stop_desc": "AVENUE DE L'EUROPE - 94054", "stop_name": "CAROLINE AIGLE"}, "geometry": {"type": "Point", "coordinates": [2.36992209078468, 48.737031881671214]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9774fea90a2f1582e3c3f87b5a16830cd9be1a6c", "fields": {"departement": "94", "stop_lat": 48.755026562472345, "code_postal": "94073", "stop_lon": 2.3689682656989417, "coord": [48.755026562472345, 2.3689682656989417], "stop_id": 4439611, "stop_desc": "AVENUE DE FONTAINEBLEAU - 94073", "stop_name": "BELLE EPINE SUD"}, "geometry": {"type": "Point", "coordinates": [2.3689682656989417, 48.755026562472345]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "056b268efed6b8672acee2203784e6bb52d8d1a8", "fields": {"departement": "94", "stop_lat": 48.759647329141785, "code_postal": "94021", "stop_lon": 2.36555881891316, "coord": [48.759647329141785, 2.36555881891316], "stop_id": 4439612, "stop_desc": "RUE DE THIAIS - 94021", "stop_name": "PORTE DE THIAIS."}, "geometry": {"type": "Point", "coordinates": [2.36555881891316, 48.759647329141785]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fa4c6ebe19c688caa534310660698416b2e046dd", "fields": {"departement": "94", "stop_lat": 48.796272681571224, "code_postal": "94076", "stop_lon": 2.368517307929323, "coord": [48.796272681571224, 2.368517307929323], "stop_id": 4439619, "stop_desc": "33 BOULEVARD MAXIME GORKI - 94076", "stop_name": "PAUL VAILLANT-COUTURIER - HOPITAL PAUL BROUSSE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.368517307929323, 48.796272681571224]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7f3edfd1371d788a5689bdb0483b0e46b2b7fcfd", "fields": {"departement": "92", "stop_lat": 48.80690705621798, "code_postal": "92023", "stop_lon": 2.2537481161675283, "coord": [48.80690705621798, 2.2537481161675283], "stop_id": 4458757, "stop_desc": "41-43 AVENUE ADOLPHE SCHNEIDER - 92023", "stop_name": "VALLEE DU BOIS"}, "geometry": {"type": "Point", "coordinates": [2.2537481161675283, 48.80690705621798]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5612ffc51f57303940c58501ad989ffed41b6d4a", "fields": {"departement": "92", "stop_lat": 48.801280087884315, "code_postal": "92020", "stop_lon": 2.283988795470582, "coord": [48.801280087884315, 2.283988795470582], "stop_id": 4458763, "stop_desc": "FACE 52 AVENUE DE VERDUN - 92020", "stop_name": "GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.283988795470582, 48.801280087884315]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "45932e103574af2498fa97872608a77ba244395d", "fields": {"departement": "92", "stop_lat": 48.79959122387618, "code_postal": "92020", "stop_lon": 2.285922459098015, "coord": [48.79959122387618, 2.285922459098015], "stop_id": 4458764, "stop_desc": "FACE 1 TER RUE D'ESTIENNE D'ORVES - 92020", "stop_name": "D'ESTIENNE D'ORVES - DIVISION LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.285922459098015, 48.79959122387618]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2f83eab77e90e8dcb963f788909e730437186703", "fields": {"departement": "92", "stop_lat": 48.798019037952486, "code_postal": "92020", "stop_lon": 2.2875429769632474, "coord": [48.798019037952486, 2.2875429769632474], "stop_id": 4458765, "stop_desc": "FACE 1 RUE DES PIERRELAIS - 92020", "stop_name": "PIERRELAIS-FONTENAY"}, "geometry": {"type": "Point", "coordinates": [2.2875429769632474, 48.798019037952486]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ef0b7b11dad0e41a2afcf94c20159275883d4388", "fields": {"departement": "92", "stop_lat": 48.79805476479201, "code_postal": "92007", "stop_lon": 2.3176094292017297, "coord": [48.79805476479201, 2.3176094292017297], "stop_id": 4458773, "stop_desc": "12 AVENUE LOUIS PASTEUR - 92007", "stop_name": "PASTEUR - MEUNIERS"}, "geometry": {"type": "Point", "coordinates": [2.3176094292017297, 48.79805476479201]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c6203e13ee65695c07424ec49b56fef61162856f", "fields": {"departement": "92", "stop_lat": 48.80103955903768, "code_postal": "92007", "stop_lon": 2.3235267038195793, "coord": [48.80103955903768, 2.3235267038195793], "stop_id": 4458775, "stop_desc": "FACE 1 AVENUE ARISTIDE BRIAND - 92007", "stop_name": "GRANGE ORY"}, "geometry": {"type": "Point", "coordinates": [2.3235267038195793, 48.80103955903768]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "76de8d7ddba16a63ce36212c68ffea7a301fd1a2", "fields": {"departement": "94", "stop_lat": 48.794638308248146, "code_postal": "94076", "stop_lon": 2.3625442339929292, "coord": [48.794638308248146, 2.3625442339929292], "stop_id": 4458788, "stop_desc": "31 BOULEVARD PAUL VAILLANT COUTURIER - 94076", "stop_name": "GROUPE HOSPITALIER PAUL BROUSSE"}, "geometry": {"type": "Point", "coordinates": [2.3625442339929292, 48.794638308248146]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4103e5486103b6141294934bbe1bda88373ebed9", "fields": {"departement": "94", "stop_lat": 48.78762657014496, "code_postal": "94076", "stop_lon": 2.367559962135708, "coord": [48.78762657014496, 2.367559962135708], "stop_id": 4458792, "stop_desc": "PISTE GARE ROUTIERE - 94076", "stop_name": "VILLEJUIF - LOUIS ARAGON-METRO"}, "geometry": {"type": "Point", "coordinates": [2.367559962135708, 48.78762657014496]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a42224cdf08c6b792e4381f804df12e526afe43e", "fields": {"departement": "94", "stop_lat": 48.79221063758954, "code_postal": "94076", "stop_lon": 2.3666376189108953, "coord": [48.79221063758954, 2.3666376189108953], "stop_id": 4458793, "stop_desc": "85 RUE JEAN JAURES - 94076", "stop_name": "GUYNEMER - PLACE DES FUSILLES"}, "geometry": {"type": "Point", "coordinates": [2.3666376189108953, 48.79221063758954]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d2787586139e408872695ed5bef42892ba7b19d9", "fields": {"departement": "94", "stop_lat": 48.80001559599069, "code_postal": "94003", "stop_lon": 2.343050518944524, "coord": [48.80001559599069, 2.343050518944524], "stop_id": 4458800, "stop_desc": "AVENUE PAUL VAILLANT COUTURIER - 94003", "stop_name": "QUATRE CHEMINS"}, "geometry": {"type": "Point", "coordinates": [2.343050518944524, 48.80001559599069]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "366895dd4546f2022a62617d118573c2d79b5628", "fields": {"departement": "94", "stop_lat": 48.80202900814903, "code_postal": "94003", "stop_lon": 2.338220690104766, "coord": [48.80202900814903, 2.338220690104766], "stop_id": 4458801, "stop_desc": "FACE 1 RUE AUGUSTE DELAUNE - 94003", "stop_name": "AUGUSTE DELAUNE"}, "geometry": {"type": "Point", "coordinates": [2.338220690104766, 48.80202900814903]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "660b8d5df703b6a93d919e5523f2627f1db32aa3", "fields": {"departement": "94", "stop_lat": 48.80148968188163, "code_postal": "94003", "stop_lon": 2.3334587047633777, "coord": [48.80148968188163, 2.3334587047633777], "stop_id": 4458802, "stop_desc": "39 AVENUE DE LA CONVENTION - 94003", "stop_name": "CITE JARDINS"}, "geometry": {"type": "Point", "coordinates": [2.3334587047633777, 48.80148968188163]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "037cbb6ce8627b8d834f90ba402525bfaefcc9a3", "fields": {"departement": "94", "stop_lat": 48.795036424790915, "code_postal": "94016", "stop_lon": 2.3342209975753114, "coord": [48.795036424790915, 2.3342209975753114], "stop_id": 4458804, "stop_desc": "4 RUE GALLIENI - 94016", "stop_name": "MAIRIE DE CACHAN"}, "geometry": {"type": "Point", "coordinates": [2.3342209975753114, 48.795036424790915]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ea1a55713506e2ddf256c00fa441611173303f2d", "fields": {"departement": "92", "stop_lat": 48.79951155253117, "code_postal": "92007", "stop_lon": 2.322901271964075, "coord": [48.79951155253117, 2.322901271964075], "stop_id": 4458807, "stop_desc": "116 AVENUE ARISTIDE BRIAND - 92007", "stop_name": "CARNOT - ARISTIDE BRIAND"}, "geometry": {"type": "Point", "coordinates": [2.322901271964075, 48.79951155253117]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "42ccfb9a189104a97afe05bdc0ccdc7f5c71bf09", "fields": {"departement": "92", "stop_lat": 48.80754418741769, "code_postal": "92023", "stop_lon": 2.2523319386002734, "coord": [48.80754418741769, 2.2523319386002734], "stop_id": 4458825, "stop_desc": "76 AVENUE ADOLPHE SCHNEIDER - 92023", "stop_name": "HOPITAL SAINTE-EMILIE"}, "geometry": {"type": "Point", "coordinates": [2.2523319386002734, 48.80754418741769]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1f1b3e96cea51f2433e2b9ac2833c4efe310a3eb", "fields": {"departement": "92", "stop_lat": 48.80782092548795, "code_postal": "92048", "stop_lon": 2.249732489524222, "coord": [48.80782092548795, 2.249732489524222], "stop_id": 4458826, "stop_desc": "90 AVENUE ALDOLPHE SCHNEIDER - 92048", "stop_name": "RUE DES PEUPLIERS"}, "geometry": {"type": "Point", "coordinates": [2.249732489524222, 48.80782092548795]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7f31a6e7ff1877816f9a7261fd1a8b27198c1233", "fields": {"departement": "92", "stop_lat": 48.808332006461626, "code_postal": "92048", "stop_lon": 2.2480851270319326, "coord": [48.808332006461626, 2.2480851270319326], "stop_id": 4458827, "stop_desc": "69 RUE DE BELGIQUE - 92048", "stop_name": "ORPHELINAT"}, "geometry": {"type": "Point", "coordinates": [2.2480851270319326, 48.808332006461626]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d02a0075528099f02ca69d74836fb011dc47d3a0", "fields": {"departement": "92", "stop_lat": 48.808084076745295, "code_postal": "92048", "stop_lon": 2.2413226844090564, "coord": [48.808084076745295, 2.2413226844090564], "stop_id": 4458829, "stop_desc": "22 PLACE HENRI BROUSSE - 92048", "stop_name": "VAL FLEURY RER"}, "geometry": {"type": "Point", "coordinates": [2.2413226844090564, 48.808084076745295]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d005bf9f9129f0264ac3b170cfd1fcd1d2c7d64f", "fields": {"departement": "75", "stop_lat": 48.87890753230554, "code_postal": "75108", "stop_lon": 2.32197997933179, "coord": [48.87890753230554, 2.32197997933179], "stop_id": 4459238, "stop_desc": "53 RUE DE ROME - 75108", "stop_name": "EUROPE"}, "geometry": {"type": "Point", "coordinates": [2.32197997933179, 48.87890753230554]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1c00c9963329746cb7d4f2d219fa887746409050", "fields": {"departement": "75", "stop_lat": 48.870073925958685, "code_postal": "75102", "stop_lon": 2.333249331660691, "coord": [48.870073925958685, 2.333249331660691], "stop_id": 4459244, "stop_desc": "35 RUE DU 4 SEPTEMBRE - 75102", "stop_name": "OPERA - 4 SEPTEMBRE"}, "geometry": {"type": "Point", "coordinates": [2.333249331660691, 48.870073925958685]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a021ea8d09acce8fba04b7620e54a0bfff688cfe", "fields": {"departement": "75", "stop_lat": 48.863824392740085, "code_postal": "75120", "stop_lon": 2.3915519700524968, "coord": [48.863824392740085, 2.3915519700524968], "stop_id": 4459269, "stop_desc": "FACE 29 AVENUE GAMBETTA - 75120", "stop_name": "MURIERS"}, "geometry": {"type": "Point", "coordinates": [2.3915519700524968, 48.863824392740085]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "86d1c4110dad5ffe76050150257a4722f22704f3", "fields": {"departement": "75", "stop_lat": 48.864656695043344, "code_postal": "75120", "stop_lon": 2.3987998628210687, "coord": [48.864656695043344, 2.3987998628210687], "stop_id": 4459271, "stop_desc": "4 PLACE GAMBETTA - 75120", "stop_name": "GAMBETTA"}, "geometry": {"type": "Point", "coordinates": [2.3987998628210687, 48.864656695043344]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "48b3e61e643b7540f9452a7842cdcbe1c83d51a6", "fields": {"departement": "75", "stop_lat": 48.86455178820427, "code_postal": "75120", "stop_lon": 2.409561271654804, "coord": [48.86455178820427, 2.409561271654804], "stop_id": 4459273, "stop_desc": "2 AVENUE DE LA PORTE DE BAGNOLET - 75120", "stop_name": "PORTE DE BAGNOLET"}, "geometry": {"type": "Point", "coordinates": [2.409561271654804, 48.86455178820427]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "73f0ad40bf0640abdaab4499ad0dfcbdaaac0f67", "fields": {"departement": "93", "stop_lat": 48.859410350200605, "code_postal": "93048", "stop_lon": 2.423992199575018, "coord": [48.859410350200605, 2.423992199575018], "stop_id": 4459277, "stop_desc": "165 BOULEVARD CHANZY - 93048", "stop_name": "FRATERNITE"}, "geometry": {"type": "Point", "coordinates": [2.423992199575018, 48.859410350200605]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9e40c38576e9065e2b2913e5e0cb13364b505ce5", "fields": {"departement": "93", "stop_lat": 48.858535536270956, "code_postal": "93048", "stop_lon": 2.428063301132043, "coord": [48.858535536270956, 2.428063301132043], "stop_id": 4459278, "stop_desc": "105 BOULEVARD CHANZY - 93048", "stop_name": "SORINS"}, "geometry": {"type": "Point", "coordinates": [2.428063301132043, 48.858535536270956]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "627bac0bee7cb87f793a0149ce882941d2e734fb", "fields": {"departement": "93", "stop_lat": 48.85868970531647, "code_postal": "93048", "stop_lon": 2.437543550108734, "coord": [48.85868970531647, 2.437543550108734], "stop_id": 4459280, "stop_desc": "55 BOULEVARD ROUGET DE LISLE - 93048", "stop_name": "CROIX DE CHAVAUX - ROUGET DE LISLE"}, "geometry": {"type": "Point", "coordinates": [2.437543550108734, 48.85868970531647]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ad69e35d05ad4a1c55c3ab43954b9dfd4bd1749f", "fields": {"departement": "93", "stop_lat": 48.8603866337713, "code_postal": "93048", "stop_lon": 2.4395355132639738, "coord": [48.8603866337713, 2.4395355132639738], "stop_id": 4459281, "stop_desc": "19 BOULEVARD ROUGET DE LISLE - 93048", "stop_name": "VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.4395355132639738, 48.8603866337713]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5dc5378c3f98facffc0bf13272f40b67f0a1d0e9", "fields": {"departement": "94", "stop_lat": 48.8015993230809, "code_postal": "94081", "stop_lon": 2.378820010546215, "coord": [48.8015993230809, 2.378820010546215], "stop_id": 4471748, "stop_desc": "113 BOULEVARD DE STALINGRAD - 94081", "stop_name": "MALASSIS"}, "geometry": {"type": "Point", "coordinates": [2.378820010546215, 48.8015993230809]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1085d33bf8866ace0e58442e9d2b7f668e1fc300", "fields": {"departement": "94", "stop_lat": 48.78563163463027, "code_postal": "94081", "stop_lon": 2.3917014455806394, "coord": [48.78563163463027, 2.3917014455806394], "stop_id": 4471753, "stop_desc": "AVENUE YOURI GAGARINE - 94081", "stop_name": "CAMILLE GROULT"}, "geometry": {"type": "Point", "coordinates": [2.3917014455806394, 48.78563163463027]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "90b477d9198dc129160c1cfba95866e25c25d9f1", "fields": {"departement": "94", "stop_lat": 48.77366491253502, "code_postal": "94073", "stop_lon": 2.3992767882574992, "coord": [48.77366491253502, 2.3992767882574992], "stop_id": 4471756, "stop_desc": "1 BD DE STALINGRAD - 94073", "stop_name": "TROIS COMMUNES"}, "geometry": {"type": "Point", "coordinates": [2.3992767882574992, 48.77366491253502]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2d735b07742aa1a27779d0f50686e7bceff8ffbf", "fields": {"departement": "94", "stop_lat": 48.77041910587895, "code_postal": "94073", "stop_lon": 2.4013941250520006, "coord": [48.77041910587895, 2.4013941250520006], "stop_id": 4471757, "stop_desc": "39 BOULEVARD DE STALINGRAD - 94073", "stop_name": "DOCTEUR ROUX"}, "geometry": {"type": "Point", "coordinates": [2.4013941250520006, 48.77041910587895]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cb11b8b49bdcef2ac009fe981fff11217868d44e", "fields": {"departement": "94", "stop_lat": 48.76459279271852, "code_postal": "94022", "stop_lon": 2.4050714452376734, "coord": [48.76459279271852, 2.4050714452376734], "stop_id": 4471759, "stop_desc": "1 BOULEVARD DES ALLIES - 94022", "stop_name": "ROUGET DE LISLE"}, "geometry": {"type": "Point", "coordinates": [2.4050714452376734, 48.76459279271852]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6f6bbbdfa6a76724e18cd6506c290679fa24ce80", "fields": {"departement": "94", "stop_lat": 48.75384773922528, "code_postal": "94022", "stop_lon": 2.4121258754862116, "coord": [48.75384773922528, 2.4121258754862116], "stop_id": 4471763, "stop_desc": "AVENUE DE NEWBURN - 94022", "stop_name": "ROBERT PEARY"}, "geometry": {"type": "Point", "coordinates": [2.4121258754862116, 48.75384773922528]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0cc56c65f1554fb0a80539e2fe30ce8106e7b3ee", "fields": {"departement": "94", "stop_lat": 48.750332280104146, "code_postal": "94054", "stop_lon": 2.413819843454324, "coord": [48.750332280104146, 2.413819843454324], "stop_id": 4471764, "stop_desc": "25 R JEAN MERMOZ - 94054", "stop_name": "JEAN MERMOZ"}, "geometry": {"type": "Point", "coordinates": [2.413819843454324, 48.750332280104146]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3683f10785cbf7907327a706cf63af754c26aaac", "fields": {"departement": "94", "stop_lat": 48.74479958382108, "code_postal": "94054", "stop_lon": 2.4072609227980992, "coord": [48.74479958382108, 2.4072609227980992], "stop_id": 4471767, "stop_desc": "71 AVENUE ADRIEN RAYNAL - 94054", "stop_name": "FER A CHEVAL"}, "geometry": {"type": "Point", "coordinates": [2.4072609227980992, 48.74479958382108]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dd0606d2432dd91c1aaf26ba8fa8216becb497d9", "fields": {"departement": "94", "stop_lat": 48.744861448673305, "code_postal": "94054", "stop_lon": 2.3921615988643334, "coord": [48.744861448673305, 2.3921615988643334], "stop_id": 4471769, "stop_desc": "40-42 AVENUE CHARLES TILLON - 94054", "stop_name": "PARC MELIES"}, "geometry": {"type": "Point", "coordinates": [2.3921615988643334, 48.744861448673305]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f59d3fc55d9fdf91045627e42c9e2a7f9fd90ffe", "fields": {"departement": "94", "stop_lat": 48.7509120864555, "code_postal": "94073", "stop_lon": 2.3886475579155837, "coord": [48.7509120864555, 2.3886475579155837], "stop_id": 4471773, "stop_desc": "6 RUE DU BAS MARIN - 94073", "stop_name": "RUE DES OLIVIERS"}, "geometry": {"type": "Point", "coordinates": [2.3886475579155837, 48.7509120864555]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c2775fbe174356b70a834068d9cc56e29f1ed463", "fields": {"departement": "94", "stop_lat": 48.759448634048056, "code_postal": "94073", "stop_lon": 2.3693244252130907, "coord": [48.759448634048056, 2.3693244252130907], "stop_id": 4471778, "stop_desc": "ROUTE DE THIAIS - 94073", "stop_name": "LE COR DE CHASSE"}, "geometry": {"type": "Point", "coordinates": [2.3693244252130907, 48.759448634048056]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4795e56485aa62fedb73baa1b2bedd04030abff0", "fields": {"departement": "94", "stop_lat": 48.735027212023176, "code_postal": "94054", "stop_lon": 2.370926361700839, "coord": [48.735027212023176, 2.370926361700839], "stop_id": 4471788, "stop_desc": "AVENUE DE L'UNION - 94054", "stop_name": "COEUR D'ORLY"}, "geometry": {"type": "Point", "coordinates": [2.370926361700839, 48.735027212023176]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b8051878417cf4c6bb7f4fe70cab5178fcc69a41", "fields": {"departement": "94", "stop_lat": 48.75249006646405, "code_postal": "94073", "stop_lon": 2.3752194138360245, "coord": [48.75249006646405, 2.3752194138360245], "stop_id": 4471797, "stop_desc": "5 RUE DES ALOUETTES - 94073", "stop_name": "ALOUETTES"}, "geometry": {"type": "Point", "coordinates": [2.3752194138360245, 48.75249006646405]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "70d1b44833d77115dde2aa6346f9b7bfd441d7eb", "fields": {"departement": "94", "stop_lat": 48.7511010314616, "code_postal": "94073", "stop_lon": 2.3881991937176164, "coord": [48.7511010314616, 2.3881991937176164], "stop_id": 4471800, "stop_desc": "FACE 6 RUE DU BAS MARIN - 94073", "stop_name": "RUE DES OLIVIERS"}, "geometry": {"type": "Point", "coordinates": [2.3881991937176164, 48.7511010314616]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c8ba33af6353c19b2f204716c4f0ee56224e191b", "fields": {"departement": "94", "stop_lat": 48.745249993323334, "code_postal": "94054", "stop_lon": 2.387527503568191, "coord": [48.745249993323334, 2.387527503568191], "stop_id": 4471803, "stop_desc": "121 AVENUE DE LA VICTOIRE - 94054", "stop_name": "CIMETIERE PAYSAGER"}, "geometry": {"type": "Point", "coordinates": [2.387527503568191, 48.745249993323334]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1a04042102ebccbb26d793efd4fa8e90703e030f", "fields": {"departement": "94", "stop_lat": 48.7447445765711, "code_postal": "94054", "stop_lon": 2.392215838582799, "coord": [48.7447445765711, 2.392215838582799], "stop_id": 4471804, "stop_desc": "FACE 40 AVENUE CHARLES TILLON - 94054", "stop_name": "PARC MELIES"}, "geometry": {"type": "Point", "coordinates": [2.392215838582799, 48.7447445765711]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e6cd0a35d025298ff652573cac7d6af113792626", "fields": {"departement": "94", "stop_lat": 48.761229701279525, "code_postal": "94022", "stop_lon": 2.407718101924585, "coord": [48.761229701279525, 2.407718101924585], "stop_id": 4471813, "stop_desc": "5 AVENUE DE LA REPUBLIQUE - 94022", "stop_name": "WALDECK ROUSSEAU"}, "geometry": {"type": "Point", "coordinates": [2.407718101924585, 48.761229701279525]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "482d254d3026dcbe5a3a994e5409f55679a317e5", "fields": {"departement": "94", "stop_lat": 48.76795532866585, "code_postal": "94022", "stop_lon": 2.4033082416592277, "coord": [48.76795532866585, 2.4033082416592277], "stop_id": 4471815, "stop_desc": "10 BOULEVARD DE STALINGRAD - 94022", "stop_name": "VERDUN - HOCHE"}, "geometry": {"type": "Point", "coordinates": [2.4033082416592277, 48.76795532866585]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "09d84acdce2a7e6bd5d09b68f56c68ff07d9f6e4", "fields": {"departement": "94", "stop_lat": 48.77802538307672, "code_postal": "94081", "stop_lon": 2.3967660868571934, "coord": [48.77802538307672, 2.3967660868571934], "stop_id": 4471818, "stop_desc": "86 AVENUE ROUGET DE LISLE - 94081", "stop_name": "LES PLATRIERES"}, "geometry": {"type": "Point", "coordinates": [2.3967660868571934, 48.77802538307672]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ffc3e9faca9f0936c67323bae41bb2bb13e1413c", "fields": {"departement": "94", "stop_lat": 48.78687212511729, "code_postal": "94081", "stop_lon": 2.391362700632961, "coord": [48.78687212511729, 2.391362700632961], "stop_id": 4471820, "stop_desc": "FACE 26 AVENUE YOURI GARGARINE - 94081", "stop_name": "CAMILLE GROULT"}, "geometry": {"type": "Point", "coordinates": [2.391362700632961, 48.78687212511729]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "781c3a9ae3ec87defefab9187996c93f1eae2211", "fields": {"departement": "94", "stop_lat": 48.79312091733187, "code_postal": "94081", "stop_lon": 2.386308726814493, "coord": [48.79312091733187, 2.386308726814493], "stop_id": 4471822, "stop_desc": "FACE 5 RUE EUGENE PELLETAN - 94081", "stop_name": "MUSEE MAC-VAL"}, "geometry": {"type": "Point", "coordinates": [2.386308726814493, 48.79312091733187]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a1e03a0c1868dfaa5a6e475e7886e618b41c3498", "fields": {"departement": "94", "stop_lat": 48.7949551072651, "code_postal": "94081", "stop_lon": 2.3846779874533124, "coord": [48.7949551072651, 2.3846779874533124], "stop_id": 4471823, "stop_desc": "BOULEVARD DE STALINGRAD - 94081", "stop_name": "CHARLES INFROIT"}, "geometry": {"type": "Point", "coordinates": [2.3846779874533124, 48.7949551072651]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "591f8301377e6be25f424b7b795b2f581bbe2999", "fields": {"departement": "94", "stop_lat": 48.800780952210616, "code_postal": "94041", "stop_lon": 2.3801662959198318, "coord": [48.800780952210616, 2.3801662959198318], "stop_id": 4471825, "stop_desc": "122 BOULEVARD DE STALINGRAD - 94041", "stop_name": "MALASSIS"}, "geometry": {"type": "Point", "coordinates": [2.3801662959198318, 48.800780952210616]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c588d417795e57f75420472de34dc45752f35cff", "fields": {"departement": "94", "stop_lat": 48.81331311831112, "code_postal": "94041", "stop_lon": 2.370174229249393, "coord": [48.81331311831112, 2.370174229249393], "stop_id": 4471829, "stop_desc": "73 AVENUE DE VERDUN - 94041", "stop_name": "CIMETIERE PARISIEN - PLACE DU GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.370174229249393, 48.81331311831112]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "08d071387ca0ea1009adbd29843cce27db0f1b16", "fields": {"departement": "75", "stop_lat": 48.81944380838265, "code_postal": "75113", "stop_lon": 2.366081402186715, "coord": [48.81944380838265, 2.366081402186715], "stop_id": 4471831, "stop_desc": "FACE 7 RUE LACHELIER - 75113", "stop_name": "PORTE DE CHOISY"}, "geometry": {"type": "Point", "coordinates": [2.366081402186715, 48.81944380838265]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "37f22d165def50f8a85835a7b3836cd4677a14ee", "fields": {"departement": "75", "stop_lat": 48.82384472031774, "code_postal": "75113", "stop_lon": 2.3767280441419465, "coord": [48.82384472031774, 2.3767280441419465], "stop_id": 4471834, "stop_desc": "21 BOULEVARD MASSENA - 75113", "stop_name": "PORTE DE VITRY"}, "geometry": {"type": "Point", "coordinates": [2.3767280441419465, 48.82384472031774]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "72e1efc0bad6a1415b761448887e8063ebd3b581", "fields": {"departement": "75", "stop_lat": 48.84523749224217, "code_postal": "75112", "stop_lon": 2.3690506507770803, "coord": [48.84523749224217, 2.3690506507770803], "stop_id": 4471842, "stop_desc": "4 BIS BOULEVARD DIDEROT - 75112", "stop_name": "PONT D'AUSTERLITZ - QUAI DE LA RAPEE"}, "geometry": {"type": "Point", "coordinates": [2.3690506507770803, 48.84523749224217]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2e34546f91908c35ef92df026643d2081ace400c", "fields": {"departement": "92", "stop_lat": 48.89174434180097, "code_postal": "92050", "stop_lon": 2.208239328971497, "coord": [48.89174434180097, 2.208239328971497], "stop_id": 4472496, "stop_desc": "AVENUE FREDERIC ET IRENE JOLIOT CURIE - 92050", "stop_name": "MAIRIE DE NANTERRE"}, "geometry": {"type": "Point", "coordinates": [2.208239328971497, 48.89174434180097]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5b60671d94c391fd982af2c2f666190d2d7668c5", "fields": {"departement": "92", "stop_lat": 48.88960127968521, "code_postal": "92050", "stop_lon": 2.2044967458355496, "coord": [48.88960127968521, 2.2044967458355496], "stop_id": 4472498, "stop_desc": "45 AVENUE FREDERIC ET IRENE JOLIOT CURIE - 92050", "stop_name": "SADI-CARNOT - JOLIOT-CURIE"}, "geometry": {"type": "Point", "coordinates": [2.2044967458355496, 48.88960127968521]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "151e7feecfa1981f3d0d636969e30070ab8a823f", "fields": {"departement": "92", "stop_lat": 48.88387910264952, "code_postal": "92063", "stop_lon": 2.191415575852575, "coord": [48.88387910264952, 2.191415575852575], "stop_id": 4472503, "stop_desc": "10 AVENUE PAUL DOUMER - 92063", "stop_name": "BOULEVARD NATIONAL"}, "geometry": {"type": "Point", "coordinates": [2.191415575852575, 48.88387910264952]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eb69ac660639fe4642c7ef72b073a588a4a6293a", "fields": {"departement": "92", "stop_lat": 48.88261646917931, "code_postal": "92063", "stop_lon": 2.1878488645965537, "coord": [48.88261646917931, 2.1878488645965537], "stop_id": 4472504, "stop_desc": "FACE 45 AVENUE PAUL DOUMER - 92063", "stop_name": "GABRIEL PERI"}, "geometry": {"type": "Point", "coordinates": [2.1878488645965537, 48.88261646917931]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "31ec00dad6a53c455c4cc857a28b330f3e68d0b6", "fields": {"departement": "92", "stop_lat": 48.87137676953357, "code_postal": "92063", "stop_lon": 2.1834670740107733, "coord": [48.87137676953357, 2.1834670740107733], "stop_id": 4472512, "stop_desc": "FACE 27-29 BOULEVARD RICHELIEU - 92063", "stop_name": "ZURICH"}, "geometry": {"type": "Point", "coordinates": [2.1834670740107733, 48.87137676953357]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5c8dd5eb8a9d613e5ca16a7489fb23a1226b575f", "fields": {"departement": "92", "stop_lat": 48.871637489328236, "code_postal": "92063", "stop_lon": 2.1835344210818635, "coord": [48.871637489328236, 2.1835344210818635], "stop_id": 4472513, "stop_desc": "17 BOULEVARD RICHELIEU - 92063", "stop_name": "ZURICH"}, "geometry": {"type": "Point", "coordinates": [2.1835344210818635, 48.871637489328236]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "03236c7d67d27735cd7f89ae6d0370ea0223c83c", "fields": {"departement": "75", "stop_lat": 48.87218927378012, "code_postal": "75108", "stop_lon": 2.3003058618572507, "coord": [48.87218927378012, 2.3003058618572507], "stop_id": 4037770, "stop_desc": "116-116BIS AVENUE DES CHAMPS ELYSEES - 75108", "stop_name": "GEORGE V"}, "geometry": {"type": "Point", "coordinates": [2.3003058618572507, 48.87218927378012]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "203f3629dcc8014d82ade3a22152b2087e704fc7", "fields": {"departement": "75", "stop_lat": 48.859873277650976, "code_postal": "75101", "stop_lon": 2.333849441440465, "coord": [48.859873277650976, 2.333849441440465], "stop_id": 4037782, "stop_desc": "QUAI FRANCOIS MITTERRAND - 75101", "stop_name": "QUAI FRANCOIS MITTERRAND"}, "geometry": {"type": "Point", "coordinates": [2.333849441440465, 48.859873277650976]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8df366de3f54c10aa02a68f1d3082ae7fdb87f20", "fields": {"departement": "75", "stop_lat": 48.857014888715405, "code_postal": "75104", "stop_lon": 2.347469838537296, "coord": [48.857014888715405, 2.347469838537296], "stop_id": 4037785, "stop_desc": "FACE 16 QUAI DE GESVRES - 75104", "stop_name": "CHATELET"}, "geometry": {"type": "Point", "coordinates": [2.347469838537296, 48.857014888715405]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a0c3f07b2f77c4b147e5999f4d476a718144f970", "fields": {"departement": "75", "stop_lat": 48.864034354931775, "code_postal": "75101", "stop_lon": 2.3315879074954515, "coord": [48.864034354931775, 2.3315879074954515], "stop_id": 4037791, "stop_desc": "194 RUE DE RIVOLI - 75101", "stop_name": "PYRAMIDES - TUILERIES"}, "geometry": {"type": "Point", "coordinates": [2.3315879074954515, 48.864034354931775]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "98631c0dc2c894b9336d78586841ce8c587a4d6e", "fields": {"departement": "75", "stop_lat": 48.86696330378451, "code_postal": "75108", "stop_lon": 2.3213023563461532, "coord": [48.86696330378451, 2.3213023563461532], "stop_id": 4037793, "stop_desc": "6 PLACE DE LA CONCORDE - 75108", "stop_name": "CONCORDE"}, "geometry": {"type": "Point", "coordinates": [2.3213023563461532, 48.86696330378451]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bedec9082aea41183c99d159d2663f9f1b13063d", "fields": {"departement": "75", "stop_lat": 48.87819549713169, "code_postal": "75117", "stop_lon": 2.2837598887649864, "coord": [48.87819549713169, 2.2837598887649864], "stop_id": 4037796, "stop_desc": "PLACE DE LA PORTE MAILLOT - 75117", "stop_name": "PORTE MAILLOT - PALAIS DES CONGRES"}, "geometry": {"type": "Point", "coordinates": [2.2837598887649864, 48.87819549713169]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "728af16af6b522f82f0d2d60c91ef5b4176e605d", "fields": {"departement": "92", "stop_lat": 48.879163952428165, "code_postal": "92051", "stop_lon": 2.2791260385417873, "coord": [48.879163952428165, 2.2791260385417873], "stop_id": 4037797, "stop_desc": "16 AVENUE CHARLES DE GAULLE - 92051", "stop_name": "MONTROSIER"}, "geometry": {"type": "Point", "coordinates": [2.2791260385417873, 48.879163952428165]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9a6bb1911c42ed3d3e1d4c6f89a96fcbaba1be7d", "fields": {"departement": "92", "stop_lat": 48.89192062226174, "code_postal": "92026", "stop_lon": 2.2429120742176076, "coord": [48.89192062226174, 2.2429120742176076], "stop_id": 4037800, "stop_desc": "AVENUE ALBERT GLEIZES - 92026", "stop_name": "GAMBETTA"}, "geometry": {"type": "Point", "coordinates": [2.2429120742176076, 48.89192062226174]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4d9cde699c44f8e1c8a3d85ce4d3678fe9498d26", "fields": {"departement": "75", "stop_lat": 48.83779080172666, "code_postal": "75105", "stop_lon": 2.3451650904042616, "coord": [48.83779080172666, 2.3451650904042616], "stop_id": 4045002, "stop_desc": "FACE 47 BOULEVARD DE PORT ROYAL - 75105", "stop_name": "PORT ROYAL - BERTHOLLET"}, "geometry": {"type": "Point", "coordinates": [2.3451650904042616, 48.83779080172666]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ad18ced729e76149409640d1c633366e99657b3d", "fields": {"departement": "75", "stop_lat": 48.84638266447135, "code_postal": "75106", "stop_lon": 2.3264833034864068, "coord": [48.84638266447135, 2.3264833034864068], "stop_id": 4045010, "stop_desc": "129 RUE DE RENNES - 75106", "stop_name": "RENNES - SAINT-PLACIDE"}, "geometry": {"type": "Point", "coordinates": [2.3264833034864068, 48.84638266447135]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3833139ea6fcceed293fc0f088398fd61f44d13b", "fields": {"departement": "75", "stop_lat": 48.851308132416946, "code_postal": "75106", "stop_lon": 2.33101731159199, "coord": [48.851308132416946, 2.33101731159199], "stop_id": 4045012, "stop_desc": "69 RUE DE RENNES - 75106", "stop_name": "MICHEL DEBRE"}, "geometry": {"type": "Point", "coordinates": [2.33101731159199, 48.851308132416946]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3ed164217d9b09a5b9d88843a99fea8b57b921d7", "fields": {"departement": "75", "stop_lat": 48.874863096583965, "code_postal": "75108", "stop_lon": 2.3207958046274593, "coord": [48.874863096583965, 2.3207958046274593], "stop_id": 4045021, "stop_desc": "FACE 24 RUE DE LA PEPINIERE - 75108", "stop_name": "SAINT-AUGUSTIN"}, "geometry": {"type": "Point", "coordinates": [2.3207958046274593, 48.874863096583965]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "38b6d39abe4eee5551390df7134375b7045ce4c4", "fields": {"departement": "75", "stop_lat": 48.87524105469884, "code_postal": "75108", "stop_lon": 2.3248559340121537, "coord": [48.87524105469884, 2.3248559340121537], "stop_id": 4045022, "stop_desc": "119-121 RUE SAINT LAZARE - 75108", "stop_name": "GARE SAINT-LAZARE"}, "geometry": {"type": "Point", "coordinates": [2.3248559340121537, 48.87524105469884]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ee897ac77df86d04c5e4ed4e61e4949caf2ded24", "fields": {"departement": "75", "stop_lat": 48.88305130198795, "code_postal": "75109", "stop_lon": 2.34616677318254, "coord": [48.88305130198795, 2.34616677318254], "stop_id": 4045030, "stop_desc": "21 BOULEVARD DE ROCHECHOUART - 75109", "stop_name": "ROCHECHOUART - CLIGNANCOURT"}, "geometry": {"type": "Point", "coordinates": [2.34616677318254, 48.88305130198795]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b8ca1e38c63e7fd0d6f9f619722b89241b4e3b27", "fields": {"departement": "75", "stop_lat": 48.87600381247311, "code_postal": "75110", "stop_lon": 2.358005858918753, "coord": [48.87600381247311, 2.358005858918753], "stop_id": 4045034, "stop_desc": "89 BOULEVARD DE STRASBOURG - 75110", "stop_name": "GARE DE L'EST."}, "geometry": {"type": "Point", "coordinates": [2.358005858918753, 48.87600381247311]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a49d603d4d762064ab6d93bfd746f7fd4f0034f6", "fields": {"departement": "92", "stop_lat": 48.88732996129307, "code_postal": "92063", "stop_lon": 2.1840602666177458, "coord": [48.88732996129307, 2.1840602666177458], "stop_id": 4102134, "stop_desc": "19 AVENUE DE COLMAR - 92063", "stop_name": "RUE DU MANS"}, "geometry": {"type": "Point", "coordinates": [2.1840602666177458, 48.88732996129307]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "50979451849cd2e9be39970f80199ce346e2473a", "fields": {"departement": "92", "stop_lat": 48.886856639445476, "code_postal": "92050", "stop_lon": 2.201355691235118, "coord": [48.886856639445476, 2.201355691235118], "stop_id": 4102138, "stop_desc": "10 AVENUE GEORGES CLEMENCEAU - 92050", "stop_name": "PLACE DE LA BOULE - CLEMENCEAU"}, "geometry": {"type": "Point", "coordinates": [2.201355691235118, 48.886856639445476]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c138931a581411c25225a55ade597c5aab230f9c", "fields": {"departement": "92", "stop_lat": 48.886671501742555, "code_postal": "92050", "stop_lon": 2.2045451337846096, "coord": [48.886671501742555, 2.2045451337846096], "stop_id": 4102139, "stop_desc": "FACE AU 103 AVENUE GEORGES CLEMENCEAU - 92050", "stop_name": "LA SOURCE"}, "geometry": {"type": "Point", "coordinates": [2.2045451337846096, 48.886671501742555]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2fdfd05e6aba92b46848965af866cadf6963b333", "fields": {"departement": "92", "stop_lat": 48.8843757175651, "code_postal": "92062", "stop_lon": 2.227036245944437, "coord": [48.8843757175651, 2.227036245944437], "stop_id": 4102143, "stop_desc": "129 ROND-POINT DES BERGERES - 92062", "stop_name": "LES BERGERES"}, "geometry": {"type": "Point", "coordinates": [2.227036245944437, 48.8843757175651]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "27a40c59802bfac541a8a3f988fb855a123f3aef", "fields": {"departement": "92", "stop_lat": 48.88408018811139, "code_postal": "92062", "stop_lon": 2.249998928193167, "coord": [48.88408018811139, 2.249998928193167], "stop_id": 4102149, "stop_desc": "FACE 55 QUAI DE DION BOUTON - 92062", "stop_name": "SOLJENITSYNE"}, "geometry": {"type": "Point", "coordinates": [2.249998928193167, 48.88408018811139]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "059611baedf8081b5bf750c779cb32c2cf143cab", "fields": {"departement": "75", "stop_lat": 48.84427981615022, "code_postal": "75112", "stop_lon": 2.4410016129217893, "coord": [48.84427981615022, 2.4410016129217893], "stop_id": 4109728, "stop_desc": "13 AVENUE DE NOGENT - 75112", "stop_name": "CHATEAU DE VINCENNES"}, "geometry": {"type": "Point", "coordinates": [2.4410016129217893, 48.84427981615022]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "df226e9e6dd131fac8aa9a5a8f86c63e3021c3a2", "fields": {"departement": "75", "stop_lat": 48.841674600518346, "code_postal": "75112", "stop_lon": 2.4496154545513202, "coord": [48.841674600518346, 2.4496154545513202], "stop_id": 4109730, "stop_desc": "AVENUE DE NOGENT - 75112", "stop_name": "TREMBLAY - PEPINIERE"}, "geometry": {"type": "Point", "coordinates": [2.4496154545513202, 48.841674600518346]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8e8825815236d437ac82bdbe2054ea84a2647719", "fields": {"departement": "75", "stop_lat": 48.838778695962546, "code_postal": "75112", "stop_lon": 2.4606240718932018, "coord": [48.838778695962546, 2.4606240718932018], "stop_id": 4109732, "stop_desc": "AV DE NOGENT - 75112", "stop_name": "PORTE JAUNE"}, "geometry": {"type": "Point", "coordinates": [2.4606240718932018, 48.838778695962546]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9342e985167a66f9641df96a77594c2e36809858", "fields": {"departement": "94", "stop_lat": 48.83631306496527, "code_postal": "94052", "stop_lon": 2.4794610851063337, "coord": [48.83631306496527, 2.4794610851063337], "stop_id": 4109738, "stop_desc": "60 GRANDE RUE CHARLES DE GAULLE - 94052", "stop_name": "RUE DE BEAUTE"}, "geometry": {"type": "Point", "coordinates": [2.4794610851063337, 48.83631306496527]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "421e69145bcdf6f5401506b6631241bbac5e7238", "fields": {"departement": "94", "stop_lat": 48.836726053297795, "code_postal": "94052", "stop_lon": 2.4798298195018535, "coord": [48.836726053297795, 2.4798298195018535], "stop_id": 4109739, "stop_desc": "3 RUE PAUL DOUMER - 94052", "stop_name": "RUE DE BEAUTE"}, "geometry": {"type": "Point", "coordinates": [2.4798298195018535, 48.836726053297795]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b90b8c6336cf67700bb0a1b74e0d58e04e0423fb", "fields": {"departement": "94", "stop_lat": 48.83824673249438, "code_postal": "94052", "stop_lon": 2.4857294258841103, "coord": [48.83824673249438, 2.4857294258841103], "stop_id": 4109742, "stop_desc": "FACE 50 RUE DES HEROS NOGENTAIS - 94052", "stop_name": "MARCHE DE NOGENT-SUR-MARNE"}, "geometry": {"type": "Point", "coordinates": [2.4857294258841103, 48.83824673249438]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0404481bbbe758bbe5ed61ff41edfb13558a3b0b", "fields": {"departement": "94", "stop_lat": 48.84109791971362, "code_postal": "94058", "stop_lon": 2.4979375730411966, "coord": [48.84109791971362, 2.4979375730411966], "stop_id": 4109748, "stop_desc": "FACE 52 AVENUE LEDRU-ROLLIN - 94058", "stop_name": "LE PARC"}, "geometry": {"type": "Point", "coordinates": [2.4979375730411966, 48.84109791971362]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d46eb214a180c3cccd7d79f45d7b1350f5925601", "fields": {"departement": "94", "stop_lat": 48.846324431357445, "code_postal": "94058", "stop_lon": 2.5074587305616003, "coord": [48.846324431357445, 2.5074587305616003], "stop_id": 4109751, "stop_desc": "106 AVENUE LEDRU ROLLIN - 94058", "stop_name": "BELLEVUE"}, "geometry": {"type": "Point", "coordinates": [2.5074587305616003, 48.846324431357445]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "53b0028970bc8e2c92ee05992a172d98c7700612", "fields": {"departement": "93", "stop_lat": 48.86142936658215, "code_postal": "93049", "stop_lon": 2.5095515159825696, "coord": [48.86142936658215, 2.5095515159825696], "stop_id": 4109761, "stop_desc": "2/4 CHEMIN DE MEAUX - 93049", "stop_name": "SQUARE JEAN MERMOZ"}, "geometry": {"type": "Point", "coordinates": [2.5095515159825696, 48.86142936658215]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8d821278c2cb083e6db671ba2757899842f0c3f2", "fields": {"departement": "93", "stop_lat": 48.860919438984546, "code_postal": "93049", "stop_lon": 2.5079152696909723, "coord": [48.860919438984546, 2.5079152696909723], "stop_id": 4109762, "stop_desc": "FACE 44 R DU GENERAL LECLERC - 93049", "stop_name": "SQUARE JEAN MERMOZ"}, "geometry": {"type": "Point", "coordinates": [2.5079152696909723, 48.860919438984546]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5478912f427b03c9813e814ef0fbdba4a7068f92", "fields": {"departement": "93", "stop_lat": 48.86341716601422, "code_postal": "93049", "stop_lon": 2.514598232791676, "coord": [48.86341716601422, 2.514598232791676], "stop_id": 4109763, "stop_desc": "CHEMIN DE MEAUX - 93049", "stop_name": "CIMETIERE DE NEUILLY-PLAISANCE"}, "geometry": {"type": "Point", "coordinates": [2.514598232791676, 48.86341716601422]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "36f4745ba8e507e991462c4c1cec1791c9bcd13b", "fields": {"departement": "93", "stop_lat": 48.86407051179714, "code_postal": "93049", "stop_lon": 2.5164258283048935, "coord": [48.86407051179714, 2.5164258283048935], "stop_id": 4109766, "stop_desc": "19 CHEMIN DE MEAUX - 93049", "stop_name": "GEORGES POMPIDOU"}, "geometry": {"type": "Point", "coordinates": [2.5164258283048935, 48.86407051179714]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c03e57b915ee0885b8cff5ef25f3d163bb7747e6", "fields": {"departement": "75", "stop_lat": 48.89472659069041, "code_postal": "75119", "stop_lon": 2.3820023704322097, "coord": [48.89472659069041, 2.3820023704322097], "stop_id": 4035800, "stop_desc": "167 AVENUE DE FLANDRE - 75119", "stop_name": "FLANDRE-ALPHONSE KARR"}, "geometry": {"type": "Point", "coordinates": [2.3820023704322097, 48.89472659069041]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "04f3aeb4bc38a720d1b80d0b88a2a69faa3a760d", "fields": {"departement": "75", "stop_lat": 48.894429999302076, "code_postal": "75119", "stop_lon": 2.382043004470849, "coord": [48.894429999302076, 2.382043004470849], "stop_id": 4035801, "stop_desc": "156 AVENUE DE FLANDRE - 75119", "stop_name": "FLANDRE-ALPHONSE KARR"}, "geometry": {"type": "Point", "coordinates": [2.382043004470849, 48.894429999302076]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "57d59eb62828ba48456584087e0a6515a8084e0e", "fields": {"departement": "75", "stop_lat": 48.888016042537274, "code_postal": "75119", "stop_lon": 2.3735469950935357, "coord": [48.888016042537274, 2.3735469950935357], "stop_id": 4035804, "stop_desc": "FACE 60 AVENUE DE FLANDRE - 75119", "stop_name": "RIQUET"}, "geometry": {"type": "Point", "coordinates": [2.3735469950935357, 48.888016042537274]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "48d4213c0fa64928309bc59747227a7702e67b24", "fields": {"departement": "75", "stop_lat": 48.8887076684606, "code_postal": "75119", "stop_lon": 2.3748013049984094, "coord": [48.8887076684606, 2.3748013049984094], "stop_id": 4035805, "stop_desc": "64 AVENUE DE FLANDRE - 75119", "stop_name": "RIQUET"}, "geometry": {"type": "Point", "coordinates": [2.3748013049984094, 48.8887076684606]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f05e09077aefef8166764be424d45f486304e4af", "fields": {"departement": "75", "stop_lat": 48.88599466543109, "code_postal": "75119", "stop_lon": 2.3710108041528186, "coord": [48.88599466543109, 2.3710108041528186], "stop_id": 4035806, "stop_desc": "31 AVENUE DE FLANDRE - 75119", "stop_name": "MAROC - FLANDRE"}, "geometry": {"type": "Point", "coordinates": [2.3710108041528186, 48.88599466543109]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5d00f7a5f65247a8435e3b46f57f33cd20881279", "fields": {"departement": "75", "stop_lat": 48.884539150640755, "code_postal": "75119", "stop_lon": 2.3695108375358216, "coord": [48.884539150640755, 2.3695108375358216], "stop_id": 4035809, "stop_desc": "4 AVENUE DE FLANDRE - 75119", "stop_name": "QUAI DE LA SEINE - STALINGRAD"}, "geometry": {"type": "Point", "coordinates": [2.3695108375358216, 48.884539150640755]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c8b7e04c402f8f0120baba80dda94b77dff6586c", "fields": {"departement": "75", "stop_lat": 48.883379976623885, "code_postal": "75110", "stop_lon": 2.368842386422918, "coord": [48.883379976623885, 2.368842386422918], "stop_id": 4035810, "stop_desc": "11 PLACE DE LA BATAILLE DE STALINGRAD - 75110", "stop_name": "STALINGRAD"}, "geometry": {"type": "Point", "coordinates": [2.368842386422918, 48.883379976623885]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f4c558dad4c612446f95b647eacb00429caaf96f", "fields": {"departement": "75", "stop_lat": 48.88164607374856, "code_postal": "75110", "stop_lon": 2.3663476469834346, "coord": [48.88164607374856, 2.3663476469834346], "stop_id": 4035812, "stop_desc": "210 RUE LA FAYETTE - 75110", "stop_name": "LOUIS BLANC"}, "geometry": {"type": "Point", "coordinates": [2.3663476469834346, 48.88164607374856]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "edf5a36553f4c71a558e0a0524667a038c12f96c", "fields": {"departement": "75", "stop_lat": 48.878384730659775, "code_postal": "75110", "stop_lon": 2.361753913742779, "coord": [48.878384730659775, 2.361753913742779], "stop_id": 4035813, "stop_desc": "FACE 186 RUE DU FAUBOURG SAINT-MARTIN - 75110", "stop_name": "CHATEAU LANDON"}, "geometry": {"type": "Point", "coordinates": [2.361753913742779, 48.878384730659775]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f57f6ae7e935a771e294efe850be30e0932047d8", "fields": {"departement": "75", "stop_lat": 48.8983286933062, "code_postal": "75119", "stop_lon": 2.386421947764733, "coord": [48.8983286933062, 2.386421947764733], "stop_id": 4035819, "stop_desc": "AVENUE DE LA PORTE DE LA VILLETTE - 75119", "stop_name": "PORTE DE LA VILLETTE - MACDONALD"}, "geometry": {"type": "Point", "coordinates": [2.386421947764733, 48.8983286933062]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "15b55991a4fa9f4e318a8221170e39d2abf8f7e6", "fields": {"departement": "93", "stop_lat": 48.916724295544824, "code_postal": "93055", "stop_lon": 2.4063751121186447, "coord": [48.916724295544824, 2.4063751121186447], "stop_id": 4035824, "stop_desc": "FACE 247 AVENUE JEAN JAURES - 93055", "stop_name": "HELENE COCHENNEC"}, "geometry": {"type": "Point", "coordinates": [2.4063751121186447, 48.916724295544824]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5603de96527e12c82f09a081b3e51141b5ad2cd4", "fields": {"departement": "94", "stop_lat": 48.83835251163571, "code_postal": "94058", "stop_lon": 2.4943482364108416, "coord": [48.83835251163571, 2.4943482364108416], "stop_id": 4035926, "stop_desc": "0 AV LEDRU ROLLIN - 94058", "stop_name": "NOGENT-LE-PERREUX RER"}, "geometry": {"type": "Point", "coordinates": [2.4943482364108416, 48.83835251163571]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "abf776b984f0278caa0db924b753b7fff6643e9e", "fields": {"departement": "94", "stop_lat": 48.83835251163571, "code_postal": "94058", "stop_lon": 2.4943482364108416, "coord": [48.83835251163571, 2.4943482364108416], "stop_id": 4035927, "stop_desc": "0 AV LEDRU ROLLIN - 94058", "stop_name": "NOGENT-LE-PERREUX RER"}, "geometry": {"type": "Point", "coordinates": [2.4943482364108416, 48.83835251163571]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9b27da9fe46213565033855578f6fde34d35c3f9", "fields": {"departement": "94", "stop_lat": 48.83506442543633, "code_postal": "94052", "stop_lon": 2.493303581104327, "coord": [48.83506442543633, 2.493303581104327], "stop_id": 4035928, "stop_desc": "BOULEVARD ALBERT 1ER - 94052", "stop_name": "VIADUC"}, "geometry": {"type": "Point", "coordinates": [2.493303581104327, 48.83506442543633]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9c653cd071fec4653f41e58c196a8754f7bb2002", "fields": {"departement": "94", "stop_lat": 48.834542735337955, "code_postal": "94052", "stop_lon": 2.4936151418879726, "coord": [48.834542735337955, 2.4936151418879726], "stop_id": 4035929, "stop_desc": "54 BOULEVARD ALBERT 1ER - 94052", "stop_name": "VIADUC"}, "geometry": {"type": "Point", "coordinates": [2.4936151418879726, 48.834542735337955]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2ca68eb5a3cf6b9f661319c63d68dfebdd88fb34", "fields": {"departement": "94", "stop_lat": 48.82235696607947, "code_postal": "94017", "stop_lon": 2.492475926398596, "coord": [48.82235696607947, 2.492475926398596], "stop_id": 4035935, "stop_desc": "92 AVENUE DU GENERAL DE GAULLE - 94017", "stop_name": "LES MARRONNIERS"}, "geometry": {"type": "Point", "coordinates": [2.492475926398596, 48.82235696607947]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6346f46ad541f396b412198dca1c02c62e2b1dac", "fields": {"departement": "94", "stop_lat": 48.820487646733554, "code_postal": "94017", "stop_lon": 2.48532474491388, "coord": [48.820487646733554, 2.48532474491388], "stop_id": 4035936, "stop_desc": "11 AVENUE DU GENERAL DE GAULLE - 94017", "stop_name": "LA FOURCHETTE DE CHAMPIGNY"}, "geometry": {"type": "Point", "coordinates": [2.48532474491388, 48.820487646733554]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bd4026fae99242702883cc396e2feb5a914f8c92", "fields": {"departement": "94", "stop_lat": 48.81938581587817, "code_postal": "94042", "stop_lon": 2.4823545433424603, "coord": [48.81938581587817, 2.4823545433424603], "stop_id": 4035938, "stop_desc": "FACE 11 AVENUE CHARLES FLOQUET - 94042", "stop_name": "42E DE LIGNE"}, "geometry": {"type": "Point", "coordinates": [2.4823545433424603, 48.81938581587817]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "41a31736fd6da538d629837177634855ab46453d", "fields": {"departement": "94", "stop_lat": 48.80069437856847, "code_postal": "94068", "stop_lon": 2.4720301880146383, "coord": [48.80069437856847, 2.4720301880146383], "stop_id": 4035949, "stop_desc": "83 RUE DU PONT DE CRETEIL - 94068", "stop_name": "PONT DE CRETEIL"}, "geometry": {"type": "Point", "coordinates": [2.4720301880146383, 48.80069437856847]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "33925ccfc945dde88cf1e16b3ae1e9c2f3e90d46", "fields": {"departement": "94", "stop_lat": 48.797234127455916, "code_postal": "94028", "stop_lon": 2.4637768508323474, "coord": [48.797234127455916, 2.4637768508323474], "stop_id": 4035950, "stop_desc": "AVENUE DE VERDUN - 94028", "stop_name": "HOPITAL INTERCOMMUNAL"}, "geometry": {"type": "Point", "coordinates": [2.4637768508323474, 48.797234127455916]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8059cb40a92d5ad3520970ffa54feb37510778fd", "fields": {"departement": "94", "stop_lat": 48.79788020669161, "code_postal": "94028", "stop_lon": 2.464757964645731, "coord": [48.79788020669161, 2.464757964645731], "stop_id": 4035951, "stop_desc": "AVENUE DE VERDUN - 94028", "stop_name": "HOPITAL INTERCOMMUNAL"}, "geometry": {"type": "Point", "coordinates": [2.464757964645731, 48.79788020669161]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b8a3d7172346358490e164d82082ffc90441a367", "fields": {"departement": "94", "stop_lat": 48.79687271996065, "code_postal": "94028", "stop_lon": 2.4569193270234053, "coord": [48.79687271996065, 2.4569193270234053], "stop_id": 4035955, "stop_desc": "29-31 AVENUE DU MARECHAL DE LATTRE DE TASSIGNY - 94028", "stop_name": "GENERAL GALLIENI"}, "geometry": {"type": "Point", "coordinates": [2.4569193270234053, 48.79687271996065]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "af28589e23debb2ba742b55a594854f451c3cb78", "fields": {"departement": "94", "stop_lat": 48.798691144546154, "code_postal": "94028", "stop_lon": 2.4540256685936535, "coord": [48.798691144546154, 2.4540256685936535], "stop_id": 4035957, "stop_desc": "FACE 50 AVENUE DU MARECHAL DE LATTRE DE TASSIGNY - 94028", "stop_name": "HENRI MONDOR - LAFERRIERE"}, "geometry": {"type": "Point", "coordinates": [2.4540256685936535, 48.798691144546154]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b9f2b12feb8e2936bb1f87006affcf4f64d9a735", "fields": {"departement": "94", "stop_lat": 48.80885525788095, "code_postal": "94046", "stop_lon": 2.4353517068018586, "coord": [48.80885525788095, 2.4353517068018586], "stop_id": 4035965, "stop_desc": "149-151 AVENUE DU GENERAL LECLERC - 94046", "stop_name": "STADE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.4353517068018586, 48.80885525788095]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7a0904ed4573de397fe9f07dcf948ef1749e084b", "fields": {"departement": "94", "stop_lat": 48.814932080698995, "code_postal": "94046", "stop_lon": 2.4222439451389848, "coord": [48.814932080698995, 2.4222439451389848], "stop_id": 4035969, "stop_desc": "31-35 AVENUE DU GENERAL LECLERC - 94046", "stop_name": "ECOLE VETERINAIRE DE MAISONS-ALFORT-METRO"}, "geometry": {"type": "Point", "coordinates": [2.4222439451389848, 48.814932080698995]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d031f8f4a37d0eae7ef8a8f287976712100aea87", "fields": {"departement": "75", "stop_lat": 48.84009247169696, "code_postal": "75112", "stop_lon": 2.3819688617960826, "coord": [48.84009247169696, 2.3819688617960826], "stop_id": 4035984, "stop_desc": "15 BOULEVARD DE BERCY - 75112", "stop_name": "GARE DE BERCY"}, "geometry": {"type": "Point", "coordinates": [2.3819688617960826, 48.84009247169696]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6745db150d08e828dea68180ad15bda98d8b4c1b", "fields": {"departement": "75", "stop_lat": 48.84563186778721, "code_postal": "75112", "stop_lon": 2.3728500974777273, "coord": [48.84563186778721, 2.3728500974777273], "stop_id": 4035990, "stop_desc": "FACE 21 BOULEVARD DIDEROT - 75112", "stop_name": "GARE DE LYON - DIDEROT"}, "geometry": {"type": "Point", "coordinates": [2.3728500974777273, 48.84563186778721]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "94913216bffb3c9a0702453ecbb0f6050fed527b", "fields": {"departement": "75", "stop_lat": 48.83346303611521, "code_postal": "75112", "stop_lon": 2.394964547608824, "coord": [48.83346303611521, 2.394964547608824], "stop_id": 4035993, "stop_desc": "320 R DE CHARENTON - 75112", "stop_name": "CHARENTON - JARDINIERS"}, "geometry": {"type": "Point", "coordinates": [2.394964547608824, 48.83346303611521]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2cf7540c95829cfd12ec0f8e9d4e725f68fea157", "fields": {"departement": "94", "stop_lat": 48.806201108282245, "code_postal": "94017", "stop_lon": 2.53240473152121, "coord": [48.806201108282245, 2.53240473152121], "stop_id": 4036172, "stop_desc": "AVENUE MARX DORMOY - 94017", "stop_name": "FORT DE CHAMPIGNY"}, "geometry": {"type": "Point", "coordinates": [2.53240473152121, 48.806201108282245]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f4e29355b23ae103984dd4c2acb06c72220d2147", "fields": {"departement": "94", "stop_lat": 48.808496295953304, "code_postal": "94017", "stop_lon": 2.524765932868587, "coord": [48.808496295953304, 2.524765932868587], "stop_id": 4036174, "stop_desc": "59 AVENUE MARX DORMOY - 94017", "stop_name": "LA CASCADE"}, "geometry": {"type": "Point", "coordinates": [2.524765932868587, 48.808496295953304]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aea54f279233f21e74ac55fa2e354e84e059ef91", "fields": {"departement": "94", "stop_lat": 48.81673809581467, "code_postal": "94017", "stop_lon": 2.5003527310760174, "coord": [48.81673809581467, 2.5003527310760174], "stop_id": 4036180, "stop_desc": "151 AVENUE ROGER SALENGRO - 94017", "stop_name": "PLAGE DE CHAMPIGNY"}, "geometry": {"type": "Point", "coordinates": [2.5003527310760174, 48.81673809581467]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "969b273effa235dd86206f4c2e3bf32cce5f55a7", "fields": {"departement": "94", "stop_lat": 48.822766247951236, "code_postal": "94042", "stop_lon": 2.465799112694869, "coord": [48.822766247951236, 2.465799112694869], "stop_id": 4036187, "stop_desc": "30 RUE CHAPSAL - 94042", "stop_name": "JEAN JAURES - CHAPSAL"}, "geometry": {"type": "Point", "coordinates": [2.465799112694869, 48.822766247951236]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "53f2ec97ed21c4632c5578ef9deb9bb86d32f72d", "fields": {"departement": "75", "stop_lat": 48.840061418843504, "code_postal": "75112", "stop_lon": 2.408764655824798, "coord": [48.840061418843504, 2.408764655824798], "stop_id": 4036198, "stop_desc": "67 BOULEVARD SOULT - 75112", "stop_name": "MONTEMPOIVRE"}, "geometry": {"type": "Point", "coordinates": [2.408764655824798, 48.840061418843504]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a08ab4784991140b969203e8b6bf332b010e07e7", "fields": {"departement": "75", "stop_lat": 48.836045910838756, "code_postal": "75112", "stop_lon": 2.405464361486412, "coord": [48.836045910838756, 2.405464361486412], "stop_id": 4036199, "stop_desc": "275 AVENUE DAUMESNIL - 75112", "stop_name": "PORTE DOREE"}, "geometry": {"type": "Point", "coordinates": [2.405464361486412, 48.836045910838756]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9b5c32744457c0d69c5eacc571f8c3f66b7127d7", "fields": {"departement": "75", "stop_lat": 48.83983472108902, "code_postal": "75112", "stop_lon": 2.3960064286910314, "coord": [48.83983472108902, 2.3960064286910314], "stop_id": 4036201, "stop_desc": "FACE 10 PLACE FELIX EBOUE - 75112", "stop_name": "DAUMESNIL - FELIX EBOUE"}, "geometry": {"type": "Point", "coordinates": [2.3960064286910314, 48.83983472108902]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0604bb0166e7bca5ddb43695bb3aa8e515bb0d7f", "fields": {"departement": "75", "stop_lat": 48.83675736825707, "code_postal": "75112", "stop_lon": 2.4029056962363957, "coord": [48.83675736825707, 2.4029056962363957], "stop_id": 4036211, "stop_desc": "254 AVENUE DAUMESNIL - 75112", "stop_name": "MICHEL BIZOT"}, "geometry": {"type": "Point", "coordinates": [2.4029056962363957, 48.83675736825707]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3d094f841d0ce09cbd998088b647f79181088ca6", "fields": {"departement": "94", "stop_lat": 48.84552226230954, "code_postal": "94067", "stop_lon": 2.4272915748023243, "coord": [48.84552226230954, 2.4272915748023243], "stop_id": 4036217, "stop_desc": "67 AVENUE DE PARIS - 94067", "stop_name": "BERAULT-METRO"}, "geometry": {"type": "Point", "coordinates": [2.4272915748023243, 48.84552226230954]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c2a91b54168ac3a81e7bf1d41728c6d34094d873", "fields": {"departement": "94", "stop_lat": 48.8446246823592, "code_postal": "94080", "stop_lon": 2.437094232812113, "coord": [48.8446246823592, 2.437094232812113], "stop_id": 4036219, "stop_desc": "FACE 10 AVENUE DE PARIS - 94080", "stop_name": "AVENUE DU CHATEAU"}, "geometry": {"type": "Point", "coordinates": [2.437094232812113, 48.8446246823592]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c4b0c13902e7e900f6bf98aa9e3594ca0ca8131e", "fields": {"departement": "94", "stop_lat": 48.819597917010675, "code_postal": "94017", "stop_lon": 2.485281375382471, "coord": [48.819597917010675, 2.485281375382471], "stop_id": 4036228, "stop_desc": "32-34 AVENUE ROGER SALENGRO - 94017", "stop_name": "LA FOURCHETTE DE CHAMPIGNY"}, "geometry": {"type": "Point", "coordinates": [2.485281375382471, 48.819597917010675]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "24f8daffc05ceb66e8e4615117f41a6ef0b9d967", "fields": {"departement": "94", "stop_lat": 48.80654286951804, "code_postal": "94017", "stop_lon": 2.526704679451085, "coord": [48.80654286951804, 2.526704679451085], "stop_id": 4036237, "stop_desc": "FACE 87 AVENUE MARX DORMOY - 94017", "stop_name": "MUSEE DE LA RESISTANCE"}, "geometry": {"type": "Point", "coordinates": [2.526704679451085, 48.80654286951804]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f498c583907deb7ff037470b3d93e585e16cacce", "fields": {"departement": "94", "stop_lat": 48.806027291317086, "code_postal": "94019", "stop_lon": 2.534254613211186, "coord": [48.806027291317086, 2.534254613211186], "stop_id": 4036238, "stop_desc": "FACE 2 AVENUE MAURICE THOREZ - 94019", "stop_name": "FORT DE CHAMPIGNY"}, "geometry": {"type": "Point", "coordinates": [2.534254613211186, 48.806027291317086]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "29dee5c917161db38b482529f4f19687ec31c213", "fields": {"departement": "94", "stop_lat": 48.811254036529974, "code_postal": "94017", "stop_lon": 2.536751149327536, "coord": [48.811254036529974, 2.536751149327536], "stop_id": 4036240, "stop_desc": "22 AVENUE DU 11 NOVEMBRE 1918 - 94017", "stop_name": "11 NOVEMBRE 1918"}, "geometry": {"type": "Point", "coordinates": [2.536751149327536, 48.811254036529974]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ff98f8a7e828869633369cb7b6b578d0f232875a", "fields": {"departement": "77", "stop_lat": 48.874532919282075, "code_postal": "77108", "stop_lon": 2.581547949321578, "coord": [48.874532919282075, 2.581547949321578], "stop_id": 4036244, "stop_desc": "70 AVENUE DE LA RESISTANCE - 77108", "stop_name": "CHELLES - GOURNAY RER"}, "geometry": {"type": "Point", "coordinates": [2.581547949321578, 48.874532919282075]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0c892dc91cbdbd7ca090d6b7cdf74b28416a6dec", "fields": {"departement": "93", "stop_lat": 48.8819846340026, "code_postal": "93077", "stop_lon": 2.5207801904987455, "coord": [48.8819846340026, 2.5207801904987455], "stop_id": 4036256, "stop_desc": "FACE 152 RUE GRANDE RUE - 93077", "stop_name": "BOULEVARD ANDRE"}, "geometry": {"type": "Point", "coordinates": [2.5207801904987455, 48.8819846340026]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5017951981a6400ff528dc0e3513d79bd3ae33c5", "fields": {"departement": "93", "stop_lat": 48.88666818491777, "code_postal": "93053", "stop_lon": 2.472907876521495, "coord": [48.88666818491777, 2.472907876521495], "stop_id": 4036266, "stop_desc": "7 AVENUE DE GAGNY - 93053", "stop_name": "ECHANGEUR DE ROSNY"}, "geometry": {"type": "Point", "coordinates": [2.472907876521495, 48.88666818491777]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "359451a581e36ce4ad1b065b341a44f1edc058ca", "fields": {"departement": "93", "stop_lat": 48.87979861447409, "code_postal": "93045", "stop_lon": 2.4168725562657696, "coord": [48.87979861447409, 2.4168725562657696], "stop_id": 4036281, "stop_desc": "1 BOULEVARD DE LA LIBERTE - 93045", "stop_name": "MAIRIE DES LILAS"}, "geometry": {"type": "Point", "coordinates": [2.4168725562657696, 48.87979861447409]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5da47cc4fecf40003a938cadd802ffb8248f40a1", "fields": {"departement": "75", "stop_lat": 48.87404566886351, "code_postal": "75119", "stop_lon": 2.385349817779035, "coord": [48.87404566886351, 2.385349817779035], "stop_id": 4036286, "stop_desc": "95 RUE DE BELLEVILLE - 75119", "stop_name": "PYRENEES"}, "geometry": {"type": "Point", "coordinates": [2.385349817779035, 48.87404566886351]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a5ede0a1c62454cc7c70e1aeb275d23adae28081", "fields": {"departement": "75", "stop_lat": 48.86581231751377, "code_postal": "75103", "stop_lon": 2.357211673996915, "coord": [48.86581231751377, 2.357211673996915], "stop_id": 4036292, "stop_desc": "FACE 56 RUE DE TURBIGO - 75103", "stop_name": "ARTS ET METIERS"}, "geometry": {"type": "Point", "coordinates": [2.357211673996915, 48.86581231751377]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "84713fffd076cd0537109be30fc2f6088d704eee", "fields": {"departement": "75", "stop_lat": 48.866112001913585, "code_postal": "75111", "stop_lon": 2.3796890795072163, "coord": [48.866112001913585, 2.3796890795072163], "stop_id": 4036305, "stop_desc": "120 RUE OBERKAMPF - 75111", "stop_name": "SAINT-MAUR - JEAN AICARD"}, "geometry": {"type": "Point", "coordinates": [2.3796890795072163, 48.866112001913585]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2bde42039f1fe42d5ffff2b28e6cfd499c53aba1", "fields": {"departement": "93", "stop_lat": 48.88048687661272, "code_postal": "93045", "stop_lon": 2.422310540571791, "coord": [48.88048687661272, 2.422310540571791], "stop_id": 4036316, "stop_desc": "4-6 AVENUE DU GENERAL LECLERC - 93045", "stop_name": "MARECHAL JUIN"}, "geometry": {"type": "Point", "coordinates": [2.422310540571791, 48.88048687661272]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "41b26e7a352eed8bdbe29279167c7b18897e0219", "fields": {"departement": "93", "stop_lat": 48.88094305908556, "code_postal": "93045", "stop_lon": 2.4252954936046307, "coord": [48.88094305908556, 2.4252954936046307], "stop_id": 4036317, "stop_desc": "48 BOULEVARD DU GENERAL LECLERC - 93045", "stop_name": "JOSEPH DEPINAY"}, "geometry": {"type": "Point", "coordinates": [2.4252954936046307, 48.88094305908556]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aad0831b7353f09361eb7e2db6cb794c7a7989ea", "fields": {"departement": "93", "stop_lat": 48.88709700508149, "code_postal": "93053", "stop_lon": 2.467144298225522, "coord": [48.88709700508149, 2.467144298225522], "stop_id": 4036324, "stop_desc": "236 RUE DE BREMENT - 93053", "stop_name": "BREMENT"}, "geometry": {"type": "Point", "coordinates": [2.467144298225522, 48.88709700508149]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8112cba1e820ca698eca338e5b76d92d87b88548", "fields": {"departement": "93", "stop_lat": 48.88180455357744, "code_postal": "93077", "stop_lon": 2.5209975811063257, "coord": [48.88180455357744, 2.5209975811063257], "stop_id": 4036335, "stop_desc": "154-156 RUE GRANDE RUE - 93077", "stop_name": "BOULEVARD ANDRE"}, "geometry": {"type": "Point", "coordinates": [2.5209975811063257, 48.88180455357744]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4cd10f82fde3fd0c5a6d3e5a0c54b277d46a8426", "fields": {"departement": "93", "stop_lat": 48.88071732063968, "code_postal": "93032", "stop_lon": 2.542864226332618, "coord": [48.88071732063968, 2.542864226332618], "stop_id": 4036339, "stop_desc": "RUE JULES GUESDE - 93032", "stop_name": "JEAN MOULIN"}, "geometry": {"type": "Point", "coordinates": [2.542864226332618, 48.88071732063968]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2c15aeabe21c985e3807f08336512d8923f7589b", "fields": {"departement": "93", "stop_lat": 48.87901204214354, "code_postal": "93032", "stop_lon": 2.54670000516056, "coord": [48.87901204214354, 2.54670000516056], "stop_id": 4036340, "stop_desc": "136 RUE JULES GUESDE - 93032", "stop_name": "MONTGUICHET-ARENA"}, "geometry": {"type": "Point", "coordinates": [2.54670000516056, 48.87901204214354]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "803a8b65feb3eb639dbaa02d42c2e67c3ef43226", "fields": {"departement": "93", "stop_lat": 48.87478871518722, "code_postal": "93032", "stop_lon": 2.5513562940251218, "coord": [48.87478871518722, 2.5513562940251218], "stop_id": 4036342, "stop_desc": "FACE 43 AVENUE PAUL VAILLANT COUTURIER - 93032", "stop_name": "EMILE COSSONNEAU"}, "geometry": {"type": "Point", "coordinates": [2.5513562940251218, 48.87478871518722]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c5755ce3865c75d40cedb7ea599835360cdafbe0", "fields": {"departement": "93", "stop_lat": 48.86580631178091, "code_postal": "93050", "stop_lon": 2.5632662022566857, "coord": [48.86580631178091, 2.5632662022566857], "stop_id": 4036344, "stop_desc": "152 AVENUE PAUL VAILLANT COUTURIER - 93050", "stop_name": "POINTE DE GOURNAY"}, "geometry": {"type": "Point", "coordinates": [2.5632662022566857, 48.86580631178091]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bf3fef469b6f3c811c6eddb3330a43d929926249", "fields": {"departement": "77", "stop_lat": 48.8744492608804, "code_postal": "77108", "stop_lon": 2.5828964158767787, "coord": [48.8744492608804, 2.5828964158767787], "stop_id": 4036347, "stop_desc": "PLACE GASNIER GUY - 77108", "stop_name": "CHELLES - GOURNAY RER"}, "geometry": {"type": "Point", "coordinates": [2.5828964158767787, 48.8744492608804]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9756e2929f01d13e88cc03bf460af036d3eb96cd", "fields": {"departement": "93", "stop_lat": 48.85870595359013, "code_postal": "93048", "stop_lon": 2.4285130814056224, "coord": [48.85870595359013, 2.4285130814056224], "stop_id": 4036621, "stop_desc": "FACE 105 BOULEVARD CHANZY - 93048", "stop_name": "SORINS"}, "geometry": {"type": "Point", "coordinates": [2.4285130814056224, 48.85870595359013]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "90899b6f0e55a1b7c340e36abfa39bf6a4bc9100", "fields": {"departement": "93", "stop_lat": 48.86268750480128, "code_postal": "93006", "stop_lon": 2.4157156831772415, "coord": [48.86268750480128, 2.4157156831772415], "stop_id": 4036624, "stop_desc": "25 AVENUE DE LA REPUBLIQUE - 93006", "stop_name": "GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.4157156831772415, 48.86268750480128]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2b057ed979a22971aa2cdb934d9e5e48d77532e8", "fields": {"departement": "75", "stop_lat": 48.859656415811216, "code_postal": "75111", "stop_lon": 2.386548733562634, "coord": [48.859656415811216, 2.386548733562634], "stop_id": 4036633, "stop_desc": "45-45 BIS RUE DE LA FOLIE REGNAULT - 75111", "stop_name": "ROQUETTE - PERE LACHAISE"}, "geometry": {"type": "Point", "coordinates": [2.386548733562634, 48.859656415811216]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b17f34b801c07308df88eb1f4ce7acbd42221a41", "fields": {"departement": "75", "stop_lat": 48.85790459227585, "code_postal": "75104", "stop_lon": 2.3480556928647136, "coord": [48.85790459227585, 2.3480556928647136], "stop_id": 4036648, "stop_desc": "FACE 1 BOULEVARD DE SEBASTOPOL - 75104", "stop_name": "CHATELET"}, "geometry": {"type": "Point", "coordinates": [2.3480556928647136, 48.85790459227585]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "709f7c998792196098c3a5f00d3b428357936024", "fields": {"departement": "75", "stop_lat": 48.861203399239315, "code_postal": "75101", "stop_lon": 2.3411231334321685, "coord": [48.861203399239315, 2.3411231334321685], "stop_id": 4036650, "stop_desc": "16 RUE DU LOUVRE - 75101", "stop_name": "LOUVRE - RIVOLI"}, "geometry": {"type": "Point", "coordinates": [2.3411231334321685, 48.861203399239315]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8ccaf9cdc44f6bfb9191627d3aa84d372a56b599", "fields": {"departement": "75", "stop_lat": 48.86565205893974, "code_postal": "75102", "stop_lon": 2.3433847968096146, "coord": [48.86565205893974, 2.3433847968096146], "stop_id": 4036652, "stop_desc": "54 RUE DU LOUVRE - 75102", "stop_name": "LOUVRE - ETIENNE MARCEL"}, "geometry": {"type": "Point", "coordinates": [2.3433847968096146, 48.86565205893974]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0dba23043f1f895fb3377eae0cb2b06777af1f31", "fields": {"departement": "75", "stop_lat": 48.88522833258763, "code_postal": "75117", "stop_lon": 2.295826706859305, "coord": [48.88522833258763, 2.295826706859305], "stop_id": 4036664, "stop_desc": "118 AVENUE DE VILLIERS - 75117", "stop_name": "PEREIRE-LE CHATELIER"}, "geometry": {"type": "Point", "coordinates": [2.295826706859305, 48.88522833258763]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9430dcb7d35df8ed94c512c628d0260f89168b35", "fields": {"departement": "92", "stop_lat": 48.899664239058524, "code_postal": "92044", "stop_lon": 2.2801526624819535, "coord": [48.899664239058524, 2.2801526624819535], "stop_id": 4036669, "stop_desc": "QUAI MICHELET - 92044", "stop_name": "PICASSO"}, "geometry": {"type": "Point", "coordinates": [2.2801526624819535, 48.899664239058524]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6a23c323a18692178364bb52aaae14ace1707252", "fields": {"departement": "92", "stop_lat": 48.906403689038, "code_postal": "92024", "stop_lon": 2.3008540579028622, "coord": [48.906403689038, 2.3008540579028622], "stop_id": 4036725, "stop_desc": "136 BOULEVARD JEAN JAURES - 92024", "stop_name": "LEON BLUM"}, "geometry": {"type": "Point", "coordinates": [2.3008540579028622, 48.906403689038]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "39ea6701fa7c9dcfc246a2066171911f004a4e9d", "fields": {"departement": "92", "stop_lat": 48.897014353385735, "code_postal": "92024", "stop_lon": 2.3089027796946073, "coord": [48.897014353385735, 2.3089027796946073], "stop_id": 4036730, "stop_desc": "3 BOULEVARD JEAN JAURES - 92024", "stop_name": "VICTOR HUGO - JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.3089027796946073, 48.897014353385735]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3720397ee58a6084d6906720809dbf8d3b7294d1", "fields": {"departement": "75", "stop_lat": 48.8893417810624, "code_postal": "75117", "stop_lon": 2.3225629388550773, "coord": [48.8893417810624, 2.3225629388550773], "stop_id": 4036737, "stop_desc": "100 AVENUE DE CLICHY - 75117", "stop_name": "LEGENDRE"}, "geometry": {"type": "Point", "coordinates": [2.3225629388550773, 48.8893417810624]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "804fd92f6702fd4a6f96f2e821788c9850a48ba4", "fields": {"departement": "75", "stop_lat": 48.88778725739655, "code_postal": "75117", "stop_lon": 2.3248665614447788, "coord": [48.88778725739655, 2.3248665614447788], "stop_id": 4036738, "stop_desc": "69-71 AVENUE DE CLICHY - 75117", "stop_name": "LA FOURCHE"}, "geometry": {"type": "Point", "coordinates": [2.3248665614447788, 48.88778725739655]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ff7d749319d8a73082cda9a7c40ce6e85dd9605e", "fields": {"departement": "75", "stop_lat": 48.88590006808008, "code_postal": "75117", "stop_lon": 2.326134397795573, "coord": [48.88590006808008, 2.326134397795573], "stop_id": 4036740, "stop_desc": "31 AVENUE DE CLICHY - 75117", "stop_name": "GANNERON"}, "geometry": {"type": "Point", "coordinates": [2.326134397795573, 48.88590006808008]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "829668a4a2a4451856f2d3700b48d2ffce61b4f7", "fields": {"departement": "75", "stop_lat": 48.88280850473842, "code_postal": "75108", "stop_lon": 2.3266120054743964, "coord": [48.88280850473842, 2.3266120054743964], "stop_id": 4036742, "stop_desc": "FACE 45 RUE DE SAINT PETERSBOURG - 75108", "stop_name": "PLACE DE CLICHY"}, "geometry": {"type": "Point", "coordinates": [2.3266120054743964, 48.88280850473842]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "208e4e345f3963e6c5891b602368bf31ad66dab3", "fields": {"departement": "75", "stop_lat": 48.88023794533592, "code_postal": "75108", "stop_lon": 2.3245140812346885, "coord": [48.88023794533592, 2.3245140812346885], "stop_id": 4036744, "stop_desc": "12 RUE DE SAINT-PETERSBOURG - 75108", "stop_name": "BUCAREST"}, "geometry": {"type": "Point", "coordinates": [2.3245140812346885, 48.88023794533592]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "05630f039ed26a73d82630619564b620789b073f", "fields": {"departement": "75", "stop_lat": 48.87351575263024, "code_postal": "75109", "stop_lon": 2.327676627244145, "coord": [48.87351575263024, 2.327676627244145], "stop_id": 4036751, "stop_desc": "16-18 RUE AUBER - 75109", "stop_name": "HAVRE - HAUSSMANN"}, "geometry": {"type": "Point", "coordinates": [2.327676627244145, 48.87351575263024]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f95bda88d997ac86530d31b3798828e0c2df283c", "fields": {"departement": "75", "stop_lat": 48.872033003523995, "code_postal": "75109", "stop_lon": 2.3298976383299848, "coord": [48.872033003523995, 2.3298976383299848], "stop_id": 4036752, "stop_desc": "FACE 8 RUE AUBER - 75109", "stop_name": "AUBER"}, "geometry": {"type": "Point", "coordinates": [2.3298976383299848, 48.872033003523995]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9a2e652e3cb235ce6548cf35b6a5b95fafb2464e", "fields": {"departement": "75", "stop_lat": 48.86862686808374, "code_postal": "75102", "stop_lon": 2.343494134664324, "coord": [48.86862686808374, 2.343494134664324], "stop_id": 4036760, "stop_desc": "140 RUE MONTMARTRE - 75102", "stop_name": "REAUMUR - MONTMARTRE"}, "geometry": {"type": "Point", "coordinates": [2.343494134664324, 48.86862686808374]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "289341e3ffb0933471fd4599dc145d3a85b79d39", "fields": {"departement": "75", "stop_lat": 48.853761468030406, "code_postal": "75104", "stop_lon": 2.3470742363782513, "coord": [48.853761468030406, 2.3470742363782513], "stop_id": 4036770, "stop_desc": "6 RUE DE LA CITE - 75104", "stop_name": "CITE - PARVIS NOTRE-DAME"}, "geometry": {"type": "Point", "coordinates": [2.3470742363782513, 48.853761468030406]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "079439869eb590c7282c02f891c039d53fdc5df8", "fields": {"departement": "75", "stop_lat": 48.849411331848685, "code_postal": "75105", "stop_lon": 2.349265945050231, "coord": [48.849411331848685, 2.349265945050231], "stop_id": 4036773, "stop_desc": "4 RUE MONGE - 75105", "stop_name": "MAUBERT - MUTUALITE"}, "geometry": {"type": "Point", "coordinates": [2.349265945050231, 48.849411331848685]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0724f48e86164108f7d091f74b114baed4addbde", "fields": {"departement": "75", "stop_lat": 48.84353318485999, "code_postal": "75105", "stop_lon": 2.3520832346079663, "coord": [48.84353318485999, 2.3520832346079663], "stop_id": 4036777, "stop_desc": "68 RUE MONGE - 75105", "stop_name": "MONGE"}, "geometry": {"type": "Point", "coordinates": [2.3520832346079663, 48.84353318485999]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ee8ba3c45991ae357235aaa102a5a9e5e00cfb95", "fields": {"departement": "75", "stop_lat": 48.84288605707058, "code_postal": "75105", "stop_lon": 2.352287297121382, "coord": [48.84288605707058, 2.352287297121382], "stop_id": 4036778, "stop_desc": "77 BIS RUE MONGE - 75105", "stop_name": "MONGE"}, "geometry": {"type": "Point", "coordinates": [2.352287297121382, 48.84288605707058]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ac5109875ce50e51ef4f779a99e8db30bee79e24", "fields": {"departement": "75", "stop_lat": 48.834176950124636, "code_postal": "75113", "stop_lon": 2.3534828245635113, "coord": [48.834176950124636, 2.3534828245635113], "stop_id": 4036784, "stop_desc": "50 AVENUE DES GOBELINS - 75113", "stop_name": "BANQUIER"}, "geometry": {"type": "Point", "coordinates": [2.3534828245635113, 48.834176950124636]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c57fcbb70eb35791d4611dcdb838713635cde4b3", "fields": {"departement": "75", "stop_lat": 48.834248809681654, "code_postal": "75113", "stop_lon": 2.3537823601834367, "coord": [48.834248809681654, 2.3537823601834367], "stop_id": 4036785, "stop_desc": "57-63 AVENUE DES GOBELINS - 75113", "stop_name": "BANQUIER"}, "geometry": {"type": "Point", "coordinates": [2.3537823601834367, 48.834248809681654]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "998f8d947ea64e5fa89b0afd549d0502e127a52a", "fields": {"departement": "75", "stop_lat": 48.831570105297956, "code_postal": "75113", "stop_lon": 2.35643614543779, "coord": [48.831570105297956, 2.35643614543779], "stop_id": 4036787, "stop_desc": "7 PLACE D'ITALIE - 75113", "stop_name": "PLACE D'ITALIE"}, "geometry": {"type": "Point", "coordinates": [2.35643614543779, 48.831570105297956]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "daa9272c6766c8dafbedf14b9196952f3abeee34", "fields": {"departement": "75", "stop_lat": 48.82641104428314, "code_postal": "75113", "stop_lon": 2.357400702995543, "coord": [48.82641104428314, 2.357400702995543], "stop_id": 4036791, "stop_desc": "55-57 AVENUE D'ITALIE - 75113", "stop_name": "ITALIE - TOLBIAC"}, "geometry": {"type": "Point", "coordinates": [2.357400702995543, 48.82641104428314]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b66bf89d09173e569ea511ec83aa84dbdd97eceb", "fields": {"departement": "75", "stop_lat": 48.82251923443529, "code_postal": "75113", "stop_lon": 2.35827030620746, "coord": [48.82251923443529, 2.35827030620746], "stop_id": 4036792, "stop_desc": "150 AVENUE D'ITALIE - 75113", "stop_name": "MAISON BLANCHE"}, "geometry": {"type": "Point", "coordinates": [2.35827030620746, 48.82251923443529]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "48e28b42c57e7c728ddad9951df8d7841c129b84", "fields": {"departement": "75", "stop_lat": 48.81946318939424, "code_postal": "75113", "stop_lon": 2.3595348317669615, "coord": [48.81946318939424, 2.3595348317669615], "stop_id": 4036795, "stop_desc": "159 AVENUE D'ITALIE - 75113", "stop_name": "PORTE D'ITALIE"}, "geometry": {"type": "Point", "coordinates": [2.3595348317669615, 48.81946318939424]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a43f788f881c9bfeff9c7c38a4dd2f54acd3443e", "fields": {"departement": "94", "stop_lat": 48.81476240384012, "code_postal": "94043", "stop_lon": 2.360621543737651, "coord": [48.81476240384012, 2.360621543737651], "stop_id": 4036798, "stop_desc": "18 AVENUE DE FONTAINEBLEAU - 94043", "stop_name": "ROGER SALENGRO - FONTAINEBLEAU"}, "geometry": {"type": "Point", "coordinates": [2.360621543737651, 48.81476240384012]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "957a00fedcb999ee68a561ef67cac4b014b723a0", "fields": {"departement": "94", "stop_lat": 48.80503701410409, "code_postal": "94076", "stop_lon": 2.363597005894514, "coord": [48.80503701410409, 2.363597005894514], "stop_id": 4036804, "stop_desc": "FACE 41 AVENUE DE PARIS - 94076", "stop_name": "DAUPHIN - ANATOLE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.363597005894514, 48.80503701410409]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6fddea29261b2b74c688e9f7f9e9e03508bf0a0c", "fields": {"departement": "94", "stop_lat": 48.803140339876805, "code_postal": "94076", "stop_lon": 2.3646845296732795, "coord": [48.803140339876805, 2.3646845296732795], "stop_id": 4036807, "stop_desc": "87 AVENUE DE PARIS - 94076", "stop_name": "HENRI BARBUSSE"}, "geometry": {"type": "Point", "coordinates": [2.3646845296732795, 48.803140339876805]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "468984ceb9ed8f390c6eddb350eb80d69f67de6d", "fields": {"departement": "94", "stop_lat": 48.79524862637609, "code_postal": "94076", "stop_lon": 2.3662992378184105, "coord": [48.79524862637609, 2.3662992378184105], "stop_id": 4036810, "stop_desc": "22 BIS RUE JEAN JAURES - 94076", "stop_name": "JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.3662992378184105, 48.79524862637609]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7731123bc7a34ce0808fa618ef6a8ed69bd1a539", "fields": {"departement": "75", "stop_lat": 48.85182010268793, "code_postal": "75105", "stop_lon": 2.3479318560576297, "coord": [48.85182010268793, 2.3479318560576297], "stop_id": 4036819, "stop_desc": "3-5 RUE LAGRANGE - 75105", "stop_name": "LAGRANGE"}, "geometry": {"type": "Point", "coordinates": [2.3479318560576297, 48.85182010268793]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ed4b9002f08521670a6bf9482a780e6882fb6ff8", "fields": {"departement": "75", "stop_lat": 48.885324939226564, "code_postal": "75118", "stop_lon": 2.3267205100468256, "coord": [48.885324939226564, 2.3267205100468256], "stop_id": 4036828, "stop_desc": "26-28 AVENUE DE CLICHY - 75118", "stop_name": "GANNERON"}, "geometry": {"type": "Point", "coordinates": [2.3267205100468256, 48.885324939226564]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5427d2a84d540f7b99fbe7edef29a391b6684ab1", "fields": {"departement": "93", "stop_lat": 48.91197216252709, "code_postal": "93070", "stop_lon": 2.3333551706347166, "coord": [48.91197216252709, 2.3333551706347166], "stop_id": 4036835, "stop_desc": "PLACE DE LA REPUBLIQUE - 93070", "stop_name": "MAIRIE DE SAINT-OUEN"}, "geometry": {"type": "Point", "coordinates": [2.3333551706347166, 48.91197216252709]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a11221ad13c472a74128cf16ba2e586928fa79ec", "fields": {"departement": "93", "stop_lat": 48.90604965230394, "code_postal": "93070", "stop_lon": 2.3321286373363135, "coord": [48.90604965230394, 2.3321286373363135], "stop_id": 4036838, "stop_desc": "2 RUE CHARLES SCHMIDT - 93070", "stop_name": "GARIBALDI"}, "geometry": {"type": "Point", "coordinates": [2.3321286373363135, 48.90604965230394]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "62458d990ca9a7c77af73f79c68482dfb800629a", "fields": {"departement": "75", "stop_lat": 48.900720401174596, "code_postal": "75118", "stop_lon": 2.3351962962605697, "coord": [48.900720401174596, 2.3351962962605697], "stop_id": 4036842, "stop_desc": "AVENUE DE LA PORTE DE MONTMARTRE - 75118", "stop_name": "GERARD DE NERVAL"}, "geometry": {"type": "Point", "coordinates": [2.3351962962605697, 48.900720401174596]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a5868ad95b7626879f96651efc7b9e65f8940114", "fields": {"departement": "75", "stop_lat": 48.89835680702863, "code_postal": "75118", "stop_lon": 2.337104740639638, "coord": [48.89835680702863, 2.337104740639638], "stop_id": 4036845, "stop_desc": "6-8 AVENUE DE LA PORTE DE MONTMARTRE - 75118", "stop_name": "PORTE DE MONTMARTRE - BOULEVARD NEY"}, "geometry": {"type": "Point", "coordinates": [2.337104740639638, 48.89835680702863]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a2bcec5cb1d47acfb89ee8f967b560bb66389e96", "fields": {"departement": "75", "stop_lat": 48.89772769764517, "code_postal": "75118", "stop_lon": 2.338835867995168, "coord": [48.89772769764517, 2.338835867995168], "stop_id": 4036846, "stop_desc": "73 BOULEVARD NEY - 75118", "stop_name": "CAMILLE FLAMMARION"}, "geometry": {"type": "Point", "coordinates": [2.338835867995168, 48.89772769764517]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2a4a161f43e407aa7f4b1df5deced61eaa7e8f2f", "fields": {"departement": "75", "stop_lat": 48.88087584272046, "code_postal": "75110", "stop_lon": 2.351726002486145, "coord": [48.88087584272046, 2.351726002486145], "stop_id": 4036857, "stop_desc": "129 BOULEVARD DE MAGENTA - 75110", "stop_name": "MAGENTA - MAUBEUGE - GARE DU NORD"}, "geometry": {"type": "Point", "coordinates": [2.351726002486145, 48.88087584272046]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "501b633918be314e1f3fe5fd52261fdb280256e8", "fields": {"departement": "75", "stop_lat": 48.8597465272257, "code_postal": "75104", "stop_lon": 2.35249649876749, "coord": [48.8597465272257, 2.35249649876749], "stop_id": 4036868, "stop_desc": "FACE 22 RUE DU RENARD - 75104", "stop_name": "CENTRE GEORGES POMPIDOU"}, "geometry": {"type": "Point", "coordinates": [2.35249649876749, 48.8597465272257]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8b5424108d336c23a09d6d66fd92978ffbd57393", "fields": {"departement": "75", "stop_lat": 48.85754511242919, "code_postal": "75104", "stop_lon": 2.347864933104723, "coord": [48.85754511242919, 2.347864933104723], "stop_id": 4036870, "stop_desc": "2 PLACE DU CHATELET - 75104", "stop_name": "CHATELET"}, "geometry": {"type": "Point", "coordinates": [2.347864933104723, 48.85754511242919]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1665c8ee421474797c17c95bef422b62c00e4af0", "fields": {"departement": "91", "stop_lat": 48.71483410975701, "code_postal": "91027", "stop_lon": 2.404408911126855, "coord": [48.71483410975701, 2.404408911126855], "stop_id": 4378151, "stop_desc": "37-39 R CARON - 91027", "stop_name": "LES FONTAINES"}, "geometry": {"type": "Point", "coordinates": [2.404408911126855, 48.71483410975701]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a9c5c1a40f3eee61fa844cf50ea221d09a71b5ba", "fields": {"departement": "91", "stop_lat": 48.71541773854733, "code_postal": "91027", "stop_lon": 2.405496315311364, "coord": [48.71541773854733, 2.405496315311364], "stop_id": 4378152, "stop_desc": "42-44 R CARON - 91027", "stop_name": "LES FONTAINES"}, "geometry": {"type": "Point", "coordinates": [2.405496315311364, 48.71541773854733]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a74110f67368d976821989c868a05d3c1d01a2da", "fields": {"departement": "91", "stop_lat": 48.70544720934439, "code_postal": "91027", "stop_lon": 2.392676797196865, "coord": [48.70544720934439, 2.392676797196865], "stop_id": 4378159, "stop_desc": "FACE 6-8 R EDOUARD VAILLANT - 91027", "stop_name": "COTTAGE"}, "geometry": {"type": "Point", "coordinates": [2.392676797196865, 48.70544720934439]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "383680a1ebf7d4a86e4ded4b828bf3567fe55f18", "fields": {"departement": "91", "stop_lat": 48.69795536643969, "code_postal": "91027", "stop_lon": 2.381765223571396, "coord": [48.69795536643969, 2.381765223571396], "stop_id": 4378168, "stop_desc": "32 AVENUE DU 18 AVRIL - 91027", "stop_name": "LYCEE MARCEL PAGNOL"}, "geometry": {"type": "Point", "coordinates": [2.381765223571396, 48.69795536643969]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "12380803c7c9bba4bb798d98088cdc39c5cbc8d9", "fields": {"departement": "91", "stop_lat": 48.6905128741131, "code_postal": "91326", "stop_lon": 2.38162309074947, "coord": [48.6905128741131, 2.38162309074947], "stop_id": 4378171, "stop_desc": "R DES GAULOIS - 91326", "stop_name": "JUVISY RER"}, "geometry": {"type": "Point", "coordinates": [2.38162309074947, 48.6905128741131]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e06fbe7c9b29b1ada776faee21542bc2676c536d", "fields": {"departement": "91", "stop_lat": 48.714776333210814, "code_postal": "91027", "stop_lon": 2.3712120754283355, "coord": [48.714776333210814, 2.3712120754283355], "stop_id": 4378179, "stop_desc": "PISTE GARE ROUTIERE - 91027", "stop_name": "PORTE DE L'ESSONNE"}, "geometry": {"type": "Point", "coordinates": [2.3712120754283355, 48.714776333210814]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "13f0a41f5381e4fbd1c968bc14e515e2627986ac", "fields": {"departement": "91", "stop_lat": 48.71111808019668, "code_postal": "91479", "stop_lon": 2.371046702909022, "coord": [48.71111808019668, 2.371046702909022], "stop_id": 4378181, "stop_desc": "59 BD DE FONTAINEBLEAU - 91479", "stop_name": "CENTRE COMMERCIAL - RIGOLET"}, "geometry": {"type": "Point", "coordinates": [2.371046702909022, 48.71111808019668]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "892083a64da9859df6ba506f4805cc661469be00", "fields": {"departement": "91", "stop_lat": 48.70593138039471, "code_postal": "91027", "stop_lon": 2.372238430729525, "coord": [48.70593138039471, 2.372238430729525], "stop_id": 4378185, "stop_desc": "125 AVENUE MARCEL SEMBAT - 91027", "stop_name": "BELLE ETOILE - LA POMPE"}, "geometry": {"type": "Point", "coordinates": [2.372238430729525, 48.70593138039471]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6f366713c87805c03272998865dd03d6a4681d57", "fields": {"departement": "91", "stop_lat": 48.70731415833315, "code_postal": "91027", "stop_lon": 2.3768569051497845, "coord": [48.70731415833315, 2.3768569051497845], "stop_id": 4378187, "stop_desc": "98 AVENUE MARCEL SEMBAT - 91027", "stop_name": "LA PLAINE"}, "geometry": {"type": "Point", "coordinates": [2.3768569051497845, 48.70731415833315]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e638e7a9d4fff28e1bc04d362763f0cf4adc2209", "fields": {"departement": "91", "stop_lat": 48.721503079218586, "code_postal": "91027", "stop_lon": 2.4051782676162388, "coord": [48.721503079218586, 2.4051782676162388], "stop_id": 4378196, "stop_desc": "R ROLAND GARROS - 91027", "stop_name": "ZA LES GUYARDS"}, "geometry": {"type": "Point", "coordinates": [2.4051782676162388, 48.721503079218586]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aca3f47700b413b5ca9181bf8b8abe50164d2972", "fields": {"departement": "91", "stop_lat": 48.71541773854733, "code_postal": "91027", "stop_lon": 2.405496315311364, "coord": [48.71541773854733, 2.405496315311364], "stop_id": 4378207, "stop_desc": "42-44 R CARON - 91027", "stop_name": "LES FONTAINES"}, "geometry": {"type": "Point", "coordinates": [2.405496315311364, 48.71541773854733]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9e87ea6662592df4ea3c4ba2eacb07f6f6264a66", "fields": {"departement": "91", "stop_lat": 48.71295654054325, "code_postal": "91027", "stop_lon": 2.4025864333113263, "coord": [48.71295654054325, 2.4025864333113263], "stop_id": 4378208, "stop_desc": "R EDOUARD VAILLANT - 91027", "stop_name": "ATHIS-MONS RER"}, "geometry": {"type": "Point", "coordinates": [2.4025864333113263, 48.71295654054325]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fbe2b29a44e6c0ae4aedfda949b1b2e1752c57b1", "fields": {"departement": "91", "stop_lat": 48.697470201935985, "code_postal": "91027", "stop_lon": 2.3811809353960895, "coord": [48.697470201935985, 2.3811809353960895], "stop_id": 4378222, "stop_desc": "19 AVENUE DU 18 AVRIL - 91027", "stop_name": "LYCEE MARCEL PAGNOL"}, "geometry": {"type": "Point", "coordinates": [2.3811809353960895, 48.697470201935985]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7ddcc624886f05dec97f1396569530fa986df667", "fields": {"departement": "91", "stop_lat": 48.69795536643969, "code_postal": "91027", "stop_lon": 2.381765223571396, "coord": [48.69795536643969, 2.381765223571396], "stop_id": 4378223, "stop_desc": "32 AVENUE DU 18 AVRIL - 91027", "stop_name": "LYCEE MARCEL PAGNOL"}, "geometry": {"type": "Point", "coordinates": [2.381765223571396, 48.69795536643969]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "42f0554aeb4d7ed58ccc2398733998fc9a47d72d", "fields": {"departement": "91", "stop_lat": 48.6905128741131, "code_postal": "91326", "stop_lon": 2.38162309074947, "coord": [48.6905128741131, 2.38162309074947], "stop_id": 4378225, "stop_desc": "R DES GAULOIS - 91326", "stop_name": "JUVISY RER"}, "geometry": {"type": "Point", "coordinates": [2.38162309074947, 48.6905128741131]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e8b14e1b205b099243f1f3860b49f59b1469f582", "fields": {"departement": "91", "stop_lat": 48.6905128741131, "code_postal": "91326", "stop_lon": 2.38162309074947, "coord": [48.6905128741131, 2.38162309074947], "stop_id": 4378226, "stop_desc": "R DES GAULOIS - 91326", "stop_name": "JUVISY RER"}, "geometry": {"type": "Point", "coordinates": [2.38162309074947, 48.6905128741131]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "515d8a3f2b658e81a8dc5edc7f1307e2c7c323e9", "fields": {"departement": "91", "stop_lat": 48.71091407362534, "code_postal": "91027", "stop_lon": 2.388526544318977, "coord": [48.71091407362534, 2.388526544318977], "stop_id": 4378228, "stop_desc": "FACE 32 AV HENRI DUNANT - 91027", "stop_name": "CIMETIERE D'ATHIS-MONS"}, "geometry": {"type": "Point", "coordinates": [2.388526544318977, 48.71091407362534]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7fa2493ebfa970138460e22e6b9d20bb29dbd346", "fields": {"departement": "92", "stop_lat": 48.777076174853896, "code_postal": "92014", "stop_lon": 2.313442392219605, "coord": [48.777076174853896, 2.313442392219605], "stop_id": 4378263, "stop_desc": "114 BOULEVARD DU MARECHAL JOFFRE - 92014", "stop_name": "PETIT CHAMBORD - LYCEE LAKANAL"}, "geometry": {"type": "Point", "coordinates": [2.313442392219605, 48.777076174853896]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9a062aaafe4884e012de50372e4f2f1805c1d909", "fields": {"departement": "92", "stop_lat": 48.765975131381744, "code_postal": "92002", "stop_lon": 2.3096948881143153, "coord": [48.765975131381744, 2.3096948881143153], "stop_id": 4378268, "stop_desc": "25 AVENUE RAYMOND ARON - 92002", "stop_name": "NORMANDIE"}, "geometry": {"type": "Point", "coordinates": [2.3096948881143153, 48.765975131381744]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5338b2a68256276d20c5a50b483ac6bcea4cfa4d", "fields": {"departement": "94", "stop_lat": 48.75919137810716, "code_postal": "94034", "stop_lon": 2.3224094079317776, "coord": [48.75919137810716, 2.3224094079317776], "stop_id": 4378275, "stop_desc": "50 AVENUE DE LA DIVISION LECLERC - 94034", "stop_name": "LE PETIT FRESNES"}, "geometry": {"type": "Point", "coordinates": [2.3224094079317776, 48.75919137810716]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ec381f4cb4261528edc245d28f482537eb50141f", "fields": {"departement": "94", "stop_lat": 48.75803247298405, "code_postal": "94034", "stop_lon": 2.3279697937010537, "coord": [48.75803247298405, 2.3279697937010537], "stop_id": 4378278, "stop_desc": "FACE 80 AVENUE DE LA DIVISION LECLERC - 94034", "stop_name": "LE CLOS LA GARENNE"}, "geometry": {"type": "Point", "coordinates": [2.3279697937010537, 48.75803247298405]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "362c192098a5a16be37bad6789dd7a9ce452206f", "fields": {"departement": "94", "stop_lat": 48.754212424595146, "code_postal": "94034", "stop_lon": 2.326950980970579, "coord": [48.754212424595146, 2.326950980970579], "stop_id": 4378280, "stop_desc": "FACE 18 AVENUE EDOUARD HERRIOT - 94034", "stop_name": "MONTJEAN"}, "geometry": {"type": "Point", "coordinates": [2.326950980970579, 48.754212424595146]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "134f9a8df752f3b0b26f54d922f78870f67bbc48", "fields": {"departement": "94", "stop_lat": 48.753862314195864, "code_postal": "94034", "stop_lon": 2.3393344328051553, "coord": [48.753862314195864, 2.3393344328051553], "stop_id": 4378282, "stop_desc": "AVENUE DU PARC MEDICIS - 94034", "stop_name": "PARC MEDICIS"}, "geometry": {"type": "Point", "coordinates": [2.3393344328051553, 48.753862314195864]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "03f14d55a500b60da2d56e670c49ce438710dff3", "fields": {"departement": "94", "stop_lat": 48.75885053303255, "code_postal": "94021", "stop_lon": 2.3445277240012836, "coord": [48.75885053303255, 2.3445277240012836], "stop_id": 4378284, "stop_desc": "BOULEVARD CIRCULAIRE OUEST - 94021", "stop_name": "LE DELTA"}, "geometry": {"type": "Point", "coordinates": [2.3445277240012836, 48.75885053303255]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "42c7fc8c2d48123e30c49224413bd4ae450beac3", "fields": {"departement": "94", "stop_lat": 48.77005834977695, "code_postal": "94021", "stop_lon": 2.3487716862587558, "coord": [48.77005834977695, 2.3487716862587558], "stop_id": 4378285, "stop_desc": "BOULEVARD CIRCULAIRE NORD - 94021", "stop_name": "MAIRIE DE CHEVILLY-LARUE"}, "geometry": {"type": "Point", "coordinates": [2.3487716862587558, 48.77005834977695]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "48a90543b58d16f53c2e87f6c050289b670700ae", "fields": {"departement": "94", "stop_lat": 48.76329807704591, "code_postal": "94021", "stop_lon": 2.357920055738764, "coord": [48.76329807704591, 2.357920055738764], "stop_id": 4378287, "stop_desc": "AVENUE DE LA CITE - 94021", "stop_name": "MARCHE INTERNATIONAL DE RUNGIS"}, "geometry": {"type": "Point", "coordinates": [2.357920055738764, 48.76329807704591]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "356fdf4baf2c0c8386c68cbad120c1df35b0b7ed", "fields": {"departement": "94", "stop_lat": 48.756445288464626, "code_postal": "94073", "stop_lon": 2.37384932439109, "coord": [48.756445288464626, 2.37384932439109], "stop_id": 4378293, "stop_desc": "AVENUE DU LUXEMBOURG - 94073", "stop_name": "LA BELLE EPINE"}, "geometry": {"type": "Point", "coordinates": [2.37384932439109, 48.756445288464626]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "54b3b588c50abb89d45267eca6215169cb6b079d", "fields": {"departement": "94", "stop_lat": 48.75654794721687, "code_postal": "94073", "stop_lon": 2.3880006253863586, "coord": [48.75654794721687, 2.3880006253863586], "stop_id": 4378297, "stop_desc": "AVENUE DE VERSAILLES - 94073", "stop_name": "CARREFOUR DE LA RESISTANCE"}, "geometry": {"type": "Point", "coordinates": [2.3880006253863586, 48.75654794721687]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "38a8f9c15309613165f5d7d29ff23afdbd6bdad9", "fields": {"departement": "94", "stop_lat": 48.757356640926375, "code_postal": "94073", "stop_lon": 2.388558772880809, "coord": [48.757356640926375, 2.388558772880809], "stop_id": 4378298, "stop_desc": "AVENUE DE VERSAILLES - 94073", "stop_name": "CARREFOUR DE LA RESISTANCE"}, "geometry": {"type": "Point", "coordinates": [2.388558772880809, 48.757356640926375]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3aa684830fc2bfad2762e66690f7914e6d0c90a8", "fields": {"departement": "94", "stop_lat": 48.75995880829257, "code_postal": "94073", "stop_lon": 2.397887356547976, "coord": [48.75995880829257, 2.397887356547976], "stop_id": 4378302, "stop_desc": "86 AVENUE DE VERSAILLES - 94073", "stop_name": "GEORGES HALGOULT"}, "geometry": {"type": "Point", "coordinates": [2.397887356547976, 48.75995880829257]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aac7682865639a8ae3fab664c345e5eb8619dd20", "fields": {"departement": "94", "stop_lat": 48.76777636972624, "code_postal": "94022", "stop_lon": 2.4166872861652084, "coord": [48.76777636972624, 2.4166872861652084], "stop_id": 4378309, "stop_desc": "37-39 AVENUE VICTOR HUGO - 94022", "stop_name": "PASTEUR"}, "geometry": {"type": "Point", "coordinates": [2.4166872861652084, 48.76777636972624]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a04ceb9f5f19092ee61b206761a15030e244b971", "fields": {"departement": "94", "stop_lat": 48.77075357232142, "code_postal": "94028", "stop_lon": 2.4263325382408234, "coord": [48.77075357232142, 2.4263325382408234], "stop_id": 4378313, "stop_desc": "112 AVENUE VICTOR HUGO - 94028", "stop_name": "PARC INTERDEPARTEMENTAL DES SPORTS"}, "geometry": {"type": "Point", "coordinates": [2.4263325382408234, 48.77075357232142]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6920c876e70c18ae22c775f077c58668da1d3a3f", "fields": {"departement": "94", "stop_lat": 48.78993854813873, "code_postal": "94028", "stop_lon": 2.4523736723550376, "coord": [48.78993854813873, 2.4523736723550376], "stop_id": 4378323, "stop_desc": "ROUTE DE CHOISY - 94028", "stop_name": "CRETEIL - UNIVERSITE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.4523736723550376, 48.78993854813873]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9100408f62fe03c603315216070322c38c54c5f4", "fields": {"departement": "94", "stop_lat": 48.79336405322197, "code_postal": "94028", "stop_lon": 2.460244106822518, "coord": [48.79336405322197, 2.460244106822518], "stop_id": 4378325, "stop_desc": "FACE 7 RUE DES MECHES - 94028", "stop_name": "EGLISE DE CRETEIL"}, "geometry": {"type": "Point", "coordinates": [2.460244106822518, 48.79336405322197]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "39eb04006fd310db231c5a9d07af6d1c9a46f18f", "fields": {"departement": "94", "stop_lat": 48.797234127455916, "code_postal": "94028", "stop_lon": 2.4637768508323474, "coord": [48.797234127455916, 2.4637768508323474], "stop_id": 4378327, "stop_desc": "AVENUE DE VERDUN - 94028", "stop_name": "HOPITAL INTERCOMMUNAL"}, "geometry": {"type": "Point", "coordinates": [2.4637768508323474, 48.797234127455916]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fc94946e6c46b472a9dce77bdcd9cb2a1e06d235", "fields": {"departement": "94", "stop_lat": 48.806131521325455, "code_postal": "94068", "stop_lon": 2.4724661162705828, "coord": [48.806131521325455, 2.4724661162705828], "stop_id": 4378331, "stop_desc": "PISTE TERMINAL BUS TVM - 94068", "stop_name": "SAINT-MAUR - CRETEIL RER"}, "geometry": {"type": "Point", "coordinates": [2.4724661162705828, 48.806131521325455]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f0ac615906b0fdb8fe919205e01ec283b3b59985", "fields": {"departement": "94", "stop_lat": 48.78805792801428, "code_postal": "94076", "stop_lon": 2.3678050521272613, "coord": [48.78805792801428, 2.3678050521272613], "stop_id": 4378363, "stop_desc": "FACE 185 BOULEVARD MAXIME GORKI - 94076", "stop_name": "VILLEJUIF - LOUIS ARAGON"}, "geometry": {"type": "Point", "coordinates": [2.3678050521272613, 48.78805792801428]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "37af638983341fe669a1806f8958b9974c894d2f", "fields": {"departement": "94", "stop_lat": 48.77945456833409, "code_postal": "94081", "stop_lon": 2.3744231301101495, "coord": [48.77945456833409, 2.3744231301101495], "stop_id": 4378367, "stop_desc": "FACE 184 RUE JULIAN GRIMAU - 94081", "stop_name": "JULIAN GRIMAU - VOIE VERTE"}, "geometry": {"type": "Point", "coordinates": [2.3744231301101495, 48.77945456833409]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b1f124a0deb9f1933fab59135722962fc18b1a65", "fields": {"departement": "94", "stop_lat": 48.75869121513839, "code_postal": "94022", "stop_lon": 2.413913726281213, "coord": [48.75869121513839, 2.413913726281213], "stop_id": 4378380, "stop_desc": "AVENUE RONDU - 94022", "stop_name": "CHARLES JULES VAILLANT"}, "geometry": {"type": "Point", "coordinates": [2.413913726281213, 48.75869121513839]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "18bc1cb38aaaf26af9eeeb161bda112556b079b3", "fields": {"departement": "94", "stop_lat": 48.755518005476794, "code_postal": "94022", "stop_lon": 2.414520758040493, "coord": [48.755518005476794, 2.414520758040493], "stop_id": 4378381, "stop_desc": "FACE 131 AVENUE ANATOLE FRANCE - 94022", "stop_name": "CRECHE JEAN EFFEL"}, "geometry": {"type": "Point", "coordinates": [2.414520758040493, 48.755518005476794]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1767c459ca0824073427e0f461c4f30e3f2f8bfa", "fields": {"departement": "94", "stop_lat": 48.76454363490988, "code_postal": "94022", "stop_lon": 2.412100500147757, "coord": [48.76454363490988, 2.412100500147757], "stop_id": 4378387, "stop_desc": "AVENUE LOUIS LUC - 94022", "stop_name": "CHOISY-LE-ROI RER"}, "geometry": {"type": "Point", "coordinates": [2.412100500147757, 48.76454363490988]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f634e3f0cbc5a590f7fe080670146617e915a420", "fields": {"departement": "94", "stop_lat": 48.775104498112604, "code_postal": "94081", "stop_lon": 2.3740256542080003, "coord": [48.775104498112604, 2.3740256542080003], "stop_id": 4378396, "stop_desc": "115 RUE PAUL ARMANGOT - 94081", "stop_name": "CAMILLE RISCH"}, "geometry": {"type": "Point", "coordinates": [2.3740256542080003, 48.775104498112604]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "798cdfe6df3a29427397afe9d1a05da7cabbec5e", "fields": {"departement": "94", "stop_lat": 48.796272681571224, "code_postal": "94076", "stop_lon": 2.368517307929323, "coord": [48.796272681571224, 2.368517307929323], "stop_id": 4378405, "stop_desc": "33 BOULEVARD MAXIME GORKI - 94076", "stop_name": "PAUL VAILLANT-COUTURIER - HOPITAL PAUL BROUSSE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.368517307929323, 48.796272681571224]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0207ad0309dd9cf21d4ef0a6433c34e92bed0c79", "fields": {"departement": "94", "stop_lat": 48.804830185116614, "code_postal": "94076", "stop_lon": 2.364086735660601, "coord": [48.804830185116614, 2.364086735660601], "stop_id": 4378408, "stop_desc": "AVENUE DE PARIS - 94076", "stop_name": "DAUPHIN - ANATOLE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.364086735660601, 48.804830185116614]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c2d9a2d303bfcc5d927df46567e34c8fe20d5209", "fields": {"departement": "94", "stop_lat": 48.77195519735116, "code_postal": "94021", "stop_lon": 2.3439448491581363, "coord": [48.77195519735116, 2.3439448491581363], "stop_id": 4390967, "stop_desc": "80 AVENUE DU GENERAL DE GAULLE - 94021", "stop_name": "CIMETIERE COMMUNAL"}, "geometry": {"type": "Point", "coordinates": [2.3439448491581363, 48.77195519735116]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8c7d4a4d0a4a2fae3c112f1973e077523519aead", "fields": {"departement": "94", "stop_lat": 48.77070532619788, "code_postal": "94021", "stop_lon": 2.3503491492177844, "coord": [48.77070532619788, 2.3503491492177844], "stop_id": 4390969, "stop_desc": "100 AVENUE DU GENERAL DE GAULLE - 94021", "stop_name": "CENTRE CULTUREL - ANDRE MALRAUX"}, "geometry": {"type": "Point", "coordinates": [2.3503491492177844, 48.77070532619788]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "39e177e1e2b8ba6d797e4c227d110a727d157791", "fields": {"departement": "91", "stop_lat": 48.70517122890431, "code_postal": "91479", "stop_lon": 2.3547055550080347, "coord": [48.70517122890431, 2.3547055550080347], "stop_id": 4394969, "stop_desc": "46 AVENUE CHARLES DE GAULLE - 91479", "stop_name": "LES FLEURS"}, "geometry": {"type": "Point", "coordinates": [2.3547055550080347, 48.70517122890431]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2905652c197bad7c0b2820e93614b596de8d072f", "fields": {"departement": "91", "stop_lat": 48.712943503772166, "code_postal": "91479", "stop_lon": 2.3682363150974677, "coord": [48.712943503772166, 2.3682363150974677], "stop_id": 4394972, "stop_desc": "23-25 AV PAUL VAILLANT COUTURIER - 91479", "stop_name": "CENTRE SPORTIF"}, "geometry": {"type": "Point", "coordinates": [2.3682363150974677, 48.712943503772166]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "66dd3cf0ece2741a9d5958a103381897efd81990", "fields": {"departement": "91", "stop_lat": 48.68284267569443, "code_postal": "91589", "stop_lon": 2.3601007677690373, "coord": [48.68284267569443, 2.3601007677690373], "stop_id": 4394983, "stop_desc": "170 AVENUE CARNOT - 91589", "stop_name": "MONTAGNE PAVEE"}, "geometry": {"type": "Point", "coordinates": [2.3601007677690373, 48.68284267569443]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0bfac1cac4ec28dc4a7513acf8bdcc9bf39a05e2", "fields": {"departement": "91", "stop_lat": 48.689378366309775, "code_postal": "91589", "stop_lon": 2.3544558838862235, "coord": [48.689378366309775, 2.3544558838862235], "stop_id": 4394985, "stop_desc": "40 AVENUE GABRIEL PERI - 91589", "stop_name": "LES BLEUETS"}, "geometry": {"type": "Point", "coordinates": [2.3544558838862235, 48.689378366309775]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7f996595ab149c260d5c35576b0528846efcc335", "fields": {"departement": "91", "stop_lat": 48.69713611014286, "code_postal": "91589", "stop_lon": 2.3497060248892825, "coord": [48.69713611014286, 2.3497060248892825], "stop_id": 4394988, "stop_desc": "152 AVENUE ROBERT LEUTHREAU - 91589", "stop_name": "CIMETIERE DU PLATEAU"}, "geometry": {"type": "Point", "coordinates": [2.3497060248892825, 48.69713611014286]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "947d39c2e84f82dc29b8097d70655d359c72f08c", "fields": {"departement": "91", "stop_lat": 48.712943503772166, "code_postal": "91479", "stop_lon": 2.3682363150974677, "coord": [48.712943503772166, 2.3682363150974677], "stop_id": 4394993, "stop_desc": "23-25 AV PAUL VAILLANT COUTURIER - 91479", "stop_name": "CENTRE SPORTIF"}, "geometry": {"type": "Point", "coordinates": [2.3682363150974677, 48.712943503772166]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "50ae6b0e3fd08c0fa8e9f6f32b15c78fcb223517", "fields": {"departement": "91", "stop_lat": 48.68893782592309, "code_postal": "91589", "stop_lon": 2.3551209728143228, "coord": [48.68893782592309, 2.3551209728143228], "stop_id": 4394998, "stop_desc": "33 AVENUE GABRIEL PERI - 91589", "stop_name": "LES BLEUETS"}, "geometry": {"type": "Point", "coordinates": [2.3551209728143228, 48.68893782592309]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2b9a3c2865da08beeeea45c69ea157a4332174f1", "fields": {"departement": "91", "stop_lat": 48.712943503772166, "code_postal": "91479", "stop_lon": 2.3682363150974677, "coord": [48.712943503772166, 2.3682363150974677], "stop_id": 4395005, "stop_desc": "23-25 AV PAUL VAILLANT COUTURIER - 91479", "stop_name": "CENTRE SPORTIF"}, "geometry": {"type": "Point", "coordinates": [2.3682363150974677, 48.712943503772166]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b344adc17b439d8c87b85f5b955d01a3b2256b43", "fields": {"departement": "91", "stop_lat": 48.71527053273419, "code_postal": "91027", "stop_lon": 2.3717828879033798, "coord": [48.71527053273419, 2.3717828879033798], "stop_id": 4395006, "stop_desc": "PISTE GARE ROUTIERE - 91027", "stop_name": "PORTE DE L'ESSONNE"}, "geometry": {"type": "Point", "coordinates": [2.3717828879033798, 48.71527053273419]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0b09d963c38afec077e0ddb05800b81dcec1afc8", "fields": {"departement": "94", "stop_lat": 48.7807882194003, "code_postal": "94076", "stop_lon": 2.361041465726019, "coord": [48.7807882194003, 2.361041465726019], "stop_id": 4423345, "stop_desc": "22 RUE SAINTE-COLOMBE - 94076", "stop_name": "LAMARTINE"}, "geometry": {"type": "Point", "coordinates": [2.361041465726019, 48.7807882194003]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "46eaf89fff86ec1d2adb56b47d58289c001026aa", "fields": {"departement": "94", "stop_lat": 48.77598988189659, "code_postal": "94038", "stop_lon": 2.353627832171674, "coord": [48.77598988189659, 2.353627832171674], "stop_id": 4423349, "stop_desc": "FACE 119 RUE DE BICETRE - 94038", "stop_name": "RUE DE BICETRE"}, "geometry": {"type": "Point", "coordinates": [2.353627832171674, 48.77598988189659]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1431244fce7166db4d69e7d4382af8113ff14bd0", "fields": {"departement": "94", "stop_lat": 48.76391093626095, "code_postal": "94034", "stop_lon": 2.3317347812397253, "coord": [48.76391093626095, 2.3317347812397253], "stop_id": 4423356, "stop_desc": "FACE 94-96 RUE DE LA PAIX - 94034", "stop_name": "STADE DE LA PAIX"}, "geometry": {"type": "Point", "coordinates": [2.3317347812397253, 48.76391093626095]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0056dbc113a5c3b64f529f494ca69621fad16694", "fields": {"departement": "94", "stop_lat": 48.823325059800965, "code_postal": "94018", "stop_lon": 2.4110827508438324, "coord": [48.823325059800965, 2.4110827508438324], "stop_id": 4439433, "stop_desc": "88 RUE DE PARIS - 94018", "stop_name": "THEATRE DE CHARENTON"}, "geometry": {"type": "Point", "coordinates": [2.4110827508438324, 48.823325059800965]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3d23918bd3600fa9ba5f26b826cd9d92795c2f8d", "fields": {"departement": "94", "stop_lat": 48.80869730181348, "code_postal": "94081", "stop_lon": 2.403849952527833, "coord": [48.80869730181348, 2.403849952527833], "stop_id": 4439441, "stop_desc": "88 AV JEAN JAURES - 94081", "stop_name": "RUE DE LA BAIGNADE"}, "geometry": {"type": "Point", "coordinates": [2.403849952527833, 48.80869730181348]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "60add90e9fd8ac04e92af1bb2325d72321163082", "fields": {"departement": "94", "stop_lat": 48.7983005517985, "code_postal": "94081", "stop_lon": 2.399877617408329, "coord": [48.7983005517985, 2.399877617408329], "stop_id": 4439444, "stop_desc": "30 AVENUE PAUL VAILLANT-COUTURIER - 94081", "stop_name": "GABRIEL PERI"}, "geometry": {"type": "Point", "coordinates": [2.399877617408329, 48.7983005517985]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "049257d584f5199b1981f658abd3fd408eb3f3c5", "fields": {"departement": "94", "stop_lat": 48.7924967978393, "code_postal": "94081", "stop_lon": 2.395109466390311, "coord": [48.7924967978393, 2.395109466390311], "stop_id": 4439446, "stop_desc": "AVENUE PAUL VAILLANT-COUTURIER - 94081", "stop_name": "EGLISE DE VITRY"}, "geometry": {"type": "Point", "coordinates": [2.395109466390311, 48.7924967978393]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bf6b3a5064b4f1ca394d168805aeb792f15a8c6b", "fields": {"departement": "94", "stop_lat": 48.78785123708828, "code_postal": "94076", "stop_lon": 2.3676825118887823, "coord": [48.78785123708828, 2.3676825118887823], "stop_id": 4439453, "stop_desc": "PISTE GARE ROUTIERE - 94076", "stop_name": "VILLEJUIF - LOUIS ARAGON"}, "geometry": {"type": "Point", "coordinates": [2.3676825118887823, 48.78785123708828]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bb0b74bfaa74bdb9f809d8d54c3f1dd0e485da0f", "fields": {"departement": "94", "stop_lat": 48.823325059800965, "code_postal": "94018", "stop_lon": 2.4110827508438324, "coord": [48.823325059800965, 2.4110827508438324], "stop_id": 4439455, "stop_desc": "88 RUE DE PARIS - 94018", "stop_name": "THEATRE DE CHARENTON"}, "geometry": {"type": "Point", "coordinates": [2.4110827508438324, 48.823325059800965]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1b38653e58ff488f52e74378c28477fbb702e771", "fields": {"departement": "94", "stop_lat": 48.82248640945558, "code_postal": "94018", "stop_lon": 2.4003151356284196, "coord": [48.82248640945558, 2.4003151356284196], "stop_id": 4439458, "stop_desc": "7 RUE DE L'ARCADE - 94018", "stop_name": "PONT NELSON MANDELA - RIVES DE BERCY"}, "geometry": {"type": "Point", "coordinates": [2.4003151356284196, 48.82248640945558]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "00d8cee79224acfc87403b4c56e42b3ac92762a1", "fields": {"departement": "94", "stop_lat": 48.81486417327504, "code_postal": "94041", "stop_lon": 2.401544308380196, "coord": [48.81486417327504, 2.401544308380196], "stop_id": 4439461, "stop_desc": "FACE 119 BOULEVARD PAUL VAILLANT-COUTURIER - 94041", "stop_name": "GAMBETTA"}, "geometry": {"type": "Point", "coordinates": [2.401544308380196, 48.81486417327504]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ee30ebaa31a9ea41cc6351dbb7391f5060a92cc4", "fields": {"departement": "94", "stop_lat": 48.804777925970896, "code_postal": "94081", "stop_lon": 2.4050831174449394, "coord": [48.804777925970896, 2.4050831174449394], "stop_id": 4439464, "stop_desc": "128 AVENUE ANATOLE FRANCE - 94081", "stop_name": "PORT A L'ANGLAIS"}, "geometry": {"type": "Point", "coordinates": [2.4050831174449394, 48.804777925970896]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cce8966722c7cc92dc63461006efe90dbf722acf", "fields": {"departement": "94", "stop_lat": 48.80158865978527, "code_postal": "94081", "stop_lon": 2.4025619011687778, "coord": [48.80158865978527, 2.4025619011687778], "stop_id": 4439465, "stop_desc": "3 PLACE PIERRE SEMARD - 94081", "stop_name": "VITRY RER"}, "geometry": {"type": "Point", "coordinates": [2.4025619011687778, 48.80158865978527]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a657289c5adee51a74a43601cdca534affc34f0a", "fields": {"departement": "94", "stop_lat": 48.78785123708828, "code_postal": "94076", "stop_lon": 2.3676825118887823, "coord": [48.78785123708828, 2.3676825118887823], "stop_id": 4439475, "stop_desc": "PISTE GARE ROUTIERE - 94076", "stop_name": "VILLEJUIF - LOUIS ARAGON"}, "geometry": {"type": "Point", "coordinates": [2.3676825118887823, 48.78785123708828]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "97573848b32c7392e6e1b3bc229bab0529b14064", "fields": {"departement": "94", "stop_lat": 48.78990240188759, "code_postal": "94081", "stop_lon": 2.388318873018915, "coord": [48.78990240188759, 2.388318873018915], "stop_id": 4439481, "stop_desc": "FACE 23 AVENUE MAXIMILIEN ROBESPIERRE - 94081", "stop_name": "HOTEL DE VILLE DE VITRY"}, "geometry": {"type": "Point", "coordinates": [2.388318873018915, 48.78990240188759]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "700d92ce7d1c1b8b2393c44d5524eb00f347e385", "fields": {"departement": "94", "stop_lat": 48.823667195047015, "code_postal": "94018", "stop_lon": 2.410103212176365, "coord": [48.823667195047015, 2.410103212176365], "stop_id": 4439497, "stop_desc": "109 RUE DE PARIS - 94018", "stop_name": "THEATRE DE CHARENTON"}, "geometry": {"type": "Point", "coordinates": [2.410103212176365, 48.823667195047015]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e2c4c190c134b8d202ddee00e41ee626be750328", "fields": {"departement": "75", "stop_lat": 48.857113475245306, "code_postal": "75104", "stop_lon": 2.350289246712866, "coord": [48.857113475245306, 2.350289246712866], "stop_id": 4439500, "stop_desc": "02 AVENUE VICTORIA - 75104", "stop_name": "CHATELET"}, "geometry": {"type": "Point", "coordinates": [2.350289246712866, 48.857113475245306]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "55769f99369d0e7317f487b623980b507c77e835", "fields": {"departement": "75", "stop_lat": 48.84621152039148, "code_postal": "75105", "stop_lon": 2.351634626985254, "coord": [48.84621152039148, 2.351634626985254], "stop_id": 4439507, "stop_desc": "36 RUE MONGE - 75105", "stop_name": "CARDINAL LEMOINE"}, "geometry": {"type": "Point", "coordinates": [2.351634626985254, 48.84621152039148]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9fe68edbc2a76b956ef62fbaedc9de4a1c1a920e", "fields": {"departement": "75", "stop_lat": 48.84353318485999, "code_postal": "75105", "stop_lon": 2.3520832346079663, "coord": [48.84353318485999, 2.3520832346079663], "stop_id": 4439509, "stop_desc": "68 RUE MONGE - 75105", "stop_name": "MONGE"}, "geometry": {"type": "Point", "coordinates": [2.3520832346079663, 48.84353318485999]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "09db872b384da6931e7766d71a1252418f64f753", "fields": {"departement": "75", "stop_lat": 48.83891375330678, "code_postal": "75105", "stop_lon": 2.350679522020371, "coord": [48.83891375330678, 2.350679522020371], "stop_id": 4439513, "stop_desc": "118 RUE MONGE - 75105", "stop_name": "MONGE - CLAUDE BERNARD"}, "geometry": {"type": "Point", "coordinates": [2.350679522020371, 48.83891375330678]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c0835915778022b93ede45efb8a4a48852574316", "fields": {"departement": "75", "stop_lat": 48.8263661608696, "code_postal": "75113", "stop_lon": 2.357073993586242, "coord": [48.8263661608696, 2.357073993586242], "stop_id": 4439522, "stop_desc": "92-94 AVENUE D'ITALIE - 75113", "stop_name": "ITALIE - TOLBIAC"}, "geometry": {"type": "Point", "coordinates": [2.357073993586242, 48.8263661608696]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "59275c795c30ebe9bb318e380e0af66840c331ac", "fields": {"departement": "75", "stop_lat": 48.81843859863193, "code_postal": "75113", "stop_lon": 2.359493561653259, "coord": [48.81843859863193, 2.359493561653259], "stop_id": 4439528, "stop_desc": "AVENUE DE LA PORTE D'ITALIE - 75113", "stop_name": "PORTE D'ITALIE - HELENE BOUCHER"}, "geometry": {"type": "Point", "coordinates": [2.359493561653259, 48.81843859863193]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "490535264146c59bb27e62c2e064042309ed83b3", "fields": {"departement": "75", "stop_lat": 48.818519431681594, "code_postal": "75113", "stop_lon": 2.359793018671695, "coord": [48.818519431681594, 2.359793018671695], "stop_id": 4439529, "stop_desc": "AVENUE DE LA PORTE D'ITALIE - 75113", "stop_name": "PORTE D'ITALIE - HELENE BOUCHER"}, "geometry": {"type": "Point", "coordinates": [2.359793018671695, 48.818519431681594]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9c3880aa9bd3f05417edfe8bdc3d6bb29f11f322", "fields": {"departement": "94", "stop_lat": 48.804830185116614, "code_postal": "94076", "stop_lon": 2.364086735660601, "coord": [48.804830185116614, 2.364086735660601], "stop_id": 4439537, "stop_desc": "AVENUE DE PARIS - 94076", "stop_name": "DAUPHIN - ANATOLE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.364086735660601, 48.804830185116614]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "835722758fd510a4e965b574c47ab0bec888efe2", "fields": {"departement": "94", "stop_lat": 48.78757278336037, "code_postal": "94076", "stop_lon": 2.3670022487935434, "coord": [48.78757278336037, 2.3670022487935434], "stop_id": 4439548, "stop_desc": "7 AVENUE DE STALINGRAD - 94076", "stop_name": "VILLEJUIF - LOUIS ARAGON"}, "geometry": {"type": "Point", "coordinates": [2.3670022487935434, 48.78757278336037]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "97c61327f945df22f925df4779b0a6dbe7688c7a", "fields": {"departement": "94", "stop_lat": 48.78317761347435, "code_postal": "94076", "stop_lon": 2.367258147487291, "coord": [48.78317761347435, 2.367258147487291], "stop_id": 4439550, "stop_desc": "67 AVENUE DE STALINGRAD - 94076", "stop_name": "LAMARTINE"}, "geometry": {"type": "Point", "coordinates": [2.367258147487291, 48.78317761347435]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1d59b7a10c186ee396bb4f602eeae4fb0f77c42e", "fields": {"departement": "94", "stop_lat": 48.77982512725138, "code_postal": "94021", "stop_lon": 2.3671474111380566, "coord": [48.77982512725138, 2.3671474111380566], "stop_id": 4439551, "stop_desc": "AVENUE STALINGRAD - 94021", "stop_name": "DOMAINE CHERIOUX"}, "geometry": {"type": "Point", "coordinates": [2.3671474111380566, 48.77982512725138]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1b3254fe5f64fe020189797e024ab95ed1df1251", "fields": {"departement": "94", "stop_lat": 48.76829332558924, "code_postal": "94021", "stop_lon": 2.3677934294587164, "coord": [48.76829332558924, 2.3677934294587164], "stop_id": 4439553, "stop_desc": "240 AVENUE DE STALINGRAD - 94021", "stop_name": "BRETAGNE"}, "geometry": {"type": "Point", "coordinates": [2.3677934294587164, 48.76829332558924]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "da36048af5bae60b47347ba689c48d0c5371f0cc", "fields": {"departement": "94", "stop_lat": 48.759647325903956, "code_postal": "94021", "stop_lon": 2.3655724136005585, "coord": [48.759647325903956, 2.3655724136005585], "stop_id": 4439558, "stop_desc": "RUE DE THIAIS - 94021", "stop_name": "PORTE DE THIAIS"}, "geometry": {"type": "Point", "coordinates": [2.3655724136005585, 48.759647325903956]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9f6678c8928e26c4d64c8eb6c84439ae8ab803e3", "fields": {"departement": "94", "stop_lat": 48.75908996737717, "code_postal": "94021", "stop_lon": 2.3659663516074483, "coord": [48.75908996737717, 2.3659663516074483], "stop_id": 4439559, "stop_desc": "RUE DE THIAIS - 94021", "stop_name": "PORTE DE THIAIS"}, "geometry": {"type": "Point", "coordinates": [2.3659663516074483, 48.75908996737717]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "080bf7b61fd531d603631734bbaddef8179ebdc4", "fields": {"departement": "94", "stop_lat": 48.761178081740965, "code_postal": "94021", "stop_lon": 2.349177570277524, "coord": [48.761178081740965, 2.349177570277524], "stop_id": 4439566, "stop_desc": "AVENUE DU LYONNAIS - 94021", "stop_name": "VIADUC"}, "geometry": {"type": "Point", "coordinates": [2.349177570277524, 48.761178081740965]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a848a9a0b125ed80b45ff698e30689a3886cb328", "fields": {"departement": "94", "stop_lat": 48.764862757592766, "code_postal": "94021", "stop_lon": 2.3530125029203894, "coord": [48.764862757592766, 2.3530125029203894], "stop_id": 4439570, "stop_desc": "AVENUE DES MARAICHERS - 94021", "stop_name": "CHATEAURENARD"}, "geometry": {"type": "Point", "coordinates": [2.3530125029203894, 48.764862757592766]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2f4c295e92c71d0b96ac06e121d98c3b7b30dc21", "fields": {"departement": "94", "stop_lat": 48.75820119073097, "code_postal": "94065", "stop_lon": 2.361235040376766, "coord": [48.75820119073097, 2.361235040376766], "stop_id": 4439573, "stop_desc": "RUE DU JOUR - 94065", "stop_name": "RUE DE LA BRESSE"}, "geometry": {"type": "Point", "coordinates": [2.361235040376766, 48.75820119073097]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "741e9c787e461f9750cf0b926d4d78a234d13ad2", "fields": {"departement": "94", "stop_lat": 48.75564686768566, "code_postal": "94065", "stop_lon": 2.3685064604060053, "coord": [48.75564686768566, 2.3685064604060053], "stop_id": 4439574, "stop_desc": "AVENUE DE FONTAINEBLEAU - 94065", "stop_name": "BELLE EPINE SUD"}, "geometry": {"type": "Point", "coordinates": [2.3685064604060053, 48.75564686768566]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "38ad0f3e82a698a4d81c2e89233d11cd7dfd932d", "fields": {"departement": "94", "stop_lat": 48.734946454964906, "code_postal": "94054", "stop_lon": 2.3704371330916256, "coord": [48.734946454964906, 2.3704371330916256], "stop_id": 4439580, "stop_desc": "AVENUE DE L'UNION - 94054", "stop_name": "COEUR D'ORLY"}, "geometry": {"type": "Point", "coordinates": [2.3704371330916256, 48.734946454964906]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ae7eec464eeebda2ad39fdf53b23a6843c117291", "fields": {"departement": "94", "stop_lat": 48.72897837633657, "code_postal": "94054", "stop_lon": 2.3698355106261935, "coord": [48.72897837633657, 2.3698355106261935], "stop_id": 4439582, "stop_desc": "AEROPORT D'ORLY-SUD - 94054", "stop_name": "ORLY SUD"}, "geometry": {"type": "Point", "coordinates": [2.3698355106261935, 48.72897837633657]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e593e346f616a6843c699ec944e7ce365655a2cc", "fields": {"departement": "91", "stop_lat": 48.71541433978244, "code_postal": "91027", "stop_lon": 2.3718101496357558, "coord": [48.71541433978244, 2.3718101496357558], "stop_id": 4439584, "stop_desc": "PISTE GARE ROUTIERE - 91027", "stop_name": "PORTE DE L'ESSONNE"}, "geometry": {"type": "Point", "coordinates": [2.3718101496357558, 48.71541433978244]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cd63dbd8502fde8328b4714aa4e3cdab0983afd5", "fields": {"departement": "91", "stop_lat": 48.708322622460564, "code_postal": "91479", "stop_lon": 2.3711942807962907, "coord": [48.708322622460564, 2.3711942807962907], "stop_id": 4439586, "stop_desc": "BOULEVARD DE FONTAINEBLEAU - 91479", "stop_name": "ARISTIDE BRIAND"}, "geometry": {"type": "Point", "coordinates": [2.3711942807962907, 48.708322622460564]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2cd7b393ec506b987662e3efffd41da6c48dcae3", "fields": {"departement": "91", "stop_lat": 48.70667758834862, "code_postal": "91027", "stop_lon": 2.3716821178952556, "coord": [48.70667758834862, 2.3716821178952556], "stop_id": 4439588, "stop_desc": "AVENUE FRANCOIS MITTERRAND - 91027", "stop_name": "BELLE ETOILE"}, "geometry": {"type": "Point", "coordinates": [2.3716821178952556, 48.70667758834862]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "12d45b003c0f51244b12db4a1816c9b7504a6cbb", "fields": {"departement": "91", "stop_lat": 48.700754181010744, "code_postal": "91027", "stop_lon": 2.3715967220092815, "coord": [48.700754181010744, 2.3715967220092815], "stop_id": 4439591, "stop_desc": "FACE 36 AVENUE FRANCOIS MITTERRAND - 91027", "stop_name": "MARCHE DES GRAVILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.3715967220092815, 48.700754181010744]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7759ec8bc4b01a39ee7198629a6ea1ebf9ad88e2", "fields": {"departement": "91", "stop_lat": 48.70090685562848, "code_postal": "91027", "stop_lon": 2.372044941023077, "coord": [48.70090685562848, 2.372044941023077], "stop_id": 4439592, "stop_desc": "46 AVENUE FRANCOIS MITTERRAND - 91027", "stop_name": "MARCHE DES GRAVILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.372044941023077, 48.70090685562848]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1c4afc66962b3aa14e4313694625d59ee60bbf91", "fields": {"departement": "91", "stop_lat": 48.69752730488461, "code_postal": "91326", "stop_lon": 2.3715538565357037, "coord": [48.69752730488461, 2.3715538565357037], "stop_id": 4439593, "stop_desc": "105 AVENUE DE LA COUR DE FRANCE - 91326", "stop_name": "PYRAMIDE DE JUVISY"}, "geometry": {"type": "Point", "coordinates": [2.3715538565357037, 48.69752730488461]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "47e987b42b3370ef59c8c5cb3aa1cbd373b334f4", "fields": {"departement": "91", "stop_lat": 48.695370053417975, "code_postal": "91326", "stop_lon": 2.371538856451079, "coord": [48.695370053417975, 2.371538856451079], "stop_id": 4439595, "stop_desc": "40 BIS AVENUE DE LA COUR DE FRANCE - 91326", "stop_name": "OBSERVATOIRE CAMILLE FLAMMARION"}, "geometry": {"type": "Point", "coordinates": [2.371538856451079, 48.695370053417975]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "976b63f38b7f4e72e69db1611808402508b1d8f5", "fields": {"departement": "91", "stop_lat": 48.691685042643485, "code_postal": "91326", "stop_lon": 2.370450273624753, "coord": [48.691685042643485, 2.370450273624753], "stop_id": 4439596, "stop_desc": "FACE 28 AVENUE DE LA COUR DE FRANCE - 91326", "stop_name": "MAIRIE DE JUVISY"}, "geometry": {"type": "Point", "coordinates": [2.370450273624753, 48.691685042643485]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d417a72d41487fe49886aadbefa5ae511296b0b9", "fields": {"departement": "91", "stop_lat": 48.69121600148547, "code_postal": "91326", "stop_lon": 2.375853545289377, "coord": [48.69121600148547, 2.375853545289377], "stop_id": 4439600, "stop_desc": "R DU MARECHAL JUIN - 91326", "stop_name": "MARCHE DE JUVISY"}, "geometry": {"type": "Point", "coordinates": [2.375853545289377, 48.69121600148547]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0a1b9bad7f2c85062b31c6de9f1e22f64b0492d0", "fields": {"departement": "75", "stop_lat": 48.874062503585236, "code_postal": "75110", "stop_lon": 2.3583048250119405, "coord": [48.874062503585236, 2.3583048250119405], "stop_id": 4036863, "stop_desc": "119 RUE DU FAUBOURG SAINT-MARTIN - 75110", "stop_name": "MAGENTA - SAINT-MARTIN"}, "geometry": {"type": "Point", "coordinates": [2.3583048250119405, 48.874062503585236]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5e669fa068d45d988179dbe61e867abb5ad0ecc6", "fields": {"departement": "75", "stop_lat": 48.84028960403854, "code_postal": "75106", "stop_lon": 2.336492195010898, "coord": [48.84028960403854, 2.336492195010898], "stop_id": 4036877, "stop_desc": "18 AVENUE DE L'OBSERVATOIRE - 75106", "stop_name": "OBSERVATOIRE - PORT ROYAL"}, "geometry": {"type": "Point", "coordinates": [2.336492195010898, 48.84028960403854]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "db0e362bf7ce072137b1b39ad762a607f00b7b70", "fields": {"departement": "75", "stop_lat": 48.83377347264631, "code_postal": "75114", "stop_lon": 2.3314414561924695, "coord": [48.83377347264631, 2.3314414561924695], "stop_id": 4036885, "stop_desc": "30 PLACE DENFERT ROCHEREAU - 75114", "stop_name": "DENFERT-ROCHEREAU"}, "geometry": {"type": "Point", "coordinates": [2.3314414561924695, 48.83377347264631]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8a942794e6b640cf0c00399f6d263239edbcf323", "fields": {"departement": "75", "stop_lat": 48.82688858812294, "code_postal": "75114", "stop_lon": 2.3262695521776147, "coord": [48.82688858812294, 2.3262695521776147], "stop_id": 4036889, "stop_desc": "96 AVENUE DU GENERAL LECLERC - 75114", "stop_name": "ALESIA - GENERAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.3262695521776147, 48.82688858812294]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ff4962430d753c219b5ea4159c691e0c680d48f8", "fields": {"departement": "75", "stop_lat": 48.82356309968058, "code_postal": "75114", "stop_lon": 2.3256985758622, "coord": [48.82356309968058, 2.3256985758622], "stop_id": 4036892, "stop_desc": "123 AVENUE DU GENERAL LECLERC - 75114", "stop_name": "PORTE D'ORLEANS"}, "geometry": {"type": "Point", "coordinates": [2.3256985758622, 48.82356309968058]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9d4e2feb25864f68f3a32847591f554f077e076c", "fields": {"departement": "92", "stop_lat": 48.81817044569001, "code_postal": "92049", "stop_lon": 2.3253050858161446, "coord": [48.81817044569001, 2.3253050858161446], "stop_id": 4036894, "stop_desc": "52 AVENUE ARISTIDE BRIAND - 92049", "stop_name": "GABRIEL PERI"}, "geometry": {"type": "Point", "coordinates": [2.3253050858161446, 48.81817044569001]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a4237a2703736b47bd556fc5c97a0e6247bdf7ef", "fields": {"departement": "92", "stop_lat": 48.78596594872719, "code_postal": "92014", "stop_lon": 2.3170563365355727, "coord": [48.78596594872719, 2.3170563365355727], "stop_id": 4036906, "stop_desc": "12 BOULEVARD DU MARECHAL JOFFRE - 92014", "stop_name": "PLACE DE LA RESISTANCE - CHARLES DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.3170563365355727, 48.78596594872719]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "85587abfe404cd8b83bbdd88536ae5219b3b84f9", "fields": {"departement": "92", "stop_lat": 48.77713929852077, "code_postal": "92014", "stop_lon": 2.3145031060719545, "coord": [48.77713929852077, 2.3145031060719545], "stop_id": 4036911, "stop_desc": "131 AVENUE DU GENERAL LECLERC - 92014", "stop_name": "PETIT CHAMBORD - LYCEE LAKANAL"}, "geometry": {"type": "Point", "coordinates": [2.3145031060719545, 48.77713929852077]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5bc2b506ef93815c1521f530ea6741c1c40d4e73", "fields": {"departement": "94", "stop_lat": 48.79940373893161, "code_postal": "94016", "stop_lon": 2.323241429194633, "coord": [48.79940373893161, 2.323241429194633], "stop_id": 4036917, "stop_desc": "43 AVENUE ARISTIDE BRIAND - 94016", "stop_name": "CARNOT - ARISTIDE BRIAND"}, "geometry": {"type": "Point", "coordinates": [2.323241429194633, 48.79940373893161]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2ff05671f83af2ec30bafb1d29b4cb87010264ab", "fields": {"departement": "75", "stop_lat": 48.85234167570838, "code_postal": "75105", "stop_lon": 2.343778173799205, "coord": [48.85234167570838, 2.343778173799205], "stop_id": 4036927, "stop_desc": "7 BOULEVARD SAINT-MICHEL - 75105", "stop_name": "SAINT-MICHEL - SAINT-GERMAIN"}, "geometry": {"type": "Point", "coordinates": [2.343778173799205, 48.85234167570838]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e8f63ad28309fc9e3531793222200aeb601d8906", "fields": {"departement": "75", "stop_lat": 48.863997699201235, "code_postal": "75103", "stop_lon": 2.351407984903802, "coord": [48.863997699201235, 2.351407984903802], "stop_id": 4036930, "stop_desc": "66 BOULEVARD DE SEBASTOPOL - 75103", "stop_name": "TURBIGO - ETIENNE MARCEL"}, "geometry": {"type": "Point", "coordinates": [2.351407984903802, 48.863997699201235]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c63b14d0b1ef25b9f85f45447e0487ef26635f4b", "fields": {"departement": "92", "stop_lat": 48.93411578075715, "code_postal": "92078", "stop_lon": 2.329220435588622, "coord": [48.93411578075715, 2.329220435588622], "stop_id": 4016818, "stop_desc": "RUE DU FOND DE LA NOUE - 92078", "stop_name": "LA NOUE"}, "geometry": {"type": "Point", "coordinates": [2.329220435588622, 48.93411578075715]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "44ac62ef42d7cba4777e68c13a19274d29f0073a", "fields": {"departement": "92", "stop_lat": 48.938600131238424, "code_postal": "92078", "stop_lon": 2.3280601979253177, "coord": [48.938600131238424, 2.3280601979253177], "stop_id": 4016821, "stop_desc": "AVENUE PIERRE DE COUBERTIN - 92078", "stop_name": "STADE DE VILLENEUVE-LA-GARENNE"}, "geometry": {"type": "Point", "coordinates": [2.3280601979253177, 48.938600131238424]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "afa3d37331b0eab063c93630fdf797fc67007f32", "fields": {"departement": "92", "stop_lat": 48.94027159515581, "code_postal": "92078", "stop_lon": 2.3270231007772355, "coord": [48.94027159515581, 2.3270231007772355], "stop_id": 4016823, "stop_desc": "AVENUE PAUL HERBE - 92078", "stop_name": "PLACE PAUL HERBE"}, "geometry": {"type": "Point", "coordinates": [2.3270231007772355, 48.94027159515581]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f002dcf686b783e86eb2171b79bf3405c1ac7b52", "fields": {"departement": "92", "stop_lat": 48.940136817180864, "code_postal": "92078", "stop_lon": 2.327309610971121, "coord": [48.940136817180864, 2.327309610971121], "stop_id": 4016824, "stop_desc": "AVENUE PAUL HERBE - 92078", "stop_name": "PLACE PAUL HERBE"}, "geometry": {"type": "Point", "coordinates": [2.327309610971121, 48.940136817180864]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "84b855afae58c80c3e2222798a4b817794e8c556", "fields": {"departement": "92", "stop_lat": 48.94275078777386, "code_postal": "92078", "stop_lon": 2.31769096078661, "coord": [48.94275078777386, 2.31769096078661], "stop_id": 4016830, "stop_desc": "FACE 270 BOULEVARD CHARLES DE GAULLE - 92078", "stop_name": "ZONE INDUSTRIELLE NORD"}, "geometry": {"type": "Point", "coordinates": [2.31769096078661, 48.94275078777386]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0c6033dc7729aeadfb49cfd38843aeaded8e7f34", "fields": {"departement": "92", "stop_lat": 48.93591328416226, "code_postal": "92078", "stop_lon": 2.331525479232926, "coord": [48.93591328416226, 2.331525479232926], "stop_id": 4016832, "stop_desc": "13 RUE DUPONT DU CHAMBON - 92078", "stop_name": "MAIRIE DE VILLENEUVE-LA-GARENNE"}, "geometry": {"type": "Point", "coordinates": [2.331525479232926, 48.93591328416226]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "115278ddd9ea36ce9fd0f9b477d792e06d892cd9", "fields": {"departement": "92", "stop_lat": 48.92022021800422, "code_postal": "92036", "stop_lon": 2.315040288490281, "coord": [48.92022021800422, 2.315040288490281], "stop_id": 4016834, "stop_desc": "243 AV DES GRESILLONS - 92036", "stop_name": "LES GRESILLONS RER"}, "geometry": {"type": "Point", "coordinates": [2.315040288490281, 48.92022021800422]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "808066d43cd7d0bb1b830203e9c72c63e9710a79", "fields": {"departement": "92", "stop_lat": 48.91603867014468, "code_postal": "92036", "stop_lon": 2.3038744196745444, "coord": [48.91603867014468, 2.3038744196745444], "stop_id": 4016838, "stop_desc": "89 AVENUE DES GRESILLONS - 92036", "stop_name": "CITE JARDINS"}, "geometry": {"type": "Point", "coordinates": [2.3038744196745444, 48.91603867014468]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c1f32bb80a2172f2f1bbaf5caebd2e55d4b3058b", "fields": {"departement": "93", "stop_lat": 48.93607490784451, "code_postal": "93066", "stop_lon": 2.3453847216029224, "coord": [48.93607490784451, 2.3453847216029224], "stop_id": 4016997, "stop_desc": "RUE COIGNET - 93066", "stop_name": "SAINT-DENIS RER"}, "geometry": {"type": "Point", "coordinates": [2.3453847216029224, 48.93607490784451]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3723ab031201d8856d54980d421982bd57435b23", "fields": {"departement": "93", "stop_lat": 48.932642067219156, "code_postal": "93066", "stop_lon": 2.3429971651227643, "coord": [48.932642067219156, 2.3429971651227643], "stop_id": 4017000, "stop_desc": "55-57 RUE CHARLES MICHELS - 93066", "stop_name": "PLACE JEAN POULMARCH"}, "geometry": {"type": "Point", "coordinates": [2.3429971651227643, 48.932642067219156]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "53fa559b48213d38faf27ab34d70b8ec7eb03d05", "fields": {"departement": "93", "stop_lat": 48.9260547266508, "code_postal": "93066", "stop_lon": 2.341755343428782, "coord": [48.9260547266508, 2.341755343428782], "stop_id": 4017003, "stop_desc": "FACE 57 BOULEVARD DE LA LIBERATION - 93066", "stop_name": "JULES GENOVESI"}, "geometry": {"type": "Point", "coordinates": [2.341755343428782, 48.9260547266508]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3bf77434aa05db2cd524b6b6e06a768fc5733968", "fields": {"departement": "93", "stop_lat": 48.92644115676705, "code_postal": "93066", "stop_lon": 2.341946315550526, "coord": [48.92644115676705, 2.341946315550526], "stop_id": 4017004, "stop_desc": "51 BOULEVARD DE LA LIBERATION - 93066", "stop_name": "JULES GENOVESI"}, "geometry": {"type": "Point", "coordinates": [2.341946315550526, 48.92644115676705]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b2b0dfaa4dc834a22127340567f25aca6c5f5a4f", "fields": {"departement": "93", "stop_lat": 48.919449277149965, "code_postal": "93066", "stop_lon": 2.3428320628378376, "coord": [48.919449277149965, 2.3428320628378376], "stop_id": 4017007, "stop_desc": "FACE 167 BOULEVARD ANATOLE FRANCE - 93066", "stop_name": "CARREFOUR PLEYEL"}, "geometry": {"type": "Point", "coordinates": [2.3428320628378376, 48.919449277149965]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4c9d53e5a199f9a2105d4be25139346bcd3bc1e5", "fields": {"departement": "93", "stop_lat": 48.91129810539569, "code_postal": "93070", "stop_lon": 2.332523518059746, "coord": [48.91129810539569, 2.332523518059746], "stop_id": 4017013, "stop_desc": "2 BOULEVARD VICTOR HUGO - 93070", "stop_name": "MAIRIE DE SAINT-OUEN"}, "geometry": {"type": "Point", "coordinates": [2.332523518059746, 48.91129810539569]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8d748b8722f2e5ddb21f906513a4e8beadb7f2b7", "fields": {"departement": "93", "stop_lat": 48.90530302155479, "code_postal": "93070", "stop_lon": 2.3233218559753235, "coord": [48.90530302155479, 2.3233218559753235], "stop_id": 4017019, "stop_desc": "131-133 BOULEVARD VICTOR HUGO - 93070", "stop_name": "SAINT-OUEN RER"}, "geometry": {"type": "Point", "coordinates": [2.3233218559753235, 48.90530302155479]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2b7a9502535658af7ac255ea3b83bcdea2a5ae9a", "fields": {"departement": "92", "stop_lat": 48.90361255737851, "code_postal": "92024", "stop_lon": 2.317078644623399, "coord": [48.90361255737851, 2.317078644623399], "stop_id": 4017021, "stop_desc": "35-37 RUE MADAME DE SANZILLON - 92024", "stop_name": "GEORGES BOISSEAU"}, "geometry": {"type": "Point", "coordinates": [2.317078644623399, 48.90361255737851]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "06b20d03b1a6da48e5132bd67f957d8f37c34271", "fields": {"departement": "92", "stop_lat": 48.9033333644882, "code_postal": "92024", "stop_lon": 2.3138342457048426, "coord": [48.9033333644882, 2.3138342457048426], "stop_id": 4017023, "stop_desc": "8 PLACE DE LA REPUBLIQUE - 92024", "stop_name": "REPUBLIQUE - FRANCOIS MITTERRAND"}, "geometry": {"type": "Point", "coordinates": [2.3138342457048426, 48.9033333644882]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f26d8c834d9664d57ab9e9c8e01100e54ece9ec2", "fields": {"departement": "92", "stop_lat": 48.89836959432655, "code_postal": "92024", "stop_lon": 2.3020864983776312, "coord": [48.89836959432655, 2.3020864983776312], "stop_id": 4017030, "stop_desc": "17 RUE HENRI BARBUSSE - 92024", "stop_name": "CHANCE - MILLY"}, "geometry": {"type": "Point", "coordinates": [2.3020864983776312, 48.89836959432655]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9c43cdcc3f4168502589e8c9cdcbf16365d0f1f6", "fields": {"departement": "92", "stop_lat": 48.89281222932453, "code_postal": "92044", "stop_lon": 2.2922496846244274, "coord": [48.89281222932453, 2.2922496846244274], "stop_id": 4017037, "stop_desc": "108-110 RUE LOUIS ROUQUIER - 92044", "stop_name": "MARJOLIN"}, "geometry": {"type": "Point", "coordinates": [2.2922496846244274, 48.89281222932453]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1b85e39260db2d00fa556818efa940f0a533f911", "fields": {"departement": "92", "stop_lat": 48.89120071647459, "code_postal": "92044", "stop_lon": 2.2853410817006194, "coord": [48.89120071647459, 2.2853410817006194], "stop_id": 4017040, "stop_desc": "47 RUE ARISTIDE BRIAND - 92044", "stop_name": "ANATOLE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.2853410817006194, 48.89120071647459]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e95ca17f5ab13d73ec53ba316861a44d426e5585", "fields": {"departement": "92", "stop_lat": 48.88999397455755, "code_postal": "92044", "stop_lon": 2.2799725120054224, "coord": [48.88999397455755, 2.2799725120054224], "stop_id": 4017042, "stop_desc": "52 RUE DE VILLIERS - 92044", "stop_name": "VOLTAIRE - VILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.2799725120054224, 48.88999397455755]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0f77d5dd7e4bf77c4e767a8cdce5c36b57510739", "fields": {"departement": "93", "stop_lat": 48.91549513003909, "code_postal": "93066", "stop_lon": 2.3383182584232243, "coord": [48.91549513003909, 2.3383182584232243], "stop_id": 4017050, "stop_desc": "235 BOULEVARD ANATOLE FRANCE - 93066", "stop_name": "LANDY-JAURES"}, "geometry": {"type": "Point", "coordinates": [2.3383182584232243, 48.91549513003909]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7059863fb77558c5d28850db77135deaf7e59f7a", "fields": {"departement": "92", "stop_lat": 48.92907101340634, "code_postal": "92036", "stop_lon": 2.3087761177018753, "coord": [48.92907101340634, 2.3087761177018753], "stop_id": 4017054, "stop_desc": "135-143 R DU FOSSE BLANC - 92036", "stop_name": "MOULIN DE CAGE"}, "geometry": {"type": "Point", "coordinates": [2.3087761177018753, 48.92907101340634]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dbcc8db9a67374f15b10c110e041e9b4f1551d3a", "fields": {"departement": "92", "stop_lat": 48.92474809023152, "code_postal": "92036", "stop_lon": 2.3078783851646083, "coord": [48.92474809023152, 2.3078783851646083], "stop_id": 4017056, "stop_desc": "R DES CABOEUFS - 92036", "stop_name": "FOSSE BLANC"}, "geometry": {"type": "Point", "coordinates": [2.3078783851646083, 48.92474809023152]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4cb4e4639a6a67836dd1801a986f7c13f2878f93", "fields": {"departement": "92", "stop_lat": 48.92200852461746, "code_postal": "92036", "stop_lon": 2.314521304142005, "coord": [48.92200852461746, 2.314521304142005], "stop_id": 4017058, "stop_desc": "R DES CABOEUFS - 92036", "stop_name": "OLYMPE DE COUGES"}, "geometry": {"type": "Point", "coordinates": [2.314521304142005, 48.92200852461746]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "55676acda6a309e80e4bac862d1c70d048caa672", "fields": {"departement": "92", "stop_lat": 48.91642687263316, "code_postal": "92004", "stop_lon": 2.3109102584039136, "coord": [48.91642687263316, 2.3109102584039136], "stop_id": 4017061, "stop_desc": "FACE 2 R LOUIS ARMAND - 92004", "stop_name": "LOUIS ARMAND"}, "geometry": {"type": "Point", "coordinates": [2.3109102584039136, 48.91642687263316]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cf15ce9274b7ec2db869975023d7e20366b007e7", "fields": {"departement": "75", "stop_lat": 48.867842706224465, "code_postal": "75108", "stop_lon": 2.3132099917230624, "coord": [48.867842706224465, 2.3132099917230624], "stop_id": 4022891, "stop_desc": "AVENUE DES CHAMPS ELYSEES - 75108", "stop_name": "CHAMPS-ELYSEES - CLEMENCEAU"}, "geometry": {"type": "Point", "coordinates": [2.3132099917230624, 48.867842706224465]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "39db1a797db597e7f5c4206d4ad83dee6b6de1b3", "fields": {"departement": "75", "stop_lat": 48.8759239102111, "code_postal": "75117", "stop_lon": 2.288898925441744, "coord": [48.8759239102111, 2.288898925441744], "stop_id": 4022901, "stop_desc": "40 AVENUE DE LA GRANDE ARMEE - 75117", "stop_name": "ARGENTINE"}, "geometry": {"type": "Point", "coordinates": [2.288898925441744, 48.8759239102111]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "977f3738729ee7ccf599acc8d9776e40b3a8a30c", "fields": {"departement": "92", "stop_lat": 48.88056374397198, "code_postal": "92051", "stop_lon": 2.2747367679822643, "coord": [48.88056374397198, 2.2747367679822643], "stop_id": 4022904, "stop_desc": "44 AVENUE CHARLES DE GAULLE - 92051", "stop_name": "MARCHE DE NEUILLY-SUR-SEINE"}, "geometry": {"type": "Point", "coordinates": [2.2747367679822643, 48.88056374397198]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8fe6f41824611e2dd190c1ea9c2501ff311b7990", "fields": {"departement": "92", "stop_lat": 48.889975774020385, "code_postal": "92026", "stop_lon": 2.249961745288486, "coord": [48.889975774020385, 2.249961745288486], "stop_id": 4022915, "stop_desc": "BOULEVARD CIRCULAIRE (SUR PISTE) - 92026", "stop_name": "ALSACE"}, "geometry": {"type": "Point", "coordinates": [2.249961745288486, 48.889975774020385]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1423e544e2c251290cc895491461ee872f2f498b", "fields": {"departement": "92", "stop_lat": 48.89160141473085, "code_postal": "92062", "stop_lon": 2.2372019748450263, "coord": [48.89160141473085, 2.2372019748450263], "stop_id": 4022917, "stop_desc": "PISTE GARE ROUTIERE - 92062", "stop_name": "LA DEFENSE-METRO-RER-TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.2372019748450263, 48.89160141473085]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8dbd2ef708216661fde82891b82e5c567156599f", "fields": {"departement": "92", "stop_lat": 48.892070266413306, "code_postal": "92062", "stop_lon": 2.239027413704417, "coord": [48.892070266413306, 2.239027413704417], "stop_id": 4022920, "stop_desc": "0 VOI PERRONET NORD - 92062", "stop_name": "LA DEFENSE-METRO-RER-TRAMWAY."}, "geometry": {"type": "Point", "coordinates": [2.239027413704417, 48.892070266413306]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6600ce570a9375f2df7bead3143e30217b182ef3", "fields": {"departement": "92", "stop_lat": 48.899076947090265, "code_postal": "92026", "stop_lon": 2.235101956278775, "coord": [48.899076947090265, 2.235101956278775], "stop_id": 4022929, "stop_desc": "35 AVENUE PUVIS DE CHAVANNES - 92026", "stop_name": "PUVIS DE CHAVANNES"}, "geometry": {"type": "Point", "coordinates": [2.235101956278775, 48.899076947090265]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fbfa942783a80dd7d248aabe27ea8309fc27aafd", "fields": {"departement": "92", "stop_lat": 48.90143464284505, "code_postal": "92035", "stop_lon": 2.238750656497377, "coord": [48.90143464284505, 2.238750656497377], "stop_id": 4022930, "stop_desc": "118 BIS AV DE L'ARCHE - 92035", "stop_name": "LES FAUVELLES"}, "geometry": {"type": "Point", "coordinates": [2.238750656497377, 48.90143464284505]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7426a2ce19b8bd065ca85509382105ca867ec1af", "fields": {"departement": "92", "stop_lat": 48.90178503810381, "code_postal": "92026", "stop_lon": 2.238627302516549, "coord": [48.90178503810381, 2.238627302516549], "stop_id": 4022935, "stop_desc": "AVENUE DE L'ARCHE - 92026", "stop_name": "LES FAUVELLES"}, "geometry": {"type": "Point", "coordinates": [2.238627302516549, 48.90178503810381]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b138dcef5eb1795b07a9472b7febd1a25847a9d1", "fields": {"departement": "92", "stop_lat": 48.88818903073687, "code_postal": "92062", "stop_lon": 2.240533894361642, "coord": [48.88818903073687, 2.240533894361642], "stop_id": 4022937, "stop_desc": "15 AVENUE JEAN MOULIN - 92062", "stop_name": "BOIELDIEU"}, "geometry": {"type": "Point", "coordinates": [2.240533894361642, 48.88818903073687]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "682739e1f76dab75877569f4af2a701ee447fa90", "fields": {"departement": "92", "stop_lat": 48.887154962379554, "code_postal": "92062", "stop_lon": 2.2515746160906414, "coord": [48.887154962379554, 2.2515746160906414], "stop_id": 4022940, "stop_desc": "BOULEVARD PIERRE GAUDIN - 92062", "stop_name": "PONT DE NEUILLY - RIVE GAUCHE"}, "geometry": {"type": "Point", "coordinates": [2.2515746160906414, 48.887154962379554]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8263f38b3364a94bda59b89cc829b8a98f6b250b", "fields": {"departement": "75", "stop_lat": 48.87797775885424, "code_postal": "75116", "stop_lon": 2.2793862572396137, "coord": [48.87797775885424, 2.2793862572396137], "stop_id": 4022941, "stop_desc": "RUE JOSEPH ET MARIE HACKIN - 75116", "stop_name": "ANDRE MAUROIS"}, "geometry": {"type": "Point", "coordinates": [2.2793862572396137, 48.87797775885424]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "def4d0043056cba731811fe0305532bf25c5aacb", "fields": {"departement": "75", "stop_lat": 48.85918035179073, "code_postal": "75107", "stop_lon": 2.322258204605786, "coord": [48.85918035179073, 2.322258204605786], "stop_id": 4022946, "stop_desc": "231 BOULEVARD SAINT GERMAIN - 75107", "stop_name": "LILLE - UNIVERSITE"}, "geometry": {"type": "Point", "coordinates": [2.322258204605786, 48.85918035179073]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c5fa1813485c7e96a7008b5c1b21dd7b0483c65b", "fields": {"departement": "75", "stop_lat": 48.86147090721628, "code_postal": "75107", "stop_lon": 2.314479734224913, "coord": [48.86147090721628, 2.314479734224913], "stop_id": 4022947, "stop_desc": "RUE ROBERT ESNAULT PELTERIE - 75107", "stop_name": "INVALIDES"}, "geometry": {"type": "Point", "coordinates": [2.314479734224913, 48.86147090721628]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "01a5fb7549b9ff5367e8979836f31cfaa369f214", "fields": {"departement": "75", "stop_lat": 48.869469015384865, "code_postal": "75108", "stop_lon": 2.3113019501850944, "coord": [48.869469015384865, 2.3113019501850944], "stop_id": 4022954, "stop_desc": "FACE 3 AVENUE MATIGNON - 75108", "stop_name": "ROND-POINT DES CHAMPS-ELYSEES - MATIGNON"}, "geometry": {"type": "Point", "coordinates": [2.3113019501850944, 48.869469015384865]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "85f7df8283d5d3282eb15edc54f9b55655df1c5c", "fields": {"departement": "75", "stop_lat": 48.87327931759563, "code_postal": "75108", "stop_lon": 2.3098558478059017, "coord": [48.87327931759563, 2.3098558478059017], "stop_id": 4022958, "stop_desc": "73 PLACE CHASSAIGNE GOYON - 75108", "stop_name": "SAINT-PHILIPPE-DU-ROULE"}, "geometry": {"type": "Point", "coordinates": [2.3098558478059017, 48.87327931759563]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e80fbac133ef93073e12a54b71340d961c6fe6c5", "fields": {"departement": "75", "stop_lat": 48.87807493981841, "code_postal": "75117", "stop_lon": 2.2971677460588693, "coord": [48.87807493981841, 2.2971677460588693], "stop_id": 4022965, "stop_desc": "2 AVENUE DES TERNES - 75117", "stop_name": "TERNES"}, "geometry": {"type": "Point", "coordinates": [2.2971677460588693, 48.87807493981841]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4e1b375443ed4681407d7ac61187f3d9eac0a8bb", "fields": {"departement": "75", "stop_lat": 48.885451744264294, "code_postal": "75117", "stop_lon": 2.2923242136225292, "coord": [48.885451744264294, 2.2923242136225292], "stop_id": 4022975, "stop_desc": "135 AVENUE DE VILLIERS - 75117", "stop_name": "PORTE DE CHAMPERRET"}, "geometry": {"type": "Point", "coordinates": [2.2923242136225292, 48.885451744264294]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3e2de72e40fa68f30de767891d381843e9e3c3c7", "fields": {"departement": "75", "stop_lat": 48.88581917791438, "code_postal": "75117", "stop_lon": 2.289639222376461, "coord": [48.88581917791438, 2.289639222376461], "stop_id": 4022977, "stop_desc": "7 PLACE DE LA PORTE DE CHAMPERRET - 75117", "stop_name": "L'YSER ET LA SOMME"}, "geometry": {"type": "Point", "coordinates": [2.289639222376461, 48.88581917791438]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a66e2a0f5840d1540087b1bc6b5161887f6ea8c7", "fields": {"departement": "92", "stop_lat": 48.890110735820386, "code_postal": "92044", "stop_lon": 2.279822464951176, "coord": [48.890110735820386, 2.279822464951176], "stop_id": 4022981, "stop_desc": "48 RUE DE VILLIERS - 92044", "stop_name": "VOLTAIRE - VILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.279822464951176, 48.890110735820386]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8bf49a2515d03493387a354020a814a05820bbbf", "fields": {"departement": "92", "stop_lat": 48.89303366058375, "code_postal": "92051", "stop_lon": 2.2669528083232815, "coord": [48.89303366058375, 2.2669528083232815], "stop_id": 4022990, "stop_desc": "62 BOULEVARD DU GENERAL LECLERC - 92051", "stop_name": "PONT DE LA GRANDE JATTE"}, "geometry": {"type": "Point", "coordinates": [2.2669528083232815, 48.89303366058375]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7b959f6949640d4e62b68b8eb8dede763d91c272", "fields": {"departement": "92", "stop_lat": 48.881336186697695, "code_postal": "92051", "stop_lon": 2.2587654552815812, "coord": [48.881336186697695, 2.2587654552815812], "stop_id": 4022996, "stop_desc": "44 AVENUE DE MADRID - 92051", "stop_name": "MAURICE BARRES"}, "geometry": {"type": "Point", "coordinates": [2.2587654552815812, 48.881336186697695]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "90c4f6b0fd994e1d997a6cc81ff0ff000c7a10b1", "fields": {"departement": "92", "stop_lat": 48.881072510051695, "code_postal": "92051", "stop_lon": 2.254269097155883, "coord": [48.881072510051695, 2.254269097155883], "stop_id": 4022998, "stop_desc": "56 RUE DE LONGCHAMP - 92051", "stop_name": "RUE DU BOIS DE BOULOGNE"}, "geometry": {"type": "Point", "coordinates": [2.254269097155883, 48.881072510051695]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5e2d1dc6a11db5a6e63e003da5785fabbdd0dce6", "fields": {"departement": "92", "stop_lat": 48.87922972282795, "code_postal": "92051", "stop_lon": 2.2536997527624316, "coord": [48.87922972282795, 2.2536997527624316], "stop_id": 4023001, "stop_desc": "5 BIS RUE DU CENTRE - 92051", "stop_name": "RUE DU CENTRE"}, "geometry": {"type": "Point", "coordinates": [2.2536997527624316, 48.87922972282795]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "564db21882fba3fdab5dfe4070a5f166b5f3758e", "fields": {"departement": "92", "stop_lat": 48.87704382500589, "code_postal": "92051", "stop_lon": 2.250910052450818, "coord": [48.87704382500589, 2.250910052450818], "stop_id": 4023002, "stop_desc": "96 RUE DE LONGCHAMP - 92051", "stop_name": "PLACE DE BAGATELLE"}, "geometry": {"type": "Point", "coordinates": [2.250910052450818, 48.87704382500589]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cd244458f063f7e3a3fffdf14c380dff9656a5a5", "fields": {"departement": "92", "stop_lat": 48.87877176305051, "code_postal": "92062", "stop_lon": 2.242227454203728, "coord": [48.87877176305051, 2.242227454203728], "stop_id": 4023003, "stop_desc": "6 BOULEVARD RICHARD WALLACE - 92062", "stop_name": "HOPITAL - PONT DE PUTEAUX"}, "geometry": {"type": "Point", "coordinates": [2.242227454203728, 48.87877176305051]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "10cc25195ba9f435899e70fb4ab518aacb68c955", "fields": {"departement": "92", "stop_lat": 48.87985477346892, "code_postal": "92062", "stop_lon": 2.2368022331566495, "coord": [48.87985477346892, 2.2368022331566495], "stop_id": 4023008, "stop_desc": "163 RUE JEAN JAURES - 92062", "stop_name": "BAS ROGERS"}, "geometry": {"type": "Point", "coordinates": [2.2368022331566495, 48.87985477346892]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "344a61dc55a5adbc0b3fe77be68e1cba8e146392", "fields": {"departement": "92", "stop_lat": 48.87780312487926, "code_postal": "92073", "stop_lon": 2.233822184072774, "coord": [48.87780312487926, 2.233822184072774], "stop_id": 4023009, "stop_desc": "3 RUE EMILE DUCLAUX - 92073", "stop_name": "DE PRESSENSE"}, "geometry": {"type": "Point", "coordinates": [2.233822184072774, 48.87780312487926]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fd294a97c099d149c21f5c5462f1d535ad4855fa", "fields": {"departement": "92", "stop_lat": 48.875671203780556, "code_postal": "92073", "stop_lon": 2.2316191674618904, "coord": [48.875671203780556, 2.2316191674618904], "stop_id": 4023010, "stop_desc": "97 RUE DE VERDUN - 92073", "stop_name": "POMPIDOU"}, "geometry": {"type": "Point", "coordinates": [2.2316191674618904, 48.875671203780556]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "542cb404b6d8306a230e8abb4a52883690a50d69", "fields": {"departement": "92", "stop_lat": 48.86904073037529, "code_postal": "92073", "stop_lon": 2.22419430917762, "coord": [48.86904073037529, 2.22419430917762], "stop_id": 4023016, "stop_desc": "AVENUE CHARLES DE GAULLE - 92073", "stop_name": "SURESNES-DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.22419430917762, 48.86904073037529]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4fa4eb29c412b256f02cbe73c7ea32bb4eab14cf", "fields": {"departement": "92", "stop_lat": 48.87616619032298, "code_postal": "92062", "stop_lon": 2.2323947983183468, "coord": [48.87616619032298, 2.2323947983183468], "stop_id": 4023020, "stop_desc": "82 RUE DE VERDUN - 92062", "stop_name": "POMPIDOU"}, "geometry": {"type": "Point", "coordinates": [2.2323947983183468, 48.87616619032298]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aedac4c5b0601e4a6359957bda1d749011c635de", "fields": {"departement": "92", "stop_lat": 48.87752468490553, "code_postal": "92062", "stop_lon": 2.234013498122189, "coord": [48.87752468490553, 2.234013498122189], "stop_id": 4023021, "stop_desc": "106 RUE DE VERDUN - 92062", "stop_name": "DE PRESSENSE"}, "geometry": {"type": "Point", "coordinates": [2.234013498122189, 48.87752468490553]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "456e5244c282a8c038afba94857cd4e929625a56", "fields": {"departement": "92", "stop_lat": 48.89157474525671, "code_postal": "92051", "stop_lon": 2.277980887806923, "coord": [48.89157474525671, 2.277980887806923], "stop_id": 4023026, "stop_desc": "57 BIS RUE DE VILLIERS - 92051", "stop_name": "HOPITAL DU PERPETUEL SECOURS"}, "geometry": {"type": "Point", "coordinates": [2.277980887806923, 48.89157474525671]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "34f0059366d899aed173d766f731e23f6abd874a", "fields": {"departement": "75", "stop_lat": 48.877545158770765, "code_postal": "75108", "stop_lon": 2.298585218601294, "coord": [48.877545158770765, 2.298585218601294], "stop_id": 4023030, "stop_desc": "237 RUE DU FAUBOURG SAINT-HONORE - 75108", "stop_name": "TERNES"}, "geometry": {"type": "Point", "coordinates": [2.298585218601294, 48.877545158770765]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "938318749e81374fca4c89f98a70e4d527e667fd", "fields": {"departement": "75", "stop_lat": 48.870259577602226, "code_postal": "75108", "stop_lon": 2.309857443429508, "coord": [48.870259577602226, 2.309857443429508], "stop_id": 4023031, "stop_desc": "49 AVENUE F.D ROOSEVELT - 75108", "stop_name": "ROND-POINT DES CHAMPS-ELYSEES - FRANKLIN D. ROOSEVELT"}, "geometry": {"type": "Point", "coordinates": [2.309857443429508, 48.870259577602226]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b66240f40fee070aa903b740a9ecb26191cd2b44", "fields": {"departement": "75", "stop_lat": 48.867842706224465, "code_postal": "75108", "stop_lon": 2.3132099917230624, "coord": [48.867842706224465, 2.3132099917230624], "stop_id": 4023032, "stop_desc": "AVENUE DES CHAMPS ELYSEES - 75108", "stop_name": "CHAMPS-ELYSEES - CLEMENCEAU"}, "geometry": {"type": "Point", "coordinates": [2.3132099917230624, 48.867842706224465]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f548d5b91d098ecececade156ca6ee70a11e78d2", "fields": {"departement": "75", "stop_lat": 48.865290361605936, "code_postal": "75108", "stop_lon": 2.313538112353421, "coord": [48.865290361605936, 2.313538112353421], "stop_id": 4023033, "stop_desc": "AVENUE WINSTON CHURCHILL - 75108", "stop_name": "GRAND PALAIS"}, "geometry": {"type": "Point", "coordinates": [2.313538112353421, 48.865290361605936]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2434cdf3568f7d7c99b375e9d8123770c2672196", "fields": {"departement": "75", "stop_lat": 48.86282731865924, "code_postal": "75107", "stop_lon": 2.3111418130628483, "coord": [48.86282731865924, 2.3111418130628483], "stop_id": 4023036, "stop_desc": "FACE 41 QUAI D'ORSAY - 75107", "stop_name": "PONT DES INVALIDES - PLACE DE FINLANDE"}, "geometry": {"type": "Point", "coordinates": [2.3111418130628483, 48.86282731865924]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3753f8258904516a9f6a86414511b0d873b0cf6f", "fields": {"departement": "75", "stop_lat": 48.87369358750886, "code_postal": "75108", "stop_lon": 2.313861258840092, "coord": [48.87369358750886, 2.313861258840092], "stop_id": 4023041, "stop_desc": "44 RUE LA BOETIE - 75108", "stop_name": "LA BOETIE - PERCIER"}, "geometry": {"type": "Point", "coordinates": [2.313861258840092, 48.87369358750886]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1b22ec95597313e7a737d739caac93d6218d5615", "fields": {"departement": "75", "stop_lat": 48.873180525721516, "code_postal": "75108", "stop_lon": 2.310155638063019, "coord": [48.873180525721516, 2.310155638063019], "stop_id": 4023042, "stop_desc": "FACE 1 AVENUE MYRON-T.HERRICK - 75108", "stop_name": "SAINT-PHILIPPE-DU-ROULE"}, "geometry": {"type": "Point", "coordinates": [2.310155638063019, 48.873180525721516]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "59de239c2419f6380f62a89b4ca3abd73bf0ccf3", "fields": {"departement": "75", "stop_lat": 48.87807493981841, "code_postal": "75117", "stop_lon": 2.2971677460588693, "coord": [48.87807493981841, 2.2971677460588693], "stop_id": 4023046, "stop_desc": "2 AVENUE DES TERNES - 75117", "stop_name": "TERNES"}, "geometry": {"type": "Point", "coordinates": [2.2971677460588693, 48.87807493981841]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f2e7f8c0223ec8695ff501792e931e59c37e56fa", "fields": {"departement": "92", "stop_lat": 48.890110735820386, "code_postal": "92044", "stop_lon": 2.279822464951176, "coord": [48.890110735820386, 2.279822464951176], "stop_id": 4023056, "stop_desc": "48 RUE DE VILLIERS - 92044", "stop_name": "VOLTAIRE - VILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.279822464951176, 48.890110735820386]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1c201e699157073832ebaa70edaaa3cd383f0c09", "fields": {"departement": "92", "stop_lat": 48.89601180102115, "code_postal": "92051", "stop_lon": 2.2729598026983204, "coord": [48.89601180102115, 2.2729598026983204], "stop_id": 4023060, "stop_desc": "100 BOULEVARD VICTOR HUGO - 92051", "stop_name": "VILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.2729598026983204, 48.89601180102115]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2453e31439624a3c818048c008ad6553a322a7eb", "fields": {"departement": "92", "stop_lat": 48.87616619032298, "code_postal": "92062", "stop_lon": 2.2323947983183468, "coord": [48.87616619032298, 2.2323947983183468], "stop_id": 4023069, "stop_desc": "82 RUE DE VERDUN - 92062", "stop_name": "POMPIDOU"}, "geometry": {"type": "Point", "coordinates": [2.2323947983183468, 48.87616619032298]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3dfcdf0910ee45d2051dc9691bdeb7671d33d7df", "fields": {"departement": "92", "stop_lat": 48.87985477346892, "code_postal": "92062", "stop_lon": 2.2368022331566495, "coord": [48.87985477346892, 2.2368022331566495], "stop_id": 4023072, "stop_desc": "163 RUE JEAN JAURES - 92062", "stop_name": "BAS ROGERS"}, "geometry": {"type": "Point", "coordinates": [2.2368022331566495, 48.87985477346892]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8d34ed8e5e33990a89ef59d7ec79a1f8161d62ac", "fields": {"departement": "92", "stop_lat": 48.87922972282795, "code_postal": "92051", "stop_lon": 2.2536997527624316, "coord": [48.87922972282795, 2.2536997527624316], "stop_id": 4023076, "stop_desc": "5 BIS RUE DU CENTRE - 92051", "stop_name": "RUE DU CENTRE"}, "geometry": {"type": "Point", "coordinates": [2.2536997527624316, 48.87922972282795]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "29b6a57290d14fd20349ca246451e4b45a57e5bb", "fields": {"departement": "92", "stop_lat": 48.88555130589665, "code_postal": "92051", "stop_lon": 2.258922605272076, "coord": [48.88555130589665, 2.258922605272076], "stop_id": 4023079, "stop_desc": "176 AVENUE CHARLES DE GAULLE - 92051", "stop_name": "PONT DE NEUILLY-METRO"}, "geometry": {"type": "Point", "coordinates": [2.258922605272076, 48.88555130589665]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d3095bca75a39b477c6399729d725b8a33005cea", "fields": {"departement": "92", "stop_lat": 48.88967567378652, "code_postal": "92051", "stop_lon": 2.2726405714211264, "coord": [48.88967567378652, 2.2726405714211264], "stop_id": 4023104, "stop_desc": "140 BOULEVARD BINEAU - 92051", "stop_name": "CHEZY"}, "geometry": {"type": "Point", "coordinates": [2.2726405714211264, 48.88967567378652]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3f900dce30c86502c413ed52f4f06b1efa44e987", "fields": {"departement": "92", "stop_lat": 48.890519289926196, "code_postal": "92051", "stop_lon": 2.270499763785841, "coord": [48.890519289926196, 2.270499763785841], "stop_id": 4023107, "stop_desc": "153-155 BOULEVARD BINEAU - 92051", "stop_name": "BINEAU - CHATEAU"}, "geometry": {"type": "Point", "coordinates": [2.270499763785841, 48.890519289926196]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3a6ec214c790169fb8896873eca818ddce4b83e7", "fields": {"departement": "92", "stop_lat": 48.8944895798988, "code_postal": "92051", "stop_lon": 2.2669508333590063, "coord": [48.8944895798988, 2.2669508333590063], "stop_id": 4023110, "stop_desc": "210 BOULEVARD BINEAU - 92051", "stop_name": "ILE DE LA JATTE"}, "geometry": {"type": "Point", "coordinates": [2.2669508333590063, 48.8944895798988]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ccf459f848450dd529055008144cf8b35e772658", "fields": {"departement": "92", "stop_lat": 48.89745348782597, "code_postal": "92026", "stop_lon": 2.2638798727038214, "coord": [48.89745348782597, 2.2638798727038214], "stop_id": 4023112, "stop_desc": "FACE 7 BOULEVARD DE VERDUN - 92026", "stop_name": "PONT BINEAU"}, "geometry": {"type": "Point", "coordinates": [2.2638798727038214, 48.89745348782597]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f53387531d1bdcc85fae4fae90e144b80bfad676", "fields": {"departement": "92", "stop_lat": 48.902456168621285, "code_postal": "92026", "stop_lon": 2.25893794686687, "coord": [48.902456168621285, 2.25893794686687], "stop_id": 4023116, "stop_desc": "155 BOULEVARD DE VERDUN - 92026", "stop_name": "VERDUN - RUE LATERALE"}, "geometry": {"type": "Point", "coordinates": [2.25893794686687, 48.902456168621285]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4d591c7b63102543e5d028b63caef4ab22b403f4", "fields": {"departement": "92", "stop_lat": 48.902222414608794, "code_postal": "92026", "stop_lon": 2.2588019791733935, "coord": [48.902222414608794, 2.2588019791733935], "stop_id": 4023117, "stop_desc": "BOULEVARD DE VERDUN - 92026", "stop_name": "VERDUN - RUE LATERALE"}, "geometry": {"type": "Point", "coordinates": [2.2588019791733935, 48.902222414608794]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4207ba2be162001bd027d65c243b02fb2ab12ac2", "fields": {"departement": "92", "stop_lat": 48.90575886747136, "code_postal": "92035", "stop_lon": 2.2522936692642452, "coord": [48.90575886747136, 2.2522936692642452], "stop_id": 4023121, "stop_desc": "11 BOULEVARD DE LA REPUBLIQUE - 92035", "stop_name": "PLAISANCE"}, "geometry": {"type": "Point", "coordinates": [2.2522936692642452, 48.90575886747136]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1a3edd554face8840213af3cc935f425e1d2b473", "fields": {"departement": "92", "stop_lat": 48.90274603540909, "code_postal": "92050", "stop_lon": 2.227624254234989, "coord": [48.90274603540909, 2.227624254234989], "stop_id": 4023132, "stop_desc": "155 AVENUE FRANCOIS ARAGO - 92050", "stop_name": "VEUVE LACROIX"}, "geometry": {"type": "Point", "coordinates": [2.227624254234989, 48.90274603540909]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "daa99dc8ee845caeaa1c131765e1fa900f4c1ad3", "fields": {"departement": "92", "stop_lat": 48.89919921470704, "code_postal": "92050", "stop_lon": 2.221388617513115, "coord": [48.89919921470704, 2.221388617513115], "stop_id": 4023136, "stop_desc": "79 AVENUE FRANCOIS ARAGO - 92050", "stop_name": "LENS"}, "geometry": {"type": "Point", "coordinates": [2.221388617513115, 48.89919921470704]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "469a575c14460cefe84db988b37719d3f20081f6", "fields": {"departement": "92", "stop_lat": 48.899010644253586, "code_postal": "92050", "stop_lon": 2.221552614282876, "coord": [48.899010644253586, 2.221552614282876], "stop_id": 4023137, "stop_desc": "14 AVENUE FRANCOIS ARAGO - 92050", "stop_name": "LENS"}, "geometry": {"type": "Point", "coordinates": [2.221552614282876, 48.899010644253586]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3bb81f291deb283b500838ae0c91bec2f8e56d51", "fields": {"departement": "92", "stop_lat": 48.896889073971664, "code_postal": "92050", "stop_lon": 2.2209303386289885, "coord": [48.896889073971664, 2.2209303386289885], "stop_id": 4023139, "stop_desc": "0 BD DE PESARO - 92050", "stop_name": "NANTERRE-PREFECTURE RER"}, "geometry": {"type": "Point", "coordinates": [2.2209303386289885, 48.896889073971664]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c4432606f04e708a41f2f790dc09ee235a222388", "fields": {"departement": "92", "stop_lat": 48.895056889425156, "code_postal": "92050", "stop_lon": 2.222161171082742, "coord": [48.895056889425156, 2.222161171082742], "stop_id": 4023141, "stop_desc": "70 RUE SALVADOR ALLENDE - 92050", "stop_name": "ESPLANADE CHARLES DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.222161171082742, 48.895056889425156]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "de700f29d579029c64aa6608e36596c4976470e6", "fields": {"departement": "92", "stop_lat": 48.8967246279869, "code_postal": "92050", "stop_lon": 2.2182182061917946, "coord": [48.8967246279869, 2.2182182061917946], "stop_id": 4023142, "stop_desc": "R PABLO NERUDA - 92050", "stop_name": "MARCEL PAUL"}, "geometry": {"type": "Point", "coordinates": [2.2182182061917946, 48.8967246279869]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0fe30ec2419e5a4cf9ee33b6fc96abdfc748f15e", "fields": {"departement": "92", "stop_lat": 48.89613064427212, "code_postal": "92050", "stop_lon": 2.2173881097217665, "coord": [48.89613064427212, 2.2173881097217665], "stop_id": 4023144, "stop_desc": "RUE PABLO NERUDA - 92050", "stop_name": "PREFECTURE DES HAUTS-DE-SEINE"}, "geometry": {"type": "Point", "coordinates": [2.2173881097217665, 48.89613064427212]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "82d117ed3676f609e31e164e0b26b56c55d9eca3", "fields": {"departement": "92", "stop_lat": 48.889869029076614, "code_postal": "92050", "stop_lon": 2.2110515423325987, "coord": [48.889869029076614, 2.2110515423325987], "stop_id": 4023151, "stop_desc": "55 RUE DE LA LIBERTE - 92050", "stop_name": "LE CHAT PERCHE"}, "geometry": {"type": "Point", "coordinates": [2.2110515423325987, 48.889869029076614]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cb9e7b493fd3ffe2f59cfd4f02c0dc423680d08f", "fields": {"departement": "92", "stop_lat": 48.88863163240193, "code_postal": "92050", "stop_lon": 2.2053714557927226, "coord": [48.88863163240193, 2.2053714557927226], "stop_id": 4023155, "stop_desc": "FACE 52 RUE SADI-CARNOT - 92050", "stop_name": "SADI CARNOT - JOLIOT CURIE"}, "geometry": {"type": "Point", "coordinates": [2.2053714557927226, 48.88863163240193]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "57eecb1f89e05d47f801e26bebbe8eb17a671da9", "fields": {"departement": "93", "stop_lat": 48.96120184136328, "code_postal": "93079", "stop_lon": 2.3456479738126736, "coord": [48.96120184136328, 2.3456479738126736], "stop_id": 5151283, "stop_desc": "11 RUE ROGER SALENGRO - 93079", "stop_name": "EDOUARD VAILLANT"}, "geometry": {"type": "Point", "coordinates": [2.3456479738126736, 48.96120184136328]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4f4fb8a6b0a6cb3669e8357ef2212f0169335c6d", "fields": {"departement": "93", "stop_lat": 48.95977319769356, "code_postal": "93079", "stop_lon": 2.3410349715963465, "coord": [48.95977319769356, 2.3410349715963465], "stop_id": 5151285, "stop_desc": "AVENUE JEAN BAPTISTE CLEMENT - 93079", "stop_name": "UNIVERSITE - TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.3410349715963465, 48.95977319769356]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8f81f59196250d700087fabc3f8791d14b8b34fe", "fields": {"departement": "93", "stop_lat": 48.95627743330126, "code_postal": "93079", "stop_lon": 2.338482852860159, "coord": [48.95627743330126, 2.338482852860159], "stop_id": 5151289, "stop_desc": "AVENUE JEAN-BAPTISTE CLEMENT - 93079", "stop_name": "J-B CLEMENT - UNIVERSITE"}, "geometry": {"type": "Point", "coordinates": [2.338482852860159, 48.95627743330126]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4cc4fae6774be4c25d850c31b169cae45175ed3f", "fields": {"departement": "93", "stop_lat": 48.9544351422254, "code_postal": "93079", "stop_lon": 2.3348530149930027, "coord": [48.9544351422254, 2.3348530149930027], "stop_id": 5151291, "stop_desc": "FACE 163 ROUTE DE SAINT-LEU - 93079", "stop_name": "YSER"}, "geometry": {"type": "Point", "coordinates": [2.3348530149930027, 48.9544351422254]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "504fc4665766997e04b48369090ac60eba6f84d4", "fields": {"departement": "95", "stop_lat": 48.95838905774594, "code_postal": "95427", "stop_lon": 2.329489605716314, "coord": [48.95838905774594, 2.329489605716314], "stop_id": 5151294, "stop_desc": "5 ROUTE DE SAINT-LEU - 95427", "stop_name": "GARE D'EPINAY-VILLETANEUSE"}, "geometry": {"type": "Point", "coordinates": [2.329489605716314, 48.95838905774594]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7b562f0f66252970448a27fe5f4f541c9ebffef8", "fields": {"departement": "93", "stop_lat": 48.956321872581206, "code_postal": "93031", "stop_lon": 2.3263239649110883, "coord": [48.956321872581206, 2.3263239649110883], "stop_id": 5151297, "stop_desc": "FACE 73 AVENUE DE LA MARNE - 93031", "stop_name": "RUE DES PRESLES"}, "geometry": {"type": "Point", "coordinates": [2.3263239649110883, 48.956321872581206]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f99a370a684dfd565621c8db405f78916345d965", "fields": {"departement": "93", "stop_lat": 48.9526179031098, "code_postal": "93031", "stop_lon": 2.315695008580914, "coord": [48.9526179031098, 2.315695008580914], "stop_id": 5151305, "stop_desc": "RUE DE LA REPUBLIQUE - 93031", "stop_name": "ROSE BERTIN"}, "geometry": {"type": "Point", "coordinates": [2.315695008580914, 48.9526179031098]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "17eeaadf655365844caad7982d2a8050e830f4cf", "fields": {"departement": "93", "stop_lat": 48.955741865588486, "code_postal": "93031", "stop_lon": 2.301488025682573, "coord": [48.955741865588486, 2.301488025682573], "stop_id": 5151311, "stop_desc": "RUE FELIX MERLIN - 93031", "stop_name": "EPINAY-SUR-SEINE - GARE"}, "geometry": {"type": "Point", "coordinates": [2.301488025682573, 48.955741865588486]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e07cd63047db2ce299de17a56245a7c972030d32", "fields": {"departement": "93", "stop_lat": 48.955452355277394, "code_postal": "93031", "stop_lon": 2.295524874607837, "coord": [48.955452355277394, 2.295524874607837], "stop_id": 5151312, "stop_desc": "RUE FELIX MERLIN - 93031", "stop_name": "EPINAY - ORGEMONT"}, "geometry": {"type": "Point", "coordinates": [2.295524874607837, 48.955452355277394]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "78c0cb8b755abeeb830e47309d632efa0a63bcda", "fields": {"departement": "93", "stop_lat": 48.95517272619354, "code_postal": "93031", "stop_lon": 2.2926457857951354, "coord": [48.95517272619354, 2.2926457857951354], "stop_id": 5151315, "stop_desc": "FACE 78-80 RUE FELIX MERLIN - 93031", "stop_name": "LYON"}, "geometry": {"type": "Point", "coordinates": [2.2926457857951354, 48.95517272619354]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9517d661a210d433fdc0430fc8e672ac4bb2f73b", "fields": {"departement": "95", "stop_lat": 48.950644151955274, "code_postal": "95018", "stop_lon": 2.274324659416663, "coord": [48.950644151955274, 2.274324659416663], "stop_id": 5151325, "stop_desc": "188 RUE D'EPINAY - 95018", "stop_name": "GASTON MONMOUSSEAU"}, "geometry": {"type": "Point", "coordinates": [2.274324659416663, 48.950644151955274]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "00c0f75330c01ef8a9d337d2dcdae575be47d009", "fields": {"departement": "95", "stop_lat": 48.94909356615099, "code_postal": "95018", "stop_lon": 2.265689614114385, "coord": [48.94909356615099, 2.265689614114385], "stop_id": 5151330, "stop_desc": "53-55 RUE D'EPINAY - 95018", "stop_name": "JULES FERRY"}, "geometry": {"type": "Point", "coordinates": [2.265689614114385, 48.94909356615099]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a054999134c5d2d02070591e53ffbdc58da94e8c", "fields": {"departement": "95", "stop_lat": 48.9507910744424, "code_postal": "95018", "stop_lon": 2.264063525737851, "coord": [48.9507910744424, 2.264063525737851], "stop_id": 5151333, "stop_desc": "66 AVENUE DE STALINGRAD - 95018", "stop_name": "HENRI VASSEUR"}, "geometry": {"type": "Point", "coordinates": [2.264063525737851, 48.9507910744424]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "05d9d61cf38d22a220b7c1d740522ad2258f7ef5", "fields": {"departement": "95", "stop_lat": 48.94595216278769, "code_postal": "95018", "stop_lon": 2.2577533738675597, "coord": [48.94595216278769, 2.2577533738675597], "stop_id": 5151336, "stop_desc": "PLACE PIERRE SEMARD (GARE ROUTIERE) - 95018", "stop_name": "GARE D'ARGENTEUIL"}, "geometry": {"type": "Point", "coordinates": [2.2577533738675597, 48.94595216278769]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "80d48e9fd5c38f414338f286ef6586416e2f58af", "fields": {"departement": "93", "stop_lat": 48.95323993272999, "code_postal": "93079", "stop_lon": 2.3377868588603916, "coord": [48.95323993272999, 2.3377868588603916], "stop_id": 5151340, "stop_desc": "AVENUE JEAN-BAPTISTE CLEMENT - 93079", "stop_name": "J-B CLEMENT - CARNOT"}, "geometry": {"type": "Point", "coordinates": [2.3377868588603916, 48.95323993272999]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "03dc85be32cd2a4a8832b1be230e3567beda5854", "fields": {"departement": "92", "stop_lat": 48.78279205159083, "code_postal": "92060", "stop_lon": 2.266843607748729, "coord": [48.78279205159083, 2.266843607748729], "stop_id": 5151452, "stop_desc": "RUE LUCIEN ARRUFAT - 92060", "stop_name": "L'ESCALIER"}, "geometry": {"type": "Point", "coordinates": [2.266843607748729, 48.78279205159083]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c54d1c7bb159a2dcda0c7c58848afb2a3949a76e", "fields": {"departement": "92", "stop_lat": 48.78139682184434, "code_postal": "92060", "stop_lon": 2.263391000895894, "coord": [48.78139682184434, 2.263391000895894], "stop_id": 5151453, "stop_desc": "FACE 20 AVENUE CHARLES DE GAULLE - 92060", "stop_name": "COEUR DE VILLE"}, "geometry": {"type": "Point", "coordinates": [2.263391000895894, 48.78139682184434]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "20d7e96d854b594b063bb669532e9238811f41b3", "fields": {"departement": "92", "stop_lat": 48.7942551077991, "code_postal": "92032", "stop_lon": 2.2729361506767765, "coord": [48.7942551077991, 2.2729361506767765], "stop_id": 5151464, "stop_desc": "PLACE DE LA DIVISION LECLERC - 92032", "stop_name": "DIVISION LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.2729361506767765, 48.7942551077991]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e055bbcfb6948cd5f3d0edf8f43c5cff33aec6e9", "fields": {"departement": "92", "stop_lat": 48.806242993904924, "code_postal": "92023", "stop_lon": 2.2695195762242957, "coord": [48.806242993904924, 2.2695195762242957], "stop_id": 5151475, "stop_desc": "92-94 AVENUE VICTOR HUGO - 92023", "stop_name": "PIERRE LOUVRIER"}, "geometry": {"type": "Point", "coordinates": [2.2695195762242957, 48.806242993904924]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "915a4e1c46e5c8c905c3def35d2ab4627f8985c7", "fields": {"departement": "92", "stop_lat": 48.812949955838086, "code_postal": "92023", "stop_lon": 2.2732804214942113, "coord": [48.812949955838086, 2.2732804214942113], "stop_id": 5151480, "stop_desc": "17-19 RUE DE VANVES - 92023", "stop_name": "HEBERT - GARE"}, "geometry": {"type": "Point", "coordinates": [2.2732804214942113, 48.812949955838086]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "062054dd7f23b29d481dacf0250b29bc957676b5", "fields": {"departement": "92", "stop_lat": 48.8140307256396, "code_postal": "92046", "stop_lon": 2.277593121911239, "coord": [48.8140307256396, 2.277593121911239], "stop_id": 5151481, "stop_desc": "9 BOULEVARD DES FRERES VIGOUROUX - 92046", "stop_name": "CLOS MONTHOLON"}, "geometry": {"type": "Point", "coordinates": [2.277593121911239, 48.8140307256396]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "03028bed68aed440dc5f4c55771e07588f538355", "fields": {"departement": "92", "stop_lat": 48.82101042839377, "code_postal": "92075", "stop_lon": 2.289154248327772, "coord": [48.82101042839377, 2.289154248327772], "stop_id": 5151487, "stop_desc": "FACE 40 RUE ANTOINE FRATACCI - 92075", "stop_name": "MAIRIE DE VANVES - CENTRE ADMINISTRATIF"}, "geometry": {"type": "Point", "coordinates": [2.289154248327772, 48.82101042839377]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6ea9853f15ed4d59b640a93bfd686d0a5ac7f5a7", "fields": {"departement": "92", "stop_lat": 48.82700948660238, "code_postal": "92040", "stop_lon": 2.278653576085032, "coord": [48.82700948660238, 2.278653576085032], "stop_id": 5151494, "stop_desc": "6 BOULEVARD GAMBETTA - 92040", "stop_name": "CORENTIN CELTON-METRO"}, "geometry": {"type": "Point", "coordinates": [2.278653576085032, 48.82700948660238]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2552d65c7de00a80894a68f77830dfc6b958ef03", "fields": {"departement": "92", "stop_lat": 48.830667352064815, "code_postal": "92040", "stop_lon": 2.278445245919053, "coord": [48.830667352064815, 2.278445245919053], "stop_id": 5151496, "stop_desc": "23 RUE GUYNEMER - 92040", "stop_name": "SEVERINE"}, "geometry": {"type": "Point", "coordinates": [2.278445245919053, 48.830667352064815]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dc31a91f1007f41fc319ec4a3aafc35f1f409b85", "fields": {"departement": "75", "stop_lat": 48.83433085153598, "code_postal": "75115", "stop_lon": 2.2910070539330327, "coord": [48.83433085153598, 2.2910070539330327], "stop_id": 5151499, "stop_desc": "FACE 366 TER R DE VAUGIRARD - 75115", "stop_name": "VAUGIRARD - CROIX-NIVERT"}, "geometry": {"type": "Point", "coordinates": [2.2910070539330327, 48.83433085153598]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "90adee5069bca4349b92d551f1eae16394b25aca", "fields": {"departement": "75", "stop_lat": 48.838369035834674, "code_postal": "75115", "stop_lon": 2.2987641849521716, "coord": [48.838369035834674, 2.2987641849521716], "stop_id": 5151502, "stop_desc": "315 RUE DE VAUGIRARD - 75115", "stop_name": "ABBE GROULT"}, "geometry": {"type": "Point", "coordinates": [2.2987641849521716, 48.838369035834674]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f5d3df5a1b8f3e1f76f1bc5a866767e4ba7e6e23", "fields": {"departement": "75", "stop_lat": 48.84187918982126, "code_postal": "75115", "stop_lon": 2.3202616185071085, "coord": [48.84187918982126, 2.3202616185071085], "stop_id": 5151510, "stop_desc": "PLACE RAOUL DAUTRY - 75115", "stop_name": "GARE MONTPARNASSE"}, "geometry": {"type": "Point", "coordinates": [2.3202616185071085, 48.84187918982126]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fc2f3fc085f3801e98d727d606f3f0de8bb10887", "fields": {"departement": "75", "stop_lat": 48.8418655148874, "code_postal": "75115", "stop_lon": 2.2997691922702015, "coord": [48.8418655148874, 2.2997691922702015], "stop_id": 5151517, "stop_desc": "148 RUE LECOURBE - 75115", "stop_name": "MAIRIE DU 15E"}, "geometry": {"type": "Point", "coordinates": [2.2997691922702015, 48.8418655148874]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ca64d550bd4c86c5c73d374bd32099330bb91179", "fields": {"departement": "75", "stop_lat": 48.838446179632186, "code_postal": "75115", "stop_lon": 2.2885390097212523, "coord": [48.838446179632186, 2.2885390097212523], "stop_id": 5151519, "stop_desc": "276-278 R LECOURBE - 75115", "stop_name": "DURANTON"}, "geometry": {"type": "Point", "coordinates": [2.2885390097212523, 48.838446179632186]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6cfc2f38df3fb68b50e7a966e344409bfcca7967", "fields": {"departement": "75", "stop_lat": 48.82981201095135, "code_postal": "75115", "stop_lon": 2.2754513391086495, "coord": [48.82981201095135, 2.2754513391086495], "stop_id": 5151524, "stop_desc": "FACE 29 RUE DU COLONEL PIERRE AVIA - 75115", "stop_name": "COLONEL PIERRE AVIA"}, "geometry": {"type": "Point", "coordinates": [2.2754513391086495, 48.82981201095135]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d846277048ad85f96755aadc2a7f00324c77d875", "fields": {"departement": "92", "stop_lat": 48.79454220125779, "code_postal": "92020", "stop_lon": 2.2719835271448834, "coord": [48.79454220125779, 2.2719835271448834], "stop_id": 5151528, "stop_desc": "AVENUE DE VERDUN - 92020", "stop_name": "DIVISION LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.2719835271448834, 48.79454220125779]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4e020102471e3674719bbfca1a387024e716a911", "fields": {"departement": "92", "stop_lat": 48.82283664125882, "code_postal": "92040", "stop_lon": 2.273649349876303, "coord": [48.82283664125882, 2.273649349876303], "stop_id": 5156448, "stop_desc": "13 BIS RUE AUGUSTE GERVAIS - 92040", "stop_name": "MUSEE"}, "geometry": {"type": "Point", "coordinates": [2.273649349876303, 48.82283664125882]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "953ec77f20f498ede5e1630c8eacf9f17151c68e", "fields": {"departement": "95", "stop_lat": 48.97217114640024, "code_postal": "95210", "stop_lon": 2.3077559091969886, "coord": [48.97217114640024, 2.3077559091969886], "stop_id": 5157984, "stop_desc": "FACE 3 RUE DE L'ARRIVEE - 95210", "stop_name": "GARE D'ENGHIEN-LES-BAINS"}, "geometry": {"type": "Point", "coordinates": [2.3077559091969886, 48.97217114640024]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "15bf0b091225b59b5282a30ed6894f69a97726e1", "fields": {"departement": "95", "stop_lat": 48.97217114640024, "code_postal": "95210", "stop_lon": 2.3077559091969886, "coord": [48.97217114640024, 2.3077559091969886], "stop_id": 5157985, "stop_desc": "FACE 3 RUE DE L'ARRIVEE - 95210", "stop_name": "GARE D'ENGHIEN-LES-BAINS"}, "geometry": {"type": "Point", "coordinates": [2.3077559091969886, 48.97217114640024]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "95135ebf20b116a8bbb3cc6d3cf7a86128edacb2", "fields": {"departement": "95", "stop_lat": 48.969555053657814, "code_postal": "95210", "stop_lon": 2.3039627475464566, "coord": [48.969555053657814, 2.3039627475464566], "stop_id": 5157986, "stop_desc": "FACE 4 AVENUE DE CEINTURE - 95210", "stop_name": "CASINO"}, "geometry": {"type": "Point", "coordinates": [2.3039627475464566, 48.969555053657814]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5221049cdc8a9027b4639a78587b5ed42088764d", "fields": {"departement": "95", "stop_lat": 48.96880955751207, "code_postal": "95210", "stop_lon": 2.305396438763414, "coord": [48.96880955751207, 2.305396438763414], "stop_id": 5157987, "stop_desc": "FACE 3 BOULEVARD COTTE - 95210", "stop_name": "CASINO"}, "geometry": {"type": "Point", "coordinates": [2.305396438763414, 48.96880955751207]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4685e893f19ba3c12cc12def65b159c6e093d8c9", "fields": {"departement": "93", "stop_lat": 48.96539316212714, "code_postal": "93031", "stop_lon": 2.3002529694434806, "coord": [48.96539316212714, 2.3002529694434806], "stop_id": 5157989, "stop_desc": "7 AVENUE GALLIENI - 93031", "stop_name": "LIMITE DES DEPARTEMENTS"}, "geometry": {"type": "Point", "coordinates": [2.3002529694434806, 48.96539316212714]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0944a2fffad8c67721da9f39032c50f7b09fa529", "fields": {"departement": "93", "stop_lat": 48.95181883855375, "code_postal": "93031", "stop_lon": 2.320375628968274, "coord": [48.95181883855375, 2.320375628968274], "stop_id": 5158009, "stop_desc": "35 AVENUE DE LA REPUBLIQUE - 93031", "stop_name": "LES BEATUS"}, "geometry": {"type": "Point", "coordinates": [2.320375628968274, 48.95181883855375]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b6716dba022ee9a439388624b61a4a2682715a71", "fields": {"departement": "93", "stop_lat": 48.95587253291794, "code_postal": "93031", "stop_lon": 2.3262694749112587, "coord": [48.95587253291794, 2.3262694749112587], "stop_id": 5158015, "stop_desc": "73 AVENUE DE LA MARNE - 93031", "stop_name": "RUE DES PRESLES"}, "geometry": {"type": "Point", "coordinates": [2.3262694749112587, 48.95587253291794]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "abcf392be917e4403cf30dab549f2846659bb104", "fields": {"departement": "93", "stop_lat": 48.94676035662966, "code_postal": "93066", "stop_lon": 2.3429987313129264, "coord": [48.94676035662966, 2.3429987313129264], "stop_id": 5158024, "stop_desc": "RUE DU FORT DE LA BRICHE - 93066", "stop_name": "BLUMENTHAL"}, "geometry": {"type": "Point", "coordinates": [2.3429987313129264, 48.94676035662966]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "518724b19a00845cf2e51c515bc47891c78ee339", "fields": {"departement": "93", "stop_lat": 48.93611102433381, "code_postal": "93066", "stop_lon": 2.3423291401973225, "coord": [48.93611102433381, 2.3423291401973225], "stop_id": 5158027, "stop_desc": "QUAI DE SEINE - 93066", "stop_name": "RUE DU PORT"}, "geometry": {"type": "Point", "coordinates": [2.3423291401973225, 48.93611102433381]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "17f543337308a5cb8e5e14f17a176d9924fd61d3", "fields": {"departement": "93", "stop_lat": 48.93567074955881, "code_postal": "93039", "stop_lon": 2.3398055309687775, "coord": [48.93567074955881, 2.3398055309687775], "stop_id": 5158030, "stop_desc": "RUE MECHIN - 93039", "stop_name": "L'ILE-SAINT-DENIS"}, "geometry": {"type": "Point", "coordinates": [2.3398055309687775, 48.93567074955881]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9dc57b469b40b498110c358ade62e1f634424af8", "fields": {"departement": "92", "stop_lat": 48.935742636586, "code_postal": "92078", "stop_lon": 2.334362808773992, "coord": [48.935742636586, 2.334362808773992], "stop_id": 5158031, "stop_desc": "AVENUE DE VERDUN - 92078", "stop_name": "MAIRIE DE VILLENEUVE-LA-GARENNE"}, "geometry": {"type": "Point", "coordinates": [2.334362808773992, 48.935742636586]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c3e774d39ac7171806d70ccb319abfe33cec0b79", "fields": {"departement": "92", "stop_lat": 48.93510412850019, "code_postal": "92078", "stop_lon": 2.326587617791972, "coord": [48.93510412850019, 2.326587617791972], "stop_id": 5158033, "stop_desc": "AVENUE DE VERDUN - 92078", "stop_name": "LA NOUE"}, "geometry": {"type": "Point", "coordinates": [2.326587617791972, 48.93510412850019]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2950d6a325f367eed74065d2655b49bd47c306b5", "fields": {"departement": "92", "stop_lat": 48.934041738195134, "code_postal": "92036", "stop_lon": 2.313233817568237, "coord": [48.934041738195134, 2.313233817568237], "stop_id": 5158036, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 92036", "stop_name": "PARC DES CHANTERAINES"}, "geometry": {"type": "Point", "coordinates": [2.313233817568237, 48.934041738195134]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f3b5d78b8619a1c3deb3909d701e2d6e89645c55", "fields": {"departement": "92", "stop_lat": 48.933555153246445, "code_postal": "92036", "stop_lon": 2.3074914596392895, "coord": [48.933555153246445, 2.3074914596392895], "stop_id": 5158038, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 92036", "stop_name": "GENNEVILLIERS RER"}, "geometry": {"type": "Point", "coordinates": [2.3074914596392895, 48.933555153246445]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bccf86c3f843256b32e690912931d17d33939546", "fields": {"departement": "92", "stop_lat": 48.933114711338796, "code_postal": "92036", "stop_lon": 2.30715070714464, "coord": [48.933114711338796, 2.30715070714464], "stop_id": 5158039, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 92036", "stop_name": "GENNEVILLIERS RER"}, "geometry": {"type": "Point", "coordinates": [2.30715070714464, 48.933114711338796]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "430d093c55c10c4625bd27a2dd0332d9060094da", "fields": {"departement": "92", "stop_lat": 48.93335625390836, "code_postal": "92036", "stop_lon": 2.3030584799968534, "coord": [48.93335625390836, 2.3030584799968534], "stop_id": 5158040, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 92036", "stop_name": "ROND-POINT PIERRE TIMBAUD"}, "geometry": {"type": "Point", "coordinates": [2.3030584799968534, 48.93335625390836]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a02b06f7346b34c7d04d6f11214967a0c86c01fc", "fields": {"departement": "92", "stop_lat": 48.930420001344224, "code_postal": "92036", "stop_lon": 2.28502897779457, "coord": [48.930420001344224, 2.28502897779457], "stop_id": 5158046, "stop_desc": "AVENUE LUCIEN LANTERNIER - 92036", "stop_name": "LES COURTILLES"}, "geometry": {"type": "Point", "coordinates": [2.28502897779457, 48.930420001344224]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "602633edbb16c0a910893f15d83fc93c1b7ccaa4", "fields": {"departement": "92", "stop_lat": 48.92798429491097, "code_postal": "92004", "stop_lon": 2.2844449622932146, "coord": [48.92798429491097, 2.2844449622932146], "stop_id": 5158047, "stop_desc": "BOULEVARD PIERRE DE COUBERTIN - 92004", "stop_name": "PATINOIRE"}, "geometry": {"type": "Point", "coordinates": [2.2844449622932146, 48.92798429491097]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "23cd0b8a8247541d27aea92c77b8ff56dc0a53fb", "fields": {"departement": "92", "stop_lat": 48.920176425247114, "code_postal": "92004", "stop_lon": 2.288625789504137, "coord": [48.920176425247114, 2.288625789504137], "stop_id": 5158051, "stop_desc": "RUE DES BAS - 92004", "stop_name": "GILLET"}, "geometry": {"type": "Point", "coordinates": [2.288625789504137, 48.920176425247114]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "296386d5537611676bf4b58e37134cddb9be3cfd", "fields": {"departement": "92", "stop_lat": 48.913025400714396, "code_postal": "92004", "stop_lon": 2.2955454150474894, "coord": [48.913025400714396, 2.2955454150474894], "stop_id": 5158055, "stop_desc": "FACE 24 BOULEVARD VOLTAIRE - 92004", "stop_name": "PLACE VOLTAIRE"}, "geometry": {"type": "Point", "coordinates": [2.2955454150474894, 48.913025400714396]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0a5c1e18c14f3b519476058fa86ff1c3b3801844", "fields": {"departement": "92", "stop_lat": 48.90075212578295, "code_postal": "92024", "stop_lon": 2.3054519129764897, "coord": [48.90075212578295, 2.3054519129764897], "stop_id": 5158061, "stop_desc": "51 BOULEVARD JEAN JAURES - 92024", "stop_name": "JAURES - BARBUSSE"}, "geometry": {"type": "Point", "coordinates": [2.3054519129764897, 48.90075212578295]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "227d34f09e467934fa7cf8e341feaf86940a5b4b", "fields": {"departement": "75", "stop_lat": 48.88280850473842, "code_postal": "75108", "stop_lon": 2.3266120054743964, "coord": [48.88280850473842, 2.3266120054743964], "stop_id": 5158076, "stop_desc": "FACE 45 RUE DE SAINT PETERSBOURG - 75108", "stop_name": "PLACE DE CLICHY"}, "geometry": {"type": "Point", "coordinates": [2.3266120054743964, 48.88280850473842]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6f61dd4fff824d5a3cc5dbbcc0855334c52be4b0", "fields": {"departement": "75", "stop_lat": 48.89044694908414, "code_postal": "75117", "stop_lon": 2.320613679282316, "coord": [48.89044694908414, 2.320613679282316], "stop_id": 5158084, "stop_desc": "130 AVENUE DE CLICHY - 75117", "stop_name": "RUE DES MOINES"}, "geometry": {"type": "Point", "coordinates": [2.320613679282316, 48.89044694908414]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "68cebf4c4ff2887690e7c7b3e4a4d1546c4f5efa", "fields": {"departement": "92", "stop_lat": 48.90449961551857, "code_postal": "92024", "stop_lon": 2.304972468676297, "coord": [48.90449961551857, 2.304972468676297], "stop_id": 5158087, "stop_desc": "102 BIS RUE MARTRE - 92024", "stop_name": "LANDY - MARTRE"}, "geometry": {"type": "Point", "coordinates": [2.304972468676297, 48.90449961551857]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a471cd4d54776aa3c0be2fac787ffcfc600c62d5", "fields": {"departement": "92", "stop_lat": 48.93262785777364, "code_postal": "92036", "stop_lon": 2.3014903497756682, "coord": [48.93262785777364, 2.3014903497756682], "stop_id": 5158090, "stop_desc": "FACE 4 RUE JULES LAROSE - 92036", "stop_name": "TIMBAUD - FELICIE"}, "geometry": {"type": "Point", "coordinates": [2.3014903497756682, 48.93262785777364]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d2f7c256886954e6cffc9df95ad40206d798d03b", "fields": {"departement": "95", "stop_lat": 48.95838905774594, "code_postal": "95197", "stop_lon": 2.329489605716314, "coord": [48.95838905774594, 2.329489605716314], "stop_id": 5158094, "stop_desc": "5 ROUTE DE SAINT-LEU - 95197", "stop_name": "GARE D'EPINAY-VILLETANEUSE"}, "geometry": {"type": "Point", "coordinates": [2.329489605716314, 48.95838905774594]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "09be6a9669cc876c0d47aa4534868a32b0211e34", "fields": {"departement": "92", "stop_lat": 48.81911390513648, "code_postal": "92049", "stop_lon": 2.3230319546022735, "coord": [48.81911390513648, 2.3230319546022735], "stop_id": 5161411, "stop_desc": "44 AVENUE HENRI GINOUX - 92049", "stop_name": "GABRIELLE DE GUERCHY"}, "geometry": {"type": "Point", "coordinates": [2.3230319546022735, 48.81911390513648]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "461f4f8fca3f50164de5826a9a84a14aec5a9608", "fields": {"departement": "92", "stop_lat": 48.81743304180917, "code_postal": "92049", "stop_lon": 2.321739481929363, "coord": [48.81743304180917, 2.321739481929363], "stop_id": 5161412, "stop_desc": "62-62BIS RUE HENRI GINOUX - 92049", "stop_name": "MAIRIE DE MONTROUGE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.321739481929363, 48.81743304180917]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "87c2f6dc6d1a61db41f0dcfb5f200ba7d4af9b5c", "fields": {"departement": "92", "stop_lat": 48.81885285245728, "code_postal": "92049", "stop_lon": 2.319942511783087, "coord": [48.81885285245728, 2.319942511783087], "stop_id": 5161413, "stop_desc": "FACE 34 AVENUE DE LA REPUBLIQUE - 92049", "stop_name": "MAIRIE DE MONTROUGE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.319942511783087, 48.81885285245728]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "04a5d8eb6c8cc365018cef6c495ea88fe18ac4a9", "fields": {"departement": "92", "stop_lat": 48.812237231745705, "code_postal": "92049", "stop_lon": 2.3159302218541162, "coord": [48.812237231745705, 2.3159302218541162], "stop_id": 5161416, "stop_desc": "127 AVENUE DE LA REPUBLIQUE - 92049", "stop_name": "BOILEAU"}, "geometry": {"type": "Point", "coordinates": [2.3159302218541162, 48.812237231745705]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "72af7a3088683848820ff275f81345b1aabc7dad", "fields": {"departement": "92", "stop_lat": 48.80620606483396, "code_postal": "92007", "stop_lon": 2.313959701241894, "coord": [48.80620606483396, 2.313959701241894], "stop_id": 5161419, "stop_desc": "198 AVENUE HENRI RAVERA - 92007", "stop_name": "JEAN-MARIN NAUDIN"}, "geometry": {"type": "Point", "coordinates": [2.313959701241894, 48.80620606483396]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "63871078e21d6883a3a5007c955f00f6b07c6507", "fields": {"departement": "92", "stop_lat": 48.8018911822871, "code_postal": "92007", "stop_lon": 2.3104785650933115, "coord": [48.8018911822871, 2.3104785650933115], "stop_id": 5161420, "stop_desc": "FACE 118 AVENUE HENRI RAVERA - 92007", "stop_name": "PASTEUR"}, "geometry": {"type": "Point", "coordinates": [2.3104785650933115, 48.8018911822871]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7f6b8e35c9fd936bd5b5bf941c415f52554cc9e4", "fields": {"departement": "92", "stop_lat": 48.7907407135076, "code_postal": "92032", "stop_lon": 2.292215714371493, "coord": [48.7907407135076, 2.292215714371493], "stop_id": 5161432, "stop_desc": "8 RUE MARX DORMOY - 92032", "stop_name": "CHATEAU SAINTE-BARBE"}, "geometry": {"type": "Point", "coordinates": [2.292215714371493, 48.7907407135076]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "638d5f9f42b2b9c58f57974431bc4b7991e682fd", "fields": {"departement": "92", "stop_lat": 48.78778418627184, "code_postal": "92032", "stop_lon": 2.2935512795662203, "coord": [48.78778418627184, 2.2935512795662203], "stop_id": 5161434, "stop_desc": "26 AVENUE LOMBART - 92032", "stop_name": "FONTENAY-AUX-ROSES RER"}, "geometry": {"type": "Point", "coordinates": [2.2935512795662203, 48.78778418627184]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cd08504cbc8db1a50747db1eb67ce7ab8a83fff7", "fields": {"departement": "92", "stop_lat": 48.77875821431904, "code_postal": "92071", "stop_lon": 2.288268592816922, "coord": [48.77875821431904, 2.288268592816922], "stop_id": 5161442, "stop_desc": "83 RUE HOUDAN - 92071", "stop_name": "MAIRIE DE SCEAUX"}, "geometry": {"type": "Point", "coordinates": [2.288268592816922, 48.77875821431904]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d0badf4105c6ec180bdbd0cff469f2cfb0881cbf", "fields": {"departement": "92", "stop_lat": 48.81148493414833, "code_postal": "92023", "stop_lon": 2.2582859145650356, "coord": [48.81148493414833, 2.2582859145650356], "stop_id": 5161454, "stop_desc": "90 AVENUE HENRI BARBUSSE - 92023", "stop_name": "FLEURY"}, "geometry": {"type": "Point", "coordinates": [2.2582859145650356, 48.81148493414833]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f989e02fed8e5293d336ecbc143475280a289ce5", "fields": {"departement": "92", "stop_lat": 48.79796754114928, "code_postal": "92020", "stop_lon": 2.2937467800028233, "coord": [48.79796754114928, 2.2937467800028233], "stop_id": 5161463, "stop_desc": "7-9 RUE DE CHARTRES - 92020", "stop_name": "LIBERTE"}, "geometry": {"type": "Point", "coordinates": [2.2937467800028233, 48.79796754114928]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "39c1515459fda0bad7332d8424b2b92e26d8b046", "fields": {"departement": "92", "stop_lat": 48.791260868710474, "code_postal": "92032", "stop_lon": 2.2892906255623, "coord": [48.791260868710474, 2.2892906255623], "stop_id": 5161466, "stop_desc": "AVENUE JEANNE ET MAURICE DOLIVET - 92032", "stop_name": "THEATRE DES SOURCES"}, "geometry": {"type": "Point", "coordinates": [2.2892906255623, 48.791260868710474]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9d08744b67e5aca38ce82def954ab4284dbfac50", "fields": {"departement": "92", "stop_lat": 48.788527964826656, "code_postal": "92032", "stop_lon": 2.28787851531733, "coord": [48.788527964826656, 2.28787851531733], "stop_id": 5161468, "stop_desc": "4 AVENUE JEAN MOULIN - 92032", "stop_name": "BOULEVARD DE LA REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.28787851531733, 48.788527964826656]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7dbdfe01d2b407f38ea304efc51a9d7fa0981b36", "fields": {"departement": "92", "stop_lat": 48.78621774264672, "code_postal": "92032", "stop_lon": 2.28710541769771, "coord": [48.78621774264672, 2.28710541769771], "stop_id": 5161471, "stop_desc": "23BIS-25 AVENUE JEAN MOULIN - 92032", "stop_name": "AUGUSTIN CLAUDE"}, "geometry": {"type": "Point", "coordinates": [2.28710541769771, 48.78621774264672]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2acbb82949ef4ac0e8fcd23053b0c85663001e81", "fields": {"departement": "92", "stop_lat": 48.764432544927, "code_postal": "92019", "stop_lon": 2.272184500447193, "coord": [48.764432544927, 2.272184500447193], "stop_id": 5161486, "stop_desc": "AVENUE ROGER SALENGRO - 92019", "stop_name": "PRESIDENT ALLENDE"}, "geometry": {"type": "Point", "coordinates": [2.272184500447193, 48.764432544927]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9e89dc199ee4a1353596e7764e880ee33d450bf7", "fields": {"departement": "91", "stop_lat": 48.75177710235545, "code_postal": "91645", "stop_lon": 2.271928491643091, "coord": [48.75177710235545, 2.271928491643091], "stop_id": 5161490, "stop_desc": "CARREFOUR DE L'EUROPE - 91645", "stop_name": "LES ANTES"}, "geometry": {"type": "Point", "coordinates": [2.271928491643091, 48.75177710235545]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1cf16add90f832c6d9c5bd942e05d8de6dfbd92c", "fields": {"departement": "91", "stop_lat": 48.75199312360041, "code_postal": "91645", "stop_lon": 2.2724855204515526, "coord": [48.75199312360041, 2.2724855204515526], "stop_id": 5161491, "stop_desc": "CARREFOUR DE L'EUROPE - 91645", "stop_name": "LES ANTES"}, "geometry": {"type": "Point", "coordinates": [2.2724855204515526, 48.75199312360041]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "917e70f06bdc38138ea0546bec2a289e63a14cad", "fields": {"departement": "91", "stop_lat": 48.74586122520928, "code_postal": "91645", "stop_lon": 2.269013842406873, "coord": [48.74586122520928, 2.269013842406873], "stop_id": 5161494, "stop_desc": "FACE 56 BOULEVARD DU MARECHAL FOCH - 91645", "stop_name": "PARON"}, "geometry": {"type": "Point", "coordinates": [2.269013842406873, 48.74586122520928]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "44d75e3dfbfdd3c092b7eb0aa0a83166fa463560", "fields": {"departement": "91", "stop_lat": 48.74630205931568, "code_postal": "91645", "stop_lon": 2.2697335974341466, "coord": [48.74630205931568, 2.2697335974341466], "stop_id": 5161495, "stop_desc": "BOULEVARD DU MARECHAL FOCH - 91645", "stop_name": "PARON"}, "geometry": {"type": "Point", "coordinates": [2.2697335974341466, 48.74630205931568]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ef4bb8ec85d740be014f31ce7a4290bfa1c17d70", "fields": {"departement": "91", "stop_lat": 48.74439504485675, "code_postal": "91645", "stop_lon": 2.267126659210256, "coord": [48.74439504485675, 2.267126659210256], "stop_id": 5161497, "stop_desc": "42 BOULEVARD DU MARECHAL FOCH - 91645", "stop_name": "FOCH - LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.267126659210256, 48.74439504485675]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cac61ea5c46026d75863b6ee475d08eb6e70681f", "fields": {"departement": "91", "stop_lat": 48.73706334414667, "code_postal": "91377", "stop_lon": 2.244823755686539, "coord": [48.73706334414667, 2.244823755686539], "stop_id": 5161508, "stop_desc": "VOIE DE LA VALLEE DE LA BIEVRE - 91377", "stop_name": "AMBLAINVILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.244823755686539, 48.73706334414667]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "808c3ff0fb17e3f156f856f8aaa1a4bdd37aac5d", "fields": {"departement": "91", "stop_lat": 48.73645464574494, "code_postal": "91312", "stop_lon": 2.23683472126287, "coord": [48.73645464574494, 2.23683472126287], "stop_id": 5161509, "stop_desc": "FACE 56 AVENUE JEAN JAURES - 91312", "stop_name": "ROND-POINT DES VALLEES"}, "geometry": {"type": "Point", "coordinates": [2.23683472126287, 48.73645464574494]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "20f96662ce398294e1cfb467910b6c32c88616e8", "fields": {"departement": "91", "stop_lat": 48.738075440313075, "code_postal": "91312", "stop_lon": 2.2298739924455693, "coord": [48.738075440313075, 2.2298739924455693], "stop_id": 5161512, "stop_desc": "AVENUE DU PRESIDENT KENNEDY - 91312", "stop_name": "KENNEDY - BELLEVUE"}, "geometry": {"type": "Point", "coordinates": [2.2298739924455693, 48.738075440313075]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e8ab6b763afc1ea35b0c085ef201f85ff1dc4df6", "fields": {"departement": "91", "stop_lat": 48.73993664714824, "code_postal": "91312", "stop_lon": 2.2305768044849725, "coord": [48.73993664714824, 2.2305768044849725], "stop_id": 5161515, "stop_desc": "5-7 AVENUE DE LA DIVISION LECLERC - 91312", "stop_name": "IGNY RER"}, "geometry": {"type": "Point", "coordinates": [2.2305768044849725, 48.73993664714824]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "263d41d8ec95f5e37305874f41f35e7162b11c54", "fields": {"departement": "91", "stop_lat": 48.73863570820907, "code_postal": "91645", "stop_lon": 2.244073554016609, "coord": [48.73863570820907, 2.244073554016609], "stop_id": 5161517, "stop_desc": "7 RUE DE PARIS - 91645", "stop_name": "AMBLAINVILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.244073554016609, 48.73863570820907]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5dd454e53fef6ed00bc2336cfa9c0c5723342cc1", "fields": {"departement": "92", "stop_lat": 48.75801370668038, "code_postal": "92019", "stop_lon": 2.2698135409649574, "coord": [48.75801370668038, 2.2698135409649574], "stop_id": 5161518, "stop_desc": "FACE 5 RUE JEAN-BAPTISTE CLEMENT - 92019", "stop_name": "GROUPE SCOLAIRE SOPHIE BARAT"}, "geometry": {"type": "Point", "coordinates": [2.2698135409649574, 48.75801370668038]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b02161e75c2295d47835d104c7d034b076c7c4cb", "fields": {"departement": "94", "stop_lat": 48.810000787175966, "code_postal": "94003", "stop_lon": 2.327470618063137, "coord": [48.810000787175966, 2.327470618063137], "stop_id": 5161522, "stop_desc": "74 AV LAPLACE - 94003", "stop_name": "VACHE NOIRE - CENTRE COMMERCIAL"}, "geometry": {"type": "Point", "coordinates": [2.327470618063137, 48.810000787175966]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4373e43b9a03373dce49ae9e027854f9390dba6d", "fields": {"departement": "94", "stop_lat": 48.80784404743202, "code_postal": "94003", "stop_lon": 2.3330228065226883, "coord": [48.80784404743202, 2.3330228065226883], "stop_id": 5161524, "stop_desc": "AVENUE LAPLACE - 94003", "stop_name": "LAPLACE RER"}, "geometry": {"type": "Point", "coordinates": [2.3330228065226883, 48.80784404743202]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0e1fc94c19f69ad2e1a5cd5cc856bebf18c67a36", "fields": {"departement": "94", "stop_lat": 48.80001559599069, "code_postal": "94003", "stop_lon": 2.343050518944524, "coord": [48.80001559599069, 2.343050518944524], "stop_id": 5161531, "stop_desc": "AVENUE PAUL VAILLANT COUTURIER - 94003", "stop_name": "QUATRE CHEMINS"}, "geometry": {"type": "Point", "coordinates": [2.343050518944524, 48.80001559599069]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a89ab4068000d1ee939ef3097d914f676435180e", "fields": {"departement": "94", "stop_lat": 48.79738175837985, "code_postal": "94076", "stop_lon": 2.3485736792117518, "coord": [48.79738175837985, 2.3485736792117518], "stop_id": 5161532, "stop_desc": "FACE 80 AVENUE DU PRESIDENT ALLENDE - 94076", "stop_name": "BELVEDERE"}, "geometry": {"type": "Point", "coordinates": [2.3485736792117518, 48.79738175837985]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4993caf610b42a8c94c826f9e72756281e3ee88e", "fields": {"departement": "94", "stop_lat": 48.79463978887536, "code_postal": "94076", "stop_lon": 2.354205074984419, "coord": [48.79463978887536, 2.354205074984419], "stop_id": 5161534, "stop_desc": "6-8 RUE DE VERDUN - 94076", "stop_name": "INSTITUT GUSTAVE ROUSSY"}, "geometry": {"type": "Point", "coordinates": [2.354205074984419, 48.79463978887536]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9ce5dc8dad32600b0e8b8870830110275009d952", "fields": {"departement": "92", "stop_lat": 48.811217620547396, "code_postal": "92020", "stop_lon": 2.299764105927095, "coord": [48.811217620547396, 2.299764105927095], "stop_id": 5221748, "stop_desc": "AVENUE PIERRE BROSSOLETTE - 92020", "stop_name": "CHATILLON-MONTROUGE"}, "geometry": {"type": "Point", "coordinates": [2.299764105927095, 48.811217620547396]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "33c4be246cf900917bef96008325f4cf05105c90", "fields": {"departement": "92", "stop_lat": 48.81128070086906, "code_postal": "92020", "stop_lon": 2.3002947806132377, "coord": [48.81128070086906, 2.3002947806132377], "stop_id": 5221749, "stop_desc": "204 AVENUE DE PARIS - 92020", "stop_name": "CHATILLON-MONTROUGE"}, "geometry": {"type": "Point", "coordinates": [2.3002947806132377, 48.81128070086906]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "543d25ddd4bb4a67ff9585061c16979a7b8f6dc4", "fields": {"departement": "92", "stop_lat": 48.809392030314854, "code_postal": "92020", "stop_lon": 2.2964995723194335, "coord": [48.809392030314854, 2.2964995723194335], "stop_id": 5221751, "stop_desc": "20 R MARCELIN BERTHELOT - 92020", "stop_name": "MARCELIN BERTHELOT"}, "geometry": {"type": "Point", "coordinates": [2.2964995723194335, 48.809392030314854]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "47a2eb1fd802b798b7a50d2e69bd58f2d59c4e11", "fields": {"departement": "92", "stop_lat": 48.80801371203143, "code_postal": "92020", "stop_lon": 2.288064093805718, "coord": [48.80801371203143, 2.288064093805718], "stop_id": 5221755, "stop_desc": "R D'AYWAILLE - 92020", "stop_name": "STADE DE CHATILLON"}, "geometry": {"type": "Point", "coordinates": [2.288064093805718, 48.80801371203143]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "86897c1b21407623073a60dc8e499d92750e346e", "fields": {"departement": "92", "stop_lat": 48.80210842496292, "code_postal": "92020", "stop_lon": 2.2873485804549465, "coord": [48.80210842496292, 2.2873485804549465], "stop_id": 5221758, "stop_desc": "34 RUE GABRIEL PERI - 92020", "stop_name": "CENTRE DE CHATILLON - MARCHE"}, "geometry": {"type": "Point", "coordinates": [2.2873485804549465, 48.80210842496292]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4537d19af32c1875365d541508ccd20af6ea2d8a", "fields": {"departement": "92", "stop_lat": 48.801910761177105, "code_postal": "92020", "stop_lon": 2.2875120395185693, "coord": [48.801910761177105, 2.2875120395185693], "stop_id": 5221759, "stop_desc": "21 AVENUE GABRIEL PERI - 92020", "stop_name": "CENTRE DE CHATILLON - MARCHE"}, "geometry": {"type": "Point", "coordinates": [2.2875120395185693, 48.801910761177105]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cd1655e277733d5d0b8a4b43979a34941cfb4aa6", "fields": {"departement": "92", "stop_lat": 48.79971713568461, "code_postal": "92020", "stop_lon": 2.2861128071739714, "coord": [48.79971713568461, 2.2861128071739714], "stop_id": 5221761, "stop_desc": "3 RUE D'ESTIENNE D'ORVES - 92020", "stop_name": "D'ESTIENNE D'ORVES - DIVISION LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.2861128071739714, 48.79971713568461]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aae5330b7e860f99750053b304b25d60008a06cb", "fields": {"departement": "92", "stop_lat": 48.78306061174014, "code_postal": "92032", "stop_lon": 2.2817905454624388, "coord": [48.78306061174014, 2.2817905454624388], "stop_id": 5221774, "stop_desc": "33 AVENUE JULES GUESDES - 92032", "stop_name": "CARREFOUR DES MOUILLEBOEUFS"}, "geometry": {"type": "Point", "coordinates": [2.2817905454624388, 48.78306061174014]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f47e42a4091e8416d590217d247054d27c02a24e", "fields": {"departement": "92", "stop_lat": 48.76668861303903, "code_postal": "92019", "stop_lon": 2.2722904474309713, "coord": [48.76668861303903, 2.2722904474309713], "stop_id": 5221785, "stop_desc": "134 AVENUE ROGER SALENGRO - 92019", "stop_name": "JULES VERNE"}, "geometry": {"type": "Point", "coordinates": [2.2722904474309713, 48.76668861303903]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a6cf9e94a0b055aec01a5a905b2372a1c9cd9ab0", "fields": {"departement": "92", "stop_lat": 48.78549509334643, "code_postal": "92060", "stop_lon": 2.279162864594655, "coord": [48.78549509334643, 2.279162864594655], "stop_id": 5221792, "stop_desc": "29-29 BIS AVENUE RAYMOND CROLAND - 92060", "stop_name": "PASTEUR"}, "geometry": {"type": "Point", "coordinates": [2.279162864594655, 48.78549509334643]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e126ffdedfb0cf35d94c850c30f18b7c2857bac3", "fields": {"departement": "92", "stop_lat": 48.81550629521654, "code_postal": "92049", "stop_lon": 2.3049461590607536, "coord": [48.81550629521654, 2.3049461590607536], "stop_id": 5221796, "stop_desc": "135-137 AVENUE PIERRE BROSSOLETTE - 92049", "stop_name": "AUGUSTIN DUMONT"}, "geometry": {"type": "Point", "coordinates": [2.3049461590607536, 48.81550629521654]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ad2e0812ec2906847be3d08b9214b51a1e3036b0", "fields": {"departement": "93", "stop_lat": 48.865205487157176, "code_postal": "93049", "stop_lon": 2.514713328014915, "coord": [48.865205487157176, 2.514713328014915], "stop_id": 4109768, "stop_desc": "11-13 RUE ALEXANDRE FLEMING - 93049", "stop_name": "MARCEL DASSAULT"}, "geometry": {"type": "Point", "coordinates": [2.514713328014915, 48.865205487157176]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9b699f7b7495862b5e437a1d579d42aa9063dafa", "fields": {"departement": "93", "stop_lat": 48.865380673252176, "code_postal": "93049", "stop_lon": 2.5117169904808576, "coord": [48.865380673252176, 2.5117169904808576], "stop_id": 4109771, "stop_desc": "AVENUE DU PRESIDENT KENNEDY - 93049", "stop_name": "KENNEDY - RENOUILLERES"}, "geometry": {"type": "Point", "coordinates": [2.5117169904808576, 48.865380673252176]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4a69560adcfb68b7754cd1185fec1ee3c31f7299", "fields": {"departement": "93", "stop_lat": 48.86682609695278, "code_postal": "93049", "stop_lon": 2.506558805141858, "coord": [48.86682609695278, 2.506558805141858], "stop_id": 4109775, "stop_desc": "FACE 34 R DU BOIS D'AVRON - 93049", "stop_name": "ETIENNE DOLET"}, "geometry": {"type": "Point", "coordinates": [2.506558805141858, 48.86682609695278]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "49360ddc8f2429c8e07ff48d7ff7f3bc40597d70", "fields": {"departement": "93", "stop_lat": 48.86974875272819, "code_postal": "93049", "stop_lon": 2.5053149784562296, "coord": [48.86974875272819, 2.5053149784562296], "stop_id": 4109778, "stop_desc": "5/7 AVENUE DES FAUVETTES - 93049", "stop_name": "BEL AIR"}, "geometry": {"type": "Point", "coordinates": [2.5053149784562296, 48.86974875272819]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "614c679050dc50e39a841b14d08ab360e7f889c3", "fields": {"departement": "93", "stop_lat": 48.8724950718098, "code_postal": "93049", "stop_lon": 2.50799424485917, "coord": [48.8724950718098, 2.50799424485917], "stop_id": 4109779, "stop_desc": "22/24 AVENUE DES FAUVETTES - 93049", "stop_name": "AVENUE DE ROSNY"}, "geometry": {"type": "Point", "coordinates": [2.50799424485917, 48.8724950718098]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eac9987fcb08c9b8733d726e7bdc65f767f78647", "fields": {"departement": "93", "stop_lat": 48.873102529612815, "code_postal": "93049", "stop_lon": 2.510544020933321, "coord": [48.873102529612815, 2.510544020933321], "stop_id": 4109782, "stop_desc": "21 PLACE DE STALINGRAD - ROND POINT D'AVRON - 93049", "stop_name": "PLATEAU D'AVRON - PLACE DE STALINGRAD"}, "geometry": {"type": "Point", "coordinates": [2.510544020933321, 48.873102529612815]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "312283a9508208a730a36ba737ff9d7cba2a3ee6", "fields": {"departement": "93", "stop_lat": 48.87614406453188, "code_postal": "93049", "stop_lon": 2.5078972601825775, "coord": [48.87614406453188, 2.5078972601825775], "stop_id": 4109783, "stop_desc": "FACE 44 AVENUE DU BOIS CHATEL - 93049", "stop_name": "PARMENTIER"}, "geometry": {"type": "Point", "coordinates": [2.5078972601825775, 48.87614406453188]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "067b94ffac191e44536836916d1a677cd1fb81a1", "fields": {"departement": "93", "stop_lat": 48.88067815707822, "code_postal": "93077", "stop_lon": 2.5110053918056376, "coord": [48.88067815707822, 2.5110053918056376], "stop_id": 4109784, "stop_desc": "47-49 RUE MARC VIEVILLE - 93077", "stop_name": "MARCEL DOURET"}, "geometry": {"type": "Point", "coordinates": [2.5110053918056376, 48.88067815707822]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "21bb2230ba015b22a7ed1a57c430571557a20346", "fields": {"departement": "93", "stop_lat": 48.881557391305314, "code_postal": "93077", "stop_lon": 2.512043967390997, "coord": [48.881557391305314, 2.512043967390997], "stop_id": 4109785, "stop_desc": "31-33 AVENUE ALBERT TROTTIN - 93077", "stop_name": "HOCHE"}, "geometry": {"type": "Point", "coordinates": [2.512043967390997, 48.881557391305314]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "40344213fd8f7b03a2e49dcccbad25c0fa1e2bb1", "fields": {"departement": "93", "stop_lat": 48.88388732971967, "code_postal": "93077", "stop_lon": 2.5105119386049104, "coord": [48.88388732971967, 2.5105119386049104], "stop_id": 4109787, "stop_desc": "RUE GRANDE RUE - 93077", "stop_name": "CHATEAU DE VILLEMOMBLE"}, "geometry": {"type": "Point", "coordinates": [2.5105119386049104, 48.88388732971967]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1c623c0402579200c55787cc645178b3cbeaf4e0", "fields": {"departement": "93", "stop_lat": 48.88860469341403, "code_postal": "93077", "stop_lon": 2.511154620649264, "coord": [48.88860469341403, 2.511154620649264], "stop_id": 4109790, "stop_desc": "34 AVENUE OUTREBON - 93077", "stop_name": "LE RAINCY-VILLEMOMBLE-MONTFERMEIL RER"}, "geometry": {"type": "Point", "coordinates": [2.511154620649264, 48.88860469341403]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b024764553436354c99dd04397339f2df0517c74", "fields": {"departement": "93", "stop_lat": 48.89156812243444, "code_postal": "93077", "stop_lon": 2.506544223680874, "coord": [48.89156812243444, 2.506544223680874], "stop_id": 4109795, "stop_desc": "43-45 AVENUE DU GENERAL GALLIENI - 93077", "stop_name": "MARIUS GONIN"}, "geometry": {"type": "Point", "coordinates": [2.506544223680874, 48.89156812243444]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1c265e32b6e85601a95560b6f454e653219ebdc7", "fields": {"departement": "93", "stop_lat": 48.89323600952376, "code_postal": "93077", "stop_lon": 2.502801487969641, "coord": [48.89323600952376, 2.502801487969641], "stop_id": 4109797, "stop_desc": "94 AVENUE DU GENERAL GALLIENI - 93077", "stop_name": "LES COQUETIERS"}, "geometry": {"type": "Point", "coordinates": [2.502801487969641, 48.89323600952376]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "48822a631d05d578805c0c69b99f047671877f5e", "fields": {"departement": "93", "stop_lat": 48.87463720617038, "code_postal": "93049", "stop_lon": 2.512020636749665, "coord": [48.87463720617038, 2.512020636749665], "stop_id": 4109813, "stop_desc": "33 BIS AVENUE ARISTIDE BRIAND - 93049", "stop_name": "CAVES D'AVRON"}, "geometry": {"type": "Point", "coordinates": [2.512020636749665, 48.87463720617038]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1f3aead133bf470ae71015f038c4f347ffc5f17a", "fields": {"departement": "93", "stop_lat": 48.865205487157176, "code_postal": "93049", "stop_lon": 2.514713328014915, "coord": [48.865205487157176, 2.514713328014915], "stop_id": 4109821, "stop_desc": "11-13 RUE ALEXANDRE FLEMING - 93049", "stop_name": "MARCEL DASSAULT"}, "geometry": {"type": "Point", "coordinates": [2.514713328014915, 48.865205487157176]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7b7ab4e638c57fb01e159aa4df7fbabbd266ea84", "fields": {"departement": "92", "stop_lat": 48.882414733772684, "code_postal": "92050", "stop_lon": 2.199432315918497, "coord": [48.882414733772684, 2.199432315918497], "stop_id": 4109833, "stop_desc": "FACE 38 R DU DOCTEUR CHARCOT - 92050", "stop_name": "DOCTEUR CHARCOT"}, "geometry": {"type": "Point", "coordinates": [2.199432315918497, 48.882414733772684]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1652e1c9e5a4d52e8aa6b2659734391da64c7d64", "fields": {"departement": "92", "stop_lat": 48.878651556217484, "code_postal": "92063", "stop_lon": 2.193923824597682, "coord": [48.878651556217484, 2.193923824597682], "stop_id": 4109837, "stop_desc": "6-8 R GAMBETTA - 92063", "stop_name": "DANTON - GAMBETTA"}, "geometry": {"type": "Point", "coordinates": [2.193923824597682, 48.878651556217484]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3fefe0482aac29e0a0193a43480305b9d9b77821", "fields": {"departement": "92", "stop_lat": 48.87477217303847, "code_postal": "92063", "stop_lon": 2.1965505295283134, "coord": [48.87477217303847, 2.1965505295283134], "stop_id": 4109843, "stop_desc": "31 R VOLTAIRE - 92063", "stop_name": "LE BRIX"}, "geometry": {"type": "Point", "coordinates": [2.1965505295283134, 48.87477217303847]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bcc47aa6da478b3789ee866bd54d5e6209f79ee3", "fields": {"departement": "92", "stop_lat": 48.87266704184456, "code_postal": "92063", "stop_lon": 2.1947850777900255, "coord": [48.87266704184456, 2.1947850777900255], "stop_id": 4109844, "stop_desc": "54 RUE DES BONS RAISINS - 92063", "stop_name": "LES GODARDES"}, "geometry": {"type": "Point", "coordinates": [2.1947850777900255, 48.87266704184456]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "892cf343bf2b6f55911c37131b07a4769201e612", "fields": {"departement": "92", "stop_lat": 48.87044862023422, "code_postal": "92063", "stop_lon": 2.1960036880384797, "coord": [48.87044862023422, 2.1960036880384797], "stop_id": 4109846, "stop_desc": "FACE 83 AVENUE DU PRESIDENT POMPIDOU - 92063", "stop_name": "LA PAIX"}, "geometry": {"type": "Point", "coordinates": [2.1960036880384797, 48.87044862023422]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "12c871ee0db6a6e935d12d2fd928375b7d366dab", "fields": {"departement": "92", "stop_lat": 48.87060156604863, "code_postal": "92063", "stop_lon": 2.1961395093841154, "coord": [48.87060156604863, 2.1961395093841154], "stop_id": 4109847, "stop_desc": "83 AVENUE DU PRESIDENT POMPIDOU - 92063", "stop_name": "LA PAIX"}, "geometry": {"type": "Point", "coordinates": [2.1961395093841154, 48.87060156604863]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "992f2352f4cfe5a47cf837b432a93a466652d83a", "fields": {"departement": "92", "stop_lat": 48.870173404903845, "code_postal": "92073", "stop_lon": 2.2244779366653864, "coord": [48.870173404903845, 2.2244779366653864], "stop_id": 4109861, "stop_desc": "24 AV DU GENERAL CHARLES DE GAULLE - 92073", "stop_name": "SURESNES DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.2244779366653864, 48.870173404903845]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1e7ab868ca3b8970e40d9dc17990262bafe72a24", "fields": {"departement": "92", "stop_lat": 48.883352634097406, "code_postal": "92050", "stop_lon": 2.202250642322521, "coord": [48.883352634097406, 2.202250642322521], "stop_id": 4109865, "stop_desc": "29 R PIERRE SERGENT - 92050", "stop_name": "ECOLE JULES FERRY"}, "geometry": {"type": "Point", "coordinates": [2.202250642322521, 48.883352634097406]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a6dfe1a468560a809d0afac6108fe4f883988440", "fields": {"departement": "93", "stop_lat": 48.87823740419263, "code_postal": "93048", "stop_lon": 2.456807367682315, "coord": [48.87823740419263, 2.456807367682315], "stop_id": 4117621, "stop_desc": "99 BOULEVARD DE LA BOISSIERE - 93048", "stop_name": "LA BOISSIERE"}, "geometry": {"type": "Point", "coordinates": [2.456807367682315, 48.87823740419263]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bb89e109ebc4892705ffd778d0f866249e694901", "fields": {"departement": "93", "stop_lat": 48.87740504008273, "code_postal": "93048", "stop_lon": 2.462201179047303, "coord": [48.87740504008273, 2.462201179047303], "stop_id": 4117623, "stop_desc": "183 BOULEVARD DE LA BOISSIERE - 93048", "stop_name": "SALVADOR ALLENDE"}, "geometry": {"type": "Point", "coordinates": [2.462201179047303, 48.87740504008273]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "88239cfbba1d8417e22427424a5375f65fa198be", "fields": {"departement": "93", "stop_lat": 48.88488920802624, "code_postal": "93053", "stop_lon": 2.4643042349508852, "coord": [48.88488920802624, 2.4643042349508852], "stop_id": 4117626, "stop_desc": "R DE NEUILLY - 93053", "stop_name": "ELSA TRIOLET"}, "geometry": {"type": "Point", "coordinates": [2.4643042349508852, 48.88488920802624]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9fe6cb5ef1a7f8f9f7f18c99f8038ece5cd85499", "fields": {"departement": "93", "stop_lat": 48.88493472394691, "code_postal": "93053", "stop_lon": 2.463759243971333, "coord": [48.88493472394691, 2.463759243971333], "stop_id": 4117627, "stop_desc": "R DE NEUILLY - 93053", "stop_name": "ELSA TRIOLET"}, "geometry": {"type": "Point", "coordinates": [2.463759243971333, 48.88493472394691]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fdad4510f6fff7d2160e441297f540ddf201ae8e", "fields": {"departement": "93", "stop_lat": 48.88070878992166, "code_postal": "93053", "stop_lon": 2.4569220789153263, "coord": [48.88070878992166, 2.4569220789153263], "stop_id": 4117631, "stop_desc": "R DE LA FONTAINE - 93053", "stop_name": "ECOLE BOISSIERE"}, "geometry": {"type": "Point", "coordinates": [2.4569220789153263, 48.88070878992166]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "af1437cd7fc9506a9d58d0a129c33f44d99941ad", "fields": {"departement": "93", "stop_lat": 48.88062942747261, "code_postal": "93053", "stop_lon": 2.4553957355911975, "coord": [48.88062942747261, 2.4553957355911975], "stop_id": 4117633, "stop_desc": "R DE LA PLACE SAINT-MARTIN - 93053", "stop_name": "PLACE SAINT-MARTIN"}, "geometry": {"type": "Point", "coordinates": [2.4553957355911975, 48.88062942747261]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c7e7f50473edd988792ea6a465942b91834007a3", "fields": {"departement": "93", "stop_lat": 48.88072649043355, "code_postal": "93053", "stop_lon": 2.457194648884054, "coord": [48.88072649043355, 2.457194648884054], "stop_id": 4117634, "stop_desc": "R DE LA FONTAINE - 93053", "stop_name": "ECOLE BOISSIERE."}, "geometry": {"type": "Point", "coordinates": [2.457194648884054, 48.88072649043355]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a9e8de832ab020deeda631c337f73b1be98e42cf", "fields": {"departement": "93", "stop_lat": 48.883447002853245, "code_postal": "93053", "stop_lon": 2.459776479032739, "coord": [48.883447002853245, 2.459776479032739], "stop_id": 4117636, "stop_desc": "AV DU 18 AVRIL 1944 - 93053", "stop_name": "NOUVEAU CIMETIERE."}, "geometry": {"type": "Point", "coordinates": [2.459776479032739, 48.883447002853245]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ef283d3165959cb5a26c6467a9b3c57b486e1290", "fields": {"departement": "93", "stop_lat": 48.88766530831091, "code_postal": "93053", "stop_lon": 2.456529291588347, "coord": [48.88766530831091, 2.456529291588347], "stop_id": 4117640, "stop_desc": "1 BOULEVARD ROGER SALENGRO - 93053", "stop_name": "SALENGRO - AUFFRET"}, "geometry": {"type": "Point", "coordinates": [2.456529291588347, 48.88766530831091]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5d4d896fea03c23be24ac10eaeb1de7309bebf55", "fields": {"departement": "93", "stop_lat": 48.87668108109102, "code_postal": "93048", "stop_lon": 2.4668593190266086, "coord": [48.87668108109102, 2.4668593190266086], "stop_id": 4117650, "stop_desc": "227 BOULEVARD DE LA BOISSIERE - 93048", "stop_name": "ETIENNE DOLET"}, "geometry": {"type": "Point", "coordinates": [2.4668593190266086, 48.87668108109102]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8d9b576bc36ffa6b4c7ac8ca613270521ab6ea90", "fields": {"departement": "93", "stop_lat": 48.87189747306247, "code_postal": "93063", "stop_lon": 2.441819826571986, "coord": [48.87189747306247, 2.441819826571986], "stop_id": 4117654, "stop_desc": "84 AV BERLIOZ - 93063", "stop_name": "OSERAIES"}, "geometry": {"type": "Point", "coordinates": [2.441819826571986, 48.87189747306247]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dfd8e9d5f54d6453bec5b3312a7caf37b01c399b", "fields": {"departement": "93", "stop_lat": 48.90717445316718, "code_postal": "93008", "stop_lon": 2.4492666955791327, "coord": [48.90717445316718, 2.4492666955791327], "stop_id": 4117655, "stop_desc": "PISTE GARE ROUTIERE - 93008", "stop_name": "BOBIGNY - PABLO PICASSO"}, "geometry": {"type": "Point", "coordinates": [2.4492666955791327, 48.90717445316718]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "112f642cf507e1ae43b5586b9ec88f351a19fa27", "fields": {"departement": "93", "stop_lat": 48.910269160707436, "code_postal": "93008", "stop_lon": 2.445851196538282, "coord": [48.910269160707436, 2.445851196538282], "stop_id": 4117658, "stop_desc": "AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "PIERRE SEMARD"}, "geometry": {"type": "Point", "coordinates": [2.445851196538282, 48.910269160707436]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a734f21d9c6d93974091d8f65fe912df79517717", "fields": {"departement": "93", "stop_lat": 48.91212795519052, "code_postal": "93008", "stop_lon": 2.4373197639788775, "coord": [48.91212795519052, 2.4373197639788775], "stop_id": 4117663, "stop_desc": "AV PAUL VAILLANT COUTURIER - 93008", "stop_name": "ESCADRILLE NORMANDIE NIEMEN - PAUL VAILLANT COUTURIER-TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.4373197639788775, 48.91212795519052]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8c3207e2fc21f9ec6b656f87064877cca51a10b0", "fields": {"departement": "93", "stop_lat": 48.92730328852421, "code_postal": "93029", "stop_lon": 2.451410591017012, "coord": [48.92730328852421, 2.451410591017012], "stop_id": 4117678, "stop_desc": "92 RUE ANATOLE FRANCE - 93029", "stop_name": "HENRI ROUANET"}, "geometry": {"type": "Point", "coordinates": [2.451410591017012, 48.92730328852421]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7b2a1ded56de27af043ba86405171e9c043cca11", "fields": {"departement": "93", "stop_lat": 48.94761553926856, "code_postal": "93007", "stop_lon": 2.4585093604450625, "coord": [48.94761553926856, 2.4585093604450625], "stop_id": 4117694, "stop_desc": "AVENUE DES COSMONAUTES - 93007", "stop_name": "ROND-POINT DE LA DIVISION LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.4585093604450625, 48.94761553926856]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d5b4f0afd1b662d1356cd79e5428593dca175ee6", "fields": {"departement": "93", "stop_lat": 48.94925358279104, "code_postal": "93007", "stop_lon": 2.4560708330054455, "coord": [48.94925358279104, 2.4560708330054455], "stop_id": 4117695, "stop_desc": "FACE 25 AVENUE DES COSMONAUTES - 93007", "stop_name": "COSMONAUTES"}, "geometry": {"type": "Point", "coordinates": [2.4560708330054455, 48.94925358279104]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1c238a31266d5d62f1ff7e4b5395ab81c0353aeb", "fields": {"departement": "93", "stop_lat": 48.947856114733135, "code_postal": "93007", "stop_lon": 2.4514968442269582, "coord": [48.947856114733135, 2.4514968442269582], "stop_id": 4117698, "stop_desc": "RUE MAURICE AUDIN - 93007", "stop_name": "ALTRINCHAM"}, "geometry": {"type": "Point", "coordinates": [2.4514968442269582, 48.947856114733135]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5866168f062117b2cb4589f67c294336052045a1", "fields": {"departement": "93", "stop_lat": 48.946208408052776, "code_postal": "93007", "stop_lon": 2.4452034680663712, "coord": [48.946208408052776, 2.4452034680663712], "stop_id": 4117701, "stop_desc": "85 AVENUE NORMANDIE NIEMEN - 93007", "stop_name": "EGLISE SAINT-CHARLES"}, "geometry": {"type": "Point", "coordinates": [2.4452034680663712, 48.946208408052776]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fce99c6db6eac4ca6d9f5399d2d42bb211253ac0", "fields": {"departement": "93", "stop_lat": 48.947391290249065, "code_postal": "93007", "stop_lon": 2.438806899433861, "coord": [48.947391290249065, 2.438806899433861], "stop_id": 4117704, "stop_desc": "7 RUE DES MARTYRS DE LA DEPORTATION - 93007", "stop_name": "MUSEE DE L'AIR ET DE L'ESPACE"}, "geometry": {"type": "Point", "coordinates": [2.438806899433861, 48.947391290249065]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b885b7020bc7c49a3247e82ed89601200da56540", "fields": {"departement": "93", "stop_lat": 48.90939395213068, "code_postal": "93057", "stop_lon": 2.5034530141423437, "coord": [48.90939395213068, 2.5034530141423437], "stop_id": 4118155, "stop_desc": "91 AVENUE ARISTIDE BRIAND - 93057", "stop_name": "EGLISE DES PAVILLONS-SOUS-BOIS"}, "geometry": {"type": "Point", "coordinates": [2.5034530141423437, 48.90939395213068]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d10b14c1ae2314adbec78381aa0e1a841acb087f", "fields": {"departement": "93", "stop_lat": 48.906307579968086, "code_postal": "93010", "stop_lon": 2.470723452889686, "coord": [48.906307579968086, 2.470723452889686], "stop_id": 4118160, "stop_desc": "16-18 CHEMIN DE GROSLAY - 93010", "stop_name": "PONT DE BONDY - ANATOLE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.470723452889686, 48.906307579968086]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fda92a72b6c19f329f6cad8103eefab092afc525", "fields": {"departement": "93", "stop_lat": 48.9178455076262, "code_postal": "93010", "stop_lon": 2.4797258174982626, "coord": [48.9178455076262, 2.4797258174982626], "stop_id": 4118162, "stop_desc": "AV LEON JOUHAUX - 93010", "stop_name": "JOUHAUX-BLUM"}, "geometry": {"type": "Point", "coordinates": [2.4797258174982626, 48.9178455076262]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0d8b4df05711b41a1e8e26cb74867d506a54478d", "fields": {"departement": "94", "stop_lat": 48.756961219677066, "code_postal": "94034", "stop_lon": 2.315300390249999, "coord": [48.756961219677066, 2.315300390249999], "stop_id": 4124808, "stop_desc": "FACE 65 BD PASTEUR - 94034", "stop_name": "LA PEUPLERAIE"}, "geometry": {"type": "Point", "coordinates": [2.315300390249999, 48.756961219677066]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "93a028556e3c83402010cfb1e4291c2d3c132df5", "fields": {"departement": "94", "stop_lat": 48.75394078602335, "code_postal": "94034", "stop_lon": 2.313167534233875, "coord": [48.75394078602335, 2.313167534233875], "stop_id": 4124809, "stop_desc": "87-85 BOULEVARD JEAN JAURES - 94034", "stop_name": "PASTEUR."}, "geometry": {"type": "Point", "coordinates": [2.313167534233875, 48.75394078602335]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "341f804eba5c998fd407ca21f96b8cf0066dfb2c", "fields": {"departement": "94", "stop_lat": 48.77068778511185, "code_postal": "94038", "stop_lon": 2.3290009485512337, "coord": [48.77068778511185, 2.3290009485512337], "stop_id": 4124815, "stop_desc": "RUE DE CHALAIS - 94038", "stop_name": "BLONDEAUX - ECOLES"}, "geometry": {"type": "Point", "coordinates": [2.3290009485512337, 48.77068778511185]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "47436c5fb23500275d82553c648f48cb38c0fee9", "fields": {"departement": "94", "stop_lat": 48.78029624321282, "code_postal": "94038", "stop_lon": 2.3352690648867527, "coord": [48.78029624321282, 2.3352690648867527], "stop_id": 4124819, "stop_desc": "AVENUE ARISTIDE BRIAND - 94038", "stop_name": "RUE DES JARDINS"}, "geometry": {"type": "Point", "coordinates": [2.3352690648867527, 48.78029624321282]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "87b365ad78b2107eba54d61ad6022d0467c481ea", "fields": {"departement": "94", "stop_lat": 48.790164885806014, "code_postal": "94016", "stop_lon": 2.3315007465699185, "coord": [48.790164885806014, 2.3315007465699185], "stop_id": 4124822, "stop_desc": "FACE 1 AV DE LA DIVISION LECLERC - 94016", "stop_name": "DIVISION LECLERC - CAMILLE DESMOULINS"}, "geometry": {"type": "Point", "coordinates": [2.3315007465699185, 48.790164885806014]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d23fb5b25ac3c9662ac599f5d28baa2a858d8ba2", "fields": {"departement": "94", "stop_lat": 48.80106725506398, "code_postal": "94003", "stop_lon": 2.3334995522272375, "coord": [48.80106725506398, 2.3334995522272375], "stop_id": 4124825, "stop_desc": "38 AVENUE DE LA CONVENTION - 94003", "stop_name": "CITE JARDINS"}, "geometry": {"type": "Point", "coordinates": [2.3334995522272375, 48.80106725506398]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f426eeb0ec8debe6f2280b770106683bbbb60ab5", "fields": {"departement": "94", "stop_lat": 48.81175347724286, "code_postal": "94037", "stop_lon": 2.3460592717364808, "coord": [48.81175347724286, 2.3460592717364808], "stop_id": 4124829, "stop_desc": "FACE 70 AV RASPAIL - 94037", "stop_name": "BOUT DU RANG - PICASSO"}, "geometry": {"type": "Point", "coordinates": [2.3460592717364808, 48.81175347724286]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f5e59a539139f6b990809ad8fd3f6b3ffbe9f458", "fields": {"departement": "92", "stop_lat": 48.89146575447876, "code_postal": "92050", "stop_lon": 2.2082536517344415, "coord": [48.89146575447876, 2.2082536517344415], "stop_id": 4130515, "stop_desc": "96 AVENUE FREDERIC ET IRENE JOLIOT CURIE - 92050", "stop_name": "MAIRIE DE NANTERRE"}, "geometry": {"type": "Point", "coordinates": [2.2082536517344415, 48.89146575447876]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "52e075ad896c09600442a726f03f5d9c16e02ce0", "fields": {"departement": "93", "stop_lat": 48.99158529799905, "code_postal": "93073", "stop_lon": 2.528488506041771, "coord": [48.99158529799905, 2.528488506041771], "stop_id": 4146095, "stop_desc": "ROUTE DU MIDI - 93073", "stop_name": "RUE DU TE"}, "geometry": {"type": "Point", "coordinates": [2.528488506041771, 48.99158529799905]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9ae50e8864919e151a7fd004a245f6e338f24520", "fields": {"departement": "93", "stop_lat": 48.989618845747074, "code_postal": "93073", "stop_lon": 2.5274980640072955, "coord": [48.989618845747074, 2.5274980640072955], "stop_id": 4146096, "stop_desc": "RUE DE LA BELLE BORNE - 93073", "stop_name": "AEROVILLE - RUE DE LA BELLE BORNE"}, "geometry": {"type": "Point", "coordinates": [2.5274980640072955, 48.989618845747074]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9a8aff8055c9d046a1ddad60e495a2a1896b4057", "fields": {"departement": "93", "stop_lat": 48.928463917414284, "code_postal": "93007", "stop_lon": 2.4756360440448932, "coord": [48.928463917414284, 2.4756360440448932], "stop_id": 4146098, "stop_desc": "42 AVENUE PAUL VAILLANT COUTURIER - 93007", "stop_name": "QUEBEC"}, "geometry": {"type": "Point", "coordinates": [2.4756360440448932, 48.928463917414284]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "70a017694c2ca1e42d1040ea8304727a6185722b", "fields": {"departement": "95", "stop_lat": 48.998886851137584, "code_postal": "95527", "stop_lon": 2.525606434259353, "coord": [48.998886851137584, 2.525606434259353], "stop_id": 4146121, "stop_desc": "RUE DES 2 CEDRES - 95527", "stop_name": "CARGO CENTRE"}, "geometry": {"type": "Point", "coordinates": [2.525606434259353, 48.998886851137584]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2cbf2d1d3d55c6acd65835cfd0319cd1f330a798", "fields": {"departement": "93", "stop_lat": 48.92114424225198, "code_postal": "93007", "stop_lon": 2.471538997805475, "coord": [48.92114424225198, 2.471538997805475], "stop_id": 4146131, "stop_desc": "26 AVENUE SURCOUF - 93007", "stop_name": "SURCOUF - JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.471538997805475, 48.92114424225198]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4132d16a3ce5edaa98d65e03fc5d709218151532", "fields": {"departement": "93", "stop_lat": 48.911687882007875, "code_postal": "93010", "stop_lon": 2.4809905365254483, "coord": [48.911687882007875, 2.4809905365254483], "stop_id": 4146136, "stop_desc": "ROUTE D'AULNAY - 93010", "stop_name": "ROUTE D'AULNAY - JEAN MOULIN"}, "geometry": {"type": "Point", "coordinates": [2.4809905365254483, 48.911687882007875]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e61335b60b945dac092a12b3f1330a52af63de03", "fields": {"departement": "75", "stop_lat": 48.853934110216926, "code_postal": "75120", "stop_lon": 2.415171284434349, "coord": [48.853934110216926, 2.415171284434349], "stop_id": 4146142, "stop_desc": "AVENUE BENOIT FRACHON - 75120", "stop_name": "RUE DE PARIS"}, "geometry": {"type": "Point", "coordinates": [2.415171284434349, 48.853934110216926]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "281337806a689db2a95fc163f1b40e33ceb12b7c", "fields": {"departement": "75", "stop_lat": 48.84724208878028, "code_postal": "75120", "stop_lon": 2.4093737313816925, "coord": [48.84724208878028, 2.4093737313816925], "stop_id": 4146145, "stop_desc": "107/109 CRS DE VINCENNES - 75120", "stop_name": "PORTE DE VINCENNES"}, "geometry": {"type": "Point", "coordinates": [2.4093737313816925, 48.84724208878028]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7c99cf7c3d7fc51848b99dc11b7181c26f9f9e1e", "fields": {"departement": "75", "stop_lat": 48.84752230352113, "code_postal": "75120", "stop_lon": 2.406677811879984, "coord": [48.84752230352113, 2.406677811879984], "stop_id": 4146146, "stop_desc": "73 COURS DE VINCENNES - 75120", "stop_name": "PYRENEES - DOCTEUR NETTER"}, "geometry": {"type": "Point", "coordinates": [2.406677811879984, 48.84752230352113]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "62bed3f195426538cf27af1593c7a9e5bbf518ef", "fields": {"departement": "95", "stop_lat": 48.97677817874377, "code_postal": "95585", "stop_lon": 2.3772952252185626, "coord": [48.97677817874377, 2.3772952252185626], "stop_id": 4146219, "stop_desc": "10 AVENUE AUGUSTE PERRET - 95585", "stop_name": "LES FLANADES"}, "geometry": {"type": "Point", "coordinates": [2.3772952252185626, 48.97677817874377]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9f99fe9aacecd600c864e11e17b309c75f5afa33", "fields": {"departement": "93", "stop_lat": 48.97379783150102, "code_postal": "93059", "stop_lon": 2.3662766018518244, "coord": [48.97379783150102, 2.3662766018518244], "stop_id": 4146224, "stop_desc": "BOULEVARD JEAN MERMOZ - 93059", "stop_name": "BUTTE PINSON (PARC REGIONAL)"}, "geometry": {"type": "Point", "coordinates": [2.3662766018518244, 48.97379783150102]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "17d559ba6ca3634415b71af781b75bcf06078d77", "fields": {"departement": "93", "stop_lat": 48.965405151761665, "code_postal": "93059", "stop_lon": 2.3627914674676664, "coord": [48.965405151761665, 2.3627914674676664], "stop_id": 4146227, "stop_desc": "BOULEVARD JEAN MERMOZ - 93059", "stop_name": "ALCIDE D'ORBIGNY"}, "geometry": {"type": "Point", "coordinates": [2.3627914674676664, 48.965405151761665]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7b451538570bc57c8b9a40a9d6b3b03ff39d669e", "fields": {"departement": "93", "stop_lat": 48.95929499672297, "code_postal": "93059", "stop_lon": 2.358926316438496, "coord": [48.95929499672297, 2.358926316438496], "stop_id": 4146232, "stop_desc": "1 RUE JULES VALLES - 93059", "stop_name": "SUZANNE VALADON"}, "geometry": {"type": "Point", "coordinates": [2.358926316438496, 48.95929499672297]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6434be62e1221e5a6177e2509353aa291c7c9ee4", "fields": {"departement": "93", "stop_lat": 48.95232153573259, "code_postal": "93059", "stop_lon": 2.357708966424503, "coord": [48.95232153573259, 2.357708966424503], "stop_id": 4146235, "stop_desc": "178 AVENUE ELISEE RECLUS - 93059", "stop_name": "PETIT PIERREFITTE"}, "geometry": {"type": "Point", "coordinates": [2.357708966424503, 48.95232153573259]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b52a0caf37381e17c93f8cb31dd1d59d97cfc79e", "fields": {"departement": "93", "stop_lat": 48.951665455429655, "code_postal": "93059", "stop_lon": 2.3579952545507568, "coord": [48.951665455429655, 2.3579952545507568], "stop_id": 4146236, "stop_desc": "178 AVENUE ELISEE RECLUS - 93059", "stop_name": "PETIT PIERREFITTE"}, "geometry": {"type": "Point", "coordinates": [2.3579952545507568, 48.951665455429655]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "594b5b8f04e8b2f77e627461a4f5b06002f97fe9", "fields": {"departement": "93", "stop_lat": 48.948214677834336, "code_postal": "93066", "stop_lon": 2.357229796608362, "coord": [48.948214677834336, 2.357229796608362], "stop_id": 4146237, "stop_desc": "32 AVENUE ROGER SEMAT - 93066", "stop_name": "GUYNEMER (STADE AUGUSTE DELAUNE)"}, "geometry": {"type": "Point", "coordinates": [2.357229796608362, 48.948214677834336]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "69422f4bfadb7a818241fd118d39ed07e67b44a8", "fields": {"departement": "93", "stop_lat": 48.944745840677314, "code_postal": "93066", "stop_lon": 2.3569010192632076, "coord": [48.944745840677314, 2.3569010192632076], "stop_id": 4146239, "stop_desc": "6 AVENUE ROGER SEMAT - 93066", "stop_name": "ROGER SEMAT"}, "geometry": {"type": "Point", "coordinates": [2.3569010192632076, 48.944745840677314]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7914d9d110b5fa709ff96e384799332ef94ba045", "fields": {"departement": "77", "stop_lat": 48.855865360078624, "code_postal": "77083", "stop_lon": 2.5904900646456364, "coord": [48.855865360078624, 2.5904900646456364], "stop_id": 4146259, "stop_desc": "FACE 65 BIS AV JEAN JAURES - 77083", "stop_name": "C.S.T.B. - MATTEOTTI"}, "geometry": {"type": "Point", "coordinates": [2.5904900646456364, 48.855865360078624]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e0a04f1b33cba585a90eaafa594d3af9acfc3b3d", "fields": {"departement": "95", "stop_lat": 48.999441959521754, "code_postal": "95680", "stop_lon": 2.414120333542586, "coord": [48.999441959521754, 2.414120333542586], "stop_id": 4179572, "stop_desc": "11 AVENUE ALEXIS VARAGNE - 95680", "stop_name": "LES CARREAUX"}, "geometry": {"type": "Point", "coordinates": [2.414120333542586, 48.999441959521754]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "65a20b10c0a333214017d907cba3af0d296c2139", "fields": {"departement": "95", "stop_lat": 48.99440852255958, "code_postal": "95019", "stop_lon": 2.4157516204620877, "coord": [48.99440852255958, 2.4157516204620877], "stop_id": 4179579, "stop_desc": "PLACE DU GENERAL LECLERC - 95019", "stop_name": "VILLIERS LE BEL - GONESSE - ARNOUVILLE RER."}, "geometry": {"type": "Point", "coordinates": [2.4157516204620877, 48.99440852255958]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f4ce689b5c04a57a488e4c6f2a2ca80c4351c351", "fields": {"departement": "93", "stop_lat": 48.927017769165985, "code_postal": "93027", "stop_lon": 2.379916284235061, "coord": [48.927017769165985, 2.379916284235061], "stop_id": 4179705, "stop_desc": "AVENUE DU GENERAL LECLERC - 93027", "stop_name": "LANGEVIN - WALLON"}, "geometry": {"type": "Point", "coordinates": [2.379916284235061, 48.927017769165985]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "20d41b19af8aa916819ed1ab6f45adc2729ba68a", "fields": {"departement": "93", "stop_lat": 48.929205767472695, "code_postal": "93066", "stop_lon": 2.3659379104403038, "coord": [48.929205767472695, 2.3659379104403038], "stop_id": 4179712, "stop_desc": "RUE JEANNE D'ARC - 93066", "stop_name": "LYCEE SUGER"}, "geometry": {"type": "Point", "coordinates": [2.3659379104403038, 48.929205767472695]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5a719f60644edbcd2686968113d7abab6609a27f", "fields": {"departement": "93", "stop_lat": 48.93691774414246, "code_postal": "93066", "stop_lon": 2.3601855847053614, "coord": [48.93691774414246, 2.3601855847053614], "stop_id": 4179721, "stop_desc": "RUE JEAN JAURES - 93066", "stop_name": "BASILIQUE DE SAINT-DENIS - HOTEL DE VILLE-METRO-TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.3601855847053614, 48.93691774414246]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e6ef118cb7e92a13282e3f494f8ff81431f0ccf2", "fields": {"departement": "93", "stop_lat": 48.93616183950818, "code_postal": "93066", "stop_lon": 2.3649459686549386, "coord": [48.93616183950818, 2.3649459686549386], "stop_id": 4179723, "stop_desc": "45 RUE DE STRASBOURG - 93066", "stop_name": "CIMETIERE DE SAINT-DENIS-TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.3649459686549386, 48.93616183950818]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "84978fb1d2b752b6cff4fc4ec537798def5cdc8e", "fields": {"departement": "93", "stop_lat": 48.9359992182169, "code_postal": "93066", "stop_lon": 2.368424332918886, "coord": [48.9359992182169, 2.368424332918886], "stop_id": 4179725, "stop_desc": "73 BIS RUE DE STRASBOURG - 93066", "stop_name": "AVENUE SAINT-REMY"}, "geometry": {"type": "Point", "coordinates": [2.368424332918886, 48.9359992182169]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8d1d02e93ea4082679bfbd6c49750154612625bf", "fields": {"departement": "93", "stop_lat": 48.94163291703599, "code_postal": "93066", "stop_lon": 2.3721794037230337, "coord": [48.94163291703599, 2.3721794037230337], "stop_id": 4179728, "stop_desc": "48-50 RUE HENRI BARBUSSE - 93066", "stop_name": "CLOVIS HUGUES"}, "geometry": {"type": "Point", "coordinates": [2.3721794037230337, 48.94163291703599]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fd6a36bc3bd0639562d6098340c4eed30dbd8a9b", "fields": {"departement": "93", "stop_lat": 48.945687983690384, "code_postal": "93066", "stop_lon": 2.3643916789956645, "coord": [48.945687983690384, 2.3643916789956645], "stop_id": 4179732, "stop_desc": "AVENUE DE STALINGRAD - 93066", "stop_name": "SAINT-DENIS - UNIVERSITE"}, "geometry": {"type": "Point", "coordinates": [2.3643916789956645, 48.945687983690384]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f5a76aa8ff385ee9321eb5060c21c57b40e68a74", "fields": {"departement": "93", "stop_lat": 48.94948912219902, "code_postal": "93059", "stop_lon": 2.365512523883428, "coord": [48.94948912219902, 2.365512523883428], "stop_id": 4179734, "stop_desc": "RUE TOUSSAINT LOUVERTURE - 93059", "stop_name": "TOUSSAINT LOUVERTURE"}, "geometry": {"type": "Point", "coordinates": [2.365512523883428, 48.94948912219902]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "38b71d41ceb0654450881c44f203cc751d95afcc", "fields": {"departement": "93", "stop_lat": 48.95338671798037, "code_postal": "93072", "stop_lon": 2.375066548881635, "coord": [48.95338671798037, 2.375066548881635], "stop_id": 4179739, "stop_desc": "AV GEORGE SAND - 93072", "stop_name": "CHARLES PEGUY"}, "geometry": {"type": "Point", "coordinates": [2.375066548881635, 48.95338671798037]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "607638c01623b0c8583222ebd87ec6650767c2ff", "fields": {"departement": "93", "stop_lat": 48.95113974453694, "code_postal": "93072", "stop_lon": 2.3759791209412957, "coord": [48.95113974453694, 2.3759791209412957], "stop_id": 4179740, "stop_desc": "6 AVENUE NELSON MANDELA - 93072", "stop_name": "NELSON MANDELA"}, "geometry": {"type": "Point", "coordinates": [2.3759791209412957, 48.95113974453694]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "02d360e4615f40f09bdc86e02f115c04ee3a8449", "fields": {"departement": "93", "stop_lat": 48.95129050133969, "code_postal": "93072", "stop_lon": 2.381764720354321, "coord": [48.95129050133969, 2.381764720354321], "stop_id": 4179742, "stop_desc": "PLACE MARCEL POINTET - 93072", "stop_name": "MARCEL POINTET"}, "geometry": {"type": "Point", "coordinates": [2.381764720354321, 48.95129050133969]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1356325e33e45d516e4d9318954b8d5522e90061", "fields": {"departement": "93", "stop_lat": 48.925353889653785, "code_postal": "93027", "stop_lon": 2.383406288445882, "coord": [48.925353889653785, 2.383406288445882], "stop_id": 4179754, "stop_desc": "5-7 RUE SAINT-JUST - 93027", "stop_name": "SAINT-JUST"}, "geometry": {"type": "Point", "coordinates": [2.383406288445882, 48.925353889653785]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "033b6901ff59445ea4fde0f7ab0d217d5f824757", "fields": {"departement": "94", "stop_lat": 48.80327671942918, "code_postal": "94019", "stop_lon": 2.5500817450343187, "coord": [48.80327671942918, 2.5500817450343187], "stop_id": 4180930, "stop_desc": "AVENUE BOILEAU - 94019", "stop_name": "RABELAIS"}, "geometry": {"type": "Point", "coordinates": [2.5500817450343187, 48.80327671942918]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c1df80ca1934d2bdbbdd1e193180c10f841bbc2f", "fields": {"departement": "94", "stop_lat": 48.8009974528633, "code_postal": "94019", "stop_lon": 2.5480315676302205, "coord": [48.8009974528633, 2.5480315676302205], "stop_id": 4180931, "stop_desc": "35 RUE DU PLESSIS TREVISE - 94019", "stop_name": "GROUPE SCOLAIRE ROUSSEAU"}, "geometry": {"type": "Point", "coordinates": [2.5480315676302205, 48.8009974528633]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3e4d6f279dea88edf7ce0ec34568798226dade42", "fields": {"departement": "94", "stop_lat": 48.813165663031356, "code_postal": "94017", "stop_lon": 2.509772359937948, "coord": [48.813165663031356, 2.509772359937948], "stop_id": 4180941, "stop_desc": "RUE GEORGES DIMITROV - 94017", "stop_name": "MAIRIE DE CHAMPIGNY - MARCHE"}, "geometry": {"type": "Point", "coordinates": [2.509772359937948, 48.813165663031356]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2dc843c5b4979bf1c2c908c5f11dc31b0324d799", "fields": {"departement": "94", "stop_lat": 48.81197817551925, "code_postal": "94017", "stop_lon": 2.510530485291293, "coord": [48.81197817551925, 2.510530485291293], "stop_id": 4180942, "stop_desc": "FACE 4 BIS RUE ALBERT THOMAS - 94017", "stop_name": "MARCHE DE CHAMPIGNY-SUR-MARNE"}, "geometry": {"type": "Point", "coordinates": [2.510530485291293, 48.81197817551925]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cfb82dcb4fd995bd11d087bb93cd13d700a4513a", "fields": {"departement": "93", "stop_lat": 48.86815870458364, "code_postal": "93006", "stop_lon": 2.41885728522245, "coord": [48.86815870458364, 2.41885728522245], "stop_id": 4199317, "stop_desc": "48 RUE SADI CARNOT - 93006", "stop_name": "MAIRIE DE BAGNOLET"}, "geometry": {"type": "Point", "coordinates": [2.41885728522245, 48.86815870458364]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9f8a372f9080f7244a5081bddfefeca3d106ed2f", "fields": {"departement": "93", "stop_lat": 48.86988325648788, "code_postal": "93006", "stop_lon": 2.4203313478936685, "coord": [48.86988325648788, 2.4203313478936685], "stop_id": 4199319, "stop_desc": "6 RUE LENINE - 93006", "stop_name": "EGLISE DE BAGNOLET"}, "geometry": {"type": "Point", "coordinates": [2.4203313478936685, 48.86988325648788]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6d4c5be30b3b08e4071aaa0edcbf4c9e3795e07e", "fields": {"departement": "93", "stop_lat": 48.86561911720595, "code_postal": "93006", "stop_lon": 2.4260595793062243, "coord": [48.86561911720595, 2.4260595793062243], "stop_id": 4199323, "stop_desc": "2 RUE JEAN LOLIVE - 93006", "stop_name": "CHARLES DELESCLUZE"}, "geometry": {"type": "Point", "coordinates": [2.4260595793062243, 48.86561911720595]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "40785482d2dace02d312d9116d49b27c510876e5", "fields": {"departement": "93", "stop_lat": 48.86403433033072, "code_postal": "93048", "stop_lon": 2.4300072633741188, "coord": [48.86403433033072, 2.4300072633741188], "stop_id": 4199327, "stop_desc": "6 RUE DELPECHE - 93048", "stop_name": "DELPECHE"}, "geometry": {"type": "Point", "coordinates": [2.4300072633741188, 48.86403433033072]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aa90f30c0bc3656f3234d2ca3d0adad10545e8ba", "fields": {"departement": "93", "stop_lat": 48.86154477089314, "code_postal": "93048", "stop_lon": 2.440968045628778, "coord": [48.86154477089314, 2.440968045628778], "stop_id": 4199339, "stop_desc": "ENTRE 3-5 BOULEVARD ROUGET DE LISLE - 93048", "stop_name": "MAIRIE DE MONTREUIL"}, "geometry": {"type": "Point", "coordinates": [2.440968045628778, 48.86154477089314]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "62a12fcf3291bb074a9f1a846b945b1428b46533", "fields": {"departement": "93", "stop_lat": 48.861197910106966, "code_postal": "93048", "stop_lon": 2.4562913391114183, "coord": [48.861197910106966, 2.4562913391114183], "stop_id": 4199347, "stop_desc": "1 RUE PAUL DOUMER - 93048", "stop_name": "SAINT-JUST"}, "geometry": {"type": "Point", "coordinates": [2.4562913391114183, 48.861197910106966]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c5391fc3515b30d97dcffdf03a422cae7d7863b4", "fields": {"departement": "93", "stop_lat": 48.86094210965425, "code_postal": "93048", "stop_lon": 2.460377129118468, "coord": [48.86094210965425, 2.460377129118468], "stop_id": 4199348, "stop_desc": "FACE 9 RUE ANATOLE FRANCE - 93048", "stop_name": "LENAIN DE TILLEMONT"}, "geometry": {"type": "Point", "coordinates": [2.460377129118468, 48.86094210965425]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e1217652ea5b89309da70fe4a0ec6a4be4459743", "fields": {"departement": "93", "stop_lat": 48.866939000388406, "code_postal": "93048", "stop_lon": 2.4747089681566665, "coord": [48.866939000388406, 2.4747089681566665], "stop_id": 4199356, "stop_desc": "42 RUE DES BLANCS VILAINS - 93048", "stop_name": "BABEUF"}, "geometry": {"type": "Point", "coordinates": [2.4747089681566665, 48.866939000388406]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5900c3706036c3f5dccd3d12417207b2b3c957b1", "fields": {"departement": "93", "stop_lat": 48.86654076682577, "code_postal": "93048", "stop_lon": 2.477105513509204, "coord": [48.86654076682577, 2.477105513509204], "stop_id": 4199359, "stop_desc": "69 RUE DES BLANCS VILAINS - 93048", "stop_name": "CHARLES DELAVACQUERIE"}, "geometry": {"type": "Point", "coordinates": [2.477105513509204, 48.86654076682577]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a33f0bf209bed76ed158c6f5caacda9fbb719a66", "fields": {"departement": "93", "stop_lat": 48.864264631089206, "code_postal": "93048", "stop_lon": 2.4790745846172895, "coord": [48.864264631089206, 2.4790745846172895], "stop_id": 4199360, "stop_desc": "61 RUE PIERRE BROSSOLETTE - 93048", "stop_name": "LE MORILLON"}, "geometry": {"type": "Point", "coordinates": [2.4790745846172895, 48.864264631089206]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b16bf1a8bbd155efed18bd5e45611b91ab8e102d", "fields": {"departement": "75", "stop_lat": 48.84978931329091, "code_postal": "75106", "stop_lon": 2.342102800318699, "coord": [48.84978931329091, 2.342102800318699], "stop_id": 4036873, "stop_desc": "38 BOULEVARD SAINT-MICHEL - 75106", "stop_name": "LES ECOLES"}, "geometry": {"type": "Point", "coordinates": [2.342102800318699, 48.84978931329091]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d127d85add9217da1cdd1dc68a4ecd3997639a68", "fields": {"departement": "75", "stop_lat": 48.84414524904412, "code_postal": "75106", "stop_lon": 2.3388750838231998, "coord": [48.84414524904412, 2.3388750838231998], "stop_id": 4036875, "stop_desc": "68 BOULEVARD SAINT-MICHEL - 75106", "stop_name": "AUGUSTE COMTE"}, "geometry": {"type": "Point", "coordinates": [2.3388750838231998, 48.84414524904412]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "547441f1e6d08e7c7120ae222e07081863709836", "fields": {"departement": "75", "stop_lat": 48.842078126923646, "code_postal": "75106", "stop_lon": 2.3377448672832224, "coord": [48.842078126923646, 2.3377448672832224], "stop_id": 4036876, "stop_desc": "86 BOULEVARD SAINT MICHEL - 75106", "stop_name": "VAL DE GRACE"}, "geometry": {"type": "Point", "coordinates": [2.3377448672832224, 48.842078126923646]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "92187cbb939d37315713315eee2801cf4a05acee", "fields": {"departement": "75", "stop_lat": 48.841529660225085, "code_postal": "75114", "stop_lon": 2.3298883469474805, "coord": [48.841529660225085, 2.3298883469474805], "stop_id": 4036880, "stop_desc": "201-203 BOULEVARD RASPAIL - 75114", "stop_name": "VAVIN"}, "geometry": {"type": "Point", "coordinates": [2.3298883469474805, 48.841529660225085]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "714721e64626bcb2329f38378b2833c00eaf49af", "fields": {"departement": "75", "stop_lat": 48.8316073794591, "code_postal": "75114", "stop_lon": 2.3299850499497685, "coord": [48.8316073794591, 2.3299850499497685], "stop_id": 4036886, "stop_desc": "32 AVENUE DU GENERAL LECLERC - 75114", "stop_name": "MOUTON - DUVERNET"}, "geometry": {"type": "Point", "coordinates": [2.3299850499497685, 48.8316073794591]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aa1156a1f559434385c0c4455370cc3c645fd0bf", "fields": {"departement": "94", "stop_lat": 48.80906595180364, "code_postal": "94003", "stop_lon": 2.326246107567719, "coord": [48.80906595180364, 2.326246107567719], "stop_id": 4036898, "stop_desc": "24 AVENUE ARISTIDE BRIAND - 94003", "stop_name": "VACHE NOIRE"}, "geometry": {"type": "Point", "coordinates": [2.326246107567719, 48.80906595180364]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fda645800f8db0120f33fa517e4d42f02fb93912", "fields": {"departement": "92", "stop_lat": 48.782711905190155, "code_postal": "92014", "stop_lon": 2.3147998813643778, "coord": [48.782711905190155, 2.3147998813643778], "stop_id": 4036907, "stop_desc": "FACE 43 BOULEVARD DU MARECHAL JOFFRE - 92014", "stop_name": "RUE DU 8 MAI 1945"}, "geometry": {"type": "Point", "coordinates": [2.3147998813643778, 48.782711905190155]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "52cd6b02e3baf28c74426a2f991af93c35729e29", "fields": {"departement": "92", "stop_lat": 48.779934279961125, "code_postal": "92014", "stop_lon": 2.3130602821933905, "coord": [48.779934279961125, 2.3130602821933905], "stop_id": 4036910, "stop_desc": "PISTE PLACE DE LA GARE - 92014", "stop_name": "BOURG-LA-REINE RER"}, "geometry": {"type": "Point", "coordinates": [2.3130602821933905, 48.779934279961125]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e6fa247bfab44ca6a293f26609c960fa93c4038f", "fields": {"departement": "75", "stop_lat": 48.832272512743295, "code_postal": "75114", "stop_lon": 2.3308562345483637, "coord": [48.832272512743295, 2.3308562345483637], "stop_id": 4036920, "stop_desc": "15 AVENUE DU GENERAL LECLERC - 75114", "stop_name": "DENFERT-ROCHEREAU - DAGUERRE"}, "geometry": {"type": "Point", "coordinates": [2.3308562345483637, 48.832272512743295]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2cbc3425f6cb440e3a9faf0041c4f424e9c9f380", "fields": {"departement": "75", "stop_lat": 48.84195229967122, "code_postal": "75105", "stop_lon": 2.338058039954899, "coord": [48.84195229967122, 2.338058039954899], "stop_id": 4036923, "stop_desc": "131 BOULEVARD SAINT MICHEL - 75105", "stop_name": "VAL DE GRACE"}, "geometry": {"type": "Point", "coordinates": [2.338058039954899, 48.84195229967122]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aa03c2d865fdd55ba739f7c0b4c534e4e8c620d9", "fields": {"departement": "75", "stop_lat": 48.85534333466014, "code_postal": "75104", "stop_lon": 2.346107532202977, "coord": [48.85534333466014, 2.346107532202977], "stop_id": 4036928, "stop_desc": "1 BOULEVARD DU PALAIS - 75104", "stop_name": "CITE - PALAIS DE JUSTICE"}, "geometry": {"type": "Point", "coordinates": [2.346107532202977, 48.85534333466014]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b95c3182aacced4a8fd3eb32c260d385cd46dc5a", "fields": {"departement": "75", "stop_lat": 48.86586694331711, "code_postal": "75103", "stop_lon": 2.3524574303330636, "coord": [48.86586694331711, 2.3524574303330636], "stop_id": 4036931, "stop_desc": "84 BOULEVARD DE SEBASTOPOL - 75103", "stop_name": "REAUMUR - SEBASTOPOL"}, "geometry": {"type": "Point", "coordinates": [2.3524574303330636, 48.86586694331711]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e7591d23fe939e55b0ba70c014bd9a94dff11e7e", "fields": {"departement": "75", "stop_lat": 48.872337311493894, "code_postal": "75110", "stop_lon": 2.3560833742278997, "coord": [48.872337311493894, 2.3560833742278997], "stop_id": 4036933, "stop_desc": "32 BOULEVARD DE STRASBOURG - 75110", "stop_name": "CHATEAU D'EAU"}, "geometry": {"type": "Point", "coordinates": [2.3560833742278997, 48.872337311493894]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e8bedd47aa85188a9f9600125a6fc0ff8494ffca", "fields": {"departement": "93", "stop_lat": 48.90748037088362, "code_postal": "93008", "stop_lon": 2.448885619248054, "coord": [48.90748037088362, 2.448885619248054], "stop_id": 4036935, "stop_desc": "PISTE GARE ROUTIERE - 93008", "stop_name": "BOBIGNY - PABLO PICASSO"}, "geometry": {"type": "Point", "coordinates": [2.448885619248054, 48.90748037088362]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "691efe5a9b44d2b7077f65f039771e95ea8b2ca6", "fields": {"departement": "93", "stop_lat": 48.90870213196723, "code_postal": "93008", "stop_lon": 2.4283012006647344, "coord": [48.90870213196723, 2.4283012006647344], "stop_id": 4036948, "stop_desc": "AVENUE HENRI BARBUSSE - 93008", "stop_name": "LYCEE ALFRED COSTES"}, "geometry": {"type": "Point", "coordinates": [2.4283012006647344, 48.90870213196723]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d09bf3ef86425520045aae72bb1b2d970375086d", "fields": {"departement": "93", "stop_lat": 48.90610924485547, "code_postal": "93008", "stop_lon": 2.422379868713123, "coord": [48.90610924485547, 2.422379868713123], "stop_id": 4036949, "stop_desc": "AVENUE HENRI BARBUSSE - 93008", "stop_name": "HENRI GAUTIER"}, "geometry": {"type": "Point", "coordinates": [2.422379868713123, 48.90610924485547]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "af5e3014fbfc5ae39988304a72100ed27175ad08", "fields": {"departement": "93", "stop_lat": 48.90159508814018, "code_postal": "93055", "stop_lon": 2.4129664180362322, "coord": [48.90159508814018, 2.4129664180362322], "stop_id": 4036952, "stop_desc": "FACE 172 AVENUE DU GENERAL LECLERC - 93055", "stop_name": "CIMETIERE PARISIEN"}, "geometry": {"type": "Point", "coordinates": [2.4129664180362322, 48.90159508814018]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "97d53dd88fac9266c97c0bd13a27c1144079a4fc", "fields": {"departement": "93", "stop_lat": 48.89786081877813, "code_postal": "93055", "stop_lon": 2.4057365582595267, "coord": [48.89786081877813, 2.4057365582595267], "stop_id": 4036957, "stop_desc": "AVENUE DU GENERAL LECLERC - 93055", "stop_name": "DELIZY"}, "geometry": {"type": "Point", "coordinates": [2.4057365582595267, 48.89786081877813]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fa3755a7aa626a0b99666230f2e8275dc755d9ea", "fields": {"departement": "93", "stop_lat": 48.896470092374635, "code_postal": "93055", "stop_lon": 2.401645545232717, "coord": [48.896470092374635, 2.401645545232717], "stop_id": 4036959, "stop_desc": "AVENUE DU GENERAL LECLERC - 93055", "stop_name": "PANTIN RER - MAIRIE"}, "geometry": {"type": "Point", "coordinates": [2.401645545232717, 48.896470092374635]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eafff769770eb69f910d743c420ec9e9bb9ba544", "fields": {"departement": "93", "stop_lat": 48.891454882127, "code_postal": "93055", "stop_lon": 2.4023344067333996, "coord": [48.891454882127, 2.4023344067333996], "stop_id": 4036964, "stop_desc": "3 RUE HOCHE - 93055", "stop_name": "HOCHE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.4023344067333996, 48.891454882127]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "83da189c514cb261469f1fc559deb790c5b83df8", "fields": {"departement": "75", "stop_lat": 48.888620105775956, "code_postal": "75119", "stop_lon": 2.392041315664997, "coord": [48.888620105775956, 2.392041315664997], "stop_id": 4036966, "stop_desc": "FACE 208 AVENUE JEAN JAURES - 75119", "stop_name": "PORTE DE PANTIN - METRO"}, "geometry": {"type": "Point", "coordinates": [2.392041315664997, 48.888620105775956]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cfad8efd8b4ffe65e47b560b2500f08601e7c1d2", "fields": {"departement": "75", "stop_lat": 48.88842234356189, "code_postal": "75119", "stop_lon": 2.392136505883537, "coord": [48.88842234356189, 2.392136505883537], "stop_id": 4036967, "stop_desc": "204-206 AVENUE JEAN JAURES - 75119", "stop_name": "PORTE DE PANTIN - METRO"}, "geometry": {"type": "Point", "coordinates": [2.392136505883537, 48.88842234356189]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5df3306c47cd5a3c6d321c6ae4b09122d54b529e", "fields": {"departement": "75", "stop_lat": 48.88590992105624, "code_postal": "75119", "stop_lon": 2.382635265641091, "coord": [48.88590992105624, 2.382635265641091], "stop_id": 4036971, "stop_desc": "112 AVENUE JEAN JAURES - 75119", "stop_name": "JEAN JAURES - LORRAINE"}, "geometry": {"type": "Point", "coordinates": [2.382635265641091, 48.88590992105624]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9c25e14ff681c02eb77bd281cea6e8143241b85a", "fields": {"departement": "75", "stop_lat": 48.85754511242919, "code_postal": "75104", "stop_lon": 2.347864933104723, "coord": [48.85754511242919, 2.347864933104723], "stop_id": 4036986, "stop_desc": "2 PLACE DU CHATELET - 75104", "stop_name": "CHATELET"}, "geometry": {"type": "Point", "coordinates": [2.347864933104723, 48.85754511242919]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "822c756ed8f486743579db8423ad662b0cb481bc", "fields": {"departement": "75", "stop_lat": 48.85415714947943, "code_postal": "75106", "stop_lon": 2.343642207604387, "coord": [48.85415714947943, 2.343642207604387], "stop_id": 4036988, "stop_desc": "FACE 15-17 QUAI DES GRANDS AUGUSTINS - 75106", "stop_name": "SAINT-MICHEL"}, "geometry": {"type": "Point", "coordinates": [2.343642207604387, 48.85415714947943]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2ddc2e324bdfe65877e741f878459de7f3fcc74a", "fields": {"departement": "75", "stop_lat": 48.85768938378177, "code_postal": "75106", "stop_lon": 2.3374453668304107, "coord": [48.85768938378177, 2.3374453668304107], "stop_id": 4036990, "stop_desc": "FACE 23 QUAI DE CONTI - 75106", "stop_name": "PONT DES ARTS - QUAI DE CONTI"}, "geometry": {"type": "Point", "coordinates": [2.3374453668304107, 48.85768938378177]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cd48f33109238601bc76e92ab9a5dcb56aabd173", "fields": {"departement": "75", "stop_lat": 48.846103994722135, "code_postal": "75106", "stop_lon": 2.325870580821929, "coord": [48.846103994722135, 2.325870580821929], "stop_id": 4036998, "stop_desc": "128 RUE DE RENNES - 75106", "stop_name": "RENNES - SAINT-PLACIDE"}, "geometry": {"type": "Point", "coordinates": [2.325870580821929, 48.846103994722135]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0adabf39cdb4772d54c3ac7605afbdf5a240d87b", "fields": {"departement": "75", "stop_lat": 48.84483663038162, "code_postal": "75106", "stop_lon": 2.3246317107880734, "coord": [48.84483663038162, 2.3246317107880734], "stop_id": 4037000, "stop_desc": "146 BIS RUE DE RENNES - 75106", "stop_name": "RENNES - LITTRE"}, "geometry": {"type": "Point", "coordinates": [2.3246317107880734, 48.84483663038162]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e9f2180e302759ee04d011d8e8c8667939984d25", "fields": {"departement": "75", "stop_lat": 48.84077310974983, "code_postal": "75115", "stop_lon": 2.3164086680713942, "coord": [48.84077310974983, 2.3164086680713942], "stop_id": 4037006, "stop_desc": "65 BOULEVARD DE VAUGIRARD - 75115", "stop_name": "ARMORIQUE - MUSEE POSTAL"}, "geometry": {"type": "Point", "coordinates": [2.3164086680713942, 48.84077310974983]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bfeffe4e79fd5cff622f118f7250a6d86581b341", "fields": {"departement": "75", "stop_lat": 48.84068693742022, "code_postal": "75115", "stop_lon": 2.2961073600849584, "coord": [48.84068693742022, 2.2961073600849584], "stop_id": 4037012, "stop_desc": "188 RUE LECOURBE - 75115", "stop_name": "ABBE GROULT"}, "geometry": {"type": "Point", "coordinates": [2.2961073600849584, 48.84068693742022]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "87ac3a3963a9158867da731a3a66d882fda5b1a4", "fields": {"departement": "75", "stop_lat": 48.83914826598913, "code_postal": "75115", "stop_lon": 2.2911933772060062, "coord": [48.83914826598913, 2.2911933772060062], "stop_id": 4037014, "stop_desc": "250 RUE LECOURBE - 75115", "stop_name": "CONVENTION - LECOURBE"}, "geometry": {"type": "Point", "coordinates": [2.2911933772060062, 48.83914826598913]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3a07cea8817a388c9519d7746fba51300a069027", "fields": {"departement": "75", "stop_lat": 48.837267018830325, "code_postal": "75115", "stop_lon": 2.2843466881434824, "coord": [48.837267018830325, 2.2843466881434824], "stop_id": 4037016, "stop_desc": "330-332 RUE LECOURBE - 75115", "stop_name": "LYCEE LOUIS ARMAND"}, "geometry": {"type": "Point", "coordinates": [2.2843466881434824, 48.837267018830325]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e05e8fadda1b800b83b7f995070b319611817526", "fields": {"departement": "75", "stop_lat": 48.836455270676616, "code_postal": "75115", "stop_lon": 2.2782480783935948, "coord": [48.836455270676616, 2.2782480783935948], "stop_id": 4037018, "stop_desc": "PLACE BALARD - 75115", "stop_name": "BALARD"}, "geometry": {"type": "Point", "coordinates": [2.2782480783935948, 48.836455270676616]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8163e4c115b4e11f0e55c97d27da207269041e89", "fields": {"departement": "92", "stop_lat": 48.82837374190805, "code_postal": "92040", "stop_lon": 2.2749766076077833, "coord": [48.82837374190805, 2.2749766076077833], "stop_id": 4037026, "stop_desc": "71 RUE GUYNEMER - 92040", "stop_name": "MAISON DE RETRAITE"}, "geometry": {"type": "Point", "coordinates": [2.2749766076077833, 48.82837374190805]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a7b83ec673417aa217d2e82f7f31dc4632a36510", "fields": {"departement": "75", "stop_lat": 48.833116819786746, "code_postal": "75115", "stop_lon": 2.289224709950392, "coord": [48.833116819786746, 2.289224709950392], "stop_id": 4037029, "stop_desc": "403 BIS RUE DE VAUGIRARD - 75115", "stop_name": "PORTE DE VERSAILLES"}, "geometry": {"type": "Point", "coordinates": [2.289224709950392, 48.833116819786746]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "700013d94567d321e8bdb38bf28c48253d5f0741", "fields": {"departement": "75", "stop_lat": 48.83558092732886, "code_postal": "75115", "stop_lon": 2.2931162004514722, "coord": [48.83558092732886, 2.2931162004514722], "stop_id": 4037031, "stop_desc": "383 RUE DE VAUGIRARD - 75115", "stop_name": "HOPITAL DE VAUGIRARD"}, "geometry": {"type": "Point", "coordinates": [2.2931162004514722, 48.83558092732886]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8d7586eec03f6d09b78a546f43a3b4e2aeefb40d", "fields": {"departement": "75", "stop_lat": 48.83959225019507, "code_postal": "75115", "stop_lon": 2.301677023842893, "coord": [48.83959225019507, 2.301677023842893], "stop_id": 4037033, "stop_desc": "FACE 252 RUE DE VAUGIRARD - 75115", "stop_name": "VAUGIRARD - FAVORITES"}, "geometry": {"type": "Point", "coordinates": [2.301677023842893, 48.83959225019507]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "061ec64a0c9d2f9f575d60e97aa70afcdd02a930", "fields": {"departement": "75", "stop_lat": 48.85259344198745, "code_postal": "75106", "stop_lon": 2.3334277286474445, "coord": [48.85259344198745, 2.3334277286474445], "stop_id": 4037038, "stop_desc": "31-33 RUE DU FOUR - 75106", "stop_name": "BONAPARTE - SAINT-GERMAIN"}, "geometry": {"type": "Point", "coordinates": [2.3334277286474445, 48.85259344198745]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9c13679b88a3192d611a311f9815a426b0ad8bac", "fields": {"departement": "75", "stop_lat": 48.85289907507759, "code_postal": "75106", "stop_lon": 2.336560105706197, "coord": [48.85289907507759, 2.336560105706197], "stop_id": 4037039, "stop_desc": "125 BOULEVARD SAINT-GERMAIN - 75106", "stop_name": "SEINE - BUCI"}, "geometry": {"type": "Point", "coordinates": [2.336560105706197, 48.85289907507759]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e9e394af788c9fe980f3b594351faf2e740a83bd", "fields": {"departement": "75", "stop_lat": 48.863997699201235, "code_postal": "75103", "stop_lon": 2.351407984903802, "coord": [48.863997699201235, 2.351407984903802], "stop_id": 4037044, "stop_desc": "66 BOULEVARD DE SEBASTOPOL - 75103", "stop_name": "TURBIGO - ETIENNE MARCEL"}, "geometry": {"type": "Point", "coordinates": [2.351407984903802, 48.863997699201235]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5a8f0d34dfef9bf1c886f0e07cc2df36dbd03c48", "fields": {"departement": "75", "stop_lat": 48.86586694331711, "code_postal": "75103", "stop_lon": 2.3524574303330636, "coord": [48.86586694331711, 2.3524574303330636], "stop_id": 4037045, "stop_desc": "84 BOULEVARD DE SEBASTOPOL - 75103", "stop_name": "REAUMUR - SEBASTOPOL"}, "geometry": {"type": "Point", "coordinates": [2.3524574303330636, 48.86586694331711]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9d61fd9d6fb67d5e1919f51d22bd457922e50377", "fields": {"departement": "75", "stop_lat": 48.84427981615022, "code_postal": "75112", "stop_lon": 2.4410016129217893, "coord": [48.84427981615022, 2.4410016129217893], "stop_id": 4037161, "stop_desc": "13 AVENUE DE NOGENT - 75112", "stop_name": "CHATEAU DE VINCENNES"}, "geometry": {"type": "Point", "coordinates": [2.4410016129217893, 48.84427981615022]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "42577c6eb8fa2527054f5a309993ff213498f494", "fields": {"departement": "75", "stop_lat": 48.84752230352113, "code_postal": "75120", "stop_lon": 2.406677811879984, "coord": [48.84752230352113, 2.406677811879984], "stop_id": 4037169, "stop_desc": "73 COURS DE VINCENNES - 75120", "stop_name": "PYRENEES - DOCTEUR NETTER"}, "geometry": {"type": "Point", "coordinates": [2.406677811879984, 48.84752230352113]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "332d508b16b511104ee06673e5de58ada8af2774", "fields": {"departement": "75", "stop_lat": 48.84681540585237, "code_postal": "75112", "stop_lon": 2.3812665452114596, "coord": [48.84681540585237, 2.3812665452114596], "stop_id": 4037179, "stop_desc": "51 BOULEVARD DIDEROT - 75112", "stop_name": "HOPITAL SAINT-ANTOINE"}, "geometry": {"type": "Point", "coordinates": [2.3812665452114596, 48.84681540585237]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9f4f08e047424de32e33dee516a045aa231b0ce8", "fields": {"departement": "75", "stop_lat": 48.8488765289316, "code_postal": "75112", "stop_lon": 2.372266746924533, "coord": [48.8488765289316, 2.372266746924533], "stop_id": 4037185, "stop_desc": "9-11 AVENUE DAUMESNIL - 75112", "stop_name": "LYON - LEDRU ROLLIN"}, "geometry": {"type": "Point", "coordinates": [2.372266746924533, 48.8488765289316]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "13f625372f47d321eae5fdda9ad2385c64a32ff0", "fields": {"departement": "75", "stop_lat": 48.8571764094318, "code_postal": "75104", "stop_lon": 2.35008495875021, "coord": [48.8571764094318, 2.35008495875021], "stop_id": 4037196, "stop_desc": "6 AVENUE VICTORIA - 75104", "stop_name": "HOTEL DE VILLE"}, "geometry": {"type": "Point", "coordinates": [2.35008495875021, 48.8571764094318]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "66a3ecdf291ef803d3ac9419f9c5f59b78073be7", "fields": {"departement": "75", "stop_lat": 48.85678114513896, "code_postal": "75104", "stop_lon": 2.348259761089279, "coord": [48.85678114513896, 2.348259761089279], "stop_id": 4037198, "stop_desc": "FACE 14 QUAI DE GESVRES - 75104", "stop_name": "CHATELET"}, "geometry": {"type": "Point", "coordinates": [2.348259761089279, 48.85678114513896]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6f4783b686f7fb2380f0063f0ab985be460dd6b5", "fields": {"departement": "75", "stop_lat": 48.862578527141316, "code_postal": "75101", "stop_lon": 2.336028731198637, "coord": [48.862578527141316, 2.336028731198637], "stop_id": 4037201, "stop_desc": "172 RUE DE RIVOLI - 75101", "stop_name": "PALAIS ROYAL - MUSEE DU LOUVRE"}, "geometry": {"type": "Point", "coordinates": [2.336028731198637, 48.862578527141316]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8b4b797e6915bd046e0ec1e24e3073a843ee5242", "fields": {"departement": "92", "stop_lat": 48.879163952428165, "code_postal": "92051", "stop_lon": 2.2791260385417873, "coord": [48.879163952428165, 2.2791260385417873], "stop_id": 4037220, "stop_desc": "16 AVENUE CHARLES DE GAULLE - 92051", "stop_name": "MONTROSIER"}, "geometry": {"type": "Point", "coordinates": [2.2791260385417873, 48.879163952428165]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "46d9ed05592124509f516e8085d617a2a4553bef", "fields": {"departement": "92", "stop_lat": 48.881317375993476, "code_postal": "92051", "stop_lon": 2.2723103244701215, "coord": [48.881317375993476, 2.2723103244701215], "stop_id": 4037223, "stop_desc": "60-62 AVENUE CHARLES DE GAULLE - 92051", "stop_name": "LES SABLONS"}, "geometry": {"type": "Point", "coordinates": [2.2723103244701215, 48.881317375993476]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e3678cfc5477868700708a5ffda097251b8612d4", "fields": {"departement": "92", "stop_lat": 48.881047347727176, "code_postal": "92051", "stop_lon": 2.2715612036989734, "coord": [48.881047347727176, 2.2715612036989734], "stop_id": 4037224, "stop_desc": "101 AVENUE CHARLES DE GAULLE - 92051", "stop_name": "LES SABLONS"}, "geometry": {"type": "Point", "coordinates": [2.2715612036989734, 48.881047347727176]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2d2b18e3453d5cf127538a7153638429e9663e45", "fields": {"departement": "92", "stop_lat": 48.88555130589665, "code_postal": "92051", "stop_lon": 2.258922605272076, "coord": [48.88555130589665, 2.258922605272076], "stop_id": 4037229, "stop_desc": "176 AVENUE CHARLES DE GAULLE - 92051", "stop_name": "PONT DE NEUILLY-METRO"}, "geometry": {"type": "Point", "coordinates": [2.258922605272076, 48.88555130589665]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5e63c09cc1121a8159c391f9a142f07095eba420", "fields": {"departement": "92", "stop_lat": 48.88462644850585, "code_postal": "92051", "stop_lon": 2.2601913576941075, "coord": [48.88462644850585, 2.2601913576941075], "stop_id": 4037230, "stop_desc": "201 AVENUE CHARLES DE GAULLE - 92051", "stop_name": "PONT DE NEUILLY-METRO"}, "geometry": {"type": "Point", "coordinates": [2.2601913576941075, 48.88462644850585]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0a4aad4e5bac1b85dc3cabd56f53e8952508427f", "fields": {"departement": "75", "stop_lat": 48.87709023274955, "code_postal": "75116", "stop_lon": 2.284142542845437, "coord": [48.87709023274955, 2.284142542845437], "stop_id": 4037233, "stop_desc": "85 AVENUE DE LA GRANDE ARMEE - 75116", "stop_name": "PORTE MAILLOT"}, "geometry": {"type": "Point", "coordinates": [2.284142542845437, 48.87709023274955]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bb2a33bc1abf39aef7bfcde4643ebf3030a9127e", "fields": {"departement": "75", "stop_lat": 48.86378171049178, "code_postal": "75101", "stop_lon": 2.32082656543925, "coord": [48.86378171049178, 2.32082656543925], "stop_id": 4037236, "stop_desc": "QUAI DES TUILERIES - 75101", "stop_name": "CONCORDE - QUAI DES TUILERIES"}, "geometry": {"type": "Point", "coordinates": [2.32082656543925, 48.86378171049178]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f16ecd60ee5f2df129227a2afca40eb017e044c6", "fields": {"departement": "75", "stop_lat": 48.859873277650976, "code_postal": "75101", "stop_lon": 2.333849441440465, "coord": [48.859873277650976, 2.333849441440465], "stop_id": 4037239, "stop_desc": "QUAI FRANCOIS MITTERRAND - 75101", "stop_name": "QUAI FRANCOIS MITTERRAND"}, "geometry": {"type": "Point", "coordinates": [2.333849441440465, 48.859873277650976]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b0276474c1394c5724ac8ff5e5236e71ac3829b5", "fields": {"departement": "94", "stop_lat": 48.84580335074176, "code_postal": "94067", "stop_lon": 2.423955830416074, "coord": [48.84580335074176, 2.423955830416074], "stop_id": 4037249, "stop_desc": "67 AVENUE DE PARIS - 94067", "stop_name": "AUBERT"}, "geometry": {"type": "Point", "coordinates": [2.423955830416074, 48.84580335074176]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2f8c2d92826c62d7b3a5b6b8932fff9d61036f1d", "fields": {"departement": "75", "stop_lat": 48.84349739847797, "code_postal": "75114", "stop_lon": 2.3238014203032726, "coord": [48.84349739847797, 2.3238014203032726], "stop_id": 4037252, "stop_desc": "PLACE DU 18 JUIN 1940 - 75114", "stop_name": "PLACE DU 18 JUIN 1940"}, "geometry": {"type": "Point", "coordinates": [2.3238014203032726, 48.84349739847797]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b1de02a23b6b360c166179b71d7fa9d935dad2c3", "fields": {"departement": "75", "stop_lat": 48.837593076985385, "code_postal": "75113", "stop_lon": 2.345137830029515, "coord": [48.837593076985385, 2.345137830029515], "stop_id": 4037256, "stop_desc": "37 BOULEVARD DU PORT ROYAL - 75113", "stop_name": "PORT ROYAL - BERTHOLLET"}, "geometry": {"type": "Point", "coordinates": [2.345137830029515, 48.837593076985385]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fb2d769f484f7ff58efd250b6ec896d36c4dcc1e", "fields": {"departement": "75", "stop_lat": 48.83691827936556, "code_postal": "75113", "stop_lon": 2.352612326283839, "coord": [48.83691827936556, 2.352612326283839], "stop_id": 4037257, "stop_desc": "81 BOULEVARD SAINT-MARCEL - 75113", "stop_name": "LES GOBELINS"}, "geometry": {"type": "Point", "coordinates": [2.352612326283839, 48.83691827936556]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aeffb1c78f1eebc1e6b2d5e8b55b54ec7bb31176", "fields": {"departement": "75", "stop_lat": 48.838158000417195, "code_postal": "75113", "stop_lon": 2.3564930422658135, "coord": [48.838158000417195, 2.3564930422658135], "stop_id": 4037258, "stop_desc": "45-47 BOULEVARD SAINT-MARCEL - 75113", "stop_name": "SAINT-MARCEL - JEANNE D'ARC"}, "geometry": {"type": "Point", "coordinates": [2.3564930422658135, 48.838158000417195]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9287e72198c925b53481e951dd1c03e2802421d3", "fields": {"departement": "75", "stop_lat": 48.857271920933975, "code_postal": "75111", "stop_lon": 2.368281673209091, "coord": [48.857271920933975, 2.368281673209091], "stop_id": 4037266, "stop_desc": "50 BOULEVARD BEAUMARCHAIS - 75111", "stop_name": "SAINT-GILLES - CHEMIN VERT"}, "geometry": {"type": "Point", "coordinates": [2.368281673209091, 48.857271920933975]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "851ffb8ec372ff46a9c1af54995bfee628034b27", "fields": {"departement": "75", "stop_lat": 48.870844523505404, "code_postal": "75110", "stop_lon": 2.361069158580319, "coord": [48.870844523505404, 2.361069158580319], "stop_id": 4037269, "stop_desc": "8 PLACE JACQUES BONSERGENT - 75110", "stop_name": "JACQUES BONSERGENT"}, "geometry": {"type": "Point", "coordinates": [2.361069158580319, 48.870844523505404]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9f5b20d2ac9f103d1f48abf018157abafc8cba06", "fields": {"departement": "75", "stop_lat": 48.881199633166666, "code_postal": "75108", "stop_lon": 2.3250044012022726, "coord": [48.881199633166666, 2.3250044012022726], "stop_id": 4037281, "stop_desc": "11 BIS-13 RUE DE SAINT-PETERSBOURG - 75108", "stop_name": "BUCAREST"}, "geometry": {"type": "Point", "coordinates": [2.3250044012022726, 48.881199633166666]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c2d7f09f5820c9b953f7aa26fc79af69c916c6e0", "fields": {"departement": "75", "stop_lat": 48.87576218699689, "code_postal": "75108", "stop_lon": 2.3236567975351456, "coord": [48.87576218699689, 2.3236567975351456], "stop_id": 4037283, "stop_desc": "17 RUE DE ROME - 75108", "stop_name": "GARE SAINT-LAZARE"}, "geometry": {"type": "Point", "coordinates": [2.3236567975351456, 48.87576218699689]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bb82e86e49243ca82d7d3a9e7ec9f9d3d6e3a4ed", "fields": {"departement": "75", "stop_lat": 48.87369358750886, "code_postal": "75108", "stop_lon": 2.313861258840092, "coord": [48.87369358750886, 2.313861258840092], "stop_id": 4037285, "stop_desc": "44 RUE LA BOETIE - 75108", "stop_name": "LA BOETIE - PERCIER"}, "geometry": {"type": "Point", "coordinates": [2.313861258840092, 48.87369358750886]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "334a87e07537bbdc824a9eb577f4364d446af5c4", "fields": {"departement": "75", "stop_lat": 48.85328544303421, "code_postal": "75106", "stop_lon": 2.3325015699609604, "coord": [48.85328544303421, 2.3325015699609604], "stop_id": 4037292, "stop_desc": "54 RUE DE RENNES - 75106", "stop_name": "SAINT-GERMAIN-DES-PRES"}, "geometry": {"type": "Point", "coordinates": [2.3325015699609604, 48.85328544303421]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8665699c1207f0dda689264cfe3c0aeb12d7f25c", "fields": {"departement": "75", "stop_lat": 48.85121823484648, "code_postal": "75106", "stop_lon": 2.3305951430899357, "coord": [48.85121823484648, 2.3305951430899357], "stop_id": 4037293, "stop_desc": "76 RUE DE RENNES - 75106", "stop_name": "MICHEL DEBRE"}, "geometry": {"type": "Point", "coordinates": [2.3305951430899357, 48.85121823484648]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fcd409d22f82a79ee68ff04e844ec2860fe30223", "fields": {"departement": "75", "stop_lat": 48.846103994722135, "code_postal": "75106", "stop_lon": 2.325870580821929, "coord": [48.846103994722135, 2.325870580821929], "stop_id": 4037295, "stop_desc": "128 RUE DE RENNES - 75106", "stop_name": "RENNES - SAINT-PLACIDE"}, "geometry": {"type": "Point", "coordinates": [2.325870580821929, 48.846103994722135]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e026841784e363187b7a88facf90e7f3f8dada15", "fields": {"departement": "95", "stop_lat": 48.92435016744195, "code_postal": "95063", "stop_lon": 2.208935473437581, "coord": [48.92435016744195, 2.208935473437581], "stop_id": 4037719, "stop_desc": "FACE 148 R EDOUARD VAILLANT - 95063", "stop_name": "EMILE ZOLA"}, "geometry": {"type": "Point", "coordinates": [2.208935473437581, 48.92435016744195]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "538dd114152303a6627b9102b5b19e000be6fa7b", "fields": {"departement": "92", "stop_lat": 48.91127047277405, "code_postal": "92025", "stop_lon": 2.232855492651058, "coord": [48.91127047277405, 2.232855492651058], "stop_id": 4037730, "stop_desc": "79-83 BD CHARLES DE GAULLE - 92025", "stop_name": "BUFFON"}, "geometry": {"type": "Point", "coordinates": [2.232855492651058, 48.91127047277405]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eaf3f9dd6319326a85ab58f80bc17deb69a75175", "fields": {"departement": "92", "stop_lat": 48.91212389271792, "code_postal": "92025", "stop_lon": 2.232458366295327, "coord": [48.91212389271792, 2.232458366295327], "stop_id": 4037731, "stop_desc": "96 BD CHARLES DE GAULLE - 92025", "stop_name": "BUFFON"}, "geometry": {"type": "Point", "coordinates": [2.232458366295327, 48.91212389271792]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bcbb5cd5c4cb251a46b5d8caf138d99b5d73cbf3", "fields": {"departement": "92", "stop_lat": 48.908972739931876, "code_postal": "92025", "stop_lon": 2.236282226502673, "coord": [48.908972739931876, 2.236282226502673], "stop_id": 4037732, "stop_desc": "15 BD CHARLES DE GAULLE - 92025", "stop_name": "GARE DE LA GARENNE-COLOMBES"}, "geometry": {"type": "Point", "coordinates": [2.236282226502673, 48.908972739931876]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "360f5fe3e1053f7079f6623ba4741093290640d9", "fields": {"departement": "92", "stop_lat": 48.9063508217573, "code_postal": "92035", "stop_lon": 2.239041240296181, "coord": [48.9063508217573, 2.239041240296181], "stop_id": 4037735, "stop_desc": "BD NATIONAL - 92035", "stop_name": "LA GARENNE-COLOMBES - CHARLEBOURG"}, "geometry": {"type": "Point", "coordinates": [2.239041240296181, 48.9063508217573]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "84d2a3e5fb97e86871986fbf60e54a86368221ad", "fields": {"departement": "92", "stop_lat": 48.90195641075173, "code_postal": "92026", "stop_lon": 2.2393767381339007, "coord": [48.90195641075173, 2.2393767381339007], "stop_id": 4037738, "stop_desc": "107 BD DE LA MISSION MARCHAND - 92026", "stop_name": "LES FAUVELLES"}, "geometry": {"type": "Point", "coordinates": [2.2393767381339007, 48.90195641075173]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fb33435f581ae5c0b441facd04c7716b6b105ed3", "fields": {"departement": "92", "stop_lat": 48.89539650652404, "code_postal": "92026", "stop_lon": 2.2402342065353684, "coord": [48.89539650652404, 2.2402342065353684], "stop_id": 4037744, "stop_desc": "AVENUE DE LA DIVISION LECLERC - 92026", "stop_name": "CARON"}, "geometry": {"type": "Point", "coordinates": [2.2402342065353684, 48.89539650652404]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "788131a80ee57eb92f0d041383c249fad164d628", "fields": {"departement": "92", "stop_lat": 48.8958012046481, "code_postal": "92026", "stop_lon": 2.2405742092276215, "coord": [48.8958012046481, 2.2405742092276215], "stop_id": 4037745, "stop_desc": "8 BOULEVARD DE LA MISSION MARCHAND - 92026", "stop_name": "CARON"}, "geometry": {"type": "Point", "coordinates": [2.2405742092276215, 48.8958012046481]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2e2c8607e98ab41792ff6ea158b2ac97dbf5bd71", "fields": {"departement": "92", "stop_lat": 48.882994057899715, "code_postal": "92051", "stop_lon": 2.265453822468646, "coord": [48.882994057899715, 2.265453822468646], "stop_id": 4037754, "stop_desc": "151 AVENUE CHARLES DE GAULLE - 92051", "stop_name": "LES GRAVIERS"}, "geometry": {"type": "Point", "coordinates": [2.265453822468646, 48.882994057899715]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cc949ce8f921210b975a4444e0b3691b57c8106c", "fields": {"departement": "92", "stop_lat": 48.88013216210914, "code_postal": "92051", "stop_lon": 2.2743693786917185, "coord": [48.88013216210914, 2.2743693786917185], "stop_id": 4037760, "stop_desc": "73 AVENUE CHARLES DE GAULLE - 92051", "stop_name": "MARCHE DE NEUILLY-SUR-SEINE"}, "geometry": {"type": "Point", "coordinates": [2.2743693786917185, 48.88013216210914]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7523adaa077d20da39f95b82c0ed8f23a372ea7c", "fields": {"departement": "75", "stop_lat": 48.874146200317256, "code_postal": "75116", "stop_lon": 2.293492111443569, "coord": [48.874146200317256, 2.293492111443569], "stop_id": 4037766, "stop_desc": "1 AVENUE DE LA GRANDE ARMEE - 75116", "stop_name": "CHARLES DE GAULLE - ETOILE - GRANDE ARMEE"}, "geometry": {"type": "Point", "coordinates": [2.293492111443569, 48.874146200317256]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "82616fd2e78557752d326f3c77d645e5ec469dfa", "fields": {"departement": "75", "stop_lat": 48.87027649546204, "code_postal": "75108", "stop_lon": 2.3055932182690912, "coord": [48.87027649546204, 2.3055932182690912], "stop_id": 4037771, "stop_desc": "39 AVENUE DES CHAMPS ELYSEES - 75108", "stop_name": "LA BOETIE - CHAMPS-ELYSEES"}, "geometry": {"type": "Point", "coordinates": [2.3055932182690912, 48.87027649546204]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0825c40dc49f173c8bbdef388c9f42a2b4687000", "fields": {"departement": "75", "stop_lat": 48.86803149252129, "code_postal": "75108", "stop_lon": 2.3134687431580963, "coord": [48.86803149252129, 2.3134687431580963], "stop_id": 4037776, "stop_desc": "AVENUE DES CHAMPS ELYSEES - 75108", "stop_name": "CHAMPS-ELYSEES - CLEMENCEAU"}, "geometry": {"type": "Point", "coordinates": [2.3134687431580963, 48.86803149252129]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d021b2697a04dd9eaaba286c060c286dbb24f85a", "fields": {"departement": "75", "stop_lat": 48.86672008014077, "code_postal": "75108", "stop_lon": 2.3175289269176997, "coord": [48.86672008014077, 2.3175289269176997], "stop_id": 4037778, "stop_desc": "AVENUE DES CHAMPS ELYSEES - 75108", "stop_name": "CONCORDE - COURS LA REINE"}, "geometry": {"type": "Point", "coordinates": [2.3175289269176997, 48.86672008014077]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b0b42730f9075b06d8f8b782e3e2ead8c89fe323", "fields": {"departement": "75", "stop_lat": 48.86378171049178, "code_postal": "75101", "stop_lon": 2.32082656543925, "coord": [48.86378171049178, 2.32082656543925], "stop_id": 4037779, "stop_desc": "QUAI DES TUILERIES - 75101", "stop_name": "CONCORDE - QUAI DES TUILERIES"}, "geometry": {"type": "Point", "coordinates": [2.32082656543925, 48.86378171049178]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f5d8cb1fc70f2ab3a79d53169954337b4a424ae9", "fields": {"departement": "75", "stop_lat": 48.8598461517609, "code_postal": "75101", "stop_lon": 2.344364818985878, "coord": [48.8598461517609, 2.344364818985878], "stop_id": 4037788, "stop_desc": "128 RUE DE RIVOLI - 75101", "stop_name": "RIVOLI - PONT NEUF"}, "geometry": {"type": "Point", "coordinates": [2.344364818985878, 48.8598461517609]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "19a5b1bda46924129ddc982656fa9d42f456490f", "fields": {"departement": "75", "stop_lat": 48.862578527141316, "code_postal": "75101", "stop_lon": 2.336028731198637, "coord": [48.862578527141316, 2.336028731198637], "stop_id": 4037790, "stop_desc": "172 RUE DE RIVOLI - 75101", "stop_name": "PALAIS ROYAL - MUSEE DU LOUVRE"}, "geometry": {"type": "Point", "coordinates": [2.336028731198637, 48.862578527141316]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d6e6153b6f95e02448e3348076526be350d42e7e", "fields": {"departement": "75", "stop_lat": 48.86714090245713, "code_postal": "75103", "stop_lon": 2.364936352609631, "coord": [48.86714090245713, 2.364936352609631], "stop_id": 4044990, "stop_desc": "FACE 10 PLACE DE LA REPUBLIQUE - 75103", "stop_name": "REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.364936352609631, 48.86714090245713]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4a58def1217b0e315558bdb741debc646a5f2472", "fields": {"departement": "75", "stop_lat": 48.85281401294961, "code_postal": "75104", "stop_lon": 2.3687965324803804, "coord": [48.85281401294961, 2.3687965324803804], "stop_id": 4044994, "stop_desc": "PLACE DE LA BASTILLE - 75104", "stop_name": "BASTILLE"}, "geometry": {"type": "Point", "coordinates": [2.3687965324803804, 48.85281401294961]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7cc81f05edb34a3a20d99e55004537e440ba5660", "fields": {"departement": "75", "stop_lat": 48.8483376180706, "code_postal": "75112", "stop_lon": 2.3710952409746535, "coord": [48.8483376180706, 2.3710952409746535], "stop_id": 4044995, "stop_desc": "41 RUE DE LYON - 75112", "stop_name": "LYON - LEDRU ROLLIN"}, "geometry": {"type": "Point", "coordinates": [2.3710952409746535, 48.8483376180706]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "98a01e1580a7f05042e957105b0681a8d344b6d7", "fields": {"departement": "75", "stop_lat": 48.84539937588007, "code_postal": "75112", "stop_lon": 2.3686422351772856, "coord": [48.84539937588007, 2.3686422351772856], "stop_id": 4044997, "stop_desc": "1 BOULEVARD DIDEROT - 75112", "stop_name": "PONT D'AUSTERLITZ - QUAI DE LA RAPEE"}, "geometry": {"type": "Point", "coordinates": [2.3686422351772856, 48.84539937588007]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3c3cab3e15d51dde8ee7b8168c48f30c766fad99", "fields": {"departement": "75", "stop_lat": 48.84914202919279, "code_postal": "75106", "stop_lon": 2.3290293232080557, "coord": [48.84914202919279, 2.3290293232080557], "stop_id": 4045011, "stop_desc": "97-99 RUE DE RENNES - 75106", "stop_name": "RENNES - D'ASSAS"}, "geometry": {"type": "Point", "coordinates": [2.3290293232080557, 48.84914202919279]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dbadf09017b835e1b9f4f930e066eb2014cba6ef", "fields": {"departement": "75", "stop_lat": 48.85436397838255, "code_postal": "75106", "stop_lon": 2.3336727493054252, "coord": [48.85436397838255, 2.3336727493054252], "stop_id": 4045013, "stop_desc": "PLACE SAINT-GERMAIN DES PRES - 75106", "stop_name": "SAINT-GERMAIN-DES-PRES"}, "geometry": {"type": "Point", "coordinates": [2.3336727493054252, 48.85436397838255]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a7345cb07287d701bde99a2fb57a8fe0411e18fc", "fields": {"departement": "75", "stop_lat": 48.87447561220089, "code_postal": "75108", "stop_lon": 2.314528521056996, "coord": [48.87447561220089, 2.314528521056996], "stop_id": 4045020, "stop_desc": "10-12 AVENUE PERCIER - 75108", "stop_name": "HAUSSMANN - MIROMESNIL"}, "geometry": {"type": "Point", "coordinates": [2.314528521056996, 48.87447561220089]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cdf0148a69f7830299707c8892e9aae750756168", "fields": {"departement": "75", "stop_lat": 48.883177013837376, "code_postal": "75109", "stop_lon": 2.3269798610834647, "coord": [48.883177013837376, 2.3269798610834647], "stop_id": 4045025, "stop_desc": "6 PLACE DE CLICHY - 75109", "stop_name": "PLACE DE CLICHY"}, "geometry": {"type": "Point", "coordinates": [2.3269798610834647, 48.883177013837376]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e24f43b055bae5597e360aaf106e0dc0776844d4", "fields": {"departement": "75", "stop_lat": 48.88267396530856, "code_postal": "75109", "stop_lon": 2.34425893510232, "coord": [48.88267396530856, 2.34425893510232], "stop_id": 4045029, "stop_desc": "FACE 68 BOULEVARD DE ROCHECHOUART - 75109", "stop_name": "ANVERS - SACRE COEUR"}, "geometry": {"type": "Point", "coordinates": [2.34425893510232, 48.88267396530856]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6fe0dbd5a594573cfd4242f5fe0d0bcf95eed829", "fields": {"departement": "75", "stop_lat": 48.88346447590784, "code_postal": "75109", "stop_lon": 2.3489331575610874, "coord": [48.88346447590784, 2.3489331575610874], "stop_id": 4045031, "stop_desc": "5 BOULEVARD DE ROCHECHOUART - 75109", "stop_name": "BARBES - ROCHECHOUART"}, "geometry": {"type": "Point", "coordinates": [2.3489331575610874, 48.88346447590784]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3ef59874c61697c2c3ad1660019d2d9bc67c4242", "fields": {"departement": "92", "stop_lat": 48.887097740222536, "code_postal": "92063", "stop_lon": 2.171700228013538, "coord": [48.887097740222536, 2.171700228013538], "stop_id": 4102132, "stop_desc": "GARE ROUTIERE - 92063", "stop_name": "RUEIL-MALMAISON RER"}, "geometry": {"type": "Point", "coordinates": [2.171700228013538, 48.887097740222536]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e467c240cf9c6fe2c7d0a6dbf4bbdabfed8b2df5", "fields": {"departement": "92", "stop_lat": 48.88773054840441, "code_postal": "92050", "stop_lon": 2.188120317758764, "coord": [48.88773054840441, 2.188120317758764], "stop_id": 4102135, "stop_desc": "85 AVENUE LENINE - 92050", "stop_name": "LES GOULVENTS"}, "geometry": {"type": "Point", "coordinates": [2.188120317758764, 48.88773054840441]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dd0082d18ba5cdc7b7d57b624e207cc8aaa8e6ae", "fields": {"departement": "92", "stop_lat": 48.886962342334975, "code_postal": "92050", "stop_lon": 2.199488364504161, "coord": [48.886962342334975, 2.199488364504161], "stop_id": 4102137, "stop_desc": "PLACE DE LA BOULE - 92050", "stop_name": "PLACE DE LA BOULE - LENINE"}, "geometry": {"type": "Point", "coordinates": [2.199488364504161, 48.886962342334975]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d7d3db7013f23f6c14761893c42129b9696f0f3c", "fields": {"departement": "92", "stop_lat": 48.88441324201123, "code_postal": "92062", "stop_lon": 2.2287532212789096, "coord": [48.88441324201123, 2.2287532212789096], "stop_id": 4102144, "stop_desc": "167 RUE DE LA REPUBLIQUE - 92062", "stop_name": "PALISSY"}, "geometry": {"type": "Point", "coordinates": [2.2287532212789096, 48.88441324201123]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "31915431e7962c0314b5725bcfa6017152861aec", "fields": {"departement": "91", "stop_lat": 48.692258585581776, "code_postal": "91326", "stop_lon": 2.3761394374852545, "coord": [48.692258585581776, 2.3761394374852545], "stop_id": 4439601, "stop_desc": "60 AVENUE D'ESTIENNE D'ORVES - 91326", "stop_name": "MARCHE DE JUVISY"}, "geometry": {"type": "Point", "coordinates": [2.3761394374852545, 48.692258585581776]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "032fc268c25cbae6d99762cc2b24450387b4a9e3", "fields": {"departement": "91", "stop_lat": 48.70919439569311, "code_postal": "91027", "stop_lon": 2.37157513175139, "coord": [48.70919439569311, 2.37157513175139], "stop_id": 4439606, "stop_desc": "AVENUE FRANCOIS MITTERRAND - 91027", "stop_name": "ARISTIDE BRIAND"}, "geometry": {"type": "Point", "coordinates": [2.37157513175139, 48.70919439569311]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "998420b61661ad72fbced6e54b22691eb5696bee", "fields": {"departement": "94", "stop_lat": 48.751125622861665, "code_postal": "94073", "stop_lon": 2.3692377344157936, "coord": [48.751125622861665, 2.3692377344157936], "stop_id": 4439610, "stop_desc": "AVENUE DE FONTAINEBLEAU - 94073", "stop_name": "S.E.N.I.A."}, "geometry": {"type": "Point", "coordinates": [2.3692377344157936, 48.751125622861665]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b1149c425debf56b35d6c2d0f89f0943317bc13f", "fields": {"departement": "92", "stop_lat": 48.8075885996782, "code_postal": "92023", "stop_lon": 2.2515970744570666, "coord": [48.8075885996782, 2.2515970744570666], "stop_id": 4458756, "stop_desc": "FACE 80 RUE ADOLPHE SCHNEIDER - 92023", "stop_name": "HOPITAL SAINTE-EMILIE"}, "geometry": {"type": "Point", "coordinates": [2.2515970744570666, 48.8075885996782]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "262db01e5d04a7bc163a134b931a80e91f9d9b50", "fields": {"departement": "92", "stop_lat": 48.80106182589178, "code_postal": "92020", "stop_lon": 2.2785604109353716, "coord": [48.80106182589178, 2.2785604109353716], "stop_id": 4458762, "stop_desc": "FACE 70BIS RUE PIERRE BROSSOLETTE - 92020", "stop_name": "JEANNE D'ARC"}, "geometry": {"type": "Point", "coordinates": [2.2785604109353716, 48.80106182589178]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a216b4adc1d42ce057d11fa164e09924af67e2f6", "fields": {"departement": "92", "stop_lat": 48.79726148952739, "code_postal": "92007", "stop_lon": 2.3065356365996665, "coord": [48.79726148952739, 2.3065356365996665], "stop_id": 4458771, "stop_desc": "AVENUE GABRIEL PERI - 92007", "stop_name": "RUE DES OLIVETTES"}, "geometry": {"type": "Point", "coordinates": [2.3065356365996665, 48.79726148952739]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7058c082e07b01b28385654147d6a345b0f77883", "fields": {"departement": "92", "stop_lat": 48.80188394455734, "code_postal": "92007", "stop_lon": 2.319920957586144, "coord": [48.80188394455734, 2.319920957586144], "stop_id": 4458774, "stop_desc": "103 RUE DE VERDUN - 92007", "stop_name": "VERDUN - PASTEUR"}, "geometry": {"type": "Point", "coordinates": [2.319920957586144, 48.80188394455734]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e0efe87a59859143cb41079230d892dad341d374", "fields": {"departement": "94", "stop_lat": 48.799691406622465, "code_postal": "94016", "stop_lon": 2.3237311377862166, "coord": [48.799691406622465, 2.3237311377862166], "stop_id": 4458776, "stop_desc": "73-75 AVENUE CARNOT - 94016", "stop_name": "CARNOT - ARISTIDE BRIAND"}, "geometry": {"type": "Point", "coordinates": [2.3237311377862166, 48.799691406622465]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "27cc79c3fd1f32b2140f7036c59c43b7c82dcc24", "fields": {"departement": "94", "stop_lat": 48.797930487387106, "code_postal": "94016", "stop_lon": 2.333200475290441, "coord": [48.797930487387106, 2.333200475290441], "stop_id": 4458780, "stop_desc": "68 AVENUE COUSIN DE MERICOURT - 94016", "stop_name": "COUSIN DE MERICOURT"}, "geometry": {"type": "Point", "coordinates": [2.333200475290441, 48.797930487387106]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3884bf03ca9ccbbfe254b9e7a2d33ee0a914c120", "fields": {"departement": "94", "stop_lat": 48.79551231149947, "code_postal": "94076", "stop_lon": 2.3482603778488143, "coord": [48.79551231149947, 2.3482603778488143], "stop_id": 4458786, "stop_desc": "RUE CAMILLE DESMOULINS - 94076", "stop_name": "INSTITUT GUSTAVE ROUSSY - HAUTES BRUYERES"}, "geometry": {"type": "Point", "coordinates": [2.3482603778488143, 48.79551231149947]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a315ff482d3a224b82aad5dd26e067e23fc3c890", "fields": {"departement": "94", "stop_lat": 48.78785123708828, "code_postal": "94076", "stop_lon": 2.3676825118887823, "coord": [48.78785123708828, 2.3676825118887823], "stop_id": 4458791, "stop_desc": "PISTE GARE ROUTIERE - 94076", "stop_name": "VILLEJUIF - LOUIS ARAGON"}, "geometry": {"type": "Point", "coordinates": [2.3676825118887823, 48.78785123708828]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "23621ec66738f70d58446e0a663aa820e8d90b0d", "fields": {"departement": "92", "stop_lat": 48.7979018685955, "code_postal": "92007", "stop_lon": 2.316997275361655, "coord": [48.7979018685955, 2.316997275361655], "stop_id": 4458808, "stop_desc": "13 RUE DES MEUNIERS - 92007", "stop_name": "PASTEUR - MEUNIERS"}, "geometry": {"type": "Point", "coordinates": [2.316997275361655, 48.7979018685955]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "23713ab9f637fc6517d6cd8fa137abb61a7c275c", "fields": {"departement": "92", "stop_lat": 48.79805396360765, "code_postal": "92007", "stop_lon": 2.313242306705647, "coord": [48.79805396360765, 2.313242306705647], "stop_id": 4458809, "stop_desc": "35 RUE DES MEUNIERS - 92007", "stop_name": "LES IRIS"}, "geometry": {"type": "Point", "coordinates": [2.313242306705647, 48.79805396360765]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6678b49cc80c58c1ec3bea5dbf88177754262f13", "fields": {"departement": "92", "stop_lat": 48.79749513513699, "code_postal": "92007", "stop_lon": 2.306385847808469, "coord": [48.79749513513699, 2.306385847808469], "stop_id": 4458810, "stop_desc": "27 AVENUE GABRIEL PERI - 92007", "stop_name": "RUE DES OLIVETTES"}, "geometry": {"type": "Point", "coordinates": [2.306385847808469, 48.79749513513699]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "66cbf1552bec9482616362d6c70b7632400d6648", "fields": {"departement": "92", "stop_lat": 48.79796754114928, "code_postal": "92020", "stop_lon": 2.2937467800028233, "coord": [48.79796754114928, 2.2937467800028233], "stop_id": 4458813, "stop_desc": "7-9 RUE DE CHARTRES - 92020", "stop_name": "LIBERTE"}, "geometry": {"type": "Point", "coordinates": [2.2937467800028233, 48.79796754114928]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d1545150c092f0674ae7b2b0ae39fecd00e948c9", "fields": {"departement": "92", "stop_lat": 48.798046109235045, "code_postal": "92020", "stop_lon": 2.2878014411833574, "coord": [48.798046109235045, 2.2878014411833574], "stop_id": 4458816, "stop_desc": "1 RUE DES PIERRELAIS - 92020", "stop_name": "PIERRELAIS-FONTENAY"}, "geometry": {"type": "Point", "coordinates": [2.2878014411833574, 48.798046109235045]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "06c0f1118329e2d69fcf96fa7a567fd7e15f178f", "fields": {"departement": "92", "stop_lat": 48.79971713568461, "code_postal": "92020", "stop_lon": 2.2861128071739714, "coord": [48.79971713568461, 2.2861128071739714], "stop_id": 4458817, "stop_desc": "3 RUE D'ESTIENNE D'ORVES - 92020", "stop_name": "D'ESTIENNE D'ORVES - DIVISION LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.2861128071739714, 48.79971713568461]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5bfd659d3b90bdf9a450aa3c3f78650e29b84d40", "fields": {"departement": "92", "stop_lat": 48.89679752208179, "code_postal": "92044", "stop_lon": 2.280523849254737, "coord": [48.89679752208179, 2.280523849254737], "stop_id": 4459233, "stop_desc": "FACE 136 RUE ANATOLE FRANCE - 92044", "stop_name": "PONT DE LEVALLOIS-METRO"}, "geometry": {"type": "Point", "coordinates": [2.280523849254737, 48.89679752208179]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "597a80a8bd62f810cbd61e083b5c49cb37d31a73", "fields": {"departement": "75", "stop_lat": 48.875007327021954, "code_postal": "75108", "stop_lon": 2.324310992446456, "coord": [48.875007327021954, 2.324310992446456], "stop_id": 4459240, "stop_desc": "119-121 RUE SAINT-LAZARE - 75108", "stop_name": "GARE SAINT-LAZARE."}, "geometry": {"type": "Point", "coordinates": [2.324310992446456, 48.875007327021954]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a692c459ca733fb5101e75404aa006b6e1bb9cfe", "fields": {"departement": "75", "stop_lat": 48.87123321218385, "code_postal": "75109", "stop_lon": 2.3313418899103016, "coord": [48.87123321218385, 2.3313418899103016], "stop_id": 4459243, "stop_desc": "3 R AUBER - 75109", "stop_name": "OPERA"}, "geometry": {"type": "Point", "coordinates": [2.3313418899103016, 48.87123321218385]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ffe9bce4e3190cb8d76f3ed8b07ed3441aa4824d", "fields": {"departement": "75", "stop_lat": 48.86917525585135, "code_postal": "75102", "stop_lon": 2.3381810732063615, "coord": [48.86917525585135, 2.3381810732063615], "stop_id": 4459245, "stop_desc": "7 RUE DU 4 SEPTEMBRE - 75102", "stop_name": "RICHELIEU - 4 SEPTEMBRE"}, "geometry": {"type": "Point", "coordinates": [2.3381810732063615, 48.86917525585135]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7384eaf56493747f041946f863294865e1effc9c", "fields": {"departement": "75", "stop_lat": 48.86788990126235, "code_postal": "75102", "stop_lon": 2.3435757843603318, "coord": [48.86788990126235, 2.3435757843603318], "stop_id": 4459247, "stop_desc": "85 RUE MONTMARTRE - 75102", "stop_name": "REAUMUR - MONTMARTRE"}, "geometry": {"type": "Point", "coordinates": [2.3435757843603318, 48.86788990126235]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e33db918543a1a12c621ec615b99f10817d549fc", "fields": {"departement": "75", "stop_lat": 48.85547674635916, "code_postal": "75104", "stop_lon": 2.3575481918629646, "coord": [48.85547674635916, 2.3575481918629646], "stop_id": 4459254, "stop_desc": "64 RUE FRANCOIS MIRON - 75104", "stop_name": "RUE DE JOUY"}, "geometry": {"type": "Point", "coordinates": [2.3575481918629646, 48.85547674635916]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8f7f0aab246ef231552783956cf482aab662093f", "fields": {"departement": "75", "stop_lat": 48.85319164694081, "code_postal": "75104", "stop_lon": 2.3681838978405163, "coord": [48.85319164694081, 2.3681838978405163], "stop_id": 4459257, "stop_desc": "1 RUE SAINT-ANTOINE - 75104", "stop_name": "BASTILLE - RUE SAINT-ANTOINE"}, "geometry": {"type": "Point", "coordinates": [2.3681838978405163, 48.85319164694081]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3e2e2260bee18664b3333237ae746901d6f35067", "fields": {"departement": "75", "stop_lat": 48.84563186778721, "code_postal": "75112", "stop_lon": 2.3728500974777273, "coord": [48.84563186778721, 2.3728500974777273], "stop_id": 4459260, "stop_desc": "FACE 21 BOULEVARD DIDEROT - 75112", "stop_name": "GARE DE LYON - DIDEROT"}, "geometry": {"type": "Point", "coordinates": [2.3728500974777273, 48.84563186778721]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "14706b0d84dd18cbf4575e4ed10c9cd3389780af", "fields": {"departement": "75", "stop_lat": 48.85525560358834, "code_postal": "75111", "stop_lon": 2.3785906169257642, "coord": [48.85525560358834, 2.3785906169257642], "stop_id": 4459264, "stop_desc": "150 AVENUE LEDRU ROLLIN - 75111", "stop_name": "BASFROI"}, "geometry": {"type": "Point", "coordinates": [2.3785906169257642, 48.85525560358834]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "759bfe168396cadad489f0bc1f381e626d9f606e", "fields": {"departement": "75", "stop_lat": 48.86294513869873, "code_postal": "75120", "stop_lon": 2.3881319851015386, "coord": [48.86294513869873, 2.3881319851015386], "stop_id": 4459268, "stop_desc": "4 AVENUE GAMBETTA - 75120", "stop_name": "AUGUSTE METIVIER"}, "geometry": {"type": "Point", "coordinates": [2.3881319851015386, 48.86294513869873]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "372baaab019e022cadbb2163b31bd4b1cdd154a1", "fields": {"departement": "93", "stop_lat": 48.85838831333966, "code_postal": "93048", "stop_lon": 2.432448870052002, "coord": [48.85838831333966, 2.432448870052002], "stop_id": 4459279, "stop_desc": "33 BOULEVARD CHANZY - 93048", "stop_name": "MARCHE DE MONTREUIL"}, "geometry": {"type": "Point", "coordinates": [2.432448870052002, 48.85838831333966]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3ceb8e4ab59cf73f3a82166390154ce9d7da5fd3", "fields": {"departement": "75", "stop_lat": 48.83925365322841, "code_postal": "75113", "stop_lon": 2.3610818880156876, "coord": [48.83925365322841, 2.3610818880156876], "stop_id": 4471734, "stop_desc": "48 BOULEVARD DE L'HOPITAL - 75113", "stop_name": "SAINT-MARCEL - LA PITIE"}, "geometry": {"type": "Point", "coordinates": [2.3610818880156876, 48.83925365322841]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "41440557e3088a7901c00a29aab651483ea2efe3", "fields": {"departement": "75", "stop_lat": 48.8314984744011, "code_postal": "75113", "stop_lon": 2.3546799758762553, "coord": [48.8314984744011, 2.3546799758762553], "stop_id": 4471735, "stop_desc": "10 PLACE D'ITALIE - 75113", "stop_name": "PLACE D'ITALIE"}, "geometry": {"type": "Point", "coordinates": [2.3546799758762553, 48.8314984744011]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3b4817002028e9f1400123f9fe192e37cbff0f18", "fields": {"departement": "75", "stop_lat": 48.82745038137856, "code_postal": "75113", "stop_lon": 2.3715308304362543, "coord": [48.82745038137856, 2.3715308304362543], "stop_id": 4471738, "stop_desc": "103-105 RUE DE PATAY - 75113", "stop_name": "PATAY - TOLBIAC"}, "geometry": {"type": "Point", "coordinates": [2.3715308304362543, 48.82745038137856]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6c339e0b14e79374ff58e7fd8af5410dd56cc91b", "fields": {"departement": "75", "stop_lat": 48.825948776082065, "code_postal": "75113", "stop_lon": 2.3737758280905648, "coord": [48.825948776082065, 2.3737758280905648], "stop_id": 4471739, "stop_desc": "67 RUE DE PATAY - 75113", "stop_name": "OUDINE"}, "geometry": {"type": "Point", "coordinates": [2.3737758280905648, 48.825948776082065]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5ae05cf446df4629baf4941e87b2ec9a3e4daef6", "fields": {"departement": "75", "stop_lat": 48.818572092727926, "code_postal": "75113", "stop_lon": 2.3656998345859344, "coord": [48.818572092727926, 2.3656998345859344], "stop_id": 4471742, "stop_desc": "31-33 AVENUE DE LA PORTE DE CHOISY - 75113", "stop_name": "PORTE DE CHOISY"}, "geometry": {"type": "Point", "coordinates": [2.3656998345859344, 48.818572092727926]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9d9ac8763b1e62fdfcce7342a7f2d628f83ac0fa", "fields": {"departement": "94", "stop_lat": 48.816459574639566, "code_postal": "94041", "stop_lon": 2.367345434609985, "coord": [48.816459574639566, 2.367345434609985], "stop_id": 4471743, "stop_desc": "4 AVENUE DE VERDUN - 94041", "stop_name": "VERDUN - CHATEAUDUN"}, "geometry": {"type": "Point", "coordinates": [2.367345434609985, 48.816459574639566]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9826f254a0c4ef4fa0d8508530924b0e72801a32", "fields": {"departement": "94", "stop_lat": 48.78990240188759, "code_postal": "94081", "stop_lon": 2.388318873018915, "coord": [48.78990240188759, 2.388318873018915], "stop_id": 4471752, "stop_desc": "FACE 23 AVENUE MAXIMILIEN ROBESPIERRE - 94081", "stop_name": "HOTEL DE VILLE DE VITRY"}, "geometry": {"type": "Point", "coordinates": [2.388318873018915, 48.78990240188759]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b7d348240ea259d379cedd67f7a2caea2a9cd76d", "fields": {"departement": "94", "stop_lat": 48.76796449757513, "code_postal": "94073", "stop_lon": 2.402981928452445, "coord": [48.76796449757513, 2.402981928452445], "stop_id": 4471758, "stop_desc": "3 BOULEVARD DE STALINGRAD - 94073", "stop_name": "VERDUN - HOCHE"}, "geometry": {"type": "Point", "coordinates": [2.402981928452445, 48.76796449757513]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7c4f694703773e64873ba0dc37e474a4852c088a", "fields": {"departement": "94", "stop_lat": 48.74533081824955, "code_postal": "94054", "stop_lon": 2.387690673104419, "coord": [48.74533081824955, 2.387690673104419], "stop_id": 4471770, "stop_desc": "FACE 125 AVENUE CHARLES TILLON - 94054", "stop_name": "CIMETIERE PAYSAGER"}, "geometry": {"type": "Point", "coordinates": [2.387690673104419, 48.74533081824955]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "14f975e177e8d8d1e7894614463bb802fcfdea4b", "fields": {"departement": "94", "stop_lat": 48.747253795216295, "code_postal": "94054", "stop_lon": 2.388861403805956, "coord": [48.747253795216295, 2.388861403805956], "stop_id": 4471772, "stop_desc": "RUE DU BAS MARIN - 94054", "stop_name": "RUE DU PUITS DIXME"}, "geometry": {"type": "Point", "coordinates": [2.388861403805956, 48.747253795216295]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "485976c20afd9fef5454a48cc77fb1b78cb8d7e5", "fields": {"departement": "94", "stop_lat": 48.75564686768566, "code_postal": "94065", "stop_lon": 2.3685064604060053, "coord": [48.75564686768566, 2.3685064604060053], "stop_id": 4471780, "stop_desc": "AVENUE DE FONTAINEBLEAU - 94065", "stop_name": "BELLE EPINE SUD"}, "geometry": {"type": "Point", "coordinates": [2.3685064604060053, 48.75564686768566]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ce99e576922914796b17f96ac96c1f62aa76bc21", "fields": {"departement": "94", "stop_lat": 48.76004202458944, "code_postal": "94073", "stop_lon": 2.3686722414037877, "coord": [48.76004202458944, 2.3686722414037877], "stop_id": 4471794, "stop_desc": "AVENUE DE FONTAINEBLEAU - 94073", "stop_name": "LE COR DE CHASSE - LA BELLE EPINE"}, "geometry": {"type": "Point", "coordinates": [2.3686722414037877, 48.76004202458944]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "86f85d2ba92466a9088aaad9facc23a0b042de6f", "fields": {"departement": "94", "stop_lat": 48.74559720783472, "code_postal": "94054", "stop_lon": 2.411108255563119, "coord": [48.74559720783472, 2.411108255563119], "stop_id": 4471807, "stop_desc": "VOI DES SAULES - 94054", "stop_name": "MARCEL CACHIN - VOIE DES SAULES"}, "geometry": {"type": "Point", "coordinates": [2.411108255563119, 48.74559720783472]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "61bfb97edc96d396b3f9fe9832694a079c5f87d3", "fields": {"departement": "94", "stop_lat": 48.750961479370204, "code_postal": "94054", "stop_lon": 2.4137799931156327, "coord": [48.750961479370204, 2.4137799931156327], "stop_id": 4471809, "stop_desc": "AVENUE MARCEL CACHIN - 94054", "stop_name": "JEAN MERMOZ"}, "geometry": {"type": "Point", "coordinates": [2.4137799931156327, 48.750961479370204]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cd296a4c79d5c39ebbf97cb8647db1b16856ca30", "fields": {"departement": "94", "stop_lat": 48.75863110658494, "code_postal": "94022", "stop_lon": 2.409427476173478, "coord": [48.75863110658494, 2.409427476173478], "stop_id": 4471812, "stop_desc": "47 BIS AVENUE DE LA REPUBLIQUE - 94022", "stop_name": "PARMENTIER"}, "geometry": {"type": "Point", "coordinates": [2.409427476173478, 48.75863110658494]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "96c054a7228f22bc3e30ea00c72610a060d91d3f", "fields": {"departement": "94", "stop_lat": 48.78297902371468, "code_postal": "94081", "stop_lon": 2.394187610971603, "coord": [48.78297902371468, 2.394187610971603], "stop_id": 4471819, "stop_desc": "FACE 167 AVENUE YOURI GAGARINE - 94081", "stop_name": "CONSTANT COQUELIN"}, "geometry": {"type": "Point", "coordinates": [2.394187610971603, 48.78297902371468]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ccc58d01cec1ee7bc0628b3bc73e0fee7e50a2ff", "fields": {"departement": "94", "stop_lat": 48.798362479145425, "code_postal": "94081", "stop_lon": 2.3821778114612555, "coord": [48.798362479145425, 2.3821778114612555], "stop_id": 4471824, "stop_desc": "74 BOULEVARD DE STALINGRAD - 94081", "stop_name": "LA CIVETTE"}, "geometry": {"type": "Point", "coordinates": [2.3821778114612555, 48.798362479145425]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "32ac1eb507c4703a258c37a653a96e5cec29a586", "fields": {"departement": "94", "stop_lat": 48.80728086211342, "code_postal": "94041", "stop_lon": 2.37509619689156, "coord": [48.80728086211342, 2.37509619689156], "stop_id": 4471827, "stop_desc": "161 AVENUE DE VERDUN - 94041", "stop_name": "LA BRIQUETERIE"}, "geometry": {"type": "Point", "coordinates": [2.37509619689156, 48.80728086211342]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b423bbf049f99ab5f21e48a8d55d22de3b7cba37", "fields": {"departement": "75", "stop_lat": 48.821644738020495, "code_postal": "75113", "stop_lon": 2.370152292278201, "coord": [48.821644738020495, 2.370152292278201], "stop_id": 4471832, "stop_desc": "73 BOULEVARD MASSENA - 75113", "stop_name": "PORTE D'IVRY-MASSENA"}, "geometry": {"type": "Point", "coordinates": [2.370152292278201, 48.821644738020495]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "736bc103b6dc429acd70955c284ffb02e55db06f", "fields": {"departement": "75", "stop_lat": 48.82238113419135, "code_postal": "75113", "stop_lon": 2.372235260696565, "coord": [48.82238113419135, 2.372235260696565], "stop_id": 4471833, "stop_desc": "51-55 BOULEVARD MASSENA - 75113", "stop_name": "CHATEAU DES RENTIERS"}, "geometry": {"type": "Point", "coordinates": [2.372235260696565, 48.82238113419135]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "de6fa3290de699af563399acc67deb9a01845d7e", "fields": {"departement": "75", "stop_lat": 48.82641622966347, "code_postal": "75113", "stop_lon": 2.373463076930392, "coord": [48.82641622966347, 2.373463076930392], "stop_id": 4471835, "stop_desc": "62 RUE DE PATAY - 75113", "stop_name": "OUDINE"}, "geometry": {"type": "Point", "coordinates": [2.373463076930392, 48.82641622966347]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a1275152fc0603cdb5a6fa78dc972b5ffd6dcdf1", "fields": {"departement": "75", "stop_lat": 48.839235617788596, "code_postal": "75113", "stop_lon": 2.361381421671141, "coord": [48.839235617788596, 2.361381421671141], "stop_id": 4471840, "stop_desc": "BOULEVARD DE L'HOPITAL - 75113", "stop_name": "SAINT-MARCEL - LA PITIE"}, "geometry": {"type": "Point", "coordinates": [2.361381421671141, 48.839235617788596]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f2a3a4febeab9fd6dcb9921df24af098b649bb1e", "fields": {"departement": "75", "stop_lat": 48.84260538929042, "code_postal": "75113", "stop_lon": 2.363997342939993, "coord": [48.84260538929042, 2.363997342939993], "stop_id": 4471841, "stop_desc": "5 BIS BOULEVARD DE L'HOPITAL - 75113", "stop_name": "GARE D'AUSTERLITZ"}, "geometry": {"type": "Point", "coordinates": [2.363997342939993, 48.84260538929042]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2901d28831e76131cc818cc25196d7cc52a3dabe", "fields": {"departement": "75", "stop_lat": 48.84386116261595, "code_postal": "75112", "stop_lon": 2.3733935527604038, "coord": [48.84386116261595, 2.3733935527604038], "stop_id": 4471844, "stop_desc": "FACE 189 RUE BERCY - 75112", "stop_name": "GARE DE LYON"}, "geometry": {"type": "Point", "coordinates": [2.3733935527604038, 48.84386116261595]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b6aa49e54814c5fce35100283d140814eb906e40", "fields": {"departement": "92", "stop_lat": 48.896889073971664, "code_postal": "92050", "stop_lon": 2.2209303386289885, "coord": [48.896889073971664, 2.2209303386289885], "stop_id": 4472487, "stop_desc": "0 BD DE PESARO - 92050", "stop_name": "NANTERRE-PREFECTURE RER"}, "geometry": {"type": "Point", "coordinates": [2.2209303386289885, 48.896889073971664]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c9b398764e2545b97056be356f5c1dc1c302454f", "fields": {"departement": "92", "stop_lat": 48.88938573912001, "code_postal": "92050", "stop_lon": 2.2046335852696703, "coord": [48.88938573912001, 2.2046335852696703], "stop_id": 4472499, "stop_desc": "92 AVENUE FREDERIC ET IRENE JOLIOT CURIE - 92050", "stop_name": "SADI-CARNOT - JOLIOT-CURIE"}, "geometry": {"type": "Point", "coordinates": [2.2046335852696703, 48.88938573912001]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3ae8515cfc3c2915dc498aec2d99721a17e05597", "fields": {"departement": "92", "stop_lat": 48.88033043782723, "code_postal": "92063", "stop_lon": 2.1852664446552246, "coord": [48.88033043782723, 2.1852664446552246], "stop_id": 4472507, "stop_desc": "FACE 16 BOULEVARD DE L'HOPITAL STELL - 92063", "stop_name": "LE GUE"}, "geometry": {"type": "Point", "coordinates": [2.1852664446552246, 48.88033043782723]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fe8b22e5536ae8714dda4145fbb6971d7c417689", "fields": {"departement": "92", "stop_lat": 48.872813396922695, "code_postal": "92063", "stop_lon": 2.1824273594672805, "coord": [48.872813396922695, 2.1824273594672805], "stop_id": 4472510, "stop_desc": "14 BOULEVARD RICHELIEU - 92063", "stop_name": "PLACE RICHELIEU"}, "geometry": {"type": "Point", "coordinates": [2.1824273594672805, 48.872813396922695]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "08de48e004ca383566d1807169f80f0ab0018e7a", "fields": {"departement": "75", "stop_lat": 48.872033003523995, "code_postal": "75109", "stop_lon": 2.3298976383299848, "coord": [48.872033003523995, 2.3298976383299848], "stop_id": 4726918, "stop_desc": "FACE 8 RUE AUBER - 75109", "stop_name": "AUBER"}, "geometry": {"type": "Point", "coordinates": [2.3298976383299848, 48.872033003523995]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "210766a237ac448b2da3b8e28427f80c2dac891e", "fields": {"departement": "75", "stop_lat": 48.87088277826318, "code_postal": "75109", "stop_lon": 2.333031287561144, "coord": [48.87088277826318, 2.333031287561144], "stop_id": 4726921, "stop_desc": "6 BOULEVARD DES CAPUCINES - 75109", "stop_name": "OPERA"}, "geometry": {"type": "Point", "coordinates": [2.333031287561144, 48.87088277826318]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cb9929acca607eecdd8d765ecba39996eed0d472", "fields": {"departement": "75", "stop_lat": 48.86648726254369, "code_postal": "75102", "stop_lon": 2.350877379276764, "coord": [48.86648726254369, 2.350877379276764], "stop_id": 4726927, "stop_desc": "61-63 RUE REAUMUR - 75102", "stop_name": "REAUMUR - SEBASTOPOL"}, "geometry": {"type": "Point", "coordinates": [2.350877379276764, 48.86648726254369]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4461f08804ccf115b4e0d85f152007c998322d33", "fields": {"departement": "75", "stop_lat": 48.865821809644764, "code_postal": "75103", "stop_lon": 2.353928649583883, "coord": [48.865821809644764, 2.353928649583883], "stop_id": 4726928, "stop_desc": "37-39 RUE REAUMUR - 75103", "stop_name": "REAUMUR - ARTS ET METIERS"}, "geometry": {"type": "Point", "coordinates": [2.353928649583883, 48.865821809644764]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4b8fc1b92c3a296570203a155e21ced4d1ef2cbb", "fields": {"departement": "75", "stop_lat": 48.85986952926583, "code_postal": "75103", "stop_lon": 2.3673297601478707, "coord": [48.85986952926583, 2.3673297601478707], "stop_id": 4726935, "stop_desc": "97 BOULEVARD BEAUMARCHAIS - 75103", "stop_name": "SAINT-CLAUDE"}, "geometry": {"type": "Point", "coordinates": [2.3673297601478707, 48.85986952926583]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3f4aab4c5bfc31e612c2984c9dd42e3f2ba1cf38", "fields": {"departement": "75", "stop_lat": 48.8488765289316, "code_postal": "75112", "stop_lon": 2.372266746924533, "coord": [48.8488765289316, 2.372266746924533], "stop_id": 4726941, "stop_desc": "9-11 AVENUE DAUMESNIL - 75112", "stop_name": "LYON - LEDRU ROLLIN"}, "geometry": {"type": "Point", "coordinates": [2.372266746924533, 48.8488765289316]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3803bf1c17923bad82b20621f22cb1362b8bd69f", "fields": {"departement": "75", "stop_lat": 48.84397806224592, "code_postal": "75112", "stop_lon": 2.3731893823763586, "coord": [48.84397806224592, 2.3731893823763586], "stop_id": 4726946, "stop_desc": "FACE 191 RUE DE BERCY - 75112", "stop_name": "GARE DE LYON"}, "geometry": {"type": "Point", "coordinates": [2.3731893823763586, 48.84397806224592]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2625ebc103d059547029237254eb62adff72a582", "fields": {"departement": "75", "stop_lat": 48.87195232806171, "code_postal": "75109", "stop_lon": 2.3392438053086133, "coord": [48.87195232806171, 2.3392438053086133], "stop_id": 4726961, "stop_desc": "2 BOULEVARD DES ITALIENS - 75109", "stop_name": "RICHELIEU - DROUOT"}, "geometry": {"type": "Point", "coordinates": [2.3392438053086133, 48.87195232806171]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c97bcbac4d418e6d9e979c1f0df51ccef2a7f830", "fields": {"departement": "94", "stop_lat": 48.82184523642489, "code_postal": "94069", "stop_lon": 2.4199686200390875, "coord": [48.82184523642489, 2.4199686200390875], "stop_id": 4739152, "stop_desc": "50 AVENUE DU MARECHAL DE LATTRE DE TASSIGNY - 94069", "stop_name": "EDMOND NOCARD"}, "geometry": {"type": "Point", "coordinates": [2.4199686200390875, 48.82184523642489]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f4565f4a9eea261870fab336e7688a95829f8cf8", "fields": {"departement": "75", "stop_lat": 48.838348992494765, "code_postal": "75112", "stop_lon": 2.3816814376226065, "coord": [48.838348992494765, 2.3816814376226065], "stop_id": 4739163, "stop_desc": "RUE DE BERCY - 75112", "stop_name": "GARE DE BERCY - POPB"}, "geometry": {"type": "Point", "coordinates": [2.3816814376226065, 48.838348992494765]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "86357f605575fdb543cb751adab53febbc32c0e8", "fields": {"departement": "75", "stop_lat": 48.84698295134104, "code_postal": "75105", "stop_lon": 2.360976497921474, "coord": [48.84698295134104, 2.360976497921474], "stop_id": 4739169, "stop_desc": "FACE 5 QUAI SAINT BERNARD - 75105", "stop_name": "CUVIER"}, "geometry": {"type": "Point", "coordinates": [2.360976497921474, 48.84698295134104]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a51d3a87eecdbe516ffa5708989f55e93f272796", "fields": {"departement": "75", "stop_lat": 48.84982392159421, "code_postal": "75105", "stop_lon": 2.355775598313055, "coord": [48.84982392159421, 2.355775598313055], "stop_id": 4739171, "stop_desc": "FACE 3 QUAI DE LA TOURNELLE - 75105", "stop_name": "PONT DE LA TOURNELLE - CARDINAL LEMOINE"}, "geometry": {"type": "Point", "coordinates": [2.355775598313055, 48.84982392159421]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0eb7f829780fbc3016c03dc2c3b0e0449154645a", "fields": {"departement": "75", "stop_lat": 48.85990896102511, "code_postal": "75107", "stop_lon": 2.328591744841365, "coord": [48.85990896102511, 2.328591744841365], "stop_id": 4739204, "stop_desc": "QUAI ANATOLE FRANCE - 75107", "stop_name": "PONT ROYAL - QUAI VOLTAIRE"}, "geometry": {"type": "Point", "coordinates": [2.328591744841365, 48.85990896102511]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2c3fe7001ef4d06879ecfea88830d6f549338004", "fields": {"departement": "93", "stop_lat": 48.90530302155479, "code_postal": "93070", "stop_lon": 2.3233218559753235, "coord": [48.90530302155479, 2.3233218559753235], "stop_id": 4758940, "stop_desc": "131-133 BOULEVARD VICTOR HUGO - 93070", "stop_name": "SAINT-OUEN RER"}, "geometry": {"type": "Point", "coordinates": [2.3233218559753235, 48.90530302155479]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3e831703e6be342f6a7962a6baf7a339eec10f88", "fields": {"departement": "93", "stop_lat": 48.90945563533875, "code_postal": "93070", "stop_lon": 2.3299877631253376, "coord": [48.90945563533875, 2.3299877631253376], "stop_id": 4758944, "stop_desc": "57-59 BOULEVARD VICTOR HUGO - 93070", "stop_name": "LES BATELIERS"}, "geometry": {"type": "Point", "coordinates": [2.3299877631253376, 48.90945563533875]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a4b4262e06aa6ba94506c2e6e112fc686bb48a61", "fields": {"departement": "93", "stop_lat": 48.91138799844956, "code_postal": "93070", "stop_lon": 2.333137062530594, "coord": [48.91138799844956, 2.333137062530594], "stop_id": 4758946, "stop_desc": "BOULEVARD VICTOR HUGO - 93070", "stop_name": "MAIRIE DE SAINT-OUEN - METRO"}, "geometry": {"type": "Point", "coordinates": [2.333137062530594, 48.91138799844956]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "34338e45a16d743f8a0d3e83514354c4e3f6ef41", "fields": {"departement": "93", "stop_lat": 48.91505477172237, "code_postal": "93070", "stop_lon": 2.3373774020111786, "coord": [48.91505477172237, 2.3373774020111786], "stop_id": 4758950, "stop_desc": "8 BIS BOULEVARD JEAN JAURES - 93070", "stop_name": "LANDY - JAURES"}, "geometry": {"type": "Point", "coordinates": [2.3373774020111786, 48.91505477172237]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c8d45a3954f61e83ecb2bc2bb6b0858d560f7ac6", "fields": {"departement": "93", "stop_lat": 48.91910535695853, "code_postal": "93066", "stop_lon": 2.3618959025746076, "coord": [48.91910535695853, 2.3618959025746076], "stop_id": 4758964, "stop_desc": "AVENUE DU STADE DE FRANCE - 93066", "stop_name": "LA PLAINE - STADE DE FRANCE RER"}, "geometry": {"type": "Point", "coordinates": [2.3618959025746076, 48.91910535695853]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5560da872004a309836423cbe3731d48d4bddcda", "fields": {"departement": "93", "stop_lat": 48.91523878870637, "code_postal": "93001", "stop_lon": 2.3707707858062474, "coord": [48.91523878870637, 2.3707707858062474], "stop_id": 4758967, "stop_desc": "FACE 36 RUE DU LANDY - 93001", "stop_name": "CANAL"}, "geometry": {"type": "Point", "coordinates": [2.3707707858062474, 48.91523878870637]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dbbae482b32c339483535d04af756887adcead32", "fields": {"departement": "93", "stop_lat": 48.914767792852096, "code_postal": "93001", "stop_lon": 2.3819651405715088, "coord": [48.914767792852096, 2.3819651405715088], "stop_id": 4758972, "stop_desc": "24 RUE DU MOUTIER - 93001", "stop_name": "MAIRIE D'AUBERVILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.3819651405715088, 48.914767792852096]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9de0b9790d6784cc0f3cac51bfc035f156582167", "fields": {"departement": "93", "stop_lat": 48.91526937152716, "code_postal": "93001", "stop_lon": 2.386274400335616, "coord": [48.91526937152716, 2.386274400335616], "stop_id": 4758974, "stop_desc": "FACE 1 RUE DU COMMANDANT L'HERMINIER - 93001", "stop_name": "SQUARE LUCIEN BRUN"}, "geometry": {"type": "Point", "coordinates": [2.386274400335616, 48.91526937152716]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cab27a38011ffc6dff1974ebe9592f42a0251d4e", "fields": {"departement": "93", "stop_lat": 48.915476117263545, "code_postal": "93001", "stop_lon": 2.3861655113159377, "coord": [48.915476117263545, 2.3861655113159377], "stop_id": 4758975, "stop_desc": "1 RUE DU COMMANDANT L'HERMINIER - 93001", "stop_name": "SQUARE LUCIEN BRUN"}, "geometry": {"type": "Point", "coordinates": [2.3861655113159377, 48.915476117263545]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "18617bb00949013def38ab653c74eb1a0ca5e64a", "fields": {"departement": "93", "stop_lat": 48.91899845928509, "code_postal": "93001", "stop_lon": 2.387505215274578, "coord": [48.91899845928509, 2.387505215274578], "stop_id": 4758976, "stop_desc": "4 RUE DANIELLE CASANOVA - 93001", "stop_name": "HEMET"}, "geometry": {"type": "Point", "coordinates": [2.387505215274578, 48.91899845928509]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8e927fe60ae62dae04aedb18ec725dd046c8c973", "fields": {"departement": "93", "stop_lat": 48.91832163478912, "code_postal": "93001", "stop_lon": 2.393763635163444, "coord": [48.91832163478912, 2.393763635163444], "stop_id": 4758979, "stop_desc": "75 RUE DANIELLE CASANOVA - 93001", "stop_name": "DANIELLE CASANOVA - PONT BLANC"}, "geometry": {"type": "Point", "coordinates": [2.393763635163444, 48.91832163478912]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d4dc25cb196eca7669820bc6f6dec23d838975ce", "fields": {"departement": "93", "stop_lat": 48.916724295544824, "code_postal": "93055", "stop_lon": 2.4063751121186447, "coord": [48.916724295544824, 2.4063751121186447], "stop_id": 4758984, "stop_desc": "FACE 247 AVENUE JEAN JAURES - 93055", "stop_name": "HELENE COCHENNEC"}, "geometry": {"type": "Point", "coordinates": [2.4063751121186447, 48.916724295544824]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2c54b4e62b206d5cc65d25a8a7c6bfe762734482", "fields": {"departement": "93", "stop_lat": 48.91843969494924, "code_postal": "93027", "stop_lon": 2.4082728559481428, "coord": [48.91843969494924, 2.4082728559481428], "stop_id": 4758985, "stop_desc": "8-8 BIS AVENUE PAUL VAILLANT-COUTURIER - 93027", "stop_name": "EDOUARD VAILLANT - JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.4082728559481428, 48.91843969494924]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cf4b9a4d3c78eeaf2f387a2029b5bf9a1cf75490", "fields": {"departement": "93", "stop_lat": 48.921053498143806, "code_postal": "93027", "stop_lon": 2.4105947389162026, "coord": [48.921053498143806, 2.4105947389162026], "stop_id": 4758988, "stop_desc": "0 AVENUE PAUL VAILLANT COUTURIER - 93027", "stop_name": "LA COURNEUVE-8 MAI 1945."}, "geometry": {"type": "Point", "coordinates": [2.4105947389162026, 48.921053498143806]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c485ec3a3f2c014532ad6770debada82a26dc638", "fields": {"departement": "93", "stop_lat": 48.91614972446159, "code_postal": "93001", "stop_lon": 2.4053380274974674, "coord": [48.91614972446159, 2.4053380274974674], "stop_id": 4758990, "stop_desc": "FACE 186 AVENUE JEAN JAURES - 93001", "stop_name": "HELENE COCHENNEC"}, "geometry": {"type": "Point", "coordinates": [2.4053380274974674, 48.91614972446159]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0c313a81d1adc40458f6e17618447bbc9a528d2a", "fields": {"departement": "92", "stop_lat": 48.90365798799515, "code_postal": "92024", "stop_lon": 2.3202549925025453, "coord": [48.90365798799515, 2.3202549925025453], "stop_id": 4758993, "stop_desc": "159 BOULEVARD VICTOR HUGO - 92024", "stop_name": "VICTOR HUGO - SANZILLON"}, "geometry": {"type": "Point", "coordinates": [2.3202549925025453, 48.90365798799515]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ac3091b48677afb45c180c1d4b9a52e1d2b0b344", "fields": {"departement": "92", "stop_lat": 48.89320123324828, "code_postal": "92044", "stop_lon": 2.299623025967514, "coord": [48.89320123324828, 2.299623025967514], "stop_id": 4766795, "stop_desc": "9 RUE VICTOR HUGO - 92044", "stop_name": "ALSACE"}, "geometry": {"type": "Point", "coordinates": [2.299623025967514, 48.89320123324828]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "26376495a12fdff3c8f5538ccbfa2ef14b1876c0", "fields": {"departement": "75", "stop_lat": 48.82641104428314, "code_postal": "75113", "stop_lon": 2.357400702995543, "coord": [48.82641104428314, 2.357400702995543], "stop_id": 4767050, "stop_desc": "55-57 AVENUE D'ITALIE - 75113", "stop_name": "ITALIE - TOLBIAC"}, "geometry": {"type": "Point", "coordinates": [2.357400702995543, 48.82641104428314]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "317a5c6d3c11064fbf90bc9fc097647885c2fb8b", "fields": {"departement": "75", "stop_lat": 48.82251923443529, "code_postal": "75113", "stop_lon": 2.35827030620746, "coord": [48.82251923443529, 2.35827030620746], "stop_id": 4767051, "stop_desc": "150 AVENUE D'ITALIE - 75113", "stop_name": "MAISON BLANCHE"}, "geometry": {"type": "Point", "coordinates": [2.35827030620746, 48.82251923443529]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "77fabac43b8363fa9dbde4278a91062ed6de319e", "fields": {"departement": "75", "stop_lat": 48.82247424034754, "code_postal": "75113", "stop_lon": 2.3585833443279376, "coord": [48.82247424034754, 2.3585833443279376], "stop_id": 4767052, "stop_desc": "109 AVENUE D'ITALIE - 75113", "stop_name": "MAISON BLANCHE"}, "geometry": {"type": "Point", "coordinates": [2.3585833443279376, 48.82247424034754]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cadecbbfa3fe1751a31c7d6d9b8266b7eddfa97a", "fields": {"departement": "75", "stop_lat": 48.81946318939424, "code_postal": "75113", "stop_lon": 2.3595348317669615, "coord": [48.81946318939424, 2.3595348317669615], "stop_id": 4767054, "stop_desc": "159 AVENUE D'ITALIE - 75113", "stop_name": "PORTE D'ITALIE"}, "geometry": {"type": "Point", "coordinates": [2.3595348317669615, 48.81946318939424]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "901c454621b16d08fa983c22f0209e6f7d6829bb", "fields": {"departement": "94", "stop_lat": 48.81476240384012, "code_postal": "94043", "stop_lon": 2.360621543737651, "coord": [48.81476240384012, 2.360621543737651], "stop_id": 4767057, "stop_desc": "18 AVENUE DE FONTAINEBLEAU - 94043", "stop_name": "ROGER SALENGRO - FONTAINEBLEAU"}, "geometry": {"type": "Point", "coordinates": [2.360621543737651, 48.81476240384012]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1e15815956ce0dbbdbc150f53f7a7e8b4500b071", "fields": {"departement": "94", "stop_lat": 48.814771316142455, "code_postal": "94043", "stop_lon": 2.361002603265579, "coord": [48.814771316142455, 2.361002603265579], "stop_id": 4767058, "stop_desc": "17 AVENUE DE FONTAINEBLEAU - 94043", "stop_name": "ROGER SALENGRO - FONTAINEBLEAU"}, "geometry": {"type": "Point", "coordinates": [2.361002603265579, 48.814771316142455]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "147c993dffd3a57d23b73d4b679448b4abbd4dac", "fields": {"departement": "94", "stop_lat": 48.804830185116614, "code_postal": "94076", "stop_lon": 2.364086735660601, "coord": [48.804830185116614, 2.364086735660601], "stop_id": 4767064, "stop_desc": "AVENUE DE PARIS - 94076", "stop_name": "DAUPHIN - ANATOLE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.364086735660601, 48.804830185116614]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1a47456961b46e3e7fb2e1feb036604e5bd1dd5e", "fields": {"departement": "94", "stop_lat": 48.79306454434045, "code_postal": "94076", "stop_lon": 2.366406843667121, "coord": [48.79306454434045, 2.366406843667121], "stop_id": 4767070, "stop_desc": "FACE 75 RUE JEAN JAURES - 94076", "stop_name": "GUYNEMER - PLACE DES FUSILLES"}, "geometry": {"type": "Point", "coordinates": [2.366406843667121, 48.79306454434045]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "722ff59c1d831c721d229c3fb1bea84fa957a8af", "fields": {"departement": "94", "stop_lat": 48.78317761347435, "code_postal": "94076", "stop_lon": 2.367258147487291, "coord": [48.78317761347435, 2.367258147487291], "stop_id": 4767077, "stop_desc": "67 AVENUE DE STALINGRAD - 94076", "stop_name": "LAMARTINE"}, "geometry": {"type": "Point", "coordinates": [2.367258147487291, 48.78317761347435]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "156ac8a5a1746b5702359fbddaafe02c5cc66416", "fields": {"departement": "94", "stop_lat": 48.77209533768897, "code_postal": "94021", "stop_lon": 2.367537303569896, "coord": [48.77209533768897, 2.367537303569896], "stop_id": 4767079, "stop_desc": "AVENUE DE STALINGRAD - 94021", "stop_name": "MOULIN VERT"}, "geometry": {"type": "Point", "coordinates": [2.367537303569896, 48.77209533768897]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eb324c9e2c23c629da90e12be650cff99601c053", "fields": {"departement": "94", "stop_lat": 48.76499465577505, "code_postal": "94021", "stop_lon": 2.367968239679133, "coord": [48.76499465577505, 2.367968239679133], "stop_id": 4767081, "stop_desc": "AVENUE DE STALINGRAD - 94021", "stop_name": "CIMETIERE PARISIEN DE THIAIS"}, "geometry": {"type": "Point", "coordinates": [2.367968239679133, 48.76499465577505]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0d58b3ffb72eaa123560b2618861b65b407cf7a0", "fields": {"departement": "94", "stop_lat": 48.76396322693865, "code_postal": "94021", "stop_lon": 2.3577435746777065, "coord": [48.76396322693865, 2.3577435746777065], "stop_id": 4767086, "stop_desc": "AVENUE DE LA CITE - 94021", "stop_name": "MARCHE INTERNATIONAL DE RUNGIS"}, "geometry": {"type": "Point", "coordinates": [2.3577435746777065, 48.76396322693865]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "df1db62cab79caf12c1301e02222401399115cd6", "fields": {"departement": "94", "stop_lat": 48.76353172246238, "code_postal": "94021", "stop_lon": 2.3581784670689125, "coord": [48.76353172246238, 2.3581784670689125], "stop_id": 4767087, "stop_desc": "AVENUE DE LA CITE - 94021", "stop_name": "MARCHE INTERNATIONAL DE RUNGIS"}, "geometry": {"type": "Point", "coordinates": [2.3581784670689125, 48.76353172246238]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fa557cd91581125a8059c86b3e43c87e0184e40b", "fields": {"departement": "94", "stop_lat": 48.75820119073097, "code_postal": "94065", "stop_lon": 2.361235040376766, "coord": [48.75820119073097, 2.361235040376766], "stop_id": 4767093, "stop_desc": "RUE DU JOUR - 94065", "stop_name": "RUE DE LA BRESSE"}, "geometry": {"type": "Point", "coordinates": [2.361235040376766, 48.75820119073097]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9bb0472b302e9182bbf06f0fc0d12e46af55993e", "fields": {"departement": "92", "stop_lat": 48.886782393482804, "code_postal": "92050", "stop_lon": 2.199311678106991, "coord": [48.886782393482804, 2.199311678106991], "stop_id": 4023159, "stop_desc": "8 AVENUE DU MARECHAL JOFFRE - 92050", "stop_name": "PLACE DE LA BOULE - JOFFRE"}, "geometry": {"type": "Point", "coordinates": [2.199311678106991, 48.886782393482804]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "968dd8642681065814d9f85d427fc1d3ab34bbf0", "fields": {"departement": "92", "stop_lat": 48.88279774489227, "code_postal": "92063", "stop_lon": 2.1890747728507938, "coord": [48.88279774489227, 2.1890747728507938], "stop_id": 4023164, "stop_desc": "FACE 46 AVENUE PAUL DOUMER - 92063", "stop_name": "GABRIEL PERI"}, "geometry": {"type": "Point", "coordinates": [2.1890747728507938, 48.88279774489227]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ec1bc43fc2d65d67505907bb1ab5e0a6a1a6fb59", "fields": {"departement": "92", "stop_lat": 48.88402421063552, "code_postal": "92050", "stop_lon": 2.192491726617203, "coord": [48.88402421063552, 2.192491726617203], "stop_id": 4023167, "stop_desc": "73 AVENUE DU MARECHAL JOFFRE - 92050", "stop_name": "BOULEVARD NATIONAL"}, "geometry": {"type": "Point", "coordinates": [2.192491726617203, 48.88402421063552]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "15076fe2c75dbefd2e0dcdc4ada105f1958269fa", "fields": {"departement": "92", "stop_lat": 48.886616147822906, "code_postal": "92044", "stop_lon": 2.282879006969022, "coord": [48.886616147822906, 2.282879006969022], "stop_id": 4023170, "stop_desc": "9 BOULEVARD BINEAU - 92044", "stop_name": "VILLIERS - BINEAU"}, "geometry": {"type": "Point", "coordinates": [2.282879006969022, 48.886616147822906]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e5ec16f6fd2a8a92294592722c6132a7e6b0e7b1", "fields": {"departement": "92", "stop_lat": 48.90671842181802, "code_postal": "92035", "stop_lon": 2.237990780487569, "coord": [48.90671842181802, 2.237990780487569], "stop_id": 4023188, "stop_desc": "BD NATIONAL - 92035", "stop_name": "LA GARENNE-COLOMBES - CHARLEBOURG"}, "geometry": {"type": "Point", "coordinates": [2.237990780487569, 48.90671842181802]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "13ea694ec768aca351cfda557c923f9fadc7ad48", "fields": {"departement": "92", "stop_lat": 48.888515281135334, "code_postal": "92050", "stop_lon": 2.223265977075701, "coord": [48.888515281135334, 2.223265977075701], "stop_id": 4023196, "stop_desc": "FACE 103 AVENUE PABLO PICASSO - 92050", "stop_name": "LES FONTENELLES"}, "geometry": {"type": "Point", "coordinates": [2.223265977075701, 48.888515281135334]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e817f4b78ed120b709f811b08e53c514b3e7a071", "fields": {"departement": "92", "stop_lat": 48.88961718272862, "code_postal": "92050", "stop_lon": 2.2196382951797005, "coord": [48.88961718272862, 2.2196382951797005], "stop_id": 4023198, "stop_desc": "74 AVENUE PABLO PICASSO - 92050", "stop_name": "FERNAND LEGER"}, "geometry": {"type": "Point", "coordinates": [2.2196382951797005, 48.88961718272862]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6abd2f860e0d7007781d392aff1bfe540586e60b", "fields": {"departement": "92", "stop_lat": 48.89125721485237, "code_postal": "92050", "stop_lon": 2.2150415249938704, "coord": [48.89125721485237, 2.2150415249938704], "stop_id": 4023200, "stop_desc": "32 AVENUE PABLO PICASSO - 92050", "stop_name": "LIBERTE"}, "geometry": {"type": "Point", "coordinates": [2.2150415249938704, 48.89125721485237]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0ac142a1c1dfdb922ca3ca9da01901313d47ccc9", "fields": {"departement": "92", "stop_lat": 48.87588261496247, "code_postal": "92063", "stop_lon": 2.2008530750060524, "coord": [48.87588261496247, 2.2008530750060524], "stop_id": 4023211, "stop_desc": "4 RUE GALLIENI - 92063", "stop_name": "EUGENE SUE"}, "geometry": {"type": "Point", "coordinates": [2.2008530750060524, 48.87588261496247]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fa0b3271b2204e4c83200f020efe55bfd1c38f0a", "fields": {"departement": "92", "stop_lat": 48.87045720657914, "code_postal": "92063", "stop_lon": 2.2034422382803878, "coord": [48.87045720657914, 2.2034422382803878], "stop_id": 4023214, "stop_desc": "FACE 38 RUE GALLIENI - 92063", "stop_name": "8 MAI 1945"}, "geometry": {"type": "Point", "coordinates": [2.2034422382803878, 48.87045720657914]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6bd8b6017bac04b8801b592d5d7b4cf42c9c7cd9", "fields": {"departement": "92", "stop_lat": 48.85949432773221, "code_postal": "92063", "stop_lon": 2.18260333113373, "coord": [48.85949432773221, 2.18260333113373], "stop_id": 4023215, "stop_desc": "R DE LA CHATAIGNERAIE - 92063", "stop_name": "COLLEGE PASSY - BUZENVAL"}, "geometry": {"type": "Point", "coordinates": [2.18260333113373, 48.85949432773221]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d1119f546eed6a456b075ae07ca9df9a47983afe", "fields": {"departement": "92", "stop_lat": 48.86128502730734, "code_postal": "92063", "stop_lon": 2.1708972435685348, "coord": [48.86128502730734, 2.1708972435685348], "stop_id": 4023218, "stop_desc": "RUE DE LA CHATAIGNERAIE - 92063", "stop_name": "CENTRE MADELEINE DANIELOU"}, "geometry": {"type": "Point", "coordinates": [2.1708972435685348, 48.86128502730734]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ddeed56516bd63f9f673b0863c3f0d318f5d6564", "fields": {"departement": "75", "stop_lat": 48.88598204653511, "code_postal": "75117", "stop_lon": 2.2924736600136315, "coord": [48.88598204653511, 2.2924736600136315], "stop_id": 4023219, "stop_desc": "PLACE STUART MERRILL - 75117", "stop_name": "PORTE DE CHAMPERRET-METRO"}, "geometry": {"type": "Point", "coordinates": [2.2924736600136315, 48.88598204653511]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ec30842e0bc691ff33f690f508afb7c7f77bd336", "fields": {"departement": "92", "stop_lat": 48.886948430903146, "code_postal": "92051", "stop_lon": 2.282347163337189, "coord": [48.886948430903146, 2.282347163337189], "stop_id": 4023221, "stop_desc": "54 BOULEVARD BINEAU - 92051", "stop_name": "VILLIERS - BINEAU"}, "geometry": {"type": "Point", "coordinates": [2.282347163337189, 48.886948430903146]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c4e0a0c17045e994734ea82031a9c86fbc1b8655", "fields": {"departement": "92", "stop_lat": 48.89253149733794, "code_postal": "92051", "stop_lon": 2.2688752558078367, "coord": [48.89253149733794, 2.2688752558078367], "stop_id": 4023226, "stop_desc": "186 BOULEVARD BINEAU - 92051", "stop_name": "LA SAUSSAYE - BINEAU"}, "geometry": {"type": "Point", "coordinates": [2.2688752558078367, 48.89253149733794]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4781e0c7af5292ddcfd409fbd07b5947dd15b83b", "fields": {"departement": "92", "stop_lat": 48.90736786089014, "code_postal": "92035", "stop_lon": 2.240879829025666, "coord": [48.90736786089014, 2.240879829025666], "stop_id": 4023235, "stop_desc": "98 BOULEVARD DE LA REPUBLIQUE - 92035", "stop_name": "DUMONT D'URVILLE - BELGIQUE"}, "geometry": {"type": "Point", "coordinates": [2.240879829025666, 48.90736786089014]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b5ce491fd6079e3951b76a74d599a6c6f6da4256", "fields": {"departement": "92", "stop_lat": 48.90665534199708, "code_postal": "92035", "stop_lon": 2.2377864022980307, "coord": [48.90665534199708, 2.2377864022980307], "stop_id": 4023236, "stop_desc": "AVENUE DE VERDUN 1916 - 92035", "stop_name": "LA GARENNE-COLOMBES - CHARLEBOURG"}, "geometry": {"type": "Point", "coordinates": [2.2377864022980307, 48.90665534199708]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6cbf211e2062818929d51ba8aa1cdfadff59e152", "fields": {"departement": "92", "stop_lat": 48.90274603540909, "code_postal": "92050", "stop_lon": 2.227624254234989, "coord": [48.90274603540909, 2.227624254234989], "stop_id": 4023239, "stop_desc": "155 AVENUE FRANCOIS ARAGO - 92050", "stop_name": "VEUVE LACROIX"}, "geometry": {"type": "Point", "coordinates": [2.227624254234989, 48.90274603540909]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4fac145d03e67ab8e7603a64866b2a7b8f000f85", "fields": {"departement": "92", "stop_lat": 48.88922446773314, "code_postal": "92050", "stop_lon": 2.213451761329107, "coord": [48.88922446773314, 2.213451761329107], "stop_id": 4023251, "stop_desc": "AVENUE DES CHAMPS PIERREUX - 92050", "stop_name": "LES CHAMPS PIERREUX"}, "geometry": {"type": "Point", "coordinates": [2.213451761329107, 48.88922446773314]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "22b08aaa2a2c8644500ce980ed8c568b4f067ebc", "fields": {"departement": "92", "stop_lat": 48.89144597329983, "code_postal": "92050", "stop_lon": 2.215068338443355, "coord": [48.89144597329983, 2.215068338443355], "stop_id": 4023252, "stop_desc": "29-35 AV PABLO PICASSO - 92050", "stop_name": "LIBERTE"}, "geometry": {"type": "Point", "coordinates": [2.215068338443355, 48.89144597329983]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "49ab05f10142d3d42d2a6242d709ddd654362346", "fields": {"departement": "92", "stop_lat": 48.899010644253586, "code_postal": "92050", "stop_lon": 2.221552614282876, "coord": [48.899010644253586, 2.221552614282876], "stop_id": 4023258, "stop_desc": "14 AVENUE FRANCOIS ARAGO - 92050", "stop_name": "LENS"}, "geometry": {"type": "Point", "coordinates": [2.221552614282876, 48.899010644253586]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "01995fbde98629120b9e00b9e9093aa66e75c20f", "fields": {"departement": "92", "stop_lat": 48.90151323789025, "code_postal": "92050", "stop_lon": 2.2259365044967083, "coord": [48.90151323789025, 2.2259365044967083], "stop_id": 4023259, "stop_desc": "FACE 111 AVENUE FRANCOIS ARAGO - 92050", "stop_name": "ARRAS"}, "geometry": {"type": "Point", "coordinates": [2.2259365044967083, 48.90151323789025]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "99b853218682ca99aeaf015c5006bd9af286ad55", "fields": {"departement": "92", "stop_lat": 48.90585430242931, "code_postal": "92035", "stop_lon": 2.236370101980281, "coord": [48.90585430242931, 2.236370101980281], "stop_id": 4023262, "stop_desc": "FACE 10-12 AVENUE DE VERDUN 1916 - 92035", "stop_name": "VERDUN"}, "geometry": {"type": "Point", "coordinates": [2.236370101980281, 48.90585430242931]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6729b7a705e14a08f0b21f9f198a95b0da58d1b9", "fields": {"departement": "75", "stop_lat": 48.88582917143783, "code_postal": "75117", "stop_lon": 2.2922284919902833, "coord": [48.88582917143783, 2.2922284919902833], "stop_id": 4023264, "stop_desc": "PLACE STUART MERRILL - 75117", "stop_name": "PORTE DE CHAMPERRET"}, "geometry": {"type": "Point", "coordinates": [2.2922284919902833, 48.88582917143783]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f9b9e099bda6acf51645a490da13e480a7cb2505", "fields": {"departement": "92", "stop_lat": 48.8944895798988, "code_postal": "92051", "stop_lon": 2.2669508333590063, "coord": [48.8944895798988, 2.2669508333590063], "stop_id": 4023279, "stop_desc": "210 BOULEVARD BINEAU - 92051", "stop_name": "ILE DE LA JATTE"}, "geometry": {"type": "Point", "coordinates": [2.2669508333590063, 48.8944895798988]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4366d925ddfd8c18e68309601f72d8746a51dc79", "fields": {"departement": "92", "stop_lat": 48.90790892999311, "code_postal": "92035", "stop_lon": 2.255371336255194, "coord": [48.90790892999311, 2.255371336255194], "stop_id": 4023290, "stop_desc": "80 AVENUE DU GENERAL DE GAULLE - 92035", "stop_name": "JEAN BONAL"}, "geometry": {"type": "Point", "coordinates": [2.255371336255194, 48.90790892999311]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "208d1a950799e40644793a6e6e0c0356ed196faf", "fields": {"departement": "92", "stop_lat": 48.915096866759875, "code_postal": "92025", "stop_lon": 2.252946493434095, "coord": [48.915096866759875, 2.252946493434095], "stop_id": 4023295, "stop_desc": "149 AVENUE HENRI BARBUSSE - 92025", "stop_name": "FELIX FAURE"}, "geometry": {"type": "Point", "coordinates": [2.252946493434095, 48.915096866759875]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b32820c7dbca3db543f0013f99b0ebcbafdb40a7", "fields": {"departement": "92", "stop_lat": 48.928464717864934, "code_postal": "92025", "stop_lon": 2.2464871203766434, "coord": [48.928464717864934, 2.2464871203766434], "stop_id": 4023305, "stop_desc": "RUE PAUL BERT - 92025", "stop_name": "ROBERT SCHUMAN"}, "geometry": {"type": "Point", "coordinates": [2.2464871203766434, 48.928464717864934]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "985d95c14106d91a923ec1eced6774902b7df162", "fields": {"departement": "92", "stop_lat": 48.92993791085241, "code_postal": "92025", "stop_lon": 2.2456252563669428, "coord": [48.92993791085241, 2.2456252563669428], "stop_id": 4023307, "stop_desc": "79-81 RUE PAUL BERT - 92025", "stop_name": "LES SAULES"}, "geometry": {"type": "Point", "coordinates": [2.2456252563669428, 48.92993791085241]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bac9669b42ebf9fa26e26c25e63a4eaf97c23873", "fields": {"departement": "92", "stop_lat": 48.89062691501333, "code_postal": "92026", "stop_lon": 2.255698478699648, "coord": [48.89062691501333, 2.255698478699648], "stop_id": 4023370, "stop_desc": "FACE 3 RUE DE L'ABREUVOIR - 92026", "stop_name": "PAUL DOUMER"}, "geometry": {"type": "Point", "coordinates": [2.255698478699648, 48.89062691501333]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "74fd86c7f828cff29b082da3063f86d432791b24", "fields": {"departement": "92", "stop_lat": 48.89559246986217, "code_postal": "92026", "stop_lon": 2.2495706345605915, "coord": [48.89559246986217, 2.2495706345605915], "stop_id": 4023374, "stop_desc": "26 RUE DE BEZONS - 92026", "stop_name": "PLACE CHARRAS"}, "geometry": {"type": "Point", "coordinates": [2.2495706345605915, 48.89559246986217]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0fc94b260446b765eaa2e161c5e669547b4c9f5a", "fields": {"departement": "92", "stop_lat": 48.90046005444534, "code_postal": "92026", "stop_lon": 2.245009431178649, "coord": [48.90046005444534, 2.245009431178649], "stop_id": 4023378, "stop_desc": "52 AVENUE MARCEAU - 92026", "stop_name": "PLACE DU 8 MAI 1945"}, "geometry": {"type": "Point", "coordinates": [2.245009431178649, 48.90046005444534]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "24721f301b1c3065c83017475c64a4a9604ee2bf", "fields": {"departement": "92", "stop_lat": 48.908972739931876, "code_postal": "92025", "stop_lon": 2.236282226502673, "coord": [48.908972739931876, 2.236282226502673], "stop_id": 4023387, "stop_desc": "15 BD CHARLES DE GAULLE - 92025", "stop_name": "GARE DE LA GARENNE-COLOMBES"}, "geometry": {"type": "Point", "coordinates": [2.236282226502673, 48.908972739931876]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "63692d478de35b13e60338c18a757c25dc7d8b2d", "fields": {"departement": "92", "stop_lat": 48.91314597969446, "code_postal": "92025", "stop_lon": 2.2402009661027473, "coord": [48.91314597969446, 2.2402009661027473], "stop_id": 4023389, "stop_desc": "FACE 209 RUE D'ESTIENNE D'ORVES - 92025", "stop_name": "RUE DU COMMERCE"}, "geometry": {"type": "Point", "coordinates": [2.2402009661027473, 48.91314597969446]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3d91b775c3fece9a423f88c88a392935dac3fdf4", "fields": {"departement": "92", "stop_lat": 48.92847019954727, "code_postal": "92025", "stop_lon": 2.254002204930194, "coord": [48.92847019954727, 2.254002204930194], "stop_id": 4023401, "stop_desc": "65 BOULEVARD DE VALMY - 92025", "stop_name": "VALMY - GAMBETTA - STADE"}, "geometry": {"type": "Point", "coordinates": [2.254002204930194, 48.92847019954727]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eaea541b2fa7ef4a9b43420b2b54c5083095d1d0", "fields": {"departement": "92", "stop_lat": 48.88611165762972, "code_postal": "92062", "stop_lon": 2.2504861115803076, "coord": [48.88611165762972, 2.2504861115803076], "stop_id": 4023409, "stop_desc": "2-4 RUE BELLINI - 92062", "stop_name": "BELLINI"}, "geometry": {"type": "Point", "coordinates": [2.2504861115803076, 48.88611165762972]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6caf43cab789f8a1680dd87510e6c96b57bd060d", "fields": {"departement": "95", "stop_lat": 48.92316367574363, "code_postal": "95063", "stop_lon": 2.2173664624293954, "coord": [48.92316367574363, 2.2173664624293954], "stop_id": 4023485, "stop_desc": "R JULIUS ET ETHEL ROSENBERG - 95063", "stop_name": "PONT DE BEZONS"}, "geometry": {"type": "Point", "coordinates": [2.2173664624293954, 48.92316367574363]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "88206fbf6c5a33971aa5b28f4293225e80a11678", "fields": {"departement": "95", "stop_lat": 48.92477310902637, "code_postal": "95063", "stop_lon": 2.20945267132122, "coord": [48.92477310902637, 2.20945267132122], "stop_id": 4023490, "stop_desc": "136 RUE EDOUARD VAILLANT - 95063", "stop_name": "EMILE ZOLA"}, "geometry": {"type": "Point", "coordinates": [2.20945267132122, 48.92477310902637]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f41df24d061a5d40436bf3fb41ff595327ab6940", "fields": {"departement": "95", "stop_lat": 48.92383631923717, "code_postal": "95063", "stop_lon": 2.2074638641796867, "coord": [48.92383631923717, 2.2074638641796867], "stop_id": 4023491, "stop_desc": "66-68 RUE EMILE ZOLA - 95063", "stop_name": "GRAND CERF"}, "geometry": {"type": "Point", "coordinates": [2.2074638641796867, 48.92383631923717]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d605cf7d044ed1f02eb186c7da3bd2cf1e40b031", "fields": {"departement": "78", "stop_lat": 48.92496620108442, "code_postal": "78311", "stop_lon": 2.1973279257361393, "coord": [48.92496620108442, 2.1973279257361393], "stop_id": 4023495, "stop_desc": "1 BOULEVARD EMILE ZOLA - 78311", "stop_name": "PAUL BERT - JOSEPH BARA"}, "geometry": {"type": "Point", "coordinates": [2.1973279257361393, 48.92496620108442]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "626e3ef84da48fc91c47d419dfeb48bec7286473", "fields": {"departement": "78", "stop_lat": 48.9265692448133, "code_postal": "78311", "stop_lon": 2.1926183044300656, "coord": [48.9265692448133, 2.1926183044300656], "stop_id": 4023498, "stop_desc": "BOULEVARD HENRI BARBUSSE - 78311", "stop_name": "LES BLANCHES"}, "geometry": {"type": "Point", "coordinates": [2.1926183044300656, 48.9265692448133]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f1b51df2e7f1a1dd5854838336310e90d714b797", "fields": {"departement": "78", "stop_lat": 48.94192568610934, "code_postal": "78586", "stop_lon": 2.1640351425106474, "coord": [48.94192568610934, 2.1640351425106474], "stop_id": 4023509, "stop_desc": "AVENUE MAURICE BERTEAUX - 78586", "stop_name": "STALINGRAD"}, "geometry": {"type": "Point", "coordinates": [2.1640351425106474, 48.94192568610934]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4c530229e0f9bb0f4212e54d38adfb5c05542828", "fields": {"departement": "78", "stop_lat": 48.941790587170054, "code_postal": "78586", "stop_lon": 2.163830956351103, "coord": [48.941790587170054, 2.163830956351103], "stop_id": 4023510, "stop_desc": "78 AVENUE MAURICE BERTEAUX - 78586", "stop_name": "STALINGRAD"}, "geometry": {"type": "Point", "coordinates": [2.163830956351103, 48.941790587170054]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8e1e3c52ced42d28b9463232e569f9947d37f9a6", "fields": {"departement": "78", "stop_lat": 48.9460842693818, "code_postal": "78358", "stop_lon": 2.156421700977863, "coord": [48.9460842693818, 2.156421700977863], "stop_id": 4023511, "stop_desc": "AVENUE DE VERDUN - 78358", "stop_name": "CHATEAU"}, "geometry": {"type": "Point", "coordinates": [2.156421700977863, 48.9460842693818]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "51082969181dc00dc5fe590406ff95c87efc7490", "fields": {"departement": "78", "stop_lat": 48.94558892105835, "code_postal": "78358", "stop_lon": 2.155713966739491, "coord": [48.94558892105835, 2.155713966739491], "stop_id": 4023512, "stop_desc": "AV DE VERDUN - 78358", "stop_name": "CHATEAU"}, "geometry": {"type": "Point", "coordinates": [2.155713966739491, 48.94558892105835]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "abdbc1adff51a74ac2cee905ca88564286e32914", "fields": {"departement": "92", "stop_lat": 48.898942954714016, "code_postal": "92050", "stop_lon": 2.2000971826395057, "coord": [48.898942954714016, 2.2000971826395057], "stop_id": 4023611, "stop_desc": "AVENUE DE LA REPUBLIQUE - 92050", "stop_name": "HOCHE"}, "geometry": {"type": "Point", "coordinates": [2.2000971826395057, 48.898942954714016]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "11ec903ec03d26851664dc6e32bc4beaf4ad466b", "fields": {"departement": "92", "stop_lat": 48.91106151693222, "code_postal": "92050", "stop_lon": 2.2207212698138035, "coord": [48.91106151693222, 2.2207212698138035], "stop_id": 4023622, "stop_desc": "361 AVENUE DE LA REPUBLIQUE - 92050", "stop_name": "LES ORMES"}, "geometry": {"type": "Point", "coordinates": [2.2207212698138035, 48.91106151693222]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "619ecdf4a7d09ecea3759d2a03dab5ab6ea20098", "fields": {"departement": "92", "stop_lat": 48.912277593016725, "code_postal": "92050", "stop_lon": 2.223650006178399, "coord": [48.912277593016725, 2.223650006178399], "stop_id": 4023624, "stop_desc": "403 AVENUE DE LA REPUBLIQUE - 92050", "stop_name": "HOPITAL DE NANTERRE"}, "geometry": {"type": "Point", "coordinates": [2.223650006178399, 48.912277593016725]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ede4b19482167d69b2fdba7f8b2cbeab452371f4", "fields": {"departement": "92", "stop_lat": 48.919906023218026, "code_postal": "92025", "stop_lon": 2.2424656383228103, "coord": [48.919906023218026, 2.2424656383228103], "stop_id": 4023632, "stop_desc": "142 RUE GABRIEL PERI - 92025", "stop_name": "EGALITE"}, "geometry": {"type": "Point", "coordinates": [2.2424656383228103, 48.919906023218026]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "378a252a621960d27a04c5327eeffc4dfd43eaea", "fields": {"departement": "92", "stop_lat": 48.92322901063561, "code_postal": "92025", "stop_lon": 2.251446755100315, "coord": [48.92322901063561, 2.251446755100315], "stop_id": 4023636, "stop_desc": "14 BIS RUE GABRIEL PERI - 92025", "stop_name": "EGLISE DE COLOMBES"}, "geometry": {"type": "Point", "coordinates": [2.251446755100315, 48.92322901063561]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a0fd57e7c64394debaa858deba6217b8303d499b", "fields": {"departement": "92", "stop_lat": 48.92293456245295, "code_postal": "92025", "stop_lon": 2.2544475041603773, "coord": [48.92293456245295, 2.2544475041603773], "stop_id": 4023637, "stop_desc": "28 RUE DU BOURNARD - 92025", "stop_name": "MAIRIE DE COLOMBES"}, "geometry": {"type": "Point", "coordinates": [2.2544475041603773, 48.92293456245295]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "13b3da5c5f2185af4d0dd1a83961d53b9616bab4", "fields": {"departement": "92", "stop_lat": 48.923186035500706, "code_postal": "92025", "stop_lon": 2.2542152626298364, "coord": [48.923186035500706, 2.2542152626298364], "stop_id": 4023638, "stop_desc": "FACE 20 RUE DU BOURNARD - 92025", "stop_name": "MAIRIE DE COLOMBES"}, "geometry": {"type": "Point", "coordinates": [2.2542152626298364, 48.923186035500706]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5ce37b2f30bdd4286342519997af3ed2c1ae7782", "fields": {"departement": "92", "stop_lat": 48.92995205379622, "code_postal": "92036", "stop_lon": 2.28361095267388, "coord": [48.92995205379622, 2.28361095267388], "stop_id": 4023652, "stop_desc": "AVENUE DE LA REDOUTE - 92036", "stop_name": "LES COURTILLES"}, "geometry": {"type": "Point", "coordinates": [2.28361095267388, 48.92995205379622]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bd4091f362537e44ddf35c5bb80577e23b857d55", "fields": {"departement": "92", "stop_lat": 48.90969828013789, "code_postal": "92050", "stop_lon": 2.2145481001800866, "coord": [48.90969828013789, 2.2145481001800866], "stop_id": 4023655, "stop_desc": "RUE DU 1ER MAI - 92050", "stop_name": "LES GRANDS PRES"}, "geometry": {"type": "Point", "coordinates": [2.2145481001800866, 48.90969828013789]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3029489275bdc1fb30ef7da07d8c78c83963c511", "fields": {"departement": "92", "stop_lat": 48.89706192734176, "code_postal": "92050", "stop_lon": 2.19775767115062, "coord": [48.89706192734176, 2.19775767115062], "stop_id": 4023656, "stop_desc": "FACE 12-14 AVENUE DU GENERAL GALLIENI - 92050", "stop_name": "FAIDHERBE"}, "geometry": {"type": "Point", "coordinates": [2.19775767115062, 48.89706192734176]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3d2d01b463a04440f1e15916e3aafe12952aaef3", "fields": {"departement": "95", "stop_lat": 48.94237387912591, "code_postal": "95018", "stop_lon": 2.2432703507607203, "coord": [48.94237387912591, 2.2432703507607203], "stop_id": 4023686, "stop_desc": "31 AVENUE DU GENERAL DE GAULLE - 95018", "stop_name": "CLEMENT ADER"}, "geometry": {"type": "Point", "coordinates": [2.2432703507607203, 48.94237387912591]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "248841fd8763aaf32a0fd9bf4bd4dc2dabdf9ab6", "fields": {"departement": "95", "stop_lat": 48.940389064483114, "code_postal": "95018", "stop_lon": 2.244897369409708, "coord": [48.940389064483114, 2.244897369409708], "stop_id": 4023688, "stop_desc": "9 AVENUE DU GENERAL DE GAULLE - 95018", "stop_name": "CHARLES DE GAULLE - HENRI BARBUSSE"}, "geometry": {"type": "Point", "coordinates": [2.244897369409708, 48.940389064483114]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "529fc71d7cb174a6e9d4efb8b320b418efa92114", "fields": {"departement": "95", "stop_lat": 48.94043426202073, "code_postal": "95018", "stop_lon": 2.245238342836894, "coord": [48.94043426202073, 2.245238342836894], "stop_id": 4023689, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 95018", "stop_name": "CHARLES DE GAULLE - HENRI BARBUSSE"}, "geometry": {"type": "Point", "coordinates": [2.245238342836894, 48.94043426202073]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "84c111ebf2efb3ce732ced5b5a56ea41598ac5f3", "fields": {"departement": "95", "stop_lat": 48.92762850170789, "code_postal": "95063", "stop_lon": 2.21570583272821, "coord": [48.92762850170789, 2.21570583272821], "stop_id": 4023703, "stop_desc": "8 AVENUE GABRIEL PERI - 95063", "stop_name": "LA GRACE DE DIEU"}, "geometry": {"type": "Point", "coordinates": [2.21570583272821, 48.92762850170789]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "808e1dacb1e6d2f23f8fe80b26d28df773dc22fb", "fields": {"departement": "95", "stop_lat": 48.9308152795792, "code_postal": "95063", "stop_lon": 2.2122475253612013, "coord": [48.9308152795792, 2.2122475253612013], "stop_id": 4023706, "stop_desc": "FACE AU 68 AV GABRIEL PERI - 95063", "stop_name": "PLACE DES DROITS DE L'HOMME"}, "geometry": {"type": "Point", "coordinates": [2.2122475253612013, 48.9308152795792]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "89dc23b24269b6042bc6c991902f81af0e3c7c08", "fields": {"departement": "95", "stop_lat": 48.93783756740844, "code_postal": "95063", "stop_lon": 2.2071559392532305, "coord": [48.93783756740844, 2.2071559392532305], "stop_id": 4023709, "stop_desc": "FACE 1 RUE LUCIEN SAMPAIX - 95063", "stop_name": "LA BERTHIE"}, "geometry": {"type": "Point", "coordinates": [2.2071559392532305, 48.93783756740844]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2da20c588d1a327b79d8896299d25755f6e5154c", "fields": {"departement": "78", "stop_lat": 48.941543367575946, "code_postal": "78586", "stop_lon": 2.201976133687377, "coord": [48.941543367575946, 2.201976133687377], "stop_id": 4023713, "stop_desc": "FACE 187 AVENUE GEORGES CLEMENCEAU - 78586", "stop_name": "CONDORCET"}, "geometry": {"type": "Point", "coordinates": [2.201976133687377, 48.941543367575946]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "30265c13c4da4619a565972345dceb16940e6ddd", "fields": {"departement": "78", "stop_lat": 48.94618396789697, "code_postal": "78586", "stop_lon": 2.2050201937152143, "coord": [48.94618396789697, 2.2050201937152143], "stop_id": 4023716, "stop_desc": "6-8 RUE DU BERRY - 78586", "stop_name": "BERRY"}, "geometry": {"type": "Point", "coordinates": [2.2050201937152143, 48.94618396789697]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9c051d87709a0158fd2bb644bdb7962d6849c938", "fields": {"departement": "78", "stop_lat": 48.94547597591713, "code_postal": "78586", "stop_lon": 2.198827852497629, "coord": [48.94547597591713, 2.198827852497629], "stop_id": 4023718, "stop_desc": "45 RUE PAUL BERT - 78586", "stop_name": "PEGUY"}, "geometry": {"type": "Point", "coordinates": [2.198827852497629, 48.94547597591713]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c547f0369a6ffa7c4a6f4ab0b3dbfe7926154bcb", "fields": {"departement": "78", "stop_lat": 48.94525577127578, "code_postal": "78586", "stop_lon": 2.17392914841541, "coord": [48.94525577127578, 2.17392914841541], "stop_id": 4023731, "stop_desc": "0 BD DE BEZONS - 78586", "stop_name": "EGLISE DE SARTROUVILLE"}, "geometry": {"type": "Point", "coordinates": [2.17392914841541, 48.94525577127578]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a933477d6432c01448269991d2fbe95615e58bf3", "fields": {"departement": "78", "stop_lat": 48.9385473921077, "code_postal": "78586", "stop_lon": 2.1708809294112283, "coord": [48.9385473921077, 2.1708809294112283], "stop_id": 4023735, "stop_desc": "10 R VOLTAIRE - 78586", "stop_name": "VOLTAIRE"}, "geometry": {"type": "Point", "coordinates": [2.1708809294112283, 48.9385473921077]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5fecead30e986b13fdc6f725a238074a758b8296", "fields": {"departement": "78", "stop_lat": 48.942015355754535, "code_postal": "78586", "stop_lon": 2.1638984164900226, "coord": [48.942015355754535, 2.1638984164900226], "stop_id": 4023738, "stop_desc": "35 AVENUE MAURICE BERTEAUX - 78586", "stop_name": "STALINGRAD"}, "geometry": {"type": "Point", "coordinates": [2.1638984164900226, 48.942015355754535]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eed82e32d85017fadb6d1a7de21c50a4dd6a3912", "fields": {"departement": "78", "stop_lat": 48.941790587170054, "code_postal": "78586", "stop_lon": 2.163830956351103, "coord": [48.941790587170054, 2.163830956351103], "stop_id": 4023739, "stop_desc": "78 AVENUE MAURICE BERTEAUX - 78586", "stop_name": "STALINGRAD"}, "geometry": {"type": "Point", "coordinates": [2.163830956351103, 48.941790587170054]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f63f4126220bd29493355888e68878ff05bf1a31", "fields": {"departement": "95", "stop_lat": 48.94591398921132, "code_postal": "95018", "stop_lon": 2.2544789675810435, "coord": [48.94591398921132, 2.2544789675810435], "stop_id": 4023749, "stop_desc": "42 RUE ALFRED LABRIERE - 95018", "stop_name": "LABRIERE"}, "geometry": {"type": "Point", "coordinates": [2.2544789675810435, 48.94591398921132]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c67193b770d33c36acbaacb265bbed9ce7320d2e", "fields": {"departement": "95", "stop_lat": 48.94418619308955, "code_postal": "95018", "stop_lon": 2.2511800879323847, "coord": [48.94418619308955, 2.2511800879323847], "stop_id": 4023752, "stop_desc": "32 AVENUE GABRIEL PERI - 95018", "stop_name": "PAUL VAILLANT COUTURIER"}, "geometry": {"type": "Point", "coordinates": [2.2511800879323847, 48.94418619308955]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1f6dd0f650cb087163d9453b43da67549705f6c9", "fields": {"departement": "95", "stop_lat": 48.94389855709099, "code_postal": "95018", "stop_lon": 2.251098707691505, "coord": [48.94389855709099, 2.251098707691505], "stop_id": 4023753, "stop_desc": "25 AVENUE GABRIEL PERI - 95018", "stop_name": "PAUL VAILLANT COUTURIER"}, "geometry": {"type": "Point", "coordinates": [2.251098707691505, 48.94389855709099]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "64867e7663d92d014e3a8c8396a4aaf3a57a50d3", "fields": {"departement": "95", "stop_lat": 48.94237387912591, "code_postal": "95018", "stop_lon": 2.2432703507607203, "coord": [48.94237387912591, 2.2432703507607203], "stop_id": 4023758, "stop_desc": "31 AVENUE DU GENERAL DE GAULLE - 95018", "stop_name": "CLEMENT ADER"}, "geometry": {"type": "Point", "coordinates": [2.2432703507607203, 48.94237387912591]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "520f1ff6c4b20095b3335461bcefd89976919d52", "fields": {"departement": "95", "stop_lat": 48.94043426202073, "code_postal": "95018", "stop_lon": 2.245238342836894, "coord": [48.94043426202073, 2.245238342836894], "stop_id": 4023761, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 95018", "stop_name": "CHARLES DE GAULLE - HENRI BARBUSSE"}, "geometry": {"type": "Point", "coordinates": [2.245238342836894, 48.94043426202073]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c0ee4d68ce0f8c4c7e0efb41d93c237ed120d1d5", "fields": {"departement": "95", "stop_lat": 48.923235913397576, "code_postal": "95063", "stop_lon": 2.2177072361847747, "coord": [48.923235913397576, 2.2177072361847747], "stop_id": 4023773, "stop_desc": "0 R JULIUS ET ETHEL ROSENBERG - 95063", "stop_name": "PONT DE BEZONS"}, "geometry": {"type": "Point", "coordinates": [2.2177072361847747, 48.923235913397576]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e52470f56ce4cbeff5d82cf940096daf13487177", "fields": {"departement": "95", "stop_lat": 48.927475474040314, "code_postal": "95063", "stop_lon": 2.215460694276626, "coord": [48.927475474040314, 2.215460694276626], "stop_id": 4023776, "stop_desc": "FACE 01 AVENUE GABRIEL PERI - 95063", "stop_name": "LA GRACE DE DIEU"}, "geometry": {"type": "Point", "coordinates": [2.215460694276626, 48.927475474040314]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "21e3783ac17dc8f2e22e0e15c9c19bfb39c5fcd6", "fields": {"departement": "95", "stop_lat": 48.93144398832164, "code_postal": "95063", "stop_lon": 2.2118913728873326, "coord": [48.93144398832164, 2.2118913728873326], "stop_id": 4023777, "stop_desc": "88 PLACE DES DROITS DE L'HOMME - 95063", "stop_name": "PLACE DES DROITS DE L'HOMME"}, "geometry": {"type": "Point", "coordinates": [2.2118913728873326, 48.93144398832164]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9590c0608cc604d140ac77d9d7c0beca4c80acf5", "fields": {"departement": "95", "stop_lat": 48.93789120540721, "code_postal": "95063", "stop_lon": 2.2068966159627, "coord": [48.93789120540721, 2.2068966159627], "stop_id": 4023782, "stop_desc": "1 AVENUE LUCIEN SAMPAIX - 95063", "stop_name": "LA BERTHIE"}, "geometry": {"type": "Point", "coordinates": [2.2068966159627, 48.93789120540721]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "44584dca5ea102a811f707dd4e8ef1d9c19a6cc5", "fields": {"departement": "78", "stop_lat": 48.941543367575946, "code_postal": "78586", "stop_lon": 2.201976133687377, "coord": [48.941543367575946, 2.201976133687377], "stop_id": 4023785, "stop_desc": "FACE 187 AVENUE GEORGES CLEMENCEAU - 78586", "stop_name": "CONDORCET"}, "geometry": {"type": "Point", "coordinates": [2.201976133687377, 48.941543367575946]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "34d6a380353c3959f50a17a541fa8856cad234d7", "fields": {"departement": "78", "stop_lat": 48.94547597591713, "code_postal": "78586", "stop_lon": 2.198827852497629, "coord": [48.94547597591713, 2.198827852497629], "stop_id": 4023790, "stop_desc": "45 RUE PAUL BERT - 78586", "stop_name": "PEGUY"}, "geometry": {"type": "Point", "coordinates": [2.198827852497629, 48.94547597591713]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "55f12f86a584c4661546659d5d0078a58e794522", "fields": {"departement": "78", "stop_lat": 48.94216258000084, "code_postal": "78586", "stop_lon": 2.172670140654095, "coord": [48.94216258000084, 2.172670140654095], "stop_id": 4023805, "stop_desc": "88 R VOLTAIRE - 78586", "stop_name": "EDOUARD VAILLANT"}, "geometry": {"type": "Point", "coordinates": [2.172670140654095, 48.94216258000084]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bb067d418aa53b0cdc0ba606d30487697a7118ed", "fields": {"departement": "78", "stop_lat": 48.941790587170054, "code_postal": "78586", "stop_lon": 2.163830956351103, "coord": [48.941790587170054, 2.163830956351103], "stop_id": 4023811, "stop_desc": "78 AVENUE MAURICE BERTEAUX - 78586", "stop_name": "STALINGRAD"}, "geometry": {"type": "Point", "coordinates": [2.163830956351103, 48.941790587170054]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5edda821c9872098a5cc43ffb1c26e0dd4838f8a", "fields": {"departement": "95", "stop_lat": 48.930192228940605, "code_postal": "95063", "stop_lon": 2.227511595910867, "coord": [48.930192228940605, 2.227511595910867], "stop_id": 4023817, "stop_desc": "FACE 2 RUE DANIELLE CASANOVA - 95063", "stop_name": "GENERAL DELAMBRE"}, "geometry": {"type": "Point", "coordinates": [2.227511595910867, 48.930192228940605]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "801ef265611e55a280982a6c6164fb815a9ba7ec", "fields": {"departement": "78", "stop_lat": 48.94164288591797, "code_postal": "78586", "stop_lon": 2.2025625007836407, "coord": [48.94164288591797, 2.2025625007836407], "stop_id": 4023825, "stop_desc": "191 AV GEORGES CLEMENCEAU - 78586", "stop_name": "CONDORCET"}, "geometry": {"type": "Point", "coordinates": [2.2025625007836407, 48.94164288591797]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "32515cf5269170b2b8d1fffa9c3d384731af90d0", "fields": {"departement": "78", "stop_lat": 48.943031052857464, "code_postal": "78586", "stop_lon": 2.1908669596744974, "coord": [48.943031052857464, 2.1908669596744974], "stop_id": 4023831, "stop_desc": "186 AV DU GENERAL CHARLES DE GAULLE - 78586", "stop_name": "RUE DE CHATOU"}, "geometry": {"type": "Point", "coordinates": [2.1908669596744974, 48.943031052857464]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "68ba802feded74614aad175f1505c6360519f491", "fields": {"departement": "92", "stop_lat": 48.88662437941958, "code_postal": "92062", "stop_lon": 2.239460201963728, "coord": [48.88662437941958, 2.239460201963728], "stop_id": 4023964, "stop_desc": "3 AVENUE JEAN MOULIN - 92062", "stop_name": "BOIELDIEU"}, "geometry": {"type": "Point", "coordinates": [2.239460201963728, 48.88662437941958]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "610af26d6366a55854d6624318ac92a43e1f32d0", "fields": {"departement": "92", "stop_lat": 48.884503004736075, "code_postal": "92062", "stop_lon": 2.238987243699706, "coord": [48.884503004736075, 2.238987243699706], "stop_id": 4023967, "stop_desc": "FACE104BIS RUE DE LA REPUBLIQUE - 92062", "stop_name": "MAIRIE DE PUTEAUX"}, "geometry": {"type": "Point", "coordinates": [2.238987243699706, 48.884503004736075]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d92103b0a8f7581769823167b54187a41be21a69", "fields": {"departement": "92", "stop_lat": 48.87967564135883, "code_postal": "92050", "stop_lon": 2.2179712045178617, "coord": [48.87967564135883, 2.2179712045178617], "stop_id": 4023975, "stop_desc": "141 RUE DES PLAIDEURS - 92050", "stop_name": "LIBERTE - PLAIDEURS"}, "geometry": {"type": "Point", "coordinates": [2.2179712045178617, 48.87967564135883]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8b29f3a7adc1a0eec7c769f935eec5accd8c0529", "fields": {"departement": "92", "stop_lat": 48.87873210874558, "code_postal": "92050", "stop_lon": 2.2094299162385465, "coord": [48.87873210874558, 2.2094299162385465], "stop_id": 4023978, "stop_desc": "14 RUE DE GARCHES - 92050", "stop_name": "PLAIDEURS - VAILLANT-COUTURIER"}, "geometry": {"type": "Point", "coordinates": [2.2094299162385465, 48.87873210874558]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "195a34bb92348d5b0174b465b0ef0775b14ef95f", "fields": {"departement": "92", "stop_lat": 48.878125341421985, "code_postal": "92050", "stop_lon": 2.205193796553508, "coord": [48.878125341421985, 2.205193796553508], "stop_id": 4023980, "stop_desc": "116 RUE DE GARCHES - 92050", "stop_name": "LES CHAILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.205193796553508, 48.878125341421985]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2e3f9c921e9403534621d0275add6a745b6840b3", "fields": {"departement": "92", "stop_lat": 48.877022210574445, "code_postal": "92063", "stop_lon": 2.1992967712593696, "coord": [48.877022210574445, 2.1992967712593696], "stop_id": 4023985, "stop_desc": "114 RUE DANTON - 92063", "stop_name": "VOLTAIRE"}, "geometry": {"type": "Point", "coordinates": [2.1992967712593696, 48.877022210574445]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e242274fbc591ae57225aacaaab11a9a22e9b951", "fields": {"departement": "92", "stop_lat": 48.87044862023422, "code_postal": "92063", "stop_lon": 2.1960036880384797, "coord": [48.87044862023422, 2.1960036880384797], "stop_id": 4023993, "stop_desc": "FACE 83 AVENUE DU PRESIDENT POMPIDOU - 92063", "stop_name": "LA PAIX"}, "geometry": {"type": "Point", "coordinates": [2.1960036880384797, 48.87044862023422]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9335245cf3f82fa14fb88ef17c9c998edcbe77dc", "fields": {"departement": "92", "stop_lat": 48.867316519297965, "code_postal": "92063", "stop_lon": 2.199840265182229, "coord": [48.867316519297965, 2.199840265182229], "stop_id": 4023997, "stop_desc": "FACE 123 AVENUE DU PRESIDENT POMPIDOU - 92063", "stop_name": "AVENUE DU MONT VALERIEN"}, "geometry": {"type": "Point", "coordinates": [2.199840265182229, 48.867316519297965]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2aba313e6f39465dd263f5265e29a97be149174a", "fields": {"departement": "92", "stop_lat": 48.868097614319126, "code_postal": "92063", "stop_lon": 2.1991434150061457, "coord": [48.868097614319126, 2.1991434150061457], "stop_id": 4023998, "stop_desc": "127 AVENUE DU PRESIDENT POMPIDOU - 92063", "stop_name": "AVENUE DU MONT VALERIEN"}, "geometry": {"type": "Point", "coordinates": [2.1991434150061457, 48.868097614319126]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "25c32183c7de0e5e999fb851278a6235402b0acc", "fields": {"departement": "92", "stop_lat": 48.8804507608198, "code_postal": "92073", "stop_lon": 2.2202041476469727, "coord": [48.8804507608198, 2.2202041476469727], "stop_id": 4024016, "stop_desc": "45 ROUTE DES FUSILLES DE LA RESISTANCE 1940-1944 - 92073", "stop_name": "LIBERTE - PLAIDEURS"}, "geometry": {"type": "Point", "coordinates": [2.2202041476469727, 48.8804507608198]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9b3de7b6f87a84069c78ffa344753e7615587c30", "fields": {"departement": "92", "stop_lat": 48.887476445957894, "code_postal": "92062", "stop_lon": 2.2373871042096263, "coord": [48.887476445957894, 2.2373871042096263], "stop_id": 4024022, "stop_desc": "FACE 23 R LOUIS POUEY - 92062", "stop_name": "BOIELDIEU"}, "geometry": {"type": "Point", "coordinates": [2.2373871042096263, 48.887476445957894]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c603e674048d1e8e00f2b85fbd0dcfe616b0d70f", "fields": {"departement": "92", "stop_lat": 48.88441324201123, "code_postal": "92062", "stop_lon": 2.2287532212789096, "coord": [48.88441324201123, 2.2287532212789096], "stop_id": 4024028, "stop_desc": "167 RUE DE LA REPUBLIQUE - 92062", "stop_name": "PALISSY"}, "geometry": {"type": "Point", "coordinates": [2.2287532212789096, 48.88441324201123]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c5441f803113750e3277af12e4c33283c5a8b420", "fields": {"departement": "92", "stop_lat": 48.87873210874558, "code_postal": "92050", "stop_lon": 2.2094299162385465, "coord": [48.87873210874558, 2.2094299162385465], "stop_id": 4024035, "stop_desc": "14 RUE DE GARCHES - 92050", "stop_name": "PLAIDEURS - VAILLANT-COUTURIER"}, "geometry": {"type": "Point", "coordinates": [2.2094299162385465, 48.87873210874558]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "974150c5891dec0b811de50bf067b5cdf7aee182", "fields": {"departement": "92", "stop_lat": 48.87862472854438, "code_postal": "92050", "stop_lon": 2.20986620995394, "coord": [48.87862472854438, 2.20986620995394], "stop_id": 4024036, "stop_desc": "17 RUE DE GARCHES - 92050", "stop_name": "PLAIDEURS - VAILLANT-COUTURIER"}, "geometry": {"type": "Point", "coordinates": [2.20986620995394, 48.87862472854438]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7918c6bb6af72b7be860b926ed68f5cd1220f13f", "fields": {"departement": "92", "stop_lat": 48.87808078212805, "code_postal": "92050", "stop_lon": 2.205534554136397, "coord": [48.87808078212805, 2.205534554136397], "stop_id": 4024038, "stop_desc": "77 RUE DE GARCHES - 92050", "stop_name": "LES CHAILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.205534554136397, 48.87808078212805]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cf5dd67638f0982274861255d2e1fa1bae45655e", "fields": {"departement": "92", "stop_lat": 48.87657514902867, "code_postal": "92063", "stop_lon": 2.2013008901085636, "coord": [48.87657514902867, 2.2013008901085636], "stop_id": 4024040, "stop_desc": "10-12 RUE EUGENE SUE - 92063", "stop_name": "EUGENE SUE"}, "geometry": {"type": "Point", "coordinates": [2.2013008901085636, 48.87657514902867]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "170749bac4e35aaf9d8ced843cb6b9af70befb02", "fields": {"departement": "75", "stop_lat": 48.81858241466348, "code_postal": "75113", "stop_lon": 2.3594255726549487, "coord": [48.81858241466348, 2.3594255726549487], "stop_id": 5221801, "stop_desc": "AVENUE DE LA PORTE D'ITALIE - 75113", "stop_name": "PORTE D'ITALIE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.3594255726549487, 48.81858241466348]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "84b898bf6bfa370e522bf2ba5ea36a65b43cd0c0", "fields": {"departement": "94", "stop_lat": 48.81166358951922, "code_postal": "94037", "stop_lon": 2.346195339589877, "coord": [48.81166358951922, 2.346195339589877], "stop_id": 5221807, "stop_desc": "FACE 1 RUE DU BOUT DU RANG - 94037", "stop_name": "BOUT DU RANG"}, "geometry": {"type": "Point", "coordinates": [2.346195339589877, 48.81166358951922]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3e3d0efe4c2930f54018c9fa4310c90249ba962f", "fields": {"departement": "94", "stop_lat": 48.80455458275324, "code_postal": "94003", "stop_lon": 2.336043705709114, "coord": [48.80455458275324, 2.336043705709114], "stop_id": 5221810, "stop_desc": "11 AVENUE FRANCOIS VINCENT RASPAIL - 94003", "stop_name": "LOUIS FREBAULT"}, "geometry": {"type": "Point", "coordinates": [2.336043705709114, 48.80455458275324]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5a3e51230be8ff1e3e7a954262cb181e8009ca85", "fields": {"departement": "94", "stop_lat": 48.79709463577202, "code_postal": "94016", "stop_lon": 2.3338127426577424, "coord": [48.79709463577202, 2.3338127426577424], "stop_id": 5221812, "stop_desc": "FACE 62 AVENUE COUSIN DE MERICOURT - 94016", "stop_name": "COUSIN DE MERICOURT"}, "geometry": {"type": "Point", "coordinates": [2.3338127426577424, 48.79709463577202]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d6e85029fada0bba9cb6313abb194c12af078be0", "fields": {"departement": "94", "stop_lat": 48.79456906298838, "code_postal": "94016", "stop_lon": 2.334547516787906, "coord": [48.79456906298838, 2.334547516787906], "stop_id": 5221813, "stop_desc": "FACE 3-5 RUE CAMILLE DESMOULINS - 94016", "stop_name": "MAIRIE DE CACHAN"}, "geometry": {"type": "Point", "coordinates": [2.334547516787906, 48.79456906298838]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9ed93dab93952a48712a5600fb9a7585d0cd0166", "fields": {"departement": "91", "stop_lat": 48.695412134272416, "code_postal": "91326", "stop_lon": 2.3803237896699936, "coord": [48.695412134272416, 2.3803237896699936], "stop_id": 5221905, "stop_desc": "60 AVENUE DU 18 AVRIL 1944 - 91326", "stop_name": "LYCEE JEAN MONNET"}, "geometry": {"type": "Point", "coordinates": [2.3803237896699936, 48.695412134272416]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "050ec1e5d610265d1cb47b7627722a057275ab81", "fields": {"departement": "91", "stop_lat": 48.695412134272416, "code_postal": "91326", "stop_lon": 2.3803237896699936, "coord": [48.695412134272416, 2.3803237896699936], "stop_id": 5221907, "stop_desc": "60 AVENUE DU 18 AVRIL 1944 - 91326", "stop_name": "LYCEE JEAN MONNET"}, "geometry": {"type": "Point", "coordinates": [2.3803237896699936, 48.695412134272416]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9c993f19dad0c94cb81bd7df508a9218246a2ab5", "fields": {"departement": "77", "stop_lat": 48.83922919476257, "code_postal": "77468", "stop_lon": 2.6543750959439127, "coord": [48.83922919476257, 2.6543750959439127], "stop_id": 5231528, "stop_desc": "AVENUE JEAN MOULIN - 77468", "stop_name": "TORCY-RER"}, "geometry": {"type": "Point", "coordinates": [2.6543750959439127, 48.83922919476257]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b8dfce8ad9715def54b805577e14958dc1da42e8", "fields": {"departement": "77", "stop_lat": 48.84817571549336, "code_postal": "77468", "stop_lon": 2.6562954559929475, "coord": [48.84817571549336, 2.6562954559929475], "stop_id": 5231533, "stop_desc": "AVENUE JACQUES PREVERT - 77468", "stop_name": "RUE DES EPINETTES"}, "geometry": {"type": "Point", "coordinates": [2.6562954559929475, 48.84817571549336]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c1a50fa29245e711b655ad7fa0066ed0512dd465", "fields": {"departement": "77", "stop_lat": 48.84961812216385, "code_postal": "77468", "stop_lon": 2.6408610910140897, "coord": [48.84961812216385, 2.6408610910140897], "stop_id": 5231537, "stop_desc": "FACE 18 COURS DE L'ARCHE GUEDON - 77468", "stop_name": "BEL AIR"}, "geometry": {"type": "Point", "coordinates": [2.6408610910140897, 48.84961812216385]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ac4cf14c60bed54f6fa29a7882d7ee48df37b86f", "fields": {"departement": "93", "stop_lat": 48.848910240758386, "code_postal": "93051", "stop_lon": 2.553387525992279, "coord": [48.848910240758386, 2.553387525992279], "stop_id": 5231554, "stop_desc": "AV EMILE COSSONNEAU - 93051", "stop_name": "MAIRIE DE NOISY-LE-GRAND"}, "geometry": {"type": "Point", "coordinates": [2.553387525992279, 48.848910240758386]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bc22cee0ead8d761dfecef2dfd5f5a01671d7adf", "fields": {"departement": "93", "stop_lat": 48.85582135471058, "code_postal": "93050", "stop_lon": 2.527184318308966, "coord": [48.85582135471058, 2.527184318308966], "stop_id": 5231561, "stop_desc": "FACE 38 AVENUE DU GENERAL DE GAULLE - 93050", "stop_name": "FOCH - DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.527184318308966, 48.85582135471058]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5ea52f8841cb849c545baa8e98f8310a6050d3b2", "fields": {"departement": "94", "stop_lat": 48.850065501068165, "code_postal": "94058", "stop_lon": 2.4993952858883075, "coord": [48.850065501068165, 2.4993952858883075], "stop_id": 5231568, "stop_desc": "63 BOULEVARD ALSACE-LORRAINE - 94058", "stop_name": "AVRON"}, "geometry": {"type": "Point", "coordinates": [2.4993952858883075, 48.850065501068165]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "302e83f1dd6a070a89a65731fb93bef63f782123", "fields": {"departement": "94", "stop_lat": 48.85339768655697, "code_postal": "94033", "stop_lon": 2.4873390145395913, "coord": [48.85339768655697, 2.4873390145395913], "stop_id": 5231571, "stop_desc": "9 AVENUE DU VAL DE FONTENAY - 94033", "stop_name": "VAL DE FONTENAY RER"}, "geometry": {"type": "Point", "coordinates": [2.4873390145395913, 48.85339768655697]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "36758625a1d9e76565c4313c5e89e9a02900d5a0", "fields": {"departement": "94", "stop_lat": 48.8584205955465, "code_postal": "94033", "stop_lon": 2.4809246260092555, "coord": [48.8584205955465, 2.4809246260092555], "stop_id": 5231574, "stop_desc": "209 RUE LA FONTAINE - 94033", "stop_name": "LA FONTAINE"}, "geometry": {"type": "Point", "coordinates": [2.4809246260092555, 48.8584205955465]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cb84873a912d30aa92af52d10876708ff11a7ce4", "fields": {"departement": "93", "stop_lat": 48.862328741409016, "code_postal": "93064", "stop_lon": 2.482066048514456, "coord": [48.862328741409016, 2.482066048514456], "stop_id": 5231576, "stop_desc": "FACE 287 AV DE LA REPUBLIQUE - 93064", "stop_name": "JULES GUESDE"}, "geometry": {"type": "Point", "coordinates": [2.482066048514456, 48.862328741409016]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b9beeea558fc393ec12d8c31db39c5f845d4d3fe", "fields": {"departement": "93", "stop_lat": 48.86464315105416, "code_postal": "93048", "stop_lon": 2.4781901745428647, "coord": [48.86464315105416, 2.4781901745428647], "stop_id": 5231577, "stop_desc": "FACE 65 RUE PIERRE BROSSOLETTE - 93048", "stop_name": "LE MORILLON"}, "geometry": {"type": "Point", "coordinates": [2.4781901745428647, 48.86464315105416]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0b9f9054691def2a399d3372c8421e33f64afdfb", "fields": {"departement": "93", "stop_lat": 48.87104299211104, "code_postal": "93048", "stop_lon": 2.469624503987606, "coord": [48.87104299211104, 2.469624503987606], "stop_id": 5231581, "stop_desc": "299 RUE DE ROSNY - 93048", "stop_name": "FORT DE ROSNY"}, "geometry": {"type": "Point", "coordinates": [2.469624503987606, 48.87104299211104]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5fb191ced1f3abd3b754fecf800a86e75ef6223d", "fields": {"departement": "93", "stop_lat": 48.85856427056822, "code_postal": "93048", "stop_lon": 2.4370802062081176, "coord": [48.85856427056822, 2.4370802062081176], "stop_id": 5231590, "stop_desc": "62 BOULEVARD ROUGET DE LISLE - 93048", "stop_name": "CROIX DE CHAVAUX - ROUGET DE LISLE"}, "geometry": {"type": "Point", "coordinates": [2.4370802062081176, 48.85856427056822]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "428769a81aae36a006f110726363032174a5f119", "fields": {"departement": "75", "stop_lat": 48.864785410194465, "code_postal": "75120", "stop_lon": 2.4096433309569973, "coord": [48.864785410194465, 2.4096433309569973], "stop_id": 5231596, "stop_desc": "FACE 4 AVENUE DE LA PORTE DE BAGNOLET - 75120", "stop_name": "PORTE DE BAGNOLET"}, "geometry": {"type": "Point", "coordinates": [2.4096433309569973, 48.864785410194465]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "94e92a1254153b1937ba730a49481a20e02aea0f", "fields": {"departement": "75", "stop_lat": 48.864811541241586, "code_postal": "75120", "stop_lon": 2.3946725014354397, "coord": [48.864811541241586, 2.3946725014354397], "stop_id": 5231600, "stop_desc": "AVENUE GAMBETTA - 75120", "stop_name": "MARTIN NADAUD"}, "geometry": {"type": "Point", "coordinates": [2.3946725014354397, 48.864811541241586]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5baae305cd58edc997780d9b1f1b8e07e0eaa4d0", "fields": {"departement": "75", "stop_lat": 48.86404002762893, "code_postal": "75120", "stop_lon": 2.391688416422633, "coord": [48.86404002762893, 2.391688416422633], "stop_id": 5231601, "stop_desc": "35-37 AVENUE GAMBETTA - 75120", "stop_name": "MURIERS"}, "geometry": {"type": "Point", "coordinates": [2.391688416422633, 48.86404002762893]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d4c996093b28de73ef03301d9745b74bf6d093d6", "fields": {"departement": "75", "stop_lat": 48.86309803448752, "code_postal": "75120", "stop_lon": 2.387873320719877, "coord": [48.86309803448752, 2.387873320719877], "stop_id": 5231602, "stop_desc": "7-9 PLACE AUGUSTE METIVIER - 75120", "stop_name": "AUGUSTE METIVIER"}, "geometry": {"type": "Point", "coordinates": [2.387873320719877, 48.86309803448752]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f25a0641c36884bed4b9146584b767ba73662b28", "fields": {"departement": "75", "stop_lat": 48.85301826641808, "code_postal": "75111", "stop_lon": 2.377009011046008, "coord": [48.85301826641808, 2.377009011046008], "stop_id": 5231608, "stop_desc": "111 AVENUE LEDRU ROLLIN - 75111", "stop_name": "CHARONNE - KELLER"}, "geometry": {"type": "Point", "coordinates": [2.377009011046008, 48.85301826641808]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bc07792a4c166f11382f67a889c9e9a0aca69c98", "fields": {"departement": "75", "stop_lat": 48.864656695043344, "code_postal": "75120", "stop_lon": 2.3987998628210687, "coord": [48.864656695043344, 2.3987998628210687], "stop_id": 5231624, "stop_desc": "4 PLACE GAMBETTA - 75120", "stop_name": "GAMBETTA"}, "geometry": {"type": "Point", "coordinates": [2.3987998628210687, 48.864656695043344]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "603437bbbd6ce6962d86602b32f30f56450ddbc0", "fields": {"departement": "93", "stop_lat": 48.866939000388406, "code_postal": "93048", "stop_lon": 2.4747089681566665, "coord": [48.866939000388406, 2.4747089681566665], "stop_id": 5231643, "stop_desc": "42 RUE DES BLANCS VILAINS - 93048", "stop_name": "BABEUF"}, "geometry": {"type": "Point", "coordinates": [2.4747089681566665, 48.866939000388406]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d12adbae0a69ff84ee7d1c45110b1c551fb0969b", "fields": {"departement": "93", "stop_lat": 48.86588454639278, "code_postal": "93048", "stop_lon": 2.477226346724179, "coord": [48.86588454639278, 2.477226346724179], "stop_id": 5231644, "stop_desc": "RUE CHARLES DELAVACQUERIE - 93048", "stop_name": "CHARLES DELAVACQUERIE"}, "geometry": {"type": "Point", "coordinates": [2.477226346724179, 48.86588454639278]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "91b3fff6f8a45aa3a1ac5651eb358765d119b85a", "fields": {"departement": "94", "stop_lat": 48.84976027932212, "code_postal": "94058", "stop_lon": 2.4991355834688176, "coord": [48.84976027932212, 2.4991355834688176], "stop_id": 5231653, "stop_desc": "60 BIS BOULEVARD ALSACE-LORRAINE - 94058", "stop_name": "AVRON"}, "geometry": {"type": "Point", "coordinates": [2.4991355834688176, 48.84976027932212]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c7b93d696f12b640bd30715acc4ed322aec81782", "fields": {"departement": "93", "stop_lat": 48.84710909515249, "code_postal": "93051", "stop_lon": 2.5401300409666683, "coord": [48.84710909515249, 2.5401300409666683], "stop_id": 5231663, "stop_desc": "AVENUE DE NEUILLY - 93051", "stop_name": "ROUTE DE NEUILLY"}, "geometry": {"type": "Point", "coordinates": [2.5401300409666683, 48.84710909515249]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1a48fe34b85fe0ae825818ad6464bbddcf7202a5", "fields": {"departement": "93", "stop_lat": 48.84519643284332, "code_postal": "93051", "stop_lon": 2.5494775458929206, "coord": [48.84519643284332, 2.5494775458929206], "stop_id": 5231665, "stop_desc": "1 ROUTE DE VILLIERS - 93051", "stop_name": "REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.5494775458929206, 48.84519643284332]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "19e362dd71910e2984fc6bf13dff74e0f8617e6e", "fields": {"departement": "93", "stop_lat": 48.84922099836181, "code_postal": "93051", "stop_lon": 2.565073251544943, "coord": [48.84922099836181, 2.565073251544943], "stop_id": 5231669, "stop_desc": "FACE 1 PLACE DU 8 MAI - 93051", "stop_name": "POINTE DE GOURNAY"}, "geometry": {"type": "Point", "coordinates": [2.565073251544943, 48.84922099836181]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0a73dcbadcbb1f8fb09cf359aee7f5d7c49e3842", "fields": {"departement": "93", "stop_lat": 48.858427897516826, "code_postal": "93033", "stop_lon": 2.5813495010157435, "coord": [48.858427897516826, 2.5813495010157435], "stop_id": 5231672, "stop_desc": "PLACE CHURCHILL - 93033", "stop_name": "PLACE CHURCHILL"}, "geometry": {"type": "Point", "coordinates": [2.5813495010157435, 48.858427897516826]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d8a0e4a29d6a0e49c2e54a1c7fd1d548a615fbf4", "fields": {"departement": "77", "stop_lat": 48.85048981271242, "code_postal": "77337", "stop_lon": 2.6301347406719437, "coord": [48.85048981271242, 2.6301347406719437], "stop_id": 5231681, "stop_desc": "COURS DE L'ARCHE GUEDON - 77337", "stop_name": "LA REMISE AUX FRAISES"}, "geometry": {"type": "Point", "coordinates": [2.6301347406719437, 48.85048981271242]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3c3340ca77f9448192531a9072beffb934bfe9d9", "fields": {"departement": "91", "stop_lat": 48.73863570820907, "code_postal": "91645", "stop_lon": 2.244073554016609, "coord": [48.73863570820907, 2.244073554016609], "stop_id": 5231695, "stop_desc": "7 RUE DE PARIS - 91645", "stop_name": "AMBLAINVILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.244073554016609, 48.73863570820907]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1cdb306303fe9f4360792daa6c9dbec1292a8103", "fields": {"departement": "91", "stop_lat": 48.74107627367905, "code_postal": "91645", "stop_lon": 2.250334095938015, "coord": [48.74107627367905, 2.250334095938015], "stop_id": 5231699, "stop_desc": "ROND-POINT D'AMBLAINVILLIERS - 91645", "stop_name": "CROIX BELLE AVOINE"}, "geometry": {"type": "Point", "coordinates": [2.250334095938015, 48.74107627367905]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d58915b8ab8795e3282d7b2a22395ef86994d9c5", "fields": {"departement": "91", "stop_lat": 48.74074601079986, "code_postal": "91645", "stop_lon": 2.2535418298794765, "coord": [48.74074601079986, 2.2535418298794765], "stop_id": 5231701, "stop_desc": "FACE 143 RUE D'ESTIENNE D'ORVES - 91645", "stop_name": "RIANTES CITES"}, "geometry": {"type": "Point", "coordinates": [2.2535418298794765, 48.74074601079986]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "842756eb5752a6e000fd12d17793c70ca2b22dbb", "fields": {"departement": "92", "stop_lat": 48.756812846438386, "code_postal": "92002", "stop_lon": 2.276394571683409, "coord": [48.756812846438386, 2.276394571683409], "stop_id": 5231713, "stop_desc": "101 AVENUE D'ESTIENNE D'ORVES - 92002", "stop_name": "RUE DES GRILLONS"}, "geometry": {"type": "Point", "coordinates": [2.276394571683409, 48.756812846438386]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "41fcb3523e5d11bbae875e94b9cadd1000edd443", "fields": {"departement": "92", "stop_lat": 48.75645598632882, "code_postal": "92002", "stop_lon": 2.2818461262569687, "coord": [48.75645598632882, 2.2818461262569687], "stop_id": 5231716, "stop_desc": "171 AVENUE DU BOIS DE VERRIERES - 92002", "stop_name": "MARCEL MAILLARD"}, "geometry": {"type": "Point", "coordinates": [2.2818461262569687, 48.75645598632882]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0b5ea84d4b401e8c1f75e63fd17bed822d257d1e", "fields": {"departement": "92", "stop_lat": 48.75536171006039, "code_postal": "92002", "stop_lon": 2.286972068839241, "coord": [48.75536171006039, 2.286972068839241], "stop_id": 5231718, "stop_desc": "123 AVENUE DU BOIS DE VERRIERES - 92002", "stop_name": "JULIEN PERIN"}, "geometry": {"type": "Point", "coordinates": [2.286972068839241, 48.75536171006039]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ab74b83593f9eee2ddf6d88404d0f135b63ceb87", "fields": {"departement": "92", "stop_lat": 48.75441085639533, "code_postal": "92002", "stop_lon": 2.2916626844773966, "coord": [48.75441085639533, 2.2916626844773966], "stop_id": 5231721, "stop_desc": "FACE 55 AVENUE DU BOIS DE VERRIERES - 92002", "stop_name": "FRANCOIS MOLE"}, "geometry": {"type": "Point", "coordinates": [2.2916626844773966, 48.75441085639533]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4bc1806ad99e4f9bd7c309e9c603145dcf502d4e", "fields": {"departement": "92", "stop_lat": 48.737691166840456, "code_postal": "92002", "stop_lon": 2.287682195244428, "coord": [48.737691166840456, 2.287682195244428], "stop_id": 5244888, "stop_desc": "RUE ROBERT SCHERRER - 92002", "stop_name": "MONT BLANC"}, "geometry": {"type": "Point", "coordinates": [2.287682195244428, 48.737691166840456]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e71b7fd1169c92b3cf88c7d205f1bdb6aacb23cc", "fields": {"departement": "91", "stop_lat": 48.73880089439907, "code_postal": "91377", "stop_lon": 2.2989602054010803, "coord": [48.73880089439907, 2.2989602054010803], "stop_id": 5244892, "stop_desc": "FACE 64 AVENUE DU PRESIDENT KENNEDY - 91377", "stop_name": "SAUSSAYE - MIRABEAU"}, "geometry": {"type": "Point", "coordinates": [2.2989602054010803, 48.73880089439907]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "28e6b027e92830ef87f6c34950c1f67483994c92", "fields": {"departement": "92", "stop_lat": 48.748187353181756, "code_postal": "92002", "stop_lon": 2.308684941942609, "coord": [48.748187353181756, 2.308684941942609], "stop_id": 5244897, "stop_desc": "47 AVENUE ARMAND GUILLEBAUD - 92002", "stop_name": "DESCARTES"}, "geometry": {"type": "Point", "coordinates": [2.308684941942609, 48.748187353181756]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2d5c980551abeb3034cef206d74f99e4204e63b9", "fields": {"departement": "91", "stop_lat": 48.735003657424244, "code_postal": "91377", "stop_lon": 2.2876575810939976, "coord": [48.735003657424244, 2.2876575810939976], "stop_id": 5244909, "stop_desc": "18 AVENUE DU PRESIDENT KENNEDY - 91377", "stop_name": "CENTRE SPORTIF LIONEL TERRAY"}, "geometry": {"type": "Point", "coordinates": [2.2876575810939976, 48.735003657424244]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "74a843b74ff6ec35fb57017f60e5a5e7434c1b8a", "fields": {"departement": "92", "stop_lat": 48.94299631080269, "code_postal": "92036", "stop_lon": 2.2741293126156603, "coord": [48.94299631080269, 2.2741293126156603], "stop_id": 5244916, "stop_desc": "12 RTE DU MOLE 2 ET 3 - 92036", "stop_name": "OSCARO"}, "geometry": {"type": "Point", "coordinates": [2.2741293126156603, 48.94299631080269]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c29d34622efc949a64affe41df4de2b4323ea1e8", "fields": {"departement": "92", "stop_lat": 48.9374526254832, "code_postal": "92036", "stop_lon": 2.2764005385463992, "coord": [48.9374526254832, 2.2764005385463992], "stop_id": 5244936, "stop_desc": "ROUTE PRINCIPALE DU PORT - 92036", "stop_name": "CENTRE DE VIE"}, "geometry": {"type": "Point", "coordinates": [2.2764005385463992, 48.9374526254832]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "53ebecf8906e7ce17ae174da8bbbe2a7a35543c0", "fields": {"departement": "92", "stop_lat": 48.93063524040443, "code_postal": "92004", "stop_lon": 2.28401943223593, "coord": [48.93063524040443, 2.28401943223593], "stop_id": 5244938, "stop_desc": "BOULEVARD INTERCOMMUNAL - 92004", "stop_name": "ASNIERES - GENNEVILLIERS - LES COURTILLES"}, "geometry": {"type": "Point", "coordinates": [2.28401943223593, 48.93063524040443]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c8ad770005e0cbdf583691275b81ce1c0a2ab64a", "fields": {"departement": "92", "stop_lat": 48.93084208433091, "code_postal": "92036", "stop_lon": 2.2843465707019854, "coord": [48.93084208433091, 2.2843465707019854], "stop_id": 5244939, "stop_desc": "BOULEVARD INTERCOMMUNAL - 92036", "stop_name": "ASNIERES - GENNEVILLIERS - LES COURTILLES"}, "geometry": {"type": "Point", "coordinates": [2.2843465707019854, 48.93084208433091]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "55e30e933b4c9973ff2b064c18932dd4158d8305", "fields": {"departement": "92", "stop_lat": 48.9374526254832, "code_postal": "92036", "stop_lon": 2.2764005385463992, "coord": [48.9374526254832, 2.2764005385463992], "stop_id": 5244940, "stop_desc": "ROUTE PRINCIPALE DU PORT - 92036", "stop_name": "CENTRE DE VIE"}, "geometry": {"type": "Point", "coordinates": [2.2764005385463992, 48.9374526254832]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6ee3da2a8f303eda53727651f78cf1f1b05d00c8", "fields": {"departement": "92", "stop_lat": 48.93835357740893, "code_postal": "92036", "stop_lon": 2.281023984871198, "coord": [48.93835357740893, 2.281023984871198], "stop_id": 5244946, "stop_desc": "35 ROUTE PRINCIPALE DU PORT - 92036", "stop_name": "BASSIN N0 2"}, "geometry": {"type": "Point", "coordinates": [2.281023984871198, 48.93835357740893]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6d922398384d1e0e492bdc3f706e3e73298a2b3a", "fields": {"departement": "92", "stop_lat": 48.93964090031015, "code_postal": "92036", "stop_lon": 2.28592004573725, "coord": [48.93964090031015, 2.28592004573725], "stop_id": 5244949, "stop_desc": "ROUTE PRINCIPALE DU PORT - 92036", "stop_name": "MOLE CENTRAL"}, "geometry": {"type": "Point", "coordinates": [2.28592004573725, 48.93964090031015]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "813a466b34456cc6ae079292e7b41ae9db98fb11", "fields": {"departement": "92", "stop_lat": 48.94906812034571, "code_postal": "92036", "stop_lon": 2.2861153640092398, "coord": [48.94906812034571, 2.2861153640092398], "stop_id": 5244956, "stop_desc": "FACE 27-29 RTE DU BASSIN NUMERO 6 - 92036", "stop_name": "PETROLIERS"}, "geometry": {"type": "Point", "coordinates": [2.2861153640092398, 48.94906812034571]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3ff5665a7ccf20d51da790000c1fb1ceeb8ea21f", "fields": {"departement": "92", "stop_lat": 48.94635817395166, "code_postal": "92036", "stop_lon": 2.2966646333099496, "coord": [48.94635817395166, 2.2966646333099496], "stop_id": 5244962, "stop_desc": "23 CHEMIN DES PETITS MARAIS - 92036", "stop_name": "CHEMIN DES PETITS MARAIS"}, "geometry": {"type": "Point", "coordinates": [2.2966646333099496, 48.94635817395166]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "949bfd122e7c8c6002a02d6fb136d9a4f02a9014", "fields": {"departement": "92", "stop_lat": 48.93779637657669, "code_postal": "92036", "stop_lon": 2.2643820060671325, "coord": [48.93779637657669, 2.2643820060671325], "stop_id": 5244972, "stop_desc": "0 RTE OUEST DU MOLE NUMERO 1 - 92036", "stop_name": "CFM"}, "geometry": {"type": "Point", "coordinates": [2.2643820060671325, 48.93779637657669]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ea0c110d97cee62cc98fc6c9f2ccfd992e04522e", "fields": {"departement": "92", "stop_lat": 48.93558066696842, "code_postal": "92036", "stop_lon": 2.271328331717231, "coord": [48.93558066696842, 2.271328331717231], "stop_id": 5244975, "stop_desc": "ROUTE DES MERCIERES - 92036", "stop_name": "MERCIERES"}, "geometry": {"type": "Point", "coordinates": [2.271328331717231, 48.93558066696842]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6c0e52326b9167f6d8123ace5c4038327e5ce8a8", "fields": {"departement": "92", "stop_lat": 48.94299631080269, "code_postal": "92036", "stop_lon": 2.2741293126156603, "coord": [48.94299631080269, 2.2741293126156603], "stop_id": 5244982, "stop_desc": "12 RTE DU MOLE 2 ET 3 - 92036", "stop_name": "OSCARO"}, "geometry": {"type": "Point", "coordinates": [2.2741293126156603, 48.94299631080269]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0c016f49da1d7106431912e1067800d8f802b64f", "fields": {"departement": "92", "stop_lat": 48.93956954489779, "code_postal": "92036", "stop_lon": 2.287188815748167, "coord": [48.93956954489779, 2.287188815748167], "stop_id": 5244986, "stop_desc": "ROUTE PRINCIPALE DU PORT - 92036", "stop_name": "MOLE CENTRAL"}, "geometry": {"type": "Point", "coordinates": [2.287188815748167, 48.93956954489779]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e01a7e9d7ad03998db0ea937c20e13aebbaf6ab8", "fields": {"departement": "92", "stop_lat": 48.936126652714115, "code_postal": "92036", "stop_lon": 2.2674399450981904, "coord": [48.936126652714115, 2.2674399450981904], "stop_id": 5245002, "stop_desc": "62 ROUTE PRINCIPALE DU PORT - 92036", "stop_name": "DIRECTION DU PORT"}, "geometry": {"type": "Point", "coordinates": [2.2674399450981904, 48.936126652714115]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "969255bdc6d3f373eb4be9a5c881b7bde624e7f7", "fields": {"departement": "92", "stop_lat": 48.9374526254832, "code_postal": "92036", "stop_lon": 2.2764005385463992, "coord": [48.9374526254832, 2.2764005385463992], "stop_id": 5245006, "stop_desc": "ROUTE PRINCIPALE DU PORT - 92036", "stop_name": "CENTRE DE VIE"}, "geometry": {"type": "Point", "coordinates": [2.2764005385463992, 48.9374526254832]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b57fdb4edf0c2616012a8a57b0bd297976967e9e", "fields": {"departement": "92", "stop_lat": 48.762157789083936, "code_postal": "92019", "stop_lon": 2.270800623222475, "coord": [48.762157789083936, 2.270800623222475], "stop_id": 5250554, "stop_desc": "RUE JEAN-BAPTISTE CLEMENT - 92019", "stop_name": "FACULTE DE PHARMACIE"}, "geometry": {"type": "Point", "coordinates": [2.270800623222475, 48.762157789083936]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "61874529988038d79b0695ba070e2bffa3cb357d", "fields": {"departement": "75", "stop_lat": 48.86671571901408, "code_postal": "75116", "stop_lon": 2.2486386254976263, "coord": [48.86671571901408, 2.2486386254976263], "stop_id": 5251757, "stop_desc": "ALLEE DE LONGCHAMP - 75116", "stop_name": "BAGATELLE - PRE CATELAN"}, "geometry": {"type": "Point", "coordinates": [2.2486386254976263, 48.86671571901408]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bdd06bbf40adf2704e92204a0348de7211785a40", "fields": {"departement": "75", "stop_lat": 48.863886994497285, "code_postal": "75116", "stop_lon": 2.2400615843159772, "coord": [48.863886994497285, 2.2400615843159772], "stop_id": 5251758, "stop_desc": "ALLEE DE LONGCHAMP - 75116", "stop_name": "CARREFOUR DE LONGCHAMP"}, "geometry": {"type": "Point", "coordinates": [2.2400615843159772, 48.863886994497285]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ac0ab090c65368ffd34a2121fe56c1bd721b0682", "fields": {"departement": "75", "stop_lat": 48.86514013802421, "code_postal": "75116", "stop_lon": 2.234010910145625, "coord": [48.86514013802421, 2.234010910145625], "stop_id": 5251761, "stop_desc": "ROUTE DE SURESNES - 75116", "stop_name": "LES MOULINS - CAMPING"}, "geometry": {"type": "Point", "coordinates": [2.234010910145625, 48.86514013802421]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "84b55f20dec2731d1d1542ac7b848dd089a4941f", "fields": {"departement": "92", "stop_lat": 48.86676403817079, "code_postal": "92073", "stop_lon": 2.2211886377715, "coord": [48.86676403817079, 2.2211886377715], "stop_id": 5251767, "stop_desc": "57 BOULEVARD HENRI SELLIER - 92073", "stop_name": "LONGCHAMP"}, "geometry": {"type": "Point", "coordinates": [2.2211886377715, 48.86676403817079]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "06ec80b7c5b302e7ebbfe2b943a6cd215b3cc2b5", "fields": {"departement": "92", "stop_lat": 48.862932246409954, "code_postal": "92073", "stop_lon": 2.2179824740747285, "coord": [48.862932246409954, 2.2179824740747285], "stop_id": 5251768, "stop_desc": "124 BOULEVARD HENRI SELLIER - 92073", "stop_name": "GARIBALDI"}, "geometry": {"type": "Point", "coordinates": [2.2179824740747285, 48.862932246409954]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "47eece34d8cf20c8b6cb5b2a9e3873bc9866c228", "fields": {"departement": "92", "stop_lat": 48.8635343842633, "code_postal": "92073", "stop_lon": 2.2093039143430833, "coord": [48.8635343842633, 2.2093039143430833], "stop_id": 5251774, "stop_desc": "AVENUE JEAN JAURES - 92073", "stop_name": "PLACE JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.2093039143430833, 48.8635343842633]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "64500b8b07feb9b142d96c50fbd1fe44d1a58b36", "fields": {"departement": "92", "stop_lat": 48.87045720657914, "code_postal": "92063", "stop_lon": 2.2034422382803878, "coord": [48.87045720657914, 2.2034422382803878], "stop_id": 5251779, "stop_desc": "FACE 38 RUE GALLIENI - 92063", "stop_name": "8 MAI 1945"}, "geometry": {"type": "Point", "coordinates": [2.2034422382803878, 48.87045720657914]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "39684227f94264c2e95e903d2a509a76eec9e9d0", "fields": {"departement": "92", "stop_lat": 48.87051991876674, "code_postal": "92063", "stop_lon": 2.2032649673400737, "coord": [48.87051991876674, 2.2032649673400737], "stop_id": 5251780, "stop_desc": "FACE 45-47 RUE GALLIENI - 92063", "stop_name": "8 MAI 1945"}, "geometry": {"type": "Point", "coordinates": [2.2032649673400737, 48.87051991876674]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1b25d476e06f8a558d421d0cb5fbac5f0a74e3ef", "fields": {"departement": "92", "stop_lat": 48.8764221765901, "code_postal": "92063", "stop_lon": 2.1862180502913104, "coord": [48.8764221765901, 2.1862180502913104], "stop_id": 5251787, "stop_desc": "FACE 46BIS BOULEVARD DE L'HOPITAL STELL - 92063", "stop_name": "HOPITAL STELL"}, "geometry": {"type": "Point", "coordinates": [2.1862180502913104, 48.8764221765901]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b5522e09774645403abe0cc3b52cfd28a015358d", "fields": {"departement": "94", "stop_lat": 48.7281987813186, "code_postal": "94054", "stop_lon": 2.3594685478536133, "coord": [48.7281987813186, 2.3594685478536133], "stop_id": 5252679, "stop_desc": "AEROPORT D'ORLY-OUEST - 94054", "stop_name": "ORLY OUEST"}, "geometry": {"type": "Point", "coordinates": [2.3594685478536133, 48.7281987813186]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b5a197ed662286aa36814a3eef244003be8b9945", "fields": {"departement": "93", "stop_lat": 48.87796712857922, "code_postal": "93006", "stop_lon": 2.426830146332843, "coord": [48.87796712857922, 2.426830146332843], "stop_id": 5289078, "stop_desc": "217 RUE SADI CARNOT - 93006", "stop_name": "FLOREAL"}, "geometry": {"type": "Point", "coordinates": [2.426830146332843, 48.87796712857922]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5a209f7596bce55bbc8892655d0fc419553e9eeb", "fields": {"departement": "93", "stop_lat": 48.87963324271645, "code_postal": "93045", "stop_lon": 2.4220911214059, "coord": [48.87963324271645, 2.4220911214059], "stop_id": 5289080, "stop_desc": "37-39 AVENUE DU MARECHAL JUIN - 93045", "stop_name": "JALENCLOUD"}, "geometry": {"type": "Point", "coordinates": [2.4220911214059, 48.87963324271645]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "824b2315d23ab9b65cda8a71135d6e6d789cfab5", "fields": {"departement": "75", "stop_lat": 48.8597465272257, "code_postal": "75104", "stop_lon": 2.35249649876749, "coord": [48.8597465272257, 2.35249649876749], "stop_id": 5289095, "stop_desc": "FACE 22 RUE DU RENARD - 75104", "stop_name": "CENTRE GEORGES POMPIDOU"}, "geometry": {"type": "Point", "coordinates": [2.35249649876749, 48.8597465272257]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bc6b916808a8a68bd9df7c83e628728ad124d1c3", "fields": {"departement": "75", "stop_lat": 48.85768938378177, "code_postal": "75106", "stop_lon": 2.3374453668304107, "coord": [48.85768938378177, 2.3374453668304107], "stop_id": 5289100, "stop_desc": "FACE 23 QUAI DE CONTI - 75106", "stop_name": "PONT DES ARTS - QUAI DE CONTI"}, "geometry": {"type": "Point", "coordinates": [2.3374453668304107, 48.85768938378177]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3c678ace6d094692d5c5f697d72a234e76327772", "fields": {"departement": "75", "stop_lat": 48.85104242404219, "code_postal": "75116", "stop_lon": 2.279048603558448, "coord": [48.85104242404219, 2.279048603558448], "stop_id": 5289117, "stop_desc": "FACE 5 RUE MAURICE BOURDET - 75116", "stop_name": "PONT DE GRENELLE - MAURICE BOURDET"}, "geometry": {"type": "Point", "coordinates": [2.279048603558448, 48.85104242404219]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d731ee73d7cc9a6c0c5ee9650dc65efb38b519ee", "fields": {"departement": "75", "stop_lat": 48.84049189771527, "code_postal": "75116", "stop_lon": 2.264219134778155, "coord": [48.84049189771527, 2.264219134778155], "stop_id": 5289122, "stop_desc": "158 AVENUE DE VERSAILLES - 75116", "stop_name": "VERSAILLES - EXELMANS"}, "geometry": {"type": "Point", "coordinates": [2.264219134778155, 48.84049189771527]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0351a25f2e629f727e8fcf9d55ae145f8abf90d1", "fields": {"departement": "92", "stop_lat": 48.82995252831363, "code_postal": "92012", "stop_lon": 2.232270374122613, "coord": [48.82995252831363, 2.232270374122613], "stop_id": 5289130, "stop_desc": "FACE 122 AVENUE DU GENERAL LECLERC - 92012", "stop_name": "PONT DE SEVRES-METRO"}, "geometry": {"type": "Point", "coordinates": [2.232270374122613, 48.82995252831363]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "393e466f020d4401fb6c4213ab15e8ad4f5fd733", "fields": {"departement": "92", "stop_lat": 48.831673816907355, "code_postal": "92012", "stop_lon": 2.237685092238732, "coord": [48.831673816907355, 2.237685092238732], "stop_id": 5289131, "stop_desc": "35 AVENUE DU GENERAL LECLERC - 92012", "stop_name": "BILLANCOURT-METRO"}, "geometry": {"type": "Point", "coordinates": [2.237685092238732, 48.831673816907355]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ed1eacfb2c4c776f00ada2e70f1e532dc61776fa", "fields": {"departement": "75", "stop_lat": 48.84281366597419, "code_postal": "75116", "stop_lon": 2.2692539662291007, "coord": [48.84281366597419, 2.2692539662291007], "stop_id": 5289138, "stop_desc": "127 AVENUE DE VERSAILLES - 75116", "stop_name": "VICTORIEN SARDOU"}, "geometry": {"type": "Point", "coordinates": [2.2692539662291007, 48.84281366597419]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d85b34a408d33ba210d04808de6f3d19c0beb91c", "fields": {"departement": "75", "stop_lat": 48.84463919141917, "code_postal": "75116", "stop_lon": 2.271130714553106, "coord": [48.84463919141917, 2.271130714553106], "stop_id": 5289139, "stop_desc": "101 AVENUE DE VERSAILLES - 75116", "stop_name": "WILHEM"}, "geometry": {"type": "Point", "coordinates": [2.271130714553106, 48.84463919141917]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e83ead6e08fc46f348094897a3db196641b6ebf4", "fields": {"departement": "75", "stop_lat": 48.850961087388356, "code_postal": "75116", "stop_lon": 2.2781362470491286, "coord": [48.850961087388356, 2.2781362470491286], "stop_id": 5289142, "stop_desc": "7 AVENUE DE VERSAILLES - 75116", "stop_name": "RADIO FRANCE - PONT DE GRENELLE"}, "geometry": {"type": "Point", "coordinates": [2.2781362470491286, 48.850961087388356]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7df7ff1052a357097ced0fb9dc0da4b9844810bd", "fields": {"departement": "75", "stop_lat": 48.84896773666375, "code_postal": "75115", "stop_lon": 2.282033295404702, "coord": [48.84896773666375, 2.282033295404702], "stop_id": 5289143, "stop_desc": "6-8 RUE LINOIS - 75115", "stop_name": "PONT DE GRENELLE - PLACE FERNAND FOREST"}, "geometry": {"type": "Point", "coordinates": [2.282033295404702, 48.84896773666375]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "74afc4a768c8d8b717b2b2d758a01d55fe6d62d9", "fields": {"departement": "75", "stop_lat": 48.84646235147793, "code_postal": "75115", "stop_lon": 2.2868293018523236, "coord": [48.84646235147793, 2.2868293018523236], "stop_id": 5289144, "stop_desc": "76 AVENUE EMILE ZOLA - 75115", "stop_name": "CHARLES MICHELS"}, "geometry": {"type": "Point", "coordinates": [2.2868293018523236, 48.84646235147793]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2eeabb660f23089ab99e30ba34ccb17020bb172a", "fields": {"departement": "75", "stop_lat": 48.84691492035998, "code_postal": "75115", "stop_lon": 2.2950402505664087, "coord": [48.84691492035998, 2.2950402505664087], "stop_id": 5289145, "stop_desc": "154 AVENUE EMILE ZOLA - 75115", "stop_name": "AVENUE EMILE ZOLA"}, "geometry": {"type": "Point", "coordinates": [2.2950402505664087, 48.84691492035998]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8b241732cdd8f3c9d3347170a5c4233978800e01", "fields": {"departement": "75", "stop_lat": 48.84202305182629, "code_postal": "75115", "stop_lon": 2.320697292153351, "coord": [48.84202305182629, 2.320697292153351], "stop_id": 5289149, "stop_desc": "PLACE RAOUL DAUTRY - 75115", "stop_name": "GARE MONTPARNASSE"}, "geometry": {"type": "Point", "coordinates": [2.320697292153351, 48.84202305182629]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c13ab7d5cfda3c2ea3605d55a705b301b18f1a90", "fields": {"departement": "75", "stop_lat": 48.851308132416946, "code_postal": "75106", "stop_lon": 2.33101731159199, "coord": [48.851308132416946, 2.33101731159199], "stop_id": 5289154, "stop_desc": "69 RUE DE RENNES - 75106", "stop_name": "MICHEL DEBRE"}, "geometry": {"type": "Point", "coordinates": [2.33101731159199, 48.851308132416946]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "606726b7c1ac23079f35ac1bf2456bfccf10d6f4", "fields": {"departement": "75", "stop_lat": 48.85234167570838, "code_postal": "75105", "stop_lon": 2.343778173799205, "coord": [48.85234167570838, 2.343778173799205], "stop_id": 5289158, "stop_desc": "7 BOULEVARD SAINT-MICHEL - 75105", "stop_name": "SAINT-MICHEL - SAINT-GERMAIN"}, "geometry": {"type": "Point", "coordinates": [2.343778173799205, 48.85234167570838]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9497aaccc76e469ab5f7c9869d335a861ee4d336", "fields": {"departement": "75", "stop_lat": 48.85810230439387, "code_postal": "75104", "stop_lon": 2.348178318503311, "coord": [48.85810230439387, 2.348178318503311], "stop_id": 5289160, "stop_desc": "FACE 3-7 BOULEVARD SEBASTOPOL - 75104", "stop_name": "CHATELET"}, "geometry": {"type": "Point", "coordinates": [2.348178318503311, 48.85810230439387]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "538344ab3d1fa61d06988ff0fd0d8c31056fa231", "fields": {"departement": "75", "stop_lat": 48.86069953105734, "code_postal": "75104", "stop_lon": 2.34956822574239, "coord": [48.86069953105734, 2.34956822574239], "stop_id": 5289161, "stop_desc": "28 BOULEVARD DE SEBASTOPOL - 75104", "stop_name": "LES HALLES - CENTRE GEORGES POMPIDOU"}, "geometry": {"type": "Point", "coordinates": [2.34956822574239, 48.86069953105734]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8123b1b34d774b97d2969475671ae8af9cef7b1e", "fields": {"departement": "75", "stop_lat": 48.86531329081279, "code_postal": "75111", "stop_lon": 2.3762828281298214, "coord": [48.86531329081279, 2.3762828281298214], "stop_id": 5289168, "stop_desc": "80 RUE OBERKAMPF - 75111", "stop_name": "PARMENTIER - REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.3762828281298214, 48.86531329081279]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5f07449f32e24f30fe47f33bd2f9bc33a184db30", "fields": {"departement": "75", "stop_lat": 48.875548837113016, "code_postal": "75120", "stop_lon": 2.39978017411952, "coord": [48.875548837113016, 2.39978017411952], "stop_id": 5289176, "stop_desc": "RUE DE BELLEVILLE - 75120", "stop_name": "PELLEPORT - BELLEVILLE"}, "geometry": {"type": "Point", "coordinates": [2.39978017411952, 48.875548837113016]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "08af5c479ee5dca99157181b0766cb2099ea011e", "fields": {"departement": "91", "stop_lat": 48.7224548288822, "code_postal": "91377", "stop_lon": 2.2675637939678728, "coord": [48.7224548288822, 2.2675637939678728], "stop_id": 5298004, "stop_desc": "12-14 RUE ALEXANDRA DAVID NEEL - 91377", "stop_name": "LEONARD DE VINCI"}, "geometry": {"type": "Point", "coordinates": [2.2675637939678728, 48.7224548288822]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4fd27b2561e5b23517bb3503f04b54085ce98826", "fields": {"departement": "92", "stop_lat": 48.80832006340144, "code_postal": "92020", "stop_lon": 2.289955237180157, "coord": [48.80832006340144, 2.289955237180157], "stop_id": 5315275, "stop_desc": "FACE 55 R MARCELIN BERTHELOT - 92020", "stop_name": "JEAN MERMOZ"}, "geometry": {"type": "Point", "coordinates": [2.289955237180157, 48.80832006340144]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "86d5c612a523558fe47b98f2ee600ea327a39f28", "fields": {"departement": "92", "stop_lat": 48.80972813366499, "code_postal": "92020", "stop_lon": 2.2829051110016483, "coord": [48.80972813366499, 2.2829051110016483], "stop_id": 5315280, "stop_desc": "100 BD DE VANVES - 92020", "stop_name": "PISCINE"}, "geometry": {"type": "Point", "coordinates": [2.2829051110016483, 48.80972813366499]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "82f458faa0ae7885566bea812cea207b42ccecf4", "fields": {"departement": "92", "stop_lat": 48.801910761177105, "code_postal": "92020", "stop_lon": 2.2875120395185693, "coord": [48.801910761177105, 2.2875120395185693], "stop_id": 5315294, "stop_desc": "21 AVENUE GABRIEL PERI - 92020", "stop_name": "CENTRE DE CHATILLON - MARCHE"}, "geometry": {"type": "Point", "coordinates": [2.2875120395185693, 48.801910761177105]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ac2e641d45a9141c48b65b8ac7fa0d059972dab5", "fields": {"departement": "92", "stop_lat": 48.80210842496292, "code_postal": "92020", "stop_lon": 2.2873485804549465, "coord": [48.80210842496292, 2.2873485804549465], "stop_id": 5315295, "stop_desc": "34 RUE GABRIEL PERI - 92020", "stop_name": "CENTRE DE CHATILLON - MARCHE"}, "geometry": {"type": "Point", "coordinates": [2.2873485804549465, 48.80210842496292]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2618833e263ca0a230c0f63c5c5b1f76549f72f9", "fields": {"departement": "92", "stop_lat": 48.804221438717455, "code_postal": "92020", "stop_lon": 2.2894827482991693, "coord": [48.804221438717455, 2.2894827482991693], "stop_id": 5315296, "stop_desc": "10 AV DE PARIS - 92020", "stop_name": "CONSERVATOIRE"}, "geometry": {"type": "Point", "coordinates": [2.2894827482991693, 48.804221438717455]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1f1da2e858067b0c5e0de47109cee517d8290066", "fields": {"departement": "92", "stop_lat": 48.80424950983194, "code_postal": "92020", "stop_lon": 2.2923264536337706, "coord": [48.80424950983194, 2.2923264536337706], "stop_id": 5315299, "stop_desc": "FACE 2 R HENRI GATINOT - 92020", "stop_name": "HENRI GATINOT"}, "geometry": {"type": "Point", "coordinates": [2.2923264536337706, 48.80424950983194]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a45f9f761f075091d7e3104feec88274f7bd0fe5", "fields": {"departement": "75", "stop_lat": 48.83159674820942, "code_postal": "75112", "stop_lon": 2.3880876337612835, "coord": [48.83159674820942, 2.3880876337612835], "stop_id": 5325152, "stop_desc": "44-46 AVENUE DES TERROIRS DE FRANCE - 75112", "stop_name": "TERROIRS DE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.3880876337612835, 48.83159674820942]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "148b9c521391782256ab56f1f83aef3c110f521a", "fields": {"departement": "94", "stop_lat": 48.82482628442783, "code_postal": "94018", "stop_lon": 2.3942062961024053, "coord": [48.82482628442783, 2.3942062961024053], "stop_id": 5325154, "stop_desc": "QUAI DE BERCY - 94018", "stop_name": "PARC DE BERCY"}, "geometry": {"type": "Point", "coordinates": [2.3942062961024053, 48.82482628442783]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bdfb06f4470de854b7d05046b81581dff9e9472a", "fields": {"departement": "94", "stop_lat": 48.8584205955465, "code_postal": "94033", "stop_lon": 2.4809246260092555, "coord": [48.8584205955465, 2.4809246260092555], "stop_id": 4199365, "stop_desc": "209 RUE LA FONTAINE - 94033", "stop_name": "LA FONTAINE"}, "geometry": {"type": "Point", "coordinates": [2.4809246260092555, 48.8584205955465]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "982b16a1d075a48f9ee6b2b958a4001fb6308bc8", "fields": {"departement": "94", "stop_lat": 48.85522387800214, "code_postal": "94033", "stop_lon": 2.4859550831419543, "coord": [48.85522387800214, 2.4859550831419543], "stop_id": 4199368, "stop_desc": "10-12 AV DES OLYMPIADES - 94033", "stop_name": "PABLO PICASSO"}, "geometry": {"type": "Point", "coordinates": [2.4859550831419543, 48.85522387800214]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "50650613958c1f523dc2f24692fced8aef349cb7", "fields": {"departement": "93", "stop_lat": 48.862328741409016, "code_postal": "93064", "stop_lon": 2.482066048514456, "coord": [48.862328741409016, 2.482066048514456], "stop_id": 4199374, "stop_desc": "FACE 287 AV DE LA REPUBLIQUE - 93064", "stop_name": "JULES GUESDE"}, "geometry": {"type": "Point", "coordinates": [2.482066048514456, 48.862328741409016]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "11164af62e1032c8846475e2ec1833162acd354f", "fields": {"departement": "93", "stop_lat": 48.86777038940942, "code_postal": "93048", "stop_lon": 2.4707059938981955, "coord": [48.86777038940942, 2.4707059938981955], "stop_id": 4199375, "stop_desc": "RUE BABEUF - 93048", "stop_name": "LOUISE MICHEL"}, "geometry": {"type": "Point", "coordinates": [2.4707059938981955, 48.86777038940942]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aa70235390c0e9b620b4f04e625f50b958c4c227", "fields": {"departement": "93", "stop_lat": 48.86082320601623, "code_postal": "93048", "stop_lon": 2.4438815440753667, "coord": [48.86082320601623, 2.4438815440753667], "stop_id": 4199376, "stop_desc": "5 RUE DE ROSNY - 93048", "stop_name": "CENTRE ADMINISTRATIF"}, "geometry": {"type": "Point", "coordinates": [2.4438815440753667, 48.86082320601623]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "26866165ffcc6b8a0fcbdb9132bf7ce52b1f24fc", "fields": {"departement": "93", "stop_lat": 48.87054163948335, "code_postal": "93006", "stop_lon": 2.41695370781144, "coord": [48.87054163948335, 2.41695370781144], "stop_id": 4199378, "stop_desc": "FACE 68 AVENUE GAMBETTA - 93006", "stop_name": "MARIE-ANNE COLOMBIER"}, "geometry": {"type": "Point", "coordinates": [2.41695370781144, 48.87054163948335]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0040027ce85fbc6b97a71401c36b236c4534bc78", "fields": {"departement": "93", "stop_lat": 48.86699095256208, "code_postal": "93006", "stop_lon": 2.41796996305945, "coord": [48.86699095256208, 2.41796996305945], "stop_id": 4199380, "stop_desc": "13 RUE SADI CARNOT - 93006", "stop_name": "CENTRE DE SANTE"}, "geometry": {"type": "Point", "coordinates": [2.41796996305945, 48.86699095256208]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fb2d212c6e72d2eec33d1559ccab7032591dd89c", "fields": {"departement": "94", "stop_lat": 48.844202199662014, "code_postal": "94015", "stop_lon": 2.5261205119327497, "coord": [48.844202199662014, 2.5261205119327497], "stop_id": 4208518, "stop_desc": "RUE ETIENNE DE SILHOUETTE - 94015", "stop_name": "BRY-SUR-MARNE RER"}, "geometry": {"type": "Point", "coordinates": [2.5261205119327497, 48.844202199662014]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f7bd830f26b70336551bd28aa2186b5464202651", "fields": {"departement": "93", "stop_lat": 48.84686104899811, "code_postal": "93051", "stop_lon": 2.532598545026048, "coord": [48.84686104899811, 2.532598545026048], "stop_id": 4208521, "stop_desc": "40-42 BOULEVARD DU MARECHAL FOCH - 93051", "stop_name": "VERDUN"}, "geometry": {"type": "Point", "coordinates": [2.532598545026048, 48.84686104899811]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7974ddae53ba858792d6ea93f7933b02602e7ba3", "fields": {"departement": "93", "stop_lat": 48.84922099836181, "code_postal": "93051", "stop_lon": 2.565073251544943, "coord": [48.84922099836181, 2.565073251544943], "stop_id": 4208531, "stop_desc": "FACE 1 PLACE DU 8 MAI - 93051", "stop_name": "POINTE DE GOURNAY"}, "geometry": {"type": "Point", "coordinates": [2.565073251544943, 48.84922099836181]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2c2b86de14e5f56cb9be8165cc7e223013f3af5e", "fields": {"departement": "77", "stop_lat": 48.85552919168464, "code_postal": "77083", "stop_lon": 2.5836512392662123, "coord": [48.85552919168464, 2.5836512392662123], "stop_id": 4208540, "stop_desc": "48 RUE DE LA REPUBLIQUE - 77083", "stop_name": "ROND-POINT DES PYRAMIDES"}, "geometry": {"type": "Point", "coordinates": [2.5836512392662123, 48.85552919168464]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "60e4d62e3b998293a1b9829696ce46a0a720e408", "fields": {"departement": "77", "stop_lat": 48.855221315585304, "code_postal": "77083", "stop_lon": 2.5932653613534637, "coord": [48.855221315585304, 2.5932653613534637], "stop_id": 4208543, "stop_desc": "FACE 95 AVENUE JEAN JAURES - 77083", "stop_name": "LES IRIS"}, "geometry": {"type": "Point", "coordinates": [2.5932653613534637, 48.855221315585304]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e665e1d6717b4a058b96bb275a8eccb945721b46", "fields": {"departement": "77", "stop_lat": 48.85223720464594, "code_postal": "77083", "stop_lon": 2.6016127167657035, "coord": [48.85223720464594, 2.6016127167657035], "stop_id": 4208547, "stop_desc": "10 RUE DE PARIS - 77083", "stop_name": "MAIRIE DE CHAMPS"}, "geometry": {"type": "Point", "coordinates": [2.6016127167657035, 48.85223720464594]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8fb67d24159a5e186ac50e41092b9783b6a31e6f", "fields": {"departement": "77", "stop_lat": 48.84851969932751, "code_postal": "77337", "stop_lon": 2.6159199707562775, "coord": [48.84851969932751, 2.6159199707562775], "stop_id": 4208555, "stop_desc": "COURS DES DEUX PARC - 77337", "stop_name": "SQUARE DE DIANE"}, "geometry": {"type": "Point", "coordinates": [2.6159199707562775, 48.84851969932751]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fa48f0f59b8e797efbe4a556532723e82f360e64", "fields": {"departement": "77", "stop_lat": 48.844959672602876, "code_postal": "77337", "stop_lon": 2.6201357750216774, "coord": [48.844959672602876, 2.6201357750216774], "stop_id": 4208562, "stop_desc": "BOULEVARD SALVADOR ALLENDE - 77337", "stop_name": "LES PROVINCES"}, "geometry": {"type": "Point", "coordinates": [2.6201357750216774, 48.844959672602876]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6abbb8f4cb44970e7631908c7baa7fdaa6150df8", "fields": {"departement": "77", "stop_lat": 48.85089483954968, "code_postal": "77337", "stop_lon": 2.6262148431505064, "coord": [48.85089483954968, 2.6262148431505064], "stop_id": 4208566, "stop_desc": "192 COURS DE L'ARCHE GUEDON - 77337", "stop_name": "JULES FERRY"}, "geometry": {"type": "Point", "coordinates": [2.6262148431505064, 48.85089483954968]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ccf6de8e933a345691bbfb1efd168ce756b10416", "fields": {"departement": "77", "stop_lat": 48.85104795592041, "code_postal": "77337", "stop_lon": 2.626079508796173, "coord": [48.85104795592041, 2.626079508796173], "stop_id": 4208567, "stop_desc": "COURS DE L'ARCHE GUEDON - 77337", "stop_name": "JULES FERRY"}, "geometry": {"type": "Point", "coordinates": [2.626079508796173, 48.85104795592041]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "805fe357753586a0dbda3f7cbc841e4b33fb173e", "fields": {"departement": "77", "stop_lat": 48.849623070716085, "code_postal": "77468", "stop_lon": 2.638913693080735, "coord": [48.849623070716085, 2.638913693080735], "stop_id": 4208572, "stop_desc": "COURS DE L'ARCHE GUEDON - 77468", "stop_name": "LA MOGOTTE"}, "geometry": {"type": "Point", "coordinates": [2.638913693080735, 48.849623070716085]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1e42a9ae6f0f568fc65e6067f8ba07c1fca5c78a", "fields": {"departement": "77", "stop_lat": 48.85527517333553, "code_postal": "77468", "stop_lon": 2.6565570449891425, "coord": [48.85527517333553, 2.6565570449891425], "stop_id": 4208582, "stop_desc": "AV DU PRESIDENT FRANCOIS MITTERRAND - 77468", "stop_name": "LE CLOS"}, "geometry": {"type": "Point", "coordinates": [2.6565570449891425, 48.85527517333553]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "13343c57d00e53e2427247f5627749f217f00d14", "fields": {"departement": "77", "stop_lat": 48.85153169969138, "code_postal": "77468", "stop_lon": 2.658290836294766, "coord": [48.85153169969138, 2.658290836294766], "stop_id": 4208584, "stop_desc": "AV DU PRESIDENT FRANCOIS MITTERRAND - 77468", "stop_name": "LES BONDROLLES"}, "geometry": {"type": "Point", "coordinates": [2.658290836294766, 48.85153169969138]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9e9a78f90c4ef8bee7f7345821f98627a5a49f70", "fields": {"departement": "77", "stop_lat": 48.851728798080345, "code_postal": "77468", "stop_lon": 2.6585235781166325, "coord": [48.851728798080345, 2.6585235781166325], "stop_id": 4208585, "stop_desc": "AV DU PRESIDENT FRANCOIS MITTERRAND - 77468", "stop_name": "LES BONDROLLES"}, "geometry": {"type": "Point", "coordinates": [2.6585235781166325, 48.851728798080345]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4a70b0256d1f48db846d8a453c13c61a5bd403c4", "fields": {"departement": "77", "stop_lat": 48.84706316156763, "code_postal": "77468", "stop_lon": 2.652203301096435, "coord": [48.84706316156763, 2.652203301096435], "stop_id": 4208589, "stop_desc": "AVENUE DE LINGENFELD - 77468", "stop_name": "JACQUES PREVERT"}, "geometry": {"type": "Point", "coordinates": [2.652203301096435, 48.84706316156763]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8e087826ca04619cf4e45c063ab2551edf32a7a3", "fields": {"departement": "77", "stop_lat": 48.84220830914811, "code_postal": "77468", "stop_lon": 2.6561634428593592, "coord": [48.84220830914811, 2.6561634428593592], "stop_id": 4208592, "stop_desc": "AVENUE DE LINGENFELD - 77468", "stop_name": "SALVADOR ALLENDE"}, "geometry": {"type": "Point", "coordinates": [2.6561634428593592, 48.84220830914811]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "663c1af3a7bff9f99a7906f5b3a20226de100aab", "fields": {"departement": "77", "stop_lat": 48.83922919476257, "code_postal": "77468", "stop_lon": 2.6543750959439127, "coord": [48.83922919476257, 2.6543750959439127], "stop_id": 4208596, "stop_desc": "AVENUE JEAN MOULIN - 77468", "stop_name": "TORCY-RER"}, "geometry": {"type": "Point", "coordinates": [2.6543750959439127, 48.83922919476257]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e98ad46b245d356ef76075e4eaa35c57e33eb06b", "fields": {"departement": "92", "stop_lat": 48.885873927302704, "code_postal": "92050", "stop_lon": 2.2241984765283314, "coord": [48.885873927302704, 2.2241984765283314], "stop_id": 4208616, "stop_desc": "R DE WATFORD - 92050", "stop_name": "WATFORD"}, "geometry": {"type": "Point", "coordinates": [2.2241984765283314, 48.885873927302704]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "be4ab3abb957bb441d5353ddd609603e37240654", "fields": {"departement": "92", "stop_lat": 48.88733203207136, "code_postal": "92050", "stop_lon": 2.2172312906653735, "coord": [48.88733203207136, 2.2172312906653735], "stop_id": 4208619, "stop_desc": "0 RUE DES ECOLES - 92050", "stop_name": "RUE DES ECOLES"}, "geometry": {"type": "Point", "coordinates": [2.2172312906653735, 48.88733203207136]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "47714fa8e53233039896bb5bf9025a173bf24662", "fields": {"departement": "92", "stop_lat": 48.89076415653794, "code_postal": "92050", "stop_lon": 2.199682695448674, "coord": [48.89076415653794, 2.199682695448674], "stop_id": 4208634, "stop_desc": "BOULEVARD DU LEVANT - 92050", "stop_name": "PLAINCHAMP"}, "geometry": {"type": "Point", "coordinates": [2.199682695448674, 48.89076415653794]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "090d9609b11be1b5017367cfcef3f927874e9e81", "fields": {"departement": "92", "stop_lat": 48.88957744025162, "code_postal": "92050", "stop_lon": 2.199331496857924, "coord": [48.88957744025162, 2.199331496857924], "stop_id": 4208635, "stop_desc": "FACE 11-13 RUE SADI CARNOT - 92050", "stop_name": "ROCHEGUDE"}, "geometry": {"type": "Point", "coordinates": [2.199331496857924, 48.88957744025162]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dcc0f30f4be86037a9c87d84c29e15ed4677dbe2", "fields": {"departement": "92", "stop_lat": 48.88271280979073, "code_postal": "92050", "stop_lon": 2.2174463905700637, "coord": [48.88271280979073, 2.2174463905700637], "stop_id": 4208640, "stop_desc": "33 R DE VERDUN - 92050", "stop_name": "VERDUN"}, "geometry": {"type": "Point", "coordinates": [2.2174463905700637, 48.88271280979073]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a33409cd8081c4d5333ec8c003ba86f6709ed510", "fields": {"departement": "92", "stop_lat": 48.89327347338015, "code_postal": "92050", "stop_lon": 2.227494364668417, "coord": [48.89327347338015, 2.227494364668417], "stop_id": 4208642, "stop_desc": "BD DES BOUVETS - 92050", "stop_name": "AIME CESAIRE"}, "geometry": {"type": "Point", "coordinates": [2.227494364668417, 48.89327347338015]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "13d84680a8654916ccc42b58325bf6847d992471", "fields": {"departement": "92", "stop_lat": 48.89615432880161, "code_postal": "92050", "stop_lon": 2.2232082831045985, "coord": [48.89615432880161, 2.2232082831045985], "stop_id": 4208643, "stop_desc": "BOULEVARD DE PESARO - 92050", "stop_name": "NANTERRE-PREFECTURE RER"}, "geometry": {"type": "Point", "coordinates": [2.2232082831045985, 48.89615432880161]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2c0aec509a8c53f0cb0905a8eba8a1ca4f7a286a", "fields": {"departement": "95", "stop_lat": 48.97832069546756, "code_postal": "95585", "stop_lon": 2.3858290094265384, "coord": [48.97832069546756, 2.3858290094265384], "stop_id": 4211737, "stop_desc": "AVENUE PAUL VALERY - 95585", "stop_name": "LOCHERES"}, "geometry": {"type": "Point", "coordinates": [2.3858290094265384, 48.97832069546756]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ed7a1d66788c2bce3f05ee489825d0f5d2657d51", "fields": {"departement": "95", "stop_lat": 48.97923057772253, "code_postal": "95585", "stop_lon": 2.3799593381925406, "coord": [48.97923057772253, 2.3799593381925406], "stop_id": 4211739, "stop_desc": "35 AVENUE PAUL VALERY - 95585", "stop_name": "PAUL VALERY"}, "geometry": {"type": "Point", "coordinates": [2.3799593381925406, 48.97923057772253]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e8de4f0fa367c0574e42b28181d2d5b29283afcd", "fields": {"departement": "93", "stop_lat": 48.956572154957065, "code_postal": "93059", "stop_lon": 2.358242856050618, "coord": [48.956572154957065, 2.358242856050618], "stop_id": 4211754, "stop_desc": "100 AVENUE LENINE - 93059", "stop_name": "JONCHEROLLES"}, "geometry": {"type": "Point", "coordinates": [2.358242856050618, 48.956572154957065]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5e7dcebd12ec953c9955892a08f7c57f68c55bf9", "fields": {"departement": "93", "stop_lat": 48.944970460325266, "code_postal": "93066", "stop_lon": 2.35720125816893, "coord": [48.944970460325266, 2.35720125816893], "stop_id": 4211760, "stop_desc": "4 AVENUE ROGER SEMAT - 93066", "stop_name": "ROGER SEMAT"}, "geometry": {"type": "Point", "coordinates": [2.35720125816893, 48.944970460325266]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3f7ef04d70c6ddb851cc620639bb143fa6a86b38", "fields": {"departement": "93", "stop_lat": 48.938957637647704, "code_postal": "93066", "stop_lon": 2.3607867257554176, "coord": [48.938957637647704, 2.3607867257554176], "stop_id": 4211762, "stop_desc": "27 BOULEVARD FELIX FAURE - 93066", "stop_name": "CITE LANGEVIN"}, "geometry": {"type": "Point", "coordinates": [2.3607867257554176, 48.938957637647704]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "21910ba60dc8fe16b2ab806c9f639b4779300f0d", "fields": {"departement": "93", "stop_lat": 48.93615537294846, "code_postal": "93066", "stop_lon": 2.3501181700852487, "coord": [48.93615537294846, 2.3501181700852487], "stop_id": 4211766, "stop_desc": "32 BOULEVARD JULES GUESDE - 93066", "stop_name": "EGLISE - THEATRE GERARD PHILIPE"}, "geometry": {"type": "Point", "coordinates": [2.3501181700852487, 48.93615537294846]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3f33cca70eb9a49847ce1e113e7adca6593e593a", "fields": {"departement": "93", "stop_lat": 48.91974582929707, "code_postal": "93066", "stop_lon": 2.3432002857805556, "coord": [48.91974582929707, 2.3432002857805556], "stop_id": 4211772, "stop_desc": "FACE 171 BOULEVARD ANATOLE FRANCE - 93066", "stop_name": "CARREFOUR PLEYEL"}, "geometry": {"type": "Point", "coordinates": [2.3432002857805556, 48.91974582929707]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "49c69ca9409a58139abbb1efa0ce466a56ecdd44", "fields": {"departement": "93", "stop_lat": 48.917337421239395, "code_postal": "93066", "stop_lon": 2.3405955199536397, "coord": [48.917337421239395, 2.3405955199536397], "stop_id": 4211775, "stop_desc": "217 BOULEVARD ANATOLE FRANCE - 93066", "stop_name": "LES RENOUILLERES"}, "geometry": {"type": "Point", "coordinates": [2.3405955199536397, 48.917337421239395]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "117d6a60cad3df07c9dbb72f4e1bfc5f0fab2d93", "fields": {"departement": "93", "stop_lat": 48.902922217984674, "code_postal": "93070", "stop_lon": 2.3341465235619183, "coord": [48.902922217984674, 2.3341465235619183], "stop_id": 4211786, "stop_desc": "37 RUE CHARLES SCHMIDT - 93070", "stop_name": "KLEBER"}, "geometry": {"type": "Point", "coordinates": [2.3341465235619183, 48.902922217984674]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1e59c61cc81ff01ab12bef363aebd50d274ab3b5", "fields": {"departement": "75", "stop_lat": 48.90073837978418, "code_postal": "75118", "stop_lon": 2.3354689295827047, "coord": [48.90073837978418, 2.3354689295827047], "stop_id": 4211788, "stop_desc": "AVENUE DE LA PORTE DE MONTMARTRE - 75118", "stop_name": "GERARD DE NERVAL"}, "geometry": {"type": "Point", "coordinates": [2.3354689295827047, 48.90073837978418]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8fc94407ac256d8889937a19d043709fc5d3bee2", "fields": {"departement": "75", "stop_lat": 48.89118443658087, "code_postal": "75118", "stop_lon": 2.34943917727661, "coord": [48.89118443658087, 2.34943917727661], "stop_id": 4211797, "stop_desc": "73 BOULEVARD BARBES - 75118", "stop_name": "MARCADET - POISSONNIERS"}, "geometry": {"type": "Point", "coordinates": [2.34943917727661, 48.89118443658087]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4315e6b652d02c4c1cf5eb2639ae85e43cd4d798", "fields": {"departement": "75", "stop_lat": 48.88783222118241, "code_postal": "75118", "stop_lon": 2.349370247627986, "coord": [48.88783222118241, 2.349370247627986], "stop_id": 4211799, "stop_desc": "37 BOULEVARD BARBES - 75118", "stop_name": "CHATEAU ROUGE"}, "geometry": {"type": "Point", "coordinates": [2.349370247627986, 48.88783222118241]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ebc603ce515cb038395fe994addaaf5cee8fe4d3", "fields": {"departement": "75", "stop_lat": 48.88409354700711, "code_postal": "75118", "stop_lon": 2.349287609746963, "coord": [48.88409354700711, 2.349287609746963], "stop_id": 4211801, "stop_desc": "5 BOULEVARD BARBES - 75118", "stop_name": "BARBES - ROCHECHOUART"}, "geometry": {"type": "Point", "coordinates": [2.349287609746963, 48.88409354700711]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4a4e239f43d1eec1354976281de5fbc18d86bc84", "fields": {"departement": "75", "stop_lat": 48.88087584272046, "code_postal": "75110", "stop_lon": 2.351726002486145, "coord": [48.88087584272046, 2.351726002486145], "stop_id": 4211802, "stop_desc": "129 BOULEVARD DE MAGENTA - 75110", "stop_name": "MAGENTA - MAUBEUGE - GARE DU NORD"}, "geometry": {"type": "Point", "coordinates": [2.351726002486145, 48.88087584272046]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a9d152daf2b8f47842a4662aeeed5d00fe897428", "fields": {"departement": "75", "stop_lat": 48.881334194288584, "code_postal": "75110", "stop_lon": 2.351712503852361, "coord": [48.881334194288584, 2.351712503852361], "stop_id": 4211803, "stop_desc": "140-142 BOULEVARD DE MAGENTA - 75110", "stop_name": "MAGENTA - MAUBEUGE - GARE DU NORD"}, "geometry": {"type": "Point", "coordinates": [2.351712503852361, 48.881334194288584]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1e4784b870dc463cc2f817f42d8e401ab9025fa5", "fields": {"departement": "75", "stop_lat": 48.878107383214136, "code_postal": "75110", "stop_lon": 2.354586637385039, "coord": [48.878107383214136, 2.354586637385039], "stop_id": 4211805, "stop_desc": "110 BOULEVARD DE MAGENTA - 75110", "stop_name": "LA FAYETTE - MAGENTA - GARE DU NORD"}, "geometry": {"type": "Point", "coordinates": [2.354586637385039, 48.878107383214136]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3ca775dd09fd78475fcd4742006360d2a3e69bdc", "fields": {"departement": "93", "stop_lat": 48.92612502424029, "code_postal": "93066", "stop_lon": 2.357289468620289, "coord": [48.92612502424029, 2.357289468620289], "stop_id": 4211811, "stop_desc": "380 AVENUE DU PRESIDENT WILSON - 93066", "stop_name": "PONT DU CANAL"}, "geometry": {"type": "Point", "coordinates": [2.357289468620289, 48.92612502424029]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "347f0a27a12f74cd74610124c45fa1693a619e47", "fields": {"departement": "93", "stop_lat": 48.934169262599376, "code_postal": "93066", "stop_lon": 2.3502677222171613, "coord": [48.934169262599376, 2.3502677222171613], "stop_id": 4211814, "stop_desc": "8 BOULEVARD JULES GUESDE - 93066", "stop_name": "DENFERT - ROCHEREAU"}, "geometry": {"type": "Point", "coordinates": [2.3502677222171613, 48.934169262599376]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e7901e098ef2d631ff354499aa4f3c20b8c79628", "fields": {"departement": "95", "stop_lat": 49.00022921672988, "code_postal": "95539", "stop_lon": 2.3549690136630055, "coord": [49.00022921672988, 2.3549690136630055], "stop_id": 4226290, "stop_desc": "FACE 66 PL GALLIENI - 95539", "stop_name": "MARCHE DE SAINT-BRICE"}, "geometry": {"type": "Point", "coordinates": [2.3549690136630055, 49.00022921672988]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "04282160f12fea62bbe4f4a3de8f33ab5f1f8ee8", "fields": {"departement": "95", "stop_lat": 48.996265876256665, "code_postal": "95539", "stop_lon": 2.357193727576702, "coord": [48.996265876256665, 2.357193727576702], "stop_id": 4226293, "stop_desc": "FACE 9 RUE DE PARIS - 95539", "stop_name": "BOULEVARD DE LA GARE"}, "geometry": {"type": "Point", "coordinates": [2.357193727576702, 48.996265876256665]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "de5ad012cccfb48fdf952970c6d25bf7d92d1aeb", "fields": {"departement": "95", "stop_lat": 48.991552816451964, "code_postal": "95585", "stop_lon": 2.3746301578176694, "coord": [48.991552816451964, 2.3746301578176694], "stop_id": 4226299, "stop_desc": "FACE 4 AVENUE DIVISION LECLERC - 95585", "stop_name": "THEODORE BULLIER"}, "geometry": {"type": "Point", "coordinates": [2.3746301578176694, 48.991552816451964]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ce1d62aabf3d0db1c6633f57a9097d1d754dd3c2", "fields": {"departement": "95", "stop_lat": 48.993392108037604, "code_postal": "95585", "stop_lon": 2.383030002306888, "coord": [48.993392108037604, 2.383030002306888], "stop_id": 4226304, "stop_desc": "RUE DES BAUVES - 95585", "stop_name": "LYCEE DE LA TOURELLE"}, "geometry": {"type": "Point", "coordinates": [2.383030002306888, 48.993392108037604]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c82284ea8be223f191e6b4fb56a05b2af80e2fac", "fields": {"departement": "95", "stop_lat": 48.98844694763422, "code_postal": "95585", "stop_lon": 2.389429735628181, "coord": [48.98844694763422, 2.389429735628181], "stop_id": 4226305, "stop_desc": "RUE EMILE ZOLA - 95585", "stop_name": "LES PERREUX"}, "geometry": {"type": "Point", "coordinates": [2.389429735628181, 48.98844694763422]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8210f5e422043056dbb93579a9196e1ae1cf1b60", "fields": {"departement": "95", "stop_lat": 48.9882130963267, "code_postal": "95585", "stop_lon": 2.389893761468781, "coord": [48.9882130963267, 2.389893761468781], "stop_id": 4226306, "stop_desc": "RUE EMILE ZOLA - 95585", "stop_name": "LES PERREUX"}, "geometry": {"type": "Point", "coordinates": [2.389893761468781, 48.9882130963267]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "68b3e61ce3d5b1f91506024d8bb623c3ae7227e3", "fields": {"departement": "95", "stop_lat": 48.98482678538457, "code_postal": "95019", "stop_lon": 2.4046228344197673, "coord": [48.98482678538457, 2.4046228344197673], "stop_id": 4226311, "stop_desc": "FACE 130 AVENUE CHARLES VAILLANT - 95019", "stop_name": "LUTETIA NOVA"}, "geometry": {"type": "Point", "coordinates": [2.4046228344197673, 48.98482678538457]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a01a1f242a179437322a157ebb27fcf933349256", "fields": {"departement": "95", "stop_lat": 48.98503342024455, "code_postal": "95019", "stop_lon": 2.40471868095331, "coord": [48.98503342024455, 2.40471868095331], "stop_id": 4226312, "stop_desc": "130 AVENUE CHARLES VAILLANT - 95019", "stop_name": "LUTETIA NOVA"}, "geometry": {"type": "Point", "coordinates": [2.40471868095331, 48.98503342024455]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "106407cbf7336cfeb5c9a36faca0e4538660f8a7", "fields": {"departement": "95", "stop_lat": 48.986224209989395, "code_postal": "95019", "stop_lon": 2.4121208287814406, "coord": [48.986224209989395, 2.4121208287814406], "stop_id": 4226314, "stop_desc": "54-56 AVENUE CHARLES VAILLANT - 95019", "stop_name": "LES CHATAIGNIERS"}, "geometry": {"type": "Point", "coordinates": [2.4121208287814406, 48.986224209989395]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "675dacd543f88d2d28ab236448755b98143b5191", "fields": {"departement": "95", "stop_lat": 48.98656364966692, "code_postal": "95019", "stop_lon": 2.4153164319705063, "coord": [48.98656364966692, 2.4153164319705063], "stop_id": 4226315, "stop_desc": "44 AVENUE HENRI BARBUSSE - 95019", "stop_name": "HENRI BARBUSSE"}, "geometry": {"type": "Point", "coordinates": [2.4153164319705063, 48.98656364966692]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f1de6e1cba028e7a6272f0c245d457fb51098645", "fields": {"departement": "95", "stop_lat": 48.979953521450625, "code_postal": "95585", "stop_lon": 2.3921107275981934, "coord": [48.979953521450625, 2.3921107275981934], "stop_id": 4226770, "stop_desc": "FACE 5 AVENUE DU MARECHAL PIERRE KOENIG - 95585", "stop_name": "ECOLE JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.3921107275981934, 48.979953521450625]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5aca7dc6cb741416d91006ec2017764c964b8892", "fields": {"departement": "95", "stop_lat": 48.98310038531361, "code_postal": "95585", "stop_lon": 2.388536871850163, "coord": [48.98310038531361, 2.388536871850163], "stop_id": 4226773, "stop_desc": "ROUTE DES REFUZNIKS - 95585", "stop_name": "HAUT DU ROY"}, "geometry": {"type": "Point", "coordinates": [2.388536871850163, 48.98310038531361]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e3bf9009cc29809d8bb1728f9146c3103495fec9", "fields": {"departement": "95", "stop_lat": 48.98844694763422, "code_postal": "95585", "stop_lon": 2.389429735628181, "coord": [48.98844694763422, 2.389429735628181], "stop_id": 4226775, "stop_desc": "RUE EMILE ZOLA - 95585", "stop_name": "LES PERREUX"}, "geometry": {"type": "Point", "coordinates": [2.389429735628181, 48.98844694763422]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ffa0777a0c08e316de22aa81c6e7586d5e8ee9ba", "fields": {"departement": "95", "stop_lat": 48.998632157678905, "code_postal": "95585", "stop_lon": 2.3803850841361296, "coord": [48.998632157678905, 2.3803850841361296], "stop_id": 4226780, "stop_desc": "PLACE DU SOUVENIR FRANCAIS - 95585", "stop_name": "PLACE DU SOUVENIR FRANCAIS"}, "geometry": {"type": "Point", "coordinates": [2.3803850841361296, 48.998632157678905]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6467ec1d5fc6a34787f27c8486dcab83c390fd22", "fields": {"departement": "95", "stop_lat": 49.023304164053904, "code_postal": "95229", "stop_lon": 2.364473417651803, "coord": [49.023304164053904, 2.364473417651803], "stop_id": 4226797, "stop_desc": "FACE 44 RUE DE LA GARE - 95229", "stop_name": "GARE D'ECOUEN - EZANVILLE"}, "geometry": {"type": "Point", "coordinates": [2.364473417651803, 49.023304164053904]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b1f7524b768a5eec9acf3b0139218e5cf5bcce9d", "fields": {"departement": "95", "stop_lat": 49.02608199928632, "code_postal": "95229", "stop_lon": 2.359063636271061, "coord": [49.02608199928632, 2.359063636271061], "stop_id": 4226798, "stop_desc": "2 AVENUE DE VERDUN - 95229", "stop_name": "PLACE DE LA LIBERATION"}, "geometry": {"type": "Point", "coordinates": [2.359063636271061, 49.02608199928632]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "710a7e144d82931a0edbbe65afaa137fc39ba141", "fields": {"departement": "95", "stop_lat": 49.02917371319076, "code_postal": "95229", "stop_lon": 2.356249832345341, "coord": [49.02917371319076, 2.356249832345341], "stop_id": 4226801, "stop_desc": "PLACE DE LA REPUBLIQUE - 95229", "stop_name": "PLACE DE LA REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.356249832345341, 49.02917371319076]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e2c36f4596b680a428e26200f63d97d50dc67cd0", "fields": {"departement": "95", "stop_lat": 49.03167992518945, "code_postal": "95229", "stop_lon": 2.361334593978683, "coord": [49.03167992518945, 2.361334593978683], "stop_id": 4226802, "stop_desc": "FACE 31 PLACE JULES RODET - 95229", "stop_name": "HOTEL DE VILLE D'EZANVILLE"}, "geometry": {"type": "Point", "coordinates": [2.361334593978683, 49.03167992518945]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5a10bd245573e2ed22ae7717aeb767352f1abff0", "fields": {"departement": "95", "stop_lat": 49.032642106436704, "code_postal": "95229", "stop_lon": 2.3577544212689934, "coord": [49.032642106436704, 2.3577544212689934], "stop_id": 4226803, "stop_desc": "36 ROUTE DE DOMONT - 95229", "stop_name": "REIMS - DOMONT"}, "geometry": {"type": "Point", "coordinates": [2.3577544212689934, 49.032642106436704]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "95d827e587b41e30d64372ec8bd50b1dc3ba52a7", "fields": {"departement": "95", "stop_lat": 49.03347851132343, "code_postal": "95229", "stop_lon": 2.353176404039196, "coord": [49.03347851132343, 2.353176404039196], "stop_id": 4226805, "stop_desc": "48 RUE DE DOMONT - 95229", "stop_name": "FLEMING"}, "geometry": {"type": "Point", "coordinates": [2.353176404039196, 49.03347851132343]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f40c538ac237b66fd691de1e40edaf8a17c917ab", "fields": {"departement": "95", "stop_lat": 49.03712786647385, "code_postal": "95229", "stop_lon": 2.340890285594964, "coord": [49.03712786647385, 2.340890285594964], "stop_id": 4226810, "stop_desc": "FACE 121 AVENUE JEAN ROSTAND - 95229", "stop_name": "LA JUSTICE"}, "geometry": {"type": "Point", "coordinates": [2.340890285594964, 49.03712786647385]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e7df7f1849e3fb657f769378bae50edb6a6b06f9", "fields": {"departement": "95", "stop_lat": 49.03744239064076, "code_postal": "95199", "stop_lon": 2.340480274878338, "coord": [49.03744239064076, 2.340480274878338], "stop_id": 4226819, "stop_desc": "123 AVENUE JEAN ROSTAND - 95199", "stop_name": "LA JUSTICE"}, "geometry": {"type": "Point", "coordinates": [2.340480274878338, 49.03744239064076]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0de049975366ed6625518acf19939cf9d53c1f33", "fields": {"departement": "95", "stop_lat": 48.977105487142616, "code_postal": "95268", "stop_lon": 2.390578703537779, "coord": [48.977105487142616, 2.390578703537779], "stop_id": 4226823, "stop_desc": "PISTE GARE ROUTIERE - 95268", "stop_name": "GARGES-SARCELLES RER"}, "geometry": {"type": "Point", "coordinates": [2.390578703537779, 48.977105487142616]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0304cf3f2290fbba5a688ad89fda517b79fe32ba", "fields": {"departement": "95", "stop_lat": 49.01038482417008, "code_postal": "95680", "stop_lon": 2.3842198589862327, "coord": [49.01038482417008, 2.3842198589862327], "stop_id": 4226832, "stop_desc": "FACE 73 RUE DE PARIS - 95680", "stop_name": "L'ESPERANCE"}, "geometry": {"type": "Point", "coordinates": [2.3842198589862327, 49.01038482417008]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c42aacd4a7b243343f8b68fef20e0c7d438467b1", "fields": {"departement": "95", "stop_lat": 49.019596092711964, "code_postal": "95205", "stop_lon": 2.3832718143413834, "coord": [49.019596092711964, 2.3832718143413834], "stop_id": 4226834, "stop_desc": "FACE 25 RUE DU GENERAL LECLERC - 95205", "stop_name": "GENERAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.3832718143413834, 49.019596092711964]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aad5b6741e3f964afda50f37d11794197587e3da", "fields": {"departement": "95", "stop_lat": 49.029029873656924, "code_postal": "95229", "stop_lon": 2.356632414521909, "coord": [49.029029873656924, 2.356632414521909], "stop_id": 4226840, "stop_desc": "31 RUE DES ECOLES - 95229", "stop_name": "PLACE DE LA REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.356632414521909, 49.029029873656924]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "828cf5369f55d64ea104526acbc8ddc2dbfb4f15", "fields": {"departement": "95", "stop_lat": 49.034215891958944, "code_postal": "95229", "stop_lon": 2.3486118838516212, "coord": [49.034215891958944, 2.3486118838516212], "stop_id": 4226844, "stop_desc": "FACE 63 ROUTE DE DOMONT - 95229", "stop_name": "LES BOURGUIGNONS"}, "geometry": {"type": "Point", "coordinates": [2.3486118838516212, 49.034215891958944]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2fbef729d2f867d3586f34d3ab216f676a1647da", "fields": {"departement": "95", "stop_lat": 48.998632157678905, "code_postal": "95585", "stop_lon": 2.3803850841361296, "coord": [48.998632157678905, 2.3803850841361296], "stop_id": 4230042, "stop_desc": "PLACE DU SOUVENIR FRANCAIS - 95585", "stop_name": "PLACE DU SOUVENIR FRANCAIS"}, "geometry": {"type": "Point", "coordinates": [2.3803850841361296, 48.998632157678905]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3329721b536ef5a501fd8fbf73be728670745ed7", "fields": {"departement": "95", "stop_lat": 48.99430141931975, "code_postal": "95585", "stop_lon": 2.3784013000968525, "coord": [48.99430141931975, 2.3784013000968525], "stop_id": 4230047, "stop_desc": "103 RUE PIERRE BROSSOLETTE - 95585", "stop_name": "PLACE DE VERDUN"}, "geometry": {"type": "Point", "coordinates": [2.3784013000968525, 48.99430141931975]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9be9ac1179b3bd3e22fcb3df65ed323cdf62a0cf", "fields": {"departement": "95", "stop_lat": 48.99425639765105, "code_postal": "95585", "stop_lon": 2.378660734943352, "coord": [48.99425639765105, 2.378660734943352], "stop_id": 4230048, "stop_desc": "FACE 103 RUE PIERRE BROSSOLETTE - 95585", "stop_name": "PLACE DE VERDUN"}, "geometry": {"type": "Point", "coordinates": [2.378660734943352, 48.99425639765105]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "88adf5342f50d31c90b7e46787ea176a44cdc2dc", "fields": {"departement": "95", "stop_lat": 48.98679828153788, "code_postal": "95585", "stop_lon": 2.3768250779302975, "coord": [48.98679828153788, 2.3768250779302975], "stop_id": 4230054, "stop_desc": "VOIE MY PLACE - 95585", "stop_name": "MY PLACE"}, "geometry": {"type": "Point", "coordinates": [2.3768250779302975, 48.98679828153788]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "64c452e42cce371bc3e0a40c8cbbe24de6ab4343", "fields": {"departement": "95", "stop_lat": 48.97379658996038, "code_postal": "95585", "stop_lon": 2.370999829814445, "coord": [48.97379658996038, 2.370999829814445], "stop_id": 4230066, "stop_desc": "PLACE CAMILLE SAINT-SAENS - 95585", "stop_name": "CAMILLE SAINT-SAENS"}, "geometry": {"type": "Point", "coordinates": [2.370999829814445, 48.97379658996038]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5058633aa43ba5ea8076a24e3de10e4eb9d5ec72", "fields": {"departement": "95", "stop_lat": 48.9780456184267, "code_postal": "95585", "stop_lon": 2.376272300740613, "coord": [48.9780456184267, 2.376272300740613], "stop_id": 4230075, "stop_desc": "FACE 9 BOULEVARD HENRI POINCARE - 95585", "stop_name": "FORUM DES CHOLETTES"}, "geometry": {"type": "Point", "coordinates": [2.376272300740613, 48.9780456184267]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "39a177548426bf87098a4f76d78f29ee7c2be082", "fields": {"departement": "95", "stop_lat": 48.97305830313994, "code_postal": "95585", "stop_lon": 2.375599652911809, "coord": [48.97305830313994, 2.375599652911809], "stop_id": 4230107, "stop_desc": "AVENUE CESAR FRANCK - 95585", "stop_name": "RAOUL DUFY"}, "geometry": {"type": "Point", "coordinates": [2.375599652911809, 48.97305830313994]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "350779ac5728dcfba3bea93aa4a83f1e32d0f28e", "fields": {"departement": "95", "stop_lat": 49.00334228360203, "code_postal": "95585", "stop_lon": 2.376687491356626, "coord": [49.00334228360203, 2.376687491356626], "stop_id": 4238643, "stop_desc": "9 RUE ANDRE GRUNIG - 95585", "stop_name": "ECOLE JULES FERRY"}, "geometry": {"type": "Point", "coordinates": [2.376687491356626, 49.00334228360203]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fff801182ceab227f64a73926b2d52dae33c7d5c", "fields": {"departement": "95", "stop_lat": 48.99816696120593, "code_postal": "95585", "stop_lon": 2.3741296146542665, "coord": [48.99816696120593, 2.3741296146542665], "stop_id": 4238647, "stop_desc": "4 RUE GIRAUDON - 95585", "stop_name": "MAISON DE RETRAITE"}, "geometry": {"type": "Point", "coordinates": [2.3741296146542665, 48.99816696120593]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4aebcdc2a92cf621c5094f5cbdd79a0256abbf15", "fields": {"departement": "95", "stop_lat": 48.99627161215165, "code_postal": "95585", "stop_lon": 2.3715197987598553, "coord": [48.99627161215165, 2.3715197987598553], "stop_id": 4238649, "stop_desc": "23 BOULEVARD DU DOCTEUR GALVANI - 95585", "stop_name": "GALVANI - GARE DE SARCELLES - SAINT-BRICE"}, "geometry": {"type": "Point", "coordinates": [2.3715197987598553, 48.99627161215165]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "db946c879feb7245b7999f3df46497a113b347f3", "fields": {"departement": "95", "stop_lat": 48.991445119553724, "code_postal": "95585", "stop_lon": 2.374179444928489, "coord": [48.991445119553724, 2.374179444928489], "stop_id": 4238653, "stop_desc": "49 RUE PIERRE BROSSOLETTE - 95585", "stop_name": "THEODORE BULLIER"}, "geometry": {"type": "Point", "coordinates": [2.374179444928489, 48.991445119553724]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f8145952dec1b571c98d2e2369bbd166360fc059", "fields": {"departement": "95", "stop_lat": 48.979851278066924, "code_postal": "95585", "stop_lon": 2.3781577141658783, "coord": [48.979851278066924, 2.3781577141658783], "stop_id": 4238660, "stop_desc": "FACE 1 BOULEVARD DU MARECHAL DE LATTRE DE TASSIGNY - 95585", "stop_name": "PAUL VALERY - DE LATTRE DE TASSIGNY"}, "geometry": {"type": "Point", "coordinates": [2.3781577141658783, 48.979851278066924]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "53f563da23013d3d52a81938ecc762cd592bc769", "fields": {"departement": "95", "stop_lat": 48.97923057772253, "code_postal": "95585", "stop_lon": 2.3799593381925406, "coord": [48.97923057772253, 2.3799593381925406], "stop_id": 4238661, "stop_desc": "35 AVENUE PAUL VALERY - 95585", "stop_name": "PAUL VALERY"}, "geometry": {"type": "Point", "coordinates": [2.3799593381925406, 48.97923057772253]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0840ddf9210fe68ce81ea1c8d6dd14d4aedf3c88", "fields": {"departement": "95", "stop_lat": 48.976682991718704, "code_postal": "95268", "stop_lon": 2.390864954082392, "coord": [48.976682991718704, 2.390864954082392], "stop_id": 4238665, "stop_desc": "PISTE GARE ROUTIERE - 95268", "stop_name": "GARGES - SARCELLES RER"}, "geometry": {"type": "Point", "coordinates": [2.390864954082392, 48.976682991718704]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a46450b66c638e9d9e9b2da0de64eee668b7559d", "fields": {"departement": "95", "stop_lat": 48.976808500972865, "code_postal": "95268", "stop_lon": 2.391534019720296, "coord": [48.976808500972865, 2.391534019720296], "stop_id": 4238666, "stop_desc": "1 AVENUE CHARLES DE GAULLE - 95268", "stop_name": "GARGES - SARCELLES RER"}, "geometry": {"type": "Point", "coordinates": [2.391534019720296, 48.976808500972865]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ecd1810818b749ef73ea3e3fdae4651712b2747c", "fields": {"departement": "95", "stop_lat": 48.971575049991486, "code_postal": "95268", "stop_lon": 2.3983127619651223, "coord": [48.971575049991486, 2.3983127619651223], "stop_id": 4238671, "stop_desc": "RUE LE NOTRE - 95268", "stop_name": "HOTEL DE VILLE DE GARGES-LES-GONESSE"}, "geometry": {"type": "Point", "coordinates": [2.3983127619651223, 48.971575049991486]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d542a18fbdb0d8cfd281f5c5e49b869e20240ff9", "fields": {"departement": "95", "stop_lat": 48.96616783392778, "code_postal": "95268", "stop_lon": 2.4095394609000014, "coord": [48.96616783392778, 2.4095394609000014], "stop_id": 4238677, "stop_desc": "AVENUE AMBROISE CROIZAT - 95268", "stop_name": "PLACE DU 19 MARS 1962"}, "geometry": {"type": "Point", "coordinates": [2.4095394609000014, 48.96616783392778]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b79ecd1b506a3dff8250c39d277480be41919ad3", "fields": {"departement": "93", "stop_lat": 48.93884732171142, "code_postal": "93013", "stop_lon": 2.424302609481486, "coord": [48.93884732171142, 2.424302609481486], "stop_id": 4238691, "stop_desc": "35 AVENUE J.F KENNEDY - 93013", "stop_name": "CIMETIERE DU BOURGET"}, "geometry": {"type": "Point", "coordinates": [2.424302609481486, 48.93884732171142]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "76d87052433a34fa984ba39d7efe0f5af40b3499", "fields": {"departement": "93", "stop_lat": 48.93894577733613, "code_postal": "93013", "stop_lon": 2.4248484457636605, "coord": [48.93894577733613, 2.4248484457636605], "stop_id": 4238692, "stop_desc": "34 AVENUE KENNEDY - 93013", "stop_name": "CIMETIERE DU BOURGET"}, "geometry": {"type": "Point", "coordinates": [2.4248484457636605, 48.93894577733613]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "20ef5cf0e3a2de9b5897265724c1626bdca03274", "fields": {"departement": "95", "stop_lat": 48.979851278066924, "code_postal": "95585", "stop_lon": 2.3781577141658783, "coord": [48.979851278066924, 2.3781577141658783], "stop_id": 4238713, "stop_desc": "FACE 1 BOULEVARD DU MARECHAL DE LATTRE DE TASSIGNY - 95585", "stop_name": "PAUL VALERY - DE LATTRE DE TASSIGNY"}, "geometry": {"type": "Point", "coordinates": [2.3781577141658783, 48.979851278066924]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6f1c43760cbefee55a3c4d0c6c045bae820e63ad", "fields": {"departement": "95", "stop_lat": 48.976808500972865, "code_postal": "95268", "stop_lon": 2.391534019720296, "coord": [48.976808500972865, 2.391534019720296], "stop_id": 4238719, "stop_desc": "1 AVENUE CHARLES DE GAULLE - 95268", "stop_name": "GARGES - SARCELLES RER"}, "geometry": {"type": "Point", "coordinates": [2.391534019720296, 48.976808500972865]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9763483aea60335e2020868d773fefedb36c16f1", "fields": {"departement": "95", "stop_lat": 48.96599684793511, "code_postal": "95268", "stop_lon": 2.4099350400838073, "coord": [48.96599684793511, 2.4099350400838073], "stop_id": 4238731, "stop_desc": "AVENUE AMBROISE CROIZAT - 95268", "stop_name": "PLACE DU 19 MARS 1962"}, "geometry": {"type": "Point", "coordinates": [2.4099350400838073, 48.96599684793511]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a93f8361fe7f1e67432c5dd3a30f4e2a552a5156", "fields": {"departement": "95", "stop_lat": 48.963461004407435, "code_postal": "95268", "stop_lon": 2.412538290462792, "coord": [48.963461004407435, 2.412538290462792], "stop_id": 4238733, "stop_desc": "49 AVENUE AMBROISE CROIZAT - 95268", "stop_name": "DECLEMY"}, "geometry": {"type": "Point", "coordinates": [2.412538290462792, 48.963461004407435]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c2c3b2f49e9274646b8f300d1de4f49534b4bda7", "fields": {"departement": "93", "stop_lat": 48.949700610015846, "code_postal": "93030", "stop_lon": 2.4152881329205003, "coord": [48.949700610015846, 2.4152881329205003], "stop_id": 4238741, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 93030", "stop_name": "ALBERT CHARDAVOINE"}, "geometry": {"type": "Point", "coordinates": [2.4152881329205003, 48.949700610015846]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "861839494e4b4807b4acaee5434080ed3e15fd66", "fields": {"departement": "92", "stop_lat": 48.88609749358888, "code_postal": "92062", "stop_lon": 2.2436449494598567, "coord": [48.88609749358888, 2.2436449494598567], "stop_id": 4102147, "stop_desc": "65 RUE DE LA REPUBLIQUE - 92062", "stop_name": "ROUSSELLE"}, "geometry": {"type": "Point", "coordinates": [2.2436449494598567, 48.88609749358888]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a85169b5b6a6aaa25553aa3731b371ebb4476500", "fields": {"departement": "94", "stop_lat": 48.8357724958462, "code_postal": "94052", "stop_lon": 2.4728837253016107, "coord": [48.8357724958462, 2.4728837253016107], "stop_id": 4109735, "stop_desc": "AV GEORGES CLEMENCEAU - 94052", "stop_name": "NOGENT-SUR-MARNE RER - PIERRE SEMARD"}, "geometry": {"type": "Point", "coordinates": [2.4728837253016107, 48.8357724958462]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2ad5d9e8c8eb7a705d7127b89dc47023a47a8cbf", "fields": {"departement": "94", "stop_lat": 48.83668646197558, "code_postal": "94052", "stop_lon": 2.482838602754057, "coord": [48.83668646197558, 2.482838602754057], "stop_id": 4109740, "stop_desc": "FACE 83 GRANDE RUE CHARLES DE GAULLE - 94052", "stop_name": "SOUS PREFECTURE - JULES FERRY"}, "geometry": {"type": "Point", "coordinates": [2.482838602754057, 48.83668646197558]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "11e65e271d5783ba498ba496c5cdb28893637c47", "fields": {"departement": "94", "stop_lat": 48.83842408841958, "code_postal": "94058", "stop_lon": 2.494593529552752, "coord": [48.83842408841958, 2.494593529552752], "stop_id": 4109746, "stop_desc": "PLACE ROBERT BELVAUX - 94058", "stop_name": "NOGENT-LE-PERREUX RER"}, "geometry": {"type": "Point", "coordinates": [2.494593529552752, 48.83842408841958]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9c7385435e4ca8434951a4e10062d243ceccc2c5", "fields": {"departement": "93", "stop_lat": 48.8536204983099, "code_postal": "93049", "stop_lon": 2.5148371228829354, "coord": [48.8536204983099, 2.5148371228829354], "stop_id": 4109757, "stop_desc": "2 RUE RASPAIL - 93049", "stop_name": "RER - RASPAIL"}, "geometry": {"type": "Point", "coordinates": [2.5148371228829354, 48.8536204983099]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8e420c32e5bcd86dfc6ab25243b6f2ec0c079661", "fields": {"departement": "93", "stop_lat": 48.864759105805646, "code_postal": "93049", "stop_lon": 2.5126957032545296, "coord": [48.864759105805646, 2.5126957032545296], "stop_id": 4109770, "stop_desc": "CHEMIN DES RENOUILLIERES - 93049", "stop_name": "ALEXANDER FLEMING"}, "geometry": {"type": "Point", "coordinates": [2.5126957032545296, 48.864759105805646]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "da9b3c909cda3d132166fe6fa87005ccfaaa6ded", "fields": {"departement": "93", "stop_lat": 48.86676844688921, "code_postal": "93049", "stop_lon": 2.509160572420295, "coord": [48.86676844688921, 2.509160572420295], "stop_id": 4109773, "stop_desc": "RUE DES LOGES D'AVRON - 93049", "stop_name": "RUE DES HERSIERS"}, "geometry": {"type": "Point", "coordinates": [2.509160572420295, 48.86676844688921]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b7f48202a253a1e21a82b633dbb0b00bbc6b4e43", "fields": {"departement": "93", "stop_lat": 48.88619632656553, "code_postal": "93077", "stop_lon": 2.5110102614517014, "coord": [48.88619632656553, 2.5110102614517014], "stop_id": 4109788, "stop_desc": "16-18 AVENUE OUTREBON - 93077", "stop_name": "GENERAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.5110102614517014, 48.88619632656553]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cbd40aa1876b4469285ede1000bb5862cca09271", "fields": {"departement": "93", "stop_lat": 48.88637065382866, "code_postal": "93077", "stop_lon": 2.5085441857559028, "coord": [48.88637065382866, 2.5085441857559028], "stop_id": 4109789, "stop_desc": "31 AVENUE DU RAINCY - 93077", "stop_name": "GENERAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.5085441857559028, 48.88637065382866]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9d914702099a3155c5ec1ac034945e922b75577d", "fields": {"departement": "93", "stop_lat": 48.88988180463491, "code_postal": "93077", "stop_lon": 2.5105183483236515, "coord": [48.88988180463491, 2.5105183483236515], "stop_id": 4109793, "stop_desc": "1 AVENUE DU GENERAL GALLIENI - 93077", "stop_name": "GALLIENI-LE RAINCY-VILLEMOMBLE-MONTFERMEIL RER"}, "geometry": {"type": "Point", "coordinates": [2.5105183483236515, 48.88988180463491]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "06ed7b9f5965fa242c717a0ff414eadab016330d", "fields": {"departement": "93", "stop_lat": 48.87859460586374, "code_postal": "93077", "stop_lon": 2.5160672483771727, "coord": [48.87859460586374, 2.5160672483771727], "stop_id": 4109812, "stop_desc": "FACE 7 RUE DU BEL AIR - 93077", "stop_name": "LUCIEN BERNEUX"}, "geometry": {"type": "Point", "coordinates": [2.5160672483771727, 48.87859460586374]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5c0ba083030af1831446b3ad5b754cd9167fbbcd", "fields": {"departement": "93", "stop_lat": 48.87199260175153, "code_postal": "93049", "stop_lon": 2.5074203747740498, "coord": [48.87199260175153, 2.5074203747740498], "stop_id": 4109815, "stop_desc": "FACE 14BIS AVENUE DES FAUVETTES - 93049", "stop_name": "AVENUE DE ROSNY"}, "geometry": {"type": "Point", "coordinates": [2.5074203747740498, 48.87199260175153]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "424c236e941085c73451c33cbfdd85ff52c078e1", "fields": {"departement": "92", "stop_lat": 48.86805906191408, "code_postal": "92073", "stop_lon": 2.222057619036776, "coord": [48.86805906191408, 2.222057619036776], "stop_id": 4472530, "stop_desc": "FACE 49 BOULEVARD HENRI SELLIER - 92073", "stop_name": "LONGCHAMP"}, "geometry": {"type": "Point", "coordinates": [2.222057619036776, 48.86805906191408]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5234ddad2706a5b189dd858af60b03b3663a2c4b", "fields": {"departement": "92", "stop_lat": 48.867290753577876, "code_postal": "92073", "stop_lon": 2.2269227092177055, "coord": [48.867290753577876, 2.2269227092177055], "stop_id": 4472533, "stop_desc": "BOULEVARD HENRI SELLIER - 92073", "stop_name": "RUE DES BOURETS - PONT DE SURESNES"}, "geometry": {"type": "Point", "coordinates": [2.2269227092177055, 48.867290753577876]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "301d8dfde3d1df5f7c2b80968c4a0a0e3bf5989a", "fields": {"departement": "75", "stop_lat": 48.86483457945829, "code_postal": "75116", "stop_lon": 2.234025140773587, "coord": [48.86483457945829, 2.234025140773587], "stop_id": 4472535, "stop_desc": "ROUTE DES MOULINS - 75116", "stop_name": "LES MOULINS - CAMPING"}, "geometry": {"type": "Point", "coordinates": [2.234025140773587, 48.86483457945829]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f96a8b33ff7a881045d4c58d7f04b30a072c1bbb", "fields": {"departement": "75", "stop_lat": 48.8728344242601, "code_postal": "75116", "stop_lon": 2.294515046174537, "coord": [48.8728344242601, 2.294515046174537], "stop_id": 4472547, "stop_desc": "1 AVENUE KLEBER - 75116", "stop_name": "CHARLES DE GAULLE - ETOILE - KLEBER"}, "geometry": {"type": "Point", "coordinates": [2.294515046174537, 48.8728344242601]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fb4783faf026ad624885dcd2e680803409dea429", "fields": {"departement": "75", "stop_lat": 48.87441332622057, "code_postal": "75108", "stop_lon": 2.318084616089399, "coord": [48.87441332622057, 2.318084616089399], "stop_id": 4472558, "stop_desc": "10-12 RUE LA BOETIE - 75108", "stop_name": "SAINT-AUGUSTIN"}, "geometry": {"type": "Point", "coordinates": [2.318084616089399, 48.87441332622057]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a7200472296e0bc9f7ca1539f7703b2c53586423", "fields": {"departement": "75", "stop_lat": 48.87533099926682, "code_postal": "75108", "stop_lon": 2.3255644136186038, "coord": [48.87533099926682, 2.3255644136186038], "stop_id": 4472560, "stop_desc": "117 RUE SAINT LAZARE - 75108", "stop_name": "GARE SAINT-LAZARE"}, "geometry": {"type": "Point", "coordinates": [2.3255644136186038, 48.87533099926682]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c474b97c85dda2624de4fe954c48df10c6e1eaf8", "fields": {"departement": "92", "stop_lat": 48.821505122826444, "code_postal": "92040", "stop_lon": 2.2711874096008855, "coord": [48.821505122826444, 2.2711874096008855], "stop_id": 4472617, "stop_desc": "FACE 1-3 RUE MAXIMILIEN ROBESPIERRE - 92040", "stop_name": "ROBESPIERRE"}, "geometry": {"type": "Point", "coordinates": [2.2711874096008855, 48.821505122826444]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d0ee6a671833b4052370711774062f6415e7b301", "fields": {"departement": "92", "stop_lat": 48.81968732112002, "code_postal": "92040", "stop_lon": 2.267188260257872, "coord": [48.81968732112002, 2.267188260257872], "stop_id": 4472625, "stop_desc": "97 R PIERRE BROSSOLETTE - 92040", "stop_name": "PARC HENRI BARBUSSE."}, "geometry": {"type": "Point", "coordinates": [2.267188260257872, 48.81968732112002]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "580a2e47f2777bbdae0248133d49c974129ef53c", "fields": {"departement": "95", "stop_lat": 48.92316367574363, "code_postal": "95063", "stop_lon": 2.2173664624293954, "coord": [48.92316367574363, 2.2173664624293954], "stop_id": 4472636, "stop_desc": "R JULIUS ET ETHEL ROSENBERG - 95063", "stop_name": "PONT DE BEZONS"}, "geometry": {"type": "Point", "coordinates": [2.2173664624293954, 48.92316367574363]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b9acb46e66322b6a966a806539e41cc5023a52ed", "fields": {"departement": "92", "stop_lat": 48.91741081652648, "code_postal": "92025", "stop_lon": 2.2253841697951615, "coord": [48.91741081652648, 2.2253841697951615], "stop_id": 4472639, "stop_desc": "202 BD CHARLES DE GAULLE - 92025", "stop_name": "PARC PIERRE LAGRAVERE"}, "geometry": {"type": "Point", "coordinates": [2.2253841697951615, 48.91741081652648]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "77839423bacbedbdcf202b7eb1efd9f60998a1f5", "fields": {"departement": "92", "stop_lat": 48.9063508217573, "code_postal": "92035", "stop_lon": 2.239041240296181, "coord": [48.9063508217573, 2.239041240296181], "stop_id": 4472647, "stop_desc": "BD NATIONAL - 92035", "stop_name": "LA GARENNE-COLOMBES - CHARLEBOURG"}, "geometry": {"type": "Point", "coordinates": [2.239041240296181, 48.9063508217573]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "80a7ae9b9fd6bf5c7a9d24c1fd22a6d383773b95", "fields": {"departement": "92", "stop_lat": 48.90195641075173, "code_postal": "92026", "stop_lon": 2.2393767381339007, "coord": [48.90195641075173, 2.2393767381339007], "stop_id": 4472650, "stop_desc": "107 BD DE LA MISSION MARCHAND - 92026", "stop_name": "LES FAUVELLES"}, "geometry": {"type": "Point", "coordinates": [2.2393767381339007, 48.90195641075173]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a4bc3e3b9108567971cb4bea75c86a4a0bf0a291", "fields": {"departement": "92", "stop_lat": 48.8829142749037, "code_postal": "92051", "stop_lon": 2.2673072076891807, "coord": [48.8829142749037, 2.2673072076891807], "stop_id": 4472669, "stop_desc": "110-112 AVENUE CHARLES DE GAULLE - 92051", "stop_name": "RUE DE L'HOTEL DE VILLE"}, "geometry": {"type": "Point", "coordinates": [2.2673072076891807, 48.8829142749037]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b2454a004cc60cd2259669481deff48414e79b15", "fields": {"departement": "92", "stop_lat": 48.881047347727176, "code_postal": "92051", "stop_lon": 2.2715612036989734, "coord": [48.881047347727176, 2.2715612036989734], "stop_id": 4472670, "stop_desc": "101 AVENUE CHARLES DE GAULLE - 92051", "stop_name": "LES SABLONS"}, "geometry": {"type": "Point", "coordinates": [2.2715612036989734, 48.881047347727176]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "85182cb697ec6652fd4d1d34278c362abc84e32b", "fields": {"departement": "75", "stop_lat": 48.87576222234265, "code_postal": "75108", "stop_lon": 2.3239701756262043, "coord": [48.87576222234265, 2.3239701756262043], "stop_id": 4472689, "stop_desc": "14 RUE DE ROME - 75108", "stop_name": "GARE SAINT-LAZARE"}, "geometry": {"type": "Point", "coordinates": [2.3239701756262043, 48.87576222234265]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8590532f77a2621b1074f39181f6b2df564f0655", "fields": {"departement": "75", "stop_lat": 48.87576222234265, "code_postal": "75108", "stop_lon": 2.3239701756262043, "coord": [48.87576222234265, 2.3239701756262043], "stop_id": 4472690, "stop_desc": "14 RUE DE ROME - 75108", "stop_name": "GARE SAINT-LAZARE"}, "geometry": {"type": "Point", "coordinates": [2.3239701756262043, 48.87576222234265]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8e194e6bc2e24db8251da72b9b60d021fc7477a3", "fields": {"departement": "75", "stop_lat": 48.880111718441405, "code_postal": "75117", "stop_lon": 2.2882545840252586, "coord": [48.880111718441405, 2.2882545840252586], "stop_id": 4472695, "stop_desc": "AV DES TERNES - 75117", "stop_name": "PEREIRE - PORTE MAILLOT"}, "geometry": {"type": "Point", "coordinates": [2.2882545840252586, 48.880111718441405]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5fbc9970d4ed51fbcfcb639a8b1c06280a707415", "fields": {"departement": "93", "stop_lat": 48.95655301481717, "code_postal": "93031", "stop_lon": 2.3104395049061663, "coord": [48.95655301481717, 2.3104395049061663], "stop_id": 4472716, "stop_desc": "AVENUE DE LATTRE DE TASSIGNY - 93031", "stop_name": "LES SAULES"}, "geometry": {"type": "Point", "coordinates": [2.3104395049061663, 48.95655301481717]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "315192ad39d3d8813fcce6e68fe894ebc3805b37", "fields": {"departement": "93", "stop_lat": 48.95695745548465, "code_postal": "93031", "stop_lon": 2.3106166999889988, "coord": [48.95695745548465, 2.3106166999889988], "stop_id": 4472717, "stop_desc": "FACE 31 AVENUE DE LATTRE DE TASSIGNY - 93031", "stop_name": "LES SAULES"}, "geometry": {"type": "Point", "coordinates": [2.3106166999889988, 48.95695745548465]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ed336afdc9b0eb9194f2bc9d5a29065c3692553c", "fields": {"departement": "93", "stop_lat": 48.95497185231882, "code_postal": "93031", "stop_lon": 2.31274649544972, "coord": [48.95497185231882, 2.31274649544972], "stop_id": 4472719, "stop_desc": "AVENUE DE LATTRE DE TASSIGNY - 93031", "stop_name": "LACEPEDE"}, "geometry": {"type": "Point", "coordinates": [2.31274649544972, 48.95497185231882]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d809522af1558011e011c477bb32f66c52850498", "fields": {"departement": "93", "stop_lat": 48.9529503470524, "code_postal": "93031", "stop_lon": 2.315340088376333, "coord": [48.9529503470524, 2.315340088376333], "stop_id": 4472720, "stop_desc": "AVENUE DE LATTRE DE TASSIGNY - 93031", "stop_name": "GUYNEMER - RUE DE PARIS"}, "geometry": {"type": "Point", "coordinates": [2.315340088376333, 48.9529503470524]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8885dc87a7a204397c4f9a26df33e3d233279b51", "fields": {"departement": "95", "stop_lat": 48.95838905774594, "code_postal": "95427", "stop_lon": 2.329489605716314, "coord": [48.95838905774594, 2.329489605716314], "stop_id": 4472723, "stop_desc": "5 ROUTE DE SAINT-LEU - 95427", "stop_name": "GARE D'EPINAY-VILLETANEUSE"}, "geometry": {"type": "Point", "coordinates": [2.329489605716314, 48.95838905774594]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "53839198fdb1f44a606e12e9dbd389d82a8190f9", "fields": {"departement": "93", "stop_lat": 48.95631326835775, "code_postal": "93031", "stop_lon": 2.3319462579160413, "coord": [48.95631326835775, 2.3319462579160413], "stop_id": 4472724, "stop_desc": "209 ROUTE DE SAINT-LEU - 93031", "stop_name": "SABLONS"}, "geometry": {"type": "Point", "coordinates": [2.3319462579160413, 48.95631326835775]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "389dfbc3e4c45c6f9e985651375d55f4f2890e52", "fields": {"departement": "93", "stop_lat": 48.953824055600066, "code_postal": "93031", "stop_lon": 2.335385224920676, "coord": [48.953824055600066, 2.335385224920676], "stop_id": 4472725, "stop_desc": "149 ROUTE DE SAINT-LEU - 93031", "stop_name": "YSER"}, "geometry": {"type": "Point", "coordinates": [2.335385224920676, 48.953824055600066]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "602e78e57fe4d717d3febb2c449f3f2ffa8b3b29", "fields": {"departement": "92", "stop_lat": 48.91585586683023, "code_postal": "92004", "stop_lon": 2.294302289078872, "coord": [48.91585586683023, 2.294302289078872], "stop_id": 4472752, "stop_desc": "PISTE GARE ROUTIERE - 92004", "stop_name": "GABRIEL PERI-METRO"}, "geometry": {"type": "Point", "coordinates": [2.294302289078872, 48.91585586683023]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b66af446ccffd1e45d166580395e515c9e3da151", "fields": {"departement": "92", "stop_lat": 48.91218097424025, "code_postal": "92004", "stop_lon": 2.296568698464727, "coord": [48.91218097424025, 2.296568698464727], "stop_id": 4472755, "stop_desc": "22 BOULEVARD VOLTAIRE - 92004", "stop_name": "PLACE VOLTAIRE"}, "geometry": {"type": "Point", "coordinates": [2.296568698464727, 48.91218097424025]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "31e5b7871611069d7f85b6f98811d1fe50685f78", "fields": {"departement": "92", "stop_lat": 48.90075212578295, "code_postal": "92024", "stop_lon": 2.3054519129764897, "coord": [48.90075212578295, 2.3054519129764897], "stop_id": 4472760, "stop_desc": "51 BOULEVARD JEAN JAURES - 92024", "stop_name": "JAURES - BARBUSSE"}, "geometry": {"type": "Point", "coordinates": [2.3054519129764897, 48.90075212578295]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3b0e1cc01de8f833db1a3aa934e259242e54edeb", "fields": {"departement": "92", "stop_lat": 48.897014353385735, "code_postal": "92024", "stop_lon": 2.3089027796946073, "coord": [48.897014353385735, 2.3089027796946073], "stop_id": 4472761, "stop_desc": "3 BOULEVARD JEAN JAURES - 92024", "stop_name": "VICTOR HUGO - JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.3089027796946073, 48.897014353385735]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a58b1a3b2cc7f195916140e4689b09598e1ca097", "fields": {"departement": "75", "stop_lat": 48.8947234218669, "code_postal": "75117", "stop_lon": 2.3124478642572925, "coord": [48.8947234218669, 2.3124478642572925], "stop_id": 4472762, "stop_desc": "1 AVENUE DE LA PORTE DE CLICHY - 75117", "stop_name": "PORTE DE CLICHY"}, "geometry": {"type": "Point", "coordinates": [2.3124478642572925, 48.8947234218669]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d49345c6ce051d220b588a9e4b46cc4eaa4124e6", "fields": {"departement": "75", "stop_lat": 48.89288171215441, "code_postal": "75117", "stop_lon": 2.315842525078344, "coord": [48.89288171215441, 2.315842525078344], "stop_id": 4472763, "stop_desc": "177 AVENUE DE CLICHY - 75117", "stop_name": "BOULAY"}, "geometry": {"type": "Point", "coordinates": [2.315842525078344, 48.89288171215441]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7881adf91742b32d46c5f59750df7fbccd17af99", "fields": {"departement": "75", "stop_lat": 48.89295368222563, "code_postal": "75117", "stop_lon": 2.316251384985718, "coord": [48.89295368222563, 2.316251384985718], "stop_id": 4472764, "stop_desc": "182 AVENUE DE CLICHY - 75117", "stop_name": "BOULAY"}, "geometry": {"type": "Point", "coordinates": [2.316251384985718, 48.89295368222563]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9084bc36756b08f652072eb58db2a89b7df285cb", "fields": {"departement": "75", "stop_lat": 48.89185755313465, "code_postal": "75117", "stop_lon": 2.3180645348981526, "coord": [48.89185755313465, 2.3180645348981526], "stop_id": 4472766, "stop_desc": "168 AVENUE DE CLICHY - 75117", "stop_name": "BROCHANT - CARDINET"}, "geometry": {"type": "Point", "coordinates": [2.3180645348981526, 48.89185755313465]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e216d8116fc9392e010999c78d835724210975f8", "fields": {"departement": "75", "stop_lat": 48.88544054827744, "code_postal": "75117", "stop_lon": 2.3171811113289955, "coord": [48.88544054827744, 2.3171811113289955], "stop_id": 4472769, "stop_desc": "FACE 131 R DE ROME - 75117", "stop_name": "LEGENDRE"}, "geometry": {"type": "Point", "coordinates": [2.3171811113289955, 48.88544054827744]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4526f8203ad150609087263182b30295614ecf28", "fields": {"departement": "75", "stop_lat": 48.874522126234, "code_postal": "75108", "stop_lon": 2.3254010982774833, "coord": [48.874522126234, 2.3254010982774833], "stop_id": 4472774, "stop_desc": "FACE 9 RUE DE ROME - 75108", "stop_name": "GARE SAINT-LAZARE"}, "geometry": {"type": "Point", "coordinates": [2.3254010982774833, 48.874522126234]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c5a4eba9a9429f9d9adb9c0b4019ddb218583826", "fields": {"departement": "75", "stop_lat": 48.89491230018949, "code_postal": "75117", "stop_lon": 2.3131701728580083, "coord": [48.89491230018949, 2.3131701728580083], "stop_id": 4472777, "stop_desc": "AVENUE DE LA PORTE DE CLICHY - 75117", "stop_name": "PORTE DE CLICHY - METRO"}, "geometry": {"type": "Point", "coordinates": [2.3131701728580083, 48.89491230018949]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9455e409c92f2098507e859a2c3cd81ae4ea3312", "fields": {"departement": "92", "stop_lat": 48.93539214038885, "code_postal": "92078", "stop_lon": 2.334008166911718, "coord": [48.93539214038885, 2.334008166911718], "stop_id": 4472786, "stop_desc": "AVENUE DE VERDUN - 92078", "stop_name": "MAIRIE DE VILLENEUVE-LA-GARENNE"}, "geometry": {"type": "Point", "coordinates": [2.334008166911718, 48.93539214038885]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "007653070c618e8270b0a481c023044ed40af487", "fields": {"departement": "77", "stop_lat": 48.870957143989884, "code_postal": "77108", "stop_lon": 2.576531116758481, "coord": [48.870957143989884, 2.576531116758481], "stop_id": 4472794, "stop_desc": "50 AVENUE DU MARECHAL FOCH - 77108", "stop_name": "AVENUE DES MARTYRS"}, "geometry": {"type": "Point", "coordinates": [2.576531116758481, 48.870957143989884]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "594b989628ecb69f30a55f01be0228755af221cf", "fields": {"departement": "77", "stop_lat": 48.86784741459195, "code_postal": "77108", "stop_lon": 2.5720620072994205, "coord": [48.86784741459195, 2.5720620072994205], "stop_id": 4472796, "stop_desc": "108 AVENUE DU MARECHAL FOCH - 77108", "stop_name": "RUE DU PORT"}, "geometry": {"type": "Point", "coordinates": [2.5720620072994205, 48.86784741459195]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "04e7c697969199d579cdd68acf270fc72942b0a9", "fields": {"departement": "93", "stop_lat": 48.87672538178333, "code_postal": "93032", "stop_lon": 2.548898087819418, "coord": [48.87672538178333, 2.548898087819418], "stop_id": 4472803, "stop_desc": "AVENUE PAUL VAILLANT COUTURIER - 93032", "stop_name": "LA MARE"}, "geometry": {"type": "Point", "coordinates": [2.548898087819418, 48.87672538178333]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "788b75508c78e822746afeb4dcae01982b6dc52b", "fields": {"departement": "93", "stop_lat": 48.879182440223886, "code_postal": "93032", "stop_lon": 2.5469050848368124, "coord": [48.879182440223886, 2.5469050848368124], "stop_id": 4472804, "stop_desc": "RUE JULES GUESDE - 93032", "stop_name": "MONTGUICHET-ARENA"}, "geometry": {"type": "Point", "coordinates": [2.5469050848368124, 48.879182440223886]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "31626fa88e1094e5b3f3508722c06796a6b72dc7", "fields": {"departement": "93", "stop_lat": 48.87901204214354, "code_postal": "93032", "stop_lon": 2.54670000516056, "coord": [48.87901204214354, 2.54670000516056], "stop_id": 4472805, "stop_desc": "136 RUE JULES GUESDE - 93032", "stop_name": "MONTGUICHET-ARENA"}, "geometry": {"type": "Point", "coordinates": [2.54670000516056, 48.87901204214354]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ad9d95c57d24d9c1e61aeab655bd70336220c114", "fields": {"departement": "93", "stop_lat": 48.88350231020983, "code_postal": "93032", "stop_lon": 2.532818389384571, "coord": [48.88350231020983, 2.532818389384571], "stop_id": 4472810, "stop_desc": "14 AVENUE PARMENTIER - 93032", "stop_name": "JEAN JAURES - HENRI BARBUSSE"}, "geometry": {"type": "Point", "coordinates": [2.532818389384571, 48.88350231020983]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "62c35b33fec3464171811e6572f382dcee9b0b21", "fields": {"departement": "93", "stop_lat": 48.88180455357744, "code_postal": "93077", "stop_lon": 2.5209975811063257, "coord": [48.88180455357744, 2.5209975811063257], "stop_id": 4472815, "stop_desc": "154-156 RUE GRANDE RUE - 93077", "stop_name": "BOULEVARD ANDRE"}, "geometry": {"type": "Point", "coordinates": [2.5209975811063257, 48.88180455357744]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ad12d12fcb05788160a2a7d8d5dca97f67f94a64", "fields": {"departement": "93", "stop_lat": 48.8851306909249, "code_postal": "93064", "stop_lon": 2.4811485622437988, "coord": [48.8851306909249, 2.4811485622437988], "stop_id": 4472830, "stop_desc": "BOULEVARD D'ALSACE LORRAINE - 93064", "stop_name": "CHEMIN DE BONDY"}, "geometry": {"type": "Point", "coordinates": [2.4811485622437988, 48.8851306909249]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ddb9637eef9887a372559ae651134f8452e791b4", "fields": {"departement": "93", "stop_lat": 48.88501464517659, "code_postal": "93064", "stop_lon": 2.4804941157949116, "coord": [48.88501464517659, 2.4804941157949116], "stop_id": 4472831, "stop_desc": "BOULEVARD D'ALSACE LORRAINE - 93064", "stop_name": "CHEMIN DE BONDY"}, "geometry": {"type": "Point", "coordinates": [2.4804941157949116, 48.88501464517659]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7a2b38d9c9e64f1816edbb237d4213e4f6d63f47", "fields": {"departement": "93", "stop_lat": 48.88810005790789, "code_postal": "93053", "stop_lon": 2.4620225350223475, "coord": [48.88810005790789, 2.4620225350223475], "stop_id": 4472837, "stop_desc": "139 RUE DE BREMENT - 93053", "stop_name": "SQUARE STEPHENSON"}, "geometry": {"type": "Point", "coordinates": [2.4620225350223475, 48.88810005790789]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "48351afc01becf934fb07fb8509b0e996a2ba968", "fields": {"departement": "93", "stop_lat": 48.889718658513544, "code_postal": "93053", "stop_lon": 2.4521864237688176, "coord": [48.889718658513544, 2.4521864237688176], "stop_id": 4472841, "stop_desc": "FACE 11 RUE ANATOLE FRANCE - 93053", "stop_name": "JEANNE D'ARC"}, "geometry": {"type": "Point", "coordinates": [2.4521864237688176, 48.889718658513544]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6a3eb014d3a405a70f68dbbe1b264fcd51561263", "fields": {"departement": "93", "stop_lat": 48.88823770072594, "code_postal": "93053", "stop_lon": 2.450166132400812, "coord": [48.88823770072594, 2.450166132400812], "stop_id": 4472842, "stop_desc": "FACE 41 BI RUE ANATOLE FRANCE - 93053", "stop_name": "HELENE"}, "geometry": {"type": "Point", "coordinates": [2.450166132400812, 48.88823770072594]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fb72914427e9fd9cd3d64903f2a5724e9bf4c7e1", "fields": {"departement": "93", "stop_lat": 48.88048687661272, "code_postal": "93045", "stop_lon": 2.422310540571791, "coord": [48.88048687661272, 2.422310540571791], "stop_id": 4472854, "stop_desc": "4-6 AVENUE DU GENERAL LECLERC - 93045", "stop_name": "MARECHAL JUIN"}, "geometry": {"type": "Point", "coordinates": [2.422310540571791, 48.88048687661272]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "48036898d019944a23c6163c8f8fac7d5280c51a", "fields": {"departement": "75", "stop_lat": 48.87404566886351, "code_postal": "75119", "stop_lon": 2.385349817779035, "coord": [48.87404566886351, 2.385349817779035], "stop_id": 4472863, "stop_desc": "95 RUE DE BELLEVILLE - 75119", "stop_name": "PYRENEES"}, "geometry": {"type": "Point", "coordinates": [2.385349817779035, 48.87404566886351]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5933b9fa5be860d934a99297aab932bf8901bba4", "fields": {"departement": "75", "stop_lat": 48.875617354167716, "code_postal": "75110", "stop_lon": 2.358032954419559, "coord": [48.875617354167716, 2.358032954419559], "stop_id": 4472871, "stop_desc": "78 BOULEVARD DE STRASBOURG - 75110", "stop_name": "GARE DE L'EST"}, "geometry": {"type": "Point", "coordinates": [2.358032954419559, 48.875617354167716]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a21d87320dfde9bf4efd0aa429fdd718dad33d75", "fields": {"departement": "75", "stop_lat": 48.866112001913585, "code_postal": "75111", "stop_lon": 2.3796890795072163, "coord": [48.866112001913585, 2.3796890795072163], "stop_id": 4472874, "stop_desc": "120 RUE OBERKAMPF - 75111", "stop_name": "SAINT-MAUR - JEAN AICARD"}, "geometry": {"type": "Point", "coordinates": [2.3796890795072163, 48.866112001913585]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ad296380cf043481df6aaee5ea8869b0ecad6b7f", "fields": {"departement": "75", "stop_lat": 48.866991448808626, "code_postal": "75120", "stop_lon": 2.3832317356000146, "coord": [48.866991448808626, 2.3832317356000146], "stop_id": 4472875, "stop_desc": "BD DE MENILMONTANT - 75120", "stop_name": "BELLEVILLE - MENILMONTANT"}, "geometry": {"type": "Point", "coordinates": [2.3832317356000146, 48.866991448808626]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9abe5ae166307bc8d8a7d75823cd2aa6e4e42c65", "fields": {"departement": "91", "stop_lat": 48.70274441181845, "code_postal": "91161", "stop_lon": 2.320361379742285, "coord": [48.70274441181845, 2.320361379742285], "stop_id": 4472888, "stop_desc": "FACE 5 AVENUE MAZARIN - 91161", "stop_name": "PLACE DE LA LIBERATION"}, "geometry": {"type": "Point", "coordinates": [2.320361379742285, 48.70274441181845]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b204385aa8d2424475d7c7be24ec2fbc2edf295c", "fields": {"departement": "91", "stop_lat": 48.70424493000524, "code_postal": "91161", "stop_lon": 2.316775717016181, "coord": [48.70424493000524, 2.316775717016181], "stop_id": 4472891, "stop_desc": "37 AVENUE MAZARIN - 91161", "stop_name": "BEAUREGARD"}, "geometry": {"type": "Point", "coordinates": [2.316775717016181, 48.70424493000524]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0c83114e72ab037cfe980d2d76d475c2a4538864", "fields": {"departement": "91", "stop_lat": 48.71677842244562, "code_postal": "91377", "stop_lon": 2.2959337186988806, "coord": [48.71677842244562, 2.2959337186988806], "stop_id": 4472898, "stop_desc": "50 RUE DE CHILLY - 91377", "stop_name": "RUE DES FLEURS"}, "geometry": {"type": "Point", "coordinates": [2.2959337186988806, 48.71677842244562]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ec279f4c97c9d344789f054048949c9344767355", "fields": {"departement": "91", "stop_lat": 48.728177760401586, "code_postal": "91377", "stop_lon": 2.27934917567897, "coord": [48.728177760401586, 2.27934917567897], "stop_id": 4472909, "stop_desc": "29 RUE DE LONGJUMEAU - 91377", "stop_name": "JEAN MERMOZ"}, "geometry": {"type": "Point", "coordinates": [2.27934917567897, 48.728177760401586]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1f3ad9c81b4c47b894f325f1f1d64345ad8e0066", "fields": {"departement": "91", "stop_lat": 48.729699558758426, "code_postal": "91377", "stop_lon": 2.2853392869169173, "coord": [48.729699558758426, 2.2853392869169173], "stop_id": 4472912, "stop_desc": "RUE D'ESPAGNE - 91377", "stop_name": "MOSCOU-ROME"}, "geometry": {"type": "Point", "coordinates": [2.2853392869169173, 48.729699558758426]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "81e1075f47d05494928cb1005f99fbc7cd3f4a1a", "fields": {"departement": "91", "stop_lat": 48.730337365280135, "code_postal": "91377", "stop_lon": 2.284509841439496, "coord": [48.730337365280135, 2.284509841439496], "stop_id": 4472913, "stop_desc": "FACE 11 RUE DE ROME - 91377", "stop_name": "MOSCOU-ROME"}, "geometry": {"type": "Point", "coordinates": [2.284509841439496, 48.730337365280135]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3d44836caf3bf95c2aa3ff83bb73532a8833b7af", "fields": {"departement": "91", "stop_lat": 48.732252260868215, "code_postal": "91377", "stop_lon": 2.2853775008007173, "coord": [48.732252260868215, 2.2853775008007173], "stop_id": 4472914, "stop_desc": "RUE DE LISBONNE - 91377", "stop_name": "HELENE BOUCHER"}, "geometry": {"type": "Point", "coordinates": [2.2853775008007173, 48.732252260868215]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8c73891cb904fae9db251daa79cb5b45e9a98d46", "fields": {"departement": "91", "stop_lat": 48.73481745136846, "code_postal": "91377", "stop_lon": 2.2941936819238933, "coord": [48.73481745136846, 2.2941936819238933], "stop_id": 4472920, "stop_desc": "FACE 5 RUE D'ALGER - 91377", "stop_name": "BIARRITZ"}, "geometry": {"type": "Point", "coordinates": [2.2941936819238933, 48.73481745136846]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "64674a7aeddca8f4694673b5b3dd91e6313c647f", "fields": {"departement": "91", "stop_lat": 48.735735534902446, "code_postal": "91377", "stop_lon": 2.2978753881082934, "coord": [48.735735534902446, 2.2978753881082934], "stop_id": 4472922, "stop_desc": "3 BIS RUE DE LANGUEDOC - 91377", "stop_name": "PERIGORD"}, "geometry": {"type": "Point", "coordinates": [2.2978753881082934, 48.735735534902446]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e0b5f576a329e38a48ac5ce4873ec40e72ba49a7", "fields": {"departement": "92", "stop_lat": 48.76239755022339, "code_postal": "92002", "stop_lon": 2.3083508399551924, "coord": [48.76239755022339, 2.3083508399551924], "stop_id": 4472937, "stop_desc": "127 AVENUE ARISTIDE BRIAND - 92002", "stop_name": "GENERAL DE GAULLE - CROIX DE BERNY"}, "geometry": {"type": "Point", "coordinates": [2.3083508399551924, 48.76239755022339]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a6164643a21cf6318c36a1d09f6237096c8bbe54", "fields": {"departement": "92", "stop_lat": 48.768177510907535, "code_postal": "92002", "stop_lon": 2.311026218250398, "coord": [48.768177510907535, 2.311026218250398], "stop_id": 4472938, "stop_desc": "FACE 49 AVENUE RAYMOND ARON - 92002", "stop_name": "NORMANDIE"}, "geometry": {"type": "Point", "coordinates": [2.311026218250398, 48.768177510907535]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6210d65d59a9a5e76b1ccdb6818cd1a534c9d706", "fields": {"departement": "92", "stop_lat": 48.770703432969064, "code_postal": "92002", "stop_lon": 2.3123167134725082, "coord": [48.770703432969064, 2.3123167134725082], "stop_id": 4472940, "stop_desc": "26 AV RAYMOND ARON - 92002", "stop_name": "LA FONTAINE"}, "geometry": {"type": "Point", "coordinates": [2.3123167134725082, 48.770703432969064]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "47d20d60045c66bc794f4ebe1f34bdcbbfe913d9", "fields": {"departement": "92", "stop_lat": 48.77700575939989, "code_postal": "92014", "stop_lon": 2.3226627033398617, "coord": [48.77700575939989, 2.3226627033398617], "stop_id": 4472946, "stop_desc": "FACE 35 BOULEVARD CARNOT - 92014", "stop_name": "GALOIS"}, "geometry": {"type": "Point", "coordinates": [2.3226627033398617, 48.77700575939989]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3e45f02fb186049938395a897e15b0691e5ec564", "fields": {"departement": "94", "stop_lat": 48.78029624321282, "code_postal": "94038", "stop_lon": 2.3352690648867527, "coord": [48.78029624321282, 2.3352690648867527], "stop_id": 4472954, "stop_desc": "AVENUE ARISTIDE BRIAND - 94038", "stop_name": "RUE DES JARDINS"}, "geometry": {"type": "Point", "coordinates": [2.3352690648867527, 48.78029624321282]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e290df160ad1a4022bf68af170bc444fe908d85b", "fields": {"departement": "94", "stop_lat": 48.806576843454636, "code_postal": "94003", "stop_lon": 2.3368192563048034, "coord": [48.806576843454636, 2.3368192563048034], "stop_id": 4472970, "stop_desc": "FACE 9 AVENUE PAUL DOUMER - 94003", "stop_name": "HOTEL DE VILLE D'ARCUEIL"}, "geometry": {"type": "Point", "coordinates": [2.3368192563048034, 48.806576843454636]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8746475e5730f4f0cf7ecd20a6bcecc6320cbd2f", "fields": {"departement": "92", "stop_lat": 48.81817044569001, "code_postal": "92049", "stop_lon": 2.3253050858161446, "coord": [48.81817044569001, 2.3253050858161446], "stop_id": 4472977, "stop_desc": "52 AVENUE ARISTIDE BRIAND - 92049", "stop_name": "GABRIEL PERI"}, "geometry": {"type": "Point", "coordinates": [2.3253050858161446, 48.81817044569001]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "820fcba944af39c247e36d33c2f147863520ef7c", "fields": {"departement": "75", "stop_lat": 48.82688858812294, "code_postal": "75114", "stop_lon": 2.3262695521776147, "coord": [48.82688858812294, 2.3262695521776147], "stop_id": 4472981, "stop_desc": "96 AVENUE DU GENERAL LECLERC - 75114", "stop_name": "ALESIA - GENERAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.3262695521776147, 48.82688858812294]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ad57f3ead5e07160e88cf95fae76176b38eb435b", "fields": {"departement": "75", "stop_lat": 48.839256036606045, "code_postal": "75114", "stop_lon": 2.3367645211123738, "coord": [48.839256036606045, 2.3367645211123738], "stop_id": 4472989, "stop_desc": "49 AVENUE DE L'OBSERVATOIRE - 75114", "stop_name": "OBSERVATOIRE - PORT ROYAL"}, "geometry": {"type": "Point", "coordinates": [2.3367645211123738, 48.839256036606045]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bcbd004d91298238f9b69b69bbaa81b475a74a0a", "fields": {"departement": "75", "stop_lat": 48.84083779071601, "code_postal": "75106", "stop_lon": 2.3335919869630257, "coord": [48.84083779071601, 2.3335919869630257], "stop_id": 4472990, "stop_desc": "147 BOULEVARD DU MONTPARNASSE - 75106", "stop_name": "CAMPAGNE PREMIERE"}, "geometry": {"type": "Point", "coordinates": [2.3335919869630257, 48.84083779071601]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2450700faa3ddaf0da45ed07634dfc668e0acf87", "fields": {"departement": "75", "stop_lat": 48.84381179353463, "code_postal": "75115", "stop_lon": 2.32238519748455, "coord": [48.84381179353463, 2.32238519748455], "stop_id": 4472992, "stop_desc": "FACE 3 RUE DE L'ARRIVEE - 75115", "stop_name": "PLACE DU 18 JUIN 1940 - RUE DE L'ARRIVEE"}, "geometry": {"type": "Point", "coordinates": [2.32238519748455, 48.84381179353463]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e3284dd16aaf050cf0910bea033ca8a2afb41687", "fields": {"departement": "75", "stop_lat": 48.841798238989874, "code_postal": "75115", "stop_lon": 2.319825926144041, "coord": [48.841798238989874, 2.319825926144041], "stop_id": 4472994, "stop_desc": "PLACE RAOUL DAUTRY - 75115", "stop_name": "GARE MONTPARNASSE"}, "geometry": {"type": "Point", "coordinates": [2.319825926144041, 48.841798238989874]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "38e93c5590c57d6fccdc811b3f75aab62dd6efad", "fields": {"departement": "75", "stop_lat": 48.83389932071581, "code_postal": "75114", "stop_lon": 2.3319043229181324, "coord": [48.83389932071581, 2.3319043229181324], "stop_id": 4472998, "stop_desc": "2 PLACE DENFERT ROCHEREAU - 75114", "stop_name": "DENFERT-ROCHEREAU"}, "geometry": {"type": "Point", "coordinates": [2.3319043229181324, 48.83389932071581]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c3ccf734e952faa6a000c5bbb38db87d00d6d0d8", "fields": {"departement": "75", "stop_lat": 48.82929741932709, "code_postal": "75114", "stop_lon": 2.3279570462264916, "coord": [48.82929741932709, 2.3279570462264916], "stop_id": 4472999, "stop_desc": "72 AVENUE DU GENERAL LECLERC - 75114", "stop_name": "ALESIA - MAINE"}, "geometry": {"type": "Point", "coordinates": [2.3279570462264916, 48.82929741932709]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7ed602de4600aac5294c9a665856e374ecb5a767", "fields": {"departement": "75", "stop_lat": 48.82273618498334, "code_postal": "75114", "stop_lon": 2.325208756264251, "coord": [48.82273618498334, 2.325208756264251], "stop_id": 4473000, "stop_desc": "4 PLACE DU 25 AOUT 1944 - 75114", "stop_name": "PORTE D'ORLEANS-METRO"}, "geometry": {"type": "Point", "coordinates": [2.325208756264251, 48.82273618498334]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "58694d6d4a86a44a4f3cc8b824bee8879f449397", "fields": {"departement": "92", "stop_lat": 48.77892842194231, "code_postal": "92014", "stop_lon": 2.3173582668401624, "coord": [48.77892842194231, 2.3173582668401624], "stop_id": 4473003, "stop_desc": "11 BOULEVARD CARNOT - 92014", "stop_name": "MAIRIE DE BOURG-LA-REINE - CONDORCET"}, "geometry": {"type": "Point", "coordinates": [2.3173582668401624, 48.77892842194231]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e5e03f715126e4fa4bfd719ac934b83776e54d7c", "fields": {"departement": "92", "stop_lat": 48.77446957980129, "code_postal": "92071", "stop_lon": 2.3130900241212315, "coord": [48.77446957980129, 2.3130900241212315], "stop_id": 4473005, "stop_desc": "146 AVENUE DU GENERAL LECLERC - 92071", "stop_name": "LES COTTAGES"}, "geometry": {"type": "Point", "coordinates": [2.3130900241212315, 48.77446957980129]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8169ef1af9338f8c8b5b0f15736e427a5cef5d25", "fields": {"departement": "92", "stop_lat": 48.824921780034416, "code_postal": "92040", "stop_lon": 2.2736467944118726, "coord": [48.824921780034416, 2.2736467944118726], "stop_id": 4473008, "stop_desc": "FACE 29BIS RUE KLEBER - 92040", "stop_name": "MAIRIE D'ISSY-METRO"}, "geometry": {"type": "Point", "coordinates": [2.2736467944118726, 48.824921780034416]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5b6eab7dc2afe4f8581321af89d4c917c9a125de", "fields": {"departement": "92", "stop_lat": 48.827501031407145, "code_postal": "92040", "stop_lon": 2.273262483998071, "coord": [48.827501031407145, 2.273262483998071], "stop_id": 4473010, "stop_desc": "5 RUE DU GOUVERNEUR GENERAL EBOUE - 92040", "stop_name": "VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.273262483998071, 48.827501031407145]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b5f8f9c97b27e42d5f96d0c546a1b009e2bf23c6", "fields": {"departement": "92", "stop_lat": 48.82738441088452, "code_postal": "92040", "stop_lon": 2.273671000910632, "coord": [48.82738441088452, 2.273671000910632], "stop_id": 4473011, "stop_desc": "4 AVENUE DE LA REPUBLIQUE - 92040", "stop_name": "VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.273671000910632, 48.82738441088452]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a759bebc99b39c088617c2d35d6c3ab7772537b4", "fields": {"departement": "75", "stop_lat": 48.837352823094804, "code_postal": "75115", "stop_lon": 2.2968996770026644, "coord": [48.837352823094804, 2.2968996770026644], "stop_id": 4473018, "stop_desc": "333-335 R DE VAUGIRARD - 75115", "stop_name": "CONVENTION - VAUGIRARD"}, "geometry": {"type": "Point", "coordinates": [2.2968996770026644, 48.837352823094804]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c579dd1537dbd34a596b0a89f764d10650620d6f", "fields": {"departement": "75", "stop_lat": 48.84038395608434, "code_postal": "75115", "stop_lon": 2.304467729103389, "coord": [48.84038395608434, 2.304467729103389], "stop_id": 4473022, "stop_desc": "249 RUE DE VAUGIRARD - 75115", "stop_name": "CAMBRONNE - VAUGIRARD"}, "geometry": {"type": "Point", "coordinates": [2.304467729103389, 48.84038395608434]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1ea9f1508ee3a97cca93af735700f2cc0293176c", "fields": {"departement": "75", "stop_lat": 48.8425042999016, "code_postal": "75115", "stop_lon": 2.3019609713401774, "coord": [48.8425042999016, 2.3019609713401774], "stop_id": 4473033, "stop_desc": "118-120 RUE LECOURBE - 75115", "stop_name": "CAMBRONNE - LECOURBE"}, "geometry": {"type": "Point", "coordinates": [2.3019609713401774, 48.8425042999016]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9edbb4f49301527331776cadecc96559c4e3b6b1", "fields": {"departement": "75", "stop_lat": 48.83914826598913, "code_postal": "75115", "stop_lon": 2.2911933772060062, "coord": [48.83914826598913, 2.2911933772060062], "stop_id": 4473035, "stop_desc": "250 RUE LECOURBE - 75115", "stop_name": "CONVENTION - LECOURBE"}, "geometry": {"type": "Point", "coordinates": [2.2911933772060062, 48.83914826598913]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e491ca1ab1702e5a61b29115579bc29fbabef133", "fields": {"departement": "92", "stop_lat": 48.90108993039388, "code_postal": "92050", "stop_lon": 2.21579534791084, "coord": [48.90108993039388, 2.21579534791084], "stop_id": 4473044, "stop_desc": "BOULEVARD DES PROVINCES FRANCAISES - 92050", "stop_name": "NANTERRE - UNIVERSITE RER"}, "geometry": {"type": "Point", "coordinates": [2.21579534791084, 48.90108993039388]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "63fec5d62b59a6bf9bf5af9bb8302ccfb427d3f9", "fields": {"departement": "92", "stop_lat": 48.89812239517774, "code_postal": "92050", "stop_lon": 2.2140575314032325, "coord": [48.89812239517774, 2.2140575314032325], "stop_id": 4473046, "stop_desc": "BOULEVARD DES PROVINCES FRANCAISES - 92050", "stop_name": "SOUFFLOT"}, "geometry": {"type": "Point", "coordinates": [2.2140575314032325, 48.89812239517774]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "12ef7c423b2e7abba59f62e40f55bbfff1225e1a", "fields": {"departement": "94", "stop_lat": 48.7682303001137, "code_postal": "94073", "stop_lon": 2.368214897398787, "coord": [48.7682303001137, 2.368214897398787], "stop_id": 4767096, "stop_desc": "AVENUE DE STALINGRAD - 94073", "stop_name": "BRETAGNE"}, "geometry": {"type": "Point", "coordinates": [2.368214897398787, 48.7682303001137]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "205a60dc751f9ddd3e951cbe485487391d83ab36", "fields": {"departement": "91", "stop_lat": 48.70487397259365, "code_postal": "91161", "stop_lon": 2.3159063254443284, "coord": [48.70487397259365, 2.3159063254443284], "stop_id": 4770075, "stop_desc": "30 AVENUE MAZARIN - 91161", "stop_name": "BEAUREGARD"}, "geometry": {"type": "Point", "coordinates": [2.3159063254443284, 48.70487397259365]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0af3426a6a6fc852ce10c3cbc7a88d3c41448a0f", "fields": {"departement": "91", "stop_lat": 48.72703528430663, "code_postal": "91377", "stop_lon": 2.277421212316732, "coord": [48.72703528430663, 2.277421212316732], "stop_id": 4770087, "stop_desc": "AVENUE DE L'EUROPE - 91377", "stop_name": "AVENUE DE L'EUROPE - CENTRE COMMERCIAL"}, "geometry": {"type": "Point", "coordinates": [2.277421212316732, 48.72703528430663]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "301353e67c9ff086e8db26a5f7e1cfe52185d2d1", "fields": {"departement": "91", "stop_lat": 48.72928165027463, "code_postal": "91377", "stop_lon": 2.2760056052258806, "coord": [48.72928165027463, 2.2760056052258806], "stop_id": 4770091, "stop_desc": "FACE 3 RUE FUSTEL DE COULANGES - 91377", "stop_name": "GABRIEL PERI"}, "geometry": {"type": "Point", "coordinates": [2.2760056052258806, 48.72928165027463]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7b3385eea780bf924cd98960e885be87a4f98c71", "fields": {"departement": "91", "stop_lat": 48.729353668825254, "code_postal": "91377", "stop_lon": 2.2762229087458588, "coord": [48.729353668825254, 2.2762229087458588], "stop_id": 4770092, "stop_desc": "3 RUE FUSTEL DE COULANGES - 91377", "stop_name": "GABRIEL PERI"}, "geometry": {"type": "Point", "coordinates": [2.2762229087458588, 48.729353668825254]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8d940006dc06195ab60a82357b7b753982aae33a", "fields": {"departement": "91", "stop_lat": 48.727847083549705, "code_postal": "91377", "stop_lon": 2.2833711116416517, "coord": [48.727847083549705, 2.2833711116416517], "stop_id": 4770095, "stop_desc": "21 AVENUE NATIONALE - 91377", "stop_name": "AUSTRALIE"}, "geometry": {"type": "Point", "coordinates": [2.2833711116416517, 48.727847083549705]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9e873d5c32ad6c0a6b94bb38b73bf9f08a2cf507", "fields": {"departement": "91", "stop_lat": 48.729699558758426, "code_postal": "91377", "stop_lon": 2.2853392869169173, "coord": [48.729699558758426, 2.2853392869169173], "stop_id": 4770097, "stop_desc": "RUE D'ESPAGNE - 91377", "stop_name": "MOSCOU-ROME"}, "geometry": {"type": "Point", "coordinates": [2.2853392869169173, 48.729699558758426]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fedd56925fdfa5245f2038ec9b2f42ed6569fd91", "fields": {"departement": "91", "stop_lat": 48.733178849525345, "code_postal": "91377", "stop_lon": 2.287224513071842, "coord": [48.733178849525345, 2.287224513071842], "stop_id": 4770102, "stop_desc": "RUE DES CANADIENS - 91377", "stop_name": "AVENUE SAINT-MARC"}, "geometry": {"type": "Point", "coordinates": [2.287224513071842, 48.733178849525345]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6bc698979e346b159ad217a415f3409eb4b64354", "fields": {"departement": "91", "stop_lat": 48.735735534902446, "code_postal": "91377", "stop_lon": 2.2978753881082934, "coord": [48.735735534902446, 2.2978753881082934], "stop_id": 4770107, "stop_desc": "3 BIS RUE DE LANGUEDOC - 91377", "stop_name": "PERIGORD"}, "geometry": {"type": "Point", "coordinates": [2.2978753881082934, 48.735735534902446]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1e5c68da8912125aab7ce184202ae19ae82e7d4f", "fields": {"departement": "92", "stop_lat": 48.7412916894257, "code_postal": "92002", "stop_lon": 2.30235584303178, "coord": [48.7412916894257, 2.30235584303178], "stop_id": 4770111, "stop_desc": "FACE 157 AVENUE DE LA DIVISION LECLERC - 92002", "stop_name": "PETIT MASSY"}, "geometry": {"type": "Point", "coordinates": [2.30235584303178, 48.7412916894257]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6c5e86432512b380254033573335077d9faca4f7", "fields": {"departement": "92", "stop_lat": 48.75812776706284, "code_postal": "92002", "stop_lon": 2.3066539281211798, "coord": [48.75812776706284, 2.3066539281211798], "stop_id": 4770118, "stop_desc": "63 AVENUE ARISTIDE BRIAND - 92002", "stop_name": "FERNAND FENZY"}, "geometry": {"type": "Point", "coordinates": [2.3066539281211798, 48.75812776706284]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5eb6297386eac862ac1c4fa0713c0b35453721fb", "fields": {"departement": "92", "stop_lat": 48.765975131381744, "code_postal": "92002", "stop_lon": 2.3096948881143153, "coord": [48.765975131381744, 2.3096948881143153], "stop_id": 4770124, "stop_desc": "25 AVENUE RAYMOND ARON - 92002", "stop_name": "NORMANDIE"}, "geometry": {"type": "Point", "coordinates": [2.3096948881143153, 48.765975131381744]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cb303195390b0a2956d662a518f95730a8942661", "fields": {"departement": "92", "stop_lat": 48.77033474019488, "code_postal": "92002", "stop_lon": 2.311460248843124, "coord": [48.77033474019488, 2.311460248843124], "stop_id": 4770126, "stop_desc": "69 AVENUE RAYMOND ARON - 92002", "stop_name": "LA FONTAINE"}, "geometry": {"type": "Point", "coordinates": [2.311460248843124, 48.77033474019488]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6f9cd5ba6d7c1f67f15e8a83e7acf760078378c7", "fields": {"departement": "94", "stop_lat": 48.77827394172297, "code_postal": "94038", "stop_lon": 2.3350379495207525, "coord": [48.77827394172297, 2.3350379495207525], "stop_id": 4770137, "stop_desc": "FACE 13 RUE JEAN JAURES - 94038", "stop_name": "SOUS-PREFECTURE - EGLISE DE L'HAY-LES-ROSES"}, "geometry": {"type": "Point", "coordinates": [2.3350379495207525, 48.77827394172297]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fbce2d2d79f7717529ef531a6d1139e14bd3818f", "fields": {"departement": "94", "stop_lat": 48.79709463577202, "code_postal": "94016", "stop_lon": 2.3338127426577424, "coord": [48.79709463577202, 2.3338127426577424], "stop_id": 4770148, "stop_desc": "FACE 62 AVENUE COUSIN DE MERICOURT - 94016", "stop_name": "COUSIN DE MERICOURT"}, "geometry": {"type": "Point", "coordinates": [2.3338127426577424, 48.79709463577202]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d2e6532277c0ac923cd9c6d16dba3283af7ade6d", "fields": {"departement": "94", "stop_lat": 48.80148968188163, "code_postal": "94003", "stop_lon": 2.3334587047633777, "coord": [48.80148968188163, 2.3334587047633777], "stop_id": 4770150, "stop_desc": "39 AVENUE DE LA CONVENTION - 94003", "stop_name": "CITE JARDINS"}, "geometry": {"type": "Point", "coordinates": [2.3334587047633777, 48.80148968188163]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eb7c31756968da11f3e0244795b09d77b4b58a7d", "fields": {"departement": "75", "stop_lat": 48.82356309968058, "code_postal": "75114", "stop_lon": 2.3256985758622, "coord": [48.82356309968058, 2.3256985758622], "stop_id": 4770163, "stop_desc": "123 AVENUE DU GENERAL LECLERC - 75114", "stop_name": "PORTE D'ORLEANS"}, "geometry": {"type": "Point", "coordinates": [2.3256985758622, 48.82356309968058]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3729e600464b999d93173ce3fbed3235212b3ff3", "fields": {"departement": "75", "stop_lat": 48.82735598995444, "code_postal": "75114", "stop_lon": 2.326759500564941, "coord": [48.82735598995444, 2.326759500564941], "stop_id": 4770165, "stop_desc": "83-85 AVENUE DU GENERAL LECLERC - 75114", "stop_name": "ALESIA - GENERAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.326759500564941, 48.82735598995444]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b3f6ee820b3c22fc472f192a4571aa1d82f772aa", "fields": {"departement": "75", "stop_lat": 48.8316073794591, "code_postal": "75114", "stop_lon": 2.3299850499497685, "coord": [48.8316073794591, 2.3299850499497685], "stop_id": 4770168, "stop_desc": "32 AVENUE DU GENERAL LECLERC - 75114", "stop_name": "MOUTON - DUVERNET"}, "geometry": {"type": "Point", "coordinates": [2.3299850499497685, 48.8316073794591]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2a077c607aca4828c1627a41734dc3ee17e46812", "fields": {"departement": "75", "stop_lat": 48.85234167570838, "code_postal": "75105", "stop_lon": 2.343778173799205, "coord": [48.85234167570838, 2.343778173799205], "stop_id": 4770179, "stop_desc": "7 BOULEVARD SAINT-MICHEL - 75105", "stop_name": "SAINT-MICHEL - SAINT-GERMAIN"}, "geometry": {"type": "Point", "coordinates": [2.343778173799205, 48.85234167570838]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "03a0ba051315ea5256a546ab7827c0d4820e1f5b", "fields": {"departement": "75", "stop_lat": 48.84978931329091, "code_postal": "75106", "stop_lon": 2.342102800318699, "coord": [48.84978931329091, 2.342102800318699], "stop_id": 4770187, "stop_desc": "38 BOULEVARD SAINT-MICHEL - 75106", "stop_name": "LES ECOLES"}, "geometry": {"type": "Point", "coordinates": [2.342102800318699, 48.84978931329091]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1cab055ab33a998c8abbba0ceda67d9b4f15d844", "fields": {"departement": "94", "stop_lat": 48.80980304722781, "code_postal": "94003", "stop_lon": 2.3273617927425523, "coord": [48.80980304722781, 2.3273617927425523], "stop_id": 4770195, "stop_desc": "AV LAPLACE - 94003", "stop_name": "VACHE NOIRE - CENTRE COMMERCIAL"}, "geometry": {"type": "Point", "coordinates": [2.3273617927425523, 48.80980304722781]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "046b3c709d1c35cb987a42f9d007ca26bed6bee0", "fields": {"departement": "92", "stop_lat": 48.754019754575175, "code_postal": "92002", "stop_lon": 2.305038753866696, "coord": [48.754019754575175, 2.305038753866696], "stop_id": 4770200, "stop_desc": "AVENUE ARISTIDE BRIAND - 92002", "stop_name": "AUGUSTE MOUNIE"}, "geometry": {"type": "Point", "coordinates": [2.305038753866696, 48.754019754575175]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e6a9055108228db5f1006db5a73398a0b8e0ab2c", "fields": {"departement": "95", "stop_lat": 48.99436259243544, "code_postal": "95585", "stop_lon": 2.38315376864614, "coord": [48.99436259243544, 2.38315376864614], "stop_id": 4776033, "stop_desc": "FACE 9 RUE JEAN-JACQUES ROUSSEAU - 95585", "stop_name": "LYCEE JEAN-JACQUES ROUSSEAU"}, "geometry": {"type": "Point", "coordinates": [2.38315376864614, 48.99436259243544]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ce1888f2a903a4fd40606639a878a18f0646e5f2", "fields": {"departement": "94", "stop_lat": 48.83547370371285, "code_postal": "94052", "stop_lon": 2.474802599415442, "coord": [48.83547370371285, 2.474802599415442], "stop_id": 4798798, "stop_desc": "12 GR CHARLES DE GAULLE - 94052", "stop_name": "PLACE DU GENERAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.474802599415442, 48.83547370371285]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4323a365f2155f9f44e9ea7f292a5f7fc62c1094", "fields": {"departement": "94", "stop_lat": 48.838001853465165, "code_postal": "94058", "stop_lon": 2.4944560966386526, "coord": [48.838001853465165, 2.4944560966386526], "stop_id": 4798803, "stop_desc": "10 PLACE ROBERT BELVAUX - 94058", "stop_name": "NOGENT-LE-PERREUX RER"}, "geometry": {"type": "Point", "coordinates": [2.4944560966386526, 48.838001853465165]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d10dad2377594e85fa4c33944d1fe326c3d17cc7", "fields": {"departement": "94", "stop_lat": 48.848946899060834, "code_postal": "94058", "stop_lon": 2.5087746753805695, "coord": [48.848946899060834, 2.5087746753805695], "stop_id": 4798807, "stop_desc": "FACE 159 AVENUE DU 8 MAI 1945 - 94058", "stop_name": "BORDS DE MARNE"}, "geometry": {"type": "Point", "coordinates": [2.5087746753805695, 48.848946899060834]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d584d7f062b94066ec41f27bb4b2bde568153851", "fields": {"departement": "94", "stop_lat": 48.851630632953096, "code_postal": "94058", "stop_lon": 2.511207701458485, "coord": [48.851630632953096, 2.511207701458485], "stop_id": 4798808, "stop_desc": "150-152 AVENUE DU 8 MAI 1945 - 94058", "stop_name": "LA MALTOURNEE"}, "geometry": {"type": "Point", "coordinates": [2.511207701458485, 48.851630632953096]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fee701e6b86e5e2a4b0f3482d4eecb037edded4e", "fields": {"departement": "95", "stop_lat": 48.92532257626675, "code_postal": "95063", "stop_lon": 2.210637838002561, "coord": [48.92532257626675, 2.210637838002561], "stop_id": 4798852, "stop_desc": "122 RUE EDOUARD VAILLANT - 95063", "stop_name": "HENRI BARBUSSE"}, "geometry": {"type": "Point", "coordinates": [2.210637838002561, 48.92532257626675]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "259c49b0a8a040a7aec0ae01b9b368578973e73d", "fields": {"departement": "78", "stop_lat": 48.92439706712685, "code_postal": "78311", "stop_lon": 2.2025664357889987, "coord": [48.92439706712685, 2.2025664357889987], "stop_id": 4798855, "stop_desc": "67 BOULEVARD EMILE ZOLA - 78311", "stop_name": "YSER"}, "geometry": {"type": "Point", "coordinates": [2.2025664357889987, 48.92439706712685]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cd2bc4d8e75f6b45fb3b9a9757f2310e3e0a9084", "fields": {"departement": "95", "stop_lat": 48.92435016744195, "code_postal": "95063", "stop_lon": 2.208935473437581, "coord": [48.92435016744195, 2.208935473437581], "stop_id": 4798865, "stop_desc": "FACE 148 R EDOUARD VAILLANT - 95063", "stop_name": "EMILE ZOLA"}, "geometry": {"type": "Point", "coordinates": [2.208935473437581, 48.92435016744195]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3502989d3a502f4d6aaca4980dfe0fa131e71257", "fields": {"departement": "95", "stop_lat": 48.92316367574363, "code_postal": "95063", "stop_lon": 2.2173664624293954, "coord": [48.92316367574363, 2.2173664624293954], "stop_id": 4798868, "stop_desc": "R JULIUS ET ETHEL ROSENBERG - 95063", "stop_name": "PONT DE BEZONS"}, "geometry": {"type": "Point", "coordinates": [2.2173664624293954, 48.92316367574363]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "09cd1830b18eb219cf1895ddea77e53a83903fd7", "fields": {"departement": "92", "stop_lat": 48.91362227104469, "code_postal": "92025", "stop_lon": 2.229701044179225, "coord": [48.91362227104469, 2.229701044179225], "stop_id": 4798870, "stop_desc": "139 BD CHARLES DE GAULLE - 92025", "stop_name": "VICTOR BASCH"}, "geometry": {"type": "Point", "coordinates": [2.229701044179225, 48.91362227104469]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3386d1cf09a2402b6e2dc3fcf9edaf5c5d79d350", "fields": {"departement": "75", "stop_lat": 48.830180997514994, "code_postal": "75113", "stop_lon": 2.3767737037854664, "coord": [48.830180997514994, 2.3767737037854664], "stop_id": 4798880, "stop_desc": "109-111 AVENUE DE FRANCE - 75113", "stop_name": "BIBLIOTHEQUE FRANCOIS MITTERRAND"}, "geometry": {"type": "Point", "coordinates": [2.3767737037854664, 48.830180997514994]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cb32a950ca288eda4d73d54e9731435dd9e3f101", "fields": {"departement": "75", "stop_lat": 48.830180997514994, "code_postal": "75113", "stop_lon": 2.3767737037854664, "coord": [48.830180997514994, 2.3767737037854664], "stop_id": 4798881, "stop_desc": "109-111 AVENUE DE FRANCE - 75113", "stop_name": "BIBLIOTHEQUE FRANCOIS MITTERRAND"}, "geometry": {"type": "Point", "coordinates": [2.3767737037854664, 48.830180997514994]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cf83522ed7871c7dfce7ef6f62c7a1f865eda60a", "fields": {"departement": "93", "stop_lat": 48.9320839916094, "code_postal": "93066", "stop_lon": 2.352913349098698, "coord": [48.9320839916094, 2.352913349098698], "stop_id": 4798988, "stop_desc": "BOULEVARD MARCEL SEMBAT - 93066", "stop_name": "PIERRE DE GEYTER"}, "geometry": {"type": "Point", "coordinates": [2.352913349098698, 48.9320839916094]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "40b8dbce7a78047833dd63db1b4de0d933557075", "fields": {"departement": "93", "stop_lat": 48.935886040957556, "code_postal": "93066", "stop_lon": 2.3472671436699484, "coord": [48.935886040957556, 2.3472671436699484], "stop_id": 4798990, "stop_desc": "BOULEVARD MARCEL SEMBAT - 93066", "stop_name": "SAINT-DENIS - GARE"}, "geometry": {"type": "Point", "coordinates": [2.3472671436699484, 48.935886040957556]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2de3c93382e7af026283ea73ef671d1ef9368169", "fields": {"departement": "93", "stop_lat": 48.93983142913104, "code_postal": "93066", "stop_lon": 2.3449896936681927, "coord": [48.93983142913104, 2.3449896936681927], "stop_id": 4798993, "stop_desc": "RUE MAURICE THOREZ - 93066", "stop_name": "PAUL ELUARD"}, "geometry": {"type": "Point", "coordinates": [2.3449896936681927, 48.93983142913104]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a7ae2d1df1e8681f008989e18132ac2c4fe9aba7", "fields": {"departement": "93", "stop_lat": 48.945834450109686, "code_postal": "93066", "stop_lon": 2.3471189884455885, "coord": [48.945834450109686, 2.3471189884455885], "stop_id": 4798995, "stop_desc": "RUE DE LA POTERIE - 93066", "stop_name": "DELAUNAY-BELLEVILLE"}, "geometry": {"type": "Point", "coordinates": [2.3471189884455885, 48.945834450109686]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "92aea0d3e624748d73596092794897e3d8589331", "fields": {"departement": "93", "stop_lat": 48.945834450109686, "code_postal": "93066", "stop_lon": 2.3471189884455885, "coord": [48.945834450109686, 2.3471189884455885], "stop_id": 4799013, "stop_desc": "RUE DE LA POTERIE - 93066", "stop_name": "DELAUNAY-BELLEVILLE"}, "geometry": {"type": "Point", "coordinates": [2.3471189884455885, 48.945834450109686]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a31237aec5f58d86f9f98768755afd0229c47bbc", "fields": {"departement": "93", "stop_lat": 48.9495012510341, "code_postal": "93031", "stop_lon": 2.330282322253365, "coord": [48.9495012510341, 2.330282322253365], "stop_id": 4799017, "stop_desc": "AVENUE DE LA REPUBLIQUE - 93031", "stop_name": "LES MOBILES"}, "geometry": {"type": "Point", "coordinates": [2.330282322253365, 48.9495012510341]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b91de9bb80a51d35453d4d7df821cc640c7b8d20", "fields": {"departement": "93", "stop_lat": 48.95534827408044, "code_postal": "93031", "stop_lon": 2.308202171211966, "coord": [48.95534827408044, 2.308202171211966], "stop_id": 4799025, "stop_desc": "AVENUE SALVADOR ALLENDE - 93031", "stop_name": "GILBERT BONNEMAISON"}, "geometry": {"type": "Point", "coordinates": [2.308202171211966, 48.95534827408044]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cdbb12312ac81afe7ac56170983c2f18f09dee7f", "fields": {"departement": "93", "stop_lat": 48.955741979480216, "code_postal": "93031", "stop_lon": 2.3018701188819892, "coord": [48.955741979480216, 2.3018701188819892], "stop_id": 4799027, "stop_desc": "PONT DE LA RESISTANCE - 93031", "stop_name": "EPINAY-SUR-SEINE - GARE"}, "geometry": {"type": "Point", "coordinates": [2.3018701188819892, 48.955741979480216]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cddf844a8c8874fbce0c1b80bf55838e159b68ca", "fields": {"departement": "92", "stop_lat": 48.82598404819083, "code_postal": "92072", "stop_lon": 2.2008208822667474, "coord": [48.82598404819083, 2.2008208822667474], "stop_id": 4834519, "stop_desc": "FACE 56 R DE VILLE D'AVRAY - 92072", "stop_name": "SEVRES-VILLE D'AVRAY - GARE SNCF RIVE DROITE"}, "geometry": {"type": "Point", "coordinates": [2.2008208822667474, 48.82598404819083]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eee33c923a8dd706fea7c231e0d580664b30d03c", "fields": {"departement": "92", "stop_lat": 48.82621961795016, "code_postal": "92077", "stop_lon": 2.194762856958854, "coord": [48.82621961795016, 2.194762856958854], "stop_id": 4834520, "stop_desc": "51-55 R DE SEVRES - 92077", "stop_name": "PARC DE LESSER"}, "geometry": {"type": "Point", "coordinates": [2.194762856958854, 48.82621961795016]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c731220ec153702597190ba5d00549c3a9ef68a3", "fields": {"departement": "78", "stop_lat": 48.83701621049157, "code_postal": "78126", "stop_lon": 2.145310791398518, "coord": [48.83701621049157, 2.145310791398518], "stop_id": 4834534, "stop_desc": "AV DE VERDUN - 78126", "stop_name": "ROUTE DES PUITS"}, "geometry": {"type": "Point", "coordinates": [2.145310791398518, 48.83701621049157]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c91a8a984482e4426e984aed280bcbc2dd9e0a93", "fields": {"departement": "78", "stop_lat": 48.83541172202874, "code_postal": "78126", "stop_lon": 2.131729374178892, "coord": [48.83541172202874, 2.131729374178892], "stop_id": 4834536, "stop_desc": "56 AV DE VERDUN - 78126", "stop_name": "JULES VERNE"}, "geometry": {"type": "Point", "coordinates": [2.131729374178892, 48.83541172202874]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9387aca0bcad05614d19a17f977c073f7db6f6ff", "fields": {"departement": "78", "stop_lat": 48.84443835442505, "code_postal": "78126", "stop_lon": 2.133531901691579, "coord": [48.84443835442505, 2.133531901691579], "stop_id": 4834543, "stop_desc": "7 AVENUE LUCIEN RENE DUCHESNE - 78126", "stop_name": "GUIBERT"}, "geometry": {"type": "Point", "coordinates": [2.133531901691579, 48.84443835442505]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a4641749757c831bc26b5cad5dc08de74ce4f159", "fields": {"departement": "92", "stop_lat": 48.82941998289845, "code_postal": "92047", "stop_lon": 2.1743345810427517, "coord": [48.82941998289845, 2.1743345810427517], "stop_id": 4834554, "stop_desc": "4-6 R DE VERSAILLES - 92047", "stop_name": "RUE DE VERSAILLES"}, "geometry": {"type": "Point", "coordinates": [2.1743345810427517, 48.82941998289845]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e6d6ccea8f9b1817d1210a38e7cf50d00acf2f39", "fields": {"departement": "92", "stop_lat": 48.778927187110924, "code_postal": "92071", "stop_lon": 2.284079714549488, "coord": [48.778927187110924, 2.284079714549488], "stop_id": 4834562, "stop_desc": "117 RUE HOUDAN - 92071", "stop_name": "CIMETIERE DE SCEAUX"}, "geometry": {"type": "Point", "coordinates": [2.284079714549488, 48.778927187110924]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cc9e28a717415266b21d882869743e6c2b219c0a", "fields": {"departement": "92", "stop_lat": 48.77909754800662, "code_postal": "92071", "stop_lon": 2.283168354791031, "coord": [48.77909754800662, 2.283168354791031], "stop_id": 4834563, "stop_desc": "FACE 131 RUE HOUDAN - 92071", "stop_name": "CIMETIERE DE SCEAUX"}, "geometry": {"type": "Point", "coordinates": [2.283168354791031, 48.77909754800662]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b1cba88a3e849da9e3b792a209e7a149dfc37083", "fields": {"departement": "92", "stop_lat": 48.77901994462124, "code_postal": "92071", "stop_lon": 2.2909610986263127, "coord": [48.77901994462124, 2.2909610986263127], "stop_id": 4834567, "stop_desc": "110 RUE HOUDAN - 92071", "stop_name": "FONTENAY - HOUDAN"}, "geometry": {"type": "Point", "coordinates": [2.2909610986263127, 48.77901994462124]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d415778be5e96ff071cc0add4506568b85ab7d53", "fields": {"departement": "92", "stop_lat": 48.777488007457364, "code_postal": "92071", "stop_lon": 2.3064113353773545, "coord": [48.777488007457364, 2.3064113353773545], "stop_id": 4834572, "stop_desc": "FACE 28 AVENUE PRESIDENT FRANKLIN ROOSEVELT - 92071", "stop_name": "LYCEE LAKANAL"}, "geometry": {"type": "Point", "coordinates": [2.3064113353773545, 48.777488007457364]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e1368dc791e33c6a6722214ff2a6979e6451f830", "fields": {"departement": "92", "stop_lat": 48.77700575939989, "code_postal": "92014", "stop_lon": 2.3226627033398617, "coord": [48.77700575939989, 2.3226627033398617], "stop_id": 4834576, "stop_desc": "FACE 35 BOULEVARD CARNOT - 92014", "stop_name": "GALOIS"}, "geometry": {"type": "Point", "coordinates": [2.3226627033398617, 48.77700575939989]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a2fd4bbea84fe6413b72e4b1cdd4a90288e00535", "fields": {"departement": "94", "stop_lat": 48.775559027184684, "code_postal": "94038", "stop_lon": 2.325736450284986, "coord": [48.775559027184684, 2.325736450284986], "stop_id": 4834578, "stop_desc": "65 AVENUE LARROUMES - 94038", "stop_name": "BARBUSSE - LARROUMES"}, "geometry": {"type": "Point", "coordinates": [2.325736450284986, 48.775559027184684]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eb31b3e6cf567abfbb5d2ea918400619a6207f1d", "fields": {"departement": "94", "stop_lat": 48.77827394172297, "code_postal": "94038", "stop_lon": 2.3350379495207525, "coord": [48.77827394172297, 2.3350379495207525], "stop_id": 4834582, "stop_desc": "FACE 13 RUE JEAN JAURES - 94038", "stop_name": "SOUS-PREFECTURE - EGLISE DE L'HAY-LES-ROSES"}, "geometry": {"type": "Point", "coordinates": [2.3350379495207525, 48.77827394172297]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "caee7871e6acba62e1d599b67c127944d5523ade", "fields": {"departement": "94", "stop_lat": 48.77838179451567, "code_postal": "94038", "stop_lon": 2.3348747498291758, "coord": [48.77838179451567, 2.3348747498291758], "stop_id": 4834583, "stop_desc": "7-9 RUE JEAN JAURES - 94038", "stop_name": "SOUS-PREFECTURE - EGLISE DE L'HAY-LES-ROSES"}, "geometry": {"type": "Point", "coordinates": [2.3348747498291758, 48.77838179451567]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3a20c7efaeba69cf6f2849a08159f8ef92bb07b3", "fields": {"departement": "94", "stop_lat": 48.77882222928945, "code_postal": "94038", "stop_lon": 2.3376490697971875, "coord": [48.77882222928945, 2.3376490697971875], "stop_id": 4834584, "stop_desc": "40 RUE JEAN JAURES - 94038", "stop_name": "MAIRIE DE L'HAY-LES-ROSES"}, "geometry": {"type": "Point", "coordinates": [2.3376490697971875, 48.77882222928945]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8516221edf51b14aefd451797ebd489ddfeb71f4", "fields": {"departement": "94", "stop_lat": 48.775811214791446, "code_postal": "94038", "stop_lon": 2.3401104509927557, "coord": [48.775811214791446, 2.3401104509927557], "stop_id": 4834587, "stop_desc": "137 AVENUE PAUL VAILLANT COUTURIER - 94038", "stop_name": "TOURNELLES"}, "geometry": {"type": "Point", "coordinates": [2.3401104509927557, 48.775811214791446]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bfc79b3320f510ccd27b6eacb3303ddd67b6d99b", "fields": {"departement": "94", "stop_lat": 48.771773690860535, "code_postal": "94021", "stop_lon": 2.3586985056609033, "coord": [48.771773690860535, 2.3586985056609033], "stop_id": 4834594, "stop_desc": "AVENUE DU PRESIDENT FRANKLIN ROOSEVELT - 94021", "stop_name": "CITE DES SORBIERS"}, "geometry": {"type": "Point", "coordinates": [2.3586985056609033, 48.771773690860535]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "089257e729441afb27f733b4b83ab82c1131da18", "fields": {"departement": "94", "stop_lat": 48.76938120248103, "code_postal": "94021", "stop_lon": 2.366515928750708, "coord": [48.76938120248103, 2.366515928750708], "stop_id": 4834599, "stop_desc": "89 AVENUE DU PRESIDENT FRANKLIN ROOSEVELT - 94021", "stop_name": "BRETAGNE"}, "geometry": {"type": "Point", "coordinates": [2.366515928750708, 48.76938120248103]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "11acc770220356ede55f564b59e94890b335fa62", "fields": {"departement": "94", "stop_lat": 48.76378088217269, "code_postal": "94073", "stop_lon": 2.3694086738771816, "coord": [48.76378088217269, 2.3694086738771816], "stop_id": 4834601, "stop_desc": "ESPLANADE AUGUSTE PERRET - 94073", "stop_name": "AUGUSTE PERRET"}, "geometry": {"type": "Point", "coordinates": [2.3694086738771816, 48.76378088217269]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "341e8125e7036750ebd0e3b53c1f03b278a5fcf8", "fields": {"departement": "94", "stop_lat": 48.75953299135263, "code_postal": "94021", "stop_lon": 2.3515698526455524, "coord": [48.75953299135263, 2.3515698526455524], "stop_id": 4834607, "stop_desc": "AVENUE DES TROIS MARCHES - 94021", "stop_name": "MAREE"}, "geometry": {"type": "Point", "coordinates": [2.3515698526455524, 48.75953299135263]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "44b57fba9e16ca720fdf0a8430c9b059687cf6ea", "fields": {"departement": "94", "stop_lat": 48.761178081740965, "code_postal": "94021", "stop_lon": 2.349177570277524, "coord": [48.761178081740965, 2.349177570277524], "stop_id": 4834608, "stop_desc": "AVENUE DU LYONNAIS - 94021", "stop_name": "VIADUC"}, "geometry": {"type": "Point", "coordinates": [2.349177570277524, 48.761178081740965]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ecb5d055464ff3482a28a1c7916d553b8a87ad04", "fields": {"departement": "94", "stop_lat": 48.76329818182903, "code_postal": "94021", "stop_lon": 2.35730825180501, "coord": [48.76329818182903, 2.35730825180501], "stop_id": 4834611, "stop_desc": "AVENUE DE LA CITE - 94021", "stop_name": "MARCHE INTERNATIONAL DE RUNGIS"}, "geometry": {"type": "Point", "coordinates": [2.35730825180501, 48.76329818182903]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f0a4ceec353619a8f9f270b7b42fb4e6742b5a74", "fields": {"departement": "94", "stop_lat": 48.75820119073097, "code_postal": "94065", "stop_lon": 2.361235040376766, "coord": [48.75820119073097, 2.361235040376766], "stop_id": 4834613, "stop_desc": "RUE DU JOUR - 94065", "stop_name": "RUE DE LA BRESSE"}, "geometry": {"type": "Point", "coordinates": [2.361235040376766, 48.75820119073097]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eff866d7cf2e98132ce16d3ff98e4cb2575db030", "fields": {"departement": "94", "stop_lat": 48.77140654784083, "code_postal": "94038", "stop_lon": 2.348867169554591, "coord": [48.77140654784083, 2.348867169554591], "stop_id": 4834616, "stop_desc": "FACE 92 AVENUE DU GENERAL LECLERC - 94038", "stop_name": "MAIRIE DE CHEVILLY-LARUE"}, "geometry": {"type": "Point", "coordinates": [2.348867169554591, 48.77140654784083]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "108f352900d8b9d9f1bcc10444a8ca0fd3bdee29", "fields": {"departement": "92", "stop_lat": 48.78002255065364, "code_postal": "92071", "stop_lon": 2.2815217887800636, "coord": [48.78002255065364, 2.2815217887800636], "stop_id": 4834625, "stop_desc": "AV DE LA GARE - 92071", "stop_name": "ROBINSON RER"}, "geometry": {"type": "Point", "coordinates": [2.2815217887800636, 48.78002255065364]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ce1c9b2379b82e3e5087bd9fe67662b9f3fb8a83", "fields": {"departement": "92", "stop_lat": 48.778927187110924, "code_postal": "92071", "stop_lon": 2.284079714549488, "coord": [48.778927187110924, 2.284079714549488], "stop_id": 4834626, "stop_desc": "117 RUE HOUDAN - 92071", "stop_name": "CIMETIERE DE SCEAUX"}, "geometry": {"type": "Point", "coordinates": [2.284079714549488, 48.778927187110924]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8230d8af2db83127d38ec93aea07c88adf4b876c", "fields": {"departement": "92", "stop_lat": 48.77875821431904, "code_postal": "92071", "stop_lon": 2.288268592816922, "coord": [48.77875821431904, 2.288268592816922], "stop_id": 4834628, "stop_desc": "83 RUE HOUDAN - 92071", "stop_name": "MAIRIE DE SCEAUX"}, "geometry": {"type": "Point", "coordinates": [2.288268592816922, 48.77875821431904]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b07d6a80d74b271d4f47cecc0856390f0d4454e4", "fields": {"departement": "92", "stop_lat": 48.777488007457364, "code_postal": "92071", "stop_lon": 2.3064113353773545, "coord": [48.777488007457364, 2.3064113353773545], "stop_id": 4834636, "stop_desc": "FACE 28 AVENUE PRESIDENT FRANKLIN ROOSEVELT - 92071", "stop_name": "LYCEE LAKANAL"}, "geometry": {"type": "Point", "coordinates": [2.3064113353773545, 48.777488007457364]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0abc7adbd631fd39ca2e6a67734c0082206499d9", "fields": {"departement": "92", "stop_lat": 48.779063025919605, "code_postal": "92014", "stop_lon": 2.316107036451739, "coord": [48.779063025919605, 2.316107036451739], "stop_id": 4834638, "stop_desc": "6 BOULEVARD CARNOT - 92014", "stop_name": "CONDORCET - MAIRIE-RER"}, "geometry": {"type": "Point", "coordinates": [2.316107036451739, 48.779063025919605]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "470e3f7c335c69d30b47c0a9b2b5fcf9e949515a", "fields": {"departement": "94", "stop_lat": 48.77562197572188, "code_postal": "94038", "stop_lon": 2.3260764080515264, "coord": [48.77562197572188, 2.3260764080515264], "stop_id": 4834643, "stop_desc": "74 AVENUE LARROUMES - 94038", "stop_name": "BARBUSSE - LARROUMES"}, "geometry": {"type": "Point", "coordinates": [2.3260764080515264, 48.77562197572188]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3b12d34d02e9f1d9ed79794ea26d2f5e4b16ce6a", "fields": {"departement": "94", "stop_lat": 48.77630541298781, "code_postal": "94038", "stop_lon": 2.330767932472282, "coord": [48.77630541298781, 2.330767932472282], "stop_id": 4834645, "stop_desc": "30 AVENUE LARROUMES - 94038", "stop_name": "SOUS-PREFECTURE - ROSERAIE"}, "geometry": {"type": "Point", "coordinates": [2.330767932472282, 48.77630541298781]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "65db90988c202fc491cca1dd4f5eb39ce5db1ca8", "fields": {"departement": "94", "stop_lat": 48.77195519735116, "code_postal": "94021", "stop_lon": 2.3439448491581363, "coord": [48.77195519735116, 2.3439448491581363], "stop_id": 4834653, "stop_desc": "80 AVENUE DU GENERAL DE GAULLE - 94021", "stop_name": "CIMETIERE COMMUNAL"}, "geometry": {"type": "Point", "coordinates": [2.3439448491581363, 48.77195519735116]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "da36742115b4e9e400832997401a3f7cfed9d2f7", "fields": {"departement": "94", "stop_lat": 48.77199845269846, "code_postal": "94021", "stop_lon": 2.358358650425997, "coord": [48.77199845269846, 2.358358650425997], "stop_id": 4834659, "stop_desc": "11 BIS AVENUE DU PRESIDENT FRANKLIN ROOSEVELT - 94021", "stop_name": "CITE DES SORBIERS"}, "geometry": {"type": "Point", "coordinates": [2.358358650425997, 48.77199845269846]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "59bf767306dad9e50d9bc8226890bbfbf5fe716d", "fields": {"departement": "94", "stop_lat": 48.76829332558924, "code_postal": "94021", "stop_lon": 2.3677934294587164, "coord": [48.76829332558924, 2.3677934294587164], "stop_id": 4834662, "stop_desc": "240 AVENUE DE STALINGRAD - 94021", "stop_name": "BRETAGNE"}, "geometry": {"type": "Point", "coordinates": [2.3677934294587164, 48.76829332558924]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6cf410adad9845d00b87ab1d4da2814f4a73e456", "fields": {"departement": "94", "stop_lat": 48.759448634048056, "code_postal": "94073", "stop_lon": 2.3693244252130907, "coord": [48.759448634048056, 2.3693244252130907], "stop_id": 4834666, "stop_desc": "ROUTE DE THIAIS - 94073", "stop_name": "LE COR DE CHASSE"}, "geometry": {"type": "Point", "coordinates": [2.3693244252130907, 48.759448634048056]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1f0319b55bf180c834fa6e3d1348359c884d2aee", "fields": {"departement": "94", "stop_lat": 48.759647325903956, "code_postal": "94021", "stop_lon": 2.3655724136005585, "coord": [48.759647325903956, 2.3655724136005585], "stop_id": 4834667, "stop_desc": "RUE DE THIAIS - 94021", "stop_name": "PORTE DE THIAIS"}, "geometry": {"type": "Point", "coordinates": [2.3655724136005585, 48.759647325903956]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9da529c0af356c1ce9fc2e1f05973788dc4e5541", "fields": {"departement": "94", "stop_lat": 48.76004202458944, "code_postal": "94073", "stop_lon": 2.3686722414037877, "coord": [48.76004202458944, 2.3686722414037877], "stop_id": 4834671, "stop_desc": "AVENUE DE FONTAINEBLEAU - 94073", "stop_name": "LE COR DE CHASSE - LA BELLE EPINE"}, "geometry": {"type": "Point", "coordinates": [2.3686722414037877, 48.76004202458944]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8dc7258e5d3686fda67f817f4fa3a84dbf3ef68e", "fields": {"departement": "94", "stop_lat": 48.77140654784083, "code_postal": "94038", "stop_lon": 2.348867169554591, "coord": [48.77140654784083, 2.348867169554591], "stop_id": 4834673, "stop_desc": "FACE 92 AVENUE DU GENERAL LECLERC - 94038", "stop_name": "MAIRIE DE CHEVILLY-LARUE"}, "geometry": {"type": "Point", "coordinates": [2.348867169554591, 48.77140654784083]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ba6a9825f8664f0074b9e2c0bd65e3514c5b00cb", "fields": {"departement": "94", "stop_lat": 48.77215293268769, "code_postal": "94038", "stop_lon": 2.3439720705528613, "coord": [48.77215293268769, 2.3439720705528613], "stop_id": 4834674, "stop_desc": "FACE 80 AVENUE DU GENERAL LECLERC - 94038", "stop_name": "CIMETIERE COMMUNAL"}, "geometry": {"type": "Point", "coordinates": [2.3439720705528613, 48.77215293268769]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ff6dcf094367282e1f5f9e3ba559332f248b9bd8", "fields": {"departement": "92", "stop_lat": 48.776788577724375, "code_postal": "92014", "stop_lon": 2.3135377182605867, "coord": [48.776788577724375, 2.3135377182605867], "stop_id": 4834679, "stop_desc": "8 AVENUE VICTOR HUGO - 92014", "stop_name": "PETIT CHAMBORD"}, "geometry": {"type": "Point", "coordinates": [2.3135377182605867, 48.776788577724375]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "de0c648623797eb0322af47c3e11631f7496ec50", "fields": {"departement": "75", "stop_lat": 48.82946258331531, "code_postal": "75113", "stop_lon": 2.3749354044210107, "coord": [48.82946258331531, 2.3749354044210107], "stop_id": 4843406, "stop_desc": "7 RUE DE TOLBIAC - 75113", "stop_name": "BIBLIOTHEQUE CHEVALERET"}, "geometry": {"type": "Point", "coordinates": [2.3749354044210107, 48.82946258331531]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "26d7ac6087a05a190c2b97b3542a77154005dd3b", "fields": {"departement": "75", "stop_lat": 48.82461782113403, "code_postal": "75113", "stop_lon": 2.3762386106788336, "coord": [48.82461782113403, 2.3762386106788336], "stop_id": 4843412, "stop_desc": "6 RUE DE PATAY - 75113", "stop_name": "REGNAULT"}, "geometry": {"type": "Point", "coordinates": [2.3762386106788336, 48.82461782113403]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "075a6785f0e5c0b555597c473ebfaa7b66a7368d", "fields": {"departement": "94", "stop_lat": 48.81682348299316, "code_postal": "94041", "stop_lon": 2.3819488156834394, "coord": [48.81682348299316, 2.3819488156834394], "stop_id": 4843417, "stop_desc": "82 AVENUE DANIELLE CASANOVA - 94041", "stop_name": "LOUIS BERTRAND"}, "geometry": {"type": "Point", "coordinates": [2.3819488156834394, 48.81682348299316]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cf90d04163541e42798a22a55a0db3dd2c27ce70", "fields": {"departement": "94", "stop_lat": 48.81785724824075, "code_postal": "94041", "stop_lon": 2.381473358110705, "coord": [48.81785724824075, 2.381473358110705], "stop_id": 4843418, "stop_desc": "35 AVENUE PIERRE SEMARD - 94041", "stop_name": "LOUIS BERTRAND"}, "geometry": {"type": "Point", "coordinates": [2.381473358110705, 48.81785724824075]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a75097e7d51178d692f3d03dcee13155ff0e0d27", "fields": {"departement": "94", "stop_lat": 48.80620720964205, "code_postal": "94041", "stop_lon": 2.3863346989043794, "coord": [48.80620720964205, 2.3863346989043794], "stop_id": 4843458, "stop_desc": "198 RUE MARCEL HARTMANN - 94041", "stop_name": "MAURICE COUTANT"}, "geometry": {"type": "Point", "coordinates": [2.3863346989043794, 48.80620720964205]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "836f7147ee9d322445e08e6a3074896ac70dd66d", "fields": {"departement": "94", "stop_lat": 48.80408674502772, "code_postal": "94041", "stop_lon": 2.384713541399737, "coord": [48.80408674502772, 2.384713541399737], "stop_id": 4843461, "stop_desc": "13 RUE AMEDEE HUON - 94041", "stop_name": "SOLIDARITE - AMEDEE HUON"}, "geometry": {"type": "Point", "coordinates": [2.384713541399737, 48.80408674502772]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f4711aaa831d7a648195bb874cd40dccb1913926", "fields": {"departement": "94", "stop_lat": 48.789533221651986, "code_postal": "94081", "stop_lon": 2.3898691966409245, "coord": [48.789533221651986, 2.3898691966409245], "stop_id": 4843475, "stop_desc": "39 RUE DE L'ABBE ROGER DERRY - 94081", "stop_name": "HOTEL DE VILLE DE VITRY - R.DERRY"}, "geometry": {"type": "Point", "coordinates": [2.3898691966409245, 48.789533221651986]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3d7ebe0ffe836e042dce562fa53747138aedf3cd", "fields": {"departement": "94", "stop_lat": 48.78782691042999, "code_postal": "94081", "stop_lon": 2.3866165738597136, "coord": [48.78782691042999, 2.3866165738597136], "stop_id": 4843477, "stop_desc": "AVENUE LUCIEN FRANCAIS - 94081", "stop_name": "EDOUARD TIL"}, "geometry": {"type": "Point", "coordinates": [2.3866165738597136, 48.78782691042999]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7915094894d7d5b058e8423c585f78e4774952db", "fields": {"departement": "94", "stop_lat": 48.78179914186525, "code_postal": "94081", "stop_lon": 2.378341748381967, "coord": [48.78179914186525, 2.378341748381967], "stop_id": 4843516, "stop_desc": "2 RUE VERTE - 94081", "stop_name": "GROUPE SCOLAIRE JEAN - JACQUES ROUSSEAU"}, "geometry": {"type": "Point", "coordinates": [2.378341748381967, 48.78179914186525]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "903b8be1bc85a5f268ef4e771ee26ff654e42faa", "fields": {"departement": "94", "stop_lat": 48.78004783887803, "code_postal": "94081", "stop_lon": 2.37421955421806, "coord": [48.78004783887803, 2.37421955421806], "stop_id": 4843519, "stop_desc": "RUE VERTE - 94081", "stop_name": "JULIAN GRIMAU - VOIE VERTE"}, "geometry": {"type": "Point", "coordinates": [2.37421955421806, 48.78004783887803]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d2a00375d8213df960a76f6b7a70c2e6dd260ade", "fields": {"departement": "94", "stop_lat": 48.77696424758717, "code_postal": "94081", "stop_lon": 2.3764340329706126, "coord": [48.77696424758717, 2.3764340329706126], "stop_id": 4843520, "stop_desc": "118 RUE PAUL ARMANGOT - 94081", "stop_name": "PAUL ARMANGOT"}, "geometry": {"type": "Point", "coordinates": [2.3764340329706126, 48.77696424758717]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6acc23e62706c13430797dc154bd370e64a5240a", "fields": {"departement": "94", "stop_lat": 48.80388014439058, "code_postal": "94081", "stop_lon": 2.384414014541497, "coord": [48.80388014439058, 2.384414014541497], "stop_id": 4843529, "stop_desc": "RUE GAGNEE - 94081", "stop_name": "SOLIDARITE - AMEDEE HUON"}, "geometry": {"type": "Point", "coordinates": [2.384414014541497, 48.80388014439058]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e046e7081b8c01d453e638b5ae00fa4d63a17e04", "fields": {"departement": "94", "stop_lat": 48.811510913345934, "code_postal": "94041", "stop_lon": 2.3840671320019258, "coord": [48.811510913345934, 2.3840671320019258], "stop_id": 4843813, "stop_desc": "7 PLACE DE LA REPUBLIQUE - 94041", "stop_name": "MAIRIE D'IVRY-METRO"}, "geometry": {"type": "Point", "coordinates": [2.3840671320019258, 48.811510913345934]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3336cfcbe3d8e0cbe5491ac833a77cab8f210572", "fields": {"departement": "94", "stop_lat": 48.807943176128475, "code_postal": "94041", "stop_lon": 2.383016149793749, "coord": [48.807943176128475, 2.383016149793749], "stop_id": 4843815, "stop_desc": "134 RUE MARCEL HARTMANN - 94041", "stop_name": "LUCIEN SELVA"}, "geometry": {"type": "Point", "coordinates": [2.383016149793749, 48.807943176128475]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "10e42ea90b9b2bb1e323e8267719ecde72394ccf", "fields": {"departement": "94", "stop_lat": 48.80620720964205, "code_postal": "94041", "stop_lon": 2.3863346989043794, "coord": [48.80620720964205, 2.3863346989043794], "stop_id": 4843816, "stop_desc": "198 RUE MARCEL HARTMANN - 94041", "stop_name": "MAURICE COUTANT"}, "geometry": {"type": "Point", "coordinates": [2.3863346989043794, 48.80620720964205]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "47f1232365886dfecf1416246dab431cc002ec6e", "fields": {"departement": "94", "stop_lat": 48.7932529526218, "code_postal": "94081", "stop_lon": 2.392648077289847, "coord": [48.7932529526218, 2.392648077289847], "stop_id": 4843822, "stop_desc": "FACE 2 RUE DU GENERAL DE GAULLE - 94081", "stop_name": "EXPLORADOME"}, "geometry": {"type": "Point", "coordinates": [2.392648077289847, 48.7932529526218]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a5ae0da2f2e73082424134436bafb1d84675ce7a", "fields": {"departement": "93", "stop_lat": 48.90698595535943, "code_postal": "93008", "stop_lon": 2.449020887590383, "coord": [48.90698595535943, 2.449020887590383], "stop_id": 4889457, "stop_desc": "PISTE GARE ROUTIERE - 93008", "stop_name": "BOBIGNY - PABLO PICASSO"}, "geometry": {"type": "Point", "coordinates": [2.449020887590383, 48.90698595535943]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "214d339c4bddb0357c67f756ca76cf62cc5b5ce7", "fields": {"departement": "92", "stop_lat": 48.87060156604863, "code_postal": "92063", "stop_lon": 2.1961395093841154, "coord": [48.87060156604863, 2.1961395093841154], "stop_id": 4024051, "stop_desc": "83 AVENUE DU PRESIDENT POMPIDOU - 92063", "stop_name": "LA PAIX"}, "geometry": {"type": "Point", "coordinates": [2.1961395093841154, 48.87060156604863]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a7583b8cee132468cd077f0c8dcdf814d90712c5", "fields": {"departement": "92", "stop_lat": 48.868097614319126, "code_postal": "92063", "stop_lon": 2.1991434150061457, "coord": [48.868097614319126, 2.1991434150061457], "stop_id": 4024055, "stop_desc": "127 AVENUE DU PRESIDENT POMPIDOU - 92063", "stop_name": "AVENUE DU MONT VALERIEN"}, "geometry": {"type": "Point", "coordinates": [2.1991434150061457, 48.868097614319126]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "80cd571919240c0b11add73e78a4cc2df6b73d4b", "fields": {"departement": "92", "stop_lat": 48.86064558670998, "code_postal": "92063", "stop_lon": 2.190391217473671, "coord": [48.86064558670998, 2.190391217473671], "stop_id": 4024064, "stop_desc": "56 RUE DU 19 JANVIER - 92063", "stop_name": "DUMOURIEZ"}, "geometry": {"type": "Point", "coordinates": [2.190391217473671, 48.86064558670998]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "08fd9645a7c7a7cb08a9af6efcc657cd2a525161", "fields": {"departement": "92", "stop_lat": 48.85937806188428, "code_postal": "92063", "stop_lon": 2.190149631508314, "coord": [48.85937806188428, 2.190149631508314], "stop_id": 4024067, "stop_desc": "57-59 RUE DU 19 JANVIER - 92063", "stop_name": "HENRI REGNAULT"}, "geometry": {"type": "Point", "coordinates": [2.190149631508314, 48.85937806188428]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ae6cc03de2de895f4c88553d355d8fffa90ae605", "fields": {"departement": "92", "stop_lat": 48.903608533761805, "code_postal": "92050", "stop_lon": 2.193541243083144, "coord": [48.903608533761805, 2.193541243083144], "stop_id": 4024078, "stop_desc": "FACE 116 BD DE LA SEINE - 92050", "stop_name": "BOULEVARD DE LA SEINE"}, "geometry": {"type": "Point", "coordinates": [2.193541243083144, 48.903608533761805]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6bf8c4516b2bfead56c8af5623e0e046e3be6f28", "fields": {"departement": "92", "stop_lat": 48.89750004786438, "code_postal": "92050", "stop_lon": 2.195848169783952, "coord": [48.89750004786438, 2.195848169783952], "stop_id": 4024085, "stop_desc": "18 BOULEVARD DE LA SEINE - 92050", "stop_name": "GENERAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.195848169783952, 48.89750004786438]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3304ab7c75cd4ab5924cfa19d1337a050b4fe146", "fields": {"departement": "92", "stop_lat": 48.89605349252947, "code_postal": "92050", "stop_lon": 2.196165618179821, "coord": [48.89605349252947, 2.196165618179821], "stop_id": 4024086, "stop_desc": "3 BD DE LA SEINE - 92050", "stop_name": "NANTERRE - VILLE RER - FAIDHERBE"}, "geometry": {"type": "Point", "coordinates": [2.196165618179821, 48.89605349252947]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "33f5429a303209866d10460b7f6ae4993f7fa010", "fields": {"departement": "92", "stop_lat": 48.878125341421985, "code_postal": "92050", "stop_lon": 2.205193796553508, "coord": [48.878125341421985, 2.205193796553508], "stop_id": 4024098, "stop_desc": "116 RUE DE GARCHES - 92050", "stop_name": "LES CHAILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.205193796553508, 48.878125341421985]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fd490921f874818998b8f698dba470274c3a41e1", "fields": {"departement": "92", "stop_lat": 48.87588261496247, "code_postal": "92063", "stop_lon": 2.2008530750060524, "coord": [48.87588261496247, 2.2008530750060524], "stop_id": 4024100, "stop_desc": "4 RUE GALLIENI - 92063", "stop_name": "EUGENE SUE"}, "geometry": {"type": "Point", "coordinates": [2.2008530750060524, 48.87588261496247]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "752853baef5ee3c00dd68d859fcd74013edc7fe0", "fields": {"departement": "92", "stop_lat": 48.887476445957894, "code_postal": "92062", "stop_lon": 2.2373871042096263, "coord": [48.887476445957894, 2.2373871042096263], "stop_id": 4024112, "stop_desc": "FACE 23 R LOUIS POUEY - 92062", "stop_name": "BOIELDIEU"}, "geometry": {"type": "Point", "coordinates": [2.2373871042096263, 48.887476445957894]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "281bb1d945acb4de04b173d4fb04749e92f5517c", "fields": {"departement": "92", "stop_lat": 48.88461955721549, "code_postal": "92062", "stop_lon": 2.2386463359117337, "coord": [48.88461955721549, 2.2386463359117337], "stop_id": 4024113, "stop_desc": "110-112 R DE LA REPUBLIQUE - 92062", "stop_name": "MAIRIE DE PUTEAUX"}, "geometry": {"type": "Point", "coordinates": [2.2386463359117337, 48.88461955721549]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9358c247fc0c24da00931c2dbeb0941567cbb98b", "fields": {"departement": "92", "stop_lat": 48.883969094999905, "code_postal": "92062", "stop_lon": 2.2346411462534888, "coord": [48.883969094999905, 2.2346411462534888], "stop_id": 4024115, "stop_desc": "FACE145BIS RUE DE LA REPUBLIQUE - 92062", "stop_name": "GARE DE PUTEAUX"}, "geometry": {"type": "Point", "coordinates": [2.2346411462534888, 48.883969094999905]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "81a0e4aee68abe84c6f41ee95c433d211cce2dc5", "fields": {"departement": "92", "stop_lat": 48.88371676955176, "code_postal": "92062", "stop_lon": 2.233851265998093, "coord": [48.88371676955176, 2.233851265998093], "stop_id": 4024116, "stop_desc": "RUE DE LA REPUBLIQUE - 92062", "stop_name": "GARE DE PUTEAUX"}, "geometry": {"type": "Point", "coordinates": [2.233851265998093, 48.88371676955176]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a503e0c5ef7650f1c2d96ca539c2423adb88c14e", "fields": {"departement": "92", "stop_lat": 48.87862472854438, "code_postal": "92050", "stop_lon": 2.20986620995394, "coord": [48.87862472854438, 2.20986620995394], "stop_id": 4024126, "stop_desc": "17 RUE DE GARCHES - 92050", "stop_name": "PLAIDEURS - VAILLANT-COUTURIER"}, "geometry": {"type": "Point", "coordinates": [2.20986620995394, 48.87862472854438]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9a51f0d1c65cbbc6f6f6494a5080b162b9de0900", "fields": {"departement": "92", "stop_lat": 48.876664959562326, "code_postal": "92063", "stop_lon": 2.2012461530238006, "coord": [48.876664959562326, 2.2012461530238006], "stop_id": 4024129, "stop_desc": "FACE 8 RUE EUGENE SUE - 92063", "stop_name": "EUGENE SUE"}, "geometry": {"type": "Point", "coordinates": [2.2012461530238006, 48.876664959562326]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7331a345d22c34dc4520fdf3cb61ea8924a53c67", "fields": {"departement": "92", "stop_lat": 48.87657514902867, "code_postal": "92063", "stop_lon": 2.2013008901085636, "coord": [48.87657514902867, 2.2013008901085636], "stop_id": 4024130, "stop_desc": "10-12 RUE EUGENE SUE - 92063", "stop_name": "EUGENE SUE"}, "geometry": {"type": "Point", "coordinates": [2.2013008901085636, 48.87657514902867]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4f12f5c588f02cb6631b20c8f815c1f7fc6bfb06", "fields": {"departement": "92", "stop_lat": 48.877022210574445, "code_postal": "92063", "stop_lon": 2.1992967712593696, "coord": [48.877022210574445, 2.1992967712593696], "stop_id": 4024132, "stop_desc": "114 RUE DANTON - 92063", "stop_name": "VOLTAIRE"}, "geometry": {"type": "Point", "coordinates": [2.1992967712593696, 48.877022210574445]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d0b1aed3b38e81d8afef1e6f9c81160fb4fbcd3c", "fields": {"departement": "92", "stop_lat": 48.87303032905678, "code_postal": "92063", "stop_lon": 2.1905060055108567, "coord": [48.87303032905678, 2.1905060055108567], "stop_id": 4024136, "stop_desc": "22 AVENUE DU PRESIDENT POMPIDOU - 92063", "stop_name": "EDMOND ROSTAND"}, "geometry": {"type": "Point", "coordinates": [2.1905060055108567, 48.87303032905678]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9580a86e8ec9c79cc84c319f37b716dc03c6788e", "fields": {"departement": "92", "stop_lat": 48.871775678404425, "code_postal": "92063", "stop_lon": 2.1934387402330136, "coord": [48.871775678404425, 2.1934387402330136], "stop_id": 4024138, "stop_desc": "FACE 45 AVENUE DU PRESIDENT POMPIDOU - 92063", "stop_name": "SAINT-EXUPERY"}, "geometry": {"type": "Point", "coordinates": [2.1934387402330136, 48.871775678404425]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "73e491b80ab643ed679fdcd4c9073642344d82b3", "fields": {"departement": "92", "stop_lat": 48.87044862023422, "code_postal": "92063", "stop_lon": 2.1960036880384797, "coord": [48.87044862023422, 2.1960036880384797], "stop_id": 4024140, "stop_desc": "FACE 83 AVENUE DU PRESIDENT POMPIDOU - 92063", "stop_name": "LA PAIX"}, "geometry": {"type": "Point", "coordinates": [2.1960036880384797, 48.87044862023422]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "064fc79c3619116e21f95e731b1c6bea9bc39eeb", "fields": {"departement": "92", "stop_lat": 48.85937806188428, "code_postal": "92063", "stop_lon": 2.190149631508314, "coord": [48.85937806188428, 2.190149631508314], "stop_id": 4024157, "stop_desc": "57-59 RUE DU 19 JANVIER - 92063", "stop_name": "HENRI REGNAULT"}, "geometry": {"type": "Point", "coordinates": [2.190149631508314, 48.85937806188428]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6e46d26e82e2a2f740b5f39a6f746756b58ea1b7", "fields": {"departement": "92", "stop_lat": 48.86174403611013, "code_postal": "92063", "stop_lon": 2.1848169230244867, "coord": [48.86174403611013, 2.1848169230244867], "stop_id": 4024158, "stop_desc": "187 ROUTE DE L'EMPEREUR - 92063", "stop_name": "OTIS MYGATT"}, "geometry": {"type": "Point", "coordinates": [2.1848169230244867, 48.86174403611013]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b695530a2f5b91f0b63e9286db11415c4a90455c", "fields": {"departement": "92", "stop_lat": 48.862121953901166, "code_postal": "92063", "stop_lon": 2.171684610501522, "coord": [48.862121953901166, 2.171684610501522], "stop_id": 4024162, "stop_desc": "2 AV DE LA CHATAIGNERAIE - 92063", "stop_name": "SAINT CUCUFA"}, "geometry": {"type": "Point", "coordinates": [2.171684610501522, 48.862121953901166]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0ecec3bd12ea0a24e98e28ffc8d854f8c731217e", "fields": {"departement": "92", "stop_lat": 48.888752123592425, "code_postal": "92062", "stop_lon": 2.2367849896114063, "coord": [48.888752123592425, 2.2367849896114063], "stop_id": 4024167, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 92062", "stop_name": "LES BOUVETS"}, "geometry": {"type": "Point", "coordinates": [2.2367849896114063, 48.888752123592425]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "16bb666458ed15d1d3342172b6aec48bf3dcc14d", "fields": {"departement": "92", "stop_lat": 48.875671203780556, "code_postal": "92073", "stop_lon": 2.2316191674618904, "coord": [48.875671203780556, 2.2316191674618904], "stop_id": 4024178, "stop_desc": "97 RUE DE VERDUN - 92073", "stop_name": "POMPIDOU"}, "geometry": {"type": "Point", "coordinates": [2.2316191674618904, 48.875671203780556]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "79075602630af7ff9fbb35b6be19ade44c2bbbdb", "fields": {"departement": "92", "stop_lat": 48.870508785342544, "code_postal": "92073", "stop_lon": 2.2275289311437714, "coord": [48.870508785342544, 2.2275289311437714], "stop_id": 4024180, "stop_desc": "RUE DE VERDUN - 92073", "stop_name": "HENRI IV"}, "geometry": {"type": "Point", "coordinates": [2.2275289311437714, 48.870508785342544]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c36dc5da66bc8b9b8b85e89bbef16d881f4ce853", "fields": {"departement": "92", "stop_lat": 48.887476445957894, "code_postal": "92062", "stop_lon": 2.2373871042096263, "coord": [48.887476445957894, 2.2373871042096263], "stop_id": 4024199, "stop_desc": "FACE 23 R LOUIS POUEY - 92062", "stop_name": "BOIELDIEU"}, "geometry": {"type": "Point", "coordinates": [2.2373871042096263, 48.887476445957894]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "99e3f2d654ad7739cb3e9689a51fdc95fd367cdd", "fields": {"departement": "92", "stop_lat": 48.88097822577583, "code_postal": "92062", "stop_lon": 2.2368545622460583, "coord": [48.88097822577583, 2.2368545622460583], "stop_id": 4024202, "stop_desc": "29 R EUGENE EICHENBERGER - 92062", "stop_name": "WALLACE - JAURES"}, "geometry": {"type": "Point", "coordinates": [2.2368545622460583, 48.88097822577583]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e1c6bde7c3afd5725c93419c2d2035ac6d7792b0", "fields": {"departement": "92", "stop_lat": 48.875671203780556, "code_postal": "92073", "stop_lon": 2.2316191674618904, "coord": [48.875671203780556, 2.2316191674618904], "stop_id": 4024206, "stop_desc": "97 RUE DE VERDUN - 92073", "stop_name": "POMPIDOU"}, "geometry": {"type": "Point", "coordinates": [2.2316191674618904, 48.875671203780556]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0de4822038d8dc31257e959435f5d9b4695c7acf", "fields": {"departement": "92", "stop_lat": 48.87200998044218, "code_postal": "92073", "stop_lon": 2.2278663582668323, "coord": [48.87200998044218, 2.2278663582668323], "stop_id": 4024208, "stop_desc": "2 RUE D'ESTIENNE D'ORVES - 92073", "stop_name": "D'ESTIENNE D'ORVES"}, "geometry": {"type": "Point", "coordinates": [2.2278663582668323, 48.87200998044218]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9a3ce479b048464f0ec0cea1939dd46f9e8c03de", "fields": {"departement": "92", "stop_lat": 48.86140775640603, "code_postal": "92073", "stop_lon": 2.212496564318806, "coord": [48.86140775640603, 2.212496564318806], "stop_id": 4024219, "stop_desc": "CARREFOUR DE LA CROIX DU ROY - 92073", "stop_name": "CROIX DU ROY"}, "geometry": {"type": "Point", "coordinates": [2.212496564318806, 48.86140775640603]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "69e2bc186e6a3a24a2bbc72869d619dcb16238c2", "fields": {"departement": "92", "stop_lat": 48.86495981904738, "code_postal": "92063", "stop_lon": 2.2060310416999966, "coord": [48.86495981904738, 2.2060310416999966], "stop_id": 4024224, "stop_desc": "183 AVENUE JEAN JAURES - 92063", "stop_name": "PLACE DE LA PAIX"}, "geometry": {"type": "Point", "coordinates": [2.2060310416999966, 48.86495981904738]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c9aeb07c8b4173928527ac6439e3883943e1bb0a", "fields": {"departement": "92", "stop_lat": 48.867547720016134, "code_postal": "92063", "stop_lon": 2.197714464943088, "coord": [48.867547720016134, 2.197714464943088], "stop_id": 4024225, "stop_desc": "FACE 112 AVENUE DU 18 JUIN 1940 - 92063", "stop_name": "LIEUTENANT-COLONEL DE MONTBRISON"}, "geometry": {"type": "Point", "coordinates": [2.197714464943088, 48.867547720016134]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f665a4c6af742687e803fe24ebd213a5fb41dafe", "fields": {"departement": "92", "stop_lat": 48.867126364695906, "code_postal": "92063", "stop_lon": 2.198614709336574, "coord": [48.867126364695906, 2.198614709336574], "stop_id": 4024226, "stop_desc": "122 AVENUE DU 18 JUIN 1940 - 92063", "stop_name": "LIEUTENANT-COLONEL DE MONTBRISON"}, "geometry": {"type": "Point", "coordinates": [2.198614709336574, 48.867126364695906]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d8254079ad5dfdc4c95910ceb510fc5287a3560e", "fields": {"departement": "92", "stop_lat": 48.86817044263968, "code_postal": "92063", "stop_lon": 2.192358886539712, "coord": [48.86817044263968, 2.192358886539712], "stop_id": 4024227, "stop_desc": "51 AV DU 18 JUIN 1940 - 92063", "stop_name": "DUNANT"}, "geometry": {"type": "Point", "coordinates": [2.192358886539712, 48.86817044263968]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "643dfbb97dc0454fc8bea50fd4ca974a9935ceb2", "fields": {"departement": "92", "stop_lat": 48.873226156400705, "code_postal": "92063", "stop_lon": 2.181922020584739, "coord": [48.873226156400705, 2.181922020584739], "stop_id": 4024234, "stop_desc": "FACE 1 PLACE RICHELIEU - 92063", "stop_name": "PLACE RICHELIEU"}, "geometry": {"type": "Point", "coordinates": [2.181922020584739, 48.873226156400705]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3a077401641874cd466951e1c50162f3b9069462", "fields": {"departement": "92", "stop_lat": 48.876609766047764, "code_postal": "92063", "stop_lon": 2.185318228544712, "coord": [48.876609766047764, 2.185318228544712], "stop_id": 4024235, "stop_desc": "FACE 32 RUE DE LA LIBERATION - 92063", "stop_name": "HOPITAL STELL"}, "geometry": {"type": "Point", "coordinates": [2.185318228544712, 48.876609766047764]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e67ada8c59aceeb4059b02c4ce614f70cdcf4d7a", "fields": {"departement": "92", "stop_lat": 48.87818488190759, "code_postal": "92063", "stop_lon": 2.1801903124346387, "coord": [48.87818488190759, 2.1801903124346387], "stop_id": 4024237, "stop_desc": "8 BOULEVARD DU MARECHAL FOCH - 92063", "stop_name": "MAIRIE DE RUEIL"}, "geometry": {"type": "Point", "coordinates": [2.1801903124346387, 48.87818488190759]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "45b1e96a5b6bad720449f545f6dfa4d9e811578d", "fields": {"departement": "92", "stop_lat": 48.87616619032298, "code_postal": "92062", "stop_lon": 2.2323947983183468, "coord": [48.87616619032298, 2.2323947983183468], "stop_id": 4024252, "stop_desc": "82 RUE DE VERDUN - 92062", "stop_name": "POMPIDOU"}, "geometry": {"type": "Point", "coordinates": [2.2323947983183468, 48.87616619032298]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d85da6250163550634935c2b78102dd54d56680e", "fields": {"departement": "92", "stop_lat": 48.87855933518828, "code_postal": "92062", "stop_lon": 2.235305896379359, "coord": [48.87855933518828, 2.235305896379359], "stop_id": 4024254, "stop_desc": "140 RUE DE VERDUN - 92062", "stop_name": "RESIDENCE VERDUN"}, "geometry": {"type": "Point", "coordinates": [2.235305896379359, 48.87855933518828]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a05a55d412ead0aba9b83551d4458e2b2caf9698", "fields": {"departement": "92", "stop_lat": 48.88309070776672, "code_postal": "92062", "stop_lon": 2.2374228077459213, "coord": [48.88309070776672, 2.2374228077459213], "stop_id": 4024256, "stop_desc": "30 RUE LUCIEN VOILIN - 92062", "stop_name": "MAIRIE - EGLISE"}, "geometry": {"type": "Point", "coordinates": [2.2374228077459213, 48.88309070776672]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2f9e0e8fcd1a78b9e8f4c9e59a5ad89d84f9e593", "fields": {"departement": "92", "stop_lat": 48.88422463646071, "code_postal": "92062", "stop_lon": 2.239273946170175, "coord": [48.88422463646071, 2.239273946170175], "stop_id": 4024261, "stop_desc": "FACE 14 RUE ANATOLE FRANCE - 92062", "stop_name": "MAIRIE - ANATOLE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.239273946170175, 48.88422463646071]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "615ba7ce09b86e7dfe55a73b59dbc491983aeba9", "fields": {"departement": "92", "stop_lat": 48.875671203780556, "code_postal": "92073", "stop_lon": 2.2316191674618904, "coord": [48.875671203780556, 2.2316191674618904], "stop_id": 4024265, "stop_desc": "97 RUE DE VERDUN - 92073", "stop_name": "POMPIDOU"}, "geometry": {"type": "Point", "coordinates": [2.2316191674618904, 48.875671203780556]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d721e31f8d73023076ec7b8e1c05e76568f3a396", "fields": {"departement": "92", "stop_lat": 48.871360091607606, "code_postal": "92073", "stop_lon": 2.2248568272971028, "coord": [48.871360091607606, 2.2248568272971028], "stop_id": 4024268, "stop_desc": "3 BIS RUE CARNOT - 92073", "stop_name": "MAIRIE DE SURESNES - CARNOT"}, "geometry": {"type": "Point", "coordinates": [2.2248568272971028, 48.871360091607606]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3e7397460363638d06e3d3265032510aaa727076", "fields": {"departement": "92", "stop_lat": 48.869309974761926, "code_postal": "92073", "stop_lon": 2.2237986419615177, "coord": [48.869309974761926, 2.2237986419615177], "stop_id": 4024269, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 92073", "stop_name": "SURESNES DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.2237986419615177, 48.869309974761926]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "47b7ccf34668413dc4c55552eeb0473ee855ece2", "fields": {"departement": "92", "stop_lat": 48.86805906191408, "code_postal": "92073", "stop_lon": 2.222057619036776, "coord": [48.86805906191408, 2.222057619036776], "stop_id": 4024270, "stop_desc": "FACE 49 BOULEVARD HENRI SELLIER - 92073", "stop_name": "LONGCHAMP"}, "geometry": {"type": "Point", "coordinates": [2.222057619036776, 48.86805906191408]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "49e3d0ab677a30f24dd58690427684aa7265c508", "fields": {"departement": "92", "stop_lat": 48.871637489328236, "code_postal": "92063", "stop_lon": 2.1835344210818635, "coord": [48.871637489328236, 2.1835344210818635], "stop_id": 4024280, "stop_desc": "17 BOULEVARD RICHELIEU - 92063", "stop_name": "ZURICH"}, "geometry": {"type": "Point", "coordinates": [2.1835344210818635, 48.871637489328236]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1fe54be5a4bb4447ab12ce33f1713d31bf38ede2", "fields": {"departement": "92", "stop_lat": 48.876609766047764, "code_postal": "92063", "stop_lon": 2.185318228544712, "coord": [48.876609766047764, 2.185318228544712], "stop_id": 4024282, "stop_desc": "FACE 32 RUE DE LA LIBERATION - 92063", "stop_name": "HOPITAL STELL"}, "geometry": {"type": "Point", "coordinates": [2.185318228544712, 48.876609766047764]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ee1d26734cab50a4d6ce1ce184e3721a3a86cffb", "fields": {"departement": "92", "stop_lat": 48.887224146943645, "code_postal": "92063", "stop_lon": 2.172122297771493, "coord": [48.887224146943645, 2.172122297771493], "stop_id": 4024287, "stop_desc": "GARE ROUTIERE QUAI N 4 - 92063", "stop_name": "RUEIL-MALMAISON RER"}, "geometry": {"type": "Point", "coordinates": [2.172122297771493, 48.887224146943645]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c1f44ebc37e1b5878c804ea8725c62f20fb37031", "fields": {"departement": "92", "stop_lat": 48.885309194492216, "code_postal": "92051", "stop_lon": 2.2597542578379075, "coord": [48.885309194492216, 2.2597542578379075], "stop_id": 4024288, "stop_desc": "176 AVENUE CHARLES DE GAULLE - 92051", "stop_name": "PONT DE NEUILLY-METRO"}, "geometry": {"type": "Point", "coordinates": [2.2597542578379075, 48.885309194492216]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0c1ef72e69eb39ce45c96fd73257cbc5fba2d534", "fields": {"departement": "92", "stop_lat": 48.884961254395016, "code_postal": "92062", "stop_lon": 2.250433527024066, "coord": [48.884961254395016, 2.250433527024066], "stop_id": 4024292, "stop_desc": "58 QUAI DE DION BOUTON - 92062", "stop_name": "BELLINI"}, "geometry": {"type": "Point", "coordinates": [2.250433527024066, 48.884961254395016]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8a923d82071ad1e4e931e3462a11696b97ffc837", "fields": {"departement": "92", "stop_lat": 48.88408018811139, "code_postal": "92062", "stop_lon": 2.249998928193167, "coord": [48.88408018811139, 2.249998928193167], "stop_id": 4024294, "stop_desc": "FACE 55 QUAI DE DION BOUTON - 92062", "stop_name": "SOLJENITSYNE"}, "geometry": {"type": "Point", "coordinates": [2.249998928193167, 48.88408018811139]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f89058f399aae035256a5a1d7918a61ded4b0a26", "fields": {"departement": "92", "stop_lat": 48.88060207123808, "code_postal": "92062", "stop_lon": 2.2384223287696106, "coord": [48.88060207123808, 2.2384223287696106], "stop_id": 4024300, "stop_desc": "60 BIS BOULEVARD RICHARD WALLACE - 92062", "stop_name": "WALLACE - JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.2384223287696106, 48.88060207123808]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e6c1dce7474510f96ac1ac4475f0bb7ca2696911", "fields": {"departement": "92", "stop_lat": 48.88002966619893, "code_postal": "92062", "stop_lon": 2.2312014981767256, "coord": [48.88002966619893, 2.2312014981767256], "stop_id": 4024304, "stop_desc": "38 RUE DES BAS ROGERS - 92062", "stop_name": "VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.2312014981767256, 48.88002966619893]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6c85eda0747d0910fcbb84f3880047d055d8a490", "fields": {"departement": "92", "stop_lat": 48.87896523498338, "code_postal": "92073", "stop_lon": 2.2268706111298675, "coord": [48.87896523498338, 2.2268706111298675], "stop_id": 4024307, "stop_desc": "33 RUE VOLTAIRE - 92073", "stop_name": "CAPITAINE FERBER"}, "geometry": {"type": "Point", "coordinates": [2.2268706111298675, 48.87896523498338]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "172d76a3375bdb650ae9bb2b365dcefdb0d2417b", "fields": {"departement": "92", "stop_lat": 48.88301777132864, "code_postal": "92050", "stop_lon": 2.2168460952034277, "coord": [48.88301777132864, 2.2168460952034277], "stop_id": 4024312, "stop_desc": "113 RUE DE SURESNES - 92050", "stop_name": "VERDUN"}, "geometry": {"type": "Point", "coordinates": [2.2168460952034277, 48.88301777132864]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d409957c036f4d8d3bb1b6300174f43c46cfb3fd", "fields": {"departement": "92", "stop_lat": 48.882191605067284, "code_postal": "92050", "stop_lon": 2.2175021025390933, "coord": [48.882191605067284, 2.2175021025390933], "stop_id": 4024313, "stop_desc": "FACE 129 RUE DE SURESNES - 92050", "stop_name": "VERDUN"}, "geometry": {"type": "Point", "coordinates": [2.2175021025390933, 48.882191605067284]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e44940fccbdbc0056da910dbaa4f68251ecf0e51", "fields": {"departement": "92", "stop_lat": 48.88600327557959, "code_postal": "92050", "stop_lon": 2.2098753320519458, "coord": [48.88600327557959, 2.2098753320519458], "stop_id": 4024317, "stop_desc": "RUE DE SURESNES - 92050", "stop_name": "CLEMENCEAU - SADI CARNOT"}, "geometry": {"type": "Point", "coordinates": [2.2098753320519458, 48.88600327557959]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ade4b2c099dd7b4b9ae546824bb0fb4b0938454a", "fields": {"departement": "92", "stop_lat": 48.89369035872018, "code_postal": "92050", "stop_lon": 2.1965809475776066, "coord": [48.89369035872018, 2.1965809475776066], "stop_id": 4024325, "stop_desc": "35 BIS RUE DE STALINGRAD - 92050", "stop_name": "MAURICE THOREZ"}, "geometry": {"type": "Point", "coordinates": [2.1965809475776066, 48.89369035872018]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ce471ef244a34e2444aecf1bae99a1f633c79b16", "fields": {"departement": "92", "stop_lat": 48.89750004786438, "code_postal": "92050", "stop_lon": 2.195848169783952, "coord": [48.89750004786438, 2.195848169783952], "stop_id": 4024327, "stop_desc": "18 BOULEVARD DE LA SEINE - 92050", "stop_name": "GENERAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.195848169783952, 48.89750004786438]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4f7982c528aec359d7f83d92b45888d91b9b70ce", "fields": {"departement": "92", "stop_lat": 48.897239356740116, "code_postal": "92050", "stop_lon": 2.1957943579139774, "coord": [48.897239356740116, 2.1957943579139774], "stop_id": 4024328, "stop_desc": "6 BOULEVARD DE LA SEINE - 92050", "stop_name": "GENERAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.1957943579139774, 48.897239356740116]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "004725748aecbe5338965047c9471702f090e0fa", "fields": {"departement": "92", "stop_lat": 48.902081582947574, "code_postal": "92050", "stop_lon": 2.1942543460740294, "coord": [48.902081582947574, 2.1942543460740294], "stop_id": 4024331, "stop_desc": "BOULEVARD DE LA SEINE - 92050", "stop_name": "LANNES"}, "geometry": {"type": "Point", "coordinates": [2.1942543460740294, 48.902081582947574]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "132317b93c58dfce33fb7cc8b48ec2fa1f2de34f", "fields": {"departement": "92", "stop_lat": 48.90330279243396, "code_postal": "92050", "stop_lon": 2.1933921346786676, "coord": [48.90330279243396, 2.1933921346786676], "stop_id": 4024335, "stop_desc": "R KLEBER - 92050", "stop_name": "BOULEVARD DE LA SEINE."}, "geometry": {"type": "Point", "coordinates": [2.1933921346786676, 48.90330279243396]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a0849eecacb9f8337ef5a85849bd1780124394e3", "fields": {"departement": "92", "stop_lat": 48.88957744025162, "code_postal": "92050", "stop_lon": 2.199331496857924, "coord": [48.88957744025162, 2.199331496857924], "stop_id": 4024338, "stop_desc": "FACE 11-13 RUE SADI CARNOT - 92050", "stop_name": "ROCHEGUDE"}, "geometry": {"type": "Point", "coordinates": [2.199331496857924, 48.88957744025162]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "732fcb3205e995c6c7e11b179c90413e64aec3ab", "fields": {"departement": "92", "stop_lat": 48.89113574673453, "code_postal": "92062", "stop_lon": 2.239206364253422, "coord": [48.89113574673453, 2.239206364253422], "stop_id": 4024344, "stop_desc": "PISTE GARE ROUTIERE - 92062", "stop_name": "LA DEFENSE-METRO-RER-TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.239206364253422, 48.89113574673453]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ae3aa65c6803e00eba3aab7c9b4d9775940da90d", "fields": {"departement": "92", "stop_lat": 48.89160141473085, "code_postal": "92062", "stop_lon": 2.2372019748450263, "coord": [48.89160141473085, 2.2372019748450263], "stop_id": 4024345, "stop_desc": "PISTE GARE ROUTIERE - 92062", "stop_name": "LA DEFENSE-METRO-RER-TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.2372019748450263, 48.89160141473085]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ed376b105ec625ca7a5383f73eb858426d20c662", "fields": {"departement": "92", "stop_lat": 48.88875088546612, "code_postal": "92062", "stop_lon": 2.2353267360720896, "coord": [48.88875088546612, 2.2353267360720896], "stop_id": 4024346, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 92062", "stop_name": "LES BOUVETS"}, "geometry": {"type": "Point", "coordinates": [2.2353267360720896, 48.88875088546612]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "07919655aa11b26c390e9bd6698e2c08d1974892", "fields": {"departement": "92", "stop_lat": 48.888752123592425, "code_postal": "92062", "stop_lon": 2.2367849896114063, "coord": [48.888752123592425, 2.2367849896114063], "stop_id": 4024347, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 92062", "stop_name": "LES BOUVETS"}, "geometry": {"type": "Point", "coordinates": [2.2367849896114063, 48.888752123592425]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a75835cf87cafa7babaa8c5408e4aaa73673d8c6", "fields": {"departement": "92", "stop_lat": 48.88871218819234, "code_postal": "92050", "stop_lon": 2.222420573739137, "coord": [48.88871218819234, 2.222420573739137], "stop_id": 4024354, "stop_desc": "99-101 AVENUE PABLO PICASSO - 92050", "stop_name": "LES FONTENELLES"}, "geometry": {"type": "Point", "coordinates": [2.222420573739137, 48.88871218819234]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "619dbd26a83c0de019d14e8523c62006c0480bf2", "fields": {"departement": "92", "stop_lat": 48.895660974821816, "code_postal": "92050", "stop_lon": 2.2150856614501198, "coord": [48.895660974821816, 2.2150856614501198], "stop_id": 4024364, "stop_desc": "141 AVENUE FREDERIC ET IRENE JOLIOT CURIE - 92050", "stop_name": "PREFECTURE DES HAUTS-DE-SEINE"}, "geometry": {"type": "Point", "coordinates": [2.2150856614501198, 48.895660974821816]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "980bff9a31d07061a540a0d09c00fa1bf2b8e968", "fields": {"departement": "92", "stop_lat": 48.89893064237258, "code_postal": "92050", "stop_lon": 2.2134830976924333, "coord": [48.89893064237258, 2.2134830976924333], "stop_id": 4024365, "stop_desc": "BOULEVARD JULES MANSARD - 92050", "stop_name": "SOUFFLOT"}, "geometry": {"type": "Point", "coordinates": [2.2134830976924333, 48.89893064237258]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "08252657d314cbb91d765d555ac3a46e72d57ad7", "fields": {"departement": "92", "stop_lat": 48.89925827822141, "code_postal": "92050", "stop_lon": 2.208861294335981, "coord": [48.89925827822141, 2.208861294335981], "stop_id": 4024368, "stop_desc": "RUE PASCAL - 92050", "stop_name": "PASCAL"}, "geometry": {"type": "Point", "coordinates": [2.208861294335981, 48.89925827822141]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "efa1f05cee41314c15ee74444804f9338b841972", "fields": {"departement": "92", "stop_lat": 48.891430616233855, "code_postal": "92050", "stop_lon": 2.200907561091466, "coord": [48.891430616233855, 2.200907561091466], "stop_id": 4024374, "stop_desc": "FACE 5 RUE DE COURBEVOIE - 92050", "stop_name": "PLAINCHAMP"}, "geometry": {"type": "Point", "coordinates": [2.200907561091466, 48.891430616233855]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d88c4a77303b4a49aec88d206d9940367bcf7216", "fields": {"departement": "92", "stop_lat": 48.89409423242805, "code_postal": "92050", "stop_lon": 2.1961164321360105, "coord": [48.89409423242805, 2.1961164321360105], "stop_id": 4024377, "stop_desc": "FACE 43 RUE DE STALINGRAD - 92050", "stop_name": "MAURICE THOREZ"}, "geometry": {"type": "Point", "coordinates": [2.1961164321360105, 48.89409423242805]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dbf5f4c737842945722d6bd4c0c90f2681c886bd", "fields": {"departement": "92", "stop_lat": 48.89488972341188, "code_postal": "92050", "stop_lon": 2.1924750061252696, "coord": [48.89488972341188, 2.1924750061252696], "stop_id": 4024379, "stop_desc": "AVENUE JULES QUENTIN - 92050", "stop_name": "JULES QUENTIN"}, "geometry": {"type": "Point", "coordinates": [2.1924750061252696, 48.89488972341188]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "26372afcfd952ca9687a0cab74bc5d34a4d5f19c", "fields": {"departement": "92", "stop_lat": 48.89430751833291, "code_postal": "92050", "stop_lon": 2.194098606496554, "coord": [48.89430751833291, 2.194098606496554], "stop_id": 4024380, "stop_desc": "31 RUE DE STALINGRAD - 92050", "stop_name": "JULES QUENTIN"}, "geometry": {"type": "Point", "coordinates": [2.194098606496554, 48.89430751833291]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "93243f91e73b796a73e7b5d16ec2a4f1207f6828", "fields": {"departement": "92", "stop_lat": 48.89236576751438, "code_postal": "92050", "stop_lon": 2.1863896597926176, "coord": [48.89236576751438, 2.1863896597926176], "stop_id": 4024382, "stop_desc": "AVENUE HENRI MARTIN - 92050", "stop_name": "PAUL LESCOP"}, "geometry": {"type": "Point", "coordinates": [2.1863896597926176, 48.89236576751438]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "877bb09a0082f8462e9e03f472f5fc31a9185045", "fields": {"departement": "92", "stop_lat": 48.892392751921655, "code_postal": "92050", "stop_lon": 2.179465778600854, "coord": [48.892392751921655, 2.179465778600854], "stop_id": 4024384, "stop_desc": "8 AVENUE DU PARC DE L'ILE - 92050", "stop_name": "RUE DU PORT"}, "geometry": {"type": "Point", "coordinates": [2.179465778600854, 48.892392751921655]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7644a3fc424bd29eb845104bb345f5e54e3ebd5d", "fields": {"departement": "92", "stop_lat": 48.891222117784494, "code_postal": "92063", "stop_lon": 2.177738430776838, "coord": [48.891222117784494, 2.177738430776838], "stop_id": 4024385, "stop_desc": "BOULEVARD NATIONAL - 92063", "stop_name": "ROUTE DE CHATOU"}, "geometry": {"type": "Point", "coordinates": [2.177738430776838, 48.891222117784494]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f40ff78f7a72b72084c4c72f87c1fc7a83e01e7a", "fields": {"departement": "92", "stop_lat": 48.89471164228751, "code_postal": "92050", "stop_lon": 2.209663106182034, "coord": [48.89471164228751, 2.209663106182034], "stop_id": 4024389, "stop_desc": "BOULEVARD HONORE DE BALZAC - 92050", "stop_name": "BALZAC - ZOLA"}, "geometry": {"type": "Point", "coordinates": [2.209663106182034, 48.89471164228751]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0f75274614ad2003202d1f59844c7f794d4179f2", "fields": {"departement": "92", "stop_lat": 48.83599231308503, "code_postal": "92012", "stop_lon": 2.2323943006518476, "coord": [48.83599231308503, 2.2323943006518476], "stop_id": 4024394, "stop_desc": "FACE 76 AVENUE DE SILLY - 92012", "stop_name": "SILLY - GALLIENI"}, "geometry": {"type": "Point", "coordinates": [2.2323943006518476, 48.83599231308503]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "591253465c4f2ddbc18a9d409501adecadeca577", "fields": {"departement": "92", "stop_lat": 48.84614509568592, "code_postal": "92064", "stop_lon": 2.2194100429288928, "coord": [48.84614509568592, 2.2194100429288928], "stop_id": 4024403, "stop_desc": "FACE 27 RUE DAILLY - 92064", "stop_name": "CHEVRILLON"}, "geometry": {"type": "Point", "coordinates": [2.2194100429288928, 48.84614509568592]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f192c0a0f5559c6774857d824a456b788f643f9d", "fields": {"departement": "92", "stop_lat": 48.84462436049425, "code_postal": "92064", "stop_lon": 2.2175615892703924, "coord": [48.84462436049425, 2.2175615892703924], "stop_id": 4024406, "stop_desc": "37 RUE DAILLY - 92064", "stop_name": "GARE DE SAINT-CLOUD"}, "geometry": {"type": "Point", "coordinates": [2.2175615892703924, 48.84462436049425]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "004b6a9eee63cfe6fff049ba4194fe0c126ea7f3", "fields": {"departement": "92", "stop_lat": 48.89076415653794, "code_postal": "92050", "stop_lon": 2.199682695448674, "coord": [48.89076415653794, 2.199682695448674], "stop_id": 4024443, "stop_desc": "BOULEVARD DU LEVANT - 92050", "stop_name": "PLAINCHAMP"}, "geometry": {"type": "Point", "coordinates": [2.199682695448674, 48.89076415653794]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d807cf42b90dea6423b9989f7164cb220726f696", "fields": {"departement": "92", "stop_lat": 48.893000092260564, "code_postal": "92050", "stop_lon": 2.198068457146964, "coord": [48.893000092260564, 2.198068457146964], "stop_id": 4024444, "stop_desc": "22 RUE DE STALINGRAD - 92050", "stop_name": "RUE DES ANCIENNES MAIRIES"}, "geometry": {"type": "Point", "coordinates": [2.198068457146964, 48.893000092260564]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "549b1d871a86ded2067aa03db912182c4de6cb0d", "fields": {"departement": "92", "stop_lat": 48.89684168528956, "code_postal": "92050", "stop_lon": 2.201602120688785, "coord": [48.89684168528956, 2.201602120688785], "stop_id": 4024447, "stop_desc": "64 BOULEVARD BLAISE PASCAL - 92050", "stop_name": "PAUL BERT"}, "geometry": {"type": "Point", "coordinates": [2.201602120688785, 48.89684168528956]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5c0c529d49aed5bb7809a63c15c61c98d143f4da", "fields": {"departement": "92", "stop_lat": 48.89588719523416, "code_postal": "92050", "stop_lon": 2.2080245586894116, "coord": [48.89588719523416, 2.2080245586894116], "stop_id": 4024451, "stop_desc": "BOULEVARD HONORE DE BALZAC - 92050", "stop_name": "BERTHELOT"}, "geometry": {"type": "Point", "coordinates": [2.2080245586894116, 48.89588719523416]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4c8f26ec18764c15f749183edd4d85f659511b6f", "fields": {"departement": "92", "stop_lat": 48.89437091641499, "code_postal": "92050", "stop_lon": 2.2103999674424677, "coord": [48.89437091641499, 2.2103999674424677], "stop_id": 4024452, "stop_desc": "188-208 RUE DE COURBEVOIE - 92050", "stop_name": "BALZAC - ZOLA"}, "geometry": {"type": "Point", "coordinates": [2.2103999674424677, 48.89437091641499]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "787d979315be6813c1ade8979dacd7ad231d0206", "fields": {"departement": "92", "stop_lat": 48.89471164228751, "code_postal": "92050", "stop_lon": 2.209663106182034, "coord": [48.89471164228751, 2.209663106182034], "stop_id": 4024453, "stop_desc": "BOULEVARD HONORE DE BALZAC - 92050", "stop_name": "BALZAC - ZOLA"}, "geometry": {"type": "Point", "coordinates": [2.209663106182034, 48.89471164228751]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f17b74cd64389d4a7853eb3e59c85281cb699e9c", "fields": {"departement": "75", "stop_lat": 48.848522339614206, "code_postal": "75116", "stop_lon": 2.2573579814904194, "coord": [48.848522339614206, 2.2573579814904194], "stop_id": 4024524, "stop_desc": "PLACE DE LA PORTE D'AUTEUIL - 75116", "stop_name": "PORTE D'AUTEUIL-METRO"}, "geometry": {"type": "Point", "coordinates": [2.2573579814904194, 48.848522339614206]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5b8bc3d063e8487b28e6b7ef364bc3a5225da9e2", "fields": {"departement": "92", "stop_lat": 48.867290753577876, "code_postal": "92073", "stop_lon": 2.2269227092177055, "coord": [48.867290753577876, 2.2269227092177055], "stop_id": 4024539, "stop_desc": "BOULEVARD HENRI SELLIER - 92073", "stop_name": "RUE DES BOURETS - PONT DE SURESNES"}, "geometry": {"type": "Point", "coordinates": [2.2269227092177055, 48.867290753577876]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "87d9e3fa069361a1e9d4a63dbd876cf7bc55a494", "fields": {"departement": "92", "stop_lat": 48.871179894509005, "code_postal": "92073", "stop_lon": 2.224380379871499, "coord": [48.871179894509005, 2.224380379871499], "stop_id": 4024542, "stop_desc": "6-8 AVENUE FRANKLIN ROOSEVELT - 92073", "stop_name": "MAIRIE DE SURESNES"}, "geometry": {"type": "Point", "coordinates": [2.224380379871499, 48.871179894509005]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fa889a999f3562ef43b2c63c594acedf5b3b44ef", "fields": {"departement": "92", "stop_lat": 48.874804089391844, "code_postal": "92073", "stop_lon": 2.217532791029242, "coord": [48.874804089391844, 2.217532791029242], "stop_id": 4024548, "stop_desc": "BOULEVARD DE WASHINGTON - 92073", "stop_name": "MONT VALERIEN"}, "geometry": {"type": "Point", "coordinates": [2.217532791029242, 48.874804089391844]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c4b58d0c7a82b9065134fe32c9f81018a1ab5ce1", "fields": {"departement": "92", "stop_lat": 48.86426679339795, "code_postal": "92073", "stop_lon": 2.2134977237108133, "coord": [48.86426679339795, 2.2134977237108133], "stop_id": 4024555, "stop_desc": "62 BOULEVARD DU MARECHAL DE LATTRE DE TASSIGNY - 92073", "stop_name": "EDOUARD VAILLANT"}, "geometry": {"type": "Point", "coordinates": [2.2134977237108133, 48.86426679339795]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ce5a1c2b8f8f517d2b070289d3a17fc0641b9666", "fields": {"departement": "92", "stop_lat": 48.867803383524226, "code_postal": "92063", "stop_lon": 2.2011876582668277, "coord": [48.867803383524226, 2.2011876582668277], "stop_id": 4024569, "stop_desc": "9 AVENUE DU MONT VALERIEN - 92063", "stop_name": "AVENUE DU MONT VALERIEN"}, "geometry": {"type": "Point", "coordinates": [2.2011876582668277, 48.867803383524226]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "497c93de228db4c09d52915aed829d66c2faf926", "fields": {"departement": "92", "stop_lat": 48.877764661670334, "code_postal": "92063", "stop_lon": 2.1963107711420347, "coord": [48.877764661670334, 2.1963107711420347], "stop_id": 4024579, "stop_desc": "86 RUE DANTON - 92063", "stop_name": "FABRE D'EGLANTINE"}, "geometry": {"type": "Point", "coordinates": [2.1963107711420347, 48.877764661670334]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bc7982636b0e7d3180b3f9e3e2b0c9ea63271c4d", "fields": {"departement": "92", "stop_lat": 48.88451764143241, "code_postal": "92063", "stop_lon": 2.1777318079494505, "coord": [48.88451764143241, 2.1777318079494505], "stop_id": 4024589, "stop_desc": "31 AVENUE VICTOR HUGO - 92063", "stop_name": "BAUDIN"}, "geometry": {"type": "Point", "coordinates": [2.1777318079494505, 48.88451764143241]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e4f0dbe8980a170e8564667c9cd816801f1e20aa", "fields": {"departement": "92", "stop_lat": 48.88600633832888, "code_postal": "92063", "stop_lon": 2.1753696073485793, "coord": [48.88600633832888, 2.1753696073485793], "stop_id": 4024591, "stop_desc": "85 AVENUE VICTOR HUGO - 92063", "stop_name": "COLMAR"}, "geometry": {"type": "Point", "coordinates": [2.1753696073485793, 48.88600633832888]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a8ed1dc3ff0a1cf49fb731bd92ed9fc6519f5e03", "fields": {"departement": "92", "stop_lat": 48.88712632400157, "code_postal": "92063", "stop_lon": 2.1728721577595156, "coord": [48.88712632400157, 2.1728721577595156], "stop_id": 4024593, "stop_desc": "AVENUE DE COLMAR - 92063", "stop_name": "RUEIL-MALMAISON RER"}, "geometry": {"type": "Point", "coordinates": [2.1728721577595156, 48.88712632400157]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8700b1f5a2629c1701670da08353e66053669962", "fields": {"departement": "92", "stop_lat": 48.86213123635226, "code_postal": "92073", "stop_lon": 2.2002217874967354, "coord": [48.86213123635226, 2.2002217874967354], "stop_id": 4024594, "stop_desc": "AVENUE MAISTRASSE - 92073", "stop_name": "MAISTRASSE"}, "geometry": {"type": "Point", "coordinates": [2.2002217874967354, 48.86213123635226]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a3cb26be23c2b0af3932d071bc34189e5f4c6777", "fields": {"departement": "94", "stop_lat": 48.82207395654258, "code_postal": "94018", "stop_lon": 2.398436310380732, "coord": [48.82207395654258, 2.398436310380732], "stop_id": 5325155, "stop_desc": "FACE 7 QUAI DE BERCY - 94018", "stop_name": "PORT AUX LIONS"}, "geometry": {"type": "Point", "coordinates": [2.398436310380732, 48.82207395654258]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ce7728d69bec7e9b054f6c07976a8451cf8fcc99", "fields": {"departement": "75", "stop_lat": 48.90107886797239, "code_postal": "75119", "stop_lon": 2.3861382896371763, "coord": [48.90107886797239, 2.3861382896371763], "stop_id": 5355347, "stop_desc": "BOULEVARD DE LA COMMANDERIE - 75119", "stop_name": "PLACE AUGUSTE BARON"}, "geometry": {"type": "Point", "coordinates": [2.3861382896371763, 48.90107886797239]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dbd6b0d0163eeb927bdbbace917f61583b713052", "fields": {"departement": "93", "stop_lat": 48.90750830023824, "code_postal": "93001", "stop_lon": 2.3761782782205727, "coord": [48.90750830023824, 2.3761782782205727], "stop_id": 5355354, "stop_desc": "QUAI LUCIEN LEFRANC - 93001", "stop_name": "QUAI LUCIEN LEFRANC"}, "geometry": {"type": "Point", "coordinates": [2.3761782782205727, 48.90750830023824]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "14fad79bf679995dc09030cf0d77ff55c55b83ba", "fields": {"departement": "93", "stop_lat": 48.90817557592717, "code_postal": "93001", "stop_lon": 2.36859846458681, "coord": [48.90817557592717, 2.36859846458681], "stop_id": 5355357, "stop_desc": "18 RUE DU PILIER - 93001", "stop_name": "18 RUE DU PILIER"}, "geometry": {"type": "Point", "coordinates": [2.36859846458681, 48.90817557592717]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "642fbf6cfaee9f259ce146790f1332e741eb9b86", "fields": {"departement": "93", "stop_lat": 48.90706163028774, "code_postal": "93001", "stop_lon": 2.3668390863978126, "coord": [48.90706163028774, 2.3668390863978126], "stop_id": 5355359, "stop_desc": "0 R WALDECK ROCHET - 93001", "stop_name": "FRONT POPULAIRE-GARDINOUX"}, "geometry": {"type": "Point", "coordinates": [2.3668390863978126, 48.90706163028774]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "21f54a82e3353aad57f7bf73555b5f244d18d96a", "fields": {"departement": "93", "stop_lat": 48.90654993584481, "code_postal": "93066", "stop_lon": 2.3644529786614665, "coord": [48.90654993584481, 2.3644529786614665], "stop_id": 5355361, "stop_desc": "AV GEORGE SAND - 93066", "stop_name": "FRONT POPULAIRE-PROUDHON"}, "geometry": {"type": "Point", "coordinates": [2.3644529786614665, 48.90654993584481]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9246bb1e1f76928d54c64731f412064a67edd3f8", "fields": {"departement": "93", "stop_lat": 48.908967302705726, "code_postal": "93066", "stop_lon": 2.3651086733932645, "coord": [48.908967302705726, 2.3651086733932645], "stop_id": 5355362, "stop_desc": "R DE LA METALLURGIE - 93066", "stop_name": "METALLURGIE"}, "geometry": {"type": "Point", "coordinates": [2.3651086733932645, 48.908967302705726]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c1acde62ffd4076769a0016ede04daff619f5f49", "fields": {"departement": "93", "stop_lat": 48.912642719449714, "code_postal": "93001", "stop_lon": 2.366283245404353, "coord": [48.912642719449714, 2.366283245404353], "stop_id": 5355365, "stop_desc": "FACE 19 RUE DES FILLETTES - 93001", "stop_name": "SAINT-GOBAIN"}, "geometry": {"type": "Point", "coordinates": [2.366283245404353, 48.912642719449714]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "77d5180a3f1b79372894c8acb539993a0c9f99cd", "fields": {"departement": "93", "stop_lat": 48.91910535695853, "code_postal": "93066", "stop_lon": 2.3618959025746076, "coord": [48.91910535695853, 2.3618959025746076], "stop_id": 5355368, "stop_desc": "AVENUE DU STADE DE FRANCE - 93066", "stop_name": "LA PLAINE - STADE DE FRANCE RER"}, "geometry": {"type": "Point", "coordinates": [2.3618959025746076, 48.91910535695853]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f3e9f04305a240f3b825951fc2ff2bf2b629039b", "fields": {"departement": "93", "stop_lat": 48.91806433349263, "code_postal": "93066", "stop_lon": 2.353304562451186, "coord": [48.91806433349263, 2.353304562451186], "stop_id": 5355375, "stop_desc": "11 AV FRANCOIS MITTERRAND - 93066", "stop_name": "STADE DE FRANCE - SAINT-DENIS RER"}, "geometry": {"type": "Point", "coordinates": [2.353304562451186, 48.91806433349263]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9fef3af5bcbd6892bf4e32488cb1de1a823d30cc", "fields": {"departement": "92", "stop_lat": 48.78690544751222, "code_postal": "92032", "stop_lon": 2.299632034669135, "coord": [48.78690544751222, 2.299632034669135], "stop_id": 5370692, "stop_desc": "FACE 80 AVENUE GABRIEL PERI - 92032", "stop_name": "RUE DE PARADIS"}, "geometry": {"type": "Point", "coordinates": [2.299632034669135, 48.78690544751222]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9865a6d9b4bbd6ebd011fc8ff58c6d255b2918b2", "fields": {"departement": "92", "stop_lat": 48.78824246516923, "code_postal": "92032", "stop_lon": 2.2932652482672524, "coord": [48.78824246516923, 2.2932652482672524], "stop_id": 5370693, "stop_desc": "25 AVENUE LOMBART - 92032", "stop_name": "FONTENAY-AUX-ROSES RER"}, "geometry": {"type": "Point", "coordinates": [2.2932652482672524, 48.78824246516923]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a4c5e66353acbc47bdb5fa2d07e1919127ef9daa", "fields": {"departement": "92", "stop_lat": 48.78430774610973, "code_postal": "92060", "stop_lon": 2.277273633155282, "coord": [48.78430774610973, 2.277273633155282], "stop_id": 5370697, "stop_desc": "63 AVENUE RAYMOND CROLAND - 92060", "stop_name": "EDMOND ABOUT"}, "geometry": {"type": "Point", "coordinates": [2.277273633155282, 48.78430774610973]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5b5a2e0e3aad31b7d8a48eaaa3717d471bc45f00", "fields": {"departement": "92", "stop_lat": 48.818086708432794, "code_postal": "92049", "stop_lon": 2.308605641659359, "coord": [48.818086708432794, 2.308605641659359], "stop_id": 5370715, "stop_desc": "105 AV PIERRE BROSSOLETTE - 92049", "stop_name": "12 FEVRIER 1934"}, "geometry": {"type": "Point", "coordinates": [2.308605641659359, 48.818086708432794]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6df87037fc7c001a29fa611fff62635ab94f6a29", "fields": {"departement": "92", "stop_lat": 48.81918355343179, "code_postal": "92049", "stop_lon": 2.310074946801479, "coord": [48.81918355343179, 2.310074946801479], "stop_id": 5370716, "stop_desc": "85 AVENUE PIERRE BROSSOLETTE - 92049", "stop_name": "PIERRE BROSSOLETTE - GABRIEL PERI"}, "geometry": {"type": "Point", "coordinates": [2.310074946801479, 48.81918355343179]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "56cd98a2767dbccd82715719f1bbcaffe27fb402", "fields": {"departement": "92", "stop_lat": 48.82193457809965, "code_postal": "92049", "stop_lon": 2.3137893102917633, "coord": [48.82193457809965, 2.3137893102917633], "stop_id": 5370717, "stop_desc": "33 AVENUE PIERRE BROSSOLETTE - 92049", "stop_name": "DEPINOY"}, "geometry": {"type": "Point", "coordinates": [2.3137893102917633, 48.82193457809965]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5e2ccea67e3afb811694be125038e5738968fcd1", "fields": {"departement": "75", "stop_lat": 48.82323941968463, "code_postal": "75114", "stop_lon": 2.324487238165042, "coord": [48.82323941968463, 2.324487238165042], "stop_id": 5370720, "stop_desc": "132 BD BRUNE - 75114", "stop_name": "PORTE D'ORLEANS"}, "geometry": {"type": "Point", "coordinates": [2.324487238165042, 48.82323941968463]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1acb581be1f06ed20b3c52e93f0015f28b202428", "fields": {"departement": "92", "stop_lat": 48.88763812082074, "code_postal": "92050", "stop_lon": 2.200999307080737, "coord": [48.88763812082074, 2.200999307080737], "stop_id": 5419727, "stop_desc": "FACE 2 AVENUE FREDERIC ET IRENE JOLIOT CURIE - 92050", "stop_name": "PLACE DE LA BOULE - JOLIOT CURIE"}, "geometry": {"type": "Point", "coordinates": [2.200999307080737, 48.88763812082074]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "43927761ca3d5032e2c9f80735a8a07f3ccce545", "fields": {"departement": "75", "stop_lat": 48.88620757970159, "code_postal": "75117", "stop_lon": 2.294803833053549, "coord": [48.88620757970159, 2.294803833053549], "stop_id": 5421670, "stop_desc": "166 BOULEVARD BERTHIER - 75117", "stop_name": "PORTE DE COURCELLES"}, "geometry": {"type": "Point", "coordinates": [2.294803833053549, 48.88620757970159]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "58774da2234ddb5a1181ffc615509aa5df2f71c3", "fields": {"departement": "93", "stop_lat": 48.96376745970183, "code_postal": "93059", "stop_lon": 2.3713072012659175, "coord": [48.96376745970183, 2.3713072012659175], "stop_id": 5423651, "stop_desc": "AVENUE LEDRU ROLLIN - 93059", "stop_name": "GARE DE PIERREFITTE - STAINS RER"}, "geometry": {"type": "Point", "coordinates": [2.3713072012659175, 48.96376745970183]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "701acae65e2dee786ef5a6186e4c470201ed677c", "fields": {"departement": "92", "stop_lat": 48.80368510844796, "code_postal": "92020", "stop_lon": 2.2974700935135903, "coord": [48.80368510844796, 2.2974700935135903], "stop_id": 5423660, "stop_desc": "95 AVENUE DE LA REPUBLIQUE - 92020", "stop_name": "REPUBLIQUE - DEFORGES"}, "geometry": {"type": "Point", "coordinates": [2.2974700935135903, 48.80368510844796]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a894eac752db846a43cd0c3c88c116cd9a3319f6", "fields": {"departement": "92", "stop_lat": 48.80383802353411, "code_postal": "92020", "stop_lon": 2.2978373453843948, "coord": [48.80383802353411, 2.2978373453843948], "stop_id": 5423661, "stop_desc": "FACE 91 AVENUE DE LA REPUBLIQUE - 92020", "stop_name": "REPUBLIQUE - DEFORGES"}, "geometry": {"type": "Point", "coordinates": [2.2978373453843948, 48.80383802353411]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b22357d0686b526fc3923bc6191abc309e7904f1", "fields": {"departement": "92", "stop_lat": 48.79796754114928, "code_postal": "92007", "stop_lon": 2.2937467800028233, "coord": [48.79796754114928, 2.2937467800028233], "stop_id": 5423664, "stop_desc": "7-9 RUE DE CHARTRES - 92007", "stop_name": "LIBERTE"}, "geometry": {"type": "Point", "coordinates": [2.2937467800028233, 48.79796754114928]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ab2a8d2352ffeef4b6be56aa6ca7396b59b1b988", "fields": {"departement": "92", "stop_lat": 48.797947265450254, "code_postal": "92020", "stop_lon": 2.2878559541892347, "coord": [48.797947265450254, 2.2878559541892347], "stop_id": 5423668, "stop_desc": "1 RUE DES PIERRELAIS - 92020", "stop_name": "PIERRELAIS - FONTENAY"}, "geometry": {"type": "Point", "coordinates": [2.2878559541892347, 48.797947265450254]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e24693e4071e78544dfebed3c60b4827e4797d75", "fields": {"departement": "92", "stop_lat": 48.79959122387618, "code_postal": "92020", "stop_lon": 2.285922459098015, "coord": [48.79959122387618, 2.285922459098015], "stop_id": 5423671, "stop_desc": "FACE 1 TER RUE D'ESTIENNE D'ORVES - 92020", "stop_name": "D'ESTIENNE D'ORVES - DIVISION LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.285922459098015, 48.79959122387618]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "60ddf90d6db1624f744ecd15178da19771e20087", "fields": {"departement": "92", "stop_lat": 48.79743234704115, "code_postal": "92020", "stop_lon": 2.2819248456131125, "coord": [48.79743234704115, 2.2819248456131125], "stop_id": 5423675, "stop_desc": "29 AVENUE DE LA DIVISION LECLERC - 92020", "stop_name": "LES SABLONS"}, "geometry": {"type": "Point", "coordinates": [2.2819248456131125, 48.79743234704115]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "291c3aea47c90fac8ec035f82922b2d78b532e43", "fields": {"departement": "92", "stop_lat": 48.785249576251935, "code_postal": "92060", "stop_lon": 2.25858422925446, "coord": [48.785249576251935, 2.25858422925446], "stop_id": 5423682, "stop_desc": "FACE 42 RUE PAUL RIVET - 92060", "stop_name": "MOULIN DE LA TOUR"}, "geometry": {"type": "Point", "coordinates": [2.25858422925446, 48.785249576251935]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f93dcbff1859937b70dd54be50b20dac204277aa", "fields": {"departement": "92", "stop_lat": 48.781618640138575, "code_postal": "92060", "stop_lon": 2.2588889381999437, "coord": [48.781618640138575, 2.2588889381999437], "stop_id": 5423684, "stop_desc": "FACE 7 RUE PIERRE D'ARTAGNAN - 92060", "stop_name": "DANIEL DE FOE"}, "geometry": {"type": "Point", "coordinates": [2.2588889381999437, 48.781618640138575]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "773f0cd5636ea8ac3e19d51bc8a2ef7e86a8023b", "fields": {"departement": "92", "stop_lat": 48.77679984747266, "code_postal": "92060", "stop_lon": 2.257046718411991, "coord": [48.77679984747266, 2.257046718411991], "stop_id": 5423688, "stop_desc": "86 AVENUE CHARLES DE GAULLE - 92060", "stop_name": "CITE JARDINS - PLACE DES ALLIES"}, "geometry": {"type": "Point", "coordinates": [2.257046718411991, 48.77679984747266]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cd06e774c96a1e1e65c1b07439eb6d9ea2d99977", "fields": {"departement": "92", "stop_lat": 48.77392369296903, "code_postal": "92060", "stop_lon": 2.257064757298435, "coord": [48.77392369296903, 2.257064757298435], "stop_id": 5423690, "stop_desc": "9 RUE DU MOULIN FIDEL - 92060", "stop_name": "MOULIN FIDEL"}, "geometry": {"type": "Point", "coordinates": [2.257064757298435, 48.77392369296903]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "30721bfe045e48f219fe26f57fb6a44fe8d71fec", "fields": {"departement": "92", "stop_lat": 48.76610283824545, "code_postal": "92019", "stop_lon": 2.255241315319122, "coord": [48.76610283824545, 2.255241315319122], "stop_id": 5423696, "stop_desc": "327 AVENUE DE LA DIVISION LECLERC - 92019", "stop_name": "FRANCIS DE PRESSENSE"}, "geometry": {"type": "Point", "coordinates": [2.255241315319122, 48.76610283824545]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "085a8a1e877659efc26c8434c7a06d4be8b2733c", "fields": {"departement": "92", "stop_lat": 48.76357946332891, "code_postal": "92019", "stop_lon": 2.2736403109029157, "coord": [48.76357946332891, 2.2736403109029157], "stop_id": 5423702, "stop_desc": "203 AVENUE DE LA DIVISION LECLERC - 92019", "stop_name": "LES VALLEES"}, "geometry": {"type": "Point", "coordinates": [2.2736403109029157, 48.76357946332891]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2901cee1370b348cdbc68db936a531ef1293c276", "fields": {"departement": "92", "stop_lat": 48.767096900631465, "code_postal": "92019", "stop_lon": 2.2797137031980217, "coord": [48.767096900631465, 2.2797137031980217], "stop_id": 5423710, "stop_desc": "67 RUE JEAN LONGUET - 92019", "stop_name": "MAIRIE DE CHATENAY-MALABRY"}, "geometry": {"type": "Point", "coordinates": [2.2797137031980217, 48.767096900631465]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "125e871127a9bb222d99c505e0ce81cca9f5001a", "fields": {"departement": "92", "stop_lat": 48.7942551077991, "code_postal": "92032", "stop_lon": 2.2729361506767765, "coord": [48.7942551077991, 2.2729361506767765], "stop_id": 5423724, "stop_desc": "PLACE DE LA DIVISION LECLERC - 92032", "stop_name": "DIVISION LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.2729361506767765, 48.7942551077991]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4e2c206fad40d75fb9957d971a31dada72ac3108", "fields": {"departement": "92", "stop_lat": 48.79576467289333, "code_postal": "92007", "stop_lon": 2.291503941539559, "coord": [48.79576467289333, 2.291503941539559], "stop_id": 5423727, "stop_desc": "FACE 23 RUE DE CHARTRES - 92007", "stop_name": "CHARTRES - BLANCHARD"}, "geometry": {"type": "Point", "coordinates": [2.291503941539559, 48.79576467289333]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "81ba6edf2546fb06f90808e3665ee6068a65c584", "fields": {"departement": "75", "stop_lat": 48.82609741539634, "code_postal": "75113", "stop_lon": 2.350757878691308, "coord": [48.82609741539634, 2.350757878691308], "stop_id": 5454878, "stop_desc": "77 RUE BOBILLOT - 75113", "stop_name": "BOBILLOT - TOLBIAC"}, "geometry": {"type": "Point", "coordinates": [2.350757878691308, 48.82609741539634]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8d9c701795b840abec472aaf36b8b83af737c121", "fields": {"departement": "75", "stop_lat": 48.83066259989052, "code_postal": "75113", "stop_lon": 2.3548566679640492, "coord": [48.83066259989052, 2.3548566679640492], "stop_id": 5454880, "stop_desc": "FACE 6 RUE BOBILLOT - 75113", "stop_name": "PLACE D'ITALIE"}, "geometry": {"type": "Point", "coordinates": [2.3548566679640492, 48.83066259989052]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e9277f9263c84fb50c8039a54eecc8e96cf71829", "fields": {"departement": "75", "stop_lat": 48.8462021413457, "code_postal": "75105", "stop_lon": 2.3545759764763554, "coord": [48.8462021413457, 2.3545759764763554], "stop_id": 5454887, "stop_desc": "PLACE JUSSIEU - 75105", "stop_name": "JUSSIEU"}, "geometry": {"type": "Point", "coordinates": [2.3545759764763554, 48.8462021413457]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f8c7a6c788d97e6d256256cbe90a8305e4df1908", "fields": {"departement": "75", "stop_lat": 48.85403888472589, "code_postal": "75104", "stop_lon": 2.356771321817855, "coord": [48.85403888472589, 2.356771321817855], "stop_id": 5454891, "stop_desc": "QUAI DE L'HOTEL DE VILLE - 75104", "stop_name": "PONT MARIE"}, "geometry": {"type": "Point", "coordinates": [2.356771321817855, 48.85403888472589]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "02ca6275efdce86f5773b7fb8003f48b8bd16f9b", "fields": {"departement": "75", "stop_lat": 48.868303315676926, "code_postal": "75102", "stop_lon": 2.3436439506432523, "coord": [48.868303315676926, 2.3436439506432523], "stop_id": 5454899, "stop_desc": "134-136 RUE MONTMARTRE - 75102", "stop_name": "REAUMUR - MONTMARTRE"}, "geometry": {"type": "Point", "coordinates": [2.3436439506432523, 48.868303315676926]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "183d2085ae855b958f4d77db788ac70bf55efa01", "fields": {"departement": "75", "stop_lat": 48.874244007171676, "code_postal": "75109", "stop_lon": 2.3421868361926466, "coord": [48.874244007171676, 2.3421868361926466], "stop_id": 5454901, "stop_desc": "32 RUE DU FAUBOURG MONTMARTRE - 75109", "stop_name": "PROVENCE - FAUBOURG MONTMARTRE"}, "geometry": {"type": "Point", "coordinates": [2.3421868361926466, 48.874244007171676]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0a405566ffef6a676f967219b9b2e4782bf97dc8", "fields": {"departement": "75", "stop_lat": 48.84904201040451, "code_postal": "75105", "stop_lon": 2.355775319106966, "coord": [48.84904201040451, 2.355775319106966], "stop_id": 5454911, "stop_desc": "FACE 2 RUE DES FOSSES SAINT BERNARD - 75105", "stop_name": "INSTITUT DU MONDE ARABE"}, "geometry": {"type": "Point", "coordinates": [2.355775319106966, 48.84904201040451]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3970e636776f8326f26046a511791ad1ceb10647", "fields": {"departement": "75", "stop_lat": 48.84624710842462, "code_postal": "75105", "stop_lon": 2.3543717307528045, "coord": [48.84624710842462, 2.3543717307528045], "stop_id": 5454912, "stop_desc": "45 RUE LINNE - 75105", "stop_name": "JUSSIEU"}, "geometry": {"type": "Point", "coordinates": [2.3543717307528045, 48.84624710842462]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b5ab472b045ec7133f91761044bdf21553377674", "fields": {"departement": "75", "stop_lat": 48.844134964687136, "code_postal": "75105", "stop_lon": 2.354902090075552, "coord": [48.844134964687136, 2.354902090075552], "stop_id": 5454915, "stop_desc": "2-4 RUE LINNE - 75105", "stop_name": "CUVIER - JARDIN DES PLANTES"}, "geometry": {"type": "Point", "coordinates": [2.354902090075552, 48.844134964687136]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "327aeb0c0396fa2f7d11ac4ee903dc09fe5309f7", "fields": {"departement": "75", "stop_lat": 48.83629716139105, "code_postal": "75113", "stop_lon": 2.358888551995435, "coord": [48.83629716139105, 2.358888551995435], "stop_id": 5454919, "stop_desc": "100-102 BOULEVARD DE L'HOPITAL - 75113", "stop_name": "JENNER - JEANNE D'ARC"}, "geometry": {"type": "Point", "coordinates": [2.358888551995435, 48.83629716139105]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7eaf29f7af9a5447cb2ba8b5f692a88cc78c9382", "fields": {"departement": "75", "stop_lat": 48.83633304434552, "code_postal": "75113", "stop_lon": 2.359256166042175, "coord": [48.83633304434552, 2.359256166042175], "stop_id": 5454920, "stop_desc": "113 BOULEVARD DE L'HOPITAL - 75113", "stop_name": "JENNER - JEANNE D'ARC"}, "geometry": {"type": "Point", "coordinates": [2.359256166042175, 48.83633304434552]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "856dc8183b5a6f20c6e96ca5d051fef91e32d938", "fields": {"departement": "75", "stop_lat": 48.8314984744011, "code_postal": "75113", "stop_lon": 2.3546799758762553, "coord": [48.8314984744011, 2.3546799758762553], "stop_id": 5454923, "stop_desc": "10 PLACE D'ITALIE - 75113", "stop_name": "PLACE D'ITALIE"}, "geometry": {"type": "Point", "coordinates": [2.3546799758762553, 48.8314984744011]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f53e3ccf21b7beee8f895abf046cd984f7994aff", "fields": {"departement": "75", "stop_lat": 48.83219927738061, "code_postal": "75113", "stop_lon": 2.356191331508679, "coord": [48.83219927738061, 2.356191331508679], "stop_id": 5454936, "stop_desc": "169 BOULEVARD DE L'HOPITAL - 75113", "stop_name": "PLACE D'ITALIE - MAIRIE DU 13E"}, "geometry": {"type": "Point", "coordinates": [2.356191331508679, 48.83219927738061]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2ee727530d768ed76153623f6e103603081fdaeb", "fields": {"departement": "75", "stop_lat": 48.850119889984526, "code_postal": "75104", "stop_lon": 2.3593981982611987, "coord": [48.850119889984526, 2.3593981982611987], "stop_id": 5454938, "stop_desc": "FACE 3-5 BOULEVARD HENRI IV - 75104", "stop_name": "PONT SULLY - QUAI DE BETHUNE"}, "geometry": {"type": "Point", "coordinates": [2.3593981982611987, 48.850119889984526]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ef0b29cb9705f208d0576d0c949bc8c849f7cc34", "fields": {"departement": "92", "stop_lat": 48.77271498057555, "code_postal": "92019", "stop_lon": 2.2808497223291235, "coord": [48.77271498057555, 2.2808497223291235], "stop_id": 5478213, "stop_desc": "4 RUE JEAN LONGUET - 92019", "stop_name": "HELENE ROEDERER"}, "geometry": {"type": "Point", "coordinates": [2.2808497223291235, 48.77271498057555]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "79b4f85ada1ef5ae04d53bd5a6f995a80bb85935", "fields": {"departement": "92", "stop_lat": 48.76406362158655, "code_postal": "92019", "stop_lon": 2.2714371907722835, "coord": [48.76406362158655, 2.2714371907722835], "stop_id": 5478220, "stop_desc": "FACE 231 AVENUE DE LA DIVISION LECLERC - 92019", "stop_name": "PRESIDENT ALLENDE"}, "geometry": {"type": "Point", "coordinates": [2.2714371907722835, 48.76406362158655]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2be63fdfa086aaffa605beba3cf097ed8299349f", "fields": {"departement": "92", "stop_lat": 48.76481537199997, "code_postal": "92019", "stop_lon": 2.265807475737512, "coord": [48.76481537199997, 2.265807475737512], "stop_id": 5478221, "stop_desc": "FACE 299 AVENUE DE LA DIVISION LECLERC - 92019", "stop_name": "GENERAL DUVAL"}, "geometry": {"type": "Point", "coordinates": [2.265807475737512, 48.76481537199997]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7975a8513e0339581041ce2b5e251bc83e1a9a58", "fields": {"departement": "92", "stop_lat": 48.76541462761812, "code_postal": "92019", "stop_lon": 2.2610615768725446, "coord": [48.76541462761812, 2.2610615768725446], "stop_id": 5478222, "stop_desc": "FACE 305 AVENUE DE LA DIVISION LECLERC - 92019", "stop_name": "BUTTE ROUGE - CITE JARDINS"}, "geometry": {"type": "Point", "coordinates": [2.2610615768725446, 48.76541462761812]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4641631aebab43df11b588d8fbcfa1d0ea558c0b", "fields": {"departement": "92", "stop_lat": 48.773708035421556, "code_postal": "92060", "stop_lon": 2.257146680420341, "coord": [48.773708035421556, 2.257146680420341], "stop_id": 5478226, "stop_desc": "14 RUE DU MOULIN FIDEL - 92060", "stop_name": "MOULIN FIDEL"}, "geometry": {"type": "Point", "coordinates": [2.257146680420341, 48.773708035421556]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "75670ee3231731a7c449494b336323b5db71ce77", "fields": {"departement": "92", "stop_lat": 48.78971897350695, "code_postal": "92023", "stop_lon": 2.262290959769518, "coord": [48.78971897350695, 2.262290959769518], "stop_id": 5478232, "stop_desc": "125 AVENUE DU GENERAL DE GAULLE - 92023", "stop_name": "SOLEIL LEVANT"}, "geometry": {"type": "Point", "coordinates": [2.262290959769518, 48.78971897350695]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "31f22ce990c19efef35ddf475b4b7ebe01cfb78e", "fields": {"departement": "94", "stop_lat": 48.81783566839134, "code_postal": "94069", "stop_lon": 2.4438885020756413, "coord": [48.81783566839134, 2.4438885020756413], "stop_id": 5478254, "stop_desc": "134 RUE DU MARECHAL LECLERC - 94069", "stop_name": "PASSERELLE DE CHARENTONNEAU"}, "geometry": {"type": "Point", "coordinates": [2.4438885020756413, 48.81783566839134]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c88e9529566dd9243e3b88c87d8ff309ee532c1c", "fields": {"departement": "94", "stop_lat": 48.81078159169864, "code_postal": "94068", "stop_lon": 2.469457230202651, "coord": [48.81078159169864, 2.469457230202651], "stop_id": 5478261, "stop_desc": "6 BOULEVARD MAURICE BERTEAUX - 94068", "stop_name": "MAURICE BERTEAUX"}, "geometry": {"type": "Point", "coordinates": [2.469457230202651, 48.81078159169864]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d80da181da3e0eb7c98c68cdee360f3a93112b80", "fields": {"departement": "94", "stop_lat": 48.809162214755624, "code_postal": "94068", "stop_lon": 2.470868304362221, "coord": [48.809162214755624, 2.470868304362221], "stop_id": 5478262, "stop_desc": "7 RUE DU PONT DE CRETEIL - 94068", "stop_name": "CROIX SOURIS"}, "geometry": {"type": "Point", "coordinates": [2.470868304362221, 48.809162214755624]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a5b89ef19f9cfd49c65331449161bf6b48812bee", "fields": {"departement": "94", "stop_lat": 48.80093815541192, "code_postal": "94068", "stop_lon": 2.471051223419979, "coord": [48.80093815541192, 2.471051223419979], "stop_id": 5478265, "stop_desc": "RUE DU CHEMIN VERT - 94068", "stop_name": "CHEMIN VERT"}, "geometry": {"type": "Point", "coordinates": [2.471051223419979, 48.80093815541192]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "53f796abbb0be8fa922c9f522b2b784bba99af6a", "fields": {"departement": "94", "stop_lat": 48.78588192622703, "code_postal": "94068", "stop_lon": 2.4943255420261448, "coord": [48.78588192622703, 2.4943255420261448], "stop_id": 5478274, "stop_desc": "FACE 77 AVENUE RASPAIL - 94068", "stop_name": "ALMA"}, "geometry": {"type": "Point", "coordinates": [2.4943255420261448, 48.78588192622703]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1d28972b0d90ee4d5b27eb96e72f1083779c6b73", "fields": {"departement": "94", "stop_lat": 48.78619026960421, "code_postal": "94068", "stop_lon": 2.498978243620413, "coord": [48.78619026960421, 2.498978243620413], "stop_id": 5478275, "stop_desc": "118 TER AVENUE RASPAIL - 94068", "stop_name": "SORBIERS"}, "geometry": {"type": "Point", "coordinates": [2.498978243620413, 48.78619026960421]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ff91b50d032bff908f35112fc6de0ca250a0ca4a", "fields": {"departement": "94", "stop_lat": 48.791008619456996, "code_postal": "94068", "stop_lon": 2.504883316430706, "coord": [48.791008619456996, 2.504883316430706], "stop_id": 5478278, "stop_desc": "RUE CHEVALIER - 94068", "stop_name": "AVENUE DE BONNEUIL"}, "geometry": {"type": "Point", "coordinates": [2.504883316430706, 48.791008619456996]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ce4820501d98aec513d88f5cdaa0d60083baff38", "fields": {"departement": "94", "stop_lat": 48.790384083368984, "code_postal": "94068", "stop_lon": 2.5079555256354293, "coord": [48.790384083368984, 2.5079555256354293], "stop_id": 5478279, "stop_desc": "74 BOULEVARD DE LA MARNE - 94068", "stop_name": "VOLTAIRE"}, "geometry": {"type": "Point", "coordinates": [2.5079555256354293, 48.790384083368984]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "11fe040bed9d34b34445ff184bfbfcd91d3da337", "fields": {"departement": "94", "stop_lat": 48.81835494535775, "code_postal": "94069", "stop_lon": 2.424263840734881, "coord": [48.81835494535775, 2.424263840734881], "stop_id": 5478288, "stop_desc": "3 RUE DU VAL D'OSNE - 94069", "stop_name": "VAL D'OSNE"}, "geometry": {"type": "Point", "coordinates": [2.424263840734881, 48.81835494535775]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "502ab5efb21a33ffea743556601d07ca2dbe6e53", "fields": {"departement": "94", "stop_lat": 48.818334222865474, "code_postal": "94069", "stop_lon": 2.4390579510666335, "coord": [48.818334222865474, 2.4390579510666335], "stop_id": 5478296, "stop_desc": "FACE 94 RUE DE MARECHAL LECLERC - 94069", "stop_name": "MARECHAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.4390579510666335, 48.818334222865474]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ac8967414c2edb5bed0fa239dce48d39119062fb", "fields": {"departement": "94", "stop_lat": 48.81786967316462, "code_postal": "94069", "stop_lon": 2.4460389440703985, "coord": [48.81786967316462, 2.4460389440703985], "stop_id": 5478299, "stop_desc": "150-156 RUE DU MARECHAL LECLERC - 94069", "stop_name": "CFA - ANDRIEU"}, "geometry": {"type": "Point", "coordinates": [2.4460389440703985, 48.81786967316462]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c0272839486b086d65c0e9baaa5b44e8bb75e070", "fields": {"departement": "94", "stop_lat": 48.81601428243233, "code_postal": "94069", "stop_lon": 2.4593451129262274, "coord": [48.81601428243233, 2.4593451129262274], "stop_id": 5478306, "stop_desc": "129 RUE DU MARECHAL LECLERC - 94069", "stop_name": "ECOLES DE GRAVELLE"}, "geometry": {"type": "Point", "coordinates": [2.4593451129262274, 48.81601428243233]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a6868438054226f5a8a8b5fe23843251154a3386", "fields": {"departement": "94", "stop_lat": 48.81435751834528, "code_postal": "94069", "stop_lon": 2.4622535492272988, "coord": [48.81435751834528, 2.4622535492272988], "stop_id": 5478307, "stop_desc": "FACE 2 RUE MARECHAL LECLERC - 94069", "stop_name": "JOHN FITZGERALD KENNEDY"}, "geometry": {"type": "Point", "coordinates": [2.4622535492272988, 48.81435751834528]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2a95f4080d195ce047f9a885ca0db2db19b7c536", "fields": {"departement": "94", "stop_lat": 48.80437071624623, "code_postal": "94068", "stop_lon": 2.4717539967583275, "coord": [48.80437071624623, 2.4717539967583275], "stop_id": 5478318, "stop_desc": "61 RUE DU PONT DE CRETEIL - 94068", "stop_name": "RUE DES REMISES"}, "geometry": {"type": "Point", "coordinates": [2.4717539967583275, 48.80437071624623]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fb2153ad55f8b37b977cd1200bd41f34fae25e53", "fields": {"departement": "94", "stop_lat": 48.80053272098549, "code_postal": "94068", "stop_lon": 2.47192092508883, "coord": [48.80053272098549, 2.47192092508883], "stop_id": 5478321, "stop_desc": "RUE DU PONT DE CRETEIL - 94068", "stop_name": "PONT DE CRETEIL"}, "geometry": {"type": "Point", "coordinates": [2.47192092508883, 48.80053272098549]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cbf673602a6ef5a46931c67edd2ca6f54f9ef141", "fields": {"departement": "94", "stop_lat": 48.78934126816112, "code_postal": "94068", "stop_lon": 2.480910350828397, "coord": [48.78934126816112, 2.480910350828397], "stop_id": 5478327, "stop_desc": "80 AVENUE JEAN JAURES - 94068", "stop_name": "LA PIE"}, "geometry": {"type": "Point", "coordinates": [2.480910350828397, 48.78934126816112]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d712996ae79fdefcebfd8c5eadb6291ef6436306", "fields": {"departement": "94", "stop_lat": 48.78871998891044, "code_postal": "94068", "stop_lon": 2.489042821180194, "coord": [48.78871998891044, 2.489042821180194], "stop_id": 5478330, "stop_desc": "161 BOULEVARD DU GENERAL GIRAUD - 94068", "stop_name": "DOCTEUR ROUX - CHAMBRE DES METIERS"}, "geometry": {"type": "Point", "coordinates": [2.489042821180194, 48.78871998891044]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2e2f8101b2631cb803dbea602cc27920f5358090", "fields": {"departement": "94", "stop_lat": 48.78705761422884, "code_postal": "94068", "stop_lon": 2.50224539865963, "coord": [48.78705761422884, 2.50224539865963], "stop_id": 5478337, "stop_desc": "FACE 46 RUE CHEVALIER - 94068", "stop_name": "FALONNIERES"}, "geometry": {"type": "Point", "coordinates": [2.50224539865963, 48.78705761422884]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "283b489c273ee3cd736bee64dd307abb77747a28", "fields": {"departement": "94", "stop_lat": 48.791008619456996, "code_postal": "94068", "stop_lon": 2.504883316430706, "coord": [48.791008619456996, 2.504883316430706], "stop_id": 5478340, "stop_desc": "RUE CHEVALIER - 94068", "stop_name": "AVENUE DE BONNEUIL"}, "geometry": {"type": "Point", "coordinates": [2.504883316430706, 48.791008619456996]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eafeee64c451bfcbf99d1534465bdcaac3a9c2f6", "fields": {"departement": "94", "stop_lat": 48.797104041342344, "code_postal": "94068", "stop_lon": 2.516113124895376, "coord": [48.797104041342344, 2.516113124895376], "stop_id": 5478347, "stop_desc": "44 AVENUE DU MESNIL - 94068", "stop_name": "CAPITAINE CHARTON"}, "geometry": {"type": "Point", "coordinates": [2.516113124895376, 48.797104041342344]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d9645ca4a807061c64797212a0e8f5a7545ec3da", "fields": {"departement": "94", "stop_lat": 48.8031587650505, "code_postal": "94068", "stop_lon": 2.5181612944059495, "coord": [48.8031587650505, 2.5181612944059495], "stop_id": 5478351, "stop_desc": "22 AVENUE RAYMOND POINCARE - 94068", "stop_name": "THIERS"}, "geometry": {"type": "Point", "coordinates": [2.5181612944059495, 48.8031587650505]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2f82a25f135a600061f5e55dcbca047b8422d3c4", "fields": {"departement": "94", "stop_lat": 48.80351871089344, "code_postal": "94068", "stop_lon": 2.517876818160826, "coord": [48.80351871089344, 2.517876818160826], "stop_id": 5478352, "stop_desc": "39 AVENUE RAYMOND POINCARE - 94068", "stop_name": "THIERS"}, "geometry": {"type": "Point", "coordinates": [2.517876818160826, 48.80351871089344]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d181e71023bfc1e04837a7dadacb3a8934d3ebc7", "fields": {"departement": "75", "stop_lat": 48.831731660986215, "code_postal": "75112", "stop_lon": 2.3878563351392117, "coord": [48.831731660986215, 2.3878563351392117], "stop_id": 5478364, "stop_desc": "FACE 30 AVENUE DES TERROIRS DE FRANCE - 75112", "stop_name": "TERROIRS DE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.3878563351392117, 48.831731660986215]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "75e69810ade47d1658df5ee9779899f56454c642", "fields": {"departement": "75", "stop_lat": 48.83159674820942, "code_postal": "75112", "stop_lon": 2.3880876337612835, "coord": [48.83159674820942, 2.3880876337612835], "stop_id": 5478365, "stop_desc": "44-46 AVENUE DES TERROIRS DE FRANCE - 75112", "stop_name": "TERROIRS DE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.3880876337612835, 48.83159674820942]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2fe45c5f118e17f8caa2612c01380399f8d38fb2", "fields": {"departement": "75", "stop_lat": 48.82755015444301, "code_postal": "75112", "stop_lon": 2.3929160999411563, "coord": [48.82755015444301, 2.3929160999411563], "stop_id": 5478366, "stop_desc": "RUE DU GENERAL DE LANGLE DE CARY - 75112", "stop_name": "BERCY"}, "geometry": {"type": "Point", "coordinates": [2.3929160999411563, 48.82755015444301]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a912431ec9acf0da0ed68863f9db222c76dfd201", "fields": {"departement": "75", "stop_lat": 48.8315739894512, "code_postal": "75112", "stop_lon": 2.398270535794567, "coord": [48.8315739894512, 2.398270535794567], "stop_id": 5478370, "stop_desc": "AVENUE DE LA PORTE DE CHARENTON - 75112", "stop_name": "PORTE DE CHARENTON"}, "geometry": {"type": "Point", "coordinates": [2.398270535794567, 48.8315739894512]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9a71a8984294afaa1d3fb6f0b2333fe2acfe8e86", "fields": {"departement": "94", "stop_lat": 48.828983406255524, "code_postal": "94018", "stop_lon": 2.402324120933582, "coord": [48.828983406255524, 2.402324120933582], "stop_id": 5478372, "stop_desc": "172 RUE DE PARIS - 94018", "stop_name": "FELIX LANGLAIS"}, "geometry": {"type": "Point", "coordinates": [2.402324120933582, 48.828983406255524]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0418901b935311b69803e7eedc130814df2a3b45", "fields": {"departement": "94", "stop_lat": 48.81835494535775, "code_postal": "94069", "stop_lon": 2.424263840734881, "coord": [48.81835494535775, 2.424263840734881], "stop_id": 5478381, "stop_desc": "3 RUE DU VAL D'OSNE - 94069", "stop_name": "VAL D'OSNE"}, "geometry": {"type": "Point", "coordinates": [2.424263840734881, 48.81835494535775]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "252bbad6134752a79caeea3fd053eba7a3fbc174", "fields": {"departement": "94", "stop_lat": 48.81802692471475, "code_postal": "94069", "stop_lon": 2.4410444069161104, "coord": [48.81802692471475, 2.4410444069161104], "stop_id": 5478388, "stop_desc": "98-100 RUE DU MARECHAL LECLERC - 94069", "stop_name": "MARECHAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.4410444069161104, 48.81802692471475]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "25c5b1f72ca28de8c5356653a72bf01121f9a530", "fields": {"departement": "94", "stop_lat": 48.81799355417233, "code_postal": "94069", "stop_lon": 2.4481487511090174, "coord": [48.81799355417233, 2.4481487511090174], "stop_id": 5478393, "stop_desc": "FACE 156 RUE DU MARECHAL LECLERC - 94069", "stop_name": "CFA - ANDRIEU"}, "geometry": {"type": "Point", "coordinates": [2.4481487511090174, 48.81799355417233]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "255e8619dfa2b79ef03ddbc8fad5099a92bd20d3", "fields": {"departement": "94", "stop_lat": 48.81477725565159, "code_postal": "94069", "stop_lon": 2.4561032273681587, "coord": [48.81477725565159, 2.4561032273681587], "stop_id": 5478399, "stop_desc": "PLACE DE L'ECLUSE - 94069", "stop_name": "PLACE DE L'ECLUSE"}, "geometry": {"type": "Point", "coordinates": [2.4561032273681587, 48.81477725565159]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "879c6519aea099d0431962825051c95bbfbc1c6e", "fields": {"departement": "94", "stop_lat": 48.821606439542855, "code_postal": "94018", "stop_lon": 2.4141972075539684, "coord": [48.821606439542855, 2.4141972075539684], "stop_id": 5478402, "stop_desc": "RUE DE LA REPUBLIQUE - 94018", "stop_name": "CHARENTON-ECOLES"}, "geometry": {"type": "Point", "coordinates": [2.4141972075539684, 48.821606439542855]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c48fd1ee0422c631d670585a3655d1581e7e97a4", "fields": {"departement": "75", "stop_lat": 48.84136965468415, "code_postal": "75112", "stop_lon": 2.4389125278259525, "coord": [48.84136965468415, 2.4389125278259525], "stop_id": 5478407, "stop_desc": "COURS DES MARECHAUX - 75112", "stop_name": "PARC FLORAL"}, "geometry": {"type": "Point", "coordinates": [2.4389125278259525, 48.84136965468415]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c942594450215635eb9744436ebf4a552a0a4fa0", "fields": {"departement": "75", "stop_lat": 48.834387549315956, "code_postal": "75112", "stop_lon": 2.44761198892569, "coord": [48.834387549315956, 2.44761198892569], "stop_id": 5478413, "stop_desc": "ROUTE DU CHAMP DE MANOEUVRE - 75112", "stop_name": "CARTOUCHERIE"}, "geometry": {"type": "Point", "coordinates": [2.44761198892569, 48.834387549315956]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4a335b2d9e513c7fc0e454deb62c81dd53569bab", "fields": {"departement": "75", "stop_lat": 48.83282390554756, "code_postal": "75112", "stop_lon": 2.456716345229619, "coord": [48.83282390554756, 2.456716345229619], "stop_id": 5478417, "stop_desc": "AVENUE DU TREMBLAY - 75112", "stop_name": "INSEP"}, "geometry": {"type": "Point", "coordinates": [2.456716345229619, 48.83282390554756]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fa6685e22810c1caf0523fbb5bbf48902c1bf41e", "fields": {"departement": "75", "stop_lat": 48.82735178921718, "code_postal": "75112", "stop_lon": 2.4640953036207613, "coord": [48.82735178921718, 2.4640953036207613], "stop_id": 5478420, "stop_desc": "AVENUE DU TREMBLAY - 75112", "stop_name": "CARREFOUR DE BEAUTE"}, "geometry": {"type": "Point", "coordinates": [2.4640953036207613, 48.82735178921718]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a282b8952ea811c1f53bfcd553d4ce6000b1c433", "fields": {"departement": "94", "stop_lat": 48.81484600114718, "code_postal": "94042", "stop_lon": 2.467698390615643, "coord": [48.81484600114718, 2.467698390615643], "stop_id": 5478426, "stop_desc": "BOULEVARD DU MARECHAL LECLERC - 94042", "stop_name": "REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.467698390615643, 48.81484600114718]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1767f9017b653567bb08eeb87d5e8c04a96d747e", "fields": {"departement": "94", "stop_lat": 48.81078159169864, "code_postal": "94068", "stop_lon": 2.469457230202651, "coord": [48.81078159169864, 2.469457230202651], "stop_id": 5478428, "stop_desc": "6 BOULEVARD MAURICE BERTEAUX - 94068", "stop_name": "MAURICE BERTEAUX"}, "geometry": {"type": "Point", "coordinates": [2.469457230202651, 48.81078159169864]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a01c305fad77860c8ce80b2724fa2cb71e766f46", "fields": {"departement": "94", "stop_lat": 48.80093815541192, "code_postal": "94068", "stop_lon": 2.471051223419979, "coord": [48.80093815541192, 2.471051223419979], "stop_id": 5478436, "stop_desc": "RUE DU CHEMIN VERT - 94068", "stop_name": "CHEMIN VERT"}, "geometry": {"type": "Point", "coordinates": [2.471051223419979, 48.80093815541192]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "95396d0467b4fcfc7fa6ed5704230f593fc8458f", "fields": {"departement": "94", "stop_lat": 48.80053272098549, "code_postal": "94068", "stop_lon": 2.47192092508883, "coord": [48.80053272098549, 2.47192092508883], "stop_id": 5478438, "stop_desc": "RUE DU PONT DE CRETEIL - 94068", "stop_name": "PONT DE CRETEIL"}, "geometry": {"type": "Point", "coordinates": [2.47192092508883, 48.80053272098549]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a792044ff5353de978fc39695c07ca6f04f0e84d", "fields": {"departement": "94", "stop_lat": 48.79533218010759, "code_postal": "94068", "stop_lon": 2.4842055014973234, "coord": [48.79533218010759, 2.4842055014973234], "stop_id": 5478441, "stop_desc": "76 RUE GARIBALDI - 94068", "stop_name": "GARIBALDI"}, "geometry": {"type": "Point", "coordinates": [2.4842055014973234, 48.79533218010759]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8e6bdb6b1b46ceb09c7f8f136674e9122be0789a", "fields": {"departement": "94", "stop_lat": 48.79339690982196, "code_postal": "94068", "stop_lon": 2.4865126281236076, "coord": [48.79339690982196, 2.4865126281236076], "stop_id": 5478443, "stop_desc": "22 PLACE JOHN KENNEDY - 94068", "stop_name": "ADAMVILLE"}, "geometry": {"type": "Point", "coordinates": [2.4865126281236076, 48.79339690982196]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "53fd0d5a5802b8dec233bac5dae393c689a27f41", "fields": {"departement": "94", "stop_lat": 48.793980368869406, "code_postal": "94068", "stop_lon": 2.487112867998451, "coord": [48.793980368869406, 2.487112867998451], "stop_id": 5478444, "stop_desc": "3 PLACE JOHN KENNEDY - 94068", "stop_name": "ADAMVILLE"}, "geometry": {"type": "Point", "coordinates": [2.487112867998451, 48.793980368869406]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b4e146c0bb72d524c26fb4130c67a94c6f2dad51", "fields": {"departement": "94", "stop_lat": 48.79379060883489, "code_postal": "94068", "stop_lon": 2.494852798783976, "coord": [48.79379060883489, 2.494852798783976], "stop_id": 5478447, "stop_desc": "94-96 BOULEVARD DE BELLECHASSE - 94068", "stop_name": "PLACE RIMINI"}, "geometry": {"type": "Point", "coordinates": [2.494852798783976, 48.79379060883489]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c3d7f76274b99e4659938f5f27c5167d2b8427ff", "fields": {"departement": "94", "stop_lat": 48.794866905765424, "code_postal": "94068", "stop_lon": 2.496542953390329, "coord": [48.794866905765424, 2.496542953390329], "stop_id": 5478449, "stop_desc": "37 RUE EDGAR QUINET - 94068", "stop_name": "DELERUE"}, "geometry": {"type": "Point", "coordinates": [2.496542953390329, 48.794866905765424]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7fd6ac6ffa2ecc0cd931f04f244a3c6481c0f470", "fields": {"departement": "95", "stop_lat": 48.99814052493296, "code_postal": "95585", "stop_lon": 2.3723951090647155, "coord": [48.99814052493296, 2.3723951090647155], "stop_id": 4238761, "stop_desc": "R JEAN ZAY - 95585", "stop_name": "MAISON DE RETRAITE"}, "geometry": {"type": "Point", "coordinates": [2.3723951090647155, 48.99814052493296]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "585a234a3a136b2ea6a1eb9c70c4d0ebc32ce514", "fields": {"departement": "95", "stop_lat": 48.988595467302254, "code_postal": "95585", "stop_lon": 2.3771405144502658, "coord": [48.988595467302254, 2.3771405144502658], "stop_id": 4238766, "stop_desc": "0 BOULEVARD FRANCOIS MITTERRAND - 95585", "stop_name": "MOZART - MALESHERBES"}, "geometry": {"type": "Point", "coordinates": [2.3771405144502658, 48.988595467302254]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "14623841a159daa6213e82821a70565adff3c0d8", "fields": {"departement": "95", "stop_lat": 48.97923057772253, "code_postal": "95585", "stop_lon": 2.3799593381925406, "coord": [48.97923057772253, 2.3799593381925406], "stop_id": 4238769, "stop_desc": "35 AVENUE PAUL VALERY - 95585", "stop_name": "PAUL VALERY"}, "geometry": {"type": "Point", "coordinates": [2.3799593381925406, 48.97923057772253]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "77378cf7e788d5367a426d38dbaf93ee33a79ff5", "fields": {"departement": "95", "stop_lat": 48.97832069546756, "code_postal": "95585", "stop_lon": 2.3858290094265384, "coord": [48.97832069546756, 2.3858290094265384], "stop_id": 4238770, "stop_desc": "AVENUE PAUL VALERY - 95585", "stop_name": "LOCHERES"}, "geometry": {"type": "Point", "coordinates": [2.3858290094265384, 48.97832069546756]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3ead8993f1395e4213a68f035d9ca1e58d0adb82", "fields": {"departement": "95", "stop_lat": 48.976682991718704, "code_postal": "95268", "stop_lon": 2.390864954082392, "coord": [48.976682991718704, 2.390864954082392], "stop_id": 4238771, "stop_desc": "PISTE GARE ROUTIERE - 95268", "stop_name": "GARGES - SARCELLES RER"}, "geometry": {"type": "Point", "coordinates": [2.390864954082392, 48.976682991718704]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b1a62ffa2512b5116da46bdad1dd4b3f23e4ba32", "fields": {"departement": "93", "stop_lat": 48.93884732171142, "code_postal": "93013", "stop_lon": 2.424302609481486, "coord": [48.93884732171142, 2.424302609481486], "stop_id": 4238784, "stop_desc": "35 AVENUE J.F KENNEDY - 93013", "stop_name": "CIMETIERE DU BOURGET"}, "geometry": {"type": "Point", "coordinates": [2.424302609481486, 48.93884732171142]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f69cdbb2abbd00380d90a4d2baac8caa9a0aa9a2", "fields": {"departement": "93", "stop_lat": 48.9364636778597, "code_postal": "93013", "stop_lon": 2.4271768776938742, "coord": [48.9364636778597, 2.4271768776938742], "stop_id": 4238785, "stop_desc": "95 AVENUE DE LA DIVISION LECLERC - 93013", "stop_name": "PIERRE CURIE"}, "geometry": {"type": "Point", "coordinates": [2.4271768776938742, 48.9364636778597]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a7a7a21e6bccfe6c29e5f7acc8afae0eba70d040", "fields": {"departement": "94", "stop_lat": 48.79793023194136, "code_postal": "94016", "stop_lon": 2.328466035866289, "coord": [48.79793023194136, 2.328466035866289], "stop_id": 4255013, "stop_desc": "30 AVENUE CARNOT - 94016", "stop_name": "ARCUEIL-CACHAN RER"}, "geometry": {"type": "Point", "coordinates": [2.328466035866289, 48.79793023194136]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d5cc43ccc9cca0c115827d767cbc95f093bfb0b9", "fields": {"departement": "92", "stop_lat": 48.92762933986601, "code_postal": "92025", "stop_lon": 2.2470204972043137, "coord": [48.92762933986601, 2.2470204972043137], "stop_id": 4274230, "stop_desc": "0 R PAUL BERT - 92025", "stop_name": "AUDRA"}, "geometry": {"type": "Point", "coordinates": [2.2470204972043137, 48.92762933986601]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6bd95ba2c0aef81f19ac4b4dd59d1f78c29e6688", "fields": {"departement": "92", "stop_lat": 48.926919322818385, "code_postal": "92025", "stop_lon": 2.246953541232612, "coord": [48.926919322818385, 2.246953541232612], "stop_id": 4274232, "stop_desc": "17 RUE PAUL BERT - 92025", "stop_name": "AUDRA."}, "geometry": {"type": "Point", "coordinates": [2.246953541232612, 48.926919322818385]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aa58f6dd96f2f7c878783d3f1647841233a64bfd", "fields": {"departement": "92", "stop_lat": 48.9235833559115, "code_postal": "92025", "stop_lon": 2.2569830831008257, "coord": [48.9235833559115, 2.2569830831008257], "stop_id": 4274240, "stop_desc": "75 RUE DU BOURNARD - 92025", "stop_name": "RHIN ET DANUBE"}, "geometry": {"type": "Point", "coordinates": [2.2569830831008257, 48.9235833559115]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "77f3f79a176fee0f7b05b923258969ef856d1c7a", "fields": {"departement": "92", "stop_lat": 48.920787850383306, "code_postal": "92009", "stop_lon": 2.2706653103855183, "coord": [48.920787850383306, 2.2706653103855183], "stop_id": 4274246, "stop_desc": "FACE 7 RUE HOCHE - 92009", "stop_name": "CUNY"}, "geometry": {"type": "Point", "coordinates": [2.2706653103855183, 48.920787850383306]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ff6777adb816ecf06067c82c720dca40d921cfc2", "fields": {"departement": "92", "stop_lat": 48.91664590727471, "code_postal": "92009", "stop_lon": 2.2725796596115986, "coord": [48.91664590727471, 2.2725796596115986], "stop_id": 4274249, "stop_desc": "FACE 42 RUE D'ESTIENNE D'ORVES - 92009", "stop_name": "LA PAIX"}, "geometry": {"type": "Point", "coordinates": [2.2725796596115986, 48.91664590727471]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "03cca3f1ecaed87984f0447feac9716a4ca67bea", "fields": {"departement": "92", "stop_lat": 48.91044929014392, "code_postal": "92009", "stop_lon": 2.2646522546116814, "coord": [48.91044929014392, 2.2646522546116814], "stop_id": 4274256, "stop_desc": "28 RUE PELLETIER - 92009", "stop_name": "JOIGNEAUX - CAMUS"}, "geometry": {"type": "Point", "coordinates": [2.2646522546116814, 48.91044929014392]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9809e1d7884e447eb76f69648bb67f208bc3f840", "fields": {"departement": "92", "stop_lat": 48.90738494010711, "code_postal": "92009", "stop_lon": 2.265038285359078, "coord": [48.90738494010711, 2.265038285359078], "stop_id": 4274258, "stop_desc": "FACE 5 AVENUE DE L'EUROPE - 92009", "stop_name": "CHEVREUL"}, "geometry": {"type": "Point", "coordinates": [2.265038285359078, 48.90738494010711]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "662cb3adb405acf3cbd20f3dacdeb4625015abd4", "fields": {"departement": "92", "stop_lat": 48.90616957410082, "code_postal": "92026", "stop_lon": 2.2616316951512183, "coord": [48.90616957410082, 2.2616316951512183], "stop_id": 4274259, "stop_desc": "FACE 14 RUE DES MINIMES - 92026", "stop_name": "MOULIN DES BRUYERES"}, "geometry": {"type": "Point", "coordinates": [2.2616316951512183, 48.90616957410082]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6ec138b18e9517ed72dba3a7f9d1fc62e0971935", "fields": {"departement": "93", "stop_lat": 48.95663998393267, "code_postal": "93005", "stop_lon": 2.4654219542703824, "coord": [48.95663998393267, 2.4654219542703824], "stop_id": 4274273, "stop_desc": "VOIE PARALLELE A L'ENTREPOT NUMERO 1 - 93005", "stop_name": "GARONOR"}, "geometry": {"type": "Point", "coordinates": [2.4654219542703824, 48.95663998393267]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4f22faf731fabc165158d639a61ff81d734da021", "fields": {"departement": "93", "stop_lat": 48.94680572307827, "code_postal": "93007", "stop_lon": 2.440470299669143, "coord": [48.94680572307827, 2.440470299669143], "stop_id": 4274285, "stop_desc": "42 RUE DES MARTYRS DE LA DEPORTATION - 93007", "stop_name": "LOUIS BLERIOT"}, "geometry": {"type": "Point", "coordinates": [2.440470299669143, 48.94680572307827]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "134e93cf7527719ebdf96146b951e2dd83e9fb5e", "fields": {"departement": "93", "stop_lat": 48.94552541413175, "code_postal": "93007", "stop_lon": 2.4452020439489845, "coord": [48.94552541413175, 2.4452020439489845], "stop_id": 4274286, "stop_desc": "FACE 55BIS AVENUE GEORGES GUYNEMER - 93007", "stop_name": "MARIA VALTAT"}, "geometry": {"type": "Point", "coordinates": [2.4452020439489845, 48.94552541413175]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "12d229b84338c365669f8b7f205e0de6dc9de9df", "fields": {"departement": "93", "stop_lat": 48.94349249031491, "code_postal": "93007", "stop_lon": 2.4653075490783922, "coord": [48.94349249031491, 2.4653075490783922], "stop_id": 4274293, "stop_desc": "13 AVENUE DE LA DIVISION LECLERC - 93007", "stop_name": "LIBERATION"}, "geometry": {"type": "Point", "coordinates": [2.4653075490783922, 48.94349249031491]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "26ac04df7a703d0fe2a6cd99de40b2ab6c93fa9e", "fields": {"departement": "93", "stop_lat": 48.93705588476023, "code_postal": "93007", "stop_lon": 2.458661969182226, "coord": [48.93705588476023, 2.458661969182226], "stop_id": 4274299, "stop_desc": "FACE 18 AVENUE HENRI BARBUSSE - 93007", "stop_name": "ANCIENNE MAIRIE DE LE_BLANC-MESNIL"}, "geometry": {"type": "Point", "coordinates": [2.458661969182226, 48.93705588476023]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "22d99dcfc2474299f5860ba9bc290b421f5f88f7", "fields": {"departement": "93", "stop_lat": 48.93281739515088, "code_postal": "93029", "stop_lon": 2.455364753088356, "coord": [48.93281739515088, 2.455364753088356], "stop_id": 4274303, "stop_desc": "193 RUE ANATOLE FRANCE - 93029", "stop_name": "DRANCY RER"}, "geometry": {"type": "Point", "coordinates": [2.455364753088356, 48.93281739515088]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2ec2bf14d29befd2c2462c2b370ce5d69ffccc12", "fields": {"departement": "93", "stop_lat": 48.92581313170106, "code_postal": "93029", "stop_lon": 2.4588129125897304, "coord": [48.92581313170106, 2.4588129125897304], "stop_id": 4274311, "stop_desc": "FACE 63 RUE DU DOCTEUR ALBERT SCHWEITZER - 93029", "stop_name": "STADE CHARLES SAGE"}, "geometry": {"type": "Point", "coordinates": [2.4588129125897304, 48.92581313170106]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "84e40f09577a4d9457ef940d018450a4a5ea00e4", "fields": {"departement": "94", "stop_lat": 48.756961219677066, "code_postal": "94034", "stop_lon": 2.315300390249999, "coord": [48.756961219677066, 2.315300390249999], "stop_id": 4274391, "stop_desc": "FACE 65 BD PASTEUR - 94034", "stop_name": "LA PEUPLERAIE"}, "geometry": {"type": "Point", "coordinates": [2.315300390249999, 48.756961219677066]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "70545c33770a088d13d2d1bba5c6019b659603b1", "fields": {"departement": "94", "stop_lat": 48.75273637115016, "code_postal": "94034", "stop_lon": 2.3131680923667566, "coord": [48.75273637115016, 2.3131680923667566], "stop_id": 4274393, "stop_desc": "AVENUE DU PARC DES SPORTS - 94034", "stop_name": "8 MAI 1945"}, "geometry": {"type": "Point", "coordinates": [2.3131680923667566, 48.75273637115016]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9fa01555eacaecc85c4ce50bf42e940e6ee3a409", "fields": {"departement": "94", "stop_lat": 48.773617476536444, "code_postal": "94038", "stop_lon": 2.324390644589767, "coord": [48.773617476536444, 2.324390644589767], "stop_id": 4274406, "stop_desc": "49 AVENUE CHARLES FLOUQUET - 94038", "stop_name": "COLLEGE RONSARD"}, "geometry": {"type": "Point", "coordinates": [2.324390644589767, 48.773617476536444]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2503578b0ae213f416dd131df4d4aff4cb7b2e62", "fields": {"departement": "94", "stop_lat": 48.77572986087126, "code_postal": "94038", "stop_lon": 2.326389159474474, "coord": [48.77572986087126, 2.326389159474474], "stop_id": 4274407, "stop_desc": "4 AVENUE HENRI BARBUSSE - 94038", "stop_name": "BARBUSSE - LARROUMES"}, "geometry": {"type": "Point", "coordinates": [2.326389159474474, 48.77572986087126]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "44204a1e35b56f10c4d15559120022155029da6c", "fields": {"departement": "92", "stop_lat": 48.88186447998276, "code_postal": "92050", "stop_lon": 2.213987155533238, "coord": [48.88186447998276, 2.213987155533238], "stop_id": 4025370, "stop_desc": "7 R PAUL BERTIN - 92050", "stop_name": "PAUL BERTIN"}, "geometry": {"type": "Point", "coordinates": [2.213987155533238, 48.88186447998276]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a6926700386a89cf32276ddb1e2d9b6aa521f35f", "fields": {"departement": "92", "stop_lat": 48.88133334185547, "code_postal": "92050", "stop_lon": 2.213129941737652, "coord": [48.88133334185547, 2.213129941737652], "stop_id": 4025382, "stop_desc": "214-216 R PHILIPPE TRIAIRE - 92050", "stop_name": "LES LOUVETIERS"}, "geometry": {"type": "Point", "coordinates": [2.213129941737652, 48.88133334185547]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "02991052d24d903b14e129ac488398dd0e4df35e", "fields": {"departement": "75", "stop_lat": 48.84420733285396, "code_postal": "75112", "stop_lon": 2.4416686940517773, "coord": [48.84420733285396, 2.4416686940517773], "stop_id": 4028763, "stop_desc": "AVENUE DE NOGENT - 75112", "stop_name": "CHATEAU DE VINCENNES"}, "geometry": {"type": "Point", "coordinates": [2.4416686940517773, 48.84420733285396]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "96e3cb210e15f70d8824c850054cadfefb0631a8", "fields": {"departement": "75", "stop_lat": 48.84246550312074, "code_postal": "75112", "stop_lon": 2.449617167533425, "coord": [48.84246550312074, 2.449617167533425], "stop_id": 4028765, "stop_desc": "AVENUE DE LA PEPINIERE - 75112", "stop_name": "TREMBLAY - PEPINIERE"}, "geometry": {"type": "Point", "coordinates": [2.449617167533425, 48.84246550312074]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "524cb5476ad70c46cbaa79877486cc95436fbe22", "fields": {"departement": "94", "stop_lat": 48.84702899066013, "code_postal": "94080", "stop_lon": 2.4519011919523135, "coord": [48.84702899066013, 2.4519011919523135], "stop_id": 4028769, "stop_desc": "FACE 3 PLACE DU MARECHAL LYAUTEY - 94080", "stop_name": "CLEMENT VIENOT"}, "geometry": {"type": "Point", "coordinates": [2.4519011919523135, 48.84702899066013]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "db07ff3c50bb0aa49d685610caa593c009e35b0a", "fields": {"departement": "94", "stop_lat": 48.843645855174145, "code_postal": "94033", "stop_lon": 2.4645164108617656, "coord": [48.843645855174145, 2.4645164108617656], "stop_id": 4028771, "stop_desc": "FACE12 BIS PLACE MOREAU DAVID - 94033", "stop_name": "FONTENAY-SOUS-BOIS RER"}, "geometry": {"type": "Point", "coordinates": [2.4645164108617656, 48.843645855174145]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2ab12ce1357dee7589fc16cbf8c5c4c9ca8a4b8c", "fields": {"departement": "75", "stop_lat": 48.838778695962546, "code_postal": "75112", "stop_lon": 2.4606240718932018, "coord": [48.838778695962546, 2.4606240718932018], "stop_id": 4028773, "stop_desc": "AV DE NOGENT - 75112", "stop_name": "PORTE JAUNE"}, "geometry": {"type": "Point", "coordinates": [2.4606240718932018, 48.838778695962546]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ba3e71841b692c708318dd268fed5733e505d1b9", "fields": {"departement": "94", "stop_lat": 48.835945431006095, "code_postal": "94052", "stop_lon": 2.4709645048297553, "coord": [48.835945431006095, 2.4709645048297553], "stop_id": 4028775, "stop_desc": "FACE 7-9 AV GEORGES CLEMENCEAU - 94052", "stop_name": "NOGENT-SUR-MARNE RER - PIERRE SEMARD"}, "geometry": {"type": "Point", "coordinates": [2.4709645048297553, 48.835945431006095]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "361fe1ec2381569fa4f0972cd07f809b2a6520b2", "fields": {"departement": "94", "stop_lat": 48.83547370371285, "code_postal": "94052", "stop_lon": 2.474802599415442, "coord": [48.83547370371285, 2.474802599415442], "stop_id": 4028777, "stop_desc": "12 GR CHARLES DE GAULLE - 94052", "stop_name": "PLACE DU GENERAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.474802599415442, 48.83547370371285]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5e10dfae50e5f90fbc55c4746d981a8004978465", "fields": {"departement": "94", "stop_lat": 48.836408146911246, "code_postal": "94052", "stop_lon": 2.482592755001368, "coord": [48.836408146911246, 2.482592755001368], "stop_id": 4028782, "stop_desc": "1 AVENUE DE LATTRE DE TASSIGNY - 94052", "stop_name": "SOUS-PREFECTURE - JULES FERRY"}, "geometry": {"type": "Point", "coordinates": [2.482592755001368, 48.836408146911246]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b0f414aec7e4b6f17f55d1f4881845f23f4664bf", "fields": {"departement": "94", "stop_lat": 48.836159089337194, "code_postal": "94052", "stop_lon": 2.4877384362504795, "coord": [48.836159089337194, 2.4877384362504795], "stop_id": 4028784, "stop_desc": "27 RUE CHARLES VII - 94052", "stop_name": "RUE DU PORT"}, "geometry": {"type": "Point", "coordinates": [2.4877384362504795, 48.836159089337194]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "729d5cd20537133225057e04a1988435753b7d30", "fields": {"departement": "94", "stop_lat": 48.83550556446465, "code_postal": "94052", "stop_lon": 2.4927330950685254, "coord": [48.83550556446465, 2.4927330950685254], "stop_id": 4028785, "stop_desc": "26 BIS RUE JACQUES KABLE - 94052", "stop_name": "VIADUC"}, "geometry": {"type": "Point", "coordinates": [2.4927330950685254, 48.83550556446465]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "abca22fe693faed4dba635f841cff423e1a2c4a9", "fields": {"departement": "94", "stop_lat": 48.83842408841958, "code_postal": "94058", "stop_lon": 2.494593529552752, "coord": [48.83842408841958, 2.494593529552752], "stop_id": 4028788, "stop_desc": "PLACE ROBERT BELVAUX - 94058", "stop_name": "NOGENT-LE-PERREUX RER"}, "geometry": {"type": "Point", "coordinates": [2.494593529552752, 48.83842408841958]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "35131df2c1b077a2fd3b035eb6df031e43656949", "fields": {"departement": "94", "stop_lat": 48.84093592361724, "code_postal": "94058", "stop_lon": 2.4981004635094584, "coord": [48.84093592361724, 2.4981004635094584], "stop_id": 4028789, "stop_desc": "44 BIS-46 AVENUE LEDRU-ROLLIN - 94058", "stop_name": "LE PARC"}, "geometry": {"type": "Point", "coordinates": [2.4981004635094584, 48.84093592361724]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "472dd266a459dc9189e834e3afd4dcdcc514f761", "fields": {"departement": "94", "stop_lat": 48.84109791971362, "code_postal": "94058", "stop_lon": 2.4979375730411966, "coord": [48.84109791971362, 2.4979375730411966], "stop_id": 4028790, "stop_desc": "FACE 52 AVENUE LEDRU-ROLLIN - 94058", "stop_name": "LE PARC"}, "geometry": {"type": "Point", "coordinates": [2.4979375730411966, 48.84109791971362]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "41ab9cfec7c0ae13ea059b502549c3f2aecc9c22", "fields": {"departement": "94", "stop_lat": 48.83427753993413, "code_postal": "94058", "stop_lon": 2.516009820486316, "coord": [48.83427753993413, 2.516009820486316], "stop_id": 4028802, "stop_desc": "219 AVENUE PIERRE BROSSOLETTE - 94058", "stop_name": "MARECHAL JOFFRE - PONT DE BRY"}, "geometry": {"type": "Point", "coordinates": [2.516009820486316, 48.83427753993413]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b54fd886323459b3287f498ac285fceab8127de1", "fields": {"departement": "94", "stop_lat": 48.83684957358511, "code_postal": "94015", "stop_lon": 2.520879219789748, "coord": [48.83684957358511, 2.520879219789748], "stop_id": 4028805, "stop_desc": "32 GRANDE RUE CHARLES DE GAULLE - 94015", "stop_name": "RUE DU PRESSOIR"}, "geometry": {"type": "Point", "coordinates": [2.520879219789748, 48.83684957358511]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "85d06fffa1e1914684d698702a74e09bb12ab1db", "fields": {"departement": "94", "stop_lat": 48.84218500063309, "code_postal": "94015", "stop_lon": 2.5229405575565873, "coord": [48.84218500063309, 2.5229405575565873], "stop_id": 4028808, "stop_desc": "FACE 23 BOULEVARD DU GENERAL GALLIENI - 94015", "stop_name": "PLACE CARNOT"}, "geometry": {"type": "Point", "coordinates": [2.5229405575565873, 48.84218500063309]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "da2ce0046abdbd1828fdc586ba09ddaf7c0a831a", "fields": {"departement": "94", "stop_lat": 48.8429306453061, "code_postal": "94015", "stop_lon": 2.5231474746796643, "coord": [48.8429306453061, 2.5231474746796643], "stop_id": 4028809, "stop_desc": "33 BOULEVARD DU GENERAL GALLIENI - 94015", "stop_name": "PLACE CARNOT"}, "geometry": {"type": "Point", "coordinates": [2.5231474746796643, 48.8429306453061]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "796c9ff14e119cda0671772262512f95d63f5124", "fields": {"departement": "94", "stop_lat": 48.83679452994152, "code_postal": "94015", "stop_lon": 2.5273188916761153, "coord": [48.83679452994152, 2.5273188916761153], "stop_id": 4028817, "stop_desc": "109 BOULEVARD PASTEUR - 94015", "stop_name": "DOCTEUR ARMAND BRILLARD"}, "geometry": {"type": "Point", "coordinates": [2.5273188916761153, 48.83679452994152]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "95b391a63b87144856640981122aa23a96e3994d", "fields": {"departement": "94", "stop_lat": 48.83278008495768, "code_postal": "94015", "stop_lon": 2.5310207786855186, "coord": [48.83278008495768, 2.5310207786855186], "stop_id": 4028823, "stop_desc": "BD PASTEUR - 94015", "stop_name": "GEORGES MELIES"}, "geometry": {"type": "Point", "coordinates": [2.5310207786855186, 48.83278008495768]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "057d9985f04f94eb28fd8e6bd3a350c3516304a2", "fields": {"departement": "94", "stop_lat": 48.83148010474214, "code_postal": "94079", "stop_lon": 2.534528220074093, "coord": [48.83148010474214, 2.534528220074093], "stop_id": 4028825, "stop_desc": "FACE 35 ROUTE ROUTE DE BRY - 94079", "stop_name": "ROUTE DE BRY - ARISTIDE BRIAND"}, "geometry": {"type": "Point", "coordinates": [2.534528220074093, 48.83148010474214]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7fa075e7f85c71efa0c058f64e105853474c689c", "fields": {"departement": "94", "stop_lat": 48.84287979631081, "code_postal": "94058", "stop_lon": 2.502790576045101, "coord": [48.84287979631081, 2.502790576045101], "stop_id": 4028835, "stop_desc": "FACE 72BIS AVENUE LEDRU-ROLLIN - 94058", "stop_name": "LEDRU-ROLLIN - GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.502790576045101, 48.84287979631081]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3e8bfbf31376d156e79a24dec7958ee0dbc4fb55", "fields": {"departement": "75", "stop_lat": 48.83894023183105, "code_postal": "75112", "stop_lon": 2.460855919192387, "coord": [48.83894023183105, 2.460855919192387], "stop_id": 4028841, "stop_desc": "AV DE NOGENT - 75112", "stop_name": "PORTE JAUNE"}, "geometry": {"type": "Point", "coordinates": [2.460855919192387, 48.83894023183105]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "73ba0583d63e334822bd1312b93a15b0e45a169a", "fields": {"departement": "94", "stop_lat": 48.8357349277931, "code_postal": "94052", "stop_lon": 2.489112285575055, "coord": [48.8357349277931, 2.489112285575055], "stop_id": 4028850, "stop_desc": "2 RUE JACQUES KABLE - 94052", "stop_name": "RUE DU PORT"}, "geometry": {"type": "Point", "coordinates": [2.489112285575055, 48.8357349277931]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e11d83604b184a386dabc992ccf62b90ad9b7bc0", "fields": {"departement": "94", "stop_lat": 48.83550556446465, "code_postal": "94052", "stop_lon": 2.4927330950685254, "coord": [48.83550556446465, 2.4927330950685254], "stop_id": 4028852, "stop_desc": "26 BIS RUE JACQUES KABLE - 94052", "stop_name": "VIADUC"}, "geometry": {"type": "Point", "coordinates": [2.4927330950685254, 48.83550556446465]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "60889e606deb5fb05af740e548764cbc4b8388df", "fields": {"departement": "94", "stop_lat": 48.84272630714998, "code_postal": "94058", "stop_lon": 2.5032938963627904, "coord": [48.84272630714998, 2.5032938963627904], "stop_id": 4028858, "stop_desc": "2 R DE LA STATION - 94058", "stop_name": "LEDRU ROLLIN - GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.5032938963627904, 48.84272630714998]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "32ceac826ea7f3cfadaac5b9a2b2a5e7ced1dd1e", "fields": {"departement": "94", "stop_lat": 48.84084377806442, "code_postal": "94058", "stop_lon": 2.5062289263976862, "coord": [48.84084377806442, 2.5062289263976862], "stop_id": 4028859, "stop_desc": "103 AVENUE DU GENERAL DE GAULLE - 94058", "stop_name": "MAIRIE DU PERREUX-SUR-MARNE"}, "geometry": {"type": "Point", "coordinates": [2.5062289263976862, 48.84084377806442]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "42a994ef6cf688acbbb0a973c3f91985a93051e1", "fields": {"departement": "94", "stop_lat": 48.838691488575265, "code_postal": "94058", "stop_lon": 2.5092036961467725, "coord": [48.838691488575265, 2.5092036961467725], "stop_id": 4028862, "stop_desc": "FACE 63 AVENUE DU GENERAL DE GAULLE - 94058", "stop_name": "MONTAIGNE"}, "geometry": {"type": "Point", "coordinates": [2.5092036961467725, 48.838691488575265]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b5edd3c24c34c6fc4fccd450a744717170c431a2", "fields": {"departement": "94", "stop_lat": 48.83593023716701, "code_postal": "94058", "stop_lon": 2.5106240895836107, "coord": [48.83593023716701, 2.5106240895836107], "stop_id": 4028863, "stop_desc": "16 ALLEE GUY MOQUET - 94058", "stop_name": "PLACE BEAUFRANCHET"}, "geometry": {"type": "Point", "coordinates": [2.5106240895836107, 48.83593023716701]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ad3b60403a35fd7676f04de8a87f144befe418bd", "fields": {"departement": "94", "stop_lat": 48.8429306453061, "code_postal": "94015", "stop_lon": 2.5231474746796643, "coord": [48.8429306453061, 2.5231474746796643], "stop_id": 4028876, "stop_desc": "33 BOULEVARD DU GENERAL GALLIENI - 94015", "stop_name": "PLACE CARNOT"}, "geometry": {"type": "Point", "coordinates": [2.5231474746796643, 48.8429306453061]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5d06ff2c239bb26c4dbd4c3a3ff86ce66e5efcab", "fields": {"departement": "94", "stop_lat": 48.83256110366599, "code_postal": "94015", "stop_lon": 2.5274803647566753, "coord": [48.83256110366599, 2.5274803647566753], "stop_id": 4028888, "stop_desc": "BOULEVARD PASTEUR - 94015", "stop_name": "HOPITAL SAINT-CAMILLE"}, "geometry": {"type": "Point", "coordinates": [2.5274803647566753, 48.83256110366599]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4486659a883f5f25d376d74115e4e87a669b54c3", "fields": {"departement": "94", "stop_lat": 48.826068431366515, "code_postal": "94079", "stop_lon": 2.540524210599729, "coord": [48.826068431366515, 2.540524210599729], "stop_id": 4028896, "stop_desc": "FACE 37 RUE DU GENERAL GALLIENI - 94079", "stop_name": "MAIRIE DE VILLIERS-SUR-MARNE"}, "geometry": {"type": "Point", "coordinates": [2.540524210599729, 48.826068431366515]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1e47b44bd86663808ab5ec7cdf0b3804f33483ba", "fields": {"departement": "94", "stop_lat": 48.82386008176018, "code_postal": "94079", "stop_lon": 2.5442179040062154, "coord": [48.82386008176018, 2.5442179040062154], "stop_id": 4028898, "stop_desc": "1 R DU CHEMIN DE FER - 94079", "stop_name": "VILLIERS-SUR-MARNE - LE PLESSIS-TREVISE RER"}, "geometry": {"type": "Point", "coordinates": [2.5442179040062154, 48.82386008176018]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "213437ad8512f0da96e79a474bae0f38bf49e9e4", "fields": {"departement": "94", "stop_lat": 48.82724329014408, "code_postal": "94079", "stop_lon": 2.541998956217836, "coord": [48.82724329014408, 2.541998956217836], "stop_id": 4028899, "stop_desc": "2 RUE DU GENERAL DE GAULLE - 94079", "stop_name": "EGLISE DE VILLIERS-SUR-MARNE"}, "geometry": {"type": "Point", "coordinates": [2.541998956217836, 48.82724329014408]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6b2c0f6f7f41637ba3190aef4578f7979a2705da", "fields": {"departement": "94", "stop_lat": 48.84287979631081, "code_postal": "94058", "stop_lon": 2.502790576045101, "coord": [48.84287979631081, 2.502790576045101], "stop_id": 4028902, "stop_desc": "FACE 72BIS AVENUE LEDRU-ROLLIN - 94058", "stop_name": "LEDRU-ROLLIN - GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.502790576045101, 48.84287979631081]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "48d6f01f254473298905ac9dae852bfbf72d257c", "fields": {"departement": "94", "stop_lat": 48.83278008495768, "code_postal": "94015", "stop_lon": 2.5310207786855186, "coord": [48.83278008495768, 2.5310207786855186], "stop_id": 4028908, "stop_desc": "BD PASTEUR - 94015", "stop_name": "GEORGES MELIES"}, "geometry": {"type": "Point", "coordinates": [2.5310207786855186, 48.83278008495768]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f90293ae91977d380fc6682bcf9a0696c9c3a67d", "fields": {"departement": "94", "stop_lat": 48.83256110366599, "code_postal": "94015", "stop_lon": 2.5274803647566753, "coord": [48.83256110366599, 2.5274803647566753], "stop_id": 4028909, "stop_desc": "BOULEVARD PASTEUR - 94015", "stop_name": "HOPITAL SAINT-CAMILLE"}, "geometry": {"type": "Point", "coordinates": [2.5274803647566753, 48.83256110366599]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9dbe3049ab240ed01e740703dc91a2ed2dec74ff", "fields": {"departement": "94", "stop_lat": 48.83679452994152, "code_postal": "94015", "stop_lon": 2.5273188916761153, "coord": [48.83679452994152, 2.5273188916761153], "stop_id": 4028911, "stop_desc": "109 BOULEVARD PASTEUR - 94015", "stop_name": "DOCTEUR ARMAND BRILLARD"}, "geometry": {"type": "Point", "coordinates": [2.5273188916761153, 48.83679452994152]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "41f8e1f17f2296d3f39d34b29959cb51a451fcc1", "fields": {"departement": "94", "stop_lat": 48.8429306453061, "code_postal": "94015", "stop_lon": 2.5231474746796643, "coord": [48.8429306453061, 2.5231474746796643], "stop_id": 4028915, "stop_desc": "33 BOULEVARD DU GENERAL GALLIENI - 94015", "stop_name": "PLACE CARNOT"}, "geometry": {"type": "Point", "coordinates": [2.5231474746796643, 48.8429306453061]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "48ec468a2b4070a03c6ae9750533d2f5187d9263", "fields": {"departement": "94", "stop_lat": 48.837931792305795, "code_postal": "94015", "stop_lon": 2.518459537824707, "coord": [48.837931792305795, 2.518459537824707], "stop_id": 4028918, "stop_desc": "17 BIS AVENUE DE RIGNY - 94015", "stop_name": "AVENUE DE RIGNY"}, "geometry": {"type": "Point", "coordinates": [2.518459537824707, 48.837931792305795]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "83d0c2087d55e45d6ab42006aec98795d41e725f", "fields": {"departement": "78", "stop_lat": 48.89703299526433, "code_postal": "78551", "stop_lon": 2.095390681983472, "coord": [48.89703299526433, 2.095390681983472], "stop_id": 4035022, "stop_desc": "FACE 2 PLACE ANDRE MALRAUX - 78551", "stop_name": "SAINT-GERMAIN-EN-LAYE RER"}, "geometry": {"type": "Point", "coordinates": [2.095390681983472, 48.89703299526433]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8101fd9e82b8543637fad7a1554d0c42b042de39", "fields": {"departement": "78", "stop_lat": 48.894185041399886, "code_postal": "78650", "stop_lon": 2.134467646052823, "coord": [48.894185041399886, 2.134467646052823], "stop_id": 4035026, "stop_desc": "FACE 61 BOULEVARD CARNOT - 78650", "stop_name": "HOTEL DE VILLE-LE VESINET CENTRE-RER"}, "geometry": {"type": "Point", "coordinates": [2.134467646052823, 48.894185041399886]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f72bf0cb87bef4acbd10e28c95e102ebab08dbba", "fields": {"departement": "78", "stop_lat": 48.889189464215384, "code_postal": "78146", "stop_lon": 2.157696874964597, "coord": [48.889189464215384, 2.157696874964597], "stop_id": 4035027, "stop_desc": "5-7 AVENUE DU MARECHAL FOCH - 78146", "stop_name": "MAIRIE - CHATOU - CROISSY RER"}, "geometry": {"type": "Point", "coordinates": [2.157696874964597, 48.889189464215384]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c623f9701a287c231b84d4c448428e8d531f4981", "fields": {"departement": "75", "stop_lat": 48.87709023274955, "code_postal": "75116", "stop_lon": 2.284142542845437, "coord": [48.87709023274955, 2.284142542845437], "stop_id": 4035035, "stop_desc": "85 AVENUE DE LA GRANDE ARMEE - 75116", "stop_name": "PORTE MAILLOT"}, "geometry": {"type": "Point", "coordinates": [2.284142542845437, 48.87709023274955]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8db7995cf9d827db15204a0e548b73f37f341dd1", "fields": {"departement": "75", "stop_lat": 48.87536697356267, "code_postal": "75108", "stop_lon": 2.325823281094452, "coord": [48.87536697356267, 2.325823281094452], "stop_id": 4035039, "stop_desc": "111 R SAINT-LAZARE - 75108", "stop_name": "GARE SAINT-LAZARE"}, "geometry": {"type": "Point", "coordinates": [2.325823281094452, 48.87536697356267]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0a69a0b941557ff6a2c650a065e9526176beda3f", "fields": {"departement": "93", "stop_lat": 48.902680473159826, "code_postal": "93047", "stop_lon": 2.56826649449064, "coord": [48.902680473159826, 2.56826649449064], "stop_id": 4035479, "stop_desc": "32 RUE DE LA TUILERIE - 93047", "stop_name": "MAISON DES JEUNES"}, "geometry": {"type": "Point", "coordinates": [2.56826649449064, 48.902680473159826]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "911dcf802c131cd99a4653be12af5d37cf0495f0", "fields": {"departement": "93", "stop_lat": 48.90465529470359, "code_postal": "93047", "stop_lon": 2.560054727205467, "coord": [48.90465529470359, 2.560054727205467], "stop_id": 4035481, "stop_desc": "FACE 9 AVENUE DE CLICHY - 93047", "stop_name": "LES BOSQUETS"}, "geometry": {"type": "Point", "coordinates": [2.560054727205467, 48.90465529470359]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a9c2d5e4e14fc6484a6bc5b301e35cd09fac830e", "fields": {"departement": "93", "stop_lat": 48.90709707631595, "code_postal": "93014", "stop_lon": 2.5566705035726716, "coord": [48.90709707631595, 2.5566705035726716], "stop_id": 4035483, "stop_desc": "AVENUE JEAN MOULIN - 93014", "stop_name": "EMILE ZOLA"}, "geometry": {"type": "Point", "coordinates": [2.5566705035726716, 48.90709707631595]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "724b1fa52c97948611932d5f873df427df67bf63", "fields": {"departement": "93", "stop_lat": 48.906457816424556, "code_postal": "93014", "stop_lon": 2.5573085596291145, "coord": [48.906457816424556, 2.5573085596291145], "stop_id": 4035484, "stop_desc": "AVENUE JEAN MOULIN - 93014", "stop_name": "EMILE ZOLA"}, "geometry": {"type": "Point", "coordinates": [2.5573085596291145, 48.906457816424556]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "11524d5a8dc388e3858dc98a842549100fe24ffa", "fields": {"departement": "93", "stop_lat": 48.9119045057799, "code_postal": "93014", "stop_lon": 2.552095973224604, "coord": [48.9119045057799, 2.552095973224604], "stop_id": 4035488, "stop_desc": "FACE 7 ALLEE VEUVE LINDET GIRARD - 93014", "stop_name": "LES MARRONNIERS"}, "geometry": {"type": "Point", "coordinates": [2.552095973224604, 48.9119045057799]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e9a2ab925c360dce480aca27c0f25aa5280f9356", "fields": {"departement": "93", "stop_lat": 48.90987793737344, "code_postal": "93014", "stop_lon": 2.5495788844374654, "coord": [48.90987793737344, 2.5495788844374654], "stop_id": 4035489, "stop_desc": "ALL DE GAGNY - 93014", "stop_name": "LA LORETTE"}, "geometry": {"type": "Point", "coordinates": [2.5495788844374654, 48.90987793737344]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "686dc4bd767d9712dff07a193e5d2d90e759a82f", "fields": {"departement": "93", "stop_lat": 48.904795960371835, "code_postal": "93014", "stop_lon": 2.546913292439642, "coord": [48.904795960371835, 2.546913292439642], "stop_id": 4035492, "stop_desc": "BOULEVARD GAGARINE - 93014", "stop_name": "GAGARINE"}, "geometry": {"type": "Point", "coordinates": [2.546913292439642, 48.904795960371835]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c0c1f68d41b8d8c04dec691b10e86f1ef08c71d6", "fields": {"departement": "93", "stop_lat": 48.90498336322662, "code_postal": "93014", "stop_lon": 2.542510634909016, "coord": [48.90498336322662, 2.542510634909016], "stop_id": 4035494, "stop_desc": "BOULEVARD GAGARINE - 93014", "stop_name": "AVENUE LADRETTE"}, "geometry": {"type": "Point", "coordinates": [2.542510634909016, 48.90498336322662]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bdcdaa45f60a62d07924dbd63a4ffc8bd29c5ef2", "fields": {"departement": "93", "stop_lat": 48.90611111259935, "code_postal": "93046", "stop_lon": 2.5234286814581375, "coord": [48.90611111259935, 2.5234286814581375], "stop_id": 4035501, "stop_desc": "FACE 87 BOULEVARD MARX DORMOY - 93046", "stop_name": "REPUBLIQUE - MARX DORMOY"}, "geometry": {"type": "Point", "coordinates": [2.5234286814581375, 48.90611111259935]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "18bfce7e7cc10e1a881bd276cfc4a581ce52ec6a", "fields": {"departement": "93", "stop_lat": 48.901497745826006, "code_postal": "93062", "stop_lon": 2.519540635286888, "coord": [48.901497745826006, 2.519540635286888], "stop_id": 4035504, "stop_desc": "4 AVENUE DE LIVRY - 93062", "stop_name": "ALLEE DES BOSQUETS"}, "geometry": {"type": "Point", "coordinates": [2.519540635286888, 48.901497745826006]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1ca52e3bfdfde687b78e1012c8084fb66981d627", "fields": {"departement": "93", "stop_lat": 48.905938588954406, "code_postal": "93057", "stop_lon": 2.5000745546903667, "coord": [48.905938588954406, 2.5000745546903667], "stop_id": 4035516, "stop_desc": "64 AVENUE JEAN JAURES - 93057", "stop_name": "JEAN-BAPTISTE CLEMENT - JAURES"}, "geometry": {"type": "Point", "coordinates": [2.5000745546903667, 48.905938588954406]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a7786bba19aa0de586a21016da4c80185e0019da", "fields": {"departement": "93", "stop_lat": 48.90748037088362, "code_postal": "93008", "stop_lon": 2.448885619248054, "coord": [48.90748037088362, 2.448885619248054], "stop_id": 4035534, "stop_desc": "PISTE GARE ROUTIERE - 93008", "stop_name": "BOBIGNY - PABLO PICASSO"}, "geometry": {"type": "Point", "coordinates": [2.448885619248054, 48.90748037088362]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3857fce4d95b54c659d60e5e40319c9aa139f3c9", "fields": {"departement": "93", "stop_lat": 48.89687201976259, "code_postal": "93008", "stop_lon": 2.432260578793238, "coord": [48.89687201976259, 2.432260578793238], "stop_id": 4035542, "stop_desc": "45-47 AVENUE DE METZ - 93008", "stop_name": "AVENUE DE METZ"}, "geometry": {"type": "Point", "coordinates": [2.432260578793238, 48.89687201976259]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "641ffb9250c88526e6e6ab9a02717a33393646cc", "fields": {"departement": "93", "stop_lat": 48.89564602908959, "code_postal": "93008", "stop_lon": 2.425429514998437, "coord": [48.89564602908959, 2.425429514998437], "stop_id": 4035543, "stop_desc": "3 AV DE PARIS - 93008", "stop_name": "RAYMOND QUENEAU-METRO"}, "geometry": {"type": "Point", "coordinates": [2.425429514998437, 48.89564602908959]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2d0449b8945346d54dfd8d4b93554676fdcf2db6", "fields": {"departement": "95", "stop_lat": 48.991552816451964, "code_postal": "95585", "stop_lon": 2.3746301578176694, "coord": [48.991552816451964, 2.3746301578176694], "stop_id": 4035654, "stop_desc": "FACE 4 AVENUE DIVISION LECLERC - 95585", "stop_name": "THEODORE BULLIER"}, "geometry": {"type": "Point", "coordinates": [2.3746301578176694, 48.991552816451964]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "62bbfa08e57ddeebad394ec49a4a20148afd1245", "fields": {"departement": "95", "stop_lat": 48.983472205531655, "code_postal": "95585", "stop_lon": 2.3799628396528343, "coord": [48.983472205531655, 2.3799628396528343], "stop_id": 4035658, "stop_desc": "AVENUE PAUL LANGEVIN - 95585", "stop_name": "PISCINE"}, "geometry": {"type": "Point", "coordinates": [2.3799628396528343, 48.983472205531655]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b1150de5ed6757d136e6000ce21a6476d755f8cf", "fields": {"departement": "95", "stop_lat": 48.979851278066924, "code_postal": "95585", "stop_lon": 2.3781577141658783, "coord": [48.979851278066924, 2.3781577141658783], "stop_id": 4035660, "stop_desc": "FACE 1 BOULEVARD DU MARECHAL DE LATTRE DE TASSIGNY - 95585", "stop_name": "PAUL VALERY - DE LATTRE DE TASSIGNY"}, "geometry": {"type": "Point", "coordinates": [2.3781577141658783, 48.979851278066924]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3697dc75db5d492860ed9758a75874488a134de6", "fields": {"departement": "95", "stop_lat": 48.97569199699532, "code_postal": "95268", "stop_lon": 2.396119736437475, "coord": [48.97569199699532, 2.396119736437475], "stop_id": 4035666, "stop_desc": "AVENUE CHARLES DE GAULLE - 95268", "stop_name": "JEAN-BAPTISTE COROT - LAMARTINE"}, "geometry": {"type": "Point", "coordinates": [2.396119736437475, 48.97569199699532]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9c63d775e8bb1a909c6f6c266d9cd38d01ae58dc", "fields": {"departement": "95", "stop_lat": 48.975961680577434, "code_postal": "95268", "stop_lon": 2.3959425734505366, "coord": [48.975961680577434, 2.3959425734505366], "stop_id": 4035667, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 95268", "stop_name": "JEAN-BAPTISTE COROT - LAMARTINE"}, "geometry": {"type": "Point", "coordinates": [2.3959425734505366, 48.975961680577434]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "16d6a46cb6d91921b1422580c9ad8ad9c533a0b5", "fields": {"departement": "95", "stop_lat": 48.96723761706791, "code_postal": "95268", "stop_lon": 2.3919334574113376, "coord": [48.96723761706791, 2.3919334574113376], "stop_id": 4035675, "stop_desc": "41-43 RUE PAUL VAILLANT COUTURIER - 95268", "stop_name": "PIERRE SEMARD"}, "geometry": {"type": "Point", "coordinates": [2.3919334574113376, 48.96723761706791]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5d179cb921643c957d283e08d79fe093d2cad8c7", "fields": {"departement": "93", "stop_lat": 48.96432742015381, "code_postal": "93072", "stop_lon": 2.388627456697834, "coord": [48.96432742015381, 2.388627456697834], "stop_id": 4035677, "stop_desc": "FACE 83 AVENUE JULES GUESDE - 93072", "stop_name": "L'AVENIR"}, "geometry": {"type": "Point", "coordinates": [2.388627456697834, 48.96432742015381]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7af6fd101b5d1813af64fc365454a9d3a45d7eba", "fields": {"departement": "93", "stop_lat": 48.95179255165845, "code_postal": "93072", "stop_lon": 2.384889891033903, "coord": [48.95179255165845, 2.384889891033903], "stop_id": 4035684, "stop_desc": "FACE 57 BOULEVARD MAXIME GORKI - 93072", "stop_name": "FRANCOIS BEGUE"}, "geometry": {"type": "Point", "coordinates": [2.384889891033903, 48.95179255165845]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "53b927a8c9b6e3737c5e22746d403809d48d0d03", "fields": {"departement": "93", "stop_lat": 48.909493616493236, "code_postal": "93001", "stop_lon": 2.378620257097494, "coord": [48.909493616493236, 2.378620257097494], "stop_id": 4035705, "stop_desc": "100 AVENUE VICTOR HUGO - 93001", "stop_name": "FELIX FAURE - VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.378620257097494, 48.909493616493236]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "252c31c8c249bd664876346ed5e02413f4dc1a39", "fields": {"departement": "75", "stop_lat": 48.89867744051649, "code_postal": "75118", "stop_lon": 2.363562821127319, "coord": [48.89867744051649, 2.363562821127319], "stop_id": 4035712, "stop_desc": "50 BOULEVARD NEY - 75118", "stop_name": "EMILE BERTIN"}, "geometry": {"type": "Point", "coordinates": [2.363562821127319, 48.89867744051649]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fd8ae4cc3d9523ed236b83ea0a791c596f7b6149", "fields": {"departement": "75", "stop_lat": 48.898479490665245, "code_postal": "75118", "stop_lon": 2.36459868486789, "coord": [48.898479490665245, 2.36459868486789], "stop_id": 4035713, "stop_desc": "7 BOULEVARD NEY - 75118", "stop_name": "EMILE BERTIN"}, "geometry": {"type": "Point", "coordinates": [2.36459868486789, 48.898479490665245]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ad05821ef4dbca74a21a1d6820b080a2828e40b0", "fields": {"departement": "75", "stop_lat": 48.897510031762884, "code_postal": "75118", "stop_lon": 2.359009523462753, "coord": [48.897510031762884, 2.359009523462753], "stop_id": 4035714, "stop_desc": "85-87 RUE DE LA CHAPELLE - 75118", "stop_name": "PORTE DE LA CHAPELLE"}, "geometry": {"type": "Point", "coordinates": [2.359009523462753, 48.897510031762884]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6f19a4502672c33967d8e017982908e3a6aa5f69", "fields": {"departement": "75", "stop_lat": 48.887318475652194, "code_postal": "75118", "stop_lon": 2.3595776289196335, "coord": [48.887318475652194, 2.3595776289196335], "stop_id": 4035722, "stop_desc": "39 RUE MARX DORMOY - 75118", "stop_name": "DEPARTEMENT - MARX DORMOY"}, "geometry": {"type": "Point", "coordinates": [2.3595776289196335, 48.887318475652194]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6150e8002e07af7e4857eff38d0775abd4e399bd", "fields": {"departement": "92", "stop_lat": 48.896889073971664, "code_postal": "92050", "stop_lon": 2.2209303386289885, "coord": [48.896889073971664, 2.2209303386289885], "stop_id": 4473048, "stop_desc": "0 BD DE PESARO - 92050", "stop_name": "NANTERRE-PREFECTURE RER"}, "geometry": {"type": "Point", "coordinates": [2.2209303386289885, 48.896889073971664]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "838e717ea2c684602dc919b01c40d15060782521", "fields": {"departement": "92", "stop_lat": 48.89652359969501, "code_postal": "92050", "stop_lon": 2.214947321784785, "coord": [48.89652359969501, 2.214947321784785], "stop_id": 4473052, "stop_desc": "BOULEVARD JACQUES GERMAIN SOUFFLOT - 92050", "stop_name": "PREFECTURE DES HAUTS-DE-SEINE"}, "geometry": {"type": "Point", "coordinates": [2.214947321784785, 48.89652359969501]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7ffa8895c7b550961d204dc7c0b90e2e89d11236", "fields": {"departement": "92", "stop_lat": 48.89412144881431, "code_postal": "92050", "stop_lon": 2.212458704841192, "coord": [48.89412144881431, 2.212458704841192], "stop_id": 4473053, "stop_desc": "137 AV FREDERIC ET IRENE JOLIOT CURIE - 92050", "stop_name": "JOLIOT-CURIE - COURBEVOIE"}, "geometry": {"type": "Point", "coordinates": [2.212458704841192, 48.89412144881431]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d8f4db786185fdaa73a613d96d20366be699dbd6", "fields": {"departement": "92", "stop_lat": 48.89300491332636, "code_postal": "92050", "stop_lon": 2.2104442000210622, "coord": [48.89300491332636, 2.2104442000210622], "stop_id": 4473055, "stop_desc": "85 AVENUE FREDERIC ET IRENE JOLIOT CURIE - 92050", "stop_name": "PALAIS DES SPORTS"}, "geometry": {"type": "Point", "coordinates": [2.2104442000210622, 48.89300491332636]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8b2f9a0fdc4244c863bb00367b2d7d531499fca3", "fields": {"departement": "92", "stop_lat": 48.89284340529102, "code_postal": "92050", "stop_lon": 2.2106899287691784, "coord": [48.89284340529102, 2.2106899287691784], "stop_id": 4473056, "stop_desc": "136 AVENUE FREDERIC ET IRENE JOLIOT CURIE - 92050", "stop_name": "PALAIS DES SPORTS"}, "geometry": {"type": "Point", "coordinates": [2.2106899287691784, 48.89284340529102]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5fd0783dfe70842dac6edc2e0b4cb9bbed3cb140", "fields": {"departement": "92", "stop_lat": 48.89146575447876, "code_postal": "92050", "stop_lon": 2.2082536517344415, "coord": [48.89146575447876, 2.2082536517344415], "stop_id": 4473058, "stop_desc": "96 AVENUE FREDERIC ET IRENE JOLIOT CURIE - 92050", "stop_name": "MAIRIE DE NANTERRE"}, "geometry": {"type": "Point", "coordinates": [2.2082536517344415, 48.89146575447876]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1f1f0aea4f8ee8096b57540f2c0d1f0bccef9835", "fields": {"departement": "92", "stop_lat": 48.88387910264952, "code_postal": "92063", "stop_lon": 2.191415575852575, "coord": [48.88387910264952, 2.191415575852575], "stop_id": 4473064, "stop_desc": "10 AVENUE PAUL DOUMER - 92063", "stop_name": "BOULEVARD NATIONAL"}, "geometry": {"type": "Point", "coordinates": [2.191415575852575, 48.88387910264952]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c587bfb55ca254ef336060ab68c895adc1800b78", "fields": {"departement": "92", "stop_lat": 48.88279774489227, "code_postal": "92063", "stop_lon": 2.1890747728507938, "coord": [48.88279774489227, 2.1890747728507938], "stop_id": 4473066, "stop_desc": "FACE 46 AVENUE PAUL DOUMER - 92063", "stop_name": "GABRIEL PERI"}, "geometry": {"type": "Point", "coordinates": [2.1890747728507938, 48.88279774489227]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4ed76f7bf31327a98ba472896e9ad6189e9347a8", "fields": {"departement": "92", "stop_lat": 48.88033043782723, "code_postal": "92063", "stop_lon": 2.1852664446552246, "coord": [48.88033043782723, 2.1852664446552246], "stop_id": 4473068, "stop_desc": "FACE 16 BOULEVARD DE L'HOPITAL STELL - 92063", "stop_name": "LE GUE"}, "geometry": {"type": "Point", "coordinates": [2.1852664446552246, 48.88033043782723]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c94c6ce8d175a478776cd2b05cff7900e568e412", "fields": {"departement": "92", "stop_lat": 48.85982860172332, "code_postal": "92073", "stop_lon": 2.215033862640823, "coord": [48.85982860172332, 2.215033862640823], "stop_id": 4473086, "stop_desc": "171 BOULEVARD HENRI SELLIER - 92073", "stop_name": "VAL D'OR"}, "geometry": {"type": "Point", "coordinates": [2.215033862640823, 48.85982860172332]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4294118ffd4b02143b2609cdbc45e5729dc94279", "fields": {"departement": "92", "stop_lat": 48.86805906191408, "code_postal": "92073", "stop_lon": 2.222057619036776, "coord": [48.86805906191408, 2.222057619036776], "stop_id": 4473091, "stop_desc": "FACE 49 BOULEVARD HENRI SELLIER - 92073", "stop_name": "LONGCHAMP"}, "geometry": {"type": "Point", "coordinates": [2.222057619036776, 48.86805906191408]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e7dfcbdbbf000c1a29aefcf4dc270adebcceb477", "fields": {"departement": "75", "stop_lat": 48.878707984696156, "code_postal": "75117", "stop_lon": 2.284236266860388, "coord": [48.878707984696156, 2.284236266860388], "stop_id": 4473121, "stop_desc": "FACE 93 BOULEVARD GOUVION-SAINT-CYR - 75117", "stop_name": "PORTE MAILLOT - PALAIS DES CONGRES"}, "geometry": {"type": "Point", "coordinates": [2.284236266860388, 48.878707984696156]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "125a55a0d562fd0c89ee8b171718e436aba3e500", "fields": {"departement": "92", "stop_lat": 48.8876927900033, "code_postal": "92050", "stop_lon": 2.2016533213360185, "coord": [48.8876927900033, 2.2016533213360185], "stop_id": 4473124, "stop_desc": "6 AVENUE FREDERIC ET IRENE JOLIOT CURIE - 92050", "stop_name": "PLACE DE LA BOULE - JOLIOT CURIE"}, "geometry": {"type": "Point", "coordinates": [2.2016533213360185, 48.8876927900033]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dde056ef78f5a3d796ece6c2ffc913cdf46f2e99", "fields": {"departement": "78", "stop_lat": 48.70310256736092, "code_postal": "78575", "stop_lon": 2.070680495679639, "coord": [48.70310256736092, 2.070680495679639], "stop_id": 4473126, "stop_desc": "PLACE DE LA GARE - 78575", "stop_name": "SAINT-REMY-LES-CHEVREUSE RER"}, "geometry": {"type": "Point", "coordinates": [2.070680495679639, 48.70310256736092]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "80164d83beea7c5b9752df9bac007bcb017ae0f9", "fields": {"departement": "91", "stop_lat": 48.699990143511734, "code_postal": "91272", "stop_lon": 2.0991719606466352, "coord": [48.699990143511734, 2.0991719606466352], "stop_id": 4473127, "stop_desc": "AVENUE DU GENERAL LECLERC - 91272", "stop_name": "11 NOVEMBRE - COURCELLE-SUR-YVETTE RER"}, "geometry": {"type": "Point", "coordinates": [2.0991719606466352, 48.699990143511734]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2c46c2123a7904daca009e01196e5cd5e7022588", "fields": {"departement": "91", "stop_lat": 48.698807068481955, "code_postal": "91122", "stop_lon": 2.1633102237812083, "coord": [48.698807068481955, 2.1633102237812083], "stop_id": 4473131, "stop_desc": "FACE 231 VOIE DE LA FACULTE - 91122", "stop_name": "BURES-SUR-YVETTE RER - UNIVERSITE"}, "geometry": {"type": "Point", "coordinates": [2.1633102237812083, 48.698807068481955]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0b7b23e22c3a4ee6093280634e9c7ed37bee9ad7", "fields": {"departement": "91", "stop_lat": 48.71647366819736, "code_postal": "91477", "stop_lon": 2.24831053275632, "coord": [48.71647366819736, 2.24831053275632], "stop_id": 4473139, "stop_desc": "FACE 8 - 8BIS RUE EDOUARD BRANLY - 91477", "stop_name": "EDOUARD BRANLY-PALAISEAU RER"}, "geometry": {"type": "Point", "coordinates": [2.24831053275632, 48.71647366819736]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1542a006b43882124127fd64642d2b64e11f8a78", "fields": {"departement": "75", "stop_lat": 48.83479812557195, "code_postal": "75114", "stop_lon": 2.3330342236102313, "coord": [48.83479812557195, 2.3330342236102313], "stop_id": 4473142, "stop_desc": "95 AVENUE DENFERT-ROCHEREAU - 75114", "stop_name": "DENFERT-ROCHEREAU - ARAGO"}, "geometry": {"type": "Point", "coordinates": [2.3330342236102313, 48.83479812557195]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "09ca3690b1dec93ca9b4702b18f132325545b7b6", "fields": {"departement": "75", "stop_lat": 48.84248225530111, "code_postal": "75106", "stop_lon": 2.3286355034590827, "coord": [48.84248225530111, 2.3286355034590827], "stop_id": 4473146, "stop_desc": "103 BOULEVARD DU MONTPARNASSE - 75106", "stop_name": "VAVIN"}, "geometry": {"type": "Point", "coordinates": [2.3286355034590827, 48.84248225530111]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c70f45e10b3b134953b3130075294e69db5615ec", "fields": {"departement": "75", "stop_lat": 48.84381179353463, "code_postal": "75115", "stop_lon": 2.32238519748455, "coord": [48.84381179353463, 2.32238519748455], "stop_id": 4473147, "stop_desc": "FACE 3 RUE DE L'ARRIVEE - 75115", "stop_name": "PLACE DU 18 JUIN 1940 - RUE DE L'ARRIVEE"}, "geometry": {"type": "Point", "coordinates": [2.32238519748455, 48.84381179353463]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "368828c4e948ea274a341891f73d3454dc9828e1", "fields": {"departement": "75", "stop_lat": 48.84195202597997, "code_postal": "75114", "stop_lon": 2.3291393929668964, "coord": [48.84195202597997, 2.3291393929668964], "stop_id": 4473151, "stop_desc": "106 BOULEVARD DU MONTPARNASSE - 75114", "stop_name": "VAVIN"}, "geometry": {"type": "Point", "coordinates": [2.3291393929668964, 48.84195202597997]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9f7ec07c686e05dfb58d6e99f17d47510e53f248", "fields": {"departement": "75", "stop_lat": 48.84075687740633, "code_postal": "75114", "stop_lon": 2.33284311590315, "coord": [48.84075687740633, 2.33284311590315], "stop_id": 4473152, "stop_desc": "150 BOULEVARD DU MONTPARNASSE - 75114", "stop_name": "CAMPAGNE PREMIERE"}, "geometry": {"type": "Point", "coordinates": [2.33284311590315, 48.84075687740633]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "993f04703562ec01c151da01af9767ba124a1e9c", "fields": {"departement": "75", "stop_lat": 48.82273618498334, "code_postal": "75114", "stop_lon": 2.325208756264251, "coord": [48.82273618498334, 2.325208756264251], "stop_id": 4473153, "stop_desc": "4 PLACE DU 25 AOUT 1944 - 75114", "stop_name": "PORTE D'ORLEANS-METRO"}, "geometry": {"type": "Point", "coordinates": [2.325208756264251, 48.82273618498334]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9355abd71f0733bfc6c71b758df31341a31d6598", "fields": {"departement": "78", "stop_lat": 48.89703299526433, "code_postal": "78551", "stop_lon": 2.095390681983472, "coord": [48.89703299526433, 2.095390681983472], "stop_id": 4473157, "stop_desc": "FACE 2 PLACE ANDRE MALRAUX - 78551", "stop_name": "SAINT-GERMAIN-EN-LAYE RER"}, "geometry": {"type": "Point", "coordinates": [2.095390681983472, 48.89703299526433]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6d10b34df26f0ee9d76bcb43db39f5cac9b2621b", "fields": {"departement": "78", "stop_lat": 48.89655107776364, "code_postal": "78650", "stop_lon": 2.120514234028132, "coord": [48.89655107776364, 2.120514234028132], "stop_id": 4473158, "stop_desc": "105 BOULEVARD CARNOT - 78650", "stop_name": "LE VESINET - LE PECQ RER"}, "geometry": {"type": "Point", "coordinates": [2.120514234028132, 48.89655107776364]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ec007dd947e13bdf82c253e5e9acb8706b6ac025", "fields": {"departement": "78", "stop_lat": 48.894185041399886, "code_postal": "78650", "stop_lon": 2.134467646052823, "coord": [48.894185041399886, 2.134467646052823], "stop_id": 4473161, "stop_desc": "FACE 61 BOULEVARD CARNOT - 78650", "stop_name": "HOTEL DE VILLE-LE VESINET CENTRE-RER"}, "geometry": {"type": "Point", "coordinates": [2.134467646052823, 48.894185041399886]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9efaad9d1ac4247fc7756e37cf03e8a6466199b8", "fields": {"departement": "78", "stop_lat": 48.88950450742885, "code_postal": "78146", "stop_lon": 2.1580228743255394, "coord": [48.88950450742885, 2.1580228743255394], "stop_id": 4473163, "stop_desc": "12 AVENUE DU MARECHAL FOCH - 78146", "stop_name": "MAIRIE - CHATOU - CROISSY RER"}, "geometry": {"type": "Point", "coordinates": [2.1580228743255394, 48.88950450742885]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e3205131404fde0f6ba3a93142a3cfc69e0d69bc", "fields": {"departement": "92", "stop_lat": 48.894818652089704, "code_postal": "92050", "stop_lon": 2.193156713048079, "coord": [48.894818652089704, 2.193156713048079], "stop_id": 4473166, "stop_desc": "AVENUE HENRI MARTIN - 92050", "stop_name": "JULES QUENTIN-NANTERRE VILLE-RER"}, "geometry": {"type": "Point", "coordinates": [2.193156713048079, 48.894818652089704]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8a1eee3f5baa560ce62be920fbbdc9884a30c3a3", "fields": {"departement": "75", "stop_lat": 48.87958240532934, "code_postal": "75117", "stop_lon": 2.290585154457603, "coord": [48.87958240532934, 2.290585154457603], "stop_id": 4473176, "stop_desc": "68 AV DES TERNES - 75117", "stop_name": "EGLISE SAINT-FERDINAND"}, "geometry": {"type": "Point", "coordinates": [2.290585154457603, 48.87958240532934]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "af9f900b86e7d268053202d691e80e06141641a0", "fields": {"departement": "75", "stop_lat": 48.87863131986088, "code_postal": "75117", "stop_lon": 2.2947691591166657, "coord": [48.87863131986088, 2.2947691591166657], "stop_id": 4473178, "stop_desc": "24 AV DES TERNES - 75117", "stop_name": "TERNES - MAC MAHON"}, "geometry": {"type": "Point", "coordinates": [2.2947691591166657, 48.87863131986088]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "35e2c8149077ab96525d43c439cc759ea00b69f5", "fields": {"departement": "75", "stop_lat": 48.87478831052261, "code_postal": "75108", "stop_lon": 2.3062853319385006, "coord": [48.87478831052261, 2.3062853319385006], "stop_id": 4473182, "stop_desc": "169-171 BOULEVARD HAUSSMANN - 75108", "stop_name": "FRIEDLAND - HAUSSMANN"}, "geometry": {"type": "Point", "coordinates": [2.3062853319385006, 48.87478831052261]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3bc92d2965f91e6404e87ee011c48b7445cdc72f", "fields": {"departement": "75", "stop_lat": 48.87536697356267, "code_postal": "75108", "stop_lon": 2.325823281094452, "coord": [48.87536697356267, 2.325823281094452], "stop_id": 4473191, "stop_desc": "111 R SAINT-LAZARE - 75108", "stop_name": "GARE SAINT-LAZARE"}, "geometry": {"type": "Point", "coordinates": [2.325823281094452, 48.87536697356267]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "afb9910dd8dcb70c04e9b812ba13369cf5b850b3", "fields": {"departement": "75", "stop_lat": 48.874261363183884, "code_postal": "75108", "stop_lon": 2.324147681777442, "coord": [48.874261363183884, 2.324147681777442], "stop_id": 4473192, "stop_desc": "86 BOULEVARD HAUSSMANN - 75108", "stop_name": "PASQUIER - ANJOU"}, "geometry": {"type": "Point", "coordinates": [2.324147681777442, 48.874261363183884]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "348880facbcf33569791e9a47d8967a1767ab6a9", "fields": {"departement": "92", "stop_lat": 48.81896462500979, "code_postal": "92048", "stop_lon": 2.2369336892810137, "coord": [48.81896462500979, 2.2369336892810137], "stop_id": 4473211, "stop_desc": "18 ROUTE DES GARDES - 92048", "stop_name": "MEUDON SUR SEINE-TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.2369336892810137, 48.81896462500979]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "87f698003c98fd151f3b27f6967276c4b21d8906", "fields": {"departement": "92", "stop_lat": 48.81896462500979, "code_postal": "92048", "stop_lon": 2.2369336892810137, "coord": [48.81896462500979, 2.2369336892810137], "stop_id": 4473212, "stop_desc": "18 ROUTE DES GARDES - 92048", "stop_name": "MEUDON SUR SEINE-TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.2369336892810137, 48.81896462500979]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6ca6a38537d46313ee219e91e8f26c5b220109d9", "fields": {"departement": "75", "stop_lat": 48.839993251238624, "code_postal": "75115", "stop_lon": 2.2722531268653094, "coord": [48.839993251238624, 2.2722531268653094], "stop_id": 4473279, "stop_desc": "5-7 RUE LEBLANC - 75115", "stop_name": "HOPITAL EUROPEEN GEORGES POMPIDOU"}, "geometry": {"type": "Point", "coordinates": [2.2722531268653094, 48.839993251238624]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "299851c1994e8668d249c613d458eb1105986fe4", "fields": {"departement": "75", "stop_lat": 48.83799070116469, "code_postal": "75115", "stop_lon": 2.2754007513995216, "coord": [48.83799070116469, 2.2754007513995216], "stop_id": 4473282, "stop_desc": "56 RUE LEBLANC - 75115", "stop_name": "LEBLANC - DELBARRE"}, "geometry": {"type": "Point", "coordinates": [2.2754007513995216, 48.83799070116469]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cd4588b128b9688d9c4ad40521041e83d6166718", "fields": {"departement": "92", "stop_lat": 48.82738441088452, "code_postal": "92040", "stop_lon": 2.273671000910632, "coord": [48.82738441088452, 2.273671000910632], "stop_id": 4473288, "stop_desc": "4 AVENUE DE LA REPUBLIQUE - 92040", "stop_name": "VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.273671000910632, 48.82738441088452]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "58f62932cf1bbcb5105da9bf9f49349614187bc9", "fields": {"departement": "92", "stop_lat": 48.827501031407145, "code_postal": "92040", "stop_lon": 2.273262483998071, "coord": [48.827501031407145, 2.273262483998071], "stop_id": 4473289, "stop_desc": "5 RUE DU GOUVERNEUR GENERAL EBOUE - 92040", "stop_name": "VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.273262483998071, 48.827501031407145]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9f3f6d1aca2afabfe24e7e513fb44805d4e6c95f", "fields": {"departement": "92", "stop_lat": 48.82189276006719, "code_postal": "92040", "stop_lon": 2.2733238426711146, "coord": [48.82189276006719, 2.2733238426711146], "stop_id": 4473292, "stop_desc": "24-26 RUE AUGUSTE GERVAIS - 92040", "stop_name": "MUSEE"}, "geometry": {"type": "Point", "coordinates": [2.2733238426711146, 48.82189276006719]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8bef4948fafad2b337679352a0a805a00325341b", "fields": {"departement": "92", "stop_lat": 48.816725505628916, "code_postal": "92040", "stop_lon": 2.2745959035011443, "coord": [48.816725505628916, 2.2745959035011443], "stop_id": 4473296, "stop_desc": "130 AV DE LA PAIX - 92040", "stop_name": "GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.2745959035011443, 48.816725505628916]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "be88a3d1d4464399e52f5f92e625d625465942a5", "fields": {"departement": "92", "stop_lat": 48.81686043583961, "code_postal": "92040", "stop_lon": 2.274813495453526, "coord": [48.81686043583961, 2.274813495453526], "stop_id": 4473297, "stop_desc": "109 AVENUE DE LA PAIX - 92040", "stop_name": "GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.274813495453526, 48.81686043583961]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "53e2f22fb3757c3b44f896c56e02d0c559f5a832", "fields": {"departement": "92", "stop_lat": 48.808332006461626, "code_postal": "92048", "stop_lon": 2.2480851270319326, "coord": [48.808332006461626, 2.2480851270319326], "stop_id": 4473313, "stop_desc": "69 RUE DE BELGIQUE - 92048", "stop_name": "ORPHELINAT"}, "geometry": {"type": "Point", "coordinates": [2.2480851270319326, 48.808332006461626]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3960fdb0d1d091133b604e7a61647ca4e540e8c2", "fields": {"departement": "92", "stop_lat": 48.81879641264312, "code_postal": "92048", "stop_lon": 2.229570900490973, "coord": [48.81879641264312, 2.229570900490973], "stop_id": 4473329, "stop_desc": "PLACE DE LA GARE - 92048", "stop_name": "GARE DE BELLEVUE"}, "geometry": {"type": "Point", "coordinates": [2.229570900490973, 48.81879641264312]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7112b3efcf019e3a68c32838c0e80a2aba3aa0ef", "fields": {"departement": "92", "stop_lat": 48.80847209310078, "code_postal": "92048", "stop_lon": 2.243254230057932, "coord": [48.80847209310078, 2.243254230057932], "stop_id": 4473341, "stop_desc": "FACE 50 RUE HENRI BARBUSSE - 92048", "stop_name": "ANDRE SCHOCK"}, "geometry": {"type": "Point", "coordinates": [2.243254230057932, 48.80847209310078]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "516f6ff379387cee93ccc02547bd263527f03d63", "fields": {"departement": "92", "stop_lat": 48.831836707153386, "code_postal": "92040", "stop_lon": 2.2804315068912797, "coord": [48.831836707153386, 2.2804315068912797], "stop_id": 4473347, "stop_desc": "FACE 2 BIS RUE JEANNE D'ARC - 92040", "stop_name": "PORTE D'ISSY"}, "geometry": {"type": "Point", "coordinates": [2.2804315068912797, 48.831836707153386]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d2356391680a662fb7aa78e7e93b0758c0d89bd1", "fields": {"departement": "75", "stop_lat": 48.839768673766876, "code_postal": "75115", "stop_lon": 2.2724576435223995, "coord": [48.839768673766876, 2.2724576435223995], "stop_id": 4473350, "stop_desc": "10-12 RUE LEBLANC - 75115", "stop_name": "HOPITAL EUROPEEN GEORGES POMPIDOU"}, "geometry": {"type": "Point", "coordinates": [2.2724576435223995, 48.839768673766876]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0a54e7fff4279e93bcc7c09265d93aeb1aad68cb", "fields": {"departement": "75", "stop_lat": 48.83944609349221, "code_postal": "75115", "stop_lon": 2.2742689214112684, "coord": [48.83944609349221, 2.2742689214112684], "stop_id": 4473352, "stop_desc": "36 RUE LEBLANC - 75115", "stop_name": "RUE LEBLANC"}, "geometry": {"type": "Point", "coordinates": [2.2742689214112684, 48.83944609349221]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6e94e2e3b0b9f7682a32edc0c1c8424908685e7f", "fields": {"departement": "75", "stop_lat": 48.836455270676616, "code_postal": "75115", "stop_lon": 2.2782480783935948, "coord": [48.836455270676616, 2.2782480783935948], "stop_id": 4473355, "stop_desc": "PLACE BALARD - 75115", "stop_name": "BALARD"}, "geometry": {"type": "Point", "coordinates": [2.2782480783935948, 48.836455270676616]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dd328eb68c618773ab58b43514897efe180e4ec4", "fields": {"departement": "92", "stop_lat": 48.82435504441102, "code_postal": "92040", "stop_lon": 2.2726946740287097, "coord": [48.82435504441102, 2.2726946740287097], "stop_id": 4473363, "stop_desc": "FACE 34 RUE DIDEROT - 92040", "stop_name": "MAIRIE D'ISSY-METRO"}, "geometry": {"type": "Point", "coordinates": [2.2726946740287097, 48.82435504441102]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d984b2ec3aecd3fac728abe69ce382454edc8f39", "fields": {"departement": "92", "stop_lat": 48.81686043583961, "code_postal": "92040", "stop_lon": 2.274813495453526, "coord": [48.81686043583961, 2.274813495453526], "stop_id": 4473369, "stop_desc": "109 AVENUE DE LA PAIX - 92040", "stop_name": "GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.274813495453526, 48.81686043583961]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "91f22dce8634fe2e686f4c90d184d1fad1171268", "fields": {"departement": "92", "stop_lat": 48.81495832481246, "code_postal": "92040", "stop_lon": 2.264758600292619, "coord": [48.81495832481246, 2.264758600292619], "stop_id": 4473372, "stop_desc": "62 BIS RUE EMILE DUPLOYE - 92040", "stop_name": "E. DUPLOYE"}, "geometry": {"type": "Point", "coordinates": [2.264758600292619, 48.81495832481246]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3948cba9fc80e4844419c4053cbdff651194f0dd", "fields": {"departement": "92", "stop_lat": 48.81009224978225, "code_postal": "92048", "stop_lon": 2.2462858598334625, "coord": [48.81009224978225, 2.2462858598334625], "stop_id": 4473387, "stop_desc": "2 RUE HENRI BARBUSSE - 92048", "stop_name": "PAUL BERT"}, "geometry": {"type": "Point", "coordinates": [2.2462858598334625, 48.81009224978225]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "28d58469e4c02671ce2b796dcda1be21978c8123", "fields": {"departement": "92", "stop_lat": 48.81183731423944, "code_postal": "92048", "stop_lon": 2.2368930295294303, "coord": [48.81183731423944, 2.2368930295294303], "stop_id": 4473398, "stop_desc": "PLACE RABELAIS - 92048", "stop_name": "RABELAIS"}, "geometry": {"type": "Point", "coordinates": [2.2368930295294303, 48.81183731423944]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "780ae467acb6725aa393160bd88fc843534631db", "fields": {"departement": "92", "stop_lat": 48.826516619377834, "code_postal": "92072", "stop_lon": 2.219835757126419, "coord": [48.826516619377834, 2.219835757126419], "stop_id": 4473409, "stop_desc": "25 BIS GRANDE RUE - 92072", "stop_name": "PARC DE SAINT-CLOUD"}, "geometry": {"type": "Point", "coordinates": [2.219835757126419, 48.826516619377834]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fcd6ade1218d69192e160f6ab03c1ed6fb803e4d", "fields": {"departement": "92", "stop_lat": 48.82593195169939, "code_postal": "92072", "stop_lon": 2.219360657621989, "coord": [48.82593195169939, 2.219360657621989], "stop_id": 4473410, "stop_desc": "2 AVENUE DE LA DIVISION LECLERC - 92072", "stop_name": "PARC DE SAINT-CLOUD"}, "geometry": {"type": "Point", "coordinates": [2.219360657621989, 48.82593195169939]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e871621cc110f1b77dbdc9ac3fb3594b1114ff6d", "fields": {"departement": "92", "stop_lat": 48.82795039915451, "code_postal": "92072", "stop_lon": 2.2247466599919257, "coord": [48.82795039915451, 2.2247466599919257], "stop_id": 4473412, "stop_desc": "ALLEE DU PONT DE SEVRES - 92072", "stop_name": "MUSEE DE SEVRES"}, "geometry": {"type": "Point", "coordinates": [2.2247466599919257, 48.82795039915451]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f4bab8ed6d0663dc0259a056b431cae16c9c5aeb", "fields": {"departement": "92", "stop_lat": 48.80272419537944, "code_postal": "92048", "stop_lon": 2.237495701841666, "coord": [48.80272419537944, 2.237495701841666], "stop_id": 4473415, "stop_desc": "39 RUE D'ALEMBERT - 92048", "stop_name": "D'ALEMBERT - VERTUGADINS - LYCEE"}, "geometry": {"type": "Point", "coordinates": [2.237495701841666, 48.80272419537944]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "70709c0f97d7bd5ed194936bfddfa131fadec929", "fields": {"departement": "92", "stop_lat": 48.80768631860821, "code_postal": "92023", "stop_lon": 2.2500184692424225, "coord": [48.80768631860821, 2.2500184692424225], "stop_id": 4473417, "stop_desc": "FACE 92 AVENUE SCHNEIDER - 92023", "stop_name": "RUE DES PEUPLIERS"}, "geometry": {"type": "Point", "coordinates": [2.2500184692424225, 48.80768631860821]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ca7c790b7f04e9e03b58ee62e9bb24829140ba64", "fields": {"departement": "92", "stop_lat": 48.81454049932141, "code_postal": "92075", "stop_lon": 2.272747707605776, "coord": [48.81454049932141, 2.272747707605776], "stop_id": 4473419, "stop_desc": "199 AVENUE DU GENERAL DE GAULLE - 92075", "stop_name": "GARE DE CLAMART"}, "geometry": {"type": "Point", "coordinates": [2.272747707605776, 48.81454049932141]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8de275facee5b9096f3f12b4dcd7f6d9e8ce6fe5", "fields": {"departement": "92", "stop_lat": 48.82837374190805, "code_postal": "92040", "stop_lon": 2.2749766076077833, "coord": [48.82837374190805, 2.2749766076077833], "stop_id": 4473420, "stop_desc": "71 RUE GUYNEMER - 92040", "stop_name": "MAISON DE RETRAITE"}, "geometry": {"type": "Point", "coordinates": [2.2749766076077833, 48.82837374190805]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8fb7e9828d970bcef4b2f97f89222b64b08004db", "fields": {"departement": "92", "stop_lat": 48.831836707153386, "code_postal": "92040", "stop_lon": 2.2804315068912797, "coord": [48.831836707153386, 2.2804315068912797], "stop_id": 4473422, "stop_desc": "FACE 2 BIS RUE JEANNE D'ARC - 92040", "stop_name": "PORTE D'ISSY"}, "geometry": {"type": "Point", "coordinates": [2.2804315068912797, 48.831836707153386]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "265abc1193e43a63679a69769368f6ddb60c348a", "fields": {"departement": "92", "stop_lat": 48.82189276006719, "code_postal": "92040", "stop_lon": 2.2733238426711146, "coord": [48.82189276006719, 2.2733238426711146], "stop_id": 4473555, "stop_desc": "24-26 RUE AUGUSTE GERVAIS - 92040", "stop_name": "MUSEE"}, "geometry": {"type": "Point", "coordinates": [2.2733238426711146, 48.82189276006719]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e63ab964838548d54f23e60f89f69419dd7c1def", "fields": {"departement": "92", "stop_lat": 48.8193227451855, "code_postal": "92040", "stop_lon": 2.2741980687988135, "coord": [48.8193227451855, 2.2741980687988135], "stop_id": 4473556, "stop_desc": "FACE 27 RUE GABRIEL PERI - 92040", "stop_name": "RUE DU FORT"}, "geometry": {"type": "Point", "coordinates": [2.2741980687988135, 48.8193227451855]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9f485de0e01069671f37367ccd4a62ad14a7647f", "fields": {"departement": "92", "stop_lat": 48.816725505628916, "code_postal": "92040", "stop_lon": 2.2745959035011443, "coord": [48.816725505628916, 2.2745959035011443], "stop_id": 4473558, "stop_desc": "130 AV DE LA PAIX - 92040", "stop_name": "GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.2745959035011443, 48.816725505628916]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b8bfc20c633d5e04fe6c75de1b8fbc31a664fbd3", "fields": {"departement": "92", "stop_lat": 48.8088328893316, "code_postal": "92020", "stop_lon": 2.291288311869593, "coord": [48.8088328893316, 2.291288311869593], "stop_id": 4473569, "stop_desc": "4 R JEAN MERMOZ - 92020", "stop_name": "JEAN MERMOZ"}, "geometry": {"type": "Point", "coordinates": [2.291288311869593, 48.8088328893316]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "33dfa1d488a0d0a5fa5fb33f7d2927b9fbe7a0f0", "fields": {"departement": "92", "stop_lat": 48.81102060412411, "code_postal": "92020", "stop_lon": 2.302104848805859, "coord": [48.81102060412411, 2.302104848805859], "stop_id": 4473576, "stop_desc": "FACE 228 AV MARX DORMOY - 92020", "stop_name": "CHATILLON-MONTROUGE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.302104848805859, 48.81102060412411]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "869b895d6b992610c0661bb46b626917d269c9d6", "fields": {"departement": "92", "stop_lat": 48.810133582426474, "code_postal": "92007", "stop_lon": 2.313236719785465, "coord": [48.810133582426474, 2.313236719785465], "stop_id": 4473578, "stop_desc": "FACE 114 AVENUE MARX DORMOY - 92007", "stop_name": "CIMETIERE DE BAGNEUX"}, "geometry": {"type": "Point", "coordinates": [2.313236719785465, 48.810133582426474]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a619bedc337c4064a2271807ee531ac294674289", "fields": {"departement": "94", "stop_lat": 48.80946135436161, "code_postal": "94003", "stop_lon": 2.3256200680171903, "coord": [48.80946135436161, 2.3256200680171903], "stop_id": 4473581, "stop_desc": "AVENUE MARX DORMOY - 94003", "stop_name": "PRIEUR DE LA COTE D'OR"}, "geometry": {"type": "Point", "coordinates": [2.3256200680171903, 48.80946135436161]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "84da0a9d9f839ec3aaaf641498e91b0240d78499", "fields": {"departement": "94", "stop_lat": 48.80818557426659, "code_postal": "94003", "stop_lon": 2.3327778455238666, "coord": [48.80818557426659, 2.3327778455238666], "stop_id": 4473586, "stop_desc": "32-34 AVENUE LAPLACE - 94003", "stop_name": "LAPLACE RER"}, "geometry": {"type": "Point", "coordinates": [2.3327778455238666, 48.80818557426659]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2297febe313c3fd901802f506823c7adc4641ee4", "fields": {"departement": "94", "stop_lat": 48.806576843454636, "code_postal": "94003", "stop_lon": 2.3368192563048034, "coord": [48.806576843454636, 2.3368192563048034], "stop_id": 4473587, "stop_desc": "FACE 9 AVENUE PAUL DOUMER - 94003", "stop_name": "HOTEL DE VILLE D'ARCUEIL"}, "geometry": {"type": "Point", "coordinates": [2.3368192563048034, 48.806576843454636]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a1268260c0797f74e08f2bb4e8c5ec3a6c57268b", "fields": {"departement": "94", "stop_lat": 48.80669368515831, "code_postal": "94003", "stop_lon": 2.336941718396992, "coord": [48.80669368515831, 2.336941718396992], "stop_id": 4473588, "stop_desc": "9-11 AVENUE PAUL DOUMER - 94003", "stop_name": "HOTEL DE VILLE D'ARCUEIL"}, "geometry": {"type": "Point", "coordinates": [2.336941718396992, 48.80669368515831]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5df6f56e9344f2997b3ce07f2257bf44b7ee8489", "fields": {"departement": "94", "stop_lat": 48.805147413569976, "code_postal": "94043", "stop_lon": 2.34664323505667, "coord": [48.805147413569976, 2.34664323505667], "stop_id": 4473593, "stop_desc": "91-93 AVENUE CHARLES GIDE - 94043", "stop_name": "LYCEE DARIUS MILHAUD - CHARLES GIDE"}, "geometry": {"type": "Point", "coordinates": [2.34664323505667, 48.805147413569976]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a32fd74dd78201c3af6821f50efe826a8ab62dc1", "fields": {"departement": "94", "stop_lat": 48.80727665850562, "code_postal": "94043", "stop_lon": 2.3543860945189143, "coord": [48.80727665850562, 2.3543860945189143], "stop_id": 4473594, "stop_desc": "25 AVENUE CHARLES GIDE - 94043", "stop_name": "BARNUFLES-LA PISCINE"}, "geometry": {"type": "Point", "coordinates": [2.3543860945189143, 48.80727665850562]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a01052082e327342c1ce4e560a518cfafb241dea", "fields": {"departement": "94", "stop_lat": 48.80928933116081, "code_postal": "94043", "stop_lon": 2.358088049981442, "coord": [48.80928933116081, 2.358088049981442], "stop_id": 4473597, "stop_desc": "1 RUE DE VERDUN-LAZARE PONTICELLI - 94043", "stop_name": "HOPITAL DU KREMLIN-BICETRE"}, "geometry": {"type": "Point", "coordinates": [2.358088049981442, 48.80928933116081]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "35a1fb17bb2b063ae7e951b80cb8b4976620f982", "fields": {"departement": "94", "stop_lat": 48.80879117186016, "code_postal": "94041", "stop_lon": 2.3739406553580955, "coord": [48.80879117186016, 2.3739406553580955], "stop_id": 4473603, "stop_desc": "AVENUE DE VERDUN - 94041", "stop_name": "CARNOT"}, "geometry": {"type": "Point", "coordinates": [2.3739406553580955, 48.80879117186016]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e56b59042a6a0188495d4da4eeaec978160494e0", "fields": {"departement": "94", "stop_lat": 48.81406097593005, "code_postal": "94041", "stop_lon": 2.3899484945302714, "coord": [48.81406097593005, 2.3899484945302714], "stop_id": 4473612, "stop_desc": "FACE 64 AVENUE GEORGES GOSNAT - 94041", "stop_name": "IVRY-SUR-SEINE RER"}, "geometry": {"type": "Point", "coordinates": [2.3899484945302714, 48.81406097593005]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f08d64e7102f9c42a2db404dbc9806d2bc9c05a4", "fields": {"departement": "94", "stop_lat": 48.814513710442014, "code_postal": "94041", "stop_lon": 2.401435001812316, "coord": [48.814513710442014, 2.401435001812316], "stop_id": 4473619, "stop_desc": "FACE 11 BD DE BRANDEBOURG - 94041", "stop_name": "GAMBETTA"}, "geometry": {"type": "Point", "coordinates": [2.401435001812316, 48.814513710442014]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a64eb549e0b65481d5f0767a58e97ff18b74f95e", "fields": {"departement": "92", "stop_lat": 48.810411943977385, "code_postal": "92049", "stop_lon": 2.3119846565996203, "coord": [48.810411943977385, 2.3119846565996203], "stop_id": 4473624, "stop_desc": "136 AVENUE MARX DORMOY - 92049", "stop_name": "CIMETIERE DE BAGNEUX"}, "geometry": {"type": "Point", "coordinates": [2.3119846565996203, 48.810411943977385]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5a4c0a7cb57478d71416fb668f4341aaca5c093c", "fields": {"departement": "92", "stop_lat": 48.82998578596049, "code_postal": "92040", "stop_lon": 2.2648465117520153, "coord": [48.82998578596049, 2.2648465117520153], "stop_id": 4473628, "stop_desc": "FACE 23 RUE CAMILLE DESMOULINS - 92040", "stop_name": "ISSY-VAL DE SEINE RER"}, "geometry": {"type": "Point", "coordinates": [2.2648465117520153, 48.82998578596049]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b56dc39f1b16346a20d6fbb80ef01d8e8ae39d23", "fields": {"departement": "92", "stop_lat": 48.81493202901691, "code_postal": "92046", "stop_lon": 2.2828724441857347, "coord": [48.81493202901691, 2.2828724441857347], "stop_id": 4473636, "stop_desc": "35 BOULEVARD DE STALINGRAD - 92046", "stop_name": "LOUIS GIRARD"}, "geometry": {"type": "Point", "coordinates": [2.2828724441857347, 48.81493202901691]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e3805594f721b9aecfc3dfefb71324eb03e6320a", "fields": {"departement": "92", "stop_lat": 48.81102060412411, "code_postal": "92020", "stop_lon": 2.302104848805859, "coord": [48.81102060412411, 2.302104848805859], "stop_id": 4473643, "stop_desc": "FACE 228 AV MARX DORMOY - 92020", "stop_name": "CHATILLON-MONTROUGE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.302104848805859, 48.81102060412411]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6218183fb450d032b3ee72ebbf14dd6edcea595b", "fields": {"departement": "92", "stop_lat": 48.80977495506393, "code_postal": "92007", "stop_lon": 2.318108483673673, "coord": [48.80977495506393, 2.318108483673673], "stop_id": 4473646, "stop_desc": "FACE 76 AVENUE MARX DORMOY - 92007", "stop_name": "AVENUE HENRI GINOUX"}, "geometry": {"type": "Point", "coordinates": [2.318108483673673, 48.80977495506393]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "be3dcbfdf4dd6b6ae63719ab102e3874cc24a2b1", "fields": {"departement": "94", "stop_lat": 48.80956891048209, "code_postal": "94003", "stop_lon": 2.3228984916637154, "coord": [48.80956891048209, 2.3228984916637154], "stop_id": 4473647, "stop_desc": "23 BIS AVENUE MARX DORMOY - 94003", "stop_name": "AVENUE ET FORT DE MONTROUGE"}, "geometry": {"type": "Point", "coordinates": [2.3228984916637154, 48.80956891048209]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "642bf16fb34a863cd93801fe416a1d2c138ca63e", "fields": {"departement": "94", "stop_lat": 48.80208291625755, "code_postal": "94003", "stop_lon": 2.3395812710225736, "coord": [48.80208291625755, 2.3395812710225736], "stop_id": 4473654, "stop_desc": "FACE 14 AVENUE MALLERET DE JOINVILLE - 94003", "stop_name": "MALLERET-JOINVILLE"}, "geometry": {"type": "Point", "coordinates": [2.3395812710225736, 48.80208291625755]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1f23ebe3229874505d6d8da011b09b6d180adc64", "fields": {"departement": "94", "stop_lat": 48.768580691760285, "code_postal": "94073", "stop_lon": 2.3687589872860038, "coord": [48.768580691760285, 2.3687589872860038], "stop_id": 4480118, "stop_desc": "127 AVENUE DU GENERAL DE GAULLE - 94073", "stop_name": "BRETAGNE"}, "geometry": {"type": "Point", "coordinates": [2.3687589872860038, 48.768580691760285]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bd7d6bcbaa29287488961358653dae675c9fdc29", "fields": {"departement": "93", "stop_lat": 48.861409674976045, "code_postal": "93048", "stop_lon": 2.4412946884642825, "coord": [48.861409674976045, 2.4412946884642825], "stop_id": 4492570, "stop_desc": "17 AVENUE DU PRESIDENT WILSON - 93048", "stop_name": "MAIRIE DE MONTREUIL"}, "geometry": {"type": "Point", "coordinates": [2.4412946884642825, 48.861409674976045]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "035e9fb2bdf86425a5f21f06ab897be8a8b9c1c8", "fields": {"departement": "92", "stop_lat": 48.84806176275269, "code_postal": "92064", "stop_lon": 2.204534968348681, "coord": [48.84806176275269, 2.204534968348681], "stop_id": 4532991, "stop_desc": "FACE 113 AVENUE DU MARECHAL FOCH - 92064", "stop_name": "CIMETIERE DE SAINT-CLOUD"}, "geometry": {"type": "Point", "coordinates": [2.204534968348681, 48.84806176275269]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ff723bc7f693794fe144f6a786dfa64e2200b34a", "fields": {"departement": "92", "stop_lat": 48.85901735156971, "code_postal": "92064", "stop_lon": 2.212733867377789, "coord": [48.85901735156971, 2.212733867377789], "stop_id": 4533010, "stop_desc": "272 BD DE LA REPUBLIQUE - 92064", "stop_name": "VAL D'OR"}, "geometry": {"type": "Point", "coordinates": [2.212733867377789, 48.85901735156971]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d7ca8a23c9f82376428569099f396ae63ad40bad", "fields": {"departement": "92", "stop_lat": 48.83840019683545, "code_postal": "92064", "stop_lon": 2.2045732982002972, "coord": [48.83840019683545, 2.2045732982002972], "stop_id": 4533025, "stop_desc": "AV DU GENERAL LECLERC - 92064", "stop_name": "PARC DU PRE SAINT-JEAN"}, "geometry": {"type": "Point", "coordinates": [2.2045732982002972, 48.83840019683545]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "010a508e9020eec86c8767223a865ccd5b5f87c9", "fields": {"departement": "92", "stop_lat": 48.81955395881615, "code_postal": "92077", "stop_lon": 2.1696291274315485, "coord": [48.81955395881615, 2.1696291274315485], "stop_id": 4533038, "stop_desc": "181 RTE DE VERSAILLES - 92077", "stop_name": "LES PEUPLIERS"}, "geometry": {"type": "Point", "coordinates": [2.1696291274315485, 48.81955395881615]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "79632cae3b6f7a2f9dd5111559b3d1e2f3fc50f6", "fields": {"departement": "92", "stop_lat": 48.81473734683662, "code_postal": "92077", "stop_lon": 2.157859158531483, "coord": [48.81473734683662, 2.157859158531483], "stop_id": 4533044, "stop_desc": "RUE DE VERSAILLES - 92077", "stop_name": "PORTE DES HAUTS-DE-SEINE"}, "geometry": {"type": "Point", "coordinates": [2.157859158531483, 48.81473734683662]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4e6397046576968d024644577f57c579bf3e7daa", "fields": {"departement": "78", "stop_lat": 48.811032493560454, "code_postal": "78646", "stop_lon": 2.1507820990810838, "coord": [48.811032493560454, 2.1507820990810838], "stop_id": 4533047, "stop_desc": "FACE 96 AV DES ETATS-UNIS - 78646", "stop_name": "UNIVERSITE"}, "geometry": {"type": "Point", "coordinates": [2.1507820990810838, 48.811032493560454]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cd580d0f4860caf2e051fcc5916e2dc1e2347ec8", "fields": {"departement": "92", "stop_lat": 48.856868688236425, "code_postal": "92064", "stop_lon": 2.2209656189564617, "coord": [48.856868688236425, 2.2209656189564617], "stop_id": 4533052, "stop_desc": "15 BD SENARD - 92064", "stop_name": "LES COTEAUX-SENARD (T2)"}, "geometry": {"type": "Point", "coordinates": [2.2209656189564617, 48.856868688236425]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0a2b0420fc4bcf1b004fd30a7a4265b8cbcb6e8a", "fields": {"departement": "93", "stop_lat": 48.882461717187084, "code_postal": "93064", "stop_lon": 2.4809503765712777, "coord": [48.882461717187084, 2.4809503765712777], "stop_id": 4557264, "stop_desc": "0 RUE LEON BLUM - 93064", "stop_name": "BOIS-PERRIER RER - ROSNY 2"}, "geometry": {"type": "Point", "coordinates": [2.4809503765712777, 48.882461717187084]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0e883c4254b067a3e21d2a8ed628f062d6078b14", "fields": {"departement": "93", "stop_lat": 48.8823627590568, "code_postal": "93064", "stop_lon": 2.4810318636072166, "coord": [48.8823627590568, 2.4810318636072166], "stop_id": 4557265, "stop_desc": "RUE LEON BLUM - 93064", "stop_name": "BOIS-PERRIER RER - ROSNY 2"}, "geometry": {"type": "Point", "coordinates": [2.4810318636072166, 48.8823627590568]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "60c9f2adf64d519e0a88c626872a1de2d06d03ab", "fields": {"departement": "93", "stop_lat": 48.86703552178636, "code_postal": "93064", "stop_lon": 2.4981133083935707, "coord": [48.86703552178636, 2.4981133083935707], "stop_id": 4557278, "stop_desc": "RUE DE STRASBOURG - 93064", "stop_name": "RUE DU RHIN"}, "geometry": {"type": "Point", "coordinates": [2.4981133083935707, 48.86703552178636]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "acb8963f2f6788f82d6fb4cddf1115a73b9e79d7", "fields": {"departement": "94", "stop_lat": 48.853837599296924, "code_postal": "94058", "stop_lon": 2.501327413920225, "coord": [48.853837599296924, 2.501327413920225], "stop_id": 4557286, "stop_desc": "FACE 101 AVENUE LAMARTINE - 94058", "stop_name": "LES JONCS MARINS"}, "geometry": {"type": "Point", "coordinates": [2.501327413920225, 48.853837599296924]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7509485284b7ac0c0d007d66e6728ddc35c7a36d", "fields": {"departement": "94", "stop_lat": 48.851789789857, "code_postal": "94033", "stop_lon": 2.4866534188993423, "coord": [48.851789789857, 2.4866534188993423], "stop_id": 4557295, "stop_desc": "FACE 56 RUE ROGER SALENGRO - 94033", "stop_name": "PLACE DU GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.4866534188993423, 48.851789789857]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4e65c1aa74e6ea2258fe747a421c103c1ee3d0f9", "fields": {"departement": "94", "stop_lat": 48.847876341735564, "code_postal": "94033", "stop_lon": 2.489719778535997, "coord": [48.847876341735564, 2.489719778535997], "stop_id": 4557299, "stop_desc": "78 AVENUE DE NEUILLY - 94033", "stop_name": "LYCEE LOUIS ARMAND"}, "geometry": {"type": "Point", "coordinates": [2.489719778535997, 48.847876341735564]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5704384e26154467fe180b3559b068132e0db1d3", "fields": {"departement": "93", "stop_lat": 48.90698595535943, "code_postal": "93008", "stop_lon": 2.449020887590383, "coord": [48.90698595535943, 2.449020887590383], "stop_id": 4889458, "stop_desc": "PISTE GARE ROUTIERE - 93008", "stop_name": "BOBIGNY - PABLO PICASSO"}, "geometry": {"type": "Point", "coordinates": [2.449020887590383, 48.90698595535943]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1aca526939bad3db738f6a71decf300568226cf4", "fields": {"departement": "93", "stop_lat": 48.91663286278753, "code_postal": "93029", "stop_lon": 2.4448691169000547, "coord": [48.91663286278753, 2.4448691169000547], "stop_id": 4889463, "stop_desc": "46 AVENUE HENRI BARBUSSE - 93029", "stop_name": "CHARLES GIDE"}, "geometry": {"type": "Point", "coordinates": [2.4448691169000547, 48.91663286278753]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b8016ad714c27850cf1466bcea474d90c2bc88ed", "fields": {"departement": "93", "stop_lat": 48.91631840448515, "code_postal": "93029", "stop_lon": 2.444773012931289, "coord": [48.91631840448515, 2.444773012931289], "stop_id": 4889464, "stop_desc": "114 AVENUE CHARLES GIDE - 93029", "stop_name": "CHARLES GIDE"}, "geometry": {"type": "Point", "coordinates": [2.444773012931289, 48.91631840448515]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5f0b5d0c3a388d8a787c89feae9ca324a4934965", "fields": {"departement": "93", "stop_lat": 48.92270485983442, "code_postal": "93029", "stop_lon": 2.457619155307906, "coord": [48.92270485983442, 2.457619155307906], "stop_id": 4889469, "stop_desc": "220 AVENUE HENRI BARBUSSE - 93029", "stop_name": "BARBUSSE - CROIZAT"}, "geometry": {"type": "Point", "coordinates": [2.457619155307906, 48.92270485983442]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3bdc84cb7c941843bd4648907047dbabc1ca2a72", "fields": {"departement": "93", "stop_lat": 48.9315509698401, "code_postal": "93005", "stop_lon": 2.493771636240838, "coord": [48.9315509698401, 2.493771636240838], "stop_id": 4889489, "stop_desc": "PLACE DU GENERAL DE GAULLE - 93005", "stop_name": "AULNAY-SOUS-BOIS RER"}, "geometry": {"type": "Point", "coordinates": [2.493771636240838, 48.9315509698401]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7531645d85957b9be7b0844f98d3b9e0bc5345f7", "fields": {"departement": "93", "stop_lat": 48.90946775056652, "code_postal": "93008", "stop_lon": 2.447553768193413, "coord": [48.90946775056652, 2.447553768193413], "stop_id": 4889492, "stop_desc": "AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "PIERRE SEMARD"}, "geometry": {"type": "Point", "coordinates": [2.447553768193413, 48.90946775056652]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "367bca3271c0332db484ccb3361b07ad2ea95930", "fields": {"departement": "93", "stop_lat": 48.90676356658909, "code_postal": "93008", "stop_lon": 2.446552780443455, "coord": [48.90676356658909, 2.446552780443455], "stop_id": 4889495, "stop_desc": "15 BOULEVARD MAURICE THOREZ - 93008", "stop_name": "MAURICE THOREZ"}, "geometry": {"type": "Point", "coordinates": [2.446552780443455, 48.90676356658909]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6f3439bf1447a07f2c7c00148b7c0133d172d511", "fields": {"departement": "93", "stop_lat": 48.924819263917975, "code_postal": "93007", "stop_lon": 2.4639112132405034, "coord": [48.924819263917975, 2.4639112132405034], "stop_id": 4889512, "stop_desc": "200 AVENUE PAUL VAILLANT COUTURIER - 93007", "stop_name": "ANGELUS - FABIEN"}, "geometry": {"type": "Point", "coordinates": [2.4639112132405034, 48.924819263917975]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "274f60952e9792e41d72676ded58132002e070f5", "fields": {"departement": "93", "stop_lat": 48.926484956933145, "code_postal": "93007", "stop_lon": 2.469329770033911, "coord": [48.926484956933145, 2.469329770033911], "stop_id": 4889516, "stop_desc": "122 AVENUE PAUL VAILLANT COUTURIER - 93007", "stop_name": "PIERRE MONTILLET"}, "geometry": {"type": "Point", "coordinates": [2.469329770033911, 48.926484956933145]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eb474289d99ae4c93e6e0a3e4eaea8eb60c9ab7d", "fields": {"departement": "93", "stop_lat": 48.929213819436754, "code_postal": "93007", "stop_lon": 2.479879844919834, "coord": [48.929213819436754, 2.479879844919834], "stop_id": 4889521, "stop_desc": "5 BIS AVENUE PAUL VAILLANT COUTURIER - 93007", "stop_name": "ROND-POINT PIERRE SEMARD - PAUL VAILLANT-COUTURIER"}, "geometry": {"type": "Point", "coordinates": [2.479879844919834, 48.929213819436754]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "497fc8b6d54d0e067669192dec969210c2b80895", "fields": {"departement": "93", "stop_lat": 48.93037928534793, "code_postal": "93005", "stop_lon": 2.4822290533249594, "coord": [48.93037928534793, 2.4822290533249594], "stop_id": 4889528, "stop_desc": "FACE 45 AVENUE CHARLES DE GAULLE - 93005", "stop_name": "ROND-POINT PIERRE SEMARD - TURGOT"}, "geometry": {"type": "Point", "coordinates": [2.4822290533249594, 48.93037928534793]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9faa3aaceb17580475e81d48ce61ae7be7050c82", "fields": {"departement": "93", "stop_lat": 48.91383679457352, "code_postal": "93008", "stop_lon": 2.446090473069425, "coord": [48.91383679457352, 2.446090473069425], "stop_id": 4889529, "stop_desc": "FACE 151 RUE CHARLES GIDE - 93008", "stop_name": "LES LIMITES"}, "geometry": {"type": "Point", "coordinates": [2.446090473069425, 48.91383679457352]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b16495e3d534642618b1ab5d500a2fdc70d42a2c", "fields": {"departement": "75", "stop_lat": 48.82139705281003, "code_postal": "75114", "stop_lon": 2.325535727715491, "coord": [48.82139705281003, 2.325535727715491], "stop_id": 4889620, "stop_desc": "AVENUE DE LA PORTE D'ORLEANS - 75114", "stop_name": "PORTE D'ORLEANS"}, "geometry": {"type": "Point", "coordinates": [2.325535727715491, 48.82139705281003]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "70947c3eccff314e4f1055bb58b430e7888795e0", "fields": {"departement": "92", "stop_lat": 48.81363167569627, "code_postal": "92049", "stop_lon": 2.3256327423030254, "coord": [48.81363167569627, 2.3256327423030254], "stop_id": 4889623, "stop_desc": "110 AVENUE ARISTIDE BRIAND - 92049", "stop_name": "LEON GAMBETTA"}, "geometry": {"type": "Point", "coordinates": [2.3256327423030254, 48.81363167569627]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a60013a8a50c4577b7e38ba6a9a9531a91e024ad", "fields": {"departement": "92", "stop_lat": 48.8051918673447, "code_postal": "92007", "stop_lon": 2.322981341495187, "coord": [48.8051918673447, 2.322981341495187], "stop_id": 4889627, "stop_desc": "23 AVENUE VICTOR HUGO - 92007", "stop_name": "JEAN-MARIN NAUDIN"}, "geometry": {"type": "Point", "coordinates": [2.322981341495187, 48.8051918673447]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "422814e43e66aa884298fe7ec97372bb3e66e60a", "fields": {"departement": "92", "stop_lat": 48.80003217773791, "code_postal": "92007", "stop_lon": 2.3181392863544255, "coord": [48.80003217773791, 2.3181392863544255], "stop_id": 4889632, "stop_desc": "20 AVENUE LOUIS PASTEUR - 92007", "stop_name": "COSSON - LONGUET"}, "geometry": {"type": "Point", "coordinates": [2.3181392863544255, 48.80003217773791]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d775aa534147a914324617eacecd9c4a0e0d12f0", "fields": {"departement": "92", "stop_lat": 48.79560993300324, "code_postal": "92007", "stop_lon": 2.3168213160147517, "coord": [48.79560993300324, 2.3168213160147517], "stop_id": 4889635, "stop_desc": "2 AVENUE PAUL VAILLANT COUTURIER - 92007", "stop_name": "ALBERT PETIT"}, "geometry": {"type": "Point", "coordinates": [2.3168213160147517, 48.79560993300324]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "96eba4c7b79bb85f4c7ec3d5c8203500e8f21fbc", "fields": {"departement": "92", "stop_lat": 48.79614928832564, "code_postal": "92007", "stop_lon": 2.3173108566165337, "coord": [48.79614928832564, 2.3173108566165337], "stop_id": 4889636, "stop_desc": "2 AVENUE LOUIS PASTEUR - 92007", "stop_name": "ALBERT PETIT"}, "geometry": {"type": "Point", "coordinates": [2.3173108566165337, 48.79614928832564]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7e56a60b91b6f738537efbad2a3738937b6a04d4", "fields": {"departement": "92", "stop_lat": 48.79297627206785, "code_postal": "92007", "stop_lon": 2.315625251776846, "coord": [48.79297627206785, 2.315625251776846], "stop_id": 4889637, "stop_desc": "26 AVENUE PAUL VAILLANT COUTURIER - 92007", "stop_name": "LES BLAINS"}, "geometry": {"type": "Point", "coordinates": [2.315625251776846, 48.79297627206785]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ad0dc761a8c156e0ff7b2730975b4bbd2d140e2f", "fields": {"departement": "92", "stop_lat": 48.7928684616351, "code_postal": "92007", "stop_lon": 2.315870157613037, "coord": [48.7928684616351, 2.315870157613037], "stop_id": 4889638, "stop_desc": "31 AVENUE PAUL VAILLANT COUTURIER - 92007", "stop_name": "LES BLAINS"}, "geometry": {"type": "Point", "coordinates": [2.315870157613037, 48.7928684616351]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8c0b0ae0dfef4522842863c1286d8b2ad5eb4701", "fields": {"departement": "92", "stop_lat": 48.78498452219128, "code_postal": "92007", "stop_lon": 2.3085830953806896, "coord": [48.78498452219128, 2.3085830953806896], "stop_id": 4889642, "stop_desc": "52 AVENUE DE BOURG LA REINE - 92007", "stop_name": "CLEMENCEAU"}, "geometry": {"type": "Point", "coordinates": [2.3085830953806896, 48.78498452219128]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8f997fe2af1db2e2043c6578eff057b8ead99312", "fields": {"departement": "92", "stop_lat": 48.785369711332365, "code_postal": "92007", "stop_lon": 2.303645566602403, "coord": [48.785369711332365, 2.303645566602403], "stop_id": 4889643, "stop_desc": "100 AVENUE DE BOURG LA REINE - 92007", "stop_name": "LES BLAGIS"}, "geometry": {"type": "Point", "coordinates": [2.303645566602403, 48.785369711332365]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bd09f493a67071657c078c0fede1e86bbaaeb6e8", "fields": {"departement": "92", "stop_lat": 48.79176781078943, "code_postal": "92007", "stop_lon": 2.299315641044413, "coord": [48.79176781078943, 2.299315641044413], "stop_id": 4889646, "stop_desc": "38 BIS AVENUE DU MARECHAL FOCH - 92007", "stop_name": "COLLEGE ROMAIN ROLLAND"}, "geometry": {"type": "Point", "coordinates": [2.299315641044413, 48.79176781078943]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ed6835c874332173b3abdf72c14f7721b5967627", "fields": {"departement": "92", "stop_lat": 48.788586608234255, "code_postal": "92032", "stop_lon": 2.30097744110702, "coord": [48.788586608234255, 2.30097744110702], "stop_id": 4889653, "stop_desc": "80 AVENUE DU MARECHAL FOCH - 92032", "stop_name": "RUE DES BRUGNAUTS"}, "geometry": {"type": "Point", "coordinates": [2.30097744110702, 48.788586608234255]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "41db6066a9236bdcb3e3b0b7577fbe5ae2f53ff6", "fields": {"departement": "92", "stop_lat": 48.78483172379547, "code_postal": "92071", "stop_lon": 2.308569578440949, "coord": [48.78483172379547, 2.308569578440949], "stop_id": 4889655, "stop_desc": "FACE 52 AVENUE DE BOURG LA REINE - 92071", "stop_name": "CLEMENCEAU"}, "geometry": {"type": "Point", "coordinates": [2.308569578440949, 48.78483172379547]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0b21eab67a70f83d101921f10224c5b76764b07d", "fields": {"departement": "92", "stop_lat": 48.81817044569001, "code_postal": "92049", "stop_lon": 2.3253050858161446, "coord": [48.81817044569001, 2.3253050858161446], "stop_id": 4890497, "stop_desc": "52 AVENUE ARISTIDE BRIAND - 92049", "stop_name": "GABRIEL PERI"}, "geometry": {"type": "Point", "coordinates": [2.3253050858161446, 48.81817044569001]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4173d529a1cb23cb76a2efc3d0e4abb51c533ad3", "fields": {"departement": "94", "stop_lat": 48.80906595180364, "code_postal": "94003", "stop_lon": 2.326246107567719, "coord": [48.80906595180364, 2.326246107567719], "stop_id": 4890501, "stop_desc": "24 AVENUE ARISTIDE BRIAND - 94003", "stop_name": "VACHE NOIRE"}, "geometry": {"type": "Point", "coordinates": [2.326246107567719, 48.80906595180364]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "73e67122686e9a8cf3265695ac859e1c17b4fa40", "fields": {"departement": "94", "stop_lat": 48.81062089478181, "code_postal": "94003", "stop_lon": 2.3268989636631354, "coord": [48.81062089478181, 2.3268989636631354], "stop_id": 4890502, "stop_desc": "3 AVENUE ARISTIDE BRIAND - 94003", "stop_name": "VACHE NOIRE"}, "geometry": {"type": "Point", "coordinates": [2.3268989636631354, 48.81062089478181]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "95a9a607db92796c8ed66210f2e53cbc2aa94c17", "fields": {"departement": "92", "stop_lat": 48.79369610412017, "code_postal": "92007", "stop_lon": 2.3206038703652614, "coord": [48.79369610412017, 2.3206038703652614], "stop_id": 4890507, "stop_desc": "206-208 AVENUE ARISTIDE BRIAND - 92007", "stop_name": "PONT ROYAL - RER"}, "geometry": {"type": "Point", "coordinates": [2.3206038703652614, 48.79369610412017]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6a97ba1f96db137adf1c825ae05ef4128d1c033b", "fields": {"departement": "92", "stop_lat": 48.78691889542465, "code_postal": "92014", "stop_lon": 2.3184297505046834, "coord": [48.78691889542465, 2.3184297505046834], "stop_id": 4890510, "stop_desc": "9 AVENUE DU GENERAL LECLERC - 92014", "stop_name": "PLACE DE LA RESISTANCE - CHARLES DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.3184297505046834, 48.78691889542465]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4ed31a94288fc1156ca0b1f6cecbe09d87cfb1ee", "fields": {"departement": "92", "stop_lat": 48.77033474019488, "code_postal": "92002", "stop_lon": 2.311460248843124, "coord": [48.77033474019488, 2.311460248843124], "stop_id": 4890517, "stop_desc": "69 AVENUE RAYMOND ARON - 92002", "stop_name": "LA FONTAINE"}, "geometry": {"type": "Point", "coordinates": [2.311460248843124, 48.77033474019488]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "82f6628e715aed5d9a2f6e1ce9111f100dd1f167", "fields": {"departement": "92", "stop_lat": 48.768177510907535, "code_postal": "92002", "stop_lon": 2.311026218250398, "coord": [48.768177510907535, 2.311026218250398], "stop_id": 4890520, "stop_desc": "FACE 49 AVENUE RAYMOND ARON - 92002", "stop_name": "NORMANDIE"}, "geometry": {"type": "Point", "coordinates": [2.311026218250398, 48.768177510907535]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fb91095d302f1e79f43d887c7a27fdb93467345e", "fields": {"departement": "92", "stop_lat": 48.74560900925413, "code_postal": "92002", "stop_lon": 2.3145984514916496, "coord": [48.74560900925413, 2.3145984514916496], "stop_id": 4890539, "stop_desc": "122-124 AVENUE ARMAND GUILLEBAUD - 92002", "stop_name": "LES RABATS"}, "geometry": {"type": "Point", "coordinates": [2.3145984514916496, 48.74560900925413]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e15a0046a9c8aaf47756e7851366a5fa2e1cd93e", "fields": {"departement": "92", "stop_lat": 48.74548326381813, "code_postal": "92002", "stop_lon": 2.3150741907437484, "coord": [48.74548326381813, 2.3150741907437484], "stop_id": 4890540, "stop_desc": "FACE 124 AV ARMAND GUILLEBAUD - 92002", "stop_name": "LES RABATS"}, "geometry": {"type": "Point", "coordinates": [2.3150741907437484, 48.74548326381813]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "16df10e2d622a62a840caf479023bc7131ebb9f2", "fields": {"departement": "91", "stop_lat": 48.731454125187724, "code_postal": "91689", "stop_lon": 2.3262353619149487, "coord": [48.731454125187724, 2.3262353619149487], "stop_id": 4890547, "stop_desc": "2 RUE DE LA DIVISION LECLERC - 91689", "stop_name": "MAIRIE DE WISSOUS"}, "geometry": {"type": "Point", "coordinates": [2.3262353619149487, 48.731454125187724]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6898eb3e8d2b596e29405eabad9835da2d439eea", "fields": {"departement": "91", "stop_lat": 48.727148402687796, "code_postal": "91689", "stop_lon": 2.323301656685195, "coord": [48.727148402687796, 2.323301656685195], "stop_id": 4890550, "stop_desc": "1 BD DE L'EUROPE - 91689", "stop_name": "VICTOR BALOCHE"}, "geometry": {"type": "Point", "coordinates": [2.323301656685195, 48.727148402687796]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9d975fb2387c4f52bd336b121eebb387aa3ca755", "fields": {"departement": "91", "stop_lat": 48.69657690148715, "code_postal": "91161", "stop_lon": 2.312542333307825, "coord": [48.69657690148715, 2.312542333307825], "stop_id": 4890566, "stop_desc": "28 BIS RUE PIERRE MENDES FRANCE - 91161", "stop_name": "ELISEE RECLUS"}, "geometry": {"type": "Point", "coordinates": [2.312542333307825, 48.69657690148715]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "70da7830d76b1e3b7fa435ed1a478282a54a1b1c", "fields": {"departement": "91", "stop_lat": 48.69448217799073, "code_postal": "91161", "stop_lon": 2.3107510765385917, "coord": [48.69448217799073, 2.3107510765385917], "stop_id": 4890568, "stop_desc": "56-58 RUE PIERRE MENDES FRANCE - 91161", "stop_name": "GRAND JARDIN"}, "geometry": {"type": "Point", "coordinates": [2.3107510765385917, 48.69448217799073]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6d85a78c388ac891d20aa5f0083c4b9493613eed", "fields": {"departement": "91", "stop_lat": 48.69958678808771, "code_postal": "91161", "stop_lon": 2.3070142528801103, "coord": [48.69958678808771, 2.3070142528801103], "stop_id": 4890572, "stop_desc": "FACE 47 RUE HENRI BARBUSSE - 91161", "stop_name": "CHILLY-MAZARIN RER"}, "geometry": {"type": "Point", "coordinates": [2.3070142528801103, 48.69958678808771]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "47abf868999976d49f9cb9047deb44fb1bbb49b8", "fields": {"departement": "91", "stop_lat": 48.69761622788545, "code_postal": "91345", "stop_lon": 2.299764489117, "coord": [48.69761622788545, 2.299764489117], "stop_id": 4890576, "stop_desc": "AVENUE DE L'ABBE PIERRE - 91345", "stop_name": "GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.299764489117, 48.69761622788545]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5ffa8be1b83a190ecbd0b51fce2546e7c08c38c5", "fields": {"departement": "91", "stop_lat": 48.694029119668265, "code_postal": "91345", "stop_lon": 2.2977032864842424, "coord": [48.694029119668265, 2.2977032864842424], "stop_id": 4890578, "stop_desc": "2 AVENUE DU GENERAL DE GAULLE - 91345", "stop_name": "LEONTINE SOHIER"}, "geometry": {"type": "Point", "coordinates": [2.2977032864842424, 48.694029119668265]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a7ddb9c6f50436ca5ceeaa7660c944ef0db0bf26", "fields": {"departement": "91", "stop_lat": 48.6909084764504, "code_postal": "91345", "stop_lon": 2.293157453118344, "coord": [48.6909084764504, 2.293157453118344], "stop_id": 4890579, "stop_desc": "RUE DU DOCTEUR ROUX - 91345", "stop_name": "LES COTEAUX"}, "geometry": {"type": "Point", "coordinates": [2.293157453118344, 48.6909084764504]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "808770e9f4c7be440e804643c0c558dfbb4b1c55", "fields": {"departement": "91", "stop_lat": 48.69049548254798, "code_postal": "91345", "stop_lon": 2.2944747355863733, "coord": [48.69049548254798, 2.2944747355863733], "stop_id": 4890580, "stop_desc": "28 RUE DU DOCTEUR ROUX - 91345", "stop_name": "LES COTEAUX"}, "geometry": {"type": "Point", "coordinates": [2.2944747355863733, 48.69049548254798]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "04faf58dc5aa1af3bbe543b799fc74f9caeb394c", "fields": {"departement": "91", "stop_lat": 48.7293688486765, "code_postal": "91689", "stop_lon": 2.326412431744238, "coord": [48.7293688486765, 2.326412431744238], "stop_id": 4890588, "stop_desc": "39 RUE VICTOR BALOCHE - 91689", "stop_name": "MONDETOUR"}, "geometry": {"type": "Point", "coordinates": [2.326412431744238, 48.7293688486765]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eec1fdf4c30b4cc3a46c6b6ed7bcf9b5418ce68f", "fields": {"departement": "94", "stop_lat": 48.78995699489565, "code_postal": "94016", "stop_lon": 2.319612077566947, "coord": [48.78995699489565, 2.319612077566947], "stop_id": 4890594, "stop_desc": "FACE 276 AVENUE ARISTIDE BRIAND - 94016", "stop_name": "CITE JARDINS"}, "geometry": {"type": "Point", "coordinates": [2.319612077566947, 48.78995699489565]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "10b558f043b7b7a7f4e6e2ff1fef901c9a7b996e", "fields": {"departement": "75", "stop_lat": 48.82245759415938, "code_postal": "75114", "stop_lon": 2.3254810437249733, "coord": [48.82245759415938, 2.3254810437249733], "stop_id": 4890600, "stop_desc": "5 PL DU 25 AOUT 1944 - 75114", "stop_name": "PORTE D'ORLEANS-METRO"}, "geometry": {"type": "Point", "coordinates": [2.3254810437249733, 48.82245759415938]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1fa5ac2fe0191ab7f31c1ba01961eccd744726c5", "fields": {"departement": "92", "stop_lat": 48.81817044569001, "code_postal": "92049", "stop_lon": 2.3253050858161446, "coord": [48.81817044569001, 2.3253050858161446], "stop_id": 4890601, "stop_desc": "52 AVENUE ARISTIDE BRIAND - 92049", "stop_name": "GABRIEL PERI"}, "geometry": {"type": "Point", "coordinates": [2.3253050858161446, 48.81817044569001]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "28e969c487c68d096fef13726b49e6a2ab8611bb", "fields": {"departement": "92", "stop_lat": 48.80574038095107, "code_postal": "92007", "stop_lon": 2.3253215530584908, "coord": [48.80574038095107, 2.3253215530584908], "stop_id": 4890604, "stop_desc": "26 AVENUE ARISTIDE BRIAND - 92007", "stop_name": "CROIX D'ARCUEIL"}, "geometry": {"type": "Point", "coordinates": [2.3253215530584908, 48.80574038095107]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a51531e0c42e0bec12b823914984fc9a63f9451f", "fields": {"departement": "92", "stop_lat": 48.80103955903768, "code_postal": "92007", "stop_lon": 2.3235267038195793, "coord": [48.80103955903768, 2.3235267038195793], "stop_id": 4890605, "stop_desc": "FACE 1 AVENUE ARISTIDE BRIAND - 92007", "stop_name": "GRANGE ORY"}, "geometry": {"type": "Point", "coordinates": [2.3235267038195793, 48.80103955903768]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e37e5769f6562eb776bddf1053662aeb4cc4d33e", "fields": {"departement": "92", "stop_lat": 48.78957043889509, "code_postal": "92007", "stop_lon": 2.3191089155752103, "coord": [48.78957043889509, 2.3191089155752103], "stop_id": 4890609, "stop_desc": "278 AVENUE ARISTIDE BRIAND - 92007", "stop_name": "CITE JARDINS"}, "geometry": {"type": "Point", "coordinates": [2.3191089155752103, 48.78957043889509]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a824944a2343669d1c2c5843feaf2bdd70ce014d", "fields": {"departement": "92", "stop_lat": 48.75812776706284, "code_postal": "92002", "stop_lon": 2.3066539281211798, "coord": [48.75812776706284, 2.3066539281211798], "stop_id": 4890619, "stop_desc": "63 AVENUE ARISTIDE BRIAND - 92002", "stop_name": "FERNAND FENZY"}, "geometry": {"type": "Point", "coordinates": [2.3066539281211798, 48.75812776706284]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aef335fcbc8df2355e54ca845f570d8d64abe0cc", "fields": {"departement": "92", "stop_lat": 48.75533998752939, "code_postal": "92002", "stop_lon": 2.301449234971448, "coord": [48.75533998752939, 2.301449234971448], "stop_id": 4890620, "stop_desc": "FACE 16 RUE VELPEAU - 92002", "stop_name": "ANTONY RER"}, "geometry": {"type": "Point", "coordinates": [2.301449234971448, 48.75533998752939]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "60b8556211e4a117ebb5de77966e9786e92775b1", "fields": {"departement": "92", "stop_lat": 48.75043325524002, "code_postal": "92002", "stop_lon": 2.3042526245193016, "coord": [48.75043325524002, 2.3042526245193016], "stop_id": 4890621, "stop_desc": "46 AVENUE DE LA DIVISION LECLERC - 92002", "stop_name": "PONT D'ANTONY"}, "geometry": {"type": "Point", "coordinates": [2.3042526245193016, 48.75043325524002]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3fbde747eeda359eae3a11e7d8315df81f6c219d", "fields": {"departement": "91", "stop_lat": 48.743020909897695, "code_postal": "91689", "stop_lon": 2.317467141191928, "coord": [48.743020909897695, 2.317467141191928], "stop_id": 4890624, "stop_desc": "178 ROUTE D'ANTONY-CHARLES DE GAULLE - 91689", "stop_name": "PASCAL"}, "geometry": {"type": "Point", "coordinates": [2.317467141191928, 48.743020909897695]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e3489fb4dc79543287673860b8f4863dc2361bb6", "fields": {"departement": "91", "stop_lat": 48.70569154817685, "code_postal": "91161", "stop_lon": 2.31389606291992, "coord": [48.70569154817685, 2.31389606291992], "stop_id": 4890633, "stop_desc": "AVENUE MAZARIN - 91161", "stop_name": "COLLEGE DE CHILLY-MAZARIN"}, "geometry": {"type": "Point", "coordinates": [2.31389606291992, 48.70569154817685]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3ae726dcf8107b7a42d1f78d2035f575441d564e", "fields": {"departement": "91", "stop_lat": 48.705559004419435, "code_postal": "91432", "stop_lon": 2.335502782802847, "coord": [48.705559004419435, 2.335502782802847], "stop_id": 4890640, "stop_desc": "RUE DE SAVIGNY - 91432", "stop_name": "PLACE LUCIEN BOILLEAU"}, "geometry": {"type": "Point", "coordinates": [2.335502782802847, 48.705559004419435]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4d1df270659e432608c911f6656366413e96ee03", "fields": {"departement": "91", "stop_lat": 48.69448217799073, "code_postal": "91161", "stop_lon": 2.3107510765385917, "coord": [48.69448217799073, 2.3107510765385917], "stop_id": 4890646, "stop_desc": "56-58 RUE PIERRE MENDES FRANCE - 91161", "stop_name": "GRAND JARDIN"}, "geometry": {"type": "Point", "coordinates": [2.3107510765385917, 48.69448217799073]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "df0a87d7d9c9d0b2846cd1452d92890d16bf4b42", "fields": {"departement": "91", "stop_lat": 48.6909084764504, "code_postal": "91345", "stop_lon": 2.293157453118344, "coord": [48.6909084764504, 2.293157453118344], "stop_id": 4890652, "stop_desc": "RUE DU DOCTEUR ROUX - 91345", "stop_name": "LES COTEAUX"}, "geometry": {"type": "Point", "coordinates": [2.293157453118344, 48.6909084764504]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "277044eece5de520c086d705351d42c7d7832faf", "fields": {"departement": "91", "stop_lat": 48.69625528152623, "code_postal": "91345", "stop_lon": 2.2895275620689732, "coord": [48.69625528152623, 2.2895275620689732], "stop_id": 4890654, "stop_desc": "RUE DU CANAL - 91345", "stop_name": "CANAL DE L'YVETTE"}, "geometry": {"type": "Point", "coordinates": [2.2895275620689732, 48.69625528152623]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "098007d39164d2ada7271cf84de8a93e305d3ed6", "fields": {"departement": "91", "stop_lat": 48.69159932736135, "code_postal": "91345", "stop_lon": 2.2898576780678925, "coord": [48.69159932736135, 2.2898576780678925], "stop_id": 4890672, "stop_desc": "RUE DU PRESIDENT FRANCOIS MITTERRAND - 91345", "stop_name": "HOPITAL DE LONGJUMEAU"}, "geometry": {"type": "Point", "coordinates": [2.2898576780678925, 48.69159932736135]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d008bdca03fba15b1bfc2eebac5daa04d198791a", "fields": {"departement": "91", "stop_lat": 48.69049548254798, "code_postal": "91345", "stop_lon": 2.2944747355863733, "coord": [48.69049548254798, 2.2944747355863733], "stop_id": 4890673, "stop_desc": "28 RUE DU DOCTEUR ROUX - 91345", "stop_name": "LES COTEAUX"}, "geometry": {"type": "Point", "coordinates": [2.2944747355863733, 48.69049548254798]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "83fe97e0088013d03fe6c861170a91eb59eeed31", "fields": {"departement": "91", "stop_lat": 48.69877681712549, "code_postal": "91161", "stop_lon": 2.3033077155877164, "coord": [48.69877681712549, 2.3033077155877164], "stop_id": 4890676, "stop_desc": "AVENUE PIERRE BROSSOLETTE - 91161", "stop_name": "RUE DE CHILLY"}, "geometry": {"type": "Point", "coordinates": [2.3033077155877164, 48.69877681712549]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "44aea1813fd5084a0da829f8f57c2bdc7ce09f5e", "fields": {"departement": "91", "stop_lat": 48.70280731012724, "code_postal": "91161", "stop_lon": 2.3202119811356745, "coord": [48.70280731012724, 2.3202119811356745], "stop_id": 4890682, "stop_desc": "FACE 9 AV MAZARIN - 91161", "stop_name": "PLACE DE LA LIBERATION"}, "geometry": {"type": "Point", "coordinates": [2.3202119811356745, 48.70280731012724]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a9d6eff84b9330f46d0600db9278a75bdd05fb62", "fields": {"departement": "91", "stop_lat": 48.706042051347254, "code_postal": "91161", "stop_lon": 2.3136514533219743, "coord": [48.706042051347254, 2.3136514533219743], "stop_id": 4890684, "stop_desc": "32 AVENUE MAZARIN - 91161", "stop_name": "COLLEGE DE CHILLY-MAZARIN"}, "geometry": {"type": "Point", "coordinates": [2.3136514533219743, 48.706042051347254]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "67bfbe3cff68c94f953f7ce172ecba208f1792d7", "fields": {"departement": "91", "stop_lat": 48.72734619670164, "code_postal": "91689", "stop_lon": 2.3237363634129284, "coord": [48.72734619670164, 2.3237363634129284], "stop_id": 4890688, "stop_desc": "RUE VICTOR BALOCHE - 91689", "stop_name": "VICTOR BALOCHE"}, "geometry": {"type": "Point", "coordinates": [2.3237363634129284, 48.72734619670164]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0c25dff7812afc54f6c2e8e8ead5f53c78a696a3", "fields": {"departement": "91", "stop_lat": 48.740271136626134, "code_postal": "91689", "stop_lon": 2.3217217392188005, "coord": [48.740271136626134, 2.3217217392188005], "stop_id": 4890694, "stop_desc": "FACE 51 RUE DU CHEMIN DE LA VALLEE - 91689", "stop_name": "FRIBOULI"}, "geometry": {"type": "Point", "coordinates": [2.3217217392188005, 48.740271136626134]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e3f7755b26f3bb8f6204ff5d02a3fb13e3eb1197", "fields": {"departement": "94", "stop_lat": 48.75460337720744, "code_postal": "94073", "stop_lon": 2.3948633794539624, "coord": [48.75460337720744, 2.3948633794539624], "stop_id": 4909844, "stop_desc": "37 RUE JEAN-FRANCOIS MARMONTEL - 94073", "stop_name": "FERME DE GRIGNON"}, "geometry": {"type": "Point", "coordinates": [2.3948633794539624, 48.75460337720744]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0e8f2eec3323e9efd7fb802ba2e19b4213de2293", "fields": {"departement": "94", "stop_lat": 48.76045293222738, "code_postal": "94073", "stop_lon": 2.398322970024334, "coord": [48.76045293222738, 2.398322970024334], "stop_id": 4909849, "stop_desc": "FACE 10 RUE VICTOR HUGO - 94073", "stop_name": "VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.398322970024334, 48.76045293222738]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0995d402c1b3dd0962925c5d4a34fcf7e81611ff", "fields": {"departement": "94", "stop_lat": 48.76456332374457, "code_postal": "94073", "stop_lon": 2.392549510379606, "coord": [48.76456332374457, 2.392549510379606], "stop_id": 4909852, "stop_desc": "72 AVENUE RENE PANHARD - 94073", "stop_name": "MAIRIE DE THIAIS"}, "geometry": {"type": "Point", "coordinates": [2.392549510379606, 48.76456332374457]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1ba281a825cd6869af3e94f3e39624b3539bd2b1", "fields": {"departement": "93", "stop_lat": 48.867802529367104, "code_postal": "93048", "stop_lon": 2.4573963460362274, "coord": [48.867802529367104, 2.4573963460362274], "stop_id": 4937265, "stop_desc": "RUE DIDIER DAURAT - 93048", "stop_name": "COLLEGE CESARIA EVORA"}, "geometry": {"type": "Point", "coordinates": [2.4573963460362274, 48.867802529367104]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ac2edcaf1b0402d531898ec021b5499a65c9f478", "fields": {"departement": "75", "stop_lat": 48.84612641829164, "code_postal": "75112", "stop_lon": 2.372047013071946, "coord": [48.84612641829164, 2.372047013071946], "stop_id": 4996977, "stop_desc": "3 RUE DE LYON - 75112", "stop_name": "GARE DE LYON - DIDEROT"}, "geometry": {"type": "Point", "coordinates": [2.372047013071946, 48.84612641829164]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a8109de295c891d1485edc804cd36a37acce8d83", "fields": {"departement": "75", "stop_lat": 48.853856485402765, "code_postal": "75111", "stop_lon": 2.369069554093801, "coord": [48.853856485402765, 2.369069554093801], "stop_id": 4996981, "stop_desc": "2 BOULEVARD BEAUMARCHAIS - 75111", "stop_name": "BASTILLE - BEAUMARCHAIS"}, "geometry": {"type": "Point", "coordinates": [2.369069554093801, 48.853856485402765]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b36b0aae581dfbb385c62f0f1173239001c24c64", "fields": {"departement": "75", "stop_lat": 48.86612529914724, "code_postal": "75111", "stop_lon": 2.3650720364493116, "coord": [48.86612529914724, 2.3650720364493116], "stop_id": 4996987, "stop_desc": "50-52 BOULEVARD DU TEMPLE - 75111", "stop_name": "REPUBLIQUE - TEMPLE"}, "geometry": {"type": "Point", "coordinates": [2.3650720364493116, 48.86612529914724]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "45fcb875c8de77125584b81742a0c29aa05c1c1b", "fields": {"departement": "75", "stop_lat": 48.868039861543714, "code_postal": "75110", "stop_lon": 2.363955968897187, "coord": [48.868039861543714, 2.363955968897187], "stop_id": 4996988, "stop_desc": "12 PLACE DE LA REPUBLIQUE - 75110", "stop_name": "REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.363955968897187, 48.868039861543714]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "abc96daffb7d2d8de4ca729f89592fcc6afe3b61", "fields": {"departement": "75", "stop_lat": 48.87350522009684, "code_postal": "75110", "stop_lon": 2.35869971045395, "coord": [48.87350522009684, 2.35869971045395], "stop_id": 4996992, "stop_desc": "58-60 BOULEVARD DE MAGENTA - 75110", "stop_name": "STRASBOURG - MAGENTA"}, "geometry": {"type": "Point", "coordinates": [2.35869971045395, 48.87350522009684]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3c6472b79e8470575177e1ec6520e645b9fd898d", "fields": {"departement": "75", "stop_lat": 48.87781949763114, "code_postal": "75110", "stop_lon": 2.3564941357294393, "coord": [48.87781949763114, 2.3564941357294393], "stop_id": 4996995, "stop_desc": "140-142 RUE DU FAUBOURG SAINT-DENIS - 75110", "stop_name": "VALENCIENNES"}, "geometry": {"type": "Point", "coordinates": [2.3564941357294393, 48.87781949763114]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "70ef40231abdf5cf0372df914dcd888f2c5f8dee", "fields": {"departement": "75", "stop_lat": 48.88269019810708, "code_postal": "75110", "stop_lon": 2.3587988991979594, "coord": [48.88269019810708, 2.3587988991979594], "stop_id": 4996999, "stop_desc": "197 RUE DU FAUBOURG SAINT-DENIS - 75110", "stop_name": "CAIL - DEMARQUAY"}, "geometry": {"type": "Point", "coordinates": [2.3587988991979594, 48.88269019810708]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "384bbcade19e75a7d1e63e0dbdae7151685277c9", "fields": {"departement": "75", "stop_lat": 48.8869140179454, "code_postal": "75118", "stop_lon": 2.3597546195871972, "coord": [48.8869140179454, 2.3597546195871972], "stop_id": 4997001, "stop_desc": "38-40 RUE MARX DORMOY - 75118", "stop_name": "DEPARTEMENT - MARX DORMOY"}, "geometry": {"type": "Point", "coordinates": [2.3597546195871972, 48.8869140179454]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "58c041c5277f22c88d00dbcda761044fe4a714a5", "fields": {"departement": "75", "stop_lat": 48.8956406844485, "code_postal": "75118", "stop_lon": 2.359131411948386, "coord": [48.8956406844485, 2.359131411948386], "stop_id": 4997008, "stop_desc": "61 RUE DE LA CHAPELLE - 75118", "stop_name": "BOUCRY"}, "geometry": {"type": "Point", "coordinates": [2.359131411948386, 48.8956406844485]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "03c617516bcc469d2b9f79d1615d4321eea29292", "fields": {"departement": "75", "stop_lat": 48.89703365100446, "code_postal": "75118", "stop_lon": 2.3593500916646, "coord": [48.89703365100446, 2.3593500916646], "stop_id": 4997009, "stop_desc": "90 RUE DE LA CHAPELLE - 75118", "stop_name": "PORTE DE LA CHAPELLE"}, "geometry": {"type": "Point", "coordinates": [2.3593500916646, 48.89703365100446]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "579d0f14283e224126422378772f4b8997674cd2", "fields": {"departement": "75", "stop_lat": 48.86483101886425, "code_postal": "75103", "stop_lon": 2.365493632274414, "coord": [48.86483101886425, 2.365493632274414], "stop_id": 4997015, "stop_desc": "23 BOULEVARD DU TEMPLE - 75103", "stop_name": "JEAN-PIERRE TIMBAUD"}, "geometry": {"type": "Point", "coordinates": [2.365493632274414, 48.86483101886425]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5376c82715fe4b9deb3cc2018d34b1bcfbdff699", "fields": {"departement": "92", "stop_lat": 48.92211258700736, "code_postal": "92036", "stop_lon": 2.2995883843019325, "coord": [48.92211258700736, 2.2995883843019325], "stop_id": 5009401, "stop_desc": "FACE 58 AVENUE CHANDON - 92036", "stop_name": "BARBUSSE"}, "geometry": {"type": "Point", "coordinates": [2.2995883843019325, 48.92211258700736]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b9ad9d0b5a02c9c002f65c3fc2573c6e9e25ffcd", "fields": {"departement": "92", "stop_lat": 48.923540562795125, "code_postal": "92036", "stop_lon": 2.296696152480557, "coord": [48.923540562795125, 2.296696152480557], "stop_id": 5009402, "stop_desc": "21 AVENUE CHANDON - 92036", "stop_name": "DEBUSSY - CHANDON"}, "geometry": {"type": "Point", "coordinates": [2.296696152480557, 48.923540562795125]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0c326f579a98ba8bc884e043e46bda2633c25216", "fields": {"departement": "92", "stop_lat": 48.92677493166906, "code_postal": "92036", "stop_lon": 2.29406137822655, "coord": [48.92677493166906, 2.29406137822655], "stop_id": 5009403, "stop_desc": "2-4 RUE LOUIS CALMEL - 92036", "stop_name": "JAURES - CAMELINAT - MAIRIE"}, "geometry": {"type": "Point", "coordinates": [2.29406137822655, 48.92677493166906]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9629b770fc0959e6224b0f1d695cf44a6722e738", "fields": {"departement": "92", "stop_lat": 48.93101284131389, "code_postal": "92025", "stop_lon": 2.2669558107428234, "coord": [48.93101284131389, 2.2669558107428234], "stop_id": 5009414, "stop_desc": "107 AVENUE DE STALINGRAD - 92025", "stop_name": "MAIRIE DE QUARTIER - C.A.F."}, "geometry": {"type": "Point", "coordinates": [2.2669558107428234, 48.93101284131389]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4a9c39573cd8f8bbb9c840c82f170649a33070c3", "fields": {"departement": "92", "stop_lat": 48.92944817233457, "code_postal": "92025", "stop_lon": 2.265362140738861, "coord": [48.92944817233457, 2.265362140738861], "stop_id": 5009415, "stop_desc": "77 BOULEVARD MARCEAU - 92025", "stop_name": "MARCHE MARCEAU"}, "geometry": {"type": "Point", "coordinates": [2.265362140738861, 48.92944817233457]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7cec6aae6698152113ccc65d27c310d7d3330d31", "fields": {"departement": "92", "stop_lat": 48.93148481712028, "code_postal": "92025", "stop_lon": 2.2599579521368627, "coord": [48.93148481712028, 2.2599579521368627], "stop_id": 5009422, "stop_desc": "RUE AUGUSTE RENOIR - 92025", "stop_name": "GARE DU STADE"}, "geometry": {"type": "Point", "coordinates": [2.2599579521368627, 48.93148481712028]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "001d3600105737b069ab55d37ee0cedb8123fe47", "fields": {"departement": "75", "stop_lat": 48.87588703652639, "code_postal": "75110", "stop_lon": 2.35766518297707, "coord": [48.87588703652639, 2.35766518297707], "stop_id": 5018141, "stop_desc": "89 BOULEVARD DE STRASBOURG - 75110", "stop_name": "GARE DE L'EST"}, "geometry": {"type": "Point", "coordinates": [2.35766518297707, 48.87588703652639]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "85505bfdd97e488c07dedf87cbc7685d3197d81b", "fields": {"departement": "75", "stop_lat": 48.878916395001, "code_postal": "75110", "stop_lon": 2.353469578838293, "coord": [48.878916395001, 2.353469578838293], "stop_id": 5018143, "stop_desc": "103 BOULEVARD DE MAGENTA - 75110", "stop_name": "LA FAYETTE - MAGENTA - GARE DU NORD"}, "geometry": {"type": "Point", "coordinates": [2.353469578838293, 48.878916395001]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "579e758c487ab12807116930a45cdad24abf15d3", "fields": {"departement": "75", "stop_lat": 48.88409354700711, "code_postal": "75118", "stop_lon": 2.349287609746963, "coord": [48.88409354700711, 2.349287609746963], "stop_id": 5018147, "stop_desc": "5 BOULEVARD BARBES - 75118", "stop_name": "BARBES - ROCHECHOUART"}, "geometry": {"type": "Point", "coordinates": [2.349287609746963, 48.88409354700711]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fff748f785f61a130c07ec02dfa192fa5fed7a7b", "fields": {"departement": "75", "stop_lat": 48.88783222118241, "code_postal": "75118", "stop_lon": 2.349370247627986, "coord": [48.88783222118241, 2.349370247627986], "stop_id": 5018149, "stop_desc": "37 BOULEVARD BARBES - 75118", "stop_name": "CHATEAU ROUGE"}, "geometry": {"type": "Point", "coordinates": [2.349370247627986, 48.88783222118241]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d354db7ec4ffc3495a1a09d822a24e1456e383dd", "fields": {"departement": "75", "stop_lat": 48.89118443658087, "code_postal": "75118", "stop_lon": 2.34943917727661, "coord": [48.89118443658087, 2.34943917727661], "stop_id": 5018151, "stop_desc": "73 BOULEVARD BARBES - 75118", "stop_name": "MARCADET - POISSONNIERS"}, "geometry": {"type": "Point", "coordinates": [2.34943917727661, 48.89118443658087]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "538d5b9b4220a252c32702bb0d40520e9e3478e7", "fields": {"departement": "75", "stop_lat": 48.89409678166783, "code_postal": "75118", "stop_lon": 2.33189811012248, "coord": [48.89409678166783, 2.33189811012248], "stop_id": 5018158, "stop_desc": "196 RUE CHAMPIONNET - 75118", "stop_name": "VAUVENARGUES"}, "geometry": {"type": "Point", "coordinates": [2.33189811012248, 48.89409678166783]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a4d5d9255548885001abb44eafb3cb42ca76af03", "fields": {"departement": "75", "stop_lat": 48.89206491237637, "code_postal": "75117", "stop_lon": 2.322684831765549, "coord": [48.89206491237637, 2.322684831765549], "stop_id": 5018161, "stop_desc": "33 RUE GUY MOQUET - 75117", "stop_name": "MOINES - DAVY"}, "geometry": {"type": "Point", "coordinates": [2.322684831765549, 48.89206491237637]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "720679ea55534d42f8d2ef81dbf6b47f3c338a26", "fields": {"departement": "75", "stop_lat": 48.8912015220119, "code_postal": "75117", "stop_lon": 2.318269215695327, "coord": [48.8912015220119, 2.318269215695327], "stop_id": 5018164, "stop_desc": "190 RUE CARDINET - 75117", "stop_name": "BROCHANT - CARDINET"}, "geometry": {"type": "Point", "coordinates": [2.318269215695327, 48.8912015220119]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a578ac3e33b4333a09cb424952923751d550286e", "fields": {"departement": "75", "stop_lat": 48.885861293242606, "code_postal": "75117", "stop_lon": 2.3090179022580894, "coord": [48.885861293242606, 2.3090179022580894], "stop_id": 5018169, "stop_desc": "36 BIS RUE JOUFFROY D'ABBANS - 75117", "stop_name": "JOUFFROY D'ABBANS - TOCQUEVILLE"}, "geometry": {"type": "Point", "coordinates": [2.3090179022580894, 48.885861293242606]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ab2509c3cd57592e3d139673c65ad4c39a8580b6", "fields": {"departement": "75", "stop_lat": 48.886104226176634, "code_postal": "75117", "stop_lon": 2.310217021070982, "coord": [48.886104226176634, 2.310217021070982], "stop_id": 5018170, "stop_desc": "21 RUE JOUFFROY D'ABBANS - 75117", "stop_name": "JOUFFROY D'ABBANS - TOCQUEVILLE"}, "geometry": {"type": "Point", "coordinates": [2.310217021070982, 48.886104226176634]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e048f5fc362ec207017122f0fe9136330d1fadcf", "fields": {"departement": "75", "stop_lat": 48.877545158770765, "code_postal": "75108", "stop_lon": 2.298585218601294, "coord": [48.877545158770765, 2.298585218601294], "stop_id": 5018179, "stop_desc": "237 RUE DU FAUBOURG SAINT-HONORE - 75108", "stop_name": "TERNES"}, "geometry": {"type": "Point", "coordinates": [2.298585218601294, 48.877545158770765]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "035cb33ef2fa861f1e00f1c5345a89cb1125d581", "fields": {"departement": "75", "stop_lat": 48.874866533515494, "code_postal": "75108", "stop_lon": 2.2973337255402138, "coord": [48.874866533515494, 2.2973337255402138], "stop_id": 5018182, "stop_desc": "56-58 AVENUE HOCHE - 75108", "stop_name": "CHARLES DE GAULLE - ETOILE"}, "geometry": {"type": "Point", "coordinates": [2.2973337255402138, 48.874866533515494]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f45221c22d41e93d6d83c323c814af493f6d6f77", "fields": {"departement": "75", "stop_lat": 48.87280602082973, "code_postal": "75109", "stop_lon": 2.3319275579709204, "coord": [48.87280602082973, 2.3319275579709204], "stop_id": 5018188, "stop_desc": "8 RUE GLUCK - 75109", "stop_name": "GLUCK - HAUSSMANN"}, "geometry": {"type": "Point", "coordinates": [2.3319275579709204, 48.87280602082973]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "267ba6c376dc68940d275ea27c10a05bc2841e04", "fields": {"departement": "92", "stop_lat": 48.88712632400157, "code_postal": "92063", "stop_lon": 2.1728721577595156, "coord": [48.88712632400157, 2.1728721577595156], "stop_id": 4024599, "stop_desc": "AVENUE DE COLMAR - 92063", "stop_name": "RUEIL-MALMAISON RER"}, "geometry": {"type": "Point", "coordinates": [2.1728721577595156, 48.88712632400157]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c4b398036f1260780284daf544d5fb49176ad7fc", "fields": {"departement": "92", "stop_lat": 48.877022210574445, "code_postal": "92063", "stop_lon": 2.1992967712593696, "coord": [48.877022210574445, 2.1992967712593696], "stop_id": 4024607, "stop_desc": "114 RUE DANTON - 92063", "stop_name": "VOLTAIRE"}, "geometry": {"type": "Point", "coordinates": [2.1992967712593696, 48.877022210574445]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "61d482a14675aa5d87bbcb63a5c6e0a1707ed8bc", "fields": {"departement": "92", "stop_lat": 48.88875088546612, "code_postal": "92062", "stop_lon": 2.2353267360720896, "coord": [48.88875088546612, 2.2353267360720896], "stop_id": 4024672, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 92062", "stop_name": "LES BOUVETS"}, "geometry": {"type": "Point", "coordinates": [2.2353267360720896, 48.88875088546612]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e7d98a3c8a2679db7d9f5e1140ecb86b720eeeb3", "fields": {"departement": "92", "stop_lat": 48.88731991777116, "code_postal": "92062", "stop_lon": 2.2330127586935045, "coord": [48.88731991777116, 2.2330127586935045], "stop_id": 4024675, "stop_desc": "65-69 AVENUE DU GENERAL DE GAULLE - 92062", "stop_name": "LES GRAVIERS"}, "geometry": {"type": "Point", "coordinates": [2.2330127586935045, 48.88731991777116]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bb3446bb9e6b2bd0cc98367259d16e88508fd4ad", "fields": {"departement": "92", "stop_lat": 48.88703095931309, "code_postal": "92050", "stop_lon": 2.2045169572232255, "coord": [48.88703095931309, 2.2045169572232255], "stop_id": 4024685, "stop_desc": "FACE 48 AVENUE GEORGES CLEMENCEAU - 92050", "stop_name": "LA SOURCE"}, "geometry": {"type": "Point", "coordinates": [2.2045169572232255, 48.88703095931309]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "47e440b719ece31efa453f40ac4048bc92f58e83", "fields": {"departement": "92", "stop_lat": 48.88726100109216, "code_postal": "92050", "stop_lon": 2.2013001183399865, "coord": [48.88726100109216, 2.2013001183399865], "stop_id": 4024687, "stop_desc": "1 AVENUE GEORGES CLEMENCEAU - 92050", "stop_name": "PLACE DE LA BOULE - CLEMENCEAU"}, "geometry": {"type": "Point", "coordinates": [2.2013001183399865, 48.88726100109216]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4d7d72c3673d114f6cfd5aebc150bd563a404828", "fields": {"departement": "92", "stop_lat": 48.88279774489227, "code_postal": "92063", "stop_lon": 2.1890747728507938, "coord": [48.88279774489227, 2.1890747728507938], "stop_id": 4024694, "stop_desc": "FACE 46 AVENUE PAUL DOUMER - 92063", "stop_name": "GABRIEL PERI"}, "geometry": {"type": "Point", "coordinates": [2.1890747728507938, 48.88279774489227]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1a167c9e5982c0fcf071e117cdf3b126a0e0ebd1", "fields": {"departement": "92", "stop_lat": 48.880623262018354, "code_postal": "92063", "stop_lon": 2.1823495283900023, "coord": [48.880623262018354, 2.1823495283900023], "stop_id": 4024695, "stop_desc": "140 AVENUE PAUL DOUMER - 92063", "stop_name": "RUEIL - VILLE"}, "geometry": {"type": "Point", "coordinates": [2.1823495283900023, 48.880623262018354]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4bf069d2d6d6b361a795ca20cd8dfd6ce08f75a1", "fields": {"departement": "92", "stop_lat": 48.8771682333074, "code_postal": "92063", "stop_lon": 2.172726600700979, "coord": [48.8771682333074, 2.172726600700979], "stop_id": 4024699, "stop_desc": "230 AVENUE NAPOLEON BONAPARTE - 92063", "stop_name": "BOIS PREAU"}, "geometry": {"type": "Point", "coordinates": [2.172726600700979, 48.8771682333074]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f1e06d406ed90fe8c460e8e46b9514f00bb5bb3a", "fields": {"departement": "78", "stop_lat": 48.86732955997137, "code_postal": "78092", "stop_lon": 2.1389320212149565, "coord": [48.86732955997137, 2.1389320212149565], "stop_id": 4024713, "stop_desc": "2 QUAI GEORGES CLEMENCEAU - 78092", "stop_name": "PONT DE BOUGIVAL"}, "geometry": {"type": "Point", "coordinates": [2.1389320212149565, 48.86732955997137]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6966390d71d6453f7aed7b3b6d9d1fd3e0479ca9", "fields": {"departement": "78", "stop_lat": 48.89460216928469, "code_postal": "78551", "stop_lon": 2.097719152283792, "coord": [48.89460216928469, 2.097719152283792], "stop_id": 4024730, "stop_desc": "84-92 RUE DU MARECHAL LYAUTEY - 78551", "stop_name": "PLACE ROYALE"}, "geometry": {"type": "Point", "coordinates": [2.097719152283792, 48.89460216928469]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "02a355e3beabcc3bc9799b037b6a5f9c6b0a387f", "fields": {"departement": "78", "stop_lat": 48.876798417578975, "code_postal": "78350", "stop_lon": 2.1163320453358043, "coord": [48.876798417578975, 2.1163320453358043], "stop_id": 4024734, "stop_desc": "1 QUAI CONTI - 78350", "stop_name": "BAS PRUNAY"}, "geometry": {"type": "Point", "coordinates": [2.1163320453358043, 48.876798417578975]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "44642c6c2e4ef4174bd311273ae57bdb234d1cd3", "fields": {"departement": "92", "stop_lat": 48.89155660463518, "code_postal": "92062", "stop_lon": 2.2373519836237543, "coord": [48.89155660463518, 2.2373519836237543], "stop_id": 4024737, "stop_desc": "PISTE GARE ROUTIERE - 92062", "stop_name": "LA DEFENSE-METRO-RER-TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.2373519836237543, 48.89155660463518]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c62a2ef3fb67a2dd12ef0817b2cbdcd5d3343e4d", "fields": {"departement": "92", "stop_lat": 48.88633906822974, "code_postal": "92050", "stop_lon": 2.212968047459183, "coord": [48.88633906822974, 2.212968047459183], "stop_id": 4024743, "stop_desc": "FACE 174 AVENUE GEORGES CLEMENCEAU - 92050", "stop_name": "FELIX FAURE"}, "geometry": {"type": "Point", "coordinates": [2.212968047459183, 48.88633906822974]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2e71f6b2e903797fa8a14a58a59fa23b594d0ebc", "fields": {"departement": "92", "stop_lat": 48.872823153703756, "code_postal": "92063", "stop_lon": 2.163434928116744, "coord": [48.872823153703756, 2.163434928116744], "stop_id": 4024755, "stop_desc": "292-294 AVENUE NAPOLEON BONAPARTE - 92063", "stop_name": "ECOLE LA MALMAISON"}, "geometry": {"type": "Point", "coordinates": [2.163434928116744, 48.872823153703756]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0117ff037367a92ff898a941f84b3a6a9f8cea4d", "fields": {"departement": "92", "stop_lat": 48.87182244443962, "code_postal": "92063", "stop_lon": 2.1613129182202226, "coord": [48.87182244443962, 2.1613129182202226], "stop_id": 4024756, "stop_desc": "298 AVENUE NAPOLEON BONAPARTE - 92063", "stop_name": "LE PARC"}, "geometry": {"type": "Point", "coordinates": [2.1613129182202226, 48.87182244443962]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "99330415d849511d61ed117f7d4eb79731ddd530", "fields": {"departement": "92", "stop_lat": 48.88775148188725, "code_postal": "92062", "stop_lon": 2.233216315231345, "coord": [48.88775148188725, 2.233216315231345], "stop_id": 4024762, "stop_desc": "60 AVENUE DU GENERAL DE GAULLE - 92062", "stop_name": "LES GRAVIERS"}, "geometry": {"type": "Point", "coordinates": [2.233216315231345, 48.88775148188725]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4a987ee08d07010b08404f82119b13dd0a366c58", "fields": {"departement": "92", "stop_lat": 48.88567096716327, "code_postal": "92062", "stop_lon": 2.228219106244475, "coord": [48.88567096716327, 2.228219106244475], "stop_id": 4024764, "stop_desc": "106-108 AVENUE DU GENERAL DE GAULLE - 92062", "stop_name": "LES BERGERES"}, "geometry": {"type": "Point", "coordinates": [2.228219106244475, 48.88567096716327]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4319affe239354f71d2a6789736616b213f5b66f", "fields": {"departement": "92", "stop_lat": 48.88633906822974, "code_postal": "92050", "stop_lon": 2.212968047459183, "coord": [48.88633906822974, 2.212968047459183], "stop_id": 4024769, "stop_desc": "FACE 174 AVENUE GEORGES CLEMENCEAU - 92050", "stop_name": "FELIX FAURE"}, "geometry": {"type": "Point", "coordinates": [2.212968047459183, 48.88633906822974]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a0d415a1468da96ff890dde2125aa3ef87ab53a5", "fields": {"departement": "78", "stop_lat": 48.868175874463624, "code_postal": "78092", "stop_lon": 2.150998923244725, "coord": [48.868175874463624, 2.150998923244725], "stop_id": 4024789, "stop_desc": "44 RUE YVAN TOURGUENIEV - 78092", "stop_name": "MAISON ROUGE"}, "geometry": {"type": "Point", "coordinates": [2.150998923244725, 48.868175874463624]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "18b3d1ae7a9d3fcb19fa1a82b9b0a4b7d419ee26", "fields": {"departement": "92", "stop_lat": 48.89638495152772, "code_postal": "92026", "stop_lon": 2.251791075763871, "coord": [48.89638495152772, 2.251791075763871], "stop_id": 4024797, "stop_desc": "RUE BAUDIN - 92026", "stop_name": "ALMA BAUDIN"}, "geometry": {"type": "Point", "coordinates": [2.251791075763871, 48.89638495152772]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9323912e651ddeac67e5999e35ff2e905422fd7d", "fields": {"departement": "92", "stop_lat": 48.89713404196785, "code_postal": "92026", "stop_lon": 2.256315253118939, "coord": [48.89713404196785, 2.256315253118939], "stop_id": 4024799, "stop_desc": "1-3 PLACE HEROLD - 92026", "stop_name": "HEROLD - MAIRIE DE COURBEVOIE"}, "geometry": {"type": "Point", "coordinates": [2.256315253118939, 48.89713404196785]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "830962f2fd2e97031f45c27d3a90efcb44cf9c18", "fields": {"departement": "92", "stop_lat": 48.90158754314956, "code_postal": "92026", "stop_lon": 2.2638467550055252, "coord": [48.90158754314956, 2.2638467550055252], "stop_id": 4024805, "stop_desc": "FACE 26 BOULEVARD DE LA PAIX - 92026", "stop_name": "ULBACH"}, "geometry": {"type": "Point", "coordinates": [2.2638467550055252, 48.90158754314956]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "926b8633e3847373d2eba3edcf51121e3f1ac446", "fields": {"departement": "92", "stop_lat": 48.89320029487814, "code_postal": "92026", "stop_lon": 2.247434814567136, "coord": [48.89320029487814, 2.247434814567136], "stop_id": 4024815, "stop_desc": "44 AV GAMBETTA - 92026", "stop_name": "CARNOT"}, "geometry": {"type": "Point", "coordinates": [2.247434814567136, 48.89320029487814]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2c27891231a1177b05d6a4b5b0090442e9ec7204", "fields": {"departement": "92", "stop_lat": 48.89649372807699, "code_postal": "92026", "stop_lon": 2.2530994333125256, "coord": [48.89649372807699, 2.2530994333125256], "stop_id": 4024817, "stop_desc": "FACE 41 RUE DE L'ALMA - 92026", "stop_name": "ALMA BAUDIN"}, "geometry": {"type": "Point", "coordinates": [2.2530994333125256, 48.89649372807699]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8dafe0fa04d0754a9e1026f3fc085a7d77282ade", "fields": {"departement": "92", "stop_lat": 48.89931907544351, "code_postal": "92036", "stop_lon": 2.258043019869316, "coord": [48.89931907544351, 2.258043019869316], "stop_id": 4024819, "stop_desc": "FACE 37 R JULES LEFEVRE PROLONGEE - 92036", "stop_name": "STADE DE GENNEVILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.258043019869316, 48.89931907544351]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "355812362bf1b2b45918118a4cab7c0dd4e8b0f0", "fields": {"departement": "92", "stop_lat": 48.89649372807699, "code_postal": "92026", "stop_lon": 2.2530994333125256, "coord": [48.89649372807699, 2.2530994333125256], "stop_id": 4024825, "stop_desc": "FACE 41 RUE DE L'ALMA - 92026", "stop_name": "ALMA BAUDIN"}, "geometry": {"type": "Point", "coordinates": [2.2530994333125256, 48.89649372807699]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7acb7637e3326e61303e9be823d79263ef65464d", "fields": {"departement": "92", "stop_lat": 48.90060601237607, "code_postal": "92026", "stop_lon": 2.2607673873457803, "coord": [48.90060601237607, 2.2607673873457803], "stop_id": 4024831, "stop_desc": "68 BOULEVARD DE VERDUN - 92026", "stop_name": "PAIX - VERDUN"}, "geometry": {"type": "Point", "coordinates": [2.2607673873457803, 48.90060601237607]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4f8ac185c42670d3bde8fedec36bb1179f7ce06f", "fields": {"departement": "92", "stop_lat": 48.906834164884636, "code_postal": "92026", "stop_lon": 2.2609217929327587, "coord": [48.906834164884636, 2.2609217929327587], "stop_id": 4024838, "stop_desc": "68 AVENUE DE L'EUROPE - 92026", "stop_name": "MOULIN DES BRUYERES"}, "geometry": {"type": "Point", "coordinates": [2.2609217929327587, 48.906834164884636]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "da50395cbb805c6aa6569358dd63e0f5023e39e4", "fields": {"departement": "92", "stop_lat": 48.905928596511075, "code_postal": "92009", "stop_lon": 2.264317762303109, "coord": [48.905928596511075, 2.264317762303109], "stop_id": 4024840, "stop_desc": "RUE RAOUL NORDLING - 92009", "stop_name": "LES BRUYERES"}, "geometry": {"type": "Point", "coordinates": [2.264317762303109, 48.905928596511075]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c81370720404f951311d74bd0e73764427d4a7b6", "fields": {"departement": "92", "stop_lat": 48.888752123592425, "code_postal": "92062", "stop_lon": 2.2367849896114063, "coord": [48.888752123592425, 2.2367849896114063], "stop_id": 4024846, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 92062", "stop_name": "LES BOUVETS"}, "geometry": {"type": "Point", "coordinates": [2.2367849896114063, 48.888752123592425]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cf9a84f2fffe22f6a1866eeaba51a89b1e433634", "fields": {"departement": "92", "stop_lat": 48.87946930220228, "code_postal": "92050", "stop_lon": 2.2183395846530347, "coord": [48.87946930220228, 2.2183395846530347], "stop_id": 4024852, "stop_desc": "116 ROUTE DES FUSILLES DE LA RESISTANCE - 92050", "stop_name": "LIBERTE - PLAIDEURS"}, "geometry": {"type": "Point", "coordinates": [2.2183395846530347, 48.87946930220228]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fe1bc5f9cb7f5af8930022b3be7ee09ff2833242", "fields": {"departement": "92", "stop_lat": 48.87467854081284, "code_postal": "92073", "stop_lon": 2.2178055782523347, "coord": [48.87467854081284, 2.2178055782523347], "stop_id": 4024854, "stop_desc": "BOULEVARD DE WASHINGTON - 92073", "stop_name": "MONT VALERIEN"}, "geometry": {"type": "Point", "coordinates": [2.2178055782523347, 48.87467854081284]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f3393b657f50add53950575d0eef67acf41b3e98", "fields": {"departement": "92", "stop_lat": 48.870311037335235, "code_postal": "92073", "stop_lon": 2.2181426089890595, "coord": [48.870311037335235, 2.2181426089890595], "stop_id": 4024856, "stop_desc": "BOULEVARD DU MARECHAL DE LATTRE DE TASSIGNY - 92073", "stop_name": "CLUSERET - HOPITAL FOCH"}, "geometry": {"type": "Point", "coordinates": [2.2181426089890595, 48.870311037335235]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d2106e5b0bebfabfd1f28a2bef0602cc3626be07", "fields": {"departement": "92", "stop_lat": 48.8656072614993, "code_postal": "92073", "stop_lon": 2.214802282943633, "coord": [48.8656072614993, 2.214802282943633], "stop_id": 4024857, "stop_desc": "45 BOULEVARD DU MARECHAL DE LATTRE DE TASSIGNY - 92073", "stop_name": "LES BONS RAISINS"}, "geometry": {"type": "Point", "coordinates": [2.214802282943633, 48.8656072614993]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "62894f94305008ed26183f3e153a0485dcf445c7", "fields": {"departement": "92", "stop_lat": 48.85319334335621, "code_postal": "92064", "stop_lon": 2.2125980376734167, "coord": [48.85319334335621, 2.2125980376734167], "stop_id": 4024864, "stop_desc": "150 BOULEVARD DE LA REPUBLIQUE - 92064", "stop_name": "MARIE BONAPARTE"}, "geometry": {"type": "Point", "coordinates": [2.2125980376734167, 48.85319334335621]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1982f9bde80a3cafbd7d5e508283f531e5b67f59", "fields": {"departement": "92", "stop_lat": 48.84730682245384, "code_postal": "92064", "stop_lon": 2.212870919101262, "coord": [48.84730682245384, 2.212870919101262], "stop_id": 4024867, "stop_desc": "2 BIS AVENUE DU MARECHAL FOCH - 92064", "stop_name": "MONTRETOUT"}, "geometry": {"type": "Point", "coordinates": [2.212870919101262, 48.84730682245384]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "56865a5a633087a3410d30b4bd8ae3f36acba986", "fields": {"departement": "92", "stop_lat": 48.84790946037654, "code_postal": "92064", "stop_lon": 2.204971128826134, "coord": [48.84790946037654, 2.204971128826134], "stop_id": 4024872, "stop_desc": "105 AVENUE DU MARECHAL FOCH - 92064", "stop_name": "CIMETIERE DE SAINT-CLOUD"}, "geometry": {"type": "Point", "coordinates": [2.204971128826134, 48.84790946037654]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ee620e8887fe988b33937097008f6eb301324bac", "fields": {"departement": "92", "stop_lat": 48.84985217553572, "code_postal": "92033", "stop_lon": 2.198320420315986, "coord": [48.84985217553572, 2.198320420315986], "stop_id": 4024876, "stop_desc": "FACE 32 RUE DU 19 JANVIER - 92033", "stop_name": "LES CLIQUETS"}, "geometry": {"type": "Point", "coordinates": [2.198320420315986, 48.84985217553572]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e6d4de1d5c3b8baaa5a2c0b457651eb0269fa87b", "fields": {"departement": "92", "stop_lat": 48.84424633814363, "code_postal": "92033", "stop_lon": 2.185535566000968, "coord": [48.84424633814363, 2.185535566000968], "stop_id": 4024887, "stop_desc": "FACE 71 RUE GRANDE RUE - 92033", "stop_name": "CHARLES DEVOS"}, "geometry": {"type": "Point", "coordinates": [2.185535566000968, 48.84424633814363]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4ad00c615feb62f1b090e313b8716a798dd47a60", "fields": {"departement": "92", "stop_lat": 48.83828671900221, "code_postal": "92033", "stop_lon": 2.1714066750943415, "coord": [48.83828671900221, 2.1714066750943415], "stop_id": 4024895, "stop_desc": "104 BOULEVARD RAYMOND POINCARE - 92033", "stop_name": "HOPITAL DE GARCHES."}, "geometry": {"type": "Point", "coordinates": [2.1714066750943415, 48.83828671900221]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b9cb42cd1add3012c70d395575198de3b595eac1", "fields": {"departement": "95", "stop_lat": 48.92320997339393, "code_postal": "95063", "stop_lon": 2.2187301184141046, "coord": [48.92320997339393, 2.2187301184141046], "stop_id": 4024906, "stop_desc": "132 RUE JEAN JAURES - 95063", "stop_name": "PONT DE BEZONS"}, "geometry": {"type": "Point", "coordinates": [2.2187301184141046, 48.92320997339393]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0959d85cc31283fe65be18aa065cf31a64d760b0", "fields": {"departement": "92", "stop_lat": 48.91817940335771, "code_postal": "92050", "stop_lon": 2.2208961653288926, "coord": [48.91817940335771, 2.2208961653288926], "stop_id": 4024908, "stop_desc": "RUE DES HAUTES PATURES - 92050", "stop_name": "HAUTES PATURES"}, "geometry": {"type": "Point", "coordinates": [2.2208961653288926, 48.91817940335771]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f55633b1e8af992654217f3d9c01f7502acadc23", "fields": {"departement": "92", "stop_lat": 48.90704172479775, "code_postal": "92050", "stop_lon": 2.218112702889551, "coord": [48.90704172479775, 2.218112702889551], "stop_id": 4024920, "stop_desc": "RUE DU 11 NOVEMBRE - 92050", "stop_name": "DEQUEANT"}, "geometry": {"type": "Point", "coordinates": [2.218112702889551, 48.90704172479775]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "51952f5f78ef86f03d6672c77aa4d53cab404ccd", "fields": {"departement": "92", "stop_lat": 48.897851749188334, "code_postal": "92050", "stop_lon": 2.2130631147976536, "coord": [48.897851749188334, 2.2130631147976536], "stop_id": 4024928, "stop_desc": "BOULEVARD JULES MANSARD - 92050", "stop_name": "SOUFFLOT"}, "geometry": {"type": "Point", "coordinates": [2.2130631147976536, 48.897851749188334]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9adefc2eafd5595600334dced341fdaa823a4746", "fields": {"departement": "92", "stop_lat": 48.89684168528956, "code_postal": "92050", "stop_lon": 2.201602120688785, "coord": [48.89684168528956, 2.201602120688785], "stop_id": 4024932, "stop_desc": "64 BOULEVARD BLAISE PASCAL - 92050", "stop_name": "PAUL BERT"}, "geometry": {"type": "Point", "coordinates": [2.201602120688785, 48.89684168528956]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e5aa6a96f9591061a37827af53ac722e6f9b155d", "fields": {"departement": "92", "stop_lat": 48.89524508570763, "code_postal": "92050", "stop_lon": 2.196535836545292, "coord": [48.89524508570763, 2.196535836545292], "stop_id": 4024934, "stop_desc": "RUE DU PRESIDENT PAUL DOUMER - 92050", "stop_name": "NANTERRE-VILLE RER"}, "geometry": {"type": "Point", "coordinates": [2.196535836545292, 48.89524508570763]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eecc85eda7ec6c253798db1d9be348dcccaeae62", "fields": {"departement": "92", "stop_lat": 48.89430751833291, "code_postal": "92050", "stop_lon": 2.194098606496554, "coord": [48.89430751833291, 2.194098606496554], "stop_id": 4024936, "stop_desc": "31 RUE DE STALINGRAD - 92050", "stop_name": "JULES QUENTIN"}, "geometry": {"type": "Point", "coordinates": [2.194098606496554, 48.89430751833291]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3a395457b0b751628fdc1dcfdccbfda9d13a2f63", "fields": {"departement": "92", "stop_lat": 48.89315671370392, "code_postal": "92050", "stop_lon": 2.1795043418789035, "coord": [48.89315671370392, 2.1795043418789035], "stop_id": 4024943, "stop_desc": "FACE 5-51 RUE DU PORT - 92050", "stop_name": "PARC DE L'ILE"}, "geometry": {"type": "Point", "coordinates": [2.1795043418789035, 48.89315671370392]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ae381d2360165fd51b2a1cd3b3f2726f21eedb98", "fields": {"departement": "92", "stop_lat": 48.89300215761871, "code_postal": "92063", "stop_lon": 2.1715723294829754, "coord": [48.89300215761871, 2.1715723294829754], "stop_id": 4024948, "stop_desc": "FACE 16 RUE SAINTE-CLAIRE DEVILLE - 92063", "stop_name": "SAINTE-CLAIRE DEVILLE"}, "geometry": {"type": "Point", "coordinates": [2.1715723294829754, 48.89300215761871]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "828973ed94a9d633cf8634fbcf38873b8d2e2ebc", "fields": {"departement": "92", "stop_lat": 48.89064198344429, "code_postal": "92063", "stop_lon": 2.1676410709977763, "coord": [48.89064198344429, 2.1676410709977763], "stop_id": 4024949, "stop_desc": "RUE GUY DE MAUPASSANT - 92063", "stop_name": "CLAUDE MONET"}, "geometry": {"type": "Point", "coordinates": [2.1676410709977763, 48.89064198344429]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4dc47b69ad1b982b6284abfc75d25f66ceaed83f", "fields": {"departement": "92", "stop_lat": 48.89060644172649, "code_postal": "92063", "stop_lon": 2.1679273977462246, "coord": [48.89060644172649, 2.1679273977462246], "stop_id": 4024950, "stop_desc": "FACE 27 RUE GUY DE MAUPASSANT - 92063", "stop_name": "CLAUDE MONET"}, "geometry": {"type": "Point", "coordinates": [2.1679273977462246, 48.89060644172649]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dfee6c66145c2b35cbebbe5a303f4de3b4121464", "fields": {"departement": "92", "stop_lat": 48.897995714334485, "code_postal": "92050", "stop_lon": 2.204870539793654, "coord": [48.897995714334485, 2.204870539793654], "stop_id": 4024954, "stop_desc": "116 BOULEVARD BLAISE PASCAL - 92050", "stop_name": "GOUNOD"}, "geometry": {"type": "Point", "coordinates": [2.204870539793654, 48.897995714334485]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "58fbab680773e1e24d0406085999be64e9db3a60", "fields": {"departement": "92", "stop_lat": 48.894346610551864, "code_postal": "92050", "stop_lon": 2.1822403594759394, "coord": [48.894346610551864, 2.1822403594759394], "stop_id": 4024975, "stop_desc": "RUE DES FONDRIERES - 92050", "stop_name": "LES GUILLERAIES"}, "geometry": {"type": "Point", "coordinates": [2.1822403594759394, 48.894346610551864]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b18c296b106cd706da289b6e7c3493224207a034", "fields": {"departement": "92", "stop_lat": 48.83134386351147, "code_postal": "92012", "stop_lon": 2.230307217618157, "coord": [48.83134386351147, 2.230307217618157], "stop_id": 4024982, "stop_desc": "FACE 101 R DE SEVRES - 92012", "stop_name": "SOUS PREFECTURE"}, "geometry": {"type": "Point", "coordinates": [2.230307217618157, 48.83134386351147]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "64bff20de9a3c97979a459b0fbd34640ba7acd52", "fields": {"departement": "92", "stop_lat": 48.83463149658059, "code_postal": "92012", "stop_lon": 2.228285518135708, "coord": [48.83463149658059, 2.228285518135708], "stop_id": 4024984, "stop_desc": "55 R DE SEVRES - 92012", "stop_name": "GALLIENI"}, "geometry": {"type": "Point", "coordinates": [2.228285518135708, 48.83463149658059]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "70b06c8722f7ac87077c88d581c1bee6c616e61a", "fields": {"departement": "92", "stop_lat": 48.836680389484265, "code_postal": "92012", "stop_lon": 2.2279816876602188, "coord": [48.836680389484265, 2.2279816876602188], "stop_id": 4024986, "stop_desc": "21 R DE SEVRES - 92012", "stop_name": "STADE DE BOULOGNE-BILLANCOURT"}, "geometry": {"type": "Point", "coordinates": [2.2279816876602188, 48.836680389484265]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7b89e72fa44f0dde9fcc1a6ebbe56524796df02d", "fields": {"departement": "92", "stop_lat": 48.84614509568592, "code_postal": "92064", "stop_lon": 2.2194100429288928, "coord": [48.84614509568592, 2.2194100429288928], "stop_id": 4024993, "stop_desc": "FACE 27 RUE DAILLY - 92064", "stop_name": "CHEVRILLON"}, "geometry": {"type": "Point", "coordinates": [2.2194100429288928, 48.84614509568592]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b773e629ff8064885f9e6e5e9a25609a590df3c6", "fields": {"departement": "92", "stop_lat": 48.84589347263887, "code_postal": "92064", "stop_lon": 2.2194378491382247, "coord": [48.84589347263887, 2.2194378491382247], "stop_id": 4024994, "stop_desc": "27 RUE DAILLY - 92064", "stop_name": "CHEVRILLON"}, "geometry": {"type": "Point", "coordinates": [2.2194378491382247, 48.84589347263887]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "714a208edcbf25c9685ad00d87ace817979f64cd", "fields": {"departement": "92", "stop_lat": 48.84307433201121, "code_postal": "92064", "stop_lon": 2.2134801957307677, "coord": [48.84307433201121, 2.2134801957307677], "stop_id": 4024997, "stop_desc": "6 RUE GOUNOD - 92064", "stop_name": "COLLEGE GOUNOD"}, "geometry": {"type": "Point", "coordinates": [2.2134801957307677, 48.84307433201121]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9e5b151500ce892f942fecd170a16789eb2be743", "fields": {"departement": "92", "stop_lat": 48.84289453912968, "code_postal": "92064", "stop_lon": 2.2134397751267323, "coord": [48.84289453912968, 2.2134397751267323], "stop_id": 4024998, "stop_desc": "9 RUE GOUNOD - 92064", "stop_name": "COLLEGE GOUNOD"}, "geometry": {"type": "Point", "coordinates": [2.2134397751267323, 48.84289453912968]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "88251f40901b3f3ec7e1c192e22cc958ec5b3898", "fields": {"departement": "92", "stop_lat": 48.85469637948016, "code_postal": "92063", "stop_lon": 2.198280205065901, "coord": [48.85469637948016, 2.198280205065901], "stop_id": 4025011, "stop_desc": "103 R DU COLONEL DE ROCHEBRUNE - 92063", "stop_name": "LES SUISSES"}, "geometry": {"type": "Point", "coordinates": [2.198280205065901, 48.85469637948016]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2a6b4c4163a87641470f6d16a5a3a328e23a654f", "fields": {"departement": "92", "stop_lat": 48.85719375210371, "code_postal": "92063", "stop_lon": 2.1898561808210513, "coord": [48.85719375210371, 2.1898561808210513], "stop_id": 4025015, "stop_desc": "FACE 4 R DU MARQUIS DE CORIOLIS - 92063", "stop_name": "HENRI REGNAULT"}, "geometry": {"type": "Point", "coordinates": [2.1898561808210513, 48.85719375210371]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6110c1b39e3ff7f2cb8dadc376435a5088a7db54", "fields": {"departement": "92", "stop_lat": 48.85955644215121, "code_postal": "92063", "stop_lon": 2.181990205263972, "coord": [48.85955644215121, 2.181990205263972], "stop_id": 4025016, "stop_desc": "105 AV DE LA CHATAIGNERAIE - 92063", "stop_name": "COLLEGE PASSY - BUZENVAL"}, "geometry": {"type": "Point", "coordinates": [2.181990205263972, 48.85955644215121]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8ad7c9ed143adabde4614530dd58598d68da28d7", "fields": {"departement": "92", "stop_lat": 48.860413452372235, "code_postal": "92063", "stop_lon": 2.177615257025051, "coord": [48.860413452372235, 2.177615257025051], "stop_id": 4025018, "stop_desc": "FACE 48 AV DE LA CHATAIGNERAIE - 92063", "stop_name": "PISCINE BUZENVAL"}, "geometry": {"type": "Point", "coordinates": [2.177615257025051, 48.860413452372235]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c53583ea3415ef734f60e275bba63bdd7c3a7e6b", "fields": {"departement": "92", "stop_lat": 48.862121953901166, "code_postal": "92063", "stop_lon": 2.171684610501522, "coord": [48.862121953901166, 2.171684610501522], "stop_id": 4025021, "stop_desc": "2 AV DE LA CHATAIGNERAIE - 92063", "stop_name": "SAINT CUCUFA"}, "geometry": {"type": "Point", "coordinates": [2.171684610501522, 48.862121953901166]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2619bfe75af02741e0d3fa24c617f5514d985550", "fields": {"departement": "92", "stop_lat": 48.864998665714594, "code_postal": "92063", "stop_lon": 2.1788407738065745, "coord": [48.864998665714594, 2.1788407738065745], "stop_id": 4025026, "stop_desc": "112 RTE DE L'EMPEREUR - 92063", "stop_name": "COLLEGE JULES VERNE"}, "geometry": {"type": "Point", "coordinates": [2.1788407738065745, 48.864998665714594]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4a1177ad539d44e8d0913c01d26662d6841b151f", "fields": {"departement": "92", "stop_lat": 48.86922348937091, "code_postal": "92063", "stop_lon": 2.1863480066905185, "coord": [48.86922348937091, 2.1863480066905185], "stop_id": 4025030, "stop_desc": "77 BOULEVARD RICHELIEU - 92063", "stop_name": "PLACE BESCHE"}, "geometry": {"type": "Point", "coordinates": [2.1863480066905185, 48.86922348937091]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a6e9e7d702366271243e1166610ad317d6bea3d6", "fields": {"departement": "92", "stop_lat": 48.886365678062774, "code_postal": "92063", "stop_lon": 2.1752594614655605, "coord": [48.886365678062774, 2.1752594614655605], "stop_id": 4025042, "stop_desc": "62 AVENUE VICTOR HUGO - 92063", "stop_name": "COLMAR"}, "geometry": {"type": "Point", "coordinates": [2.1752594614655605, 48.886365678062774]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eb6e247d72d8fbb53740102defcc7a3c408a9b79", "fields": {"departement": "92", "stop_lat": 48.876279725607716, "code_postal": "92063", "stop_lon": 2.1803050865812237, "coord": [48.876279725607716, 2.1803050865812237], "stop_id": 4025047, "stop_desc": "26 RUE HERVET - 92063", "stop_name": "EGLISE DE RUEIL"}, "geometry": {"type": "Point", "coordinates": [2.1803050865812237, 48.876279725607716]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f20c25252e7ca5637eeb6e99225806959a136407", "fields": {"departement": "92", "stop_lat": 48.85308208323118, "code_postal": "92033", "stop_lon": 2.2012671345787966, "coord": [48.85308208323118, 2.2012671345787966], "stop_id": 4025050, "stop_desc": "153 R DE BUZENVAL - 92033", "stop_name": "LABORATOIRE DEBAT"}, "geometry": {"type": "Point", "coordinates": [2.2012671345787966, 48.85308208323118]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ec7129ce0995a358b01a4313a6112db4658b2898", "fields": {"departement": "92", "stop_lat": 48.84092591926018, "code_postal": "92064", "stop_lon": 2.222049786002583, "coord": [48.84092591926018, 2.222049786002583], "stop_id": 4025057, "stop_desc": "QUAI DU MARECHAL JUIN - 92064", "stop_name": "PONT DE SAINT-CLOUD - RIVE GAUCHE"}, "geometry": {"type": "Point", "coordinates": [2.222049786002583, 48.84092591926018]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b87dbc9038ca824f7798f425bcf40dcac31da4e5", "fields": {"departement": "92", "stop_lat": 48.887143714957126, "code_postal": "92063", "stop_lon": 2.1724496297667937, "coord": [48.887143714957126, 2.1724496297667937], "stop_id": 4025059, "stop_desc": "0 AV DE COLMAR - 92063", "stop_name": "RUEIL-MALMAISON RER"}, "geometry": {"type": "Point", "coordinates": [2.1724496297667937, 48.887143714957126]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a4e2d3860756641708ba13e0f2651e973195e709", "fields": {"departement": "92", "stop_lat": 48.88600633832888, "code_postal": "92063", "stop_lon": 2.1753696073485793, "coord": [48.88600633832888, 2.1753696073485793], "stop_id": 4025060, "stop_desc": "85 AVENUE VICTOR HUGO - 92063", "stop_name": "COLMAR"}, "geometry": {"type": "Point", "coordinates": [2.1753696073485793, 48.88600633832888]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "739c4e6e72edc423031aa8a909e27ac5987e1f1f", "fields": {"departement": "92", "stop_lat": 48.88451764143241, "code_postal": "92063", "stop_lon": 2.1777318079494505, "coord": [48.88451764143241, 2.1777318079494505], "stop_id": 4025061, "stop_desc": "31 AVENUE VICTOR HUGO - 92063", "stop_name": "BAUDIN"}, "geometry": {"type": "Point", "coordinates": [2.1777318079494505, 48.88451764143241]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "789b2ebc922f72fd3f164483c86395323eeda154", "fields": {"departement": "92", "stop_lat": 48.88033371255349, "code_postal": "92063", "stop_lon": 2.180851493712825, "coord": [48.88033371255349, 2.180851493712825], "stop_id": 4025062, "stop_desc": "1-3 RUE D'ESTIENNE D'ORVES - 92063", "stop_name": "RUEIL - VILLE"}, "geometry": {"type": "Point", "coordinates": [2.180851493712825, 48.88033371255349]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "87eb38b94f4c640904d619363c9140e116e63003", "fields": {"departement": "92", "stop_lat": 48.85779164506045, "code_postal": "92063", "stop_lon": 2.193722685576675, "coord": [48.85779164506045, 2.193722685576675], "stop_id": 4025077, "stop_desc": "FACE 194 R DU LIEUTENANT COLONEL DE MONTBRISON - 92063", "stop_name": "EGLISE DE BUZENVAL"}, "geometry": {"type": "Point", "coordinates": [2.193722685576675, 48.85779164506045]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a714520c531d31dd021fe6e6655bc572afe5db00", "fields": {"departement": "92", "stop_lat": 48.87617613181907, "code_postal": "92062", "stop_lon": 2.2334847986311503, "coord": [48.87617613181907, 2.2334847986311503], "stop_id": 4025081, "stop_desc": "26 R VOLTA - 92062", "stop_name": "VOLTA"}, "geometry": {"type": "Point", "coordinates": [2.2334847986311503, 48.87617613181907]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "238f333d1f3fc60a462bf508a06b9689eb788139", "fields": {"departement": "92", "stop_lat": 48.87992568956772, "code_postal": "92062", "stop_lon": 2.2356438653396578, "coord": [48.87992568956772, 2.2356438653396578], "stop_id": 4025084, "stop_desc": "FACE 4 RUE EUGENE EICHENBERGER - 92062", "stop_name": "BAS ROGERS"}, "geometry": {"type": "Point", "coordinates": [2.2356438653396578, 48.87992568956772]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "22ac40cb57cf705e7e67bb8d36374092dc1633ed", "fields": {"departement": "92", "stop_lat": 48.88427128989094, "code_postal": "92062", "stop_lon": 2.230797625984633, "coord": [48.88427128989094, 2.230797625984633], "stop_id": 4025090, "stop_desc": "172 RUE DE LA REPUBLIQUE - 92062", "stop_name": "LE MOULIN"}, "geometry": {"type": "Point", "coordinates": [2.230797625984633, 48.88427128989094]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ff37392c7677ff1c0b82b3e074b68a01579a8b36", "fields": {"departement": "92", "stop_lat": 48.88947494098112, "code_postal": "92062", "stop_lon": 2.2308550817689756, "coord": [48.88947494098112, 2.2308550817689756], "stop_id": 4025094, "stop_desc": "18 R MARCELLIN BERTHELOT - 92062", "stop_name": "BERTHELOT - CARRE VERT"}, "geometry": {"type": "Point", "coordinates": [2.2308550817689756, 48.88947494098112]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c50d8d42292631ee82fb2f211855d1da97f19383", "fields": {"departement": "92", "stop_lat": 48.886400305331634, "code_postal": "92062", "stop_lon": 2.229730273795458, "coord": [48.886400305331634, 2.229730273795458], "stop_id": 4025099, "stop_desc": "86 AVENUE DU PRESIDENT WILSON - 92062", "stop_name": "EDGAR QUINET"}, "geometry": {"type": "Point", "coordinates": [2.229730273795458, 48.886400305331634]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "62c148931db452661606208dc2d6f018fbe58777", "fields": {"departement": "92", "stop_lat": 48.8843757175651, "code_postal": "92062", "stop_lon": 2.227036245944437, "coord": [48.8843757175651, 2.227036245944437], "stop_id": 4025100, "stop_desc": "129 ROND-POINT DES BERGERES - 92062", "stop_name": "LES BERGERES"}, "geometry": {"type": "Point", "coordinates": [2.227036245944437, 48.8843757175651]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "664496d330f3b3d7f2d6f9c8b6ccabd1626c34f4", "fields": {"departement": "92", "stop_lat": 48.88297823050571, "code_postal": "92062", "stop_lon": 2.2320403424676556, "coord": [48.88297823050571, 2.2320403424676556], "stop_id": 4025101, "stop_desc": "33-35 RUE CARTAULT - 92062", "stop_name": "OFFENBACH"}, "geometry": {"type": "Point", "coordinates": [2.2320403424676556, 48.88297823050571]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d338f54d7391a13f3a5a439f2bd7ccceb7be4722", "fields": {"departement": "92", "stop_lat": 48.88267095834993, "code_postal": "92062", "stop_lon": 2.240639578928195, "coord": [48.88267095834993, 2.240639578928195], "stop_id": 4025105, "stop_desc": "RUE JEAN JAURES - 92062", "stop_name": "ROQUE DE FILLOL"}, "geometry": {"type": "Point", "coordinates": [2.240639578928195, 48.88267095834993]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6001abfde98c705eda78a4b4fbee0fefbed9ee5d", "fields": {"departement": "92", "stop_lat": 48.87992568956772, "code_postal": "92062", "stop_lon": 2.2356438653396578, "coord": [48.87992568956772, 2.2356438653396578], "stop_id": 4025119, "stop_desc": "FACE 4 RUE EUGENE EICHENBERGER - 92062", "stop_name": "BAS ROGERS"}, "geometry": {"type": "Point", "coordinates": [2.2356438653396578, 48.87992568956772]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b84cb3ae34bd2dbdf8463a1e9e6619a760d77bb1", "fields": {"departement": "92", "stop_lat": 48.889178388225055, "code_postal": "92062", "stop_lon": 2.230882947886533, "coord": [48.889178388225055, 2.230882947886533], "stop_id": 4025130, "stop_desc": "FACE 16 R MARCELLIN BERTHELOT - 92062", "stop_name": "BERTHELOT - CARRE VERT"}, "geometry": {"type": "Point", "coordinates": [2.230882947886533, 48.889178388225055]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a2ddbdb89107dac5f5e35460a98a73f1f59f7e08", "fields": {"departement": "92", "stop_lat": 48.88632948357126, "code_postal": "92062", "stop_lon": 2.2309296780930685, "coord": [48.88632948357126, 2.2309296780930685], "stop_id": 4025160, "stop_desc": "81 AVENUE DU PRESIDENT WILSON - 92062", "stop_name": "CHARLES LORILLEUX"}, "geometry": {"type": "Point", "coordinates": [2.2309296780930685, 48.88632948357126]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d82e8e4bfd3338d6d5d7483430f4eb46df6f1bfc", "fields": {"departement": "92", "stop_lat": 48.8884961733333, "code_postal": "92062", "stop_lon": 2.2317974570829215, "coord": [48.8884961733333, 2.2317974570829215], "stop_id": 4025161, "stop_desc": "6 RUE MARCELIN BERTHELOT - 92062", "stop_name": "JULES VERNE - PALAIS DE LA JEUNESSE"}, "geometry": {"type": "Point", "coordinates": [2.2317974570829215, 48.8884961733333]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f5a063084ba8cb59246a43a7759bd12c32fb1181", "fields": {"departement": "92", "stop_lat": 48.88947494098112, "code_postal": "92062", "stop_lon": 2.2308550817689756, "coord": [48.88947494098112, 2.2308550817689756], "stop_id": 4025162, "stop_desc": "18 R MARCELLIN BERTHELOT - 92062", "stop_name": "BERTHELOT - CARRE VERT"}, "geometry": {"type": "Point", "coordinates": [2.2308550817689756, 48.88947494098112]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b76b7b4b55f03f92145f7b9e567c1a70ab9c9edc", "fields": {"departement": "92", "stop_lat": 48.89225832527781, "code_postal": "92050", "stop_lon": 2.227932658046209, "coord": [48.89225832527781, 2.227932658046209], "stop_id": 4025164, "stop_desc": "BD DES BOUVETS - 92050", "stop_name": "CIMETIERE NOUVEAU"}, "geometry": {"type": "Point", "coordinates": [2.227932658046209, 48.89225832527781]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2ebec50dbad30aa31dd35d2d7e160a353eb9e279", "fields": {"departement": "92", "stop_lat": 48.89225832527781, "code_postal": "92050", "stop_lon": 2.227932658046209, "coord": [48.89225832527781, 2.227932658046209], "stop_id": 4025165, "stop_desc": "BD DES BOUVETS - 92050", "stop_name": "CIMETIERE NOUVEAU"}, "geometry": {"type": "Point", "coordinates": [2.227932658046209, 48.89225832527781]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "06978d0f5a1c16df05d1dacf257752d58f76ea88", "fields": {"departement": "92", "stop_lat": 48.876733614701536, "code_postal": "92062", "stop_lon": 2.244724638124987, "coord": [48.876733614701536, 2.244724638124987], "stop_id": 4025174, "stop_desc": "PONT DE PUTEAUX - 92062", "stop_name": "PARC DEPARTEMENTAL"}, "geometry": {"type": "Point", "coordinates": [2.244724638124987, 48.876733614701536]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a4e433b0dc320fa30f4994a2b44af69c5ff04ec7", "fields": {"departement": "92", "stop_lat": 48.889178388225055, "code_postal": "92062", "stop_lon": 2.230882947886533, "coord": [48.889178388225055, 2.230882947886533], "stop_id": 4025177, "stop_desc": "FACE 16 R MARCELLIN BERTHELOT - 92062", "stop_name": "BERTHELOT - CARRE VERT"}, "geometry": {"type": "Point", "coordinates": [2.230882947886533, 48.889178388225055]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ee5d845b6b1316bd6b8228d71bb4818495df9943", "fields": {"departement": "92", "stop_lat": 48.88297823050571, "code_postal": "92062", "stop_lon": 2.2320403424676556, "coord": [48.88297823050571, 2.2320403424676556], "stop_id": 4025181, "stop_desc": "33-35 RUE CARTAULT - 92062", "stop_name": "OFFENBACH"}, "geometry": {"type": "Point", "coordinates": [2.2320403424676556, 48.88297823050571]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "00e76cd7d1f44bf1d474e6c74b47b86c1fc031bf", "fields": {"departement": "92", "stop_lat": 48.8871763106982, "code_postal": "92062", "stop_lon": 2.244092729902989, "coord": [48.8871763106982, 2.244092729902989], "stop_id": 4025191, "stop_desc": "39 RUE PAUL LAFARGUE - 92062", "stop_name": "GALLIENI"}, "geometry": {"type": "Point", "coordinates": [2.244092729902989, 48.8871763106982]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f9b5452ee47c8afda8f8edc1a02b9fb7b1d1ad90", "fields": {"departement": "92", "stop_lat": 48.88615114877273, "code_postal": "92062", "stop_lon": 2.243304155685305, "coord": [48.88615114877273, 2.243304155685305], "stop_id": 4025192, "stop_desc": "FACE 59 RUE DE LA REPUBLIQUE - 92062", "stop_name": "ROUSSELLE"}, "geometry": {"type": "Point", "coordinates": [2.243304155685305, 48.88615114877273]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3de86594bf91cdfac0e697d7d31b8bd629ce8f1c", "fields": {"departement": "92", "stop_lat": 48.88499742530629, "code_postal": "92062", "stop_lon": 2.239136209695627, "coord": [48.88499742530629, 2.239136209695627], "stop_id": 4025193, "stop_desc": "26-28 RUE ANATOLE FRANCE - 92062", "stop_name": "CENTRE MEDICO SOCIAL - FRANCOISE DOLTO"}, "geometry": {"type": "Point", "coordinates": [2.239136209695627, 48.88499742530629]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5be5f322f3e0cf258beab753afc56ebd9ce184a2", "fields": {"departement": "92", "stop_lat": 48.89159964737942, "code_postal": "92050", "stop_lon": 2.1918436187226766, "coord": [48.89159964737942, 2.1918436187226766], "stop_id": 4025239, "stop_desc": "70 R HENRI BARBUSSE - 92050", "stop_name": "PLACE DES MARRONNIERS"}, "geometry": {"type": "Point", "coordinates": [2.1918436187226766, 48.89159964737942]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c26c0129b292b371ae45403b6a535636c73b1365", "fields": {"departement": "92", "stop_lat": 48.88808864627775, "code_postal": "92050", "stop_lon": 2.194320208603867, "coord": [48.88808864627775, 2.194320208603867], "stop_id": 4025242, "stop_desc": "41 AVENUE LENINE - 92050", "stop_name": "FOCH"}, "geometry": {"type": "Point", "coordinates": [2.194320208603867, 48.88808864627775]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c0006f9deedb85c063b93d95b721e57138890e2c", "fields": {"departement": "94", "stop_lat": 48.79780236921093, "code_postal": "94068", "stop_lon": 2.4991912714214117, "coord": [48.79780236921093, 2.4991912714214117], "stop_id": 5478450, "stop_desc": "196 BOULEVARD DE CRETEIL - 94068", "stop_name": "EDGAR QUINET"}, "geometry": {"type": "Point", "coordinates": [2.4991912714214117, 48.79780236921093]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9f8b3a5d7a5b7850e9dd80a8ea3884f7954dd59f", "fields": {"departement": "94", "stop_lat": 48.79792786536079, "code_postal": "94068", "stop_lon": 2.499436548115985, "coord": [48.79792786536079, 2.499436548115985], "stop_id": 5478451, "stop_desc": "175 BOULEVARD DE CRETEIL - 94068", "stop_name": "EDGAR QUINET"}, "geometry": {"type": "Point", "coordinates": [2.499436548115985, 48.79792786536079]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9e030d916805be2c2348004b875205f4138dbff9", "fields": {"departement": "94", "stop_lat": 48.79630841209423, "code_postal": "94068", "stop_lon": 2.507049907390994, "coord": [48.79630841209423, 2.507049907390994], "stop_id": 5478455, "stop_desc": "33 AVENUE DU BAC - 94068", "stop_name": "AVENUE DE BONNEUIL"}, "geometry": {"type": "Point", "coordinates": [2.507049907390994, 48.79630841209423]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "65c33833fdb04e34a409dd3878adc984bccbefd3", "fields": {"departement": "94", "stop_lat": 48.79490486696694, "code_postal": "94068", "stop_lon": 2.514200996637304, "coord": [48.79490486696694, 2.514200996637304], "stop_id": 5478458, "stop_desc": "FACE 6 AVENUE DU MESNIL - 94068", "stop_name": "LA VARENNE - CHENNEVIERES RER"}, "geometry": {"type": "Point", "coordinates": [2.514200996637304, 48.79490486696694]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b6d5307a33140adf0729c3e46ec84ad926aa237c", "fields": {"departement": "94", "stop_lat": 48.82058083975143, "code_postal": "94042", "stop_lon": 2.467086713379475, "coord": [48.82058083975143, 2.467086713379475], "stop_id": 5478460, "stop_desc": "2 RUE CHAPSAL - 94042", "stop_name": "CARREFOUR DE LA RESISTANCE"}, "geometry": {"type": "Point", "coordinates": [2.467086713379475, 48.82058083975143]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dad4289e52d09b9e58ad25b82e6584379d6ec882", "fields": {"departement": "94", "stop_lat": 48.822766247951236, "code_postal": "94042", "stop_lon": 2.465799112694869, "coord": [48.822766247951236, 2.465799112694869], "stop_id": 5478461, "stop_desc": "30 RUE CHAPSAL - 94042", "stop_name": "JEAN JAURES - CHAPSAL"}, "geometry": {"type": "Point", "coordinates": [2.465799112694869, 48.822766247951236]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "337aa3eeff83922ac04f8efb2f73073e720f8cb0", "fields": {"departement": "93", "stop_lat": 48.925485308609375, "code_postal": "93027", "stop_lon": 2.3914529541350937, "coord": [48.925485308609375, 2.3914529541350937], "stop_id": 5504093, "stop_desc": "AVENUE VICTOR HUGO - 93027", "stop_name": "MECANO"}, "geometry": {"type": "Point", "coordinates": [2.3914529541350937, 48.925485308609375]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "960093f3f381ae41ac2c1e5b13cdc66853d05e53", "fields": {"departement": "92", "stop_lat": 48.78882610499131, "code_postal": "92048", "stop_lon": 2.234176222510831, "coord": [48.78882610499131, 2.234176222510831], "stop_id": 5511405, "stop_desc": "AVENUE ROBERT SCHUMAN - 92048", "stop_name": "TAPIS VERT"}, "geometry": {"type": "Point", "coordinates": [2.234176222510831, 48.78882610499131]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fc4a4a5d5e308c37057d10a1ce2927f7db85ab59", "fields": {"departement": "92", "stop_lat": 48.834114592736185, "code_postal": "92012", "stop_lon": 2.2440246297090813, "coord": [48.834114592736185, 2.2440246297090813], "stop_id": 5549461, "stop_desc": "123 AVENUE VICTOR HUGO - 92012", "stop_name": "AVENUE VICTOR HUGO - MARCEL SEMBAT"}, "geometry": {"type": "Point", "coordinates": [2.2440246297090813, 48.834114592736185]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a65ba0f09919fdec2f92398ffafd49c77bbe0b66", "fields": {"departement": "92", "stop_lat": 48.84069619001765, "code_postal": "92012", "stop_lon": 2.2475257139020046, "coord": [48.84069619001765, 2.2475257139020046], "stop_id": 5549472, "stop_desc": "FACE 92-94 RUE DENFERT-ROCHEREAU - 92012", "stop_name": "ROND-POINT ANDRE MALRAUX"}, "geometry": {"type": "Point", "coordinates": [2.2475257139020046, 48.84069619001765]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "489f55ed642b2cff950902a113dd4df2048a5ef6", "fields": {"departement": "92", "stop_lat": 48.83170336462878, "code_postal": "92012", "stop_lon": 2.2526463543012483, "coord": [48.83170336462878, 2.2526463543012483], "stop_id": 5549521, "stop_desc": "57 AVENUE PIERRE GRENIER - 92012", "stop_name": "RUE DU POINT DU JOUR"}, "geometry": {"type": "Point", "coordinates": [2.2526463543012483, 48.83170336462878]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c9b2c6ca02bd06cfc75f647b59c3ec13616d4ea8", "fields": {"departement": "92", "stop_lat": 48.84638210945347, "code_postal": "92012", "stop_lon": 2.23260479538319, "coord": [48.84638210945347, 2.23260479538319], "stop_id": 5549552, "stop_desc": "43 RUE SAINT DENIS - 92012", "stop_name": "DISPENSAIRE SAINT-DENIS"}, "geometry": {"type": "Point", "coordinates": [2.23260479538319, 48.84638210945347]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "328b345a2926b163b4895964f41ea16078996965", "fields": {"departement": "92", "stop_lat": 48.835800241114036, "code_postal": "92012", "stop_lon": 2.23902502422197, "coord": [48.835800241114036, 2.23902502422197], "stop_id": 5549569, "stop_desc": "AVENUE ANDRE MORIZET - 92012", "stop_name": "HOTEL DE VILLE DE BOULOGNE-BILLANCOURT"}, "geometry": {"type": "Point", "coordinates": [2.23902502422197, 48.835800241114036]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fc89bc15528cc33d3a99d74dd8672f8c77004b4d", "fields": {"departement": "93", "stop_lat": 48.95682539253315, "code_postal": "93079", "stop_lon": 2.3447465968914125, "coord": [48.95682539253315, 2.3447465968914125], "stop_id": 5582587, "stop_desc": "47 AVENUE DE LA DIVISION LECLERC - 93079", "stop_name": "PABLO NERUDA"}, "geometry": {"type": "Point", "coordinates": [2.3447465968914125, 48.95682539253315]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "882817f27aa42eae35e0cd98a0907d9f12f45444", "fields": {"departement": "93", "stop_lat": 48.913811855328234, "code_postal": "93001", "stop_lon": 2.4074893082172553, "coord": [48.913811855328234, 2.4074893082172553], "stop_id": 5605603, "stop_desc": "AVENUE DE LA DIVISION LECLERC - 93001", "stop_name": "MAISON DE QUARTIER - COURTILLIERES"}, "geometry": {"type": "Point", "coordinates": [2.4074893082172553, 48.913811855328234]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "db9589778130f918d74e6cf35718c9b2c9be9bfe", "fields": {"departement": "93", "stop_lat": 48.9114184285498, "code_postal": "93055", "stop_lon": 2.4122172411197242, "coord": [48.9114184285498, 2.4122172411197242], "stop_id": 5605604, "stop_desc": "FACE 42 AV DE LA DIVISION LECLERC - 93055", "stop_name": "DIVISION LECLERC - STENDHAL"}, "geometry": {"type": "Point", "coordinates": [2.4122172411197242, 48.9114184285498]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f324ae0cb8ac16162f02ac0003a95ea1365d583c", "fields": {"departement": "93", "stop_lat": 48.914569610096386, "code_postal": "93008", "stop_lon": 2.417239609162435, "coord": [48.914569610096386, 2.417239609162435], "stop_id": 5605610, "stop_desc": "FACE 30 AVENUE DE LA CONVENTION - 93008", "stop_name": "IUT PARIS 13"}, "geometry": {"type": "Point", "coordinates": [2.417239609162435, 48.914569610096386]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "700df92ca5785a33edce9933abfc7f389f8ad6b4", "fields": {"departement": "93", "stop_lat": 48.92162161884706, "code_postal": "93029", "stop_lon": 2.4212734746273616, "coord": [48.92162161884706, 2.4212734746273616], "stop_id": 5605614, "stop_desc": "RUE JEAN-LOUP CHRETIEN - 93029", "stop_name": "PLACE DE L'AMITIE"}, "geometry": {"type": "Point", "coordinates": [2.4212734746273616, 48.92162161884706]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fbf9ce91e374f0f863fcbc7ee0019b851d8d45f2", "fields": {"departement": "93", "stop_lat": 48.92162161884706, "code_postal": "93029", "stop_lon": 2.4212734746273616, "coord": [48.92162161884706, 2.4212734746273616], "stop_id": 5605615, "stop_desc": "RUE JEAN-LOUP CHRETIEN - 93029", "stop_name": "PLACE DE L'AMITIE"}, "geometry": {"type": "Point", "coordinates": [2.4212734746273616, 48.92162161884706]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3e1067661e9d2b9efa1edc94e7d0701eff8e81de", "fields": {"departement": "93", "stop_lat": 48.918280424776796, "code_postal": "93029", "stop_lon": 2.418445335763257, "coord": [48.918280424776796, 2.418445335763257], "stop_id": 5605616, "stop_desc": "RUE SAINT-STENAY - 93029", "stop_name": "CITE DE LA RESISTANCE."}, "geometry": {"type": "Point", "coordinates": [2.418445335763257, 48.918280424776796]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d64d45017aa0e99e620529188b24cf37db8bbcf1", "fields": {"departement": "93", "stop_lat": 48.92310607627489, "code_postal": "93029", "stop_lon": 2.4311631408148475, "coord": [48.92310607627489, 2.4311631408148475], "stop_id": 5605623, "stop_desc": "47 R GUTENBERG - 93029", "stop_name": "GUTENBERG - DANTON"}, "geometry": {"type": "Point", "coordinates": [2.4311631408148475, 48.92310607627489]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7182b39ca999106b8c937933d32e1f78322f4e18", "fields": {"departement": "93", "stop_lat": 48.925232158060616, "code_postal": "93029", "stop_lon": 2.4358994368678024, "coord": [48.925232158060616, 2.4358994368678024], "stop_id": 5605625, "stop_desc": "125-127 RUE DE LA REPUBLIQUE - 93029", "stop_name": "CITE PIERRE SEMARD"}, "geometry": {"type": "Point", "coordinates": [2.4358994368678024, 48.925232158060616]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "22eab973868b45ea2b4b5d5ef1db5fe2ca8fd0a9", "fields": {"departement": "93", "stop_lat": 48.93109081807379, "code_postal": "93029", "stop_lon": 2.456465631513302, "coord": [48.93109081807379, 2.456465631513302], "stop_id": 5605642, "stop_desc": "RUE MAURICE BERNARD - 93029", "stop_name": "PLACE JOFFRE"}, "geometry": {"type": "Point", "coordinates": [2.456465631513302, 48.93109081807379]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f21ec63749baaea4df0d04128f51c8446a31ab2e", "fields": {"departement": "75", "stop_lat": 48.88080199600097, "code_postal": "75110", "stop_lon": 2.3632130874245205, "coord": [48.88080199600097, 2.3632130874245205], "stop_id": 5657281, "stop_desc": "190 RUE LA FAYETTE - 75110", "stop_name": "CHATEAU LANDON"}, "geometry": {"type": "Point", "coordinates": [2.3632130874245205, 48.88080199600097]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "073af62efce063e9e24d38a1fd40e38842545a96", "fields": {"departement": "75", "stop_lat": 48.87877695499585, "code_postal": "75119", "stop_lon": 2.3742218232843353, "coord": [48.87877695499585, 2.3742218232843353], "stop_id": 5657288, "stop_desc": "107-109 AVENUE SIMON BOLIVAR - 75119", "stop_name": "MATHURIN MOREAU - SIMON BOLIVAR"}, "geometry": {"type": "Point", "coordinates": [2.3742218232843353, 48.87877695499585]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "59a6204aa348bc2a69b2ccfd689de8680189d333", "fields": {"departement": "75", "stop_lat": 48.878588184213974, "code_postal": "75119", "stop_lon": 2.3743443215806486, "coord": [48.878588184213974, 2.3743443215806486], "stop_id": 5657289, "stop_desc": "106 AVENUE SIMON BOLIVAR - 75119", "stop_name": "MATHURIN MOREAU - SIMON BOLIVAR"}, "geometry": {"type": "Point", "coordinates": [2.3743443215806486, 48.878588184213974]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eaa770a08b0533d2c4f849e4fca9813b32e7ef99", "fields": {"departement": "75", "stop_lat": 48.87221853788501, "code_postal": "75120", "stop_lon": 2.391642506178141, "coord": [48.87221853788501, 2.391642506178141], "stop_id": 5657298, "stop_desc": "296 RUE DES PYRENEES - 75120", "stop_name": "L'ERMITAGE"}, "geometry": {"type": "Point", "coordinates": [2.391642506178141, 48.87221853788501]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cd924b023c7778abbc43048f30399fcbc978082b", "fields": {"departement": "75", "stop_lat": 48.87017712732171, "code_postal": "75120", "stop_lon": 2.394392346233291, "coord": [48.87017712732171, 2.394392346233291], "stop_id": 5657300, "stop_desc": "276-278 RUE DES PYRENEES - 75120", "stop_name": "PYRENEES - MENILMONTANT"}, "geometry": {"type": "Point", "coordinates": [2.394392346233291, 48.87017712732171]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ce77d96a89948966edc56a9deba92c830b46d211", "fields": {"departement": "75", "stop_lat": 48.86130368224057, "code_postal": "75120", "stop_lon": 2.4001716388244585, "coord": [48.86130368224057, 2.4001716388244585], "stop_id": 5657304, "stop_desc": "191 RUE DES PYRENEES - 75120", "stop_name": "RAMUS"}, "geometry": {"type": "Point", "coordinates": [2.4001716388244585, 48.86130368224057]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "adec0fbd3a3f8d1cdc3da27bb66b6709965fdab5", "fields": {"departement": "75", "stop_lat": 48.850272711588964, "code_postal": "75120", "stop_lon": 2.406272939730884, "coord": [48.850272711588964, 2.406272939730884], "stop_id": 5657312, "stop_desc": "33 RUE DES PYRENEES - 75120", "stop_name": "LA PLAINE"}, "geometry": {"type": "Point", "coordinates": [2.406272939730884, 48.850272711588964]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8b81fcd9546546a3f39db8f96c96e4cfa70b7ece", "fields": {"departement": "75", "stop_lat": 48.88005756021677, "code_postal": "75110", "stop_lon": 2.3549960773675407, "coord": [48.88005756021677, 2.3549960773675407], "stop_id": 5657323, "stop_desc": "PLACE NAPOLEON III - 75110", "stop_name": "GARE DU NORD - DUNKERQUE"}, "geometry": {"type": "Point", "coordinates": [2.3549960773675407, 48.88005756021677]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "20e905743a4ed4d3ed44ae1e7b1e013de9e7449b", "fields": {"departement": "75", "stop_lat": 48.876697570163095, "code_postal": "75109", "stop_lon": 2.341355921470186, "coord": [48.876697570163095, 2.341355921470186], "stop_id": 5657327, "stop_desc": "9 RUE DE MAUBEUGE - 75109", "stop_name": "CHATEAUDUN - LAMARTINE"}, "geometry": {"type": "Point", "coordinates": [2.341355921470186, 48.876697570163095]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a9b0e2dac0d1cdb8adb65ddd81a67894f10ad2e4", "fields": {"departement": "94", "stop_lat": 48.76490478139435, "code_postal": "94022", "stop_lon": 2.409476978902524, "coord": [48.76490478139435, 2.409476978902524], "stop_id": 5673008, "stop_desc": "FACE 15 AVENUE ANATOLE FRANCE - 94022", "stop_name": "CHOISY-LE-ROI RER"}, "geometry": {"type": "Point", "coordinates": [2.409476978902524, 48.76490478139435]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7618b4193c285696668db913bb218c21e37fd768", "fields": {"departement": "94", "stop_lat": 48.75393738910948, "code_postal": "94022", "stop_lon": 2.4124930210682587, "coord": [48.75393738910948, 2.4124930210682587], "stop_id": 5673015, "stop_desc": "AVENUE DE NEWBURN - 94022", "stop_name": "ROBERT PEARY"}, "geometry": {"type": "Point", "coordinates": [2.4124930210682587, 48.75393738910948]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8d09349c78f7d38bc1769899eb28fb621c2641f3", "fields": {"departement": "94", "stop_lat": 48.76512298112146, "code_postal": "94022", "stop_lon": 2.4052624830228733, "coord": [48.76512298112146, 2.4052624830228733], "stop_id": 5673022, "stop_desc": "BOULEVARD DES ALLIES - 94022", "stop_name": "ROUGET DE LISLE"}, "geometry": {"type": "Point", "coordinates": [2.4052624830228733, 48.76512298112146]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "32dace7a4dcf1fd69e0cffff2396301ac274f602", "fields": {"departement": "94", "stop_lat": 48.767064846828276, "code_postal": "94022", "stop_lon": 2.4044900167035563, "coord": [48.767064846828276, 2.4044900167035563], "stop_id": 5673023, "stop_desc": "9 RUE AUGUSTE FRANCHOT - 94022", "stop_name": "AUGUSTE FRANCHOT"}, "geometry": {"type": "Point", "coordinates": [2.4044900167035563, 48.767064846828276]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ae476fa14736ac4f0a97aa7a5872abe16a268d78", "fields": {"departement": "94", "stop_lat": 48.76770305718782, "code_postal": "94022", "stop_lon": 2.4187674849817054, "coord": [48.76770305718782, 2.4187674849817054], "stop_id": 5673031, "stop_desc": "2 RUE MIRABEAU - 94022", "stop_name": "HUGO MIRABEAU"}, "geometry": {"type": "Point", "coordinates": [2.4187674849817054, 48.76770305718782]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d1648f4e44314bcd1f7a4569da921155416402f5", "fields": {"departement": "94", "stop_lat": 48.75380589309081, "code_postal": "94004", "stop_lon": 2.5057012490059583, "coord": [48.75380589309081, 2.5057012490059583], "stop_id": 5675598, "stop_desc": "PISTE GARE ROUTIERE - 94004", "stop_name": "BOISSY-SAINT-LEGER RER"}, "geometry": {"type": "Point", "coordinates": [2.5057012490059583, 48.75380589309081]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "79752205f5d2ab3ee00894dc8a110568f921e2c1", "fields": {"departement": "94", "stop_lat": 48.766114435331616, "code_postal": "94071", "stop_lon": 2.5093442024065484, "coord": [48.766114435331616, 2.5093442024065484], "stop_id": 5675600, "stop_desc": "25 RUE DE VILLENEUVE - 94071", "stop_name": "PIERRE BROSSOLETTE"}, "geometry": {"type": "Point", "coordinates": [2.5093442024065484, 48.766114435331616]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "516eb475c4bc50b67a319552529aebd7f451e95a", "fields": {"departement": "94", "stop_lat": 48.7711496603389, "code_postal": "94071", "stop_lon": 2.5080283036757205, "coord": [48.7711496603389, 2.5080283036757205], "stop_id": 5675601, "stop_desc": "PLACE DE LA GARE - 94071", "stop_name": "SUCY - BONNEUIL RER"}, "geometry": {"type": "Point", "coordinates": [2.5080283036757205, 48.7711496603389]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4bf5b126496726ef652c1d519608b05eb32e4a4c", "fields": {"departement": "94", "stop_lat": 48.76578336300708, "code_postal": "94011", "stop_lon": 2.481171527822905, "coord": [48.76578336300708, 2.481171527822905], "stop_id": 5675605, "stop_desc": "AVENUE JEAN ROSTAND - 94011", "stop_name": "STADE DE BONNEUIL"}, "geometry": {"type": "Point", "coordinates": [2.481171527822905, 48.76578336300708]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "93be993ff07281e6160726f88e811d90d00e7563", "fields": {"departement": "94", "stop_lat": 48.77745953062518, "code_postal": "94028", "stop_lon": 2.456153839087414, "coord": [48.77745953062518, 2.456153839087414], "stop_id": 5675612, "stop_desc": "AVENUE DES COMPAGNONS DE LA LIBERATION - 94028", "stop_name": "HOTEL DE VILLE DE CRETEIL"}, "geometry": {"type": "Point", "coordinates": [2.456153839087414, 48.77745953062518]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "03e239a5bfe95464e950ea8d787dda58eaf565b1", "fields": {"departement": "94", "stop_lat": 48.78269113798053, "code_postal": "94028", "stop_lon": 2.4642718538692714, "coord": [48.78269113798053, 2.4642718538692714], "stop_id": 5675616, "stop_desc": "FACE 92 RUE JULIETTE SAVAR - 94028", "stop_name": "HENRI CARDINAUD"}, "geometry": {"type": "Point", "coordinates": [2.4642718538692714, 48.78269113798053]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "377e81cabfa72e3e232e61c253538f73ff90e83e", "fields": {"departement": "94", "stop_lat": 48.78519120243953, "code_postal": "94028", "stop_lon": 2.4629450315419548, "coord": [48.78519120243953, 2.4629450315419548], "stop_id": 5675617, "stop_desc": "47 RUE JULIETTE SAVAR - 94028", "stop_name": "ORME AU CHAT"}, "geometry": {"type": "Point", "coordinates": [2.4629450315419548, 48.78519120243953]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bc962fc268f29f5fd7a36fc8e7d8b6c5518ea64e", "fields": {"departement": "94", "stop_lat": 48.799383900372796, "code_postal": "94028", "stop_lon": 2.4533197609918105, "coord": [48.799383900372796, 2.4533197609918105], "stop_id": 5675622, "stop_desc": "AVENUE DU MARECHAL DE LATTRE DE TASSIGNY - 94028", "stop_name": "HENRI MONDOR - LAFERRIERE"}, "geometry": {"type": "Point", "coordinates": [2.4533197609918105, 48.799383900372796]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a8bf8e9aa68e3ec818131b3af6692fe6998262d9", "fields": {"departement": "94", "stop_lat": 48.80734290991733, "code_postal": "94046", "stop_lon": 2.4382199658929267, "coord": [48.80734290991733, 2.4382199658929267], "stop_id": 5675626, "stop_desc": "179 AVENUE DU GENERAL LECLERC - 94046", "stop_name": "CECILE"}, "geometry": {"type": "Point", "coordinates": [2.4382199658929267, 48.80734290991733]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8ef1eaad983e58b6a85ac4206af3bfd83d0bcf2f", "fields": {"departement": "94", "stop_lat": 48.80885525788095, "code_postal": "94046", "stop_lon": 2.4353517068018586, "coord": [48.80885525788095, 2.4353517068018586], "stop_id": 5675627, "stop_desc": "149-151 AVENUE DU GENERAL LECLERC - 94046", "stop_name": "STADE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.4353517068018586, 48.80885525788095]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cdf578cf444420bbd81589f069ff4fa3998a46ac", "fields": {"departement": "94", "stop_lat": 48.81940876414627, "code_postal": "94018", "stop_lon": 2.4072118416045463, "coord": [48.81940876414627, 2.4072118416045463], "stop_id": 5675630, "stop_desc": "52 QUAI DES CARRIERES - 94018", "stop_name": "LES BERGES DE CHARENTON"}, "geometry": {"type": "Point", "coordinates": [2.4072118416045463, 48.81940876414627]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "13f392ca9d172733eb7bf6e82765b14af71f5e4e", "fields": {"departement": "75", "stop_lat": 48.84009247169696, "code_postal": "75112", "stop_lon": 2.3819688617960826, "coord": [48.84009247169696, 2.3819688617960826], "stop_id": 5675639, "stop_desc": "15 BOULEVARD DE BERCY - 75112", "stop_name": "GARE DE BERCY"}, "geometry": {"type": "Point", "coordinates": [2.3819688617960826, 48.84009247169696]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7dc9705781fbec859cf5838c345b0c3113ba8e11", "fields": {"departement": "75", "stop_lat": 48.84397806224592, "code_postal": "75112", "stop_lon": 2.3731893823763586, "coord": [48.84397806224592, 2.3731893823763586], "stop_id": 5675641, "stop_desc": "FACE 191 RUE DE BERCY - 75112", "stop_name": "GARE DE LYON"}, "geometry": {"type": "Point", "coordinates": [2.3731893823763586, 48.84397806224592]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3d00a8f0e1e36145fd0ddec2628ff2e8a9e8f103", "fields": {"departement": "94", "stop_lat": 48.798691144546154, "code_postal": "94028", "stop_lon": 2.4540256685936535, "coord": [48.798691144546154, 2.4540256685936535], "stop_id": 5675661, "stop_desc": "FACE 50 AVENUE DU MARECHAL DE LATTRE DE TASSIGNY - 94028", "stop_name": "HENRI MONDOR - LAFERRIERE"}, "geometry": {"type": "Point", "coordinates": [2.4540256685936535, 48.798691144546154]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9194496606af98b5ac4f0f724e9ad8a2ba993ba1", "fields": {"departement": "94", "stop_lat": 48.79687271996065, "code_postal": "94028", "stop_lon": 2.4569193270234053, "coord": [48.79687271996065, 2.4569193270234053], "stop_id": 5675662, "stop_desc": "29-31 AVENUE DU MARECHAL DE LATTRE DE TASSIGNY - 94028", "stop_name": "GENERAL GALLIENI"}, "geometry": {"type": "Point", "coordinates": [2.4569193270234053, 48.79687271996065]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "41543ee9db159bbee5ab2c3bde6eb0c20a9c1fd8", "fields": {"departement": "94", "stop_lat": 48.785146435130216, "code_postal": "94028", "stop_lon": 2.4627817066444044, "coord": [48.785146435130216, 2.4627817066444044], "stop_id": 5675666, "stop_desc": "38 RUE JULIETTE SAVAR - 94028", "stop_name": "ORME AU CHAT"}, "geometry": {"type": "Point", "coordinates": [2.4627817066444044, 48.785146435130216]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5581fb50aeed619ddddd480a1607e7a4915b682e", "fields": {"departement": "94", "stop_lat": 48.77790167824832, "code_postal": "94028", "stop_lon": 2.4631993828949934, "coord": [48.77790167824832, 2.4631993828949934], "stop_id": 5675670, "stop_desc": "RUE RENE ARCOS - 94028", "stop_name": "JOHN KENNEDY"}, "geometry": {"type": "Point", "coordinates": [2.4631993828949934, 48.77790167824832]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8fe88058c2e8fa5c8b77eb71a15e0ea0432ce169", "fields": {"departement": "94", "stop_lat": 48.77290083032833, "code_postal": "94028", "stop_lon": 2.457911167937269, "coord": [48.77290083032833, 2.457911167937269], "stop_id": 5675673, "stop_desc": "72 AVENUE DU GENERAL PIERRE BILLOTTE - 94028", "stop_name": "BILLOTTE - FALKIRK"}, "geometry": {"type": "Point", "coordinates": [2.457911167937269, 48.77290083032833]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "353cb8c58ee0547dd16a395301377f77f9ac1c5c", "fields": {"departement": "78", "stop_lat": 48.70310256736092, "code_postal": "78575", "stop_lon": 2.070680495679639, "coord": [48.70310256736092, 2.070680495679639], "stop_id": 5682033, "stop_desc": "PLACE DE LA GARE - 78575", "stop_name": "SAINT-REMY-LES-CHEVREUSE RER"}, "geometry": {"type": "Point", "coordinates": [2.070680495679639, 48.70310256736092]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "464906241f97f487839580e3b5f5463cc4bd11b5", "fields": {"departement": "91", "stop_lat": 48.70004863592524, "code_postal": "91661", "stop_lon": 2.214608060016395, "coord": [48.70004863592524, 2.214608060016395], "stop_id": 5682047, "stop_desc": "FACE 40 RUE DU GENERAL DE GAULLE - 91661", "stop_name": "LES SUISSES - LOZERE RER"}, "geometry": {"type": "Point", "coordinates": [2.214608060016395, 48.70004863592524]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "60648fd1738965df2de0fd22346f812b6ca91b59", "fields": {"departement": "75", "stop_lat": 48.83479812557195, "code_postal": "75114", "stop_lon": 2.3330342236102313, "coord": [48.83479812557195, 2.3330342236102313], "stop_id": 5682054, "stop_desc": "95 AVENUE DENFERT-ROCHEREAU - 75114", "stop_name": "DENFERT-ROCHEREAU - ARAGO"}, "geometry": {"type": "Point", "coordinates": [2.3330342236102313, 48.83479812557195]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c34f1f8ed6bcfdd7c8553933b2608e890c02fc99", "fields": {"departement": "75", "stop_lat": 48.85234167570838, "code_postal": "75105", "stop_lon": 2.343778173799205, "coord": [48.85234167570838, 2.343778173799205], "stop_id": 5682058, "stop_desc": "7 BOULEVARD SAINT-MICHEL - 75105", "stop_name": "SAINT-MICHEL - SAINT-GERMAIN"}, "geometry": {"type": "Point", "coordinates": [2.343778173799205, 48.85234167570838]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "71bb7766f147485ade317635c7084a5c2476e847", "fields": {"departement": "75", "stop_lat": 48.857598970485036, "code_postal": "75104", "stop_lon": 2.348586823364378, "coord": [48.857598970485036, 2.348586823364378], "stop_id": 5682061, "stop_desc": "FACE 15 AVENUE VICTORIA - 75104", "stop_name": "CHATELET"}, "geometry": {"type": "Point", "coordinates": [2.348586823364378, 48.857598970485036]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1e971a2f4e20ec67318c18d5f54ef72605bb58a6", "fields": {"departement": "92", "stop_lat": 48.78016797303915, "code_postal": "92014", "stop_lon": 2.3130873734741386, "coord": [48.78016797303915, 2.3130873734741386], "stop_id": 5688790, "stop_desc": "PLACE DE LA GARE - 92014", "stop_name": "BOURG-LA-REINE RER"}, "geometry": {"type": "Point", "coordinates": [2.3130873734741386, 48.78016797303915]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5d566e7cc187413fd4f7641e7ce8fa7f134891cf", "fields": {"departement": "92", "stop_lat": 48.77960219728907, "code_postal": "92014", "stop_lon": 2.315508420878453, "coord": [48.77960219728907, 2.315508420878453], "stop_id": 5688791, "stop_desc": "PLACE CONDORCET - 92014", "stop_name": "CONDORCET - MAIRIE-RER"}, "geometry": {"type": "Point", "coordinates": [2.315508420878453, 48.77960219728907]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "77212d23a5b87522bc177b234ff8e91006891ba5", "fields": {"departement": "92", "stop_lat": 48.781328372966925, "code_postal": "92014", "stop_lon": 2.3183365738057007, "coord": [48.781328372966925, 2.3183365738057007], "stop_id": 5688792, "stop_desc": "FACE 21 R DE LA BIEVRE - 92014", "stop_name": "INSTITUT-NOTRE DAME"}, "geometry": {"type": "Point", "coordinates": [2.3183365738057007, 48.781328372966925]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bd11b7c8de28fddf5e63031eee1244f6acce6af4", "fields": {"departement": "92", "stop_lat": 48.78006176348178, "code_postal": "92014", "stop_lon": 2.3233826466596277, "coord": [48.78006176348178, 2.3233826466596277], "stop_id": 5688794, "stop_desc": "46 RUE DE LA BIEVRE - 92014", "stop_name": "MARECHAL DE LATTRE"}, "geometry": {"type": "Point", "coordinates": [2.3233826466596277, 48.78006176348178]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a6793fd9010400f135d996bb3bb980df1be69898", "fields": {"departement": "94", "stop_lat": 48.7774019620586, "code_postal": "94038", "stop_lon": 2.330998984286633, "coord": [48.7774019620586, 2.330998984286633], "stop_id": 5688799, "stop_desc": "24 AVENUE JULES GRAVEREAUX - 94038", "stop_name": "COMMISSARIAT DE L'HAY-LES-ROSES"}, "geometry": {"type": "Point", "coordinates": [2.330998984286633, 48.7774019620586]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c45ca3a8c87c7b2286736cd7f1a398e8cc4341f6", "fields": {"departement": "94", "stop_lat": 48.780529879484185, "code_postal": "94038", "stop_lon": 2.3412667237024913, "coord": [48.780529879484185, 2.3412667237024913], "stop_id": 5688806, "stop_desc": "32 AVENUE DU GENERAL DE GAULLE - 94038", "stop_name": "DE GAULLE - GOUNOD - TABANOU"}, "geometry": {"type": "Point", "coordinates": [2.3412667237024913, 48.780529879484185]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9b4bf1206ea90ebc311040268a28325e12d8c025", "fields": {"departement": "94", "stop_lat": 48.794111497225124, "code_postal": "94081", "stop_lon": 2.4012057296036327, "coord": [48.794111497225124, 2.4012057296036327], "stop_id": 5688828, "stop_desc": "FACE 58 AVENUE JEAN JAURES - 94081", "stop_name": "GABRIEL PERI"}, "geometry": {"type": "Point", "coordinates": [2.4012057296036327, 48.794111497225124]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d225032f57ff63aeda3af363756f445d821f8a71", "fields": {"departement": "94", "stop_lat": 48.79886956001336, "code_postal": "94002", "stop_lon": 2.4240815336112345, "coord": [48.79886956001336, 2.4240815336112345], "stop_id": 5688834, "stop_desc": "36BIS-38 RUE EMILE ZOLA - 94002", "stop_name": "DOLET - ZOLA"}, "geometry": {"type": "Point", "coordinates": [2.4240815336112345, 48.79886956001336]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "67d1a4956e3e18bf4e5767f5afef4a2246d560e7", "fields": {"departement": "94", "stop_lat": 48.799811725557575, "code_postal": "94002", "stop_lon": 2.42619191710432, "coord": [48.799811725557575, 2.42619191710432], "stop_id": 5688837, "stop_desc": "61 R EMILE ZOLA - 94002", "stop_name": "CAMELIAS"}, "geometry": {"type": "Point", "coordinates": [2.42619191710432, 48.799811725557575]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "da79aa20996a929d6327b4b5f7b5e2902b04f698", "fields": {"departement": "94", "stop_lat": 48.79998090975794, "code_postal": "94046", "stop_lon": 2.4282874165331094, "coord": [48.79998090975794, 2.4282874165331094], "stop_id": 5688838, "stop_desc": "AVENUE DE LA REPUBLIQUE - 94046", "stop_name": "MAISONS-ALFORT - ALFORTVILLE RER"}, "geometry": {"type": "Point", "coordinates": [2.4282874165331094, 48.79998090975794]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0225bd52a8fd9b3bef97cbc17240d1cd59581a35", "fields": {"departement": "94", "stop_lat": 48.800388411797904, "code_postal": "94046", "stop_lon": 2.4357438710791275, "coord": [48.800388411797904, 2.4357438710791275], "stop_id": 5688842, "stop_desc": "34 RUE VICTOR HUGO - 94046", "stop_name": "HUGO - BLUM"}, "geometry": {"type": "Point", "coordinates": [2.4357438710791275, 48.800388411797904]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0c567dd3b88ba090b14011ec2f48d64d7926923a", "fields": {"departement": "94", "stop_lat": 48.797238794974525, "code_postal": "94046", "stop_lon": 2.440309022831639, "coord": [48.797238794974525, 2.440309022831639], "stop_id": 5688844, "stop_desc": "RUE DE MESLY - 94046", "stop_name": "HECTOR BERLIOZ"}, "geometry": {"type": "Point", "coordinates": [2.440309022831639, 48.797238794974525]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "146ac4bf15316267b3728a87e88d5d985fbdc258", "fields": {"departement": "94", "stop_lat": 48.79460083512324, "code_postal": "94028", "stop_lon": 2.445391627936828, "coord": [48.79460083512324, 2.445391627936828], "stop_id": 5688846, "stop_desc": "RUE SAINT-SIMON - 94028", "stop_name": "COLLEGE GUYARD"}, "geometry": {"type": "Point", "coordinates": [2.445391627936828, 48.79460083512324]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "65ff05e5abcd314f842f43e3e891ddc7e4256e45", "fields": {"departement": "94", "stop_lat": 48.79521321463519, "code_postal": "94028", "stop_lon": 2.444059710022633, "coord": [48.79521321463519, 2.444059710022633], "stop_id": 5688847, "stop_desc": "54 RUE SAINT-SIMON - 94028", "stop_name": "COLLEGE GUYARD"}, "geometry": {"type": "Point", "coordinates": [2.444059710022633, 48.79521321463519]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b083f44ab044b4a25a2f9c30c8687ccab04a8c85", "fields": {"departement": "94", "stop_lat": 48.780637761790295, "code_postal": "94038", "stop_lon": 2.3403827202197847, "coord": [48.780637761790295, 2.3403827202197847], "stop_id": 5688856, "stop_desc": "7-9 AV DU GENERAL DE GAULLE - 94038", "stop_name": "LA TOURNELLE"}, "geometry": {"type": "Point", "coordinates": [2.3403827202197847, 48.780637761790295]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cff8182439a2a5add3e4c8c135f19717936d939c", "fields": {"departement": "75", "stop_lat": 48.891391107788415, "code_postal": "75118", "stop_lon": 2.3497663277119103, "coord": [48.891391107788415, 2.3497663277119103], "stop_id": 5688898, "stop_desc": "96 BOULEVARD BARBES - 75118", "stop_name": "MARCADET - POISSONNIERS"}, "geometry": {"type": "Point", "coordinates": [2.3497663277119103, 48.891391107788415]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d02964c473c0a4e2f5a98e71b24a943f3a41b07a", "fields": {"departement": "75", "stop_lat": 48.88783222118241, "code_postal": "75118", "stop_lon": 2.349370247627986, "coord": [48.88783222118241, 2.349370247627986], "stop_id": 5688899, "stop_desc": "37 BOULEVARD BARBES - 75118", "stop_name": "CHATEAU ROUGE"}, "geometry": {"type": "Point", "coordinates": [2.349370247627986, 48.88783222118241]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "46fde095b6a039fa04a62d36d6b93f7296490117", "fields": {"departement": "75", "stop_lat": 48.881334194288584, "code_postal": "75110", "stop_lon": 2.351712503852361, "coord": [48.881334194288584, 2.351712503852361], "stop_id": 5688904, "stop_desc": "140-142 BOULEVARD DE MAGENTA - 75110", "stop_name": "MAGENTA - MAUBEUGE - GARE DU NORD"}, "geometry": {"type": "Point", "coordinates": [2.351712503852361, 48.881334194288584]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bf1a898908d88f5a4fab92da8cc5a29018191dbd", "fields": {"departement": "75", "stop_lat": 48.86714090245713, "code_postal": "75110", "stop_lon": 2.364936352609631, "coord": [48.86714090245713, 2.364936352609631], "stop_id": 5688913, "stop_desc": "FACE 10 PLACE DE LA REPUBLIQUE - 75110", "stop_name": "REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.364936352609631, 48.86714090245713]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b0b3053184622ca1cb42ee5140e6e8f89f57f264", "fields": {"departement": "75", "stop_lat": 48.859848905122675, "code_postal": "75111", "stop_lon": 2.3764421671803415, "coord": [48.859848905122675, 2.3764421671803415], "stop_id": 5688923, "stop_desc": "98 BOULEVARD VOLTAIRE - 75111", "stop_name": "CHEMIN VERT"}, "geometry": {"type": "Point", "coordinates": [2.3764421671803415, 48.859848905122675]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0095c234f49eb906d56751d6fc68c8fac71e5a78", "fields": {"departement": "94", "stop_lat": 48.84679873440997, "code_postal": "94080", "stop_lon": 2.4269669695079092, "coord": [48.84679873440997, 2.4269669695079092], "stop_id": 5688946, "stop_desc": "8 AVENUE ANTOINE QUINSON - 94080", "stop_name": "LYCEE HECTOR BERLIOZ"}, "geometry": {"type": "Point", "coordinates": [2.4269669695079092, 48.84679873440997]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "57b1d61c3faeb17e7149b00d6053b3b506247199", "fields": {"departement": "94", "stop_lat": 48.848429694872884, "code_postal": "94080", "stop_lon": 2.4330842564800896, "coord": [48.848429694872884, 2.4330842564800896], "stop_id": 5688950, "stop_desc": "131 RUE DE FONTENAY - 94080", "stop_name": "FRATERNITE"}, "geometry": {"type": "Point", "coordinates": [2.4330842564800896, 48.848429694872884]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0f167b7b78b13973b7e96019d0a16e622c7193b4", "fields": {"departement": "94", "stop_lat": 48.84683591626402, "code_postal": "94080", "stop_lon": 2.4367308149123965, "coord": [48.84683591626402, 2.4367308149123965], "stop_id": 5688951, "stop_desc": "33 AVENUE DU CHATEAU - 94080", "stop_name": "VINCENNES RER"}, "geometry": {"type": "Point", "coordinates": [2.4367308149123965, 48.84683591626402]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0c2512b57a568730c9f5540abe6e397fe284e95f", "fields": {"departement": "94", "stop_lat": 48.84738391423499, "code_postal": "94080", "stop_lon": 2.4370178373280935, "coord": [48.84738391423499, 2.4370178373280935], "stop_id": 5688952, "stop_desc": "24 AVENUE DU CHATEAU - 94080", "stop_name": "VINCENNES RER"}, "geometry": {"type": "Point", "coordinates": [2.4370178373280935, 48.84738391423499]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9cb348d52e541940e3f3ad8c74d6ce452da0e6ca", "fields": {"departement": "75", "stop_lat": 48.87350522009684, "code_postal": "75110", "stop_lon": 2.35869971045395, "coord": [48.87350522009684, 2.35869971045395], "stop_id": 5688960, "stop_desc": "58-60 BOULEVARD DE MAGENTA - 75110", "stop_name": "STRASBOURG - MAGENTA"}, "geometry": {"type": "Point", "coordinates": [2.35869971045395, 48.87350522009684]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6a8f812bb017d21d3c59ef2dda55564f6b289cda", "fields": {"departement": "75", "stop_lat": 48.89786213533143, "code_postal": "75118", "stop_lon": 2.3467690822292147, "coord": [48.89786213533143, 2.3467690822292147], "stop_id": 5688961, "stop_desc": "FACE 41 RUE BELLIARD - 75118", "stop_name": "MONT-CENIS"}, "geometry": {"type": "Point", "coordinates": [2.3467690822292147, 48.89786213533143]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "917f8ed2cfcee21d175156e108ff5ae735a86317", "fields": {"departement": "75", "stop_lat": 48.83199576267326, "code_postal": "75113", "stop_lon": 2.3789260417460496, "coord": [48.83199576267326, 2.3789260417460496], "stop_id": 5709850, "stop_desc": "12 RUE NEUVE TOLBIAC - 75113", "stop_name": "PONT DE TOLBIAC"}, "geometry": {"type": "Point", "coordinates": [2.3789260417460496, 48.83199576267326]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2ea8b91892b37a4919dbb1b9814423cfa866243e", "fields": {"departement": "75", "stop_lat": 48.83088929178139, "code_postal": "75113", "stop_lon": 2.3816750506853186, "coord": [48.83088929178139, 2.3816750506853186], "stop_id": 5709852, "stop_desc": "QUAI PANHARD ET LEVASSOR - 75113", "stop_name": "THOMAS MANN"}, "geometry": {"type": "Point", "coordinates": [2.3816750506853186, 48.83088929178139]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "66cfefd47228f6b989784f9701eea915db1aca40", "fields": {"departement": "94", "stop_lat": 48.82487367378616, "code_postal": "94041", "stop_lon": 2.3888296960435618, "coord": [48.82487367378616, 2.3888296960435618], "stop_id": 5709855, "stop_desc": "QUAI MARCEL BOYER - 94041", "stop_name": "BRUNESEAU"}, "geometry": {"type": "Point", "coordinates": [2.3888296960435618, 48.82487367378616]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ecee4a94de2ce25fd18915154253175d96f5eacd", "fields": {"departement": "94", "stop_lat": 48.82276919297044, "code_postal": "94041", "stop_lon": 2.3918901303311686, "coord": [48.82276919297044, 2.3918901303311686], "stop_id": 5709857, "stop_desc": "26 QUAI MARCEL BOYER - 94041", "stop_name": "VICTOR HUGO - BRETAGNE"}, "geometry": {"type": "Point", "coordinates": [2.3918901303311686, 48.82276919297044]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1f0a30fa605910fcb2dee55e2769aefd7782ac03", "fields": {"departement": "94", "stop_lat": 48.82187131459551, "code_postal": "94041", "stop_lon": 2.3899155915697325, "coord": [48.82187131459551, 2.3899155915697325], "stop_id": 5709858, "stop_desc": "27 RUE FRANCOIS MITTERRAND - 94041", "stop_name": "VICTOR HUGO - BRETAGNE"}, "geometry": {"type": "Point", "coordinates": [2.3899155915697325, 48.82187131459551]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "738867ac065174049c4df4bb792a5d2664b7400e", "fields": {"departement": "94", "stop_lat": 48.81688746102785, "code_postal": "94041", "stop_lon": 2.399573410259213, "coord": [48.81688746102785, 2.399573410259213], "stop_id": 5709863, "stop_desc": "75 BOULEVARD PAUL VAILLANT-COUTURIER - 94041", "stop_name": "MOISE - PIERRE GALAIS"}, "geometry": {"type": "Point", "coordinates": [2.399573410259213, 48.81688746102785]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9934d5f1d66c8eb177afd08447c4fc45038ea21a", "fields": {"departement": "94", "stop_lat": 48.81486417327504, "code_postal": "94041", "stop_lon": 2.401544308380196, "coord": [48.81486417327504, 2.401544308380196], "stop_id": 5709864, "stop_desc": "FACE 119 BOULEVARD PAUL VAILLANT-COUTURIER - 94041", "stop_name": "GAMBETTA"}, "geometry": {"type": "Point", "coordinates": [2.401544308380196, 48.81486417327504]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eff203d69658f6b0fdee5db47095440609a1d068", "fields": {"departement": "94", "stop_lat": 48.81464533066428, "code_postal": "94041", "stop_lon": 2.4071101579735426, "coord": [48.81464533066428, 2.4071101579735426], "stop_id": 5709867, "stop_desc": "20 BOULEVARD DU COLONEL FABIEN - 94041", "stop_name": "PONT D'IVRY - RIVE GAUCHE"}, "geometry": {"type": "Point", "coordinates": [2.4071101579735426, 48.81464533066428]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "090ac77e1c1acab0160a06018a0fe55a5e7d56d4", "fields": {"departement": "94", "stop_lat": 48.839884992931076, "code_postal": "94067", "stop_lon": 2.4176418613671933, "coord": [48.839884992931076, 2.4176418613671933], "stop_id": 5709880, "stop_desc": "61 AVENUE DU GENERAL DE GAULLE - 94067", "stop_name": "EGLISE DE SAINT-MANDE"}, "geometry": {"type": "Point", "coordinates": [2.4176418613671933, 48.839884992931076]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "66c62576addfb508129484bd95ad4c30cb1b3358", "fields": {"departement": "94", "stop_lat": 48.84292286373719, "code_postal": "94067", "stop_lon": 2.4175240200745383, "coord": [48.84292286373719, 2.4175240200745383], "stop_id": 5709883, "stop_desc": "40 AVENUE DU GENERAL DE GAULLE - 94067", "stop_name": "MAIRIE DE SAINT-MANDE"}, "geometry": {"type": "Point", "coordinates": [2.4175240200745383, 48.84292286373719]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d074b1054f3925a953ef15b2aebaa4dc6cea7318", "fields": {"departement": "94", "stop_lat": 48.84585268408715, "code_postal": "94067", "stop_lon": 2.4176919610456427, "coord": [48.84585268408715, 2.4176919610456427], "stop_id": 5709884, "stop_desc": "3 AVENUE DU GENERAL DE GAULLE - 94067", "stop_name": "SAINT-MANDE - TOURELLE"}, "geometry": {"type": "Point", "coordinates": [2.4176919610456427, 48.84585268408715]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c1893c9d6b109dcfa72864821354db5c28a09dfd", "fields": {"departement": "94", "stop_lat": 48.84621234043926, "code_postal": "94067", "stop_lon": 2.417461023272112, "coord": [48.84621234043926, 2.417461023272112], "stop_id": 5709885, "stop_desc": "2 AVENUE DU GENERAL DE GAULLE - 94067", "stop_name": "SAINT-MANDE - TOURELLE"}, "geometry": {"type": "Point", "coordinates": [2.417461023272112, 48.84621234043926]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "137eb95e3105dc41da8f9952a69e8a4958ab0123", "fields": {"departement": "94", "stop_lat": 48.84552226230954, "code_postal": "94067", "stop_lon": 2.4272915748023243, "coord": [48.84552226230954, 2.4272915748023243], "stop_id": 5709887, "stop_desc": "67 AVENUE DE PARIS - 94067", "stop_name": "BERAULT-METRO"}, "geometry": {"type": "Point", "coordinates": [2.4272915748023243, 48.84552226230954]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "259143f756435cb05b4a002b241e795f8b8ce8ec", "fields": {"departement": "94", "stop_lat": 48.8446246823592, "code_postal": "94080", "stop_lon": 2.437094232812113, "coord": [48.8446246823592, 2.437094232812113], "stop_id": 5709891, "stop_desc": "FACE 10 AVENUE DE PARIS - 94080", "stop_name": "AVENUE DU CHATEAU"}, "geometry": {"type": "Point", "coordinates": [2.437094232812113, 48.8446246823592]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "af859d8da3cb4a4cd922018fda340f5a73ee2648", "fields": {"departement": "75", "stop_lat": 48.88180050254322, "code_postal": "75110", "stop_lon": 2.3585668751343, "coord": [48.88180050254322, 2.3585668751343], "stop_id": 4035726, "stop_desc": "FACE 191 RUE DU FAUBOURG SAINT-DENIS - 75110", "stop_name": "CAIL - DEMARQUAY"}, "geometry": {"type": "Point", "coordinates": [2.3585668751343, 48.88180050254322]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "43b2cffd70e3b38fee04d6a3d21d545a567436b3", "fields": {"departement": "93", "stop_lat": 48.9196923244909, "code_postal": "93027", "stop_lon": 2.382855776298006, "coord": [48.9196923244909, 2.382855776298006], "stop_id": 4035736, "stop_desc": "2-4 BD PASTEUR - 93027", "stop_name": "CREVECOEUR"}, "geometry": {"type": "Point", "coordinates": [2.382855776298006, 48.9196923244909]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "146173306deaef17cb3b5a59f5af846e258518fa", "fields": {"departement": "93", "stop_lat": 48.95658572640723, "code_postal": "93005", "stop_lon": 2.4657356877614824, "coord": [48.95658572640723, 2.4657356877614824], "stop_id": 4035742, "stop_desc": "VOIE PARALLELE A L'ENTREPOT NUMERO 1 - 93005", "stop_name": "GARONOR"}, "geometry": {"type": "Point", "coordinates": [2.4657356877614824, 48.95658572640723]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a5e3a500aaa67cbc37db6d929006695a97c7b4b9", "fields": {"departement": "93", "stop_lat": 48.9526171602876, "code_postal": "93007", "stop_lon": 2.4623827191222363, "coord": [48.9526171602876, 2.4623827191222363], "stop_id": 4035746, "stop_desc": "RUE ANATOLE SIGONNEAU - 93007", "stop_name": "ANATOLE SIGONNEAU - CENTRE D'AFFAIRES"}, "geometry": {"type": "Point", "coordinates": [2.4623827191222363, 48.9526171602876]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ceeca38690b8d2a44fbcdc1ba444d0239b0bf9fd", "fields": {"departement": "93", "stop_lat": 48.950186781515434, "code_postal": "93007", "stop_lon": 2.4574920277380605, "coord": [48.950186781515434, 2.4574920277380605], "stop_id": 4035749, "stop_desc": "AVENUE DESCARTES - 93007", "stop_name": "CIMETIERE DU BLANC-MESNIL"}, "geometry": {"type": "Point", "coordinates": [2.4574920277380605, 48.950186781515434]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "acc99822fb5b27f9976650ab7fdfe4f16f3932ca", "fields": {"departement": "93", "stop_lat": 48.943609127934664, "code_postal": "93007", "stop_lon": 2.465485196660577, "coord": [48.943609127934664, 2.465485196660577], "stop_id": 4035754, "stop_desc": "FACE 3 AVENUE DE LA DIVISION LECLERC - 93007", "stop_name": "LIBERATION"}, "geometry": {"type": "Point", "coordinates": [2.465485196660577, 48.943609127934664]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4d53f8cba61f170a9865f95164c91f12fe0c5eb2", "fields": {"departement": "93", "stop_lat": 48.93875222326211, "code_postal": "93007", "stop_lon": 2.460780414235105, "coord": [48.93875222326211, 2.460780414235105], "stop_id": 4035757, "stop_desc": "FACE 42 AVENUE HENRI BARBUSSE - 93007", "stop_name": "HOTEL DE VILLE DU BLANC-MESNIL"}, "geometry": {"type": "Point", "coordinates": [2.460780414235105, 48.93875222326211]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5168d1dab12b8ed8f1d8b2535e60948a9e4b16bb", "fields": {"departement": "93", "stop_lat": 48.937028715881254, "code_postal": "93007", "stop_lon": 2.4588665245586574, "coord": [48.937028715881254, 2.4588665245586574], "stop_id": 4035760, "stop_desc": "FACE 25 AVENUE HENRI BARBUSSE - 93007", "stop_name": "ANCIENNE MAIRIE DE LE_BLANC-MESNIL"}, "geometry": {"type": "Point", "coordinates": [2.4588665245586574, 48.937028715881254]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "726dbf3652b5fd7a9417c8161ce19d3c3e698148", "fields": {"departement": "93", "stop_lat": 48.93579014936311, "code_postal": "93029", "stop_lon": 2.4572676250925753, "coord": [48.93579014936311, 2.4572676250925753], "stop_id": 4035762, "stop_desc": "250 RUE ANATOLE FRANCE - 93029", "stop_name": "ROGER SALOMON"}, "geometry": {"type": "Point", "coordinates": [2.4572676250925753, 48.93579014936311]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "26e78f1b7306341d0ee10758c8b2b3916c87912e", "fields": {"departement": "93", "stop_lat": 48.93281739515088, "code_postal": "93029", "stop_lon": 2.455364753088356, "coord": [48.93281739515088, 2.455364753088356], "stop_id": 4035763, "stop_desc": "193 RUE ANATOLE FRANCE - 93029", "stop_name": "DRANCY RER"}, "geometry": {"type": "Point", "coordinates": [2.455364753088356, 48.93281739515088]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5bbfcfa4f38e33874c4b7320c78fc5c8120a20bf", "fields": {"departement": "93", "stop_lat": 48.9297095738704, "code_postal": "93029", "stop_lon": 2.4536936653731236, "coord": [48.9297095738704, 2.4536936653731236], "stop_id": 4035765, "stop_desc": "155-153 RUE ANATOLE FRANCE - 93029", "stop_name": "BREMENT"}, "geometry": {"type": "Point", "coordinates": [2.4536936653731236, 48.9297095738704]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "256bbe34c732e558973a8db6f05aacf2c5722f25", "fields": {"departement": "93", "stop_lat": 48.92482281223156, "code_postal": "93029", "stop_lon": 2.4416948293908285, "coord": [48.92482281223156, 2.4416948293908285], "stop_id": 4035772, "stop_desc": "89 RUE SADI CARNOT - 93029", "stop_name": "JEAN-PIERRE TIMBAUD"}, "geometry": {"type": "Point", "coordinates": [2.4416948293908285, 48.92482281223156]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2bd88a5dc8d17e7ecfb246f707fb906428c663bc", "fields": {"departement": "93", "stop_lat": 48.92993519829031, "code_postal": "93029", "stop_lon": 2.432348512476636, "coord": [48.92993519829031, 2.432348512476636], "stop_id": 4035775, "stop_desc": "90 AVENUE MARCEAU - 93029", "stop_name": "EDOUARD VAILLANT"}, "geometry": {"type": "Point", "coordinates": [2.432348512476636, 48.92993519829031]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e525b0d92ee8d83125a9929ad1f403d6f229b187", "fields": {"departement": "93", "stop_lat": 48.93009765487347, "code_postal": "93029", "stop_lon": 2.431475886641636, "coord": [48.93009765487347, 2.431475886641636], "stop_id": 4035776, "stop_desc": "87 AVENUE MARCEAU - 93029", "stop_name": "EDOUARD VAILLANT"}, "geometry": {"type": "Point", "coordinates": [2.431475886641636, 48.93009765487347]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "522c1c641803bdc2a33b89c4945f98f61209354b", "fields": {"departement": "93", "stop_lat": 48.90902713462094, "code_postal": "93001", "stop_lon": 2.39769369061661, "coord": [48.90902713462094, 2.39769369061661], "stop_id": 4035795, "stop_desc": "151 AVENUE JEAN JAURES - 93001", "stop_name": "CIMETIERE PARISIEN"}, "geometry": {"type": "Point", "coordinates": [2.39769369061661, 48.90902713462094]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ce65c1ee2f71e3a578a9a21fd96bc2908aace85e", "fields": {"departement": "75", "stop_lat": 48.87863626955432, "code_postal": "75110", "stop_lon": 2.362258190577353, "coord": [48.87863626955432, 2.362258190577353], "stop_id": 4035814, "stop_desc": "190 RUE DU FAUBOURG SAINT-MARTIN - 75110", "stop_name": "CHATEAU LANDON"}, "geometry": {"type": "Point", "coordinates": [2.362258190577353, 48.87863626955432]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5395c24fb2d393577445b282bc3c1c9b62eb25da", "fields": {"departement": "75", "stop_lat": 48.87568923822874, "code_postal": "75110", "stop_lon": 2.358114733926893, "coord": [48.87568923822874, 2.358114733926893], "stop_id": 4035816, "stop_desc": "76 BOULEVARD DE STRASBOURG - 75110", "stop_name": "GARE DE L'EST"}, "geometry": {"type": "Point", "coordinates": [2.358114733926893, 48.87568923822874]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c446ce08dda12a51e632b8176812df3aaf6e5e0a", "fields": {"departement": "93", "stop_lat": 48.90386206128232, "code_postal": "93055", "stop_lon": 2.392561835479137, "coord": [48.90386206128232, 2.392561835479137], "stop_id": 4035821, "stop_desc": "84 AVENUE JEAN JAURES - 93055", "stop_name": "QUATRE CHEMINS-METRO"}, "geometry": {"type": "Point", "coordinates": [2.392561835479137, 48.90386206128232]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4e9d51e5243930dc6c6fbccc7add08dcdf9c265a", "fields": {"departement": "93", "stop_lat": 48.91843969494924, "code_postal": "93027", "stop_lon": 2.4082728559481428, "coord": [48.91843969494924, 2.4082728559481428], "stop_id": 4035825, "stop_desc": "8-8 BIS AVENUE PAUL VAILLANT-COUTURIER - 93027", "stop_name": "EDOUARD VAILLANT - JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.4082728559481428, 48.91843969494924]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "350da74eb81de9f31ecd90d28d0d63e360e32a51", "fields": {"departement": "94", "stop_lat": 48.8280081599537, "code_postal": "94017", "stop_lon": 2.4940446690229003, "coord": [48.8280081599537, 2.4940446690229003], "stop_id": 4035931, "stop_desc": "236 BOULEVARD DE STALINGRAD - 94017", "stop_name": "PARC DU TREMBLAY"}, "geometry": {"type": "Point", "coordinates": [2.4940446690229003, 48.8280081599537]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "66edcba536e8322c86d9f1166506cc146e8af950", "fields": {"departement": "94", "stop_lat": 48.82397897368915, "code_postal": "94017", "stop_lon": 2.4960878428804523, "coord": [48.82397897368915, 2.4960878428804523], "stop_id": 4035932, "stop_desc": "149-151 BOULEVARD DE STALINGRAD - 94017", "stop_name": "GENERAL DE GAULLE - STALINGRAD"}, "geometry": {"type": "Point", "coordinates": [2.4960878428804523, 48.82397897368915]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "399ecb1637cce9800c65231bfbf98966000f4340", "fields": {"departement": "94", "stop_lat": 48.82018223486051, "code_postal": "94017", "stop_lon": 2.485187767922024, "coord": [48.82018223486051, 2.485187767922024], "stop_id": 4035937, "stop_desc": "2-4 AVENUE DU GENERAL DE GAULLE - 94017", "stop_name": "LA FOURCHETTE DE CHAMPIGNY"}, "geometry": {"type": "Point", "coordinates": [2.485187767922024, 48.82018223486051]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4845b488a9118324fd40e2566c605c97815c99f9", "fields": {"departement": "94", "stop_lat": 48.809110386571426, "code_postal": "94068", "stop_lon": 2.4768691497537905, "coord": [48.809110386571426, 2.4768691497537905], "stop_id": 4035943, "stop_desc": "22 BIS AVENUE DE LA LIBERATION - 94068", "stop_name": "MARINVILLE"}, "geometry": {"type": "Point", "coordinates": [2.4768691497537905, 48.809110386571426]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "823001658e4eb401099c3471d2081dd99d44c69e", "fields": {"departement": "94", "stop_lat": 48.804012330369375, "code_postal": "94046", "stop_lon": 2.444050598766659, "coord": [48.804012330369375, 2.444050598766659], "stop_id": 4035960, "stop_desc": "102 AVENUE DU GENERAL LECLERC - 94046", "stop_name": "LES JUILLIOTTES-METRO"}, "geometry": {"type": "Point", "coordinates": [2.444050598766659, 48.804012330369375]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "01fc1ccff88434c3a686232eaf2d456e65a2b5c0", "fields": {"departement": "94", "stop_lat": 48.805470371692955, "code_postal": "94046", "stop_lon": 2.4417812792795126, "coord": [48.805470371692955, 2.4417812792795126], "stop_id": 4035961, "stop_desc": "217 AVENUE DU GENERAL LECLERC - 94046", "stop_name": "REPUBLIQUE - GENERAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.4417812792795126, 48.805470371692955]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9286f6950378cc53e79cefef505269dba4061563", "fields": {"departement": "94", "stop_lat": 48.81496864081074, "code_postal": "94046", "stop_lon": 2.421386626368657, "coord": [48.81496864081074, 2.421386626368657], "stop_id": 4035970, "stop_desc": "AVENUE DU GENERAL LECLERC - 94046", "stop_name": "ECOLE VETERINAIRE DE MAISONS-ALFORT-METRO"}, "geometry": {"type": "Point", "coordinates": [2.421386626368657, 48.81496864081074]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3eadacd0329fec9057a267b9f3dddb153d979ff0", "fields": {"departement": "94", "stop_lat": 48.823325059800965, "code_postal": "94018", "stop_lon": 2.4110827508438324, "coord": [48.823325059800965, 2.4110827508438324], "stop_id": 4035973, "stop_desc": "88 RUE DE PARIS - 94018", "stop_name": "THEATRE DE CHARENTON"}, "geometry": {"type": "Point", "coordinates": [2.4110827508438324, 48.823325059800965]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "61b705990b0bb7793b6cec14c1a1da9e461825a1", "fields": {"departement": "94", "stop_lat": 48.823667195047015, "code_postal": "94018", "stop_lon": 2.410103212176365, "coord": [48.823667195047015, 2.410103212176365], "stop_id": 4035974, "stop_desc": "109 RUE DE PARIS - 94018", "stop_name": "THEATRE DE CHARENTON"}, "geometry": {"type": "Point", "coordinates": [2.410103212176365, 48.823667195047015]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2d0f1e6c111c735820a082d44aa0ce4d37d64557", "fields": {"departement": "94", "stop_lat": 48.82629371263003, "code_postal": "94018", "stop_lon": 2.4065541275110616, "coord": [48.82629371263003, 2.4065541275110616], "stop_id": 4035975, "stop_desc": "130-132 RUE DE PARIS - 94018", "stop_name": "LIBERTE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.4065541275110616, 48.82629371263003]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a8d8008b245ce7711120faffbc0f6d447a8379f2", "fields": {"departement": "94", "stop_lat": 48.825529348029235, "code_postal": "94018", "stop_lon": 2.407260928275537, "coord": [48.825529348029235, 2.407260928275537], "stop_id": 4035976, "stop_desc": "135 RUE DE PARIS - 94018", "stop_name": "LIBERTE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.407260928275537, 48.825529348029235]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7b20853669c95bf94ef5b6971872d98282173623", "fields": {"departement": "94", "stop_lat": 48.828983406255524, "code_postal": "94018", "stop_lon": 2.402324120933582, "coord": [48.828983406255524, 2.402324120933582], "stop_id": 4035977, "stop_desc": "172 RUE DE PARIS - 94018", "stop_name": "FELIX LANGLAIS"}, "geometry": {"type": "Point", "coordinates": [2.402324120933582, 48.828983406255524]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cafd245c5b9b467765d456ecf3dcffb249cae69c", "fields": {"departement": "75", "stop_lat": 48.84106444132994, "code_postal": "75112", "stop_lon": 2.37832060509252, "coord": [48.84106444132994, 2.37832060509252], "stop_id": 4035986, "stop_desc": "124 RUE DE BERCY - 75112", "stop_name": "MINISTERE DE L'ECONOMIE ET DES FINANCES"}, "geometry": {"type": "Point", "coordinates": [2.37832060509252, 48.84106444132994]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c81f4c6eba2333715bbe25a3ab4c5def6d4ffba6", "fields": {"departement": "75", "stop_lat": 48.84369043264488, "code_postal": "75112", "stop_lon": 2.373284500119991, "coord": [48.84369043264488, 2.373284500119991], "stop_id": 4035989, "stop_desc": "179 RUE DE BERCY - 75112", "stop_name": "GARE DE LYON"}, "geometry": {"type": "Point", "coordinates": [2.373284500119991, 48.84369043264488]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "457b820943e0745d3aadd045d36a8051ba727b3b", "fields": {"departement": "75", "stop_lat": 48.845677278703754, "code_postal": "75112", "stop_lon": 2.3712296777810264, "coord": [48.845677278703754, 2.3712296777810264], "stop_id": 4035991, "stop_desc": "15-17 BOULEVARD DIDEROT - 75112", "stop_name": "GARE DE LYON - DIDEROT"}, "geometry": {"type": "Point", "coordinates": [2.3712296777810264, 48.845677278703754]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "168518e4aafe4a2e2749b637ad66c819c4cb717b", "fields": {"departement": "94", "stop_lat": 48.817747748459695, "code_postal": "94018", "stop_lon": 2.418655538596147, "coord": [48.817747748459695, 2.418655538596147], "stop_id": 4035995, "stop_desc": "FACE 5 QUAI DES CARRIERES - 94018", "stop_name": "PONT DE CHARENTON"}, "geometry": {"type": "Point", "coordinates": [2.418655538596147, 48.817747748459695]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cde153680ff5118bf44deb1fa96f13ca9d69313b", "fields": {"departement": "94", "stop_lat": 48.80723447731543, "code_postal": "94068", "stop_lon": 2.4746869575894057, "coord": [48.80723447731543, 2.4746869575894057], "stop_id": 4035998, "stop_desc": "28 RUE DE LA VARENNE - 94068", "stop_name": "LIBERATION - RABELAIS"}, "geometry": {"type": "Point", "coordinates": [2.4746869575894057, 48.80723447731543]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dd58e58fe6a8753114ae1997d4f053b65c6767d2", "fields": {"departement": "94", "stop_lat": 48.81918790413278, "code_postal": "94017", "stop_lon": 2.482503703425562, "coord": [48.81918790413278, 2.482503703425562], "stop_id": 4036000, "stop_desc": "AVENUE CHARLES FLOQUET - 94017", "stop_name": "42E DE LIGNE"}, "geometry": {"type": "Point", "coordinates": [2.482503703425562, 48.81918790413278]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a8e85c3b42212a0ed0a29dc8c3783a93eb8560fa", "fields": {"departement": "94", "stop_lat": 48.81114673079737, "code_postal": "94017", "stop_lon": 2.5364241396969507, "coord": [48.81114673079737, 2.5364241396969507], "stop_id": 4036170, "stop_desc": "FACE 22 AV DU 11 NOVEMBRE 1918 - 94017", "stop_name": "11 NOVEMBRE 1918"}, "geometry": {"type": "Point", "coordinates": [2.5364241396969507, 48.81114673079737]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ab4035f7d8a614d8bb22f44c6a6d1a3300c13a75", "fields": {"departement": "94", "stop_lat": 48.8140197332999, "code_postal": "94017", "stop_lon": 2.5096118909357625, "coord": [48.8140197332999, 2.5096118909357625], "stop_id": 4036178, "stop_desc": "85 AVENUE JEAN JAURES - 94017", "stop_name": "MAIRIE - MARCHE"}, "geometry": {"type": "Point", "coordinates": [2.5096118909357625, 48.8140197332999]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "641987049eb021a265d0879132d4b4d2b8082874", "fields": {"departement": "94", "stop_lat": 48.81505742534415, "code_postal": "94017", "stop_lon": 2.506757397808122, "coord": [48.81505742534415, 2.506757397808122], "stop_id": 4036179, "stop_desc": "43 RUE JEAN JAURES - 94017", "stop_name": "GUITTARD"}, "geometry": {"type": "Point", "coordinates": [2.506757397808122, 48.81505742534415]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fe9ad01eb21efa1e0298075f6c0fd2b03de8615e", "fields": {"departement": "94", "stop_lat": 48.82058083975143, "code_postal": "94042", "stop_lon": 2.467086713379475, "coord": [48.82058083975143, 2.467086713379475], "stop_id": 4036186, "stop_desc": "2 RUE CHAPSAL - 94042", "stop_name": "CARREFOUR DE LA RESISTANCE"}, "geometry": {"type": "Point", "coordinates": [2.467086713379475, 48.82058083975143]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9679272c9e085a31cf94bf628f48db30c9c18e05", "fields": {"departement": "75", "stop_lat": 48.84248422077351, "code_postal": "75112", "stop_lon": 2.4488274563768555, "coord": [48.84248422077351, 2.4488274563768555], "stop_id": 4036190, "stop_desc": "AV DE NOGENT - 75112", "stop_name": "TREMBLAY - PEPINIERE"}, "geometry": {"type": "Point", "coordinates": [2.4488274563768555, 48.84248422077351]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f76ba8ca8cec6cbcb60986eff5f83fa7c6dfdf17", "fields": {"departement": "94", "stop_lat": 48.845692921910626, "code_postal": "94080", "stop_lon": 2.42742804346871, "coord": [48.845692921910626, 2.42742804346871], "stop_id": 4036194, "stop_desc": "98 AVENUE DE PARIS - 94080", "stop_name": "BERAULT-METRO"}, "geometry": {"type": "Point", "coordinates": [2.42742804346871, 48.845692921910626]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2a164466d58660c0f23d54835c726909b14963fa", "fields": {"departement": "94", "stop_lat": 48.84546314968602, "code_postal": "94067", "stop_lon": 2.4221169418809496, "coord": [48.84546314968602, 2.4221169418809496], "stop_id": 4036195, "stop_desc": "19-21 AVENUE GAMBETTA - 94067", "stop_name": "AUBERT"}, "geometry": {"type": "Point", "coordinates": [2.4221169418809496, 48.84546314968602]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3cb2edfbc6062ae563455aae7d4b84fad6b12912", "fields": {"departement": "75", "stop_lat": 48.84563186778721, "code_postal": "75112", "stop_lon": 2.3728500974777273, "coord": [48.84563186778721, 2.3728500974777273], "stop_id": 4036207, "stop_desc": "FACE 21 BOULEVARD DIDEROT - 75112", "stop_name": "GARE DE LYON - DIDEROT"}, "geometry": {"type": "Point", "coordinates": [2.3728500974777273, 48.84563186778721]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1d7d9be46fa0c3a6fa69ba702248911ee1dd5d30", "fields": {"departement": "75", "stop_lat": 48.84446078820971, "code_postal": "75112", "stop_lon": 2.380964975355521, "coord": [48.84446078820971, 2.380964975355521], "stop_id": 4036208, "stop_desc": "70 BIS AVENUE DAUMESNIL - 75112", "stop_name": "RAMBOUILLET"}, "geometry": {"type": "Point", "coordinates": [2.380964975355521, 48.84446078820971]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d69d164eb23935be7a74cba2b3653c76d2bb663b", "fields": {"departement": "75", "stop_lat": 48.84176234919543, "code_postal": "75112", "stop_lon": 2.3865453468544944, "coord": [48.84176234919543, 2.3865453468544944], "stop_id": 4036209, "stop_desc": "130 AVENUE DAUMESNIL - 75112", "stop_name": "MAIRIE DU 12E"}, "geometry": {"type": "Point", "coordinates": [2.3865453468544944, 48.84176234919543]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0b12b171a55dc841f84436fd29557dcd03495c3e", "fields": {"departement": "94", "stop_lat": 48.84379373728525, "code_postal": "94067", "stop_lon": 2.4188734254091577, "coord": [48.84379373728525, 2.4188734254091577], "stop_id": 4036215, "stop_desc": "FACE 1 AVENUE GAMBETTA - 94067", "stop_name": "MAIRIE DE SAINT-MANDE"}, "geometry": {"type": "Point", "coordinates": [2.4188734254091577, 48.84379373728525]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e075aca76b0780f3d315783c92fa707ef18f424e", "fields": {"departement": "94", "stop_lat": 48.84580335074176, "code_postal": "94067", "stop_lon": 2.423955830416074, "coord": [48.84580335074176, 2.423955830416074], "stop_id": 4036216, "stop_desc": "67 AVENUE DE PARIS - 94067", "stop_name": "AUBERT"}, "geometry": {"type": "Point", "coordinates": [2.423955830416074, 48.84580335074176]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1b91e4dc09d396e8169daf7f6de3d853f98efeb7", "fields": {"departement": "75", "stop_lat": 48.838778695962546, "code_postal": "75112", "stop_lon": 2.4606240718932018, "coord": [48.838778695962546, 2.4606240718932018], "stop_id": 4036222, "stop_desc": "AV DE NOGENT - 75112", "stop_name": "PORTE JAUNE"}, "geometry": {"type": "Point", "coordinates": [2.4606240718932018, 48.838778695962546]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ca0081b7bc8e6d3094fd3226e7e14dac0ae25b8e", "fields": {"departement": "94", "stop_lat": 48.82004983707806, "code_postal": "94042", "stop_lon": 2.467752300935123, "coord": [48.82004983707806, 2.467752300935123], "stop_id": 4036225, "stop_desc": "PONT DE JOINVILLE - 94042", "stop_name": "CARREFOUR DE LA RESISTANCE"}, "geometry": {"type": "Point", "coordinates": [2.467752300935123, 48.82004983707806]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "58a9b7eb109962bab98841a974ac5078173567c8", "fields": {"departement": "94", "stop_lat": 48.819710075886654, "code_postal": "94042", "stop_lon": 2.4741755742329605, "coord": [48.819710075886654, 2.4741755742329605], "stop_id": 4036226, "stop_desc": "12 PLACE DE VERDUN - 94042", "stop_name": "VERDUN"}, "geometry": {"type": "Point", "coordinates": [2.4741755742329605, 48.819710075886654]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "44d54cc1eb1aa06c25843a9e20f78d86edf09178", "fields": {"departement": "94", "stop_lat": 48.81995626912527, "code_postal": "94042", "stop_lon": 2.478844627264899, "coord": [48.81995626912527, 2.478844627264899], "stop_id": 4036227, "stop_desc": "44 AVENUE DU GENERAL GALLIENI - 94042", "stop_name": "LES PLATANES"}, "geometry": {"type": "Point", "coordinates": [2.478844627264899, 48.81995626912527]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3db21087d9d8cd6baf1465daff5e3fac63813b6d", "fields": {"departement": "94", "stop_lat": 48.81387624492796, "code_postal": "94017", "stop_lon": 2.50939367172205, "coord": [48.81387624492796, 2.50939367172205], "stop_id": 4036233, "stop_desc": "FACE 85 AVENUE JEAN JAURES - 94017", "stop_name": "MAIRIE - MARCHE"}, "geometry": {"type": "Point", "coordinates": [2.50939367172205, 48.81387624492796]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "238a6cd4a4e8b8a46df7623ffddc65264568cd17", "fields": {"departement": "94", "stop_lat": 48.81226731242885, "code_postal": "94017", "stop_lon": 2.515580204948953, "coord": [48.81226731242885, 2.515580204948953], "stop_id": 4036235, "stop_desc": "FACE 1 RUE MARX DORMOY - 94017", "stop_name": "RUE DU MONUMENT"}, "geometry": {"type": "Point", "coordinates": [2.515580204948953, 48.81226731242885]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6900cda166a7a70cbd4a038a1f6db076caa350ce", "fields": {"departement": "94", "stop_lat": 48.823395811335416, "code_postal": "94079", "stop_lon": 2.542432954768838, "coord": [48.823395811335416, 2.542432954768838], "stop_id": 4036243, "stop_desc": "PL PIERRE SEMARD - 94079", "stop_name": "VILLIERS-SUR-MARNE - LE PLESSIS-TREVISE RER"}, "geometry": {"type": "Point", "coordinates": [2.542432954768838, 48.823395811335416]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7bf06dbe81e5a1c91a47ee2540d6205d964e769a", "fields": {"departement": "93", "stop_lat": 48.87656249635237, "code_postal": "93032", "stop_lon": 2.549524191017157, "coord": [48.87656249635237, 2.549524191017157], "stop_id": 4036250, "stop_desc": "9 AVENUE PAUL VAILLANT COUTURIER - 93032", "stop_name": "LA MARE"}, "geometry": {"type": "Point", "coordinates": [2.549524191017157, 48.87656249635237]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bc8dbe20bb4bc897f981eac049010fe7182ce127", "fields": {"departement": "93", "stop_lat": 48.879182440223886, "code_postal": "93032", "stop_lon": 2.5469050848368124, "coord": [48.879182440223886, 2.5469050848368124], "stop_id": 4036251, "stop_desc": "RUE JULES GUESDE - 93032", "stop_name": "MONTGUICHET-ARENA"}, "geometry": {"type": "Point", "coordinates": [2.5469050848368124, 48.879182440223886]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ba49ef5c82a1bbca77b4965190b43fa2813bcf9e", "fields": {"departement": "93", "stop_lat": 48.88407582329434, "code_postal": "93077", "stop_lon": 2.510676096876497, "coord": [48.88407582329434, 2.510676096876497], "stop_id": 4036258, "stop_desc": "PLACE EMILE DUCATE - 93077", "stop_name": "CHATEAU DE VILLEMOMBLE"}, "geometry": {"type": "Point", "coordinates": [2.510676096876497, 48.88407582329434]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "95bb74b3b30faf9a40686ee304989d6eba0e2958", "fields": {"departement": "93", "stop_lat": 48.88634143318657, "code_postal": "93064", "stop_lon": 2.475700748332326, "coord": [48.88634143318657, 2.475700748332326], "stop_id": 4036265, "stop_desc": "AVENUE DE GAGNY - 93064", "stop_name": "ROSNY 2 NORD"}, "geometry": {"type": "Point", "coordinates": [2.475700748332326, 48.88634143318657]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "525816e207f32f40ba742760f45a1e52d5bb94a6", "fields": {"departement": "93", "stop_lat": 48.887204747437394, "code_postal": "93053", "stop_lon": 2.467239965354698, "coord": [48.887204747437394, 2.467239965354698], "stop_id": 4036267, "stop_desc": "189 RUE DE BREMENT - 93053", "stop_name": "BREMENT"}, "geometry": {"type": "Point", "coordinates": [2.467239965354698, 48.887204747437394]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2ec058fd8547038f1a86fd178065f26581319427", "fields": {"departement": "93", "stop_lat": 48.885834489371526, "code_postal": "93053", "stop_lon": 2.4443554563596304, "coord": [48.885834489371526, 2.4443554563596304], "stop_id": 4036273, "stop_desc": "FACE 121 RUE ANATOLE FRANCE - 93053", "stop_name": "RUE DU PARC"}, "geometry": {"type": "Point", "coordinates": [2.4443554563596304, 48.885834489371526]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fcb2f0247079b39b19da802e549a8ca53e6c23a4", "fields": {"departement": "93", "stop_lat": 48.88281796156739, "code_postal": "93063", "stop_lon": 2.4407516953930397, "coord": [48.88281796156739, 2.4407516953930397], "stop_id": 4036274, "stop_desc": "10 BOULEVARD HENRI BARBUSSE - 93063", "stop_name": "CARNOT"}, "geometry": {"type": "Point", "coordinates": [2.4407516953930397, 48.88281796156739]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ae6392abb827e67f5d552c4d473b5e58f3180ef9", "fields": {"departement": "75", "stop_lat": 48.87711809537049, "code_postal": "75120", "stop_lon": 2.4061587988157935, "coord": [48.87711809537049, 2.4061587988157935], "stop_id": 4036283, "stop_desc": "349 RUE DE BELLEVILLE - 75120", "stop_name": "PORTE DES LILAS-METRO"}, "geometry": {"type": "Point", "coordinates": [2.4061587988157935, 48.87711809537049]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "539005c6c236fd07a33faa995b34e557c48690f7", "fields": {"departement": "75", "stop_lat": 48.8597465272257, "code_postal": "75104", "stop_lon": 2.35249649876749, "coord": [48.8597465272257, 2.35249649876749], "stop_id": 4036294, "stop_desc": "FACE 22 RUE DU RENARD - 75104", "stop_name": "CENTRE GEORGES POMPIDOU"}, "geometry": {"type": "Point", "coordinates": [2.35249649876749, 48.8597465272257]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0557a6a647149fdf37591567fad18234de6764a6", "fields": {"departement": "75", "stop_lat": 48.863997699201235, "code_postal": "75103", "stop_lon": 2.351407984903802, "coord": [48.863997699201235, 2.351407984903802], "stop_id": 4036298, "stop_desc": "66 BOULEVARD DE SEBASTOPOL - 75103", "stop_name": "TURBIGO - ETIENNE MARCEL"}, "geometry": {"type": "Point", "coordinates": [2.351407984903802, 48.863997699201235]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c163ac481526844953c0a0f19b3d515d326fcd15", "fields": {"departement": "75", "stop_lat": 48.86886163360014, "code_postal": "75120", "stop_lon": 2.381067285501073, "coord": [48.86886163360014, 2.381067285501073], "stop_id": 4036307, "stop_desc": "48 BOULEVARD DE BELLEVILLE - 75120", "stop_name": "COURONNES"}, "geometry": {"type": "Point", "coordinates": [2.381067285501073, 48.86886163360014]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7fe6234c982ad11fa76b01f058bf8725c8fc103e", "fields": {"departement": "93", "stop_lat": 48.88258950570033, "code_postal": "93063", "stop_lon": 2.434564608323154, "coord": [48.88258950570033, 2.434564608323154], "stop_id": 4036319, "stop_desc": "51 AVENUE DE VERDUN - 93063", "stop_name": "PLACE DU 19 MARS 1962"}, "geometry": {"type": "Point", "coordinates": [2.434564608323154, 48.88258950570033]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6e0242629f3f372148420c2a2bd961551f690ea0", "fields": {"departement": "93", "stop_lat": 48.88501464517659, "code_postal": "93064", "stop_lon": 2.4804941157949116, "coord": [48.88501464517659, 2.4804941157949116], "stop_id": 4036327, "stop_desc": "BOULEVARD D'ALSACE LORRAINE - 93064", "stop_name": "CHEMIN DE BONDY"}, "geometry": {"type": "Point", "coordinates": [2.4804941157949116, 48.88501464517659]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "88e2abf9f3ddbe85b8f7e7249cbdb58c71bdf607", "fields": {"departement": "93", "stop_lat": 48.884699099389856, "code_postal": "93077", "stop_lon": 2.502120102414242, "coord": [48.884699099389856, 2.502120102414242], "stop_id": 4036331, "stop_desc": "65-67 AV DE ROSNY - 93077", "stop_name": "MEISSONIER"}, "geometry": {"type": "Point", "coordinates": [2.502120102414242, 48.884699099389856]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "31f5beba2d3abf53cd20a3b82f538eb15862662a", "fields": {"departement": "93", "stop_lat": 48.882703747741374, "code_postal": "93077", "stop_lon": 2.514759604548513, "coord": [48.882703747741374, 2.514759604548513], "stop_id": 4036334, "stop_desc": "FACE 73 RUE GRANDE RUE - 93077", "stop_name": "RUE DE NEUILLY"}, "geometry": {"type": "Point", "coordinates": [2.514759604548513, 48.882703747741374]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8ca77366e79ce49e951ff42877e3acf36808d189", "fields": {"departement": "93", "stop_lat": 48.86937996713038, "code_postal": "93050", "stop_lon": 2.5554073894083706, "coord": [48.86937996713038, 2.5554073894083706], "stop_id": 4036343, "stop_desc": "128 AVENUE PAUL VAILLANT COUTURIER - 93050", "stop_name": "RUE DE LA POINTE"}, "geometry": {"type": "Point", "coordinates": [2.5554073894083706, 48.86937996713038]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e3872d5eb2e013806c330b0ba661154556dea334", "fields": {"departement": "77", "stop_lat": 48.87067862014969, "code_postal": "77108", "stop_lon": 2.576488959824313, "coord": [48.87067862014969, 2.576488959824313], "stop_id": 4036346, "stop_desc": "49 AVENUE DU MARECHAL FOCH - 77108", "stop_name": "AVENUE DES MARTYRS"}, "geometry": {"type": "Point", "coordinates": [2.576488959824313, 48.87067862014969]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3948481968f122d3cbb756b59855775c56626866", "fields": {"departement": "93", "stop_lat": 48.85856427056822, "code_postal": "93048", "stop_lon": 2.4370802062081176, "coord": [48.85856427056822, 2.4370802062081176], "stop_id": 4036619, "stop_desc": "62 BOULEVARD ROUGET DE LISLE - 93048", "stop_name": "CROIX DE CHAVAUX - ROUGET DE LISLE"}, "geometry": {"type": "Point", "coordinates": [2.4370802062081176, 48.85856427056822]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d6591eb042a317b512a09f75252997c7342485fd", "fields": {"departement": "75", "stop_lat": 48.86478889391968, "code_postal": "75120", "stop_lon": 2.403663165101848, "coord": [48.86478889391968, 2.403663165101848], "stop_id": 4036626, "stop_desc": "3 RUE BELGRAND - 75120", "stop_name": "PELLEPORT"}, "geometry": {"type": "Point", "coordinates": [2.403663165101848, 48.86478889391968]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "94fd34ff935ea00c8b1a59a4da0bfb387f9fea6b", "fields": {"departement": "75", "stop_lat": 48.86491653801377, "code_postal": "75120", "stop_lon": 2.4003122453315737, "coord": [48.86491653801377, 2.4003122453315737], "stop_id": 4036627, "stop_desc": "FACE 14 RUE BELGRAND - 75120", "stop_name": "HOPITAL TENON"}, "geometry": {"type": "Point", "coordinates": [2.4003122453315737, 48.86491653801377]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bc4548a76725e400ef229e05256e5edb9a249d72", "fields": {"departement": "75", "stop_lat": 48.84885840881177, "code_postal": "75112", "stop_lon": 2.372756985185623, "coord": [48.84885840881177, 2.372756985185623], "stop_id": 4036639, "stop_desc": "59 AVENUE LEDRU ROLLIN - 75112", "stop_name": "DAUMESNIL - LEDRU ROLLIN"}, "geometry": {"type": "Point", "coordinates": [2.372756985185623, 48.84885840881177]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3b24b5d5f063515c32e767d9a51426910cfedd65", "fields": {"departement": "75", "stop_lat": 48.85988210624847, "code_postal": "75101", "stop_lon": 2.344283098140992, "coord": [48.85988210624847, 2.344283098140992], "stop_id": 4036649, "stop_desc": "128 RUE DE RIVOLI - 75101", "stop_name": "RIVOLI - PONT NEUF"}, "geometry": {"type": "Point", "coordinates": [2.344283098140992, 48.85988210624847]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ea77cc09d96d8a7168232de20a639cdff882fd6d", "fields": {"departement": "75", "stop_lat": 48.87351575263024, "code_postal": "75109", "stop_lon": 2.327676627244145, "coord": [48.87351575263024, 2.327676627244145], "stop_id": 4036659, "stop_desc": "16-18 RUE AUBER - 75109", "stop_name": "HAVRE - HAUSSMANN"}, "geometry": {"type": "Point", "coordinates": [2.327676627244145, 48.87351575263024]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7246782fb0a7340e520b14009d6f86b5d3fc971b", "fields": {"departement": "92", "stop_lat": 48.89317963178215, "code_postal": "92044", "stop_lon": 2.289496162966111, "coord": [48.89317963178215, 2.289496162966111], "stop_id": 4036667, "stop_desc": "66 RUE DU PRESIDENT WILSON - 92044", "stop_name": "MAIRIE DE LEVALLOIS"}, "geometry": {"type": "Point", "coordinates": [2.289496162966111, 48.89317963178215]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "665db3d899c98874e5924fabb0076c6cb97ccab6", "fields": {"departement": "92", "stop_lat": 48.90259408337223, "code_postal": "92024", "stop_lon": 2.3039921380474033, "coord": [48.90259408337223, 2.3039921380474033], "stop_id": 4036727, "stop_desc": "89 BOULEVARD JEAN JAURES - 92024", "stop_name": "MAIRIE DE CLICHY-METRO"}, "geometry": {"type": "Point", "coordinates": [2.3039921380474033, 48.90259408337223]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "de3cbf2fc458620b2d2a9c6dd1f68e4869e954e1", "fields": {"departement": "92", "stop_lat": 48.90329564012262, "code_postal": "92024", "stop_lon": 2.306077441180394, "coord": [48.90329564012262, 2.306077441180394], "stop_id": 4036728, "stop_desc": "88 RUE MARTRE - 92024", "stop_name": "MAIRIE DE CLICHY-METRO"}, "geometry": {"type": "Point", "coordinates": [2.306077441180394, 48.90329564012262]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2b84494ccb9ccc53c05c68e54194bb8d38affb69", "fields": {"departement": "75", "stop_lat": 48.89295368222563, "code_postal": "75117", "stop_lon": 2.316251384985718, "coord": [48.89295368222563, 2.316251384985718], "stop_id": 4036733, "stop_desc": "182 AVENUE DE CLICHY - 75117", "stop_name": "BOULAY"}, "geometry": {"type": "Point", "coordinates": [2.316251384985718, 48.89295368222563]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8d61fd78a26cee5157f6634a8d8373d22053771d", "fields": {"departement": "75", "stop_lat": 48.88941360841949, "code_postal": "75117", "stop_lon": 2.322004140832718, "coord": [48.88941360841949, 2.322004140832718], "stop_id": 4036736, "stop_desc": "103 AVENUE DE CLICHY - 75117", "stop_name": "LEGENDRE"}, "geometry": {"type": "Point", "coordinates": [2.322004140832718, 48.88941360841949]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5e10f703ca740dae3fff87904cff9afbcbda6f81", "fields": {"departement": "75", "stop_lat": 48.88783222281554, "code_postal": "75117", "stop_lon": 2.325152745158805, "coord": [48.88783222281554, 2.325152745158805], "stop_id": 4036739, "stop_desc": "70 AVENUE DE CLICHY - 75117", "stop_name": "LA FOURCHE"}, "geometry": {"type": "Point", "coordinates": [2.325152745158805, 48.88783222281554]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f09cbd083fc7451e8332e3e818be48c95d818bca", "fields": {"departement": "75", "stop_lat": 48.88284442780483, "code_postal": "75108", "stop_lon": 2.326325831178574, "coord": [48.88284442780483, 2.326325831178574], "stop_id": 4036741, "stop_desc": "43-45 RUE DE SAINT PETERSBOURG - 75108", "stop_name": "PLACE DE CLICHY"}, "geometry": {"type": "Point", "coordinates": [2.326325831178574, 48.88284442780483]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d1bc00d45ee73bd7d36900aff4d1246e28dcf0a0", "fields": {"departement": "75", "stop_lat": 48.87829652117301, "code_postal": "75108", "stop_lon": 2.322974842811343, "coord": [48.87829652117301, 2.322974842811343], "stop_id": 4036746, "stop_desc": "24 RUE DE VIENNE - 75108", "stop_name": "EUROPE"}, "geometry": {"type": "Point", "coordinates": [2.322974842811343, 48.87829652117301]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "48d8fbdb68237d8b3c4f23df97fb3eb2b4789ec0", "fields": {"departement": "75", "stop_lat": 48.875007327021954, "code_postal": "75108", "stop_lon": 2.324310992446456, "coord": [48.875007327021954, 2.324310992446456], "stop_id": 4036749, "stop_desc": "119-121 RUE SAINT-LAZARE - 75108", "stop_name": "GARE SAINT-LAZARE."}, "geometry": {"type": "Point", "coordinates": [2.324310992446456, 48.875007327021954]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "96aab19861afc0a80e054147d3847fe974afe035", "fields": {"departement": "75", "stop_lat": 48.861203399239315, "code_postal": "75101", "stop_lon": 2.3411231334321685, "coord": [48.861203399239315, 2.3411231334321685], "stop_id": 4036765, "stop_desc": "16 RUE DU LOUVRE - 75101", "stop_name": "LOUVRE - RIVOLI"}, "geometry": {"type": "Point", "coordinates": [2.3411231334321685, 48.861203399239315]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0870c4cdbda4d2d1e44b8573613332ca1aa9c14c", "fields": {"departement": "75", "stop_lat": 48.85790459227585, "code_postal": "75104", "stop_lon": 2.3480556928647136, "coord": [48.85790459227585, 2.3480556928647136], "stop_id": 4036768, "stop_desc": "FACE 1 BOULEVARD DE SEBASTOPOL - 75104", "stop_name": "CHATELET"}, "geometry": {"type": "Point", "coordinates": [2.3480556928647136, 48.85790459227585]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "22451d6a90aaa583a71ff1f280db0333f78d240c", "fields": {"departement": "75", "stop_lat": 48.846894585583044, "code_postal": "75105", "stop_lon": 2.351512258385521, "coord": [48.846894585583044, 2.351512258385521], "stop_id": 4036776, "stop_desc": "27 RUE MONGE - 75105", "stop_name": "CARDINAL LEMOINE"}, "geometry": {"type": "Point", "coordinates": [2.351512258385521, 48.846894585583044]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6056693c1810ac8fec537d54916f0dd42eedbdd6", "fields": {"departement": "75", "stop_lat": 48.83891375330678, "code_postal": "75105", "stop_lon": 2.350679522020371, "coord": [48.83891375330678, 2.350679522020371], "stop_id": 4036781, "stop_desc": "118 RUE MONGE - 75105", "stop_name": "MONGE - CLAUDE BERNARD"}, "geometry": {"type": "Point", "coordinates": [2.350679522020371, 48.83891375330678]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d7d4b14d0382d31db25303eb307c2396c97c2dc5", "fields": {"departement": "75", "stop_lat": 48.83895865695941, "code_postal": "75105", "stop_lon": 2.35097907397105, "coord": [48.83895865695941, 2.35097907397105], "stop_id": 4036782, "stop_desc": "119-119BIS RUE MONGE - 75105", "stop_name": "MONGE - CLAUDE BERNARD"}, "geometry": {"type": "Point", "coordinates": [2.35097907397105, 48.83895865695941]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "851b2f6b4b2fe6c87b4b7d08b42ce3cf57667ba9", "fields": {"departement": "75", "stop_lat": 48.8363880998256, "code_postal": "75113", "stop_lon": 2.351917814788917, "coord": [48.8363880998256, 2.351917814788917], "stop_id": 4036783, "stop_desc": "26 AVENUE DES GOBELINS - 75113", "stop_name": "LES GOBELINS"}, "geometry": {"type": "Point", "coordinates": [2.351917814788917, 48.8363880998256]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "958101afc4e1631d32e74f1b73b35efeec6d2cc8", "fields": {"departement": "75", "stop_lat": 48.8314984744011, "code_postal": "75113", "stop_lon": 2.3546799758762553, "coord": [48.8314984744011, 2.3546799758762553], "stop_id": 4036786, "stop_desc": "10 PLACE D'ITALIE - 75113", "stop_name": "PLACE D'ITALIE"}, "geometry": {"type": "Point", "coordinates": [2.3546799758762553, 48.8314984744011]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8b0edd33552a70c68a903863a750d756bbbcfe7f", "fields": {"departement": "75", "stop_lat": 48.82247424034754, "code_postal": "75113", "stop_lon": 2.3585833443279376, "coord": [48.82247424034754, 2.3585833443279376], "stop_id": 4036793, "stop_desc": "109 AVENUE D'ITALIE - 75113", "stop_name": "MAISON BLANCHE"}, "geometry": {"type": "Point", "coordinates": [2.3585833443279376, 48.82247424034754]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3b58697cf8ebba45529e9e5e6cc7bc0ee31da5c5", "fields": {"departement": "94", "stop_lat": 48.81047498025869, "code_postal": "94043", "stop_lon": 2.361939589627888, "coord": [48.81047498025869, 2.361939589627888], "stop_id": 4036802, "stop_desc": "94-96 AVENUE DE FONTAINEBLEAU - 94043", "stop_name": "LE KREMLIN-BICETRE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.361939589627888, 48.81047498025869]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a29ccb42a4d2ca24796cb83de2b75c5b3b56f169", "fields": {"departement": "94", "stop_lat": 48.79822371158427, "code_postal": "94076", "stop_lon": 2.3658791536218233, "coord": [48.79822371158427, 2.3658791536218233], "stop_id": 4036808, "stop_desc": "128 AVENUE DE PARIS - 94076", "stop_name": "DISPENSAIRE DANIELLE CASANOVA"}, "geometry": {"type": "Point", "coordinates": [2.3658791536218233, 48.79822371158427]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "21773fccc6584ae836423e50de13462a7eeb404f", "fields": {"departement": "94", "stop_lat": 48.79238074838206, "code_postal": "94076", "stop_lon": 2.3691951277195096, "coord": [48.79238074838206, 2.3691951277195096], "stop_id": 4036813, "stop_desc": "114 BOULEVARD MAXIME GORKI - 94076", "stop_name": "GUYNEMER - MAXIME GORKI"}, "geometry": {"type": "Point", "coordinates": [2.3691951277195096, 48.79238074838206]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6c49b878e66d71402af982d80af54379fc9e62f3", "fields": {"departement": "94", "stop_lat": 48.7939895585951, "code_postal": "94076", "stop_lon": 2.369277739405965, "coord": [48.7939895585951, 2.369277739405965], "stop_id": 4036814, "stop_desc": "97 BOULEVARD MAXIME GORKI - 94076", "stop_name": "GUYNEMER - MAXIME GORKI"}, "geometry": {"type": "Point", "coordinates": [2.369277739405965, 48.7939895585951]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9357af7f9b29dfb3c1d4997ae64f0efbe682db39", "fields": {"departement": "94", "stop_lat": 48.84794885081316, "code_postal": "94033", "stop_lon": 2.4892433667389224, "coord": [48.84794885081316, 2.4892433667389224], "stop_id": 4557300, "stop_desc": "85 AVENUE DE NEUILLY - 94033", "stop_name": "LYCEE LOUIS ARMAND"}, "geometry": {"type": "Point", "coordinates": [2.4892433667389224, 48.84794885081316]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3468bc0eb87bed3be228bb1ecc7b2d8586435751", "fields": {"departement": "94", "stop_lat": 48.85009930664015, "code_postal": "94058", "stop_lon": 2.494288483355709, "coord": [48.85009930664015, 2.494288483355709], "stop_id": 4557301, "stop_desc": "19 BOULEVARD RAYMOND POINCARE - 94058", "stop_name": "RAYMOND POINCARE"}, "geometry": {"type": "Point", "coordinates": [2.494288483355709, 48.85009930664015]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3dc2fe666645dafcddbb51e7b466949e70b4c178", "fields": {"departement": "94", "stop_lat": 48.848450867931355, "code_postal": "94058", "stop_lon": 2.4970887986683175, "coord": [48.848450867931355, 2.4970887986683175], "stop_id": 4557303, "stop_desc": "226 AV DU GENERAL DE GAULLE - 94058", "stop_name": "ROND-POINT DU GENERAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.4970887986683175, 48.848450867931355]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a9e13629eaf70d5c0a0cc6f138a22c81c30c9df6", "fields": {"departement": "94", "stop_lat": 48.822385434972794, "code_postal": "94017", "stop_lon": 2.4981110273134495, "coord": [48.822385434972794, 2.4981110273134495], "stop_id": 4557319, "stop_desc": "164-166 BD DE STALINGRAD - 94017", "stop_name": "ARISTIDE BRIAND"}, "geometry": {"type": "Point", "coordinates": [2.4981110273134495, 48.822385434972794]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c90d81423e2f1c42ecc35b37eb81bf9224c801cc", "fields": {"departement": "94", "stop_lat": 48.81659565308598, "code_postal": "94017", "stop_lon": 2.512056569515946, "coord": [48.81659565308598, 2.512056569515946], "stop_id": 4557330, "stop_desc": "12 AVENUE DE LA REPUBLIQUE - 94017", "stop_name": "REPUBLIQUE - STALINGRAD"}, "geometry": {"type": "Point", "coordinates": [2.512056569515946, 48.81659565308598]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0649ea79a5e8652e9f49702b4b5a73a57de01bfb", "fields": {"departement": "94", "stop_lat": 48.82961792713526, "code_postal": "94017", "stop_lon": 2.493300815393294, "coord": [48.82961792713526, 2.493300815393294], "stop_id": 4557337, "stop_desc": "264 BOULEVARD DE STALINGRAD - 94017", "stop_name": "PIERRE BROSSOLETTE"}, "geometry": {"type": "Point", "coordinates": [2.493300815393294, 48.82961792713526]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "96123dd7746db0e8d04e62d2157fb260c8e32039", "fields": {"departement": "93", "stop_lat": 48.86449006987001, "code_postal": "93049", "stop_lon": 2.4996038544628996, "coord": [48.86449006987001, 2.4996038544628996], "stop_id": 4557343, "stop_desc": "6 RUE DES DEUX COMMUNES - 93049", "stop_name": "LES DEUX COMMUNES"}, "geometry": {"type": "Point", "coordinates": [2.4996038544628996, 48.86449006987001]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ef779196f489821497f06f47c655a8c099f5fc9c", "fields": {"departement": "92", "stop_lat": 48.90180625832521, "code_postal": "92024", "stop_lon": 2.3177200511128, "coord": [48.90180625832521, 2.3177200511128], "stop_id": 4574148, "stop_desc": "104 BOULEVARD VICTOR HUGO - 92024", "stop_name": "VICTOR HUGO - MOREL"}, "geometry": {"type": "Point", "coordinates": [2.3177200511128, 48.90180625832521]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "60ba06853b0028032c71eedc324e2f89deab2ada", "fields": {"departement": "93", "stop_lat": 48.90292094149015, "code_postal": "93070", "stop_lon": 2.3195327236531718, "coord": [48.90292094149015, 2.3195327236531718], "stop_id": 4574149, "stop_desc": "134 BD VICTOR HUGO - 93070", "stop_name": "VICTOR HUGO - SANZILLON"}, "geometry": {"type": "Point", "coordinates": [2.3195327236531718, 48.90292094149015]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b6a858433eb93221e19a9e18b8c848d9c3f42f41", "fields": {"departement": "93", "stop_lat": 48.90790964239018, "code_postal": "93070", "stop_lon": 2.326988590430061, "coord": [48.90790964239018, 2.326988590430061], "stop_id": 4574153, "stop_desc": "88 BOULEVARD VICTOR HUGO - 93070", "stop_name": "CAPITAINE GLARNER"}, "geometry": {"type": "Point", "coordinates": [2.326988590430061, 48.90790964239018]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b0f47711dd4f582e87aa254e64ea1f098554b8a1", "fields": {"departement": "93", "stop_lat": 48.91138799844956, "code_postal": "93070", "stop_lon": 2.333137062530594, "coord": [48.91138799844956, 2.333137062530594], "stop_id": 4574156, "stop_desc": "BOULEVARD VICTOR HUGO - 93070", "stop_name": "MAIRIE DE SAINT-OUEN - METRO"}, "geometry": {"type": "Point", "coordinates": [2.333137062530594, 48.91138799844956]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "67a4628aea7d98e68c45377c517fa3f11cf991f6", "fields": {"departement": "93", "stop_lat": 48.91523878870637, "code_postal": "93001", "stop_lon": 2.3707707858062474, "coord": [48.91523878870637, 2.3707707858062474], "stop_id": 4574177, "stop_desc": "FACE 36 RUE DU LANDY - 93001", "stop_name": "CANAL"}, "geometry": {"type": "Point", "coordinates": [2.3707707858062474, 48.91523878870637]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b4f51acbdd47082d138f4545a1bd808530c665e1", "fields": {"departement": "93", "stop_lat": 48.915102290338595, "code_postal": "93001", "stop_lon": 2.376333974574496, "coord": [48.915102290338595, 2.376333974574496], "stop_id": 4574179, "stop_desc": "52 R HEURTAULT - 93001", "stop_name": "HEURTAULT"}, "geometry": {"type": "Point", "coordinates": [2.376333974574496, 48.915102290338595]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "af26a582ba65d09b0d4b5d475992ce0919fa7926", "fields": {"departement": "93", "stop_lat": 48.91418375472208, "code_postal": "93001", "stop_lon": 2.381651025931646, "coord": [48.91418375472208, 2.381651025931646], "stop_id": 4574181, "stop_desc": "AVENUE DE LA REPUBLIQUE - 93001", "stop_name": "MAIRIE D'AUBERVILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.381651025931646, 48.91418375472208]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "04d04316ce82828aea9c96c38131f4607cc6afe6", "fields": {"departement": "93", "stop_lat": 48.91899845928509, "code_postal": "93001", "stop_lon": 2.387505215274578, "coord": [48.91899845928509, 2.387505215274578], "stop_id": 4574186, "stop_desc": "4 RUE DANIELLE CASANOVA - 93001", "stop_name": "HEMET"}, "geometry": {"type": "Point", "coordinates": [2.387505215274578, 48.91899845928509]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5016abfcb76fcbbc7ceaed751949b8d27d0260ba", "fields": {"departement": "93", "stop_lat": 48.91801600642956, "code_postal": "93001", "stop_lon": 2.39391330052154, "coord": [48.91801600642956, 2.39391330052154], "stop_id": 4574188, "stop_desc": "70-72 RUE DANIELLE CASANOVA - 93001", "stop_name": "DANIELLE CASANOVA - PONT BLANC"}, "geometry": {"type": "Point", "coordinates": [2.39391330052154, 48.91801600642956]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f690e43b5928f34d12b840c4732ea2e29d001779", "fields": {"departement": "93", "stop_lat": 48.916724295544824, "code_postal": "93055", "stop_lon": 2.4063751121186447, "coord": [48.916724295544824, 2.4063751121186447], "stop_id": 4574194, "stop_desc": "FACE 247 AVENUE JEAN JAURES - 93055", "stop_name": "HELENE COCHENNEC"}, "geometry": {"type": "Point", "coordinates": [2.4063751121186447, 48.916724295544824]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d7a8a340e94ca684bb6e605657f7e93acd53059a", "fields": {"departement": "93", "stop_lat": 48.92044241871065, "code_postal": "93027", "stop_lon": 2.410539326109545, "coord": [48.92044241871065, 2.410539326109545], "stop_id": 4574196, "stop_desc": "0 AVENUE PAUL VAILLANT COUTURIER - 93027", "stop_name": "LA COURNEUVE-8 MAI 1945"}, "geometry": {"type": "Point", "coordinates": [2.410539326109545, 48.92044241871065]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "798b3c0e03514468a5e6e650f359f5d054d64769", "fields": {"departement": "92", "stop_lat": 48.90052086402825, "code_postal": "92024", "stop_lon": 2.316316476221901, "coord": [48.90052086402825, 2.316316476221901], "stop_id": 4574204, "stop_desc": "BOULEVARD DU GENERAL LECLERC - 92024", "stop_name": "GENERAL LECLERC - VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.316316476221901, 48.90052086402825]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d5ed6915f1ebc73eb77ee62f476a71448b126870", "fields": {"departement": "94", "stop_lat": 48.83535159234615, "code_postal": "94052", "stop_lon": 2.471548399841407, "coord": [48.83535159234615, 2.471548399841407], "stop_id": 4614202, "stop_desc": "FACE AU 8 AVENUE DES MARRONNIERS - 94052", "stop_name": "NOGENT-SUR-MARNE RER"}, "geometry": {"type": "Point", "coordinates": [2.471548399841407, 48.83535159234615]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "67dfdfa16374041e5774443b6c5fda37e768bb9f", "fields": {"departement": "94", "stop_lat": 48.83521677872395, "code_postal": "94052", "stop_lon": 2.471548050909409, "coord": [48.83521677872395, 2.471548050909409], "stop_id": 4614203, "stop_desc": "FACE AU 8 AVENUE DES MARRONNIERS - 94052", "stop_name": "NOGENT-SUR-MARNE RER"}, "geometry": {"type": "Point", "coordinates": [2.471548050909409, 48.83521677872395]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "de4f065389198cf75d80ab93986f71aed4966452", "fields": {"departement": "94", "stop_lat": 48.83547370371285, "code_postal": "94052", "stop_lon": 2.474802599415442, "coord": [48.83547370371285, 2.474802599415442], "stop_id": 4614204, "stop_desc": "12 GR CHARLES DE GAULLE - 94052", "stop_name": "PLACE DU GENERAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.474802599415442, 48.83547370371285]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5ddbe33827f27256b61d547b42de7b2866f0de0f", "fields": {"departement": "94", "stop_lat": 48.837531691648586, "code_postal": "94052", "stop_lon": 2.482514211609343, "coord": [48.837531691648586, 2.482514211609343], "stop_id": 4614209, "stop_desc": "7 RUE DES HEROS NOGENTAIS - 94052", "stop_name": "SOUS-PREFECTURE - JULES FERRY"}, "geometry": {"type": "Point", "coordinates": [2.482514211609343, 48.837531691648586]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "57620c2bc997a03690d977f2b01cf31a2b926491", "fields": {"departement": "94", "stop_lat": 48.83529000746442, "code_postal": "94058", "stop_lon": 2.4993627275142702, "coord": [48.83529000746442, 2.4993627275142702], "stop_id": 4614217, "stop_desc": "55 AVENUE PIERRE BROSSOLETTE - 94058", "stop_name": "LES PARCLAIRS"}, "geometry": {"type": "Point", "coordinates": [2.4993627275142702, 48.83529000746442]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "475983e03f522d7711f50448c8e8dba25d424727", "fields": {"departement": "94", "stop_lat": 48.83501421652724, "code_postal": "94058", "stop_lon": 2.5038274101375193, "coord": [48.83501421652724, 2.5038274101375193], "stop_id": 4614219, "stop_desc": "103 AVENUE PIERRE BROSSOLETTE - 94058", "stop_name": "ALMA"}, "geometry": {"type": "Point", "coordinates": [2.5038274101375193, 48.83501421652724]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "989f0d527f150ee8ca8891b8db57251d661557b1", "fields": {"departement": "94", "stop_lat": 48.83442006808396, "code_postal": "94058", "stop_lon": 2.5107960297022602, "coord": [48.83442006808396, 2.5107960297022602], "stop_id": 4614220, "stop_desc": "186 AVENUE PIERRE BROSSOLETTE - 94058", "stop_name": "GUY MOQUET"}, "geometry": {"type": "Point", "coordinates": [2.5107960297022602, 48.83442006808396]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "584bb1e6203053a2e45f46fb463e7b1ffee3cf2c", "fields": {"departement": "94", "stop_lat": 48.84080528787608, "code_postal": "94015", "stop_lon": 2.5258766738291087, "coord": [48.84080528787608, 2.5258766738291087], "stop_id": 4614235, "stop_desc": "4 BD PASTEUR - 94015", "stop_name": "CIMETIERE - FUNERARIUM DE BRY"}, "geometry": {"type": "Point", "coordinates": [2.5258766738291087, 48.84080528787608]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "57b31964998c2079234f7ae3a91e2d97673bc593", "fields": {"departement": "94", "stop_lat": 48.84032410062164, "code_postal": "94015", "stop_lon": 2.528911262894006, "coord": [48.84032410062164, 2.528911262894006], "stop_id": 4614237, "stop_desc": "FACE 25 BOULEVARD PASTEUR - 94015", "stop_name": "CHEMIN DES MOINES"}, "geometry": {"type": "Point", "coordinates": [2.528911262894006, 48.84032410062164]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2ca37d1639e05bb9f4533ea0afc9f72fa96bd3b0", "fields": {"departement": "93", "stop_lat": 48.83908506083081, "code_postal": "93051", "stop_lon": 2.539036651562454, "coord": [48.83908506083081, 2.539036651562454], "stop_id": 4614250, "stop_desc": "BOULEVARD GEORGES MELIES - 93051", "stop_name": "HOPITAL PRIVE DE MARNE LA VALLEE"}, "geometry": {"type": "Point", "coordinates": [2.539036651562454, 48.83908506083081]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0bd6a31adcd464b617ddcf78f1e7fb65438433be", "fields": {"departement": "93", "stop_lat": 48.84193706376428, "code_postal": "93051", "stop_lon": 2.5425743652411943, "coord": [48.84193706376428, 2.5425743652411943], "stop_id": 4614252, "stop_desc": "BOULEVARD MONT D'EST - 93051", "stop_name": "LE THEATRE"}, "geometry": {"type": "Point", "coordinates": [2.5425743652411943, 48.84193706376428]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "963c9784792ef5231ac09801ef0e3a476aef9101", "fields": {"departement": "94", "stop_lat": 48.83418281392297, "code_postal": "94079", "stop_lon": 2.5465598890183436, "coord": [48.83418281392297, 2.5465598890183436], "stop_id": 4614265, "stop_desc": "FACE 88 BOULEVARD DE FRIEDBERG - 94079", "stop_name": "MOULIN A VENT"}, "geometry": {"type": "Point", "coordinates": [2.5465598890183436, 48.83418281392297]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b25f2a9d80b78e78e2e1d417a565ce97ee5948a8", "fields": {"departement": "94", "stop_lat": 48.82629358652719, "code_postal": "94079", "stop_lon": 2.540252848669576, "coord": [48.82629358652719, 2.540252848669576], "stop_id": 4614270, "stop_desc": "41 RUE DU GENERAL GALLIENI - 94079", "stop_name": "MAIRIE DE VILLIERS-SUR-MARNE"}, "geometry": {"type": "Point", "coordinates": [2.540252848669576, 48.82629358652719]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "46b19dba6dfd9e5566ae66bca396f7d1699bdb72", "fields": {"departement": "94", "stop_lat": 48.82111649615556, "code_postal": "94079", "stop_lon": 2.5555856246885464, "coord": [48.82111649615556, 2.5555856246885464], "stop_id": 4614276, "stop_desc": "84 BIS AVENUE ANDRE ROUY - 94079", "stop_name": "LES MOUSQUETAIRES"}, "geometry": {"type": "Point", "coordinates": [2.5555856246885464, 48.82111649615556]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b8310bf57cb4e4a00f83abdbdc1bf5abce3c7c25", "fields": {"departement": "94", "stop_lat": 48.81533254588097, "code_postal": "94017", "stop_lon": 2.562991988416578, "coord": [48.81533254588097, 2.562991988416578], "stop_id": 4614279, "stop_desc": "96 AVENUE MAURICE BERTEAUX - 94017", "stop_name": "GEORGES COURTELINE"}, "geometry": {"type": "Point", "coordinates": [2.562991988416578, 48.81533254588097]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1dcb00546f60bf89f6d268f8ac7ddf609e91de3c", "fields": {"departement": "94", "stop_lat": 48.810134597675855, "code_postal": "94059", "stop_lon": 2.569229050320323, "coord": [48.810134597675855, 2.569229050320323], "stop_id": 4614281, "stop_desc": "FACE 24 AVENUE DU GENERAL LECLERC - 94059", "stop_name": "MAURICE BERTEAUX - GENERAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.569229050320323, 48.810134597675855]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d28e7de888b23406f32970369729175f73e3bf56", "fields": {"departement": "94", "stop_lat": 48.80939821239567, "code_postal": "94059", "stop_lon": 2.5734849939653817, "coord": [48.80939821239567, 2.5734849939653817], "stop_id": 4614284, "stop_desc": "9 AVENUE ARDOUIN - 94059", "stop_name": "MAIRIE DU PLESSIS-TREVISE"}, "geometry": {"type": "Point", "coordinates": [2.5734849939653817, 48.80939821239567]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6365ecd9541ef152508c0b8e76390da2cde6ac61", "fields": {"departement": "77", "stop_lat": 48.800364871428314, "code_postal": "77373", "stop_lon": 2.6075254719476906, "coord": [48.800364871428314, 2.6075254719476906], "stop_id": 4614299, "stop_desc": "136 AVENUE DE LA REPUBLIQUE - 77373", "stop_name": "CENTRE COMMERCIAL 2000"}, "geometry": {"type": "Point", "coordinates": [2.6075254719476906, 48.800364871428314]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1635a01365efdc103bf70f3f4641dca67bb1d3ed", "fields": {"departement": "77", "stop_lat": 48.79704505844503, "code_postal": "77373", "stop_lon": 2.6089638804098056, "coord": [48.79704505844503, 2.6089638804098056], "stop_id": 4614300, "stop_desc": "30-32 RUE DES PRES SAINT MARTIN - 77373", "stop_name": "LES BLEUETS"}, "geometry": {"type": "Point", "coordinates": [2.6089638804098056, 48.79704505844503]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4ade5428e48918bc67a24fee874893c055faf179", "fields": {"departement": "77", "stop_lat": 48.79563677715103, "code_postal": "77373", "stop_lon": 2.6116501416991382, "coord": [48.79563677715103, 2.6116501416991382], "stop_id": 4614303, "stop_desc": "RUE DU PLATEAU - 77373", "stop_name": "SALLE DES FETES JACQUES BREL"}, "geometry": {"type": "Point", "coordinates": [2.6116501416991382, 48.79563677715103]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b84c8c760842c3e507ef9226da3f48c03686389a", "fields": {"departement": "77", "stop_lat": 48.79714811000411, "code_postal": "77373", "stop_lon": 2.6149368344570316, "coord": [48.79714811000411, 2.6149368344570316], "stop_id": 4614304, "stop_desc": "RUE DE L'ORME AU CHARRON - 77373", "stop_name": "L'ORME AU CHARRON"}, "geometry": {"type": "Point", "coordinates": [2.6149368344570316, 48.79714811000411]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c2969f26e4b77b1c4e6e532deff6f7dcb64c762d", "fields": {"departement": "77", "stop_lat": 48.798303650812, "code_postal": "77373", "stop_lon": 2.616602811221647, "coord": [48.798303650812, 2.616602811221647], "stop_id": 4614307, "stop_desc": "RUE DES TILLEULS - 77373", "stop_name": "RESIDENCE DES TILLEULS"}, "geometry": {"type": "Point", "coordinates": [2.616602811221647, 48.798303650812]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b0ded8672cce15e0f27863ba491ddad00ed2ea8a", "fields": {"departement": "94", "stop_lat": 48.815962947351636, "code_postal": "94059", "stop_lon": 2.562327864820946, "coord": [48.815962947351636, 2.562327864820946], "stop_id": 4614320, "stop_desc": "3 AVENUE MAURICE BERTEAUX - 94059", "stop_name": "GEORGES COURTELINE"}, "geometry": {"type": "Point", "coordinates": [2.562327864820946, 48.815962947351636]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "37cd41bbddc5899c93a23ef20727a674ccb6c6a5", "fields": {"departement": "93", "stop_lat": 48.84075952992124, "code_postal": "93051", "stop_lon": 2.5528361623161175, "coord": [48.84075952992124, 2.5528361623161175], "stop_id": 4614324, "stop_desc": "PISTE GARE ROUTIERE - 93051", "stop_name": "NOISY-LE-GRAND - MONT D'EST RER"}, "geometry": {"type": "Point", "coordinates": [2.5528361623161175, 48.84075952992124]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5f2e99c020c8a69d384812e28bce1c011f917cec", "fields": {"departement": "94", "stop_lat": 48.82270638059257, "code_postal": "94079", "stop_lon": 2.540905768943888, "coord": [48.82270638059257, 2.540905768943888], "stop_id": 4614330, "stop_desc": "FACE 3 RUE DU CHEMIN DE FER - 94079", "stop_name": "VILLIERS-SUR-MARNE - LE PLESSIS-TREVISE RER"}, "geometry": {"type": "Point", "coordinates": [2.540905768943888, 48.82270638059257]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "809acf6dd4b14d12a0c151035f6e10b65e6b1792", "fields": {"departement": "94", "stop_lat": 48.82034110340688, "code_postal": "94059", "stop_lon": 2.55691620545801, "coord": [48.82034110340688, 2.55691620545801], "stop_id": 4614355, "stop_desc": "FACE 92 AVENUE ANDRE ROUY - 94059", "stop_name": "LES MOUSQUETAIRES"}, "geometry": {"type": "Point", "coordinates": [2.55691620545801, 48.82034110340688]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "68120e22d47f17b5d95072f76479160623028181", "fields": {"departement": "94", "stop_lat": 48.82351335385903, "code_postal": "94079", "stop_lon": 2.542025075555393, "coord": [48.82351335385903, 2.542025075555393], "stop_id": 4614357, "stop_desc": "3-5 RUE DU CHEMIN DE FER - 94079", "stop_name": "VILLIERS-SUR-MARNE - LE PLESSIS-TREVISE RER"}, "geometry": {"type": "Point", "coordinates": [2.542025075555393, 48.82351335385903]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6780efa445eef7e5563238dbdf01b8a9b318ddf3", "fields": {"departement": "94", "stop_lat": 48.82724329014408, "code_postal": "94079", "stop_lon": 2.541998956217836, "coord": [48.82724329014408, 2.541998956217836], "stop_id": 4614359, "stop_desc": "2 RUE DU GENERAL DE GAULLE - 94079", "stop_name": "EGLISE DE VILLIERS-SUR-MARNE"}, "geometry": {"type": "Point", "coordinates": [2.541998956217836, 48.82724329014408]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bbf9abeb8b1a5767b28532b1dfda81b5f2db2375", "fields": {"departement": "94", "stop_lat": 48.83048405351121, "code_postal": "94079", "stop_lon": 2.549294855393238, "coord": [48.83048405351121, 2.549294855393238], "stop_id": 4614363, "stop_desc": "AVENUE MONTRICHARD - 94079", "stop_name": "COLLEGE LES PRUNAIS"}, "geometry": {"type": "Point", "coordinates": [2.549294855393238, 48.83048405351121]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6f6d54b4cd45b607a1d1d96364fe21cfa707f249", "fields": {"departement": "94", "stop_lat": 48.832945485228045, "code_postal": "94079", "stop_lon": 2.5448667694120215, "coord": [48.832945485228045, 2.5448667694120215], "stop_id": 4614364, "stop_desc": "BOULEVARD DE FRIEDBERG - 94079", "stop_name": "SQUARE DES ALLOBROGES"}, "geometry": {"type": "Point", "coordinates": [2.5448667694120215, 48.832945485228045]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b1f4ab7fbb4e5f097d3217f3ae36f2edadb817c1", "fields": {"departement": "94", "stop_lat": 48.832379742455565, "code_postal": "94079", "stop_lon": 2.544592230011345, "coord": [48.832379742455565, 2.544592230011345], "stop_id": 4614371, "stop_desc": "45 RUE PIERRE DOBOEUF ET MICHEL LAFON - 94079", "stop_name": "SQUARE DES ALLOBROGES"}, "geometry": {"type": "Point", "coordinates": [2.544592230011345, 48.832379742455565]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "38c6da3f31be5b18aee3b819ab8fa4d312aa0ad6", "fields": {"departement": "94", "stop_lat": 48.82111649615556, "code_postal": "94079", "stop_lon": 2.5555856246885464, "coord": [48.82111649615556, 2.5555856246885464], "stop_id": 4614380, "stop_desc": "84 BIS AVENUE ANDRE ROUY - 94079", "stop_name": "LES MOUSQUETAIRES"}, "geometry": {"type": "Point", "coordinates": [2.5555856246885464, 48.82111649615556]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "178d07fc5246cd02e1ba0e5120791aee3cd58ed5", "fields": {"departement": "94", "stop_lat": 48.81533254588097, "code_postal": "94017", "stop_lon": 2.562991988416578, "coord": [48.81533254588097, 2.562991988416578], "stop_id": 4614382, "stop_desc": "96 AVENUE MAURICE BERTEAUX - 94017", "stop_name": "GEORGES COURTELINE"}, "geometry": {"type": "Point", "coordinates": [2.562991988416578, 48.81533254588097]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0f9bef93dd5a6f12a1f780cfcacdad203052dc32", "fields": {"departement": "94", "stop_lat": 48.81368270752159, "code_postal": "94059", "stop_lon": 2.5656521573903093, "coord": [48.81368270752159, 2.5656521573903093], "stop_id": 4614383, "stop_desc": "2 AVENUE MAURICE BERTEAUX - 94059", "stop_name": "MICHEL BONY"}, "geometry": {"type": "Point", "coordinates": [2.5656521573903093, 48.81368270752159]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8140b4369a55d225bdf8066140405011c41f5120", "fields": {"departement": "94", "stop_lat": 48.804798613299376, "code_postal": "94059", "stop_lon": 2.5723891460903743, "coord": [48.804798613299376, 2.5723891460903743], "stop_id": 4614387, "stop_desc": "AVENUE MAURICE BERTEAUX - 94059", "stop_name": "COLLEGE ALBERT CAMUS - ZA PONROY"}, "geometry": {"type": "Point", "coordinates": [2.5723891460903743, 48.804798613299376]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b3f0386021428a660f4a685f72649e4f1c9efe29", "fields": {"departement": "94", "stop_lat": 48.80601483466366, "code_postal": "94068", "stop_lon": 2.4723297438708514, "coord": [48.80601483466366, 2.4723297438708514], "stop_id": 4614394, "stop_desc": "R LEROUX - 94068", "stop_name": "SAINT-MAUR-CRETEIL-RER"}, "geometry": {"type": "Point", "coordinates": [2.4723297438708514, 48.80601483466366]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2062669be9e3961f26fae994d3fb7f443b91be2a", "fields": {"departement": "94", "stop_lat": 48.80983569972231, "code_postal": "94068", "stop_lon": 2.4714007439924996, "coord": [48.80983569972231, 2.4714007439924996], "stop_id": 4614397, "stop_desc": "1-3 RUE DE LA VARENNE - 94068", "stop_name": "CROIX SOURIS"}, "geometry": {"type": "Point", "coordinates": [2.4714007439924996, 48.80983569972231]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "54edaf9f369f18fb44210438b40e55db50423de0", "fields": {"departement": "94", "stop_lat": 48.811248398930246, "code_postal": "94068", "stop_lon": 2.477786650910293, "coord": [48.811248398930246, 2.477786650910293], "stop_id": 4614404, "stop_desc": "15-17 AVENUE DE CONDE - 94068", "stop_name": "LIBERATION-CONDE"}, "geometry": {"type": "Point", "coordinates": [2.477786650910293, 48.811248398930246]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6ea02de4d095b89458e69cad99ae1ca564f10857", "fields": {"departement": "94", "stop_lat": 48.808946650679566, "code_postal": "94068", "stop_lon": 2.4859041697944013, "coord": [48.808946650679566, 2.4859041697944013], "stop_id": 4614407, "stop_desc": "114 AVENUE DE CONDE - 94068", "stop_name": "CIMETIERE DE SAINT-MAUR-DES-FOSSES"}, "geometry": {"type": "Point", "coordinates": [2.4859041697944013, 48.808946650679566]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e825a2714ca9658e2c67d94b63901c428590f303", "fields": {"departement": "94", "stop_lat": 48.80778959230882, "code_postal": "94068", "stop_lon": 2.4911124603192403, "coord": [48.80778959230882, 2.4911124603192403], "stop_id": 4614409, "stop_desc": "23 AVENUE PIERRE BROSSOLETTE - 94068", "stop_name": "NEPTUNE"}, "geometry": {"type": "Point", "coordinates": [2.4911124603192403, 48.80778959230882]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7e9fb70d1fd6fdf1006e7c614f861a21bc9034ae", "fields": {"departement": "94", "stop_lat": 48.8057056522785, "code_postal": "94068", "stop_lon": 2.4969980183550597, "coord": [48.8057056522785, 2.4969980183550597], "stop_id": 4614413, "stop_desc": "FACE AU 9 AVENUE DU BEL-AIR - 94068", "stop_name": "LES MARRONNIERS"}, "geometry": {"type": "Point", "coordinates": [2.4969980183550597, 48.8057056522785]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d0f409cdbeed5c09eebd497ab34dc34d8741db8c", "fields": {"departement": "94", "stop_lat": 48.80578685263075, "code_postal": "94068", "stop_lon": 2.4967669526356326, "coord": [48.80578685263075, 2.4967669526356326], "stop_id": 4614414, "stop_desc": "PLACE DES MARRONNIERS - 94068", "stop_name": "LES MARRONNIERS"}, "geometry": {"type": "Point", "coordinates": [2.4967669526356326, 48.80578685263075]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3034b263a436d855454544c95ffe2bdd60ff7084", "fields": {"departement": "94", "stop_lat": 48.81213311892112, "code_postal": "94017", "stop_lon": 2.521077565686991, "coord": [48.81213311892112, 2.521077565686991], "stop_id": 4614429, "stop_desc": "4 AVENUE DE COEUILLY - 94017", "stop_name": "LES GLAISIERES"}, "geometry": {"type": "Point", "coordinates": [2.521077565686991, 48.81213311892112]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4a72490e59cd125fe3c829d5871f9607cf3e2c5a", "fields": {"departement": "94", "stop_lat": 48.8123846281572, "code_postal": "94017", "stop_lon": 2.5211737160899093, "coord": [48.8123846281572, 2.5211737160899093], "stop_id": 4614430, "stop_desc": "15 AVENUE DE COEUILLY - 94017", "stop_name": "LES GLAISIERES"}, "geometry": {"type": "Point", "coordinates": [2.5211737160899093, 48.8123846281572]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "edef205d69e707d2159dca28404470baeffeecdb", "fields": {"departement": "94", "stop_lat": 48.81427132840377, "code_postal": "94017", "stop_lon": 2.5273589018318208, "coord": [48.81427132840377, 2.5273589018318208], "stop_id": 4614433, "stop_desc": "AVENUE AMBROISE CROIZAT - 94017", "stop_name": "SONIA DELAUNAY"}, "geometry": {"type": "Point", "coordinates": [2.5273589018318208, 48.81427132840377]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "701bfcfdb0c63ad732199cdefeb8f3cbf18112b5", "fields": {"departement": "94", "stop_lat": 48.82772935249163, "code_postal": "94079", "stop_lon": 2.536269982707956, "coord": [48.82772935249163, 2.536269982707956], "stop_id": 4614448, "stop_desc": "10-10 BIS BOULEVARD ARISTIDE BRIAND - 94079", "stop_name": "ARISTIDE BRIAND-GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.536269982707956, 48.82772935249163]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8f6e89393088de82b2bd509a990b103e87855f21", "fields": {"departement": "93", "stop_lat": 48.82620294068821, "code_postal": "93051", "stop_lon": 2.574677688571683, "coord": [48.82620294068821, 2.574677688571683], "stop_id": 4614469, "stop_desc": "2 AVENUE DE LA GARE - 93051", "stop_name": "VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.574677688571683, 48.82620294068821]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fd2894d302d53f5489275fcc922b2fa056da305b", "fields": {"departement": "93", "stop_lat": 48.86974875272819, "code_postal": "93049", "stop_lon": 2.5053149784562296, "coord": [48.86974875272819, 2.5053149784562296], "stop_id": 4109816, "stop_desc": "5/7 AVENUE DES FAUVETTES - 93049", "stop_name": "BEL AIR"}, "geometry": {"type": "Point", "coordinates": [2.5053149784562296, 48.86974875272819]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ad4ec86ccc129c5e9d2808c68b5889fbfae5f15c", "fields": {"departement": "93", "stop_lat": 48.86407051179714, "code_postal": "93049", "stop_lon": 2.5164258283048935, "coord": [48.86407051179714, 2.5164258283048935], "stop_id": 4109822, "stop_desc": "19 CHEMIN DE MEAUX - 93049", "stop_name": "GEORGES POMPIDOU"}, "geometry": {"type": "Point", "coordinates": [2.5164258283048935, 48.86407051179714]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a88025e1739e00399f821961bcd603c6d4949a7b", "fields": {"departement": "93", "stop_lat": 48.852696795117474, "code_postal": "93049", "stop_lon": 2.513485668431387, "coord": [48.852696795117474, 2.513485668431387], "stop_id": 4109828, "stop_desc": "14 BOULEVARD GALLIENI - 93049", "stop_name": "NEUILLY-PLAISANCE RER"}, "geometry": {"type": "Point", "coordinates": [2.513485668431387, 48.852696795117474]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f27beba9ad907ab5c66410bb39b2fde249debe6f", "fields": {"departement": "92", "stop_lat": 48.88237837459262, "code_postal": "92050", "stop_lon": 2.1990781133319444, "coord": [48.88237837459262, 2.1990781133319444], "stop_id": 4109832, "stop_desc": "42 R DU DOCTEUR CHARCOT - 92050", "stop_name": "DOCTEUR CHARCOT"}, "geometry": {"type": "Point", "coordinates": [2.1990781133319444, 48.88237837459262]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "913833cecff52ad6f25b7989a0fe02374b5c43fe", "fields": {"departement": "92", "stop_lat": 48.8767515161948, "code_postal": "92063", "stop_lon": 2.198370963328061, "coord": [48.8767515161948, 2.198370963328061], "stop_id": 4109840, "stop_desc": "4-6 R VOLTAIRE - 92063", "stop_name": "VOLTAIRE"}, "geometry": {"type": "Point", "coordinates": [2.198370963328061, 48.8767515161948]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3456d2f0530010dc42edfeaea21c1e86fd314a80", "fields": {"departement": "92", "stop_lat": 48.87000527381598, "code_postal": "92063", "stop_lon": 2.209287946378304, "coord": [48.87000527381598, 2.209287946378304], "stop_id": 4109855, "stop_desc": "115 R DES ROSIERS - 92063", "stop_name": "BUFFON"}, "geometry": {"type": "Point", "coordinates": [2.209287946378304, 48.87000527381598]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "992cd8237fccfdf9909d379083acc0df9ce14e5d", "fields": {"departement": "92", "stop_lat": 48.869752425928866, "code_postal": "92073", "stop_lon": 2.2167542879803697, "coord": [48.869752425928866, 2.2167542879803697], "stop_id": 4109857, "stop_desc": "AV DES LANDES - 92073", "stop_name": "WASHINGTON"}, "geometry": {"type": "Point", "coordinates": [2.2167542879803697, 48.869752425928866]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ea9ce1900900e1b48f82dc2b40f178ec876daa98", "fields": {"departement": "92", "stop_lat": 48.87059814029176, "code_postal": "92073", "stop_lon": 2.2176514928946722, "coord": [48.87059814029176, 2.2176514928946722], "stop_id": 4109858, "stop_desc": "AV DU PROFESSEUR LEON BERNARD - 92073", "stop_name": "WASHINGTON"}, "geometry": {"type": "Point", "coordinates": [2.2176514928946722, 48.87059814029176]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f544b12f8411da369479c04918f322833c32058f", "fields": {"departement": "92", "stop_lat": 48.8682005706917, "code_postal": "92073", "stop_lon": 2.219714120722742, "coord": [48.8682005706917, 2.219714120722742], "stop_id": 4109859, "stop_desc": "FACE 18 R CLUSERET - 92073", "stop_name": "WORTH"}, "geometry": {"type": "Point", "coordinates": [2.219714120722742, 48.8682005706917]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6d4d48ef7d2406e7de8b61e49dbc1e31444e46ed", "fields": {"departement": "93", "stop_lat": 48.87626439856001, "code_postal": "93006", "stop_lon": 2.4321683125499827, "coord": [48.87626439856001, 2.4321683125499827], "stop_id": 4117611, "stop_desc": "50 RUE LOUISE MICHEL - 93006", "stop_name": "LOUISE MICHEL"}, "geometry": {"type": "Point", "coordinates": [2.4321683125499827, 48.87626439856001]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "519365e4377b69e484246cc1af0fe5aa27368ea6", "fields": {"departement": "93", "stop_lat": 48.87679375618576, "code_postal": "93048", "stop_lon": 2.4534658103341167, "coord": [48.87679375618576, 2.4534658103341167], "stop_id": 4117618, "stop_desc": "7 AVENUE DU DOCTEUR FERNAND LAMAZE - 93048", "stop_name": "FERNAND LAMAZE"}, "geometry": {"type": "Point", "coordinates": [2.4534658103341167, 48.87679375618576]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6a240a95c980aa4970dc1abdf54b219a18ea5612", "fields": {"departement": "93", "stop_lat": 48.877912764034505, "code_postal": "93048", "stop_lon": 2.457896676294, "coord": [48.877912764034505, 2.457896676294], "stop_id": 4117620, "stop_desc": "94 BOULEVARD DE LA BOISSIERE - 93048", "stop_name": "LA BOISSIERE"}, "geometry": {"type": "Point", "coordinates": [2.457896676294, 48.877912764034505]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d6f91fd82738ffc81eb3fb275685e02c617d3982", "fields": {"departement": "93", "stop_lat": 48.880852160913086, "code_postal": "93053", "stop_lon": 2.457344831024496, "coord": [48.880852160913086, 2.457344831024496], "stop_id": 4117630, "stop_desc": "FACE 121 R DE LA FONTAINE - 93053", "stop_name": "ECOLE BOISSIERE"}, "geometry": {"type": "Point", "coordinates": [2.457344831024496, 48.880852160913086]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "28b60259a3f2f500c26a6789a247fbf1ec4d7280", "fields": {"departement": "93", "stop_lat": 48.88062942747261, "code_postal": "93053", "stop_lon": 2.4553957355911975, "coord": [48.88062942747261, 2.4553957355911975], "stop_id": 4117632, "stop_desc": "R DE LA PLACE SAINT-MARTIN - 93053", "stop_name": "PLACE SAINT-MARTIN"}, "geometry": {"type": "Point", "coordinates": [2.4553957355911975, 48.88062942747261]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "75e45a0a30260c44298cf4bb53b89a67349d3397", "fields": {"departement": "93", "stop_lat": 48.880878916495696, "code_postal": "93053", "stop_lon": 2.4575492904405234, "coord": [48.880878916495696, 2.4575492904405234], "stop_id": 4117635, "stop_desc": "FACE 121 R DE LA FONTAINE - 93053", "stop_name": "ECOLE BOISSIERE."}, "geometry": {"type": "Point", "coordinates": [2.4575492904405234, 48.880878916495696]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "203768b8b97c23f1458f91fc71657f379d27110a", "fields": {"departement": "93", "stop_lat": 48.88411296469715, "code_postal": "93053", "stop_lon": 2.4588922756525187, "coord": [48.88411296469715, 2.4588922756525187], "stop_id": 4117637, "stop_desc": "AV DU 18 AVRIL 1944 - 93053", "stop_name": "NOUVEAU CIMETIERE."}, "geometry": {"type": "Point", "coordinates": [2.4588922756525187, 48.88411296469715]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0b4fa9709abfe6aebf76e997a07271073ccc2bce", "fields": {"departement": "93", "stop_lat": 48.89325064548313, "code_postal": "93053", "stop_lon": 2.4611353713492186, "coord": [48.89325064548313, 2.4611353713492186], "stop_id": 4117643, "stop_desc": "84 BOULEVARD MICHELET - 93053", "stop_name": "GAMBETTA"}, "geometry": {"type": "Point", "coordinates": [2.4611353713492186, 48.89325064548313]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dd8bdfa2512c5d36bae93f9e87720666ff1edf18", "fields": {"departement": "93", "stop_lat": 48.88963634548666, "code_postal": "93053", "stop_lon": 2.453658151289903, "coord": [48.88963634548666, 2.453658151289903], "stop_id": 4117648, "stop_desc": "8 RUE DE BREMENT - 93053", "stop_name": "JEANNE D'ARC"}, "geometry": {"type": "Point", "coordinates": [2.453658151289903, 48.88963634548666]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0cfeced1a4c56e11ee295a3146c1eb15bcab6837", "fields": {"departement": "93", "stop_lat": 48.875064477268594, "code_postal": "93063", "stop_lon": 2.4479301980595385, "coord": [48.875064477268594, 2.4479301980595385], "stop_id": 4117653, "stop_desc": "94 RTE DE MONTREUIL - 93063", "stop_name": "MIRABEAU"}, "geometry": {"type": "Point", "coordinates": [2.4479301980595385, 48.875064477268594]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6a5e209c21a85b76408974aa0fec7da1a44b0936", "fields": {"departement": "93", "stop_lat": 48.91375553705395, "code_postal": "93029", "stop_lon": 2.436204826489759, "coord": [48.91375553705395, 2.436204826489759], "stop_id": 4117665, "stop_desc": "144 R ROGER SALENGRO - 93029", "stop_name": "ESCADRILLE NORMANDIE-NIEMEN - ROGER SALENGRO-TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.436204826489759, 48.91375553705395]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e7b0951964b296a160ccad3ccbed89ce69b56bad", "fields": {"departement": "93", "stop_lat": 48.92482629275242, "code_postal": "93029", "stop_lon": 2.447804684804251, "coord": [48.92482629275242, 2.447804684804251], "stop_id": 4117676, "stop_desc": "FACE 45 RUE ANATOLE FRANCE - 93029", "stop_name": "CIMETIERE DE DRANCY"}, "geometry": {"type": "Point", "coordinates": [2.447804684804251, 48.92482629275242]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "879b822b4367922f5876c89e2672256f7935185d", "fields": {"departement": "93", "stop_lat": 48.93002351401339, "code_postal": "93029", "stop_lon": 2.45430814538096, "coord": [48.93002351401339, 2.45430814538096], "stop_id": 4117680, "stop_desc": "FACE 165 RUE ANATOLE FRANCE - 93029", "stop_name": "BREMENT"}, "geometry": {"type": "Point", "coordinates": [2.45430814538096, 48.93002351401339]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fb81bc2603237e17879b7ce702da7b12fb8a2f2e", "fields": {"departement": "93", "stop_lat": 48.93579014936311, "code_postal": "93029", "stop_lon": 2.4572676250925753, "coord": [48.93579014936311, 2.4572676250925753], "stop_id": 4117684, "stop_desc": "250 RUE ANATOLE FRANCE - 93029", "stop_name": "ROGER SALOMON"}, "geometry": {"type": "Point", "coordinates": [2.4572676250925753, 48.93579014936311]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3de12e79f4d0c53dc0c2459436451ab68d09f66d", "fields": {"departement": "93", "stop_lat": 48.93518871535055, "code_postal": "93029", "stop_lon": 2.45658419184077, "coord": [48.93518871535055, 2.45658419184077], "stop_id": 4117685, "stop_desc": "FACE 242 RUE ANATOLE FRANCE - 93029", "stop_name": "ROGER SALOMON"}, "geometry": {"type": "Point", "coordinates": [2.45658419184077, 48.93518871535055]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d7e493c7e460887e1b7ad5ad81d9ffdc3e79c5cc", "fields": {"departement": "93", "stop_lat": 48.94052953216569, "code_postal": "93007", "stop_lon": 2.462776414924133, "coord": [48.94052953216569, 2.462776414924133], "stop_id": 4117691, "stop_desc": "87 AVENUE HENRI BARBUSSE - 93007", "stop_name": "AUDRAN"}, "geometry": {"type": "Point", "coordinates": [2.462776414924133, 48.94052953216569]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "37f69d5856687a1076f269dd764f7e16f2b5c6c4", "fields": {"departement": "93", "stop_lat": 48.94898407577552, "code_postal": "93007", "stop_lon": 2.455974703488172, "coord": [48.94898407577552, 2.455974703488172], "stop_id": 4117696, "stop_desc": "AVENUE DES COSMONAUTES - 93007", "stop_name": "COSMONAUTES"}, "geometry": {"type": "Point", "coordinates": [2.455974703488172, 48.94898407577552]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "80f3b67a83072bc67b9b8646ab7907bbf0ad7421", "fields": {"departement": "93", "stop_lat": 48.94877327073075, "code_postal": "93007", "stop_lon": 2.450966737996061, "coord": [48.94877327073075, 2.450966737996061], "stop_id": 4117697, "stop_desc": "FACE AU 20 RU EMAURICE AUDIN - 93007", "stop_name": "ALTRINCHAM"}, "geometry": {"type": "Point", "coordinates": [2.450966737996061, 48.94877327073075]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5fe973867ee9722cd4610262e05cf3d083c754b6", "fields": {"departement": "93", "stop_lat": 48.9468053446312, "code_postal": "93007", "stop_lon": 2.4409069019059877, "coord": [48.9468053446312, 2.4409069019059877], "stop_id": 4117702, "stop_desc": "27 RUE DES MARTYRS DE LA DEPORTATION - 93007", "stop_name": "LOUIS BLERIOT"}, "geometry": {"type": "Point", "coordinates": [2.4409069019059877, 48.9468053446312]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "09d41845033c292a28de848bdcc99db45facbc8d", "fields": {"departement": "93", "stop_lat": 48.914726003723764, "code_postal": "93057", "stop_lon": 2.501479350412281, "coord": [48.914726003723764, 2.501479350412281], "stop_id": 4118151, "stop_desc": "91 AVENUE DE ROME - 93057", "stop_name": "ZONE INDUSTRIELLE DE LA POUDRETTE"}, "geometry": {"type": "Point", "coordinates": [2.501479350412281, 48.914726003723764]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bcb1cc508e1bbdbcd3338f170055cea5321c4a09", "fields": {"departement": "93", "stop_lat": 48.90772624619888, "code_postal": "93010", "stop_lon": 2.4718723265699305, "coord": [48.90772624619888, 2.4718723265699305], "stop_id": 4118161, "stop_desc": "48 CHEMIN DE GROSLAY - 93010", "stop_name": "LILLE"}, "geometry": {"type": "Point", "coordinates": [2.4718723265699305, 48.90772624619888]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "afa6fe2d2a70926130965007babc47651ae3546c", "fields": {"departement": "93", "stop_lat": 48.91332218067506, "code_postal": "93010", "stop_lon": 2.4820995089248123, "coord": [48.91332218067506, 2.4820995089248123], "stop_id": 4118164, "stop_desc": "AV HENRI VARAGNAT - 93010", "stop_name": "SUZANNE BUISSON"}, "geometry": {"type": "Point", "coordinates": [2.4820995089248123, 48.91332218067506]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4fec214a7a2b923a59a60ea25b60d9f18297c567", "fields": {"departement": "93", "stop_lat": 48.916213905282326, "code_postal": "93057", "stop_lon": 2.497775128888499, "coord": [48.916213905282326, 2.497775128888499], "stop_id": 4118169, "stop_desc": "AVENUE DE ROME - 93057", "stop_name": "ROBERT SCHUMAN."}, "geometry": {"type": "Point", "coordinates": [2.497775128888499, 48.916213905282326]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ae30017e397520c3babec78e7558c0ab20a48588", "fields": {"departement": "94", "stop_lat": 48.75492143665341, "code_postal": "94034", "stop_lon": 2.3183733720797615, "coord": [48.75492143665341, 2.3183733720797615], "stop_id": 4124810, "stop_desc": "23 BOULEVARD JEAN JAURES - 94034", "stop_name": "LES ANEMONES"}, "geometry": {"type": "Point", "coordinates": [2.3183733720797615, 48.75492143665341]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6acbf33f0d8436310b4af77362040dcba0441db3", "fields": {"departement": "94", "stop_lat": 48.80441077970278, "code_postal": "94003", "stop_lon": 2.336247805194497, "coord": [48.80441077970278, 2.336247805194497], "stop_id": 4124826, "stop_desc": "86 AVENUE DE LA CONVENTION - 94003", "stop_name": "LOUIS FREBAULT"}, "geometry": {"type": "Point", "coordinates": [2.336247805194497, 48.80441077970278]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a028fb9024d62de2f3ed597593dc0b12074dd2d6", "fields": {"departement": "75", "stop_lat": 48.87395603688644, "code_postal": "75108", "stop_lon": 2.3265729484538205, "coord": [48.87395603688644, 2.3265729484538205], "stop_id": 5018190, "stop_desc": "74-76 BOULEVARD HAUSSMANN - 75108", "stop_name": "ROME - HAUSSMANN"}, "geometry": {"type": "Point", "coordinates": [2.3265729484538205, 48.87395603688644]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8b89f5b4e120673d90c528391a4d2129b2ab0b93", "fields": {"departement": "75", "stop_lat": 48.887022419831936, "code_postal": "75117", "stop_lon": 2.317916415872137, "coord": [48.887022419831936, 2.317916415872137], "stop_id": 5018201, "stop_desc": "6 PLACE CHARLES FILLION - 75117", "stop_name": "SQUARE DES BATIGNOLLES"}, "geometry": {"type": "Point", "coordinates": [2.317916415872137, 48.887022419831936]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "583c4622f0640a12214baacd20003e09da454f85", "fields": {"departement": "75", "stop_lat": 48.89719679198877, "code_postal": "75117", "stop_lon": 2.3245644353550117, "coord": [48.89719679198877, 2.3245644353550117], "stop_id": 5018210, "stop_desc": "RUE JACQUES KELINER - 75117", "stop_name": "PORTE POUCHET"}, "geometry": {"type": "Point", "coordinates": [2.3245644353550117, 48.89719679198877]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fce4a67812ef29fac3500539865e887344f485ef", "fields": {"departement": "92", "stop_lat": 48.90059282967282, "code_postal": "92024", "stop_lon": 2.3167117653989426, "coord": [48.90059282967282, 2.3167117653989426], "stop_id": 5018215, "stop_desc": "16 BD DU GENERAL LECLERC - 92024", "stop_name": "GENERAL LECLERC - VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.3167117653989426, 48.90059282967282]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4cef4dd61bd0b34d300018bf466e2bdbfab672ae", "fields": {"departement": "92", "stop_lat": 48.90180625832521, "code_postal": "92024", "stop_lon": 2.3177200511128, "coord": [48.90180625832521, 2.3177200511128], "stop_id": 5018218, "stop_desc": "104 BOULEVARD VICTOR HUGO - 92024", "stop_name": "VICTOR HUGO - MOREL"}, "geometry": {"type": "Point", "coordinates": [2.3177200511128, 48.90180625832521]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6a9a0bfd3aaf69f15c995e0f4698e4e5498902b8", "fields": {"departement": "75", "stop_lat": 48.899919154262854, "code_postal": "75117", "stop_lon": 2.318906701808669, "coord": [48.899919154262854, 2.318906701808669], "stop_id": 5018219, "stop_desc": "RUE FLOREAL - 75117", "stop_name": "FLOREAL"}, "geometry": {"type": "Point", "coordinates": [2.318906701808669, 48.899919154262854]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f2307dc7e04c9ff5e05a2481c7bd0fbfb0048f41", "fields": {"departement": "75", "stop_lat": 48.872033003523995, "code_postal": "75109", "stop_lon": 2.3298976383299848, "coord": [48.872033003523995, 2.3298976383299848], "stop_id": 5018223, "stop_desc": "FACE 8 RUE AUBER - 75109", "stop_name": "AUBER"}, "geometry": {"type": "Point", "coordinates": [2.3298976383299848, 48.872033003523995]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3dda8a6fef5991225d9f9f1858986cc9ce285f26", "fields": {"departement": "75", "stop_lat": 48.87593186637593, "code_postal": "75110", "stop_lon": 2.358278333713854, "coord": [48.87593186637593, 2.358278333713854], "stop_id": 5018330, "stop_desc": "FACE 93 BOULEVARD DE STRASBOURG - 75110", "stop_name": "GARE DE L'EST"}, "geometry": {"type": "Point", "coordinates": [2.358278333713854, 48.87593186637593]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1b51b5572849b25bb60af4d26c530035739cd186", "fields": {"departement": "75", "stop_lat": 48.85241340970007, "code_postal": "75105", "stop_lon": 2.346311317055316, "coord": [48.85241340970007, 2.346311317055316], "stop_id": 5018340, "stop_desc": "4 RUE DU PETIT PONT - 75105", "stop_name": "PETIT PONT"}, "geometry": {"type": "Point", "coordinates": [2.346311317055316, 48.85241340970007]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e3c79f74f5ca4f9aa72b7180b7e2cdb614b00944", "fields": {"departement": "75", "stop_lat": 48.83175010758925, "code_postal": "75113", "stop_lon": 2.35481619616892, "coord": [48.83175010758925, 2.35481619616892], "stop_id": 5018355, "stop_desc": "6 PLACE D'ITALIE - 75113", "stop_name": "PLACE D'ITALIE - MAIRIE DU 13E"}, "geometry": {"type": "Point", "coordinates": [2.35481619616892, 48.83175010758925]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "77ce9283863cbcec1610234dee02523b83858821", "fields": {"departement": "75", "stop_lat": 48.832280328003044, "code_postal": "75113", "stop_lon": 2.3551431048521665, "coord": [48.832280328003044, 2.3551431048521665], "stop_id": 5018356, "stop_desc": "79 AVENUE DES GOBELINS - 75113", "stop_name": "PLACE D'ITALIE - MAIRIE DU 13E"}, "geometry": {"type": "Point", "coordinates": [2.3551431048521665, 48.832280328003044]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "83e03d562a0eb27bbeac51ce1255a061df5dcfb2", "fields": {"departement": "75", "stop_lat": 48.8263661608696, "code_postal": "75113", "stop_lon": 2.357073993586242, "coord": [48.8263661608696, 2.357073993586242], "stop_id": 5018360, "stop_desc": "92-94 AVENUE D'ITALIE - 75113", "stop_name": "ITALIE - TOLBIAC"}, "geometry": {"type": "Point", "coordinates": [2.357073993586242, 48.8263661608696]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4d3acb398b52a8b2caa7cba411c0e176b2dc174a", "fields": {"departement": "75", "stop_lat": 48.81843859863193, "code_postal": "75113", "stop_lon": 2.359493561653259, "coord": [48.81843859863193, 2.359493561653259], "stop_id": 5018366, "stop_desc": "AVENUE DE LA PORTE D'ITALIE - 75113", "stop_name": "PORTE D'ITALIE - HELENE BOUCHER"}, "geometry": {"type": "Point", "coordinates": [2.359493561653259, 48.81843859863193]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1de241d63f3570ad8fd2ebf5b58173c1e1e62a76", "fields": {"departement": "94", "stop_lat": 48.81193100032783, "code_postal": "94043", "stop_lon": 2.361926673680407, "coord": [48.81193100032783, 2.361926673680407], "stop_id": 5018371, "stop_desc": "55 AVENUE DE FONTAINEBLEAU - 94043", "stop_name": "CONVENTION - FONTAINEBLEAU"}, "geometry": {"type": "Point", "coordinates": [2.361926673680407, 48.81193100032783]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7f064f94e38d13126abf5873e4b58f8b27eee073", "fields": {"departement": "94", "stop_lat": 48.80928933116081, "code_postal": "94043", "stop_lon": 2.358088049981442, "coord": [48.80928933116081, 2.358088049981442], "stop_id": 5018374, "stop_desc": "1 RUE DE VERDUN-LAZARE PONTICELLI - 94043", "stop_name": "HOPITAL DU KREMLIN-BICETRE"}, "geometry": {"type": "Point", "coordinates": [2.358088049981442, 48.80928933116081]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "da5ee3818021628690cdd8a9fef91522eb12f234", "fields": {"departement": "94", "stop_lat": 48.80727665850562, "code_postal": "94043", "stop_lon": 2.3543860945189143, "coord": [48.80727665850562, 2.3543860945189143], "stop_id": 5018377, "stop_desc": "25 AVENUE CHARLES GIDE - 94043", "stop_name": "BARNUFLES-LA PISCINE"}, "geometry": {"type": "Point", "coordinates": [2.3543860945189143, 48.80727665850562]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cb65020053b43d3e2236039495a8fe71969dd3be", "fields": {"departement": "94", "stop_lat": 48.80529984305715, "code_postal": "94043", "stop_lon": 2.350466729119173, "coord": [48.80529984305715, 2.350466729119173], "stop_id": 5018378, "stop_desc": "RUE BENOIT MALON - 94043", "stop_name": "BENOIT MALON - MARTINETS"}, "geometry": {"type": "Point", "coordinates": [2.350466729119173, 48.80529984305715]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fca79f0435a747f545e73a30e175a0f28ba159fb", "fields": {"departement": "94", "stop_lat": 48.805093501623176, "code_postal": "94043", "stop_lon": 2.346452733070576, "coord": [48.805093501623176, 2.346452733070576], "stop_id": 5018381, "stop_desc": "113 AVENUE CHARLES GIDE - 94043", "stop_name": "FORT DU KREMLIN-BICETRE"}, "geometry": {"type": "Point", "coordinates": [2.346452733070576, 48.805093501623176]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "83dfcd84ef973eaaa61710b700640a01002415a1", "fields": {"departement": "75", "stop_lat": 48.85790459227585, "code_postal": "75101", "stop_lon": 2.3480556928647136, "coord": [48.85790459227585, 2.3480556928647136], "stop_id": 5018386, "stop_desc": "FACE 1 BOULEVARD DE SEBASTOPOL - 75101", "stop_name": "CHATELET"}, "geometry": {"type": "Point", "coordinates": [2.3480556928647136, 48.85790459227585]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8b9ef56df009aedf841b53442927e870a6a4207f", "fields": {"departement": "75", "stop_lat": 48.86287390987719, "code_postal": "75103", "stop_lon": 2.354213758372903, "coord": [48.86287390987719, 2.354213758372903], "stop_id": 5018397, "stop_desc": "59 RUE BEAUBOURG - 75103", "stop_name": "GRENIER SAINT-LAZARE - QUARTIER DE L'HORLOGE"}, "geometry": {"type": "Point", "coordinates": [2.354213758372903, 48.86287390987719]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "12e1a4e3dc9e83bae88ad7cc4bd70161d0d4cd7c", "fields": {"departement": "75", "stop_lat": 48.84097177701128, "code_postal": "75105", "stop_lon": 2.3517557184666833, "coord": [48.84097177701128, 2.3517557184666833], "stop_id": 5018406, "stop_desc": "96 RUE MONGE - 75105", "stop_name": "CENSIER - DAUBENTON"}, "geometry": {"type": "Point", "coordinates": [2.3517557184666833, 48.84097177701128]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a69fe0b6976bf5f08493de0b85e74814b9a59576", "fields": {"departement": "75", "stop_lat": 48.834176950124636, "code_postal": "75113", "stop_lon": 2.3534828245635113, "coord": [48.834176950124636, 2.3534828245635113], "stop_id": 5018409, "stop_desc": "50 AVENUE DES GOBELINS - 75113", "stop_name": "BANQUIER"}, "geometry": {"type": "Point", "coordinates": [2.3534828245635113, 48.834176950124636]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0b9ff6700d4fe3c47e9f1b75dc1f386c9f5fe121", "fields": {"departement": "75", "stop_lat": 48.82251923443529, "code_postal": "75113", "stop_lon": 2.35827030620746, "coord": [48.82251923443529, 2.35827030620746], "stop_id": 5018414, "stop_desc": "150 AVENUE D'ITALIE - 75113", "stop_name": "MAISON BLANCHE"}, "geometry": {"type": "Point", "coordinates": [2.35827030620746, 48.82251923443529]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "15dc534273866768f1faf9779e15e59188e29900", "fields": {"departement": "94", "stop_lat": 48.81047498025869, "code_postal": "94043", "stop_lon": 2.361939589627888, "coord": [48.81047498025869, 2.361939589627888], "stop_id": 5018419, "stop_desc": "94-96 AVENUE DE FONTAINEBLEAU - 94043", "stop_name": "LE KREMLIN-BICETRE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.361939589627888, 48.81047498025869]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e4639ee817e723fb012fb496080437d19f169545", "fields": {"departement": "94", "stop_lat": 48.80727665850562, "code_postal": "94043", "stop_lon": 2.3543860945189143, "coord": [48.80727665850562, 2.3543860945189143], "stop_id": 5018425, "stop_desc": "25 AVENUE CHARLES GIDE - 94043", "stop_name": "BARNUFLES-LA PISCINE"}, "geometry": {"type": "Point", "coordinates": [2.3543860945189143, 48.80727665850562]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bf113efce638c20b8e94c8d43ae0f1865a602825", "fields": {"departement": "94", "stop_lat": 48.81193100032783, "code_postal": "94043", "stop_lon": 2.361926673680407, "coord": [48.81193100032783, 2.361926673680407], "stop_id": 5018428, "stop_desc": "55 AVENUE DE FONTAINEBLEAU - 94043", "stop_name": "CONVENTION - FONTAINEBLEAU"}, "geometry": {"type": "Point", "coordinates": [2.361926673680407, 48.81193100032783]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cee3c9b05f6ac6ed8a16d0fbb1b54619c7349f0e", "fields": {"departement": "94", "stop_lat": 48.814771316142455, "code_postal": "94043", "stop_lon": 2.361002603265579, "coord": [48.814771316142455, 2.361002603265579], "stop_id": 5018429, "stop_desc": "17 AVENUE DE FONTAINEBLEAU - 94043", "stop_name": "ROGER SALENGRO - FONTAINEBLEAU"}, "geometry": {"type": "Point", "coordinates": [2.361002603265579, 48.814771316142455]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cc768b1399524d98c1b1ff713c23ffae1a06b608", "fields": {"departement": "75", "stop_lat": 48.828172718149084, "code_postal": "75113", "stop_lon": 2.356829656095805, "coord": [48.828172718149084, 2.356829656095805], "stop_id": 5018434, "stop_desc": "27 AVENUE D'ITALIE - 75113", "stop_name": "VANDREZANNE"}, "geometry": {"type": "Point", "coordinates": [2.356829656095805, 48.828172718149084]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3b0db0dffaafe8557900c6194599b57da1a33130", "fields": {"departement": "92", "stop_lat": 48.82593195169939, "code_postal": "92072", "stop_lon": 2.219360657621989, "coord": [48.82593195169939, 2.219360657621989], "stop_id": 5018460, "stop_desc": "2 AVENUE DE LA DIVISION LECLERC - 92072", "stop_name": "PARC DE SAINT-CLOUD"}, "geometry": {"type": "Point", "coordinates": [2.219360657621989, 48.82593195169939]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c9290ad4eea4e98dce6acddcaec9567709265926", "fields": {"departement": "92", "stop_lat": 48.81183731423944, "code_postal": "92048", "stop_lon": 2.2368930295294303, "coord": [48.81183731423944, 2.2368930295294303], "stop_id": 5018466, "stop_desc": "PLACE RABELAIS - 92048", "stop_name": "RABELAIS"}, "geometry": {"type": "Point", "coordinates": [2.2368930295294303, 48.81183731423944]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8575dba74138ca7dc29e912e6f9c7eb4bdd50450", "fields": {"departement": "92", "stop_lat": 48.80635626509692, "code_postal": "92048", "stop_lon": 2.238686132716897, "coord": [48.80635626509692, 2.238686132716897], "stop_id": 5018468, "stop_desc": "31 AVENUE LOUVOIS - 92048", "stop_name": "VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.238686132716897, 48.80635626509692]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b82a688809ffd4461e5386f7826ce3cf8d70ac7a", "fields": {"departement": "92", "stop_lat": 48.81007452345811, "code_postal": "92048", "stop_lon": 2.2466124805574057, "coord": [48.81007452345811, 2.2466124805574057], "stop_id": 5018471, "stop_desc": "1 BIS RUE HENRI BARBUSSE - 92048", "stop_name": "PAUL BERT"}, "geometry": {"type": "Point", "coordinates": [2.2466124805574057, 48.81007452345811]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "13aee4dd7124400e0dbadfc7bdce30456ab67e29", "fields": {"departement": "92", "stop_lat": 48.808376802438694, "code_postal": "92048", "stop_lon": 2.2478945456893578, "coord": [48.808376802438694, 2.2478945456893578], "stop_id": 5018472, "stop_desc": "FACE 69 RUE DE BELGIQUE - 92048", "stop_name": "ORPHELINAT"}, "geometry": {"type": "Point", "coordinates": [2.2478945456893578, 48.808376802438694]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "53bc7c24b05a37e5110470b7e3220bf121bcebde", "fields": {"departement": "92", "stop_lat": 48.81924553941387, "code_postal": "92040", "stop_lon": 2.2648751050171123, "coord": [48.81924553941387, 2.2648751050171123], "stop_id": 5018478, "stop_desc": "11 RUE DE L'EGALITE - 92040", "stop_name": "DEFENSE - EGALITE"}, "geometry": {"type": "Point", "coordinates": [2.2648751050171123, 48.81924553941387]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d4523734582a1d046c8ebcad3277d75f78fd3ec5", "fields": {"departement": "92", "stop_lat": 48.81454049932141, "code_postal": "92075", "stop_lon": 2.272747707605776, "coord": [48.81454049932141, 2.272747707605776], "stop_id": 5018481, "stop_desc": "199 AVENUE DU GENERAL DE GAULLE - 92075", "stop_name": "GARE DE CLAMART"}, "geometry": {"type": "Point", "coordinates": [2.272747707605776, 48.81454049932141]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ee1d95c150357f2f580233f1fd8578e248581e7a", "fields": {"departement": "92", "stop_lat": 48.82435504441102, "code_postal": "92040", "stop_lon": 2.2726946740287097, "coord": [48.82435504441102, 2.2726946740287097], "stop_id": 5018485, "stop_desc": "FACE 34 RUE DIDEROT - 92040", "stop_name": "MAIRIE D'ISSY-METRO"}, "geometry": {"type": "Point", "coordinates": [2.2726946740287097, 48.82435504441102]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a608704274dcc2862d4235ce5bc9d9642faa2951", "fields": {"departement": "92", "stop_lat": 48.827501031407145, "code_postal": "92040", "stop_lon": 2.273262483998071, "coord": [48.827501031407145, 2.273262483998071], "stop_id": 5018486, "stop_desc": "5 RUE DU GOUVERNEUR GENERAL EBOUE - 92040", "stop_name": "VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.273262483998071, 48.827501031407145]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f51449dc073e0d44c2aa7b133b6554a67e6096ec", "fields": {"departement": "75", "stop_lat": 48.839993251238624, "code_postal": "75115", "stop_lon": 2.2722531268653094, "coord": [48.839993251238624, 2.2722531268653094], "stop_id": 5018494, "stop_desc": "5-7 RUE LEBLANC - 75115", "stop_name": "HOPITAL EUROPEEN GEORGES POMPIDOU"}, "geometry": {"type": "Point", "coordinates": [2.2722531268653094, 48.839993251238624]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d3b46fdad0f5aa7eb02866b0bc934e16da8720a4", "fields": {"departement": "92", "stop_lat": 48.91925830204555, "code_postal": "92004", "stop_lon": 2.3134315850183285, "coord": [48.91925830204555, 2.3134315850183285], "stop_id": 5020414, "stop_desc": "RUE PIERRE CURIE - 92004", "stop_name": "LES GRESILLONS RER"}, "geometry": {"type": "Point", "coordinates": [2.3134315850183285, 48.91925830204555]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3dfaea6048eb3b2a4d8845c67fe15f52bc0155b6", "fields": {"departement": "92", "stop_lat": 48.92677493166906, "code_postal": "92036", "stop_lon": 2.29406137822655, "coord": [48.92677493166906, 2.29406137822655], "stop_id": 5020427, "stop_desc": "2-4 RUE LOUIS CALMEL - 92036", "stop_name": "JAURES - CAMELINAT - MAIRIE"}, "geometry": {"type": "Point", "coordinates": [2.29406137822655, 48.92677493166906]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5c98d612420414380418d0fb2ead002853bb2fee", "fields": {"departement": "92", "stop_lat": 48.9247960072066, "code_postal": "92036", "stop_lon": 2.2893442681480756, "coord": [48.9247960072066, 2.2893442681480756], "stop_id": 5020428, "stop_desc": "60 RUE LOUIS CALMEL - 92036", "stop_name": "COUTURE D'AUXERRE"}, "geometry": {"type": "Point", "coordinates": [2.2893442681480756, 48.9247960072066]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7679112445cdd4e57b278e9a726df4521a35b569", "fields": {"departement": "92", "stop_lat": 48.92309594091905, "code_postal": "92004", "stop_lon": 2.285663691765125, "coord": [48.92309594091905, 2.285663691765125], "stop_id": 5020430, "stop_desc": "2 RUE EMILE ZOLA - 92004", "stop_name": "LES AGNETTES"}, "geometry": {"type": "Point", "coordinates": [2.285663691765125, 48.92309594091905]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1b763639f3fe7f048245e99b84418aa09a53d299", "fields": {"departement": "92", "stop_lat": 48.92293415829099, "code_postal": "92004", "stop_lon": 2.2856229402689876, "coord": [48.92293415829099, 2.2856229402689876], "stop_id": 5020431, "stop_desc": "5 RUE EMILE ZOLA - 92004", "stop_name": "LES AGNETTES"}, "geometry": {"type": "Point", "coordinates": [2.2856229402689876, 48.92293415829099]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3eee6df9249b664ca10fde778f35b96bfc8f63a2", "fields": {"departement": "92", "stop_lat": 48.92208826674183, "code_postal": "92004", "stop_lon": 2.283100878592332, "coord": [48.92208826674183, 2.283100878592332], "stop_id": 5020432, "stop_desc": "FACE 2 VILLA ROUVEYROL - 92004", "stop_name": "ROUVEYROL"}, "geometry": {"type": "Point", "coordinates": [2.283100878592332, 48.92208826674183]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "13e340f7e688e829fbf963a35f6b43b7f80e9eaa", "fields": {"departement": "92", "stop_lat": 48.92757405566248, "code_postal": "92025", "stop_lon": 2.272606929228948, "coord": [48.92757405566248, 2.272606929228948], "stop_id": 5020435, "stop_desc": "384 AVENUE D'ARGENTEUIL - 92025", "stop_name": "QUATRE ROUTES"}, "geometry": {"type": "Point", "coordinates": [2.272606929228948, 48.92757405566248]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2a6d0df2c9ad40d517cb1ab4ca50ab3e012217b6", "fields": {"departement": "92", "stop_lat": 48.92939052181482, "code_postal": "92004", "stop_lon": 2.274691466676802, "coord": [48.92939052181482, 2.274691466676802], "stop_id": 5020437, "stop_desc": "RUE DES MOURINOUX - 92004", "stop_name": "HENRI ROBERT"}, "geometry": {"type": "Point", "coordinates": [2.274691466676802, 48.92939052181482]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f92a785a2f334e71dcbce1c946b61f294ba901c3", "fields": {"departement": "92", "stop_lat": 48.92934046096847, "code_postal": "92025", "stop_lon": 2.265580518036377, "coord": [48.92934046096847, 2.265580518036377], "stop_id": 5020447, "stop_desc": "72 BOULEVARD MARCEAU - 92025", "stop_name": "MARCHE MARCEAU"}, "geometry": {"type": "Point", "coordinates": [2.265580518036377, 48.92934046096847]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5a47d9fc70cda36880939a583a62bcbc670f5875", "fields": {"departement": "92", "stop_lat": 48.9235833559115, "code_postal": "92025", "stop_lon": 2.2569830831008257, "coord": [48.9235833559115, 2.2569830831008257], "stop_id": 5020454, "stop_desc": "75 RUE DU BOURNARD - 92025", "stop_name": "RHIN ET DANUBE"}, "geometry": {"type": "Point", "coordinates": [2.2569830831008257, 48.9235833559115]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b05fd331de0187916b6e695a12128a1d76c5ba16", "fields": {"departement": "92", "stop_lat": 48.92718053581275, "code_postal": "92004", "stop_lon": 2.276221666862524, "coord": [48.92718053581275, 2.276221666862524], "stop_id": 5020461, "stop_desc": "155 RUE EMILE ZOLA - 92004", "stop_name": "4 ROUTES - ZOLA"}, "geometry": {"type": "Point", "coordinates": [2.276221666862524, 48.92718053581275]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fbe74f86d5ca9118275e3f9302e08db8044112f6", "fields": {"departement": "92", "stop_lat": 48.92150117940136, "code_postal": "92025", "stop_lon": 2.2482585186554163, "coord": [48.92150117940136, 2.2482585186554163], "stop_id": 5020476, "stop_desc": "22 RUE D'ESTIENNE D'ORVES - 92025", "stop_name": "JACQUES ELEONOR FERME"}, "geometry": {"type": "Point", "coordinates": [2.2482585186554163, 48.92150117940136]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9f9b5100865145041f4e52dc433ff84fa64deb39", "fields": {"departement": "92", "stop_lat": 48.91830787733932, "code_postal": "92025", "stop_lon": 2.244418558652691, "coord": [48.91830787733932, 2.244418558652691], "stop_id": 5020477, "stop_desc": "144 RUE D'ESTIENNE D'ORVES - 92025", "stop_name": "OSTYN"}, "geometry": {"type": "Point", "coordinates": [2.244418558652691, 48.91830787733932]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c7eebe51d0bae3d8e19f4a40be40ccc751ae6e76", "fields": {"departement": "92", "stop_lat": 48.914345795565694, "code_postal": "92025", "stop_lon": 2.2459528115584395, "coord": [48.914345795565694, 2.2459528115584395], "stop_id": 5020481, "stop_desc": "RUE DES VOIES DU BOIS - 92025", "stop_name": "RUE DE L'INDUSTRIE."}, "geometry": {"type": "Point", "coordinates": [2.2459528115584395, 48.914345795565694]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f39f7ac37c735b17ad68d8ac0b54ab52ce92eafc", "fields": {"departement": "92", "stop_lat": 48.922950031791494, "code_postal": "92025", "stop_lon": 2.250915352607325, "coord": [48.922950031791494, 2.250915352607325], "stop_id": 5020483, "stop_desc": "FACE 14 RUE GABRIEL PERI - 92025", "stop_name": "EGLISE DE COLOMBES"}, "geometry": {"type": "Point", "coordinates": [2.250915352607325, 48.922950031791494]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e805361bf816547bbe071c04f8d33d86588c4287", "fields": {"departement": "92", "stop_lat": 48.92274945264657, "code_postal": "92025", "stop_lon": 2.247042636051443, "coord": [48.92274945264657, 2.247042636051443], "stop_id": 5020484, "stop_desc": "2 RUE DU PRESIDENT SALVADOR ALLENDE - 92025", "stop_name": "CIMETIERE DE COLOMBES"}, "geometry": {"type": "Point", "coordinates": [2.247042636051443, 48.92274945264657]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "28bdea6b58c660b278e374c9f4373c83449c1202", "fields": {"departement": "92", "stop_lat": 48.92356223245536, "code_postal": "92025", "stop_lon": 2.240617855139097, "coord": [48.92356223245536, 2.240617855139097], "stop_id": 5020487, "stop_desc": "45/47 RUE DE L'EGALITE - 92025", "stop_name": "EGALITE"}, "geometry": {"type": "Point", "coordinates": [2.240617855139097, 48.92356223245536]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e0a68b8215416133f7c7303b95625f79baf0cdb7", "fields": {"departement": "78", "stop_lat": 48.784820502082965, "code_postal": "78640", "stop_lon": 2.218161851624238, "coord": [48.784820502082965, 2.218161851624238], "stop_id": 5067287, "stop_desc": "AVENUE MORANE SAULNIER - 78640", "stop_name": "VELIZY 2"}, "geometry": {"type": "Point", "coordinates": [2.218161851624238, 48.784820502082965]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4d189358f3f7c54a908881774bea2bf6659d502a", "fields": {"departement": "92", "stop_lat": 48.78486295296125, "code_postal": "92048", "stop_lon": 2.2248399939603316, "coord": [48.78486295296125, 2.2248399939603316], "stop_id": 5067322, "stop_desc": "14 R DE LA PEPINIERE - 92048", "stop_name": "DE LATTRE DE TASSIGNY"}, "geometry": {"type": "Point", "coordinates": [2.2248399939603316, 48.78486295296125]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4a6d1ea6cd6887c30049e4d2cfa9ec8831ba877b", "fields": {"departement": "92", "stop_lat": 48.78687634148946, "code_postal": "92023", "stop_lon": 2.245932069536149, "coord": [48.78687634148946, 2.245932069536149], "stop_id": 5067432, "stop_desc": "183 R DE LA PORTE DE TRIVAUX - 92023", "stop_name": "CIMETIERE INTERCOMMUNAL"}, "geometry": {"type": "Point", "coordinates": [2.245932069536149, 48.78687634148946]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "109c67d1ce0c30f1d97690855a067c63420f55d3", "fields": {"departement": "92", "stop_lat": 48.78302093644826, "code_postal": "92060", "stop_lon": 2.274310142531963, "coord": [48.78302093644826, 2.274310142531963], "stop_id": 5067465, "stop_desc": "138 AVENUE DE LA RESISTANCE - 92060", "stop_name": "HOPITAL MARIE LANNELONGUE"}, "geometry": {"type": "Point", "coordinates": [2.274310142531963, 48.78302093644826]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7a33ec907df2e0ae4fd1c29a3a8654d3b73a3327", "fields": {"departement": "92", "stop_lat": 48.78320064519593, "code_postal": "92060", "stop_lon": 2.2742147187596604, "coord": [48.78320064519593, 2.2742147187596604], "stop_id": 5067466, "stop_desc": "FACE 138 AVENUE DE LA RESISTANCE - 92060", "stop_name": "HOPITAL MARIE LANNELONGUE"}, "geometry": {"type": "Point", "coordinates": [2.2742147187596604, 48.78320064519593]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c2a37c6e84fe7c026608651d20bd9948b1b5c6a6", "fields": {"departement": "92", "stop_lat": 48.78332425037368, "code_postal": "92032", "stop_lon": 2.2886179098200774, "coord": [48.78332425037368, 2.2886179098200774], "stop_id": 5067471, "stop_desc": "17 BIS AVENUE PAUL LANGEVIN - 92032", "stop_name": "AUGUSTIN CLAUDE"}, "geometry": {"type": "Point", "coordinates": [2.2886179098200774, 48.78332425037368]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2ecf2b048d006035b88b0a09f40df52021802a63", "fields": {"departement": "92", "stop_lat": 48.78518996011179, "code_postal": "92071", "stop_lon": 2.3036728856596365, "coord": [48.78518996011179, 2.3036728856596365], "stop_id": 5067475, "stop_desc": "87-93 AVENUE DE BOURG LA REINE - 92071", "stop_name": "LES BLAGIS"}, "geometry": {"type": "Point", "coordinates": [2.3036728856596365, 48.78518996011179]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b0a4ed44114c020c9027eb04896c9f73387e97a9", "fields": {"departement": "92", "stop_lat": 48.78483172379547, "code_postal": "92071", "stop_lon": 2.308569578440949, "coord": [48.78483172379547, 2.308569578440949], "stop_id": 5067476, "stop_desc": "FACE 52 AVENUE DE BOURG LA REINE - 92071", "stop_name": "CLEMENCEAU"}, "geometry": {"type": "Point", "coordinates": [2.308569578440949, 48.78483172379547]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cc953c2c25cd9ce88938840acb3745d5aaff8956", "fields": {"departement": "92", "stop_lat": 48.782711905190155, "code_postal": "92014", "stop_lon": 2.3147998813643778, "coord": [48.782711905190155, 2.3147998813643778], "stop_id": 5067478, "stop_desc": "FACE 43 BOULEVARD DU MARECHAL JOFFRE - 92014", "stop_name": "RUE DU 8 MAI 1945"}, "geometry": {"type": "Point", "coordinates": [2.3147998813643778, 48.782711905190155]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "867b54b59c46759e4bb81c26f51b0d97000b6f32", "fields": {"departement": "92", "stop_lat": 48.78471150300271, "code_postal": "92032", "stop_lon": 2.2969269749916488, "coord": [48.78471150300271, 2.2969269749916488], "stop_id": 5067484, "stop_desc": "FACE 26 AVENUE JEAN PERRIN - 92032", "stop_name": "LEON BLUM"}, "geometry": {"type": "Point", "coordinates": [2.2969269749916488, 48.78471150300271]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1c343947ac995e1aa0a4744e6787c63b4fd2bec5", "fields": {"departement": "92", "stop_lat": 48.819900485958904, "code_postal": "92040", "stop_lon": 2.279165189847435, "coord": [48.819900485958904, 2.279165189847435], "stop_id": 5067577, "stop_desc": "60 AV DU GENERAL DE GAULLE - 92040", "stop_name": "JULES GUESDE"}, "geometry": {"type": "Point", "coordinates": [2.279165189847435, 48.819900485958904]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "93e2810f2e3a55832590ddec41eefcef3f0acc6e", "fields": {"departement": "92", "stop_lat": 48.81980175383032, "code_postal": "92040", "stop_lon": 2.2794375092954495, "coord": [48.81980175383032, 2.2794375092954495], "stop_id": 5067578, "stop_desc": "71 AV DU GENERAL DE GAULLE - 92040", "stop_name": "JULES GUESDE"}, "geometry": {"type": "Point", "coordinates": [2.2794375092954495, 48.81980175383032]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "826ab35a5bd2970c9af54daa9271415a03961381", "fields": {"departement": "92", "stop_lat": 48.8137044252038, "code_postal": "92023", "stop_lon": 2.272354089914435, "coord": [48.8137044252038, 2.272354089914435], "stop_id": 5067580, "stop_desc": "FACE 259 PLACE DE LA GARE - 92023", "stop_name": "GARE DE CLAMART"}, "geometry": {"type": "Point", "coordinates": [2.272354089914435, 48.8137044252038]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "439c7cdb4b59e37d0cfa08fe7aac2b5e9933d994", "fields": {"departement": "92", "stop_lat": 48.80604461268822, "code_postal": "92020", "stop_lon": 2.286229036011326, "coord": [48.80604461268822, 2.286229036011326], "stop_id": 5067583, "stop_desc": "FACE 44 BOULEVARD DE VANVES - 92020", "stop_name": "FELIX FAURE"}, "geometry": {"type": "Point", "coordinates": [2.286229036011326, 48.80604461268822]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b028122dc83be7e36e3ceeac2801fc34aac97238", "fields": {"departement": "92", "stop_lat": 48.79743234704115, "code_postal": "92020", "stop_lon": 2.2819248456131125, "coord": [48.79743234704115, 2.2819248456131125], "stop_id": 5067588, "stop_desc": "29 AVENUE DE LA DIVISION LECLERC - 92020", "stop_name": "LES SABLONS"}, "geometry": {"type": "Point", "coordinates": [2.2819248456131125, 48.79743234704115]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3dbab53e4bac11ab81e193f89718a4a37c79b921", "fields": {"departement": "92", "stop_lat": 48.79316722656794, "code_postal": "92023", "stop_lon": 2.272298135045123, "coord": [48.79316722656794, 2.272298135045123], "stop_id": 5067591, "stop_desc": "CHEMIN DE LA FOSSE BAZIN - 92023", "stop_name": "DIVISION LECLERC - FOSSE BAZIN"}, "geometry": {"type": "Point", "coordinates": [2.272298135045123, 48.79316722656794]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "772b7e4bfda25695fc4d285e83444a0eb2139924", "fields": {"departement": "92", "stop_lat": 48.79174189622364, "code_postal": "92032", "stop_lon": 2.2795639699284296, "coord": [48.79174189622364, 2.2795639699284296], "stop_id": 5067596, "stop_desc": "27 BIS AVENUE DU GENERAL LECLERC - 92032", "stop_name": "TENNIS - GENERAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.2795639699284296, 48.79174189622364]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a3bc2eca7b13cc86531db004481ff2234858b7ab", "fields": {"departement": "92", "stop_lat": 48.784934915038406, "code_postal": "92032", "stop_lon": 2.2932952520481065, "coord": [48.784934915038406, 2.2932952520481065], "stop_id": 5067607, "stop_desc": "7 AVENUE LOMBART - 92032", "stop_name": "GAMBETTA"}, "geometry": {"type": "Point", "coordinates": [2.2932952520481065, 48.784934915038406]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c51d76eef5ffab206d7eca4766aa7599e1dc55a3", "fields": {"departement": "92", "stop_lat": 48.818697289035434, "code_postal": "92048", "stop_lon": 2.229285292630867, "coord": [48.818697289035434, 2.229285292630867], "stop_id": 5073975, "stop_desc": "32 AVENUE DU GENERAL GALLIENI - 92048", "stop_name": "GARE DE BELLEVUE"}, "geometry": {"type": "Point", "coordinates": [2.229285292630867, 48.818697289035434]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "942a7d343b99eee6237888d976d120d47b127dc6", "fields": {"departement": "92", "stop_lat": 48.809683828737846, "code_postal": "92023", "stop_lon": 2.253104083076981, "coord": [48.809683828737846, 2.253104083076981], "stop_id": 5073987, "stop_desc": "163 RUE DE FLEURY - 92023", "stop_name": "RIVOLI"}, "geometry": {"type": "Point", "coordinates": [2.253104083076981, 48.809683828737846]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "31995e6839779b8f7670e138db323e47c3283477", "fields": {"departement": "92", "stop_lat": 48.81686043583961, "code_postal": "92040", "stop_lon": 2.274813495453526, "coord": [48.81686043583961, 2.274813495453526], "stop_id": 5073995, "stop_desc": "109 AVENUE DE LA PAIX - 92040", "stop_name": "GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.274813495453526, 48.81686043583961]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ee652722beb84f6e3dd4d24a8ea9e9a25c5f2887", "fields": {"departement": "78", "stop_lat": 48.798200571072, "code_postal": "78646", "stop_lon": 2.152515178234721, "coord": [48.798200571072, 2.152515178234721], "stop_id": 5079442, "stop_desc": "116 AVENUE DE PARIS - 78646", "stop_name": "PORCHEFONTAINE"}, "geometry": {"type": "Point", "coordinates": [2.152515178234721, 48.798200571072]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "db483b26dd80005ff44687c749f0e00ae9453d87", "fields": {"departement": "92", "stop_lat": 48.823217271990735, "code_postal": "92072", "stop_lon": 2.2102336043309494, "coord": [48.823217271990735, 2.2102336043309494], "stop_id": 5079457, "stop_desc": "FACE 8 AVENUE DE L'EUROPE - 92072", "stop_name": "MARCHE SAINT-ROMAIN"}, "geometry": {"type": "Point", "coordinates": [2.2102336043309494, 48.823217271990735]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "32ed4c62c6028ee27d2102595da65f064dfdad78", "fields": {"departement": "92", "stop_lat": 48.8123244792222, "code_postal": "92022", "stop_lon": 2.1873435364903364, "coord": [48.8123244792222, 2.1873435364903364], "stop_id": 5079462, "stop_desc": "FACE 23 RUE CARNOT - 92022", "stop_name": "GARE DE CHAVILLE RIVE DROITE"}, "geometry": {"type": "Point", "coordinates": [2.1873435364903364, 48.8123244792222]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5b191510e7b42c8480dee2b439f8b2bf9c8c1804", "fields": {"departement": "92", "stop_lat": 48.81869202615678, "code_postal": "92022", "stop_lon": 2.198226896460123, "coord": [48.81869202615678, 2.198226896460123], "stop_id": 5079469, "stop_desc": "155 AVENUE ROGER SALENGRO - 92022", "stop_name": "MARIVEL"}, "geometry": {"type": "Point", "coordinates": [2.198226896460123, 48.81869202615678]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a8303f49489e44b34a58e904c198992f8c4adb06", "fields": {"departement": "92", "stop_lat": 48.824749461223334, "code_postal": "92072", "stop_lon": 2.2143133818536844, "coord": [48.824749461223334, 2.2143133818536844], "stop_id": 5079473, "stop_desc": "53 GRANDE RUE - 92072", "stop_name": "MAIRIE DE SEVRES"}, "geometry": {"type": "Point", "coordinates": [2.2143133818536844, 48.824749461223334]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6254d0fa972b2faa62b78c6c81cb49f946ba9c98", "fields": {"departement": "92", "stop_lat": 48.81869202615678, "code_postal": "92022", "stop_lon": 2.198226896460123, "coord": [48.81869202615678, 2.198226896460123], "stop_id": 5079482, "stop_desc": "155 AVENUE ROGER SALENGRO - 92022", "stop_name": "MARIVEL"}, "geometry": {"type": "Point", "coordinates": [2.198226896460123, 48.81869202615678]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d48b613faa531806b482e18e1044fe02fa3423ef", "fields": {"departement": "92", "stop_lat": 48.824749461223334, "code_postal": "92072", "stop_lon": 2.2143133818536844, "coord": [48.824749461223334, 2.2143133818536844], "stop_id": 5079486, "stop_desc": "53 GRANDE RUE - 92072", "stop_name": "MAIRIE DE SEVRES"}, "geometry": {"type": "Point", "coordinates": [2.2143133818536844, 48.824749461223334]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f91e2e42c7d2fb4cca948536a5f0ddaae38dd389", "fields": {"departement": "75", "stop_lat": 48.89508299508572, "code_postal": "75117", "stop_lon": 2.3128702288076513, "coord": [48.89508299508572, 2.3128702288076513], "stop_id": 5081719, "stop_desc": "1 AVENUE DE LA PORTE DE CLICHY - 75117", "stop_name": "PORTE DE CLICHY-METRO"}, "geometry": {"type": "Point", "coordinates": [2.3128702288076513, 48.89508299508572]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7b3edc8d6e686fc5a35530f0c9d6d5923061d3d4", "fields": {"departement": "92", "stop_lat": 48.905822571831365, "code_postal": "92024", "stop_lon": 2.312769743465905, "coord": [48.905822571831365, 2.312769743465905], "stop_id": 5081730, "stop_desc": "FACE 30 RUE DU GENERAL ROGUET - 92024", "stop_name": "VILLENEUVE"}, "geometry": {"type": "Point", "coordinates": [2.312769743465905, 48.905822571831365]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c04e0449667d2d6ef621e784c651c4dd619a161a", "fields": {"departement": "92", "stop_lat": 48.93372468001589, "code_postal": "92036", "stop_lon": 2.3029354732296605, "coord": [48.93372468001589, 2.3029354732296605], "stop_id": 5081745, "stop_desc": "AVENUE MARCEL PAUL - 92036", "stop_name": "ROND-POINT PIERRE TIMBAUD"}, "geometry": {"type": "Point", "coordinates": [2.3029354732296605, 48.93372468001589]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3b8f21b0de5dd34b0c13e69ab3ff34a3b84c392a", "fields": {"departement": "95", "stop_lat": 49.007143630933236, "code_postal": "95680", "stop_lon": 2.397835691465533, "coord": [49.007143630933236, 2.397835691465533], "stop_id": 5726584, "stop_desc": "RUE HENRI SELLIER - 95680", "stop_name": "HENRI SELLIER"}, "geometry": {"type": "Point", "coordinates": [2.397835691465533, 49.007143630933236]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b6eed2b586eee17394e2e621d49bd09d413f998a", "fields": {"departement": "95", "stop_lat": 49.00257626307783, "code_postal": "95680", "stop_lon": 2.4022420525309895, "coord": [49.00257626307783, 2.4022420525309895], "stop_id": 5726596, "stop_desc": "AVENUE PIERRE SEMARD - 95680", "stop_name": "PIERRE SEMARD"}, "geometry": {"type": "Point", "coordinates": [2.4022420525309895, 49.00257626307783]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eca97cf33da370177b8eaad2867a5960fb85f8cd", "fields": {"departement": "93", "stop_lat": 48.944134615991395, "code_postal": "93066", "stop_lon": 2.357637516236243, "coord": [48.944134615991395, 2.357637516236243], "stop_id": 5726658, "stop_desc": "4 AVENUE DE STALINGRAD - 93066", "stop_name": "ROGER SEMAT"}, "geometry": {"type": "Point", "coordinates": [2.357637516236243, 48.944134615991395]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c3c92a8c949fbee58fecde7cfdc98cd500abebf7", "fields": {"departement": "75", "stop_lat": 48.862578527141316, "code_postal": "75101", "stop_lon": 2.336028731198637, "coord": [48.862578527141316, 2.336028731198637], "stop_id": 5727631, "stop_desc": "172 RUE DE RIVOLI - 75101", "stop_name": "PALAIS ROYAL - MUSEE DU LOUVRE"}, "geometry": {"type": "Point", "coordinates": [2.336028731198637, 48.862578527141316]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8e2e6fdf7750e70981419a67545f224b5d011d12", "fields": {"departement": "75", "stop_lat": 48.86512033825949, "code_postal": "75108", "stop_lon": 2.31758402476798, "coord": [48.86512033825949, 2.31758402476798], "stop_id": 5727635, "stop_desc": "COURS LA REINE - 75108", "stop_name": "COURS LA REINE - CHEVAUX DE MARLY"}, "geometry": {"type": "Point", "coordinates": [2.31758402476798, 48.86512033825949]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d1ca4ef797c7f153653f18eb8e9e436abf6e5c4a", "fields": {"departement": "75", "stop_lat": 48.8634972674574, "code_postal": "75116", "stop_lon": 2.296511540879861, "coord": [48.8634972674574, 2.296511540879861], "stop_id": 5727642, "stop_desc": "20 AVENUE DE NEW-YORK - 75116", "stop_name": "MUSEE D'ART MODERNE - PALAIS DE TOKYO"}, "geometry": {"type": "Point", "coordinates": [2.296511540879861, 48.8634972674574]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6ee200e975d5d9c0a7914e9a703d514008d59663", "fields": {"departement": "75", "stop_lat": 48.854225855580914, "code_postal": "75116", "stop_lon": 2.283008299964778, "coord": [48.854225855580914, 2.283008299964778], "stop_id": 5727649, "stop_desc": "78 AVENUE DU PRESIDENT KENNEDY - 75116", "stop_name": "LAMBALLE - ANKARA"}, "geometry": {"type": "Point", "coordinates": [2.283008299964778, 48.854225855580914]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "51e8b529e4c68a93bc6445c17dff02eb27cd839e", "fields": {"departement": "75", "stop_lat": 48.847040191869645, "code_postal": "75116", "stop_lon": 2.273578821194911, "coord": [48.847040191869645, 2.273578821194911], "stop_id": 5727667, "stop_desc": "55 AVENUE DE VERSAILLES - 75116", "stop_name": "PONT MIRABEAU"}, "geometry": {"type": "Point", "coordinates": [2.273578821194911, 48.847040191869645]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f7ad2f3115b657691fcbc5d3b3ae407db6713edc", "fields": {"departement": "75", "stop_lat": 48.84463919141917, "code_postal": "75116", "stop_lon": 2.271130714553106, "coord": [48.84463919141917, 2.271130714553106], "stop_id": 5727669, "stop_desc": "101 AVENUE DE VERSAILLES - 75116", "stop_name": "WILHEM"}, "geometry": {"type": "Point", "coordinates": [2.271130714553106, 48.84463919141917]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0644c1d781ff45036e256b4a26be93e9c2e551b5", "fields": {"departement": "75", "stop_lat": 48.84290336202021, "code_postal": "75116", "stop_lon": 2.2689406689398375, "coord": [48.84290336202021, 2.2689406689398375], "stop_id": 5727670, "stop_desc": "114 BIS AVENUE DE VERSAILLES - 75116", "stop_name": "VICTORIEN SARDOU"}, "geometry": {"type": "Point", "coordinates": [2.2689406689398375, 48.84290336202021]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "59451dde8f300cef4a91ebb413e1d8f318fac67f", "fields": {"departement": "75", "stop_lat": 48.84281366597419, "code_postal": "75116", "stop_lon": 2.2692539662291007, "coord": [48.84281366597419, 2.2692539662291007], "stop_id": 5727671, "stop_desc": "127 AVENUE DE VERSAILLES - 75116", "stop_name": "VICTORIEN SARDOU"}, "geometry": {"type": "Point", "coordinates": [2.2692539662291007, 48.84281366597419]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3b7aedee2a8006a99817b74fd2a52e59c0df73af", "fields": {"departement": "75", "stop_lat": 48.8409511553474, "code_postal": "75116", "stop_lon": 2.26568901604171, "coord": [48.8409511553474, 2.26568901604171], "stop_id": 5727673, "stop_desc": "167 AVENUE DE VERSAILLES - 75116", "stop_name": "VERSAILLES - EXELMANS"}, "geometry": {"type": "Point", "coordinates": [2.26568901604171, 48.8409511553474]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "872599a97246d33d2c5cf6410f957f7fa0d5bbda", "fields": {"departement": "75", "stop_lat": 48.83762840595535, "code_postal": "75116", "stop_lon": 2.255822632344983, "coord": [48.83762840595535, 2.255822632344983], "stop_id": 5727679, "stop_desc": "AVENUE DE LA PORTE DE SAINT CLOUD - 75116", "stop_name": "PORTE DE SAINT-CLOUD"}, "geometry": {"type": "Point", "coordinates": [2.255822632344983, 48.83762840595535]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a47253fe26783e9809ffc8b1e78887f4f2d836f1", "fields": {"departement": "92", "stop_lat": 48.83858682906072, "code_postal": "92012", "stop_lon": 2.251205514498708, "coord": [48.83858682906072, 2.251205514498708], "stop_id": 5727681, "stop_desc": "5 RTE DE LA REINE - 92012", "stop_name": "LA TOURELLE"}, "geometry": {"type": "Point", "coordinates": [2.251205514498708, 48.83858682906072]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2c3bda3254781077fec2d6bbea41855cc0517a0a", "fields": {"departement": "92", "stop_lat": 48.88265967317021, "code_postal": "92050", "stop_lon": 2.2014212020225927, "coord": [48.88265967317021, 2.2014212020225927], "stop_id": 4025246, "stop_desc": "1 R DES CHAILLIERS - 92050", "stop_name": "SAINT-CLOUD"}, "geometry": {"type": "Point", "coordinates": [2.2014212020225927, 48.88265967317021]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "25d24752b1a17291633a7a2454d60c6600b9ec89", "fields": {"departement": "92", "stop_lat": 48.880064167852545, "code_postal": "92050", "stop_lon": 2.203022278221524, "coord": [48.880064167852545, 2.203022278221524], "stop_id": 4025247, "stop_desc": "R DES CHAILLIERS - 92050", "stop_name": "CAMILLE DESMOULINS"}, "geometry": {"type": "Point", "coordinates": [2.203022278221524, 48.880064167852545]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9a1be957a0bf83ab3388b95efe814cbe6260e332", "fields": {"departement": "92", "stop_lat": 48.87514488031733, "code_postal": "92050", "stop_lon": 2.2082261364005986, "coord": [48.87514488031733, 2.2082261364005986], "stop_id": 4025253, "stop_desc": "102 CHE DU CALVAIRE - 92050", "stop_name": "CIMETIERE DU MONT VALERIEN"}, "geometry": {"type": "Point", "coordinates": [2.2082261364005986, 48.87514488031733]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a715524cbf4108758a8b2ed44583ea211b49b172", "fields": {"departement": "92", "stop_lat": 48.88666664451689, "code_postal": "92050", "stop_lon": 2.200252319642035, "coord": [48.88666664451689, 2.200252319642035], "stop_id": 4025255, "stop_desc": "PL DE LA BOULE - 92050", "stop_name": "PLACE LA BOULE - JOFFRE"}, "geometry": {"type": "Point", "coordinates": [2.200252319642035, 48.88666664451689]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f857a6fd3f4804a29282f184e52e3ca72b5a95f4", "fields": {"departement": "92", "stop_lat": 48.88495723387458, "code_postal": "92050", "stop_lon": 2.206620913412666, "coord": [48.88495723387458, 2.206620913412666], "stop_id": 4025278, "stop_desc": "43 R DE LA SOURCE - 92050", "stop_name": "LIBERATION"}, "geometry": {"type": "Point", "coordinates": [2.206620913412666, 48.88495723387458]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "559a7bb4d79dd7d5db68e75efca659d747a03fdc", "fields": {"departement": "92", "stop_lat": 48.89893064237258, "code_postal": "92050", "stop_lon": 2.2134830976924333, "coord": [48.89893064237258, 2.2134830976924333], "stop_id": 4025282, "stop_desc": "BOULEVARD JULES MANSARD - 92050", "stop_name": "SOUFFLOT"}, "geometry": {"type": "Point", "coordinates": [2.2134830976924333, 48.89893064237258]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f4717e878ab3ed136e13a95b416e53cb10623186", "fields": {"departement": "92", "stop_lat": 48.89223559380681, "code_postal": "92050", "stop_lon": 2.205457691363943, "coord": [48.89223559380681, 2.205457691363943], "stop_id": 4025290, "stop_desc": "69-89 R DU 8 MAI 1945 - 92050", "stop_name": "HOTEL DE VILLE - CITE ADMINISTRATIVE"}, "geometry": {"type": "Point", "coordinates": [2.205457691363943, 48.89223559380681]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "18a790879616cfb78a048c0d1b9afd43d9d8daee", "fields": {"departement": "92", "stop_lat": 48.88918988384211, "code_postal": "92050", "stop_lon": 2.198378520180127, "coord": [48.88918988384211, 2.198378520180127], "stop_id": 4025293, "stop_desc": "FACE 13 PL GABRIEL PERI - 92050", "stop_name": "GABRIEL PERI"}, "geometry": {"type": "Point", "coordinates": [2.198378520180127, 48.88918988384211]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9a57c9552f07fe8a056e9d57bbd41004d5375533", "fields": {"departement": "92", "stop_lat": 48.89787377975509, "code_postal": "92050", "stop_lon": 2.1927392886770676, "coord": [48.89787377975509, 2.1927392886770676], "stop_id": 4025298, "stop_desc": "R DE ZILINA - 92050", "stop_name": "ZILINA"}, "geometry": {"type": "Point", "coordinates": [2.1927392886770676, 48.89787377975509]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "28e343d39f1eed27b86d5a2b63d75b326d39e58b", "fields": {"departement": "92", "stop_lat": 48.89428070416549, "code_postal": "92050", "stop_lon": 2.1942213507951274, "coord": [48.89428070416549, 2.1942213507951274], "stop_id": 4025301, "stop_desc": "49-51 R DE STALINGRAD - 92050", "stop_name": "STALINGRAD"}, "geometry": {"type": "Point", "coordinates": [2.1942213507951274, 48.89428070416549]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3d9e9b5347bd1c46ff5dd1606ad74546059df9a6", "fields": {"departement": "92", "stop_lat": 48.89159964737942, "code_postal": "92050", "stop_lon": 2.1918436187226766, "coord": [48.89159964737942, 2.1918436187226766], "stop_id": 4025303, "stop_desc": "70 R HENRI BARBUSSE - 92050", "stop_name": "PLACE DES MARRONNIERS"}, "geometry": {"type": "Point", "coordinates": [2.1918436187226766, 48.89159964737942]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ea459d22932c7f54d85b6b00677c2daad282308e", "fields": {"departement": "92", "stop_lat": 48.87355000092686, "code_postal": "92063", "stop_lon": 2.168909574612184, "coord": [48.87355000092686, 2.168909574612184], "stop_id": 4025313, "stop_desc": "FACE 2 AV DU CHATEAU DE MALMAISON - 92063", "stop_name": "COLLEGE LA MALMAISON"}, "geometry": {"type": "Point", "coordinates": [2.168909574612184, 48.87355000092686]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4141c6a2720fe518e67c1665e5627aad1581b75b", "fields": {"departement": "92", "stop_lat": 48.8619959473294, "code_postal": "92063", "stop_lon": 2.1590987005596496, "coord": [48.8619959473294, 2.1590987005596496], "stop_id": 4025323, "stop_desc": "R DES PERVENCHES - 92063", "stop_name": "LES PINCE-VINS"}, "geometry": {"type": "Point", "coordinates": [2.1590987005596496, 48.8619959473294]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4ee3e817ae5481f75c7149ca057308efa497b32b", "fields": {"departement": "92", "stop_lat": 48.863214844858305, "code_postal": "92063", "stop_lon": 2.1628813934563875, "coord": [48.863214844858305, 2.1628813934563875], "stop_id": 4025324, "stop_desc": "FACE 15-17 R DE LA BERGERIE - 92063", "stop_name": "BERGERIE."}, "geometry": {"type": "Point", "coordinates": [2.1628813934563875, 48.863214844858305]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "63635a56cc843120af3c54d382cd5d30516ef180", "fields": {"departement": "92", "stop_lat": 48.86905248253413, "code_postal": "92063", "stop_lon": 2.1725888716671746, "coord": [48.86905248253413, 2.1725888716671746], "stop_id": 4025327, "stop_desc": "AV DE VERSAILLES - 92063", "stop_name": "TUCK STELL."}, "geometry": {"type": "Point", "coordinates": [2.1725888716671746, 48.86905248253413]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3052992320fb87ca6bd222c2b689eb96a5ec80e8", "fields": {"departement": "92", "stop_lat": 48.873406281292276, "code_postal": "92063", "stop_lon": 2.168964539448772, "coord": [48.873406281292276, 2.168964539448772], "stop_id": 4025328, "stop_desc": "FACE 2 AV DU CHATEAU DE MALMAISON - 92063", "stop_name": "COLLEGE LA MALMAISON."}, "geometry": {"type": "Point", "coordinates": [2.168964539448772, 48.873406281292276]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "16ef9521a07d33dc650ec4e92d2a69ca94272134", "fields": {"departement": "92", "stop_lat": 48.87137676953357, "code_postal": "92063", "stop_lon": 2.1834670740107733, "coord": [48.87137676953357, 2.1834670740107733], "stop_id": 4025334, "stop_desc": "FACE 27-29 BOULEVARD RICHELIEU - 92063", "stop_name": "ZURICH"}, "geometry": {"type": "Point", "coordinates": [2.1834670740107733, 48.87137676953357]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "246620da73ce56a02b75daa0fa2e24e9739b9da8", "fields": {"departement": "92", "stop_lat": 48.868432241908984, "code_postal": "92063", "stop_lon": 2.1860642215654074, "coord": [48.868432241908984, 2.1860642215654074], "stop_id": 4025336, "stop_desc": "FACE 7 AV DE BUZENVAL - 92063", "stop_name": "PLACE BESCHE"}, "geometry": {"type": "Point", "coordinates": [2.1860642215654074, 48.868432241908984]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e364c588d17198f888c00d3f16c17e6845e91a5c", "fields": {"departement": "92", "stop_lat": 48.859419591611264, "code_postal": "92063", "stop_lon": 2.1947397448568964, "coord": [48.859419591611264, 2.1947397448568964], "stop_id": 4025346, "stop_desc": "FACE 130 R DU LIEUTENANT COLONEL DE MONTBRISON - 92063", "stop_name": "DUMOURIEZ"}, "geometry": {"type": "Point", "coordinates": [2.1947397448568964, 48.859419591611264]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "41db106dae10ee64d95e4c4d03da5bd8fa43424c", "fields": {"departement": "92", "stop_lat": 48.85899141863995, "code_postal": "92063", "stop_lon": 2.1900008999297196, "coord": [48.85899141863995, 2.1900008999297196], "stop_id": 4025347, "stop_desc": "AV DU MARECHAL LECLERC DE HAUTECLOQUE - 92063", "stop_name": "HENRI REGNAULT"}, "geometry": {"type": "Point", "coordinates": [2.1900008999297196, 48.85899141863995]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "198b6e181fa7914783f0c2fd459a12b770ddf322", "fields": {"departement": "92", "stop_lat": 48.85893705593453, "code_postal": "92063", "stop_lon": 2.189646915093643, "coord": [48.85893705593453, 2.189646915093643], "stop_id": 4025348, "stop_desc": "FACE 353 RTE DE L'EMPEREUR - 92063", "stop_name": "PLACE DE BUZENVAL"}, "geometry": {"type": "Point", "coordinates": [2.189646915093643, 48.85893705593453]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a5527fb0f25cb20949923bcf0fa60dc309b29091", "fields": {"departement": "92", "stop_lat": 48.89561709628899, "code_postal": "92050", "stop_lon": 2.216121673073011, "coord": [48.89561709628899, 2.216121673073011], "stop_id": 4025354, "stop_desc": "R PABLO NERUDA - 92050", "stop_name": "DROITS DE L'HOMME"}, "geometry": {"type": "Point", "coordinates": [2.216121673073011, 48.89561709628899]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "69cd3767efc3fcfe69cd9e41db89e0d9a3c5ed60", "fields": {"departement": "75", "stop_lat": 48.88232802491925, "code_postal": "75119", "stop_lon": 2.3704769687699216, "coord": [48.88232802491925, 2.3704769687699216], "stop_id": 1902, "stop_desc": "Villette (entr\u00e9e sous viaduc face au 196 boulevard de la) - 75119", "stop_name": "Jaur\u00e8s"}, "geometry": {"type": "Point", "coordinates": [2.3704769687699216, 48.88232802491925]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6b422a15a58d3df110597d09a2a2ab466d620489", "fields": {"departement": "75", "stop_lat": 48.84207702018728, "code_postal": "75114", "stop_lon": 2.321010449555117, "coord": [48.84207702018728, 2.321010449555117], "stop_id": 1827, "stop_desc": "Raoul Dautry (place, SNCF Montparnasse) - 75114", "stop_name": "Montparnasse-Bienvenue"}, "geometry": {"type": "Point", "coordinates": [2.321010449555117, 48.84207702018728]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e33f4e0bd9bbdd8ee7c57c09a4aeea657a0e2e5f", "fields": {"departement": "75", "stop_lat": 48.846848768895974, "code_postal": "75107", "stop_lon": 2.3169373108340854, "coord": [48.846848768895974, 2.3169373108340854], "stop_id": 1927, "stop_desc": "L\u00e9on-Paul Fargue (place, 1 boulevard du Montparnasse) - 75107", "stop_name": "Duroc"}, "geometry": {"type": "Point", "coordinates": [2.3169373108340854, 48.846848768895974]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f76fc4cc98a3b117856b44dff183d63dad725f85", "fields": {"departement": "93", "stop_lat": 48.85346032384484, "code_postal": "93049", "stop_lon": 2.5137606489199347, "coord": [48.85346032384484, 2.5137606489199347], "stop_id": 1837, "stop_desc": "Gallieni (boulevard, c\u00f4t\u00e9 pair) - 93049", "stop_name": "Neuilly-Plaisance"}, "geometry": {"type": "Point", "coordinates": [2.5137606489199347, 48.85346032384484]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a247dfee90d7220cffc9eebd5fa26a11c736b6c6", "fields": {"departement": "75", "stop_lat": 48.88253647289218, "code_postal": "75117", "stop_lon": 2.311009243005514, "coord": [48.88253647289218, 2.311009243005514], "stop_id": 1881, "stop_desc": "Villiers (48 avenue de, Mus\u00e9e Henner) - 75117", "stop_name": "Malesherbes"}, "geometry": {"type": "Point", "coordinates": [2.311009243005514, 48.88253647289218]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4dc5f9a19b7938409514cb67ba6a2909aad939e4", "fields": {"departement": "78", "stop_lat": 48.89009570633796, "code_postal": "78650", "stop_lon": 2.1343746143232596, "coord": [48.89009570633796, 2.1343746143232596], "stop_id": 1850, "stop_desc": "Maurice Berteaux (rue) - 78650", "stop_name": "Le V\u00e9sinet-Centre"}, "geometry": {"type": "Point", "coordinates": [2.1343746143232596, 48.89009570633796]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4f80a7971d3c1b24e811f2ce47aad9be196cff53", "fields": {"departement": "78", "stop_lat": 48.89835089406469, "code_postal": "78650", "stop_lon": 2.121828925443024, "coord": [48.89835089406469, 2.121828925443024], "stop_id": 1851, "stop_desc": "Georges Bizet (avenue) - 78650", "stop_name": "Le V\u00e9sinet-Le Pecq"}, "geometry": {"type": "Point", "coordinates": [2.121828925443024, 48.89835089406469]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0c61ab2f18cbb2eaf49c2c1ef21aa90a3f04b7a1", "fields": {"departement": "92", "stop_lat": 48.8224426939998, "code_postal": "92020", "stop_lon": 2.2979321053287274, "coord": [48.8224426939998, 2.2979321053287274], "stop_id": 1879, "stop_desc": "Vanves - 92020", "stop_name": "Malakoff-Plateau de Vanves"}, "geometry": {"type": "Point", "coordinates": [2.2979321053287274, 48.8224426939998]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1b700b02c28cc5b2e18d53e6f8fd11921f760dc7", "fields": {"departement": "93", "stop_lat": 48.89363252797401, "code_postal": "93055", "stop_lon": 2.41290026603005, "coord": [48.89363252797401, 2.41290026603005], "stop_id": 1932, "stop_desc": "Rue Charles Auffrey - 93055", "stop_name": "Eglise de Pantin"}, "geometry": {"type": "Point", "coordinates": [2.41290026603005, 48.89363252797401]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "221cf6e4a6b12dfb1341b428d875987e0bfe8395", "fields": {"departement": "75", "stop_lat": 48.86371036646956, "code_postal": "75101", "stop_lon": 2.3489831961271017, "coord": [48.86371036646956, 2.3489831961271017], "stop_id": 1934, "stop_desc": "Turbigo (14 rue) - 75101", "stop_name": "Etienne Marcel"}, "geometry": {"type": "Point", "coordinates": [2.3489831961271017, 48.86371036646956]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b2dc3a105ae3f79f47c4e3cf8e10003b5bfde897", "fields": {"departement": "75", "stop_lat": 48.87194579797485, "code_postal": "75119", "stop_lon": 2.3767510413738, "coord": [48.87194579797485, 2.3767510413738], "stop_id": 2066, "stop_desc": "Villette (terre-plein face au 1 boulevard de la) - 75119", "stop_name": "Belleville"}, "geometry": {"type": "Point", "coordinates": [2.3767510413738, 48.87194579797485]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6a1803eacb558c3edb099fbef6deb5ec1eed9c6f", "fields": {"departement": "75", "stop_lat": 48.867744026068706, "code_postal": "75108", "stop_lon": 2.3141227803741415, "coord": [48.867744026068706, 2.3141227803741415], "stop_id": 2083, "stop_desc": "Cl\u00e9menceau (place) - 75108", "stop_name": "Champs-Elys\u00e9es-Cl\u00e9menceau"}, "geometry": {"type": "Point", "coordinates": [2.3141227803741415, 48.867744026068706]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "073b814f0899289abb6fa21602c188e5bcc19133", "fields": {"departement": "75", "stop_lat": 48.87845656683119, "code_postal": "75110", "stop_lon": 2.3620537162488993, "coord": [48.87845656683119, 2.3620537162488993], "stop_id": 2085, "stop_desc": "Faubourg Saint-Martin (188 rue du) - 75110", "stop_name": "Ch\u00e2teau Landon"}, "geometry": {"type": "Point", "coordinates": [2.3620537162488993, 48.87845656683119]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5ea044465caf653963976987481d9fb9a387705c", "fields": {"departement": "93", "stop_lat": 48.907147312551565, "code_postal": "93008", "stop_lon": 2.44945750453114, "coord": [48.907147312551565, 2.44945750453114], "stop_id": 2089, "stop_desc": "Pr\u00e9fecture Tr\u00e9sorerie - 93008", "stop_name": "Bobigny-Pablo-Picasso"}, "geometry": {"type": "Point", "coordinates": [2.44945750453114, 48.907147312551565]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5112f65e6693392b015e6c1167d2b9fd173113ac", "fields": {"departement": "77", "stop_lat": 48.83665082820275, "code_postal": "77058", "stop_lon": 2.709854058543625, "coord": [48.83665082820275, 2.709854058543625], "stop_id": 2012, "stop_desc": "Gare (Rocade de la) - 77058", "stop_name": "Bussy-Saint-Georges"}, "geometry": {"type": "Point", "coordinates": [2.709854058543625, 48.83665082820275]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d36e18358b2fd4a49d44c337dd56f1adbfd3a868", "fields": {"departement": "75", "stop_lat": 48.86429867104669, "code_postal": "75116", "stop_lon": 2.3012514104499293, "coord": [48.86429867104669, 2.3012514104499293], "stop_id": 2043, "stop_desc": "Th\u00e9\u00e2tre des Champs-\u00c9lys\u00e9es - 75116", "stop_name": "Alma-Marceau"}, "geometry": {"type": "Point", "coordinates": [2.3012514104499293, 48.86429867104669]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "86cdc5ac5567ae7919e5dd704bce27cfcf338c58", "fields": {"departement": "78", "stop_lat": 48.98941774049155, "code_postal": "78172", "stop_lon": 2.074189247151442, "coord": [48.98941774049155, 2.074189247151442], "stop_id": 1983, "stop_desc": "Clemenceau (Place) - 78172", "stop_name": "Conflans-Fin d'Oise"}, "geometry": {"type": "Point", "coordinates": [2.074189247151442, 48.98941774049155]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "da7c0237ea04a96d4b646dd25e26fad98b176033", "fields": {"departement": "75", "stop_lat": 48.877803956007845, "code_postal": "75119", "stop_lon": 2.3812110997359883, "coord": [48.877803956007845, 2.3812110997359883], "stop_id": 2013, "stop_desc": "Botzaris (28 rue) - 75119", "stop_name": "Buttes-Chaumont"}, "geometry": {"type": "Point", "coordinates": [2.3812110997359883, 48.877803956007845]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5138e31b74cbb80bbc39649fc8b7341972f8691d", "fields": {"departement": "75", "stop_lat": 48.84019224440348, "code_postal": "75112", "stop_lon": 2.3794772572660587, "coord": [48.84019224440348, 2.3794772572660587], "stop_id": 2068, "stop_desc": "Place du Bataillon du Pacifique - 75112", "stop_name": "Bercy"}, "geometry": {"type": "Point", "coordinates": [2.3794772572660587, 48.84019224440348]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "75703b91fd921b1eaa8cd196ad27b751445096f5", "fields": {"departement": "91", "stop_lat": 48.69842449558706, "code_postal": "91272", "stop_lon": 2.1372675003239285, "coord": [48.69842449558706, 2.1372675003239285], "stop_id": 2078, "stop_desc": "Rue du Clos - 91272", "stop_name": "Gif-sur-Yvette"}, "geometry": {"type": "Point", "coordinates": [2.1372675003239285, 48.69842449558706]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9c22573f45696cb02df144d339dfdd66022e7854", "fields": {"departement": "75", "stop_lat": 48.86338738506552, "code_postal": "75101", "stop_lon": 2.3354838367723683, "coord": [48.86338738506552, 2.3354838367723683], "stop_id": 1774, "stop_desc": "Th\u00e9\u00e2tre de la Com\u00e9die Fran\u00e7aise - Th\u00e9\u00e2tre du Palais Royal - 75101", "stop_name": "Palais-Royal (Mus\u00e9e du Louvre)"}, "geometry": {"type": "Point", "coordinates": [2.3354838367723683, 48.86338738506552]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b8e5b1f2eaf85d5b61ca48f69770252961c70d6f", "fields": {"departement": "75", "stop_lat": 48.87353214061607, "code_postal": "75108", "stop_lon": 2.3155780248661895, "coord": [48.87353214061607, 2.3155780248661895], "stop_id": 1819, "stop_desc": "Percier (1 avenue, angle avec le 42 rue de la Bo\u00cdtie) - 75108", "stop_name": "Miromesnil"}, "geometry": {"type": "Point", "coordinates": [2.3155780248661895, 48.87353214061607]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f46dbf32aa56e1ae39da4283bc6513f6bcc1064f", "fields": {"departement": "75", "stop_lat": 48.865705787623, "code_postal": "75111", "stop_lon": 2.3844293751632057, "coord": [48.865705787623, 2.3844293751632057], "stop_id": 1812, "stop_desc": "M\u00e9nilmontant (139/148 boulevard de) - 75111", "stop_name": "M\u00e9nilmontant"}, "geometry": {"type": "Point", "coordinates": [2.3844293751632057, 48.865705787623]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e8e63370fa586c8b790360d397f53044d177e11f", "fields": {"departement": "75", "stop_lat": 48.87672946890669, "code_postal": "75119", "stop_lon": 2.393146031767842, "coord": [48.87672946890669, 2.393146031767842], "stop_id": 1798, "stop_desc": "F\u00eates (place des, rue Compans) - 75119", "stop_name": "Place des F\u00eates"}, "geometry": {"type": "Point", "coordinates": [2.393146031767842, 48.87672946890669]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "44a41ec3ad840f1ee515664825bd6c9109da8efa", "fields": {"departement": "77", "stop_lat": 48.975712599402996, "code_postal": "77294", "stop_lon": 2.6421606837255793, "coord": [48.975712599402996, 2.6421606837255793], "stop_id": 1821, "stop_desc": "Gare (place de la) - 77294", "stop_name": "Mitry-Claye"}, "geometry": {"type": "Point", "coordinates": [2.6421606837255793, 48.975712599402996]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d3c06c7cfd1f111151770910d2d4eb293b14f224", "fields": {"departement": "75", "stop_lat": 48.84532311461395, "code_postal": "75112", "stop_lon": 2.4017863137606863, "coord": [48.84532311461395, 2.4017863137606863], "stop_id": 1789, "stop_desc": "Saint-Mand\u00e9 (46 avenue de) - 75112", "stop_name": "Picpus"}, "geometry": {"type": "Point", "coordinates": [2.4017863137606863, 48.84532311461395]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c59a0bffb619c179d29553fb63d9696402254322", "fields": {"departement": "75", "stop_lat": 48.88242252841757, "code_postal": "75118", "stop_lon": 2.337254682101535, "coord": [48.88242252841757, 2.337254682101535], "stop_id": 1791, "stop_desc": "Clichy (26 boulevard de) - 75118", "stop_name": "Pigalle"}, "geometry": {"type": "Point", "coordinates": [2.337254682101535, 48.88242252841757]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8f2cb3ddce0b36ced22f91ecc9263a6973a5c17d", "fields": {"departement": "75", "stop_lat": 48.8428305421094, "code_postal": "75115", "stop_lon": 2.3126633077591134, "coord": [48.8428305421094, 2.3126633077591134], "stop_id": 1782, "stop_desc": "Vaugirard (183 rue de) - 75115", "stop_name": "Pasteur"}, "geometry": {"type": "Point", "coordinates": [2.3126633077591134, 48.8428305421094]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a186572cf965e33441e68461b3f7ca13625a5397", "fields": {"departement": "75", "stop_lat": 48.8850310612536, "code_postal": "75117", "stop_lon": 2.2971351115061647, "coord": [48.8850310612536, 2.2971351115061647], "stop_id": 1786, "stop_desc": "Square Albert Besnard - 75117", "stop_name": "Pereire"}, "geometry": {"type": "Point", "coordinates": [2.2971351115061647, 48.8850310612536]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ab3e30f602f5f978d93bdf695d8b520fd6787395", "fields": {"departement": "75", "stop_lat": 48.83175809378841, "code_postal": "75114", "stop_lon": 2.3138665498481625, "coord": [48.83175809378841, 2.3138665498481625], "stop_id": 1799, "stop_desc": "H\u00f4pitaux - 75114", "stop_name": "Plaisance"}, "geometry": {"type": "Point", "coordinates": [2.3138665498481625, 48.83175809378841]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ff71cbf50c8f8ab43610238ce7eb4a66c24ca1e7", "fields": {"departement": "75", "stop_lat": 48.872985824665165, "code_postal": "75109", "stop_lon": 2.33342622405285, "coord": [48.872985824665165, 2.33342622405285], "stop_id": 1971, "stop_desc": "La Fayette (rue, face aux Galeries La Fayette) - 75109", "stop_name": "Chauss\u00e9e d'Antin (La Fayette)"}, "geometry": {"type": "Point", "coordinates": [2.33342622405285, 48.872985824665165]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "37b2d6e26bee70a93fb42536e94dc7c9dfc12eb8", "fields": {"departement": "92", "stop_lat": 48.891826754836515, "code_postal": "92062", "stop_lon": 2.237992043215619, "coord": [48.891826754836515, 2.237992043215619], "stop_id": 1887, "stop_desc": "Carpeaux (rue, gare du RER La D\u00e9fense) - 92062", "stop_name": "La D\u00e9fense (Grande Arche)"}, "geometry": {"type": "Point", "coordinates": [2.237992043215619, 48.891826754836515]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "af045697b447711e40786306c80023aff9d7a7e3", "fields": {"departement": "75", "stop_lat": 48.87001535524704, "code_postal": "75110", "stop_lon": 2.3707687990214654, "coord": [48.87001535524704, 2.3707687990214654], "stop_id": 1963, "stop_desc": "Parmentier (152 avenue) - 75110", "stop_name": "Goncourt (H\u00f4pital Saint-Louis)"}, "geometry": {"type": "Point", "coordinates": [2.3707687990214654, 48.87001535524704]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cee028fa1df7bef373265c55bb86b69b4140b8f8", "fields": {"departement": "75", "stop_lat": 48.83496497071995, "code_postal": "75113", "stop_lon": 2.3680913458793973, "coord": [48.83496497071995, 2.3680913458793973], "stop_id": 1974, "stop_desc": "Vincent Auriol (terre-plein face au 79 boulevard) - 75113", "stop_name": "Chevaleret"}, "geometry": {"type": "Point", "coordinates": [2.3680913458793973, 48.83496497071995]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5ac104df391c361235fd2ea74a7c67a7d51e188b", "fields": {"departement": "75", "stop_lat": 48.86146371055862, "code_postal": "75101", "stop_lon": 2.346844131603014, "coord": [48.86146371055862, 2.346844131603014], "stop_id": 1967, "stop_desc": "Forum des Halles Centre G. Pompidou - 75101", "stop_name": "Ch\u00e2telet-Les Halles"}, "geometry": {"type": "Point", "coordinates": [2.346844131603014, 48.86146371055862]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b3c0122bcbef8a1fd3808c3ab10de5693add360f", "fields": {"departement": "75", "stop_lat": 48.858857284381365, "code_postal": "75101", "stop_lon": 2.347769856742684, "coord": [48.858857284381365, 2.347769856742684], "stop_id": 1965, "stop_desc": "Victoria (7 avenue, 4 rue Saint-Martin) - 75101", "stop_name": "Ch\u00e2telet"}, "geometry": {"type": "Point", "coordinates": [2.347769856742684, 48.858857284381365]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a1e2cb123756ea0da56daa2fd719b8ad803212c6", "fields": {"departement": "75", "stop_lat": 48.87974306422535, "code_postal": "75110", "stop_lon": 2.3546008104722334, "coord": [48.87974306422535, 2.3546008104722334], "stop_id": 1957, "stop_desc": "Rue du Faubourg St Denis - 75110", "stop_name": "Gare du Nord"}, "geometry": {"type": "Point", "coordinates": [2.3546008104722334, 48.87974306422535]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cec6eba87d200c330699fb0712d2176b5fcbeac0", "fields": {"departement": "75", "stop_lat": 48.87938330261579, "code_postal": "75110", "stop_lon": 2.356372081359306, "coord": [48.87938330261579, 2.356372081359306], "stop_id": 1958, "stop_desc": "Rue du Faubourg St Denis - 75110", "stop_name": "Gare du Nord"}, "geometry": {"type": "Point", "coordinates": [2.356372081359306, 48.87938330261579]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8c7f3163b8eacdbdd427fe5f33f981ef286d68be", "fields": {"departement": "92", "stop_lat": 48.916574835983226, "code_postal": "92004", "stop_lon": 2.2943289646870606, "coord": [48.916574835983226, 2.2943289646870606], "stop_id": 1947, "stop_desc": "Gare routi\u00e8re - 92004", "stop_name": "Gabriel-P\u00e9ri"}, "geometry": {"type": "Point", "coordinates": [2.2943289646870606, 48.916574835983226]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b0081a430ad67545492f30d063f7e1e4c3d3527f", "fields": {"departement": "75", "stop_lat": 48.864782700687876, "code_postal": "75120", "stop_lon": 2.398445833771861, "coord": [48.864782700687876, 2.398445833771861], "stop_id": 1950, "stop_desc": "P\u00e8re-Lachaise - 75120", "stop_name": "Gambetta"}, "geometry": {"type": "Point", "coordinates": [2.398445833771861, 48.864782700687876]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e7d7dfdb0afd6afcb317b6baf9eebe747ae33c66", "fields": {"departement": "75", "stop_lat": 48.89752915689145, "code_postal": "75119", "stop_lon": 2.3856442301273044, "coord": [48.89752915689145, 2.3856442301273044], "stop_id": 1744, "stop_desc": "Porte de la Villette (avenue de la, terminus PC) - 75119", "stop_name": "Porte de la Villette"}, "geometry": {"type": "Point", "coordinates": [2.3856442301273044, 48.89752915689145]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5c3f62f56c251b2dec15627a1c5cc97d1755e766", "fields": {"departement": "75", "stop_lat": 48.86408940574645, "code_postal": "75111", "stop_lon": 2.3808997885521195, "coord": [48.86408940574645, 2.3808997885521195], "stop_id": 1728, "stop_desc": "Servan (71 rue, rue Guillaume Bertrand) - 75111", "stop_name": "Rue Saint-Maur"}, "geometry": {"type": "Point", "coordinates": [2.3808997885521195, 48.86408940574645]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1a9917fa72a80c7101aea7695b3a93497dbf62db", "fields": {"departement": "75", "stop_lat": 48.85337987781381, "code_postal": "75120", "stop_lon": 2.4104581874163533, "coord": [48.85337987781381, 2.4104581874163533], "stop_id": 1745, "stop_desc": "Porte de Montreuil (4 avenue de la) - 75120", "stop_name": "Porte de Montreuil"}, "geometry": {"type": "Point", "coordinates": [2.4104581874163533, 48.85337987781381]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fa05655691bee66cf1098694a7e536a31cbdaa8b", "fields": {"departement": "75", "stop_lat": 48.837565334473624, "code_postal": "75116", "stop_lon": 2.255591274447898, "coord": [48.837565334473624, 2.255591274447898], "stop_id": 1747, "stop_desc": "Stade Pierre de Coubertin - 75116", "stop_name": "Porte de Saint-Cloud"}, "geometry": {"type": "Point", "coordinates": [2.255591274447898, 48.837565334473624]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d74a0a7360e0ae92e8227ba9f855c2dbead85f6c", "fields": {"departement": "75", "stop_lat": 48.832253452749, "code_postal": "75115", "stop_lon": 2.287864137819189, "coord": [48.832253452749, 2.287864137819189], "stop_id": 1750, "stop_desc": "Victor (73 boulevard) - 75115", "stop_name": "Porte de Versailles"}, "geometry": {"type": "Point", "coordinates": [2.287864137819189, 48.832253452749]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "42165158595b9eb8bc6dfbb4bf8b63b3b69a61ea", "fields": {"departement": "75", "stop_lat": 48.86725794359829, "code_postal": "75111", "stop_lon": 2.3640373036390545, "coord": [48.86725794359829, 2.3640373036390545], "stop_id": 1766, "stop_desc": "Saint-Martin (9 boulevard) - 75111", "stop_name": "R\u00e9publique"}, "geometry": {"type": "Point", "coordinates": [2.3640373036390545, 48.86725794359829]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "82cfc8f9789f7a6ec5a51670b94b5c1f2efa706e", "fields": {"departement": "75", "stop_lat": 48.87800617627899, "code_postal": "75117", "stop_lon": 2.2824656400013326, "coord": [48.87800617627899, 2.2824656400013326], "stop_id": 1755, "stop_desc": "Verdun (16 place de) - 75117", "stop_name": "Porte Maillot"}, "geometry": {"type": "Point", "coordinates": [2.2824656400013326, 48.87800617627899]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "39e675116aeb44491fed47ce8a5398d8d2498720", "fields": {"departement": "75", "stop_lat": 48.875420977789275, "code_postal": "75108", "stop_lon": 2.3266952720717047, "coord": [48.875420977789275, 2.3266952720717047], "stop_id": 1723, "stop_desc": "Saint-Lazare (95 rue) - 75108", "stop_name": "Saint-Lazare"}, "geometry": {"type": "Point", "coordinates": [2.3266952720717047, 48.875420977789275]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d15c93be639242976a09594227c04446a1624ab0", "fields": {"departement": "75", "stop_lat": 48.876067814352574, "code_postal": "75108", "stop_lon": 2.324188100771013, "coord": [48.876067814352574, 2.324188100771013], "stop_id": 1724, "stop_desc": "Saint-Lazare (95 rue) - 75108", "stop_name": "Saint-Lazare"}, "geometry": {"type": "Point", "coordinates": [2.324188100771013, 48.876067814352574]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f2cbbb55d729c0fe652c292ecdc5f59a39924ea4", "fields": {"departement": "75", "stop_lat": 48.86649698703855, "code_postal": "75101", "stop_lon": 2.334094215259097, "coord": [48.86649698703855, 2.334094215259097], "stop_id": 1757, "stop_desc": "Rue de l'Echelle - 75101", "stop_name": "Pyramides"}, "geometry": {"type": "Point", "coordinates": [2.334094215259097, 48.86649698703855]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6d8fb3034ddd8203818e184f9df1e78607759fb7", "fields": {"departement": "92", "stop_lat": 48.93029362287076, "code_postal": "92004", "stop_lon": 2.2837606331952487, "coord": [48.93029362287076, 2.2837606331952487], "stop_id": 1662797, "stop_desc": "Angle Boulevard Pierre de Coubertin / Avenue Lucien Lanternier - 92004", "stop_name": "Asni\u00e8res-Gennevilliers Les Courtilles"}, "geometry": {"type": "Point", "coordinates": [2.2837606331952487, 48.93029362287076]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dea54c4fcf42a9d38c7632bdb1d1912f467e74b8", "fields": {"departement": "75", "stop_lat": 48.87669583602489, "code_postal": "75110", "stop_lon": 2.3579925105504023, "coord": [48.87669583602489, 2.3579925105504023], "stop_id": 1953, "stop_desc": "Strasbourg (terre plein face au 93 boulevard de) - 75110", "stop_name": "Gare de l'Est (Verdun)"}, "geometry": {"type": "Point", "coordinates": [2.3579925105504023, 48.87669583602489]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1d563e632407f083bae7c877b1850188a5cf2682", "fields": {"departement": "75", "stop_lat": 48.87399384072475, "code_postal": "75108", "stop_lon": 2.294663961825911, "coord": [48.87399384072475, 2.294663961825911], "stop_id": 2148, "stop_desc": "Charles de Gaulle (place, 2 avenue de Wagram) - 75108", "stop_name": "Charles de Gaulle-Etoile"}, "geometry": {"type": "Point", "coordinates": [2.294663961825911, 48.87399384072475]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5e702c29157a610bb252e5b0d1474599d73c7f87", "fields": {"departement": "75", "stop_lat": 48.867366570469784, "code_postal": "75108", "stop_lon": 2.3141910633936584, "coord": [48.867366570469784, 2.3141910633936584], "stop_id": 2144, "stop_desc": "Cl\u00e9menceau (place) - 75108", "stop_name": "Champs-Elys\u00e9es-Cl\u00e9menceau"}, "geometry": {"type": "Point", "coordinates": [2.3141910633936584, 48.867366570469784]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "58c4c9fe891327153dae1f01527f347e6b38fce9", "fields": {"departement": "94", "stop_lat": 48.84432514436857, "code_postal": "94080", "stop_lon": 2.440552346211822, "coord": [48.84432514436857, 2.440552346211822], "stop_id": 2154, "stop_desc": "Paris (14 avenue de) - 94080", "stop_name": "Ch\u00e2teau de Vincennes"}, "geometry": {"type": "Point", "coordinates": [2.440552346211822, 48.84432514436857]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "df1e78617bcdd1422fe504a5e3c49c19073ba04a", "fields": {"departement": "75", "stop_lat": 48.88287621621258, "code_postal": "75119", "stop_lon": 2.3705863361654225, "coord": [48.88287621621258, 2.3705863361654225], "stop_id": 2297, "stop_desc": "Villette (entr\u00e9e sous viaduc face au 196 boulevard de la) - 75119", "stop_name": "Jaur\u00e8s"}, "geometry": {"type": "Point", "coordinates": [2.3705863361654225, 48.88287621621258]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fc456a7f06e86f581a11092f7ae1e0d6d4ed2f54", "fields": {"departement": "75", "stop_lat": 48.852438519222666, "code_postal": "75116", "stop_lon": 2.2679339230009505, "coord": [48.852438519222666, 2.2679339230009505], "stop_id": 2295, "stop_desc": "Mozart (85 avenue, angle avec le 47 rue Ribera) - 75116", "stop_name": "Jasmin"}, "geometry": {"type": "Point", "coordinates": [2.2679339230009505, 48.852438519222666]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bf49df42fc340a877494ed71f7454b43583e0bb4", "fields": {"departement": "94", "stop_lat": 48.80528001222769, "code_postal": "94068", "stop_lon": 2.48559432484478, "coord": [48.80528001222769, 2.48559432484478], "stop_id": 2315, "stop_desc": "Louvi\u00e8re (place de la) - 94068", "stop_name": "Le Parc de Saint-Maur"}, "geometry": {"type": "Point", "coordinates": [2.48559432484478, 48.80528001222769]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9847bcd24a59d15b4499278d6a16462982851005", "fields": {"departement": "75", "stop_lat": 48.87953716638082, "code_postal": "75108", "stop_lon": 2.3268579472729614, "coord": [48.87953716638082, 2.3268579472729614], "stop_id": 2325, "stop_desc": "Li\u00e8ge (terre-plein face au 21 rue de) - 75108", "stop_name": "Li\u00e8ge"}, "geometry": {"type": "Point", "coordinates": [2.3268579472729614, 48.87953716638082]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cfb5c62af4dd20cb5ec2546c304f74f24b7c0851", "fields": {"departement": "94", "stop_lat": 48.81121453549021, "code_postal": "94041", "stop_lon": 2.383508928732683, "coord": [48.81121453549021, 2.383508928732683], "stop_id": 2301, "stop_desc": "Maurice Thorez (213 avenue) - 94041", "stop_name": "Mairie d'Ivry"}, "geometry": {"type": "Point", "coordinates": [2.383508928732683, 48.81121453549021]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fda1f5acbbd5ba3d4ee85fe4c705db844885e347", "fields": {"departement": "92", "stop_lat": 48.82434652601842, "code_postal": "92040", "stop_lon": 2.2735658296006465, "coord": [48.82434652601842, 2.2735658296006465], "stop_id": 2337, "stop_desc": "G\u00e9n\u00e9ral Leclerc (rue du) - 92040", "stop_name": "Mairie d'Issy"}, "geometry": {"type": "Point", "coordinates": [2.2735658296006465, 48.82434652601842]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3d8736e6eb6850c80cb34c95705bbca99ea3cc3e", "fields": {"departement": "75", "stop_lat": 48.857355927169515, "code_postal": "75104", "stop_lon": 2.3520735668587185, "coord": [48.857355927169515, 2.3520735668587185], "stop_id": 2288, "stop_desc": "Rue de Rivoli - 75104", "stop_name": "H\u00f4tel de Ville"}, "geometry": {"type": "Point", "coordinates": [2.3520735668587185, 48.857355927169515]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1343324f95537bae228332530e28a8ae691ef42d", "fields": {"departement": "75", "stop_lat": 48.85780537313629, "code_postal": "75104", "stop_lon": 2.351460776513565, "coord": [48.85780537313629, 2.351460776513565], "stop_id": 2289, "stop_desc": "Rue de Rivoli - 75104", "stop_name": "H\u00f4tel de Ville"}, "geometry": {"type": "Point", "coordinates": [2.351460776513565, 48.85780537313629]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8bf289b0ef415fe3844c556e80a547e0df45718e", "fields": {"departement": "75", "stop_lat": 48.870559216544876, "code_postal": "75109", "stop_lon": 2.332554482049589, "coord": [48.870559216544876, 2.332554482049589], "stop_id": 2314, "stop_desc": "Th\u00e9\u00e2tre National de l'Op\u00e9ra - 75109", "stop_name": "Op\u00e9ra"}, "geometry": {"type": "Point", "coordinates": [2.332554482049589, 48.870559216544876]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "adc7d86a37aca9411b39af37b6991d99ff0bdae5", "fields": {"departement": "78", "stop_lat": 48.933164262405, "code_postal": "78498", "stop_lon": 2.041083510970564, "coord": [48.933164262405, 2.041083510970564], "stop_id": 2340, "stop_desc": "George Pompidou (Place) - 78498", "stop_name": "Poissy"}, "geometry": {"type": "Point", "coordinates": [2.041083510970564, 48.933164262405]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "14e8bfc0a0682437fb4d351765f4de2f06946a61", "fields": {"departement": "75", "stop_lat": 48.8623718215243, "code_postal": "75101", "stop_lon": 2.3365736007364304, "coord": [48.8623718215243, 2.3365736007364304], "stop_id": 2383, "stop_desc": "Th\u00e9\u00e2tre de la Com\u00e9die Fran\u00e7aise - Th\u00e9\u00e2tre du Palais Royal - 75101", "stop_name": "Palais-Royal (Mus\u00e9e du Louvre)"}, "geometry": {"type": "Point", "coordinates": [2.3365736007364304, 48.8623718215243]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a2596f1d450f4e4a845d657ecd574793da0a9622", "fields": {"departement": "75", "stop_lat": 48.85837884146994, "code_postal": "75111", "stop_lon": 2.3897347327397043, "coord": [48.85837884146994, 2.3897347327397043], "stop_id": 2398, "stop_desc": "Mont-Louis (19 rue de, 131 avenue Philippe Auguste) - 75111", "stop_name": "Philippe Auguste"}, "geometry": {"type": "Point", "coordinates": [2.3897347327397043, 48.85837884146994]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "347d4fb19d50bbbad7a5ff271b8665d039335d47", "fields": {"departement": "94", "stop_lat": 48.81591718160038, "code_postal": "94041", "stop_lon": 2.377878816483871, "coord": [48.81591718160038, 2.377878816483871], "stop_id": 2400, "stop_desc": "Pierre Curie (1 bis rue) - 94041", "stop_name": "Pierre et Marie Curie"}, "geometry": {"type": "Point", "coordinates": [2.377878816483871, 48.81591718160038]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3a3dc57e9d2b3df0f7b2d5bf8ee0ebefde0f4a4a", "fields": {"departement": "75", "stop_lat": 48.86316120506396, "code_postal": "75111", "stop_lon": 2.3872604001843536, "coord": [48.86316120506396, 2.3872604001843536], "stop_id": 2394, "stop_desc": "R\u00e9publique (avenue de la) - 75111", "stop_name": "P\u00e8re-Lachaise"}, "geometry": {"type": "Point", "coordinates": [2.3872604001843536, 48.86316120506396]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "712fdf12007b245db8441cfac700c89c54594ec5", "fields": {"departement": "75", "stop_lat": 48.87672946890669, "code_postal": "75119", "stop_lon": 2.393146031767842, "coord": [48.87672946890669, 2.393146031767842], "stop_id": 2408, "stop_desc": "F\u00eates (place des, rue Compans) - 75119", "stop_name": "Place des F\u00eates"}, "geometry": {"type": "Point", "coordinates": [2.393146031767842, 48.87672946890669]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "31772022fda0e6a00edf48bac13fcc0c9857d9ec", "fields": {"departement": "91", "stop_lat": 48.707745883014454, "code_postal": "91477", "stop_lon": 2.237039533120401, "coord": [48.707745883014454, 2.237039533120401], "stop_id": 2386, "stop_desc": "Rue Antoine Arnault - 91477", "stop_name": "Palaiseau Villebon"}, "geometry": {"type": "Point", "coordinates": [2.237039533120401, 48.707745883014454]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a3b0d176490d379be1e80b7f2abb8b0817754a39", "fields": {"departement": "75", "stop_lat": 48.84532311461395, "code_postal": "75112", "stop_lon": 2.4017863137606863, "coord": [48.84532311461395, 2.4017863137606863], "stop_id": 2399, "stop_desc": "Saint-Mand\u00e9 (46 avenue de) - 75112", "stop_name": "Picpus"}, "geometry": {"type": "Point", "coordinates": [2.4017863137606863, 48.84532311461395]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b4b36ef62bb8d67c2d0f72f9d80b78cd6eaa11c5", "fields": {"departement": "75", "stop_lat": 48.8511463550549, "code_postal": "75106", "stop_lon": 2.3309628563664644, "coord": [48.8511463550549, 2.3309628563664644], "stop_id": 2411, "stop_desc": "Rue de Rennes - 75106", "stop_name": "Saint-Sulpice"}, "geometry": {"type": "Point", "coordinates": [2.3309628563664644, 48.8511463550549]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a182b68c793eb322f0964b32250ed2905242ee42", "fields": {"departement": "75", "stop_lat": 48.843794538635784, "code_postal": "75106", "stop_lon": 2.330214827150182, "coord": [48.843794538635784, 2.330214827150182], "stop_id": 3442429, "stop_desc": "22-24 RUE VAVIN - 75106", "stop_name": "BREA - NOTRE-DAME-DES-CHAMPS"}, "geometry": {"type": "Point", "coordinates": [2.330214827150182, 48.843794538635784]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "17bf3d40153daa3552637f2e6e3835058641b135", "fields": {"departement": "92", "stop_lat": 48.823526651568685, "code_postal": "92075", "stop_lon": 2.288348842384806, "coord": [48.823526651568685, 2.288348842384806], "stop_id": 3442456, "stop_desc": "PLACE DU GENERAL LECLERC - 92075", "stop_name": "VANVES-LYCEE MICHELET"}, "geometry": {"type": "Point", "coordinates": [2.288348842384806, 48.823526651568685]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0f6ce2f41ee1da403963f4acef964ba38a93212b", "fields": {"departement": "75", "stop_lat": 48.84673334739729, "code_postal": "75106", "stop_lon": 2.328566709715835, "coord": [48.84673334739729, 2.328566709715835], "stop_id": 3442465, "stop_desc": "35-35 BIS RUE DE FLEURUS - 75106", "stop_name": "RASPAIL - FLEURUS"}, "geometry": {"type": "Point", "coordinates": [2.328566709715835, 48.84673334739729]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fff2bb5411c36d493e9521b72a7ae37b6be09519", "fields": {"departement": "75", "stop_lat": 48.8297732621904, "code_postal": "75114", "stop_lon": 2.3229065159485742, "coord": [48.8297732621904, 2.3229065159485742], "stop_id": 3442443, "stop_desc": "36 RUE DES PLANTES - 75114", "stop_name": "ALESIA - LES PLANTES"}, "geometry": {"type": "Point", "coordinates": [2.3229065159485742, 48.8297732621904]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9e55142c22c8f29307bb3ae85a15a4c34d7c1214", "fields": {"departement": "75", "stop_lat": 48.825724272247164, "code_postal": "75115", "stop_lon": 2.301346230632191, "coord": [48.825724272247164, 2.301346230632191], "stop_id": 3442450, "stop_desc": "0 R CLAUDE GARAMOND - 75115", "stop_name": "PONT DE LA VALLEE"}, "geometry": {"type": "Point", "coordinates": [2.301346230632191, 48.825724272247164]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9987974da56935ea3ef19d92d23c960425c5b475", "fields": {"departement": "94", "stop_lat": 48.82346324431791, "code_postal": "94018", "stop_lon": 2.419644524924032, "coord": [48.82346324431791, 2.419644524924032], "stop_id": 5709897, "stop_desc": "39 RUE DE LA REPUBLIQUE - 94018", "stop_name": "AVENUE DE GRAVELLE"}, "geometry": {"type": "Point", "coordinates": [2.419644524924032, 48.82346324431791]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "91f03e49586ae9e6ae2c3c06e324078e32176073", "fields": {"departement": "75", "stop_lat": 48.861203399239315, "code_postal": "75101", "stop_lon": 2.3411231334321685, "coord": [48.861203399239315, 2.3411231334321685], "stop_id": 5709981, "stop_desc": "16 RUE DU LOUVRE - 75101", "stop_name": "LOUVRE - RIVOLI"}, "geometry": {"type": "Point", "coordinates": [2.3411231334321685, 48.861203399239315]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1ea931ec9aae661c240eb92034a7831a00bd49ca", "fields": {"departement": "75", "stop_lat": 48.86788990126235, "code_postal": "75102", "stop_lon": 2.3435757843603318, "coord": [48.86788990126235, 2.3435757843603318], "stop_id": 5709987, "stop_desc": "85 RUE MONTMARTRE - 75102", "stop_name": "REAUMUR - MONTMARTRE"}, "geometry": {"type": "Point", "coordinates": [2.3435757843603318, 48.86788990126235]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3d1e1b8c43fe19f8d9ec03536c065cbbff34c9da", "fields": {"departement": "75", "stop_lat": 48.88386906642537, "code_postal": "75118", "stop_lon": 2.34710719512739, "coord": [48.88386906642537, 2.34710719512739], "stop_id": 5709993, "stop_desc": "2 RUE DE CLIGNANCOURT - 75118", "stop_name": "ROCHECHOUART - CLIGNANCOURT"}, "geometry": {"type": "Point", "coordinates": [2.34710719512739, 48.88386906642537]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2b8f536bf68583e304220645c31a80cce8d797a5", "fields": {"departement": "75", "stop_lat": 48.88752679919355, "code_postal": "75118", "stop_lon": 2.347871071223989, "coord": [48.88752679919355, 2.347871071223989], "stop_id": 5709994, "stop_desc": "46-48 R DE CLIGNANCOURT - 75118", "stop_name": "MULLER"}, "geometry": {"type": "Point", "coordinates": [2.347871071223989, 48.88752679919355]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b2a7da323f8fbbd8662da7c1741f1593081fc15c", "fields": {"departement": "75", "stop_lat": 48.88928825441799, "code_postal": "75118", "stop_lon": 2.348266664087467, "coord": [48.88928825441799, 2.348266664087467], "stop_id": 5709996, "stop_desc": "66 RUE DE CLIGNANCOURT - 75118", "stop_name": "LABAT"}, "geometry": {"type": "Point", "coordinates": [2.348266664087467, 48.88928825441799]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "545b1f81cd030d6521e021a209ffe69623b6e2a2", "fields": {"departement": "75", "stop_lat": 48.892892360969476, "code_postal": "75118", "stop_lon": 2.345146242815116, "coord": [48.892892360969476, 2.345146242815116], "stop_id": 5709999, "stop_desc": "FACE 32 RUE HERMEL - 75118", "stop_name": "MAIRIE DU 18E - JULES JOFFRIN"}, "geometry": {"type": "Point", "coordinates": [2.345146242815116, 48.892892360969476]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3f9a3586bd621e4656ddd00d39ff54a83887f83c", "fields": {"departement": "75", "stop_lat": 48.89490540634031, "code_postal": "75118", "stop_lon": 2.3462505929715185, "coord": [48.89490540634031, 2.3462505929715185], "stop_id": 5710001, "stop_desc": "55 RUE HERMEL - 75118", "stop_name": "ALBERT KAHN"}, "geometry": {"type": "Point", "coordinates": [2.3462505929715185, 48.89490540634031]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1bf07528e346d9cff19f517e20b6711c2069f0c2", "fields": {"departement": "75", "stop_lat": 48.89999224724336, "code_postal": "75118", "stop_lon": 2.344424854415678, "coord": [48.89999224724336, 2.344424854415678], "stop_id": 5710004, "stop_desc": "AVENUE DE LA PORTE DE CLIGNANCOURT - 75118", "stop_name": "MICHELET - ROSIERS"}, "geometry": {"type": "Point", "coordinates": [2.344424854415678, 48.89999224724336]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "473f093dc5948fbb951df123248ad90dffa2aecc", "fields": {"departement": "93", "stop_lat": 48.90203241805544, "code_postal": "93070", "stop_lon": 2.3425575469745206, "coord": [48.90203241805544, 2.3425575469745206], "stop_id": 5710007, "stop_desc": "148 RUE DES ROSIERS - 93070", "stop_name": "MARCHE AUX PUCES"}, "geometry": {"type": "Point", "coordinates": [2.3425575469745206, 48.90203241805544]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c384fbf80c0e4a27e24beffd1e6003661e3967ca", "fields": {"departement": "93", "stop_lat": 48.90359626348958, "code_postal": "93070", "stop_lon": 2.339776686502514, "coord": [48.90359626348958, 2.339776686502514], "stop_id": 5710008, "stop_desc": "FACE 106 RUE DES ROSIERS - 93070", "stop_name": "PAUL BERT"}, "geometry": {"type": "Point", "coordinates": [2.339776686502514, 48.90359626348958]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "400a9f1659dd0eda94dac1a783a847fee592a685", "fields": {"departement": "75", "stop_lat": 48.876697570163095, "code_postal": "75109", "stop_lon": 2.341355921470186, "coord": [48.876697570163095, 2.341355921470186], "stop_id": 5710026, "stop_desc": "9 RUE DE MAUBEUGE - 75109", "stop_name": "CHATEAUDUN - LAMARTINE"}, "geometry": {"type": "Point", "coordinates": [2.341355921470186, 48.876697570163095]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c5f1b57dfd30948820c0ca9ffa80692e8ab53850", "fields": {"departement": "75", "stop_lat": 48.874576588810406, "code_postal": "75109", "stop_lon": 2.340729011773776, "coord": [48.874576588810406, 2.340729011773776], "stop_id": 5710027, "stop_desc": "21-23 RUE DROUOT - 75109", "stop_name": "PROVENCE - DROUOT"}, "geometry": {"type": "Point", "coordinates": [2.340729011773776, 48.874576588810406]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "330b86371f5c31b209ad3d5d39aa479d05284575", "fields": {"departement": "75", "stop_lat": 48.86330642060076, "code_postal": "75101", "stop_lon": 2.341913358368381, "coord": [48.86330642060076, 2.341913358368381], "stop_id": 5710042, "stop_desc": "15 RUE DU LOUVRE - 75101", "stop_name": "COQUILLIERE - LES HALLES"}, "geometry": {"type": "Point", "coordinates": [2.341913358368381, 48.86330642060076]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "26fad8a7eb9b2ac9ebfef0f910243ff4b5e39dc0", "fields": {"departement": "75", "stop_lat": 48.86565205893974, "code_postal": "75102", "stop_lon": 2.3433847968096146, "coord": [48.86565205893974, 2.3433847968096146], "stop_id": 5710043, "stop_desc": "54 RUE DU LOUVRE - 75102", "stop_name": "LOUVRE - ETIENNE MARCEL"}, "geometry": {"type": "Point", "coordinates": [2.3433847968096146, 48.86565205893974]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d2da20a8466a36320018af006ef92caa9284dc78", "fields": {"departement": "75", "stop_lat": 48.86788990126235, "code_postal": "75102", "stop_lon": 2.3435757843603318, "coord": [48.86788990126235, 2.3435757843603318], "stop_id": 5710045, "stop_desc": "85 RUE MONTMARTRE - 75102", "stop_name": "REAUMUR - MONTMARTRE"}, "geometry": {"type": "Point", "coordinates": [2.3435757843603318, 48.86788990126235]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "44f2725239f6edcb1b850f96fb3faf6879346965", "fields": {"departement": "75", "stop_lat": 48.88928825441799, "code_postal": "75118", "stop_lon": 2.348266664087467, "coord": [48.88928825441799, 2.348266664087467], "stop_id": 5710054, "stop_desc": "66 RUE DE CLIGNANCOURT - 75118", "stop_name": "LABAT"}, "geometry": {"type": "Point", "coordinates": [2.348266664087467, 48.88928825441799]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "afe0f784010c18907284b647327a51596b85eaeb", "fields": {"departement": "75", "stop_lat": 48.89531883649485, "code_postal": "75118", "stop_lon": 2.3459644289430965, "coord": [48.89531883649485, 2.3459644289430965], "stop_id": 5710058, "stop_desc": "FACE 119 RUE DU MONT CENIS - 75118", "stop_name": "ALBERT KAHN"}, "geometry": {"type": "Point", "coordinates": [2.3459644289430965, 48.89531883649485]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6e4973edb9d4374226cbf73124a9d6db5bd89bd3", "fields": {"departement": "75", "stop_lat": 48.89999224724336, "code_postal": "75118", "stop_lon": 2.344424854415678, "coord": [48.89999224724336, 2.344424854415678], "stop_id": 5710062, "stop_desc": "AVENUE DE LA PORTE DE CLIGNANCOURT - 75118", "stop_name": "MICHELET - ROSIERS"}, "geometry": {"type": "Point", "coordinates": [2.344424854415678, 48.89999224724336]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a2d1f45276078bedafe1b9270c3ea6ca68335875", "fields": {"departement": "93", "stop_lat": 48.90900642715508, "code_postal": "93070", "stop_lon": 2.3329600113604876, "coord": [48.90900642715508, 2.3329600113604876], "stop_id": 5710070, "stop_desc": "37 BIS AVENUE GABRIEL PERI - 93070", "stop_name": "ERNEST RENAN"}, "geometry": {"type": "Point", "coordinates": [2.3329600113604876, 48.90900642715508]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "45d91c1e19f2819d7f5e314fe82cbe569a04b9ec", "fields": {"departement": "93", "stop_lat": 48.914973234780966, "code_postal": "93070", "stop_lon": 2.324764612767746, "coord": [48.914973234780966, 2.324764612767746], "stop_id": 5710076, "stop_desc": "QUAI DE SEINE - 93070", "stop_name": "QUAI DE SEINE"}, "geometry": {"type": "Point", "coordinates": [2.324764612767746, 48.914973234780966]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "733b0777d59d64267fd6709b8d4375009906c5ef", "fields": {"departement": "75", "stop_lat": 48.88285357862541, "code_postal": "75109", "stop_lon": 2.3462212471785504, "coord": [48.88285357862541, 2.3462212471785504], "stop_id": 5710081, "stop_desc": "21 RUE GERANDO - 75109", "stop_name": "ROCHECHOUART - CLIGNANCOURT"}, "geometry": {"type": "Point", "coordinates": [2.3462212471785504, 48.88285357862541]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eaae9e0a3cba15468f8686b733bc4266dd359ef7", "fields": {"departement": "75", "stop_lat": 48.876697570163095, "code_postal": "75109", "stop_lon": 2.341355921470186, "coord": [48.876697570163095, 2.341355921470186], "stop_id": 5710084, "stop_desc": "9 RUE DE MAUBEUGE - 75109", "stop_name": "CHATEAUDUN - LAMARTINE"}, "geometry": {"type": "Point", "coordinates": [2.341355921470186, 48.876697570163095]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ed81f5120c9c7efabd174af742cb1e31778fd22f", "fields": {"departement": "75", "stop_lat": 48.8686000083944, "code_postal": "75102", "stop_lon": 2.341069192464145, "coord": [48.8686000083944, 2.341069192464145], "stop_id": 5710088, "stop_desc": "11 PLACE DE LA BOURSE - 75102", "stop_name": "BOURSE"}, "geometry": {"type": "Point", "coordinates": [2.341069192464145, 48.8686000083944]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9c36b5de30371b9c7c345ca77abeb1f0f636cbed", "fields": {"departement": "93", "stop_lat": 48.91062396178027, "code_postal": "93070", "stop_lon": 2.3443308859153618, "coord": [48.91062396178027, 2.3443308859153618], "stop_id": 5726235, "stop_desc": "37-39 AVENUE MICHELET - 93070", "stop_name": "GODILLOT"}, "geometry": {"type": "Point", "coordinates": [2.3443308859153618, 48.91062396178027]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9850dde1a26621399c1b4199fe1466e252817e8a", "fields": {"departement": "93", "stop_lat": 48.915449987328074, "code_postal": "93066", "stop_lon": 2.34437245194712, "coord": [48.915449987328074, 2.34437245194712], "stop_id": 5726237, "stop_desc": "63-65 BOULEVARD ORNANO - 93066", "stop_name": "LANDY - ORNANO"}, "geometry": {"type": "Point", "coordinates": [2.34437245194712, 48.915449987328074]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d7bc0318346596d7f47dad7f24a7d210ff6f3643", "fields": {"departement": "93", "stop_lat": 48.9165284250622, "code_postal": "93066", "stop_lon": 2.344399871861026, "coord": [48.9165284250622, 2.344399871861026], "stop_id": 5726238, "stop_desc": "FACE 32 BOULEVARD ORNANO - 93066", "stop_name": "DOCTEUR FINOT"}, "geometry": {"type": "Point", "coordinates": [2.344399871861026, 48.9165284250622]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a244af3e7052c9b1462a544422f666a80bf0a445", "fields": {"departement": "93", "stop_lat": 48.91974582929707, "code_postal": "93066", "stop_lon": 2.3432002857805556, "coord": [48.91974582929707, 2.3432002857805556], "stop_id": 5726241, "stop_desc": "FACE 171 BOULEVARD ANATOLE FRANCE - 93066", "stop_name": "CARREFOUR PLEYEL"}, "geometry": {"type": "Point", "coordinates": [2.3432002857805556, 48.91974582929707]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5973e4aaffa650da8fc3c23bcec3d6aace447bb6", "fields": {"departement": "93", "stop_lat": 48.93188630881095, "code_postal": "93066", "stop_lon": 2.352695050904004, "coord": [48.93188630881095, 2.352695050904004], "stop_id": 5726248, "stop_desc": "21 BOULEVARD MARCEL SEMBAT - 93066", "stop_name": "PIERRE DE GEYTER"}, "geometry": {"type": "Point", "coordinates": [2.352695050904004, 48.93188630881095]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b139bb6c9e6137dfba74f31373da489287424880", "fields": {"departement": "93", "stop_lat": 48.93615537294846, "code_postal": "93066", "stop_lon": 2.3501181700852487, "coord": [48.93615537294846, 2.3501181700852487], "stop_id": 5726251, "stop_desc": "32 BOULEVARD JULES GUESDE - 93066", "stop_name": "EGLISE - THEATRE GERARD PHILIPE"}, "geometry": {"type": "Point", "coordinates": [2.3501181700852487, 48.93615537294846]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b18009a9915487737f63a35ba5cecb907007ebc5", "fields": {"departement": "93", "stop_lat": 48.93873300725637, "code_postal": "93066", "stop_lon": 2.360581998088033, "coord": [48.93873300725637, 2.360581998088033], "stop_id": 5726255, "stop_desc": "28 BD FELIX FAURE - 93066", "stop_name": "CITE LANGEVIN"}, "geometry": {"type": "Point", "coordinates": [2.360581998088033, 48.93873300725637]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "99c1fe46dc3e7067c214da19941ed3d3b05be102", "fields": {"departement": "93", "stop_lat": 48.94158992771719, "code_postal": "93066", "stop_lon": 2.3647442349572647, "coord": [48.94158992771719, 2.3647442349572647], "stop_id": 5726258, "stop_desc": "AVENUE JEAN MOULIN - 93066", "stop_name": "LYCEE PAUL ELUARD"}, "geometry": {"type": "Point", "coordinates": [2.3647442349572647, 48.94158992771719]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b08bbdd89e9799b4c2379e6610a454dbd12ea762", "fields": {"departement": "93", "stop_lat": 48.94963563215163, "code_postal": "93072", "stop_lon": 2.3851471532794593, "coord": [48.94963563215163, 2.3851471532794593], "stop_id": 5726268, "stop_desc": "97 AVENUE DE STALINGRAD - 93072", "stop_name": "LE GLOBE"}, "geometry": {"type": "Point", "coordinates": [2.3851471532794593, 48.94963563215163]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a620d003fe5eaf92591f245b624748dcfd5d4d8a", "fields": {"departement": "93", "stop_lat": 48.95179255165845, "code_postal": "93072", "stop_lon": 2.384889891033903, "coord": [48.95179255165845, 2.384889891033903], "stop_id": 5726270, "stop_desc": "FACE 57 BOULEVARD MAXIME GORKI - 93072", "stop_name": "FRANCOIS BEGUE"}, "geometry": {"type": "Point", "coordinates": [2.384889891033903, 48.95179255165845]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6ed96e92cd2c87741051e7ffa089d79c5110a577", "fields": {"departement": "93", "stop_lat": 48.960420869630234, "code_postal": "93072", "stop_lon": 2.3820728157965996, "coord": [48.960420869630234, 2.3820728157965996], "stop_id": 5726273, "stop_desc": "FACE 47 AVENUE MARCEL CACHIN - 93072", "stop_name": "LES PAROUZETS"}, "geometry": {"type": "Point", "coordinates": [2.3820728157965996, 48.960420869630234]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "98f43a103077bb87393546707ea9d30ce60abfd6", "fields": {"departement": "95", "stop_lat": 48.96847890396483, "code_postal": "95268", "stop_lon": 2.3893959528689592, "coord": [48.96847890396483, 2.3893959528689592], "stop_id": 5726279, "stop_desc": "26 AVENUE PIERRE SEMARD - 95268", "stop_name": "ROND-POINT DE LA LUTECE"}, "geometry": {"type": "Point", "coordinates": [2.3893959528689592, 48.96847890396483]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0949f1d631d85fc962af05973c1ef3740ae82ec3", "fields": {"departement": "93", "stop_lat": 48.9165284250622, "code_postal": "93066", "stop_lon": 2.344399871861026, "coord": [48.9165284250622, 2.344399871861026], "stop_id": 5726291, "stop_desc": "FACE 32 BOULEVARD ORNANO - 93066", "stop_name": "DOCTEUR FINOT"}, "geometry": {"type": "Point", "coordinates": [2.344399871861026, 48.9165284250622]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f23a71461a1a9a4f5b751a55079d3e80d5938d63", "fields": {"departement": "93", "stop_lat": 48.9251643028832, "code_postal": "93066", "stop_lon": 2.3510973855469373, "coord": [48.9251643028832, 2.3510973855469373], "stop_id": 5726293, "stop_desc": "143-147 RUE JULES SAULNIER - 93066", "stop_name": "LA PLAINE SAULNIER"}, "geometry": {"type": "Point", "coordinates": [2.3510973855469373, 48.9251643028832]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "340dd30481b20faf623d8881cfeda4c5e9783bcd", "fields": {"departement": "93", "stop_lat": 48.94675570516098, "code_postal": "93066", "stop_lon": 2.371064066428182, "coord": [48.94675570516098, 2.371064066428182], "stop_id": 5726303, "stop_desc": "80-82 AVENUE DE STALINGRAD - 93066", "stop_name": "HENRI BARBUSSE"}, "geometry": {"type": "Point", "coordinates": [2.371064066428182, 48.94675570516098]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "526ef35d65d379fbff775e8d7ded895aaa30c26c", "fields": {"departement": "93", "stop_lat": 48.956214648833715, "code_postal": "93072", "stop_lon": 2.3832700493319843, "coord": [48.956214648833715, 2.3832700493319843], "stop_id": 5726308, "stop_desc": "FACE 5 AVENUE MARCEL CACHIN - 93072", "stop_name": "MAIRIE DE STAINS"}, "geometry": {"type": "Point", "coordinates": [2.3832700493319843, 48.956214648833715]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e2b6a343090b779796a8cc4aeedf556791a8a765", "fields": {"departement": "93", "stop_lat": 48.960420869630234, "code_postal": "93072", "stop_lon": 2.3820728157965996, "coord": [48.960420869630234, 2.3820728157965996], "stop_id": 5726309, "stop_desc": "FACE 47 AVENUE MARCEL CACHIN - 93072", "stop_name": "LES PAROUZETS"}, "geometry": {"type": "Point", "coordinates": [2.3820728157965996, 48.960420869630234]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7895161236ffe5a7f11bca118d53092ebc54d175", "fields": {"departement": "93", "stop_lat": 48.96623532585836, "code_postal": "93072", "stop_lon": 2.381804872311391, "coord": [48.96623532585836, 2.381804872311391], "stop_id": 5726311, "stop_desc": "56 RUE JEAN JAURES - 93072", "stop_name": "REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.381804872311391, 48.96623532585836]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0188c0731becef1f5258e8915c6d99ec33e17f67", "fields": {"departement": "93", "stop_lat": 48.91062396178027, "code_postal": "93070", "stop_lon": 2.3443308859153618, "coord": [48.91062396178027, 2.3443308859153618], "stop_id": 5726316, "stop_desc": "37-39 AVENUE MICHELET - 93070", "stop_name": "GODILLOT"}, "geometry": {"type": "Point", "coordinates": [2.3443308859153618, 48.91062396178027]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bf614b1fa04cd6bcb6a57b75ff3df24ed41ff57c", "fields": {"departement": "93", "stop_lat": 48.928740296188124, "code_postal": "93066", "stop_lon": 2.3567994737664737, "coord": [48.928740296188124, 2.3567994737664737], "stop_id": 5726322, "stop_desc": "AVENUE DU PRESIDENT WILSON - 93066", "stop_name": "PORTE DE PARIS - STADE DE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.3567994737664737, 48.928740296188124]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7841b064bf521486df347ef03a444324121621bd", "fields": {"departement": "93", "stop_lat": 48.93203905006368, "code_postal": "93066", "stop_lon": 2.352967895274335, "coord": [48.93203905006368, 2.352967895274335], "stop_id": 5726323, "stop_desc": "32 BOULEVARD MARCEL SEMBAT - 93066", "stop_name": "PIERRE DE GEYTER"}, "geometry": {"type": "Point", "coordinates": [2.352967895274335, 48.93203905006368]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a51e8b149ae34ac4e98c98ff64bff245d350e43a", "fields": {"departement": "93", "stop_lat": 48.94675570516098, "code_postal": "93066", "stop_lon": 2.371064066428182, "coord": [48.94675570516098, 2.371064066428182], "stop_id": 5726330, "stop_desc": "80-82 AVENUE DE STALINGRAD - 93066", "stop_name": "HENRI BARBUSSE"}, "geometry": {"type": "Point", "coordinates": [2.371064066428182, 48.94675570516098]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0b10ca0a95c5425eb80ee8d88fa0d9dd628551db", "fields": {"departement": "93", "stop_lat": 48.95039021456424, "code_postal": "93072", "stop_lon": 2.3858983142439496, "coord": [48.95039021456424, 2.3858983142439496], "stop_id": 5726333, "stop_desc": "79 BOULEVARD MAXIME GORKI - 93072", "stop_name": "LE GLOBE"}, "geometry": {"type": "Point", "coordinates": [2.3858983142439496, 48.95039021456424]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9b5d08c450cfc5572f386bbe9405322006c4a73c", "fields": {"departement": "93", "stop_lat": 48.9548395470349, "code_postal": "93072", "stop_lon": 2.38362362162217, "coord": [48.9548395470349, 2.38362362162217], "stop_id": 5726335, "stop_desc": "BOULEVARD MAXIME GORKI - 93072", "stop_name": "MAIRIE DE STAINS"}, "geometry": {"type": "Point", "coordinates": [2.38362362162217, 48.9548395470349]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "287b7eddd8557dfe758ebcf2bafabc328c076522", "fields": {"departement": "93", "stop_lat": 48.9525461304963, "code_postal": "93059", "stop_lon": 2.3581320608734195, "coord": [48.9525461304963, 2.3581320608734195], "stop_id": 5726495, "stop_desc": "AVENUE ELISEE RECLUS - 93059", "stop_name": "PETIT PIERREFITTE"}, "geometry": {"type": "Point", "coordinates": [2.3581320608734195, 48.9525461304963]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ff9d10e9127b9e436814583d790570786a9393be", "fields": {"departement": "93", "stop_lat": 48.96518044221685, "code_postal": "93059", "stop_lon": 2.362996086733312, "coord": [48.96518044221685, 2.362996086733312], "stop_id": 5726499, "stop_desc": "38 BOULEVARD JEAN MERMOZ - 93059", "stop_name": "ALCIDE D'ORBIGNY"}, "geometry": {"type": "Point", "coordinates": [2.362996086733312, 48.96518044221685]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "05afbbf5130bf7e50ed8f86b0da620bc2d65675e", "fields": {"departement": "93", "stop_lat": 48.970715477784296, "code_postal": "93059", "stop_lon": 2.3661110714213254, "coord": [48.970715477784296, 2.3661110714213254], "stop_id": 5726500, "stop_desc": "128 BOULEVARD JEAN MERMOZ - 93059", "stop_name": "JACQUES PREVERT"}, "geometry": {"type": "Point", "coordinates": [2.3661110714213254, 48.970715477784296]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "11586e1a5489caa33c1f777f3ca29f0958d9746d", "fields": {"departement": "95", "stop_lat": 49.00265761831511, "code_postal": "95585", "stop_lon": 2.3815494199763547, "coord": [49.00265761831511, 2.3815494199763547], "stop_id": 5726508, "stop_desc": "56 AVENUE MARX DORMOY - 95585", "stop_name": "LES CHARDONNERETTES"}, "geometry": {"type": "Point", "coordinates": [2.3815494199763547, 49.00265761831511]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "53951ef43254f9857a82f4d72ee49c9d7f241739", "fields": {"departement": "95", "stop_lat": 49.00602985107246, "code_postal": "95680", "stop_lon": 2.39679626744626, "coord": [49.00602985107246, 2.39679626744626], "stop_id": 5726513, "stop_desc": "FACE 73 RUE GAMBETTA - 95680", "stop_name": "VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.39679626744626, 49.00602985107246]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fbe5f05b9e484fa298c995495ce0ec5654d3956e", "fields": {"departement": "95", "stop_lat": 48.998794668395874, "code_postal": "95680", "stop_lon": 2.414542755640942, "coord": [48.998794668395874, 2.414542755640942], "stop_id": 5726519, "stop_desc": "6 AVENUE DE LA CONCORDE - 95680", "stop_name": "LES CARREAUX"}, "geometry": {"type": "Point", "coordinates": [2.414542755640942, 48.998794668395874]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b6383cdac0c1f568bc14d57ad98ec9e7b954a2e7", "fields": {"departement": "93", "stop_lat": 48.95491666563351, "code_postal": "93059", "stop_lon": 2.367303109077334, "coord": [48.95491666563351, 2.367303109077334], "stop_id": 5726527, "stop_desc": "RUE D'AMIENS - 93059", "stop_name": "PIERRE CURIE - CLINIQUE DE L'ESTREE"}, "geometry": {"type": "Point", "coordinates": [2.367303109077334, 48.95491666563351]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "705636ce7dd447cef8bc2de398b3e5780824b68d", "fields": {"departement": "93", "stop_lat": 48.95223825624989, "code_postal": "93059", "stop_lon": 2.36873430706457, "coord": [48.95223825624989, 2.36873430706457], "stop_id": 5726528, "stop_desc": "AVENUE EMILE ZOLA - 93059", "stop_name": "LYCEE."}, "geometry": {"type": "Point", "coordinates": [2.36873430706457, 48.95223825624989]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f2316cf6c9cbe449bc97db6eacb36c4468a362a2", "fields": {"departement": "93", "stop_lat": 48.949713934557984, "code_postal": "93059", "stop_lon": 2.364898639646683, "coord": [48.949713934557984, 2.364898639646683], "stop_id": 5726529, "stop_desc": "66 AVENUE EMILE ZOLA - 93059", "stop_name": "TOUSSAINT LOUVERTURE."}, "geometry": {"type": "Point", "coordinates": [2.364898639646683, 48.949713934557984]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ce05d08e6126fc5a1d1d031e80f1bafd95d50b82", "fields": {"departement": "93", "stop_lat": 48.94545434929433, "code_postal": "93066", "stop_lon": 2.3642960521954177, "coord": [48.94545434929433, 2.3642960521954177], "stop_id": 5726535, "stop_desc": "AVENUE DE STALINGRAD - 93066", "stop_name": "SAINT-DENIS - UNIVERSITE.."}, "geometry": {"type": "Point", "coordinates": [2.3642960521954177, 48.94545434929433]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8e8791e8dcdac51e3609d2060b20db6adbafd8e3", "fields": {"departement": "93", "stop_lat": 48.95653614039444, "code_postal": "93059", "stop_lon": 2.35862494056431, "coord": [48.95653614039444, 2.35862494056431], "stop_id": 5726543, "stop_desc": "125 AVENUE LENINE - 93059", "stop_name": "JONCHEROLLES"}, "geometry": {"type": "Point", "coordinates": [2.35862494056431, 48.95653614039444]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e25b3363657609645eda908e7f72f4c6da122856", "fields": {"departement": "93", "stop_lat": 48.96518044221685, "code_postal": "93059", "stop_lon": 2.362996086733312, "coord": [48.96518044221685, 2.362996086733312], "stop_id": 5726548, "stop_desc": "38 BOULEVARD JEAN MERMOZ - 93059", "stop_name": "ALCIDE D'ORBIGNY"}, "geometry": {"type": "Point", "coordinates": [2.362996086733312, 48.96518044221685]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dc3bf53d36c9b035d7b63e82c7935e2551910f7a", "fields": {"departement": "93", "stop_lat": 48.96338120417252, "code_postal": "93059", "stop_lon": 2.370706426192739, "coord": [48.96338120417252, 2.370706426192739], "stop_id": 5726551, "stop_desc": "PISTE GARE ROUTIERE - 93059", "stop_name": "GARE DE PIERREFITTE - STAINS RER"}, "geometry": {"type": "Point", "coordinates": [2.370706426192739, 48.96338120417252]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fc512c21cda52adcc27b4a244d712423a9e828c2", "fields": {"departement": "95", "stop_lat": 48.97735523828907, "code_postal": "95585", "stop_lon": 2.371084062203787, "coord": [48.97735523828907, 2.371084062203787], "stop_id": 5726559, "stop_desc": "BOULEVARD ALBERT CAMUS - 95585", "stop_name": "LES CHOLETTES"}, "geometry": {"type": "Point", "coordinates": [2.371084062203787, 48.97735523828907]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cfee1b53c63b2566552371dd1db139e9c09a26dd", "fields": {"departement": "95", "stop_lat": 48.98052798729397, "code_postal": "95585", "stop_lon": 2.3692430188300597, "coord": [48.98052798729397, 2.3692430188300597], "stop_id": 5726561, "stop_desc": "100 AVENUE DE LA DIVISION LECLERC - 95585", "stop_name": "LES POIRIERS"}, "geometry": {"type": "Point", "coordinates": [2.3692430188300597, 48.98052798729397]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d82f9ef561d8414c16ee4d28a3266fc90c5e2b2d", "fields": {"departement": "95", "stop_lat": 48.991552816451964, "code_postal": "95585", "stop_lon": 2.3746301578176694, "coord": [48.991552816451964, 2.3746301578176694], "stop_id": 5726565, "stop_desc": "FACE 4 AVENUE DIVISION LECLERC - 95585", "stop_name": "THEODORE BULLIER"}, "geometry": {"type": "Point", "coordinates": [2.3746301578176694, 48.991552816451964]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7038caf42ebcf010bdfa8f438b06da15a1bd31ea", "fields": {"departement": "95", "stop_lat": 48.998632157678905, "code_postal": "95585", "stop_lon": 2.3803850841361296, "coord": [48.998632157678905, 2.3803850841361296], "stop_id": 5726571, "stop_desc": "PLACE DU SOUVENIR FRANCAIS - 95585", "stop_name": "PLACE DU SOUVENIR FRANCAIS"}, "geometry": {"type": "Point", "coordinates": [2.3803850841361296, 48.998632157678905]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8cfa8c1b5ae2ff2d6b3bf197f45dfc99e57d7d13", "fields": {"departement": "95", "stop_lat": 49.00591027276414, "code_postal": "95680", "stop_lon": 2.382603982284786, "coord": [49.00591027276414, 2.382603982284786], "stop_id": 5726575, "stop_desc": "FACE 33 RUE DE PARIS - 95680", "stop_name": "DOCTEUR RAMPON"}, "geometry": {"type": "Point", "coordinates": [2.382603982284786, 49.00591027276414]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3ec8af7e969954ed89df6b91b34d98c2f98c6705", "fields": {"departement": "95", "stop_lat": 49.008073344394354, "code_postal": "95680", "stop_lon": 2.3890670597341113, "coord": [49.008073344394354, 2.3890670597341113], "stop_id": 5726579, "stop_desc": "4 RUE GAMBETTA - 95680", "stop_name": "EGLISE DE VILLIERS-LE-BEL"}, "geometry": {"type": "Point", "coordinates": [2.3890670597341113, 49.008073344394354]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f38dc8e978e3bafdc8b88f3370e6dd671feef9be", "fields": {"departement": "91", "stop_lat": 48.68816445328174, "code_postal": "91589", "stop_lon": 2.3573200215398393, "coord": [48.68816445328174, 2.3573200215398393], "stop_id": 4394984, "stop_desc": "2 AVENUE GABRIEL PERI - 91589", "stop_name": "ARISTIDE BRIAND - CHAMPAGNE"}, "geometry": {"type": "Point", "coordinates": [2.3573200215398393, 48.68816445328174]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b2b7907dccbee9059d17e8f960301b433545f8e2", "fields": {"departement": "91", "stop_lat": 48.71527053273419, "code_postal": "91027", "stop_lon": 2.3717828879033798, "coord": [48.71527053273419, 2.3717828879033798], "stop_id": 4394994, "stop_desc": "PISTE GARE ROUTIERE - 91027", "stop_name": "PORTE DE L'ESSONNE"}, "geometry": {"type": "Point", "coordinates": [2.3717828879033798, 48.71527053273419]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8c53f0e236677a625d5ed361cd4185028e5277b6", "fields": {"departement": "91", "stop_lat": 48.69713611014286, "code_postal": "91589", "stop_lon": 2.3497060248892825, "coord": [48.69713611014286, 2.3497060248892825], "stop_id": 4395000, "stop_desc": "152 AVENUE ROBERT LEUTHREAU - 91589", "stop_name": "CIMETIERE DU PLATEAU"}, "geometry": {"type": "Point", "coordinates": [2.3497060248892825, 48.69713611014286]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "251e74699b1fbb780f43c1ca60c5a1c1da2a557d", "fields": {"departement": "94", "stop_lat": 48.77917960119566, "code_postal": "94038", "stop_lon": 2.359857546365134, "coord": [48.77917960119566, 2.359857546365134], "stop_id": 4423346, "stop_desc": "FACE 26-32 RUE SAINTE COLOMBE - 94038", "stop_name": "GUSTAVE CHARPENTIER"}, "geometry": {"type": "Point", "coordinates": [2.359857546365134, 48.77917960119566]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "293bdb8cc813de25809586c81549ca794b2d3c18", "fields": {"departement": "94", "stop_lat": 48.758580343996215, "code_postal": "94034", "stop_lon": 2.3237418345669676, "coord": [48.758580343996215, 2.3237418345669676], "stop_id": 4423358, "stop_desc": "FACE 40 RUE HENRI BARBUSSE - 94034", "stop_name": "EMILE ZOLA"}, "geometry": {"type": "Point", "coordinates": [2.3237418345669676, 48.758580343996215]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7d8dd39a208da0626560ad06e61395dbb9860086", "fields": {"departement": "94", "stop_lat": 48.816429008859835, "code_postal": "94041", "stop_lon": 2.3997225650243545, "coord": [48.816429008859835, 2.3997225650243545], "stop_id": 4439438, "stop_desc": "94 BOULEVARD PAUL VAILLANT-COUTURIER - 94041", "stop_name": "MOISE - PIERRE GALAIS"}, "geometry": {"type": "Point", "coordinates": [2.3997225650243545, 48.816429008859835]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1d23eededd034d06e3d00bcb0adf32e1879c2f19", "fields": {"departement": "94", "stop_lat": 48.81486417327504, "code_postal": "94041", "stop_lon": 2.401544308380196, "coord": [48.81486417327504, 2.401544308380196], "stop_id": 4439439, "stop_desc": "FACE 119 BOULEVARD PAUL VAILLANT-COUTURIER - 94041", "stop_name": "GAMBETTA"}, "geometry": {"type": "Point", "coordinates": [2.401544308380196, 48.81486417327504]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5b903145cb309764ca902540cde4016fea2a81df", "fields": {"departement": "94", "stop_lat": 48.811394093383804, "code_postal": "94041", "stop_lon": 2.403023309341887, "coord": [48.811394093383804, 2.403023309341887], "stop_id": 4439440, "stop_desc": "AVENUE JEAN JAURES - 94041", "stop_name": "MAURICE GUNSBOURG"}, "geometry": {"type": "Point", "coordinates": [2.403023309341887, 48.811394093383804]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a1e8a211a2d1a98df8294c1c0c415a897433ca12", "fields": {"departement": "94", "stop_lat": 48.79209689981996, "code_postal": "94081", "stop_lon": 2.3848250122745944, "coord": [48.79209689981996, 2.3848250122745944], "stop_id": 4439450, "stop_desc": "FACE 11-13 AVENUE DU MOULIN DE SAQUET - 94081", "stop_name": "MUSEE MAC-VAL"}, "geometry": {"type": "Point", "coordinates": [2.3848250122745944, 48.79209689981996]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f6cb6c37b10a614d68d5f56f7e71f20796fa030a", "fields": {"departement": "94", "stop_lat": 48.78867613628673, "code_postal": "94076", "stop_lon": 2.3746609690403804, "coord": [48.78867613628673, 2.3746609690403804], "stop_id": 4439452, "stop_desc": "77 AVENUE LOUIS ARAGON - 94076", "stop_name": "COLONEL FABIEN"}, "geometry": {"type": "Point", "coordinates": [2.3746609690403804, 48.78867613628673]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "65e7b1161b7ff5786eb1c2f17c0232e3162a0c3a", "fields": {"departement": "94", "stop_lat": 48.816429008859835, "code_postal": "94041", "stop_lon": 2.3997225650243545, "coord": [48.816429008859835, 2.3997225650243545], "stop_id": 4439460, "stop_desc": "94 BOULEVARD PAUL VAILLANT-COUTURIER - 94041", "stop_name": "MOISE - PIERRE GALAIS"}, "geometry": {"type": "Point", "coordinates": [2.3997225650243545, 48.816429008859835]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "49bf784e162cbd2bd291ef4afea9141e6a0c800f", "fields": {"departement": "94", "stop_lat": 48.790579620426534, "code_postal": "94081", "stop_lon": 2.380429921953688, "coord": [48.790579620426534, 2.380429921953688], "stop_id": 4439473, "stop_desc": "78 AVENUE DU MOULIN DE SAQUET - 94081", "stop_name": "CAMELINAT"}, "geometry": {"type": "Point", "coordinates": [2.380429921953688, 48.790579620426534]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dfb1350050743517dff587c3ff37ce27f97dcf45", "fields": {"departement": "94", "stop_lat": 48.795784945342916, "code_postal": "94081", "stop_lon": 2.3979563979549137, "coord": [48.795784945342916, 2.3979563979549137], "stop_id": 4439485, "stop_desc": "FACE 62 AVENUE PAUL VAILLANT-COUTURIER - 94081", "stop_name": "PAUL VAILLANT-COUTURIER"}, "geometry": {"type": "Point", "coordinates": [2.3979563979549137, 48.795784945342916]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "535b21062ed32acdf2fc536d1effe65f0d236986", "fields": {"departement": "94", "stop_lat": 48.804220736262316, "code_postal": "94081", "stop_lon": 2.4049871449392652, "coord": [48.804220736262316, 2.4049871449392652], "stop_id": 4439488, "stop_desc": "FACE 144 AVENUE ANATOLE FRANCE - 94081", "stop_name": "PORT A L'ANGLAIS"}, "geometry": {"type": "Point", "coordinates": [2.4049871449392652, 48.804220736262316]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "be35db74ccfc769e75f03a532a17f6175b08876d", "fields": {"departement": "94", "stop_lat": 48.81487294715123, "code_postal": "94041", "stop_lon": 2.4019389847779085, "coord": [48.81487294715123, 2.4019389847779085], "stop_id": 4439491, "stop_desc": "121 BOULEVARD PAUL VAILLANT-COUTURIER - 94041", "stop_name": "GAMBETTA"}, "geometry": {"type": "Point", "coordinates": [2.4019389847779085, 48.81487294715123]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ebcfff00329c07b3d2e10e118fca496d12f8bcee", "fields": {"departement": "94", "stop_lat": 48.825529348029235, "code_postal": "94018", "stop_lon": 2.407260928275537, "coord": [48.825529348029235, 2.407260928275537], "stop_id": 4439496, "stop_desc": "135 RUE DE PARIS - 94018", "stop_name": "LIBERTE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.407260928275537, 48.825529348029235]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7749a19be126f8ca6d2cfac7c4544d2860d02f2c", "fields": {"departement": "75", "stop_lat": 48.85241340970007, "code_postal": "75105", "stop_lon": 2.346311317055316, "coord": [48.85241340970007, 2.346311317055316], "stop_id": 4439503, "stop_desc": "4 RUE DU PETIT PONT - 75105", "stop_name": "PETIT PONT"}, "geometry": {"type": "Point", "coordinates": [2.346311317055316, 48.85241340970007]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "524c6e12e039160bb24d030fc410168574fcfb60", "fields": {"departement": "75", "stop_lat": 48.849411331848685, "code_postal": "75105", "stop_lon": 2.349265945050231, "coord": [48.849411331848685, 2.349265945050231], "stop_id": 4439505, "stop_desc": "4 RUE MONGE - 75105", "stop_name": "MAUBERT - MUTUALITE"}, "geometry": {"type": "Point", "coordinates": [2.349265945050231, 48.849411331848685]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6ef4eba3bcbf9116af7fae962d27ea79931d483e", "fields": {"departement": "75", "stop_lat": 48.84944725540877, "code_postal": "75105", "stop_lon": 2.3495246995987396, "coord": [48.84944725540877, 2.3495246995987396], "stop_id": 4439506, "stop_desc": "3 RUE MONGE - 75105", "stop_name": "MAUBERT - MUTUALITE"}, "geometry": {"type": "Point", "coordinates": [2.3495246995987396, 48.84944725540877]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6bcc159b1cbbfe411e54a7ab01405419fe3aff97", "fields": {"departement": "75", "stop_lat": 48.8363880998256, "code_postal": "75113", "stop_lon": 2.351917814788917, "coord": [48.8363880998256, 2.351917814788917], "stop_id": 4439515, "stop_desc": "26 AVENUE DES GOBELINS - 75113", "stop_name": "LES GOBELINS"}, "geometry": {"type": "Point", "coordinates": [2.351917814788917, 48.8363880998256]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "190dd36cef2f8c7dcf50c1be384bd467011d5ffd", "fields": {"departement": "75", "stop_lat": 48.834248809681654, "code_postal": "75113", "stop_lon": 2.3537823601834367, "coord": [48.834248809681654, 2.3537823601834367], "stop_id": 4439517, "stop_desc": "57-63 AVENUE DES GOBELINS - 75113", "stop_name": "BANQUIER"}, "geometry": {"type": "Point", "coordinates": [2.3537823601834367, 48.834248809681654]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "793671b83a602bdbec336dec28381372e7abaa6a", "fields": {"departement": "75", "stop_lat": 48.82641104428314, "code_postal": "75113", "stop_lon": 2.357400702995543, "coord": [48.82641104428314, 2.357400702995543], "stop_id": 4439523, "stop_desc": "55-57 AVENUE D'ITALIE - 75113", "stop_name": "ITALIE - TOLBIAC"}, "geometry": {"type": "Point", "coordinates": [2.357400702995543, 48.82641104428314]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ae6fac0a33f3aa950a7d6571ec80db6bab4518d0", "fields": {"departement": "75", "stop_lat": 48.82251923443529, "code_postal": "75113", "stop_lon": 2.35827030620746, "coord": [48.82251923443529, 2.35827030620746], "stop_id": 4439524, "stop_desc": "150 AVENUE D'ITALIE - 75113", "stop_name": "MAISON BLANCHE"}, "geometry": {"type": "Point", "coordinates": [2.35827030620746, 48.82251923443529]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6412e6c9975e606ff008d651722284386da97a62", "fields": {"departement": "75", "stop_lat": 48.81940931886217, "code_postal": "75113", "stop_lon": 2.3592353811253997, "coord": [48.81940931886217, 2.3592353811253997], "stop_id": 4439526, "stop_desc": "190 AVENUE D'ITALIE - 75113", "stop_name": "PORTE D'ITALIE"}, "geometry": {"type": "Point", "coordinates": [2.3592353811253997, 48.81940931886217]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "10d5acbcd014d3833287d2360c081544e980e2d5", "fields": {"departement": "94", "stop_lat": 48.81476240384012, "code_postal": "94043", "stop_lon": 2.360621543737651, "coord": [48.81476240384012, 2.360621543737651], "stop_id": 4439530, "stop_desc": "18 AVENUE DE FONTAINEBLEAU - 94043", "stop_name": "ROGER SALENGRO - FONTAINEBLEAU"}, "geometry": {"type": "Point", "coordinates": [2.360621543737651, 48.81476240384012]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c49a6df6543ceff7a3633a84107b3f019ee1e92a", "fields": {"departement": "94", "stop_lat": 48.759448634048056, "code_postal": "94073", "stop_lon": 2.3693244252130907, "coord": [48.759448634048056, 2.3693244252130907], "stop_id": 4439557, "stop_desc": "ROUTE DE THIAIS - 94073", "stop_name": "LE COR DE CHASSE"}, "geometry": {"type": "Point", "coordinates": [2.3693244252130907, 48.759448634048056]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dc13b9f5f178a3955e13b78ce8ab957c28154492", "fields": {"departement": "94", "stop_lat": 48.75953299135263, "code_postal": "94021", "stop_lon": 2.3515698526455524, "coord": [48.75953299135263, 2.3515698526455524], "stop_id": 4439565, "stop_desc": "AVENUE DES TROIS MARCHES - 94021", "stop_name": "MAREE"}, "geometry": {"type": "Point", "coordinates": [2.3515698526455524, 48.75953299135263]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4bb5ec7fcbd486ec4826f68b5c0cd6d7c1782099", "fields": {"departement": "94", "stop_lat": 48.75100890711198, "code_postal": "94065", "stop_lon": 2.368748335111457, "coord": [48.75100890711198, 2.368748335111457], "stop_id": 4439575, "stop_desc": "ROUTE DEPARTEMENTALE 7 - 94065", "stop_name": "S.E.N.I.A."}, "geometry": {"type": "Point", "coordinates": [2.368748335111457, 48.75100890711198]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "343ca89971227090d92f7496cba6b1c5bba3c7ea", "fields": {"departement": "91", "stop_lat": 48.74359458544199, "code_postal": "91479", "stop_lon": 2.3649113242053637, "coord": [48.74359458544199, 2.3649113242053637], "stop_id": 4439578, "stop_desc": "ROUTE NUMERO 5 - 91479", "stop_name": "HANGAR N 6"}, "geometry": {"type": "Point", "coordinates": [2.3649113242053637, 48.74359458544199]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4171e1f8684892fa43bea05dc7ee834971a7104b", "fields": {"departement": "91", "stop_lat": 48.690764432770045, "code_postal": "91326", "stop_lon": 2.381949145916975, "coord": [48.690764432770045, 2.381949145916975], "stop_id": 4439603, "stop_desc": "FACE 43 RUE DES GAULOIS - 91326", "stop_name": "JUVISY-RER"}, "geometry": {"type": "Point", "coordinates": [2.381949145916975, 48.690764432770045]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b6178f602a94c468e77ede35c912576c6d1bdfb8", "fields": {"departement": "94", "stop_lat": 48.74663144489944, "code_postal": "94073", "stop_lon": 2.3695203858416476, "coord": [48.74663144489944, 2.3695203858416476], "stop_id": 4439609, "stop_desc": "ROUTE DE FONTAINEBLEAU (EX RN7) - 94073", "stop_name": "PONT DE RUNGIS-RER"}, "geometry": {"type": "Point", "coordinates": [2.3695203858416476, 48.74663144489944]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9b344be4bd9aeb30a62b92c806b8c27da35853fe", "fields": {"departement": "94", "stop_lat": 48.7682303001137, "code_postal": "94073", "stop_lon": 2.368214897398787, "coord": [48.7682303001137, 2.368214897398787], "stop_id": 4439615, "stop_desc": "AVENUE DE STALINGRAD - 94073", "stop_name": "BRETAGNE"}, "geometry": {"type": "Point", "coordinates": [2.368214897398787, 48.7682303001137]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f1e8bdce6c42d888a5b8b710fd60544248eaf696", "fields": {"departement": "92", "stop_lat": 48.806182525144486, "code_postal": "92048", "stop_lon": 2.246238282785316, "coord": [48.806182525144486, 2.246238282785316], "stop_id": 4458754, "stop_desc": "13 RUE DU PERE BROTTIER - 92048", "stop_name": "PERE BROTTIER - CHARLES INFROIT"}, "geometry": {"type": "Point", "coordinates": [2.246238282785316, 48.806182525144486]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "824b32c2866ebdfe46a4d5b05c81ec513107338e", "fields": {"departement": "94", "stop_lat": 48.787527716775635, "code_postal": "94076", "stop_lon": 2.3675054965008373, "coord": [48.787527716775635, 2.3675054965008373], "stop_id": 4036815, "stop_desc": "PISTE GARE ROUTIERE - 94076", "stop_name": "VILLEJUIF - LOUIS ARAGON-METRO"}, "geometry": {"type": "Point", "coordinates": [2.3675054965008373, 48.787527716775635]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bd310aa7be1be10c403aa9ff85a384008eb6b8ce", "fields": {"departement": "94", "stop_lat": 48.787527716775635, "code_postal": "94076", "stop_lon": 2.3675054965008373, "coord": [48.787527716775635, 2.3675054965008373], "stop_id": 4036816, "stop_desc": "PISTE GARE ROUTIERE - 94076", "stop_name": "VILLEJUIF - LOUIS ARAGON-METRO"}, "geometry": {"type": "Point", "coordinates": [2.3675054965008373, 48.787527716775635]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "96235bcc8ff590be57ed65b5330841f341f315b1", "fields": {"departement": "75", "stop_lat": 48.86565205893974, "code_postal": "75102", "stop_lon": 2.3433847968096146, "coord": [48.86565205893974, 2.3433847968096146], "stop_id": 4036823, "stop_desc": "54 RUE DU LOUVRE - 75102", "stop_name": "LOUVRE - ETIENNE MARCEL"}, "geometry": {"type": "Point", "coordinates": [2.3433847968096146, 48.86565205893974]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "849d58e534096893792bc698f302ef9143d8f590", "fields": {"departement": "75", "stop_lat": 48.89044694908414, "code_postal": "75117", "stop_lon": 2.320613679282316, "coord": [48.89044694908414, 2.320613679282316], "stop_id": 4036829, "stop_desc": "130 AVENUE DE CLICHY - 75117", "stop_name": "RUE DES MOINES"}, "geometry": {"type": "Point", "coordinates": [2.320613679282316, 48.89044694908414]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e97c3059b0f571cc8249902ff86233a0aac8d049", "fields": {"departement": "93", "stop_lat": 48.9080088414417, "code_postal": "93070", "stop_lon": 2.3323602149860267, "coord": [48.9080088414417, 2.3323602149860267], "stop_id": 4036836, "stop_desc": "54 AVENUE GABRIEL PERI - 93070", "stop_name": "ERNEST RENAN"}, "geometry": {"type": "Point", "coordinates": [2.3323602149860267, 48.9080088414417]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8af27dcb5e8805396d734e5683a8d6019571c23f", "fields": {"departement": "93", "stop_lat": 48.903119925799416, "code_postal": "93070", "stop_lon": 2.333846600482987, "coord": [48.903119925799416, 2.333846600482987], "stop_id": 4036840, "stop_desc": "54 RUE CHARLES SCHMIDT - 93070", "stop_name": "KLEBER"}, "geometry": {"type": "Point", "coordinates": [2.333846600482987, 48.903119925799416]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bef14e67e5867fe91f7687ad7c4c4d676545577b", "fields": {"departement": "75", "stop_lat": 48.898033270205325, "code_postal": "75118", "stop_lon": 2.336968431666844, "coord": [48.898033270205325, 2.336968431666844], "stop_id": 4036844, "stop_desc": "1 AVENUE DE LA PORTE DE MONTMARTRE - 75118", "stop_name": "PORTE DE MONTMARTRE - BOULEVARD NEY"}, "geometry": {"type": "Point", "coordinates": [2.336968431666844, 48.898033270205325]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d6a71accc0ee19ac56f807cec856d37c50dae6f4", "fields": {"departement": "75", "stop_lat": 48.89118443658087, "code_postal": "75118", "stop_lon": 2.34943917727661, "coord": [48.89118443658087, 2.34943917727661], "stop_id": 4036852, "stop_desc": "73 BOULEVARD BARBES - 75118", "stop_name": "MARCADET - POISSONNIERS"}, "geometry": {"type": "Point", "coordinates": [2.34943917727661, 48.89118443658087]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ea7eddb0b3f65b3305b4e40848a301086427087e", "fields": {"departement": "75", "stop_lat": 48.875141086436834, "code_postal": "75110", "stop_lon": 2.3576921392329484, "coord": [48.875141086436834, 2.3576921392329484], "stop_id": 4036862, "stop_desc": "74 BOULEVARD DE STRASBOURG - 75110", "stop_name": "GARE DE L'EST"}, "geometry": {"type": "Point", "coordinates": [2.3576921392329484, 48.875141086436834]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "18717979fb606bd54057ac3bffed07440bac225d", "fields": {"departement": "75", "stop_lat": 48.87243595580059, "code_postal": "75110", "stop_lon": 2.3574049633654526, "coord": [48.87243595580059, 2.3574049633654526], "stop_id": 4036864, "stop_desc": "67-69 RUE DU FAUBOURG SAINT-MARTIN - 75110", "stop_name": "MAIRIE DU 10E"}, "geometry": {"type": "Point", "coordinates": [2.3574049633654526, 48.87243595580059]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ad841985556ca88b65678666454cc9d0dde1d314", "fields": {"departement": "75", "stop_lat": 48.83834811753285, "code_postal": "75114", "stop_lon": 2.330773793644955, "coord": [48.83834811753285, 2.330773793644955], "stop_id": 4036881, "stop_desc": "244 BOULEVARD RASPAIL - 75114", "stop_name": "RASPAIL-EDGAR QUINET"}, "geometry": {"type": "Point", "coordinates": [2.330773793644955, 48.83834811753285]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e73314a474014d78f3f616a96f6492845aabfe38", "fields": {"departement": "75", "stop_lat": 48.839094085253215, "code_postal": "75114", "stop_lon": 2.3307737004886713, "coord": [48.839094085253215, 2.3307737004886713], "stop_id": 4036882, "stop_desc": "237 BOULEVARD RASPAIL - 75114", "stop_name": "RASPAIL-EDGAR QUINET"}, "geometry": {"type": "Point", "coordinates": [2.3307737004886713, 48.839094085253215]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4d7cf1df25e294c40fb73516ef260937c594173a", "fields": {"departement": "75", "stop_lat": 48.835094687163554, "code_postal": "75114", "stop_lon": 2.332285404450967, "coord": [48.835094687163554, 2.332285404450967], "stop_id": 4036884, "stop_desc": "295 BOULEVARD RASPAIL - 75114", "stop_name": "VICTOR CONSIDERANT"}, "geometry": {"type": "Point", "coordinates": [2.332285404450967, 48.835094687163554]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "982da730a43a695893c0928a33b12eaa9b05872f", "fields": {"departement": "75", "stop_lat": 48.82425513830218, "code_postal": "75114", "stop_lon": 2.3255759172850463, "coord": [48.82425513830218, 2.3255759172850463], "stop_id": 4036891, "stop_desc": "130 AVENUE DU GENERAL LECLERC - 75114", "stop_name": "PORTE D'ORLEANS"}, "geometry": {"type": "Point", "coordinates": [2.3255759172850463, 48.82425513830218]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7ecfd1913e3a0bc214f498c8953ede6b3623c536", "fields": {"departement": "75", "stop_lat": 48.82273618498334, "code_postal": "75114", "stop_lon": 2.325208756264251, "coord": [48.82273618498334, 2.325208756264251], "stop_id": 4036893, "stop_desc": "4 PLACE DU 25 AOUT 1944 - 75114", "stop_name": "PORTE D'ORLEANS-METRO"}, "geometry": {"type": "Point", "coordinates": [2.325208756264251, 48.82273618498334]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d4fec1a7fbdf72a24903ea24dc588b513e39f7e5", "fields": {"departement": "94", "stop_lat": 48.81062089478181, "code_postal": "94003", "stop_lon": 2.3268989636631354, "coord": [48.81062089478181, 2.3268989636631354], "stop_id": 4036899, "stop_desc": "3 AVENUE ARISTIDE BRIAND - 94003", "stop_name": "VACHE NOIRE"}, "geometry": {"type": "Point", "coordinates": [2.3268989636631354, 48.81062089478181]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "61102c6296d30a5e8b54b47b025b1c1f3e229442", "fields": {"departement": "92", "stop_lat": 48.80574038095107, "code_postal": "92007", "stop_lon": 2.3253215530584908, "coord": [48.80574038095107, 2.3253215530584908], "stop_id": 4036900, "stop_desc": "26 AVENUE ARISTIDE BRIAND - 92007", "stop_name": "CROIX D'ARCUEIL"}, "geometry": {"type": "Point", "coordinates": [2.3253215530584908, 48.80574038095107]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "804d6add1ef03ecd408e51990fded6df3f4c0021", "fields": {"departement": "92", "stop_lat": 48.78265834036124, "code_postal": "92014", "stop_lon": 2.3168128098021983, "coord": [48.78265834036124, 2.3168128098021983], "stop_id": 4036908, "stop_desc": "51 BIS-53 AVENUE DU GENERAL LECLERC - 92014", "stop_name": "RUE DU 8 MAI 1945"}, "geometry": {"type": "Point", "coordinates": [2.3168128098021983, 48.78265834036124]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "83995932cfdde0194aad9e37e87b058ac6afe238", "fields": {"departement": "92", "stop_lat": 48.779934279961125, "code_postal": "92014", "stop_lon": 2.3130602821933905, "coord": [48.779934279961125, 2.3130602821933905], "stop_id": 4036909, "stop_desc": "PISTE PLACE DE LA GARE - 92014", "stop_name": "BOURG-LA-REINE RER"}, "geometry": {"type": "Point", "coordinates": [2.3130602821933905, 48.779934279961125]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d58b6c5aea8ce9c63d1cad9763499f67a8a2abb2", "fields": {"departement": "94", "stop_lat": 48.78995699489565, "code_postal": "94016", "stop_lon": 2.319612077566947, "coord": [48.78995699489565, 2.319612077566947], "stop_id": 4036914, "stop_desc": "FACE 276 AVENUE ARISTIDE BRIAND - 94016", "stop_name": "CITE JARDINS"}, "geometry": {"type": "Point", "coordinates": [2.319612077566947, 48.78995699489565]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "40b89db242026bb38b06c87325c40baf638b746e", "fields": {"departement": "75", "stop_lat": 48.84020871832954, "code_postal": "75105", "stop_lon": 2.3370504438898014, "coord": [48.84020871832954, 2.3370504438898014], "stop_id": 4036922, "stop_desc": "AVENUE DE L'OBSERVATOIRE - 75105", "stop_name": "OBSERVATOIRE - PORT ROYAL"}, "geometry": {"type": "Point", "coordinates": [2.3370504438898014, 48.84020871832954]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "613fdebdc89e92b70d3e6ad1ea2fc1db70fc1ee1", "fields": {"departement": "75", "stop_lat": 48.850067906070635, "code_postal": "75105", "stop_lon": 2.3425522330838273, "coord": [48.850067906070635, 2.3425522330838273], "stop_id": 4036926, "stop_desc": "29-31 BOULEVARD SAINT-MICHEL - 75105", "stop_name": "LES ECOLES"}, "geometry": {"type": "Point", "coordinates": [2.3425522330838273, 48.850067906070635]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8074c5d5660cb0e216b63cfdc4a98130aa2d26d9", "fields": {"departement": "75", "stop_lat": 48.868338278887315, "code_postal": "75103", "stop_lon": 2.3538613429496, "coord": [48.868338278887315, 2.3538613429496], "stop_id": 4036932, "stop_desc": "108 BOULEVARD DE SEBASTOPOL - 75103", "stop_name": "STRASBOURG - SAINT-DENIS"}, "geometry": {"type": "Point", "coordinates": [2.3538613429496, 48.868338278887315]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "936a2b81c1627c3c1b0f2ad77d4747b8829e379f", "fields": {"departement": "93", "stop_lat": 48.912228084056785, "code_postal": "93008", "stop_lon": 2.435792866942983, "coord": [48.912228084056785, 2.435792866942983], "stop_id": 4036944, "stop_desc": "230 AVENUE HENRI BARBUSSE - 93008", "stop_name": "ESCADRILLE NORMANDIE NIEMEN - JEAN JAURES-TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.435792866942983, 48.912228084056785]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ccb4b0a009965a4fe1bf4639d44c626d00660a2a", "fields": {"departement": "93", "stop_lat": 48.910550831592126, "code_postal": "93008", "stop_lon": 2.4316857542938997, "coord": [48.910550831592126, 2.4316857542938997], "stop_id": 4036945, "stop_desc": "AVENUE HENRI BARBUSSE - 93008", "stop_name": "GARE - GRANDE CEINTURE"}, "geometry": {"type": "Point", "coordinates": [2.4316857542938997, 48.910550831592126]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9b1fc6f56071a8381b9ef5f7ae5eabbceef537e3", "fields": {"departement": "93", "stop_lat": 48.90861280077064, "code_postal": "93008", "stop_lon": 2.4275920869735432, "coord": [48.90861280077064, 2.4275920869735432], "stop_id": 4036947, "stop_desc": "53 AVENUE HENRI BARBUSSE - 93008", "stop_name": "LYCEE ALFRED COSTES"}, "geometry": {"type": "Point", "coordinates": [2.4275920869735432, 48.90861280077064]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "09d2be91b7c03ffdc9cc06e558dd50ceb1e48b1c", "fields": {"departement": "93", "stop_lat": 48.90341697332724, "code_postal": "93055", "stop_lon": 2.4167997882929195, "coord": [48.90341697332724, 2.4167997882929195], "stop_id": 4036951, "stop_desc": "FACE 210 AVENUE DU GENERAL LECLERC - 93055", "stop_name": "CHEMIN DES VIGNES"}, "geometry": {"type": "Point", "coordinates": [2.4167997882929195, 48.90341697332724]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "09961778c4b12d6fb8ca9f68ba2900aac5362919", "fields": {"departement": "93", "stop_lat": 48.90002406190681, "code_postal": "93055", "stop_lon": 2.410210555550883, "coord": [48.90002406190681, 2.410210555550883], "stop_id": 4036955, "stop_desc": "128 AVENUE DU GENERAL LECLERC - 93055", "stop_name": "DIDEROT"}, "geometry": {"type": "Point", "coordinates": [2.410210555550883, 48.90002406190681]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "21c053b419940f3852b52eef701127b853da3fb9", "fields": {"departement": "93", "stop_lat": 48.89549979635163, "code_postal": "93055", "stop_lon": 2.401058235497317, "coord": [48.89549979635163, 2.401058235497317], "stop_id": 4036960, "stop_desc": "61 RUE HOCHE - 93055", "stop_name": "CENTRE NATIONAL DE LA DANSE"}, "geometry": {"type": "Point", "coordinates": [2.401058235497317, 48.89549979635163]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "69af8898a01088347d43d63d177cd3279a558e41", "fields": {"departement": "75", "stop_lat": 48.887426807824475, "code_postal": "75119", "stop_lon": 2.387501862391329, "coord": [48.887426807824475, 2.387501862391329], "stop_id": 4036968, "stop_desc": "167 AVENUE JEAN JAURES - 75119", "stop_name": "OURCQ"}, "geometry": {"type": "Point", "coordinates": [2.387501862391329, 48.887426807824475]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "75e47357aa34048544e1a8ac8bc3030a22d6b539", "fields": {"departement": "75", "stop_lat": 48.88590126784092, "code_postal": "75119", "stop_lon": 2.381749450930778, "coord": [48.88590126784092, 2.381749450930778], "stop_id": 4036970, "stop_desc": "119 AVENUE JEAN JAURES - 75119", "stop_name": "JEAN JAURES - LORRAINE"}, "geometry": {"type": "Point", "coordinates": [2.381749450930778, 48.88590126784092]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "84c15d7d0248c9377bc9192eaee20dbd5e411135", "fields": {"departement": "75", "stop_lat": 48.878384730659775, "code_postal": "75110", "stop_lon": 2.361753913742779, "coord": [48.878384730659775, 2.361753913742779], "stop_id": 4036976, "stop_desc": "FACE 186 RUE DU FAUBOURG SAINT-MARTIN - 75110", "stop_name": "CHATEAU LANDON"}, "geometry": {"type": "Point", "coordinates": [2.361753913742779, 48.878384730659775]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d8edff21040285baa202bba4285ea3b4d94df023", "fields": {"departement": "75", "stop_lat": 48.8597465272257, "code_postal": "75104", "stop_lon": 2.35249649876749, "coord": [48.8597465272257, 2.35249649876749], "stop_id": 4036984, "stop_desc": "FACE 22 RUE DU RENARD - 75104", "stop_name": "CENTRE GEORGES POMPIDOU"}, "geometry": {"type": "Point", "coordinates": [2.35249649876749, 48.8597465272257]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3fa1b24b900c40048943560e3767c0f9c54127fb", "fields": {"departement": "75", "stop_lat": 48.855415256092286, "code_postal": "75101", "stop_lon": 2.3458079091124455, "coord": [48.855415256092286, 2.3458079091124455], "stop_id": 4036987, "stop_desc": "FACE 1 BOULEVARD DU PALAIS - 75101", "stop_name": "CITE - PALAIS DE JUSTICE"}, "geometry": {"type": "Point", "coordinates": [2.3458079091124455, 48.855415256092286]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "59d3b4899e954c71da59a9094c621e993d55cddc", "fields": {"departement": "75", "stop_lat": 48.851308132416946, "code_postal": "75106", "stop_lon": 2.33101731159199, "coord": [48.851308132416946, 2.33101731159199], "stop_id": 4036995, "stop_desc": "69 RUE DE RENNES - 75106", "stop_name": "MICHEL DEBRE"}, "geometry": {"type": "Point", "coordinates": [2.33101731159199, 48.851308132416946]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5354d8b9495e7183a3145c2522632c5a643c6c7f", "fields": {"departement": "75", "stop_lat": 48.84879147223759, "code_postal": "75106", "stop_lon": 2.328402948470149, "coord": [48.84879147223759, 2.328402948470149], "stop_id": 4036996, "stop_desc": "108 RUE DE RENNES - 75106", "stop_name": "RENNES - D'ASSAS"}, "geometry": {"type": "Point", "coordinates": [2.328402948470149, 48.84879147223759]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "52ec39bbf5d90438883258843de7e8b0a83cf8fc", "fields": {"departement": "75", "stop_lat": 48.84914202919279, "code_postal": "75106", "stop_lon": 2.3290293232080557, "coord": [48.84914202919279, 2.3290293232080557], "stop_id": 4036997, "stop_desc": "97-99 RUE DE RENNES - 75106", "stop_name": "RENNES - D'ASSAS"}, "geometry": {"type": "Point", "coordinates": [2.3290293232080557, 48.84914202919279]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fb893534745ce8cf6817c7512f1fc40ef19c6fca", "fields": {"departement": "75", "stop_lat": 48.838369035834674, "code_postal": "75115", "stop_lon": 2.2987641849521716, "coord": [48.838369035834674, 2.2987641849521716], "stop_id": 4037013, "stop_desc": "315 RUE DE VAUGIRARD - 75115", "stop_name": "ABBE GROULT"}, "geometry": {"type": "Point", "coordinates": [2.2987641849521716, 48.838369035834674]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "055218e5b76d747148dca5d5afe2d5b7d5def9d4", "fields": {"departement": "75", "stop_lat": 48.838446179632186, "code_postal": "75115", "stop_lon": 2.2885390097212523, "coord": [48.838446179632186, 2.2885390097212523], "stop_id": 4037015, "stop_desc": "276-278 R LECOURBE - 75115", "stop_name": "DURANTON"}, "geometry": {"type": "Point", "coordinates": [2.2885390097212523, 48.838446179632186]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eb2b20c3e00e41c7228c7f13333dab4a16eda08f", "fields": {"departement": "75", "stop_lat": 48.836357751338085, "code_postal": "75115", "stop_lon": 2.2810256065344885, "coord": [48.836357751338085, 2.2810256065344885], "stop_id": 4037017, "stop_desc": "103-105 RUE LEBLANC - 75115", "stop_name": "BALARD - LECOURBE"}, "geometry": {"type": "Point", "coordinates": [2.2810256065344885, 48.836357751338085]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f76a70f208a6d332609f20692dff3792cf69c29e", "fields": {"departement": "75", "stop_lat": 48.832330067121525, "code_postal": "75115", "stop_lon": 2.278456975264492, "coord": [48.832330067121525, 2.278456975264492], "stop_id": 4037019, "stop_desc": "FACE 1 RUE DU COLONEL PIERRE AVIA - 75115", "stop_name": "LOUIS ARMAND"}, "geometry": {"type": "Point", "coordinates": [2.278456975264492, 48.832330067121525]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cd8028b8c8413f3c4530bf374331529bee09f5be", "fields": {"departement": "92", "stop_lat": 48.831836707153386, "code_postal": "92040", "stop_lon": 2.2804315068912797, "coord": [48.831836707153386, 2.2804315068912797], "stop_id": 4037028, "stop_desc": "FACE 2 BIS RUE JEANNE D'ARC - 92040", "stop_name": "PORTE D'ISSY"}, "geometry": {"type": "Point", "coordinates": [2.2804315068912797, 48.831836707153386]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a14a1034672bc775a05f50937ae72894912171a4", "fields": {"departement": "75", "stop_lat": 48.837352823094804, "code_postal": "75115", "stop_lon": 2.2968996770026644, "coord": [48.837352823094804, 2.2968996770026644], "stop_id": 4037032, "stop_desc": "333-335 R DE VAUGIRARD - 75115", "stop_name": "CONVENTION - VAUGIRARD"}, "geometry": {"type": "Point", "coordinates": [2.2968996770026644, 48.837352823094804]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "90e9ae854e3f5a8830d367eee337c837e330ba97", "fields": {"departement": "75", "stop_lat": 48.843731020990745, "code_postal": "75115", "stop_lon": 2.3233383911773933, "coord": [48.843731020990745, 2.3233383911773933], "stop_id": 4037037, "stop_desc": "PLACE DU 18 JUIN 1940 - 75115", "stop_name": "PLACE DU 18 JUIN 1940"}, "geometry": {"type": "Point", "coordinates": [2.3233383911773933, 48.843731020990745]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f521f7ad8a71a85bcf305c57b360d30992de7a76", "fields": {"departement": "75", "stop_lat": 48.87628189386968, "code_postal": "75110", "stop_lon": 2.3608264014869884, "coord": [48.87628189386968, 2.3608264014869884], "stop_id": 4037048, "stop_desc": "156 RUE DU FAUBOURG SAINT-MARTIN - 75110", "stop_name": "VERDUN"}, "geometry": {"type": "Point", "coordinates": [2.3608264014869884, 48.87628189386968]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "93f74e5b4b9e5b4acdef1c97c173642f66a48a84", "fields": {"departement": "93", "stop_lat": 48.90369485870172, "code_postal": "93008", "stop_lon": 2.4178635488682256, "coord": [48.90369485870172, 2.4178635488682256], "stop_id": 4037049, "stop_desc": "2-6 AVENUE HENRI BARBUSSE - 93008", "stop_name": "CHEMIN DES VIGNES"}, "geometry": {"type": "Point", "coordinates": [2.4178635488682256, 48.90369485870172]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d7e106d192b6db6160b8742a5773d1bb328d7112", "fields": {"departement": "75", "stop_lat": 48.844396213825625, "code_postal": "75112", "stop_lon": 2.441505671320099, "coord": [48.844396213825625, 2.441505671320099], "stop_id": 4037160, "stop_desc": "PISTE GARE ROUTIERE - 75112", "stop_name": "CHATEAU DE VINCENNES"}, "geometry": {"type": "Point", "coordinates": [2.441505671320099, 48.844396213825625]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c5e7e00b187ea9e6909b1d773bbeb4a9fd001974", "fields": {"departement": "75", "stop_lat": 48.84613389980741, "code_postal": "75112", "stop_lon": 2.376867561462037, "coord": [48.84613389980741, 2.376867561462037], "stop_id": 4037182, "stop_desc": "42 BOULEVARD DIDEROT - 75112", "stop_name": "DAUMESNIL - DIDEROT"}, "geometry": {"type": "Point", "coordinates": [2.376867561462037, 48.84613389980741]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "925312f1c26af06f8189ffefa439496d143ade5b", "fields": {"departement": "75", "stop_lat": 48.84598203749001, "code_postal": "75112", "stop_lon": 2.3739805748450498, "coord": [48.84598203749001, 2.3739805748450498], "stop_id": 4037183, "stop_desc": "FACE 23BIS BOULEVARD DIDEROT - 75112", "stop_name": "GARE DE LYON - DIDEROT"}, "geometry": {"type": "Point", "coordinates": [2.3739805748450498, 48.84598203749001]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "91cd600ac318114b7614654cbf94268cfdc235bb", "fields": {"departement": "75", "stop_lat": 48.8483376180706, "code_postal": "75112", "stop_lon": 2.3710952409746535, "coord": [48.8483376180706, 2.3710952409746535], "stop_id": 4037186, "stop_desc": "41 RUE DE LYON - 75112", "stop_name": "LYON - LEDRU ROLLIN"}, "geometry": {"type": "Point", "coordinates": [2.3710952409746535, 48.8483376180706]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b318f9299fafae1d6d31f02a559b021e7d21de3b", "fields": {"departement": "75", "stop_lat": 48.85239140153054, "code_postal": "75112", "stop_lon": 2.369545320283473, "coord": [48.85239140153054, 2.369545320283473], "stop_id": 4037187, "stop_desc": "RUE DE LYON - 75112", "stop_name": "BASTILLE"}, "geometry": {"type": "Point", "coordinates": [2.369545320283473, 48.85239140153054]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a05f902570e8bff654b1d8eea73d0cf247abab74", "fields": {"departement": "75", "stop_lat": 48.85337130716259, "code_postal": "75104", "stop_lon": 2.368524486324227, "coord": [48.85337130716259, 2.368524486324227], "stop_id": 4037188, "stop_desc": "3 BIS PLACE DE LA BASTILLE - 75104", "stop_name": "BASTILLE - RUE SAINT-ANTOINE"}, "geometry": {"type": "Point", "coordinates": [2.368524486324227, 48.85337130716259]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1c859190f57b192fc5d0d1b38f451125a747b601", "fields": {"departement": "75", "stop_lat": 48.8598461517609, "code_postal": "75101", "stop_lon": 2.344364818985878, "coord": [48.8598461517609, 2.344364818985878], "stop_id": 4037199, "stop_desc": "128 RUE DE RIVOLI - 75101", "stop_name": "RIVOLI - PONT NEUF"}, "geometry": {"type": "Point", "coordinates": [2.344364818985878, 48.8598461517609]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "562879df210b20b0612c0685907bb9f60dcf9888", "fields": {"departement": "92", "stop_lat": 48.88013216210914, "code_postal": "92051", "stop_lon": 2.2743693786917185, "coord": [48.88013216210914, 2.2743693786917185], "stop_id": 4037222, "stop_desc": "73 AVENUE CHARLES DE GAULLE - 92051", "stop_name": "MARCHE DE NEUILLY-SUR-SEINE"}, "geometry": {"type": "Point", "coordinates": [2.2743693786917185, 48.88013216210914]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8f2236c324d3330704acbbe7fa629d46a191fcd9", "fields": {"departement": "75", "stop_lat": 48.87797775885424, "code_postal": "75116", "stop_lon": 2.2793862572396137, "coord": [48.87797775885424, 2.2793862572396137], "stop_id": 4037231, "stop_desc": "RUE JOSEPH ET MARIE HACKIN - 75116", "stop_name": "ANDRE MAUROIS"}, "geometry": {"type": "Point", "coordinates": [2.2793862572396137, 48.87797775885424]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7cc72da48413c1db390c71bd041a87a5b1201632", "fields": {"departement": "75", "stop_lat": 48.882296669602475, "code_postal": "75118", "stop_lon": 2.3402389627194693, "coord": [48.882296669602475, 2.3402389627194693], "stop_id": 4037276, "stop_desc": "112 BOULEVARD DE ROCHECHOUART - 75118", "stop_name": "ROCHECHOUART - MARTYRS"}, "geometry": {"type": "Point", "coordinates": [2.3402389627194693, 48.882296669602475]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "de42212a0a1c5899b08ac633e67e67964e089524", "fields": {"departement": "75", "stop_lat": 48.88258429865896, "code_postal": "75118", "stop_lon": 2.337431832166389, "coord": [48.88258429865896, 2.337431832166389], "stop_id": 4037277, "stop_desc": "22 BOULEVARD DE CLICHY - 75118", "stop_name": "PIGALLE"}, "geometry": {"type": "Point", "coordinates": [2.337431832166389, 48.88258429865896]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a75d39128221a09ddd2829ab0c171103787856c0", "fields": {"departement": "75", "stop_lat": 48.88371663447967, "code_postal": "75118", "stop_lon": 2.3335889584918315, "coord": [48.88371663447967, 2.3335889584918315], "stop_id": 4037278, "stop_desc": "80 BOULEVARD DE CLICHY - 75118", "stop_name": "BLANCHE"}, "geometry": {"type": "Point", "coordinates": [2.3335889584918315, 48.88371663447967]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d59d50d4f51ed9ae1645d76aa9f0f9c55447586a", "fields": {"departement": "75", "stop_lat": 48.87465646998024, "code_postal": "75108", "stop_lon": 2.3213953633663262, "coord": [48.87465646998024, 2.3213953633663262], "stop_id": 4037284, "stop_desc": "108 BOULEVARD HAUSSMANN - 75108", "stop_name": "SAINT-AUGUSTIN"}, "geometry": {"type": "Point", "coordinates": [2.3213953633663262, 48.87465646998024]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a25ef27303c2d36d0c12163bb2fb31785ac618e7", "fields": {"departement": "75", "stop_lat": 48.86520873004288, "code_postal": "75108", "stop_lon": 2.3100508249308103, "coord": [48.86520873004288, 2.3100508249308103], "stop_id": 4037287, "stop_desc": "1 AVENUE F.D.ROOSEVELT - 75108", "stop_name": "PALAIS DE LA DECOUVERTE"}, "geometry": {"type": "Point", "coordinates": [2.3100508249308103, 48.86520873004288]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f473d9c1f0001bf9ee2bb2132bb7bc8d55aa3463", "fields": {"departement": "75", "stop_lat": 48.857607734065525, "code_postal": "75107", "stop_lon": 2.323770519843578, "coord": [48.857607734065525, 2.323770519843578], "stop_id": 4037290, "stop_desc": "FACE 250 BOULEVARD SAINT-GERMAIN - 75107", "stop_name": "SOLFERINO - BELLECHASSE"}, "geometry": {"type": "Point", "coordinates": [2.323770519843578, 48.857607734065525]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "25528ade4a108546a129b6aff4561bc5f8c0e947", "fields": {"departement": "95", "stop_lat": 48.92333364375808, "code_postal": "95063", "stop_lon": 2.20801063048684, "coord": [48.92333364375808, 2.20801063048684], "stop_id": 4037717, "stop_desc": "PLACE DU GRAND CERF - 95063", "stop_name": "GRAND CERF"}, "geometry": {"type": "Point", "coordinates": [2.20801063048684, 48.92333364375808]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dcbbd6ef2353724ade020323b283014de6689e0f", "fields": {"departement": "95", "stop_lat": 48.92696288608361, "code_postal": "95063", "stop_lon": 2.2151345728058702, "coord": [48.92696288608361, 2.2151345728058702], "stop_id": 4037722, "stop_desc": "73 BIS RUE EDOUARD VAILLANT - 95063", "stop_name": "LA GRACE DE DIEU"}, "geometry": {"type": "Point", "coordinates": [2.2151345728058702, 48.92696288608361]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4b47c41c894a02c6aa69df46ff0fca2e12a835e9", "fields": {"departement": "95", "stop_lat": 48.92706161626719, "code_postal": "95063", "stop_lon": 2.2150115921880924, "coord": [48.92706161626719, 2.2150115921880924], "stop_id": 4037723, "stop_desc": "64 RUE EDOUARD VAILLANT - 95063", "stop_name": "LA GRACE DE DIEU"}, "geometry": {"type": "Point", "coordinates": [2.2150115921880924, 48.92706161626719]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c48f9c12e578f91191f61100b7d20bf797424e2b", "fields": {"departement": "95", "stop_lat": 48.92316367574363, "code_postal": "95063", "stop_lon": 2.2173664624293954, "coord": [48.92316367574363, 2.2173664624293954], "stop_id": 4037724, "stop_desc": "R JULIUS ET ETHEL ROSENBERG - 95063", "stop_name": "PONT DE BEZONS"}, "geometry": {"type": "Point", "coordinates": [2.2173664624293954, 48.92316367574363]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4819f3c9ddbc904c86c16a1845fd214440b29c7d", "fields": {"departement": "95", "stop_lat": 48.923235913397576, "code_postal": "95063", "stop_lon": 2.2177072361847747, "coord": [48.923235913397576, 2.2177072361847747], "stop_id": 4037725, "stop_desc": "0 R JULIUS ET ETHEL ROSENBERG - 95063", "stop_name": "PONT DE BEZONS"}, "geometry": {"type": "Point", "coordinates": [2.2177072361847747, 48.923235913397576]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "15235e25b155b1a8b73516e417090e1839c6cecc", "fields": {"departement": "92", "stop_lat": 48.91362227104469, "code_postal": "92025", "stop_lon": 2.229701044179225, "coord": [48.91362227104469, 2.229701044179225], "stop_id": 4037728, "stop_desc": "139 BD CHARLES DE GAULLE - 92025", "stop_name": "VICTOR BASCH"}, "geometry": {"type": "Point", "coordinates": [2.229701044179225, 48.91362227104469]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "148df681433aa219e2c822f5d6ae396862082e12", "fields": {"departement": "92", "stop_lat": 48.891361317918545, "code_postal": "92062", "stop_lon": 2.240296277187438, "coord": [48.891361317918545, 2.240296277187438], "stop_id": 4037747, "stop_desc": "VOI PERRONET NORD - 92062", "stop_name": "LA DEFENSE-METRO-RER-TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.240296277187438, 48.891361317918545]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ede358377566e52bb3d8b02dd804cfb822e7fe69", "fields": {"departement": "92", "stop_lat": 48.88818903073687, "code_postal": "92062", "stop_lon": 2.240533894361642, "coord": [48.88818903073687, 2.240533894361642], "stop_id": 4037748, "stop_desc": "15 AVENUE JEAN MOULIN - 92062", "stop_name": "BOIELDIEU"}, "geometry": {"type": "Point", "coordinates": [2.240533894361642, 48.88818903073687]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3daf570828be754df46659f450a7a97b89e8695f", "fields": {"departement": "92", "stop_lat": 48.88555130589665, "code_postal": "92051", "stop_lon": 2.258922605272076, "coord": [48.88555130589665, 2.258922605272076], "stop_id": 4037753, "stop_desc": "176 AVENUE CHARLES DE GAULLE - 92051", "stop_name": "PONT DE NEUILLY-METRO"}, "geometry": {"type": "Point", "coordinates": [2.258922605272076, 48.88555130589665]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b45a8c75271c0b712a28e7ad8baa22a5fd141afd", "fields": {"departement": "92", "stop_lat": 48.881317375993476, "code_postal": "92051", "stop_lon": 2.2723103244701215, "coord": [48.881317375993476, 2.2723103244701215], "stop_id": 4037759, "stop_desc": "60-62 AVENUE CHARLES DE GAULLE - 92051", "stop_name": "LES SABLONS"}, "geometry": {"type": "Point", "coordinates": [2.2723103244701215, 48.881317375993476]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "93de34f1dcc003e625da729c067377c0fc6c37ee", "fields": {"departement": "75", "stop_lat": 48.87797775885424, "code_postal": "75116", "stop_lon": 2.2793862572396137, "coord": [48.87797775885424, 2.2793862572396137], "stop_id": 4037762, "stop_desc": "RUE JOSEPH ET MARIE HACKIN - 75116", "stop_name": "ANDRE MAUROIS"}, "geometry": {"type": "Point", "coordinates": [2.2793862572396137, 48.87797775885424]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "af25e75329dd87b9ae3f3f34cb2c562a3a89a944", "fields": {"departement": "75", "stop_lat": 48.87553755046, "code_postal": "75116", "stop_lon": 2.289130912119065, "coord": [48.87553755046, 2.289130912119065], "stop_id": 4037765, "stop_desc": "43-47 AVENUE DE LA GRANDE ARMEE - 75116", "stop_name": "ARGENTINE"}, "geometry": {"type": "Point", "coordinates": [2.289130912119065, 48.87553755046]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4c6de68bfdff59e6394958654fe607d6c51aa57a", "fields": {"departement": "75", "stop_lat": 48.871587468618785, "code_postal": "75108", "stop_lon": 2.3014370859374598, "coord": [48.871587468618785, 2.3014370859374598], "stop_id": 4037769, "stop_desc": "95 AVENUE DES CHAMPS ELYSEES - 75108", "stop_name": "GEORGE V"}, "geometry": {"type": "Point", "coordinates": [2.3014370859374598, 48.871587468618785]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f8a2e4bc03206611db09509e9f62a149dca6e5d1", "fields": {"departement": "92", "stop_lat": 48.822225083110055, "code_postal": "92072", "stop_lon": 2.206955758100564, "coord": [48.822225083110055, 2.206955758100564], "stop_id": 4008928, "stop_desc": "30 AVENUE DE L'EUROPE - 92072", "stop_name": "PLACE GABRIEL PERI"}, "geometry": {"type": "Point", "coordinates": [2.206955758100564, 48.822225083110055]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c0b361bfe4990f5141af06bcadf700a2a704b5b9", "fields": {"departement": "92", "stop_lat": 48.80939607804073, "code_postal": "92022", "stop_lon": 2.1886311203390743, "coord": [48.80939607804073, 2.1886311203390743], "stop_id": 4008940, "stop_desc": "1456 AVENUE ROGER SALENGRO - 92022", "stop_name": "PUITS SANS VIN"}, "geometry": {"type": "Point", "coordinates": [2.1886311203390743, 48.80939607804073]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a3c6ea9fc85a8295adfdf0b64afa4b73993bc3cc", "fields": {"departement": "92", "stop_lat": 48.82919548036337, "code_postal": "92012", "stop_lon": 2.2299304834442464, "coord": [48.82919548036337, 2.2299304834442464], "stop_id": 4008945, "stop_desc": "PISTE GARE ROUTIERE - 92012", "stop_name": "PONT DE SEVRES-METRO"}, "geometry": {"type": "Point", "coordinates": [2.2299304834442464, 48.82919548036337]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4a2d9c7c4132e2e46b502a38ea78769a49239ce2", "fields": {"departement": "92", "stop_lat": 48.824749461223334, "code_postal": "92072", "stop_lon": 2.2143133818536844, "coord": [48.824749461223334, 2.2143133818536844], "stop_id": 4008951, "stop_desc": "53 GRANDE RUE - 92072", "stop_name": "MAIRIE DE SEVRES"}, "geometry": {"type": "Point", "coordinates": [2.2143133818536844, 48.824749461223334]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e364dbe69c608cd87f199dc0216775855b98a6c1", "fields": {"departement": "92", "stop_lat": 48.81329240286992, "code_postal": "92022", "stop_lon": 2.192375982764248, "coord": [48.81329240286992, 2.192375982764248], "stop_id": 4008963, "stop_desc": "855 AVENUE ROGER SALENGRO - 92022", "stop_name": "ATRIUM"}, "geometry": {"type": "Point", "coordinates": [2.192375982764248, 48.81329240286992]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2485a9581558239e2563c84aedacbfd7aba0824b", "fields": {"departement": "92", "stop_lat": 48.80845039842665, "code_postal": "92022", "stop_lon": 2.1870689660335674, "coord": [48.80845039842665, 2.1870689660335674], "stop_id": 4008966, "stop_desc": "1630 AVENUE ROGER SALENGRO - 92022", "stop_name": "PUITS SANS VIN"}, "geometry": {"type": "Point", "coordinates": [2.1870689660335674, 48.80845039842665]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "438593f57a644545eca971e5a313cd8035b56135", "fields": {"departement": "92", "stop_lat": 48.80557037224559, "code_postal": "92022", "stop_lon": 2.183988567636607, "coord": [48.80557037224559, 2.183988567636607], "stop_id": 4008968, "stop_desc": "2012-2020 AVENUE ROGER SALENGRO - 92022", "stop_name": "POINTE DE CHAVILLE"}, "geometry": {"type": "Point", "coordinates": [2.183988567636607, 48.80557037224559]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2b0ae8812288dc51bd2c1fb224f4c24f9268bea1", "fields": {"departement": "78", "stop_lat": 48.80415035042272, "code_postal": "78686", "stop_lon": 2.1772031820318833, "coord": [48.80415035042272, 2.1772031820318833], "stop_id": 4008973, "stop_desc": "FACE 50 AVENUE DU GENERAL LECLERC - 78686", "stop_name": "GRACE DE DIEU"}, "geometry": {"type": "Point", "coordinates": [2.1772031820318833, 48.80415035042272]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9fe9cbc5386792e9aef1f246c4a9bbe3b7685189", "fields": {"departement": "78", "stop_lat": 48.799181481998446, "code_postal": "78686", "stop_lon": 2.1592189902085552, "coord": [48.799181481998446, 2.1592189902085552], "stop_id": 4008980, "stop_desc": "240 AVENUE DU GENERAL LECLERC - 78686", "stop_name": "PLACE LOUIS XIV"}, "geometry": {"type": "Point", "coordinates": [2.1592189902085552, 48.799181481998446]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f1093414ef666205c33ddc9638f961621f01c235", "fields": {"departement": "78", "stop_lat": 48.7985251029899, "code_postal": "78646", "stop_lon": 2.153139849205541, "coord": [48.7985251029899, 2.153139849205541], "stop_id": 4008982, "stop_desc": "91 AVENUE DE PARIS - 78646", "stop_name": "PORCHEFONTAINE"}, "geometry": {"type": "Point", "coordinates": [2.153139849205541, 48.7985251029899]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1f51f8cb34385ab1173c47fe59b0f9d6b8700571", "fields": {"departement": "78", "stop_lat": 48.798200571072, "code_postal": "78646", "stop_lon": 2.152515178234721, "coord": [48.798200571072, 2.152515178234721], "stop_id": 4008983, "stop_desc": "116 AVENUE DE PARIS - 78646", "stop_name": "PORCHEFONTAINE"}, "geometry": {"type": "Point", "coordinates": [2.152515178234721, 48.798200571072]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "32dee42c8389881af8ff7493d4b32249dd46b34a", "fields": {"departement": "78", "stop_lat": 48.7982770749154, "code_postal": "78646", "stop_lon": 2.1440935095071154, "coord": [48.7982770749154, 2.1440935095071154], "stop_id": 4008985, "stop_desc": "82 AVENUE DE PARIS - 78646", "stop_name": "JEAN MERMOZ"}, "geometry": {"type": "Point", "coordinates": [2.1440935095071154, 48.7982770749154]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f96cddbaa65b6c24dc8ac5a7950ea1e4cd8f5181", "fields": {"departement": "92", "stop_lat": 48.871179894509005, "code_postal": "92073", "stop_lon": 2.224380379871499, "coord": [48.871179894509005, 2.224380379871499], "stop_id": 4008995, "stop_desc": "6-8 AVENUE FRANKLIN ROOSEVELT - 92073", "stop_name": "MAIRIE DE SURESNES"}, "geometry": {"type": "Point", "coordinates": [2.224380379871499, 48.871179894509005]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1a6f5dbbe241e5a887a18dbb5a168b84fa2ef607", "fields": {"departement": "92", "stop_lat": 48.880717268691356, "code_postal": "92073", "stop_lon": 2.226349075357871, "coord": [48.880717268691356, 2.226349075357871], "stop_id": 4009005, "stop_desc": "FACE 115 RUE DES CHENES - 92073", "stop_name": "DANTON - CIMETIERE VOLTAIRE"}, "geometry": {"type": "Point", "coordinates": [2.226349075357871, 48.880717268691356]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "185f0be2e98d25028f4d628b0f948374d2ec78e6", "fields": {"departement": "92", "stop_lat": 48.86216641781111, "code_postal": "92073", "stop_lon": 2.2075637271823103, "coord": [48.86216641781111, 2.2075637271823103], "stop_id": 4009014, "stop_desc": "PL JEAN MASARYK - 92073", "stop_name": "MASARYK"}, "geometry": {"type": "Point", "coordinates": [2.2075637271823103, 48.86216641781111]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1f3cc145356e4a288d5fe49477c08b6f0807221e", "fields": {"departement": "92", "stop_lat": 48.86495981904738, "code_postal": "92063", "stop_lon": 2.2060310416999966, "coord": [48.86495981904738, 2.2060310416999966], "stop_id": 4009017, "stop_desc": "183 AVENUE JEAN JAURES - 92063", "stop_name": "PLACE DE LA PAIX"}, "geometry": {"type": "Point", "coordinates": [2.2060310416999966, 48.86495981904738]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e737023ffcabd3057fc4b3cb5e2adc6bb8b6b80d", "fields": {"departement": "92", "stop_lat": 48.87050610336747, "code_postal": "92073", "stop_lon": 2.22465432200747, "coord": [48.87050610336747, 2.22465432200747], "stop_id": 4009018, "stop_desc": "24-26 AVENUE DU GENERAL DE GAULLE - 92073", "stop_name": "GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.22465432200747, 48.87050610336747]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9cc66cc251bfa25535e3d70d1c8d351a1f49fce3", "fields": {"departement": "92", "stop_lat": 48.8655983830834, "code_postal": "92073", "stop_lon": 2.223997477347654, "coord": [48.8655983830834, 2.223997477347654], "stop_id": 4009039, "stop_desc": "132 RUE DE LA REPUBLIQUE - 92073", "stop_name": "EUGENE SUE"}, "geometry": {"type": "Point", "coordinates": [2.223997477347654, 48.8655983830834]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9183e875ce6a8e7e394e6bbfb89587411c98fe82", "fields": {"departement": "93", "stop_lat": 48.89543676209062, "code_postal": "93055", "stop_lon": 2.4012898731919776, "coord": [48.89543676209062, 2.4012898731919776], "stop_id": 4009050, "stop_desc": "52 RUE HOCHE - 93055", "stop_name": "CENTRE NATIONAL DE LA DANSE"}, "geometry": {"type": "Point", "coordinates": [2.4012898731919776, 48.89543676209062]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b639818b7e897120cff92cf87dd285b5ec79e378", "fields": {"departement": "93", "stop_lat": 48.89667730082755, "code_postal": "93055", "stop_lon": 2.4007052886677323, "coord": [48.89667730082755, 2.4007052886677323], "stop_id": 4009051, "stop_desc": "6 AVENUE EDOUARD VAILLANT - 93055", "stop_name": "PANTIN RER - MAIRIE"}, "geometry": {"type": "Point", "coordinates": [2.4007052886677323, 48.89667730082755]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aa877c223ff44414c305e7623f158e10055a6458", "fields": {"departement": "93", "stop_lat": 48.90319701064309, "code_postal": "93055", "stop_lon": 2.392574757954796, "coord": [48.90319701064309, 2.392574757954796], "stop_id": 4009054, "stop_desc": "80 AVENUE EDOUARD VAILLANT - 93055", "stop_name": "QUATRE CHEMINS - EDOUARD VAILLANT"}, "geometry": {"type": "Point", "coordinates": [2.392574757954796, 48.90319701064309]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d376503b09c5dd2207dde366510198ba79e9224d", "fields": {"departement": "93", "stop_lat": 48.90651471481911, "code_postal": "93001", "stop_lon": 2.3893063263870644, "coord": [48.90651471481911, 2.3893063263870644], "stop_id": 4009056, "stop_desc": "FACE 104 AVENUE DE LA REPUBLIQUE - 93001", "stop_name": "HOPITAL LA ROSERAIE"}, "geometry": {"type": "Point", "coordinates": [2.3893063263870644, 48.90651471481911]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8171636a5252e7c94bed1545d0c72492594714d6", "fields": {"departement": "93", "stop_lat": 48.90824092123932, "code_postal": "93001", "stop_lon": 2.387699286570942, "coord": [48.90824092123932, 2.387699286570942], "stop_id": 4009057, "stop_desc": "FACE 82-84 AVENUE DE LA REPUBLIQUE - 93001", "stop_name": "RUE DES CITES"}, "geometry": {"type": "Point", "coordinates": [2.387699286570942, 48.90824092123932]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "89b39e8be25f18164d21929522bf84adcf2c2221", "fields": {"departement": "93", "stop_lat": 48.91050656437101, "code_postal": "93001", "stop_lon": 2.385506374394335, "coord": [48.91050656437101, 2.385506374394335], "stop_id": 4009058, "stop_desc": "55 AVENUE DE LA REPUBLIQUE - 93001", "stop_name": "ANDRE KARMAN"}, "geometry": {"type": "Point", "coordinates": [2.385506374394335, 48.91050656437101]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a1af04f521ba790f4da692360ef8d6a524d44cb0", "fields": {"departement": "93", "stop_lat": 48.91666473955509, "code_postal": "93001", "stop_lon": 2.380085024364659, "coord": [48.91666473955509, 2.380085024364659], "stop_id": 4009060, "stop_desc": "20 AVENUE DU PRESIDENT ROOSEVELT - 93001", "stop_name": "SCHAEFFER"}, "geometry": {"type": "Point", "coordinates": [2.380085024364659, 48.91666473955509]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9fcbb4856779c970130a6461b1ab9a72d2c73f4e", "fields": {"departement": "93", "stop_lat": 48.921797935112494, "code_postal": "93001", "stop_lon": 2.3752616839780627, "coord": [48.921797935112494, 2.3752616839780627], "stop_id": 4009062, "stop_desc": "RUE SAINT-DENIS - 93001", "stop_name": "PONT DU CHEMIN DE FER"}, "geometry": {"type": "Point", "coordinates": [2.3752616839780627, 48.921797935112494]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e31afe46a45d4e0b283999bcf652a012595f94e2", "fields": {"departement": "94", "stop_lat": 48.81688469793853, "code_postal": "94037", "stop_lon": 2.3534638078265386, "coord": [48.81688469793853, 2.3534638078265386], "stop_id": 4124832, "stop_desc": "3-5 AVENUE GALLIENI - 94037", "stop_name": "VERDUN"}, "geometry": {"type": "Point", "coordinates": [2.3534638078265386, 48.81688469793853]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "53beab637f4e1a5e1612c4e20538a3ea6d3d6ca4", "fields": {"departement": "75", "stop_lat": 48.82084858320608, "code_postal": "75113", "stop_lon": 2.351028727275042, "coord": [48.82084858320608, 2.351028727275042], "stop_id": 4124833, "stop_desc": "1 RUE GOUTHIERE - 75113", "stop_name": "POTERNE DES PEUPLIERS"}, "geometry": {"type": "Point", "coordinates": [2.351028727275042, 48.82084858320608]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6304df232a6e4d7bb39e7411262cd9d7f84f010e", "fields": {"departement": "75", "stop_lat": 48.81843859863193, "code_postal": "75113", "stop_lon": 2.359493561653259, "coord": [48.81843859863193, 2.359493561653259], "stop_id": 4124835, "stop_desc": "AVENUE DE LA PORTE D'ITALIE - 75113", "stop_name": "PORTE D'ITALIE - HELENE BOUCHER"}, "geometry": {"type": "Point", "coordinates": [2.359493561653259, 48.81843859863193]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dfe385f85931512069a9d7ab092ece569658209c", "fields": {"departement": "92", "stop_lat": 48.88745761169952, "code_postal": "92050", "stop_lon": 2.200331998357145, "coord": [48.88745761169952, 2.200331998357145], "stop_id": 4130512, "stop_desc": "PLACE DE LA BOULE - 92050", "stop_name": "PLACE DE LA BOULE"}, "geometry": {"type": "Point", "coordinates": [2.200331998357145, 48.88745761169952]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "50a4b21868f0cd67a919f327b83e2e1ddee692f8", "fields": {"departement": "92", "stop_lat": 48.8876927900033, "code_postal": "92050", "stop_lon": 2.2016533213360185, "coord": [48.8876927900033, 2.2016533213360185], "stop_id": 4130513, "stop_desc": "6 AVENUE FREDERIC ET IRENE JOLIOT CURIE - 92050", "stop_name": "PLACE DE LA BOULE - JOLIOT CURIE"}, "geometry": {"type": "Point", "coordinates": [2.2016533213360185, 48.8876927900033]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a010b0f997b8ad5e7ee13f8b2cb119ab1ea63e46", "fields": {"departement": "92", "stop_lat": 48.89812239517774, "code_postal": "92050", "stop_lon": 2.2140575314032325, "coord": [48.89812239517774, 2.2140575314032325], "stop_id": 4130519, "stop_desc": "BOULEVARD DES PROVINCES FRANCAISES - 92050", "stop_name": "SOUFFLOT"}, "geometry": {"type": "Point", "coordinates": [2.2140575314032325, 48.89812239517774]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4eb4c3f08fd499b4b2df15f1bbb394a2e6b0ddce", "fields": {"departement": "92", "stop_lat": 48.90110805725489, "code_postal": "92050", "stop_lon": 2.2159452553889656, "coord": [48.90110805725489, 2.2159452553889656], "stop_id": 4130520, "stop_desc": "BOULEVARD DES PROVINCES FRANCAISES - 92050", "stop_name": "NANTERRE - UNIVERSITE RER"}, "geometry": {"type": "Point", "coordinates": [2.2159452553889656, 48.90110805725489]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "459024ec7ef2c5af49fb130f8e83de4151abce53", "fields": {"departement": "92", "stop_lat": 48.912206021163, "code_postal": "92050", "stop_lon": 2.22399103145728, "coord": [48.912206021163, 2.22399103145728], "stop_id": 4130525, "stop_desc": "FACE 403 AVENUE DE LA REPUBLIQUE - 92050", "stop_name": "HOPITAL DE NANTERRE"}, "geometry": {"type": "Point", "coordinates": [2.22399103145728, 48.912206021163]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b0b5d434d78c0c529a1ac20cd53abd3f5c7046cf", "fields": {"departement": "94", "stop_lat": 48.80599906838429, "code_postal": "94019", "stop_lon": 2.555576476468647, "coord": [48.80599906838429, 2.555576476468647], "stop_id": 4130587, "stop_desc": "FACE 20 RUE DU PLESSIS TREVISE - 94019", "stop_name": "COLLEGE BOILEAU"}, "geometry": {"type": "Point", "coordinates": [2.555576476468647, 48.80599906838429]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a60ec565d90e9e2e690d985f02037fd672ea39e9", "fields": {"departement": "78", "stop_lat": 48.94398566123074, "code_postal": "78586", "stop_lon": 2.185284227399462, "coord": [48.94398566123074, 2.185284227399462], "stop_id": 4146015, "stop_desc": "FACE 130 AVENUE DU GENERAL CHARLES DE GAULLE - 78586", "stop_name": "QUATRE CHEMINS"}, "geometry": {"type": "Point", "coordinates": [2.185284227399462, 48.94398566123074]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "74bbff7997128808b7c598df0a05c9cb8a8b92c8", "fields": {"departement": "93", "stop_lat": 49.01048426253027, "code_postal": "93073", "stop_lon": 2.559308602563976, "coord": [49.01048426253027, 2.559308602563976], "stop_id": 4146088, "stop_desc": "AEROPORT CHARLES DE GAULLE (T3) - 93073", "stop_name": "ROISSYPOLE"}, "geometry": {"type": "Point", "coordinates": [2.559308602563976, 49.01048426253027]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "85e95b3acb0f22575221e5587c58e4fe9f025538", "fields": {"departement": "93", "stop_lat": 48.92527529901001, "code_postal": "93007", "stop_lon": 2.4741273246311293, "coord": [48.92527529901001, 2.4741273246311293], "stop_id": 4146099, "stop_desc": "BOULEVARD JACQUES DECOUR - 93007", "stop_name": "LES 4 TOURS"}, "geometry": {"type": "Point", "coordinates": [2.4741273246311293, 48.92527529901001]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6535d009a4b450d95a10b39fda2a36298b7bc9ee", "fields": {"departement": "93", "stop_lat": 48.90667408580478, "code_postal": "93010", "stop_lon": 2.480172263344335, "coord": [48.90667408580478, 2.480172263344335], "stop_id": 4146109, "stop_desc": "ROUTE D'AULNAY - 93010", "stop_name": "AUGUSTE POLISSARD"}, "geometry": {"type": "Point", "coordinates": [2.480172263344335, 48.90667408580478]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "08e23339b91d70c135f64db6efd5149daf9be94b", "fields": {"departement": "93", "stop_lat": 48.86580463070785, "code_postal": "93006", "stop_lon": 2.417954493910392, "coord": [48.86580463070785, 2.417954493910392], "stop_id": 4146110, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 93006", "stop_name": "GALLIENI-METRO"}, "geometry": {"type": "Point", "coordinates": [2.417954493910392, 48.86580463070785]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "88fcfd86059ad2255bcf836fa6fafe11ee629f5d", "fields": {"departement": "75", "stop_lat": 48.864785410194465, "code_postal": "75120", "stop_lon": 2.4096433309569973, "coord": [48.864785410194465, 2.4096433309569973], "stop_id": 4146112, "stop_desc": "FACE 4 AVENUE DE LA PORTE DE BAGNOLET - 75120", "stop_name": "PORTE DE BAGNOLET"}, "geometry": {"type": "Point", "coordinates": [2.4096433309569973, 48.864785410194465]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3ba2fbebc8ab0d56ca21582000960c2c220ec1a6", "fields": {"departement": "95", "stop_lat": 49.004717953484715, "code_postal": "95527", "stop_lon": 2.547769165629998, "coord": [49.004717953484715, 2.547769165629998], "stop_id": 4146118, "stop_desc": "RTE DU NOYER AU CHAT - 95527", "stop_name": "RUE DES VIGNES"}, "geometry": {"type": "Point", "coordinates": [2.547769165629998, 49.004717953484715]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2af75de1de831542ef468f8a0201a842fb659d5f", "fields": {"departement": "95", "stop_lat": 49.00218945953258, "code_postal": "95527", "stop_lon": 2.528363818569231, "coord": [49.00218945953258, 2.528363818569231], "stop_id": 4146120, "stop_desc": "RUE DES 2 CEDRES - 95527", "stop_name": "LES 2 CEDRES"}, "geometry": {"type": "Point", "coordinates": [2.528363818569231, 49.00218945953258]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "de6bf82c4f71bf315f79c15f27e8183fb2f81bed", "fields": {"departement": "93", "stop_lat": 48.917972348346105, "code_postal": "93010", "stop_lon": 2.4788670820144523, "coord": [48.917972348346105, 2.4788670820144523], "stop_id": 4146133, "stop_desc": "AVENUE LEON JOUHAUX - 93010", "stop_name": "JOUHAUX - BLUM"}, "geometry": {"type": "Point", "coordinates": [2.4788670820144523, 48.917972348346105]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ceeea51ef55776c970f4bc064877e88e24474eeb", "fields": {"departement": "93", "stop_lat": 48.862013307061915, "code_postal": "93006", "stop_lon": 2.415932607577434, "coord": [48.862013307061915, 2.415932607577434], "stop_id": 4146140, "stop_desc": "100 AV GALLIENI - 93006", "stop_name": "GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.415932607577434, 48.862013307061915]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "19288d43d58545b4316b51fc0439a6a6be6eae6d", "fields": {"departement": "75", "stop_lat": 48.85166900324821, "code_postal": "75120", "stop_lon": 2.4155764461644758, "coord": [48.85166900324821, 2.4155764461644758], "stop_id": 4146143, "stop_desc": "AVENUE LEON GAUMONT - 75120", "stop_name": "ERIGNAC"}, "geometry": {"type": "Point", "coordinates": [2.4155764461644758, 48.85166900324821]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "43e071ee9add1dcde77c2a41b9aeb768740f1b00", "fields": {"departement": "95", "stop_lat": 48.978653755115054, "code_postal": "95585", "stop_lon": 2.384436794369383, "coord": [48.978653755115054, 2.384436794369383], "stop_id": 4146215, "stop_desc": "18 AVENUE PAUL VALERY - 95585", "stop_name": "LOCHERES"}, "geometry": {"type": "Point", "coordinates": [2.384436794369383, 48.978653755115054]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3fd0b835be22400b354d1c371da8eb7ad4c712c3", "fields": {"departement": "95", "stop_lat": 48.97850992217312, "code_postal": "95585", "stop_lon": 2.3845595329534186, "coord": [48.97850992217312, 2.3845595329534186], "stop_id": 4146216, "stop_desc": "18 AVENUE PAUL VALERY - 95585", "stop_name": "LOCHERES"}, "geometry": {"type": "Point", "coordinates": [2.3845595329534186, 48.97850992217312]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7b7678e7687491e0de8e511791e76c7241653dc8", "fields": {"departement": "95", "stop_lat": 48.97737289692344, "code_postal": "95585", "stop_lon": 2.3721762252455303, "coord": [48.97737289692344, 2.3721762252455303], "stop_id": 4146222, "stop_desc": "AVENUE DU 8 MAI 1945 - 95585", "stop_name": "LES CHOLETTES"}, "geometry": {"type": "Point", "coordinates": [2.3721762252455303, 48.97737289692344]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eb8e1dce230f09e0a09a6afc7e1ac4a1e5d6878b", "fields": {"departement": "93", "stop_lat": 48.97360921588362, "code_postal": "93059", "stop_lon": 2.3658533181493318, "coord": [48.97360921588362, 2.3658533181493318], "stop_id": 4146223, "stop_desc": "BOULEVARD JEAN MERMOZ - 93059", "stop_name": "BUTTE PINSON (PARC REGIONAL)"}, "geometry": {"type": "Point", "coordinates": [2.3658533181493318, 48.97360921588362]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c249deabd84e10c57b97948a987f33097a819636", "fields": {"departement": "93", "stop_lat": 48.97092215262424, "code_postal": "93059", "stop_lon": 2.366179437634492, "coord": [48.97092215262424, 2.366179437634492], "stop_id": 4146226, "stop_desc": "BOULEVARD JEAN MERMOZ - 93059", "stop_name": "JACQUES PREVERT"}, "geometry": {"type": "Point", "coordinates": [2.366179437634492, 48.97092215262424]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2ca03be1898b33cf60d3ed754090b809b517cdc9", "fields": {"departement": "93", "stop_lat": 48.944970460325266, "code_postal": "93066", "stop_lon": 2.35720125816893, "coord": [48.944970460325266, 2.35720125816893], "stop_id": 4146240, "stop_desc": "6 AVENUE ROGER SEMAT - 93066", "stop_name": "ROGER SEMAT"}, "geometry": {"type": "Point", "coordinates": [2.35720125816893, 48.944970460325266]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a16f41fe87f54b91cc1aaa6873120396bc1db334", "fields": {"departement": "93", "stop_lat": 48.94244522086333, "code_postal": "93066", "stop_lon": 2.356913788932754, "coord": [48.94244522086333, 2.356913788932754], "stop_id": 4146242, "stop_desc": "134 RUE GABRIEL PERI - 93066", "stop_name": "BAUDELAIRE"}, "geometry": {"type": "Point", "coordinates": [2.356913788932754, 48.94244522086333]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "775ea95812ad55205ef9afceb9eebb164068c88e", "fields": {"departement": "93", "stop_lat": 48.939183115531854, "code_postal": "93066", "stop_lon": 2.3562577428137623, "coord": [48.939183115531854, 2.3562577428137623], "stop_id": 4146243, "stop_desc": "RUE GABRIEL PERI - 93066", "stop_name": "MARCHE DE SAINT-DENIS"}, "geometry": {"type": "Point", "coordinates": [2.3562577428137623, 48.939183115531854]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c5d822da1fe4c8cc305efe79007e2a2b831ecee7", "fields": {"departement": "93", "stop_lat": 48.939183115531854, "code_postal": "93066", "stop_lon": 2.3562577428137623, "coord": [48.939183115531854, 2.3562577428137623], "stop_id": 4146244, "stop_desc": "RUE GABRIEL PERI - 93066", "stop_name": "MARCHE DE SAINT-DENIS"}, "geometry": {"type": "Point", "coordinates": [2.3562577428137623, 48.939183115531854]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "02b0897e6a2c23b142b2dc6f0ced17d4a4ac9a12", "fields": {"departement": "95", "stop_lat": 49.003152010568336, "code_postal": "95680", "stop_lon": 2.4161336778819216, "coord": [49.003152010568336, 2.4161336778819216], "stop_id": 4179576, "stop_desc": "FACE 24 RUE SCRIBE - 95680", "stop_name": "RUE SCRIBE"}, "geometry": {"type": "Point", "coordinates": [2.4161336778819216, 49.003152010568336]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "60d87f346f7aef26b15f5bb8adf95d240164fe9d", "fields": {"departement": "93", "stop_lat": 48.92893604150424, "code_postal": "93066", "stop_lon": 2.366428769540627, "coord": [48.92893604150424, 2.366428769540627], "stop_id": 4179711, "stop_desc": "AVENUE LEROY DES BARRES - 93066", "stop_name": "LYCEE SUGER"}, "geometry": {"type": "Point", "coordinates": [2.366428769540627, 48.92893604150424]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "06dfd22d4986b9c48df2323c35729d7aec05a7e4", "fields": {"departement": "93", "stop_lat": 48.936180115998646, "code_postal": "93066", "stop_lon": 2.3636091572222897, "coord": [48.936180115998646, 2.3636091572222897], "stop_id": 4179722, "stop_desc": "32 RUE DE STRASBOURG - 93066", "stop_name": "CIMETIERE DE SAINT-DENIS-TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.3636091572222897, 48.936180115998646]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4d6ddd7ec1dd0cdec126b6e39295edee9d2c5634", "fields": {"departement": "93", "stop_lat": 48.93766980258152, "code_postal": "93066", "stop_lon": 2.371931184944598, "coord": [48.93766980258152, 2.371931184944598], "stop_id": 4179726, "stop_desc": "2 RUE HENRI BARBUSSE - 93066", "stop_name": "MARVILLE"}, "geometry": {"type": "Point", "coordinates": [2.371931184944598, 48.93766980258152]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4841d91f7654e9ff70732c065025ad26d2a7f996", "fields": {"departement": "93", "stop_lat": 48.94572390278634, "code_postal": "93066", "stop_lon": 2.3645144897501362, "coord": [48.94572390278634, 2.3645144897501362], "stop_id": 4179733, "stop_desc": "AVENUE DE STALINGRAD - 93066", "stop_name": "SAINT-DENIS - UNIVERSITE"}, "geometry": {"type": "Point", "coordinates": [2.3645144897501362, 48.94572390278634]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ae9bdeaa99e235b363b5a64b36bfef312aba81cd", "fields": {"departement": "93", "stop_lat": 48.951283803721935, "code_postal": "93072", "stop_lon": 2.3751332378673706, "coord": [48.951283803721935, 2.3751332378673706], "stop_id": 4179741, "stop_desc": "AVENUE GEORGE SAND - 93072", "stop_name": "NELSON MANDELA"}, "geometry": {"type": "Point", "coordinates": [2.3751332378673706, 48.951283803721935]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "86a0d2d27ef650640270e3459b3b9c09907fc006", "fields": {"departement": "93", "stop_lat": 48.93613648458029, "code_postal": "93066", "stop_lon": 2.35684318859828, "coord": [48.93613648458029, 2.35684318859828], "stop_id": 4179748, "stop_desc": "12 RUE DE LA REPUBLIQUE - 93066", "stop_name": "MARCHE - REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.35684318859828, 48.93613648458029]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e6216873b9537c5e1581fbdba2fe3e8ce7707778", "fields": {"departement": "93", "stop_lat": 48.93278467741047, "code_postal": "93066", "stop_lon": 2.3549868619249192, "coord": [48.93278467741047, 2.3549868619249192], "stop_id": 4179750, "stop_desc": "FACE 26 PLACE DE RESISTANCE - 93066", "stop_name": "PLACE DE LA RESISTANCE"}, "geometry": {"type": "Point", "coordinates": [2.3549868619249192, 48.93278467741047]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "143fe18bcfa4d8c29d42902b5dd0affeefad9bbc", "fields": {"departement": "94", "stop_lat": 48.79963823044856, "code_postal": "94019", "stop_lon": 2.544080540001482, "coord": [48.79963823044856, 2.544080540001482], "stop_id": 4180932, "stop_desc": "67 ROUTE DE LA LIBERATION - 94019", "stop_name": "RUE DES FUSILLES DE CHATEAUBRIANT"}, "geometry": {"type": "Point", "coordinates": [2.544080540001482, 48.79963823044856]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0434d44678a71dfe1d9c6271a25fa38c83862494", "fields": {"departement": "94", "stop_lat": 48.808496295953304, "code_postal": "94017", "stop_lon": 2.524765932868587, "coord": [48.808496295953304, 2.524765932868587], "stop_id": 4180937, "stop_desc": "59 AVENUE MARX DORMOY - 94017", "stop_name": "LA CASCADE"}, "geometry": {"type": "Point", "coordinates": [2.524765932868587, 48.808496295953304]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6ec334909d87c61ab0c6447f98884159b6e9c8f7", "fields": {"departement": "94", "stop_lat": 48.80711639570117, "code_postal": "94068", "stop_lon": 2.5101060436758766, "coord": [48.80711639570117, 2.5101060436758766], "stop_id": 4180943, "stop_desc": "PISTE GARE ROUTIERE - 94068", "stop_name": "CHAMPIGNY - SAINT-MAUR RER"}, "geometry": {"type": "Point", "coordinates": [2.5101060436758766, 48.80711639570117]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "58517f6fae96b33e731739d798b100198b94470e", "fields": {"departement": "93", "stop_lat": 48.86435814245755, "code_postal": "93006", "stop_lon": 2.4172438912470966, "coord": [48.86435814245755, 2.4172438912470966], "stop_id": 4199315, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 93006", "stop_name": "GALLIENI-METRO"}, "geometry": {"type": "Point", "coordinates": [2.4172438912470966, 48.86435814245755]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e71ba02a62a2b864c1d6e8666e2e5936ef07e226", "fields": {"departement": "93", "stop_lat": 48.86598626569705, "code_postal": "93006", "stop_lon": 2.427831142823777, "coord": [48.86598626569705, 2.427831142823777], "stop_id": 4199325, "stop_desc": "FACE 7 RUE DE LA NOUE - 93006", "stop_name": "LA NOUE"}, "geometry": {"type": "Point", "coordinates": [2.427831142823777, 48.86598626569705]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1c1e91297b701ef790dedf97c7f30d5a15b5c779", "fields": {"departement": "93", "stop_lat": 48.86419628310262, "code_postal": "93048", "stop_lon": 2.4297759772651273, "coord": [48.86419628310262, 2.4297759772651273], "stop_id": 4199328, "stop_desc": "FACE 6 RUE DELPECHE - 93048", "stop_name": "DELPECHE"}, "geometry": {"type": "Point", "coordinates": [2.4297759772651273, 48.86419628310262]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cc618db6c3215d67c1f099288944e53e5361be60", "fields": {"departement": "93", "stop_lat": 48.86262696107971, "code_postal": "93048", "stop_lon": 2.436624889294175, "coord": [48.86262696107971, 2.436624889294175], "stop_id": 4199331, "stop_desc": "FACE 86 AVENUE DE LA RESISTANCE - 93048", "stop_name": "RABELAIS"}, "geometry": {"type": "Point", "coordinates": [2.436624889294175, 48.86262696107971]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "542d5fa6015358f3dc71494773230257b355ee24", "fields": {"departement": "93", "stop_lat": 48.85856427056822, "code_postal": "93048", "stop_lon": 2.4370802062081176, "coord": [48.85856427056822, 2.4370802062081176], "stop_id": 4199336, "stop_desc": "62 BOULEVARD ROUGET DE LISLE - 93048", "stop_name": "CROIX DE CHAVAUX - ROUGET DE LISLE"}, "geometry": {"type": "Point", "coordinates": [2.4370802062081176, 48.85856427056822]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ed9f224c942a1340f015a171b81d4539498e1018", "fields": {"departement": "93", "stop_lat": 48.86423307945557, "code_postal": "93048", "stop_lon": 2.4673458479082804, "coord": [48.86423307945557, 2.4673458479082804], "stop_id": 4199353, "stop_desc": "152 BOULEVARD THEOPHILE SUEUR - 93048", "stop_name": "LES RUFFINS"}, "geometry": {"type": "Point", "coordinates": [2.4673458479082804, 48.86423307945557]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c5e8d47899a7c7428c234e9620a4ae2d2ca0cd9f", "fields": {"departement": "93", "stop_lat": 48.86601061431374, "code_postal": "93048", "stop_lon": 2.469134866864839, "coord": [48.86601061431374, 2.469134866864839], "stop_id": 4199355, "stop_desc": "112 BOULEVARD THEOPHILE SUEUR - 93048", "stop_name": "PARC DE MONTREAU"}, "geometry": {"type": "Point", "coordinates": [2.469134866864839, 48.86601061431374]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1024dbac879f2309a18ea2a81f4e78e05d15bb3a", "fields": {"departement": "93", "stop_lat": 48.860568468376464, "code_postal": "93048", "stop_lon": 2.481025924558556, "coord": [48.860568468376464, 2.481025924558556], "stop_id": 4199363, "stop_desc": "261 AVENUE VICTOR HUGO - 93048", "stop_name": "CIMETIERE DE VINCENNES"}, "geometry": {"type": "Point", "coordinates": [2.481025924558556, 48.860568468376464]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3e72c42d50f73348cda620d7ff4e3e477627c2f6", "fields": {"departement": "94", "stop_lat": 48.85624422313098, "code_postal": "94033", "stop_lon": 2.4820899197772075, "coord": [48.85624422313098, 2.4820899197772075], "stop_id": 4199367, "stop_desc": "14 AV CHARLES GARCIA - 94033", "stop_name": "JEAN MACE"}, "geometry": {"type": "Point", "coordinates": [2.4820899197772075, 48.85624422313098]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6d2cfe47e9d3d7205304816e97ad56df0a7770fc", "fields": {"departement": "93", "stop_lat": 48.86179640590272, "code_postal": "93048", "stop_lon": 2.4409821703623398, "coord": [48.86179640590272, 2.4409821703623398], "stop_id": 4199377, "stop_desc": "2 BOULEVARD ROUGET DE LISLE - 93048", "stop_name": "MAIRIE DE MONTREUIL - ROUGET DE LISLE"}, "geometry": {"type": "Point", "coordinates": [2.4409821703623398, 48.86179640590272]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9b3b64e4852b5081632c09dc92646c5580c09519", "fields": {"departement": "93", "stop_lat": 48.86754005980411, "code_postal": "93006", "stop_lon": 2.4166630116229832, "coord": [48.86754005980411, 2.4166630116229832], "stop_id": 4199379, "stop_desc": "23 RUE ADELAIDE LAHAYE - 93006", "stop_name": "LA POSTE"}, "geometry": {"type": "Point", "coordinates": [2.4166630116229832, 48.86754005980411]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "31f045f17e890cdf09b51d716914e7c5129a5e4f", "fields": {"departement": "93", "stop_lat": 48.84537556105787, "code_postal": "93051", "stop_lon": 2.528630347479541, "coord": [48.84537556105787, 2.528630347479541], "stop_id": 4208519, "stop_desc": "8 BOULEVARD DU MARECHAL FOCH - 93051", "stop_name": "MARX DORMOY-CARNOT"}, "geometry": {"type": "Point", "coordinates": [2.528630347479541, 48.84537556105787]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d4f8872f86e51071665b5bf7240444bbae5254b6", "fields": {"departement": "93", "stop_lat": 48.84707646208017, "code_postal": "93051", "stop_lon": 2.548559237181919, "coord": [48.84707646208017, 2.548559237181919], "stop_id": 4208525, "stop_desc": "FACE 13 RUE DU DOCTEUR SUREAU - 93051", "stop_name": "PASTEUR"}, "geometry": {"type": "Point", "coordinates": [2.548559237181919, 48.84707646208017]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ee35f6e8c9fc24ca4f32060a5cdb2f6e9ba43d1d", "fields": {"departement": "93", "stop_lat": 48.84917282451323, "code_postal": "93051", "stop_lon": 2.5523127821508225, "coord": [48.84917282451323, 2.5523127821508225], "stop_id": 4208528, "stop_desc": "2 RUE GEORGES LAIGNEAU - 93051", "stop_name": "MAIRIE DE NOISY-LE-GRAND"}, "geometry": {"type": "Point", "coordinates": [2.5523127821508225, 48.84917282451323]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e1abe470ef5a095fbb5d5f114adbcfe6a7e5949b", "fields": {"departement": "93", "stop_lat": 48.848823452640055, "code_postal": "93051", "stop_lon": 2.5566146567258454, "coord": [48.848823452640055, 2.5566146567258454], "stop_id": 4208530, "stop_desc": "11-13 AVENUE EMILE COSSONNEAU - 93051", "stop_name": "CARREFOUR DE MALNOUE"}, "geometry": {"type": "Point", "coordinates": [2.5566146567258454, 48.848823452640055]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8c867327549d15f2176c32dab9429eb74aa16902", "fields": {"departement": "77", "stop_lat": 48.854692679419884, "code_postal": "77083", "stop_lon": 2.5966676702967124, "coord": [48.854692679419884, 2.5966676702967124], "stop_id": 4208545, "stop_desc": "FACE 30 RUE DE CHELLES - 77083", "stop_name": "POINTE DE CHAMPS"}, "geometry": {"type": "Point", "coordinates": [2.5966676702967124, 48.854692679419884]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "632736bd8000d7b214f0844d3fad37101480a199", "fields": {"departement": "77", "stop_lat": 48.85446624161854, "code_postal": "77083", "stop_lon": 2.59747009502811, "coord": [48.85446624161854, 2.59747009502811], "stop_id": 4208546, "stop_desc": "34 AVENUE DE CHELLES - 77083", "stop_name": "POINTE DE CHAMPS"}, "geometry": {"type": "Point", "coordinates": [2.59747009502811, 48.85446624161854]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fd6bcec03521bba003084b5573b36933bf7549d2", "fields": {"departement": "77", "stop_lat": 48.852128671254356, "code_postal": "77083", "stop_lon": 2.613787556223338, "coord": [48.852128671254356, 2.613787556223338], "stop_id": 4208551, "stop_desc": "COURS DES DEUX PARCS - 77083", "stop_name": "LES DEUX PARCS"}, "geometry": {"type": "Point", "coordinates": [2.613787556223338, 48.852128671254356]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "be0827df32ed5d54db256a79736af57a31f6e3ed", "fields": {"departement": "77", "stop_lat": 48.84847517625808, "code_postal": "77337", "stop_lon": 2.6157426968813824, "coord": [48.84847517625808, 2.6157426968813824], "stop_id": 4208554, "stop_desc": "36 COURS DES DEUX PARCS - 77337", "stop_name": "SQUARE DE DIANE"}, "geometry": {"type": "Point", "coordinates": [2.6157426968813824, 48.84847517625808]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1624bae4954698927d0db8e3c623114b8ede57ca", "fields": {"departement": "77", "stop_lat": 48.851227642343254, "code_postal": "77337", "stop_lon": 2.6223762009154137, "coord": [48.851227642343254, 2.6223762009154137], "stop_id": 4208564, "stop_desc": "COURS DE L'ARCHE GUEDON - 77337", "stop_name": "LES QUATRE PAVES"}, "geometry": {"type": "Point", "coordinates": [2.6223762009154137, 48.851227642343254]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dd0c8d33780d465ee21dda86acbc6f03789ec4a7", "fields": {"departement": "77", "stop_lat": 48.84937386327594, "code_postal": "77468", "stop_lon": 2.6414861033950703, "coord": [48.84937386327594, 2.6414861033950703], "stop_id": 4208574, "stop_desc": "103 RUE DE PARIS - 77468", "stop_name": "BEL AIR"}, "geometry": {"type": "Point", "coordinates": [2.6414861033950703, 48.84937386327594]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "769d21a98441322cea0f5930751fe1d53dcff7e4", "fields": {"departement": "77", "stop_lat": 48.85010804193541, "code_postal": "77468", "stop_lon": 2.646066225456977, "coord": [48.85010804193541, 2.646066225456977], "stop_id": 4208577, "stop_desc": "82 RUE DE PARIS - 77468", "stop_name": "LES TILLEULS"}, "geometry": {"type": "Point", "coordinates": [2.646066225456977, 48.85010804193541]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3e73f9e18414cf4ecd88f1312088c0cad49106a2", "fields": {"departement": "77", "stop_lat": 48.85088335370485, "code_postal": "77468", "stop_lon": 2.652022216317478, "coord": [48.85088335370485, 2.652022216317478], "stop_id": 4208579, "stop_desc": "46 RUE DE PARIS - 77468", "stop_name": "MAIRIE DE TORCY"}, "geometry": {"type": "Point", "coordinates": [2.652022216317478, 48.85088335370485]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3927996058c252d5c7813f6faac0a7ccecb3bc92", "fields": {"departement": "77", "stop_lat": 48.85142395593467, "code_postal": "77468", "stop_lon": 2.6548990747322203, "coord": [48.85142395593467, 2.6548990747322203], "stop_id": 4208580, "stop_desc": "8 R DU COUVENT - 77468", "stop_name": "FERME DU COUVENT"}, "geometry": {"type": "Point", "coordinates": [2.6548990747322203, 48.85142395593467]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c531cf7ce40bb43614c2a8d6cc3440eed672cc46", "fields": {"departement": "77", "stop_lat": 48.85542039398311, "code_postal": "77468", "stop_lon": 2.656026762795703, "coord": [48.85542039398311, 2.656026762795703], "stop_id": 4208583, "stop_desc": "AV DU PRESIDENT FRANCOIS MITTERRAND - 77468", "stop_name": "LE CLOS"}, "geometry": {"type": "Point", "coordinates": [2.656026762795703, 48.85542039398311]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "78a2a17faf558f411308db1266c095f5395e2267", "fields": {"departement": "77", "stop_lat": 48.845082316255095, "code_postal": "77468", "stop_lon": 2.653552993631835, "coord": [48.845082316255095, 2.653552993631835], "stop_id": 4208590, "stop_desc": "24 AVENUE DE LINGENFELD - 77468", "stop_name": "RIVES DE MAUBUEE"}, "geometry": {"type": "Point", "coordinates": [2.653552993631835, 48.845082316255095]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "af1ea91692c93e08ded876584cf9ddca0dc0a7d5", "fields": {"departement": "77", "stop_lat": 48.84298279745342, "code_postal": "77468", "stop_lon": 2.6555826884396914, "coord": [48.84298279745342, 2.6555826884396914], "stop_id": 4208593, "stop_desc": "AVENUE DE LINGENFELD - 77468", "stop_name": "SALVADOR ALLENDE"}, "geometry": {"type": "Point", "coordinates": [2.6555826884396914, 48.84298279745342]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "22f46aacbcb5c5f50184a9c47bab446582bfb0c7", "fields": {"departement": "93", "stop_lat": 48.84943411331682, "code_postal": "93051", "stop_lon": 2.5469074126833733, "coord": [48.84943411331682, 2.5469074126833733], "stop_id": 4208599, "stop_desc": "39 BOULEVARD PAUL PAMBRUN - 93051", "stop_name": "EGLISE DE NOISY-LE-GRAND"}, "geometry": {"type": "Point", "coordinates": [2.5469074126833733, 48.84943411331682]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3304ea9c725dc6ad3b1e123518446d3791c3d38f", "fields": {"departement": "92", "stop_lat": 48.89561709628899, "code_postal": "92050", "stop_lon": 2.216121673073011, "coord": [48.89561709628899, 2.216121673073011], "stop_id": 4208605, "stop_desc": "R PABLO NERUDA - 92050", "stop_name": "DROITS DE L'HOMME"}, "geometry": {"type": "Point", "coordinates": [2.216121673073011, 48.89561709628899]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dd149b408f8553d54eb3f74035514642f75e7277", "fields": {"departement": "92", "stop_lat": 48.891549532062704, "code_postal": "92050", "stop_lon": 2.2292425657006434, "coord": [48.891549532062704, 2.2292425657006434], "stop_id": 4208612, "stop_desc": "BD DES BOUVETS - 92050", "stop_name": "MAXIME GORKI"}, "geometry": {"type": "Point", "coordinates": [2.2292425657006434, 48.891549532062704]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "66787e5e978ac8c78d76476732917e2cb5327a73", "fields": {"departement": "92", "stop_lat": 48.888547529891284, "code_postal": "92050", "stop_lon": 2.2289353659104347, "coord": [48.888547529891284, 2.2289353659104347], "stop_id": 4208614, "stop_desc": "AVENUE PABLO PICASSO - 92050", "stop_name": "LES ROSIERS"}, "geometry": {"type": "Point", "coordinates": [2.2289353659104347, 48.888547529891284]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cc9db7ef6d1a44338adbb95470162042a675eb55", "fields": {"departement": "92", "stop_lat": 48.886560525870884, "code_postal": "92050", "stop_lon": 2.2099148465989353, "coord": [48.886560525870884, 2.2099148465989353], "stop_id": 4208620, "stop_desc": "0 AV GEORGES CLEMENCEAU - 92050", "stop_name": "CHAMPS PIERREUX"}, "geometry": {"type": "Point", "coordinates": [2.2099148465989353, 48.886560525870884]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "263f9bff22d056e49805c175225fe12151f8495d", "fields": {"departement": "92", "stop_lat": 48.883116502284224, "code_postal": "92050", "stop_lon": 2.2081381587657183, "coord": [48.883116502284224, 2.2081381587657183], "stop_id": 4208624, "stop_desc": "97-99 R DE LA SOURCE - 92050", "stop_name": "LES DAMADES"}, "geometry": {"type": "Point", "coordinates": [2.2081381587657183, 48.883116502284224]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "31b6ff6354309291f7eb430f4edd3f2882981b96", "fields": {"departement": "92", "stop_lat": 48.88918988384211, "code_postal": "92050", "stop_lon": 2.198378520180127, "coord": [48.88918988384211, 2.198378520180127], "stop_id": 4208631, "stop_desc": "FACE 13 PL GABRIEL PERI - 92050", "stop_name": "GABRIEL PERI"}, "geometry": {"type": "Point", "coordinates": [2.198378520180127, 48.88918988384211]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a882dc7717e2ecad879d9874eef68f32f0d2422f", "fields": {"departement": "92", "stop_lat": 48.891376177926425, "code_postal": "92050", "stop_lon": 2.200457938732742, "coord": [48.891376177926425, 2.200457938732742], "stop_id": 4208632, "stop_desc": "PLACE JEAN-BAPTISTE PLAINCHAMP - 92050", "stop_name": "PLAINCHAMP-ROCHET"}, "geometry": {"type": "Point", "coordinates": [2.200457938732742, 48.891376177926425]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "05a83b43e8e3809a8250de14fd96c1420d88cee9", "fields": {"departement": "92", "stop_lat": 48.88133334185547, "code_postal": "92050", "stop_lon": 2.213129941737652, "coord": [48.88133334185547, 2.213129941737652], "stop_id": 4208639, "stop_desc": "214-216 R PHILIPPE TRIAIRE - 92050", "stop_name": "LES LOUVETIERS"}, "geometry": {"type": "Point", "coordinates": [2.213129941737652, 48.88133334185547]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9914fb0f84289d4abbb19707e3a03e2c911dff92", "fields": {"departement": "95", "stop_lat": 48.977105487142616, "code_postal": "95268", "stop_lon": 2.390578703537779, "coord": [48.977105487142616, 2.390578703537779], "stop_id": 4211735, "stop_desc": "PISTE GARE ROUTIERE - 95268", "stop_name": "GARGES-SARCELLES RER"}, "geometry": {"type": "Point", "coordinates": [2.390578703537779, 48.977105487142616]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "782b3e3d728a59b70de3283a6f7fd68e9db792f3", "fields": {"departement": "95", "stop_lat": 48.9731749651711, "code_postal": "95585", "stop_lon": 2.3761048184655715, "coord": [48.9731749651711, 2.3761048184655715], "stop_id": 4211743, "stop_desc": "20 BOULEVARD HENRI BERGSON - 95585", "stop_name": "RAOUL DUFY"}, "geometry": {"type": "Point", "coordinates": [2.3761048184655715, 48.9731749651711]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ad140cd2685a0250c94bc741a4c1a13acfebf8b8", "fields": {"departement": "93", "stop_lat": 48.938751833729015, "code_postal": "93066", "stop_lon": 2.3557119161334303, "coord": [48.938751833729015, 2.3557119161334303], "stop_id": 4211763, "stop_desc": "FACE 3 PLACE DU 8 MAI 1945 - 93066", "stop_name": "MARCHE DE SAINT-DENIS-TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.3557119161334303, 48.938751833729015]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5c84dd65bfa6f9265bd55e7adb846e53d2a7ed7a", "fields": {"departement": "93", "stop_lat": 48.93515785623141, "code_postal": "93066", "stop_lon": 2.3498996700705987, "coord": [48.93515785623141, 2.3498996700705987], "stop_id": 4211765, "stop_desc": "33 BOULEVARD JULES GUESDE - 93066", "stop_name": "EGLISE - THEATRE GERARD PHILIPE"}, "geometry": {"type": "Point", "coordinates": [2.3498996700705987, 48.93515785623141]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1f35193155c8df5f9ef3dd6dd1f7564f18ec1f9b", "fields": {"departement": "93", "stop_lat": 48.917319457695, "code_postal": "93066", "stop_lon": 2.3402000729046706, "coord": [48.917319457695, 2.3402000729046706], "stop_id": 4211774, "stop_desc": "228 BOULEVARD ANATOLE FRANCE - 93066", "stop_name": "LES RENOUILLERES"}, "geometry": {"type": "Point", "coordinates": [2.3402000729046706, 48.917319457695]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ec7fd854fe2dd3737237bf4fe4e19ebbfd9c7b9c", "fields": {"departement": "93", "stop_lat": 48.91505477172237, "code_postal": "93070", "stop_lon": 2.3373774020111786, "coord": [48.91505477172237, 2.3373774020111786], "stop_id": 4211776, "stop_desc": "8 BIS BOULEVARD JEAN JAURES - 93070", "stop_name": "LANDY - JAURES"}, "geometry": {"type": "Point", "coordinates": [2.3373774020111786, 48.91505477172237]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "566edc37f721398b74481c645a424d6bf850a864", "fields": {"departement": "93", "stop_lat": 48.91179244973999, "code_postal": "93070", "stop_lon": 2.3343232414970667, "coord": [48.91179244973999, 2.3343232414970667], "stop_id": 4211780, "stop_desc": "BOULEVARD VICTOR HUGO - 93070", "stop_name": "MAIRIE DE SAINT-OUEN"}, "geometry": {"type": "Point", "coordinates": [2.3343232414970667, 48.91179244973999]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ea24679d33fb86ca17ba17ae1e5f960315d6c737", "fields": {"departement": "75", "stop_lat": 48.89846465237719, "code_postal": "75118", "stop_lon": 2.337009322604126, "coord": [48.89846465237719, 2.337009322604126], "stop_id": 4211790, "stop_desc": "6-8 AVENUE DE LA PORTE DE MONTMARTRE - 75118", "stop_name": "PORTE DE MONTMARTRE - BD NEY"}, "geometry": {"type": "Point", "coordinates": [2.337009322604126, 48.89846465237719]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "333b9d3a5908e6896927bed6487ad3b673214d20", "fields": {"departement": "75", "stop_lat": 48.89480647637911, "code_postal": "75118", "stop_lon": 2.3471501651421702, "coord": [48.89480647637911, 2.3471501651421702], "stop_id": 4211796, "stop_desc": "46 BOULEVARD ORNANO - 75118", "stop_name": "SIMPLON"}, "geometry": {"type": "Point", "coordinates": [2.3471501651421702, 48.89480647637911]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4285de00d2d93e978c1b77fb2e2c35af2781d811", "fields": {"departement": "93", "stop_lat": 48.91549513003909, "code_postal": "93066", "stop_lon": 2.3383182584232243, "coord": [48.91549513003909, 2.3383182584232243], "stop_id": 4211809, "stop_desc": "235 BOULEVARD ANATOLE FRANCE - 93066", "stop_name": "LANDY-JAURES"}, "geometry": {"type": "Point", "coordinates": [2.3383182584232243, 48.91549513003909]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ff18aba16158a1ddc65a756b8e39ddc11884e250", "fields": {"departement": "93", "stop_lat": 48.9251643028832, "code_postal": "93066", "stop_lon": 2.3510973855469373, "coord": [48.9251643028832, 2.3510973855469373], "stop_id": 4211810, "stop_desc": "143-147 RUE JULES SAULNIER - 93066", "stop_name": "LA PLAINE SAULNIER"}, "geometry": {"type": "Point", "coordinates": [2.3510973855469373, 48.9251643028832]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "078d4b7ea84120196e0fbdd90213ac9ad4be1ddc", "fields": {"departement": "93", "stop_lat": 48.97136885870135, "code_postal": "93072", "stop_lon": 2.3755028487831007, "coord": [48.97136885870135, 2.3755028487831007], "stop_id": 4211820, "stop_desc": "FACE 119 RUE PARMENTIER - 93072", "stop_name": "LES SABLONS"}, "geometry": {"type": "Point", "coordinates": [2.3755028487831007, 48.97136885870135]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "75b3f0f7b3cedd7b5898bd3f011c51ea607a3973", "fields": {"departement": "95", "stop_lat": 49.00022921672988, "code_postal": "95539", "stop_lon": 2.3549690136630055, "coord": [49.00022921672988, 2.3549690136630055], "stop_id": 4226291, "stop_desc": "FACE 66 PL GALLIENI - 95539", "stop_name": "MARCHE DE SAINT-BRICE"}, "geometry": {"type": "Point", "coordinates": [2.3549690136630055, 49.00022921672988]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a9ef9670c87a9b88c35e06e2323dcf91ef15302b", "fields": {"departement": "95", "stop_lat": 48.996220971568434, "code_postal": "95539", "stop_lon": 2.3570298278488355, "coord": [48.996220971568434, 2.3570298278488355], "stop_id": 4226292, "stop_desc": "7 RUE DE PARIS - 95539", "stop_name": "BOULEVARD DE LA GARE"}, "geometry": {"type": "Point", "coordinates": [2.3570298278488355, 48.996220971568434]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "589c9b9de18bef5e160fb867f6b9b076852aa7a0", "fields": {"departement": "95", "stop_lat": 48.99584284900296, "code_postal": "95539", "stop_lon": 2.3608535783757034, "coord": [48.99584284900296, 2.3608535783757034], "stop_id": 4226294, "stop_desc": "BOULEVARD DE LA GARE - 95539", "stop_name": "RU DE LA MARLIERE"}, "geometry": {"type": "Point", "coordinates": [2.3608535783757034, 48.99584284900296]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3cc4b50f5ebd5e5b4ec8f7f727e9a3df83afb562", "fields": {"departement": "95", "stop_lat": 48.99430141931975, "code_postal": "95585", "stop_lon": 2.3784013000968525, "coord": [48.99430141931975, 2.3784013000968525], "stop_id": 4226302, "stop_desc": "103 RUE PIERRE BROSSOLETTE - 95585", "stop_name": "PLACE DE VERDUN"}, "geometry": {"type": "Point", "coordinates": [2.3784013000968525, 48.99430141931975]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7ef3354a2d492701282e0ac52a83ddae2e790d46", "fields": {"departement": "95", "stop_lat": 48.986284890664905, "code_postal": "95019", "stop_lon": 2.415589096331939, "coord": [48.986284890664905, 2.415589096331939], "stop_id": 4226316, "stop_desc": "34 AVENUE CHARLES VAILLANT - 95019", "stop_name": "HENRI BARBUSSE"}, "geometry": {"type": "Point", "coordinates": [2.415589096331939, 48.986284890664905]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "10f928512deac9bb2ed4f6e67b5298a89fed5029", "fields": {"departement": "95", "stop_lat": 48.995744713190156, "code_postal": "95019", "stop_lon": 2.419877986681837, "coord": [48.995744713190156, 2.419877986681837], "stop_id": 4226322, "stop_desc": "FACE 5 RUE JEAN JAURES - 95019", "stop_name": "LES MARRONNIERS"}, "geometry": {"type": "Point", "coordinates": [2.419877986681837, 48.995744713190156]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7e159604d1dd1ef8b3283e9a5af59ca1893e3bf0", "fields": {"departement": "95", "stop_lat": 48.977105487142616, "code_postal": "95268", "stop_lon": 2.390578703537779, "coord": [48.977105487142616, 2.390578703537779], "stop_id": 4226769, "stop_desc": "PISTE GARE ROUTIERE - 95268", "stop_name": "GARGES-SARCELLES RER"}, "geometry": {"type": "Point", "coordinates": [2.390578703537779, 48.977105487142616]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "64129dbd30f3b77383b5d87bb14b510b52d9f125", "fields": {"departement": "95", "stop_lat": 48.99684328677364, "code_postal": "95585", "stop_lon": 2.3819678082524725, "coord": [48.99684328677364, 2.3819678082524725], "stop_id": 4226779, "stop_desc": "RUE MARCELLIN BERTHELOT - 95585", "stop_name": "MARCELLIN BERTHELOT - VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.3819678082524725, 48.99684328677364]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7511649486e1a5bbe71b3a7fa33143145ddca9c3", "fields": {"departement": "95", "stop_lat": 49.006036138046824, "code_postal": "95680", "stop_lon": 2.3824538385869927, "coord": [49.006036138046824, 2.3824538385869927], "stop_id": 4226785, "stop_desc": "25 RUE DE PARIS - 95680", "stop_name": "DOCTEUR RAMPON"}, "geometry": {"type": "Point", "coordinates": [2.3824538385869927, 49.006036138046824]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "190a4eb40f85b72dfb43948bb4717e4dfb7d8df4", "fields": {"departement": "95", "stop_lat": 49.022953862802616, "code_postal": "95229", "stop_lon": 2.3637627087742024, "coord": [49.022953862802616, 2.3637627087742024], "stop_id": 4226796, "stop_desc": "44-46 RUE DE LA GARE - 95229", "stop_name": "GARE D'ECOUEN - EZANVILLE"}, "geometry": {"type": "Point", "coordinates": [2.3637627087742024, 49.022953862802616]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c376641bdee81b425fa6228d58dc815f54d37fd9", "fields": {"departement": "95", "stop_lat": 49.025785446127436, "code_postal": "95229", "stop_lon": 2.3591181698647317, "coord": [49.025785446127436, 2.3591181698647317], "stop_id": 4226799, "stop_desc": "1 AVENUE DE VERDUN - 95229", "stop_name": "PLACE DE LA LIBERATION"}, "geometry": {"type": "Point", "coordinates": [2.3591181698647317, 49.025785446127436]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "267ad77e5924c997576ca3b33d282fbbf2351d81", "fields": {"departement": "95", "stop_lat": 49.04854017041247, "code_postal": "95409", "stop_lon": 2.336352417041413, "coord": [49.04854017041247, 2.336352417041413], "stop_id": 4226812, "stop_desc": "RUE DE PARIS - 95409", "stop_name": "EGLISE DE MOISSELLES"}, "geometry": {"type": "Point", "coordinates": [2.336352417041413, 49.04854017041247]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "234a546401b07006f9fc2a26ef81058b3104d46f", "fields": {"departement": "92", "stop_lat": 48.8404835397256, "code_postal": "92012", "stop_lon": 2.2295258881165303, "coord": [48.8404835397256, 2.2295258881165303], "stop_id": 5727689, "stop_desc": "FACE 158 RTE DE LA REINE - 92012", "stop_name": "RHIN ET DANUBE"}, "geometry": {"type": "Point", "coordinates": [2.2295258881165303, 48.8404835397256]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "91cab18d32cdcb295bf68f23d2a2ce72289444ca", "fields": {"departement": "92", "stop_lat": 48.842750677411814, "code_postal": "92064", "stop_lon": 2.2223452964396566, "coord": [48.842750677411814, 2.2223452964396566], "stop_id": 5727691, "stop_desc": "QUAI DU PRESIDENT CARNOT - 92064", "stop_name": "PARC DE SAINT-CLOUD"}, "geometry": {"type": "Point", "coordinates": [2.2223452964396566, 48.842750677411814]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "589880b9f42991e4dbc1e5d08b8b735e95cf1223", "fields": {"departement": "75", "stop_lat": 48.86378171049178, "code_postal": "75108", "stop_lon": 2.32082656543925, "coord": [48.86378171049178, 2.32082656543925], "stop_id": 5727696, "stop_desc": "QUAI DES TUILERIES - 75108", "stop_name": "CONCORDE - QUAI DES TUILERIES"}, "geometry": {"type": "Point", "coordinates": [2.32082656543925, 48.86378171049178]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a82e68c7c1bdd99f6922df4a1eee82866445c72c", "fields": {"departement": "93", "stop_lat": 48.952866374159235, "code_postal": "93073", "stop_lon": 2.5890951563777422, "coord": [48.952866374159235, 2.5890951563777422], "stop_id": 5747134, "stop_desc": "8 TER AVENUE GILBERT BERGER - 93073", "stop_name": "LAVOISIER"}, "geometry": {"type": "Point", "coordinates": [2.5890951563777422, 48.952866374159235]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f9fa180fa7d6d569318c854de4a03105eb108b52", "fields": {"departement": "93", "stop_lat": 48.95264205276906, "code_postal": "93073", "stop_lon": 2.5889303197307307, "coord": [48.95264205276906, 2.5889303197307307], "stop_id": 5747135, "stop_desc": "7 AVENUE GILBERT BERGER - 93073", "stop_name": "LAVOISIER"}, "geometry": {"type": "Point", "coordinates": [2.5889303197307307, 48.95264205276906]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f566b58f540e1915560c6f83d286b89770188ea1", "fields": {"departement": "93", "stop_lat": 48.9323210589346, "code_postal": "93071", "stop_lon": 2.537681287715955, "coord": [48.9323210589346, 2.537681287715955], "stop_id": 5747145, "stop_desc": "52 AVENUE DE LIVRY - 93071", "stop_name": "LOUIS MENARD"}, "geometry": {"type": "Point", "coordinates": [2.537681287715955, 48.9323210589346]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4b19f40987481453cbff74b1a8bd8d58e245b89a", "fields": {"departement": "93", "stop_lat": 48.922515362987646, "code_postal": "93046", "stop_lon": 2.543507459471364, "coord": [48.922515362987646, 2.543507459471364], "stop_id": 5747151, "stop_desc": "13-15 PLACE DE LA LIBERATION - 93046", "stop_name": "PLACE DE LA LIBERATION"}, "geometry": {"type": "Point", "coordinates": [2.543507459471364, 48.922515362987646]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "063c9b4cc26ae2d135117a4a1139a80e6fe44ed4", "fields": {"departement": "93", "stop_lat": 48.91665674019552, "code_postal": "93046", "stop_lon": 2.53228902968875, "coord": [48.91665674019552, 2.53228902968875], "stop_id": 5747156, "stop_desc": "69 AVENUE DU CONSUL GENERAL NORDLING - 93046", "stop_name": "CHARLES DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.53228902968875, 48.91665674019552]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "677b936b4e0b25589319c26041d69c79f954a383", "fields": {"departement": "93", "stop_lat": 48.91480718682727, "code_postal": "93057", "stop_lon": 2.5012614408347824, "coord": [48.91480718682727, 2.5012614408347824], "stop_id": 5747166, "stop_desc": "91 AVENUE DE ROME - 93057", "stop_name": "Z.I. DE LA POUDRETTE"}, "geometry": {"type": "Point", "coordinates": [2.5012614408347824, 48.91480718682727]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dc1278bbd375e56215968e4857861dd7496b4aa6", "fields": {"departement": "93", "stop_lat": 48.914815575998425, "code_postal": "93057", "stop_lon": 2.4950437090960174, "coord": [48.914815575998425, 2.4950437090960174], "stop_id": 5747170, "stop_desc": "BOULEVARD DE PARIS - 93057", "stop_name": "LOUISE MICHEL"}, "geometry": {"type": "Point", "coordinates": [2.4950437090960174, 48.914815575998425]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c908cdbfbac418c0fbff78fee582d126eb4fa30f", "fields": {"departement": "93", "stop_lat": 48.91421665229337, "code_postal": "93057", "stop_lon": 2.4926011704886726, "coord": [48.91421665229337, 2.4926011704886726], "stop_id": 5747172, "stop_desc": "BOULEVARD DE PARIS - 93057", "stop_name": "LYCEE CLAUDE NICOLAS LEDOUX"}, "geometry": {"type": "Point", "coordinates": [2.4926011704886726, 48.91421665229337]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5ef1e10374c01c40dc89dc035934f90f2d812036", "fields": {"departement": "93", "stop_lat": 48.90869265473561, "code_postal": "93010", "stop_lon": 2.490253223836455, "coord": [48.90869265473561, 2.490253223836455], "stop_id": 5747175, "stop_desc": "CHEMIN DU PONT - 93010", "stop_name": "HOPITAL JEAN VERDIER"}, "geometry": {"type": "Point", "coordinates": [2.490253223836455, 48.90869265473561]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2cc4937ad123bf329aa98d0c9f568d906df137d6", "fields": {"departement": "93", "stop_lat": 48.903907330531226, "code_postal": "93010", "stop_lon": 2.4713443676447677, "coord": [48.903907330531226, 2.4713443676447677], "stop_id": 5747181, "stop_desc": "AVENUE GALLIENI - 93010", "stop_name": "AVENUE DE ROSNY"}, "geometry": {"type": "Point", "coordinates": [2.4713443676447677, 48.903907330531226]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4089ca6b3136a1b6f0b3ed1a17621c279fe7a7ee", "fields": {"departement": "93", "stop_lat": 48.90585160187891, "code_postal": "93008", "stop_lon": 2.4685955199065472, "coord": [48.90585160187891, 2.4685955199065472], "stop_id": 5747182, "stop_desc": "433-435 AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "PONT DE BONDY"}, "geometry": {"type": "Point", "coordinates": [2.4685955199065472, 48.90585160187891]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "75d0730524c109084954c3c20d15170497be1ec6", "fields": {"departement": "93", "stop_lat": 48.91044329400517, "code_postal": "93008", "stop_lon": 2.442074869299911, "coord": [48.91044329400517, 2.442074869299911], "stop_id": 5747193, "stop_desc": "80 AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "LIEUTENANT LEBRUN"}, "geometry": {"type": "Point", "coordinates": [2.442074869299911, 48.91044329400517]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d02cd64fa65ce4bec718bb4dd364c0289ff6453a", "fields": {"departement": "93", "stop_lat": 48.90610924485547, "code_postal": "93008", "stop_lon": 2.422379868713123, "coord": [48.90610924485547, 2.422379868713123], "stop_id": 5747202, "stop_desc": "AVENUE HENRI BARBUSSE - 93008", "stop_name": "HENRI GAUTIER"}, "geometry": {"type": "Point", "coordinates": [2.422379868713123, 48.90610924485547]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f5e4b7145314de1ff3f48ac8f623f958a5221047", "fields": {"departement": "93", "stop_lat": 48.90159508814018, "code_postal": "93055", "stop_lon": 2.4129664180362322, "coord": [48.90159508814018, 2.4129664180362322], "stop_id": 5747205, "stop_desc": "FACE 172 AVENUE DU GENERAL LECLERC - 93055", "stop_name": "CIMETIERE PARISIEN"}, "geometry": {"type": "Point", "coordinates": [2.4129664180362322, 48.90159508814018]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0223e134f2de3848028753fc970b4ea48f46344c", "fields": {"departement": "93", "stop_lat": 48.90002406190681, "code_postal": "93055", "stop_lon": 2.410210555550883, "coord": [48.90002406190681, 2.410210555550883], "stop_id": 5747208, "stop_desc": "128 AVENUE DU GENERAL LECLERC - 93055", "stop_name": "DIDEROT"}, "geometry": {"type": "Point", "coordinates": [2.410210555550883, 48.90002406190681]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "72043ad47d11a70f87e4a14f632c314faa1c6e75", "fields": {"departement": "93", "stop_lat": 48.89786081877813, "code_postal": "93055", "stop_lon": 2.4057365582595267, "coord": [48.89786081877813, 2.4057365582595267], "stop_id": 5747210, "stop_desc": "AVENUE DU GENERAL LECLERC - 93055", "stop_name": "DELIZY"}, "geometry": {"type": "Point", "coordinates": [2.4057365582595267, 48.89786081877813]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dbce0161e251f5d21f3c6d802104b65693cb1850", "fields": {"departement": "93", "stop_lat": 48.89543676209062, "code_postal": "93055", "stop_lon": 2.4012898731919776, "coord": [48.89543676209062, 2.4012898731919776], "stop_id": 5747214, "stop_desc": "52 RUE HOCHE - 93055", "stop_name": "CENTRE NATIONAL DE LA DANSE"}, "geometry": {"type": "Point", "coordinates": [2.4012898731919776, 48.89543676209062]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "10e51f4b3f20a05147d4a4ac0547e36e8dbcd3d1", "fields": {"departement": "75", "stop_lat": 48.88590992105624, "code_postal": "75119", "stop_lon": 2.382635265641091, "coord": [48.88590992105624, 2.382635265641091], "stop_id": 5747224, "stop_desc": "112 AVENUE JEAN JAURES - 75119", "stop_name": "JEAN JAURES - LORRAINE"}, "geometry": {"type": "Point", "coordinates": [2.382635265641091, 48.88590992105624]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6b069ba97e48bc1481df32a6c5b5edc43fce7c20", "fields": {"departement": "75", "stop_lat": 48.88292996267457, "code_postal": "75119", "stop_lon": 2.3712132136426027, "coord": [48.88292996267457, 2.3712132136426027], "stop_id": 5747226, "stop_desc": "6-8 AVENUE JEAN JAURES - 75119", "stop_name": "JAURES"}, "geometry": {"type": "Point", "coordinates": [2.3712132136426027, 48.88292996267457]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f925616d203a1197119f09a5c08337a88082dc9c", "fields": {"departement": "75", "stop_lat": 48.88164607374856, "code_postal": "75110", "stop_lon": 2.3663476469834346, "coord": [48.88164607374856, 2.3663476469834346], "stop_id": 5747228, "stop_desc": "210 RUE LA FAYETTE - 75110", "stop_name": "LOUIS BLANC"}, "geometry": {"type": "Point", "coordinates": [2.3663476469834346, 48.88164607374856]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1a9b82daa49e90fe3d3c20799a502af551a84b3e", "fields": {"departement": "75", "stop_lat": 48.87863626955432, "code_postal": "75110", "stop_lon": 2.362258190577353, "coord": [48.87863626955432, 2.362258190577353], "stop_id": 5747230, "stop_desc": "190 RUE DU FAUBOURG SAINT-MARTIN - 75110", "stop_name": "CHATEAU LANDON"}, "geometry": {"type": "Point", "coordinates": [2.362258190577353, 48.87863626955432]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e54e13c9d6aefb34b974684c9470b90d367d7f80", "fields": {"departement": "93", "stop_lat": 48.90569029404579, "code_postal": "93008", "stop_lon": 2.459720013319434, "coord": [48.90569029404579, 2.459720013319434], "stop_id": 5747236, "stop_desc": "AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "CITE ADMINISTRATIVE"}, "geometry": {"type": "Point", "coordinates": [2.459720013319434, 48.90569029404579]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4e10cdc29df1c6c8ecaf736cf0c876854a58995e", "fields": {"departement": "93", "stop_lat": 48.91182772030372, "code_postal": "93057", "stop_lon": 2.49135325421835, "coord": [48.91182772030372, 2.49135325421835], "stop_id": 5747238, "stop_desc": "FACE 35 AVENUE DU 14 JUILLET - 93057", "stop_name": "VILLAGEOISE"}, "geometry": {"type": "Point", "coordinates": [2.49135325421835, 48.91182772030372]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5fe20539aebb1480434eb2b92fa1b4747c172fd5", "fields": {"departement": "92", "stop_lat": 48.78614112380999, "code_postal": "92032", "stop_lon": 2.298544458337044, "coord": [48.78614112380999, 2.298544458337044], "stop_id": 5747242, "stop_desc": "7 RUE PAUL VERLAINE - 92032", "stop_name": "MAISON DE QUARTIER"}, "geometry": {"type": "Point", "coordinates": [2.298544458337044, 48.78614112380999]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0860a2f5f1992219c88ee72133ae3a7ddc746774", "fields": {"departement": "95", "stop_lat": 48.95241116551638, "code_postal": "95018", "stop_lon": 2.221733455678224, "coord": [48.95241116551638, 2.221733455678224], "stop_id": 5747248, "stop_desc": "ALLEE GUY DE MAUPASSANT - 95018", "stop_name": "BERIONNE"}, "geometry": {"type": "Point", "coordinates": [2.221733455678224, 48.95241116551638]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "18621b5d25943789a14ca5ef064fbe63c9b4e001", "fields": {"departement": "95", "stop_lat": 48.95230041126562, "code_postal": "95018", "stop_lon": 2.2281879267465583, "coord": [48.95230041126562, 2.2281879267465583], "stop_id": 5747250, "stop_desc": "RUE JEAN LURCAT - 95018", "stop_name": "JEAN LURCAT"}, "geometry": {"type": "Point", "coordinates": [2.2281879267465583, 48.95230041126562]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a42c99d4654574351c500b7596f7810de7eac5c4", "fields": {"departement": "95", "stop_lat": 48.95236346778784, "code_postal": "95018", "stop_lon": 2.2283515376017653, "coord": [48.95236346778784, 2.2283515376017653], "stop_id": 5747251, "stop_desc": "RUE JEAN LURCAT - 95018", "stop_name": "JEAN LURCAT"}, "geometry": {"type": "Point", "coordinates": [2.2283515376017653, 48.95236346778784]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7ab3b585ceb45bb6db7c92a1f89f61db0e7c6eb8", "fields": {"departement": "95", "stop_lat": 48.94664307288312, "code_postal": "95018", "stop_lon": 2.233016107082275, "coord": [48.94664307288312, 2.233016107082275], "stop_id": 5747255, "stop_desc": "AVENUE MAURICE UTRILLO - 95018", "stop_name": "PLACE FRANCOIS RABELAIS"}, "geometry": {"type": "Point", "coordinates": [2.233016107082275, 48.94664307288312]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0a38e5d143a72a1f479fb76f7957a02ea364246b", "fields": {"departement": "95", "stop_lat": 48.94669966099854, "code_postal": "95018", "stop_lon": 2.247341997808703, "coord": [48.94669966099854, 2.247341997808703], "stop_id": 5747265, "stop_desc": "52 RUE ANTONIN GEORGES BELIN - 95018", "stop_name": "BELIN"}, "geometry": {"type": "Point", "coordinates": [2.247341997808703, 48.94669966099854]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4293b278a27e62deba8384bacc049e83a08866eb", "fields": {"departement": "95", "stop_lat": 48.94701571196209, "code_postal": "95018", "stop_lon": 2.249374389343935, "coord": [48.94701571196209, 2.249374389343935], "stop_id": 5747267, "stop_desc": "BOULEVARD LEON FEIX - 95018", "stop_name": "HOTEL DE VILLE D'ARGENTEUIL"}, "geometry": {"type": "Point", "coordinates": [2.249374389343935, 48.94701571196209]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "48a220efadf30707cb511ab7d3cbec7963889fe4", "fields": {"departement": "95", "stop_lat": 48.94827603000987, "code_postal": "95018", "stop_lon": 2.2523739798914075, "coord": [48.94827603000987, 2.2523739798914075], "stop_id": 5747268, "stop_desc": "FACE 4 BIS BOULEVARD LEON FEIX - 95018", "stop_name": "LEON FEIX"}, "geometry": {"type": "Point", "coordinates": [2.2523739798914075, 48.94827603000987]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9400d73b8849a7283279e03bbf176082e0f1879f", "fields": {"departement": "95", "stop_lat": 48.94812534328125, "code_postal": "95018", "stop_lon": 2.2553623039062805, "coord": [48.94812534328125, 2.2553623039062805], "stop_id": 5747271, "stop_desc": "4 BOULEVARD MAURICE BERTEAUX - 95018", "stop_name": "GARE D'ARGENTEUIL"}, "geometry": {"type": "Point", "coordinates": [2.2553623039062805, 48.94812534328125]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dea347dea7a17c90d2476627a44050641ab57ee7", "fields": {"departement": "95", "stop_lat": 48.942813314139336, "code_postal": "95018", "stop_lon": 2.2541428551686327, "coord": [48.942813314139336, 2.2541428551686327], "stop_id": 5747272, "stop_desc": "12 BOULEVARD HELOISE - 95018", "stop_name": "BORDEREL - HELOISE"}, "geometry": {"type": "Point", "coordinates": [2.2541428551686327, 48.942813314139336]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ed65b6ed8a0c51710572cf143e9880e484e9b799", "fields": {"departement": "92", "stop_lat": 48.93698391585437, "code_postal": "92025", "stop_lon": 2.258640183272224, "coord": [48.93698391585437, 2.258640183272224], "stop_id": 5747274, "stop_desc": "FACE 212 AVENUE D'ARGENTEUIL - 92025", "stop_name": "PETIT GENNEVILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.258640183272224, 48.93698391585437]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cd67f75bbe146f185309d878245946439c474096", "fields": {"departement": "92", "stop_lat": 48.92646908462465, "code_postal": "92009", "stop_lon": 2.273385701754743, "coord": [48.92646908462465, 2.273385701754743], "stop_id": 5747281, "stop_desc": "359 AVENUE D'ARGENTEUIL - 92009", "stop_name": "QUATRE ROUTES"}, "geometry": {"type": "Point", "coordinates": [2.273385701754743, 48.92646908462465]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5ad693d9cb7b2dd8d39b56b7ff171bdde949af36", "fields": {"departement": "92", "stop_lat": 48.91664590727471, "code_postal": "92009", "stop_lon": 2.2725796596115986, "coord": [48.91664590727471, 2.2725796596115986], "stop_id": 5747284, "stop_desc": "FACE 42 RUE D'ESTIENNE D'ORVES - 92009", "stop_name": "LA PAIX"}, "geometry": {"type": "Point", "coordinates": [2.2725796596115986, 48.91664590727471]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0e3a5498f36a4ac2da2244b486612b75c5541dc9", "fields": {"departement": "92", "stop_lat": 48.909419676509756, "code_postal": "92004", "stop_lon": 2.2713616210811174, "coord": [48.909419676509756, 2.2713616210811174], "stop_id": 5747286, "stop_desc": "81 AVENUE FAIDHERBE - 92004", "stop_name": "CHANZY"}, "geometry": {"type": "Point", "coordinates": [2.2713616210811174, 48.909419676509756]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6ddfe6321a898bebe05e0821daa1c8402085a2f0", "fields": {"departement": "92", "stop_lat": 48.902797800336785, "code_postal": "92026", "stop_lon": 2.2743146074061666, "coord": [48.902797800336785, 2.2743146074061666], "stop_id": 5747294, "stop_desc": "2 BOULEVARD GEORGES CLEMENCEAU - 92026", "stop_name": "PLACE MERMOZ"}, "geometry": {"type": "Point", "coordinates": [2.2743146074061666, 48.902797800336785]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ca876290285e3c21e781c2fcab9f9a55971f1ff8", "fields": {"departement": "92", "stop_lat": 48.89255739632826, "code_postal": "92044", "stop_lon": 2.2844674313920343, "coord": [48.89255739632826, 2.2844674313920343], "stop_id": 5747296, "stop_desc": "77 RUE ANATOLE FRANCE - 92044", "stop_name": "ANATOLE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.2844674313920343, 48.89255739632826]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "578aaa548945bcfc2f5e9d143e8b74bfe576d83e", "fields": {"departement": "75", "stop_lat": 48.87442327938621, "code_postal": "75108", "stop_lon": 2.3255373687031535, "coord": [48.87442327938621, 2.3255373687031535], "stop_id": 5747305, "stop_desc": "10 RUE DE ROME - 75108", "stop_name": "GARE SAINT-LAZARE"}, "geometry": {"type": "Point", "coordinates": [2.3255373687031535, 48.87442327938621]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "267248c6ca25f045370637d91edfc5d0410dded6", "fields": {"departement": "75", "stop_lat": 48.875007327021954, "code_postal": "75108", "stop_lon": 2.324310992446456, "coord": [48.875007327021954, 2.324310992446456], "stop_id": 5747306, "stop_desc": "119-121 RUE SAINT-LAZARE - 75108", "stop_name": "GARE SAINT-LAZARE."}, "geometry": {"type": "Point", "coordinates": [2.324310992446456, 48.875007327021954]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0af487f7d460eee30dcde5a7488ed4e4ae3e3500", "fields": {"departement": "92", "stop_lat": 48.937549860985655, "code_postal": "92036", "stop_lon": 2.2582982890496095, "coord": [48.937549860985655, 2.2582982890496095], "stop_id": 5747319, "stop_desc": "212 AVENUE D'ARGENTEUIL - 92036", "stop_name": "PETIT GENNEVILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.2582982890496095, 48.937549860985655]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d664e066ee7eba4158de136b9f45c4fd8412713e", "fields": {"departement": "95", "stop_lat": 48.946570916246806, "code_postal": "95018", "stop_lon": 2.232716089171262, "coord": [48.946570916246806, 2.232716089171262], "stop_id": 5747326, "stop_desc": "151-153 AVENUE MAURICE UTRILLO - 95018", "stop_name": "PLACE FRANCOIS RABELAIS"}, "geometry": {"type": "Point", "coordinates": [2.232716089171262, 48.946570916246806]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "01a43e46375a2f169334cacfdd71b6cec290f8cf", "fields": {"departement": "95", "stop_lat": 48.942813314139336, "code_postal": "95018", "stop_lon": 2.2541428551686327, "coord": [48.942813314139336, 2.2541428551686327], "stop_id": 5747335, "stop_desc": "12 BOULEVARD HELOISE - 95018", "stop_name": "BORDEREL - HELOISE"}, "geometry": {"type": "Point", "coordinates": [2.2541428551686327, 48.942813314139336]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e941679ae0b9e06ca7f91cd0af004957ba744e6a", "fields": {"departement": "92", "stop_lat": 48.93698391585437, "code_postal": "92025", "stop_lon": 2.258640183272224, "coord": [48.93698391585437, 2.258640183272224], "stop_id": 5747336, "stop_desc": "FACE 212 AVENUE D'ARGENTEUIL - 92025", "stop_name": "PETIT GENNEVILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.258640183272224, 48.93698391585437]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "28a5754b78e1c3543f99e557f832ce3cbae9419b", "fields": {"departement": "92", "stop_lat": 48.92646908462465, "code_postal": "92009", "stop_lon": 2.273385701754743, "coord": [48.92646908462465, 2.273385701754743], "stop_id": 5747340, "stop_desc": "359 AVENUE D'ARGENTEUIL - 92009", "stop_name": "QUATRE ROUTES"}, "geometry": {"type": "Point", "coordinates": [2.273385701754743, 48.92646908462465]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "63ad54db2b74db80f17891442fe27ae7466bd6d2", "fields": {"departement": "92", "stop_lat": 48.91350916270402, "code_postal": "92009", "stop_lon": 2.2720654430399616, "coord": [48.91350916270402, 2.2720654430399616], "stop_id": 5747344, "stop_desc": "15 RUE DU GENERAL LECLERC - 92009", "stop_name": "GARE DE BOIS-COLOMBES"}, "geometry": {"type": "Point", "coordinates": [2.2720654430399616, 48.91350916270402]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "336f2e0599070dea60f37129cbdc6b43d1acf449", "fields": {"departement": "92", "stop_lat": 48.90322593405253, "code_postal": "92026", "stop_lon": 2.2684385398064264, "coord": [48.90322593405253, 2.2684385398064264], "stop_id": 5747348, "stop_desc": "49-53 BOULEVARD GEORGES CLEMENCEAU - 92026", "stop_name": "PLACE DE BELGIQUE"}, "geometry": {"type": "Point", "coordinates": [2.2684385398064264, 48.90322593405253]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "375a49f23c225bf5659f629c7f15dd3417f4b061", "fields": {"departement": "75", "stop_lat": 48.89782193044455, "code_postal": "75119", "stop_lon": 2.3705005330326747, "coord": [48.89782193044455, 2.3705005330326747], "stop_id": 5761274, "stop_desc": "RUE D'AUBERVILLIERS - 75119", "stop_name": "PORTE D'AUBERVILLIERS - MACDONALD"}, "geometry": {"type": "Point", "coordinates": [2.3705005330326747, 48.89782193044455]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a47df6aae0c6c2bc1f73e7b46a367621873aff0e", "fields": {"departement": "75", "stop_lat": 48.901335409416724, "code_postal": "75119", "stop_lon": 2.372193137989179, "coord": [48.901335409416724, 2.372193137989179], "stop_id": 5761276, "stop_desc": "109 RUE DE LA HAIE COQ - 75119", "stop_name": "PARC DU MILLENAIRE"}, "geometry": {"type": "Point", "coordinates": [2.372193137989179, 48.901335409416724]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2b1940738b08143f187c6cea24b54447279fcb57", "fields": {"departement": "93", "stop_lat": 48.912642719449714, "code_postal": "93001", "stop_lon": 2.366283245404353, "coord": [48.912642719449714, 2.366283245404353], "stop_id": 5761287, "stop_desc": "FACE 19 RUE DES FILLETTES - 93001", "stop_name": "SAINT-GOBAIN"}, "geometry": {"type": "Point", "coordinates": [2.366283245404353, 48.912642719449714]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7cfba1a6a6d2ad3dd9b17368d2a3a751e8badd27", "fields": {"departement": "93", "stop_lat": 48.91858416019787, "code_postal": "93066", "stop_lon": 2.361663835852147, "coord": [48.91858416019787, 2.361663835852147], "stop_id": 5761291, "stop_desc": "AVENUE DU STADE DE FRANCE - 93066", "stop_name": "LA PLAINE - STADE DE FRANCE RER"}, "geometry": {"type": "Point", "coordinates": [2.361663835852147, 48.91858416019787]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bed59b5db3ccc7db15569f4030a458e50d754b54", "fields": {"departement": "93", "stop_lat": 48.923562300968015, "code_postal": "93066", "stop_lon": 2.3645846518052496, "coord": [48.923562300968015, 2.3645846518052496], "stop_id": 5761294, "stop_desc": "4 RUE JESSE OWEN - 93066", "stop_name": "JESSE OWENS"}, "geometry": {"type": "Point", "coordinates": [2.3645846518052496, 48.923562300968015]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "32dfa077d358007128f862e4d26cda36813a564b", "fields": {"departement": "93", "stop_lat": 48.93257758456558, "code_postal": "93066", "stop_lon": 2.3574692861766655, "coord": [48.93257758456558, 2.3574692861766655], "stop_id": 5761303, "stop_desc": "27 RUE DE LA LEGION D'HONNEUR - 93066", "stop_name": "PLACE LANNE"}, "geometry": {"type": "Point", "coordinates": [2.3574692861766655, 48.93257758456558]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f09c37dc96a63d5040de1df1887dc78a880bd6db", "fields": {"departement": "93", "stop_lat": 48.93473471035391, "code_postal": "93066", "stop_lon": 2.355751406190871, "coord": [48.93473471035391, 2.355751406190871], "stop_id": 5761307, "stop_desc": "73 RUE GABRIEL PERI - 93066", "stop_name": "GABRIEL PERI - FRANKLIN"}, "geometry": {"type": "Point", "coordinates": [2.355751406190871, 48.93473471035391]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2cce73a38add74d840326feccca6887de6fb74bb", "fields": {"departement": "93", "stop_lat": 48.90453650312203, "code_postal": "93066", "stop_lon": 2.3658560900320036, "coord": [48.90453650312203, 2.3658560900320036], "stop_id": 5761313, "stop_desc": "FACE 201 RUE DES FILLETTES - 93066", "stop_name": "MODES ET MEDIAS"}, "geometry": {"type": "Point", "coordinates": [2.3658560900320036, 48.90453650312203]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2ae101c6179842aa64521b8581a82d981c172918", "fields": {"departement": "92", "stop_lat": 48.82581847327086, "code_postal": "92077", "stop_lon": 2.1829895386338984, "coord": [48.82581847327086, 2.1829895386338984], "stop_id": 5761324, "stop_desc": "14 AVENUE HALPHEN - 92077", "stop_name": "MONASTERE"}, "geometry": {"type": "Point", "coordinates": [2.1829895386338984, 48.82581847327086]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d29ba8762c6e2f8713874381e0f80c043f1ffef4", "fields": {"departement": "75", "stop_lat": 48.87720873434812, "code_postal": "75116", "stop_lon": 2.2696857460678026, "coord": [48.87720873434812, 2.2696857460678026], "stop_id": 5761328, "stop_desc": "AVENUE DU MAHATMA GANDHI - 75116", "stop_name": "JARDIN D'ACCLIMATATION"}, "geometry": {"type": "Point", "coordinates": [2.2696857460678026, 48.87720873434812]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a03e39b66184ad194607f628eb0db3c68fe6faf5", "fields": {"departement": "75", "stop_lat": 48.87620724118172, "code_postal": "75116", "stop_lon": 2.263119677423124, "coord": [48.87620724118172, 2.263119677423124], "stop_id": 5761329, "stop_desc": "AVENUE DU MAHATMA GANDHI - 75116", "stop_name": "FONDATION L. VUITTON"}, "geometry": {"type": "Point", "coordinates": [2.263119677423124, 48.87620724118172]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "334e9ea6a6808f9bbc9bb295f08d5f8445c58a74", "fields": {"departement": "75", "stop_lat": 48.8740996055119, "code_postal": "75116", "stop_lon": 2.2560514695958767, "coord": [48.8740996055119, 2.2560514695958767], "stop_id": 5761332, "stop_desc": "AVENUE DU MAHATMA GANDHI - 75116", "stop_name": "PORTE DE MADRID"}, "geometry": {"type": "Point", "coordinates": [2.2560514695958767, 48.8740996055119]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9fb380e00cc03758cacdd10e3c1a37a1f23b5dca", "fields": {"departement": "75", "stop_lat": 48.86374350708938, "code_postal": "75116", "stop_lon": 2.2404432688798335, "coord": [48.86374350708938, 2.2404432688798335], "stop_id": 5761336, "stop_desc": "ALLEE DE LONGCHAMP - 75116", "stop_name": "CARREFOUR DE LONGCHAMP"}, "geometry": {"type": "Point", "coordinates": [2.2404432688798335, 48.86374350708938]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cf02d5bf8f9ecbc73612dfc081d8bddc000a3ca3", "fields": {"departement": "92", "stop_lat": 48.86787309807707, "code_postal": "92073", "stop_lon": 2.2249597473026133, "coord": [48.86787309807707, 2.2249597473026133], "stop_id": 5761342, "stop_desc": "39 BOULEVARD HENRI SELLIER - 92073", "stop_name": "SURESNES DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.2249597473026133, 48.86787309807707]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d6240163fd6931713d37f966b33565d22c8eedbc", "fields": {"departement": "92", "stop_lat": 48.86676403817079, "code_postal": "92073", "stop_lon": 2.2211886377715, "coord": [48.86676403817079, 2.2211886377715], "stop_id": 5761344, "stop_desc": "57 BOULEVARD HENRI SELLIER - 92073", "stop_name": "LONGCHAMP"}, "geometry": {"type": "Point", "coordinates": [2.2211886377715, 48.86676403817079]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "503cd5a6d2c0866ea22c261cdaec0c5572ed2f59", "fields": {"departement": "92", "stop_lat": 48.86184828083935, "code_postal": "92073", "stop_lon": 2.2126317195091785, "coord": [48.86184828083935, 2.2126317195091785], "stop_id": 5761349, "stop_desc": "30 CARREFOUR DE LA CROIX DU ROY - 92073", "stop_name": "CROIX DU ROY"}, "geometry": {"type": "Point", "coordinates": [2.2126317195091785, 48.86184828083935]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6a26c09c4d957226e30a75bb9a71ce8d96224a37", "fields": {"departement": "92", "stop_lat": 48.8635343842633, "code_postal": "92073", "stop_lon": 2.2093039143430833, "coord": [48.8635343842633, 2.2093039143430833], "stop_id": 5761351, "stop_desc": "AVENUE JEAN JAURES - 92073", "stop_name": "PLACE JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.2093039143430833, 48.8635343842633]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8212b599d277768a0decfcb8e98006b88ff356c4", "fields": {"departement": "92", "stop_lat": 48.87045720657914, "code_postal": "92063", "stop_lon": 2.2034422382803878, "coord": [48.87045720657914, 2.2034422382803878], "stop_id": 5761356, "stop_desc": "FACE 38 RUE GALLIENI - 92063", "stop_name": "8 MAI 1945"}, "geometry": {"type": "Point", "coordinates": [2.2034422382803878, 48.87045720657914]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "111ca7f18c07b63b7fd4dcc7e8fdee06e1c81149", "fields": {"departement": "92", "stop_lat": 48.87223926130432, "code_postal": "92063", "stop_lon": 2.197838080887536, "coord": [48.87223926130432, 2.197838080887536], "stop_id": 5761358, "stop_desc": "67 RUE DES BONS RAISINS - 92063", "stop_name": "RUE DE LA PAIX"}, "geometry": {"type": "Point", "coordinates": [2.197838080887536, 48.87223926130432]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f5de18265514fc91cc04236a448bcec6b2b0bad3", "fields": {"departement": "92", "stop_lat": 48.87286412592294, "code_postal": "92063", "stop_lon": 2.194253184817908, "coord": [48.87286412592294, 2.194253184817908], "stop_id": 5761360, "stop_desc": "FACE 42 RUE DES BONS RAISINS - 92063", "stop_name": "LES GODARDES"}, "geometry": {"type": "Point", "coordinates": [2.194253184817908, 48.87286412592294]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d3d84119108d6999848fd710c54933c391b9e6ca", "fields": {"departement": "92", "stop_lat": 48.8764221765901, "code_postal": "92063", "stop_lon": 2.1862180502913104, "coord": [48.8764221765901, 2.1862180502913104], "stop_id": 5761364, "stop_desc": "FACE 46BIS BOULEVARD DE L'HOPITAL STELL - 92063", "stop_name": "HOPITAL STELL"}, "geometry": {"type": "Point", "coordinates": [2.1862180502913104, 48.8764221765901]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e91fca3f4f09400e9ef991456d070616a2063857", "fields": {"departement": "92", "stop_lat": 48.87598159287678, "code_postal": "92063", "stop_lon": 2.1860558312203677, "coord": [48.87598159287678, 2.1860558312203677], "stop_id": 5761365, "stop_desc": "46 RUE HABY SOMMER - 92063", "stop_name": "HOPITAL STELL"}, "geometry": {"type": "Point", "coordinates": [2.1860558312203677, 48.87598159287678]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7557b4f6b88b2764c928db28114a72ba85697b3e", "fields": {"departement": "92", "stop_lat": 48.886365678062774, "code_postal": "92063", "stop_lon": 2.1752594614655605, "coord": [48.886365678062774, 2.1752594614655605], "stop_id": 5761372, "stop_desc": "62 AVENUE VICTOR HUGO - 92063", "stop_name": "COLMAR"}, "geometry": {"type": "Point", "coordinates": [2.1752594614655605, 48.886365678062774]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "07460e90f19d8f960d6586382158d99ba1a1f3e5", "fields": {"departement": "93", "stop_lat": 48.91348252252524, "code_postal": "93001", "stop_lon": 2.38230490772912, "coord": [48.91348252252524, 2.38230490772912], "stop_id": 5761411, "stop_desc": "4 AVENUE DE LA REPUBLIQUE - 93001", "stop_name": "MAIRIE D'AUBERVILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.38230490772912, 48.91348252252524]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d6a23d4a0b30027f1c8d20c25104f5478a118811", "fields": {"departement": "93", "stop_lat": 48.90644795106903, "code_postal": "93001", "stop_lon": 2.3757957518622668, "coord": [48.90644795106903, 2.3757957518622668], "stop_id": 5761418, "stop_desc": "94-96 AVENUE VICTOR HUGO - 93001", "stop_name": "GARDINOUX"}, "geometry": {"type": "Point", "coordinates": [2.3757957518622668, 48.90644795106903]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9b8161ecbe290196c78ca7953cbf011ffb71369c", "fields": {"departement": "93", "stop_lat": 48.90480393133661, "code_postal": "93001", "stop_lon": 2.373845042411548, "coord": [48.90480393133661, 2.373845042411548], "stop_id": 5761420, "stop_desc": "FACE 75 AVENUE VICTOR HUGO - 93001", "stop_name": "LA HAIE COQ"}, "geometry": {"type": "Point", "coordinates": [2.373845042411548, 48.90480393133661]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1382df8bfab6c78cfbadae411ac90cab2729312a", "fields": {"departement": "75", "stop_lat": 48.8991970700061, "code_postal": "75119", "stop_lon": 2.3701061076730867, "coord": [48.8991970700061, 2.3701061076730867], "stop_id": 5761422, "stop_desc": "3 AVENUE DE LA PORTE D'AUBERVILLIERS - 75119", "stop_name": "PORTE D'AUBERVILLIERS - CITE CH. HERMITE"}, "geometry": {"type": "Point", "coordinates": [2.3701061076730867, 48.8991970700061]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "95be219fb9d46f88508263b32c3b8b93b8325582", "fields": {"departement": "75", "stop_lat": 48.887318475652194, "code_postal": "75118", "stop_lon": 2.3595776289196335, "coord": [48.887318475652194, 2.3595776289196335], "stop_id": 5761434, "stop_desc": "39 RUE MARX DORMOY - 75118", "stop_name": "DEPARTEMENT - MARX DORMOY"}, "geometry": {"type": "Point", "coordinates": [2.3595776289196335, 48.887318475652194]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c34cd0aeeb83a23a44ff471e4180d28eca4a9620", "fields": {"departement": "75", "stop_lat": 48.880677255819144, "code_postal": "75110", "stop_lon": 2.357653442709006, "coord": [48.880677255819144, 2.357653442709006], "stop_id": 5761439, "stop_desc": "183 RUE DU FAUBOURG SAINT-DENIS - 75110", "stop_name": "GARE DU NORD"}, "geometry": {"type": "Point", "coordinates": [2.357653442709006, 48.880677255819144]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4fe845dd3eb443c5833469f21ed915a92c332458", "fields": {"departement": "75", "stop_lat": 48.89782193044455, "code_postal": "75119", "stop_lon": 2.3705005330326747, "coord": [48.89782193044455, 2.3705005330326747], "stop_id": 5761447, "stop_desc": "RUE D'AUBERVILLIERS - 75119", "stop_name": "PORTE D'AUBERVILLIERS - MACDONALD"}, "geometry": {"type": "Point", "coordinates": [2.3705005330326747, 48.89782193044455]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "94509dfaa778569acfcc60be4adc39a5cae0e90f", "fields": {"departement": "75", "stop_lat": 48.899978952854255, "code_postal": "75119", "stop_lon": 2.3700929718714936, "coord": [48.899978952854255, 2.3700929718714936], "stop_id": 5761960, "stop_desc": "16 AVENUE DE LA PORTE D'AUBERVILLIERS - 75119", "stop_name": "PORTE D'AUBERVILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.3700929718714936, 48.899978952854255]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a908195a9060896073b3981e596c056baf59c75c", "fields": {"departement": "75", "stop_lat": 48.894963464526604, "code_postal": "75119", "stop_lon": 2.372434185376385, "coord": [48.894963464526604, 2.372434185376385], "stop_id": 5761964, "stop_desc": "RUE DE CRIMEE - 75119", "stop_name": "CRIMEE - ROSA PARKS"}, "geometry": {"type": "Point", "coordinates": [2.372434185376385, 48.894963464526604]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d3f6568738ad3d34e1d29cbe50d742e0f8b43a3e", "fields": {"departement": "75", "stop_lat": 48.88599466543109, "code_postal": "75119", "stop_lon": 2.3710108041528186, "coord": [48.88599466543109, 2.3710108041528186], "stop_id": 5761972, "stop_desc": "31 AVENUE DE FLANDRE - 75119", "stop_name": "MAROC - FLANDRE"}, "geometry": {"type": "Point", "coordinates": [2.3710108041528186, 48.88599466543109]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "536c9b316e7cbc15c1eae5dc4b150ac76312714c", "fields": {"departement": "75", "stop_lat": 48.88450329345483, "code_postal": "75119", "stop_lon": 2.369170129386173, "coord": [48.88450329345483, 2.369170129386173], "stop_id": 5761974, "stop_desc": "11 AVENUE DE FLANDRE - 75119", "stop_name": "QUAI DE LA SEINE - STALINGRAD"}, "geometry": {"type": "Point", "coordinates": [2.369170129386173, 48.88450329345483]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "81a2cc026e23ea270bea1a36ee2238a9e9f8964b", "fields": {"departement": "75", "stop_lat": 48.88190671390869, "code_postal": "75110", "stop_lon": 2.3663069130170116, "coord": [48.88190671390869, 2.3663069130170116], "stop_id": 5761978, "stop_desc": "240 RUE DU FAUBOURG SAINT MARTIN - 75110", "stop_name": "LOUIS BLANC"}, "geometry": {"type": "Point", "coordinates": [2.3663069130170116, 48.88190671390869]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "036232bb2e6e3b701ba7ae95e15cb7eef4dad164", "fields": {"departement": "75", "stop_lat": 48.88324867913404, "code_postal": "75110", "stop_lon": 2.3499415145297466, "coord": [48.88324867913404, 2.3499415145297466], "stop_id": 5761986, "stop_desc": "168 BOULEVARD DE MAGENTA - 75110", "stop_name": "BARBES - ROCHECHOUART"}, "geometry": {"type": "Point", "coordinates": [2.3499415145297466, 48.88324867913404]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "10d7d82c31ae99b4493d6c82ba190f7d089c93a0", "fields": {"departement": "75", "stop_lat": 48.88305144279706, "code_postal": "75118", "stop_lon": 2.3440273262563576, "coord": [48.88305144279706, 2.3440273262563576], "stop_id": 5761988, "stop_desc": "68-70 BOULEVARD DE ROCHECHOUART - 75118", "stop_name": "ANVERS - SACRE COEUR"}, "geometry": {"type": "Point", "coordinates": [2.3440273262563576, 48.88305144279706]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "16a3104b7e2256613fe5c97e74ef812b22f4ad7b", "fields": {"departement": "92", "stop_lat": 48.90114819778661, "code_postal": "92024", "stop_lon": 2.30794629123773, "coord": [48.90114819778661, 2.30794629123773], "stop_id": 5762007, "stop_desc": "62 RUE MARTRE - 92024", "stop_name": "BARBUSSE - MARTRE"}, "geometry": {"type": "Point", "coordinates": [2.30794629123773, 48.90114819778661]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "48413ce19a49e6c625be8a3193e201aadbfeb927", "fields": {"departement": "92", "stop_lat": 48.90316086935696, "code_postal": "92024", "stop_lon": 2.3062138456697645, "coord": [48.90316086935696, 2.3062138456697645], "stop_id": 5762008, "stop_desc": "88 RUE MARTRE - 92024", "stop_name": "MAIRIE DE CLICHY"}, "geometry": {"type": "Point", "coordinates": [2.3062138456697645, 48.90316086935696]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1c04558349fba68a3f567144f994c0c6376eaa59", "fields": {"departement": "92", "stop_lat": 48.90722193611381, "code_postal": "92024", "stop_lon": 2.302271357586615, "coord": [48.90722193611381, 2.302271357586615], "stop_id": 5762011, "stop_desc": "136 RUE MARTRE - 92024", "stop_name": "LEON BLUM"}, "geometry": {"type": "Point", "coordinates": [2.302271357586615, 48.90722193611381]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "216de1378803d2ef443561dd08ba2d07941ad9c3", "fields": {"departement": "92", "stop_lat": 48.916323540007774, "code_postal": "92004", "stop_lon": 2.295283679264348, "coord": [48.916323540007774, 2.295283679264348], "stop_id": 5762015, "stop_desc": "PISTE GARE ROUTIERE - 92004", "stop_name": "GABRIEL PERI-METRO"}, "geometry": {"type": "Point", "coordinates": [2.295283679264348, 48.916323540007774]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9cb46b55be5aa50bdb271f2f01e24781c9e269fe", "fields": {"departement": "75", "stop_lat": 48.88305130198795, "code_postal": "75109", "stop_lon": 2.34616677318254, "coord": [48.88305130198795, 2.34616677318254], "stop_id": 5762025, "stop_desc": "21 BOULEVARD DE ROCHECHOUART - 75109", "stop_name": "ROCHECHOUART - CLIGNANCOURT"}, "geometry": {"type": "Point", "coordinates": [2.34616677318254, 48.88305130198795]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "215e54c9e2f57059c151e2ee285e3d2486e7dc25", "fields": {"departement": "75", "stop_lat": 48.89357817917953, "code_postal": "75119", "stop_lon": 2.3764813015559594, "coord": [48.89357817917953, 2.3764813015559594], "stop_id": 5762029, "stop_desc": "70 RUE DE L'OURCQ - 75119", "stop_name": "CAMBRAI"}, "geometry": {"type": "Point", "coordinates": [2.3764813015559594, 48.89357817917953]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3d2f52875bee87f9e680ee13954fa28307fd53fd", "fields": {"departement": "75", "stop_lat": 48.87546125863163, "code_postal": "75119", "stop_lon": 2.3952429236466064, "coord": [48.87546125863163, 2.3952429236466064], "stop_id": 5770773, "stop_desc": "2 RUE COMPANS - 75119", "stop_name": "PIXERECOURT"}, "geometry": {"type": "Point", "coordinates": [2.3952429236466064, 48.87546125863163]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3c028be204818fb5e35f8113d12e8de5e29cfd3c", "fields": {"departement": "75", "stop_lat": 48.87747547065222, "code_postal": "75119", "stop_lon": 2.393024205754592, "coord": [48.87747547065222, 2.393024205754592], "stop_id": 5770775, "stop_desc": "3 RUE LOUISE THULIEZ - 75119", "stop_name": "PLACE DES FETES"}, "geometry": {"type": "Point", "coordinates": [2.393024205754592, 48.87747547065222]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "13bcc3521086b7b2184eba899d511914d9878fd9", "fields": {"departement": "75", "stop_lat": 48.882493450416284, "code_postal": "75119", "stop_lon": 2.3859844935998042, "coord": [48.882493450416284, 2.3859844935998042], "stop_id": 5770780, "stop_desc": "FACE 86 RUE DE CRIMEE - 75119", "stop_name": "MANIN"}, "geometry": {"type": "Point", "coordinates": [2.3859844935998042, 48.882493450416284]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "93af452de78cbb00717686d4cffc637b98e4f37f", "fields": {"departement": "75", "stop_lat": 48.89209430130325, "code_postal": "75119", "stop_lon": 2.3793968764558526, "coord": [48.89209430130325, 2.3793968764558526], "stop_id": 5770792, "stop_desc": "67 RUE DE L'OURCQ - 75119", "stop_name": "FLANDRE"}, "geometry": {"type": "Point", "coordinates": [2.3793968764558526, 48.89209430130325]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8b47f3f774e939bf5e6ae2eb8d5adc560e052db9", "fields": {"departement": "75", "stop_lat": 48.89352520943504, "code_postal": "75119", "stop_lon": 2.373469074306127, "coord": [48.89352520943504, 2.373469074306127], "stop_id": 5770795, "stop_desc": "237 RUE DE CRIMEE - 75119", "stop_name": "CRIMEE - CURIAL"}, "geometry": {"type": "Point", "coordinates": [2.373469074306127, 48.89352520943504]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3db97a367b87f9a7f0780de4700ac1cb0b733621", "fields": {"departement": "75", "stop_lat": 48.89140734417994, "code_postal": "75118", "stop_lon": 2.361146753676379, "coord": [48.89140734417994, 2.361146753676379], "stop_id": 5770804, "stop_desc": "FACE 2 RUE DE L'EVANGILE - 75118", "stop_name": "PLACE DE TORCY"}, "geometry": {"type": "Point", "coordinates": [2.361146753676379, 48.89140734417994]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2df2670ca44a46bc839b8157e23670876c4372a3", "fields": {"departement": "75", "stop_lat": 48.84195202597997, "code_postal": "75106", "stop_lon": 2.3291393929668964, "coord": [48.84195202597997, 2.3291393929668964], "stop_id": 3442431, "stop_desc": "106 BOULEVARD DU MONTPARNASSE - 75106", "stop_name": "VAVIN"}, "geometry": {"type": "Point", "coordinates": [2.3291393929668964, 48.84195202597997]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f1acbe0768af4ba4d0a3a88c51b26e0c31d8b032", "fields": {"departement": "75", "stop_lat": 48.84920522522324, "code_postal": "75106", "stop_lon": 2.3369823179740905, "coord": [48.84920522522324, 2.3369823179740905], "stop_id": 3442425, "stop_desc": "FACE 19 RUE DE VAUGIRARD - 75106", "stop_name": "SENAT"}, "geometry": {"type": "Point", "coordinates": [2.3369823179740905, 48.84920522522324]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "743a63fef9e7961ac61ef06cca24cad2d9628dae", "fields": {"departement": "75", "stop_lat": 48.838814669136, "code_postal": "75114", "stop_lon": 2.321991781957784, "coord": [48.838814669136, 2.321991781957784], "stop_id": 3442437, "stop_desc": "FACE 75 AVENUE DU MAINE - 75114", "stop_name": "GAITE"}, "geometry": {"type": "Point", "coordinates": [2.321991781957784, 48.838814669136]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ea8d5ac18b581128bc4f1acf566a117ec077392a", "fields": {"departement": "75", "stop_lat": 48.8262395129285, "code_postal": "75114", "stop_lon": 2.3129978602230077, "coord": [48.8262395129285, 2.3129978602230077], "stop_id": 3442459, "stop_desc": "FACE 110 RUE DIDOT - 75114", "stop_name": "DIDOT"}, "geometry": {"type": "Point", "coordinates": [2.3129978602230077, 48.8262395129285]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9742d89fc4546f4ad5a955e453f81102b2c50669", "fields": {"departement": "75", "stop_lat": 48.83391641885554, "code_postal": "75114", "stop_lon": 2.3218434670025436, "coord": [48.83391641885554, 2.3218434670025436], "stop_id": 3442463, "stop_desc": "1 RUE DIDOT - 75114", "stop_name": "CHATEAU"}, "geometry": {"type": "Point", "coordinates": [2.3218434670025436, 48.83391641885554]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3e3fa68edf3d97030f928bb5eb7644b9851e9d8d", "fields": {"departement": "92", "stop_lat": 48.83610561626088, "code_postal": "92012", "stop_lon": 2.2387793809367085, "coord": [48.83610561626088, 2.2387793809367085], "stop_id": 3442583, "stop_desc": "AVENUE ANDRE MORIZET - 92012", "stop_name": "HOTEL DE VILLE DE BOULOGNE-BILLANCOURT"}, "geometry": {"type": "Point", "coordinates": [2.2387793809367085, 48.83610561626088]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "09bd9b148cf72b5c5522e1ccfdde9dbf4083c211", "fields": {"departement": "92", "stop_lat": 48.82001929667521, "code_postal": "92046", "stop_lon": 2.3095845311175642, "coord": [48.82001929667521, 2.3095845311175642], "stop_id": 3442551, "stop_desc": "171 BOULEVARD GABRIEL PERI - 92046", "stop_name": "PIERRE BROSSOLETTE - GABRIEL PERI"}, "geometry": {"type": "Point", "coordinates": [2.3095845311175642, 48.82001929667521]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "29a841d32c8c58b1b99221d631cbbb1e3610215b", "fields": {"departement": "92", "stop_lat": 48.84006114983078, "code_postal": "92012", "stop_lon": 2.2295539967116715, "coord": [48.84006114983078, 2.2295539967116715], "stop_id": 3442588, "stop_desc": "FACE 124 AVENUE ANDRE MORIZET - 92012", "stop_name": "RHIN ET DANUBE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.2295539967116715, 48.84006114983078]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9ae0ac7632cae3957a02774bfbd65d6acd69aff8", "fields": {"departement": "75", "stop_lat": 48.82225073510656, "code_postal": "75114", "stop_lon": 2.3241199820135248, "coord": [48.82225073510656, 2.3241199820135248], "stop_id": 3442545, "stop_desc": "FACE 41 AV ERNEST REYER - 75114", "stop_name": "PORTE D'ORLEANS-METRO"}, "geometry": {"type": "Point", "coordinates": [2.3241199820135248, 48.82225073510656]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0a243bc1239365274775131a1595d11bd198a0ef", "fields": {"departement": "92", "stop_lat": 48.84023203624206, "code_postal": "92012", "stop_lon": 2.2296898001349956, "coord": [48.84023203624206, 2.2296898001349956], "stop_id": 3442587, "stop_desc": "124 AVENUE ANDRE MORIZET - 92012", "stop_name": "RHIN ET DANUBE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.2296898001349956, 48.84023203624206]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b61d3b7915eaf1adbdaa131177fdb48c689a2f9c", "fields": {"departement": "92", "stop_lat": 48.83396076230996, "code_postal": "92012", "stop_lon": 2.2427043318565953, "coord": [48.83396076230996, 2.2427043318565953], "stop_id": 3442582, "stop_desc": "5 AVENUE ANDRE MORIZET - 92012", "stop_name": "MARCEL SEMBAT-METRO"}, "geometry": {"type": "Point", "coordinates": [2.2427043318565953, 48.83396076230996]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "29b5491dd84cfef168d7ed1cbad5825a568e7c3a", "fields": {"departement": "92", "stop_lat": 48.827788312419415, "code_postal": "92040", "stop_lon": 2.272663177862002, "coord": [48.827788312419415, 2.272663177862002], "stop_id": 3442570, "stop_desc": "32 BOULEVARD DES FRERES VOISIN - 92040", "stop_name": "VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.272663177862002, 48.827788312419415]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4a03aa28ba4900c850472b92aa9b833369feb47c", "fields": {"departement": "92", "stop_lat": 48.82801275135446, "code_postal": "92040", "stop_lon": 2.2722000700485663, "coord": [48.82801275135446, 2.2722000700485663], "stop_id": 3442569, "stop_desc": "19 BOULEVARD DES FRERES VOISIN - 92040", "stop_name": "VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.2722000700485663, 48.82801275135446]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "12b21027db8cfe9bf76543b80c7ec85e55625e4f", "fields": {"departement": "92", "stop_lat": 48.81924744434094, "code_postal": "92049", "stop_lon": 2.3147568562747747, "coord": [48.81924744434094, 2.3147568562747747], "stop_id": 3442550, "stop_desc": "79 RUE GABRIEL PERI - 92049", "stop_name": "RADIGUEY"}, "geometry": {"type": "Point", "coordinates": [2.3147568562747747, 48.81924744434094]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a62e5dbf523e3a6477258a673f1cd36089f1550a", "fields": {"departement": "92", "stop_lat": 48.840885269272704, "code_postal": "92012", "stop_lon": 2.2265703845664584, "coord": [48.840885269272704, 2.2265703845664584], "stop_id": 3442590, "stop_desc": "5 BIS AV DU MARECHAL DE LATTRE DE TASSIGNY - 92012", "stop_name": "RHIN ET DANUBE-METRO."}, "geometry": {"type": "Point", "coordinates": [2.2265703845664584, 48.840885269272704]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "365923ede56085163802d20e31a4ec77b8b88b34", "fields": {"departement": "93", "stop_lat": 48.87772731972372, "code_postal": "93064", "stop_lon": 2.486714539865411, "coord": [48.87772731972372, 2.486714539865411], "stop_id": 3446793, "stop_desc": "16 AV DU PRESIDENT JOHN KENNEDY - 93064", "stop_name": "JEAN DE MAILLY - HOFFMANN"}, "geometry": {"type": "Point", "coordinates": [2.486714539865411, 48.87772731972372]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "205fc26e7bcf2dadd8e35b29c10ff3e71ee80ea7", "fields": {"departement": "93", "stop_lat": 48.895303644872406, "code_postal": "93055", "stop_lon": 2.4266011366189213, "coord": [48.895303644872406, 2.4266011366189213], "stop_id": 3446769, "stop_desc": "16 ROUTE DE NOISY - 93055", "stop_name": "RAYMOND QUENEAU - ROUTE DE NOISY"}, "geometry": {"type": "Point", "coordinates": [2.4266011366189213, 48.895303644872406]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "69b879519a2dad46d094f6dcf548ad3978d2d074", "fields": {"departement": "92", "stop_lat": 48.84253487165205, "code_postal": "92064", "stop_lon": 2.222236843053593, "coord": [48.84253487165205, 2.222236843053593], "stop_id": 3442593, "stop_desc": "QUAI DU PRESIDENT CARNOT - 92064", "stop_name": "PARC DE SAINT-CLOUD"}, "geometry": {"type": "Point", "coordinates": [2.222236843053593, 48.84253487165205]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9e0a6aa6d7ff8788e1338bced86dc24c9e6155a2", "fields": {"departement": "93", "stop_lat": 48.89300340953391, "code_postal": "93055", "stop_lon": 2.4129266071036524, "coord": [48.89300340953391, 2.4129266071036524], "stop_id": 3446763, "stop_desc": "AVENUE JEAN LOLIVE - 93055", "stop_name": "EGLISE DE PANTIN-METRO"}, "geometry": {"type": "Point", "coordinates": [2.4129266071036524, 48.89300340953391]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9a3239d4f6c5bcd83c184b3bb125cecf3abce312", "fields": {"departement": "93", "stop_lat": 48.893760443531676, "code_postal": "93063", "stop_lon": 2.4347627719363105, "coord": [48.893760443531676, 2.4347627719363105], "stop_id": 3446771, "stop_desc": "130-132 AVENUE GASTON ROUSSEL - 93063", "stop_name": "LOUISE DORY"}, "geometry": {"type": "Point", "coordinates": [2.4347627719363105, 48.893760443531676]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "90d6d6d2e062f7733f7e551ed3bba592afaf66f3", "fields": {"departement": "93", "stop_lat": 48.89318210584974, "code_postal": "93063", "stop_lon": 2.4385507474503703, "coord": [48.89318210584974, 2.4385507474503703], "stop_id": 3446774, "stop_desc": "FACE 184 ROUTE DE NOISY - 93063", "stop_name": "PAUL DE KOCK"}, "geometry": {"type": "Point", "coordinates": [2.4385507474503703, 48.89318210584974]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4dacec3e135ef28fe8f33769a874cf18cf0693de", "fields": {"departement": "93", "stop_lat": 48.88963634548666, "code_postal": "93053", "stop_lon": 2.453658151289903, "coord": [48.88963634548666, 2.453658151289903], "stop_id": 3446779, "stop_desc": "8 RUE DE BREMENT - 93053", "stop_name": "JEANNE D'ARC"}, "geometry": {"type": "Point", "coordinates": [2.453658151289903, 48.88963634548666]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "63327b3b4aaf9b83f4505eb2522988576c4395ce", "fields": {"departement": "93", "stop_lat": 48.88295989291311, "code_postal": "93077", "stop_lon": 2.4989667209034665, "coord": [48.88295989291311, 2.4989667209034665], "stop_id": 3616898, "stop_desc": "FACE 106 AVENUE DE ROSNY-SOUS-BOIS - 93077", "stop_name": "CIMETIERE DE VILLEMOMBLE"}, "geometry": {"type": "Point", "coordinates": [2.4989667209034665, 48.88295989291311]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "104e401e80fdfdf84d7d3aac3b34a950eba1637f", "fields": {"departement": "93", "stop_lat": 48.88446449965553, "code_postal": "93032", "stop_lon": 2.5324813329453546, "coord": [48.88446449965553, 2.5324813329453546], "stop_id": 3616912, "stop_desc": "25 AVENUE JEAN JAURES - 93032", "stop_name": "JEAN JAURES - HENRI BARBUSSE"}, "geometry": {"type": "Point", "coordinates": [2.5324813329453546, 48.88446449965553]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6d30115ea3521b145dec4d22cdf5947bfd689ea3", "fields": {"departement": "93", "stop_lat": 48.88628861429996, "code_postal": "93064", "stop_lon": 2.474746652656642, "coord": [48.88628861429996, 2.474746652656642], "stop_id": 3616890, "stop_desc": "BRETELLE DE SORTIE DU CENTRE COMMERCIAL ROSNY 2 - 93064", "stop_name": "ROSNY 2 NORD"}, "geometry": {"type": "Point", "coordinates": [2.474746652656642, 48.88628861429996]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7853c192cd9c4e2a56cbca364d2e720c9b0a3323", "fields": {"departement": "93", "stop_lat": 48.88284223494826, "code_postal": "93064", "stop_lon": 2.4928341932578513, "coord": [48.88284223494826, 2.4928341932578513], "stop_id": 3616897, "stop_desc": "169 BOULEVARD D'ALSACE LORRAINE - 93064", "stop_name": "LES MARNAUDES"}, "geometry": {"type": "Point", "coordinates": [2.4928341932578513, 48.88284223494826]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "763ea95decaeaaf261c33d3d8a2008f5ab100d9b", "fields": {"departement": "93", "stop_lat": 48.86413353126702, "code_postal": "93006", "stop_lon": 2.4171345680841587, "coord": [48.86413353126702, 2.4171345680841587], "stop_id": 3616888, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 93006", "stop_name": "GALLIENI"}, "geometry": {"type": "Point", "coordinates": [2.4171345680841587, 48.86413353126702]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b9c8f3152fa38e579737886309d2f7a717f41776", "fields": {"departement": "93", "stop_lat": 48.88443086356306, "code_postal": "93077", "stop_lon": 2.507529344691353, "coord": [48.88443086356306, 2.507529344691353], "stop_id": 3616902, "stop_desc": "1 RUE GRANDE RUE - 93077", "stop_name": "AVENUE DU RAINCY"}, "geometry": {"type": "Point", "coordinates": [2.507529344691353, 48.88443086356306]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "44adf21cb9d0158ccf7e8bdb775c066b26dc2f2e", "fields": {"departement": "94", "stop_lat": 48.83550847166781, "code_postal": "94015", "stop_lon": 2.5333726800339575, "coord": [48.83550847166781, 2.5333726800339575], "stop_id": 3616876, "stop_desc": "VOIE PRIVEE - 94015", "stop_name": "LES HAUTS DE BRY"}, "geometry": {"type": "Point", "coordinates": [2.5333726800339575, 48.83550847166781]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8c96dfe831df40061ead666f3bbae38ac59e7c53", "fields": {"departement": "93", "stop_lat": 48.88287391562427, "code_postal": "93077", "stop_lon": 2.5151553713886163, "coord": [48.88287391562427, 2.5151553713886163], "stop_id": 3616907, "stop_desc": "91 RUE GRANDE RUE - 93077", "stop_name": "RUE DE NEUILLY"}, "geometry": {"type": "Point", "coordinates": [2.5151553713886163, 48.88287391562427]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "23ac67988f49eccc69b296dfadaad71ffeed4fe5", "fields": {"departement": "93", "stop_lat": 48.86383723031728, "code_postal": "93006", "stop_lon": 2.416711829392418, "coord": [48.86383723031728, 2.416711829392418], "stop_id": 3616889, "stop_desc": "AV DU GENERAL DE GAULLE - 93006", "stop_name": "GALLIENI"}, "geometry": {"type": "Point", "coordinates": [2.416711829392418, 48.86383723031728]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "70588b903173ef861570cae7f766dc4dc9b150e9", "fields": {"departement": "94", "stop_lat": 48.836184082067945, "code_postal": "94015", "stop_lon": 2.5324358136717753, "coord": [48.836184082067945, 2.5324358136717753], "stop_id": 3616873, "stop_desc": "AV DES FRERES LUMIERE - 94015", "stop_name": "MOLIERE"}, "geometry": {"type": "Point", "coordinates": [2.5324358136717753, 48.836184082067945]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8a916ff4113801b0e92e80b6b5f4bad07f4329de", "fields": {"departement": "92", "stop_lat": 48.8193243854821, "code_postal": "92046", "stop_lon": 2.2992274481183093, "coord": [48.8193243854821, 2.2992274481183093], "stop_id": 3619137, "stop_desc": "FACE 64 BOULEVARD GABRIEL PERI - 92046", "stop_name": "GABRIEL PERI - ANDRE COIN"}, "geometry": {"type": "Point", "coordinates": [2.2992274481183093, 48.8193243854821]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3250d8e9e5fa0adb134243eb453ec9483fc0e869", "fields": {"departement": "93", "stop_lat": 48.87901204214354, "code_postal": "93032", "stop_lon": 2.54670000516056, "coord": [48.87901204214354, 2.54670000516056], "stop_id": 3616920, "stop_desc": "136 RUE JULES GUESDE - 93032", "stop_name": "MONTGUICHET-ARENA"}, "geometry": {"type": "Point", "coordinates": [2.54670000516056, 48.87901204214354]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9babd0cbe8ed172174dd44b64ca5093a935bb213", "fields": {"departement": "93", "stop_lat": 48.879182440223886, "code_postal": "93032", "stop_lon": 2.5469050848368124, "coord": [48.879182440223886, 2.5469050848368124], "stop_id": 3616921, "stop_desc": "RUE JULES GUESDE - 93032", "stop_name": "MONTGUICHET-ARENA"}, "geometry": {"type": "Point", "coordinates": [2.5469050848368124, 48.879182440223886]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eb7718de848a9d88e262561bcd6c3e8d8ba638eb", "fields": {"departement": "94", "stop_lat": 48.78520124082686, "code_postal": "94028", "stop_lon": 2.4530568431191986, "coord": [48.78520124082686, 2.4530568431191986], "stop_id": 3619288, "stop_desc": "AV DE LA BRECHE - 94028", "stop_name": "CROIX DES MECHES"}, "geometry": {"type": "Point", "coordinates": [2.4530568431191986, 48.78520124082686]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b62b3d304231738606ad7fae28b9a468b5b67426", "fields": {"departement": "92", "stop_lat": 48.823918083546204, "code_postal": "92046", "stop_lon": 2.3024636252960686, "coord": [48.823918083546204, 2.3024636252960686], "stop_id": 3619132, "stop_desc": "14 AVENUE PIERRE LAROUSSE - 92046", "stop_name": "RUE LEGRAND"}, "geometry": {"type": "Point", "coordinates": [2.3024636252960686, 48.823918083546204]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "edfecc2e654053a2bb92a31b41423b726a8b8066", "fields": {"departement": "75", "stop_lat": 48.82751393246196, "code_postal": "75114", "stop_lon": 2.3052653830764256, "coord": [48.82751393246196, 2.3052653830764256], "stop_id": 3619130, "stop_desc": "RUE JULIA BARTET - 75114", "stop_name": "PORTE DE VANVES"}, "geometry": {"type": "Point", "coordinates": [2.3052653830764256, 48.82751393246196]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8dd8a066ece65f12030c3120888612e91781edea", "fields": {"departement": "92", "stop_lat": 48.801642529417165, "code_postal": "92023", "stop_lon": 2.2718385446972253, "coord": [48.801642529417165, 2.2718385446972253], "stop_id": 3619165, "stop_desc": "46 RUE DE CHATILLON - 92023", "stop_name": "PIERRE CORBY"}, "geometry": {"type": "Point", "coordinates": [2.2718385446972253, 48.801642529417165]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3e560f6cde7450861c1c22c6511982c7f5b1446c", "fields": {"departement": "92", "stop_lat": 48.80801794839486, "code_postal": "92023", "stop_lon": 2.277668068466293, "coord": [48.80801794839486, 2.277668068466293], "stop_id": 3619151, "stop_desc": "142 RUE DES ROISSYS - 92023", "stop_name": "LAZARE-CARNOT"}, "geometry": {"type": "Point", "coordinates": [2.277668068466293, 48.80801794839486]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e0547450f37fb129b532001e022508f3d7411dbb", "fields": {"departement": "92", "stop_lat": 48.81419127111396, "code_postal": "92046", "stop_lon": 2.2958561826681723, "coord": [48.81419127111396, 2.2958561826681723], "stop_id": 3619167, "stop_desc": "105 RUE GUY MOQUET - 92046", "stop_name": "ALEXIS MARTIN"}, "geometry": {"type": "Point", "coordinates": [2.2958561826681723, 48.81419127111396]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6ed21768d3190651fdbf392ba755d0f5d72cfc3f", "fields": {"departement": "92", "stop_lat": 48.816031982854554, "code_postal": "92046", "stop_lon": 2.2910369667142754, "coord": [48.816031982854554, 2.2910369667142754], "stop_id": 3619141, "stop_desc": "FACE 21 RUE AVAULEE - 92046", "stop_name": "HOCHE"}, "geometry": {"type": "Point", "coordinates": [2.2910369667142754, 48.816031982854554]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1789cfcc63a882b1c4deeae94442f65e82edaff1", "fields": {"departement": "93", "stop_lat": 48.90260206231472, "code_postal": "93057", "stop_lon": 2.5081479786567935, "coord": [48.90260206231472, 2.5081479786567935], "stop_id": 3560252, "stop_desc": "FACE 158 AVENUE FRANKLIN - 93057", "stop_name": "MAIRIE DES PAVILLONS-SOUS-BOIS"}, "geometry": {"type": "Point", "coordinates": [2.5081479786567935, 48.90260206231472]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "100bee68904d55282f3ab9eeac1ee1c024481291", "fields": {"departement": "93", "stop_lat": 48.90226104150085, "code_postal": "93057", "stop_lon": 2.507806050580477, "coord": [48.90226104150085, 2.507806050580477], "stop_id": 3560251, "stop_desc": "FACE 158 AV FRANKLIN - 93057", "stop_name": "MAIRIE DES PAVILLONS-SOUS-BOIS"}, "geometry": {"type": "Point", "coordinates": [2.507806050580477, 48.90226104150085]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "597825af77342c5c5c041d1f2e8ee06671913abf", "fields": {"departement": "93", "stop_lat": 48.90193365060518, "code_postal": "93010", "stop_lon": 2.4836626226832355, "coord": [48.90193365060518, 2.4836626226832355], "stop_id": 3560240, "stop_desc": "20 AVENUE HENRI BARBUSSE - 93010", "stop_name": "CIMETIERE - HOTEL DE VILLE"}, "geometry": {"type": "Point", "coordinates": [2.4836626226832355, 48.90193365060518]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "99643e4ceb0a433092c1e0d1ae40a7dfa684a2c0", "fields": {"departement": "94", "stop_lat": 48.84462471993193, "code_postal": "94015", "stop_lon": 2.526053965223131, "coord": [48.84462471993193, 2.526053965223131], "stop_id": 3616866, "stop_desc": "BD DU GENERAL GALLIENI - 94015", "stop_name": "BRY-SUR-MARNE RER"}, "geometry": {"type": "Point", "coordinates": [2.526053965223131, 48.84462471993193]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5c56974fb8bf41a6a06672b72944ced242ac4e3a", "fields": {"departement": "93", "stop_lat": 48.90169460130303, "code_postal": "93010", "stop_lon": 2.487983284248353, "coord": [48.90169460130303, 2.487983284248353], "stop_id": 3560243, "stop_desc": "53 AVENUE HENRI BARBUSSE - 93010", "stop_name": "PIERRE BROSSOLETTE"}, "geometry": {"type": "Point", "coordinates": [2.487983284248353, 48.90169460130303]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6ff39646256dffe2e703436a45e9da340eb5c6c1", "fields": {"departement": "93", "stop_lat": 48.9003960678656, "code_postal": "93010", "stop_lon": 2.491414679751023, "coord": [48.9003960678656, 2.491414679751023], "stop_id": 3560244, "stop_desc": "AVENUE HENRI BARBUSSE - 93010", "stop_name": "PROFESSEUR VAILLANT"}, "geometry": {"type": "Point", "coordinates": [2.491414679751023, 48.9003960678656]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cfa773b97f8df4b041e9380b94316c5c1dd7fbf2", "fields": {"departement": "93", "stop_lat": 48.885834489371526, "code_postal": "93053", "stop_lon": 2.4443554563596304, "coord": [48.885834489371526, 2.4443554563596304], "stop_id": 3560258, "stop_desc": "FACE 121 RUE ANATOLE FRANCE - 93053", "stop_name": "RUE DU PARC"}, "geometry": {"type": "Point", "coordinates": [2.4443554563596304, 48.885834489371526]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d7bba0bdc785da2b605d5b6c2867297529eeda46", "fields": {"departement": "94", "stop_lat": 48.83813918886252, "code_postal": "94015", "stop_lon": 2.5349756139390753, "coord": [48.83813918886252, 2.5349756139390753], "stop_id": 3616870, "stop_desc": "8 AV DES FRERES LUMIERE - 94015", "stop_name": "LA FONTAINE"}, "geometry": {"type": "Point", "coordinates": [2.5349756139390753, 48.83813918886252]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3eeff80be01a2cfeab2ee42020e3cecb59207864", "fields": {"departement": "94", "stop_lat": 48.843540466522846, "code_postal": "94015", "stop_lon": 2.52964483125536, "coord": [48.843540466522846, 2.52964483125536], "stop_id": 3616867, "stop_desc": "FACE 1 RUE DE LA GARENNE - 94015", "stop_name": "CLEMENCEAU"}, "geometry": {"type": "Point", "coordinates": [2.52964483125536, 48.843540466522846]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e9e56ecaa0b819cb5a1be0b6ac6aed9a75a6cd32", "fields": {"departement": "94", "stop_lat": 48.84422929758358, "code_postal": "94015", "stop_lon": 2.531621835506577, "coord": [48.84422929758358, 2.531621835506577], "stop_id": 3616868, "stop_desc": "1 RUE LEON MENU - 94015", "stop_name": "CLEMENCEAU"}, "geometry": {"type": "Point", "coordinates": [2.531621835506577, 48.84422929758358]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6961d295fafdbd7f28392d5a85a12b0b3c9eee82", "fields": {"departement": "94", "stop_lat": 48.778720298304705, "code_postal": "94055", "stop_lon": 2.535266227766504, "coord": [48.778720298304705, 2.535266227766504], "stop_id": 3619327, "stop_desc": "CHAUSSEE DEPARTEMENTALE 33 - 94055", "stop_name": "RUE DE L'ANCIEN MOULIN"}, "geometry": {"type": "Point", "coordinates": [2.535266227766504, 48.778720298304705]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5a4d3ca0fb34662da036a1f0a61d8a917986e6a6", "fields": {"departement": "94", "stop_lat": 48.77385527293808, "code_postal": "94011", "stop_lon": 2.4879251125601227, "coord": [48.77385527293808, 2.4879251125601227], "stop_id": 3619309, "stop_desc": "5 AVENUE DU MARECHAL LECLERC - 94011", "stop_name": "MAIRIE DE BONNEUIL"}, "geometry": {"type": "Point", "coordinates": [2.4879251125601227, 48.77385527293808]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "360e26307782f67df20e7a7e98bff7e11a6f8abb", "fields": {"departement": "94", "stop_lat": 48.778810268505005, "code_postal": "94055", "stop_lon": 2.5352121717438756, "coord": [48.778810268505005, 2.5352121717438756], "stop_id": 3619328, "stop_desc": "CHEMIN DEPARTEMENTAL 33 - 94055", "stop_name": "RUE DE L'ANCIEN MOULIN"}, "geometry": {"type": "Point", "coordinates": [2.5352121717438756, 48.778810268505005]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "617480a322a590f402dfa5c2fffbe3f61f6f07cc", "fields": {"departement": "94", "stop_lat": 48.77532329544903, "code_postal": "94071", "stop_lon": 2.5238574585658164, "coord": [48.77532329544903, 2.5238574585658164], "stop_id": 3619318, "stop_desc": "FACE 33 RUE DE LA CITE VERTE - 94071", "stop_name": "LA FOSSE ROUGE"}, "geometry": {"type": "Point", "coordinates": [2.5238574585658164, 48.77532329544903]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "650aaa08f2a426e3ed060e3ac9c325812ee71c3e", "fields": {"departement": "94", "stop_lat": 48.77328787005393, "code_postal": "94011", "stop_lon": 2.4957288820720187, "coord": [48.77328787005393, 2.4957288820720187], "stop_id": 3619311, "stop_desc": "AVENUE DU MARECHAL LECLERC - 94011", "stop_name": "PETITS CARREAUX"}, "geometry": {"type": "Point", "coordinates": [2.4957288820720187, 48.77328787005393]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "30f79eec8bae6608e2f0920caac9208d64642d2d", "fields": {"departement": "94", "stop_lat": 48.798657748335636, "code_postal": "94019", "stop_lon": 2.533954554133798, "coord": [48.798657748335636, 2.533954554133798], "stop_id": 3619341, "stop_desc": "FACE 79 RUE ARISTIDE BRIAND - 94019", "stop_name": "SAINT-SIMEON"}, "geometry": {"type": "Point", "coordinates": [2.533954554133798, 48.798657748335636]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fd5326e72e0396d8864285e543d2cbe4aa9b83b5", "fields": {"departement": "94", "stop_lat": 48.78091016463046, "code_postal": "94028", "stop_lon": 2.4736108859036237, "coord": [48.78091016463046, 2.4736108859036237], "stop_id": 3619300, "stop_desc": "AV DU DOCTEUR PAUL CASALIS - 94028", "stop_name": "LA GAITE"}, "geometry": {"type": "Point", "coordinates": [2.4736108859036237, 48.78091016463046]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f93b99fb20870315f535f7e7bef7916a56830e25", "fields": {"departement": "94", "stop_lat": 48.77304880233939, "code_postal": "94071", "stop_lon": 2.529818913875126, "coord": [48.77304880233939, 2.529818913875126], "stop_id": 3619324, "stop_desc": "44 BIS RUE DE NOISEAU - 94071", "stop_name": "RUE DE NOISEAU"}, "geometry": {"type": "Point", "coordinates": [2.529818913875126, 48.77304880233939]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "82f3ae9aac726c76f99201d6f743eae6f7c12d3e", "fields": {"departement": "94", "stop_lat": 48.774395476328316, "code_postal": "94071", "stop_lon": 2.525159590112552, "coord": [48.774395476328316, 2.525159590112552], "stop_id": 3619320, "stop_desc": "RUE DE LA CITE VERTE - 94071", "stop_name": "PLACE DEGAS"}, "geometry": {"type": "Point", "coordinates": [2.525159590112552, 48.774395476328316]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1e6883d93b92c9ba95865f03461f5b6faa1f3e9f", "fields": {"departement": "94", "stop_lat": 48.792440378494, "code_postal": "94019", "stop_lon": 2.5325842759600885, "coord": [48.792440378494, 2.5325842759600885], "stop_id": 3619338, "stop_desc": "PLACE DU 8 MAI 1945 - 94019", "stop_name": "8 MAI 1945"}, "geometry": {"type": "Point", "coordinates": [2.5325842759600885, 48.792440378494]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f5cb140ffc79c0fb50a909672d294c952474f62b", "fields": {"departement": "94", "stop_lat": 48.82079084299171, "code_postal": "94042", "stop_lon": 2.4640384370731963, "coord": [48.82079084299171, 2.4640384370731963], "stop_id": 3619404, "stop_desc": "FACE 11 AVENUE JEAN JAURES - 94042", "stop_name": "JOINVILLE-LE-PONT RER"}, "geometry": {"type": "Point", "coordinates": [2.4640384370731963, 48.82079084299171]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c6b8d4a56fb133e95b1996361757562b3f25686f", "fields": {"departement": "94", "stop_lat": 48.8202835765554, "code_postal": "94042", "stop_lon": 2.4676984462794116, "coord": [48.8202835765554, 2.4676984462794116], "stop_id": 3619393, "stop_desc": "PONT DE JOINVILLE - 94042", "stop_name": "CARREFOUR DE LA RESISTANCE"}, "geometry": {"type": "Point", "coordinates": [2.4676984462794116, 48.8202835765554]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b1e6ab9dd4f8f9b7691db57c800b0713c82f2a3e", "fields": {"departement": "94", "stop_lat": 48.8202835765554, "code_postal": "94042", "stop_lon": 2.4676984462794116, "coord": [48.8202835765554, 2.4676984462794116], "stop_id": 3619407, "stop_desc": "PONT DE JOINVILLE - 94042", "stop_name": "CARREFOUR DE LA RESISTANCE"}, "geometry": {"type": "Point", "coordinates": [2.4676984462794116, 48.8202835765554]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "80dfa543fb024d4a92f2c9a759ba01d0b8f52569", "fields": {"departement": "94", "stop_lat": 48.8207913927885, "code_postal": "94042", "stop_lon": 2.4635212310090804, "coord": [48.8207913927885, 2.4635212310090804], "stop_id": 3619391, "stop_desc": "AVENUE JEAN JAURES - 94042", "stop_name": "JOINVILLE-LE-PONT RER"}, "geometry": {"type": "Point", "coordinates": [2.4635212310090804, 48.8207913927885]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6fd2934ae55cbb9dd03387b10096fdc2f455cb64", "fields": {"departement": "94", "stop_lat": 48.81995626912527, "code_postal": "94042", "stop_lon": 2.478844627264899, "coord": [48.81995626912527, 2.478844627264899], "stop_id": 3619410, "stop_desc": "44 AVENUE DU GENERAL GALLIENI - 94042", "stop_name": "LES PLATANES"}, "geometry": {"type": "Point", "coordinates": [2.478844627264899, 48.81995626912527]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8ddac936ad0362ec910022eb6fd96569dbbeb2c0", "fields": {"departement": "94", "stop_lat": 48.79875831497821, "code_postal": "94019", "stop_lon": 2.55368214924742, "coord": [48.79875831497821, 2.55368214924742], "stop_id": 3619347, "stop_desc": "15 RUE CLEMENT ADER - 94019", "stop_name": "CHAMPLAIN - PAGNOL"}, "geometry": {"type": "Point", "coordinates": [2.55368214924742, 48.79875831497821]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "82ceae8a2d5ebec3049e0d6e2a67642e1613e745", "fields": {"departement": "94", "stop_lat": 48.8296917288368, "code_postal": "94017", "stop_lon": 2.4773193022480613, "coord": [48.8296917288368, 2.4773193022480613], "stop_id": 3619402, "stop_desc": "VOIE PRIVEE - 94017", "stop_name": "CAMPING INTERNATIONAL"}, "geometry": {"type": "Point", "coordinates": [2.4773193022480613, 48.8296917288368]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f718fdca3bcc749aa788299f758348501eb38126", "fields": {"departement": "94", "stop_lat": 48.82769843508789, "code_postal": "94042", "stop_lon": 2.475639580210116, "coord": [48.82769843508789, 2.475639580210116], "stop_id": 3619400, "stop_desc": "FACE 3 BOULEVARD DES ALLIES - 94042", "stop_name": "POLANGIS"}, "geometry": {"type": "Point", "coordinates": [2.475639580210116, 48.82769843508789]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5cc275da9231a2bf6e2ebc25176fafe1d153b5aa", "fields": {"departement": "94", "stop_lat": 48.82739328236009, "code_postal": "94042", "stop_lon": 2.475271230146787, "coord": [48.82739328236009, 2.475271230146787], "stop_id": 3619401, "stop_desc": "99 BOULEVARD DE POLANGIS - 94042", "stop_name": "POLANGIS"}, "geometry": {"type": "Point", "coordinates": [2.475271230146787, 48.82739328236009]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "34e31ea97b0d853dd47d4b9a15aa76024963a5ed", "fields": {"departement": "94", "stop_lat": 48.80599270326873, "code_postal": "94017", "stop_lon": 2.54915400470061, "coord": [48.80599270326873, 2.54915400470061], "stop_id": 3619355, "stop_desc": "FACE 3 RUE JACQUES SOLOMON - 94017", "stop_name": "RODIN"}, "geometry": {"type": "Point", "coordinates": [2.54915400470061, 48.80599270326873]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7fe7f469b687ade20eea5a7a1004b73143518009", "fields": {"departement": "94", "stop_lat": 48.825352722736056, "code_postal": "94017", "stop_lon": 2.50997621620123, "coord": [48.825352722736056, 2.50997621620123], "stop_id": 3619459, "stop_desc": "102 AVENUE DE LA REPUBLIQUE - 94017", "stop_name": "LES BOULLEREAUX - CHAMPIGNY RER"}, "geometry": {"type": "Point", "coordinates": [2.50997621620123, 48.825352722736056]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "15fffa4c164b625d6562692635e4686a13f73a25", "fields": {"departement": "94", "stop_lat": 48.82721990817911, "code_postal": "94017", "stop_lon": 2.511520634602343, "coord": [48.82721990817911, 2.511520634602343], "stop_id": 3619461, "stop_desc": "FACE 235 AVENUE DU GENERAL DE GAULLE - 94017", "stop_name": "FOURCHETTE DE BRY"}, "geometry": {"type": "Point", "coordinates": [2.511520634602343, 48.82721990817911]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7812b88568b88f8262eb7b41add32be545bfbfc1", "fields": {"departement": "94", "stop_lat": 48.820974547612614, "code_postal": "94017", "stop_lon": 2.510778293039968, "coord": [48.820974547612614, 2.510778293039968], "stop_id": 3619458, "stop_desc": "49BIS-51 AVENUE DE LA REPUBLIQUE - 94017", "stop_name": "CITES JARDINS"}, "geometry": {"type": "Point", "coordinates": [2.510778293039968, 48.820974547612614]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9f01a51c4da72c77f3f724a7100aa388f70d49f0", "fields": {"departement": "94", "stop_lat": 48.826832972816526, "code_postal": "94017", "stop_lon": 2.5178626777169675, "coord": [48.826832972816526, 2.5178626777169675], "stop_id": 3619463, "stop_desc": "VOIE DE DELESTAGE NORD - 94017", "stop_name": "LES MARAIS"}, "geometry": {"type": "Point", "coordinates": [2.5178626777169675, 48.826832972816526]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d2b605069148905e1e2d41985d36b8bd55196704", "fields": {"departement": "94", "stop_lat": 48.82718358992669, "code_postal": "94079", "stop_lon": 2.529284717049896, "coord": [48.82718358992669, 2.529284717049896], "stop_id": 3619465, "stop_desc": "36 RUE JEAN JAURES - 94079", "stop_name": "LES ARMOIRIES"}, "geometry": {"type": "Point", "coordinates": [2.529284717049896, 48.82718358992669]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5e5554cd3d2193c364361afbccf6734ce7313ccb", "fields": {"departement": "93", "stop_lat": 48.92631381258556, "code_postal": "93007", "stop_lon": 2.4696839333626395, "coord": [48.92631381258556, 2.4696839333626395], "stop_id": 3450637, "stop_desc": "FACE 124 AVENUE PAUL VAILLANT COUTURIER - 93007", "stop_name": "PIERRE MONTILLET"}, "geometry": {"type": "Point", "coordinates": [2.4696839333626395, 48.92631381258556]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "af0a41781c9511ded1ebe23305da7c0b135ff674", "fields": {"departement": "93", "stop_lat": 48.92381130542711, "code_postal": "93007", "stop_lon": 2.473359739296664, "coord": [48.92381130542711, 2.473359739296664], "stop_id": 3450630, "stop_desc": "FACE 62 AVENUE DANIELLE CASANOVA - 93007", "stop_name": "DANIELLE CASANOVA"}, "geometry": {"type": "Point", "coordinates": [2.473359739296664, 48.92381130542711]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "df7b5bdf742689fe77a07a93874f2de0ac3ad252", "fields": {"departement": "93", "stop_lat": 48.921359498339704, "code_postal": "93007", "stop_lon": 2.471921396034401, "coord": [48.921359498339704, 2.471921396034401], "stop_id": 3450628, "stop_desc": "41 AVENUE JEAN JAURES - 93007", "stop_name": "SURCOUF - JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.471921396034401, 48.921359498339704]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "39bd48c25c43bbc105bdfe6020ae5f0c8e3110b1", "fields": {"departement": "93", "stop_lat": 48.91953137599179, "code_postal": "93007", "stop_lon": 2.475216716918382, "coord": [48.91953137599179, 2.475216716918382], "stop_id": 3450626, "stop_desc": "AVENUE DE SURCOUF - 93007", "stop_name": "JARDINS DE LA NOUE"}, "geometry": {"type": "Point", "coordinates": [2.475216716918382, 48.91953137599179]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3209786efc34f56a15240bb4bda3e3753891a5f9", "fields": {"departement": "93", "stop_lat": 48.93579014936311, "code_postal": "93029", "stop_lon": 2.4572676250925753, "coord": [48.93579014936311, 2.4572676250925753], "stop_id": 3450647, "stop_desc": "250 RUE ANATOLE FRANCE - 93029", "stop_name": "ROGER SALOMON"}, "geometry": {"type": "Point", "coordinates": [2.4572676250925753, 48.93579014936311]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "79100e975d02016bec258cfa22ba00f3f988bdf6", "fields": {"departement": "93", "stop_lat": 48.917972348346105, "code_postal": "93010", "stop_lon": 2.4788670820144523, "coord": [48.917972348346105, 2.4788670820144523], "stop_id": 3450625, "stop_desc": "AVENUE LEON JOUHAUX - 93010", "stop_name": "JOUHAUX - BLUM"}, "geometry": {"type": "Point", "coordinates": [2.4788670820144523, 48.917972348346105]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "793c231964012583cddf842a468eb2c91052e432", "fields": {"departement": "93", "stop_lat": 48.91061893584278, "code_postal": "93010", "stop_lon": 2.480564906762945, "coord": [48.91061893584278, 2.480564906762945], "stop_id": 3450617, "stop_desc": "FACE 93 ROUTE D'AULNAY - 93010", "stop_name": "PAUL RENAUD"}, "geometry": {"type": "Point", "coordinates": [2.480564906762945, 48.91061893584278]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1ff5e50888cf3934fbf0ca7b03355acf6e347fbb", "fields": {"departement": "93", "stop_lat": 48.92921811912042, "code_postal": "93029", "stop_lon": 2.459843845927786, "coord": [48.92921811912042, 2.459843845927786], "stop_id": 3450642, "stop_desc": "42 AVENUE JOFFRE - 93029", "stop_name": "EMILE DESPREZ"}, "geometry": {"type": "Point", "coordinates": [2.459843845927786, 48.92921811912042]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f06989e4945ddd80d72402f32a61b78b4d7117f2", "fields": {"departement": "93", "stop_lat": 48.91695910540304, "code_postal": "93010", "stop_lon": 2.484400525396555, "coord": [48.91695910540304, 2.484400525396555], "stop_id": 3450623, "stop_desc": "AV HENRI VARAGNAT - 93010", "stop_name": "RABELAIS"}, "geometry": {"type": "Point", "coordinates": [2.484400525396555, 48.91695910540304]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "085dd0d13f680a9fe6a26047865c6623d245622b", "fields": {"departement": "93", "stop_lat": 48.91748955522082, "code_postal": "93010", "stop_lon": 2.484224762465009, "coord": [48.91748955522082, 2.484224762465009], "stop_id": 3450622, "stop_desc": "VOIE NOUVELLE - 93010", "stop_name": "RABELAIS"}, "geometry": {"type": "Point", "coordinates": [2.484224762465009, 48.91748955522082]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1d36c9aae49811590a5a53fcfb89891dfd244485", "fields": {"departement": "93", "stop_lat": 48.92712853010298, "code_postal": "93007", "stop_lon": 2.472441027496559, "coord": [48.92712853010298, 2.472441027496559], "stop_id": 3450634, "stop_desc": "84 AVENUE PAUL VAILLANT COUTURIER - 93007", "stop_name": "DANIELLE CASANOVA - PAUL VAILLANT-COUTURIER"}, "geometry": {"type": "Point", "coordinates": [2.472441027496559, 48.92712853010298]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fa39fc56d03514f6be609f70a3f0a6e01aef97c7", "fields": {"departement": "94", "stop_lat": 48.81824154779597, "code_postal": "94017", "stop_lon": 2.4917422856669598, "coord": [48.81824154779597, 2.4917422856669598], "stop_id": 3619442, "stop_desc": "82 BIS AVENUE ROGER SALENGRO - 94017", "stop_name": "ARISTIDE BRIAND - LE PLANT"}, "geometry": {"type": "Point", "coordinates": [2.4917422856669598, 48.81824154779597]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "81c8d0bb2e7b216a0b30915d6c7ac122cae70e89", "fields": {"departement": "94", "stop_lat": 48.818303452164834, "code_postal": "94017", "stop_lon": 2.4925182443483265, "coord": [48.818303452164834, 2.4925182443483265], "stop_id": 3619415, "stop_desc": "89 AVENUE ROGER SALENGRO - 94017", "stop_name": "ARISTIDE BRIAND - LE PLANT"}, "geometry": {"type": "Point", "coordinates": [2.4925182443483265, 48.818303452164834]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a8c233260f084acb7531348fe45cb7d6359ee3f6", "fields": {"departement": "94", "stop_lat": 48.818303452164834, "code_postal": "94017", "stop_lon": 2.4925182443483265, "coord": [48.818303452164834, 2.4925182443483265], "stop_id": 3619443, "stop_desc": "89 AVENUE ROGER SALENGRO - 94017", "stop_name": "ARISTIDE BRIAND - LE PLANT"}, "geometry": {"type": "Point", "coordinates": [2.4925182443483265, 48.818303452164834]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "00656f6b32ed8406f14b9ec300b7cb5f65e5ae54", "fields": {"departement": "94", "stop_lat": 48.81769756809511, "code_postal": "94017", "stop_lon": 2.4953336852507952, "coord": [48.81769756809511, 2.4953336852507952], "stop_id": 3619445, "stop_desc": "123 AVENUE ROGER SALENGRO - 94017", "stop_name": "JEAN-BAPTISTE CLEMENT"}, "geometry": {"type": "Point", "coordinates": [2.4953336852507952, 48.81769756809511]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a2d57281baa64c29d28c1811ea6b8a876de0994e", "fields": {"departement": "94", "stop_lat": 48.8207913927885, "code_postal": "94042", "stop_lon": 2.4635212310090804, "coord": [48.8207913927885, 2.4635212310090804], "stop_id": 3619433, "stop_desc": "AVENUE JEAN JAURES - 94042", "stop_name": "JOINVILLE-LE-PONT RER"}, "geometry": {"type": "Point", "coordinates": [2.4635212310090804, 48.8207913927885]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7b2694e1ede8e0d0463108ed49389d061e836a6e", "fields": {"departement": "94", "stop_lat": 48.8115049003583, "code_postal": "94017", "stop_lon": 2.5145433547991614, "coord": [48.8115049003583, 2.5145433547991614], "stop_id": 3619426, "stop_desc": "16 RUE DE MUSSELBURGH - 94017", "stop_name": "RUE A TRAIT"}, "geometry": {"type": "Point", "coordinates": [2.5145433547991614, 48.8115049003583]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "573e4ac5e526625113d0f01a80243782ce79c608", "fields": {"departement": "94", "stop_lat": 48.81497727135156, "code_postal": "94017", "stop_lon": 2.5062399860581337, "coord": [48.81497727135156, 2.5062399860581337], "stop_id": 3619420, "stop_desc": "42 AVENUE JEAN JAURES - 94017", "stop_name": "GUITTARD"}, "geometry": {"type": "Point", "coordinates": [2.5062399860581337, 48.81497727135156]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c1be00f1ed66da34c34aa9272a72f8a07d4ac795", "fields": {"departement": "94", "stop_lat": 48.81505742534415, "code_postal": "94017", "stop_lon": 2.506757397808122, "coord": [48.81505742534415, 2.506757397808122], "stop_id": 3619449, "stop_desc": "43 RUE JEAN JAURES - 94017", "stop_name": "GUITTARD"}, "geometry": {"type": "Point", "coordinates": [2.506757397808122, 48.81505742534415]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d61aa8fb0cbf37b3353996fc5d4db441a96e9fdb", "fields": {"departement": "92", "stop_lat": 48.81087025018498, "code_postal": "92049", "stop_lon": 2.3116578390518523, "coord": [48.81087025018498, 2.3116578390518523], "stop_id": 3449483, "stop_desc": "ALL DE LA VALLIERE - 92049", "stop_name": "RESIDENCE MADELEINE VERDIER"}, "geometry": {"type": "Point", "coordinates": [2.3116578390518523, 48.81087025018498]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "51470fef6200c65f77a9ff9b36bc7c5c51e46dd8", "fields": {"departement": "93", "stop_lat": 48.88730743485663, "code_postal": "93053", "stop_lon": 2.4718874353184592, "coord": [48.88730743485663, 2.4718874353184592], "stop_id": 3450604, "stop_desc": "12 AVENUE DE ROSNY - 93053", "stop_name": "BREMENT - GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.4718874353184592, 48.88730743485663]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "84f8ef52838921cb48c36d0d30dd4c2a001628e5", "fields": {"departement": "92", "stop_lat": 48.81106625611549, "code_postal": "92020", "stop_lon": 2.304608718382989, "coord": [48.81106625611549, 2.304608718382989], "stop_id": 3449486, "stop_desc": "AVENUE MARX DORMOY - 92020", "stop_name": "CHATILLON-MONTROUGE-METRO."}, "geometry": {"type": "Point", "coordinates": [2.304608718382989, 48.81106625611549]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0fe60d7fe115bde1333c5e926ef666f8071b99cd", "fields": {"departement": "93", "stop_lat": 48.88063918583701, "code_postal": "93064", "stop_lon": 2.4937269266873483, "coord": [48.88063918583701, 2.4937269266873483], "stop_id": 3446799, "stop_desc": "FACE 132 AV DU PRESIDENT JOHN KENNEDY - 93064", "stop_name": "11 NOVEMBRE"}, "geometry": {"type": "Point", "coordinates": [2.4937269266873483, 48.88063918583701]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bc33365f4c3aedf8b0418020b0ad5b019926999f", "fields": {"departement": "92", "stop_lat": 48.80487085105687, "code_postal": "92023", "stop_lon": 2.2596974477375436, "coord": [48.80487085105687, 2.2596974477375436], "stop_id": 4458758, "stop_desc": "3 RUE PAUL VAILLANT COUTURIER - 92023", "stop_name": "MARQUIS"}, "geometry": {"type": "Point", "coordinates": [2.2596974477375436, 48.80487085105687]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9473c588b10e7c936d9cc76479d1d46e06aaf3f9", "fields": {"departement": "92", "stop_lat": 48.79789204298781, "code_postal": "92007", "stop_lon": 2.3125621464958934, "coord": [48.79789204298781, 2.3125621464958934], "stop_id": 4458772, "stop_desc": "44 RUE DES MEUNIERS - 92007", "stop_name": "LES IRIS"}, "geometry": {"type": "Point", "coordinates": [2.3125621464958934, 48.79789204298781]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0a9bd8b5cb35d05fc6b7d96ac5a2c2c3a4d0d4b9", "fields": {"departement": "94", "stop_lat": 48.794946528429556, "code_postal": "94016", "stop_lon": 2.3335952220745133, "coord": [48.794946528429556, 2.3335952220745133], "stop_id": 4458779, "stop_desc": "6-6 BIS RUE GALLIENI - 94016", "stop_name": "MAIRIE DE CACHAN"}, "geometry": {"type": "Point", "coordinates": [2.3335952220745133, 48.794946528429556]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "43bd6484571d784233c237804f3224c09561258d", "fields": {"departement": "94", "stop_lat": 48.79440577390818, "code_postal": "94076", "stop_lon": 2.3563816046728325, "coord": [48.79440577390818, 2.3563816046728325], "stop_id": 4458787, "stop_desc": "FACE 60 BOULEVARD PAUL VAILLANT COUTURIER - 94076", "stop_name": "VERDUN - GROSMENIL"}, "geometry": {"type": "Point", "coordinates": [2.3563816046728325, 48.79440577390818]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5a4fd649a47bb1bfeca2b4b5832866b7aed330ee", "fields": {"departement": "94", "stop_lat": 48.794765475569356, "code_postal": "94076", "stop_lon": 2.35518459553728, "coord": [48.794765475569356, 2.35518459553728], "stop_id": 4458797, "stop_desc": "FACE 119 AVENUE PAUL VAILLANT COUTURIER - 94076", "stop_name": "VERDUN - GROSMENIL"}, "geometry": {"type": "Point", "coordinates": [2.35518459553728, 48.794765475569356]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f7a2a00a8043a077770209c01dda35a2de22ed5d", "fields": {"departement": "94", "stop_lat": 48.795440395846, "code_postal": "94076", "stop_lon": 2.3483964031921007, "coord": [48.795440395846, 2.3483964031921007], "stop_id": 4458798, "stop_desc": "RUE CAMILLE DESMOULINS - 94076", "stop_name": "INSTITUT GUSTAVE ROUSSY - HAUTES BRUYERES"}, "geometry": {"type": "Point", "coordinates": [2.3483964031921007, 48.795440395846]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f12212386a86841e3ad2b7b9e34af9cf50a93c52", "fields": {"departement": "92", "stop_lat": 48.79701764965895, "code_postal": "92007", "stop_lon": 2.3023047897216844, "coord": [48.79701764965895, 2.3023047897216844], "stop_id": 4458811, "stop_desc": "AVENUE GABRIEL PERI - 92007", "stop_name": "ROSENBERG"}, "geometry": {"type": "Point", "coordinates": [2.3023047897216844, 48.79701764965895]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "741134de0c7c240ce1a3b27d5f4dba00069d4300", "fields": {"departement": "92", "stop_lat": 48.801091018443806, "code_postal": "92020", "stop_lon": 2.2832678956834442, "coord": [48.801091018443806, 2.2832678956834442], "stop_id": 4458818, "stop_desc": "FACE 27 RUE PIERRE BROSSOLETTE - 92020", "stop_name": "GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.2832678956834442, 48.801091018443806]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8f03b1cfc34e7ea6ba068e8de3dcd015142ff464", "fields": {"departement": "92", "stop_lat": 48.80120565130998, "code_postal": "92020", "stop_lon": 2.278601065075664, "coord": [48.80120565130998, 2.278601065075664], "stop_id": 4458819, "stop_desc": "70 BIS RUE PIERRE BROSSOLETTE - 92020", "stop_name": "JEANNE D'ARC"}, "geometry": {"type": "Point", "coordinates": [2.278601065075664, 48.80120565130998]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3d145d410932c5d6b8720dce65e948e340998812", "fields": {"departement": "92", "stop_lat": 48.80554418557914, "code_postal": "92023", "stop_lon": 2.258553478025072, "coord": [48.80554418557914, 2.258553478025072], "stop_id": 4458823, "stop_desc": "6-8 AVENUE ADOLPHE SCHNEIDER - 92023", "stop_name": "MARQUIS"}, "geometry": {"type": "Point", "coordinates": [2.258553478025072, 48.80554418557914]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "893466c672042177b6e53d8c50091fdfcda076bb", "fields": {"departement": "75", "stop_lat": 48.885451744264294, "code_postal": "75117", "stop_lon": 2.2923242136225292, "coord": [48.885451744264294, 2.2923242136225292], "stop_id": 4459235, "stop_desc": "135 AVENUE DE VILLIERS - 75117", "stop_name": "PORTE DE CHAMPERRET"}, "geometry": {"type": "Point", "coordinates": [2.2923242136225292, 48.885451744264294]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a9881e44a000e3346b03ed40a69140e0cc8da3bd", "fields": {"departement": "75", "stop_lat": 48.87576218699689, "code_postal": "75108", "stop_lon": 2.3236567975351456, "coord": [48.87576218699689, 2.3236567975351456], "stop_id": 4459239, "stop_desc": "17 RUE DE ROME - 75108", "stop_name": "GARE SAINT-LAZARE"}, "geometry": {"type": "Point", "coordinates": [2.3236567975351456, 48.87576218699689]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ae2a85ff9aed5a12ec5e3486056f73d2e2a98707", "fields": {"departement": "75", "stop_lat": 48.8733809275033, "code_postal": "75109", "stop_lon": 2.3274859090230406, "coord": [48.8733809275033, 2.3274859090230406], "stop_id": 4459241, "stop_desc": "19 RUE AUBER - 75109", "stop_name": "HAVRE - HAUSSMANN"}, "geometry": {"type": "Point", "coordinates": [2.3274859090230406, 48.8733809275033]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "79c5de6f411c312c7d339af8dbf807029221acf3", "fields": {"departement": "75", "stop_lat": 48.872033003523995, "code_postal": "75109", "stop_lon": 2.3298976383299848, "coord": [48.872033003523995, 2.3298976383299848], "stop_id": 4459242, "stop_desc": "FACE 8 RUE AUBER - 75109", "stop_name": "AUBER"}, "geometry": {"type": "Point", "coordinates": [2.3298976383299848, 48.872033003523995]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "571dc494a1cf268b5b5df4b4ba6175194d222219", "fields": {"departement": "75", "stop_lat": 48.85678114513896, "code_postal": "75104", "stop_lon": 2.348259761089279, "coord": [48.85678114513896, 2.348259761089279], "stop_id": 4459252, "stop_desc": "FACE 14 QUAI DE GESVRES - 75104", "stop_name": "CHATELET"}, "geometry": {"type": "Point", "coordinates": [2.348259761089279, 48.85678114513896]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ef4689442bc77489cca8dd439b89618e9fe2a58c", "fields": {"departement": "93", "stop_lat": 48.8617520482782, "code_postal": "93006", "stop_lon": 2.4168720919850277, "coord": [48.8617520482782, 2.4168720919850277], "stop_id": 4459275, "stop_desc": "50-52 AVENUE DE LA REPUBLIQUE - 93006", "stop_name": "GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.4168720919850277, 48.8617520482782]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8b78825b719c531069314ac1073d19e17859f896", "fields": {"departement": "94", "stop_lat": 48.851630632953096, "code_postal": "94058", "stop_lon": 2.511207701458485, "coord": [48.851630632953096, 2.511207701458485], "stop_id": 4459283, "stop_desc": "150-152 AVENUE DU 8 MAI 1945 - 94058", "stop_name": "LA MALTOURNEE"}, "geometry": {"type": "Point", "coordinates": [2.511207701458485, 48.851630632953096]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a58465adb7450777f7b582fa4963719592d0e992", "fields": {"departement": "75", "stop_lat": 48.84539937588007, "code_postal": "75112", "stop_lon": 2.3686422351772856, "coord": [48.84539937588007, 2.3686422351772856], "stop_id": 4471732, "stop_desc": "1 BOULEVARD DIDEROT - 75112", "stop_name": "PONT D'AUSTERLITZ - QUAI DE LA RAPEE"}, "geometry": {"type": "Point", "coordinates": [2.3686422351772856, 48.84539937588007]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "374982fcefb56071f060892f39a249ec684269d5", "fields": {"departement": "75", "stop_lat": 48.82142953789275, "code_postal": "75113", "stop_lon": 2.3682738555348872, "coord": [48.82142953789275, 2.3682738555348872], "stop_id": 4471741, "stop_desc": "82 BOULEVARD MASSENA - 75113", "stop_name": "PORTE D'IVRY-MASSENA"}, "geometry": {"type": "Point", "coordinates": [2.3682738555348872, 48.82142953789275]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2f9e84ad83b7fd7ed6a3eb32f12d0decd7810021", "fields": {"departement": "94", "stop_lat": 48.80391880828929, "code_postal": "94081", "stop_lon": 2.3769850194880426, "coord": [48.80391880828929, 2.3769850194880426], "stop_id": 4471747, "stop_desc": "FACE 140 BOULEVARD DE STALINGRAD - 94081", "stop_name": "CENTRE BUS DE VITRY"}, "geometry": {"type": "Point", "coordinates": [2.3769850194880426, 48.80391880828929]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5771416ead531fe5858aec19a588ad5f58af74a1", "fields": {"departement": "94", "stop_lat": 48.78288941619004, "code_postal": "94081", "stop_lon": 2.3936162801973566, "coord": [48.78288941619004, 2.3936162801973566], "stop_id": 4471754, "stop_desc": "FACE AU 167 AVENUE YOURI GAGARINE - 94081", "stop_name": "CONSTANT COQUELIN"}, "geometry": {"type": "Point", "coordinates": [2.3936162801973566, 48.78288941619004]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9a822ef82a847129c23c1a34e930ec5d0d7c1a20", "fields": {"departement": "94", "stop_lat": 48.75593384837047, "code_postal": "94022", "stop_lon": 2.410755915003695, "coord": [48.75593384837047, 2.410755915003695], "stop_id": 4471762, "stop_desc": "20 AVENUE DE NEWBURN - 94022", "stop_name": "LAMARTINE"}, "geometry": {"type": "Point", "coordinates": [2.410755915003695, 48.75593384837047]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c4f8c6e462c1aae73f5a76fb8f3958fa5c0c53a9", "fields": {"departement": "94", "stop_lat": 48.74701405136239, "code_postal": "94054", "stop_lon": 2.4162342230163825, "coord": [48.74701405136239, 2.4162342230163825], "stop_id": 4471765, "stop_desc": "FACE 4 RUE JEAN MERMOZ - 94054", "stop_name": "LES SAULES RER"}, "geometry": {"type": "Point", "coordinates": [2.4162342230163825, 48.74701405136239]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4ada546bc79abcdf74d5aacd0e76bde13946cfb9", "fields": {"departement": "94", "stop_lat": 48.743536109563614, "code_postal": "94054", "stop_lon": 2.4003552574833615, "coord": [48.743536109563614, 2.4003552574833615], "stop_id": 4471768, "stop_desc": "FACE 9 RUE DU COMMERCE - 94054", "stop_name": "MAIRIE D'ORLY"}, "geometry": {"type": "Point", "coordinates": [2.4003552574833615, 48.743536109563614]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2acde727d4f8f3a1585e732892f2c45bb3b3d810", "fields": {"departement": "94", "stop_lat": 48.7564541376577, "code_postal": "94073", "stop_lon": 2.374297927820151, "coord": [48.7564541376577, 2.374297927820151], "stop_id": 4471777, "stop_desc": "AVENUE DU LUXEMBOURG - 94073", "stop_name": "LA BELLE EPINE"}, "geometry": {"type": "Point", "coordinates": [2.374297927820151, 48.7564541376577]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b9b9dda35b5e961efba200673c812f0db45bf5a1", "fields": {"departement": "94", "stop_lat": 48.759647325903956, "code_postal": "94021", "stop_lon": 2.3655724136005585, "coord": [48.759647325903956, 2.3655724136005585], "stop_id": 4471779, "stop_desc": "RUE DE THIAIS - 94021", "stop_name": "PORTE DE THIAIS"}, "geometry": {"type": "Point", "coordinates": [2.3655724136005585, 48.759647325903956]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "430cb5d378d75aa2753c2f401c001592732c85be", "fields": {"departement": "94", "stop_lat": 48.75100890711198, "code_postal": "94065", "stop_lon": 2.368748335111457, "coord": [48.75100890711198, 2.368748335111457], "stop_id": 4471781, "stop_desc": "ROUTE DEPARTEMENTALE 7 - 94065", "stop_name": "S.E.N.I.A."}, "geometry": {"type": "Point", "coordinates": [2.368748335111457, 48.75100890711198]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ac70af36a9fdca3a446ffff231b5575f7367cd36", "fields": {"departement": "94", "stop_lat": 48.734946454964906, "code_postal": "94054", "stop_lon": 2.3704371330916256, "coord": [48.734946454964906, 2.3704371330916256], "stop_id": 4471785, "stop_desc": "AVENUE DE L'UNION - 94054", "stop_name": "COEUR D'ORLY"}, "geometry": {"type": "Point", "coordinates": [2.3704371330916256, 48.734946454964906]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "039990028728d99cdd23f09523373775c4594ab2", "fields": {"departement": "91", "stop_lat": 48.74359458544199, "code_postal": "91479", "stop_lon": 2.3649113242053637, "coord": [48.74359458544199, 2.3649113242053637], "stop_id": 4471790, "stop_desc": "ROUTE NUMERO 5 - 91479", "stop_name": "HANGAR N 6"}, "geometry": {"type": "Point", "coordinates": [2.3649113242053637, 48.74359458544199]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9e8b5826a148bd12e489fcbcfc75774c2b4f455f", "fields": {"departement": "94", "stop_lat": 48.74663144489944, "code_postal": "94073", "stop_lon": 2.3695203858416476, "coord": [48.74663144489944, 2.3695203858416476], "stop_id": 4471791, "stop_desc": "ROUTE DE FONTAINEBLEAU (EX RN7) - 94073", "stop_name": "PONT DE RUNGIS-RER"}, "geometry": {"type": "Point", "coordinates": [2.3695203858416476, 48.74663144489944]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4f4534e638bcb45322e90de921f8c98b89a674d2", "fields": {"departement": "94", "stop_lat": 48.755026562472345, "code_postal": "94073", "stop_lon": 2.3689682656989417, "coord": [48.755026562472345, 2.3689682656989417], "stop_id": 4471793, "stop_desc": "AVENUE DE FONTAINEBLEAU - 94073", "stop_name": "BELLE EPINE SUD"}, "geometry": {"type": "Point", "coordinates": [2.3689682656989417, 48.755026562472345]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6b01073f0e94441f91548b4bb98650563b6e8f89", "fields": {"departement": "94", "stop_lat": 48.75201808660674, "code_postal": "94073", "stop_lon": 2.3875884213723615, "coord": [48.75201808660674, 2.3875884213723615], "stop_id": 4471799, "stop_desc": "FACE 12 RUE DU BAS MARIN - 94073", "stop_name": "CENTRE BUS DE THIAIS"}, "geometry": {"type": "Point", "coordinates": [2.3875884213723615, 48.75201808660674]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f6cd920b8faa9f289628d1e78019d15bdd4e6254", "fields": {"departement": "94", "stop_lat": 48.74445276475228, "code_postal": "94054", "stop_lon": 2.400628184652632, "coord": [48.74445276475228, 2.400628184652632], "stop_id": 4471805, "stop_desc": "13-15 RUE PAUL VAILLANT COUTURIER - 94054", "stop_name": "MAIRIE D'ORLY"}, "geometry": {"type": "Point", "coordinates": [2.400628184652632, 48.74445276475228]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5c7b963588493222facdbe8e7b353b836ade4786", "fields": {"departement": "94", "stop_lat": 48.74698680598638, "code_postal": "94054", "stop_lon": 2.416655514518507, "coord": [48.74698680598638, 2.416655514518507], "stop_id": 4471808, "stop_desc": "4 RUE JEAN MERMOZ - 94054", "stop_name": "LES SAULES RER"}, "geometry": {"type": "Point", "coordinates": [2.416655514518507, 48.74698680598638]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8937c1e01c6bfab5dfb62e4c57d19aa93a135b6a", "fields": {"departement": "94", "stop_lat": 48.75617635151201, "code_postal": "94022", "stop_lon": 2.411041727509464, "coord": [48.75617635151201, 2.411041727509464], "stop_id": 4471811, "stop_desc": "FACE 22-24 AVENUE DE NEWBURN - 94022", "stop_name": "LAMARTINE"}, "geometry": {"type": "Point", "coordinates": [2.411041727509464, 48.75617635151201]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "36e21e79b6b745028eb32e9d084c6e6e6aeff2a4", "fields": {"departement": "94", "stop_lat": 48.76512298112146, "code_postal": "94022", "stop_lon": 2.4052624830228733, "coord": [48.76512298112146, 2.4052624830228733], "stop_id": 4471814, "stop_desc": "BOULEVARD DES ALLIES - 94022", "stop_name": "ROUGET DE LISLE"}, "geometry": {"type": "Point", "coordinates": [2.4052624830228733, 48.76512298112146]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0134e362cda7414a09fdb47e1fb62475e1c3ef0c", "fields": {"departement": "75", "stop_lat": 48.831651002586945, "code_postal": "75113", "stop_lon": 2.3563817211355413, "coord": [48.831651002586945, 2.3563817211355413], "stop_id": 4471839, "stop_desc": "9 PLACE D'ITALIE - 75113", "stop_name": "PLACE D'ITALIE"}, "geometry": {"type": "Point", "coordinates": [2.3563817211355413, 48.831651002586945]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b454a18be665fcd99d199fe2c9808cd4089df064", "fields": {"departement": "92", "stop_lat": 48.89652359969501, "code_postal": "92050", "stop_lon": 2.214947321784785, "coord": [48.89652359969501, 2.214947321784785], "stop_id": 4472491, "stop_desc": "BOULEVARD JACQUES GERMAIN SOUFFLOT - 92050", "stop_name": "PREFECTURE DES HAUTS-DE-SEINE"}, "geometry": {"type": "Point", "coordinates": [2.214947321784785, 48.89652359969501]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d6f12f063ec2190e349d517f09ba810da5eb6424", "fields": {"departement": "92", "stop_lat": 48.89284340529102, "code_postal": "92050", "stop_lon": 2.2106899287691784, "coord": [48.89284340529102, 2.2106899287691784], "stop_id": 4472495, "stop_desc": "136 AVENUE FREDERIC ET IRENE JOLIOT CURIE - 92050", "stop_name": "PALAIS DES SPORTS"}, "geometry": {"type": "Point", "coordinates": [2.2106899287691784, 48.89284340529102]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "627706681c8479b78750b6cfdfe0ddcd859919c3", "fields": {"departement": "92", "stop_lat": 48.89146575447876, "code_postal": "92050", "stop_lon": 2.2082536517344415, "coord": [48.89146575447876, 2.2082536517344415], "stop_id": 4472497, "stop_desc": "96 AVENUE FREDERIC ET IRENE JOLIOT CURIE - 92050", "stop_name": "MAIRIE DE NANTERRE"}, "geometry": {"type": "Point", "coordinates": [2.2082536517344415, 48.89146575447876]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1ea5e3737f57818fbc7e6e039ede9ecdea1836fe", "fields": {"departement": "92", "stop_lat": 48.88535795431683, "code_postal": "92050", "stop_lon": 2.1955133465880006, "coord": [48.88535795431683, 2.1955133465880006], "stop_id": 4472501, "stop_desc": "30 AVENUE DU MARECHAL JOFFRE - 92050", "stop_name": "SAINTE-GENEVIEVE"}, "geometry": {"type": "Point", "coordinates": [2.1955133465880006, 48.88535795431683]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b0f942c8be5bf4a6e12be1dd42837d7a39f2720f", "fields": {"departement": "92", "stop_lat": 48.88279774489227, "code_postal": "92063", "stop_lon": 2.1890747728507938, "coord": [48.88279774489227, 2.1890747728507938], "stop_id": 4472505, "stop_desc": "FACE 46 AVENUE PAUL DOUMER - 92063", "stop_name": "GABRIEL PERI"}, "geometry": {"type": "Point", "coordinates": [2.1890747728507938, 48.88279774489227]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d83dc8443c3b65af4baf606224423bf7c292143e", "fields": {"departement": "92", "stop_lat": 48.87613345804333, "code_postal": "92063", "stop_lon": 2.185333249683665, "coord": [48.87613345804333, 2.185333249683665], "stop_id": 4472508, "stop_desc": "BOULEVARD SOLFERINO - 92063", "stop_name": "HOPITAL STELL"}, "geometry": {"type": "Point", "coordinates": [2.185333249683665, 48.87613345804333]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c95f055a5793085e8d131f52eccd8b49cc8a5e94", "fields": {"departement": "92", "stop_lat": 48.8764221765901, "code_postal": "92063", "stop_lon": 2.1862180502913104, "coord": [48.8764221765901, 2.1862180502913104], "stop_id": 4472509, "stop_desc": "FACE 46BIS BOULEVARD DE L'HOPITAL STELL - 92063", "stop_name": "HOPITAL STELL"}, "geometry": {"type": "Point", "coordinates": [2.1862180502913104, 48.8764221765901]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "62fd523d7b0ade129c450516f1f896544cb77f11", "fields": {"departement": "92", "stop_lat": 48.86786647303717, "code_postal": "92063", "stop_lon": 2.19368117495212, "coord": [48.86786647303717, 2.19368117495212], "stop_id": 4472516, "stop_desc": "66 AVENUE DU 18 JUIN 1940 - 92063", "stop_name": "DUNANT"}, "geometry": {"type": "Point", "coordinates": [2.19368117495212, 48.86786647303717]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bccadc11dbe64fe1b47230be632213ddcd4b611c", "fields": {"departement": "92", "stop_lat": 48.86371353049643, "code_postal": "92073", "stop_lon": 2.2087449708660327, "coord": [48.86371353049643, 2.2087449708660327], "stop_id": 4472521, "stop_desc": "23 AVENUE JEAN JAURES - 92073", "stop_name": "PLACE JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.2087449708660327, 48.86371353049643]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7be8189445b7a7f27ffc9627bc751ad7c4e05870", "fields": {"departement": "92", "stop_lat": 48.86184828083935, "code_postal": "92073", "stop_lon": 2.2126317195091785, "coord": [48.86184828083935, 2.2126317195091785], "stop_id": 4472524, "stop_desc": "30 CARREFOUR DE LA CROIX DU ROY - 92073", "stop_name": "CROIX DU ROY"}, "geometry": {"type": "Point", "coordinates": [2.2126317195091785, 48.86184828083935]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6ae26d9bc3860a835fc1e73c8ea17ea6cdc685b4", "fields": {"departement": "92", "stop_lat": 48.86676403817079, "code_postal": "92073", "stop_lon": 2.2211886377715, "coord": [48.86676403817079, 2.2211886377715], "stop_id": 4472529, "stop_desc": "57 BOULEVARD HENRI SELLIER - 92073", "stop_name": "LONGCHAMP"}, "geometry": {"type": "Point", "coordinates": [2.2211886377715, 48.86676403817079]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c102e5f6acf770aaa0efd9d7cbee093d6ee2018a", "fields": {"departement": "75", "stop_lat": 48.85809485412893, "code_postal": "75116", "stop_lon": 2.2737286949180775, "coord": [48.85809485412893, 2.2737286949180775], "stop_id": 4472537, "stop_desc": "11 CHAUSSEE DE LA MUETTE - 75116", "stop_name": "LA MUETTE - BOULAINVILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.2737286949180775, 48.85809485412893]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aba6c1aa56bc3ad6243084af5f6ce806304657dc", "fields": {"departement": "75", "stop_lat": 48.864096307085475, "code_postal": "75116", "stop_lon": 2.288242472786513, "coord": [48.864096307085475, 2.288242472786513], "stop_id": 4472543, "stop_desc": "93 AVENUE KLEBER - 75116", "stop_name": "TROCADERO"}, "geometry": {"type": "Point", "coordinates": [2.288242472786513, 48.864096307085475]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a8514860a08ade161c789af3d6828fe1e4b75ca8", "fields": {"departement": "75", "stop_lat": 48.87379677721912, "code_postal": "75108", "stop_lon": 2.2965443212582546, "coord": [48.87379677721912, 2.2965443212582546], "stop_id": 4472549, "stop_desc": "47 AVENUE DE FRIEDLAND - 75108", "stop_name": "CHARLES DE GAULLE - ETOILE - FRIEDLAND"}, "geometry": {"type": "Point", "coordinates": [2.2965443212582546, 48.87379677721912]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1a08141d7069a75e1987879b9f2bd5260ef96878", "fields": {"departement": "75", "stop_lat": 48.87442766603857, "code_postal": "75108", "stop_lon": 2.30212998791386, "coord": [48.87442766603857, 2.30212998791386], "stop_id": 4472551, "stop_desc": "21 AVENUE DE FRIEDLAND - 75108", "stop_name": "BALZAC"}, "geometry": {"type": "Point", "coordinates": [2.30212998791386, 48.87442766603857]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "103116f1ae3e6f53865e831433014e532707144d", "fields": {"departement": "75", "stop_lat": 48.87493294387232, "code_postal": "75108", "stop_lon": 2.3096914749426154, "coord": [48.87493294387232, 2.3096914749426154], "stop_id": 4472553, "stop_desc": "153 BOULEVARD HAUSSMANN - 75108", "stop_name": "HAUSSMANN - COURCELLES"}, "geometry": {"type": "Point", "coordinates": [2.3096914749426154, 48.87493294387232]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0be465e9d8a7917e3fa84bf5aebc399dc62ecd6f", "fields": {"departement": "75", "stop_lat": 48.874261363183884, "code_postal": "75108", "stop_lon": 2.324147681777442, "coord": [48.874261363183884, 2.324147681777442], "stop_id": 4472561, "stop_desc": "86 BOULEVARD HAUSSMANN - 75108", "stop_name": "PASQUIER - ANJOU"}, "geometry": {"type": "Point", "coordinates": [2.324147681777442, 48.874261363183884]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a1d52c352631c7bc8c7484c7de66487e67ad9be3", "fields": {"departement": "92", "stop_lat": 48.8876927900033, "code_postal": "92050", "stop_lon": 2.2016533213360185, "coord": [48.8876927900033, 2.2016533213360185], "stop_id": 4472564, "stop_desc": "6 AVENUE FREDERIC ET IRENE JOLIOT CURIE - 92050", "stop_name": "PLACE DE LA BOULE - JOLIOT CURIE"}, "geometry": {"type": "Point", "coordinates": [2.2016533213360185, 48.8876927900033]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0235bc283b106402762ea6b86d4997355d0c6c34", "fields": {"departement": "92", "stop_lat": 48.8233845677694, "code_postal": "92040", "stop_lon": 2.2730497773110696, "coord": [48.8233845677694, 2.2730497773110696], "stop_id": 4472615, "stop_desc": "6 RUE AUGUSTE GERVAIS - 92040", "stop_name": "A. GERVAIS - MAIRIE"}, "geometry": {"type": "Point", "coordinates": [2.2730497773110696, 48.8233845677694]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0c535eec2278fc86ae34d8cf002004a81f88e0f9", "fields": {"departement": "92", "stop_lat": 48.817724038152285, "code_postal": "92040", "stop_lon": 2.260753425397164, "coord": [48.817724038152285, 2.260753425397164], "stop_id": 4472620, "stop_desc": "FACE 53 RUE D'EREVAN - 92040", "stop_name": "EPINETTES"}, "geometry": {"type": "Point", "coordinates": [2.260753425397164, 48.817724038152285]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "020df048ae07c43a8feb60808ab6076a1e5f3998", "fields": {"departement": "92", "stop_lat": 48.82130731814005, "code_postal": "92040", "stop_lon": 2.271051552953398, "coord": [48.82130731814005, 2.271051552953398], "stop_id": 4472626, "stop_desc": "5 RUE MAXIMILIEN ROBESPIERRE - 92040", "stop_name": "ROBESPIERRE."}, "geometry": {"type": "Point", "coordinates": [2.271051552953398, 48.82130731814005]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a83728526068f9dc1fbf088ea738c2664e88fa0d", "fields": {"departement": "92", "stop_lat": 48.82240392110854, "code_postal": "92040", "stop_lon": 2.271240710012906, "coord": [48.82240392110854, 2.271240710012906], "stop_id": 4472627, "stop_desc": "FACE 24-26 RUE ANDRE CHENIER - 92040", "stop_name": "ANDRE CHENIER"}, "geometry": {"type": "Point", "coordinates": [2.271240710012906, 48.82240392110854]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "20dfa31dc400d33c54f5f50c5145964ff359f747", "fields": {"departement": "95", "stop_lat": 48.92333364375808, "code_postal": "95063", "stop_lon": 2.20801063048684, "coord": [48.92333364375808, 2.20801063048684], "stop_id": 4472630, "stop_desc": "PLACE DU GRAND CERF - 95063", "stop_name": "GRAND CERF"}, "geometry": {"type": "Point", "coordinates": [2.20801063048684, 48.92333364375808]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "73c7beeb6f4603ad5b875b92cc174023bf06d0a9", "fields": {"departement": "95", "stop_lat": 48.925367901149954, "code_postal": "95063", "stop_lon": 2.211005958642109, "coord": [48.925367901149954, 2.211005958642109], "stop_id": 4472632, "stop_desc": "FACE 109 RUE EDOUARD VAILLANT - 95063", "stop_name": "HENRI BARBUSSE"}, "geometry": {"type": "Point", "coordinates": [2.211005958642109, 48.925367901149954]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "98f45c805d0dc9afc847a75cf307e1d482b65646", "fields": {"departement": "95", "stop_lat": 48.92532257626675, "code_postal": "95063", "stop_lon": 2.210637838002561, "coord": [48.92532257626675, 2.210637838002561], "stop_id": 4472633, "stop_desc": "122 RUE EDOUARD VAILLANT - 95063", "stop_name": "HENRI BARBUSSE"}, "geometry": {"type": "Point", "coordinates": [2.210637838002561, 48.92532257626675]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "14ae74aeab20b1feb330244b148db922e2394673", "fields": {"departement": "92", "stop_lat": 48.91127047277405, "code_postal": "92025", "stop_lon": 2.232855492651058, "coord": [48.91127047277405, 2.232855492651058], "stop_id": 4472642, "stop_desc": "79-83 BD CHARLES DE GAULLE - 92025", "stop_name": "BUFFON"}, "geometry": {"type": "Point", "coordinates": [2.232855492651058, 48.91127047277405]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5d1c99353b50b405c135be9b2de98e4117be3ee6", "fields": {"departement": "92", "stop_lat": 48.90592820498449, "code_postal": "92035", "stop_lon": 2.238769379821047, "coord": [48.90592820498449, 2.238769379821047], "stop_id": 4472646, "stop_desc": "BD NATIONAL - 92035", "stop_name": "LA GARENNE-COLOMBES - CHARLEBOURG"}, "geometry": {"type": "Point", "coordinates": [2.238769379821047, 48.90592820498449]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6d95e01b47a202b1cf97bc7958b41f33c41bbeb4", "fields": {"departement": "92", "stop_lat": 48.90250480211311, "code_postal": "92026", "stop_lon": 2.2395938170992964, "coord": [48.90250480211311, 2.2395938170992964], "stop_id": 4472651, "stop_desc": "94 BD DE LA MISSION MARCHAND - 92026", "stop_name": "LES FAUVELLES"}, "geometry": {"type": "Point", "coordinates": [2.2395938170992964, 48.90250480211311]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2cad337a9b301439696c3d64541756c07e0787ff", "fields": {"departement": "92", "stop_lat": 48.8996110567207, "code_postal": "92026", "stop_lon": 2.2397219534481287, "coord": [48.8996110567207, 2.2397219534481287], "stop_id": 4472652, "stop_desc": "FACE 64-66 BD DE LA MISSION MARCHAND - 92026", "stop_name": "DIEPPE"}, "geometry": {"type": "Point", "coordinates": [2.2397219534481287, 48.8996110567207]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "45e37bb18f56bf70134227f14c8d104744ed870c", "fields": {"departement": "92", "stop_lat": 48.8967714050638, "code_postal": "92026", "stop_lon": 2.24006806449667, "coord": [48.8967714050638, 2.24006806449667], "stop_id": 4472654, "stop_desc": "FACE 24 BOULEVARD DE LA MISSION MARCHAND - 92026", "stop_name": "FAUBOURG DE L'ARCHE"}, "geometry": {"type": "Point", "coordinates": [2.24006806449667, 48.8967714050638]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f8974a26c8d518a9a9ae00d61bc7594806b90160", "fields": {"departement": "92", "stop_lat": 48.89682561624369, "code_postal": "92026", "stop_lon": 2.240422360584157, "coord": [48.89682561624369, 2.240422360584157], "stop_id": 4472655, "stop_desc": "24 BOULEVARD DE LA MISSION MARCHAND - 92026", "stop_name": "FAUBOURG DE L'ARCHE"}, "geometry": {"type": "Point", "coordinates": [2.240422360584157, 48.89682561624369]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f5ad651ff694e455533d9ad0cdc130caf4830bf7", "fields": {"departement": "92", "stop_lat": 48.891361317918545, "code_postal": "92062", "stop_lon": 2.240296277187438, "coord": [48.891361317918545, 2.240296277187438], "stop_id": 4472658, "stop_desc": "VOI PERRONET NORD - 92062", "stop_name": "LA DEFENSE-METRO-RER-TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.240296277187438, 48.891361317918545]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1a574d3fee3b34b34fd550c7667f3d8b18faa964", "fields": {"departement": "92", "stop_lat": 48.886657892619546, "code_postal": "92062", "stop_lon": 2.2478004797854343, "coord": [48.886657892619546, 2.2478004797854343], "stop_id": 4472662, "stop_desc": "RUE DE LA REPUBLIQUE - 92062", "stop_name": "BELLINI"}, "geometry": {"type": "Point", "coordinates": [2.2478004797854343, 48.886657892619546]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "443cba6b8db37a822693d51f9c8603b10cecb1a0", "fields": {"departement": "92", "stop_lat": 48.88462644850585, "code_postal": "92051", "stop_lon": 2.2601913576941075, "coord": [48.88462644850585, 2.2601913576941075], "stop_id": 4472664, "stop_desc": "201 AVENUE CHARLES DE GAULLE - 92051", "stop_name": "PONT DE NEUILLY-METRO"}, "geometry": {"type": "Point", "coordinates": [2.2601913576941075, 48.88462644850585]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dce331d6cf883cb2c118759af035de17bf778df0", "fields": {"departement": "92", "stop_lat": 48.88056374397198, "code_postal": "92051", "stop_lon": 2.2747367679822643, "coord": [48.88056374397198, 2.2747367679822643], "stop_id": 4472673, "stop_desc": "44 AVENUE CHARLES DE GAULLE - 92051", "stop_name": "MARCHE DE NEUILLY-SUR-SEINE"}, "geometry": {"type": "Point", "coordinates": [2.2747367679822643, 48.88056374397198]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bfab6d3174d3c50cfbd72b220cca1cc6cb6142ef", "fields": {"departement": "75", "stop_lat": 48.87797775885424, "code_postal": "75116", "stop_lon": 2.2793862572396137, "coord": [48.87797775885424, 2.2793862572396137], "stop_id": 4472674, "stop_desc": "RUE JOSEPH ET MARIE HACKIN - 75116", "stop_name": "ANDRE MAUROIS"}, "geometry": {"type": "Point", "coordinates": [2.2793862572396137, 48.87797775885424]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1e61e618b736d7f40b636abe431c82ab185ec82c", "fields": {"departement": "75", "stop_lat": 48.87841558644444, "code_postal": "75117", "stop_lon": 2.2946603292390058, "coord": [48.87841558644444, 2.2946603292390058], "stop_id": 4472678, "stop_desc": "29-31 AV DES TERNES - 75117", "stop_name": "TERNES - MAC MAHON"}, "geometry": {"type": "Point", "coordinates": [2.2946603292390058, 48.87841558644444]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ec18644799f2f7c270e37c299b074c431c250352", "fields": {"departement": "75", "stop_lat": 48.87697969338554, "code_postal": "75108", "stop_lon": 2.300915593355041, "coord": [48.87697969338554, 2.300915593355041], "stop_id": 4472682, "stop_desc": "254 RUE DU FAUBOURG SAINT-HONORE - 75108", "stop_name": "HOCHE - SAINT-HONORE"}, "geometry": {"type": "Point", "coordinates": [2.300915593355041, 48.87697969338554]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "366f2b44c62c793881e59e22017395616da9bea3", "fields": {"departement": "75", "stop_lat": 48.87493294387232, "code_postal": "75108", "stop_lon": 2.3096914749426154, "coord": [48.87493294387232, 2.3096914749426154], "stop_id": 4472683, "stop_desc": "153 BOULEVARD HAUSSMANN - 75108", "stop_name": "HAUSSMANN - COURCELLES"}, "geometry": {"type": "Point", "coordinates": [2.3096914749426154, 48.87493294387232]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e9f7abd46656989fb2c9b92882f867eafbac1dfe", "fields": {"departement": "75", "stop_lat": 48.87529316389243, "code_postal": "75108", "stop_lon": 2.3130430364059853, "coord": [48.87529316389243, 2.3130430364059853], "stop_id": 4472686, "stop_desc": "142 BOULEVARD HAUSSMANN - 75108", "stop_name": "HAUSSMANN - MIROMESNIL"}, "geometry": {"type": "Point", "coordinates": [2.3130430364059853, 48.87529316389243]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "abf0320da29f2aca2cbcdef545ad7a8ca318f137", "fields": {"departement": "75", "stop_lat": 48.875048935083306, "code_postal": "75108", "stop_lon": 2.3062579263665284, "coord": [48.875048935083306, 2.3062579263665284], "stop_id": 4472693, "stop_desc": "190 BOULEVARD HAUSSMANN - 75108", "stop_name": "FRIEDLAND - HAUSSMANN"}, "geometry": {"type": "Point", "coordinates": [2.3062579263665284, 48.875048935083306]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fa57a636eb350df195eb8bfeb3c61be5578b7501", "fields": {"departement": "95", "stop_lat": 48.97217114640024, "code_postal": "95210", "stop_lon": 2.3077559091969886, "coord": [48.97217114640024, 2.3077559091969886], "stop_id": 4472702, "stop_desc": "FACE 3 RUE DE L'ARRIVEE - 95210", "stop_name": "GARE D'ENGHIEN-LES-BAINS"}, "geometry": {"type": "Point", "coordinates": [2.3077559091969886, 48.97217114640024]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "46e6b3c6f8fa84c66fc85201db8fe8c2a55b49ea", "fields": {"departement": "93", "stop_lat": 48.965393060143406, "code_postal": "93031", "stop_lon": 2.2999253999120457, "coord": [48.965393060143406, 2.2999253999120457], "stop_id": 4472706, "stop_desc": "FACE 7 AVENUE GALLIENI - 93031", "stop_name": "LIMITE DES DEPARTEMENTS"}, "geometry": {"type": "Point", "coordinates": [2.2999253999120457, 48.965393060143406]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6ac8eea161b930edfa682ce997e5ff19122d91b7", "fields": {"departement": "93", "stop_lat": 48.96539316212714, "code_postal": "93031", "stop_lon": 2.3002529694434806, "coord": [48.96539316212714, 2.3002529694434806], "stop_id": 4472707, "stop_desc": "7 AVENUE GALLIENI - 93031", "stop_name": "LIMITE DES DEPARTEMENTS"}, "geometry": {"type": "Point", "coordinates": [2.3002529694434806, 48.96539316212714]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b4e9d700a4a2b3b46b7ad1d88261bca430eaf555", "fields": {"departement": "93", "stop_lat": 48.96339730303593, "code_postal": "93031", "stop_lon": 2.2976748852355953, "coord": [48.96339730303593, 2.2976748852355953], "stop_id": 4472709, "stop_desc": "41 AVENUE GALLIENI - 93031", "stop_name": "RUE DE SAINT-GRATIEN"}, "geometry": {"type": "Point", "coordinates": [2.2976748852355953, 48.96339730303593]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5a342c143b7ae22fe04592cf6eb5bdabc36a2e68", "fields": {"departement": "93", "stop_lat": 48.959660557098054, "code_postal": "93031", "stop_lon": 2.303191220399641, "coord": [48.959660557098054, 2.303191220399641], "stop_id": 4472715, "stop_desc": "AVENUE DE LATTRE DE TASSIGNY - 93031", "stop_name": "PLACE FITZELIN"}, "geometry": {"type": "Point", "coordinates": [2.303191220399641, 48.959660557098054]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "95ee6598b0c1e8fc926c61eb34d8176e74f7cfac", "fields": {"departement": "93", "stop_lat": 48.951945842568705, "code_postal": "93031", "stop_lon": 2.3381962011376425, "coord": [48.951945842568705, 2.3381962011376425], "stop_id": 4472726, "stop_desc": "115 ROUTE DE SAINT-LEU - 93031", "stop_name": "76 ROUTE DE SAINT-LEU"}, "geometry": {"type": "Point", "coordinates": [2.3381962011376425, 48.951945842568705]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6520bee8c4b30e46edcc607c91aef46a07289af4", "fields": {"departement": "93", "stop_lat": 48.93611102433381, "code_postal": "93066", "stop_lon": 2.3423291401973225, "coord": [48.93611102433381, 2.3423291401973225], "stop_id": 4472729, "stop_desc": "QUAI DE SEINE - 93066", "stop_name": "RUE DU PORT"}, "geometry": {"type": "Point", "coordinates": [2.3423291401973225, 48.93611102433381]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6b76a7ffac5dc78d01b9b641a120bea9bf6ffc87", "fields": {"departement": "93", "stop_lat": 48.9366502179917, "code_postal": "93066", "stop_lon": 2.342711145405582, "coord": [48.9366502179917, 2.342711145405582], "stop_id": 4472730, "stop_desc": "QUAI DE SEINE - 93066", "stop_name": "RUE DU PORT"}, "geometry": {"type": "Point", "coordinates": [2.342711145405582, 48.9366502179917]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "22a1c700405794ca51deb977233927d18ee6965f", "fields": {"departement": "93", "stop_lat": 48.93585947215788, "code_postal": "93039", "stop_lon": 2.3398601040576192, "coord": [48.93585947215788, 2.3398601040576192], "stop_id": 4472731, "stop_desc": "R MECHIN - 93039", "stop_name": "L'ILE SAINT-DENIS"}, "geometry": {"type": "Point", "coordinates": [2.3398601040576192, 48.93585947215788]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9f5712334035b74f25dd077e4374477bb328b61d", "fields": {"departement": "92", "stop_lat": 48.93472662034221, "code_postal": "92078", "stop_lon": 2.325932944395314, "coord": [48.93472662034221, 2.325932944395314], "stop_id": 4472734, "stop_desc": "AVENUE DE VERDUN - 92078", "stop_name": "LA NOUE"}, "geometry": {"type": "Point", "coordinates": [2.325932944395314, 48.93472662034221]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3fdcc33da7e0f9b5517ae260f11daf589636cb7c", "fields": {"departement": "92", "stop_lat": 48.90722193611381, "code_postal": "92024", "stop_lon": 2.302271357586615, "coord": [48.90722193611381, 2.302271357586615], "stop_id": 4472757, "stop_desc": "136 RUE MARTRE - 92024", "stop_name": "LEON BLUM"}, "geometry": {"type": "Point", "coordinates": [2.302271357586615, 48.90722193611381]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cf082469d29b08b64c5acd4094e11a83ee3af1b7", "fields": {"departement": "75", "stop_lat": 48.888325096155334, "code_postal": "75117", "stop_lon": 2.315217499247105, "coord": [48.888325096155334, 2.315217499247105], "stop_id": 4472767, "stop_desc": "145 RUE CARDINET - 75117", "stop_name": "PONT CARDINET"}, "geometry": {"type": "Point", "coordinates": [2.315217499247105, 48.888325096155334]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "78d9e027b4c6fb1d744ce7fc03f89b5e589ab2db", "fields": {"departement": "75", "stop_lat": 48.885853829405114, "code_postal": "75117", "stop_lon": 2.316417795175151, "coord": [48.885853829405114, 2.316417795175151], "stop_id": 4472768, "stop_desc": "135-137 BIS R DE ROME - 75117", "stop_name": "LEGENDRE"}, "geometry": {"type": "Point", "coordinates": [2.316417795175151, 48.885853829405114]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "383a5e5748c44c87e38b31b190720422015f62b1", "fields": {"departement": "75", "stop_lat": 48.88257403130455, "code_postal": "75117", "stop_lon": 2.319784964052478, "coord": [48.88257403130455, 2.319784964052478], "stop_id": 4472770, "stop_desc": "77 R DE ROME - 75117", "stop_name": "ROME - BATIGNOLLES"}, "geometry": {"type": "Point", "coordinates": [2.319784964052478, 48.88257403130455]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "607aba7f75e64561df1425f8beec30c66d84e057", "fields": {"departement": "75", "stop_lat": 48.879033381813336, "code_postal": "75108", "stop_lon": 2.322197958167492, "coord": [48.879033381813336, 2.322197958167492], "stop_id": 4472772, "stop_desc": "52 RUE DE ROME - 75108", "stop_name": "EUROPE"}, "geometry": {"type": "Point", "coordinates": [2.322197958167492, 48.879033381813336]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9df37e24df1ff89b47f910053ad73a5ac7010e14", "fields": {"departement": "75", "stop_lat": 48.8816125433002, "code_postal": "75108", "stop_lon": 2.3208209151721744, "coord": [48.8816125433002, 2.3208209151721744], "stop_id": 4472775, "stop_desc": "FACE 73 R DE ROME - 75108", "stop_name": "ROME - BATIGNOLLES"}, "geometry": {"type": "Point", "coordinates": [2.3208209151721744, 48.8816125433002]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "120c31e121de1c51e05d7b8f3c8ae708802c7555", "fields": {"departement": "92", "stop_lat": 48.89846158223141, "code_postal": "92024", "stop_lon": 2.310196942773822, "coord": [48.89846158223141, 2.310196942773822], "stop_id": 4472778, "stop_desc": "FACE 17 RUE DU 8 MAI 1945 - 92024", "stop_name": "VICTOR HUGO - 8 MAI 1945"}, "geometry": {"type": "Point", "coordinates": [2.310196942773822, 48.89846158223141]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "62df2f66766135aa3ffb0e6640f57643eb1b1102", "fields": {"departement": "92", "stop_lat": 48.90449961551857, "code_postal": "92024", "stop_lon": 2.304972468676297, "coord": [48.90449961551857, 2.304972468676297], "stop_id": 4472780, "stop_desc": "102 BIS RUE MARTRE - 92024", "stop_name": "LANDY - MARTRE"}, "geometry": {"type": "Point", "coordinates": [2.304972468676297, 48.90449961551857]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "70e3f6903a573674a187587be9d4770bf9ac9d29", "fields": {"departement": "92", "stop_lat": 48.930420001344224, "code_postal": "92036", "stop_lon": 2.28502897779457, "coord": [48.930420001344224, 2.28502897779457], "stop_id": 4472784, "stop_desc": "AVENUE LUCIEN LANTERNIER - 92036", "stop_name": "LES COURTILLES"}, "geometry": {"type": "Point", "coordinates": [2.28502897779457, 48.930420001344224]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4d5391e154287c2f0fb150f247dd0bf8e3d02ca3", "fields": {"departement": "93", "stop_lat": 48.9356797324817, "code_postal": "93039", "stop_lon": 2.3399828631123367, "coord": [48.9356797324817, 2.3399828631123367], "stop_id": 4472787, "stop_desc": "R MECHIN - 93039", "stop_name": "L'ILE SAINT-DENIS"}, "geometry": {"type": "Point", "coordinates": [2.3399828631123367, 48.9356797324817]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "45ece344ce03a2890c1d1b2c1b0961ad86f34017", "fields": {"departement": "93", "stop_lat": 48.9544351422254, "code_postal": "93079", "stop_lon": 2.3348530149930027, "coord": [48.9544351422254, 2.3348530149930027], "stop_id": 4472789, "stop_desc": "FACE 163 ROUTE DE SAINT-LEU - 93079", "stop_name": "YSER"}, "geometry": {"type": "Point", "coordinates": [2.3348530149930027, 48.9544351422254]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5a6dda14f3fa0ff1dbddf6950ed5fa414d9dab0e", "fields": {"departement": "77", "stop_lat": 48.87067862014969, "code_postal": "77108", "stop_lon": 2.576488959824313, "coord": [48.87067862014969, 2.576488959824313], "stop_id": 4472795, "stop_desc": "49 AVENUE DU MARECHAL FOCH - 77108", "stop_name": "AVENUE DES MARTYRS"}, "geometry": {"type": "Point", "coordinates": [2.576488959824313, 48.87067862014969]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "010447822bd15b102c9d0433c2669ce2f3f821cf", "fields": {"departement": "93", "stop_lat": 48.9303489005, "code_postal": "93066", "stop_lon": 2.357100149802827, "coord": [48.9303489005, 2.357100149802827], "stop_id": 4009067, "stop_desc": "R DANIELLE CASANOVA - 93066", "stop_name": "PORTE DE PARIS - STADE DE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.357100149802827, 48.9303489005]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9bb99135bac95a669c2064d83e0164c788d0abe5", "fields": {"departement": "93", "stop_lat": 48.93041275431319, "code_postal": "93066", "stop_lon": 2.3502258596971606, "coord": [48.93041275431319, 2.3502258596971606], "stop_id": 4009072, "stop_desc": "RUE AMBROISE CROIZAT - 93066", "stop_name": "SQUARE DE GEYTER"}, "geometry": {"type": "Point", "coordinates": [2.3502258596971606, 48.93041275431319]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "26ee3e25d0dc8c159c924fbbaa7c32344c59bc17", "fields": {"departement": "93", "stop_lat": 48.92936849010576, "code_postal": "93066", "stop_lon": 2.3616280011978406, "coord": [48.92936849010576, 2.3616280011978406], "stop_id": 4009074, "stop_desc": "RUE DANIELLE CASANOVA - 93066", "stop_name": "HOPITAL"}, "geometry": {"type": "Point", "coordinates": [2.3616280011978406, 48.92936849010576]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6798eac951a987c2128fafc9091ea3dd608cbbb4", "fields": {"departement": "93", "stop_lat": 48.9238668203393, "code_postal": "93001", "stop_lon": 2.368785251785139, "coord": [48.9238668203393, 2.368785251785139], "stop_id": 4009077, "stop_desc": "105 RUE DE SAINT-DENIS - 93001", "stop_name": "BERGERIES - FRANCS MOISINS"}, "geometry": {"type": "Point", "coordinates": [2.368785251785139, 48.9238668203393]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "604038ac490012ffe482a77054b33c9cfd118e13", "fields": {"departement": "93", "stop_lat": 48.91655697871897, "code_postal": "93001", "stop_lon": 2.3798531255339985, "coord": [48.91655697871897, 2.3798531255339985], "stop_id": 4009080, "stop_desc": "AVENUE DU PRESIDENT ROOSEVELT - 93001", "stop_name": "SCHAEFFER"}, "geometry": {"type": "Point", "coordinates": [2.3798531255339985, 48.91655697871897]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ded3b55e0c30f03f4636f8d2bc3462a2f695a9fa", "fields": {"departement": "93", "stop_lat": 48.91107308645593, "code_postal": "93001", "stop_lon": 2.384661567776284, "coord": [48.91107308645593, 2.384661567776284], "stop_id": 4009082, "stop_desc": "FACE 39 AVENUE DE LA REPUBLIQUE - 93001", "stop_name": "ANDRE KARMAN"}, "geometry": {"type": "Point", "coordinates": [2.384661567776284, 48.91107308645593]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dc63becb67b52c083a7ba7f2a52c722ac3eca1d2", "fields": {"departement": "93", "stop_lat": 48.90814215002271, "code_postal": "93001", "stop_lon": 2.3874946856123884, "coord": [48.90814215002271, 2.3874946856123884], "stop_id": 4009083, "stop_desc": "80 AVENUE DE LA REPUBLIQUE - 93001", "stop_name": "RUE DES CITES"}, "geometry": {"type": "Point", "coordinates": [2.3874946856123884, 48.90814215002271]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2a9eb2afd170cd4e71d61bb5fb7d80249208a980", "fields": {"departement": "93", "stop_lat": 48.901398906016496, "code_postal": "93055", "stop_lon": 2.394031449337831, "coord": [48.901398906016496, 2.394031449337831], "stop_id": 4009087, "stop_desc": "55 AVENUE EDOUARD VAILLANT - 93055", "stop_name": "LA PEROUSE"}, "geometry": {"type": "Point", "coordinates": [2.394031449337831, 48.901398906016496]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fb924d4b0ece24c2ee74a1d8a2a58bb9ba0914f1", "fields": {"departement": "92", "stop_lat": 48.8178276550716, "code_postal": "92048", "stop_lon": 2.2220193936896293, "coord": [48.8178276550716, 2.2220193936896293], "stop_id": 4009107, "stop_desc": "AVENUE DE LA TOUR - 92048", "stop_name": "TOUR"}, "geometry": {"type": "Point", "coordinates": [2.2220193936896293, 48.8178276550716]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "87d5cabea7bd5565004ce8b943406ce48bf3434a", "fields": {"departement": "92", "stop_lat": 48.81885005521113, "code_postal": "92048", "stop_lon": 2.2292577544400114, "coord": [48.81885005521113, 2.2292577544400114], "stop_id": 4009109, "stop_desc": "32 AVENUE DU GENERAL GALLIENI - 92048", "stop_name": "GARE DE BELLEVUE."}, "geometry": {"type": "Point", "coordinates": [2.2292577544400114, 48.81885005521113]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2dd00ac2d55b6150cc00a40b5b162d235078b374", "fields": {"departement": "92", "stop_lat": 48.80319813132894, "code_postal": "92048", "stop_lon": 2.2346511158179676, "coord": [48.80319813132894, 2.2346511158179676], "stop_id": 4009113, "stop_desc": "RUE DES VERTUGADINS - 92048", "stop_name": "TRIVAUX - VERTUGADINS"}, "geometry": {"type": "Point", "coordinates": [2.2346511158179676, 48.80319813132894]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "05160c11379c92bf3909ca99afd0efbe40201bfa", "fields": {"departement": "92", "stop_lat": 48.80240071382716, "code_postal": "92048", "stop_lon": 2.237591564608259, "coord": [48.80240071382716, 2.237591564608259], "stop_id": 4009114, "stop_desc": "RUE GEORGES LANGOGNET - 92048", "stop_name": "LYCEE RABELAIS"}, "geometry": {"type": "Point", "coordinates": [2.237591564608259, 48.80240071382716]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bcf2015e4e12f12aad34f14eab02283e535597d1", "fields": {"departement": "92", "stop_lat": 48.806182525144486, "code_postal": "92048", "stop_lon": 2.246238282785316, "coord": [48.806182525144486, 2.246238282785316], "stop_id": 4009118, "stop_desc": "13 RUE DU PERE BROTTIER - 92048", "stop_name": "PERE BROTTIER - CHARLES INFROIT"}, "geometry": {"type": "Point", "coordinates": [2.246238282785316, 48.806182525144486]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d7a284dd4f74e3a3b427307e0d5afe1ebd09147b", "fields": {"departement": "92", "stop_lat": 48.81056374038744, "code_postal": "92048", "stop_lon": 2.2401342034009057, "coord": [48.81056374038744, 2.2401342034009057], "stop_id": 4009126, "stop_desc": "96 R DE PARIS - 92048", "stop_name": "COMMISSARIAT DE POLICE"}, "geometry": {"type": "Point", "coordinates": [2.2401342034009057, 48.81056374038744]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f819f4835437c8626e26cbb95880705a3f88a230", "fields": {"departement": "92", "stop_lat": 48.80923255684322, "code_postal": "92048", "stop_lon": 2.2389256099224246, "coord": [48.80923255684322, 2.2389256099224246], "stop_id": 4009127, "stop_desc": "138 R DE PARIS - 92048", "stop_name": "MAISON ROUGE - RUE DE PARIS"}, "geometry": {"type": "Point", "coordinates": [2.2389256099224246, 48.80923255684322]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cd7a1183e8a290d970d4bdbd7a0f5b5d4c53e388", "fields": {"departement": "92", "stop_lat": 48.80707333784789, "code_postal": "92048", "stop_lon": 2.2363579541553302, "coord": [48.80707333784789, 2.2363579541553302], "stop_id": 4009128, "stop_desc": "FACE 9 R DE L'EGLISE - 92048", "stop_name": "EGLISE DE MEUDON."}, "geometry": {"type": "Point", "coordinates": [2.2363579541553302, 48.80707333784789]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c822599c52b41cb9c7edb51739f1612c1c812ced", "fields": {"departement": "92", "stop_lat": 48.80896069011549, "code_postal": "92048", "stop_lon": 2.236259032803945, "coord": [48.80896069011549, 2.236259032803945], "stop_id": 4009129, "stop_desc": "23 R DE LA REPUBLIQUE - 92048", "stop_name": "MAISON ROUGE - NOUVELLE POSTE"}, "geometry": {"type": "Point", "coordinates": [2.236259032803945, 48.80896069011549]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dedfecc9f70ab57c9645be9b0ea4f13604a42445", "fields": {"departement": "92", "stop_lat": 48.81108232012079, "code_postal": "92048", "stop_lon": 2.236867272802698, "coord": [48.81108232012079, 2.236867272802698], "stop_id": 4009130, "stop_desc": "PLACE RABELAIS - 92048", "stop_name": "RABELAIS"}, "geometry": {"type": "Point", "coordinates": [2.236867272802698, 48.81108232012079]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e74cadf9e369d8ade412316d963f0d4ba5c96edf", "fields": {"departement": "92", "stop_lat": 48.81735392391437, "code_postal": "92048", "stop_lon": 2.2457287409352795, "coord": [48.81735392391437, 2.2457287409352795], "stop_id": 4009134, "stop_desc": "RUE DES MONTALETS - 92048", "stop_name": "JULES GERARD"}, "geometry": {"type": "Point", "coordinates": [2.2457287409352795, 48.81735392391437]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8ab4918a1e02a71d8d72b8ff9fd86c927961ef88", "fields": {"departement": "92", "stop_lat": 48.818799964460155, "code_postal": "92048", "stop_lon": 2.244460443361091, "coord": [48.818799964460155, 2.244460443361091], "stop_id": 4009136, "stop_desc": "169 AVENUE DE VERDUN - 92048", "stop_name": "GROUPE SCOLAIRE BROSSOLETTE"}, "geometry": {"type": "Point", "coordinates": [2.244460443361091, 48.818799964460155]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9545b81eeea42580bf41a6ad18996017ae047fc4", "fields": {"departement": "92", "stop_lat": 48.81885005521113, "code_postal": "92048", "stop_lon": 2.2292577544400114, "coord": [48.81885005521113, 2.2292577544400114], "stop_id": 4009149, "stop_desc": "32 AVENUE DU GENERAL GALLIENI - 92048", "stop_name": "GARE DE BELLEVUE."}, "geometry": {"type": "Point", "coordinates": [2.2292577544400114, 48.81885005521113]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d04cf6860b0af8dcde6b43392c665969b2fca997", "fields": {"departement": "92", "stop_lat": 48.81183731423944, "code_postal": "92048", "stop_lon": 2.2368930295294303, "coord": [48.81183731423944, 2.2368930295294303], "stop_id": 4009152, "stop_desc": "PLACE RABELAIS - 92048", "stop_name": "RABELAIS"}, "geometry": {"type": "Point", "coordinates": [2.2368930295294303, 48.81183731423944]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9d8d6fb6971e6ac7c725bc65ca2443ec847e9e3f", "fields": {"departement": "92", "stop_lat": 48.806971284229796, "code_postal": "92048", "stop_lon": 2.2434474466584287, "coord": [48.806971284229796, 2.2434474466584287], "stop_id": 4009160, "stop_desc": "12 RUE CHARLES INFROIT - 92048", "stop_name": "LARRIS"}, "geometry": {"type": "Point", "coordinates": [2.2434474466584287, 48.806971284229796]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a71ca22375cc34bafcc7c0e404abfdd6bf12bb48", "fields": {"departement": "92", "stop_lat": 48.80707333784789, "code_postal": "92048", "stop_lon": 2.2363579541553302, "coord": [48.80707333784789, 2.2363579541553302], "stop_id": 4009171, "stop_desc": "FACE 9 R DE L'EGLISE - 92048", "stop_name": "EGLISE DE MEUDON."}, "geometry": {"type": "Point", "coordinates": [2.2363579541553302, 48.80707333784789]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "50ae8d0f59976b7fc48cf01245ad6426b25d10a7", "fields": {"departement": "92", "stop_lat": 48.81472598229365, "code_postal": "92048", "stop_lon": 2.2412559731883066, "coord": [48.81472598229365, 2.2412559731883066], "stop_id": 4009175, "stop_desc": "PL DU 8 MAI 1945 - 92048", "stop_name": "GARE DE MEUDON"}, "geometry": {"type": "Point", "coordinates": [2.2412559731883066, 48.81472598229365]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c3c43549ad325525afc9e06b86691b7a3070c58a", "fields": {"departement": "92", "stop_lat": 48.81802109670063, "code_postal": "92048", "stop_lon": 2.2484767816364313, "coord": [48.81802109670063, 2.2484767816364313], "stop_id": 4009178, "stop_desc": "180 AVENUE DE VERDUN - 92048", "stop_name": "CARREFOUR DE LA FERME"}, "geometry": {"type": "Point", "coordinates": [2.2484767816364313, 48.81802109670063]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f6692dec369fb67716eb3055d724ca784b202a10", "fields": {"departement": "92", "stop_lat": 48.823996014364155, "code_postal": "92040", "stop_lon": 2.273579871278798, "coord": [48.823996014364155, 2.273579871278798], "stop_id": 4009223, "stop_desc": "FACE 1 AVENUE JEAN JAURES - 92040", "stop_name": "JEAN JAURES-MAIRIE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.273579871278798, 48.823996014364155]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "597117cb205ac7def31606b54e5d31aaf3f6dc6e", "fields": {"departement": "92", "stop_lat": 48.82202033190037, "code_postal": "92040", "stop_lon": 2.2766583878603184, "coord": [48.82202033190037, 2.2766583878603184], "stop_id": 4009225, "stop_desc": "FACE 28 RUE DE L'ABBE DERRY - 92040", "stop_name": "PLACE D'ALEMBERT"}, "geometry": {"type": "Point", "coordinates": [2.2766583878603184, 48.82202033190037]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "28b52b3751e8057a1c27f4bbc3c44bc28c59c7e2", "fields": {"departement": "92", "stop_lat": 48.819900485958904, "code_postal": "92040", "stop_lon": 2.279165189847435, "coord": [48.819900485958904, 2.279165189847435], "stop_id": 4009228, "stop_desc": "60 AV DU GENERAL DE GAULLE - 92040", "stop_name": "JULES GUESDE"}, "geometry": {"type": "Point", "coordinates": [2.279165189847435, 48.819900485958904]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ebf0f2f0596512ea038c01b265565c2ca0821faf", "fields": {"departement": "92", "stop_lat": 48.827501031407145, "code_postal": "92040", "stop_lon": 2.273262483998071, "coord": [48.827501031407145, 2.273262483998071], "stop_id": 4009232, "stop_desc": "5 RUE DU GOUVERNEUR GENERAL EBOUE - 92040", "stop_name": "VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.273262483998071, 48.827501031407145]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "76a5a25864f3b254eb4d4a9a04dc1a2a266e3bcd", "fields": {"departement": "92", "stop_lat": 48.829168108256205, "code_postal": "92040", "stop_lon": 2.2819726870769808, "coord": [48.829168108256205, 2.2819726870769808], "stop_id": 4009235, "stop_desc": "48-50 RUE FOUCHER LEPELLETIER - 92040", "stop_name": "RENAN - FOUCHER LEPELLETIER"}, "geometry": {"type": "Point", "coordinates": [2.2819726870769808, 48.829168108256205]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ea80e1345d496d8b52da7718b45ba1ac8537710e", "fields": {"departement": "92", "stop_lat": 48.828152065821136, "code_postal": "92040", "stop_lon": 2.281034497441945, "coord": [48.828152065821136, 2.281034497441945], "stop_id": 4009237, "stop_desc": "FACE 19 RUE ERNEST RENAN - 92040", "stop_name": "COLLEGE HENRI MATISSE"}, "geometry": {"type": "Point", "coordinates": [2.281034497441945, 48.828152065821136]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d231634dee73f39739e5b8a43bac0019bac5a392", "fields": {"departement": "92", "stop_lat": 48.82299529871838, "code_postal": "92040", "stop_lon": 2.2680549168179627, "coord": [48.82299529871838, 2.2680549168179627], "stop_id": 4009256, "stop_desc": "83 BD GALLIENI - 92040", "stop_name": "CRESSON - GALLIENI"}, "geometry": {"type": "Point", "coordinates": [2.2680549168179627, 48.82299529871838]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8525296ca573031fd46e86e9343d0d2b3e67bd4f", "fields": {"departement": "92", "stop_lat": 48.822737975091215, "code_postal": "92040", "stop_lon": 2.2589085201821426, "coord": [48.822737975091215, 2.2589085201821426], "stop_id": 4009259, "stop_desc": "20 RUE JEAN JACQUES ROUSSEAU - 92040", "stop_name": "JEAN-JACQUES ROUSSEAU"}, "geometry": {"type": "Point", "coordinates": [2.2589085201821426, 48.822737975091215]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cc6749533cb478a388f47a42d16b666a1b354900", "fields": {"departement": "92", "stop_lat": 48.823063352098686, "code_postal": "92040", "stop_lon": 2.248685937581622, "coord": [48.823063352098686, 2.248685937581622], "stop_id": 4009262, "stop_desc": "FACE 15 AVENUE DU BAS MEUDON - 92040", "stop_name": "BAS MEUDON"}, "geometry": {"type": "Point", "coordinates": [2.248685937581622, 48.823063352098686]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7d75bf0ee892b3b546b9bf5953812544dca1e83b", "fields": {"departement": "92", "stop_lat": 48.82233295914967, "code_postal": "92040", "stop_lon": 2.2455294049524555, "coord": [48.82233295914967, 2.2455294049524555], "stop_id": 4009263, "stop_desc": "FACE 51 AVENUE DU BAS MEUDON - 92040", "stop_name": "STADE ILE SAINT-GERMAIN"}, "geometry": {"type": "Point", "coordinates": [2.2455294049524555, 48.82233295914967]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3a13f211d8d0961a9c8a299dcfc8d6bd3d4af79c", "fields": {"departement": "92", "stop_lat": 48.82519131510928, "code_postal": "92040", "stop_lon": 2.2734695098620437, "coord": [48.82519131510928, 2.2734695098620437], "stop_id": 4009272, "stop_desc": "RUE KLEBER - 92040", "stop_name": "MAIRIE D'ISSY-METRO."}, "geometry": {"type": "Point", "coordinates": [2.2734695098620437, 48.82519131510928]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "403487f99e4b02eff3fd06575ee20a23390c2540", "fields": {"departement": "95", "stop_lat": 48.92332538563844, "code_postal": "95063", "stop_lon": 2.217311537476802, "coord": [48.92332538563844, 2.217311537476802], "stop_id": 4009351, "stop_desc": "PL LENINE - 95063", "stop_name": "PONT DE BEZONS"}, "geometry": {"type": "Point", "coordinates": [2.217311537476802, 48.92332538563844]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bee4dd80d8339040d36d8cfe8dc2d45075100724", "fields": {"departement": "92", "stop_lat": 48.91364952675164, "code_postal": "92025", "stop_lon": 2.2300282302750474, "coord": [48.91364952675164, 2.2300282302750474], "stop_id": 4009355, "stop_desc": "117 BD CHARLES DE GAULLE - 92025", "stop_name": "VICTOR BASCH"}, "geometry": {"type": "Point", "coordinates": [2.2300282302750474, 48.91364952675164]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "591ec5591d906b17bf27fa587a5abdeb4fbe1d99", "fields": {"departement": "92", "stop_lat": 48.910687372418224, "code_postal": "92025", "stop_lon": 2.234070123145412, "coord": [48.910687372418224, 2.234070123145412], "stop_id": 4009357, "stop_desc": "FACE 68 BD CHARLES DE GAULLE - 92025", "stop_name": "JACQUELINE AURIOL"}, "geometry": {"type": "Point", "coordinates": [2.234070123145412, 48.910687372418224]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "72216f07567c57c28001ade09cc1d153b3e7a64b", "fields": {"departement": "92", "stop_lat": 48.90245089074918, "code_postal": "92035", "stop_lon": 2.239607550870101, "coord": [48.90245089074918, 2.239607550870101], "stop_id": 4009362, "stop_desc": "FACE 7 BD NATIONAL - 92035", "stop_name": "LES FAUVELLES"}, "geometry": {"type": "Point", "coordinates": [2.239607550870101, 48.90245089074918]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a210fdd33020614d946e4ac54fe345bb18f127ab", "fields": {"departement": "92", "stop_lat": 48.89186143406793, "code_postal": "92062", "stop_lon": 2.2364791158536526, "coord": [48.89186143406793, 2.2364791158536526], "stop_id": 4009366, "stop_desc": "PL CARPEAUX - 92062", "stop_name": "LA DEFENSE"}, "geometry": {"type": "Point", "coordinates": [2.2364791158536526, 48.89186143406793]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "966338bdf1a8e2d0078c0c2eb0e89ce40dac7063", "fields": {"departement": "92", "stop_lat": 48.84996639599762, "code_postal": "92064", "stop_lon": 2.221049184774347, "coord": [48.84996639599762, 2.221049184774347], "stop_id": 4009375, "stop_desc": "3 AV ANDRE CHEVRILLON - 92064", "stop_name": "LES MILONS"}, "geometry": {"type": "Point", "coordinates": [2.221049184774347, 48.84996639599762]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e4a30f54533f4707a2c511198509ee8e9696ee5b", "fields": {"departement": "92", "stop_lat": 48.843046818026124, "code_postal": "92064", "stop_lon": 2.2218816775770205, "coord": [48.843046818026124, 2.2218816775770205], "stop_id": 4009378, "stop_desc": "3 R DANTAN - 92064", "stop_name": "PARC DE ST-CLOUD"}, "geometry": {"type": "Point", "coordinates": [2.2218816775770205, 48.843046818026124]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "91401b2c42ff27eeeb79fd5cd02df69f5e915ed5", "fields": {"departement": "92", "stop_lat": 48.82212346845211, "code_postal": "92048", "stop_lon": 2.231360658178168, "coord": [48.82212346845211, 2.231360658178168], "stop_id": 4009381, "stop_desc": "CHE DES LACETS - 92048", "stop_name": "BRIMBORION"}, "geometry": {"type": "Point", "coordinates": [2.231360658178168, 48.82212346845211]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c03e8cdbc7cdf0f4dfb6d8f1e3cc4ee12cca4534", "fields": {"departement": "92", "stop_lat": 48.82471635194133, "code_postal": "92040", "stop_lon": 2.2605797775734913, "coord": [48.82471635194133, 2.2605797775734913], "stop_id": 4009386, "stop_desc": "FACE 14 R JACQUES-HENRI LARTIGUE - 92040", "stop_name": "JACQUES-HENRI LARTIGUE"}, "geometry": {"type": "Point", "coordinates": [2.2605797775734913, 48.82471635194133]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eb90ac62d16a9dd751bfe8d3bd582f9e5af0a03d", "fields": {"departement": "92", "stop_lat": 48.82957110434357, "code_postal": "92040", "stop_lon": 2.2628187515649514, "coord": [48.82957110434357, 2.2628187515649514], "stop_id": 4009389, "stop_desc": "MAIL FELIX AMIOT - 92040", "stop_name": "ISSY - VAL DE SEINE"}, "geometry": {"type": "Point", "coordinates": [2.2628187515649514, 48.82957110434357]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1a0b40be1ff8c6b3b8ce7e36c31c7cf3a4310548", "fields": {"departement": "75", "stop_lat": 48.8348250253528, "code_postal": "75115", "stop_lon": 2.271578881743546, "coord": [48.8348250253528, 2.271578881743546], "stop_id": 4009390, "stop_desc": "0 CW / 15 - 75115", "stop_name": "HENRI FARMAN"}, "geometry": {"type": "Point", "coordinates": [2.271578881743546, 48.8348250253528]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "32516f4e3f4bc8294f8479ac53e4dc25a8b4ff4b", "fields": {"departement": "75", "stop_lat": 48.83220830468481, "code_postal": "75115", "stop_lon": 2.2873604738640747, "coord": [48.83220830468481, 2.2873604738640747], "stop_id": 4009396, "stop_desc": "FACE 3 AV ERNEST RENAN - 75115", "stop_name": "PORTE DE VERSAILLES"}, "geometry": {"type": "Point", "coordinates": [2.2873604738640747, 48.83220830468481]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "36730c721374839a0c71bc7fff7f86746ded50c5", "fields": {"departement": "92", "stop_lat": 48.82196200459944, "code_postal": "92072", "stop_lon": 2.2317148741993775, "coord": [48.82196200459944, 2.2317148741993775], "stop_id": 4009398, "stop_desc": "CHEMIN DES LACETS - 92072", "stop_name": "BRIMBORION"}, "geometry": {"type": "Point", "coordinates": [2.2317148741993775, 48.82196200459944]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9bfac7f8044d7c1374d32fd01ccd39f168a1bdc8", "fields": {"departement": "75", "stop_lat": 48.84638266447135, "code_postal": "75106", "stop_lon": 2.3264833034864068, "coord": [48.84638266447135, 2.3264833034864068], "stop_id": 4009621, "stop_desc": "129 RUE DE RENNES - 75106", "stop_name": "RENNES - SAINT-PLACIDE"}, "geometry": {"type": "Point", "coordinates": [2.3264833034864068, 48.84638266447135]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b472a78adcebd2967351ad5bd99af23f2539647b", "fields": {"departement": "75", "stop_lat": 48.86048341319638, "code_postal": "75107", "stop_lon": 2.3213860761151324, "coord": [48.86048341319638, 2.3213860761151324], "stop_id": 4009633, "stop_desc": "276 BOULEVARD SAINT GERMAIN - 75107", "stop_name": "LILLE - UNIVERSITE"}, "geometry": {"type": "Point", "coordinates": [2.3213860761151324, 48.86048341319638]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "49bbcfe994dcf95179a60c56c7f7563a9887eab2", "fields": {"departement": "75", "stop_lat": 48.861714527136336, "code_postal": "75107", "stop_lon": 2.3202278766917344, "coord": [48.861714527136336, 2.3202278766917344], "stop_id": 4009635, "stop_desc": "286 BOULEVARD SAINT GERMAIN - 75107", "stop_name": "ASSEMBLEE NATIONALE"}, "geometry": {"type": "Point", "coordinates": [2.3202278766917344, 48.861714527136336]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7d74af549548e44b434567488c59342117f46c00", "fields": {"departement": "75", "stop_lat": 48.867296005540844, "code_postal": "75108", "stop_lon": 2.322623676294097, "coord": [48.867296005540844, 2.322623676294097], "stop_id": 4009637, "stop_desc": "4 RUE ROYALE - 75108", "stop_name": "CONCORDE"}, "geometry": {"type": "Point", "coordinates": [2.322623676294097, 48.867296005540844]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b0201070676f0a68f9d20154497b5710e83a2bfb", "fields": {"departement": "75", "stop_lat": 48.873219105262045, "code_postal": "75109", "stop_lon": 2.326886462987139, "coord": [48.873219105262045, 2.326886462987139], "stop_id": 4009641, "stop_desc": "34 RUE TRONCHET - 75109", "stop_name": "HAVRE - HAUSSMANN"}, "geometry": {"type": "Point", "coordinates": [2.326886462987139, 48.873219105262045]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9e891e86efc7e53cfec842b4549e65ff695b94f3", "fields": {"departement": "75", "stop_lat": 48.883165328377935, "code_postal": "75117", "stop_lon": 2.3098915039618495, "coord": [48.883165328377935, 2.3098915039618495], "stop_id": 4009649, "stop_desc": "PLACE MALESHERBES - 75117", "stop_name": "PLACE DU GENERAL CATROUX"}, "geometry": {"type": "Point", "coordinates": [2.3098915039618495, 48.883165328377935]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f1a03286a279762085a7d0bec831d390726a09b8", "fields": {"departement": "75", "stop_lat": 48.88557319350412, "code_postal": "75117", "stop_lon": 2.3069466466014115, "coord": [48.88557319350412, 2.3069466466014115], "stop_id": 4009651, "stop_desc": "144 BOULEVARD MALESHERBES - 75117", "stop_name": "JOUFFROY - MALESHERBES"}, "geometry": {"type": "Point", "coordinates": [2.3069466466014115, 48.88557319350412]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6cd9d7bedb804cb8fbe29fc461b9e80d48b48835", "fields": {"departement": "92", "stop_lat": 48.89155539581109, "code_postal": "92044", "stop_lon": 2.2960397181724863, "coord": [48.89155539581109, 2.2960397181724863], "stop_id": 4009661, "stop_desc": "FACE 23 R D'ALSACE - 92044", "stop_name": "LOUISON BOBET"}, "geometry": {"type": "Point", "coordinates": [2.2960397181724863, 48.89155539581109]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e5bb47045e85e6dec018fb361c3cdb1e3d54598d", "fields": {"departement": "92", "stop_lat": 48.89155539581109, "code_postal": "92044", "stop_lon": 2.2960397181724863, "coord": [48.89155539581109, 2.2960397181724863], "stop_id": 4009662, "stop_desc": "FACE 23 R D'ALSACE - 92044", "stop_name": "LOUISON BOBET"}, "geometry": {"type": "Point", "coordinates": [2.2960397181724863, 48.89155539581109]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "99ea1fb7d813afd2e53f487650f371c553f54fa7", "fields": {"departement": "75", "stop_lat": 48.84381179353463, "code_postal": "75115", "stop_lon": 2.32238519748455, "coord": [48.84381179353463, 2.32238519748455], "stop_id": 4009667, "stop_desc": "FACE 3 RUE DE L'ARRIVEE - 75115", "stop_name": "PLACE DU 18 JUIN 1940 - RUE DE L'ARRIVEE"}, "geometry": {"type": "Point", "coordinates": [2.32238519748455, 48.84381179353463]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "06a9c77bfbe6003f04ca67aa979c7eac5563d3ac", "fields": {"departement": "92", "stop_lat": 48.916664954153504, "code_postal": "92004", "stop_lon": 2.2950243206473284, "coord": [48.916664954153504, 2.2950243206473284], "stop_id": 4015686, "stop_desc": "PISTE GARE ROUTIERE - 92004", "stop_name": "GABRIEL PERI-METRO"}, "geometry": {"type": "Point", "coordinates": [2.2950243206473284, 48.916664954153504]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "52d795ec523060b9a4a7055108f371beb2875248", "fields": {"departement": "92", "stop_lat": 48.92095388981479, "code_postal": "92004", "stop_lon": 2.2788200385932735, "coord": [48.92095388981479, 2.2788200385932735], "stop_id": 4015698, "stop_desc": "218 AVENUE D'ARGENTEUIL - 92004", "stop_name": "JAURES"}, "geometry": {"type": "Point", "coordinates": [2.2788200385932735, 48.92095388981479]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bc4b7dfef30ce865d34a53daf2560e06c568e442", "fields": {"departement": "92", "stop_lat": 48.93137217953591, "code_postal": "92025", "stop_lon": 2.266723446850035, "coord": [48.93137217953591, 2.266723446850035], "stop_id": 4015704, "stop_desc": "121 AVENUE DE STALINGRAD - 92025", "stop_name": "SOLFERINO"}, "geometry": {"type": "Point", "coordinates": [2.266723446850035, 48.93137217953591]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ae0a83aedb5dbb4de3c4bde7ecc9bd417b956d9d", "fields": {"departement": "92", "stop_lat": 48.93449739935261, "code_postal": "92025", "stop_lon": 2.263077151509599, "coord": [48.93449739935261, 2.263077151509599], "stop_id": 4015705, "stop_desc": "FACE 205 AVENUE DE STALINGRAD - 92025", "stop_name": "PONT DU CHEMIN DE FER"}, "geometry": {"type": "Point", "coordinates": [2.263077151509599, 48.93449739935261]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d51c521b639587ff2a3b292f06a811790b9b7d5d", "fields": {"departement": "95", "stop_lat": 48.942309095810884, "code_postal": "95018", "stop_lon": 2.2527793991309855, "coord": [48.942309095810884, 2.2527793991309855], "stop_id": 4015709, "stop_desc": "FACE 2 AVENUE GABRIEL PERI - 95018", "stop_name": "BORDEREL"}, "geometry": {"type": "Point", "coordinates": [2.2527793991309855, 48.942309095810884]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ad74bed205213aff46864b98df3fe04e9c5ee103", "fields": {"departement": "95", "stop_lat": 48.94827603000987, "code_postal": "95018", "stop_lon": 2.2523739798914075, "coord": [48.94827603000987, 2.2523739798914075], "stop_id": 4015714, "stop_desc": "FACE 4 BIS BOULEVARD LEON FEIX - 95018", "stop_name": "LEON FEIX"}, "geometry": {"type": "Point", "coordinates": [2.2523739798914075, 48.94827603000987]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1a30ae70e4df85ede48bce534aafc5ba61831181", "fields": {"departement": "92", "stop_lat": 48.93698391585437, "code_postal": "92025", "stop_lon": 2.258640183272224, "coord": [48.93698391585437, 2.258640183272224], "stop_id": 4015718, "stop_desc": "FACE 212 AVENUE D'ARGENTEUIL - 92025", "stop_name": "PETIT GENNEVILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.258640183272224, 48.93698391585437]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "151d44d6a27b64624bc85b733cb205fef162aa92", "fields": {"departement": "92", "stop_lat": 48.91596231725809, "code_postal": "92004", "stop_lon": 2.29059328767619, "coord": [48.91596231725809, 2.29059328767619], "stop_id": 4015722, "stop_desc": "99 BOULEVARD VOLTAIRE - 92004", "stop_name": "LOUIS MELOTTE"}, "geometry": {"type": "Point", "coordinates": [2.29059328767619, 48.91596231725809]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cfb51ef53fe46deaff7fd31cbfec0c45f99658db", "fields": {"departement": "92", "stop_lat": 48.916664954153504, "code_postal": "92004", "stop_lon": 2.2950243206473284, "coord": [48.916664954153504, 2.2950243206473284], "stop_id": 4015723, "stop_desc": "PISTE GARE ROUTIERE - 92004", "stop_name": "GABRIEL PERI-METRO"}, "geometry": {"type": "Point", "coordinates": [2.2950243206473284, 48.916664954153504]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "26abd01829d69be927f623913d23dd6a131d47a6", "fields": {"departement": "92", "stop_lat": 48.913025400714396, "code_postal": "92004", "stop_lon": 2.2955454150474894, "coord": [48.913025400714396, 2.2955454150474894], "stop_id": 4015726, "stop_desc": "35 BOULEVARD VOLTAIRE - 92004", "stop_name": "PLACE VOLTAIRE"}, "geometry": {"type": "Point", "coordinates": [2.2955454150474894, 48.913025400714396]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0d681d5eb6b5b1c79092335c18a8adc12fe48850", "fields": {"departement": "92", "stop_lat": 48.917972927646225, "code_postal": "92004", "stop_lon": 2.2846460759971894, "coord": [48.917972927646225, 2.2846460759971894], "stop_id": 4015731, "stop_desc": "158 BOULEVARD VOLTAIRE - 92004", "stop_name": "GUILLEMIN"}, "geometry": {"type": "Point", "coordinates": [2.2846460759971894, 48.917972927646225]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "14eb0b78111a3e7bf202695340aa535d9a3781cc", "fields": {"departement": "92", "stop_lat": 48.917981642361255, "code_postal": "92004", "stop_lon": 2.2840324362343334, "coord": [48.917981642361255, 2.2840324362343334], "stop_id": 4015732, "stop_desc": "167 BOULEVARD VOLTAIRE - 92004", "stop_name": "GUILLEMIN"}, "geometry": {"type": "Point", "coordinates": [2.2840324362343334, 48.917981642361255]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aaf5dc9b8ebb3293e6cb0b5462b6846deb8fe849", "fields": {"departement": "92", "stop_lat": 48.9238281198912, "code_postal": "92004", "stop_lon": 2.2756528303457335, "coord": [48.9238281198912, 2.2756528303457335], "stop_id": 4015736, "stop_desc": "FACE 307 AVENUE D'ARGENTEUIL - 92004", "stop_name": "GRAMME"}, "geometry": {"type": "Point", "coordinates": [2.2756528303457335, 48.9238281198912]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b12bd0be6f8d169c3055e00a88f6b54cd8767ba4", "fields": {"departement": "95", "stop_lat": 48.94618569124683, "code_postal": "95018", "stop_lon": 2.257562003803285, "coord": [48.94618569124683, 2.257562003803285], "stop_id": 4015750, "stop_desc": "PISTE GARE ROUTIERE - 95018", "stop_name": "GARE D'ARGENTEUIL"}, "geometry": {"type": "Point", "coordinates": [2.257562003803285, 48.94618569124683]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9e9261b16030852c5c446d47b6eec977633f5864", "fields": {"departement": "92", "stop_lat": 48.93698391585437, "code_postal": "92025", "stop_lon": 2.258640183272224, "coord": [48.93698391585437, 2.258640183272224], "stop_id": 4015751, "stop_desc": "FACE 212 AVENUE D'ARGENTEUIL - 92025", "stop_name": "PETIT GENNEVILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.258640183272224, 48.93698391585437]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ddaef3e5df8347a3bb0e28a1e84df44f62d77347", "fields": {"departement": "75", "stop_lat": 48.8383835564642, "code_postal": "75116", "stop_lon": 2.256107368981866, "coord": [48.8383835564642, 2.256107368981866], "stop_id": 4015756, "stop_desc": "PLACE DE LA PORTE DE SAINT-CLOUD - 75116", "stop_name": "PORTE DE SAINT-CLOUD"}, "geometry": {"type": "Point", "coordinates": [2.256107368981866, 48.8383835564642]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a38e5a881866bcc886df6d59ddd9d92587d0d8b2", "fields": {"departement": "92", "stop_lat": 48.83396076230996, "code_postal": "92012", "stop_lon": 2.2427043318565953, "coord": [48.83396076230996, 2.2427043318565953], "stop_id": 4015763, "stop_desc": "5 AVENUE ANDRE MORIZET - 92012", "stop_name": "MARCEL SEMBAT-METRO"}, "geometry": {"type": "Point", "coordinates": [2.2427043318565953, 48.83396076230996]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a68e8e37fa0c7246e6198d1a735199fa75b272d3", "fields": {"departement": "92", "stop_lat": 48.84006114983078, "code_postal": "92012", "stop_lon": 2.2295539967116715, "coord": [48.84006114983078, 2.2295539967116715], "stop_id": 4015769, "stop_desc": "FACE 124 AVENUE ANDRE MORIZET - 92012", "stop_name": "RHIN ET DANUBE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.2295539967116715, 48.84006114983078]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4c422a7ed3b8667a3d7f310372fcca8f22734f9c", "fields": {"departement": "92", "stop_lat": 48.84917815054102, "code_postal": "92064", "stop_lon": 2.223801820162697, "coord": [48.84917815054102, 2.223801820162697], "stop_id": 4015776, "stop_desc": "QUAI DU PRESIDENT CARNOT - 92064", "stop_name": "PARC DE BEARN"}, "geometry": {"type": "Point", "coordinates": [2.223801820162697, 48.84917815054102]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "19f618325bacbf8a601d7b016886223737ede51f", "fields": {"departement": "92", "stop_lat": 48.85257439570644, "code_postal": "92064", "stop_lon": 2.2227321051178413, "coord": [48.85257439570644, 2.2227321051178413], "stop_id": 4015778, "stop_desc": "55 QUAI MARCEL DASSAULT - 92064", "stop_name": "L'AQUEDUC"}, "geometry": {"type": "Point", "coordinates": [2.2227321051178413, 48.85257439570644]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2b10a521b7225e65f0ff06dda2a2f8dec7334e04", "fields": {"departement": "92", "stop_lat": 48.8700361267993, "code_postal": "92073", "stop_lon": 2.231589776856426, "coord": [48.8700361267993, 2.231589776856426], "stop_id": 4015786, "stop_desc": "FACE 24 QUAI GALLIENI - 92073", "stop_name": "NIEUPORT"}, "geometry": {"type": "Point", "coordinates": [2.231589776856426, 48.8700361267993]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ff9bb042e6b843e2041817c6c77c44271505eab3", "fields": {"departement": "92", "stop_lat": 48.86954088881206, "code_postal": "92073", "stop_lon": 2.2305417756405177, "coord": [48.86954088881206, 2.2305417756405177], "stop_id": 4015787, "stop_desc": "QUAI GALLIENI - 92073", "stop_name": "NIEUPORT"}, "geometry": {"type": "Point", "coordinates": [2.2305417756405177, 48.86954088881206]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "18fa43b4d9d744de28ff73e4357da89053a69e01", "fields": {"departement": "92", "stop_lat": 48.89174017529571, "code_postal": "92026", "stop_lon": 2.254033947115366, "coord": [48.89174017529571, 2.254033947115366], "stop_id": 4015799, "stop_desc": "FACE 16 RUE DE L'ABREUVOIR - 92026", "stop_name": "VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.254033947115366, 48.89174017529571]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c485728a3aeb2dab76088f244dc61d673bbee81e", "fields": {"departement": "92", "stop_lat": 48.89635397219346, "code_postal": "92026", "stop_lon": 2.2590289519737694, "coord": [48.89635397219346, 2.2590289519737694], "stop_id": 4015802, "stop_desc": "FACE 25 BOULEVARD SAINT-DENIS - 92026", "stop_name": "LA MONTAGNE"}, "geometry": {"type": "Point", "coordinates": [2.2590289519737694, 48.89635397219346]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c94a720a410fefa8a2d0c83be7e69c3f67f52ea8", "fields": {"departement": "92", "stop_lat": 48.898055750965, "code_postal": "92026", "stop_lon": 2.264083484985959, "coord": [48.898055750965, 2.264083484985959], "stop_id": 4015804, "stop_desc": "82 BOULEVARD SAINT-DENIS - 92026", "stop_name": "PONT BINEAU"}, "geometry": {"type": "Point", "coordinates": [2.264083484985959, 48.898055750965]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b24c4815c953a96c3b247c802be01f73a6ea8267", "fields": {"departement": "92", "stop_lat": 48.90274438482328, "code_postal": "92026", "stop_lon": 2.27528256088404, "coord": [48.90274438482328, 2.27528256088404], "stop_id": 4015808, "stop_desc": "230 BOULEVARD SAINT-DENIS - 92026", "stop_name": "PLACE MERMOZ"}, "geometry": {"type": "Point", "coordinates": [2.27528256088404, 48.90274438482328]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9b1d057bf6efc23afa9fe8de1682c07555a74232", "fields": {"departement": "92", "stop_lat": 48.91090327377339, "code_postal": "92004", "stop_lon": 2.2922748726744246, "coord": [48.91090327377339, 2.2922748726744246], "stop_id": 4015818, "stop_desc": "16-18 RUE PIERRE BROSSOLETTE - 92004", "stop_name": "PLACE DES VICTOIRES-MARCHE"}, "geometry": {"type": "Point", "coordinates": [2.2922748726744246, 48.91090327377339]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d5f446f2d4f7d3b73606f75a05edbcf1156e8d72", "fields": {"departement": "92", "stop_lat": 48.916044662299896, "code_postal": "92004", "stop_lon": 2.294493032782425, "coord": [48.916044662299896, 2.294493032782425], "stop_id": 4015823, "stop_desc": "PISTE GARE ROUTIERE - 92004", "stop_name": "GABRIEL PERI-METRO"}, "geometry": {"type": "Point", "coordinates": [2.294493032782425, 48.916044662299896]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3f6655e0a8acdc0052aa1076b8148f923dcae883", "fields": {"departement": "92", "stop_lat": 48.87359858795836, "code_postal": "92073", "stop_lon": 2.2355881424094215, "coord": [48.87359858795836, 2.2355881424094215], "stop_id": 4015827, "stop_desc": "QUAI DE DION BOUTON - 92073", "stop_name": "POMPIDOU"}, "geometry": {"type": "Point", "coordinates": [2.2355881424094215, 48.87359858795836]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2c80fea1d39aa779eb9e437284172e9018e0c4ef", "fields": {"departement": "92", "stop_lat": 48.92403416999758, "code_postal": "92036", "stop_lon": 2.2947591934127467, "coord": [48.92403416999758, 2.2947591934127467], "stop_id": 4015887, "stop_desc": "130 AVENUE GABRIEL PERI - 92036", "stop_name": "MAIRIE DE GENNEVILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.2947591934127467, 48.92403416999758]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5f5c7b6eedc9a739412772358102d210214c87d3", "fields": {"departement": "92", "stop_lat": 48.924869812935135, "code_postal": "92036", "stop_lon": 2.2943630041990652, "coord": [48.924869812935135, 2.2943630041990652], "stop_id": 4015888, "stop_desc": "FACE 144 AVENUE GABRIEL PERI - 92036", "stop_name": "MAIRIE DE GENNEVILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.2943630041990652, 48.924869812935135]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "072a7fa9149e5f181c0f41c0d487045397358c04", "fields": {"departement": "92", "stop_lat": 48.9279524665004, "code_postal": "92036", "stop_lon": 2.2947559783720965, "coord": [48.9279524665004, 2.2947559783720965], "stop_id": 4015890, "stop_desc": "FACE 43 PLACE DU DOCTEUR ROUX - 92036", "stop_name": "CAMELINAT-JAURES"}, "geometry": {"type": "Point", "coordinates": [2.2947559783720965, 48.9279524665004]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ead6ca1be7169ccc8d18264674535d020ae78d5e", "fields": {"departement": "92", "stop_lat": 48.93053185022653, "code_postal": "92036", "stop_lon": 2.2951630480431957, "coord": [48.93053185022653, 2.2951630480431957], "stop_id": 4015891, "stop_desc": "29-31 RUE JEAN JAURES - 92036", "stop_name": "DESLANDES"}, "geometry": {"type": "Point", "coordinates": [2.2951630480431957, 48.93053185022653]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "78acdc67742ffdda13b398697bfecf1ee092ed94", "fields": {"departement": "92", "stop_lat": 48.93376662527099, "code_postal": "92036", "stop_lon": 2.2937690981534242, "coord": [48.93376662527099, 2.2937690981534242], "stop_id": 4015894, "stop_desc": "FACE 8 RUE EUGENE VARLIN - 92036", "stop_name": "LE VILLAGE"}, "geometry": {"type": "Point", "coordinates": [2.2937690981534242, 48.93376662527099]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d132fd84217949cdeb6a109b2d72aad2394cff68", "fields": {"departement": "92", "stop_lat": 48.932249363893824, "code_postal": "92004", "stop_lon": 2.276652172964696, "coord": [48.932249363893824, 2.276652172964696], "stop_id": 4015907, "stop_desc": "RUE HENRI POINCARE - 92004", "stop_name": "MOURINOUX"}, "geometry": {"type": "Point", "coordinates": [2.276652172964696, 48.932249363893824]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9c84d948e8205afa70df5ee250948fe1402668f3", "fields": {"departement": "92", "stop_lat": 48.93186669884235, "code_postal": "92025", "stop_lon": 2.2671319703624646, "coord": [48.93186669884235, 2.2671319703624646], "stop_id": 4015910, "stop_desc": "FACE 8 RUE JULES MICHELET - 92025", "stop_name": "SOLFERINO"}, "geometry": {"type": "Point", "coordinates": [2.2671319703624646, 48.93186669884235]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "19f0348c974cc0b8482bd7b03b0fb66ea6bf9be8", "fields": {"departement": "92", "stop_lat": 48.93174113042299, "code_postal": "92025", "stop_lon": 2.267554976296195, "coord": [48.93174113042299, 2.267554976296195], "stop_id": 4015911, "stop_desc": "20 RUE JULES MICHELET - 92025", "stop_name": "SOLFERINO"}, "geometry": {"type": "Point", "coordinates": [2.267554976296195, 48.93174113042299]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6417e5578cd5ca08d23ec435a9972a3bf45e1c9b", "fields": {"departement": "92", "stop_lat": 48.9290657750265, "code_postal": "92025", "stop_lon": 2.257574708806616, "coord": [48.9290657750265, 2.257574708806616], "stop_id": 4015914, "stop_desc": "45 RUE MARCELIN BERTHELOT - 92025", "stop_name": "PRESIDENT KENNEDY"}, "geometry": {"type": "Point", "coordinates": [2.257574708806616, 48.9290657750265]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "df6d5026ef7708e485938f478d0cec7d2903638e", "fields": {"departement": "92", "stop_lat": 48.92834803912217, "code_postal": "92025", "stop_lon": 2.2594170747775593, "coord": [48.92834803912217, 2.2594170747775593], "stop_id": 4015915, "stop_desc": "FACE 81 BOULEVARD GAMBETTA - 92025", "stop_name": "PRESIDENT KENNEDY"}, "geometry": {"type": "Point", "coordinates": [2.2594170747775593, 48.92834803912217]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "17b64bc9636d934c9c4744cf8df8734779b1afcb", "fields": {"departement": "92", "stop_lat": 48.92729640014206, "code_postal": "92025", "stop_lon": 2.246461890539216, "coord": [48.92729640014206, 2.246461890539216], "stop_id": 4015920, "stop_desc": "FACE 1 AVENUE DE L'EUROPE - 92025", "stop_name": "AUDRA"}, "geometry": {"type": "Point", "coordinates": [2.246461890539216, 48.92729640014206]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "87f92536b928db868e5b2cd1db4e9a86d0854f3b", "fields": {"departement": "95", "stop_lat": 49.040767259193466, "code_postal": "95199", "stop_lon": 2.3391546242326893, "coord": [49.040767259193466, 2.3391546242326893], "stop_id": 4226818, "stop_desc": "175 AVENUE JEAN ROSTAND - 95199", "stop_name": "CENTRE COMMERCIAL DE DOMONT"}, "geometry": {"type": "Point", "coordinates": [2.3391546242326893, 49.040767259193466]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "76155b49bfab6eaca9e0b29d0e2a10400d587bde", "fields": {"departement": "95", "stop_lat": 48.99730173969438, "code_postal": "95585", "stop_lon": 2.381572147113851, "coord": [48.99730173969438, 2.381572147113851], "stop_id": 4226828, "stop_desc": "RUE DU DOCTEUR DUMOULIN - 95585", "stop_name": "MARCELLIN BERTHELOT - VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.381572147113851, 48.99730173969438]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "430e76e39724d31aab7166d10f241b872153cf76", "fields": {"departement": "95", "stop_lat": 49.00265761831511, "code_postal": "95585", "stop_lon": 2.3815494199763547, "coord": [49.00265761831511, 2.3815494199763547], "stop_id": 4226830, "stop_desc": "56 AVENUE MARX DORMOY - 95585", "stop_name": "LES CHARDONNERETTES"}, "geometry": {"type": "Point", "coordinates": [2.3815494199763547, 49.00265761831511]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9d6c6de2993746d19151ca8db4b8ba1e2479777a", "fields": {"departement": "95", "stop_lat": 49.0229153394151, "code_postal": "95205", "stop_lon": 2.373573384530407, "coord": [49.0229153394151, 2.373573384530407], "stop_id": 4226836, "stop_desc": "FACE 27 RUE DE LA LIBERATION - 95205", "stop_name": "RUE DE LA LIBERATION N0 20"}, "geometry": {"type": "Point", "coordinates": [2.373573384530407, 49.0229153394151]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b6a54178e02e2be45776335a9e7a3a2131cd4536", "fields": {"departement": "95", "stop_lat": 49.026520628857526, "code_postal": "95229", "stop_lon": 2.3669211239195964, "coord": [49.026520628857526, 2.3669211239195964], "stop_id": 4226837, "stop_desc": "AVENUE DE LA LIBERATION - 95229", "stop_name": "MARECHAL FOCH"}, "geometry": {"type": "Point", "coordinates": [2.3669211239195964, 49.026520628857526]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e59bb5fe83086b2f6e43c57c31ba0bb919a8596d", "fields": {"departement": "95", "stop_lat": 48.99684328677364, "code_postal": "95585", "stop_lon": 2.3819678082524725, "coord": [48.99684328677364, 2.3819678082524725], "stop_id": 4230043, "stop_desc": "RUE MARCELLIN BERTHELOT - 95585", "stop_name": "MARCELLIN BERTHELOT - VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.3819678082524725, 48.99684328677364]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "28e9b58f98f7c5b193e85eb1120c9d41198b7765", "fields": {"departement": "95", "stop_lat": 48.99730173969438, "code_postal": "95585", "stop_lon": 2.381572147113851, "coord": [48.99730173969438, 2.381572147113851], "stop_id": 4230044, "stop_desc": "RUE DU DOCTEUR DUMOULIN - 95585", "stop_name": "MARCELLIN BERTHELOT - VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.381572147113851, 48.99730173969438]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4a3a9543f408aeb247a568a2d6b2ca8b3ed90c90", "fields": {"departement": "95", "stop_lat": 48.97555399602247, "code_postal": "95585", "stop_lon": 2.382905009209362, "coord": [48.97555399602247, 2.382905009209362], "stop_id": 4230071, "stop_desc": "BOULEVAR MAURICE RAVEL - 95585", "stop_name": "MAURICE RAVEL"}, "geometry": {"type": "Point", "coordinates": [2.382905009209362, 48.97555399602247]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "222ce4e99a01099413ed81664462aae50bdd190a", "fields": {"departement": "95", "stop_lat": 48.979356403578095, "code_postal": "95585", "stop_lon": 2.3799184847998682, "coord": [48.979356403578095, 2.3799184847998682], "stop_id": 4230098, "stop_desc": "38 AVENUE PAUL VALERY - 95585", "stop_name": "PAUL VALERY"}, "geometry": {"type": "Point", "coordinates": [2.3799184847998682, 48.979356403578095]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2f598947aa655e20a21c22136303060a68d48df5", "fields": {"departement": "95", "stop_lat": 49.006632690879485, "code_postal": "95585", "stop_lon": 2.372141347510079, "coord": [49.006632690879485, 2.372141347510079], "stop_id": 4238639, "stop_desc": "FACE 75 RUE DES GOSSEROTS - 95585", "stop_name": "BEL AIR - GOSSEROTS"}, "geometry": {"type": "Point", "coordinates": [2.372141347510079, 49.006632690879485]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e0c53e8ead7d2f41069ea9eec618885aab1a173b", "fields": {"departement": "95", "stop_lat": 49.00543684496062, "code_postal": "95585", "stop_lon": 2.374353347795506, "coord": [49.00543684496062, 2.374353347795506], "stop_id": 4238641, "stop_desc": "41 RUE DU FOUR DEFAIT - 95585", "stop_name": "CHAMP DE CHARTRES"}, "geometry": {"type": "Point", "coordinates": [2.374353347795506, 49.00543684496062]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2fdb9b2096b46f6a4c4946e7eb5eeef33e9e9790", "fields": {"departement": "95", "stop_lat": 48.99814052493296, "code_postal": "95585", "stop_lon": 2.3723951090647155, "coord": [48.99814052493296, 2.3723951090647155], "stop_id": 4238646, "stop_desc": "R JEAN ZAY - 95585", "stop_name": "MAISON DE RETRAITE"}, "geometry": {"type": "Point", "coordinates": [2.3723951090647155, 48.99814052493296]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "94fdeb2e154a24afdfee53269e0279cc4f35782b", "fields": {"departement": "95", "stop_lat": 48.99603815234851, "code_postal": "95585", "stop_lon": 2.370864116699428, "coord": [48.99603815234851, 2.370864116699428], "stop_id": 4238648, "stop_desc": "32 BOULEVARD DU DOCTEUR GALVANI - 95585", "stop_name": "GALVANI - VOLTAIRE"}, "geometry": {"type": "Point", "coordinates": [2.370864116699428, 48.99603815234851]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1c0b13bdda30370e6762e8b73582859106a9ba4b", "fields": {"departement": "95", "stop_lat": 48.991552816451964, "code_postal": "95585", "stop_lon": 2.3746301578176694, "coord": [48.991552816451964, 2.3746301578176694], "stop_id": 4238654, "stop_desc": "FACE 4 AVENUE DIVISION LECLERC - 95585", "stop_name": "THEODORE BULLIER"}, "geometry": {"type": "Point", "coordinates": [2.3746301578176694, 48.991552816451964]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a93c5bbef1ff47db452f2364c32a9b8e4769533c", "fields": {"departement": "95", "stop_lat": 48.983445372512016, "code_postal": "95585", "stop_lon": 2.3796078265809943, "coord": [48.983445372512016, 2.3796078265809943], "stop_id": 4238657, "stop_desc": "AVENUE PAUL LANGEVIN - 95585", "stop_name": "PISCINE"}, "geometry": {"type": "Point", "coordinates": [2.3796078265809943, 48.983445372512016]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c9e30c4f8029ec3257ff5151259c23fe736fd035", "fields": {"departement": "95", "stop_lat": 48.975961680577434, "code_postal": "95268", "stop_lon": 2.3959425734505366, "coord": [48.975961680577434, 2.3959425734505366], "stop_id": 4238668, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 95268", "stop_name": "JEAN-BAPTISTE COROT - LAMARTINE"}, "geometry": {"type": "Point", "coordinates": [2.3959425734505366, 48.975961680577434]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "832bd50ef3a39d8f204bbe2d77d948b41afb4729", "fields": {"departement": "93", "stop_lat": 48.9519013403749, "code_postal": "93030", "stop_lon": 2.4168333559747754, "coord": [48.9519013403749, 2.4168333559747754], "stop_id": 4238686, "stop_desc": "6 AVENUE LOUIS LARIVIERE - 93030", "stop_name": "PLACE DU 16 AOUT 1943"}, "geometry": {"type": "Point", "coordinates": [2.4168333559747754, 48.9519013403749]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "373ede7bd4a8be894b29f55ad699fb8d4ef2d23c", "fields": {"departement": "93", "stop_lat": 48.93447002280072, "code_postal": "93013", "stop_lon": 2.425263733014868, "coord": [48.93447002280072, 2.425263733014868], "stop_id": 4238695, "stop_desc": "65 AVENUE DE LA DIVISION LECLERC - 93013", "stop_name": "ANIZAN CAVILLON - HOTEL DE VILLE"}, "geometry": {"type": "Point", "coordinates": [2.425263733014868, 48.93447002280072]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f8a0b39ee66586d72671c433c094beef32763861", "fields": {"departement": "93", "stop_lat": 48.93298788211472, "code_postal": "93013", "stop_lon": 2.4243200402955005, "coord": [48.93298788211472, 2.4243200402955005], "stop_id": 4238697, "stop_desc": "AVENUE JEAN JAURES - 93013", "stop_name": "JEAN JAURES - DIVISION LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.4243200402955005, 48.93298788211472]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "18d0714688579f2ca06c5197eda6b0c95e6c78bc", "fields": {"departement": "93", "stop_lat": 48.930973587101626, "code_postal": "93013", "stop_lon": 2.425994333071701, "coord": [48.930973587101626, 2.425994333071701], "stop_id": 4238699, "stop_desc": "PLACE DES DEPORTES - 93013", "stop_name": "LE BOURGET RER"}, "geometry": {"type": "Point", "coordinates": [2.425994333071701, 48.930973587101626]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dfcfaa4e0e34745a67466ca42d25d63f62d18fb9", "fields": {"departement": "95", "stop_lat": 48.978284356790724, "code_postal": "95585", "stop_lon": 2.3867846247994557, "coord": [48.978284356790724, 2.3867846247994557], "stop_id": 4238717, "stop_desc": "12 AVENUE PAUL VALERY - 95585", "stop_name": "LOCHERES"}, "geometry": {"type": "Point", "coordinates": [2.3867846247994557, 48.978284356790724]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "edd1d84ec68fe19225370646385183b9ea2cc49b", "fields": {"departement": "95", "stop_lat": 48.97356093396896, "code_postal": "95268", "stop_lon": 2.3986017741043617, "coord": [48.97356093396896, 2.3986017741043617], "stop_id": 4238723, "stop_desc": "AVENUE FRANCOIS MITTERRAND - 95268", "stop_name": "DE GAULLE - MITTERRAND"}, "geometry": {"type": "Point", "coordinates": [2.3986017741043617, 48.97356093396896]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f071c38998323aa11da11d653812a0fae734a5ce", "fields": {"departement": "95", "stop_lat": 48.971790664826926, "code_postal": "95268", "stop_lon": 2.3984358702053443, "coord": [48.971790664826926, 2.3984358702053443], "stop_id": 4238725, "stop_desc": "RUE LE NOTRE - 95268", "stop_name": "HOTEL DE VILLE DE GARGES-LES-GONESSE"}, "geometry": {"type": "Point", "coordinates": [2.3984358702053443, 48.971790664826926]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "27e6227f44b4a5e07aef4a09b09a4085a93b47dc", "fields": {"departement": "95", "stop_lat": 48.96899188793405, "code_postal": "95268", "stop_lon": 2.4057078437948904, "coord": [48.96899188793405, 2.4057078437948904], "stop_id": 4238729, "stop_desc": "AV DU GENERAL DE GAULLE - 95268", "stop_name": "LINO VENTURA"}, "geometry": {"type": "Point", "coordinates": [2.4057078437948904, 48.96899188793405]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d5311e3477d721dbe47c408e2df3005d6c13bc65", "fields": {"departement": "93", "stop_lat": 48.95413029004509, "code_postal": "93030", "stop_lon": 2.4164683469583084, "coord": [48.95413029004509, 2.4164683469583084], "stop_id": 4238737, "stop_desc": "AVENUE LOUIS LARIVIERE - 93030", "stop_name": "GABRIEL PERI"}, "geometry": {"type": "Point", "coordinates": [2.4164683469583084, 48.95413029004509]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "29a37f3e858eb79d787644ad20d2635d37ceaa08", "fields": {"departement": "93", "stop_lat": 48.94099671273499, "code_postal": "93030", "stop_lon": 2.4221643805930215, "coord": [48.94099671273499, 2.4221643805930215], "stop_id": 4238743, "stop_desc": "AVENUE MARECHAL LECLERC - 93030", "stop_name": "LA COMETE"}, "geometry": {"type": "Point", "coordinates": [2.4221643805930215, 48.94099671273499]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8c6de44e6147a6ac0433a9562136a03cd8c4c6a2", "fields": {"departement": "93", "stop_lat": 48.93285336721684, "code_postal": "93013", "stop_lon": 2.4239242493787803, "coord": [48.93285336721684, 2.4239242493787803], "stop_id": 4238751, "stop_desc": "2 AVENUE DE LA DIVISION LECLERC - 93013", "stop_name": "JEAN JAURES - DIVISION LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.4239242493787803, 48.93285336721684]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "56921016fbd0fdb8d24a960b92aac091afb710c3", "fields": {"departement": "95", "stop_lat": 48.99603815234851, "code_postal": "95585", "stop_lon": 2.370864116699428, "coord": [48.99603815234851, 2.370864116699428], "stop_id": 4238754, "stop_desc": "32 BOULEVARD DU DOCTEUR GALVANI - 95585", "stop_name": "GALVANI - VOLTAIRE"}, "geometry": {"type": "Point", "coordinates": [2.370864116699428, 48.99603815234851]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0b5083ec11e23b06ba5dbae50e1e28b85cab8eeb", "fields": {"departement": "95", "stop_lat": 49.0044038223668, "code_postal": "95585", "stop_lon": 2.373027680745698, "coord": [49.0044038223668, 2.373027680745698], "stop_id": 4238758, "stop_desc": "33 RUE GABRIEL PERI - 95585", "stop_name": "CHAMP DE CHARTRES"}, "geometry": {"type": "Point", "coordinates": [2.373027680745698, 49.0044038223668]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "175e6051ffbaec9a2302b1f1262df27150f1381d", "fields": {"departement": "95", "stop_lat": 49.00220200632929, "code_postal": "95585", "stop_lon": 2.3735724955463757, "coord": [49.00220200632929, 2.3735724955463757], "stop_id": 4238759, "stop_desc": "FACE 18 RUE GABRIEL PERI - 95585", "stop_name": "ECOLE JULES FERRY"}, "geometry": {"type": "Point", "coordinates": [2.3735724955463757, 49.00220200632929]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "753dc34d8beb1c7b78abd5abdf3b94e83538325f", "fields": {"departement": "95", "stop_lat": 48.991445119553724, "code_postal": "95585", "stop_lon": 2.374179444928489, "coord": [48.991445119553724, 2.374179444928489], "stop_id": 4238765, "stop_desc": "49 RUE PIERRE BROSSOLETTE - 95585", "stop_name": "THEODORE BULLIER"}, "geometry": {"type": "Point", "coordinates": [2.374179444928489, 48.991445119553724]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "326767599f5ecddf93b1cd5c0ef687eb0fbbf579", "fields": {"departement": "95", "stop_lat": 48.9734622776144, "code_postal": "95268", "stop_lon": 2.3982194329211333, "coord": [48.9734622776144, 2.3982194329211333], "stop_id": 4238773, "stop_desc": "AVENUE FRANCOIS MITTERRAND - 95268", "stop_name": "DE GAULLE - MITTERRAND"}, "geometry": {"type": "Point", "coordinates": [2.3982194329211333, 48.9734622776144]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f7132fb919b277d4e2a8584ea1574dbfb903230b", "fields": {"departement": "95", "stop_lat": 48.96616783392778, "code_postal": "95268", "stop_lon": 2.4095394609000014, "coord": [48.96616783392778, 2.4095394609000014], "stop_id": 4238777, "stop_desc": "AVENUE AMBROISE CROIZAT - 95268", "stop_name": "PLACE DU 19 MARS 1962"}, "geometry": {"type": "Point", "coordinates": [2.4095394609000014, 48.96616783392778]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b593c0c698c900cbae78589264866e067b0cd91a", "fields": {"departement": "92", "stop_lat": 48.92522992750631, "code_postal": "92025", "stop_lon": 2.2471474208812148, "coord": [48.92522992750631, 2.2471474208812148], "stop_id": 4274233, "stop_desc": "29 BOULEVARD EDGAR QUINET - 92025", "stop_name": "LES RENOUILLERS"}, "geometry": {"type": "Point", "coordinates": [2.2471474208812148, 48.92522992750631]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2746d6a40a4385f6112de43f711ff549cae8463b", "fields": {"departement": "92", "stop_lat": 48.92299546791915, "code_postal": "92025", "stop_lon": 2.2516107928123716, "coord": [48.92299546791915, 2.2516107928123716], "stop_id": 4274235, "stop_desc": "5 RUE GABRIEL PERI - 92025", "stop_name": "EGLISE DE COLOMBES"}, "geometry": {"type": "Point", "coordinates": [2.2516107928123716, 48.92299546791915]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "47af78196c608a84166a50901762473df5986cef", "fields": {"departement": "92", "stop_lat": 48.906780849665886, "code_postal": "92026", "stop_lon": 2.261876202325805, "coord": [48.906780849665886, 2.261876202325805], "stop_id": 4274260, "stop_desc": "29 AVENUE DE L'EUROPE - 92026", "stop_name": "MOULIN DES BRUYERES"}, "geometry": {"type": "Point", "coordinates": [2.261876202325805, 48.906780849665886]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8397d83df439561d16fc0e9b88cc753dc446c0b0", "fields": {"departement": "92", "stop_lat": 48.90337876169204, "code_postal": "92026", "stop_lon": 2.2685201312486116, "coord": [48.90337876169204, 2.2685201312486116], "stop_id": 4274264, "stop_desc": "FACE 53 BOULEVARD GEORGES CLEMENCEAU - 92026", "stop_name": "PLACE DE BELGIQUE"}, "geometry": {"type": "Point", "coordinates": [2.2685201312486116, 48.90337876169204]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9064e23378acc555fd4d26b1bbc39b2328a429f4", "fields": {"departement": "92", "stop_lat": 48.90233974527351, "code_postal": "92026", "stop_lon": 2.2748604488756095, "coord": [48.90233974527351, 2.2748604488756095], "stop_id": 4274265, "stop_desc": "FACE 4 AVENUE DU 11 NOVEMBRE - 92026", "stop_name": "PLACE MERMOZ"}, "geometry": {"type": "Point", "coordinates": [2.2748604488756095, 48.90233974527351]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "019d6dc2a8d17c63c5dd4c247913787d001ec47e", "fields": {"departement": "92", "stop_lat": 48.896472832917475, "code_postal": "92044", "stop_lon": 2.278152483179007, "coord": [48.896472832917475, 2.278152483179007], "stop_id": 4274269, "stop_desc": "FACE 143 RUE DANTON - 92044", "stop_name": "POMPIDOU"}, "geometry": {"type": "Point", "coordinates": [2.278152483179007, 48.896472832917475]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3b9bea12cbce9a4fdfbf05c0254f305efbb2cbee", "fields": {"departement": "93", "stop_lat": 48.95663998393267, "code_postal": "93005", "stop_lon": 2.4654219542703824, "coord": [48.95663998393267, 2.4654219542703824], "stop_id": 4274274, "stop_desc": "VOIE PARALLELE A L'ENTREPOT NUMERO 1 - 93005", "stop_name": "GARONOR"}, "geometry": {"type": "Point", "coordinates": [2.4654219542703824, 48.95663998393267]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c8a97a3f936a0e849f8e7ba70edb74320269b81f", "fields": {"departement": "93", "stop_lat": 48.954338518544674, "code_postal": "93005", "stop_lon": 2.457624484216734, "coord": [48.954338518544674, 2.457624484216734], "stop_id": 4274278, "stop_desc": "RUE ROBERT BREMOND - 93005", "stop_name": "ROBERT BREMOND"}, "geometry": {"type": "Point", "coordinates": [2.457624484216734, 48.954338518544674]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "03f060093a98230c19d7212bd436e47a0b71b897", "fields": {"departement": "93", "stop_lat": 48.95030571554676, "code_postal": "93007", "stop_lon": 2.4641373075254696, "coord": [48.95030571554676, 2.4641373075254696], "stop_id": 4274282, "stop_desc": "FACE 9 AVENUE EDOUARD RENAULT - 93007", "stop_name": "DESCARTES - RENAULT"}, "geometry": {"type": "Point", "coordinates": [2.4641373075254696, 48.95030571554676]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "00dbab3e82f2c2fde142fc0f6f3f5e9c0713f88a", "fields": {"departement": "93", "stop_lat": 48.94759792571279, "code_postal": "93007", "stop_lon": 2.4581545737144146, "coord": [48.94759792571279, 2.4581545737144146], "stop_id": 4274291, "stop_desc": "AVENUE DES COSMONAUTES - 93007", "stop_name": "DIVISION LECLERC - WALLON"}, "geometry": {"type": "Point", "coordinates": [2.4581545737144146, 48.94759792571279]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6e3d516bc7a6a05bf8913e97d0fe62fe4b7d5d13", "fields": {"departement": "93", "stop_lat": 48.94052953216569, "code_postal": "93007", "stop_lon": 2.462776414924133, "coord": [48.94052953216569, 2.462776414924133], "stop_id": 4274295, "stop_desc": "87 AVENUE HENRI BARBUSSE - 93007", "stop_name": "AUDRAN"}, "geometry": {"type": "Point", "coordinates": [2.462776414924133, 48.94052953216569]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3d77085d7c17eeb9dea64d4e0df572072765507e", "fields": {"departement": "93", "stop_lat": 48.940233053832436, "code_postal": "93007", "stop_lon": 2.4626938434728123, "coord": [48.940233053832436, 2.4626938434728123], "stop_id": 4274296, "stop_desc": "74-76 AVENUE HENRI BARBUSSE - 93007", "stop_name": "AUDRAN"}, "geometry": {"type": "Point", "coordinates": [2.4626938434728123, 48.940233053832436]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "04f69b5c115f7d155a6a37efc76b4323d3659443", "fields": {"departement": "93", "stop_lat": 48.93109081807379, "code_postal": "93029", "stop_lon": 2.456465631513302, "coord": [48.93109081807379, 2.456465631513302], "stop_id": 4274305, "stop_desc": "RUE MAURICE BERNARD - 93029", "stop_name": "PLACE JOFFRE"}, "geometry": {"type": "Point", "coordinates": [2.456465631513302, 48.93109081807379]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ecfefa754c797c0a93ea8e060e4346d144f0e58c", "fields": {"departement": "93", "stop_lat": 48.92362033739707, "code_postal": "93029", "stop_lon": 2.458794128458234, "coord": [48.92362033739707, 2.458794128458234], "stop_id": 4274309, "stop_desc": "FACE 9-11 RUE DU DOCTEUR ALBERT SCHWEITZER - 93029", "stop_name": "LYCEE EUGENE DELACROIX"}, "geometry": {"type": "Point", "coordinates": [2.458794128458234, 48.92362033739707]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "866379bec488fe8f3da2a011095970375339b54f", "fields": {"departement": "94", "stop_lat": 48.75386172672599, "code_postal": "94034", "stop_lon": 2.325251903610218, "coord": [48.75386172672599, 2.325251903610218], "stop_id": 4274398, "stop_desc": "14 RUE ALBERT ROPER - 94034", "stop_name": "ALBERT ROPER"}, "geometry": {"type": "Point", "coordinates": [2.325251903610218, 48.75386172672599]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "09db76352e9df8cc49cd7c56d311c6492a8d5f1b", "fields": {"departement": "94", "stop_lat": 48.75524612449099, "code_postal": "94034", "stop_lon": 2.3276848270817165, "coord": [48.75524612449099, 2.3276848270817165], "stop_id": 4274399, "stop_desc": "AV EDOUARD HERRIOT - 94034", "stop_name": "CLOS LA GARENNE"}, "geometry": {"type": "Point", "coordinates": [2.3276848270817165, 48.75524612449099]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "71a02a0348d627b88bb8be080e94942b77da85d8", "fields": {"departement": "94", "stop_lat": 48.76106133960879, "code_postal": "94034", "stop_lon": 2.326405820962682, "coord": [48.76106133960879, 2.326405820962682], "stop_id": 4274401, "stop_desc": "FACE 39 RUE EMILE ZOLA - 94034", "stop_name": "CHARCOT - ZOLA"}, "geometry": {"type": "Point", "coordinates": [2.326405820962682, 48.76106133960879]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c2df3741fcff21f4b4a2049fdc6d09316c4acdc8", "fields": {"departement": "94", "stop_lat": 48.76603144806215, "code_postal": "94034", "stop_lon": 2.3234135845464023, "coord": [48.76603144806215, 2.3234135845464023], "stop_id": 4274403, "stop_desc": "1 R JEAN MOULIN - 94034", "stop_name": "AVARA - GYMNASE VALLEE AUX RENARDS"}, "geometry": {"type": "Point", "coordinates": [2.3234135845464023, 48.76603144806215]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f819bf8e8fba6c135ebcabaf82c0d8d5e4ff6930", "fields": {"departement": "94", "stop_lat": 48.769150449119266, "code_postal": "94038", "stop_lon": 2.324677291068708, "coord": [48.769150449119266, 2.324677291068708], "stop_id": 4274404, "stop_desc": "FACE 72 R DE LA VALLEE AUX RENARDS - 94038", "stop_name": "A.R.E.P.A."}, "geometry": {"type": "Point", "coordinates": [2.324677291068708, 48.769150449119266]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ea505b28bb91dc1a8268cfec3913872dbe31d414", "fields": {"departement": "94", "stop_lat": 48.782039755746986, "code_postal": "94038", "stop_lon": 2.3436333359184234, "coord": [48.782039755746986, 2.3436333359184234], "stop_id": 4274414, "stop_desc": "42 AV DU GENERAL DE GAULLE - 94038", "stop_name": "TENNIS"}, "geometry": {"type": "Point", "coordinates": [2.3436333359184234, 48.782039755746986]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ab3ceff2887edfcc117a17b7f7bc9994c2677805", "fields": {"departement": "94", "stop_lat": 48.7800355543998, "code_postal": "94038", "stop_lon": 2.3408314847242293, "coord": [48.7800355543998, 2.3408314847242293], "stop_id": 4274416, "stop_desc": "58 BOULEVARD PAUL VAILLANT COUTURIER - 94038", "stop_name": "DE GAULLE - GOUNOD - TABANOU."}, "geometry": {"type": "Point", "coordinates": [2.3408314847242293, 48.7800355543998]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "16a21215e45e4d0975a34579af0ab33242ca4f4f", "fields": {"departement": "94", "stop_lat": 48.778903076266886, "code_postal": "94038", "stop_lon": 2.340545812408918, "coord": [48.778903076266886, 2.340545812408918], "stop_id": 4274417, "stop_desc": "BOULEVARD PAUL VAILLANT COUTURIER - 94038", "stop_name": "HENRI THIRARD - LEON JOUHAUX."}, "geometry": {"type": "Point", "coordinates": [2.340545812408918, 48.778903076266886]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "07b22875d14eb180d2cdf408fd1d41a6aee602a8", "fields": {"departement": "94", "stop_lat": 48.774695416585395, "code_postal": "94021", "stop_lon": 2.3549600895228378, "coord": [48.774695416585395, 2.3549600895228378], "stop_id": 4274422, "stop_desc": "FACE 25 RUE PAUL HOCHART - 94021", "stop_name": "RUE DE LALLIER"}, "geometry": {"type": "Point", "coordinates": [2.3549600895228378, 48.774695416585395]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ee7cfd1ce32db803da87ca95cdf5069f3cad58ec", "fields": {"departement": "94", "stop_lat": 48.779160107992375, "code_postal": "94038", "stop_lon": 2.3667798339164943, "coord": [48.779160107992375, 2.3667798339164943], "stop_id": 4274424, "stop_desc": "RUE PAUL HOCHART - 94038", "stop_name": "DOMAINE CHERIOUX"}, "geometry": {"type": "Point", "coordinates": [2.3667798339164943, 48.779160107992375]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2769fb806ec8a787129efb171880c31dbebb25d9", "fields": {"departement": "94", "stop_lat": 48.738847617809775, "code_postal": "94054", "stop_lon": 2.369542732850051, "coord": [48.738847617809775, 2.369542732850051], "stop_id": 4284903, "stop_desc": "AVENUE DU MARECHAL DEVAUX - 94054", "stop_name": "CAROLINE AIGLE (ORLYFRET)"}, "geometry": {"type": "Point", "coordinates": [2.369542732850051, 48.738847617809775]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e5b146f8a96592c163d8eb0265da21096b52d52f", "fields": {"departement": "91", "stop_lat": 48.73983857298454, "code_postal": "91479", "stop_lon": 2.359813259979815, "coord": [48.73983857298454, 2.359813259979815], "stop_id": 4284904, "stop_desc": "2 ALLEE HELENE BOUCHER - 91479", "stop_name": "HELENE BOUCHER (ORLYTECH)"}, "geometry": {"type": "Point", "coordinates": [2.359813259979815, 48.73983857298454]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2d187cf7069c71e9a6aeee6fbda427520a94777f", "fields": {"departement": "94", "stop_lat": 48.75022088715477, "code_postal": "94065", "stop_lon": 2.3543672852838644, "coord": [48.75022088715477, 2.3543672852838644], "stop_id": 4284910, "stop_desc": "RUE SAARINEN - 94065", "stop_name": "SAARINEN (PARC SILIC NORD)"}, "geometry": {"type": "Point", "coordinates": [2.3543672852838644, 48.75022088715477]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "514cb10530833a2da017fde15067201988ddd424", "fields": {"departement": "94", "stop_lat": 48.75289801746422, "code_postal": "94065", "stop_lon": 2.362020982728848, "coord": [48.75289801746422, 2.362020982728848], "stop_id": 4284914, "stop_desc": "NR - 94065", "stop_name": "PLACE DE LA LOGISTIQUE (PLATEFORME SOGARIS)"}, "geometry": {"type": "Point", "coordinates": [2.362020982728848, 48.75289801746422]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4ded929fadbd07e23933f6c4059ccc167d6efb54", "fields": {"departement": "94", "stop_lat": 48.75297897855814, "code_postal": "94065", "stop_lon": 2.3616947906418555, "coord": [48.75297897855814, 2.3616947906418555], "stop_id": 4284915, "stop_desc": "NR - 94065", "stop_name": "PLACE DE LA LOGISTIQUE (PLATEFORME SOGARIS)"}, "geometry": {"type": "Point", "coordinates": [2.3616947906418555, 48.75297897855814]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fe2ad85a446ca2e3c13cfdc71d4a7be4d4a1b8d8", "fields": {"departement": "94", "stop_lat": 48.75986290682859, "code_postal": "94021", "stop_lon": 2.366129915658932, "coord": [48.75986290682859, 2.366129915658932], "stop_id": 4284918, "stop_desc": "RUE DE LA POMPE - 94021", "stop_name": "PORTE DE THIAIS (MARCHE INTERNATIONAL)"}, "geometry": {"type": "Point", "coordinates": [2.366129915658932, 48.75986290682859]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "73b5b2f21f65bb6731ce04ff4462213a125b83aa", "fields": {"departement": "94", "stop_lat": 48.76818535624203, "code_postal": "94073", "stop_lon": 2.3682284675383176, "coord": [48.76818535624203, 2.3682284675383176], "stop_id": 4284922, "stop_desc": "AVENUE DE FONTAINEBLEAU - 94073", "stop_name": "BRETAGNE"}, "geometry": {"type": "Point", "coordinates": [2.3682284675383176, 48.76818535624203]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9175bbcc6773e91751d5315739c678aa74eb34c2", "fields": {"departement": "94", "stop_lat": 48.77177164960806, "code_postal": "94081", "stop_lon": 2.3679994421847956, "coord": [48.77177164960806, 2.3679994421847956], "stop_id": 4284923, "stop_desc": "ROUTE DE FONTAINEBLEAU - 94081", "stop_name": "MOULIN VERT"}, "geometry": {"type": "Point", "coordinates": [2.3679994421847956, 48.77177164960806]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3a1017b4eff314d72fc043f884b2b64c349c2252", "fields": {"departement": "94", "stop_lat": 48.77906104165432, "code_postal": "94021", "stop_lon": 2.367568564265934, "coord": [48.77906104165432, 2.367568564265934], "stop_id": 4284925, "stop_desc": "ROUTE DE FONTAINEBLEAU - 94021", "stop_name": "DOMAINE CHERIOUX"}, "geometry": {"type": "Point", "coordinates": [2.367568564265934, 48.77906104165432]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "48e41fdadb92a6b169e542b8cf7846044c30c8e9", "fields": {"departement": "94", "stop_lat": 48.80076035769578, "code_postal": "94076", "stop_lon": 2.3553091150312904, "coord": [48.80076035769578, 2.3553091150312904], "stop_id": 4293177, "stop_desc": "FACE 4 BOULEVARD CHASTENET DE GERY - 94076", "stop_name": "AMBROISE CROIZAT"}, "geometry": {"type": "Point", "coordinates": [2.3553091150312904, 48.80076035769578]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "196d2ce2fa2e5bd14254458d2cf6ddbb12deee6b", "fields": {"departement": "94", "stop_lat": 48.797876157007266, "code_postal": "94076", "stop_lon": 2.3478527380649643, "coord": [48.797876157007266, 2.3478527380649643], "stop_id": 4293183, "stop_desc": "80 AVENUE DU PRESIDENT SALVADOR ALLENDE - 94076", "stop_name": "BELVEDERE"}, "geometry": {"type": "Point", "coordinates": [2.3478527380649643, 48.797876157007266]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f9ee36e55b0ef115f3b19ab32e5b3875f89c45e4", "fields": {"departement": "94", "stop_lat": 48.79738175837985, "code_postal": "94076", "stop_lon": 2.3485736792117518, "coord": [48.79738175837985, 2.3485736792117518], "stop_id": 4293184, "stop_desc": "FACE 80 AVENUE DU PRESIDENT ALLENDE - 94076", "stop_name": "BELVEDERE"}, "geometry": {"type": "Point", "coordinates": [2.3485736792117518, 48.79738175837985]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6b8e38a2ed28ac293843113575e070433aee879e", "fields": {"departement": "94", "stop_lat": 48.80001559599069, "code_postal": "94003", "stop_lon": 2.343050518944524, "coord": [48.80001559599069, 2.343050518944524], "stop_id": 4293185, "stop_desc": "AVENUE PAUL VAILLANT COUTURIER - 94003", "stop_name": "QUATRE CHEMINS"}, "geometry": {"type": "Point", "coordinates": [2.343050518944524, 48.80001559599069]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "67d23f5ccb5e287198d02df178f5ce87d206acfa", "fields": {"departement": "94", "stop_lat": 48.799853818134736, "code_postal": "94003", "stop_lon": 2.3429824748040686, "coord": [48.799853818134736, 2.3429824748040686], "stop_id": 4293186, "stop_desc": "74 AVENUE PAUL VAILLANT COUTURIER - 94003", "stop_name": "QUATRE CHEMINS"}, "geometry": {"type": "Point", "coordinates": [2.3429824748040686, 48.799853818134736]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "acbe3df4b6c04657419cada792110d6e2f97feb8", "fields": {"departement": "94", "stop_lat": 48.80320641374882, "code_postal": "94003", "stop_lon": 2.3381118633136007, "coord": [48.80320641374882, 2.3381118633136007], "stop_id": 4293188, "stop_desc": "10 AV PAUL VAILLANT COUTURIER - 94003", "stop_name": "MAISON DU GRAND CEDRE"}, "geometry": {"type": "Point", "coordinates": [2.3381118633136007, 48.80320641374882]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4577c398bc1b5656d2fefba45e83c5e68f031d74", "fields": {"departement": "94", "stop_lat": 48.81092692369328, "code_postal": "94003", "stop_lon": 2.3361115979106186, "coord": [48.81092692369328, 2.3361115979106186], "stop_id": 4293194, "stop_desc": "88 AVENUE JEAN JAURES - 94003", "stop_name": "CHAPERON VERT"}, "geometry": {"type": "Point", "coordinates": [2.3361115979106186, 48.81092692369328]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "714ae4be988c91c23daccd1aee325bd9fadc1867", "fields": {"departement": "94", "stop_lat": 48.79784034934669, "code_postal": "94016", "stop_lon": 2.328411632325268, "coord": [48.79784034934669, 2.328411632325268], "stop_id": 4293202, "stop_desc": "FACE 28 AVENUE CARNOT - 94016", "stop_name": "ARCUEIL-CACHAN RER"}, "geometry": {"type": "Point", "coordinates": [2.328411632325268, 48.79784034934669]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fdbbe6c0c0f25659786971f8f2a000411a99e615", "fields": {"departement": "94", "stop_lat": 48.78703722781365, "code_postal": "94016", "stop_lon": 2.337173067552837, "coord": [48.78703722781365, 2.337173067552837], "stop_id": 4293212, "stop_desc": "78 AV LEON BLUM - 94016", "stop_name": "BLUM - SAUSSAIES"}, "geometry": {"type": "Point", "coordinates": [2.337173067552837, 48.78703722781365]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2066efbd6e79342a0cff3dabc6ce41baf6021f42", "fields": {"departement": "94", "stop_lat": 48.81018076018969, "code_postal": "94003", "stop_lon": 2.3306276219485342, "coord": [48.81018076018969, 2.3306276219485342], "stop_id": 4293222, "stop_desc": "28 AVENUE VLADIMIR ILITCH LENINE - 94003", "stop_name": "JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.3306276219485342, 48.81018076018969]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "df5a1ac8903f68ba633297cc8b6c5bcaf839d9e8", "fields": {"departement": "94", "stop_lat": 48.803420226026184, "code_postal": "94076", "stop_lon": 2.358507485336182, "coord": [48.803420226026184, 2.358507485336182], "stop_id": 4293245, "stop_desc": "7 BOULEVARD CHASTENET DE GERY - 94076", "stop_name": "LES COQUETTES"}, "geometry": {"type": "Point", "coordinates": [2.358507485336182, 48.803420226026184]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "01bb6ef95b34badc8142923780ae6ef56efd3cb9", "fields": {"departement": "94", "stop_lat": 48.8061526129115, "code_postal": "94076", "stop_lon": 2.3579779362065865, "coord": [48.8061526129115, 2.3579779362065865], "stop_id": 4293246, "stop_desc": "5 BOULEVARD CHASTENET DE GERY - 94076", "stop_name": "CHASTENET DE GERY"}, "geometry": {"type": "Point", "coordinates": [2.3579779362065865, 48.8061526129115]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "afe6975bc48e8e3f4949e6f4fb889d4b785d0663", "fields": {"departement": "94", "stop_lat": 48.81225601159191, "code_postal": "94043", "stop_lon": 2.353475970789407, "coord": [48.81225601159191, 2.353475970789407], "stop_id": 4293249, "stop_desc": "FACE 56 RUE DE LA CONVENTION - 94043", "stop_name": "CONVENTION - JAURES"}, "geometry": {"type": "Point", "coordinates": [2.353475970789407, 48.81225601159191]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c65d6b7421f8eba855ba5cfb3c08c9626a860a61", "fields": {"departement": "95", "stop_lat": 49.01594193527051, "code_postal": "95527", "stop_lon": 2.5318165237753236, "coord": [49.01594193527051, 2.5318165237753236], "stop_id": 4294128, "stop_desc": "RUE DES ANNIVERSAIRES - 95527", "stop_name": "GENDARMERIE"}, "geometry": {"type": "Point", "coordinates": [2.5318165237753236, 49.01594193527051]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9ec3395b5a9844b89ac302774446bf8866b0fbb3", "fields": {"departement": "91", "stop_lat": 48.72492240887915, "code_postal": "91377", "stop_lon": 2.2606997511595344, "coord": [48.72492240887915, 2.2606997511595344], "stop_id": 4314738, "stop_desc": "RUE CARNOT - 91377", "stop_name": "MASSY-PALAISEAU RER"}, "geometry": {"type": "Point", "coordinates": [2.2606997511595344, 48.72492240887915]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a3eeded5ee01c21d007151074bc9f9645d6c8764", "fields": {"departement": "91", "stop_lat": 48.720128923204506, "code_postal": "91377", "stop_lon": 2.2712211042340074, "coord": [48.720128923204506, 2.2712211042340074], "stop_id": 4314742, "stop_desc": "FACE 17 RUE AMPERE - 91377", "stop_name": "CIMETIERE DE MASSY"}, "geometry": {"type": "Point", "coordinates": [2.2712211042340074, 48.720128923204506]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ea8363b4f62b6060fa44e3e4926a07f98e830f35", "fields": {"departement": "91", "stop_lat": 48.72269936030673, "code_postal": "91377", "stop_lon": 2.270783119401868, "coord": [48.72269936030673, 2.270783119401868], "stop_id": 4314745, "stop_desc": "6 RUE GALVANI - 91377", "stop_name": "GALVANI SUD"}, "geometry": {"type": "Point", "coordinates": [2.270783119401868, 48.72269936030673]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "19ac32fb85d3cae98a6c175975f34668a0cab37a", "fields": {"departement": "91", "stop_lat": 48.72805807374259, "code_postal": "91377", "stop_lon": 2.2737924577619357, "coord": [48.72805807374259, 2.2737924577619357], "stop_id": 4314751, "stop_desc": "RUE DU 8 MAI 1945 - 91377", "stop_name": "8 MAI 1945"}, "geometry": {"type": "Point", "coordinates": [2.2737924577619357, 48.72805807374259]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b858b5ac6630b1feb48ccd0a941fe44916ff81b2", "fields": {"departement": "91", "stop_lat": 48.729353668825254, "code_postal": "91377", "stop_lon": 2.2762229087458588, "coord": [48.729353668825254, 2.2762229087458588], "stop_id": 4314753, "stop_desc": "3 RUE FUSTEL DE COULANGES - 91377", "stop_name": "GABRIEL PERI"}, "geometry": {"type": "Point", "coordinates": [2.2762229087458588, 48.729353668825254]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "73cec676c06c6439218073a1eb65c5880622816f", "fields": {"departement": "91", "stop_lat": 48.732252260868215, "code_postal": "91377", "stop_lon": 2.2853775008007173, "coord": [48.732252260868215, 2.2853775008007173], "stop_id": 4314760, "stop_desc": "RUE DE LISBONNE - 91377", "stop_name": "HELENE BOUCHER"}, "geometry": {"type": "Point", "coordinates": [2.2853775008007173, 48.732252260868215]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bcf96157a53a7680c952f029e13340b53f1dd895", "fields": {"departement": "91", "stop_lat": 48.73294496958157, "code_postal": "91377", "stop_lon": 2.28678993142112, "coord": [48.73294496958157, 2.28678993142112], "stop_id": 4314762, "stop_desc": "67 RUE DES CANADIENS - 91377", "stop_name": "AVENUE SAINT-MARC"}, "geometry": {"type": "Point", "coordinates": [2.28678993142112, 48.73294496958157]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2e1e9148a9f1316e0e26fe1c6b6cb1b5c3b73310", "fields": {"departement": "91", "stop_lat": 48.73172414014607, "code_postal": "91377", "stop_lon": 2.2906635223453393, "coord": [48.73172414014607, 2.2906635223453393], "stop_id": 4314767, "stop_desc": "PLACE SAINT EXUPERY - 91377", "stop_name": "MASSY-OPERA THEATRE"}, "geometry": {"type": "Point", "coordinates": [2.2906635223453393, 48.73172414014607]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1eeee51fb03034a2ab79caa809492f7dc0864bbf", "fields": {"departement": "91", "stop_lat": 48.72284681621443, "code_postal": "91377", "stop_lon": 2.2618303676799454, "coord": [48.72284681621443, 2.2618303676799454], "stop_id": 4314771, "stop_desc": "8-10 AVENUE RAMOLFO GARNIER - 91377", "stop_name": "RUE DE PARIS"}, "geometry": {"type": "Point", "coordinates": [2.2618303676799454, 48.72284681621443]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "42028368fae053874392302d86b1cc8994215a69", "fields": {"departement": "91", "stop_lat": 48.71952362096611, "code_postal": "91377", "stop_lon": 2.265896864471809, "coord": [48.71952362096611, 2.265896864471809], "stop_id": 4314773, "stop_desc": "9 RUE AMPERE - 91377", "stop_name": "AMPERE SUD"}, "geometry": {"type": "Point", "coordinates": [2.265896864471809, 48.71952362096611]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "23194a38bc2be143c237f7c493c8376972cb2bc5", "fields": {"departement": "91", "stop_lat": 48.722573795601974, "code_postal": "91377", "stop_lon": 2.2712723399342725, "coord": [48.722573795601974, 2.2712723399342725], "stop_id": 4314776, "stop_desc": "3 RUE GALVANI - 91377", "stop_name": "GALVANI SUD"}, "geometry": {"type": "Point", "coordinates": [2.2712723399342725, 48.722573795601974]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bf0f362829711ad2dace7c3f3b5a439ba0e3a3c8", "fields": {"departement": "91", "stop_lat": 48.728042941856216, "code_postal": "91377", "stop_lon": 2.2793629122347263, "coord": [48.728042941856216, 2.2793629122347263], "stop_id": 4314786, "stop_desc": "54 RUE DE LONGJUMEAU - 91377", "stop_name": "JEAN MERMOZ"}, "geometry": {"type": "Point", "coordinates": [2.2793629122347263, 48.728042941856216]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b0fea8e80afe7c71425b39a6a24d1d381260e9ee", "fields": {"departement": "91", "stop_lat": 48.728177760401586, "code_postal": "91377", "stop_lon": 2.27934917567897, "coord": [48.728177760401586, 2.27934917567897], "stop_id": 4314787, "stop_desc": "29 RUE DE LONGJUMEAU - 91377", "stop_name": "JEAN MERMOZ"}, "geometry": {"type": "Point", "coordinates": [2.27934917567897, 48.728177760401586]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "286709b2fd333cba338c8b40b448231d48a03eda", "fields": {"departement": "91", "stop_lat": 48.729699558758426, "code_postal": "91377", "stop_lon": 2.2853392869169173, "coord": [48.729699558758426, 2.2853392869169173], "stop_id": 4314790, "stop_desc": "RUE D'ESPAGNE - 91377", "stop_name": "MOSCOU-ROME"}, "geometry": {"type": "Point", "coordinates": [2.2853392869169173, 48.729699558758426]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8abce2e37c8e867fb72463088920ea025cb7b7f1", "fields": {"departement": "91", "stop_lat": 48.732252260868215, "code_postal": "91377", "stop_lon": 2.2853775008007173, "coord": [48.732252260868215, 2.2853775008007173], "stop_id": 4314792, "stop_desc": "RUE DE LISBONNE - 91377", "stop_name": "HELENE BOUCHER"}, "geometry": {"type": "Point", "coordinates": [2.2853775008007173, 48.732252260868215]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "402e73adcb641fd74190a5df03b07389632cbbde", "fields": {"departement": "91", "stop_lat": 48.73370125203245, "code_postal": "91377", "stop_lon": 2.2898600642683493, "coord": [48.73370125203245, 2.2898600642683493], "stop_id": 4314796, "stop_desc": "RUE DES CANADIENS - 91377", "stop_name": "PLACE DE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.2898600642683493, 48.73370125203245]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1f9e933f59ad265fb771dcb59558860fcf640351", "fields": {"departement": "94", "stop_lat": 48.745987423719335, "code_postal": "94065", "stop_lon": 2.354488211356527, "coord": [48.745987423719335, 2.354488211356527], "stop_id": 4314825, "stop_desc": "43 AVENUE ROBERT SCHUMAN - 94065", "stop_name": "ROBERT SCHUMAN"}, "geometry": {"type": "Point", "coordinates": [2.354488211356527, 48.745987423719335]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "512bab4be72457a89c9025fab88154eddeba456f", "fields": {"departement": "94", "stop_lat": 48.74484505519896, "code_postal": "94065", "stop_lon": 2.3596659339806934, "coord": [48.74484505519896, 2.3596659339806934], "stop_id": 4314830, "stop_desc": "RUE DES SOLETS - 94065", "stop_name": "LINDBERGH"}, "geometry": {"type": "Point", "coordinates": [2.3596659339806934, 48.74484505519896]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5df6aa5474ca9cd691138d2d4dffad37d67a51f4", "fields": {"departement": "94", "stop_lat": 48.748824445429925, "code_postal": "94073", "stop_lon": 2.369970278656935, "coord": [48.748824445429925, 2.369970278656935], "stop_id": 4314835, "stop_desc": "RUE DES ALOUETTES - 94073", "stop_name": "HAUTS FLOUVIERS"}, "geometry": {"type": "Point", "coordinates": [2.369970278656935, 48.748824445429925]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "63559945d7044f63d824dba71538731ddb731557", "fields": {"departement": "94", "stop_lat": 48.752661280760584, "code_postal": "94073", "stop_lon": 2.3738194740816083, "coord": [48.752661280760584, 2.3738194740816083], "stop_id": 4314837, "stop_desc": "RUE DES ALOUETTES - 94073", "stop_name": "LES ALOUETTES-PONT D'ESPAGNE"}, "geometry": {"type": "Point", "coordinates": [2.3738194740816083, 48.752661280760584]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2235c81534432a9c2cc9b4de7b3da8af59a633c6", "fields": {"departement": "75", "stop_lat": 48.89290155427124, "code_postal": "75118", "stop_lon": 2.340880166724139, "coord": [48.89290155427124, 2.340880166724139], "stop_id": 5770815, "stop_desc": "131 RUE ORDENER - 75118", "stop_name": "DUHESME - LE RUISSEAU"}, "geometry": {"type": "Point", "coordinates": [2.340880166724139, 48.89290155427124]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cdbec4e3372c0161f6601f76e0d7e610596cad72", "fields": {"departement": "75", "stop_lat": 48.89392614472472, "code_postal": "75118", "stop_lon": 2.336709485973613, "coord": [48.89392614472472, 2.336709485973613], "stop_id": 5770816, "stop_desc": "108 RUE DAMREMONT - 75118", "stop_name": "DAMREMONT - ORDENER"}, "geometry": {"type": "Point", "coordinates": [2.336709485973613, 48.89392614472472]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "10b190da778a15b5ec692de93ec386db71d094a4", "fields": {"departement": "75", "stop_lat": 48.89548092204695, "code_postal": "75118", "stop_lon": 2.337827155798868, "coord": [48.89548092204695, 2.337827155798868], "stop_id": 5770818, "stop_desc": "134 RUE DAMREMONT - 75118", "stop_name": "DAMREMONT - CHAMPIONNET"}, "geometry": {"type": "Point", "coordinates": [2.337827155798868, 48.89548092204695]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "044c7abc491d08a1e4c70025bef345f4636f371c", "fields": {"departement": "92", "stop_lat": 48.898543387242235, "code_postal": "92026", "stop_lon": 2.2419458378392783, "coord": [48.898543387242235, 2.2419458378392783], "stop_id": 5775575, "stop_desc": "27 RUE GAULTIER - 92026", "stop_name": "NORMANDIE"}, "geometry": {"type": "Point", "coordinates": [2.2419458378392783, 48.898543387242235]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "116a31eba4df782f0e4c2087efc6ca7aa0f6fdad", "fields": {"departement": "92", "stop_lat": 48.906834164884636, "code_postal": "92009", "stop_lon": 2.2609217929327587, "coord": [48.906834164884636, 2.2609217929327587], "stop_id": 5775584, "stop_desc": "68 AVENUE DE L'EUROPE - 92009", "stop_name": "MOULIN DES BRUYERES"}, "geometry": {"type": "Point", "coordinates": [2.2609217929327587, 48.906834164884636]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4af16a37d574017fa5e841a073f6cb3538b2517d", "fields": {"departement": "92", "stop_lat": 48.90869960422468, "code_postal": "92004", "stop_lon": 2.269385635682005, "coord": [48.90869960422468, 2.269385635682005], "stop_id": 5775587, "stop_desc": "49 AVENUE FAIDHERBE - 92004", "stop_name": "BALZAC"}, "geometry": {"type": "Point", "coordinates": [2.269385635682005, 48.90869960422468]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0894f73d860d456c8f856ce076b1d57c91b17b73", "fields": {"departement": "92", "stop_lat": 48.909356955092186, "code_postal": "92004", "stop_lon": 2.271702550204557, "coord": [48.909356955092186, 2.271702550204557], "stop_id": 5775588, "stop_desc": "AVENUE FAIDHERBE - 92004", "stop_name": "CHANZY"}, "geometry": {"type": "Point", "coordinates": [2.271702550204557, 48.909356955092186]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f002749225b20d571451f9bb192dcaca566f75c1", "fields": {"departement": "92", "stop_lat": 48.919840075681044, "code_postal": "92004", "stop_lon": 2.2799940540701154, "coord": [48.919840075681044, 2.2799940540701154], "stop_id": 5775593, "stop_desc": "192 AVENUE D'ARGENTEUIL - 92004", "stop_name": "BOURGUIGNONS"}, "geometry": {"type": "Point", "coordinates": [2.2799940540701154, 48.919840075681044]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "45c681857bf145c040f96cf177f393255111a543", "fields": {"departement": "92", "stop_lat": 48.93264590892501, "code_postal": "92036", "stop_lon": 2.301749499252188, "coord": [48.93264590892501, 2.301749499252188], "stop_id": 5775613, "stop_desc": "AVENUE LAURENT CELY - 92036", "stop_name": "ROND-POINT PIERRE TIMBAUD - JULES LAROSE"}, "geometry": {"type": "Point", "coordinates": [2.301749499252188, 48.93264590892501]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4a86d55686d965522fc7da016e89e8929ad3b81d", "fields": {"departement": "92", "stop_lat": 48.91350916270402, "code_postal": "92009", "stop_lon": 2.2720654430399616, "coord": [48.91350916270402, 2.2720654430399616], "stop_id": 5775617, "stop_desc": "15 RUE DU GENERAL LECLERC - 92009", "stop_name": "GARE DE BOIS-COLOMBES"}, "geometry": {"type": "Point", "coordinates": [2.2720654430399616, 48.91350916270402]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4014acd02716e50e441447ed5740e1e200e92b1b", "fields": {"departement": "92", "stop_lat": 48.90579805610391, "code_postal": "92035", "stop_lon": 2.256969737857217, "coord": [48.90579805610391, 2.256969737857217], "stop_id": 5775619, "stop_desc": "AVENUE DE L'EUROPE - 92035", "stop_name": "EUROPE"}, "geometry": {"type": "Point", "coordinates": [2.256969737857217, 48.90579805610391]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "961b04126aa5d5fa7ed23c7d49fda76a78c713f7", "fields": {"departement": "93", "stop_lat": 48.91432584069904, "code_postal": "93008", "stop_lon": 2.431106318279996, "coord": [48.91432584069904, 2.431106318279996], "stop_id": 5794614, "stop_desc": "RUE DE STALINGRAD - 93008", "stop_name": "VOLTAIRE"}, "geometry": {"type": "Point", "coordinates": [2.431106318279996, 48.91432584069904]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9be406b1a8432e061196cf1d7708f15f8c23f923", "fields": {"departement": "93", "stop_lat": 48.90687831499502, "code_postal": "93008", "stop_lon": 2.448802522093501, "coord": [48.90687831499502, 2.448802522093501], "stop_id": 5794619, "stop_desc": "PISTE GARE ROUTIERE - 93008", "stop_name": "BOBIGNY - PABLO PICASSO"}, "geometry": {"type": "Point", "coordinates": [2.448802522093501, 48.90687831499502]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "548bda57b36837a87c0bf4c0ad7239e4c6e886c1", "fields": {"departement": "93", "stop_lat": 48.905007103245715, "code_postal": "93010", "stop_lon": 2.476268671049849, "coord": [48.905007103245715, 2.476268671049849], "stop_id": 5794625, "stop_desc": "54 AVENUE GALLIENI - 93010", "stop_name": "GATINE RN3"}, "geometry": {"type": "Point", "coordinates": [2.476268671049849, 48.905007103245715]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c00d52e333bb19cc00bf6d37be8e870e1481991e", "fields": {"departement": "93", "stop_lat": 48.902899045704345, "code_postal": "93057", "stop_lon": 2.507862679783337, "coord": [48.902899045704345, 2.507862679783337], "stop_id": 5794631, "stop_desc": "FACE 169 AVENUE JEAN JAURES - 93057", "stop_name": "PRESIDENT WILSON - MAIRIE"}, "geometry": {"type": "Point", "coordinates": [2.507862679783337, 48.902899045704345]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "843c6178a811a084fd8f04c43d1247411d167a1b", "fields": {"departement": "93", "stop_lat": 48.91004025543617, "code_postal": "93046", "stop_lon": 2.527982985738969, "coord": [48.91004025543617, 2.527982985738969], "stop_id": 5794637, "stop_desc": "4 AVENUE LEON BLUM - 93046", "stop_name": "SALENGRO"}, "geometry": {"type": "Point", "coordinates": [2.527982985738969, 48.91004025543617]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f3c84e496863f829b31fc8eb84ffeca2ef60425a", "fields": {"departement": "93", "stop_lat": 48.904795960371835, "code_postal": "93014", "stop_lon": 2.546913292439642, "coord": [48.904795960371835, 2.546913292439642], "stop_id": 5794641, "stop_desc": "BOULEVARD GAGARINE - 93014", "stop_name": "GAGARINE"}, "geometry": {"type": "Point", "coordinates": [2.546913292439642, 48.904795960371835]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cd19c7f9079fb975bfaed1f80e3a76d67bdcf544", "fields": {"departement": "93", "stop_lat": 48.90386287775983, "code_postal": "93047", "stop_lon": 2.5608829071805457, "coord": [48.90386287775983, 2.5608829071805457], "stop_id": 5794644, "stop_desc": "AVENUE DE CLICHY - 93047", "stop_name": "LES BOSQUETS"}, "geometry": {"type": "Point", "coordinates": [2.5608829071805457, 48.90386287775983]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2e03bf812755cb1604fa5c6407d30ce8eeb70a8a", "fields": {"departement": "93", "stop_lat": 48.92362033739707, "code_postal": "93029", "stop_lon": 2.458794128458234, "coord": [48.92362033739707, 2.458794128458234], "stop_id": 5794661, "stop_desc": "FACE 9-11 RUE DU DOCTEUR ALBERT SCHWEITZER - 93029", "stop_name": "LYCEE EUGENE DELACROIX"}, "geometry": {"type": "Point", "coordinates": [2.458794128458234, 48.92362033739707]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "469770d9220cad7b2cec0882121a23e26e89d105", "fields": {"departement": "93", "stop_lat": 48.931672961444356, "code_postal": "93013", "stop_lon": 2.428123348689085, "coord": [48.931672961444356, 2.428123348689085], "stop_id": 5794663, "stop_desc": "FACE 60 AVENUE JEAN JAURES - 93013", "stop_name": "LE BOURGET RER"}, "geometry": {"type": "Point", "coordinates": [2.428123348689085, 48.931672961444356]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9579443b5dc540e937d3212d629847c76754a57a", "fields": {"departement": "93", "stop_lat": 48.932538229574945, "code_postal": "93013", "stop_lon": 2.4247421268099214, "coord": [48.932538229574945, 2.4247421268099214], "stop_id": 5794664, "stop_desc": "8 AVENUE FRANCIS DE PRESSENSE - 93013", "stop_name": "JEAN JAURES - DIVISION LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.4247421268099214, 48.932538229574945]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "59ae829ef4749ae0ead01f141ceeeecacfded71c", "fields": {"departement": "93", "stop_lat": 48.90532578506397, "code_postal": "93014", "stop_lon": 2.541980306142771, "coord": [48.90532578506397, 2.541980306142771], "stop_id": 5794669, "stop_desc": "BOULEVARD GAGARINE - 93014", "stop_name": "AVENUE LADRETTE"}, "geometry": {"type": "Point", "coordinates": [2.541980306142771, 48.90532578506397]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e6dcdb9f1c51dd9f9cb9893f50cc65eb7b5eac71", "fields": {"departement": "93", "stop_lat": 48.90888406123371, "code_postal": "93046", "stop_lon": 2.5316053431104883, "coord": [48.90888406123371, 2.5316053431104883], "stop_id": 5794671, "stop_desc": "43 AVENUE LEON BLUM - 93046", "stop_name": "JEAN-BAPTISTE CLEMENT"}, "geometry": {"type": "Point", "coordinates": [2.5316053431104883, 48.90888406123371]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "47bcd8b0e300a1d2f091e3db9046bbeba683c4f2", "fields": {"departement": "93", "stop_lat": 48.908537655376406, "code_postal": "93057", "stop_lon": 2.517561237036439, "coord": [48.908537655376406, 2.517561237036439], "stop_id": 5794674, "stop_desc": "PLACE OISSERY FORFRY - 93057", "stop_name": "GARE DE GARGAN"}, "geometry": {"type": "Point", "coordinates": [2.517561237036439, 48.908537655376406]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "68ed1656f6d56889c194aae72b5308674bfecfa2", "fields": {"departement": "93", "stop_lat": 48.89981082893602, "code_postal": "93062", "stop_lon": 2.517789869849923, "coord": [48.89981082893602, 2.517789869849923], "stop_id": 5794675, "stop_desc": "1 AVENUE DE LIVRY - 93062", "stop_name": "ROND-POINT THIERS"}, "geometry": {"type": "Point", "coordinates": [2.517789869849923, 48.89981082893602]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7ffad11bd66ac05a4a7fc0fa9be181eaea2f380a", "fields": {"departement": "93", "stop_lat": 48.90590089960924, "code_postal": "93008", "stop_lon": 2.46457388666915, "coord": [48.90590089960924, 2.46457388666915], "stop_id": 5794687, "stop_desc": "FACE 412 AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "RUE DES PEUPLIERS"}, "geometry": {"type": "Point", "coordinates": [2.46457388666915, 48.90590089960924]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "22a89c35db47f2148774f085871aff2620bb08f5", "fields": {"departement": "93", "stop_lat": 48.910269160707436, "code_postal": "93008", "stop_lon": 2.445851196538282, "coord": [48.910269160707436, 2.445851196538282], "stop_id": 5794693, "stop_desc": "AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "PIERRE SEMARD"}, "geometry": {"type": "Point", "coordinates": [2.445851196538282, 48.910269160707436]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8e989eeff349f84f8aa3b021559b9a0d2a1b833c", "fields": {"departement": "93", "stop_lat": 48.92090545862487, "code_postal": "93029", "stop_lon": 2.4405959689506393, "coord": [48.92090545862487, 2.4405959689506393], "stop_id": 5794701, "stop_desc": "11 RUE ROGER SALENGRO - 93029", "stop_name": "GEORGES DUCERF"}, "geometry": {"type": "Point", "coordinates": [2.4405959689506393, 48.92090545862487]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8cda5290f087609cdf00c09beba5fb11a13fa194", "fields": {"departement": "93", "stop_lat": 48.92945515809779, "code_postal": "93029", "stop_lon": 2.425514356785019, "coord": [48.92945515809779, 2.425514356785019], "stop_id": 5794706, "stop_desc": "RUE DE LA STATION - 93029", "stop_name": "RUE DE LA STATION"}, "geometry": {"type": "Point", "coordinates": [2.425514356785019, 48.92945515809779]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bc1a5d7bdf62181c8463780e434324ab43276745", "fields": {"departement": "93", "stop_lat": 48.90386287775983, "code_postal": "93047", "stop_lon": 2.5608829071805457, "coord": [48.90386287775983, 2.5608829071805457], "stop_id": 5794710, "stop_desc": "AVENUE DE CLICHY - 93047", "stop_name": "LES BOSQUETS"}, "geometry": {"type": "Point", "coordinates": [2.5608829071805457, 48.90386287775983]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a90b0498f5294989ca3c132d14629f481ebc153b", "fields": {"departement": "93", "stop_lat": 48.90532578506397, "code_postal": "93014", "stop_lon": 2.541980306142771, "coord": [48.90532578506397, 2.541980306142771], "stop_id": 5794714, "stop_desc": "BOULEVARD GAGARINE - 93014", "stop_name": "AVENUE LADRETTE"}, "geometry": {"type": "Point", "coordinates": [2.541980306142771, 48.90532578506397]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8d431a78cb2c6f19c095790ae0c6b308c87b258d", "fields": {"departement": "77", "stop_lat": 48.845090849272935, "code_postal": "77083", "stop_lon": 2.5854944429890026, "coord": [48.845090849272935, 2.5854944429890026], "stop_id": 5815082, "stop_desc": "RUE NELSON MANDELA - 77083", "stop_name": "LYCEE RENE DESCARTES"}, "geometry": {"type": "Point", "coordinates": [2.5854944429890026, 48.845090849272935]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e9219f6d59cd245599ab0feccd7344394e72fdfb", "fields": {"departement": "91", "stop_lat": 48.70376756176423, "code_postal": "91027", "stop_lon": 2.3627716551741482, "coord": [48.70376756176423, 2.3627716551741482], "stop_id": 5816770, "stop_desc": "1 R DE L'EPINETTE - 91027", "stop_name": "NOYER RENARD"}, "geometry": {"type": "Point", "coordinates": [2.3627716551741482, 48.70376756176423]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8eec4ae98e3661129eb580358eec4b0e5062470d", "fields": {"departement": "91", "stop_lat": 48.705052794734264, "code_postal": "91027", "stop_lon": 2.3633426633826202, "coord": [48.705052794734264, 2.3633426633826202], "stop_id": 5816776, "stop_desc": "11 R DES FROIDES BOUILLIES - 91027", "stop_name": "NOYER RENARD."}, "geometry": {"type": "Point", "coordinates": [2.3633426633826202, 48.705052794734264]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9b81e8907ecfd5b1b50c03babdb0e7124c68b48d", "fields": {"departement": "91", "stop_lat": 48.70573426494945, "code_postal": "91027", "stop_lon": 2.3700246603246247, "coord": [48.70573426494945, 2.3700246603246247], "stop_id": 5816778, "stop_desc": "5 AV DE MORANGIS - 91027", "stop_name": "BELLE ETOILE"}, "geometry": {"type": "Point", "coordinates": [2.3700246603246247, 48.70573426494945]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e5cca4943d1e996c11155e89bcb86dc3a86fc327", "fields": {"departement": "91", "stop_lat": 48.71091407362534, "code_postal": "91027", "stop_lon": 2.388526544318977, "coord": [48.71091407362534, 2.388526544318977], "stop_id": 5816784, "stop_desc": "FACE 32 AV HENRI DUNANT - 91027", "stop_name": "CIMETIERE D'ATHIS-MONS"}, "geometry": {"type": "Point", "coordinates": [2.388526544318977, 48.71091407362534]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3244e5d989c09521db04b639f3cde933943df4e4", "fields": {"departement": "91", "stop_lat": 48.712915379986754, "code_postal": "91027", "stop_lon": 2.39530617333297, "coord": [48.712915379986754, 2.39530617333297], "stop_id": 5816788, "stop_desc": "PL DU 19 MARS 1962 - 91027", "stop_name": "DELALANDE PASTEUR"}, "geometry": {"type": "Point", "coordinates": [2.39530617333297, 48.712915379986754]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7a6e69e72c3ed2a958d1390527cbc8c196dcbed4", "fields": {"departement": "91", "stop_lat": 48.70376756176423, "code_postal": "91027", "stop_lon": 2.3627716551741482, "coord": [48.70376756176423, 2.3627716551741482], "stop_id": 5816797, "stop_desc": "1 R DE L'EPINETTE - 91027", "stop_name": "NOYER RENARD"}, "geometry": {"type": "Point", "coordinates": [2.3627716551741482, 48.70376756176423]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b51e1fb4b88268bbbe2e344dcd343937eefc57dd", "fields": {"departement": "91", "stop_lat": 48.70108981669968, "code_postal": "91027", "stop_lon": 2.3585335728597934, "coord": [48.70108981669968, 2.3585335728597934], "stop_id": 5816799, "stop_desc": "113 R HENRI BARBUSSE - 91027", "stop_name": "LES OISEAUX"}, "geometry": {"type": "Point", "coordinates": [2.3585335728597934, 48.70108981669968]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "85e790682b01f2afa6c1b428576e0838fa5acd8d", "fields": {"departement": "91", "stop_lat": 48.708459854175295, "code_postal": "91027", "stop_lon": 2.3893661666025343, "coord": [48.708459854175295, 2.3893661666025343], "stop_id": 5816807, "stop_desc": "6 PL DE L'EGLISE - 91027", "stop_name": "PLACE DE L'EGLISE"}, "geometry": {"type": "Point", "coordinates": [2.3893661666025343, 48.708459854175295]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e69ccd9af2a86f151de43323d82370be79109995", "fields": {"departement": "91", "stop_lat": 48.712915379986754, "code_postal": "91027", "stop_lon": 2.39530617333297, "coord": [48.712915379986754, 2.39530617333297], "stop_id": 5816811, "stop_desc": "PL DU 19 MARS 1962 - 91027", "stop_name": "DELALANDE PASTEUR"}, "geometry": {"type": "Point", "coordinates": [2.39530617333297, 48.712915379986754]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b42b29d5ab163d90ca8b8394a803c7ac5282fa3d", "fields": {"departement": "91", "stop_lat": 48.705815924537724, "code_postal": "91027", "stop_lon": 2.3671320394242823, "coord": [48.705815924537724, 2.3671320394242823], "stop_id": 5816818, "stop_desc": "54-56 AVENUE DE VERDUN - 91027", "stop_name": "PASTEUR"}, "geometry": {"type": "Point", "coordinates": [2.3671320394242823, 48.705815924537724]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f844ea11305c259b3bdac8c868541f2aa19d12c0", "fields": {"departement": "91", "stop_lat": 48.70334608676053, "code_postal": "91027", "stop_lon": 2.3576789573845205, "coord": [48.70334608676053, 2.3576789573845205], "stop_id": 5816821, "stop_desc": "2-4 AV CONDORCET - 91027", "stop_name": "CONDORCET"}, "geometry": {"type": "Point", "coordinates": [2.3576789573845205, 48.70334608676053]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2f37f7d1adab9fe8a76548b94d4d2bf61a8fd66c", "fields": {"departement": "92", "stop_lat": 48.89657982025513, "code_postal": "92044", "stop_lon": 2.297821332188748, "coord": [48.89657982025513, 2.297821332188748], "stop_id": 5821502, "stop_desc": "1 PLACE DU 8 MAI 1945 - 92044", "stop_name": "GARE DE CLICHY - LEVALLOIS"}, "geometry": {"type": "Point", "coordinates": [2.297821332188748, 48.89657982025513]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "22512612b73cb794560cfff0007e395f2639f18c", "fields": {"departement": "92", "stop_lat": 48.817058492404726, "code_postal": "92075", "stop_lon": 2.2754393047264383, "coord": [48.817058492404726, 2.2754393047264383], "stop_id": 5851177, "stop_desc": "122 AVENUE DU GENERAL DE GAULLE - 92075", "stop_name": "GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.2754393047264383, 48.817058492404726]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b0b7848a5b6f651dbc0eca635880cbc5b1183cb4", "fields": {"departement": "94", "stop_lat": 48.84709285743229, "code_postal": "94080", "stop_lon": 2.4301812349964367, "coord": [48.84709285743229, 2.4301812349964367], "stop_id": 5922162, "stop_desc": "18-20 AVENUE DE LA REPUBLIQUE - 94080", "stop_name": "VINCENNES RER"}, "geometry": {"type": "Point", "coordinates": [2.4301812349964367, 48.84709285743229]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0afcd6ad700f0fc353980eaa9362a9d11c33dde9", "fields": {"departement": "93", "stop_lat": 48.849450768106884, "code_postal": "93048", "stop_lon": 2.4260046618007154, "coord": [48.849450768106884, 2.4260046618007154], "stop_id": 5922164, "stop_desc": "FACE 94 RUE ROBESPIERRE - 93048", "stop_name": "LES LAITIERES"}, "geometry": {"type": "Point", "coordinates": [2.4260046618007154, 48.849450768106884]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c79f24e9733f561be88b761463d395ed3f57647e", "fields": {"departement": "93", "stop_lat": 48.85606786761202, "code_postal": "93048", "stop_lon": 2.4228289122060453, "coord": [48.85606786761202, 2.4228289122060453], "stop_id": 5922167, "stop_desc": "15 RUE ARSENE CHEREAU - 93048", "stop_name": "ROBESPIERRE"}, "geometry": {"type": "Point", "coordinates": [2.4228289122060453, 48.85606786761202]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "86e028b14e5e4e9665636afa81bb28d216db3d1c", "fields": {"departement": "93", "stop_lat": 48.867494373252924, "code_postal": "93006", "stop_lon": 2.41778002513657, "coord": [48.867494373252924, 2.41778002513657], "stop_id": 5922172, "stop_desc": "8 RUE ADELAIDE LAHAYE - 93006", "stop_name": "CENTRE DE SANTE"}, "geometry": {"type": "Point", "coordinates": [2.41778002513657, 48.867494373252924]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a82e8c8bcfcd5e58e89f621b83076d187917bb65", "fields": {"departement": "93", "stop_lat": 48.875228173985306, "code_postal": "93006", "stop_lon": 2.423896038367697, "coord": [48.875228173985306, 2.423896038367697], "stop_id": 5922178, "stop_desc": "174 RUE SADI CARNOT - 93006", "stop_name": "GIRARDOT"}, "geometry": {"type": "Point", "coordinates": [2.423896038367697, 48.875228173985306]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9cf258d5be9164950b78febc5729f3eead5e56d1", "fields": {"departement": "93", "stop_lat": 48.875874129314745, "code_postal": "93006", "stop_lon": 2.425436762397256, "coord": [48.875874129314745, 2.425436762397256], "stop_id": 5922179, "stop_desc": "202 RUE SADI CARNOT - 93006", "stop_name": "CIMETIERE DE BAGNOLET"}, "geometry": {"type": "Point", "coordinates": [2.425436762397256, 48.875874129314745]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b0e4f3441d18a5a2211fb4ad4c7e7be8cf1b1d22", "fields": {"departement": "93", "stop_lat": 48.885028013143746, "code_postal": "93063", "stop_lon": 2.430862484362363, "coord": [48.885028013143746, 2.430862484362363], "stop_id": 5922186, "stop_desc": "14 RUE VASSOU - 93063", "stop_name": "VASSOU - LENINE"}, "geometry": {"type": "Point", "coordinates": [2.430862484362363, 48.885028013143746]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "70772808cccadee63ce3183a46292646a7d48b42", "fields": {"departement": "93", "stop_lat": 48.890494567558754, "code_postal": "93063", "stop_lon": 2.4278467157881494, "coord": [48.890494567558754, 2.4278467157881494], "stop_id": 5922188, "stop_desc": "154-156 AVENUE DU COLONEL FABIEN - 93063", "stop_name": "BRETAGNES"}, "geometry": {"type": "Point", "coordinates": [2.4278467157881494, 48.890494567558754]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ec20d6b43edd9ea09cf5b8c480120c3c4d70dcb6", "fields": {"departement": "93", "stop_lat": 48.893760443531676, "code_postal": "93063", "stop_lon": 2.4347627719363105, "coord": [48.893760443531676, 2.4347627719363105], "stop_id": 5922194, "stop_desc": "130-132 AVENUE GASTON ROUSSEL - 93063", "stop_name": "LOUISE DORY"}, "geometry": {"type": "Point", "coordinates": [2.4347627719363105, 48.893760443531676]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a5f40296185751944fce32830119fb8526e13208", "fields": {"departement": "93", "stop_lat": 48.88505167124873, "code_postal": "93063", "stop_lon": 2.434978058250651, "coord": [48.88505167124873, 2.434978058250651], "stop_id": 5922202, "stop_desc": "5 AVENUE PAUL VAILLANT-COUTURIER - 93063", "stop_name": "MAIRIE DE ROMAINVILLE"}, "geometry": {"type": "Point", "coordinates": [2.434978058250651, 48.88505167124873]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c1ccbcdc25598a39e2e3889ed9694613b8ba7bcd", "fields": {"departement": "93", "stop_lat": 48.87796712857922, "code_postal": "93006", "stop_lon": 2.426830146332843, "coord": [48.87796712857922, 2.426830146332843], "stop_id": 5922206, "stop_desc": "217 RUE SADI CARNOT - 93006", "stop_name": "FLOREAL"}, "geometry": {"type": "Point", "coordinates": [2.426830146332843, 48.87796712857922]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "88391fe549001b168ec01800bbe4f168832a9ced", "fields": {"departement": "93", "stop_lat": 48.87636861120778, "code_postal": "93006", "stop_lon": 2.4251923480377013, "coord": [48.87636861120778, 2.4251923480377013], "stop_id": 5922207, "stop_desc": "FACE 214 AVENUE PASTEUR - 93006", "stop_name": "CIMETIERE DE BAGNOLET"}, "geometry": {"type": "Point", "coordinates": [2.4251923480377013, 48.87636861120778]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b6d571cc88cea83c7bc6d986a2d929a90f294120", "fields": {"departement": "93", "stop_lat": 48.87054163948335, "code_postal": "93006", "stop_lon": 2.41695370781144, "coord": [48.87054163948335, 2.41695370781144], "stop_id": 5922210, "stop_desc": "FACE 68 AVENUE GAMBETTA - 93006", "stop_name": "MARIE-ANNE COLOMBIER"}, "geometry": {"type": "Point", "coordinates": [2.41695370781144, 48.87054163948335]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9d50d4bac438d4178b26b6df42b7a6d00e3972ee", "fields": {"departement": "93", "stop_lat": 48.86126695619277, "code_postal": "93006", "stop_lon": 2.4165308138985186, "coord": [48.86126695619277, 2.4165308138985186], "stop_id": 5922215, "stop_desc": "109 RUE JULES FERRY - 93006", "stop_name": "GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.4165308138985186, 48.86126695619277]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ae5dd10d02283272bf05938cc757a6626bb911b4", "fields": {"departement": "93", "stop_lat": 48.8565206055469, "code_postal": "93006", "stop_lon": 2.4180081482773867, "coord": [48.8565206055469, 2.4180081482773867], "stop_id": 5922217, "stop_desc": "1-3 RUE JULES FERRY - 93006", "stop_name": "ETIENNE MARCEL"}, "geometry": {"type": "Point", "coordinates": [2.4180081482773867, 48.8565206055469]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d47571658c1e735bf08d182f57cba66493150a8b", "fields": {"departement": "93", "stop_lat": 48.91142512932666, "code_postal": "93001", "stop_lon": 2.400668813128449, "coord": [48.91142512932666, 2.400668813128449], "stop_id": 5944487, "stop_desc": "172 AVENUE JEAN JAURES - 93001", "stop_name": "RECHOSSIERE"}, "geometry": {"type": "Point", "coordinates": [2.400668813128449, 48.91142512932666]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "256a535efa812881825cc64cf3ed06d8e4a19190", "fields": {"departement": "93", "stop_lat": 48.9059639721162, "code_postal": "93055", "stop_lon": 2.394813537419497, "coord": [48.9059639721162, 2.394813537419497], "stop_id": 5944490, "stop_desc": "120 AVENUE JEAN JAURES - 93055", "stop_name": "CONDORCET"}, "geometry": {"type": "Point", "coordinates": [2.394813537419497, 48.9059639721162]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0c0c673abb6f24ff328271999c0ca560c4a6c81a", "fields": {"departement": "93", "stop_lat": 48.89718117000412, "code_postal": "93055", "stop_lon": 2.3995881824305783, "coord": [48.89718117000412, 2.3995881824305783], "stop_id": 5944494, "stop_desc": "13 AVENUE EDOUARD VAILLANT - 93055", "stop_name": "PANTIN RER - MAIRIE"}, "geometry": {"type": "Point", "coordinates": [2.3995881824305783, 48.89718117000412]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c1479a782f137b22825fe1bd1406aace42552a31", "fields": {"departement": "93", "stop_lat": 48.89667730082755, "code_postal": "93055", "stop_lon": 2.4007052886677323, "coord": [48.89667730082755, 2.4007052886677323], "stop_id": 5944495, "stop_desc": "6 AVENUE EDOUARD VAILLANT - 93055", "stop_name": "PANTIN RER - MAIRIE"}, "geometry": {"type": "Point", "coordinates": [2.4007052886677323, 48.89667730082755]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0b5d6669b64c0acd9ef5fb46b41b55231d91d0ed", "fields": {"departement": "93", "stop_lat": 48.889136185218675, "code_postal": "93055", "stop_lon": 2.4171185872806342, "coord": [48.889136185218675, 2.4171185872806342], "stop_id": 5944511, "stop_desc": "2 RUE LAVOISIER - 93055", "stop_name": "CHARLES AURAY"}, "geometry": {"type": "Point", "coordinates": [2.4171185872806342, 48.889136185218675]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4ebc9de12b74665cdaf0014bdccb5261c7e6a909", "fields": {"departement": "93", "stop_lat": 48.889315110070115, "code_postal": "93055", "stop_lon": 2.4183318176982693, "coord": [48.889315110070115, 2.4183318176982693], "stop_id": 5944512, "stop_desc": "7 R LAVOISIER - 93055", "stop_name": "CHARLES AURAY"}, "geometry": {"type": "Point", "coordinates": [2.4183318176982693, 48.889315110070115]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cbaaece3b01bdf103284d6cf32ac820e258c421b", "fields": {"departement": "93", "stop_lat": 48.88342236063292, "code_postal": "93055", "stop_lon": 2.4140027925437013, "coord": [48.88342236063292, 2.4140027925437013], "stop_id": 5944518, "stop_desc": "74 R MARCELLE - 93055", "stop_name": "RUE MARCELLE"}, "geometry": {"type": "Point", "coordinates": [2.4140027925437013, 48.88342236063292]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "66b62c0f15726974087900e0687801be75271214", "fields": {"departement": "93", "stop_lat": 48.913365186523436, "code_postal": "93008", "stop_lon": 2.4174831801276664, "coord": [48.913365186523436, 2.4174831801276664], "stop_id": 5944533, "stop_desc": "FACE 1 RUE BALZAC - 93008", "stop_name": "LES COURTILLIERES"}, "geometry": {"type": "Point", "coordinates": [2.4174831801276664, 48.913365186523436]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "598d51c29abdc61a73f61527aa6436a42efd2701", "fields": {"departement": "93", "stop_lat": 48.914177758098994, "code_postal": "93055", "stop_lon": 2.411716729965043, "coord": [48.914177758098994, 2.411716729965043], "stop_id": 5944534, "stop_desc": "7 AVENUE DES COURTILLIERES - 93055", "stop_name": "PLACE DU MARCHE"}, "geometry": {"type": "Point", "coordinates": [2.411716729965043, 48.914177758098994]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ce12e1d0560ad420de012f2550cf0db174aea65e", "fields": {"departement": "94", "stop_lat": 48.800388411797904, "code_postal": "94046", "stop_lon": 2.4357438710791275, "coord": [48.800388411797904, 2.4357438710791275], "stop_id": 5944774, "stop_desc": "34 RUE VICTOR HUGO - 94046", "stop_name": "HUGO - BLUM"}, "geometry": {"type": "Point", "coordinates": [2.4357438710791275, 48.800388411797904]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bc75d46b269f65f769ece52f2c1f2a8ed0b765e8", "fields": {"departement": "93", "stop_lat": 48.91423410186426, "code_postal": "93029", "stop_lon": 2.4334514173350046, "coord": [48.91423410186426, 2.4334514173350046], "stop_id": 5976286, "stop_desc": "RUE DE STALINGRAD - 93029", "stop_name": "VOLTAIRE"}, "geometry": {"type": "Point", "coordinates": [2.4334514173350046, 48.91423410186426]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bc375d98296ac58981ed2249166bb11c422987a5", "fields": {"departement": "93", "stop_lat": 48.919684999183026, "code_postal": "93029", "stop_lon": 2.438534392398405, "coord": [48.919684999183026, 2.438534392398405], "stop_id": 5976289, "stop_desc": "35 RUE ROGER SALENGRO - 93029", "stop_name": "DANTON"}, "geometry": {"type": "Point", "coordinates": [2.438534392398405, 48.919684999183026]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fc8c85074cce43b04e26feefd2fde378d173a2f6", "fields": {"departement": "93", "stop_lat": 48.92090545862487, "code_postal": "93029", "stop_lon": 2.4405959689506393, "coord": [48.92090545862487, 2.4405959689506393], "stop_id": 5976290, "stop_desc": "11 RUE ROGER SALENGRO - 93029", "stop_name": "GEORGES DUCERF"}, "geometry": {"type": "Point", "coordinates": [2.4405959689506393, 48.92090545862487]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5c7f86e976b1a1d16fc3b1e4f12f37c3400798df", "fields": {"departement": "93", "stop_lat": 48.91361714795015, "code_postal": "93029", "stop_lon": 2.4503441641802204, "coord": [48.91361714795015, 2.4503441641802204], "stop_id": 5976293, "stop_desc": "84 R DE LA LIBERTE - 93029", "stop_name": "COLLEGE LIBERTE"}, "geometry": {"type": "Point", "coordinates": [2.4503441641802204, 48.91361714795015]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7533447cc2fef9932386bba94fac07179cc33eef", "fields": {"departement": "92", "stop_lat": 48.80648956893726, "code_postal": "92020", "stop_lon": 2.2982707549064973, "coord": [48.80648956893726, 2.2982707549064973], "stop_id": 5976625, "stop_desc": "140 AVENUE DE LA REPUBLIQUE - 92020", "stop_name": "PIERRE SEMARD - CHATILLON-MONTROUGE"}, "geometry": {"type": "Point", "coordinates": [2.2982707549064973, 48.80648956893726]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "22fb26cd0269ceb8dd8d860af3a5543b2644a31c", "fields": {"departement": "92", "stop_lat": 48.80368510844796, "code_postal": "92020", "stop_lon": 2.2974700935135903, "coord": [48.80368510844796, 2.2974700935135903], "stop_id": 5976627, "stop_desc": "95 AVENUE DE LA REPUBLIQUE - 92020", "stop_name": "REPUBLIQUE - DEFORGES"}, "geometry": {"type": "Point", "coordinates": [2.2974700935135903, 48.80368510844796]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "91c579e0ac2628ea3a648769ea13f655f391904c", "fields": {"departement": "92", "stop_lat": 48.80383802353411, "code_postal": "92020", "stop_lon": 2.2978373453843948, "coord": [48.80383802353411, 2.2978373453843948], "stop_id": 5976628, "stop_desc": "FACE 91 AVENUE DE LA REPUBLIQUE - 92020", "stop_name": "REPUBLIQUE - DEFORGES"}, "geometry": {"type": "Point", "coordinates": [2.2978373453843948, 48.80383802353411]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ed845d526ff1c0ef41337c84a3fc68e548cb9f89", "fields": {"departement": "92", "stop_lat": 48.78306061174014, "code_postal": "92032", "stop_lon": 2.2817905454624388, "coord": [48.78306061174014, 2.2817905454624388], "stop_id": 5976641, "stop_desc": "33 AVENUE JULES GUESDES - 92032", "stop_name": "CARREFOUR DES MOUILLEBOEUFS"}, "geometry": {"type": "Point", "coordinates": [2.2817905454624388, 48.78306061174014]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "260172754736ad1f0b54e270b018d4082e70ad6e", "fields": {"departement": "92", "stop_lat": 48.775562577228506, "code_postal": "92019", "stop_lon": 2.277555707263493, "coord": [48.775562577228506, 2.277555707263493], "stop_id": 5976644, "stop_desc": "6 AVENUE ROGER SALENGRO - 92019", "stop_name": "PROFESSEUR EINSTEIN"}, "geometry": {"type": "Point", "coordinates": [2.277555707263493, 48.775562577228506]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "10b96be2df650ef57985dc0ec72a95d01270f7a0", "fields": {"departement": "92", "stop_lat": 48.76994317207525, "code_postal": "92019", "stop_lon": 2.2739180644920944, "coord": [48.76994317207525, 2.2739180644920944], "stop_id": 5976648, "stop_desc": "88 AVENUE ROGER SALENGRO - 92019", "stop_name": "JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.2739180644920944, 48.76994317207525]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e769637f4948f7e84998d29c0cab7392d170dbc4", "fields": {"departement": "92", "stop_lat": 48.766266284732275, "code_postal": "92019", "stop_lon": 2.272494921821088, "coord": [48.766266284732275, 2.272494921821088], "stop_id": 5976653, "stop_desc": "FACE 136 AVENUE ROGER SALENGRO - 92019", "stop_name": "JULES VERNE"}, "geometry": {"type": "Point", "coordinates": [2.272494921821088, 48.766266284732275]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "83f4d7d2dde35d89cf88b155be8ee46fdd2d78ef", "fields": {"departement": "92", "stop_lat": 48.76432452376771, "code_postal": "92019", "stop_lon": 2.271885525552727, "coord": [48.76432452376771, 2.271885525552727], "stop_id": 5976654, "stop_desc": "AVENUE ROGER SALENGRO - 92019", "stop_name": "PRESIDENT ALLENDE"}, "geometry": {"type": "Point", "coordinates": [2.271885525552727, 48.76432452376771]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8e191e5753e8b333f571b3495ecbbabd30f44a1c", "fields": {"departement": "92", "stop_lat": 48.764432544927, "code_postal": "92019", "stop_lon": 2.272184500447193, "coord": [48.764432544927, 2.272184500447193], "stop_id": 5976655, "stop_desc": "AVENUE ROGER SALENGRO - 92019", "stop_name": "PRESIDENT ALLENDE"}, "geometry": {"type": "Point", "coordinates": [2.272184500447193, 48.764432544927]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "51a4ccb2d485589ec40e56e2357052ce38448c31", "fields": {"departement": "92", "stop_lat": 48.762157789083936, "code_postal": "92019", "stop_lon": 2.270800623222475, "coord": [48.762157789083936, 2.270800623222475], "stop_id": 5976656, "stop_desc": "RUE JEAN-BAPTISTE CLEMENT - 92019", "stop_name": "FACULTE DE PHARMACIE"}, "geometry": {"type": "Point", "coordinates": [2.270800623222475, 48.762157789083936]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eb5fc97f0c9fd40d339a4092667271d1cab9cf14", "fields": {"departement": "92", "stop_lat": 48.762346781670225, "code_postal": "92019", "stop_lon": 2.2712354343075263, "coord": [48.762346781670225, 2.2712354343075263], "stop_id": 5976657, "stop_desc": "RUE JEAN-BAPTISTE CLEMENT - 92019", "stop_name": "FACULTE DE PHARMACIE"}, "geometry": {"type": "Point", "coordinates": [2.2712354343075263, 48.762346781670225]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "35c03247c816160e059c2a046cf996c6c5115cf7", "fields": {"departement": "91", "stop_lat": 48.75177710235545, "code_postal": "91645", "stop_lon": 2.271928491643091, "coord": [48.75177710235545, 2.271928491643091], "stop_id": 5976659, "stop_desc": "CARREFOUR DE L'EUROPE - 91645", "stop_name": "LES ANTES"}, "geometry": {"type": "Point", "coordinates": [2.271928491643091, 48.75177710235545]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c11a3d24314b1d64368728cf2f799ceb7d9f8451", "fields": {"departement": "91", "stop_lat": 48.74958399229917, "code_postal": "91645", "stop_lon": 2.271944840017176, "coord": [48.74958399229917, 2.271944840017176], "stop_id": 5976661, "stop_desc": "BOULEVARD DU MARECHAL FOCH - 91645", "stop_name": "LE CLOS"}, "geometry": {"type": "Point", "coordinates": [2.271944840017176, 48.74958399229917]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dc8cb1bfd4ed506003e2735e0c1106996a3d18ec", "fields": {"departement": "91", "stop_lat": 48.74985373505479, "code_postal": "91645", "stop_lon": 2.2721211987921035, "coord": [48.74985373505479, 2.2721211987921035], "stop_id": 5976662, "stop_desc": "BOULEVARD DU MARECHAL FOCH - 91645", "stop_name": "LE CLOS"}, "geometry": {"type": "Point", "coordinates": [2.2721211987921035, 48.74985373505479]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e0e1a7d2b89a77780ecaf871192f4feae67ebee0", "fields": {"departement": "91", "stop_lat": 48.743945027466765, "code_postal": "91645", "stop_lon": 2.266107972275051, "coord": [48.743945027466765, 2.266107972275051], "stop_id": 5976665, "stop_desc": "BOULEVARD DU MARECHAL FOCH - 91645", "stop_name": "FOCH - LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.266107972275051, 48.743945027466765]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4dc3ef1ec30fbe0485e5e1ec52e9ca909c19b58f", "fields": {"departement": "91", "stop_lat": 48.74046788956081, "code_postal": "91645", "stop_lon": 2.2542761204537243, "coord": [48.74046788956081, 2.2542761204537243], "stop_id": 5976672, "stop_desc": "141 RUE D'ESTIENNE D'ORVES - 91645", "stop_name": "RIANTES CITES"}, "geometry": {"type": "Point", "coordinates": [2.2542761204537243, 48.74046788956081]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5c612918d5b483b80cf687170cf8ced703bc85fd", "fields": {"departement": "92", "stop_lat": 48.79743234704115, "code_postal": "92020", "stop_lon": 2.2819248456131125, "coord": [48.79743234704115, 2.2819248456131125], "stop_id": 5976705, "stop_desc": "29 AVENUE DE LA DIVISION LECLERC - 92020", "stop_name": "LES SABLONS"}, "geometry": {"type": "Point", "coordinates": [2.2819248456131125, 48.79743234704115]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "612d1cd29145820efb9b9700dc95f570b8ae09ef", "fields": {"departement": "92", "stop_lat": 48.79454220125779, "code_postal": "92020", "stop_lon": 2.2719835271448834, "coord": [48.79454220125779, 2.2719835271448834], "stop_id": 5976707, "stop_desc": "AVENUE DE VERDUN - 92020", "stop_name": "DIVISION LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.2719835271448834, 48.79454220125779]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "306b0a8e4d7559b6be5071fbe4234eac037b2d8f", "fields": {"departement": "92", "stop_lat": 48.78834461292559, "code_postal": "92060", "stop_lon": 2.2635579486207313, "coord": [48.78834461292559, 2.2635579486207313], "stop_id": 5976710, "stop_desc": "32 BOULEVARD DU MOULIN DE LA TOUR - 92060", "stop_name": "RUE DU MIDI"}, "geometry": {"type": "Point", "coordinates": [2.2635579486207313, 48.78834461292559]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "04e6d49b4737703621e74b0e5fb7cd3f6ccec34d", "fields": {"departement": "92", "stop_lat": 48.781618640138575, "code_postal": "92060", "stop_lon": 2.2588889381999437, "coord": [48.781618640138575, 2.2588889381999437], "stop_id": 5976714, "stop_desc": "FACE 7 RUE PIERRE D'ARTAGNAN - 92060", "stop_name": "DANIEL DE FOE"}, "geometry": {"type": "Point", "coordinates": [2.2588889381999437, 48.781618640138575]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3344e6cf51fc6d20a2d1968e2462e9c48a84a69f", "fields": {"departement": "92", "stop_lat": 48.778581644594894, "code_postal": "92060", "stop_lon": 2.260335082615534, "coord": [48.778581644594894, 2.260335082615534], "stop_id": 5976717, "stop_desc": "5 AVENUE CHARLES DE GAULLE - 92060", "stop_name": "RESISTANCE"}, "geometry": {"type": "Point", "coordinates": [2.260335082615534, 48.778581644594894]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "022d18f600285c844bc045325210c558f5f3f47b", "fields": {"departement": "92", "stop_lat": 48.768724332319636, "code_postal": "92019", "stop_lon": 2.2509676970806165, "coord": [48.768724332319636, 2.2509676970806165], "stop_id": 5976725, "stop_desc": "AVENUE DE LA DIVISION LECLERC - 92019", "stop_name": "CYRANO DE BERGERAC"}, "geometry": {"type": "Point", "coordinates": [2.2509676970806165, 48.768724332319636]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2a372c73d7ab2fe95078f3ec4ea5830dbd32b0bf", "fields": {"departement": "92", "stop_lat": 48.76481537199997, "code_postal": "92019", "stop_lon": 2.265807475737512, "coord": [48.76481537199997, 2.265807475737512], "stop_id": 5976731, "stop_desc": "FACE 299 AVENUE DE LA DIVISION LECLERC - 92019", "stop_name": "GENERAL DUVAL"}, "geometry": {"type": "Point", "coordinates": [2.265807475737512, 48.76481537199997]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e1a3a3994a9b1294ed0b9f53c600671b8bb69589", "fields": {"departement": "92", "stop_lat": 48.762791481568364, "code_postal": "92019", "stop_lon": 2.279460155887965, "coord": [48.762791481568364, 2.279460155887965], "stop_id": 5976734, "stop_desc": "135-137 AVENUE DE LA DIVISION LECLERC - 92019", "stop_name": "LA BRIAUDE"}, "geometry": {"type": "Point", "coordinates": [2.279460155887965, 48.762791481568364]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c3a411cc22b485f7ddc1ed1d3258a4c2e22a36b9", "fields": {"departement": "92", "stop_lat": 48.76278393482754, "code_postal": "92019", "stop_lon": 2.2825055590305103, "coord": [48.76278393482754, 2.2825055590305103], "stop_id": 5976737, "stop_desc": "FACE 77 RUE VINCENT FAYO - 92019", "stop_name": "CARREFOUR DU 19 MARS 1962"}, "geometry": {"type": "Point", "coordinates": [2.2825055590305103, 48.76278393482754]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "924c0066927bc312420b1739ae01f6e8d9d8f84b", "fields": {"departement": "92", "stop_lat": 48.767312522073375, "code_postal": "92019", "stop_lon": 2.279523110651518, "coord": [48.767312522073375, 2.279523110651518], "stop_id": 5976741, "stop_desc": "98 RUE JEAN LONGUET - 92019", "stop_name": "MAIRIE DE CHATENAY-MALABRY"}, "geometry": {"type": "Point", "coordinates": [2.279523110651518, 48.767312522073375]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "045daf09407d22fbfd46969c49634a5ef5218157", "fields": {"departement": "92", "stop_lat": 48.81310820997093, "code_postal": "92049", "stop_lon": 2.311697561665957, "coord": [48.81310820997093, 2.311697561665957], "stop_id": 3449484, "stop_desc": "FACE 89 RUE RACINE - 92049", "stop_name": "ESPACE MICHEL COLUCCI"}, "geometry": {"type": "Point", "coordinates": [2.311697561665957, 48.81310820997093]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "806cbe0a27b5f1b5c8a75c248451f6c604f9b870", "fields": {"departement": "92", "stop_lat": 48.81481565415576, "code_postal": "92049", "stop_lon": 2.310662426634477, "coord": [48.81481565415576, 2.310662426634477], "stop_id": 3449480, "stop_desc": "FACE AU 105 RUE MAURICE ARNOUX - 92049", "stop_name": "JEAN JAURES."}, "geometry": {"type": "Point", "coordinates": [2.310662426634477, 48.81481565415576]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fb6a69fe7e71a266455b90dcc157d191201579a5", "fields": {"departement": "93", "stop_lat": 48.90252282812221, "code_postal": "93010", "stop_lon": 2.4795201003196703, "coord": [48.90252282812221, 2.4795201003196703], "stop_id": 3450614, "stop_desc": "6 RUE ROGER SALENGRO - 93010", "stop_name": "EGLISE DE BONDY"}, "geometry": {"type": "Point", "coordinates": [2.4795201003196703, 48.90252282812221]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e75b47ef1de183dd7eafa90e19167a30be4bdd9a", "fields": {"departement": "93", "stop_lat": 48.89118202927466, "code_postal": "93053", "stop_lon": 2.4709025681148984, "coord": [48.89118202927466, 2.4709025681148984], "stop_id": 3450606, "stop_desc": "71 AVENUE DE ROSNY - 93053", "stop_name": "CITE DU 1ER MAI"}, "geometry": {"type": "Point", "coordinates": [2.4709025681148984, 48.89118202927466]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "77b7f4b4336a49e52cc2c32071261547fe7fff38", "fields": {"departement": "93", "stop_lat": 48.90685353237826, "code_postal": "93010", "stop_lon": 2.4804181583345417, "coord": [48.90685353237826, 2.4804181583345417], "stop_id": 3450615, "stop_desc": "6 ROUTE D'AULNAY - 93010", "stop_name": "AUGUSTE POLISSARD"}, "geometry": {"type": "Point", "coordinates": [2.4804181583345417, 48.90685353237826]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9240aac3d6f252a359c264ba8532feba1eb0828d", "fields": {"departement": "92", "stop_lat": 48.81781968316359, "code_postal": "92049", "stop_lon": 2.3231003588110526, "coord": [48.81781968316359, 2.3231003588110526], "stop_id": 3449470, "stop_desc": "13 BIS RUE GABRIEL PERI - 92049", "stop_name": "AMAURY DUVAL"}, "geometry": {"type": "Point", "coordinates": [2.3231003588110526, 48.81781968316359]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "70977ac58e2bf045a51d9ef04f5312f0ebc62237", "fields": {"departement": "93", "stop_lat": 48.93705588476023, "code_postal": "93007", "stop_lon": 2.458661969182226, "coord": [48.93705588476023, 2.458661969182226], "stop_id": 3450650, "stop_desc": "FACE 18 AVENUE HENRI BARBUSSE - 93007", "stop_name": "ANCIENNE MAIRIE DE LE_BLANC-MESNIL"}, "geometry": {"type": "Point", "coordinates": [2.458661969182226, 48.93705588476023]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5c02d0542bec6856c03f5135f1d3d94bdb054bcb", "fields": {"departement": "93", "stop_lat": 48.936591093583644, "code_postal": "93007", "stop_lon": 2.4648539648834777, "coord": [48.936591093583644, 2.4648539648834777], "stop_id": 3450653, "stop_desc": "FACE 62 AVENUE DE LA REPUBLIQUE - 93007", "stop_name": "EGLISE DU BLANC-MESNIL"}, "geometry": {"type": "Point", "coordinates": [2.4648539648834777, 48.936591093583644]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "df9657e3c2250e78537c380a0ea2cdc36514c279", "fields": {"departement": "93", "stop_lat": 48.88094305908556, "code_postal": "93045", "stop_lon": 2.4252954936046307, "coord": [48.88094305908556, 2.4252954936046307], "stop_id": 3560209, "stop_desc": "48 BOULEVARD DU GENERAL LECLERC - 93045", "stop_name": "JOSEPH DEPINAY"}, "geometry": {"type": "Point", "coordinates": [2.4252954936046307, 48.88094305908556]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "074cd582af384fb5592a06a2a2fdd0910ef86d7f", "fields": {"departement": "93", "stop_lat": 48.89609148581634, "code_postal": "93053", "stop_lon": 2.4602698105278074, "coord": [48.89609148581634, 2.4602698105278074], "stop_id": 3560227, "stop_desc": "FACE 108 RUE JEAN JAURES - 93053", "stop_name": "NOISY-LE-SEC RER"}, "geometry": {"type": "Point", "coordinates": [2.4602698105278074, 48.89609148581634]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "245c0c71575a22f2cc88f6c3cd0373b02482d60a", "fields": {"departement": "93", "stop_lat": 48.94258264155919, "code_postal": "93007", "stop_lon": 2.4673244238823555, "coord": [48.94258264155919, 2.4673244238823555], "stop_id": 3450660, "stop_desc": "186 AVENUE PASTEUR - 93007", "stop_name": "PLACE DE LA LIBERATION"}, "geometry": {"type": "Point", "coordinates": [2.4673244238823555, 48.94258264155919]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b78d9d25525ea927b9176f82608ac33567bc77df", "fields": {"departement": "93", "stop_lat": 48.88258950570033, "code_postal": "93063", "stop_lon": 2.434564608323154, "coord": [48.88258950570033, 2.434564608323154], "stop_id": 3560213, "stop_desc": "51 AVENUE DE VERDUN - 93063", "stop_name": "PLACE DU 19 MARS 1962"}, "geometry": {"type": "Point", "coordinates": [2.434564608323154, 48.88258950570033]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a81b049bf45ea629659e039b9523c39959932df7", "fields": {"departement": "93", "stop_lat": 48.889718658513544, "code_postal": "93053", "stop_lon": 2.4521864237688176, "coord": [48.889718658513544, 2.4521864237688176], "stop_id": 3560222, "stop_desc": "FACE 11 RUE ANATOLE FRANCE - 93053", "stop_name": "JEANNE D'ARC"}, "geometry": {"type": "Point", "coordinates": [2.4521864237688176, 48.889718658513544]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "31e877b1afc374b92d9472ae150f2f1f920c413f", "fields": {"departement": "93", "stop_lat": 48.89795091404474, "code_postal": "93010", "stop_lon": 2.4773811142980615, "coord": [48.89795091404474, 2.4773811142980615], "stop_id": 3450666, "stop_desc": "90-92 RUE ROGER SALENGRO - 93010", "stop_name": "BAUDIN"}, "geometry": {"type": "Point", "coordinates": [2.4773811142980615, 48.89795091404474]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bc04b9cb781365faf2da3af16b004a1ffbec4abb", "fields": {"departement": "93", "stop_lat": 48.88642559070357, "code_postal": "93053", "stop_lon": 2.4466189175575725, "coord": [48.88642559070357, 2.4466189175575725], "stop_id": 3560218, "stop_desc": "FACE 73 RUE ANATOLE FRANCE - 93053", "stop_name": "HOCHE"}, "geometry": {"type": "Point", "coordinates": [2.4466189175575725, 48.88642559070357]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "87bcf4d43647f16c36b381fbd87c1b87b9fca119", "fields": {"departement": "93", "stop_lat": 48.881676627413, "code_postal": "93063", "stop_lon": 2.4297662965308153, "coord": [48.881676627413, 2.4297662965308153], "stop_id": 3560211, "stop_desc": "FACE 108 AVENUE DE VERDUN - 93063", "stop_name": "LIBERTE"}, "geometry": {"type": "Point", "coordinates": [2.4297662965308153, 48.881676627413]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0bde2598d3bf076313c27866bbd5d274b5d6fcc3", "fields": {"departement": "94", "stop_lat": 48.82555977086264, "code_postal": "94017", "stop_lon": 2.5034295400959703, "coord": [48.82555977086264, 2.5034295400959703], "stop_id": 3619642, "stop_desc": "178 AVENUE DU GENERAL DE GAULLE - 94017", "stop_name": "ANDRE OHRESSER"}, "geometry": {"type": "Point", "coordinates": [2.5034295400959703, 48.82555977086264]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5bb2ad91d4f7edc151a25aff1630cede64e1f974", "fields": {"departement": "94", "stop_lat": 48.81737017662828, "code_postal": "94042", "stop_lon": 2.476836927898891, "coord": [48.81737017662828, 2.476836927898891], "stop_id": 3619480, "stop_desc": "FACE 24 AVENUE DU PRESIDENT WILSON - 94042", "stop_name": "DAGOTY"}, "geometry": {"type": "Point", "coordinates": [2.476836927898891, 48.81737017662828]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b48c19c0813faeb92a736549b5c52dcdc76d484d", "fields": {"departement": "94", "stop_lat": 48.81368978286796, "code_postal": "94017", "stop_lon": 2.5014182539472904, "coord": [48.81368978286796, 2.5014182539472904], "stop_id": 3619488, "stop_desc": "162 RUE DE VERDUN - 94017", "stop_name": "VERDUN - LA PLAGE"}, "geometry": {"type": "Point", "coordinates": [2.5014182539472904, 48.81368978286796]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "61acec9afee7b0d181baba739b0c95accfd536d7", "fields": {"departement": "94", "stop_lat": 48.816650544271866, "code_postal": "94017", "stop_lon": 2.484796632384698, "coord": [48.816650544271866, 2.484796632384698], "stop_id": 3619484, "stop_desc": "14 RUE DE VERDUN - 94017", "stop_name": "JACQUES DECOUR"}, "geometry": {"type": "Point", "coordinates": [2.484796632384698, 48.816650544271866]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "92fda6ca97f74a1ae984ad0c1dc5bfab9814adb5", "fields": {"departement": "94", "stop_lat": 48.82700396233923, "code_postal": "94079", "stop_lon": 2.534701777554806, "coord": [48.82700396233923, 2.534701777554806], "stop_id": 3619467, "stop_desc": "102 RUE JEAN JAURES - 94079", "stop_name": "BEAUSEJOUR"}, "geometry": {"type": "Point", "coordinates": [2.534701777554806, 48.82700396233923]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "db05146730565e03a9874e345003058763b2073b", "fields": {"departement": "94", "stop_lat": 48.814804248232825, "code_postal": "94017", "stop_lon": 2.494780507413906, "coord": [48.814804248232825, 2.494780507413906], "stop_id": 3619486, "stop_desc": "119-121 RUE DE VERDUN - 94017", "stop_name": "DIANE"}, "geometry": {"type": "Point", "coordinates": [2.494780507413906, 48.814804248232825]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dcc5442e7069fd9ac172d82148be609918e360ad", "fields": {"departement": "94", "stop_lat": 48.81585473698603, "code_postal": "94017", "stop_lon": 2.488686668376452, "coord": [48.81585473698603, 2.488686668376452], "stop_id": 3619485, "stop_desc": "36 RUE DE VERDUN - 94017", "stop_name": "BEL AIR"}, "geometry": {"type": "Point", "coordinates": [2.488686668376452, 48.81585473698603]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8e140e497c34d270138e58a33456b5851a2f913e", "fields": {"departement": "94", "stop_lat": 48.82345834924084, "code_postal": "94079", "stop_lon": 2.542650985203811, "coord": [48.82345834924084, 2.542650985203811], "stop_id": 3619666, "stop_desc": "PL PIERRE SEMARD - 94079", "stop_name": "VILLIERS-SUR-MARNE - LE PLESSIS-TREVISE-RER"}, "geometry": {"type": "Point", "coordinates": [2.542650985203811, 48.82345834924084]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "146c02c25b2e26c06820c44d6af5194dda492242", "fields": {"departement": "94", "stop_lat": 48.825352722736056, "code_postal": "94017", "stop_lon": 2.50997621620123, "coord": [48.825352722736056, 2.50997621620123], "stop_id": 3619647, "stop_desc": "102 AVENUE DE LA REPUBLIQUE - 94017", "stop_name": "LES BOULLEREAUX - CHAMPIGNY RER"}, "geometry": {"type": "Point", "coordinates": [2.50997621620123, 48.825352722736056]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fa0d7076b2463a06d09d0b24da5365c7057c5c4c", "fields": {"departement": "94", "stop_lat": 48.785044968535104, "code_postal": "94068", "stop_lon": 2.495139092698952, "coord": [48.785044968535104, 2.495139092698952], "stop_id": 3619696, "stop_desc": "48 AVENUE DE L'ALMA - 94068", "stop_name": "RASPAIL-PONT DE BONNEUIL"}, "geometry": {"type": "Point", "coordinates": [2.495139092698952, 48.785044968535104]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3cd85554e349da9368ad1144b7d80bdbdbd9f3e9", "fields": {"departement": "94", "stop_lat": 48.795761850388715, "code_postal": "94068", "stop_lon": 2.4993889705343197, "coord": [48.795761850388715, 2.4993889705343197], "stop_id": 3619690, "stop_desc": "36 BIS AVENUE LOUIS BLANC - 94068", "stop_name": "RUE DE LA FERME"}, "geometry": {"type": "Point", "coordinates": [2.4993889705343197, 48.795761850388715]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "33d4854c8a232960a2062c1b3c2e5224fcb11a69", "fields": {"departement": "94", "stop_lat": 48.81735748932295, "code_postal": "94017", "stop_lon": 2.5362982634103557, "coord": [48.81735748932295, 2.5362982634103557], "stop_id": 3619663, "stop_desc": "RUE DE BERNAU - 94017", "stop_name": "LYCEE MARX DORMOY"}, "geometry": {"type": "Point", "coordinates": [2.5362982634103557, 48.81735748932295]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7e023b3ed5e35b1a2a04ae5de7ce8b032caf6928", "fields": {"departement": "94", "stop_lat": 48.81922481437062, "code_postal": "94017", "stop_lon": 2.5149235929101734, "coord": [48.81922481437062, 2.5149235929101734], "stop_id": 3619652, "stop_desc": "30 RUE ALEXANDRE FOURNY - 94017", "stop_name": "GUY MOQUET"}, "geometry": {"type": "Point", "coordinates": [2.5149235929101734, 48.81922481437062]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "96140e92843992aea45db2f05debb78f996c4253", "fields": {"departement": "94", "stop_lat": 48.80368630329261, "code_postal": "94068", "stop_lon": 2.507849592372864, "coord": [48.80368630329261, 2.507849592372864], "stop_id": 3619682, "stop_desc": "79 BOULEVARD DE CHAMPIGNY - 94068", "stop_name": "JOFFRE"}, "geometry": {"type": "Point", "coordinates": [2.507849592372864, 48.80368630329261]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0d4b09a41cb9a1df6d3a8792296f71923f9141f0", "fields": {"departement": "94", "stop_lat": 48.801452939993034, "code_postal": "94046", "stop_lon": 2.430834252803074, "coord": [48.801452939993034, 2.430834252803074], "stop_id": 3619751, "stop_desc": "FACE73BIS AVENUE DU GENERAL DE GAULLE - 94046", "stop_name": "MAIRIE DE MAISONS-ALFORT"}, "geometry": {"type": "Point", "coordinates": [2.430834252803074, 48.801452939993034]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e2edd1cd6f139df9a428d48974f4ca268315ff43", "fields": {"departement": "94", "stop_lat": 48.809556539237605, "code_postal": "94046", "stop_lon": 2.4549210064796254, "coord": [48.809556539237605, 2.4549210064796254], "stop_id": 3619848, "stop_desc": "FACE 2 RUE DE VENUS - 94046", "stop_name": "PONT DE MAISONS-ALFORT"}, "geometry": {"type": "Point", "coordinates": [2.4549210064796254, 48.809556539237605]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2fe3b2490793f3faa7aeb533f32d4d6de20f3f66", "fields": {"departement": "94", "stop_lat": 48.81477302407176, "code_postal": "94069", "stop_lon": 2.460267615019731, "coord": [48.81477302407176, 2.460267615019731], "stop_id": 3619843, "stop_desc": "FACE 3 RUE PAUL VERLAINE - 94069", "stop_name": "ECOLES DE GRAVELLE"}, "geometry": {"type": "Point", "coordinates": [2.460267615019731, 48.81477302407176]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6901c909c9a050e0840dfe201892ca9bc18922bc", "fields": {"departement": "94", "stop_lat": 48.79993907013684, "code_postal": "94028", "stop_lon": 2.4554298161525905, "coord": [48.79993907013684, 2.4554298161525905], "stop_id": 3619861, "stop_desc": "AVENUE LAFERRIERE - 94028", "stop_name": "HENRI MONDOR - LAFERRIERE"}, "geometry": {"type": "Point", "coordinates": [2.4554298161525905, 48.79993907013684]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ebba1c6a16f1d24dab5de32625cf807e7660140e", "fields": {"departement": "94", "stop_lat": 48.78845519149672, "code_postal": "94028", "stop_lon": 2.461647115332306, "coord": [48.78845519149672, 2.461647115332306], "stop_id": 3619818, "stop_desc": "FACE 75 RUE DE MESLY - 94028", "stop_name": "HOPITAL CHENEVIER"}, "geometry": {"type": "Point", "coordinates": [2.461647115332306, 48.78845519149672]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2cea758485fd958d212d6a7a566bcdd4610fc9e1", "fields": {"departement": "94", "stop_lat": 48.8024870251911, "code_postal": "94028", "stop_lon": 2.4599663873329023, "coord": [48.8024870251911, 2.4599663873329023], "stop_id": 3619856, "stop_desc": "94 AVENUE LAFERRIERE - 94028", "stop_name": "CHERET - LAFERRIERE"}, "geometry": {"type": "Point", "coordinates": [2.4599663873329023, 48.8024870251911]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8d2e0868f175cd461d7011c578125e411607b2ee", "fields": {"departement": "94", "stop_lat": 48.808942621482075, "code_postal": "94046", "stop_lon": 2.457668352733885, "coord": [48.808942621482075, 2.457668352733885], "stop_id": 3619850, "stop_desc": "FACE 40 RUE DANIELLE CASANOVA - 94046", "stop_name": "PLANETES"}, "geometry": {"type": "Point", "coordinates": [2.457668352733885, 48.808942621482075]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8c0473f7c1163bde3e77f49a6a92194efaafce4c", "fields": {"departement": "94", "stop_lat": 48.798628214442694, "code_postal": "94002", "stop_lon": 2.422244468242623, "coord": [48.798628214442694, 2.422244468242623], "stop_id": 3619834, "stop_desc": "9 RUE EMILE ZOLA - 94002", "stop_name": "DOLET - ZOLA"}, "geometry": {"type": "Point", "coordinates": [2.422244468242623, 48.798628214442694]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0fbf7db32f842a82beff845767996dcbee3443f2", "fields": {"departement": "94", "stop_lat": 48.79101789108695, "code_postal": "94028", "stop_lon": 2.460551417499719, "coord": [48.79101789108695, 2.460551417499719], "stop_id": 3619817, "stop_desc": "3 RUE DE MESLY - 94028", "stop_name": "BRETAGNE"}, "geometry": {"type": "Point", "coordinates": [2.460551417499719, 48.79101789108695]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6f951e634889bc167dd5cb5aaf97033e95a719ec", "fields": {"departement": "94", "stop_lat": 48.8052308940406, "code_postal": "94028", "stop_lon": 2.466027828337254, "coord": [48.8052308940406, 2.466027828337254], "stop_id": 3619854, "stop_desc": "31 QUAI DE HALAGE - 94028", "stop_name": "HALAGE"}, "geometry": {"type": "Point", "coordinates": [2.466027828337254, 48.8052308940406]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a5b54deb881f2a9802c0d709d7cb811bd8716b47", "fields": {"departement": "94", "stop_lat": 48.80102123483813, "code_postal": "94046", "stop_lon": 2.431200824049608, "coord": [48.80102123483813, 2.431200824049608], "stop_id": 3619932, "stop_desc": "FACE 10 AVENUE DE LA REPUBLIQUE - 94046", "stop_name": "MAIRIE DE MAISONS-ALFORT"}, "geometry": {"type": "Point", "coordinates": [2.431200824049608, 48.80102123483813]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d6bf50dc4c11d1439f4de8079019f8dae64e8073", "fields": {"departement": "94", "stop_lat": 48.75654794721687, "code_postal": "94073", "stop_lon": 2.3880006253863586, "coord": [48.75654794721687, 2.3880006253863586], "stop_id": 3620232, "stop_desc": "AVENUE DE VERSAILLES - 94073", "stop_name": "CARREFOUR DE LA RESISTANCE"}, "geometry": {"type": "Point", "coordinates": [2.3880006253863586, 48.75654794721687]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4e255496a300cc94b8469ec6f56271584ee01e25", "fields": {"departement": "94", "stop_lat": 48.808670703946234, "code_postal": "94046", "stop_lon": 2.450850344027082, "coord": [48.808670703946234, 2.450850344027082], "stop_id": 3619952, "stop_desc": "203-205 AVENUE DE LA REPUBLIQUE - 94046", "stop_name": "RUE DE MARSEILLE"}, "geometry": {"type": "Point", "coordinates": [2.450850344027082, 48.808670703946234]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7b566efb94d32d2ebf4051a1ee015530cf32628b", "fields": {"departement": "94", "stop_lat": 48.768742338355544, "code_postal": "94028", "stop_lon": 2.4636938686829297, "coord": [48.768742338355544, 2.4636938686829297], "stop_id": 3620259, "stop_desc": "ROUTE DE LA POMPADOUR - 94028", "stop_name": "POINTE DU LAC"}, "geometry": {"type": "Point", "coordinates": [2.4636938686829297, 48.768742338355544]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "73904521aa838af93fa0627b1278be9a157cdd42", "fields": {"departement": "94", "stop_lat": 48.80734290991733, "code_postal": "94046", "stop_lon": 2.4382199658929267, "coord": [48.80734290991733, 2.4382199658929267], "stop_id": 3619911, "stop_desc": "179 AVENUE DU GENERAL LECLERC - 94046", "stop_name": "CECILE"}, "geometry": {"type": "Point", "coordinates": [2.4382199658929267, 48.80734290991733]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "66b36d261c71febab088ecacd79f62b4daa54253", "fields": {"departement": "94", "stop_lat": 48.81004937608928, "code_postal": "94046", "stop_lon": 2.436864439987811, "coord": [48.81004937608928, 2.436864439987811], "stop_id": 3619915, "stop_desc": "20 AVENUE GAMBETTA - 94046", "stop_name": "GABRIEL PERI"}, "geometry": {"type": "Point", "coordinates": [2.436864439987811, 48.81004937608928]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "18d1e3d9181ceb3c868276658ebeca7ed0a1513e", "fields": {"departement": "94", "stop_lat": 48.80764356796923, "code_postal": "94046", "stop_lon": 2.4623326343241865, "coord": [48.80764356796923, 2.4623326343241865], "stop_id": 3619958, "stop_desc": "AVENUE DE VERDUN - 94046", "stop_name": "LOUIS FLICHE"}, "geometry": {"type": "Point", "coordinates": [2.4623326343241865, 48.80764356796923]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d61eded4d3cf157a0bd1b4f944ccaf2572de3c3f", "fields": {"departement": "94", "stop_lat": 48.7670902372259, "code_postal": "94028", "stop_lon": 2.4703658054910917, "coord": [48.7670902372259, 2.4703658054910917], "stop_id": 3620260, "stop_desc": "ROUTE DE LA POMPADOUR - 94028", "stop_name": "EUROPARC"}, "geometry": {"type": "Point", "coordinates": [2.4703658054910917, 48.7670902372259]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "83aef8a1596fdeb74a5587b4bfb8a0f79928818e", "fields": {"departement": "94", "stop_lat": 48.81002608092642, "code_postal": "94046", "stop_lon": 2.4430287706765292, "coord": [48.81002608092642, 2.4430287706765292], "stop_id": 3619918, "stop_desc": "69 AVENUE GAMBETTA - 94046", "stop_name": "RENE COTY"}, "geometry": {"type": "Point", "coordinates": [2.4430287706765292, 48.81002608092642]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "036629a208a33c9437b090604dc0ab565e7813b4", "fields": {"departement": "94", "stop_lat": 48.77351349029003, "code_postal": "94028", "stop_lon": 2.436916768869354, "coord": [48.77351349029003, 2.436916768869354], "stop_id": 3620250, "stop_desc": "0 AV DE LA POMPADOUR - 94028", "stop_name": "POMPADOUR"}, "geometry": {"type": "Point", "coordinates": [2.436916768869354, 48.77351349029003]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8a66b5bb5bb68c06cb09f92f2c73cc9ca206b0ef", "fields": {"departement": "94", "stop_lat": 48.79687271996065, "code_postal": "94028", "stop_lon": 2.4569193270234053, "coord": [48.79687271996065, 2.4569193270234053], "stop_id": 3619812, "stop_desc": "29-31 AVENUE DU MARECHAL DE LATTRE DE TASSIGNY - 94028", "stop_name": "GENERAL GALLIENI"}, "geometry": {"type": "Point", "coordinates": [2.4569193270234053, 48.79687271996065]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bbe118dc179c0ab31f4e72c7968867afbf569297", "fields": {"departement": "94", "stop_lat": 48.78340456217213, "code_postal": "94028", "stop_lon": 2.452114373753063, "coord": [48.78340456217213, 2.452114373753063], "stop_id": 3619766, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 94028", "stop_name": "PREFECTURE DU VAL-DE-MARNE"}, "geometry": {"type": "Point", "coordinates": [2.452114373753063, 48.78340456217213]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1475c1719085803fd062063b9a492cb8a4e68faa", "fields": {"departement": "94", "stop_lat": 48.782266577868384, "code_postal": "94028", "stop_lon": 2.4576745123491808, "coord": [48.782266577868384, 2.4576745123491808], "stop_id": 3619768, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 94028", "stop_name": "LYCEE SAINT-EXUPERY"}, "geometry": {"type": "Point", "coordinates": [2.4576745123491808, 48.782266577868384]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "66d3c4c5e65e605c9732339d44cb99dc0f55bcd6", "fields": {"departement": "94", "stop_lat": 48.804012330369375, "code_postal": "94046", "stop_lon": 2.444050598766659, "coord": [48.804012330369375, 2.444050598766659], "stop_id": 3619808, "stop_desc": "102 AVENUE DU GENERAL LECLERC - 94046", "stop_name": "LES JUILLIOTTES-METRO"}, "geometry": {"type": "Point", "coordinates": [2.444050598766659, 48.804012330369375]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7b140e51cb9d99d974d6871321d13189648b43c4", "fields": {"departement": "94", "stop_lat": 48.80259233185019, "code_postal": "94046", "stop_lon": 2.4334214355511814, "coord": [48.80259233185019, 2.4334214355511814], "stop_id": 3619803, "stop_desc": "FACE 34 AVENUE DE LA REPUBLIQUE - 94046", "stop_name": "REPUBLIQUE - BLUM"}, "geometry": {"type": "Point", "coordinates": [2.4334214355511814, 48.80259233185019]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0851114e6e77e028ea09ffd55a21e5335c6b9ae7", "fields": {"departement": "94", "stop_lat": 48.80300476414455, "code_postal": "94046", "stop_lon": 2.434660350132125, "coord": [48.80300476414455, 2.434660350132125], "stop_id": 3619802, "stop_desc": "FACE 37 AVENUE DE LA REPUBLIQUE - 94046", "stop_name": "REPUBLIQUE - BLUM"}, "geometry": {"type": "Point", "coordinates": [2.434660350132125, 48.80300476414455]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e58be739a489afde72197897d7d30c61836e3283", "fields": {"departement": "94", "stop_lat": 48.80309521938252, "code_postal": "94046", "stop_lon": 2.4339530039416792, "coord": [48.80309521938252, 2.4339530039416792], "stop_id": 3619778, "stop_desc": "35 AVENUE DU PROFESSEUR CADIOT - 94046", "stop_name": "REPUBLIQUE-BLUM"}, "geometry": {"type": "Point", "coordinates": [2.4339530039416792, 48.80309521938252]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d0a2fb23393356a29c122f6ec170aabdec077757", "fields": {"departement": "94", "stop_lat": 48.78091016463046, "code_postal": "94028", "stop_lon": 2.4736108859036237, "coord": [48.78091016463046, 2.4736108859036237], "stop_id": 3619775, "stop_desc": "AV DU DOCTEUR PAUL CASALIS - 94028", "stop_name": "LA GAITE"}, "geometry": {"type": "Point", "coordinates": [2.4736108859036237, 48.78091016463046]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "89e39758542190b7a14bd2171fa50395d411abe6", "fields": {"departement": "94", "stop_lat": 48.80408159015529, "code_postal": "94046", "stop_lon": 2.4367305331414872, "coord": [48.80408159015529, 2.4367305331414872], "stop_id": 3619805, "stop_desc": "FACE 70 AVENUE DE LA REPUBLIQUE - 94046", "stop_name": "JOUET"}, "geometry": {"type": "Point", "coordinates": [2.4367305331414872, 48.80408159015529]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cad6c9bb5df26d51f8e3d22f753979ec7a3729f5", "fields": {"departement": "94", "stop_lat": 48.80393769421313, "code_postal": "94046", "stop_lon": 2.4368391078038396, "coord": [48.80393769421313, 2.4368391078038396], "stop_id": 3619804, "stop_desc": "70 AVENUE DE LA REPUBLIQUE - 94046", "stop_name": "JOUET"}, "geometry": {"type": "Point", "coordinates": [2.4368391078038396, 48.80393769421313]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8060a5193f2d9976f3c061af35ae9ce2e9884266", "fields": {"departement": "94", "stop_lat": 48.79690849007686, "code_postal": "94028", "stop_lon": 2.4478180270113206, "coord": [48.79690849007686, 2.4478180270113206], "stop_id": 3619864, "stop_desc": "FACE 96 AVENUE DU GENERAL DE GAULLE - 94028", "stop_name": "CRETEIL - L'ECHAT"}, "geometry": {"type": "Point", "coordinates": [2.4478180270113206, 48.79690849007686]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c604b6db991ae1eee33c767a70863687093f401b", "fields": {"departement": "94", "stop_lat": 48.78554622424842, "code_postal": "94028", "stop_lon": 2.449466821174109, "coord": [48.78554622424842, 2.449466821174109], "stop_id": 3619872, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 94028", "stop_name": "LA HAYE AUX MOINES"}, "geometry": {"type": "Point", "coordinates": [2.449466821174109, 48.78554622424842]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "75cadf34e7594003dbd453a33362cd2ee0e9b56f", "fields": {"departement": "94", "stop_lat": 48.80259233185019, "code_postal": "94046", "stop_lon": 2.4334214355511814, "coord": [48.80259233185019, 2.4334214355511814], "stop_id": 3619906, "stop_desc": "FACE 34 AVENUE DE LA REPUBLIQUE - 94046", "stop_name": "REPUBLIQUE - BLUM"}, "geometry": {"type": "Point", "coordinates": [2.4334214355511814, 48.80259233185019]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a618619efad417246c93b4b6a671902f5cbf6a7c", "fields": {"departement": "94", "stop_lat": 48.78201271988064, "code_postal": "94028", "stop_lon": 2.4598228120093797, "coord": [48.78201271988064, 2.4598228120093797], "stop_id": 3619877, "stop_desc": "RUE MAURICE UTRILLO (D1B) - 94028", "stop_name": "LYCEE SAINT-EXUPERY"}, "geometry": {"type": "Point", "coordinates": [2.4598228120093797, 48.78201271988064]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e6fd744a45fe86d4e6d34588f20571799b9d736f", "fields": {"departement": "94", "stop_lat": 48.76970502803987, "code_postal": "94028", "stop_lon": 2.471025177172269, "coord": [48.76970502803987, 2.471025177172269], "stop_id": 3619893, "stop_desc": "FACE 15 R DE SAUSSURE - 94028", "stop_name": "LYCEE GUTENBERG"}, "geometry": {"type": "Point", "coordinates": [2.471025177172269, 48.76970502803987]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9c3f68a9504332845304a227fa2265bae0e0ceb0", "fields": {"departement": "94", "stop_lat": 48.80408159015529, "code_postal": "94046", "stop_lon": 2.4367305331414872, "coord": [48.80408159015529, 2.4367305331414872], "stop_id": 3619908, "stop_desc": "FACE 70 AVENUE DE LA REPUBLIQUE - 94046", "stop_name": "JOUET"}, "geometry": {"type": "Point", "coordinates": [2.4367305331414872, 48.80408159015529]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dc35770d76cc9fdb7d5c77bd70a0d3ba8a1324fa", "fields": {"departement": "94", "stop_lat": 48.77760093648482, "code_postal": "94028", "stop_lon": 2.46704728532579, "coord": [48.77760093648482, 2.46704728532579], "stop_id": 3619882, "stop_desc": "FACE 100 RUE JULIETTE SAVAR - 94028", "stop_name": "RENE ARCOS"}, "geometry": {"type": "Point", "coordinates": [2.46704728532579, 48.77760093648482]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4c152398c138a124f09cab9e2a7ba4a522c65cd6", "fields": {"departement": "94", "stop_lat": 48.76950606229964, "code_postal": "94028", "stop_lon": 2.4721124479116656, "coord": [48.76950606229964, 2.4721124479116656], "stop_id": 3619892, "stop_desc": "19 R DE SAUSSURE - 94028", "stop_name": "LYCEE GUTENBERG"}, "geometry": {"type": "Point", "coordinates": [2.4721124479116656, 48.76950606229964]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "09259311c0cdc64863e364ec009a0c149591ec90", "fields": {"departement": "94", "stop_lat": 48.80393769421313, "code_postal": "94046", "stop_lon": 2.4368391078038396, "coord": [48.80393769421313, 2.4368391078038396], "stop_id": 3619907, "stop_desc": "70 AVENUE DE LA REPUBLIQUE - 94046", "stop_name": "JOUET"}, "geometry": {"type": "Point", "coordinates": [2.4368391078038396, 48.80393769421313]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "585d1252027dde67465e0fb0a3507a37e22bb989", "fields": {"departement": "94", "stop_lat": 48.77790167824832, "code_postal": "94028", "stop_lon": 2.4631993828949934, "coord": [48.77790167824832, 2.4631993828949934], "stop_id": 3619880, "stop_desc": "RUE RENE ARCOS - 94028", "stop_name": "JOHN KENNEDY"}, "geometry": {"type": "Point", "coordinates": [2.4631993828949934, 48.77790167824832]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a2e226841207c8ca1c87fec899393f9af4c50d8c", "fields": {"departement": "92", "stop_lat": 48.84109238684097, "code_postal": "92012", "stop_lon": 2.2270056560618907, "coord": [48.84109238684097, 2.2270056560618907], "stop_id": 3632431, "stop_desc": "12-14 AV DU MARECHAL DE LATTRE DE TASSIGNY - 92012", "stop_name": "PONT DE SAINT-CLOUD - ALBERT KAHN"}, "geometry": {"type": "Point", "coordinates": [2.2270056560618907, 48.84109238684097]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8ee9b4051e88c0f47c48373d69be58853211debd", "fields": {"departement": "94", "stop_lat": 48.777666485328965, "code_postal": "94028", "stop_lon": 2.455923122658155, "coord": [48.777666485328965, 2.455923122658155], "stop_id": 3619830, "stop_desc": "AVENUE DES COMPAGNONS DE LA LIBERATION - 94028", "stop_name": "HOTEL DE VILLE DE CRETEIL"}, "geometry": {"type": "Point", "coordinates": [2.455923122658155, 48.777666485328965]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "349f937c01f14ec5a9444d51716f9700e7cab670", "fields": {"departement": "94", "stop_lat": 48.77042976802533, "code_postal": "94028", "stop_lon": 2.4266447259714754, "coord": [48.77042976802533, 2.4266447259714754], "stop_id": 3620248, "stop_desc": "116 AVENUE VICTOR HUGO - 94028", "stop_name": "PARC INTERDEPARTEMENTAL DES SPORTS"}, "geometry": {"type": "Point", "coordinates": [2.4266447259714754, 48.77042976802533]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "60a2a5a38d826aea49ab8b3a2d3a85d6379df94d", "fields": {"departement": "94", "stop_lat": 48.77328787005393, "code_postal": "94011", "stop_lon": 2.4957288820720187, "coord": [48.77328787005393, 2.4957288820720187], "stop_id": 3620269, "stop_desc": "AVENUE DU MARECHAL LECLERC - 94011", "stop_name": "PETITS CARREAUX"}, "geometry": {"type": "Point", "coordinates": [2.4957288820720187, 48.77328787005393]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "77cfd5ef514bd6fcecf01ac7b1760cdb493c9190", "fields": {"departement": "94", "stop_lat": 48.76578336300708, "code_postal": "94011", "stop_lon": 2.481171527822905, "coord": [48.76578336300708, 2.481171527822905], "stop_id": 3620263, "stop_desc": "AVENUE JEAN ROSTAND - 94011", "stop_name": "STADE DE BONNEUIL"}, "geometry": {"type": "Point", "coordinates": [2.481171527822905, 48.76578336300708]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "38139ac416f54b3a161f2ec339f2327a4ad9d8e3", "fields": {"departement": "94", "stop_lat": 48.767969759201364, "code_postal": "94011", "stop_lon": 2.4866027431202524, "coord": [48.767969759201364, 2.4866027431202524], "stop_id": 3620265, "stop_desc": "0 AV JEAN ROSTAND - 94011", "stop_name": "MESSIDOR-LIBERTES"}, "geometry": {"type": "Point", "coordinates": [2.4866027431202524, 48.767969759201364]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5cef46d876b4f51104b7d54f13e61e36ae8d6b96", "fields": {"departement": "94", "stop_lat": 48.7772177623321, "code_postal": "94028", "stop_lon": 2.4552421324650133, "coord": [48.7772177623321, 2.4552421324650133], "stop_id": 3619728, "stop_desc": "0 AV DU GENERAL PIERRE BILLOTTE - 94028", "stop_name": "HOTEL DE VILLE DE CRETEIL"}, "geometry": {"type": "Point", "coordinates": [2.4552421324650133, 48.7772177623321]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "27e67f19dc5e4f6fc042af436ca2ba636ee5ba58", "fields": {"departement": "94", "stop_lat": 48.80711639570117, "code_postal": "94068", "stop_lon": 2.5101060436758766, "coord": [48.80711639570117, 2.5101060436758766], "stop_id": 3619742, "stop_desc": "PISTE GARE ROUTIERE - 94068", "stop_name": "CHAMPIGNY - SAINT-MAUR RER"}, "geometry": {"type": "Point", "coordinates": [2.5101060436758766, 48.80711639570117]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c3ba6f4babd14fe1d8f1d9caf2082c237d0fe89a", "fields": {"departement": "94", "stop_lat": 48.78788466152702, "code_postal": "94028", "stop_lon": 2.4376516556188057, "coord": [48.78788466152702, 2.4376516556188057], "stop_id": 3619759, "stop_desc": "3 BIS RUE DES PETITES HAIES - 94028", "stop_name": "PETITES HAIES"}, "geometry": {"type": "Point", "coordinates": [2.4376516556188057, 48.78788466152702]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d2d0ddee5d263c48f232d44d009860518244f000", "fields": {"departement": "94", "stop_lat": 48.81265425396275, "code_postal": "94046", "stop_lon": 2.427574778454602, "coord": [48.81265425396275, 2.427574778454602], "stop_id": 3619745, "stop_desc": "18 AVENUE DU GENERAL LECLERC - 94046", "stop_name": "ERNEST RENAN"}, "geometry": {"type": "Point", "coordinates": [2.427574778454602, 48.81265425396275]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7908ccf46939f0759a68c2126fe11ec5dd319945", "fields": {"departement": "94", "stop_lat": 48.76958801704533, "code_postal": "94011", "stop_lon": 2.486281059463284, "coord": [48.76958801704533, 2.486281059463284], "stop_id": 3619741, "stop_desc": "AV DE BOISSY - 94011", "stop_name": "MESSIDOR - LIBERTES"}, "geometry": {"type": "Point", "coordinates": [2.486281059463284, 48.76958801704533]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "860ed77e45d9830bbb9afeff9bfbe13f698a2bff", "fields": {"departement": "94", "stop_lat": 48.76912647527837, "code_postal": "94011", "stop_lon": 2.4815479126101163, "coord": [48.76912647527837, 2.4815479126101163], "stop_id": 3619707, "stop_desc": "FACE 1 AVENUE D'ORADOUR SUR GLANE - 94011", "stop_name": "VERDUN"}, "geometry": {"type": "Point", "coordinates": [2.4815479126101163, 48.76912647527837]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9074059aec0c5fdfb03597732736dd42cf4ff7c9", "fields": {"departement": "94", "stop_lat": 48.787669260838584, "code_postal": "94028", "stop_lon": 2.4372839842938494, "coord": [48.787669260838584, 2.4372839842938494], "stop_id": 3619758, "stop_desc": "2 RUE DES PETITES HAIES - 94028", "stop_name": "PETITES HAIES"}, "geometry": {"type": "Point", "coordinates": [2.4372839842938494, 48.787669260838584]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "391418f568aded083f35fa1a96236b225138c795", "fields": {"departement": "94", "stop_lat": 48.78941686591872, "code_postal": "94028", "stop_lon": 2.4431092172447606, "coord": [48.78941686591872, 2.4431092172447606], "stop_id": 3619761, "stop_desc": "RUE PASTEUR VALERY RADOT - 94028", "stop_name": "MONTAIGUT"}, "geometry": {"type": "Point", "coordinates": [2.4431092172447606, 48.78941686591872]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ac0da8f77e64b7f737bb5fd25211f406e89e1973", "fields": {"departement": "94", "stop_lat": 48.7704079792521, "code_postal": "94011", "stop_lon": 2.4846381105808426, "coord": [48.7704079792521, 2.4846381105808426], "stop_id": 3619706, "stop_desc": "AVENUE DE VERDUN - 94011", "stop_name": "COLONEL FABIEN"}, "geometry": {"type": "Point", "coordinates": [2.4846381105808426, 48.7704079792521]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5d4b851be81a615215b7a38a1a0ce9208cd4e48b", "fields": {"departement": "94", "stop_lat": 48.77527305495651, "code_postal": "94011", "stop_lon": 2.4897514642831533, "coord": [48.77527305495651, 2.4897514642831533], "stop_id": 3619702, "stop_desc": "RUE ALFRED GILLET - 94011", "stop_name": "AVIATION"}, "geometry": {"type": "Point", "coordinates": [2.4897514642831533, 48.77527305495651]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "62e35334f63365b4e57b87126f7ad613960d717c", "fields": {"departement": "77", "stop_lat": 48.855816647455825, "code_postal": "77083", "stop_lon": 2.5837207047110904, "coord": [48.855816647455825, 2.5837207047110904], "stop_id": 3639436, "stop_desc": "FACE 108 RUE AUGUSTE VALLAUD - 77083", "stop_name": "ROND-POINT DES PYRAMIDES"}, "geometry": {"type": "Point", "coordinates": [2.5837207047110904, 48.855816647455825]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "28644db06dc6531624c40dbd3a1207617ce2efd6", "fields": {"departement": "77", "stop_lat": 48.84666460222923, "code_postal": "77083", "stop_lon": 2.6017613463203326, "coord": [48.84666460222923, 2.6017613463203326], "stop_id": 3639448, "stop_desc": "FACE 1BIS RUE DE LA FONTAINE AUX COULONS - 77083", "stop_name": "RUE DE MALNOUE"}, "geometry": {"type": "Point", "coordinates": [2.6017613463203326, 48.84666460222923]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2233058d378d23b358179ff2b78dabc55bafa034", "fields": {"departement": "77", "stop_lat": 48.8434533562888, "code_postal": "77083", "stop_lon": 2.582000728025099, "coord": [48.8434533562888, 2.582000728025099], "stop_id": 3639423, "stop_desc": "BOULEVARD ARCHIMEDE - 77083", "stop_name": "NOISY-CHAMPS RER - DESCARTES"}, "geometry": {"type": "Point", "coordinates": [2.582000728025099, 48.8434533562888]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dca0b774cefd0f73bb7b44b47bc49b88483ba4f9", "fields": {"departement": "77", "stop_lat": 48.85243583010852, "code_postal": "77083", "stop_lon": 2.5844536888843566, "coord": [48.85243583010852, 2.5844536888843566], "stop_id": 3639434, "stop_desc": "AVENUE DES PYRAMIDES - 77083", "stop_name": "COLLEGE ARMAND LANOUX"}, "geometry": {"type": "Point", "coordinates": [2.5844536888843566, 48.85243583010852]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7164f4d06af296e84b10bf4b14e38b0fac68a577", "fields": {"departement": "77", "stop_lat": 48.84992692242795, "code_postal": "77083", "stop_lon": 2.585122653047492, "coord": [48.84992692242795, 2.585122653047492], "stop_id": 3639433, "stop_desc": "AVENUE DES PYRAMIDES - 77083", "stop_name": "GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.585122653047492, 48.84992692242795]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8a3f2942c47c57961140fe515a2885709fac25e7", "fields": {"departement": "77", "stop_lat": 48.8484430582703, "code_postal": "77083", "stop_lon": 2.585564957393865, "coord": [48.8484430582703, 2.585564957393865], "stop_id": 3639430, "stop_desc": "BOULEVARD DE NESLES - 77083", "stop_name": "BOIS DE GRACE"}, "geometry": {"type": "Point", "coordinates": [2.585564957393865, 48.8484430582703]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "637e6b3bfca5d64c34188406809641073c91ae28", "fields": {"departement": "77", "stop_lat": 48.84730322530311, "code_postal": "77083", "stop_lon": 2.6015331011783305, "coord": [48.84730322530311, 2.6015331011783305], "stop_id": 3639449, "stop_desc": "55 RUE DE MALNOUE - 77083", "stop_name": "RUE DE MALNOUE"}, "geometry": {"type": "Point", "coordinates": [2.6015331011783305, 48.84730322530311]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8c6ca860dabb07be8aa0ad28015ed2a111d0879d", "fields": {"departement": "77", "stop_lat": 48.8448175465803, "code_postal": "77083", "stop_lon": 2.5829331251440686, "coord": [48.8448175465803, 2.5829331251440686], "stop_id": 3639426, "stop_desc": "FACE 1 AVENUE AMPERE - 77083", "stop_name": "AMPERE"}, "geometry": {"type": "Point", "coordinates": [2.5829331251440686, 48.8448175465803]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "adfb1cd9e61e9ed89256864397435e5de4fc41d1", "fields": {"departement": "77", "stop_lat": 48.82710339673683, "code_postal": "77169", "stop_lon": 2.5954543717637324, "coord": [48.82710339673683, 2.5954543717637324], "stop_id": 3639727, "stop_desc": "FACE 46 AVENUE CHARLES BRAS - 77169", "stop_name": "MALNOUE - PLACE AUGUSTE LEGEMBLE"}, "geometry": {"type": "Point", "coordinates": [2.5954543717637324, 48.82710339673683]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ce50cf0e0b9736846b61fc8b428b88923f253d56", "fields": {"departement": "77", "stop_lat": 48.829415123672106, "code_postal": "77169", "stop_lon": 2.5987057777609466, "coord": [48.829415123672106, 2.5987057777609466], "stop_id": 3639457, "stop_desc": "26 RUE DE L'ANCIEN MONASTERE - 77169", "stop_name": "MALNOUE - ANCIEN MONASTERE"}, "geometry": {"type": "Point", "coordinates": [2.5987057777609466, 48.829415123672106]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c68cb65e2597c067331f1faeb6b9b72f515a3ed7", "fields": {"departement": "77", "stop_lat": 48.8434620358307, "code_postal": "77083", "stop_lon": 2.5821505528671724, "coord": [48.8434620358307, 2.5821505528671724], "stop_id": 3639489, "stop_desc": "BOULEVARD ARCHIMEDE - 77083", "stop_name": "NOISY-CHAMPS RER - DESCARTES."}, "geometry": {"type": "Point", "coordinates": [2.5821505528671724, 48.8434620358307]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ae93d263588074302711f0e1e63b53ae3f3915a6", "fields": {"departement": "77", "stop_lat": 48.830592439926875, "code_postal": "77169", "stop_lon": 2.5904211810401434, "coord": [48.830592439926875, 2.5904211810401434], "stop_id": 3639724, "stop_desc": "RUE JEAN MONNET - 77169", "stop_name": "MALNOUE - BOIS DES SOUCHES"}, "geometry": {"type": "Point", "coordinates": [2.5904211810401434, 48.830592439926875]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "130250ad1e2fa99f9cad4988d942427ed9553459", "fields": {"departement": "77", "stop_lat": 48.83782464708258, "code_postal": "77083", "stop_lon": 2.5875155785037154, "coord": [48.83782464708258, 2.5875155785037154], "stop_id": 3639475, "stop_desc": "4 R ALFRED NOBEL - 77083", "stop_name": "FRERES LUMIERE - I-F-U"}, "geometry": {"type": "Point", "coordinates": [2.5875155785037154, 48.83782464708258]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "415be80f7120ffe487a4f89ac65f80438b2eb562", "fields": {"departement": "77", "stop_lat": 48.83791248658411, "code_postal": "77083", "stop_lon": 2.5884826859745274, "coord": [48.83791248658411, 2.5884826859745274], "stop_id": 3639474, "stop_desc": "0 R DES FRERES LUMIERE - 77083", "stop_name": "FRERES LUMIERE - I-F-U"}, "geometry": {"type": "Point", "coordinates": [2.5884826859745274, 48.83791248658411]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "226d09a0c1dda08ed173c0bbc83f89c2d396b181", "fields": {"departement": "77", "stop_lat": 48.86893998350323, "code_postal": "77108", "stop_lon": 2.574028725109295, "coord": [48.86893998350323, 2.574028725109295], "stop_id": 4472797, "stop_desc": "1 AVENUE DU MARECHAL FOCH - 77108", "stop_name": "RUE DU PORT"}, "geometry": {"type": "Point", "coordinates": [2.574028725109295, 48.86893998350323]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c21724457aa0db7e2d8eae345f8ef372c62f3cbb", "fields": {"departement": "93", "stop_lat": 48.874914218521944, "code_postal": "93032", "stop_lon": 2.551533936826456, "coord": [48.874914218521944, 2.551533936826456], "stop_id": 4472800, "stop_desc": "43 AVENUE PAUL VAILLANT COUTURIER - 93032", "stop_name": "EMILE COSSONNEAU"}, "geometry": {"type": "Point", "coordinates": [2.551533936826456, 48.874914218521944]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "75b9c1c85af35f386bf98daf0ffccc41733630b2", "fields": {"departement": "93", "stop_lat": 48.88287391562427, "code_postal": "93077", "stop_lon": 2.5151553713886163, "coord": [48.88287391562427, 2.5151553713886163], "stop_id": 4472816, "stop_desc": "91 RUE GRANDE RUE - 93077", "stop_name": "RUE DE NEUILLY"}, "geometry": {"type": "Point", "coordinates": [2.5151553713886163, 48.88287391562427]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c218b352a819153dee5bc45162ddfb7a42becbf2", "fields": {"departement": "93", "stop_lat": 48.88634143318657, "code_postal": "93064", "stop_lon": 2.475700748332326, "coord": [48.88634143318657, 2.475700748332326], "stop_id": 4472832, "stop_desc": "AVENUE DE GAGNY - 93064", "stop_name": "ROSNY 2 NORD"}, "geometry": {"type": "Point", "coordinates": [2.475700748332326, 48.88634143318657]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c7036f6d6c2bb23154d9ad16c2bba801c48590e8", "fields": {"departement": "93", "stop_lat": 48.88773963962272, "code_postal": "93053", "stop_lon": 2.462907506964655, "coord": [48.88773963962272, 2.462907506964655], "stop_id": 4472838, "stop_desc": "FACE 163 RUE DE BREMENT - 93053", "stop_name": "SQUARE STEPHENSON"}, "geometry": {"type": "Point", "coordinates": [2.462907506964655, 48.88773963962272]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cce650bed9ae5f97b72656f059d7f94410f04d19", "fields": {"departement": "93", "stop_lat": 48.88281796156739, "code_postal": "93063", "stop_lon": 2.4407516953930397, "coord": [48.88281796156739, 2.4407516953930397], "stop_id": 4472846, "stop_desc": "10 BOULEVARD HENRI BARBUSSE - 93063", "stop_name": "CARNOT"}, "geometry": {"type": "Point", "coordinates": [2.4407516953930397, 48.88281796156739]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c6b69ddced54afcc0d92b28261e40f49a6048d8c", "fields": {"departement": "93", "stop_lat": 48.880538625445055, "code_postal": "93063", "stop_lon": 2.436727356200238, "coord": [48.880538625445055, 2.436727356200238], "stop_id": 4472848, "stop_desc": "94 RUE DE LA REPUBLIQUE - 93063", "stop_name": "GABRIEL HUSSON"}, "geometry": {"type": "Point", "coordinates": [2.436727356200238, 48.880538625445055]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ebbad59f307d4071277268ef8014952055249973", "fields": {"departement": "93", "stop_lat": 48.87979861447409, "code_postal": "93045", "stop_lon": 2.4168725562657696, "coord": [48.87979861447409, 2.4168725562657696], "stop_id": 4472855, "stop_desc": "1 BOULEVARD DE LA LIBERTE - 93045", "stop_name": "MAIRIE DES LILAS"}, "geometry": {"type": "Point", "coordinates": [2.4168725562657696, 48.87979861447409]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "10fc345133ea5d4f9eda82fcee86ba48a10a74bc", "fields": {"departement": "93", "stop_lat": 48.878911777815574, "code_postal": "93045", "stop_lon": 2.4124018763644015, "coord": [48.878911777815574, 2.4124018763644015], "stop_id": 4472857, "stop_desc": "71 RUE DE PARIS - 93045", "stop_name": "LES BRUYERES"}, "geometry": {"type": "Point", "coordinates": [2.4124018763644015, 48.878911777815574]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "48ceab9ff27223a275668df7e8c6a8a8ab180870", "fields": {"departement": "75", "stop_lat": 48.87718030694225, "code_postal": "75120", "stop_lon": 2.407357926623049, "coord": [48.87718030694225, 2.407357926623049], "stop_id": 4472860, "stop_desc": "4 AVENUE DE LA PORTE DES LILAS - 75120", "stop_name": "PORTE DES LILAS-METRO"}, "geometry": {"type": "Point", "coordinates": [2.407357926623049, 48.87718030694225]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "209b51200ea99fab11be2df3e72c5f74548bd77b", "fields": {"departement": "75", "stop_lat": 48.875460170880956, "code_postal": "75119", "stop_lon": 2.3974365569554887, "coord": [48.875460170880956, 2.3974365569554887], "stop_id": 4472861, "stop_desc": "245-247 RUE DE BELLEVILLE - 75119", "stop_name": "PELLEPORT - BELLEVILLE"}, "geometry": {"type": "Point", "coordinates": [2.3974365569554887, 48.875460170880956]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bb545fd3627f4f8764867e4c735d7076048dc1c4", "fields": {"departement": "75", "stop_lat": 48.875617354167716, "code_postal": "75110", "stop_lon": 2.358032954419559, "coord": [48.875617354167716, 2.358032954419559], "stop_id": 4472870, "stop_desc": "78 BOULEVARD DE STRASBOURG - 75110", "stop_name": "GARE DE L'EST"}, "geometry": {"type": "Point", "coordinates": [2.358032954419559, 48.875617354167716]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "80af7d510e939692ac154e98f721db6ab48d3a36", "fields": {"departement": "75", "stop_lat": 48.87520940811392, "code_postal": "75120", "stop_lon": 2.395665016734033, "coord": [48.87520940811392, 2.395665016734033], "stop_id": 4472880, "stop_desc": "212-218 RUE DE BELLEVILLE - 75120", "stop_name": "PIXERECOURT"}, "geometry": {"type": "Point", "coordinates": [2.395665016734033, 48.87520940811392]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e0797cb1f4d38504ff246d46b767ce0698cda4c8", "fields": {"departement": "93", "stop_lat": 48.88646135518234, "code_postal": "93064", "stop_lon": 2.4730163589597844, "coord": [48.88646135518234, 2.4730163589597844], "stop_id": 4472885, "stop_desc": "FACE 5 BOULEVARD ALSACE LORRAINE - 93064", "stop_name": "ECHANGEUR DE ROSNY"}, "geometry": {"type": "Point", "coordinates": [2.4730163589597844, 48.88646135518234]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "61b3a4fedd62fd2760f9a59ef0f0bea2cf06c915", "fields": {"departement": "93", "stop_lat": 48.86937996713038, "code_postal": "93050", "stop_lon": 2.5554073894083706, "coord": [48.86937996713038, 2.5554073894083706], "stop_id": 4472886, "stop_desc": "128 AVENUE PAUL VAILLANT COUTURIER - 93050", "stop_name": "RUE DE LA POINTE"}, "geometry": {"type": "Point", "coordinates": [2.5554073894083706, 48.86937996713038]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ffaa54ef2a935165edc645e89d16f82ae92e766b", "fields": {"departement": "91", "stop_lat": 48.70255564704986, "code_postal": "91161", "stop_lon": 2.3203207017167378, "coord": [48.70255564704986, 2.3203207017167378], "stop_id": 4472889, "stop_desc": "7 AVENUE MAZARIN - 91161", "stop_name": "PLACE DE LA LIBERATION"}, "geometry": {"type": "Point", "coordinates": [2.3203207017167378, 48.70255564704986]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "83a7aa18827ea2e3c3fa9c1555cd5d7ed97f05bb", "fields": {"departement": "91", "stop_lat": 48.70487397259365, "code_postal": "91161", "stop_lon": 2.3159063254443284, "coord": [48.70487397259365, 2.3159063254443284], "stop_id": 4472890, "stop_desc": "30 AVENUE MAZARIN - 91161", "stop_name": "BEAUREGARD"}, "geometry": {"type": "Point", "coordinates": [2.3159063254443284, 48.70487397259365]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "790720e2f84c0569aa6adbaef8b495b5718e7d02", "fields": {"departement": "91", "stop_lat": 48.71498184738707, "code_postal": "91161", "stop_lon": 2.299262984602106, "coord": [48.71498184738707, 2.299262984602106], "stop_id": 4472896, "stop_desc": "FACE 101 ROUTE DE MASSY - 91161", "stop_name": "ROUTE DE MASSY - LES CHAMPARTS"}, "geometry": {"type": "Point", "coordinates": [2.299262984602106, 48.71498184738707]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e5292a11636e26051e396dca0cbb358fce8f21a7", "fields": {"departement": "91", "stop_lat": 48.72703528430663, "code_postal": "91377", "stop_lon": 2.277421212316732, "coord": [48.72703528430663, 2.277421212316732], "stop_id": 4472902, "stop_desc": "AVENUE DE L'EUROPE - 91377", "stop_name": "AVENUE DE L'EUROPE - CENTRE COMMERCIAL"}, "geometry": {"type": "Point", "coordinates": [2.277421212316732, 48.72703528430663]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5a783bebef9f6730cd9c3e1979f8d8138a924439", "fields": {"departement": "91", "stop_lat": 48.726891202649426, "code_postal": "91377", "stop_lon": 2.2768915190940655, "coord": [48.726891202649426, 2.2768915190940655], "stop_id": 4472903, "stop_desc": "AVENUE DE L'EUROPE - 91377", "stop_name": "AVENUE DE L'EUROPE - CENTRE COMMERCIAL"}, "geometry": {"type": "Point", "coordinates": [2.2768915190940655, 48.726891202649426]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5efe3f3b4ceee297f0ef3de030b480d2260e589f", "fields": {"departement": "91", "stop_lat": 48.72795025712105, "code_postal": "91377", "stop_lon": 2.2738741077748967, "coord": [48.72795025712105, 2.2738741077748967], "stop_id": 4472904, "stop_desc": "RUE DU 8 MAI 1945 - 91377", "stop_name": "8 MAI 1945"}, "geometry": {"type": "Point", "coordinates": [2.2738741077748967, 48.72795025712105]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f5046f085f13e7fad9c6bf76f11fbe2737986662", "fields": {"departement": "91", "stop_lat": 48.72805807374259, "code_postal": "91377", "stop_lon": 2.2737924577619357, "coord": [48.72805807374259, 2.2737924577619357], "stop_id": 4472905, "stop_desc": "RUE DU 8 MAI 1945 - 91377", "stop_name": "8 MAI 1945"}, "geometry": {"type": "Point", "coordinates": [2.2737924577619357, 48.72805807374259]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3afbb0f765efb0aa8e715750f112dc0657653234", "fields": {"departement": "91", "stop_lat": 48.731469602983324, "code_postal": "91377", "stop_lon": 2.283856501392165, "coord": [48.731469602983324, 2.283856501392165], "stop_id": 4472915, "stop_desc": "1 RUE DE ROME - 91377", "stop_name": "HELENE BOUCHER"}, "geometry": {"type": "Point", "coordinates": [2.283856501392165, 48.731469602983324]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b973dc9bb08993b1dcb61cfc8ec0b681e087ddca", "fields": {"departement": "91", "stop_lat": 48.73294496958157, "code_postal": "91377", "stop_lon": 2.28678993142112, "coord": [48.73294496958157, 2.28678993142112], "stop_id": 4472916, "stop_desc": "67 RUE DES CANADIENS - 91377", "stop_name": "AVENUE SAINT-MARC"}, "geometry": {"type": "Point", "coordinates": [2.28678993142112, 48.73294496958157]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e3e178aa62e03959fc16e35f2e8f1518a6608eef", "fields": {"departement": "91", "stop_lat": 48.73664329348613, "code_postal": "91377", "stop_lon": 2.2976980478096194, "coord": [48.73664329348613, 2.2976980478096194], "stop_id": 4472923, "stop_desc": "FACE 3 RUE DU DAUPHINE - 91377", "stop_name": "PERIGORD"}, "geometry": {"type": "Point", "coordinates": [2.2976980478096194, 48.73664329348613]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "46dc255d90bb77de4b810684784edc98e48ae15b", "fields": {"departement": "92", "stop_lat": 48.7412916894257, "code_postal": "92002", "stop_lon": 2.30235584303178, "coord": [48.7412916894257, 2.30235584303178], "stop_id": 4472926, "stop_desc": "FACE 157 AVENUE DE LA DIVISION LECLERC - 92002", "stop_name": "PETIT MASSY"}, "geometry": {"type": "Point", "coordinates": [2.30235584303178, 48.7412916894257]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c205c83ee68d7ee13a5d454bc888afc19144d4dd", "fields": {"departement": "92", "stop_lat": 48.75025356657646, "code_postal": "92002", "stop_lon": 2.3045245832510624, "coord": [48.75025356657646, 2.3045245832510624], "stop_id": 4472929, "stop_desc": "FACE 50 AVENUE DE LA DIVISION LECLERC - 92002", "stop_name": "PONT D'ANTONY"}, "geometry": {"type": "Point", "coordinates": [2.3045245832510624, 48.75025356657646]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "545fa463da8470ec7e3b28af136210ef0c96c8a2", "fields": {"departement": "92", "stop_lat": 48.754253556672694, "code_postal": "92002", "stop_lon": 2.3054464073012886, "coord": [48.754253556672694, 2.3054464073012886], "stop_id": 4472931, "stop_desc": "16 AVENUE ARISTIDE BRIAND - 92002", "stop_name": "AUGUSTE MOUNIE"}, "geometry": {"type": "Point", "coordinates": [2.3054464073012886, 48.754253556672694]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "76346af807c01c360bc4b74ced15f44583db33ab", "fields": {"departement": "92", "stop_lat": 48.75820876111079, "code_postal": "92002", "stop_lon": 2.3070481155055815, "coord": [48.75820876111079, 2.3070481155055815], "stop_id": 4472932, "stop_desc": "80 AVENUE ARISTIDE BRIAND - 92002", "stop_name": "FERNAND FENZY"}, "geometry": {"type": "Point", "coordinates": [2.3070481155055815, 48.75820876111079]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "46ad8dc37e589a15a285121035f4b38fc193b715", "fields": {"departement": "92", "stop_lat": 48.76263134269084, "code_postal": "92002", "stop_lon": 2.308772169484832, "coord": [48.76263134269084, 2.308772169484832], "stop_id": 4472936, "stop_desc": "148 AVENUE ARISTIDE BRIAND - 92002", "stop_name": "GENERAL DE GAULLE - CROIX DE BERNY"}, "geometry": {"type": "Point", "coordinates": [2.308772169484832, 48.76263134269084]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "340c269a472f5d062fb67bd00958f86b54817dfb", "fields": {"departement": "92", "stop_lat": 48.765975131381744, "code_postal": "92002", "stop_lon": 2.3096948881143153, "coord": [48.765975131381744, 2.3096948881143153], "stop_id": 4472939, "stop_desc": "25 AVENUE RAYMOND ARON - 92002", "stop_name": "NORMANDIE"}, "geometry": {"type": "Point", "coordinates": [2.3096948881143153, 48.765975131381744]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "50ab8c496abf0d5064979e849dede971f03da1f0", "fields": {"departement": "92", "stop_lat": 48.77033474019488, "code_postal": "92002", "stop_lon": 2.311460248843124, "coord": [48.77033474019488, 2.311460248843124], "stop_id": 4472941, "stop_desc": "69 AVENUE RAYMOND ARON - 92002", "stop_name": "LA FONTAINE"}, "geometry": {"type": "Point", "coordinates": [2.311460248843124, 48.77033474019488]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fa3e1696b7339f9ef7ad792939834a0191d2af62", "fields": {"departement": "92", "stop_lat": 48.77753596618915, "code_postal": "92014", "stop_lon": 2.321982585930126, "coord": [48.77753596618915, 2.321982585930126], "stop_id": 4472947, "stop_desc": "29 BOULEVARD CARNOT - 92014", "stop_name": "GALOIS"}, "geometry": {"type": "Point", "coordinates": [2.321982585930126, 48.77753596618915]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aa9d97b74f5e6c6a56a31951d084829bd19603be", "fields": {"departement": "94", "stop_lat": 48.77631442599705, "code_postal": "94038", "stop_lon": 2.331243898097316, "coord": [48.77631442599705, 2.331243898097316], "stop_id": 4472950, "stop_desc": "28 AVENUE LARROUMES - 94038", "stop_name": "SOUS-PREFECTURE - ROSERAIE"}, "geometry": {"type": "Point", "coordinates": [2.331243898097316, 48.77631442599705]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "277d118dcf9dba8ecda40fd7573198c87b2be392", "fields": {"departement": "94", "stop_lat": 48.78607541164516, "code_postal": "94016", "stop_lon": 2.3322084829326877, "coord": [48.78607541164516, 2.3322084829326877], "stop_id": 4472956, "stop_desc": "RUE MARC SANGNIER - 94016", "stop_name": "CARREFOUR DES POULETS"}, "geometry": {"type": "Point", "coordinates": [2.3322084829326877, 48.78607541164516]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "630de2ed41c8a4ecfa1a57ced5afe5892d207e8a", "fields": {"departement": "94", "stop_lat": 48.79042553189924, "code_postal": "94016", "stop_lon": 2.3314327039783245, "coord": [48.79042553189924, 2.3314327039783245], "stop_id": 4472959, "stop_desc": "6 AVENUE DU MARECHAL DE LATTRE DE TASSIGNY - 94016", "stop_name": "DIVISION LECLERC - CAMILLE DESMOULINS"}, "geometry": {"type": "Point", "coordinates": [2.3314327039783245, 48.79042553189924]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9536eda16b312c72ca4e4940beba221236274d68", "fields": {"departement": "94", "stop_lat": 48.79456906298838, "code_postal": "94016", "stop_lon": 2.334547516787906, "coord": [48.79456906298838, 2.334547516787906], "stop_id": 4472961, "stop_desc": "FACE 3-5 RUE CAMILLE DESMOULINS - 94016", "stop_name": "MAIRIE DE CACHAN"}, "geometry": {"type": "Point", "coordinates": [2.334547516787906, 48.79456906298838]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9f685712d758ec8eaf73ac475a177de0a5be0b82", "fields": {"departement": "94", "stop_lat": 48.80193912894198, "code_postal": "94003", "stop_lon": 2.3383295345202058, "coord": [48.80193912894198, 2.3383295345202058], "stop_id": 4472967, "stop_desc": "1 RUE AUGUSTE DELAUNE - 94003", "stop_name": "AUGUSTE DELAUNE"}, "geometry": {"type": "Point", "coordinates": [2.3383295345202058, 48.80193912894198]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cdb38c577e738ced036ba7fba13c1c02189b22bb", "fields": {"departement": "92", "stop_lat": 48.813532857337734, "code_postal": "92049", "stop_lon": 2.326122681236126, "coord": [48.813532857337734, 2.326122681236126], "stop_id": 4472974, "stop_desc": "105 AVENUE ARISTIDE BRIAND - 92049", "stop_name": "LEON GAMBETTA"}, "geometry": {"type": "Point", "coordinates": [2.326122681236126, 48.813532857337734]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "10aa4840a013a04fefb45b86b223078264356627", "fields": {"departement": "92", "stop_lat": 48.818062641326925, "code_postal": "92049", "stop_lon": 2.3257950701996193, "coord": [48.818062641326925, 2.3257950701996193], "stop_id": 4472976, "stop_desc": "51 BIS AVENUE ARISTIDE BRIAND - 92049", "stop_name": "GABRIEL PERI"}, "geometry": {"type": "Point", "coordinates": [2.3257950701996193, 48.818062641326925]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ee23c828f6fb8fb204553e5ddfd1dd04fa71d47c", "fields": {"departement": "75", "stop_lat": 48.82425513830218, "code_postal": "75114", "stop_lon": 2.3255759172850463, "coord": [48.82425513830218, 2.3255759172850463], "stop_id": 4472979, "stop_desc": "130 AVENUE DU GENERAL LECLERC - 75114", "stop_name": "PORTE D'ORLEANS"}, "geometry": {"type": "Point", "coordinates": [2.3255759172850463, 48.82425513830218]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "26a754cdf31d5c25c326719efe550f3db880b5f9", "fields": {"departement": "75", "stop_lat": 48.83487001531102, "code_postal": "75114", "stop_lon": 2.3327347010432598, "coord": [48.83487001531102, 2.3327347010432598], "stop_id": 4472986, "stop_desc": "108-110 AVENUE DENFERT-ROCHEREAU - 75114", "stop_name": "DENFERT-ROCHEREAU - ARAGO"}, "geometry": {"type": "Point", "coordinates": [2.3327347010432598, 48.83487001531102]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3a7caabde418bae1e998d92625b29ab29479580b", "fields": {"departement": "75", "stop_lat": 48.83736862961524, "code_postal": "75114", "stop_lon": 2.3351171175760603, "coord": [48.83736862961524, 2.3351171175760603], "stop_id": 4472988, "stop_desc": "76 AVENUE DENFERT ROCHEREAU - 75114", "stop_name": "HOPITAL SAINT-VINCENT DE PAUL"}, "geometry": {"type": "Point", "coordinates": [2.3351171175760603, 48.83736862961524]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f9f692eb216ec3087adc8ab31311099d969cf198", "fields": {"departement": "75", "stop_lat": 48.84248225530111, "code_postal": "75106", "stop_lon": 2.3286355034590827, "coord": [48.84248225530111, 2.3286355034590827], "stop_id": 4472991, "stop_desc": "103 BOULEVARD DU MONTPARNASSE - 75106", "stop_name": "VAVIN"}, "geometry": {"type": "Point", "coordinates": [2.3286355034590827, 48.84248225530111]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "84f7b63c4d8e15f70271fb5ebacfbed46df93b57", "fields": {"departement": "75", "stop_lat": 48.841798238989874, "code_postal": "75115", "stop_lon": 2.319825926144041, "coord": [48.841798238989874, 2.319825926144041], "stop_id": 4472993, "stop_desc": "PLACE RAOUL DAUTRY - 75115", "stop_name": "GARE MONTPARNASSE"}, "geometry": {"type": "Point", "coordinates": [2.319825926144041, 48.841798238989874]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "121197125252b30e700415656faa1ac99e78b48d", "fields": {"departement": "75", "stop_lat": 48.843731020990745, "code_postal": "75115", "stop_lon": 2.3233383911773933, "coord": [48.843731020990745, 2.3233383911773933], "stop_id": 4472995, "stop_desc": "PLACE DU 18 JUIN 1940 - 75115", "stop_name": "PLACE DU 18 JUIN 1940"}, "geometry": {"type": "Point", "coordinates": [2.3233383911773933, 48.843731020990745]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ea220d342c7575cb21c88eed153dd30c6e43a4a7", "fields": {"departement": "92", "stop_lat": 48.824921780034416, "code_postal": "92040", "stop_lon": 2.2736467944118726, "coord": [48.824921780034416, 2.2736467944118726], "stop_id": 4473009, "stop_desc": "FACE 29BIS RUE KLEBER - 92040", "stop_name": "MAIRIE D'ISSY-METRO"}, "geometry": {"type": "Point", "coordinates": [2.2736467944118726, 48.824921780034416]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0f5e90389ca9b25b4ac963ceb476e5dec5b24608", "fields": {"departement": "75", "stop_lat": 48.84153536388469, "code_postal": "75115", "stop_lon": 2.3083339871069257, "coord": [48.84153536388469, 2.3083339871069257], "stop_id": 4473023, "stop_desc": "225-223 RUE DE VAUGIRARD - 75115", "stop_name": "VOLONTAIRES - VAUGIRARD"}, "geometry": {"type": "Point", "coordinates": [2.3083339871069257, 48.84153536388469]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d7d5e8a67470746db700a50c6e330c9dcbd821ca", "fields": {"departement": "75", "stop_lat": 48.84473518742932, "code_postal": "75115", "stop_lon": 2.3094351792376666, "coord": [48.84473518742932, 2.3094351792376666], "stop_id": 4473031, "stop_desc": "20 RUE LECOURBE - 75115", "stop_name": "SEVRES - LECOURBE"}, "geometry": {"type": "Point", "coordinates": [2.3094351792376666, 48.84473518742932]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f606ad6b34ea8b86dc11ec8a84492fad5be60e1b", "fields": {"departement": "75", "stop_lat": 48.836455270676616, "code_postal": "75115", "stop_lon": 2.2782480783935948, "coord": [48.836455270676616, 2.2782480783935948], "stop_id": 4473039, "stop_desc": "PLACE BALARD - 75115", "stop_name": "BALARD"}, "geometry": {"type": "Point", "coordinates": [2.2782480783935948, 48.836455270676616]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "918d9055061587fc1c809f02b669221b6238cf9f", "fields": {"departement": "75", "stop_lat": 48.832330067121525, "code_postal": "75115", "stop_lon": 2.278456975264492, "coord": [48.832330067121525, 2.278456975264492], "stop_id": 4473040, "stop_desc": "FACE 1 RUE DU COLONEL PIERRE AVIA - 75115", "stop_name": "LOUIS ARMAND"}, "geometry": {"type": "Point", "coordinates": [2.278456975264492, 48.832330067121525]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c7bf1a8432089348afce574b2513d3b019c59d38", "fields": {"departement": "75", "stop_lat": 48.828444674765805, "code_postal": "75115", "stop_lon": 2.2731524186663283, "coord": [48.828444674765805, 2.2731524186663283], "stop_id": 4473042, "stop_desc": "38 R DU COLONEL AVIA - 75115", "stop_name": "FRERES VOISIN"}, "geometry": {"type": "Point", "coordinates": [2.2731524186663283, 48.828444674765805]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d9d85f3ea4f698a806472f657c2706c7c10dcffd", "fields": {"departement": "92", "stop_lat": 48.89628877004526, "code_postal": "92050", "stop_lon": 2.222826331966747, "coord": [48.89628877004526, 2.222826331966747], "stop_id": 4473047, "stop_desc": "0 BD DE PESARO - 92050", "stop_name": "NANTERRE-PREFECTURE RER"}, "geometry": {"type": "Point", "coordinates": [2.222826331966747, 48.89628877004526]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ddd146f8945ffe8f7d2625c16aca0aa3523074b0", "fields": {"departement": "92", "stop_lat": 48.895660974821816, "code_postal": "92050", "stop_lon": 2.2150856614501198, "coord": [48.895660974821816, 2.2150856614501198], "stop_id": 4473051, "stop_desc": "141 AVENUE FREDERIC ET IRENE JOLIOT CURIE - 92050", "stop_name": "PREFECTURE DES HAUTS-DE-SEINE"}, "geometry": {"type": "Point", "coordinates": [2.2150856614501198, 48.895660974821816]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "39334412c44446ed7d572192505491be54bfe0f3", "fields": {"departement": "92", "stop_lat": 48.88960127968521, "code_postal": "92050", "stop_lon": 2.2044967458355496, "coord": [48.88960127968521, 2.2044967458355496], "stop_id": 4473059, "stop_desc": "45 AVENUE FREDERIC ET IRENE JOLIOT CURIE - 92050", "stop_name": "SADI-CARNOT - JOLIOT-CURIE"}, "geometry": {"type": "Point", "coordinates": [2.2044967458355496, 48.88960127968521]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cfd17d85af78af02a690168ed7595f0b988e26df", "fields": {"departement": "92", "stop_lat": 48.88938573912001, "code_postal": "92050", "stop_lon": 2.2046335852696703, "coord": [48.88938573912001, 2.2046335852696703], "stop_id": 4473060, "stop_desc": "92 AVENUE FREDERIC ET IRENE JOLIOT CURIE - 92050", "stop_name": "SADI-CARNOT - JOLIOT-CURIE"}, "geometry": {"type": "Point", "coordinates": [2.2046335852696703, 48.88938573912001]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4741680461e19531f3fc084c018325eb314cb4a8", "fields": {"departement": "92", "stop_lat": 48.88535795431683, "code_postal": "92050", "stop_lon": 2.1955133465880006, "coord": [48.88535795431683, 2.1955133465880006], "stop_id": 4473062, "stop_desc": "30 AVENUE DU MARECHAL JOFFRE - 92050", "stop_name": "SAINTE-GENEVIEVE"}, "geometry": {"type": "Point", "coordinates": [2.1955133465880006, 48.88535795431683]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c8a65fcf8bc7efade0e6b1030cb3541ede0ab0de", "fields": {"departement": "92", "stop_lat": 48.88261646917931, "code_postal": "92063", "stop_lon": 2.1878488645965537, "coord": [48.88261646917931, 2.1878488645965537], "stop_id": 4473065, "stop_desc": "FACE 45 AVENUE PAUL DOUMER - 92063", "stop_name": "GABRIEL PERI"}, "geometry": {"type": "Point", "coordinates": [2.1878488645965537, 48.88261646917931]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4e6199126a7c568f5b5e1a22d8c5d733bd7436d3", "fields": {"departement": "92", "stop_lat": 48.8764221765901, "code_postal": "92063", "stop_lon": 2.1862180502913104, "coord": [48.8764221765901, 2.1862180502913104], "stop_id": 4473070, "stop_desc": "FACE 46BIS BOULEVARD DE L'HOPITAL STELL - 92063", "stop_name": "HOPITAL STELL"}, "geometry": {"type": "Point", "coordinates": [2.1862180502913104, 48.8764221765901]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1839b4a4b5c92b75943f385c66647787b43e7a81", "fields": {"departement": "92", "stop_lat": 48.86006972889107, "code_postal": "92073", "stop_lon": 2.213548602298387, "coord": [48.86006972889107, 2.213548602298387], "stop_id": 4473087, "stop_desc": "20 BOULEVARD LOUIS LOUCHEUR - 92073", "stop_name": "VAL D'OR"}, "geometry": {"type": "Point", "coordinates": [2.213548602298387, 48.86006972889107]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "95a17df1016230bea82be1fcfc9cc160f1977516", "fields": {"departement": "92", "stop_lat": 48.86676403817079, "code_postal": "92073", "stop_lon": 2.2211886377715, "coord": [48.86676403817079, 2.2211886377715], "stop_id": 4473090, "stop_desc": "57 BOULEVARD HENRI SELLIER - 92073", "stop_name": "LONGCHAMP"}, "geometry": {"type": "Point", "coordinates": [2.2211886377715, 48.86676403817079]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0c0d462d0d046f6b433de78f1a7fa04c5d95c746", "fields": {"departement": "92", "stop_lat": 48.86837636340144, "code_postal": "92073", "stop_lon": 2.2249314109891505, "coord": [48.86837636340144, 2.2249314109891505], "stop_id": 4473093, "stop_desc": "38 BOULEVARD HENRI SELLIER - 92073", "stop_name": "SURESNES DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.2249314109891505, 48.86837636340144]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ea6ec16a5896c0cbe8be9a4b248110ae8f6d8516", "fields": {"departement": "92", "stop_lat": 48.86767710841224, "code_postal": "92073", "stop_lon": 2.226812902957634, "coord": [48.86767710841224, 2.226812902957634], "stop_id": 4473095, "stop_desc": "FACE 13 BOULEVARD HENRI SELLIER - 92073", "stop_name": "RUE DES BOURETS - PONT DE SURESNES"}, "geometry": {"type": "Point", "coordinates": [2.226812902957634, 48.86767710841224]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b38a0fb4fab609e35bb621d30850290d59d8ce1c", "fields": {"departement": "75", "stop_lat": 48.87995880011713, "code_postal": "75117", "stop_lon": 2.2879276987978083, "coord": [48.87995880011713, 2.2879276987978083], "stop_id": 4473099, "stop_desc": "AV DES TERNES - 75117", "stop_name": "PEREIRE - PORTE MAILLOT"}, "geometry": {"type": "Point", "coordinates": [2.2879276987978083, 48.87995880011713]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "318785a8a5eafb8cba1f999dce1f87fffb3034d0", "fields": {"departement": "75", "stop_lat": 48.87941156710292, "code_postal": "75117", "stop_lon": 2.2903809168089997, "coord": [48.87941156710292, 2.2903809168089997], "stop_id": 4473101, "stop_desc": "69 AV DES TERNES - 75117", "stop_name": "EGLISE SAINT-FERDINAND"}, "geometry": {"type": "Point", "coordinates": [2.2903809168089997, 48.87941156710292]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a46eaac1e7f9a4cd1f416e0289524675612bdde6", "fields": {"departement": "75", "stop_lat": 48.875048935083306, "code_postal": "75108", "stop_lon": 2.3062579263665284, "coord": [48.875048935083306, 2.3062579263665284], "stop_id": 4473109, "stop_desc": "190 BOULEVARD HAUSSMANN - 75108", "stop_name": "FRIEDLAND - HAUSSMANN"}, "geometry": {"type": "Point", "coordinates": [2.3062579263665284, 48.875048935083306]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d0c3145d784fcd98575f23f12d475b143d0aa2cf", "fields": {"departement": "75", "stop_lat": 48.875121390460386, "code_postal": "75108", "stop_lon": 2.30847875269421, "coord": [48.875121390460386, 2.30847875269421], "stop_id": 4473111, "stop_desc": "174 BOULEVARD HAUSSMANN - 75108", "stop_name": "HAUSSMANN - COURCELLES"}, "geometry": {"type": "Point", "coordinates": [2.30847875269421, 48.875121390460386]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b40c24cf032b700a70b4f5c9062f0318645981a3", "fields": {"departement": "75", "stop_lat": 48.87807493981841, "code_postal": "75117", "stop_lon": 2.2971677460588693, "coord": [48.87807493981841, 2.2971677460588693], "stop_id": 4473120, "stop_desc": "2 AVENUE DES TERNES - 75117", "stop_name": "TERNES"}, "geometry": {"type": "Point", "coordinates": [2.2971677460588693, 48.87807493981841]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "26e604f0de3d4aa82979f6d19407901b9eeb8927", "fields": {"departement": "91", "stop_lat": 48.70007163861748, "code_postal": "91272", "stop_lon": 2.0994703297388755, "coord": [48.70007163861748, 2.0994703297388755], "stop_id": 4473128, "stop_desc": "AVENUE DU GENERAL LECLERC - 91272", "stop_name": "11 NOVEMBRE - COURCELLE-SUR-YVETTE RER"}, "geometry": {"type": "Point", "coordinates": [2.0994703297388755, 48.70007163861748]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7439c61e433be8965e7f630418e71665872e38a3", "fields": {"departement": "91", "stop_lat": 48.69646353271517, "code_postal": "91471", "stop_lon": 2.1847308927011513, "coord": [48.69646353271517, 2.1847308927011513], "stop_id": 4473133, "stop_desc": "PLACE DE LA REPUBLIQUE - 91471", "stop_name": "PLACE DE LA REPUBLIQUE-ORSAY RER"}, "geometry": {"type": "Point", "coordinates": [2.1847308927011513, 48.69646353271517]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "761b515b2f1baf3a4d9cf6774a2df336dea1c01d", "fields": {"departement": "91", "stop_lat": 48.70004863592524, "code_postal": "91661", "stop_lon": 2.214608060016395, "coord": [48.70004863592524, 2.214608060016395], "stop_id": 4473135, "stop_desc": "FACE 40 RUE DU GENERAL DE GAULLE - 91661", "stop_name": "LES SUISSES - LOZERE RER"}, "geometry": {"type": "Point", "coordinates": [2.214608060016395, 48.70004863592524]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7515db283afab51ddeea92df480da1dc002782bf", "fields": {"departement": "75", "stop_lat": 48.84202305182629, "code_postal": "75115", "stop_lon": 2.320697292153351, "coord": [48.84202305182629, 2.320697292153351], "stop_id": 4473148, "stop_desc": "PLACE RAOUL DAUTRY - 75115", "stop_name": "GARE MONTPARNASSE"}, "geometry": {"type": "Point", "coordinates": [2.320697292153351, 48.84202305182629]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "29fbfc028dfd3d8a6d89ed76af63aad9ccd46aa3", "fields": {"departement": "92", "stop_lat": 48.88462644850585, "code_postal": "92051", "stop_lon": 2.2601913576941075, "coord": [48.88462644850585, 2.2601913576941075], "stop_id": 4473168, "stop_desc": "201 AVENUE CHARLES DE GAULLE - 92051", "stop_name": "PONT DE NEUILLY-METRO"}, "geometry": {"type": "Point", "coordinates": [2.2601913576941075, 48.88462644850585]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d600eac90947dcaa795d878cee822e588ff6ae31", "fields": {"departement": "92", "stop_lat": 48.88555130589665, "code_postal": "92051", "stop_lon": 2.258922605272076, "coord": [48.88555130589665, 2.258922605272076], "stop_id": 4473169, "stop_desc": "176 AVENUE CHARLES DE GAULLE - 92051", "stop_name": "PONT DE NEUILLY-METRO"}, "geometry": {"type": "Point", "coordinates": [2.258922605272076, 48.88555130589665]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "88f60d138bb0c618741adcba8e38a9b8aef8a759", "fields": {"departement": "75", "stop_lat": 48.87995880011713, "code_postal": "75117", "stop_lon": 2.2879276987978083, "coord": [48.87995880011713, 2.2879276987978083], "stop_id": 4473173, "stop_desc": "AV DES TERNES - 75117", "stop_name": "PEREIRE - PORTE MAILLOT"}, "geometry": {"type": "Point", "coordinates": [2.2879276987978083, 48.87995880011713]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5e760bdb6476537bef8e743c82ee195490efa9a5", "fields": {"departement": "75", "stop_lat": 48.880111718441405, "code_postal": "75117", "stop_lon": 2.2882545840252586, "coord": [48.880111718441405, 2.2882545840252586], "stop_id": 4473174, "stop_desc": "AV DES TERNES - 75117", "stop_name": "PEREIRE - PORTE MAILLOT"}, "geometry": {"type": "Point", "coordinates": [2.2882545840252586, 48.880111718441405]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b00a47d3f92525b478b16ffe3bda6506de3d5870", "fields": {"departement": "75", "stop_lat": 48.87941156710292, "code_postal": "75117", "stop_lon": 2.2903809168089997, "coord": [48.87941156710292, 2.2903809168089997], "stop_id": 4473175, "stop_desc": "69 AV DES TERNES - 75117", "stop_name": "EGLISE SAINT-FERDINAND"}, "geometry": {"type": "Point", "coordinates": [2.2903809168089997, 48.87941156710292]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "00e016efa687c89bcf3e9710d5024a0c9048cc63", "fields": {"departement": "75", "stop_lat": 48.836455270676616, "code_postal": "75115", "stop_lon": 2.2782480783935948, "coord": [48.836455270676616, 2.2782480783935948], "stop_id": 4473283, "stop_desc": "PLACE BALARD - 75115", "stop_name": "BALARD"}, "geometry": {"type": "Point", "coordinates": [2.2782480783935948, 48.836455270676616]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d7e5e0320c77d81cbfdc784bbfb4ba8a77bb2695", "fields": {"departement": "92", "stop_lat": 48.81464812985609, "code_postal": "92023", "stop_lon": 2.257546211090835, "coord": [48.81464812985609, 2.257546211090835], "stop_id": 4473307, "stop_desc": "FACE 132 AVENUE HENRI BARBUSSE - 92023", "stop_name": "HOPITAL PERCY"}, "geometry": {"type": "Point", "coordinates": [2.257546211090835, 48.81464812985609]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "31857a5ff017a64f606bbbddb04de99cccdccc72", "fields": {"departement": "92", "stop_lat": 48.81148493414833, "code_postal": "92023", "stop_lon": 2.2582859145650356, "coord": [48.81148493414833, 2.2582859145650356], "stop_id": 4473310, "stop_desc": "90 AVENUE HENRI BARBUSSE - 92023", "stop_name": "FLEURY"}, "geometry": {"type": "Point", "coordinates": [2.2582859145650356, 48.81148493414833]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9e1db52d13ff9ef9bddbaa86b92f5fca09382385", "fields": {"departement": "92", "stop_lat": 48.809782617140044, "code_postal": "92048", "stop_lon": 2.2529950603475055, "coord": [48.809782617140044, 2.2529950603475055], "stop_id": 4473311, "stop_desc": "142 RUE DE FLEURY - 92048", "stop_name": "RIVOLI"}, "geometry": {"type": "Point", "coordinates": [2.2529950603475055, 48.809782617140044]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2882c537f87355bf480bd23a3051fd6b92ce9cca", "fields": {"departement": "92", "stop_lat": 48.80783182434355, "code_postal": "92048", "stop_lon": 2.2405883554701855, "coord": [48.80783182434355, 2.2405883554701855], "stop_id": 4473318, "stop_desc": "AVENUE LOUVOIS - 92048", "stop_name": "VAL FLEURY RER"}, "geometry": {"type": "Point", "coordinates": [2.2405883554701855, 48.80783182434355]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e82559e0f91a05ff459a59643fd07bd9e53b6a6b", "fields": {"departement": "92", "stop_lat": 48.806337564978776, "code_postal": "92048", "stop_lon": 2.2378153250332398, "coord": [48.806337564978776, 2.2378153250332398], "stop_id": 4473319, "stop_desc": "1 AVENUE VICTOR HUGO - 92048", "stop_name": "VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.2378153250332398, 48.806337564978776]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ef9f98d0c64b6ef315481a7dec42e044d143c930", "fields": {"departement": "92", "stop_lat": 48.80635626509692, "code_postal": "92048", "stop_lon": 2.238686132716897, "coord": [48.80635626509692, 2.238686132716897], "stop_id": 4473320, "stop_desc": "31 AVENUE LOUVOIS - 92048", "stop_name": "VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.238686132716897, 48.80635626509692]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "25f0f8e37feb2e32ea2a20d64846570ff3184f7c", "fields": {"departement": "92", "stop_lat": 48.80648020167826, "code_postal": "92048", "stop_lon": 2.236427141669803, "coord": [48.80648020167826, 2.236427141669803], "stop_id": 4473321, "stop_desc": "FACE 9 R DE L'EGLISE - 92048", "stop_name": "EGLISE DE MEUDON"}, "geometry": {"type": "Point", "coordinates": [2.236427141669803, 48.80648020167826]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "58b729dc69458a39c1be0fe4b6b873daca5f5930", "fields": {"departement": "92", "stop_lat": 48.81108232012079, "code_postal": "92048", "stop_lon": 2.236867272802698, "coord": [48.81108232012079, 2.236867272802698], "stop_id": 4473323, "stop_desc": "PLACE RABELAIS - 92048", "stop_name": "RABELAIS"}, "geometry": {"type": "Point", "coordinates": [2.236867272802698, 48.81108232012079]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "29779dc2b5ecea4c00049e8782f9e84cea7cab21", "fields": {"departement": "92", "stop_lat": 48.8149894949538, "code_postal": "92048", "stop_lon": 2.2339473492547812, "coord": [48.8149894949538, 2.2339473492547812], "stop_id": 4473326, "stop_desc": "40 BOULEVARD VERD-DE-ST JULIEN - 92048", "stop_name": "STALINGRAD"}, "geometry": {"type": "Point", "coordinates": [2.2339473492547812, 48.8149894949538]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ea4aa261ff2fdd10d45c9c4c6cfa191746f4e625", "fields": {"departement": "92", "stop_lat": 48.81661431402316, "code_postal": "92048", "stop_lon": 2.231712137797927, "coord": [48.81661431402316, 2.231712137797927], "stop_id": 4473328, "stop_desc": "16 BOULEVARD VERD-DE-ST JULIEN - 92048", "stop_name": "JEANNE D'ARC"}, "geometry": {"type": "Point", "coordinates": [2.231712137797927, 48.81661431402316]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b3502459b057a1e2a41b71a20f3a5f6477e873da", "fields": {"departement": "92", "stop_lat": 48.818697289035434, "code_postal": "92048", "stop_lon": 2.229285292630867, "coord": [48.818697289035434, 2.229285292630867], "stop_id": 4473330, "stop_desc": "32 AVENUE DU GENERAL GALLIENI - 92048", "stop_name": "GARE DE BELLEVUE"}, "geometry": {"type": "Point", "coordinates": [2.229285292630867, 48.818697289035434]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7898c01ef48ffe6709910a2ca8f860a14bb8fbf5", "fields": {"departement": "92", "stop_lat": 48.82176885588135, "code_postal": "92048", "stop_lon": 2.226856149789069, "coord": [48.82176885588135, 2.226856149789069], "stop_id": 4473331, "stop_desc": "FACE 12 RUE MARCEL ALLEGOT - 92048", "stop_name": "11 NOVEMBRE"}, "geometry": {"type": "Point", "coordinates": [2.226856149789069, 48.82176885588135]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b429b6af14fd853538ed971573aa312864028bd9", "fields": {"departement": "92", "stop_lat": 48.82287845737709, "code_postal": "92072", "stop_lon": 2.2217223427454194, "coord": [48.82287845737709, 2.2217223427454194], "stop_id": 4473334, "stop_desc": "24 AVENUE DE LA DIVISION LECLERC - 92072", "stop_name": "BRIMBORION - DIVISION LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.2217223427454194, 48.82287845737709]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "306f228bed1d9c3e04c6dfe2eaf625f863a9af01", "fields": {"departement": "92", "stop_lat": 48.829339588647336, "code_postal": "92072", "stop_lon": 2.2302705093554778, "coord": [48.829339588647336, 2.2302705093554778], "stop_id": 4473339, "stop_desc": "GARE ROUTIERE - 92072", "stop_name": "PONT DE SEVRES-METRO"}, "geometry": {"type": "Point", "coordinates": [2.2302705093554778, 48.829339588647336]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d3e8efd33b6b7c9c8639ddfa66ae19e6b6316735", "fields": {"departement": "92", "stop_lat": 48.8297341467827, "code_postal": "92012", "stop_lon": 2.229275942430251, "coord": [48.8297341467827, 2.229275942430251], "stop_id": 4473340, "stop_desc": "PISTE GARE ROUTIERE - 92012", "stop_name": "PONT DE SEVRES-METRO"}, "geometry": {"type": "Point", "coordinates": [2.229275942430251, 48.8297341467827]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "93219087e9eedfb5736b940b8b93b79fca2a0e85", "fields": {"departement": "75", "stop_lat": 48.8369676365704, "code_postal": "75115", "stop_lon": 2.2783972601736324, "coord": [48.8369676365704, 2.2783972601736324], "stop_id": 4473349, "stop_desc": "85 RUE LEBLANC - 75115", "stop_name": "PLACE BALARD"}, "geometry": {"type": "Point", "coordinates": [2.2783972601736324, 48.8369676365704]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "056041ff4fe8022084d5abc977c6dcb0068e2a58", "fields": {"departement": "92", "stop_lat": 48.81942176095425, "code_postal": "92040", "stop_lon": 2.274483765828633, "coord": [48.81942176095425, 2.274483765828633], "stop_id": 4473367, "stop_desc": "25 RUE GABRIEL PERI - 92040", "stop_name": "RUE DU FORT"}, "geometry": {"type": "Point", "coordinates": [2.274483765828633, 48.81942176095425]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "66f77071bbac79e56b75211ef27ce689dd29e3b1", "fields": {"departement": "92", "stop_lat": 48.81741219606798, "code_postal": "92040", "stop_lon": 2.2651226382831755, "coord": [48.81741219606798, 2.2651226382831755], "stop_id": 4473373, "stop_desc": "FACE-16 RUE RABELAIS - 92040", "stop_name": "VERDI"}, "geometry": {"type": "Point", "coordinates": [2.2651226382831755, 48.81741219606798]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0e9afd64b8dc652dd8122244b76d177165db25f3", "fields": {"departement": "92", "stop_lat": 48.81725930585249, "code_postal": "92040", "stop_lon": 2.2649595333518677, "coord": [48.81725930585249, 2.2649595333518677], "stop_id": 4473374, "stop_desc": "34 RUE RABELAIS - 92040", "stop_name": "VERDI"}, "geometry": {"type": "Point", "coordinates": [2.2649595333518677, 48.81725930585249]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ada0ce26cf19854261b10eca5fe59219a9765acd", "fields": {"departement": "92", "stop_lat": 48.81464812985609, "code_postal": "92023", "stop_lon": 2.257546211090835, "coord": [48.81464812985609, 2.257546211090835], "stop_id": 4473379, "stop_desc": "FACE 132 AVENUE HENRI BARBUSSE - 92023", "stop_name": "HOPITAL PERCY"}, "geometry": {"type": "Point", "coordinates": [2.257546211090835, 48.81464812985609]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ac141a131a16b86cfc4ba20cf26837222312fe3c", "fields": {"departement": "92", "stop_lat": 48.81007452345811, "code_postal": "92048", "stop_lon": 2.2466124805574057, "coord": [48.81007452345811, 2.2466124805574057], "stop_id": 4473388, "stop_desc": "1 BIS RUE HENRI BARBUSSE - 92048", "stop_name": "PAUL BERT"}, "geometry": {"type": "Point", "coordinates": [2.2466124805574057, 48.81007452345811]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e779ed50800aa5a54cfb382adfa1deeb8bb1415f", "fields": {"departement": "92", "stop_lat": 48.82176885588135, "code_postal": "92048", "stop_lon": 2.226856149789069, "coord": [48.82176885588135, 2.226856149789069], "stop_id": 4473405, "stop_desc": "FACE 12 RUE MARCEL ALLEGOT - 92048", "stop_name": "11 NOVEMBRE"}, "geometry": {"type": "Point", "coordinates": [2.226856149789069, 48.82176885588135]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e26d3878ca7f1a89dee1d038be5d835430b9ed35", "fields": {"departement": "92", "stop_lat": 48.92649449009768, "code_postal": "92025", "stop_lon": 2.2437765137696033, "coord": [48.92649449009768, 2.2437765137696033], "stop_id": 4015922, "stop_desc": "24-26 AVENUE DE L'EUROPE - 92025", "stop_name": "TOUR D'AUVERGNE"}, "geometry": {"type": "Point", "coordinates": [2.2437765137696033, 48.92649449009768]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "15eeb103cd07e2ba8934396164b9e3b12d348daf", "fields": {"departement": "92", "stop_lat": 48.930420001344224, "code_postal": "92036", "stop_lon": 2.28502897779457, "coord": [48.930420001344224, 2.28502897779457], "stop_id": 4015927, "stop_desc": "AVENUE LUCIEN LANTERNIER - 92036", "stop_name": "LES COURTILLES"}, "geometry": {"type": "Point", "coordinates": [2.28502897779457, 48.930420001344224]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "926e19c5b60e9abf23a0e8e1cccc27213f188826", "fields": {"departement": "92", "stop_lat": 48.90889483249582, "code_postal": "92024", "stop_lon": 2.3070420751740435, "coord": [48.90889483249582, 2.3070420751740435], "stop_id": 4016021, "stop_desc": "1 PLACE JULES VERNE - 92024", "stop_name": "HOPITAL BEAUJON"}, "geometry": {"type": "Point", "coordinates": [2.3070420751740435, 48.90889483249582]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d24229cf21c45a55627a27d713d1cebab9aba740", "fields": {"departement": "92", "stop_lat": 48.90583965879505, "code_postal": "92024", "stop_lon": 2.308775253309294, "coord": [48.90583965879505, 2.308775253309294], "stop_id": 4016023, "stop_desc": "51 RUE DU LANDY - 92024", "stop_name": "VILLENEUVE - GENERAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.308775253309294, 48.90583965879505]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0954b9c874e0220300a920a41bd4c21a992f5cd2", "fields": {"departement": "92", "stop_lat": 48.916323540007774, "code_postal": "92004", "stop_lon": 2.295283679264348, "coord": [48.916323540007774, 2.295283679264348], "stop_id": 4016028, "stop_desc": "PISTE GARE ROUTIERE - 92004", "stop_name": "GABRIEL PERI-METRO"}, "geometry": {"type": "Point", "coordinates": [2.295283679264348, 48.916323540007774]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5de0930e1e6b9e05e21090a927bf8606d51bc712", "fields": {"departement": "92", "stop_lat": 48.90259408337223, "code_postal": "92024", "stop_lon": 2.3039921380474033, "coord": [48.90259408337223, 2.3039921380474033], "stop_id": 4016031, "stop_desc": "89 BOULEVARD JEAN JAURES - 92024", "stop_name": "MAIRIE DE CLICHY-METRO"}, "geometry": {"type": "Point", "coordinates": [2.3039921380474033, 48.90259408337223]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6f334f2417272fb561291dbe8286f5bc07415a86", "fields": {"departement": "92", "stop_lat": 48.907438204202705, "code_postal": "92024", "stop_lon": 2.304302597963457, "coord": [48.907438204202705, 2.304302597963457], "stop_id": 4016032, "stop_desc": "26 RUE GABRIEL PERI - 92024", "stop_name": "BATELIERS"}, "geometry": {"type": "Point", "coordinates": [2.304302597963457, 48.907438204202705]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2eaff33c8ac3a53f09ad18556e43d3750598b57c", "fields": {"departement": "92", "stop_lat": 48.90722193611381, "code_postal": "92024", "stop_lon": 2.302271357586615, "coord": [48.90722193611381, 2.302271357586615], "stop_id": 4016041, "stop_desc": "136 RUE MARTRE - 92024", "stop_name": "LEON BLUM"}, "geometry": {"type": "Point", "coordinates": [2.302271357586615, 48.90722193611381]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d5b984c28a2470c2904865fbf36a80c84b139f04", "fields": {"departement": "92", "stop_lat": 48.926669165900975, "code_postal": "92036", "stop_lon": 2.300239719866421, "coord": [48.926669165900975, 2.300239719866421], "stop_id": 4016049, "stop_desc": "112 RUE HENRI BARBUSSE - 92036", "stop_name": "SEVINES"}, "geometry": {"type": "Point", "coordinates": [2.300239719866421, 48.926669165900975]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2eb0ecafe6f1ec2a78dbfdcfa2c91ff3b201c076", "fields": {"departement": "92", "stop_lat": 48.93056977674147, "code_postal": "92036", "stop_lon": 2.3012053403996093, "coord": [48.93056977674147, 2.3012053403996093], "stop_id": 4016053, "stop_desc": "73 TER BOULEVARD CAMELINAT - 92036", "stop_name": "MOULIN DE CAGE"}, "geometry": {"type": "Point", "coordinates": [2.3012053403996093, 48.93056977674147]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1862354b321088bf9cf8f94e098bdc4756fbe0d8", "fields": {"departement": "92", "stop_lat": 48.93380543539746, "code_postal": "92036", "stop_lon": 2.302498926667594, "coord": [48.93380543539746, 2.302498926667594], "stop_id": 4016055, "stop_desc": "AVENUE MARCEL PAUL - 92036", "stop_name": "ROND-POINT PIERRE TIMBAUD"}, "geometry": {"type": "Point", "coordinates": [2.302498926667594, 48.93380543539746]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7383e7ba90efcbbd6c291d9a98c198dca980f25e", "fields": {"departement": "92", "stop_lat": 48.94139654436982, "code_postal": "92036", "stop_lon": 2.2940355382058546, "coord": [48.94139654436982, 2.2940355382058546], "stop_id": 4016060, "stop_desc": "ROUTE PRINCIPALE DU PORT - 92036", "stop_name": "DARSE N0 5"}, "geometry": {"type": "Point", "coordinates": [2.2940355382058546, 48.94139654436982]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b85c9251377686c7eaa21bcc7c6aca229cff8977", "fields": {"departement": "92", "stop_lat": 48.93835357740893, "code_postal": "92036", "stop_lon": 2.281023984871198, "coord": [48.93835357740893, 2.281023984871198], "stop_id": 4016065, "stop_desc": "35 ROUTE PRINCIPALE DU PORT - 92036", "stop_name": "BASSIN N0 2"}, "geometry": {"type": "Point", "coordinates": [2.281023984871198, 48.93835357740893]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "67ecd9620cbd8b1e33563982545b254a9a2bdc50", "fields": {"departement": "95", "stop_lat": 48.94252482707516, "code_postal": "95018", "stop_lon": 2.2528472607038177, "coord": [48.94252482707516, 2.2528472607038177], "stop_id": 4016075, "stop_desc": "2 AVENUE GABRIEL PERI - 95018", "stop_name": "BORDEREL"}, "geometry": {"type": "Point", "coordinates": [2.2528472607038177, 48.94252482707516]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6a4eb77539e18bf691a106c06620b637793d49fc", "fields": {"departement": "95", "stop_lat": 48.94827603000987, "code_postal": "95018", "stop_lon": 2.2523739798914075, "coord": [48.94827603000987, 2.2523739798914075], "stop_id": 4016081, "stop_desc": "FACE 4 BIS BOULEVARD LEON FEIX - 95018", "stop_name": "LEON FEIX"}, "geometry": {"type": "Point", "coordinates": [2.2523739798914075, 48.94827603000987]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dcd7404047129b43de0830f926c8a2ad3f6d49de", "fields": {"departement": "92", "stop_lat": 48.90479539967374, "code_postal": "92024", "stop_lon": 2.302177566473815, "coord": [48.90479539967374, 2.302177566473815], "stop_id": 4016087, "stop_desc": "FACE 104 BOULEVARD JEAN JAURES - 92024", "stop_name": "DANIELLE CASANOVA"}, "geometry": {"type": "Point", "coordinates": [2.302177566473815, 48.90479539967374]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dae156815b419106c521b9eaac46d5eaeb02164f", "fields": {"departement": "92", "stop_lat": 48.90307101264256, "code_postal": "92024", "stop_lon": 2.3062684287635036, "coord": [48.90307101264256, 2.3062684287635036], "stop_id": 4016090, "stop_desc": "90 RUE MARTRE - 92024", "stop_name": "RUE MARTRE - MAIRIE DE CLICHY"}, "geometry": {"type": "Point", "coordinates": [2.3062684287635036, 48.90307101264256]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a84306e0527327e6ec29c2bf210ced65a7008d5e", "fields": {"departement": "92", "stop_lat": 48.90307101264256, "code_postal": "92024", "stop_lon": 2.3062684287635036, "coord": [48.90307101264256, 2.3062684287635036], "stop_id": 4016091, "stop_desc": "90 RUE MARTRE - 92024", "stop_name": "RUE MARTRE - MAIRIE DE CLICHY"}, "geometry": {"type": "Point", "coordinates": [2.3062684287635036, 48.90307101264256]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "592fb016d8b8a3691f2e29e2f099306ae7c79d94", "fields": {"departement": "92", "stop_lat": 48.899648734835466, "code_postal": "92024", "stop_lon": 2.314258484833468, "coord": [48.899648734835466, 2.314258484833468], "stop_id": 4016097, "stop_desc": "60 BOULEVARD VICTOR HUGO - 92024", "stop_name": "DISPENSAIRE"}, "geometry": {"type": "Point", "coordinates": [2.314258484833468, 48.899648734835466]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "80fd6d7527dd661b91841930acb2f170306850be", "fields": {"departement": "92", "stop_lat": 48.903189579089386, "code_postal": "92024", "stop_lon": 2.3138752077338864, "coord": [48.903189579089386, 2.3138752077338864], "stop_id": 4016099, "stop_desc": "4 R MADAME DE SANZILLON - 92024", "stop_name": "REPUBLIQUE - FRANCOIS MITTERRAND"}, "geometry": {"type": "Point", "coordinates": [2.3138752077338864, 48.903189579089386]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8cdec6e8ce9ed5b3e3975a1953c84680841ce4b9", "fields": {"departement": "92", "stop_lat": 48.903522848561984, "code_postal": "92024", "stop_lon": 2.3180602148539173, "coord": [48.903522848561984, 2.3180602148539173], "stop_id": 4016100, "stop_desc": "42-44 RUE MADAME DE SANZILLON - 92024", "stop_name": "GEORGES BOISSEAU"}, "geometry": {"type": "Point", "coordinates": [2.3180602148539173, 48.903522848561984]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "66bc84370bc2e4d1275b1b6e478b731702384973", "fields": {"departement": "92", "stop_lat": 48.90619704877619, "code_postal": "92024", "stop_lon": 2.301058700163011, "coord": [48.90619704877619, 2.301058700163011], "stop_id": 4016108, "stop_desc": "133 BOULEVARD JEAN JAURES - 92024", "stop_name": "GABRIEL PERI"}, "geometry": {"type": "Point", "coordinates": [2.301058700163011, 48.90619704877619]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2c14f5df8178ca7799de60b9c96914b4e47723ed", "fields": {"departement": "92", "stop_lat": 48.903312709927555, "code_postal": "92024", "stop_lon": 2.302792027282539, "coord": [48.903312709927555, 2.302792027282539], "stop_id": 4016114, "stop_desc": "13 RUE DE L'ANCIENNE MAIRIE - 92024", "stop_name": "ANCIENNE MAIRIE DE CLICHY"}, "geometry": {"type": "Point", "coordinates": [2.302792027282539, 48.903312709927555]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0165044ac78ea6c2155cfe918ef6ea473bf77df1", "fields": {"departement": "92", "stop_lat": 48.9011253545939, "code_postal": "92024", "stop_lon": 2.292310623720337, "coord": [48.9011253545939, 2.292310623720337], "stop_id": 4016126, "stop_desc": "ROUTE D'ASNIERES - 92024", "stop_name": "RUE DES CHASSES"}, "geometry": {"type": "Point", "coordinates": [2.292310623720337, 48.9011253545939]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "300bf63bdf57ee9197c670f7814fdfb8108b0a77", "fields": {"departement": "75", "stop_lat": 48.87641002033888, "code_postal": "75109", "stop_lon": 2.339802613958686, "coord": [48.87641002033888, 2.339802613958686], "stop_id": 4016278, "stop_desc": "66BIS-68 RUE DU FAUBOURG MONTMARTRE - 75109", "stop_name": "CARREFOUR DE CHATEAUDUN"}, "geometry": {"type": "Point", "coordinates": [2.339802613958686, 48.87641002033888]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3141f1d4bb2b31c442f108e5b77948fc2c2bc96d", "fields": {"departement": "75", "stop_lat": 48.88298861040912, "code_postal": "75109", "stop_lon": 2.332035528074624, "coord": [48.88298861040912, 2.332035528074624], "stop_id": 4016284, "stop_desc": "77 RUE BLANCHE - 75109", "stop_name": "BLANCHE"}, "geometry": {"type": "Point", "coordinates": [2.332035528074624, 48.88298861040912]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "99fdf7077be5654402c2036633c33bd0f6203a87", "fields": {"departement": "75", "stop_lat": 48.88458818475614, "code_postal": "75118", "stop_lon": 2.329268993773359, "coord": [48.88458818475614, 2.329268993773359], "stop_id": 4016285, "stop_desc": "130 BIS BOULEVARD DE CLICHY - 75118", "stop_name": "PLACE DE CLICHY - CAULAINCOURT"}, "geometry": {"type": "Point", "coordinates": [2.329268993773359, 48.88458818475614]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "45ae6ab98bc01231fc34faa0e97f7ef31413a419", "fields": {"departement": "75", "stop_lat": 48.88783222281554, "code_postal": "75117", "stop_lon": 2.325152745158805, "coord": [48.88783222281554, 2.325152745158805], "stop_id": 4016287, "stop_desc": "70 AVENUE DE CLICHY - 75117", "stop_name": "LA FOURCHE"}, "geometry": {"type": "Point", "coordinates": [2.325152745158805, 48.88783222281554]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a662f1f9330fe66fc5fb08c03781234872b7257d", "fields": {"departement": "92", "stop_lat": 48.897724754228356, "code_postal": "92024", "stop_lon": 2.3107153020541866, "coord": [48.897724754228356, 2.3107153020541866], "stop_id": 4016299, "stop_desc": "31 BOULEVARD VICTOR HUGO - 92024", "stop_name": "VICTOR HUGO - JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.3107153020541866, 48.897724754228356]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1fd8597f6b25f3065afc199a2dd23abcecef5df9", "fields": {"departement": "92", "stop_lat": 48.905121060238216, "code_postal": "92024", "stop_lon": 2.310357059527946, "coord": [48.905121060238216, 2.310357059527946], "stop_id": 4016307, "stop_desc": "71 BIS BOULEVARD DU GENERAL LECLERC - 92024", "stop_name": "GENERAL LECLERC - VILLENEUVE-HOPITAL BEAUJON"}, "geometry": {"type": "Point", "coordinates": [2.310357059527946, 48.905121060238216]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "50b53e6dae0542fcc075ae62f6c8a896640b0584", "fields": {"departement": "92", "stop_lat": 48.91112409937243, "code_postal": "92024", "stop_lon": 2.309004133870616, "coord": [48.91112409937243, 2.309004133870616], "stop_id": 4016311, "stop_desc": "0 ALL SANTO TIRSO - 92024", "stop_name": "CLICHY - BERGES DE SEINE"}, "geometry": {"type": "Point", "coordinates": [2.309004133870616, 48.91112409937243]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c369f7efdf963057199d09835f0fb7faddc55b0f", "fields": {"departement": "92", "stop_lat": 48.90992896434792, "code_postal": "92024", "stop_lon": 2.3096046868542586, "coord": [48.90992896434792, 2.3096046868542586], "stop_id": 4016312, "stop_desc": "19 AVENUE CLAUDE DEBUSSY - 92024", "stop_name": "CLAUDE DEBUSSY"}, "geometry": {"type": "Point", "coordinates": [2.3096046868542586, 48.90992896434792]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8876d338eecb777831f19d45e473a10612194a94", "fields": {"departement": "75", "stop_lat": 48.88590006808008, "code_postal": "75117", "stop_lon": 2.326134397795573, "coord": [48.88590006808008, 2.326134397795573], "stop_id": 4016313, "stop_desc": "31 AVENUE DE CLICHY - 75117", "stop_name": "GANNERON"}, "geometry": {"type": "Point", "coordinates": [2.326134397795573, 48.88590006808008]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7f33986c7c13e5dc7183172e324459ff78b3d2b9", "fields": {"departement": "75", "stop_lat": 48.85732954239605, "code_postal": "75101", "stop_lon": 2.3463121756827907, "coord": [48.85732954239605, 2.3463121756827907], "stop_id": 4016326, "stop_desc": "FACE AU 2 QUAI DE LA MEGISSERIE - 75101", "stop_name": "CHATELET"}, "geometry": {"type": "Point", "coordinates": [2.3463121756827907, 48.85732954239605]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b2f7cc69aeb149d4408fe5424574e664f571e030", "fields": {"departement": "75", "stop_lat": 48.866236360134835, "code_postal": "75101", "stop_lon": 2.3343530611372842, "coord": [48.866236360134835, 2.3343530611372842], "stop_id": 4016331, "stop_desc": "20 AVENUE DE L'OPERA - 75101", "stop_name": "PYRAMIDES"}, "geometry": {"type": "Point", "coordinates": [2.3343530611372842, 48.866236360134835]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2092e2dd78d2fc756f5d8c97fd912a9181639f37", "fields": {"departement": "75", "stop_lat": 48.86817760577774, "code_postal": "75102", "stop_lon": 2.3335219409225676, "coord": [48.86817760577774, 2.3335219409225676], "stop_id": 4016333, "stop_desc": "30-32 AVENUE DE L'OPERA - 75102", "stop_name": "PETITS CHAMPS - DANIELLE CASANOVA"}, "geometry": {"type": "Point", "coordinates": [2.3335219409225676, 48.86817760577774]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "877c2f676374e65beca92c164d63626be37847ba", "fields": {"departement": "75", "stop_lat": 48.88809292802928, "code_postal": "75118", "stop_lon": 2.3259295017346346, "coord": [48.88809292802928, 2.3259295017346346], "stop_id": 4016343, "stop_desc": "14 AVENUE DE SAINT OUEN - 75118", "stop_name": "LA FOURCHE"}, "geometry": {"type": "Point", "coordinates": [2.3259295017346346, 48.88809292802928]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "98ebeb040512aa1bd1bc1ac9391580ccd05a9436", "fields": {"departement": "75", "stop_lat": 48.896154647114585, "code_postal": "75118", "stop_lon": 2.328626578392717, "coord": [48.896154647114585, 2.328626578392717], "stop_id": 4016346, "stop_desc": "134 AVENUE DE SAINT OUEN - 75118", "stop_name": "NAVIER"}, "geometry": {"type": "Point", "coordinates": [2.328626578392717, 48.896154647114585]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1bfa525561e57aaea791b0b3d193787c535f5f13", "fields": {"departement": "75", "stop_lat": 48.89946200094006, "code_postal": "75117", "stop_lon": 2.3299755330236085, "coord": [48.89946200094006, 2.3299755330236085], "stop_id": 4016348, "stop_desc": "FACE 30 AVENUE DE LA PORTE SAINT OUEN - 75117", "stop_name": "PORTE DE SAINT-OUEN"}, "geometry": {"type": "Point", "coordinates": [2.3299755330236085, 48.89946200094006]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c9d422acd26a924d9581c895dc78f71f60f115fe", "fields": {"departement": "75", "stop_lat": 48.86224599293963, "code_postal": "75101", "stop_lon": 2.3385487319755973, "coord": [48.86224599293963, 2.3385487319755973], "stop_id": 4016363, "stop_desc": "151 BIS RUE SAINT HONORE - 75101", "stop_name": "SAINT-HONORE - VALOIS"}, "geometry": {"type": "Point", "coordinates": [2.3385487319755973, 48.86224599293963]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "66ef8712db666d44cebdc4925c4341f1647f7894", "fields": {"departement": "75", "stop_lat": 48.89795236411017, "code_postal": "75118", "stop_lon": 2.3395583162084646, "coord": [48.89795236411017, 2.3395583162084646], "stop_id": 4016538, "stop_desc": "134 BOULEVARD NEY - 75118", "stop_name": "CAMILLE FLAMMARION"}, "geometry": {"type": "Point", "coordinates": [2.3395583162084646, 48.89795236411017]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aa45a9cd73a7f92dae090e27a1d2b7865921a125", "fields": {"departement": "75", "stop_lat": 48.89835680702863, "code_postal": "75118", "stop_lon": 2.337104740639638, "coord": [48.89835680702863, 2.337104740639638], "stop_id": 4016540, "stop_desc": "6-8 AVENUE DE LA PORTE DE MONTMARTRE - 75118", "stop_name": "PORTE DE MONTMARTRE - BOULEVARD NEY"}, "geometry": {"type": "Point", "coordinates": [2.337104740639638, 48.89835680702863]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "260ace529157c7dbc887086b17985be16dafb69e", "fields": {"departement": "75", "stop_lat": 48.900720401174596, "code_postal": "75118", "stop_lon": 2.3351962962605697, "coord": [48.900720401174596, 2.3351962962605697], "stop_id": 4016543, "stop_desc": "AVENUE DE LA PORTE DE MONTMARTRE - 75118", "stop_name": "GERARD DE NERVAL"}, "geometry": {"type": "Point", "coordinates": [2.3351962962605697, 48.900720401174596]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "24485004f94fbb957a0d000a10d048ddaeb8c119", "fields": {"departement": "93", "stop_lat": 48.903119925799416, "code_postal": "93070", "stop_lon": 2.333846600482987, "coord": [48.903119925799416, 2.333846600482987], "stop_id": 4016545, "stop_desc": "54 RUE CHARLES SCHMIDT - 93070", "stop_name": "KLEBER"}, "geometry": {"type": "Point", "coordinates": [2.333846600482987, 48.903119925799416]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6633b342f0455b5a225003fc08e84ef703c23303", "fields": {"departement": "93", "stop_lat": 48.90623838248406, "code_postal": "93070", "stop_lon": 2.3321695181146005, "coord": [48.90623838248406, 2.3321695181146005], "stop_id": 4016546, "stop_desc": "1 RUE CHARLES SCHMIDT - 93070", "stop_name": "GARIBALDI"}, "geometry": {"type": "Point", "coordinates": [2.3321695181146005, 48.90623838248406]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7bfd2ecd8da4e9f363e0350ade21276f1208ea3b", "fields": {"departement": "93", "stop_lat": 48.90604965230394, "code_postal": "93070", "stop_lon": 2.3321286373363135, "coord": [48.90604965230394, 2.3321286373363135], "stop_id": 4016547, "stop_desc": "2 RUE CHARLES SCHMIDT - 93070", "stop_name": "GARIBALDI"}, "geometry": {"type": "Point", "coordinates": [2.3321286373363135, 48.90604965230394]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8615beae6baf0ecaf7de54bc5a85960fe388d04b", "fields": {"departement": "93", "stop_lat": 48.91168460128968, "code_postal": "93070", "stop_lon": 2.334159632613418, "coord": [48.91168460128968, 2.334159632613418], "stop_id": 4016550, "stop_desc": "BOULEVARD VICTOR HUGO - 93070", "stop_name": "MAIRIE DE SAINT-OUEN - METRO"}, "geometry": {"type": "Point", "coordinates": [2.334159632613418, 48.91168460128968]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ef5ccdcb4614d49054602f31a8af6e398a4ef267", "fields": {"departement": "93", "stop_lat": 48.91310456029728, "code_postal": "93070", "stop_lon": 2.334554961521502, "coord": [48.91310456029728, 2.334554961521502], "stop_id": 4016551, "stop_desc": "81-83 RUE ALBERT DHALENNE - 93070", "stop_name": "JEAN JAURES - MAIRIE"}, "geometry": {"type": "Point", "coordinates": [2.334554961521502, 48.91310456029728]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "423e250c3e6bce530bc7a2a4997ecd501d93938b", "fields": {"departement": "93", "stop_lat": 48.919880351718966, "code_postal": "93039", "stop_lon": 2.3271225855302653, "coord": [48.919880351718966, 2.3271225855302653], "stop_id": 4016556, "stop_desc": "14 BOULEVARD MARCE PAUL - 93039", "stop_name": "BOULEVARD MARCEL PAUL"}, "geometry": {"type": "Point", "coordinates": [2.3271225855302653, 48.919880351718966]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "acf4da88f3eaef28c3bc2d49dbf660f3e59208b3", "fields": {"departement": "92", "stop_lat": 48.932570218251165, "code_postal": "92078", "stop_lon": 2.3325624952031747, "coord": [48.932570218251165, 2.3325624952031747], "stop_id": 4016567, "stop_desc": "186 BOULEVARD GALLIENI - 92078", "stop_name": "BOULEVARD GALLIENI-ECOLES"}, "geometry": {"type": "Point", "coordinates": [2.3325624952031747, 48.932570218251165]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f6ed91d14bc91c8dd7a9aa76dbbe44f0f41da9a0", "fields": {"departement": "92", "stop_lat": 48.932354523993155, "code_postal": "92078", "stop_lon": 2.332330634333011, "coord": [48.932354523993155, 2.332330634333011], "stop_id": 4016568, "stop_desc": "179 BOULEVARD GALLIENI - 92078", "stop_name": "BOULEVARD GALLIENI-ECOLES"}, "geometry": {"type": "Point", "coordinates": [2.332330634333011, 48.932354523993155]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "27af8898f7a6640369024bd7aa218e27b47ef889", "fields": {"departement": "92", "stop_lat": 48.93838472030651, "code_postal": "92078", "stop_lon": 2.3328484422376055, "coord": [48.93838472030651, 2.3328484422376055], "stop_id": 4016573, "stop_desc": "FACE 26 R DE LA FOSSE AUX ASTRES - 92078", "stop_name": "MATHILDE MILLIARD"}, "geometry": {"type": "Point", "coordinates": [2.3328484422376055, 48.93838472030651]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "186a6e1ab5f1c9bdfceddd0fbff9ed0697b29d9f", "fields": {"departement": "92", "stop_lat": 48.94019100221187, "code_postal": "92078", "stop_lon": 2.331265806267351, "coord": [48.94019100221187, 2.331265806267351], "stop_id": 4016576, "stop_desc": "AV JEAN MOULIN - 92078", "stop_name": "JEAN MOULIN"}, "geometry": {"type": "Point", "coordinates": [2.331265806267351, 48.94019100221187]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c25968effd707e3891a71f628a0903c30b3f0cd2", "fields": {"departement": "93", "stop_lat": 48.90295771043755, "code_postal": "93070", "stop_lon": 2.3481332465556504, "coord": [48.90295771043755, 2.3481332465556504], "stop_id": 4016590, "stop_desc": "RUE DU DOCTEUR BAUER - 93070", "stop_name": "PLACE DEBAIN"}, "geometry": {"type": "Point", "coordinates": [2.3481332465556504, 48.90295771043755]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a23b3c4344c627fe5b400e870fc2a9cdbdda6317", "fields": {"departement": "93", "stop_lat": 48.910992640087876, "code_postal": "93070", "stop_lon": 2.3373910267164715, "coord": [48.910992640087876, 2.3373910267164715], "stop_id": 4016595, "stop_desc": "41-43 RUE DU DOCTEUR BAUER - 93070", "stop_name": "RUE DE L'UNION"}, "geometry": {"type": "Point", "coordinates": [2.3373910267164715, 48.910992640087876]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "105c2b9020c66be0a0cd6729097e8c5ad7be86fc", "fields": {"departement": "93", "stop_lat": 48.913032678779174, "code_postal": "93070", "stop_lon": 2.335304886790752, "coord": [48.913032678779174, 2.335304886790752], "stop_id": 4016597, "stop_desc": "29 BOULEVARD JEAN JAURES - 93070", "stop_name": "JAURES - DHALENNE"}, "geometry": {"type": "Point", "coordinates": [2.335304886790752, 48.913032678779174]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ddd9ce75f4ed281d24eba6609162d2fd5291ef2c", "fields": {"departement": "93", "stop_lat": 48.91825406282191, "code_postal": "93070", "stop_lon": 2.3329592448178054, "coord": [48.91825406282191, 2.3329592448178054], "stop_id": 4016601, "stop_desc": "52 RUE SAINT-DENIS - 93070", "stop_name": "SAINT-DENIS ROUSSEAU"}, "geometry": {"type": "Point", "coordinates": [2.3329592448178054, 48.91825406282191]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c5496bdcd3ab33bf52af7654ccd73113ab9420e2", "fields": {"departement": "93", "stop_lat": 48.91717569092136, "code_postal": "93070", "stop_lon": 2.335604723520871, "coord": [48.91717569092136, 2.335604723520871], "stop_id": 4016604, "stop_desc": "14-16 RUE SALVADOR ALLENDE - 93070", "stop_name": "STADE PABLO NERUDA"}, "geometry": {"type": "Point", "coordinates": [2.335604723520871, 48.91717569092136]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "33e19277759e9430c1a6e9cc2a7eae351b850df8", "fields": {"departement": "93", "stop_lat": 48.91227773399913, "code_postal": "93070", "stop_lon": 2.333764189783241, "coord": [48.91227773399913, 2.333764189783241], "stop_id": 4016609, "stop_desc": "4 PLACE DE LA REPUBLIQUE - 93070", "stop_name": "MAIRIE DE SAINT-OUEN"}, "geometry": {"type": "Point", "coordinates": [2.333764189783241, 48.91227773399913]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "41f4a495a34ecce9962cf46011001dbfea254b4b", "fields": {"departement": "93", "stop_lat": 48.9053666036372, "code_postal": "93070", "stop_lon": 2.3314470589255323, "coord": [48.9053666036372, 2.3314470589255323], "stop_id": 4016612, "stop_desc": "86 AVENUE GABRIEL PERI - 93070", "stop_name": "GARIBALDI OTTINO"}, "geometry": {"type": "Point", "coordinates": [2.3314470589255323, 48.9053666036372]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "86410a1a4e2bb0fdd04d294f735ff1a784f58c83", "fields": {"departement": "93", "stop_lat": 48.902184835311324, "code_postal": "93070", "stop_lon": 2.326539865815577, "coord": [48.902184835311324, 2.326539865815577], "stop_id": 4016615, "stop_desc": "PLACE PAYRET - 93070", "stop_name": "PAYRET"}, "geometry": {"type": "Point", "coordinates": [2.326539865815577, 48.902184835311324]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "96d4b95bb28626588a86b838832f2d9143770fc3", "fields": {"departement": "75", "stop_lat": 48.89816784930795, "code_postal": "75118", "stop_lon": 2.3446290673307475, "coord": [48.89816784930795, 2.3446290673307475], "stop_id": 4016691, "stop_desc": "100 BOULEVARD NEY - 75118", "stop_name": "PORTE DE CLIGNANCOURT"}, "geometry": {"type": "Point", "coordinates": [2.3446290673307475, 48.89816784930795]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c4e429e69d48f2b86076f257da6f5e33702a80fd", "fields": {"departement": "75", "stop_lat": 48.89999224724336, "code_postal": "75118", "stop_lon": 2.344424854415678, "coord": [48.89999224724336, 2.344424854415678], "stop_id": 4016693, "stop_desc": "AVENUE DE LA PORTE DE CLIGNANCOURT - 75118", "stop_name": "MICHELET - ROSIERS"}, "geometry": {"type": "Point", "coordinates": [2.344424854415678, 48.89999224724336]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4ee2602a7c48a7aa6484222e0bd67c30eeae14cf", "fields": {"departement": "93", "stop_lat": 48.910992640087876, "code_postal": "93070", "stop_lon": 2.3373910267164715, "coord": [48.910992640087876, 2.3373910267164715], "stop_id": 4016699, "stop_desc": "41-43 RUE DU DOCTEUR BAUER - 93070", "stop_name": "RUE DE L'UNION"}, "geometry": {"type": "Point", "coordinates": [2.3373910267164715, 48.910992640087876]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9f47784fdc3fd1ba496e47c64d0c6547002dcb23", "fields": {"departement": "93", "stop_lat": 48.91486592620741, "code_postal": "93070", "stop_lon": 2.331936869246496, "coord": [48.91486592620741, 2.331936869246496], "stop_id": 4016703, "stop_desc": "51 RUE ALBERT DHALENNE - 93070", "stop_name": "SOUBISE"}, "geometry": {"type": "Point", "coordinates": [2.331936869246496, 48.91486592620741]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6e88e00256731d1d1ce1dfb3c8eb6930e7870d08", "fields": {"departement": "93", "stop_lat": 48.91936813194913, "code_postal": "93039", "stop_lon": 2.3275726936653074, "coord": [48.91936813194913, 2.3275726936653074], "stop_id": 4016708, "stop_desc": "BD MARCEL PAUL - 93039", "stop_name": "BOULEVARD MARCEL PAUL"}, "geometry": {"type": "Point", "coordinates": [2.3275726936653074, 48.91936813194913]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "59f7446ee34dd721a68eff8df13115b42069459f", "fields": {"departement": "92", "stop_lat": 48.92954790637604, "code_postal": "92036", "stop_lon": 2.3113536804658117, "coord": [48.92954790637604, 2.3113536804658117], "stop_id": 4016717, "stop_desc": "RUE THOMAS EDISON - 92036", "stop_name": "MOULIN DE CAGE"}, "geometry": {"type": "Point", "coordinates": [2.3113536804658117, 48.92954790637604]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c227d3bc74afde893997435ce068bac1359503e2", "fields": {"departement": "92", "stop_lat": 48.929610784931576, "code_postal": "92036", "stop_lon": 2.311217255996848, "coord": [48.929610784931576, 2.311217255996848], "stop_id": 4016718, "stop_desc": "RUE THOMAS EDISON - 92036", "stop_name": "MOULIN DE CAGE"}, "geometry": {"type": "Point", "coordinates": [2.311217255996848, 48.929610784931576]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "554aba7f06b52c05d76005851ef3279d67157a80", "fields": {"departement": "92", "stop_lat": 48.93335625390836, "code_postal": "92036", "stop_lon": 2.3030584799968534, "coord": [48.93335625390836, 2.3030584799968534], "stop_id": 4016725, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 92036", "stop_name": "ROND-POINT PIERRE TIMBAUD"}, "geometry": {"type": "Point", "coordinates": [2.3030584799968534, 48.93335625390836]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f27782e6ba639316c75771171fe14537667816a9", "fields": {"departement": "92", "stop_lat": 48.94340421131444, "code_postal": "92036", "stop_lon": 2.305534857965915, "coord": [48.94340421131444, 2.305534857965915], "stop_id": 4016732, "stop_desc": "AVENUE DES LOUVRESSES - 92036", "stop_name": "ORMETEAU"}, "geometry": {"type": "Point", "coordinates": [2.305534857965915, 48.94340421131444]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4e42ddc466fbfa5ae2f655febba2003a7998a891", "fields": {"departement": "92", "stop_lat": 48.88818903073687, "code_postal": "92062", "stop_lon": 2.240533894361642, "coord": [48.88818903073687, 2.240533894361642], "stop_id": 4016738, "stop_desc": "15 AVENUE JEAN MOULIN - 92062", "stop_name": "BOIELDIEU"}, "geometry": {"type": "Point", "coordinates": [2.240533894361642, 48.88818903073687]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "30207a2b0b7804115a816c13d238fb07a9e92cfd", "fields": {"departement": "92", "stop_lat": 48.8871763106982, "code_postal": "92062", "stop_lon": 2.244092729902989, "coord": [48.8871763106982, 2.244092729902989], "stop_id": 4016739, "stop_desc": "39 RUE PAUL LAFARGUE - 92062", "stop_name": "GALLIENI"}, "geometry": {"type": "Point", "coordinates": [2.244092729902989, 48.8871763106982]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "631c924a39c5f3636e7d50ece28e2f47d58a6abc", "fields": {"departement": "92", "stop_lat": 48.885326721151834, "code_postal": "92051", "stop_lon": 2.2742404279307515, "coord": [48.885326721151834, 2.2742404279307515], "stop_id": 4016752, "stop_desc": "20 BOULEVARD D'INKERMANN - 92051", "stop_name": "LYCEE PASTEUR"}, "geometry": {"type": "Point", "coordinates": [2.2742404279307515, 48.885326721151834]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7ae4541f8fd2bd4e736d3e25a77c3c6546d05cd5", "fields": {"departement": "92", "stop_lat": 48.88825736945054, "code_postal": "92051", "stop_lon": 2.275804133745033, "coord": [48.88825736945054, 2.275804133745033], "stop_id": 4016754, "stop_desc": "54 BOULEVARD INKERMANN - 92051", "stop_name": "INKERMANN - BINEAU"}, "geometry": {"type": "Point", "coordinates": [2.275804133745033, 48.88825736945054]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "acf235a4548128a2dfefc4adf0856e0b45e7f962", "fields": {"departement": "92", "stop_lat": 48.89030851290143, "code_postal": "92044", "stop_lon": 2.2799449064571067, "coord": [48.89030851290143, 2.2799449064571067], "stop_id": 4016756, "stop_desc": "FACE 3 RUE DE VOLTAIRE - 92044", "stop_name": "VOLTAIRE - VILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.2799449064571067, 48.89030851290143]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ab4719a9064d2c0074342fe1c8f05238d2b2c973", "fields": {"departement": "92", "stop_lat": 48.89324168818636, "code_postal": "92044", "stop_lon": 2.2874107567071595, "coord": [48.89324168818636, 2.2874107567071595], "stop_id": 4016760, "stop_desc": "FACE 75 RUE VOLTAIRE - 92044", "stop_name": "MAIRIE DE LEVALLOIS"}, "geometry": {"type": "Point", "coordinates": [2.2874107567071595, 48.89324168818636]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dc0c44c89f13d0b1701974d9fb476d9b8dc22cd0", "fields": {"departement": "92", "stop_lat": 48.89236118961848, "code_postal": "92044", "stop_lon": 2.2879976720395963, "coord": [48.89236118961848, 2.2879976720395963], "stop_id": 4016761, "stop_desc": "FACE 76 RUE ARISTIDE BRIAND - 92044", "stop_name": "MAIRIE DE LEVALLOIS"}, "geometry": {"type": "Point", "coordinates": [2.2879976720395963, 48.89236118961848]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f89477a445672b16e67745376af3b70ab8472773", "fields": {"departement": "92", "stop_lat": 48.89356629689293, "code_postal": "92044", "stop_lon": 2.29004099936461, "coord": [48.89356629689293, 2.29004099936461], "stop_id": 4016762, "stop_desc": "47 RUE RIVAY - 92044", "stop_name": "ARISTIDE BRIAND"}, "geometry": {"type": "Point", "coordinates": [2.29004099936461, 48.89356629689293]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ca0f40e15a6d7c3d125eba8945d155382b21a1bf", "fields": {"departement": "92", "stop_lat": 48.894584074713464, "code_postal": "92044", "stop_lon": 2.296050939691295, "coord": [48.894584074713464, 2.296050939691295], "stop_id": 4016765, "stop_desc": "98 RUE JEAN JAURES - 92044", "stop_name": "TREZEL"}, "geometry": {"type": "Point", "coordinates": [2.296050939691295, 48.894584074713464]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b2acb40ca623a5c7d04f7c531dc3ab28d52ba241", "fields": {"departement": "92", "stop_lat": 48.90559395350162, "code_postal": "92024", "stop_lon": 2.298018966751348, "coord": [48.90559395350162, 2.298018966751348], "stop_id": 4016775, "stop_desc": "8 R FOURNIER - 92024", "stop_name": "RUE DU PORT"}, "geometry": {"type": "Point", "coordinates": [2.298018966751348, 48.90559395350162]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "688b521202be2abcd64bdb8093860abbad687c4c", "fields": {"departement": "92", "stop_lat": 48.906403689038, "code_postal": "92024", "stop_lon": 2.3008540579028622, "coord": [48.906403689038, 2.3008540579028622], "stop_id": 4016777, "stop_desc": "136 BOULEVARD JEAN JAURES - 92024", "stop_name": "LEON BLUM"}, "geometry": {"type": "Point", "coordinates": [2.3008540579028622, 48.906403689038]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b550963201f14870d9c9622aa4dee40382c54300", "fields": {"departement": "92", "stop_lat": 48.90479539967374, "code_postal": "92024", "stop_lon": 2.302177566473815, "coord": [48.90479539967374, 2.302177566473815], "stop_id": 4016778, "stop_desc": "FACE 104 BOULEVARD JEAN JAURES - 92024", "stop_name": "DANIELLE CASANOVA"}, "geometry": {"type": "Point", "coordinates": [2.302177566473815, 48.90479539967374]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "64b7c74bc35ba6f353565a36812688754905b0fe", "fields": {"departement": "92", "stop_lat": 48.903189579089386, "code_postal": "92024", "stop_lon": 2.3138752077338864, "coord": [48.903189579089386, 2.3138752077338864], "stop_id": 4016783, "stop_desc": "4 R MADAME DE SANZILLON - 92024", "stop_name": "REPUBLIQUE - FRANCOIS MITTERRAND"}, "geometry": {"type": "Point", "coordinates": [2.3138752077338864, 48.903189579089386]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "19c964ef113d2e2e1840f15830dd769b6ac38678", "fields": {"departement": "92", "stop_lat": 48.9033333644882, "code_postal": "92024", "stop_lon": 2.3138342457048426, "coord": [48.9033333644882, 2.3138342457048426], "stop_id": 4016784, "stop_desc": "8 PLACE DE LA REPUBLIQUE - 92024", "stop_name": "REPUBLIQUE - FRANCOIS MITTERRAND"}, "geometry": {"type": "Point", "coordinates": [2.3138342457048426, 48.9033333644882]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2121b0032792d14d139d25056d40d878562be912", "fields": {"departement": "92", "stop_lat": 48.90481735247552, "code_postal": "92024", "stop_lon": 2.3204727365528157, "coord": [48.90481735247552, 2.3204727365528157], "stop_id": 4016787, "stop_desc": "FACE 12 RUE PIERRE DREYFUS - 92024", "stop_name": "SAINT-OUEN RER"}, "geometry": {"type": "Point", "coordinates": [2.3204727365528157, 48.90481735247552]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "13a08f17db400abc1a8db500335977b098dc5116", "fields": {"departement": "92", "stop_lat": 48.90481735247552, "code_postal": "92024", "stop_lon": 2.3204727365528157, "coord": [48.90481735247552, 2.3204727365528157], "stop_id": 4016788, "stop_desc": "FACE 12 RUE PIERRE DREYFUS - 92024", "stop_name": "SAINT-OUEN RER"}, "geometry": {"type": "Point", "coordinates": [2.3204727365528157, 48.90481735247552]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d98ac3c1b742c17598a442ec35bba90085dd4fd9", "fields": {"departement": "92", "stop_lat": 48.90385565876156, "code_postal": "92024", "stop_lon": 2.319941379643231, "coord": [48.90385565876156, 2.319941379643231], "stop_id": 4016789, "stop_desc": "63 RUE MADAME DE SANZILLON - 92024", "stop_name": "VICTOR HUGO - SANZILLON"}, "geometry": {"type": "Point", "coordinates": [2.319941379643231, 48.90385565876156]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2b6c98456d7ab2d2fe890b86b30821e6b1e7ce77", "fields": {"departement": "92", "stop_lat": 48.90487707648954, "code_postal": "92024", "stop_lon": 2.3049858663019815, "coord": [48.90487707648954, 2.3049858663019815], "stop_id": 4016790, "stop_desc": "13 RUE DU LANDY - 92024", "stop_name": "LANDY - MARTRE"}, "geometry": {"type": "Point", "coordinates": [2.3049858663019815, 48.90487707648954]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0863ef977ebae1970d0f4538f796efdcb0ca1ff1", "fields": {"departement": "92", "stop_lat": 48.91970778205413, "code_postal": "92004", "stop_lon": 2.314099576330498, "coord": [48.91970778205413, 2.314099576330498], "stop_id": 4016806, "stop_desc": "FACE 207 AVENUE DES GRESILLONS - 92004", "stop_name": "LES GRESILLONS RER"}, "geometry": {"type": "Point", "coordinates": [2.314099576330498, 48.91970778205413]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "00fc4aa30ee7322617890542a7ce1980250c6817", "fields": {"departement": "92", "stop_lat": 48.92077780514651, "code_postal": "92036", "stop_lon": 2.3172765134402966, "coord": [48.92077780514651, 2.3172765134402966], "stop_id": 4016808, "stop_desc": "AVENUE DES GRESILLONS - 92036", "stop_name": "CABOEUFS"}, "geometry": {"type": "Point", "coordinates": [2.3172765134402966, 48.92077780514651]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e2686502254fe40fee023192182d62123312245e", "fields": {"departement": "92", "stop_lat": 48.92276441895676, "code_postal": "92036", "stop_lon": 2.3205078344691783, "coord": [48.92276441895676, 2.3205078344691783], "stop_id": 4016810, "stop_desc": "41-43 BOULEVARD LOUISE MICHEL - 92036", "stop_name": "QUATRE CHEMINS"}, "geometry": {"type": "Point", "coordinates": [2.3205078344691783, 48.92276441895676]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "278f0c131b79b894862c5c924233bb9c283bdb8b", "fields": {"departement": "91", "stop_lat": 48.6872235037595, "code_postal": "91345", "stop_lon": 2.2941380308374755, "coord": [48.6872235037595, 2.2941380308374755], "stop_id": 3757235, "stop_desc": "60 BOULEVARD DU DOCTEUR CATHELIN - 91345", "stop_name": "RESIDENCE LA ROCADE"}, "geometry": {"type": "Point", "coordinates": [2.2941380308374755, 48.6872235037595]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c5e1e12889988d119c548358253af09e11b6fef6", "fields": {"departement": "91", "stop_lat": 48.687646169985925, "code_postal": "91345", "stop_lon": 2.294694291776584, "coord": [48.687646169985925, 2.294694291776584], "stop_id": 3757237, "stop_desc": "BOULEVARD DU DOCTEUR CATHELIN - 91345", "stop_name": "LA ROCADE-LYCEE"}, "geometry": {"type": "Point", "coordinates": [2.294694291776584, 48.687646169985925]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d5312ed172b3c9b8ef578fc6e9588508e86dce20", "fields": {"departement": "91", "stop_lat": 48.72784613086852, "code_postal": "91377", "stop_lon": 2.264689842561302, "coord": [48.72784613086852, 2.264689842561302], "stop_id": 3759048, "stop_desc": "19 AVENUE CARNOT - 91377", "stop_name": "CHEMIN DES FEMMES"}, "geometry": {"type": "Point", "coordinates": [2.264689842561302, 48.72784613086852]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "958e8b868d8c3ed1fe3de71575b06bcea00fc658", "fields": {"departement": "91", "stop_lat": 48.72749923805249, "code_postal": "91377", "stop_lon": 2.2709400193270484, "coord": [48.72749923805249, 2.2709400193270484], "stop_id": 3759052, "stop_desc": "RUE VICTOR BASCH - 91377", "stop_name": "LA TUILERIE"}, "geometry": {"type": "Point", "coordinates": [2.2709400193270484, 48.72749923805249]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a0ec24b9d792ae6d4198615875a34e1e6603b8a6", "fields": {"departement": "91", "stop_lat": 48.72261757097308, "code_postal": "91377", "stop_lon": 2.2873025979956845, "coord": [48.72261757097308, 2.2873025979956845], "stop_id": 3759058, "stop_desc": "AVENUE DU MARECHAL DE LATTRE DE TASSIGNY - 91377", "stop_name": "LA BONDE"}, "geometry": {"type": "Point", "coordinates": [2.2873025979956845, 48.72261757097308]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "45af1810a8c876f113577bb2a6ebb8eda8c88b33", "fields": {"departement": "91", "stop_lat": 48.71646381338601, "code_postal": "91377", "stop_lon": 2.2958932184222367, "coord": [48.71646381338601, 2.2958932184222367], "stop_id": 3759060, "stop_desc": "AVENUE DU MARECHAL DE LATTRE DE TASSIGNY - 91377", "stop_name": "RUE DES FLEURS"}, "geometry": {"type": "Point", "coordinates": [2.2958932184222367, 48.71646381338601]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7d8001cd32abdf24bbc17d22a9d62654c5039989", "fields": {"departement": "91", "stop_lat": 48.71677842244562, "code_postal": "91377", "stop_lon": 2.2959337186988806, "coord": [48.71677842244562, 2.2959337186988806], "stop_id": 3759061, "stop_desc": "50 RUE DE CHILLY - 91377", "stop_name": "RUE DES FLEURS"}, "geometry": {"type": "Point", "coordinates": [2.2959337186988806, 48.71677842244562]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e98381564b7cb49bcb4bef4e9af68c9ebe6ad10b", "fields": {"departement": "91", "stop_lat": 48.71463130265708, "code_postal": "91161", "stop_lon": 2.2992768235553367, "coord": [48.71463130265708, 2.2992768235553367], "stop_id": 3759062, "stop_desc": "79 ROUTE DE MASSY - 91161", "stop_name": "ROUTE DE MASSY - LES CHAMPARTS"}, "geometry": {"type": "Point", "coordinates": [2.2992768235553367, 48.71463130265708]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0f02a756b48c649e16354d5e161c77b7ff9d13f0", "fields": {"departement": "91", "stop_lat": 48.71498184738707, "code_postal": "91161", "stop_lon": 2.299262984602106, "coord": [48.71498184738707, 2.299262984602106], "stop_id": 3759063, "stop_desc": "FACE 101 ROUTE DE MASSY - 91161", "stop_name": "ROUTE DE MASSY - LES CHAMPARTS"}, "geometry": {"type": "Point", "coordinates": [2.299262984602106, 48.71498184738707]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cbb2fc03f32c7eb406d7fbace760c0ab294e33f1", "fields": {"departement": "94", "stop_lat": 48.75863049508269, "code_postal": "94073", "stop_lon": 2.370125991258024, "coord": [48.75863049508269, 2.370125991258024], "stop_id": 4314841, "stop_desc": "BOULEVARD DU NORD - 94073", "stop_name": "BELLE EPINE NORD"}, "geometry": {"type": "Point", "coordinates": [2.370125991258024, 48.75863049508269]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "76c8b3d25b4f1d6e4b92ac90fc99ce8b441c0502", "fields": {"departement": "91", "stop_lat": 48.73678439660668, "code_postal": "91689", "stop_lon": 2.3287481437712403, "coord": [48.73678439660668, 2.3287481437712403], "stop_id": 4314849, "stop_desc": "1 RUE DE MONTJEAN - 91689", "stop_name": "JUMELAGE"}, "geometry": {"type": "Point", "coordinates": [2.3287481437712403, 48.73678439660668]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7749a5e6e46629aafa67c151f0d7a3e457209bd0", "fields": {"departement": "93", "stop_lat": 48.861409674976045, "code_postal": "93048", "stop_lon": 2.4412946884642825, "coord": [48.861409674976045, 2.4412946884642825], "stop_id": 4364001, "stop_desc": "17 AVENUE DU PRESIDENT WILSON - 93048", "stop_name": "MAIRIE DE MONTREUIL"}, "geometry": {"type": "Point", "coordinates": [2.4412946884642825, 48.861409674976045]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b4fce7a45f07d48a1143ccc0bbf9e75cdaf09fdc", "fields": {"departement": "93", "stop_lat": 48.861409674976045, "code_postal": "93048", "stop_lon": 2.4412946884642825, "coord": [48.861409674976045, 2.4412946884642825], "stop_id": 4364002, "stop_desc": "17 AVENUE DU PRESIDENT WILSON - 93048", "stop_name": "MAIRIE DE MONTREUIL"}, "geometry": {"type": "Point", "coordinates": [2.4412946884642825, 48.861409674976045]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "15027eab84c0af36576a888856c7b04862ceeae6", "fields": {"departement": "93", "stop_lat": 48.86335244139611, "code_postal": "93048", "stop_lon": 2.449553449810795, "coord": [48.86335244139611, 2.449553449810795], "stop_id": 4364003, "stop_desc": "90 RUE DE ROSNY - 93048", "stop_name": "LYCEE JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.449553449810795, 48.86335244139611]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e16e5a8de6d1c713d1ab7d2bc59f786db6a6835c", "fields": {"departement": "93", "stop_lat": 48.863424609709654, "code_postal": "93048", "stop_lon": 2.449267546049426, "coord": [48.863424609709654, 2.449267546049426], "stop_id": 4364004, "stop_desc": "79 RUE DE ROSNY - 93048", "stop_name": "LYCEE JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.449267546049426, 48.863424609709654]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2263f9579294852fd548bf8c00625dddd57493e0", "fields": {"departement": "93", "stop_lat": 48.86443716904679, "code_postal": "93048", "stop_lon": 2.4524300774929575, "coord": [48.86443716904679, 2.4524300774929575], "stop_id": 4364006, "stop_desc": "121 RUE DE ROSNY - 93048", "stop_name": "DANTON"}, "geometry": {"type": "Point", "coordinates": [2.4524300774929575, 48.86443716904679]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b41ee503f1f66d764c82c9f60477bee7cf3c9866", "fields": {"departement": "93", "stop_lat": 48.86714742476843, "code_postal": "93048", "stop_lon": 2.456427603199559, "coord": [48.86714742476843, 2.456427603199559], "stop_id": 4364008, "stop_desc": "151 RUE DE ROSNY - 93048", "stop_name": "EDOUARD BRANLY"}, "geometry": {"type": "Point", "coordinates": [2.456427603199559, 48.86714742476843]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "37be32fe6b88c7388a2312fdab83cb23d4dbdc1f", "fields": {"departement": "93", "stop_lat": 48.868464771492135, "code_postal": "93048", "stop_lon": 2.4601633968819567, "coord": [48.868464771492135, 2.4601633968819567], "stop_id": 4364010, "stop_desc": "203-207 R DE ROSNY - 93048", "stop_name": "NOUVELLE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.4601633968819567, 48.868464771492135]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c0286c2540a917ff7fa41a4a5c1bb4d0c442b6e9", "fields": {"departement": "93", "stop_lat": 48.874254134629716, "code_postal": "93064", "stop_lon": 2.482753346234189, "coord": [48.874254134629716, 2.482753346234189], "stop_id": 4364017, "stop_desc": "2 RUE RICHARD GARDEBLED - 93064", "stop_name": "EGLISE DE ROSNY"}, "geometry": {"type": "Point", "coordinates": [2.482753346234189, 48.874254134629716]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "39db4938e8506a3f7bcb3310d3acd7be73a7a660", "fields": {"departement": "93", "stop_lat": 48.882631221265676, "code_postal": "93064", "stop_lon": 2.481986495656371, "coord": [48.882631221265676, 2.481986495656371], "stop_id": 4364020, "stop_desc": "RUE JEAN DE MAILLY - 93064", "stop_name": "BOIS-PERRIER RER-ROSNY 2"}, "geometry": {"type": "Point", "coordinates": [2.481986495656371, 48.882631221265676]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e6f7cd7543a62547f54a2c60a4b27342adf7ca55", "fields": {"departement": "93", "stop_lat": 48.88284223494826, "code_postal": "93064", "stop_lon": 2.4928341932578513, "coord": [48.88284223494826, 2.4928341932578513], "stop_id": 4364025, "stop_desc": "169 BOULEVARD D'ALSACE LORRAINE - 93064", "stop_name": "LES MARNAUDES"}, "geometry": {"type": "Point", "coordinates": [2.4928341932578513, 48.88284223494826]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8a72993aaf8a638722c555c952c1f5c2e20fe23b", "fields": {"departement": "93", "stop_lat": 48.882175772586365, "code_postal": "93077", "stop_lon": 2.5250051933836772, "coord": [48.882175772586365, 2.5250051933836772], "stop_id": 4364039, "stop_desc": "1-3 RUE SIMON GUITLEVITCH - 93077", "stop_name": "GAGNY RER"}, "geometry": {"type": "Point", "coordinates": [2.5250051933836772, 48.882175772586365]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0ef01aaa7c2467459ed70ec4f6a25917c707903d", "fields": {"departement": "93", "stop_lat": 48.87973617014837, "code_postal": "93032", "stop_lon": 2.527558086870569, "coord": [48.87973617014837, 2.527558086870569], "stop_id": 4364040, "stop_desc": "2 RUE GEORGES REMOND - 93032", "stop_name": "AVENUE LUCIE"}, "geometry": {"type": "Point", "coordinates": [2.527558086870569, 48.87973617014837]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2e70d24db83d2d5fe7222a00ce49bbc4012cb720", "fields": {"departement": "93", "stop_lat": 48.876458876663186, "code_postal": "93077", "stop_lon": 2.5256248813106374, "coord": [48.876458876663186, 2.5256248813106374], "stop_id": 4364041, "stop_desc": "42 RUE CAROLINE - 93077", "stop_name": "LYCEE GEORGES CLEMENCEAU"}, "geometry": {"type": "Point", "coordinates": [2.5256248813106374, 48.876458876663186]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "53c95f6e06ab81cdd745bed220472939a457e1dc", "fields": {"departement": "93", "stop_lat": 48.87716994517538, "code_postal": "93077", "stop_lon": 2.524946187797525, "coord": [48.87716994517538, 2.524946187797525], "stop_id": 4364042, "stop_desc": "60 R SIMON GUITLEVITCH - 93077", "stop_name": "LYCEE GEORGES CLEMENCEAU"}, "geometry": {"type": "Point", "coordinates": [2.524946187797525, 48.87716994517538]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "64f09ddd1a1f12d8426055d42f38be6fd0dce7a8", "fields": {"departement": "93", "stop_lat": 48.87717850845737, "code_postal": "93064", "stop_lon": 2.479859315788344, "coord": [48.87717850845737, 2.479859315788344], "stop_id": 4364045, "stop_desc": "45 AVENUE DU GENERAL DE GAULLE - 93064", "stop_name": "GABRIEL PERI - DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.479859315788344, 48.87717850845737]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "76c31f389503e1f30f35b98083bf0a936596daae", "fields": {"departement": "91", "stop_lat": 48.70928793244434, "code_postal": "91027", "stop_lon": 2.386705016428941, "coord": [48.70928793244434, 2.386705016428941], "stop_id": 4364125, "stop_desc": "4 PL HENRI DEUDON - 91027", "stop_name": "PLACE HENRI DEUDON"}, "geometry": {"type": "Point", "coordinates": [2.386705016428941, 48.70928793244434]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c8e80e83703948fc9c5beff8d650aecac71cc181", "fields": {"departement": "91", "stop_lat": 48.70928793244434, "code_postal": "91027", "stop_lon": 2.386705016428941, "coord": [48.70928793244434, 2.386705016428941], "stop_id": 4364126, "stop_desc": "4 PL HENRI DEUDON - 91027", "stop_name": "PLACE HENRI DEUDON"}, "geometry": {"type": "Point", "coordinates": [2.386705016428941, 48.70928793244434]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "848d58109beb7230f1c93c9166e48db59503afc2", "fields": {"departement": "91", "stop_lat": 48.7077884725674, "code_postal": "91027", "stop_lon": 2.3826564118763565, "coord": [48.7077884725674, 2.3826564118763565], "stop_id": 4364127, "stop_desc": "RUE JEAN-BAPTISTE DE LA SALLE - 91027", "stop_name": "ALBERT SARRAUT"}, "geometry": {"type": "Point", "coordinates": [2.3826564118763565, 48.7077884725674]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "79298b54472dea54484d9695c85d2742abe0a9f9", "fields": {"departement": "91", "stop_lat": 48.702096796240035, "code_postal": "91027", "stop_lon": 2.3874993801835265, "coord": [48.702096796240035, 2.3874993801835265], "stop_id": 4364133, "stop_desc": "102 AVENUE DU 18 AVRIL - 91027", "stop_name": "CITE MOZART"}, "geometry": {"type": "Point", "coordinates": [2.3874993801835265, 48.702096796240035]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d1cd5d386f929075b3f23117230cba3efee147bf", "fields": {"departement": "91", "stop_lat": 48.6909622075468, "code_postal": "91326", "stop_lon": 2.38188143207025, "coord": [48.6909622075468, 2.38188143207025], "stop_id": 4364139, "stop_desc": "FACE 43 R DES GAULOIS - 91326", "stop_name": "JUVISY RER"}, "geometry": {"type": "Point", "coordinates": [2.38188143207025, 48.6909622075468]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c8cf1908fcaee9c09db5ba67d50dd0e72fb33a23", "fields": {"departement": "91", "stop_lat": 48.70077710896622, "code_postal": "91432", "stop_lon": 2.335285674632493, "coord": [48.70077710896622, 2.335285674632493], "stop_id": 4373704, "stop_desc": "FACE 3 R GUSTAVE EIFFEL - 91432", "stop_name": "RUE DE SAVIGNY"}, "geometry": {"type": "Point", "coordinates": [2.335285674632493, 48.70077710896622]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "db1402a8efbec93c931f21f8424acf5c97d7e7f0", "fields": {"departement": "91", "stop_lat": 48.684399808881665, "code_postal": "91589", "stop_lon": 2.3421959842775397, "coord": [48.684399808881665, 2.3421959842775397], "stop_id": 4373717, "stop_desc": "AV JEAN ALLEMANE - 91589", "stop_name": "ALLEMANE - BOILEAU"}, "geometry": {"type": "Point", "coordinates": [2.3421959842775397, 48.684399808881665]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9fb16e27dc6adbc01a8521054fd9cc75c60f7224", "fields": {"departement": "91", "stop_lat": 48.67744114358583, "code_postal": "91589", "stop_lon": 2.3563521885538603, "coord": [48.67744114358583, 2.3563521885538603], "stop_id": 4373725, "stop_desc": "FACE 9 RUE CHATEAUBRIAND - 91589", "stop_name": "CHATEAUBRIAND"}, "geometry": {"type": "Point", "coordinates": [2.3563521885538603, 48.67744114358583]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d96954a088421f9baa067990a684e7bd8a08fba5", "fields": {"departement": "91", "stop_lat": 48.70667758834862, "code_postal": "91027", "stop_lon": 2.3716821178952556, "coord": [48.70667758834862, 2.3716821178952556], "stop_id": 4376558, "stop_desc": "AVENUE FRANCOIS MITTERRAND - 91027", "stop_name": "BELLE ETOILE"}, "geometry": {"type": "Point", "coordinates": [2.3716821178952556, 48.70667758834862]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2fdf62da8c168881799022c7a19dc66aaa663ea9", "fields": {"departement": "91", "stop_lat": 48.703603590416634, "code_postal": "91027", "stop_lon": 2.371435642632003, "coord": [48.703603590416634, 2.371435642632003], "stop_id": 4376559, "stop_desc": "AVENUE FRANCOIS MITTERRAND - 91027", "stop_name": "MARX DORMOY"}, "geometry": {"type": "Point", "coordinates": [2.371435642632003, 48.703603590416634]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "962221a7bc86ea106ab72a679ce484d1aab9ef81", "fields": {"departement": "91", "stop_lat": 48.68892529439915, "code_postal": "91326", "stop_lon": 2.371317390654125, "coord": [48.68892529439915, 2.371317390654125], "stop_id": 4376569, "stop_desc": "18-20 AVENUE DE LA COUR DE FRANCE - 91326", "stop_name": "PIVER"}, "geometry": {"type": "Point", "coordinates": [2.371317390654125, 48.68892529439915]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "304a86f061d65adb8f8253c9fb30816007b96b4b", "fields": {"departement": "91", "stop_lat": 48.69082994236396, "code_postal": "91326", "stop_lon": 2.3744412809792466, "coord": [48.69082994236396, 2.3744412809792466], "stop_id": 4376579, "stop_desc": "FACE 3 RUE PIVER - 91326", "stop_name": "HOPITAL DE JUVISY"}, "geometry": {"type": "Point", "coordinates": [2.3744412809792466, 48.69082994236396]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "19f932f66cba26c90846d847bc3785326101abf7", "fields": {"departement": "91", "stop_lat": 48.69169394733719, "code_postal": "91326", "stop_lon": 2.3707489718944226, "coord": [48.69169394733719, 2.3707489718944226], "stop_id": 4376581, "stop_desc": "AVENUE DE LA COUR DE FRANCE - 91326", "stop_name": "MAIRIE DE JUVISY"}, "geometry": {"type": "Point", "coordinates": [2.3707489718944226, 48.69169394733719]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4f73bb2393fd620ed34591756e1304da5bc5546f", "fields": {"departement": "91", "stop_lat": 48.695370053417975, "code_postal": "91326", "stop_lon": 2.371538856451079, "coord": [48.695370053417975, 2.371538856451079], "stop_id": 4376582, "stop_desc": "40 BIS AVENUE DE LA COUR DE FRANCE - 91326", "stop_name": "OBSERVATOIRE CAMILLE FLAMMARION"}, "geometry": {"type": "Point", "coordinates": [2.371538856451079, 48.695370053417975]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0f6aa303693cd2e80a55008c0e9a71ea6d25618f", "fields": {"departement": "91", "stop_lat": 48.70667758834862, "code_postal": "91027", "stop_lon": 2.3716821178952556, "coord": [48.70667758834862, 2.3716821178952556], "stop_id": 4376586, "stop_desc": "AVENUE FRANCOIS MITTERRAND - 91027", "stop_name": "BELLE ETOILE"}, "geometry": {"type": "Point", "coordinates": [2.3716821178952556, 48.70667758834862]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b0bf0feed2e8114b068bf422360f677fc7169524", "fields": {"departement": "91", "stop_lat": 48.69964201922692, "code_postal": "91027", "stop_lon": 2.3618598378981193, "coord": [48.69964201922692, 2.3618598378981193], "stop_id": 4377199, "stop_desc": "3 R FERDINAND BUISSON - 91027", "stop_name": "BUISSON"}, "geometry": {"type": "Point", "coordinates": [2.3618598378981193, 48.69964201922692]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f3ffd1b7d4c577c823051708b1d6f6703372080e", "fields": {"departement": "91", "stop_lat": 48.692258585581776, "code_postal": "91326", "stop_lon": 2.3761394374852545, "coord": [48.692258585581776, 2.3761394374852545], "stop_id": 4377216, "stop_desc": "60 AVENUE D'ESTIENNE D'ORVES - 91326", "stop_name": "MARCHE DE JUVISY"}, "geometry": {"type": "Point", "coordinates": [2.3761394374852545, 48.692258585581776]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b7844bf906a0a9e0d2b0eaab090a2e392bf9c770", "fields": {"departement": "91", "stop_lat": 48.69042292706394, "code_postal": "91326", "stop_lon": 2.3817859333141653, "coord": [48.69042292706394, 2.3817859333141653], "stop_id": 4377218, "stop_desc": "FACE 41 RUE DES GAULOIS - 91326", "stop_name": "JUVISY RER"}, "geometry": {"type": "Point", "coordinates": [2.3817859333141653, 48.69042292706394]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a85cc3b97a57ae0f19230cc651277711f2f53d92", "fields": {"departement": "91", "stop_lat": 48.69082994236396, "code_postal": "91326", "stop_lon": 2.3744412809792466, "coord": [48.69082994236396, 2.3744412809792466], "stop_id": 4377219, "stop_desc": "FACE 3 RUE PIVER - 91326", "stop_name": "HOPITAL DE JUVISY"}, "geometry": {"type": "Point", "coordinates": [2.3744412809792466, 48.69082994236396]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dc566599f1dae7f53028a3c57a7fe22f234785c2", "fields": {"departement": "91", "stop_lat": 48.69791629054422, "code_postal": "91326", "stop_lon": 2.3615059791388764, "coord": [48.69791629054422, 2.3615059791388764], "stop_id": 4377221, "stop_desc": "54-56 AV HENRI BARBUSSE - 91326", "stop_name": "VIOLETTES"}, "geometry": {"type": "Point", "coordinates": [2.3615059791388764, 48.69791629054422]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e28821768e51de499b5e821fee904af72e442dca", "fields": {"departement": "91", "stop_lat": 48.6974680654895, "code_postal": "91589", "stop_lon": 2.3546486570799763, "coord": [48.6974680654895, 2.3546486570799763], "stop_id": 4377223, "stop_desc": "R DES PALOMBES - 91589", "stop_name": "PALOMBES"}, "geometry": {"type": "Point", "coordinates": [2.3546486570799763, 48.6974680654895]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c3dd6708f4912c0d3dbec551ca751051b2e57f2a", "fields": {"departement": "91", "stop_lat": 48.69993942722326, "code_postal": "91589", "stop_lon": 2.357718357073407, "coord": [48.69993942722326, 2.357718357073407], "stop_id": 4377224, "stop_desc": "FACE 53 AV SAINT-SAENS - 91589", "stop_name": "SAINT SAENS"}, "geometry": {"type": "Point", "coordinates": [2.357718357073407, 48.69993942722326]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "be22f7d604b691c458bd6a51ddd1631c7e7d95bd", "fields": {"departement": "91", "stop_lat": 48.712943503772166, "code_postal": "91479", "stop_lon": 2.3682363150974677, "coord": [48.712943503772166, 2.3682363150974677], "stop_id": 4377610, "stop_desc": "23-25 AV PAUL VAILLANT COUTURIER - 91479", "stop_name": "CENTRE SPORTIF"}, "geometry": {"type": "Point", "coordinates": [2.3682363150974677, 48.712943503772166]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "77b83bb0466efa433c9dad8f85bf92b9ffae2197", "fields": {"departement": "91", "stop_lat": 48.71290818217382, "code_postal": "91479", "stop_lon": 2.365709954080588, "coord": [48.71290818217382, 2.365709954080588], "stop_id": 4377612, "stop_desc": "61 AVENUE PAUL VAILLANT COUTURIER - 91479", "stop_name": "HENRI BARBUSSE"}, "geometry": {"type": "Point", "coordinates": [2.365709954080588, 48.71290818217382]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6995b94abac780e21b92762dbe8c241c32692d36", "fields": {"departement": "91", "stop_lat": 48.70962871577974, "code_postal": "91479", "stop_lon": 2.3595149428073428, "coord": [48.70962871577974, 2.3595149428073428], "stop_id": 4377614, "stop_desc": "92 AVENUE DU GENERAL DE GAULLE - 91479", "stop_name": "MAXIME VEDY"}, "geometry": {"type": "Point", "coordinates": [2.3595149428073428, 48.70962871577974]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1781e00d1343e6175ae241ec72e6f85c4c820d16", "fields": {"departement": "91", "stop_lat": 48.69097881776177, "code_postal": "91589", "stop_lon": 2.350749960762494, "coord": [48.69097881776177, 2.350749960762494], "stop_id": 4377624, "stop_desc": "86 AVENUE GABRIEL PERI - 91589", "stop_name": "PLACE DE LA REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.350749960762494, 48.69097881776177]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aca8b8f9f01c36e3618d330f4f91514c6ba73b65", "fields": {"departement": "91", "stop_lat": 48.68893782592309, "code_postal": "91589", "stop_lon": 2.3551209728143228, "coord": [48.68893782592309, 2.3551209728143228], "stop_id": 4377625, "stop_desc": "33 AVENUE GABRIEL PERI - 91589", "stop_name": "LES BLEUETS"}, "geometry": {"type": "Point", "coordinates": [2.3551209728143228, 48.68893782592309]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c9aef979df25a7be0577ddaa73990c1aba1de269", "fields": {"departement": "91", "stop_lat": 48.689378366309775, "code_postal": "91589", "stop_lon": 2.3544558838862235, "coord": [48.689378366309775, 2.3544558838862235], "stop_id": 4377626, "stop_desc": "40 AVENUE GABRIEL PERI - 91589", "stop_name": "LES BLEUETS"}, "geometry": {"type": "Point", "coordinates": [2.3544558838862235, 48.689378366309775]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c4f9aadf62c9a1f0d2007f11980c55c7fc79fa7e", "fields": {"departement": "91", "stop_lat": 48.68018291128831, "code_postal": "91589", "stop_lon": 2.354941505807853, "coord": [48.68018291128831, 2.354941505807853], "stop_id": 4377632, "stop_desc": "104 AVENUE CARNOT - 91589", "stop_name": "RUE DES ARTISTES"}, "geometry": {"type": "Point", "coordinates": [2.354941505807853, 48.68018291128831]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b5bf354da34601ec774b1d91741c04ac9f0482dd", "fields": {"departement": "91", "stop_lat": 48.6770825231923, "code_postal": "91589", "stop_lon": 2.3492804595440546, "coord": [48.6770825231923, 2.3492804595440546], "stop_id": 4377634, "stop_desc": "15 AVENUE CHARLES DE GAULLE - 91589", "stop_name": "SAVIGNY-SUR-ORGE - CARNOT - RER"}, "geometry": {"type": "Point", "coordinates": [2.3492804595440546, 48.6770825231923]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fb3134f31079bfd3dc446f23480eeba5a1cdda7b", "fields": {"departement": "91", "stop_lat": 48.685199806833644, "code_postal": "91589", "stop_lon": 2.332516913899929, "coord": [48.685199806833644, 2.332516913899929], "stop_id": 4377641, "stop_desc": "FACE 25 AVENUE DU MARECHAL DE LATTRE DE TASSIGNY - 91589", "stop_name": "COLLEGE LES GATINES"}, "geometry": {"type": "Point", "coordinates": [2.332516913899929, 48.685199806833644]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "09ecefea1de786f040034ec9b12463e5405846e2", "fields": {"departement": "91", "stop_lat": 48.685064978818346, "code_postal": "91589", "stop_lon": 2.3325576517803883, "coord": [48.685064978818346, 2.3325576517803883], "stop_id": 4377642, "stop_desc": "21 AVENUE DU MARECHAL DE LATTRE DE TASSIGNY - 91589", "stop_name": "COLLEGE LES GATINES"}, "geometry": {"type": "Point", "coordinates": [2.3325576517803883, 48.685064978818346]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "17e22c672f7ca51bd1bf30489a867356544d931a", "fields": {"departement": "91", "stop_lat": 48.68788732962657, "code_postal": "91589", "stop_lon": 2.3308468286108015, "coord": [48.68788732962657, 2.3308468286108015], "stop_id": 4377644, "stop_desc": "AVENUE DU GENERAL FRIAND - 91589", "stop_name": "MEUNIERS"}, "geometry": {"type": "Point", "coordinates": [2.3308468286108015, 48.68788732962657]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7b378c0f95d1e40ee085630cd0b54ae6738f746d", "fields": {"departement": "92", "stop_lat": 48.762603184983526, "code_postal": "92002", "stop_lon": 2.304163323104653, "coord": [48.762603184983526, 2.304163323104653], "stop_id": 4377717, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 92002", "stop_name": "LA CROIX DE BERNY RER"}, "geometry": {"type": "Point", "coordinates": [2.304163323104653, 48.762603184983526]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "42af99ee466be0c5927ad9a99ca6308fa379aa2a", "fields": {"departement": "92", "stop_lat": 48.76014140331745, "code_postal": "92002", "stop_lon": 2.3078218968349273, "coord": [48.76014140331745, 2.3078218968349273], "stop_id": 4377720, "stop_desc": "118 AVENUE ARISTIDE BRIAND - 92002", "stop_name": "MORTEAUX"}, "geometry": {"type": "Point", "coordinates": [2.3078218968349273, 48.76014140331745]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e4ab8ec9bf778e9d1a997b996511c8b1c41364af", "fields": {"departement": "92", "stop_lat": 48.75113455386284, "code_postal": "92002", "stop_lon": 2.3050541345531697, "coord": [48.75113455386284, 2.3050541345531697], "stop_id": 4377724, "stop_desc": "4 AVENUE DU 11 NOVEMBRE 1918 - 92002", "stop_name": "PONT D'ANTONY"}, "geometry": {"type": "Point", "coordinates": [2.3050541345531697, 48.75113455386284]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "011bc995d142e6c35b5c4e924d8f98d32a7eb225", "fields": {"departement": "94", "stop_lat": 48.755874712688076, "code_postal": "94034", "stop_lon": 2.322084106341217, "coord": [48.755874712688076, 2.322084106341217], "stop_id": 4377731, "stop_desc": "2 AVENUE DE LA REPUBLIQUE - 94034", "stop_name": "MAIRIE DE FRESNES"}, "geometry": {"type": "Point", "coordinates": [2.322084106341217, 48.755874712688076]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b0d29a261546fa6cd8c120e3c44fa25fd469c5c7", "fields": {"departement": "94", "stop_lat": 48.75410440172024, "code_postal": "94034", "stop_lon": 2.3251974746234323, "coord": [48.75410440172024, 2.3251974746234323], "stop_id": 4377733, "stop_desc": "3-5 RUE ALBERT ROPER - 94034", "stop_name": "ALBERT ROPER"}, "geometry": {"type": "Point", "coordinates": [2.3251974746234323, 48.75410440172024]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "816be5a65e7c44326c402b73f327079ab1708ff7", "fields": {"departement": "94", "stop_lat": 48.75293624258198, "code_postal": "94034", "stop_lon": 2.3286911293163675, "coord": [48.75293624258198, 2.3286911293163675], "stop_id": 4377734, "stop_desc": "AVENUE DE LA CERISAIE - 94034", "stop_name": "CERISAIE"}, "geometry": {"type": "Point", "coordinates": [2.3286911293163675, 48.75293624258198]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b349819fdaf07d8a026836772b22a0f17a55392e", "fields": {"departement": "94", "stop_lat": 48.74876568747468, "code_postal": "94065", "stop_lon": 2.3462932517689645, "coord": [48.74876568747468, 2.3462932517689645], "stop_id": 4377742, "stop_desc": "RUE DE LA GRANGE - 94065", "stop_name": "LA GRANGE"}, "geometry": {"type": "Point", "coordinates": [2.3462932517689645, 48.74876568747468]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c32818984eb04924e77fe66c761b524153f1ed1d", "fields": {"departement": "94", "stop_lat": 48.74617971011212, "code_postal": "94054", "stop_lon": 2.3771719326427716, "coord": [48.74617971011212, 2.3771719326427716], "stop_id": 4377756, "stop_desc": "157 ROUTE CHARLES TILLON - 94054", "stop_name": "CITE JARDINS"}, "geometry": {"type": "Point", "coordinates": [2.3771719326427716, 48.74617971011212]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "afac82e4203a3b9003a9b487701dc187b24cb4db", "fields": {"departement": "94", "stop_lat": 48.754473514026486, "code_postal": "94073", "stop_lon": 2.3835127983467417, "coord": [48.754473514026486, 2.3835127983467417], "stop_id": 4377766, "stop_desc": "FACE 15 RUE DES ALOUETTES - 94073", "stop_name": "RUE DU BAS MARIN"}, "geometry": {"type": "Point", "coordinates": [2.3835127983467417, 48.754473514026486]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f9411363b23e3a14c4c0df3ba5992ea34e7f84bb", "fields": {"departement": "94", "stop_lat": 48.75911678578232, "code_postal": "94021", "stop_lon": 2.366564526644527, "coord": [48.75911678578232, 2.366564526644527], "stop_id": 4377775, "stop_desc": "RUE DE THIAIS - 94021", "stop_name": "PORTE DE THIAIS"}, "geometry": {"type": "Point", "coordinates": [2.366564526644527, 48.75911678578232]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a52dd1f4775cc3ccf3557905d5f22cf8fe5fab64", "fields": {"departement": "94", "stop_lat": 48.76371165042406, "code_postal": "94021", "stop_lon": 2.357213241133877, "coord": [48.76371165042406, 2.357213241133877], "stop_id": 4377777, "stop_desc": "PISTE GARE ROUTIERE - 94021", "stop_name": "MARCHE INTERNATIONAL DE RUNGIS"}, "geometry": {"type": "Point", "coordinates": [2.357213241133877, 48.76371165042406]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1c24091396e7ab4afca397beffc4ac67a835bb82", "fields": {"departement": "94", "stop_lat": 48.74627181595754, "code_postal": "94073", "stop_lon": 2.3698871247463935, "coord": [48.74627181595754, 2.3698871247463935], "stop_id": 4377778, "stop_desc": "AVENUE DU DOCTEUR MARIE - 94073", "stop_name": "THIAIS PONT DE RUNGIS"}, "geometry": {"type": "Point", "coordinates": [2.3698871247463935, 48.74627181595754]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "83437da68ab7b83b3b6837e80fcdf607ca23f3a2", "fields": {"departement": "94", "stop_lat": 48.74999699907987, "code_postal": "94065", "stop_lon": 2.347190548800534, "coord": [48.74999699907987, 2.347190548800534], "stop_id": 4377780, "stop_desc": "24 VOIE AU LARD - 94065", "stop_name": "LUCIEN GRELINGER"}, "geometry": {"type": "Point", "coordinates": [2.347190548800534, 48.74999699907987]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3b1f059747eb509b16533ea42cf7822f70deee2a", "fields": {"departement": "92", "stop_lat": 48.75344458886405, "code_postal": "92002", "stop_lon": 2.305324564769305, "coord": [48.75344458886405, 2.305324564769305], "stop_id": 4377781, "stop_desc": "5-7 RUE JEAN MOULIN - 92002", "stop_name": "MOUNIE-DIVISION LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.305324564769305, 48.75344458886405]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7e396d9f30527e061e784ee350b3ecb7cbf449a1", "fields": {"departement": "94", "stop_lat": 48.75969417922064, "code_postal": "94034", "stop_lon": 2.3186163428002002, "coord": [48.75969417922064, 2.3186163428002002], "stop_id": 4377975, "stop_desc": "3 BD PASTEUR - 94034", "stop_name": "PASTEUR"}, "geometry": {"type": "Point", "coordinates": [2.3186163428002002, 48.75969417922064]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a6f995b44d52089c8b1d1676444a389183b8f836", "fields": {"departement": "94", "stop_lat": 48.75687180698333, "code_postal": "94034", "stop_lon": 2.3180056265785707, "coord": [48.75687180698333, 2.3180056265785707], "stop_id": 4377976, "stop_desc": "2 R DU DOCTEUR EMILE ROUX - 94034", "stop_name": "FOYER EMILE ROUX"}, "geometry": {"type": "Point", "coordinates": [2.3180056265785707, 48.75687180698333]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5d67035fe72072e4aff3f91fcdff9e5099c6380e", "fields": {"departement": "94", "stop_lat": 48.756889356962006, "code_postal": "94034", "stop_lon": 2.3155315180484903, "coord": [48.756889356962006, 2.3155315180484903], "stop_id": 4377979, "stop_desc": "FACE 38 BD PASTEUR - 94034", "stop_name": "LA PEUPLERAIE"}, "geometry": {"type": "Point", "coordinates": [2.3155315180484903, 48.756889356962006]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e50c9d329caf57096519e1525be37e398e1f7196", "fields": {"departement": "94", "stop_lat": 48.75198192285552, "code_postal": "94034", "stop_lon": 2.3161044616529747, "coord": [48.75198192285552, 2.3161044616529747], "stop_id": 4377983, "stop_desc": "FACE 15 AVENUE DU PARC DES SPORTS - 94034", "stop_name": "PARC DES SPORTS"}, "geometry": {"type": "Point", "coordinates": [2.3161044616529747, 48.75198192285552]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "87d5040d561316021cf1982c4a27fdcb3c7871a7", "fields": {"departement": "94", "stop_lat": 48.75604539891785, "code_postal": "94034", "stop_lon": 2.3214043692119475, "coord": [48.75604539891785, 2.3214043692119475], "stop_id": 4377989, "stop_desc": "17-19 R ROGER SALENGRO - 94034", "stop_name": "CENTRE ADMINISTRATIF"}, "geometry": {"type": "Point", "coordinates": [2.3214043692119475, 48.75604539891785]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "74a78a504ebc85f4c0d86010472485dea542bbec", "fields": {"departement": "94", "stop_lat": 48.75386172672599, "code_postal": "94034", "stop_lon": 2.325251903610218, "coord": [48.75386172672599, 2.325251903610218], "stop_id": 4377991, "stop_desc": "14 RUE ALBERT ROPER - 94034", "stop_name": "ALBERT ROPER"}, "geometry": {"type": "Point", "coordinates": [2.325251903610218, 48.75386172672599]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2bfc648c23a947e00f061b01d76502e53cf770b2", "fields": {"departement": "94", "stop_lat": 48.75578541711485, "code_postal": "94034", "stop_lon": 2.327725508837244, "coord": [48.75578541711485, 2.327725508837244], "stop_id": 4377993, "stop_desc": "AV EDOUARD HERRIOT - 94034", "stop_name": "CLOS LA GARENNE"}, "geometry": {"type": "Point", "coordinates": [2.327725508837244, 48.75578541711485]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a51354d5c7aa16c2277dbe11c344f0a280ad349e", "fields": {"departement": "94", "stop_lat": 48.76106133960879, "code_postal": "94034", "stop_lon": 2.326405820962682, "coord": [48.76106133960879, 2.326405820962682], "stop_id": 4377996, "stop_desc": "FACE 39 RUE EMILE ZOLA - 94034", "stop_name": "CHARCOT - ZOLA"}, "geometry": {"type": "Point", "coordinates": [2.326405820962682, 48.76106133960879]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5a41f93f8da348afe7f89d6071a79fc6badabfcd", "fields": {"departement": "94", "stop_lat": 48.76456680792492, "code_postal": "94034", "stop_lon": 2.3276559189748434, "coord": [48.76456680792492, 2.3276559189748434], "stop_id": 4377997, "stop_desc": "FACE 43 R EMILE ZOLA - 94034", "stop_name": "POSTE ANNEXE"}, "geometry": {"type": "Point", "coordinates": [2.3276559189748434, 48.76456680792492]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "45d394f4cc378f2058b851c762da9c8dfb9c0fef", "fields": {"departement": "94", "stop_lat": 48.76603144806215, "code_postal": "94034", "stop_lon": 2.3234135845464023, "coord": [48.76603144806215, 2.3234135845464023], "stop_id": 4377999, "stop_desc": "1 R JEAN MOULIN - 94034", "stop_name": "AVARA - GYMNASE VALLEE AUX RENARDS"}, "geometry": {"type": "Point", "coordinates": [2.3234135845464023, 48.76603144806215]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0148669d77ff51b4bf5fbbdbecd58291ca092442", "fields": {"departement": "94", "stop_lat": 48.76838640052632, "code_postal": "94038", "stop_lon": 2.324092806061927, "coord": [48.76838640052632, 2.324092806061927], "stop_id": 4378002, "stop_desc": "2 R LEON BLUM - 94038", "stop_name": "A.R.E.P.A."}, "geometry": {"type": "Point", "coordinates": [2.324092806061927, 48.76838640052632]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "66d8ba025b70b68e6a9840d45abeae2bb66d7ce4", "fields": {"departement": "94", "stop_lat": 48.77068778511185, "code_postal": "94038", "stop_lon": 2.3290009485512337, "coord": [48.77068778511185, 2.3290009485512337], "stop_id": 4378004, "stop_desc": "RUE DE CHALAIS - 94038", "stop_name": "BLONDEAUX - ECOLES"}, "geometry": {"type": "Point", "coordinates": [2.3290009485512337, 48.77068778511185]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "945a4441d7cecf26322ad44565da62b0d768b708", "fields": {"departement": "94", "stop_lat": 48.77927130313195, "code_postal": "94038", "stop_lon": 2.3284419923184068, "coord": [48.77927130313195, 2.3284419923184068], "stop_id": 4378009, "stop_desc": "59 RUE DE LA COSARDE - 94038", "stop_name": "PETIT ROBINSON"}, "geometry": {"type": "Point", "coordinates": [2.3284419923184068, 48.77927130313195]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a9651dd53fb4b486fd3883c8ae723a9b9a04b9f4", "fields": {"departement": "94", "stop_lat": 48.77720420688661, "code_postal": "94038", "stop_lon": 2.330645426735226, "coord": [48.77720420688661, 2.330645426735226], "stop_id": 4378011, "stop_desc": "FACE 16-18 AVENUE JULES GRAVEREAUX - 94038", "stop_name": "COMMISSARIAT DE L'HAY-LES-ROSES"}, "geometry": {"type": "Point", "coordinates": [2.330645426735226, 48.77720420688661]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "472001fd85deacee0c07ce29f8bd5bd3aa4f6ae1", "fields": {"departement": "94", "stop_lat": 48.780529879484185, "code_postal": "94038", "stop_lon": 2.3412667237024913, "coord": [48.780529879484185, 2.3412667237024913], "stop_id": 4378018, "stop_desc": "32 AVENUE DU GENERAL DE GAULLE - 94038", "stop_name": "DE GAULLE - GOUNOD - TABANOU"}, "geometry": {"type": "Point", "coordinates": [2.3412667237024913, 48.780529879484185]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fc54a244e6819f156605235aa2471bf9fbed082d", "fields": {"departement": "94", "stop_lat": 48.78017936047285, "code_postal": "94038", "stop_lon": 2.340885894880827, "coord": [48.78017936047285, 2.340885894880827], "stop_id": 4378019, "stop_desc": "58 BOULEVARD PAUL VAILLANT COUTURIER - 94038", "stop_name": "DE GAULLE - GOUNOD - TABANOU"}, "geometry": {"type": "Point", "coordinates": [2.340885894880827, 48.78017936047285]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "976cc5ef73a534dc654089a2da22056ba3949700", "fields": {"departement": "94", "stop_lat": 48.78478099183424, "code_postal": "94038", "stop_lon": 2.3451570145813214, "coord": [48.78478099183424, 2.3451570145813214], "stop_id": 4378022, "stop_desc": "0 NR - 94038", "stop_name": "CENTRE COMMERCIAL DE L'HAY-LES-ROSES"}, "geometry": {"type": "Point", "coordinates": [2.3451570145813214, 48.78478099183424]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bdb7da43787eee87a7a774f93f280e11997cae34", "fields": {"departement": "94", "stop_lat": 48.77582008512248, "code_postal": "94038", "stop_lon": 2.3432654010570015, "coord": [48.77582008512248, 2.3432654010570015], "stop_id": 4378028, "stop_desc": "FACE 27 R DE CHEVILLY - 94038", "stop_name": "STADE L'HAYETTE"}, "geometry": {"type": "Point", "coordinates": [2.3432654010570015, 48.77582008512248]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "02fc72b9f6a331d30d3f5e3c6d6fea109de8897e", "fields": {"departement": "94", "stop_lat": 48.7773468779113, "code_postal": "94038", "stop_lon": 2.354974592688749, "coord": [48.7773468779113, 2.354974592688749], "stop_id": 4378034, "stop_desc": "FACE 141 RUE DE BICETRE - 94038", "stop_name": "LES DAHLIAS"}, "geometry": {"type": "Point", "coordinates": [2.354974592688749, 48.7773468779113]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e60d704e7942a07fc52eaf02a741b0df6a97e8bd", "fields": {"departement": "94", "stop_lat": 48.774695416585395, "code_postal": "94021", "stop_lon": 2.3549600895228378, "coord": [48.774695416585395, 2.3549600895228378], "stop_id": 4378036, "stop_desc": "FACE 25 RUE PAUL HOCHART - 94021", "stop_name": "RUE DE LALLIER"}, "geometry": {"type": "Point", "coordinates": [2.3549600895228378, 48.774695416585395]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6497af5740c0fa58e712f320eb15700057fc4a27", "fields": {"departement": "94", "stop_lat": 48.77780387846427, "code_postal": "94021", "stop_lon": 2.362631233568377, "coord": [48.77780387846427, 2.362631233568377], "stop_id": 4378040, "stop_desc": "FACE 146 RUE PAUL HOCHART - 94021", "stop_name": "RUE PAUL HOCHART"}, "geometry": {"type": "Point", "coordinates": [2.362631233568377, 48.77780387846427]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b291f722098739bfc1f151983498d80b9531d7ef", "fields": {"departement": "94", "stop_lat": 48.78757278336037, "code_postal": "94076", "stop_lon": 2.3670022487935434, "coord": [48.78757278336037, 2.3670022487935434], "stop_id": 4378048, "stop_desc": "7 AVENUE DE STALINGRAD - 94076", "stop_name": "VILLEJUIF - LOUIS ARAGON"}, "geometry": {"type": "Point", "coordinates": [2.3670022487935434, 48.78757278336037]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3210bd9da4e62ddc9a3a31677284aabd25c7222d", "fields": {"departement": "94", "stop_lat": 48.793138647947984, "code_postal": "94076", "stop_lon": 2.3553200683329125, "coord": [48.793138647947984, 2.3553200683329125], "stop_id": 4378052, "stop_desc": "R EDOUARD VAILLANT - 94076", "stop_name": "EDOUARD VAILLANT - CIMETIERE"}, "geometry": {"type": "Point", "coordinates": [2.3553200683329125, 48.793138647947984]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2a1c6902a7733f561862e31ffd029d35375384ff", "fields": {"departement": "94", "stop_lat": 48.79475572372795, "code_postal": "94076", "stop_lon": 2.3596874763837192, "coord": [48.79475572372795, 2.3596874763837192], "stop_id": 4378055, "stop_desc": "FACE 2 RUE GUY MOQUET - 94076", "stop_name": "GROUPE HOSPITALIER PAUL BROUSSE"}, "geometry": {"type": "Point", "coordinates": [2.3596874763837192, 48.79475572372795]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "71c5e36b3653428259f084f79e5e1ac6dc9dd6d6", "fields": {"departement": "94", "stop_lat": 48.79281287672086, "code_postal": "94076", "stop_lon": 2.3664339091207403, "coord": [48.79281287672086, 2.3664339091207403], "stop_id": 4378067, "stop_desc": "FACE 75 RUE JEAN JAURES - 94076", "stop_name": "GUYNEMER - PLACE DES FUSILLES."}, "geometry": {"type": "Point", "coordinates": [2.3664339091207403, 48.79281287672086]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "33ef00f5a24ef63d4dadcdbc6e2129334accddf3", "fields": {"departement": "94", "stop_lat": 48.788192725901176, "code_postal": "94076", "stop_lon": 2.3678867443942506, "coord": [48.788192725901176, 2.3678867443942506], "stop_id": 4378069, "stop_desc": "BOULEVARD MAXIME GORKI - 94076", "stop_name": "VILLEJUIF - LOUIS ARAGON."}, "geometry": {"type": "Point", "coordinates": [2.3678867443942506, 48.788192725901176]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b10c2f6592db542acd92018a118f19201d402b06", "fields": {"departement": "94", "stop_lat": 48.78411489536589, "code_postal": "94076", "stop_lon": 2.35450086375768, "coord": [48.78411489536589, 2.35450086375768], "stop_id": 4378074, "stop_desc": "68 RUE DE CHEVILLY - 94076", "stop_name": "LES LOZAITS"}, "geometry": {"type": "Point", "coordinates": [2.35450086375768, 48.78411489536589]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "205718427b3d0b33b85bcbb4a875eeec576bafdb", "fields": {"departement": "94", "stop_lat": 48.78451926698203, "code_postal": "94076", "stop_lon": 2.3550858495840825, "coord": [48.78451926698203, 2.3550858495840825], "stop_id": 4378075, "stop_desc": "71 AVENUE KARL MARX - 94076", "stop_name": "LES LOZAITS"}, "geometry": {"type": "Point", "coordinates": [2.3550858495840825, 48.78451926698203]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "033cf809c41eca5e1ea8ec0fc49674dc942da4ef", "fields": {"departement": "94", "stop_lat": 48.76396322693865, "code_postal": "94021", "stop_lon": 2.3577435746777065, "coord": [48.76396322693865, 2.3577435746777065], "stop_id": 4378080, "stop_desc": "AVENUE DE LA CITE - 94021", "stop_name": "MARCHE INTERNATIONAL DE RUNGIS"}, "geometry": {"type": "Point", "coordinates": [2.3577435746777065, 48.76396322693865]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "530b3ecf45ba5584563ce1bab78b442672468d4c", "fields": {"departement": "94", "stop_lat": 48.76396322693865, "code_postal": "94021", "stop_lon": 2.3577435746777065, "coord": [48.76396322693865, 2.3577435746777065], "stop_id": 4378081, "stop_desc": "AVENUE DE LA CITE - 94021", "stop_name": "MARCHE INTERNATIONAL DE RUNGIS"}, "geometry": {"type": "Point", "coordinates": [2.3577435746777065, 48.76396322693865]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2029d43db42ad96876e55efff6387d6d1f8884ba", "fields": {"departement": "94", "stop_lat": 48.770247117178215, "code_postal": "94021", "stop_lon": 2.3485813636454473, "coord": [48.770247117178215, 2.3485813636454473], "stop_id": 4378082, "stop_desc": "BOULEVARD CIRCULAIRE NORD - 94021", "stop_name": "MAIRIE DE CHEVILLY-LARUE"}, "geometry": {"type": "Point", "coordinates": [2.3485813636454473, 48.770247117178215]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4a30d1a8b58c34434ec000b2d55739141470bc44", "fields": {"departement": "75", "stop_lat": 48.82592735408744, "code_postal": "75114", "stop_lon": 2.3410932785585543, "coord": [48.82592735408744, 2.3410932785585543], "stop_id": 4378107, "stop_desc": "6-8 AVENUE REILLE - 75114", "stop_name": "GLACIERE - TOLBIAC"}, "geometry": {"type": "Point", "coordinates": [2.3410932785585543, 48.82592735408744]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9d929a59ffce4e99730fb89577c27b417952ce28", "fields": {"departement": "94", "stop_lat": 48.75535400244807, "code_postal": "94065", "stop_lon": 2.3465662692692884, "coord": [48.75535400244807, 2.3465662692692884], "stop_id": 4378113, "stop_desc": "RUE CHARLES LINDBERG - 94065", "stop_name": "LES CLOSEAUX"}, "geometry": {"type": "Point", "coordinates": [2.3465662692692884, 48.75535400244807]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "42a87a998e7faaf680f14137dfa7e6e6f6e8c837", "fields": {"departement": "94", "stop_lat": 48.75375397549794, "code_postal": "94065", "stop_lon": 2.3481427875365295, "coord": [48.75375397549794, 2.3481427875365295], "stop_id": 4378114, "stop_desc": "AVENUE CHARLES LINDBERGH - 94065", "stop_name": "CARREFOUR DE L'EUROPE"}, "geometry": {"type": "Point", "coordinates": [2.3481427875365295, 48.75375397549794]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ef5f56d906275e483b2b2728eae547fa685e9ac4", "fields": {"departement": "94", "stop_lat": 48.75252173809831, "code_postal": "94065", "stop_lon": 2.3552107981240065, "coord": [48.75252173809831, 2.3552107981240065], "stop_id": 4378120, "stop_desc": "PL DU RELAIS - 94065", "stop_name": "PORTE DE RUNGIS"}, "geometry": {"type": "Point", "coordinates": [2.3552107981240065, 48.75252173809831]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "00063aa8d127639f27dc57c6eed049fedf480131", "fields": {"departement": "94", "stop_lat": 48.75454432268653, "code_postal": "94065", "stop_lon": 2.353498734478365, "coord": [48.75454432268653, 2.353498734478365], "stop_id": 4378121, "stop_desc": "BOULEVARD CIRCULAIRE SUD - 94065", "stop_name": "CONCARNEAU"}, "geometry": {"type": "Point", "coordinates": [2.353498734478365, 48.75454432268653]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b5359e04cc0cbb24f4b892e333f3815bef2d2144", "fields": {"departement": "92", "stop_lat": 48.77066560411142, "code_postal": "92019", "stop_lon": 2.280634385989185, "coord": [48.77066560411142, 2.280634385989185], "stop_id": 5976742, "stop_desc": "35 RUE JEAN LONGUET - 92019", "stop_name": "PRES HAUTS"}, "geometry": {"type": "Point", "coordinates": [2.280634385989185, 48.77066560411142]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b6bad29eb2f3243c5ab75c3dbc1b69ced151f02a", "fields": {"departement": "92", "stop_lat": 48.79537992622254, "code_postal": "92032", "stop_lon": 2.2754515062396203, "coord": [48.79537992622254, 2.2754515062396203], "stop_id": 5976755, "stop_desc": "3-5 AVENUE DE LA DIVISION LECLERC - 92032", "stop_name": "CENTRE BUS"}, "geometry": {"type": "Point", "coordinates": [2.2754515062396203, 48.79537992622254]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4a3f73f6f8644ff3f644f9aa5f80d3fa3eee795d", "fields": {"departement": "93", "stop_lat": 48.93203519789278, "code_postal": "93027", "stop_lon": 2.3947879554819393, "coord": [48.93203519789278, 2.3947879554819393], "stop_id": 5991325, "stop_desc": "84 AVENUE HENRI BARBUSSE - 93027", "stop_name": "LE CROULT"}, "geometry": {"type": "Point", "coordinates": [2.3947879554819393, 48.93203519789278]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a9888c5a36594dcce7a0d548b7917c18c24b9a67", "fields": {"departement": "93", "stop_lat": 48.93196086218034, "code_postal": "93027", "stop_lon": 2.399643686024882, "coord": [48.93196086218034, 2.399643686024882], "stop_id": 5991327, "stop_desc": "2 AVENUE JEAN MERMOZ - 93027", "stop_name": "JEAN MERMOZ - HENRI BARBUSSE"}, "geometry": {"type": "Point", "coordinates": [2.399643686024882, 48.93196086218034]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "04a075ddd615c386a305052a548b7ac93d673a7e", "fields": {"departement": "93", "stop_lat": 48.932271672548595, "code_postal": "93027", "stop_lon": 2.406409504054448, "coord": [48.932271672548595, 2.406409504054448], "stop_id": 5991329, "stop_desc": "FACE 65 AVENUE JEAN MERMOZ - 93027", "stop_name": "PASSAGE A NIVEAU - JEAN MERMOZ"}, "geometry": {"type": "Point", "coordinates": [2.406409504054448, 48.932271672548595]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c3345fe9ea6f4db78f3b250f9a9eadcdaf85b4db", "fields": {"departement": "93", "stop_lat": 48.92482281223156, "code_postal": "93029", "stop_lon": 2.4416948293908285, "coord": [48.92482281223156, 2.4416948293908285], "stop_id": 5991342, "stop_desc": "89 RUE SADI CARNOT - 93029", "stop_name": "JEAN-PIERRE TIMBAUD"}, "geometry": {"type": "Point", "coordinates": [2.4416948293908285, 48.92482281223156]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f75fdf588f0b5ed94e17fbadab8d830c6e59b1a3", "fields": {"departement": "93", "stop_lat": 48.91431599338643, "code_postal": "93029", "stop_lon": 2.46152662782883, "coord": [48.91431599338643, 2.46152662782883], "stop_id": 5991353, "stop_desc": "255 AVENUE JEAN JAURES - 93029", "stop_name": "AVENUE DU BOIS D'AMOUR"}, "geometry": {"type": "Point", "coordinates": [2.46152662782883, 48.91431599338643]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "773394b8eccf7029297c9d505bc401e500452e82", "fields": {"departement": "93", "stop_lat": 48.90925885871582, "code_postal": "93008", "stop_lon": 2.46754070853601, "coord": [48.90925885871582, 2.46754070853601], "stop_id": 5991356, "stop_desc": "FACE 56 AVENUE EDOUARD VAILLANT - 93008", "stop_name": "AVENUE MARCELLE"}, "geometry": {"type": "Point", "coordinates": [2.46754070853601, 48.90925885871582]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9a5b4882550223d8db2b2729cafdb31e87bff7d4", "fields": {"departement": "93", "stop_lat": 48.90949244703692, "code_postal": "93008", "stop_lon": 2.4676094660723726, "coord": [48.90949244703692, 2.4676094660723726], "stop_id": 5991357, "stop_desc": "60 AVENUE EDOUARD VAILLANT - 93008", "stop_name": "AVENUE MARCELLE"}, "geometry": {"type": "Point", "coordinates": [2.4676094660723726, 48.90949244703692]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "387871cd8b3f1d7bf784a52af23e8986469a1bb4", "fields": {"departement": "93", "stop_lat": 48.906426065874264, "code_postal": "93008", "stop_lon": 2.469237737369291, "coord": [48.906426065874264, 2.469237737369291], "stop_id": 5991358, "stop_desc": "15 AVENUE EDOUARD VAILLANT - 93008", "stop_name": "PONT DE BONDY - ANATOLE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.469237737369291, 48.906426065874264]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "76e5bf6306961fb82de3c6276d5aab5dc129abaa", "fields": {"departement": "93", "stop_lat": 48.89767654395568, "code_postal": "93053", "stop_lon": 2.4656441533210676, "coord": [48.89767654395568, 2.4656441533210676], "stop_id": 5991362, "stop_desc": "AVENUE D'ALSACE-LORRAINE - 93053", "stop_name": "ALSACE - LORRAINE"}, "geometry": {"type": "Point", "coordinates": [2.4656441533210676, 48.89767654395568]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "046ac59a9f39337885827558f4dc46f4e3d77d29", "fields": {"departement": "93", "stop_lat": 48.89755957921501, "code_postal": "93053", "stop_lon": 2.465766541490772, "coord": [48.89755957921501, 2.465766541490772], "stop_id": 5991363, "stop_desc": "FACE 39 AVENUE D'ALSACE-LORRAINE - 93053", "stop_name": "ALSACE - LORRAINE"}, "geometry": {"type": "Point", "coordinates": [2.465766541490772, 48.89755957921501]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3cbc0ccc3de35964d01f7ebc85946470749b33b3", "fields": {"departement": "93", "stop_lat": 48.872786016638045, "code_postal": "93064", "stop_lon": 2.485337857755734, "coord": [48.872786016638045, 2.485337857755734], "stop_id": 5991378, "stop_desc": "33 RUE PAUL CAVARE - 93064", "stop_name": "COPERNIC"}, "geometry": {"type": "Point", "coordinates": [2.485337857755734, 48.872786016638045]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "13f5d425a77a85c24aa936ceb8610bb463202ac8", "fields": {"departement": "93", "stop_lat": 48.8709253732804, "code_postal": "93064", "stop_lon": 2.4855505258562105, "coord": [48.8709253732804, 2.4855505258562105], "stop_id": 5991379, "stop_desc": "PLACE DES MARTYRS DE LA RESISTANCE - 93064", "stop_name": "ROSNY-SOUS-BOIS RER"}, "geometry": {"type": "Point", "coordinates": [2.4855505258562105, 48.8709253732804]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2e65ae0968c564162ec287c676e26d56ecdeda82", "fields": {"departement": "93", "stop_lat": 48.87492666062869, "code_postal": "93064", "stop_lon": 2.483995103062401, "coord": [48.87492666062869, 2.483995103062401], "stop_id": 5991381, "stop_desc": "16 BIS RUE RICHARD GARDEBLED - 93064", "stop_name": "GARDEBLED"}, "geometry": {"type": "Point", "coordinates": [2.483995103062401, 48.87492666062869]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6c912f8531ff2cda13d69d1cfa0c0b40992a17cb", "fields": {"departement": "93", "stop_lat": 48.90335085083877, "code_postal": "93010", "stop_lon": 2.4707022043356806, "coord": [48.90335085083877, 2.4707022043356806], "stop_id": 5991385, "stop_desc": "FACE 243 AVENUE DE ROSNY - 93010", "stop_name": "PONT DE BONDY - AVENUE DE ROSNY"}, "geometry": {"type": "Point", "coordinates": [2.4707022043356806, 48.90335085083877]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "772ae7913db75ad0e8190e970e24584bc145f8f6", "fields": {"departement": "93", "stop_lat": 48.931672961444356, "code_postal": "93013", "stop_lon": 2.428123348689085, "coord": [48.931672961444356, 2.428123348689085], "stop_id": 5991386, "stop_desc": "FACE 60 AVENUE JEAN JAURES - 93013", "stop_name": "LE BOURGET RER"}, "geometry": {"type": "Point", "coordinates": [2.428123348689085, 48.931672961444356]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9b12a78961f13714169af02b2f822657c5f8cf69", "fields": {"departement": "93", "stop_lat": 48.932807775726964, "code_postal": "93027", "stop_lon": 2.4115798365818755, "coord": [48.932807775726964, 2.4115798365818755], "stop_id": 5991387, "stop_desc": "129 AVENUE JEAN MERMOZ - 93027", "stop_name": "VERDUN"}, "geometry": {"type": "Point", "coordinates": [2.4115798365818755, 48.932807775726964]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1380078a705e5423672bd9c6f3a46434652b44a1", "fields": {"departement": "92", "stop_lat": 48.73972316332122, "code_postal": "92002", "stop_lon": 2.2892566374363725, "coord": [48.73972316332122, 2.2892566374363725], "stop_id": 6041756, "stop_desc": "RUE DE MASSY - 92002", "stop_name": "LES BACONNETS-RER"}, "geometry": {"type": "Point", "coordinates": [2.2892566374363725, 48.73972316332122]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "757f63a2abade18bc93c9143fab97c4d9d2ae580", "fields": {"departement": "91", "stop_lat": 48.73585024059694, "code_postal": "91377", "stop_lon": 2.291869198601622, "coord": [48.73585024059694, 2.291869198601622], "stop_id": 6041759, "stop_desc": "FACE 1 AVENUE DE BOURGOGNE - 91377", "stop_name": "PRESIDENT JOHN FITZGERALD KENNEDY"}, "geometry": {"type": "Point", "coordinates": [2.291869198601622, 48.73585024059694]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2bb951c050eaac26d612f3b4036213aeed43de88", "fields": {"departement": "91", "stop_lat": 48.73294496958157, "code_postal": "91377", "stop_lon": 2.28678993142112, "coord": [48.73294496958157, 2.28678993142112], "stop_id": 6041765, "stop_desc": "67 RUE DES CANADIENS - 91377", "stop_name": "AVENUE SAINT-MARC"}, "geometry": {"type": "Point", "coordinates": [2.28678993142112, 48.73294496958157]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "22839a63009923ceace67899662ac1922c4a2794", "fields": {"departement": "91", "stop_lat": 48.728042941856216, "code_postal": "91377", "stop_lon": 2.2793629122347263, "coord": [48.728042941856216, 2.2793629122347263], "stop_id": 6041773, "stop_desc": "54 RUE DE LONGJUMEAU - 91377", "stop_name": "JEAN MERMOZ"}, "geometry": {"type": "Point", "coordinates": [2.2793629122347263, 48.728042941856216]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "50eab260a55b7d4b441cacf19257445713d26b9f", "fields": {"departement": "91", "stop_lat": 48.72893970010165, "code_postal": "91377", "stop_lon": 2.259919396831074, "coord": [48.72893970010165, 2.259919396831074], "stop_id": 6041791, "stop_desc": "FACE 49 AVENUE RAYMOND ARON - 91377", "stop_name": "RAYMOND ARON"}, "geometry": {"type": "Point", "coordinates": [2.259919396831074, 48.72893970010165]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "987969b91615c3b53163d9a214ee5be9768b78ea", "fields": {"departement": "91", "stop_lat": 48.731281449932865, "code_postal": "91377", "stop_lon": 2.2537065276323047, "coord": [48.731281449932865, 2.2537065276323047], "stop_id": 6041800, "stop_desc": "RUE DE VERSAILLES - 91377", "stop_name": "LYCEE DE VILGENIS."}, "geometry": {"type": "Point", "coordinates": [2.2537065276323047, 48.731281449932865]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a92e8e54ace9c0c02ddb80dea598cd77126e11ec", "fields": {"departement": "91", "stop_lat": 48.729369206811825, "code_postal": "91377", "stop_lon": 2.2446472176608467, "coord": [48.729369206811825, 2.2446472176608467], "stop_id": 6041805, "stop_desc": "18 ROUTE DE PALAISEAU - 91377", "stop_name": "CENTRE COMMERCIAL DE MASSY"}, "geometry": {"type": "Point", "coordinates": [2.2446472176608467, 48.729369206811825]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "99ac2ec37742ff4a1b68e9692f0e330b207d6d45", "fields": {"departement": "91", "stop_lat": 48.726431236888395, "code_postal": "91377", "stop_lon": 2.2462284273276873, "coord": [48.726431236888395, 2.2462284273276873], "stop_id": 6041808, "stop_desc": "FACE 31 ROUTE DE PALAISEAU - 91377", "stop_name": "CLOS BERTHELOT"}, "geometry": {"type": "Point", "coordinates": [2.2462284273276873, 48.726431236888395]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d60a14c46433e1347a1b433e39e27827a094f9dd", "fields": {"departement": "91", "stop_lat": 48.72724461239241, "code_postal": "91377", "stop_lon": 2.2404528573543265, "coord": [48.72724461239241, 2.2404528573543265], "stop_id": 6041809, "stop_desc": "FACE 33 RUE DE L'EFFORT MUTUEL - 91377", "stop_name": "PARC DE L'EFFORT MUTUEL"}, "geometry": {"type": "Point", "coordinates": [2.2404528573543265, 48.72724461239241]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "316657fae5172c971c3caea80190b0141022abf6", "fields": {"departement": "91", "stop_lat": 48.73577705850233, "code_postal": "91635", "stop_lon": 2.2140481824325997, "coord": [48.73577705850233, 2.2140481824325997], "stop_id": 6041823, "stop_desc": "GRANDE RUE DU 8 MAI 1945 - 91635", "stop_name": "LES CASTORS"}, "geometry": {"type": "Point", "coordinates": [2.2140481824325997, 48.73577705850233]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "809123ab0deec836a63006f752c0772411f9eee2", "fields": {"departement": "91", "stop_lat": 48.73310330805221, "code_postal": "91635", "stop_lon": 2.201907055535617, "coord": [48.73310330805221, 2.201907055535617], "stop_id": 6041827, "stop_desc": "15 ROUTE DE SACLAY - 91635", "stop_name": "GRANDS CHAMPS - FAVREUSE"}, "geometry": {"type": "Point", "coordinates": [2.201907055535617, 48.73310330805221]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9e9d778029ad1cb68bf120c9c92f99f2a8ddffe1", "fields": {"departement": "91", "stop_lat": 48.732539072890745, "code_postal": "91635", "stop_lon": 2.1959299710370823, "coord": [48.732539072890745, 2.1959299710370823], "stop_id": 6041829, "stop_desc": "ROUTE DE SACLAY - 91635", "stop_name": "ABBAYE CIMETIERE"}, "geometry": {"type": "Point", "coordinates": [2.1959299710370823, 48.732539072890745]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d0e4f63ea0586831c6cb10031783d8f7cb3719d2", "fields": {"departement": "91", "stop_lat": 48.73051478983888, "code_postal": "91312", "stop_lon": 2.238530990857609, "coord": [48.73051478983888, 2.238530990857609], "stop_id": 6041833, "stop_desc": "10 RUE LAVOISIER - 91312", "stop_name": "IGNY ENTREPRISES"}, "geometry": {"type": "Point", "coordinates": [2.238530990857609, 48.73051478983888]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4419a424dd0e815df769654d524862255ed1cff7", "fields": {"departement": "91", "stop_lat": 48.72856264599014, "code_postal": "91312", "stop_lon": 2.2365374710548016, "coord": [48.72856264599014, 2.2365374710548016], "stop_id": 6041835, "stop_desc": "RUE DE LA VIEILLE VIGNE - 91312", "stop_name": "LA VIEILLE VIGNE"}, "geometry": {"type": "Point", "coordinates": [2.2365374710548016, 48.72856264599014]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9bb5044e15139435e507e7aa406bacfd9d46f7bc", "fields": {"departement": "91", "stop_lat": 48.722757867416284, "code_postal": "91689", "stop_lon": 2.302680735840806, "coord": [48.722757867416284, 2.302680735840806], "stop_id": 6041840, "stop_desc": "RUE DU PEROU - 91689", "stop_name": "LES FRERES VOISIN"}, "geometry": {"type": "Point", "coordinates": [2.302680735840806, 48.722757867416284]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1d6b50a7e5c1385fae56330aea6c5fe9ca4b7883", "fields": {"departement": "91", "stop_lat": 48.72150889947361, "code_postal": "91689", "stop_lon": 2.3041487158085876, "coord": [48.72150889947361, 2.3041487158085876], "stop_id": 6041843, "stop_desc": "AVENUE LE CONCORDE - 91689", "stop_name": "CONCORDE"}, "geometry": {"type": "Point", "coordinates": [2.3041487158085876, 48.72150889947361]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a915ed4b906d700b89b09397262675b64914cc68", "fields": {"departement": "91", "stop_lat": 48.70569154817685, "code_postal": "91161", "stop_lon": 2.31389606291992, "coord": [48.70569154817685, 2.31389606291992], "stop_id": 6041853, "stop_desc": "AVENUE MAZARIN - 91161", "stop_name": "COLLEGE DE CHILLY-MAZARIN"}, "geometry": {"type": "Point", "coordinates": [2.31389606291992, 48.70569154817685]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "529886a90f960a7973682f50e4431a2cfc947d03", "fields": {"departement": "91", "stop_lat": 48.70424493000524, "code_postal": "91161", "stop_lon": 2.316775717016181, "coord": [48.70424493000524, 2.316775717016181], "stop_id": 6041855, "stop_desc": "37 AVENUE MAZARIN - 91161", "stop_name": "BEAUREGARD"}, "geometry": {"type": "Point", "coordinates": [2.316775717016181, 48.70424493000524]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b537171943bcb92b17c9e6a947e565653d6cadaa", "fields": {"departement": "91", "stop_lat": 48.70173848805094, "code_postal": "91432", "stop_lon": 2.3273823367827595, "coord": [48.70173848805094, 2.3273823367827595], "stop_id": 6041862, "stop_desc": "54 AVENUE GABRIEL PERI - 91432", "stop_name": "PIERRE LOTI"}, "geometry": {"type": "Point", "coordinates": [2.3273823367827595, 48.70173848805094]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "980cdfc6e92fea8c8e44c910425e162844022ead", "fields": {"departement": "91", "stop_lat": 48.70396784643142, "code_postal": "91432", "stop_lon": 2.3302744832297666, "coord": [48.70396784643142, 2.3302744832297666], "stop_id": 6041863, "stop_desc": "1 AVENUE GABRIEL PERI - 91432", "stop_name": "PIERRE BROSSOLETTE"}, "geometry": {"type": "Point", "coordinates": [2.3302744832297666, 48.70396784643142]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4fb52c0af5c870e09a6ec535ed3394886569ae9f", "fields": {"departement": "91", "stop_lat": 48.705559004419435, "code_postal": "91432", "stop_lon": 2.335502782802847, "coord": [48.705559004419435, 2.335502782802847], "stop_id": 6041868, "stop_desc": "RUE DE SAVIGNY - 91432", "stop_name": "PLACE LUCIEN BOILLEAU"}, "geometry": {"type": "Point", "coordinates": [2.335502782802847, 48.705559004419435]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b3c3e38489cf62c45f15f236eec784d454dee36a", "fields": {"departement": "91", "stop_lat": 48.722883661190885, "code_postal": "91377", "stop_lon": 2.3025312163505536, "coord": [48.722883661190885, 2.3025312163505536], "stop_id": 6041870, "stop_desc": "RUE DU PEROU - 91377", "stop_name": "LES FRERES VOISIN"}, "geometry": {"type": "Point", "coordinates": [2.3025312163505536, 48.722883661190885]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "399fe8d4bcbaad6e60981ca31f31a8679534d0d2", "fields": {"departement": "91", "stop_lat": 48.69613835362166, "code_postal": "91345", "stop_lon": 2.289337575962143, "coord": [48.69613835362166, 2.289337575962143], "stop_id": 6041873, "stop_desc": "RUE DU CANAL - 91345", "stop_name": "CANAL DE L'YVETTE"}, "geometry": {"type": "Point", "coordinates": [2.289337575962143, 48.69613835362166]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b44c44236e1929eced62f5298729a31f0f66a199", "fields": {"departement": "91", "stop_lat": 48.69159932736135, "code_postal": "91345", "stop_lon": 2.2898576780678925, "coord": [48.69159932736135, 2.2898576780678925], "stop_id": 6041875, "stop_desc": "RUE DU PRESIDENT FRANCOIS MITTERRAND - 91345", "stop_name": "HOPITAL DE LONGJUMEAU"}, "geometry": {"type": "Point", "coordinates": [2.2898576780678925, 48.69159932736135]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "766012a9468cf53a8298536323d98c8f68746e1b", "fields": {"departement": "91", "stop_lat": 48.69049548254798, "code_postal": "91345", "stop_lon": 2.2944747355863733, "coord": [48.69049548254798, 2.2944747355863733], "stop_id": 6041877, "stop_desc": "28 RUE DU DOCTEUR ROUX - 91345", "stop_name": "LES COTEAUX"}, "geometry": {"type": "Point", "coordinates": [2.2944747355863733, 48.69049548254798]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ac4a224ce216e914732d1284c46084a9b8ac6254", "fields": {"departement": "91", "stop_lat": 48.6909084764504, "code_postal": "91345", "stop_lon": 2.293157453118344, "coord": [48.6909084764504, 2.293157453118344], "stop_id": 6041878, "stop_desc": "RUE DU DOCTEUR ROUX - 91345", "stop_name": "LES COTEAUX"}, "geometry": {"type": "Point", "coordinates": [2.293157453118344, 48.6909084764504]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "80030af800a9b19d3bc7374515ba803b97c296ad", "fields": {"departement": "91", "stop_lat": 48.699649097599796, "code_postal": "91161", "stop_lon": 2.304705784704111, "coord": [48.699649097599796, 2.304705784704111], "stop_id": 6041884, "stop_desc": "AVENUE PIERRE BROSSOLETTE - 91161", "stop_name": "RUE DE CHILLY"}, "geometry": {"type": "Point", "coordinates": [2.304705784704111, 48.699649097599796]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a8186637f5ce22f208254aed04976a0f9497970f", "fields": {"departement": "91", "stop_lat": 48.69547017628833, "code_postal": "91161", "stop_lon": 2.307600495734536, "coord": [48.69547017628833, 2.307600495734536], "stop_id": 6041903, "stop_desc": "52 RUE DE GRAVIGNY - 91161", "stop_name": "SAINT-ELOI"}, "geometry": {"type": "Point", "coordinates": [2.307600495734536, 48.69547017628833]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "40efcb4de172e179c6e6c1cef0c6a697bbfe796d", "fields": {"departement": "91", "stop_lat": 48.69451817758564, "code_postal": "91161", "stop_lon": 2.3109547232875918, "coord": [48.69451817758564, 2.3109547232875918], "stop_id": 6041904, "stop_desc": "69 RUE PIERRE MENDES FRANCE - 91161", "stop_name": "GRAND JARDIN"}, "geometry": {"type": "Point", "coordinates": [2.3109547232875918, 48.69451817758564]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c10491881c6c5318bac63526605c2b785af83e2f", "fields": {"departement": "92", "stop_lat": 48.800344655032376, "code_postal": "92020", "stop_lon": 2.282452350873194, "coord": [48.800344655032376, 2.282452350873194], "stop_id": 6046781, "stop_desc": "AVENUE DE VERDUN - 92020", "stop_name": "PARC ANDRE MALRAUX"}, "geometry": {"type": "Point", "coordinates": [2.282452350873194, 48.800344655032376]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6d9baf4a659d27e826f361239898a3bd2feb2ec1", "fields": {"departement": "92", "stop_lat": 48.79472240380481, "code_postal": "92020", "stop_lon": 2.2727995331580586, "coord": [48.79472240380481, 2.2727995331580586], "stop_id": 6046783, "stop_desc": "AVENUE DE VERDUN - 92020", "stop_name": "DIVISION LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.2727995331580586, 48.79472240380481]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "06ef888613bfe7dbb85db38145b9c14cc6d0958c", "fields": {"departement": "92", "stop_lat": 48.783767334467804, "code_postal": "92023", "stop_lon": 2.2470120155491493, "coord": [48.783767334467804, 2.2470120155491493], "stop_id": 6046789, "stop_desc": "RUE DE TOURAINE - 92023", "stop_name": "MAIL DE LA PLAINE"}, "geometry": {"type": "Point", "coordinates": [2.2470120155491493, 48.783767334467804]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d6c8a919bf24696925d285e9a95f96049e233ab9", "fields": {"departement": "92", "stop_lat": 48.78354280058734, "code_postal": "92023", "stop_lon": 2.247230020871089, "coord": [48.78354280058734, 2.247230020871089], "stop_id": 6046790, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 92023", "stop_name": "MAIL DE LA PLAINE"}, "geometry": {"type": "Point", "coordinates": [2.247230020871089, 48.78354280058734]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "751d1c21206ca1dd6976094a10f2479a22331a75", "fields": {"departement": "92", "stop_lat": 48.78093072867293, "code_postal": "92023", "stop_lon": 2.2401624084492266, "coord": [48.78093072867293, 2.2401624084492266], "stop_id": 6046791, "stop_desc": "436 AVENUE DU GENERAL DE GAULLE - 92023", "stop_name": "PAVE BLANC (PARC NOVEOS)"}, "geometry": {"type": "Point", "coordinates": [2.2401624084492266, 48.78093072867293]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8a51503fa8fd55e5a83b0387e707cdb2664cd5ed", "fields": {"departement": "92", "stop_lat": 48.78499899867755, "code_postal": "92023", "stop_lon": 2.2362240179365442, "coord": [48.78499899867755, 2.2362240179365442], "stop_id": 6046793, "stop_desc": "RUE DE LA PORTE DE TRIVAUX - 92023", "stop_name": "GEORGES POMPIDOU"}, "geometry": {"type": "Point", "coordinates": [2.2362240179365442, 48.78499899867755]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ef2ae87663bf340b261313854aa4521f4f6d5abd", "fields": {"departement": "92", "stop_lat": 48.7834160736535, "code_postal": "92048", "stop_lon": 2.2250335382938045, "coord": [48.7834160736535, 2.2250335382938045], "stop_id": 6046797, "stop_desc": "AVENUE DE VILLACOUBLAY - 92048", "stop_name": "MEUDON-LA-FORET"}, "geometry": {"type": "Point", "coordinates": [2.2250335382938045, 48.7834160736535]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "098b2ee83e3c18d4ca5f5c8e0ba0c6f5c820e129", "fields": {"departement": "78", "stop_lat": 48.78142260113822, "code_postal": "78640", "stop_lon": 2.2090845722415247, "coord": [48.78142260113822, 2.2090845722415247], "stop_id": 6046803, "stop_desc": "FACE 7 AVENUE MORANE SAULNIER - 78640", "stop_name": "INOVEL PARC NORD"}, "geometry": {"type": "Point", "coordinates": [2.2090845722415247, 48.78142260113822]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aca4fb9f578679b4f36ee911706f3a80ce175aed", "fields": {"departement": "78", "stop_lat": 48.80099637807135, "code_postal": "78686", "stop_lon": 2.171199253908626, "coord": [48.80099637807135, 2.171199253908626], "stop_id": 6046813, "stop_desc": "RUE RIEUSSEC - 78686", "stop_name": "VIROFLAY - RIVE GAUCHE"}, "geometry": {"type": "Point", "coordinates": [2.171199253908626, 48.80099637807135]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7ee8a4c8644d0088d9538750ad23e9e88c13e650", "fields": {"departement": "94", "stop_lat": 48.80928933116081, "code_postal": "94043", "stop_lon": 2.358088049981442, "coord": [48.80928933116081, 2.358088049981442], "stop_id": 6075088, "stop_desc": "1 RUE DE VERDUN-LAZARE PONTICELLI - 94043", "stop_name": "HOPITAL DU KREMLIN-BICETRE"}, "geometry": {"type": "Point", "coordinates": [2.358088049981442, 48.80928933116081]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b7b69f2adb62dfbf6889b84dfd7914eb4c34965a", "fields": {"departement": "94", "stop_lat": 48.800535643137906, "code_postal": "94076", "stop_lon": 2.3554314854308616, "coord": [48.800535643137906, 2.3554314854308616], "stop_id": 6075093, "stop_desc": "2 BOULEVARD CHASTENET DE GERY - 94076", "stop_name": "AMBROISE CROIZAT"}, "geometry": {"type": "Point", "coordinates": [2.3554314854308616, 48.800535643137906]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "15a1df41572da9cf57ba90ab35a3b144ca3d4bd5", "fields": {"departement": "94", "stop_lat": 48.78152620546666, "code_postal": "94076", "stop_lon": 2.3555472360672267, "coord": [48.78152620546666, 2.3555472360672267], "stop_id": 6075105, "stop_desc": "119 RUE DE CHEVILLY - 94076", "stop_name": "YOURI GAGARINE"}, "geometry": {"type": "Point", "coordinates": [2.3555472360672267, 48.78152620546666]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a7d17a7169d1697d686b69c029d43a585612b5f3", "fields": {"departement": "94", "stop_lat": 48.770175020675374, "code_postal": "94021", "stop_lon": 2.350444197636118, "coord": [48.770175020675374, 2.350444197636118], "stop_id": 6075111, "stop_desc": "AVENUE DU 8 MAI 1945 - 94021", "stop_name": "MAIRIE DE CHEVILLY-LARUE - THEATRE"}, "geometry": {"type": "Point", "coordinates": [2.350444197636118, 48.770175020675374]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "235d897174e27427cae0070ca20553f0701ec79a", "fields": {"departement": "94", "stop_lat": 48.803420226026184, "code_postal": "94076", "stop_lon": 2.358507485336182, "coord": [48.803420226026184, 2.358507485336182], "stop_id": 6075113, "stop_desc": "7 BOULEVARD CHASTENET DE GERY - 94076", "stop_name": "LES COQUETTES"}, "geometry": {"type": "Point", "coordinates": [2.358507485336182, 48.803420226026184]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8598cde8a89ad6b8b04008d15f48fcbd1cf2f586", "fields": {"departement": "93", "stop_lat": 48.95816434930164, "code_postal": "93031", "stop_lon": 2.328875532262177, "coord": [48.95816434930164, 2.328875532262177], "stop_id": 6095574, "stop_desc": "ROUTE DE SAINT-LEU - 93031", "stop_name": "GARE D'EPINAY-VILLETANEUSE"}, "geometry": {"type": "Point", "coordinates": [2.328875532262177, 48.95816434930164]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3152b94db9d1a9bb5a0b65241873c3e75e8ae2ff", "fields": {"departement": "75", "stop_lat": 48.8571764094318, "code_postal": "75104", "stop_lon": 2.35008495875021, "coord": [48.8571764094318, 2.35008495875021], "stop_id": 6114723, "stop_desc": "6 AVENUE VICTORIA - 75104", "stop_name": "HOTEL DE VILLE"}, "geometry": {"type": "Point", "coordinates": [2.35008495875021, 48.8571764094318]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "03e8f5fe1d969910f221fe3b149ae0b8cc220fb3", "fields": {"departement": "75", "stop_lat": 48.8571764094318, "code_postal": "75104", "stop_lon": 2.35008495875021, "coord": [48.8571764094318, 2.35008495875021], "stop_id": 6114724, "stop_desc": "6 AVENUE VICTORIA - 75104", "stop_name": "HOTEL DE VILLE"}, "geometry": {"type": "Point", "coordinates": [2.35008495875021, 48.8571764094318]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1292172a46acf4b2892c2deeccdefc39f6b231b0", "fields": {"departement": "75", "stop_lat": 48.857535849643995, "code_postal": "75104", "stop_lon": 2.3506026208485578, "coord": [48.857535849643995, 2.3506026208485578], "stop_id": 6114730, "stop_desc": "2 RUE DE LA COUTELLERIE - 75104", "stop_name": "HOTEL DE VILLE DE PARIS"}, "geometry": {"type": "Point", "coordinates": [2.3506026208485578, 48.857535849643995]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fea82a5e6855f81f559f2e8b9daabec5f48e8b43", "fields": {"departement": "75", "stop_lat": 48.89431908990902, "code_postal": "75117", "stop_lon": 2.3128842182340263, "coord": [48.89431908990902, 2.3128842182340263], "stop_id": 6131930, "stop_desc": "FACE 5 BOULEVARD BERTHIER - 75117", "stop_name": "PORTE DE CLICHY"}, "geometry": {"type": "Point", "coordinates": [2.3128842182340263, 48.89431908990902]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3b5183771347c7d1d14b9746a9f081f407c53433", "fields": {"departement": "75", "stop_lat": 48.88763800200404, "code_postal": "75117", "stop_lon": 2.2991091911315924, "coord": [48.88763800200404, 2.2991091911315924], "stop_id": 6131934, "stop_desc": "43 BOULEVARD BERTHIER - 75117", "stop_name": "GOURGAUD - PAUL ADAM"}, "geometry": {"type": "Point", "coordinates": [2.2991091911315924, 48.88763800200404]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c0d00371ea71b467ca01193cce733368c8df6be7", "fields": {"departement": "75", "stop_lat": 48.89765580116296, "code_postal": "75118", "stop_lon": 2.33571439177938, "coord": [48.89765580116296, 2.33571439177938], "stop_id": 6131936, "stop_desc": "101-103 BOULEVARD NEY - 75118", "stop_name": "PORTE DE MONTMARTRE"}, "geometry": {"type": "Point", "coordinates": [2.33571439177938, 48.89765580116296]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "92f8e0e874551940208ce9d3cfa747beeba0bb64", "fields": {"departement": "75", "stop_lat": 48.898687618930516, "code_postal": "75118", "stop_lon": 2.357456065288737, "coord": [48.898687618930516, 2.357456065288737], "stop_id": 6131950, "stop_desc": "60 BOULEVARD NEY - 75118", "stop_name": "PORTE DE LA CHAPELLE"}, "geometry": {"type": "Point", "coordinates": [2.357456065288737, 48.898687618930516]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c6380d9e1e729c586dd103745e96a3c85d4d928e", "fields": {"departement": "75", "stop_lat": 48.89816784930795, "code_postal": "75118", "stop_lon": 2.3446290673307475, "coord": [48.89816784930795, 2.3446290673307475], "stop_id": 6131956, "stop_desc": "100 BOULEVARD NEY - 75118", "stop_name": "PORTE DE CLIGNANCOURT"}, "geometry": {"type": "Point", "coordinates": [2.3446290673307475, 48.89816784930795]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a4d95fdcb1efc5688dd77623bee3909c61d9d0db", "fields": {"departement": "75", "stop_lat": 48.8975838266348, "code_postal": "75118", "stop_lon": 2.332688340334556, "coord": [48.8975838266348, 2.332688340334556], "stop_id": 6131960, "stop_desc": "129-131 BOULEVARD NEY - 75118", "stop_name": "FACULTE XAVIER BICHAT"}, "geometry": {"type": "Point", "coordinates": [2.332688340334556, 48.8975838266348]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6d420d9052598e600742403a289a7c7984ce8e49", "fields": {"departement": "94", "stop_lat": 48.790570508596694, "code_postal": "94081", "stop_lon": 2.3807699840062972, "coord": [48.790570508596694, 2.3807699840062972], "stop_id": 6143545, "stop_desc": "77 AVENUE DU MOULIN DE SAQUET - 94081", "stop_name": "CAMELINAT"}, "geometry": {"type": "Point", "coordinates": [2.3807699840062972, 48.790570508596694]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c915f75755faf5dfbe8f75392b7388b33bf14662", "fields": {"departement": "94", "stop_lat": 48.78990240188759, "code_postal": "94081", "stop_lon": 2.388318873018915, "coord": [48.78990240188759, 2.388318873018915], "stop_id": 6143547, "stop_desc": "FACE 23 AVENUE MAXIMILIEN ROBESPIERRE - 94081", "stop_name": "HOTEL DE VILLE DE VITRY"}, "geometry": {"type": "Point", "coordinates": [2.388318873018915, 48.78990240188759]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "68c209dbb4d4fd8aa6444b892ab9fcbeb48f83a6", "fields": {"departement": "94", "stop_lat": 48.78956913115066, "code_postal": "94081", "stop_lon": 2.389964450689433, "coord": [48.78956913115066, 2.389964450689433], "stop_id": 6143548, "stop_desc": "39 AVENUE DE L'ABBE ROGER DERRY - 94081", "stop_name": "HOTEL DE VILLE DE VITRY - R. DERRY"}, "geometry": {"type": "Point", "coordinates": [2.389964450689433, 48.78956913115066]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a0b0d202b50ca786b5d28069f164cfca01fa066e", "fields": {"departement": "94", "stop_lat": 48.81189740013888, "code_postal": "94041", "stop_lon": 2.4030375554047456, "coord": [48.81189740013888, 2.4030375554047456], "stop_id": 6143556, "stop_desc": "FACE 38 AVENUE JEAN JAURES - 94041", "stop_name": "MAURICE GUNSBOURG"}, "geometry": {"type": "Point", "coordinates": [2.4030375554047456, 48.81189740013888]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8932b6fb6ef4217621069e6b2a96686e2f7351d8", "fields": {"departement": "94", "stop_lat": 48.82245788268191, "code_postal": "94018", "stop_lon": 2.403200663736245, "coord": [48.82245788268191, 2.403200663736245], "stop_id": 6143560, "stop_desc": "4 BIS AVENUE DE LA LIBERTE - 94018", "stop_name": "PONT NELSON MANDELA - RIVE DROITE"}, "geometry": {"type": "Point", "coordinates": [2.403200663736245, 48.82245788268191]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d1d54f806270b7b8cc2cd7866234f5c999c75ac4", "fields": {"departement": "94", "stop_lat": 48.82248640945558, "code_postal": "94018", "stop_lon": 2.4003151356284196, "coord": [48.82248640945558, 2.4003151356284196], "stop_id": 6143569, "stop_desc": "7 RUE DE L'ARCADE - 94018", "stop_name": "PONT NELSON MANDELA - RIVES DE BERCY"}, "geometry": {"type": "Point", "coordinates": [2.4003151356284196, 48.82248640945558]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b686e1d50a0782e00528d2954c2f11e71d6b94d7", "fields": {"departement": "94", "stop_lat": 48.811394093383804, "code_postal": "94041", "stop_lon": 2.403023309341887, "coord": [48.811394093383804, 2.403023309341887], "stop_id": 6143573, "stop_desc": "AVENUE JEAN JAURES - 94041", "stop_name": "MAURICE GUNSBOURG"}, "geometry": {"type": "Point", "coordinates": [2.403023309341887, 48.811394093383804]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4e07fad010e8d87316bf3e00bd6023d2c8005f02", "fields": {"departement": "94", "stop_lat": 48.80869730181348, "code_postal": "94081", "stop_lon": 2.403849952527833, "coord": [48.80869730181348, 2.403849952527833], "stop_id": 6143574, "stop_desc": "88 AV JEAN JAURES - 94081", "stop_name": "RUE DE LA BAIGNADE"}, "geometry": {"type": "Point", "coordinates": [2.403849952527833, 48.80869730181348]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "73cd84a5de2d88326ea2f28633e438aa4edfa40a", "fields": {"departement": "94", "stop_lat": 48.804777925970896, "code_postal": "94081", "stop_lon": 2.4050831174449394, "coord": [48.804777925970896, 2.4050831174449394], "stop_id": 6143575, "stop_desc": "128 AVENUE ANATOLE FRANCE - 94081", "stop_name": "PORT A L'ANGLAIS"}, "geometry": {"type": "Point", "coordinates": [2.4050831174449394, 48.804777925970896]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "801f586e6c70bea7bc819cbeec2e4b81d0e7d8f3", "fields": {"departement": "94", "stop_lat": 48.823325059800965, "code_postal": "94018", "stop_lon": 2.4110827508438324, "coord": [48.823325059800965, 2.4110827508438324], "stop_id": 6143588, "stop_desc": "88 RUE DE PARIS - 94018", "stop_name": "THEATRE DE CHARENTON"}, "geometry": {"type": "Point", "coordinates": [2.4110827508438324, 48.823325059800965]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6e379e509e9927fbb12a76d725de6c71ba40538d", "fields": {"departement": "94", "stop_lat": 48.811394093383804, "code_postal": "94041", "stop_lon": 2.403023309341887, "coord": [48.811394093383804, 2.403023309341887], "stop_id": 6143595, "stop_desc": "AVENUE JEAN JAURES - 94041", "stop_name": "MAURICE GUNSBOURG"}, "geometry": {"type": "Point", "coordinates": [2.403023309341887, 48.811394093383804]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "42815b272d47b3f2f9416439f103e0526feeca89", "fields": {"departement": "94", "stop_lat": 48.7983005517985, "code_postal": "94081", "stop_lon": 2.399877617408329, "coord": [48.7983005517985, 2.399877617408329], "stop_id": 6143599, "stop_desc": "30 AVENUE PAUL VAILLANT-COUTURIER - 94081", "stop_name": "GABRIEL PERI"}, "geometry": {"type": "Point", "coordinates": [2.399877617408329, 48.7983005517985]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "80c5faf84ee3ddd1dbb19976f9fe03a6b9b13bbb", "fields": {"departement": "94", "stop_lat": 48.795245983898745, "code_postal": "94081", "stop_lon": 2.3973435873756848, "coord": [48.795245983898745, 2.3973435873756848], "stop_id": 6143600, "stop_desc": "70 AVENUE PAUL VAILLANT-COUTURIER - 94081", "stop_name": "PAUL VAILLANT-COUTURIER"}, "geometry": {"type": "Point", "coordinates": [2.3973435873756848, 48.795245983898745]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aab4d1cf80959de9dac72e36b3b032611d0d8fdf", "fields": {"departement": "94", "stop_lat": 48.79298344235775, "code_postal": "94081", "stop_lon": 2.392375721426145, "coord": [48.79298344235775, 2.392375721426145], "stop_id": 6143601, "stop_desc": "AVENUE HENRI BARBUSSE - 94081", "stop_name": "EXPLORADOME"}, "geometry": {"type": "Point", "coordinates": [2.392375721426145, 48.79298344235775]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a947629df82bac3d0e8cdc1501ef142017595fc0", "fields": {"departement": "94", "stop_lat": 48.78867613628673, "code_postal": "94076", "stop_lon": 2.3746609690403804, "coord": [48.78867613628673, 2.3746609690403804], "stop_id": 6143607, "stop_desc": "77 AVENUE LOUIS ARAGON - 94076", "stop_name": "COLONEL FABIEN"}, "geometry": {"type": "Point", "coordinates": [2.3746609690403804, 48.78867613628673]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "350a81a3d41d0da81b6cce065f349d241627a34a", "fields": {"departement": "75", "stop_lat": 48.84822598041119, "code_postal": "75116", "stop_lon": 2.257698885660922, "coord": [48.84822598041119, 2.257698885660922], "stop_id": 8433, "stop_desc": "Parc des Princes - Rolland Garros - 75116", "stop_name": "Porte d'Auteuil"}, "geometry": {"type": "Point", "coordinates": [2.257698885660922, 48.84822598041119]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "992f49953f3473c25bf738a58c7715c0a69ce986", "fields": {"departement": "75", "stop_lat": 48.867240185361254, "code_postal": "75111", "stop_lon": 2.3630564459452406, "coord": [48.867240185361254, 2.3630564459452406], "stop_id": 967989, "stop_desc": "Saint-Martin (9 boulevard) - 75111", "stop_name": "R\u00e9publique"}, "geometry": {"type": "Point", "coordinates": [2.3630564459452406, 48.867240185361254]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aa75116c4fd07732a2ef697d266882745a569a57", "fields": {"departement": "94", "stop_lat": 48.84394043593739, "code_postal": "94058", "stop_lon": 2.502712259635843, "coord": [48.84394043593739, 2.502712259635843], "stop_id": 4557307, "stop_desc": "142 AVENUE DU GENERAL DE GAULLE - 94058", "stop_name": "LEDRU-ROLLIN - GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.502712259635843, 48.84394043593739]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "997c6f5832739d74331d6809fd1e01e8c500c561", "fields": {"departement": "94", "stop_lat": 48.83506442543633, "code_postal": "94052", "stop_lon": 2.493303581104327, "coord": [48.83506442543633, 2.493303581104327], "stop_id": 4557312, "stop_desc": "BOULEVARD ALBERT 1ER - 94052", "stop_name": "VIADUC"}, "geometry": {"type": "Point", "coordinates": [2.493303581104327, 48.83506442543633]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5ea1c093dc2919df3491ea1d25834cd33736f5b9", "fields": {"departement": "94", "stop_lat": 48.82758592082908, "code_postal": "94017", "stop_lon": 2.4939072681583574, "coord": [48.82758592082908, 2.4939072681583574], "stop_id": 4557314, "stop_desc": "FACE 232 BOULEVARD DE STALINGRAD - 94017", "stop_name": "PARC DU TREMBLAY"}, "geometry": {"type": "Point", "coordinates": [2.4939072681583574, 48.82758592082908]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "236c999d8e656a8f73a340982e94d21c67587838", "fields": {"departement": "94", "stop_lat": 48.8280081599537, "code_postal": "94017", "stop_lon": 2.4940446690229003, "coord": [48.8280081599537, 2.4940446690229003], "stop_id": 4557315, "stop_desc": "236 BOULEVARD DE STALINGRAD - 94017", "stop_name": "PARC DU TREMBLAY"}, "geometry": {"type": "Point", "coordinates": [2.4940446690229003, 48.8280081599537]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ec9686e3cae62ef68cf67105d4c7639999b2b97a", "fields": {"departement": "94", "stop_lat": 48.82397897368915, "code_postal": "94017", "stop_lon": 2.4960878428804523, "coord": [48.82397897368915, 2.4960878428804523], "stop_id": 4557316, "stop_desc": "149-151 BOULEVARD DE STALINGRAD - 94017", "stop_name": "GENERAL DE GAULLE - STALINGRAD"}, "geometry": {"type": "Point", "coordinates": [2.4960878428804523, 48.82397897368915]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "30704dce3c4b09186d7b5ecc5fa65c05a5b171cd", "fields": {"departement": "94", "stop_lat": 48.820974547612614, "code_postal": "94017", "stop_lon": 2.510778293039968, "coord": [48.820974547612614, 2.510778293039968], "stop_id": 4557325, "stop_desc": "49BIS-51 AVENUE DE LA REPUBLIQUE - 94017", "stop_name": "CITES JARDINS"}, "geometry": {"type": "Point", "coordinates": [2.510778293039968, 48.820974547612614]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6b2272e14498c79d67fad5468ff5cd7c6c832ecf", "fields": {"departement": "94", "stop_lat": 48.819652504878526, "code_postal": "94017", "stop_lon": 2.511359121916845, "coord": [48.819652504878526, 2.511359121916845], "stop_id": 4557328, "stop_desc": "44 AVENUE DE LA REPUBLIQUE - 94017", "stop_name": "REPUBLIQUE - ALEXANDRE FOURNY"}, "geometry": {"type": "Point", "coordinates": [2.511359121916845, 48.819652504878526]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4e79803eeaac8ebada495024e45e4cd4cb516273", "fields": {"departement": "94", "stop_lat": 48.813165663031356, "code_postal": "94017", "stop_lon": 2.509772359937948, "coord": [48.813165663031356, 2.509772359937948], "stop_id": 4557331, "stop_desc": "RUE GEORGES DIMITROV - 94017", "stop_name": "MAIRIE DE CHAMPIGNY - MARCHE"}, "geometry": {"type": "Point", "coordinates": [2.509772359937948, 48.813165663031356]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e21f8e592a55aea67b39d0ab12f20815d1e41ac1", "fields": {"departement": "94", "stop_lat": 48.81197817551925, "code_postal": "94017", "stop_lon": 2.510530485291293, "coord": [48.81197817551925, 2.510530485291293], "stop_id": 4557332, "stop_desc": "FACE 4 BIS RUE ALBERT THOMAS - 94017", "stop_name": "MARCHE DE CHAMPIGNY-SUR-MARNE"}, "geometry": {"type": "Point", "coordinates": [2.510530485291293, 48.81197817551925]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3634130ac203b70fa62862102dfb1ccfc704d239", "fields": {"departement": "94", "stop_lat": 48.85278739661655, "code_postal": "94033", "stop_lon": 2.486656292388775, "coord": [48.85278739661655, 2.486656292388775], "stop_id": 4557338, "stop_desc": "2-4 AVENUE DU VAL DE FONTENAY - 94033", "stop_name": "VAL-DE-FONTENAY RER"}, "geometry": {"type": "Point", "coordinates": [2.486656292388775, 48.85278739661655]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b540c49b0edec6c82d2fc34d8a4ff6e22c2593e8", "fields": {"departement": "94", "stop_lat": 48.85535311036773, "code_postal": "94058", "stop_lon": 2.503756533179889, "coord": [48.85535311036773, 2.503756533179889], "stop_id": 4557339, "stop_desc": "98 RUE LAMARTINE - 94058", "stop_name": "LAMARTINE - MARIE"}, "geometry": {"type": "Point", "coordinates": [2.503756533179889, 48.85535311036773]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0f0775608ad9ee3f578691244d49c347facad075", "fields": {"departement": "94", "stop_lat": 48.85714942914498, "code_postal": "94058", "stop_lon": 2.5045931369109815, "coord": [48.85714942914498, 2.5045931369109815], "stop_id": 4557340, "stop_desc": "122 AVENUE LAMARTINE - 94058", "stop_name": "DANIELLE CASANOVA"}, "geometry": {"type": "Point", "coordinates": [2.5045931369109815, 48.85714942914498]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9b330154c06c7bfdcaf75a246e3398cd9f3264dd", "fields": {"departement": "77", "stop_lat": 48.83777747640037, "code_postal": "77083", "stop_lon": 2.592798060287066, "coord": [48.83777747640037, 2.592798060287066], "stop_id": 3639478, "stop_desc": "RUE GALILEE - 77083", "stop_name": "BOIS DE L'ETANG-UNIVERSITE"}, "geometry": {"type": "Point", "coordinates": [2.592798060287066, 48.83777747640037]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4fbe01ef3f00c148537e790896cda8cf92b952bd", "fields": {"departement": "77", "stop_lat": 48.84267152877456, "code_postal": "77083", "stop_lon": 2.58195619006769, "coord": [48.84267152877456, 2.58195619006769], "stop_id": 3639715, "stop_desc": "BD NEWTON - 77083", "stop_name": "NOISY-CHAMPS RER - DESCARTES"}, "geometry": {"type": "Point", "coordinates": [2.58195619006769, 48.84267152877456]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5ef7849d683651356e7375b3e110fe38bfa65151", "fields": {"departement": "93", "stop_lat": 48.8258411494713, "code_postal": "93051", "stop_lon": 2.584626473276657, "coord": [48.8258411494713, 2.584626473276657], "stop_id": 3639464, "stop_desc": "AVENUE DES GRAVIERS - 93051", "stop_name": "COLLEGE DES YVRIS"}, "geometry": {"type": "Point", "coordinates": [2.584626473276657, 48.8258411494713]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5ae2625d6d4cee3b1ec4fd2ed00dd39603db52a4", "fields": {"departement": "77", "stop_lat": 48.83866547075784, "code_postal": "77083", "stop_lon": 2.5851369286206594, "coord": [48.83866547075784, 2.5851369286206594], "stop_id": 3639719, "stop_desc": "AVENUE AMPERE - 77083", "stop_name": "NOBEL"}, "geometry": {"type": "Point", "coordinates": [2.5851369286206594, 48.83866547075784]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b1b51ff58a0d8d33eb22cdbcb3c6d106f6430154", "fields": {"departement": "77", "stop_lat": 48.829415123672106, "code_postal": "77169", "stop_lon": 2.5987057777609466, "coord": [48.829415123672106, 2.5987057777609466], "stop_id": 3639728, "stop_desc": "26 RUE DE L'ANCIEN MONASTERE - 77169", "stop_name": "MALNOUE - ANCIEN MONASTERE"}, "geometry": {"type": "Point", "coordinates": [2.5987057777609466, 48.829415123672106]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "368f4a927a527a3ac3fc455f53cbc861efc09ed0", "fields": {"departement": "77", "stop_lat": 48.830146869025874, "code_postal": "77169", "stop_lon": 2.6051076849713635, "coord": [48.830146869025874, 2.6051076849713635], "stop_id": 3639731, "stop_desc": "40-48 AVENUE DE L'EUROPE - 77169", "stop_name": "MALNOUE - AVENUE DE L'EUROPE"}, "geometry": {"type": "Point", "coordinates": [2.6051076849713635, 48.830146869025874]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dffcdde900aa7a44b8aaecfb59ad245157c82aa0", "fields": {"departement": "77", "stop_lat": 48.81770057140126, "code_postal": "77169", "stop_lon": 2.616108365434715, "coord": [48.81770057140126, 2.616108365434715], "stop_id": 3639735, "stop_desc": "BOULEVARD DE BEAUBOURG - 77169", "stop_name": "CIMETIERE D'EMERAINVILLE"}, "geometry": {"type": "Point", "coordinates": [2.616108365434715, 48.81770057140126]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3d31ca792476bd5eb5df5fd3fd1955e10e518194", "fields": {"departement": "94", "stop_lat": 48.79983814837087, "code_postal": "94028", "stop_lon": 2.4660688746577812, "coord": [48.79983814837087, 2.4660688746577812], "stop_id": 3663578, "stop_desc": "5 RUE DU PORT - 94028", "stop_name": "HOPITAL INTERCOMMUNAL"}, "geometry": {"type": "Point", "coordinates": [2.4660688746577812, 48.79983814837087]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c99679eca682eabdd32330f053f46f5d3c20e67d", "fields": {"departement": "77", "stop_lat": 48.81150263987951, "code_postal": "77169", "stop_lon": 2.6221580063939895, "coord": [48.81150263987951, 2.6221580063939895], "stop_id": 3639739, "stop_desc": "R D'EMERY - 77169", "stop_name": "MAIRIE D'EMERAINVILLE"}, "geometry": {"type": "Point", "coordinates": [2.6221580063939895, 48.81150263987951]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b74da8830420ac4f3cd5f7996b387c3e05b74230", "fields": {"departement": "94", "stop_lat": 48.81557632329112, "code_postal": "94046", "stop_lon": 2.4261781005441354, "coord": [48.81557632329112, 2.4261781005441354], "stop_id": 3663566, "stop_desc": "FACE 5 RUE MARECHAL JUIN - 94046", "stop_name": "PAUL BERT"}, "geometry": {"type": "Point", "coordinates": [2.4261781005441354, 48.81557632329112]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d3fe86660845ab001b2d164d3f01eee7e129a602", "fields": {"departement": "94", "stop_lat": 48.80990845052213, "code_postal": "94046", "stop_lon": 2.4439130420696116, "coord": [48.80990845052213, 2.4439130420696116], "stop_id": 3663571, "stop_desc": "76 AVENUE GAMBETTA - 94046", "stop_name": "RENE COTY"}, "geometry": {"type": "Point", "coordinates": [2.4439130420696116, 48.80990845052213]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4efa63d85498a1827b88c2eb9682cdbe1e8fa393", "fields": {"departement": "77", "stop_lat": 48.81427299543897, "code_postal": "77169", "stop_lon": 2.6212750123401, "coord": [48.81427299543897, 2.6212750123401], "stop_id": 3639737, "stop_desc": "R D'EMERY - 77169", "stop_name": "RUE D'EMERY"}, "geometry": {"type": "Point", "coordinates": [2.6212750123401, 48.81427299543897]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4ad7130354d333d308283da1e06d7e47deb81124", "fields": {"departement": "93", "stop_lat": 48.91435291986248, "code_postal": "93001", "stop_lon": 2.404285748734163, "coord": [48.91435291986248, 2.404285748734163], "stop_id": 3663814, "stop_desc": "AVENUE JEAN JAURES (GARE ROUTIERE) - 93001", "stop_name": "FORT D'AUBERVILLIERS - METRO"}, "geometry": {"type": "Point", "coordinates": [2.404285748734163, 48.91435291986248]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0d87681a8af71e3dca250851e46ea2293345788f", "fields": {"departement": "94", "stop_lat": 48.814627272661085, "code_postal": "94046", "stop_lon": 2.443636947184136, "coord": [48.814627272661085, 2.443636947184136], "stop_id": 3663673, "stop_desc": "127-131 RUE GEORGES CLEMENCEAU - 94046", "stop_name": "PASSERELLE DE CHARENTONNEAU"}, "geometry": {"type": "Point", "coordinates": [2.443636947184136, 48.814627272661085]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "24972bee26314f227c26f2aa4049bbc424f98185", "fields": {"departement": "94", "stop_lat": 48.79972114444108, "code_postal": "94028", "stop_lon": 2.4662182415699143, "coord": [48.79972114444108, 2.4662182415699143], "stop_id": 3663700, "stop_desc": "FACE AU 11 RUE DU PORT - 94028", "stop_name": "HOPITAL INTERCOMMUNAL"}, "geometry": {"type": "Point", "coordinates": [2.4662182415699143, 48.79972114444108]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1e792270a1ce1663031345fe77d07f535caf957c", "fields": {"departement": "94", "stop_lat": 48.80749540542528, "code_postal": "94068", "stop_lon": 2.47444271804436, "coord": [48.80749540542528, 2.47444271804436], "stop_id": 3663696, "stop_desc": "31-33 RUE DE LA VARENNE - 94068", "stop_name": "GODEFROY CAVAIGNAC"}, "geometry": {"type": "Point", "coordinates": [2.47444271804436, 48.80749540542528]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "24b497515929e455dc4ec46dc88fd3a8f94ac478", "fields": {"departement": "94", "stop_lat": 48.78820032893041, "code_postal": "94068", "stop_lon": 2.4804719249684917, "coord": [48.78820032893041, 2.4804719249684917], "stop_id": 3663686, "stop_desc": "FACE 68 AVENUE DU PORT-AU-FOUARRE - 94068", "stop_name": "LA PIE"}, "geometry": {"type": "Point", "coordinates": [2.4804719249684917, 48.78820032893041]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0afb19a0ffcec8d6d9c24aed6114c1b23d9b16e7", "fields": {"departement": "94", "stop_lat": 48.80978760160916, "code_postal": "94046", "stop_lon": 2.4482945155545006, "coord": [48.80978760160916, 2.4482945155545006], "stop_id": 3663676, "stop_desc": "114 AVENUE GAMBETTA - 94046", "stop_name": "RUE DE VINCENNES"}, "geometry": {"type": "Point", "coordinates": [2.4482945155545006, 48.80978760160916]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0dfec8f1c611ab5cacb1aeb3ab5a7c9f2540327c", "fields": {"departement": "94", "stop_lat": 48.80572709873827, "code_postal": "94028", "stop_lon": 2.4555654521273964, "coord": [48.80572709873827, 2.4555654521273964], "stop_id": 3663680, "stop_desc": "109 RUE CHERET - 94028", "stop_name": "DANIELLE CASANOVA"}, "geometry": {"type": "Point", "coordinates": [2.4555654521273964, 48.80572709873827]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "88f891314fbfc4901d149d7e6b6c5d27d410e764", "fields": {"departement": "94", "stop_lat": 48.79339690982196, "code_postal": "94068", "stop_lon": 2.4865126281236076, "coord": [48.79339690982196, 2.4865126281236076], "stop_id": 3663689, "stop_desc": "22 PLACE JOHN KENNEDY - 94068", "stop_name": "ADAMVILLE"}, "geometry": {"type": "Point", "coordinates": [2.4865126281236076, 48.79339690982196]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fadee3372ff5dbbe2501df349fe95947caba2e51", "fields": {"departement": "94", "stop_lat": 48.792180585715755, "code_postal": "94068", "stop_lon": 2.48162557308727, "coord": [48.792180585715755, 2.48162557308727], "stop_id": 3663688, "stop_desc": "RUE BARATTE CHOLET - 94068", "stop_name": "BOURBAKI"}, "geometry": {"type": "Point", "coordinates": [2.48162557308727, 48.792180585715755]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "26a3fab5b11efb75223096e0d033da56eb0abcec", "fields": {"departement": "94", "stop_lat": 48.8152892427475, "code_postal": "94046", "stop_lon": 2.425469926717237, "coord": [48.8152892427475, 2.425469926717237], "stop_id": 3663712, "stop_desc": "RUE PAUL BERT - 94046", "stop_name": "PAUL BERT"}, "geometry": {"type": "Point", "coordinates": [2.425469926717237, 48.8152892427475]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eae899d07430d7f3f06f3b7450bc613e6098c294", "fields": {"departement": "93", "stop_lat": 48.91880699588042, "code_postal": "93001", "stop_lon": 2.3936278000572, "coord": [48.91880699588042, 2.3936278000572], "stop_id": 3663820, "stop_desc": "94 R CHARLES TILLON - 93001", "stop_name": "DANIELLE CASANOVA - PONT BLANC"}, "geometry": {"type": "Point", "coordinates": [2.3936278000572, 48.91880699588042]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e779e2eef7863d5b069a72a63f13bc4b11381a34", "fields": {"departement": "95", "stop_lat": 48.98367986243862, "code_postal": "95277", "stop_lon": 2.438140842334344, "coord": [48.98367986243862, 2.438140842334344], "stop_id": 3663861, "stop_desc": "11-13 RUE RAYMOND RAMBERT - 95277", "stop_name": "CHEMIN DU MOULIN D'ETIF"}, "geometry": {"type": "Point", "coordinates": [2.438140842334344, 48.98367986243862]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a47f834cce77ec0dd103048659850450b541a7a5", "fields": {"departement": "93", "stop_lat": 48.929037580636226, "code_postal": "93027", "stop_lon": 2.3857827838557766, "coord": [48.929037580636226, 2.3857827838557766], "stop_id": 3663828, "stop_desc": "BOULEVARD PASTEUR - 93027", "stop_name": "SIX ROUTES - TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.3857827838557766, 48.929037580636226]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "46b5f7af5ce2f461cf843fb805f0bf141cf8b2d3", "fields": {"departement": "95", "stop_lat": 48.970909917089145, "code_postal": "95268", "stop_lon": 2.4140915997398324, "coord": [48.970909917089145, 2.4140915997398324], "stop_id": 3663850, "stop_desc": "247 BIS AVENUE DE STALINGRAD - 95268", "stop_name": "CARNOT"}, "geometry": {"type": "Point", "coordinates": [2.4140915997398324, 48.970909917089145]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8f263dcf598e076537cd846a5581681f9f77f868", "fields": {"departement": "95", "stop_lat": 48.985316934538886, "code_postal": "95277", "stop_lon": 2.446609515755716, "coord": [48.985316934538886, 2.446609515755716], "stop_id": 3663865, "stop_desc": "28 RUE DE PARIS - 95277", "stop_name": "SAINT-NICOLAS"}, "geometry": {"type": "Point", "coordinates": [2.446609515755716, 48.985316934538886]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0a4f250dccbbe292fc47305dc382c2d087cf4fc0", "fields": {"departement": "93", "stop_lat": 48.941474563908756, "code_postal": "93027", "stop_lon": 2.387758950668094, "coord": [48.941474563908756, 2.387758950668094], "stop_id": 3663833, "stop_desc": "AV ROGER SALENGRO - 93027", "stop_name": "CITE FLOREAL"}, "geometry": {"type": "Point", "coordinates": [2.387758950668094, 48.941474563908756]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "53f671a0d4f0d23c4a6a8d459715b08251457e76", "fields": {"departement": "93", "stop_lat": 48.92623412112914, "code_postal": "93027", "stop_lon": 2.38464816857512, "coord": [48.92623412112914, 2.38464816857512], "stop_id": 3663827, "stop_desc": "FACE 66 BOULEVARD PASTEUR - 93027", "stop_name": "MICHELET"}, "geometry": {"type": "Point", "coordinates": [2.38464816857512, 48.92623412112914]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f5df5f65363550455f0c6b634aa65119e29be926", "fields": {"departement": "95", "stop_lat": 48.98536204173677, "code_postal": "95277", "stop_lon": 2.446418454913496, "coord": [48.98536204173677, 2.446418454913496], "stop_id": 3663866, "stop_desc": "11 RUE DE PARIS - 95277", "stop_name": "SAINT-NICOLAS"}, "geometry": {"type": "Point", "coordinates": [2.446418454913496, 48.98536204173677]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "af2fcb9a73878bc56375296fd291fe4ccd2a8c60", "fields": {"departement": "95", "stop_lat": 48.96313358918207, "code_postal": "95268", "stop_lon": 2.4039804292554754, "coord": [48.96313358918207, 2.4039804292554754], "stop_id": 3663843, "stop_desc": "AVENUE DE STALINGRAD - 95268", "stop_name": "DEMUSOIS"}, "geometry": {"type": "Point", "coordinates": [2.4039804292554754, 48.96313358918207]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "909b85c5b9dbea78f0bf7e3756424f5d319d2272", "fields": {"departement": "95", "stop_lat": 48.968242795775765, "code_postal": "95268", "stop_lon": 2.411084751683209, "coord": [48.968242795775765, 2.411084751683209], "stop_id": 3663848, "stop_desc": "175 AVENUE DE STALINGRAD - 95268", "stop_name": "VERDUN"}, "geometry": {"type": "Point", "coordinates": [2.411084751683209, 48.968242795775765]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7c195873aa1519acc71cd1389de3941a4d137f3c", "fields": {"departement": "93", "stop_lat": 48.91435291986248, "code_postal": "93001", "stop_lon": 2.404285748734163, "coord": [48.91435291986248, 2.404285748734163], "stop_id": 3663940, "stop_desc": "AVENUE JEAN JAURES (GARE ROUTIERE) - 93001", "stop_name": "FORT D'AUBERVILLIERS - METRO"}, "geometry": {"type": "Point", "coordinates": [2.404285748734163, 48.91435291986248]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e1634811f19269720ed99f71c62067668152e1b0", "fields": {"departement": "93", "stop_lat": 48.91880699588042, "code_postal": "93001", "stop_lon": 2.3936278000572, "coord": [48.91880699588042, 2.3936278000572], "stop_id": 3663943, "stop_desc": "94 R CHARLES TILLON - 93001", "stop_name": "DANIELLE CASANOVA - PONT BLANC"}, "geometry": {"type": "Point", "coordinates": [2.3936278000572, 48.91880699588042]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7d5bfb0ec2bf0c68612bedc77cf472886d9e2ff4", "fields": {"departement": "95", "stop_lat": 48.992119870186045, "code_postal": "95277", "stop_lon": 2.455827907438423, "coord": [48.992119870186045, 2.455827907438423], "stop_id": 3663934, "stop_desc": "R D'ARSONVAL - 95277", "stop_name": "LA FONTAINE CYPIERE - RUE D'ARSONVAL"}, "geometry": {"type": "Point", "coordinates": [2.455827907438423, 48.992119870186045]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2328973a9c0b9c03535e21b4aa0324b49658d7c6", "fields": {"departement": "93", "stop_lat": 48.920964390428175, "code_postal": "93001", "stop_lon": 2.3925119117605624, "coord": [48.920964390428175, 2.3925119117605624], "stop_id": 3663944, "stop_desc": "103 PCH DU PONT BLANC - 93001", "stop_name": "PETIT CHEMIN DU PONT BLANC"}, "geometry": {"type": "Point", "coordinates": [2.3925119117605624, 48.920964390428175]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "06d1fa3a404310b33075b4c1d227e131f85ade4e", "fields": {"departement": "95", "stop_lat": 48.986342513592646, "code_postal": "95277", "stop_lon": 2.4548861738207215, "coord": [48.986342513592646, 2.4548861738207215], "stop_id": 3663932, "stop_desc": "82-86 RUE DE PARIS - 95277", "stop_name": "CHEMIN DES CRESSONNIERES"}, "geometry": {"type": "Point", "coordinates": [2.4548861738207215, 48.986342513592646]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d03bf8521885b60b4a7e322e3e85136805f8cbba", "fields": {"departement": "95", "stop_lat": 48.987247332786204, "code_postal": "95277", "stop_lon": 2.4484433012868956, "coord": [48.987247332786204, 2.4484433012868956], "stop_id": 3663937, "stop_desc": "FACE 4 PLACE DU 8 MAI 1945 - 95277", "stop_name": "HOPITAL-8 MAI 1945"}, "geometry": {"type": "Point", "coordinates": [2.4484433012868956, 48.987247332786204]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e23e5819a06f127fc8612ddf6dfd06b92b3dd700", "fields": {"departement": "95", "stop_lat": 48.986401391751656, "code_postal": "95277", "stop_lon": 2.4497386404359953, "coord": [48.986401391751656, 2.4497386404359953], "stop_id": 3663930, "stop_desc": "64 RUE DE PARIS - 95277", "stop_name": "HOTEL DE VILLE DE GONESSE"}, "geometry": {"type": "Point", "coordinates": [2.4497386404359953, 48.986401391751656]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "22d80c576072a89c24a3498ef9a3df54ba4eecc5", "fields": {"departement": "93", "stop_lat": 48.941582600962306, "code_postal": "93066", "stop_lon": 2.3872952124781888, "coord": [48.941582600962306, 2.3872952124781888], "stop_id": 3663939, "stop_desc": "8-10 AVENUE ROGER SALENGRO - 93066", "stop_name": "CITE FLOREAL"}, "geometry": {"type": "Point", "coordinates": [2.3872952124781888, 48.941582600962306]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6f30f64dd58d3d7728cf84d7452be85e96c26dee", "fields": {"departement": "94", "stop_lat": 48.81496864081074, "code_postal": "94046", "stop_lon": 2.421386626368657, "coord": [48.81496864081074, 2.421386626368657], "stop_id": 3663594, "stop_desc": "AVENUE DU GENERAL LECLERC - 94046", "stop_name": "ECOLE VETERINAIRE DE MAISONS-ALFORT-METRO"}, "geometry": {"type": "Point", "coordinates": [2.421386626368657, 48.81496864081074]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7a898c55ef2aa073b03b9775a2f6e5190fced0b4", "fields": {"departement": "94", "stop_lat": 48.80307737363469, "code_postal": "94068", "stop_lon": 2.4860914567450045, "coord": [48.80307737363469, 2.4860914567450045], "stop_id": 3663617, "stop_desc": "11 AVENUE DE LA REPUBLIQUE - 94068", "stop_name": "MAIRIE DE SAINT-MAUR"}, "geometry": {"type": "Point", "coordinates": [2.4860914567450045, 48.80307737363469]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4d6aee86265da6b04934ed4ebd0b082a9e73c718", "fields": {"departement": "94", "stop_lat": 48.80749540542528, "code_postal": "94068", "stop_lon": 2.47444271804436, "coord": [48.80749540542528, 2.47444271804436], "stop_id": 3663621, "stop_desc": "31-33 RUE DE LA VARENNE - 94068", "stop_name": "GODEFROY CAVAIGNAC"}, "geometry": {"type": "Point", "coordinates": [2.47444271804436, 48.80749540542528]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4cecabc05695cc94bbd8db705c3e8f4eda5bc25c", "fields": {"departement": "94", "stop_lat": 48.79153325232115, "code_postal": "94068", "stop_lon": 2.474196504265185, "coord": [48.79153325232115, 2.474196504265185], "stop_id": 3663591, "stop_desc": "20-20 BIS AVENUE BEAUREPAIRE - 94068", "stop_name": "RUE DES COTEAUX"}, "geometry": {"type": "Point", "coordinates": [2.474196504265185, 48.79153325232115]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cec79c366699b8025fb03bf2e2191201f73f1a6a", "fields": {"departement": "94", "stop_lat": 48.800640990095474, "code_postal": "94068", "stop_lon": 2.4715538589830284, "coord": [48.800640990095474, 2.4715538589830284], "stop_id": 3663624, "stop_desc": "80 RUE DU PONT DE CRETEIL - 94068", "stop_name": "PONT DE CRETEIL"}, "geometry": {"type": "Point", "coordinates": [2.4715538589830284, 48.800640990095474]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "296ab71631dc3e4290e9ec7cf7f97563c69d5bc0", "fields": {"departement": "94", "stop_lat": 48.80231504419326, "code_postal": "94028", "stop_lon": 2.4611360862683753, "coord": [48.80231504419326, 2.4611360862683753], "stop_id": 3663606, "stop_desc": "FACE 62 RUE CHERET - 94028", "stop_name": "CHERET - LAFERRIERE"}, "geometry": {"type": "Point", "coordinates": [2.4611360862683753, 48.80231504419326]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "96e0e71771572c557af35d3251f3b7b19ab97c79", "fields": {"departement": "94", "stop_lat": 48.81172435455524, "code_postal": "94046", "stop_lon": 2.443494914666074, "coord": [48.81172435455524, 2.443494914666074], "stop_id": 3663599, "stop_desc": "FACE 85 AVENUE GEORGES CLEMENCEAU - 94046", "stop_name": "CONCORDE"}, "geometry": {"type": "Point", "coordinates": [2.443494914666074, 48.81172435455524]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3dc25487e9e9f9b70f961a15631fb4eef8aaca5c", "fields": {"departement": "94", "stop_lat": 48.80572709873827, "code_postal": "94028", "stop_lon": 2.4555654521273964, "coord": [48.80572709873827, 2.4555654521273964], "stop_id": 3663605, "stop_desc": "109 RUE CHERET - 94028", "stop_name": "DANIELLE CASANOVA"}, "geometry": {"type": "Point", "coordinates": [2.4555654521273964, 48.80572709873827]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fb8d1fbfc5ea9aa13d94987cc99ac6123fe474dc", "fields": {"departement": "94", "stop_lat": 48.81557632329112, "code_postal": "94046", "stop_lon": 2.4261781005441354, "coord": [48.81557632329112, 2.4261781005441354], "stop_id": 3663595, "stop_desc": "FACE 5 RUE MARECHAL JUIN - 94046", "stop_name": "PAUL BERT"}, "geometry": {"type": "Point", "coordinates": [2.4261781005441354, 48.81557632329112]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5f856aaac5571aeaf50d38a3e9c39890b33d0000", "fields": {"departement": "94", "stop_lat": 48.792180585715755, "code_postal": "94068", "stop_lon": 2.48162557308727, "coord": [48.792180585715755, 2.48162557308727], "stop_id": 3663613, "stop_desc": "RUE BARATTE CHOLET - 94068", "stop_name": "BOURBAKI"}, "geometry": {"type": "Point", "coordinates": [2.48162557308727, 48.792180585715755]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "34a2d4a21c03c54011ea314ce87639b23d793b5a", "fields": {"departement": "93", "stop_lat": 48.91435291986248, "code_postal": "93001", "stop_lon": 2.404285748734163, "coord": [48.91435291986248, 2.404285748734163], "stop_id": 3663877, "stop_desc": "AVENUE JEAN JAURES (GARE ROUTIERE) - 93001", "stop_name": "FORT D'AUBERVILLIERS - METRO"}, "geometry": {"type": "Point", "coordinates": [2.404285748734163, 48.91435291986248]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dc77ce62f4a18d54b0c762afedc2ab387e070dc4", "fields": {"departement": "93", "stop_lat": 48.91417295684891, "code_postal": "93001", "stop_lon": 2.4046809378898155, "coord": [48.91417295684891, 2.4046809378898155], "stop_id": 3663878, "stop_desc": "AVENUE DE LA DIVISION LECLERC - 93001", "stop_name": "FORT D'AUBERVILLIERS - METRO"}, "geometry": {"type": "Point", "coordinates": [2.4046809378898155, 48.91417295684891]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "77586b08775ccfb15141b642cf95a4916c5303d4", "fields": {"departement": "93", "stop_lat": 48.92390665860271, "code_postal": "93027", "stop_lon": 2.384264180372188, "coord": [48.92390665860271, 2.384264180372188], "stop_id": 3663887, "stop_desc": "BOULEVARD PASTEUR - 93027", "stop_name": "LA COURNEUVE - AUBERVILLIERS RER"}, "geometry": {"type": "Point", "coordinates": [2.384264180372188, 48.92390665860271]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d7377249c9eedcbf388b16f41097cb21ad17224c", "fields": {"departement": "95", "stop_lat": 48.976502734926754, "code_postal": "95268", "stop_lon": 2.4226458510272875, "coord": [48.976502734926754, 2.4226458510272875], "stop_id": 3663917, "stop_desc": "AVENUE DE STALINGRAD - 95268", "stop_name": "ROND-POINT DU CHRIST"}, "geometry": {"type": "Point", "coordinates": [2.4226458510272875, 48.976502734926754]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b8630c1616a75de4f4e2880013139bb3a6850d9f", "fields": {"departement": "93", "stop_lat": 48.946903036868115, "code_postal": "93072", "stop_lon": 2.386672737644679, "coord": [48.946903036868115, 2.386672737644679], "stop_id": 3663897, "stop_desc": "169 BOULEVARD MAXIME GORKI - 93072", "stop_name": "CROIX BLANCHE"}, "geometry": {"type": "Point", "coordinates": [2.386672737644679, 48.946903036868115]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3b1a0552fe61c5b2006036e9117c10cafb0e5d68", "fields": {"departement": "95", "stop_lat": 48.98305379970812, "code_postal": "95277", "stop_lon": 2.4345351231585646, "coord": [48.98305379970812, 2.4345351231585646], "stop_id": 3663923, "stop_desc": "0 AV RAYMOND RAMBERT - 95277", "stop_name": "LYCEE DE GONESSE"}, "geometry": {"type": "Point", "coordinates": [2.4345351231585646, 48.98305379970812]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5ab8921bacaf98a40a4fb0e2eed70bd4f6f4f3a9", "fields": {"departement": "95", "stop_lat": 48.985316934538886, "code_postal": "95277", "stop_lon": 2.446609515755716, "coord": [48.985316934538886, 2.446609515755716], "stop_id": 3663928, "stop_desc": "28 RUE DE PARIS - 95277", "stop_name": "SAINT-NICOLAS"}, "geometry": {"type": "Point", "coordinates": [2.446609515755716, 48.985316934538886]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "67f02194ac84bdb9237b0dcf1c8036305a5bba46", "fields": {"departement": "93", "stop_lat": 48.94905120702527, "code_postal": "93072", "stop_lon": 2.385856122755476, "coord": [48.94905120702527, 2.385856122755476], "stop_id": 3663900, "stop_desc": "BOULEVARD MAXIME GORKI - 93072", "stop_name": "LE GLOBE"}, "geometry": {"type": "Point", "coordinates": [2.385856122755476, 48.94905120702527]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "058a46325f7219faa98e0dcebfde77ce7dab93d7", "fields": {"departement": "93", "stop_lat": 48.91564949215748, "code_postal": "93001", "stop_lon": 2.399787668480733, "coord": [48.91564949215748, 2.399787668480733], "stop_id": 3663881, "stop_desc": "161 RUE DANIELLE CASANOVA - 93001", "stop_name": "BALZAC"}, "geometry": {"type": "Point", "coordinates": [2.399787668480733, 48.91564949215748]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d1199b3577da2ee7cd3e3c76e33af636aef5a490", "fields": {"departement": "93", "stop_lat": 48.915370701674085, "code_postal": "93001", "stop_lon": 2.400155491968183, "coord": [48.915370701674085, 2.400155491968183], "stop_id": 3663882, "stop_desc": "RUE DANIELLE CASANOVA - 93001", "stop_name": "BALZAC"}, "geometry": {"type": "Point", "coordinates": [2.400155491968183, 48.915370701674085]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a70ef93855517b9c780b114818a26b3204ccda2b", "fields": {"departement": "94", "stop_lat": 48.81504970329177, "code_postal": "94046", "stop_lon": 2.421141792054011, "coord": [48.81504970329177, 2.421141792054011], "stop_id": 3663639, "stop_desc": "FACE 7 AVENUE DU GENERAL LECLERC - 94046", "stop_name": "ECOLE VETERINAIRE DE MAISONS-ALFORT"}, "geometry": {"type": "Point", "coordinates": [2.421141792054011, 48.81504970329177]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0dd2bd101b027e1fc409336cb8ff77c5dde95975", "fields": {"departement": "94", "stop_lat": 48.809081950256626, "code_postal": "94046", "stop_lon": 2.453123721150605, "coord": [48.809081950256626, 2.453123721150605], "stop_id": 3663649, "stop_desc": "212 AVENUE DE LA REPUBLIQUE - 94046", "stop_name": "PONT DE MAISONS-ALFORT"}, "geometry": {"type": "Point", "coordinates": [2.453123721150605, 48.809081950256626]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e1a5450859dc2d2cd2cff626fab0d9f1886fa95d", "fields": {"departement": "94", "stop_lat": 48.79153325232115, "code_postal": "94068", "stop_lon": 2.474196504265185, "coord": [48.79153325232115, 2.474196504265185], "stop_id": 3663666, "stop_desc": "20-20 BIS AVENUE BEAUREPAIRE - 94068", "stop_name": "RUE DES COTEAUX"}, "geometry": {"type": "Point", "coordinates": [2.474196504265185, 48.79153325232115]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1844b080342e1bf71cc05be4c07f03032616b0f8", "fields": {"departement": "94", "stop_lat": 48.80069437856847, "code_postal": "94068", "stop_lon": 2.4720301880146383, "coord": [48.80069437856847, 2.4720301880146383], "stop_id": 3663654, "stop_desc": "83 RUE DU PONT DE CRETEIL - 94068", "stop_name": "PONT DE CRETEIL"}, "geometry": {"type": "Point", "coordinates": [2.4720301880146383, 48.80069437856847]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2b053fdabda499ce3bb0570f9f05c7775096c99e", "fields": {"departement": "94", "stop_lat": 48.81172435455524, "code_postal": "94046", "stop_lon": 2.443494914666074, "coord": [48.81172435455524, 2.443494914666074], "stop_id": 3663645, "stop_desc": "FACE 85 AVENUE GEORGES CLEMENCEAU - 94046", "stop_name": "CONCORDE"}, "geometry": {"type": "Point", "coordinates": [2.443494914666074, 48.81172435455524]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "30b4659c744a6e7f9e9f142cbf375552ea80a9f8", "fields": {"departement": "94", "stop_lat": 48.78820032893041, "code_postal": "94068", "stop_lon": 2.4804719249684917, "coord": [48.78820032893041, 2.4804719249684917], "stop_id": 3663668, "stop_desc": "FACE 68 AVENUE DU PORT-AU-FOUARRE - 94068", "stop_name": "LA PIE"}, "geometry": {"type": "Point", "coordinates": [2.4804719249684917, 48.78820032893041]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a8413dd8b92d018f40af4bc456024e6239f342bd", "fields": {"departement": "94", "stop_lat": 48.80978760160916, "code_postal": "94046", "stop_lon": 2.4482945155545006, "coord": [48.80978760160916, 2.4482945155545006], "stop_id": 3663647, "stop_desc": "114 AVENUE GAMBETTA - 94046", "stop_name": "RUE DE VINCENNES"}, "geometry": {"type": "Point", "coordinates": [2.4482945155545006, 48.80978760160916]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "59f8c0f813a247542c37c72b960f24a1dd14244e", "fields": {"departement": "94", "stop_lat": 48.81127447981165, "code_postal": "94046", "stop_lon": 2.444038322782514, "coord": [48.81127447981165, 2.444038322782514], "stop_id": 3663646, "stop_desc": "122 R DE NORMANDIE - 94046", "stop_name": "RENE COTY"}, "geometry": {"type": "Point", "coordinates": [2.444038322782514, 48.81127447981165]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "415d28920ba9a3a65e402789afdbc1e167c6ad17", "fields": {"departement": "94", "stop_lat": 48.80984741060125, "code_postal": "94046", "stop_lon": 2.451574134910637, "coord": [48.80984741060125, 2.451574134910637], "stop_id": 3663630, "stop_desc": "175 AVENUE GAMBETTA - 94046", "stop_name": "LYON"}, "geometry": {"type": "Point", "coordinates": [2.451574134910637, 48.80984741060125]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2af704fddc4e3fcf77dc00692224eb35e06c38fc", "fields": {"departement": "94", "stop_lat": 48.8152892427475, "code_postal": "94046", "stop_lon": 2.425469926717237, "coord": [48.8152892427475, 2.425469926717237], "stop_id": 3663637, "stop_desc": "RUE PAUL BERT - 94046", "stop_name": "PAUL BERT"}, "geometry": {"type": "Point", "coordinates": [2.425469926717237, 48.8152892427475]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b66bd61a27cb07b8b06b72c1831032dd64739e02", "fields": {"departement": "93", "stop_lat": 48.93043936274061, "code_postal": "93027", "stop_lon": 2.3862069226314016, "coord": [48.93043936274061, 2.3862069226314016], "stop_id": 3663948, "stop_desc": "4 AVENUE ROGER SALENGRO - 93027", "stop_name": "SIX ROUTES - ROGER SALENGRO-TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.3862069226314016, 48.93043936274061]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c4077f757391ce8e6e31f6c4f4e6121357f6dc3a", "fields": {"departement": "93", "stop_lat": 48.94932063631951, "code_postal": "93072", "stop_lon": 2.3862793551203967, "coord": [48.94932063631951, 2.3862793551203967], "stop_id": 3663952, "stop_desc": "95 BOULEVARD MAXIME GORKI - 93072", "stop_name": "LE GLOBE"}, "geometry": {"type": "Point", "coordinates": [2.3862793551203967, 48.94932063631951]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "257a935c64bc64ac49c060c6baa466fb0cd424b7", "fields": {"departement": "95", "stop_lat": 48.96808091868575, "code_postal": "95268", "stop_lon": 2.411275612988156, "coord": [48.96808091868575, 2.411275612988156], "stop_id": 3663958, "stop_desc": "FACE 191 AVENUE DE STALINGRAD - 95268", "stop_name": "VERDUN"}, "geometry": {"type": "Point", "coordinates": [2.411275612988156, 48.96808091868575]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e90e2bd9ce960ab20d9e6428517e6db275cb3fd4", "fields": {"departement": "93", "stop_lat": 48.92638678455641, "code_postal": "93027", "stop_lon": 2.3849347158324132, "coord": [48.92638678455641, 2.3849347158324132], "stop_id": 3663946, "stop_desc": "80-82 BOULEVARD PASTEUR - 93027", "stop_name": "MICHELET"}, "geometry": {"type": "Point", "coordinates": [2.3849347158324132, 48.92638678455641]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8c6f88f824750044f858349a713a10b07eb28297", "fields": {"departement": "95", "stop_lat": 48.96313358918207, "code_postal": "95268", "stop_lon": 2.4039804292554754, "coord": [48.96313358918207, 2.4039804292554754], "stop_id": 3663956, "stop_desc": "AVENUE DE STALINGRAD - 95268", "stop_name": "DEMUSOIS"}, "geometry": {"type": "Point", "coordinates": [2.4039804292554754, 48.96313358918207]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d5c7a5836d238d4464b8d7997af04a688d35f68c", "fields": {"departement": "93", "stop_lat": 48.989618845747074, "code_postal": "93073", "stop_lon": 2.5274980640072955, "coord": [48.989618845747074, 2.5274980640072955], "stop_id": 3672208, "stop_desc": "RUE DE LA BELLE BORNE - 93073", "stop_name": "AEROVILLE - RUE DE LA BELLE BORNE"}, "geometry": {"type": "Point", "coordinates": [2.5274980640072955, 48.989618845747074]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1db0e6207981eab8369c387f77c93ba5ac038968", "fields": {"departement": "93", "stop_lat": 48.91240595297027, "code_postal": "93010", "stop_lon": 2.481728807753058, "coord": [48.91240595297027, 2.481728807753058], "stop_id": 3672247, "stop_desc": "AVENUE HENRI VARAGNAT - 93010", "stop_name": "ROUTE D'AULNAY - JEAN MOULIN"}, "geometry": {"type": "Point", "coordinates": [2.481728807753058, 48.91240595297027]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1469d5d64eb3072cc12d9b09f352d68be660aea3", "fields": {"departement": "93", "stop_lat": 49.002643994047546, "code_postal": "93073", "stop_lon": 2.5361782210719643, "coord": [49.002643994047546, 2.5361782210719643], "stop_id": 3672228, "stop_desc": "RUE DES TERRES NOIRES - 93073", "stop_name": "RUE DU CHAPITRE"}, "geometry": {"type": "Point", "coordinates": [2.5361782210719643, 49.002643994047546]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4b7bb7d34ac213f5fbc52744b308a4fa230f5d8e", "fields": {"departement": "93", "stop_lat": 49.01048426253027, "code_postal": "93073", "stop_lon": 2.559308602563976, "coord": [49.01048426253027, 2.559308602563976], "stop_id": 3672226, "stop_desc": "AEROPORT CHARLES DE GAULLE (T3) - 93073", "stop_name": "ROISSYPOLE"}, "geometry": {"type": "Point", "coordinates": [2.559308602563976, 49.01048426253027]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "435a8a5937b2cf28fc2ffefd38f9ba7ab88c470e", "fields": {"departement": "95", "stop_lat": 49.004717953484715, "code_postal": "95527", "stop_lon": 2.547769165629998, "coord": [49.004717953484715, 2.547769165629998], "stop_id": 3672227, "stop_desc": "RTE DU NOYER AU CHAT - 95527", "stop_name": "RUE DES VIGNES"}, "geometry": {"type": "Point", "coordinates": [2.547769165629998, 49.004717953484715]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aa2c8e892ac21a8c3d1401d0294aaddc071a7521", "fields": {"departement": "95", "stop_lat": 49.01156449626324, "code_postal": "95527", "stop_lon": 2.5152429686918456, "coord": [49.01156449626324, 2.5152429686918456], "stop_id": 3672217, "stop_desc": "ROUTE DE L'ARPENTEUR - 95527", "stop_name": "ENTRETIEN NORD"}, "geometry": {"type": "Point", "coordinates": [2.5152429686918456, 49.01156449626324]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dbaa3bc473fbfcd55d139f53f3c12c7ae18d156f", "fields": {"departement": "93", "stop_lat": 48.92527506408324, "code_postal": "93007", "stop_lon": 2.4743318967195087, "coord": [48.92527506408324, 2.4743318967195087], "stop_id": 3672254, "stop_desc": "BOULEVARD JACQUES DECOUR - 93007", "stop_name": "LES 4 TOURS"}, "geometry": {"type": "Point", "coordinates": [2.4743318967195087, 48.92527506408324]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a963451f4f12bc6066543b7fa6db920c62f25899", "fields": {"departement": "93", "stop_lat": 48.86194131790334, "code_postal": "93006", "stop_lon": 2.416068713459262, "coord": [48.86194131790334, 2.416068713459262], "stop_id": 3672243, "stop_desc": "87 AV GALLIENI - 93006", "stop_name": "GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.416068713459262, 48.86194131790334]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "adc9f4e0bc1d7c4cc72f17e6ce2e608658a983cc", "fields": {"departement": "93", "stop_lat": 48.864043684925385, "code_postal": "93006", "stop_lon": 2.417093563493888, "coord": [48.864043684925385, 2.417093563493888], "stop_id": 3672244, "stop_desc": "PISTE GARE ROUTIERE - 93006", "stop_name": "GALLIENI-METRO"}, "geometry": {"type": "Point", "coordinates": [2.417093563493888, 48.864043684925385]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b19cc2af5c7d25d0f2514b88654d7bfe9365e351", "fields": {"departement": "93", "stop_lat": 48.91061893584278, "code_postal": "93010", "stop_lon": 2.480564906762945, "coord": [48.91061893584278, 2.480564906762945], "stop_id": 3672246, "stop_desc": "FACE 93 ROUTE D'AULNAY - 93010", "stop_name": "PAUL RENAUD"}, "geometry": {"type": "Point", "coordinates": [2.480564906762945, 48.91061893584278]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f514a9307b9496c2cc0b94919565bad31df1cc75", "fields": {"departement": "75", "stop_lat": 48.84598203749001, "code_postal": "75112", "stop_lon": 2.3739805748450498, "coord": [48.84598203749001, 2.3739805748450498], "stop_id": 3673587, "stop_desc": "FACE 23BIS BOULEVARD DIDEROT - 75112", "stop_name": "GARE DE LYON - DIDEROT"}, "geometry": {"type": "Point", "coordinates": [2.3739805748450498, 48.84598203749001]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0c70584abb7839540aee705799e13dbdd81d0ce1", "fields": {"departement": "75", "stop_lat": 48.87475469777557, "code_postal": "75120", "stop_lon": 2.405706036842063, "coord": [48.87475469777557, 2.405706036842063], "stop_id": 3673610, "stop_desc": "FACE 229 AVENUE GAMBETTA - 75120", "stop_name": "PISCINE DES TOURELLES"}, "geometry": {"type": "Point", "coordinates": [2.405706036842063, 48.87475469777557]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1ffb49b3330a41ce38fafa277770dc15b77c743f", "fields": {"departement": "93", "stop_lat": 48.89336838074409, "code_postal": "93055", "stop_lon": 2.4182563801402783, "coord": [48.89336838074409, 2.4182563801402783], "stop_id": 3673628, "stop_desc": "9 RUE BENJAMIN DELESSERT - 93055", "stop_name": "MANUFACTURE DES TABACS"}, "geometry": {"type": "Point", "coordinates": [2.4182563801402783, 48.89336838074409]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d3daf352c1891e68274746dda0b7822e14f7f877", "fields": {"departement": "75", "stop_lat": 48.85794172235713, "code_postal": "75111", "stop_lon": 2.3817118420922787, "coord": [48.85794172235713, 2.3817118420922787], "stop_id": 3673595, "stop_desc": "136 RUE DE LA ROQUETTE - 75111", "stop_name": "VOLTAIRE - LEON BLUM"}, "geometry": {"type": "Point", "coordinates": [2.3817118420922787, 48.85794172235713]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "593a7c3d0ddc43cd82ff6db14b289fab9c6863d4", "fields": {"departement": "75", "stop_lat": 48.87456611296517, "code_postal": "75120", "stop_lon": 2.4054469161649683, "coord": [48.87456611296517, 2.4054469161649683], "stop_id": 3673611, "stop_desc": "229 AVENUE GAMBETTA - 75120", "stop_name": "PISCINE DES TOURELLES"}, "geometry": {"type": "Point", "coordinates": [2.4054469161649683, 48.87456611296517]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "738f21c17d3e09a8bc7f52c291878d8ce0092482", "fields": {"departement": "75", "stop_lat": 48.85875832342004, "code_postal": "75111", "stop_lon": 2.384954261522689, "coord": [48.85875832342004, 2.384954261522689], "stop_id": 3673597, "stop_desc": "166 RUE DE LA ROQUETTE - 75111", "stop_name": "SAINT-MAUR - SERVAN"}, "geometry": {"type": "Point", "coordinates": [2.384954261522689, 48.85875832342004]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d38cf81e90981bbfd29040f22161a9408aac7444", "fields": {"departement": "77", "stop_lat": 48.83606192531484, "code_postal": "77468", "stop_lon": 2.6557308345695354, "coord": [48.83606192531484, 2.6557308345695354], "stop_id": 3677654, "stop_desc": "BOULEVARD DU SEGRAIS - 77468", "stop_name": "LYCEE JEAN MOULIN"}, "geometry": {"type": "Point", "coordinates": [2.6557308345695354, 48.83606192531484]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "58708d6ae9c5d79588c44e67b5895028f786c7ca", "fields": {"departement": "77", "stop_lat": 48.838687039534086, "code_postal": "77468", "stop_lon": 2.6554610229056164, "coord": [48.838687039534086, 2.6554610229056164], "stop_id": 3677652, "stop_desc": "PISTE DANS LA GARE DES AUTOBUS - 77468", "stop_name": "TORCY RER"}, "geometry": {"type": "Point", "coordinates": [2.6554610229056164, 48.838687039534086]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7b75417f0b31f864cd32ee512298d2bd90a455e7", "fields": {"departement": "93", "stop_lat": 49.01048426253027, "code_postal": "93073", "stop_lon": 2.559308602563976, "coord": [49.01048426253027, 2.559308602563976], "stop_id": 3672286, "stop_desc": "AEROPORT CHARLES DE GAULLE (T3) - 93073", "stop_name": "ROISSYPOLE"}, "geometry": {"type": "Point", "coordinates": [2.559308602563976, 49.01048426253027]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "904c43346ba10854580dd811ddcf4f3660db2ab9", "fields": {"departement": "75", "stop_lat": 48.86294513869873, "code_postal": "75120", "stop_lon": 2.3881319851015386, "coord": [48.86294513869873, 2.3881319851015386], "stop_id": 3673599, "stop_desc": "4 AVENUE GAMBETTA - 75120", "stop_name": "AUGUSTE METIVIER"}, "geometry": {"type": "Point", "coordinates": [2.3881319851015386, 48.86294513869873]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "765800f19156a2bbfafc96eadc876b49efb06431", "fields": {"departement": "93", "stop_lat": 48.92935800046463, "code_postal": "93007", "stop_lon": 2.4795528998155345, "coord": [48.92935800046463, 2.4795528998155345], "stop_id": 3672204, "stop_desc": "12 AVENUE PAUL VAILLANT COUTURIER - 93007", "stop_name": "ROND-POINT PIERRE SEMARD - PAUL VAILLANT-COUTURIER"}, "geometry": {"type": "Point", "coordinates": [2.4795528998155345, 48.92935800046463]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1081dd36c99a859d2febaffbcf635341abd008a3", "fields": {"departement": "75", "stop_lat": 48.858491137349816, "code_postal": "75120", "stop_lon": 2.414565203745361, "coord": [48.858491137349816, 2.414565203745361], "stop_id": 3672178, "stop_desc": "AVENUE DU PROFESSEUR ANDRE LEMIERRE - 75120", "stop_name": "EDOUARD VAILLANT"}, "geometry": {"type": "Point", "coordinates": [2.414565203745361, 48.858491137349816]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "103ca7e135a641a9d8769bd659b886aaa2c78305", "fields": {"departement": "93", "stop_lat": 48.911687882007875, "code_postal": "93010", "stop_lon": 2.4809905365254483, "coord": [48.911687882007875, 2.4809905365254483], "stop_id": 3672187, "stop_desc": "ROUTE D'AULNAY - 93010", "stop_name": "ROUTE D'AULNAY - JEAN MOULIN"}, "geometry": {"type": "Point", "coordinates": [2.4809905365254483, 48.911687882007875]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0fcf4f3a72724adc931edd6d26283bc6691e378d", "fields": {"departement": "95", "stop_lat": 49.004717953484715, "code_postal": "95527", "stop_lon": 2.547769165629998, "coord": [49.004717953484715, 2.547769165629998], "stop_id": 3672162, "stop_desc": "RTE DU NOYER AU CHAT - 95527", "stop_name": "RUE DES VIGNES"}, "geometry": {"type": "Point", "coordinates": [2.547769165629998, 49.004717953484715]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c718be4cae93ca3565664b73da991f3606a89dad", "fields": {"departement": "93", "stop_lat": 48.92212592273542, "code_postal": "93007", "stop_lon": 2.469659588543364, "coord": [48.92212592273542, 2.469659588543364], "stop_id": 3672165, "stop_desc": "66 AVENUE DE SUFFREN - 93007", "stop_name": "MATHILDE EMILIE"}, "geometry": {"type": "Point", "coordinates": [2.469659588543364, 48.92212592273542]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6c306083a2376661e4a0a2473df7e4a832fe4e7e", "fields": {"departement": "92", "stop_lat": 48.821319799672125, "code_postal": "92048", "stop_lon": 2.2272109871942822, "coord": [48.821319799672125, 2.2272109871942822], "stop_id": 4473406, "stop_desc": "12 RUE MARCEL ALLEGOT - 92048", "stop_name": "11 NOVEMBRE"}, "geometry": {"type": "Point", "coordinates": [2.2272109871942822, 48.821319799672125]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c5e4d602725ead442f8707e912b7efaced86eea3", "fields": {"departement": "92", "stop_lat": 48.80847209310078, "code_postal": "92048", "stop_lon": 2.243254230057932, "coord": [48.80847209310078, 2.243254230057932], "stop_id": 4473416, "stop_desc": "FACE 50 RUE HENRI BARBUSSE - 92048", "stop_name": "ANDRE SCHOCK"}, "geometry": {"type": "Point", "coordinates": [2.243254230057932, 48.80847209310078]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "88a491fff815c4c33c41643d3c8af1562ce52948", "fields": {"departement": "92", "stop_lat": 48.82998578596049, "code_postal": "92040", "stop_lon": 2.2648465117520153, "coord": [48.82998578596049, 2.2648465117520153], "stop_id": 4473548, "stop_desc": "FACE 23 RUE CAMILLE DESMOULINS - 92040", "stop_name": "ISSY-VAL DE SEINE RER"}, "geometry": {"type": "Point", "coordinates": [2.2648465117520153, 48.82998578596049]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9eb03940bb4917724a5389f235f2f65f7b6f4757", "fields": {"departement": "92", "stop_lat": 48.8286842047977, "code_postal": "92040", "stop_lon": 2.2675708836419797, "coord": [48.8286842047977, 2.2675708836419797], "stop_id": 4473550, "stop_desc": "FACE 58 BOULEVARD GALLIENI - 92040", "stop_name": "PRESIDENT ROBERT SCHUMAN"}, "geometry": {"type": "Point", "coordinates": [2.2675708836419797, 48.8286842047977]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "064128e9fafd748d1c520013b27b8653bb1563e2", "fields": {"departement": "92", "stop_lat": 48.82591911767163, "code_postal": "92040", "stop_lon": 2.2731010899323922, "coord": [48.82591911767163, 2.2731010899323922], "stop_id": 4473553, "stop_desc": "FACE 29 RUE KLEBER - 92040", "stop_name": "MAIRIE D'ISSY-METRO"}, "geometry": {"type": "Point", "coordinates": [2.2731010899323922, 48.82591911767163]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d267b4e3a9741aaa001f9e092717fbbda014e114", "fields": {"departement": "92", "stop_lat": 48.81377438920338, "code_postal": "92046", "stop_lon": 2.286915490287406, "coord": [48.81377438920338, 2.286915490287406], "stop_id": 4473564, "stop_desc": "BOULEVARD HENRI BARBUSSE - 92046", "stop_name": "ROND-POINT HENRI BARBUSSE"}, "geometry": {"type": "Point", "coordinates": [2.286915490287406, 48.81377438920338]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ed83ab89dbb2a9118518b067347f7039d8a0ca3d", "fields": {"departement": "92", "stop_lat": 48.81094253979071, "code_postal": "92046", "stop_lon": 2.285271653231755, "coord": [48.81094253979071, 2.285271653231755], "stop_id": 4473566, "stop_desc": "BOULEVARD HENRI BARBUSSE - 92046", "stop_name": "BARBUSSE-VEDRINES"}, "geometry": {"type": "Point", "coordinates": [2.285271653231755, 48.81094253979071]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "08ef588f1f0630bc7145e094fd1dea42d5f77edf", "fields": {"departement": "92", "stop_lat": 48.81202468926008, "code_postal": "92046", "stop_lon": 2.2943473772686493, "coord": [48.81202468926008, 2.2943473772686493], "stop_id": 4473571, "stop_desc": "44 R DU 19 MARS 1962 - 92046", "stop_name": "ROND-POINT GAGARINE"}, "geometry": {"type": "Point", "coordinates": [2.2943473772686493, 48.81202468926008]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2124a06d855155cace4d969e64524c9856a270a4", "fields": {"departement": "92", "stop_lat": 48.811019559519394, "code_postal": "92020", "stop_lon": 2.2987300300980564, "coord": [48.811019559519394, 2.2987300300980564], "stop_id": 4473572, "stop_desc": "7 BOULEVARD DE STALINGRAD - 92020", "stop_name": "MAISON BLANCHE"}, "geometry": {"type": "Point", "coordinates": [2.2987300300980564, 48.811019559519394]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "10fa2652f58946065dc070c44a7decc65ac260ac", "fields": {"departement": "92", "stop_lat": 48.811181330400984, "code_postal": "92020", "stop_lon": 2.2987026936806028, "coord": [48.811181330400984, 2.2987026936806028], "stop_id": 4473573, "stop_desc": "10 BD DE STALINGRAD - 92020", "stop_name": "MAISON BLANCHE"}, "geometry": {"type": "Point", "coordinates": [2.2987026936806028, 48.811181330400984]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b65c821722dbc23c1504c3e1a70949e6ebe95190", "fields": {"departement": "94", "stop_lat": 48.80980304722781, "code_postal": "94003", "stop_lon": 2.3273617927425523, "coord": [48.80980304722781, 2.3273617927425523], "stop_id": 4473582, "stop_desc": "AV LAPLACE - 94003", "stop_name": "VACHE NOIRE - CENTRE COMMERCIAL"}, "geometry": {"type": "Point", "coordinates": [2.3273617927425523, 48.80980304722781]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "81842016be0a3768b6a5338ccb2c80a26ab97469", "fields": {"departement": "94", "stop_lat": 48.80784404743202, "code_postal": "94003", "stop_lon": 2.3330228065226883, "coord": [48.80784404743202, 2.3330228065226883], "stop_id": 4473585, "stop_desc": "AVENUE LAPLACE - 94003", "stop_name": "LAPLACE RER"}, "geometry": {"type": "Point", "coordinates": [2.3330228065226883, 48.80784404743202]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "588dba7bb575c783cb001eb4827ddc564c74296f", "fields": {"departement": "94", "stop_lat": 48.80295475303635, "code_postal": "94003", "stop_lon": 2.3383295555894, "coord": [48.80295475303635, 2.3383295555894], "stop_id": 4473590, "stop_desc": "AVENUE PAUL VAILLANT COUTURIER - 94003", "stop_name": "MAISON DU GRAND CEDRE"}, "geometry": {"type": "Point", "coordinates": [2.3383295555894, 48.80295475303635]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "56b4e59307d58179f1d72d58d87a571a468e2f6f", "fields": {"departement": "94", "stop_lat": 48.80239748712019, "code_postal": "94003", "stop_lon": 2.3397309498293573, "coord": [48.80239748712019, 2.3397309498293573], "stop_id": 4473592, "stop_desc": "12 RUE DU GENERAL MALLERET-JOINVILLE - 94003", "stop_name": "MALLERET-JOINVILLE"}, "geometry": {"type": "Point", "coordinates": [2.3397309498293573, 48.80239748712019]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b0c65156ee72d82c54f7f562b30be82dff35e892", "fields": {"departement": "94", "stop_lat": 48.80821535579136, "code_postal": "94041", "stop_lon": 2.3758316781288795, "coord": [48.80821535579136, 2.3758316781288795], "stop_id": 4473604, "stop_desc": "35 AVENUE HENRI BARBUSSE - 94041", "stop_name": "VERDUN-BARBUSSE"}, "geometry": {"type": "Point", "coordinates": [2.3758316781288795, 48.80821535579136]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "848f5b1a6ddf859c8bce9f851a96bcc574c3b673", "fields": {"departement": "94", "stop_lat": 48.81010133140996, "code_postal": "94041", "stop_lon": 2.380092353192655, "coord": [48.81010133140996, 2.380092353192655], "stop_id": 4473606, "stop_desc": "100 RUE JEAN LE GALLEU - 94041", "stop_name": "JEAN LE GALLEU"}, "geometry": {"type": "Point", "coordinates": [2.380092353192655, 48.81010133140996]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3c011d55f37b8d2906f0c69e81f0cdd58269df78", "fields": {"departement": "94", "stop_lat": 48.81513779459741, "code_postal": "94041", "stop_lon": 2.3936785151763447, "coord": [48.81513779459741, 2.3936785151763447], "stop_id": 4473614, "stop_desc": "53 R MOLIERE - 94041", "stop_name": "MOLIERE"}, "geometry": {"type": "Point", "coordinates": [2.3936785151763447, 48.81513779459741]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f738f7032d7fa683d98cf8e6210ac4e4b22fd1c9", "fields": {"departement": "94", "stop_lat": 48.81561459843082, "code_postal": "94041", "stop_lon": 2.392712769672973, "coord": [48.81561459843082, 2.392712769672973], "stop_id": 4473615, "stop_desc": "58 AVENUE GEORGES GOSNAT (SUR RAMPE D'ACCES AU PONT SNCF) - 94041", "stop_name": "MOLIERE"}, "geometry": {"type": "Point", "coordinates": [2.392712769672973, 48.81561459843082]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4bb374701a8d84f61dfd44e2e7f778c6fffa0996", "fields": {"departement": "92", "stop_lat": 48.8100625811712, "code_postal": "92049", "stop_lon": 2.318217240731849, "coord": [48.8100625811712, 2.318217240731849], "stop_id": 4473623, "stop_desc": "0 AV MARX DORMOY - 92049", "stop_name": "AVENUE HENRI GINOUX"}, "geometry": {"type": "Point", "coordinates": [2.318217240731849, 48.8100625811712]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "84b3fdebe57aada3bf853268fc71066d3d080b5c", "fields": {"departement": "92", "stop_lat": 48.81142499690889, "code_postal": "92049", "stop_lon": 2.301914059517671, "coord": [48.81142499690889, 2.301914059517671], "stop_id": 4473626, "stop_desc": "242 AV MARX DORMOY - 92049", "stop_name": "CHATILLON-MONTROUGE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.301914059517671, 48.81142499690889]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5e98f54a40bc5b13678600f15bc5414ad92c7cc4", "fields": {"departement": "92", "stop_lat": 48.82770486209949, "code_postal": "92040", "stop_lon": 2.26810308702108, "coord": [48.82770486209949, 2.26810308702108], "stop_id": 4473629, "stop_desc": "6-8 BOULEVARD DES FRERES VOISIN - 92040", "stop_name": "PRESIDENT ROBERT SCHUMAN"}, "geometry": {"type": "Point", "coordinates": [2.26810308702108, 48.82770486209949]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3bdc960c9112e33299fe9816a89273e3d1e2770d", "fields": {"departement": "92", "stop_lat": 48.816725505628916, "code_postal": "92040", "stop_lon": 2.2745959035011443, "coord": [48.816725505628916, 2.2745959035011443], "stop_id": 4473634, "stop_desc": "130 AV DE LA PAIX - 92040", "stop_name": "GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.2745959035011443, 48.816725505628916]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e82a5612a8ac0fa6649fbee066a2f6cb7d3aca61", "fields": {"departement": "92", "stop_lat": 48.810133582426474, "code_postal": "92007", "stop_lon": 2.313236719785465, "coord": [48.810133582426474, 2.313236719785465], "stop_id": 4473645, "stop_desc": "FACE 114 AVENUE MARX DORMOY - 92007", "stop_name": "CIMETIERE DE BAGNEUX"}, "geometry": {"type": "Point", "coordinates": [2.313236719785465, 48.810133582426474]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9e030e26877b33f6f2a0f0ea3469a7311a5f3d48", "fields": {"departement": "94", "stop_lat": 48.80784404743202, "code_postal": "94003", "stop_lon": 2.3330228065226883, "coord": [48.80784404743202, 2.3330228065226883], "stop_id": 4473651, "stop_desc": "AVENUE LAPLACE - 94003", "stop_name": "LAPLACE RER"}, "geometry": {"type": "Point", "coordinates": [2.3330228065226883, 48.80784404743202]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b58b4e08df4081604d283c36d320c305ce82db7d", "fields": {"departement": "94", "stop_lat": 48.80821535579136, "code_postal": "94041", "stop_lon": 2.3758316781288795, "coord": [48.80821535579136, 2.3758316781288795], "stop_id": 4473661, "stop_desc": "35 AVENUE HENRI BARBUSSE - 94041", "stop_name": "VERDUN-BARBUSSE"}, "geometry": {"type": "Point", "coordinates": [2.3758316781288795, 48.80821535579136]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4f23e3d5c62503edb924542835cde9a02acdba3c", "fields": {"departement": "94", "stop_lat": 48.812687002283674, "code_postal": "94041", "stop_lon": 2.387279817790889, "coord": [48.812687002283674, 2.387279817790889], "stop_id": 4473664, "stop_desc": "RUE GEORGES GOSNAT - 94041", "stop_name": "HOTEL DE VILLE D'IVRY"}, "geometry": {"type": "Point", "coordinates": [2.387279817790889, 48.812687002283674]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eb03b8b826a60af2bcf549cb0b6fef0820655e9d", "fields": {"departement": "94", "stop_lat": 48.81448967910098, "code_postal": "94041", "stop_lon": 2.3957463869809015, "coord": [48.81448967910098, 2.3957463869809015], "stop_id": 4473667, "stop_desc": "31 BD DE BRANDEBOURG - 94041", "stop_name": "INSURRECTION D'AOUT 1944"}, "geometry": {"type": "Point", "coordinates": [2.3957463869809015, 48.81448967910098]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a73292b901fa063fcedfb5e5ed00c8b4ab5a59fe", "fields": {"departement": "93", "stop_lat": 48.95732552622408, "code_postal": "93005", "stop_lon": 2.463021846246865, "coord": [48.95732552622408, 2.463021846246865], "stop_id": 4473744, "stop_desc": "RUE ROBERT BREMOND (VOIE PRIVEE DE GARONOR) - 93005", "stop_name": "GARONOR-PORTE SUD"}, "geometry": {"type": "Point", "coordinates": [2.463021846246865, 48.95732552622408]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "014e6ff43fda95820a5848cd22ee231c8267960c", "fields": {"departement": "94", "stop_lat": 48.76378088217269, "code_postal": "94073", "stop_lon": 2.3694086738771816, "coord": [48.76378088217269, 2.3694086738771816], "stop_id": 4480120, "stop_desc": "ESPLANADE AUGUSTE PERRET - 94073", "stop_name": "AUGUSTE PERRET"}, "geometry": {"type": "Point", "coordinates": [2.3694086738771816, 48.76378088217269]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "296734fb2ad1a3c08b9b5b2c8b3bf6edbf60b0ea", "fields": {"departement": "92", "stop_lat": 48.84773360554437, "code_postal": "92064", "stop_lon": 2.208525820752074, "coord": [48.84773360554437, 2.208525820752074], "stop_id": 4532990, "stop_desc": "FACE AU 59 AVENUE DU MARECHAL FOCH - 92064", "stop_name": "EGLISE DE SAINT-CLOUD"}, "geometry": {"type": "Point", "coordinates": [2.208525820752074, 48.84773360554437]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0ebbf169345ed4c8a896e5e7143c17363324fed7", "fields": {"departement": "92", "stop_lat": 48.85779164506045, "code_postal": "92063", "stop_lon": 2.193722685576675, "coord": [48.85779164506045, 2.193722685576675], "stop_id": 4532996, "stop_desc": "FACE 194 R DU LIEUTENANT COLONEL DE MONTBRISON - 92063", "stop_name": "EGLISE DE BUZENVAL"}, "geometry": {"type": "Point", "coordinates": [2.193722685576675, 48.85779164506045]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "02011c846d2414aedad977029acb163f50a097d2", "fields": {"departement": "92", "stop_lat": 48.85852355105872, "code_postal": "92063", "stop_lon": 2.1895799888311083, "coord": [48.85852355105872, 2.1895799888311083], "stop_id": 4532998, "stop_desc": "FACE 341 ROUTE DE L'EMPEREUR - 92063", "stop_name": "HENRI REGNAULT"}, "geometry": {"type": "Point", "coordinates": [2.1895799888311083, 48.85852355105872]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e7d81734c3215f0b759a895cf820d5ec2e655c87", "fields": {"departement": "92", "stop_lat": 48.85852355105872, "code_postal": "92063", "stop_lon": 2.1895799888311083, "coord": [48.85852355105872, 2.1895799888311083], "stop_id": 4532999, "stop_desc": "FACE 341 ROUTE DE L'EMPEREUR - 92063", "stop_name": "HENRI REGNAULT"}, "geometry": {"type": "Point", "coordinates": [2.1895799888311083, 48.85852355105872]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "22c436e405518a65408deabf2057d8ccc764a92c", "fields": {"departement": "92", "stop_lat": 48.854543577223495, "code_postal": "92033", "stop_lon": 2.1982669949087064, "coord": [48.854543577223495, 2.1982669949087064], "stop_id": 4533000, "stop_desc": "FACE 103 R DU COLONEL DE ROCHEBRUNE - 92033", "stop_name": "LES SUISSES"}, "geometry": {"type": "Point", "coordinates": [2.1982669949087064, 48.854543577223495]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eeb3fc7560bb52b83ffb63a20216e8273323cef1", "fields": {"departement": "92", "stop_lat": 48.85308208323118, "code_postal": "92033", "stop_lon": 2.2012671345787966, "coord": [48.85308208323118, 2.2012671345787966], "stop_id": 4533001, "stop_desc": "153 R DE BUZENVAL - 92033", "stop_name": "LABORATOIRE DEBAT"}, "geometry": {"type": "Point", "coordinates": [2.2012671345787966, 48.85308208323118]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bdcf793c34293fc09f7bdd0709b841a2d15319b3", "fields": {"departement": "92", "stop_lat": 48.85971741782114, "code_postal": "92064", "stop_lon": 2.2206731916689293, "coord": [48.85971741782114, 2.2206731916689293], "stop_id": 4533007, "stop_desc": "FACE 37 AV DE SURESNES - 92064", "stop_name": "AVENUE DE SURESNES"}, "geometry": {"type": "Point", "coordinates": [2.2206731916689293, 48.85971741782114]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6a17207a7d1d4e25141ba22dd64066cbbcbfd0d7", "fields": {"departement": "92", "stop_lat": 48.857299065314415, "code_postal": "92064", "stop_lon": 2.211130797269781, "coord": [48.857299065314415, 2.211130797269781], "stop_id": 4533012, "stop_desc": "222 BOULEVARD DE LA REPUBLIQUE - 92064", "stop_name": "LA BERENGERE"}, "geometry": {"type": "Point", "coordinates": [2.211130797269781, 48.857299065314415]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "37a97eb14f974dca8b738be8e66fd84da7d3d41c", "fields": {"departement": "92", "stop_lat": 48.85330087874515, "code_postal": "92064", "stop_lon": 2.2122981557045462, "coord": [48.85330087874515, 2.2122981557045462], "stop_id": 4533013, "stop_desc": "FACE 148 BOULEVARD DE LA REPUBLIQUE - 92064", "stop_name": "MARIE BONAPARTE"}, "geometry": {"type": "Point", "coordinates": [2.2122981557045462, 48.85330087874515]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "092a5b97c25efeee1224e573a2db32953261cc67", "fields": {"departement": "92", "stop_lat": 48.85319334335621, "code_postal": "92064", "stop_lon": 2.2125980376734167, "coord": [48.85319334335621, 2.2125980376734167], "stop_id": 4533014, "stop_desc": "150 BOULEVARD DE LA REPUBLIQUE - 92064", "stop_name": "MARIE BONAPARTE"}, "geometry": {"type": "Point", "coordinates": [2.2125980376734167, 48.85319334335621]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6e275e59e3e49fc7362a722b0d3b601a972bd8ae", "fields": {"departement": "92", "stop_lat": 48.84638213069654, "code_postal": "92064", "stop_lon": 2.213853591547022, "coord": [48.84638213069654, 2.213853591547022], "stop_id": 4533018, "stop_desc": "FACE 82 BD DE LA REPUBLIQUE - 92064", "stop_name": "MONTRETOUT"}, "geometry": {"type": "Point", "coordinates": [2.213853591547022, 48.84638213069654]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "751a5c7fc66fc6e207ccffa13314efbfc09f1b38", "fields": {"departement": "92", "stop_lat": 48.8420337195173, "code_postal": "92064", "stop_lon": 2.206878775816084, "coord": [48.8420337195173, 2.206878775816084], "stop_id": 4533022, "stop_desc": "5 AV DU GENERAL LECLERC - 92064", "stop_name": "GENERAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.206878775816084, 48.8420337195173]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8d39dfb4a330b4a7e842761ec98a59205a316993", "fields": {"departement": "92", "stop_lat": 48.842743987116464, "code_postal": "92064", "stop_lon": 2.207108471055454, "coord": [48.842743987116464, 2.207108471055454], "stop_id": 4533023, "stop_desc": "4 BOULEVARD DE LA REPUBLIQUE - 92064", "stop_name": "GENERAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.207108471055454, 48.842743987116464]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a69824b7c0c9e152d8c9042bd970e9098ade29e0", "fields": {"departement": "92", "stop_lat": 48.82965192698755, "code_postal": "92077", "stop_lon": 2.1939502623425167, "coord": [48.82965192698755, 2.1939502623425167], "stop_id": 4533026, "stop_desc": "61 R DE SAINT-CLOUD - 92077", "stop_name": "PRADIER"}, "geometry": {"type": "Point", "coordinates": [2.1939502623425167, 48.82965192698755]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ede46b163ae3cbc913f8b05e1305ae09b05b597f", "fields": {"departement": "92", "stop_lat": 48.8265261849705, "code_postal": "92077", "stop_lon": 2.1882281444753424, "coord": [48.8265261849705, 2.1882281444753424], "stop_id": 4533029, "stop_desc": "FACE 3 R DE VERSAILLES - 92077", "stop_name": "EGLISE DE VILLE D'AVRAY"}, "geometry": {"type": "Point", "coordinates": [2.1882281444753424, 48.8265261849705]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8dc5286b73cf35d1a2a36ccc684498739ee4dd4c", "fields": {"departement": "92", "stop_lat": 48.82644558572359, "code_postal": "92077", "stop_lon": 2.1884597835056585, "coord": [48.82644558572359, 2.1884597835056585], "stop_id": 4533030, "stop_desc": "3 R DE VERSAILLES - 92077", "stop_name": "EGLISE DE VILLE D'AVRAY"}, "geometry": {"type": "Point", "coordinates": [2.1884597835056585, 48.82644558572359]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "34e28fdfdf2b6b083126f72e714e0e8d5057faf7", "fields": {"departement": "92", "stop_lat": 48.82471763026116, "code_postal": "92077", "stop_lon": 2.1866135386177796, "coord": [48.82471763026116, 2.1866135386177796], "stop_id": 4533032, "stop_desc": "17 R DE VERSAILLES - 92077", "stop_name": "JEAN ROSTAND"}, "geometry": {"type": "Point", "coordinates": [2.1866135386177796, 48.82471763026116]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4a4665d4fe4016c515048fe22ddfddad9c0f6723", "fields": {"departement": "92", "stop_lat": 48.82181815461122, "code_postal": "92077", "stop_lon": 2.1823753228068288, "coord": [48.82181815461122, 2.1823753228068288], "stop_id": 4533034, "stop_desc": "63 RUE DE VERSAILLES - 92077", "stop_name": "LES ETANGS"}, "geometry": {"type": "Point", "coordinates": [2.1823753228068288, 48.82181815461122]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e57cb979891f3805a4c811c0353243992ac671c3", "fields": {"departement": "92", "stop_lat": 48.81946277500648, "code_postal": "92077", "stop_lon": 2.1687039156724053, "coord": [48.81946277500648, 2.1687039156724053], "stop_id": 4533037, "stop_desc": "180 RUE DE VERSAILLES - 92077", "stop_name": "LES PEUPLIERS"}, "geometry": {"type": "Point", "coordinates": [2.1687039156724053, 48.81946277500648]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fe5ded9e83ce59b7434b695854b5f67cb0248cf5", "fields": {"departement": "92", "stop_lat": 48.81853409601028, "code_postal": "92077", "stop_lon": 2.16663818966603, "coord": [48.81853409601028, 2.16663818966603], "stop_id": 4533040, "stop_desc": "201-207 RTE DE VERSAILLES - 92077", "stop_name": "FAUSSES REPOSES"}, "geometry": {"type": "Point", "coordinates": [2.16663818966603, 48.81853409601028]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f81022dca746973e09131277e8dfac87bf99df0a", "fields": {"departement": "78", "stop_lat": 48.81291614866957, "code_postal": "78646", "stop_lon": 2.154136675556631, "coord": [48.81291614866957, 2.154136675556631], "stop_id": 4533045, "stop_desc": "55 AV DES ETATS-UNIS - 78646", "stop_name": "GAUTHIER DE CLAGNY"}, "geometry": {"type": "Point", "coordinates": [2.154136675556631, 48.81291614866957]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1cff848d08eeeeba0558611f18f9388f56db1aef", "fields": {"departement": "93", "stop_lat": 48.87984142225998, "code_postal": "93064", "stop_lon": 2.4776046871341837, "coord": [48.87984142225998, 2.4776046871341837], "stop_id": 4557268, "stop_desc": "FACE 106 AVENUE DU GENERAL DE GAULLE - 93064", "stop_name": "LEON BLUM"}, "geometry": {"type": "Point", "coordinates": [2.4776046871341837, 48.87984142225998]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9c22495f718cedc8806e66b3c3b8dfd253bb8273", "fields": {"departement": "93", "stop_lat": 48.87379559973046, "code_postal": "93064", "stop_lon": 2.4829019304695374, "coord": [48.87379559973046, 2.4829019304695374], "stop_id": 4557271, "stop_desc": "4 RUE DU GENERAL GALLIENI - 93064", "stop_name": "EGLISE DE ROSNY-SOUS-BOIS"}, "geometry": {"type": "Point", "coordinates": [2.4829019304695374, 48.87379559973046]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7119d9b142e2ba1d2c7e6b3a405e3450e300407a", "fields": {"departement": "93", "stop_lat": 48.87181530331215, "code_postal": "93064", "stop_lon": 2.4854032059016777, "coord": [48.87181530331215, 2.4854032059016777], "stop_id": 4557273, "stop_desc": "RUE PAUL CAVARE - 93064", "stop_name": "MAIRIE - ROSNY-SOUS-BOIS RER"}, "geometry": {"type": "Point", "coordinates": [2.4854032059016777, 48.87181530331215]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "832e385078734ad1b541fb1dac375efd4b927821", "fields": {"departement": "93", "stop_lat": 48.87103141482069, "code_postal": "93064", "stop_lon": 2.4869949642615246, "coord": [48.87103141482069, 2.4869949642615246], "stop_id": 4557274, "stop_desc": "7 RUE DU GENERAL LECLERC - 93064", "stop_name": "MAIRIE - ROSNY-SOUS-BOIS RER"}, "geometry": {"type": "Point", "coordinates": [2.4869949642615246, 48.87103141482069]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "99c29f88409ecdcbc2b5222b10816e6beccb314e", "fields": {"departement": "93", "stop_lat": 48.86096389943349, "code_postal": "93049", "stop_lon": 2.5018675686449208, "coord": [48.86096389943349, 2.5018675686449208], "stop_id": 4557282, "stop_desc": "28-30 RUE DE LA MARNE - 93049", "stop_name": "BOUREAU - GUERINIERE"}, "geometry": {"type": "Point", "coordinates": [2.5018675686449208, 48.86096389943349]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "79bd88c1307fc23f6c6149e12157568db33f412a", "fields": {"departement": "94", "stop_lat": 48.854684044140335, "code_postal": "94058", "stop_lon": 2.50014518401965, "coord": [48.854684044140335, 2.50014518401965], "stop_id": 4557285, "stop_desc": "23 AVENUE DE NEUILLY PLAISANCE - 94058", "stop_name": "LES JONCS MARINS"}, "geometry": {"type": "Point", "coordinates": [2.50014518401965, 48.854684044140335]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "07ca702cf61beeee15c40c00ecff82642445b191", "fields": {"departement": "94", "stop_lat": 48.85237564705022, "code_postal": "94058", "stop_lon": 2.4991301270304054, "coord": [48.85237564705022, 2.4991301270304054], "stop_id": 4557287, "stop_desc": "FACE 30 RUE PIERRE BARBERET - 94058", "stop_name": "MARECHAL LYAUTEY"}, "geometry": {"type": "Point", "coordinates": [2.4991301270304054, 48.85237564705022]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1da2d0124520cd2c2f756e30317f3115f59f4de7", "fields": {"departement": "94", "stop_lat": 48.84608360378214, "code_postal": "94058", "stop_lon": 2.499709656804693, "coord": [48.84608360378214, 2.499709656804693], "stop_id": 4557304, "stop_desc": "197 AVENUE DU GENERAL DE GAULLE - 94058", "stop_name": "VICTOR BASCH"}, "geometry": {"type": "Point", "coordinates": [2.499709656804693, 48.84608360378214]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "82e02174c7c52f5e3f22801bfb5e0751e30eb3a3", "fields": {"departement": "94", "stop_lat": 48.84287979631081, "code_postal": "94058", "stop_lon": 2.502790576045101, "coord": [48.84287979631081, 2.502790576045101], "stop_id": 4557306, "stop_desc": "FACE 72BIS AVENUE LEDRU-ROLLIN - 94058", "stop_name": "LEDRU-ROLLIN - GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.502790576045101, 48.84287979631081]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "58b4c428bde1e637c4f43caa2713517d2b50628e", "fields": {"departement": "94", "stop_lat": 48.84093592361724, "code_postal": "94058", "stop_lon": 2.4981004635094584, "coord": [48.84093592361724, 2.4981004635094584], "stop_id": 4557309, "stop_desc": "44 BIS-46 AVENUE LEDRU-ROLLIN - 94058", "stop_name": "LE PARC"}, "geometry": {"type": "Point", "coordinates": [2.4981004635094584, 48.84093592361724]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "35c3eb1667bcd69cec9ccf451ec63dbd7d8f49a4", "fields": {"departement": "94", "stop_lat": 48.81944954485311, "code_postal": "94017", "stop_lon": 2.502416419140526, "coord": [48.81944954485311, 2.502416419140526], "stop_id": 4557321, "stop_desc": "78 BD GABRIEL PERI - 94017", "stop_name": "GABRIEL PERI - HENRI BARBUSSE"}, "geometry": {"type": "Point", "coordinates": [2.502416419140526, 48.81944954485311]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "edb0e45ac4c9fe27c0a46dd8f888773c76d48b6a", "fields": {"departement": "94", "stop_lat": 48.82131695057167, "code_postal": "94017", "stop_lon": 2.5101805593489552, "coord": [48.82131695057167, 2.5101805593489552], "stop_id": 4557326, "stop_desc": "FACE 3 BOULEVARD GABRIEL PERI - 94017", "stop_name": "CITES JARDINS"}, "geometry": {"type": "Point", "coordinates": [2.5101805593489552, 48.82131695057167]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "562861473b6d25e2830bee13ed1d4bbe15008209", "fields": {"departement": "94", "stop_lat": 48.80719728561856, "code_postal": "94068", "stop_lon": 2.510106312999258, "coord": [48.80719728561856, 2.510106312999258], "stop_id": 4557335, "stop_desc": "PISTE GARE ROUTIERE - 94068", "stop_name": "CHAMPIGNY - SAINT-MAUR RER"}, "geometry": {"type": "Point", "coordinates": [2.510106312999258, 48.80719728561856]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4701b0f3d9cc699b9542cb083afa5487074d223e", "fields": {"departement": "94", "stop_lat": 48.81408866114471, "code_postal": "94017", "stop_lon": 2.5116534666993484, "coord": [48.81408866114471, 2.5116534666993484], "stop_id": 4557336, "stop_desc": "48 RUE ALBERT THOMAS - 94017", "stop_name": "MAIRIE DE CHAMPIGNY"}, "geometry": {"type": "Point", "coordinates": [2.5116534666993484, 48.81408866114471]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1c863e5bc10b1e1d9151ad24816759171b379d9a", "fields": {"departement": "93", "stop_lat": 48.86706787800096, "code_postal": "93064", "stop_lon": 2.4940674139761208, "coord": [48.86706787800096, 2.4940674139761208], "stop_id": 4557344, "stop_desc": "97 RUE DU GENERAL LECLERC - 93064", "stop_name": "PAUL BERT"}, "geometry": {"type": "Point", "coordinates": [2.4940674139761208, 48.86706787800096]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8a232b6b38beba3998632dd10e77b143d38db1d4", "fields": {"departement": "75", "stop_lat": 48.895244710514795, "code_postal": "75117", "stop_lon": 2.312611177830038, "coord": [48.895244710514795, 2.312611177830038], "stop_id": 4574146, "stop_desc": "0 GARE ROUTIERE - 75117", "stop_name": "PORTE DE CLICHY"}, "geometry": {"type": "Point", "coordinates": [2.312611177830038, 48.895244710514795]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4d3b128e33b45f2e8268a68bfd33f8f1d67128a0", "fields": {"departement": "75", "stop_lat": 48.895244710514795, "code_postal": "75117", "stop_lon": 2.312611177830038, "coord": [48.895244710514795, 2.312611177830038], "stop_id": 4574147, "stop_desc": "0 GARE ROUTIERE - 75117", "stop_name": "PORTE DE CLICHY"}, "geometry": {"type": "Point", "coordinates": [2.312611177830038, 48.895244710514795]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "739581cac4dffffe6176adbc1e3922b05379a6ce", "fields": {"departement": "93", "stop_lat": 48.91505477172237, "code_postal": "93070", "stop_lon": 2.3373774020111786, "coord": [48.91505477172237, 2.3373774020111786], "stop_id": 4574160, "stop_desc": "8 BIS BOULEVARD JEAN JAURES - 93070", "stop_name": "LANDY - JAURES"}, "geometry": {"type": "Point", "coordinates": [2.3373774020111786, 48.91505477172237]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7d37eef14879a2e57214460d38bec0148f553187", "fields": {"departement": "93", "stop_lat": 48.914577941456194, "code_postal": "93066", "stop_lon": 2.34838112314179, "coord": [48.914577941456194, 2.34838112314179], "stop_id": 4574163, "stop_desc": "149 RUE DU LANDY - 93066", "stop_name": "LANDY - PLEYEL"}, "geometry": {"type": "Point", "coordinates": [2.34838112314179, 48.914577941456194]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bbe231706a197fb1fa083c5542dca8a36073969f", "fields": {"departement": "93", "stop_lat": 48.918055082500004, "code_postal": "93066", "stop_lon": 2.355159090829287, "coord": [48.918055082500004, 2.355159090829287], "stop_id": 4574169, "stop_desc": "3 AVENUE FRANCOIS MITTERRAND - 93066", "stop_name": "AVENUE DES FRUITIERS"}, "geometry": {"type": "Point", "coordinates": [2.355159090829287, 48.918055082500004]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a92e263a02dc92dd8267396f702ed0e8e6496057", "fields": {"departement": "93", "stop_lat": 48.91837810158188, "code_postal": "93066", "stop_lon": 2.358295561671536, "coord": [48.91837810158188, 2.358295561671536], "stop_id": 4574172, "stop_desc": "3 RUE FRANCIS DE PRESSENSE - 93066", "stop_name": "WILSON - DE PRESSENSE"}, "geometry": {"type": "Point", "coordinates": [2.358295561671536, 48.91837810158188]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "835ee86024e7c8a92ecb57af53a0d8ac06812e5b", "fields": {"departement": "93", "stop_lat": 48.91910535695853, "code_postal": "93066", "stop_lon": 2.3618959025746076, "coord": [48.91910535695853, 2.3618959025746076], "stop_id": 4574174, "stop_desc": "AVENUE DU STADE DE FRANCE - 93066", "stop_name": "LA PLAINE - STADE DE FRANCE RER"}, "geometry": {"type": "Point", "coordinates": [2.3618959025746076, 48.91910535695853]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "228534070bcea7d8a5689eb6bc40289cdca125d7", "fields": {"departement": "93", "stop_lat": 48.91528499578044, "code_postal": "93066", "stop_lon": 2.3658892956966664, "coord": [48.91528499578044, 2.3658892956966664], "stop_id": 4574175, "stop_desc": "15 RUE DU LANDY - 93066", "stop_name": "MURGER"}, "geometry": {"type": "Point", "coordinates": [2.3658892956966664, 48.91528499578044]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f31035b0f6d8f641738836b555dd86c47b16c39b", "fields": {"departement": "93", "stop_lat": 48.91558740373701, "code_postal": "93001", "stop_lon": 2.376893400596234, "coord": [48.91558740373701, 2.376893400596234], "stop_id": 4574180, "stop_desc": "43 RUE HEURTAULT - 93001", "stop_name": "HEURTAULT"}, "geometry": {"type": "Point", "coordinates": [2.376893400596234, 48.91558740373701]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "528cd15ce4656f591fd52891e35e1a992d089930", "fields": {"departement": "93", "stop_lat": 48.91482097258037, "code_postal": "93001", "stop_lon": 2.402977354782398, "coord": [48.91482097258037, 2.402977354782398], "stop_id": 4574192, "stop_desc": "RUE DANIELLE CASANOVA - 93001", "stop_name": "FORT D'AUBERVILLIERS - DANIELLE CASANOVA"}, "geometry": {"type": "Point", "coordinates": [2.402977354782398, 48.91482097258037]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6c5fec096036de7c6098bf1b077f10fd5951d37a", "fields": {"departement": "93", "stop_lat": 48.91495572493585, "code_postal": "93001", "stop_lon": 2.403072973878873, "coord": [48.91495572493585, 2.403072973878873], "stop_id": 4574193, "stop_desc": "RUE DANIELLE CASANOVA - 93001", "stop_name": "FORT D'AUBERVILLIERS - DANIELLE CASANOVA"}, "geometry": {"type": "Point", "coordinates": [2.403072973878873, 48.91495572493585]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "44fe50342641d79b21e217c355ffdff4e508b4e5", "fields": {"departement": "93", "stop_lat": 48.920496691018904, "code_postal": "93027", "stop_lon": 2.4099666527784014, "coord": [48.920496691018904, 2.4099666527784014], "stop_id": 4574198, "stop_desc": "49 AVENUE PAUL VAILLANT COUTURIER - 93027", "stop_name": "8 MAI 1945-MARCHE"}, "geometry": {"type": "Point", "coordinates": [2.4099666527784014, 48.920496691018904]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0f44febad67f237d22be0256b3dfadbc11ebd1ac", "fields": {"departement": "93", "stop_lat": 48.91129810539569, "code_postal": "93070", "stop_lon": 2.332523518059746, "coord": [48.91129810539569, 2.332523518059746], "stop_id": 4574202, "stop_desc": "2 BOULEVARD VICTOR HUGO - 93070", "stop_name": "MAIRIE DE SAINT-OUEN"}, "geometry": {"type": "Point", "coordinates": [2.332523518059746, 48.91129810539569]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2fb758bdcd0b78a8451fc9670c7c77b376c284f9", "fields": {"departement": "94", "stop_lat": 48.83618446865984, "code_postal": "94052", "stop_lon": 2.481761627795849, "coord": [48.83618446865984, 2.481761627795849], "stop_id": 4614208, "stop_desc": "FACE 83 GRANDE RUE CHARLES DE GAULLE - 94052", "stop_name": "SOUS-PREFECTURE - JULES FERRY"}, "geometry": {"type": "Point", "coordinates": [2.481761627795849, 48.83618446865984]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3ec8bf73008c56ee3aa6715516b6cbb43d82c005", "fields": {"departement": "94", "stop_lat": 48.838001853465165, "code_postal": "94058", "stop_lon": 2.4944560966386526, "coord": [48.838001853465165, 2.4944560966386526], "stop_id": 4614214, "stop_desc": "10 PLACE ROBERT BELVAUX - 94058", "stop_name": "NOGENT-LE-PERREUX RER"}, "geometry": {"type": "Point", "coordinates": [2.4944560966386526, 48.838001853465165]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4fa6cc9c77e0073c05fd957b36bb245e8efe609e", "fields": {"departement": "94", "stop_lat": 48.8351467617629, "code_postal": "94058", "stop_lon": 2.498953845025156, "coord": [48.8351467617629, 2.498953845025156], "stop_id": 4614216, "stop_desc": "66 BIS AVENUE PIERRE BROSSOLETTE - 94058", "stop_name": "LES PARCLAIRS"}, "geometry": {"type": "Point", "coordinates": [2.498953845025156, 48.8351467617629]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4264850f06b07ef2e87504aed5752ded0e7a2429", "fields": {"departement": "94", "stop_lat": 48.834806586335354, "code_postal": "94058", "stop_lon": 2.5044802352889453, "coord": [48.834806586335354, 2.5044802352889453], "stop_id": 4614218, "stop_desc": "122 BIS AVENUE PIERRE BROSSOLETTE - 94058", "stop_name": "ALMA"}, "geometry": {"type": "Point", "coordinates": [2.5044802352889453, 48.834806586335354]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8235dbe917c4abe763179b7a69c9ff56d8309c56", "fields": {"departement": "94", "stop_lat": 48.83463701691205, "code_postal": "94058", "stop_lon": 2.5099390500964405, "coord": [48.83463701691205, 2.5099390500964405], "stop_id": 4614221, "stop_desc": "159 AVENUE PIERRE BROSSOLETTE - 94058", "stop_name": "GUY MOQUET"}, "geometry": {"type": "Point", "coordinates": [2.5099390500964405, 48.83463701691205]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7bd897e2abffb67bd1e7afe66e6e3c29b5aebc18", "fields": {"departement": "94", "stop_lat": 48.83444385586457, "code_postal": "94058", "stop_lon": 2.5129607858987173, "coord": [48.83444385586457, 2.5129607858987173], "stop_id": 4614223, "stop_desc": "187 BIS AVENUE PIERRE BROSSOLETTE - 94058", "stop_name": "MAIL MEYER"}, "geometry": {"type": "Point", "coordinates": [2.5129607858987173, 48.83444385586457]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6eebefca9a921272c46bd5e7e127f4c2cc3ee624", "fields": {"departement": "94", "stop_lat": 48.83427753993413, "code_postal": "94058", "stop_lon": 2.516009820486316, "coord": [48.83427753993413, 2.516009820486316], "stop_id": 4614225, "stop_desc": "219 AVENUE PIERRE BROSSOLETTE - 94058", "stop_name": "MARECHAL JOFFRE - PONT DE BRY"}, "geometry": {"type": "Point", "coordinates": [2.516009820486316, 48.83427753993413]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3a91fd01ab54c751a9f79a3cbceb8b92e9cebd91", "fields": {"departement": "94", "stop_lat": 48.8429306453061, "code_postal": "94015", "stop_lon": 2.5231474746796643, "coord": [48.8429306453061, 2.5231474746796643], "stop_id": 4614232, "stop_desc": "33 BOULEVARD DU GENERAL GALLIENI - 94015", "stop_name": "PLACE CARNOT"}, "geometry": {"type": "Point", "coordinates": [2.5231474746796643, 48.8429306453061]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2879342d967a0408c2cabb35dff88095cf3e03b1", "fields": {"departement": "94", "stop_lat": 48.83719879573984, "code_postal": "94015", "stop_lon": 2.527429292986725, "coord": [48.83719879573984, 2.527429292986725], "stop_id": 4614239, "stop_desc": "92 BOULEVARD PASTEUR - 94015", "stop_name": "DOCTEUR ARMAND BRILLARD"}, "geometry": {"type": "Point", "coordinates": [2.527429292986725, 48.83719879573984]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9c1c361d06d618c0d0b9ef4b77ab7ede12053e38", "fields": {"departement": "94", "stop_lat": 48.83256110366599, "code_postal": "94015", "stop_lon": 2.5274803647566753, "coord": [48.83256110366599, 2.5274803647566753], "stop_id": 4614242, "stop_desc": "BOULEVARD PASTEUR - 94015", "stop_name": "HOPITAL SAINT-CAMILLE"}, "geometry": {"type": "Point", "coordinates": [2.5274803647566753, 48.83256110366599]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ffd373251ccb89835452d6276a58dd7b50ee2a52", "fields": {"departement": "94", "stop_lat": 48.83813918886252, "code_postal": "94015", "stop_lon": 2.5349756139390753, "coord": [48.83813918886252, 2.5349756139390753], "stop_id": 4614248, "stop_desc": "8 AV DES FRERES LUMIERE - 94015", "stop_name": "LA FONTAINE"}, "geometry": {"type": "Point", "coordinates": [2.5349756139390753, 48.83813918886252]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "436a07176c1a8d19f9d42c6e65cdc287628b3193", "fields": {"departement": "93", "stop_lat": 48.84075189588147, "code_postal": "93051", "stop_lon": 2.5520872510739046, "coord": [48.84075189588147, 2.5520872510739046], "stop_id": 4614254, "stop_desc": "PISTE GARE ROUTIERE - 93051", "stop_name": "NOISY-LE-GRAND - MONT D'EST RER"}, "geometry": {"type": "Point", "coordinates": [2.5520872510739046, 48.84075189588147]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6aedc8b10b0a056f4f58f1d91d6bd67ae8b3a979", "fields": {"departement": "94", "stop_lat": 48.8227441353955, "code_postal": "94079", "stop_lon": 2.5501479650901335, "coord": [48.8227441353955, 2.5501479650901335], "stop_id": 4614274, "stop_desc": "46 AVENUE ANDRE ROUY - 94079", "stop_name": "GEORGES DEMESY"}, "geometry": {"type": "Point", "coordinates": [2.5501479650901335, 48.8227441353955]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2364d64d44ef8512589f30d3ad948bbe39fc0e59", "fields": {"departement": "94", "stop_lat": 48.82291487630359, "code_postal": "94079", "stop_lon": 2.5501622767944943, "coord": [48.82291487630359, 2.5501622767944943], "stop_id": 4614275, "stop_desc": "FACE 46 AVENUE ANDRE ROUY - 94079", "stop_name": "GEORGES DEMESY"}, "geometry": {"type": "Point", "coordinates": [2.5501622767944943, 48.82291487630359]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c631528922ad7db4d0be77844c15ffef173cdca9", "fields": {"departement": "94", "stop_lat": 48.80633566166769, "code_postal": "94059", "stop_lon": 2.581254249718296, "coord": [48.80633566166769, 2.581254249718296], "stop_id": 4614288, "stop_desc": "73 AVENUE JEAN KIFFER - 94059", "stop_name": "AVENUE BERTRAND"}, "geometry": {"type": "Point", "coordinates": [2.581254249718296, 48.80633566166769]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6f6204d3afd6125b51881708acd78de80174cab5", "fields": {"departement": "77", "stop_lat": 48.805600728739755, "code_postal": "77373", "stop_lon": 2.597252382251973, "coord": [48.805600728739755, 2.597252382251973], "stop_id": 4614293, "stop_desc": "AVENUE DE CAMINHA - 77373", "stop_name": "VILLAGE ANGLAIS"}, "geometry": {"type": "Point", "coordinates": [2.597252382251973, 48.805600728739755]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "815cb45f6af4fe44e060d18884175e3a0870d525", "fields": {"departement": "77", "stop_lat": 48.80199826865643, "code_postal": "77373", "stop_lon": 2.604608715312035, "coord": [48.80199826865643, 2.604608715312035], "stop_id": 4614298, "stop_desc": "AVENUE DE CAMINHA - 77373", "stop_name": "STADE LUCIEN MORANE"}, "geometry": {"type": "Point", "coordinates": [2.604608715312035, 48.80199826865643]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "76ccc8b1b75c8cfb2ce4429e2bf3543c7b56be60", "fields": {"departement": "77", "stop_lat": 48.797828828065384, "code_postal": "77373", "stop_lon": 2.6081653004825376, "coord": [48.797828828065384, 2.6081653004825376], "stop_id": 4614301, "stop_desc": "FACE 22 RUE DES PRES SAINT MARTIN - 77373", "stop_name": "LES BLEUETS"}, "geometry": {"type": "Point", "coordinates": [2.6081653004825376, 48.797828828065384]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9479a2d29249d1c9c0d8c6fddb222ec8f6b61336", "fields": {"departement": "77", "stop_lat": 48.79723763867393, "code_postal": "77373", "stop_lon": 2.6150869639933734, "coord": [48.79723763867393, 2.6150869639933734], "stop_id": 4614305, "stop_desc": "RUE DE L'ORME AU CHARRON - 77373", "stop_name": "L'ORME AU CHARRON"}, "geometry": {"type": "Point", "coordinates": [2.6150869639933734, 48.79723763867393]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "31c7380f0d238a6bc78a543752655260de5e149e", "fields": {"departement": "77", "stop_lat": 48.804179009547326, "code_postal": "77373", "stop_lon": 2.6215463472190916, "coord": [48.804179009547326, 2.6215463472190916], "stop_id": 4614312, "stop_desc": "FACE 4 RUE DES TILLEULS - 77373", "stop_name": "PLACE DE BEILSTEIN"}, "geometry": {"type": "Point", "coordinates": [2.6215463472190916, 48.804179009547326]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ab1ecdfd8be4cb90bb1e2c62340c4b6e92bdba8b", "fields": {"departement": "77", "stop_lat": 48.805058482404526, "code_postal": "77373", "stop_lon": 2.6183263829302623, "coord": [48.805058482404526, 2.6183263829302623], "stop_id": 4614316, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 77373", "stop_name": "MARCHE DE PONTAULT-COMBAULT"}, "geometry": {"type": "Point", "coordinates": [2.6183263829302623, 48.805058482404526]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "074f6342bcf0c2f5cc0d7e0c97698653cb33e68d", "fields": {"departement": "94", "stop_lat": 48.81242154581783, "code_postal": "94059", "stop_lon": 2.56714355077549, "coord": [48.81242154581783, 2.56714355077549], "stop_id": 4614318, "stop_desc": "FACE 26 AVENUE MAURICE BERTEAUX - 94059", "stop_name": "GEORGES FOUREAU"}, "geometry": {"type": "Point", "coordinates": [2.56714355077549, 48.81242154581783]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e7272abe0904c7bee7fc48bac3ee032d521e9b1c", "fields": {"departement": "91", "stop_lat": 48.70757856381556, "code_postal": "91689", "stop_lon": 2.3111654184174446, "coord": [48.70757856381556, 2.3111654184174446], "stop_id": 3759065, "stop_desc": "AVENUE MAZARIN - 91689", "stop_name": "CIMETIERE DE CHILLY-MAZARIN"}, "geometry": {"type": "Point", "coordinates": [2.3111654184174446, 48.70757856381556]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9a793de111412a5f5b7723837ed22fecd9312866", "fields": {"departement": "91", "stop_lat": 48.70569154817685, "code_postal": "91161", "stop_lon": 2.31389606291992, "coord": [48.70569154817685, 2.31389606291992], "stop_id": 3759066, "stop_desc": "AVENUE MAZARIN - 91161", "stop_name": "COLLEGE DE CHILLY-MAZARIN"}, "geometry": {"type": "Point", "coordinates": [2.31389606291992, 48.70569154817685]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4212bc62d1572bc29becaa8713882d8cf0d150da", "fields": {"departement": "91", "stop_lat": 48.70040805678423, "code_postal": "91432", "stop_lon": 2.3259431930276775, "coord": [48.70040805678423, 2.3259431930276775], "stop_id": 3759073, "stop_desc": "20 AVENUE GABRIEL PERI - 91432", "stop_name": "L'AVENIR"}, "geometry": {"type": "Point", "coordinates": [2.3259431930276775, 48.70040805678423]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "46db1a142012527f4ebaa537985a6dd0aed94142", "fields": {"departement": "91", "stop_lat": 48.700399000274075, "code_postal": "91432", "stop_lon": 2.3252506554713914, "coord": [48.700399000274075, 2.3252506554713914], "stop_id": 3759074, "stop_desc": "86 AVENUE ARISTIDE BRIAND - 91432", "stop_name": "L'AVENIR"}, "geometry": {"type": "Point", "coordinates": [2.3252506554713914, 48.700399000274075]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d7f32c00275ab05805f23a47c11c5230fe40534d", "fields": {"departement": "91", "stop_lat": 48.70595443969439, "code_postal": "91432", "stop_lon": 2.3331261546438875, "coord": [48.70595443969439, 2.3331261546438875], "stop_id": 3759081, "stop_desc": "21 AVENUE DU GENERAL WARABIOT - 91432", "stop_name": "MAIRIE DE MORANGIS"}, "geometry": {"type": "Point", "coordinates": [2.3331261546438875, 48.70595443969439]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b6827b44fbc3a87736c641d43490478ee5b8e315", "fields": {"departement": "91", "stop_lat": 48.705611769184124, "code_postal": "91479", "stop_lon": 2.3539859327529853, "coord": [48.705611769184124, 2.3539859327529853], "stop_id": 3759088, "stop_desc": "186 AVENUE DE VERDUN - 91479", "stop_name": "LES FLEURS"}, "geometry": {"type": "Point", "coordinates": [2.3539859327529853, 48.705611769184124]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "20ba6426f2c09d28c607dfe0faf4c1952126e37a", "fields": {"departement": "91", "stop_lat": 48.705887069449716, "code_postal": "91027", "stop_lon": 2.3700247565914854, "coord": [48.705887069449716, 2.3700247565914854], "stop_id": 3759091, "stop_desc": "8/10 AVENUE DE MORANGIS - 91027", "stop_name": "BELLE ETOILE"}, "geometry": {"type": "Point", "coordinates": [2.3700247565914854, 48.705887069449716]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "25d8bbe86b18c5fced9dc2b447f9b0a49d3bed23", "fields": {"departement": "91", "stop_lat": 48.70476451673544, "code_postal": "91027", "stop_lon": 2.3917390257535804, "coord": [48.70476451673544, 2.3917390257535804], "stop_id": 3759099, "stop_desc": "140-142 AVENUE DU 18 AVRIL - 91027", "stop_name": "COUBERTIN"}, "geometry": {"type": "Point", "coordinates": [2.3917390257535804, 48.70476451673544]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3ecb72b43ca99a1c95f39f4743aa7cbacb0e2a6b", "fields": {"departement": "91", "stop_lat": 48.70194421424275, "code_postal": "91027", "stop_lon": 2.3869696279314057, "coord": [48.70194421424275, 2.3869696279314057], "stop_id": 3759100, "stop_desc": "FACE 94BIS AVENUE DU 18 AVRIL - 91027", "stop_name": "CITE MOZART"}, "geometry": {"type": "Point", "coordinates": [2.3869696279314057, 48.70194421424275]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c9e2072b3e72950af2e234ef758855687629eaa5", "fields": {"departement": "91", "stop_lat": 48.69991406717884, "code_postal": "91027", "stop_lon": 2.383858078039875, "coord": [48.69991406717884, 2.383858078039875], "stop_id": 3759104, "stop_desc": "62 AV DU 18 AVRIL - 91027", "stop_name": "DOCTEUR GUERIN"}, "geometry": {"type": "Point", "coordinates": [2.383858078039875, 48.69991406717884]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "daf284fd120c1b88b4b4c201fdea34ff61faa012", "fields": {"departement": "91", "stop_lat": 48.69795536643969, "code_postal": "91027", "stop_lon": 2.381765223571396, "coord": [48.69795536643969, 2.381765223571396], "stop_id": 3759106, "stop_desc": "32 AVENUE DU 18 AVRIL - 91027", "stop_name": "LYCEE MARCEL PAGNOL"}, "geometry": {"type": "Point", "coordinates": [2.381765223571396, 48.69795536643969]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a8e4eaf3711595583e641298a58830f5231731be", "fields": {"departement": "91", "stop_lat": 48.690602643028264, "code_postal": "91326", "stop_lon": 2.381935430293156, "coord": [48.690602643028264, 2.381935430293156], "stop_id": 3759108, "stop_desc": "FACE 45 RUE DES GAULOIS - 91326", "stop_name": "JUVISY RER"}, "geometry": {"type": "Point", "coordinates": [2.381935430293156, 48.690602643028264]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3b8f1473aea5686497a966204e09cfa1ca5f720f", "fields": {"departement": "91", "stop_lat": 48.690602643028264, "code_postal": "91326", "stop_lon": 2.381935430293156, "coord": [48.690602643028264, 2.381935430293156], "stop_id": 3759109, "stop_desc": "FACE 45 RUE DES GAULOIS - 91326", "stop_name": "JUVISY RER"}, "geometry": {"type": "Point", "coordinates": [2.381935430293156, 48.690602643028264]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5e410aa88b325a06450f6f67032cdebc50cc91f6", "fields": {"departement": "91", "stop_lat": 48.70612911534911, "code_postal": "91027", "stop_lon": 2.3722793058279845, "coord": [48.70612911534911, 2.3722793058279845], "stop_id": 3759112, "stop_desc": "138 AVENUE MARCEL SEMBAT - 91027", "stop_name": "BELLE ETOILE - LA POMPE"}, "geometry": {"type": "Point", "coordinates": [2.3722793058279845, 48.70612911534911]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6dea2def682117a5e29dfe17b537d9a506816cd1", "fields": {"departement": "92", "stop_lat": 48.818062641326925, "code_postal": "92049", "stop_lon": 2.3257950701996193, "coord": [48.818062641326925, 2.3257950701996193], "stop_id": 3763977, "stop_desc": "51 BIS AVENUE ARISTIDE BRIAND - 92049", "stop_name": "GABRIEL PERI"}, "geometry": {"type": "Point", "coordinates": [2.3257950701996193, 48.818062641326925]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b2ef58a0177715943db04efb106bedb7f16412bf", "fields": {"departement": "92", "stop_lat": 48.80574038095107, "code_postal": "92007", "stop_lon": 2.3253215530584908, "coord": [48.80574038095107, 2.3253215530584908], "stop_id": 3763982, "stop_desc": "26 AVENUE ARISTIDE BRIAND - 92007", "stop_name": "CROIX D'ARCUEIL"}, "geometry": {"type": "Point", "coordinates": [2.3253215530584908, 48.80574038095107]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "038fdabe4da2c80235bdc388557b42ab659a86db", "fields": {"departement": "92", "stop_lat": 48.795754436146936, "code_postal": "92007", "stop_lon": 2.3213922506374303, "coord": [48.795754436146936, 2.3213922506374303], "stop_id": 3763985, "stop_desc": "168-170 AVENUE ARISTIDE BRIAND - 92007", "stop_name": "MARCEL BONNET"}, "geometry": {"type": "Point", "coordinates": [2.3213922506374303, 48.795754436146936]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8b4a86827cc5a73d7e0044a01c99a5829859907f", "fields": {"departement": "92", "stop_lat": 48.78957043889509, "code_postal": "92007", "stop_lon": 2.3191089155752103, "coord": [48.78957043889509, 2.3191089155752103], "stop_id": 3763987, "stop_desc": "278 AVENUE ARISTIDE BRIAND - 92007", "stop_name": "CITE JARDINS"}, "geometry": {"type": "Point", "coordinates": [2.3191089155752103, 48.78957043889509]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "123d5b05090dae9df5701e51e55e20f3843de7d7", "fields": {"departement": "92", "stop_lat": 48.78265834036124, "code_postal": "92014", "stop_lon": 2.3168128098021983, "coord": [48.78265834036124, 2.3168128098021983], "stop_id": 3763990, "stop_desc": "51 BIS-53 AVENUE DU GENERAL LECLERC - 92014", "stop_name": "RUE DU 8 MAI 1945"}, "geometry": {"type": "Point", "coordinates": [2.3168128098021983, 48.78265834036124]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "95ec9d47e7bf960874b8d7d4931d9119a1b95b5b", "fields": {"departement": "92", "stop_lat": 48.765975131381744, "code_postal": "92002", "stop_lon": 2.3096948881143153, "coord": [48.765975131381744, 2.3096948881143153], "stop_id": 3763997, "stop_desc": "25 AVENUE RAYMOND ARON - 92002", "stop_name": "NORMANDIE"}, "geometry": {"type": "Point", "coordinates": [2.3096948881143153, 48.765975131381744]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a93428136206b631c74733da3d1a076b2c4ea934", "fields": {"departement": "92", "stop_lat": 48.75812776706284, "code_postal": "92002", "stop_lon": 2.3066539281211798, "coord": [48.75812776706284, 2.3066539281211798], "stop_id": 3764002, "stop_desc": "63 AVENUE ARISTIDE BRIAND - 92002", "stop_name": "FERNAND FENZY"}, "geometry": {"type": "Point", "coordinates": [2.3066539281211798, 48.75812776706284]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "10d2c4b2052ac4c3961060c1c4ba81ddc84640f3", "fields": {"departement": "92", "stop_lat": 48.753687240162584, "code_postal": "92002", "stop_lon": 2.305215670660631, "coord": [48.753687240162584, 2.305215670660631], "stop_id": 3764005, "stop_desc": "16 AVENUE ARISTIDE BRIAND - 92002", "stop_name": "AUGUSTE MOUNIE - DIVISION LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.305215670660631, 48.753687240162584]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ab5b8d3433c386ac8920120118dbcb0428f94bec", "fields": {"departement": "92", "stop_lat": 48.75025356657646, "code_postal": "92002", "stop_lon": 2.3045245832510624, "coord": [48.75025356657646, 2.3045245832510624], "stop_id": 3764007, "stop_desc": "FACE 50 AVENUE DE LA DIVISION LECLERC - 92002", "stop_name": "PONT D'ANTONY"}, "geometry": {"type": "Point", "coordinates": [2.3045245832510624, 48.75025356657646]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "094aeea04e2a00e06ee1dc40f161b4e72d7cf8d5", "fields": {"departement": "91", "stop_lat": 48.73664329348613, "code_postal": "91377", "stop_lon": 2.2976980478096194, "coord": [48.73664329348613, 2.2976980478096194], "stop_id": 3764013, "stop_desc": "FACE 3 RUE DU DAUPHINE - 91377", "stop_name": "PERIGORD"}, "geometry": {"type": "Point", "coordinates": [2.2976980478096194, 48.73664329348613]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "63e9994f700d07ca8574af35417aaa46d578d0df", "fields": {"departement": "91", "stop_lat": 48.7317691614872, "code_postal": "91377", "stop_lon": 2.2908672930248044, "coord": [48.7317691614872, 2.2908672930248044], "stop_id": 3764020, "stop_desc": "PLACE SAINT-EXUPERY - 91377", "stop_name": "MASSY - OPERA-THEATRE"}, "geometry": {"type": "Point", "coordinates": [2.2908672930248044, 48.7317691614872]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "97310e27550a410ef858d03468d5cec5a62c92d1", "fields": {"departement": "91", "stop_lat": 48.73880089439907, "code_postal": "91377", "stop_lon": 2.2989602054010803, "coord": [48.73880089439907, 2.2989602054010803], "stop_id": 3764021, "stop_desc": "FACE 64 AVENUE DU PRESIDENT KENNEDY - 91377", "stop_name": "SAUSSAYE - MIRABEAU"}, "geometry": {"type": "Point", "coordinates": [2.2989602054010803, 48.73880089439907]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b4f0f571965274fe5dd0da58c3bd0f91a7c74ad6", "fields": {"departement": "94", "stop_lat": 48.79940373893161, "code_postal": "94016", "stop_lon": 2.323241429194633, "coord": [48.79940373893161, 2.323241429194633], "stop_id": 3764029, "stop_desc": "43 AVENUE ARISTIDE BRIAND - 94016", "stop_name": "CARNOT - ARISTIDE BRIAND"}, "geometry": {"type": "Point", "coordinates": [2.323241429194633, 48.79940373893161]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "175ca93e78d021cd0bca8d9562148d6dbab5c159", "fields": {"departement": "92", "stop_lat": 48.75812776706284, "code_postal": "92002", "stop_lon": 2.3066539281211798, "coord": [48.75812776706284, 2.3066539281211798], "stop_id": 3764092, "stop_desc": "63 AVENUE ARISTIDE BRIAND - 92002", "stop_name": "FERNAND FENZY"}, "geometry": {"type": "Point", "coordinates": [2.3066539281211798, 48.75812776706284]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a09266d256f44bebe09e51bbcfb990e633896cc7", "fields": {"departement": "92", "stop_lat": 48.77030871068641, "code_postal": "92002", "stop_lon": 2.3162057817741135, "coord": [48.77030871068641, 2.3162057817741135], "stop_id": 3764098, "stop_desc": "17 AVENUE DE LA RESIDENCE - 92002", "stop_name": "PIERRE KOLHMANN"}, "geometry": {"type": "Point", "coordinates": [2.3162057817741135, 48.77030871068641]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b9e7e7d40f22bda5f5a13d287869686f7dfafc8d", "fields": {"departement": "92", "stop_lat": 48.77033474019488, "code_postal": "92002", "stop_lon": 2.311460248843124, "coord": [48.77033474019488, 2.311460248843124], "stop_id": 3764100, "stop_desc": "69 AVENUE RAYMOND ARON - 92002", "stop_name": "LA FONTAINE"}, "geometry": {"type": "Point", "coordinates": [2.311460248843124, 48.77033474019488]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d96eff18e2a9ca63cb2eeb36b078a8ffca55354a", "fields": {"departement": "92", "stop_lat": 48.76239755022339, "code_postal": "92002", "stop_lon": 2.3083508399551924, "coord": [48.76239755022339, 2.3083508399551924], "stop_id": 3764101, "stop_desc": "127 AVENUE ARISTIDE BRIAND - 92002", "stop_name": "GENERAL DE GAULLE - CROIX DE BERNY"}, "geometry": {"type": "Point", "coordinates": [2.3083508399551924, 48.76239755022339]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "594e493726e7ca83f7cddd7c12ad12db7010bae5", "fields": {"departement": "91", "stop_lat": 48.73042073643698, "code_postal": "91377", "stop_lon": 2.256846520054254, "coord": [48.73042073643698, 2.256846520054254], "stop_id": 3764107, "stop_desc": "AVENUE DU PRESIDENT ALLENDE - 91377", "stop_name": "PRESIDENT ALLENDE"}, "geometry": {"type": "Point", "coordinates": [2.256846520054254, 48.73042073643698]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "61e1403f1463966a093824ac14780ca63ed86331", "fields": {"departement": "91", "stop_lat": 48.73445685515161, "code_postal": "91377", "stop_lon": 2.2573838025168427, "coord": [48.73445685515161, 2.2573838025168427], "stop_id": 3764111, "stop_desc": "51 BOULEVARD DU 1ER MAI - 91377", "stop_name": "GEORGES MANDEL"}, "geometry": {"type": "Point", "coordinates": [2.2573838025168427, 48.73445685515161]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2d23eae731f971e95660726bf4dbe6b703324cb3", "fields": {"departement": "91", "stop_lat": 48.74586122520928, "code_postal": "91645", "stop_lon": 2.269013842406873, "coord": [48.74586122520928, 2.269013842406873], "stop_id": 3764123, "stop_desc": "FACE 56 BOULEVARD DU MARECHAL FOCH - 91645", "stop_name": "PARON"}, "geometry": {"type": "Point", "coordinates": [2.269013842406873, 48.74586122520928]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0d3f9c3433fd4e41780451ac6c21d6693ee3f8b3", "fields": {"departement": "91", "stop_lat": 48.74985373505479, "code_postal": "91645", "stop_lon": 2.2721211987921035, "coord": [48.74985373505479, 2.2721211987921035], "stop_id": 3764124, "stop_desc": "BOULEVARD DU MARECHAL FOCH - 91645", "stop_name": "LE CLOS"}, "geometry": {"type": "Point", "coordinates": [2.2721211987921035, 48.74985373505479]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1aff9a3f5a48b29f7bef913e6a495689a8368d52", "fields": {"departement": "75", "stop_lat": 48.83632563688794, "code_postal": "75114", "stop_lon": 2.3268666047806636, "coord": [48.83632563688794, 2.3268666047806636], "stop_id": 3764440, "stop_desc": "FACE 47 RUE FROIDEVAUX - 75114", "stop_name": "FROIDEVAUX-GASSENDI"}, "geometry": {"type": "Point", "coordinates": [2.3268666047806636, 48.83632563688794]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0b499f92c82720e3e6cf17f78206849f10b5258b", "fields": {"departement": "75", "stop_lat": 48.83625372188051, "code_postal": "75114", "stop_lon": 2.3267032420608538, "coord": [48.83625372188051, 2.3267032420608538], "stop_id": 3764441, "stop_desc": "47 RUE FROIDEVAUX - 75114", "stop_name": "FROIDEVAUX-GASSENDI"}, "geometry": {"type": "Point", "coordinates": [2.3267032420608538, 48.83625372188051]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ce3343edfc358be5ffc0edbbe859b30ec5edbfcb", "fields": {"departement": "75", "stop_lat": 48.838184773438094, "code_postal": "75115", "stop_lon": 2.3168726270050803, "coord": [48.838184773438094, 2.3168726270050803], "stop_id": 3764447, "stop_desc": "10 PLACE DES 5 MARTYRS DU LYCEE BUFFON - 75115", "stop_name": "MONTPARNASSE 2 - GARE TGV"}, "geometry": {"type": "Point", "coordinates": [2.3168726270050803, 48.838184773438094]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9017952bc747ca9774ae13a39d31ceb5625ce8de", "fields": {"departement": "75", "stop_lat": 48.83870495395022, "code_postal": "75115", "stop_lon": 2.311235645699147, "coord": [48.83870495395022, 2.311235645699147], "stop_id": 3764450, "stop_desc": "FACE 2 RUE VIGEE LEBRUN - 75115", "stop_name": "INSTITUT PASTEUR"}, "geometry": {"type": "Point", "coordinates": [2.311235645699147, 48.83870495395022]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "533af32cb06994ddd150eb49bf6a9c4f731a254f", "fields": {"departement": "75", "stop_lat": 48.83794025206747, "code_postal": "75115", "stop_lon": 2.307968380468816, "coord": [48.83794025206747, 2.307968380468816], "stop_id": 3764452, "stop_desc": "68 RUE DUTOT - 75115", "stop_name": "PROCESSION"}, "geometry": {"type": "Point", "coordinates": [2.307968380468816, 48.83794025206747]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "af676047bb9f85dd3520cc462050e8066e3b4d9c", "fields": {"departement": "75", "stop_lat": 48.84203604439376, "code_postal": "75115", "stop_lon": 2.2990337900210607, "coord": [48.84203604439376, 2.2990337900210607], "stop_id": 3764457, "stop_desc": "FACE 12 RUE PETEL - 75115", "stop_name": "MAIRIE DU 15E"}, "geometry": {"type": "Point", "coordinates": [2.2990337900210607, 48.84203604439376]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ac3477f5dbfe59328f653ab4833fc44f8a6ebdb8", "fields": {"departement": "75", "stop_lat": 48.841892200000075, "code_postal": "75115", "stop_lon": 2.2988977335817613, "coord": [48.841892200000075, 2.2988977335817613], "stop_id": 3764458, "stop_desc": "2 BIS RUE PETEL - 75115", "stop_name": "MAIRIE DU 15E"}, "geometry": {"type": "Point", "coordinates": [2.2988977335817613, 48.841892200000075]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "487e4c3d03b92d0e27bb9ec5c6f6836db91a9e16", "fields": {"departement": "75", "stop_lat": 48.84635432774007, "code_postal": "75115", "stop_lon": 2.2864208844578884, "coord": [48.84635432774007, 2.2864208844578884], "stop_id": 3764465, "stop_desc": "37 RUE DES ENTREPRENEURS - 75115", "stop_name": "CHARLES MICHELS"}, "geometry": {"type": "Point", "coordinates": [2.2864208844578884, 48.84635432774007]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0c4472a0a9f24ba9ca0babfd700affc20fa461f6", "fields": {"departement": "75", "stop_lat": 48.846035780544135, "code_postal": "75115", "stop_lon": 2.277815043971914, "coord": [48.846035780544135, 2.277815043971914], "stop_id": 3764470, "stop_desc": "4 AVENUE EMILE ZOLA - 75115", "stop_name": "JAVEL"}, "geometry": {"type": "Point", "coordinates": [2.277815043971914, 48.846035780544135]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "10b0f0aabaa5f75be036a393499919fff9b551e4", "fields": {"departement": "75", "stop_lat": 48.84273725205222, "code_postal": "75115", "stop_lon": 2.277600959690744, "coord": [48.84273725205222, 2.277600959690744], "stop_id": 3764472, "stop_desc": "35-39 RUE BALARD - 75115", "stop_name": "CAUCHY"}, "geometry": {"type": "Point", "coordinates": [2.277600959690744, 48.84273725205222]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a07e12c3b61b7fa8373d48aa7be55b546e4632f0", "fields": {"departement": "75", "stop_lat": 48.84058035842136, "code_postal": "75115", "stop_lon": 2.277834909934327, "coord": [48.84058035842136, 2.277834909934327], "stop_id": 3764473, "stop_desc": "PLACE CARRE - 75115", "stop_name": "PARC ANDRE CITROEN"}, "geometry": {"type": "Point", "coordinates": [2.277834909934327, 48.84058035842136]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f8d3455d3fdfaeb44e0ed137f55dadca0ce7cfa1", "fields": {"departement": "75", "stop_lat": 48.83944609349221, "code_postal": "75115", "stop_lon": 2.2742689214112684, "coord": [48.83944609349221, 2.2742689214112684], "stop_id": 3764478, "stop_desc": "36 RUE LEBLANC - 75115", "stop_name": "RUE LEBLANC"}, "geometry": {"type": "Point", "coordinates": [2.2742689214112684, 48.83944609349221]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8d83c6c50459175611e8398f8d6c0f74839dd60b", "fields": {"departement": "75", "stop_lat": 48.82273677515464, "code_postal": "75114", "stop_lon": 2.335117719677038, "coord": [48.82273677515464, 2.335117719677038], "stop_id": 3764488, "stop_desc": "18 RUE EMILE DEUTSCH DE LA MEURTHE - 75114", "stop_name": "JOURDAN-MONTSOURIS"}, "geometry": {"type": "Point", "coordinates": [2.335117719677038, 48.82273677515464]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f25cc3e1740caf444d3929ca68da748811fa8f76", "fields": {"departement": "75", "stop_lat": 48.88218885999581, "code_postal": "75109", "stop_lon": 2.3373773235099753, "coord": [48.88218885999581, 2.3373773235099753], "stop_id": 3764494, "stop_desc": "FACE 20 BD DE CLICHY - 75109", "stop_name": "PIGALLE"}, "geometry": {"type": "Point", "coordinates": [2.3373773235099753, 48.88218885999581]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b1856281971d6e25b5166dc3a097ace14822fea0", "fields": {"departement": "75", "stop_lat": 48.856061944099835, "code_postal": "75104", "stop_lon": 2.350302602371364, "coord": [48.856061944099835, 2.350302602371364], "stop_id": 3764512, "stop_desc": "FACE 2 QUAI DE GESVRES - 75104", "stop_name": "HOTEL DE VILLE"}, "geometry": {"type": "Point", "coordinates": [2.350302602371364, 48.856061944099835]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7f36e93652a54fd85abbd760701f76a6dce63e45", "fields": {"departement": "75", "stop_lat": 48.84624710842462, "code_postal": "75105", "stop_lon": 2.3543717307528045, "coord": [48.84624710842462, 2.3543717307528045], "stop_id": 3764518, "stop_desc": "45 RUE LINNE - 75105", "stop_name": "JUSSIEU"}, "geometry": {"type": "Point", "coordinates": [2.3543717307528045, 48.84624710842462]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cbd3cda0a0e7126402a8d9acc19a477db30ddfb6", "fields": {"departement": "75", "stop_lat": 48.82152331045431, "code_postal": "75113", "stop_lon": 2.343161808767993, "coord": [48.82152331045431, 2.343161808767993], "stop_id": 3764537, "stop_desc": "31 RUE DE RUNGIS - 75113", "stop_name": "AMIRAL MOUCHEZ"}, "geometry": {"type": "Point", "coordinates": [2.343161808767993, 48.82152331045431]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8e596b68a1a48e57c6c3b730622af92f3fc3fac4", "fields": {"departement": "75", "stop_lat": 48.82027398784946, "code_postal": "75114", "stop_lon": 2.343801363217265, "coord": [48.82027398784946, 2.343801363217265], "stop_id": 3764539, "stop_desc": "96 RUE DE L' AMIRAL MOUCHEZ - 75114", "stop_name": "STADE CHARLETY-PORTE DE GENTILLY"}, "geometry": {"type": "Point", "coordinates": [2.343801363217265, 48.82027398784946]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b2c9b06fc9deae0bd496eca45db7703f9046e652", "fields": {"departement": "75", "stop_lat": 48.8416902150658, "code_postal": "75105", "stop_lon": 2.3558271590760156, "coord": [48.8416902150658, 2.3558271590760156], "stop_id": 3764542, "stop_desc": "36 BIS RUE GEOFFROY SAINT-HILAIRE - 75105", "stop_name": "BUFFON - LA MOSQUEE"}, "geometry": {"type": "Point", "coordinates": [2.3558271590760156, 48.8416902150658]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a3a0b44f94e2421c13b268485d5d46593e02c5e6", "fields": {"departement": "75", "stop_lat": 48.844134964687136, "code_postal": "75105", "stop_lon": 2.354902090075552, "coord": [48.844134964687136, 2.354902090075552], "stop_id": 3764543, "stop_desc": "2-4 RUE LINNE - 75105", "stop_name": "CUVIER - JARDIN DES PLANTES"}, "geometry": {"type": "Point", "coordinates": [2.354902090075552, 48.844134964687136]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e4b29052ec95442a1e14a0b7dd14b332ebb022d6", "fields": {"departement": "75", "stop_lat": 48.85751789600976, "code_postal": "75104", "stop_lon": 2.3504119314423426, "coord": [48.85751789600976, 2.3504119314423426], "stop_id": 3764615, "stop_desc": "2 RUE DE LA COUTELLERIE - 75104", "stop_name": "HOTEL DE VILLE"}, "geometry": {"type": "Point", "coordinates": [2.3504119314423426, 48.85751789600976]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "286b2a39a444a5c1c1e28d0b79ec9f8aee61c7ec", "fields": {"departement": "75", "stop_lat": 48.83487001531102, "code_postal": "75114", "stop_lon": 2.3327347010432598, "coord": [48.83487001531102, 2.3327347010432598], "stop_id": 3764627, "stop_desc": "108-110 AVENUE DENFERT-ROCHEREAU - 75114", "stop_name": "DENFERT-ROCHEREAU - ARAGO"}, "geometry": {"type": "Point", "coordinates": [2.3327347010432598, 48.83487001531102]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "681ff89e768138e3d385d9350417cb8a12247231", "fields": {"departement": "75", "stop_lat": 48.872337311493894, "code_postal": "75110", "stop_lon": 2.3560833742278997, "coord": [48.872337311493894, 2.3560833742278997], "stop_id": 3764649, "stop_desc": "32 BOULEVARD DE STRASBOURG - 75110", "stop_name": "CHATEAU D'EAU"}, "geometry": {"type": "Point", "coordinates": [2.3560833742278997, 48.872337311493894]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "772293289c92052fd40223dfd0e4b13b4bc0c6bd", "fields": {"departement": "75", "stop_lat": 48.8575540203187, "code_postal": "75104", "stop_lon": 2.3487230170535773, "coord": [48.8575540203187, 2.3487230170535773], "stop_id": 3764661, "stop_desc": "FACE 15 AVENUE VICTORIA - 75104", "stop_name": "CHATELET"}, "geometry": {"type": "Point", "coordinates": [2.3487230170535773, 48.8575540203187]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ac4827a6c3c5bdd20244d81570f1c83d59fe8827", "fields": {"departement": "75", "stop_lat": 48.85247650155603, "code_postal": "75106", "stop_lon": 2.3435194294224857, "coord": [48.85247650155603, 2.3435194294224857], "stop_id": 3764663, "stop_desc": "10 BOULEVARD SAINT-MICHEL - 75106", "stop_name": "SAINT-MICHEL - SAINT-GERMAIN"}, "geometry": {"type": "Point", "coordinates": [2.3435194294224857, 48.85247650155603]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "10ffbb2b1a6e5b1ad82133aabf713c6cd562d8de", "fields": {"departement": "75", "stop_lat": 48.842078126923646, "code_postal": "75106", "stop_lon": 2.3377448672832224, "coord": [48.842078126923646, 2.3377448672832224], "stop_id": 3764667, "stop_desc": "86 BOULEVARD SAINT MICHEL - 75106", "stop_name": "VAL DE GRACE"}, "geometry": {"type": "Point", "coordinates": [2.3377448672832224, 48.842078126923646]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b162a47248d5e9e57cd7cf1662e949e42e718bee", "fields": {"departement": "75", "stop_lat": 48.84028960403854, "code_postal": "75106", "stop_lon": 2.336492195010898, "coord": [48.84028960403854, 2.336492195010898], "stop_id": 3764668, "stop_desc": "18 AVENUE DE L'OBSERVATOIRE - 75106", "stop_name": "OBSERVATOIRE - PORT ROYAL"}, "geometry": {"type": "Point", "coordinates": [2.336492195010898, 48.84028960403854]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "05404a5c6cedd38b0d62ab932ae088e848397717", "fields": {"departement": "75", "stop_lat": 48.8316073794591, "code_postal": "75114", "stop_lon": 2.3299850499497685, "coord": [48.8316073794591, 2.3299850499497685], "stop_id": 3764672, "stop_desc": "32 AVENUE DU GENERAL LECLERC - 75114", "stop_name": "MOUTON - DUVERNET"}, "geometry": {"type": "Point", "coordinates": [2.3299850499497685, 48.8316073794591]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d4b86651f05e01d6e97f1c0301bba9bf0a679396", "fields": {"departement": "75", "stop_lat": 48.82929741932709, "code_postal": "75114", "stop_lon": 2.3279570462264916, "coord": [48.82929741932709, 2.3279570462264916], "stop_id": 3764673, "stop_desc": "72 AVENUE DU GENERAL LECLERC - 75114", "stop_name": "ALESIA - MAINE"}, "geometry": {"type": "Point", "coordinates": [2.3279570462264916, 48.82929741932709]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fb7acbf63a4ceb4ecf4962ef752237b5e80ef843", "fields": {"departement": "75", "stop_lat": 48.82735598995444, "code_postal": "75114", "stop_lon": 2.326759500564941, "coord": [48.82735598995444, 2.326759500564941], "stop_id": 3764696, "stop_desc": "83-85 AVENUE DU GENERAL LECLERC - 75114", "stop_name": "ALESIA - GENERAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.326759500564941, 48.82735598995444]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "61d4a556474838b1b0f18f999f5bfd3dd612b086", "fields": {"departement": "75", "stop_lat": 48.83237093332211, "code_postal": "75114", "stop_lon": 2.32515206500568, "coord": [48.83237093332211, 2.32515206500568], "stop_id": 3764700, "stop_desc": "FACE 180 AVENUE DU MAINE - 75114", "stop_name": "MAIRIE DU 14E"}, "geometry": {"type": "Point", "coordinates": [2.32515206500568, 48.83237093332211]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "df2b313811cbba9e9886203ad949189e13709fb2", "fields": {"departement": "75", "stop_lat": 48.833844836440434, "code_postal": "75114", "stop_lon": 2.324539085536249, "coord": [48.833844836440434, 2.324539085536249], "stop_id": 3764702, "stop_desc": "147 AVENUE DU MAINE - 75114", "stop_name": "CHATEAU - MAIRIE DU 14E"}, "geometry": {"type": "Point", "coordinates": [2.324539085536249, 48.833844836440434]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0df0441286918050410208150e7dc14eda141316", "fields": {"departement": "75", "stop_lat": 48.84597723329333, "code_postal": "75106", "stop_lon": 2.318476408387774, "coord": [48.84597723329333, 2.318476408387774], "stop_id": 3764712, "stop_desc": "15-17 BOULEVARD DU MONTPARNASSE - 75106", "stop_name": "MAINE - VAUGIRARD"}, "geometry": {"type": "Point", "coordinates": [2.318476408387774, 48.84597723329333]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8ed69a1fe473c968e68250350e75a5ee4d4005df", "fields": {"departement": "75", "stop_lat": 48.851053844823404, "code_postal": "75107", "stop_lon": 2.311420112728856, "coord": [48.851053844823404, 2.311420112728856], "stop_id": 3764715, "stop_desc": "45 AVENUE DUQUESNE - 75107", "stop_name": "EL SALVADOR"}, "geometry": {"type": "Point", "coordinates": [2.311420112728856, 48.851053844823404]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8f560ddccdb09448042e4112639638e0b939f9d7", "fields": {"departement": "75", "stop_lat": 48.8545486927163, "code_postal": "75107", "stop_lon": 2.3060931230468875, "coord": [48.8545486927163, 2.3060931230468875], "stop_id": 3764721, "stop_desc": "41 AVENUE DE LA MOTTE PICQUET - 75107", "stop_name": "ECOLE MILITAIRE"}, "geometry": {"type": "Point", "coordinates": [2.3060931230468875, 48.8545486927163]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cc835906ec51bd911d770b3b979e122b3475b6c3", "fields": {"departement": "75", "stop_lat": 48.858360366428236, "code_postal": "75107", "stop_lon": 2.310190622604365, "coord": [48.858360366428236, 2.310190622604365], "stop_id": 3764725, "stop_desc": "21 BOULEVARD DE LA TOUR MAUBOURG - 75107", "stop_name": "LA TOUR MAUBOURG - SAINT-DOMINIQUE"}, "geometry": {"type": "Point", "coordinates": [2.310190622604365, 48.858360366428236]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "00fa5cc5fc6f416d1962fa8eb17034a5ac355aca", "fields": {"departement": "75", "stop_lat": 48.85845916271155, "code_postal": "75107", "stop_lon": 2.309904538670531, "coord": [48.85845916271155, 2.309904538670531], "stop_id": 3764726, "stop_desc": "42 BOULEVARD DE LA TOUR MAUBOURG - 75107", "stop_name": "LA TOUR MAUBOURG - SAINT-DOMINIQUE"}, "geometry": {"type": "Point", "coordinates": [2.309904538670531, 48.85845916271155]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a8b0f5db186a86615b21d5f13491226a8b898b02", "fields": {"departement": "75", "stop_lat": 48.86229692372428, "code_postal": "75107", "stop_lon": 2.310515486638844, "coord": [48.86229692372428, 2.310515486638844], "stop_id": 3764727, "stop_desc": "1 BOULEVARD DE LA TOUR MAUBOURG - 75107", "stop_name": "PONT DES INVALIDES - PLACE DE FINLANDE"}, "geometry": {"type": "Point", "coordinates": [2.310515486638844, 48.86229692372428]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "14e6bee31ef2dcb5e09cb3736f69dff7bb3d44f5", "fields": {"departement": "75", "stop_lat": 48.833844836440434, "code_postal": "75114", "stop_lon": 2.324539085536249, "coord": [48.833844836440434, 2.324539085536249], "stop_id": 3764753, "stop_desc": "147 AVENUE DU MAINE - 75114", "stop_name": "CHATEAU - MAIRIE DU 14E"}, "geometry": {"type": "Point", "coordinates": [2.324539085536249, 48.833844836440434]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "85ae39c7e0e85bb4351a4e83bcbc0e770b420115", "fields": {"departement": "75", "stop_lat": 48.84659686626664, "code_postal": "75107", "stop_lon": 2.3155075746566527, "coord": [48.84659686626664, 2.3155075746566527], "stop_id": 3764760, "stop_desc": "FACE 149 RUE DE SEVRES - 75107", "stop_name": "HOPITAL DES ENFANTS MALADES"}, "geometry": {"type": "Point", "coordinates": [2.3155075746566527, 48.84659686626664]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "65c02f87994ddb30706abf37c065403c9ae316e3", "fields": {"departement": "75", "stop_lat": 48.847252312369214, "code_postal": "75107", "stop_lon": 2.312239064677639, "coord": [48.847252312369214, 2.312239064677639], "stop_id": 3764761, "stop_desc": "3 PLACE DE BRETEUIL - 75107", "stop_name": "BRETEUIL"}, "geometry": {"type": "Point", "coordinates": [2.312239064677639, 48.847252312369214]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1b90ef65c235f3c28176823b3922d42089ec3639", "fields": {"departement": "75", "stop_lat": 48.862000265967225, "code_postal": "75107", "stop_lon": 2.3101887231214606, "coord": [48.862000265967225, 2.3101887231214606], "stop_id": 3764773, "stop_desc": "8 BOULEVARD DE LA TOUR MAUBOURG - 75107", "stop_name": "PONT DES INVALIDES - PLACE DE FINLANDE"}, "geometry": {"type": "Point", "coordinates": [2.3101887231214606, 48.862000265967225]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "21b083f0833d38e7dc761be4296c9aa47d060c1e", "fields": {"departement": "75", "stop_lat": 48.85412622900593, "code_postal": "75107", "stop_lon": 2.305889085070191, "coord": [48.85412622900593, 2.305889085070191], "stop_id": 3764777, "stop_desc": "PLACE DE L'ECOLE MILITAIRE - 75107", "stop_name": "ECOLE MILITAIRE"}, "geometry": {"type": "Point", "coordinates": [2.305889085070191, 48.85412622900593]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3ce37a34aecc91e88addc55c8318efc2bb125405", "fields": {"departement": "75", "stop_lat": 48.84060312525939, "code_postal": "75114", "stop_lon": 2.3214738516294093, "coord": [48.84060312525939, 2.3214738516294093], "stop_id": 3764786, "stop_desc": "48 AVENUE DU MAINE - 75114", "stop_name": "GARE MONTPARNASSE"}, "geometry": {"type": "Point", "coordinates": [2.3214738516294093, 48.84060312525939]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dcd5a5d9e4838859a1eac0dc317279156bf6ff9c", "fields": {"departement": "75", "stop_lat": 48.83643311204049, "code_postal": "75114", "stop_lon": 2.323204200254015, "coord": [48.83643311204049, 2.323204200254015], "stop_id": 3764788, "stop_desc": "108 AVENUE DU MAINE - 75114", "stop_name": "LOSSERAND - MAINE"}, "geometry": {"type": "Point", "coordinates": [2.323204200254015, 48.83643311204049]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2e98b2b1531479c74123e6dede0c5302e04c86ea", "fields": {"departement": "75", "stop_lat": 48.871287153820475, "code_postal": "75109", "stop_lon": 2.3317097306442087, "coord": [48.871287153820475, 2.3317097306442087], "stop_id": 3764801, "stop_desc": "FACE 1 RUE AUBER - 75109", "stop_name": "OPERA"}, "geometry": {"type": "Point", "coordinates": [2.3317097306442087, 48.871287153820475]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6644179367a6d5a3dc641f4414c71dd6af07cbba", "fields": {"departement": "75", "stop_lat": 48.866991279826735, "code_postal": "75101", "stop_lon": 2.333671877417782, "coord": [48.866991279826735, 2.333671877417782], "stop_id": 3764804, "stop_desc": "25 - 27 AVENUE DE L'OPERA - 75101", "stop_name": "PYRAMIDES"}, "geometry": {"type": "Point", "coordinates": [2.333671877417782, 48.866991279826735]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "39e5eeadfe9a18241340e9f25290bb567ae901ae", "fields": {"departement": "75", "stop_lat": 48.86224599293963, "code_postal": "75101", "stop_lon": 2.3385487319755973, "coord": [48.86224599293963, 2.3385487319755973], "stop_id": 3764807, "stop_desc": "151 BIS RUE SAINT HONORE - 75101", "stop_name": "SAINT-HONORE - VALOIS"}, "geometry": {"type": "Point", "coordinates": [2.3385487319755973, 48.86224599293963]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d74f02f37957d7d2b3b64b7d798a410cc4a47028", "fields": {"departement": "75", "stop_lat": 48.8586509790969, "code_postal": "75101", "stop_lon": 2.341000357215369, "coord": [48.8586509790969, 2.341000357215369], "stop_id": 3764810, "stop_desc": "FACE 14 QUAI DU LOUVRE - 75101", "stop_name": "PONT NEUF - QUAI DU LOUVRE"}, "geometry": {"type": "Point", "coordinates": [2.341000357215369, 48.8586509790969]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "73f65e5436efd6615018410b9c00f9fe87922fb4", "fields": {"departement": "75", "stop_lat": 48.855415256092286, "code_postal": "75101", "stop_lon": 2.3458079091124455, "coord": [48.855415256092286, 2.3458079091124455], "stop_id": 3764813, "stop_desc": "FACE 1 BOULEVARD DU PALAIS - 75101", "stop_name": "CITE - PALAIS DE JUSTICE"}, "geometry": {"type": "Point", "coordinates": [2.3458079091124455, 48.855415256092286]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b50d291987d18ea5f6ee5132c12b1bae7a110604", "fields": {"departement": "75", "stop_lat": 48.843875523629535, "code_postal": "75105", "stop_lon": 2.342388199416716, "coord": [48.843875523629535, 2.342388199416716], "stop_id": 3764819, "stop_desc": "29 RUE GAY LUSSAC - 75105", "stop_name": "SAINT-JACQUES - GAY-LUSSAC"}, "geometry": {"type": "Point", "coordinates": [2.342388199416716, 48.843875523629535]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d981553a44e2e2305472f6ea1a6882302fd16b3f", "fields": {"departement": "75", "stop_lat": 48.841637574364405, "code_postal": "75105", "stop_lon": 2.3435045040350824, "coord": [48.841637574364405, 2.3435045040350824], "stop_id": 3764821, "stop_desc": "49-51 RUE GAY LUSSAC - 75105", "stop_name": "FEUILLANTINES"}, "geometry": {"type": "Point", "coordinates": [2.3435045040350824, 48.841637574364405]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e0219debacc0137c99cb0c690ecc23008db5167a", "fields": {"departement": "75", "stop_lat": 48.84046904641703, "code_postal": "75105", "stop_lon": 2.3458599080092717, "coord": [48.84046904641703, 2.3458599080092717], "stop_id": 3764823, "stop_desc": "70 RUE CLAUDE BERNARD - 75105", "stop_name": "BERTHOLLET - VAUQUELIN"}, "geometry": {"type": "Point", "coordinates": [2.3458599080092717, 48.84046904641703]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4e1e076cf5768c49df958229a958fc3250ef9615", "fields": {"departement": "75", "stop_lat": 48.83731445315705, "code_postal": "75113", "stop_lon": 2.345273938065922, "coord": [48.83731445315705, 2.345273938065922], "stop_id": 3764824, "stop_desc": "4 RUE DE LA GLACIERE - 75113", "stop_name": "PORT ROYAL - BERTHOLLET"}, "geometry": {"type": "Point", "coordinates": [2.345273938065922, 48.83731445315705]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5b6ced50a36e90e50e804f0c74a6e2d0ef609afd", "fields": {"departement": "75", "stop_lat": 48.83549896754265, "code_postal": "75113", "stop_lon": 2.345191970040922, "coord": [48.83549896754265, 2.345191970040922], "stop_id": 3764826, "stop_desc": "15-15 BIS RUE DE LA GLACIERE - 75113", "stop_name": "GLACIERE - ARAGO"}, "geometry": {"type": "Point", "coordinates": [2.345191970040922, 48.83549896754265]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b9283dbcb5fd2260bbbba315a7124e1ff63ba177", "fields": {"departement": "75", "stop_lat": 48.82883030869702, "code_postal": "75113", "stop_lon": 2.3425228386536894, "coord": [48.82883030869702, 2.3425228386536894], "stop_id": 3764831, "stop_desc": "PASSAGE VICTOR MARCHAND - 75113", "stop_name": "DAVIEL"}, "geometry": {"type": "Point", "coordinates": [2.3425228386536894, 48.82883030869702]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "86508e7a596f11b37fa7e4f527740de216815bea", "fields": {"departement": "75", "stop_lat": 48.81964485343208, "code_postal": "75114", "stop_lon": 2.3437196214207834, "coord": [48.81964485343208, 2.3437196214207834], "stop_id": 3764836, "stop_desc": "6-10 BOULEVARD JOURDAN - 75114", "stop_name": "STADE CHARLETY - PORTE DE GENTILLY"}, "geometry": {"type": "Point", "coordinates": [2.3437196214207834, 48.81964485343208]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ff9d1e390d6624fdc6b613b547a9032342310010", "fields": {"departement": "75", "stop_lat": 48.850067906070635, "code_postal": "75105", "stop_lon": 2.3425522330838273, "coord": [48.850067906070635, 2.3425522330838273], "stop_id": 3764842, "stop_desc": "29-31 BOULEVARD SAINT-MICHEL - 75105", "stop_name": "LES ECOLES"}, "geometry": {"type": "Point", "coordinates": [2.3425522330838273, 48.850067906070635]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "664bfc7ef3712836cbd69f8ad7f491f107188d80", "fields": {"departement": "75", "stop_lat": 48.83858931715887, "code_postal": "75115", "stop_lon": 2.3174851598728554, "coord": [48.83858931715887, 2.3174851598728554], "stop_id": 3764963, "stop_desc": "PLACE DES 5 MARTYRS DU LYCEE BUFFON - 75115", "stop_name": "MONTPARNASSE 2 - GARE TGV"}, "geometry": {"type": "Point", "coordinates": [2.3174851598728554, 48.83858931715887]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e437b8114d6b9a0f5f8e5f0f0af7da4797bea39d", "fields": {"departement": "75", "stop_lat": 48.84195202597997, "code_postal": "75114", "stop_lon": 2.3291393929668964, "coord": [48.84195202597997, 2.3291393929668964], "stop_id": 3764968, "stop_desc": "106 BOULEVARD DU MONTPARNASSE - 75114", "stop_name": "VAVIN"}, "geometry": {"type": "Point", "coordinates": [2.3291393929668964, 48.84195202597997]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "39f6aa7fc2868daf57b0bec639c197b88fd331a1", "fields": {"departement": "75", "stop_lat": 48.83851900607731, "code_postal": "75114", "stop_lon": 2.3407538267601082, "coord": [48.83851900607731, 2.3407538267601082], "stop_id": 3764971, "stop_desc": "113 BOULEVARD DE PORT ROYAL - 75114", "stop_name": "PORT ROYAL - SAINT-JACQUES"}, "geometry": {"type": "Point", "coordinates": [2.3407538267601082, 48.83851900607731]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3e51cc8d913ecb6ef0734d2c9ffda63a0f9508a5", "fields": {"departement": "75", "stop_lat": 48.84260538929042, "code_postal": "75113", "stop_lon": 2.363997342939993, "coord": [48.84260538929042, 2.363997342939993], "stop_id": 3764976, "stop_desc": "5 BIS BOULEVARD DE L'HOPITAL - 75113", "stop_name": "GARE D'AUSTERLITZ"}, "geometry": {"type": "Point", "coordinates": [2.363997342939993, 48.84260538929042]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8eb24ed925ac1e9b8c85f382d5b2e409acfeb4bc", "fields": {"departement": "75", "stop_lat": 48.84523749224217, "code_postal": "75112", "stop_lon": 2.3690506507770803, "coord": [48.84523749224217, 2.3690506507770803], "stop_id": 3764977, "stop_desc": "4 BIS BOULEVARD DIDEROT - 75112", "stop_name": "PONT D'AUSTERLITZ - QUAI DE LA RAPEE"}, "geometry": {"type": "Point", "coordinates": [2.3690506507770803, 48.84523749224217]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2130d6c3b51ff3f3940553d52a5624d21e286353", "fields": {"departement": "75", "stop_lat": 48.845677278703754, "code_postal": "75112", "stop_lon": 2.3712296777810264, "coord": [48.845677278703754, 2.3712296777810264], "stop_id": 3764980, "stop_desc": "15-17 BOULEVARD DIDEROT - 75112", "stop_name": "GARE DE LYON - DIDEROT"}, "geometry": {"type": "Point", "coordinates": [2.3712296777810264, 48.845677278703754]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ec8228ce0688187b4db10c30e3ed82692524d178", "fields": {"departement": "75", "stop_lat": 48.84060312525939, "code_postal": "75114", "stop_lon": 2.3214738516294093, "coord": [48.84060312525939, 2.3214738516294093], "stop_id": 3764996, "stop_desc": "48 AVENUE DU MAINE - 75114", "stop_name": "GARE MONTPARNASSE"}, "geometry": {"type": "Point", "coordinates": [2.3214738516294093, 48.84060312525939]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f9c44ce5945268fd47f61307676b21585f9f37ef", "fields": {"departement": "91", "stop_lat": 48.70619232311715, "code_postal": "91027", "stop_lon": 2.371287955840267, "coord": [48.70619232311715, 2.371287955840267], "stop_id": 4378131, "stop_desc": "FACE 103 BIS AV FRANCOIS MITTERRAND - 91027", "stop_name": "BELLE ETOILE"}, "geometry": {"type": "Point", "coordinates": [2.371287955840267, 48.70619232311715]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "37406a788d08f67eb4b125540ad4000333b115fd", "fields": {"departement": "91", "stop_lat": 48.70593138039471, "code_postal": "91027", "stop_lon": 2.372238430729525, "coord": [48.70593138039471, 2.372238430729525], "stop_id": 4378133, "stop_desc": "125 AVENUE MARCEL SEMBAT - 91027", "stop_name": "BELLE ETOILE - LA POMPE"}, "geometry": {"type": "Point", "coordinates": [2.372238430729525, 48.70593138039471]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c58a30ba673de370d67aed8f16744e3a24f95225", "fields": {"departement": "91", "stop_lat": 48.71806852688181, "code_postal": "91027", "stop_lon": 2.4068717599582716, "coord": [48.71806852688181, 2.4068717599582716], "stop_id": 4378145, "stop_desc": "50-52 R ROBERT SCHUMAN - 91027", "stop_name": "RUE D'ABLON"}, "geometry": {"type": "Point", "coordinates": [2.4068717599582716, 48.71806852688181]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8cde3ff95b04f64aea93702e57d9abbdf90d2b66", "fields": {"departement": "91", "stop_lat": 48.71953907577744, "code_postal": "91027", "stop_lon": 2.412687770258118, "coord": [48.71953907577744, 2.412687770258118], "stop_id": 4378149, "stop_desc": "45-47 R MAURICE GUNSBOURG - 91027", "stop_name": "GUNSBOURG"}, "geometry": {"type": "Point", "coordinates": [2.412687770258118, 48.71953907577744]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fb2ae0f94a59f59f9287c144978d5582aa629f1d", "fields": {"departement": "91", "stop_lat": 48.71845274678824, "code_postal": "91027", "stop_lon": 2.4106621895660574, "coord": [48.71845274678824, 2.4106621895660574], "stop_id": 4378150, "stop_desc": "FACE 2 RUE MAURICE GUNSBOURG - 91027", "stop_name": "CARON - GUNSBOURG"}, "geometry": {"type": "Point", "coordinates": [2.4106621895660574, 48.71845274678824]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7b9c42e1f6b9e9eff44f1524e037429482168454", "fields": {"departement": "91", "stop_lat": 48.71294720675443, "code_postal": "91027", "stop_lon": 2.4032112159887076, "coord": [48.71294720675443, 2.4032112159887076], "stop_id": 4378154, "stop_desc": "0 PL DE ROTHENBURG-OB-DER-TAUBER - 91027", "stop_name": "ATHIS-MONS RER"}, "geometry": {"type": "Point", "coordinates": [2.4032112159887076, 48.71294720675443]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a1522da6fce77a6712e8c5df9aa49bb2819843ac", "fields": {"departement": "91", "stop_lat": 48.702096796240035, "code_postal": "91027", "stop_lon": 2.3874993801835265, "coord": [48.702096796240035, 2.3874993801835265], "stop_id": 4378164, "stop_desc": "102 AVENUE DU 18 AVRIL - 91027", "stop_name": "CITE MOZART"}, "geometry": {"type": "Point", "coordinates": [2.3874993801835265, 48.702096796240035]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b2e0d691a357c7ecf9307d7c6375eff77c4f4138", "fields": {"departement": "91", "stop_lat": 48.71091407362534, "code_postal": "91027", "stop_lon": 2.388526544318977, "coord": [48.71091407362534, 2.388526544318977], "stop_id": 4378175, "stop_desc": "FACE 32 AV HENRI DUNANT - 91027", "stop_name": "CIMETIERE D'ATHIS-MONS"}, "geometry": {"type": "Point", "coordinates": [2.388526544318977, 48.71091407362534]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bce12013769916eb406761230cf77fefb679e8e6", "fields": {"departement": "91", "stop_lat": 48.70733186538039, "code_postal": "91027", "stop_lon": 2.3776581986811003, "coord": [48.70733186538039, 2.3776581986811003], "stop_id": 4378186, "stop_desc": "81 AVENUE MARCEL SEMBAT - 91027", "stop_name": "LA PLAINE"}, "geometry": {"type": "Point", "coordinates": [2.3776581986811003, 48.70733186538039]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "98a12d8ffc9c4f79813a3a937ff8f0f72241a11d", "fields": {"departement": "91", "stop_lat": 48.7077884725674, "code_postal": "91027", "stop_lon": 2.3826564118763565, "coord": [48.7077884725674, 2.3826564118763565], "stop_id": 4378188, "stop_desc": "RUE JEAN-BAPTISTE DE LA SALLE - 91027", "stop_name": "ALBERT SARRAUT"}, "geometry": {"type": "Point", "coordinates": [2.3826564118763565, 48.7077884725674]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d914c89ecaba6ab25be5222817beecf55908f97f", "fields": {"departement": "91", "stop_lat": 48.712915379986754, "code_postal": "91027", "stop_lon": 2.39530617333297, "coord": [48.712915379986754, 2.39530617333297], "stop_id": 4378194, "stop_desc": "PL DU 19 MARS 1962 - 91027", "stop_name": "DELALANDE PASTEUR"}, "geometry": {"type": "Point", "coordinates": [2.39530617333297, 48.712915379986754]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8eb4e85bf0eefd5654afc5c265828e37abf64b94", "fields": {"departement": "91", "stop_lat": 48.723459037309716, "code_postal": "91027", "stop_lon": 2.411063228539807, "coord": [48.723459037309716, 2.411063228539807], "stop_id": 4378198, "stop_desc": "AV DE L'EUROPE - 91027", "stop_name": "CHATEAU D'ABLON"}, "geometry": {"type": "Point", "coordinates": [2.411063228539807, 48.723459037309716]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a9a840cd335838d6f12c9ec8d976d5b1a385b109", "fields": {"departement": "91", "stop_lat": 48.707943662135136, "code_postal": "91027", "stop_lon": 2.397500775836439, "coord": [48.707943662135136, 2.397500775836439], "stop_id": 4378212, "stop_desc": "49 R EDOUARD VAILLANT - 91027", "stop_name": "EDOUARD VAILLANT"}, "geometry": {"type": "Point", "coordinates": [2.397500775836439, 48.707943662135136]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bc26894fba37bd2fdaf1cfb3be9e09487a3f58f3", "fields": {"departement": "91", "stop_lat": 48.707835758959824, "code_postal": "91027", "stop_lon": 2.3975821377708644, "coord": [48.707835758959824, 2.3975821377708644], "stop_id": 4378213, "stop_desc": "R EDOUARD VAILLANT - 91027", "stop_name": "EDOUARD VAILLANT"}, "geometry": {"type": "Point", "coordinates": [2.3975821377708644, 48.707835758959824]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "83bc8f7505cb4cd181546afbb0b501e2f27eb179", "fields": {"departement": "91", "stop_lat": 48.70544720934439, "code_postal": "91027", "stop_lon": 2.392676797196865, "coord": [48.70544720934439, 2.392676797196865], "stop_id": 4378214, "stop_desc": "FACE 6-8 R EDOUARD VAILLANT - 91027", "stop_name": "COTTAGE"}, "geometry": {"type": "Point", "coordinates": [2.392676797196865, 48.70544720934439]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "be28b600bcebd26cee444c947dd12d4022f3726a", "fields": {"departement": "91", "stop_lat": 48.70546503377607, "code_postal": "91027", "stop_lon": 2.393002748957722, "coord": [48.70546503377607, 2.393002748957722], "stop_id": 4378215, "stop_desc": "FACE 3-5 R EDOUARD VAILLANT - 91027", "stop_name": "COTTAGE"}, "geometry": {"type": "Point", "coordinates": [2.393002748957722, 48.70546503377607]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a20da2d4a7a40a62d51bb6f0a2891abc69236eac", "fields": {"departement": "91", "stop_lat": 48.702096796240035, "code_postal": "91027", "stop_lon": 2.3874993801835265, "coord": [48.702096796240035, 2.3874993801835265], "stop_id": 4378219, "stop_desc": "102 AVENUE DU 18 AVRIL - 91027", "stop_name": "CITE MOZART"}, "geometry": {"type": "Point", "coordinates": [2.3874993801835265, 48.702096796240035]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fc4591e16589f3f488d31c6b909d8bc67bc3b43b", "fields": {"departement": "91", "stop_lat": 48.69991406717884, "code_postal": "91027", "stop_lon": 2.383858078039875, "coord": [48.69991406717884, 2.383858078039875], "stop_id": 4378221, "stop_desc": "62 AV DU 18 AVRIL - 91027", "stop_name": "DOCTEUR GUERIN"}, "geometry": {"type": "Point", "coordinates": [2.383858078039875, 48.69991406717884]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8267eb6a4045700c0a010df161da2a425ab7014e", "fields": {"departement": "91", "stop_lat": 48.70919439569311, "code_postal": "91027", "stop_lon": 2.37157513175139, "coord": [48.70919439569311, 2.37157513175139], "stop_id": 4378231, "stop_desc": "AVENUE FRANCOIS MITTERRAND - 91027", "stop_name": "ARISTIDE BRIAND"}, "geometry": {"type": "Point", "coordinates": [2.37157513175139, 48.70919439569311]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c5b36acb6536710942a0c0bb52649fafef0340a8", "fields": {"departement": "92", "stop_lat": 48.78004214128772, "code_postal": "92014", "stop_lon": 2.3130874320121375, "coord": [48.78004214128772, 2.3130874320121375], "stop_id": 4378261, "stop_desc": "PLACE DE LA GARE - 92014", "stop_name": "BOURG-LA-REINE RER"}, "geometry": {"type": "Point", "coordinates": [2.3130874320121375, 48.78004214128772]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "139c3a38f86e6d47f10acc228d8698489b981e66", "fields": {"departement": "92", "stop_lat": 48.77713929852077, "code_postal": "92014", "stop_lon": 2.3145031060719545, "coord": [48.77713929852077, 2.3145031060719545], "stop_id": 4378264, "stop_desc": "131 AVENUE DU GENERAL LECLERC - 92014", "stop_name": "PETIT CHAMBORD - LYCEE LAKANAL"}, "geometry": {"type": "Point", "coordinates": [2.3145031060719545, 48.77713929852077]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d4c94bd1895966ce3cd1642ec731fbce53d1efd7", "fields": {"departement": "94", "stop_lat": 48.759308422307306, "code_postal": "94034", "stop_lon": 2.3240951048739342, "coord": [48.759308422307306, 2.3240951048739342], "stop_id": 4378276, "stop_desc": "FACE 50 AVENUE DE LA DIVISION LECLERC - 94034", "stop_name": "LE PETIT FRESNES"}, "geometry": {"type": "Point", "coordinates": [2.3240951048739342, 48.759308422307306]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2c194e4f6181ad89492ccc5e830985ab6951395d", "fields": {"departement": "94", "stop_lat": 48.757493168483855, "code_postal": "94034", "stop_lon": 2.3277659781564033, "coord": [48.757493168483855, 2.3277659781564033], "stop_id": 4378277, "stop_desc": "80 AVENUE DE LA DIVISION LECLERC - 94034", "stop_name": "LE CLOS LA GARENNE"}, "geometry": {"type": "Point", "coordinates": [2.3277659781564033, 48.757493168483855]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1ebff6ad2a6f3d1178e3c078147282e6aa569337", "fields": {"departement": "94", "stop_lat": 48.770247117178215, "code_postal": "94021", "stop_lon": 2.3485813636454473, "coord": [48.770247117178215, 2.3485813636454473], "stop_id": 4378286, "stop_desc": "BOULEVARD CIRCULAIRE NORD - 94021", "stop_name": "MAIRIE DE CHEVILLY-LARUE"}, "geometry": {"type": "Point", "coordinates": [2.3485813636454473, 48.770247117178215]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "edd26657c0b4c9d5d25d87462072869323f8c332", "fields": {"departement": "94", "stop_lat": 48.759448634048056, "code_postal": "94073", "stop_lon": 2.3693244252130907, "coord": [48.759448634048056, 2.3693244252130907], "stop_id": 4378292, "stop_desc": "ROUTE DE THIAIS - 94073", "stop_name": "LE COR DE CHASSE"}, "geometry": {"type": "Point", "coordinates": [2.3693244252130907, 48.759448634048056]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "581cf1b58688b907d722c8e7f17ca89bbcf2b09f", "fields": {"departement": "94", "stop_lat": 48.7564541376577, "code_postal": "94073", "stop_lon": 2.374297927820151, "coord": [48.7564541376577, 2.374297927820151], "stop_id": 4378294, "stop_desc": "AVENUE DU LUXEMBOURG - 94073", "stop_name": "LA BELLE EPINE"}, "geometry": {"type": "Point", "coordinates": [2.374297927820151, 48.7564541376577]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1353adf8242d4cde6f94e28a6c881bc4edcd2455", "fields": {"departement": "94", "stop_lat": 48.763057563786816, "code_postal": "94022", "stop_lon": 2.401956052432323, "coord": [48.763057563786816, 2.401956052432323], "stop_id": 4378303, "stop_desc": "37 AVENUE GAMBETTA - 94022", "stop_name": "RENE PANHARD"}, "geometry": {"type": "Point", "coordinates": [2.401956052432323, 48.763057563786816]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4d07bef8429f6b82433c9094935e81dd46c8864a", "fields": {"departement": "94", "stop_lat": 48.76432242204478, "code_postal": "94022", "stop_lon": 2.406335512595289, "coord": [48.76432242204478, 2.406335512595289], "stop_id": 4378304, "stop_desc": "7 AV GAMBETTA - 94022", "stop_name": "ROUGET DE LISLE"}, "geometry": {"type": "Point", "coordinates": [2.406335512595289, 48.76432242204478]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "690374071710a9505b527173d28aab184844420a", "fields": {"departement": "94", "stop_lat": 48.765524735623956, "code_postal": "94022", "stop_lon": 2.409844938920653, "coord": [48.765524735623956, 2.409844938920653], "stop_id": 4378306, "stop_desc": "AVENUE JEAN JAURES - 94022", "stop_name": "CHOISY-LE-ROI RER"}, "geometry": {"type": "Point", "coordinates": [2.409844938920653, 48.765524735623956]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d6f804c8fd8a8fa8253317f76269f177db361b35", "fields": {"departement": "94", "stop_lat": 48.76577673270161, "code_postal": "94022", "stop_lon": 2.4093014390791234, "coord": [48.76577673270161, 2.4093014390791234], "stop_id": 4378307, "stop_desc": "AVENUE JEAN JAURES - 94022", "stop_name": "CHOISY-LE-ROI RER"}, "geometry": {"type": "Point", "coordinates": [2.4093014390791234, 48.76577673270161]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9006b1046e78d01ca84c84d9cbb67ccb659db716", "fields": {"departement": "94", "stop_lat": 48.77042976802533, "code_postal": "94028", "stop_lon": 2.4266447259714754, "coord": [48.77042976802533, 2.4266447259714754], "stop_id": 4378312, "stop_desc": "116 AVENUE VICTOR HUGO - 94028", "stop_name": "PARC INTERDEPARTEMENTAL DES SPORTS"}, "geometry": {"type": "Point", "coordinates": [2.4266447259714754, 48.77042976802533]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a10437c80b0a991444e7dcb623f6663bf41fff14", "fields": {"departement": "94", "stop_lat": 48.78130808599266, "code_postal": "94028", "stop_lon": 2.4449423421727365, "coord": [48.78130808599266, 2.4449423421727365], "stop_id": 4378317, "stop_desc": "ROUTE DE CHOISY - 94028", "stop_name": "BASE DE LOISIRS DE CRETEIL"}, "geometry": {"type": "Point", "coordinates": [2.4449423421727365, 48.78130808599266]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "676fcd68896cfa4581eedc90f0dc251a59cff522", "fields": {"departement": "94", "stop_lat": 48.78382278637771, "code_postal": "94028", "stop_lon": 2.447055715521933, "coord": [48.78382278637771, 2.447055715521933], "stop_id": 4378319, "stop_desc": "ROUTE DE CHOISY - 94028", "stop_name": "PREFECTURE DU VAL-DE-MARNE"}, "geometry": {"type": "Point", "coordinates": [2.447055715521933, 48.78382278637771]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dad071b578c85eec42e04cd21f16aa58b46f68f4", "fields": {"departement": "94", "stop_lat": 48.78992000482424, "code_postal": "94028", "stop_lon": 2.4529585442300395, "coord": [48.78992000482424, 2.4529585442300395], "stop_id": 4378322, "stop_desc": "ROUTE DE CHOISY - 94028", "stop_name": "CRETEIL - UNIVERSITE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.4529585442300395, 48.78992000482424]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "94f774bc9f37d14cf173222735aed904508c678d", "fields": {"departement": "94", "stop_lat": 48.76284237079401, "code_postal": "94073", "stop_lon": 2.4009905019262536, "coord": [48.76284237079401, 2.4009905019262536], "stop_id": 4378332, "stop_desc": "FACE 2BIS AVENUE GEORGES HALGOULT - 94073", "stop_name": "RENE PANHARD"}, "geometry": {"type": "Point", "coordinates": [2.4009905019262536, 48.76284237079401]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b1c49bf146101ee679920a8073097b7f4effa5b2", "fields": {"departement": "94", "stop_lat": 48.768717139337944, "code_postal": "94022", "stop_lon": 2.421026189476439, "coord": [48.768717139337944, 2.421026189476439], "stop_id": 4378335, "stop_desc": "79 AVENUE VICTOR HUGO - 94022", "stop_name": "MARCELLIN BERTHELOT"}, "geometry": {"type": "Point", "coordinates": [2.421026189476439, 48.768717139337944]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "37b5e8fc2d733ad8a0be3494ff27b9b875f3745c", "fields": {"departement": "94", "stop_lat": 48.81047498025869, "code_postal": "94043", "stop_lon": 2.361939589627888, "coord": [48.81047498025869, 2.361939589627888], "stop_id": 4378356, "stop_desc": "94-96 AVENUE DE FONTAINEBLEAU - 94043", "stop_name": "LE KREMLIN-BICETRE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.361939589627888, 48.81047498025869]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a468f0b162e76b3703e8a3440e291c8fb66981b3", "fields": {"departement": "94", "stop_lat": 48.80237644371773, "code_postal": "94076", "stop_lon": 2.3643847967808878, "coord": [48.80237644371773, 2.3643847967808878], "stop_id": 4378358, "stop_desc": "62 AVENUE DE PARIS - 94076", "stop_name": "HENRI BARBUSSE"}, "geometry": {"type": "Point", "coordinates": [2.3643847967808878, 48.80237644371773]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "211f9bf36d8500f08a6304ec84a399f24ae4099f", "fields": {"departement": "94", "stop_lat": 48.77696424758717, "code_postal": "94081", "stop_lon": 2.3764340329706126, "coord": [48.77696424758717, 2.3764340329706126], "stop_id": 4378368, "stop_desc": "118 RUE PAUL ARMANGOT - 94081", "stop_name": "PAUL ARMANGOT"}, "geometry": {"type": "Point", "coordinates": [2.3764340329706126, 48.77696424758717]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1691907824e5760cd640c28ad7bd8e2268384edf", "fields": {"departement": "94", "stop_lat": 48.76438351129038, "code_postal": "94073", "stop_lon": 2.392658086465313, "coord": [48.76438351129038, 2.392658086465313], "stop_id": 4378374, "stop_desc": "AVENUE RENE PANHARD - 94073", "stop_name": "MAIRIE DE THIAIS"}, "geometry": {"type": "Point", "coordinates": [2.392658086465313, 48.76438351129038]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0ee7f9cf561fbc45789bcec55ecb8cf06386ff2d", "fields": {"departement": "94", "stop_lat": 48.76456332374457, "code_postal": "94073", "stop_lon": 2.392549510379606, "coord": [48.76456332374457, 2.392549510379606], "stop_id": 4378391, "stop_desc": "72 AVENUE RENE PANHARD - 94073", "stop_name": "MAIRIE DE THIAIS"}, "geometry": {"type": "Point", "coordinates": [2.392549510379606, 48.76456332374457]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1070d1d6f75d1c4ea79022a38fd6b8fd38b6fce7", "fields": {"departement": "94", "stop_lat": 48.76654331143228, "code_postal": "94073", "stop_lon": 2.3866235455230114, "coord": [48.76654331143228, 2.3866235455230114], "stop_id": 4378393, "stop_desc": "2 AVENUE DU GENERAL DE GAULLE - 94073", "stop_name": "LOUIS DUPERREY"}, "geometry": {"type": "Point", "coordinates": [2.3866235455230114, 48.76654331143228]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7cb7cf71fe43e6a4dda1b5b813f23b5669527c3c", "fields": {"departement": "94", "stop_lat": 48.78041653890583, "code_postal": "94081", "stop_lon": 2.3735942108449115, "coord": [48.78041653890583, 2.3735942108449115], "stop_id": 4378398, "stop_desc": "206 RUE JULIAN GRIMAU - 94081", "stop_name": "JULIAN GRIMAU - VOIE VERTE"}, "geometry": {"type": "Point", "coordinates": [2.3735942108449115, 48.78041653890583]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "631f7f958973aed37ba95f1b1c3aebc178a2464f", "fields": {"departement": "94", "stop_lat": 48.784723458903116, "code_postal": "94076", "stop_lon": 2.3675854706064436, "coord": [48.784723458903116, 2.3675854706064436], "stop_id": 4378401, "stop_desc": "1 AVENUE DE LA DIVISION LECLERC - 94076", "stop_name": "VILLEJUIF DIVISION LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.3675854706064436, 48.784723458903116]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "61ce711954e95eff16a8cca437352a1ca63c120f", "fields": {"departement": "94", "stop_lat": 48.7939895585951, "code_postal": "94076", "stop_lon": 2.369277739405965, "coord": [48.7939895585951, 2.369277739405965], "stop_id": 4378404, "stop_desc": "97 BOULEVARD MAXIME GORKI - 94076", "stop_name": "GUYNEMER - MAXIME GORKI"}, "geometry": {"type": "Point", "coordinates": [2.369277739405965, 48.7939895585951]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "69c9077597a81cf59f217eab9c9a4303d5cc8922", "fields": {"departement": "94", "stop_lat": 48.803140339876805, "code_postal": "94076", "stop_lon": 2.3646845296732795, "coord": [48.803140339876805, 2.3646845296732795], "stop_id": 4378407, "stop_desc": "87 AVENUE DE PARIS - 94076", "stop_name": "HENRI BARBUSSE"}, "geometry": {"type": "Point", "coordinates": [2.3646845296732795, 48.803140339876805]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0387c98ce96f7d6d5105ce78210d12fffb79ddb8", "fields": {"departement": "94", "stop_lat": 48.77130776729869, "code_postal": "94021", "stop_lon": 2.3479289034384623, "coord": [48.77130776729869, 2.3479289034384623], "stop_id": 4390968, "stop_desc": "88 AVENUE DU GENERAL DE GAULLE - 94021", "stop_name": "MAIRIE DE CHEVILLY-LARUE"}, "geometry": {"type": "Point", "coordinates": [2.3479289034384623, 48.77130776729869]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ec5b1df8ff3d701fa70c68fd14fa04443cc64e76", "fields": {"departement": "94", "stop_lat": 48.77084862744517, "code_postal": "94021", "stop_lon": 2.3543468854886394, "coord": [48.77084862744517, 2.3543468854886394], "stop_id": 4390970, "stop_desc": "12 RUE DU PERE MAZURIE - 94021", "stop_name": "EGLISE DE CHEVILLY-LARUE"}, "geometry": {"type": "Point", "coordinates": [2.3543468854886394, 48.77084862744517]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "697b746336ddb11b69be4e88c920dcd7ff166ce4", "fields": {"departement": "91", "stop_lat": 48.685199806833644, "code_postal": "91589", "stop_lon": 2.332516913899929, "coord": [48.685199806833644, 2.332516913899929], "stop_id": 4394962, "stop_desc": "FACE 25 AVENUE DU MARECHAL DE LATTRE DE TASSIGNY - 91589", "stop_name": "COLLEGE LES GATINES"}, "geometry": {"type": "Point", "coordinates": [2.332516913899929, 48.685199806833644]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8e2f9d0befc51bbdee54f344d8b8cf8136cc3428", "fields": {"departement": "91", "stop_lat": 48.70137835800327, "code_postal": "91589", "stop_lon": 2.352653783738852, "coord": [48.70137835800327, 2.352653783738852], "stop_id": 4394968, "stop_desc": "FACE 47 BOULEVARD DES BELGES - 91589", "stop_name": "BOULEVARD DES BELGES"}, "geometry": {"type": "Point", "coordinates": [2.352653783738852, 48.70137835800327]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4605f3e7ae1b5f7b797e716118d8021773ef0942", "fields": {"departement": "91", "stop_lat": 48.71290818217382, "code_postal": "91479", "stop_lon": 2.365709954080588, "coord": [48.71290818217382, 2.365709954080588], "stop_id": 4394971, "stop_desc": "61 AVENUE PAUL VAILLANT COUTURIER - 91479", "stop_name": "HENRI BARBUSSE"}, "geometry": {"type": "Point", "coordinates": [2.365709954080588, 48.71290818217382]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e17b6c4efdccf44add8475a34352276b41d51d6f", "fields": {"departement": "91", "stop_lat": 48.68788732962657, "code_postal": "91589", "stop_lon": 2.3308468286108015, "coord": [48.68788732962657, 2.3308468286108015], "stop_id": 4394976, "stop_desc": "AVENUE DU GENERAL FRIAND - 91589", "stop_name": "MEUNIERS"}, "geometry": {"type": "Point", "coordinates": [2.3308468286108015, 48.68788732962657]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "84d498b06b3e0e8cd75ecb9c295452ff7f514bf8", "fields": {"departement": "91", "stop_lat": 48.685064978818346, "code_postal": "91589", "stop_lon": 2.3325576517803883, "coord": [48.685064978818346, 2.3325576517803883], "stop_id": 4394977, "stop_desc": "21 AVENUE DU MARECHAL DE LATTRE DE TASSIGNY - 91589", "stop_name": "COLLEGE LES GATINES"}, "geometry": {"type": "Point", "coordinates": [2.3325576517803883, 48.685064978818346]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6dfe53dc633be4f5610d2eec04732b20164cff83", "fields": {"departement": "91", "stop_lat": 48.68379767096476, "code_postal": "91589", "stop_lon": 2.3366709530842074, "coord": [48.68379767096476, 2.3366709530842074], "stop_id": 4394978, "stop_desc": "39 AVENUE RAOUL LEBON - 91589", "stop_name": "MARGUERITES - SALVADOR ALLENDE"}, "geometry": {"type": "Point", "coordinates": [2.3366709530842074, 48.68379767096476]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e395a6a855c0d209114d5f9a7eea84a4509a28e2", "fields": {"departement": "91", "stop_lat": 48.6770825231923, "code_postal": "91589", "stop_lon": 2.3492804595440546, "coord": [48.6770825231923, 2.3492804595440546], "stop_id": 4394981, "stop_desc": "15 AVENUE CHARLES DE GAULLE - 91589", "stop_name": "SAVIGNY-SUR-ORGE - CARNOT - RER"}, "geometry": {"type": "Point", "coordinates": [2.3492804595440546, 48.6770825231923]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a05d5daad290b507929fb033b3b0416a01ac1aad", "fields": {"departement": "91", "stop_lat": 48.70137835800327, "code_postal": "91589", "stop_lon": 2.352653783738852, "coord": [48.70137835800327, 2.352653783738852], "stop_id": 4394989, "stop_desc": "FACE 47 BOULEVARD DES BELGES - 91589", "stop_name": "BOULEVARD DES BELGES"}, "geometry": {"type": "Point", "coordinates": [2.352653783738852, 48.70137835800327]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5a6b84ecbff483c30f85667daaa4951a729b71f7", "fields": {"departement": "91", "stop_lat": 48.70517122890431, "code_postal": "91479", "stop_lon": 2.3547055550080347, "coord": [48.70517122890431, 2.3547055550080347], "stop_id": 4394990, "stop_desc": "46 AVENUE CHARLES DE GAULLE - 91479", "stop_name": "LES FLEURS"}, "geometry": {"type": "Point", "coordinates": [2.3547055550080347, 48.70517122890431]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5436706269840b818a5519ddd9516e555b5ef8e2", "fields": {"departement": "91", "stop_lat": 48.71290818217382, "code_postal": "91479", "stop_lon": 2.365709954080588, "coord": [48.71290818217382, 2.365709954080588], "stop_id": 4394992, "stop_desc": "61 AVENUE PAUL VAILLANT COUTURIER - 91479", "stop_name": "HENRI BARBUSSE"}, "geometry": {"type": "Point", "coordinates": [2.365709954080588, 48.71290818217382]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f2b615ede45e90d77fbbae2eac96d9c59b49e28d", "fields": {"departement": "91", "stop_lat": 48.685199806833644, "code_postal": "91589", "stop_lon": 2.332516913899929, "coord": [48.685199806833644, 2.332516913899929], "stop_id": 4394995, "stop_desc": "FACE 25 AVENUE DU MARECHAL DE LATTRE DE TASSIGNY - 91589", "stop_name": "COLLEGE LES GATINES"}, "geometry": {"type": "Point", "coordinates": [2.332516913899929, 48.685199806833644]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9b5dc88603d79c73c42938cf2e9a4ccabd3678cd", "fields": {"departement": "91", "stop_lat": 48.69036746920007, "code_postal": "91589", "stop_lon": 2.3517951995057187, "coord": [48.69036746920007, 2.3517951995057187], "stop_id": 4394997, "stop_desc": "79 AVENUE GABRIEL PERI - 91589", "stop_name": "PLACE DE LA REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.3517951995057187, 48.69036746920007]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9aaad67976703508404ff4fd780be324902b1b25", "fields": {"departement": "91", "stop_lat": 48.70137835800327, "code_postal": "91589", "stop_lon": 2.352653783738852, "coord": [48.70137835800327, 2.352653783738852], "stop_id": 4395001, "stop_desc": "FACE 47 BOULEVARD DES BELGES - 91589", "stop_name": "BOULEVARD DES BELGES"}, "geometry": {"type": "Point", "coordinates": [2.352653783738852, 48.70137835800327]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cec04f5a113e8870e8d190f009fde9694568fd9d", "fields": {"departement": "91", "stop_lat": 48.70962871577974, "code_postal": "91479", "stop_lon": 2.3595149428073428, "coord": [48.70962871577974, 2.3595149428073428], "stop_id": 4395003, "stop_desc": "92 AVENUE DU GENERAL DE GAULLE - 91479", "stop_name": "MAXIME VEDY"}, "geometry": {"type": "Point", "coordinates": [2.3595149428073428, 48.70962871577974]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9892f4aed3559e4c83cbe1be9c3048a3c3e34a4c", "fields": {"departement": "94", "stop_lat": 48.78461598883045, "code_postal": "94076", "stop_lon": 2.3660348682465173, "coord": [48.78461598883045, 2.3660348682465173], "stop_id": 4423343, "stop_desc": "4 RUE DES VILLAS - 94076", "stop_name": "LES BONS ENFANTS"}, "geometry": {"type": "Point", "coordinates": [2.3660348682465173, 48.78461598883045]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cc883a1f7756a49d4de2ce0415cabbdbcb236c39", "fields": {"departement": "94", "stop_lat": 48.775575985902144, "code_postal": "94038", "stop_lon": 2.3566058513906185, "coord": [48.775575985902144, 2.3566058513906185], "stop_id": 4423347, "stop_desc": "39 RUE PAUL HOCHART - 94038", "stop_name": "POITOU"}, "geometry": {"type": "Point", "coordinates": [2.3566058513906185, 48.775575985902144]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "03cc3b7a5f212147d495b5cc4e62ce8092af32cd", "fields": {"departement": "94", "stop_lat": 48.772395787216, "code_postal": "94021", "stop_lon": 2.3389680290446595, "coord": [48.772395787216, 2.3389680290446595], "stop_id": 4423353, "stop_desc": "40 BOULEVARD JEAN MERMOZ - 94021", "stop_name": "JEAN MERMOZ - GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.3389680290446595, 48.772395787216]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b540dba3ade80753d0dee7fc5ef7d77382080b99", "fields": {"departement": "94", "stop_lat": 48.755874712688076, "code_postal": "94034", "stop_lon": 2.322084106341217, "coord": [48.755874712688076, 2.322084106341217], "stop_id": 4423359, "stop_desc": "2 AVENUE DE LA REPUBLIQUE - 94034", "stop_name": "MAIRIE DE FRESNES"}, "geometry": {"type": "Point", "coordinates": [2.322084106341217, 48.755874712688076]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e423ed4a1ae8ab848c7b07201d3fa766e1c64964", "fields": {"departement": "94", "stop_lat": 48.82357178419231, "code_postal": "94018", "stop_lon": 2.404222936993622, "coord": [48.82357178419231, 2.404222936993622], "stop_id": 4439435, "stop_desc": "AVENUE DE LA LIBERTE - 94018", "stop_name": "ARCHEVECHE"}, "geometry": {"type": "Point", "coordinates": [2.404222936993622, 48.82357178419231]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "738798559841d3143701e56690ec504fe364816a", "fields": {"departement": "94", "stop_lat": 48.804777925970896, "code_postal": "94081", "stop_lon": 2.4050831174449394, "coord": [48.804777925970896, 2.4050831174449394], "stop_id": 4439442, "stop_desc": "128 AVENUE ANATOLE FRANCE - 94081", "stop_name": "PORT A L'ANGLAIS"}, "geometry": {"type": "Point", "coordinates": [2.4050831174449394, 48.804777925970896]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bd45893584de89ea6a2d19b2b97460ee51b66437", "fields": {"departement": "94", "stop_lat": 48.79045958793866, "code_postal": "94081", "stop_lon": 2.3884690512328666, "coord": [48.79045958793866, 2.3884690512328666], "stop_id": 4439449, "stop_desc": "17 AVENUE MAXIMILIEN ROBESPIERRE - 94081", "stop_name": "HOTEL DE VILLE DE VITRY"}, "geometry": {"type": "Point", "coordinates": [2.3884690512328666, 48.79045958793866]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "34716217d383a32b3e3330bb524fb4e50c042247", "fields": {"departement": "94", "stop_lat": 48.821606439542855, "code_postal": "94018", "stop_lon": 2.4141972075539684, "coord": [48.821606439542855, 2.4141972075539684], "stop_id": 4439454, "stop_desc": "RUE DE LA REPUBLIQUE - 94018", "stop_name": "CHARENTON-ECOLES"}, "geometry": {"type": "Point", "coordinates": [2.4141972075539684, 48.821606439542855]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "59b8c80bdd6e148dedd1f62e68012c07e4a52c47", "fields": {"departement": "94", "stop_lat": 48.82357178419231, "code_postal": "94018", "stop_lon": 2.404222936993622, "coord": [48.82357178419231, 2.404222936993622], "stop_id": 4439457, "stop_desc": "AVENUE DE LA LIBERTE - 94018", "stop_name": "ARCHEVECHE"}, "geometry": {"type": "Point", "coordinates": [2.404222936993622, 48.82357178419231]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "680b33fb6b18d27ea43f1edf836c2b991ba10fb1", "fields": {"departement": "94", "stop_lat": 48.81781396314757, "code_postal": "94041", "stop_lon": 2.3980910406523597, "coord": [48.81781396314757, 2.3980910406523597], "stop_id": 4439459, "stop_desc": "50 BOULEVARD PAUL VAILLANT COUTURIER - 94041", "stop_name": "VAILLANT COUTURIER - LENINE"}, "geometry": {"type": "Point", "coordinates": [2.3980910406523597, 48.81781396314757]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5fb522139032e1380b83a1d4e196fb9c02068e89", "fields": {"departement": "94", "stop_lat": 48.795245983898745, "code_postal": "94081", "stop_lon": 2.3973435873756848, "coord": [48.795245983898745, 2.3973435873756848], "stop_id": 4439467, "stop_desc": "70 AVENUE PAUL VAILLANT-COUTURIER - 94081", "stop_name": "PAUL VAILLANT-COUTURIER"}, "geometry": {"type": "Point", "coordinates": [2.3973435873756848, 48.795245983898745]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6b590c88c93127a4a5f838116302a17f04db4a0f", "fields": {"departement": "94", "stop_lat": 48.78961431654919, "code_postal": "94081", "stop_lon": 2.3894067925901123, "coord": [48.78961431654919, 2.3894067925901123], "stop_id": 4439470, "stop_desc": "FACE 41 AVENUE DE L'ABBE ROGER DERRY - 94081", "stop_name": "HOTEL DE VILLE DE VITRY - R.DERRY"}, "geometry": {"type": "Point", "coordinates": [2.3894067925901123, 48.78961431654919]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "568505a601d0cf583ffc417b0937ebd6da706c8d", "fields": {"departement": "94", "stop_lat": 48.78867613628673, "code_postal": "94076", "stop_lon": 2.3746609690403804, "coord": [48.78867613628673, 2.3746609690403804], "stop_id": 4439474, "stop_desc": "77 AVENUE LOUIS ARAGON - 94076", "stop_name": "COLONEL FABIEN"}, "geometry": {"type": "Point", "coordinates": [2.3746609690403804, 48.78867613628673]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3c82415c786ff122251151a1bef6b224f973e9be", "fields": {"departement": "94", "stop_lat": 48.790570508596694, "code_postal": "94081", "stop_lon": 2.3807699840062972, "coord": [48.790570508596694, 2.3807699840062972], "stop_id": 4439479, "stop_desc": "77 AVENUE DU MOULIN DE SAQUET - 94081", "stop_name": "CAMELINAT"}, "geometry": {"type": "Point", "coordinates": [2.3807699840062972, 48.790570508596694]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f39a768e7faf7f75feb00fce579f37d1a2cf10eb", "fields": {"departement": "94", "stop_lat": 48.79202047251417, "code_postal": "94081", "stop_lon": 2.3950409198816547, "coord": [48.79202047251417, 2.3950409198816547], "stop_id": 4439484, "stop_desc": "157 AVENUE PAUL VAILLANT-COUTURIER - 94081", "stop_name": "EGLISE DE VITRY"}, "geometry": {"type": "Point", "coordinates": [2.3950409198816547, 48.79202047251417]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7c9846809d00995b9a9d5ae502c21fda1dfbd81f", "fields": {"departement": "94", "stop_lat": 48.81189740013888, "code_postal": "94041", "stop_lon": 2.4030375554047456, "coord": [48.81189740013888, 2.4030375554047456], "stop_id": 4439490, "stop_desc": "FACE 38 AVENUE JEAN JAURES - 94041", "stop_name": "MAURICE GUNSBOURG"}, "geometry": {"type": "Point", "coordinates": [2.4030375554047456, 48.81189740013888]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2cf175c66e859eec6d521464da1e5cb9c249098c", "fields": {"departement": "75", "stop_lat": 48.857113475245306, "code_postal": "75104", "stop_lon": 2.350289246712866, "coord": [48.857113475245306, 2.350289246712866], "stop_id": 4439501, "stop_desc": "02 AVENUE VICTORIA - 75104", "stop_name": "CHATELET"}, "geometry": {"type": "Point", "coordinates": [2.350289246712866, 48.857113475245306]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4b6297c49f7aab3b93c0b506cff174fd55494986", "fields": {"departement": "75", "stop_lat": 48.846894585583044, "code_postal": "75105", "stop_lon": 2.351512258385521, "coord": [48.846894585583044, 2.351512258385521], "stop_id": 4439508, "stop_desc": "27 RUE MONGE - 75105", "stop_name": "CARDINAL LEMOINE"}, "geometry": {"type": "Point", "coordinates": [2.351512258385521, 48.846894585583044]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b5607d5378b475de75404aee9a631e1fff7c1752", "fields": {"departement": "75", "stop_lat": 48.83895865695941, "code_postal": "75105", "stop_lon": 2.35097907397105, "coord": [48.83895865695941, 2.35097907397105], "stop_id": 4439514, "stop_desc": "119-119BIS RUE MONGE - 75105", "stop_name": "MONGE - CLAUDE BERNARD"}, "geometry": {"type": "Point", "coordinates": [2.35097907397105, 48.83895865695941]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2c50258dc0039f1d72a1cff034abf06ee0e62e2a", "fields": {"departement": "75", "stop_lat": 48.8314984744011, "code_postal": "75113", "stop_lon": 2.3546799758762553, "coord": [48.8314984744011, 2.3546799758762553], "stop_id": 4439518, "stop_desc": "10 PLACE D'ITALIE - 75113", "stop_name": "PLACE D'ITALIE"}, "geometry": {"type": "Point", "coordinates": [2.3546799758762553, 48.8314984744011]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b2181f9738cad2e30ca9c9140ab8fa576f5b3690", "fields": {"departement": "75", "stop_lat": 48.82764247186972, "code_postal": "75113", "stop_lon": 2.356679718554963, "coord": [48.82764247186972, 2.356679718554963], "stop_id": 4439520, "stop_desc": "52 AVENUE D'ITALIE - 75113", "stop_name": "VANDREZANNE"}, "geometry": {"type": "Point", "coordinates": [2.356679718554963, 48.82764247186972]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "93c5060b09dd5c8348414a90a66f50a6ceb4e41b", "fields": {"departement": "75", "stop_lat": 48.82247424034754, "code_postal": "75113", "stop_lon": 2.3585833443279376, "coord": [48.82247424034754, 2.3585833443279376], "stop_id": 4439525, "stop_desc": "109 AVENUE D'ITALIE - 75113", "stop_name": "MAISON BLANCHE"}, "geometry": {"type": "Point", "coordinates": [2.3585833443279376, 48.82247424034754]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fcdff9a5743ade43fbaf141dd43850ee221290ee", "fields": {"departement": "94", "stop_lat": 48.812137822019444, "code_postal": "94043", "stop_lon": 2.361423259884513, "coord": [48.812137822019444, 2.361423259884513], "stop_id": 4439532, "stop_desc": "58 AVENUE DE FONTAINEBLEAU - 94043", "stop_name": "CONVENTION - FONTAINEBLEAU"}, "geometry": {"type": "Point", "coordinates": [2.361423259884513, 48.812137822019444]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "633196d9fb856c9435a6859193f68a22027cf041", "fields": {"departement": "94", "stop_lat": 48.81047498025869, "code_postal": "94043", "stop_lon": 2.361939589627888, "coord": [48.81047498025869, 2.361939589627888], "stop_id": 4439534, "stop_desc": "94-96 AVENUE DE FONTAINEBLEAU - 94043", "stop_name": "LE KREMLIN-BICETRE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.361939589627888, 48.81047498025869]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c9bed9677e543b3530af4538beb0f21878954630", "fields": {"departement": "94", "stop_lat": 48.803140339876805, "code_postal": "94076", "stop_lon": 2.3646845296732795, "coord": [48.803140339876805, 2.3646845296732795], "stop_id": 4439539, "stop_desc": "87 AVENUE DE PARIS - 94076", "stop_name": "HENRI BARBUSSE"}, "geometry": {"type": "Point", "coordinates": [2.3646845296732795, 48.803140339876805]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "888d4a464245c898e2155fa0762c273f6dc736df", "fields": {"departement": "94", "stop_lat": 48.79822371158427, "code_postal": "94076", "stop_lon": 2.3658791536218233, "coord": [48.79822371158427, 2.3658791536218233], "stop_id": 4439540, "stop_desc": "128 AVENUE DE PARIS - 94076", "stop_name": "DISPENSAIRE DANIELLE CASANOVA"}, "geometry": {"type": "Point", "coordinates": [2.3658791536218233, 48.79822371158427]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d97a47d7bdd649cbf8ec8136ef939f2bb6177661", "fields": {"departement": "94", "stop_lat": 48.7992481272412, "code_postal": "94076", "stop_lon": 2.3666960218389126, "coord": [48.7992481272412, 2.3666960218389126], "stop_id": 4439541, "stop_desc": "9 BOULEVARD MAXIME GORKI - 94076", "stop_name": "DISPENSAIRE DANIELLE CASANOVA"}, "geometry": {"type": "Point", "coordinates": [2.3666960218389126, 48.7992481272412]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3420bc6eb9a0c55d05ea74fed308d5b950593ede", "fields": {"departement": "94", "stop_lat": 48.79524862637609, "code_postal": "94076", "stop_lon": 2.3662992378184105, "coord": [48.79524862637609, 2.3662992378184105], "stop_id": 4439542, "stop_desc": "22 BIS RUE JEAN JAURES - 94076", "stop_name": "JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.3662992378184105, 48.79524862637609]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "57a09f3da7bc6cad14e6caa368e2eed5d1ba58a9", "fields": {"departement": "94", "stop_lat": 48.79221063758954, "code_postal": "94076", "stop_lon": 2.3666376189108953, "coord": [48.79221063758954, 2.3666376189108953], "stop_id": 4439544, "stop_desc": "85 RUE JEAN JAURES - 94076", "stop_name": "GUYNEMER - PLACE DES FUSILLES"}, "geometry": {"type": "Point", "coordinates": [2.3666376189108953, 48.79221063758954]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "49abc31173dca070af8ff4656ffcbd770febe5e4", "fields": {"departement": "94", "stop_lat": 48.7939895585951, "code_postal": "94076", "stop_lon": 2.369277739405965, "coord": [48.7939895585951, 2.369277739405965], "stop_id": 4439546, "stop_desc": "97 BOULEVARD MAXIME GORKI - 94076", "stop_name": "GUYNEMER - MAXIME GORKI"}, "geometry": {"type": "Point", "coordinates": [2.369277739405965, 48.7939895585951]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "98b6781c22d23c71b27c4341e274b0179779e46a", "fields": {"departement": "94", "stop_lat": 48.78296198770418, "code_postal": "94076", "stop_lon": 2.3669180031361514, "coord": [48.78296198770418, 2.3669180031361514], "stop_id": 4439549, "stop_desc": "AVENUE DE STALINGRAD - 94076", "stop_name": "LAMARTINE"}, "geometry": {"type": "Point", "coordinates": [2.3669180031361514, 48.78296198770418]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "25104b211347139f6edae2d113fb4760bef76c1d", "fields": {"departement": "94", "stop_lat": 48.76396322693865, "code_postal": "94021", "stop_lon": 2.3577435746777065, "coord": [48.76396322693865, 2.3577435746777065], "stop_id": 4439560, "stop_desc": "AVENUE DE LA CITE - 94021", "stop_name": "MARCHE INTERNATIONAL DE RUNGIS"}, "geometry": {"type": "Point", "coordinates": [2.3577435746777065, 48.76396322693865]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3385b8d812ce01c452e8c3213e1953f0b69c9f28", "fields": {"departement": "94", "stop_lat": 48.75953299135263, "code_postal": "94021", "stop_lon": 2.3515698526455524, "coord": [48.75953299135263, 2.3515698526455524], "stop_id": 4439564, "stop_desc": "AVENUE DES TROIS MARCHES - 94021", "stop_name": "MAREE"}, "geometry": {"type": "Point", "coordinates": [2.3515698526455524, 48.75953299135263]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "232653810ac542759c222384a236bc6352f51b1d", "fields": {"departement": "94", "stop_lat": 48.76317343511212, "code_postal": "94021", "stop_lon": 2.3492460062814264, "coord": [48.76317343511212, 2.3492460062814264], "stop_id": 4439568, "stop_desc": "AVENUE DES MARAICHERS - 94021", "stop_name": "AGEN"}, "geometry": {"type": "Point", "coordinates": [2.3492460062814264, 48.76317343511212]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "091938812688e4235e91e6888fcb49eace19eeef", "fields": {"departement": "94", "stop_lat": 48.76317343511212, "code_postal": "94021", "stop_lon": 2.3492460062814264, "coord": [48.76317343511212, 2.3492460062814264], "stop_id": 4439569, "stop_desc": "AVENUE DES MARAICHERS - 94021", "stop_name": "AGEN"}, "geometry": {"type": "Point", "coordinates": [2.3492460062814264, 48.76317343511212]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0ae1cbb9c042387df2552bba72d4bc062164c72c", "fields": {"departement": "91", "stop_lat": 48.743999221580665, "code_postal": "91479", "stop_lon": 2.364191237891829, "coord": [48.743999221580665, 2.364191237891829], "stop_id": 4439576, "stop_desc": "ROUTE NATIONALE 7 - 91479", "stop_name": "PARAY-VIEILLE-POSTE PONT DE RUNGIS"}, "geometry": {"type": "Point", "coordinates": [2.364191237891829, 48.743999221580665]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "052b19db6b5126a4544d7c9950174c960f2f3ef2", "fields": {"departement": "91", "stop_lat": 48.74352272051869, "code_postal": "91479", "stop_lon": 2.3647346098291497, "coord": [48.74352272051869, 2.3647346098291497], "stop_id": 4439577, "stop_desc": "ROUTE NUMERO 5 - 91479", "stop_name": "HANGAR N 6"}, "geometry": {"type": "Point", "coordinates": [2.3647346098291497, 48.74352272051869]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6a3bc9670204cfd7e6afc50fdb3d809a4fbd13bd", "fields": {"departement": "94", "stop_lat": 48.735027212023176, "code_postal": "94054", "stop_lon": 2.370926361700839, "coord": [48.735027212023176, 2.370926361700839], "stop_id": 4439581, "stop_desc": "AVENUE DE L'UNION - 94054", "stop_name": "COEUR D'ORLY"}, "geometry": {"type": "Point", "coordinates": [2.370926361700839, 48.735027212023176]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "62b721a77fb2728c8e6ce401e0638deba1bff714", "fields": {"departement": "93", "stop_lat": 48.909545488841566, "code_postal": "93070", "stop_lon": 2.3297150701416416, "coord": [48.909545488841566, 2.3297150701416416], "stop_id": 4574155, "stop_desc": "60 BOULEVARD VICTOR HUGO - 93070", "stop_name": "LES BATELIERS"}, "geometry": {"type": "Point", "coordinates": [2.3297150701416416, 48.909545488841566]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c4d17f4e448cf43d36a6c9cede2af796444f8cda", "fields": {"departement": "93", "stop_lat": 48.913032678779174, "code_postal": "93070", "stop_lon": 2.335304886790752, "coord": [48.913032678779174, 2.335304886790752], "stop_id": 4574157, "stop_desc": "29 BOULEVARD JEAN JAURES - 93070", "stop_name": "JAURES - DHALENNE"}, "geometry": {"type": "Point", "coordinates": [2.335304886790752, 48.913032678779174]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f06cc68d3f28c745e0b6768c014765db99b018c2", "fields": {"departement": "93", "stop_lat": 48.91339215983966, "code_postal": "93070", "stop_lon": 2.3353321433301537, "coord": [48.91339215983966, 2.3353321433301537], "stop_id": 4574158, "stop_desc": "64-66 BOULEVARD JEAN JAURES - 93070", "stop_name": "JAURES - DHALENNE"}, "geometry": {"type": "Point", "coordinates": [2.3353321433301537, 48.91339215983966]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3e439f5c0d348a0cff1e8cd034c441d6d555dbbd", "fields": {"departement": "93", "stop_lat": 48.914191832859345, "code_postal": "93066", "stop_lon": 2.3439223160733174, "coord": [48.914191832859345, 2.3439223160733174], "stop_id": 4574162, "stop_desc": "194 BIS RUE DU LANDY - 93066", "stop_name": "LANDY - ORNANO"}, "geometry": {"type": "Point", "coordinates": [2.3439223160733174, 48.914191832859345]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0fd4960eaaca7dcdb269566ddc6ab80e5f018a39", "fields": {"departement": "93", "stop_lat": 48.91823497894036, "code_postal": "93066", "stop_lon": 2.354081884797133, "coord": [48.91823497894036, 2.354081884797133], "stop_id": 4574170, "stop_desc": "10 AVENUE FRANCOIS MITTERRAND - 93066", "stop_name": "AVENUE DES FRUITIERS"}, "geometry": {"type": "Point", "coordinates": [2.354081884797133, 48.91823497894036]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d7e35b52fef9a8a1b1f7b2454224932cd81599ea", "fields": {"departement": "93", "stop_lat": 48.918234263953785, "code_postal": "93066", "stop_lon": 2.358554593066675, "coord": [48.918234263953785, 2.358554593066675], "stop_id": 4574171, "stop_desc": "6 RUE FRANCIS DE PRESSENSE - 93066", "stop_name": "WILSON - DE PRESSENSE"}, "geometry": {"type": "Point", "coordinates": [2.358554593066675, 48.918234263953785]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4eaa1db05be5728f2327e0a544ed76e1eb7166b6", "fields": {"departement": "93", "stop_lat": 48.91858416019787, "code_postal": "93066", "stop_lon": 2.361663835852147, "coord": [48.91858416019787, 2.361663835852147], "stop_id": 4574173, "stop_desc": "AVENUE DU STADE DE FRANCE - 93066", "stop_name": "LA PLAINE - STADE DE FRANCE RER"}, "geometry": {"type": "Point", "coordinates": [2.361663835852147, 48.91858416019787]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5c210573aa953a7f7a9faecee969bb7f1e19bf88", "fields": {"departement": "93", "stop_lat": 48.915473745634934, "code_postal": "93066", "stop_lon": 2.365793950971609, "coord": [48.915473745634934, 2.365793950971609], "stop_id": 4574176, "stop_desc": "6 RUE DU LANDY - 93066", "stop_name": "MURGER"}, "geometry": {"type": "Point", "coordinates": [2.365793950971609, 48.915473745634934]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ef6faab09ce941cf61d60e9d6ff0881803873cc1", "fields": {"departement": "93", "stop_lat": 48.91832163478912, "code_postal": "93001", "stop_lon": 2.393763635163444, "coord": [48.91832163478912, 2.393763635163444], "stop_id": 4574189, "stop_desc": "75 RUE DANIELLE CASANOVA - 93001", "stop_name": "DANIELLE CASANOVA - PONT BLANC"}, "geometry": {"type": "Point", "coordinates": [2.393763635163444, 48.91832163478912]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fecebc6c937fd4450dc1f9732f253b027048c223", "fields": {"departement": "93", "stop_lat": 48.91778431436412, "code_postal": "93001", "stop_lon": 2.407140153386434, "coord": [48.91778431436412, 2.407140153386434], "stop_id": 4574199, "stop_desc": "263 AVENUE JEAN JAURES - 93001", "stop_name": "EDOUARD VAILLANT - JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.407140153386434, 48.91778431436412]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "03411218f8ca9355157c04ea6dfcb170de3618c7", "fields": {"departement": "93", "stop_lat": 48.91614972446159, "code_postal": "93001", "stop_lon": 2.4053380274974674, "coord": [48.91614972446159, 2.4053380274974674], "stop_id": 4574200, "stop_desc": "FACE 186 AVENUE JEAN JAURES - 93001", "stop_name": "HELENE COCHENNEC"}, "geometry": {"type": "Point", "coordinates": [2.4053380274974674, 48.91614972446159]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b44ae5deabf6679cce7a2e4f993b4cf73d58e08c", "fields": {"departement": "93", "stop_lat": 48.91666473955509, "code_postal": "93001", "stop_lon": 2.380085024364659, "coord": [48.91666473955509, 2.380085024364659], "stop_id": 4574201, "stop_desc": "20 AVENUE DU PRESIDENT ROOSEVELT - 93001", "stop_name": "SCHAEFFER"}, "geometry": {"type": "Point", "coordinates": [2.380085024364659, 48.91666473955509]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bc5b29f4a6108782b715ce38064434e1ddbd28cc", "fields": {"departement": "94", "stop_lat": 48.83842408841958, "code_postal": "94058", "stop_lon": 2.494593529552752, "coord": [48.83842408841958, 2.494593529552752], "stop_id": 4614215, "stop_desc": "PLACE ROBERT BELVAUX - 94058", "stop_name": "NOGENT-LE-PERREUX RER"}, "geometry": {"type": "Point", "coordinates": [2.494593529552752, 48.83842408841958]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "80bc9ff2f381077be3cec6958fe43c1a9576013f", "fields": {"departement": "94", "stop_lat": 48.834263400251615, "code_postal": "94058", "stop_lon": 2.5134366743240233, "coord": [48.834263400251615, 2.5134366743240233], "stop_id": 4614222, "stop_desc": "FACE 191 AV PIERRE BROSSOLETTE - 94058", "stop_name": "MAIL MEYER"}, "geometry": {"type": "Point", "coordinates": [2.5134366743240233, 48.834263400251615]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4b2db049cc46a69559388b037abfc618405dcc54", "fields": {"departement": "94", "stop_lat": 48.83409776803969, "code_postal": "94058", "stop_lon": 2.5160228153874997, "coord": [48.83409776803969, 2.5160228153874997], "stop_id": 4614224, "stop_desc": "254 AVENUE PIERRE BROSSOLETTE - 94058", "stop_name": "MARECHAL JOFFRE - PONT DE BRY"}, "geometry": {"type": "Point", "coordinates": [2.5160228153874997, 48.83409776803969]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "92cbf3beb57490523176b766f42c24fe45cead8e", "fields": {"departement": "94", "stop_lat": 48.83424543925855, "code_postal": "94015", "stop_lon": 2.5193996628002555, "coord": [48.83424543925855, 2.5193996628002555], "stop_id": 4614226, "stop_desc": "5 PL DAGUERRE - 94015", "stop_name": "MAIRIE DE BRY-SUR-MARNE"}, "geometry": {"type": "Point", "coordinates": [2.5193996628002555, 48.83424543925855]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6f76dddd7e6dde2e80f8a0b41975ec24ff62f72f", "fields": {"departement": "94", "stop_lat": 48.83971417428451, "code_postal": "94015", "stop_lon": 2.522455164631506, "coord": [48.83971417428451, 2.522455164631506], "stop_id": 4614229, "stop_desc": "4 BIS BOULEVARD DU GENERAL GALLIENI - 94015", "stop_name": "CHATEAU"}, "geometry": {"type": "Point", "coordinates": [2.522455164631506, 48.83971417428451]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b9ce861abaff0de0cfd6362b709e4ec1e2851396", "fields": {"departement": "94", "stop_lat": 48.84218500063309, "code_postal": "94015", "stop_lon": 2.5229405575565873, "coord": [48.84218500063309, 2.5229405575565873], "stop_id": 4614231, "stop_desc": "FACE 23 BOULEVARD DU GENERAL GALLIENI - 94015", "stop_name": "PLACE CARNOT"}, "geometry": {"type": "Point", "coordinates": [2.5229405575565873, 48.84218500063309]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5f90673f4ea0be7700ad9abdf71240e3eeeb1f73", "fields": {"departement": "94", "stop_lat": 48.84078285853387, "code_postal": "94015", "stop_lon": 2.5286678698461236, "coord": [48.84078285853387, 2.5286678698461236], "stop_id": 4614238, "stop_desc": "BOULEVARD PASTEUR - 94015", "stop_name": "CHEMIN DES MOINES"}, "geometry": {"type": "Point", "coordinates": [2.5286678698461236, 48.84078285853387]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9a0c8d7bf987f7b3b3004f9a4229f6c1fcaf038c", "fields": {"departement": "94", "stop_lat": 48.834534252909954, "code_postal": "94015", "stop_lon": 2.5300470962769728, "coord": [48.834534252909954, 2.5300470962769728], "stop_id": 4614243, "stop_desc": "1 AV DE L'EUROPE - 94015", "stop_name": "EUROPE"}, "geometry": {"type": "Point", "coordinates": [2.5300470962769728, 48.834534252909954]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4082cd7e792f8a634cae91af32df66db97395bd8", "fields": {"departement": "94", "stop_lat": 48.83278008495768, "code_postal": "94015", "stop_lon": 2.5310207786855186, "coord": [48.83278008495768, 2.5310207786855186], "stop_id": 4614255, "stop_desc": "BD PASTEUR - 94015", "stop_name": "GEORGES MELIES"}, "geometry": {"type": "Point", "coordinates": [2.5310207786855186, 48.83278008495768]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c46219f23dd4b50f632bd8696d6e8e2aa3fe5456", "fields": {"departement": "93", "stop_lat": 48.84076085882967, "code_postal": "93051", "stop_lon": 2.55210090418231, "coord": [48.84076085882967, 2.55210090418231], "stop_id": 4614262, "stop_desc": "PISTE GARE ROUTIERE - 93051", "stop_name": "NOISY-LE-GRAND - MONT D'EST RER"}, "geometry": {"type": "Point", "coordinates": [2.55210090418231, 48.84076085882967]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bf279f78013835127702065a87e599cff60201f5", "fields": {"departement": "93", "stop_lat": 48.83880776872974, "code_postal": "93051", "stop_lon": 2.5486344844287583, "coord": [48.83880776872974, 2.5486344844287583], "stop_id": 4614263, "stop_desc": "BD DU LEVANT - 93051", "stop_name": "CIMETIERE DE NOISY-LE-GRAND"}, "geometry": {"type": "Point", "coordinates": [2.5486344844287583, 48.83880776872974]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "373c876a303cb9d2403fe5d81d3102d850d25ae1", "fields": {"departement": "94", "stop_lat": 48.8302217514404, "code_postal": "94079", "stop_lon": 2.539927885053384, "coord": [48.8302217514404, 2.539927885053384], "stop_id": 4614269, "stop_desc": "5 BOULEVARD FRIEDBERG - 94079", "stop_name": "FRIEDBERG"}, "geometry": {"type": "Point", "coordinates": [2.539927885053384, 48.8302217514404]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8bfd895ee6e0ca4d475f959bf3288a9c955da95a", "fields": {"departement": "94", "stop_lat": 48.82351335385903, "code_postal": "94079", "stop_lon": 2.542025075555393, "coord": [48.82351335385903, 2.542025075555393], "stop_id": 4614273, "stop_desc": "3-5 RUE DU CHEMIN DE FER - 94079", "stop_name": "VILLIERS-SUR-MARNE - LE PLESSIS-TREVISE RER"}, "geometry": {"type": "Point", "coordinates": [2.542025075555393, 48.82351335385903]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5c9a0f06fe99688d6318f612b8c16c0533865753", "fields": {"departement": "94", "stop_lat": 48.80962390415088, "code_postal": "94059", "stop_lon": 2.5729825310092345, "coord": [48.80962390415088, 2.5729825310092345], "stop_id": 4614283, "stop_desc": "32 AVENUE ARDOUIN - 94059", "stop_name": "MAIRIE DU PLESSIS-TREVISE"}, "geometry": {"type": "Point", "coordinates": [2.5729825310092345, 48.80962390415088]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7ca396dcba002f03c94f6a0c60c4b3ec7cb9ba57", "fields": {"departement": "77", "stop_lat": 48.80220287163164, "code_postal": "77373", "stop_lon": 2.621045713684814, "coord": [48.80220287163164, 2.621045713684814], "stop_id": 4614310, "stop_desc": "RUE DES TILLEULS - 77373", "stop_name": "COLLEGE CONDORCET"}, "geometry": {"type": "Point", "coordinates": [2.621045713684814, 48.80220287163164]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f8d96ae905d4d1781e6bf5052c892d5def3001fc", "fields": {"departement": "77", "stop_lat": 48.80417959446227, "code_postal": "77373", "stop_lon": 2.621301434540044, "coord": [48.80417959446227, 2.621301434540044], "stop_id": 4614313, "stop_desc": "6 RUE DES TILLEULS - 77373", "stop_name": "PLACE DE BEILSTEIN"}, "geometry": {"type": "Point", "coordinates": [2.621301434540044, 48.80417959446227]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ed212e54a94c70bd63d44858792ee7c7911fbc12", "fields": {"departement": "94", "stop_lat": 48.82034110340688, "code_postal": "94059", "stop_lon": 2.55691620545801, "coord": [48.82034110340688, 2.55691620545801], "stop_id": 4614321, "stop_desc": "FACE 92 AVENUE ANDRE ROUY - 94059", "stop_name": "LES MOUSQUETAIRES"}, "geometry": {"type": "Point", "coordinates": [2.55691620545801, 48.82034110340688]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d6500b772e568dcd79f23f6eb2f5c363481e4283", "fields": {"departement": "94", "stop_lat": 48.83052744548207, "code_postal": "94079", "stop_lon": 2.5398610125072185, "coord": [48.83052744548207, 2.5398610125072185], "stop_id": 4614328, "stop_desc": "FACE 7 BOULEVARD DE FRIEDBERG - 94079", "stop_name": "FRIEDBERG"}, "geometry": {"type": "Point", "coordinates": [2.5398610125072185, 48.83052744548207]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ff329c9f12ae76411c468630d1e6f07e9b966429", "fields": {"departement": "94", "stop_lat": 48.82111649615556, "code_postal": "94079", "stop_lon": 2.5555856246885464, "coord": [48.82111649615556, 2.5555856246885464], "stop_id": 4614332, "stop_desc": "84 BIS AVENUE ANDRE ROUY - 94079", "stop_name": "LES MOUSQUETAIRES"}, "geometry": {"type": "Point", "coordinates": [2.5555856246885464, 48.82111649615556]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0e4c287e08a5ef64372c2038e131f090ecec730c", "fields": {"departement": "94", "stop_lat": 48.8063175199114, "code_postal": "94059", "stop_lon": 2.576913539871558, "coord": [48.8063175199114, 2.576913539871558], "stop_id": 4614338, "stop_desc": "FACE 35 AVENUE ARDOUIN - 94059", "stop_name": "JEAN KIFFER"}, "geometry": {"type": "Point", "coordinates": [2.576913539871558, 48.8063175199114]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5ee582fd19cb5e0a350cff672bfc4f886c73acfd", "fields": {"departement": "94", "stop_lat": 48.80618275823874, "code_postal": "94059", "stop_lon": 2.5813079588492873, "coord": [48.80618275823874, 2.5813079588492873], "stop_id": 4614339, "stop_desc": "FACE 76 AVENUE JEAN KIFFER - 94059", "stop_name": "AVENUE BERTRAND"}, "geometry": {"type": "Point", "coordinates": [2.5813079588492873, 48.80618275823874]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "18570a918ecba4b9c7b377cb0af93b214bc56681", "fields": {"departement": "94", "stop_lat": 48.826068431366515, "code_postal": "94079", "stop_lon": 2.540524210599729, "coord": [48.826068431366515, 2.540524210599729], "stop_id": 4614358, "stop_desc": "FACE 37 RUE DU GENERAL GALLIENI - 94079", "stop_name": "MAIRIE DE VILLIERS-SUR-MARNE"}, "geometry": {"type": "Point", "coordinates": [2.540524210599729, 48.826068431366515]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3e7572ec53512b7eef158fa9b821ab38744fb6f8", "fields": {"departement": "94", "stop_lat": 48.82670892041073, "code_postal": "94079", "stop_lon": 2.5494700026093327, "coord": [48.82670892041073, 2.5494700026093327], "stop_id": 4614361, "stop_desc": "146 RUE DU GENERAL DE GAULLE - 94079", "stop_name": "AVENUE DE GAUMONT"}, "geometry": {"type": "Point", "coordinates": [2.5494700026093327, 48.82670892041073]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2cd2139303bc97eaf13c62b37720510add14a52b", "fields": {"departement": "94", "stop_lat": 48.83042152812768, "code_postal": "94079", "stop_lon": 2.54907678743257, "coord": [48.83042152812768, 2.54907678743257], "stop_id": 4614372, "stop_desc": "AVENUE MONTRICHARD - 94079", "stop_name": "COLLEGE LES PRUNAIS"}, "geometry": {"type": "Point", "coordinates": [2.54907678743257, 48.83042152812768]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a5a145ceb3f7b7bc11018d304279b6a50106c9ba", "fields": {"departement": "94", "stop_lat": 48.82859790636773, "code_postal": "94079", "stop_lon": 2.5535887937362864, "coord": [48.82859790636773, 2.5535887937362864], "stop_id": 4614373, "stop_desc": "46-48 AVENUE MONTRICHARD - 94079", "stop_name": "LES STADES"}, "geometry": {"type": "Point", "coordinates": [2.5535887937362864, 48.82859790636773]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a3c05da6d76471ef86fb447ce6188d635fc85580", "fields": {"departement": "94", "stop_lat": 48.82688954534152, "code_postal": "94079", "stop_lon": 2.5489806965539623, "coord": [48.82688954534152, 2.5489806965539623], "stop_id": 4614374, "stop_desc": "145 BIS RUE DU GENERAL DE GAULLE - 94079", "stop_name": "AVENUE DE GAUMONT"}, "geometry": {"type": "Point", "coordinates": [2.5489806965539623, 48.82688954534152]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dba143ac06323cf27e92161be8383ddbb22e4ced", "fields": {"departement": "94", "stop_lat": 48.828230590399166, "code_postal": "94079", "stop_lon": 2.542778775568182, "coord": [48.828230590399166, 2.542778775568182], "stop_id": 4614376, "stop_desc": "FACE AU 14 RUE DES FOSSES - 94079", "stop_name": "REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.542778775568182, 48.828230590399166]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "84a43481863fd60e246377769a64a23a55661936", "fields": {"departement": "94", "stop_lat": 48.807129477262045, "code_postal": "94059", "stop_lon": 2.5753932834458735, "coord": [48.807129477262045, 2.5753932834458735], "stop_id": 4614386, "stop_desc": "13 AVENUE SAINT PIERRE - 94059", "stop_name": "ARDOUIN - SAINT-PIERRE"}, "geometry": {"type": "Point", "coordinates": [2.5753932834458735, 48.807129477262045]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4ed303080af7b2e99829d2e0609854eccda0579a", "fields": {"departement": "94", "stop_lat": 48.80046820131369, "code_postal": "94059", "stop_lon": 2.5760293982213294, "coord": [48.80046820131369, 2.5760293982213294], "stop_id": 4614388, "stop_desc": "CHEMIN DU PLESSIS TREVISE A LA QUEUE EN BRIE - 94059", "stop_name": "PLESSIS - SAINT-ANTOINE"}, "geometry": {"type": "Point", "coordinates": [2.5760293982213294, 48.80046820131369]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a127b699ff61796f4ba02d79bb30be62365ee5c0", "fields": {"departement": "94", "stop_lat": 48.792391709184855, "code_postal": "94060", "stop_lon": 2.574210227410084, "coord": [48.792391709184855, 2.574210227410084], "stop_id": 4614390, "stop_desc": "RUE JEAN RACINE - 94060", "stop_name": "SAINT-JEAN - LES BORDES"}, "geometry": {"type": "Point", "coordinates": [2.574210227410084, 48.792391709184855]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5f03333405406cc08ef6339265ac11294955b191", "fields": {"departement": "94", "stop_lat": 48.80659772200204, "code_postal": "94068", "stop_lon": 2.4734878556768183, "coord": [48.80659772200204, 2.4734878556768183], "stop_id": 4614396, "stop_desc": "7 RUE DES REMISES - 94068", "stop_name": "SAINT-MAUR-CRETEIL RER - LE PARVIS"}, "geometry": {"type": "Point", "coordinates": [2.4734878556768183, 48.80659772200204]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dfa0ca7386719e320a7607795c8d35a0d876c15f", "fields": {"departement": "94", "stop_lat": 48.812403721461166, "code_postal": "94068", "stop_lon": 2.4735847442731043, "coord": [48.812403721461166, 2.4735847442731043], "stop_id": 4614402, "stop_desc": "1 AVENUE DE CONDE - 94068", "stop_name": "PLACE D'ARMES"}, "geometry": {"type": "Point", "coordinates": [2.4735847442731043, 48.812403721461166]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0815bcbf4607b95ca50613f585992ab474f88d31", "fields": {"departement": "94", "stop_lat": 48.809876806609886, "code_postal": "94068", "stop_lon": 2.4823279645827188, "coord": [48.809876806609886, 2.4823279645827188], "stop_id": 4614405, "stop_desc": "70 AVENUE DE CONDE - 94068", "stop_name": "BOURGOGNE"}, "geometry": {"type": "Point", "coordinates": [2.4823279645827188, 48.809876806609886]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "81e81add14706db408b4a19287c41e4df7d6a4f4", "fields": {"departement": "94", "stop_lat": 48.807824148599465, "code_postal": "94068", "stop_lon": 2.49218754182126, "coord": [48.807824148599465, 2.49218754182126], "stop_id": 4614410, "stop_desc": "FACE 27 AVENUE PIERRE BROSSOLETTE - 94068", "stop_name": "NEPTUNE"}, "geometry": {"type": "Point", "coordinates": [2.49218754182126, 48.807824148599465]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "53e0c77bf782e7e53da1e1813a70895479f40698", "fields": {"departement": "94", "stop_lat": 48.80745518858142, "code_postal": "94068", "stop_lon": 2.505752855094703, "coord": [48.80745518858142, 2.505752855094703], "stop_id": 4614418, "stop_desc": "75 AVENUE DE L'EST - 94068", "stop_name": "GENERAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.505752855094703, 48.80745518858142]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6e866378dac784c2d2caeb8a84366d0484e01c30", "fields": {"departement": "94", "stop_lat": 48.81197817551925, "code_postal": "94017", "stop_lon": 2.510530485291293, "coord": [48.81197817551925, 2.510530485291293], "stop_id": 4614422, "stop_desc": "FACE 4 BIS RUE ALBERT THOMAS - 94017", "stop_name": "MARCHE DE CHAMPIGNY-SUR-MARNE"}, "geometry": {"type": "Point", "coordinates": [2.510530485291293, 48.81197817551925]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e991aa8afbd30142678b9697e396935df6bb10a0", "fields": {"departement": "94", "stop_lat": 48.812662568515314, "code_postal": "94017", "stop_lon": 2.5157176488551367, "coord": [48.812662568515314, 2.5157176488551367], "stop_id": 4614425, "stop_desc": "FACE 9 BIS RUE DU MONUMENT - 94017", "stop_name": "RUE DU MONUMENT"}, "geometry": {"type": "Point", "coordinates": [2.5157176488551367, 48.812662568515314]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b03b8edf391c3fb8e723d399409bc62c1f22cf8c", "fields": {"departement": "94", "stop_lat": 48.821633749310465, "code_postal": "94079", "stop_lon": 2.5320135977201486, "coord": [48.821633749310465, 2.5320135977201486], "stop_id": 4614442, "stop_desc": "FACE 53 ROUTE DE CHAMPIGNY - 94079", "stop_name": "LUATS-AMITIE"}, "geometry": {"type": "Point", "coordinates": [2.5320135977201486, 48.821633749310465]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "df5b769f45b2e103a68848f9cfbc9a445445c34a", "fields": {"departement": "94", "stop_lat": 48.82629358652719, "code_postal": "94079", "stop_lon": 2.540252848669576, "coord": [48.82629358652719, 2.540252848669576], "stop_id": 4614447, "stop_desc": "41 RUE DU GENERAL GALLIENI - 94079", "stop_name": "MAIRIE DE VILLIERS-SUR-MARNE"}, "geometry": {"type": "Point", "coordinates": [2.540252848669576, 48.82629358652719]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a06dbca61af70c46393ac633a3cd7ccaedd2f71f", "fields": {"departement": "94", "stop_lat": 48.834651676148944, "code_postal": "94079", "stop_lon": 2.5405033784472093, "coord": [48.834651676148944, 2.5405033784472093], "stop_id": 4614454, "stop_desc": "BOULEVARD BISHOP'S STORTFORD - 94079", "stop_name": "LES TROIS MUSICIENS"}, "geometry": {"type": "Point", "coordinates": [2.5405033784472093, 48.834651676148944]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "af38b00871db3339fe7ddd467347023862cc8834", "fields": {"departement": "94", "stop_lat": 48.83418281392297, "code_postal": "94079", "stop_lon": 2.5465598890183436, "coord": [48.83418281392297, 2.5465598890183436], "stop_id": 4614463, "stop_desc": "FACE 88 BOULEVARD DE FRIEDBERG - 94079", "stop_name": "MOULIN A VENT"}, "geometry": {"type": "Point", "coordinates": [2.5465598890183436, 48.83418281392297]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "68355a2e32abe0a6c47a154a520bdd41d77f0cd5", "fields": {"departement": "93", "stop_lat": 48.829774757285605, "code_postal": "93051", "stop_lon": 2.5635448862552446, "coord": [48.829774757285605, 2.5635448862552446], "stop_id": 4614472, "stop_desc": "45 AVENUE MEDERIC - 93051", "stop_name": "PLACE DU COMBAT"}, "geometry": {"type": "Point", "coordinates": [2.5635448862552446, 48.829774757285605]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2b8f47f12e40066c85a05ff6ba43600f1a90a548", "fields": {"departement": "93", "stop_lat": 48.83197143371863, "code_postal": "93051", "stop_lon": 2.556774847862812, "coord": [48.83197143371863, 2.556774847862812], "stop_id": 4614477, "stop_desc": "AV AUGUSTE RODIN - 93051", "stop_name": "LE FORT"}, "geometry": {"type": "Point", "coordinates": [2.556774847862812, 48.83197143371863]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fd6d0768665382b8e8a14064652c949c6c1170d3", "fields": {"departement": "93", "stop_lat": 48.83488083978483, "code_postal": "93051", "stop_lon": 2.5482645108246933, "coord": [48.83488083978483, 2.5482645108246933], "stop_id": 4614481, "stop_desc": "AV AUGUSTE RODIN - 93051", "stop_name": "MOULIN A VENT"}, "geometry": {"type": "Point", "coordinates": [2.5482645108246933, 48.83488083978483]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d95591f6e4afd6b0d9c91b733bb766022a7c4d15", "fields": {"departement": "93", "stop_lat": 48.839739559711695, "code_postal": "93051", "stop_lon": 2.5502721677203333, "coord": [48.839739559711695, 2.5502721677203333], "stop_id": 4614482, "stop_desc": "BOULEVARD DU LEVANT - 93051", "stop_name": "CIMETIERE DE NOISY-LE-GRAND"}, "geometry": {"type": "Point", "coordinates": [2.5502721677203333, 48.839739559711695]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9007b96b2119f75e6d3d0f2867f817f0945cc50f", "fields": {"departement": "93", "stop_lat": 48.83880776872974, "code_postal": "93051", "stop_lon": 2.5486344844287583, "coord": [48.83880776872974, 2.5486344844287583], "stop_id": 4614483, "stop_desc": "BD DU LEVANT - 93051", "stop_name": "CIMETIERE DE NOISY-LE-GRAND"}, "geometry": {"type": "Point", "coordinates": [2.5486344844287583, 48.83880776872974]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b2e1618153867f291d8e8f9b7d4b46b96931a255", "fields": {"departement": "93", "stop_lat": 48.84092093522442, "code_postal": "93051", "stop_lon": 2.553041073554446, "coord": [48.84092093522442, 2.553041073554446], "stop_id": 4614485, "stop_desc": "PISTE GARE ROUTIERE - 93051", "stop_name": "NOISY-LE-GRAND - MONT D'EST RER"}, "geometry": {"type": "Point", "coordinates": [2.553041073554446, 48.84092093522442]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dbba23d9a1ebae1d8286803073e5ed65b69ff8d1", "fields": {"departement": "93", "stop_lat": 48.84619689031638, "code_postal": "93051", "stop_lon": 2.5528996112196936, "coord": [48.84619689031638, 2.5528996112196936], "stop_id": 4614506, "stop_desc": "20 RUE DE LA REPUBLIQUE - 93051", "stop_name": "ESPACE MICHEL SIMON"}, "geometry": {"type": "Point", "coordinates": [2.5528996112196936, 48.84619689031638]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fb7f3e324bccc696fc0698193e1a581de10af255", "fields": {"departement": "93", "stop_lat": 48.84799760078589, "code_postal": "93051", "stop_lon": 2.5702835344848025, "coord": [48.84799760078589, 2.5702835344848025], "stop_id": 4614515, "stop_desc": "AVENUE MICHEL GOUTIER - 93051", "stop_name": "CHARLES PRANARD"}, "geometry": {"type": "Point", "coordinates": [2.5702835344848025, 48.84799760078589]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0587b37b5ddc6e72bd39a1951c4854f2a14a8194", "fields": {"departement": "93", "stop_lat": 48.84561268710242, "code_postal": "93051", "stop_lon": 2.571920511633687, "coord": [48.84561268710242, 2.571920511633687], "stop_id": 4614516, "stop_desc": "AVENUE MICHEL GOUTIER - 93051", "stop_name": "LES CORMIERS"}, "geometry": {"type": "Point", "coordinates": [2.571920511633687, 48.84561268710242]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d05cb38bb4a823feaa24259745ad68f475b19653", "fields": {"departement": "93", "stop_lat": 48.84473982712495, "code_postal": "93051", "stop_lon": 2.5769684883473274, "coord": [48.84473982712495, 2.5769684883473274], "stop_id": 4614520, "stop_desc": "FACE 8 RUE DES HAUTS ROSEAUX - 93051", "stop_name": "LES HAUTS ROSEAUX"}, "geometry": {"type": "Point", "coordinates": [2.5769684883473274, 48.84473982712495]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dbd89edcd006201371ce34708b8cb708416e0367", "fields": {"departement": "93", "stop_lat": 48.84291437153811, "code_postal": "93051", "stop_lon": 2.572956781815615, "coord": [48.84291437153811, 2.572956781815615], "stop_id": 4614522, "stop_desc": "20 RUE DES HAUTS CHATEAUX - 93051", "stop_name": "LES HAUTS CHATEAUX"}, "geometry": {"type": "Point", "coordinates": [2.572956781815615, 48.84291437153811]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d23678eaecc647253818f82283659eb8494075a4", "fields": {"departement": "93", "stop_lat": 48.83726216829622, "code_postal": "93051", "stop_lon": 2.5769611701724675, "coord": [48.83726216829622, 2.5769611701724675], "stop_id": 4614530, "stop_desc": "BOULEVARD DE CHAMPY - 93051", "stop_name": "LA BUTTE AUX CAILLES"}, "geometry": {"type": "Point", "coordinates": [2.5769611701724675, 48.83726216829622]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b0214f3526d52f4f917deec9e052822e0e3ad19e", "fields": {"departement": "93", "stop_lat": 48.833724372091204, "code_postal": "93051", "stop_lon": 2.56613518610879, "coord": [48.833724372091204, 2.56613518610879], "stop_id": 4614545, "stop_desc": "FACE 59 AVENUE GABRIEL PERI - 93051", "stop_name": "RUE DE LA CHAPELLE"}, "geometry": {"type": "Point", "coordinates": [2.56613518610879, 48.833724372091204]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8c5820674045951f57ebc1dadc2fbd3a1acb92a1", "fields": {"departement": "93", "stop_lat": 48.84031801770128, "code_postal": "93051", "stop_lon": 2.558348758643492, "coord": [48.84031801770128, 2.558348758643492], "stop_id": 4614550, "stop_desc": "36 AVENUE DU PAVE NEUF - 93051", "stop_name": "VICTOR BASCH"}, "geometry": {"type": "Point", "coordinates": [2.558348758643492, 48.84031801770128]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f62caa2ceb1f3f310e45cb31c21c24bf23e2be7a", "fields": {"departement": "93", "stop_lat": 48.84075839430718, "code_postal": "93051", "stop_lon": 2.553462493289277, "coord": [48.84075839430718, 2.553462493289277], "stop_id": 4614554, "stop_desc": "PISTE GARE ROUTIERE - 93051", "stop_name": "NOISY-LE-GRAND - MONT D'EST RER"}, "geometry": {"type": "Point", "coordinates": [2.553462493289277, 48.84075839430718]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dbf9091ca9bcc83b2f9c79331aae6ff190b0210e", "fields": {"departement": "93", "stop_lat": 48.84519643284332, "code_postal": "93051", "stop_lon": 2.5494775458929206, "coord": [48.84519643284332, 2.5494775458929206], "stop_id": 4614556, "stop_desc": "1 ROUTE DE VILLIERS - 93051", "stop_name": "REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.5494775458929206, 48.84519643284332]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d65ed7928382b23eb3be2386e6331f536f9d3ed4", "fields": {"departement": "93", "stop_lat": 48.84917282451323, "code_postal": "93051", "stop_lon": 2.5523127821508225, "coord": [48.84917282451323, 2.5523127821508225], "stop_id": 4614560, "stop_desc": "2 RUE GEORGES LAIGNEAU - 93051", "stop_name": "MAIRIE DE NOISY-LE-GRAND"}, "geometry": {"type": "Point", "coordinates": [2.5523127821508225, 48.84917282451323]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f5e4b4e0edf7f83958f4d5c6761325c300808abf", "fields": {"departement": "93", "stop_lat": 48.84943411331682, "code_postal": "93051", "stop_lon": 2.5469074126833733, "coord": [48.84943411331682, 2.5469074126833733], "stop_id": 4614561, "stop_desc": "39 BOULEVARD PAUL PAMBRUN - 93051", "stop_name": "EGLISE DE NOISY-LE-GRAND"}, "geometry": {"type": "Point", "coordinates": [2.5469074126833733, 48.84943411331682]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3da9c12421d5e7cb4214deab3b29858c6e6f111e", "fields": {"departement": "93", "stop_lat": 48.84982102924448, "code_postal": "93051", "stop_lon": 2.536164085113424, "coord": [48.84982102924448, 2.536164085113424], "stop_id": 4614565, "stop_desc": "36-38 ROUTE DE NEUILLY - 93051", "stop_name": "RENE NAVIER"}, "geometry": {"type": "Point", "coordinates": [2.536164085113424, 48.84982102924448]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b555d5b2b96f2ca3c2a123155d6ae1843e327289", "fields": {"departement": "93", "stop_lat": 48.86251256156095, "code_postal": "93050", "stop_lon": 2.529946785428853, "coord": [48.86251256156095, 2.529946785428853], "stop_id": 4614571, "stop_desc": "93 RUE PAUL ET CAMILLE THOMOUX - 93050", "stop_name": "CIMETIERE DE NEUILLY-SUR-MARNE"}, "geometry": {"type": "Point", "coordinates": [2.529946785428853, 48.86251256156095]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8353dd743c2eddfce8c34b51c8485ca4db7d65dc", "fields": {"departement": "93", "stop_lat": 48.87397267142347, "code_postal": "93050", "stop_lon": 2.5291991454845535, "coord": [48.87397267142347, 2.5291991454845535], "stop_id": 4614581, "stop_desc": "28 BIS RUE DE VILLEMOMBLE - 93050", "stop_name": "TROIS COMMUNES"}, "geometry": {"type": "Point", "coordinates": [2.5291991454845535, 48.87397267142347]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2157c2cf5298121361bc82c79414fb4c955b886a", "fields": {"departement": "93", "stop_lat": 48.87716994517538, "code_postal": "93077", "stop_lon": 2.524946187797525, "coord": [48.87716994517538, 2.524946187797525], "stop_id": 4614582, "stop_desc": "60 R SIMON GUITLEVITCH - 93077", "stop_name": "LYCEE GEORGES CLEMENCEAU"}, "geometry": {"type": "Point", "coordinates": [2.524946187797525, 48.87716994517538]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c5d3ada0ece176c590d5e5e9acf60717a96fa4d2", "fields": {"departement": "93", "stop_lat": 48.88559272991972, "code_postal": "93077", "stop_lon": 2.512003064011451, "coord": [48.88559272991972, 2.512003064011451], "stop_id": 4614590, "stop_desc": "16-18 AVENUE DU GENERAL LECLERC - 93077", "stop_name": "GUSTAVE RODET"}, "geometry": {"type": "Point", "coordinates": [2.512003064011451, 48.88559272991972]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "367e966a9db3349af7254c4dd0546091cfee5466", "fields": {"departement": "93", "stop_lat": 48.88908527381347, "code_postal": "93077", "stop_lon": 2.4951834347120005, "coord": [48.88908527381347, 2.4951834347120005], "stop_id": 4614596, "stop_desc": "FACE 86 AVENUE ANATOLE FRANCE - 93077", "stop_name": "LES MARNAUDES"}, "geometry": {"type": "Point", "coordinates": [2.4951834347120005, 48.88908527381347]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cc728dc2bced24b132136db91e9e41119212336f", "fields": {"departement": "93", "stop_lat": 48.88656499289248, "code_postal": "93077", "stop_lon": 2.4912645192799876, "coord": [48.88656499289248, 2.4912645192799876], "stop_id": 4614598, "stop_desc": "FACE 4 RUE DES MARNAUDES - 93077", "stop_name": "8 MAI 1945"}, "geometry": {"type": "Point", "coordinates": [2.4912645192799876, 48.88656499289248]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c0b411a108fe2933da96d080abc514b1d7bb9f35", "fields": {"departement": "93", "stop_lat": 48.89154517079348, "code_postal": "93010", "stop_lon": 2.4902843786694984, "coord": [48.89154517079348, 2.4902843786694984], "stop_id": 4614602, "stop_desc": "FACE 134 RTE DE VILLEMOMBLE - 93010", "stop_name": "LA SABLIERE"}, "geometry": {"type": "Point", "coordinates": [2.4902843786694984, 48.89154517079348]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5d74f9ca3c9c71743066f1570a08edb9ed9cd0ef", "fields": {"departement": "93", "stop_lat": 48.89124834937275, "code_postal": "93010", "stop_lon": 2.4904743115017753, "coord": [48.89124834937275, 2.4904743115017753], "stop_id": 4614603, "stop_desc": "FACE 21 ROUTE DE VILLEMOMBLE - 93010", "stop_name": "LA SABLIERE"}, "geometry": {"type": "Point", "coordinates": [2.4904743115017753, 48.89124834937275]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "15a68804668b1f73079a5cf8d26d7347b7961217", "fields": {"departement": "93", "stop_lat": 48.89665354956417, "code_postal": "93010", "stop_lon": 2.4800901054993765, "coord": [48.89665354956417, 2.4800901054993765], "stop_id": 4614610, "stop_desc": "127 AVENUE CARNOT - 93010", "stop_name": "EDOUARD VAILLANT - CARNOT"}, "geometry": {"type": "Point", "coordinates": [2.4800901054993765, 48.89665354956417]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "13048eae55e8217a66f04bce22bef04d598c7e9e", "fields": {"departement": "93", "stop_lat": 48.90429432550699, "code_postal": "93010", "stop_lon": 2.4708545934866195, "coord": [48.90429432550699, 2.4708545934866195], "stop_id": 4614616, "stop_desc": "AVENUE GALLIENI - 93010", "stop_name": "AVENUE DE ROSNY"}, "geometry": {"type": "Point", "coordinates": [2.4708545934866195, 48.90429432550699]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6aae2e2254f29962bfe09d0ad52869ae5df2640d", "fields": {"departement": "93", "stop_lat": 48.90392513592614, "code_postal": "93010", "stop_lon": 2.471494371885404, "coord": [48.90392513592614, 2.471494371885404], "stop_id": 4614617, "stop_desc": "AVENUE DU GENERAL GALLIENI - 93010", "stop_name": "AVENUE DE ROSNY"}, "geometry": {"type": "Point", "coordinates": [2.471494371885404, 48.90392513592614]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dee71453d21cad9984a9821a89e9c7196ced6a35", "fields": {"departement": "93", "stop_lat": 48.88180455357744, "code_postal": "93077", "stop_lon": 2.5209975811063257, "coord": [48.88180455357744, 2.5209975811063257], "stop_id": 4614632, "stop_desc": "154-156 RUE GRANDE RUE - 93077", "stop_name": "BOULEVARD ANDRE"}, "geometry": {"type": "Point", "coordinates": [2.5209975811063257, 48.88180455357744]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b738a2c5c8a01460c82028bfb4820d8a19760a9f", "fields": {"departement": "93", "stop_lat": 48.84619689031638, "code_postal": "93051", "stop_lon": 2.5528996112196936, "coord": [48.84619689031638, 2.5528996112196936], "stop_id": 4614637, "stop_desc": "20 RUE DE LA REPUBLIQUE - 93051", "stop_name": "ESPACE MICHEL SIMON"}, "geometry": {"type": "Point", "coordinates": [2.5528996112196936, 48.84619689031638]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b3e51f33d647f33d7118f2afa56cd86f4ab6ba9b", "fields": {"departement": "93", "stop_lat": 48.84943411331682, "code_postal": "93051", "stop_lon": 2.5469074126833733, "coord": [48.84943411331682, 2.5469074126833733], "stop_id": 4614639, "stop_desc": "39 BOULEVARD PAUL PAMBRUN - 93051", "stop_name": "EGLISE DE NOISY-LE-GRAND"}, "geometry": {"type": "Point", "coordinates": [2.5469074126833733, 48.84943411331682]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1dda3b234ea2f896535ac51fade07719b6978c3a", "fields": {"departement": "93", "stop_lat": 48.85059519865477, "code_postal": "93051", "stop_lon": 2.5354180326589923, "coord": [48.85059519865477, 2.5354180326589923], "stop_id": 4614641, "stop_desc": "FACE 33 ROUTE DE NEUILLY - 93051", "stop_name": "RENE NAVIER"}, "geometry": {"type": "Point", "coordinates": [2.5354180326589923, 48.85059519865477]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e9fcb25e97bd8518da0b66366a979f688de92a55", "fields": {"departement": "93", "stop_lat": 48.85683222647169, "code_postal": "93050", "stop_lon": 2.5301163636868558, "coord": [48.85683222647169, 2.5301163636868558], "stop_id": 4614642, "stop_desc": "FACE 52 AVENUE DU GENERAL DE GAULLE - 93050", "stop_name": "PLACE DE LA RESISTANCE"}, "geometry": {"type": "Point", "coordinates": [2.5301163636868558, 48.85683222647169]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "975afc40fd9ede0cf2cf46e0eb386bd12b1b7f79", "fields": {"departement": "93", "stop_lat": 48.84825078188364, "code_postal": "93051", "stop_lon": 2.5399710907027604, "coord": [48.84825078188364, 2.5399710907027604], "stop_id": 4614651, "stop_desc": "17 BOULEVARD SOUCHET - 93051", "stop_name": "ROUTE DE NEUILLY"}, "geometry": {"type": "Point", "coordinates": [2.5399710907027604, 48.84825078188364]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bbbcb71443258fdd448548f00a16b55f19798bb0", "fields": {"departement": "93", "stop_lat": 48.872024651226546, "code_postal": "93050", "stop_lon": 2.533347312982959, "coord": [48.872024651226546, 2.533347312982959], "stop_id": 4614667, "stop_desc": "FACE 7 AVENUE ROBERT SCHUMAN - 93050", "stop_name": "CITE DES BOULEAUX"}, "geometry": {"type": "Point", "coordinates": [2.533347312982959, 48.872024651226546]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b7d2f9581d8376979c7b62cec8d64dea339b8a90", "fields": {"departement": "93", "stop_lat": 48.87716994517538, "code_postal": "93077", "stop_lon": 2.524946187797525, "coord": [48.87716994517538, 2.524946187797525], "stop_id": 4614671, "stop_desc": "60 R SIMON GUITLEVITCH - 93077", "stop_name": "LYCEE GEORGES CLEMENCEAU"}, "geometry": {"type": "Point", "coordinates": [2.524946187797525, 48.87716994517538]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3732fbdbbff5c2d4bac3352fc884b8a99b8532b7", "fields": {"departement": "93", "stop_lat": 48.87669368484657, "code_postal": "93077", "stop_lon": 2.524903587293289, "coord": [48.87669368484657, 2.524903587293289], "stop_id": 4614672, "stop_desc": "FACE 111 RUE DE NEUILLY - 93077", "stop_name": "LYCEE GEORGES CLEMENCEAU"}, "geometry": {"type": "Point", "coordinates": [2.524903587293289, 48.87669368484657]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "617af9007bf62a8ae941698c1de3963846a432bd", "fields": {"departement": "93", "stop_lat": 48.883824240877665, "code_postal": "93077", "stop_lon": 2.5106343733176093, "coord": [48.883824240877665, 2.5106343733176093], "stop_id": 4614681, "stop_desc": "RUE GRANDE RUE - 93077", "stop_name": "CHATEAU DE VILLEMOMBLE"}, "geometry": {"type": "Point", "coordinates": [2.5106343733176093, 48.883824240877665]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c9686611b6ae180c826c06aeece06cff2697dfd9", "fields": {"departement": "93", "stop_lat": 48.89154517079348, "code_postal": "93010", "stop_lon": 2.4902843786694984, "coord": [48.89154517079348, 2.4902843786694984], "stop_id": 4614691, "stop_desc": "FACE 134 RTE DE VILLEMOMBLE - 93010", "stop_name": "LA SABLIERE"}, "geometry": {"type": "Point", "coordinates": [2.4902843786694984, 48.89154517079348]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3d5ae0b646cbe37718c9d691455a6d7cde6aa347", "fields": {"departement": "93", "stop_lat": 48.89665354956417, "code_postal": "93010", "stop_lon": 2.4800901054993765, "coord": [48.89665354956417, 2.4800901054993765], "stop_id": 4614699, "stop_desc": "127 AVENUE CARNOT - 93010", "stop_name": "EDOUARD VAILLANT - CARNOT"}, "geometry": {"type": "Point", "coordinates": [2.4800901054993765, 48.89665354956417]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bda8f1319d0e57c20e4b7ba2d9088429645e9a6e", "fields": {"departement": "93", "stop_lat": 48.90429432550699, "code_postal": "93010", "stop_lon": 2.4708545934866195, "coord": [48.90429432550699, 2.4708545934866195], "stop_id": 4614705, "stop_desc": "AVENUE GALLIENI - 93010", "stop_name": "AVENUE DE ROSNY"}, "geometry": {"type": "Point", "coordinates": [2.4708545934866195, 48.90429432550699]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6cd210a40039920d8e9bf03c363b0272f5ae2197", "fields": {"departement": "93", "stop_lat": 48.90392513592614, "code_postal": "93010", "stop_lon": 2.471494371885404, "coord": [48.90392513592614, 2.471494371885404], "stop_id": 4614706, "stop_desc": "AVENUE DU GENERAL GALLIENI - 93010", "stop_name": "AVENUE DE ROSNY"}, "geometry": {"type": "Point", "coordinates": [2.471494371885404, 48.90392513592614]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f23f0aaa3843fc04bce266aa0cee1e44d108878f", "fields": {"departement": "93", "stop_lat": 48.90590089960924, "code_postal": "93008", "stop_lon": 2.46457388666915, "coord": [48.90590089960924, 2.46457388666915], "stop_id": 4614709, "stop_desc": "FACE 412 AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "RUE DES PEUPLIERS"}, "geometry": {"type": "Point", "coordinates": [2.46457388666915, 48.90590089960924]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d183d62cfab58bae27b47803b2b1ec05029cea04", "fields": {"departement": "93", "stop_lat": 48.90752818929823, "code_postal": "93008", "stop_lon": 2.45522530113179, "coord": [48.90752818929823, 2.45522530113179], "stop_id": 4614712, "stop_desc": "AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "LAMARTINE"}, "geometry": {"type": "Point", "coordinates": [2.45522530113179, 48.90752818929823]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a58294c22a74722768280b78410c6a79a7f1799f", "fields": {"departement": "93", "stop_lat": 48.907282528066425, "code_postal": "93008", "stop_lon": 2.449021527354522, "coord": [48.907282528066425, 2.449021527354522], "stop_id": 4614716, "stop_desc": "PISTE GARE ROUTIERE - 93008", "stop_name": "BOBIGNY - PABLO PICASSO"}, "geometry": {"type": "Point", "coordinates": [2.449021527354522, 48.907282528066425]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2007c69d69f8a59c913858e7ded8295a25d8456b", "fields": {"departement": "93", "stop_lat": 48.86194131790334, "code_postal": "93006", "stop_lon": 2.416068713459262, "coord": [48.86194131790334, 2.416068713459262], "stop_id": 3672179, "stop_desc": "87 AV GALLIENI - 93006", "stop_name": "GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.416068713459262, 48.86194131790334]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a57faf2c906f6dcbabe2461e136606207bd4ad70", "fields": {"departement": "95", "stop_lat": 48.998886851137584, "code_postal": "95527", "stop_lon": 2.525606434259353, "coord": [48.998886851137584, 2.525606434259353], "stop_id": 3672150, "stop_desc": "RUE DES 2 CEDRES - 95527", "stop_name": "CARGO CENTRE"}, "geometry": {"type": "Point", "coordinates": [2.525606434259353, 48.998886851137584]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b3e29cb85c78f614b14363c7fa10b09f6d45b10e", "fields": {"departement": "95", "stop_lat": 49.00218945953258, "code_postal": "95527", "stop_lon": 2.528363818569231, "coord": [49.00218945953258, 2.528363818569231], "stop_id": 3672164, "stop_desc": "RUE DES 2 CEDRES - 95527", "stop_name": "LES 2 CEDRES"}, "geometry": {"type": "Point", "coordinates": [2.528363818569231, 49.00218945953258]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e0fd4863e68cc2153ffe39b199f2f91c5b874025", "fields": {"departement": "93", "stop_lat": 48.91695910540304, "code_postal": "93010", "stop_lon": 2.484400525396555, "coord": [48.91695910540304, 2.484400525396555], "stop_id": 3672191, "stop_desc": "AV HENRI VARAGNAT - 93010", "stop_name": "RABELAIS"}, "geometry": {"type": "Point", "coordinates": [2.484400525396555, 48.91695910540304]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c225c2f31b8bc0861f7c5fd77012e8bdeb682920", "fields": {"departement": "75", "stop_lat": 48.85073400118568, "code_postal": "75120", "stop_lon": 2.416038065609302, "coord": [48.85073400118568, 2.416038065609302], "stop_id": 3672173, "stop_desc": "30 AV LEON GAUMONT - 75120", "stop_name": "ERIGNAC"}, "geometry": {"type": "Point", "coordinates": [2.416038065609302, 48.85073400118568]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d113ffcb022a8d9651b07676ea6c0a73007e3531", "fields": {"departement": "93", "stop_lat": 48.929213819436754, "code_postal": "93007", "stop_lon": 2.479879844919834, "coord": [48.929213819436754, 2.479879844919834], "stop_id": 3672256, "stop_desc": "5 BIS AVENUE PAUL VAILLANT COUTURIER - 93007", "stop_name": "ROND-POINT PIERRE SEMARD - PAUL VAILLANT-COUTURIER"}, "geometry": {"type": "Point", "coordinates": [2.479879844919834, 48.929213819436754]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "82a3fff12a390161ed89b0627bf8f1c15f7cd70a", "fields": {"departement": "93", "stop_lat": 49.003932683419556, "code_postal": "93073", "stop_lon": 2.5643752610380326, "coord": [49.003932683419556, 2.5643752610380326], "stop_id": 3672260, "stop_desc": "VOIE PRIVEE AEROPORT CHARLES DE GAULLE - 93073", "stop_name": "TERMINAL 2B-2D"}, "geometry": {"type": "Point", "coordinates": [2.5643752610380326, 49.003932683419556]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "df3228d18e1e9b68aab242e9a6e7274f66b0be40", "fields": {"departement": "93", "stop_lat": 49.003932683419556, "code_postal": "93073", "stop_lon": 2.5643752610380326, "coord": [49.003932683419556, 2.5643752610380326], "stop_id": 3672285, "stop_desc": "VOIE PRIVEE AEROPORT CHARLES DE GAULLE - 93073", "stop_name": "TERMINAL 2B-2D"}, "geometry": {"type": "Point", "coordinates": [2.5643752610380326, 49.003932683419556]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f378ffdc3abccf3e2a540805e71292d8da22b3c9", "fields": {"departement": "75", "stop_lat": 48.84726135533499, "code_postal": "75112", "stop_lon": 2.4072085511495405, "coord": [48.84726135533499, 2.4072085511495405], "stop_id": 3672263, "stop_desc": "82-84 COURS DE VINCENNES - 75112", "stop_name": "PYRENEES - DOCTEUR NETTER"}, "geometry": {"type": "Point", "coordinates": [2.4072085511495405, 48.84726135533499]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "82a73706953ba37b0caccca976704eb22ebeabd9", "fields": {"departement": "93", "stop_lat": 49.00336657296951, "code_postal": "93073", "stop_lon": 2.5643591158079393, "coord": [49.00336657296951, 2.5643591158079393], "stop_id": 3672258, "stop_desc": "VOIE PRIVEE AEROPORT CHARLES DE GAULLE - 93073", "stop_name": "TERMINAL 2A-2C"}, "geometry": {"type": "Point", "coordinates": [2.5643591158079393, 49.00336657296951]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a1e3036809ecb13df30de89951b023a174c2caaa", "fields": {"departement": "93", "stop_lat": 48.92358657007136, "code_postal": "93007", "stop_lon": 2.4734136996778835, "coord": [48.92358657007136, 2.4734136996778835], "stop_id": 3672278, "stop_desc": "FACE 62 AVENUE DANIELLE CASANOVA - 93007", "stop_name": "DANIELLE CASANOVA"}, "geometry": {"type": "Point", "coordinates": [2.4734136996778835, 48.92358657007136]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7df937643cc204eb0a87e923712a62709f2d9d3e", "fields": {"departement": "93", "stop_lat": 49.004269809288566, "code_postal": "93073", "stop_lon": 2.5712882222403115, "coord": [49.004269809288566, 2.5712882222403115], "stop_id": 3672259, "stop_desc": "AEROPORT CHARLES DE GAULLE - 93073", "stop_name": "GARE TGV-SNCF"}, "geometry": {"type": "Point", "coordinates": [2.5712882222403115, 49.004269809288566]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2efad94d7cb01960962f637864f08ade83503b69", "fields": {"departement": "93", "stop_lat": 48.92806904712401, "code_postal": "93007", "stop_lon": 2.475157626866216, "coord": [48.92806904712401, 2.475157626866216], "stop_id": 3672255, "stop_desc": "FACE 52 AVENUE PAUL VAILLANT COUTURIER - 93007", "stop_name": "QUEBEC"}, "geometry": {"type": "Point", "coordinates": [2.475157626866216, 48.92806904712401]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e73b913955b1de2ae12e32ba434284c2108e8205", "fields": {"departement": "75", "stop_lat": 48.853990890306505, "code_postal": "75120", "stop_lon": 2.410676960542002, "coord": [48.853990890306505, 2.410676960542002], "stop_id": 3672265, "stop_desc": "76 BOULEVARD DAVOUT - 75120", "stop_name": "PORTE DE MONTREUIL"}, "geometry": {"type": "Point", "coordinates": [2.410676960542002, 48.853990890306505]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "00b42294b6d6c571a24f8193aa69b6a83356dcdd", "fields": {"departement": "93", "stop_lat": 48.91953137599179, "code_postal": "93007", "stop_lon": 2.475216716918382, "coord": [48.91953137599179, 2.475216716918382], "stop_id": 3672276, "stop_desc": "AVENUE DE SURCOUF - 93007", "stop_name": "JARDINS DE LA NOUE"}, "geometry": {"type": "Point", "coordinates": [2.475216716918382, 48.91953137599179]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c83dd1ee93260f37fbebdc19350d4e73c987a662", "fields": {"departement": "77", "stop_lat": 48.83849697154357, "code_postal": "77258", "stop_lon": 2.649169515591135, "coord": [48.83849697154357, 2.649169515591135], "stop_id": 3677659, "stop_desc": "BOULEVARD SAINT-SAENS - 77258", "stop_name": "MEDIATHEQUE DU SEGRAIS"}, "geometry": {"type": "Point", "coordinates": [2.649169515591135, 48.83849697154357]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4fe7f53a142211ceb431f198a33a6c365165f3ee", "fields": {"departement": "77", "stop_lat": 48.85532443610953, "code_postal": "77337", "stop_lon": 2.6267298369603167, "coord": [48.85532443610953, 2.6267298369603167], "stop_id": 3677697, "stop_desc": "132 R CLAIRE MENIER - 77337", "stop_name": "MAIRIE DE NOISIEL"}, "geometry": {"type": "Point", "coordinates": [2.6267298369603167, 48.85532443610953]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e0615bc994da264e5e40fa00b5aef35e6cad05c5", "fields": {"departement": "77", "stop_lat": 48.85481255234476, "code_postal": "77337", "stop_lon": 2.626563543322119, "coord": [48.85481255234476, 2.626563543322119], "stop_id": 3677696, "stop_desc": "AVENUE HENRI MENIER - 77337", "stop_name": "MAIRIE DE NOISIEL"}, "geometry": {"type": "Point", "coordinates": [2.626563543322119, 48.85481255234476]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cadebf5af9639890a5f2516086f5783c978766d7", "fields": {"departement": "77", "stop_lat": 48.85029228306208, "code_postal": "77468", "stop_lon": 2.63368806437434, "coord": [48.85029228306208, 2.63368806437434], "stop_id": 3677703, "stop_desc": "0 COURS DE L'ARCHE GUEDON - 77468", "stop_name": "CITE SCOLAIRE"}, "geometry": {"type": "Point", "coordinates": [2.63368806437434, 48.85029228306208]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ca008b1b13a0d36ae3d9f9a07154c0bf27b48856", "fields": {"departement": "77", "stop_lat": 48.83369054963642, "code_postal": "77258", "stop_lon": 2.6343419983670415, "coord": [48.83369054963642, 2.6343419983670415], "stop_id": 3677672, "stop_desc": "BOULEVARD DU SEGRAIS - 77258", "stop_name": "LES CAMPANULES"}, "geometry": {"type": "Point", "coordinates": [2.6343419983670415, 48.83369054963642]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b1e8db0924cfba5fc19d15bc7c2e59c753c5daca", "fields": {"departement": "77", "stop_lat": 48.83296543292309, "code_postal": "77258", "stop_lon": 2.629545721233269, "coord": [48.83296543292309, 2.629545721233269], "stop_id": 3677674, "stop_desc": "RUE DE LA MAISON ROUGE - 77258", "stop_name": "MAISON ROUGE"}, "geometry": {"type": "Point", "coordinates": [2.629545721233269, 48.83296543292309]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "099cf271da112d2e89764867fa48943d74cbdd9d", "fields": {"departement": "93", "stop_lat": 48.929213819436754, "code_postal": "93007", "stop_lon": 2.479879844919834, "coord": [48.929213819436754, 2.479879844919834], "stop_id": 3672138, "stop_desc": "5 BIS AVENUE PAUL VAILLANT COUTURIER - 93007", "stop_name": "ROND-POINT PIERRE SEMARD - PAUL VAILLANT-COUTURIER"}, "geometry": {"type": "Point", "coordinates": [2.479879844919834, 48.929213819436754]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "91e9284c320e62fb9a21310d17e8052462ed1160", "fields": {"departement": "93", "stop_lat": 48.989618845747074, "code_postal": "93073", "stop_lon": 2.5274980640072955, "coord": [48.989618845747074, 2.5274980640072955], "stop_id": 3672143, "stop_desc": "RUE DE LA BELLE BORNE - 93073", "stop_name": "AEROVILLE - RUE DE LA BELLE BORNE"}, "geometry": {"type": "Point", "coordinates": [2.5274980640072955, 48.989618845747074]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7d8fd9b968a7bc81225da326267c0bd65cff1505", "fields": {"departement": "75", "stop_lat": 48.84726135533499, "code_postal": "75112", "stop_lon": 2.4072085511495405, "coord": [48.84726135533499, 2.4072085511495405], "stop_id": 3672106, "stop_desc": "82-84 COURS DE VINCENNES - 75112", "stop_name": "PYRENEES - DOCTEUR NETTER"}, "geometry": {"type": "Point", "coordinates": [2.4072085511495405, 48.84726135533499]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8a49c10a875ae4b71ce992cc9a7ed01bc10d97ef", "fields": {"departement": "75", "stop_lat": 48.86509918311279, "code_postal": "75120", "stop_lon": 2.4109242688351746, "coord": [48.86509918311279, 2.4109242688351746], "stop_id": 3672114, "stop_desc": "AVENUE DE LA PORTE DE BAGNOLET - 75120", "stop_name": "ECHANGEUR DE BAGNOLET"}, "geometry": {"type": "Point", "coordinates": [2.4109242688351746, 48.86509918311279]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a6b46b4cddcb017f8b0102de5ffdc7597c4814e8", "fields": {"departement": "93", "stop_lat": 48.911687882007875, "code_postal": "93010", "stop_lon": 2.4809905365254483, "coord": [48.911687882007875, 2.4809905365254483], "stop_id": 3672122, "stop_desc": "ROUTE D'AULNAY - 93010", "stop_name": "ROUTE D'AULNAY - JEAN MOULIN"}, "geometry": {"type": "Point", "coordinates": [2.4809905365254483, 48.911687882007875]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e4934f066c0533e25826f5834c96840d707eaea6", "fields": {"departement": "75", "stop_lat": 48.85290349248154, "code_postal": "75120", "stop_lon": 2.410539229875432, "coord": [48.85290349248154, 2.410539229875432], "stop_id": 3672110, "stop_desc": "65 BOULEVARD DAVOUT - 75120", "stop_name": "PORTE DE MONTREUIL"}, "geometry": {"type": "Point", "coordinates": [2.410539229875432, 48.85290349248154]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "42466fd0d6a5b7c28cacb364f8626a5d4e0cfc88", "fields": {"departement": "93", "stop_lat": 48.864043684925385, "code_postal": "93006", "stop_lon": 2.417093563493888, "coord": [48.864043684925385, 2.417093563493888], "stop_id": 3672116, "stop_desc": "PISTE GARE ROUTIERE - 93006", "stop_name": "GALLIENI-METRO"}, "geometry": {"type": "Point", "coordinates": [2.417093563493888, 48.864043684925385]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5841c47423f7e81eb522ffa79a1fc1df572df64d", "fields": {"departement": "93", "stop_lat": 48.90667408580478, "code_postal": "93010", "stop_lon": 2.480172263344335, "coord": [48.90667408580478, 2.480172263344335], "stop_id": 3672119, "stop_desc": "ROUTE D'AULNAY - 93010", "stop_name": "AUGUSTE POLISSARD"}, "geometry": {"type": "Point", "coordinates": [2.480172263344335, 48.90667408580478]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2015bca3555af9f0b7c4ac30edf10b151152d902", "fields": {"departement": "95", "stop_lat": 48.998751840594245, "code_postal": "95527", "stop_lon": 2.525742518298485, "coord": [48.998751840594245, 2.525742518298485], "stop_id": 3672149, "stop_desc": "RUE DU REMBLAI - 95527", "stop_name": "CARGO CENTRE"}, "geometry": {"type": "Point", "coordinates": [2.525742518298485, 48.998751840594245]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f65fcee887e387cdd56431b49514328117a8a4ee", "fields": {"departement": "93", "stop_lat": 48.99173782611795, "code_postal": "93073", "stop_lon": 2.5286392829463, "coord": [48.99173782611795, 2.5286392829463], "stop_id": 3672144, "stop_desc": "ROUTE DU MIDI - 93073", "stop_name": "RUE DU TE"}, "geometry": {"type": "Point", "coordinates": [2.5286392829463, 48.99173782611795]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "39f8369e4b16e8c3851d245c6d7a8ddee3d6a29f", "fields": {"departement": "77", "stop_lat": 48.826493607422115, "code_postal": "77146", "stop_lon": 2.637050481519303, "coord": [48.826493607422115, 2.637050481519303], "stop_id": 3677810, "stop_desc": "ALLEE DU 1ER MAI - 77146", "stop_name": "CROISSY-BEAUBOURG - Z.I. PARIEST"}, "geometry": {"type": "Point", "coordinates": [2.637050481519303, 48.826493607422115]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a6aa0fc13877ff4b971422f89f864c4239716514", "fields": {"departement": "77", "stop_lat": 48.84676361821815, "code_postal": "77337", "stop_lon": 2.613568309410896, "coord": [48.84676361821815, 2.613568309410896], "stop_id": 3677739, "stop_desc": "FACE AU 7 COURS DES ROCHES - 77337", "stop_name": "COLLEGE LE LUZARD"}, "geometry": {"type": "Point", "coordinates": [2.613568309410896, 48.84676361821815]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "85e5345e0fe9b153d26eea8bb8301056e27aef00", "fields": {"departement": "77", "stop_lat": 48.824544052604296, "code_postal": "77258", "stop_lon": 2.6331462487305894, "coord": [48.824544052604296, 2.6331462487305894], "stop_id": 3677823, "stop_desc": "BOULEVARD DE COURCERIN - 77258", "stop_name": "AERODROME DE LOGNES"}, "geometry": {"type": "Point", "coordinates": [2.6331462487305894, 48.824544052604296]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "652551f380fd484ff409cf9591ae393254612100", "fields": {"departement": "77", "stop_lat": 48.83594845740181, "code_postal": "77258", "stop_lon": 2.6299028951720893, "coord": [48.83594845740181, 2.6299028951720893], "stop_id": 3677814, "stop_desc": "PL MARTIN LUTHER KING - 77258", "stop_name": "RUE DE LA FERME"}, "geometry": {"type": "Point", "coordinates": [2.6299028951720893, 48.83594845740181]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d57ac6175d97ad5114e283b3e51c8d9fea940e79", "fields": {"departement": "77", "stop_lat": 48.85532443610953, "code_postal": "77337", "stop_lon": 2.6267298369603167, "coord": [48.85532443610953, 2.6267298369603167], "stop_id": 3677735, "stop_desc": "132 R CLAIRE MENIER - 77337", "stop_name": "MAIRIE DE NOISIEL"}, "geometry": {"type": "Point", "coordinates": [2.6267298369603167, 48.85532443610953]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6d6b5e896a580ed1712e4dbf8404b5073b9e5a5c", "fields": {"departement": "77", "stop_lat": 48.86649265103152, "code_postal": "77479", "stop_lon": 2.642417531883925, "coord": [48.86649265103152, 2.642417531883925], "stop_id": 3677712, "stop_desc": "45 BOULEVARD DE LA MARNE - 77479", "stop_name": "LE CANAL"}, "geometry": {"type": "Point", "coordinates": [2.642417531883925, 48.86649265103152]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a87589207e97ba0ca219ff3f5bf365670615f2f7", "fields": {"departement": "77", "stop_lat": 48.856166326549676, "code_postal": "77337", "stop_lon": 2.624228441425351, "coord": [48.856166326549676, 2.624228441425351], "stop_id": 3677736, "stop_desc": "BD PIERRE CARLE - 77337", "stop_name": "CHOCOLATERIE"}, "geometry": {"type": "Point", "coordinates": [2.624228441425351, 48.856166326549676]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "356428cea4c58761d03e9041661a30b56b99bcfa", "fields": {"departement": "75", "stop_lat": 48.864253384403426, "code_postal": "75116", "stop_lon": 2.277916762028845, "coord": [48.864253384403426, 2.277916762028845], "stop_id": 1708, "stop_desc": "Georges Mandel (56 avenue, angle avec le 86 rue de la Pompe) - 75116", "stop_name": "Rue de la Pompe (Avenue Georges Mandel)"}, "geometry": {"type": "Point", "coordinates": [2.277916762028845, 48.864253384403426]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eb7c07e682f9cd495cb4ae9a65721c7c4464f4e3", "fields": {"departement": "75", "stop_lat": 48.83943928123955, "code_postal": "75115", "stop_lon": 2.3010780424739252, "coord": [48.83943928123955, 2.3010780424739252], "stop_id": 1691, "stop_desc": "Vergenne (square de, vers la rue des Favorites) - 75115", "stop_name": "Vaugirard (Adolphe Ch\u00e9rioux)"}, "geometry": {"type": "Point", "coordinates": [2.3010780424739252, 48.83943928123955]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f99302975c9a2b38880674a2c038c046d9d8fd89", "fields": {"departement": "75", "stop_lat": 48.8763290374387, "code_postal": "75109", "stop_lon": 2.331804568510596, "coord": [48.8763290374387, 2.331804568510596], "stop_id": 1686, "stop_desc": "Estienne d'Orves (2 place d') - 75109", "stop_name": "Trinit\u00e9-d'Estienne d'Orves"}, "geometry": {"type": "Point", "coordinates": [2.331804568510596, 48.8763290374387]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "deb3eee7e8672a474e6c849096e5a3788aa1e2ae", "fields": {"departement": "92", "stop_lat": 48.92291633150906, "code_postal": "92004", "stop_lon": 2.285963896576634, "coord": [48.92291633150906, 2.285963896576634], "stop_id": 1662795, "stop_desc": "Angle rue des Bas / Rue Louis Calmel - 92004", "stop_name": "Les Agnettes"}, "geometry": {"type": "Point", "coordinates": [2.285963896576634, 48.92291633150906]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8ab16937cb340e649ba23f8f2181c8f6cedb52ad", "fields": {"departement": "75", "stop_lat": 48.88415326312386, "code_postal": "75119", "stop_lon": 2.3673574774663866, "coord": [48.88415326312386, 2.3673574774663866], "stop_id": 1675, "stop_desc": "Villette (244/171 boulevard de la) - 75119", "stop_name": "Stalingrad"}, "geometry": {"type": "Point", "coordinates": [2.3673574774663866, 48.88415326312386]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "84c8bac0626aacb52258ac7be607d6baa6eb805c", "fields": {"departement": "75", "stop_lat": 48.866764167814516, "code_postal": "75103", "stop_lon": 2.3615713270327316, "coord": [48.866764167814516, 2.3615713270327316], "stop_id": 1683, "stop_desc": "Temple (rue du, angle avec la rue Turbigo) - 75103", "stop_name": "Temple"}, "geometry": {"type": "Point", "coordinates": [2.3615713270327316, 48.866764167814516]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6a06ea8ea94c0ff5423b7e31a3d1a3e6903cea66", "fields": {"departement": "94", "stop_lat": 48.77105153303763, "code_postal": "94071", "stop_lon": 2.507511268345535, "coord": [48.77105153303763, 2.507511268345535], "stop_id": 1680, "stop_desc": "Porte de Sucy - 94071", "stop_name": "Sucy Bonneuil"}, "geometry": {"type": "Point", "coordinates": [2.507511268345535, 48.77105153303763]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aed9ae872625fbf6e8bf0f2086adcc12e0a10b6f", "fields": {"departement": "92", "stop_lat": 48.78003132105507, "code_postal": "92071", "stop_lon": 2.281059378471848, "coord": [48.78003132105507, 2.281059378471848], "stop_id": 1705, "stop_desc": "Jules Guesde (rue) - 92071", "stop_name": "Robinson"}, "geometry": {"type": "Point", "coordinates": [2.281059378471848, 48.78003132105507]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c0de1f57a31be147dc8040f952ff9237df978d05", "fields": {"departement": "75", "stop_lat": 48.89412344466592, "code_postal": "75118", "stop_lon": 2.347245444443029, "coord": [48.89412344466592, 2.347245444443029], "stop_id": 1668, "stop_desc": "Ornano (38 boulevard) - 75118", "stop_name": "Simplon"}, "geometry": {"type": "Point", "coordinates": [2.347245444443029, 48.89412344466592]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "69af644e9c5af58776af17821e540e5c64823bd2", "fields": {"departement": "75", "stop_lat": 48.848198268824774, "code_postal": "75106", "stop_lon": 2.3280217486281134, "coord": [48.848198268824774, 2.3280217486281134], "stop_id": 1646, "stop_desc": "Rennes (115 rue de) - 75106", "stop_name": "Rennes"}, "geometry": {"type": "Point", "coordinates": [2.3280217486281134, 48.848198268824774]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0a10a6a77e59d1208df8674841decd3d0efd6d72", "fields": {"departement": "93", "stop_lat": 48.903898047529474, "code_postal": "93001", "stop_lon": 2.3924800786724747, "coord": [48.903898047529474, 2.3924800786724747], "stop_id": 2104, "stop_desc": "R\u00e9publique (144 avenue de la) - 93001", "stop_name": "Aubervilliers Pantin (4 Chemins)"}, "geometry": {"type": "Point", "coordinates": [2.3924800786724747, 48.903898047529474]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f6e9958dd6e83ff1cd292270a7a072454800c33d", "fields": {"departement": "75", "stop_lat": 48.83937646312499, "code_postal": "75112", "stop_lon": 2.3957880604156494, "coord": [48.83937646312499, 2.3957880604156494], "stop_id": 2094, "stop_desc": "Reuilly (118 rue de) - 75112", "stop_name": "Daumesnil (F\u00e9lix Ebou\u00e9)"}, "geometry": {"type": "Point", "coordinates": [2.3957880604156494, 48.83937646312499]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9ddb7bf76b69675ab1cc6b37a22edadff797cbdd", "fields": {"departement": "75", "stop_lat": 48.835551216675434, "code_postal": "75113", "stop_lon": 2.358752095191401, "coord": [48.835551216675434, 2.358752095191401], "stop_id": 2136, "stop_desc": "H\u00f4pital (106/112 boulevard de l') - 75113", "stop_name": "Campo-Formio"}, "geometry": {"type": "Point", "coordinates": [2.358752095191401, 48.835551216675434]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3a1eab64d49cd5f0b1e962ebd14c012440e5be00", "fields": {"departement": "94", "stop_lat": 48.752988644666615, "code_postal": "94004", "stop_lon": 2.5052228459567494, "coord": [48.752988644666615, 2.5052228459567494], "stop_id": 2123, "stop_desc": "Gare (place de la) - 94004", "stop_name": "Boissy-Saint-L\u00e9ger"}, "geometry": {"type": "Point", "coordinates": [2.5052228459567494, 48.752988644666615]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "00556998aeeb2b5de7b6a74ee7d0dce79244a310", "fields": {"departement": "77", "stop_lat": 48.83665082820275, "code_postal": "77058", "stop_lon": 2.709854058543625, "coord": [48.83665082820275, 2.709854058543625], "stop_id": 2131, "stop_desc": "Gare (Rocade de la) - 77058", "stop_name": "Bussy-Saint-Georges"}, "geometry": {"type": "Point", "coordinates": [2.709854058543625, 48.83665082820275]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "be82377f87a84b3fd782cf447d8a547ca4e7ec72", "fields": {"departement": "75", "stop_lat": 48.846852151949776, "code_postal": "75115", "stop_lon": 2.2954488279344742, "coord": [48.846852151949776, 2.2954488279344742], "stop_id": 2106, "stop_desc": "Rue du Commerce - 75115", "stop_name": "Avenue Emile-Zola"}, "geometry": {"type": "Point", "coordinates": [2.2954488279344742, 48.846852151949776]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ea6f7145c5590e2946287e5884a1a58785025e9a", "fields": {"departement": "75", "stop_lat": 48.865551863634785, "code_postal": "75103", "stop_lon": 2.356108155120312, "coord": [48.865551863634785, 2.356108155120312], "stop_id": 2099, "stop_desc": "Vertus (rue des) - 75103", "stop_name": "Arts-et-M\u00e9tiers"}, "geometry": {"type": "Point", "coordinates": [2.356108155120312, 48.865551863634785]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d187f17e4977eec37a0005473b9cdd75b20f6003", "fields": {"departement": "93", "stop_lat": 48.93220116999761, "code_postal": "93007", "stop_lon": 2.4767508712199087, "coord": [48.93220116999761, 2.4767508712199087], "stop_id": 2119, "stop_desc": "Pierre Semart (rue) - 93007", "stop_name": "Blanc-Mesnil"}, "geometry": {"type": "Point", "coordinates": [2.4767508712199087, 48.93220116999761]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4e51a5e0714c9f54f6fa5e0861229b55617c7c97", "fields": {"departement": "94", "stop_lat": 48.79325579634385, "code_postal": "94016", "stop_lon": 2.321324996317998, "coord": [48.79325579634385, 2.321324996317998], "stop_id": 2108, "stop_desc": "Avenue Aristide Briand - 94016", "stop_name": "Bagneux"}, "geometry": {"type": "Point", "coordinates": [2.321324996317998, 48.79325579634385]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "41e2a33a69c0e857f404ee6797d359ed00aeba2f", "fields": {"departement": "94", "stop_lat": 48.84536875015732, "code_postal": "94080", "stop_lon": 2.428244509620486, "coord": [48.84536875015732, 2.428244509620486], "stop_id": 2116, "stop_desc": "Paris (98 avenue de) - 94080", "stop_name": "B\u00e9rault"}, "geometry": {"type": "Point", "coordinates": [2.428244509620486, 48.84536875015732]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9921b72ade1cb1e7e8645e9a65bca817f1ded10e", "fields": {"departement": "75", "stop_lat": 48.8654893908901, "code_postal": "75108", "stop_lon": 2.321411789213801, "coord": [48.8654893908901, 2.321411789213801], "stop_id": 2172, "stop_desc": "Tuileries (jardin des, face au 246 rue de Rivoli et \u00c8 la rue Cambon) PARIS-08 - 75108", "stop_name": "Concorde"}, "geometry": {"type": "Point", "coordinates": [2.321411789213801, 48.8654893908901]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "052f17de8b165794c24a76ba668a0d29cf84790d", "fields": {"departement": "75", "stop_lat": 48.833315185891436, "code_postal": "75114", "stop_lon": 2.3334427638299853, "coord": [48.833315185891436, 2.3334427638299853], "stop_id": 2187, "stop_desc": "G\u00e9n\u00e9ral Leclerc (4 avenue du, 2 rue Daguerre) - 75114", "stop_name": "Denfert-Rochereau"}, "geometry": {"type": "Point", "coordinates": [2.3334427638299853, 48.833315185891436]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0081c1830ce9a372751e1f30f44fc31630b1da6d", "fields": {"departement": "91", "stop_lat": 48.70076301806364, "code_postal": "91272", "stop_lon": 2.099100527058702, "coord": [48.70076301806364, 2.099100527058702], "stop_id": 2178, "stop_desc": "Rue Fernand Leger - 91272", "stop_name": "Courcelle-sur-Yvette"}, "geometry": {"type": "Point", "coordinates": [2.099100527058702, 48.70076301806364]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f2b978fc7e1fcc2b1c9e9de659bee821bd61ffce", "fields": {"departement": "94", "stop_lat": 48.8434118592224, "code_postal": "94033", "stop_lon": 2.464815403274336, "coord": [48.8434118592224, 2.464815403274336], "stop_id": 2198, "stop_desc": "Moreau David (place) - 94033", "stop_name": "Fontenay-sous-Bois"}, "geometry": {"type": "Point", "coordinates": [2.464815403274336, 48.8434118592224]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ada99bcc8dbf82c1a6ffff293f408070b366190e", "fields": {"departement": "78", "stop_lat": 48.970077176304514, "code_postal": "78005", "stop_lon": 2.0776181820083806, "coord": [48.970077176304514, 2.0776181820083806], "stop_id": 2158, "stop_desc": "Avenue de Conflans - 78005", "stop_name": "Ach\u00e8res-Ville"}, "geometry": {"type": "Point", "coordinates": [2.0776181820083806, 48.970077176304514]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d31bd81dc11702ce67a441c6607cc259b73181aa", "fields": {"departement": "75", "stop_lat": 48.82806601968645, "code_postal": "75114", "stop_lon": 2.326827420050836, "coord": [48.82806601968645, 2.326827420050836], "stop_id": 2159, "stop_desc": "Place Victor et H\u00e9l\u00e8ne Basch - 75114", "stop_name": "Al\u00e9sia"}, "geometry": {"type": "Point", "coordinates": [2.326827420050836, 48.82806601968645]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9d69cc79a01332aa5111ceaa1ed7e0e93f7ed6f8", "fields": {"departement": "75", "stop_lat": 48.83713694956265, "code_postal": "75115", "stop_lon": 2.296396090155559, "coord": [48.83713694956265, 2.296396090155559], "stop_id": 2174, "stop_desc": "Vaugirard (337 rue de) - 75115", "stop_name": "Convention"}, "geometry": {"type": "Point", "coordinates": [2.296396090155559, 48.83713694956265]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "477c9063e1fac6cd0a421f10b88bca3d8992ae67", "fields": {"departement": "93", "stop_lat": 48.932709809148555, "code_postal": "93029", "stop_lon": 2.455105345174671, "coord": [48.932709809148555, 2.455105345174671], "stop_id": 2188, "stop_desc": "Anatole France (169, rue) - 93029", "stop_name": "Drancy"}, "geometry": {"type": "Point", "coordinates": [2.455105345174671, 48.932709809148555]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "feb2448938a8b8d3cc250831e10c228f3f860b11", "fields": {"departement": "75", "stop_lat": 48.846848768895974, "code_postal": "75107", "stop_lon": 2.3169373108340854, "coord": [48.846848768895974, 2.3169373108340854], "stop_id": 2252, "stop_desc": "L\u00e9on-Paul Fargue (place, 1 boulevard du Montparnasse) - 75107", "stop_name": "Duroc"}, "geometry": {"type": "Point", "coordinates": [2.3169373108340854, 48.846848768895974]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4d2764829f5c0521a6e5fda7ebcf7125468c8708", "fields": {"departement": "75", "stop_lat": 48.84056772620437, "code_postal": "75114", "stop_lon": 2.326402815222764, "coord": [48.84056772620437, 2.326402815222764], "stop_id": 2255, "stop_desc": "Edgar Quinet (place, face au 11 boulevard Edgar Quinet) - 75114", "stop_name": "Edgar-Quinet"}, "geometry": {"type": "Point", "coordinates": [2.326402815222764, 48.84056772620437]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b54fd89e3a0b399511691d8528c234eead755dae", "fields": {"departement": "92", "stop_lat": 48.81470406056698, "code_postal": "92020", "stop_lon": 2.2972847301706394, "coord": [48.81470406056698, 2.2972847301706394], "stop_id": 2276, "stop_desc": "Guy M\u00f4quet (87 rue) - 92020", "stop_name": "Malakoff-Rue Etienne Dolet"}, "geometry": {"type": "Point", "coordinates": [2.2972847301706394, 48.81470406056698]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "25176da711689860c8618518c78c863eafa07778", "fields": {"departement": "94", "stop_lat": 48.79493354483859, "code_postal": "94068", "stop_lon": 2.5130447577249475, "coord": [48.79493354483859, 2.5130447577249475], "stop_id": 2244, "stop_desc": "Pierre Semard (2 avenue) - 94068", "stop_name": "La Varenne-Chennevi\u00e8res"}, "geometry": {"type": "Point", "coordinates": [2.5130447577249475, 48.79493354483859]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "395def46d6bc7b451530ac8ec7097269ad6491e4", "fields": {"departement": "75", "stop_lat": 48.88253647289218, "code_postal": "75117", "stop_lon": 2.311009243005514, "coord": [48.88253647289218, 2.311009243005514], "stop_id": 2277, "stop_desc": "Villiers (48 avenue de, Mus\u00e9e Henner) - 75117", "stop_name": "Malesherbes"}, "geometry": {"type": "Point", "coordinates": [2.311009243005514, 48.88253647289218]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c0b240d108a04730157786fe2b43f7806fbc1d93", "fields": {"departement": "75", "stop_lat": 48.89249697693026, "code_postal": "75118", "stop_lon": 2.3443284105515048, "coord": [48.89249697693026, 2.3443284105515048], "stop_id": 2267, "stop_desc": "Ordener (115 rue) - 75118", "stop_name": "Jules Joffrin"}, "geometry": {"type": "Point", "coordinates": [2.3443284105515048, 48.89249697693026]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5183a2285e25142d6f75f178542f60989fd905c7", "fields": {"departement": "93", "stop_lat": 48.93091044517924, "code_postal": "93013", "stop_lon": 2.426307936884455, "coord": [48.93091044517924, 2.426307936884455], "stop_id": 2248, "stop_desc": "Deportes (place des) - 93013", "stop_name": "Le Bourget"}, "geometry": {"type": "Point", "coordinates": [2.426307936884455, 48.93091044517924]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "48750094eea27a573c9ee284c617d4839c4ffc26", "fields": {"departement": "92", "stop_lat": 48.754494893921134, "code_postal": "92002", "stop_lon": 2.3007701500662883, "coord": [48.754494893921134, 2.3007701500662883], "stop_id": 22790, "stop_desc": "rue Pierre Brossolette - 92002", "stop_name": "Antony"}, "geometry": {"type": "Point", "coordinates": [2.3007701500662883, 48.754494893921134]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "07c7b9fa0d507f3215945c71c4aad69af3a468b6", "fields": {"departement": "94", "stop_lat": 48.729564991359986, "code_postal": "94054", "stop_lon": 2.359564239369551, "coord": [48.729564991359986, 2.359564239369551], "stop_id": 22792, "stop_desc": "AEROGARE - 94054", "stop_name": "Orly-Ouest"}, "geometry": {"type": "Point", "coordinates": [2.359564239369551, 48.729564991359986]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ce18a033a09492802916c60cf4a36841e6f58ec7", "fields": {"departement": "94", "stop_lat": 48.7289245757609, "code_postal": "94054", "stop_lon": 2.369359943921722, "coord": [48.7289245757609, 2.369359943921722], "stop_id": 22794, "stop_desc": "AEROGARE - 94054", "stop_name": "Orly-Sud"}, "geometry": {"type": "Point", "coordinates": [2.369359943921722, 48.7289245757609]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4dbe43b64260c5341e22b13ca1ebface12fd2b5a", "fields": {"departement": "75", "stop_lat": 48.84882126668606, "code_postal": "75115", "stop_lon": 2.2979529640251917, "coord": [48.84882126668606, 2.2979529640251917], "stop_id": 2241, "stop_desc": "Pondich\u00e9ry (25 rue de) - 75115", "stop_name": "La Motte-Picquet-Grenelle"}, "geometry": {"type": "Point", "coordinates": [2.2979529640251917, 48.84882126668606]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a7b2b8e9d37d4f46107d0b9dc7424e2564da20bb", "fields": {"departement": "93", "stop_lat": 48.906382164226436, "code_postal": "93070", "stop_lon": 2.3319104734589318, "coord": [48.906382164226436, 2.3319104734589318], "stop_id": 2214, "stop_desc": "Gabriel P\u00e9ri (avenue, rue Garibaldi) - 93070", "stop_name": "Garibaldi"}, "geometry": {"type": "Point", "coordinates": [2.3319104734589318, 48.906382164226436]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c8a9868020eec923ef107eea3d574b8a964ec58a", "fields": {"departement": "75", "stop_lat": 48.87974306422535, "code_postal": "75110", "stop_lon": 2.3546008104722334, "coord": [48.87974306422535, 2.3546008104722334], "stop_id": 2212, "stop_desc": "Rue du Faubourg St Denis - 75110", "stop_name": "Gare du Nord"}, "geometry": {"type": "Point", "coordinates": [2.3546008104722334, 48.87974306422535]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d419be00fdc57a9ee9c4fa68980214f311243b60", "fields": {"departement": "75", "stop_lat": 48.87938330261579, "code_postal": "75110", "stop_lon": 2.356372081359306, "coord": [48.87938330261579, 2.356372081359306], "stop_id": 2213, "stop_desc": "Rue du Faubourg St Denis - 75110", "stop_name": "Gare du Nord"}, "geometry": {"type": "Point", "coordinates": [2.356372081359306, 48.87938330261579]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "00a70cff562aac3892129c58aa8d0e62f6cf7ffd", "fields": {"departement": "75", "stop_lat": 48.85809504968323, "code_postal": "75116", "stop_lon": 2.274096448110612, "coord": [48.85809504968323, 2.274096448110612], "stop_id": 2242, "stop_desc": "Mozart (5 avenue) - 75116", "stop_name": "La Muette"}, "geometry": {"type": "Point", "coordinates": [2.274096448110612, 48.85809504968323]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f4c4aeb2fccadd53b82aef1501b63be651cab0f4", "fields": {"departement": "75", "stop_lat": 48.84555978708341, "code_postal": "75112", "stop_lon": 2.37344920496318, "coord": [48.84555978708341, 2.37344920496318], "stop_id": 2210, "stop_desc": "Rue de Bercy - 75112", "stop_name": "Gare de Lyon"}, "geometry": {"type": "Point", "coordinates": [2.37344920496318, 48.84555978708341]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9b94a8ed96234354f01cbb08db611a43f11f9d73", "fields": {"departement": "75", "stop_lat": 48.85568485028629, "code_postal": "75104", "stop_lon": 2.3462029295287157, "coord": [48.85568485028629, 2.3462029295287157], "stop_id": 2230, "stop_desc": "Louis Lepine (2 place) - 75104", "stop_name": "Cit\u00e9"}, "geometry": {"type": "Point", "coordinates": [2.3462029295287157, 48.85568485028629]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "995c3ce490796649ded9fb22fe85e7e14231472d", "fields": {"departement": "94", "stop_lat": 48.81574430585205, "code_postal": "94037", "stop_lon": 2.3408747750262417, "coord": [48.81574430585205, 2.3408747750262417], "stop_id": 2215, "stop_desc": "Romain Rolland - 94037", "stop_name": "Gentilly"}, "geometry": {"type": "Point", "coordinates": [2.3408747750262417, 48.81574430585205]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9201a05b02c4efbfec074122dc06c9b2e58087f4", "fields": {"departement": "75", "stop_lat": 48.87130614908782, "code_postal": "75116", "stop_lon": 2.2933310208962174, "coord": [48.87130614908782, 2.2933310208962174], "stop_id": 2234, "stop_desc": "Kl\u00e9ber (15 avenue) - 75116", "stop_name": "Kl\u00e9ber"}, "geometry": {"type": "Point", "coordinates": [2.2933310208962174, 48.87130614908782]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b975e44ebf56724484c6a10ea875f7b472b7dbc2", "fields": {"departement": "75", "stop_lat": 48.8720959556315, "code_postal": "75109", "stop_lon": 2.3305924621304466, "coord": [48.8720959556315, 2.3305924621304466], "stop_id": 2224141, "stop_desc": "11 RUE SCRIBE - 75109", "stop_name": "OPERA"}, "geometry": {"type": "Point", "coordinates": [2.3305924621304466, 48.8720959556315]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "295546c9ad67c48777e6b0d2869544222b44e9b1", "fields": {"departement": "75", "stop_lat": 48.847933946139044, "code_postal": "75116", "stop_lon": 2.2648350771736747, "coord": [48.847933946139044, 2.2648350771736747], "stop_id": 2354, "stop_desc": "Auteuil (55 rue d', angle avec le 1 rue Michel-Ange) - 75116", "stop_name": "Michel-Ange-Auteuil"}, "geometry": {"type": "Point", "coordinates": [2.2648350771736747, 48.847933946139044]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dc7cc85505eba04d70205709eedf311ec90457b6", "fields": {"departement": "75", "stop_lat": 48.873425976534854, "code_postal": "75109", "stop_lon": 2.3289709732965647, "coord": [48.873425976534854, 2.3289709732965647], "stop_id": 2286, "stop_desc": "Haussmann (boulevard, c\u00f4t\u00e9 pair et rue du Havre) - 75109", "stop_name": "Havre-Caumartin"}, "geometry": {"type": "Point", "coordinates": [2.3289709732965647, 48.873425976534854]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1a912dc964b1445bcb5eae61a9013dfefa77d939", "fields": {"departement": "75", "stop_lat": 48.84207702018728, "code_postal": "75114", "stop_lon": 2.321010449555117, "coord": [48.84207702018728, 2.321010449555117], "stop_id": 2366, "stop_desc": "Raoul Dautry (place, SNCF Montparnasse) - 75114", "stop_name": "Montparnasse-Bienvenue"}, "geometry": {"type": "Point", "coordinates": [2.321010449555117, 48.84207702018728]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "da2de6f78fdd5f07848293d99d82afa09a453208", "fields": {"departement": "75", "stop_lat": 48.832191599269656, "code_postal": "75114", "stop_lon": 2.3304069926293205, "coord": [48.832191599269656, 2.3304069926293205], "stop_id": 2367, "stop_desc": "G\u00e9n\u00e9ral Leclerc (42 avenue du) - 75114", "stop_name": "Mouton-Duvernet"}, "geometry": {"type": "Point", "coordinates": [2.3304069926293205, 48.832191599269656]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "229e1494865b6f7dc6ac360507b1942f07cc49cf", "fields": {"departement": "75", "stop_lat": 48.84811123157566, "code_postal": "75112", "stop_lon": 2.3980040127977436, "coord": [48.84811123157566, 2.3980040127977436], "stop_id": 2371, "stop_desc": "Nation (terre-plein face au 3 place de la) - 75112", "stop_name": "Nation"}, "geometry": {"type": "Point", "coordinates": [2.3980040127977436, 48.84811123157566]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d6e98f19dc4eaafb42e6acb43106a151a1b7a6a5", "fields": {"departement": "91", "stop_lat": 48.72414852610061, "code_postal": "91377", "stop_lon": 2.259342348954552, "coord": [48.72414852610061, 2.259342348954552], "stop_id": 2348, "stop_desc": "Carnot (avenue) - 91377", "stop_name": "Massy-Palaiseau"}, "geometry": {"type": "Point", "coordinates": [2.259342348954552, 48.72414852610061]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3ff4ee29cb74527c4abd79a456e964298cc4de16", "fields": {"departement": "77", "stop_lat": 48.975712599402996, "code_postal": "77294", "stop_lon": 2.6421606837255793, "coord": [48.975712599402996, 2.6421606837255793], "stop_id": 2360, "stop_desc": "Gare (place de la) - 77294", "stop_name": "Mitry-Claye"}, "geometry": {"type": "Point", "coordinates": [2.6421606837255793, 48.975712599402996]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c7c3ee08351bc37b565b16c5b51855e4ebff7864", "fields": {"departement": "75", "stop_lat": 48.87179221641751, "code_postal": "75116", "stop_lon": 2.27486996119569, "coord": [48.87179221641751, 2.27486996119569], "stop_id": 2414, "stop_desc": "Foch (avenue, c\u00f4t\u00e9 impair) - 75116", "stop_name": "Porte Dauphine (Mar\u00e9chal de Lattre de Tassigny)"}, "geometry": {"type": "Point", "coordinates": [2.27486996119569, 48.87179221641751]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5e5eea236efe615b76da59dbf00563a5434e2c4d", "fields": {"departement": "75", "stop_lat": 48.82281706023495, "code_postal": "75114", "stop_lon": 2.325072625148001, "coord": [48.82281706023495, 2.325072625148001], "stop_id": 2413, "stop_desc": "L\u00e9gion Etrang\u00e8re (rue de la) - 75114", "stop_name": "Porte d'Orl\u00e9ans (G\u00e9n\u00e9ral Leclerc)"}, "geometry": {"type": "Point", "coordinates": [2.325072625148001, 48.82281706023495]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e4d214662f593a3e429ca94cf20e1fcfc5f5c176", "fields": {"departement": "78", "stop_lat": 48.89830860836054, "code_postal": "78551", "stop_lon": 2.09511210577148, "coord": [48.89830860836054, 2.09511210577148], "stop_id": 2480, "stop_desc": "Surintendance (3 rue de la) - 78551", "stop_name": "Saint-Germain-en-Laye"}, "geometry": {"type": "Point", "coordinates": [2.09511210577148, 48.89830860836054]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a03bc174d9e36ea96ee50c7b59dbcc5406728120", "fields": {"departement": "75", "stop_lat": 48.837565334473624, "code_postal": "75116", "stop_lon": 2.255591274447898, "coord": [48.837565334473624, 2.255591274447898], "stop_id": 2425, "stop_desc": "Stade Pierre de Coubertin - 75116", "stop_name": "Porte de Saint-Cloud"}, "geometry": {"type": "Point", "coordinates": [2.255591274447898, 48.837565334473624]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c088f026b80ff37180bc59fec439dbbf726d7015", "fields": {"departement": "75", "stop_lat": 48.89795934324147, "code_postal": "75118", "stop_lon": 2.3592550695796524, "coord": [48.89795934324147, 2.3592550695796524], "stop_id": 2421, "stop_desc": "Chapelle (93 rue de la) - 75118", "stop_name": "Porte de la Chapelle"}, "geometry": {"type": "Point", "coordinates": [2.3592550695796524, 48.89795934324147]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b8953c2f57608c3272a8aadcbd33c9222bdfc244", "fields": {"departement": "75", "stop_lat": 48.894436060297956, "code_postal": "75117", "stop_lon": 2.313565665465226, "coord": [48.894436060297956, 2.313565665465226], "stop_id": 2419, "stop_desc": "Porte de Clichy (2 avenue de la) - 75117", "stop_name": "Porte de Clichy"}, "geometry": {"type": "Point", "coordinates": [2.313565665465226, 48.894436060297956]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b43d03649db34847d0aaab4d8130976724d5463e", "fields": {"departement": "75", "stop_lat": 48.8522227131835, "code_postal": "75111", "stop_lon": 2.389115650927187, "coord": [48.8522227131835, 2.389115650927187], "stop_id": 2454, "stop_desc": "Voltaire (232 boulevard) - 75111", "stop_name": "Rue des Boulets"}, "geometry": {"type": "Point", "coordinates": [2.389115650927187, 48.8522227131835]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3af2229a70a8fd79c50f108a9855f12fcc2212b9", "fields": {"departement": "94", "stop_lat": 48.83418281392297, "code_postal": "94079", "stop_lon": 2.5465598890183436, "coord": [48.83418281392297, 2.5465598890183436], "stop_id": 4614326, "stop_desc": "FACE 88 BOULEVARD DE FRIEDBERG - 94079", "stop_name": "MOULIN A VENT"}, "geometry": {"type": "Point", "coordinates": [2.5465598890183436, 48.83418281392297]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4d4f296e2088661b3b8d4da596d537227189632a", "fields": {"departement": "94", "stop_lat": 48.832767675211144, "code_postal": "94079", "stop_lon": 2.543749718800131, "coord": [48.832767675211144, 2.543749718800131], "stop_id": 4614327, "stop_desc": "FACE 37 BOULEVARD DE FRIEDBERG - 94079", "stop_name": "SQUARE DES ALLOBROGES"}, "geometry": {"type": "Point", "coordinates": [2.543749718800131, 48.832767675211144]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "79a2b1657b1f425b998c098be9d4f41bf727431f", "fields": {"departement": "94", "stop_lat": 48.82629358652719, "code_postal": "94079", "stop_lon": 2.540252848669576, "coord": [48.82629358652719, 2.540252848669576], "stop_id": 4614329, "stop_desc": "41 RUE DU GENERAL GALLIENI - 94079", "stop_name": "MAIRIE DE VILLIERS-SUR-MARNE"}, "geometry": {"type": "Point", "coordinates": [2.540252848669576, 48.82629358652719]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dce67500ea2c28ed18f2872b0d25b1a97e7112e1", "fields": {"departement": "94", "stop_lat": 48.80962390415088, "code_postal": "94059", "stop_lon": 2.5729825310092345, "coord": [48.80962390415088, 2.5729825310092345], "stop_id": 4614337, "stop_desc": "32 AVENUE ARDOUIN - 94059", "stop_name": "MAIRIE DU PLESSIS-TREVISE"}, "geometry": {"type": "Point", "coordinates": [2.5729825310092345, 48.80962390415088]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "12d283cfcd2d92302a428c5d123163751d2b5ed8", "fields": {"departement": "94", "stop_lat": 48.806976631048, "code_postal": "94059", "stop_lon": 2.5754197966207713, "coord": [48.806976631048, 2.5754197966207713], "stop_id": 4614348, "stop_desc": "FACE 13 AVENUE SAINT PIERRE - 94059", "stop_name": "ARDOUIN - SAINT-PIERRE"}, "geometry": {"type": "Point", "coordinates": [2.5754197966207713, 48.806976631048]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b49ec4d9d96671ee49f455928d29c264b4e7d5db", "fields": {"departement": "94", "stop_lat": 48.81242154581783, "code_postal": "94059", "stop_lon": 2.56714355077549, "coord": [48.81242154581783, 2.56714355077549], "stop_id": 4614351, "stop_desc": "FACE 26 AVENUE MAURICE BERTEAUX - 94059", "stop_name": "GEORGES FOUREAU"}, "geometry": {"type": "Point", "coordinates": [2.56714355077549, 48.81242154581783]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8a41324330a0d9e49fc88ad6e91388e15ccb6c2d", "fields": {"departement": "93", "stop_lat": 48.839739559711695, "code_postal": "93051", "stop_lon": 2.5502721677203333, "coord": [48.839739559711695, 2.5502721677203333], "stop_id": 4614366, "stop_desc": "BOULEVARD DU LEVANT - 93051", "stop_name": "CIMETIERE DE NOISY-LE-GRAND"}, "geometry": {"type": "Point", "coordinates": [2.5502721677203333, 48.839739559711695]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2a09998a01884cb221a900d76090416c90cf6c52", "fields": {"departement": "93", "stop_lat": 48.84076085882967, "code_postal": "93051", "stop_lon": 2.55210090418231, "coord": [48.84076085882967, 2.55210090418231], "stop_id": 4614367, "stop_desc": "PISTE GARE ROUTIERE - 93051", "stop_name": "NOISY-LE-GRAND - MONT D'EST RER"}, "geometry": {"type": "Point", "coordinates": [2.55210090418231, 48.84076085882967]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f02d672d45ce0a81b6f488fba6d3020579239f17", "fields": {"departement": "94", "stop_lat": 48.83418281392297, "code_postal": "94079", "stop_lon": 2.5465598890183436, "coord": [48.83418281392297, 2.5465598890183436], "stop_id": 4614370, "stop_desc": "FACE 88 BOULEVARD DE FRIEDBERG - 94079", "stop_name": "MOULIN A VENT"}, "geometry": {"type": "Point", "coordinates": [2.5465598890183436, 48.83418281392297]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4dc169cdd3109e48d19cc1c13adc880348d47507", "fields": {"departement": "94", "stop_lat": 48.82729882297657, "code_postal": "94079", "stop_lon": 2.546246262087308, "coord": [48.82729882297657, 2.546246262087308], "stop_id": 4614375, "stop_desc": "131 RUE DU GENERAL DE GAULLE - 94079", "stop_name": "COURTS SILLONS"}, "geometry": {"type": "Point", "coordinates": [2.546246262087308, 48.82729882297657]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3dfae1e23490c38d023d16845952c0780f813465", "fields": {"departement": "94", "stop_lat": 48.82629358652719, "code_postal": "94079", "stop_lon": 2.540252848669576, "coord": [48.82629358652719, 2.540252848669576], "stop_id": 4614377, "stop_desc": "41 RUE DU GENERAL GALLIENI - 94079", "stop_name": "MAIRIE DE VILLIERS-SUR-MARNE"}, "geometry": {"type": "Point", "coordinates": [2.540252848669576, 48.82629358652719]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7e08013ceacc336badd2998a9cf7682325e5c588", "fields": {"departement": "94", "stop_lat": 48.8227441353955, "code_postal": "94079", "stop_lon": 2.5501479650901335, "coord": [48.8227441353955, 2.5501479650901335], "stop_id": 4614379, "stop_desc": "46 AVENUE ANDRE ROUY - 94079", "stop_name": "GEORGES DEMESY"}, "geometry": {"type": "Point", "coordinates": [2.5501479650901335, 48.8227441353955]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ed0c8ce1631dfd06e5e22e41ace91de583b38e44", "fields": {"departement": "94", "stop_lat": 48.81861229418567, "code_postal": "94059", "stop_lon": 2.558623772322491, "coord": [48.81861229418567, 2.558623772322491], "stop_id": 4614381, "stop_desc": "8-10 AVENUE ANDRE ROUY - 94059", "stop_name": "LA DAME BLANCHE"}, "geometry": {"type": "Point", "coordinates": [2.558623772322491, 48.81861229418567]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1e02186380bb5f0431fcb826fc92cef70e75c5e9", "fields": {"departement": "94", "stop_lat": 48.78784921701604, "code_postal": "94060", "stop_lon": 2.5759985858316505, "coord": [48.78784921701604, 2.5759985858316505], "stop_id": 4614392, "stop_desc": "16 RUE DU 8 MAI 1945 - 94060", "stop_name": "PAUL VALERY"}, "geometry": {"type": "Point", "coordinates": [2.5759985858316505, 48.78784921701604]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6d34c5505339a550f5e34e62bd12a167a50f74a3", "fields": {"departement": "94", "stop_lat": 48.78560191500597, "code_postal": "94060", "stop_lon": 2.5805855780880003, "coord": [48.78560191500597, 2.5805855780880003], "stop_id": 4614393, "stop_desc": "17 R DU GENERAL LECLERC - 94060", "stop_name": "HOPITAL DE LA QUEUE-EN-BRIE"}, "geometry": {"type": "Point", "coordinates": [2.5805855780880003, 48.78560191500597]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5d5b09ef50bb9de4209e930b0ee83a55ca12824a", "fields": {"departement": "94", "stop_lat": 48.80601483466366, "code_postal": "94068", "stop_lon": 2.4723297438708514, "coord": [48.80601483466366, 2.4723297438708514], "stop_id": 4614395, "stop_desc": "R LEROUX - 94068", "stop_name": "SAINT-MAUR-CRETEIL-RER"}, "geometry": {"type": "Point", "coordinates": [2.4723297438708514, 48.80601483466366]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1bd7f3622b2012b4f6f57bb9d2afde776a560d85", "fields": {"departement": "94", "stop_lat": 48.811113850946285, "code_postal": "94068", "stop_lon": 2.4697166319007895, "coord": [48.811113850946285, 2.4697166319007895], "stop_id": 4614399, "stop_desc": "6-8 RUE DU FOUR - 94068", "stop_name": "MAURICE BERTEAUX"}, "geometry": {"type": "Point", "coordinates": [2.4697166319007895, 48.811113850946285]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1bf7473808f4363d75a778a6e11ca5c9313c0076", "fields": {"departement": "94", "stop_lat": 48.81086261745696, "code_postal": "94068", "stop_lon": 2.469334963475296, "coord": [48.81086261745696, 2.469334963475296], "stop_id": 4614400, "stop_desc": "6 BOULEVARD MAURICE BERTEAUX - 94068", "stop_name": "MAURICE BERTEAUX"}, "geometry": {"type": "Point", "coordinates": [2.469334963475296, 48.81086261745696]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f9a9fccd50b67e78be2949fa70d7f8513c9051b4", "fields": {"departement": "94", "stop_lat": 48.81016514318777, "code_postal": "94068", "stop_lon": 2.481730020981104, "coord": [48.81016514318777, 2.481730020981104], "stop_id": 4614406, "stop_desc": "FACE 66 AVENUE DE CONDE - 94068", "stop_name": "BOURGOGNE"}, "geometry": {"type": "Point", "coordinates": [2.481730020981104, 48.81016514318777]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3516600fad0fd78b90b85df634cbee4bf88a004f", "fields": {"departement": "94", "stop_lat": 48.80911772385547, "code_postal": "94068", "stop_lon": 2.4856597216397955, "coord": [48.80911772385547, 2.4856597216397955], "stop_id": 4614408, "stop_desc": "FACE 110 AVENUE DE CONDE - 94068", "stop_name": "CIMETIERE DE SAINT-MAUR-DES-FOSSES"}, "geometry": {"type": "Point", "coordinates": [2.4856597216397955, 48.80911772385547]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c84b9a7e3197f32390648418944c375cc6d379ee", "fields": {"departement": "94", "stop_lat": 48.807575966434804, "code_postal": "94068", "stop_lon": 2.49636423183875, "coord": [48.807575966434804, 2.49636423183875], "stop_id": 4614412, "stop_desc": "4 TER AVENUE DU RESERVOIR - 94068", "stop_name": "ANATOLE FRANCE-PIERRE BROSSOLETTE"}, "geometry": {"type": "Point", "coordinates": [2.49636423183875, 48.807575966434804]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8ed0b48ed844f8cdf9b648482d6d7d84e596849a", "fields": {"departement": "94", "stop_lat": 48.80624863751361, "code_postal": "94068", "stop_lon": 2.500877661251394, "coord": [48.80624863751361, 2.500877661251394], "stop_id": 4614415, "stop_desc": "22 AVENUE DU BEL AIR - 94068", "stop_name": "LES TILLEULS"}, "geometry": {"type": "Point", "coordinates": [2.500877661251394, 48.80624863751361]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9635e8f37470974267ca97d707a06c04edde95b3", "fields": {"departement": "94", "stop_lat": 48.806338721007656, "code_postal": "94068", "stop_lon": 2.500728268781669, "coord": [48.806338721007656, 2.500728268781669], "stop_id": 4614416, "stop_desc": "37 AVENUE DE BEL-AIR - 94068", "stop_name": "LES TILLEULS"}, "geometry": {"type": "Point", "coordinates": [2.500728268781669, 48.806338721007656]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bbf8de9997249d38aa1a0c9ae52766b0580528de", "fields": {"departement": "94", "stop_lat": 48.80691607650723, "code_postal": "94068", "stop_lon": 2.5056422485552456, "coord": [48.80691607650723, 2.5056422485552456], "stop_id": 4614417, "stop_desc": "44 AVENUE DU BEL-AIR - 94068", "stop_name": "GENERAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.5056422485552456, 48.80691607650723]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d1618540275304d4e6ebc54946fa1cc5c0110b1b", "fields": {"departement": "94", "stop_lat": 48.80732374608464, "code_postal": "94068", "stop_lon": 2.509671303470491, "coord": [48.80732374608464, 2.509671303470491], "stop_id": 4614420, "stop_desc": "PISTE GARE ROUTIERE - 94068", "stop_name": "CHAMPIGNY - SAINT-MAUR RER"}, "geometry": {"type": "Point", "coordinates": [2.509671303470491, 48.80732374608464]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "63a5e5b095f5636c67638c703031b502511d8844", "fields": {"departement": "94", "stop_lat": 48.81248980165499, "code_postal": "94017", "stop_lon": 2.51099488416213, "coord": [48.81248980165499, 2.51099488416213], "stop_id": 4614421, "stop_desc": "4 BIS RUE ALBERT THOMAS - 94017", "stop_name": "MARCHE DE CHAMPIGNY-SUR-MARNE"}, "geometry": {"type": "Point", "coordinates": [2.51099488416213, 48.81248980165499]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9b1dd02625fa816cb7ab16da42e6294a2d483a7f", "fields": {"departement": "94", "stop_lat": 48.81313554348275, "code_postal": "94017", "stop_lon": 2.511936047825764, "coord": [48.81313554348275, 2.511936047825764], "stop_id": 4614423, "stop_desc": "32 RUE LOUIS TALAMONI - 94017", "stop_name": "MAIRIE DE CHAMPIGNY"}, "geometry": {"type": "Point", "coordinates": [2.511936047825764, 48.81313554348275]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cffbc223d9846c211380313baf3b819c0c3a5f48", "fields": {"departement": "94", "stop_lat": 48.81279603413372, "code_postal": "94017", "stop_lon": 2.5166162781160857, "coord": [48.81279603413372, 2.5166162781160857], "stop_id": 4614426, "stop_desc": "15 RUE DU MONUMENT - 94017", "stop_name": "RUE DU MONUMENT"}, "geometry": {"type": "Point", "coordinates": [2.5166162781160857, 48.81279603413372]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ba024b51ce06f58146352f5229ea69c94bb51da5", "fields": {"departement": "94", "stop_lat": 48.81227999579712, "code_postal": "94017", "stop_lon": 2.5190776350081507, "coord": [48.81227999579712, 2.5190776350081507], "stop_id": 4614427, "stop_desc": "FACE 25 RUE DU MONUMENT - 94017", "stop_name": "BEAU SITE"}, "geometry": {"type": "Point", "coordinates": [2.5190776350081507, 48.81227999579712]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e93f72f608aa893e9a7e966b6e6819b1a3f17e71", "fields": {"departement": "94", "stop_lat": 48.81246948560218, "code_postal": "94017", "stop_lon": 2.5185883906429245, "coord": [48.81246948560218, 2.5185883906429245], "stop_id": 4614428, "stop_desc": "21/23 RUE DU MONUMENT - 94017", "stop_name": "BEAU SITE"}, "geometry": {"type": "Point", "coordinates": [2.5185883906429245, 48.81246948560218]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "103603ce8efb084c16cf6d8c2ab67003ebf8c379", "fields": {"departement": "94", "stop_lat": 48.812448382419085, "code_postal": "94017", "stop_lon": 2.526372409790821, "coord": [48.812448382419085, 2.526372409790821], "stop_id": 4614431, "stop_desc": "RUE MARCEL PAUL - 94017", "stop_name": "LE PLATEAU"}, "geometry": {"type": "Point", "coordinates": [2.526372409790821, 48.812448382419085]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0f6944d6bf0093f25cb6bbaf16d1f2fa3ed48b70", "fields": {"departement": "94", "stop_lat": 48.81659886372088, "code_postal": "94017", "stop_lon": 2.533083477517506, "coord": [48.81659886372088, 2.533083477517506], "stop_id": 4614437, "stop_desc": "RUE DE BERNEAU - 94017", "stop_name": "RUE DE BERNAU"}, "geometry": {"type": "Point", "coordinates": [2.533083477517506, 48.81659886372088]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "065f7106f4c3edc510045f88989cbf6635bb417b", "fields": {"departement": "94", "stop_lat": 48.81968262308147, "code_postal": "94017", "stop_lon": 2.5324962526298544, "coord": [48.81968262308147, 2.5324962526298544], "stop_id": 4614439, "stop_desc": "RUE DU REGARD DES LUATS - 94017", "stop_name": "CENTRE COMMERCIAL DE CHAMPIGNY-SUR-MARNE"}, "geometry": {"type": "Point", "coordinates": [2.5324962526298544, 48.81968262308147]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a5233360dd5e85955d5534451cef5d157649cb78", "fields": {"departement": "94", "stop_lat": 48.82364181963191, "code_postal": "94079", "stop_lon": 2.5351517770009284, "coord": [48.82364181963191, 2.5351517770009284], "stop_id": 4614443, "stop_desc": "17 RUE HENRI DUNANT - 94079", "stop_name": "HENRI DUNANT"}, "geometry": {"type": "Point", "coordinates": [2.5351517770009284, 48.82364181963191]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "32366235cc5208b3ba1804fa5246ab19d8c17c77", "fields": {"departement": "94", "stop_lat": 48.8238401130302, "code_postal": "94079", "stop_lon": 2.534812244476726, "coord": [48.8238401130302, 2.534812244476726], "stop_id": 4614444, "stop_desc": "FACE 21 RUE HENRI DUNANT - 94079", "stop_name": "HENRI DUNANT"}, "geometry": {"type": "Point", "coordinates": [2.534812244476726, 48.8238401130302]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8f187753fe162bee4a98f6a856c6ffb3543bd6cf", "fields": {"departement": "93", "stop_lat": 48.83880776872974, "code_postal": "93051", "stop_lon": 2.5486344844287583, "coord": [48.83880776872974, 2.5486344844287583], "stop_id": 4614460, "stop_desc": "BD DU LEVANT - 93051", "stop_name": "CIMETIERE DE NOISY-LE-GRAND"}, "geometry": {"type": "Point", "coordinates": [2.5486344844287583, 48.83880776872974]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "50a261e471dc31c9f5db148d7c6344ab0baf9e06", "fields": {"departement": "93", "stop_lat": 48.82931042366427, "code_postal": "93051", "stop_lon": 2.566660237334023, "coord": [48.82931042366427, 2.566660237334023], "stop_id": 4614470, "stop_desc": "79 AV MEDERIC - 93051", "stop_name": "LES RICHARDETS - CENTRE"}, "geometry": {"type": "Point", "coordinates": [2.566660237334023, 48.82931042366427]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4beb2f474d19f363eb2ae8774c75c0ae961660c0", "fields": {"departement": "93", "stop_lat": 48.829148620748406, "code_postal": "93051", "stop_lon": 2.566673134989463, "coord": [48.829148620748406, 2.566673134989463], "stop_id": 4614471, "stop_desc": "90 AV MEDERIC - 93051", "stop_name": "LES RICHARDETS - CENTRE"}, "geometry": {"type": "Point", "coordinates": [2.566673134989463, 48.829148620748406]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a5c6164484e36565b88a139dc5adb59de01308eb", "fields": {"departement": "93", "stop_lat": 48.83046687673984, "code_postal": "93051", "stop_lon": 2.558728797453689, "coord": [48.83046687673984, 2.558728797453689], "stop_id": 4614474, "stop_desc": "0 AV DU FORT - 93051", "stop_name": "CITE DES HETRES"}, "geometry": {"type": "Point", "coordinates": [2.558728797453689, 48.83046687673984]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9cfb7295152e1395a4497666fecfd1f1b1817af3", "fields": {"departement": "94", "stop_lat": 48.83296922361721, "code_postal": "94079", "stop_lon": 2.5517555216208123, "coord": [48.83296922361721, 2.5517555216208123], "stop_id": 4614478, "stop_desc": "10 AV AUGUSTE RODIN - 94079", "stop_name": "PAUL BELMONDO"}, "geometry": {"type": "Point", "coordinates": [2.5517555216208123, 48.83296922361721]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7e9c40190dc9169c3010f49af01d1b772b279a66", "fields": {"departement": "94", "stop_lat": 48.83281653299563, "code_postal": "94079", "stop_lon": 2.5517004347815617, "coord": [48.83281653299563, 2.5517004347815617], "stop_id": 4614479, "stop_desc": "AV AUGUSTE RODIN - 94079", "stop_name": "PAUL BELMONDO"}, "geometry": {"type": "Point", "coordinates": [2.5517004347815617, 48.83281653299563]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c24dda6ceb8e7dd0b8e138762e0506096532f98b", "fields": {"departement": "93", "stop_lat": 48.83520571658804, "code_postal": "93051", "stop_lon": 2.5475170326785896, "coord": [48.83520571658804, 2.5475170326785896], "stop_id": 4614480, "stop_desc": "BD DE FRIEDBERG - 93051", "stop_name": "MOULIN A VENT"}, "geometry": {"type": "Point", "coordinates": [2.5475170326785896, 48.83520571658804]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ef0d430eaa13dd9762daf63b38d0dc9bf2ddb3b2", "fields": {"departement": "93", "stop_lat": 48.845133860047326, "code_postal": "93051", "stop_lon": 2.5492866499490487, "coord": [48.845133860047326, 2.5492866499490487], "stop_id": 4614487, "stop_desc": "FACE 45 RUE DU DOCTEUR SUREAU - 93051", "stop_name": "REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.5492866499490487, 48.845133860047326]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6eaabe3e5aaf03f68485347ca1601d86ad3207ea", "fields": {"departement": "93", "stop_lat": 48.848823452640055, "code_postal": "93051", "stop_lon": 2.5566146567258454, "coord": [48.848823452640055, 2.5566146567258454], "stop_id": 4614493, "stop_desc": "11-13 AVENUE EMILE COSSONNEAU - 93051", "stop_name": "CARREFOUR DE MALNOUE"}, "geometry": {"type": "Point", "coordinates": [2.5566146567258454, 48.848823452640055]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1160d9938460f5a1e83cb3b385a0166cd4d647f5", "fields": {"departement": "93", "stop_lat": 48.84242792804296, "code_postal": "93051", "stop_lon": 2.5780062719733907, "coord": [48.84242792804296, 2.5780062719733907], "stop_id": 4614501, "stop_desc": "ALLEE JEAN RENOIR - 93051", "stop_name": "NOISY - CHAMPS RER"}, "geometry": {"type": "Point", "coordinates": [2.5780062719733907, 48.84242792804296]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "049d579d14c0fb3a75a05b7e27e9ea3f2556767b", "fields": {"departement": "93", "stop_lat": 48.84076085882967, "code_postal": "93051", "stop_lon": 2.55210090418231, "coord": [48.84076085882967, 2.55210090418231], "stop_id": 4614503, "stop_desc": "PISTE GARE ROUTIERE - 93051", "stop_name": "NOISY-LE-GRAND - MONT D'EST RER"}, "geometry": {"type": "Point", "coordinates": [2.55210090418231, 48.84076085882967]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f3c3c8ba37c7971a81184a7000efd1e7b97d509d", "fields": {"departement": "93", "stop_lat": 48.84878486098396, "code_postal": "93051", "stop_lon": 2.5531418777728834, "coord": [48.84878486098396, 2.5531418777728834], "stop_id": 4614508, "stop_desc": "FACE 7 AVENUE EMILE COSSONNEAU - 93051", "stop_name": "MAIRIE DE NOISY-LE-GRAND"}, "geometry": {"type": "Point", "coordinates": [2.5531418777728834, 48.84878486098396]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "29bbe44122c1f8f1ae940b2b4d60848aa18891b0", "fields": {"departement": "93", "stop_lat": 48.84585537568503, "code_postal": "93051", "stop_lon": 2.5719079921389687, "coord": [48.84585537568503, 2.5719079921389687], "stop_id": 4614517, "stop_desc": "AVENUE MICHEL GOUTIER - 93051", "stop_name": "LES CORMIERS"}, "geometry": {"type": "Point", "coordinates": [2.5719079921389687, 48.84585537568503]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dcb767f101637fdfb62082a94efa2aceb66039ac", "fields": {"departement": "93", "stop_lat": 48.847337643846686, "code_postal": "93051", "stop_lon": 2.576762609467094, "coord": [48.847337643846686, 2.576762609467094], "stop_id": 4614518, "stop_desc": "RUE DES HAUTS ROSEAUX - 93051", "stop_name": "LES HAUTS BATONS"}, "geometry": {"type": "Point", "coordinates": [2.576762609467094, 48.847337643846686]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "303667df95a7782ee7066ea8ba60bd6c813f53ca", "fields": {"departement": "93", "stop_lat": 48.84756399802918, "code_postal": "93051", "stop_lon": 2.5759329693145263, "coord": [48.84756399802918, 2.5759329693145263], "stop_id": 4614519, "stop_desc": "RUE JULES FERRY - 93051", "stop_name": "LES HAUTS BATONS"}, "geometry": {"type": "Point", "coordinates": [2.5759329693145263, 48.84756399802918]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1e59b85027f248d67c0b9766e677c919b374b761", "fields": {"departement": "93", "stop_lat": 48.84448861609584, "code_postal": "93051", "stop_lon": 2.576749455786101, "coord": [48.84448861609584, 2.576749455786101], "stop_id": 4614521, "stop_desc": "R DES HAUTS ROSEAUX - 93051", "stop_name": "LES HAUTS ROSEAUX"}, "geometry": {"type": "Point", "coordinates": [2.576749455786101, 48.84448861609584]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "16453dbed316e8d17b212f5259aae7646aee57bf", "fields": {"departement": "93", "stop_lat": 48.84321122819447, "code_postal": "93051", "stop_lon": 2.572821964089807, "coord": [48.84321122819447, 2.572821964089807], "stop_id": 4614523, "stop_desc": "RUE DES HAUTS CHATEAUX - 93051", "stop_name": "LES HAUTS CHATEAUX"}, "geometry": {"type": "Point", "coordinates": [2.572821964089807, 48.84321122819447]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7c3e1f577fb79bca62b8c81ea765c1598676449b", "fields": {"departement": "93", "stop_lat": 48.837144809302806, "code_postal": "93051", "stop_lon": 2.577219314052644, "coord": [48.837144809302806, 2.577219314052644], "stop_id": 4614529, "stop_desc": "BOULEVARD DE CHAMPY - 93051", "stop_name": "LA BUTTE AUX CAILLES"}, "geometry": {"type": "Point", "coordinates": [2.577219314052644, 48.837144809302806]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "12d934a07cf65a62130e86bd5de511f9b0b6a54b", "fields": {"departement": "93", "stop_lat": 48.831689716471, "code_postal": "93051", "stop_lon": 2.581441538442785, "coord": [48.831689716471, 2.581441538442785], "stop_id": 4614533, "stop_desc": "RUE DU BALLON - 93051", "stop_name": "RUE DES AEROSTIERS"}, "geometry": {"type": "Point", "coordinates": [2.581441538442785, 48.831689716471]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f8fd3b4b104d60fc9460c95302e8452683d284e7", "fields": {"departement": "93", "stop_lat": 48.82620294068821, "code_postal": "93051", "stop_lon": 2.574677688571683, "coord": [48.82620294068821, 2.574677688571683], "stop_id": 4614540, "stop_desc": "2 AVENUE DE LA GARE - 93051", "stop_name": "VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.574677688571683, 48.82620294068821]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c2d87a185214e4acb4a583a6a93ac078e369bc14", "fields": {"departement": "93", "stop_lat": 48.82950644228811, "code_postal": "93051", "stop_lon": 2.5675459520050916, "coord": [48.82950644228811, 2.5675459520050916], "stop_id": 4614541, "stop_desc": "54 AVENUE GABRIEL PERI - 93051", "stop_name": "LES RICHARDETS CENTRE"}, "geometry": {"type": "Point", "coordinates": [2.5675459520050916, 48.82950644228811]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6def1d41720e423fc98f33c383b18b23bfa9d07e", "fields": {"departement": "93", "stop_lat": 48.840631618882725, "code_postal": "93051", "stop_lon": 2.558867501671343, "coord": [48.840631618882725, 2.558867501671343], "stop_id": 4614549, "stop_desc": "FACE 38 AVENUE DU PAVE NEUF - 93051", "stop_name": "VICTOR BASCH"}, "geometry": {"type": "Point", "coordinates": [2.558867501671343, 48.840631618882725]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "35d62f3af4d28490478b22eab6c99a384416ec3c", "fields": {"departement": "93", "stop_lat": 48.84076085882967, "code_postal": "93051", "stop_lon": 2.55210090418231, "coord": [48.84076085882967, 2.55210090418231], "stop_id": 4614555, "stop_desc": "PISTE GARE ROUTIERE - 93051", "stop_name": "NOISY-LE-GRAND - MONT D'EST RER"}, "geometry": {"type": "Point", "coordinates": [2.55210090418231, 48.84076085882967]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "46e959d16622aa5274dba47a8eefc7a36b59c86d", "fields": {"departement": "93", "stop_lat": 48.860651050318076, "code_postal": "93050", "stop_lon": 2.5306345501909777, "coord": [48.860651050318076, 2.5306345501909777], "stop_id": 4614568, "stop_desc": "RUE PAUL ET CAMILLE THOMOUX - 93050", "stop_name": "EPI D'OR"}, "geometry": {"type": "Point", "coordinates": [2.5306345501909777, 48.860651050318076]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "acd15c497d5115ae3502bd52ca286ee596aca900", "fields": {"departement": "93", "stop_lat": 48.867540185876635, "code_postal": "93050", "stop_lon": 2.5332077466950484, "coord": [48.867540185876635, 2.5332077466950484], "stop_id": 4614574, "stop_desc": "AVENUE LEON BLUM - 93050", "stop_name": "ILE DE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.5332077466950484, 48.867540185876635]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "08c65c36cf12d44fa92473d0ee54d72fbedfab41", "fields": {"departement": "93", "stop_lat": 48.86918808813368, "code_postal": "93050", "stop_lon": 2.536687954277174, "coord": [48.86918808813368, 2.536687954277174], "stop_id": 4614577, "stop_desc": "FACE 2 AVENUE WINSTON CHURCHILL - 93050", "stop_name": "RUE DES POMMIERS"}, "geometry": {"type": "Point", "coordinates": [2.536687954277174, 48.86918808813368]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "afac92eb6f60747ade4dabdc4dfdd942006ab3dc", "fields": {"departement": "93", "stop_lat": 48.872024651226546, "code_postal": "93050", "stop_lon": 2.533347312982959, "coord": [48.872024651226546, 2.533347312982959], "stop_id": 4614578, "stop_desc": "FACE 7 AVENUE ROBERT SCHUMAN - 93050", "stop_name": "CITE DES BOULEAUX"}, "geometry": {"type": "Point", "coordinates": [2.533347312982959, 48.872024651226546]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "24c27d45a5350e3cb46c0dc6fe05c1e3e5dc3f0d", "fields": {"departement": "93", "stop_lat": 48.87202496498664, "code_postal": "93050", "stop_lon": 2.5331565754378143, "coord": [48.87202496498664, 2.5331565754378143], "stop_id": 4614579, "stop_desc": "9 AVENUE ROBERT SCHUMAN - 93050", "stop_name": "CITE DES BOULEAUX"}, "geometry": {"type": "Point", "coordinates": [2.5331565754378143, 48.87202496498664]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3f8d1eb29c4af22f6f0ebca790ee0e89eb0981f9", "fields": {"departement": "93", "stop_lat": 48.87957837736191, "code_postal": "93077", "stop_lon": 2.5250502909960995, "coord": [48.87957837736191, 2.5250502909960995], "stop_id": 4614584, "stop_desc": "29-33 RUE SIMON GUITLEVITCH - 93077", "stop_name": "AVENUE LUCIE"}, "geometry": {"type": "Point", "coordinates": [2.5250502909960995, 48.87957837736191]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5ec870e132fbfd1e9fef261fdc22b3d57ff86443", "fields": {"departement": "93", "stop_lat": 48.882787611005476, "code_postal": "93077", "stop_lon": 2.524557717776243, "coord": [48.882787611005476, 2.524557717776243], "stop_id": 4614585, "stop_desc": "6 AVENUE LAGACHE - 93077", "stop_name": "GAGNY RER"}, "geometry": {"type": "Point", "coordinates": [2.524557717776243, 48.882787611005476]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "449fbc6faff96cecc6c5c22280fdb3557fa1fb79", "fields": {"departement": "93", "stop_lat": 48.88645433907705, "code_postal": "93077", "stop_lon": 2.512796391628487, "coord": [48.88645433907705, 2.512796391628487], "stop_id": 4614589, "stop_desc": "FACE 16 RUE PASTEUR - 93077", "stop_name": "GUSTAVE RODET"}, "geometry": {"type": "Point", "coordinates": [2.512796391628487, 48.88645433907705]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b92310d5e5f8bbd66a8315aa6682cc817c8439b3", "fields": {"departement": "93", "stop_lat": 48.886784045065674, "code_postal": "93077", "stop_lon": 2.50855917994633, "coord": [48.886784045065674, 2.50855917994633], "stop_id": 4614591, "stop_desc": "2 AVENUE DE BONDY - 93077", "stop_name": "AVENUE DU RAINCY"}, "geometry": {"type": "Point", "coordinates": [2.50855917994633, 48.886784045065674]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b07088ff905f3bbd2b18b2f21d3b04dff9b364e8", "fields": {"departement": "93", "stop_lat": 48.8928360914602, "code_postal": "93010", "stop_lon": 2.485735887820397, "coord": [48.8928360914602, 2.485735887820397], "stop_id": 4614604, "stop_desc": "FACE 100 ROUTE DE VILLEMOMBLE - 93010", "stop_name": "L'ETOILE"}, "geometry": {"type": "Point", "coordinates": [2.485735887820397, 48.8928360914602]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b5bf6d92659104318a906610ca9b5df9499ae318", "fields": {"departement": "93", "stop_lat": 48.8927463896491, "code_postal": "93010", "stop_lon": 2.485599334584045, "coord": [48.8927463896491, 2.485599334584045], "stop_id": 4614605, "stop_desc": "100 ROUTE DE VILLEMOMBLE - 93010", "stop_name": "L'ETOILE"}, "geometry": {"type": "Point", "coordinates": [2.485599334584045, 48.8927463896491]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2c08e534629d73810671e8d1b8a79cbd7bb7916c", "fields": {"departement": "93", "stop_lat": 48.89367013081008, "code_postal": "93010", "stop_lon": 2.4798229154480134, "coord": [48.89367013081008, 2.4798229154480134], "stop_id": 4614606, "stop_desc": "FACE 24 ROUTE DE VILLEMOMBLE - 93010", "stop_name": "VARSOVIE"}, "geometry": {"type": "Point", "coordinates": [2.4798229154480134, 48.89367013081008]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d29ca68db4c0b71f9525c557d857b75a11703333", "fields": {"departement": "93", "stop_lat": 48.900075717229335, "code_postal": "93010", "stop_lon": 2.4816944299365256, "coord": [48.900075717229335, 2.4816944299365256], "stop_id": 4614611, "stop_desc": "49 AVENUE CARNOT - 93010", "stop_name": "BLANQUI - CARNOT"}, "geometry": {"type": "Point", "coordinates": [2.4816944299365256, 48.900075717229335]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "36916bd956d219640653aba724c9cf0485259f80", "fields": {"departement": "93", "stop_lat": 48.90306932325303, "code_postal": "93010", "stop_lon": 2.480952996252528, "coord": [48.90306932325303, 2.480952996252528], "stop_id": 4614612, "stop_desc": "75 RUE JULES GUESDE - 93010", "stop_name": "EGLISE DE BONDY"}, "geometry": {"type": "Point", "coordinates": [2.480952996252528, 48.90306932325303]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "61f7f6b4682e8df97d71854f77e36f129d13a5b1", "fields": {"departement": "93", "stop_lat": 48.90426396581919, "code_postal": "93010", "stop_lon": 2.4738536981285146, "coord": [48.90426396581919, 2.4738536981285146], "stop_id": 4614614, "stop_desc": "1 RUE JULES GUESDE - 93010", "stop_name": "LYCEES PAGNOL - RENOIR"}, "geometry": {"type": "Point", "coordinates": [2.4738536981285146, 48.90426396581919]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5c8af3037082ae6e2d043c5e446c44de5330c934", "fields": {"departement": "93", "stop_lat": 48.90752818929823, "code_postal": "93008", "stop_lon": 2.45522530113179, "coord": [48.90752818929823, 2.45522530113179], "stop_id": 4614623, "stop_desc": "AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "LAMARTINE"}, "geometry": {"type": "Point", "coordinates": [2.45522530113179, 48.90752818929823]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a127cc4a54add24e207c78e573997d979765d13e", "fields": {"departement": "93", "stop_lat": 48.846875973117605, "code_postal": "93051", "stop_lon": 2.5501108265897154, "coord": [48.846875973117605, 2.5501108265897154], "stop_id": 4614634, "stop_desc": "24 RUE JEAN VAQUIER - 93051", "stop_name": "MAIRIE DE NOISY LE GRAND - JEAN VAQUIER"}, "geometry": {"type": "Point", "coordinates": [2.5501108265897154, 48.846875973117605]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "602c42175d08c4c392d1bc0af3a79cc6225ddc1e", "fields": {"departement": "93", "stop_lat": 48.84519643284332, "code_postal": "93051", "stop_lon": 2.5494775458929206, "coord": [48.84519643284332, 2.5494775458929206], "stop_id": 4614636, "stop_desc": "1 ROUTE DE VILLIERS - 93051", "stop_name": "REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.5494775458929206, 48.84519643284332]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dca8b6d3fd7ab58cdf83f327f9b0dd0cc729f6a2", "fields": {"departement": "93", "stop_lat": 48.84519643284332, "code_postal": "93051", "stop_lon": 2.5494775458929206, "coord": [48.84519643284332, 2.5494775458929206], "stop_id": 4614645, "stop_desc": "1 ROUTE DE VILLIERS - 93051", "stop_name": "REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.5494775458929206, 48.84519643284332]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "44456eb495e864d338fd31eadd34916ebd374e7d", "fields": {"departement": "93", "stop_lat": 48.84917282451323, "code_postal": "93051", "stop_lon": 2.5523127821508225, "coord": [48.84917282451323, 2.5523127821508225], "stop_id": 4614649, "stop_desc": "2 RUE GEORGES LAIGNEAU - 93051", "stop_name": "MAIRIE DE NOISY-LE-GRAND"}, "geometry": {"type": "Point", "coordinates": [2.5523127821508225, 48.84917282451323]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c88a1ccf4a49ee0aa4505c19444b5e0d1852d3e1", "fields": {"departement": "93", "stop_lat": 48.847136080766774, "code_postal": "93051", "stop_lon": 2.5401165288448864, "coord": [48.847136080766774, 2.5401165288448864], "stop_id": 4614652, "stop_desc": "FACE 95 ROUTE DE NEUILLY - 93051", "stop_name": "ROUTE DE NEUILLY"}, "geometry": {"type": "Point", "coordinates": [2.5401165288448864, 48.847136080766774]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f17692e644f48a387402b06d6a07b47759e1b820", "fields": {"departement": "93", "stop_lat": 48.85655184767421, "code_postal": "93050", "stop_lon": 2.531204931415073, "coord": [48.85655184767421, 2.531204931415073], "stop_id": 4614656, "stop_desc": "30 PLACE DE LA RESISTANCE - 93050", "stop_name": "PLACE DE LA RESISTANCE"}, "geometry": {"type": "Point", "coordinates": [2.531204931415073, 48.85655184767421]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7fe6899e174ea6d4354c9c04dbf3440ffc0dcee5", "fields": {"departement": "93", "stop_lat": 48.87957837736191, "code_postal": "93077", "stop_lon": 2.5250502909960995, "coord": [48.87957837736191, 2.5250502909960995], "stop_id": 4614673, "stop_desc": "29-33 RUE SIMON GUITLEVITCH - 93077", "stop_name": "AVENUE LUCIE"}, "geometry": {"type": "Point", "coordinates": [2.5250502909960995, 48.87957837736191]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "916dc2b741a86199a3ff45d25beedbdea1e0886e", "fields": {"departement": "93", "stop_lat": 48.882175772586365, "code_postal": "93077", "stop_lon": 2.5250051933836772, "coord": [48.882175772586365, 2.5250051933836772], "stop_id": 4614674, "stop_desc": "1-3 RUE SIMON GUITLEVITCH - 93077", "stop_name": "GAGNY RER"}, "geometry": {"type": "Point", "coordinates": [2.5250051933836772, 48.882175772586365]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a1378da2500c1c99577330f38045adc9ca223d55", "fields": {"departement": "93", "stop_lat": 48.882391916339124, "code_postal": "93077", "stop_lon": 2.5247198110024587, "coord": [48.882391916339124, 2.5247198110024587], "stop_id": 4614675, "stop_desc": "178 BIS RUE GRANDE RUE - 93077", "stop_name": "GAGNY RER"}, "geometry": {"type": "Point", "coordinates": [2.5247198110024587, 48.882391916339124]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "107780684554c10c6b61ff69606327405ec1b87f", "fields": {"departement": "93", "stop_lat": 48.8819846340026, "code_postal": "93077", "stop_lon": 2.5207801904987455, "coord": [48.8819846340026, 2.5207801904987455], "stop_id": 4614676, "stop_desc": "FACE 152 RUE GRANDE RUE - 93077", "stop_name": "BOULEVARD ANDRE"}, "geometry": {"type": "Point", "coordinates": [2.5207801904987455, 48.8819846340026]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "baad82a0364d89cd973c8990d0e1aa9ead557c6a", "fields": {"departement": "93", "stop_lat": 48.88443086356306, "code_postal": "93077", "stop_lon": 2.507529344691353, "coord": [48.88443086356306, 2.507529344691353], "stop_id": 4614683, "stop_desc": "1 RUE GRANDE RUE - 93077", "stop_name": "AVENUE DU RAINCY"}, "geometry": {"type": "Point", "coordinates": [2.507529344691353, 48.88443086356306]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "23cb12529122e1b2331b01fbdc65812bbed4de03", "fields": {"departement": "93", "stop_lat": 48.884923836097904, "code_postal": "93077", "stop_lon": 2.5020799344980236, "coord": [48.884923836097904, 2.5020799344980236], "stop_id": 4614684, "stop_desc": "FACE 67 AV DE ROSNY - 93077", "stop_name": "MEISSONIER"}, "geometry": {"type": "Point", "coordinates": [2.5020799344980236, 48.884923836097904]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "32d3a702aee6ccfa50bbc5f19d2591981c91de45", "fields": {"departement": "93", "stop_lat": 48.88774450414245, "code_postal": "93077", "stop_lon": 2.4895644852244905, "coord": [48.88774450414245, 2.4895644852244905], "stop_id": 4614690, "stop_desc": "FACE 33 ALLEE DES DEUX COMMUNES - 93077", "stop_name": "DENIS PAPIN"}, "geometry": {"type": "Point", "coordinates": [2.4895644852244905, 48.88774450414245]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "999ab0334204b164a152b435c20060aa7a63260c", "fields": {"departement": "93", "stop_lat": 48.90555453249922, "code_postal": "93008", "stop_lon": 2.469044655471792, "coord": [48.90555453249922, 2.469044655471792], "stop_id": 4614708, "stop_desc": "FACE 439 AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "PONT DE BONDY"}, "geometry": {"type": "Point", "coordinates": [2.469044655471792, 48.90555453249922]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ed930b8ee43d854db8bfe7be5c0e62c7658e1579", "fields": {"departement": "93", "stop_lat": 48.90653371180456, "code_postal": "93008", "stop_lon": 2.4610444314823243, "coord": [48.90653371180456, 2.4610444314823243], "stop_id": 4614711, "stop_desc": "AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "AUGUSTE DELAUNE"}, "geometry": {"type": "Point", "coordinates": [2.4610444314823243, 48.90653371180456]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "69ca62f35b343631919c8aa600d96124904c5120", "fields": {"departement": "93", "stop_lat": 48.90657485833315, "code_postal": "93008", "stop_lon": 2.4559320596369205, "coord": [48.90657485833315, 2.4559320596369205], "stop_id": 4614713, "stop_desc": "302 AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "LAMARTINE"}, "geometry": {"type": "Point", "coordinates": [2.4559320596369205, 48.90657485833315]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8e50d6d60b42992f87c39cfce4289097a4836c82", "fields": {"departement": "93", "stop_lat": 48.90870952071069, "code_postal": "93008", "stop_lon": 2.451083311558328, "coord": [48.90870952071069, 2.451083311558328], "stop_id": 4614714, "stop_desc": "AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "RENE CAMIER"}, "geometry": {"type": "Point", "coordinates": [2.451083311558328, 48.90870952071069]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "abf96275190813d42397d1681e82b9aeb1bf4ec4", "fields": {"departement": "93", "stop_lat": 48.907282528066425, "code_postal": "93008", "stop_lon": 2.449021527354522, "coord": [48.907282528066425, 2.449021527354522], "stop_id": 4614715, "stop_desc": "PISTE GARE ROUTIERE - 93008", "stop_name": "BOBIGNY - PABLO PICASSO"}, "geometry": {"type": "Point", "coordinates": [2.449021527354522, 48.907282528066425]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4ad1a2b9a390d5411801002164ca2b7e774024bb", "fields": {"departement": "93", "stop_lat": 48.846875973117605, "code_postal": "93051", "stop_lon": 2.5501108265897154, "coord": [48.846875973117605, 2.5501108265897154], "stop_id": 4614722, "stop_desc": "24 RUE JEAN VAQUIER - 93051", "stop_name": "MAIRIE DE NOISY LE GRAND - JEAN VAQUIER"}, "geometry": {"type": "Point", "coordinates": [2.5501108265897154, 48.846875973117605]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ab6044887a2a275ff4814fac7e39d6eea830a01d", "fields": {"departement": "93", "stop_lat": 48.90421097774594, "code_postal": "93010", "stop_lon": 2.4730356002728167, "coord": [48.90421097774594, 2.4730356002728167], "stop_id": 4614762, "stop_desc": "FACE 1 RUE JULES GUESDE - 93010", "stop_name": "LYCEES PAGNOL - RENOIR"}, "geometry": {"type": "Point", "coordinates": [2.4730356002728167, 48.90421097774594]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "93549e02d20e1ef32b1d51732a036c0380635c9a", "fields": {"departement": "93", "stop_lat": 48.88675326560095, "code_postal": "93077", "stop_lon": 2.491619408001084, "coord": [48.88675326560095, 2.491619408001084], "stop_id": 4614771, "stop_desc": "FACE 32 RUE DES MARNAUDES - 93077", "stop_name": "8 MAI 1945"}, "geometry": {"type": "Point", "coordinates": [2.491619408001084, 48.88675326560095]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1593c9d973b78b739e6ea7e532e3aae7407a4462", "fields": {"departement": "93", "stop_lat": 48.889102506468866, "code_postal": "93077", "stop_lon": 2.4957422626622146, "coord": [48.889102506468866, 2.4957422626622146], "stop_id": 4614772, "stop_desc": "119-121 AVENUE MEISSONNIER - 93077", "stop_name": "LES MARNAUDES"}, "geometry": {"type": "Point", "coordinates": [2.4957422626622146, 48.889102506468866]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6cec748cb5545f9a6479fc02d4fec7658bc47f49", "fields": {"departement": "93", "stop_lat": 48.867818366920886, "code_postal": "93050", "stop_lon": 2.5334676366699243, "coord": [48.867818366920886, 2.5334676366699243], "stop_id": 4614784, "stop_desc": "AVENUE LEON BLUM - 93050", "stop_name": "ILE DE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.5334676366699243, 48.867818366920886]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "38828efa86f53a504c99fadb75b1798d4da700bf", "fields": {"departement": "93", "stop_lat": 48.86611826855342, "code_postal": "93050", "stop_lon": 2.5288567504658026, "coord": [48.86611826855342, 2.5288567504658026], "stop_id": 4614785, "stop_desc": "137 BIS RUE PAUL ET CAMILLE THOMOUX - 93050", "stop_name": "LEON BLUM"}, "geometry": {"type": "Point", "coordinates": [2.5288567504658026, 48.86611826855342]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e973c3fe574dee4bef36f385520088c07a807bd7", "fields": {"departement": "93", "stop_lat": 48.86018408234069, "code_postal": "93050", "stop_lon": 2.5304012505083278, "coord": [48.86018408234069, 2.5304012505083278], "stop_id": 4614787, "stop_desc": "59 RUE PAUL ET CAMILLE THOMOUX - 93050", "stop_name": "EPI D'OR"}, "geometry": {"type": "Point", "coordinates": [2.5304012505083278, 48.86018408234069]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "62642df14a0ae680cf2fd1adcd87edff9c0d2525", "fields": {"departement": "93", "stop_lat": 48.85683222647169, "code_postal": "93050", "stop_lon": 2.5301163636868558, "coord": [48.85683222647169, 2.5301163636868558], "stop_id": 4614788, "stop_desc": "FACE 52 AVENUE DU GENERAL DE GAULLE - 93050", "stop_name": "PLACE DE LA RESISTANCE"}, "geometry": {"type": "Point", "coordinates": [2.5301163636868558, 48.85683222647169]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "660c99d7f8eee1611552a1c720c663441b4e2be9", "fields": {"departement": "75", "stop_lat": 48.88146876041571, "code_postal": "75108", "stop_lon": 2.320916347194024, "coord": [48.88146876041571, 2.320916347194024], "stop_id": 3765156, "stop_desc": "FACE 73 R DE ROME - 75108", "stop_name": "ROME - BATIGNOLLES"}, "geometry": {"type": "Point", "coordinates": [2.320916347194024, 48.88146876041571]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cdfe7c4f2e10a0a6168a3d5cc89ebcb3ee0ada7c", "fields": {"departement": "75", "stop_lat": 48.88717441776452, "code_postal": "75117", "stop_lon": 2.3135689841028446, "coord": [48.88717441776452, 2.3135689841028446], "stop_id": 3765160, "stop_desc": "3-5 RUE JOUFFROY D'ABBANS - 75117", "stop_name": "PONT CARDINET"}, "geometry": {"type": "Point", "coordinates": [2.3135689841028446, 48.88717441776452]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5fcf0ae3596778619938f08a512364d81279dd5c", "fields": {"departement": "92", "stop_lat": 48.89546450581845, "code_postal": "92044", "stop_lon": 2.2951642691362526, "coord": [48.89546450581845, 2.2951642691362526], "stop_id": 3765173, "stop_desc": "121 RUE ARISTIDE BRIAND - 92044", "stop_name": "TREZEL"}, "geometry": {"type": "Point", "coordinates": [2.2951642691362526, 48.89546450581845]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3496b26c00d6ec9a4eb14f2f38990a32bbc8dfa4", "fields": {"departement": "92", "stop_lat": 48.89635135590711, "code_postal": "92044", "stop_lon": 2.2876803768684453, "coord": [48.89635135590711, 2.2876803768684453], "stop_id": 3765180, "stop_desc": "73 RUE RIVAY - 92044", "stop_name": "VAILLANT COUTURIER"}, "geometry": {"type": "Point", "coordinates": [2.2876803768684453, 48.89635135590711]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fadd6fa1bb2cb95092488a8217551ca044e5b0e4", "fields": {"departement": "92", "stop_lat": 48.89699514807104, "code_postal": "92044", "stop_lon": 2.280332802824864, "coord": [48.89699514807104, 2.280332802824864], "stop_id": 3765186, "stop_desc": "149 RUE ANATOLE FRANCE - 92044", "stop_name": "PONT DE LEVALLOIS"}, "geometry": {"type": "Point", "coordinates": [2.280332802824864, 48.89699514807104]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "98a9cda533d3c3a79a3f758f5f5ee70b73478fb9", "fields": {"departement": "75", "stop_lat": 48.84386116261595, "code_postal": "75112", "stop_lon": 2.3733935527604038, "coord": [48.84386116261595, 2.3733935527604038], "stop_id": 3765193, "stop_desc": "FACE 189 RUE BERCY - 75112", "stop_name": "GARE DE LYON"}, "geometry": {"type": "Point", "coordinates": [2.3733935527604038, 48.84386116261595]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8f27a3e0eee0fa94185471062f94aebc07612da3", "fields": {"departement": "75", "stop_lat": 48.842530379578726, "code_postal": "75112", "stop_lon": 2.3754078541183516, "coord": [48.842530379578726, 2.3754078541183516], "stop_id": 3765194, "stop_desc": "FACE 165 RUE DE BERCY - 75112", "stop_name": "GARE DE LYON"}, "geometry": {"type": "Point", "coordinates": [2.3754078541183516, 48.842530379578726]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4ed9e86ecfe53a224aadf1e4fd3d0d5730607746", "fields": {"departement": "75", "stop_lat": 48.84539937588007, "code_postal": "75112", "stop_lon": 2.3686422351772856, "coord": [48.84539937588007, 2.3686422351772856], "stop_id": 3765195, "stop_desc": "1 BOULEVARD DIDEROT - 75112", "stop_name": "PONT D'AUSTERLITZ - QUAI DE LA RAPEE"}, "geometry": {"type": "Point", "coordinates": [2.3686422351772856, 48.84539937588007]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "01d02c901f9654e78971a3732fa13bfc663df8e1", "fields": {"departement": "75", "stop_lat": 48.84870011990761, "code_postal": "75105", "stop_lon": 2.3579949353796334, "coord": [48.84870011990761, 2.3579949353796334], "stop_id": 3765200, "stop_desc": "11 QU SAINT-BERNARD - 75105", "stop_name": "UNIVERSITE PARIS VI"}, "geometry": {"type": "Point", "coordinates": [2.3579949353796334, 48.84870011990761]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bfbe47da8dd1b61c62d8bc904e5737d5d030996b", "fields": {"departement": "75", "stop_lat": 48.85154193352731, "code_postal": "75106", "stop_lon": 2.3401963360554157, "coord": [48.85154193352731, 2.3401963360554157], "stop_id": 3765206, "stop_desc": "FACE 25 RUE DE L'ECOLE DE MEDECINE - 75106", "stop_name": "SAINT-GERMAIN - ODEON"}, "geometry": {"type": "Point", "coordinates": [2.3401963360554157, 48.85154193352731]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "05606da6ec47cc0ea93af7845b5df961a6457c57", "fields": {"departement": "75", "stop_lat": 48.86224188060919, "code_postal": "75107", "stop_lon": 2.3059250414827357, "coord": [48.86224188060919, 2.3059250414827357], "stop_id": 3765225, "stop_desc": "65 QUAI D'ORSAY - 75107", "stop_name": "JEAN NICOT - EGLISE AMERICAINE"}, "geometry": {"type": "Point", "coordinates": [2.3059250414827357, 48.86224188060919]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ef18eb40df580e1b37611d768add0ef81b10af8a", "fields": {"departement": "75", "stop_lat": 48.86216913211656, "code_postal": "75107", "stop_lon": 2.302846611890067, "coord": [48.86216913211656, 2.302846611890067], "stop_id": 3765227, "stop_desc": "87-89 QUAI D'ORSAY - 75107", "stop_name": "BOSQUET - RAPP"}, "geometry": {"type": "Point", "coordinates": [2.302846611890067, 48.86216913211656]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f8d9ba2746a7e1f4c04123f115efe829f11ff56b", "fields": {"departement": "75", "stop_lat": 48.86407025913033, "code_postal": "75116", "stop_lon": 2.2905173822662883, "coord": [48.86407025913033, 2.2905173822662883], "stop_id": 3765231, "stop_desc": "32 AVENUE DU PRESIDENT WILSON - 75116", "stop_name": "ALBERT DE MUN"}, "geometry": {"type": "Point", "coordinates": [2.2905173822662883, 48.86407025913033]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "be71c87f8154e6f6be9e805ddfd353b1af599b4b", "fields": {"departement": "75", "stop_lat": 48.863359257762404, "code_postal": "75116", "stop_lon": 2.28803884120187, "coord": [48.863359257762404, 2.28803884120187], "stop_id": 3765233, "stop_desc": "50 AVENUE DU PRESIDENT WILSON - 75116", "stop_name": "TROCADERO"}, "geometry": {"type": "Point", "coordinates": [2.28803884120187, 48.863359257762404]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "97b3a1f5c258e52e43dbecf9eb2affe14b0e1bc4", "fields": {"departement": "75", "stop_lat": 48.863868517147814, "code_postal": "75116", "stop_lon": 2.281200107583251, "coord": [48.863868517147814, 2.281200107583251], "stop_id": 3765237, "stop_desc": "38-40 AVENUE GEORGES MANDEL - 75116", "stop_name": "SABLONS - CORTAMBERT"}, "geometry": {"type": "Point", "coordinates": [2.281200107583251, 48.863868517147814]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "676a79386c40753a90882103467a15776b7825bd", "fields": {"departement": "75", "stop_lat": 48.86441292806235, "code_postal": "75116", "stop_lon": 2.2735983558038804, "coord": [48.86441292806235, 2.2735983558038804], "stop_id": 3765241, "stop_desc": "76 AVENUE HENRI MARTIN - 75116", "stop_name": "VICTOR HUGO - HENRI MARTIN"}, "geometry": {"type": "Point", "coordinates": [2.2735983558038804, 48.86441292806235]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "36bd03a2e78396cb68368f7adb1239167f231e4e", "fields": {"departement": "75", "stop_lat": 48.86406217209718, "code_postal": "75116", "stop_lon": 2.273135636157929, "coord": [48.86406217209718, 2.273135636157929], "stop_id": 3765242, "stop_desc": "97 AVENUE HENRI MARTIN - 75116", "stop_name": "VICTOR HUGO - HENRI MARTIN"}, "geometry": {"type": "Point", "coordinates": [2.273135636157929, 48.86406217209718]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5bd751e56c7210b21024e393c86375f530631b7f", "fields": {"departement": "75", "stop_lat": 48.8535551113058, "code_postal": "75106", "stop_lon": 2.3337953788485346, "coord": [48.8535551113058, 2.3337953788485346], "stop_id": 3765249, "stop_desc": "147 BOULEVARD SAINT GERMAIN - 75106", "stop_name": "SAINT-GERMAIN-DES-PRES"}, "geometry": {"type": "Point", "coordinates": [2.3337953788485346, 48.8535551113058]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "78fc12da01670bb4b36a3c2baef10e4c3bd50ea9", "fields": {"departement": "75", "stop_lat": 48.85059796516235, "code_postal": "75105", "stop_lon": 2.345984155428729, "coord": [48.85059796516235, 2.345984155428729], "stop_id": 3765251, "stop_desc": "63 BD SAINT-GERMAIN - 75105", "stop_name": "DANTE"}, "geometry": {"type": "Point", "coordinates": [2.345984155428729, 48.85059796516235]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "38ed59ab506da65cd955c820072b0de96a643c0e", "fields": {"departement": "75", "stop_lat": 48.82773792696931, "code_postal": "75113", "stop_lon": 2.371735208270784, "coord": [48.82773792696931, 2.371735208270784], "stop_id": 3765263, "stop_desc": "45 RUE DE TOLBIAC - 75113", "stop_name": "PATAY - TOLBIAC"}, "geometry": {"type": "Point", "coordinates": [2.371735208270784, 48.82773792696931]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e4eb8ab8d4eff600dda3888abb417255d019edb1", "fields": {"departement": "75", "stop_lat": 48.83893694925755, "code_postal": "75112", "stop_lon": 2.393976707386192, "coord": [48.83893694925755, 2.393976707386192], "stop_id": 3765269, "stop_desc": "36 RUE TAINE - 75112", "stop_name": "DAUMESNIL - FELIX EBOUE"}, "geometry": {"type": "Point", "coordinates": [2.393976707386192, 48.83893694925755]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f9b6c96894d82082377942899b9c222b64da9e97", "fields": {"departement": "75", "stop_lat": 48.839447624740785, "code_postal": "75112", "stop_lon": 2.397272241277198, "coord": [48.839447624740785, 2.397272241277198], "stop_id": 3765270, "stop_desc": "54 BOULEVARD DE REUILLY - 75112", "stop_name": "DOCTEUR GOUJON - REUILLY"}, "geometry": {"type": "Point", "coordinates": [2.397272241277198, 48.839447624740785]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1448dea46f744a8505cbb5fb8be20ef3503da07f", "fields": {"departement": "75", "stop_lat": 48.84491636128811, "code_postal": "75112", "stop_lon": 2.405925387307481, "coord": [48.84491636128811, 2.405925387307481], "stop_id": 3765274, "stop_desc": "56 AVENUE DU DOCTEUR ARNOLD NETTER - 75112", "stop_name": "AVENUE DE SAINT-MANDE"}, "geometry": {"type": "Point", "coordinates": [2.405925387307481, 48.84491636128811]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9a824655c3d47f9da268f39cbea027d7e7e0246c", "fields": {"departement": "75", "stop_lat": 48.853139807594715, "code_postal": "75120", "stop_lon": 2.4061133245654953, "coord": [48.853139807594715, 2.4061133245654953], "stop_id": 3765277, "stop_desc": "62 RUE DES PYRENEES - 75120", "stop_name": "MARAICHERS"}, "geometry": {"type": "Point", "coordinates": [2.4061133245654953, 48.853139807594715]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "44b95f7fd98e7dbceb8a97fd33f449022b505d16", "fields": {"departement": "75", "stop_lat": 48.856528791256245, "code_postal": "75120", "stop_lon": 2.4048647761007027, "coord": [48.856528791256245, 2.4048647761007027], "stop_id": 3765278, "stop_desc": "108-110 RUE DES PYRENEES - 75120", "stop_name": "ORTEAUX"}, "geometry": {"type": "Point", "coordinates": [2.4048647761007027, 48.856528791256245]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "51c35bd4953988e93f8726215dc32f598420d647", "fields": {"departement": "75", "stop_lat": 48.86549237923351, "code_postal": "75120", "stop_lon": 2.399073303502112, "coord": [48.86549237923351, 2.399073303502112], "stop_id": 3765281, "stop_desc": "46-48 AVENUE GAMBETTA - 75120", "stop_name": "GAMBETTA - MAIRIE DU 20E"}, "geometry": {"type": "Point", "coordinates": [2.399073303502112, 48.86549237923351]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "68dbdbb02ab813e0748f23d1900a1395b7cc08d7", "fields": {"departement": "75", "stop_lat": 48.83977915980164, "code_postal": "75112", "stop_lon": 2.3992332840055406, "coord": [48.83977915980164, 2.3992332840055406], "stop_id": 3765293, "stop_desc": "69 BOULEVARD DE REUILLY - 75112", "stop_name": "PICPUS - REUILLY"}, "geometry": {"type": "Point", "coordinates": [2.3992332840055406, 48.83977915980164]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "654ba39a1d81bbb4a5ffd0800d54f8aa32212b41", "fields": {"departement": "75", "stop_lat": 48.83010047423811, "code_postal": "75113", "stop_lon": 2.3756573644191827, "coord": [48.83010047423811, 2.3756573644191827], "stop_id": 3765300, "stop_desc": "12-14 RUE DE TOLBIAC - 75113", "stop_name": "BIBLIOTHEQUE CHEVALERET"}, "geometry": {"type": "Point", "coordinates": [2.3756573644191827, 48.83010047423811]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "27bfb98f4662691fc77e05a02e9a9dea79e98aa8", "fields": {"departement": "75", "stop_lat": 48.82764840672252, "code_postal": "75113", "stop_lon": 2.3704827984951096, "coord": [48.82764840672252, 2.3704827984951096], "stop_id": 3765301, "stop_desc": "48 RUE DE TOLBIAC - 75113", "stop_name": "PATAY - TOLBIAC"}, "geometry": {"type": "Point", "coordinates": [2.3704827984951096, 48.82764840672252]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9987eeb3f581df301bd41d3026c7d5c5d493ba0d", "fields": {"departement": "75", "stop_lat": 48.846814222652064, "code_postal": "75105", "stop_lon": 2.3461060763555603, "coord": [48.846814222652064, 2.3461060763555603], "stop_id": 3765417, "stop_desc": "10 PLACE PANTHEON - 75105", "stop_name": "PANTHEON"}, "geometry": {"type": "Point", "coordinates": [2.3461060763555603, 48.846814222652064]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cfcce1110ea3fde81fc0b2989136899548bc495d", "fields": {"departement": "75", "stop_lat": 48.84670649906331, "code_postal": "75105", "stop_lon": 2.344199607555224, "coord": [48.84670649906331, 2.344199607555224], "stop_id": 3765419, "stop_desc": "FACE 3 RUE SOUFFLOT - 75105", "stop_name": "MAIRIE DU VE - PANTHEON"}, "geometry": {"type": "Point", "coordinates": [2.344199607555224, 48.84670649906331]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "54c9ab44b8fb5dbde714d0c68262ea18e0905d2f", "fields": {"departement": "75", "stop_lat": 48.8473987049821, "code_postal": "75106", "stop_lon": 2.3401143948599588, "coord": [48.8473987049821, 2.3401143948599588], "stop_id": 3765422, "stop_desc": "FACE 6 PLACE EDMOND ROSTAND - 75106", "stop_name": "LUXEMBOURG"}, "geometry": {"type": "Point", "coordinates": [2.3401143948599588, 48.8473987049821]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7c7b8ca85b4441244f5761f1cc718afef06b005a", "fields": {"departement": "75", "stop_lat": 48.850652127882995, "code_postal": "75106", "stop_lon": 2.3328286561091987, "coord": [48.850652127882995, 2.3328286561091987], "stop_id": 3765427, "stop_desc": "FACE 78 RUE BONAPARTE - 75106", "stop_name": "SAINT-SULPICE"}, "geometry": {"type": "Point", "coordinates": [2.3328286561091987, 48.850652127882995]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7dc1dd2e29809e54112493c7623213cb2b5a4256", "fields": {"departement": "75", "stop_lat": 48.86690048502085, "code_postal": "75108", "stop_lon": 2.322010761599158, "coord": [48.86690048502085, 2.322010761599158], "stop_id": 3765442, "stop_desc": "1 RUE ROYALE - 75108", "stop_name": "CONCORDE"}, "geometry": {"type": "Point", "coordinates": [2.322010761599158, 48.86690048502085]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "01398c378efbe461a6254e738125deeda2d87d88", "fields": {"departement": "75", "stop_lat": 48.87939779310322, "code_postal": "75117", "stop_lon": 2.3026716641850853, "coord": [48.87939779310322, 2.3026716641850853], "stop_id": 3765465, "stop_desc": "81 RUE DE COURCELLES - 75117", "stop_name": "COURCELLES"}, "geometry": {"type": "Point", "coordinates": [2.3026716641850853, 48.87939779310322]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aa6e4b2f522b24952ddc83f76678e20a85aa86fd", "fields": {"departement": "75", "stop_lat": 48.85165843426928, "code_postal": "75106", "stop_lon": 2.3278304695773993, "coord": [48.85165843426928, 2.3278304695773993], "stop_id": 3765467, "stop_desc": "17 RUE DE SEVRES - 75106", "stop_name": "SEVRES - BABYLONE"}, "geometry": {"type": "Point", "coordinates": [2.3278304695773993, 48.85165843426928]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "79ec800a6b7f799db02ef7768c751ed8b13f8544", "fields": {"departement": "94", "stop_lat": 48.81225601159191, "code_postal": "94043", "stop_lon": 2.353475970789407, "coord": [48.81225601159191, 2.353475970789407], "stop_id": 3781635, "stop_desc": "FACE 56 RUE DE LA CONVENTION - 94043", "stop_name": "CONVENTION - JAURES"}, "geometry": {"type": "Point", "coordinates": [2.353475970789407, 48.81225601159191]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b77d4411dc11c2e86793d0bd96cae0ce12ec3678", "fields": {"departement": "94", "stop_lat": 48.81469033605355, "code_postal": "94043", "stop_lon": 2.3614516666573815, "coord": [48.81469033605355, 2.3614516666573815], "stop_id": 3781640, "stop_desc": "7 RUE ROGER SALENGRO - 94043", "stop_name": "ROGER SALENGRO - FONTAINEBLEAU"}, "geometry": {"type": "Point", "coordinates": [2.3614516666573815, 48.81469033605355]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ffc0f9cf3f49d427a65aa2690a073991a88e1bda", "fields": {"departement": "75", "stop_lat": 48.81750200415521, "code_postal": "75113", "stop_lon": 2.367917652337127, "coord": [48.81750200415521, 2.367917652337127], "stop_id": 3781641, "stop_desc": "BOULEVARD HIPPOLYTE MARQUES - 75113", "stop_name": "VERDUN - MARQUES"}, "geometry": {"type": "Point", "coordinates": [2.367917652337127, 48.81750200415521]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "623aa2dcbee263892d73d01600dd2d8fa3d23d51", "fields": {"departement": "94", "stop_lat": 48.817527407096954, "code_postal": "94041", "stop_lon": 2.3734704856637805, "coord": [48.817527407096954, 2.3734704856637805], "stop_id": 3781642, "stop_desc": "RUE BAUDIN - 94041", "stop_name": "JULES FERRY"}, "geometry": {"type": "Point", "coordinates": [2.3734704856637805, 48.817527407096954]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2d1b75b35e9492d3149c21e5231cef0b1c0d3131", "fields": {"departement": "94", "stop_lat": 48.8171684118671, "code_postal": "94041", "stop_lon": 2.3717417963046494, "coord": [48.8171684118671, 2.3717417963046494], "stop_id": 3781643, "stop_desc": "26 BIS RUE BARBES - 94041", "stop_name": "JULES FERRY"}, "geometry": {"type": "Point", "coordinates": [2.3717417963046494, 48.8171684118671]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2a7b3e06dafb17dc6f3efb11b4126a21a0e53a47", "fields": {"departement": "94", "stop_lat": 48.816016258637006, "code_postal": "94041", "stop_lon": 2.3772528591838893, "coord": [48.816016258637006, 2.3772528591838893], "stop_id": 3781645, "stop_desc": "105 BIS AVENUE MAURICE THOREZ - 94041", "stop_name": "PIERRE ET MARIE CURIE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.3772528591838893, 48.816016258637006]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a1afe543a07cecfb3f4d0d9d7af3fb4abafead44", "fields": {"departement": "94", "stop_lat": 48.81406097593005, "code_postal": "94041", "stop_lon": 2.3899484945302714, "coord": [48.81406097593005, 2.3899484945302714], "stop_id": 3781652, "stop_desc": "FACE 64 AVENUE GEORGES GOSNAT - 94041", "stop_name": "IVRY-SUR-SEINE RER"}, "geometry": {"type": "Point", "coordinates": [2.3899484945302714, 48.81406097593005]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3b4f78c89055aec580cf7204a71552be97a67afb", "fields": {"departement": "94", "stop_lat": 48.81340871250957, "code_postal": "94041", "stop_lon": 2.3804080844151985, "coord": [48.81340871250957, 2.3804080844151985], "stop_id": 3781672, "stop_desc": "169 AVENUE MAURICE THOREZ - 94041", "stop_name": "HOPITAL JEAN ROSTAND"}, "geometry": {"type": "Point", "coordinates": [2.3804080844151985, 48.81340871250957]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1971b496d301149395f73491bdf5f59cd0587985", "fields": {"departement": "94", "stop_lat": 48.81589347084157, "code_postal": "94041", "stop_lon": 2.366855167286927, "coord": [48.81589347084157, 2.366855167286927], "stop_id": 3781674, "stop_desc": "2 BIS RUE DE CHATEAUDUN - 94041", "stop_name": "VERDUN - CHATEAUDUN"}, "geometry": {"type": "Point", "coordinates": [2.366855167286927, 48.81589347084157]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b79ac5826e49f3e946d7db8cc2c85031c9899ea0", "fields": {"departement": "94", "stop_lat": 48.81083671859592, "code_postal": "94041", "stop_lon": 2.384352294022514, "coord": [48.81083671859592, 2.384352294022514], "stop_id": 3785915, "stop_desc": "FACE 15 RUE MARAT - 94041", "stop_name": "MAIRIE D'IVRY-METRO"}, "geometry": {"type": "Point", "coordinates": [2.384352294022514, 48.81083671859592]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6a06336f3e8ce86407a96a333f18694f45534b86", "fields": {"departement": "94", "stop_lat": 48.810079599334095, "code_postal": "94041", "stop_lon": 2.3894953924467677, "coord": [48.810079599334095, 2.3894953924467677], "stop_id": 3785918, "stop_desc": "21 RUE RASPAIL - 94041", "stop_name": "SAINT JUST"}, "geometry": {"type": "Point", "coordinates": [2.3894953924467677, 48.810079599334095]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "39355c925d75f7bef25e66a848731e9541e39086", "fields": {"departement": "94", "stop_lat": 48.80690581924993, "code_postal": "94041", "stop_lon": 2.391927863549737, "coord": [48.80690581924993, 2.391927863549737], "stop_id": 3785919, "stop_desc": "6-8 AVENUE DE LA REPUBLIQUE - 94041", "stop_name": "PARMENTIER"}, "geometry": {"type": "Point", "coordinates": [2.391927863549737, 48.80690581924993]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "864a5d80188c13e624c7e2c2c58a642f58548326", "fields": {"departement": "94", "stop_lat": 48.805466849152424, "code_postal": "94041", "stop_lon": 2.393899318107656, "coord": [48.805466849152424, 2.393899318107656], "stop_id": 3785922, "stop_desc": "AVENUE DE LA REPUBLIQUE - 94041", "stop_name": "HOPITAL CHARLES FOIX"}, "geometry": {"type": "Point", "coordinates": [2.393899318107656, 48.805466849152424]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d63875fc18deb217f3858e0908b035f02ecad8da", "fields": {"departement": "94", "stop_lat": 48.80256210473067, "code_postal": "94041", "stop_lon": 2.397324842931726, "coord": [48.80256210473067, 2.397324842931726], "stop_id": 3785923, "stop_desc": "FACE 32 AVENUE DE LA REPUBLIQUE - 94041", "stop_name": "FELIX FAURE"}, "geometry": {"type": "Point", "coordinates": [2.397324842931726, 48.80256210473067]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ba67ac2423f3aa42f064f6ffc17a820b243e776f", "fields": {"departement": "94", "stop_lat": 48.80225645002726, "code_postal": "94081", "stop_lon": 2.397460547776301, "coord": [48.80225645002726, 2.397460547776301], "stop_id": 3785924, "stop_desc": "AVENUE DE LA REPUBLIQUE - 94081", "stop_name": "FELIX FAURE"}, "geometry": {"type": "Point", "coordinates": [2.397460547776301, 48.80225645002726]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1cd8ea2e1d388345e54724afd882e5b3ff7f50cb", "fields": {"departement": "94", "stop_lat": 48.78667530592923, "code_postal": "94081", "stop_lon": 2.4068821118780837, "coord": [48.78667530592923, 2.4068821118780837], "stop_id": 3785935, "stop_desc": "RUE LEON GEFFROY - 94081", "stop_name": "JEAN PIERRE TIMBAUD"}, "geometry": {"type": "Point", "coordinates": [2.4068821118780837, 48.78667530592923]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c62b7cddbd14beb91a171d86eee843bda0c2453b", "fields": {"departement": "94", "stop_lat": 48.780448526838995, "code_postal": "94081", "stop_lon": 2.4035961317917502, "coord": [48.780448526838995, 2.4035961317917502], "stop_id": 3785940, "stop_desc": "142 RUE DU GENERAL MALLERET JOINVILLE - 94081", "stop_name": "ANSELME RONDENAY"}, "geometry": {"type": "Point", "coordinates": [2.4035961317917502, 48.780448526838995]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "224b0c27a7ac2590a87a3f49fbdc6100c0258bdc", "fields": {"departement": "94", "stop_lat": 48.77802987598312, "code_postal": "94081", "stop_lon": 2.405156985736085, "coord": [48.77802987598312, 2.405156985736085], "stop_id": 3785941, "stop_desc": "95 RUE DU GENERAL MALLERET-JOINVILLE - 94081", "stop_name": "CITE BALZAC"}, "geometry": {"type": "Point", "coordinates": [2.405156985736085, 48.77802987598312]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b5dfc857effe949ec5b9c9752d4c2427687cfe40", "fields": {"departement": "94", "stop_lat": 48.777578551509244, "code_postal": "94081", "stop_lon": 2.4084474472519246, "coord": [48.777578551509244, 2.4084474472519246], "stop_id": 3785943, "stop_desc": "39 RUE LEON GEFFROY - 94081", "stop_name": "DESCARTES"}, "geometry": {"type": "Point", "coordinates": [2.4084474472519246, 48.777578551509244]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "94170469813b372e6ec86ca93e890fcdee990a77", "fields": {"departement": "94", "stop_lat": 48.775645606479685, "code_postal": "94081", "stop_lon": 2.409315126518431, "coord": [48.775645606479685, 2.409315126518431], "stop_id": 3785946, "stop_desc": "FACE 21-23 RUE LEON GEFFROY - 94081", "stop_name": "LEON GEFFROY"}, "geometry": {"type": "Point", "coordinates": [2.409315126518431, 48.775645606479685]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b6ff0582f4d95d4223ca0bf18a25e83544d0e6eb", "fields": {"departement": "94", "stop_lat": 48.76868024848463, "code_postal": "94022", "stop_lon": 2.408693597915253, "coord": [48.76868024848463, 2.408693597915253], "stop_id": 3785949, "stop_desc": "AVENUE DE LUGO - 94022", "stop_name": "8 MAI 1945"}, "geometry": {"type": "Point", "coordinates": [2.408693597915253, 48.76868024848463]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f6e1c4ff9b78c6f4297b5695ec7194f0997c22f9", "fields": {"departement": "94", "stop_lat": 48.76668118804282, "code_postal": "94022", "stop_lon": 2.4146189384128127, "coord": [48.76668118804282, 2.4146189384128127], "stop_id": 3785955, "stop_desc": "7 AVENUE DE VILLENEUVE SAINT GEORGES - 94022", "stop_name": "PONT DE CHOISY - PISCINE"}, "geometry": {"type": "Point", "coordinates": [2.4146189384128127, 48.76668118804282]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4e5a94d03325a25282cf23a0bfafec921d0e9f26", "fields": {"departement": "94", "stop_lat": 48.759341389996685, "code_postal": "94022", "stop_lon": 2.422656023243349, "coord": [48.759341389996685, 2.422656023243349], "stop_id": 3785960, "stop_desc": "AVENUE DE VILLENEUVE-SAINT-GEORGES - 94022", "stop_name": "AUBERGE DE LA JEUNESSE"}, "geometry": {"type": "Point", "coordinates": [2.422656023243349, 48.759341389996685]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "464562462accd8fdf930feee5b427b1c575262f4", "fields": {"departement": "94", "stop_lat": 48.75688544371052, "code_postal": "94078", "stop_lon": 2.4256426614690025, "coord": [48.75688544371052, 2.4256426614690025], "stop_id": 3785962, "stop_desc": "AVENUE DE CHOISY - 94078", "stop_name": "USINES RENAULT"}, "geometry": {"type": "Point", "coordinates": [2.4256426614690025, 48.75688544371052]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "04fa21aaabedcadd016736335a7f4151d3f51782", "fields": {"departement": "94", "stop_lat": 48.7484197724015, "code_postal": "94078", "stop_lon": 2.435563842442329, "coord": [48.7484197724015, 2.435563842442329], "stop_id": 3785969, "stop_desc": "AVENUE DE CHOISY - 94078", "stop_name": "MAIRIE ANNEXE"}, "geometry": {"type": "Point", "coordinates": [2.435563842442329, 48.7484197724015]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1bfef72f4e8b025fea9f338d8e67baa875f0dc52", "fields": {"departement": "94", "stop_lat": 48.79370731206612, "code_postal": "94081", "stop_lon": 2.400701898293865, "coord": [48.79370731206612, 2.400701898293865], "stop_id": 3785979, "stop_desc": "169 RUE GABRIEL PERI - 94081", "stop_name": "JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.400701898293865, 48.79370731206612]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3eab51cdc40e956ad0536f316fb5de31324cd884", "fields": {"departement": "94", "stop_lat": 48.78636349389331, "code_postal": "94081", "stop_lon": 2.4019850868098254, "coord": [48.78636349389331, 2.4019850868098254], "stop_id": 3785981, "stop_desc": "PLACE PAUL FROMENT - 94081", "stop_name": "PAUL FROMENT"}, "geometry": {"type": "Point", "coordinates": [2.4019850868098254, 48.78636349389331]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "82ee93122db1e32740373aa87ea35a5a5ef94d26", "fields": {"departement": "94", "stop_lat": 48.78284630525559, "code_postal": "94081", "stop_lon": 2.407108191901852, "coord": [48.78284630525559, 2.407108191901852], "stop_id": 3785983, "stop_desc": "131 RUE LEON GEFFROY - 94081", "stop_name": "LES ARDOINES RER"}, "geometry": {"type": "Point", "coordinates": [2.407108191901852, 48.78284630525559]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "120be4fa43be2bffcaefc33495a4ef542eae024d", "fields": {"departement": "94", "stop_lat": 48.777578551509244, "code_postal": "94081", "stop_lon": 2.4084474472519246, "coord": [48.777578551509244, 2.4084474472519246], "stop_id": 3785986, "stop_desc": "39 RUE LEON GEFFROY - 94081", "stop_name": "DESCARTES"}, "geometry": {"type": "Point", "coordinates": [2.4084474472519246, 48.777578551509244]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "86fb0ffa77e529c7867bb398677e5fa407e5abe9", "fields": {"departement": "94", "stop_lat": 48.76868024848463, "code_postal": "94022", "stop_lon": 2.408693597915253, "coord": [48.76868024848463, 2.408693597915253], "stop_id": 3785989, "stop_desc": "AVENUE DE LUGO - 94022", "stop_name": "8 MAI 1945"}, "geometry": {"type": "Point", "coordinates": [2.408693597915253, 48.76868024848463]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a59cc75904e268af9f6e53a793b59682659819ef", "fields": {"departement": "94", "stop_lat": 48.7669603900709, "code_postal": "94022", "stop_lon": 2.413735574615047, "coord": [48.7669603900709, 2.413735574615047], "stop_id": 3785991, "stop_desc": "AVENUE VICTOR HUGO - 94022", "stop_name": "PONT DE CHOISY"}, "geometry": {"type": "Point", "coordinates": [2.413735574615047, 48.7669603900709]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d712ef3584a92963dd6e2341d812b36fc7335bf5", "fields": {"departement": "75", "stop_lat": 48.81823187367253, "code_postal": "75113", "stop_lon": 2.3595343031703324, "coord": [48.81823187367253, 2.3595343031703324], "stop_id": 3786050, "stop_desc": "AVENUE DE LA PORTE D'ITALIE - 75113", "stop_name": "PORTE D'ITALIE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.3595343031703324, 48.81823187367253]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4214b7640279fad6fec4a5f0c5035a1a97e119d0", "fields": {"departement": "94", "stop_lat": 48.81225601159191, "code_postal": "94043", "stop_lon": 2.353475970789407, "coord": [48.81225601159191, 2.353475970789407], "stop_id": 3786057, "stop_desc": "FACE 56 RUE DE LA CONVENTION - 94043", "stop_name": "CONVENTION - JAURES"}, "geometry": {"type": "Point", "coordinates": [2.353475970789407, 48.81225601159191]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6b2f59cdb562b3eeaaf6f6eebfe2bbb697517f91", "fields": {"departement": "94", "stop_lat": 48.80519246039765, "code_postal": "94043", "stop_lon": 2.3451601222663663, "coord": [48.80519246039765, 2.3451601222663663], "stop_id": 3786060, "stop_desc": "169 RUE GABRIEL PERI - 94043", "stop_name": "TROIS COMMUNES"}, "geometry": {"type": "Point", "coordinates": [2.3451601222663663, 48.80519246039765]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "307fa55c3c9a9c3ca7cda864a838f345257f95f7", "fields": {"departement": "94", "stop_lat": 48.8000245336086, "code_postal": "94003", "stop_lon": 2.344002888128499, "coord": [48.8000245336086, 2.344002888128499], "stop_id": 3786062, "stop_desc": "AVENUE GABRIEL PERI - 94003", "stop_name": "QUATRE CHEMINS - PAULINE KERGOMARD"}, "geometry": {"type": "Point", "coordinates": [2.344002888128499, 48.8000245336086]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e7f8a13ff4e27c50be34571e4f09a26034c153f9", "fields": {"departement": "94", "stop_lat": 48.79736416717576, "code_postal": "94003", "stop_lon": 2.3433087095747847, "coord": [48.79736416717576, 2.3433087095747847], "stop_id": 3786063, "stop_desc": "FACE 14 AVENUE GABRIEL PERI - 94003", "stop_name": "COLONEL FABIEN"}, "geometry": {"type": "Point", "coordinates": [2.3433087095747847, 48.79736416717576]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "98ff59ed4126dafa29bfe461b6ad0f62f5016cc4", "fields": {"departement": "94", "stop_lat": 48.80542617482965, "code_postal": "94003", "stop_lon": 2.344670317551298, "coord": [48.80542617482965, 2.344670317551298], "stop_id": 3786069, "stop_desc": "0 AV GABRIEL PERI - 94003", "stop_name": "TROIS COMMUNES"}, "geometry": {"type": "Point", "coordinates": [2.344670317551298, 48.80542617482965]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "630c5ed06487ec392c36c3546f8fa5f0b9978136", "fields": {"departement": "94", "stop_lat": 48.79322971732497, "code_postal": "94016", "stop_lon": 2.343825159621149, "coord": [48.79322971732497, 2.343825159621149], "stop_id": 3786073, "stop_desc": "96-98 RUE GABRIEL PERI - 94016", "stop_name": "HAUTES BRUYERES"}, "geometry": {"type": "Point", "coordinates": [2.343825159621149, 48.79322971732497]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "66e35357cc6007d26b2be21a5095d6f0e2b26fe4", "fields": {"departement": "94", "stop_lat": 48.78488902766605, "code_postal": "94038", "stop_lon": 2.3416750994842728, "coord": [48.78488902766605, 2.3416750994842728], "stop_id": 3786076, "stop_desc": "68 RUE GABRIEL PERI - 94038", "stop_name": "BELVEDERE"}, "geometry": {"type": "Point", "coordinates": [2.3416750994842728, 48.78488902766605]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8837c5de5fa321ea2af0b5e50c48bd4b83b958c0", "fields": {"departement": "94", "stop_lat": 48.7812129615611, "code_postal": "94038", "stop_lon": 2.341389179488394, "coord": [48.7812129615611, 2.341389179488394], "stop_id": 3786077, "stop_desc": "53 AVENUE PAUL VAILLANT COUTURIER - 94038", "stop_name": "EUGENE VARLIN"}, "geometry": {"type": "Point", "coordinates": [2.341389179488394, 48.7812129615611]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a1665f36dacc37b47569084679e43749e72ee172", "fields": {"departement": "94", "stop_lat": 48.78017936047285, "code_postal": "94038", "stop_lon": 2.340885894880827, "coord": [48.78017936047285, 2.340885894880827], "stop_id": 3786078, "stop_desc": "58 BOULEVARD PAUL VAILLANT COUTURIER - 94038", "stop_name": "DE GAULLE - GOUNOD - TABANOU"}, "geometry": {"type": "Point", "coordinates": [2.340885894880827, 48.78017936047285]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "97155de96c3ddf91c6a53469a1db58eb1273e72f", "fields": {"departement": "94", "stop_lat": 48.814924301740824, "code_postal": "94043", "stop_lon": 2.3600092041705403, "coord": [48.814924301740824, 2.3600092041705403], "stop_id": 3786099, "stop_desc": "8 RUE DU GENERAL LECLERC - 94043", "stop_name": "PIERRE BROSSOLETTE"}, "geometry": {"type": "Point", "coordinates": [2.3600092041705403, 48.814924301740824]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8338d24377b699fb59c99175f05886747e82cea6", "fields": {"departement": "94", "stop_lat": 48.79736416717576, "code_postal": "94003", "stop_lon": 2.3433087095747847, "coord": [48.79736416717576, 2.3433087095747847], "stop_id": 3786108, "stop_desc": "FACE 14 AVENUE GABRIEL PERI - 94003", "stop_name": "COLONEL FABIEN"}, "geometry": {"type": "Point", "coordinates": [2.3433087095747847, 48.79736416717576]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1487278eae8277d2b11cb2856a4317198c8b38db", "fields": {"departement": "94", "stop_lat": 48.77886711314606, "code_postal": "94038", "stop_lon": 2.340926602240112, "coord": [48.77886711314606, 2.340926602240112], "stop_id": 3786125, "stop_desc": "BOULEVARD PAUL VAILLANT COUTURIER - 94038", "stop_name": "HENRI THIRARD - LEON JOUHAUX"}, "geometry": {"type": "Point", "coordinates": [2.340926602240112, 48.77886711314606]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "df796ff82a4b02c898ad33abdfbdd190183f8469", "fields": {"departement": "94", "stop_lat": 48.76991509860442, "code_postal": "94021", "stop_lon": 2.337526625367893, "coord": [48.76991509860442, 2.337526625367893], "stop_id": 3786130, "stop_desc": "96 BD JEAN MERMOZ - 94021", "stop_name": "CROIX DU SUD - CENTRE DE PNEUMOLOGIE"}, "geometry": {"type": "Point", "coordinates": [2.337526625367893, 48.76991509860442]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7c9775787cf54ddd0a048bd44ff4ae4743205c52", "fields": {"departement": "94", "stop_lat": 48.76992408524456, "code_postal": "94021", "stop_lon": 2.3378937546024634, "coord": [48.76992408524456, 2.3378937546024634], "stop_id": 3786131, "stop_desc": "FACE 88/92 BOULEVARD JEAN MERMOZ - 94021", "stop_name": "CROIX DU SUD - CENTRE DE PNEUMOLOGIE"}, "geometry": {"type": "Point", "coordinates": [2.3378937546024634, 48.76992408524456]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5590d0abd3d931785a081a0e856ab49d3aee94e7", "fields": {"departement": "94", "stop_lat": 48.75797868255833, "code_postal": "94034", "stop_lon": 2.3299545640695674, "coord": [48.75797868255833, 2.3299545640695674], "stop_id": 3786139, "stop_desc": "AVENUE DE STALINGRAD - 94034", "stop_name": "ROND-POINT ROOSEVELT"}, "geometry": {"type": "Point", "coordinates": [2.3299545640695674, 48.75797868255833]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "563d3babf4125112425a6b1c1be1d1b39e67c51a", "fields": {"departement": "92", "stop_lat": 48.86433506348356, "code_postal": "92063", "stop_lon": 2.1799461959180966, "coord": [48.86433506348356, 2.1799461959180966], "stop_id": 4024161, "stop_desc": "146 ROUTE DE L'EMPEREUR - 92063", "stop_name": "LYCEE DE RUEIL"}, "geometry": {"type": "Point", "coordinates": [2.1799461959180966, 48.86433506348356]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8addca33f8a9b09e27909476be40fb400d1b7e79", "fields": {"departement": "92", "stop_lat": 48.88097822577583, "code_postal": "92062", "stop_lon": 2.2368545622460583, "coord": [48.88097822577583, 2.2368545622460583], "stop_id": 4024174, "stop_desc": "29 R EUGENE EICHENBERGER - 92062", "stop_name": "WALLACE - JAURES"}, "geometry": {"type": "Point", "coordinates": [2.2368545622460583, 48.88097822577583]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0b4ffd0f3e4e5e87cfffb2331217decd5d77f79d", "fields": {"departement": "92", "stop_lat": 48.86795761753568, "code_postal": "92073", "stop_lon": 2.228883016225569, "coord": [48.86795761753568, 2.228883016225569], "stop_id": 4024182, "stop_desc": "15 QUAI GALLIENI - 92073", "stop_name": "PONT DE SURESNES"}, "geometry": {"type": "Point", "coordinates": [2.228883016225569, 48.86795761753568]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e1f87c4933057736233689a2ece1ec63ed01ccf3", "fields": {"departement": "92", "stop_lat": 48.89203464280857, "code_postal": "92062", "stop_lon": 2.239422734486871, "coord": [48.89203464280857, 2.239422734486871], "stop_id": 4024197, "stop_desc": "AVENUE PERRONET NORD - 92062", "stop_name": "LA DEFENSE-METRO-RER-TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.239422734486871, 48.89203464280857]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b7bacac9203ea4c1a68e5fbf4fbbc3743e4ba1ca", "fields": {"departement": "92", "stop_lat": 48.88422463646071, "code_postal": "92062", "stop_lon": 2.239273946170175, "coord": [48.88422463646071, 2.239273946170175], "stop_id": 4024200, "stop_desc": "FACE 14 RUE ANATOLE FRANCE - 92062", "stop_name": "MAIRIE - ANATOLE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.239273946170175, 48.88422463646071]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9c0889b0dd23ec40d413266625ba53904e25c289", "fields": {"departement": "92", "stop_lat": 48.882606688350634, "code_postal": "92062", "stop_lon": 2.2389772115482813, "coord": [48.882606688350634, 2.2389772115482813], "stop_id": 4024201, "stop_desc": "69 RUE EUGENE EICHENBERGER - 92062", "stop_name": "MARCHE DE PUTEAUX"}, "geometry": {"type": "Point", "coordinates": [2.2389772115482813, 48.882606688350634]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "02afd0d695ee4ae15d430c0e9c4656942a50cabf", "fields": {"departement": "92", "stop_lat": 48.87992568956772, "code_postal": "92062", "stop_lon": 2.2356438653396578, "coord": [48.87992568956772, 2.2356438653396578], "stop_id": 4024203, "stop_desc": "FACE 4 RUE EUGENE EICHENBERGER - 92062", "stop_name": "BAS ROGERS"}, "geometry": {"type": "Point", "coordinates": [2.2356438653396578, 48.87992568956772]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "10cca868f5e42d3ed9669fb76af70601a6793860", "fields": {"departement": "92", "stop_lat": 48.8686811982289, "code_postal": "92073", "stop_lon": 2.2241542232486085, "coord": [48.8686811982289, 2.2241542232486085], "stop_id": 4024211, "stop_desc": "14 AVENUE DU GENERAL DE GAULLE - 92073", "stop_name": "SURESNES DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.2241542232486085, 48.8686811982289]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2dd62af4ea56dc065c6c31db86e176a40c6b2931", "fields": {"departement": "92", "stop_lat": 48.862932246409954, "code_postal": "92073", "stop_lon": 2.2179824740747285, "coord": [48.862932246409954, 2.2179824740747285], "stop_id": 4024214, "stop_desc": "124 BOULEVARD HENRI SELLIER - 92073", "stop_name": "GARIBALDI"}, "geometry": {"type": "Point", "coordinates": [2.2179824740747285, 48.862932246409954]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4451908ab087155499c17ee5c0e635cef0d982cf", "fields": {"departement": "92", "stop_lat": 48.85982860172332, "code_postal": "92073", "stop_lon": 2.215033862640823, "coord": [48.85982860172332, 2.215033862640823], "stop_id": 4024217, "stop_desc": "171 BOULEVARD HENRI SELLIER - 92073", "stop_name": "VAL D'OR"}, "geometry": {"type": "Point", "coordinates": [2.215033862640823, 48.85982860172332]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "31d8dd61a1c591dc5a1e0e369234e1e45d3d0217", "fields": {"departement": "92", "stop_lat": 48.86319660513627, "code_postal": "92073", "stop_lon": 2.2045098559791145, "coord": [48.86319660513627, 2.2045098559791145], "stop_id": 4024223, "stop_desc": "1 AVENUE G.STRESEMANN - 92073", "stop_name": "STRESEMANN"}, "geometry": {"type": "Point", "coordinates": [2.2045098559791145, 48.86319660513627]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "85df2017d17099e142ca11e93f6f76d5f4af626f", "fields": {"departement": "92", "stop_lat": 48.86786647303717, "code_postal": "92063", "stop_lon": 2.19368117495212, "coord": [48.86786647303717, 2.19368117495212], "stop_id": 4024228, "stop_desc": "66 AVENUE DU 18 JUIN 1940 - 92063", "stop_name": "DUNANT"}, "geometry": {"type": "Point", "coordinates": [2.19368117495212, 48.86786647303717]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4666d7e050aeab4bc100e7413f224a627b9d32f3", "fields": {"departement": "92", "stop_lat": 48.86922348937091, "code_postal": "92063", "stop_lon": 2.1863480066905185, "coord": [48.86922348937091, 2.1863480066905185], "stop_id": 4024229, "stop_desc": "77 BOULEVARD RICHELIEU - 92063", "stop_name": "PLACE BESCHE"}, "geometry": {"type": "Point", "coordinates": [2.1863480066905185, 48.86922348937091]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fc8459ab4e0f81243a3685736834c332c95677a6", "fields": {"departement": "92", "stop_lat": 48.86881105341226, "code_postal": "92063", "stop_lon": 2.1871257369875647, "coord": [48.86881105341226, 2.1871257369875647], "stop_id": 4024230, "stop_desc": "4 AVENUE DU 18 JUIN 1940 - 92063", "stop_name": "PLACE BESCHE"}, "geometry": {"type": "Point", "coordinates": [2.1871257369875647, 48.86881105341226]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f64c99c652d088b5fec9d9a191f9bdc987313255", "fields": {"departement": "92", "stop_lat": 48.874126741811956, "code_postal": "92063", "stop_lon": 2.183349919170164, "coord": [48.874126741811956, 2.183349919170164], "stop_id": 4024233, "stop_desc": "FACE 42 BOULEVARD DE SOLFERINO - 92063", "stop_name": "PLACE RICHELIEU"}, "geometry": {"type": "Point", "coordinates": [2.183349919170164, 48.874126741811956]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5d9a0f0ba45600fad69a0273bdc4229a1d010ad9", "fields": {"departement": "92", "stop_lat": 48.87793600364932, "code_postal": "92063", "stop_lon": 2.182303054994718, "coord": [48.87793600364932, 2.182303054994718], "stop_id": 4024236, "stop_desc": "27 RUE MAUREPAS - 92063", "stop_name": "MAIRIE DE RUEIL"}, "geometry": {"type": "Point", "coordinates": [2.182303054994718, 48.87793600364932]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5de8ef89330428bd06937f5b5cd624d849e9f7f0", "fields": {"departement": "92", "stop_lat": 48.886365678062774, "code_postal": "92063", "stop_lon": 2.1752594614655605, "coord": [48.886365678062774, 2.1752594614655605], "stop_id": 4024241, "stop_desc": "62 AVENUE VICTOR HUGO - 92063", "stop_name": "COLMAR"}, "geometry": {"type": "Point", "coordinates": [2.1752594614655605, 48.886365678062774]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dbb26322985a2f01c452dd6be09c3f9eb2bbe201", "fields": {"departement": "91", "stop_lat": 48.72944630440988, "code_postal": "91479", "stop_lon": 2.367824958469993, "coord": [48.72944630440988, 2.367824958469993], "stop_id": 4439583, "stop_desc": "ROUTE NATIONALE 7 - 91479", "stop_name": "AEROGARE D'ORLY SUD"}, "geometry": {"type": "Point", "coordinates": [2.367824958469993, 48.72944630440988]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0caeffac6a25514d498cd2b94a9a40b8acde2980", "fields": {"departement": "91", "stop_lat": 48.714776333210814, "code_postal": "91027", "stop_lon": 2.3712120754283355, "coord": [48.714776333210814, 2.3712120754283355], "stop_id": 4439585, "stop_desc": "PISTE GARE ROUTIERE - 91027", "stop_name": "PORTE DE L'ESSONNE"}, "geometry": {"type": "Point", "coordinates": [2.3712120754283355, 48.714776333210814]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4c37e7b7e1e921f7b2a289a9481ae8738ec04eaa", "fields": {"departement": "91", "stop_lat": 48.68892529439915, "code_postal": "91326", "stop_lon": 2.371317390654125, "coord": [48.68892529439915, 2.371317390654125], "stop_id": 4439599, "stop_desc": "18-20 AVENUE DE LA COUR DE FRANCE - 91326", "stop_name": "PIVER"}, "geometry": {"type": "Point", "coordinates": [2.371317390654125, 48.68892529439915]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aadc4e3798a8a9b6beac736200da32c14ebfce28", "fields": {"departement": "91", "stop_lat": 48.69082994236396, "code_postal": "91326", "stop_lon": 2.3744412809792466, "coord": [48.69082994236396, 2.3744412809792466], "stop_id": 4439604, "stop_desc": "FACE 3 RUE PIVER - 91326", "stop_name": "HOPITAL DE JUVISY"}, "geometry": {"type": "Point", "coordinates": [2.3744412809792466, 48.69082994236396]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a81e4d8339c9c586901d8a1f7a3ff0c2f959e57f", "fields": {"departement": "91", "stop_lat": 48.69847991744048, "code_postal": "91027", "stop_lon": 2.372151947688958, "coord": [48.69847991744048, 2.372151947688958], "stop_id": 4439605, "stop_desc": "10 AV FRANCOIS MITTERRAND - 91027", "stop_name": "PYRAMIDE DE JUVISY"}, "geometry": {"type": "Point", "coordinates": [2.372151947688958, 48.69847991744048]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2811cf278da26204c12b09db540e2d3d96720f37", "fields": {"departement": "94", "stop_lat": 48.728879688960305, "code_postal": "94054", "stop_lon": 2.369156116527317, "coord": [48.728879688960305, 2.369156116527317], "stop_id": 4439607, "stop_desc": "AEROPORT D'ORLY - 94054", "stop_name": "AEROPORT D'ORLY-TERMINAL SUD"}, "geometry": {"type": "Point", "coordinates": [2.369156116527317, 48.728879688960305]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8d6d78bee6256bd21ac15bba8773de7ab1464b0a", "fields": {"departement": "94", "stop_lat": 48.77178962568978, "code_postal": "94081", "stop_lon": 2.367999452823662, "coord": [48.77178962568978, 2.367999452823662], "stop_id": 4439616, "stop_desc": "ROUTE DE FONTAINEBLEAU - 94081", "stop_name": "MOULIN VERT"}, "geometry": {"type": "Point", "coordinates": [2.367999452823662, 48.77178962568978]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4fd5c2e87f30fcf802732bc937354f9ff51404f3", "fields": {"departement": "94", "stop_lat": 48.777955508065254, "code_postal": "94081", "stop_lon": 2.367608717505563, "coord": [48.777955508065254, 2.367608717505563], "stop_id": 4439617, "stop_desc": "ROUTE DE FONTAINEBLEAU - 94081", "stop_name": "ECOLE DEPARTEMENTALE"}, "geometry": {"type": "Point", "coordinates": [2.367608717505563, 48.777955508065254]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4f41f36cfabb828adb3b8345087b8e8f16e52985", "fields": {"departement": "75", "stop_lat": 48.83725093710796, "code_postal": "75105", "stop_lon": 2.3516729882807454, "coord": [48.83725093710796, 2.3516729882807454], "stop_id": 4439620, "stop_desc": "21 AVENUE DES GOBELINS - 75105", "stop_name": "LES GOBELINS"}, "geometry": {"type": "Point", "coordinates": [2.3516729882807454, 48.83725093710796]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f33582323f0fce9741aa45ff6d6c76f9fd8d3bed", "fields": {"departement": "75", "stop_lat": 48.85258403108319, "code_postal": "75105", "stop_lon": 2.348000108567692, "coord": [48.85258403108319, 2.348000108567692], "stop_id": 4439622, "stop_desc": "QUAI DE MONTEBELLO - 75105", "stop_name": "NOTRE-DAME - QUAI DE MONTEBELLO"}, "geometry": {"type": "Point", "coordinates": [2.348000108567692, 48.85258403108319]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "45bd4ad7036ad81e131a9041a98fe6289c4bdd30", "fields": {"departement": "92", "stop_lat": 48.808084076745295, "code_postal": "92048", "stop_lon": 2.2413226844090564, "coord": [48.808084076745295, 2.2413226844090564], "stop_id": 4458753, "stop_desc": "22 PLACE HENRI BROUSSE - 92048", "stop_name": "VAL FLEURY RER"}, "geometry": {"type": "Point", "coordinates": [2.2413226844090564, 48.808084076745295]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "50b6a8cecae5163940e56430417c7fbdbf2c92ab", "fields": {"departement": "92", "stop_lat": 48.80768631860821, "code_postal": "92023", "stop_lon": 2.2500184692424225, "coord": [48.80768631860821, 2.2500184692424225], "stop_id": 4458755, "stop_desc": "FACE 92 AVENUE SCHNEIDER - 92023", "stop_name": "RUE DES PEUPLIERS"}, "geometry": {"type": "Point", "coordinates": [2.2500184692424225, 48.80768631860821]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "867d354ad724967569893176567756fb9cc21fcd", "fields": {"departement": "92", "stop_lat": 48.798192601376755, "code_postal": "92007", "stop_lon": 2.294753345283415, "coord": [48.798192601376755, 2.294753345283415], "stop_id": 4458768, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 92007", "stop_name": "LIBERTE"}, "geometry": {"type": "Point", "coordinates": [2.294753345283415, 48.798192601376755]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "18d46e3d3e36c5faf0d3a604d98780cf4e7f18f4", "fields": {"departement": "92", "stop_lat": 48.795525376089955, "code_postal": "92007", "stop_lon": 2.3013399041826292, "coord": [48.795525376089955, 2.3013399041826292], "stop_id": 4458769, "stop_desc": "FACE 10 RUE DE LA REPUBLIQUE - 92007", "stop_name": "DAMPIERRE"}, "geometry": {"type": "Point", "coordinates": [2.3013399041826292, 48.795525376089955]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a3224536c3ba8833057acaa5602b73a78699c4b6", "fields": {"departement": "92", "stop_lat": 48.796864844005626, "code_postal": "92007", "stop_lon": 2.3022640792634257, "coord": [48.796864844005626, 2.3022640792634257], "stop_id": 4458770, "stop_desc": "AVENUE GABRIEL PERI - 92007", "stop_name": "ROSENBERG"}, "geometry": {"type": "Point", "coordinates": [2.3022640792634257, 48.796864844005626]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "73eb95bce6e37207a03c1f1fb73c6edb951329f8", "fields": {"departement": "94", "stop_lat": 48.80061786069688, "code_postal": "94003", "stop_lon": 2.3334179522173053, "coord": [48.80061786069688, 2.3334179522173053], "stop_id": 4458781, "stop_desc": "FACE 7 AVENUE DE LA CONVENTION - 94003", "stop_name": "CITE JARDINS"}, "geometry": {"type": "Point", "coordinates": [2.3334179522173053, 48.80061786069688]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "63980aad06fc5f29a5c2910b2f1944e5916906d9", "fields": {"departement": "94", "stop_lat": 48.799853818134736, "code_postal": "94003", "stop_lon": 2.3429824748040686, "coord": [48.799853818134736, 2.3429824748040686], "stop_id": 4458784, "stop_desc": "74 AVENUE PAUL VAILLANT COUTURIER - 94003", "stop_name": "QUATRE CHEMINS"}, "geometry": {"type": "Point", "coordinates": [2.3429824748040686, 48.799853818134736]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1abe42c651a5d67ed33ba68bf9290ce9dd0b16c8", "fields": {"departement": "94", "stop_lat": 48.79738175837985, "code_postal": "94076", "stop_lon": 2.3485736792117518, "coord": [48.79738175837985, 2.3485736792117518], "stop_id": 4458785, "stop_desc": "FACE 80 AVENUE DU PRESIDENT ALLENDE - 94076", "stop_name": "BELVEDERE"}, "geometry": {"type": "Point", "coordinates": [2.3485736792117518, 48.79738175837985]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8b8ff9f5f3b1c52710473680a7ee1f1a7e96a1f1", "fields": {"departement": "94", "stop_lat": 48.79549098679747, "code_postal": "94076", "stop_lon": 2.3675509480989887, "coord": [48.79549098679747, 2.3675509480989887], "stop_id": 4458789, "stop_desc": "1-3 BOULEVARD PAUL VAILLANT COUTURIER - 94076", "stop_name": "PAUL VAILLANT-COUTURIER-METRO"}, "geometry": {"type": "Point", "coordinates": [2.3675509480989887, 48.79549098679747]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f1176b56f76fda76511d67e19025ab1ac0f21cfa", "fields": {"departement": "94", "stop_lat": 48.79554496238662, "code_postal": "94076", "stop_lon": 2.3673605223725263, "coord": [48.79554496238662, 2.3673605223725263], "stop_id": 4458795, "stop_desc": "14 BOULEVARD PAUL VAILLANT COUTURIER - 94076", "stop_name": "PAUL VAILLANT-COUTURIER-METRO"}, "geometry": {"type": "Point", "coordinates": [2.3673605223725263, 48.79554496238662]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "34268279dace14731b4478da586a5ed3dbecfe06", "fields": {"departement": "94", "stop_lat": 48.797013620831194, "code_postal": "94016", "stop_lon": 2.3308197644314563, "coord": [48.797013620831194, 2.3308197644314563], "stop_id": 4458805, "stop_desc": "2 AVENUE CARNOT - 94016", "stop_name": "WILSON - PROVIGNY"}, "geometry": {"type": "Point", "coordinates": [2.3308197644314563, 48.797013620831194]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5cef44e9ff627196466bad2c533bcec8f0354221", "fields": {"departement": "94", "stop_lat": 48.797786452797745, "code_postal": "94016", "stop_lon": 2.328833386377222, "coord": [48.797786452797745, 2.328833386377222], "stop_id": 4458806, "stop_desc": "28 AVENUE CARNOT - 94016", "stop_name": "ARCUEIL-CACHAN RER"}, "geometry": {"type": "Point", "coordinates": [2.328833386377222, 48.797786452797745]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8768867784749d808183c422a5ef3299ee5f2319", "fields": {"departement": "92", "stop_lat": 48.80182791343605, "code_postal": "92023", "stop_lon": 2.265987844077671, "coord": [48.80182791343605, 2.265987844077671], "stop_id": 4458821, "stop_desc": "FACE 7 RUE PAUL VAILLANT COUTURIER - 92023", "stop_name": "MARCHE DE CLAMART"}, "geometry": {"type": "Point", "coordinates": [2.265987844077671, 48.80182791343605]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2eca56e98b3c6e5978974a7c4c93ebcfc5490e84", "fields": {"departement": "92", "stop_lat": 48.807015052712465, "code_postal": "92023", "stop_lon": 2.25395204894889, "coord": [48.807015052712465, 2.25395204894889], "stop_id": 4458824, "stop_desc": "60-62 AVENUE ADOLPHE SCHNEIDER - 92023", "stop_name": "VALLEE DU BOIS"}, "geometry": {"type": "Point", "coordinates": [2.25395204894889, 48.807015052712465]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f7956c95f08f0344dbbd805f1ab250743e4cde5f", "fields": {"departement": "92", "stop_lat": 48.81009224978225, "code_postal": "92048", "stop_lon": 2.2462858598334625, "coord": [48.81009224978225, 2.2462858598334625], "stop_id": 4458828, "stop_desc": "2 RUE HENRI BARBUSSE - 92048", "stop_name": "PAUL BERT"}, "geometry": {"type": "Point", "coordinates": [2.2462858598334625, 48.81009224978225]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5573581917cefb8dc0189b133ee1537cd21140f2", "fields": {"departement": "92", "stop_lat": 48.89255739632826, "code_postal": "92044", "stop_lon": 2.2844674313920343, "coord": [48.89255739632826, 2.2844674313920343], "stop_id": 4459234, "stop_desc": "77 RUE ANATOLE FRANCE - 92044", "stop_name": "ANATOLE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.2844674313920343, 48.89255739632826]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "78001009590520d65b8cb89179abdb032c2cfb52", "fields": {"departement": "75", "stop_lat": 48.88467202320553, "code_postal": "75117", "stop_lon": 2.2984981372138416, "coord": [48.88467202320553, 2.2984981372138416], "stop_id": 4459236, "stop_desc": "FACE 106 AVENUE DE VILLIERS - 75117", "stop_name": "PEREIRE-LE CHATELIER"}, "geometry": {"type": "Point", "coordinates": [2.2984981372138416, 48.88467202320553]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0e5aadd5b31c0b457d4cd5687951881615700eb4", "fields": {"departement": "75", "stop_lat": 48.8645556407801, "code_postal": "75101", "stop_lon": 2.3425264691880536, "coord": [48.8645556407801, 2.3425264691880536], "stop_id": 4459248, "stop_desc": "19 RUE DU LOUVRE - 75101", "stop_name": "LOUVRE - ETIENNE MARCEL"}, "geometry": {"type": "Point", "coordinates": [2.3425264691880536, 48.8645556407801]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a384df8c4eb81d4d41fa2786ea65b762478cef58", "fields": {"departement": "75", "stop_lat": 48.86330642060076, "code_postal": "75101", "stop_lon": 2.341913358368381, "coord": [48.86330642060076, 2.341913358368381], "stop_id": 4459249, "stop_desc": "15 RUE DU LOUVRE - 75101", "stop_name": "COQUILLIERE - LES HALLES"}, "geometry": {"type": "Point", "coordinates": [2.341913358368381, 48.86330642060076]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bce34de92ca3f4511ae7cf07d164269af25db615", "fields": {"departement": "75", "stop_lat": 48.858057701289326, "code_postal": "75101", "stop_lon": 2.343560965223396, "coord": [48.858057701289326, 2.343560965223396], "stop_id": 4459251, "stop_desc": "FACE 22 QUAI DE LA MEGISSERIE - 75101", "stop_name": "PONT NEUF - QUAI DU LOUVRE"}, "geometry": {"type": "Point", "coordinates": [2.343560965223396, 48.858057701289326]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1868f8d28039fe5ca230b56f2e71abb535ef3d60", "fields": {"departement": "75", "stop_lat": 48.8571764094318, "code_postal": "75104", "stop_lon": 2.35008495875021, "coord": [48.8571764094318, 2.35008495875021], "stop_id": 4459253, "stop_desc": "6 AVENUE VICTORIA - 75104", "stop_name": "HOTEL DE VILLE"}, "geometry": {"type": "Point", "coordinates": [2.35008495875021, 48.8571764094318]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c56b5c0a8af68ef1bd291d158cedb35adc7fcf13", "fields": {"departement": "75", "stop_lat": 48.848426890902694, "code_postal": "75112", "stop_lon": 2.373151610559424, "coord": [48.848426890902694, 2.373151610559424], "stop_id": 4459261, "stop_desc": "15 AVENUE DAUMESNIL - 75112", "stop_name": "DAUMESNIL - LEDRU ROLLIN"}, "geometry": {"type": "Point", "coordinates": [2.373151610559424, 48.848426890902694]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5fba5bcbb935e38325fdaec4e472a70e953837b6", "fields": {"departement": "75", "stop_lat": 48.85309905314883, "code_postal": "75111", "stop_lon": 2.377308694993932, "coord": [48.85309905314883, 2.377308694993932], "stop_id": 4459263, "stop_desc": "114 AVENUE LEDRU ROLLIN - 75111", "stop_name": "CHARONNE - KELLER"}, "geometry": {"type": "Point", "coordinates": [2.377308694993932, 48.85309905314883]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ebd7d56bf024b1dc275848e5f0ebf5f084f15935", "fields": {"departement": "75", "stop_lat": 48.85875832342004, "code_postal": "75111", "stop_lon": 2.384954261522689, "coord": [48.85875832342004, 2.384954261522689], "stop_id": 4459266, "stop_desc": "166 RUE DE LA ROQUETTE - 75111", "stop_name": "SAINT-MAUR - SERVAN"}, "geometry": {"type": "Point", "coordinates": [2.384954261522689, 48.85875832342004]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cd158a9b841f102fe16f82743aa64514e8ffe820", "fields": {"departement": "75", "stop_lat": 48.86045533777064, "code_postal": "75120", "stop_lon": 2.388810598217526, "coord": [48.86045533777064, 2.388810598217526], "stop_id": 4459267, "stop_desc": "FACE 27 BOULEVARD DE MENILMONTANT - 75120", "stop_name": "ROQUETTE - PERE LACHAISE"}, "geometry": {"type": "Point", "coordinates": [2.388810598217526, 48.86045533777064]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3375df96777e3ec015623c1e9f2d6e4b6be724ca", "fields": {"departement": "75", "stop_lat": 48.86465476793721, "code_postal": "75120", "stop_lon": 2.4024233712222123, "coord": [48.86465476793721, 2.4024233712222123], "stop_id": 4459272, "stop_desc": "50 RUE BELGRAND - 75120", "stop_name": "PELLEPORT"}, "geometry": {"type": "Point", "coordinates": [2.4024233712222123, 48.86465476793721]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "31240bd9c4d26eed41e8d7b94374547c87972b1f", "fields": {"departement": "75", "stop_lat": 48.86488327520136, "code_postal": "75120", "stop_lon": 2.41126451915231, "coord": [48.86488327520136, 2.41126451915231], "stop_id": 4459274, "stop_desc": "7 AVENUE CARTELLIER - 75120", "stop_name": "ECHANGEUR DE BAGNOLET"}, "geometry": {"type": "Point", "coordinates": [2.41126451915231, 48.86488327520136]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "74f98a24f024d57b5740c5b6af4c4b91c68c485e", "fields": {"departement": "93", "stop_lat": 48.86019450396544, "code_postal": "93006", "stop_lon": 2.420847047944098, "coord": [48.86019450396544, 2.420847047944098], "stop_id": 4459276, "stop_desc": "82 AVENUE DE LA REPUBLIQUE - 93006", "stop_name": "REPUBLIQUE - ROBESPIERRE"}, "geometry": {"type": "Point", "coordinates": [2.420847047944098, 48.86019450396544]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0530be8a4022f7b5afbadd57d4a3efab5e7aae03", "fields": {"departement": "93", "stop_lat": 48.86242440102482, "code_postal": "93048", "stop_lon": 2.442263860889917, "coord": [48.86242440102482, 2.442263860889917], "stop_id": 4459282, "stop_desc": "FACE 5 PLACE JEAN JAURES - 93048", "stop_name": "MAIRIE DE MONTREUIL"}, "geometry": {"type": "Point", "coordinates": [2.442263860889917, 48.86242440102482]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5c8cf488678b96da7f86a6b4ebe08fb87aea643c", "fields": {"departement": "75", "stop_lat": 48.8307411075395, "code_postal": "75113", "stop_lon": 2.3668636373891108, "coord": [48.8307411075395, 2.3668636373891108], "stop_id": 4471737, "stop_desc": "51 RUE JEANNE D'ARC - 75113", "stop_name": "CLISSON"}, "geometry": {"type": "Point", "coordinates": [2.3668636373891108, 48.8307411075395]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b5709348ea631a861c56b8db0f76290da506ecff", "fields": {"departement": "94", "stop_lat": 48.81261202112399, "code_postal": "94041", "stop_lon": 2.370364304450868, "coord": [48.81261202112399, 2.370364304450868], "stop_id": 4471744, "stop_desc": "40 AVENUE DE VERDUN - 94041", "stop_name": "CIMETIERE PARISIEN - PLACE DU GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.370364304450868, 48.81261202112399]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a8edab5df9c1d88c30cb383c08bde8cfd5c46bd4", "fields": {"departement": "94", "stop_lat": 48.80558194626264, "code_postal": "94041", "stop_lon": 2.3757889011211692, "coord": [48.80558194626264, 2.3757889011211692], "stop_id": 4471746, "stop_desc": "183 BOULEVARD DE STALINGRAD - 94041", "stop_name": "LA BRIQUETERIE"}, "geometry": {"type": "Point", "coordinates": [2.3757889011211692, 48.80558194626264]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3e38ddab5faf071433ddd262f025f3f2800cdf2a", "fields": {"departement": "94", "stop_lat": 48.79466763030436, "code_postal": "94081", "stop_lon": 2.3843376284366515, "coord": [48.79466763030436, 2.3843376284366515], "stop_id": 4471750, "stop_desc": "21 AVENUE EUGENE PELLETAN - 94081", "stop_name": "CHARLES INFROIT"}, "geometry": {"type": "Point", "coordinates": [2.3843376284366515, 48.79466763030436]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e6e90d7af11f0cda5c75dec2a581c23bc60592e2", "fields": {"departement": "94", "stop_lat": 48.77782774908302, "code_postal": "94081", "stop_lon": 2.3965618686800885, "coord": [48.77782774908302, 2.3965618686800885], "stop_id": 4471755, "stop_desc": "73 AVENUE ROUGET DE L'ISLE - 94081", "stop_name": "LES PLATRIERES"}, "geometry": {"type": "Point", "coordinates": [2.3965618686800885, 48.77782774908302]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2a10f1b23d84d4d59904c54bd45e13c176ee0c40", "fields": {"departement": "94", "stop_lat": 48.76091523800913, "code_postal": "94022", "stop_lon": 2.4075137501114936, "coord": [48.76091523800913, 2.4075137501114936], "stop_id": 4471760, "stop_desc": "22 AVENUE DE LA REPUBLIQUE - 94022", "stop_name": "WALDECK ROUSSEAU"}, "geometry": {"type": "Point", "coordinates": [2.4075137501114936, 48.76091523800913]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1fd96a7d4be23bf8e8893c05fe1e401d5153ef70", "fields": {"departement": "94", "stop_lat": 48.74641958097029, "code_postal": "94054", "stop_lon": 2.3848103885660987, "coord": [48.74641958097029, 2.3848103885660987], "stop_id": 4471771, "stop_desc": "RUE DU BAS MARIN - 94054", "stop_name": "RUE DES QUINZE ARPENTS"}, "geometry": {"type": "Point", "coordinates": [2.3848103885660987, 48.74641958097029]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5be4a18fc8cdd36929590df482f9ed904526730e", "fields": {"departement": "91", "stop_lat": 48.743999221580665, "code_postal": "91479", "stop_lon": 2.364191237891829, "coord": [48.743999221580665, 2.364191237891829], "stop_id": 4471782, "stop_desc": "ROUTE NATIONALE 7 - 91479", "stop_name": "PARAY-VIEILLE-POSTE PONT DE RUNGIS"}, "geometry": {"type": "Point", "coordinates": [2.364191237891829, 48.743999221580665]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b18fb8ad156ecfc16ad63f7d24f3bff7e36e5aa9", "fields": {"departement": "91", "stop_lat": 48.74352272051869, "code_postal": "91479", "stop_lon": 2.3647346098291497, "coord": [48.74352272051869, 2.3647346098291497], "stop_id": 4471783, "stop_desc": "ROUTE NUMERO 5 - 91479", "stop_name": "HANGAR N 6"}, "geometry": {"type": "Point", "coordinates": [2.3647346098291497, 48.74352272051869]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "817f34c35db5ff3b8050188ff2b6e631c7b7aedb", "fields": {"departement": "91", "stop_lat": 48.736834210108675, "code_postal": "91479", "stop_lon": 2.369663780810606, "coord": [48.736834210108675, 2.369663780810606], "stop_id": 4471784, "stop_desc": "AVENUE DE L'EUROPE - 91479", "stop_name": "CAROLINE AIGLE"}, "geometry": {"type": "Point", "coordinates": [2.369663780810606, 48.736834210108675]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "89c0fdbaa5b59d98d0cf6ae330fbccb20d63e01a", "fields": {"departement": "94", "stop_lat": 48.728879688960305, "code_postal": "94054", "stop_lon": 2.369156116527317, "coord": [48.728879688960305, 2.369156116527317], "stop_id": 4471787, "stop_desc": "AEROPORT D'ORLY - 94054", "stop_name": "AEROPORT D'ORLY-TERMINAL SUD"}, "geometry": {"type": "Point", "coordinates": [2.369156116527317, 48.728879688960305]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "df6340508ae2deb9594a4b7d2ba00257cf1ae042", "fields": {"departement": "94", "stop_lat": 48.76378088217269, "code_postal": "94073", "stop_lon": 2.3694086738771816, "coord": [48.76378088217269, 2.3694086738771816], "stop_id": 4471795, "stop_desc": "ESPLANADE AUGUSTE PERRET - 94073", "stop_name": "AUGUSTE PERRET"}, "geometry": {"type": "Point", "coordinates": [2.3694086738771816, 48.76378088217269]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fb9a2797cae93dbbc9c0b24c93aea3818a8a839b", "fields": {"departement": "94", "stop_lat": 48.74743363015079, "code_postal": "94054", "stop_lon": 2.388698484405287, "coord": [48.74743363015079, 2.388698484405287], "stop_id": 4471801, "stop_desc": "RUE DU BAS MARIN - 94054", "stop_name": "RUE DU PUITS DIXME"}, "geometry": {"type": "Point", "coordinates": [2.388698484405287, 48.74743363015079]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "77704d281663de3b8f4755d64e1ca9e958dd8f37", "fields": {"departement": "94", "stop_lat": 48.74457500601486, "code_postal": "94054", "stop_lon": 2.4070431683026823, "coord": [48.74457500601486, 2.4070431683026823], "stop_id": 4471806, "stop_desc": "58 AVENUE ADRIEN RAYNAL - 94054", "stop_name": "FER A CHEVAL"}, "geometry": {"type": "Point", "coordinates": [2.4070431683026823, 48.74457500601486]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bd24e0f529ff3b3319964eecfa31fc15c069ad18", "fields": {"departement": "94", "stop_lat": 48.77392550845496, "code_postal": "94022", "stop_lon": 2.399385886820018, "coord": [48.77392550845496, 2.399385886820018], "stop_id": 4471817, "stop_desc": "124 BOULEVARD DE STALINGRAD - 94022", "stop_name": "TROIS COMMUNES"}, "geometry": {"type": "Point", "coordinates": [2.399385886820018, 48.77392550845496]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "708a89fca2331d006db1dbb8f1fd714b5ae21e35", "fields": {"departement": "94", "stop_lat": 48.80417032541045, "code_postal": "94041", "stop_lon": 2.3774070087558283, "coord": [48.80417032541045, 2.3774070087558283], "stop_id": 4471826, "stop_desc": "148 BOULEVARD DE STALINGRAD - 94041", "stop_name": "CENTRE BUS DE VITRY"}, "geometry": {"type": "Point", "coordinates": [2.3774070087558283, 48.80417032541045]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c6ea1e28d31c4177d3862abc9973bac95f9134f7", "fields": {"departement": "94", "stop_lat": 48.80922268950512, "code_postal": "94041", "stop_lon": 2.373600768521272, "coord": [48.80922268950512, 2.373600768521272], "stop_id": 4471828, "stop_desc": "73 AVENUE DE VERDUN - 94041", "stop_name": "CARNOT"}, "geometry": {"type": "Point", "coordinates": [2.373600768521272, 48.80922268950512]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7e7d717dbb4b8b2972e7367091fc55aa8835449a", "fields": {"departement": "75", "stop_lat": 48.83159511832635, "code_postal": "75113", "stop_lon": 2.366101766585164, "coord": [48.83159511832635, 2.366101766585164], "stop_id": 4471837, "stop_desc": "64 RUE JEANNE D'ARC - 75113", "stop_name": "CLISSON"}, "geometry": {"type": "Point", "coordinates": [2.366101766585164, 48.83159511832635]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5d8356855fa3b2dc51ab2d5322c04cfe75cda001", "fields": {"departement": "75", "stop_lat": 48.83315989310514, "code_postal": "75113", "stop_lon": 2.361963996197848, "coord": [48.83315989310514, 2.361963996197848], "stop_id": 4471838, "stop_desc": "FACE 145 BOULEVARD VINCENT AURIOL - 75113", "stop_name": "NATIONALE"}, "geometry": {"type": "Point", "coordinates": [2.361963996197848, 48.83315989310514]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "34b4abe34fe1088de1e81b984e6319a3b1a2060f", "fields": {"departement": "92", "stop_lat": 48.901251906231444, "code_postal": "92050", "stop_lon": 2.2159994460417605, "coord": [48.901251906231444, 2.2159994460417605], "stop_id": 4472482, "stop_desc": "BOULEVARD DES PROVINCES FRANCAISES - 92050", "stop_name": "NANTERRE - UNIVERSITE RER"}, "geometry": {"type": "Point", "coordinates": [2.2159994460417605, 48.901251906231444]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2e3a1b911ebbfc80422b616092bf576b01435ca3", "fields": {"departement": "92", "stop_lat": 48.90108993039388, "code_postal": "92050", "stop_lon": 2.21579534791084, "coord": [48.90108993039388, 2.21579534791084], "stop_id": 4472483, "stop_desc": "BOULEVARD DES PROVINCES FRANCAISES - 92050", "stop_name": "NANTERRE - UNIVERSITE RER"}, "geometry": {"type": "Point", "coordinates": [2.21579534791084, 48.90108993039388]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "77973f0be1d55118352a6750b2269c1922f05ed4", "fields": {"departement": "92", "stop_lat": 48.89628877004526, "code_postal": "92050", "stop_lon": 2.222826331966747, "coord": [48.89628877004526, 2.222826331966747], "stop_id": 4472486, "stop_desc": "0 BD DE PESARO - 92050", "stop_name": "NANTERRE-PREFECTURE RER"}, "geometry": {"type": "Point", "coordinates": [2.222826331966747, 48.89628877004526]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "10762c6282262e3b8526d71244b6f9eece02422c", "fields": {"departement": "92", "stop_lat": 48.896986014423774, "code_postal": "92050", "stop_lon": 2.2189809266743676, "coord": [48.896986014423774, 2.2189809266743676], "stop_id": 4472488, "stop_desc": "RUE MARCEL PAUL - 92050", "stop_name": "ESPLANADE CHARLES DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.2189809266743676, 48.896986014423774]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c88ccdeb8feb3727a7d9499810d418e87319fdf1", "fields": {"departement": "92", "stop_lat": 48.89300491332636, "code_postal": "92050", "stop_lon": 2.2104442000210622, "coord": [48.89300491332636, 2.2104442000210622], "stop_id": 4472494, "stop_desc": "85 AVENUE FREDERIC ET IRENE JOLIOT CURIE - 92050", "stop_name": "PALAIS DES SPORTS"}, "geometry": {"type": "Point", "coordinates": [2.2104442000210622, 48.89300491332636]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c139d4efea1332933691968095fb156f88432bc3", "fields": {"departement": "92", "stop_lat": 48.886782393482804, "code_postal": "92050", "stop_lon": 2.199311678106991, "coord": [48.886782393482804, 2.199311678106991], "stop_id": 4472500, "stop_desc": "8 AVENUE DU MARECHAL JOFFRE - 92050", "stop_name": "PLACE DE LA BOULE - JOFFRE"}, "geometry": {"type": "Point", "coordinates": [2.199311678106991, 48.886782393482804]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2873728ca6844ed6f7ba6ba86e35de68474f85a5", "fields": {"departement": "92", "stop_lat": 48.88545796036984, "code_postal": "92050", "stop_lon": 2.19648064018029, "coord": [48.88545796036984, 2.19648064018029], "stop_id": 4472502, "stop_desc": "FACE 24 AVENUE DU MARECHAL JOFFRE - 92050", "stop_name": "SAINTE-GENEVIEVE"}, "geometry": {"type": "Point", "coordinates": [2.19648064018029, 48.88545796036984]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "77161d9bc94ef9698a50871de94642c85a5923b9", "fields": {"departement": "92", "stop_lat": 48.86922348937091, "code_postal": "92063", "stop_lon": 2.1863480066905185, "coord": [48.86922348937091, 2.1863480066905185], "stop_id": 4472515, "stop_desc": "77 BOULEVARD RICHELIEU - 92063", "stop_name": "PLACE BESCHE"}, "geometry": {"type": "Point", "coordinates": [2.1863480066905185, 48.86922348937091]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6283a0afad515ba62925c44aa45a7974c4070b2d", "fields": {"departement": "92", "stop_lat": 48.867126364695906, "code_postal": "92063", "stop_lon": 2.198614709336574, "coord": [48.867126364695906, 2.198614709336574], "stop_id": 4472518, "stop_desc": "122 AVENUE DU 18 JUIN 1940 - 92063", "stop_name": "LIEUTENANT-COLONEL DE MONTBRISON"}, "geometry": {"type": "Point", "coordinates": [2.198614709336574, 48.867126364695906]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ffd7e4211adcc61eb62e1a6a7bd70e549c0e53fa", "fields": {"departement": "92", "stop_lat": 48.86489624581866, "code_postal": "92073", "stop_lon": 2.205431821442203, "coord": [48.86489624581866, 2.205431821442203], "stop_id": 4472520, "stop_desc": "AVENUE JEAN JAURES - 92073", "stop_name": "PLACE DE LA PAIX"}, "geometry": {"type": "Point", "coordinates": [2.205431821442203, 48.86489624581866]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1e211f457f984f6aba33a44b26a0e263ceee92e2", "fields": {"departement": "95", "stop_lat": 49.014337292933675, "code_postal": "95450", "stop_lon": 2.0784342019585837, "coord": [49.014337292933675, 2.0784342019585837], "stop_id": 48434, "stop_desc": "Gare de Neuville-Universite - 95450", "stop_name": "Neuville-Universit\u00e9"}, "geometry": {"type": "Point", "coordinates": [2.0784342019585837, 49.014337292933675]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "63e2769cf7e9fb82d7c582cffa674b6094dfdc35", "fields": {"departement": "94", "stop_lat": 48.790579620426534, "code_postal": "94081", "stop_lon": 2.380429921953688, "coord": [48.790579620426534, 2.380429921953688], "stop_id": 4843500, "stop_desc": "78 AVENUE DU MOULIN DE SAQUET - 94081", "stop_name": "CAMELINAT"}, "geometry": {"type": "Point", "coordinates": [2.380429921953688, 48.790579620426534]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "11255dbd4bfe314489fa65ccf26a1f926be63bad", "fields": {"departement": "94", "stop_lat": 48.790570508596694, "code_postal": "94081", "stop_lon": 2.3807699840062972, "coord": [48.790570508596694, 2.3807699840062972], "stop_id": 4843512, "stop_desc": "77 AVENUE DU MOULIN DE SAQUET - 94081", "stop_name": "CAMELINAT"}, "geometry": {"type": "Point", "coordinates": [2.3807699840062972, 48.790570508596694]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "32913402be3df08143f9ea07f43dcf1dfd2a8fc5", "fields": {"departement": "94", "stop_lat": 48.77945456833409, "code_postal": "94081", "stop_lon": 2.3744231301101495, "coord": [48.77945456833409, 2.3744231301101495], "stop_id": 4843518, "stop_desc": "FACE 184 RUE JULIAN GRIMAU - 94081", "stop_name": "JULIAN GRIMAU - VOIE VERTE"}, "geometry": {"type": "Point", "coordinates": [2.3744231301101495, 48.77945456833409]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0e181ffd4c70b72c188dc9bf61af6f85187b605a", "fields": {"departement": "94", "stop_lat": 48.77214016274779, "code_postal": "94081", "stop_lon": 2.367986062326688, "coord": [48.77214016274779, 2.367986062326688], "stop_id": 4843527, "stop_desc": "13 ROUTE DE FONTAINEBLEAU - 94081", "stop_name": "MOULIN VERT"}, "geometry": {"type": "Point", "coordinates": [2.367986062326688, 48.77214016274779]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "32b61b6d92badc11082557bf5c6237f287c5c7d5", "fields": {"departement": "94", "stop_lat": 48.81989807716134, "code_postal": "94041", "stop_lon": 2.379773787972575, "coord": [48.81989807716134, 2.379773787972575], "stop_id": 4843809, "stop_desc": "30 AVENUE PIERRE SEMARD - 94041", "stop_name": "RUE DES JARDINS"}, "geometry": {"type": "Point", "coordinates": [2.379773787972575, 48.81989807716134]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "02ee6f0e882381b1d0999181c5bbe0341b455d93", "fields": {"departement": "94", "stop_lat": 48.81682348299316, "code_postal": "94041", "stop_lon": 2.3819488156834394, "coord": [48.81682348299316, 2.3819488156834394], "stop_id": 4843810, "stop_desc": "82 AVENUE DANIELLE CASANOVA - 94041", "stop_name": "LOUIS BERTRAND"}, "geometry": {"type": "Point", "coordinates": [2.3819488156834394, 48.81682348299316]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1aff79e6cf631184a373c36061d5b1b212717403", "fields": {"departement": "94", "stop_lat": 48.78961431654919, "code_postal": "94081", "stop_lon": 2.3894067925901123, "coord": [48.78961431654919, 2.3894067925901123], "stop_id": 4843824, "stop_desc": "FACE 41 AVENUE DE L'ABBE ROGER DERRY - 94081", "stop_name": "HOTEL DE VILLE DE VITRY - R.DERRY"}, "geometry": {"type": "Point", "coordinates": [2.3894067925901123, 48.78961431654919]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "867448813d2752749923d611b970997089686acd", "fields": {"departement": "94", "stop_lat": 48.78179914186525, "code_postal": "94081", "stop_lon": 2.378341748381967, "coord": [48.78179914186525, 2.378341748381967], "stop_id": 4843830, "stop_desc": "2 RUE VERTE - 94081", "stop_name": "GROUPE SCOLAIRE JEAN - JACQUES ROUSSEAU"}, "geometry": {"type": "Point", "coordinates": [2.378341748381967, 48.78179914186525]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "33db928cc0bb9128a510eb65e8bf907556fd9a57", "fields": {"departement": "94", "stop_lat": 48.77696424758717, "code_postal": "94081", "stop_lon": 2.3764340329706126, "coord": [48.77696424758717, 2.3764340329706126], "stop_id": 4843832, "stop_desc": "118 RUE PAUL ARMANGOT - 94081", "stop_name": "PAUL ARMANGOT"}, "geometry": {"type": "Point", "coordinates": [2.3764340329706126, 48.77696424758717]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aee8e328fbf8f43a649a1699af41b4512df2dc9e", "fields": {"departement": "93", "stop_lat": 48.91080764698685, "code_postal": "93008", "stop_lon": 2.4466567527966694, "coord": [48.91080764698685, 2.4466567527966694], "stop_id": 4889460, "stop_desc": "RUE PIERRE SEMARD - 93008", "stop_name": "PIERRE SEMARD - INDEPENDANCE"}, "geometry": {"type": "Point", "coordinates": [2.4466567527966694, 48.91080764698685]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ee160085cb9beac37be4102dfd57528eed3fd045", "fields": {"departement": "93", "stop_lat": 48.914330917685795, "code_postal": "93029", "stop_lon": 2.4462687699795196, "coord": [48.914330917685795, 2.4462687699795196], "stop_id": 4889462, "stop_desc": "139-137 RUE CHARLES GIDE - 93029", "stop_name": "LES LIMITES"}, "geometry": {"type": "Point", "coordinates": [2.4462687699795196, 48.914330917685795]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cc183a2f7ed084742b1627983b4532d9768233bc", "fields": {"departement": "93", "stop_lat": 48.91995160206817, "code_postal": "93029", "stop_lon": 2.4517898551894257, "coord": [48.91995160206817, 2.4517898551894257], "stop_id": 4889465, "stop_desc": "128 AVENUE HENRI BARBUSSE - 93029", "stop_name": "PLACE DU 19 MARS 1962"}, "geometry": {"type": "Point", "coordinates": [2.4517898551894257, 48.91995160206817]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3ae2989a94c9e01c3dbcd1395be409445646ef26", "fields": {"departement": "93", "stop_lat": 48.92144031506802, "code_postal": "93029", "stop_lon": 2.454997880913197, "coord": [48.92144031506802, 2.454997880913197], "stop_id": 4889467, "stop_desc": "168 AVENUE HENRI BARBUSSE - 93029", "stop_name": "AUGUSTE BLANQUI"}, "geometry": {"type": "Point", "coordinates": [2.454997880913197, 48.92144031506802]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ca9215ea58ddf1bbe51c8fa4b4e223a910e09c6a", "fields": {"departement": "93", "stop_lat": 48.926903826707964, "code_postal": "93007", "stop_lon": 2.4724677181834087, "coord": [48.926903826707964, 2.4724677181834087], "stop_id": 4889479, "stop_desc": "FACE 86 AVENUE PAUL VAILLANT COUTURIER - 93007", "stop_name": "DANIELLE CASANOVA - PAUL VAILLANT-COUTURIER"}, "geometry": {"type": "Point", "coordinates": [2.4724677181834087, 48.926903826707964]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d71e0f392073071ba7e4e68ceedb865cc98cbebd", "fields": {"departement": "93", "stop_lat": 48.928463917414284, "code_postal": "93007", "stop_lon": 2.4756360440448932, "coord": [48.928463917414284, 2.4756360440448932], "stop_id": 4889482, "stop_desc": "42 AVENUE PAUL VAILLANT COUTURIER - 93007", "stop_name": "QUEBEC"}, "geometry": {"type": "Point", "coordinates": [2.4756360440448932, 48.928463917414284]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "992979d687561af83b8c258f7d2cb74d497eef0a", "fields": {"departement": "93", "stop_lat": 48.929213819436754, "code_postal": "93007", "stop_lon": 2.479879844919834, "coord": [48.929213819436754, 2.479879844919834], "stop_id": 4889483, "stop_desc": "5 BIS AVENUE PAUL VAILLANT COUTURIER - 93007", "stop_name": "ROND-POINT PIERRE SEMARD - PAUL VAILLANT-COUTURIER"}, "geometry": {"type": "Point", "coordinates": [2.479879844919834, 48.929213819436754]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "feea25e314a58c09eab99ad0cea737a2a8bd834e", "fields": {"departement": "93", "stop_lat": 48.92935800046463, "code_postal": "93007", "stop_lon": 2.4795528998155345, "coord": [48.92935800046463, 2.4795528998155345], "stop_id": 4889484, "stop_desc": "12 AVENUE PAUL VAILLANT COUTURIER - 93007", "stop_name": "ROND-POINT PIERRE SEMARD - PAUL VAILLANT-COUTURIER"}, "geometry": {"type": "Point", "coordinates": [2.4795528998155345, 48.92935800046463]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4b9e88ff4b488379d5ee072c5d7c41bd99ceac3d", "fields": {"departement": "93", "stop_lat": 48.9315509698401, "code_postal": "93005", "stop_lon": 2.493771636240838, "coord": [48.9315509698401, 2.493771636240838], "stop_id": 4889488, "stop_desc": "PLACE DU GENERAL DE GAULLE - 93005", "stop_name": "AULNAY-SOUS-BOIS RER"}, "geometry": {"type": "Point", "coordinates": [2.493771636240838, 48.9315509698401]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "246ff3b8e5b57b15faa1e3ff08438bf01f6f1bc3", "fields": {"departement": "93", "stop_lat": 48.90698595535943, "code_postal": "93008", "stop_lon": 2.449020887590383, "coord": [48.90698595535943, 2.449020887590383], "stop_id": 4889493, "stop_desc": "PISTE GARE ROUTIERE - 93008", "stop_name": "BOBIGNY - PABLO PICASSO"}, "geometry": {"type": "Point", "coordinates": [2.449020887590383, 48.90698595535943]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6fa11bc2dd548d7a46dedf8b1dcb04ab0a47a8eb", "fields": {"departement": "93", "stop_lat": 48.90698595535943, "code_postal": "93008", "stop_lon": 2.449020887590383, "coord": [48.90698595535943, 2.449020887590383], "stop_id": 4889494, "stop_desc": "PISTE GARE ROUTIERE - 93008", "stop_name": "BOBIGNY - PABLO PICASSO"}, "geometry": {"type": "Point", "coordinates": [2.449020887590383, 48.90698595535943]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ecb20e46521f114a8f0cb852b698d76c9ebee236", "fields": {"departement": "93", "stop_lat": 48.914330917685795, "code_postal": "93029", "stop_lon": 2.4462687699795196, "coord": [48.914330917685795, 2.4462687699795196], "stop_id": 4889498, "stop_desc": "139-137 RUE CHARLES GIDE - 93029", "stop_name": "LES LIMITES"}, "geometry": {"type": "Point", "coordinates": [2.4462687699795196, 48.914330917685795]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c04abc91858eaf123f7f21e5e41925ffc5f9bc4f", "fields": {"departement": "93", "stop_lat": 48.91966494533887, "code_postal": "93029", "stop_lon": 2.4508210158428168, "coord": [48.91966494533887, 2.4508210158428168], "stop_id": 4889504, "stop_desc": "141 AVENUE HENRI BARBUSSE - 93029", "stop_name": "PLACE DU 19 MARS 1962"}, "geometry": {"type": "Point", "coordinates": [2.4508210158428168, 48.91966494533887]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c7fe876b696dee79079682bfab0b7bbdb1fc5e7d", "fields": {"departement": "93", "stop_lat": 48.92114485792039, "code_postal": "93029", "stop_lon": 2.4538653310183443, "coord": [48.92114485792039, 2.4538653310183443], "stop_id": 4889506, "stop_desc": "177 BIS AVENUE HENRI BARBUSSE - 93029", "stop_name": "AUGUSTE BLANQUI"}, "geometry": {"type": "Point", "coordinates": [2.4538653310183443, 48.92114485792039]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2164f9f68ba129b0bf0c5ed9d98114815fc403d5", "fields": {"departement": "93", "stop_lat": 48.926903826707964, "code_postal": "93007", "stop_lon": 2.4724677181834087, "coord": [48.926903826707964, 2.4724677181834087], "stop_id": 4889517, "stop_desc": "FACE 86 AVENUE PAUL VAILLANT COUTURIER - 93007", "stop_name": "DANIELLE CASANOVA - PAUL VAILLANT-COUTURIER"}, "geometry": {"type": "Point", "coordinates": [2.4724677181834087, 48.926903826707964]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "606037ae91aa9a9ad51f83e1abe9a94a281e801b", "fields": {"departement": "93", "stop_lat": 48.9315509698401, "code_postal": "93005", "stop_lon": 2.493771636240838, "coord": [48.9315509698401, 2.493771636240838], "stop_id": 4889526, "stop_desc": "PLACE DU GENERAL DE GAULLE - 93005", "stop_name": "AULNAY-SOUS-BOIS RER"}, "geometry": {"type": "Point", "coordinates": [2.493771636240838, 48.9315509698401]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ce69af5b2d9b69df883899e0d83e7023b2c81758", "fields": {"departement": "93", "stop_lat": 48.9315509698401, "code_postal": "93005", "stop_lon": 2.493771636240838, "coord": [48.9315509698401, 2.493771636240838], "stop_id": 4889527, "stop_desc": "PLACE DU GENERAL DE GAULLE - 93005", "stop_name": "AULNAY-SOUS-BOIS RER"}, "geometry": {"type": "Point", "coordinates": [2.493771636240838, 48.9315509698401]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "733d1f46554d528a23462296dece1b42920b7628", "fields": {"departement": "75", "stop_lat": 48.82168455392446, "code_postal": "75114", "stop_lon": 2.3245148424743225, "coord": [48.82168455392446, 2.3245148424743225], "stop_id": 4889619, "stop_desc": "SQUARE DU SERMENT DE KOUFRA - 75114", "stop_name": "PORTE D'ORLEANS"}, "geometry": {"type": "Point", "coordinates": [2.3245148424743225, 48.82168455392446]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c52f3996123984dd78dc24fcef14ef69e97b19cb", "fields": {"departement": "92", "stop_lat": 48.80226128862525, "code_postal": "92007", "stop_lon": 2.3189548165473455, "coord": [48.80226128862525, 2.3189548165473455], "stop_id": 4889630, "stop_desc": "FACE AU 34 AVENUE LOUIS PASTEUR - 92007", "stop_name": "MARTYRS DE CHATEAUBRIANT"}, "geometry": {"type": "Point", "coordinates": [2.3189548165473455, 48.80226128862525]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "437d52f21010c7ecea4649e299ebabad295a7086", "fields": {"departement": "92", "stop_lat": 48.79806369600551, "code_postal": "92007", "stop_lon": 2.3172693071635835, "coord": [48.79806369600551, 2.3172693071635835], "stop_id": 4889633, "stop_desc": "FACE 12 AVENUE LOUIS PASTEUR - 92007", "stop_name": "PASTEUR - MEUNIERS"}, "geometry": {"type": "Point", "coordinates": [2.3172693071635835, 48.79806369600551]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "28668455295c78a925ee21add0858e37bed0dee9", "fields": {"departement": "92", "stop_lat": 48.7858208813898, "code_postal": "92007", "stop_lon": 2.3106500677792785, "coord": [48.7858208813898, 2.3106500677792785], "stop_id": 4889641, "stop_desc": "4 AVENUE DE MONTROUGE - 92007", "stop_name": "LES BAS COQUARTS"}, "geometry": {"type": "Point", "coordinates": [2.3106500677792785, 48.7858208813898]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e46dac6da1f72c262ea965c739a7add9bcdfd648", "fields": {"departement": "92", "stop_lat": 48.785863850166756, "code_postal": "92007", "stop_lon": 2.3029515677399046, "coord": [48.785863850166756, 2.3029515677399046], "stop_id": 4889644, "stop_desc": "195 AVENUE DU MARECHAL FOCH - 92007", "stop_name": "LES BLAGIS-GABRIEL PERI"}, "geometry": {"type": "Point", "coordinates": [2.3029515677399046, 48.785863850166756]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "83cbff183d83c4d42b953eb67c5b03a6e91cbf49", "fields": {"departement": "93", "stop_lat": 48.88522101639375, "code_postal": "93064", "stop_lon": 2.4949945015726853, "coord": [48.88522101639375, 2.4949945015726853], "stop_id": 4614720, "stop_desc": "FACE 4 RUE DU 8 MAI 1945 - 93064", "stop_name": "8 MAI 1945"}, "geometry": {"type": "Point", "coordinates": [2.4949945015726853, 48.88522101639375]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "74a2a7eb3e8cd4ed8fa479f73fd879e19e0ca897", "fields": {"departement": "93", "stop_lat": 48.84707646208017, "code_postal": "93051", "stop_lon": 2.548559237181919, "coord": [48.84707646208017, 2.548559237181919], "stop_id": 4614721, "stop_desc": "FACE 13 RUE DU DOCTEUR SUREAU - 93051", "stop_name": "PASTEUR"}, "geometry": {"type": "Point", "coordinates": [2.548559237181919, 48.84707646208017]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f84029449c309c985d394a44a89e6e155675bda8", "fields": {"departement": "93", "stop_lat": 48.907282528066425, "code_postal": "93008", "stop_lon": 2.449021527354522, "coord": [48.907282528066425, 2.449021527354522], "stop_id": 4614756, "stop_desc": "PISTE GARE ROUTIERE - 93008", "stop_name": "BOBIGNY - PABLO PICASSO"}, "geometry": {"type": "Point", "coordinates": [2.449021527354522, 48.907282528066425]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9928481f7887c3228f29d6e2a021bb451b6cf390", "fields": {"departement": "93", "stop_lat": 48.90392513592614, "code_postal": "93010", "stop_lon": 2.471494371885404, "coord": [48.90392513592614, 2.471494371885404], "stop_id": 4614761, "stop_desc": "AVENUE DU GENERAL GALLIENI - 93010", "stop_name": "AVENUE DE ROSNY"}, "geometry": {"type": "Point", "coordinates": [2.471494371885404, 48.90392513592614]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "86a4565661e1dcbeb3b02c7a469712decd776d19", "fields": {"departement": "93", "stop_lat": 48.89363546520329, "code_postal": "93010", "stop_lon": 2.4787460614643035, "coord": [48.89363546520329, 2.4787460614643035], "stop_id": 4614767, "stop_desc": "RUE DE VARSOVIE - 93010", "stop_name": "VARSOVIE"}, "geometry": {"type": "Point", "coordinates": [2.4787460614643035, 48.89363546520329]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8e75beac00d52f6210be3e6e11d493e7d3b84493", "fields": {"departement": "93", "stop_lat": 48.88180455357744, "code_postal": "93077", "stop_lon": 2.5209975811063257, "coord": [48.88180455357744, 2.5209975811063257], "stop_id": 4614778, "stop_desc": "154-156 RUE GRANDE RUE - 93077", "stop_name": "BOULEVARD ANDRE"}, "geometry": {"type": "Point", "coordinates": [2.5209975811063257, 48.88180455357744]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "781beaa784874db21c4899f3903221832a1548fb", "fields": {"departement": "93", "stop_lat": 48.86251256156095, "code_postal": "93050", "stop_lon": 2.529946785428853, "coord": [48.86251256156095, 2.529946785428853], "stop_id": 4614786, "stop_desc": "93 RUE PAUL ET CAMILLE THOMOUX - 93050", "stop_name": "CIMETIERE DE NEUILLY-SUR-MARNE"}, "geometry": {"type": "Point", "coordinates": [2.529946785428853, 48.86251256156095]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b9193db3ee62d648e56929716ee1a78df85838db", "fields": {"departement": "75", "stop_lat": 48.857014888715405, "code_postal": "75104", "stop_lon": 2.347469838537296, "coord": [48.857014888715405, 2.347469838537296], "stop_id": 4651134, "stop_desc": "FACE 16 QUAI DE GESVRES - 75104", "stop_name": "CHATELET"}, "geometry": {"type": "Point", "coordinates": [2.347469838537296, 48.857014888715405]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5acee4a56f67b52593d7962546fa5d7dd768bf87", "fields": {"departement": "93", "stop_lat": 48.90909876026409, "code_postal": "93055", "stop_lon": 2.398225496493954, "coord": [48.90909876026409, 2.398225496493954], "stop_id": 4658161, "stop_desc": "AVENUE JEAN JAURES - 93055", "stop_name": "CIMETIERE PARISIEN"}, "geometry": {"type": "Point", "coordinates": [2.398225496493954, 48.90909876026409]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1251f990ac9403aba4ccd55c2fb1943fe70136be", "fields": {"departement": "93", "stop_lat": 48.91142512932666, "code_postal": "93001", "stop_lon": 2.400668813128449, "coord": [48.91142512932666, 2.400668813128449], "stop_id": 4658162, "stop_desc": "172 AVENUE JEAN JAURES - 93001", "stop_name": "RECHOSSIERE"}, "geometry": {"type": "Point", "coordinates": [2.400668813128449, 48.91142512932666]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "19b61f28b67f54ad30e6e3e1b0d2526a755cd061", "fields": {"departement": "93", "stop_lat": 48.92522052234096, "code_postal": "93027", "stop_lon": 2.4151966967494456, "coord": [48.92522052234096, 2.4151966967494456], "stop_id": 4658171, "stop_desc": "135 AVENUE PAUL VAILLANT-COUTURIER - 93027", "stop_name": "RUE RATEAU"}, "geometry": {"type": "Point", "coordinates": [2.4151966967494456, 48.92522052234096]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e683af8906b1b646ce92ddb75a338f708c4d7918", "fields": {"departement": "93", "stop_lat": 48.929153940203385, "code_postal": "93027", "stop_lon": 2.4194444041855228, "coord": [48.929153940203385, 2.4194444041855228], "stop_id": 4658173, "stop_desc": "FACE 168 AVENUE PAUL VAILLANT-COUTURIER - 93027", "stop_name": "AVENUE PAUL VAILLANT COUTURIER N0 176-191"}, "geometry": {"type": "Point", "coordinates": [2.4194444041855228, 48.929153940203385]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a16285894c555f514b7dc4fe4fbbd620e8fbbc6e", "fields": {"departement": "93", "stop_lat": 48.93437993252766, "code_postal": "93013", "stop_lon": 2.4255636723591056, "coord": [48.93437993252766, 2.4255636723591056], "stop_id": 4658176, "stop_desc": "48 AVENUE DE LA DIVISION LECLERC - 93013", "stop_name": "ANIZAN CAVILLON - HOTEL DE VILLE"}, "geometry": {"type": "Point", "coordinates": [2.4255636723591056, 48.93437993252766]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bbc2571e76ff319d1c0f7e6058b135258a069467", "fields": {"departement": "93", "stop_lat": 48.93692137629533, "code_postal": "93013", "stop_lon": 2.428009787953228, "coord": [48.93692137629533, 2.428009787953228], "stop_id": 4658178, "stop_desc": "88 AVENUE DE LA DIVISION LECLERC - 93013", "stop_name": "PIERRE CURIE"}, "geometry": {"type": "Point", "coordinates": [2.428009787953228, 48.93692137629533]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a885c71173f9292f94461aff9ef507caedc52c72", "fields": {"departement": "93", "stop_lat": 48.94480619221531, "code_postal": "93007", "stop_lon": 2.4351044901097643, "coord": [48.94480619221531, 2.4351044901097643], "stop_id": 4658183, "stop_desc": "76 AVENUE DU 8 MAI 1945 - 93007", "stop_name": "DIDEROT"}, "geometry": {"type": "Point", "coordinates": [2.4351044901097643, 48.94480619221531]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "82707b00426c80d4d065afab1071e6dd52366766", "fields": {"departement": "93", "stop_lat": 48.95453149107928, "code_postal": "93030", "stop_lon": 2.443692487028592, "coord": [48.95453149107928, 2.443692487028592], "stop_id": 4658187, "stop_desc": "AVENUE 8 MAI 1945 - 93030", "stop_name": "PONT YBLON - SANTOS DUMONT"}, "geometry": {"type": "Point", "coordinates": [2.443692487028592, 48.95453149107928]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "80dc222e5d1feb25b024005063dbd3ebf33bf361", "fields": {"departement": "93", "stop_lat": 48.95443302604512, "code_postal": "93030", "stop_lon": 2.443255617206152, "coord": [48.95443302604512, 2.443255617206152], "stop_id": 4658188, "stop_desc": "AV DU 8 MAI 1945 - 93030", "stop_name": "PONT YBLON - SANTOS DUMONT"}, "geometry": {"type": "Point", "coordinates": [2.443255617206152, 48.95443302604512]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e5088cb48cbf4c4bda1b4030b2ff1d3af419da96", "fields": {"departement": "93", "stop_lat": 48.95568117726325, "code_postal": "93030", "stop_lon": 2.4443771603692106, "coord": [48.95568117726325, 2.4443771603692106], "stop_id": 4658190, "stop_desc": "FACE 238 AVENUE DU 8 MAI 45 - 93030", "stop_name": "COLONEL FABIEN"}, "geometry": {"type": "Point", "coordinates": [2.4443771603692106, 48.95568117726325]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2dcac3f36145e0a9d0a84f00688fb4adfac916d9", "fields": {"departement": "93", "stop_lat": 48.901427984542, "code_postal": "93001", "stop_lon": 2.389396639770175, "coord": [48.901427984542, 2.389396639770175], "stop_id": 4658205, "stop_desc": "3 AVENUE JEAN JAURES - 93001", "stop_name": "MAGENTA"}, "geometry": {"type": "Point", "coordinates": [2.389396639770175, 48.901427984542]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e590eaaf146c240a33fe869d8a1ef159b50e5826", "fields": {"departement": "75", "stop_lat": 48.89740290639083, "code_postal": "75119", "stop_lon": 2.3866936859228653, "coord": [48.89740290639083, 2.3866936859228653], "stop_id": 4658206, "stop_desc": "81-83 BD MACDONALD - 75119", "stop_name": "PORTE DE LA VILLETTE"}, "geometry": {"type": "Point", "coordinates": [2.3866936859228653, 48.89740290639083]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3ce55b7315e6b4937b430bb32da169b1e0078d27", "fields": {"departement": "75", "stop_lat": 48.89741211839957, "code_postal": "75119", "stop_lon": 2.386148461529299, "coord": [48.89741211839957, 2.386148461529299], "stop_id": 4658207, "stop_desc": "81/83 BD MACDONALD - 75119", "stop_name": "PORTE DE LA VILLETTE"}, "geometry": {"type": "Point", "coordinates": [2.386148461529299, 48.89741211839957]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "85eab7dbd34a872e1654739df63c45960f46633b", "fields": {"departement": "93", "stop_lat": 48.90386206128232, "code_postal": "93055", "stop_lon": 2.392561835479137, "coord": [48.90386206128232, 2.392561835479137], "stop_id": 4658209, "stop_desc": "84 AVENUE JEAN JAURES - 93055", "stop_name": "QUATRE CHEMINS-METRO"}, "geometry": {"type": "Point", "coordinates": [2.392561835479137, 48.90386206128232]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "837cd97d16a584ec66de34c73827b5ca42b377a1", "fields": {"departement": "93", "stop_lat": 48.910895384137824, "code_postal": "93001", "stop_lon": 2.3997410269389743, "coord": [48.910895384137824, 2.3997410269389743], "stop_id": 4658213, "stop_desc": "183 AVENUE JEAN JAURES - 93001", "stop_name": "RECHOSSIERE"}, "geometry": {"type": "Point", "coordinates": [2.3997410269389743, 48.910895384137824]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "51e1e5302955f8bde171e9556acc1297022f5026", "fields": {"departement": "93", "stop_lat": 48.924968772529134, "code_postal": "93027", "stop_lon": 2.4153736130101375, "coord": [48.924968772529134, 2.4153736130101375], "stop_id": 4658220, "stop_desc": "140 AVENUE PAUL VAILLANT-COUTURIER - 93027", "stop_name": "RUE RATEAU"}, "geometry": {"type": "Point", "coordinates": [2.4153736130101375, 48.924968772529134]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e5f65e28d2f34eae6347a64842db0d7a4cb968bc", "fields": {"departement": "93", "stop_lat": 48.92522052234096, "code_postal": "93027", "stop_lon": 2.4151966967494456, "coord": [48.92522052234096, 2.4151966967494456], "stop_id": 4658221, "stop_desc": "135 AVENUE PAUL VAILLANT-COUTURIER - 93027", "stop_name": "RUE RATEAU"}, "geometry": {"type": "Point", "coordinates": [2.4151966967494456, 48.92522052234096]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3e558cb02e6bcd9737b7bf6e6205852b045bd4f7", "fields": {"departement": "93", "stop_lat": 48.93692137629533, "code_postal": "93013", "stop_lon": 2.428009787953228, "coord": [48.93692137629533, 2.428009787953228], "stop_id": 4658228, "stop_desc": "88 AVENUE DE LA DIVISION LECLERC - 93013", "stop_name": "PIERRE CURIE"}, "geometry": {"type": "Point", "coordinates": [2.428009787953228, 48.93692137629533]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4d822ecbe6ae04d334f3ab63a8f33f342182e4b7", "fields": {"departement": "93", "stop_lat": 48.93887013385676, "code_postal": "93013", "stop_lon": 2.429813914667063, "coord": [48.93887013385676, 2.429813914667063], "stop_id": 4658230, "stop_desc": "124 AVENUE DE LA DIVISION LECLERC - 93013", "stop_name": "EGLISE DU BOURGET"}, "geometry": {"type": "Point", "coordinates": [2.429813914667063, 48.93887013385676]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7804cccb48540ba0cd8ea2a17262ebe13bc18992", "fields": {"departement": "95", "stop_lat": 48.96551633625157, "code_postal": "95277", "stop_lon": 2.4592064443173114, "coord": [48.96551633625157, 2.4592064443173114], "stop_id": 4658246, "stop_desc": "0 AV DU 21EME SIECLE - 95277", "stop_name": "21EME SIECLE"}, "geometry": {"type": "Point", "coordinates": [2.4592064443173114, 48.96551633625157]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "655e8757e6effce2088a15cfb4267c98d0568cbb", "fields": {"departement": "93", "stop_lat": 48.95305017022044, "code_postal": "93030", "stop_lon": 2.44201104581659, "coord": [48.95305017022044, 2.44201104581659], "stop_id": 4658249, "stop_desc": "FACE 212 AVENUE DU 8 MAI 1945 - 93030", "stop_name": "CHEMIN NOTRE DAME"}, "geometry": {"type": "Point", "coordinates": [2.44201104581659, 48.95305017022044]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7246979b42820a524518c1d1f23ec4822243421f", "fields": {"departement": "93", "stop_lat": 48.943450608178786, "code_postal": "93013", "stop_lon": 2.4333556294850047, "coord": [48.943450608178786, 2.4333556294850047], "stop_id": 4658253, "stop_desc": "FACE 52 AV DU 8 MAI 1945 - 93013", "stop_name": "MICHELET - PARC DES EXPOSITIONS"}, "geometry": {"type": "Point", "coordinates": [2.4333556294850047, 48.943450608178786]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3ebcc015ed95b2233f031eaa0681c56cbc569665", "fields": {"departement": "93", "stop_lat": 48.901427984542, "code_postal": "93001", "stop_lon": 2.389396639770175, "coord": [48.901427984542, 2.389396639770175], "stop_id": 4658259, "stop_desc": "3 AVENUE JEAN JAURES - 93001", "stop_name": "MAGENTA"}, "geometry": {"type": "Point", "coordinates": [2.389396639770175, 48.901427984542]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "618e6856eb44792aa122d60e175a16df80358d18", "fields": {"departement": "93", "stop_lat": 48.88139137609493, "code_postal": "93064", "stop_lon": 2.4958004467087647, "coord": [48.88139137609493, 2.4958004467087647], "stop_id": 4668116, "stop_desc": "121-123 AVENUE DE ROSNY - 93064", "stop_name": "11 NOVEMBRE"}, "geometry": {"type": "Point", "coordinates": [2.4958004467087647, 48.88139137609493]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ac7ce492f38f01111ddcc2c25d4cac40a6535736", "fields": {"departement": "75", "stop_lat": 48.88789708721117, "code_postal": "75117", "stop_lon": 2.2945571394886106, "coord": [48.88789708721117, 2.2945571394886106], "stop_id": 4677618, "stop_desc": "RUE DE COURCELLES - 75117", "stop_name": "PORTE DE COURCELLES"}, "geometry": {"type": "Point", "coordinates": [2.2945571394886106, 48.88789708721117]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "413425c64b0fd3ad06d4fbccba0d6c6544fd0ec7", "fields": {"departement": "75", "stop_lat": 48.887456616286244, "code_postal": "75117", "stop_lon": 2.294284938109642, "coord": [48.887456616286244, 2.294284938109642], "stop_id": 4677619, "stop_desc": "FACE 1 AVENUE STEPHANE MALLARME - 75117", "stop_name": "PORTE DE COURCELLES"}, "geometry": {"type": "Point", "coordinates": [2.294284938109642, 48.887456616286244]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bb62421c3385e9be421a8bc46e8c0554f615c6e5", "fields": {"departement": "92", "stop_lat": 48.89317963178215, "code_postal": "92044", "stop_lon": 2.289496162966111, "coord": [48.89317963178215, 2.289496162966111], "stop_id": 4677621, "stop_desc": "66 RUE DU PRESIDENT WILSON - 92044", "stop_name": "MAIRIE DE LEVALLOIS"}, "geometry": {"type": "Point", "coordinates": [2.289496162966111, 48.89317963178215]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "10970adc1ac571df8ab087bbe8d34e26836c5aaf", "fields": {"departement": "92", "stop_lat": 48.89547052508216, "code_postal": "92044", "stop_lon": 2.287463134346214, "coord": [48.89547052508216, 2.287463134346214], "stop_id": 4677622, "stop_desc": "92 RUE DU PRESIDENT WILSON - 92044", "stop_name": "VAILLANT COUTURIER"}, "geometry": {"type": "Point", "coordinates": [2.287463134346214, 48.89547052508216]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d30e6969b01ec553582d577a6150a0b31dc7ee4d", "fields": {"departement": "92", "stop_lat": 48.89666665129639, "code_postal": "92044", "stop_lon": 2.28950658011909, "coord": [48.89666665129639, 2.28950658011909], "stop_id": 4677624, "stop_desc": "99 RUE JULES GUESDE - 92044", "stop_name": "JULES GUESDE"}, "geometry": {"type": "Point", "coordinates": [2.28950658011909, 48.89666665129639]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7e3ac8cd2e0e3991ae8cbea27decbd241e5e23df", "fields": {"departement": "92", "stop_lat": 48.90115215585079, "code_postal": "92024", "stop_lon": 2.291888014277008, "coord": [48.90115215585079, 2.291888014277008], "stop_id": 4677628, "stop_desc": "ROUTE D'ASNIERES - 92024", "stop_name": "RUE DES CHASSES"}, "geometry": {"type": "Point", "coordinates": [2.291888014277008, 48.90115215585079]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "92234328e3d334198d39a5ee6a5132056d031e2b", "fields": {"departement": "92", "stop_lat": 48.903146582104675, "code_postal": "92024", "stop_lon": 2.2900595348789694, "coord": [48.903146582104675, 2.2900595348789694], "stop_id": 4677629, "stop_desc": "34 ROUTE D'ASNIERES - 92024", "stop_name": "QUAI DE CLICHY"}, "geometry": {"type": "Point", "coordinates": [2.2900595348789694, 48.903146582104675]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b63d70442e4337271dfa385f30002247444fbdc2", "fields": {"departement": "92", "stop_lat": 48.9238281198912, "code_postal": "92004", "stop_lon": 2.2756528303457335, "coord": [48.9238281198912, 2.2756528303457335], "stop_id": 4677642, "stop_desc": "FACE 307 AVENUE D'ARGENTEUIL - 92004", "stop_name": "GRAMME"}, "geometry": {"type": "Point", "coordinates": [2.2756528303457335, 48.9238281198912]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f075934c4c4d5d2a996caaf7d4a5b005f99a8cba", "fields": {"departement": "92", "stop_lat": 48.92089080016295, "code_postal": "92009", "stop_lon": 2.2784519105217274, "coord": [48.92089080016295, 2.2784519105217274], "stop_id": 4677653, "stop_desc": "227 AV D'ARGENTEUIL - 92009", "stop_name": "JAURES"}, "geometry": {"type": "Point", "coordinates": [2.2784519105217274, 48.92089080016295]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2b39e6b96b9c45b69fe59f6a9c8cda91ef2d3795", "fields": {"departement": "92", "stop_lat": 48.89360306872159, "code_postal": "92044", "stop_lon": 2.2921672189214606, "coord": [48.89360306872159, 2.2921672189214606], "stop_id": 4677654, "stop_desc": "55 RUE JULES GUESDE - 92044", "stop_name": "ARISTIDE BRIAND"}, "geometry": {"type": "Point", "coordinates": [2.2921672189214606, 48.89360306872159]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9bd09e539c607a3bfe8c5138e592c4da6d52b9fe", "fields": {"departement": "94", "stop_lat": 48.80558194626264, "code_postal": "94041", "stop_lon": 2.3757889011211692, "coord": [48.80558194626264, 2.3757889011211692], "stop_id": 4677661, "stop_desc": "183 BOULEVARD DE STALINGRAD - 94041", "stop_name": "LA BRIQUETERIE"}, "geometry": {"type": "Point", "coordinates": [2.3757889011211692, 48.80558194626264]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "af2aa34c19d791c70075c137c78a80e3d19fe4b9", "fields": {"departement": "94", "stop_lat": 48.8015993230809, "code_postal": "94081", "stop_lon": 2.378820010546215, "coord": [48.8015993230809, 2.378820010546215], "stop_id": 4677663, "stop_desc": "113 BOULEVARD DE STALINGRAD - 94081", "stop_name": "MALASSIS"}, "geometry": {"type": "Point", "coordinates": [2.378820010546215, 48.8015993230809]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d572a4071c656b501e969e176841896ec1f5017c", "fields": {"departement": "94", "stop_lat": 48.81261202112399, "code_postal": "94041", "stop_lon": 2.370364304450868, "coord": [48.81261202112399, 2.370364304450868], "stop_id": 4677679, "stop_desc": "40 AVENUE DE VERDUN - 94041", "stop_name": "CIMETIERE PARISIEN - PLACE DU GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.370364304450868, 48.81261202112399]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d4d8eef43ee1e01e4bc0563f0487f3e28ecec4dd", "fields": {"departement": "94", "stop_lat": 48.798362479145425, "code_postal": "94081", "stop_lon": 2.3821778114612555, "coord": [48.798362479145425, 2.3821778114612555], "stop_id": 4677688, "stop_desc": "74 BOULEVARD DE STALINGRAD - 94081", "stop_name": "LA CIVETTE"}, "geometry": {"type": "Point", "coordinates": [2.3821778114612555, 48.798362479145425]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6db9094588e79b520f5fd0b58990be17b861c16f", "fields": {"departement": "94", "stop_lat": 48.78297902371468, "code_postal": "94081", "stop_lon": 2.394187610971603, "coord": [48.78297902371468, 2.394187610971603], "stop_id": 4677698, "stop_desc": "FACE 167 AVENUE YOURI GAGARINE - 94081", "stop_name": "CONSTANT COQUELIN"}, "geometry": {"type": "Point", "coordinates": [2.394187610971603, 48.78297902371468]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4344f0b9a5cdeff47c539c7c50570cad501fee11", "fields": {"departement": "94", "stop_lat": 48.77802538307672, "code_postal": "94081", "stop_lon": 2.3967660868571934, "coord": [48.77802538307672, 2.3967660868571934], "stop_id": 4677700, "stop_desc": "86 AVENUE ROUGET DE LISLE - 94081", "stop_name": "LES PLATRIERES"}, "geometry": {"type": "Point", "coordinates": [2.3967660868571934, 48.77802538307672]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "19859396c5067b3a2563504b23b698e5a3cdaf4a", "fields": {"departement": "94", "stop_lat": 48.75863110658494, "code_postal": "94022", "stop_lon": 2.409427476173478, "coord": [48.75863110658494, 2.409427476173478], "stop_id": 4677709, "stop_desc": "47 BIS AVENUE DE LA REPUBLIQUE - 94022", "stop_name": "PARMENTIER"}, "geometry": {"type": "Point", "coordinates": [2.409427476173478, 48.75863110658494]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3417be92f324bf634fd740dfb7d3e54cafb60bf7", "fields": {"departement": "94", "stop_lat": 48.75617635151201, "code_postal": "94022", "stop_lon": 2.411041727509464, "coord": [48.75617635151201, 2.411041727509464], "stop_id": 4677711, "stop_desc": "FACE 22-24 AVENUE DE NEWBURN - 94022", "stop_name": "LAMARTINE"}, "geometry": {"type": "Point", "coordinates": [2.411041727509464, 48.75617635151201]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8550692e6dd31184fc176d1d78879da46f6042e2", "fields": {"departement": "94", "stop_lat": 48.74559720783472, "code_postal": "94054", "stop_lon": 2.411108255563119, "coord": [48.74559720783472, 2.411108255563119], "stop_id": 4677719, "stop_desc": "VOI DES SAULES - 94054", "stop_name": "MARCEL CACHIN - VOIE DES SAULES"}, "geometry": {"type": "Point", "coordinates": [2.411108255563119, 48.74559720783472]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "80ef4024692fc712229f0be8a1fc52c2a804dfcf", "fields": {"departement": "94", "stop_lat": 48.74479958382108, "code_postal": "94054", "stop_lon": 2.4072609227980992, "coord": [48.74479958382108, 2.4072609227980992], "stop_id": 4677720, "stop_desc": "71 AVENUE ADRIEN RAYNAL - 94054", "stop_name": "FER A CHEVAL"}, "geometry": {"type": "Point", "coordinates": [2.4072609227980992, 48.74479958382108]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c701b13d5c8b095bf1131b1459ed6e11b6755006", "fields": {"departement": "94", "stop_lat": 48.745249993323334, "code_postal": "94054", "stop_lon": 2.387527503568191, "coord": [48.745249993323334, 2.387527503568191], "stop_id": 4677727, "stop_desc": "121 AVENUE DE LA VICTOIRE - 94054", "stop_name": "CIMETIERE PAYSAGER"}, "geometry": {"type": "Point", "coordinates": [2.387527503568191, 48.745249993323334]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fd34fa788237004d475ee47ca247d6d68bfb213c", "fields": {"departement": "94", "stop_lat": 48.800780952210616, "code_postal": "94041", "stop_lon": 2.3801662959198318, "coord": [48.800780952210616, 2.3801662959198318], "stop_id": 4677743, "stop_desc": "122 BOULEVARD DE STALINGRAD - 94041", "stop_name": "MALASSIS"}, "geometry": {"type": "Point", "coordinates": [2.3801662959198318, 48.800780952210616]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a13570d6444624dd9b8d45d971b81b12c39c1af7", "fields": {"departement": "94", "stop_lat": 48.816459574639566, "code_postal": "94041", "stop_lon": 2.367345434609985, "coord": [48.816459574639566, 2.367345434609985], "stop_id": 4677747, "stop_desc": "4 AVENUE DE VERDUN - 94041", "stop_name": "VERDUN - CHATEAUDUN"}, "geometry": {"type": "Point", "coordinates": [2.367345434609985, 48.816459574639566]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "58226c3dd306c7345f1a42085b51609c557b055c", "fields": {"departement": "94", "stop_lat": 48.8168640152177, "code_postal": "94041", "stop_lon": 2.3673728884374636, "coord": [48.8168640152177, 2.3673728884374636], "stop_id": 4677748, "stop_desc": "15 AVENUE DE VERDUN - 94041", "stop_name": "VERDUN - CHATEAUDUN"}, "geometry": {"type": "Point", "coordinates": [2.3673728884374636, 48.8168640152177]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9058d7d1a165a75c804ab244a9f3002eb7b9f0c4", "fields": {"departement": "94", "stop_lat": 48.80858458226651, "code_postal": "94041", "stop_lon": 2.3735186767175427, "coord": [48.80858458226651, 2.3735186767175427], "stop_id": 4677751, "stop_desc": "78 AVENUE DE VERDUN - 94041", "stop_name": "CARNOT"}, "geometry": {"type": "Point", "coordinates": [2.3735186767175427, 48.80858458226651]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0fc3a50077d92068a526854cd93e1aa0a1abc3c5", "fields": {"departement": "94", "stop_lat": 48.80728086211342, "code_postal": "94041", "stop_lon": 2.37509619689156, "coord": [48.80728086211342, 2.37509619689156], "stop_id": 4677754, "stop_desc": "161 AVENUE DE VERDUN - 94041", "stop_name": "LA BRIQUETERIE"}, "geometry": {"type": "Point", "coordinates": [2.37509619689156, 48.80728086211342]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ac29b04c7aa71d8ee4ce50081fe2b368cde7d5dc", "fields": {"departement": "94", "stop_lat": 48.80391880828929, "code_postal": "94081", "stop_lon": 2.3769850194880426, "coord": [48.80391880828929, 2.3769850194880426], "stop_id": 4677755, "stop_desc": "FACE 140 BOULEVARD DE STALINGRAD - 94081", "stop_name": "CENTRE BUS DE VITRY"}, "geometry": {"type": "Point", "coordinates": [2.3769850194880426, 48.80391880828929]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8eb06a6757845cae5ec983c93cfb05baf7542847", "fields": {"departement": "94", "stop_lat": 48.79466763030436, "code_postal": "94081", "stop_lon": 2.3843376284366515, "coord": [48.79466763030436, 2.3843376284366515], "stop_id": 4677759, "stop_desc": "21 AVENUE EUGENE PELLETAN - 94081", "stop_name": "CHARLES INFROIT"}, "geometry": {"type": "Point", "coordinates": [2.3843376284366515, 48.79466763030436]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2ab4462749ffef601487263bc7fc4447c6661c96", "fields": {"departement": "94", "stop_lat": 48.78990240188759, "code_postal": "94081", "stop_lon": 2.388318873018915, "coord": [48.78990240188759, 2.388318873018915], "stop_id": 4677763, "stop_desc": "FACE 23 AVENUE MAXIMILIEN ROBESPIERRE - 94081", "stop_name": "HOTEL DE VILLE DE VITRY"}, "geometry": {"type": "Point", "coordinates": [2.388318873018915, 48.78990240188759]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b9083936b7633107c01e168dde48f8a74899d88d", "fields": {"departement": "94", "stop_lat": 48.77802538307672, "code_postal": "94081", "stop_lon": 2.3967660868571934, "coord": [48.77802538307672, 2.3967660868571934], "stop_id": 4677770, "stop_desc": "86 AVENUE ROUGET DE LISLE - 94081", "stop_name": "LES PLATRIERES"}, "geometry": {"type": "Point", "coordinates": [2.3967660868571934, 48.77802538307672]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cf7bf9dbfdad3a3960546627a1cfe7d414a3711b", "fields": {"departement": "94", "stop_lat": 48.761229701279525, "code_postal": "94022", "stop_lon": 2.407718101924585, "coord": [48.761229701279525, 2.407718101924585], "stop_id": 4677777, "stop_desc": "5 AVENUE DE LA REPUBLIQUE - 94022", "stop_name": "WALDECK ROUSSEAU"}, "geometry": {"type": "Point", "coordinates": [2.407718101924585, 48.761229701279525]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "da55fa67dfc3434f8159705b71fc3bd424185d8a", "fields": {"departement": "94", "stop_lat": 48.758388600026706, "code_postal": "94022", "stop_lon": 2.4091416576999163, "coord": [48.758388600026706, 2.4091416576999163], "stop_id": 4677778, "stop_desc": "62 AVENUE DE LA REPUBLIQUE - 94022", "stop_name": "PARMENTIER"}, "geometry": {"type": "Point", "coordinates": [2.4091416576999163, 48.758388600026706]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f9fe361c50c9fd13acd834acb674d518ce51e999", "fields": {"departement": "94", "stop_lat": 48.74698680598638, "code_postal": "94054", "stop_lon": 2.416655514518507, "coord": [48.74698680598638, 2.416655514518507], "stop_id": 4677787, "stop_desc": "4 RUE JEAN MERMOZ - 94054", "stop_name": "LES SAULES RER"}, "geometry": {"type": "Point", "coordinates": [2.416655514518507, 48.74698680598638]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "97c1a6085e0d995b7ff182dfd44a364008982f60", "fields": {"departement": "94", "stop_lat": 48.76795532866585, "code_postal": "94022", "stop_lon": 2.4033082416592277, "coord": [48.76795532866585, 2.4033082416592277], "stop_id": 4677794, "stop_desc": "10 BOULEVARD DE STALINGRAD - 94022", "stop_name": "VERDUN - HOCHE"}, "geometry": {"type": "Point", "coordinates": [2.4033082416592277, 48.76795532866585]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "59973a1da5e5d421e8ac48e6352c45d5af7cbfd1", "fields": {"departement": "94", "stop_lat": 48.800780952210616, "code_postal": "94041", "stop_lon": 2.3801662959198318, "coord": [48.800780952210616, 2.3801662959198318], "stop_id": 4677797, "stop_desc": "122 BOULEVARD DE STALINGRAD - 94041", "stop_name": "MALASSIS"}, "geometry": {"type": "Point", "coordinates": [2.3801662959198318, 48.800780952210616]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a4d4f31b4a762eb079cd9361ad0f7efbe9ee99ed", "fields": {"departement": "92", "stop_lat": 48.83087086223816, "code_postal": "92012", "stop_lon": 2.2574940658797122, "coord": [48.83087086223816, 2.2574940658797122], "stop_id": 4687329, "stop_desc": "BOULEVARD DE LA REPUBLIQUE - 92012", "stop_name": "QUAI DU POINT DU JOUR"}, "geometry": {"type": "Point", "coordinates": [2.2574940658797122, 48.83087086223816]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9d7a420d197a6fb324df99f1afee51591b50849e", "fields": {"departement": "92", "stop_lat": 48.82700948660238, "code_postal": "92040", "stop_lon": 2.278653576085032, "coord": [48.82700948660238, 2.278653576085032], "stop_id": 4687336, "stop_desc": "6 BOULEVARD GAMBETTA - 92040", "stop_name": "CORENTIN CELTON-METRO"}, "geometry": {"type": "Point", "coordinates": [2.278653576085032, 48.82700948660238]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e12c881d63c80440233c6be0c20ee9aaf6b9ed45", "fields": {"departement": "92", "stop_lat": 48.82224888312768, "code_postal": "92075", "stop_lon": 2.284783941220651, "coord": [48.82224888312768, 2.284783941220651], "stop_id": 4687340, "stop_desc": "9 BOULEVARD DU LYCEE - 92075", "stop_name": "PLACE DU MARECHAL DE LATTRE DE TASSIGNY"}, "geometry": {"type": "Point", "coordinates": [2.284783941220651, 48.82224888312768]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2ea678b17893ecb2f87aeef9fb17d457bace1842", "fields": {"departement": "92", "stop_lat": 48.82234784339921, "code_postal": "92075", "stop_lon": 2.2850016190088835, "coord": [48.82234784339921, 2.2850016190088835], "stop_id": 4687341, "stop_desc": "FACE 13 BOULEVARD DU LYCEE - 92075", "stop_name": "PLACE DU MARECHAL DE LATTRE DE TASSIGNY"}, "geometry": {"type": "Point", "coordinates": [2.2850016190088835, 48.82234784339921]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "69dc6ab150ea382996906428d917c6d4fc732add", "fields": {"departement": "92", "stop_lat": 48.82095518436542, "code_postal": "92075", "stop_lon": 2.285996605746575, "coord": [48.82095518436542, 2.285996605746575], "stop_id": 4687343, "stop_desc": "PLACE DE LA REPUBLIQUE - 92075", "stop_name": "REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.285996605746575, 48.82095518436542]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "564ee830cd1006cc0af01707f4980940bb131825", "fields": {"departement": "92", "stop_lat": 48.816413604778866, "code_postal": "92075", "stop_lon": 2.279890398603526, "coord": [48.816413604778866, 2.279890398603526], "stop_id": 4687346, "stop_desc": "12 RUE LARMEROUX - 92075", "stop_name": "STADE DE VANVES"}, "geometry": {"type": "Point", "coordinates": [2.279890398603526, 48.816413604778866]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6b0f79907243d622cabea1fb2ae22749c3b42eea", "fields": {"departement": "92", "stop_lat": 48.81018855143633, "code_postal": "92023", "stop_lon": 2.269378348987505, "coord": [48.81018855143633, 2.269378348987505], "stop_id": 4687352, "stop_desc": "179 BIS AVENUE JEAN JAURES - 92023", "stop_name": "LAZARE - CARNOT"}, "geometry": {"type": "Point", "coordinates": [2.269378348987505, 48.81018855143633]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "96e67d1ef4f1613a8ae7f8ae5bfb6f2482ad3443", "fields": {"departement": "92", "stop_lat": 48.806242993904924, "code_postal": "92023", "stop_lon": 2.2695195762242957, "coord": [48.806242993904924, 2.2695195762242957], "stop_id": 4687355, "stop_desc": "92-94 AVENUE VICTOR HUGO - 92023", "stop_name": "PIERRE LOUVRIER"}, "geometry": {"type": "Point", "coordinates": [2.2695195762242957, 48.806242993904924]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4f37daed75d0f0a469daa74f02211e0d8b101a18", "fields": {"departement": "92", "stop_lat": 48.79165184188213, "code_postal": "92023", "stop_lon": 2.2630363387405126, "coord": [48.79165184188213, 2.2630363387405126], "stop_id": 4687365, "stop_desc": "AVENUE JEAN BAPTISTE CLEMENT - 92023", "stop_name": "SOLEIL LEVANT"}, "geometry": {"type": "Point", "coordinates": [2.2630363387405126, 48.79165184188213]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "41b4bd5f77616c10d5b4f67e8e3f664f64093f6b", "fields": {"departement": "92", "stop_lat": 48.79090356934487, "code_postal": "92023", "stop_lon": 2.259473454438876, "coord": [48.79090356934487, 2.259473454438876], "stop_id": 4687368, "stop_desc": "105 RUE DE LA PORTE DE TRIVAUX - 92023", "stop_name": "JARDIN PARISIEN - COQUELICOTS"}, "geometry": {"type": "Point", "coordinates": [2.259473454438876, 48.79090356934487]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1cea4710c8d259b0e5970083268d2945924374f2", "fields": {"departement": "92", "stop_lat": 48.78997427565056, "code_postal": "92023", "stop_lon": 2.254237832172685, "coord": [48.78997427565056, 2.254237832172685], "stop_id": 4687370, "stop_desc": "145 RUE DE LA PORTE DE TRIVAUX - 92023", "stop_name": "JARDIN PARISIEN - HOPITAL ANTOINE BECLERE"}, "geometry": {"type": "Point", "coordinates": [2.254237832172685, 48.78997427565056]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ee2ebfe952ae76ff2600d531b7d1b236ca1e91da", "fields": {"departement": "92", "stop_lat": 48.78492685219859, "code_postal": "92023", "stop_lon": 2.235938530633914, "coord": [48.78492685219859, 2.235938530633914], "stop_id": 4687375, "stop_desc": "R DE LA PLAINE - 92023", "stop_name": "GEORGES POMPIDOU"}, "geometry": {"type": "Point", "coordinates": [2.235938530633914, 48.78492685219859]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8a395104471f3a355d002f4b5b52b7e00e8a0606", "fields": {"departement": "95", "stop_lat": 48.998632157678905, "code_postal": "95585", "stop_lon": 2.3803850841361296, "coord": [48.998632157678905, 2.3803850841361296], "stop_id": 4695638, "stop_desc": "PLACE DU SOUVENIR FRANCAIS - 95585", "stop_name": "PLACE DU SOUVENIR FRANCAIS"}, "geometry": {"type": "Point", "coordinates": [2.3803850841361296, 48.998632157678905]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "25212ac445bf822361a569d5d5e4d8d170971f5f", "fields": {"departement": "95", "stop_lat": 48.99857843547482, "code_postal": "95585", "stop_lon": 2.379838739646569, "coord": [48.99857843547482, 2.379838739646569], "stop_id": 4695647, "stop_desc": "1 PLACE DU SOUVENIR FRANCAIS - 95585", "stop_name": "PLACE DU SOUVENIR FRANCAIS."}, "geometry": {"type": "Point", "coordinates": [2.379838739646569, 48.99857843547482]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d3520613e33e2ff302f31b146dfa8ea90557991a", "fields": {"departement": "95", "stop_lat": 48.99684328677364, "code_postal": "95585", "stop_lon": 2.3819678082524725, "coord": [48.99684328677364, 2.3819678082524725], "stop_id": 4695648, "stop_desc": "RUE MARCELLIN BERTHELOT - 95585", "stop_name": "MARCELLIN BERTHELOT - VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.3819678082524725, 48.99684328677364]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3dad314ef203c396a6814ee7ba1a0d449975eaf9", "fields": {"departement": "95", "stop_lat": 48.99730173969438, "code_postal": "95585", "stop_lon": 2.381572147113851, "coord": [48.99730173969438, 2.381572147113851], "stop_id": 4695651, "stop_desc": "RUE DU DOCTEUR DUMOULIN - 95585", "stop_name": "MARCELLIN BERTHELOT - VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.381572147113851, 48.99730173969438]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b6ff80d18c6be903a81e64cf31bab929d0399902", "fields": {"departement": "95", "stop_lat": 48.998632157678905, "code_postal": "95585", "stop_lon": 2.3803850841361296, "coord": [48.998632157678905, 2.3803850841361296], "stop_id": 4695652, "stop_desc": "PLACE DU SOUVENIR FRANCAIS - 95585", "stop_name": "PLACE DU SOUVENIR FRANCAIS"}, "geometry": {"type": "Point", "coordinates": [2.3803850841361296, 48.998632157678905]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e2a2de2e8c88f907f2f683f9d2be1d6597f8b81b", "fields": {"departement": "95", "stop_lat": 49.002621884294484, "code_postal": "95585", "stop_lon": 2.3809757298407406, "coord": [49.002621884294484, 2.3809757298407406], "stop_id": 4695653, "stop_desc": "RUE ANDRE GRUNIG - 95585", "stop_name": "LES CHARDONNERETTES"}, "geometry": {"type": "Point", "coordinates": [2.3809757298407406, 49.002621884294484]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "63297f9a699d54910e1b77eb02cc148574aaf730", "fields": {"departement": "95", "stop_lat": 49.00543684496062, "code_postal": "95585", "stop_lon": 2.374353347795506, "coord": [49.00543684496062, 2.374353347795506], "stop_id": 4695655, "stop_desc": "41 RUE DU FOUR DEFAIT - 95585", "stop_name": "CHAMP DE CHARTRES"}, "geometry": {"type": "Point", "coordinates": [2.374353347795506, 49.00543684496062]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a030cddcb55fe5ede9175f61257020ada6862b2f", "fields": {"departement": "95", "stop_lat": 49.0020851548009, "code_postal": "95585", "stop_lon": 2.3736680224056275, "coord": [49.0020851548009, 2.3736680224056275], "stop_id": 4695658, "stop_desc": "FACE 18 RUE GABRIEL PERI - 95585", "stop_name": "ECOLE JULES FERRY."}, "geometry": {"type": "Point", "coordinates": [2.3736680224056275, 49.0020851548009]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "96a345a37c0272d563cf73b549afc10fc15987d8", "fields": {"departement": "95", "stop_lat": 48.998632157678905, "code_postal": "95585", "stop_lon": 2.3803850841361296, "coord": [48.998632157678905, 2.3803850841361296], "stop_id": 4695666, "stop_desc": "PLACE DU SOUVENIR FRANCAIS - 95585", "stop_name": "PLACE DU SOUVENIR FRANCAIS"}, "geometry": {"type": "Point", "coordinates": [2.3803850841361296, 48.998632157678905]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cee6afbf83c30c5649d8e08681f56be3b07d8dac", "fields": {"departement": "95", "stop_lat": 49.006632690879485, "code_postal": "95585", "stop_lon": 2.372141347510079, "coord": [49.006632690879485, 2.372141347510079], "stop_id": 4695670, "stop_desc": "FACE 75 RUE DES GOSSEROTS - 95585", "stop_name": "BEL AIR - GOSSEROTS"}, "geometry": {"type": "Point", "coordinates": [2.372141347510079, 49.006632690879485]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "352e1fa46f006c6d14af8b46e3d1d04dd5940985", "fields": {"departement": "95", "stop_lat": 49.0020851548009, "code_postal": "95585", "stop_lon": 2.3736680224056275, "coord": [49.0020851548009, 2.3736680224056275], "stop_id": 4695672, "stop_desc": "FACE 18 RUE GABRIEL PERI - 95585", "stop_name": "ECOLE JULES FERRY."}, "geometry": {"type": "Point", "coordinates": [2.3736680224056275, 49.0020851548009]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4a490a15d7b8cdb00cf0be443724e2f72f589fc2", "fields": {"departement": "95", "stop_lat": 48.994057366862776, "code_postal": "95585", "stop_lon": 2.382334119863101, "coord": [48.994057366862776, 2.382334119863101], "stop_id": 4695677, "stop_desc": "1 RUE JEAN-JACQUES ROUSSEAU - 95585", "stop_name": "LYCEE JEAN-JACQUES ROUSSEAU."}, "geometry": {"type": "Point", "coordinates": [2.382334119863101, 48.994057366862776]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8dab65f14f8edb788f6f8fb6ee4b5d5d9e8f90ba", "fields": {"departement": "75", "stop_lat": 48.876730434823244, "code_postal": "75120", "stop_lon": 2.408215718151263, "coord": [48.876730434823244, 2.408215718151263], "stop_id": 4705559, "stop_desc": "RUE DES GLAIEULS - 75120", "stop_name": "PORTE DES LILAS-METRO"}, "geometry": {"type": "Point", "coordinates": [2.408215718151263, 48.876730434823244]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "35fe121f650cdf0968305563e696e39b2facec28", "fields": {"departement": "93", "stop_lat": 48.885644173819145, "code_postal": "93055", "stop_lon": 2.4108853302043145, "coord": [48.885644173819145, 2.4108853302043145], "stop_id": 4705562, "stop_desc": "FACE 68 RUE JULES AUFFRET - 93055", "stop_name": "LES POMMIERS"}, "geometry": {"type": "Point", "coordinates": [2.4108853302043145, 48.885644173819145]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "88512e2b2da6dbdc388a3db15534592c06109aa5", "fields": {"departement": "93", "stop_lat": 48.88691177296166, "code_postal": "93055", "stop_lon": 2.4102329834834952, "coord": [48.88691177296166, 2.4102329834834952], "stop_id": 4705565, "stop_desc": "56 RUE JULES AUFFRET - 93055", "stop_name": "MONTIGNY - MAISON DE RETRAITE"}, "geometry": {"type": "Point", "coordinates": [2.4102329834834952, 48.88691177296166]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9ae3ad5512e0a62b2cb897c2a0b64b407e7b38ea", "fields": {"departement": "93", "stop_lat": 48.89054284872542, "code_postal": "93055", "stop_lon": 2.40982922555458, "coord": [48.89054284872542, 2.40982922555458], "stop_id": 4705568, "stop_desc": "22 RUE JULES AUFFRET - 93055", "stop_name": "8 MAI 1945"}, "geometry": {"type": "Point", "coordinates": [2.40982922555458, 48.89054284872542]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "55e1c2ee3fed78e555ffec4e2db7a98fd5b5cba5", "fields": {"departement": "93", "stop_lat": 48.892978636822406, "code_postal": "93055", "stop_lon": 2.409396487205529, "coord": [48.892978636822406, 2.409396487205529], "stop_id": 4705570, "stop_desc": "5 RUE DELIZY - 93055", "stop_name": "LYCEE PROFESSIONNEL SIMONE WEIL - EGLISE DE PANTIN"}, "geometry": {"type": "Point", "coordinates": [2.409396487205529, 48.892978636822406]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "91fa4dfad3365347521edc16500eaae41fcae932", "fields": {"departement": "93", "stop_lat": 48.897207952724656, "code_postal": "93055", "stop_lon": 2.39992898408432, "coord": [48.897207952724656, 2.39992898408432], "stop_id": 4705577, "stop_desc": "6 AVENUE EDOUARD VAILLANT - 93055", "stop_name": "PANTIN RER - MAIRIE."}, "geometry": {"type": "Point", "coordinates": [2.39992898408432, 48.897207952724656]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3c8c8e2dd725321495003a5ed7d597817244b6ce", "fields": {"departement": "93", "stop_lat": 48.90530105233507, "code_postal": "93001", "stop_lon": 2.3902321446836763, "coord": [48.90530105233507, 2.3902321446836763], "stop_id": 4705588, "stop_desc": "120 AVENUE DE LA REPUBLIQUE - 93001", "stop_name": "HOPITAL LA ROSERAIE"}, "geometry": {"type": "Point", "coordinates": [2.3902321446836763, 48.90530105233507]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1659a683c1d5041083158d46de407ec256c66d44", "fields": {"departement": "93", "stop_lat": 48.909130517454116, "code_postal": "93001", "stop_lon": 2.38798646491481, "coord": [48.909130517454116, 2.38798646491481], "stop_id": 4705590, "stop_desc": "FACE 110 RUE DES CITES - 93001", "stop_name": "PAUL BERT"}, "geometry": {"type": "Point", "coordinates": [2.38798646491481, 48.909130517454116]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "231981e3e61b5b6bbfbd584320699011942ced5e", "fields": {"departement": "93", "stop_lat": 48.91677623346863, "code_postal": "93001", "stop_lon": 2.3929983374586508, "coord": [48.91677623346863, 2.3929983374586508], "stop_id": 4705594, "stop_desc": "0 R CHARLES TILLON - 93001", "stop_name": "CIMETIERE - PONT BLANC"}, "geometry": {"type": "Point", "coordinates": [2.3929983374586508, 48.91677623346863]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9cd6fc5ab74abc6e0ca3ee4397bb85bc8750bb9e", "fields": {"departement": "75", "stop_lat": 48.875420977789275, "code_postal": "75108", "stop_lon": 2.3266952720717047, "coord": [48.875420977789275, 2.3266952720717047], "stop_id": 2468, "stop_desc": "Saint-Lazare (95 rue) - 75108", "stop_name": "Saint-Lazare"}, "geometry": {"type": "Point", "coordinates": [2.3266952720717047, 48.875420977789275]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f3ecb3cffda61f28e61136ca2ce6de69ac18f0b4", "fields": {"departement": "92", "stop_lat": 48.78003132105507, "code_postal": "92071", "stop_lon": 2.281059378471848, "coord": [48.78003132105507, 2.281059378471848], "stop_id": 2450, "stop_desc": "Jules Guesde (rue) - 92071", "stop_name": "Robinson"}, "geometry": {"type": "Point", "coordinates": [2.281059378471848, 48.78003132105507]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0a6957139c98e64e7fcbf37a5f0791b104239a65", "fields": {"departement": "75", "stop_lat": 48.86649698703855, "code_postal": "75101", "stop_lon": 2.334094215259097, "coord": [48.86649698703855, 2.334094215259097], "stop_id": 2435, "stop_desc": "Rue de l'Echelle - 75101", "stop_name": "Pyramides"}, "geometry": {"type": "Point", "coordinates": [2.334094215259097, 48.86649698703855]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "adbe8ea5f998b588a13cfd6a6845212b29913c57", "fields": {"departement": "94", "stop_lat": 48.786638011119834, "code_postal": "94076", "stop_lon": 2.367110527381649, "coord": [48.786638011119834, 2.367110527381649], "stop_id": 2505, "stop_desc": "Maxime Gorky (boulevard, gare routi\u00e8re) - 94076", "stop_name": "Villejuif-Louis Aragon"}, "geometry": {"type": "Point", "coordinates": [2.367110527381649, 48.786638011119834]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "19ac478cd0ae7e31a5bc98a64404aa89558ab545", "fields": {"departement": "75", "stop_lat": 48.85231488119486, "code_postal": "75106", "stop_lon": 2.338861720336335, "coord": [48.85231488119486, 2.338861720336335], "stop_id": 2533, "stop_desc": "Saint-Germain (93 boulevard, rue de l'Ecole de M\u00e9decine) - 75106", "stop_name": "Od\u00e9on"}, "geometry": {"type": "Point", "coordinates": [2.338861720336335, 48.85231488119486]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4b84ac1c1b2e1d56e068ac5fabefe6aac0a48a87", "fields": {"departement": "75", "stop_lat": 48.8874368425293, "code_postal": "75117", "stop_lon": 2.3257252220174083, "coord": [48.8874368425293, 2.3257252220174083], "stop_id": 2536, "stop_desc": "Clichy (66 avenue de, 6 avenue de Saint-Ouen) - 75117", "stop_name": "La Fourche"}, "geometry": {"type": "Point", "coordinates": [2.3257252220174083, 48.8874368425293]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8e03a5b5413d3765a13fddf71995d94bd871e239", "fields": {"departement": "75", "stop_lat": 48.891543930630554, "code_postal": "75118", "stop_lon": 2.3493711153819112, "coord": [48.891543930630554, 2.3493711153819112], "stop_id": 2535, "stop_desc": "Poissonniers (69 rue des) - 75118", "stop_name": "Marcadet-Poissonniers"}, "geometry": {"type": "Point", "coordinates": [2.3493711153819112, 48.891543930630554]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9bea6c4e2b2053af13bbc40f5ccb7ff8891f398a", "fields": {"departement": "75", "stop_lat": 48.849010153648216, "code_postal": "75112", "stop_lon": 2.3976646127910075, "coord": [48.849010153648216, 2.3976646127910075], "stop_id": 2531, "stop_desc": "Nation (terre-plein face au 3 place de la) - 75112", "stop_name": "Nation"}, "geometry": {"type": "Point", "coordinates": [2.3976646127910075, 48.849010153648216]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8fd433074af46159cc673c1081660e760dffc514", "fields": {"departement": "92", "stop_lat": 48.832087644282545, "code_postal": "92012", "stop_lon": 2.238160776875514, "coord": [48.832087644282545, 2.238160776875514], "stop_id": 2549, "stop_desc": "G\u00e9n\u00e9ral Leclerc (88 bis avenue du) - 92012", "stop_name": "Billancourt"}, "geometry": {"type": "Point", "coordinates": [2.238160776875514, 48.832087644282545]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "acea4f44f759f3905abbc1d10b30af78a6cc0853", "fields": {"departement": "75", "stop_lat": 48.86767151899055, "code_postal": "75111", "stop_lon": 2.363329120776082, "coord": [48.86767151899055, 2.363329120776082], "stop_id": 3343777, "stop_desc": "Saint-Martin (9 boulevard) - 75111", "stop_name": "R\u00e9publique"}, "geometry": {"type": "Point", "coordinates": [2.363329120776082, 48.86767151899055]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "22d54f28875848e3b934f1f225681529a45fc000", "fields": {"departement": "75", "stop_lat": 48.86109346762053, "code_postal": "75107", "stop_lon": 2.3146433553464374, "coord": [48.86109346762053, 2.3146433553464374], "stop_id": 3343761, "stop_desc": "Universit\u00e9 (rue de l') - 75107", "stop_name": "Invalides"}, "geometry": {"type": "Point", "coordinates": [2.3146433553464374, 48.86109346762053]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "08606b66879de54cfef22820ab6a3f29e65b4df1", "fields": {"departement": "75", "stop_lat": 48.84461367199405, "code_postal": "75115", "stop_lon": 2.293802980169146, "coord": [48.84461367199405, 2.293802980169146], "stop_id": 3343753, "stop_desc": "Commerce (21 place du) - 75115", "stop_name": "Commerce"}, "geometry": {"type": "Point", "coordinates": [2.293802980169146, 48.84461367199405]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "992f683cecd48167a6a5d881d811656fda8ff95d", "fields": {"departement": "75", "stop_lat": 48.84686470206919, "code_postal": "75115", "stop_lon": 2.307268847578926, "coord": [48.84686470206919, 2.307268847578926], "stop_id": 2541, "stop_desc": "UNESCO - Miollis - 75115", "stop_name": "S\u00e9gur"}, "geometry": {"type": "Point", "coordinates": [2.307268847578926, 48.84686470206919]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8f682fcde921513056c835e56e9c0936acde5baf", "fields": {"departement": "75", "stop_lat": 48.85639306919846, "code_postal": "75107", "stop_lon": 2.3147543648102884, "coord": [48.85639306919846, 2.3147543648102884], "stop_id": 2518, "stop_desc": "Invalides (13 boulevard des, \u00c8 c\u00f4t\u00e9 du minist\u00e8re du Travail) - 75107", "stop_name": "Varenne"}, "geometry": {"type": "Point", "coordinates": [2.3147543648102884, 48.85639306919846]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c518459688a650b18d04a0689660cbc912e1a564", "fields": {"departement": "75", "stop_lat": 48.85339313419855, "code_postal": "75105", "stop_lon": 2.345017658598223, "coord": [48.85339313419855, 2.345017658598223], "stop_id": 2482, "stop_desc": "Saint-Germain (boulevard, c\u00f4t\u00e9 pair) - 75105", "stop_name": "Saint-Michel Notre-Dame"}, "geometry": {"type": "Point", "coordinates": [2.345017658598223, 48.85339313419855]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "60b36f5035f186a4c7ad0ad8b47afc5cbbaa2ea3", "fields": {"departement": "75", "stop_lat": 48.83299169177581, "code_postal": "75114", "stop_lon": 2.3366828966443496, "coord": [48.83299169177581, 2.3366828966443496], "stop_id": 2520, "stop_desc": "Saint-Jacques (terre-plein face au 46 boulevard) - 75114", "stop_name": "Saint-Jacques"}, "geometry": {"type": "Point", "coordinates": [2.3366828966443496, 48.83299169177581]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0f57c869b433b6ce9cc4a0685dc2cc758c062ea5", "fields": {"departement": "75", "stop_lat": 48.843164692766834, "code_postal": "75105", "stop_lon": 2.3521103624150967, "coord": [48.843164692766834, 2.3521103624150967], "stop_id": 2529, "stop_desc": "Monge (2 place) - 75105", "stop_name": "Place Monge (Jardin des Plantes)"}, "geometry": {"type": "Point", "coordinates": [2.3521103624150967, 48.843164692766834]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ab60a4e3462c412836183ee5c80f265d180e0fda", "fields": {"departement": "75", "stop_lat": 48.88407198636439, "code_postal": "75119", "stop_lon": 2.3688700627777948, "coord": [48.88407198636439, 2.3688700627777948], "stop_id": 2486, "stop_desc": "Villette (244/171 boulevard de la) - 75119", "stop_name": "Stalingrad"}, "geometry": {"type": "Point", "coordinates": [2.3688700627777948, 48.88407198636439]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a0afa96ff418a176c09e81d002e0ae124ea3f2e4", "fields": {"departement": "75", "stop_lat": 48.86741082883539, "code_postal": "75111", "stop_lon": 2.363587825558049, "coord": [48.86741082883539, 2.363587825558049], "stop_id": 2527, "stop_desc": "Saint-Martin (9 boulevard) - 75111", "stop_name": "R\u00e9publique"}, "geometry": {"type": "Point", "coordinates": [2.363587825558049, 48.86741082883539]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "feb2f9be410414a87490f506b81794016d2fbacf", "fields": {"departement": "78", "stop_lat": 48.93751218318358, "code_postal": "78586", "stop_lon": 2.157311047020583, "coord": [48.93751218318358, 2.157311047020583], "stop_id": 2523, "stop_desc": "Fusilles (Place des) - 78586", "stop_name": "Sartrouville"}, "geometry": {"type": "Point", "coordinates": [2.157311047020583, 48.93751218318358]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "81f52d981e67cfdae546e4c18a9b4f2df2fead52", "fields": {"departement": "94", "stop_lat": 48.854043248483144, "code_postal": "94033", "stop_lon": 2.488553014023377, "coord": [48.854043248483144, 2.488553014023377], "stop_id": 2499, "stop_desc": "ZUP de Fontenay - 94033", "stop_name": "Val de Fontenay"}, "geometry": {"type": "Point", "coordinates": [2.488553014023377, 48.854043248483144]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cd01020aa0bc5d97c6aad0aba6cc2f3d942ec458", "fields": {"departement": "75", "stop_lat": 48.84205985758205, "code_postal": "75106", "stop_lon": 2.328867050437212, "coord": [48.84205985758205, 2.328867050437212], "stop_id": 2502, "stop_desc": "Montparnasse (108 boulevard du) - 75106", "stop_name": "Vavin"}, "geometry": {"type": "Point", "coordinates": [2.328867050437212, 48.84205985758205]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2774cf59626d3d765caddb76595f76fb1d30f072", "fields": {"departement": "75", "stop_lat": 48.84870084962003, "code_postal": "75107", "stop_lon": 2.321239881938573, "coord": [48.84870084962003, 2.321239881938573], "stop_id": 2500, "stop_desc": "S\u00e8vres (97 rue de) - 75107", "stop_name": "Vaneau"}, "geometry": {"type": "Point", "coordinates": [2.321239881938573, 48.84870084962003]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ae112582f565f7a7b4b5e9d95314c5ae74ceeb07", "fields": {"departement": "75", "stop_lat": 48.83266034648216, "code_postal": "75112", "stop_lon": 2.4004636384497804, "coord": [48.83266034648216, 2.4004636384497804], "stop_id": 3343801, "stop_desc": "Poniatowsky (68 boulevard, angle avec la rue Ferdinand-de-B\u00e9hagle) - 75112", "stop_name": "Porte de Charenton"}, "geometry": {"type": "Point", "coordinates": [2.4004636384497804, 48.83266034648216]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d3626f8072bb114a99a05072b1faeeb8df166942", "fields": {"departement": "75", "stop_lat": 48.865507221530486, "code_postal": "75108", "stop_lon": 2.3203628558611284, "coord": [48.865507221530486, 2.3203628558611284], "stop_id": 3343763, "stop_desc": "Tuileries (jardin des, face au 246 rue de Rivoli et \u00c8 la rue Cambon) PARIS-08 - 75108", "stop_name": "Concorde"}, "geometry": {"type": "Point", "coordinates": [2.3203628558611284, 48.865507221530486]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "69e9c40263bd9da2c461b6e2ad89891374d16477", "fields": {"departement": "75", "stop_lat": 48.86097499718719, "code_postal": "75103", "stop_lon": 2.3672622950229414, "coord": [48.86097499718719, 2.3672622950229414], "stop_id": 3343781, "stop_desc": "Mus\u00e9e Pablo Picasso - 75103", "stop_name": "Saint-S\u00e9bastien-Froissart"}, "geometry": {"type": "Point", "coordinates": [2.3672622950229414, 48.86097499718719]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5161ddbb6d311262e19345dc18a38b9f9c8d74ca", "fields": {"departement": "75", "stop_lat": 48.86097499718719, "code_postal": "75103", "stop_lon": 2.3672622950229414, "coord": [48.86097499718719, 2.3672622950229414], "stop_id": 3343782, "stop_desc": "Mus\u00e9e Pablo Picasso - 75103", "stop_name": "Saint-S\u00e9bastien-Froissart"}, "geometry": {"type": "Point", "coordinates": [2.3672622950229414, 48.86097499718719]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "47af0e4fdff7386f7510d38ed520eb73f3858434", "fields": {"departement": "75", "stop_lat": 48.836991037652965, "code_postal": "75112", "stop_lon": 2.402919606870042, "coord": [48.836991037652965, 2.402919606870042], "stop_id": 3343798, "stop_desc": "Daumesnil (253 avenue, 122 rue de Picpus) - 75112", "stop_name": "Michel Bizot"}, "geometry": {"type": "Point", "coordinates": [2.402919606870042, 48.836991037652965]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "77f6644b5836b164458a538ebc492a85db4cf017", "fields": {"departement": "75", "stop_lat": 48.83968214020875, "code_postal": "75112", "stop_lon": 2.3955841703466554, "coord": [48.83968214020875, 2.3955841703466554], "stop_id": 3343795, "stop_desc": "Reuilly (118 rue de) - 75112", "stop_name": "Daumesnil (F\u00e9lix Ebou\u00e9)"}, "geometry": {"type": "Point", "coordinates": [2.3955841703466554, 48.83968214020875]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "55760819b5bbfc5bebd995a57f4db2cb235c0eb9", "fields": {"departement": "75", "stop_lat": 48.86307817635541, "code_postal": "75103", "stop_lon": 2.36674588358473, "coord": [48.86307817635541, 2.36674588358473], "stop_id": 3343779, "stop_desc": "Mus\u00e9e Picasso - 75103", "stop_name": "Filles du Calvaire"}, "geometry": {"type": "Point", "coordinates": [2.36674588358473, 48.86307817635541]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "531225175d25b1ac7e6f3190385544486c67d9f6", "fields": {"departement": "94", "stop_lat": 48.821489819145576, "code_postal": "94018", "stop_lon": 2.4138567623311062, "coord": [48.821489819145576, 2.4138567623311062], "stop_id": 3343805, "stop_desc": "Rue de Paris - 94018", "stop_name": "Charenton-Ecoles"}, "geometry": {"type": "Point", "coordinates": [2.4138567623311062, 48.821489819145576]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f865806a0866fbb6973eb0b0d1194b2ca7b14ef1", "fields": {"departement": "75", "stop_lat": 48.85119416536367, "code_postal": "75112", "stop_lon": 2.3759317370128947, "coord": [48.85119416536367, 2.3759317370128947], "stop_id": 3343788, "stop_desc": "Rue Traversi\u00e8re - 75112", "stop_name": "Ledru-Rollin"}, "geometry": {"type": "Point", "coordinates": [2.3759317370128947, 48.85119416536367]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0e9f3591e533cdcf63ad11b7fd2908e704a3a9c0", "fields": {"departement": "94", "stop_lat": 48.82563711172796, "code_postal": "94018", "stop_lon": 2.4074108054261223, "coord": [48.82563711172796, 2.4074108054261223], "stop_id": 3343804, "stop_desc": "Rue de Paris - 94018", "stop_name": "Libert\u00e9"}, "geometry": {"type": "Point", "coordinates": [2.4074108054261223, 48.82563711172796]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "af34509924a2b496653be78fb7e46b38fe808a8c", "fields": {"departement": "94", "stop_lat": 48.779757257844594, "code_postal": "94028", "stop_lon": 2.4593142910788286, "coord": [48.779757257844594, 2.4593142910788286], "stop_id": 3343817, "stop_desc": "Le Mont-Mesly - 94028", "stop_name": "Cr\u00e9teil-Pr\u00e9fecture (H\u00f4tel de Ville)"}, "geometry": {"type": "Point", "coordinates": [2.4593142910788286, 48.779757257844594]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3a3166f728772ebe351e522885c75b7861996dd2", "fields": {"departement": "94", "stop_lat": 48.81507632012976, "code_postal": "94046", "stop_lon": 2.4216317667306635, "coord": [48.81507632012976, 2.4216317667306635], "stop_id": 3343807, "stop_desc": "Mus\u00e9e Fragonard - 94046", "stop_name": "Ecole V\u00e9t\u00e9rinaire de Maisons-Alfort"}, "geometry": {"type": "Point", "coordinates": [2.4216317667306635, 48.81507632012976]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ef09821b23b91e67ffd47e6c7eb1f5b4885c61fe", "fields": {"departement": "94", "stop_lat": 48.808225347352376, "code_postal": "94046", "stop_lon": 2.4362758210511313, "coord": [48.808225347352376, 2.4362758210511313], "stop_id": 3343810, "stop_desc": "G\u00e9n\u00e9ral Leclerc (26/28 avenue du) - 94046", "stop_name": "Maisons-Alfort-Stade"}, "geometry": {"type": "Point", "coordinates": [2.4362758210511313, 48.808225347352376]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "68556ce1e6fabf080532bed33932bf26e65c9f78", "fields": {"departement": "75", "stop_lat": 48.858389963548795, "code_postal": "75104", "stop_lon": 2.3474837299932694, "coord": [48.858389963548795, 2.3474837299932694], "stop_id": 3442416, "stop_desc": "8 RUE SAINT-DENIS - 75104", "stop_name": "CHATELET"}, "geometry": {"type": "Point", "coordinates": [2.3474837299932694, 48.858389963548795]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "709f18d0bb90db160a2e985f3fea418147499cdd", "fields": {"departement": "75", "stop_lat": 48.85424719280736, "code_postal": "75106", "stop_lon": 2.3380309918243136, "coord": [48.85424719280736, 2.3380309918243136], "stop_id": 3442421, "stop_desc": "60-62 RUE MAZARINE - 75106", "stop_name": "MAZARINE"}, "geometry": {"type": "Point", "coordinates": [2.3380309918243136, 48.85424719280736]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "02380a86a67f403ebd75f0965d72ea2f2761b291", "fields": {"departement": "95", "stop_lat": 48.97012044217253, "code_postal": "95268", "stop_lon": 2.3958813486062143, "coord": [48.97012044217253, 2.3958813486062143], "stop_id": 3664133, "stop_desc": "AVENUE DE LA DIVISION LECLERC - 95268", "stop_name": "LYCEE ARTHUR RIMBAUD"}, "geometry": {"type": "Point", "coordinates": [2.3958813486062143, 48.97012044217253]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e080b1bcc24f6f6440882c06e5a12198b8bdbe09", "fields": {"departement": "95", "stop_lat": 48.97356093396896, "code_postal": "95268", "stop_lon": 2.3986017741043617, "coord": [48.97356093396896, 2.3986017741043617], "stop_id": 3664151, "stop_desc": "AVENUE FRANCOIS MITTERRAND - 95268", "stop_name": "DE GAULLE - MITTERRAND"}, "geometry": {"type": "Point", "coordinates": [2.3986017741043617, 48.97356093396896]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c6c7a974fc61f5a87e2f904231e48b8cfa6ebfc6", "fields": {"departement": "95", "stop_lat": 48.976350593870706, "code_postal": "95268", "stop_lon": 2.3906325320248634, "coord": [48.976350593870706, 2.3906325320248634], "stop_id": 3664129, "stop_desc": "AVENUE ANATOLE FRANCE - 95268", "stop_name": "GARGES - SARCELLES RER"}, "geometry": {"type": "Point", "coordinates": [2.3906325320248634, 48.976350593870706]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b776ad9015969090ccc00b3212b8b9c7f5d71623", "fields": {"departement": "95", "stop_lat": 48.97620613047465, "code_postal": "95268", "stop_lon": 2.4227136194721237, "coord": [48.97620613047465, 2.4227136194721237], "stop_id": 3663961, "stop_desc": "AV DE STALINGRAD - 95268", "stop_name": "ROND-POINT DU CHRIST"}, "geometry": {"type": "Point", "coordinates": [2.4227136194721237, 48.97620613047465]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a5a421c29a1839123d30f1be2388cf2b7523a645", "fields": {"departement": "95", "stop_lat": 48.98838702257805, "code_postal": "95277", "stop_lon": 2.4501389479315456, "coord": [48.98838702257805, 2.4501389479315456], "stop_id": 3663969, "stop_desc": "9 R EMMANUEL RAIN - 95277", "stop_name": "HOPITAL DE GONESSE"}, "geometry": {"type": "Point", "coordinates": [2.4501389479315456, 48.98838702257805]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a5e51c5bfdfb71f46560d9b4afbc58053e5c835d", "fields": {"departement": "95", "stop_lat": 48.96861794296457, "code_postal": "95268", "stop_lon": 2.399319342214708, "coord": [48.96861794296457, 2.399319342214708], "stop_id": 3664138, "stop_desc": "RUE DU TIERS POT - 95268", "stop_name": "MATERNELLE EIFFEL"}, "geometry": {"type": "Point", "coordinates": [2.399319342214708, 48.96861794296457]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ac0ce6f11833f088467d0b246fd2506b1d83c6c7", "fields": {"departement": "95", "stop_lat": 48.96861794296457, "code_postal": "95268", "stop_lon": 2.399319342214708, "coord": [48.96861794296457, 2.399319342214708], "stop_id": 3664162, "stop_desc": "RUE DU TIERS POT - 95268", "stop_name": "MATERNELLE EIFFEL"}, "geometry": {"type": "Point", "coordinates": [2.399319342214708, 48.96861794296457]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4e4f356333b50540593c22cf165f3f540ca49a66", "fields": {"departement": "95", "stop_lat": 48.96350572920714, "code_postal": "95268", "stop_lon": 2.3970203072744707, "coord": [48.96350572920714, 2.3970203072744707], "stop_id": 3664168, "stop_desc": "FACE 15 AVENUE DES MORILLONS - 95268", "stop_name": "GAILLARDS"}, "geometry": {"type": "Point", "coordinates": [2.3970203072744707, 48.96350572920714]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6fbd45a987b95427aac65fc160102b2da0a7e8f7", "fields": {"departement": "95", "stop_lat": 48.96500744422176, "code_postal": "95268", "stop_lon": 2.3950975841313187, "coord": [48.96500744422176, 2.3950975841313187], "stop_id": 3664141, "stop_desc": "RUE DES PRIEUSES - 95268", "stop_name": "LES DOUCETTES"}, "geometry": {"type": "Point", "coordinates": [2.3950975841313187, 48.96500744422176]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0b11575824e22669e8592dd3310d040b607cfded", "fields": {"departement": "93", "stop_lat": 48.952536508620526, "code_postal": "93007", "stop_lon": 2.462164198411897, "coord": [48.952536508620526, 2.462164198411897], "stop_id": 3666639, "stop_desc": "RUE ANATOLE SIGONNEAU - 93007", "stop_name": "ANATOLE SIGONNEAU - CENTRE D'AFFAIRES"}, "geometry": {"type": "Point", "coordinates": [2.462164198411897, 48.952536508620526]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e6ad4d7a7ffcff75388069f843e7e94542da3ee6", "fields": {"departement": "93", "stop_lat": 48.94368464811904, "code_postal": "93013", "stop_lon": 2.4328785582288304, "coord": [48.94368464811904, 2.4328785582288304], "stop_id": 3666629, "stop_desc": "CARREFOUR CHARLES LINDBERGH - 93013", "stop_name": "MICHELET-PARC DES EXPOSITIONS"}, "geometry": {"type": "Point", "coordinates": [2.4328785582288304, 48.94368464811904]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bcc0cc5b20176ac43ff348caa5f5ce99a082663f", "fields": {"departement": "93", "stop_lat": 48.94732999328036, "code_postal": "93030", "stop_lon": 2.436896621836972, "coord": [48.94732999328036, 2.436896621836972], "stop_id": 3666669, "stop_desc": "ESPLANADE DE L'AIR ET DE L'ESPACE - 93030", "stop_name": "MUSEE DE L'AIR ET DE L'ESPACE"}, "geometry": {"type": "Point", "coordinates": [2.436896621836972, 48.94732999328036]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d4865761212a7773c250e530ab2660cb77955a8f", "fields": {"departement": "93", "stop_lat": 48.95732552622408, "code_postal": "93005", "stop_lon": 2.463021846246865, "coord": [48.95732552622408, 2.463021846246865], "stop_id": 3666642, "stop_desc": "RUE ROBERT BREMOND (VOIE PRIVEE DE GARONOR) - 93005", "stop_name": "GARONOR-PORTE SUD"}, "geometry": {"type": "Point", "coordinates": [2.463021846246865, 48.95732552622408]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8ce28f4c20e6d9ef6b58f02b9da9dbc043092117", "fields": {"departement": "75", "stop_lat": 48.89769876400372, "code_postal": "75118", "stop_lon": 2.3589959717945, "coord": [48.89769876400372, 2.3589959717945], "stop_id": 3666627, "stop_desc": "85-87 RUE DE LA CHAPELLE - 75118", "stop_name": "PORTE DE LA CHAPELLE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.3589959717945, 48.89769876400372]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7633ca2a20a4dc5a95f1ca1b961e194cdb3f8695", "fields": {"departement": "75", "stop_lat": 48.880677255819144, "code_postal": "75110", "stop_lon": 2.357653442709006, "coord": [48.880677255819144, 2.357653442709006], "stop_id": 3666624, "stop_desc": "183 RUE DU FAUBOURG SAINT-DENIS - 75110", "stop_name": "GARE DU NORD"}, "geometry": {"type": "Point", "coordinates": [2.357653442709006, 48.880677255819144]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2cbd049e40b86d771d48fd593fd488ae55501e39", "fields": {"departement": "75", "stop_lat": 48.88082998036255, "code_postal": "75110", "stop_lon": 2.3579941644875797, "coord": [48.88082998036255, 2.3579941644875797], "stop_id": 3666675, "stop_desc": "184 RUE DU FAUBOURG SAINT-DENIS - 75110", "stop_name": "GARE DU NORD"}, "geometry": {"type": "Point", "coordinates": [2.3579941644875797, 48.88082998036255]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "509a88dad04f7bc7b8e8941c5d6adaf3e09a9104", "fields": {"departement": "93", "stop_lat": 49.00453842018161, "code_postal": "93073", "stop_lon": 2.547659161829925, "coord": [49.00453842018161, 2.547659161829925], "stop_id": 3666652, "stop_desc": "ROUTE DU NOYER DU CHAT - 93073", "stop_name": "RUE DES VIGNES"}, "geometry": {"type": "Point", "coordinates": [2.547659161829925, 49.00453842018161]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0e1e3c284dde1e071e2c07361869260eb4ecab8a", "fields": {"departement": "95", "stop_lat": 49.0093548695535, "code_postal": "95527", "stop_lon": 2.5477880446305514, "coord": [49.0093548695535, 2.5477880446305514], "stop_id": 3666658, "stop_desc": "ROUTE DES BADAUDS - 95527", "stop_name": "TOUR DE CONTROLE"}, "geometry": {"type": "Point", "coordinates": [2.5477880446305514, 49.0093548695535]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "43cbfd05914be34cfb6437e649b99e4b7c1c4392", "fields": {"departement": "93", "stop_lat": 48.972893084631856, "code_postal": "93078", "stop_lon": 2.51101471892199, "coord": [48.972893084631856, 2.51101471892199], "stop_id": 3666665, "stop_desc": "FACE 22 AVENUE DES NATIONS - 93078", "stop_name": "NATIONS"}, "geometry": {"type": "Point", "coordinates": [2.51101471892199, 48.972893084631856]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9bd19d12a7955e3479653041cd92699a6a07ce82", "fields": {"departement": "93", "stop_lat": 48.9526171602876, "code_postal": "93007", "stop_lon": 2.4623827191222363, "coord": [48.9526171602876, 2.4623827191222363], "stop_id": 3666579, "stop_desc": "RUE ANATOLE SIGONNEAU - 93007", "stop_name": "ANATOLE SIGONNEAU - CENTRE D'AFFAIRES"}, "geometry": {"type": "Point", "coordinates": [2.4623827191222363, 48.9526171602876]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a864af841400185b952e1a03003fa25aa94be0c1", "fields": {"departement": "95", "stop_lat": 48.986517805541546, "code_postal": "95527", "stop_lon": 2.5163310604157636, "coord": [48.986517805541546, 2.5163310604157636], "stop_id": 3666615, "stop_desc": "291 AVENUE DU BOIS DE LA PIE - 95527", "stop_name": "291, AVENUE DU BOIS DE LA PIE"}, "geometry": {"type": "Point", "coordinates": [2.5163310604157636, 48.986517805541546]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5178e35a0fcca6ebba89d338ea074c55a33d8593", "fields": {"departement": "93", "stop_lat": 48.94732999328036, "code_postal": "93030", "stop_lon": 2.436896621836972, "coord": [48.94732999328036, 2.436896621836972], "stop_id": 3666617, "stop_desc": "ESPLANADE DE L'AIR ET DE L'ESPACE - 93030", "stop_name": "MUSEE DE L'AIR ET DE L'ESPACE"}, "geometry": {"type": "Point", "coordinates": [2.436896621836972, 48.94732999328036]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "be04410ed0a6019cda779958966d9ab4e38a8d1f", "fields": {"departement": "75", "stop_lat": 48.89760883510394, "code_postal": "75118", "stop_lon": 2.359309444283519, "coord": [48.89760883510394, 2.359309444283519], "stop_id": 3666567, "stop_desc": "FACE AU 100 RUE DE LA CHAPELLE - 75118", "stop_name": "PORTE DE LA CHAPELLE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.359309444283519, 48.89760883510394]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d5a16e67ec6e137b1d4667bfa5dd4b5a1b4c4532", "fields": {"departement": "93", "stop_lat": 49.01051954688492, "code_postal": "93073", "stop_lon": 2.559663932280221, "coord": [49.01051954688492, 2.559663932280221], "stop_id": 3666610, "stop_desc": "AEROPORT CHARLES DE GAULLE (T3) - 93073", "stop_name": "ROISSYPOLE - GARE - RER"}, "geometry": {"type": "Point", "coordinates": [2.559663932280221, 49.01051954688492]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "54cd2dd54998c31e589892d76497bd359786dd3a", "fields": {"departement": "95", "stop_lat": 48.989015745880955, "code_postal": "95527", "stop_lon": 2.5165308783227034, "coord": [48.989015745880955, 2.5165308783227034], "stop_id": 3666599, "stop_desc": "AVENUE DU BOIS DE LA PIE - 95527", "stop_name": "PARC DES NATIONS"}, "geometry": {"type": "Point", "coordinates": [2.5165308783227034, 48.989015745880955]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "40bf98f7f5af64c8d16b913a393d3a3baba103f3", "fields": {"departement": "75", "stop_lat": 48.88506276042979, "code_postal": "75118", "stop_lon": 2.3591678300283867, "coord": [48.88506276042979, 2.3591678300283867], "stop_id": 3666618, "stop_desc": "5 RUE MARX DORMOY - 75118", "stop_name": "PLACE DE LA CHAPELLE"}, "geometry": {"type": "Point", "coordinates": [2.3591678300283867, 48.88506276042979]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8986d1f22f5ae3974312f66791e672acce8a06f1", "fields": {"departement": "93", "stop_lat": 49.00453842018161, "code_postal": "93073", "stop_lon": 2.547659161829925, "coord": [49.00453842018161, 2.547659161829925], "stop_id": 3666609, "stop_desc": "ROUTE DU NOYER DU CHAT - 93073", "stop_name": "RUE DES VIGNES"}, "geometry": {"type": "Point", "coordinates": [2.547659161829925, 49.00453842018161]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bb4e67bbef58da9c30b27cd3bc8d1f6c76ba14c1", "fields": {"departement": "93", "stop_lat": 48.91383679457352, "code_postal": "93008", "stop_lon": 2.446090473069425, "coord": [48.91383679457352, 2.446090473069425], "stop_id": 3664426, "stop_desc": "FACE 151 RUE CHARLES GIDE - 93008", "stop_name": "LES LIMITES"}, "geometry": {"type": "Point", "coordinates": [2.446090473069425, 48.91383679457352]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c2e1f440b45474d22719592ef59a4837c571b51a", "fields": {"departement": "93", "stop_lat": 48.95433871107077, "code_postal": "93005", "stop_lon": 2.457433442997565, "coord": [48.95433871107077, 2.457433442997565], "stop_id": 3666582, "stop_desc": "RUE ROBERT BREMOND - 93005", "stop_name": "ROBERT BREMOND"}, "geometry": {"type": "Point", "coordinates": [2.457433442997565, 48.95433871107077]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c6788c015ccf61c7d940c467464c9c711860434c", "fields": {"departement": "93", "stop_lat": 48.94368464811904, "code_postal": "93013", "stop_lon": 2.4328785582288304, "coord": [48.94368464811904, 2.4328785582288304], "stop_id": 3666733, "stop_desc": "CARREFOUR CHARLES LINDBERGH - 93013", "stop_name": "MICHELET-PARC DES EXPOSITIONS"}, "geometry": {"type": "Point", "coordinates": [2.4328785582288304, 48.94368464811904]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "420ce56d65c702c25ba1060c1965038409affc72", "fields": {"departement": "75", "stop_lat": 48.88362477105826, "code_postal": "75110", "stop_lon": 2.3593443757229804, "coord": [48.88362477105826, 2.3593443757229804], "stop_id": 3666729, "stop_desc": "226-228 RUE DU FAUBOURG SAINT-DENIS - 75110", "stop_name": "PLACE DE LA CHAPELLE"}, "geometry": {"type": "Point", "coordinates": [2.3593443757229804, 48.88362477105826]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3a29b183fe7c3e882f0e4dd5c50a2329eefb8e7f", "fields": {"departement": "93", "stop_lat": 49.01051954688492, "code_postal": "93073", "stop_lon": 2.559663932280221, "coord": [49.01051954688492, 2.559663932280221], "stop_id": 3666758, "stop_desc": "AEROPORT CHARLES DE GAULLE (T3) - 93073", "stop_name": "ROISSYPOLE - GARE - RER"}, "geometry": {"type": "Point", "coordinates": [2.559663932280221, 49.01051954688492]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "318ba6fb878ce05de93e8da7261872377dd2e046", "fields": {"departement": "93", "stop_lat": 48.94345914313876, "code_postal": "93013", "stop_lon": 2.4339150066913304, "coord": [48.94345914313876, 2.4339150066913304], "stop_id": 3666732, "stop_desc": "AVENUE ALAIN BOZEL - 93013", "stop_name": "MICHELET-PARC DES EXPOSITIONS"}, "geometry": {"type": "Point", "coordinates": [2.4339150066913304, 48.94345914313876]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bffa30ddfb4a87183c0fe769da80d3a934e22881", "fields": {"departement": "93", "stop_lat": 48.95030571554676, "code_postal": "93007", "stop_lon": 2.4641373075254696, "coord": [48.95030571554676, 2.4641373075254696], "stop_id": 3666740, "stop_desc": "FACE 9 AVENUE EDOUARD RENAULT - 93007", "stop_name": "DESCARTES - RENAULT"}, "geometry": {"type": "Point", "coordinates": [2.4641373075254696, 48.95030571554676]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7e4067273c35d604c9f9985f7d97fd11623a3d5c", "fields": {"departement": "93", "stop_lat": 49.004269809288566, "code_postal": "93073", "stop_lon": 2.5712882222403115, "coord": [49.004269809288566, 2.5712882222403115], "stop_id": 3666756, "stop_desc": "AEROPORT CHARLES DE GAULLE - 93073", "stop_name": "GARE TGV-SNCF"}, "geometry": {"type": "Point", "coordinates": [2.5712882222403115, 49.004269809288566]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aaa4cf2da062498a7efaffb89b70f238b709114f", "fields": {"departement": "95", "stop_lat": 49.0093548695535, "code_postal": "95527", "stop_lon": 2.5477880446305514, "coord": [49.0093548695535, 2.5477880446305514], "stop_id": 3666760, "stop_desc": "ROUTE DES BADAUDS - 95527", "stop_name": "TOUR DE CONTROLE"}, "geometry": {"type": "Point", "coordinates": [2.5477880446305514, 49.0093548695535]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ab8225611ea72de49a91a04ef698fb754dfc64e4", "fields": {"departement": "77", "stop_lat": 49.015367784893186, "code_postal": "77282", "stop_lon": 2.541992530464244, "coord": [49.015367784893186, 2.541992530464244], "stop_id": 3666761, "stop_desc": "AEROPORT CHARLES DE GAULLE - 77282", "stop_name": "TERMINAL 1"}, "geometry": {"type": "Point", "coordinates": [2.541992530464244, 49.015367784893186]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2e158f5ed137924253abe55f60025f36114ee534", "fields": {"departement": "95", "stop_lat": 49.01608779865829, "code_postal": "95527", "stop_lon": 2.5305328299201864, "coord": [49.01608779865829, 2.5305328299201864], "stop_id": 3666763, "stop_desc": "ROUTE DES ANNIVERSAIRES - 95527", "stop_name": "GENDARMERIE"}, "geometry": {"type": "Point", "coordinates": [2.5305328299201864, 49.01608779865829]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "241c93277245aee054ac588853a82ea3f938cfcd", "fields": {"departement": "93", "stop_lat": 48.95016764576287, "code_postal": "93030", "stop_lon": 2.439453648187777, "coord": [48.95016764576287, 2.439453648187777], "stop_id": 3666768, "stop_desc": "FACE 180 AV DU 8 MAI 1945 - 93030", "stop_name": "LENINE"}, "geometry": {"type": "Point", "coordinates": [2.439453648187777, 48.95016764576287]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "480ec9d3dea42fad4e687ade45c0f1930399307a", "fields": {"departement": "93", "stop_lat": 48.952536508620526, "code_postal": "93007", "stop_lon": 2.462164198411897, "coord": [48.952536508620526, 2.462164198411897], "stop_id": 3666691, "stop_desc": "RUE ANATOLE SIGONNEAU - 93007", "stop_name": "ANATOLE SIGONNEAU - CENTRE D'AFFAIRES"}, "geometry": {"type": "Point", "coordinates": [2.462164198411897, 48.952536508620526]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8b48552dcded82cfcce50400e29b1b733113b050", "fields": {"departement": "93", "stop_lat": 48.94368464811904, "code_postal": "93013", "stop_lon": 2.4328785582288304, "coord": [48.94368464811904, 2.4328785582288304], "stop_id": 3666681, "stop_desc": "CARREFOUR CHARLES LINDBERGH - 93013", "stop_name": "MICHELET-PARC DES EXPOSITIONS"}, "geometry": {"type": "Point", "coordinates": [2.4328785582288304, 48.94368464811904]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "94c74f5fc89602124cc2e2eb4e13a8db12488230", "fields": {"departement": "75", "stop_lat": 48.89760883510394, "code_postal": "75118", "stop_lon": 2.359309444283519, "coord": [48.89760883510394, 2.359309444283519], "stop_id": 3666678, "stop_desc": "FACE AU 100 RUE DE LA CHAPELLE - 75118", "stop_name": "PORTE DE LA CHAPELLE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.359309444283519, 48.89760883510394]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f2d3ae95316ea972b699216602c2b57cceea3bad", "fields": {"departement": "93", "stop_lat": 48.94345914313876, "code_postal": "93013", "stop_lon": 2.4339150066913304, "coord": [48.94345914313876, 2.4339150066913304], "stop_id": 3666680, "stop_desc": "AVENUE ALAIN BOZEL - 93013", "stop_name": "MICHELET-PARC DES EXPOSITIONS"}, "geometry": {"type": "Point", "coordinates": [2.4339150066913304, 48.94345914313876]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1f1498211332cd018a357cf675ed7da23cced342", "fields": {"departement": "75", "stop_lat": 48.88506276042979, "code_postal": "75118", "stop_lon": 2.3591678300283867, "coord": [48.88506276042979, 2.3591678300283867], "stop_id": 3666722, "stop_desc": "5 RUE MARX DORMOY - 75118", "stop_name": "PLACE DE LA CHAPELLE"}, "geometry": {"type": "Point", "coordinates": [2.3591678300283867, 48.88506276042979]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ec4538d9b626bb769052a0b7c8e5122161b3dcc2", "fields": {"departement": "75", "stop_lat": 48.87611168124885, "code_postal": "75110", "stop_lon": 2.357883275054754, "coord": [48.87611168124885, 2.357883275054754], "stop_id": 3666725, "stop_desc": "9-11 RUE DU 8 MAI 1945 - 75110", "stop_name": "GARE DE L'EST"}, "geometry": {"type": "Point", "coordinates": [2.357883275054754, 48.87611168124885]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "607cbe3e594ae539ff715694d83a792ad640cc79", "fields": {"departement": "95", "stop_lat": 49.01608779865829, "code_postal": "95527", "stop_lon": 2.5305328299201864, "coord": [49.01608779865829, 2.5305328299201864], "stop_id": 3666715, "stop_desc": "ROUTE DES ANNIVERSAIRES - 95527", "stop_name": "GENDARMERIE"}, "geometry": {"type": "Point", "coordinates": [2.5305328299201864, 49.01608779865829]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "85ff9b8cbb88d823a75f991773f495fba3c933fe", "fields": {"departement": "93", "stop_lat": 48.95023932361886, "code_postal": "93007", "stop_lon": 2.4496873518004296, "coord": [48.95023932361886, 2.4496873518004296], "stop_id": 3666684, "stop_desc": "AVENUE DESCARTES - 93007", "stop_name": "MAURICE AUDIN"}, "geometry": {"type": "Point", "coordinates": [2.4496873518004296, 48.95023932361886]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0c9a912269d16a9a1508de440db744581c994fe6", "fields": {"departement": "95", "stop_lat": 48.998751840594245, "code_postal": "95527", "stop_lon": 2.525742518298485, "coord": [48.998751840594245, 2.525742518298485], "stop_id": 3666703, "stop_desc": "RUE DU REMBLAI - 95527", "stop_name": "CARGO CENTRE"}, "geometry": {"type": "Point", "coordinates": [2.525742518298485, 48.998751840594245]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f9c3865399f43d86e26de902aaed412518213bc3", "fields": {"departement": "93", "stop_lat": 48.99173782611795, "code_postal": "93073", "stop_lon": 2.5286392829463, "coord": [48.99173782611795, 2.5286392829463], "stop_id": 3666700, "stop_desc": "ROUTE DU MIDI - 93073", "stop_name": "RUE DU TE"}, "geometry": {"type": "Point", "coordinates": [2.5286392829463, 48.99173782611795]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d5d8c9bea4ec601a953914da5298cb7d195eba0c", "fields": {"departement": "93", "stop_lat": 48.926484956933145, "code_postal": "93007", "stop_lon": 2.469329770033911, "coord": [48.926484956933145, 2.469329770033911], "stop_id": 3664413, "stop_desc": "122 AVENUE PAUL VAILLANT COUTURIER - 93007", "stop_name": "PIERRE MONTILLET"}, "geometry": {"type": "Point", "coordinates": [2.469329770033911, 48.926484956933145]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1eb2d6c7e13bc12e9df17bafe9ed18ce6f03ca3d", "fields": {"departement": "93", "stop_lat": 48.91080764698685, "code_postal": "93008", "stop_lon": 2.4466567527966694, "coord": [48.91080764698685, 2.4466567527966694], "stop_id": 3664393, "stop_desc": "RUE PIERRE SEMARD - 93008", "stop_name": "PIERRE SEMARD - INDEPENDANCE"}, "geometry": {"type": "Point", "coordinates": [2.4466567527966694, 48.91080764698685]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bcf760aa5f3c6e833311cbebbeb0b9ed40fe3adf", "fields": {"departement": "93", "stop_lat": 48.90698595535943, "code_postal": "93008", "stop_lon": 2.449020887590383, "coord": [48.90698595535943, 2.449020887590383], "stop_id": 3664389, "stop_desc": "PISTE GARE ROUTIERE - 93008", "stop_name": "BOBIGNY - PABLO PICASSO"}, "geometry": {"type": "Point", "coordinates": [2.449020887590383, 48.90698595535943]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c930687ce4127ab88cd00b3f7c130f429804d713", "fields": {"departement": "95", "stop_lat": 48.96599684793511, "code_postal": "95268", "stop_lon": 2.4099350400838073, "coord": [48.96599684793511, 2.4099350400838073], "stop_id": 3664173, "stop_desc": "AVENUE AMBROISE CROIZAT - 95268", "stop_name": "PLACE DU 19 MARS 1962"}, "geometry": {"type": "Point", "coordinates": [2.4099350400838073, 48.96599684793511]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "694aa666d25af88193b0c1be2f0900c7cbf0bc4b", "fields": {"departement": "95", "stop_lat": 48.96376434522058, "code_postal": "95268", "stop_lon": 2.4008830767555094, "coord": [48.96376434522058, 2.4008830767555094], "stop_id": 3664170, "stop_desc": "FACE 23 AVENUE DES MORILLONS - 95268", "stop_name": "MORILLONS - VARLIN"}, "geometry": {"type": "Point", "coordinates": [2.4008830767555094, 48.96376434522058]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f066e2e17514468640d501d72890fea033b79a67", "fields": {"departement": "93", "stop_lat": 48.925939522751285, "code_postal": "93007", "stop_lon": 2.466805283664818, "coord": [48.925939522751285, 2.466805283664818], "stop_id": 3664411, "stop_desc": "158-160 AVENUE PAUL VAILLANT COUTURIER - 93007", "stop_name": "SUFFREN"}, "geometry": {"type": "Point", "coordinates": [2.466805283664818, 48.925939522751285]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ab4712cbcc2e662688a9bf0eba37dd9d0af82aa4", "fields": {"departement": "93", "stop_lat": 48.92806904712401, "code_postal": "93007", "stop_lon": 2.475157626866216, "coord": [48.92806904712401, 2.475157626866216], "stop_id": 3664416, "stop_desc": "FACE 52 AVENUE PAUL VAILLANT COUTURIER - 93007", "stop_name": "QUEBEC"}, "geometry": {"type": "Point", "coordinates": [2.475157626866216, 48.92806904712401]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "10b42fb7a727977b17c04658c4211766df15573b", "fields": {"departement": "95", "stop_lat": 48.963674406067874, "code_postal": "95268", "stop_lon": 2.4010194490107435, "coord": [48.963674406067874, 2.4010194490107435], "stop_id": 3664169, "stop_desc": "AVENUE DES MORILLONS - 95268", "stop_name": "MORILLONS - VARLIN"}, "geometry": {"type": "Point", "coordinates": [2.4010194490107435, 48.963674406067874]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b535144e71108241806efde9170998b5c89162e6", "fields": {"departement": "95", "stop_lat": 48.96313358918207, "code_postal": "95268", "stop_lon": 2.4039804292554754, "coord": [48.96313358918207, 2.4039804292554754], "stop_id": 3664171, "stop_desc": "AVENUE DE STALINGRAD - 95268", "stop_name": "DEMUSOIS"}, "geometry": {"type": "Point", "coordinates": [2.4039804292554754, 48.96313358918207]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a88085aa9a0e3485b93b817b5fb80d29148ff0f4", "fields": {"departement": "93", "stop_lat": 48.90328559660606, "code_postal": "93008", "stop_lon": 2.4247336316105788, "coord": [48.90328559660606, 2.4247336316105788], "stop_id": 3664378, "stop_desc": "RUE BERNARD - 93008", "stop_name": "LES VIGNES"}, "geometry": {"type": "Point", "coordinates": [2.4247336316105788, 48.90328559660606]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9b345b3bfaa96d123acbf009cf899b9bf900657f", "fields": {"departement": "93", "stop_lat": 48.97394864271551, "code_postal": "93078", "stop_lon": 2.5143218113031525, "coord": [48.97394864271551, 2.5143218113031525], "stop_id": 3666790, "stop_desc": "AVENUE DES NATIONS - 93078", "stop_name": "PARC DES EXPOSITIONS RER"}, "geometry": {"type": "Point", "coordinates": [2.5143218113031525, 48.97394864271551]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8adbf427696695812e9e1c3891e98eeb08635b36", "fields": {"departement": "93", "stop_lat": 49.004269809288566, "code_postal": "93073", "stop_lon": 2.5712882222403115, "coord": [49.004269809288566, 2.5712882222403115], "stop_id": 3666795, "stop_desc": "AEROPORT CHARLES DE GAULLE - 93073", "stop_name": "GARE TGV-SNCF"}, "geometry": {"type": "Point", "coordinates": [2.5712882222403115, 49.004269809288566]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5b6635bd25cc75757c013189481c81d341d64842", "fields": {"departement": "93", "stop_lat": 48.94982606812028, "code_postal": "93007", "stop_lon": 2.4395484863144565, "coord": [48.94982606812028, 2.4395484863144565], "stop_id": 3666779, "stop_desc": "174-176 AVENUE DU 8 MAI 1945 - 93007", "stop_name": "LENINE"}, "geometry": {"type": "Point", "coordinates": [2.4395484863144565, 48.94982606812028]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4b3908d468dec6c2033797aaddb70d6550c30d50", "fields": {"departement": "94", "stop_lat": 48.76456680792492, "code_postal": "94034", "stop_lon": 2.3276559189748434, "coord": [48.76456680792492, 2.3276559189748434], "stop_id": 4651120, "stop_desc": "FACE 43 R EMILE ZOLA - 94034", "stop_name": "POSTE ANNEXE"}, "geometry": {"type": "Point", "coordinates": [2.3276559189748434, 48.76456680792492]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "82dd84fef438716480711581893735887c0de53f", "fields": {"departement": "75", "stop_lat": 48.830474895128575, "code_postal": "75114", "stop_lon": 2.3292909331491076, "coord": [48.830474895128575, 2.3292909331491076], "stop_id": 4651123, "stop_desc": "29-31 AVENUE DU GENERAL LECLERC - 75114", "stop_name": "MOUTON - DUVERNET"}, "geometry": {"type": "Point", "coordinates": [2.3292909331491076, 48.830474895128575]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f5c71fcf9c55d53b6708cc0c4a15faee5cc5a195", "fields": {"departement": "75", "stop_lat": 48.846041587705, "code_postal": "75105", "stop_lon": 2.3402777279421545, "coord": [48.846041587705, 2.3402777279421545], "stop_id": 4651130, "stop_desc": "75 BOULEVARD SAINT-MICHEL - 75105", "stop_name": "LUXEMBOURG"}, "geometry": {"type": "Point", "coordinates": [2.3402777279421545, 48.846041587705]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "21efb00c0eacc95cd055389a4648d6f58936b6a6", "fields": {"departement": "75", "stop_lat": 48.850067906070635, "code_postal": "75105", "stop_lon": 2.3425522330838273, "coord": [48.850067906070635, 2.3425522330838273], "stop_id": 4651131, "stop_desc": "29-31 BOULEVARD SAINT-MICHEL - 75105", "stop_name": "LES ECOLES"}, "geometry": {"type": "Point", "coordinates": [2.3425522330838273, 48.850067906070635]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9adf7573aefec8798feb612b67138cffadf74b2c", "fields": {"departement": "75", "stop_lat": 48.85234167570838, "code_postal": "75105", "stop_lon": 2.343778173799205, "coord": [48.85234167570838, 2.343778173799205], "stop_id": 4651132, "stop_desc": "7 BOULEVARD SAINT-MICHEL - 75105", "stop_name": "SAINT-MICHEL - SAINT-GERMAIN"}, "geometry": {"type": "Point", "coordinates": [2.343778173799205, 48.85234167570838]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eb12aac88f3173e14580cf478fc99881130da6de", "fields": {"departement": "93", "stop_lat": 48.90129304047551, "code_postal": "93055", "stop_lon": 2.389710036547281, "coord": [48.90129304047551, 2.389710036547281], "stop_id": 4658158, "stop_desc": "32 AVENUE JEAN JAURES - 93055", "stop_name": "MAGENTA"}, "geometry": {"type": "Point", "coordinates": [2.389710036547281, 48.90129304047551]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f759dabcf537b89e2fb3c983f024ef71053a414d", "fields": {"departement": "93", "stop_lat": 48.91432621093042, "code_postal": "93001", "stop_lon": 2.403835749858755, "coord": [48.91432621093042, 2.403835749858755], "stop_id": 4658164, "stop_desc": "AVENUE JEAN JAURES - 93001", "stop_name": "FORT D'AUBERVILLIERS - METRO"}, "geometry": {"type": "Point", "coordinates": [2.403835749858755, 48.91432621093042]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b1f2e78a8b5610ad71274254347cd629499be3d5", "fields": {"departement": "93", "stop_lat": 48.93282676236949, "code_postal": "93013", "stop_lon": 2.423433159202592, "coord": [48.93282676236949, 2.423433159202592], "stop_id": 4658175, "stop_desc": "45 AVENUE DE LA DIVISION LECLERC - 93013", "stop_name": "JEAN JAURES - DIVISION LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.423433159202592, 48.93282676236949]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c426e5e0597d2b95700c316690da911ece75f1d7", "fields": {"departement": "93", "stop_lat": 48.9394631577265, "code_postal": "93013", "stop_lon": 2.4299513938399637, "coord": [48.9394631577265, 2.4299513938399637], "stop_id": 4658181, "stop_desc": "135 AVENUE DE LA DIVISION LECLERC - 93013", "stop_name": "EGLISE DU BOURGET"}, "geometry": {"type": "Point", "coordinates": [2.4299513938399637, 48.9394631577265]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dba2ade4b3cc941ee91ae69face01669e1d85107", "fields": {"departement": "93", "stop_lat": 48.9481288514466, "code_postal": "93007", "stop_lon": 2.438044271536468, "coord": [48.9481288514466, 2.438044271536468], "stop_id": 4658184, "stop_desc": "AVENUE DU 8 MAI 1945 - 93007", "stop_name": "MUSEE DE L'AIR ET DE L'ESPACE"}, "geometry": {"type": "Point", "coordinates": [2.438044271536468, 48.9481288514466]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "88c11f2931e0789f3f28ca0720428572ceaf3b83", "fields": {"departement": "93", "stop_lat": 48.95551668453338, "code_postal": "93007", "stop_lon": 2.4473789709474105, "coord": [48.95551668453338, 2.4473789709474105], "stop_id": 4658191, "stop_desc": "RUE DES FRERES LUMIERE - 93007", "stop_name": "MANOUCHIAN"}, "geometry": {"type": "Point", "coordinates": [2.4473789709474105, 48.95551668453338]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "49820c7192c1cc0868aaad1d8c6cdda244c2b89b", "fields": {"departement": "93", "stop_lat": 48.95305017022044, "code_postal": "93030", "stop_lon": 2.44201104581659, "coord": [48.95305017022044, 2.44201104581659], "stop_id": 4658195, "stop_desc": "FACE 212 AVENUE DU 8 MAI 1945 - 93030", "stop_name": "CHEMIN NOTRE DAME"}, "geometry": {"type": "Point", "coordinates": [2.44201104581659, 48.95305017022044]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9c92f3f3cc2e390650409f9b662294d407b7daed", "fields": {"departement": "93", "stop_lat": 48.95016764576287, "code_postal": "93030", "stop_lon": 2.439453648187777, "coord": [48.95016764576287, 2.439453648187777], "stop_id": 4658196, "stop_desc": "FACE 180 AV DU 8 MAI 1945 - 93030", "stop_name": "LENINE"}, "geometry": {"type": "Point", "coordinates": [2.439453648187777, 48.95016764576287]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8e99c8f96a07bf3cf9f0177afb276ec3f76a4ab6", "fields": {"departement": "93", "stop_lat": 48.91614972446159, "code_postal": "93001", "stop_lon": 2.4053380274974674, "coord": [48.91614972446159, 2.4053380274974674], "stop_id": 4658201, "stop_desc": "FACE 186 AVENUE JEAN JAURES - 93001", "stop_name": "HELENE COCHENNEC"}, "geometry": {"type": "Point", "coordinates": [2.4053380274974674, 48.91614972446159]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6ac0b1c94e9d5af997e683c8df740ec116df7b1d", "fields": {"departement": "93", "stop_lat": 48.93285336721684, "code_postal": "93013", "stop_lon": 2.4239242493787803, "coord": [48.93285336721684, 2.4239242493787803], "stop_id": 4658224, "stop_desc": "2 AVENUE DE LA DIVISION LECLERC - 93013", "stop_name": "JEAN JAURES - DIVISION LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.4239242493787803, 48.93285336721684]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2079056cff429b89153206069d51a18ac7dacf8d", "fields": {"departement": "93", "stop_lat": 48.93447002280072, "code_postal": "93013", "stop_lon": 2.425263733014868, "coord": [48.93447002280072, 2.425263733014868], "stop_id": 4658227, "stop_desc": "65 AVENUE DE LA DIVISION LECLERC - 93013", "stop_name": "ANIZAN CAVILLON - HOTEL DE VILLE"}, "geometry": {"type": "Point", "coordinates": [2.425263733014868, 48.93447002280072]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "edd93f58d242a8e939a6af203af7b58cd3a9ccfd", "fields": {"departement": "93", "stop_lat": 48.95453149107928, "code_postal": "93030", "stop_lon": 2.443692487028592, "coord": [48.95453149107928, 2.443692487028592], "stop_id": 4658237, "stop_desc": "AVENUE 8 MAI 1945 - 93030", "stop_name": "PONT YBLON - SANTOS DUMONT"}, "geometry": {"type": "Point", "coordinates": [2.443692487028592, 48.95453149107928]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bf00e3fb44be43c979428a90b0727144512ce11a", "fields": {"departement": "93", "stop_lat": 48.95610285084341, "code_postal": "93030", "stop_lon": 2.4451558718862723, "coord": [48.95610285084341, 2.4451558718862723], "stop_id": 4658239, "stop_desc": "238 AV DU 8 MAI 1945 - 93030", "stop_name": "COLONEL FABIEN"}, "geometry": {"type": "Point", "coordinates": [2.4451558718862723, 48.95610285084341]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "52655aebbc9560d0ff053994568c9007c4e3f05c", "fields": {"departement": "95", "stop_lat": 48.967571220044576, "code_postal": "95277", "stop_lon": 2.462159540793376, "coord": [48.967571220044576, 2.462159540793376], "stop_id": 4658247, "stop_desc": "AV DU 21EME SIECLE - 95277", "stop_name": "ZAC DES TULIPES NORD"}, "geometry": {"type": "Point", "coordinates": [2.462159540793376, 48.967571220044576]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f870ddb05de705274580b1aee4ffd010f6d51664", "fields": {"departement": "95", "stop_lat": 48.96750889809351, "code_postal": "95277", "stop_lon": 2.4615997687632154, "coord": [48.96750889809351, 2.4615997687632154], "stop_id": 4658248, "stop_desc": "AV DU 21EME SIECLE - 95277", "stop_name": "ZAC DES TULIPES NORD"}, "geometry": {"type": "Point", "coordinates": [2.4615997687632154, 48.96750889809351]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c1f781f3eb393bd6d071a40d0055ecccb5078977", "fields": {"departement": "93", "stop_lat": 48.947437743110015, "code_postal": "93030", "stop_lon": 2.437005981300839, "coord": [48.947437743110015, 2.437005981300839], "stop_id": 4658251, "stop_desc": "FACE 122 AVENUE DU 8 MAI 1945 - 93030", "stop_name": "MUSEE DE L'AIR ET DE L'ESPACE"}, "geometry": {"type": "Point", "coordinates": [2.437005981300839, 48.947437743110015]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "37dad6721259af932a8a037e7f1c23e7ab5f4ef3", "fields": {"departement": "93", "stop_lat": 48.906134844593, "code_postal": "93001", "stop_lon": 2.394568330990257, "coord": [48.906134844593, 2.394568330990257], "stop_id": 4658257, "stop_desc": "103 BIS AVENUE JEAN JAURES - 93001", "stop_name": "CONDORCET"}, "geometry": {"type": "Point", "coordinates": [2.394568330990257, 48.906134844593]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ba9e06ffde20fb7936b9b4b9cff608b961fde801", "fields": {"departement": "75", "stop_lat": 48.88590111544366, "code_postal": "75117", "stop_lon": 2.292351079713893, "coord": [48.88590111544366, 2.292351079713893], "stop_id": 4677616, "stop_desc": "PLACE STUART MERRILL - 75117", "stop_name": "PORTE DE CHAMPERRET"}, "geometry": {"type": "Point", "coordinates": [2.292351079713893, 48.88590111544366]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "deaa0a4d6dc2c17b1e147a2347fa863e114e6a6e", "fields": {"departement": "92", "stop_lat": 48.90299373130433, "code_postal": "92024", "stop_lon": 2.2898824542280054, "coord": [48.90299373130433, 2.2898824542280054], "stop_id": 4677630, "stop_desc": "FACE 32 ROUTE D'ASNIERES - 92024", "stop_name": "QUAI DE CLICHY"}, "geometry": {"type": "Point", "coordinates": [2.2898824542280054, 48.90299373130433]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9956d5fe31a84a29ecf13c95ff9a2a69bb516908", "fields": {"departement": "92", "stop_lat": 48.9097414682376, "code_postal": "92004", "stop_lon": 2.286126914340587, "coord": [48.9097414682376, 2.286126914340587], "stop_id": 4677634, "stop_desc": "5-7 AV D'ARGENTEUIL - 92004", "stop_name": "GALLIENI"}, "geometry": {"type": "Point", "coordinates": [2.286126914340587, 48.9097414682376]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "33daa2cb4e6575ec01262b9626d8dca5d71647a5", "fields": {"departement": "92", "stop_lat": 48.91559054370498, "code_postal": "92004", "stop_lon": 2.2827940520136947, "coord": [48.91559054370498, 2.2827940520136947], "stop_id": 4677637, "stop_desc": "112 AVENUE D'ARGENTEUIL - 92004", "stop_name": "RUE DES CHAMPS"}, "geometry": {"type": "Point", "coordinates": [2.2827940520136947, 48.91559054370498]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "85994885631730f35038f3108719cf54862842e4", "fields": {"departement": "92", "stop_lat": 48.92757405566248, "code_postal": "92004", "stop_lon": 2.272606929228948, "coord": [48.92757405566248, 2.272606929228948], "stop_id": 4677643, "stop_desc": "384 AVENUE D'ARGENTEUIL - 92004", "stop_name": "QUATRE ROUTES"}, "geometry": {"type": "Point", "coordinates": [2.272606929228948, 48.92757405566248]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "23f4d7a9d8cc1cbb493ec815fa1931c5505b4dbc", "fields": {"departement": "92", "stop_lat": 48.92822094965031, "code_postal": "92004", "stop_lon": 2.2723060650553872, "coord": [48.92822094965031, 2.2723060650553872], "stop_id": 4677644, "stop_desc": "4 AVENUE D'ORGEMONT - 92004", "stop_name": "ROBERT LAVERGNE"}, "geometry": {"type": "Point", "coordinates": [2.2723060650553872, 48.92822094965031]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "228a3d6347b8d43ddddab217c1c17bcebd88a3bf", "fields": {"departement": "92", "stop_lat": 48.93104570600111, "code_postal": "92004", "stop_lon": 2.277812954592855, "coord": [48.93104570600111, 2.277812954592855], "stop_id": 4677647, "stop_desc": "0 RUE DU 18 JUIN 1940 - 92004", "stop_name": "ASNIERES-18 JUIN 1940"}, "geometry": {"type": "Point", "coordinates": [2.277812954592855, 48.93104570600111]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "34d769d3346b77c00043aa9ae4b4e97db7efa342", "fields": {"departement": "92", "stop_lat": 48.93225782669017, "code_postal": "92004", "stop_lon": 2.275629162856483, "coord": [48.93225782669017, 2.275629162856483], "stop_id": 4677649, "stop_desc": "RUE HENRI POINCARE - 92004", "stop_name": "MOURINOUX"}, "geometry": {"type": "Point", "coordinates": [2.275629162856483, 48.93225782669017]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "288c03d16bd380a8bce86aebcbf958cac4138646", "fields": {"departement": "92", "stop_lat": 48.923333845498576, "code_postal": "92009", "stop_lon": 2.275667055854338, "coord": [48.923333845498576, 2.275667055854338], "stop_id": 4677652, "stop_desc": "299 AVENUE D'ARGENTEUIL - 92009", "stop_name": "GRAMME"}, "geometry": {"type": "Point", "coordinates": [2.275667055854338, 48.923333845498576]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f343411f35c977fab09d956cb6cee2004fc6b8be", "fields": {"departement": "75", "stop_lat": 48.88919960834509, "code_postal": "75117", "stop_lon": 2.292852482879144, "coord": [48.88919960834509, 2.292852482879144], "stop_id": 4677656, "stop_desc": "221 RUE DE COURCELLES - 75117", "stop_name": "WILSON - COURCELLES"}, "geometry": {"type": "Point", "coordinates": [2.292852482879144, 48.88919960834509]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4a5cbc6e616f18c30f689f9d816d28869d1bc92a", "fields": {"departement": "75", "stop_lat": 48.81939954266395, "code_postal": "75113", "stop_lon": 2.363155154648737, "coord": [48.81939954266395, 2.363155154648737], "stop_id": 4677657, "stop_desc": "FACE 142 BOULEVARD MASSENA - 75113", "stop_name": "PORTE DE CHOISY"}, "geometry": {"type": "Point", "coordinates": [2.363155154648737, 48.81939954266395]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8efb54751d848fd8bb3b3fe69d15eaedd5e9a17a", "fields": {"departement": "94", "stop_lat": 48.81261202112399, "code_postal": "94041", "stop_lon": 2.370364304450868, "coord": [48.81261202112399, 2.370364304450868], "stop_id": 4677659, "stop_desc": "40 AVENUE DE VERDUN - 94041", "stop_name": "CIMETIERE PARISIEN - PLACE DU GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.370364304450868, 48.81261202112399]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "49bc5c5dfa5d621aafb6b0f8b874b81ec9c536a7", "fields": {"departement": "94", "stop_lat": 48.80391880828929, "code_postal": "94081", "stop_lon": 2.3769850194880426, "coord": [48.80391880828929, 2.3769850194880426], "stop_id": 4677662, "stop_desc": "FACE 140 BOULEVARD DE STALINGRAD - 94081", "stop_name": "CENTRE BUS DE VITRY"}, "geometry": {"type": "Point", "coordinates": [2.3769850194880426, 48.80391880828929]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3efd1f6c5c4234eb53972db3bb2f8337973a62c3", "fields": {"departement": "94", "stop_lat": 48.79466763030436, "code_postal": "94081", "stop_lon": 2.3843376284366515, "coord": [48.79466763030436, 2.3843376284366515], "stop_id": 4677665, "stop_desc": "21 AVENUE EUGENE PELLETAN - 94081", "stop_name": "CHARLES INFROIT"}, "geometry": {"type": "Point", "coordinates": [2.3843376284366515, 48.79466763030436]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8a4a5c0f399e999ea6a39d385cc318a5e953ea42", "fields": {"departement": "94", "stop_lat": 48.78563163463027, "code_postal": "94081", "stop_lon": 2.3917014455806394, "coord": [48.78563163463027, 2.3917014455806394], "stop_id": 4677668, "stop_desc": "AVENUE YOURI GAGARINE - 94081", "stop_name": "CAMILLE GROULT"}, "geometry": {"type": "Point", "coordinates": [2.3917014455806394, 48.78563163463027]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b6b122beaf8cccad7390c89536417bc65f7b5954", "fields": {"departement": "94", "stop_lat": 48.77782774908302, "code_postal": "94081", "stop_lon": 2.3965618686800885, "coord": [48.77782774908302, 2.3965618686800885], "stop_id": 4677670, "stop_desc": "73 AVENUE ROUGET DE L'ISLE - 94081", "stop_name": "LES PLATRIERES"}, "geometry": {"type": "Point", "coordinates": [2.3965618686800885, 48.77782774908302]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "41d0558353ce690e736f47511cf419a6f675c5f5", "fields": {"departement": "94", "stop_lat": 48.77366491253502, "code_postal": "94073", "stop_lon": 2.3992767882574992, "coord": [48.77366491253502, 2.3992767882574992], "stop_id": 4677671, "stop_desc": "1 BD DE STALINGRAD - 94073", "stop_name": "TROIS COMMUNES"}, "geometry": {"type": "Point", "coordinates": [2.3992767882574992, 48.77366491253502]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f58416873587811fafc9d0b5d2bfe3a295456e9d", "fields": {"departement": "94", "stop_lat": 48.76479961169984, "code_postal": "94022", "stop_lon": 2.4049085626863604, "coord": [48.76479961169984, 2.4049085626863604], "stop_id": 4677674, "stop_desc": "5 BD DES ALLIES - 94022", "stop_name": "ROUGET DE LISLE"}, "geometry": {"type": "Point", "coordinates": [2.4049085626863604, 48.76479961169984]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e397c89a52e3245704abfdfe7a36b5771f6d6d14", "fields": {"departement": "75", "stop_lat": 48.81977703496593, "code_postal": "75113", "stop_lon": 2.3631145117251053, "coord": [48.81977703496593, 2.3631145117251053], "stop_id": 4677676, "stop_desc": "0 BD MASSENA - 75113", "stop_name": "PORTE DE CHOISY"}, "geometry": {"type": "Point", "coordinates": [2.3631145117251053, 48.81977703496593]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "691ab5a033531e6b1a21eaf8ce08e6a5892f635b", "fields": {"departement": "94", "stop_lat": 48.80558194626264, "code_postal": "94041", "stop_lon": 2.3757889011211692, "coord": [48.80558194626264, 2.3757889011211692], "stop_id": 4677683, "stop_desc": "183 BOULEVARD DE STALINGRAD - 94041", "stop_name": "LA BRIQUETERIE"}, "geometry": {"type": "Point", "coordinates": [2.3757889011211692, 48.80558194626264]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f58eb873bb0f009c7896b8af0e25875341629aaa", "fields": {"departement": "94", "stop_lat": 48.78990240188759, "code_postal": "94081", "stop_lon": 2.388318873018915, "coord": [48.78990240188759, 2.388318873018915], "stop_id": 4677693, "stop_desc": "FACE 23 AVENUE MAXIMILIEN ROBESPIERRE - 94081", "stop_name": "HOTEL DE VILLE DE VITRY"}, "geometry": {"type": "Point", "coordinates": [2.388318873018915, 48.78990240188759]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "50d6b29428925bdb03e182212b7e06122705db94", "fields": {"departement": "94", "stop_lat": 48.79045958793866, "code_postal": "94081", "stop_lon": 2.3884690512328666, "coord": [48.79045958793866, 2.3884690512328666], "stop_id": 4677694, "stop_desc": "17 AVENUE MAXIMILIEN ROBESPIERRE - 94081", "stop_name": "HOTEL DE VILLE DE VITRY"}, "geometry": {"type": "Point", "coordinates": [2.3884690512328666, 48.79045958793866]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "48d65a30d2936de3c139dce45c20cd521dc5dea8", "fields": {"departement": "94", "stop_lat": 48.78687212511729, "code_postal": "94081", "stop_lon": 2.391362700632961, "coord": [48.78687212511729, 2.391362700632961], "stop_id": 4677696, "stop_desc": "FACE 26 AVENUE YOURI GARGARINE - 94081", "stop_name": "CAMILLE GROULT"}, "geometry": {"type": "Point", "coordinates": [2.391362700632961, 48.78687212511729]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "95adc8ddf20190dac6327d01c8131a92299c0e71", "fields": {"departement": "94", "stop_lat": 48.77782774908302, "code_postal": "94081", "stop_lon": 2.3965618686800885, "coord": [48.77782774908302, 2.3965618686800885], "stop_id": 4677699, "stop_desc": "73 AVENUE ROUGET DE L'ISLE - 94081", "stop_name": "LES PLATRIERES"}, "geometry": {"type": "Point", "coordinates": [2.3965618686800885, 48.77782774908302]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1ca4939b22541bbb4c50f2ac27157638cbff1d7f", "fields": {"departement": "94", "stop_lat": 48.76091523800913, "code_postal": "94022", "stop_lon": 2.4075137501114936, "coord": [48.76091523800913, 2.4075137501114936], "stop_id": 4677706, "stop_desc": "22 AVENUE DE LA REPUBLIQUE - 94022", "stop_name": "WALDECK ROUSSEAU"}, "geometry": {"type": "Point", "coordinates": [2.4075137501114936, 48.76091523800913]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "86346e16c136ad7260d7c0964fcc88590e3f21f8", "fields": {"departement": "94", "stop_lat": 48.750961479370204, "code_postal": "94054", "stop_lon": 2.4137799931156327, "coord": [48.750961479370204, 2.4137799931156327], "stop_id": 4677715, "stop_desc": "AVENUE MARCEL CACHIN - 94054", "stop_name": "JEAN MERMOZ"}, "geometry": {"type": "Point", "coordinates": [2.4137799931156327, 48.750961479370204]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1270711062c96e52b7322e45e2e281eb5744668e", "fields": {"departement": "94", "stop_lat": 48.74445276475228, "code_postal": "94054", "stop_lon": 2.400628184652632, "coord": [48.74445276475228, 2.400628184652632], "stop_id": 4677723, "stop_desc": "13-15 RUE PAUL VAILLANT COUTURIER - 94054", "stop_name": "MAIRIE D'ORLY"}, "geometry": {"type": "Point", "coordinates": [2.400628184652632, 48.74445276475228]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9ff4540c6fd69a8cd532558dd0bd62d440ffc351", "fields": {"departement": "94", "stop_lat": 48.744861448673305, "code_postal": "94054", "stop_lon": 2.3921615988643334, "coord": [48.744861448673305, 2.3921615988643334], "stop_id": 4677724, "stop_desc": "40-42 AVENUE CHARLES TILLON - 94054", "stop_name": "PARC MELIES"}, "geometry": {"type": "Point", "coordinates": [2.3921615988643334, 48.744861448673305]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ebd93fa34c280ca7d62e6e6ce629f0f61437c200", "fields": {"departement": "94", "stop_lat": 48.746020115872184, "code_postal": "94054", "stop_lon": 2.3699956957193247, "coord": [48.746020115872184, 2.3699956957193247], "stop_id": 4677739, "stop_desc": "RUE CHARLES TILLON - 94054", "stop_name": "ORLY PONT DE RUNGIS"}, "geometry": {"type": "Point", "coordinates": [2.3699956957193247, 48.746020115872184]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5da9a809c06980a988785eda0aa9e375c13d9c05", "fields": {"departement": "94", "stop_lat": 48.77085950549078, "code_postal": "94022", "stop_lon": 2.401421864024047, "coord": [48.77085950549078, 2.401421864024047], "stop_id": 4677741, "stop_desc": "52 BD DE STALINGRAD - 94022", "stop_name": "DOCTEUR ROUX"}, "geometry": {"type": "Point", "coordinates": [2.401421864024047, 48.77085950549078]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bd0990a46d6cc101370b7f4fe80f944e501290d3", "fields": {"departement": "94", "stop_lat": 48.77392550845496, "code_postal": "94022", "stop_lon": 2.399385886820018, "coord": [48.77392550845496, 2.399385886820018], "stop_id": 4677742, "stop_desc": "124 BOULEVARD DE STALINGRAD - 94022", "stop_name": "TROIS COMMUNES"}, "geometry": {"type": "Point", "coordinates": [2.399385886820018, 48.77392550845496]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "39fead575cd513ef7825dd14ce58ef5f333f27c5", "fields": {"departement": "94", "stop_lat": 48.81261202112399, "code_postal": "94041", "stop_lon": 2.370364304450868, "coord": [48.81261202112399, 2.370364304450868], "stop_id": 4677749, "stop_desc": "40 AVENUE DE VERDUN - 94041", "stop_name": "CIMETIERE PARISIEN - PLACE DU GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.370364304450868, 48.81261202112399]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e8356b6ade56cfe2465b779abd6d895454295f44", "fields": {"departement": "94", "stop_lat": 48.8015993230809, "code_postal": "94081", "stop_lon": 2.378820010546215, "coord": [48.8015993230809, 2.378820010546215], "stop_id": 4677756, "stop_desc": "113 BOULEVARD DE STALINGRAD - 94081", "stop_name": "MALASSIS"}, "geometry": {"type": "Point", "coordinates": [2.378820010546215, 48.8015993230809]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8fa3ec7c3131574dcad1183b1126e88589f78094", "fields": {"departement": "94", "stop_lat": 48.79826381702136, "code_postal": "94081", "stop_lon": 2.3816335340724804, "coord": [48.79826381702136, 2.3816335340724804], "stop_id": 4677757, "stop_desc": "61 BOULEVARD DE STALINGRAD - 94081", "stop_name": "LA CIVETTE"}, "geometry": {"type": "Point", "coordinates": [2.3816335340724804, 48.79826381702136]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "981bcc377ac2aa6e2de9b1409edc6ed2ca0140f9", "fields": {"departement": "94", "stop_lat": 48.79045958793866, "code_postal": "94081", "stop_lon": 2.3884690512328666, "coord": [48.79045958793866, 2.3884690512328666], "stop_id": 4677764, "stop_desc": "17 AVENUE MAXIMILIEN ROBESPIERRE - 94081", "stop_name": "HOTEL DE VILLE DE VITRY"}, "geometry": {"type": "Point", "coordinates": [2.3884690512328666, 48.79045958793866]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f136aff12a572d785623864379c8ba7e7c36f652", "fields": {"departement": "94", "stop_lat": 48.78687212511729, "code_postal": "94081", "stop_lon": 2.391362700632961, "coord": [48.78687212511729, 2.391362700632961], "stop_id": 4677766, "stop_desc": "FACE 26 AVENUE YOURI GARGARINE - 94081", "stop_name": "CAMILLE GROULT"}, "geometry": {"type": "Point", "coordinates": [2.391362700632961, 48.78687212511729]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d070d532b2bfa8ed123b6f5f9a75dc698bf87dba", "fields": {"departement": "94", "stop_lat": 48.78288941619004, "code_postal": "94081", "stop_lon": 2.3936162801973566, "coord": [48.78288941619004, 2.3936162801973566], "stop_id": 4677767, "stop_desc": "FACE AU 167 AVENUE YOURI GAGARINE - 94081", "stop_name": "CONSTANT COQUELIN"}, "geometry": {"type": "Point", "coordinates": [2.3936162801973566, 48.78288941619004]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "87dd8c46f7c7432b2199fee54c0697ca86777c5e", "fields": {"departement": "94", "stop_lat": 48.77782774908302, "code_postal": "94081", "stop_lon": 2.3965618686800885, "coord": [48.77782774908302, 2.3965618686800885], "stop_id": 4677769, "stop_desc": "73 AVENUE ROUGET DE L'ISLE - 94081", "stop_name": "LES PLATRIERES"}, "geometry": {"type": "Point", "coordinates": [2.3965618686800885, 48.77782774908302]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d30e1a128fbb5f2a287ac48700234330998decc9", "fields": {"departement": "94", "stop_lat": 48.75617635151201, "code_postal": "94022", "stop_lon": 2.411041727509464, "coord": [48.75617635151201, 2.411041727509464], "stop_id": 4677781, "stop_desc": "FACE 22-24 AVENUE DE NEWBURN - 94022", "stop_name": "LAMARTINE"}, "geometry": {"type": "Point", "coordinates": [2.411041727509464, 48.75617635151201]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "70b75b86e2e6b87addd7b4bb18ce4dac72d156c1", "fields": {"departement": "94", "stop_lat": 48.75393738910948, "code_postal": "94022", "stop_lon": 2.4124930210682587, "coord": [48.75393738910948, 2.4124930210682587], "stop_id": 4677783, "stop_desc": "AVENUE DE NEWBURN - 94022", "stop_name": "ROBERT PEARY"}, "geometry": {"type": "Point", "coordinates": [2.4124930210682587, 48.75393738910948]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ef5433951ee9cb574302a224277119c9fd77ad20", "fields": {"departement": "94", "stop_lat": 48.77085950549078, "code_postal": "94022", "stop_lon": 2.401421864024047, "coord": [48.77085950549078, 2.401421864024047], "stop_id": 4677795, "stop_desc": "52 BD DE STALINGRAD - 94022", "stop_name": "DOCTEUR ROUX"}, "geometry": {"type": "Point", "coordinates": [2.401421864024047, 48.77085950549078]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c75a58ffe9009d1335e4a975fa4e04a640385abc", "fields": {"departement": "94", "stop_lat": 48.77392550845496, "code_postal": "94022", "stop_lon": 2.399385886820018, "coord": [48.77392550845496, 2.399385886820018], "stop_id": 4677796, "stop_desc": "124 BOULEVARD DE STALINGRAD - 94022", "stop_name": "TROIS COMMUNES"}, "geometry": {"type": "Point", "coordinates": [2.399385886820018, 48.77392550845496]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8c99cc886b52224662cffe63872d162b7dd79e65", "fields": {"departement": "75", "stop_lat": 48.83825867806939, "code_postal": "75116", "stop_lon": 2.257509939435403, "coord": [48.83825867806939, 2.257509939435403], "stop_id": 4687323, "stop_desc": "PLACE DE LA PORTE DE SAINT-CLOUD - 75116", "stop_name": "PORTE DE SAINT-CLOUD-METRO"}, "geometry": {"type": "Point", "coordinates": [2.257509939435403, 48.83825867806939]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e9ac6a028b562118c45f01891e43d8066f1d95a0", "fields": {"departement": "92", "stop_lat": 48.82906809418619, "code_postal": "92040", "stop_lon": 2.2632959238789123, "coord": [48.82906809418619, 2.2632959238789123], "stop_id": 4687330, "stop_desc": "RUE ROUGET DE LISLE - 92040", "stop_name": "ISSY-VAL DE SEINE"}, "geometry": {"type": "Point", "coordinates": [2.2632959238789123, 48.82906809418619]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "42aaa6d94167e8f5ca564419e2b49b903f2175b8", "fields": {"departement": "92", "stop_lat": 48.82818035188838, "code_postal": "92040", "stop_lon": 2.2666459002261536, "coord": [48.82818035188838, 2.2666459002261536], "stop_id": 4687333, "stop_desc": "37 RUE ROUGET DE L'ISLE - 92040", "stop_name": "PRESIDENT ROBERT SCHUMAN"}, "geometry": {"type": "Point", "coordinates": [2.2666459002261536, 48.82818035188838]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "333554e48e9e95dd05bd5b7613b7d905d6f519d4", "fields": {"departement": "92", "stop_lat": 48.81614397966697, "code_postal": "92075", "stop_lon": 2.2799043060567024, "coord": [48.81614397966697, 2.2799043060567024], "stop_id": 4687347, "stop_desc": "FACE 14 RUE LARMEROUX - 92075", "stop_name": "STADE DE VANVES"}, "geometry": {"type": "Point", "coordinates": [2.2799043060567024, 48.81614397966697]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "10848150ef660dda0fdd98eeb2b8378556c19516", "fields": {"departement": "92", "stop_lat": 48.80388678659438, "code_postal": "92023", "stop_lon": 2.26710073279269, "coord": [48.80388678659438, 2.26710073279269], "stop_id": 4687357, "stop_desc": "34 AVENUE VICTOR HUGO - 92023", "stop_name": "GABRIEL PERI"}, "geometry": {"type": "Point", "coordinates": [2.26710073279269, 48.80388678659438]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5df64414907b5b3e1b4e6c94733eeb94cd89bb3f", "fields": {"departement": "93", "stop_lat": 48.9580245491208, "code_postal": "93031", "stop_lon": 2.3017047969455877, "coord": [48.9580245491208, 2.3017047969455877], "stop_id": 5081760, "stop_desc": "FACE 42 AVENUE JOFFRE - 93031", "stop_name": "JOFFRE CINEMA"}, "geometry": {"type": "Point", "coordinates": [2.3017047969455877, 48.9580245491208]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e1b19c7e4f91df268da822f91517709379c4860c", "fields": {"departement": "95", "stop_lat": 48.971999082605414, "code_postal": "95555", "stop_lon": 2.279540472053712, "coord": [48.971999082605414, 2.279540472053712], "stop_id": 5081773, "stop_desc": "R DES MARAIS - 95555", "stop_name": "CITE JEAN MOULIN"}, "geometry": {"type": "Point", "coordinates": [2.279540472053712, 48.971999082605414]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c37a2649ba6dcd52febf99ae084ce819ff176b98", "fields": {"departement": "95", "stop_lat": 48.97765628436531, "code_postal": "95219", "stop_lon": 2.2711928069851286, "coord": [48.97765628436531, 2.2711928069851286], "stop_id": 5081778, "stop_desc": "RUE DU GRAND GRIL - 95219", "stop_name": "RUE DE SOISY"}, "geometry": {"type": "Point", "coordinates": [2.2711928069851286, 48.97765628436531]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cf1b365d00f54addb6845b1aff12b7763fe253c6", "fields": {"departement": "92", "stop_lat": 48.9324481937284, "code_postal": "92036", "stop_lon": 2.3017359947576628, "coord": [48.9324481937284, 2.3017359947576628], "stop_id": 5081781, "stop_desc": "AVENUE LAURENT CELY - 92036", "stop_name": "ROND-POINT PIERRE TIMBAUD-J.LAROSE"}, "geometry": {"type": "Point", "coordinates": [2.3017359947576628, 48.9324481937284]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5f15a570e26412c3f9e1e2090d272e0c3ef4e6a8", "fields": {"departement": "92", "stop_lat": 48.82501158381657, "code_postal": "92040", "stop_lon": 2.2735105662010224, "coord": [48.82501158381657, 2.2735105662010224], "stop_id": 5091887, "stop_desc": "FACE 31 RUE KLEBER - 92040", "stop_name": "MAIRIE D'ISSY"}, "geometry": {"type": "Point", "coordinates": [2.2735105662010224, 48.82501158381657]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "119c7f63a10f7f2df98766d4ccdac5b7e9733497", "fields": {"departement": "92", "stop_lat": 48.821186255893736, "code_postal": "92040", "stop_lon": 2.2638515876842833, "coord": [48.821186255893736, 2.2638515876842833], "stop_id": 5091889, "stop_desc": "28 AVENUE BOURGAIN - 92040", "stop_name": "PLACE JOHN FITZGERALD KENNEDY"}, "geometry": {"type": "Point", "coordinates": [2.2638515876842833, 48.821186255893736]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "75e61852240679a8b2bf6f553db8b8705a156648", "fields": {"departement": "92", "stop_lat": 48.81908874975411, "code_postal": "92040", "stop_lon": 2.258573771824523, "coord": [48.81908874975411, 2.258573771824523], "stop_id": 5091890, "stop_desc": "68/70 BOULEVARD RODIN - 92040", "stop_name": "ISSY-RER"}, "geometry": {"type": "Point", "coordinates": [2.258573771824523, 48.81908874975411]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "add8a36c8b89ac62647eb120a32f12fd229725d2", "fields": {"departement": "92", "stop_lat": 48.81464812985609, "code_postal": "92023", "stop_lon": 2.257546211090835, "coord": [48.81464812985609, 2.257546211090835], "stop_id": 5091892, "stop_desc": "FACE 132 AVENUE HENRI BARBUSSE - 92023", "stop_name": "HOPITAL PERCY"}, "geometry": {"type": "Point", "coordinates": [2.257546211090835, 48.81464812985609]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d04964ae4a60d2f57476497b0a702867a62750ad", "fields": {"departement": "92", "stop_lat": 48.81055016215596, "code_postal": "92023", "stop_lon": 2.2582192963739454, "coord": [48.81055016215596, 2.2582192963739454], "stop_id": 5091893, "stop_desc": "71 AVENUE HENRI BARBUSSE - 92023", "stop_name": "FLEURY"}, "geometry": {"type": "Point", "coordinates": [2.2582192963739454, 48.81055016215596]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3b3a66c682f2dcea38698db6efdff978d835813d", "fields": {"departement": "92", "stop_lat": 48.800224844496384, "code_postal": "92023", "stop_lon": 2.2607792074492186, "coord": [48.800224844496384, 2.2607792074492186], "stop_id": 5091898, "stop_desc": "FACE 3 BIS PLACE HUNEBELLE - 92023", "stop_name": "PLACE HUNEBELLE"}, "geometry": {"type": "Point", "coordinates": [2.2607792074492186, 48.800224844496384]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "98b1f6cce11a2968d99a876ea017a86787d32885", "fields": {"departement": "92", "stop_lat": 48.80128825912298, "code_postal": "92023", "stop_lon": 2.265349121739541, "coord": [48.80128825912298, 2.265349121739541], "stop_id": 5091900, "stop_desc": "22 RUE PIERRE ET MARIE CURIE - 92023", "stop_name": "MARCHE DE CLAMART"}, "geometry": {"type": "Point", "coordinates": [2.265349121739541, 48.80128825912298]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9f8219a60968774deb8eeb8ba52f310fd7d864c0", "fields": {"departement": "92", "stop_lat": 48.79165184188213, "code_postal": "92023", "stop_lon": 2.2630363387405126, "coord": [48.79165184188213, 2.2630363387405126], "stop_id": 5091903, "stop_desc": "AVENUE JEAN BAPTISTE CLEMENT - 92023", "stop_name": "SOLEIL LEVANT"}, "geometry": {"type": "Point", "coordinates": [2.2630363387405126, 48.79165184188213]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8875ff1a60d7e17061b6c1b468ad2513538d8e6a", "fields": {"departement": "92", "stop_lat": 48.790947891449136, "code_postal": "92023", "stop_lon": 2.258534788752693, "coord": [48.790947891449136, 2.258534788752693], "stop_id": 5091904, "stop_desc": "52 RUE DE LA PORTE DE TRIVAUX - 92023", "stop_name": "JARDIN PARISIEN - COQUELICOTS"}, "geometry": {"type": "Point", "coordinates": [2.258534788752693, 48.790947891449136]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d626927654cf027d0f809a127e33183a3e45ba49", "fields": {"departement": "92", "stop_lat": 48.784572607878495, "code_postal": "92023", "stop_lon": 2.242331796266381, "coord": [48.784572607878495, 2.242331796266381], "stop_id": 5091908, "stop_desc": "8 RUE DE L'ILE DE FRANCE - 92023", "stop_name": "PICARDIE"}, "geometry": {"type": "Point", "coordinates": [2.242331796266381, 48.784572607878495]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a11fe60894bf231bdb93c36ef6fe1375359ca59b", "fields": {"departement": "92", "stop_lat": 48.777526714802256, "code_postal": "92023", "stop_lon": 2.232444323718438, "coord": [48.777526714802256, 2.232444323718438], "stop_id": 5091913, "stop_desc": "539 AVENUE DU GENERAL DE GAULLE - 92023", "stop_name": "PETIT CLAMART - RD 906"}, "geometry": {"type": "Point", "coordinates": [2.232444323718438, 48.777526714802256]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7340cdcebcdaf09d076b7d640a07e8933bc2ef9c", "fields": {"departement": "92", "stop_lat": 48.78622001337261, "code_postal": "92023", "stop_lon": 2.2456611904837582, "coord": [48.78622001337261, 2.2456611904837582], "stop_id": 5091917, "stop_desc": "RUE DE PICARDIE - 92023", "stop_name": "PICARDIE"}, "geometry": {"type": "Point", "coordinates": [2.2456611904837582, 48.78622001337261]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0abafba5004f80e690ba945712c96611795c9ec5", "fields": {"departement": "92", "stop_lat": 48.78997427565056, "code_postal": "92023", "stop_lon": 2.254237832172685, "coord": [48.78997427565056, 2.254237832172685], "stop_id": 5091920, "stop_desc": "145 RUE DE LA PORTE DE TRIVAUX - 92023", "stop_name": "JARDIN PARISIEN - HOPITAL ANTOINE BECLERE"}, "geometry": {"type": "Point", "coordinates": [2.254237832172685, 48.78997427565056]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "61bcdad2a83d119b607de0e96feacd4493548438", "fields": {"departement": "92", "stop_lat": 48.801554374313845, "code_postal": "92023", "stop_lon": 2.259743218545664, "coord": [48.801554374313845, 2.259743218545664], "stop_id": 5091928, "stop_desc": "30 RUE DE MEUDON - 92023", "stop_name": "POSTE"}, "geometry": {"type": "Point", "coordinates": [2.259743218545664, 48.801554374313845]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "12d22917057ddbae81d888f97fa0cc219e3bc583", "fields": {"departement": "92", "stop_lat": 48.8147381437127, "code_postal": "92023", "stop_lon": 2.257750209717775, "coord": [48.8147381437127, 2.257750209717775], "stop_id": 5091933, "stop_desc": "138 AVENUE HENRI BARBUSSE - 92023", "stop_name": "HOPITAL PERCY"}, "geometry": {"type": "Point", "coordinates": [2.257750209717775, 48.8147381437127]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e07c99388e4d7c78d9eb4ca6603002dee06ecdc0", "fields": {"departement": "92", "stop_lat": 48.81727131874833, "code_postal": "92040", "stop_lon": 2.255732081162144, "coord": [48.81727131874833, 2.255732081162144], "stop_id": 5091934, "stop_desc": "99 BOULEVARD RODIN - 92040", "stop_name": "CHEMIN DES VIGNES"}, "geometry": {"type": "Point", "coordinates": [2.255732081162144, 48.81727131874833]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "77dc932eb30bd909509f6e8f7053d4a69ee2cc8f", "fields": {"departement": "92", "stop_lat": 48.82078184353999, "code_postal": "92040", "stop_lon": 2.2639066024455956, "coord": [48.82078184353999, 2.2639066024455956], "stop_id": 5091936, "stop_desc": "FACE 2 BOULEVARD RODIN - 92040", "stop_name": "PLACE JOHN FITZGERALD KENNEDY"}, "geometry": {"type": "Point", "coordinates": [2.2639066024455956, 48.82078184353999]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "48884875c6e2c2a7efcfa34c31a685c191b5d02a", "fields": {"departement": "92", "stop_lat": 48.81464812985609, "code_postal": "92023", "stop_lon": 2.257546211090835, "coord": [48.81464812985609, 2.257546211090835], "stop_id": 5091954, "stop_desc": "FACE 132 AVENUE HENRI BARBUSSE - 92023", "stop_name": "HOPITAL PERCY"}, "geometry": {"type": "Point", "coordinates": [2.257546211090835, 48.81464812985609]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4d0f077595d20e9ee2a51e06494969dabd72dd25", "fields": {"departement": "92", "stop_lat": 48.790008980057635, "code_postal": "92023", "stop_lon": 2.2524694330358206, "coord": [48.790008980057635, 2.2524694330358206], "stop_id": 5091960, "stop_desc": "AVENUE CLAUDE TREBIGNAUD - 92023", "stop_name": "JARDIN PARISIEN - HOPITAL ANTOINE BECLERE"}, "geometry": {"type": "Point", "coordinates": [2.2524694330358206, 48.790008980057635]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a85e594e1a2d345ab47f5bb2f868aa24c0e5d825", "fields": {"departement": "92", "stop_lat": 48.7873761761637, "code_postal": "92023", "stop_lon": 2.253398663802593, "coord": [48.7873761761637, 2.253398663802593], "stop_id": 5091961, "stop_desc": "AVENUE CLAUDE TREBIGNAUD - 92023", "stop_name": "JARDIN PARISIEN - HOPITAL ANTOINE BECLERE"}, "geometry": {"type": "Point", "coordinates": [2.253398663802593, 48.7873761761637]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9ab6bc777ced51b88572773630c01312a2335d3c", "fields": {"departement": "92", "stop_lat": 48.77381241398715, "code_postal": "92060", "stop_lon": 2.2403932863130374, "coord": [48.77381241398715, 2.2403932863130374], "stop_id": 5091972, "stop_desc": "CONTRE-ALLEE DE L'AVENUE DE LA DIVISION LECLERC - 92060", "stop_name": "LA BOURSIDIERE"}, "geometry": {"type": "Point", "coordinates": [2.2403932863130374, 48.77381241398715]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5df3d3489852be14b248ee0f776da47a3b8abb79", "fields": {"departement": "92", "stop_lat": 48.83098427241765, "code_postal": "92040", "stop_lon": 2.2662745236757686, "coord": [48.83098427241765, 2.2662745236757686], "stop_id": 5091979, "stop_desc": "42 RUE CAMILLE DESMOULINS - 92040", "stop_name": "GALLIENI-CAMILLE DESMOULINS"}, "geometry": {"type": "Point", "coordinates": [2.2662745236757686, 48.83098427241765]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d3db9c686ce33cd1c4f1ce0b9be9a2857797c31a", "fields": {"departement": "93", "stop_lat": 48.919583895848994, "code_postal": "93039", "stop_lon": 2.328568129618303, "coord": [48.919583895848994, 2.328568129618303], "stop_id": 5091993, "stop_desc": "QUAI DU CHATELIER - 93039", "stop_name": "BOULEVARD MARCEL PAUL"}, "geometry": {"type": "Point", "coordinates": [2.328568129618303, 48.919583895848994]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "99c6f5ccce1aec5edb8fbda32c834f18b639e791", "fields": {"departement": "93", "stop_lat": 48.93827693005135, "code_postal": "93039", "stop_lon": 2.339914792066005, "coord": [48.93827693005135, 2.339914792066005], "stop_id": 5092005, "stop_desc": "QUAI DE LA MARINE - 93039", "stop_name": "RENE ET ISA LEFEVRE"}, "geometry": {"type": "Point", "coordinates": [2.339914792066005, 48.93827693005135]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "79d7f707932d3d6df93edac86628f06ee90d8d07", "fields": {"departement": "93", "stop_lat": 48.942222170448105, "code_postal": "93039", "stop_lon": 2.3374183946621967, "coord": [48.942222170448105, 2.3374183946621967], "stop_id": 5092007, "stop_desc": "QUAI DE LA MARINE - 93039", "stop_name": "RUE BERTHELOT"}, "geometry": {"type": "Point", "coordinates": [2.3374183946621967, 48.942222170448105]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bd893964d8b603107a1263ef3ddf5552ce3b544d", "fields": {"departement": "93", "stop_lat": 48.94955287870427, "code_postal": "93039", "stop_lon": 2.3128445728025606, "coord": [48.94955287870427, 2.3128445728025606], "stop_id": 5092013, "stop_desc": "QUAI DE LA MARINE - 93039", "stop_name": "PARC DE L'ILE ST-DENIS"}, "geometry": {"type": "Point", "coordinates": [2.3128445728025606, 48.94955287870427]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dc1416b0bb2a1cc0208cb24bb7bbc0d89e70f593", "fields": {"departement": "93", "stop_lat": 48.95499747019719, "code_postal": "93031", "stop_lon": 2.306905998884448, "coord": [48.95499747019719, 2.306905998884448], "stop_id": 5092015, "stop_desc": "115 RUE DE PARIS - 93031", "stop_name": "GILBERT BONNEMAISON"}, "geometry": {"type": "Point", "coordinates": [2.306905998884448, 48.95499747019719]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "172603e49b73fe604a69f3e5b88c81d201540370", "fields": {"departement": "92", "stop_lat": 48.88600633832888, "code_postal": "92063", "stop_lon": 2.1753696073485793, "coord": [48.88600633832888, 2.1753696073485793], "stop_id": 4024242, "stop_desc": "85 AVENUE VICTOR HUGO - 92063", "stop_name": "COLMAR"}, "geometry": {"type": "Point", "coordinates": [2.1753696073485793, 48.88600633832888]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a74116904755dcf12513bab96b1bc0b9fa0d1e28", "fields": {"departement": "92", "stop_lat": 48.876279725607716, "code_postal": "92063", "stop_lon": 2.1803050865812237, "coord": [48.876279725607716, 2.1803050865812237], "stop_id": 4024246, "stop_desc": "26 RUE HERVET - 92063", "stop_name": "EGLISE DE RUEIL"}, "geometry": {"type": "Point", "coordinates": [2.1803050865812237, 48.876279725607716]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "225c66ec3af68cedb72369832c911de09419a284", "fields": {"departement": "92", "stop_lat": 48.8735426178413, "code_postal": "92073", "stop_lon": 2.233217578226818, "coord": [48.8735426178413, 2.233217578226818], "stop_id": 4024251, "stop_desc": "22 RUE SALOMON DE ROTHSCHILD - 92073", "stop_name": "COMMANDANT RIVIERE"}, "geometry": {"type": "Point", "coordinates": [2.233217578226818, 48.8735426178413]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "58c9f5112491d9051055b8a266b51e380ebbc34a", "fields": {"departement": "92", "stop_lat": 48.884503004736075, "code_postal": "92062", "stop_lon": 2.238987243699706, "coord": [48.884503004736075, 2.238987243699706], "stop_id": 4024257, "stop_desc": "FACE104BIS RUE DE LA REPUBLIQUE - 92062", "stop_name": "MAIRIE DE PUTEAUX"}, "geometry": {"type": "Point", "coordinates": [2.238987243699706, 48.884503004736075]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "40415b011a002a57aedab72eaef2eff01accb837", "fields": {"departement": "92", "stop_lat": 48.88284929871456, "code_postal": "92062", "stop_lon": 2.2389222435582257, "coord": [48.88284929871456, 2.2389222435582257], "stop_id": 4024262, "stop_desc": "FACE 5 R CHANTE COQ - 92062", "stop_name": "MARCHE DE PUTEAUX"}, "geometry": {"type": "Point", "coordinates": [2.2389222435582257, 48.88284929871456]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "759d1d47a157f01377201827d41fe556007ca40d", "fields": {"departement": "92", "stop_lat": 48.867547720016134, "code_postal": "92063", "stop_lon": 2.197714464943088, "coord": [48.867547720016134, 2.197714464943088], "stop_id": 4024277, "stop_desc": "FACE 112 AVENUE DU 18 JUIN 1940 - 92063", "stop_name": "LIEUTENANT-COLONEL DE MONTBRISON"}, "geometry": {"type": "Point", "coordinates": [2.197714464943088, 48.867547720016134]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "99d0b6deeafa3cec60427324d24905286c92aba4", "fields": {"departement": "92", "stop_lat": 48.874126741811956, "code_postal": "92063", "stop_lon": 2.183349919170164, "coord": [48.874126741811956, 2.183349919170164], "stop_id": 4024281, "stop_desc": "FACE 42 BOULEVARD DE SOLFERINO - 92063", "stop_name": "PLACE RICHELIEU"}, "geometry": {"type": "Point", "coordinates": [2.183349919170164, 48.874126741811956]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "228ca46f2559553fa5c3c87ef00b045c6c13490c", "fields": {"departement": "92", "stop_lat": 48.886365678062774, "code_postal": "92063", "stop_lon": 2.1752594614655605, "coord": [48.886365678062774, 2.1752594614655605], "stop_id": 4024286, "stop_desc": "62 AVENUE VICTOR HUGO - 92063", "stop_name": "COLMAR"}, "geometry": {"type": "Point", "coordinates": [2.1752594614655605, 48.886365678062774]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d7b16fefd3d19909038dbd99402de224bdd544bc", "fields": {"departement": "92", "stop_lat": 48.885309194492216, "code_postal": "92051", "stop_lon": 2.2597542578379075, "coord": [48.885309194492216, 2.2597542578379075], "stop_id": 4024289, "stop_desc": "176 AVENUE CHARLES DE GAULLE - 92051", "stop_name": "PONT DE NEUILLY-METRO"}, "geometry": {"type": "Point", "coordinates": [2.2597542578379075, 48.885309194492216]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6b4997398c083abf1fcf34deac987cffffeb46b0", "fields": {"departement": "92", "stop_lat": 48.877199336305935, "code_postal": "92073", "stop_lon": 2.2222280666278524, "coord": [48.877199336305935, 2.2222280666278524], "stop_id": 4024309, "stop_desc": "2 RUE MAURICE PAYRET DORTAIL - 92073", "stop_name": "LYCEE PAUL LANGEVIN"}, "geometry": {"type": "Point", "coordinates": [2.2222280666278524, 48.877199336305935]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c4e90c89998bbb7473cc2da87b0616fbb0a01a6b", "fields": {"departement": "92", "stop_lat": 48.879346923618655, "code_postal": "92073", "stop_lon": 2.2218417709501512, "coord": [48.879346923618655, 2.2218417709501512], "stop_id": 4024310, "stop_desc": "RUE DES CHERCHEVETS - 92073", "stop_name": "LES PARECHAUX"}, "geometry": {"type": "Point", "coordinates": [2.2218417709501512, 48.879346923618655]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b283fc1c42cd699ae87dd1fef4f16a92a3ba64a5", "fields": {"departement": "92", "stop_lat": 48.88461430318606, "code_postal": "92050", "stop_lon": 2.2137216942469014, "coord": [48.88461430318606, 2.2137216942469014], "stop_id": 4024314, "stop_desc": "47 RUE DE SURESNES - 92050", "stop_name": "LES ALOUETTES"}, "geometry": {"type": "Point", "coordinates": [2.2137216942469014, 48.88461430318606]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c4e3d803b61fd8029f979fcfa7b0df3b83d8f535", "fields": {"departement": "92", "stop_lat": 48.89210313370966, "code_postal": "92050", "stop_lon": 2.1995837350962084, "coord": [48.89210313370966, 2.1995837350962084], "stop_id": 4024320, "stop_desc": "14 RUE DE STALINGRAD - 92050", "stop_name": "PLAINCHAMP"}, "geometry": {"type": "Point", "coordinates": [2.1995837350962084, 48.89210313370966]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a0dafc5ed388cd4a6dc0319b7d3249c66fe3cb48", "fields": {"departement": "92", "stop_lat": 48.89605349252947, "code_postal": "92050", "stop_lon": 2.196165618179821, "coord": [48.89605349252947, 2.196165618179821], "stop_id": 4024336, "stop_desc": "3 BD DE LA SEINE - 92050", "stop_name": "NANTERRE - VILLE RER - FAIDHERBE"}, "geometry": {"type": "Point", "coordinates": [2.196165618179821, 48.89605349252947]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "06f6f4850d81a36951b610776d9d3511c45600ef", "fields": {"departement": "92", "stop_lat": 48.889178388225055, "code_postal": "92062", "stop_lon": 2.230882947886533, "coord": [48.889178388225055, 2.230882947886533], "stop_id": 4024351, "stop_desc": "FACE 16 R MARCELLIN BERTHELOT - 92062", "stop_name": "BERTHELOT - CARRE VERT"}, "geometry": {"type": "Point", "coordinates": [2.230882947886533, 48.889178388225055]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d3c6bdb6645e1816bee2efec6943f76a6eef4009", "fields": {"departement": "92", "stop_lat": 48.888547529891284, "code_postal": "92050", "stop_lon": 2.2289353659104347, "coord": [48.888547529891284, 2.2289353659104347], "stop_id": 4024353, "stop_desc": "AVENUE PABLO PICASSO - 92050", "stop_name": "LES ROSIERS"}, "geometry": {"type": "Point", "coordinates": [2.2289353659104347, 48.888547529891284]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "232b3f0b0b2559421293ed31a47318bc2b8e86c0", "fields": {"departement": "92", "stop_lat": 48.896917637901396, "code_postal": "92050", "stop_lon": 2.205214061703304, "coord": [48.896917637901396, 2.205214061703304], "stop_id": 4024369, "stop_desc": "145 RUE RAYMOND BARBET - 92050", "stop_name": "GOUNOD"}, "geometry": {"type": "Point", "coordinates": [2.205214061703304, 48.896917637901396]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "220abb73b0655a212118cdb39434132900929d0e", "fields": {"departement": "92", "stop_lat": 48.89779086071002, "code_postal": "92050", "stop_lon": 2.20654766939271, "coord": [48.89779086071002, 2.20654766939271], "stop_id": 4024370, "stop_desc": "FACE 23 BOULEVARD RASPAIL - 92050", "stop_name": "GOUNOD"}, "geometry": {"type": "Point", "coordinates": [2.20654766939271, 48.89779086071002]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "00584dd3300bdc03ea58353850fe032888f41b6f", "fields": {"departement": "92", "stop_lat": 48.89210313370966, "code_postal": "92050", "stop_lon": 2.1995837350962084, "coord": [48.89210313370966, 2.1995837350962084], "stop_id": 4024373, "stop_desc": "14 RUE DE STALINGRAD - 92050", "stop_name": "PLAINCHAMP"}, "geometry": {"type": "Point", "coordinates": [2.1995837350962084, 48.89210313370966]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5d11c363b6f36be2b9b1a5f8767d081a1189fe37", "fields": {"departement": "92", "stop_lat": 48.892811521137524, "code_postal": "92050", "stop_lon": 2.1982052599527306, "coord": [48.892811521137524, 2.1982052599527306], "stop_id": 4024376, "stop_desc": "23 RUE DE STALINGRAD - 92050", "stop_name": "RUE DES ANCIENNES MAIRIES"}, "geometry": {"type": "Point", "coordinates": [2.1982052599527306, 48.892811521137524]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "49875feffb6637d42e122cc4183d8654654fea50", "fields": {"departement": "92", "stop_lat": 48.892604306166106, "code_postal": "92050", "stop_lon": 2.183172382710525, "coord": [48.892604306166106, 2.183172382710525], "stop_id": 4024383, "stop_desc": "4 AVENUE DU PARC DE L'ILE - 92050", "stop_name": "PONT DE BIAIS"}, "geometry": {"type": "Point", "coordinates": [2.183172382710525, 48.892604306166106]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9f09486cfab6567f48f27cb9a0a0067e7432498c", "fields": {"departement": "92", "stop_lat": 48.84006114983078, "code_postal": "92012", "stop_lon": 2.2295539967116715, "coord": [48.84006114983078, 2.2295539967116715], "stop_id": 4024399, "stop_desc": "FACE 124 AVENUE ANDRE MORIZET - 92012", "stop_name": "RHIN ET DANUBE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.2295539967116715, 48.84006114983078]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ce4ad5a873485f1fa41227233324c9eda04adbfb", "fields": {"departement": "92", "stop_lat": 48.842309338591164, "code_postal": "92064", "stop_lon": 2.2213658958134324, "coord": [48.842309338591164, 2.2213658958134324], "stop_id": 4024401, "stop_desc": "6 RUE DAILLY - 92064", "stop_name": "PARC DE SAINT-CLOUD"}, "geometry": {"type": "Point", "coordinates": [2.2213658958134324, 48.842309338591164]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "565a0ce4dbd05f325d99ed899c885291a5535d1a", "fields": {"departement": "92", "stop_lat": 48.84229108491409, "code_postal": "92064", "stop_lon": 2.2210799930578884, "coord": [48.84229108491409, 2.2210799930578884], "stop_id": 4024402, "stop_desc": "5 RUE DAILLY - 92064", "stop_name": "PARC DE SAINT-CLOUD"}, "geometry": {"type": "Point", "coordinates": [2.2210799930578884, 48.84229108491409]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6ea8267fb2abce3b8f0765e649eb100a90472187", "fields": {"departement": "92", "stop_lat": 48.844740924073406, "code_postal": "92064", "stop_lon": 2.217288980279421, "coord": [48.844740924073406, 2.217288980279421], "stop_id": 4024405, "stop_desc": "FACE 37 RUE DAILLY - 92064", "stop_name": "GARE DE SAINT-CLOUD"}, "geometry": {"type": "Point", "coordinates": [2.217288980279421, 48.844740924073406]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d65fff9fa015ba94b6892bf84d363922b586c2dd", "fields": {"departement": "92", "stop_lat": 48.84289453912968, "code_postal": "92064", "stop_lon": 2.2134397751267323, "coord": [48.84289453912968, 2.2134397751267323], "stop_id": 4024408, "stop_desc": "9 RUE GOUNOD - 92064", "stop_name": "COLLEGE GOUNOD"}, "geometry": {"type": "Point", "coordinates": [2.2134397751267323, 48.84289453912968]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4ef9c746a539e8cff4a27446db102672e4434591", "fields": {"departement": "92", "stop_lat": 48.842743987116464, "code_postal": "92064", "stop_lon": 2.207108471055454, "coord": [48.842743987116464, 2.207108471055454], "stop_id": 4024409, "stop_desc": "4 BOULEVARD DE LA REPUBLIQUE - 92064", "stop_name": "GENERAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.207108471055454, 48.842743987116464]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c15be1bbf518fe74caa7709a989b813423a9fc39", "fields": {"departement": "92", "stop_lat": 48.846939862303266, "code_postal": "92064", "stop_lon": 2.214342497712777, "coord": [48.846939862303266, 2.214342497712777], "stop_id": 4024413, "stop_desc": "92 BOULEVARD DE LA REPUBLIQUE - 92064", "stop_name": "MONTRETOUT"}, "geometry": {"type": "Point", "coordinates": [2.214342497712777, 48.846939862303266]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "334861a0ea889b94e6e72b609d61718bb7ed8408", "fields": {"departement": "92", "stop_lat": 48.84880894968146, "code_postal": "92064", "stop_lon": 2.214038471384302, "coord": [48.84880894968146, 2.214038471384302], "stop_id": 4024415, "stop_desc": "114 BOULEVARD DE LA REPUBLIQUE - 92064", "stop_name": "LYCEE DE SAINT-CLOUD"}, "geometry": {"type": "Point", "coordinates": [2.214038471384302, 48.84880894968146]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1a9cf560ed8f1715ad4f5e80eea9a44beac4f70b", "fields": {"departement": "92", "stop_lat": 48.85319334335621, "code_postal": "92064", "stop_lon": 2.2125980376734167, "coord": [48.85319334335621, 2.2125980376734167], "stop_id": 4024417, "stop_desc": "150 BOULEVARD DE LA REPUBLIQUE - 92064", "stop_name": "MARIE BONAPARTE"}, "geometry": {"type": "Point", "coordinates": [2.2125980376734167, 48.85319334335621]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "21b401543b14faffc7db6cc28dbe00dfe50929fc", "fields": {"departement": "92", "stop_lat": 48.874804089391844, "code_postal": "92073", "stop_lon": 2.217532791029242, "coord": [48.874804089391844, 2.217532791029242], "stop_id": 4024430, "stop_desc": "BOULEVARD DE WASHINGTON - 92073", "stop_name": "MONT VALERIEN"}, "geometry": {"type": "Point", "coordinates": [2.217532791029242, 48.874804089391844]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bd5b9db20194bbf5720ab347b5c0c5efb8dfe2db", "fields": {"departement": "92", "stop_lat": 48.8788947244965, "code_postal": "92050", "stop_lon": 2.2102198218676508, "coord": [48.8788947244965, 2.2102198218676508], "stop_id": 4024431, "stop_desc": "265 RUE PAUL VAILLANT COUTURIER - 92050", "stop_name": "PLAIDEURS - VAILLANT-COUTURIER"}, "geometry": {"type": "Point", "coordinates": [2.2102198218676508, 48.8788947244965]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3ab985736e97dc2deff0edb4c31a5fc6b68649f7", "fields": {"departement": "92", "stop_lat": 48.87850032688434, "code_postal": "92050", "stop_lon": 2.2112018510747102, "coord": [48.87850032688434, 2.2112018510747102], "stop_id": 4024432, "stop_desc": "277-279 RUE PAUL VAILLANT COUTURIER - 92050", "stop_name": "PLAIDEURS - VAILLANT-COUTURIER"}, "geometry": {"type": "Point", "coordinates": [2.2112018510747102, 48.87850032688434]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "64fab0340be8543beef60e9aee4424e7c4302a47", "fields": {"departement": "92", "stop_lat": 48.880059387290544, "code_postal": "92050", "stop_lon": 2.2068103973238404, "coord": [48.880059387290544, 2.2068103973238404], "stop_id": 4024434, "stop_desc": "FACE 235 RUE PAUL VAILLANT COUTURIER - 92050", "stop_name": "CALVAIRE - MAIRIE ANNEXE"}, "geometry": {"type": "Point", "coordinates": [2.2068103973238404, 48.880059387290544]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1969240d9a438abc411b202a2347b6ed3b8eb9e3", "fields": {"departement": "92", "stop_lat": 48.88745867270962, "code_postal": "92050", "stop_lon": 2.2012587151674974, "coord": [48.88745867270962, 2.2012587151674974], "stop_id": 4024439, "stop_desc": "2 AVENUE FREDERIC ET IRENE JOLIOT CURIE - 92050", "stop_name": "PLACE DE LA BOULE - JOLIOT CURIE"}, "geometry": {"type": "Point", "coordinates": [2.2012587151674974, 48.88745867270962]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f7de3ad4c2854d5ef8b65c49d3b591a4a6c8ad29", "fields": {"departement": "92", "stop_lat": 48.892811521137524, "code_postal": "92050", "stop_lon": 2.1982052599527306, "coord": [48.892811521137524, 2.1982052599527306], "stop_id": 4024445, "stop_desc": "23 RUE DE STALINGRAD - 92050", "stop_name": "RUE DES ANCIENNES MAIRIES"}, "geometry": {"type": "Point", "coordinates": [2.1982052599527306, 48.892811521137524]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ae15461ec45994162cf0c1ffc3290d6a4e893715", "fields": {"departement": "92", "stop_lat": 48.89524508570763, "code_postal": "92050", "stop_lon": 2.196535836545292, "coord": [48.89524508570763, 2.196535836545292], "stop_id": 4024446, "stop_desc": "RUE DU PRESIDENT PAUL DOUMER - 92050", "stop_name": "NANTERRE-VILLE RER"}, "geometry": {"type": "Point", "coordinates": [2.196535836545292, 48.89524508570763]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "24610d3cdb8cc416a497fe88131feb66bfa08ceb", "fields": {"departement": "92", "stop_lat": 48.897995714334485, "code_postal": "92050", "stop_lon": 2.204870539793654, "coord": [48.897995714334485, 2.204870539793654], "stop_id": 4024449, "stop_desc": "116 BOULEVARD BLAISE PASCAL - 92050", "stop_name": "GOUNOD"}, "geometry": {"type": "Point", "coordinates": [2.204870539793654, 48.897995714334485]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "af6285bb7eacdbea4bf60a3ceefa117c40d57065", "fields": {"departement": "92", "stop_lat": 48.895056889425156, "code_postal": "92050", "stop_lon": 2.222161171082742, "coord": [48.895056889425156, 2.222161171082742], "stop_id": 4024457, "stop_desc": "70 RUE SALVADOR ALLENDE - 92050", "stop_name": "ESPLANADE CHARLES DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.222161171082742, 48.895056889425156]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1dd571d676ef73425102c1f51dd0ba8ca7e4406f", "fields": {"departement": "92", "stop_lat": 48.896889073971664, "code_postal": "92050", "stop_lon": 2.2209303386289885, "coord": [48.896889073971664, 2.2209303386289885], "stop_id": 4024459, "stop_desc": "0 BD DE PESARO - 92050", "stop_name": "NANTERRE-PREFECTURE RER"}, "geometry": {"type": "Point", "coordinates": [2.2209303386289885, 48.896889073971664]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fffa541734cf1eaae8da45cb7330282c28f8bc86", "fields": {"departement": "92", "stop_lat": 48.85932270951459, "code_postal": "92064", "stop_lon": 2.2125288217257935, "coord": [48.85932270951459, 2.2125288217257935], "stop_id": 4024468, "stop_desc": "FACE 272 BOULEVARD DE LA REPUBLIQUE - 92064", "stop_name": "VAL D'OR"}, "geometry": {"type": "Point", "coordinates": [2.2125288217257935, 48.85932270951459]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b6c079f31558f27340a8869e2f764a5d29474e50", "fields": {"departement": "92", "stop_lat": 48.840885269272704, "code_postal": "92012", "stop_lon": 2.2265703845664584, "coord": [48.840885269272704, 2.2265703845664584], "stop_id": 4024471, "stop_desc": "5 BIS AV DU MARECHAL DE LATTRE DE TASSIGNY - 92012", "stop_name": "RHIN ET DANUBE-METRO."}, "geometry": {"type": "Point", "coordinates": [2.2265703845664584, 48.840885269272704]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d55cbb76cbd757df65f1cc5082617530be5efb2b", "fields": {"departement": "75", "stop_lat": 48.84807797833765, "code_postal": "75116", "stop_lon": 2.251639160342822, "coord": [48.84807797833765, 2.251639160342822], "stop_id": 4024525, "stop_desc": "AVENUE DE LA PORTE D'AUTEUIL - 75116", "stop_name": "FLEURISTE MUNICIPAL"}, "geometry": {"type": "Point", "coordinates": [2.251639160342822, 48.84807797833765]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9b167b7ac1be1b6ccbaf1a1c766ccd2ce44a0a68", "fields": {"departement": "75", "stop_lat": 48.84790488260938, "code_postal": "75116", "stop_lon": 2.2484528748018797, "coord": [48.84790488260938, 2.2484528748018797], "stop_id": 4024528, "stop_desc": "AVENUE DE LA PORTE D'AUTEUIL - 75116", "stop_name": "SUZANNE LENGLEN"}, "geometry": {"type": "Point", "coordinates": [2.2484528748018797, 48.84790488260938]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "98ec455bede8a029b966b9710a88261e4d1d9a8f", "fields": {"departement": "92", "stop_lat": 48.85059219647652, "code_postal": "92012", "stop_lon": 2.237185747691741, "coord": [48.85059219647652, 2.237185747691741], "stop_id": 4024531, "stop_desc": "FACE 4 BOULEVARD ANATOLE FRANCE - 92012", "stop_name": "HOPITAL AMBROISE PARE"}, "geometry": {"type": "Point", "coordinates": [2.237185747691741, 48.85059219647652]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9a6bb7888f5856d1fc81912ce23396b14c2cdd54", "fields": {"departement": "75", "stop_lat": 48.85371931867001, "code_postal": "75116", "stop_lon": 2.226447661881438, "coord": [48.85371931867001, 2.226447661881438], "stop_id": 4024533, "stop_desc": "ALLEE DU BORD DE L'EAU - 75116", "stop_name": "PASSERELLE DE L'AVRE"}, "geometry": {"type": "Point", "coordinates": [2.226447661881438, 48.85371931867001]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "446fec1a8f39437602578f4fb489ab22f54b651a", "fields": {"departement": "92", "stop_lat": 48.8656072614993, "code_postal": "92073", "stop_lon": 2.214802282943633, "coord": [48.8656072614993, 2.214802282943633], "stop_id": 4024552, "stop_desc": "45 BOULEVARD DU MARECHAL DE LATTRE DE TASSIGNY - 92073", "stop_name": "LES BONS RAISINS"}, "geometry": {"type": "Point", "coordinates": [2.214802282943633, 48.8656072614993]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "746bb5ba846e0339a537c441d4b48155d2f569be", "fields": {"departement": "92", "stop_lat": 48.86597653861773, "code_postal": "92073", "stop_lon": 2.2155778979584033, "coord": [48.86597653861773, 2.2155778979584033], "stop_id": 4024553, "stop_desc": "96 BOULEVARD DU MARECHAL DE LATTRE DE TASSIGNY - 92073", "stop_name": "LES BONS RAISINS"}, "geometry": {"type": "Point", "coordinates": [2.2155778979584033, 48.86597653861773]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ab1ef56e4e90aacc9154466ae101d071b720bc49", "fields": {"departement": "92", "stop_lat": 48.86319660513627, "code_postal": "92073", "stop_lon": 2.2045098559791145, "coord": [48.86319660513627, 2.2045098559791145], "stop_id": 4024559, "stop_desc": "1 AVENUE G.STRESEMANN - 92073", "stop_name": "STRESEMANN"}, "geometry": {"type": "Point", "coordinates": [2.2045098559791145, 48.86319660513627]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "94494eb9cb0435d680b84971a71be24568fd0c3e", "fields": {"departement": "92", "stop_lat": 48.86133279431157, "code_postal": "92073", "stop_lon": 2.2014770627479576, "coord": [48.86133279431157, 2.2014770627479576], "stop_id": 4024563, "stop_desc": "3 RUE GROTIUS - 92073", "stop_name": "GROTIUS"}, "geometry": {"type": "Point", "coordinates": [2.2014770627479576, 48.86133279431157]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ec8a0417f1ac20e39cd5bd39e89e4c2abe72627b", "fields": {"departement": "92", "stop_lat": 48.862603086716696, "code_postal": "92063", "stop_lon": 2.1963792217488365, "coord": [48.862603086716696, 2.1963792217488365], "stop_id": 4024565, "stop_desc": "FACE 71-73 RUE DU LIEUTENANT COLONEL DE MONTBRISON - 92063", "stop_name": "LES MAZURIERES"}, "geometry": {"type": "Point", "coordinates": [2.1963792217488365, 48.862603086716696]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f341f72ceb7cbe9a5ff9cff648bb210b7e46c090", "fields": {"departement": "92", "stop_lat": 48.87887827222943, "code_postal": "92063", "stop_lon": 2.188254791362031, "coord": [48.87887827222943, 2.188254791362031], "stop_id": 4024582, "stop_desc": "RUE DANTON - 92063", "stop_name": "LIENARD"}, "geometry": {"type": "Point", "coordinates": [2.188254791362031, 48.87887827222943]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "18728c17756898e9361b228ff668130be3f03b75", "fields": {"departement": "92", "stop_lat": 48.886365678062774, "code_postal": "92063", "stop_lon": 2.1752594614655605, "coord": [48.886365678062774, 2.1752594614655605], "stop_id": 4024590, "stop_desc": "62 AVENUE VICTOR HUGO - 92063", "stop_name": "COLMAR"}, "geometry": {"type": "Point", "coordinates": [2.1752594614655605, 48.886365678062774]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fcad65080e16eede16d52656c3600bc30ae73cf7", "fields": {"departement": "92", "stop_lat": 48.852641178955054, "code_postal": "92012", "stop_lon": 2.22683129917078, "coord": [48.852641178955054, 2.22683129917078], "stop_id": 4024598, "stop_desc": "BOULEVARD ANATOLE FRANCE - 92012", "stop_name": "PASSERELLE DE L'AVRE"}, "geometry": {"type": "Point", "coordinates": [2.22683129917078, 48.852641178955054]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "61c183e582096c98815e47e9e3e4ddb5d4781e65", "fields": {"departement": "92", "stop_lat": 48.88451764143241, "code_postal": "92063", "stop_lon": 2.1777318079494505, "coord": [48.88451764143241, 2.1777318079494505], "stop_id": 4024601, "stop_desc": "31 AVENUE VICTOR HUGO - 92063", "stop_name": "BAUDIN"}, "geometry": {"type": "Point", "coordinates": [2.1777318079494505, 48.88451764143241]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4792673c27dafc038ee2f4dea712433127989bc5", "fields": {"departement": "92", "stop_lat": 48.87935136602782, "code_postal": "92063", "stop_lon": 2.1856917243126706, "coord": [48.87935136602782, 2.1856917243126706], "stop_id": 4024603, "stop_desc": "22 BIS BOULEVARD DE L'HOPITAL STELL - 92063", "stop_name": "LE GUE"}, "geometry": {"type": "Point", "coordinates": [2.1856917243126706, 48.87935136602782]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5ac2db382e94d3d6e108fd08fca43c0b1c558188", "fields": {"departement": "92", "stop_lat": 48.86213123635226, "code_postal": "92073", "stop_lon": 2.2002217874967354, "coord": [48.86213123635226, 2.2002217874967354], "stop_id": 4024614, "stop_desc": "AVENUE MAISTRASSE - 92073", "stop_name": "MAISTRASSE"}, "geometry": {"type": "Point", "coordinates": [2.2002217874967354, 48.86213123635226]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c07dc50c57344f92adb50d6ce433bd19f120aaaa", "fields": {"departement": "92", "stop_lat": 48.89203464280857, "code_postal": "92062", "stop_lon": 2.239422734486871, "coord": [48.89203464280857, 2.239422734486871], "stop_id": 4024671, "stop_desc": "AVENUE PERRONET NORD - 92062", "stop_name": "LA DEFENSE-METRO-RER-TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.239422734486871, 48.89203464280857]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9e642a703e56fa5297e9eab79307f542f12a1fb3", "fields": {"departement": "92", "stop_lat": 48.88567096716327, "code_postal": "92062", "stop_lon": 2.228219106244475, "coord": [48.88567096716327, 2.228219106244475], "stop_id": 4024676, "stop_desc": "106-108 AVENUE DU GENERAL DE GAULLE - 92062", "stop_name": "LES BERGERES"}, "geometry": {"type": "Point", "coordinates": [2.228219106244475, 48.88567096716327]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0780564a2f1e54570e360c86dadac1d811266c6e", "fields": {"departement": "92", "stop_lat": 48.885913770917476, "code_postal": "92050", "stop_lon": 2.2189516798227937, "coord": [48.885913770917476, 2.2189516798227937], "stop_id": 4024679, "stop_desc": "257 AVENUE GEORGES CLEMENCEAU - 92050", "stop_name": "LES FONTENELLES"}, "geometry": {"type": "Point", "coordinates": [2.2189516798227937, 48.885913770917476]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "70a982c6864acae29a6a9b4107673a032209c2cc", "fields": {"departement": "92", "stop_lat": 48.88552755066137, "code_postal": "92050", "stop_lon": 2.2191842324841113, "coord": [48.88552755066137, 2.2191842324841113], "stop_id": 4024680, "stop_desc": "272 AVENUE GEORGES CLEMENCEAU - 92050", "stop_name": "LES FONTENELLES"}, "geometry": {"type": "Point", "coordinates": [2.2191842324841113, 48.88552755066137]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "324dbbd077981e0ab3f9c9cd8e0b2363d53c5f9c", "fields": {"departement": "92", "stop_lat": 48.885918139125366, "code_postal": "92050", "stop_lon": 2.2143863501236374, "coord": [48.885918139125366, 2.2143863501236374], "stop_id": 4024682, "stop_desc": "196 AVENUE GEORGES CLEMENCEAU - 92050", "stop_name": "FELIX FAURE"}, "geometry": {"type": "Point", "coordinates": [2.2143863501236374, 48.885918139125366]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "30a053c714ec0e8a551f2a274a3691326469856d", "fields": {"departement": "92", "stop_lat": 48.88535795431683, "code_postal": "92050", "stop_lon": 2.1955133465880006, "coord": [48.88535795431683, 2.1955133465880006], "stop_id": 4024690, "stop_desc": "30 AVENUE DU MARECHAL JOFFRE - 92050", "stop_name": "SAINTE-GENEVIEVE"}, "geometry": {"type": "Point", "coordinates": [2.1955133465880006, 48.88535795431683]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b54f77e326f3d876b0474e814e3958ca3bab5a5c", "fields": {"departement": "92", "stop_lat": 48.88545796036984, "code_postal": "92050", "stop_lon": 2.19648064018029, "coord": [48.88545796036984, 2.19648064018029], "stop_id": 4024691, "stop_desc": "FACE 24 AVENUE DU MARECHAL JOFFRE - 92050", "stop_name": "SAINTE-GENEVIEVE"}, "geometry": {"type": "Point", "coordinates": [2.19648064018029, 48.88545796036984]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0f91277a773309f01bb4cc177dd5fc21ce115c1e", "fields": {"departement": "92", "stop_lat": 48.88261646917931, "code_postal": "92063", "stop_lon": 2.1878488645965537, "coord": [48.88261646917931, 2.1878488645965537], "stop_id": 4024693, "stop_desc": "FACE 45 AVENUE PAUL DOUMER - 92063", "stop_name": "GABRIEL PERI"}, "geometry": {"type": "Point", "coordinates": [2.1878488645965537, 48.88261646917931]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3ef92d0711c5d59bf0d3bcb3bb5ae529823eb480", "fields": {"departement": "92", "stop_lat": 48.87798913829876, "code_postal": "92063", "stop_lon": 2.17495861831514, "coord": [48.87798913829876, 2.17495861831514], "stop_id": 4024697, "stop_desc": "212 AVENUE PAUL DOUMER - 92063", "stop_name": "DANIELLE CASANOVA"}, "geometry": {"type": "Point", "coordinates": [2.17495861831514, 48.87798913829876]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b5edc39cce1ae30c0bcf5e300aed991ae844f00b", "fields": {"departement": "92", "stop_lat": 48.87697983915577, "code_postal": "92063", "stop_lon": 2.1729724572965257, "coord": [48.87697983915577, 2.1729724572965257], "stop_id": 4024700, "stop_desc": "FACE 226 AVENUE PAUL DOUMER - 92063", "stop_name": "BOIS PREAU"}, "geometry": {"type": "Point", "coordinates": [2.1729724572965257, 48.87697983915577]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "314fedf4b3b6ec91e2cd47f87a0f848d76e271b4", "fields": {"departement": "92", "stop_lat": 48.874490565948555, "code_postal": "92063", "stop_lon": 2.166726547482254, "coord": [48.874490565948555, 2.166726547482254], "stop_id": 4024701, "stop_desc": "274 AVENUE NAPOLEON BONAPARTE - 92063", "stop_name": "LE CHATEAU"}, "geometry": {"type": "Point", "coordinates": [2.166726547482254, 48.874490565948555]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6db0360ee8611760ab50ae8382fea1b9aaeeb7e2", "fields": {"departement": "92", "stop_lat": 48.869642068854425, "code_postal": "92063", "stop_lon": 2.157669202367604, "coord": [48.869642068854425, 2.157669202367604], "stop_id": 4024708, "stop_desc": "FACE 318 AV NAPOLEON BONAPARTE - 92063", "stop_name": "LA JONCHERE"}, "geometry": {"type": "Point", "coordinates": [2.157669202367604, 48.869642068854425]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e28c3985707fbb6114ff2e8938ead7ad6d18c207", "fields": {"departement": "92", "stop_lat": 48.86851489022715, "code_postal": "92063", "stop_lon": 2.1494037830622656, "coord": [48.86851489022715, 2.1494037830622656], "stop_id": 4024709, "stop_desc": "388 AVENUE NAPOLEON BONAPARTE - 92063", "stop_name": "MAISON ROUGE"}, "geometry": {"type": "Point", "coordinates": [2.1494037830622656, 48.86851489022715]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5547ecd30fc41a2483b31b0099c921deabc2b07a", "fields": {"departement": "78", "stop_lat": 48.86862963537717, "code_postal": "78092", "stop_lon": 2.131802060175796, "coord": [48.86862963537717, 2.131802060175796], "stop_id": 4024714, "stop_desc": "FACE 59 QUAI BOISSY D'ANGLAS - 78092", "stop_name": "LA PASSERELLE"}, "geometry": {"type": "Point", "coordinates": [2.131802060175796, 48.86862963537717]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1551f2a998e4cbdaf341c8e3cb9b26a1f2cbe93b", "fields": {"departement": "78", "stop_lat": 48.87919658725736, "code_postal": "78502", "stop_lon": 2.1107760059262253, "coord": [48.87919658725736, 2.1107760059262253], "stop_id": 4024722, "stop_desc": "AVENUE SIMON VOUET - 78502", "stop_name": "JAURES"}, "geometry": {"type": "Point", "coordinates": [2.1107760059262253, 48.87919658725736]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ed88d6e99bd0667454e6955609c646241be55789", "fields": {"departement": "78", "stop_lat": 48.89703299526433, "code_postal": "78551", "stop_lon": 2.095390681983472, "coord": [48.89703299526433, 2.095390681983472], "stop_id": 4024731, "stop_desc": "FACE 2 PLACE ANDRE MALRAUX - 78551", "stop_name": "SAINT-GERMAIN-EN-LAYE RER"}, "geometry": {"type": "Point", "coordinates": [2.095390681983472, 48.89703299526433]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "41fb94f7cd758ee4d4cd6c6fed1b428284db1352", "fields": {"departement": "78", "stop_lat": 48.88936469415523, "code_postal": "78551", "stop_lon": 2.098751886744399, "coord": [48.88936469415523, 2.098751886744399], "stop_id": 4024733, "stop_desc": "10 AVENUE DU GENERAL LECLERC - 78551", "stop_name": "ALEXANDRE BERTRAND"}, "geometry": {"type": "Point", "coordinates": [2.098751886744399, 48.88936469415523]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "78b78a2966319888461f82aaa8a3e73f4b3b4935", "fields": {"departement": "78", "stop_lat": 48.868175874463624, "code_postal": "78092", "stop_lon": 2.150998923244725, "coord": [48.868175874463624, 2.150998923244725], "stop_id": 4024735, "stop_desc": "44 RUE YVAN TOURGUENIEV - 78092", "stop_name": "MAISON ROUGE"}, "geometry": {"type": "Point", "coordinates": [2.150998923244725, 48.868175874463624]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e6ecf3640a53ce2be9ec2964f41c44ed059a11dd", "fields": {"departement": "92", "stop_lat": 48.885913770917476, "code_postal": "92050", "stop_lon": 2.2189516798227937, "coord": [48.885913770917476, 2.2189516798227937], "stop_id": 4024742, "stop_desc": "257 AVENUE GEORGES CLEMENCEAU - 92050", "stop_name": "LES FONTENELLES"}, "geometry": {"type": "Point", "coordinates": [2.2189516798227937, 48.885913770917476]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5d742020493f7cde3ae5742deca71a9499c7f5c3", "fields": {"departement": "92", "stop_lat": 48.88726100109216, "code_postal": "92050", "stop_lon": 2.2013001183399865, "coord": [48.88726100109216, 2.2013001183399865], "stop_id": 4024746, "stop_desc": "1 AVENUE GEORGES CLEMENCEAU - 92050", "stop_name": "PLACE DE LA BOULE - CLEMENCEAU"}, "geometry": {"type": "Point", "coordinates": [2.2013001183399865, 48.88726100109216]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0d9b30a396186060ec8c73a84f47b3f98851cff8", "fields": {"departement": "92", "stop_lat": 48.88535795431683, "code_postal": "92050", "stop_lon": 2.1955133465880006, "coord": [48.88535795431683, 2.1955133465880006], "stop_id": 4024748, "stop_desc": "30 AVENUE DU MARECHAL JOFFRE - 92050", "stop_name": "SAINTE-GENEVIEVE"}, "geometry": {"type": "Point", "coordinates": [2.1955133465880006, 48.88535795431683]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fbdd29e98e55448bd8d8cfe64fd8c5be54641d30", "fields": {"departement": "92", "stop_lat": 48.88387910264952, "code_postal": "92063", "stop_lon": 2.191415575852575, "coord": [48.88387910264952, 2.191415575852575], "stop_id": 4024749, "stop_desc": "10 AVENUE PAUL DOUMER - 92063", "stop_name": "BOULEVARD NATIONAL"}, "geometry": {"type": "Point", "coordinates": [2.191415575852575, 48.88387910264952]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "60e23cca45f0b75b4be926cf902548f11710ccfa", "fields": {"departement": "92", "stop_lat": 48.88261646917931, "code_postal": "92063", "stop_lon": 2.1878488645965537, "coord": [48.88261646917931, 2.1878488645965537], "stop_id": 4024750, "stop_desc": "FACE 45 AVENUE PAUL DOUMER - 92063", "stop_name": "GABRIEL PERI"}, "geometry": {"type": "Point", "coordinates": [2.1878488645965537, 48.88261646917931]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "88eb54a0d92f9f1a84b0ecf89211cf654a7e2c64", "fields": {"departement": "92", "stop_lat": 48.880623262018354, "code_postal": "92063", "stop_lon": 2.1823495283900023, "coord": [48.880623262018354, 2.1823495283900023], "stop_id": 4024751, "stop_desc": "140 AVENUE PAUL DOUMER - 92063", "stop_name": "RUEIL - VILLE"}, "geometry": {"type": "Point", "coordinates": [2.1823495283900023, 48.880623262018354]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "35406725c0668a6dc29151a94a399a00ac993ec1", "fields": {"departement": "78", "stop_lat": 48.86956829524903, "code_postal": "78092", "stop_lon": 2.156429715508443, "coord": [48.86956829524903, 2.156429715508443], "stop_id": 4024757, "stop_desc": "2 COTE DE LA JONCHERE - 78092", "stop_name": "LA JONCHERE"}, "geometry": {"type": "Point", "coordinates": [2.156429715508443, 48.86956829524903]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6d0dc7ae0a11997c543c42e4d522714384a78a5a", "fields": {"departement": "78", "stop_lat": 48.88305322404613, "code_postal": "78502", "stop_lon": 2.106657396453177, "coord": [48.88305322404613, 2.106657396453177], "stop_id": 4024781, "stop_desc": "29 ROUTE DE SAINT-GERMAIN - 78502", "stop_name": "VAL ANDRE"}, "geometry": {"type": "Point", "coordinates": [2.106657396453177, 48.88305322404613]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c64fdd1f124710d7b3944c42a70edc19a1b51d01", "fields": {"departement": "78", "stop_lat": 48.875775936857664, "code_postal": "78350", "stop_lon": 2.11745366808905, "coord": [48.875775936857664, 2.11745366808905], "stop_id": 4024784, "stop_desc": "9 QUAI DE CONTI - 78350", "stop_name": "PAVILLON HALEVY"}, "geometry": {"type": "Point", "coordinates": [2.11745366808905, 48.875775936857664]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5ca67d3d334fe793f1add5aaa55d652265dfb8be", "fields": {"departement": "78", "stop_lat": 48.86732955997137, "code_postal": "78092", "stop_lon": 2.1389320212149565, "coord": [48.86732955997137, 2.1389320212149565], "stop_id": 4024787, "stop_desc": "2 QUAI GEORGES CLEMENCEAU - 78092", "stop_name": "PONT DE BOUGIVAL"}, "geometry": {"type": "Point", "coordinates": [2.1389320212149565, 48.86732955997137]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dc1f16b6d7958446f5d00e68711cd2ebd34fead8", "fields": {"departement": "92", "stop_lat": 48.89160141473085, "code_postal": "92062", "stop_lon": 2.2372019748450263, "coord": [48.89160141473085, 2.2372019748450263], "stop_id": 4024792, "stop_desc": "PISTE GARE ROUTIERE - 92062", "stop_name": "LA DEFENSE-METRO-RER-TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.2372019748450263, 48.89160141473085]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "76142807568c344cbfc8978cf49be129f1d3d4e8", "fields": {"departement": "92", "stop_lat": 48.89320029487814, "code_postal": "92026", "stop_lon": 2.247434814567136, "coord": [48.89320029487814, 2.247434814567136], "stop_id": 4024793, "stop_desc": "44 AV GAMBETTA - 92026", "stop_name": "CARNOT"}, "geometry": {"type": "Point", "coordinates": [2.247434814567136, 48.89320029487814]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ffa7e480c839680cf403caf3ec429d7c7d8a5fa0", "fields": {"departement": "92", "stop_lat": 48.895287505785355, "code_postal": "92026", "stop_lon": 2.2503889671181168, "coord": [48.895287505785355, 2.2503889671181168], "stop_id": 4024794, "stop_desc": "FACE 5 RUE BAUDIN - 92026", "stop_name": "PLACE CHARRAS"}, "geometry": {"type": "Point", "coordinates": [2.2503889671181168, 48.895287505785355]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a605bba0c49a850eca3cc76a75fc1157468c4496", "fields": {"departement": "92", "stop_lat": 48.900570455929895, "code_postal": "92026", "stop_lon": 2.261380864704964, "coord": [48.900570455929895, 2.261380864704964], "stop_id": 4024802, "stop_desc": "4 BOULEVARD DE LA PAIX - 92026", "stop_name": "PAIX - VERDUN"}, "geometry": {"type": "Point", "coordinates": [2.261380864704964, 48.900570455929895]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2089fbb1d4c5ba64dc68605035c4977331cebca1", "fields": {"departement": "92", "stop_lat": 48.90176771113786, "code_postal": "92026", "stop_lon": 2.2645417306675433, "coord": [48.90176771113786, 2.2645417306675433], "stop_id": 4024804, "stop_desc": "28 BOULEVARD DE LA PAIX - 92026", "stop_name": "ULBACH"}, "geometry": {"type": "Point", "coordinates": [2.2645417306675433, 48.90176771113786]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "947d4fd066b28f04ee339248e4a58251c01a292b", "fields": {"departement": "92", "stop_lat": 48.90233974527351, "code_postal": "92026", "stop_lon": 2.2748604488756095, "coord": [48.90233974527351, 2.2748604488756095], "stop_id": 4024808, "stop_desc": "FACE 4 AVENUE DU 11 NOVEMBRE - 92026", "stop_name": "PLACE MERMOZ"}, "geometry": {"type": "Point", "coordinates": [2.2748604488756095, 48.90233974527351]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "670933c79cb97e7ae97b95be2accb7d2c6f04dc9", "fields": {"departement": "92", "stop_lat": 48.90026416008041, "code_postal": "92026", "stop_lon": 2.2602362601770274, "coord": [48.90026416008041, 2.2602362601770274], "stop_id": 4024832, "stop_desc": "15 BOULEVARD ARISTIDE BRIAND - 92026", "stop_name": "PAIX - VERDUN"}, "geometry": {"type": "Point", "coordinates": [2.2602362601770274, 48.90026416008041]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3f149b5fa49bc4129abce29c6d5a8ec793178f27", "fields": {"departement": "92", "stop_lat": 48.90486285657795, "code_postal": "92026", "stop_lon": 2.2561668520722225, "coord": [48.90486285657795, 2.2561668520722225], "stop_id": 4024836, "stop_desc": "153 BOULEVARD DE VERDUN - 92026", "stop_name": "EUROPE"}, "geometry": {"type": "Point", "coordinates": [2.2561668520722225, 48.90486285657795]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "59c2caca821625d0fcdf0058b29c015628b190c7", "fields": {"departement": "92", "stop_lat": 48.88875088546612, "code_postal": "92062", "stop_lon": 2.2353267360720896, "coord": [48.88875088546612, 2.2353267360720896], "stop_id": 4024845, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 92062", "stop_name": "LES BOUVETS"}, "geometry": {"type": "Point", "coordinates": [2.2353267360720896, 48.88875088546612]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "586ed8abdfd7f77c345df47b1e6f99fa54036d48", "fields": {"departement": "92", "stop_lat": 48.88775148188725, "code_postal": "92062", "stop_lon": 2.233216315231345, "coord": [48.88775148188725, 2.233216315231345], "stop_id": 4024847, "stop_desc": "60 AVENUE DU GENERAL DE GAULLE - 92062", "stop_name": "LES GRAVIERS"}, "geometry": {"type": "Point", "coordinates": [2.233216315231345, 48.88775148188725]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8ee7cc833475065f37f03ba8520fc1bdae81019a", "fields": {"departement": "92", "stop_lat": 48.86426679339795, "code_postal": "92073", "stop_lon": 2.2134977237108133, "coord": [48.86426679339795, 2.2134977237108133], "stop_id": 4024860, "stop_desc": "62 BOULEVARD DU MARECHAL DE LATTRE DE TASSIGNY - 92073", "stop_name": "EDOUARD VAILLANT"}, "geometry": {"type": "Point", "coordinates": [2.2134977237108133, 48.86426679339795]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7e9937509e5502460e6cfd860708f1559d9258bf", "fields": {"departement": "92", "stop_lat": 48.860931709827256, "code_postal": "92064", "stop_lon": 2.212770134624513, "coord": [48.860931709827256, 2.212770134624513], "stop_id": 4024861, "stop_desc": "3 BOULEVARD LOUIS LOUCHEUR - 92064", "stop_name": "CROIX DU ROY"}, "geometry": {"type": "Point", "coordinates": [2.212770134624513, 48.860931709827256]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f62c68162ccba868d449577c297959cd6e8fa492", "fields": {"departement": "92", "stop_lat": 48.85820101209883, "code_postal": "92064", "stop_lon": 2.2141932248986844, "coord": [48.85820101209883, 2.2141932248986844], "stop_id": 4024862, "stop_desc": "FACE 40 RUE DU MONT VALERIEN - 92064", "stop_name": "VAL D'OR"}, "geometry": {"type": "Point", "coordinates": [2.2141932248986844, 48.85820101209883]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "546c9c5d846bf8f4f0f14a7dc36745d305f89173", "fields": {"departement": "92", "stop_lat": 48.84773360554437, "code_postal": "92064", "stop_lon": 2.208525820752074, "coord": [48.84773360554437, 2.208525820752074], "stop_id": 4024869, "stop_desc": "FACE AU 59 AVENUE DU MARECHAL FOCH - 92064", "stop_name": "EGLISE DE SAINT-CLOUD"}, "geometry": {"type": "Point", "coordinates": [2.208525820752074, 48.84773360554437]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "378f8b3100db07bced48c1f0ca50bdd32926380d", "fields": {"departement": "92", "stop_lat": 48.84993314215792, "code_postal": "92033", "stop_lon": 2.198388295308992, "coord": [48.84993314215792, 2.198388295308992], "stop_id": 4024875, "stop_desc": "FACE 27 RUE DU 19 JANVIER - 92033", "stop_name": "LES CLIQUETS"}, "geometry": {"type": "Point", "coordinates": [2.198388295308992, 48.84993314215792]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e2423d3926258d139bf63721e88eb4ff1c4cbcd5", "fields": {"departement": "92", "stop_lat": 48.79531838058483, "code_postal": "92007", "stop_lon": 2.300442181479905, "coord": [48.79531838058483, 2.300442181479905], "stop_id": 4889648, "stop_desc": "4 RUE DE FONTENAY - 92007", "stop_name": "DAMPIERRE"}, "geometry": {"type": "Point", "coordinates": [2.300442181479905, 48.79531838058483]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "49b3dcd114ca523fcd276ca25dedec9560a67417", "fields": {"departement": "92", "stop_lat": 48.78518996011179, "code_postal": "92071", "stop_lon": 2.3036728856596365, "coord": [48.78518996011179, 2.3036728856596365], "stop_id": 4889654, "stop_desc": "87-93 AVENUE DE BOURG LA REINE - 92071", "stop_name": "LES BLAGIS"}, "geometry": {"type": "Point", "coordinates": [2.3036728856596365, 48.78518996011179]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "23005e8617aed300cf18d25b4d2fc49ee8a9e8f4", "fields": {"departement": "92", "stop_lat": 48.81363167569627, "code_postal": "92049", "stop_lon": 2.3256327423030254, "coord": [48.81363167569627, 2.3256327423030254], "stop_id": 4890499, "stop_desc": "110 AVENUE ARISTIDE BRIAND - 92049", "stop_name": "LEON GAMBETTA"}, "geometry": {"type": "Point", "coordinates": [2.3256327423030254, 48.81363167569627]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4dd8702a09866c735fd660086e5cda974675fcb7", "fields": {"departement": "92", "stop_lat": 48.813532857337734, "code_postal": "92049", "stop_lon": 2.326122681236126, "coord": [48.813532857337734, 2.326122681236126], "stop_id": 4890500, "stop_desc": "105 AVENUE ARISTIDE BRIAND - 92049", "stop_name": "LEON GAMBETTA"}, "geometry": {"type": "Point", "coordinates": [2.326122681236126, 48.813532857337734]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1f42258931bd9d70dd6622b5ebf4b652962ed050", "fields": {"departement": "92", "stop_lat": 48.80574038095107, "code_postal": "92007", "stop_lon": 2.3253215530584908, "coord": [48.80574038095107, 2.3253215530584908], "stop_id": 4890503, "stop_desc": "26 AVENUE ARISTIDE BRIAND - 92007", "stop_name": "CROIX D'ARCUEIL"}, "geometry": {"type": "Point", "coordinates": [2.3253215530584908, 48.80574038095107]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c6151d2e315134a2912fc0307d34b296f8d6e912", "fields": {"departement": "92", "stop_lat": 48.795754436146936, "code_postal": "92007", "stop_lon": 2.3213922506374303, "coord": [48.795754436146936, 2.3213922506374303], "stop_id": 4890506, "stop_desc": "168-170 AVENUE ARISTIDE BRIAND - 92007", "stop_name": "MARCEL BONNET"}, "geometry": {"type": "Point", "coordinates": [2.3213922506374303, 48.795754436146936]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "61cf4d4113cf17dc6038f2a196f14e0f5c5f9cfa", "fields": {"departement": "92", "stop_lat": 48.78265834036124, "code_postal": "92014", "stop_lon": 2.3168128098021983, "coord": [48.78265834036124, 2.3168128098021983], "stop_id": 4890512, "stop_desc": "51 BIS-53 AVENUE DU GENERAL LECLERC - 92014", "stop_name": "RUE DU 8 MAI 1945"}, "geometry": {"type": "Point", "coordinates": [2.3168128098021983, 48.78265834036124]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6423fea7c3cad6ee07401a0a28a1c1807185736e", "fields": {"departement": "92", "stop_lat": 48.77960179320402, "code_postal": "92014", "stop_lon": 2.313400434821077, "coord": [48.77960179320402, 2.313400434821077], "stop_id": 4890513, "stop_desc": "72 BOULEVARD DU MARECHAL JOFFRE - 92014", "stop_name": "BOURG-LA-REINE RER"}, "geometry": {"type": "Point", "coordinates": [2.313400434821077, 48.77960179320402]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b44598b355fc9a09f7a7d85e5820a53207a58205", "fields": {"departement": "92", "stop_lat": 48.777076174853896, "code_postal": "92014", "stop_lon": 2.313442392219605, "coord": [48.777076174853896, 2.313442392219605], "stop_id": 4890514, "stop_desc": "114 BOULEVARD DU MARECHAL JOFFRE - 92014", "stop_name": "PETIT CHAMBORD - LYCEE LAKANAL"}, "geometry": {"type": "Point", "coordinates": [2.313442392219605, 48.777076174853896]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0db76461011d550f42bd94fa89be2c9f6a19ab12", "fields": {"departement": "92", "stop_lat": 48.77713929852077, "code_postal": "92014", "stop_lon": 2.3145031060719545, "coord": [48.77713929852077, 2.3145031060719545], "stop_id": 4890515, "stop_desc": "131 AVENUE DU GENERAL LECLERC - 92014", "stop_name": "PETIT CHAMBORD - LYCEE LAKANAL"}, "geometry": {"type": "Point", "coordinates": [2.3145031060719545, 48.77713929852077]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dba67a22c9a266cac6c0c582bef34e69446c5b33", "fields": {"departement": "91", "stop_lat": 48.734941371594594, "code_postal": "91689", "stop_lon": 2.32408768295942, "coord": [48.734941371594594, 2.32408768295942], "stop_id": 4890545, "stop_desc": "11 ROUTE D'ANTONY - 91689", "stop_name": "LA POSTE"}, "geometry": {"type": "Point", "coordinates": [2.32408768295942, 48.734941371594594]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a077a1df264af2e4197fd87fde739ddfe1c7bd92", "fields": {"departement": "91", "stop_lat": 48.725727292690316, "code_postal": "91689", "stop_lon": 2.3167536723895186, "coord": [48.725727292690316, 2.3167536723895186], "stop_id": 4890552, "stop_desc": "ROND-POINT DE L'EUROPE - 91689", "stop_name": "MONTAVAS"}, "geometry": {"type": "Point", "coordinates": [2.3167536723895186, 48.725727292690316]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9c2055056d31b8798062d53b17c4311e69f95b0b", "fields": {"departement": "91", "stop_lat": 48.70569154817685, "code_postal": "91161", "stop_lon": 2.31389606291992, "coord": [48.70569154817685, 2.31389606291992], "stop_id": 4890558, "stop_desc": "AVENUE MAZARIN - 91161", "stop_name": "COLLEGE DE CHILLY-MAZARIN"}, "geometry": {"type": "Point", "coordinates": [2.31389606291992, 48.70569154817685]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "087ade8430c7d0698e22b7ff69f26fa06d7e6987", "fields": {"departement": "91", "stop_lat": 48.70424493000524, "code_postal": "91161", "stop_lon": 2.316775717016181, "coord": [48.70424493000524, 2.316775717016181], "stop_id": 4890560, "stop_desc": "37 AVENUE MAZARIN - 91161", "stop_name": "BEAUREGARD"}, "geometry": {"type": "Point", "coordinates": [2.316775717016181, 48.70424493000524]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b1eadf8131b0b5c451af15bdf570f6fa1d18ef02", "fields": {"departement": "91", "stop_lat": 48.70255564704986, "code_postal": "91161", "stop_lon": 2.3203207017167378, "coord": [48.70255564704986, 2.3203207017167378], "stop_id": 4890562, "stop_desc": "7 AVENUE MAZARIN - 91161", "stop_name": "PLACE DE LA LIBERATION"}, "geometry": {"type": "Point", "coordinates": [2.3203207017167378, 48.70255564704986]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "72cbf8b496f448ba56b9b9c8c7330904df9dd7ec", "fields": {"departement": "91", "stop_lat": 48.69877681712549, "code_postal": "91161", "stop_lon": 2.3033077155877164, "coord": [48.69877681712549, 2.3033077155877164], "stop_id": 4890574, "stop_desc": "AVENUE PIERRE BROSSOLETTE - 91161", "stop_name": "RUE DE CHILLY"}, "geometry": {"type": "Point", "coordinates": [2.3033077155877164, 48.69877681712549]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2317269dec1f7e52a9ca6645b79dca88a134cf5d", "fields": {"departement": "91", "stop_lat": 48.6972923578992, "code_postal": "91345", "stop_lon": 2.2988821266562796, "coord": [48.6972923578992, 2.2988821266562796], "stop_id": 4890575, "stop_desc": "FACE 34 AVENUE DU GENERAL DE GAULLE - 91345", "stop_name": "GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.2988821266562796, 48.6972923578992]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "38d60a218f8cf57fc364995df82816502b6c5137", "fields": {"departement": "91", "stop_lat": 48.69625528152623, "code_postal": "91345", "stop_lon": 2.2895275620689732, "coord": [48.69625528152623, 2.2895275620689732], "stop_id": 4890583, "stop_desc": "RUE DU CANAL - 91345", "stop_name": "CANAL DE L'YVETTE"}, "geometry": {"type": "Point", "coordinates": [2.2895275620689732, 48.69625528152623]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fd5bc3a70efb6626b7aeb49ea2bb0336e1bf1319", "fields": {"departement": "91", "stop_lat": 48.697425064642374, "code_postal": "91345", "stop_lon": 2.2927988913003228, "coord": [48.697425064642374, 2.2927988913003228], "stop_id": 4890586, "stop_desc": "FACE 6 RUE MICHEL VINCENT - 91345", "stop_name": "PLACE CHARLES STEBER"}, "geometry": {"type": "Point", "coordinates": [2.2927988913003228, 48.697425064642374]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "943646d9adfeae88a7e4da9f4d3290597651a61a", "fields": {"departement": "91", "stop_lat": 48.73678440241334, "code_postal": "91689", "stop_lon": 2.3288296760290894, "coord": [48.73678440241334, 2.3288296760290894], "stop_id": 4890590, "stop_desc": "1 RUE DE MONTJEAN - 91689", "stop_name": "JUMELAGES"}, "geometry": {"type": "Point", "coordinates": [2.3288296760290894, 48.73678440241334]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5b1e63be7e6f017fec872963d45a71ec210c75e0", "fields": {"departement": "92", "stop_lat": 48.77960219728907, "code_postal": "92014", "stop_lon": 2.315508420878453, "coord": [48.77960219728907, 2.315508420878453], "stop_id": 4890593, "stop_desc": "PLACE CONDORCET - 92014", "stop_name": "CONDORCET - MAIRIE-RER"}, "geometry": {"type": "Point", "coordinates": [2.315508420878453, 48.77960219728907]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d0b87cf628a71ff7f90137e671760201aefb5827", "fields": {"departement": "94", "stop_lat": 48.80527304622148, "code_postal": "94003", "stop_lon": 2.3256346130653758, "coord": [48.80527304622148, 2.3256346130653758], "stop_id": 4890599, "stop_desc": "77-79 AVENUE ARISTIDE BRIAND - 94003", "stop_name": "CROIX D'ARCUEIL"}, "geometry": {"type": "Point", "coordinates": [2.3256346130653758, 48.80527304622148]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "58aa2cde152c654c45db787d29b5954701a68fed", "fields": {"departement": "92", "stop_lat": 48.795754436146936, "code_postal": "92007", "stop_lon": 2.3213922506374303, "coord": [48.795754436146936, 2.3213922506374303], "stop_id": 4890607, "stop_desc": "168-170 AVENUE ARISTIDE BRIAND - 92007", "stop_name": "MARCEL BONNET"}, "geometry": {"type": "Point", "coordinates": [2.3213922506374303, 48.795754436146936]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d2f15725f66ac7f3c763d5620eefaf79e2df834c", "fields": {"departement": "92", "stop_lat": 48.782711905190155, "code_postal": "92014", "stop_lon": 2.3147998813643778, "coord": [48.782711905190155, 2.3147998813643778], "stop_id": 4890611, "stop_desc": "FACE 43 BOULEVARD DU MARECHAL JOFFRE - 92014", "stop_name": "RUE DU 8 MAI 1945"}, "geometry": {"type": "Point", "coordinates": [2.3147998813643778, 48.782711905190155]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "87dfb1f73588b8489f09b802fc058e6f785832b8", "fields": {"departement": "92", "stop_lat": 48.77033474019488, "code_postal": "92002", "stop_lon": 2.311460248843124, "coord": [48.77033474019488, 2.311460248843124], "stop_id": 4890615, "stop_desc": "69 AVENUE RAYMOND ARON - 92002", "stop_name": "LA FONTAINE"}, "geometry": {"type": "Point", "coordinates": [2.311460248843124, 48.77033474019488]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bb017a0a632b4ba937d3202f4e701cfaa1dda21e", "fields": {"departement": "92", "stop_lat": 48.765975131381744, "code_postal": "92002", "stop_lon": 2.3096948881143153, "coord": [48.765975131381744, 2.3096948881143153], "stop_id": 4890616, "stop_desc": "25 AVENUE RAYMOND ARON - 92002", "stop_name": "NORMANDIE"}, "geometry": {"type": "Point", "coordinates": [2.3096948881143153, 48.765975131381744]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "12a12ccc376a2f601ef3454994b6b3bff2a4b777", "fields": {"departement": "91", "stop_lat": 48.725727292690316, "code_postal": "91689", "stop_lon": 2.3167536723895186, "coord": [48.725727292690316, 2.3167536723895186], "stop_id": 4890630, "stop_desc": "ROND-POINT DE L'EUROPE - 91689", "stop_name": "MONTAVAS"}, "geometry": {"type": "Point", "coordinates": [2.3167536723895186, 48.725727292690316]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ae4a1a198ca325c8043b05de32156559eae0b86d", "fields": {"departement": "91", "stop_lat": 48.70424493000524, "code_postal": "91161", "stop_lon": 2.316775717016181, "coord": [48.70424493000524, 2.316775717016181], "stop_id": 4890634, "stop_desc": "37 AVENUE MAZARIN - 91161", "stop_name": "BEAUREGARD"}, "geometry": {"type": "Point", "coordinates": [2.316775717016181, 48.70424493000524]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "48a4f411fa7e4336232ac93e5030ca09214ced51", "fields": {"departement": "91", "stop_lat": 48.70040805678423, "code_postal": "91432", "stop_lon": 2.3259431930276775, "coord": [48.70040805678423, 2.3259431930276775], "stop_id": 4890636, "stop_desc": "20 AVENUE GABRIEL PERI - 91432", "stop_name": "L'AVENIR"}, "geometry": {"type": "Point", "coordinates": [2.3259431930276775, 48.70040805678423]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7b988a8037ab3a9945b99ad30b447435e290d699", "fields": {"departement": "91", "stop_lat": 48.70668227845886, "code_postal": "91432", "stop_lon": 2.328793806915912, "coord": [48.70668227845886, 2.328793806915912], "stop_id": 4890639, "stop_desc": "3 AVENUE MARCEL TELOTTE - 91432", "stop_name": "GABRIEL FONTAINE"}, "geometry": {"type": "Point", "coordinates": [2.328793806915912, 48.70668227845886]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "779fb39ad856199fc87e3d4f335a2cb022fcce25", "fields": {"departement": "91", "stop_lat": 48.695398352005185, "code_postal": "91161", "stop_lon": 2.307939984216112, "coord": [48.695398352005185, 2.307939984216112], "stop_id": 4890647, "stop_desc": "51 RUE DE GRAVIGNY - 91161", "stop_name": "SAINT-ELOI"}, "geometry": {"type": "Point", "coordinates": [2.307939984216112, 48.695398352005185]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2214273a8ed3bffb68240bde0252decf8bd5f5c3", "fields": {"departement": "91", "stop_lat": 48.69613835362166, "code_postal": "91345", "stop_lon": 2.289337575962143, "coord": [48.69613835362166, 2.289337575962143], "stop_id": 4890671, "stop_desc": "RUE DU CANAL - 91345", "stop_name": "CANAL DE L'YVETTE"}, "geometry": {"type": "Point", "coordinates": [2.289337575962143, 48.69613835362166]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fb3d148f4eb63b11307efbc47cbc912e23804d7d", "fields": {"departement": "91", "stop_lat": 48.6996427594255, "code_postal": "91161", "stop_lon": 2.316519527030894, "coord": [48.6996427594255, 2.316519527030894], "stop_id": 4890681, "stop_desc": "AVENUE PIERRE BROSSOLETTE - 91161", "stop_name": "DIVISION LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.316519527030894, 48.6996427594255]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "db6d9c186f98773a0206ed9aed4a03019c0a0a22", "fields": {"departement": "91", "stop_lat": 48.725637469477626, "code_postal": "91689", "stop_lon": 2.317106938525003, "coord": [48.725637469477626, 2.317106938525003], "stop_id": 4890687, "stop_desc": "BD DE L'EUROPE - 91689", "stop_name": "MONTAVAS"}, "geometry": {"type": "Point", "coordinates": [2.317106938525003, 48.725637469477626]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0167ca4475202bba5802b63e9e543ad02e8269d2", "fields": {"departement": "91", "stop_lat": 48.7293688486765, "code_postal": "91689", "stop_lon": 2.326412431744238, "coord": [48.7293688486765, 2.326412431744238], "stop_id": 4890689, "stop_desc": "39 RUE VICTOR BALOCHE - 91689", "stop_name": "MONDETOUR"}, "geometry": {"type": "Point", "coordinates": [2.326412431744238, 48.7293688486765]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3b3fcdcfcf4dd801eda296d885097285d87436e4", "fields": {"departement": "92", "stop_lat": 48.74548326381813, "code_postal": "92002", "stop_lon": 2.3150741907437484, "coord": [48.74548326381813, 2.3150741907437484], "stop_id": 4890696, "stop_desc": "FACE 124 AV ARMAND GUILLEBAUD - 92002", "stop_name": "LES RABATS"}, "geometry": {"type": "Point", "coordinates": [2.3150741907437484, 48.74548326381813]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b286f92c07f59352b61a9955c98d202dee4af19c", "fields": {"departement": "92", "stop_lat": 48.75025356657646, "code_postal": "92002", "stop_lon": 2.3045245832510624, "coord": [48.75025356657646, 2.3045245832510624], "stop_id": 4890698, "stop_desc": "FACE 50 AVENUE DE LA DIVISION LECLERC - 92002", "stop_name": "PONT D'ANTONY"}, "geometry": {"type": "Point", "coordinates": [2.3045245832510624, 48.75025356657646]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c069ed11957304d48310d56cbf9a49057aa0be6e", "fields": {"departement": "94", "stop_lat": 48.762463098390114, "code_postal": "94073", "stop_lon": 2.38569517966057, "coord": [48.762463098390114, 2.38569517966057], "stop_id": 4909859, "stop_desc": "45-47 RUE DE LA GALAISE - 94073", "stop_name": "LA GALAISE"}, "geometry": {"type": "Point", "coordinates": [2.38569517966057, 48.762463098390114]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7974418b08940608835ad86f49bf5510dc63153d", "fields": {"departement": "93", "stop_lat": 48.91995249583406, "code_postal": "93066", "stop_lon": 2.3438412371492428, "coord": [48.91995249583406, 2.3438412371492428], "stop_id": 4914774, "stop_desc": "161 BOULEVARD ANATOLE FRANCE - 93066", "stop_name": "CARREFOUR PLEYEL"}, "geometry": {"type": "Point", "coordinates": [2.3438412371492428, 48.91995249583406]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0ac6a7e1a5ce46a1f6fccc75e433cdd4103a3b14", "fields": {"departement": "75", "stop_lat": 48.84598203749001, "code_postal": "75112", "stop_lon": 2.3739805748450498, "coord": [48.84598203749001, 2.3739805748450498], "stop_id": 4996976, "stop_desc": "FACE 23BIS BOULEVARD DIDEROT - 75112", "stop_name": "GARE DE LYON - DIDEROT"}, "geometry": {"type": "Point", "coordinates": [2.3739805748450498, 48.84598203749001]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "25a34d67e24486d3c536c90bf91582a2613cd9ab", "fields": {"departement": "75", "stop_lat": 48.86270065196884, "code_postal": "75111", "stop_lon": 2.3669636161395187, "coord": [48.86270065196884, 2.3669636161395187], "stop_id": 4996985, "stop_desc": "20 BOULEVARD DES FILLES DU CALVAIRES - 75111", "stop_name": "OBERKAMPF - FILLES DU CALVAIRE"}, "geometry": {"type": "Point", "coordinates": [2.3669636161395187, 48.86270065196884]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1b2453d64c25188f778e4d5f4c819838a296fcef", "fields": {"departement": "75", "stop_lat": 48.86714090245713, "code_postal": "75110", "stop_lon": 2.364936352609631, "coord": [48.86714090245713, 2.364936352609631], "stop_id": 4996989, "stop_desc": "FACE 10 PLACE DE LA REPUBLIQUE - 75110", "stop_name": "REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.364936352609631, 48.86714090245713]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "59ee56d410b3760977242ff5c71c483bec18c72f", "fields": {"departement": "75", "stop_lat": 48.870844523505404, "code_postal": "75110", "stop_lon": 2.361069158580319, "coord": [48.870844523505404, 2.361069158580319], "stop_id": 4996990, "stop_desc": "8 PLACE JACQUES BONSERGENT - 75110", "stop_name": "JACQUES BONSERGENT"}, "geometry": {"type": "Point", "coordinates": [2.361069158580319, 48.870844523505404]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c50ec804598d7912a43bfe6c6a5e622912522606", "fields": {"departement": "75", "stop_lat": 48.871114258986275, "code_postal": "75110", "stop_lon": 2.3604834541826505, "coord": [48.871114258986275, 2.3604834541826505], "stop_id": 4996991, "stop_desc": "27-29 BOULEVARD DE MAGENTA - 75110", "stop_name": "JACQUES BONSERGENT"}, "geometry": {"type": "Point", "coordinates": [2.3604834541826505, 48.871114258986275]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b7f812e5fd12e3aaa910d29a8761766e115f96d9", "fields": {"departement": "75", "stop_lat": 48.88082998036255, "code_postal": "75110", "stop_lon": 2.3579941644875797, "coord": [48.88082998036255, 2.3579941644875797], "stop_id": 4996996, "stop_desc": "184 RUE DU FAUBOURG SAINT-DENIS - 75110", "stop_name": "GARE DU NORD"}, "geometry": {"type": "Point", "coordinates": [2.3579941644875797, 48.88082998036255]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "af4d848af668df77f3cd4217bb405430167830bf", "fields": {"departement": "75", "stop_lat": 48.89267478539982, "code_postal": "75118", "stop_lon": 2.3598661573340323, "coord": [48.89267478539982, 2.3598661573340323], "stop_id": 4997005, "stop_desc": "34 RUE DE LA CHAPELLE - 75118", "stop_name": "LES ROSES"}, "geometry": {"type": "Point", "coordinates": [2.3598661573340323, 48.89267478539982]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "679ee300202c7eb59fe2fc072979a227f4c96208", "fields": {"departement": "75", "stop_lat": 48.85281401294961, "code_postal": "75104", "stop_lon": 2.3687965324803804, "coord": [48.85281401294961, 2.3687965324803804], "stop_id": 4997021, "stop_desc": "PLACE DE LA BASTILLE - 75104", "stop_name": "BASTILLE"}, "geometry": {"type": "Point", "coordinates": [2.3687965324803804, 48.85281401294961]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a2126eaf314bc1cade5e5fe0d9c4572b95ee0484", "fields": {"departement": "92", "stop_lat": 48.91787456218363, "code_postal": "92004", "stop_lon": 2.314741297717607, "coord": [48.91787456218363, 2.314741297717607], "stop_id": 5009395, "stop_desc": "3 RUE PIERRE CURIE - 92004", "stop_name": "ASNIERES - BORDS DE SEINE"}, "geometry": {"type": "Point", "coordinates": [2.314741297717607, 48.91787456218363]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7c32971b8f3fed4095672d8bd1ed59b8777f1261", "fields": {"departement": "92", "stop_lat": 48.918852093289466, "code_postal": "92036", "stop_lon": 2.305699893660031, "coord": [48.918852093289466, 2.305699893660031], "stop_id": 5009399, "stop_desc": "38 RUE GEORGES CORETE - 92036", "stop_name": "GEORGES CORETE"}, "geometry": {"type": "Point", "coordinates": [2.305699893660031, 48.918852093289466]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "296b1f546c05ca4b4592202f23b030d1092eacea", "fields": {"departement": "92", "stop_lat": 48.9203881821441, "code_postal": "92036", "stop_lon": 2.3032170468153668, "coord": [48.9203881821441, 2.3032170468153668], "stop_id": 5009400, "stop_desc": "81 AVENUE CHANDON - 92036", "stop_name": "LYCEE GALILEE"}, "geometry": {"type": "Point", "coordinates": [2.3032170468153668, 48.9203881821441]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7d270f875433de67c3bd831231b695f428a30b83", "fields": {"departement": "92", "stop_lat": 48.93245315789418, "code_postal": "92025", "stop_lon": 2.271182272626384, "coord": [48.93245315789418, 2.271182272626384], "stop_id": 5009412, "stop_desc": "77 RUE JULES MICHELET - 92025", "stop_name": "LOUISE MICHEL"}, "geometry": {"type": "Point", "coordinates": [2.271182272626384, 48.93245315789418]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eed32c44fbcb7385a6edfa34ccfd8a3019c69394", "fields": {"departement": "92", "stop_lat": 48.92834803912217, "code_postal": "92025", "stop_lon": 2.2594170747775593, "coord": [48.92834803912217, 2.2594170747775593], "stop_id": 5009435, "stop_desc": "FACE 81 BOULEVARD GAMBETTA - 92025", "stop_name": "PRESIDENT KENNEDY"}, "geometry": {"type": "Point", "coordinates": [2.2594170747775593, 48.92834803912217]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "20ccf6bd40e9e827f37eccfb9a8300b89a7dffcb", "fields": {"departement": "92", "stop_lat": 48.92413314103149, "code_postal": "92025", "stop_lon": 2.2593688575570114, "coord": [48.92413314103149, 2.2593688575570114], "stop_id": 5009436, "stop_desc": "FACE 2 AVENUE MENELOTTE - 92025", "stop_name": "GARE DE COLOMBES"}, "geometry": {"type": "Point", "coordinates": [2.2593688575570114, 48.92413314103149]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5a34c096deb520d2c2aee44ae82003ad92a01178", "fields": {"departement": "92", "stop_lat": 48.9235833559115, "code_postal": "92025", "stop_lon": 2.2569830831008257, "coord": [48.9235833559115, 2.2569830831008257], "stop_id": 5009437, "stop_desc": "75 RUE DU BOURNARD - 92025", "stop_name": "RHIN ET DANUBE"}, "geometry": {"type": "Point", "coordinates": [2.2569830831008257, 48.9235833559115]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bc2506e94c5a65dc0cac6934cab9b9851e2e8167", "fields": {"departement": "92", "stop_lat": 48.923186035500706, "code_postal": "92025", "stop_lon": 2.2542152626298364, "coord": [48.923186035500706, 2.2542152626298364], "stop_id": 5009438, "stop_desc": "FACE 20 RUE DU BOURNARD - 92025", "stop_name": "MAIRIE DE COLOMBES"}, "geometry": {"type": "Point", "coordinates": [2.2542152626298364, 48.923186035500706]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a5572be4d4118b43ed0ff0b022adbbcaf8e0e3f2", "fields": {"departement": "75", "stop_lat": 48.87567135548821, "code_postal": "75110", "stop_lon": 2.357583347393136, "coord": [48.87567135548821, 2.357583347393136], "stop_id": 5018140, "stop_desc": "81 BOULEVARD DE STRASBOURG - 75110", "stop_name": "GARE DE L'EST"}, "geometry": {"type": "Point", "coordinates": [2.357583347393136, 48.87567135548821]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2214d2569159d9718220ca035977cc284452e5f3", "fields": {"departement": "75", "stop_lat": 48.891391107788415, "code_postal": "75118", "stop_lon": 2.3497663277119103, "coord": [48.891391107788415, 2.3497663277119103], "stop_id": 5018150, "stop_desc": "96 BOULEVARD BARBES - 75118", "stop_name": "MARCADET - POISSONNIERS"}, "geometry": {"type": "Point", "coordinates": [2.3497663277119103, 48.891391107788415]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "316d200a0d6489c5a94c5e269594436fba40e8f6", "fields": {"departement": "75", "stop_lat": 48.89264078827443, "code_postal": "75118", "stop_lon": 2.344042209171573, "coord": [48.89264078827443, 2.344042209171573], "stop_id": 5018152, "stop_desc": "PLACE JULES JOFFRIN - 75118", "stop_name": "MAIRIE DU 18E - JULES JOFFRIN"}, "geometry": {"type": "Point", "coordinates": [2.344042209171573, 48.89264078827443]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c73bda3067aca571c1d1f122b0cfbe612463f8d6", "fields": {"departement": "75", "stop_lat": 48.89323410756576, "code_postal": "75118", "stop_lon": 2.3397898117574636, "coord": [48.89323410756576, 2.3397898117574636], "stop_id": 5018154, "stop_desc": "116 RUE ORDENER - 75118", "stop_name": "DUHESME - LE RUISSEAU"}, "geometry": {"type": "Point", "coordinates": [2.3397898117574636, 48.89323410756576]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e4735be60b4b2de0a3c1a3d0b5750699d7d2b02b", "fields": {"departement": "75", "stop_lat": 48.89290155427124, "code_postal": "75118", "stop_lon": 2.340880166724139, "coord": [48.89290155427124, 2.340880166724139], "stop_id": 5018155, "stop_desc": "131 RUE ORDENER - 75118", "stop_name": "DUHESME - LE RUISSEAU"}, "geometry": {"type": "Point", "coordinates": [2.340880166724139, 48.89290155427124]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2ec3dd1f2fcd788065f7db968237bd1a9fb5ea99", "fields": {"departement": "75", "stop_lat": 48.89347678757357, "code_postal": "75118", "stop_lon": 2.3369548269427955, "coord": [48.89347678757357, 2.3369548269427955], "stop_id": 5018157, "stop_desc": "171 RUE ORDENER - 75118", "stop_name": "DAMREMONT - ORDENER"}, "geometry": {"type": "Point", "coordinates": [2.3369548269427955, 48.89347678757357]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "67f2d448abcfbea126825d6b6003f0d9f4056783", "fields": {"departement": "75", "stop_lat": 48.89290112691723, "code_postal": "75117", "stop_lon": 2.326528155336177, "coord": [48.89290112691723, 2.326528155336177], "stop_id": 5018160, "stop_desc": "71-73 RUE GUY MOQUET - 75117", "stop_name": "GUY MOQUET"}, "geometry": {"type": "Point", "coordinates": [2.326528155336177, 48.89290112691723]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aeed01f21b0a098b074319289a038f87ffa0733a", "fields": {"departement": "75", "stop_lat": 48.88107776627119, "code_postal": "75117", "stop_lon": 2.30051755124638, "coord": [48.88107776627119, 2.30051755124638], "stop_id": 5018178, "stop_desc": "78 AVENUE DE WAGRAM - 75117", "stop_name": "WAGRAM - COURCELLES"}, "geometry": {"type": "Point", "coordinates": [2.30051755124638, 48.88107776627119]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8a4e001485c46c5dcda0c01f7327baaddec3c67a", "fields": {"departement": "75", "stop_lat": 48.874785174138395, "code_postal": "75108", "stop_lon": 2.2959440504647897, "coord": [48.874785174138395, 2.2959440504647897], "stop_id": 5018183, "stop_desc": "2 AVENUE DE WAGRAM - 75108", "stop_name": "CHARLES DE GAULLE - ETOILE - WAGRAM"}, "geometry": {"type": "Point", "coordinates": [2.2959440504647897, 48.874785174138395]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fc0d20863847ea54b40bc9635619fe382d7ad852", "fields": {"departement": "75", "stop_lat": 48.8932518218494, "code_postal": "75118", "stop_lon": 2.328981434646843, "coord": [48.8932518218494, 2.328981434646843], "stop_id": 5018185, "stop_desc": "233 RUE CHAMPIONNET - 75118", "stop_name": "GUY MOQUET"}, "geometry": {"type": "Point", "coordinates": [2.328981434646843, 48.8932518218494]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "16771c9417aaaff9793dfc5303cdefda9eebb656", "fields": {"departement": "75", "stop_lat": 48.87157478875724, "code_postal": "75109", "stop_lon": 2.3326633822874325, "coord": [48.87157478875724, 2.3326633822874325], "stop_id": 5018186, "stop_desc": "4-6 RUE HALEVY - 75109", "stop_name": "OPERA"}, "geometry": {"type": "Point", "coordinates": [2.3326633822874325, 48.87157478875724]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "db74136ea78361baa61a742458f4d5fb5e852adc", "fields": {"departement": "75", "stop_lat": 48.87576218699689, "code_postal": "75108", "stop_lon": 2.3236567975351456, "coord": [48.87576218699689, 2.3236567975351456], "stop_id": 5018192, "stop_desc": "17 RUE DE ROME - 75108", "stop_name": "GARE SAINT-LAZARE"}, "geometry": {"type": "Point", "coordinates": [2.3236567975351456, 48.87576218699689]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "24a56e425dcd6d7ac1e8a9d3ec789731a0ea8d3c", "fields": {"departement": "75", "stop_lat": 48.88023794533592, "code_postal": "75108", "stop_lon": 2.3245140812346885, "coord": [48.88023794533592, 2.3245140812346885], "stop_id": 5018195, "stop_desc": "12 RUE DE SAINT-PETERSBOURG - 75108", "stop_name": "BUCAREST"}, "geometry": {"type": "Point", "coordinates": [2.3245140812346885, 48.88023794533592]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c8afbe6ac5697fb40dfa3c32a884579a64784c33", "fields": {"departement": "75", "stop_lat": 48.882412284789126, "code_postal": "75117", "stop_lon": 2.319948541152827, "coord": [48.882412284789126, 2.319948541152827], "stop_id": 5018199, "stop_desc": "RUE DE ROME - 75117", "stop_name": "MAIRIE DU 17E"}, "geometry": {"type": "Point", "coordinates": [2.319948541152827, 48.882412284789126]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b898c539ce61745e1a6634d81857ccbbac00ef8b", "fields": {"departement": "75", "stop_lat": 48.8861598193159, "code_postal": "75117", "stop_lon": 2.3190069671238276, "coord": [48.8861598193159, 2.3190069671238276], "stop_id": 5018200, "stop_desc": "56-58 RUE DES BATIGNOLLES - 75117", "stop_name": "LOBLIGEOIS"}, "geometry": {"type": "Point", "coordinates": [2.3190069671238276, 48.8861598193159]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0838aaedfb1f9f04cb01ff6079b9dc53f47fdd9f", "fields": {"departement": "75", "stop_lat": 48.88861273908273, "code_postal": "75117", "stop_lon": 2.315503575732585, "coord": [48.88861273908273, 2.315503575732585], "stop_id": 5018204, "stop_desc": "FACE 20 PLACE CHARLES FILLION - 75117", "stop_name": "PARC MARTIN LUTHER KING"}, "geometry": {"type": "Point", "coordinates": [2.315503575732585, 48.88861273908273]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "767a395fe9bdcfe32054e8b7d205be37f297229b", "fields": {"departement": "75", "stop_lat": 48.896810115028295, "code_postal": "75117", "stop_lon": 2.322560821742218, "coord": [48.896810115028295, 2.322560821742218], "stop_id": 5018211, "stop_desc": "87 RUE POUCHET - 75117", "stop_name": "PORTE POUCHET"}, "geometry": {"type": "Point", "coordinates": [2.322560821742218, 48.896810115028295]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e147690ca91b75967a481a38e0530f99b422b691", "fields": {"departement": "75", "stop_lat": 48.88323000421533, "code_postal": "75117", "stop_lon": 2.3191442693978814, "coord": [48.88323000421533, 2.3191442693978814], "stop_id": 5018220, "stop_desc": "73 RUE DES DAMES - 75117", "stop_name": "LA CONDAMINE"}, "geometry": {"type": "Point", "coordinates": [2.3191442693978814, 48.88323000421533]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b71289b62abb88fc703879fe54f8bedbe85c8b73", "fields": {"departement": "75", "stop_lat": 48.86287390987719, "code_postal": "75103", "stop_lon": 2.354213758372903, "coord": [48.86287390987719, 2.354213758372903], "stop_id": 5018336, "stop_desc": "59 RUE BEAUBOURG - 75103", "stop_name": "GRENIER SAINT-LAZARE - QUARTIER DE L'HORLOGE"}, "geometry": {"type": "Point", "coordinates": [2.354213758372903, 48.86287390987719]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "562393ba2ff584d33ce03a6fc5ef9531dce9c847", "fields": {"departement": "75", "stop_lat": 48.8597465272257, "code_postal": "75104", "stop_lon": 2.35249649876749, "coord": [48.8597465272257, 2.35249649876749], "stop_id": 5018337, "stop_desc": "FACE 22 RUE DU RENARD - 75104", "stop_name": "CENTRE GEORGES POMPIDOU"}, "geometry": {"type": "Point", "coordinates": [2.35249649876749, 48.8597465272257]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1084d0e75b713f54de7ca223956de02fb0c38d63", "fields": {"departement": "75", "stop_lat": 48.853761468030406, "code_postal": "75104", "stop_lon": 2.3470742363782513, "coord": [48.853761468030406, 2.3470742363782513], "stop_id": 5018339, "stop_desc": "6 RUE DE LA CITE - 75104", "stop_name": "CITE - PARVIS NOTRE-DAME"}, "geometry": {"type": "Point", "coordinates": [2.3470742363782513, 48.853761468030406]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a404cfb2ec2b89c4da2356f109493a7e7492b84e", "fields": {"departement": "75", "stop_lat": 48.849411331848685, "code_postal": "75105", "stop_lon": 2.349265945050231, "coord": [48.849411331848685, 2.349265945050231], "stop_id": 5018342, "stop_desc": "4 RUE MONGE - 75105", "stop_name": "MAUBERT - MUTUALITE"}, "geometry": {"type": "Point", "coordinates": [2.349265945050231, 48.849411331848685]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bfe191fd19ac4d77760c8b38a4b8cecd8bb21c50", "fields": {"departement": "75", "stop_lat": 48.84101668295286, "code_postal": "75105", "stop_lon": 2.352014435203932, "coord": [48.84101668295286, 2.352014435203932], "stop_id": 5018349, "stop_desc": "101-103 RUE MONGE - 75105", "stop_name": "CENSIER - DAUBENTON"}, "geometry": {"type": "Point", "coordinates": [2.352014435203932, 48.84101668295286]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "033044f1854540b39dfc648ce6e0a640836f4388", "fields": {"departement": "75", "stop_lat": 48.83895865695941, "code_postal": "75105", "stop_lon": 2.35097907397105, "coord": [48.83895865695941, 2.35097907397105], "stop_id": 5018351, "stop_desc": "119-119BIS RUE MONGE - 75105", "stop_name": "MONGE - CLAUDE BERNARD"}, "geometry": {"type": "Point", "coordinates": [2.35097907397105, 48.83895865695941]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "49f3bad278420bdd21b3d06f76925064a0881617", "fields": {"departement": "75", "stop_lat": 48.82641104428314, "code_postal": "75113", "stop_lon": 2.357400702995543, "coord": [48.82641104428314, 2.357400702995543], "stop_id": 5018361, "stop_desc": "55-57 AVENUE D'ITALIE - 75113", "stop_name": "ITALIE - TOLBIAC"}, "geometry": {"type": "Point", "coordinates": [2.357400702995543, 48.82641104428314]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1a6dd540e77c5c82f1cff6726b3b0ad7470063de", "fields": {"departement": "75", "stop_lat": 48.81940931886217, "code_postal": "75113", "stop_lon": 2.3592353811253997, "coord": [48.81940931886217, 2.3592353811253997], "stop_id": 5018364, "stop_desc": "190 AVENUE D'ITALIE - 75113", "stop_name": "PORTE D'ITALIE"}, "geometry": {"type": "Point", "coordinates": [2.3592353811253997, 48.81940931886217]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "23381feb0808e66d6545c0dce30d93751c6fb187", "fields": {"departement": "94", "stop_lat": 48.809738105933455, "code_postal": "94043", "stop_lon": 2.361340495740618, "coord": [48.809738105933455, 2.361340495740618], "stop_id": 5018372, "stop_desc": "6 AVENUE EUGENE THOMAS - 94043", "stop_name": "LE KREMLIN-BICETRE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.361340495740618, 48.809738105933455]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9fd51aa5ac8b8d2bada3a6734dde1f596ae69800", "fields": {"departement": "94", "stop_lat": 48.810501863902964, "code_postal": "94043", "stop_lon": 2.362320626590704, "coord": [48.810501863902964, 2.362320626590704], "stop_id": 5018373, "stop_desc": "75 AVENUE DE FONTAINEBLEAU - 94043", "stop_name": "LE KREMLIN-BICETRE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.362320626590704, 48.810501863902964]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c6772842e378ae11e4129bdf89e93494ea4b5bfd", "fields": {"departement": "94", "stop_lat": 48.80720498540677, "code_postal": "94043", "stop_lon": 2.352712392424016, "coord": [48.80720498540677, 2.352712392424016], "stop_id": 5018376, "stop_desc": "50 AVENUE CHARLES GIDE - 94043", "stop_name": "BARNUFLES-LA PISCINE"}, "geometry": {"type": "Point", "coordinates": [2.352712392424016, 48.80720498540677]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "966f9125e528d43e93cbd3cf74552803e30fe136", "fields": {"departement": "94", "stop_lat": 48.805093501623176, "code_postal": "94043", "stop_lon": 2.346452733070576, "coord": [48.805093501623176, 2.346452733070576], "stop_id": 5018380, "stop_desc": "113 AVENUE CHARLES GIDE - 94043", "stop_name": "FORT DU KREMLIN-BICETRE"}, "geometry": {"type": "Point", "coordinates": [2.346452733070576, 48.805093501623176]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4897ef2f6d0dfeebd2b11fb7dda2bf84810c7905", "fields": {"departement": "75", "stop_lat": 48.868338278887315, "code_postal": "75103", "stop_lon": 2.3538613429496, "coord": [48.868338278887315, 2.3538613429496], "stop_id": 5018390, "stop_desc": "108 BOULEVARD DE SEBASTOPOL - 75103", "stop_name": "STRASBOURG - SAINT-DENIS"}, "geometry": {"type": "Point", "coordinates": [2.3538613429496, 48.868338278887315]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fbf818bf200618049340ff3ab58b4417e85a843e", "fields": {"departement": "75", "stop_lat": 48.865821809644764, "code_postal": "75103", "stop_lon": 2.353928649583883, "coord": [48.865821809644764, 2.353928649583883], "stop_id": 5018396, "stop_desc": "37-39 RUE REAUMUR - 75103", "stop_name": "REAUMUR - ARTS ET METIERS"}, "geometry": {"type": "Point", "coordinates": [2.353928649583883, 48.865821809644764]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ac5363f2ac3da1641c526c3b5740a99ae9009370", "fields": {"departement": "75", "stop_lat": 48.85747297682197, "code_postal": "75104", "stop_lon": 2.3502484760856097, "coord": [48.85747297682197, 2.3502484760856097], "stop_id": 5018399, "stop_desc": "4-6 RUE DE LA COUTELLERIE - 75104", "stop_name": "CHATELET - HOTEL DE VILLE"}, "geometry": {"type": "Point", "coordinates": [2.3502484760856097, 48.85747297682197]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2f2aa68e2c95d6045fc0a914c87896c888c4e9dd", "fields": {"departement": "75", "stop_lat": 48.85059796516235, "code_postal": "75105", "stop_lon": 2.345984155428729, "coord": [48.85059796516235, 2.345984155428729], "stop_id": 5018402, "stop_desc": "63 BD SAINT-GERMAIN - 75105", "stop_name": "DANTE"}, "geometry": {"type": "Point", "coordinates": [2.345984155428729, 48.85059796516235]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1085d254b66a1feb6da2dd3e8abef340bda22ab7", "fields": {"departement": "75", "stop_lat": 48.8263661608696, "code_postal": "75113", "stop_lon": 2.357073993586242, "coord": [48.8263661608696, 2.357073993586242], "stop_id": 5018413, "stop_desc": "92-94 AVENUE D'ITALIE - 75113", "stop_name": "ITALIE - TOLBIAC"}, "geometry": {"type": "Point", "coordinates": [2.357073993586242, 48.8263661608696]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "71193c6aadb7d51e5c65a00494fe2db3db0c8d7a", "fields": {"departement": "94", "stop_lat": 48.81013321723447, "code_postal": "94043", "stop_lon": 2.3630144519730214, "coord": [48.81013321723447, 2.3630144519730214], "stop_id": 5018423, "stop_desc": "RUE EDMOND MICHELET - 94043", "stop_name": "LE KREMLIN-BICETRE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.3630144519730214, 48.81013321723447]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1dae16276cbe20e6eb1595f8aec960650c313421", "fields": {"departement": "94", "stop_lat": 48.80943303655347, "code_postal": "94043", "stop_lon": 2.3586460244237313, "coord": [48.80943303655347, 2.3586460244237313], "stop_id": 5018426, "stop_desc": "1 RUE DE VERDUN - 94043", "stop_name": "HOPITAL DU KREMLIN-BICETRE"}, "geometry": {"type": "Point", "coordinates": [2.3586460244237313, 48.80943303655347]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7b1d3f551bc071ca578c2dd3f610e80ba3d059df", "fields": {"departement": "75", "stop_lat": 48.82247424034754, "code_postal": "75113", "stop_lon": 2.3585833443279376, "coord": [48.82247424034754, 2.3585833443279376], "stop_id": 5018432, "stop_desc": "109 AVENUE D'ITALIE - 75113", "stop_name": "MAISON BLANCHE"}, "geometry": {"type": "Point", "coordinates": [2.3585833443279376, 48.82247424034754]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b6975f9454697eee3c2354e9e62a5d40ebcd6955", "fields": {"departement": "92", "stop_lat": 48.8149894949538, "code_postal": "92048", "stop_lon": 2.2339473492547812, "coord": [48.8149894949538, 2.2339473492547812], "stop_id": 5018465, "stop_desc": "40 BOULEVARD VERD-DE-ST JULIEN - 92048", "stop_name": "STALINGRAD"}, "geometry": {"type": "Point", "coordinates": [2.2339473492547812, 48.8149894949538]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "62d270fe649fcb7f978ae5383824fb0edb185ac1", "fields": {"departement": "92", "stop_lat": 48.830667352064815, "code_postal": "92040", "stop_lon": 2.278445245919053, "coord": [48.830667352064815, 2.278445245919053], "stop_id": 5018488, "stop_desc": "23 RUE GUYNEMER - 92040", "stop_name": "SEVERINE"}, "geometry": {"type": "Point", "coordinates": [2.278445245919053, 48.830667352064815]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ecf2568e5cf4ff0914a0a1ab2060fed29cdf14cc", "fields": {"departement": "92", "stop_lat": 48.91787456218363, "code_postal": "92004", "stop_lon": 2.314741297717607, "coord": [48.91787456218363, 2.314741297717607], "stop_id": 5020412, "stop_desc": "3 RUE PIERRE CURIE - 92004", "stop_name": "ASNIERES - BORDS DE SEINE"}, "geometry": {"type": "Point", "coordinates": [2.314741297717607, 48.91787456218363]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "58bf721bfa038e6e4d1bfed677aa2672da1f5828", "fields": {"departement": "92", "stop_lat": 48.918852093289466, "code_postal": "92036", "stop_lon": 2.305699893660031, "coord": [48.918852093289466, 2.305699893660031], "stop_id": 5020419, "stop_desc": "38 RUE GEORGES CORETE - 92036", "stop_name": "GEORGES CORETE"}, "geometry": {"type": "Point", "coordinates": [2.305699893660031, 48.918852093289466]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "62b3b7595522f0fa25bb3d52ea6c5d3aaff7e56d", "fields": {"departement": "92", "stop_lat": 48.9203881821441, "code_postal": "92036", "stop_lon": 2.3032170468153668, "coord": [48.9203881821441, 2.3032170468153668], "stop_id": 5020421, "stop_desc": "81 AVENUE CHANDON - 92036", "stop_name": "LYCEE GALILEE"}, "geometry": {"type": "Point", "coordinates": [2.3032170468153668, 48.9203881821441]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ae4df6e29f96f7f60749104b947ef9267bade736", "fields": {"departement": "92", "stop_lat": 48.92025337772138, "code_postal": "92036", "stop_lon": 2.303217135396336, "coord": [48.92025337772138, 2.303217135396336], "stop_id": 5020422, "stop_desc": "FACE 81 AVENUE CHANDON - 92036", "stop_name": "LYCEE GALILEE"}, "geometry": {"type": "Point", "coordinates": [2.303217135396336, 48.92025337772138]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fbdc7ce429b9e588716c27a3df6c2955b7df9765", "fields": {"departement": "92", "stop_lat": 48.921672414461426, "code_postal": "92036", "stop_lon": 2.300188741743099, "coord": [48.921672414461426, 2.300188741743099], "stop_id": 5020424, "stop_desc": "FACE 59 AVENUE CHANDON - 92036", "stop_name": "BARBUSSE"}, "geometry": {"type": "Point", "coordinates": [2.300188741743099, 48.921672414461426]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9b57ce19b58ba07cb2699f08f067be42b1ab3a85", "fields": {"departement": "93", "stop_lat": 48.91883413026361, "code_postal": "93001", "stop_lon": 2.3932596449665913, "coord": [48.91883413026361, 2.3932596449665913], "stop_id": 4705597, "stop_desc": "FACE 84 RUE CHARLES TILLON - 93001", "stop_name": "DANIELLE CASANOVA - PONT BLANC"}, "geometry": {"type": "Point", "coordinates": [2.3932596449665913, 48.91883413026361]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4ec32909de284f0b1bc1958d8ba204926b6df47f", "fields": {"departement": "93", "stop_lat": 48.920964390428175, "code_postal": "93001", "stop_lon": 2.3925119117605624, "coord": [48.920964390428175, 2.3925119117605624], "stop_id": 4705598, "stop_desc": "103 PCH DU PONT BLANC - 93001", "stop_name": "PETIT CHEMIN DU PONT BLANC"}, "geometry": {"type": "Point", "coordinates": [2.3925119117605624, 48.920964390428175]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "80fddf09f9126d137dc7bcecac08ffcaac81757d", "fields": {"departement": "93", "stop_lat": 48.92334917057627, "code_postal": "93027", "stop_lon": 2.385013745413943, "coord": [48.92334917057627, 2.385013745413943], "stop_id": 4705600, "stop_desc": "FACE 6 R SUZANNE MASSON - 93027", "stop_name": "LA COURNEUVE - AUBERVILLIERS RER"}, "geometry": {"type": "Point", "coordinates": [2.385013745413943, 48.92334917057627]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ef9f5181f9ba23c2145f5cefda5f38bbe5c5cb21", "fields": {"departement": "93", "stop_lat": 48.92994955588993, "code_postal": "93027", "stop_lon": 2.3961904960623497, "coord": [48.92994955588993, 2.3961904960623497], "stop_id": 4705606, "stop_desc": "FACE 23 RUE EDGAR QUINET - 93027", "stop_name": "CHABROL"}, "geometry": {"type": "Point", "coordinates": [2.3961904960623497, 48.92994955588993]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ccb3b91536558dc8bf61ff92fd35c60a6ecf475c", "fields": {"departement": "93", "stop_lat": 48.930120313484025, "code_postal": "93027", "stop_lon": 2.3961770509521334, "coord": [48.930120313484025, 2.3961770509521334], "stop_id": 4705607, "stop_desc": "23 BIS RUE EDGAR QUINET - 93027", "stop_name": "CHABROL"}, "geometry": {"type": "Point", "coordinates": [2.3961770509521334, 48.930120313484025]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "664afa328098f7ea6aa170d7c18ac6156f7e88ba", "fields": {"departement": "93", "stop_lat": 48.93346085285558, "code_postal": "93027", "stop_lon": 2.401186849383223, "coord": [48.93346085285558, 2.401186849383223], "stop_id": 4705609, "stop_desc": "32 AVENUE WALDECK ROCHET - 93027", "stop_name": "CITE WALDECK-ROCHET"}, "geometry": {"type": "Point", "coordinates": [2.401186849383223, 48.93346085285558]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "164130b722599c410d8520707bfcdffc24e5217d", "fields": {"departement": "93", "stop_lat": 48.93338029847543, "code_postal": "93027", "stop_lon": 2.4005729364800854, "coord": [48.93338029847543, 2.4005729364800854], "stop_id": 4705610, "stop_desc": "15-33 AVENUE WALDECK ROCHET - 93027", "stop_name": "CITE WALDECK-ROCHET"}, "geometry": {"type": "Point", "coordinates": [2.4005729364800854, 48.93338029847543]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0e44d6c769162abb4e8b1c22e871b8cf6d712025", "fields": {"departement": "93", "stop_lat": 48.949359584636994, "code_postal": "93030", "stop_lon": 2.414564459753071, "coord": [48.949359584636994, 2.414564459753071], "stop_id": 4705616, "stop_desc": "14 AVENUE DU GENERAL DE GAULLE - 93030", "stop_name": "ALBERT CHARDAVOINE"}, "geometry": {"type": "Point", "coordinates": [2.414564459753071, 48.949359584636994]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aa909ed11ccc5c14fa2a595902e31266e7188ca9", "fields": {"departement": "93", "stop_lat": 48.95439164186058, "code_postal": "93030", "stop_lon": 2.415349788191931, "coord": [48.95439164186058, 2.415349788191931], "stop_id": 4705619, "stop_desc": "FACE 29 RUE GEORGES GUYNEMER - 93030", "stop_name": "DUGNY - CENTRE VILLE"}, "geometry": {"type": "Point", "coordinates": [2.415349788191931, 48.95439164186058]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6fa77ac2d4ec45d88f2891ece905b8a4b4c45c6e", "fields": {"departement": "93", "stop_lat": 48.95610771523027, "code_postal": "93030", "stop_lon": 2.4159391678675153, "coord": [48.95610771523027, 2.4159391678675153], "stop_id": 4705622, "stop_desc": "FACE 14 AVENUE AMBROISE CROIZAT - 93030", "stop_name": "LEO LAGRANGE"}, "geometry": {"type": "Point", "coordinates": [2.4159391678675153, 48.95610771523027]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "83b748f6d620f01e92625c3bf05b345270e47e85", "fields": {"departement": "93", "stop_lat": 48.87902902292163, "code_postal": "93061", "stop_lon": 2.411747998347259, "coord": [48.87902902292163, 2.411747998347259], "stop_id": 4705629, "stop_desc": "5-7 AV FAIDHERBE - 93061", "stop_name": "FAIDHERBE - BELVEDERE"}, "geometry": {"type": "Point", "coordinates": [2.411747998347259, 48.87902902292163]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b27e54d08ca9720cafbeaa4d0c019383577de4cf", "fields": {"departement": "93", "stop_lat": 48.92754239689394, "code_postal": "93027", "stop_lon": 2.3934327271265685, "coord": [48.92754239689394, 2.3934327271265685], "stop_id": 4705641, "stop_desc": "FACE 2 RUE EDGAR QUINET - 93027", "stop_name": "HOTEL DE VILLE DE LA COURNEUVE-TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.3934327271265685, 48.92754239689394]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "15b9ffd9bd901b753d6727617ff9af90ec59ed11", "fields": {"departement": "93", "stop_lat": 48.901398906016496, "code_postal": "93055", "stop_lon": 2.394031449337831, "coord": [48.901398906016496, 2.394031449337831], "stop_id": 4705654, "stop_desc": "55 AVENUE EDOUARD VAILLANT - 93055", "stop_name": "LA PEROUSE"}, "geometry": {"type": "Point", "coordinates": [2.394031449337831, 48.901398906016496]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b97d80d2201ae8c69e21f0f81f0daa2ac1fc6771", "fields": {"departement": "93", "stop_lat": 48.888934017798526, "code_postal": "93061", "stop_lon": 2.410031401835157, "coord": [48.888934017798526, 2.410031401835157], "stop_id": 4705662, "stop_desc": "FACE 53 R JULES AUFFRET - 93061", "stop_name": "PAUL BERT - CIMETIERE"}, "geometry": {"type": "Point", "coordinates": [2.410031401835157, 48.888934017798526]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1e0222434bd36edc66746476b519d1103a72b352", "fields": {"departement": "95", "stop_lat": 48.989332563626846, "code_postal": "95585", "stop_lon": 2.3765129504983147, "coord": [48.989332563626846, 2.3765129504983147], "stop_id": 4712394, "stop_desc": "BOULEVARD FRANCOIS MITTERRAND - 95585", "stop_name": "SOUS-PREFECTURE"}, "geometry": {"type": "Point", "coordinates": [2.3765129504983147, 48.989332563626846]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "069f3c60ca32e316223670b489cef984d05e4b11", "fields": {"departement": "75", "stop_lat": 48.83159674820942, "code_postal": "75112", "stop_lon": 2.3880876337612835, "coord": [48.83159674820942, 2.3880876337612835], "stop_id": 4723802, "stop_desc": "44-46 AVENUE DES TERROIRS DE FRANCE - 75112", "stop_name": "TERROIRS DE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.3880876337612835, 48.83159674820942]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8da71e2c431f1b647928b27d9a3551ecab856e3e", "fields": {"departement": "75", "stop_lat": 48.83025564079889, "code_postal": "75112", "stop_lon": 2.392469766818625, "coord": [48.83025564079889, 2.392469766818625], "stop_id": 4723805, "stop_desc": "BD PONIATOWSKI - 75112", "stop_name": "BARON LE ROY"}, "geometry": {"type": "Point", "coordinates": [2.392469766818625, 48.83025564079889]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d1f66d5e66298dad6fb836a7a5c12b1bf61fe0c4", "fields": {"departement": "94", "stop_lat": 48.81835494535775, "code_postal": "94069", "stop_lon": 2.424263840734881, "coord": [48.81835494535775, 2.424263840734881], "stop_id": 4723818, "stop_desc": "3 RUE DU VAL D'OSNE - 94069", "stop_name": "VAL D'OSNE"}, "geometry": {"type": "Point", "coordinates": [2.424263840734881, 48.81835494535775]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0da77f2093a32e0e1a6120654ddb6f0e5d21cb11", "fields": {"departement": "94", "stop_lat": 48.81802692471475, "code_postal": "94069", "stop_lon": 2.4410444069161104, "coord": [48.81802692471475, 2.4410444069161104], "stop_id": 4723825, "stop_desc": "98-100 RUE DU MARECHAL LECLERC - 94069", "stop_name": "MARECHAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.4410444069161104, 48.81802692471475]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1b5deabd1bbf1875cff91a7dcb464d5430d4f694", "fields": {"departement": "94", "stop_lat": 48.81484339757609, "code_postal": "94069", "stop_lon": 2.461737571167802, "coord": [48.81484339757609, 2.461737571167802], "stop_id": 4723838, "stop_desc": "155 RUE DU MARECHAL LECLERC - 94069", "stop_name": "JOHN FITZGERALD KENNEDY"}, "geometry": {"type": "Point", "coordinates": [2.461737571167802, 48.81484339757609]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ccb3875a7d11e70ca2a2f9a1bb0157aaa0103189", "fields": {"departement": "94", "stop_lat": 48.81355384140271, "code_postal": "94042", "stop_lon": 2.465789908048834, "coord": [48.81355384140271, 2.465789908048834], "stop_id": 4723840, "stop_desc": "VOIE NOUVELLE - 94042", "stop_name": "VOISIN - REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.465789908048834, 48.81355384140271]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "218d4906f0bfeb8615bdc3e4f8e024f9c6066b60", "fields": {"departement": "94", "stop_lat": 48.81078159169864, "code_postal": "94068", "stop_lon": 2.469457230202651, "coord": [48.81078159169864, 2.469457230202651], "stop_id": 4723841, "stop_desc": "6 BOULEVARD MAURICE BERTEAUX - 94068", "stop_name": "MAURICE BERTEAUX"}, "geometry": {"type": "Point", "coordinates": [2.469457230202651, 48.81078159169864]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "71504bffb95d5bd64aebf8c45956ae1d2106cc0a", "fields": {"departement": "94", "stop_lat": 48.79407263348, "code_postal": "94068", "stop_lon": 2.4777945834631026, "coord": [48.79407263348, 2.4777945834631026], "stop_id": 4723855, "stop_desc": "FACE 62 BOULEVARD GENERAL GIRAUD - 94068", "stop_name": "GALILEE"}, "geometry": {"type": "Point", "coordinates": [2.4777945834631026, 48.79407263348]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f8ba34f54a9b06e092fbf50c8612525554ea0cf0", "fields": {"departement": "94", "stop_lat": 48.78580514257317, "code_postal": "94068", "stop_lon": 2.4911833490462474, "coord": [48.78580514257317, 2.4911833490462474], "stop_id": 4723861, "stop_desc": "72 AVENUE RASPAIL - 94068", "stop_name": "CORNEILLES"}, "geometry": {"type": "Point", "coordinates": [2.4911833490462474, 48.78580514257317]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5396150bdda06b527d0b7f8b29f1e55ac889b03b", "fields": {"departement": "94", "stop_lat": 48.78946669335857, "code_postal": "94068", "stop_lon": 2.5020218093095745, "coord": [48.78946669335857, 2.5020218093095745], "stop_id": 4723869, "stop_desc": "78 AVENUE DE BONNEUIL - 94068", "stop_name": "PLACE DE MOLENES"}, "geometry": {"type": "Point", "coordinates": [2.5020218093095745, 48.78946669335857]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8050442567c7a7c46cc447182168d7bb8565b36d", "fields": {"departement": "94", "stop_lat": 48.79127169002588, "code_postal": "94068", "stop_lon": 2.5031565849063178, "coord": [48.79127169002588, 2.5031565849063178], "stop_id": 4723871, "stop_desc": "46 AVENUE DE BONNEUIL - 94068", "stop_name": "AVENUE DE BONNEUIL"}, "geometry": {"type": "Point", "coordinates": [2.5031565849063178, 48.79127169002588]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "af89d3a4176abf0d90f843ef19ad1fbc46594f6a", "fields": {"departement": "94", "stop_lat": 48.7901620879359, "code_postal": "94068", "stop_lon": 2.512280457457706, "coord": [48.7901620879359, 2.512280457457706], "stop_id": 4723874, "stop_desc": "FACE 36BIS RUE SAINT HILAIRE - 94068", "stop_name": "EGLISE DE LA VARENNE"}, "geometry": {"type": "Point", "coordinates": [2.512280457457706, 48.7901620879359]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3ba8361dd837a40ecedb8502b6ff2d9d700ca826", "fields": {"departement": "94", "stop_lat": 48.8031587650505, "code_postal": "94068", "stop_lon": 2.5181612944059495, "coord": [48.8031587650505, 2.5181612944059495], "stop_id": 4723881, "stop_desc": "22 AVENUE RAYMOND POINCARE - 94068", "stop_name": "THIERS"}, "geometry": {"type": "Point", "coordinates": [2.5181612944059495, 48.8031587650505]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0963d0b075556894c8d6fa452f24ee71ccac1943", "fields": {"departement": "94", "stop_lat": 48.80685442257188, "code_postal": "94068", "stop_lon": 2.5110168459959366, "coord": [48.80685442257188, 2.5110168459959366], "stop_id": 4723885, "stop_desc": "RUE ROCHAMBEAU - 94068", "stop_name": "CHAMPIGNY - SAINT-MAUR RER"}, "geometry": {"type": "Point", "coordinates": [2.5110168459959366, 48.80685442257188]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "608d54354788fec7bd7308209d86ae8fd64fd86a", "fields": {"departement": "94", "stop_lat": 48.82184523642489, "code_postal": "94069", "stop_lon": 2.4199686200390875, "coord": [48.82184523642489, 2.4199686200390875], "stop_id": 4723893, "stop_desc": "50 AVENUE DU MARECHAL DE LATTRE DE TASSIGNY - 94069", "stop_name": "EDMOND NOCARD"}, "geometry": {"type": "Point", "coordinates": [2.4199686200390875, 48.82184523642489]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d14b6e6b5bc7ffed0f6e2ff6b047bcffc5f80985", "fields": {"departement": "75", "stop_lat": 48.837352823094804, "code_postal": "75115", "stop_lon": 2.2968996770026644, "coord": [48.837352823094804, 2.2968996770026644], "stop_id": 4726697, "stop_desc": "333-335 R DE VAUGIRARD - 75115", "stop_name": "CONVENTION - VAUGIRARD"}, "geometry": {"type": "Point", "coordinates": [2.2968996770026644, 48.837352823094804]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "12fa32a89821b0f3d06cbde6a430214225f5f3a4", "fields": {"departement": "75", "stop_lat": 48.84153536388469, "code_postal": "75115", "stop_lon": 2.3083339871069257, "coord": [48.84153536388469, 2.3083339871069257], "stop_id": 4726701, "stop_desc": "225-223 RUE DE VAUGIRARD - 75115", "stop_name": "VOLONTAIRES - VAUGIRARD"}, "geometry": {"type": "Point", "coordinates": [2.3083339871069257, 48.84153536388469]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2c0b5deac87a347effeb449489c9733d0cc794b6", "fields": {"departement": "75", "stop_lat": 48.84896773666375, "code_postal": "75115", "stop_lon": 2.282033295404702, "coord": [48.84896773666375, 2.282033295404702], "stop_id": 4726718, "stop_desc": "6-8 RUE LINOIS - 75115", "stop_name": "PONT DE GRENELLE - PLACE FERNAND FOREST"}, "geometry": {"type": "Point", "coordinates": [2.282033295404702, 48.84896773666375]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b803946d2835735566eca1852aab1de9ec1549b9", "fields": {"departement": "75", "stop_lat": 48.843217014382596, "code_postal": "75115", "stop_lon": 2.3127039743389797, "coord": [48.843217014382596, 2.3127039743389797], "stop_id": 4726727, "stop_desc": "31 BOULEVARD PASTEUR - 75115", "stop_name": "PASTEUR - LYCEE BUFFON"}, "geometry": {"type": "Point", "coordinates": [2.3127039743389797, 48.843217014382596]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d0141578e5fe5802fa65bb0e9e7de4218811c091", "fields": {"departement": "75", "stop_lat": 48.85559527709221, "code_postal": "75106", "stop_lon": 2.340142086729639, "coord": [48.85559527709221, 2.340142086729639], "stop_id": 4726737, "stop_desc": "1 RUE DAUPHINE - 75106", "stop_name": "PONT NEUF - QUAI DES GRANDS AUGUSTINS"}, "geometry": {"type": "Point", "coordinates": [2.340142086729639, 48.85559527709221]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "18523d421e7729a06f3bc0764a9a96bfbcc82f2a", "fields": {"departement": "75", "stop_lat": 48.887277052890184, "code_postal": "75117", "stop_lon": 2.2947893290138164, "coord": [48.887277052890184, 2.2947893290138164], "stop_id": 4726742, "stop_desc": "189 RUE DE COURCELLES - 75117", "stop_name": "PORTE DE COURCELLES"}, "geometry": {"type": "Point", "coordinates": [2.2947893290138164, 48.887277052890184]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "30d3481b4485c73cef759152f47cfa78860ee720", "fields": {"departement": "75", "stop_lat": 48.85656139533593, "code_postal": "75107", "stop_lon": 2.3042940617474543, "coord": [48.85656139533593, 2.3042940617474543], "stop_id": 4726754, "stop_desc": "40 AVENUE BOSQUET - 75107", "stop_name": "BOSQUET - GRENELLE"}, "geometry": {"type": "Point", "coordinates": [2.3042940617474543, 48.85656139533593]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e2ec5fe2cf65c1492a1e9ab30ea683b0c506c50f", "fields": {"departement": "93", "stop_lat": 48.96144666587019, "code_postal": "93031", "stop_lon": 2.296093244588012, "coord": [48.96144666587019, 2.296093244588012], "stop_id": 5081761, "stop_desc": "AVENUE JOFFRE - 93031", "stop_name": "CYGNE D'ENGHIEN - JOFFRE"}, "geometry": {"type": "Point", "coordinates": [2.296093244588012, 48.96144666587019]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8dac6e1ebeb63551bd16e765f783a8cbcff07d89", "fields": {"departement": "95", "stop_lat": 48.96289851620853, "code_postal": "95555", "stop_lon": 2.285815088300164, "coord": [48.96289851620853, 2.285815088300164], "stop_id": 5081767, "stop_desc": "RUE MASSENET - 95555", "stop_name": "SAINT-GRATIEN - RER"}, "geometry": {"type": "Point", "coordinates": [2.285815088300164, 48.96289851620853]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "68f60be1dc26800f12fbd3690417cd0f20032b19", "fields": {"departement": "95", "stop_lat": 48.96284437769105, "code_postal": "95555", "stop_lon": 2.2853101637876088, "coord": [48.96284437769105, 2.2853101637876088], "stop_id": 5081768, "stop_desc": "RUE MASSENET - 95555", "stop_name": "SAINT-GRATIEN - RER"}, "geometry": {"type": "Point", "coordinates": [2.2853101637876088, 48.96284437769105]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1a90873ad8a5aacfc7fd9bf14c8d87cf577aabea", "fields": {"departement": "95", "stop_lat": 48.96608775265408, "code_postal": "95555", "stop_lon": 2.2835052510398457, "coord": [48.96608775265408, 2.2835052510398457], "stop_id": 5081770, "stop_desc": "66 RUE BERTHIE ALBRECHT - 95555", "stop_name": "BERTHIE ALBRECHT"}, "geometry": {"type": "Point", "coordinates": [2.2835052510398457, 48.96608775265408]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "270ccbd1f1fb5cde6d936b53c291e2f41dad57b7", "fields": {"departement": "95", "stop_lat": 48.97420683842333, "code_postal": "95555", "stop_lon": 2.273749959617221, "coord": [48.97420683842333, 2.273749959617221], "stop_id": 5081776, "stop_desc": "117 BOULEVARD DE L'ENTENTE - 95555", "stop_name": "STADE MICHEL HIDALGO"}, "geometry": {"type": "Point", "coordinates": [2.273749959617221, 48.97420683842333]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dd10828a07ff954def4d5c41b82a920c94870b0a", "fields": {"departement": "95", "stop_lat": 48.977863072502274, "code_postal": "95219", "stop_lon": 2.2713700192897304, "coord": [48.977863072502274, 2.2713700192897304], "stop_id": 5081777, "stop_desc": "RU DU GRAND GRIL - 95219", "stop_name": "RUE DE SOISY"}, "geometry": {"type": "Point", "coordinates": [2.2713700192897304, 48.977863072502274]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6d03db3eab21fc6690ac9bdb816b3762b6bdd60f", "fields": {"departement": "92", "stop_lat": 48.81719877013112, "code_postal": "92040", "stop_lon": 2.254793121066412, "coord": [48.81719877013112, 2.254793121066412], "stop_id": 5091891, "stop_desc": "FACE 117 BOULEVARD RODIN - 92040", "stop_name": "CHEMIN DES VIGNES"}, "geometry": {"type": "Point", "coordinates": [2.254793121066412, 48.81719877013112]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ec31cc9f780b03615b7b93939abd36a87bbaf3fe", "fields": {"departement": "92", "stop_lat": 48.80333187356058, "code_postal": "92023", "stop_lon": 2.2565975482128477, "coord": [48.80333187356058, 2.2565975482128477], "stop_id": 5091896, "stop_desc": "PLACE DU GARDE - 92023", "stop_name": "PLACE DU GARDE"}, "geometry": {"type": "Point", "coordinates": [2.2565975482128477, 48.80333187356058]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9cbc9315408d598f8e2d63925014dc2c83ae7327", "fields": {"departement": "92", "stop_lat": 48.79818875011609, "code_postal": "92023", "stop_lon": 2.2675301792541487, "coord": [48.79818875011609, 2.2675301792541487], "stop_id": 5091901, "stop_desc": "42 AVENUE JEAN BAPTISTE CLEMENT - 92023", "stop_name": "PLESSIS PIQUET"}, "geometry": {"type": "Point", "coordinates": [2.2675301792541487, 48.79818875011609]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dcbb88750880503baf2595f4f701155e5e3afe96", "fields": {"departement": "92", "stop_lat": 48.787037998768085, "code_postal": "92023", "stop_lon": 2.2457685628922226, "coord": [48.787037998768085, 2.2457685628922226], "stop_id": 5091906, "stop_desc": "FACE 179 R DE LA PORTE DE TRIVAUX - 92023", "stop_name": "CIMETIERE INTERCOMMUNAL"}, "geometry": {"type": "Point", "coordinates": [2.2457685628922226, 48.787037998768085]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "039451067c3be07af920bc6ab5fd0e0b9122eb80", "fields": {"departement": "92", "stop_lat": 48.78385634166726, "code_postal": "92023", "stop_lon": 2.2458693740901587, "coord": [48.78385634166726, 2.2458693740901587], "stop_id": 5091916, "stop_desc": "FACE 20-22 RUE DE L'ILE DE FRANCE - 92023", "stop_name": "MAIL DE LA PLAINE"}, "geometry": {"type": "Point", "coordinates": [2.2458693740901587, 48.78385634166726]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c1ebb239b295c1de857353bd5b39391d7f20d52f", "fields": {"departement": "92", "stop_lat": 48.78926265301571, "code_postal": "92023", "stop_lon": 2.2520081681720394, "coord": [48.78926265301571, 2.2520081681720394], "stop_id": 5091919, "stop_desc": "169 ROUTE DE LA PORTE DE TRIVAUX - 92023", "stop_name": "EUGENE BEAUJARD"}, "geometry": {"type": "Point", "coordinates": [2.2520081681720394, 48.78926265301571]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1122d7199d952c9818e18824df17b16875461296", "fields": {"departement": "92", "stop_lat": 48.791769140552354, "code_postal": "92023", "stop_lon": 2.2637707386635664, "coord": [48.791769140552354, 2.2637707386635664], "stop_id": 5091922, "stop_desc": "FACE 138 AVENUE JEAN BAPTISTE CLEMENT - 92023", "stop_name": "SOLEIL LEVANT"}, "geometry": {"type": "Point", "coordinates": [2.2637707386635664, 48.791769140552354]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7770072aa6e3a83df6e05ff282ac329ddd9ead05", "fields": {"departement": "92", "stop_lat": 48.80004684776907, "code_postal": "92023", "stop_lon": 2.263568550303808, "coord": [48.80004684776907, 2.263568550303808], "stop_id": 5091926, "stop_desc": "FACE 13 RUE DU TROSY - 92023", "stop_name": "MAIRIE DE CLAMART"}, "geometry": {"type": "Point", "coordinates": [2.263568550303808, 48.80004684776907]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "edb264c4b0bd9c0c7c82c52e55792135c1f1b65e", "fields": {"departement": "92", "stop_lat": 48.81889102933387, "code_postal": "92040", "stop_lon": 2.2585876817540473, "coord": [48.81889102933387, 2.2585876817540473], "stop_id": 5091935, "stop_desc": "59 BOULEVARD RODIN - 92040", "stop_name": "ISSY-RER"}, "geometry": {"type": "Point", "coordinates": [2.2585876817540473, 48.81889102933387]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b84f1ff951e09f3aa5abe1cae71affcf16d54c10", "fields": {"departement": "92", "stop_lat": 48.82211445895436, "code_postal": "92040", "stop_lon": 2.267974424894955, "coord": [48.82211445895436, 2.267974424894955], "stop_id": 5091937, "stop_desc": "11 AVENUE BOURGAIN - 92040", "stop_name": "BOURGAIN - GENERAL GALLIENI"}, "geometry": {"type": "Point", "coordinates": [2.267974424894955, 48.82211445895436]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e4ef837c93bde26852a4110eb79b38f9e640e34f", "fields": {"departement": "92", "stop_lat": 48.82510149682795, "code_postal": "92040", "stop_lon": 2.2735785149571988, "coord": [48.82510149682795, 2.2735785149571988], "stop_id": 5091938, "stop_desc": "FACE 2 PLACE BONNAVENTURE LECA - 92040", "stop_name": "MAIRIE D'ISSY-METRO"}, "geometry": {"type": "Point", "coordinates": [2.2735785149571988, 48.82510149682795]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ba0f4dd744ad0fe4bb12b99d36114c7cfeadd8bf", "fields": {"departement": "92", "stop_lat": 48.829545001537646, "code_postal": "92040", "stop_lon": 2.2642073155442732, "coord": [48.829545001537646, 2.2642073155442732], "stop_id": 5091939, "stop_desc": "FACE 31 RUE CAMILLE DESMOULINS - 92040", "stop_name": "ISSY - VAL DE SEINE"}, "geometry": {"type": "Point", "coordinates": [2.2642073155442732, 48.829545001537646]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3bb0ebcdf8677957e09498fdd6aee9a64961dd7f", "fields": {"departement": "92", "stop_lat": 48.8286842047977, "code_postal": "92040", "stop_lon": 2.2675708836419797, "coord": [48.8286842047977, 2.2675708836419797], "stop_id": 5091942, "stop_desc": "FACE 58 BOULEVARD GALLIENI - 92040", "stop_name": "PRESIDENT ROBERT SCHUMAN"}, "geometry": {"type": "Point", "coordinates": [2.2675708836419797, 48.8286842047977]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e6a99e6db13df77a166d46e7f882a646de53f107", "fields": {"departement": "92", "stop_lat": 48.81958818315089, "code_postal": "92040", "stop_lon": 2.2667256407147667, "coord": [48.81958818315089, 2.2667256407147667], "stop_id": 5091949, "stop_desc": "97 R PIERRE BROSSOLETTE - 92040", "stop_name": "PARC HENRI BARBUSSE"}, "geometry": {"type": "Point", "coordinates": [2.2667256407147667, 48.81958818315089]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8859d0e62215358f4ddbe4da92abc5028571c035", "fields": {"departement": "92", "stop_lat": 48.81924553941387, "code_postal": "92040", "stop_lon": 2.2648751050171123, "coord": [48.81924553941387, 2.2648751050171123], "stop_id": 5091951, "stop_desc": "11 RUE DE L'EGALITE - 92040", "stop_name": "DEFENSE - EGALITE"}, "geometry": {"type": "Point", "coordinates": [2.2648751050171123, 48.81924553941387]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "629b6fdbe37edadc9d2fd6bbeb5e8e0e5a630f9f", "fields": {"departement": "92", "stop_lat": 48.8147381437127, "code_postal": "92023", "stop_lon": 2.257750209717775, "coord": [48.8147381437127, 2.257750209717775], "stop_id": 5091955, "stop_desc": "138 AVENUE HENRI BARBUSSE - 92023", "stop_name": "HOPITAL PERCY"}, "geometry": {"type": "Point", "coordinates": [2.257750209717775, 48.8147381437127]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4cdeba356b5e6756c5dfde59f53e536d90e4ed76", "fields": {"departement": "92", "stop_lat": 48.80501439804035, "code_postal": "92023", "stop_lon": 2.259302642664189, "coord": [48.80501439804035, 2.259302642664189], "stop_id": 5091957, "stop_desc": "PLACE MARQUIS - 92023", "stop_name": "MARQUIS"}, "geometry": {"type": "Point", "coordinates": [2.259302642664189, 48.80501439804035]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "16aa8c89117e6cd06e752328e2e0db51067cafd0", "fields": {"departement": "92", "stop_lat": 48.781884108470564, "code_postal": "92060", "stop_lon": 2.2527955068159655, "coord": [48.781884108470564, 2.2527955068159655], "stop_id": 5091962, "stop_desc": "AVENUE PAUL LANGEVIN - 92060", "stop_name": "PARC TECHNOLOGIQUE"}, "geometry": {"type": "Point", "coordinates": [2.2527955068159655, 48.781884108470564]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e656ac8267673c2ef66bb13a21388908ac7c1966", "fields": {"departement": "92", "stop_lat": 48.78204615202421, "code_postal": "92060", "stop_lon": 2.2531624584101624, "coord": [48.78204615202421, 2.2531624584101624], "stop_id": 5091963, "stop_desc": "AVENUE PAUL LANGEVIN - 92060", "stop_name": "PARC TECHNOLOGIQUE"}, "geometry": {"type": "Point", "coordinates": [2.2531624584101624, 48.78204615202421]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "48390ce3c254bec37e32961755ce43fb04a75ece", "fields": {"departement": "92", "stop_lat": 48.77820709283696, "code_postal": "92060", "stop_lon": 2.2398275101851355, "coord": [48.77820709283696, 2.2398275101851355], "stop_id": 5091973, "stop_desc": "FACE 6 AVENUE REAUMUR - 92060", "stop_name": "REAUMUR"}, "geometry": {"type": "Point", "coordinates": [2.2398275101851355, 48.77820709283696]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5ceaddc47a539efe885a37d1599f4625e73245bd", "fields": {"departement": "92", "stop_lat": 48.82240392110854, "code_postal": "92040", "stop_lon": 2.271240710012906, "coord": [48.82240392110854, 2.271240710012906], "stop_id": 5091978, "stop_desc": "FACE 24-26 RUE ANDRE CHENIER - 92040", "stop_name": "ANDRE CHENIER"}, "geometry": {"type": "Point", "coordinates": [2.271240710012906, 48.82240392110854]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c07e127a68076b53a130cb9a0dcfd9e18539cff2", "fields": {"departement": "93", "stop_lat": 48.91310456029728, "code_postal": "93070", "stop_lon": 2.334554961521502, "coord": [48.91310456029728, 2.334554961521502], "stop_id": 5091987, "stop_desc": "81-83 RUE ALBERT DHALENNE - 93070", "stop_name": "JEAN JAURES - MAIRIE"}, "geometry": {"type": "Point", "coordinates": [2.334554961521502, 48.91310456029728]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b6f56ca75eb92a998c93a44567ab88e3e379b60a", "fields": {"departement": "93", "stop_lat": 48.91486592620741, "code_postal": "93070", "stop_lon": 2.331936869246496, "coord": [48.91486592620741, 2.331936869246496], "stop_id": 5091988, "stop_desc": "51 RUE ALBERT DHALENNE - 93070", "stop_name": "SOUBISE"}, "geometry": {"type": "Point", "coordinates": [2.331936869246496, 48.91486592620741]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0df93cebb1c9295761fdbaf3440c50b144a4b33d", "fields": {"departement": "93", "stop_lat": 48.91758896938038, "code_postal": "93070", "stop_lon": 2.3315956863449316, "coord": [48.91758896938038, 2.3315956863449316], "stop_id": 5091991, "stop_desc": "2 RUE DU LANDY - 93070", "stop_name": "QUAI DE SEINE"}, "geometry": {"type": "Point", "coordinates": [2.3315956863449316, 48.91758896938038]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6268a3eb3d33f96c0e0d2244b8a80527d0af022e", "fields": {"departement": "93", "stop_lat": 48.919529983894115, "code_postal": "93039", "stop_lon": 2.3287045051299167, "coord": [48.919529983894115, 2.3287045051299167], "stop_id": 5091992, "stop_desc": "QUAI DU CHATELIER - 93039", "stop_name": "BOULEVARD MARCEL PAUL"}, "geometry": {"type": "Point", "coordinates": [2.3287045051299167, 48.919529983894115]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fc77268c1af4db3b83a62227e4c5d6727c070c4b", "fields": {"departement": "93", "stop_lat": 48.924652799857846, "code_postal": "93039", "stop_lon": 2.3337497180079425, "coord": [48.924652799857846, 2.3337497180079425], "stop_id": 5091996, "stop_desc": "FACE 9 QUAI DU CHATELIER - 93039", "stop_name": "QUAI DU CHATELIER N0 9"}, "geometry": {"type": "Point", "coordinates": [2.3337497180079425, 48.924652799857846]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c9f5049e112e865e5d955507ad3feeeb65aa874c", "fields": {"departement": "93", "stop_lat": 48.92867000210503, "code_postal": "93039", "stop_lon": 2.337472907864933, "coord": [48.92867000210503, 2.337472907864933], "stop_id": 5091998, "stop_desc": "FACE 15 QUAI DU CHATELIER - 93039", "stop_name": "QUAI DU CHATELIER N0 15"}, "geometry": {"type": "Point", "coordinates": [2.337472907864933, 48.92867000210503]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1cf8c5d259c4d8a62c00c0650a69c6df6b288f5f", "fields": {"departement": "93", "stop_lat": 48.93193220475961, "code_postal": "93039", "stop_lon": 2.3402554638942803, "coord": [48.93193220475961, 2.3402554638942803], "stop_id": 5092000, "stop_desc": "QUAI DU CHATELIER - 93039", "stop_name": "RUE DE L'ORTEBOUT"}, "geometry": {"type": "Point", "coordinates": [2.3402554638942803, 48.93193220475961]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "82c5628ca63eaccab5fcf5df8dd00a624472cc32", "fields": {"departement": "93", "stop_lat": 48.93182436754138, "code_postal": "93039", "stop_lon": 2.3400372194915886, "coord": [48.93182436754138, 2.3400372194915886], "stop_id": 5092001, "stop_desc": "QUAI DU CHATELIER - 93039", "stop_name": "RUE DE L'ORTEBOUT"}, "geometry": {"type": "Point", "coordinates": [2.3400372194915886, 48.93182436754138]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4ac4cc215796dc723b28b8a25d13a3fd6317c2ec", "fields": {"departement": "93", "stop_lat": 48.94327362096211, "code_postal": "93039", "stop_lon": 2.3362178227264065, "coord": [48.94327362096211, 2.3362178227264065], "stop_id": 5092009, "stop_desc": "58 QUAI DE LA MARINE - 93039", "stop_name": "CIMETIERE DE L'ILE-SAINT-DENIS"}, "geometry": {"type": "Point", "coordinates": [2.3362178227264065, 48.94327362096211]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0dd5ab491a9cc7749f7b51f8130dbb79102c200e", "fields": {"departement": "93", "stop_lat": 48.94966972028238, "code_postal": "93039", "stop_lon": 2.3129127406441077, "coord": [48.94966972028238, 2.3129127406441077], "stop_id": 5092012, "stop_desc": "QUAI DE LA MARINE - 93039", "stop_name": "PARC DE L'ILE ST-DENIS"}, "geometry": {"type": "Point", "coordinates": [2.3129127406441077, 48.94966972028238]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c8c92becf573d3b3a348ed9636e27dcac60977c1", "fields": {"departement": "78", "stop_lat": 48.78398992326475, "code_postal": "78640", "stop_lon": 2.20611320210119, "coord": [48.78398992326475, 2.20611320210119], "stop_id": 5121009, "stop_desc": "RUE GRANGE DAME ROSE - 78640", "stop_name": "LA CHEMINEE"}, "geometry": {"type": "Point", "coordinates": [2.20611320210119, 48.78398992326475]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0191c5eebda0ba1dd119213d07c9c62d19954548", "fields": {"departement": "92", "stop_lat": 48.82994171025274, "code_postal": "92012", "stop_lon": 2.2302148155394947, "coord": [48.82994171025274, 2.2302148155394947], "stop_id": 5121010, "stop_desc": "PISTE GARE ROUTIERE - 92012", "stop_name": "PONT DE SEVRES-METRO"}, "geometry": {"type": "Point", "coordinates": [2.2302148155394947, 48.82994171025274]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a39434faf8bdabd3fd62a8baad393b22e716db50", "fields": {"departement": "92", "stop_lat": 48.78486295296125, "code_postal": "92048", "stop_lon": 2.2248399939603316, "coord": [48.78486295296125, 2.2248399939603316], "stop_id": 5121017, "stop_desc": "14 R DE LA PEPINIERE - 92048", "stop_name": "DE LATTRE DE TASSIGNY"}, "geometry": {"type": "Point", "coordinates": [2.2248399939603316, 48.78486295296125]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aee70493d4cc0f60fb05fd9d640bab45dbe32c92", "fields": {"departement": "92", "stop_lat": 48.78756642646553, "code_postal": "92048", "stop_lon": 2.2228482489959354, "coord": [48.78756642646553, 2.2228482489959354], "stop_id": 5121018, "stop_desc": "38 AVENUE COLONEL MARCEL MORANE - 92048", "stop_name": "AERODROME MORANE"}, "geometry": {"type": "Point", "coordinates": [2.2228482489959354, 48.78756642646553]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a36ba5e3a49f03af14d1f5a5e0719b6336e9f07b", "fields": {"departement": "92", "stop_lat": 48.829339588647336, "code_postal": "92072", "stop_lon": 2.2302705093554778, "coord": [48.829339588647336, 2.2302705093554778], "stop_id": 5121020, "stop_desc": "GARE ROUTIERE - 92072", "stop_name": "PONT DE SEVRES-METRO"}, "geometry": {"type": "Point", "coordinates": [2.2302705093554778, 48.829339588647336]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1aa1f600278478615cefbdef0ffb5abee1d61412", "fields": {"departement": "92", "stop_lat": 48.76541372195937, "code_postal": "92019", "stop_lon": 2.2596611692536865, "coord": [48.76541372195937, 2.2596611692536865], "stop_id": 5121035, "stop_desc": "305 AVENUE DE LA DIVISION LECLERC - 92019", "stop_name": "BUTTE ROUGE - CITE JARDINS"}, "geometry": {"type": "Point", "coordinates": [2.2596611692536865, 48.76541372195937]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "683cf8a596eee04fb92b40da1e8e70360547f5bf", "fields": {"departement": "92", "stop_lat": 48.76541462761812, "code_postal": "92019", "stop_lon": 2.2610615768725446, "coord": [48.76541462761812, 2.2610615768725446], "stop_id": 5121036, "stop_desc": "FACE 305 AVENUE DE LA DIVISION LECLERC - 92019", "stop_name": "BUTTE ROUGE - CITE JARDINS"}, "geometry": {"type": "Point", "coordinates": [2.2610615768725446, 48.76541462761812]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dd5b3f5469b22988cd7bd7c037ab03e1be31f65a", "fields": {"departement": "92", "stop_lat": 48.764680329534045, "code_postal": "92019", "stop_lon": 2.2654405691331356, "coord": [48.764680329534045, 2.2654405691331356], "stop_id": 5121037, "stop_desc": "295 AVENUE DE LA DIVISION LECLERC - 92019", "stop_name": "GENERAL DUVAL"}, "geometry": {"type": "Point", "coordinates": [2.2654405691331356, 48.764680329534045]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6edfd7e0641c1d4347bb1cd037cebadb6d32f75a", "fields": {"departement": "92", "stop_lat": 48.76357946332891, "code_postal": "92019", "stop_lon": 2.2736403109029157, "coord": [48.76357946332891, 2.2736403109029157], "stop_id": 5121039, "stop_desc": "203 AVENUE DE LA DIVISION LECLERC - 92019", "stop_name": "LES VALLEES"}, "geometry": {"type": "Point", "coordinates": [2.2736403109029157, 48.76357946332891]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eb64196e93e7c80c022cc966ff8909f446290331", "fields": {"departement": "92", "stop_lat": 48.78486295296125, "code_postal": "92048", "stop_lon": 2.2248399939603316, "coord": [48.78486295296125, 2.2248399939603316], "stop_id": 5121054, "stop_desc": "14 R DE LA PEPINIERE - 92048", "stop_name": "DE LATTRE DE TASSIGNY"}, "geometry": {"type": "Point", "coordinates": [2.2248399939603316, 48.78486295296125]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "814a61e2937e5a511c47b517cdff08877c7f7883", "fields": {"departement": "92", "stop_lat": 48.78481065530936, "code_postal": "92023", "stop_lon": 2.2367004292831227, "coord": [48.78481065530936, 2.2367004292831227], "stop_id": 5121306, "stop_desc": "PLACE GEORGES POMPIDOU - 92023", "stop_name": "GEORGES POMPIDOU"}, "geometry": {"type": "Point", "coordinates": [2.2367004292831227, 48.78481065530936]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ec23facc883a121757fc6416255053dabb0e855e", "fields": {"departement": "92", "stop_lat": 48.785882969066456, "code_postal": "92048", "stop_lon": 2.2295711321190135, "coord": [48.785882969066456, 2.2295711321190135], "stop_id": 5121310, "stop_desc": "AVENUE DU MARECHAL DE LATTRE DE TASSIGNY - 92048", "stop_name": "LE LAC"}, "geometry": {"type": "Point", "coordinates": [2.2295711321190135, 48.785882969066456]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d0d450d6ce0440d7881795d26289fee77a5cac15", "fields": {"departement": "92", "stop_lat": 48.78806619399687, "code_postal": "92048", "stop_lon": 2.2286416600121726, "coord": [48.78806619399687, 2.2286416600121726], "stop_id": 5121314, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 92048", "stop_name": "EGLISE DE MEUDON-LA-FORET"}, "geometry": {"type": "Point", "coordinates": [2.2286416600121726, 48.78806619399687]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0c18891d9f6424bf574169d6e3d10014e0114132", "fields": {"departement": "92", "stop_lat": 48.78905975534039, "code_postal": "92048", "stop_lon": 2.2341349515820745, "coord": [48.78905975534039, 2.2341349515820745], "stop_id": 5121316, "stop_desc": "FACE 2 AVENUE ROBERT SCHUMAN - 92048", "stop_name": "TAPIS VERT"}, "geometry": {"type": "Point", "coordinates": [2.2341349515820745, 48.78905975534039]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0ebde02ca586668fb79b5be928f0d403b454dbb0", "fields": {"departement": "92", "stop_lat": 48.81183731423944, "code_postal": "92048", "stop_lon": 2.2368930295294303, "coord": [48.81183731423944, 2.2368930295294303], "stop_id": 5121324, "stop_desc": "PLACE RABELAIS - 92048", "stop_name": "RABELAIS"}, "geometry": {"type": "Point", "coordinates": [2.2368930295294303, 48.81183731423944]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e0729b9fb4092c5e23a222de06978ce99a4fab86", "fields": {"departement": "92", "stop_lat": 48.8149894949538, "code_postal": "92048", "stop_lon": 2.2339473492547812, "coord": [48.8149894949538, 2.2339473492547812], "stop_id": 5121326, "stop_desc": "40 BOULEVARD VERD-DE-ST JULIEN - 92048", "stop_name": "STALINGRAD"}, "geometry": {"type": "Point", "coordinates": [2.2339473492547812, 48.8149894949538]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cf1df0dc3ca406c0d87e8a9bc3e555f625123fd3", "fields": {"departement": "92", "stop_lat": 48.81879641264312, "code_postal": "92048", "stop_lon": 2.229570900490973, "coord": [48.81879641264312, 2.229570900490973], "stop_id": 5121329, "stop_desc": "PLACE DE LA GARE - 92048", "stop_name": "GARE DE BELLEVUE"}, "geometry": {"type": "Point", "coordinates": [2.229570900490973, 48.81879641264312]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4ad7a68048e0a7d2cf4b9f5a04d026be4bf6cded", "fields": {"departement": "92", "stop_lat": 48.82176885588135, "code_postal": "92048", "stop_lon": 2.226856149789069, "coord": [48.82176885588135, 2.226856149789069], "stop_id": 5121331, "stop_desc": "FACE 12 RUE MARCEL ALLEGOT - 92048", "stop_name": "11 NOVEMBRE"}, "geometry": {"type": "Point", "coordinates": [2.226856149789069, 48.82176885588135]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e3589260312aef5bd5246764713fb12cceec24bd", "fields": {"departement": "92", "stop_lat": 48.823129847513385, "code_postal": "92072", "stop_lon": 2.221449556511516, "coord": [48.823129847513385, 2.221449556511516], "stop_id": 5121333, "stop_desc": "FACE 28 AVENUE DE LA DIVISION LECLERC - 92072", "stop_name": "BRIMBORION - DIVISION LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.221449556511516, 48.823129847513385]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "583b9bbf6996c68eff6e94ea2a5a7980b9815709", "fields": {"departement": "92", "stop_lat": 48.826516619377834, "code_postal": "92072", "stop_lon": 2.219835757126419, "coord": [48.826516619377834, 2.219835757126419], "stop_id": 5121335, "stop_desc": "25 BIS GRANDE RUE - 92072", "stop_name": "PARC DE SAINT-CLOUD"}, "geometry": {"type": "Point", "coordinates": [2.219835757126419, 48.826516619377834]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0e2c1e47de90778832c4613869f8df951a26679a", "fields": {"departement": "92", "stop_lat": 48.82719400030173, "code_postal": "92072", "stop_lon": 2.2232373238068854, "coord": [48.82719400030173, 2.2232373238068854], "stop_id": 5121337, "stop_desc": "1 GRANDE RUE - 92072", "stop_name": "MUSEE DE SEVRES"}, "geometry": {"type": "Point", "coordinates": [2.2232373238068854, 48.82719400030173]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0d78b09142e62686b7a0049baafc213eabe62b05", "fields": {"departement": "92", "stop_lat": 48.82795039915451, "code_postal": "92072", "stop_lon": 2.2247466599919257, "coord": [48.82795039915451, 2.2247466599919257], "stop_id": 5121338, "stop_desc": "ALLEE DU PONT DE SEVRES - 92072", "stop_name": "MUSEE DE SEVRES"}, "geometry": {"type": "Point", "coordinates": [2.2247466599919257, 48.82795039915451]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3f74452b188be1432968b255a81e7429fe67cde3", "fields": {"departement": "92", "stop_lat": 48.836421364373635, "code_postal": "92012", "stop_lon": 2.2519579203710243, "coord": [48.836421364373635, 2.2519579203710243], "stop_id": 5121346, "stop_desc": "36 AVENUE EDOUARD VAILLANT - 92012", "stop_name": "HENRI MARTIN"}, "geometry": {"type": "Point", "coordinates": [2.2519579203710243, 48.836421364373635]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1b733ecc49a1d9d8fde7cdc41214f8b8034a6d16", "fields": {"departement": "75", "stop_lat": 48.83817802656563, "code_postal": "75116", "stop_lon": 2.257864060448581, "coord": [48.83817802656563, 2.257864060448581], "stop_id": 5121348, "stop_desc": "232 AVENUE DE VERSAILLES - 75116", "stop_name": "PORTE DE SAINT-CLOUD - MURAT"}, "geometry": {"type": "Point", "coordinates": [2.257864060448581, 48.83817802656563]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "37ce9652274f131fd4723dd1d5fa26e8b3054176", "fields": {"departement": "75", "stop_lat": 48.847040191869645, "code_postal": "75116", "stop_lon": 2.273578821194911, "coord": [48.847040191869645, 2.273578821194911], "stop_id": 5121356, "stop_desc": "55 AVENUE DE VERSAILLES - 75116", "stop_name": "PONT MIRABEAU"}, "geometry": {"type": "Point", "coordinates": [2.273578821194911, 48.847040191869645]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c0781d7c5d7fde87cbad4b94e67d55cbd636263c", "fields": {"departement": "75", "stop_lat": 48.850961087388356, "code_postal": "75116", "stop_lon": 2.2781362470491286, "coord": [48.850961087388356, 2.2781362470491286], "stop_id": 5121360, "stop_desc": "7 AVENUE DE VERSAILLES - 75116", "stop_name": "RADIO FRANCE - PONT DE GRENELLE"}, "geometry": {"type": "Point", "coordinates": [2.2781362470491286, 48.850961087388356]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "14d46077e7fcb6954731ddbf3c518b2271e64f6a", "fields": {"departement": "75", "stop_lat": 48.847877242580424, "code_postal": "75112", "stop_lon": 2.3986165404125455, "coord": [48.847877242580424, 2.3986165404125455], "stop_id": 3672105, "stop_desc": "6 AVENUE DU TRONE - 75112", "stop_name": "NATION"}, "geometry": {"type": "Point", "coordinates": [2.3986165404125455, 48.847877242580424]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e9209e37edc9981608c7937c4f3a2f1e6521e901", "fields": {"departement": "93", "stop_lat": 48.98292708588317, "code_postal": "93073", "stop_lon": 2.5197046726137797, "coord": [48.98292708588317, 2.5197046726137797], "stop_id": 3678788, "stop_desc": "AVENUE DE LA PYRAMIDE - 93073", "stop_name": "227, AVENUE DES NATIONS"}, "geometry": {"type": "Point", "coordinates": [2.5197046726137797, 48.98292708588317]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "925c09a711650545b3344f8f5113992be5470889", "fields": {"departement": "77", "stop_lat": 48.824544052604296, "code_postal": "77258", "stop_lon": 2.6331462487305894, "coord": [48.824544052604296, 2.6331462487305894], "stop_id": 3677850, "stop_desc": "BOULEVARD DE COURCERIN - 77258", "stop_name": "AERODROME DE LOGNES"}, "geometry": {"type": "Point", "coordinates": [2.6331462487305894, 48.824544052604296]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0a63da885dfb45bdb6b2dcc3bf1f9a7eb28e7f49", "fields": {"departement": "77", "stop_lat": 48.824135096644355, "code_postal": "77258", "stop_lon": 2.6349542702316158, "coord": [48.824135096644355, 2.6349542702316158], "stop_id": 3677849, "stop_desc": "BOULEVARD DE COURCERIN - 77258", "stop_name": "TOUR DE CONTROLE"}, "geometry": {"type": "Point", "coordinates": [2.6349542702316158, 48.824135096644355]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b65f5a5131362021928192b0b21decb74d9eae7e", "fields": {"departement": "77", "stop_lat": 48.824135096644355, "code_postal": "77258", "stop_lon": 2.6349542702316158, "coord": [48.824135096644355, 2.6349542702316158], "stop_id": 3677884, "stop_desc": "BOULEVARD DE COURCERIN - 77258", "stop_name": "TOUR DE CONTROLE"}, "geometry": {"type": "Point", "coordinates": [2.6349542702316158, 48.824135096644355]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "37960a1b32411d1fa534622870136c89b81869df", "fields": {"departement": "77", "stop_lat": 48.828201357458596, "code_postal": "77258", "stop_lon": 2.629791142179634, "coord": [48.828201357458596, 2.629791142179634], "stop_id": 3677833, "stop_desc": "RUE DE LA MAISON ROUGE - 77258", "stop_name": "LA MADELEINE"}, "geometry": {"type": "Point", "coordinates": [2.629791142179634, 48.828201357458596]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f55ac3a922cd3dca41fc454e1fd72289aa3b8ca8", "fields": {"departement": "77", "stop_lat": 48.84179603245742, "code_postal": "77258", "stop_lon": 2.63127027932034, "coord": [48.84179603245742, 2.63127027932034], "stop_id": 3677878, "stop_desc": "PLACE CHARLES CROS - 77258", "stop_name": "COURS DES LACS"}, "geometry": {"type": "Point", "coordinates": [2.63127027932034, 48.84179603245742]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b75a8e8e0aa9cecc7f2b14d92bead5d9f46e4b0f", "fields": {"departement": "77", "stop_lat": 48.832408572708516, "code_postal": "77258", "stop_lon": 2.629392832135877, "coord": [48.832408572708516, 2.629392832135877], "stop_id": 3677881, "stop_desc": "RUE DE LA MAISON ROUGE - 77258", "stop_name": "MAISON ROUGE"}, "geometry": {"type": "Point", "coordinates": [2.629392832135877, 48.832408572708516]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "988da485b29412cf247585d34c431f6c4725061f", "fields": {"departement": "77", "stop_lat": 48.826477178713944, "code_postal": "77146", "stop_lon": 2.6399906423411275, "coord": [48.826477178713944, 2.6399906423411275], "stop_id": 3677841, "stop_desc": "RUE LEON JOUHAUX - 77146", "stop_name": "LEON JOUHAUX"}, "geometry": {"type": "Point", "coordinates": [2.6399906423411275, 48.826477178713944]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2b796e531c2d7f3d5b442824e702a6fcef315c85", "fields": {"departement": "77", "stop_lat": 48.826324528217434, "code_postal": "77146", "stop_lon": 2.639935302815908, "coord": [48.826324528217434, 2.639935302815908], "stop_id": 3677840, "stop_desc": "RUE LEON JOUHAUX - 77146", "stop_name": "LEON JOUHAUX"}, "geometry": {"type": "Point", "coordinates": [2.639935302815908, 48.826324528217434]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ed3619e56222f13deb2f7d24a975920f219f976c", "fields": {"departement": "93", "stop_lat": 48.99173782611795, "code_postal": "93073", "stop_lon": 2.5286392829463, "coord": [48.99173782611795, 2.5286392829463], "stop_id": 3678797, "stop_desc": "ROUTE DU MIDI - 93073", "stop_name": "RUE DU TE"}, "geometry": {"type": "Point", "coordinates": [2.5286392829463, 48.99173782611795]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1dacb857a7e39678ea189b54e43e5f155a4be14d", "fields": {"departement": "95", "stop_lat": 48.986517805541546, "code_postal": "95527", "stop_lon": 2.5163310604157636, "coord": [48.986517805541546, 2.5163310604157636], "stop_id": 3678825, "stop_desc": "291 AVENUE DU BOIS DE LA PIE - 95527", "stop_name": "291, AVENUE DU BOIS DE LA PIE"}, "geometry": {"type": "Point", "coordinates": [2.5163310604157636, 48.986517805541546]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c6be3c444a63d28825f2cfac4087ce5d09d846b4", "fields": {"departement": "93", "stop_lat": 48.9939157315064, "code_postal": "93073", "stop_lon": 2.5266398659308664, "coord": [48.9939157315064, 2.5266398659308664], "stop_id": 3678800, "stop_desc": "RUE DE LA JEUNE FILLE - 93073", "stop_name": "RUE DE LA JEUNE FILLE"}, "geometry": {"type": "Point", "coordinates": [2.5266398659308664, 48.9939157315064]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f8ef8d590d9132edfde01d9b63fd8d11d42ac66e", "fields": {"departement": "95", "stop_lat": 49.01383564937498, "code_postal": "95527", "stop_lon": 2.533953462650324, "coord": [49.01383564937498, 2.533953462650324], "stop_id": 3678821, "stop_desc": "ROUTE DES ANNIVERSAIRES - 95527", "stop_name": "ZONE TECHNIQUE"}, "geometry": {"type": "Point", "coordinates": [2.533953462650324, 49.01383564937498]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d8d2f8340ef64fd6d06fe29ed2e8517c7d309fe5", "fields": {"departement": "95", "stop_lat": 49.0093548695535, "code_postal": "95527", "stop_lon": 2.5477880446305514, "coord": [49.0093548695535, 2.5477880446305514], "stop_id": 3678811, "stop_desc": "ROUTE DES BADAUDS - 95527", "stop_name": "TOUR DE CONTROLE"}, "geometry": {"type": "Point", "coordinates": [2.5477880446305514, 49.0093548695535]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2916cca721efe73be65e7cfd14f0f08d693684f2", "fields": {"departement": "95", "stop_lat": 49.01346707921479, "code_postal": "95527", "stop_lon": 2.53403402919454, "coord": [49.01346707921479, 2.53403402919454], "stop_id": 3678812, "stop_desc": "ROUTE DES ANNIVERSAIRES - 95527", "stop_name": "ZONE TECHNIQUE"}, "geometry": {"type": "Point", "coordinates": [2.53403402919454, 49.01346707921479]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c40f74d1c9ef0a4b731bd687fccffbf8c09e4dd9", "fields": {"departement": "77", "stop_lat": 48.81150263987951, "code_postal": "77169", "stop_lon": 2.6221580063939895, "coord": [48.81150263987951, 2.6221580063939895], "stop_id": 3681412, "stop_desc": "R D'EMERY - 77169", "stop_name": "MAIRIE D'EMERAINVILLE"}, "geometry": {"type": "Point", "coordinates": [2.6221580063939895, 48.81150263987951]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d51ac72499e8bf7722340fbda6963bdc436434dc", "fields": {"departement": "77", "stop_lat": 48.813805376080765, "code_postal": "77169", "stop_lon": 2.621381325410131, "coord": [48.813805376080765, 2.621381325410131], "stop_id": 3681415, "stop_desc": "FACE 5 RUE D'EMERY - 77169", "stop_name": "RUE D'EMERY"}, "geometry": {"type": "Point", "coordinates": [2.621381325410131, 48.813805376080765]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "963100cd41a1b167d18b8c252d982b49c4d268b4", "fields": {"departement": "77", "stop_lat": 48.81427299543897, "code_postal": "77169", "stop_lon": 2.6212750123401, "coord": [48.81427299543897, 2.6212750123401], "stop_id": 3681414, "stop_desc": "R D'EMERY - 77169", "stop_name": "RUE D'EMERY"}, "geometry": {"type": "Point", "coordinates": [2.6212750123401, 48.81427299543897]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c54f0922702e597c99520deae56d8c3d61df6991", "fields": {"departement": "77", "stop_lat": 48.82305563389257, "code_postal": "77146", "stop_lon": 2.6388953832515374, "coord": [48.82305563389257, 2.6388953832515374], "stop_id": 3681434, "stop_desc": "R DES VIEILLES VIGNES - 77146", "stop_name": "TABLE D'ORIENTATION"}, "geometry": {"type": "Point", "coordinates": [2.6388953832515374, 48.82305563389257]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e08c4c17554f3bd3166b173944542b362c346239", "fields": {"departement": "77", "stop_lat": 48.82661239336869, "code_postal": "77146", "stop_lon": 2.6468248226974707, "coord": [48.82661239336869, 2.6468248226974707], "stop_id": 3681438, "stop_desc": "FACE 22 R DU CHENIL - 77146", "stop_name": "LIONS DE BEAUBOURG"}, "geometry": {"type": "Point", "coordinates": [2.6468248226974707, 48.82661239336869]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "530ab2738dc9a03dd0683b1743f7bcc0c5271b49", "fields": {"departement": "77", "stop_lat": 48.815148234358205, "code_postal": "77146", "stop_lon": 2.638168965509928, "coord": [48.815148234358205, 2.638168965509928], "stop_id": 3681422, "stop_desc": "R DES VIEILLES VIGNES - 77146", "stop_name": "COURS DU BUISSON"}, "geometry": {"type": "Point", "coordinates": [2.638168965509928, 48.815148234358205]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "654a09ccd46a7e1089de76b6b4bc631e6039f038", "fields": {"departement": "77", "stop_lat": 48.818220781272316, "code_postal": "77146", "stop_lon": 2.642201767339982, "coord": [48.818220781272316, 2.642201767339982], "stop_id": 3681424, "stop_desc": "R DES VIEILLES VIGNES - 77146", "stop_name": "LES VIEILLES VIGNES"}, "geometry": {"type": "Point", "coordinates": [2.642201767339982, 48.818220781272316]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5e1fddcf680281eccd67ad3866d260a1dfeb30bd", "fields": {"departement": "77", "stop_lat": 48.826477178713944, "code_postal": "77146", "stop_lon": 2.6399906423411275, "coord": [48.826477178713944, 2.6399906423411275], "stop_id": 3681430, "stop_desc": "RUE LEON JOUHAUX - 77146", "stop_name": "LEON JOUHAUX"}, "geometry": {"type": "Point", "coordinates": [2.6399906423411275, 48.826477178713944]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fec59383a003bb7824cc64a0abc9781e692a6a67", "fields": {"departement": "77", "stop_lat": 48.82742014325998, "code_postal": "77146", "stop_lon": 2.643794043290817, "coord": [48.82742014325998, 2.643794043290817], "stop_id": 3681437, "stop_desc": "52 R D'EMERAINVILLE - 77146", "stop_name": "HENRI AUBRY"}, "geometry": {"type": "Point", "coordinates": [2.643794043290817, 48.82742014325998]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c873c46a30a6652e2cca63cab8990bc511d6342c", "fields": {"departement": "77", "stop_lat": 48.826324528217434, "code_postal": "77146", "stop_lon": 2.639935302815908, "coord": [48.826324528217434, 2.639935302815908], "stop_id": 3681431, "stop_desc": "RUE LEON JOUHAUX - 77146", "stop_name": "LEON JOUHAUX"}, "geometry": {"type": "Point", "coordinates": [2.639935302815908, 48.826324528217434]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7d8c4552a33e83b521f8a2def2cb3c437b393386", "fields": {"departement": "77", "stop_lat": 48.84340936949441, "code_postal": "77083", "stop_lon": 2.5815375525817212, "coord": [48.84340936949441, 2.5815375525817212], "stop_id": 3681631, "stop_desc": "BOULEVARD ARCHIMEDE - 77083", "stop_name": "NOISY-CHAMPS RER - DESCARTES."}, "geometry": {"type": "Point", "coordinates": [2.5815375525817212, 48.84340936949441]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4c04651320bfb2d7ac358f4a97f1a6b8e41352e6", "fields": {"departement": "77", "stop_lat": 48.84498682387142, "code_postal": "77083", "stop_lon": 2.6044898346724326, "coord": [48.84498682387142, 2.6044898346724326], "stop_id": 3681640, "stop_desc": "FACE 14-16 COURS DU LUZARD - 77083", "stop_name": "FONTAINE AUX COULONS"}, "geometry": {"type": "Point", "coordinates": [2.6044898346724326, 48.84498682387142]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2f3b0ec1044d55844df964c0e1e213b97c105c48", "fields": {"departement": "77", "stop_lat": 48.84676361821815, "code_postal": "77337", "stop_lon": 2.613568309410896, "coord": [48.84676361821815, 2.613568309410896], "stop_id": 3681604, "stop_desc": "FACE AU 7 COURS DES ROCHES - 77337", "stop_name": "COLLEGE LE LUZARD"}, "geometry": {"type": "Point", "coordinates": [2.613568309410896, 48.84676361821815]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9f86a49ddbe5b234f3345b240c381d84b6be80f0", "fields": {"departement": "77", "stop_lat": 48.874339246385766, "code_postal": "77108", "stop_lon": 2.5839450063728906, "coord": [48.874339246385766, 2.5839450063728906], "stop_id": 3681644, "stop_desc": "ALLEE DES TRANSPORTS - 77108", "stop_name": "CHELLES - GOURNAY RER"}, "geometry": {"type": "Point", "coordinates": [2.5839450063728906, 48.874339246385766]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "28caec36a3df41306c4ba7d51fa2ff7cfc1f1ea7", "fields": {"departement": "93", "stop_lat": 48.86323884270116, "code_postal": "93033", "stop_lon": 2.5755964572289742, "coord": [48.86323884270116, 2.5755964572289742], "stop_id": 3681619, "stop_desc": "AVENUE DU MARECHAL JOFFRE - 93033", "stop_name": "EGLISE DE GOURNAY"}, "geometry": {"type": "Point", "coordinates": [2.5755964572289742, 48.86323884270116]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d412a477746bca87e2de0f18e08c6967062698fb", "fields": {"departement": "77", "stop_lat": 48.84267152877456, "code_postal": "77083", "stop_lon": 2.58195619006769, "coord": [48.84267152877456, 2.58195619006769], "stop_id": 3681630, "stop_desc": "BD NEWTON - 77083", "stop_name": "NOISY-CHAMPS RER - DESCARTES"}, "geometry": {"type": "Point", "coordinates": [2.58195619006769, 48.84267152877456]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "09670aa30e2dcb567099e6bd15d00347a2a6659c", "fields": {"departement": "77", "stop_lat": 48.84129932386872, "code_postal": "77083", "stop_lon": 2.6056418301533975, "coord": [48.84129932386872, 2.6056418301533975], "stop_id": 3681639, "stop_desc": "COURS DU LUZARD - 77083", "stop_name": "PLACE PABLO PICASSO"}, "geometry": {"type": "Point", "coordinates": [2.6056418301533975, 48.84129932386872]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "90be2588616bcc848171259a0ca2ea0ccc1ee53d", "fields": {"departement": "77", "stop_lat": 48.846898539842435, "code_postal": "77083", "stop_lon": 2.6096199134688556, "coord": [48.846898539842435, 2.6096199134688556], "stop_id": 3681641, "stop_desc": "COURS DU LUZARD - 77083", "stop_name": "GUY DE MAUPASSANT"}, "geometry": {"type": "Point", "coordinates": [2.6096199134688556, 48.846898539842435]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fc6dd37789493a48a835ae408cc5dfc07966b6d5", "fields": {"departement": "77", "stop_lat": 48.84276074387724, "code_postal": "77337", "stop_lon": 2.6150311934474253, "coord": [48.84276074387724, 2.6150311934474253], "stop_id": 3681607, "stop_desc": "COURS DES ROCHES - 77337", "stop_name": "NOISIEL RER"}, "geometry": {"type": "Point", "coordinates": [2.6150311934474253, 48.84276074387724]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b61a44183adc5659c65522e615668a702fa05a00", "fields": {"departement": "77", "stop_lat": 48.8448175465803, "code_postal": "77083", "stop_lon": 2.5829331251440686, "coord": [48.8448175465803, 2.5829331251440686], "stop_id": 3681629, "stop_desc": "FACE 1 AVENUE AMPERE - 77083", "stop_name": "AMPERE"}, "geometry": {"type": "Point", "coordinates": [2.5829331251440686, 48.8448175465803]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "952aa0b19771494d4a612930b9077a6f688043f4", "fields": {"departement": "77", "stop_lat": 48.874532919282075, "code_postal": "77108", "stop_lon": 2.581547949321578, "coord": [48.874532919282075, 2.581547949321578], "stop_id": 3681515, "stop_desc": "70 AVENUE DE LA RESISTANCE - 77108", "stop_name": "CHELLES - GOURNAY RER"}, "geometry": {"type": "Point", "coordinates": [2.581547949321578, 48.874532919282075]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aca66193e8fa0b07dc8dbccc961e96c40049d76a", "fields": {"departement": "77", "stop_lat": 48.850679452087306, "code_postal": "77337", "stop_lon": 2.6297681081578985, "coord": [48.850679452087306, 2.6297681081578985], "stop_id": 3681497, "stop_desc": "COURS DE L'ARCHE GUEDON - 77337", "stop_name": "LA REMISE AUX FRAISES"}, "geometry": {"type": "Point", "coordinates": [2.6297681081578985, 48.850679452087306]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0bac6e5a301ce2f39e390d8475323e372f40f065", "fields": {"departement": "93", "stop_lat": 48.86323884270116, "code_postal": "93033", "stop_lon": 2.5755964572289742, "coord": [48.86323884270116, 2.5755964572289742], "stop_id": 3681520, "stop_desc": "AVENUE DU MARECHAL JOFFRE - 93033", "stop_name": "EGLISE DE GOURNAY"}, "geometry": {"type": "Point", "coordinates": [2.5755964572289742, 48.86323884270116]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4704b9f86f9d5f581fba3f34f2bdf754ae2663a4", "fields": {"departement": "77", "stop_lat": 48.851227642343254, "code_postal": "77337", "stop_lon": 2.6223762009154137, "coord": [48.851227642343254, 2.6223762009154137], "stop_id": 3681529, "stop_desc": "COURS DE L'ARCHE GUEDON - 77337", "stop_name": "LES QUATRE PAVES"}, "geometry": {"type": "Point", "coordinates": [2.6223762009154137, 48.851227642343254]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e089db07148d5cdb945f134112caaf4b8c78368b", "fields": {"departement": "77", "stop_lat": 48.87462353224703, "code_postal": "77479", "stop_lon": 2.6399584020460387, "coord": [48.87462353224703, 2.6399584020460387], "stop_id": 3681484, "stop_desc": "GARE ROUTIERE - 77479", "stop_name": "GARE DE VAIRES - TORCY"}, "geometry": {"type": "Point", "coordinates": [2.6399584020460387, 48.87462353224703]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "75a89cdb18ef62088bd7ad897db217bc867818af", "fields": {"departement": "93", "stop_lat": 48.863480491497555, "code_postal": "93033", "stop_lon": 2.576101580804232, "coord": [48.863480491497555, 2.576101580804232], "stop_id": 3681508, "stop_desc": "AVENUE PAUL DOUMER - 93033", "stop_name": "EGLISE DE GOURNAY"}, "geometry": {"type": "Point", "coordinates": [2.576101580804232, 48.863480491497555]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b43e178eec47faf321bf6fa6d718bc8c69b33bed", "fields": {"departement": "77", "stop_lat": 48.85258832961184, "code_postal": "77083", "stop_lon": 2.609322932107952, "coord": [48.85258832961184, 2.609322932107952], "stop_id": 3681500, "stop_desc": "RUE DE PARIS - 77083", "stop_name": "MAISON DE RETRAITE"}, "geometry": {"type": "Point", "coordinates": [2.609322932107952, 48.85258832961184]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e5ae49df3500d4556d9437d36462a6024f9f356b", "fields": {"departement": "77", "stop_lat": 48.85243498342096, "code_postal": "77083", "stop_lon": 2.609567271347769, "coord": [48.85243498342096, 2.609567271347769], "stop_id": 3681528, "stop_desc": "RUE DE PARIS - 77083", "stop_name": "MAISON DE RETRAITE"}, "geometry": {"type": "Point", "coordinates": [2.609567271347769, 48.85243498342096]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d444e7a251eef424cb38d7674522060c2051b313", "fields": {"departement": "77", "stop_lat": 48.866322520287966, "code_postal": "77479", "stop_lon": 2.642171321020683, "coord": [48.866322520287966, 2.642171321020683], "stop_id": 3681480, "stop_desc": "44 BOULEVARD DE LA MARNE - 77479", "stop_name": "LE CANAL"}, "geometry": {"type": "Point", "coordinates": [2.642171321020683, 48.866322520287966]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b6ca4a89a5ccaa2d519cd5f952b4963627ba1c61", "fields": {"departement": "77", "stop_lat": 48.86620528888257, "code_postal": "77108", "stop_lon": 2.5752967704531002, "coord": [48.86620528888257, 2.5752967704531002], "stop_id": 3681519, "stop_desc": "1 RUE DE GOURNAY - 77108", "stop_name": "PONT DE GOURNAY"}, "geometry": {"type": "Point", "coordinates": [2.5752967704531002, 48.86620528888257]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ead6e5df2d933ebd95c19151e459f9a7231f660b", "fields": {"departement": "77", "stop_lat": 48.8426628769459, "code_postal": "77083", "stop_lon": 2.5817927511651937, "coord": [48.8426628769459, 2.5817927511651937], "stop_id": 3681583, "stop_desc": "BD NEWTON - 77083", "stop_name": "NOISY-CHAMPS RER - DESCARTES."}, "geometry": {"type": "Point", "coordinates": [2.5817927511651937, 48.8426628769459]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1c92a78aa122d28da72243428fa12c6d6cc32e2d", "fields": {"departement": "93", "stop_lat": 48.86323884270116, "code_postal": "93033", "stop_lon": 2.5755964572289742, "coord": [48.86323884270116, 2.5755964572289742], "stop_id": 3681558, "stop_desc": "AVENUE DU MARECHAL JOFFRE - 93033", "stop_name": "EGLISE DE GOURNAY"}, "geometry": {"type": "Point", "coordinates": [2.5755964572289742, 48.86323884270116]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "491365bb31d3d6c96c9496b654c14a2d621974c7", "fields": {"departement": "77", "stop_lat": 48.84515807443644, "code_postal": "77083", "stop_lon": 2.6042728420545522, "coord": [48.84515807443644, 2.6042728420545522], "stop_id": 3681601, "stop_desc": "12 COURS DU LUZARD - 77083", "stop_name": "FONTAINE AUX COULONS"}, "geometry": {"type": "Point", "coordinates": [2.6042728420545522, 48.84515807443644]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "844cfb17a795bf1459caccb61a5109ca19ee2802", "fields": {"departement": "77", "stop_lat": 48.84129932386872, "code_postal": "77083", "stop_lon": 2.6056418301533975, "coord": [48.84129932386872, 2.6056418301533975], "stop_id": 3681598, "stop_desc": "COURS DU LUZARD - 77083", "stop_name": "PLACE PABLO PICASSO"}, "geometry": {"type": "Point", "coordinates": [2.6056418301533975, 48.84129932386872]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f41c8873cf04d893ab4a4b6c64b123dfdc77d01a", "fields": {"departement": "77", "stop_lat": 48.85450576523999, "code_postal": "77083", "stop_lon": 2.578702456548166, "coord": [48.85450576523999, 2.578702456548166], "stop_id": 3681567, "stop_desc": "RUE ALBERT SCHWEITZER - 77083", "stop_name": "CLAUDE BERNARD"}, "geometry": {"type": "Point", "coordinates": [2.578702456548166, 48.85450576523999]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2f7e7e0f4500db49546faf7d41fe9b0a74350588", "fields": {"departement": "77", "stop_lat": 48.849963254010994, "code_postal": "77468", "stop_lon": 2.6464466804422355, "coord": [48.849963254010994, 2.6464466804422355], "stop_id": 3681535, "stop_desc": "71 TER RUE DE PARIS - 77468", "stop_name": "LES TILLEULS"}, "geometry": {"type": "Point", "coordinates": [2.6464466804422355, 48.849963254010994]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ed73c1764032fa778c26a5d1a9dd5298f0263a0c", "fields": {"departement": "77", "stop_lat": 48.86893998350323, "code_postal": "77108", "stop_lon": 2.574028725109295, "coord": [48.86893998350323, 2.574028725109295], "stop_id": 3681555, "stop_desc": "1 AVENUE DU MARECHAL FOCH - 77108", "stop_name": "RUE DU PORT"}, "geometry": {"type": "Point", "coordinates": [2.574028725109295, 48.86893998350323]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4240e8ab7fbde6f650d9f529c36f2ce7d72c1224", "fields": {"departement": "77", "stop_lat": 48.84238030651938, "code_postal": "77083", "stop_lon": 2.583711336428734, "coord": [48.84238030651938, 2.583711336428734], "stop_id": 3681584, "stop_desc": "FACE 23-25 AV AMPERE - 77083", "stop_name": "C.R.O.U.S."}, "geometry": {"type": "Point", "coordinates": [2.583711336428734, 48.84238030651938]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1e62f5c121800d7e21f8eaaa8cf274e459682f85", "fields": {"departement": "77", "stop_lat": 48.86831057428451, "code_postal": "77108", "stop_lon": 2.574175706615011, "coord": [48.86831057428451, 2.574175706615011], "stop_id": 3681554, "stop_desc": "RUE DE GOURNAY - 77108", "stop_name": "RUE DU PORT"}, "geometry": {"type": "Point", "coordinates": [2.574175706615011, 48.86831057428451]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1b719872201b77d8d9cd7567f6f6f9be4eff10c8", "fields": {"departement": "77", "stop_lat": 48.8448175465803, "code_postal": "77083", "stop_lon": 2.5829331251440686, "coord": [48.8448175465803, 2.5829331251440686], "stop_id": 3681578, "stop_desc": "FACE 1 AVENUE AMPERE - 77083", "stop_name": "AMPERE"}, "geometry": {"type": "Point", "coordinates": [2.5829331251440686, 48.8448175465803]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dd5126ccec618547ddfd03f8d9ae56722ec817c6", "fields": {"departement": "77", "stop_lat": 48.84340936949441, "code_postal": "77083", "stop_lon": 2.5815375525817212, "coord": [48.84340936949441, 2.5815375525817212], "stop_id": 3681661, "stop_desc": "BOULEVARD ARCHIMEDE - 77083", "stop_name": "NOISY-CHAMPS RER - DESCARTES."}, "geometry": {"type": "Point", "coordinates": [2.5815375525817212, 48.84340936949441]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eb1b07c4656d5ac56ea8faaacc2726e8bceb148c", "fields": {"departement": "93", "stop_lat": 48.85829250037943, "code_postal": "93033", "stop_lon": 2.581634896586026, "coord": [48.85829250037943, 2.581634896586026], "stop_id": 3681651, "stop_desc": "FACE 1 AVENUE DES PRINCES - 93033", "stop_name": "PLACE CHURCHILL"}, "geometry": {"type": "Point", "coordinates": [2.581634896586026, 48.85829250037943]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bb0e456b2f227f4330e63c635dd86792e20eaf14", "fields": {"departement": "77", "stop_lat": 48.84103765462248, "code_postal": "77337", "stop_lon": 2.617786036193528, "coord": [48.84103765462248, 2.617786036193528], "stop_id": 3681672, "stop_desc": "AVENUE PIERRE MENDES FRANCE - 77337", "stop_name": "LES TOTEMS"}, "geometry": {"type": "Point", "coordinates": [2.617786036193528, 48.84103765462248]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e0fa6c129095034a2bbc93d27feb43d6d751f715", "fields": {"departement": "77", "stop_lat": 48.854489416640035, "code_postal": "77083", "stop_lon": 2.5778988234131224, "coord": [48.854489416640035, 2.5778988234131224], "stop_id": 3681653, "stop_desc": "RUE SCHWEITZER - 77083", "stop_name": "CLAUDE BERNARD"}, "geometry": {"type": "Point", "coordinates": [2.5778988234131224, 48.854489416640035]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9bfb79a8c41054ef552ae20a723eaf31b2a9f071", "fields": {"departement": "77", "stop_lat": 48.838882989229866, "code_postal": "77258", "stop_lon": 2.6280405027315052, "coord": [48.838882989229866, 2.6280405027315052], "stop_id": 3681670, "stop_desc": "BOULEVARD DU MANDINET - 77258", "stop_name": "LE VILLAGE"}, "geometry": {"type": "Point", "coordinates": [2.6280405027315052, 48.838882989229866]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e5664fb2d26b7480f483303d119e078e1af4a9bf", "fields": {"departement": "77", "stop_lat": 48.84238030651938, "code_postal": "77083", "stop_lon": 2.583711336428734, "coord": [48.84238030651938, 2.583711336428734], "stop_id": 3681662, "stop_desc": "FACE 23-25 AV AMPERE - 77083", "stop_name": "C.R.O.U.S."}, "geometry": {"type": "Point", "coordinates": [2.583711336428734, 48.84238030651938]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f0e29d5e9f597af2050331de7173feb5819f3190", "fields": {"departement": "77", "stop_lat": 48.8404375150427, "code_postal": "77337", "stop_lon": 2.6207238353056628, "coord": [48.8404375150427, 2.6207238353056628], "stop_id": 3681671, "stop_desc": "2 AVENUE MENDES FRANCE - 77337", "stop_name": "LES HAMEAUX"}, "geometry": {"type": "Point", "coordinates": [2.6207238353056628, 48.8404375150427]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "84a29ae39219f0571132ec6e824679b4f7fcc8bd", "fields": {"departement": "77", "stop_lat": 48.85527517333553, "code_postal": "77468", "stop_lon": 2.6565570449891425, "coord": [48.85527517333553, 2.6565570449891425], "stop_id": 3681462, "stop_desc": "AV DU PRESIDENT FRANCOIS MITTERRAND - 77468", "stop_name": "LE CLOS"}, "geometry": {"type": "Point", "coordinates": [2.6565570449891425, 48.85527517333553]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bd6a7d5a1981eb509f14837426de725a971e2f8e", "fields": {"departement": "77", "stop_lat": 48.84694657702187, "code_postal": "77468", "stop_lon": 2.6521072695310983, "coord": [48.84694657702187, 2.6521072695310983], "stop_id": 3681456, "stop_desc": "AVENUE DE LINGENFELD - 77468", "stop_name": "JACQUES PREVERT"}, "geometry": {"type": "Point", "coordinates": [2.6521072695310983, 48.84694657702187]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7f04376c63160f1cd28c640bd70bad79935fb764", "fields": {"departement": "77", "stop_lat": 48.84866889183998, "code_postal": "77468", "stop_lon": 2.656720651347793, "coord": [48.84866889183998, 2.656720651347793], "stop_id": 3681458, "stop_desc": "AV JACQUES PREVERT - 77468", "stop_name": "RUE DES EPINETTES"}, "geometry": {"type": "Point", "coordinates": [2.656720651347793, 48.84866889183998]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5fcbec835aeb36a755ea4768a22938da73cf24c7", "fields": {"departement": "77", "stop_lat": 48.851801971229484, "code_postal": "77468", "stop_lon": 2.65469710541561, "coord": [48.851801971229484, 2.65469710541561], "stop_id": 3681463, "stop_desc": "FACE 6 RUE DU COUVENT - 77468", "stop_name": "FERME DU COUVENT"}, "geometry": {"type": "Point", "coordinates": [2.65469710541561, 48.851801971229484]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7fb8678f55eb9be12d43fa3112e26b77a4f7f258", "fields": {"departement": "77", "stop_lat": 48.830493495193004, "code_postal": "77146", "stop_lon": 2.6576161426267944, "coord": [48.830493495193004, 2.6576161426267944], "stop_id": 3681442, "stop_desc": "AV JEAN MOULIN - 77146", "stop_name": "ETANG DE CROISSY"}, "geometry": {"type": "Point", "coordinates": [2.6576161426267944, 48.830493495193004]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3c97669349c3df0e20ab96a1cdd6d7489ed3fdda", "fields": {"departement": "77", "stop_lat": 48.85765117162262, "code_postal": "77468", "stop_lon": 2.645062363100196, "coord": [48.85765117162262, 2.645062363100196], "stop_id": 3681478, "stop_desc": "AV DE LA REPUBLIQUE - 77468", "stop_name": "LES CANTINES"}, "geometry": {"type": "Point", "coordinates": [2.645062363100196, 48.85765117162262]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4b567d2c2e866d5616ba2dae1b99f03a26c36fc0", "fields": {"departement": "77", "stop_lat": 48.8363010847742, "code_postal": "77468", "stop_lon": 2.6570393314832073, "coord": [48.8363010847742, 2.6570393314832073], "stop_id": 3681445, "stop_desc": "AV JEAN MOULIN - 77468", "stop_name": "LYCEE JEAN MOULIN"}, "geometry": {"type": "Point", "coordinates": [2.6570393314832073, 48.8363010847742]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b81e5706843242a58f04de9c9b9ad00f854b372a", "fields": {"departement": "77", "stop_lat": 48.851531362655635, "code_postal": "77468", "stop_lon": 2.637753568468366, "coord": [48.851531362655635, 2.637753568468366], "stop_id": 3681471, "stop_desc": "RUE DE LA MOGOTTE - 77468", "stop_name": "LA MOGOTTE"}, "geometry": {"type": "Point", "coordinates": [2.637753568468366, 48.851531362655635]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "39f2a1afc0a4e7d37467a3481098c13188b04221", "fields": {"departement": "77", "stop_lat": 48.851342867636546, "code_postal": "77468", "stop_lon": 2.6376571447027524, "coord": [48.851342867636546, 2.6376571447027524], "stop_id": 3681472, "stop_desc": "R DE LA MOGOTTE - 77468", "stop_name": "LA MOGOTTE"}, "geometry": {"type": "Point", "coordinates": [2.6376571447027524, 48.851342867636546]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7e6548b49601e335f0ba14bf5a093d2f7b864aab", "fields": {"departement": "77", "stop_lat": 48.84937386327594, "code_postal": "77468", "stop_lon": 2.6414861033950703, "coord": [48.84937386327594, 2.6414861033950703], "stop_id": 3681470, "stop_desc": "103 RUE DE PARIS - 77468", "stop_name": "BEL AIR"}, "geometry": {"type": "Point", "coordinates": [2.6414861033950703, 48.84937386327594]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dd8b09fb6d486b7078bb17441b23e1278aabe0f9", "fields": {"departement": "77", "stop_lat": 48.84339175752424, "code_postal": "77083", "stop_lon": 2.5813604525647795, "coord": [48.84339175752424, 2.5813604525647795], "stop_id": 3681686, "stop_desc": "BOULEVARD ARCHIMEDE - 77083", "stop_name": "NOISY-CHAMPS RER - DESCARTES."}, "geometry": {"type": "Point", "coordinates": [2.5813604525647795, 48.84339175752424]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1c7ded898d067ccacbdcd03e2d2d7814d7a08c5f", "fields": {"departement": "77", "stop_lat": 48.85057148011402, "code_postal": "77083", "stop_lon": 2.5820070772404646, "coord": [48.85057148011402, 2.5820070772404646], "stop_id": 3681691, "stop_desc": "RUE ALBERT SCHWEITZER - 77083", "stop_name": "FLANDRES-DUNKERQUE 1940"}, "geometry": {"type": "Point", "coordinates": [2.5820070772404646, 48.85057148011402]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fb9e2a8b9694fc3f9be1f8ad94d2f8e23a8369c3", "fields": {"departement": "92", "stop_lat": 48.824921780034416, "code_postal": "92040", "stop_lon": 2.2736467944118726, "coord": [48.824921780034416, 2.2736467944118726], "stop_id": 3681788, "stop_desc": "FACE 29BIS RUE KLEBER - 92040", "stop_name": "MAIRIE D'ISSY-METRO"}, "geometry": {"type": "Point", "coordinates": [2.2736467944118726, 48.824921780034416]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ae079a9dc7d4450caff195082013a4a70cde03d4", "fields": {"departement": "77", "stop_lat": 48.84267152877456, "code_postal": "77083", "stop_lon": 2.58195619006769, "coord": [48.84267152877456, 2.58195619006769], "stop_id": 3681685, "stop_desc": "BD NEWTON - 77083", "stop_name": "NOISY-CHAMPS RER - DESCARTES"}, "geometry": {"type": "Point", "coordinates": [2.58195619006769, 48.84267152877456]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c110819d2c8d768c2e220b1b3cf821dc8f76f6f9", "fields": {"departement": "77", "stop_lat": 48.83991488440749, "code_postal": "77083", "stop_lon": 2.6017813972024593, "coord": [48.83991488440749, 2.6017813972024593], "stop_id": 3681678, "stop_desc": "0 AV FORESTIERE - 77083", "stop_name": "LES VIGNES DE BAILLY"}, "geometry": {"type": "Point", "coordinates": [2.6017813972024593, 48.83991488440749]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "13da7d546ee990eca544d07afe2fd1d4e46711a4", "fields": {"departement": "77", "stop_lat": 48.835254079794645, "code_postal": "77083", "stop_lon": 2.5918053833245454, "coord": [48.835254079794645, 2.5918053833245454], "stop_id": 3681681, "stop_desc": "RUE GALILEE - 77083", "stop_name": "EINSTEIN-GALILEE"}, "geometry": {"type": "Point", "coordinates": [2.5918053833245454, 48.835254079794645]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5d38e380a67705079d2139abf0cebdf4011a0e31", "fields": {"departement": "77", "stop_lat": 48.84084677490328, "code_postal": "77083", "stop_lon": 2.594869200246442, "coord": [48.84084677490328, 2.594869200246442], "stop_id": 3681679, "stop_desc": "AVENUE PASCAL - 77083", "stop_name": "GALILEE-PASCAL"}, "geometry": {"type": "Point", "coordinates": [2.594869200246442, 48.84084677490328]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "00680f8cdd6856808ba4a431a2161c098c6a16ca", "fields": {"departement": "77", "stop_lat": 48.83866547075784, "code_postal": "77083", "stop_lon": 2.5851369286206594, "coord": [48.83866547075784, 2.5851369286206594], "stop_id": 3681683, "stop_desc": "AVENUE AMPERE - 77083", "stop_name": "NOBEL"}, "geometry": {"type": "Point", "coordinates": [2.5851369286206594, 48.83866547075784]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6be9319cb0dd73b8ee9b0b47efedafcc74f312be", "fields": {"departement": "92", "stop_lat": 48.846098339131025, "code_postal": "92012", "stop_lon": 2.237058242811786, "coord": [48.846098339131025, 2.237058242811786], "stop_id": 3681819, "stop_desc": "2 AVENUE CHARLES DE GAULLE - 92012", "stop_name": "EGLISE DE BOULOGNE-BILLANCOURT"}, "geometry": {"type": "Point", "coordinates": [2.237058242811786, 48.846098339131025]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6e5362c48a9f998029b243514aabfd4cb36e644f", "fields": {"departement": "92", "stop_lat": 48.825866993708395, "code_postal": "92012", "stop_lon": 2.2480005507039484, "coord": [48.825866993708395, 2.2480005507039484], "stop_id": 3681803, "stop_desc": "263 BOULEVARD JEAN JAURES - 92012", "stop_name": "PONT DE BILLANCOURT"}, "geometry": {"type": "Point", "coordinates": [2.2480005507039484, 48.825866993708395]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8fc87ff3d3d03224bf9d969679eeadb4cfacaf01", "fields": {"departement": "92", "stop_lat": 48.834212867537715, "code_postal": "92012", "stop_lon": 2.2432756702904832, "coord": [48.834212867537715, 2.2432756702904832], "stop_id": 3681809, "stop_desc": "187 BOULEVARD JEAN JAURES - 92012", "stop_name": "MARCEL SEMBAT-METRO"}, "geometry": {"type": "Point", "coordinates": [2.2432756702904832, 48.834212867537715]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "832c215083c16ff23f2d1c5e52b7bb1b38c77957", "fields": {"departement": "92", "stop_lat": 48.818264411263996, "code_postal": "92040", "stop_lon": 2.2493474086296885, "coord": [48.818264411263996, 2.2493474086296885], "stop_id": 3681834, "stop_desc": "FACE 37 RUE JEAN PIERRE TIMBAUD - 92040", "stop_name": "PAUL BESNARD"}, "geometry": {"type": "Point", "coordinates": [2.2493474086296885, 48.818264411263996]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f95414f6e9da7d611363454f5021a6b09c32169d", "fields": {"departement": "92", "stop_lat": 48.84235189737732, "code_postal": "92012", "stop_lon": 2.238685826468945, "coord": [48.84235189737732, 2.238685826468945], "stop_id": 3681815, "stop_desc": "21 BIS BOULEVARD JEAN JAURES - 92012", "stop_name": "JEAN JAURES-METRO"}, "geometry": {"type": "Point", "coordinates": [2.238685826468945, 48.84235189737732]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "681292297ccbcdd45340c2fd8a14a372bd2a8fbe", "fields": {"departement": "92", "stop_lat": 48.81914920599903, "code_postal": "92040", "stop_lon": 2.2549397354656633, "coord": [48.81914920599903, 2.2549397354656633], "stop_id": 3681797, "stop_desc": "115 AVENUE DE VERDUN - 92040", "stop_name": "CHEMIN DES VIGNES"}, "geometry": {"type": "Point", "coordinates": [2.2549397354656633, 48.81914920599903]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "58c099370174c4c6a93c66926a854fc9e5243e07", "fields": {"departement": "92", "stop_lat": 48.8432590038963, "code_postal": "92012", "stop_lon": 2.237921572910087, "coord": [48.8432590038963, 2.237921572910087], "stop_id": 3681818, "stop_desc": "26 BOULEVARD JEAN JAURES - 92012", "stop_name": "ESCUDIER-MARCHE"}, "geometry": {"type": "Point", "coordinates": [2.237921572910087, 48.8432590038963]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7d17de702577a8ba6a1380901a92d72cd571a8dd", "fields": {"departement": "92", "stop_lat": 48.83714148448997, "code_postal": "92012", "stop_lon": 2.2415957204910764, "coord": [48.83714148448997, 2.2415957204910764], "stop_id": 3681811, "stop_desc": "115 BOULEVARD JEAN JAURES - 92012", "stop_name": "GALLIENI"}, "geometry": {"type": "Point", "coordinates": [2.2415957204910764, 48.83714148448997]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "23aed2f7ceee934e3cd06fab87f6741e319758e7", "fields": {"departement": "93", "stop_lat": 48.90104281606892, "code_postal": "93047", "stop_lon": 2.5692952134673757, "coord": [48.90104281606892, 2.5692952134673757], "stop_id": 3682199, "stop_desc": "FACE 65 RUE HENRI BARBUSSE - 93047", "stop_name": "HOTEL DE VILLE DE MONTFERMEIL"}, "geometry": {"type": "Point", "coordinates": [2.5692952134673757, 48.90104281606892]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1137d783b36c42f56d2951764daafff84e7febfa", "fields": {"departement": "93", "stop_lat": 48.912996124845414, "code_postal": "93014", "stop_lon": 2.544655803018868, "coord": [48.912996124845414, 2.544655803018868], "stop_id": 3682227, "stop_desc": "2 AVENUE DE SEVIGNE - 93014", "stop_name": "AVENUE DU COTEAU - ECOLE NORMALE"}, "geometry": {"type": "Point", "coordinates": [2.544655803018868, 48.912996124845414]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8621e62861689ddc8cabe8dd2a7ec8a2f3fa5f6f", "fields": {"departement": "93", "stop_lat": 48.90658543502007, "code_postal": "93010", "stop_lon": 2.4865114865196762, "coord": [48.90658543502007, 2.4865114865196762], "stop_id": 3682214, "stop_desc": "170 AVENUE GALLIENI - 93010", "stop_name": "PASTEUR - HOPITAL JEAN VERDIER"}, "geometry": {"type": "Point", "coordinates": [2.4865114865196762, 48.90658543502007]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1cab565641b9ab24fbe0de9be8b50cd431f888ea", "fields": {"departement": "93", "stop_lat": 48.903523017599944, "code_postal": "93053", "stop_lon": 2.469434829520669, "coord": [48.903523017599944, 2.469434829520669], "stop_id": 3682207, "stop_desc": "195 RUE DE PARIS - 93053", "stop_name": "PONT DE BONDY - AVENUE DE ROSNY"}, "geometry": {"type": "Point", "coordinates": [2.469434829520669, 48.903523017599944]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8ef55ae41c8cba7e393f5879cf35be82f49c80fe", "fields": {"departement": "93", "stop_lat": 48.90859629871849, "code_postal": "93046", "stop_lon": 2.531713334134483, "coord": [48.90859629871849, 2.531713334134483], "stop_id": 3682224, "stop_desc": "26 AVENUE LEON BLUM - 93046", "stop_name": "JEAN-BAPTISTE CLEMENT"}, "geometry": {"type": "Point", "coordinates": [2.531713334134483, 48.90859629871849]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f4e204765ab0b4b16197aa8d693cb38c0052fb6a", "fields": {"departement": "93", "stop_lat": 48.89897493409345, "code_postal": "93047", "stop_lon": 2.5742886405139136, "coord": [48.89897493409345, 2.5742886405139136], "stop_id": 3682246, "stop_desc": "RUE DES JARDINS - 93047", "stop_name": "HOPITAL DE MONTFERMEIL"}, "geometry": {"type": "Point", "coordinates": [2.5742886405139136, 48.89897493409345]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dad47f7aba7e6fe708a5d2f05bd791cb7620d168", "fields": {"departement": "93", "stop_lat": 48.90465529470359, "code_postal": "93047", "stop_lon": 2.560054727205467, "coord": [48.90465529470359, 2.560054727205467], "stop_id": 3682238, "stop_desc": "FACE 9 AVENUE DE CLICHY - 93047", "stop_name": "LES BOSQUETS"}, "geometry": {"type": "Point", "coordinates": [2.560054727205467, 48.90465529470359]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "09b1c850106203baca1a782c1b9d18f7dd5e0cc1", "fields": {"departement": "93", "stop_lat": 48.90803786721315, "code_postal": "93057", "stop_lon": 2.4961546603940876, "coord": [48.90803786721315, 2.4961546603940876], "stop_id": 3682216, "stop_desc": "62 AVENUE ARISTIDE BRIAND - 93057", "stop_name": "LA FOURCHE"}, "geometry": {"type": "Point", "coordinates": [2.4961546603940876, 48.90803786721315]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a9912404dea5b1907aba03e01fd461b64ddbee76", "fields": {"departement": "93", "stop_lat": 48.90924174071748, "code_postal": "93014", "stop_lon": 2.553530134299135, "coord": [48.90924174071748, 2.553530134299135], "stop_id": 3682191, "stop_desc": "ALLEE VEUVE LINDET GIRARD - 93014", "stop_name": "LA PELOUSE"}, "geometry": {"type": "Point", "coordinates": [2.553530134299135, 48.90924174071748]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "40cb3173229415708ca41db8e40dcde518209803", "fields": {"departement": "93", "stop_lat": 48.91004025543617, "code_postal": "93046", "stop_lon": 2.527982985738969, "coord": [48.91004025543617, 2.527982985738969], "stop_id": 3682223, "stop_desc": "4 AVENUE LEON BLUM - 93046", "stop_name": "SALENGRO"}, "geometry": {"type": "Point", "coordinates": [2.527982985738969, 48.91004025543617]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8d992c9e53376a154b077a1e09d9ebd3d97d11d6", "fields": {"departement": "93", "stop_lat": 48.90939395213068, "code_postal": "93057", "stop_lon": 2.5034530141423437, "coord": [48.90939395213068, 2.5034530141423437], "stop_id": 3682041, "stop_desc": "91 AVENUE ARISTIDE BRIAND - 93057", "stop_name": "EGLISE DES PAVILLONS-SOUS-BOIS"}, "geometry": {"type": "Point", "coordinates": [2.5034530141423437, 48.90939395213068]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9a8a2edbbcff3f447374bf1d634f407020789e07", "fields": {"departement": "92", "stop_lat": 48.82994171025274, "code_postal": "92012", "stop_lon": 2.2302148155394947, "coord": [48.82994171025274, 2.2302148155394947], "stop_id": 5121003, "stop_desc": "PISTE GARE ROUTIERE - 92012", "stop_name": "PONT DE SEVRES-METRO"}, "geometry": {"type": "Point", "coordinates": [2.2302148155394947, 48.82994171025274]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "432bae0af08bcd7326f13ee5b951084bcbbbb292", "fields": {"departement": "92", "stop_lat": 48.768724332319636, "code_postal": "92019", "stop_lon": 2.2509676970806165, "coord": [48.768724332319636, 2.2509676970806165], "stop_id": 5121032, "stop_desc": "AVENUE DE LA DIVISION LECLERC - 92019", "stop_name": "CYRANO DE BERGERAC"}, "geometry": {"type": "Point", "coordinates": [2.2509676970806165, 48.768724332319636]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "33d2a647a50fd390221f3f1b8137530843d49d4d", "fields": {"departement": "92", "stop_lat": 48.76640827315518, "code_postal": "92019", "stop_lon": 2.255009693324619, "coord": [48.76640827315518, 2.255009693324619], "stop_id": 5121034, "stop_desc": "FACE 327 AVENUE DE LA DIVISION LECLERC - 92019", "stop_name": "FRANCIS DE PRESSENSE"}, "geometry": {"type": "Point", "coordinates": [2.255009693324619, 48.76640827315518]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b67fc26303bca10a3bdaabf071adc8d0759bcb97", "fields": {"departement": "92", "stop_lat": 48.762791481568364, "code_postal": "92019", "stop_lon": 2.279460155887965, "coord": [48.762791481568364, 2.279460155887965], "stop_id": 5121041, "stop_desc": "135-137 AVENUE DE LA DIVISION LECLERC - 92019", "stop_name": "LA BRIAUDE"}, "geometry": {"type": "Point", "coordinates": [2.279460155887965, 48.762791481568364]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3c986cb2398fab9caad468bf47da1f29d7ef49f3", "fields": {"departement": "92", "stop_lat": 48.76247863182691, "code_postal": "92019", "stop_lon": 2.283144866003438, "coord": [48.76247863182691, 2.283144866003438], "stop_id": 5121044, "stop_desc": "110 AVENUE DE LA DIVISION LECLERC - 92019", "stop_name": "CARREFOUR DU 19 MARS 1962"}, "geometry": {"type": "Point", "coordinates": [2.283144866003438, 48.76247863182691]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "da132b43e57112911225aae1239619fe9ac73d6b", "fields": {"departement": "92", "stop_lat": 48.76182027085243, "code_postal": "92002", "stop_lon": 2.300914554978485, "coord": [48.76182027085243, 2.300914554978485], "stop_id": 5121046, "stop_desc": "99 AVENUE DU GENERAL DE GAULLE - 92002", "stop_name": "PARC DE SCEAUX - SOUS-PREFECTURE"}, "geometry": {"type": "Point", "coordinates": [2.300914554978485, 48.76182027085243]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6a64fe498c1a3c4c2a7947d4fe357fe7e66b4c02", "fields": {"departement": "92", "stop_lat": 48.76224270366933, "code_postal": "92002", "stop_lon": 2.3008870688340224, "coord": [48.76224270366933, 2.3008870688340224], "stop_id": 5121047, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 92002", "stop_name": "PARC DE SCEAUX - SOUS-PREFECTURE"}, "geometry": {"type": "Point", "coordinates": [2.3008870688340224, 48.76224270366933]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5cbb771691686d801dafe86eee8c4d6e45332da2", "fields": {"departement": "92", "stop_lat": 48.8144420432121, "code_postal": "92048", "stop_lon": 2.2348738541742104, "coord": [48.8144420432121, 2.2348738541742104], "stop_id": 5121325, "stop_desc": "3 BOULEVARD DES NATIONS-UNIES - 92048", "stop_name": "STALINGRAD"}, "geometry": {"type": "Point", "coordinates": [2.2348738541742104, 48.8144420432121]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "544e3632a0657af10d4941b8d211213499d1a856", "fields": {"departement": "92", "stop_lat": 48.82593195169939, "code_postal": "92072", "stop_lon": 2.219360657621989, "coord": [48.82593195169939, 2.219360657621989], "stop_id": 5121336, "stop_desc": "2 AVENUE DE LA DIVISION LECLERC - 92072", "stop_name": "PARC DE SAINT-CLOUD"}, "geometry": {"type": "Point", "coordinates": [2.219360657621989, 48.82593195169939]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3b1cc4a849fa28f910fdbdf261e56b6c7f4f0989", "fields": {"departement": "92", "stop_lat": 48.833818522727846, "code_postal": "92012", "stop_lon": 2.2446922540305154, "coord": [48.833818522727846, 2.2446922540305154], "stop_id": 5121341, "stop_desc": "101 AVENUE EDOUARD VAILLANT - 92012", "stop_name": "MARCEL SEMBAT-METRO"}, "geometry": {"type": "Point", "coordinates": [2.2446922540305154, 48.833818522727846]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e102df1761b821d13f7d6dbb2a7b944eca2e57c1", "fields": {"departement": "92", "stop_lat": 48.83484557257652, "code_postal": "92012", "stop_lon": 2.247917034456035, "coord": [48.83484557257652, 2.247917034456035], "stop_id": 5121343, "stop_desc": "75 AVENUE EDOUARD VAILLANT - 92012", "stop_name": "RENE DESCARTES"}, "geometry": {"type": "Point", "coordinates": [2.247917034456035, 48.83484557257652]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fb665d9e817c3790b0a80bda9173fed9af112f6b", "fields": {"departement": "92", "stop_lat": 48.83508800198344, "code_postal": "92012", "stop_lon": 2.2476034844199417, "coord": [48.83508800198344, 2.2476034844199417], "stop_id": 5121344, "stop_desc": "68 AVENUE EDOUARD VAILLANT - 92012", "stop_name": "RENE DESCARTES"}, "geometry": {"type": "Point", "coordinates": [2.2476034844199417, 48.83508800198344]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2ae91798db34d06f23a27c4ebfbd1eb508f3c146", "fields": {"departement": "75", "stop_lat": 48.837127452662195, "code_postal": "75116", "stop_lon": 2.2593360874504773, "coord": [48.837127452662195, 2.2593360874504773], "stop_id": 5121347, "stop_desc": "124 BOULEVARD MURAT - 75116", "stop_name": "PORTE DE SAINT-CLOUD - MURAT"}, "geometry": {"type": "Point", "coordinates": [2.2593360874504773, 48.837127452662195]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "77002ea40bbccfd351ec13201f760b2c0ade298f", "fields": {"departement": "75", "stop_lat": 48.84290336202021, "code_postal": "75116", "stop_lon": 2.2689406689398375, "coord": [48.84290336202021, 2.2689406689398375], "stop_id": 5121353, "stop_desc": "114 BIS AVENUE DE VERSAILLES - 75116", "stop_name": "VICTORIEN SARDOU"}, "geometry": {"type": "Point", "coordinates": [2.2689406689398375, 48.84290336202021]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "570fd0cd6b461ab888a3bb5de913bdd744cd3595", "fields": {"departement": "75", "stop_lat": 48.844710909640725, "code_postal": "75116", "stop_lon": 2.2708038155294377, "coord": [48.844710909640725, 2.2708038155294377], "stop_id": 5121355, "stop_desc": "92 BIS AVENUE DE VERSAILLES - 75116", "stop_name": "WILHEM"}, "geometry": {"type": "Point", "coordinates": [2.2708038155294377, 48.844710909640725]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c64e40b7654ccc74574656b7e9fdca5c6c8ddf82", "fields": {"departement": "75", "stop_lat": 48.84092542778849, "code_postal": "75115", "stop_lon": 2.3138760334790764, "coord": [48.84092542778849, 2.3138760334790764], "stop_id": 5121369, "stop_desc": "52 BOULEVARD PASTEUR - 75115", "stop_name": "PASTEUR - FALGUIERE"}, "geometry": {"type": "Point", "coordinates": [2.3138760334790764, 48.84092542778849]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0b0d54c39ddc2ac2e06734d2f7c3d407db12d87e", "fields": {"departement": "75", "stop_lat": 48.84195996643212, "code_postal": "75115", "stop_lon": 2.3194990816420824, "coord": [48.84195996643212, 2.3194990816420824], "stop_id": 5121373, "stop_desc": "8-10 BOULEVARD DE VAUGIRARD - 75115", "stop_name": "GARE MONTPARNASSE"}, "geometry": {"type": "Point", "coordinates": [2.3194990816420824, 48.84195996643212]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4e8af262268f3887cb0043b395c77cb60ba5f9d5", "fields": {"departement": "75", "stop_lat": 48.84109667094733, "code_postal": "75115", "stop_lon": 2.316463002196349, "coord": [48.84109667094733, 2.316463002196349], "stop_id": 5121384, "stop_desc": "44 BOULEVARD DE VAUGIRARD - 75115", "stop_name": "ARMORIQUE - MUSEE POSTAL"}, "geometry": {"type": "Point", "coordinates": [2.316463002196349, 48.84109667094733]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e6233b9ef798674a734e75a440a36ffc430623e3", "fields": {"departement": "92", "stop_lat": 48.795721662558684, "code_postal": "92020", "stop_lon": 2.2758320153493683, "coord": [48.795721662558684, 2.2758320153493683], "stop_id": 5121418, "stop_desc": "FACE 3 AVENUE DE LA DIVISION LECLERC - 92020", "stop_name": "CENTRE BUS"}, "geometry": {"type": "Point", "coordinates": [2.2758320153493683, 48.795721662558684]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "caa4a59d3cd2b7ffc47efaace79b0f4b7daa1244", "fields": {"departement": "92", "stop_lat": 48.78481065530936, "code_postal": "92023", "stop_lon": 2.2367004292831227, "coord": [48.78481065530936, 2.2367004292831227], "stop_id": 5121426, "stop_desc": "PLACE GEORGES POMPIDOU - 92023", "stop_name": "GEORGES POMPIDOU"}, "geometry": {"type": "Point", "coordinates": [2.2367004292831227, 48.78481065530936]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f079576308ff7ef69bb431fccd5652444ff559c7", "fields": {"departement": "92", "stop_lat": 48.78486295296125, "code_postal": "92048", "stop_lon": 2.2248399939603316, "coord": [48.78486295296125, 2.2248399939603316], "stop_id": 5121430, "stop_desc": "14 R DE LA PEPINIERE - 92048", "stop_name": "DE LATTRE DE TASSIGNY"}, "geometry": {"type": "Point", "coordinates": [2.2248399939603316, 48.78486295296125]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4b0982a26c32ffe3d5c5110a89f2244959b5714a", "fields": {"departement": "78", "stop_lat": 48.78476765893701, "code_postal": "78640", "stop_lon": 2.219250075071638, "coord": [48.78476765893701, 2.219250075071638], "stop_id": 5121432, "stop_desc": "GARE ROUTIERE - 78640", "stop_name": "VELIZY 2"}, "geometry": {"type": "Point", "coordinates": [2.219250075071638, 48.78476765893701]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b1c8218a7038292a54dd311802291ec0321c0db9", "fields": {"departement": "78", "stop_lat": 48.783495989249346, "code_postal": "78640", "stop_lon": 2.2149278633295335, "coord": [48.783495989249346, 2.2149278633295335], "stop_id": 5121434, "stop_desc": "12-14 AVENUE MORANE SAULNIER - 78640", "stop_name": "DEWOITINE"}, "geometry": {"type": "Point", "coordinates": [2.2149278633295335, 48.783495989249346]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f6b557d14e0939debc77ce9d9632bbe0ea0b0768", "fields": {"departement": "78", "stop_lat": 48.78015179290886, "code_postal": "78640", "stop_lon": 2.197976447318903, "coord": [48.78015179290886, 2.197976447318903], "stop_id": 5121437, "stop_desc": "AVENUE DE L'EUROPE - 78640", "stop_name": "LOUVOIS"}, "geometry": {"type": "Point", "coordinates": [2.197976447318903, 48.78015179290886]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a57b464b769cbe3f51afe9d1285f3a5aa85e501a", "fields": {"departement": "78", "stop_lat": 48.78499972821854, "code_postal": "78640", "stop_lon": 2.1791391815478742, "coord": [48.78499972821854, 2.1791391815478742], "stop_id": 5121443, "stop_desc": "AV ROBERT WAGNER - 78640", "stop_name": "ROBERT WAGNER"}, "geometry": {"type": "Point", "coordinates": [2.1791391815478742, 48.78499972821854]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4f4f22f7a17eab55ce919a1dbb001d2e93059940", "fields": {"departement": "92", "stop_lat": 48.79537992622254, "code_postal": "92032", "stop_lon": 2.2754515062396203, "coord": [48.79537992622254, 2.2754515062396203], "stop_id": 5121450, "stop_desc": "3-5 AVENUE DE LA DIVISION LECLERC - 92032", "stop_name": "CENTRE BUS"}, "geometry": {"type": "Point", "coordinates": [2.2754515062396203, 48.79537992622254]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bb6a0635c0e6c1ab8a3256df9ebbbc02e89c49a4", "fields": {"departement": "92", "stop_lat": 48.81550629521654, "code_postal": "92049", "stop_lon": 2.3049461590607536, "coord": [48.81550629521654, 2.3049461590607536], "stop_id": 5121452, "stop_desc": "135-137 AVENUE PIERRE BROSSOLETTE - 92049", "stop_name": "AUGUSTIN DUMONT"}, "geometry": {"type": "Point", "coordinates": [2.3049461590607536, 48.81550629521654]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4114940aa2b3c05657c93bfa03e72a675cb287f4", "fields": {"departement": "92", "stop_lat": 48.81918355343179, "code_postal": "92049", "stop_lon": 2.310074946801479, "coord": [48.81918355343179, 2.310074946801479], "stop_id": 5121454, "stop_desc": "85 AVENUE PIERRE BROSSOLETTE - 92049", "stop_name": "PIERRE BROSSOLETTE - GABRIEL PERI"}, "geometry": {"type": "Point", "coordinates": [2.310074946801479, 48.81918355343179]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b4d36cf272e33ab054f513f17953644df98d4b13", "fields": {"departement": "92", "stop_lat": 48.8972915994998, "code_postal": "92044", "stop_lon": 2.2800734920307866, "coord": [48.8972915994998, 2.2800734920307866], "stop_id": 5121461, "stop_desc": "RUE ANATOLE FRANCE - 92044", "stop_name": "PONT DE LEVALLOIS - BECON"}, "geometry": {"type": "Point", "coordinates": [2.2800734920307866, 48.8972915994998]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c2b579c96d2bbb2e8f7102766b67aeede13179f9", "fields": {"departement": "92", "stop_lat": 48.89935885935325, "code_postal": "92044", "stop_lon": 2.280534676571552, "coord": [48.89935885935325, 2.280534676571552], "stop_id": 5121463, "stop_desc": "QUAI MICHELET - 92044", "stop_name": "PICASSO"}, "geometry": {"type": "Point", "coordinates": [2.280534676571552, 48.89935885935325]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7fed722fc4cf55d4a07d55e37ad66d8f56177d8e", "fields": {"departement": "92", "stop_lat": 48.902579319187446, "code_postal": "92044", "stop_lon": 2.287415406944205, "coord": [48.902579319187446, 2.287415406944205], "stop_id": 5121467, "stop_desc": "QUAI MICHELET - 92044", "stop_name": "QUAI DE CLICHY"}, "geometry": {"type": "Point", "coordinates": [2.287415406944205, 48.902579319187446]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bd18574ef6125bad884c56e4c169c53537da276e", "fields": {"departement": "92", "stop_lat": 48.9127783467993, "code_postal": "92004", "stop_lon": 2.2844331930387765, "coord": [48.9127783467993, 2.2844331930387765], "stop_id": 5121472, "stop_desc": "66 AVENUE D'ARGENTEUIL - 92004", "stop_name": "COMETE"}, "geometry": {"type": "Point", "coordinates": [2.2844331930387765, 48.9127783467993]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0974a261a937ed9cd58b0d4245b3f6b45b912fbb", "fields": {"departement": "92", "stop_lat": 48.91559054370498, "code_postal": "92004", "stop_lon": 2.2827940520136947, "coord": [48.91559054370498, 2.2827940520136947], "stop_id": 5121474, "stop_desc": "112 AVENUE D'ARGENTEUIL - 92004", "stop_name": "RUE DES CHAMPS"}, "geometry": {"type": "Point", "coordinates": [2.2827940520136947, 48.91559054370498]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0bf36323a96aa0db7e7fd090c50a7bd05fc630b1", "fields": {"departement": "92", "stop_lat": 48.923329876851064, "code_postal": "92036", "stop_lon": 2.286304428319951, "coord": [48.923329876851064, 2.286304428319951], "stop_id": 5121480, "stop_desc": "BOULEVARD PIERRE DE COUBERTIN - 92036", "stop_name": "LES AGNETTES-METRO"}, "geometry": {"type": "Point", "coordinates": [2.286304428319951, 48.923329876851064]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8c873a1592cc4d3de78f043fda202b18c95384c1", "fields": {"departement": "92", "stop_lat": 48.93835357740893, "code_postal": "92036", "stop_lon": 2.281023984871198, "coord": [48.93835357740893, 2.281023984871198], "stop_id": 5121487, "stop_desc": "35 ROUTE PRINCIPALE DU PORT - 92036", "stop_name": "BASSIN N0 2"}, "geometry": {"type": "Point", "coordinates": [2.281023984871198, 48.93835357740893]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bd7f025de909bdaf4e46c94905542e0b1a93edbe", "fields": {"departement": "92", "stop_lat": 48.93964090031015, "code_postal": "92036", "stop_lon": 2.28592004573725, "coord": [48.93964090031015, 2.28592004573725], "stop_id": 5121490, "stop_desc": "ROUTE PRINCIPALE DU PORT - 92036", "stop_name": "MOLE CENTRAL"}, "geometry": {"type": "Point", "coordinates": [2.28592004573725, 48.93964090031015]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6fb8c90f5cf8d590870c6f551b4fad47502037c6", "fields": {"departement": "92", "stop_lat": 48.944838932927986, "code_postal": "92036", "stop_lon": 2.2952878495686044, "coord": [48.944838932927986, 2.2952878495686044], "stop_id": 5121493, "stop_desc": "ROUTE DU BASSIN NUMERO 6 - 92036", "stop_name": "BASSIN N0 5"}, "geometry": {"type": "Point", "coordinates": [2.2952878495686044, 48.944838932927986]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4854c8a54eea670db4bd497682f09db4d931ad0e", "fields": {"departement": "93", "stop_lat": 48.9552995000875, "code_postal": "93031", "stop_lon": 2.2952930146074264, "coord": [48.9552995000875, 2.2952930146074264], "stop_id": 5121506, "stop_desc": "RUE FELIX MERLIN - 93031", "stop_name": "EPINAY - ORGEMONT"}, "geometry": {"type": "Point", "coordinates": [2.2952930146074264, 48.9552995000875]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bfe2f69f9a1be31cfe0117b32763900b158c3645", "fields": {"departement": "93", "stop_lat": 48.9601696583724, "code_postal": "93031", "stop_lon": 2.293555851867299, "coord": [48.9601696583724, 2.293555851867299], "stop_id": 5121509, "stop_desc": "RUE DE MARSEILLE - 93031", "stop_name": "DUNKERQUE"}, "geometry": {"type": "Point", "coordinates": [2.293555851867299, 48.9601696583724]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f71bc6d9085f4f2252186dc32ba2063825666c81", "fields": {"departement": "93", "stop_lat": 48.961076104245834, "code_postal": "93031", "stop_lon": 2.2903751967109542, "coord": [48.961076104245834, 2.2903751967109542], "stop_id": 5121512, "stop_desc": "RUE DE LILLE - 93031", "stop_name": "GROS BUISSON"}, "geometry": {"type": "Point", "coordinates": [2.2903751967109542, 48.961076104245834]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "87a802155e59e21f5b2c0b7ffd8eb55a3747e61b", "fields": {"departement": "92", "stop_lat": 48.924973942801074, "code_postal": "92004", "stop_lon": 2.285048107368607, "coord": [48.924973942801074, 2.285048107368607], "stop_id": 5121517, "stop_desc": "CHEMIN DU FOSSE DE L'AUMONE - 92004", "stop_name": "ABBE GLATZ"}, "geometry": {"type": "Point", "coordinates": [2.285048107368607, 48.924973942801074]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "127949b92639044ecf8b8687f4d3f3614014ff22", "fields": {"departement": "75", "stop_lat": 48.83834852631959, "code_postal": "75116", "stop_lon": 2.2574689553932474, "coord": [48.83834852631959, 2.2574689553932474], "stop_id": 5121561, "stop_desc": "PLACE DE LA PORTE DE SAINT CLOUD - 75116", "stop_name": "PORTE DE SAINT-CLOUD-METRO"}, "geometry": {"type": "Point", "coordinates": [2.2574689553932474, 48.83834852631959]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f2eeea028113c2f4c13acfcbcd7448bdc6d4955e", "fields": {"departement": "92", "stop_lat": 48.83170336462878, "code_postal": "92012", "stop_lon": 2.2526463543012483, "coord": [48.83170336462878, 2.2526463543012483], "stop_id": 5121565, "stop_desc": "57 AVENUE PIERRE GRENIER - 92012", "stop_name": "RUE DU POINT DU JOUR"}, "geometry": {"type": "Point", "coordinates": [2.2526463543012483, 48.83170336462878]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ac88d94f6517a3cb91adabefcce57391073b3da4", "fields": {"departement": "92", "stop_lat": 48.822991904898494, "code_postal": "92040", "stop_lon": 2.2492985675114356, "coord": [48.822991904898494, 2.2492985675114356], "stop_id": 5121571, "stop_desc": "FACE 12-14 BOULEVARD DES ILES - 92040", "stop_name": "ILE SAINT-GERMAIN"}, "geometry": {"type": "Point", "coordinates": [2.2492985675114356, 48.822991904898494]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0a77a5a23ec6cd0dfaaf37f9ae81b9b568d25725", "fields": {"departement": "92", "stop_lat": 48.823001273630844, "code_postal": "92040", "stop_lon": 2.249815780704851, "coord": [48.823001273630844, 2.249815780704851], "stop_id": 5121572, "stop_desc": "FACE 16 BOULEVARD DES ILES - 92040", "stop_name": "ILE SAINT-GERMAIN"}, "geometry": {"type": "Point", "coordinates": [2.249815780704851, 48.823001273630844]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6a029ab0bd3898748991cae19b717f8e0c75da9d", "fields": {"departement": "92", "stop_lat": 48.80953185032887, "code_postal": "92048", "stop_lon": 2.2422453368591087, "coord": [48.80953185032887, 2.2422453368591087], "stop_id": 5121580, "stop_desc": "58 AVENUE JEAN JAURES - 92048", "stop_name": "SAINT-GERMAIN - JEAN-JAURES"}, "geometry": {"type": "Point", "coordinates": [2.2422453368591087, 48.80953185032887]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bb7370b022b097dc39a0cef4478864124fd44471", "fields": {"departement": "92", "stop_lat": 48.80838051961491, "code_postal": "92048", "stop_lon": 2.2411316321947625, "coord": [48.80838051961491, 2.2411316321947625], "stop_id": 5121581, "stop_desc": "72 AVENUE JEAN JAURES - 92048", "stop_name": "VAL FLEURY RER"}, "geometry": {"type": "Point", "coordinates": [2.2411316321947625, 48.80838051961491]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "101d070b584a84db5daec57f4cb4217dd70ab7c8", "fields": {"departement": "92", "stop_lat": 48.80783182434355, "code_postal": "92048", "stop_lon": 2.2405883554701855, "coord": [48.80783182434355, 2.2405883554701855], "stop_id": 5121582, "stop_desc": "AVENUE LOUVOIS - 92048", "stop_name": "VAL FLEURY RER"}, "geometry": {"type": "Point", "coordinates": [2.2405883554701855, 48.80783182434355]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e4ce10723d2537f3bf46915148bbbcab3b06b26a", "fields": {"departement": "92", "stop_lat": 48.78806619399687, "code_postal": "92048", "stop_lon": 2.2286416600121726, "coord": [48.78806619399687, 2.2286416600121726], "stop_id": 5121591, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 92048", "stop_name": "EGLISE DE MEUDON-LA-FORET"}, "geometry": {"type": "Point", "coordinates": [2.2286416600121726, 48.78806619399687]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0292dd38293a426e6c5f05ce29b30d18f508bd30", "fields": {"departement": "92", "stop_lat": 48.78499898712389, "code_postal": "92023", "stop_lon": 2.2362104166240977, "coord": [48.78499898712389, 2.2362104166240977], "stop_id": 5121599, "stop_desc": "RUE DE LA PORTE DE TRIVAUX - 92023", "stop_name": "GEORGES POMPIDOU"}, "geometry": {"type": "Point", "coordinates": [2.2362104166240977, 48.78499898712389]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f251c763797e8c45611f4ade30b1c540546051bf", "fields": {"departement": "92", "stop_lat": 48.80272419537944, "code_postal": "92048", "stop_lon": 2.237495701841666, "coord": [48.80272419537944, 2.237495701841666], "stop_id": 5121602, "stop_desc": "39 RUE D'ALEMBERT - 92048", "stop_name": "D'ALEMBERT - VERTUGADINS - LYCEE"}, "geometry": {"type": "Point", "coordinates": [2.237495701841666, 48.80272419537944]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "030353c5484bda56782c6d40573115bd64870d56", "fields": {"departement": "92", "stop_lat": 48.822991904898494, "code_postal": "92040", "stop_lon": 2.2492985675114356, "coord": [48.822991904898494, 2.2492985675114356], "stop_id": 5121619, "stop_desc": "FACE 12-14 BOULEVARD DES ILES - 92040", "stop_name": "ILE SAINT-GERMAIN"}, "geometry": {"type": "Point", "coordinates": [2.2492985675114356, 48.822991904898494]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "51e04d022b38b3fb1200e359a45273be0a1655f1", "fields": {"departement": "92", "stop_lat": 48.82168067250145, "code_postal": "92040", "stop_lon": 2.250621051266338, "coord": [48.82168067250145, 2.250621051266338], "stop_id": 5121622, "stop_desc": "PLACE DE LA RESISTANCE - 92040", "stop_name": "LES MOULINEAUX"}, "geometry": {"type": "Point", "coordinates": [2.250621051266338, 48.82168067250145]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "73508021eb397e8afe48db062f4edaa0a4ecba61", "fields": {"departement": "92", "stop_lat": 48.818995682418524, "code_postal": "92048", "stop_lon": 2.241914978175014, "coord": [48.818995682418524, 2.241914978175014], "stop_id": 5121626, "stop_desc": "2 BIS ROUTE DES GARDES - 92048", "stop_name": "GARDES - VAUGIRARD"}, "geometry": {"type": "Point", "coordinates": [2.241914978175014, 48.818995682418524]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a5b0c96b1aa62f1f6bc454a6bb83361cd4c82c76", "fields": {"departement": "92", "stop_lat": 48.81879641264312, "code_postal": "92048", "stop_lon": 2.229570900490973, "coord": [48.81879641264312, 2.229570900490973], "stop_id": 5121630, "stop_desc": "PLACE DE LA GARE - 92048", "stop_name": "GARE DE BELLEVUE"}, "geometry": {"type": "Point", "coordinates": [2.229570900490973, 48.81879641264312]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2c4e1ed444b911173a438512487526a745a532d2", "fields": {"departement": "92", "stop_lat": 48.8144420432121, "code_postal": "92048", "stop_lon": 2.2348738541742104, "coord": [48.8144420432121, 2.2348738541742104], "stop_id": 5121634, "stop_desc": "3 BOULEVARD DES NATIONS-UNIES - 92048", "stop_name": "STALINGRAD"}, "geometry": {"type": "Point", "coordinates": [2.2348738541742104, 48.8144420432121]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "edc05ff4c92465fe57dcda59373990a0832de0de", "fields": {"departement": "92", "stop_lat": 48.8075402745395, "code_postal": "92048", "stop_lon": 2.2358535787928604, "coord": [48.8075402745395, 2.2358535787928604], "stop_id": 5121637, "stop_desc": "36-38 RUE DE LA REPUBLIQUE - 92048", "stop_name": "EGLISE DE MEUDON"}, "geometry": {"type": "Point", "coordinates": [2.2358535787928604, 48.8075402745395]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7a4285887d886b87f91ebfbfac6c3f32a67d3e2c", "fields": {"departement": "92", "stop_lat": 48.80800792839804, "code_postal": "92048", "stop_lon": 2.2361928494598557, "coord": [48.80800792839804, 2.2361928494598557], "stop_id": 5121638, "stop_desc": "49-51 AVENUE DE LA REPUBLIQUE - 92048", "stop_name": "EGLISE DE MEUDON"}, "geometry": {"type": "Point", "coordinates": [2.2361928494598557, 48.80800792839804]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "58d12e038965c16abfb13ec84d48ed2cc1ae4f00", "fields": {"departement": "92", "stop_lat": 48.80331430157631, "code_postal": "92048", "stop_lon": 2.2338753366470674, "coord": [48.80331430157631, 2.2338753366470674], "stop_id": 5121639, "stop_desc": "8 AVENUE DE TRIVAUX - 92048", "stop_name": "TRIVAUX - VERTUGADINS - LYCEE"}, "geometry": {"type": "Point", "coordinates": [2.2338753366470674, 48.80331430157631]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "34525e3f257fd03a14df81ef1a8a7cfe334943e8", "fields": {"departement": "92", "stop_lat": 48.80365618046732, "code_postal": "92048", "stop_lon": 2.2342692363964143, "coord": [48.80365618046732, 2.2342692363964143], "stop_id": 5121640, "stop_desc": "FACE 6 AV DE TRIVAUX - 92048", "stop_name": "TRIVAUX - VERTUGADINS - LYCEE"}, "geometry": {"type": "Point", "coordinates": [2.2342692363964143, 48.80365618046732]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0152d4d3fc5d51c6ffa01f36bd09a1a47a379d15", "fields": {"departement": "92", "stop_lat": 48.79875659480729, "code_postal": "92048", "stop_lon": 2.2328776451445167, "coord": [48.79875659480729, 2.2328776451445167], "stop_id": 5121641, "stop_desc": "10 AVENUE DE TRIVAUX - 92048", "stop_name": "CIMETIERE DE TRIVAUX"}, "geometry": {"type": "Point", "coordinates": [2.2328776451445167, 48.79875659480729]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c59afa0b6486ab15ccb162219cf1a35b37a04327", "fields": {"departement": "92", "stop_lat": 48.7899467198817, "code_postal": "92048", "stop_lon": 2.230909366786044, "coord": [48.7899467198817, 2.230909366786044], "stop_id": 5121645, "stop_desc": "4 AVENUE MEDERIC - 92048", "stop_name": "SQUARE MEDERIC"}, "geometry": {"type": "Point", "coordinates": [2.230909366786044, 48.7899467198817]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "95559d642a1b705b24bd692d6850bbf4f1f58ed4", "fields": {"departement": "92", "stop_lat": 48.79043642313257, "code_postal": "92048", "stop_lon": 2.225848137014192, "coord": [48.79043642313257, 2.225848137014192], "stop_id": 5121647, "stop_desc": "AVENUE HENRI DALSEME - 92048", "stop_name": "ACACIAS"}, "geometry": {"type": "Point", "coordinates": [2.225848137014192, 48.79043642313257]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4ad00bf84144adee7d100d7bfa6bc46ad9859e7e", "fields": {"departement": "92", "stop_lat": 48.789813861465184, "code_postal": "92048", "stop_lon": 2.2233193891349172, "coord": [48.789813861465184, 2.2233193891349172], "stop_id": 5121649, "stop_desc": "4 AVENUE DU MARECHAL LECLERC - 92048", "stop_name": "CENTRE COMMERCIAL DU MOULIN"}, "geometry": {"type": "Point", "coordinates": [2.2233193891349172, 48.789813861465184]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c6cff8e8784848d1228254821ded69c676ef1591", "fields": {"departement": "92", "stop_lat": 48.79440459411734, "code_postal": "92048", "stop_lon": 2.221159916357646, "coord": [48.79440459411734, 2.221159916357646], "stop_id": 5121651, "stop_desc": "3 R HENRI ETLIN - 92048", "stop_name": "LYCEE DE VILLEBON"}, "geometry": {"type": "Point", "coordinates": [2.221159916357646, 48.79440459411734]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5c448c263477ee0f1f9838527ee35ce09f214a05", "fields": {"departement": "92", "stop_lat": 48.79440459411734, "code_postal": "92048", "stop_lon": 2.221159916357646, "coord": [48.79440459411734, 2.221159916357646], "stop_id": 5121652, "stop_desc": "3 R HENRI ETLIN - 92048", "stop_name": "LYCEE DE VILLEBON"}, "geometry": {"type": "Point", "coordinates": [2.221159916357646, 48.79440459411734]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eafacd1dc582f07a5c207e8fc93f4d78599dc3fb", "fields": {"departement": "92", "stop_lat": 48.786921728022854, "code_postal": "92048", "stop_lon": 2.225406815269084, "coord": [48.786921728022854, 2.225406815269084], "stop_id": 5121655, "stop_desc": "43 AVENUE DU GENERAL DE GAULLE - 92048", "stop_name": "ROSERAIE"}, "geometry": {"type": "Point", "coordinates": [2.225406815269084, 48.786921728022854]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "31ca65e951ef62c1bf6173ec81a9d27d2d8d85f2", "fields": {"departement": "92", "stop_lat": 48.787585335210935, "code_postal": "92048", "stop_lon": 2.233675410556486, "coord": [48.787585335210935, 2.233675410556486], "stop_id": 5121662, "stop_desc": "FACE 5-7 AVENUE DU MARECHAL DE LATTRE DE TASSIGNY - 92048", "stop_name": "ESPACE CULTUREL - ROBERT DOISNEAU"}, "geometry": {"type": "Point", "coordinates": [2.233675410556486, 48.787585335210935]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6f3782b2a645ceb5c7717ef5d58d9a09b97ae348", "fields": {"departement": "92", "stop_lat": 48.78481065530936, "code_postal": "92023", "stop_lon": 2.2367004292831227, "coord": [48.78481065530936, 2.2367004292831227], "stop_id": 5121663, "stop_desc": "PLACE GEORGES POMPIDOU - 92023", "stop_name": "GEORGES POMPIDOU"}, "geometry": {"type": "Point", "coordinates": [2.2367004292831227, 48.78481065530936]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f1d429f7c47b3e3cc4327ebf57f2f1871109c4d0", "fields": {"departement": "92", "stop_lat": 48.829775740048866, "code_postal": "92012", "stop_lon": 2.235687612732616, "coord": [48.829775740048866, 2.235687612732616], "stop_id": 5121671, "stop_desc": "1118 RUE YVES KERMEN - 92012", "stop_name": "GENERAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.235687612732616, 48.829775740048866]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c3fd7d6a4e5de27e22e740ec85aaed6cbdc120b3", "fields": {"departement": "92", "stop_lat": 48.82605636775514, "code_postal": "92012", "stop_lon": 2.237478076359055, "coord": [48.82605636775514, 2.237478076359055], "stop_id": 5121674, "stop_desc": "FACE 50 AV PIERRE LEFAUCHEUX - 92012", "stop_name": "PARC DE BILLANCOURT"}, "geometry": {"type": "Point", "coordinates": [2.237478076359055, 48.82605636775514]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6cd699cb9b6d9ea23d8a529ef23df420928edb15", "fields": {"departement": "92", "stop_lat": 48.823001273630844, "code_postal": "92040", "stop_lon": 2.249815780704851, "coord": [48.823001273630844, 2.249815780704851], "stop_id": 5121682, "stop_desc": "FACE 16 BOULEVARD DES ILES - 92040", "stop_name": "ILE SAINT-GERMAIN"}, "geometry": {"type": "Point", "coordinates": [2.249815780704851, 48.823001273630844]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7c075a4c13e7811328665bd12f51433286747826", "fields": {"departement": "92", "stop_lat": 48.818995682418524, "code_postal": "92048", "stop_lon": 2.241914978175014, "coord": [48.818995682418524, 2.241914978175014], "stop_id": 5121688, "stop_desc": "2 BIS ROUTE DES GARDES - 92048", "stop_name": "GARDES - VAUGIRARD"}, "geometry": {"type": "Point", "coordinates": [2.241914978175014, 48.818995682418524]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e07dd65b4793657ef118fe4885949fc08eca9187", "fields": {"departement": "92", "stop_lat": 48.81896462500979, "code_postal": "92048", "stop_lon": 2.2369336892810137, "coord": [48.81896462500979, 2.2369336892810137], "stop_id": 5121689, "stop_desc": "18 ROUTE DES GARDES - 92048", "stop_name": "MEUDON SUR SEINE-TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.2369336892810137, 48.81896462500979]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9364be3c97359345d1b1bce823d6782876f97349", "fields": {"departement": "92", "stop_lat": 48.8144420432121, "code_postal": "92048", "stop_lon": 2.2348738541742104, "coord": [48.8144420432121, 2.2348738541742104], "stop_id": 5121696, "stop_desc": "3 BOULEVARD DES NATIONS-UNIES - 92048", "stop_name": "STALINGRAD"}, "geometry": {"type": "Point", "coordinates": [2.2348738541742104, 48.8144420432121]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bf511745be101cf14f50ed6c8bbc4487aaaaf5dd", "fields": {"departement": "92", "stop_lat": 48.81108232012079, "code_postal": "92048", "stop_lon": 2.236867272802698, "coord": [48.81108232012079, 2.236867272802698], "stop_id": 5121698, "stop_desc": "PLACE RABELAIS - 92048", "stop_name": "RABELAIS"}, "geometry": {"type": "Point", "coordinates": [2.236867272802698, 48.81108232012079]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "479b33778bcd4867d4d4fe28f1e959ccd21d4fcc", "fields": {"departement": "92", "stop_lat": 48.8075402745395, "code_postal": "92048", "stop_lon": 2.2358535787928604, "coord": [48.8075402745395, 2.2358535787928604], "stop_id": 5121699, "stop_desc": "36-38 RUE DE LA REPUBLIQUE - 92048", "stop_name": "EGLISE DE MEUDON"}, "geometry": {"type": "Point", "coordinates": [2.2358535787928604, 48.8075402745395]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b59f3242d42ddcd7d93ba0e4aa4878c04551f75a", "fields": {"departement": "92", "stop_lat": 48.78934496127052, "code_postal": "92007", "stop_lon": 2.3145657718921147, "coord": [48.78934496127052, 2.3145657718921147], "stop_id": 5121796, "stop_desc": "RUE DU PORT GALAND - 92007", "stop_name": "PORT GALAND"}, "geometry": {"type": "Point", "coordinates": [2.3145657718921147, 48.78934496127052]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9e2e6f640c22449db4f7ec76ea688b1ad63a6129", "fields": {"departement": "92", "stop_lat": 48.79581676213854, "code_postal": "92007", "stop_lon": 2.317460630049663, "coord": [48.79581676213854, 2.317460630049663], "stop_id": 5121798, "stop_desc": "80 AVENUE ALBERT PETIT - 92007", "stop_name": "ALBERT PETIT"}, "geometry": {"type": "Point", "coordinates": [2.317460630049663, 48.79581676213854]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ba541929f11c1dd99e316d80873074425b7a6ce9", "fields": {"departement": "92", "stop_lat": 48.79343544203433, "code_postal": "92007", "stop_lon": 2.320508729195757, "coord": [48.79343544203433, 2.320508729195757], "stop_id": 5121800, "stop_desc": "206 AVENUE ARISTIDE BRIAND - 92007", "stop_name": "PONT ROYAL RER"}, "geometry": {"type": "Point", "coordinates": [2.320508729195757, 48.79343544203433]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b3225dd543b825f83abbc175c358bd95b9683ecd", "fields": {"departement": "92", "stop_lat": 48.79343544203433, "code_postal": "92007", "stop_lon": 2.320508729195757, "coord": [48.79343544203433, 2.320508729195757], "stop_id": 5121801, "stop_desc": "206 AVENUE ARISTIDE BRIAND - 92007", "stop_name": "PONT ROYAL RER"}, "geometry": {"type": "Point", "coordinates": [2.320508729195757, 48.79343544203433]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c7e72be220a2385bfe44322bf7450280500c21dc", "fields": {"departement": "92", "stop_lat": 48.78957043889509, "code_postal": "92007", "stop_lon": 2.3191089155752103, "coord": [48.78957043889509, 2.3191089155752103], "stop_id": 5121802, "stop_desc": "278 AVENUE ARISTIDE BRIAND - 92007", "stop_name": "CITE JARDINS"}, "geometry": {"type": "Point", "coordinates": [2.3191089155752103, 48.78957043889509]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3f8cfcf88e58809ddb1c73ee436856078a94272d", "fields": {"departement": "92", "stop_lat": 48.810878142529376, "code_postal": "92049", "stop_lon": 2.306990255108043, "coord": [48.810878142529376, 2.306990255108043], "stop_id": 5121806, "stop_desc": "178 AVENUE MARX DORMOY - 92049", "stop_name": "MAURICE ARNOUX"}, "geometry": {"type": "Point", "coordinates": [2.306990255108043, 48.810878142529376]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "029c8754c9197e8297baa93a371e1ec7796300b6", "fields": {"departement": "92", "stop_lat": 48.81142499690889, "code_postal": "92049", "stop_lon": 2.301914059517671, "coord": [48.81142499690889, 2.301914059517671], "stop_id": 5121807, "stop_desc": "242 AV MARX DORMOY - 92049", "stop_name": "CHATILLON-MONTROUGE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.301914059517671, 48.81142499690889]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d21bbd6069e6ad1d3ba7638e957268cac9de15b0", "fields": {"departement": "92", "stop_lat": 48.81731875499191, "code_postal": "92072", "stop_lon": 2.216386062962381, "coord": [48.81731875499191, 2.216386062962381], "stop_id": 5121813, "stop_desc": "FACE 59 RUE DES BRUYERES - 92072", "stop_name": "LES CAPUCINS"}, "geometry": {"type": "Point", "coordinates": [2.216386062962381, 48.81731875499191]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f9d4b0dd4a31fa3723c618f32f72e04177321085", "fields": {"departement": "92", "stop_lat": 48.81168792174833, "code_postal": "92072", "stop_lon": 2.212030898564146, "coord": [48.81168792174833, 2.212030898564146], "stop_id": 5121815, "stop_desc": "28-30 ROUTE DU PAVE DES GARDES - 92072", "stop_name": "DOCTEUR ROUX"}, "geometry": {"type": "Point", "coordinates": [2.212030898564146, 48.81168792174833]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fd5fbca8583c0e753bc9de15565f0bf3f4e5eb98", "fields": {"departement": "92", "stop_lat": 48.774110119486224, "code_postal": "92060", "stop_lon": 2.2536920464487924, "coord": [48.774110119486224, 2.2536920464487924], "stop_id": 5121824, "stop_desc": "FACE 18 AVENUE LEON BLUM - 92060", "stop_name": "LEON BLUM"}, "geometry": {"type": "Point", "coordinates": [2.2536920464487924, 48.774110119486224]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7762375e9d136161d10e99396c1376048b9a716a", "fields": {"departement": "92", "stop_lat": 48.77689031129291, "code_postal": "92060", "stop_lon": 2.2579169280257254, "coord": [48.77689031129291, 2.2579169280257254], "stop_id": 5121825, "stop_desc": "AVENUE CHARLES DE GAULLE - 92060", "stop_name": "CITE JARDINS - PLACE DES ALLIES"}, "geometry": {"type": "Point", "coordinates": [2.2579169280257254, 48.77689031129291]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "299bea5aeaea0612ca19c763ece12e6c6fcad75c", "fields": {"departement": "92", "stop_lat": 48.78191322606919, "code_postal": "92060", "stop_lon": 2.2702993313233732, "coord": [48.78191322606919, 2.2702993313233732], "stop_id": 5121829, "stop_desc": "34 AVENUE DE LA REPUBLIQUE - 92060", "stop_name": "CITE BASSE"}, "geometry": {"type": "Point", "coordinates": [2.2702993313233732, 48.78191322606919]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d90f71aa7e8ed533ca53e1c2d2ecb3f578c8843a", "fields": {"departement": "92", "stop_lat": 48.780045513014734, "code_postal": "92060", "stop_lon": 2.273552146199807, "coord": [48.780045513014734, 2.273552146199807], "stop_id": 5121834, "stop_desc": "AVENUE DE LA REPUBLIQUE - 92060", "stop_name": "ROBINSON"}, "geometry": {"type": "Point", "coordinates": [2.273552146199807, 48.780045513014734]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d6ab72192b7d230fb2197c6f8157a7726f6fc0ad", "fields": {"departement": "92", "stop_lat": 48.78290831132887, "code_postal": "92060", "stop_lon": 2.2658641938640955, "coord": [48.78290831132887, 2.2658641938640955], "stop_id": 5121836, "stop_desc": "AVENUE CHARLES DE GAULLE - 92060", "stop_name": "L'ESCALIER"}, "geometry": {"type": "Point", "coordinates": [2.2658641938640955, 48.78290831132887]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ca8fdd676693ec78560cd999b58167eeb56d0d50", "fields": {"departement": "92", "stop_lat": 48.77187015845551, "code_postal": "92019", "stop_lon": 2.250976070296303, "coord": [48.77187015845551, 2.250976070296303], "stop_id": 5121841, "stop_desc": "VOIE DU LOUP PENDU - 92019", "stop_name": "SEVERINE"}, "geometry": {"type": "Point", "coordinates": [2.250976070296303, 48.77187015845551]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b4b1971de254831460d40c191d93b0564f3d5aca", "fields": {"departement": "92", "stop_lat": 48.77542050061621, "code_postal": "92060", "stop_lon": 2.239451969018562, "coord": [48.77542050061621, 2.239451969018562], "stop_id": 5121845, "stop_desc": "AVENUE DE LA DIVISION LECLERC - 92060", "stop_name": "LA BOURSIDIERE"}, "geometry": {"type": "Point", "coordinates": [2.239451969018562, 48.77542050061621]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e68f8777c304f285240f9b369641a14e63f740dc", "fields": {"departement": "91", "stop_lat": 48.73683356451826, "code_postal": "91377", "stop_lon": 2.263250482235262, "coord": [48.73683356451826, 2.263250482235262], "stop_id": 5121942, "stop_desc": "RUE THOMAS MAZARIK - 91377", "stop_name": "EMILE ZOLA"}, "geometry": {"type": "Point", "coordinates": [2.263250482235262, 48.73683356451826]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "be2bec488da127dbb15ad0f7daa23e5e945fd09c", "fields": {"departement": "91", "stop_lat": 48.73832815933296, "code_postal": "91645", "stop_lon": 2.2674473924853236, "coord": [48.73832815933296, 2.2674473924853236], "stop_id": 5121944, "stop_desc": "69 AV GABRIEL PERI - 91645", "stop_name": "VALLEE DE LA BIEVRE"}, "geometry": {"type": "Point", "coordinates": [2.2674473924853236, 48.73832815933296]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4ac19e3eb1a0db267b8502aef0b7b0f3aa800f9f", "fields": {"departement": "91", "stop_lat": 48.75177710235545, "code_postal": "91645", "stop_lon": 2.271928491643091, "coord": [48.75177710235545, 2.271928491643091], "stop_id": 5121955, "stop_desc": "CARREFOUR DE L'EUROPE - 91645", "stop_name": "LES ANTES"}, "geometry": {"type": "Point", "coordinates": [2.271928491643091, 48.75177710235545]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e2084f66e4ff087ead66cbabbeca35e0e18757a4", "fields": {"departement": "92", "stop_lat": 48.77245154539877, "code_postal": "92019", "stop_lon": 2.2752612128272904, "coord": [48.77245154539877, 2.2752612128272904], "stop_id": 5121968, "stop_desc": "72 AVENUE ROGER SALENGRO - 92019", "stop_name": "MARC SANGNIER"}, "geometry": {"type": "Point", "coordinates": [2.2752612128272904, 48.77245154539877]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e051e39386bb05cbbbe9b95b44581af3a7379004", "fields": {"departement": "92", "stop_lat": 48.7909013635518, "code_postal": "92032", "stop_lon": 2.2893181633221373, "coord": [48.7909013635518, 2.2893181633221373], "stop_id": 5121978, "stop_desc": "AVENUE JEANNE ET MAURICE DOLIVET - 92032", "stop_name": "THEATRE DES SOURCES"}, "geometry": {"type": "Point", "coordinates": [2.2893181633221373, 48.7909013635518]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f35c334035bbdacd9565a4f1188f92590898e17d", "fields": {"departement": "92", "stop_lat": 48.79473999766578, "code_postal": "92032", "stop_lon": 2.2913552016110916, "coord": [48.79473999766578, 2.2913552016110916], "stop_id": 5121981, "stop_desc": "FACE 22 AVENUE JEANNE ET MAURICE DOLIVET - 92032", "stop_name": "CIMETIERE DE FONTENAY-AUX-ROSES"}, "geometry": {"type": "Point", "coordinates": [2.2913552016110916, 48.79473999766578]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "99aa339f8a40c0c573392aa5662ef49a0eaf0d4d", "fields": {"departement": "75", "stop_lat": 48.841852199848134, "code_postal": "75115", "stop_lon": 2.3200710001404334, "coord": [48.841852199848134, 2.3200710001404334], "stop_id": 5122006, "stop_desc": "PLACE RAOUL DAUTRY - 75115", "stop_name": "GARE MONTPARNASSE"}, "geometry": {"type": "Point", "coordinates": [2.3200710001404334, 48.841852199848134]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "412df11a94d8d24762e64b2cd1d609188ee2a133", "fields": {"departement": "92", "stop_lat": 48.84770926632931, "code_postal": "92033", "stop_lon": 2.1950306550355307, "coord": [48.84770926632931, 2.1950306550355307], "stop_id": 4024881, "stop_desc": "FACE 19 RUE DES QUATRE VENTS - 92033", "stop_name": "QUATRE VENTS"}, "geometry": {"type": "Point", "coordinates": [2.1950306550355307, 48.84770926632931]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5eca0ab630f79b52a6beebd44772a4376c0abd4b", "fields": {"departement": "92", "stop_lat": 48.84786221607836, "code_postal": "92033", "stop_lon": 2.1951664139734444, "coord": [48.84786221607836, 2.1951664139734444], "stop_id": 4024882, "stop_desc": "17/19 RUE DES QUATRE VENTS - 92033", "stop_name": "QUATRE VENTS"}, "geometry": {"type": "Point", "coordinates": [2.1951664139734444, 48.84786221607836]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2f0e1b36ccc144b303f90b8969dca5f7de15f46f", "fields": {"departement": "92", "stop_lat": 48.84520060291156, "code_postal": "92033", "stop_lon": 2.1867855513448236, "coord": [48.84520060291156, 2.1867855513448236], "stop_id": 4024885, "stop_desc": "13 RUE DE SURESNES - 92033", "stop_name": "PISCINE"}, "geometry": {"type": "Point", "coordinates": [2.1867855513448236, 48.84520060291156]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "10699f54606b4aa221e89445888107bc8d3cb307", "fields": {"departement": "92", "stop_lat": 48.838612007193525, "code_postal": "92033", "stop_lon": 2.1862191968374214, "coord": [48.838612007193525, 2.1862191968374214], "stop_id": 4024891, "stop_desc": "4 BOULEVARD RAYMOND POINCARE - 92033", "stop_name": "GARE DE GARCHES - MARNES LA COQUETTE"}, "geometry": {"type": "Point", "coordinates": [2.1862191968374214, 48.838612007193525]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "acdbbeeb8dfb160fbe0c3f5d28414e3194507492", "fields": {"departement": "92", "stop_lat": 48.838253113791566, "code_postal": "92033", "stop_lon": 2.1797529692410595, "coord": [48.838253113791566, 2.1797529692410595], "stop_id": 4024892, "stop_desc": "74 BOULEVARD RAYMOND POINCARE - 92033", "stop_name": "PASTEUR"}, "geometry": {"type": "Point", "coordinates": [2.1797529692410595, 48.838253113791566]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0861236d94975429194c0460f347bc16246f3471", "fields": {"departement": "92", "stop_lat": 48.838547281937004, "code_postal": "92033", "stop_lon": 2.171351380628767, "coord": [48.838547281937004, 2.171351380628767], "stop_id": 4024894, "stop_desc": "104 BOULEVARD RAYMOND POINCARE - 92033", "stop_name": "HOPITAL DE GARCHES"}, "geometry": {"type": "Point", "coordinates": [2.171351380628767, 48.838547281937004]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b02f90ef5883b5df824483a10515245bcb6faafd", "fields": {"departement": "92", "stop_lat": 48.84880894968146, "code_postal": "92064", "stop_lon": 2.214038471384302, "coord": [48.84880894968146, 2.214038471384302], "stop_id": 4024899, "stop_desc": "114 BOULEVARD DE LA REPUBLIQUE - 92064", "stop_name": "LYCEE DE SAINT-CLOUD"}, "geometry": {"type": "Point", "coordinates": [2.214038471384302, 48.84880894968146]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0ec0f40d4050d0045df6b58e14cd57aadfecdf9e", "fields": {"departement": "92", "stop_lat": 48.862450819553345, "code_postal": "92073", "stop_lon": 2.212998056196493, "coord": [48.862450819553345, 2.212998056196493], "stop_id": 4024902, "stop_desc": "8-10 RUE DE LA POTERIE - 92073", "stop_name": "CROIX DU ROY"}, "geometry": {"type": "Point", "coordinates": [2.212998056196493, 48.862450819553345]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "643d0b788325c1b33f545b2cf967f3d19a388cbf", "fields": {"departement": "92", "stop_lat": 48.88243089977522, "code_postal": "92073", "stop_lon": 2.2232384756225154, "coord": [48.88243089977522, 2.2232384756225154], "stop_id": 4024904, "stop_desc": "FACE 34 ROUTE DES FUSILLES DE LA RESISTANCE - 92073", "stop_name": "FELIX FAURE"}, "geometry": {"type": "Point", "coordinates": [2.2232384756225154, 48.88243089977522]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3a7a18ee4d4aeb8ccd3b7b0d96abfb123caa2427", "fields": {"departement": "92", "stop_lat": 48.91382472933734, "code_postal": "92050", "stop_lon": 2.215915477504343, "coord": [48.91382472933734, 2.215915477504343], "stop_id": 4024911, "stop_desc": "RUE DES HAUTES PATURES - 92050", "stop_name": "RUE DES HAUTES PATURES N0 11"}, "geometry": {"type": "Point", "coordinates": [2.215915477504343, 48.91382472933734]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f1016a7bd4ee08bb64da79ab4926182916914648", "fields": {"departement": "92", "stop_lat": 48.909502279380625, "code_postal": "92050", "stop_lon": 2.2162255493330205, "coord": [48.909502279380625, 2.2162255493330205], "stop_id": 4024916, "stop_desc": "FACE 1 RUE DES SAULES - 92050", "stop_name": "LES SAULES"}, "geometry": {"type": "Point", "coordinates": [2.2162255493330205, 48.909502279380625]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "adc399090411e5f67f2961634ee39401a409934d", "fields": {"departement": "92", "stop_lat": 48.901251906231444, "code_postal": "92050", "stop_lon": 2.2159994460417605, "coord": [48.901251906231444, 2.2159994460417605], "stop_id": 4024925, "stop_desc": "BOULEVARD DES PROVINCES FRANCAISES - 92050", "stop_name": "NANTERRE - UNIVERSITE RER"}, "geometry": {"type": "Point", "coordinates": [2.2159994460417605, 48.901251906231444]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "65d008efff5e987dc46dce6cc14d5a179ba554c8", "fields": {"departement": "92", "stop_lat": 48.89677787317958, "code_postal": "92050", "stop_lon": 2.200811708271495, "coord": [48.89677787317958, 2.200811708271495], "stop_id": 4024931, "stop_desc": "FACE 48 BOULEVARD BLAISE PASCAL - 92050", "stop_name": "PAUL BERT"}, "geometry": {"type": "Point", "coordinates": [2.200811708271495, 48.89677787317958]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a267ba8add7c1ece4cdfb9bbbd340853f4b7b667", "fields": {"departement": "92", "stop_lat": 48.894775535685355, "code_postal": "92050", "stop_lon": 2.194669780228511, "coord": [48.894775535685355, 2.194669780228511], "stop_id": 4024933, "stop_desc": "FACE 68 BOULEVARD DU COUCHANT - 92050", "stop_name": "NANTERRE-VILLE RER"}, "geometry": {"type": "Point", "coordinates": [2.194669780228511, 48.894775535685355]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f01e08629e4530ce746c98d61e3f432c81458748", "fields": {"departement": "92", "stop_lat": 48.88763585185931, "code_postal": "92063", "stop_lon": 2.170894440388964, "coord": [48.88763585185931, 2.170894440388964], "stop_id": 4024970, "stop_desc": "3 R DES 2 GARES - 92063", "stop_name": "RUEIL-MALMAISON RER"}, "geometry": {"type": "Point", "coordinates": [2.170894440388964, 48.88763585185931]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5d14995d3207f8e68a579adbf166c88c7501c2c7", "fields": {"departement": "92", "stop_lat": 48.89568621930803, "code_postal": "92050", "stop_lon": 2.1897330713241145, "coord": [48.89568621930803, 2.1897330713241145], "stop_id": 4024977, "stop_desc": "AVENUE JULES QUENTIN - 92050", "stop_name": "ERNEST RENAN"}, "geometry": {"type": "Point", "coordinates": [2.1897330713241145, 48.89568621930803]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c29454b6bd148f7843299b4c2e7b6fb6d2aa8836", "fields": {"departement": "92", "stop_lat": 48.89430751833291, "code_postal": "92050", "stop_lon": 2.194098606496554, "coord": [48.89430751833291, 2.194098606496554], "stop_id": 4024978, "stop_desc": "31 RUE DE STALINGRAD - 92050", "stop_name": "JULES QUENTIN"}, "geometry": {"type": "Point", "coordinates": [2.194098606496554, 48.89430751833291]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2598d33104dba4a5684158ffdcba3bec22397f05", "fields": {"departement": "92", "stop_lat": 48.84229108491409, "code_postal": "92064", "stop_lon": 2.2210799930578884, "coord": [48.84229108491409, 2.2210799930578884], "stop_id": 4024992, "stop_desc": "5 RUE DAILLY - 92064", "stop_name": "PARC DE SAINT-CLOUD"}, "geometry": {"type": "Point", "coordinates": [2.2210799930578884, 48.84229108491409]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "682b7bf3defbb28f8af79dbd8f92f13e21f09cfd", "fields": {"departement": "92", "stop_lat": 48.84167521189591, "code_postal": "92064", "stop_lon": 2.199772019377479, "coord": [48.84167521189591, 2.199772019377479], "stop_id": 4025003, "stop_desc": "38 R PASTEUR - 92064", "stop_name": "PORTE JAUNE - PASTEUR"}, "geometry": {"type": "Point", "coordinates": [2.199772019377479, 48.84167521189591]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7f193c13185210a8f0fc25c84c9584eb095a325c", "fields": {"departement": "92", "stop_lat": 48.843283285064935, "code_postal": "92064", "stop_lon": 2.199168626363805, "coord": [48.843283285064935, 2.199168626363805], "stop_id": 4025005, "stop_desc": "26 R DE LA PORTE JAUNE - 92064", "stop_name": "GRANDE RUE"}, "geometry": {"type": "Point", "coordinates": [2.199168626363805, 48.843283285064935]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f2eefccd474dabb37db5c36f7bb0994a50f2015e", "fields": {"departement": "92", "stop_lat": 48.84511577084727, "code_postal": "92064", "stop_lon": 2.1983331051668284, "coord": [48.84511577084727, 2.1983331051668284], "stop_id": 4025006, "stop_desc": "FACE 19 R DE LA PORTE JAUNE - 92064", "stop_name": "LES CROISSANTS"}, "geometry": {"type": "Point", "coordinates": [2.1983331051668284, 48.84511577084727]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "862fa3b2c8c92bf397cde4c4760a580c6bad17b2", "fields": {"departement": "92", "stop_lat": 48.86028779317763, "code_postal": "92063", "stop_lon": 2.1777382337042517, "coord": [48.86028779317763, 2.1777382337042517], "stop_id": 4025019, "stop_desc": "48 AV DE LA CHATAIGNERAIE - 92063", "stop_name": "PISCINE BUZENVAL"}, "geometry": {"type": "Point", "coordinates": [2.1777382337042517, 48.86028779317763]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a89652bb18bc2651a3c57b322bececa07895ac17", "fields": {"departement": "92", "stop_lat": 48.86301132450245, "code_postal": "92063", "stop_lon": 2.171409334669068, "coord": [48.86301132450245, 2.171409334669068], "stop_id": 4025020, "stop_desc": "FACE 100 R DU GENERAL DE MIRIBEL - 92063", "stop_name": "SAINT CUCUFA"}, "geometry": {"type": "Point", "coordinates": [2.171409334669068, 48.86301132450245]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0a8e33049f78b182bfd2f1df66539f51d1009b3b", "fields": {"departement": "92", "stop_lat": 48.867312111855334, "code_postal": "92063", "stop_lon": 2.1816400320634854, "coord": [48.867312111855334, 2.1816400320634854], "stop_id": 4025028, "stop_desc": "FACE 66 R JEAN BOURGUIGNON - 92063", "stop_name": "LYCEE DE RUEIL"}, "geometry": {"type": "Point", "coordinates": [2.1816400320634854, 48.867312111855334]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "23168dcad55dfd8715858f2b7fc9a9f8b38df32d", "fields": {"departement": "92", "stop_lat": 48.86745598039963, "code_postal": "92063", "stop_lon": 2.1816940922209014, "coord": [48.86745598039963, 2.1816940922209014], "stop_id": 4025029, "stop_desc": "FACE 65 R JEAN BOURGUIGNON - 92063", "stop_name": "LYCEE DE RUEIL"}, "geometry": {"type": "Point", "coordinates": [2.1816940922209014, 48.86745598039963]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5e123da2dc81702b5d9e0f52c38f3ff59bf42bbf", "fields": {"departement": "92", "stop_lat": 48.874126741811956, "code_postal": "92063", "stop_lon": 2.183349919170164, "coord": [48.874126741811956, 2.183349919170164], "stop_id": 4025034, "stop_desc": "FACE 42 BOULEVARD DE SOLFERINO - 92063", "stop_name": "PLACE RICHELIEU"}, "geometry": {"type": "Point", "coordinates": [2.183349919170164, 48.874126741811956]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cc7dbb354924c4214e5c170829ce2d21d124a69b", "fields": {"departement": "92", "stop_lat": 48.87793600364932, "code_postal": "92063", "stop_lon": 2.182303054994718, "coord": [48.87793600364932, 2.182303054994718], "stop_id": 4025037, "stop_desc": "27 RUE MAUREPAS - 92063", "stop_name": "MAIRIE DE RUEIL"}, "geometry": {"type": "Point", "coordinates": [2.182303054994718, 48.87793600364932]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d0aa0089766b20bd2db8faf9d990be1543aff966", "fields": {"departement": "92", "stop_lat": 48.87818488190759, "code_postal": "92063", "stop_lon": 2.1801903124346387, "coord": [48.87818488190759, 2.1801903124346387], "stop_id": 4025038, "stop_desc": "8 BOULEVARD DU MARECHAL FOCH - 92063", "stop_name": "MAIRIE DE RUEIL"}, "geometry": {"type": "Point", "coordinates": [2.1801903124346387, 48.87818488190759]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8d8c3bb94e5919845804cd8521a653c6603919d5", "fields": {"departement": "92", "stop_lat": 48.88694654261027, "code_postal": "92063", "stop_lon": 2.1728454717077876, "coord": [48.88694654261027, 2.1728454717077876], "stop_id": 4025044, "stop_desc": "GARE ROUTIERE QUAI N 3 - 92063", "stop_name": "RUEIL-MALMAISON RER"}, "geometry": {"type": "Point", "coordinates": [2.1728454717077876, 48.88694654261027]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1098a3bc23cccc1681aabc22b594dff52ac7a682", "fields": {"departement": "92", "stop_lat": 48.84086743332116, "code_postal": "92012", "stop_lon": 2.226720198437352, "coord": [48.84086743332116, 2.226720198437352], "stop_id": 4025058, "stop_desc": "5 BIS AV DU MARECHAL DE LATTRE DE TASSIGNY - 92012", "stop_name": "RHIN ET DANUBE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.226720198437352, 48.84086743332116]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "db929b9ea8caa1f99a56922430595a51e17ab860", "fields": {"departement": "92", "stop_lat": 48.873226156400705, "code_postal": "92063", "stop_lon": 2.181922020584739, "coord": [48.873226156400705, 2.181922020584739], "stop_id": 4025065, "stop_desc": "FACE 1 PLACE RICHELIEU - 92063", "stop_name": "PLACE RICHELIEU"}, "geometry": {"type": "Point", "coordinates": [2.181922020584739, 48.873226156400705]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "22d116e97c64720bc484208f552f4856f4ebe3c5", "fields": {"departement": "92", "stop_lat": 48.86745598039963, "code_postal": "92063", "stop_lon": 2.1816940922209014, "coord": [48.86745598039963, 2.1816940922209014], "stop_id": 4025068, "stop_desc": "FACE 65 R JEAN BOURGUIGNON - 92063", "stop_name": "LYCEE DE RUEIL"}, "geometry": {"type": "Point", "coordinates": [2.1816940922209014, 48.86745598039963]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c1c74156440853799ea2efb1aed41f76160d1b74", "fields": {"departement": "92", "stop_lat": 48.86541179387059, "code_postal": "92063", "stop_lon": 2.1786215526585515, "coord": [48.86541179387059, 2.1786215526585515], "stop_id": 4025069, "stop_desc": "FACE 72 RTE DE L'EMPEREUR - 92063", "stop_name": "COLLEGE JULES VERNE"}, "geometry": {"type": "Point", "coordinates": [2.1786215526585515, 48.86541179387059]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "85c16cbe97f87093ef4bf1371a77c30a39043df0", "fields": {"departement": "92", "stop_lat": 48.867313875534556, "code_postal": "92063", "stop_lon": 2.1762044728666226, "coord": [48.867313875534556, 2.1762044728666226], "stop_id": 4025070, "stop_desc": "FACE 58-60 RTE DE L'EMPEREUR - 92063", "stop_name": "GENERAL DE MIRIBEL"}, "geometry": {"type": "Point", "coordinates": [2.1762044728666226, 48.867313875534556]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "347227e955ddf9702681f387cc926769ffa03916", "fields": {"departement": "92", "stop_lat": 48.864576712675145, "code_postal": "92063", "stop_lon": 2.172548595243254, "coord": [48.864576712675145, 2.172548595243254], "stop_id": 4025071, "stop_desc": "R DU GENERAL DE MIRIBEL - 92063", "stop_name": "BRETAGNE"}, "geometry": {"type": "Point", "coordinates": [2.172548595243254, 48.864576712675145]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "687339ae7ce10063ac6e363cd4208279cb8a4d1d", "fields": {"departement": "92", "stop_lat": 48.862121953901166, "code_postal": "92063", "stop_lon": 2.171684610501522, "coord": [48.862121953901166, 2.171684610501522], "stop_id": 4025072, "stop_desc": "2 AV DE LA CHATAIGNERAIE - 92063", "stop_name": "SAINT CUCUFA"}, "geometry": {"type": "Point", "coordinates": [2.171684610501522, 48.862121953901166]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5eedaa74ad58305bca4ae83e0e62b91e9f7b75ee", "fields": {"departement": "92", "stop_lat": 48.875604206849836, "code_postal": "92062", "stop_lon": 2.2373009725892907, "coord": [48.875604206849836, 2.2373009725892907], "stop_id": 4025080, "stop_desc": "2 BIS R FRANCIS DE PRESSENSE - 92062", "stop_name": "CONSERVATOIRE-PRESSENSE"}, "geometry": {"type": "Point", "coordinates": [2.2373009725892907, 48.875604206849836]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "83d33c0f3fa93b2b6d421ac9e9efae42cb71627e", "fields": {"departement": "92", "stop_lat": 48.889178388225055, "code_postal": "92062", "stop_lon": 2.230882947886533, "coord": [48.889178388225055, 2.230882947886533], "stop_id": 4025095, "stop_desc": "FACE 16 R MARCELLIN BERTHELOT - 92062", "stop_name": "BERTHELOT - CARRE VERT"}, "geometry": {"type": "Point", "coordinates": [2.230882947886533, 48.889178388225055]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c9f9a6176ac2b50c4099ff9648965cd4a0e63451", "fields": {"departement": "92", "stop_lat": 48.88611165762972, "code_postal": "92062", "stop_lon": 2.2504861115803076, "coord": [48.88611165762972, 2.2504861115803076], "stop_id": 4025107, "stop_desc": "2-4 RUE BELLINI - 92062", "stop_name": "BELLINI"}, "geometry": {"type": "Point", "coordinates": [2.2504861115803076, 48.88611165762972]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ce90d017aa8bcc5feb3c9ecd5e7315b973304e34", "fields": {"departement": "92", "stop_lat": 48.88558764307915, "code_postal": "92062", "stop_lon": 2.246780247316581, "coord": [48.88558764307915, 2.246780247316581], "stop_id": 4025109, "stop_desc": "14 RUE PAUL LAFARGUE - 92062", "stop_name": "PAUL LAFARGUE"}, "geometry": {"type": "Point", "coordinates": [2.246780247316581, 48.88558764307915]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2070ca9620e3c686d1bc19a373c67ca85831c842", "fields": {"departement": "92", "stop_lat": 48.8871763106982, "code_postal": "92062", "stop_lon": 2.244092729902989, "coord": [48.8871763106982, 2.244092729902989], "stop_id": 4025110, "stop_desc": "39 RUE PAUL LAFARGUE - 92062", "stop_name": "GALLIENI"}, "geometry": {"type": "Point", "coordinates": [2.244092729902989, 48.8871763106982]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ea54dc8eb797081209dd4f91d8d65ff812ee9a3a", "fields": {"departement": "92", "stop_lat": 48.88615114877273, "code_postal": "92062", "stop_lon": 2.243304155685305, "coord": [48.88615114877273, 2.243304155685305], "stop_id": 4025111, "stop_desc": "FACE 59 RUE DE LA REPUBLIQUE - 92062", "stop_name": "ROUSSELLE"}, "geometry": {"type": "Point", "coordinates": [2.243304155685305, 48.88615114877273]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "87782c293296f4344956324a994caa1d8e907299", "fields": {"departement": "92", "stop_lat": 48.875604206849836, "code_postal": "92062", "stop_lon": 2.2373009725892907, "coord": [48.875604206849836, 2.2373009725892907], "stop_id": 4025115, "stop_desc": "2 BIS R FRANCIS DE PRESSENSE - 92062", "stop_name": "CONSERVATOIRE-PRESSENSE"}, "geometry": {"type": "Point", "coordinates": [2.2373009725892907, 48.875604206849836]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "250b5910e0042abf5ad09d0f6b10c72c88679d2e", "fields": {"departement": "92", "stop_lat": 48.88371676955176, "code_postal": "92062", "stop_lon": 2.233851265998093, "coord": [48.88371676955176, 2.233851265998093], "stop_id": 4025124, "stop_desc": "RUE DE LA REPUBLIQUE - 92062", "stop_name": "GARE DE PUTEAUX"}, "geometry": {"type": "Point", "coordinates": [2.233851265998093, 48.88371676955176]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2e98bfb1ac42489d6568e83805de74f684b82bc1", "fields": {"departement": "92", "stop_lat": 48.886400305331634, "code_postal": "92062", "stop_lon": 2.229730273795458, "coord": [48.886400305331634, 2.229730273795458], "stop_id": 4025134, "stop_desc": "86 AVENUE DU PRESIDENT WILSON - 92062", "stop_name": "EDGAR QUINET"}, "geometry": {"type": "Point", "coordinates": [2.229730273795458, 48.886400305331634]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6a6ec071735f2ca25a20c875c677b1ae11d4e4fd", "fields": {"departement": "92", "stop_lat": 48.8843757175651, "code_postal": "92062", "stop_lon": 2.227036245944437, "coord": [48.8843757175651, 2.227036245944437], "stop_id": 4025135, "stop_desc": "129 ROND-POINT DES BERGERES - 92062", "stop_name": "LES BERGERES"}, "geometry": {"type": "Point", "coordinates": [2.227036245944437, 48.8843757175651]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c2ba7497f8a9a50769477c3d36e475337af918d4", "fields": {"departement": "92", "stop_lat": 48.884058815418165, "code_postal": "92062", "stop_lon": 2.2454746925662836, "coord": [48.884058815418165, 2.2454746925662836], "stop_id": 4025141, "stop_desc": "FACE 52 RUE JEAN JAURES - 92062", "stop_name": "ARAGO - JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.2454746925662836, 48.884058815418165]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f2146a8b23dedf44c2ccd000fc0c6a97d6d162c4", "fields": {"departement": "92", "stop_lat": 48.88659626860713, "code_postal": "92062", "stop_lon": 2.2495313409976747, "coord": [48.88659626860713, 2.2495313409976747], "stop_id": 4025143, "stop_desc": "5-7 RUE BELLINI - 92062", "stop_name": "ESPLANADE DE LA DEFENSE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.2495313409976747, 48.88659626860713]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ddf7c35cd2ad338e88436a69acbc16f2e68b4cc7", "fields": {"departement": "92", "stop_lat": 48.88558764307915, "code_postal": "92062", "stop_lon": 2.246780247316581, "coord": [48.88558764307915, 2.246780247316581], "stop_id": 4025144, "stop_desc": "14 RUE PAUL LAFARGUE - 92062", "stop_name": "PAUL LAFARGUE"}, "geometry": {"type": "Point", "coordinates": [2.246780247316581, 48.88558764307915]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d95255fdce178488a12b0a5c4b7e2b53d675782d", "fields": {"departement": "92", "stop_lat": 48.8871763106982, "code_postal": "92062", "stop_lon": 2.244092729902989, "coord": [48.8871763106982, 2.244092729902989], "stop_id": 4025145, "stop_desc": "39 RUE PAUL LAFARGUE - 92062", "stop_name": "GALLIENI"}, "geometry": {"type": "Point", "coordinates": [2.244092729902989, 48.8871763106982]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "70708c47e76fe16c710b24ebaf28e459ac1924ab", "fields": {"departement": "92", "stop_lat": 48.88615114877273, "code_postal": "92062", "stop_lon": 2.243304155685305, "coord": [48.88615114877273, 2.243304155685305], "stop_id": 4025146, "stop_desc": "FACE 59 RUE DE LA REPUBLIQUE - 92062", "stop_name": "ROUSSELLE"}, "geometry": {"type": "Point", "coordinates": [2.243304155685305, 48.88615114877273]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3e01a16500ffe0593ed3022ab7e713f16d6b36c6", "fields": {"departement": "92", "stop_lat": 48.88171453446385, "code_postal": "92062", "stop_lon": 2.236090040410762, "coord": [48.88171453446385, 2.236090040410762], "stop_id": 4025153, "stop_desc": "82-84 BOULEVARD RICHARD WALLACE - 92062", "stop_name": "WALLACE VOILIN"}, "geometry": {"type": "Point", "coordinates": [2.236090040410762, 48.88171453446385]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "16fd311f04995b9065cdda088793677cacb0adc3", "fields": {"departement": "92", "stop_lat": 48.88336972653603, "code_postal": "92062", "stop_lon": 2.227665233716108, "coord": [48.88336972653603, 2.227665233716108], "stop_id": 4025158, "stop_desc": "FACE 49 RUE BERNARD PALISSY - 92062", "stop_name": "GUTENBERG"}, "geometry": {"type": "Point", "coordinates": [2.227665233716108, 48.88336972653603]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "273e8c71faae98890296512de2f2748d2609ed49", "fields": {"departement": "92", "stop_lat": 48.88830746642792, "code_postal": "92062", "stop_lon": 2.231825097915858, "coord": [48.88830746642792, 2.231825097915858], "stop_id": 4025166, "stop_desc": "FACE 4 RUE MARCELIN BERTHELOT - 92062", "stop_name": "PERGOLA"}, "geometry": {"type": "Point", "coordinates": [2.231825097915858, 48.88830746642792]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "793b0dcf92223982425d6eb94885a56f2859a7c8", "fields": {"departement": "92", "stop_lat": 48.88422463646071, "code_postal": "92062", "stop_lon": 2.239273946170175, "coord": [48.88422463646071, 2.239273946170175], "stop_id": 4025170, "stop_desc": "FACE 14 RUE ANATOLE FRANCE - 92062", "stop_name": "MAIRIE - ANATOLE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.239273946170175, 48.88422463646071]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1a698722ddb8eeb59bb21d1b47dfced60f3b8e29", "fields": {"departement": "92", "stop_lat": 48.89225832527781, "code_postal": "92050", "stop_lon": 2.227932658046209, "coord": [48.89225832527781, 2.227932658046209], "stop_id": 4025176, "stop_desc": "BD DES BOUVETS - 92050", "stop_name": "CIMETIERE NOUVEAU"}, "geometry": {"type": "Point", "coordinates": [2.227932658046209, 48.89225832527781]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ba223d995d0dba70d94c1606dd9dce3d0cac9b34", "fields": {"departement": "92", "stop_lat": 48.88830746642792, "code_postal": "92062", "stop_lon": 2.231825097915858, "coord": [48.88830746642792, 2.231825097915858], "stop_id": 4025178, "stop_desc": "FACE 4 RUE MARCELIN BERTHELOT - 92062", "stop_name": "PERGOLA"}, "geometry": {"type": "Point", "coordinates": [2.231825097915858, 48.88830746642792]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ee177553f0e202f706aeff6ea0fc686789248564", "fields": {"departement": "92", "stop_lat": 48.88097822577583, "code_postal": "92062", "stop_lon": 2.2368545622460583, "coord": [48.88097822577583, 2.2368545622460583], "stop_id": 4025195, "stop_desc": "29 R EUGENE EICHENBERGER - 92062", "stop_name": "WALLACE - JAURES"}, "geometry": {"type": "Point", "coordinates": [2.2368545622460583, 48.88097822577583]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7713b3a337c288e9d3994f79084ac31a5d884145", "fields": {"departement": "92", "stop_lat": 48.87992568956772, "code_postal": "92062", "stop_lon": 2.2356438653396578, "coord": [48.87992568956772, 2.2356438653396578], "stop_id": 4025196, "stop_desc": "FACE 4 RUE EUGENE EICHENBERGER - 92062", "stop_name": "BAS ROGERS"}, "geometry": {"type": "Point", "coordinates": [2.2356438653396578, 48.87992568956772]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ee0c580d25a8a8e1a0a83145aa9f20221e21affe", "fields": {"departement": "92", "stop_lat": 48.899308650262405, "code_postal": "92050", "stop_lon": 2.190227118923417, "coord": [48.899308650262405, 2.190227118923417], "stop_id": 4025230, "stop_desc": "BD DU GENERAL LECLERC - 92050", "stop_name": "CHEMIN DE L'ILE"}, "geometry": {"type": "Point", "coordinates": [2.190227118923417, 48.899308650262405]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "27019d28da95ff521cb02c7ff03ad6b07902a18f", "fields": {"departement": "92", "stop_lat": 48.89150331423726, "code_postal": "92050", "stop_lon": 2.193929171222875, "coord": [48.89150331423726, 2.193929171222875], "stop_id": 4025238, "stop_desc": "FACE 3 R JEAN-BAPTISTE LEBON - 92050", "stop_name": "JEAN-BAPTISTE LEBON"}, "geometry": {"type": "Point", "coordinates": [2.193929171222875, 48.89150331423726]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "841f45b32a60884f15a6bf313700574b68a1cb18", "fields": {"departement": "92", "stop_lat": 48.890024870122, "code_postal": "92050", "stop_lon": 2.1901989390427032, "coord": [48.890024870122, 2.1901989390427032], "stop_id": 4025240, "stop_desc": "2 R DES GOULVENTS - 92050", "stop_name": "THOMAS LEMAITRE"}, "geometry": {"type": "Point", "coordinates": [2.1901989390427032, 48.890024870122]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8d5a36086ef7b4a187a8d9d51c08b8d6c14d3a6d", "fields": {"departement": "92", "stop_lat": 48.88401647962881, "code_postal": "92050", "stop_lon": 2.2011859820808213, "coord": [48.88401647962881, 2.2011859820808213], "stop_id": 4025244, "stop_desc": "FACE 57 R DE SAINT-CLOUD - 92050", "stop_name": "OMBRAIES"}, "geometry": {"type": "Point", "coordinates": [2.2011859820808213, 48.88401647962881]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0249ddc0075205ab9270897e551a49ed74550937", "fields": {"departement": "92", "stop_lat": 48.88264130993699, "code_postal": "92050", "stop_lon": 2.201080576067, "coord": [48.88264130993699, 2.201080576067], "stop_id": 4025245, "stop_desc": "98-100 AV DE SAINT-CLOUD - 92050", "stop_name": "SAINT-CLOUD"}, "geometry": {"type": "Point", "coordinates": [2.201080576067, 48.88264130993699]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c256701770c16d6e82ab723abeb59623fd349828", "fields": {"departement": "92", "stop_lat": 48.88354681399069, "code_postal": "92050", "stop_lon": 2.2156593002014677, "coord": [48.88354681399069, 2.2156593002014677], "stop_id": 4025274, "stop_desc": "130 R DE SURESNES - 92050", "stop_name": "SURESNES"}, "geometry": {"type": "Point", "coordinates": [2.2156593002014677, 48.88354681399069]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6a8933fc1ae728415289240d20e00e96f8ebc75a", "fields": {"departement": "92", "stop_lat": 48.88186447998276, "code_postal": "92050", "stop_lon": 2.213987155533238, "coord": [48.88186447998276, 2.213987155533238], "stop_id": 4025275, "stop_desc": "7 R PAUL BERTIN - 92050", "stop_name": "PAUL BERTIN"}, "geometry": {"type": "Point", "coordinates": [2.213987155533238, 48.88186447998276]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dee902da304ec3b3d2a558ad5fdf4bc53dec34fa", "fields": {"departement": "92", "stop_lat": 48.88703095931309, "code_postal": "92050", "stop_lon": 2.2045169572232255, "coord": [48.88703095931309, 2.2045169572232255], "stop_id": 4025279, "stop_desc": "FACE 48 AVENUE GEORGES CLEMENCEAU - 92050", "stop_name": "LA SOURCE"}, "geometry": {"type": "Point", "coordinates": [2.2045169572232255, 48.88703095931309]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "21c1d5cca0436f92740f9f4500c78748b6c1a1ca", "fields": {"departement": "92", "stop_lat": 48.88726100109216, "code_postal": "92050", "stop_lon": 2.2013001183399865, "coord": [48.88726100109216, 2.2013001183399865], "stop_id": 4025280, "stop_desc": "1 AVENUE GEORGES CLEMENCEAU - 92050", "stop_name": "PLACE DE LA BOULE - CLEMENCEAU"}, "geometry": {"type": "Point", "coordinates": [2.2013001183399865, 48.88726100109216]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3de3cf2f6a1d689b41681cbb721d756605946bb8", "fields": {"departement": "92", "stop_lat": 48.88898344841831, "code_postal": "92050", "stop_lon": 2.198610760035315, "coord": [48.88898344841831, 2.198610760035315], "stop_id": 4025281, "stop_desc": "1 R GAMBETTA - 92050", "stop_name": "GABRIEL PERI"}, "geometry": {"type": "Point", "coordinates": [2.198610760035315, 48.88898344841831]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6047d59a9d7a54e00829243f287e90191b2683b4", "fields": {"departement": "92", "stop_lat": 48.89247011636236, "code_postal": "92050", "stop_lon": 2.2062339790895042, "coord": [48.89247011636236, 2.2062339790895042], "stop_id": 4025291, "stop_desc": "FACE 97 R DU 8 MAI 1945 - 92050", "stop_name": "HOTEL DE VILLE - CITE ADMINISTRATIVE"}, "geometry": {"type": "Point", "coordinates": [2.2062339790895042, 48.89247011636236]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b5b242633dd9dd7c98a39cc8b406b31a5c750abd", "fields": {"departement": "92", "stop_lat": 48.89150584467613, "code_postal": "92050", "stop_lon": 2.2038512905464818, "coord": [48.89150584467613, 2.2038512905464818], "stop_id": 4025292, "stop_desc": "47 R DU 8 MAI 1945 - 92050", "stop_name": "RUE DES AMANDIERS"}, "geometry": {"type": "Point", "coordinates": [2.2038512905464818, 48.89150584467613]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c6edbb78ec907b81cfc3f60b72ac7b54f0227a22", "fields": {"departement": "92", "stop_lat": 48.891430616233855, "code_postal": "92050", "stop_lon": 2.200907561091466, "coord": [48.891430616233855, 2.200907561091466], "stop_id": 4025295, "stop_desc": "FACE 5 RUE DE COURBEVOIE - 92050", "stop_name": "PLAINCHAMP"}, "geometry": {"type": "Point", "coordinates": [2.200907561091466, 48.891430616233855]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b910ea9b5390a77f0f6a36666a8b269f825f789c", "fields": {"departement": "92", "stop_lat": 48.8887438094835, "code_postal": "92050", "stop_lon": 2.1935688305364764, "coord": [48.8887438094835, 2.1935688305364764], "stop_id": 4025304, "stop_desc": "FACE 2 R THOMAS LEMAITRE - 92050", "stop_name": "PLACE FOCH"}, "geometry": {"type": "Point", "coordinates": [2.1935688305364764, 48.8887438094835]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "44d1bf4b029e87d723d6624bfc6ee816cecd22d4", "fields": {"departement": "92", "stop_lat": 48.886962342334975, "code_postal": "92050", "stop_lon": 2.199488364504161, "coord": [48.886962342334975, 2.199488364504161], "stop_id": 4025306, "stop_desc": "PLACE DE LA BOULE - 92050", "stop_name": "PLACE DE LA BOULE - LENINE"}, "geometry": {"type": "Point", "coordinates": [2.199488364504161, 48.886962342334975]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fca42bff8f51d3b29ecda56c445d6de15d04ea6c", "fields": {"departement": "92", "stop_lat": 48.88275839405862, "code_postal": "92050", "stop_lon": 2.209419987945448, "coord": [48.88275839405862, 2.209419987945448], "stop_id": 4025310, "stop_desc": "122 R PHILIPPE TRIAIRE - 92050", "stop_name": "DANIEL BECKER"}, "geometry": {"type": "Point", "coordinates": [2.209419987945448, 48.88275839405862]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "505e575b9cd1e3fe3a203ea112edbcbe7be35e9e", "fields": {"departement": "92", "stop_lat": 48.88133334185547, "code_postal": "92050", "stop_lon": 2.213129941737652, "coord": [48.88133334185547, 2.213129941737652], "stop_id": 4025311, "stop_desc": "214-216 R PHILIPPE TRIAIRE - 92050", "stop_name": "LES LOUVETIERS"}, "geometry": {"type": "Point", "coordinates": [2.213129941737652, 48.88133334185547]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c2da613c2510c9991ddf0c4edeec0d4b58c48565", "fields": {"departement": "92", "stop_lat": 48.87458403858967, "code_postal": "92063", "stop_lon": 2.169260463319096, "coord": [48.87458403858967, 2.169260463319096], "stop_id": 4025314, "stop_desc": "AV DE L'IMPERATRICE JOSEPHINE - 92063", "stop_name": "PLACE OSIRIS"}, "geometry": {"type": "Point", "coordinates": [2.169260463319096, 48.87458403858967]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b82d87f79db3404f89fd82685555b3b11a4da37c", "fields": {"departement": "92", "stop_lat": 48.87480794188909, "code_postal": "92063", "stop_lon": 2.1751865752441937, "coord": [48.87480794188909, 2.1751865752441937], "stop_id": 4025315, "stop_desc": "FACE 4 AV DE L'IMPERATRICE JOSEPHINE - 92063", "stop_name": "BOIS PREAU"}, "geometry": {"type": "Point", "coordinates": [2.1751865752441937, 48.87480794188909]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b5ef6c6ac5eca5190cb7bea3ef07a95df7a0c2ff", "fields": {"departement": "92", "stop_lat": 48.87181646716275, "code_postal": "92063", "stop_lon": 2.1761496147937804, "coord": [48.87181646716275, 2.1761496147937804], "stop_id": 4025318, "stop_desc": "FACE 27 R CHARLES FLOQUET - 92063", "stop_name": "GEORGE SAND"}, "geometry": {"type": "Point", "coordinates": [2.1761496147937804, 48.87181646716275]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b7e464ceecddc0898c627551c9dac8e87269ece8", "fields": {"departement": "92", "stop_lat": 48.86612460418089, "code_postal": "92063", "stop_lon": 2.167612285598334, "coord": [48.86612460418089, 2.167612285598334], "stop_id": 4025320, "stop_desc": "14-16 AV DE VERSAILLES - 92063", "stop_name": "BRETAGNE"}, "geometry": {"type": "Point", "coordinates": [2.167612285598334, 48.86612460418089]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "697e28dd9d2238f3fc3f4dcf39f8a5e212a403fc", "fields": {"departement": "92", "stop_lat": 48.8641002095578, "code_postal": "92063", "stop_lon": 2.1660523663679174, "coord": [48.8641002095578, 2.1660523663679174], "stop_id": 4025325, "stop_desc": "FACE 38 AV DE VERSAILLES - 92063", "stop_name": "BOIS SAINT-PERE."}, "geometry": {"type": "Point", "coordinates": [2.1660523663679174, 48.8641002095578]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "83990686974af547393d55a360a041478d9d5dc2", "fields": {"departement": "92", "stop_lat": 48.876279725607716, "code_postal": "92063", "stop_lon": 2.1803050865812237, "coord": [48.876279725607716, 2.1803050865812237], "stop_id": 4025331, "stop_desc": "26 RUE HERVET - 92063", "stop_name": "EGLISE DE RUEIL"}, "geometry": {"type": "Point", "coordinates": [2.1803050865812237, 48.876279725607716]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ff70300437d31a566c602846bfefb0f3d3aa6540", "fields": {"departement": "92", "stop_lat": 48.863701378650006, "code_postal": "92063", "stop_lon": 2.190450673230167, "coord": [48.863701378650006, 2.190450673230167], "stop_id": 4025342, "stop_desc": "FACE 74 R DU GENERAL CARREY DE BELLEMARE - 92063", "stop_name": "19 JANVIER"}, "geometry": {"type": "Point", "coordinates": [2.190450673230167, 48.863701378650006]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f43078fa818f260821399f8184a534de59b11d59", "fields": {"departement": "92", "stop_lat": 48.89561709628899, "code_postal": "92050", "stop_lon": 2.216121673073011, "coord": [48.89561709628899, 2.216121673073011], "stop_id": 4025353, "stop_desc": "R PABLO NERUDA - 92050", "stop_name": "DROITS DE L'HOMME"}, "geometry": {"type": "Point", "coordinates": [2.216121673073011, 48.89561709628899]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "369c237f42f34393527ad9bfbad38a585a7363c4", "fields": {"departement": "92", "stop_lat": 48.89333561499962, "code_postal": "92050", "stop_lon": 2.2266628172208325, "coord": [48.89333561499962, 2.2266628172208325], "stop_id": 4025358, "stop_desc": "BD DE PESARO - 92050", "stop_name": "PESARO"}, "geometry": {"type": "Point", "coordinates": [2.2266628172208325, 48.89333561499962]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2e1375a836ec14bfa791fabe5b8c58eaf6c8787f", "fields": {"departement": "92", "stop_lat": 48.89094728046282, "code_postal": "92050", "stop_lon": 2.2291211585442077, "coord": [48.89094728046282, 2.2291211585442077], "stop_id": 4025359, "stop_desc": "BD DE PESARO - 92050", "stop_name": "MAXIME GORKI"}, "geometry": {"type": "Point", "coordinates": [2.2291211585442077, 48.89094728046282]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c5b61640be1c9f40e5e24a5229c4d4ba3745ed60", "fields": {"departement": "92", "stop_lat": 48.885873927302704, "code_postal": "92050", "stop_lon": 2.2241984765283314, "coord": [48.885873927302704, 2.2241984765283314], "stop_id": 4025364, "stop_desc": "R DE WATFORD - 92050", "stop_name": "WATFORD"}, "geometry": {"type": "Point", "coordinates": [2.2241984765283314, 48.885873927302704]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c7ba970f859501b83ca67af7772c68da6a24f8fd", "fields": {"departement": "92", "stop_lat": 48.88652679272833, "code_postal": "92050", "stop_lon": 2.2208718257627393, "coord": [48.88652679272833, 2.2208718257627393], "stop_id": 4025366, "stop_desc": "R DE CRAIOVA - 92050", "stop_name": "CRAIOVA"}, "geometry": {"type": "Point", "coordinates": [2.2208718257627393, 48.88652679272833]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c492425fc55cdd79118dad509f0beae3c1d0994b", "fields": {"departement": "92", "stop_lat": 48.92999994296058, "code_postal": "92078", "stop_lon": 2.3319080366529725, "coord": [48.92999994296058, 2.3319080366529725], "stop_id": 4016815, "stop_desc": "FACE 144 BD GALLIENI - 92078", "stop_name": "MAURICE RAVEL"}, "geometry": {"type": "Point", "coordinates": [2.3319080366529725, 48.92999994296058]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c61241b6be6f316a59e44cc855ebe32048a9b3ad", "fields": {"departement": "92", "stop_lat": 48.93283970087886, "code_postal": "92078", "stop_lon": 2.330079963128053, "coord": [48.93283970087886, 2.330079963128053], "stop_id": 4016816, "stop_desc": "R DU FOND DE LA NOUE - 92078", "stop_name": "POINTET"}, "geometry": {"type": "Point", "coordinates": [2.330079963128053, 48.93283970087886]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b3c0fe7c3ba756b26a1d42ff141cef3bfdd70cb0", "fields": {"departement": "92", "stop_lat": 48.93276779006171, "code_postal": "92078", "stop_lon": 2.329820810562093, "coord": [48.93276779006171, 2.329820810562093], "stop_id": 4016817, "stop_desc": "RUE DU FOND DE LA NOUE - 92078", "stop_name": "POINTET"}, "geometry": {"type": "Point", "coordinates": [2.329820810562093, 48.93276779006171]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3b4afac728c38b818d8117851e1498029942b260", "fields": {"departement": "92", "stop_lat": 48.93771944985772, "code_postal": "92078", "stop_lon": 2.3284286731087045, "coord": [48.93771944985772, 2.3284286731087045], "stop_id": 4016820, "stop_desc": "0 SQ GERARD PHILIPE - 92078", "stop_name": "GERARD PHILIPE"}, "geometry": {"type": "Point", "coordinates": [2.3284286731087045, 48.93771944985772]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "89f9c7d821405fd6c28b1ce44912a18a7dca031e", "fields": {"departement": "92", "stop_lat": 48.91887135273581, "code_postal": "92036", "stop_lon": 2.311004470539435, "coord": [48.91887135273581, 2.311004470539435], "stop_id": 4016835, "stop_desc": "185 AVENUE DES GRESILLONS - 92036", "stop_name": "PIERRE CURIE"}, "geometry": {"type": "Point", "coordinates": [2.311004470539435, 48.91887135273581]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c8a44dd9fd83d48ee0bc1ed97931fb5f4fc96d31", "fields": {"departement": "93", "stop_lat": 48.93592214070139, "code_postal": "93066", "stop_lon": 2.3452482879755787, "coord": [48.93592214070139, 2.3452482879755787], "stop_id": 4016998, "stop_desc": "R COIGNET - 93066", "stop_name": "SAINT-DENIS RER"}, "geometry": {"type": "Point", "coordinates": [2.3452482879755787, 48.93592214070139]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b7d618efeb49d46086cd04292149bf4da80e9bd3", "fields": {"departement": "93", "stop_lat": 48.92938885467192, "code_postal": "93066", "stop_lon": 2.3421238927917045, "coord": [48.92938885467192, 2.3421238927917045], "stop_id": 4017002, "stop_desc": "FACE 84 RUE CHARLES MICHELS - 93066", "stop_name": "QUAI DE SAINT-OUEN"}, "geometry": {"type": "Point", "coordinates": [2.3421238927917045, 48.92938885467192]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3e960773e928a81bfead0e1ab274f5159dd43801", "fields": {"departement": "92", "stop_lat": 48.905121060238216, "code_postal": "92024", "stop_lon": 2.310357059527946, "coord": [48.905121060238216, 2.310357059527946], "stop_id": 4017026, "stop_desc": "71 BIS BOULEVARD DU GENERAL LECLERC - 92024", "stop_name": "GENERAL LECLERC - VILLENEUVE-HOPITAL BEAUJON"}, "geometry": {"type": "Point", "coordinates": [2.310357059527946, 48.905121060238216]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d61b67378208ae0ba77e85f9599494beddd30002", "fields": {"departement": "92", "stop_lat": 48.90487707648954, "code_postal": "92024", "stop_lon": 2.3049858663019815, "coord": [48.90487707648954, 2.3049858663019815], "stop_id": 4017027, "stop_desc": "13 RUE DU LANDY - 92024", "stop_name": "LANDY - MARTRE"}, "geometry": {"type": "Point", "coordinates": [2.3049858663019815, 48.90487707648954]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6428ea844cb5b5587f5081445c65a0819c72e8d3", "fields": {"departement": "92", "stop_lat": 48.896544086329115, "code_postal": "92044", "stop_lon": 2.2984756281855954, "coord": [48.896544086329115, 2.2984756281855954], "stop_id": 4017033, "stop_desc": "6 PLACE DU 8 MAI 1945 - 92044", "stop_name": "GARE DE CLICHY - LEVALLOIS"}, "geometry": {"type": "Point", "coordinates": [2.2984756281855954, 48.896544086329115]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "10d8597474cd37c182f098c15fe222f738e19650", "fields": {"departement": "92", "stop_lat": 48.89236118961848, "code_postal": "92044", "stop_lon": 2.2879976720395963, "coord": [48.89236118961848, 2.2879976720395963], "stop_id": 4017038, "stop_desc": "FACE 76 RUE ARISTIDE BRIAND - 92044", "stop_name": "MAIRIE DE LEVALLOIS"}, "geometry": {"type": "Point", "coordinates": [2.2879976720395963, 48.89236118961848]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5f6b21fbc6d6d5c90042d2ac4a643d2e10750777", "fields": {"departement": "92", "stop_lat": 48.89356629689293, "code_postal": "92044", "stop_lon": 2.29004099936461, "coord": [48.89356629689293, 2.29004099936461], "stop_id": 4017044, "stop_desc": "47 RUE RIVAY - 92044", "stop_name": "ARISTIDE BRIAND"}, "geometry": {"type": "Point", "coordinates": [2.29004099936461, 48.89356629689293]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c7723a56d3b38a28607606482929a44f655be2af", "fields": {"departement": "92", "stop_lat": 48.93245315789418, "code_postal": "92025", "stop_lon": 2.271182272626384, "coord": [48.93245315789418, 2.271182272626384], "stop_id": 5020440, "stop_desc": "77 RUE JULES MICHELET - 92025", "stop_name": "LOUISE MICHEL"}, "geometry": {"type": "Point", "coordinates": [2.271182272626384, 48.93245315789418]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1f7bb254f9ba14d88215e05938b46947f8f1bc11", "fields": {"departement": "92", "stop_lat": 48.93101284131389, "code_postal": "92025", "stop_lon": 2.2669558107428234, "coord": [48.93101284131389, 2.2669558107428234], "stop_id": 5020444, "stop_desc": "107 AVENUE DE STALINGRAD - 92025", "stop_name": "MAIRIE DE QUARTIER - C.A.F."}, "geometry": {"type": "Point", "coordinates": [2.2669558107428234, 48.93101284131389]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "03929a028d02fde390d006712f22d6a85862dff2", "fields": {"departement": "92", "stop_lat": 48.92834803912217, "code_postal": "92025", "stop_lon": 2.2594170747775593, "coord": [48.92834803912217, 2.2594170747775593], "stop_id": 5020451, "stop_desc": "FACE 81 BOULEVARD GAMBETTA - 92025", "stop_name": "PRESIDENT KENNEDY"}, "geometry": {"type": "Point", "coordinates": [2.2594170747775593, 48.92834803912217]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d74df0dd8a2ba7f270b4dd4271c0b07d8337fd2f", "fields": {"departement": "92", "stop_lat": 48.923186035500706, "code_postal": "92025", "stop_lon": 2.2542152626298364, "coord": [48.923186035500706, 2.2542152626298364], "stop_id": 5020455, "stop_desc": "FACE 20 RUE DU BOURNARD - 92025", "stop_name": "MAIRIE DE COLOMBES"}, "geometry": {"type": "Point", "coordinates": [2.2542152626298364, 48.923186035500706]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8aa972e63535c9f0b31baca4088a9b750c18bae4", "fields": {"departement": "92", "stop_lat": 48.924416258840814, "code_postal": "92025", "stop_lon": 2.252808582317221, "coord": [48.924416258840814, 2.252808582317221], "stop_id": 5020458, "stop_desc": "2 BOULEVARD DE VALMY - 92025", "stop_name": "GENERAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.252808582317221, 48.924416258840814]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5c3c106e1dcf5956f74d1d8838f0062258e4f370", "fields": {"departement": "92", "stop_lat": 48.92591726742857, "code_postal": "92025", "stop_lon": 2.2530789017004187, "coord": [48.92591726742857, 2.2530789017004187], "stop_id": 5020459, "stop_desc": "28 BOULEVARD DE VALMY - 92025", "stop_name": "FRATERNITE"}, "geometry": {"type": "Point", "coordinates": [2.2530789017004187, 48.92591726742857]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ff7032118330b0f289ceaca7617e9a704d5721ac", "fields": {"departement": "92", "stop_lat": 48.924869812935135, "code_postal": "92036", "stop_lon": 2.2943630041990652, "coord": [48.924869812935135, 2.2943630041990652], "stop_id": 5020462, "stop_desc": "FACE 144 AVENUE GABRIEL PERI - 92036", "stop_name": "MAIRIE DE GENNEVILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.2943630041990652, 48.924869812935135]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5012d719af5aefd44ae23d3b31b9cb4767b1c06c", "fields": {"departement": "92", "stop_lat": 48.9235833559115, "code_postal": "92025", "stop_lon": 2.2569830831008257, "coord": [48.9235833559115, 2.2569830831008257], "stop_id": 5020473, "stop_desc": "75 RUE DU BOURNARD - 92025", "stop_name": "RHIN ET DANUBE"}, "geometry": {"type": "Point", "coordinates": [2.2569830831008257, 48.9235833559115]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d9f762fb017ab80ec1aeea1f366465413d41f384", "fields": {"departement": "92", "stop_lat": 48.913369661076466, "code_postal": "92025", "stop_lon": 2.2389870288586877, "coord": [48.913369661076466, 2.2389870288586877], "stop_id": 5020479, "stop_desc": "R MOSLARD - 92025", "stop_name": "RUE MOSLARD"}, "geometry": {"type": "Point", "coordinates": [2.2389870288586877, 48.913369661076466]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "92b719699a956ce5be8dee8a9e38e6aca03a6ab5", "fields": {"departement": "92", "stop_lat": 48.92548546734717, "code_postal": "92025", "stop_lon": 2.2406551813838607, "coord": [48.92548546734717, 2.2406551813838607], "stop_id": 5020489, "stop_desc": "46 AVENUE DE L'EUROPE - 92025", "stop_name": "HOPITAL"}, "geometry": {"type": "Point", "coordinates": [2.2406551813838607, 48.92548546734717]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "179b3c2531d49d4bd328cc3965bb44733eb7da62", "fields": {"departement": "92", "stop_lat": 48.92649449009768, "code_postal": "92025", "stop_lon": 2.2437765137696033, "coord": [48.92649449009768, 2.2437765137696033], "stop_id": 5020491, "stop_desc": "24-26 AVENUE DE L'EUROPE - 92025", "stop_name": "TOUR D'AUVERGNE"}, "geometry": {"type": "Point", "coordinates": [2.2437765137696033, 48.92649449009768]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0432ac526a7f991f93c3ec8b65fb5e55bef8bb42", "fields": {"departement": "92", "stop_lat": 48.92867159264542, "code_postal": "92025", "stop_lon": 2.2467186218760364, "coord": [48.92867159264542, 2.2467186218760364], "stop_id": 5020492, "stop_desc": "RUE PAUL BERT - 92025", "stop_name": "ROBERT SCHUMAN"}, "geometry": {"type": "Point", "coordinates": [2.2467186218760364, 48.92867159264542]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fffde5bf191084fe647be90bdadd8d9126511692", "fields": {"departement": "92", "stop_lat": 48.928464717864934, "code_postal": "92025", "stop_lon": 2.2464871203766434, "coord": [48.928464717864934, 2.2464871203766434], "stop_id": 5020493, "stop_desc": "RUE PAUL BERT - 92025", "stop_name": "ROBERT SCHUMAN"}, "geometry": {"type": "Point", "coordinates": [2.2464871203766434, 48.928464717864934]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "21a02309f38ff284fc2e332b1e7353fc694c050d", "fields": {"departement": "92", "stop_lat": 48.930312615875145, "code_postal": "92025", "stop_lon": 2.2421192429590224, "coord": [48.930312615875145, 2.2421192429590224], "stop_id": 5020497, "stop_desc": "VOIE DU PARC - 92025", "stop_name": "PARC PIERRE LAGRAVERE"}, "geometry": {"type": "Point", "coordinates": [2.2421192429590224, 48.930312615875145]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "732e16b24abca1a51554f75961bfa3a8576adc56", "fields": {"departement": "92", "stop_lat": 48.92774653074683, "code_postal": "92025", "stop_lon": 2.2362592636370624, "coord": [48.92774653074683, 2.2362592636370624], "stop_id": 5020498, "stop_desc": "VOIE DU PARC - 92025", "stop_name": "TENNIS"}, "geometry": {"type": "Point", "coordinates": [2.2362592636370624, 48.92774653074683]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9ffa0eacc265573730cf70f37a40c9a515b36154", "fields": {"departement": "78", "stop_lat": 48.77871685502776, "code_postal": "78640", "stop_lon": 2.2087512558593017, "coord": [48.77871685502776, 2.2087512558593017], "stop_id": 5067187, "stop_desc": "FACE 63 AVENUE DE L'EUROPE (CHAUSSEE NORD) - 78640", "stop_name": "EUROPE SUD"}, "geometry": {"type": "Point", "coordinates": [2.2087512558593017, 48.77871685502776]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7c38ae632349decbb16e959407f7d517ce690427", "fields": {"departement": "78", "stop_lat": 48.778335659932026, "code_postal": "78640", "stop_lon": 2.213743250726803, "coord": [48.778335659932026, 2.213743250726803], "stop_id": 5067249, "stop_desc": "47 AVENUE DE L'EUROPE (CHAUSSEE SUD) - 78640", "stop_name": "LIAISON INOVEL SUD"}, "geometry": {"type": "Point", "coordinates": [2.213743250726803, 48.778335659932026]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e89ef09ef5240479634ab715c73920aa3b609f75", "fields": {"departement": "92", "stop_lat": 48.786921728022854, "code_postal": "92048", "stop_lon": 2.225406815269084, "coord": [48.786921728022854, 2.225406815269084], "stop_id": 5067329, "stop_desc": "43 AVENUE DU GENERAL DE GAULLE - 92048", "stop_name": "ROSERAIE"}, "geometry": {"type": "Point", "coordinates": [2.225406815269084, 48.786921728022854]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0be5e939b7dc79c09304c63750335974f38017c8", "fields": {"departement": "92", "stop_lat": 48.78551534747869, "code_postal": "92023", "stop_lon": 2.2410923396775755, "coord": [48.78551534747869, 2.2410923396775755], "stop_id": 5067418, "stop_desc": "RUE DE LA PORTE DE TRIVAUX - 92023", "stop_name": "ILE DE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.2410923396775755, 48.78551534747869]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4a6a68930b343b21256c7642256c0bb8e26c5b97", "fields": {"departement": "92", "stop_lat": 48.78926265301571, "code_postal": "92023", "stop_lon": 2.2520081681720394, "coord": [48.78926265301571, 2.2520081681720394], "stop_id": 5067448, "stop_desc": "169 ROUTE DE LA PORTE DE TRIVAUX - 92023", "stop_name": "EUGENE BEAUJARD"}, "geometry": {"type": "Point", "coordinates": [2.2520081681720394, 48.78926265301571]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3c64dfcd377dbdb9006976436a94d01882acb41e", "fields": {"departement": "92", "stop_lat": 48.78688321416388, "code_postal": "92023", "stop_lon": 2.2553717242870306, "coord": [48.78688321416388, 2.2553717242870306], "stop_id": 5067449, "stop_desc": "231 AV DU GENERAL DE GAULLE - 92023", "stop_name": "HOPITAL ANTOINE BECLERE"}, "geometry": {"type": "Point", "coordinates": [2.2553717242870306, 48.78688321416388]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e9b38004ab72ef822970a45563d25955bb2080a2", "fields": {"departement": "92", "stop_lat": 48.78513289467901, "code_postal": "92060", "stop_lon": 2.258829230564299, "coord": [48.78513289467901, 2.258829230564299], "stop_id": 5067454, "stop_desc": "42 RUE PAUL RIVET - 92060", "stop_name": "MOULIN DE LA TOUR"}, "geometry": {"type": "Point", "coordinates": [2.258829230564299, 48.78513289467901]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9078b07bed45563496bcb313588210ad6fd11a87", "fields": {"departement": "92", "stop_lat": 48.781618640138575, "code_postal": "92060", "stop_lon": 2.2588889381999437, "coord": [48.781618640138575, 2.2588889381999437], "stop_id": 5067455, "stop_desc": "FACE 7 RUE PIERRE D'ARTAGNAN - 92060", "stop_name": "DANIEL DE FOE"}, "geometry": {"type": "Point", "coordinates": [2.2588889381999437, 48.781618640138575]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b2b40186705e6f3bc1d78a3bef2b6bcc930dc989", "fields": {"departement": "92", "stop_lat": 48.78172665679126, "code_postal": "92060", "stop_lon": 2.2591335837638575, "coord": [48.78172665679126, 2.2591335837638575], "stop_id": 5067456, "stop_desc": "9 RUE PIERRE D'ARTAGNAN - 92060", "stop_name": "DANIEL DE FOE"}, "geometry": {"type": "Point", "coordinates": [2.2591335837638575, 48.78172665679126]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d7c8e31c04eac99e8ef9982bc5a273d3f71695b8", "fields": {"departement": "92", "stop_lat": 48.77963362439875, "code_postal": "92060", "stop_lon": 2.2609319216029258, "coord": [48.77963362439875, 2.2609319216029258], "stop_id": 5067458, "stop_desc": "AVENUE CHARLES DE GAULLE - 92060", "stop_name": "RESISTANCE"}, "geometry": {"type": "Point", "coordinates": [2.2609319216029258, 48.77963362439875]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a1812be8a5947e8541c07a0c589d9d5292cb6b5a", "fields": {"departement": "92", "stop_lat": 48.78365354917881, "code_postal": "92032", "stop_lon": 2.2812186713823306, "coord": [48.78365354917881, 2.2812186713823306], "stop_id": 5067470, "stop_desc": "181 AVENUE DE LA RESISTANCE - 92032", "stop_name": "CARREFOUR DES MOUILLEBOEUFS"}, "geometry": {"type": "Point", "coordinates": [2.2812186713823306, 48.78365354917881]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3f280ecb6d3d9720326aa8b13146f2d6f0bddd52", "fields": {"departement": "92", "stop_lat": 48.78362126025075, "code_postal": "92032", "stop_lon": 2.2896241031638933, "coord": [48.78362126025075, 2.2896241031638933], "stop_id": 5067472, "stop_desc": "FACE 17BIS AVENUE PAUL LANGEVIN - 92032", "stop_name": "AUGUSTIN CLAUDE"}, "geometry": {"type": "Point", "coordinates": [2.2896241031638933, 48.78362126025075]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ead7fba25c669f705566aeb55ae00797f5fce133", "fields": {"departement": "92", "stop_lat": 48.784243313431766, "code_postal": "92071", "stop_lon": 2.2945879445108788, "coord": [48.784243313431766, 2.2945879445108788], "stop_id": 5067473, "stop_desc": "4 AVENUE JEAN PERRIN - 92071", "stop_name": "AVENUE LOMBART"}, "geometry": {"type": "Point", "coordinates": [2.2945879445108788, 48.784243313431766]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "15d68b5a428204a0aa625943b432d3a00ac76f3d", "fields": {"departement": "92", "stop_lat": 48.78004214128772, "code_postal": "92014", "stop_lon": 2.3130874320121375, "coord": [48.78004214128772, 2.3130874320121375], "stop_id": 5067480, "stop_desc": "PLACE DE LA GARE - 92014", "stop_name": "BOURG-LA-REINE RER"}, "geometry": {"type": "Point", "coordinates": [2.3130874320121375, 48.78004214128772]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bf96d25f8eb752241d7b230812e5467418d7d597", "fields": {"departement": "92", "stop_lat": 48.78004214128772, "code_postal": "92014", "stop_lon": 2.3130874320121375, "coord": [48.78004214128772, 2.3130874320121375], "stop_id": 5067481, "stop_desc": "PLACE DE LA GARE - 92014", "stop_name": "BOURG-LA-REINE RER"}, "geometry": {"type": "Point", "coordinates": [2.3130874320121375, 48.78004214128772]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fcd304310d8567651634239ebb001640d36df376", "fields": {"departement": "92", "stop_lat": 48.7842427774519, "code_postal": "92032", "stop_lon": 2.2931190231479297, "coord": [48.7842427774519, 2.2931190231479297], "stop_id": 5067485, "stop_desc": "FACE 1 AVENUE PAUL LANGEVIN - 92032", "stop_name": "AVENUE LOMBART"}, "geometry": {"type": "Point", "coordinates": [2.2931190231479297, 48.7842427774519]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cbb27e97d092165c10487e61ef3286dc2c07663b", "fields": {"departement": "92", "stop_lat": 48.78531651659945, "code_postal": "92023", "stop_lon": 2.2397461674974344, "coord": [48.78531651659945, 2.2397461674974344], "stop_id": 5067486, "stop_desc": "110 R DE LA PORTE DE TRIVAUX - 92023", "stop_name": "ILE DE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.2397461674974344, 48.78531651659945]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "101dd8ce8be8af77a830c202aad1955f0e94b406", "fields": {"departement": "92", "stop_lat": 48.81433386981944, "code_postal": "92023", "stop_lon": 2.272911272554446, "coord": [48.81433386981944, 2.272911272554446], "stop_id": 5067579, "stop_desc": "21 RUE DU CLOS MONTHOLON - 92023", "stop_name": "GARE DE CLAMART"}, "geometry": {"type": "Point", "coordinates": [2.272911272554446, 48.81433386981944]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6243e5817554a8e9357583e2355fc21e8700a2de", "fields": {"departement": "92", "stop_lat": 48.81209081636463, "code_postal": "92046", "stop_lon": 2.280548379801124, "coord": [48.81209081636463, 2.280548379801124], "stop_id": 5067582, "stop_desc": "FACE 52 BOULEVARD DU COLONEL FABIEN - 92046", "stop_name": "COLONEL FABIEN"}, "geometry": {"type": "Point", "coordinates": [2.280548379801124, 48.81209081636463]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "63b4007296137da4af69d6af3081eb6cad8a7a2d", "fields": {"departement": "92", "stop_lat": 48.80210842496292, "code_postal": "92020", "stop_lon": 2.2873485804549465, "coord": [48.80210842496292, 2.2873485804549465], "stop_id": 5067585, "stop_desc": "34 RUE GABRIEL PERI - 92020", "stop_name": "CENTRE DE CHATILLON - MARCHE"}, "geometry": {"type": "Point", "coordinates": [2.2873485804549465, 48.80210842496292]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f83a4274ac708df348453c5a00e44fe84818fd4d", "fields": {"departement": "92", "stop_lat": 48.801910761177105, "code_postal": "92020", "stop_lon": 2.2875120395185693, "coord": [48.801910761177105, 2.2875120395185693], "stop_id": 5067586, "stop_desc": "21 AVENUE GABRIEL PERI - 92020", "stop_name": "CENTRE DE CHATILLON - MARCHE"}, "geometry": {"type": "Point", "coordinates": [2.2875120395185693, 48.801910761177105]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c81ea0d960f30998765abd680235fc4c68770765", "fields": {"departement": "92", "stop_lat": 48.792856943696236, "code_postal": "92032", "stop_lon": 2.2807054156299085, "coord": [48.792856943696236, 2.2807054156299085], "stop_id": 5067598, "stop_desc": "FACE 34 AVENUE DU GENERAL LECLERC - 92032", "stop_name": "JACQUEMIN"}, "geometry": {"type": "Point", "coordinates": [2.2807054156299085, 48.792856943696236]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7e8a13b6222b8a591ebd55e002e5959a19db3e77", "fields": {"departement": "92", "stop_lat": 48.78461289587934, "code_postal": "92071", "stop_lon": 2.297702321341176, "coord": [48.78461289587934, 2.297702321341176], "stop_id": 5067609, "stop_desc": "30 AVENUE JEAN PERRIN - 92071", "stop_name": "LEON BLUM"}, "geometry": {"type": "Point", "coordinates": [2.297702321341176, 48.78461289587934]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5e5b2154855e9fb8e2edc01f17ef3dea7a20d1a0", "fields": {"departement": "92", "stop_lat": 48.78518996011179, "code_postal": "92071", "stop_lon": 2.3036728856596365, "coord": [48.78518996011179, 2.3036728856596365], "stop_id": 5067610, "stop_desc": "87-93 AVENUE DE BOURG LA REINE - 92071", "stop_name": "LES BLAGIS"}, "geometry": {"type": "Point", "coordinates": [2.3036728856596365, 48.78518996011179]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b0593c1a3d42b700d45f050b04d877363e0d3e24", "fields": {"departement": "92", "stop_lat": 48.785360359260764, "code_postal": "92032", "stop_lon": 2.3023806406217355, "coord": [48.785360359260764, 2.3023806406217355], "stop_id": 5067613, "stop_desc": "AVENUE JEAN PERRIN - 92032", "stop_name": "LES BLAGIS"}, "geometry": {"type": "Point", "coordinates": [2.3023806406217355, 48.785360359260764]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7990dab99706cf799cf8ed48c16f79d5d4497277", "fields": {"departement": "92", "stop_lat": 48.8297341467827, "code_postal": "92012", "stop_lon": 2.229275942430251, "coord": [48.8297341467827, 2.229275942430251], "stop_id": 5073970, "stop_desc": "PISTE GARE ROUTIERE - 92012", "stop_name": "PONT DE SEVRES-METRO"}, "geometry": {"type": "Point", "coordinates": [2.229275942430251, 48.8297341467827]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "62dad13279e2a53e14ea1ad13cccf837af6adabb", "fields": {"departement": "92", "stop_lat": 48.8149894949538, "code_postal": "92048", "stop_lon": 2.2339473492547812, "coord": [48.8149894949538, 2.2339473492547812], "stop_id": 5073977, "stop_desc": "40 BOULEVARD VERD-DE-ST JULIEN - 92048", "stop_name": "STALINGRAD"}, "geometry": {"type": "Point", "coordinates": [2.2339473492547812, 48.8149894949538]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ef6d741aaae9b8720f65463b4c6bc59185efd886", "fields": {"departement": "92", "stop_lat": 48.80783182434355, "code_postal": "92048", "stop_lon": 2.2405883554701855, "coord": [48.80783182434355, 2.2405883554701855], "stop_id": 5073982, "stop_desc": "AVENUE LOUVOIS - 92048", "stop_name": "VAL FLEURY RER"}, "geometry": {"type": "Point", "coordinates": [2.2405883554701855, 48.80783182434355]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "32fe68de4b8aa090a1f36260f6f4b1fddffc71cf", "fields": {"departement": "92", "stop_lat": 48.81007452345811, "code_postal": "92048", "stop_lon": 2.2466124805574057, "coord": [48.81007452345811, 2.2466124805574057], "stop_id": 5073984, "stop_desc": "1 BIS RUE HENRI BARBUSSE - 92048", "stop_name": "PAUL BERT"}, "geometry": {"type": "Point", "coordinates": [2.2466124805574057, 48.81007452345811]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "33f38135f75ba2da30816dd3e69bc390380c6e0a", "fields": {"departement": "92", "stop_lat": 48.81924553941387, "code_postal": "92040", "stop_lon": 2.2648751050171123, "coord": [48.81924553941387, 2.2648751050171123], "stop_id": 5073991, "stop_desc": "11 RUE DE L'EGALITE - 92040", "stop_name": "DEFENSE - EGALITE"}, "geometry": {"type": "Point", "coordinates": [2.2648751050171123, 48.81924553941387]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "53e0edc7aa8d23159d41196a4ec1ed49e0931190", "fields": {"departement": "92", "stop_lat": 48.81725930585249, "code_postal": "92040", "stop_lon": 2.2649595333518677, "coord": [48.81725930585249, 2.2649595333518677], "stop_id": 5073992, "stop_desc": "34 RUE RABELAIS - 92040", "stop_name": "VERDI"}, "geometry": {"type": "Point", "coordinates": [2.2649595333518677, 48.81725930585249]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0d6ebb81cb55d4402e8ea49348aca53c216f1ee4", "fields": {"departement": "78", "stop_lat": 48.80167972148193, "code_postal": "78646", "stop_lon": 2.13114179496101, "coord": [48.80167972148193, 2.13114179496101], "stop_id": 5079439, "stop_desc": "6 AVENUE DE PARIS - 78646", "stop_name": "HOTEL DE VILLE DE VERSAILLES"}, "geometry": {"type": "Point", "coordinates": [2.13114179496101, 48.80167972148193]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b54044b90ed034ac50be1da861b6e0ed0ead4764", "fields": {"departement": "78", "stop_lat": 48.80396872482966, "code_postal": "78686", "stop_lon": 2.1693256810760886, "coord": [48.80396872482966, 2.1693256810760886], "stop_id": 5079446, "stop_desc": "93 AVENUE DU GENERAL LECLERC - 78686", "stop_name": "GABRIEL PERI"}, "geometry": {"type": "Point", "coordinates": [2.1693256810760886, 48.80396872482966]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5bbec5f35f153fc5b700fa2490c91a80e17a5f5e", "fields": {"departement": "92", "stop_lat": 48.82904303376725, "code_postal": "92072", "stop_lon": 2.2303119593717184, "coord": [48.82904303376725, 2.2303119593717184], "stop_id": 5079461, "stop_desc": "GARE ROUTIERE - 92072", "stop_name": "PONT DE SEVRES"}, "geometry": {"type": "Point", "coordinates": [2.2303119593717184, 48.82904303376725]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ab0a889c4479e0d96edad332b18e5dbd18f9c127", "fields": {"departement": "92", "stop_lat": 48.80947415975704, "code_postal": "92022", "stop_lon": 2.186399224037896, "coord": [48.80947415975704, 2.186399224037896], "stop_id": 5079464, "stop_desc": "11 AVENUE DE LA RESISTANCE - 92022", "stop_name": "SECURITE SOCIALE"}, "geometry": {"type": "Point", "coordinates": [2.186399224037896, 48.80947415975704]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "354098a17a4fe96b50eda3c41bdc2ef959e76dcc", "fields": {"departement": "92", "stop_lat": 48.826516619377834, "code_postal": "92072", "stop_lon": 2.219835757126419, "coord": [48.826516619377834, 2.219835757126419], "stop_id": 5079474, "stop_desc": "25 BIS GRANDE RUE - 92072", "stop_name": "PARC DE SAINT-CLOUD"}, "geometry": {"type": "Point", "coordinates": [2.219835757126419, 48.826516619377834]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "beafc61908b5e941cf23207d59f37fa039c5e35d", "fields": {"departement": "92", "stop_lat": 48.80877507090612, "code_postal": "92022", "stop_lon": 2.1879525193180367, "coord": [48.80877507090612, 2.1879525193180367], "stop_id": 5079478, "stop_desc": "1427 AVENUE ROGER SALENGRO - 92022", "stop_name": "PUITS SANS VIN"}, "geometry": {"type": "Point", "coordinates": [2.1879525193180367, 48.80877507090612]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8927b2edc1a765b0334744dda0619a4aac5ce432", "fields": {"departement": "92", "stop_lat": 48.810819960857444, "code_postal": "92022", "stop_lon": 2.1917160854064868, "coord": [48.810819960857444, 2.1917160854064868], "stop_id": 5079479, "stop_desc": "AVENUE ROGER SALENGRO - 92022", "stop_name": "COURS GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.1917160854064868, 48.810819960857444]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8475d43398d32a01d47e5c83832516a86d46c2c9", "fields": {"departement": "75", "stop_lat": 48.89508299508572, "code_postal": "75117", "stop_lon": 2.3128702288076513, "coord": [48.89508299508572, 2.3128702288076513], "stop_id": 5081720, "stop_desc": "1 AVENUE DE LA PORTE DE CLICHY - 75117", "stop_name": "PORTE DE CLICHY-METRO"}, "geometry": {"type": "Point", "coordinates": [2.3128702288076513, 48.89508299508572]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f340a49d226981e6084e9905df5a91fcd49f22f3", "fields": {"departement": "92", "stop_lat": 48.90362978597083, "code_postal": "92024", "stop_lon": 2.3130706937969805, "coord": [48.90362978597083, 2.3130706937969805], "stop_id": 5081727, "stop_desc": "6 RUE DU GENERAL ROGUET - 92024", "stop_name": "REPUBLIQUE - FRANCOIS MITTERRAND"}, "geometry": {"type": "Point", "coordinates": [2.3130706937969805, 48.90362978597083]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "040cbc994700bfe49b8a2f210205e4ed32a20541", "fields": {"departement": "92", "stop_lat": 48.90880632553284, "code_postal": "92024", "stop_lon": 2.3130137422792876, "coord": [48.90880632553284, 2.3130137422792876], "stop_id": 5081731, "stop_desc": "90 RUE DU GENERAL ROGUET - 92024", "stop_name": "CIMETIERE DE CLICHY"}, "geometry": {"type": "Point", "coordinates": [2.3130137422792876, 48.90880632553284]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "caf9e27cee8122826d1f1ef30815f7f69c6d1949", "fields": {"departement": "92", "stop_lat": 48.908132249415516, "code_postal": "92024", "stop_lon": 2.312782285638509, "coord": [48.908132249415516, 2.312782285638509], "stop_id": 5081732, "stop_desc": "57 RUE DU GENERAL ROGUET - 92024", "stop_name": "CIMETIERE DE CLICHY"}, "geometry": {"type": "Point", "coordinates": [2.312782285638509, 48.908132249415516]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9585649006d458538c10940b27fffdf7bdf87f44", "fields": {"departement": "92", "stop_lat": 48.91827748420411, "code_postal": "92036", "stop_lon": 2.307882054617254, "coord": [48.91827748420411, 2.307882054617254], "stop_id": 5081737, "stop_desc": "AVENUE LAURENT CELY - 92036", "stop_name": "GRESILLONS - LAURENT CELY"}, "geometry": {"type": "Point", "coordinates": [2.307882054617254, 48.91827748420411]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8d2e11747465d9bf5253746746c9937be4229bae", "fields": {"departement": "92", "stop_lat": 48.92257278390993, "code_postal": "92036", "stop_lon": 2.3060385632404055, "coord": [48.92257278390993, 2.3060385632404055], "stop_id": 5081739, "stop_desc": "AVENUE LAURENT CELY - 92036", "stop_name": "PAUL VAILLANT COUTURIER"}, "geometry": {"type": "Point", "coordinates": [2.3060385632404055, 48.92257278390993]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "effed72df06896cb211d838738eb45d8ee16b6ac", "fields": {"departement": "92", "stop_lat": 48.92761375073523, "code_postal": "92036", "stop_lon": 2.303471434905307, "coord": [48.92761375073523, 2.303471434905307], "stop_id": 5081741, "stop_desc": "274 AVENUE LAURENT CELY - 92036", "stop_name": "PARC DES SEVINES"}, "geometry": {"type": "Point", "coordinates": [2.303471434905307, 48.92761375073523]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9693b26c8ae51d23dc45ecc9946035209920ff1a", "fields": {"departement": "92", "stop_lat": 48.93380543539746, "code_postal": "92036", "stop_lon": 2.302498926667594, "coord": [48.93380543539746, 2.302498926667594], "stop_id": 5081746, "stop_desc": "AVENUE MARCEL PAUL - 92036", "stop_name": "ROND-POINT PIERRE TIMBAUD"}, "geometry": {"type": "Point", "coordinates": [2.302498926667594, 48.93380543539746]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4e40280549fa2c39e15e8a139847a63f9e9ac198", "fields": {"departement": "92", "stop_lat": 48.936070392573825, "code_postal": "92036", "stop_lon": 2.303438635747753, "coord": [48.936070392573825, 2.303438635747753], "stop_id": 5081748, "stop_desc": "AVENUE MARCEL PAUL - 92036", "stop_name": "LES BARBANNIERS"}, "geometry": {"type": "Point", "coordinates": [2.303438635747753, 48.936070392573825]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c7fb7003fca2c7a53410c7056327882a7e7d5197", "fields": {"departement": "92", "stop_lat": 48.940239938344135, "code_postal": "92036", "stop_lon": 2.3022490497004666, "coord": [48.940239938344135, 2.3022490497004666], "stop_id": 5081750, "stop_desc": "AVENUE MARCEL PAUL - 92036", "stop_name": "ROUTE DU PORT"}, "geometry": {"type": "Point", "coordinates": [2.3022490497004666, 48.940239938344135]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7214445001d3be53d063a8393d47aec931b85df6", "fields": {"departement": "92", "stop_lat": 48.943169950678325, "code_postal": "92036", "stop_lon": 2.3033384986671446, "coord": [48.943169950678325, 2.3033384986671446], "stop_id": 5081751, "stop_desc": "114-154 AVENUE MARCEL PAUL - 92036", "stop_name": "CHAMPS FOURGONS"}, "geometry": {"type": "Point", "coordinates": [2.3033384986671446, 48.943169950678325]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9da444a9c6c7858cc9841aec7fb1f80e6440363f", "fields": {"departement": "92", "stop_lat": 48.94556061495836, "code_postal": "92036", "stop_lon": 2.303978177260309, "coord": [48.94556061495836, 2.303978177260309], "stop_id": 5081754, "stop_desc": "FACE 138 AVENUE MARCEL PAUL - 92036", "stop_name": "DEQUEVAUVILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.303978177260309, 48.94556061495836]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2efe92005778f3968ce2045e1f2eff910cce4a34", "fields": {"departement": "93", "stop_lat": 48.96121297521404, "code_postal": "93031", "stop_lon": 2.2959842493910503, "coord": [48.96121297521404, 2.2959842493910503], "stop_id": 5081762, "stop_desc": "95-97 AVENUE JOFFRE - 93031", "stop_name": "CYGNE D'ENGHIEN - JOFFRE"}, "geometry": {"type": "Point", "coordinates": [2.2959842493910503, 48.96121297521404]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "432cafdac181b479dfe6b6963e47bfd8b1d545e7", "fields": {"departement": "93", "stop_lat": 48.96137426016086, "code_postal": "93031", "stop_lon": 2.2946330010451486, "coord": [48.96137426016086, 2.2946330010451486], "stop_id": 5081764, "stop_desc": "1 ROUTE D'ARGENTEUIL - 93031", "stop_name": "CYGNE D'ENGHIEN"}, "geometry": {"type": "Point", "coordinates": [2.2946330010451486, 48.96137426016086]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e4b65a32170599030ada77ddacec076ba938bd77", "fields": {"departement": "93", "stop_lat": 48.961076104245834, "code_postal": "93031", "stop_lon": 2.2903751967109542, "coord": [48.961076104245834, 2.2903751967109542], "stop_id": 5081766, "stop_desc": "RUE DE LILLE - 93031", "stop_name": "GROS BUISSON"}, "geometry": {"type": "Point", "coordinates": [2.2903751967109542, 48.961076104245834]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6ec9ee9785c9131698600a339636e30039338866", "fields": {"departement": "95", "stop_lat": 48.96939592681502, "code_postal": "95555", "stop_lon": 2.2860133763587616, "coord": [48.96939592681502, 2.2860133763587616], "stop_id": 5081771, "stop_desc": "AVENUE JOHN KENNEDY - 95555", "stop_name": "FORUM"}, "geometry": {"type": "Point", "coordinates": [2.2860133763587616, 48.96939592681502]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9fd56496dc3c75db80f3d97eed376ec05bcf8548", "fields": {"departement": "95", "stop_lat": 48.968532758106015, "code_postal": "95555", "stop_lon": 2.284963214724821, "coord": [48.968532758106015, 2.284963214724821], "stop_id": 5081772, "stop_desc": "FACE 13 RUE BERTHIE ALBRECHT - 95555", "stop_name": "FORUM"}, "geometry": {"type": "Point", "coordinates": [2.284963214724821, 48.968532758106015]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "acc2126e536ce3aeb9386104837834ad19d9b3b4", "fields": {"departement": "95", "stop_lat": 48.97505136282944, "code_postal": "95555", "stop_lon": 2.2733530358401843, "coord": [48.97505136282944, 2.2733530358401843], "stop_id": 5081775, "stop_desc": "BOULEVARD DE L'ENTENTE - 95555", "stop_name": "STADE MICHEL HIDALGO"}, "geometry": {"type": "Point", "coordinates": [2.2733530358401843, 48.97505136282944]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e23c063d6e94771883e2ee0e48ceb66a694d125c", "fields": {"departement": "95", "stop_lat": 48.97990273196045, "code_postal": "95219", "stop_lon": 2.2708622769275495, "coord": [48.97990273196045, 2.2708622769275495], "stop_id": 5081779, "stop_desc": "RUE DE L'ARRIVEE - 95219", "stop_name": "ERMONT-EAUBONNE RER"}, "geometry": {"type": "Point", "coordinates": [2.2708622769275495, 48.97990273196045]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "995685d35d2a81d993a8a952487cf9facd28683f", "fields": {"departement": "92", "stop_lat": 48.82240196948267, "code_postal": "92040", "stop_lon": 2.2678107075413827, "coord": [48.82240196948267, 2.2678107075413827], "stop_id": 5091888, "stop_desc": "4 AVENUE BOURGAIN - 92040", "stop_name": "BOURGAIN - GENERAL GALLIENI"}, "geometry": {"type": "Point", "coordinates": [2.2678107075413827, 48.82240196948267]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e5f9889cd722c505c22607d5f25106daf40e815b", "fields": {"departement": "92", "stop_lat": 48.79957911641307, "code_postal": "92023", "stop_lon": 2.2629841926467162, "coord": [48.79957911641307, 2.2629841926467162], "stop_id": 5091899, "stop_desc": "5-7 RUE DE L'EGLISE - 92023", "stop_name": "MAIRIE DE CLAMART"}, "geometry": {"type": "Point", "coordinates": [2.2629841926467162, 48.79957911641307]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9fc0d90554c92e8e5f0ee4e82732698b86ab87a2", "fields": {"departement": "92", "stop_lat": 48.78553290437643, "code_postal": "92023", "stop_lon": 2.2405754511700735, "coord": [48.78553290437643, 2.2405754511700735], "stop_id": 5091907, "stop_desc": "RUE DE LA PORTE DE TRIVAUX - 92023", "stop_name": "ILE DE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.2405754511700735, 48.78553290437643]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c0b82456ef2820c982d30bb8b4a8a62297329038", "fields": {"departement": "92", "stop_lat": 48.78036340219182, "code_postal": "92023", "stop_lon": 2.2388442571820066, "coord": [48.78036340219182, 2.2388442571820066], "stop_id": 5091910, "stop_desc": "442 AVENUE DU GENERAL DE GAULLE - 92023", "stop_name": "PAVE BLANC"}, "geometry": {"type": "Point", "coordinates": [2.2388442571820066, 48.78036340219182]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "414ad762cd4df27b5ff0cbb0733d06d8645eac7c", "fields": {"departement": "92", "stop_lat": 48.800746208750255, "code_postal": "92023", "stop_lon": 2.260887283207438, "coord": [48.800746208750255, 2.260887283207438], "stop_id": 5091927, "stop_desc": "6 RUE DE MEUDON - 92023", "stop_name": "PLACE HUNEBELLE"}, "geometry": {"type": "Point", "coordinates": [2.260887283207438, 48.800746208750255]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "540238496e7723b7a9bc97331092e59052df8ae8", "fields": {"departement": "92", "stop_lat": 48.81148493414833, "code_postal": "92023", "stop_lon": 2.2582859145650356, "coord": [48.81148493414833, 2.2582859145650356], "stop_id": 5091932, "stop_desc": "90 AVENUE HENRI BARBUSSE - 92023", "stop_name": "FLEURY"}, "geometry": {"type": "Point", "coordinates": [2.2582859145650356, 48.81148493414833]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5c0a6af9e92478a2af47b6e19b6ef107c888c6c5", "fields": {"departement": "92", "stop_lat": 48.829545001537646, "code_postal": "92040", "stop_lon": 2.2642073155442732, "coord": [48.829545001537646, 2.2642073155442732], "stop_id": 5091940, "stop_desc": "FACE 31 RUE CAMILLE DESMOULINS - 92040", "stop_name": "ISSY - VAL DE SEINE"}, "geometry": {"type": "Point", "coordinates": [2.2642073155442732, 48.829545001537646]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0fc5f6b8776b48ce2504a902f190b78c5ddd23cd", "fields": {"departement": "92", "stop_lat": 48.82770486209949, "code_postal": "92040", "stop_lon": 2.26810308702108, "coord": [48.82770486209949, 2.26810308702108], "stop_id": 5091941, "stop_desc": "6-8 BOULEVARD DES FRERES VOISIN - 92040", "stop_name": "PRESIDENT ROBERT SCHUMAN"}, "geometry": {"type": "Point", "coordinates": [2.26810308702108, 48.82770486209949]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ac14f9c469ea44e787e5fbc29cb258a284a2a11c", "fields": {"departement": "92", "stop_lat": 48.827185492025485, "code_postal": "92040", "stop_lon": 2.271479650647873, "coord": [48.827185492025485, 2.271479650647873], "stop_id": 5091943, "stop_desc": "8 RUE MARCEAU - 92040", "stop_name": "MARCEAU"}, "geometry": {"type": "Point", "coordinates": [2.271479650647873, 48.827185492025485]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "15b8045388da702dedc00c98fc38349bda7febbc", "fields": {"departement": "92", "stop_lat": 48.81926294003921, "code_postal": "92040", "stop_lon": 2.2639359694747725, "coord": [48.81926294003921, 2.2639359694747725], "stop_id": 5091950, "stop_desc": "4-6 RUE DE L'EGALITE - 92040", "stop_name": "DEFENSE - EGALITE"}, "geometry": {"type": "Point", "coordinates": [2.2639359694747725, 48.81926294003921]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a371a6d95db749d1e68ce200464c9b149c8ef40b", "fields": {"departement": "92", "stop_lat": 48.80594889671298, "code_postal": "92023", "stop_lon": 2.258947462289062, "coord": [48.80594889671298, 2.258947462289062], "stop_id": 5091956, "stop_desc": "FACE 8 AVENUE HENRI BARBUSSE - 92023", "stop_name": "MARQUIS"}, "geometry": {"type": "Point", "coordinates": [2.258947462289062, 48.80594889671298]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1405593b2c18e5dc49e199bdbf789b2c6800688c", "fields": {"departement": "92", "stop_lat": 48.77639883447205, "code_postal": "92060", "stop_lon": 2.2492142676281586, "coord": [48.77639883447205, 2.2492142676281586], "stop_id": 5091967, "stop_desc": "1 AVENUE DESCARTES - 92060", "stop_name": "LANGEVIN"}, "geometry": {"type": "Point", "coordinates": [2.2492142676281586, 48.77639883447205]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a2d97fd5d5899cb44569e8681ce49a58276f87d3", "fields": {"departement": "92", "stop_lat": 48.77381241398715, "code_postal": "92060", "stop_lon": 2.2403932863130374, "coord": [48.77381241398715, 2.2403932863130374], "stop_id": 5091971, "stop_desc": "CONTRE-ALLEE DE L'AVENUE DE LA DIVISION LECLERC - 92060", "stop_name": "LA BOURSIDIERE"}, "geometry": {"type": "Point", "coordinates": [2.2403932863130374, 48.77381241398715]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f53cde7b68084655db0b41cf63c2fb58e66f1cbd", "fields": {"departement": "92", "stop_lat": 48.779528626795354, "code_postal": "92023", "stop_lon": 2.2401922289284277, "coord": [48.779528626795354, 2.2401922289284277], "stop_id": 5091974, "stop_desc": "AVENUE REAUMUR - 92023", "stop_name": "PAVE BLANC"}, "geometry": {"type": "Point", "coordinates": [2.2401922289284277, 48.779528626795354]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8c77fc22b95e412b70b67e8213b7c0a9f05cc777", "fields": {"departement": "92", "stop_lat": 48.77876932919637, "code_postal": "92060", "stop_lon": 2.246109518165149, "coord": [48.77876932919637, 2.246109518165149], "stop_id": 5091975, "stop_desc": "AVENUE DE GALILEE - 92060", "stop_name": "NEWTON - GALILEE"}, "geometry": {"type": "Point", "coordinates": [2.246109518165149, 48.77876932919637]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a9388e3a7355ff6e2863746aa61d2f7cf1708592", "fields": {"departement": "93", "stop_lat": 48.91227773399913, "code_postal": "93070", "stop_lon": 2.333764189783241, "coord": [48.91227773399913, 2.333764189783241], "stop_id": 5091985, "stop_desc": "4 PLACE DE LA REPUBLIQUE - 93070", "stop_name": "MAIRIE DE SAINT-OUEN"}, "geometry": {"type": "Point", "coordinates": [2.333764189783241, 48.91227773399913]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b72924c02fa0f2a7bf2808e808c7a2311eabeae5", "fields": {"departement": "93", "stop_lat": 48.91227773399913, "code_postal": "93070", "stop_lon": 2.333764189783241, "coord": [48.91227773399913, 2.333764189783241], "stop_id": 5091986, "stop_desc": "4 PLACE DE LA REPUBLIQUE - 93070", "stop_name": "MAIRIE DE SAINT-OUEN"}, "geometry": {"type": "Point", "coordinates": [2.333764189783241, 48.91227773399913]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "553fa340f815a1de74050c6321e5fab68258ed9e", "fields": {"departement": "93", "stop_lat": 48.917813643280915, "code_postal": "93070", "stop_lon": 2.3315820256086908, "coord": [48.917813643280915, 2.3315820256086908], "stop_id": 5091990, "stop_desc": "FACE 2 R DU LANDY - 93070", "stop_name": "QUAI DE SEINE"}, "geometry": {"type": "Point", "coordinates": [2.3315820256086908, 48.917813643280915]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e1cb4843ad5d3e9135c32c7bfaeb95e1615411fa", "fields": {"departement": "93", "stop_lat": 48.92192066646865, "code_postal": "93039", "stop_lon": 2.3311724575843846, "coord": [48.92192066646865, 2.3311724575843846], "stop_id": 5091994, "stop_desc": "QUAI DU CHATELIER - 93039", "stop_name": "CENTRE COMMERCIAL DE L'ILE-SAINT-DENIS"}, "geometry": {"type": "Point", "coordinates": [2.3311724575843846, 48.92192066646865]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8207dec9d18fe028853f21d05608947983c044df", "fields": {"departement": "94", "stop_lat": 48.808562977830384, "code_postal": "94003", "stop_lon": 2.3309408008390324, "coord": [48.808562977830384, 2.3309408008390324], "stop_id": 5161523, "stop_desc": "FACE 50 AVENUE LAPLACE - 94003", "stop_name": "LENINE"}, "geometry": {"type": "Point", "coordinates": [2.3309408008390324, 48.808562977830384]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "99964aba11b765d1e687ad5004ec7b688d1e5f7e", "fields": {"departement": "94", "stop_lat": 48.79403759305073, "code_postal": "94076", "stop_lon": 2.354259293159642, "coord": [48.79403759305073, 2.354259293159642], "stop_id": 5161535, "stop_desc": "17 RUE DE VERDUN - 94076", "stop_name": "INSTITUT GUSTAVE ROUSSY"}, "geometry": {"type": "Point", "coordinates": [2.354259293159642, 48.79403759305073]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e00d653cd31391ee599c46f39238a1470877080c", "fields": {"departement": "94", "stop_lat": 48.79357974632752, "code_postal": "94076", "stop_lon": 2.3499740181864297, "coord": [48.79357974632752, 2.3499740181864297], "stop_id": 5161536, "stop_desc": "RUE EDOUARD VAILLANT - 94076", "stop_name": "INSTITUT GUSTAVE ROUSSY - ENTREE PRINCIPALE"}, "geometry": {"type": "Point", "coordinates": [2.3499740181864297, 48.79357974632752]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "30290a286fae99f5aba1b21f6e5694ed3ca7ad48", "fields": {"departement": "94", "stop_lat": 48.79368759367313, "code_postal": "94076", "stop_lon": 2.350042062605198, "coord": [48.79368759367313, 2.350042062605198], "stop_id": 5161537, "stop_desc": "RUE EDOUARD VAILLANT - 94076", "stop_name": "INSTITUT GUSTAVE ROUSSY - ENTREE PRINCIPALE"}, "geometry": {"type": "Point", "coordinates": [2.350042062605198, 48.79368759367313]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "81fd43cab3e504e75323c888d27abfaa78ae4630", "fields": {"departement": "94", "stop_lat": 48.78839237866755, "code_postal": "94076", "stop_lon": 2.3592086500654466, "coord": [48.78839237866755, 2.3592086500654466], "stop_id": 5161542, "stop_desc": "83 AVENUE DE LA REPUBLIQUE - 94076", "stop_name": "HOPITAL PAUL GUIRAUD"}, "geometry": {"type": "Point", "coordinates": [2.3592086500654466, 48.78839237866755]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0632f3b9cc3ee4c84c477fd394a3697a41821d59", "fields": {"departement": "94", "stop_lat": 48.788562771525754, "code_postal": "94076", "stop_lon": 2.361167447217547, "coord": [48.788562771525754, 2.361167447217547], "stop_id": 5161545, "stop_desc": "52 AVENUE DE LA REPUBLIQUE - 94076", "stop_name": "AUGUSTE DELAUNE"}, "geometry": {"type": "Point", "coordinates": [2.361167447217547, 48.788562771525754]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f0fccca63b30513cb146cf40c82572ff4a9c4ef2", "fields": {"departement": "94", "stop_lat": 48.78795008686449, "code_postal": "94076", "stop_lon": 2.3677505802955436, "coord": [48.78795008686449, 2.3677505802955436], "stop_id": 5161546, "stop_desc": "PISTE GARE ROUTIERE - 94076", "stop_name": "VILLEJUIF - LOUIS ARAGON"}, "geometry": {"type": "Point", "coordinates": [2.3677505802955436, 48.78795008686449]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e3689b9ddb3d3c839f219c31c691bc0c9078f018", "fields": {"departement": "94", "stop_lat": 48.78730304269838, "code_postal": "94076", "stop_lon": 2.3674101521293744, "coord": [48.78730304269838, 2.3674101521293744], "stop_id": 5161547, "stop_desc": "PISTE GARE ROUTIERE - 94076", "stop_name": "VILLEJUIF - LOUIS ARAGON"}, "geometry": {"type": "Point", "coordinates": [2.3674101521293744, 48.78730304269838]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "507e2a41001f04083e348106285b431a0d0eea3d", "fields": {"departement": "92", "stop_lat": 48.821745681267025, "code_postal": "92046", "stop_lon": 2.313013571294374, "coord": [48.821745681267025, 2.313013571294374], "stop_id": 5221743, "stop_desc": "FACE 37 AV PIERRE BROSSOLETTE - 92046", "stop_name": "DEPINOY"}, "geometry": {"type": "Point", "coordinates": [2.313013571294374, 48.821745681267025]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1d76564546324b43e5a6ae4bafe95e1c652d089f", "fields": {"departement": "75", "stop_lat": 48.84213091926184, "code_postal": "75115", "stop_lon": 2.3208198044503017, "coord": [48.84213091926184, 2.3208198044503017], "stop_id": 5121374, "stop_desc": "PLACE RAOUL DAUTRY - 75115", "stop_name": "GARE MONTPARNASSE."}, "geometry": {"type": "Point", "coordinates": [2.3208198044503017, 48.84213091926184]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4191f053f485bfc25f88b5be1def75f5c97cfc80", "fields": {"departement": "75", "stop_lat": 48.844960299515556, "code_postal": "75115", "stop_lon": 2.3113142107734683, "coord": [48.844960299515556, 2.3113142107734683], "stop_id": 5121376, "stop_desc": "FACE 4 BOULEVARD PASTEUR - 75115", "stop_name": "SEVRES - LECOURBE"}, "geometry": {"type": "Point", "coordinates": [2.3113142107734683, 48.844960299515556]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ad2ddf49694115ddc9999cd8f646f6ecfe87bec3", "fields": {"departement": "75", "stop_lat": 48.85104242404219, "code_postal": "75116", "stop_lon": 2.279048603558448, "coord": [48.85104242404219, 2.279048603558448], "stop_id": 5121377, "stop_desc": "FACE 5 RUE MAURICE BOURDET - 75116", "stop_name": "PONT DE GRENELLE - MAURICE BOURDET"}, "geometry": {"type": "Point", "coordinates": [2.279048603558448, 48.85104242404219]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1e91057e0ab50f5eeb9a3160c8c4e0bffc96dc31", "fields": {"departement": "75", "stop_lat": 48.84187918982126, "code_postal": "75115", "stop_lon": 2.3202616185071085, "coord": [48.84187918982126, 2.3202616185071085], "stop_id": 5121382, "stop_desc": "PLACE RAOUL DAUTRY - 75115", "stop_name": "GARE MONTPARNASSE"}, "geometry": {"type": "Point", "coordinates": [2.3202616185071085, 48.84187918982126]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "60da14b9268792d8ce03e4fe168cb815252693e7", "fields": {"departement": "75", "stop_lat": 48.838184773438094, "code_postal": "75115", "stop_lon": 2.3168726270050803, "coord": [48.838184773438094, 2.3168726270050803], "stop_id": 5121386, "stop_desc": "10 PLACE DES 5 MARTYRS DU LYCEE BUFFON - 75115", "stop_name": "MONTPARNASSE 2 - GARE TGV"}, "geometry": {"type": "Point", "coordinates": [2.3168726270050803, 48.838184773438094]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1835b09311554f65b70974d455eb9ee59c51e7e5", "fields": {"departement": "75", "stop_lat": 48.838472494611395, "code_postal": "75115", "stop_lon": 2.3175805117777912, "coord": [48.838472494611395, 2.3175805117777912], "stop_id": 5121387, "stop_desc": "PLACE DES CINQ MARTYRS DU LYCEE BUFFON - 75115", "stop_name": "MONTPARNASSE 2 - GARE TGV"}, "geometry": {"type": "Point", "coordinates": [2.3175805117777912, 48.838472494611395]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e603fee8b90564f1c4b1528856096c76c2afbf9e", "fields": {"departement": "75", "stop_lat": 48.83643311204049, "code_postal": "75114", "stop_lon": 2.323204200254015, "coord": [48.83643311204049, 2.323204200254015], "stop_id": 5121390, "stop_desc": "108 AVENUE DU MAINE - 75114", "stop_name": "LOSSERAND - MAINE"}, "geometry": {"type": "Point", "coordinates": [2.323204200254015, 48.83643311204049]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "51dc68d7c1a825004ae293d7cbdd9b56692070ed", "fields": {"departement": "75", "stop_lat": 48.83237093332211, "code_postal": "75114", "stop_lon": 2.32515206500568, "coord": [48.83237093332211, 2.32515206500568], "stop_id": 5121395, "stop_desc": "FACE 180 AVENUE DU MAINE - 75114", "stop_name": "MAIRIE DU 14E"}, "geometry": {"type": "Point", "coordinates": [2.32515206500568, 48.83237093332211]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "32ed2129bdd3ed991d8117409e7f58c1b893db73", "fields": {"departement": "75", "stop_lat": 48.82856931662518, "code_postal": "75114", "stop_lon": 2.3267048042473495, "coord": [48.82856931662518, 2.3267048042473495], "stop_id": 5121397, "stop_desc": "FACE 222 AVENUE DU MAINE - 75114", "stop_name": "ALESIA - MAINE"}, "geometry": {"type": "Point", "coordinates": [2.3267048042473495, 48.82856931662518]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c77898ac489b034c6cf7fbf7700337588312a2fc", "fields": {"departement": "75", "stop_lat": 48.82425513830218, "code_postal": "75114", "stop_lon": 2.3255759172850463, "coord": [48.82425513830218, 2.3255759172850463], "stop_id": 5121400, "stop_desc": "130 AVENUE DU GENERAL LECLERC - 75114", "stop_name": "PORTE D'ORLEANS"}, "geometry": {"type": "Point", "coordinates": [2.3255759172850463, 48.82425513830218]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c9a125145b97519bac5855cceb2aa7434f23509d", "fields": {"departement": "75", "stop_lat": 48.82366103662885, "code_postal": "75114", "stop_lon": 2.3184300364197443, "coord": [48.82366103662885, 2.3184300364197443], "stop_id": 5121404, "stop_desc": "AVENUE ERNEST REYER - 75114", "stop_name": "JEAN MOULIN"}, "geometry": {"type": "Point", "coordinates": [2.3184300364197443, 48.82366103662885]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3fca739bd5a72e95a1947032c7e3092706af0722", "fields": {"departement": "92", "stop_lat": 48.81750220253278, "code_postal": "92046", "stop_lon": 2.3073674686478984, "coord": [48.81750220253278, 2.3073674686478984], "stop_id": 5121407, "stop_desc": "102 AVENUE PIERRE BROSSOLETTE - 92046", "stop_name": "12 FEVRIER 1934"}, "geometry": {"type": "Point", "coordinates": [2.3073674686478984, 48.81750220253278]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "65746554d7f9b09ee236a3a63cd3ded17aa3b6c2", "fields": {"departement": "92", "stop_lat": 48.81128070086906, "code_postal": "92020", "stop_lon": 2.3002947806132377, "coord": [48.81128070086906, 2.3002947806132377], "stop_id": 5121411, "stop_desc": "204 AVENUE DE PARIS - 92020", "stop_name": "CHATILLON-MONTROUGE"}, "geometry": {"type": "Point", "coordinates": [2.3002947806132377, 48.81128070086906]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bd4268c9a9ea6d184eb200edf235cc33a9cf92c5", "fields": {"departement": "92", "stop_lat": 48.801910761177105, "code_postal": "92020", "stop_lon": 2.2875120395185693, "coord": [48.801910761177105, 2.2875120395185693], "stop_id": 5121415, "stop_desc": "21 AVENUE GABRIEL PERI - 92020", "stop_name": "CENTRE DE CHATILLON - MARCHE"}, "geometry": {"type": "Point", "coordinates": [2.2875120395185693, 48.801910761177105]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "35e2c7f4baefe81522f5219636f9f03aeb70345f", "fields": {"departement": "92", "stop_lat": 48.79454220125779, "code_postal": "92020", "stop_lon": 2.2719835271448834, "coord": [48.79454220125779, 2.2719835271448834], "stop_id": 5121419, "stop_desc": "AVENUE DE VERDUN - 92020", "stop_name": "DIVISION LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.2719835271448834, 48.79454220125779]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8fb49ce58a490ec24f6220af33778992af2badae", "fields": {"departement": "92", "stop_lat": 48.78531651659945, "code_postal": "92023", "stop_lon": 2.2397461674974344, "coord": [48.78531651659945, 2.2397461674974344], "stop_id": 5121424, "stop_desc": "110 R DE LA PORTE DE TRIVAUX - 92023", "stop_name": "ILE DE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.2397461674974344, 48.78531651659945]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dccbde8b8debee874c4785910edae0c673f3deea", "fields": {"departement": "92", "stop_lat": 48.78346695759429, "code_postal": "92048", "stop_lon": 2.2315210746224183, "coord": [48.78346695759429, 2.2315210746224183], "stop_id": 5121428, "stop_desc": "AVENUE DE VILLACOUBLAY - 92048", "stop_name": "GEORGES MILLANDY"}, "geometry": {"type": "Point", "coordinates": [2.2315210746224183, 48.78346695759429]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "800a19f149cb03596f69bfdf2e81b051ffad2658", "fields": {"departement": "78", "stop_lat": 48.78559417064965, "code_postal": "78640", "stop_lon": 2.2188673554039333, "coord": [48.78559417064965, 2.2188673554039333], "stop_id": 5121431, "stop_desc": "GARE ROUTIERE - 78640", "stop_name": "VELIZY 2"}, "geometry": {"type": "Point", "coordinates": [2.2188673554039333, 48.78559417064965]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ba9c8f4bf4c928cced8cdf1b514efb60dfa93734", "fields": {"departement": "78", "stop_lat": 48.7820540389491, "code_postal": "78640", "stop_lon": 2.180929824283068, "coord": [48.7820540389491, 2.180929824283068], "stop_id": 5121441, "stop_desc": "AVENUE LOUIS BREGUET - 78640", "stop_name": "L'ONDE"}, "geometry": {"type": "Point", "coordinates": [2.180929824283068, 48.7820540389491]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9d261d3a09bceadc297ee74b65c0a106cf2e24f1", "fields": {"departement": "78", "stop_lat": 48.783380109019745, "code_postal": "78640", "stop_lon": 2.2250200150825936, "coord": [48.783380109019745, 2.2250200150825936], "stop_id": 5121445, "stop_desc": "RUE DU PETIT CLAMART - 78640", "stop_name": "MEUDON-LA-FORET"}, "geometry": {"type": "Point", "coordinates": [2.2250200150825936, 48.783380109019745]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4d47d6ff42b8614e4bfb51d4b019be76cfff4a7a", "fields": {"departement": "92", "stop_lat": 48.78971897350695, "code_postal": "92023", "stop_lon": 2.262290959769518, "coord": [48.78971897350695, 2.262290959769518], "stop_id": 5121448, "stop_desc": "125 AVENUE DU GENERAL DE GAULLE - 92023", "stop_name": "SOLEIL LEVANT"}, "geometry": {"type": "Point", "coordinates": [2.262290959769518, 48.78971897350695]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2ee32d95ca0499d6c0d402cba689daf1a71aedae", "fields": {"departement": "92", "stop_lat": 48.896472832917475, "code_postal": "92044", "stop_lon": 2.278152483179007, "coord": [48.896472832917475, 2.278152483179007], "stop_id": 5121462, "stop_desc": "FACE 143 RUE DANTON - 92044", "stop_name": "POMPIDOU"}, "geometry": {"type": "Point", "coordinates": [2.278152483179007, 48.896472832917475]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "80621f79751a22d8ed8d808fbf9ba4d99f4866c7", "fields": {"departement": "92", "stop_lat": 48.906532944296174, "code_postal": "92004", "stop_lon": 2.2857892496921637, "coord": [48.906532944296174, 2.2857892496921637], "stop_id": 5121469, "stop_desc": "19-21 RUE DE LA STATION - 92004", "stop_name": "RUE DE LA STATION"}, "geometry": {"type": "Point", "coordinates": [2.2857892496921637, 48.906532944296174]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6fd9dd6d5cd999c61e2ef06bdc59feb3286dcb2d", "fields": {"departement": "92", "stop_lat": 48.9097415790285, "code_postal": "92004", "stop_lon": 2.2863859616270723, "coord": [48.9097415790285, 2.2863859616270723], "stop_id": 5121470, "stop_desc": "4-6 AVENUE D'ARGENTEUIL - 92004", "stop_name": "GALLIENI"}, "geometry": {"type": "Point", "coordinates": [2.2863859616270723, 48.9097415790285]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1b7522e0c4b1e7060914729e7a77f1b609af932a", "fields": {"departement": "92", "stop_lat": 48.91233799498084, "code_postal": "92004", "stop_lon": 2.2844609115267955, "coord": [48.91233799498084, 2.2844609115267955], "stop_id": 5121473, "stop_desc": "47 AVENUE D'ARGENTEUIL - 92004", "stop_name": "COMETE"}, "geometry": {"type": "Point", "coordinates": [2.2844609115267955, 48.91233799498084]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cf7dd66b48546779979a4e2fa09cfbc65539dc72", "fields": {"departement": "92", "stop_lat": 48.92317699378374, "code_postal": "92036", "stop_lon": 2.28605910172606, "coord": [48.92317699378374, 2.28605910172606], "stop_id": 5121481, "stop_desc": "BOULEVARD PIERRE DE COUBERTIN - 92036", "stop_name": "LES AGNETTES-METRO"}, "geometry": {"type": "Point", "coordinates": [2.28605910172606, 48.92317699378374]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c2c5ce815002c807743a9f00aa164d2ec4397038", "fields": {"departement": "92", "stop_lat": 48.928370858133576, "code_postal": "92036", "stop_lon": 2.2847309866572316, "coord": [48.928370858133576, 2.2847309866572316], "stop_id": 5121483, "stop_desc": "BOULEVARD PIERRE DE COUBERTIN - 92036", "stop_name": "PATINOIRE"}, "geometry": {"type": "Point", "coordinates": [2.2847309866572316, 48.928370858133576]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c53e46c0b27a966dd264c84944616c8e4650d809", "fields": {"departement": "92", "stop_lat": 48.94108199634376, "code_postal": "92036", "stop_lon": 2.2940085161142836, "coord": [48.94108199634376, 2.2940085161142836], "stop_id": 5121491, "stop_desc": "ROUTE PRINCIPALE DU PORT - 92036", "stop_name": "DARSE N0 5"}, "geometry": {"type": "Point", "coordinates": [2.2940085161142836, 48.94108199634376]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "df0b374070308419accb2c2391a9bee8dd13b207", "fields": {"departement": "92", "stop_lat": 48.94430863599829, "code_postal": "92036", "stop_lon": 2.295069988612095, "coord": [48.94430863599829, 2.295069988612095], "stop_id": 5121494, "stop_desc": "ROUTE DU BASSIN NUMERO 6 - 92036", "stop_name": "BASSIN N0 5"}, "geometry": {"type": "Point", "coordinates": [2.295069988612095, 48.94430863599829]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "458cd0652a3a2c214e5b3e036579dd2f6717c1fc", "fields": {"departement": "93", "stop_lat": 48.95020746179774, "code_postal": "93039", "stop_lon": 2.3065676888040505, "coord": [48.95020746179774, 2.3065676888040505], "stop_id": 5121500, "stop_desc": "AVENUE DU PONT D'EPINAY - 93039", "stop_name": "PONT D'EPINAY"}, "geometry": {"type": "Point", "coordinates": [2.3065676888040505, 48.95020746179774]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d0a3fde2ab6d4b20a275d404218f7cd2d0c470fb", "fields": {"departement": "93", "stop_lat": 48.95499747019719, "code_postal": "93031", "stop_lon": 2.306905998884448, "coord": [48.95499747019719, 2.306905998884448], "stop_id": 5121502, "stop_desc": "115 RUE DE PARIS - 93031", "stop_name": "GILBERT BONNEMAISON"}, "geometry": {"type": "Point", "coordinates": [2.306905998884448, 48.95499747019719]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2a6597d099627f90619cd884225aceac7e1494b8", "fields": {"departement": "93", "stop_lat": 48.955741865588486, "code_postal": "93031", "stop_lon": 2.301488025682573, "coord": [48.955741865588486, 2.301488025682573], "stop_id": 5121504, "stop_desc": "RUE FELIX MERLIN - 93031", "stop_name": "EPINAY-SUR-SEINE - GARE"}, "geometry": {"type": "Point", "coordinates": [2.301488025682573, 48.955741865588486]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "277cd2a8bc0fd3a4558c5da1ce50f2cd4282fcb1", "fields": {"departement": "93", "stop_lat": 48.955452355277394, "code_postal": "93031", "stop_lon": 2.295524874607837, "coord": [48.955452355277394, 2.295524874607837], "stop_id": 5121505, "stop_desc": "RUE FELIX MERLIN - 93031", "stop_name": "EPINAY - ORGEMONT"}, "geometry": {"type": "Point", "coordinates": [2.295524874607837, 48.955452355277394]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1e64b3b702f6bef8843bc35766e360df039f9849", "fields": {"departement": "93", "stop_lat": 48.9568088163607, "code_postal": "93031", "stop_lon": 2.2940363157436994, "coord": [48.9568088163607, 2.2940363157436994], "stop_id": 5121507, "stop_desc": "10 RUE DE MARSEILLE - 93031", "stop_name": "RUE DE MARSEILLE"}, "geometry": {"type": "Point", "coordinates": [2.2940363157436994, 48.9568088163607]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cc4898161f5a8f10f167ed6bf05d6119de6ba00e", "fields": {"departement": "92", "stop_lat": 48.834185120336564, "code_postal": "92012", "stop_lon": 2.2543168572237273, "coord": [48.834185120336564, 2.2543168572237273], "stop_id": 5121563, "stop_desc": "95 AVENUE PIERRE GRENIER - 92012", "stop_name": "LES PEUPLIERS"}, "geometry": {"type": "Point", "coordinates": [2.2543168572237273, 48.834185120336564]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c2a3f5a68bb8c6055d519e6bdd1e20645a6ac0a8", "fields": {"departement": "92", "stop_lat": 48.8344191569267, "code_postal": "92012", "stop_lon": 2.254833825994953, "coord": [48.8344191569267, 2.254833825994953], "stop_id": 5121564, "stop_desc": "76-78 AVENUE PIERRE GRENIER - 92012", "stop_name": "LES PEUPLIERS"}, "geometry": {"type": "Point", "coordinates": [2.254833825994953, 48.8344191569267]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4b6372707d4480aa4d0d84833711daa3d4e653b2", "fields": {"departement": "92", "stop_lat": 48.83242292202691, "code_postal": "92012", "stop_lon": 2.2534211654934406, "coord": [48.83242292202691, 2.2534211654934406], "stop_id": 5121566, "stop_desc": "54 BIS AVENUE PIERRE GRENIER - 92012", "stop_name": "RUE DU POINT DU JOUR"}, "geometry": {"type": "Point", "coordinates": [2.2534211654934406, 48.83242292202691]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6ef90c1df4e9f28cba45a9fb4fdb04d99dd09360", "fields": {"departement": "92", "stop_lat": 48.82552589023673, "code_postal": "92012", "stop_lon": 2.248572839392253, "coord": [48.82552589023673, 2.248572839392253], "stop_id": 5121570, "stop_desc": "2 BIS AVENUE PIERRE GRENIER - 92012", "stop_name": "PONT DE BILLANCOURT"}, "geometry": {"type": "Point", "coordinates": [2.248572839392253, 48.82552589023673]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "51292a759970dbd82661896ba182e8f17df8aee4", "fields": {"departement": "92", "stop_lat": 48.80635626509692, "code_postal": "92048", "stop_lon": 2.238686132716897, "coord": [48.80635626509692, 2.238686132716897], "stop_id": 5121584, "stop_desc": "31 AVENUE LOUVOIS - 92048", "stop_name": "VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.238686132716897, 48.80635626509692]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e57853915189b3875e9a0a75b015aeb443eec80d", "fields": {"departement": "92", "stop_lat": 48.80648020167826, "code_postal": "92048", "stop_lon": 2.236427141669803, "coord": [48.80648020167826, 2.236427141669803], "stop_id": 5121585, "stop_desc": "FACE 9 R DE L'EGLISE - 92048", "stop_name": "EGLISE DE MEUDON"}, "geometry": {"type": "Point", "coordinates": [2.236427141669803, 48.80648020167826]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "38eb8234438087e30515a54a23ac2caf41a372a9", "fields": {"departement": "92", "stop_lat": 48.78905975534039, "code_postal": "92048", "stop_lon": 2.2341349515820745, "coord": [48.78905975534039, 2.2341349515820745], "stop_id": 5121589, "stop_desc": "FACE 2 AVENUE ROBERT SCHUMAN - 92048", "stop_name": "TAPIS VERT"}, "geometry": {"type": "Point", "coordinates": [2.2341349515820745, 48.78905975534039]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fd8427757da6b5337d6ca402aa7c3efff6cb0f95", "fields": {"departement": "92", "stop_lat": 48.78882610499131, "code_postal": "92048", "stop_lon": 2.234176222510831, "coord": [48.78882610499131, 2.234176222510831], "stop_id": 5121590, "stop_desc": "AVENUE ROBERT SCHUMAN - 92048", "stop_name": "TAPIS VERT"}, "geometry": {"type": "Point", "coordinates": [2.234176222510831, 48.78882610499131]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c9231ab66a48376d48c1f5864bf723746b400d1b", "fields": {"departement": "92", "stop_lat": 48.787346674834005, "code_postal": "92048", "stop_lon": 2.2281126885775113, "coord": [48.787346674834005, 2.2281126885775113], "stop_id": 5121594, "stop_desc": "FACE 15 AVENUE DE CELLE - 92048", "stop_name": "EGLISE - AVENUE DE CELLE"}, "geometry": {"type": "Point", "coordinates": [2.2281126885775113, 48.787346674834005]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ec25654a67498f4946b54edcd7b6e51056952faf", "fields": {"departement": "92", "stop_lat": 48.787585335210935, "code_postal": "92048", "stop_lon": 2.233675410556486, "coord": [48.787585335210935, 2.233675410556486], "stop_id": 5121598, "stop_desc": "FACE 5-7 AVENUE DU MARECHAL DE LATTRE DE TASSIGNY - 92048", "stop_name": "ESPACE CULTUREL - ROBERT DOISNEAU"}, "geometry": {"type": "Point", "coordinates": [2.233675410556486, 48.787585335210935]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ca2543f3345137e037c6e21edbfe8f8d72682dcb", "fields": {"departement": "92", "stop_lat": 48.81796908100965, "code_postal": "92040", "stop_lon": 2.2510763751899763, "coord": [48.81796908100965, 2.2510763751899763], "stop_id": 5121604, "stop_desc": "143 AVENUE DE VERDUN - 92040", "stop_name": "VERDUN - JEAN PIERRE TIMBAUD"}, "geometry": {"type": "Point", "coordinates": [2.2510763751899763, 48.81796908100965]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2c02fdd003b181ed5f08930852bfd3ffb533f622", "fields": {"departement": "92", "stop_lat": 48.829042334210506, "code_postal": "92012", "stop_lon": 2.2295360266497624, "coord": [48.829042334210506, 2.2295360266497624], "stop_id": 5121606, "stop_desc": "AVENUE DU GENERAL LECLERC - 92012", "stop_name": "PONT DE SEVRES-METRO"}, "geometry": {"type": "Point", "coordinates": [2.2295360266497624, 48.829042334210506]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0881acc65955495a32e0a7346ce31c09dfcd125c", "fields": {"departement": "92", "stop_lat": 48.829042334210506, "code_postal": "92012", "stop_lon": 2.2295360266497624, "coord": [48.829042334210506, 2.2295360266497624], "stop_id": 5121607, "stop_desc": "AVENUE DU GENERAL LECLERC - 92012", "stop_name": "PONT DE SEVRES-METRO"}, "geometry": {"type": "Point", "coordinates": [2.2295360266497624, 48.829042334210506]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "264690e45d49d500def732a11c9e8ce4dc664acd", "fields": {"departement": "92", "stop_lat": 48.829775740048866, "code_postal": "92012", "stop_lon": 2.235687612732616, "coord": [48.829775740048866, 2.235687612732616], "stop_id": 5121609, "stop_desc": "1118 RUE YVES KERMEN - 92012", "stop_name": "GENERAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.235687612732616, 48.829775740048866]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "29b20479a72acbf698de3e243b1a8a1059fa019d", "fields": {"departement": "92", "stop_lat": 48.825354349659136, "code_postal": "92012", "stop_lon": 2.24753862744889, "coord": [48.825354349659136, 2.24753862744889], "stop_id": 5121618, "stop_desc": "3 RUE YVES KERMEN - 92012", "stop_name": "PONT DE BILLANCOURT"}, "geometry": {"type": "Point", "coordinates": [2.24753862744889, 48.825354349659136]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e8c33ec3f9a64594c3132633f7a0eae75d055d09", "fields": {"departement": "92", "stop_lat": 48.81879641264312, "code_postal": "92048", "stop_lon": 2.229570900490973, "coord": [48.81879641264312, 2.229570900490973], "stop_id": 5121629, "stop_desc": "PLACE DE LA GARE - 92048", "stop_name": "GARE DE BELLEVUE"}, "geometry": {"type": "Point", "coordinates": [2.229570900490973, 48.81879641264312]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "213ff91fb2a44c2202d79168eaa0cb799393a474", "fields": {"departement": "92", "stop_lat": 48.81661431402316, "code_postal": "92048", "stop_lon": 2.231712137797927, "coord": [48.81661431402316, 2.231712137797927], "stop_id": 5121631, "stop_desc": "16 BOULEVARD VERD-DE-ST JULIEN - 92048", "stop_name": "JEANNE D'ARC"}, "geometry": {"type": "Point", "coordinates": [2.231712137797927, 48.81661431402316]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "80aa7f75e68ff713142f823fa24952d011fdbd8d", "fields": {"departement": "92", "stop_lat": 48.81183731423944, "code_postal": "92048", "stop_lon": 2.2368930295294303, "coord": [48.81183731423944, 2.2368930295294303], "stop_id": 5121635, "stop_desc": "PLACE RABELAIS - 92048", "stop_name": "RABELAIS"}, "geometry": {"type": "Point", "coordinates": [2.2368930295294303, 48.81183731423944]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "58ad2525e564874caf73e643b2e4bf058d3e27bc", "fields": {"departement": "92", "stop_lat": 48.789958187823, "code_postal": "92048", "stop_lon": 2.223863177977147, "coord": [48.789958187823, 2.223863177977147], "stop_id": 5121650, "stop_desc": "FACE 2 AVENUE DU MARECHAL LECLERC - 92048", "stop_name": "CENTRE COMMERCIAL DU MOULIN"}, "geometry": {"type": "Point", "coordinates": [2.223863177977147, 48.789958187823]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0a5f4cebc1e2e0a229a764cd04f2dd3a7f6222ef", "fields": {"departement": "92", "stop_lat": 48.787346674834005, "code_postal": "92048", "stop_lon": 2.2281126885775113, "coord": [48.787346674834005, 2.2281126885775113], "stop_id": 5121658, "stop_desc": "FACE 15 AVENUE DE CELLE - 92048", "stop_name": "EGLISE - AVENUE DE CELLE"}, "geometry": {"type": "Point", "coordinates": [2.2281126885775113, 48.787346674834005]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "67238466874987761f862af8cf011a6ed374b1bd", "fields": {"departement": "92", "stop_lat": 48.81796908100965, "code_postal": "92040", "stop_lon": 2.2510763751899763, "coord": [48.81796908100965, 2.2510763751899763], "stop_id": 5121665, "stop_desc": "143 AVENUE DE VERDUN - 92040", "stop_name": "VERDUN - JEAN PIERRE TIMBAUD"}, "geometry": {"type": "Point", "coordinates": [2.2510763751899763, 48.81796908100965]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bff9d472cd88f60223d7f8153cef0a721a0307f3", "fields": {"departement": "92", "stop_lat": 48.82834681210375, "code_postal": "92012", "stop_lon": 2.2358129236647164, "coord": [48.82834681210375, 2.2358129236647164], "stop_id": 5121673, "stop_desc": "37 CRS DE L'ILE SEGUIN - 92012", "stop_name": "COURS DE L'ILE SEGUIN"}, "geometry": {"type": "Point", "coordinates": [2.2358129236647164, 48.82834681210375]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dff9b9adec0be0eb8a00a8100653780d4ef0c27b", "fields": {"departement": "92", "stop_lat": 48.82614646071634, "code_postal": "92012", "stop_lon": 2.237736533402742, "coord": [48.82614646071634, 2.237736533402742], "stop_id": 5121675, "stop_desc": "50 AV PIERRE LEFAUCHEUX - 92012", "stop_name": "PARC DE BILLANCOURT"}, "geometry": {"type": "Point", "coordinates": [2.237736533402742, 48.82614646071634]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "08377b6f63da6955b1ba301c30d130530de7645e", "fields": {"departement": "92", "stop_lat": 48.82779325540712, "code_postal": "92012", "stop_lon": 2.2402244721107896, "coord": [48.82779325540712, 2.2402244721107896], "stop_id": 5121676, "stop_desc": "FACE 738 RUE YVES KERMEN - 92012", "stop_name": "EMILE ZOLA"}, "geometry": {"type": "Point", "coordinates": [2.2402244721107896, 48.82779325540712]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d828ae3aee69e45a17b2069315408f93a7d02c01", "fields": {"departement": "92", "stop_lat": 48.81870583090119, "code_postal": "92048", "stop_lon": 2.2391526467363607, "coord": [48.81870583090119, 2.2391526467363607], "stop_id": 5121690, "stop_desc": "19 ROUTE DES GARDES - 92048", "stop_name": "MEUDON SUR SEINE-TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.2391526467363607, 48.81870583090119]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "82a9452ec44e199f48b31512054bb497b76a7866", "fields": {"departement": "92", "stop_lat": 48.81640815008475, "code_postal": "92048", "stop_lon": 2.2323385970316534, "coord": [48.81640815008475, 2.2323385970316534], "stop_id": 5121694, "stop_desc": "17 BIS BOULEVARD VERD DE SAINT JULIEN - 92048", "stop_name": "JEANNE D'ARC"}, "geometry": {"type": "Point", "coordinates": [2.2323385970316534, 48.81640815008475]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "81d5027c8cf9c7ece1cda295e389e0ffd27157eb", "fields": {"departement": "92", "stop_lat": 48.7899467198817, "code_postal": "92048", "stop_lon": 2.230909366786044, "coord": [48.7899467198817, 2.230909366786044], "stop_id": 5121707, "stop_desc": "4 AVENUE MEDERIC - 92048", "stop_name": "SQUARE MEDERIC"}, "geometry": {"type": "Point", "coordinates": [2.230909366786044, 48.7899467198817]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "49fca9c327d71ca11c4894d67256bc8be3b3c8fa", "fields": {"departement": "92", "stop_lat": 48.789958187823, "code_postal": "92048", "stop_lon": 2.223863177977147, "coord": [48.789958187823, 2.223863177977147], "stop_id": 5121712, "stop_desc": "FACE 2 AVENUE DU MARECHAL LECLERC - 92048", "stop_name": "CENTRE COMMERCIAL DU MOULIN"}, "geometry": {"type": "Point", "coordinates": [2.223863177977147, 48.789958187823]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "70cf970805e27bbc3ee47571c8798d85bcc28cbf", "fields": {"departement": "92", "stop_lat": 48.81675241939392, "code_postal": "92046", "stop_lon": 2.294847026259128, "coord": [48.81675241939392, 2.294847026259128], "stop_id": 5121766, "stop_desc": "RUE RAYMOND DAVID - 92046", "stop_name": "PAUL BERT"}, "geometry": {"type": "Point", "coordinates": [2.294847026259128, 48.81675241939392]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "37972f750afb8c72e05810a5e26479ecf9cf54bd", "fields": {"departement": "92", "stop_lat": 48.81184684050432, "code_postal": "92046", "stop_lon": 2.3000086019990116, "coord": [48.81184684050432, 2.3000086019990116], "stop_id": 5121771, "stop_desc": "FACE 176 BOULEVARD CAMELINAT - 92046", "stop_name": "MAISON BLANCHE"}, "geometry": {"type": "Point", "coordinates": [2.3000086019990116, 48.81184684050432]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "87b825754b72efd7b37282871db40004cbe7e49c", "fields": {"departement": "92", "stop_lat": 48.81066237714939, "code_postal": "92007", "stop_lon": 2.3067590440609598, "coord": [48.81066237714939, 2.3067590440609598], "stop_id": 5121773, "stop_desc": "FACE 202BI AVENUE MARX DORMOY - 92007", "stop_name": "MAURICE ARNOUX"}, "geometry": {"type": "Point", "coordinates": [2.3067590440609598, 48.81066237714939]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cfb8a5d7bc6d2675960032990d09c83b3c996c0a", "fields": {"departement": "92", "stop_lat": 48.79954272453628, "code_postal": "92007", "stop_lon": 2.3006024483473393, "coord": [48.79954272453628, 2.3006024483473393], "stop_id": 5121774, "stop_desc": "71 RUE ALPHONSE PLUCHET - 92007", "stop_name": "PLUCHET"}, "geometry": {"type": "Point", "coordinates": [2.3006024483473393, 48.79954272453628]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fbce96fb4c479ec6455b690cdc24f7b6653cca0b", "fields": {"departement": "92", "stop_lat": 48.79802381988969, "code_postal": "92007", "stop_lon": 2.300739567791537, "coord": [48.79802381988969, 2.300739567791537], "stop_id": 5121777, "stop_desc": "6 RUE FROIDE - 92007", "stop_name": "RUE FROIDE"}, "geometry": {"type": "Point", "coordinates": [2.300739567791537, 48.79802381988969]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "87e44ed1fe9d33b85a21bd711121554c36826aa8", "fields": {"departement": "92", "stop_lat": 48.79497833578604, "code_postal": "92007", "stop_lon": 2.305639127179581, "coord": [48.79497833578604, 2.305639127179581], "stop_id": 5121780, "stop_desc": "AVENUE ALBERT PETIT - 92007", "stop_name": "MATHURINS"}, "geometry": {"type": "Point", "coordinates": [2.305639127179581, 48.79497833578604]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5a0361c4af160c815763c18b02bd223f7a01c57f", "fields": {"departement": "92", "stop_lat": 48.78518996011179, "code_postal": "92071", "stop_lon": 2.3036728856596365, "coord": [48.78518996011179, 2.3036728856596365], "stop_id": 5121790, "stop_desc": "87-93 AVENUE DE BOURG LA REINE - 92071", "stop_name": "LES BLAGIS"}, "geometry": {"type": "Point", "coordinates": [2.3036728856596365, 48.78518996011179]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "addecd225afa881f124d29bd366ff48ec92b9372", "fields": {"departement": "92", "stop_lat": 48.78565914388523, "code_postal": "92014", "stop_lon": 2.3108541730810153, "coord": [48.78565914388523, 2.3108541730810153], "stop_id": 5121792, "stop_desc": "5 RUE DES BAS COQUARTS - 92014", "stop_name": "LES BAS COQUARTS"}, "geometry": {"type": "Point", "coordinates": [2.3108541730810153, 48.78565914388523]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3a4eca006182d81e832c7dbd00587aaa2090c1ab", "fields": {"departement": "92", "stop_lat": 48.788391316467134, "code_postal": "92007", "stop_lon": 2.310145469278022, "coord": [48.788391316467134, 2.310145469278022], "stop_id": 5121794, "stop_desc": "RUE DES FRERES LUMIERE - 92007", "stop_name": "FRERES LUMIERE"}, "geometry": {"type": "Point", "coordinates": [2.310145469278022, 48.788391316467134]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d6e8ad7ae5acbb6839835fa214bbb953d7ba7e34", "fields": {"departement": "92", "stop_lat": 48.795754436146936, "code_postal": "92007", "stop_lon": 2.3213922506374303, "coord": [48.795754436146936, 2.3213922506374303], "stop_id": 5121799, "stop_desc": "168-170 AVENUE ARISTIDE BRIAND - 92007", "stop_name": "MARCEL BONNET"}, "geometry": {"type": "Point", "coordinates": [2.3213922506374303, 48.795754436146936]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b16abe707ba3b8d7e5b67c33ae4de594d80a9c76", "fields": {"departement": "92", "stop_lat": 48.82287845737709, "code_postal": "92072", "stop_lon": 2.2217223427454194, "coord": [48.82287845737709, 2.2217223427454194], "stop_id": 5121811, "stop_desc": "24 AVENUE DE LA DIVISION LECLERC - 92072", "stop_name": "BRIMBORION - DIVISION LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.2217223427454194, 48.82287845737709]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0dd36f4a3a8939487cfa38971dcad157c4c2262a", "fields": {"departement": "78", "stop_lat": 48.783380109019745, "code_postal": "78640", "stop_lon": 2.2250200150825936, "coord": [48.783380109019745, 2.2250200150825936], "stop_id": 5121817, "stop_desc": "RUE DU PETIT CLAMART - 78640", "stop_name": "MEUDON-LA-FORET"}, "geometry": {"type": "Point", "coordinates": [2.2250200150825936, 48.783380109019745]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4dd7b16a1f5349065ba8be1a22bceccd3614114c", "fields": {"departement": "92", "stop_lat": 48.777551201449555, "code_postal": "92023", "stop_lon": 2.2296699995679092, "coord": [48.777551201449555, 2.2296699995679092], "stop_id": 5121819, "stop_desc": "11 ROUTE DE LA GARENNE - 92023", "stop_name": "ROND-POINT DU PETIT CLAMART"}, "geometry": {"type": "Point", "coordinates": [2.2296699995679092, 48.777551201449555]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9e3e7b00c4cac5109173d31927fcac2cfad9aa67", "fields": {"departement": "92", "stop_lat": 48.77070774393733, "code_postal": "92019", "stop_lon": 2.2469939065189317, "coord": [48.77070774393733, 2.2469939065189317], "stop_id": 5121821, "stop_desc": "369 AVENUE DE LA DIVISION LECLERC - 92019", "stop_name": "FERME DE MALABRY"}, "geometry": {"type": "Point", "coordinates": [2.2469939065189317, 48.77070774393733]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bda41e4abdcd85d2c3451025e297fe4a7e025d7a", "fields": {"departement": "92", "stop_lat": 48.78150498892182, "code_postal": "92060", "stop_lon": 2.2638940624309085, "coord": [48.78150498892182, 2.2638940624309085], "stop_id": 5121827, "stop_desc": "AVENUE CHARLES DE GAULLE - 92060", "stop_name": "COEUR DE VILLE"}, "geometry": {"type": "Point", "coordinates": [2.2638940624309085, 48.78150498892182]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b1e42253f07f31e3b53a88541819361dc0bd66fc", "fields": {"departement": "92", "stop_lat": 48.784710260764584, "code_postal": "92048", "stop_lon": 2.2249491345287304, "coord": [48.784710260764584, 2.2249491345287304], "stop_id": 5121848, "stop_desc": "12 RUE DE LA PEPINIERE - 92048", "stop_name": "DE LATTRE DE TASSIGNY"}, "geometry": {"type": "Point", "coordinates": [2.2249491345287304, 48.784710260764584]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "85a767ff167e9b4a54e39b0af58bdd25351a4c18", "fields": {"departement": "92", "stop_lat": 48.785222264622654, "code_postal": "92048", "stop_lon": 2.2246215939546223, "coord": [48.785222264622654, 2.2246215939546223], "stop_id": 5121850, "stop_desc": "14 R DE LA PEPINIERE - 92048", "stop_name": "DE LATTRE DE TASSIGNY."}, "geometry": {"type": "Point", "coordinates": [2.2246215939546223, 48.785222264622654]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cd20bb08283cdca4832e558282bf49adbb67abfd", "fields": {"departement": "92", "stop_lat": 48.78756642646553, "code_postal": "92048", "stop_lon": 2.2228482489959354, "coord": [48.78756642646553, 2.2228482489959354], "stop_id": 5121851, "stop_desc": "38 AVENUE COLONEL MARCEL MORANE - 92048", "stop_name": "AERODROME MORANE"}, "geometry": {"type": "Point", "coordinates": [2.2228482489959354, 48.78756642646553]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "25c43aa305baaaa409501b80915cb5102f337626", "fields": {"departement": "92", "stop_lat": 48.82719400030173, "code_postal": "92072", "stop_lon": 2.2232373238068854, "coord": [48.82719400030173, 2.2232373238068854], "stop_id": 5121858, "stop_desc": "1 GRANDE RUE - 92072", "stop_name": "MUSEE DE SEVRES"}, "geometry": {"type": "Point", "coordinates": [2.2232373238068854, 48.82719400030173]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1d32592ec70bec755e656da4d7bf0f801a2ea7e3", "fields": {"departement": "91", "stop_lat": 48.728684203818474, "code_postal": "91377", "stop_lon": 2.254254164683764, "coord": [48.728684203818474, 2.254254164683764], "stop_id": 5121932, "stop_desc": "AVENUE JEAN MONNET - 91377", "stop_name": "LES RUELLES"}, "geometry": {"type": "Point", "coordinates": [2.254254164683764, 48.728684203818474]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a12923c1b96b0d3d0bcecf046174f6dd17ffb5a8", "fields": {"departement": "91", "stop_lat": 48.72838680512074, "code_postal": "91377", "stop_lon": 2.2531405445199626, "coord": [48.72838680512074, 2.2531405445199626], "stop_id": 5121933, "stop_desc": "48 AVENUE GEORGES CLEMENCEAU - 91377", "stop_name": "LES RUELLES"}, "geometry": {"type": "Point", "coordinates": [2.2531405445199626, 48.72838680512074]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "38d67ca4a8b1d63b9e1f973e4515db876fe6da74", "fields": {"departement": "91", "stop_lat": 48.73035814816352, "code_postal": "91377", "stop_lon": 2.257335750179739, "coord": [48.73035814816352, 2.257335750179739], "stop_id": 5121934, "stop_desc": "AVENUE DU PRESIDENT ALLENDE - 91377", "stop_name": "PRESIDENT ALLENDE"}, "geometry": {"type": "Point", "coordinates": [2.257335750179739, 48.73035814816352]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "51aa88947d8648645947ddc4f192a456320912f5", "fields": {"departement": "91", "stop_lat": 48.73042073643698, "code_postal": "91377", "stop_lon": 2.256846520054254, "coord": [48.73042073643698, 2.256846520054254], "stop_id": 5121935, "stop_desc": "AVENUE DU PRESIDENT ALLENDE - 91377", "stop_name": "PRESIDENT ALLENDE"}, "geometry": {"type": "Point", "coordinates": [2.256846520054254, 48.73042073643698]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "499c59398db2a668bea0a9dfc83c330e6cac9376", "fields": {"departement": "91", "stop_lat": 48.73445685515161, "code_postal": "91377", "stop_lon": 2.2573838025168427, "coord": [48.73445685515161, 2.2573838025168427], "stop_id": 5121939, "stop_desc": "51 BOULEVARD DU 1ER MAI - 91377", "stop_name": "GEORGES MANDEL"}, "geometry": {"type": "Point", "coordinates": [2.2573838025168427, 48.73445685515161]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e4579274ead975fe571bc495be16ed856fb4a11c", "fields": {"departement": "91", "stop_lat": 48.73645569981123, "code_postal": "91377", "stop_lon": 2.262680297633257, "coord": [48.73645569981123, 2.262680297633257], "stop_id": 5121943, "stop_desc": "BOULEVARD DE LA PAIX - 91377", "stop_name": "EMILE ZOLA"}, "geometry": {"type": "Point", "coordinates": [2.262680297633257, 48.73645569981123]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d5dff1d918442ce468e3833ae8b957a086404448", "fields": {"departement": "91", "stop_lat": 48.74586122520928, "code_postal": "91645", "stop_lon": 2.269013842406873, "coord": [48.74586122520928, 2.269013842406873], "stop_id": 5121951, "stop_desc": "FACE 56 BOULEVARD DU MARECHAL FOCH - 91645", "stop_name": "PARON"}, "geometry": {"type": "Point", "coordinates": [2.269013842406873, 48.74586122520928]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dc025f83438362604f70e0eb907087ffe9ee5b93", "fields": {"departement": "91", "stop_lat": 48.74985373505479, "code_postal": "91645", "stop_lon": 2.2721211987921035, "coord": [48.74985373505479, 2.2721211987921035], "stop_id": 5121952, "stop_desc": "BOULEVARD DU MARECHAL FOCH - 91645", "stop_name": "LE CLOS"}, "geometry": {"type": "Point", "coordinates": [2.2721211987921035, 48.74985373505479]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c4a3ed62b62d3b43c8d9428e0ceda05a5425cb8e", "fields": {"departement": "92", "stop_lat": 48.762346781670225, "code_postal": "92019", "stop_lon": 2.2712354343075263, "coord": [48.762346781670225, 2.2712354343075263], "stop_id": 5121957, "stop_desc": "RUE JEAN-BAPTISTE CLEMENT - 92019", "stop_name": "FACULTE DE PHARMACIE"}, "geometry": {"type": "Point", "coordinates": [2.2712354343075263, 48.762346781670225]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "61585116fb4a6dbdeb3f147eadec7a7c5c1e42db", "fields": {"departement": "92", "stop_lat": 48.762157789083936, "code_postal": "92019", "stop_lon": 2.270800623222475, "coord": [48.762157789083936, 2.270800623222475], "stop_id": 5121958, "stop_desc": "RUE JEAN-BAPTISTE CLEMENT - 92019", "stop_name": "FACULTE DE PHARMACIE"}, "geometry": {"type": "Point", "coordinates": [2.270800623222475, 48.762157789083936]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7c3477946bd02780e65182096eef1dedff32f081", "fields": {"departement": "92", "stop_lat": 48.77569758793708, "code_postal": "92019", "stop_lon": 2.277936321101258, "coord": [48.77569758793708, 2.277936321101258], "stop_id": 5121969, "stop_desc": "15-17 AVENUE ROGER SALENGRO - 92019", "stop_name": "PROFESSEUR EINSTEIN"}, "geometry": {"type": "Point", "coordinates": [2.277936321101258, 48.77569758793708]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c4a4e8844d372b9d0c471f8ba2548e511c0b96d4", "fields": {"departement": "92", "stop_lat": 48.775562577228506, "code_postal": "92019", "stop_lon": 2.277555707263493, "coord": [48.775562577228506, 2.277555707263493], "stop_id": 5121970, "stop_desc": "6 AVENUE ROGER SALENGRO - 92019", "stop_name": "PROFESSEUR EINSTEIN"}, "geometry": {"type": "Point", "coordinates": [2.277555707263493, 48.775562577228506]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8dd57774ab45115aa45a200d95ef624e950c69d7", "fields": {"departement": "92", "stop_lat": 48.78306061174014, "code_postal": "92032", "stop_lon": 2.2817905454624388, "coord": [48.78306061174014, 2.2817905454624388], "stop_id": 5121973, "stop_desc": "33 AVENUE JULES GUESDES - 92032", "stop_name": "CARREFOUR DES MOUILLEBOEUFS"}, "geometry": {"type": "Point", "coordinates": [2.2817905454624388, 48.78306061174014]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7727cd0d6d02cc3985ea4de9aa6e565052a5de8d", "fields": {"departement": "92", "stop_lat": 48.786289554194546, "code_postal": "92032", "stop_lon": 2.2868877217300163, "coord": [48.786289554194546, 2.2868877217300163], "stop_id": 5121975, "stop_desc": "30-32 AVENUE JEAN MOULIN - 92032", "stop_name": "AUGUSTIN CLAUDE"}, "geometry": {"type": "Point", "coordinates": [2.2868877217300163, 48.786289554194546]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fdc8ee049ca9e673c3191948ca6d2a706485d422", "fields": {"departement": "92", "stop_lat": 48.79441648121683, "code_postal": "92032", "stop_lon": 2.2914779216832235, "coord": [48.79441648121683, 2.2914779216832235], "stop_id": 5121980, "stop_desc": "28 AVENUE JEANNE ET MAURICE DOLIVET - 92032", "stop_name": "CIMETIERE DE FONTENAY-AUX-ROSES"}, "geometry": {"type": "Point", "coordinates": [2.2914779216832235, 48.79441648121683]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a323348c3c313f485e60aec57e333ca4186ff446", "fields": {"departement": "92", "stop_lat": 48.79794970412889, "code_postal": "92007", "stop_lon": 2.2941277270548075, "coord": [48.79794970412889, 2.2941277270548075], "stop_id": 5121982, "stop_desc": "FACE 11 RUE DE CHARTRES - 92007", "stop_name": "LIBERTE"}, "geometry": {"type": "Point", "coordinates": [2.2941277270548075, 48.79794970412889]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2fec853c9fcde8d09e0cc1869a1948c5cfa06c24", "fields": {"departement": "92", "stop_lat": 48.80383802353411, "code_postal": "92020", "stop_lon": 2.2978373453843948, "coord": [48.80383802353411, 2.2978373453843948], "stop_id": 5121984, "stop_desc": "FACE 91 AVENUE DE LA REPUBLIQUE - 92020", "stop_name": "REPUBLIQUE - DEFORGES"}, "geometry": {"type": "Point", "coordinates": [2.2978373453843948, 48.80383802353411]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1b762e883059c9ae11dba6b39e68fb7a8d2a56b4", "fields": {"departement": "92", "stop_lat": 48.80368510844796, "code_postal": "92020", "stop_lon": 2.2974700935135903, "coord": [48.80368510844796, 2.2974700935135903], "stop_id": 5121985, "stop_desc": "95 AVENUE DE LA REPUBLIQUE - 92020", "stop_name": "REPUBLIQUE - DEFORGES"}, "geometry": {"type": "Point", "coordinates": [2.2974700935135903, 48.80368510844796]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "984d06872340a4a7013bc890465b3d82dc0ce0e7", "fields": {"departement": "92", "stop_lat": 48.81128070086906, "code_postal": "92020", "stop_lon": 2.3002947806132377, "coord": [48.81128070086906, 2.3002947806132377], "stop_id": 5121988, "stop_desc": "204 AVENUE DE PARIS - 92020", "stop_name": "CHATILLON-MONTROUGE"}, "geometry": {"type": "Point", "coordinates": [2.3002947806132377, 48.81128070086906]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "db6f80cecd7fb30d65151d7b44dc55cf4bc2ac10", "fields": {"departement": "93", "stop_lat": 48.919100903743015, "code_postal": "93046", "stop_lon": 2.537889229327745, "coord": [48.919100903743015, 2.537889229327745], "stop_id": 3682049, "stop_desc": "67 AVENUE DU MARECHAL LECLERC - 93046", "stop_name": "MAIRIE DE LIVRY - GARGAN"}, "geometry": {"type": "Point", "coordinates": [2.537889229327745, 48.919100903743015]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "06286d97ce64028316d462dd57c8cf218ce5663b", "fields": {"departement": "93", "stop_lat": 48.910494778495185, "code_postal": "93057", "stop_lon": 2.5129187507167723, "coord": [48.910494778495185, 2.5129187507167723], "stop_id": 3682042, "stop_desc": "242 AVENUE ARISTIDE BRIAND - 93057", "stop_name": "VICTOR HUGO - JEAN MOULIN"}, "geometry": {"type": "Point", "coordinates": [2.5129187507167723, 48.910494778495185]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a5ce41641308e4aa74446c68ece79e4033fe35cc", "fields": {"departement": "93", "stop_lat": 48.926674619066006, "code_postal": "93046", "stop_lon": 2.544492362189119, "coord": [48.926674619066006, 2.544492362189119], "stop_id": 3682054, "stop_desc": "9 AVENUE JEAN-JACQUES ROUSSEAU - 93046", "stop_name": "JEAN-JACQUES ROUSSEAU"}, "geometry": {"type": "Point", "coordinates": [2.544492362189119, 48.926674619066006]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4eef62dc3f896e6fe2ffbd9fc4f77b876fa9a063", "fields": {"departement": "93", "stop_lat": 48.94231538300704, "code_postal": "93071", "stop_lon": 2.5203255481774898, "coord": [48.94231538300704, 2.5203255481774898], "stop_id": 3682066, "stop_desc": "FACE 35 CHEMIN DE SAVIGNY - 93071", "stop_name": "CHEMIN DE SAVIGNY"}, "geometry": {"type": "Point", "coordinates": [2.5203255481774898, 48.94231538300704]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "09873e9b62ec1a7c739a36682dc17906689d4bc4", "fields": {"departement": "93", "stop_lat": 48.938203121827655, "code_postal": "93071", "stop_lon": 2.5293963169752205, "coord": [48.938203121827655, 2.5293963169752205], "stop_id": 3682062, "stop_desc": "7 RUE ROGER LE MANER - 93071", "stop_name": "GASTON BUSSIERE"}, "geometry": {"type": "Point", "coordinates": [2.5293963169752205, 48.938203121827655]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7d0340b389926dd03876de6378844cccf9f56621", "fields": {"departement": "93", "stop_lat": 48.90579255204801, "code_postal": "93010", "stop_lon": 2.480837851423006, "coord": [48.90579255204801, 2.480837851423006], "stop_id": 3682034, "stop_desc": "112 AVENUE GALLIENI - 93010", "stop_name": "AUGUSTE POLISSARD"}, "geometry": {"type": "Point", "coordinates": [2.480837851423006, 48.90579255204801]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "14099f733ed1754bd354c76a4f6b94b95ccafeb1", "fields": {"departement": "93", "stop_lat": 48.912055676467105, "code_postal": "93046", "stop_lon": 2.5207776395378794, "coord": [48.912055676467105, 2.5207776395378794], "stop_id": 3682044, "stop_desc": "FACE 300 AVENUE ARISTIDE BRIAND - 93046", "stop_name": "CHANZY"}, "geometry": {"type": "Point", "coordinates": [2.5207776395378794, 48.912055676467105]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "73879b647908dee8b21e0a3ace9e0247ef1076fe", "fields": {"departement": "93", "stop_lat": 48.93654654703814, "code_postal": "93071", "stop_lon": 2.5312453690431416, "coord": [48.93654654703814, 2.5312453690431416], "stop_id": 3682061, "stop_desc": "VOIE ROBERT BALLANGER - 93071", "stop_name": "MERE TERESA"}, "geometry": {"type": "Point", "coordinates": [2.5312453690431416, 48.93654654703814]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2f7205a5b1d23b7945bffc6ff0d58ff8e168339d", "fields": {"departement": "93", "stop_lat": 48.912161710038724, "code_postal": "93046", "stop_lon": 2.521950603252031, "coord": [48.912161710038724, 2.521950603252031], "stop_id": 3682043, "stop_desc": "2 AVENUE ARISTIDE BRIAND - 93046", "stop_name": "CHANZY"}, "geometry": {"type": "Point", "coordinates": [2.521950603252031, 48.912161710038724]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e17058d5ed18ceaa10f259d8b1aa92ceaf096dfc", "fields": {"departement": "93", "stop_lat": 48.912814999783635, "code_postal": "93014", "stop_lon": 2.5402373617823164, "coord": [48.912814999783635, 2.5402373617823164], "stop_id": 3682262, "stop_desc": "3 AVENUE DE SEVIGNE - 93014", "stop_name": "AVENUE DU COTEAU - ECOLE NORMALE"}, "geometry": {"type": "Point", "coordinates": [2.5402373617823164, 48.912814999783635]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bc683d4c09b00f8c8e0962d9261fba614b09d685", "fields": {"departement": "93", "stop_lat": 48.890118186198556, "code_postal": "93010", "stop_lon": 2.481489503492388, "coord": [48.890118186198556, 2.481489503492388], "stop_id": 3682284, "stop_desc": "ROND-POINT GEORGES BRASSENS - 93010", "stop_name": "LA MARE A LA VEUVE"}, "geometry": {"type": "Point", "coordinates": [2.481489503492388, 48.890118186198556]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "63ab46344548dfbcf30aeb8989450744c9d77844", "fields": {"departement": "93", "stop_lat": 48.902680473159826, "code_postal": "93047", "stop_lon": 2.56826649449064, "coord": [48.902680473159826, 2.56826649449064], "stop_id": 3682255, "stop_desc": "32 RUE DE LA TUILERIE - 93047", "stop_name": "MAISON DES JEUNES"}, "geometry": {"type": "Point", "coordinates": [2.56826649449064, 48.902680473159826]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "651eee13c179cdb483ad61358cb50a8ea153e035", "fields": {"departement": "93", "stop_lat": 48.89462418028901, "code_postal": "93010", "stop_lon": 2.478639719945247, "coord": [48.89462418028901, 2.478639719945247], "stop_id": 3682300, "stop_desc": "FACE 11 R DE LA LIBERTE - 93010", "stop_name": "GARE DE BONDY RER"}, "geometry": {"type": "Point", "coordinates": [2.478639719945247, 48.89462418028901]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1cd48ece4a632e5d5e95fa0baa19d03f9afd63a1", "fields": {"departement": "93", "stop_lat": 48.91059910000352, "code_postal": "93014", "stop_lon": 2.5533585541816404, "coord": [48.91059910000352, 2.5533585541816404], "stop_id": 3682259, "stop_desc": "29 ALLEE VEUVE LINDET GIRARD - 93014", "stop_name": "LA PELOUSE"}, "geometry": {"type": "Point", "coordinates": [2.5533585541816404, 48.91059910000352]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "90592c1fc74b28b7a6240fb2b7118ed7eab10676", "fields": {"departement": "93", "stop_lat": 48.892123042361185, "code_postal": "93010", "stop_lon": 2.4881735184332183, "coord": [48.892123042361185, 2.4881735184332183], "stop_id": 3682289, "stop_desc": "ROUTE DE VILLEMOMBLE - 93010", "stop_name": "PIERRE CURIE"}, "geometry": {"type": "Point", "coordinates": [2.4881735184332183, 48.892123042361185]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ab589007d4c5bbfebabb9fb1671686b1a72704b8", "fields": {"departement": "93", "stop_lat": 48.909753781545426, "code_postal": "93046", "stop_lon": 2.538248420821371, "coord": [48.909753781545426, 2.538248420821371], "stop_id": 3682249, "stop_desc": "159 CHEMIN DES POSTES - 93046", "stop_name": "LES GENETTES"}, "geometry": {"type": "Point", "coordinates": [2.538248420821371, 48.909753781545426]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ee39861aa99b4aab85b126c54bb01ab55be5b205", "fields": {"departement": "93", "stop_lat": 48.90709707631595, "code_postal": "93014", "stop_lon": 2.5566705035726716, "coord": [48.90709707631595, 2.5566705035726716], "stop_id": 3682258, "stop_desc": "AVENUE JEAN MOULIN - 93014", "stop_name": "EMILE ZOLA"}, "geometry": {"type": "Point", "coordinates": [2.5566705035726716, 48.90709707631595]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d0e86a313aef5a20fda1b3d361169e1ee89169d4", "fields": {"departement": "93", "stop_lat": 48.89460732315696, "code_postal": "93010", "stop_lon": 2.492201636932791, "coord": [48.89460732315696, 2.492201636932791], "stop_id": 3682297, "stop_desc": "RUE EDOUARD VAILLANT - 93010", "stop_name": "CORNEILLE"}, "geometry": {"type": "Point", "coordinates": [2.492201636932791, 48.89460732315696]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e3c9c5ae63f01400aaf2a6882d5f3d05fe1abee0", "fields": {"departement": "93", "stop_lat": 48.89363546520329, "code_postal": "93010", "stop_lon": 2.4787460614643035, "coord": [48.89363546520329, 2.4787460614643035], "stop_id": 3682287, "stop_desc": "RUE DE VARSOVIE - 93010", "stop_name": "VARSOVIE"}, "geometry": {"type": "Point", "coordinates": [2.4787460614643035, 48.89363546520329]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f7c7eaa0a3d18a1526b659ac80468fcb0de7dbee", "fields": {"departement": "92", "stop_lat": 48.81340227393181, "code_postal": "92046", "stop_lon": 2.3018174520687054, "coord": [48.81340227393181, 2.3018174520687054], "stop_id": 3682010, "stop_desc": "210 AV PIERRE BROSSOLETTE - 92046", "stop_name": "PIERRE BROSSOLETTE - ETIENNE DOLET"}, "geometry": {"type": "Point", "coordinates": [2.3018174520687054, 48.81340227393181]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a0962dca31c213aabd5c56554072b700522e1ac8", "fields": {"departement": "92", "stop_lat": 48.81184495378081, "code_postal": "92046", "stop_lon": 2.294401959261595, "coord": [48.81184495378081, 2.294401959261595], "stop_id": 3682006, "stop_desc": "21 BOULEVARD DE STALINGRAD - 92046", "stop_name": "ROND-POINT GAGARINE"}, "geometry": {"type": "Point", "coordinates": [2.294401959261595, 48.81184495378081]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "93ce381714d5d6f353c94aaee2e7c483e840f013", "fields": {"departement": "93", "stop_lat": 48.8932102006786, "code_postal": "93055", "stop_lon": 2.4127906117656055, "coord": [48.8932102006786, 2.4127906117656055], "stop_id": 3682021, "stop_desc": "AVENUE JEAN LOLIVE - 93055", "stop_name": "EGLISE DE PANTIN-METRO"}, "geometry": {"type": "Point", "coordinates": [2.4127906117656055, 48.8932102006786]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "29bccc3892aa9ea26139e7db08a083f0e3b7ebef", "fields": {"departement": "93", "stop_lat": 48.89530457817166, "code_postal": "93055", "stop_lon": 2.425347152348767, "coord": [48.89530457817166, 2.425347152348767], "stop_id": 3682024, "stop_desc": "AVENUE JEAN LOLIVE - 93055", "stop_name": "RAYMOND QUENEAU-METRO"}, "geometry": {"type": "Point", "coordinates": [2.425347152348767, 48.89530457817166]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "66cda327f3575b6e7d12b75b6352b0f325494fb7", "fields": {"departement": "93", "stop_lat": 48.90258647804681, "code_postal": "93053", "stop_lon": 2.462861716916873, "coord": [48.90258647804681, 2.462861716916873], "stop_id": 3682030, "stop_desc": "43 RUE DE PARIS - 93053", "stop_name": "USINE DE LA MADELEINE"}, "geometry": {"type": "Point", "coordinates": [2.462861716916873, 48.90258647804681]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c4ce005cbf962fde7ae50bcc2b74cb75a5b0a6f3", "fields": {"departement": "92", "stop_lat": 48.8150547502173, "code_postal": "92046", "stop_lon": 2.29778800057985, "coord": [48.8150547502173, 2.29778800057985], "stop_id": 3682008, "stop_desc": "RUE GUY MOQUET - 92046", "stop_name": "ETIENNE DOLET-METRO"}, "geometry": {"type": "Point", "coordinates": [2.29778800057985, 48.8150547502173]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0b1c1753ecdc820e39c02c9b4b6c26910dddd62d", "fields": {"departement": "92", "stop_lat": 48.816448613894025, "code_postal": "92046", "stop_lon": 2.3001686149082823, "coord": [48.816448613894025, 2.3001686149082823], "stop_id": 3682011, "stop_desc": "39 R GUY MOCQUET - 92046", "stop_name": "MAURICE THOREZ"}, "geometry": {"type": "Point", "coordinates": [2.3001686149082823, 48.816448613894025]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eeaffc96079ff2274b8bc4aa50de94144a5c62a9", "fields": {"departement": "92", "stop_lat": 48.821745681267025, "code_postal": "92046", "stop_lon": 2.313013571294374, "coord": [48.821745681267025, 2.313013571294374], "stop_id": 3682015, "stop_desc": "FACE 37 AV PIERRE BROSSOLETTE - 92046", "stop_name": "DEPINOY"}, "geometry": {"type": "Point", "coordinates": [2.313013571294374, 48.821745681267025]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c49915a75f11337e4194c0c110f80c2bcfe0c43e", "fields": {"departement": "93", "stop_lat": 48.905007103245715, "code_postal": "93010", "stop_lon": 2.476268671049849, "coord": [48.905007103245715, 2.476268671049849], "stop_id": 3682033, "stop_desc": "54 AVENUE GALLIENI - 93010", "stop_name": "GATINE RN3"}, "geometry": {"type": "Point", "coordinates": [2.476268671049849, 48.905007103245715]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ef75f51c8071fca1b0b2cbc6a6455f572cc996ac", "fields": {"departement": "93", "stop_lat": 48.89848969315155, "code_postal": "93053", "stop_lon": 2.4429503438785156, "coord": [48.89848969315155, 2.4429503438785156], "stop_id": 3682026, "stop_desc": "8 RUE DE PARIS - 93053", "stop_name": "LA FOLIE"}, "geometry": {"type": "Point", "coordinates": [2.4429503438785156, 48.89848969315155]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "42b7a5b99b55eb61d50d39c97cea2ea14e1e5900", "fields": {"departement": "93", "stop_lat": 48.912996124845414, "code_postal": "93014", "stop_lon": 2.544655803018868, "coord": [48.912996124845414, 2.544655803018868], "stop_id": 3682185, "stop_desc": "2 AVENUE DE SEVIGNE - 93014", "stop_name": "AVENUE DU COTEAU - ECOLE NORMALE"}, "geometry": {"type": "Point", "coordinates": [2.544655803018868, 48.912996124845414]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "48da9420351bcf6f7a88cf6980a2323648fdb1f6", "fields": {"departement": "93", "stop_lat": 48.93985777401575, "code_postal": "93071", "stop_lon": 2.523045266415024, "coord": [48.93985777401575, 2.523045266415024], "stop_id": 3682094, "stop_desc": "FACE 32 AV DU GENERAL LECLERC - 93071", "stop_name": "CIMETIERE DE SEVRAN"}, "geometry": {"type": "Point", "coordinates": [2.523045266415024, 48.93985777401575]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f32a3ad64794eab1901b2396431496552a11ef63", "fields": {"departement": "93", "stop_lat": 48.946883761835196, "code_postal": "93071", "stop_lon": 2.5241347045194282, "coord": [48.946883761835196, 2.5241347045194282], "stop_id": 3682071, "stop_desc": "AVENUE DUMONT D'URVILLE - 93071", "stop_name": "SEVRAN - BEAUDOTTES RER"}, "geometry": {"type": "Point", "coordinates": [2.5241347045194282, 48.946883761835196]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "56df9baf0d7db2f7ffbd8a9c56e9463cb80e8f03", "fields": {"departement": "93", "stop_lat": 48.89564602908959, "code_postal": "93008", "stop_lon": 2.425429514998437, "coord": [48.89564602908959, 2.425429514998437], "stop_id": 3682086, "stop_desc": "3 AV DE PARIS - 93008", "stop_name": "RAYMOND QUENEAU-METRO"}, "geometry": {"type": "Point", "coordinates": [2.425429514998437, 48.89564602908959]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "beaac748bc0200df300de85626949b601332643d", "fields": {"departement": "93", "stop_lat": 48.94547989274723, "code_postal": "93071", "stop_lon": 2.5195727012335407, "coord": [48.94547989274723, 2.5195727012335407], "stop_id": 3682091, "stop_desc": "AVENUE DUMONT D'URVILLE - 93071", "stop_name": "COLLEGE GALOIS"}, "geometry": {"type": "Point", "coordinates": [2.5195727012335407, 48.94547989274723]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "18edea23814939ccdd3699f6ae3563f9beab0ec4", "fields": {"departement": "93", "stop_lat": 48.94344108452421, "code_postal": "93071", "stop_lon": 2.5187878716978633, "coord": [48.94344108452421, 2.5187878716978633], "stop_id": 3682068, "stop_desc": "AVENUE DUMONT D'URVILLE - 93071", "stop_name": "COLLEGE GALOIS"}, "geometry": {"type": "Point", "coordinates": [2.5187878716978633, 48.94344108452421]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "75fad3f3aa5351a5a41b307f386a9ef0cd80c9e9", "fields": {"departement": "93", "stop_lat": 48.94206362771462, "code_postal": "93071", "stop_lon": 2.520406513711866, "coord": [48.94206362771462, 2.520406513711866], "stop_id": 3682093, "stop_desc": "29 CHEMIN DE SAVIGNY - 93071", "stop_name": "CHEMIN DE SAVIGNY"}, "geometry": {"type": "Point", "coordinates": [2.520406513711866, 48.94206362771462]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9d2e77a3c40221261d2c616d160bc2cc3be5c92f", "fields": {"departement": "93", "stop_lat": 48.9013081611078, "code_postal": "93008", "stop_lon": 2.4561926345991942, "coord": [48.9013081611078, 2.4561926345991942], "stop_id": 3682081, "stop_desc": "155 RUE DE PARIS - 93008", "stop_name": "RUE DE PARIS N0 155"}, "geometry": {"type": "Point", "coordinates": [2.4561926345991942, 48.9013081611078]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "75fe490cc82d5e8c2844f5b63b04fecb103a3dbf", "fields": {"departement": "93", "stop_lat": 48.94813774494121, "code_postal": "93071", "stop_lon": 2.532353053668431, "coord": [48.94813774494121, 2.532353053668431], "stop_id": 3682088, "stop_desc": "AVENUE SALVADOR ALLENDE - 93071", "stop_name": "LUTHER KING"}, "geometry": {"type": "Point", "coordinates": [2.532353053668431, 48.94813774494121]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9cb6cea108f4ec37226fbac3cfd64f39a88f1552", "fields": {"departement": "93", "stop_lat": 48.905007103245715, "code_postal": "93010", "stop_lon": 2.476268671049849, "coord": [48.905007103245715, 2.476268671049849], "stop_id": 3682169, "stop_desc": "54 AVENUE GALLIENI - 93010", "stop_name": "GATINE RN3"}, "geometry": {"type": "Point", "coordinates": [2.476268671049849, 48.905007103245715]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8247bd83f706bf070a24ee70475ea0f1d1778f69", "fields": {"departement": "93", "stop_lat": 48.846875973117605, "code_postal": "93051", "stop_lon": 2.5501108265897154, "coord": [48.846875973117605, 2.5501108265897154], "stop_id": 3682642, "stop_desc": "24 RUE JEAN VAQUIER - 93051", "stop_name": "MAIRIE DE NOISY LE GRAND - JEAN VAQUIER"}, "geometry": {"type": "Point", "coordinates": [2.5501108265897154, 48.846875973117605]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f909020db9afd717d8cebba589cce8a1ff5f12de", "fields": {"departement": "77", "stop_lat": 48.8498772791612, "code_postal": "77337", "stop_lon": 2.61572298775755, "coord": [48.8498772791612, 2.61572298775755], "stop_id": 3682666, "stop_desc": "FACE 1 COURS DES DEUX PARCS - 77337", "stop_name": "LE CARRE DU FAON"}, "geometry": {"type": "Point", "coordinates": [2.61572298775755, 48.8498772791612]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "adc9bded0b9cd95cfc2934d206afa2fab1e366b1", "fields": {"departement": "77", "stop_lat": 48.84851969932751, "code_postal": "77337", "stop_lon": 2.6159199707562775, "coord": [48.84851969932751, 2.6159199707562775], "stop_id": 3682669, "stop_desc": "COURS DES DEUX PARC - 77337", "stop_name": "SQUARE DE DIANE"}, "geometry": {"type": "Point", "coordinates": [2.6159199707562775, 48.84851969932751]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "870f58af20f47c0b9c1b1d1f3fff2eff9ba32851", "fields": {"departement": "77", "stop_lat": 48.85446624161854, "code_postal": "77083", "stop_lon": 2.59747009502811, "coord": [48.85446624161854, 2.59747009502811], "stop_id": 3682660, "stop_desc": "34 AVENUE DE CHELLES - 77083", "stop_name": "POINTE DE CHAMPS"}, "geometry": {"type": "Point", "coordinates": [2.59747009502811, 48.85446624161854]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "88389851f78144e14356e6f736db7a7245ee04dc", "fields": {"departement": "77", "stop_lat": 48.852128671254356, "code_postal": "77083", "stop_lon": 2.613787556223338, "coord": [48.852128671254356, 2.613787556223338], "stop_id": 3682665, "stop_desc": "COURS DES DEUX PARCS - 77083", "stop_name": "LES DEUX PARCS"}, "geometry": {"type": "Point", "coordinates": [2.613787556223338, 48.852128671254356]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e64286d3fa51aa7bc8093f56d55f41d3e75a6de8", "fields": {"departement": "93", "stop_lat": 48.848823452640055, "code_postal": "93051", "stop_lon": 2.5566146567258454, "coord": [48.848823452640055, 2.5566146567258454], "stop_id": 3682646, "stop_desc": "11-13 AVENUE EMILE COSSONNEAU - 93051", "stop_name": "CARREFOUR DE MALNOUE"}, "geometry": {"type": "Point", "coordinates": [2.5566146567258454, 48.848823452640055]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0c99797986222096171fb709fdc9a29af2756086", "fields": {"departement": "93", "stop_lat": 48.848900736886335, "code_postal": "93051", "stop_lon": 2.5585623765321235, "coord": [48.848900736886335, 2.5585623765321235], "stop_id": 3682645, "stop_desc": "50 AVENUE EMILE COSSONNEAU - 93051", "stop_name": "CARREFOUR DE MALNOUE"}, "geometry": {"type": "Point", "coordinates": [2.5585623765321235, 48.848900736886335]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "96233918c54b550f8601251bb8f2c8a70b4a3c23", "fields": {"departement": "93", "stop_lat": 48.90426396581919, "code_postal": "93010", "stop_lon": 2.4738536981285146, "coord": [48.90426396581919, 2.4738536981285146], "stop_id": 3682332, "stop_desc": "1 RUE JULES GUESDE - 93010", "stop_name": "LYCEES PAGNOL - RENOIR"}, "geometry": {"type": "Point", "coordinates": [2.4738536981285146, 48.90426396581919]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b26587f9d2012d56f1edd8bbbfafda28e322bfed", "fields": {"departement": "93", "stop_lat": 48.91230328894942, "code_postal": "93010", "stop_lon": 2.4848372486814627, "coord": [48.91230328894942, 2.4848372486814627], "stop_id": 3682341, "stop_desc": "AV MAURICE BENHAMOU - 93010", "stop_name": "BENHAMOU - PROMENADE"}, "geometry": {"type": "Point", "coordinates": [2.4848372486814627, 48.91230328894942]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0c1cdc857d77f6675bdf2b58a8d8282115f7d2dd", "fields": {"departement": "93", "stop_lat": 48.89154517079348, "code_postal": "93010", "stop_lon": 2.4902843786694984, "coord": [48.89154517079348, 2.4902843786694984], "stop_id": 3682311, "stop_desc": "FACE 134 RTE DE VILLEMOMBLE - 93010", "stop_name": "LA SABLIERE"}, "geometry": {"type": "Point", "coordinates": [2.4902843786694984, 48.89154517079348]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "14b5df35b8d770c6f5609f1f7dfc97a59162d375", "fields": {"departement": "93", "stop_lat": 48.853661095724256, "code_postal": "93051", "stop_lon": 2.5741496475069026, "coord": [48.853661095724256, 2.5741496475069026], "stop_id": 3682649, "stop_desc": "80 ROUTE DE GOURNAY - 93051", "stop_name": "LES PREVOYANTS"}, "geometry": {"type": "Point", "coordinates": [2.5741496475069026, 48.853661095724256]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "652fc62813f453b47558e5353a1c6e0bd820692e", "fields": {"departement": "93", "stop_lat": 48.90306932325303, "code_postal": "93010", "stop_lon": 2.480952996252528, "coord": [48.90306932325303, 2.480952996252528], "stop_id": 3682331, "stop_desc": "75 RUE JULES GUESDE - 93010", "stop_name": "EGLISE DE BONDY"}, "geometry": {"type": "Point", "coordinates": [2.480952996252528, 48.90306932325303]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d8eacea98be5cd544fca237863af34c37b67361e", "fields": {"departement": "93", "stop_lat": 48.89367013081008, "code_postal": "93010", "stop_lon": 2.4798229154480134, "coord": [48.89367013081008, 2.4798229154480134], "stop_id": 3682306, "stop_desc": "FACE 24 ROUTE DE VILLEMOMBLE - 93010", "stop_name": "VARSOVIE"}, "geometry": {"type": "Point", "coordinates": [2.4798229154480134, 48.89367013081008]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d4a819922b6576654cecc4d35de31d51fcfc5f77", "fields": {"departement": "93", "stop_lat": 48.89451778813507, "code_postal": "93010", "stop_lon": 2.4919423974845074, "coord": [48.89451778813507, 2.4919423974845074], "stop_id": 3682322, "stop_desc": "164 R EDOUARD VAILLANT - 93010", "stop_name": "CORNEILLE"}, "geometry": {"type": "Point", "coordinates": [2.4919423974845074, 48.89451778813507]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ddf95335ec03cb9947bd4d43701210cd8e9c16e7", "fields": {"departement": "93", "stop_lat": 48.91695910540304, "code_postal": "93010", "stop_lon": 2.484400525396555, "coord": [48.91695910540304, 2.484400525396555], "stop_id": 3682339, "stop_desc": "AV HENRI VARAGNAT - 93010", "stop_name": "RABELAIS"}, "geometry": {"type": "Point", "coordinates": [2.484400525396555, 48.91695910540304]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7f00c86135c3b7e4461b095d4ee37033040946f6", "fields": {"departement": "92", "stop_lat": 48.819462162874615, "code_postal": "92046", "stop_lon": 2.310033969847727, "coord": [48.819462162874615, 2.310033969847727], "stop_id": 3681969, "stop_desc": "62 AVENUE PIERRE BROSSOLETTE - 92046", "stop_name": "PIERRE BROSSOLETTE - GABRIEL PERI"}, "geometry": {"type": "Point", "coordinates": [2.310033969847727, 48.819462162874615]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "625517d30f37c28941d2bc45f99c8d9a45758438", "fields": {"departement": "92", "stop_lat": 48.81340227393181, "code_postal": "92046", "stop_lon": 2.3018174520687054, "coord": [48.81340227393181, 2.3018174520687054], "stop_id": 3681972, "stop_desc": "210 AV PIERRE BROSSOLETTE - 92046", "stop_name": "PIERRE BROSSOLETTE - ETIENNE DOLET"}, "geometry": {"type": "Point", "coordinates": [2.3018174520687054, 48.81340227393181]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2ff4fb0f8cc56b83b48a1ff74b684c440ac0003a", "fields": {"departement": "92", "stop_lat": 48.81340227393181, "code_postal": "92046", "stop_lon": 2.3018174520687054, "coord": [48.81340227393181, 2.3018174520687054], "stop_id": 3681980, "stop_desc": "210 AV PIERRE BROSSOLETTE - 92046", "stop_name": "PIERRE BROSSOLETTE - ETIENNE DOLET"}, "geometry": {"type": "Point", "coordinates": [2.3018174520687054, 48.81340227393181]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3edf5dee7327b3fcb4d5426f3e01ad6d2f0f6b84", "fields": {"departement": "92", "stop_lat": 48.81796908100965, "code_postal": "92040", "stop_lon": 2.2510763751899763, "coord": [48.81796908100965, 2.2510763751899763], "stop_id": 3681857, "stop_desc": "143 AVENUE DE VERDUN - 92040", "stop_name": "VERDUN - JEAN PIERRE TIMBAUD"}, "geometry": {"type": "Point", "coordinates": [2.2510763751899763, 48.81796908100965]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "07940d5fcf9fbfc88a73cbd5f0489c0f74ee7f69", "fields": {"departement": "92", "stop_lat": 48.81209081636463, "code_postal": "92046", "stop_lon": 2.280548379801124, "coord": [48.81209081636463, 2.280548379801124], "stop_id": 3681976, "stop_desc": "FACE 52 BOULEVARD DU COLONEL FABIEN - 92046", "stop_name": "COLONEL FABIEN"}, "geometry": {"type": "Point", "coordinates": [2.280548379801124, 48.81209081636463]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9079f0be5026d709e1052e344d30d13d373cbe71", "fields": {"departement": "92", "stop_lat": 48.845722217359075, "code_postal": "92012", "stop_lon": 2.250213236692777, "coord": [48.845722217359075, 2.250213236692777], "stop_id": 3681841, "stop_desc": "BOULEVARD D'AUTEUIL - 92012", "stop_name": "STADE ROLAND GARROS"}, "geometry": {"type": "Point", "coordinates": [2.250213236692777, 48.845722217359075]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6e04d0d2eb533b9b8571b6d4888f13c91ae988b1", "fields": {"departement": "92", "stop_lat": 48.846636291936385, "code_postal": "92012", "stop_lon": 2.2466575372989284, "coord": [48.846636291936385, 2.2466575372989284], "stop_id": 3681842, "stop_desc": "FACE 39 BOULEVARD D'AUTEUIL - 92012", "stop_name": "RUE DES PINS"}, "geometry": {"type": "Point", "coordinates": [2.2466575372989284, 48.846636291936385]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "97012e4d809d760a498cb2e1779a3ccbe1196592", "fields": {"departement": "92", "stop_lat": 48.8432590038963, "code_postal": "92012", "stop_lon": 2.237921572910087, "coord": [48.8432590038963, 2.237921572910087], "stop_id": 3681845, "stop_desc": "26 BOULEVARD JEAN JAURES - 92012", "stop_name": "ESCUDIER-MARCHE"}, "geometry": {"type": "Point", "coordinates": [2.237921572910087, 48.8432590038963]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7c144f04243e6f4ed1d3ea032a84ad47c427553a", "fields": {"departement": "92", "stop_lat": 48.8179051379773, "code_postal": "92046", "stop_lon": 2.3018552078239987, "coord": [48.8179051379773, 2.3018552078239987], "stop_id": 3681991, "stop_desc": "1 R GUY MOQUET - 92046", "stop_name": "AUGUSTIN DUMONT"}, "geometry": {"type": "Point", "coordinates": [2.3018552078239987, 48.8179051379773]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "96703b355aec15f425d4a613ff95caee976c6a2c", "fields": {"departement": "92", "stop_lat": 48.82052739803083, "code_postal": "92040", "stop_lon": 2.2595107251735054, "coord": [48.82052739803083, 2.2595107251735054], "stop_id": 3681836, "stop_desc": "83 AVENUE DE VERDUN - 92040", "stop_name": "ISSY-RER"}, "geometry": {"type": "Point", "coordinates": [2.2595107251735054, 48.82052739803083]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d5e4a1beca5cf5bc6e1c28470e36a65ab4b8e06b", "fields": {"departement": "77", "stop_lat": 48.84817571549336, "code_postal": "77468", "stop_lon": 2.6562954559929475, "coord": [48.84817571549336, 2.6562954559929475], "stop_id": 3682697, "stop_desc": "AVENUE JACQUES PREVERT - 77468", "stop_name": "RUE DES EPINETTES"}, "geometry": {"type": "Point", "coordinates": [2.6562954559929475, 48.84817571549336]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8fb1c4cdde55a9b9b6ead03cb8a37e4fa2cd8f7a", "fields": {"departement": "77", "stop_lat": 48.844959672602876, "code_postal": "77337", "stop_lon": 2.6201357750216774, "coord": [48.844959672602876, 2.6201357750216774], "stop_id": 3682676, "stop_desc": "BOULEVARD SALVADOR ALLENDE - 77337", "stop_name": "LES PROVINCES"}, "geometry": {"type": "Point", "coordinates": [2.6201357750216774, 48.844959672602876]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dfe5da374b521381bf0a143958a9d373c1c00aa1", "fields": {"departement": "77", "stop_lat": 48.85029228306208, "code_postal": "77468", "stop_lon": 2.63368806437434, "coord": [48.85029228306208, 2.63368806437434], "stop_id": 3682685, "stop_desc": "0 COURS DE L'ARCHE GUEDON - 77468", "stop_name": "CITE SCOLAIRE"}, "geometry": {"type": "Point", "coordinates": [2.63368806437434, 48.85029228306208]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b56e1b894c01199d0c4da5ed6290104eaf0f2db7", "fields": {"departement": "77", "stop_lat": 48.84735219191144, "code_postal": "77337", "stop_lon": 2.6155460194009392, "coord": [48.84735219191144, 2.6155460194009392], "stop_id": 3682670, "stop_desc": "COURS DES DEUX PARCS - 77337", "stop_name": "COMMISSARIAT"}, "geometry": {"type": "Point", "coordinates": [2.6155460194009392, 48.84735219191144]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "26336b768bafdc1bc21b9833a787f5d2411bd192", "fields": {"departement": "77", "stop_lat": 48.849623070716085, "code_postal": "77468", "stop_lon": 2.638913693080735, "coord": [48.849623070716085, 2.638913693080735], "stop_id": 3682686, "stop_desc": "COURS DE L'ARCHE GUEDON - 77468", "stop_name": "LA MOGOTTE"}, "geometry": {"type": "Point", "coordinates": [2.638913693080735, 48.849623070716085]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7f0144ae9254f6c4a8e0f6da0999b5d3c8d42710", "fields": {"departement": "77", "stop_lat": 48.85010804193541, "code_postal": "77468", "stop_lon": 2.646066225456977, "coord": [48.85010804193541, 2.646066225456977], "stop_id": 3682691, "stop_desc": "82 RUE DE PARIS - 77468", "stop_name": "LES TILLEULS"}, "geometry": {"type": "Point", "coordinates": [2.646066225456977, 48.85010804193541]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "659fd82abacb73563c3673b1b0a624bd2fbeacbb", "fields": {"departement": "77", "stop_lat": 48.84937386327594, "code_postal": "77468", "stop_lon": 2.6414861033950703, "coord": [48.84937386327594, 2.6414861033950703], "stop_id": 3682688, "stop_desc": "103 RUE DE PARIS - 77468", "stop_name": "BEL AIR"}, "geometry": {"type": "Point", "coordinates": [2.6414861033950703, 48.84937386327594]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1280c1af41442b4f07695e51d9529eff6e3dfad9", "fields": {"departement": "93", "stop_lat": 48.85683222647169, "code_postal": "93050", "stop_lon": 2.5301163636868558, "coord": [48.85683222647169, 2.5301163636868558], "stop_id": 3682820, "stop_desc": "FACE 52 AVENUE DU GENERAL DE GAULLE - 93050", "stop_name": "PLACE DE LA RESISTANCE"}, "geometry": {"type": "Point", "coordinates": [2.5301163636868558, 48.85683222647169]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "43b1f6c817e27178de2ff61042da8feb18393cda", "fields": {"departement": "93", "stop_lat": 48.85503415309562, "code_postal": "93050", "stop_lon": 2.5248524619630364, "coord": [48.85503415309562, 2.5248524619630364], "stop_id": 3682815, "stop_desc": "26 BOULEVARD DU MARECHAL FOCH - 93050", "stop_name": "VILLEBOIS - MAREUIL"}, "geometry": {"type": "Point", "coordinates": [2.5248524619630364, 48.85503415309562]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4a64ca2df69807adb2257749a73e8a1b24be85c1", "fields": {"departement": "93", "stop_lat": 48.85296447651706, "code_postal": "93049", "stop_lon": 2.5147940192726437, "coord": [48.85296447651706, 2.5147940192726437], "stop_id": 3682834, "stop_desc": "22-24 BOULEVARD GALLIENI - 93049", "stop_name": "NEUILLY-PLAISANCE RER."}, "geometry": {"type": "Point", "coordinates": [2.5147940192726437, 48.85296447651706]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5fb5dbb899981e26d15e34a6fdc1a68a0bf3116a", "fields": {"departement": "93", "stop_lat": 48.871045215298366, "code_postal": "93050", "stop_lon": 2.53323461724202, "coord": [48.871045215298366, 2.53323461724202], "stop_id": 3682831, "stop_desc": "FACE 80 RUE GASTON NAVAILLES - 93050", "stop_name": "CITE DES BOULEAUX"}, "geometry": {"type": "Point", "coordinates": [2.53323461724202, 48.871045215298366]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5e4f0113c03fa78f0058a917a939a6de5601bdc4", "fields": {"departement": "93", "stop_lat": 48.85390183581781, "code_postal": "93049", "stop_lon": 2.5129994635400186, "coord": [48.85390183581781, 2.5129994635400186], "stop_id": 3682809, "stop_desc": "PISTE GARE ROUTIERE - 93049", "stop_name": "NEUILLY-PLAISANCE RER"}, "geometry": {"type": "Point", "coordinates": [2.5129994635400186, 48.85390183581781]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3dbfa3dc18a4b1f0c4bba8086303ac16fbfbbfa2", "fields": {"departement": "77", "stop_lat": 48.84220830914811, "code_postal": "77468", "stop_lon": 2.6561634428593592, "coord": [48.84220830914811, 2.6561634428593592], "stop_id": 3682702, "stop_desc": "AVENUE DE LINGENFELD - 77468", "stop_name": "SALVADOR ALLENDE"}, "geometry": {"type": "Point", "coordinates": [2.6561634428593592, 48.84220830914811]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "78be4842382ab936fcb21b76add8bf708afc6f38", "fields": {"departement": "77", "stop_lat": 48.852290001782066, "code_postal": "77337", "stop_lon": 2.613979083097035, "coord": [48.852290001782066, 2.613979083097035], "stop_id": 3682708, "stop_desc": "COURS DES DEUX PARCS - 77337", "stop_name": "LES DEUX PARCS"}, "geometry": {"type": "Point", "coordinates": [2.613979083097035, 48.852290001782066]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3cf86a13fac35414e5926676f41b129407fea495", "fields": {"departement": "77", "stop_lat": 48.83924806864605, "code_postal": "77468", "stop_lon": 2.6573978872932438, "coord": [48.83924806864605, 2.6573978872932438], "stop_id": 3682704, "stop_desc": "AVENUE JEAN MOULIN - 77468", "stop_name": "CITES UNIES"}, "geometry": {"type": "Point", "coordinates": [2.6573978872932438, 48.83924806864605]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "529f5e53d7b4b64590d81f197324b24d96ab5be1", "fields": {"departement": "77", "stop_lat": 48.87477880331131, "code_postal": "77108", "stop_lon": 2.584342221256563, "coord": [48.87477880331131, 2.584342221256563], "stop_id": 3682920, "stop_desc": "54 BOULEVARD CHILPERIC - 77108", "stop_name": "MARCHE - CHELLES - GOURNAY RER"}, "geometry": {"type": "Point", "coordinates": [2.584342221256563, 48.87477880331131]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ac159cf336da767395f66dfbc60950b6a758b0ce", "fields": {"departement": "77", "stop_lat": 48.87406078064467, "code_postal": "77108", "stop_lon": 2.588180980526572, "coord": [48.87406078064467, 2.588180980526572], "stop_id": 3682914, "stop_desc": "FACE 9 BOULEVARD CHILPERIC - 77108", "stop_name": "CHILPERIC - ADOLPHE BESSON"}, "geometry": {"type": "Point", "coordinates": [2.588180980526572, 48.87406078064467]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a083fddf852176aab9f3a28fcbb2ff5bb5463e1b", "fields": {"departement": "93", "stop_lat": 48.852948624685496, "code_postal": "93049", "stop_lon": 2.513363951490401, "coord": [48.852948624685496, 2.513363951490401], "stop_id": 3682941, "stop_desc": "FACE 20 BOULEVARD GALLIENI - 93049", "stop_name": "NEUILLY-PLAISANCE RER"}, "geometry": {"type": "Point", "coordinates": [2.513363951490401, 48.852948624685496]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e1ad7fb49e3d5d462d56b6a8aac9b4e41f50c240", "fields": {"departement": "77", "stop_lat": 48.87238142021725, "code_postal": "77108", "stop_lon": 2.5788674468620263, "coord": [48.87238142021725, 2.5788674468620263], "stop_id": 3682909, "stop_desc": "AV DU MARECHAL FOCH - 77108", "stop_name": "PARMENTIER - JULES FERRY"}, "geometry": {"type": "Point", "coordinates": [2.5788674468620263, 48.87238142021725]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fca0605f60fb3db94f780b0f3919429a1ca00f30", "fields": {"departement": "94", "stop_lat": 48.837215249606906, "code_postal": "94052", "stop_lon": 2.476563555660945, "coord": [48.837215249606906, 2.476563555660945], "stop_id": 3682925, "stop_desc": "29 BIS BOULEVARD DE STRASBOURG - 94052", "stop_name": "GENERAL FAIDHERBE"}, "geometry": {"type": "Point", "coordinates": [2.476563555660945, 48.837215249606906]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "be3716134c382c2efd4528b7b6cbe7c16c08edc4", "fields": {"departement": "93", "stop_lat": 48.85429380589795, "code_postal": "93050", "stop_lon": 2.5212542273863185, "coord": [48.85429380589795, 2.5212542273863185], "stop_id": 3682944, "stop_desc": "FACE 11 BOULEVARD DU MARECHAL FOCH - 93050", "stop_name": "HELENE BOUCHER"}, "geometry": {"type": "Point", "coordinates": [2.5212542273863185, 48.85429380589795]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9c4d37926a0b50d9ea5cd5819bf055b8ab2d5a62", "fields": {"departement": "77", "stop_lat": 48.8744492608804, "code_postal": "77108", "stop_lon": 2.5828964158767787, "coord": [48.8744492608804, 2.5828964158767787], "stop_id": 3682911, "stop_desc": "PLACE GASNIER GUY - 77108", "stop_name": "CHELLES - GOURNAY RER"}, "geometry": {"type": "Point", "coordinates": [2.5828964158767787, 48.8744492608804]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8c57f079b41c8fa03929e116b0d2a8de82ec8149", "fields": {"departement": "77", "stop_lat": 48.87818085149016, "code_postal": "77108", "stop_lon": 2.5905990707298217, "coord": [48.87818085149016, 2.5905990707298217], "stop_id": 3682918, "stop_desc": "RUE LOUIS ETERLET - 77108", "stop_name": "MAIRIE DE CHELLES"}, "geometry": {"type": "Point", "coordinates": [2.5905990707298217, 48.87818085149016]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c9956eef6f0656f147aa64d68e6b9d693feb459c", "fields": {"departement": "94", "stop_lat": 48.83993372633444, "code_postal": "94052", "stop_lon": 2.4805738849520664, "coord": [48.83993372633444, 2.4805738849520664], "stop_id": 3682927, "stop_desc": "63 BOULEVARD DE STRASBOURG - 94052", "stop_name": "PAUL BERT"}, "geometry": {"type": "Point", "coordinates": [2.4805738849520664, 48.83993372633444]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b0c92f7d70fcdc10a4ed5c034ece5b014d61b951", "fields": {"departement": "93", "stop_lat": 48.853437480755204, "code_postal": "93050", "stop_lon": 2.5170155851458653, "coord": [48.853437480755204, 2.5170155851458653], "stop_id": 3682942, "stop_desc": "32 BOULEVARD GALLIENI - 93050", "stop_name": "CENTRE BUS"}, "geometry": {"type": "Point", "coordinates": [2.5170155851458653, 48.853437480755204]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2ccc1be79bfcb4e685984fccc7016e0d3ae2d3cf", "fields": {"departement": "93", "stop_lat": 48.874914218521944, "code_postal": "93032", "stop_lon": 2.551533936826456, "coord": [48.874914218521944, 2.551533936826456], "stop_id": 3683038, "stop_desc": "43 AVENUE PAUL VAILLANT COUTURIER - 93032", "stop_name": "EMILE COSSONNEAU"}, "geometry": {"type": "Point", "coordinates": [2.551533936826456, 48.874914218521944]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9dd83fe3167cdc0c00ccb673c21f3be389c11acc", "fields": {"departement": "93", "stop_lat": 48.85390183581781, "code_postal": "93049", "stop_lon": 2.5129994635400186, "coord": [48.85390183581781, 2.5129994635400186], "stop_id": 3683011, "stop_desc": "PISTE GARE ROUTIERE - 93049", "stop_name": "NEUILLY-PLAISANCE RER"}, "geometry": {"type": "Point", "coordinates": [2.5129994635400186, 48.85390183581781]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "174988a4d133e9311b9ecbb4ef58d5d23da95430", "fields": {"departement": "93", "stop_lat": 48.87583823678272, "code_postal": "93032", "stop_lon": 2.552464269940548, "coord": [48.87583823678272, 2.552464269940548], "stop_id": 3683042, "stop_desc": "RUE DE LA MARE - 93032", "stop_name": "LE CHENAY-GAGNY RER"}, "geometry": {"type": "Point", "coordinates": [2.552464269940548, 48.87583823678272]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "18afd02d5fa90e52f324be6c0557b6e2e439acc7", "fields": {"departement": "93", "stop_lat": 48.87277296826364, "code_postal": "93032", "stop_lon": 2.5625063557247443, "coord": [48.87277296826364, 2.5625063557247443], "stop_id": 3683048, "stop_desc": "RUE GRAMMONT - 93032", "stop_name": "BOULEVARD DES PECHEURS"}, "geometry": {"type": "Point", "coordinates": [2.5625063557247443, 48.87277296826364]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ed62afa45fcecfb8a6e18b5b5da3e16cd076012b", "fields": {"departement": "93", "stop_lat": 48.86277297736101, "code_postal": "93050", "stop_lon": 2.546075924660132, "coord": [48.86277297736101, 2.546075924660132], "stop_id": 3683006, "stop_desc": "2 AVENUE DU MARECHAL LECLERC - 93050", "stop_name": "VILLE EVRARD"}, "geometry": {"type": "Point", "coordinates": [2.546075924660132, 48.86277297736101]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "966d8d4e978f4ac25d0d9caf57413d317628d4d9", "fields": {"departement": "93", "stop_lat": 48.865591003348804, "code_postal": "93050", "stop_lon": 2.5630609260390105, "coord": [48.865591003348804, 2.5630609260390105], "stop_id": 3683009, "stop_desc": "0 AV JEAN JAURES - 93050", "stop_name": "POINTE DE GOURNAY"}, "geometry": {"type": "Point", "coordinates": [2.5630609260390105, 48.865591003348804]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "513e10f604e55f47baaedb8631a73a042f5ed6d0", "fields": {"departement": "93", "stop_lat": 48.85831643344756, "code_postal": "93050", "stop_lon": 2.5348209878560497, "coord": [48.85831643344756, 2.5348209878560497], "stop_id": 3683004, "stop_desc": "118 AVENUE DU GENERAL DE GAULLE - 93050", "stop_name": "PASTEUR"}, "geometry": {"type": "Point", "coordinates": [2.5348209878560497, 48.85831643344756]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "da9b1093fb464bb813d5e7dd5755868deeee221c", "fields": {"departement": "93", "stop_lat": 48.8764099314057, "code_postal": "93032", "stop_lon": 2.5494009381541254, "coord": [48.8764099314057, 2.5494009381541254], "stop_id": 3683041, "stop_desc": "16 R PAUL VAILLANT COUTURIER - 93032", "stop_name": "LA MARE"}, "geometry": {"type": "Point", "coordinates": [2.5494009381541254, 48.8764099314057]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e772aef7a81d41a2d922cbf291ccc68ad5c17e0e", "fields": {"departement": "93", "stop_lat": 48.87266107562512, "code_postal": "93032", "stop_lon": 2.5598763651780643, "coord": [48.87266107562512, 2.5598763651780643], "stop_id": 3683046, "stop_desc": "1 RUE GRAMMONT - 93032", "stop_name": "LES MARRONNIERS"}, "geometry": {"type": "Point", "coordinates": [2.5598763651780643, 48.87266107562512]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "174d8c50ac711871ae6469957855abfc75b49581", "fields": {"departement": "93", "stop_lat": 48.85683222647169, "code_postal": "93050", "stop_lon": 2.5301163636868558, "coord": [48.85683222647169, 2.5301163636868558], "stop_id": 3682892, "stop_desc": "FACE 52 AVENUE DU GENERAL DE GAULLE - 93050", "stop_name": "PLACE DE LA RESISTANCE"}, "geometry": {"type": "Point", "coordinates": [2.5301163636868558, 48.85683222647169]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "096dae8760b69c98d170faaa40b1d4c4b8af664b", "fields": {"departement": "93", "stop_lat": 48.852948624685496, "code_postal": "93049", "stop_lon": 2.513363951490401, "coord": [48.852948624685496, 2.513363951490401], "stop_id": 3682882, "stop_desc": "FACE 20 BOULEVARD GALLIENI - 93049", "stop_name": "NEUILLY-PLAISANCE RER"}, "geometry": {"type": "Point", "coordinates": [2.513363951490401, 48.852948624685496]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c445f949dc71e2df2b313f09cda3da1161a116b6", "fields": {"departement": "75", "stop_lat": 48.84195996643212, "code_postal": "75115", "stop_lon": 2.3194990816420824, "coord": [48.84195996643212, 2.3194990816420824], "stop_id": 5122007, "stop_desc": "8-10 BOULEVARD DE VAUGIRARD - 75115", "stop_name": "GARE MONTPARNASSE"}, "geometry": {"type": "Point", "coordinates": [2.3194990816420824, 48.84195996643212]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1234f391a700a1efc095ad7554a43d0095c44b4c", "fields": {"departement": "75", "stop_lat": 48.8237688886814, "code_postal": "75114", "stop_lon": 2.3184299973037343, "coord": [48.8237688886814, 2.3184299973037343], "stop_id": 5122017, "stop_desc": "AVENUE ERNEST REYER - 75114", "stop_name": "JEAN MOULIN"}, "geometry": {"type": "Point", "coordinates": [2.3184299973037343, 48.8237688886814]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "076cf98f2a3ec7d38340b67a362e54b3e17fc73f", "fields": {"departement": "75", "stop_lat": 48.82366103662885, "code_postal": "75114", "stop_lon": 2.3184300364197443, "coord": [48.82366103662885, 2.3184300364197443], "stop_id": 5122018, "stop_desc": "AVENUE ERNEST REYER - 75114", "stop_name": "JEAN MOULIN"}, "geometry": {"type": "Point", "coordinates": [2.3184300364197443, 48.82366103662885]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5086cecf99822001c671a887420dada346b7ca4d", "fields": {"departement": "92", "stop_lat": 48.80832006340144, "code_postal": "92020", "stop_lon": 2.289955237180157, "coord": [48.80832006340144, 2.289955237180157], "stop_id": 5122029, "stop_desc": "FACE 55 R MARCELIN BERTHELOT - 92020", "stop_name": "JEAN MERMOZ"}, "geometry": {"type": "Point", "coordinates": [2.289955237180157, 48.80832006340144]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b4a6fbd714e7344e15659bd8958ea4b1e377e1de", "fields": {"departement": "92", "stop_lat": 48.80628732978911, "code_postal": "92020", "stop_lon": 2.2863376527004067, "coord": [48.80628732978911, 2.2863376527004067], "stop_id": 5122033, "stop_desc": "FACE 33 BOULEVARD DE VANVES - 92020", "stop_name": "FELIX FAURE"}, "geometry": {"type": "Point", "coordinates": [2.2863376527004067, 48.80628732978911]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "03e5bf51bedcdba87b2f10f37c5dc402e1beb0cc", "fields": {"departement": "92", "stop_lat": 48.79959122387618, "code_postal": "92020", "stop_lon": 2.285922459098015, "coord": [48.79959122387618, 2.285922459098015], "stop_id": 5122036, "stop_desc": "FACE 1 TER RUE D'ESTIENNE D'ORVES - 92020", "stop_name": "D'ESTIENNE D'ORVES - DIVISION LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.285922459098015, 48.79959122387618]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5afaa559048e26832bcbdaa01cc5b78d7f2c199d", "fields": {"departement": "92", "stop_lat": 48.79971713568461, "code_postal": "92020", "stop_lon": 2.2861128071739714, "coord": [48.79971713568461, 2.2861128071739714], "stop_id": 5122037, "stop_desc": "3 RUE D'ESTIENNE D'ORVES - 92020", "stop_name": "D'ESTIENNE D'ORVES - DIVISION LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.2861128071739714, 48.79971713568461]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c2ea8a442bb1d45eb66c3d1370e6d3165e7ae935", "fields": {"departement": "92", "stop_lat": 48.78340985585742, "code_postal": "92060", "stop_lon": 2.2790971921326983, "coord": [48.78340985585742, 2.2790971921326983], "stop_id": 5122048, "stop_desc": "164 AVENUE DE LA RESISTANCE - 92060", "stop_name": "EDMOND ABOUT"}, "geometry": {"type": "Point", "coordinates": [2.2790971921326983, 48.78340985585742]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "41608764d81d06033f9ffde39855bebd0b1fa26e", "fields": {"departement": "92", "stop_lat": 48.78430774610973, "code_postal": "92060", "stop_lon": 2.277273633155282, "coord": [48.78430774610973, 2.277273633155282], "stop_id": 5122049, "stop_desc": "63 AVENUE RAYMOND CROLAND - 92060", "stop_name": "EDMOND ABOUT"}, "geometry": {"type": "Point", "coordinates": [2.277273633155282, 48.78430774610973]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "29a6901c0b35c385b93bbad58449bf9eb54c082a", "fields": {"departement": "92", "stop_lat": 48.76432452376771, "code_postal": "92019", "stop_lon": 2.271885525552727, "coord": [48.76432452376771, 2.271885525552727], "stop_id": 5122063, "stop_desc": "AVENUE ROGER SALENGRO - 92019", "stop_name": "PRESIDENT ALLENDE"}, "geometry": {"type": "Point", "coordinates": [2.271885525552727, 48.76432452376771]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d0f764c5d09319d0080c998a98bda90c937edb70", "fields": {"departement": "92", "stop_lat": 48.78549509334643, "code_postal": "92060", "stop_lon": 2.279162864594655, "coord": [48.78549509334643, 2.279162864594655], "stop_id": 5122074, "stop_desc": "29-29 BIS AVENUE RAYMOND CROLAND - 92060", "stop_name": "PASTEUR"}, "geometry": {"type": "Point", "coordinates": [2.279162864594655, 48.78549509334643]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5585e4fb747ee07a0942007d224c1372c1301259", "fields": {"departement": "92", "stop_lat": 48.81550629521654, "code_postal": "92049", "stop_lon": 2.3049461590607536, "coord": [48.81550629521654, 2.3049461590607536], "stop_id": 5122078, "stop_desc": "135-137 AVENUE PIERRE BROSSOLETTE - 92049", "stop_name": "AUGUSTIN DUMONT"}, "geometry": {"type": "Point", "coordinates": [2.3049461590607536, 48.81550629521654]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "89f360ca80910e787bd1fbda1b47bb20e4809d07", "fields": {"departement": "92", "stop_lat": 48.82193457809965, "code_postal": "92049", "stop_lon": 2.3137893102917633, "coord": [48.82193457809965, 2.3137893102917633], "stop_id": 5122081, "stop_desc": "33 AVENUE PIERRE BROSSOLETTE - 92049", "stop_name": "DEPINOY"}, "geometry": {"type": "Point", "coordinates": [2.3137893102917633, 48.82193457809965]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d430f92c2807aa56a371fabe37b6f98980c30830", "fields": {"departement": "92", "stop_lat": 48.777667735351535, "code_postal": "92060", "stop_lon": 2.239733325837988, "coord": [48.777667735351535, 2.239733325837988], "stop_id": 5122148, "stop_desc": "AVENUE DESCARTES - 92060", "stop_name": "REAUMUR"}, "geometry": {"type": "Point", "coordinates": [2.239733325837988, 48.777667735351535]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "04241ba6c576b41d1fce61d37e022a4506bca0b8", "fields": {"departement": "92", "stop_lat": 48.778905501575515, "code_postal": "92060", "stop_lon": 2.260783394313373, "coord": [48.778905501575515, 2.260783394313373], "stop_id": 5122161, "stop_desc": "FACE 9 AVENUE CHARLES DE GAULLE - 92060", "stop_name": "RESISTANCE"}, "geometry": {"type": "Point", "coordinates": [2.260783394313373, 48.778905501575515]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "00646ec757478986ba76951892a708e45d3f94f0", "fields": {"departement": "92", "stop_lat": 48.78150498892182, "code_postal": "92060", "stop_lon": 2.2638940624309085, "coord": [48.78150498892182, 2.2638940624309085], "stop_id": 5122163, "stop_desc": "AVENUE CHARLES DE GAULLE - 92060", "stop_name": "COEUR DE VILLE"}, "geometry": {"type": "Point", "coordinates": [2.2638940624309085, 48.78150498892182]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3d49813222e648a60b55f019cfa2b24e7b728b2b", "fields": {"departement": "92", "stop_lat": 48.783387934514586, "code_postal": "92060", "stop_lon": 2.2715215119852386, "coord": [48.783387934514586, 2.2715215119852386], "stop_id": 5122167, "stop_desc": "AVENUE DE LA RESISTANCE - 92060", "stop_name": "TOUR DE L'ETANG"}, "geometry": {"type": "Point", "coordinates": [2.2715215119852386, 48.783387934514586]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "519bd082694327c2fece0884c9cfb815b89c463f", "fields": {"departement": "92", "stop_lat": 48.778927187110924, "code_postal": "92071", "stop_lon": 2.284079714549488, "coord": [48.778927187110924, 2.284079714549488], "stop_id": 5122177, "stop_desc": "117 RUE HOUDAN - 92071", "stop_name": "CIMETIERE DE SCEAUX"}, "geometry": {"type": "Point", "coordinates": [2.284079714549488, 48.778927187110924]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5309b0b572a7d9abd1df251672ef089d76412b5f", "fields": {"departement": "92", "stop_lat": 48.77537888720115, "code_postal": "92071", "stop_lon": 2.288666144670984, "coord": [48.77537888720115, 2.288666144670984], "stop_id": 5122184, "stop_desc": "AVENUE CAUCHY - 92071", "stop_name": "I.U.T."}, "geometry": {"type": "Point", "coordinates": [2.288666144670984, 48.77537888720115]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3ecc8d9631eed937fd5a503e5c317de8ef870a6f", "fields": {"departement": "92", "stop_lat": 48.76622967352003, "code_postal": "92019", "stop_lon": 2.2902110947246297, "coord": [48.76622967352003, 2.2902110947246297], "stop_id": 5122186, "stop_desc": "AVENUE SULLY PRUDHOMME - 92019", "stop_name": "GRANDE VOIE DES VIGNES - ECOLE CENTRALE"}, "geometry": {"type": "Point", "coordinates": [2.2902110947246297, 48.76622967352003]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1c57e05c9477fbf7b36ebdc6898aaa2a363f3125", "fields": {"departement": "92", "stop_lat": 48.80368510844796, "code_postal": "92020", "stop_lon": 2.2974700935135903, "coord": [48.80368510844796, 2.2974700935135903], "stop_id": 5137977, "stop_desc": "95 AVENUE DE LA REPUBLIQUE - 92020", "stop_name": "REPUBLIQUE - DEFORGES"}, "geometry": {"type": "Point", "coordinates": [2.2974700935135903, 48.80368510844796]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0b3c09ca623104c22dedf71c7d0a159c92b7660f", "fields": {"departement": "92", "stop_lat": 48.79994385199227, "code_postal": "92020", "stop_lon": 2.2910512864175656, "coord": [48.79994385199227, 2.2910512864175656], "stop_id": 5137979, "stop_desc": "AVENUE DE LA REPUBLIQUE - 92020", "stop_name": "MAIRIE DE CHATILLON"}, "geometry": {"type": "Point", "coordinates": [2.2910512864175656, 48.79994385199227]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "46945faad540671d8f78880a7c07475d59483d45", "fields": {"departement": "92", "stop_lat": 48.798192601376755, "code_postal": "92007", "stop_lon": 2.294753345283415, "coord": [48.798192601376755, 2.294753345283415], "stop_id": 5137980, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 92007", "stop_name": "LIBERTE"}, "geometry": {"type": "Point", "coordinates": [2.294753345283415, 48.798192601376755]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "90a4b341cfc306769bc59339ddb8cf4b9c1451cb", "fields": {"departement": "92", "stop_lat": 48.795525376089955, "code_postal": "92007", "stop_lon": 2.3013399041826292, "coord": [48.795525376089955, 2.3013399041826292], "stop_id": 5137981, "stop_desc": "FACE 10 RUE DE LA REPUBLIQUE - 92007", "stop_name": "DAMPIERRE"}, "geometry": {"type": "Point", "coordinates": [2.3013399041826292, 48.795525376089955]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7d5240e0d1b12f558f175888750ee55f139a3591", "fields": {"departement": "92", "stop_lat": 48.782711905190155, "code_postal": "92014", "stop_lon": 2.3147998813643778, "coord": [48.782711905190155, 2.3147998813643778], "stop_id": 5137994, "stop_desc": "FACE 43 BOULEVARD DU MARECHAL JOFFRE - 92014", "stop_name": "RUE DU 8 MAI 1945"}, "geometry": {"type": "Point", "coordinates": [2.3147998813643778, 48.782711905190155]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aa1fdada446b1a5675ff7caea99fef29c0f90d3d", "fields": {"departement": "92", "stop_lat": 48.779934279961125, "code_postal": "92014", "stop_lon": 2.3130602821933905, "coord": [48.779934279961125, 2.3130602821933905], "stop_id": 5137995, "stop_desc": "PISTE PLACE DE LA GARE - 92014", "stop_name": "BOURG-LA-REINE RER"}, "geometry": {"type": "Point", "coordinates": [2.3130602821933905, 48.779934279961125]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8c17beded85efb81d8578c77be69200d9cab22de", "fields": {"departement": "92", "stop_lat": 48.779934279961125, "code_postal": "92014", "stop_lon": 2.3130602821933905, "coord": [48.779934279961125, 2.3130602821933905], "stop_id": 5137996, "stop_desc": "PISTE PLACE DE LA GARE - 92014", "stop_name": "BOURG-LA-REINE RER"}, "geometry": {"type": "Point", "coordinates": [2.3130602821933905, 48.779934279961125]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "52fa56f9ac197d5b26c487be880e0f1aa3594b60", "fields": {"departement": "92", "stop_lat": 48.79847993804318, "code_postal": "92020", "stop_lon": 2.2939912381142276, "coord": [48.79847993804318, 2.2939912381142276], "stop_id": 5138010, "stop_desc": "17 RUE DE BAGNEUX - 92020", "stop_name": "LIBERTE"}, "geometry": {"type": "Point", "coordinates": [2.2939912381142276, 48.79847993804318]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0c25dda12d03610a6394043fa8ee3597cea563b7", "fields": {"departement": "92", "stop_lat": 48.80110443712414, "code_postal": "92020", "stop_lon": 2.2941251068474418, "coord": [48.80110443712414, 2.2941251068474418], "stop_id": 5138012, "stop_desc": "FACE 57 AVENUE DE LA REPUBLIQUE - 92020", "stop_name": "REPUBLIQUE - LIBERTE"}, "geometry": {"type": "Point", "coordinates": [2.2941251068474418, 48.80110443712414]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e5b01cd9dd74f66321f7a13df8104cffa8d3b37d", "fields": {"departement": "92", "stop_lat": 48.80648956893726, "code_postal": "92020", "stop_lon": 2.2982707549064973, "coord": [48.80648956893726, 2.2982707549064973], "stop_id": 5138014, "stop_desc": "140 AVENUE DE LA REPUBLIQUE - 92020", "stop_name": "PIERRE SEMARD - CHATILLON-MONTROUGE"}, "geometry": {"type": "Point", "coordinates": [2.2982707549064973, 48.80648956893726]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0539a4c064d226f1f61d0c9c3a1860528193366a", "fields": {"departement": "75", "stop_lat": 48.85386019995564, "code_postal": "75107", "stop_lon": 2.3259642143692596, "coord": [48.85386019995564, 2.3259642143692596], "stop_id": 5138041, "stop_desc": "22 BOULEVARD RASPAIL - 75107", "stop_name": "VARENNE - RASPAIL"}, "geometry": {"type": "Point", "coordinates": [2.3259642143692596, 48.85386019995564]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1f7dd54de4d3918a79fd93917be53924e32a17fe", "fields": {"departement": "75", "stop_lat": 48.83521150991317, "code_postal": "75114", "stop_lon": 2.3319178021429443, "coord": [48.83521150991317, 2.3319178021429443], "stop_id": 5138047, "stop_desc": "286 BOULEVARD RASPAIL - 75114", "stop_name": "VICTOR CONSIDERANT"}, "geometry": {"type": "Point", "coordinates": [2.3319178021429443, 48.83521150991317]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a5c241a48621d5aeeb3079170cc14477673aaba4", "fields": {"departement": "75", "stop_lat": 48.83377347264631, "code_postal": "75114", "stop_lon": 2.3314414561924695, "coord": [48.83377347264631, 2.3314414561924695], "stop_id": 5138048, "stop_desc": "30 PLACE DENFERT ROCHEREAU - 75114", "stop_name": "DENFERT-ROCHEREAU"}, "geometry": {"type": "Point", "coordinates": [2.3314414561924695, 48.83377347264631]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "92a54661c0e4ed50f75ae4cc5d3ece48bb0cad10", "fields": {"departement": "75", "stop_lat": 48.8316073794591, "code_postal": "75114", "stop_lon": 2.3299850499497685, "coord": [48.8316073794591, 2.3299850499497685], "stop_id": 5138049, "stop_desc": "32 AVENUE DU GENERAL LECLERC - 75114", "stop_name": "MOUTON - DUVERNET"}, "geometry": {"type": "Point", "coordinates": [2.3299850499497685, 48.8316073794591]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "331e4afe9e1f587aa4f0f0e78e1c38c9bf8c4099", "fields": {"departement": "92", "stop_lat": 48.810878142529376, "code_postal": "92049", "stop_lon": 2.306990255108043, "coord": [48.810878142529376, 2.306990255108043], "stop_id": 5138059, "stop_desc": "178 AVENUE MARX DORMOY - 92049", "stop_name": "MAURICE ARNOUX"}, "geometry": {"type": "Point", "coordinates": [2.306990255108043, 48.810878142529376]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "48d2c4548cd503e45513f6195516878aaa2ca0dd", "fields": {"departement": "75", "stop_lat": 48.85097856734546, "code_postal": "75112", "stop_lon": 2.3756183478441577, "coord": [48.85097856734546, 2.3756183478441577], "stop_id": 5138083, "stop_desc": "85 AVENUE LEDRU ROLLIN - 75112", "stop_name": "LEDRU ROLLIN - FAUBOURG SAINT-ANTOINE"}, "geometry": {"type": "Point", "coordinates": [2.3756183478441577, 48.85097856734546]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "824116b0c9b30095d53306a78b3ccf13ab9be7b8", "fields": {"departement": "75", "stop_lat": 48.87975316678592, "code_postal": "75109", "stop_lon": 2.3313272921851587, "coord": [48.87975316678592, 2.3313272921851587], "stop_id": 5138163, "stop_desc": "29 RUE BLANCHE - 75109", "stop_name": "MONCEY"}, "geometry": {"type": "Point", "coordinates": [2.3313272921851587, 48.87975316678592]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e9d1095e7802e7f00dac65c0e4acea24b9a2870e", "fields": {"departement": "75", "stop_lat": 48.87590663728741, "code_postal": "75109", "stop_lon": 2.3318591135946556, "coord": [48.87590663728741, 2.3318591135946556], "stop_id": 5138164, "stop_desc": "57 R DE LA CHAUSSEE D'ANTIN - 75109", "stop_name": "TRINITE"}, "geometry": {"type": "Point", "coordinates": [2.3318591135946556, 48.87590663728741]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b05391cc561fb1fa98fcc7e7c429ff3abda6a683", "fields": {"departement": "75", "stop_lat": 48.860772008011736, "code_postal": "75101", "stop_lon": 2.333508852548907, "coord": [48.860772008011736, 2.333508852548907], "stop_id": 5138173, "stop_desc": "PLACE DU CARROUSEL - 75101", "stop_name": "MUSEE DU LOUVRE"}, "geometry": {"type": "Point", "coordinates": [2.333508852548907, 48.860772008011736]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "738dbc98d33701a093260aad825a3c47b84cfd43", "fields": {"departement": "75", "stop_lat": 48.85234167570838, "code_postal": "75105", "stop_lon": 2.343778173799205, "coord": [48.85234167570838, 2.343778173799205], "stop_id": 3893394, "stop_desc": "7 BOULEVARD SAINT-MICHEL - 75105", "stop_name": "SAINT-MICHEL - SAINT-GERMAIN"}, "geometry": {"type": "Point", "coordinates": [2.343778173799205, 48.85234167570838]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "22d67bee9cb695f83d93d8dff4fa11fbb7d47ab3", "fields": {"departement": "75", "stop_lat": 48.86208420418041, "code_postal": "75101", "stop_lon": 2.3349253980583433, "coord": [48.86208420418041, 2.3349253980583433], "stop_id": 3893399, "stop_desc": "PLACE DU CARROUSEL - 75101", "stop_name": "MUSEE DU LOUVRE"}, "geometry": {"type": "Point", "coordinates": [2.3349253980583433, 48.86208420418041]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "895a5709940a9901ca6048695d31c0ec0e83b6ed", "fields": {"departement": "75", "stop_lat": 48.87475242481172, "code_postal": "75108", "stop_lon": 2.3065306010379505, "coord": [48.87475242481172, 2.3065306010379505], "stop_id": 3893401, "stop_desc": "173 BOULEVARD HAUSSMANN - 75108", "stop_name": "FRIEDLAND - HAUSSMANN"}, "geometry": {"type": "Point", "coordinates": [2.3065306010379505, 48.87475242481172]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d0fed1d4e663b7011c15f63d5b42edc0856077e3", "fields": {"departement": "75", "stop_lat": 48.87327931759563, "code_postal": "75108", "stop_lon": 2.3098558478059017, "coord": [48.87327931759563, 2.3098558478059017], "stop_id": 3893405, "stop_desc": "73 PLACE CHASSAIGNE GOYON - 75108", "stop_name": "SAINT-PHILIPPE-DU-ROULE"}, "geometry": {"type": "Point", "coordinates": [2.3098558478059017, 48.87327931759563]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "98f447d443e4f3641b7c5c781162b288c5af1124", "fields": {"departement": "75", "stop_lat": 48.870259577602226, "code_postal": "75108", "stop_lon": 2.309857443429508, "coord": [48.870259577602226, 2.309857443429508], "stop_id": 3893407, "stop_desc": "49 AVENUE F.D ROOSEVELT - 75108", "stop_name": "ROND-POINT DES CHAMPS-ELYSEES - FRANKLIN D. ROOSEVELT"}, "geometry": {"type": "Point", "coordinates": [2.309857443429508, 48.870259577602226]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e1bc3abc06dde7fb54ecc732cd4d5adb55a9e637", "fields": {"departement": "75", "stop_lat": 48.86294479231431, "code_postal": "75107", "stop_lon": 2.314233895150675, "coord": [48.86294479231431, 2.314233895150675], "stop_id": 3893411, "stop_desc": "QUAI D'ORSAY - 75107", "stop_name": "INVALIDES"}, "geometry": {"type": "Point", "coordinates": [2.314233895150675, 48.86294479231431]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4c0d286c4cfc48c334ae300b2c5896b98ef9c85b", "fields": {"departement": "75", "stop_lat": 48.86048341319638, "code_postal": "75107", "stop_lon": 2.3213860761151324, "coord": [48.86048341319638, 2.3213860761151324], "stop_id": 3893415, "stop_desc": "276 BOULEVARD SAINT GERMAIN - 75107", "stop_name": "LILLE - UNIVERSITE"}, "geometry": {"type": "Point", "coordinates": [2.3213860761151324, 48.86048341319638]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c29d1f5ebcb325018969173bc0b3a7c57cdbfe47", "fields": {"departement": "75", "stop_lat": 48.85808405358477, "code_postal": "75107", "stop_lon": 2.3236478116024615, "coord": [48.85808405358477, 2.3236478116024615], "stop_id": 3893417, "stop_desc": "260 BOULEVARD SAINT GERMAIN - 75107", "stop_name": "SOLFERINO - BELLECHASSE"}, "geometry": {"type": "Point", "coordinates": [2.3236478116024615, 48.85808405358477]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4889066955839a83022a79738319203ec4348cc5", "fields": {"departement": "75", "stop_lat": 48.856475455970624, "code_postal": "75107", "stop_lon": 2.3250511005783725, "coord": [48.856475455970624, 2.3250511005783725], "stop_id": 3893418, "stop_desc": "209-211 BOULEVARD SAINT-GERMAIN - 75107", "stop_name": "RUE DU BAC - RENE CHAR"}, "geometry": {"type": "Point", "coordinates": [2.3250511005783725, 48.856475455970624]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aa2e8e8bdf185c13efae90c40b081ff5e32d254e", "fields": {"departement": "75", "stop_lat": 48.85205376976968, "code_postal": "75107", "stop_lon": 2.326495744890343, "coord": [48.85205376976968, 2.326495744890343], "stop_id": 3893422, "stop_desc": "42-44 BOULEVARD RASPAIL - 75107", "stop_name": "SEVRES - BABYLONE"}, "geometry": {"type": "Point", "coordinates": [2.326495744890343, 48.85205376976968]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a21f6dc6c7ebb3d477c0a0e3c85c8f908677118e", "fields": {"departement": "75", "stop_lat": 48.8472457291072, "code_postal": "75106", "stop_lon": 2.329969241301883, "coord": [48.8472457291072, 2.329969241301883], "stop_id": 3893426, "stop_desc": "40 RUE D'ASSAS - 75106", "stop_name": "FLEURUS"}, "geometry": {"type": "Point", "coordinates": [2.329969241301883, 48.8472457291072]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4400ce8558c05a4bce8e71fdded486dd6b6e2b2d", "fields": {"departement": "75", "stop_lat": 48.842860009911526, "code_postal": "75106", "stop_lon": 2.3344224503485305, "coord": [48.842860009911526, 2.3344224503485305], "stop_id": 3893431, "stop_desc": "FACE 104 RUE D'ASSAS - 75106", "stop_name": "MICHELET"}, "geometry": {"type": "Point", "coordinates": [2.3344224503485305, 48.842860009911526]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "53886727f8fbd910a9dc84f1d699c1d3f9e3c98b", "fields": {"departement": "75", "stop_lat": 48.84061315549227, "code_postal": "75106", "stop_lon": 2.3364377266527194, "coord": [48.84061315549227, 2.3364377266527194], "stop_id": 3893432, "stop_desc": "RUE D'ASSAS - 75106", "stop_name": "OBSERVATOIRE - ASSAS"}, "geometry": {"type": "Point", "coordinates": [2.3364377266527194, 48.84061315549227]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0e443e41c2d971fa4d514f6bde78033ea10ca6b2", "fields": {"departement": "75", "stop_lat": 48.840792906463605, "code_postal": "75106", "stop_lon": 2.336437723828394, "coord": [48.840792906463605, 2.336437723828394], "stop_id": 3893433, "stop_desc": "FACE 134 RUE D'ASSAS - 75106", "stop_name": "OBSERVATOIRE - ASSAS"}, "geometry": {"type": "Point", "coordinates": [2.336437723828394, 48.840792906463605]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c8d887dd643f98a8e0673df59fded7ffec7c8b21", "fields": {"departement": "75", "stop_lat": 48.83851900607731, "code_postal": "75114", "stop_lon": 2.3407538267601082, "coord": [48.83851900607731, 2.3407538267601082], "stop_id": 3893435, "stop_desc": "113 BOULEVARD DE PORT ROYAL - 75114", "stop_name": "PORT ROYAL - SAINT-JACQUES"}, "geometry": {"type": "Point", "coordinates": [2.3407538267601082, 48.83851900607731]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a46142496d96241216f4f70a2a1f97f472024ed1", "fields": {"departement": "75", "stop_lat": 48.834878809214324, "code_postal": "75113", "stop_lon": 2.345409705532796, "coord": [48.834878809214324, 2.345409705532796], "stop_id": 3893437, "stop_desc": "49 BOULEVARD ARAGO - 75113", "stop_name": "GLACIERE - ARAGO"}, "geometry": {"type": "Point", "coordinates": [2.345409705532796, 48.834878809214324]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dab40552b00e3495c77b9df24117acdaed4d39e7", "fields": {"departement": "75", "stop_lat": 48.834176950124636, "code_postal": "75113", "stop_lon": 2.3534828245635113, "coord": [48.834176950124636, 2.3534828245635113], "stop_id": 3893443, "stop_desc": "50 AVENUE DES GOBELINS - 75113", "stop_name": "BANQUIER"}, "geometry": {"type": "Point", "coordinates": [2.3534828245635113, 48.834176950124636]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c5c8ca4de88392dce07fdf00933895a5426da20f", "fields": {"departement": "75", "stop_lat": 48.83175010758925, "code_postal": "75113", "stop_lon": 2.35481619616892, "coord": [48.83175010758925, 2.35481619616892], "stop_id": 3893445, "stop_desc": "6 PLACE D'ITALIE - 75113", "stop_name": "PLACE D'ITALIE - MAIRIE DU 13E"}, "geometry": {"type": "Point", "coordinates": [2.35481619616892, 48.83175010758925]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1a034a6da9ce88a7b611050b881951f909c84992", "fields": {"departement": "75", "stop_lat": 48.832280328003044, "code_postal": "75113", "stop_lon": 2.3551431048521665, "coord": [48.832280328003044, 2.3551431048521665], "stop_id": 3893446, "stop_desc": "79 AVENUE DES GOBELINS - 75113", "stop_name": "PLACE D'ITALIE - MAIRIE DU 13E"}, "geometry": {"type": "Point", "coordinates": [2.3551431048521665, 48.832280328003044]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "50dbc2bcbff0cbb69f84d42225dfb0758d81ff37", "fields": {"departement": "75", "stop_lat": 48.830230492694035, "code_postal": "75113", "stop_lon": 2.3590902202508985, "coord": [48.830230492694035, 2.3590902202508985], "stop_id": 3893449, "stop_desc": "FACE 6 RUE ALBERT BAYET - 75113", "stop_name": "INSTITUT DENTAIRE"}, "geometry": {"type": "Point", "coordinates": [2.3590902202508985, 48.830230492694035]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7fd9d0a6070f080381dde93f846111aa49224e40", "fields": {"departement": "75", "stop_lat": 48.82316406754035, "code_postal": "75113", "stop_lon": 2.3686287867944635, "coord": [48.82316406754035, 2.3686287867944635], "stop_id": 3893460, "stop_desc": "18 RUE NATIONALE - 75113", "stop_name": "REGNAULT"}, "geometry": {"type": "Point", "coordinates": [2.3686287867944635, 48.82316406754035]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "214098e8a7f7d447b870c09aa3e43b404bca9cb8", "fields": {"departement": "75", "stop_lat": 48.86282731865924, "code_postal": "75107", "stop_lon": 2.3111418130628483, "coord": [48.86282731865924, 2.3111418130628483], "stop_id": 3893469, "stop_desc": "FACE 41 QUAI D'ORSAY - 75107", "stop_name": "PONT DES INVALIDES - PLACE DE FINLANDE"}, "geometry": {"type": "Point", "coordinates": [2.3111418130628483, 48.86282731865924]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a100497b2b7255523de59ecd6fdc8f86cc3fb077", "fields": {"departement": "75", "stop_lat": 48.87186926063576, "code_postal": "75108", "stop_lon": 2.314366174057174, "coord": [48.87186926063576, 2.314366174057174], "stop_id": 3893473, "stop_desc": "36 AVENUE MATIGNON - 75108", "stop_name": "MATIGNON - SAINT-HONORE"}, "geometry": {"type": "Point", "coordinates": [2.314366174057174, 48.87186926063576]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c804e077def8c9f369b71c76758a484e6072f225", "fields": {"departement": "75", "stop_lat": 48.82764840672252, "code_postal": "75113", "stop_lon": 2.3704827984951096, "coord": [48.82764840672252, 2.3704827984951096], "stop_id": 3893481, "stop_desc": "48 RUE DE TOLBIAC - 75113", "stop_name": "PATAY - TOLBIAC"}, "geometry": {"type": "Point", "coordinates": [2.3704827984951096, 48.82764840672252]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "674a92163c484d82600bb46c1d898e0fe030050c", "fields": {"departement": "75", "stop_lat": 48.82690383710653, "code_postal": "75113", "stop_lon": 2.3649965617517843, "coord": [48.82690383710653, 2.3649965617517843], "stop_id": 3893485, "stop_desc": "90 RUE DE TOLBIAC - 75113", "stop_name": "TOLBIAC - BAUDRICOURT"}, "geometry": {"type": "Point", "coordinates": [2.3649965617517843, 48.82690383710653]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cd0571930981ab01e5e25299f90252b717fb029a", "fields": {"departement": "75", "stop_lat": 48.82619465911337, "code_postal": "75113", "stop_lon": 2.3610895038059874, "coord": [48.82619465911337, 2.3610895038059874], "stop_id": 3893488, "stop_desc": "129 BIS RUE DE TOLBIAC - 75113", "stop_name": "CHOISY - TOLBIAC"}, "geometry": {"type": "Point", "coordinates": [2.3610895038059874, 48.82619465911337]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "661520894001c2aa057fe4b6156c772ca420c875", "fields": {"departement": "75", "stop_lat": 48.82624039213991, "code_postal": "75113", "stop_lon": 2.356720030092126, "coord": [48.82624039213991, 2.356720030092126], "stop_id": 3893489, "stop_desc": "142 RUE DE TOLBIAC - 75113", "stop_name": "ITALIE - TOLBIAC"}, "geometry": {"type": "Point", "coordinates": [2.356720030092126, 48.82624039213991]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "32b2cf0bfe47e01c9180ac34c304e1b5bd6c93dd", "fields": {"departement": "75", "stop_lat": 48.82584590353211, "code_postal": "75113", "stop_lon": 2.3494374464010184, "coord": [48.82584590353211, 2.3494374464010184], "stop_id": 3893493, "stop_desc": "188 RUE DE TOLBIAC - 75113", "stop_name": "BOBILLOT - TOLBIAC"}, "geometry": {"type": "Point", "coordinates": [2.3494374464010184, 48.82584590353211]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b176c6ae43c7a96be80dbb320ba5319454c99efe", "fields": {"departement": "75", "stop_lat": 48.83309661232144, "code_postal": "75114", "stop_lon": 2.310830039788986, "coord": [48.83309661232144, 2.310830039788986], "stop_id": 3893512, "stop_desc": "200 RUE D'ALESIA - 75114", "stop_name": "VERCINGETORIX"}, "geometry": {"type": "Point", "coordinates": [2.310830039788986, 48.83309661232144]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1e719ed483418652c56b656663e7b3702611dc43", "fields": {"departement": "75", "stop_lat": 48.83494654359794, "code_postal": "75115", "stop_lon": 2.3047162243017323, "coord": [48.83494654359794, 2.3047162243017323], "stop_id": 3893516, "stop_desc": "19 RUE DE VOUILLE - 75115", "stop_name": "BRANCION - VOUILLE"}, "geometry": {"type": "Point", "coordinates": [2.3047162243017323, 48.83494654359794]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b87f313ed69d75eee3a23d26a5d6fec6f7cc1faf", "fields": {"departement": "75", "stop_lat": 48.834533302134034, "code_postal": "75115", "stop_lon": 2.3054108131990247, "coord": [48.834533302134034, 2.3054108131990247], "stop_id": 3893517, "stop_desc": "26 RUE DE VOUILLE - 75115", "stop_name": "BRANCION - VOUILLE"}, "geometry": {"type": "Point", "coordinates": [2.3054108131990247, 48.834533302134034]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "34a577abf667e968a9476a3855ddad5be0679f7a", "fields": {"departement": "75", "stop_lat": 48.835700717567505, "code_postal": "75115", "stop_lon": 2.3019655990183643, "coord": [48.835700717567505, 2.3019655990183643], "stop_id": 3893518, "stop_desc": "237 RUE DE LA CONVENTION - 75115", "stop_name": "PLACE CHARLES VALLIN"}, "geometry": {"type": "Point", "coordinates": [2.3019655990183643, 48.835700717567505]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3478d407800c0cfc28012be1ad0c6273370b2d7f", "fields": {"departement": "75", "stop_lat": 48.84355734631912, "code_postal": "75115", "stop_lon": 2.282229687838658, "coord": [48.84355734631912, 2.282229687838658], "stop_id": 3893529, "stop_desc": "54 RUE DE LA CONVENTION - 75115", "stop_name": "CONVENTION - SAINT-CHARLES"}, "geometry": {"type": "Point", "coordinates": [2.282229687838658, 48.84355734631912]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0df4df971e30f35463487aef2aabd838fe5927de", "fields": {"departement": "75", "stop_lat": 48.84718419511148, "code_postal": "75116", "stop_lon": 2.2739599381486824, "coord": [48.84718419511148, 2.2739599381486824], "stop_id": 3893533, "stop_desc": "3 RUE DE L'AMIRAL CLOUE - 75116", "stop_name": "PONT MIRABEAU"}, "geometry": {"type": "Point", "coordinates": [2.2739599381486824, 48.84718419511148]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "26c47d09918f9f649e9178e539e91abe89fa160d", "fields": {"departement": "75", "stop_lat": 48.842945753539325, "code_postal": "75116", "stop_lon": 2.2646377924472296, "coord": [48.842945753539325, 2.2646377924472296], "stop_id": 3893537, "stop_desc": "58 RUE CHARDON LAGACHE - 75116", "stop_name": "JOUVENET"}, "geometry": {"type": "Point", "coordinates": [2.2646377924472296, 48.842945753539325]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "11a694bb301d38440f1f914b3daaa7aff4be4d68", "fields": {"departement": "75", "stop_lat": 48.83953794727566, "code_postal": "75116", "stop_lon": 2.2621781335485744, "coord": [48.83953794727566, 2.2621781335485744], "stop_id": 3893538, "stop_desc": "98 RUE CHARDON LAGACHE - 75116", "stop_name": "VERSAILLES - CHARDON LAGACHE"}, "geometry": {"type": "Point", "coordinates": [2.2621781335485744, 48.83953794727566]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9ef173921f52532c6fdd3ae0cf323b7a62f79c41", "fields": {"departement": "93", "stop_lat": 48.90666658787472, "code_postal": "93001", "stop_lon": 2.3652301358543797, "coord": [48.90666658787472, 2.3652301358543797], "stop_id": 3901292, "stop_desc": "Place du Front Populaire, c\u00f4t\u00e9 rue Waldeck Rochet face \u00e0 la rue des Gardinoux - 93001", "stop_name": "Front Populaire"}, "geometry": {"type": "Point", "coordinates": [2.3652301358543797, 48.90666658787472]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "abce4de282bba7fac96795a701c7da014381b8e7", "fields": {"departement": "93", "stop_lat": 48.915102290338595, "code_postal": "93001", "stop_lon": 2.376333974574496, "coord": [48.915102290338595, 2.376333974574496], "stop_id": 3908818, "stop_desc": "52 R HEURTAULT - 93001", "stop_name": "HEURTAULT"}, "geometry": {"type": "Point", "coordinates": [2.376333974574496, 48.915102290338595]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6aef930beb086deef916dc316f27a03eb14c0b14", "fields": {"departement": "92", "stop_lat": 48.79369737783057, "code_postal": "92032", "stop_lon": 2.2720526070084377, "coord": [48.79369737783057, 2.2720526070084377], "stop_id": 3909002, "stop_desc": "0 AV DU GENERAL LECLERC - 92032", "stop_name": "FONTENAY-AUX-ROSES DIVISION LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.2720526070084377, 48.79369737783057]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5a042a8bf19f25b584f27473373f83cd789dd991", "fields": {"departement": "92", "stop_lat": 48.79054868854144, "code_postal": "92032", "stop_lon": 2.2842582546709322, "coord": [48.79054868854144, 2.2842582546709322], "stop_id": 3909006, "stop_desc": "4 RUE D'ESTIENNE D'ORVES - 92032", "stop_name": "CARNOT - JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.2842582546709322, 48.79054868854144]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aca4a639d0c1f582197497d055bc1ec1342f7397", "fields": {"departement": "92", "stop_lat": 48.7867192580975, "code_postal": "92032", "stop_lon": 2.28298359496056, "coord": [48.7867192580975, 2.28298359496056], "stop_id": 3909007, "stop_desc": "4 AVENUE RAYMOND CROLAND - 92032", "stop_name": "ABBE GRANDJEAN"}, "geometry": {"type": "Point", "coordinates": [2.28298359496056, 48.7867192580975]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a91b5f38d1b06789d0b823f5ba3d8adc4ae9f300", "fields": {"departement": "92", "stop_lat": 48.78824246516923, "code_postal": "92032", "stop_lon": 2.2932652482672524, "coord": [48.78824246516923, 2.2932652482672524], "stop_id": 3909012, "stop_desc": "25 AVENUE LOMBART - 92032", "stop_name": "FONTENAY-AUX-ROSES RER"}, "geometry": {"type": "Point", "coordinates": [2.2932652482672524, 48.78824246516923]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "06f1dbc0f22052d3532948c4e34a444d1a419759", "fields": {"departement": "92", "stop_lat": 48.78565424446341, "code_postal": "92032", "stop_lon": 2.294097131605548, "coord": [48.78565424446341, 2.294097131605548], "stop_id": 3909013, "stop_desc": "14 RUE DES POTIERS - 92032", "stop_name": "POTIERS"}, "geometry": {"type": "Point", "coordinates": [2.294097131605548, 48.78565424446341]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "30ca72e7ebf38f54550cfc14453310c47199a56d", "fields": {"departement": "92", "stop_lat": 48.78886457651323, "code_postal": "92032", "stop_lon": 2.2988824869540996, "coord": [48.78886457651323, 2.2988824869540996], "stop_id": 3909017, "stop_desc": "43 TER AVENUE GABRIEL PERI - 92032", "stop_name": "ECOLE DE LA ROUE"}, "geometry": {"type": "Point", "coordinates": [2.2988824869540996, 48.78886457651323]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dfb8a67fbd7dc3860e5f56210057008091f27d59", "fields": {"departement": "92", "stop_lat": 48.792584095668204, "code_postal": "92032", "stop_lon": 2.294553885468792, "coord": [48.792584095668204, 2.294553885468792], "stop_id": 3909019, "stop_desc": "10 RUE GEORGES BAILLY - 92032", "stop_name": "GEORGES BAILLY"}, "geometry": {"type": "Point", "coordinates": [2.294553885468792, 48.792584095668204]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e7cc71c3f3a35ca4c354a021867faa92fa6e9d55", "fields": {"departement": "92", "stop_lat": 48.79487014521604, "code_postal": "92032", "stop_lon": 2.2805263725178766, "coord": [48.79487014521604, 2.2805263725178766], "stop_id": 3909026, "stop_desc": "R ANDRE SALEL - 92032", "stop_name": "PERVENCHES"}, "geometry": {"type": "Point", "coordinates": [2.2805263725178766, 48.79487014521604]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b904fae5fa236d01f55cac8b2a83ea9080ac040b", "fields": {"departement": "92", "stop_lat": 48.81269830751238, "code_postal": "92023", "stop_lon": 2.25832489452084, "coord": [48.81269830751238, 2.25832489452084], "stop_id": 3909035, "stop_desc": "FACE 25 R DU PONT D'AMOUR - 92023", "stop_name": "PONT D'AMOUR - HOPITAL PERCY"}, "geometry": {"type": "Point", "coordinates": [2.25832489452084, 48.81269830751238]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6b1f37d1ad32f1ab6a3f8a75e36a2effe05e6058", "fields": {"departement": "92", "stop_lat": 48.80627981730796, "code_postal": "92023", "stop_lon": 2.2565113270194685, "coord": [48.80627981730796, 2.2565113270194685], "stop_id": 3909042, "stop_desc": "FACE 1 R FOURNIER - 92023", "stop_name": "VALLEE DU BOIS"}, "geometry": {"type": "Point", "coordinates": [2.2565113270194685, 48.80627981730796]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ec276208b88e21b6c97ffbe219ed2c45297f2de4", "fields": {"departement": "92", "stop_lat": 48.80554418557914, "code_postal": "92023", "stop_lon": 2.258553478025072, "coord": [48.80554418557914, 2.258553478025072], "stop_id": 3909044, "stop_desc": "6-8 AVENUE ADOLPHE SCHNEIDER - 92023", "stop_name": "MARQUIS"}, "geometry": {"type": "Point", "coordinates": [2.258553478025072, 48.80554418557914]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "912cfa7290262165665c51ae5f07661ba17a09fb", "fields": {"departement": "92", "stop_lat": 48.79965105309125, "code_postal": "92023", "stop_lon": 2.263038510424508, "coord": [48.79965105309125, 2.263038510424508], "stop_id": 3909052, "stop_desc": "5-7 RUE DE L'EGLISE - 92023", "stop_name": "MAIRIE DE CLAMART."}, "geometry": {"type": "Point", "coordinates": [2.263038510424508, 48.79965105309125]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f9398f8a9acd9fdcef8d1b0fe93710ef5fad9d00", "fields": {"departement": "92", "stop_lat": 48.79792816615365, "code_postal": "92023", "stop_lon": 2.2676393668758803, "coord": [48.79792816615365, 2.2676393668758803], "stop_id": 3909054, "stop_desc": "31 AVENUE JEAN BAPTISTE CLEMENT - 92023", "stop_name": "PLESSIS PIQUET"}, "geometry": {"type": "Point", "coordinates": [2.2676393668758803, 48.79792816615365]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "08cab2dc0b2cdc9a3c6b7730cfc25545f2f4e742", "fields": {"departement": "92", "stop_lat": 48.79935797531224, "code_postal": "92023", "stop_lon": 2.268916328451905, "coord": [48.79935797531224, 2.268916328451905], "stop_id": 3909055, "stop_desc": "FACE 23 R DE FONTENAY - 92023", "stop_name": "PIERRE CORBY - FONTENAY"}, "geometry": {"type": "Point", "coordinates": [2.268916328451905, 48.79935797531224]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eda95971257e7f6f7479be6abad4ff4205e8fb4c", "fields": {"departement": "92", "stop_lat": 48.78988368983829, "code_postal": "92023", "stop_lon": 2.253231383781296, "coord": [48.78988368983829, 2.253231383781296], "stop_id": 3909068, "stop_desc": "ROUTE DE LA PORTE DE TRIVAUX - 92023", "stop_name": "JARDIN PARISIEN - HOPITAL ANTOINE BECLERE"}, "geometry": {"type": "Point", "coordinates": [2.253231383781296, 48.78988368983829]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8eddcea164ce434eb34c7e6d39f5747292ea07b7", "fields": {"departement": "92", "stop_lat": 48.78533970695105, "code_postal": "92023", "stop_lon": 2.246329212544745, "coord": [48.78533970695105, 2.246329212544745], "stop_id": 3909072, "stop_desc": "R DE CHAMPAGNE - 92023", "stop_name": "PARC AUZELLE"}, "geometry": {"type": "Point", "coordinates": [2.246329212544745, 48.78533970695105]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "521dfcfbeabec38d653c7f5ed581ed00b7a41095", "fields": {"departement": "92", "stop_lat": 48.78482676766341, "code_postal": "92023", "stop_lon": 2.2455140332153407, "coord": [48.78482676766341, 2.2455140332153407], "stop_id": 3909073, "stop_desc": "R DE CHAMPAGNE - 92023", "stop_name": "PARC AUZELLE"}, "geometry": {"type": "Point", "coordinates": [2.2455140332153407, 48.78482676766341]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ef32a408050e90573c8a6fed2c1efb1a133baede", "fields": {"departement": "92", "stop_lat": 48.78457401646347, "code_postal": "92023", "stop_lon": 2.244113553792332, "coord": [48.78457401646347, 2.244113553792332], "stop_id": 3909074, "stop_desc": "9-11 R DE L'ILE DE FRANCE - 92023", "stop_name": "CITE DE LA PLAINE"}, "geometry": {"type": "Point", "coordinates": [2.244113553792332, 48.78457401646347]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7c53d719a83adfdc4c402a9dd3a844b510ff42c7", "fields": {"departement": "92", "stop_lat": 48.784590006297655, "code_postal": "92023", "stop_lon": 2.241610899461307, "coord": [48.784590006297655, 2.241610899461307], "stop_id": 3909075, "stop_desc": "36 R DE NORMANDIE - 92023", "stop_name": "ILE DE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.241610899461307, 48.784590006297655]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2c67466bb9ebe772e9b5d8aa8d623448dbcab6c9", "fields": {"departement": "92", "stop_lat": 48.79930255166837, "code_postal": "92023", "stop_lon": 2.266358647140747, "coord": [48.79930255166837, 2.266358647140747], "stop_id": 3909094, "stop_desc": "FACE 12 R SAINT-CHRISTOPHE - 92023", "stop_name": "SAINT-CHRISTOPHE"}, "geometry": {"type": "Point", "coordinates": [2.266358647140747, 48.79930255166837]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c888ad7f432cc2932c0711e96f7e68e027a3f8a6", "fields": {"departement": "92", "stop_lat": 48.78565424446341, "code_postal": "92032", "stop_lon": 2.294097131605548, "coord": [48.78565424446341, 2.294097131605548], "stop_id": 3909109, "stop_desc": "14 RUE DES POTIERS - 92032", "stop_name": "POTIERS"}, "geometry": {"type": "Point", "coordinates": [2.294097131605548, 48.78565424446341]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "63f13a2eb4fa97ff1ce43a53b3e6a0e0bdfffbf4", "fields": {"departement": "92", "stop_lat": 48.79473999766578, "code_postal": "92032", "stop_lon": 2.2913552016110916, "coord": [48.79473999766578, 2.2913552016110916], "stop_id": 3909116, "stop_desc": "FACE 22 AVENUE JEANNE ET MAURICE DOLIVET - 92032", "stop_name": "CIMETIERE DE FONTENAY-AUX-ROSES"}, "geometry": {"type": "Point", "coordinates": [2.2913552016110916, 48.79473999766578]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "269c68b6b1cacbb0468b7aae28aa920f4065d488", "fields": {"departement": "92", "stop_lat": 48.791260868710474, "code_postal": "92032", "stop_lon": 2.2892906255623, "coord": [48.791260868710474, 2.2892906255623], "stop_id": 3909117, "stop_desc": "AVENUE JEANNE ET MAURICE DOLIVET - 92032", "stop_name": "THEATRE DES SOURCES"}, "geometry": {"type": "Point", "coordinates": [2.2892906255623, 48.791260868710474]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "caa3d84c4c12ac34b87d840e4179c669435b1016", "fields": {"departement": "92", "stop_lat": 48.90370014767024, "code_postal": "92024", "stop_lon": 2.3064180098461557, "coord": [48.90370014767024, 2.3064180098461557], "stop_id": 4017047, "stop_desc": "FACE 15 RUE VILLENEUVE - 92024", "stop_name": "MAIRIE DE CLICHY - METRO"}, "geometry": {"type": "Point", "coordinates": [2.3064180098461557, 48.90370014767024]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "32d4618cc1a5920158ff74e740cea735ac7fa3e2", "fields": {"departement": "93", "stop_lat": 48.911738526229854, "code_postal": "93070", "stop_lon": 2.334268706162471, "coord": [48.911738526229854, 2.334268706162471], "stop_id": 4017049, "stop_desc": "BOULEVARD VICTOR HUGO - 93070", "stop_name": "MAIRIE DE SAINT-OUEN-METRO"}, "geometry": {"type": "Point", "coordinates": [2.334268706162471, 48.911738526229854]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f99d53b03ae80562d736b5f348e2d31998a2f8a5", "fields": {"departement": "92", "stop_lat": 48.916287183435955, "code_postal": "92004", "stop_lon": 2.2941383019092667, "coord": [48.916287183435955, 2.2941383019092667], "stop_id": 4017065, "stop_desc": "PISTE GARE ROUTIERE - 92004", "stop_name": "GABRIEL PERI-METRO"}, "geometry": {"type": "Point", "coordinates": [2.2941383019092667, 48.916287183435955]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8bb5bbb947ef716218d6ba1a362b309020248ded", "fields": {"departement": "92", "stop_lat": 48.91970778205413, "code_postal": "92004", "stop_lon": 2.314099576330498, "coord": [48.91970778205413, 2.314099576330498], "stop_id": 4017067, "stop_desc": "FACE 207 AVENUE DES GRESILLONS - 92004", "stop_name": "LES GRESILLONS RER"}, "geometry": {"type": "Point", "coordinates": [2.314099576330498, 48.91970778205413]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "74f9e614541d561c01810c5aefd6bee124ca8bcf", "fields": {"departement": "75", "stop_lat": 48.86077132519706, "code_postal": "75107", "stop_lon": 2.3239603941184024, "coord": [48.86077132519706, 2.3239603941184024], "stop_id": 4022883, "stop_desc": "1 RUE DE SOLFERINO - 75107", "stop_name": "MUSEE D'ORSAY"}, "geometry": {"type": "Point", "coordinates": [2.3239603941184024, 48.86077132519706]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ebd8ea3ca13f3251c2b90b8d3fb1c86dee258c61", "fields": {"departement": "75", "stop_lat": 48.86077132519706, "code_postal": "75107", "stop_lon": 2.3239603941184024, "coord": [48.86077132519706, 2.3239603941184024], "stop_id": 4022884, "stop_desc": "1 RUE DE SOLFERINO - 75107", "stop_name": "MUSEE D'ORSAY"}, "geometry": {"type": "Point", "coordinates": [2.3239603941184024, 48.86077132519706]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "65be435f1aa8ddf263634487aa53df73b81fd7c0", "fields": {"departement": "75", "stop_lat": 48.861543739204706, "code_postal": "75107", "stop_lon": 2.3200372331720067, "coord": [48.861543739204706, 2.3200372331720067], "stop_id": 4022886, "stop_desc": "241 BOULEVARD SAINT GERMAIN - 75107", "stop_name": "ASSEMBLEE NATIONALE"}, "geometry": {"type": "Point", "coordinates": [2.3200372331720067, 48.861543739204706]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "33ba33144b08ecd90d430d0563aaa6d93b5fc4da", "fields": {"departement": "75", "stop_lat": 48.86672008014077, "code_postal": "75108", "stop_lon": 2.3175289269176997, "coord": [48.86672008014077, 2.3175289269176997], "stop_id": 4022888, "stop_desc": "AVENUE DES CHAMPS ELYSEES - 75108", "stop_name": "CONCORDE - COURS LA REINE"}, "geometry": {"type": "Point", "coordinates": [2.3175289269176997, 48.86672008014077]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d1500cadc1763fc84ccbf5efb1cf9d2b87515092", "fields": {"departement": "75", "stop_lat": 48.87027649546204, "code_postal": "75108", "stop_lon": 2.3055932182690912, "coord": [48.87027649546204, 2.3055932182690912], "stop_id": 4022895, "stop_desc": "39 AVENUE DES CHAMPS ELYSEES - 75108", "stop_name": "LA BOETIE - CHAMPS-ELYSEES"}, "geometry": {"type": "Point", "coordinates": [2.3055932182690912, 48.87027649546204]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c2a52ec394e3892fdfde0b73653add5a5d8d64ca", "fields": {"departement": "75", "stop_lat": 48.874308041663966, "code_postal": "75117", "stop_lon": 2.293682721402183, "coord": [48.874308041663966, 2.293682721402183], "stop_id": 4022900, "stop_desc": "2 AVENUE DE LA GRANDE ARMEE - 75117", "stop_name": "CHARLES DE GAULLE - ETOILE - GRANDE ARMEE"}, "geometry": {"type": "Point", "coordinates": [2.293682721402183, 48.874308041663966]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b3d3b4bdb083537c83f2a74a2bba0daf8e088219", "fields": {"departement": "92", "stop_lat": 48.881317375993476, "code_postal": "92051", "stop_lon": 2.2723103244701215, "coord": [48.881317375993476, 2.2723103244701215], "stop_id": 4022906, "stop_desc": "60-62 AVENUE CHARLES DE GAULLE - 92051", "stop_name": "LES SABLONS"}, "geometry": {"type": "Point", "coordinates": [2.2723103244701215, 48.881317375993476]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cc0a0b334f962f17ce7c35bfbb13cdab6971e85d", "fields": {"departement": "92", "stop_lat": 48.881047347727176, "code_postal": "92051", "stop_lon": 2.2715612036989734, "coord": [48.881047347727176, 2.2715612036989734], "stop_id": 4022907, "stop_desc": "101 AVENUE CHARLES DE GAULLE - 92051", "stop_name": "LES SABLONS"}, "geometry": {"type": "Point", "coordinates": [2.2715612036989734, 48.881047347727176]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d59a66a259ddcf4cfb4ebb59e587e07a64b1dbb3", "fields": {"departement": "92", "stop_lat": 48.8829142749037, "code_postal": "92051", "stop_lon": 2.2673072076891807, "coord": [48.8829142749037, 2.2673072076891807], "stop_id": 4022908, "stop_desc": "110-112 AVENUE CHARLES DE GAULLE - 92051", "stop_name": "RUE DE L'HOTEL DE VILLE"}, "geometry": {"type": "Point", "coordinates": [2.2673072076891807, 48.8829142749037]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "36fc6b7ce5e45ec64bb3460e6778d2141098419e", "fields": {"departement": "92", "stop_lat": 48.882994057899715, "code_postal": "92051", "stop_lon": 2.265453822468646, "coord": [48.882994057899715, 2.265453822468646], "stop_id": 4022911, "stop_desc": "151 AVENUE CHARLES DE GAULLE - 92051", "stop_name": "LES GRAVIERS"}, "geometry": {"type": "Point", "coordinates": [2.265453822468646, 48.882994057899715]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3a618194ffb33ec0c9d6e68909294cd3a02fa488", "fields": {"departement": "92", "stop_lat": 48.88555130589665, "code_postal": "92051", "stop_lon": 2.258922605272076, "coord": [48.88555130589665, 2.258922605272076], "stop_id": 4022912, "stop_desc": "176 AVENUE CHARLES DE GAULLE - 92051", "stop_name": "PONT DE NEUILLY-METRO"}, "geometry": {"type": "Point", "coordinates": [2.258922605272076, 48.88555130589665]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "351d62c43684df679da388c1429fe275a3bc5aac", "fields": {"departement": "92", "stop_lat": 48.887111564357454, "code_postal": "92026", "stop_lon": 2.2537415598241908, "coord": [48.887111564357454, 2.2537415598241908], "stop_id": 4022914, "stop_desc": "BOULEVARD DE NEUILLY (SUR PISTE) - 92026", "stop_name": "PONT DE NEUILLY - RIVE GAUCHE"}, "geometry": {"type": "Point", "coordinates": [2.2537415598241908, 48.887111564357454]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2848bd88525669d49fcceb087ecbea9063701db3", "fields": {"departement": "92", "stop_lat": 48.89712004832858, "code_postal": "92026", "stop_lon": 2.2378183351745626, "coord": [48.89712004832858, 2.2378183351745626], "stop_id": 4022924, "stop_desc": "39 AVENUE LEONARD DE VINCI - 92026", "stop_name": "LEONARD DE VINCI"}, "geometry": {"type": "Point", "coordinates": [2.2378183351745626, 48.89712004832858]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9d325aa9a66b41b3374cbd4eb10da65cfd628b56", "fields": {"departement": "92", "stop_lat": 48.896524135913715, "code_postal": "92026", "stop_lon": 2.234561764138717, "coord": [48.896524135913715, 2.234561764138717], "stop_id": 4022927, "stop_desc": "17-29 RUE DES ETUDIANTS - 92026", "stop_name": "RUE DES ETUDIANTS"}, "geometry": {"type": "Point", "coordinates": [2.234561764138717, 48.896524135913715]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1435291fd592747f0bf58854569eac282b15168a", "fields": {"departement": "92", "stop_lat": 48.886657892619546, "code_postal": "92062", "stop_lon": 2.2478004797854343, "coord": [48.886657892619546, 2.2478004797854343], "stop_id": 4022939, "stop_desc": "RUE DE LA REPUBLIQUE - 92062", "stop_name": "BELLINI"}, "geometry": {"type": "Point", "coordinates": [2.2478004797854343, 48.886657892619546]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "934d2e76ec4245db6344e8342e369790a69ce762", "fields": {"departement": "75", "stop_lat": 48.87709023274955, "code_postal": "75116", "stop_lon": 2.284142542845437, "coord": [48.87709023274955, 2.284142542845437], "stop_id": 4022943, "stop_desc": "85 AVENUE DE LA GRANDE ARMEE - 75116", "stop_name": "PORTE MAILLOT"}, "geometry": {"type": "Point", "coordinates": [2.284142542845437, 48.87709023274955]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1a99a2e315b3bf95ff7727044e3d343908a1ca84", "fields": {"departement": "75", "stop_lat": 48.87553755046, "code_postal": "75116", "stop_lon": 2.289130912119065, "coord": [48.87553755046, 2.289130912119065], "stop_id": 4022944, "stop_desc": "43-47 AVENUE DE LA GRANDE ARMEE - 75116", "stop_name": "ARGENTINE"}, "geometry": {"type": "Point", "coordinates": [2.289130912119065, 48.87553755046]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ddabc79d5e8935ee1c6870af74b652e0ca9ad87e", "fields": {"departement": "75", "stop_lat": 48.86282731865924, "code_postal": "75107", "stop_lon": 2.3111418130628483, "coord": [48.86282731865924, 2.3111418130628483], "stop_id": 4022951, "stop_desc": "FACE 41 QUAI D'ORSAY - 75107", "stop_name": "PONT DES INVALIDES - PLACE DE FINLANDE"}, "geometry": {"type": "Point", "coordinates": [2.3111418130628483, 48.86282731865924]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a7790abfa0db32a7b10832297a72e9a07ee28d90", "fields": {"departement": "75", "stop_lat": 48.868336389464545, "code_postal": "75108", "stop_lon": 2.3103080246131436, "coord": [48.868336389464545, 2.3103080246131436], "stop_id": 4022953, "stop_desc": "FACE 43 AVENUE F.D.ROOSEVELT - 75108", "stop_name": "ROND-POINT DES CHAMPS-ELYSEES"}, "geometry": {"type": "Point", "coordinates": [2.3103080246131436, 48.868336389464545]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1efda7b0871ec343a69ddb3f8272b012bf335ec6", "fields": {"departement": "75", "stop_lat": 48.87369358750886, "code_postal": "75108", "stop_lon": 2.313861258840092, "coord": [48.87369358750886, 2.313861258840092], "stop_id": 4022956, "stop_desc": "44 RUE LA BOETIE - 75108", "stop_name": "LA BOETIE - PERCIER"}, "geometry": {"type": "Point", "coordinates": [2.313861258840092, 48.87369358750886]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f19af404d14593d24d839afb2c30405187d23a45", "fields": {"departement": "75", "stop_lat": 48.881489637897715, "code_postal": "75117", "stop_lon": 2.2958160680054274, "coord": [48.881489637897715, 2.2958160680054274], "stop_id": 4022968, "stop_desc": "32 AVENUE NIEL - 75117", "stop_name": "PIERRE DEMOURS"}, "geometry": {"type": "Point", "coordinates": [2.2958160680054274, 48.881489637897715]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6294161e744fab798ba795595862021910afb321", "fields": {"departement": "75", "stop_lat": 48.88104905742808, "code_postal": "75117", "stop_lon": 2.2952304795629583, "coord": [48.88104905742808, 2.2952304795629583], "stop_id": 4022969, "stop_desc": "25 AVENUE NIEL - 75117", "stop_name": "PIERRE DEMOURS"}, "geometry": {"type": "Point", "coordinates": [2.2952304795629583, 48.88104905742808]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "85180ff73f6db15c395cf379252b2a037317493e", "fields": {"departement": "75", "stop_lat": 48.88522833258763, "code_postal": "75117", "stop_lon": 2.295826706859305, "coord": [48.88522833258763, 2.295826706859305], "stop_id": 4022973, "stop_desc": "118 AVENUE DE VILLIERS - 75117", "stop_name": "PEREIRE-LE CHATELIER"}, "geometry": {"type": "Point", "coordinates": [2.295826706859305, 48.88522833258763]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "92782d63cc1231262ca0cde385a403f023b805d3", "fields": {"departement": "75", "stop_lat": 48.88601688033029, "code_postal": "75117", "stop_lon": 2.289598157269828, "coord": [48.88601688033029, 2.289598157269828], "stop_id": 4022976, "stop_desc": "FACE 5 PLACE DE LA PORTE DE CHAMPERRET - 75117", "stop_name": "L'YSER ET LA SOMME"}, "geometry": {"type": "Point", "coordinates": [2.289598157269828, 48.88601688033029]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1e8fffa27a83af6fb291ea8adc989e797d0c6045", "fields": {"departement": "92", "stop_lat": 48.886984759804776, "code_postal": "92044", "stop_lon": 2.2831784382127345, "coord": [48.886984759804776, 2.2831784382127345], "stop_id": 4022978, "stop_desc": "4 RUE DE VILLIERS - 92044", "stop_name": "VILLIERS - BINEAU"}, "geometry": {"type": "Point", "coordinates": [2.2831784382127345, 48.886984759804776]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "25ece8f829ed274f3d4b7d841d1345a6ab277608", "fields": {"departement": "92", "stop_lat": 48.89174557599857, "code_postal": "92044", "stop_lon": 2.278130615179792, "coord": [48.89174557599857, 2.278130615179792], "stop_id": 4022982, "stop_desc": "70 RUE DE VILLIERS - 92044", "stop_name": "HOPITAL DU PERPETUEL SECOURS"}, "geometry": {"type": "Point", "coordinates": [2.278130615179792, 48.89174557599857]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3454ff33f0305274c5c5dcdd03c0cd52253e0120", "fields": {"departement": "92", "stop_lat": 48.8932094315966, "code_postal": "92051", "stop_lon": 2.2760435972410815, "coord": [48.8932094315966, 2.2760435972410815], "stop_id": 4022983, "stop_desc": "67 BOULEVARD DU CHATEAU - 92051", "stop_name": "PLACE DE LA LIBERATION"}, "geometry": {"type": "Point", "coordinates": [2.2760435972410815, 48.8932094315966]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5f78a5ca9d350940ce4be724eaaa7c4ff528c62d", "fields": {"departement": "92", "stop_lat": 48.89601180102115, "code_postal": "92051", "stop_lon": 2.2729598026983204, "coord": [48.89601180102115, 2.2729598026983204], "stop_id": 4022987, "stop_desc": "100 BOULEVARD VICTOR HUGO - 92051", "stop_name": "VILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.2729598026983204, 48.89601180102115]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c79dfcb8a1de5abc910b053379c8e010ca4f5887", "fields": {"departement": "92", "stop_lat": 48.89339297784563, "code_postal": "92051", "stop_lon": 2.26666609564012, "coord": [48.89339297784563, 2.26666609564012], "stop_id": 4022989, "stop_desc": "FACE 62 BOULEVARD DU GENERAL LECLERC - 92051", "stop_name": "PONT DE LA GRANDE JATTE"}, "geometry": {"type": "Point", "coordinates": [2.26666609564012, 48.89339297784563]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8bf6872811b665447d440a94cacbe1ce280b767c", "fields": {"departement": "92", "stop_lat": 48.887828209770674, "code_postal": "92051", "stop_lon": 2.2638526134825514, "coord": [48.887828209770674, 2.2638526134825514], "stop_id": 4022992, "stop_desc": "1 BOULEVARD DU CHATEAU - 92051", "stop_name": "CHATEAU"}, "geometry": {"type": "Point", "coordinates": [2.2638526134825514, 48.887828209770674]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e60a5b2193076462526a947f9ed46adb5af884be", "fields": {"departement": "92", "stop_lat": 48.88097471259445, "code_postal": "92051", "stop_lon": 2.255809049565702, "coord": [48.88097471259445, 2.255809049565702], "stop_id": 4022999, "stop_desc": "7-9 RUE DELABORDERE - 92051", "stop_name": "RUE DU BOIS DE BOULOGNE"}, "geometry": {"type": "Point", "coordinates": [2.255809049565702, 48.88097471259445]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "95b891936ebdfd430a99df9b0d056ea49b14d16f", "fields": {"departement": "92", "stop_lat": 48.87866366555721, "code_postal": "92062", "stop_lon": 2.2419142564861145, "coord": [48.87866366555721, 2.2419142564861145], "stop_id": 4023004, "stop_desc": "FACE 6 BOULEVARD RICHARD WALLACE - 92062", "stop_name": "HOPITAL - PONT DE PUTEAUX"}, "geometry": {"type": "Point", "coordinates": [2.2419142564861145, 48.87866366555721]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bbcc638c3f57aaca6dc28808f635a37bcd9ce255", "fields": {"departement": "92", "stop_lat": 48.870508785342544, "code_postal": "92073", "stop_lon": 2.2275289311437714, "coord": [48.870508785342544, 2.2275289311437714], "stop_id": 4023012, "stop_desc": "RUE DE VERDUN - 92073", "stop_name": "HENRI IV"}, "geometry": {"type": "Point", "coordinates": [2.2275289311437714, 48.870508785342544]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9cfb426254fd7ba1a99d43bd69562b4ad3c6d848", "fields": {"departement": "92", "stop_lat": 48.86767710841224, "code_postal": "92073", "stop_lon": 2.226812902957634, "coord": [48.86767710841224, 2.226812902957634], "stop_id": 4023014, "stop_desc": "FACE 13 BOULEVARD HENRI SELLIER - 92073", "stop_name": "RUE DES BOURETS - PONT DE SURESNES"}, "geometry": {"type": "Point", "coordinates": [2.226812902957634, 48.86767710841224]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0bb32e67796a9dd49db9d47edad78960ae35cb50", "fields": {"departement": "92", "stop_lat": 48.87333000775836, "code_postal": "92073", "stop_lon": 2.2266646165032538, "coord": [48.87333000775836, 2.2266646165032538], "stop_id": 4023018, "stop_desc": "46 RUE CARNOT - 92073", "stop_name": "HONORE D'ESTIENNE D'ORVES"}, "geometry": {"type": "Point", "coordinates": [2.2266646165032538, 48.87333000775836]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e280186733f75cafbe8cb6b9ed333bcd620ca61e", "fields": {"departement": "92", "stop_lat": 48.88806252196888, "code_postal": "92051", "stop_lon": 2.2816509362185022, "coord": [48.88806252196888, 2.2816509362185022], "stop_id": 4023028, "stop_desc": "37 RUE DE VILLIERS - 92051", "stop_name": "LOUIS ROUQUIER"}, "geometry": {"type": "Point", "coordinates": [2.2816509362185022, 48.88806252196888]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "401a7e821a2c1c6c19b473f270258f3986a0f839", "fields": {"departement": "75", "stop_lat": 48.86525375030457, "code_postal": "75108", "stop_lon": 2.3104186054184357, "coord": [48.86525375030457, 2.3104186054184357], "stop_id": 4023037, "stop_desc": "FACE 5 AVENUE F.D. ROOSEVELT - 75108", "stop_name": "PALAIS DE LA DECOUVERTE"}, "geometry": {"type": "Point", "coordinates": [2.3104186054184357, 48.86525375030457]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eb8e70177ff245a09361ee26cd21721384b9a79f", "fields": {"departement": "75", "stop_lat": 48.868336389464545, "code_postal": "75108", "stop_lon": 2.3103080246131436, "coord": [48.868336389464545, 2.3103080246131436], "stop_id": 4023038, "stop_desc": "FACE 43 AVENUE F.D.ROOSEVELT - 75108", "stop_name": "ROND-POINT DES CHAMPS-ELYSEES"}, "geometry": {"type": "Point", "coordinates": [2.3103080246131436, 48.868336389464545]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "72879c21cd4232eaec9a404432f01f8606e34158", "fields": {"departement": "75", "stop_lat": 48.869469015384865, "code_postal": "75108", "stop_lon": 2.3113019501850944, "coord": [48.869469015384865, 2.3113019501850944], "stop_id": 4023039, "stop_desc": "FACE 3 AVENUE MATIGNON - 75108", "stop_name": "ROND-POINT DES CHAMPS-ELYSEES - MATIGNON"}, "geometry": {"type": "Point", "coordinates": [2.3113019501850944, 48.869469015384865]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7580d0287cda8ed423dc259f6077f163e6749452", "fields": {"departement": "75", "stop_lat": 48.88522833258763, "code_postal": "75117", "stop_lon": 2.295826706859305, "coord": [48.88522833258763, 2.295826706859305], "stop_id": 4023051, "stop_desc": "118 AVENUE DE VILLIERS - 75117", "stop_name": "PEREIRE-LE CHATELIER"}, "geometry": {"type": "Point", "coordinates": [2.295826706859305, 48.88522833258763]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "297034cf5358c248170be5a08238a82b780deacf", "fields": {"departement": "92", "stop_lat": 48.886984759804776, "code_postal": "92044", "stop_lon": 2.2831784382127345, "coord": [48.886984759804776, 2.2831784382127345], "stop_id": 4023054, "stop_desc": "4 RUE DE VILLIERS - 92044", "stop_name": "VILLIERS - BINEAU"}, "geometry": {"type": "Point", "coordinates": [2.2831784382127345, 48.886984759804776]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e631ee7d5655657d46f7311973605fdaaa95163a", "fields": {"departement": "92", "stop_lat": 48.87576753024058, "code_postal": "92073", "stop_lon": 2.228798565454174, "coord": [48.87576753024058, 2.228798565454174], "stop_id": 4023068, "stop_desc": "100 RUE CARNOT - 92073", "stop_name": "BERTY ALBRECHT"}, "geometry": {"type": "Point", "coordinates": [2.228798565454174, 48.87576753024058]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "78659e5f88cc52961f576701ca3cafd386bf841c", "fields": {"departement": "92", "stop_lat": 48.87752468490553, "code_postal": "92062", "stop_lon": 2.234013498122189, "coord": [48.87752468490553, 2.234013498122189], "stop_id": 4023070, "stop_desc": "106 RUE DE VERDUN - 92062", "stop_name": "DE PRESSENSE"}, "geometry": {"type": "Point", "coordinates": [2.234013498122189, 48.87752468490553]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fdcb23d6cddd8e885e60970e1cd4934a357cf93f", "fields": {"departement": "92", "stop_lat": 48.880404351725026, "code_postal": "92062", "stop_lon": 2.238422705718465, "coord": [48.880404351725026, 2.238422705718465], "stop_id": 4023073, "stop_desc": "45 BOULEVARD RICHARD WALLACE - 92062", "stop_name": "WALLACE - JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.238422705718465, 48.880404351725026]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "18e2f04eba2238156d9fb800afb6d28aa8114d6d", "fields": {"departement": "75", "stop_lat": 48.88601688033029, "code_postal": "75117", "stop_lon": 2.289598157269828, "coord": [48.88601688033029, 2.289598157269828], "stop_id": 4023097, "stop_desc": "FACE 5 PLACE DE LA PORTE DE CHAMPERRET - 75117", "stop_name": "L'YSER ET LA SOMME"}, "geometry": {"type": "Point", "coordinates": [2.289598157269828, 48.88601688033029]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "75bf25edab3d84e969ed810f5da7143a2807b233", "fields": {"departement": "75", "stop_lat": 48.88581917791438, "code_postal": "75117", "stop_lon": 2.289639222376461, "coord": [48.88581917791438, 2.289639222376461], "stop_id": 4023098, "stop_desc": "7 PLACE DE LA PORTE DE CHAMPERRET - 75117", "stop_name": "L'YSER ET LA SOMME"}, "geometry": {"type": "Point", "coordinates": [2.289639222376461, 48.88581917791438]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "359ee3c256b66a2d034f24bd284c1e318bc1d844", "fields": {"departement": "92", "stop_lat": 48.88771020024983, "code_postal": "92051", "stop_lon": 2.2778762809004243, "coord": [48.88771020024983, 2.2778762809004243], "stop_id": 4023100, "stop_desc": "92 BOULEVARD BINEAU - 92051", "stop_name": "VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.2778762809004243, 48.88771020024983]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "438b3435ef3fcab32578467bda84a5d070b1d50c", "fields": {"departement": "92", "stop_lat": 48.887826061073866, "code_postal": "92051", "stop_lon": 2.2759545564935877, "coord": [48.887826061073866, 2.2759545564935877], "stop_id": 4023103, "stop_desc": "99 BOULEVARD BINEAU - 92051", "stop_name": "INKERMANN - BINEAU"}, "geometry": {"type": "Point", "coordinates": [2.2759545564935877, 48.887826061073866]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "581fc86469863d2232a6e26d9e9f5d6f37dd8680", "fields": {"departement": "92", "stop_lat": 48.8942916530335, "code_postal": "92051", "stop_lon": 2.2665967215565543, "coord": [48.8942916530335, 2.2665967215565543], "stop_id": 4023111, "stop_desc": "197 BOULEVARD BINEAU - 92051", "stop_name": "ILE DE LA JATTE"}, "geometry": {"type": "Point", "coordinates": [2.2665967215565543, 48.8942916530335]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "935f27c80143b5e9a40b23f41c6b5c9512e4aaf3", "fields": {"departement": "92", "stop_lat": 48.897525098700406, "code_postal": "92026", "stop_lon": 2.263416321988581, "coord": [48.897525098700406, 2.263416321988581], "stop_id": 4023113, "stop_desc": "BOULEVARD DE VERDUN - 92026", "stop_name": "PONT BINEAU"}, "geometry": {"type": "Point", "coordinates": [2.263416321988581, 48.897525098700406]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a312358ceb95de92f429955f06264ae9ce26f454", "fields": {"departement": "92", "stop_lat": 48.90506065554389, "code_postal": "92026", "stop_lon": 2.256289238138161, "coord": [48.90506065554389, 2.256289238138161], "stop_id": 4023118, "stop_desc": "FACE 165 BOULEVARD DE VERDUN - 92026", "stop_name": "EUROPE"}, "geometry": {"type": "Point", "coordinates": [2.256289238138161, 48.90506065554389]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4c9df4802d34ddc24ba36649f80243b31dd6573d", "fields": {"departement": "92", "stop_lat": 48.90476405437525, "code_postal": "92026", "stop_lon": 2.2562488033016863, "coord": [48.90476405437525, 2.2562488033016863], "stop_id": 4023119, "stop_desc": "165 BOULEVARD DE VERDUN - 92026", "stop_name": "EUROPE"}, "geometry": {"type": "Point", "coordinates": [2.2562488033016863, 48.90476405437525]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "be7c9bb603f692e112d136158ed221923e4fb02d", "fields": {"departement": "92", "stop_lat": 48.90526827764498, "code_postal": "92035", "stop_lon": 2.2341899782154515, "coord": [48.90526827764498, 2.2341899782154515], "stop_id": 4023129, "stop_desc": "FACE 19 AVENUE DE VERDUN 1916 - 92035", "stop_name": "BONNIN"}, "geometry": {"type": "Point", "coordinates": [2.2341899782154515, 48.90526827764498]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "89567a8ed9d4d993d4ddefae99519fff4976bc4f", "fields": {"departement": "92", "stop_lat": 48.89628877004526, "code_postal": "92050", "stop_lon": 2.222826331966747, "coord": [48.89628877004526, 2.222826331966747], "stop_id": 4023138, "stop_desc": "0 BD DE PESARO - 92050", "stop_name": "NANTERRE-PREFECTURE RER"}, "geometry": {"type": "Point", "coordinates": [2.222826331966747, 48.89628877004526]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "60fb9ca595ce7a9e4b21d60ce315b43ebd1540ae", "fields": {"departement": "92", "stop_lat": 48.88967429306057, "code_postal": "92050", "stop_lon": 2.213900437547793, "coord": [48.88967429306057, 2.213900437547793], "stop_id": 4023149, "stop_desc": "FACE 17 AVENUE DES CHAMPS PIERREUX - 92050", "stop_name": "LES CHAMPS PIERREUX"}, "geometry": {"type": "Point", "coordinates": [2.213900437547793, 48.88967429306057]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "714bf800905c3a6d342cac51d26d932484178205", "fields": {"departement": "92", "stop_lat": 48.88922446773314, "code_postal": "92050", "stop_lon": 2.213451761329107, "coord": [48.88922446773314, 2.213451761329107], "stop_id": 4023150, "stop_desc": "AVENUE DES CHAMPS PIERREUX - 92050", "stop_name": "LES CHAMPS PIERREUX"}, "geometry": {"type": "Point", "coordinates": [2.213451761329107, 48.88922446773314]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cceb3e3fc0202306366deca50ceae0c7ba4e4797", "fields": {"departement": "92", "stop_lat": 48.88884631097434, "code_postal": "92050", "stop_lon": 2.204457793799681, "coord": [48.88884631097434, 2.204457793799681], "stop_id": 4023156, "stop_desc": "42 RUE SADI CARNOT - 92050", "stop_name": "SADI CARNOT - JOLIOT CURIE"}, "geometry": {"type": "Point", "coordinates": [2.204457793799681, 48.88884631097434]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8346e7f77e86da0bd22a63fbc7138832b34a4558", "fields": {"departement": "92", "stop_lat": 48.88261646917931, "code_postal": "92063", "stop_lon": 2.1878488645965537, "coord": [48.88261646917931, 2.1878488645965537], "stop_id": 4023163, "stop_desc": "FACE 45 AVENUE PAUL DOUMER - 92063", "stop_name": "GABRIEL PERI"}, "geometry": {"type": "Point", "coordinates": [2.1878488645965537, 48.88261646917931]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c35bcc7f90ee842bd5650d05267ec25d0fd2dd22", "fields": {"departement": "92", "stop_lat": 48.8804338024654, "code_postal": "92063", "stop_lon": 2.181791412582316, "coord": [48.8804338024654, 2.181791412582316], "stop_id": 4023165, "stop_desc": "140 AVENUE PAUL DOUMER - 92063", "stop_name": "RUEIL - VILLE"}, "geometry": {"type": "Point", "coordinates": [2.181791412582316, 48.8804338024654]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "464316fd593f597d216c316d9777859e94a97086", "fields": {"departement": "92", "stop_lat": 48.89745348782597, "code_postal": "92026", "stop_lon": 2.2638798727038214, "coord": [48.89745348782597, 2.2638798727038214], "stop_id": 4023180, "stop_desc": "FACE 7 BOULEVARD DE VERDUN - 92026", "stop_name": "PONT BINEAU"}, "geometry": {"type": "Point", "coordinates": [2.2638798727038214, 48.89745348782597]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "63ceec46f2dfa380cd6c8ad4d5c56ccadfbd7f70", "fields": {"departement": "92", "stop_lat": 48.90060601237607, "code_postal": "92026", "stop_lon": 2.2607673873457803, "coord": [48.90060601237607, 2.2607673873457803], "stop_id": 4023181, "stop_desc": "68 BOULEVARD DE VERDUN - 92026", "stop_name": "PAIX - VERDUN"}, "geometry": {"type": "Point", "coordinates": [2.2607673873457803, 48.90060601237607]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "664a8e337622050ed2595195b872eb2c1914def0", "fields": {"departement": "92", "stop_lat": 48.902456168621285, "code_postal": "92026", "stop_lon": 2.25893794686687, "coord": [48.902456168621285, 2.25893794686687], "stop_id": 4023182, "stop_desc": "155 BOULEVARD DE VERDUN - 92026", "stop_name": "VERDUN - RUE LATERALE"}, "geometry": {"type": "Point", "coordinates": [2.25893794686687, 48.902456168621285]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f71ad077f471ba24e68d023f2fe956472de055f3", "fields": {"departement": "92", "stop_lat": 48.905715257896006, "code_postal": "92035", "stop_lon": 2.2541750973743575, "coord": [48.905715257896006, 2.2541750973743575], "stop_id": 4023184, "stop_desc": "FACE 7 BOULEVARD DE LA REPUBLIQUE - 92035", "stop_name": "PLAISANCE"}, "geometry": {"type": "Point", "coordinates": [2.2541750973743575, 48.905715257896006]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c8dd38ac889c88c40112b43d8d9659171f3e0f7e", "fields": {"departement": "92", "stop_lat": 48.888547529891284, "code_postal": "92050", "stop_lon": 2.2289353659104347, "coord": [48.888547529891284, 2.2289353659104347], "stop_id": 4023194, "stop_desc": "AVENUE PABLO PICASSO - 92050", "stop_name": "LES ROSIERS"}, "geometry": {"type": "Point", "coordinates": [2.2289353659104347, 48.888547529891284]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a961d9ede45ee154e49d9863ffa1132f22c0446f", "fields": {"departement": "92", "stop_lat": 48.89144597329983, "code_postal": "92050", "stop_lon": 2.215068338443355, "coord": [48.89144597329983, 2.215068338443355], "stop_id": 4023199, "stop_desc": "29-35 AV PABLO PICASSO - 92050", "stop_name": "LIBERTE"}, "geometry": {"type": "Point", "coordinates": [2.215068338443355, 48.89144597329983]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e94dd80793afc2a1561eaa9f24261812c09aef42", "fields": {"departement": "92", "stop_lat": 48.88371336825328, "code_postal": "92050", "stop_lon": 2.2033535096094816, "coord": [48.88371336825328, 2.2033535096094816], "stop_id": 4023207, "stop_desc": "82 RUE PAUL VAILLANT COUTURIER - 92050", "stop_name": "PIERRE SERGENT"}, "geometry": {"type": "Point", "coordinates": [2.2033535096094816, 48.88371336825328]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "096fba8308254f8b5b29c6621498d2246baf67e6", "fields": {"departement": "92", "stop_lat": 48.88426143542383, "code_postal": "92050", "stop_lon": 2.2032158199743552, "coord": [48.88426143542383, 2.2032158199743552], "stop_id": 4023208, "stop_desc": "65-67 RUE PAUL VAILLANT COUTURIER - 92050", "stop_name": "PIERRE SERGENT"}, "geometry": {"type": "Point", "coordinates": [2.2032158199743552, 48.88426143542383]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "79681d239690ee8fa9afdf155e23ea12c38299b1", "fields": {"departement": "92", "stop_lat": 48.878125341421985, "code_postal": "92050", "stop_lon": 2.205193796553508, "coord": [48.878125341421985, 2.205193796553508], "stop_id": 4023209, "stop_desc": "116 RUE DE GARCHES - 92050", "stop_name": "LES CHAILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.205193796553508, 48.878125341421985]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "59679da7a22d49589182d1f25a785a30cc73fe87", "fields": {"departement": "92", "stop_lat": 48.87591876669899, "code_postal": "92063", "stop_lon": 2.201030107440782, "coord": [48.87591876669899, 2.201030107440782], "stop_id": 4023212, "stop_desc": "RUE GALLIENI - 92063", "stop_name": "EUGENE SUE"}, "geometry": {"type": "Point", "coordinates": [2.201030107440782, 48.87591876669899]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4fd568960ef94e52b3076dff6639e456f965cf81", "fields": {"departement": "92", "stop_lat": 48.89745348782597, "code_postal": "92026", "stop_lon": 2.2638798727038214, "coord": [48.89745348782597, 2.2638798727038214], "stop_id": 4023228, "stop_desc": "FACE 7 BOULEVARD DE VERDUN - 92026", "stop_name": "PONT BINEAU"}, "geometry": {"type": "Point", "coordinates": [2.2638798727038214, 48.89745348782597]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5a1b5b9a66872465fc7adb9543dea55a61ba61b8", "fields": {"departement": "92", "stop_lat": 48.902456168621285, "code_postal": "92026", "stop_lon": 2.25893794686687, "coord": [48.902456168621285, 2.25893794686687], "stop_id": 4023230, "stop_desc": "155 BOULEVARD DE VERDUN - 92026", "stop_name": "VERDUN - RUE LATERALE"}, "geometry": {"type": "Point", "coordinates": [2.25893794686687, 48.902456168621285]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "401037fefd5c76a9578addbc8d32b674420e8ea9", "fields": {"departement": "92", "stop_lat": 48.905715257896006, "code_postal": "92035", "stop_lon": 2.2541750973743575, "coord": [48.905715257896006, 2.2541750973743575], "stop_id": 4023232, "stop_desc": "FACE 7 BOULEVARD DE LA REPUBLIQUE - 92035", "stop_name": "PLAISANCE"}, "geometry": {"type": "Point", "coordinates": [2.2541750973743575, 48.905715257896006]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a4150217a7456eb79387c5f937762c6dfe3ed7e3", "fields": {"departement": "92", "stop_lat": 48.906358664664815, "code_postal": "92035", "stop_lon": 2.249075253224493, "coord": [48.906358664664815, 2.249075253224493], "stop_id": 4023233, "stop_desc": "48 BOULEVARD DE LA REPUBLIQUE - 92035", "stop_name": "SOUVENIR FRANCAIS"}, "geometry": {"type": "Point", "coordinates": [2.249075253224493, 48.906358664664815]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "59cf0cacd9237fc649751198c71a679b79593b36", "fields": {"departement": "92", "stop_lat": 48.90526827764498, "code_postal": "92035", "stop_lon": 2.2341899782154515, "coord": [48.90526827764498, 2.2341899782154515], "stop_id": 4023237, "stop_desc": "FACE 19 AVENUE DE VERDUN 1916 - 92035", "stop_name": "BONNIN"}, "geometry": {"type": "Point", "coordinates": [2.2341899782154515, 48.90526827764498]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "906ef7843447c2cec4b71da78857f1044f552b80", "fields": {"departement": "92", "stop_lat": 48.88402421063552, "code_postal": "92050", "stop_lon": 2.192491726617203, "coord": [48.88402421063552, 2.192491726617203], "stop_id": 4023245, "stop_desc": "73 AVENUE DU MARECHAL JOFFRE - 92050", "stop_name": "BOULEVARD NATIONAL"}, "geometry": {"type": "Point", "coordinates": [2.192491726617203, 48.88402421063552]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "73fa74bd76d33f77c9c8f0b4e8bf8a1ea7ea0330", "fields": {"departement": "92", "stop_lat": 48.90671842181802, "code_postal": "92035", "stop_lon": 2.237990780487569, "coord": [48.90671842181802, 2.237990780487569], "stop_id": 4023263, "stop_desc": "BD NATIONAL - 92035", "stop_name": "LA GARENNE-COLOMBES - CHARLEBOURG"}, "geometry": {"type": "Point", "coordinates": [2.237990780487569, 48.90671842181802]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "88d7881d8bb131a324cb68fa1d627b9db1d93cc6", "fields": {"departement": "75", "stop_lat": 48.88581917791438, "code_postal": "75117", "stop_lon": 2.289639222376461, "coord": [48.88581917791438, 2.289639222376461], "stop_id": 4023267, "stop_desc": "7 PLACE DE LA PORTE DE CHAMPERRET - 75117", "stop_name": "L'YSER ET LA SOMME"}, "geometry": {"type": "Point", "coordinates": [2.289639222376461, 48.88581917791438]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "988ed22f82308969d4c9777d1f9f6e59fb08acdc", "fields": {"departement": "92", "stop_lat": 48.88967567378652, "code_postal": "92051", "stop_lon": 2.2726405714211264, "coord": [48.88967567378652, 2.2726405714211264], "stop_id": 4023273, "stop_desc": "140 BOULEVARD BINEAU - 92051", "stop_name": "CHEZY"}, "geometry": {"type": "Point", "coordinates": [2.2726405714211264, 48.88967567378652]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c9eff9153d20a5100503b8410ee1a5b97aac932a", "fields": {"departement": "92", "stop_lat": 48.890519289926196, "code_postal": "92051", "stop_lon": 2.270499763785841, "coord": [48.890519289926196, 2.270499763785841], "stop_id": 4023276, "stop_desc": "153-155 BOULEVARD BINEAU - 92051", "stop_name": "BINEAU - CHATEAU"}, "geometry": {"type": "Point", "coordinates": [2.270499763785841, 48.890519289926196]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e86ab433cd0b07c9ee5ba2af0bdcef014656cedd", "fields": {"departement": "92", "stop_lat": 48.89253149733794, "code_postal": "92051", "stop_lon": 2.2688752558078367, "coord": [48.89253149733794, 2.2688752558078367], "stop_id": 4023277, "stop_desc": "186 BOULEVARD BINEAU - 92051", "stop_name": "LA SAUSSAYE - BINEAU"}, "geometry": {"type": "Point", "coordinates": [2.2688752558078367, 48.89253149733794]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f1f5d5ad53f289244cbe43873ae61eacdee67735", "fields": {"departement": "92", "stop_lat": 48.902222414608794, "code_postal": "92026", "stop_lon": 2.2588019791733935, "coord": [48.902222414608794, 2.2588019791733935], "stop_id": 4023286, "stop_desc": "BOULEVARD DE VERDUN - 92026", "stop_name": "VERDUN - RUE LATERALE"}, "geometry": {"type": "Point", "coordinates": [2.2588019791733935, 48.902222414608794]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "90bc3df0f8e5543e2bc8cda547eef6f46e2ba386", "fields": {"departement": "92", "stop_lat": 48.91269775901961, "code_postal": "92035", "stop_lon": 2.2535503313559033, "coord": [48.91269775901961, 2.2535503313559033], "stop_id": 4023294, "stop_desc": "12 AVENUE DU GENERAL DE GAULLE - 92035", "stop_name": "PONT DE LA PUCE"}, "geometry": {"type": "Point", "coordinates": [2.2535503313559033, 48.91269775901961]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "71f763104aceb0179b718f151d12b1892befc679", "fields": {"departement": "92", "stop_lat": 48.91883532589768, "code_postal": "92025", "stop_lon": 2.2527631346921497, "coord": [48.91883532589768, 2.2527631346921497], "stop_id": 4023297, "stop_desc": "63 BIS AVENUE HENRI BARBUSSE - 92025", "stop_name": "PRAGUE"}, "geometry": {"type": "Point", "coordinates": [2.2527631346921497, 48.91883532589768]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4251dca9c0d3b0b5cee9c265b7990d4a50e05880", "fields": {"departement": "92", "stop_lat": 48.92299546791915, "code_postal": "92025", "stop_lon": 2.2516107928123716, "coord": [48.92299546791915, 2.2516107928123716], "stop_id": 4023301, "stop_desc": "5 RUE GABRIEL PERI - 92025", "stop_name": "EGLISE DE COLOMBES"}, "geometry": {"type": "Point", "coordinates": [2.2516107928123716, 48.92299546791915]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6845032b76520f78b364bd9bdf1acb3b0fbfe851", "fields": {"departement": "92", "stop_lat": 48.925427804368034, "code_postal": "92025", "stop_lon": 2.247365287963375, "coord": [48.925427804368034, 2.247365287963375], "stop_id": 4023302, "stop_desc": "46 BD EDGAR QUINET - 92025", "stop_name": "LES RENOUILLERS"}, "geometry": {"type": "Point", "coordinates": [2.247365287963375, 48.925427804368034]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7b68ff9c92d953fb88564005b7772516a8f69289", "fields": {"departement": "92", "stop_lat": 48.92867159264542, "code_postal": "92025", "stop_lon": 2.2467186218760364, "coord": [48.92867159264542, 2.2467186218760364], "stop_id": 4023304, "stop_desc": "RUE PAUL BERT - 92025", "stop_name": "ROBERT SCHUMAN"}, "geometry": {"type": "Point", "coordinates": [2.2467186218760364, 48.92867159264542]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b704624c281fe0a9da64d201b851395f33c68e38", "fields": {"departement": "95", "stop_lat": 48.950765669774874, "code_postal": "95018", "stop_lon": 2.2303879872839434, "coord": [48.950765669774874, 2.2303879872839434], "stop_id": 4023318, "stop_desc": "RUE JEAN LURCAT - 95018", "stop_name": "GARE DU VAL D'ARGENTEUIL"}, "geometry": {"type": "Point", "coordinates": [2.2303879872839434, 48.950765669774874]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ee310ff4375a2d1e40949085fcadbe88aba1ce48", "fields": {"departement": "95", "stop_lat": 48.95241116551638, "code_postal": "95018", "stop_lon": 2.221733455678224, "coord": [48.95241116551638, 2.221733455678224], "stop_id": 4023323, "stop_desc": "ALLEE GUY DE MAUPASSANT - 95018", "stop_name": "BERIONNE"}, "geometry": {"type": "Point", "coordinates": [2.221733455678224, 48.95241116551638]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c6d1f553c394b0b6512f8728d9d15f5b22ea0389", "fields": {"departement": "92", "stop_lat": 48.88515559892798, "code_postal": "92051", "stop_lon": 2.258514374940184, "coord": [48.88515559892798, 2.258514374940184], "stop_id": 4023368, "stop_desc": "GARE ROUTIERE - 92051", "stop_name": "PONT DE NEUILLY-METRO"}, "geometry": {"type": "Point", "coordinates": [2.258514374940184, 48.88515559892798]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7cfb56ef9f5f203b480559bbad88a7e1ff4c2c8d", "fields": {"departement": "92", "stop_lat": 48.89174017529571, "code_postal": "92026", "stop_lon": 2.254033947115366, "coord": [48.89174017529571, 2.254033947115366], "stop_id": 4023373, "stop_desc": "FACE 16 RUE DE L'ABREUVOIR - 92026", "stop_name": "VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.254033947115366, 48.89174017529571]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8ae474433ead6d89ff3694a569b8071254920737", "fields": {"departement": "92", "stop_lat": 48.902992437090525, "code_postal": "92035", "stop_lon": 2.242482946664982, "coord": [48.902992437090525, 2.242482946664982], "stop_id": 4023380, "stop_desc": "5 RUE LEON MAURICE NORDMANN - 92035", "stop_name": "RHIN ET DANUBE"}, "geometry": {"type": "Point", "coordinates": [2.242482946664982, 48.902992437090525]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f3c0237f64cdb8b4138ffa15672c9730a2705eab", "fields": {"departement": "92", "stop_lat": 48.90491321639178, "code_postal": "92035", "stop_lon": 2.239439316763355, "coord": [48.90491321639178, 2.239439316763355], "stop_id": 4023383, "stop_desc": "8 R LEON MAURICE NORDMANN - 92035", "stop_name": "NORDMANN"}, "geometry": {"type": "Point", "coordinates": [2.239439316763355, 48.90491321639178]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "da69bd84b14fbcc5a8e3f7afad5eff741a05d236", "fields": {"departement": "92", "stop_lat": 48.90592820498449, "code_postal": "92035", "stop_lon": 2.238769379821047, "coord": [48.90592820498449, 2.238769379821047], "stop_id": 4023385, "stop_desc": "BD NATIONAL - 92035", "stop_name": "LA GARENNE-COLOMBES - CHARLEBOURG"}, "geometry": {"type": "Point", "coordinates": [2.238769379821047, 48.90592820498449]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b69d13b2e576967d43531517e739cb2686f78898", "fields": {"departement": "92", "stop_lat": 48.91470552564551, "code_postal": "92025", "stop_lon": 2.2462794268231154, "coord": [48.91470552564551, 2.2462794268231154], "stop_id": 4023390, "stop_desc": "RUE DES VOIES DU BOIS - 92025", "stop_name": "RUE DE L'INDUSTRIE"}, "geometry": {"type": "Point", "coordinates": [2.2462794268231154, 48.91470552564551]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "69054021e836161eb3f6fc439213ed1abfc45bb3", "fields": {"departement": "92", "stop_lat": 48.93628181612053, "code_postal": "92025", "stop_lon": 2.2569497570694463, "coord": [48.93628181612053, 2.2569497570694463], "stop_id": 4023405, "stop_desc": "PLACE DE VALMY CHAUSSEE OUEST-SUR PISTE - 92025", "stop_name": "PETIT GENNEVILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.2569497570694463, 48.93628181612053]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ce07e3eff46d0eb2620990a6dfe925171c6eee08", "fields": {"departement": "92", "stop_lat": 48.88679588428236, "code_postal": "92062", "stop_lon": 2.252147587443668, "coord": [48.88679588428236, 2.252147587443668], "stop_id": 4023408, "stop_desc": "PISTE SOUS LE PONT DE NEUILLY - 92062", "stop_name": "RD 7 - PONT DE NEUILLY"}, "geometry": {"type": "Point", "coordinates": [2.252147587443668, 48.88679588428236]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2bc655859980266446e780e4da7efddc1acca839", "fields": {"departement": "92", "stop_lat": 48.80956277466877, "code_postal": "92020", "stop_lon": 2.2964313994754675, "coord": [48.80956277466877, 2.2964313994754675], "stop_id": 5221750, "stop_desc": "FACE 22-24 R MARCELIN BERTHELOT - 92020", "stop_name": "MARCELIN BERTHELOT"}, "geometry": {"type": "Point", "coordinates": [2.2964313994754675, 48.80956277466877]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "889acd11aab5926e3c4f82e103d84eb3941055c6", "fields": {"departement": "92", "stop_lat": 48.80604461268822, "code_postal": "92020", "stop_lon": 2.286229036011326, "coord": [48.80604461268822, 2.286229036011326], "stop_id": 5221756, "stop_desc": "FACE 44 BOULEVARD DE VANVES - 92020", "stop_name": "FELIX FAURE"}, "geometry": {"type": "Point", "coordinates": [2.286229036011326, 48.80604461268822]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "07128882ef178080fccc2840c6dabac7dab29738", "fields": {"departement": "92", "stop_lat": 48.79797396181116, "code_postal": "92020", "stop_lon": 2.2872165067124657, "coord": [48.79797396181116, 2.2872165067124657], "stop_id": 5221763, "stop_desc": "FACE 26 RUE DE FONTENAY - 92020", "stop_name": "PIERRELAIS"}, "geometry": {"type": "Point", "coordinates": [2.2872165067124657, 48.79797396181116]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ebbd3b50817e0b61e6ab6b2ef5a87a00d165a07b", "fields": {"departement": "92", "stop_lat": 48.796382211107144, "code_postal": "92020", "stop_lon": 2.285122977025406, "coord": [48.796382211107144, 2.285122977025406], "stop_id": 5221764, "stop_desc": "RUE BOUCICAUT - 92020", "stop_name": "LE PLATEAU"}, "geometry": {"type": "Point", "coordinates": [2.285122977025406, 48.796382211107144]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bd60e5e5840c9c0d133e1be4fa3dda5df8d2b001", "fields": {"departement": "92", "stop_lat": 48.793200099997385, "code_postal": "92032", "stop_lon": 2.284214738526938, "coord": [48.793200099997385, 2.284214738526938], "stop_id": 5221765, "stop_desc": "6 RUE LEDRU ROLLIN - 92032", "stop_name": "ANDRE SALEL"}, "geometry": {"type": "Point", "coordinates": [2.284214738526938, 48.793200099997385]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a3065aa398af7c6e06255346aae05470d8998c9e", "fields": {"departement": "92", "stop_lat": 48.79383837894482, "code_postal": "92032", "stop_lon": 2.28452697039672, "coord": [48.79383837894482, 2.28452697039672], "stop_id": 5221766, "stop_desc": "118 RUE BOUCICAUT - 92032", "stop_name": "ANDRE SALEL"}, "geometry": {"type": "Point", "coordinates": [2.28452697039672, 48.79383837894482]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5e483f7d1e67ca1274fd890b6574e398a767c4b2", "fields": {"departement": "92", "stop_lat": 48.787420753421074, "code_postal": "92032", "stop_lon": 2.2839486012052026, "coord": [48.787420753421074, 2.2839486012052026], "stop_id": 5221770, "stop_desc": "27 RUE D'ESTIENNE D'ORVES - 92032", "stop_name": "ABBE GRANDJEAN"}, "geometry": {"type": "Point", "coordinates": [2.2839486012052026, 48.787420753421074]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8e1d0da26850016a1a45331c55ff03dd1d875fec", "fields": {"departement": "92", "stop_lat": 48.78430774610973, "code_postal": "92060", "stop_lon": 2.277273633155282, "coord": [48.78430774610973, 2.277273633155282], "stop_id": 5221773, "stop_desc": "63 AVENUE RAYMOND CROLAND - 92060", "stop_name": "EDMOND ABOUT"}, "geometry": {"type": "Point", "coordinates": [2.277273633155282, 48.78430774610973]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8d53ca4ef2ebad12f6139f97a4134498e6427a85", "fields": {"departement": "92", "stop_lat": 48.775562577228506, "code_postal": "92019", "stop_lon": 2.277555707263493, "coord": [48.775562577228506, 2.277555707263493], "stop_id": 5221777, "stop_desc": "6 AVENUE ROGER SALENGRO - 92019", "stop_name": "PROFESSEUR EINSTEIN"}, "geometry": {"type": "Point", "coordinates": [2.277555707263493, 48.775562577228506]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8d24ac58a402a6517ef7314ee6c7bfe4a1feb41c", "fields": {"departement": "92", "stop_lat": 48.77302725091217, "code_postal": "92019", "stop_lon": 2.276171604837392, "coord": [48.77302725091217, 2.276171604837392], "stop_id": 5221780, "stop_desc": "FACE 36 AVENUE ROGER SALENGRO - 92019", "stop_name": "MARC SANGNIER"}, "geometry": {"type": "Point", "coordinates": [2.276171604837392, 48.77302725091217]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d73c07af015fb470abb14bd7542e26deecbed2e6", "fields": {"departement": "92", "stop_lat": 48.81918355343179, "code_postal": "92049", "stop_lon": 2.310074946801479, "coord": [48.81918355343179, 2.310074946801479], "stop_id": 5221798, "stop_desc": "85 AVENUE PIERRE BROSSOLETTE - 92049", "stop_name": "PIERRE BROSSOLETTE - GABRIEL PERI"}, "geometry": {"type": "Point", "coordinates": [2.310074946801479, 48.81918355343179]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a841c8748e9975b6ea259d84c5c336e6dc4aa6a7", "fields": {"departement": "94", "stop_lat": 48.79042553189924, "code_postal": "94016", "stop_lon": 2.3314327039783245, "coord": [48.79042553189924, 2.3314327039783245], "stop_id": 5221814, "stop_desc": "6 AVENUE DU MARECHAL DE LATTRE DE TASSIGNY - 94016", "stop_name": "DIVISION LECLERC - CAMILLE DESMOULINS"}, "geometry": {"type": "Point", "coordinates": [2.3314327039783245, 48.79042553189924]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c881f14855bb8050cc8440e51d71b1faacd6d6d7", "fields": {"departement": "91", "stop_lat": 48.69524149849297, "code_postal": "91326", "stop_lon": 2.3799163125470466, "coord": [48.69524149849297, 2.3799163125470466], "stop_id": 5221906, "stop_desc": "FACE 60 AVENUE DU 18 AVRIL 1944 - 91326", "stop_name": "LYCEE JEAN MONNET"}, "geometry": {"type": "Point", "coordinates": [2.3799163125470466, 48.69524149849297]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "89b13f3ec362e5c74927fea8fcd6596fba5e102a", "fields": {"departement": "77", "stop_lat": 48.84298279745342, "code_postal": "77468", "stop_lon": 2.6555826884396914, "coord": [48.84298279745342, 2.6555826884396914], "stop_id": 5231530, "stop_desc": "AVENUE DE LINGENFELD - 77468", "stop_name": "SALVADOR ALLENDE"}, "geometry": {"type": "Point", "coordinates": [2.6555826884396914, 48.84298279745342]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b94a6a10f7b742142153a8fcc94ff624609580d6", "fields": {"departement": "77", "stop_lat": 48.85088335370485, "code_postal": "77468", "stop_lon": 2.652022216317478, "coord": [48.85088335370485, 2.652022216317478], "stop_id": 5231535, "stop_desc": "46 RUE DE PARIS - 77468", "stop_name": "MAIRIE DE TORCY"}, "geometry": {"type": "Point", "coordinates": [2.652022216317478, 48.85088335370485]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2d757c2c8791210eab225465e9cf855e48dd3edc", "fields": {"departement": "77", "stop_lat": 48.85446624161854, "code_postal": "77083", "stop_lon": 2.59747009502811, "coord": [48.85446624161854, 2.59747009502811], "stop_id": 5231545, "stop_desc": "34 AVENUE DE CHELLES - 77083", "stop_name": "POINTE DE CHAMPS"}, "geometry": {"type": "Point", "coordinates": [2.59747009502811, 48.85446624161854]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d6169de221503f53fad9ae4d0ba851d8e29998b1", "fields": {"departement": "77", "stop_lat": 48.85542846460346, "code_postal": "77083", "stop_lon": 2.5930620858796303, "coord": [48.85542846460346, 2.5930620858796303], "stop_id": 5231546, "stop_desc": "91 AVENUE JEAN JAURES - 77083", "stop_name": "LES IRIS"}, "geometry": {"type": "Point", "coordinates": [2.5930620858796303, 48.85542846460346]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "681dfd6bf2070f9a3d6c7e6ac6bc8d11d2c7ed57", "fields": {"departement": "93", "stop_lat": 48.845133860047326, "code_postal": "93051", "stop_lon": 2.5492866499490487, "coord": [48.845133860047326, 2.5492866499490487], "stop_id": 5231556, "stop_desc": "FACE 45 RUE DU DOCTEUR SUREAU - 93051", "stop_name": "REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.5492866499490487, 48.845133860047326]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "04b37205ecefe91338cffbf3b96ac72db76d0615", "fields": {"departement": "93", "stop_lat": 48.8482887194807, "code_postal": "93051", "stop_lon": 2.538800094096509, "coord": [48.8482887194807, 2.538800094096509], "stop_id": 5231558, "stop_desc": "AVENUE DE NEUILLY - 93051", "stop_name": "ROUTE DE NEUILLY"}, "geometry": {"type": "Point", "coordinates": [2.538800094096509, 48.8482887194807]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1c67a4cb66e4f9f70f370764aeb11aaf105c9c98", "fields": {"departement": "93", "stop_lat": 48.852948624685496, "code_postal": "93049", "stop_lon": 2.513363951490401, "coord": [48.852948624685496, 2.513363951490401], "stop_id": 5231565, "stop_desc": "FACE 20 BOULEVARD GALLIENI - 93049", "stop_name": "NEUILLY-PLAISANCE RER"}, "geometry": {"type": "Point", "coordinates": [2.513363951490401, 48.852948624685496]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3be5948f9cb646fe1b70c5755e404416f5bac035", "fields": {"departement": "94", "stop_lat": 48.849989653650425, "code_postal": "94058", "stop_lon": 2.495649990633529, "coord": [48.849989653650425, 2.495649990633529], "stop_id": 5231569, "stop_desc": "246 AVENUE DU GENERAL DE GAULLE - 94058", "stop_name": "CROIX D'EAU"}, "geometry": {"type": "Point", "coordinates": [2.495649990633529, 48.849989653650425]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c57adcad3bb1063ee6b162d9aa7cc52aba6addcb", "fields": {"departement": "94", "stop_lat": 48.85624422313098, "code_postal": "94033", "stop_lon": 2.4820899197772075, "coord": [48.85624422313098, 2.4820899197772075], "stop_id": 5231573, "stop_desc": "14 AV CHARLES GARCIA - 94033", "stop_name": "JEAN MACE"}, "geometry": {"type": "Point", "coordinates": [2.4820899197772075, 48.85624422313098]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5e5f5e89c96cff0bf8cf35629e9a7ac045b0c60d", "fields": {"departement": "93", "stop_lat": 48.86654076682577, "code_postal": "93048", "stop_lon": 2.477105513509204, "coord": [48.86654076682577, 2.477105513509204], "stop_id": 5231578, "stop_desc": "69 RUE DES BLANCS VILAINS - 93048", "stop_name": "CHARLES DELAVACQUERIE"}, "geometry": {"type": "Point", "coordinates": [2.477105513509204, 48.86654076682577]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aa3c361eeb8b692a7f983adab377bd0116c077c0", "fields": {"departement": "93", "stop_lat": 48.86696566350693, "code_postal": "93048", "stop_lon": 2.4749678728776043, "coord": [48.86696566350693, 2.4749678728776043], "stop_id": 5231579, "stop_desc": "70 RUE DES BLANCS VILAINS - 93048", "stop_name": "BABEUF"}, "geometry": {"type": "Point", "coordinates": [2.4749678728776043, 48.86696566350693]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "03f085d4f9dd1c4ac80abd2bc0c329093b9352dd", "fields": {"departement": "93", "stop_lat": 48.869010549902306, "code_postal": "93048", "stop_lon": 2.4707909260516066, "coord": [48.869010549902306, 2.4707909260516066], "stop_id": 5231580, "stop_desc": "11 BOULEVARD THEOPHILE SUEUR - 93048", "stop_name": "SAINT EXUPERY"}, "geometry": {"type": "Point", "coordinates": [2.4707909260516066, 48.869010549902306]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "13ed199979a7bcb2d09207d04bc75565ecb18625", "fields": {"departement": "93", "stop_lat": 48.868464771492135, "code_postal": "93048", "stop_lon": 2.4601633968819567, "coord": [48.868464771492135, 2.4601633968819567], "stop_id": 5231583, "stop_desc": "203-207 R DE ROSNY - 93048", "stop_name": "NOUVELLE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.4601633968819567, 48.868464771492135]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f6153df8178bb7f99106b563c57bc7c2b50f367b", "fields": {"departement": "93", "stop_lat": 48.863424609709654, "code_postal": "93048", "stop_lon": 2.449267546049426, "coord": [48.863424609709654, 2.449267546049426], "stop_id": 5231586, "stop_desc": "79 RUE DE ROSNY - 93048", "stop_name": "LYCEE JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.449267546049426, 48.863424609709654]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d20efc6d6ff0f18a00fd5f0a50ab41f0b80abf49", "fields": {"departement": "93", "stop_lat": 48.86268750480128, "code_postal": "93006", "stop_lon": 2.4157156831772415, "coord": [48.86268750480128, 2.4157156831772415], "stop_id": 5231595, "stop_desc": "25 AVENUE DE LA REPUBLIQUE - 93006", "stop_name": "GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.4157156831772415, 48.86268750480128]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bba003a4b0925508ca0e998177abcf8a3ef503b0", "fields": {"departement": "75", "stop_lat": 48.859656415811216, "code_postal": "75111", "stop_lon": 2.386548733562634, "coord": [48.859656415811216, 2.386548733562634], "stop_id": 5231604, "stop_desc": "45-45 BIS RUE DE LA FOLIE REGNAULT - 75111", "stop_name": "ROQUETTE - PERE LACHAISE"}, "geometry": {"type": "Point", "coordinates": [2.386548733562634, 48.859656415811216]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0425247066618b63a334ca0c03de9f709ed72554", "fields": {"departement": "75", "stop_lat": 48.84885840881177, "code_postal": "75112", "stop_lon": 2.372756985185623, "coord": [48.84885840881177, 2.372756985185623], "stop_id": 5231610, "stop_desc": "59 AVENUE LEDRU ROLLIN - 75112", "stop_name": "DAUMESNIL - LEDRU ROLLIN"}, "geometry": {"type": "Point", "coordinates": [2.372756985185623, 48.84885840881177]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ee86dc5e8eb4614475cb276c52d9e6036d8f67b5", "fields": {"departement": "75", "stop_lat": 48.84369043264488, "code_postal": "75112", "stop_lon": 2.373284500119991, "coord": [48.84369043264488, 2.373284500119991], "stop_id": 5231612, "stop_desc": "179 RUE DE BERCY - 75112", "stop_name": "GARE DE LYON"}, "geometry": {"type": "Point", "coordinates": [2.373284500119991, 48.84369043264488]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c7973efbaeb681061e70ed0d317621e2f2af4f18", "fields": {"departement": "93", "stop_lat": 48.86335244139611, "code_postal": "93048", "stop_lon": 2.449553449810795, "coord": [48.86335244139611, 2.449553449810795], "stop_id": 5231636, "stop_desc": "90 RUE DE ROSNY - 93048", "stop_name": "LYCEE JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.449553449810795, 48.86335244139611]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3d47e378aa560de5c3ff516325d0542e47880301", "fields": {"departement": "93", "stop_lat": 48.867559196125555, "code_postal": "93048", "stop_lon": 2.458063309002578, "coord": [48.867559196125555, 2.458063309002578], "stop_id": 5231638, "stop_desc": "192 RUE DE ROSNY - 93048", "stop_name": "EDOUARD BRANLY"}, "geometry": {"type": "Point", "coordinates": [2.458063309002578, 48.867559196125555]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "56657a88844a03cbf7c710a1ce60d344f8375ff1", "fields": {"departement": "93", "stop_lat": 48.86988799585144, "code_postal": "93048", "stop_lon": 2.4656298376384536, "coord": [48.86988799585144, 2.4656298376384536], "stop_id": 5231640, "stop_desc": "FACE 265 RUE DE ROSNY - 93048", "stop_name": "ACACIA"}, "geometry": {"type": "Point", "coordinates": [2.4656298376384536, 48.86988799585144]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0a03de80522d05211409e3b409659b07f704293a", "fields": {"departement": "93", "stop_lat": 48.87092577812884, "code_postal": "93048", "stop_lon": 2.469964801821174, "coord": [48.87092577812884, 2.469964801821174], "stop_id": 5231641, "stop_desc": "302 RUE DE ROSNY - 93048", "stop_name": "FORT DE ROSNY"}, "geometry": {"type": "Point", "coordinates": [2.469964801821174, 48.87092577812884]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7ed412d784c37ed7f72d3d5004bb007de1bca73c", "fields": {"departement": "93", "stop_lat": 48.86937021089425, "code_postal": "93048", "stop_lon": 2.470641994105173, "coord": [48.86937021089425, 2.470641994105173], "stop_id": 5231642, "stop_desc": "40 BOULEVARD THEOPHILE SUEUR - 93048", "stop_name": "SAINT EXUPERY"}, "geometry": {"type": "Point", "coordinates": [2.470641994105173, 48.86937021089425]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "68dc3015192efedd1a8f4156795963318c0609b4", "fields": {"departement": "94", "stop_lat": 48.85164403695081, "code_postal": "94058", "stop_lon": 2.5081571280065345, "coord": [48.85164403695081, 2.5081571280065345], "stop_id": 5231655, "stop_desc": "140 BOULEVARD ALSACE-LORRAINE - 94058", "stop_name": "JOULEAU"}, "geometry": {"type": "Point", "coordinates": [2.5081571280065345, 48.85164403695081]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4d81f6afb5f5bb104e7fae42408c4fbeb0b9c551", "fields": {"departement": "93", "stop_lat": 48.85655184767421, "code_postal": "93050", "stop_lon": 2.531204931415073, "coord": [48.85655184767421, 2.531204931415073], "stop_id": 5231661, "stop_desc": "30 PLACE DE LA RESISTANCE - 93050", "stop_name": "PLACE DE LA RESISTANCE"}, "geometry": {"type": "Point", "coordinates": [2.531204931415073, 48.85655184767421]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cc00e8cb11062ecda2179307f9a8c93f2317d028", "fields": {"departement": "77", "stop_lat": 48.855221315585304, "code_postal": "77083", "stop_lon": 2.5932653613534637, "coord": [48.855221315585304, 2.5932653613534637], "stop_id": 5231675, "stop_desc": "FACE 95 AVENUE JEAN JAURES - 77083", "stop_name": "LES IRIS"}, "geometry": {"type": "Point", "coordinates": [2.5932653613534637, 48.855221315585304]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1dbbbb2005c58773f417a31a75cf33df420760cb", "fields": {"departement": "77", "stop_lat": 48.854692679419884, "code_postal": "77083", "stop_lon": 2.5966676702967124, "coord": [48.854692679419884, 2.5966676702967124], "stop_id": 5231676, "stop_desc": "FACE 30 RUE DE CHELLES - 77083", "stop_name": "POINTE DE CHAMPS"}, "geometry": {"type": "Point", "coordinates": [2.5966676702967124, 48.854692679419884]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0a8a5b118a789ebe1e65c0ace3bd85b2ac704c8f", "fields": {"departement": "77", "stop_lat": 48.84866889183998, "code_postal": "77468", "stop_lon": 2.656720651347793, "coord": [48.84866889183998, 2.656720651347793], "stop_id": 5231688, "stop_desc": "AV JACQUES PREVERT - 77468", "stop_name": "RUE DES EPINETTES"}, "geometry": {"type": "Point", "coordinates": [2.656720651347793, 48.84866889183998]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "564306bf11096dd2f95f272f0dae2140228c04ea", "fields": {"departement": "91", "stop_lat": 48.73863570820907, "code_postal": "91645", "stop_lon": 2.244073554016609, "coord": [48.73863570820907, 2.244073554016609], "stop_id": 5231694, "stop_desc": "7 RUE DE PARIS - 91645", "stop_name": "AMBLAINVILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.244073554016609, 48.73863570820907]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6de5cb19e3b3fddd0de94c801f4d1dafbb0caeeb", "fields": {"departement": "91", "stop_lat": 48.740951002188496, "code_postal": "91645", "stop_lon": 2.25110892438849, "coord": [48.740951002188496, 2.25110892438849], "stop_id": 5231698, "stop_desc": "ROND-POINT D'AMBLAINVILLIERS - 91645", "stop_name": "CROIX BELLE AVOINE"}, "geometry": {"type": "Point", "coordinates": [2.25110892438849, 48.740951002188496]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "15dadda408225e426654ac7053651741c4b84be4", "fields": {"departement": "91", "stop_lat": 48.74046788956081, "code_postal": "91645", "stop_lon": 2.2542761204537243, "coord": [48.74046788956081, 2.2542761204537243], "stop_id": 5231700, "stop_desc": "141 RUE D'ESTIENNE D'ORVES - 91645", "stop_name": "RIANTES CITES"}, "geometry": {"type": "Point", "coordinates": [2.2542761204537243, 48.74046788956081]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1bc16c15df798675f2a54d21342b5b56944a82e3", "fields": {"departement": "91", "stop_lat": 48.74053303079903, "code_postal": "91645", "stop_lon": 2.2575239540089407, "coord": [48.74053303079903, 2.2575239540089407], "stop_id": 5231702, "stop_desc": "131-133 RUE D'ESTIENNE D'ORVES - 91645", "stop_name": "MOULIN DE GRAIS"}, "geometry": {"type": "Point", "coordinates": [2.2575239540089407, 48.74053303079903]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "30253c082c7b60c1802fc00aa162558439a1bc09", "fields": {"departement": "91", "stop_lat": 48.74985373505479, "code_postal": "91645", "stop_lon": 2.2721211987921035, "coord": [48.74985373505479, 2.2721211987921035], "stop_id": 5231709, "stop_desc": "BOULEVARD DU MARECHAL FOCH - 91645", "stop_name": "LE CLOS"}, "geometry": {"type": "Point", "coordinates": [2.2721211987921035, 48.74985373505479]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "abf8974178790ca3a0eab159058aef4d05fd9069", "fields": {"departement": "91", "stop_lat": 48.74958399229917, "code_postal": "91645", "stop_lon": 2.271944840017176, "coord": [48.74958399229917, 2.271944840017176], "stop_id": 5231710, "stop_desc": "BOULEVARD DU MARECHAL FOCH - 91645", "stop_name": "LE CLOS"}, "geometry": {"type": "Point", "coordinates": [2.271944840017176, 48.74958399229917]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bd93cff0d6797f90a7caba8c7075bd7114d6aa3e", "fields": {"departement": "91", "stop_lat": 48.75177710235545, "code_postal": "91645", "stop_lon": 2.271928491643091, "coord": [48.75177710235545, 2.271928491643091], "stop_id": 5231712, "stop_desc": "CARREFOUR DE L'EUROPE - 91645", "stop_name": "LES ANTES"}, "geometry": {"type": "Point", "coordinates": [2.271928491643091, 48.75177710235545]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3f8b6e9f613822d5eb8c0b529f8059b4ca6aa0e6", "fields": {"departement": "92", "stop_lat": 48.75754177749323, "code_postal": "92002", "stop_lon": 2.2781609564268264, "coord": [48.75754177749323, 2.2781609564268264], "stop_id": 5231715, "stop_desc": "216 AVENUE DU BOIS DE VERRIERES - 92002", "stop_name": "LES GODETS"}, "geometry": {"type": "Point", "coordinates": [2.2781609564268264, 48.75754177749323]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3afff1d432b518262e91270eed97b3cdb2100ad3", "fields": {"departement": "91", "stop_lat": 48.74456528855754, "code_postal": "91645", "stop_lon": 2.2662294400974075, "coord": [48.74456528855754, 2.2662294400974075], "stop_id": 5231727, "stop_desc": "27 AVENUE DU GENERAL LECLERC - 91645", "stop_name": "FOCH - LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.2662294400974075, 48.74456528855754]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7d13209a846d97d09752a110d23924bbec50f223", "fields": {"departement": "92", "stop_lat": 48.74038263948592, "code_postal": "92002", "stop_lon": 2.298374685284482, "coord": [48.74038263948592, 2.298374685284482], "stop_id": 5244884, "stop_desc": "117 BIS RUE MIRABEAU - 92002", "stop_name": "BACONNETS - MIRABEAU"}, "geometry": {"type": "Point", "coordinates": [2.298374685284482, 48.74038263948592]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f6b364ca3e6e1b2781fd7d9cf1b1aef53b23ab61", "fields": {"departement": "92", "stop_lat": 48.73830337021351, "code_postal": "92002", "stop_lon": 2.2901412402935093, "coord": [48.73830337021351, 2.2901412402935093], "stop_id": 5244887, "stop_desc": "FACE 18 RUE DE LA MEDITERRANEE - 92002", "stop_name": "CENTRE COMMERCIAL DES BACONNETS"}, "geometry": {"type": "Point", "coordinates": [2.2901412402935093, 48.73830337021351]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f6a73d9d1552c6d0da456ffae09be6a7d9fbf6cd", "fields": {"departement": "92", "stop_lat": 48.735622570458304, "code_postal": "92002", "stop_lon": 2.2846811291647646, "coord": [48.735622570458304, 2.2846811291647646], "stop_id": 5244889, "stop_desc": "AVENUE DU NOYER DORE - 92002", "stop_name": "CENTRE COMMERCIAL - NOYER DORE"}, "geometry": {"type": "Point", "coordinates": [2.2846811291647646, 48.735622570458304]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4709cb6a4a063a886f9ca6a0f66c1e8ff4c02b43", "fields": {"departement": "92", "stop_lat": 48.74328033687152, "code_postal": "92002", "stop_lon": 2.3110931409204905, "coord": [48.74328033687152, 2.3110931409204905], "stop_id": 5244895, "stop_desc": "63 RUE DES RABATS - 92002", "stop_name": "AUBEPINE"}, "geometry": {"type": "Point", "coordinates": [2.3110931409204905, 48.74328033687152]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "936d060c7caf355fd3c4fd94abcb901712f0c01b", "fields": {"departement": "91", "stop_lat": 48.73880089439907, "code_postal": "91377", "stop_lon": 2.2989602054010803, "coord": [48.73880089439907, 2.2989602054010803], "stop_id": 5244911, "stop_desc": "FACE 64 AVENUE DU PRESIDENT KENNEDY - 91377", "stop_name": "SAUSSAYE - MIRABEAU"}, "geometry": {"type": "Point", "coordinates": [2.2989602054010803, 48.73880089439907]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e03b86bb4e1c3b153af30ecc4cb99cd7a25b36e4", "fields": {"departement": "92", "stop_lat": 48.93892783859855, "code_postal": "92036", "stop_lon": 2.279154440214823, "coord": [48.93892783859855, 2.279154440214823], "stop_id": 5244914, "stop_desc": "0 RTE PRINCIPALE DU PORT - 92036", "stop_name": "DEBARCADERE"}, "geometry": {"type": "Point", "coordinates": [2.279154440214823, 48.93892783859855]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "44f5da782ec879924320e435e4b1978243df9fda", "fields": {"departement": "92", "stop_lat": 48.94139654436982, "code_postal": "92036", "stop_lon": 2.2940355382058546, "coord": [48.94139654436982, 2.2940355382058546], "stop_id": 5244925, "stop_desc": "ROUTE PRINCIPALE DU PORT - 92036", "stop_name": "DARSE N0 5"}, "geometry": {"type": "Point", "coordinates": [2.2940355382058546, 48.94139654436982]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "49432f9fa7e891221031e75631bd8ce8a437a3d6", "fields": {"departement": "92", "stop_lat": 48.944838932927986, "code_postal": "92036", "stop_lon": 2.2952878495686044, "coord": [48.944838932927986, 2.2952878495686044], "stop_id": 5244926, "stop_desc": "ROUTE DU BASSIN NUMERO 6 - 92036", "stop_name": "BASSIN N0 5"}, "geometry": {"type": "Point", "coordinates": [2.2952878495686044, 48.944838932927986]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f1e7c3cc162794f3dce651acb60c8eabcd04f300", "fields": {"departement": "92", "stop_lat": 48.94635817395166, "code_postal": "92036", "stop_lon": 2.2966646333099496, "coord": [48.94635817395166, 2.2966646333099496], "stop_id": 5244928, "stop_desc": "23 CHEMIN DES PETITS MARAIS - 92036", "stop_name": "CHEMIN DES PETITS MARAIS"}, "geometry": {"type": "Point", "coordinates": [2.2966646333099496, 48.94635817395166]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cddb18c45f9401607c7eab360fdc388279b97bca", "fields": {"departement": "92", "stop_lat": 48.94648393285926, "code_postal": "92036", "stop_lon": 2.2965008097284803, "coord": [48.94648393285926, 2.2965008097284803], "stop_id": 5244930, "stop_desc": "FACE 23 CHEMIN DES PETITS MARAIS - 92036", "stop_name": "CHEMIN DES PETITS MARAIS."}, "geometry": {"type": "Point", "coordinates": [2.2965008097284803, 48.94648393285926]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "66045973ff9c51492903fd3447ac8737fb0f4464", "fields": {"departement": "92", "stop_lat": 48.94299631080269, "code_postal": "92036", "stop_lon": 2.2741293126156603, "coord": [48.94299631080269, 2.2741293126156603], "stop_id": 5244945, "stop_desc": "12 RTE DU MOLE 2 ET 3 - 92036", "stop_name": "OSCARO"}, "geometry": {"type": "Point", "coordinates": [2.2741293126156603, 48.94299631080269]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8eeb08ce0dc1e26cf83ecd7e27bc1f1dff839628", "fields": {"departement": "92", "stop_lat": 48.944838932927986, "code_postal": "92036", "stop_lon": 2.2952878495686044, "coord": [48.944838932927986, 2.2952878495686044], "stop_id": 5244955, "stop_desc": "ROUTE DU BASSIN NUMERO 6 - 92036", "stop_name": "BASSIN N0 5"}, "geometry": {"type": "Point", "coordinates": [2.2952878495686044, 48.944838932927986]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9e9dc067cf0f14d63b0a914650a3ff41b2210869", "fields": {"departement": "92", "stop_lat": 48.94906812034571, "code_postal": "92036", "stop_lon": 2.2861153640092398, "coord": [48.94906812034571, 2.2861153640092398], "stop_id": 5244957, "stop_desc": "FACE 27-29 RTE DU BASSIN NUMERO 6 - 92036", "stop_name": "PETROLIERS"}, "geometry": {"type": "Point", "coordinates": [2.2861153640092398, 48.94906812034571]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d9edb582bbe50766baa4417fda904b38a0448c86", "fields": {"departement": "92", "stop_lat": 48.94832048428063, "code_postal": "92036", "stop_lon": 2.282213851657548, "coord": [48.94832048428063, 2.282213851657548], "stop_id": 5244959, "stop_desc": "FACE 39 RTE DU BASSIN NUMERO 6 - 92036", "stop_name": "ROND-POINT SEINE"}, "geometry": {"type": "Point", "coordinates": [2.282213851657548, 48.94832048428063]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3d8c5d1ff54105a9c7b86a17e427f3330249dfa6", "fields": {"departement": "92", "stop_lat": 48.94759789901477, "code_postal": "92036", "stop_lon": 2.2953674772990853, "coord": [48.94759789901477, 2.2953674772990853], "stop_id": 5244960, "stop_desc": "23 RTE DU BASSIN NUMERO 6 - 92036", "stop_name": "BASSIN N0 6"}, "geometry": {"type": "Point", "coordinates": [2.2953674772990853, 48.94759789901477]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "55d5369aabfe205a03bd5ab67cd7892f49373a24", "fields": {"departement": "92", "stop_lat": 48.94759789901477, "code_postal": "92036", "stop_lon": 2.2953674772990853, "coord": [48.94759789901477, 2.2953674772990853], "stop_id": 5244961, "stop_desc": "23 RTE DU BASSIN NUMERO 6 - 92036", "stop_name": "BASSIN N0 6"}, "geometry": {"type": "Point", "coordinates": [2.2953674772990853, 48.94759789901477]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "313d75669fcaf904c1232e5fe9aac3ad135f5b09", "fields": {"departement": "92", "stop_lat": 48.94121728986685, "code_postal": "92036", "stop_lon": 2.295386281564461, "coord": [48.94121728986685, 2.295386281564461], "stop_id": 5244964, "stop_desc": "RTE PRINCIPALE DU PORT - 92036", "stop_name": "IFTIM"}, "geometry": {"type": "Point", "coordinates": [2.295386281564461, 48.94121728986685]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "86284dbe86f28b4226d1a5a6f9b6f4fc35822044", "fields": {"departement": "92", "stop_lat": 48.9374526254832, "code_postal": "92036", "stop_lon": 2.2764005385463992, "coord": [48.9374526254832, 2.2764005385463992], "stop_id": 5244978, "stop_desc": "ROUTE PRINCIPALE DU PORT - 92036", "stop_name": "CENTRE DE VIE"}, "geometry": {"type": "Point", "coordinates": [2.2764005385463992, 48.9374526254832]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "151ba1db5cabe5db00a1bb63705eb0f5a4cec8c8", "fields": {"departement": "92", "stop_lat": 48.93964090031015, "code_postal": "92036", "stop_lon": 2.28592004573725, "coord": [48.93964090031015, 2.28592004573725], "stop_id": 5244987, "stop_desc": "ROUTE PRINCIPALE DU PORT - 92036", "stop_name": "MOLE CENTRAL"}, "geometry": {"type": "Point", "coordinates": [2.28592004573725, 48.93964090031015]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "81648b411d60e1913def0e4ec11ebde0709606c6", "fields": {"departement": "92", "stop_lat": 48.94832048428063, "code_postal": "92036", "stop_lon": 2.282213851657548, "coord": [48.94832048428063, 2.282213851657548], "stop_id": 5244998, "stop_desc": "FACE 39 RTE DU BASSIN NUMERO 6 - 92036", "stop_name": "ROND-POINT SEINE"}, "geometry": {"type": "Point", "coordinates": [2.282213851657548, 48.94832048428063]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0e2686d4968dd16f0feb0a71700066cd19f32dcd", "fields": {"departement": "92", "stop_lat": 48.9374526254832, "code_postal": "92036", "stop_lon": 2.2764005385463992, "coord": [48.9374526254832, 2.2764005385463992], "stop_id": 5245000, "stop_desc": "ROUTE PRINCIPALE DU PORT - 92036", "stop_name": "CENTRE DE VIE"}, "geometry": {"type": "Point", "coordinates": [2.2764005385463992, 48.9374526254832]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "161da1a1a1471e0185c4c87b4b88d4d861829c53", "fields": {"departement": "92", "stop_lat": 48.936126652714115, "code_postal": "92036", "stop_lon": 2.2674399450981904, "coord": [48.936126652714115, 2.2674399450981904], "stop_id": 5245003, "stop_desc": "62 ROUTE PRINCIPALE DU PORT - 92036", "stop_name": "DIRECTION DU PORT"}, "geometry": {"type": "Point", "coordinates": [2.2674399450981904, 48.936126652714115]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0541e983ad1332ed0018d475e756bd036910713e", "fields": {"departement": "92", "stop_lat": 48.936839915814744, "code_postal": "92036", "stop_lon": 2.273331986384494, "coord": [48.936839915814744, 2.273331986384494], "stop_id": 5245005, "stop_desc": "0 RTE PRINCIPALE DU PORT - 92036", "stop_name": "MOLE 1-2"}, "geometry": {"type": "Point", "coordinates": [2.273331986384494, 48.936839915814744]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3b52c486194278956638eb11cc555dcea2283446", "fields": {"departement": "77", "stop_lat": 48.87831111822657, "code_postal": "77108", "stop_lon": 2.6128916504041766, "coord": [48.87831111822657, 2.6128916504041766], "stop_id": 5250727, "stop_desc": "AV GENDARME CASTERMANT - 77108", "stop_name": "TERRE CIEL"}, "geometry": {"type": "Point", "coordinates": [2.6128916504041766, 48.87831111822657]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4d67c300be6221e12fb9c3145094f09e9579edf3", "fields": {"departement": "75", "stop_lat": 48.865311004088845, "code_postal": "75116", "stop_lon": 2.2341331715569654, "coord": [48.865311004088845, 2.2341331715569654], "stop_id": 5251760, "stop_desc": "ROUTE DE SURESNES - 75116", "stop_name": "LES MOULINS - CAMPING"}, "geometry": {"type": "Point", "coordinates": [2.2341331715569654, 48.865311004088845]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b8574403bc3863dc1aa5804123343d0880a159df", "fields": {"departement": "92", "stop_lat": 48.86184828083935, "code_postal": "92073", "stop_lon": 2.2126317195091785, "coord": [48.86184828083935, 2.2126317195091785], "stop_id": 5251772, "stop_desc": "30 CARREFOUR DE LA CROIX DU ROY - 92073", "stop_name": "CROIX DU ROY"}, "geometry": {"type": "Point", "coordinates": [2.2126317195091785, 48.86184828083935]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bf649655ed2bd0d27e6bfc15ebce3549ce0b6619", "fields": {"departement": "92", "stop_lat": 48.86797700986063, "code_postal": "92063", "stop_lon": 2.2037211008846818, "coord": [48.86797700986063, 2.2037211008846818], "stop_id": 5251777, "stop_desc": "FACE 54 RUE GALLIENI - 92063", "stop_name": "LES HOUTRAITS"}, "geometry": {"type": "Point", "coordinates": [2.2037211008846818, 48.86797700986063]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ff13ff834f5c987b3e5d3195aa8522cfd3685a9a", "fields": {"departement": "92", "stop_lat": 48.87223926130432, "code_postal": "92063", "stop_lon": 2.197838080887536, "coord": [48.87223926130432, 2.197838080887536], "stop_id": 5251781, "stop_desc": "67 RUE DES BONS RAISINS - 92063", "stop_name": "RUE DE LA PAIX"}, "geometry": {"type": "Point", "coordinates": [2.197838080887536, 48.87223926130432]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "53e62756cb6296a13e7b02dca0348de61bc34a07", "fields": {"departement": "92", "stop_lat": 48.87286412592294, "code_postal": "92063", "stop_lon": 2.194253184817908, "coord": [48.87286412592294, 2.194253184817908], "stop_id": 5251783, "stop_desc": "FACE 42 RUE DES BONS RAISINS - 92063", "stop_name": "LES GODARDES"}, "geometry": {"type": "Point", "coordinates": [2.194253184817908, 48.87286412592294]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b661a1a2f913ca8cf3008866762438f2bec97e7d", "fields": {"departement": "92", "stop_lat": 48.87367623584867, "code_postal": "92063", "stop_lon": 2.1895504546143014, "coord": [48.87367623584867, 2.1895504546143014], "stop_id": 5251785, "stop_desc": "FACE 10 R DES BONS RAISINS - 92063", "stop_name": "EDMOND ROSTAND"}, "geometry": {"type": "Point", "coordinates": [2.1895504546143014, 48.87367623584867]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "819583373b9f035b091d97c2bd0b695edb1f70a0", "fields": {"departement": "92", "stop_lat": 48.87935136602782, "code_postal": "92063", "stop_lon": 2.1856917243126706, "coord": [48.87935136602782, 2.1856917243126706], "stop_id": 5251790, "stop_desc": "22 BIS BOULEVARD DE L'HOPITAL STELL - 92063", "stop_name": "LE GUE"}, "geometry": {"type": "Point", "coordinates": [2.1856917243126706, 48.87935136602782]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6ff739c1195719882329598cb2fc320cc65ee4ca", "fields": {"departement": "92", "stop_lat": 48.88037172553721, "code_postal": "92063", "stop_lon": 2.1824320382519415, "coord": [48.88037172553721, 2.1824320382519415], "stop_id": 5251792, "stop_desc": "81 AVENUE PAUL DOUMER - 92063", "stop_name": "RUEIL - VILLE"}, "geometry": {"type": "Point", "coordinates": [2.1824320382519415, 48.88037172553721]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cc0ef4fb2e5160badffbb46ab8511c97431ec1b7", "fields": {"departement": "92", "stop_lat": 48.88391135478196, "code_postal": "92063", "stop_lon": 2.1746675301348812, "coord": [48.88391135478196, 2.1746675301348812], "stop_id": 5251794, "stop_desc": "72 AVENUE ALBERT 1ER - 92063", "stop_name": "BAUDIN"}, "geometry": {"type": "Point", "coordinates": [2.1746675301348812, 48.88391135478196]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c7300f2c2b1c1885ee73fcd7f0499d652d3da512", "fields": {"departement": "75", "stop_lat": 48.86989862659334, "code_postal": "75110", "stop_lon": 2.3703872629076637, "coord": [48.86989862659334, 2.3703872629076637], "stop_id": 5289089, "stop_desc": "65 RUE DU FAUBOURG DU TEMPLE - 75110", "stop_name": "GONCOURT"}, "geometry": {"type": "Point", "coordinates": [2.3703872629076637, 48.86989862659334]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7140016be52956119cebac98c11bbf96222022b5", "fields": {"departement": "75", "stop_lat": 48.85415714947943, "code_postal": "75106", "stop_lon": 2.343642207604387, "coord": [48.85415714947943, 2.343642207604387], "stop_id": 5289098, "stop_desc": "FACE 15-17 QUAI DES GRANDS AUGUSTINS - 75106", "stop_name": "SAINT-MICHEL"}, "geometry": {"type": "Point", "coordinates": [2.343642207604387, 48.85415714947943]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4228d1338964e8ac51e0fd1fa7be2ae8423b4b43", "fields": {"departement": "75", "stop_lat": 48.85583791617629, "code_postal": "75106", "stop_lon": 2.3409320544688788, "coord": [48.85583791617629, 2.3409320544688788], "stop_id": 5289099, "stop_desc": "FACE 55 QUAI DES GRANDS AUGUSTINS - 75106", "stop_name": "PONT NEUF - QUAI DES GRANDS AUGUSTINS"}, "geometry": {"type": "Point", "coordinates": [2.3409320544688788, 48.85583791617629]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "182639687090bb39b8b4dad387d835debaff6886", "fields": {"departement": "75", "stop_lat": 48.85328544303421, "code_postal": "75106", "stop_lon": 2.3325015699609604, "coord": [48.85328544303421, 2.3325015699609604], "stop_id": 5289103, "stop_desc": "54 RUE DE RENNES - 75106", "stop_name": "SAINT-GERMAIN-DES-PRES"}, "geometry": {"type": "Point", "coordinates": [2.3325015699609604, 48.85328544303421]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7c6731f0463b1c2fbd10bee3bc6e3a093e6729bb", "fields": {"departement": "75", "stop_lat": 48.84381179353463, "code_postal": "75115", "stop_lon": 2.32238519748455, "coord": [48.84381179353463, 2.32238519748455], "stop_id": 5289108, "stop_desc": "FACE 3 RUE DE L'ARRIVEE - 75115", "stop_name": "PLACE DU 18 JUIN 1940 - RUE DE L'ARRIVEE"}, "geometry": {"type": "Point", "coordinates": [2.32238519748455, 48.84381179353463]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "06bf1e15c16d236a900236496f6574179f9e95c1", "fields": {"departement": "75", "stop_lat": 48.84701297358328, "code_postal": "75116", "stop_lon": 2.273102239033009, "coord": [48.84701297358328, 2.273102239033009], "stop_id": 5289119, "stop_desc": "64 AVENUE DE VERSAILLES - 75116", "stop_name": "PONT MIRABEAU"}, "geometry": {"type": "Point", "coordinates": [2.273102239033009, 48.84701297358328]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "71a80b9e9e05f84ea89965c6c8fdc98e652f5403", "fields": {"departement": "92", "stop_lat": 48.83410601972173, "code_postal": "92012", "stop_lon": 2.2445555991222914, "coord": [48.83410601972173, 2.2445555991222914], "stop_id": 5289127, "stop_desc": "108 AVENUE EDOUARD VAILLANT - 92012", "stop_name": "MARCEL SEMBAT-METRO"}, "geometry": {"type": "Point", "coordinates": [2.2445555991222914, 48.83410601972173]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3b6aa91c4ef6c51bc49ebb97fb36469404f1f5c7", "fields": {"departement": "75", "stop_lat": 48.838837106438454, "code_postal": "75116", "stop_lon": 2.262478687427494, "coord": [48.838837106438454, 2.262478687427494], "stop_id": 5289136, "stop_desc": "27 RUE CLAUDE TERRASSE - 75116", "stop_name": "VERSAILLES - CHARDON LAGACHE"}, "geometry": {"type": "Point", "coordinates": [2.262478687427494, 48.838837106438454]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f8933963498a23d45e13fba6ccedd9152910c3b9", "fields": {"departement": "75", "stop_lat": 48.84077310974983, "code_postal": "75115", "stop_lon": 2.3164086680713942, "coord": [48.84077310974983, 2.3164086680713942], "stop_id": 5289148, "stop_desc": "65 BOULEVARD DE VAUGIRARD - 75115", "stop_name": "ARMORIQUE - MUSEE POSTAL"}, "geometry": {"type": "Point", "coordinates": [2.3164086680713942, 48.84077310974983]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "425eb6628a697f1b046e7c341bd14627cd835514", "fields": {"departement": "75", "stop_lat": 48.85534333466014, "code_postal": "75101", "stop_lon": 2.346107532202977, "coord": [48.85534333466014, 2.346107532202977], "stop_id": 5289159, "stop_desc": "1 BOULEVARD DU PALAIS - 75101", "stop_name": "CITE - PALAIS DE JUSTICE"}, "geometry": {"type": "Point", "coordinates": [2.346107532202977, 48.85534333466014]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9e27ba4b8d654680e6e31ebe146ae4bac55a6c7e", "fields": {"departement": "75", "stop_lat": 48.866991448808626, "code_postal": "75120", "stop_lon": 2.3832317356000146, "coord": [48.866991448808626, 2.3832317356000146], "stop_id": 5289170, "stop_desc": "BD DE MENILMONTANT - 75120", "stop_name": "BELLEVILLE - MENILMONTANT"}, "geometry": {"type": "Point", "coordinates": [2.3832317356000146, 48.866991448808626]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d4784838956b97d406b0631bbf4d7342c9b42413", "fields": {"departement": "75", "stop_lat": 48.87520940811392, "code_postal": "75120", "stop_lon": 2.395665016734033, "coord": [48.87520940811392, 2.395665016734033], "stop_id": 5289175, "stop_desc": "212-218 RUE DE BELLEVILLE - 75120", "stop_name": "PIXERECOURT"}, "geometry": {"type": "Point", "coordinates": [2.395665016734033, 48.87520940811392]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "180b2f7cd3f2f0ddba96af915b86e4ba31c4e7a8", "fields": {"departement": "93", "stop_lat": 48.88258950570033, "code_postal": "93063", "stop_lon": 2.434564608323154, "coord": [48.88258950570033, 2.434564608323154], "stop_id": 5289183, "stop_desc": "51 AVENUE DE VERDUN - 93063", "stop_name": "PLACE DU 19 MARS 1962"}, "geometry": {"type": "Point", "coordinates": [2.434564608323154, 48.88258950570033]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "582b0cb6b83a98d6f7856599bbf8f881ae545da6", "fields": {"departement": "92", "stop_lat": 48.809392030314854, "code_postal": "92020", "stop_lon": 2.2964995723194335, "coord": [48.809392030314854, 2.2964995723194335], "stop_id": 5315273, "stop_desc": "20 R MARCELIN BERTHELOT - 92020", "stop_name": "MARCELIN BERTHELOT"}, "geometry": {"type": "Point", "coordinates": [2.2964995723194335, 48.809392030314854]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fffac02de740fb83d744761461fea5ce84e71ca7", "fields": {"departement": "92", "stop_lat": 48.808283580337466, "code_postal": "92020", "stop_lon": 2.288635350032826, "coord": [48.808283580337466, 2.288635350032826], "stop_id": 5315276, "stop_desc": "35 AV CLEMENT PERRIERE - 92020", "stop_name": "STADE DE CHATILLON"}, "geometry": {"type": "Point", "coordinates": [2.288635350032826, 48.808283580337466]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fc1e3be5fd14d3bcf141cf6dbe1b4d410e142000", "fields": {"departement": "92", "stop_lat": 48.81030294354107, "code_postal": "92020", "stop_lon": 2.28201999204312, "coord": [48.81030294354107, 2.28201999204312], "stop_id": 5315281, "stop_desc": "117 BD DE VANVES - 92020", "stop_name": "PISCINE"}, "geometry": {"type": "Point", "coordinates": [2.28201999204312, 48.81030294354107]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "81d4fc7c842ebe33aa9905b0a7a4bf9a1775ddad", "fields": {"departement": "92", "stop_lat": 48.8034608474567, "code_postal": "92020", "stop_lon": 2.2771018394385814, "coord": [48.8034608474567, 2.2771018394385814], "stop_id": 5315289, "stop_desc": "FACE 113 R LASEGUE - 92020", "stop_name": "LASEGUE"}, "geometry": {"type": "Point", "coordinates": [2.2771018394385814, 48.8034608474567]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bc6a692b9dd1cddebfeb94a27afa45f9b2949e35", "fields": {"departement": "92", "stop_lat": 48.814281577410114, "code_postal": "92046", "stop_lon": 2.2971081384927188, "coord": [48.814281577410114, 2.2971081384927188], "stop_id": 5121990, "stop_desc": "116 BOULEVARD CAMELINAT - 92046", "stop_name": "RUE ETIENNE DOLET"}, "geometry": {"type": "Point", "coordinates": [2.2971081384927188, 48.814281577410114]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4566219606d31b430e0d0f56cc49c328999a55c7", "fields": {"departement": "92", "stop_lat": 48.822514822719214, "code_postal": "92046", "stop_lon": 2.298626219690451, "coord": [48.822514822719214, 2.298626219690451], "stop_id": 5121992, "stop_desc": "BOULEVARD CHARLES DE GAULLE - 92046", "stop_name": "PLATEAU DE VANVES"}, "geometry": {"type": "Point", "coordinates": [2.298626219690451, 48.822514822719214]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b2bf395183f7382dc07bf23af9b3222e5ec4f51b", "fields": {"departement": "75", "stop_lat": 48.82691163867317, "code_postal": "75114", "stop_lon": 2.3048165481001295, "coord": [48.82691163867317, 2.3048165481001295], "stop_id": 5121994, "stop_desc": "1 PLACE DE LA PORTE DE VANVES - 75114", "stop_name": "PORTE DE VANVES"}, "geometry": {"type": "Point", "coordinates": [2.3048165481001295, 48.82691163867317]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "82fa0ffb8885c3c30002d7c0cec3f5ac9aad3e41", "fields": {"departement": "75", "stop_lat": 48.83117371337203, "code_postal": "75114", "stop_lon": 2.312941100164867, "coord": [48.83117371337203, 2.312941100164867], "stop_id": 5121996, "stop_desc": "145 RUE RAYMOND LOSSERAND - 75114", "stop_name": "PLAISANCE"}, "geometry": {"type": "Point", "coordinates": [2.312941100164867, 48.83117371337203]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "29c65c2cbbc791a269592a58b92015f436ff4f52", "fields": {"departement": "75", "stop_lat": 48.83303390678229, "code_postal": "75114", "stop_lon": 2.311783045797641, "coord": [48.83303390678229, 2.311783045797641], "stop_id": 5121997, "stop_desc": "RUE VERCINGETORIX - 75114", "stop_name": "PLAISANCE"}, "geometry": {"type": "Point", "coordinates": [2.311783045797641, 48.83303390678229]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "43b01e031f69bb339478da45d11005b25d3cfa25", "fields": {"departement": "75", "stop_lat": 48.838472494611395, "code_postal": "75115", "stop_lon": 2.3175805117777912, "coord": [48.838472494611395, 2.3175805117777912], "stop_id": 5122002, "stop_desc": "PLACE DES CINQ MARTYRS DU LYCEE BUFFON - 75115", "stop_name": "MONTPARNASSE 2 - GARE TGV"}, "geometry": {"type": "Point", "coordinates": [2.3175805117777912, 48.838472494611395]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "53186421907d22e42577af86f8ebbca7fd166abd", "fields": {"departement": "75", "stop_lat": 48.84077310974983, "code_postal": "75115", "stop_lon": 2.3164086680713942, "coord": [48.84077310974983, 2.3164086680713942], "stop_id": 5122004, "stop_desc": "65 BOULEVARD DE VAUGIRARD - 75115", "stop_name": "ARMORIQUE - MUSEE POSTAL"}, "geometry": {"type": "Point", "coordinates": [2.3164086680713942, 48.84077310974983]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4c41cada6bfe58180ce46dde9d7103fef77a2291", "fields": {"departement": "75", "stop_lat": 48.82323941968463, "code_postal": "75114", "stop_lon": 2.324487238165042, "coord": [48.82323941968463, 2.324487238165042], "stop_id": 5122016, "stop_desc": "132 BD BRUNE - 75114", "stop_name": "PORTE D'ORLEANS"}, "geometry": {"type": "Point", "coordinates": [2.324487238165042, 48.82323941968463]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e093137a395d9652c8ab74c6e2814bc7f4abb41e", "fields": {"departement": "92", "stop_lat": 48.819462162874615, "code_postal": "92046", "stop_lon": 2.310033969847727, "coord": [48.819462162874615, 2.310033969847727], "stop_id": 5122020, "stop_desc": "62 AVENUE PIERRE BROSSOLETTE - 92046", "stop_name": "PIERRE BROSSOLETTE - GABRIEL PERI"}, "geometry": {"type": "Point", "coordinates": [2.310033969847727, 48.819462162874615]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b7b40a3ccac771fbe71aa65e0b195a5bbb74dcce", "fields": {"departement": "92", "stop_lat": 48.811217620547396, "code_postal": "92020", "stop_lon": 2.299764105927095, "coord": [48.811217620547396, 2.299764105927095], "stop_id": 5122024, "stop_desc": "AVENUE PIERRE BROSSOLETTE - 92020", "stop_name": "CHATILLON-MONTROUGE"}, "geometry": {"type": "Point", "coordinates": [2.299764105927095, 48.811217620547396]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e7253c5386d6805b73f3f46e914bdc2898296df1", "fields": {"departement": "92", "stop_lat": 48.80210842496292, "code_postal": "92020", "stop_lon": 2.2873485804549465, "coord": [48.80210842496292, 2.2873485804549465], "stop_id": 5122034, "stop_desc": "34 RUE GABRIEL PERI - 92020", "stop_name": "CENTRE DE CHATILLON - MARCHE"}, "geometry": {"type": "Point", "coordinates": [2.2873485804549465, 48.80210842496292]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d62c5d2b65a047992280a51922b09bab9829cdbe", "fields": {"departement": "92", "stop_lat": 48.785719632003165, "code_postal": "92032", "stop_lon": 2.278836177074233, "coord": [48.785719632003165, 2.278836177074233], "stop_id": 5122047, "stop_desc": "46 AVENUE RAYMOND CROLAND - 92032", "stop_name": "PASTEUR"}, "geometry": {"type": "Point", "coordinates": [2.278836177074233, 48.785719632003165]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aebe1cbb69acf1f35eb9fdcf7896cb6c6d9f9de9", "fields": {"departement": "92", "stop_lat": 48.779356696723205, "code_postal": "92019", "stop_lon": 2.279958520425801, "coord": [48.779356696723205, 2.279958520425801], "stop_id": 5122052, "stop_desc": "AVENUE DU PLESSIS - 92019", "stop_name": "ROBINSON RER"}, "geometry": {"type": "Point", "coordinates": [2.279958520425801, 48.779356696723205]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fd42ba2002aec448c1b927fef59848a1d572561b", "fields": {"departement": "92", "stop_lat": 48.775562577228506, "code_postal": "92019", "stop_lon": 2.277555707263493, "coord": [48.775562577228506, 2.277555707263493], "stop_id": 5122053, "stop_desc": "6 AVENUE ROGER SALENGRO - 92019", "stop_name": "PROFESSEUR EINSTEIN"}, "geometry": {"type": "Point", "coordinates": [2.277555707263493, 48.775562577228506]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5470f7d16a23ff427ace1e0204a162584aa4646a", "fields": {"departement": "92", "stop_lat": 48.77245154539877, "code_postal": "92019", "stop_lon": 2.2752612128272904, "coord": [48.77245154539877, 2.2752612128272904], "stop_id": 5122055, "stop_desc": "72 AVENUE ROGER SALENGRO - 92019", "stop_name": "MARC SANGNIER"}, "geometry": {"type": "Point", "coordinates": [2.2752612128272904, 48.77245154539877]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4142ec65189479d2b5df4b8b42913e120ade13fb", "fields": {"departement": "92", "stop_lat": 48.76784850968755, "code_postal": "92019", "stop_lon": 2.273091210688663, "coord": [48.76784850968755, 2.273091210688663], "stop_id": 5122060, "stop_desc": "FACE 104 AVENUE ROGER SALENGRO - 92019", "stop_name": "DOCTEUR LE SAVOUREUX"}, "geometry": {"type": "Point", "coordinates": [2.273091210688663, 48.76784850968755]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0f42140c02294ed1950cf5657a1552cce7367783", "fields": {"departement": "92", "stop_lat": 48.766266284732275, "code_postal": "92019", "stop_lon": 2.272494921821088, "coord": [48.766266284732275, 2.272494921821088], "stop_id": 5122062, "stop_desc": "FACE 136 AVENUE ROGER SALENGRO - 92019", "stop_name": "JULES VERNE"}, "geometry": {"type": "Point", "coordinates": [2.272494921821088, 48.766266284732275]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4ca4da0a9b33e256e466cfe3b2b6fb85ae691c12", "fields": {"departement": "92", "stop_lat": 48.764432544927, "code_postal": "92019", "stop_lon": 2.272184500447193, "coord": [48.764432544927, 2.272184500447193], "stop_id": 5122064, "stop_desc": "AVENUE ROGER SALENGRO - 92019", "stop_name": "PRESIDENT ALLENDE"}, "geometry": {"type": "Point", "coordinates": [2.272184500447193, 48.764432544927]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7e4fa922f884961ef1f9fb1b345b38ac538788d0", "fields": {"departement": "92", "stop_lat": 48.76462663033227, "code_postal": "92019", "stop_lon": 2.2658213312517548, "coord": [48.76462663033227, 2.2658213312517548], "stop_id": 5122066, "stop_desc": "293 AVENUE DE LA DIVISION LECLERC - 92019", "stop_name": "GENERAL DUVAL"}, "geometry": {"type": "Point", "coordinates": [2.2658213312517548, 48.76462663033227]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ae4864f5d22314b9f1b06ffedecd864c6e4be172", "fields": {"departement": "92", "stop_lat": 48.7663368088652, "code_postal": "92019", "stop_lon": 2.2556488393941607, "coord": [48.7663368088652, 2.2556488393941607], "stop_id": 5122069, "stop_desc": "FACE 1 RUE NICOLAS APPERT - 92019", "stop_name": "FRANCIS DE PRESSENSE"}, "geometry": {"type": "Point", "coordinates": [2.2556488393941607, 48.7663368088652]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "44be765198effb9fe525b275ad94703104b7a9e6", "fields": {"departement": "92", "stop_lat": 48.76610283824545, "code_postal": "92019", "stop_lon": 2.255241315319122, "coord": [48.76610283824545, 2.255241315319122], "stop_id": 5122070, "stop_desc": "327 AVENUE DE LA DIVISION LECLERC - 92019", "stop_name": "FRANCIS DE PRESSENSE"}, "geometry": {"type": "Point", "coordinates": [2.255241315319122, 48.76610283824545]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "33253c9d47b2b6789be7c60a68c734c780c3036c", "fields": {"departement": "92", "stop_lat": 48.7674052392766, "code_postal": "92019", "stop_lon": 2.2539883608258457, "coord": [48.7674052392766, 2.2539883608258457], "stop_id": 5122071, "stop_desc": "AVENUE JEAN JAURES - 92019", "stop_name": "LYCEE POLYVALENT"}, "geometry": {"type": "Point", "coordinates": [2.2539883608258457, 48.7674052392766]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "840e6738aed89a4a44f62f3afb9101cd0ab4552d", "fields": {"departement": "92", "stop_lat": 48.79153843504976, "code_postal": "92032", "stop_lon": 2.2867329978586195, "coord": [48.79153843504976, 2.2867329978586195], "stop_id": 5122075, "stop_desc": "FACE 75 RUE BOUCICAUT - 92032", "stop_name": "MAIRIE DE FONTENAY-AUX-ROSES"}, "geometry": {"type": "Point", "coordinates": [2.2867329978586195, 48.79153843504976]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d5c81cfaa15af1009a732e09f530cc818e9cd320", "fields": {"departement": "92", "stop_lat": 48.796274445962815, "code_postal": "92032", "stop_lon": 2.285327149411923, "coord": [48.796274445962815, 2.285327149411923], "stop_id": 5122076, "stop_desc": "148 RUE BOUCICAUT - 92032", "stop_name": "LE PLATEAU"}, "geometry": {"type": "Point", "coordinates": [2.285327149411923, 48.796274445962815]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1f882d7898639f42b0a867040b460a88863243b7", "fields": {"departement": "92", "stop_lat": 48.81918355343179, "code_postal": "92049", "stop_lon": 2.310074946801479, "coord": [48.81918355343179, 2.310074946801479], "stop_id": 5122080, "stop_desc": "85 AVENUE PIERRE BROSSOLETTE - 92049", "stop_name": "PIERRE BROSSOLETTE - GABRIEL PERI"}, "geometry": {"type": "Point", "coordinates": [2.310074946801479, 48.81918355343179]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d880d5336bac2cdbf5e77b7ce7aaf174e452c6bb", "fields": {"departement": "92", "stop_lat": 48.779573433391995, "code_postal": "92023", "stop_lon": 2.2400289462447596, "coord": [48.779573433391995, 2.2400289462447596], "stop_id": 5122145, "stop_desc": "FACE 2 AVENUE REAUMUR - 92023", "stop_name": "PAVE BLANC"}, "geometry": {"type": "Point", "coordinates": [2.2400289462447596, 48.779573433391995]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "19425d0d0275a3ca4ffa96668e9ea4fdbdadd4f2", "fields": {"departement": "92", "stop_lat": 48.777515228878336, "code_postal": "92060", "stop_lon": 2.2400871958767454, "coord": [48.777515228878336, 2.2400871958767454], "stop_id": 5122147, "stop_desc": "AVENUE DESCARTES - 92060", "stop_name": "REAUMUR"}, "geometry": {"type": "Point", "coordinates": [2.2400871958767454, 48.777515228878336]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b4fd86e044e2c1d8c36066bfe74d0db399c08db5", "fields": {"departement": "92", "stop_lat": 48.77706941107186, "code_postal": "92060", "stop_lon": 2.2445757847034695, "coord": [48.77706941107186, 2.2445757847034695], "stop_id": 5122150, "stop_desc": "10 AVENUE DESCARTES - 92060", "stop_name": "GALILEE"}, "geometry": {"type": "Point", "coordinates": [2.2445757847034695, 48.77706941107186]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "22031a712dd8ab7c6cb8d3dbf4a8b98ab535faac", "fields": {"departement": "92", "stop_lat": 48.77639883447205, "code_postal": "92060", "stop_lon": 2.2492142676281586, "coord": [48.77639883447205, 2.2492142676281586], "stop_id": 5122151, "stop_desc": "1 AVENUE DESCARTES - 92060", "stop_name": "LANGEVIN"}, "geometry": {"type": "Point", "coordinates": [2.2492142676281586, 48.77639883447205]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "89153eb914bed61970ddf303dbd9ed55ef22e6ed", "fields": {"departement": "92", "stop_lat": 48.78290831132887, "code_postal": "92060", "stop_lon": 2.2658641938640955, "coord": [48.78290831132887, 2.2658641938640955], "stop_id": 5122166, "stop_desc": "AVENUE CHARLES DE GAULLE - 92060", "stop_name": "L'ESCALIER"}, "geometry": {"type": "Point", "coordinates": [2.2658641938640955, 48.78290831132887]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b7c9692f01caca92a3eefadcddd49335fe939070", "fields": {"departement": "92", "stop_lat": 48.77901994462124, "code_postal": "92071", "stop_lon": 2.2909610986263127, "coord": [48.77901994462124, 2.2909610986263127], "stop_id": 5122182, "stop_desc": "110 RUE HOUDAN - 92071", "stop_name": "FONTENAY - HOUDAN"}, "geometry": {"type": "Point", "coordinates": [2.2909610986263127, 48.77901994462124]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9eec5b800256259edb79728f4cd33e8905b55cfb", "fields": {"departement": "92", "stop_lat": 48.770569393264466, "code_postal": "92019", "stop_lon": 2.2865222296789733, "coord": [48.770569393264466, 2.2865222296789733], "stop_id": 5122185, "stop_desc": "AVENUE SULLY PRUDHOMME - 92019", "stop_name": "CROIX BLANCHE"}, "geometry": {"type": "Point", "coordinates": [2.2865222296789733, 48.770569393264466]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d6bb0d83c4cb15379e3801be2233f678d453cb12", "fields": {"departement": "92", "stop_lat": 48.75491599272716, "code_postal": "92002", "stop_lon": 2.2966238515531257, "coord": [48.75491599272716, 2.2966238515531257], "stop_id": 5122190, "stop_desc": "13 RUE MAURICE LABROUSSE - 92002", "stop_name": "THEATRE-MAIRIE"}, "geometry": {"type": "Point", "coordinates": [2.2966238515531257, 48.75491599272716]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "92c15141feda8d291789c50e16a5bcc76214c2cc", "fields": {"departement": "92", "stop_lat": 48.755050861485685, "code_postal": "92002", "stop_lon": 2.296759680994518, "coord": [48.755050861485685, 2.296759680994518], "stop_id": 5122191, "stop_desc": "34 RUE MAURICE LABROUSSE - 92002", "stop_name": "THEATRE-MAIRIE"}, "geometry": {"type": "Point", "coordinates": [2.296759680994518, 48.755050861485685]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4847ea6998f8fbb292af140982524dfe35320693", "fields": {"departement": "92", "stop_lat": 48.75467474027654, "code_postal": "92002", "stop_lon": 2.3010418915972166, "coord": [48.75467474027654, 2.3010418915972166], "stop_id": 5122193, "stop_desc": "FACE 14-16 RUE VELPEAU - 92002", "stop_name": "ANTONY RER"}, "geometry": {"type": "Point", "coordinates": [2.3010418915972166, 48.75467474027654]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d13fa54e7d46702bf13efc00837db5a83b73ff73", "fields": {"departement": "92", "stop_lat": 48.78235273440558, "code_postal": "92060", "stop_lon": 2.254576428470813, "coord": [48.78235273440558, 2.254576428470813], "stop_id": 5122197, "stop_desc": "FACE 41 AVENUE EDOUARD HERRIOT - 92060", "stop_name": "BOIS BRULE"}, "geometry": {"type": "Point", "coordinates": [2.254576428470813, 48.78235273440558]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9217cea176ff6568885b6838c8e19b598532b6fe", "fields": {"departement": "75", "stop_lat": 48.82273618498334, "code_postal": "75114", "stop_lon": 2.325208756264251, "coord": [48.82273618498334, 2.325208756264251], "stop_id": 5137967, "stop_desc": "4 PLACE DU 25 AOUT 1944 - 75114", "stop_name": "PORTE D'ORLEANS-METRO"}, "geometry": {"type": "Point", "coordinates": [2.325208756264251, 48.82273618498334]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ef951bd52f51c9885de0ed8f752fbdc66386ed59", "fields": {"departement": "92", "stop_lat": 48.81609960993273, "code_postal": "92046", "stop_lon": 2.3054085119085057, "coord": [48.81609960993273, 2.3054085119085057], "stop_id": 5137972, "stop_desc": "132-134 AVENUE PIERRE BROSSOLETTE - 92046", "stop_name": "AUGUSTIN DUMONT"}, "geometry": {"type": "Point", "coordinates": [2.3054085119085057, 48.81609960993273]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9d330cbd17836492beee891502b81d1ffe136049", "fields": {"departement": "92", "stop_lat": 48.81354611827791, "code_postal": "92046", "stop_lon": 2.301953441925509, "coord": [48.81354611827791, 2.301953441925509], "stop_id": 5137973, "stop_desc": "192 AVENUE PIERRE BROSSOLETTE - 92046", "stop_name": "ETIENNE DOLET"}, "geometry": {"type": "Point", "coordinates": [2.301953441925509, 48.81354611827791]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "77d1575082ce936ce84dc2ba8ae963e61eadcf89", "fields": {"departement": "92", "stop_lat": 48.79297627206785, "code_postal": "92007", "stop_lon": 2.315625251776846, "coord": [48.79297627206785, 2.315625251776846], "stop_id": 5137989, "stop_desc": "26 AVENUE PAUL VAILLANT COUTURIER - 92007", "stop_name": "LES BLAINS"}, "geometry": {"type": "Point", "coordinates": [2.315625251776846, 48.79297627206785]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "49b2fbec8dd378b38587025125c61bc558c7c334", "fields": {"departement": "92", "stop_lat": 48.7858208813898, "code_postal": "92007", "stop_lon": 2.3106500677792785, "coord": [48.7858208813898, 2.3106500677792785], "stop_id": 5137992, "stop_desc": "4 AVENUE DE MONTROUGE - 92007", "stop_name": "LES BAS COQUARTS"}, "geometry": {"type": "Point", "coordinates": [2.3106500677792785, 48.7858208813898]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ff0328af157df2d60fc971e8176e4fcf1f9a52f6", "fields": {"departement": "92", "stop_lat": 48.79749513513699, "code_postal": "92007", "stop_lon": 2.306385847808469, "coord": [48.79749513513699, 2.306385847808469], "stop_id": 5138007, "stop_desc": "27 AVENUE GABRIEL PERI - 92007", "stop_name": "RUE DES OLIVETTES"}, "geometry": {"type": "Point", "coordinates": [2.306385847808469, 48.79749513513699]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "35404b2b53cfd9cd8949ba732cec9dddfc850646", "fields": {"departement": "75", "stop_lat": 48.82332914428735, "code_postal": "75114", "stop_lon": 2.32313969054984, "coord": [48.82332914428735, 2.32313969054984], "stop_id": 5138023, "stop_desc": "1 AVENUE DE LA PORTE DE MONTROUGE - 75114", "stop_name": "PORTE D'ORLEANS - ERNEST REYER"}, "geometry": {"type": "Point", "coordinates": [2.32313969054984, 48.82332914428735]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9b2ba5c4a4be4e1244a989fa2c1243a6b68c0ea8", "fields": {"departement": "75", "stop_lat": 48.87438781187915, "code_postal": "75109", "stop_lon": 2.33251326074323, "coord": [48.87438781187915, 2.33251326074323], "stop_id": 5138030, "stop_desc": "33-35 R DE LA CHAUSSEE D'ANTIN - 75109", "stop_name": "CHAUSSEE D'ANTIN"}, "geometry": {"type": "Point", "coordinates": [2.33251326074323, 48.87438781187915]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4f7572a4d997760cb334d8c2ca2343f253d586c9", "fields": {"departement": "75", "stop_lat": 48.861139933597755, "code_postal": "75107", "stop_lon": 2.325131730835768, "coord": [48.861139933597755, 2.325131730835768], "stop_id": 5138038, "stop_desc": "QUAI ANATOLE FRANCE - 75107", "stop_name": "MUSEE D'ORSAY"}, "geometry": {"type": "Point", "coordinates": [2.325131730835768, 48.861139933597755]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "68d75f286be9391fe9b8b4749209d4be0ad34cec", "fields": {"departement": "75", "stop_lat": 48.84826115001549, "code_postal": "75106", "stop_lon": 2.327626818016069, "coord": [48.84826115001549, 2.327626818016069], "stop_id": 5138043, "stop_desc": "76 BOULEVARD RASPAIL - 75106", "stop_name": "RENNES - RASPAIL"}, "geometry": {"type": "Point", "coordinates": [2.327626818016069, 48.84826115001549]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "136c5f157712632907532fd15ac17b5a853af493", "fields": {"departement": "75", "stop_lat": 48.84166445005082, "code_postal": "75114", "stop_lon": 2.329520690967109, "coord": [48.84166445005082, 2.329520690967109], "stop_id": 5138045, "stop_desc": "206 BOULEVARD RASPAIL - 75114", "stop_name": "VAVIN"}, "geometry": {"type": "Point", "coordinates": [2.329520690967109, 48.84166445005082]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ab1ac572403a981548b58c6b431d4282df5e273e", "fields": {"departement": "75", "stop_lat": 48.8382222938237, "code_postal": "75114", "stop_lon": 2.330814655185892, "coord": [48.8382222938237, 2.330814655185892], "stop_id": 5138046, "stop_desc": "244 BOULEVARD RASPAIL - 75114", "stop_name": "RASPAIL - EDGAR QUINET"}, "geometry": {"type": "Point", "coordinates": [2.330814655185892, 48.8382222938237]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ccf5f2903441ed5b7d5e510c0b64e65c457b4933", "fields": {"departement": "92", "stop_lat": 48.815022396313154, "code_postal": "92049", "stop_lon": 2.310771194260721, "coord": [48.815022396313154, 2.310771194260721], "stop_id": 5138057, "stop_desc": "FACE AU 105 RUE MAURICE ARNOUX - 92049", "stop_name": "JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.310771194260721, 48.815022396313154]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2162d4f25c3b5e5acff5b25d0ced2a106874dd6c", "fields": {"departement": "92", "stop_lat": 48.81201108232607, "code_postal": "92049", "stop_lon": 2.308949204555559, "coord": [48.81201108232607, 2.308949204555559], "stop_id": 5138058, "stop_desc": "146 RUE MAURICE ARNOUX - 92049", "stop_name": "JULES GUESDE"}, "geometry": {"type": "Point", "coordinates": [2.308949204555559, 48.81201108232607]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "09d54a03e5257d05041587e0f8d290a96372124e", "fields": {"departement": "75", "stop_lat": 48.84390130314386, "code_postal": "75105", "stop_lon": 2.3548066932136584, "coord": [48.84390130314386, 2.3548066932136584], "stop_id": 5138080, "stop_desc": "1-3 RUE LINNE - 75105", "stop_name": "CUVIER - JARDIN DES PLANTES"}, "geometry": {"type": "Point", "coordinates": [2.3548066932136584, 48.84390130314386]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2480643e928f8f6bad7cd364dccb601c1869838c", "fields": {"departement": "75", "stop_lat": 48.841034107345216, "code_postal": "75105", "stop_lon": 2.3559358522917724, "coord": [48.841034107345216, 2.3559358522917724], "stop_id": 5138081, "stop_desc": "FACE 34 RUE GEOFFROY SAINT HILAIRE - 75105", "stop_name": "BUFFON - LA MOSQUEE"}, "geometry": {"type": "Point", "coordinates": [2.3559358522917724, 48.841034107345216]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ce9bd715cf7a7a5094497fe37169b2a8f28983e0", "fields": {"departement": "75", "stop_lat": 48.85097856734546, "code_postal": "75112", "stop_lon": 2.3756183478441577, "coord": [48.85097856734546, 2.3756183478441577], "stop_id": 5138082, "stop_desc": "85 AVENUE LEDRU ROLLIN - 75112", "stop_name": "LEDRU ROLLIN - FAUBOURG SAINT-ANTOINE"}, "geometry": {"type": "Point", "coordinates": [2.3756183478441577, 48.85097856734546]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "adf04d3d7521eff6eb956acefc0b90b16e90f59e", "fields": {"departement": "75", "stop_lat": 48.88191012130814, "code_postal": "75109", "stop_lon": 2.331599580614686, "coord": [48.88191012130814, 2.331599580614686], "stop_id": 5138162, "stop_desc": "61-63 RUE BLANCHE - 75109", "stop_name": "BLANCHE - CALAIS"}, "geometry": {"type": "Point", "coordinates": [2.331599580614686, 48.88191012130814]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "34ad0789b27ed49ac12c4bc78aef358f4cae0451", "fields": {"departement": "75", "stop_lat": 48.87584369622378, "code_postal": "75109", "stop_lon": 2.3312323629648577, "coord": [48.87584369622378, 2.3312323629648577], "stop_id": 5138165, "stop_desc": "34 R DE MOGADOR - 75109", "stop_name": "TRINITE"}, "geometry": {"type": "Point", "coordinates": [2.3312323629648577, 48.87584369622378]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3aa45fa2904dc830a267ca763a89098fd704f0c5", "fields": {"departement": "75", "stop_lat": 48.87438781187915, "code_postal": "75109", "stop_lon": 2.33251326074323, "coord": [48.87438781187915, 2.33251326074323], "stop_id": 5138166, "stop_desc": "33-35 R DE LA CHAUSSEE D'ANTIN - 75109", "stop_name": "CHAUSSEE D'ANTIN"}, "geometry": {"type": "Point", "coordinates": [2.33251326074323, 48.87438781187915]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "04fc3ee353fd7e4aeed4011f0530637693b58a9e", "fields": {"departement": "75", "stop_lat": 48.8697773289464, "code_postal": "75102", "stop_lon": 2.3328270241440445, "coord": [48.8697773289464, 2.3328270241440445], "stop_id": 5138169, "stop_desc": "38 AVENUE DE L'OPERA - 75102", "stop_name": "OPERA - 4 SEPTEMBRE"}, "geometry": {"type": "Point", "coordinates": [2.3328270241440445, 48.8697773289464]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "41c7cb8e58ae39a63c8f9ca395e57055e563b13c", "fields": {"departement": "75", "stop_lat": 48.86721597123062, "code_postal": "75101", "stop_lon": 2.3339306967895874, "coord": [48.86721597123062, 2.3339306967895874], "stop_id": 5138171, "stop_desc": "26 AVENUE DE L'OPERA - 75101", "stop_name": "PYRAMIDES"}, "geometry": {"type": "Point", "coordinates": [2.3339306967895874, 48.86721597123062]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eb8f859470ae0d2d1e3a552d67d5e380f488dd8b", "fields": {"departement": "75", "stop_lat": 48.86403446820581, "code_postal": "75101", "stop_lon": 2.334993420779704, "coord": [48.86403446820581, 2.334993420779704], "stop_id": 5138172, "stop_desc": "1-3 AVENUE DE L'OPERA - 75101", "stop_name": "PALAIS ROYAL - COMEDIE FRANCAISE"}, "geometry": {"type": "Point", "coordinates": [2.334993420779704, 48.86403446820581]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "72ae8c4e1431d2d2bc67b34088d55fa9db6db23d", "fields": {"departement": "75", "stop_lat": 48.858893562960745, "code_postal": "75107", "stop_lon": 2.331574848358332, "coord": [48.858893562960745, 2.331574848358332], "stop_id": 5138174, "stop_desc": "FACE 13 QUAI VOLTAIRE - 75107", "stop_name": "PONT DU CARROUSEL - QUAI VOLTAIRE"}, "geometry": {"type": "Point", "coordinates": [2.331574848358332, 48.858893562960745]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "08c190650e4365672322334e64a33c95e024a612", "fields": {"departement": "75", "stop_lat": 48.85990896102511, "code_postal": "75107", "stop_lon": 2.328591744841365, "coord": [48.85990896102511, 2.328591744841365], "stop_id": 5138175, "stop_desc": "QUAI ANATOLE FRANCE - 75107", "stop_name": "PONT ROYAL - QUAI VOLTAIRE"}, "geometry": {"type": "Point", "coordinates": [2.328591744841365, 48.85990896102511]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4e2c882637c7e2ce03207e19a20f904a69f141ec", "fields": {"departement": "94", "stop_lat": 48.81672811941364, "code_postal": "94069", "stop_lon": 2.4555769178378704, "coord": [48.81672811941364, 2.4555769178378704], "stop_id": 5478303, "stop_desc": "228 RUE DU MARECHAL LECLERC - 94069", "stop_name": "LES CANADIENS"}, "geometry": {"type": "Point", "coordinates": [2.4555769178378704, 48.81672811941364]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "26c4ea98717f2ec06e005023acec83f1b660d2fd", "fields": {"departement": "94", "stop_lat": 48.80386787555055, "code_postal": "94068", "stop_lon": 2.4713308992074583, "coord": [48.80386787555055, 2.4713308992074583], "stop_id": 5478317, "stop_desc": "FACE 59 RUE DU PONT DE CRETEIL - 94068", "stop_name": "RUE DES REMISES"}, "geometry": {"type": "Point", "coordinates": [2.4713308992074583, 48.80386787555055]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7fffff8d98bfeb184b58c33a7c5af9144e98e9db", "fields": {"departement": "94", "stop_lat": 48.787607228897016, "code_postal": "94068", "stop_lon": 2.4946164026734783, "coord": [48.787607228897016, 2.4946164026734783], "stop_id": 5478334, "stop_desc": "21 BIS AVENUE DES PERDRIX - 94068", "stop_name": "ALMA"}, "geometry": {"type": "Point", "coordinates": [2.4946164026734783, 48.787607228897016]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aa93d75ddae57e836050a3e98057258231de428f", "fields": {"departement": "94", "stop_lat": 48.79127169002588, "code_postal": "94068", "stop_lon": 2.5031565849063178, "coord": [48.79127169002588, 2.5031565849063178], "stop_id": 5478341, "stop_desc": "46 AVENUE DE BONNEUIL - 94068", "stop_name": "AVENUE DE BONNEUIL"}, "geometry": {"type": "Point", "coordinates": [2.5031565849063178, 48.79127169002588]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d36925c08e0188a1e78d76b7ce7e3fb23f8bd309", "fields": {"departement": "94", "stop_lat": 48.790384083368984, "code_postal": "94068", "stop_lon": 2.5079555256354293, "coord": [48.790384083368984, 2.5079555256354293], "stop_id": 5478342, "stop_desc": "74 BOULEVARD DE LA MARNE - 94068", "stop_name": "VOLTAIRE"}, "geometry": {"type": "Point", "coordinates": [2.5079555256354293, 48.790384083368984]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a1942bba68ba47d0cb40908a13d20ded0e34d925", "fields": {"departement": "94", "stop_lat": 48.790672572619854, "code_postal": "94068", "stop_lon": 2.507344346011358, "coord": [48.790672572619854, 2.507344346011358], "stop_id": 5478343, "stop_desc": "FACE 66 BOULEVARD DE LA MARNE - 94068", "stop_name": "VOLTAIRE"}, "geometry": {"type": "Point", "coordinates": [2.507344346011358, 48.790672572619854]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c2525d76f3185bf8b2bf30b73f940b1cb403258c", "fields": {"departement": "94", "stop_lat": 48.7901620879359, "code_postal": "94068", "stop_lon": 2.512280457457706, "coord": [48.7901620879359, 2.512280457457706], "stop_id": 5478344, "stop_desc": "FACE 36BIS RUE SAINT HILAIRE - 94068", "stop_name": "EGLISE DE LA VARENNE"}, "geometry": {"type": "Point", "coordinates": [2.512280457457706, 48.7901620879359]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "66a7a0d02005f6f8e82378e8dd6615d686a950ad", "fields": {"departement": "94", "stop_lat": 48.79678115320149, "code_postal": "94068", "stop_lon": 2.5156630660123462, "coord": [48.79678115320149, 2.5156630660123462], "stop_id": 5478348, "stop_desc": "31 AVENUE DU MESNIL - 94068", "stop_name": "CAPITAINE CHARTON"}, "geometry": {"type": "Point", "coordinates": [2.5156630660123462, 48.79678115320149]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b077ff2cb51e503fea84342bdc73539b86658177", "fields": {"departement": "94", "stop_lat": 48.806870463392045, "code_postal": "94068", "stop_lon": 2.5123367871767623, "coord": [48.806870463392045, 2.5123367871767623], "stop_id": 5478357, "stop_desc": "12 AVENUE DU 11 NOVEMBRE - 94068", "stop_name": "ALEXANDRE DUMAS"}, "geometry": {"type": "Point", "coordinates": [2.5123367871767623, 48.806870463392045]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "898f34077902f7ad4722a945a629ce90721aadd2", "fields": {"departement": "94", "stop_lat": 48.790515956138684, "code_postal": "94068", "stop_lon": 2.509996379311157, "coord": [48.790515956138684, 2.509996379311157], "stop_id": 5478359, "stop_desc": "4 RUE ARAGO - 94068", "stop_name": "ARAGO"}, "geometry": {"type": "Point", "coordinates": [2.509996379311157, 48.790515956138684]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4867850430cf7bbc16924303b313647019d5bc7b", "fields": {"departement": "94", "stop_lat": 48.81838475693689, "code_postal": "94069", "stop_lon": 2.4202761371458252, "coord": [48.81838475693689, 2.4202761371458252], "stop_id": 5478362, "stop_desc": "5 RUE DU MARECHAL LECLERC - 94069", "stop_name": "PONT DE CHARENTON"}, "geometry": {"type": "Point", "coordinates": [2.4202761371458252, 48.81838475693689]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f8abf29c55a5ae12334d9ab108c04369314ad19d", "fields": {"departement": "75", "stop_lat": 48.83144830211143, "code_postal": "75112", "stop_lon": 2.3979981179423318, "coord": [48.83144830211143, 2.3979981179423318], "stop_id": 5478369, "stop_desc": "AVENUE DE LA PORTE DE CHARENTON - 75112", "stop_name": "PORTE DE CHARENTON"}, "geometry": {"type": "Point", "coordinates": [2.3979981179423318, 48.83144830211143]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9a778c89a6782204f19a78e8ac4d5952da00b1bb", "fields": {"departement": "94", "stop_lat": 48.825529348029235, "code_postal": "94018", "stop_lon": 2.407260928275537, "coord": [48.825529348029235, 2.407260928275537], "stop_id": 5478373, "stop_desc": "135 RUE DE PARIS - 94018", "stop_name": "LIBERTE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.407260928275537, 48.825529348029235]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "47ee371ea5a21a455ed0c3e514b7df554e17b4a2", "fields": {"departement": "94", "stop_lat": 48.823325059800965, "code_postal": "94018", "stop_lon": 2.4110827508438324, "coord": [48.823325059800965, 2.4110827508438324], "stop_id": 5478376, "stop_desc": "88 RUE DE PARIS - 94018", "stop_name": "THEATRE DE CHARENTON"}, "geometry": {"type": "Point", "coordinates": [2.4110827508438324, 48.823325059800965]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cbda4a43fac9192adc694c7a2c871d92878e19da", "fields": {"departement": "94", "stop_lat": 48.822231640351454, "code_postal": "94069", "stop_lon": 2.4200645134930636, "coord": [48.822231640351454, 2.4200645134930636], "stop_id": 5478378, "stop_desc": "2 RUE VERDUN - 94069", "stop_name": "VERDUN"}, "geometry": {"type": "Point", "coordinates": [2.4200645134930636, 48.822231640351454]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "62c36ac94fd59da4bef660c51991e44491f81ada", "fields": {"departement": "94", "stop_lat": 48.82002741880614, "code_postal": "94069", "stop_lon": 2.4232186351513785, "coord": [48.82002741880614, 2.4232186351513785], "stop_id": 5478380, "stop_desc": "23 BIS RUE DU VAL D'OSNE - 94069", "stop_name": "EPINETTES"}, "geometry": {"type": "Point", "coordinates": [2.4232186351513785, 48.82002741880614]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a43d3dbb53e2c3804994c3c82c3a37bb5eca7b75", "fields": {"departement": "94", "stop_lat": 48.81785051981082, "code_postal": "94069", "stop_lon": 2.425773698569028, "coord": [48.81785051981082, 2.425773698569028], "stop_id": 5478382, "stop_desc": "FACE 55BIS RUE DU MARECHAL LECLERC - 94069", "stop_name": "MAIRIE DE SAINT-MAURICE"}, "geometry": {"type": "Point", "coordinates": [2.425773698569028, 48.81785051981082]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c48693f23c45ea44cca2b88f5631ad4b89fa21c1", "fields": {"departement": "94", "stop_lat": 48.81796678050282, "code_postal": "94069", "stop_lon": 2.4265496652267307, "coord": [48.81796678050282, 2.4265496652267307], "stop_id": 5478383, "stop_desc": "55 RUE DU MARECHAL LECLERC - 94069", "stop_name": "MAIRIE DE SAINT-MAURICE"}, "geometry": {"type": "Point", "coordinates": [2.4265496652267307, 48.81796678050282]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "75144515c9d2baac90bc1df09da0b648c2564465", "fields": {"departement": "94", "stop_lat": 48.81804240272417, "code_postal": "94069", "stop_lon": 2.4333139614357617, "coord": [48.81804240272417, 2.4333139614357617], "stop_id": 5478386, "stop_desc": "44 RUE DU MARECHAL LECLERC - 94069", "stop_name": "PASSERELLE DE SAINT-MAURICE"}, "geometry": {"type": "Point", "coordinates": [2.4333139614357617, 48.81804240272417]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5156a6e4d7b768c70da695d16833106a50695e6f", "fields": {"departement": "94", "stop_lat": 48.818150375922244, "code_postal": "94069", "stop_lon": 2.4331644510330075, "coord": [48.818150375922244, 2.4331644510330075], "stop_id": 5478387, "stop_desc": "69 RUE DU MARECHAL LECLERC - 94069", "stop_name": "PASSERELLE DE SAINT-MAURICE"}, "geometry": {"type": "Point", "coordinates": [2.4331644510330075, 48.818150375922244]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "75b48290514694ea9d34a2bd1103865e293af75e", "fields": {"departement": "94", "stop_lat": 48.81763994544958, "code_postal": "94069", "stop_lon": 2.4514143694904704, "coord": [48.81763994544958, 2.4514143694904704], "stop_id": 5478395, "stop_desc": "FACE 178 RUE DU MARECHAL LECLERC - 94069", "stop_name": "ROSERAIE"}, "geometry": {"type": "Point", "coordinates": [2.4514143694904704, 48.81763994544958]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dd6234c0e95020b4789441e224e565408e6be658", "fields": {"departement": "75", "stop_lat": 48.844396213825625, "code_postal": "75112", "stop_lon": 2.441505671320099, "coord": [48.844396213825625, 2.441505671320099], "stop_id": 5478404, "stop_desc": "PISTE GARE ROUTIERE - 75112", "stop_name": "CHATEAU DE VINCENNES"}, "geometry": {"type": "Point", "coordinates": [2.441505671320099, 48.844396213825625]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8af2310569f98281d0e69e46b3ae3ff1cdd222a8", "fields": {"departement": "75", "stop_lat": 48.83747695761686, "code_postal": "75112", "stop_lon": 2.4401711042048104, "coord": [48.83747695761686, 2.4401711042048104], "stop_id": 5478408, "stop_desc": "ROUTE DE LA PYRAMIDE - 75112", "stop_name": "STADE LEO LAGRANGE"}, "geometry": {"type": "Point", "coordinates": [2.4401711042048104, 48.83747695761686]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5508c67e0074ffa56e53634527eef5b370100969", "fields": {"departement": "94", "stop_lat": 48.817534352969815, "code_postal": "94042", "stop_lon": 2.466766065980956, "coord": [48.817534352969815, 2.466766065980956], "stop_id": 5478424, "stop_desc": "PLACE DU 8 MAI 1945 - 94042", "stop_name": "EUGENE VOISIN - MARCHE"}, "geometry": {"type": "Point", "coordinates": [2.466766065980956, 48.817534352969815]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "496e9709af139f28d7fe9609d9b22f67c6a4d837", "fields": {"departement": "94", "stop_lat": 48.81480067417761, "code_postal": "94042", "stop_lon": 2.4680521146487706, "coord": [48.81480067417761, 2.4680521146487706], "stop_id": 5478427, "stop_desc": "23 BOULEVARD DU GENERAL LECLERC - 94042", "stop_name": "REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.4680521146487706, 48.81480067417761]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "821cef4a5ef326ebf81b72fd19acc2e74d35ef97", "fields": {"departement": "94", "stop_lat": 48.796764215279296, "code_postal": "94068", "stop_lon": 2.495895760786253, "coord": [48.796764215279296, 2.495895760786253], "stop_id": 5478459, "stop_desc": "8 AVENUE VICTORIA - 94068", "stop_name": "AVENUE VICTORIA"}, "geometry": {"type": "Point", "coordinates": [2.495895760786253, 48.796764215279296]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "10551732c634f937df164269dd0d80e229a31b5d", "fields": {"departement": "95", "stop_lat": 48.977975246651994, "code_postal": "95585", "stop_lon": 2.371302900447818, "coord": [48.977975246651994, 2.371302900447818], "stop_id": 5478494, "stop_desc": "BOULEVARD ALBERT CAMUS - 95585", "stop_name": "LES CHOLETTES"}, "geometry": {"type": "Point", "coordinates": [2.371302900447818, 48.977975246651994]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c7c24a4545af845312f64298ee37cb2ef8c5a727", "fields": {"departement": "92", "stop_lat": 48.83755840611989, "code_postal": "92012", "stop_lon": 2.2460470932436056, "coord": [48.83755840611989, 2.2460470932436056], "stop_id": 5549465, "stop_desc": "65 BIS AVENUE VICTOR HUGO - 92012", "stop_name": "VICTOR HUGO - GALLIENI"}, "geometry": {"type": "Point", "coordinates": [2.2460470932436056, 48.83755840611989]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "35a5fcb2146b682fa327a8c820d1057e0922b1c9", "fields": {"departement": "92", "stop_lat": 48.828682026182086, "code_postal": "92012", "stop_lon": 2.2505685247786626, "coord": [48.828682026182086, 2.2505685247786626], "stop_id": 5549522, "stop_desc": "FACE 34 AVENUE PIERRE GRENIER - 92012", "stop_name": "RUE DE SEINE"}, "geometry": {"type": "Point", "coordinates": [2.2505685247786626, 48.828682026182086]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "05aa5e75c3ef612ed1cf77c0920d38cb383a1a6b", "fields": {"departement": "92", "stop_lat": 48.82565158540696, "code_postal": "92012", "stop_lon": 2.2483956687800117, "coord": [48.82565158540696, 2.2483956687800117], "stop_id": 5549523, "stop_desc": "FACE 4 AVENUE PIERRE GRENIER - 92012", "stop_name": "PONT DE BILLANCOURT"}, "geometry": {"type": "Point", "coordinates": [2.2483956687800117, 48.82565158540696]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bfd3d7eedd638180d6228ce4340be485775105dc", "fields": {"departement": "92", "stop_lat": 48.84103339211796, "code_postal": "92012", "stop_lon": 2.231322061843687, "coord": [48.84103339211796, 2.231322061843687], "stop_id": 5549555, "stop_desc": "14 RUE DE SILLY - 92012", "stop_name": "RUE DE SILLY - RUE DE PARIS"}, "geometry": {"type": "Point", "coordinates": [2.231322061843687, 48.84103339211796]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c6cabdc5203176eb4ead9da5499824059084fc05", "fields": {"departement": "92", "stop_lat": 48.83611293175523, "code_postal": "92012", "stop_lon": 2.2367780012512806, "coord": [48.83611293175523, 2.2367780012512806], "stop_id": 5549558, "stop_desc": "157 RUE GALLIENI - 92012", "stop_name": "GALLIENI - BILLANCOURT"}, "geometry": {"type": "Point", "coordinates": [2.2367780012512806, 48.83611293175523]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "83d3c0e56aba2c594edecde7c76836a24b5a2063", "fields": {"departement": "92", "stop_lat": 48.82565158540696, "code_postal": "92012", "stop_lon": 2.2483956687800117, "coord": [48.82565158540696, 2.2483956687800117], "stop_id": 5549560, "stop_desc": "FACE 4 AVENUE PIERRE GRENIER - 92012", "stop_name": "PONT DE BILLANCOURT"}, "geometry": {"type": "Point", "coordinates": [2.2483956687800117, 48.82565158540696]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "11ffc0318f11a92f9c72ceeb38e12a429f49f4eb", "fields": {"departement": "92", "stop_lat": 48.82822027480617, "code_postal": "92012", "stop_lon": 2.2349827985612585, "coord": [48.82822027480617, 2.2349827985612585], "stop_id": 5549565, "stop_desc": "12 CRS DE L'ILE SEGUIN - 92012", "stop_name": "COURS DE L'ILE SEGUIN"}, "geometry": {"type": "Point", "coordinates": [2.2349827985612585, 48.82822027480617]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f1e51530e507f87332cd8b6e48d59f82faf9587b", "fields": {"departement": "95", "stop_lat": 48.979953521450625, "code_postal": "95585", "stop_lon": 2.3921107275981934, "coord": [48.979953521450625, 2.3921107275981934], "stop_id": 5559263, "stop_desc": "FACE 5 AVENUE DU MARECHAL PIERRE KOENIG - 95585", "stop_name": "ECOLE JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.3921107275981934, 48.979953521450625]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fb3e2d865e5ccfa86c07a732cfb25310ad6b7e28", "fields": {"departement": "93", "stop_lat": 48.91407424599177, "code_postal": "93001", "stop_lon": 2.404421740305713, "coord": [48.91407424599177, 2.404421740305713], "stop_id": 5605600, "stop_desc": "PISTE GARE ROUTIERE - 93001", "stop_name": "FORT D'AUBERVILLIERS-METRO"}, "geometry": {"type": "Point", "coordinates": [2.404421740305713, 48.91407424599177]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "58a3a1ea7512c21b259a321bba6f7a0fb8e06f0d", "fields": {"departement": "93", "stop_lat": 48.913975480972084, "code_postal": "93001", "stop_lon": 2.404257989970118, "coord": [48.913975480972084, 2.404257989970118], "stop_id": 5605601, "stop_desc": "PISTE GARE ROUTIERE - 93001", "stop_name": "FORT D'AUBERVILLIERS-METRO"}, "geometry": {"type": "Point", "coordinates": [2.404257989970118, 48.913975480972084]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "268144b65b2d5a290c6aecf0e70ab26a0d2bf923", "fields": {"departement": "93", "stop_lat": 48.91364125447781, "code_postal": "93001", "stop_lon": 2.407230009973787, "coord": [48.91364125447781, 2.407230009973787], "stop_id": 5605602, "stop_desc": "AVENUE DE LA DIVISION LECLERC - 93001", "stop_name": "MAISON DE QUARTIER - COURTILLIERES"}, "geometry": {"type": "Point", "coordinates": [2.407230009973787, 48.91364125447781]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fe90f751b660e1fa6ec7bfb8bf13e55298736e78", "fields": {"departement": "93", "stop_lat": 48.913365186523436, "code_postal": "93008", "stop_lon": 2.4174831801276664, "coord": [48.913365186523436, 2.4174831801276664], "stop_id": 5605608, "stop_desc": "FACE 1 RUE BALZAC - 93008", "stop_name": "LES COURTILLIERES"}, "geometry": {"type": "Point", "coordinates": [2.4174831801276664, 48.913365186523436]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c634fc92b0b08a78caedc086b5677e45701564e8", "fields": {"departement": "94", "stop_lat": 48.836999404720174, "code_postal": "94052", "stop_lon": 2.476685510906942, "coord": [48.836999404720174, 2.476685510906942], "stop_id": 3682865, "stop_desc": "20 BOULEVARD DE STRASBOURG - 94052", "stop_name": "GENERAL FAIDHERBE"}, "geometry": {"type": "Point", "coordinates": [2.476685510906942, 48.836999404720174]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ade48ab7305679f8cbd85c30a2671690a7aaa22e", "fields": {"departement": "93", "stop_lat": 48.86750083438183, "code_postal": "93050", "stop_lon": 2.518317655418811, "coord": [48.86750083438183, 2.518317655418811], "stop_id": 3682848, "stop_desc": "88/86 RUE LOUIS AMPERE - 93050", "stop_name": "RUE LOUIS AMPERE N0 88"}, "geometry": {"type": "Point", "coordinates": [2.518317655418811, 48.86750083438183]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "44809cb7305b1ae0c0909d1270b45821d1fbf30d", "fields": {"departement": "93", "stop_lat": 48.855634588875034, "code_postal": "93050", "stop_lon": 2.520183013188147, "coord": [48.855634588875034, 2.520183013188147], "stop_id": 3682837, "stop_desc": "8 BOULEVARD ARISTIDE BRIAND - 93050", "stop_name": "FRANCOIS MAURIAC"}, "geometry": {"type": "Point", "coordinates": [2.520183013188147, 48.855634588875034]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9c3abeeced69539fd241dbf6f2e1988083058e5d", "fields": {"departement": "93", "stop_lat": 48.860868420628236, "code_postal": "93050", "stop_lon": 2.5404290504023144, "coord": [48.860868420628236, 2.5404290504023144], "stop_id": 3682896, "stop_desc": "159 AVENUE DU MARECHAL LECLERC - 93050", "stop_name": "BLANCHEVILLE"}, "geometry": {"type": "Point", "coordinates": [2.5404290504023144, 48.860868420628236]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "81a7b8c464b7066ed173eb4de06c11978735a7fc", "fields": {"departement": "93", "stop_lat": 48.85837112499829, "code_postal": "93050", "stop_lon": 2.5343580955008753, "coord": [48.85837112499829, 2.5343580955008753], "stop_id": 3682894, "stop_desc": "FACE 116 AVENUE DU GENERAL DE GAULLE - 93050", "stop_name": "PASTEUR"}, "geometry": {"type": "Point", "coordinates": [2.5343580955008753, 48.85837112499829]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2817d3345fd5b3d9b6061f7acc8fb8612bc667c8", "fields": {"departement": "93", "stop_lat": 48.86277297736101, "code_postal": "93050", "stop_lon": 2.546075924660132, "coord": [48.86277297736101, 2.546075924660132], "stop_id": 3682897, "stop_desc": "2 AVENUE DU MARECHAL LECLERC - 93050", "stop_name": "VILLE EVRARD"}, "geometry": {"type": "Point", "coordinates": [2.546075924660132, 48.86277297736101]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1cde598c96a2e1e521c708a15fd5bde1b9c34a99", "fields": {"departement": "93", "stop_lat": 48.85367127728647, "code_postal": "93050", "stop_lon": 2.5169346792383425, "coord": [48.85367127728647, 2.5169346792383425], "stop_id": 3682836, "stop_desc": "FACE 32 BOULEVARD GALLIENI - 93050", "stop_name": "CENTRE BUS"}, "geometry": {"type": "Point", "coordinates": [2.5169346792383425, 48.85367127728647]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b39cc562ca166eafdedcb598cdb13054e3a7e19a", "fields": {"departement": "93", "stop_lat": 48.864007019410295, "code_postal": "93050", "stop_lon": 2.5495953946144163, "coord": [48.864007019410295, 2.5495953946144163], "stop_id": 3682900, "stop_desc": "AVENUE JEAN JAURES - 93050", "stop_name": "MAISON BLANCHE"}, "geometry": {"type": "Point", "coordinates": [2.5495953946144163, 48.864007019410295]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3649b1e27779609d67d8f62b1f41207a7d8568a5", "fields": {"departement": "77", "stop_lat": 48.87477880331131, "code_postal": "77108", "stop_lon": 2.584342221256563, "coord": [48.87477880331131, 2.584342221256563], "stop_id": 3682987, "stop_desc": "54 BOULEVARD CHILPERIC - 77108", "stop_name": "MARCHE - CHELLES - GOURNAY RER"}, "geometry": {"type": "Point", "coordinates": [2.584342221256563, 48.87477880331131]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1808a48a64599b9565bfee8c7d8eb8743a31d0da", "fields": {"departement": "77", "stop_lat": 48.87692593461776, "code_postal": "77108", "stop_lon": 2.5974056949577053, "coord": [48.87692593461776, 2.5974056949577053], "stop_id": 3682979, "stop_desc": "FACE 41-43 AVENUE FRANCOIS MITTERRAND - 77108", "stop_name": "FRANCOIS TRINQUAND"}, "geometry": {"type": "Point", "coordinates": [2.5974056949577053, 48.87692593461776]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ac37086119b1853a284c1ebbce4b599729233150", "fields": {"departement": "77", "stop_lat": 48.87406078064467, "code_postal": "77108", "stop_lon": 2.588180980526572, "coord": [48.87406078064467, 2.588180980526572], "stop_id": 3682973, "stop_desc": "FACE 9 BOULEVARD CHILPERIC - 77108", "stop_name": "CHILPERIC - ADOLPHE BESSON"}, "geometry": {"type": "Point", "coordinates": [2.588180980526572, 48.87406078064467]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "32d28fbbae61e7f423e78d34790175f3c552864f", "fields": {"departement": "77", "stop_lat": 48.874532919282075, "code_postal": "77108", "stop_lon": 2.581547949321578, "coord": [48.874532919282075, 2.581547949321578], "stop_id": 3682971, "stop_desc": "70 AVENUE DE LA RESISTANCE - 77108", "stop_name": "CHELLES - GOURNAY RER"}, "geometry": {"type": "Point", "coordinates": [2.581547949321578, 48.874532919282075]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "05403a15c4f9bb680417cae70241c66d41d5e6dc", "fields": {"departement": "93", "stop_lat": 48.85503415309562, "code_postal": "93050", "stop_lon": 2.5248524619630364, "coord": [48.85503415309562, 2.5248524619630364], "stop_id": 3682946, "stop_desc": "26 BOULEVARD DU MARECHAL FOCH - 93050", "stop_name": "VILLEBOIS - MAREUIL"}, "geometry": {"type": "Point", "coordinates": [2.5248524619630364, 48.85503415309562]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a41e7e024efd027dbb1e12a7b009c00e5a47a60e", "fields": {"departement": "94", "stop_lat": 48.835913890097316, "code_postal": "94052", "stop_lon": 2.47498075734175, "coord": [48.835913890097316, 2.47498075734175], "stop_id": 3682989, "stop_desc": "2 BOULEVARD DE STRASBOURG - 94052", "stop_name": "PLACE DU GENERAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.47498075734175, 48.835913890097316]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "724934a89d6ba259ccec2c1ffe36c956b00b0948", "fields": {"departement": "93", "stop_lat": 48.85503415309562, "code_postal": "93050", "stop_lon": 2.5248524619630364, "coord": [48.85503415309562, 2.5248524619630364], "stop_id": 3683001, "stop_desc": "26 BOULEVARD DU MARECHAL FOCH - 93050", "stop_name": "VILLEBOIS - MAREUIL"}, "geometry": {"type": "Point", "coordinates": [2.5248524619630364, 48.85503415309562]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "74fd06774ceaf5184f348a96b03d11fab076a565", "fields": {"departement": "77", "stop_lat": 48.87962474361319, "code_postal": "77108", "stop_lon": 2.596206504561032, "coord": [48.87962474361319, 2.596206504561032], "stop_id": 3682977, "stop_desc": "5 AVENUE JEAN JAURES - 77108", "stop_name": "CARREFOUR DES DEPORTES"}, "geometry": {"type": "Point", "coordinates": [2.596206504561032, 48.87962474361319]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "076bbb0e555a545c2a977bc4ea55b0b1855cf37a", "fields": {"departement": "77", "stop_lat": 48.86784741459195, "code_postal": "77108", "stop_lon": 2.5720620072994205, "coord": [48.86784741459195, 2.5720620072994205], "stop_id": 3682965, "stop_desc": "108 AVENUE DU MARECHAL FOCH - 77108", "stop_name": "RUE DU PORT"}, "geometry": {"type": "Point", "coordinates": [2.5720620072994205, 48.86784741459195]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "46fb1994328644033f668e92b468dd65ebffc4ab", "fields": {"departement": "94", "stop_lat": 48.8507957926177, "code_postal": "94058", "stop_lon": 2.504232174035045, "coord": [48.8507957926177, 2.504232174035045], "stop_id": 3682996, "stop_desc": "106 BOULEVARD ALSACE-LORRAINE - 94058", "stop_name": "JULES FERRY"}, "geometry": {"type": "Point", "coordinates": [2.504232174035045, 48.8507957926177]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "10afa82c8e065d27795de6ae2780ccf3b7a21545", "fields": {"departement": "94", "stop_lat": 48.81248980165499, "code_postal": "94017", "stop_lon": 2.51099488416213, "coord": [48.81248980165499, 2.51099488416213], "stop_id": 3683549, "stop_desc": "4 BIS RUE ALBERT THOMAS - 94017", "stop_name": "MARCHE DE CHAMPIGNY-SUR-MARNE"}, "geometry": {"type": "Point", "coordinates": [2.51099488416213, 48.81248980165499]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "acc08267411ae998f894235aaed94abf2a408e06", "fields": {"departement": "94", "stop_lat": 48.813165663031356, "code_postal": "94017", "stop_lon": 2.509772359937948, "coord": [48.813165663031356, 2.509772359937948], "stop_id": 3683474, "stop_desc": "RUE GEORGES DIMITROV - 94017", "stop_name": "MAIRIE DE CHAMPIGNY - MARCHE"}, "geometry": {"type": "Point", "coordinates": [2.509772359937948, 48.813165663031356]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7ac916892bdf6f90bc405571d5fd66ffcadedc4f", "fields": {"departement": "93", "stop_lat": 48.87485676070252, "code_postal": "93032", "stop_lon": 2.558387048806295, "coord": [48.87485676070252, 2.558387048806295], "stop_id": 3683051, "stop_desc": "24-26 RUE DE LA HAUTE CARRIERE - 93032", "stop_name": "RUE DE L'HORLOGE"}, "geometry": {"type": "Point", "coordinates": [2.558387048806295, 48.87485676070252]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cef7ecb78b7c993fe76a9ad6ac912c9455ac0e3a", "fields": {"departement": "93", "stop_lat": 48.87634295746809, "code_postal": "93032", "stop_lon": 2.5566084683533674, "coord": [48.87634295746809, 2.5566084683533674], "stop_id": 3683052, "stop_desc": "RUE DU CHEMIN DE FER - 93032", "stop_name": "PONT SAINT-PIERRE"}, "geometry": {"type": "Point", "coordinates": [2.5566084683533674, 48.87634295746809]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "816d3d97ed7a30a6521dbfadb94f836069484950", "fields": {"departement": "94", "stop_lat": 48.847876341735564, "code_postal": "94033", "stop_lon": 2.489719778535997, "coord": [48.847876341735564, 2.489719778535997], "stop_id": 3683457, "stop_desc": "78 AVENUE DE NEUILLY - 94033", "stop_name": "LYCEE LOUIS ARMAND"}, "geometry": {"type": "Point", "coordinates": [2.489719778535997, 48.847876341735564]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "431d4ac492f3afbbc19b260be0db95a9b8f43ad9", "fields": {"departement": "93", "stop_lat": 48.877550507721665, "code_postal": "93064", "stop_lon": 2.4843567962909288, "coord": [48.877550507721665, 2.4843567962909288], "stop_id": 3683437, "stop_desc": "FACE 3 BOULEVARD GABRIEL PERI - 93064", "stop_name": "VAN DERHEYDEN"}, "geometry": {"type": "Point", "coordinates": [2.4843567962909288, 48.877550507721665]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "520c3fc1d4c133cf4aeacd0a491e1271884f95c2", "fields": {"departement": "94", "stop_lat": 48.851789789857, "code_postal": "94033", "stop_lon": 2.4866534188993423, "coord": [48.851789789857, 2.4866534188993423], "stop_id": 3685895, "stop_desc": "FACE 56 RUE ROGER SALENGRO - 94033", "stop_name": "PLACE DU GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.4866534188993423, 48.851789789857]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4cc8a4939b9db1e25e16753a7f1b69b815aa3da3", "fields": {"departement": "93", "stop_lat": 48.85773789512799, "code_postal": "93048", "stop_lon": 2.4365201787571467, "coord": [48.85773789512799, 2.4365201787571467], "stop_id": 3685919, "stop_desc": "3-5 AVENUE PAUL LANGEVIN - 93048", "stop_name": "CROIX DE CHAVAUX-METRO"}, "geometry": {"type": "Point", "coordinates": [2.4365201787571467, 48.85773789512799]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6ff799b56ff59af7b050dd1d730d7c0bd5352f37", "fields": {"departement": "94", "stop_lat": 48.85333446531023, "code_postal": "94033", "stop_lon": 2.4875839784259886, "coord": [48.85333446531023, 2.4875839784259886], "stop_id": 3685897, "stop_desc": "8 AVENUE DU VAL DE FONTENAY - 94033", "stop_name": "VAL DE FONTENAY-RER"}, "geometry": {"type": "Point", "coordinates": [2.4875839784259886, 48.85333446531023]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c12a930cf7c09c0f0111b35f4b8ab6d652364be5", "fields": {"departement": "93", "stop_lat": 48.861476227216116, "code_postal": "93048", "stop_lon": 2.481001198392466, "coord": [48.861476227216116, 2.481001198392466], "stop_id": 3685940, "stop_desc": "198 RUE DES RUFFINS - 93048", "stop_name": "CIMETIERE DE VINCENNES"}, "geometry": {"type": "Point", "coordinates": [2.481001198392466, 48.861476227216116]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7e9e70b8459f13c38f4279e23b9074f0187f0127", "fields": {"departement": "94", "stop_lat": 48.842586614658025, "code_postal": "94033", "stop_lon": 2.471526279307448, "coord": [48.842586614658025, 2.471526279307448], "stop_id": 3685882, "stop_desc": "34-36 RUE DU CLOS D'ORLEANS - 94033", "stop_name": "RUE DE JOINVILLE"}, "geometry": {"type": "Point", "coordinates": [2.471526279307448, 48.842586614658025]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eeb0296614f7911c9533f201b0003bf5df625e6f", "fields": {"departement": "93", "stop_lat": 48.86211823293778, "code_postal": "93064", "stop_lon": 2.492227155481327, "coord": [48.86211823293778, 2.492227155481327], "stop_id": 3685943, "stop_desc": "84 RUE LAVOISIER - 93064", "stop_name": "LES 10 000 ROSIERS"}, "geometry": {"type": "Point", "coordinates": [2.492227155481327, 48.86211823293778]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "98d9c9935b025fc551bfa41e4732b8873e25837e", "fields": {"departement": "94", "stop_lat": 48.84920123008757, "code_postal": "94033", "stop_lon": 2.4867821452076706, "coord": [48.84920123008757, 2.4867821452076706], "stop_id": 3685893, "stop_desc": "RUE GEORGES GUYNEMER - 94033", "stop_name": "LE BOIS CADET"}, "geometry": {"type": "Point", "coordinates": [2.4867821452076706, 48.84920123008757]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "159cb82925b5989ae38492d62e4194592abcfad6", "fields": {"departement": "94", "stop_lat": 48.84935147661661, "code_postal": "94033", "stop_lon": 2.4572582827026497, "coord": [48.84935147661661, 2.4572582827026497], "stop_id": 3685875, "stop_desc": "135 RUE DALAYRAC - 94033", "stop_name": "LES RIGOLLOTS"}, "geometry": {"type": "Point", "coordinates": [2.4572582827026497, 48.84935147661661]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9c0af90fefef7fbfe8794a49b781c0f61093ef5e", "fields": {"departement": "94", "stop_lat": 48.84751033521781, "code_postal": "94033", "stop_lon": 2.464662069016542, "coord": [48.84751033521781, 2.464662069016542], "stop_id": 3685879, "stop_desc": "1 RUE PIERRE DULAC - 94033", "stop_name": "EMILE ROUX"}, "geometry": {"type": "Point", "coordinates": [2.464662069016542, 48.84751033521781]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d10bc66ca8059a4dcbd5b18681d6c54ea98f5915", "fields": {"departement": "94", "stop_lat": 48.84730570822294, "code_postal": "94033", "stop_lon": 2.486109414707005, "coord": [48.84730570822294, 2.486109414707005], "stop_id": 3685890, "stop_desc": "AVENUE DE NEUILLY - 94033", "stop_name": "HOCHE"}, "geometry": {"type": "Point", "coordinates": [2.486109414707005, 48.84730570822294]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "64be2b6c068e7181807e6cd7c615df3c03f95e3a", "fields": {"departement": "93", "stop_lat": 48.87103141482069, "code_postal": "93064", "stop_lon": 2.4869949642615246, "coord": [48.87103141482069, 2.4869949642615246], "stop_id": 3683584, "stop_desc": "7 RUE DU GENERAL LECLERC - 93064", "stop_name": "MAIRIE - ROSNY-SOUS-BOIS RER"}, "geometry": {"type": "Point", "coordinates": [2.4869949642615246, 48.87103141482069]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "42e8edee06902c82b521ebd1bb17acffe6fcc992", "fields": {"departement": "93", "stop_lat": 48.870449992779264, "code_postal": "93064", "stop_lon": 2.484786235477952, "coord": [48.870449992779264, 2.484786235477952], "stop_id": 3685721, "stop_desc": "26 AVENUE DE LA REPUBLIQUE - 93064", "stop_name": "ROSNY-SOUS-BOIS RER"}, "geometry": {"type": "Point", "coordinates": [2.484786235477952, 48.870449992779264]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b2bef00931e2b67f7ee39c3a388433d8b5e91cbe", "fields": {"departement": "93", "stop_lat": 48.860568468376464, "code_postal": "93048", "stop_lon": 2.481025924558556, "coord": [48.860568468376464, 2.481025924558556], "stop_id": 3685730, "stop_desc": "261 AVENUE VICTOR HUGO - 93048", "stop_name": "CIMETIERE DE VINCENNES"}, "geometry": {"type": "Point", "coordinates": [2.481025924558556, 48.860568468376464]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b5c012e46e9d92f40bc6ee98dbcb341fddd321a9", "fields": {"departement": "94", "stop_lat": 48.85287232679907, "code_postal": "94033", "stop_lon": 2.467930214706656, "coord": [48.85287232679907, 2.467930214706656], "stop_id": 3685697, "stop_desc": "243 AVENUE DE LA REPUBLIQUE - 94033", "stop_name": "ANDRE TESSIER"}, "geometry": {"type": "Point", "coordinates": [2.467930214706656, 48.85287232679907]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8f160693aae3bb85d30bb6c459e70da5ba1ea084", "fields": {"departement": "94", "stop_lat": 48.85241681373307, "code_postal": "94033", "stop_lon": 2.4810578052880423, "coord": [48.85241681373307, 2.4810578052880423], "stop_id": 3685702, "stop_desc": "AVENUE DU MARECHAL JOFFRE - 94033", "stop_name": "CHARLES GARCIA"}, "geometry": {"type": "Point", "coordinates": [2.4810578052880423, 48.85241681373307]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "86ed4dea832a3b445b3ff7061fa17fcc509cc7fe", "fields": {"departement": "94", "stop_lat": 48.85264181207475, "code_postal": "94033", "stop_lon": 2.480799666496932, "coord": [48.85264181207475, 2.480799666496932], "stop_id": 3685703, "stop_desc": "AVENUE DU MARECHAL JOFFRE - 94033", "stop_name": "CHARLES GARCIA"}, "geometry": {"type": "Point", "coordinates": [2.480799666496932, 48.85264181207475]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e7d0657b619352ceeabc94fe01bd1a3ffeb85f93", "fields": {"departement": "94", "stop_lat": 48.84747432213174, "code_postal": "94080", "stop_lon": 2.44664573687921, "coord": [48.84747432213174, 2.44664573687921], "stop_id": 3685687, "stop_desc": "23 BOULEVARD DE LA LIBERATION - 94080", "stop_name": "LIBERATION"}, "geometry": {"type": "Point", "coordinates": [2.44664573687921, 48.84747432213174]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bd24c7649277a2b073df7d84b9cc9a1cd933de08", "fields": {"departement": "94", "stop_lat": 48.848012935844636, "code_postal": "94080", "stop_lon": 2.437141607802347, "coord": [48.848012935844636, 2.437141607802347], "stop_id": 3685683, "stop_desc": "34 AVENUE DU CHATEAU - 94080", "stop_name": "VINCENNES RER"}, "geometry": {"type": "Point", "coordinates": [2.437141607802347, 48.848012935844636]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2ad1bf94be4bbcd0961f670044ede59506b2206b", "fields": {"departement": "93", "stop_lat": 48.86771764314497, "code_postal": "93064", "stop_lon": 2.48494193783217, "coord": [48.86771764314497, 2.48494193783217], "stop_id": 3685718, "stop_desc": "AVENUE DE LA REPUBLIQUE - 93064", "stop_name": "MEDERIC"}, "geometry": {"type": "Point", "coordinates": [2.48494193783217, 48.86771764314497]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "da832a6145699ea61e3bda4339bb4b93746cfd81", "fields": {"departement": "93", "stop_lat": 48.872786016638045, "code_postal": "93064", "stop_lon": 2.485337857755734, "coord": [48.872786016638045, 2.485337857755734], "stop_id": 3685722, "stop_desc": "33 RUE PAUL CAVARE - 93064", "stop_name": "COPERNIC"}, "geometry": {"type": "Point", "coordinates": [2.485337857755734, 48.872786016638045]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ca7aac37b1e3edf18333b83005a4b835f3ce0725", "fields": {"departement": "94", "stop_lat": 48.835945431006095, "code_postal": "94052", "stop_lon": 2.4709645048297553, "coord": [48.835945431006095, 2.4709645048297553], "stop_id": 3686064, "stop_desc": "FACE 7-9 AV GEORGES CLEMENCEAU - 94052", "stop_name": "NOGENT-SUR-MARNE RER - PIERRE SEMARD"}, "geometry": {"type": "Point", "coordinates": [2.4709645048297553, 48.835945431006095]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6763d531462e98f55af3ff717821ee7193d31def", "fields": {"departement": "94", "stop_lat": 48.81511443980852, "code_postal": "94046", "stop_lon": 2.4185153167345823, "coord": [48.81511443980852, 2.4185153167345823], "stop_id": 3686376, "stop_desc": "FACE 17 RUE EUGENE RENAULT - 94046", "stop_name": "MAISONS-ALFORT - ECOLE VETERINAIRE"}, "geometry": {"type": "Point", "coordinates": [2.4185153167345823, 48.81511443980852]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9bbd85f7debe3df3c3bebae78b46ef11668742d7", "fields": {"departement": "94", "stop_lat": 48.76485983092463, "code_postal": "94021", "stop_lon": 2.3679817560300678, "coord": [48.76485983092463, 2.3679817560300678], "stop_id": 3686363, "stop_desc": "AVENUE DE STALINGRAD - 94021", "stop_name": "CIMETIERE PARISIEN DE THIAIS"}, "geometry": {"type": "Point", "coordinates": [2.3679817560300678, 48.76485983092463]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a7a1221dd46b529081df2280aef6fe9bcf2b59e4", "fields": {"departement": "94", "stop_lat": 48.80393001308312, "code_postal": "94002", "stop_lon": 2.4236682016103535, "coord": [48.80393001308312, 2.4236682016103535], "stop_id": 3686388, "stop_desc": "71-73 RUE VICTOR HUGO - 94002", "stop_name": "RAYMOND JACLARD"}, "geometry": {"type": "Point", "coordinates": [2.4236682016103535, 48.80393001308312]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f0bbf11d01f44ad4fa5a3fe833ab0a4b69d1ecfb", "fields": {"departement": "94", "stop_lat": 48.781627104512765, "code_postal": "94002", "stop_lon": 2.4289216711576915, "coord": [48.781627104512765, 2.4289216711576915], "stop_id": 3686406, "stop_desc": "CHEMIN DE VILLENEUVE - 94002", "stop_name": "VAL DE SEINE"}, "geometry": {"type": "Point", "coordinates": [2.4289216711576915, 48.781627104512765]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ebd8e909154b94e0fd9913f191b392f2e4f654f4", "fields": {"departement": "94", "stop_lat": 48.770277053995144, "code_postal": "94022", "stop_lon": 2.4136316773726927, "coord": [48.770277053995144, 2.4136316773726927], "stop_id": 3686416, "stop_desc": "38 AVENUE D'ALFORTVILLE - 94022", "stop_name": "JEAN VILAR"}, "geometry": {"type": "Point", "coordinates": [2.4136316773726927, 48.770277053995144]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f5db9cd82ced265986c27f5114736ab1f39d70d5", "fields": {"departement": "94", "stop_lat": 48.81416484468923, "code_postal": "94002", "stop_lon": 2.413832343472165, "coord": [48.81416484468923, 2.413832343472165], "stop_id": 3686378, "stop_desc": "24 R VERON - 94002", "stop_name": "GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.413832343472165, 48.81416484468923]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0a8eb33717cf34341fbedb3b1d8c32c1c3ca0dbc", "fields": {"departement": "94", "stop_lat": 48.76432242204478, "code_postal": "94022", "stop_lon": 2.406335512595289, "coord": [48.76432242204478, 2.406335512595289], "stop_id": 3686422, "stop_desc": "7 AV GAMBETTA - 94022", "stop_name": "ROUGET DE LISLE"}, "geometry": {"type": "Point", "coordinates": [2.406335512595289, 48.76432242204478]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "62cb407dba13bc31072c2f8a28b2d4db9db4fc91", "fields": {"departement": "94", "stop_lat": 48.84394043593739, "code_postal": "94058", "stop_lon": 2.502712259635843, "coord": [48.84394043593739, 2.502712259635843], "stop_id": 3683563, "stop_desc": "142 AVENUE DU GENERAL DE GAULLE - 94058", "stop_name": "LEDRU-ROLLIN - GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.502712259635843, 48.84394043593739]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "745c3fbcb20b69c02c39809c8aaf7a3c28dfda45", "fields": {"departement": "94", "stop_lat": 48.82416747810293, "code_postal": "94017", "stop_lon": 2.4962653708220754, "coord": [48.82416747810293, 2.4962653708220754], "stop_id": 3683557, "stop_desc": "202 BOULEVARD DE STALINGRAD - 94017", "stop_name": "GENERAL DE GAULLE - STALINGRAD"}, "geometry": {"type": "Point", "coordinates": [2.4962653708220754, 48.82416747810293]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f8cfb58f4f13cb7ea4ac240091fef229bb612494", "fields": {"departement": "94", "stop_lat": 48.85228075608887, "code_postal": "94033", "stop_lon": 2.489296917423076, "coord": [48.85228075608887, 2.489296917423076], "stop_id": 3683570, "stop_desc": "AVENUE LOUISON BOBET - 94033", "stop_name": "VAL DE FONTENAY RER - LOUISON BOBET"}, "geometry": {"type": "Point", "coordinates": [2.489296917423076, 48.85228075608887]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a7660419bacffcec9fd8a60835521d908c9aa8fe", "fields": {"departement": "93", "stop_lat": 48.86016161917201, "code_postal": "93049", "stop_lon": 2.503594897486891, "coord": [48.86016161917201, 2.503594897486891], "stop_id": 3683576, "stop_desc": "14 BIS AVENUE GEORGES CLEMENCEAU - 93049", "stop_name": "BOUREAU - GUERINIERE"}, "geometry": {"type": "Point", "coordinates": [2.503594897486891, 48.86016161917201]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5d5d6b25e9d7a76d6f85404f1ad39353f7ade4ca", "fields": {"departement": "94", "stop_lat": 48.85278739661655, "code_postal": "94033", "stop_lon": 2.486656292388775, "coord": [48.85278739661655, 2.486656292388775], "stop_id": 3683569, "stop_desc": "2-4 AVENUE DU VAL DE FONTENAY - 94033", "stop_name": "VAL-DE-FONTENAY RER"}, "geometry": {"type": "Point", "coordinates": [2.486656292388775, 48.85278739661655]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bcf3bfaeec235c08ce413e808dae36b47e566a24", "fields": {"departement": "94", "stop_lat": 48.82961792713526, "code_postal": "94017", "stop_lon": 2.493300815393294, "coord": [48.82961792713526, 2.493300815393294], "stop_id": 3683559, "stop_desc": "264 BOULEVARD DE STALINGRAD - 94017", "stop_name": "PIERRE BROSSOLETTE"}, "geometry": {"type": "Point", "coordinates": [2.493300815393294, 48.82961792713526]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "27be274b9f4e4ac60a3088e4f5a807502ee3402f", "fields": {"departement": "94", "stop_lat": 48.84794885081316, "code_postal": "94033", "stop_lon": 2.4892433667389224, "coord": [48.84794885081316, 2.4892433667389224], "stop_id": 3683566, "stop_desc": "85 AVENUE DE NEUILLY - 94033", "stop_name": "LYCEE LOUIS ARMAND"}, "geometry": {"type": "Point", "coordinates": [2.4892433667389224, 48.84794885081316]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a43cd40184111a26b8e2cef4be7bb32f796c9310", "fields": {"departement": "94", "stop_lat": 48.82131695057167, "code_postal": "94017", "stop_lon": 2.5101805593489552, "coord": [48.82131695057167, 2.5101805593489552], "stop_id": 3683553, "stop_desc": "FACE 3 BOULEVARD GABRIEL PERI - 94017", "stop_name": "CITES JARDINS"}, "geometry": {"type": "Point", "coordinates": [2.5101805593489552, 48.82131695057167]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4a2a0e47572086028a8d119497300b745282c7c7", "fields": {"departement": "94", "stop_lat": 48.85714942914498, "code_postal": "94058", "stop_lon": 2.5045931369109815, "coord": [48.85714942914498, 2.5045931369109815], "stop_id": 3683575, "stop_desc": "122 AVENUE LAMARTINE - 94058", "stop_name": "DANIELLE CASANOVA"}, "geometry": {"type": "Point", "coordinates": [2.5045931369109815, 48.85714942914498]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9491746bc1792b5ec37cb0b6ba3b53671ffbb686", "fields": {"departement": "93", "stop_lat": 48.86297552247139, "code_postal": "93049", "stop_lon": 2.5029909422821266, "coord": [48.86297552247139, 2.5029909422821266], "stop_id": 3683578, "stop_desc": "17 AVENUE DU MARECHAL FOCH - 93049", "stop_name": "CARNOT"}, "geometry": {"type": "Point", "coordinates": [2.5029909422821266, 48.86297552247139]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "31f8b837b27a02202aed9a01794bbb9b75cc8313", "fields": {"departement": "94", "stop_lat": 48.81511443980852, "code_postal": "94046", "stop_lon": 2.4185153167345823, "coord": [48.81511443980852, 2.4185153167345823], "stop_id": 3686301, "stop_desc": "FACE 17 RUE EUGENE RENAULT - 94046", "stop_name": "MAISONS-ALFORT - ECOLE VETERINAIRE"}, "geometry": {"type": "Point", "coordinates": [2.4185153167345823, 48.81511443980852]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2dc51d2ac59cbe788737de913a861730e7f17db2", "fields": {"departement": "94", "stop_lat": 48.80253557408905, "code_postal": "94002", "stop_lon": 2.4254754689207894, "coord": [48.80253557408905, 2.4254754689207894], "stop_id": 3686314, "stop_desc": "16 AV MALLERET JOINVILLE - 94002", "stop_name": "MAISONS-ALFORT - ALFORTVILLE RER"}, "geometry": {"type": "Point", "coordinates": [2.4254754689207894, 48.80253557408905]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "40ea6ffef35f0bddec3b79253481fa0d54666ea4", "fields": {"departement": "94", "stop_lat": 48.80491267239551, "code_postal": "94002", "stop_lon": 2.4194518071316327, "coord": [48.80491267239551, 2.4194518071316327], "stop_id": 3686311, "stop_desc": "FACE 168 RUE PAUL VAILLANT COUTURIER - 94002", "stop_name": "MAIRIE D'ALFORTVILLE"}, "geometry": {"type": "Point", "coordinates": [2.4194518071316327, 48.80491267239551]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "946fbadfe074623588875b6a16cf979d13ce1856", "fields": {"departement": "94", "stop_lat": 48.84272630714998, "code_postal": "94058", "stop_lon": 2.5032938963627904, "coord": [48.84272630714998, 2.5032938963627904], "stop_id": 3686072, "stop_desc": "2 R DE LA STATION - 94058", "stop_name": "LEDRU ROLLIN - GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.5032938963627904, 48.84272630714998]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f8e4ffc324236250a1c3a1624ed7cf176ea31329", "fields": {"departement": "93", "stop_lat": 48.85551623837613, "code_postal": "93050", "stop_lon": 2.526897183997044, "coord": [48.85551623837613, 2.526897183997044], "stop_id": 3685957, "stop_desc": "38 BOULEVARD DU MARECHAL FOCH - 93050", "stop_name": "FOCH - DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.526897183997044, 48.85551623837613]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6298ed73d74c9d5b0c6d963f638ecdfe282e51aa", "fields": {"departement": "94", "stop_lat": 48.81050478489195, "code_postal": "94002", "stop_lon": 2.4169431792660587, "coord": [48.81050478489195, 2.4169431792660587], "stop_id": 3686306, "stop_desc": "85-87 RUE VAILLANT COUTURIER - 94002", "stop_name": "RUE DE SEINE"}, "geometry": {"type": "Point", "coordinates": [2.4169431792660587, 48.81050478489195]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b58ce66ca8b54157097db1c912bfd3016c0ed185", "fields": {"departement": "94", "stop_lat": 48.83971417428451, "code_postal": "94015", "stop_lon": 2.522455164631506, "coord": [48.83971417428451, 2.522455164631506], "stop_id": 3686082, "stop_desc": "4 BIS BOULEVARD DU GENERAL GALLIENI - 94015", "stop_name": "CHATEAU"}, "geometry": {"type": "Point", "coordinates": [2.522455164631506, 48.83971417428451]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f6d5ccae697b321a0412fd3f326a37f1faf5c854", "fields": {"departement": "93", "stop_lat": 48.85831643344756, "code_postal": "93050", "stop_lon": 2.5348209878560497, "coord": [48.85831643344756, 2.5348209878560497], "stop_id": 3685962, "stop_desc": "118 AVENUE DU GENERAL DE GAULLE - 93050", "stop_name": "PASTEUR"}, "geometry": {"type": "Point", "coordinates": [2.5348209878560497, 48.85831643344756]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d48bb3f2b4023c9163cfd2c349d906cc12f5143f", "fields": {"departement": "93", "stop_lat": 48.86217223748995, "code_postal": "93049", "stop_lon": 2.498929140064213, "coord": [48.86217223748995, 2.498929140064213], "stop_id": 3685944, "stop_desc": "4-6 RUE POULET LANGLET - 93049", "stop_name": "EUGENE SUE"}, "geometry": {"type": "Point", "coordinates": [2.498929140064213, 48.86217223748995]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f98dfe650e75bee2deb86cc957cb2643b3d88713", "fields": {"departement": "94", "stop_lat": 48.81416484468923, "code_postal": "94002", "stop_lon": 2.413832343472165, "coord": [48.81416484468923, 2.413832343472165], "stop_id": 3686303, "stop_desc": "24 R VERON - 94002", "stop_name": "GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.413832343472165, 48.81416484468923]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3c6e55581198af56e2021686218892b80def3e9e", "fields": {"departement": "93", "stop_lat": 48.87379559973046, "code_postal": "93064", "stop_lon": 2.4829019304695374, "coord": [48.87379559973046, 2.4829019304695374], "stop_id": 3685838, "stop_desc": "4 RUE DU GENERAL GALLIENI - 93064", "stop_name": "EGLISE DE ROSNY-SOUS-BOIS"}, "geometry": {"type": "Point", "coordinates": [2.4829019304695374, 48.87379559973046]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "65ac968fa0fc82d5ad02014030d1bf2dcefde304", "fields": {"departement": "94", "stop_lat": 48.852897355111516, "code_postal": "94033", "stop_lon": 2.477531777569187, "coord": [48.852897355111516, 2.477531777569187], "stop_id": 3685810, "stop_desc": "FACE 80 AVENUE DU MARECHAL JOFFRE - 94033", "stop_name": "DANIELLE CASANOVA"}, "geometry": {"type": "Point", "coordinates": [2.477531777569187, 48.852897355111516]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b96acb0f4fad178200723db0a38059972c0a3122", "fields": {"departement": "93", "stop_lat": 48.860568468376464, "code_postal": "93048", "stop_lon": 2.481025924558556, "coord": [48.860568468376464, 2.481025924558556], "stop_id": 3685840, "stop_desc": "261 AVENUE VICTOR HUGO - 93048", "stop_name": "CIMETIERE DE VINCENNES"}, "geometry": {"type": "Point", "coordinates": [2.481025924558556, 48.860568468376464]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "94020d164609e23e8f26b7d12af6545a3f0b50e9", "fields": {"departement": "94", "stop_lat": 48.85273572537729, "code_postal": "94033", "stop_lon": 2.4774087684695574, "coord": [48.85273572537729, 2.4774087684695574], "stop_id": 3685809, "stop_desc": "80 AV DU MARECHAL JOFFRE - 94033", "stop_name": "DANIELLE CASANOVA"}, "geometry": {"type": "Point", "coordinates": [2.4774087684695574, 48.85273572537729]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8732a6786cf5cd05ac6b8690b1a4f901344c9d2b", "fields": {"departement": "93", "stop_lat": 48.876014031647024, "code_postal": "93064", "stop_lon": 2.4765860591946764, "coord": [48.876014031647024, 2.4765860591946764], "stop_id": 3685837, "stop_desc": "RUE JULES FERRY - 93064", "stop_name": "NANTEUIL ZI - JULES FERRY"}, "geometry": {"type": "Point", "coordinates": [2.4765860591946764, 48.876014031647024]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "43cd2a0aec7616fb08374c4496252eb179585e5c", "fields": {"departement": "94", "stop_lat": 48.853160988206504, "code_postal": "94033", "stop_lon": 2.458424729814948, "coord": [48.853160988206504, 2.458424729814948], "stop_id": 3685802, "stop_desc": "95 AVENUE DE LA REPUBLIQUE - 94033", "stop_name": "ANDRE LAURENT"}, "geometry": {"type": "Point", "coordinates": [2.458424729814948, 48.853160988206504]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bca5e8e82a9bd1c02e714ae60623a7bd1b3dde78", "fields": {"departement": "94", "stop_lat": 48.850026084738296, "code_postal": "94033", "stop_lon": 2.4567151078138254, "coord": [48.850026084738296, 2.4567151078138254], "stop_id": 3685800, "stop_desc": "2 AVENUE DE LA REPUBLIQUE - 94033", "stop_name": "LES RIGOLLOTS"}, "geometry": {"type": "Point", "coordinates": [2.4567151078138254, 48.850026084738296]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5cd1b5382cfa48929cc3f4bd63688c014bcffe6e", "fields": {"departement": "93", "stop_lat": 48.86284092235296, "code_postal": "93048", "stop_lon": 2.482149209358743, "coord": [48.86284092235296, 2.482149209358743], "stop_id": 3685839, "stop_desc": "289 BIS AVENUE VICTOR HUGO - 93048", "stop_name": "JULES GUESDE"}, "geometry": {"type": "Point", "coordinates": [2.482149209358743, 48.86284092235296]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c5382d8c32b6e6aec1b494ae89196b3eaca1110f", "fields": {"departement": "94", "stop_lat": 48.84683591626402, "code_postal": "94080", "stop_lon": 2.4367308149123965, "coord": [48.84683591626402, 2.4367308149123965], "stop_id": 3685864, "stop_desc": "33 AVENUE DU CHATEAU - 94080", "stop_name": "VINCENNES RER"}, "geometry": {"type": "Point", "coordinates": [2.4367308149123965, 48.84683591626402]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5ee438c6f7d41141a470d35e1e4af59dd02e8a62", "fields": {"departement": "93", "stop_lat": 48.864960593180605, "code_postal": "93064", "stop_lon": 2.4832585401096465, "coord": [48.864960593180605, 2.4832585401096465], "stop_id": 3685826, "stop_desc": "114 AVENUE DE LA REPUBLIQUE - 93064", "stop_name": "DIDEROT"}, "geometry": {"type": "Point", "coordinates": [2.4832585401096465, 48.864960593180605]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "def5baa9daa197d0b33fc0bf6360639148df5a45", "fields": {"departement": "94", "stop_lat": 48.78205591032208, "code_postal": "94002", "stop_lon": 2.4202452695843597, "coord": [48.78205591032208, 2.4202452695843597], "stop_id": 3686332, "stop_desc": "3 ROUTE DE LA DIGUE D'ALFORTVILLE - 94002", "stop_name": "DIGUE-REVOLUTION"}, "geometry": {"type": "Point", "coordinates": [2.4202452695843597, 48.78205591032208]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "af7f76ebad0685d2c84061d15eba5422f2f79031", "fields": {"departement": "94", "stop_lat": 48.767093813147845, "code_postal": "94073", "stop_lon": 2.3809270768602055, "coord": [48.767093813147845, 2.3809270768602055], "stop_id": 3686359, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 94073", "stop_name": "GRANDS CHAMPS"}, "geometry": {"type": "Point", "coordinates": [2.3809270768602055, 48.767093813147845]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cb399cf9a7e68a74a6d770b1bec922af1781f0de", "fields": {"departement": "94", "stop_lat": 48.76737347256756, "code_postal": "94022", "stop_lon": 2.4143072447805944, "coord": [48.76737347256756, 2.4143072447805944], "stop_id": 3686343, "stop_desc": "FACE 5 AVENUE D'ALFORTVILLE - 94022", "stop_name": "PONT DE CHOISY"}, "geometry": {"type": "Point", "coordinates": [2.4143072447805944, 48.76737347256756]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9c2105a04211946d78dfa355b28e7451c86e88c5", "fields": {"departement": "94", "stop_lat": 48.76456332374457, "code_postal": "94073", "stop_lon": 2.392549510379606, "coord": [48.76456332374457, 2.392549510379606], "stop_id": 3686352, "stop_desc": "72 AVENUE RENE PANHARD - 94073", "stop_name": "MAIRIE DE THIAIS"}, "geometry": {"type": "Point", "coordinates": [2.392549510379606, 48.76456332374457]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d21ec0372ab5251c5af9f883b83aa0a244c0bf49", "fields": {"departement": "94", "stop_lat": 48.765524735623956, "code_postal": "94022", "stop_lon": 2.409844938920653, "coord": [48.765524735623956, 2.409844938920653], "stop_id": 3686345, "stop_desc": "AVENUE JEAN JAURES - 94022", "stop_name": "CHOISY-LE-ROI RER"}, "geometry": {"type": "Point", "coordinates": [2.409844938920653, 48.765524735623956]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "85fa0b645c399f3ec9d8f7d67cb48a404eb4005d", "fields": {"departement": "94", "stop_lat": 48.78651893887328, "code_postal": "94002", "stop_lon": 2.425774703668473, "coord": [48.78651893887328, 2.425774703668473], "stop_id": 3686326, "stop_desc": "140-142 RUE ETIENNE DOLET - 94002", "stop_name": "SAN BENEDETTO"}, "geometry": {"type": "Point", "coordinates": [2.425774703668473, 48.78651893887328]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3d748477d4a936a27e4ef9db7aa9798785bf79c7", "fields": {"departement": "94", "stop_lat": 48.79513870946367, "code_postal": "94002", "stop_lon": 2.4252860502076823, "coord": [48.79513870946367, 2.4252860502076823], "stop_id": 3686320, "stop_desc": "52 BIS RUE ETIENNE DOLET - 94002", "stop_name": "ACHTARAK"}, "geometry": {"type": "Point", "coordinates": [2.4252860502076823, 48.79513870946367]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "03a95193304d300eebf03874ad1c1d868c8d65bc", "fields": {"departement": "94", "stop_lat": 48.763057563786816, "code_postal": "94022", "stop_lon": 2.401956052432323, "coord": [48.763057563786816, 2.401956052432323], "stop_id": 3686349, "stop_desc": "37 AVENUE GAMBETTA - 94022", "stop_name": "RENE PANHARD"}, "geometry": {"type": "Point", "coordinates": [2.401956052432323, 48.763057563786816]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fcfc7f8541f73006e65008f564042356adf8ac58", "fields": {"departement": "94", "stop_lat": 48.78232844812767, "code_postal": "94002", "stop_lon": 2.4285556918131372, "coord": [48.78232844812767, 2.4285556918131372], "stop_id": 3686330, "stop_desc": "RUE ETIENNE DOLET - 94002", "stop_name": "VAL DE SEINE"}, "geometry": {"type": "Point", "coordinates": [2.4285556918131372, 48.78232844812767]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "50c93484269dfd2ade41a3704cebae296e394324", "fields": {"departement": "94", "stop_lat": 48.79279273202777, "code_postal": "94002", "stop_lon": 2.4254725205040106, "coord": [48.79279273202777, 2.4254725205040106], "stop_id": 3686322, "stop_desc": "72 RUE ETIENNE DOLET - 94002", "stop_name": "ROSES"}, "geometry": {"type": "Point", "coordinates": [2.4254725205040106, 48.79279273202777]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d7a239bb7e5c628501f96b57ec153aa33ac26232", "fields": {"departement": "94", "stop_lat": 48.85273572537729, "code_postal": "94033", "stop_lon": 2.4774087684695574, "coord": [48.85273572537729, 2.4774087684695574], "stop_id": 3685754, "stop_desc": "80 AV DU MARECHAL JOFFRE - 94033", "stop_name": "DANIELLE CASANOVA"}, "geometry": {"type": "Point", "coordinates": [2.4774087684695574, 48.85273572537729]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7a25051cc1e92840a671c05a5eff0cf8e8e7ec42", "fields": {"departement": "75", "stop_lat": 48.84408977596744, "code_postal": "75112", "stop_lon": 2.4424854671358247, "coord": [48.84408977596744, 2.4424854671358247], "stop_id": 3685734, "stop_desc": "PISTE GARE ROUTIERE - 75112", "stop_name": "CHATEAU DE VINCENNES"}, "geometry": {"type": "Point", "coordinates": [2.4424854671358247, 48.84408977596744]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cc51739eaa2cfdb69099542e9d32046deddaea28", "fields": {"departement": "94", "stop_lat": 48.853160988206504, "code_postal": "94033", "stop_lon": 2.458424729814948, "coord": [48.853160988206504, 2.458424729814948], "stop_id": 3685747, "stop_desc": "95 AVENUE DE LA REPUBLIQUE - 94033", "stop_name": "ANDRE LAURENT"}, "geometry": {"type": "Point", "coordinates": [2.458424729814948, 48.853160988206504]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2d3a624579efb6fa9a605ce4ed86265207a6aebf", "fields": {"departement": "94", "stop_lat": 48.8446246823592, "code_postal": "94080", "stop_lon": 2.437094232812113, "coord": [48.8446246823592, 2.437094232812113], "stop_id": 3685736, "stop_desc": "FACE 10 AVENUE DE PARIS - 94080", "stop_name": "AVENUE DU CHATEAU"}, "geometry": {"type": "Point", "coordinates": [2.437094232812113, 48.8446246823592]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e81133595e0c51b7a61de47447b0d68bcec9b21a", "fields": {"departement": "94", "stop_lat": 48.84747432213174, "code_postal": "94080", "stop_lon": 2.44664573687921, "coord": [48.84747432213174, 2.44664573687921], "stop_id": 3685741, "stop_desc": "23 BOULEVARD DE LA LIBERATION - 94080", "stop_name": "LIBERATION"}, "geometry": {"type": "Point", "coordinates": [2.44664573687921, 48.84747432213174]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "81008d18c7e451cbd94db9aa3bee67d761a3f68a", "fields": {"departement": "94", "stop_lat": 48.848012935844636, "code_postal": "94080", "stop_lon": 2.437141607802347, "coord": [48.848012935844636, 2.437141607802347], "stop_id": 3685737, "stop_desc": "34 AVENUE DU CHATEAU - 94080", "stop_name": "VINCENNES RER"}, "geometry": {"type": "Point", "coordinates": [2.437141607802347, 48.848012935844636]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a7ccaea7325f409ae14964db1a55781f69bd7aa9", "fields": {"departement": "94", "stop_lat": 48.848012935844636, "code_postal": "94080", "stop_lon": 2.437141607802347, "coord": [48.848012935844636, 2.437141607802347], "stop_id": 3685792, "stop_desc": "34 AVENUE DU CHATEAU - 94080", "stop_name": "VINCENNES RER"}, "geometry": {"type": "Point", "coordinates": [2.437141607802347, 48.848012935844636]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7506be8562c17fa23857445b5e7647f4fd126be2", "fields": {"departement": "94", "stop_lat": 48.852562149777675, "code_postal": "94033", "stop_lon": 2.4638709537730135, "coord": [48.852562149777675, 2.4638709537730135], "stop_id": 3685749, "stop_desc": "191 AVENUE DE LA REPUBLIQUE - 94033", "stop_name": "DANTON"}, "geometry": {"type": "Point", "coordinates": [2.4638709537730135, 48.852562149777675]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0c6bfaad4f333bd249c7a55e224d1e6e5fd705fe", "fields": {"departement": "92", "stop_lat": 48.79487014521604, "code_postal": "92032", "stop_lon": 2.2805263725178766, "coord": [48.79487014521604, 2.2805263725178766], "stop_id": 3909122, "stop_desc": "R ANDRE SALEL - 92032", "stop_name": "PERVENCHES"}, "geometry": {"type": "Point", "coordinates": [2.2805263725178766, 48.79487014521604]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fac89efd6416eb3a61345bfc6bffc10d893ad15e", "fields": {"departement": "92", "stop_lat": 48.77706941107186, "code_postal": "92060", "stop_lon": 2.2445757847034695, "coord": [48.77706941107186, 2.2445757847034695], "stop_id": 3909815, "stop_desc": "10 AVENUE DESCARTES - 92060", "stop_name": "GALILEE"}, "geometry": {"type": "Point", "coordinates": [2.2445757847034695, 48.77706941107186]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eb9310d570dafe5fc12db14b68e7b9fd452051ac", "fields": {"departement": "92", "stop_lat": 48.77689031129291, "code_postal": "92060", "stop_lon": 2.2579169280257254, "coord": [48.77689031129291, 2.2579169280257254], "stop_id": 3909818, "stop_desc": "AVENUE CHARLES DE GAULLE - 92060", "stop_name": "CITE JARDINS - PLACE DES ALLIES"}, "geometry": {"type": "Point", "coordinates": [2.2579169280257254, 48.77689031129291]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ac53008a0bbed31265ddf3853e365ec5a0a4df8d", "fields": {"departement": "92", "stop_lat": 48.77896801359053, "code_postal": "92060", "stop_lon": 2.260157713740714, "coord": [48.77896801359053, 2.260157713740714], "stop_id": 3909821, "stop_desc": "AVENUE CHARLES DE GAULLE - 92060", "stop_name": "RESISTANCE"}, "geometry": {"type": "Point", "coordinates": [2.260157713740714, 48.77896801359053]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a92fa49894cec1f69ad8614fb739add776bef87d", "fields": {"departement": "92", "stop_lat": 48.77974342139406, "code_postal": "92071", "stop_lon": 2.28046129206943, "coord": [48.77974342139406, 2.28046129206943], "stop_id": 3909828, "stop_desc": "FACE 3 AV DU PLESSIS - 92071", "stop_name": "ROBINSON RER"}, "geometry": {"type": "Point", "coordinates": [2.28046129206943, 48.77974342139406]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "06b89ecc5b1fc1d9d1a73b59de582e19af3233e1", "fields": {"departement": "92", "stop_lat": 48.776711452918306, "code_postal": "92060", "stop_lon": 2.2466026986059076, "coord": [48.776711452918306, 2.2466026986059076], "stop_id": 3909831, "stop_desc": "7 AVENUE DESCARTES - 92060", "stop_name": "GALILEE"}, "geometry": {"type": "Point", "coordinates": [2.2466026986059076, 48.776711452918306]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c2bbf187e786db0c2f682d367a48cea054f0b64d", "fields": {"departement": "75", "stop_lat": 48.84420733285396, "code_postal": "75112", "stop_lon": 2.4416686940517773, "coord": [48.84420733285396, 2.4416686940517773], "stop_id": 3922294, "stop_desc": "AVENUE DE NOGENT - 75112", "stop_name": "CHATEAU DE VINCENNES"}, "geometry": {"type": "Point", "coordinates": [2.4416686940517773, 48.84420733285396]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d90fd64f819781420385da3026ac5bb3e13fd716", "fields": {"departement": "94", "stop_lat": 48.835945431006095, "code_postal": "94052", "stop_lon": 2.4709645048297553, "coord": [48.835945431006095, 2.4709645048297553], "stop_id": 3922297, "stop_desc": "FACE 7-9 AV GEORGES CLEMENCEAU - 94052", "stop_name": "NOGENT-SUR-MARNE RER - PIERRE SEMARD"}, "geometry": {"type": "Point", "coordinates": [2.4709645048297553, 48.835945431006095]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "092490aa6c0fdbef3c0a2081d35a595d31126053", "fields": {"departement": "94", "stop_lat": 48.83615702610112, "code_postal": "94052", "stop_lon": 2.482156379329326, "coord": [48.83615702610112, 2.482156379329326], "stop_id": 3922300, "stop_desc": "FACE AVENUE DE LATTRE DE TASSIGNY - 94052", "stop_name": "SOUS-PREFECTURE - JULES FERRY"}, "geometry": {"type": "Point", "coordinates": [2.482156379329326, 48.83615702610112]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "20d5f87b3a4f3421da4a94a45fcbd9419a75eb32", "fields": {"departement": "94", "stop_lat": 48.84272630714998, "code_postal": "94058", "stop_lon": 2.5032938963627904, "coord": [48.84272630714998, 2.5032938963627904], "stop_id": 3922305, "stop_desc": "2 R DE LA STATION - 94058", "stop_name": "LEDRU ROLLIN - GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.5032938963627904, 48.84272630714998]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1d402a37cd9368a56792be50438c7155a34cd42a", "fields": {"departement": "94", "stop_lat": 48.84462471993193, "code_postal": "94015", "stop_lon": 2.526053965223131, "coord": [48.84462471993193, 2.526053965223131], "stop_id": 3922317, "stop_desc": "BD DU GENERAL GALLIENI - 94015", "stop_name": "BRY-SUR-MARNE RER"}, "geometry": {"type": "Point", "coordinates": [2.526053965223131, 48.84462471993193]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f215126d12f7b0229a814a4f3a103071a3450de3", "fields": {"departement": "75", "stop_lat": 48.88135058192774, "code_postal": "75117", "stop_lon": 2.285010280750466, "coord": [48.88135058192774, 2.285010280750466], "stop_id": 3926134, "stop_desc": "1 BOULEVARD PERSHING - 75117", "stop_name": "GENERAL KOENING - PALAIS DES CONGRES"}, "geometry": {"type": "Point", "coordinates": [2.285010280750466, 48.88135058192774]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "150ee0b33eb4f999c281d5439bd1978a75fb4409", "fields": {"departement": "75", "stop_lat": 48.88113503083954, "code_postal": "75117", "stop_lon": 2.285337535175961, "coord": [48.88113503083954, 2.285337535175961], "stop_id": 3926135, "stop_desc": "48 BOULEVARD GOUVION-SAINT-CYR - 75117", "stop_name": "GENERAL KOENING - PALAIS DES CONGRES"}, "geometry": {"type": "Point", "coordinates": [2.285337535175961, 48.88113503083954]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7f26f37547d9bc7686e6639296da6cd5e2e611a7", "fields": {"departement": "75", "stop_lat": 48.883949638361095, "code_postal": "75117", "stop_lon": 2.289150357249773, "coord": [48.883949638361095, 2.289150357249773], "stop_id": 3926136, "stop_desc": "FACE 24 BOULEVARD GOUVION-SAINT-CYR - 75117", "stop_name": "PORTE DE VILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.289150357249773, 48.883949638361095]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f5081f03fe1fb472e195a684d314806de22df66f", "fields": {"departement": "75", "stop_lat": 48.89764618016655, "code_postal": "75117", "stop_lon": 2.32486420486476, "coord": [48.89764618016655, 2.32486420486476], "stop_id": 3926154, "stop_desc": "36 BOULEVARD BESSIERES - 75117", "stop_name": "LOUIS LOUCHEUR"}, "geometry": {"type": "Point", "coordinates": [2.32486420486476, 48.89764618016655]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "79d8b7638e0566eba122b420b288fc3c8d610ef2", "fields": {"departement": "75", "stop_lat": 48.89787149246499, "code_postal": "75118", "stop_lon": 2.3357280163206116, "coord": [48.89787149246499, 2.3357280163206116], "stop_id": 3926160, "stop_desc": "150-152 BOULEVARD NEY - 75118", "stop_name": "PORTE DE MONTMARTRE"}, "geometry": {"type": "Point", "coordinates": [2.3357280163206116, 48.89787149246499]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7fad3d15752d94a378b8ba61ea080af401d97ade", "fields": {"departement": "75", "stop_lat": 48.89850873220388, "code_postal": "75118", "stop_lon": 2.351540091366487, "coord": [48.89850873220388, 2.351540091366487], "stop_id": 3926166, "stop_desc": "84 BOULEVARD NEY - 75118", "stop_name": "PORTE DES POISSONNIERS"}, "geometry": {"type": "Point", "coordinates": [2.351540091366487, 48.89850873220388]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e056476c35d8a093bcd0664a9d373808795af7e7", "fields": {"departement": "75", "stop_lat": 48.88600877100075, "code_postal": "75117", "stop_lon": 2.2918467567357994, "coord": [48.88600877100075, 2.2918467567357994], "stop_id": 3926170, "stop_desc": "14 AVENUE STEPHANE MALLARME - 75117", "stop_name": "PORTE DE CHAMPERRET - STEPHANE MALLARME"}, "geometry": {"type": "Point", "coordinates": [2.2918467567357994, 48.88600877100075]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6d9bd2f306d13ecbebb08ee47892fb206d2365ee", "fields": {"departement": "75", "stop_lat": 48.826111667038155, "code_postal": "75114", "stop_lon": 2.3045584182021206, "coord": [48.826111667038155, 2.3045584182021206], "stop_id": 3926174, "stop_desc": "FACE 4 AVENUE DE LA PORTE DE VANVES - 75114", "stop_name": "PORTE DE VANVES"}, "geometry": {"type": "Point", "coordinates": [2.3045584182021206, 48.826111667038155]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2518e979cb4d3da650983b0eefb93bb4420bc5a8", "fields": {"departement": "75", "stop_lat": 48.83408466265884, "code_postal": "75115", "stop_lon": 2.3083109112751967, "coord": [48.83408466265884, 2.3083109112751967], "stop_id": 3926179, "stop_desc": "FACE 40 RUE LABROUSTE - 75115", "stop_name": "LABROUSTE - VOUILLE"}, "geometry": {"type": "Point", "coordinates": [2.3083109112751967, 48.83408466265884]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "44535e407adfd2cd2b8d13f76767abab918c20d8", "fields": {"departement": "75", "stop_lat": 48.836457864626006, "code_postal": "75115", "stop_lon": 2.31035180957615, "coord": [48.836457864626006, 2.31035180957615], "stop_id": 3926180, "stop_desc": "FACE 136 RUE FALGUIERE - 75115", "stop_name": "FALGUIERE"}, "geometry": {"type": "Point", "coordinates": [2.31035180957615, 48.836457864626006]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2ef48541538462cbe41584557700630f460e8230", "fields": {"departement": "75", "stop_lat": 48.84001688509048, "code_postal": "75115", "stop_lon": 2.310104880734473, "coord": [48.84001688509048, 2.310104880734473], "stop_id": 3926182, "stop_desc": "36 RUE DU DOCTEUR ROUX - 75115", "stop_name": "INSTITUT PASTEUR"}, "geometry": {"type": "Point", "coordinates": [2.310104880734473, 48.84001688509048]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0f088c8a79901d7991e50e01374fd9752e4269ba", "fields": {"departement": "75", "stop_lat": 48.84092542778849, "code_postal": "75115", "stop_lon": 2.3138760334790764, "coord": [48.84092542778849, 2.3138760334790764], "stop_id": 3926183, "stop_desc": "52 BOULEVARD PASTEUR - 75115", "stop_name": "PASTEUR - FALGUIERE"}, "geometry": {"type": "Point", "coordinates": [2.3138760334790764, 48.84092542778849]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dcc90609d7f718adbdcc2d96626542f4eb6ce26a", "fields": {"departement": "75", "stop_lat": 48.84349739847797, "code_postal": "75114", "stop_lon": 2.3238014203032726, "coord": [48.84349739847797, 2.3238014203032726], "stop_id": 3926188, "stop_desc": "PLACE DU 18 JUIN 1940 - 75114", "stop_name": "PLACE DU 18 JUIN 1940"}, "geometry": {"type": "Point", "coordinates": [2.3238014203032726, 48.84349739847797]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "83cc76ace26cc1bd8a0daae17a1b0ee1bcf32f69", "fields": {"departement": "75", "stop_lat": 48.86403446820581, "code_postal": "75101", "stop_lon": 2.334993420779704, "coord": [48.86403446820581, 2.334993420779704], "stop_id": 3926204, "stop_desc": "1-3 AVENUE DE L'OPERA - 75101", "stop_name": "PALAIS ROYAL - COMEDIE FRANCAISE"}, "geometry": {"type": "Point", "coordinates": [2.334993420779704, 48.86403446820581]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8e62ebbb9b31005b25fa14fab4a56e2a277c771c", "fields": {"departement": "75", "stop_lat": 48.86683849717729, "code_postal": "75101", "stop_lon": 2.3337536247087347, "coord": [48.86683849717729, 2.3337536247087347], "stop_id": 3926206, "stop_desc": "29 AVENUE DE L'OPERA - 75101", "stop_name": "PYRAMIDES"}, "geometry": {"type": "Point", "coordinates": [2.3337536247087347, 48.86683849717729]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1faf1455d055e904f5bc0f8affa418cb41b69180", "fields": {"departement": "75", "stop_lat": 48.86817760577774, "code_postal": "75102", "stop_lon": 2.3335219409225676, "coord": [48.86817760577774, 2.3335219409225676], "stop_id": 3926207, "stop_desc": "30-32 AVENUE DE L'OPERA - 75102", "stop_name": "PETITS CHAMPS - DANIELLE CASANOVA"}, "geometry": {"type": "Point", "coordinates": [2.3335219409225676, 48.86817760577774]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d89c6f7d02745fe3f9457b078c5f75841ea6895b", "fields": {"departement": "75", "stop_lat": 48.8697773289464, "code_postal": "75102", "stop_lon": 2.3328270241440445, "coord": [48.8697773289464, 2.3328270241440445], "stop_id": 3926208, "stop_desc": "38 AVENUE DE L'OPERA - 75102", "stop_name": "OPERA - 4 SEPTEMBRE"}, "geometry": {"type": "Point", "coordinates": [2.3328270241440445, 48.8697773289464]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fbc473f0993b68a20c9912c0925927e5e1c6a140", "fields": {"departement": "75", "stop_lat": 48.87351575263024, "code_postal": "75109", "stop_lon": 2.327676627244145, "coord": [48.87351575263024, 2.327676627244145], "stop_id": 3926214, "stop_desc": "16-18 RUE AUBER - 75109", "stop_name": "HAVRE - HAUSSMANN"}, "geometry": {"type": "Point", "coordinates": [2.327676627244145, 48.87351575263024]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "00e5a5fe86500607957b2e8ddfbd4980bab9a73c", "fields": {"departement": "75", "stop_lat": 48.8733809275033, "code_postal": "75109", "stop_lon": 2.3274859090230406, "coord": [48.8733809275033, 2.3274859090230406], "stop_id": 3926215, "stop_desc": "19 RUE AUBER - 75109", "stop_name": "HAVRE - HAUSSMANN"}, "geometry": {"type": "Point", "coordinates": [2.3274859090230406, 48.8733809275033]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "73181df5fba02ccbbfebc8a818abb070b9e05372", "fields": {"departement": "75", "stop_lat": 48.89318020439588, "code_postal": "75118", "stop_lon": 2.3359462298323024, "coord": [48.89318020439588, 2.3359462298323024], "stop_id": 3926231, "stop_desc": "81 - 83 RUE DAMREMONT - 75118", "stop_name": "DAMREMONT - ORDENER"}, "geometry": {"type": "Point", "coordinates": [2.3359462298323024, 48.89318020439588]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "83fda9d4cff3491cc28fbab51d77f4c82a1afa18", "fields": {"departement": "75", "stop_lat": 48.89483384850544, "code_postal": "75118", "stop_lon": 2.3370638603104035, "coord": [48.89483384850544, 2.3370638603104035], "stop_id": 3926233, "stop_desc": "103-105 RUE DAMREMONT - 75118", "stop_name": "DAMREMONT - CHAMPIONNET"}, "geometry": {"type": "Point", "coordinates": [2.3370638603104035, 48.89483384850544]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1a6ac388b01751063d0486df6dc8c191aebb35f9", "fields": {"departement": "75", "stop_lat": 48.89641558297259, "code_postal": "75118", "stop_lon": 2.3381542996971008, "coord": [48.89641558297259, 2.3381542996971008], "stop_id": 3926235, "stop_desc": "131 RUE DAMREMONT - 75118", "stop_name": "POTEAU - BELLIARD"}, "geometry": {"type": "Point", "coordinates": [2.3381542996971008, 48.89641558297259]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "411259841d1e2df9993281ecd6a950104080add0", "fields": {"departement": "75", "stop_lat": 48.898033270205325, "code_postal": "75118", "stop_lon": 2.336968431666844, "coord": [48.898033270205325, 2.336968431666844], "stop_id": 3926237, "stop_desc": "1 AVENUE DE LA PORTE DE MONTMARTRE - 75118", "stop_name": "PORTE DE MONTMARTRE - BOULEVARD NEY"}, "geometry": {"type": "Point", "coordinates": [2.336968431666844, 48.898033270205325]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "94bd9219ac1e75a45cf770204ed9079e7f5e375f", "fields": {"departement": "75", "stop_lat": 48.89933639671896, "code_postal": "75118", "stop_lon": 2.335986968520717, "coord": [48.89933639671896, 2.335986968520717], "stop_id": 3926240, "stop_desc": "15 AV DE LA PORTE DE MONTMARTRE - 75118", "stop_name": "RENE BINET"}, "geometry": {"type": "Point", "coordinates": [2.335986968520717, 48.89933639671896]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e219d346da987fbc216a33f0c8e0e36a00d2b8ad", "fields": {"departement": "75", "stop_lat": 48.84381179353463, "code_postal": "75115", "stop_lon": 2.32238519748455, "coord": [48.84381179353463, 2.32238519748455], "stop_id": 3926246, "stop_desc": "FACE 3 RUE DE L'ARRIVEE - 75115", "stop_name": "PLACE DU 18 JUIN 1940 - RUE DE L'ARRIVEE"}, "geometry": {"type": "Point", "coordinates": [2.32238519748455, 48.84381179353463]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a0b17ef86cbecadb4ab8b20c72ff7207c1abcfe3", "fields": {"departement": "75", "stop_lat": 48.83794025206747, "code_postal": "75115", "stop_lon": 2.307968380468816, "coord": [48.83794025206747, 2.307968380468816], "stop_id": 3926248, "stop_desc": "68 RUE DUTOT - 75115", "stop_name": "PROCESSION"}, "geometry": {"type": "Point", "coordinates": [2.307968380468816, 48.83794025206747]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e3e1d225b9d3a3ea2c5033f1ca61df5e11d6665e", "fields": {"departement": "75", "stop_lat": 48.83169243265139, "code_postal": "75115", "stop_lon": 2.302594548744973, "coord": [48.83169243265139, 2.302594548744973], "stop_id": 3926251, "stop_desc": "FACE 75 RUE BRANCION - 75115", "stop_name": "MORILLONS - BRANCION"}, "geometry": {"type": "Point", "coordinates": [2.302594548744973, 48.83169243265139]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a49bb77eabbd6ba538113f2d42a72b594794261d", "fields": {"departement": "75", "stop_lat": 48.82902276629325, "code_postal": "75115", "stop_lon": 2.3014392383440936, "coord": [48.82902276629325, 2.3014392383440936], "stop_id": 3926252, "stop_desc": "128 RUE BRANCION - 75115", "stop_name": "BRANCION"}, "geometry": {"type": "Point", "coordinates": [2.3014392383440936, 48.82902276629325]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "360b792260bb489c7ff3c1f42c4539419ccd82ce", "fields": {"departement": "75", "stop_lat": 48.85392494426368, "code_postal": "75120", "stop_lon": 2.415443658762252, "coord": [48.85392494426368, 2.415443658762252], "stop_id": 3926260, "stop_desc": "20 AVENUE BENOIT FRACHON - 75120", "stop_name": "RUE DE PARIS"}, "geometry": {"type": "Point", "coordinates": [2.415443658762252, 48.85392494426368]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "49002c7d5fc0087c7218e91b1d55689addeae5ce", "fields": {"departement": "93", "stop_lat": 48.85106655559217, "code_postal": "93048", "stop_lon": 2.4160113334147124, "coord": [48.85106655559217, 2.4160113334147124], "stop_id": 3926262, "stop_desc": "RUE CLAUDE ERIGNAC - 93048", "stop_name": "ELSA TRIOLET - ERIGNAC"}, "geometry": {"type": "Point", "coordinates": [2.4160113334147124, 48.85106655559217]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b0a629dfc7b1d04154e236c1d322db61dc1e77e4", "fields": {"departement": "93", "stop_lat": 48.85186244290155, "code_postal": "93048", "stop_lon": 2.421841415670256, "coord": [48.85186244290155, 2.421841415670256], "stop_id": 3926264, "stop_desc": "R DU PROGRES - 93048", "stop_name": "PROGRES - EMILE ZOLA"}, "geometry": {"type": "Point", "coordinates": [2.421841415670256, 48.85186244290155]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "19ea80d63401dcb52c2375b245a8d21bcfc97a1a", "fields": {"departement": "93", "stop_lat": 48.850647019372666, "code_postal": "93048", "stop_lon": 2.4247674209220653, "coord": [48.850647019372666, 2.4247674209220653], "stop_id": 3926265, "stop_desc": "82 RUE ROBESPIERRE - 93048", "stop_name": "CUVIER"}, "geometry": {"type": "Point", "coordinates": [2.4247674209220653, 48.850647019372666]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "539c875d8d83c1bf1dafad811ae17401a30fc133", "fields": {"departement": "94", "stop_lat": 48.847156087985, "code_postal": "94080", "stop_lon": 2.4297728193534036, "coord": [48.847156087985, 2.4297728193534036], "stop_id": 3926269, "stop_desc": "2 AVENUE ANTOINE QUINSON - 94080", "stop_name": "VINCENNES RER - REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.4297728193534036, 48.847156087985]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cac1c45db73108afb8d37cfe65e9fca01f022c2b", "fields": {"departement": "75", "stop_lat": 48.86043459582537, "code_postal": "75120", "stop_lon": 2.4111355802753787, "coord": [48.86043459582537, 2.4111355802753787], "stop_id": 3926274, "stop_desc": "49 R LOUIS LUMIERE - 75120", "stop_name": "SERPOLLET"}, "geometry": {"type": "Point", "coordinates": [2.4111355802753787, 48.86043459582537]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a1017043faa2662493fba97757dd6497f34c1efd", "fields": {"departement": "75", "stop_lat": 48.853290328559375, "code_postal": "75120", "stop_lon": 2.4099269107702015, "coord": [48.853290328559375, 2.4099269107702015], "stop_id": 3926279, "stop_desc": "139 R D'AVRON - 75120", "stop_name": "PORTE DE MONTREUIL"}, "geometry": {"type": "Point", "coordinates": [2.4099269107702015, 48.853290328559375]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "650a6482280fb96b91c9deeba58a1f30b54b3ac8", "fields": {"departement": "75", "stop_lat": 48.84783650700258, "code_postal": "75112", "stop_lon": 2.389833009163833, "coord": [48.84783650700258, 2.389833009163833], "stop_id": 3926290, "stop_desc": "107 BOULEVARD DIDEROT - 75112", "stop_name": "PIERRE BOURDAN"}, "geometry": {"type": "Point", "coordinates": [2.389833009163833, 48.84783650700258]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5451a11c390d4e29b030319fbc1a0be25cc73c9e", "fields": {"departement": "75", "stop_lat": 48.84681540585237, "code_postal": "75112", "stop_lon": 2.3812665452114596, "coord": [48.84681540585237, 2.3812665452114596], "stop_id": 3926294, "stop_desc": "51 BOULEVARD DIDEROT - 75112", "stop_name": "HOPITAL SAINT-ANTOINE"}, "geometry": {"type": "Point", "coordinates": [2.3812665452114596, 48.84681540585237]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2129091330e5bd8dac657c04abf433639a158d6d", "fields": {"departement": "75", "stop_lat": 48.84539937588007, "code_postal": "75112", "stop_lon": 2.3686422351772856, "coord": [48.84539937588007, 2.3686422351772856], "stop_id": 3926300, "stop_desc": "1 BOULEVARD DIDEROT - 75112", "stop_name": "PONT D'AUSTERLITZ - QUAI DE LA RAPEE"}, "geometry": {"type": "Point", "coordinates": [2.3686422351772856, 48.84539937588007]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c8835dad875ec87d8f3d45f4fb527566529b526c", "fields": {"departement": "75", "stop_lat": 48.8314984744011, "code_postal": "75113", "stop_lon": 2.3546799758762553, "coord": [48.8314984744011, 2.3546799758762553], "stop_id": 3926308, "stop_desc": "10 PLACE D'ITALIE - 75113", "stop_name": "PLACE D'ITALIE"}, "geometry": {"type": "Point", "coordinates": [2.3546799758762553, 48.8314984744011]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9ca3dbdc5585f50ce185d9f37f7e1b9194b16766", "fields": {"departement": "75", "stop_lat": 48.83066259989052, "code_postal": "75113", "stop_lon": 2.3548566679640492, "coord": [48.83066259989052, 2.3548566679640492], "stop_id": 3926309, "stop_desc": "FACE 6 RUE BOBILLOT - 75113", "stop_name": "PLACE D'ITALIE"}, "geometry": {"type": "Point", "coordinates": [2.3548566679640492, 48.83066259989052]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "188970cc7b47d199ba2f2f564e743cded599e86d", "fields": {"departement": "75", "stop_lat": 48.819850725740395, "code_postal": "75113", "stop_lon": 2.3528386532051546, "coord": [48.819850725740395, 2.3528386532051546], "stop_id": 3926316, "stop_desc": "12 RUE POTERNE DES PEUPLIERS - 75113", "stop_name": "POTERNE DES PEUPLIERS"}, "geometry": {"type": "Point", "coordinates": [2.3528386532051546, 48.819850725740395]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "872278865d6108d989019713aa17481c3b05f27d", "fields": {"departement": "94", "stop_lat": 48.81665110081543, "code_postal": "94037", "stop_lon": 2.352837692438503, "coord": [48.81665110081543, 2.352837692438503], "stop_id": 3926318, "stop_desc": "FACE 7 RUE CHARLES FREROT - 94037", "stop_name": "VERDUN - VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.352837692438503, 48.81665110081543]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9befe83beca3cab28b112e1e588314cf075e930b", "fields": {"departement": "94", "stop_lat": 48.812760225022416, "code_postal": "94037", "stop_lon": 2.3442631076316744, "coord": [48.812760225022416, 2.3442631076316744], "stop_id": 3926321, "stop_desc": "RUE D'ARCUEIL - 94037", "stop_name": "CITE VERTE"}, "geometry": {"type": "Point", "coordinates": [2.3442631076316744, 48.812760225022416]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1c51560048a056a73b918d78313ce2b1ec758597", "fields": {"departement": "94", "stop_lat": 48.81101671409982, "code_postal": "94037", "stop_lon": 2.3419494882632397, "coord": [48.81101671409982, 2.3419494882632397], "stop_id": 3926322, "stop_desc": "68 RUE D'ARCUEIL - 94037", "stop_name": "RUE D'ARCUEIL"}, "geometry": {"type": "Point", "coordinates": [2.3419494882632397, 48.81101671409982]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fe374a750d8dda06fcb77e29d858ff60da4422c0", "fields": {"departement": "94", "stop_lat": 48.809866287850035, "code_postal": "94037", "stop_lon": 2.341745266589601, "coord": [48.809866287850035, 2.341745266589601], "stop_id": 3926323, "stop_desc": "FACE 6 RUE EMILE BOUGARD - 94037", "stop_name": "FRAYSSE"}, "geometry": {"type": "Point", "coordinates": [2.341745266589601, 48.809866287850035]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e20538c4431c822ebeeeb1a0a76761f9f7f24fdd", "fields": {"departement": "94", "stop_lat": 48.81086400701395, "code_postal": "94003", "stop_lon": 2.338615489800433, "coord": [48.81086400701395, 2.338615489800433], "stop_id": 3926325, "stop_desc": "111 AVENUE JEAN JAURES - 94003", "stop_name": "BENOIT MALON"}, "geometry": {"type": "Point", "coordinates": [2.338615489800433, 48.81086400701395]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2be7578a3f1c2a6d2c21e487a19af35d72bf5120", "fields": {"departement": "94", "stop_lat": 48.81092692369328, "code_postal": "94003", "stop_lon": 2.3361115979106186, "coord": [48.81092692369328, 2.3361115979106186], "stop_id": 3926328, "stop_desc": "88 AVENUE JEAN JAURES - 94003", "stop_name": "CHAPERON VERT"}, "geometry": {"type": "Point", "coordinates": [2.3361115979106186, 48.81092692369328]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "24577c3bb61326945e091f11a2779b8d52eba3c7", "fields": {"departement": "94", "stop_lat": 48.80818557426659, "code_postal": "94003", "stop_lon": 2.3327778455238666, "coord": [48.80818557426659, 2.3327778455238666], "stop_id": 3926330, "stop_desc": "32-34 AVENUE LAPLACE - 94003", "stop_name": "LAPLACE RER"}, "geometry": {"type": "Point", "coordinates": [2.3327778455238666, 48.80818557426659]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b9243dca07c8c850e44c0c9f8fdcee2d04bccf4b", "fields": {"departement": "94", "stop_lat": 48.81175347724286, "code_postal": "94037", "stop_lon": 2.3460592717364808, "coord": [48.81175347724286, 2.3460592717364808], "stop_id": 3926332, "stop_desc": "FACE 70 AV RASPAIL - 94037", "stop_name": "BOUT DU RANG - PICASSO"}, "geometry": {"type": "Point", "coordinates": [2.3460592717364808, 48.81175347724286]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f535cb10364df126d68e75b7d3600f0a60806e1e", "fields": {"departement": "75", "stop_lat": 48.86455178820427, "code_postal": "75120", "stop_lon": 2.409561271654804, "coord": [48.86455178820427, 2.409561271654804], "stop_id": 3926378, "stop_desc": "2 AVENUE DE LA PORTE DE BAGNOLET - 75120", "stop_name": "PORTE DE BAGNOLET"}, "geometry": {"type": "Point", "coordinates": [2.409561271654804, 48.86455178820427]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8ed17be4aad95dc794937aa0551eba87724299f4", "fields": {"departement": "75", "stop_lat": 48.864785410194465, "code_postal": "75120", "stop_lon": 2.4096433309569973, "coord": [48.864785410194465, 2.4096433309569973], "stop_id": 3926380, "stop_desc": "FACE 4 AVENUE DE LA PORTE DE BAGNOLET - 75120", "stop_name": "PORTE DE BAGNOLET"}, "geometry": {"type": "Point", "coordinates": [2.4096433309569973, 48.864785410194465]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dbdbab8b0abd0cf2cb3cec5f58bade94b27acadc", "fields": {"departement": "75", "stop_lat": 48.861749731654044, "code_postal": "75103", "stop_lon": 2.358871927793279, "coord": [48.861749731654044, 2.358871927793279], "stop_id": 3926392, "stop_desc": "66 RUE DES ARCHIVES - 75103", "stop_name": "ARCHIVES - HAUDRIETTES"}, "geometry": {"type": "Point", "coordinates": [2.358871927793279, 48.861749731654044]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "32b8e77e5f10be29442dce6a912c6492b6ea6c8a", "fields": {"departement": "75", "stop_lat": 48.86405913939567, "code_postal": "75103", "stop_lon": 2.3607254907679196, "coord": [48.86405913939567, 2.3607254907679196], "stop_id": 3926393, "stop_desc": "2 RUE EUGENE SPULLER - 75103", "stop_name": "SQUARE DU TEMPLE - MAIRIE DU 3EME - CARREAU DU TEMPLE"}, "geometry": {"type": "Point", "coordinates": [2.3607254907679196, 48.86405913939567]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dec00818095361b173103e37bff2243725acbb67", "fields": {"departement": "75", "stop_lat": 48.868039861543714, "code_postal": "75110", "stop_lon": 2.363955968897187, "coord": [48.868039861543714, 2.363955968897187], "stop_id": 3926397, "stop_desc": "12 PLACE DE LA REPUBLIQUE - 75110", "stop_name": "REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.363955968897187, 48.868039861543714]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c5916a5253cff14d1e6befe847460bc4ffb551a4", "fields": {"departement": "75", "stop_lat": 48.87246014976294, "code_postal": "75110", "stop_lon": 2.3698984262295637, "coord": [48.87246014976294, 2.3698984262295637], "stop_id": 3926403, "stop_desc": "6 AVENUE CLAUDE VELLEFAUX - 75110", "stop_name": "HOPITAL SAINT-LOUIS"}, "geometry": {"type": "Point", "coordinates": [2.3698984262295637, 48.87246014976294]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fba12beb5552192100ffb6f63cc2506447fa16f0", "fields": {"departement": "75", "stop_lat": 48.87315216917849, "code_postal": "75110", "stop_lon": 2.3699124864047145, "coord": [48.87315216917849, 2.3699124864047145], "stop_id": 3926404, "stop_desc": "FACE 22 AVENUE CLAUDE VELLEFAUX - 75110", "stop_name": "HOPITAL SAINT-LOUIS"}, "geometry": {"type": "Point", "coordinates": [2.3699124864047145, 48.87315216917849]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "26616ea06149eec75fd98b69988de09a82738d56", "fields": {"departement": "75", "stop_lat": 48.87800496897609, "code_postal": "75119", "stop_lon": 2.371128233095997, "coord": [48.87800496897609, 2.371128233095997], "stop_id": 3926406, "stop_desc": "6 AVENUE MATHURIN MOREAU - 75119", "stop_name": "COLONEL FABIEN"}, "geometry": {"type": "Point", "coordinates": [2.371128233095997, 48.87800496897609]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9758cd02a533c9d7a461d353e61209301e2bdd98", "fields": {"departement": "75", "stop_lat": 48.87838143447629, "code_postal": "75119", "stop_lon": 2.374480431903701, "coord": [48.87838143447629, 2.374480431903701], "stop_id": 3926408, "stop_desc": "30 AVENUE MATHURIN MOREAU - 75119", "stop_name": "MATHURIN MOREAU - SIMON BOLIVAR"}, "geometry": {"type": "Point", "coordinates": [2.374480431903701, 48.87838143447629]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "28ef3cbda805fe57e99aa8077dd375f13c9a65b2", "fields": {"departement": "75", "stop_lat": 48.878874626129885, "code_postal": "75119", "stop_lon": 2.3778736486994405, "coord": [48.878874626129885, 2.3778736486994405], "stop_id": 3926411, "stop_desc": "63 AVENUE MATHURIN MOREAU - 75119", "stop_name": "SECRETAN - BUTTES CHAUMONT"}, "geometry": {"type": "Point", "coordinates": [2.3778736486994405, 48.878874626129885]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "adfb03662c229a3037e9461cfcdcb0b796aa340b", "fields": {"departement": "75", "stop_lat": 48.88243186331477, "code_postal": "75119", "stop_lon": 2.382632220716057, "coord": [48.88243186331477, 2.382632220716057], "stop_id": 3926414, "stop_desc": "FACE 7 PLACE ARMAND CARREL - 75119", "stop_name": "ARMAND CARREL - MAIRIE DU 19E"}, "geometry": {"type": "Point", "coordinates": [2.382632220716057, 48.88243186331477]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1758dc9d912fb01f9e4a07e9a50bbcb22b22a142", "fields": {"departement": "75", "stop_lat": 48.88630017557166, "code_postal": "75119", "stop_lon": 2.394655421870314, "coord": [48.88630017557166, 2.394655421870314], "stop_id": 3926424, "stop_desc": "FACE 7 AVENUE DE LA PORTE CHAUMONT - 75119", "stop_name": "GENERAL COCHET"}, "geometry": {"type": "Point", "coordinates": [2.394655421870314, 48.88630017557166]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7913e206183b520727f572751afc4c4c2386c414", "fields": {"departement": "75", "stop_lat": 48.88935416218406, "code_postal": "75119", "stop_lon": 2.3980114672093844, "coord": [48.88935416218406, 2.3980114672093844], "stop_id": 3926430, "stop_desc": "18 R DE LA MARSEILLAISE - 75119", "stop_name": "PORTE DE PANTIN - MARSEILLAISE"}, "geometry": {"type": "Point", "coordinates": [2.3980114672093844, 48.88935416218406]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "15ddac123f1481f9b922bf8557b51204d135a341", "fields": {"departement": "75", "stop_lat": 48.8597465272257, "code_postal": "75104", "stop_lon": 2.35249649876749, "coord": [48.8597465272257, 2.35249649876749], "stop_id": 3926438, "stop_desc": "FACE 22 RUE DU RENARD - 75104", "stop_name": "CENTRE GEORGES POMPIDOU"}, "geometry": {"type": "Point", "coordinates": [2.35249649876749, 48.8597465272257]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f159b26c6931cfab0bcfed0d9c603b6674d5e379", "fields": {"departement": "75", "stop_lat": 48.86448153556385, "code_postal": "75120", "stop_lon": 2.406795871914557, "coord": [48.86448153556385, 2.406795871914557], "stop_id": 3926613, "stop_desc": "80 BIS R BELGRAND - 75120", "stop_name": "PORTE DE BAGNOLET - BELGRAND"}, "geometry": {"type": "Point", "coordinates": [2.406795871914557, 48.86448153556385]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "36771c25812ce4d269b0c1502fc27ef251c4be6f", "fields": {"departement": "94", "stop_lat": 48.80855385142401, "code_postal": "94037", "stop_lon": 2.3457865790498724, "coord": [48.80855385142401, 2.3457865790498724], "stop_id": 3970585, "stop_desc": "R JEAN LOUIS - 94037", "stop_name": "GABRIEL PERI - SOLEIL LEVANT"}, "geometry": {"type": "Point", "coordinates": [2.3457865790498724, 48.80855385142401]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "930cf0fab7d8bfe940fb996ac13b02c6333a0826", "fields": {"departement": "94", "stop_lat": 48.81364075955538, "code_postal": "94037", "stop_lon": 2.3478423484763105, "coord": [48.81364075955538, 2.3478423484763105], "stop_id": 3970587, "stop_desc": "73 AVENUE RASPAIL - 94037", "stop_name": "REINE BLANCHE"}, "geometry": {"type": "Point", "coordinates": [2.3478423484763105, 48.81364075955538]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ad250fb41113410359d890d227a12efd4a54aa2f", "fields": {"departement": "94", "stop_lat": 48.814655972455775, "code_postal": "94037", "stop_lon": 2.3516667112468115, "coord": [48.814655972455775, 2.3516667112468115], "stop_id": 3970588, "stop_desc": "23 R RASPAIL - 94037", "stop_name": "RASPAIL - CALMUS"}, "geometry": {"type": "Point", "coordinates": [2.3516667112468115, 48.814655972455775]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "398c717066377f501ab557ede2e9605c0b76387d", "fields": {"departement": "94", "stop_lat": 48.81665110081543, "code_postal": "94037", "stop_lon": 2.352837692438503, "coord": [48.81665110081543, 2.352837692438503], "stop_id": 3970589, "stop_desc": "FACE 7 RUE CHARLES FREROT - 94037", "stop_name": "VERDUN - VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.352837692438503, 48.81665110081543]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "22caa8452c91b134a6c5fde44aa6607c81661738", "fields": {"departement": "94", "stop_lat": 48.8145125966511, "code_postal": "94037", "stop_lon": 2.347543127080645, "coord": [48.8145125966511, 2.347543127080645], "stop_id": 3970591, "stop_desc": "4 RUE D'ARCUEIL - 94037", "stop_name": "DIVISION LECLERC - MEDIATHEQUE"}, "geometry": {"type": "Point", "coordinates": [2.347543127080645, 48.8145125966511]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9bd547cb8157b6bb8e073c472d3bce51c1b13749", "fields": {"departement": "94", "stop_lat": 48.813829920243066, "code_postal": "94037", "stop_lon": 2.340806597050351, "coord": [48.813829920243066, 2.340806597050351], "stop_id": 3970592, "stop_desc": "FACE 63TER R BENOIT MALON - 94037", "stop_name": "GENTILLY RER - PLATEAU"}, "geometry": {"type": "Point", "coordinates": [2.340806597050351, 48.813829920243066]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "096e63b3f4561b2226423cfee19de3926fff7896", "fields": {"departement": "94", "stop_lat": 48.81086400701395, "code_postal": "94003", "stop_lon": 2.338615489800433, "coord": [48.81086400701395, 2.338615489800433], "stop_id": 3970593, "stop_desc": "111 AVENUE JEAN JAURES - 94003", "stop_name": "BENOIT MALON"}, "geometry": {"type": "Point", "coordinates": [2.338615489800433, 48.81086400701395]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5ca42caff9b9acc82f2f2fe6aa55b234a5c09179", "fields": {"departement": "94", "stop_lat": 48.815563821795415, "code_postal": "94037", "stop_lon": 2.3509184500369567, "coord": [48.815563821795415, 2.3509184500369567], "stop_id": 3970603, "stop_desc": "FACE 35 RUE CHARLES FREROT - 94037", "stop_name": "MAIRIE DE GENTILLY."}, "geometry": {"type": "Point", "coordinates": [2.3509184500369567, 48.815563821795415]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "34db0807f489e5f58692030d6b4fbe1597996118", "fields": {"departement": "93", "stop_lat": 48.91050656437101, "code_postal": "93001", "stop_lon": 2.385506374394335, "coord": [48.91050656437101, 2.385506374394335], "stop_id": 3972553, "stop_desc": "55 AVENUE DE LA REPUBLIQUE - 93001", "stop_name": "ANDRE KARMAN"}, "geometry": {"type": "Point", "coordinates": [2.385506374394335, 48.91050656437101]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "19e53dceee7ccbefb58108f3e52e8d927ae81a77", "fields": {"departement": "93", "stop_lat": 48.91107308645593, "code_postal": "93001", "stop_lon": 2.384661567776284, "coord": [48.91107308645593, 2.384661567776284], "stop_id": 3972554, "stop_desc": "FACE 39 AVENUE DE LA REPUBLIQUE - 93001", "stop_name": "ANDRE KARMAN"}, "geometry": {"type": "Point", "coordinates": [2.384661567776284, 48.91107308645593]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bcd372f95b1e86e801e3d36fe4d436990ecb2356", "fields": {"departement": "93", "stop_lat": 48.952466555775885, "code_postal": "93072", "stop_lon": 2.384890511280149, "coord": [48.952466555775885, 2.384890511280149], "stop_id": 3972572, "stop_desc": "45 BOULEVARD MAXIME GORKI - 93072", "stop_name": "FRANCOIS BEGUE"}, "geometry": {"type": "Point", "coordinates": [2.384890511280149, 48.952466555775885]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1fede2a4bbf17083569a3ac3dc4cb5feec1197b4", "fields": {"departement": "93", "stop_lat": 48.962767541723444, "code_postal": "93072", "stop_lon": 2.3788812062388796, "coord": [48.962767541723444, 2.3788812062388796], "stop_id": 3972578, "stop_desc": "60 AVENUE ARISTIDE BRIAND - 93072", "stop_name": "JEAN JAURES - ARISTIDE BRIAND"}, "geometry": {"type": "Point", "coordinates": [2.3788812062388796, 48.962767541723444]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ce13699ba28df27c36e7e23e1cfa37e5a72817d3", "fields": {"departement": "75", "stop_lat": 48.89864268793077, "code_postal": "75118", "stop_lon": 2.3574287854701845, "coord": [48.89864268793077, 2.3574287854701845], "stop_id": 4000520, "stop_desc": "91/93 RUE DE LA CHAPELLE - 75118", "stop_name": "PORTE DE LA CHAPELLE"}, "geometry": {"type": "Point", "coordinates": [2.3574287854701845, 48.89864268793077]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "52f37676177d4f8663889385527766656613a891", "fields": {"departement": "93", "stop_lat": 48.902947209373025, "code_postal": "93066", "stop_lon": 2.359148129193326, "coord": [48.902947209373025, 2.359148129193326], "stop_id": 4000521, "stop_desc": "46-48 AVENUE DU PRESIDENT WILSON - 93066", "stop_name": "PONT HAINGUERLOT"}, "geometry": {"type": "Point", "coordinates": [2.359148129193326, 48.902947209373025]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "533d418047d17565a8004df23c467bc34928bd38", "fields": {"departement": "93", "stop_lat": 48.911251531033365, "code_postal": "93066", "stop_lon": 2.357583674810103, "coord": [48.911251531033365, 2.357583674810103], "stop_id": 4000528, "stop_desc": "169-173 AVENUE DU PRESIDENT WILSON - 93066", "stop_name": "LA MONTJOIE"}, "geometry": {"type": "Point", "coordinates": [2.357583674810103, 48.911251531033365]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bbe34e286bbc44bffd87c6d2f6fa1b15acc20352", "fields": {"departement": "93", "stop_lat": 48.91550215331743, "code_postal": "93066", "stop_lon": 2.358921630509063, "coord": [48.91550215331743, 2.358921630509063], "stop_id": 4000532, "stop_desc": "64 RUE DU LANDY - 93066", "stop_name": "LANDY - PONT DE SOISSONS"}, "geometry": {"type": "Point", "coordinates": [2.358921630509063, 48.91550215331743]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f00abd7257447ddfcdc9ee30dfa64667bdcdd94c", "fields": {"departement": "93", "stop_lat": 48.92612502424029, "code_postal": "93066", "stop_lon": 2.357289468620289, "coord": [48.92612502424029, 2.357289468620289], "stop_id": 4000539, "stop_desc": "380 AVENUE DU PRESIDENT WILSON - 93066", "stop_name": "PONT DU CANAL"}, "geometry": {"type": "Point", "coordinates": [2.357289468620289, 48.92612502424029]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4bd6301a68257ee4313effef40ac75142e388b4e", "fields": {"departement": "93", "stop_lat": 48.93842309963909, "code_postal": "93066", "stop_lon": 2.377047298576718, "coord": [48.93842309963909, 2.377047298576718], "stop_id": 4000555, "stop_desc": "35 AVENUE ROMAIN ROLLAND - 93066", "stop_name": "ROMAIN ROLLAND"}, "geometry": {"type": "Point", "coordinates": [2.377047298576718, 48.93842309963909]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3f02fba79f75049ff21b87c0add43b6066df1462", "fields": {"departement": "93", "stop_lat": 48.94230324883872, "code_postal": "93066", "stop_lon": 2.3830530455506644, "coord": [48.94230324883872, 2.3830530455506644], "stop_id": 4000558, "stop_desc": "PROMENADE DE LA BASILIQUE - 93066", "stop_name": "CITE FLOREAL"}, "geometry": {"type": "Point", "coordinates": [2.3830530455506644, 48.94230324883872]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d1c211ac5b21e1535f3f4a40f59482d337c9f22d", "fields": {"departement": "93", "stop_lat": 48.94642706909913, "code_postal": "93072", "stop_lon": 2.3858673029623705, "coord": [48.94642706909913, 2.3858673029623705], "stop_id": 4000562, "stop_desc": "RUE SALVADOR ALLENDE - 93072", "stop_name": "CROIX BLANCHE"}, "geometry": {"type": "Point", "coordinates": [2.3858673029623705, 48.94642706909913]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1bdf7c4921916d863a14fb41eb87046090f079a8", "fields": {"departement": "93", "stop_lat": 48.946579921751336, "code_postal": "93072", "stop_lon": 2.3856764336460565, "coord": [48.946579921751336, 2.3856764336460565], "stop_id": 4000563, "stop_desc": "RUE SALVADOR ALLENDE - 93072", "stop_name": "CROIX BLANCHE"}, "geometry": {"type": "Point", "coordinates": [2.3856764336460565, 48.946579921751336]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5e1a8c7176a7b2d0da7a6c7bb72c37919451e3e8", "fields": {"departement": "93", "stop_lat": 48.956690805608744, "code_postal": "93079", "stop_lon": 2.3395336383450567, "coord": [48.956690805608744, 2.3395336383450567], "stop_id": 4000739, "stop_desc": "PISTE GARE ROUTIERE - 93079", "stop_name": "UNIVERSITE - PARIS 13"}, "geometry": {"type": "Point", "coordinates": [2.3395336383450567, 48.956690805608744]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "675c72d10d73a5b2f9593235bea4673e3b35480d", "fields": {"departement": "93", "stop_lat": 48.95627743330126, "code_postal": "93079", "stop_lon": 2.338482852860159, "coord": [48.95627743330126, 2.338482852860159], "stop_id": 4000740, "stop_desc": "AVENUE JEAN-BAPTISTE CLEMENT - 93079", "stop_name": "J-B CLEMENT - UNIVERSITE"}, "geometry": {"type": "Point", "coordinates": [2.338482852860159, 48.95627743330126]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "06e2c3b9c6fa3514fddcc219e985572579a78368", "fields": {"departement": "93", "stop_lat": 48.95306918583929, "code_postal": "93079", "stop_lon": 2.3369135462209516, "coord": [48.95306918583929, 2.3369135462209516], "stop_id": 4000741, "stop_desc": "FACE 133 ROUTE DE SAINT-LEU - 93079", "stop_name": "J-B CLEMENT - CARNOT"}, "geometry": {"type": "Point", "coordinates": [2.3369135462209516, 48.95306918583929]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "60217035103250e457acc4b546ab5d2b97b92d2b", "fields": {"departement": "95", "stop_lat": 48.987287546086826, "code_postal": "95585", "stop_lon": 2.3897699290065257, "coord": [48.987287546086826, 2.3897699290065257], "stop_id": 4008114, "stop_desc": "2 RUE D'ESCOUVRIER - 95585", "stop_name": "LES PERREUX"}, "geometry": {"type": "Point", "coordinates": [2.3897699290065257, 48.987287546086826]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "99b556f504367493c1667137ba91c5ec809febef", "fields": {"departement": "95", "stop_lat": 48.92333364375808, "code_postal": "95063", "stop_lon": 2.20801063048684, "coord": [48.92333364375808, 2.20801063048684], "stop_id": 4023492, "stop_desc": "PLACE DU GRAND CERF - 95063", "stop_name": "GRAND CERF"}, "geometry": {"type": "Point", "coordinates": [2.20801063048684, 48.92333364375808]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "89841f954a4cad282936761f221972450db4b705", "fields": {"departement": "78", "stop_lat": 48.92471474338185, "code_postal": "78311", "stop_lon": 2.1974786234503783, "coord": [48.92471474338185, 2.1974786234503783], "stop_id": 4023496, "stop_desc": "FACE 25 BOULEVARD EMILE ZOLA - 78311", "stop_name": "PAUL BERT - JOSEPH BARA"}, "geometry": {"type": "Point", "coordinates": [2.1974786234503783, 48.92471474338185]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fb9ecd1dd6102a38bd9a558e60c20cafd20aad56", "fields": {"departement": "78", "stop_lat": 48.933589099495556, "code_postal": "78311", "stop_lon": 2.179299332551025, "coord": [48.933589099495556, 2.179299332551025], "stop_id": 4023504, "stop_desc": "FACE 146 BOULEVARD HENRI BARBUSSE - 78311", "stop_name": "GENERAL NEGRIER"}, "geometry": {"type": "Point", "coordinates": [2.179299332551025, 48.933589099495556]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f5599f1cd42d7f891315de33abd96036eacfc89a", "fields": {"departement": "78", "stop_lat": 48.93864537025909, "code_postal": "78586", "stop_lon": 2.1702530958492527, "coord": [48.93864537025909, 2.1702530958492527], "stop_id": 4023505, "stop_desc": "121 AVENUE MAURICE BERTEAUX - 78586", "stop_name": "VOLTAIRE"}, "geometry": {"type": "Point", "coordinates": [2.1702530958492527, 48.93864537025909]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8109c6495672f7cb22e47b10f5a9c890a73bdb08", "fields": {"departement": "78", "stop_lat": 48.93755107053998, "code_postal": "78586", "stop_lon": 2.1717571817679384, "coord": [48.93755107053998, 2.1717571817679384], "stop_id": 4023506, "stop_desc": "166-168 AVENUE MAURICE BERTEAUX - 78586", "stop_name": "VOLTAIRE"}, "geometry": {"type": "Point", "coordinates": [2.1717571817679384, 48.93755107053998]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5bd59c356be88413345b02b96c18beeb80c27f9e", "fields": {"departement": "92", "stop_lat": 48.89537937703566, "code_postal": "92050", "stop_lon": 2.196099301858471, "coord": [48.89537937703566, 2.196099301858471], "stop_id": 4023607, "stop_desc": "FACE AU 70 BOULEVARD DU COUCHANT - 92050", "stop_name": "NANTERRE-VILLE RER"}, "geometry": {"type": "Point", "coordinates": [2.196099301858471, 48.89537937703566]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "32636dfa20fab4472ace145e2d96a91386843d4b", "fields": {"departement": "92", "stop_lat": 48.90600841121363, "code_postal": "92050", "stop_lon": 2.2096216545626723, "coord": [48.90600841121363, 2.2096216545626723], "stop_id": 4023616, "stop_desc": "AVENUE DE LA COMMUNE DE PARIS - 92050", "stop_name": "UNIVERSITE PARIS X"}, "geometry": {"type": "Point", "coordinates": [2.2096216545626723, 48.90600841121363]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "337a1ce5dadceba069649d978cdcead188ec3dd7", "fields": {"departement": "92", "stop_lat": 48.909502279380625, "code_postal": "92050", "stop_lon": 2.2162255493330205, "coord": [48.909502279380625, 2.2162255493330205], "stop_id": 4023620, "stop_desc": "FACE 1 RUE DES SAULES - 92050", "stop_name": "LES SAULES"}, "geometry": {"type": "Point", "coordinates": [2.2162255493330205, 48.909502279380625]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "28216f9a44c0241a43e0a04aa51e62a599f22b6f", "fields": {"departement": "92", "stop_lat": 48.91770042998111, "code_postal": "92025", "stop_lon": 2.2378197383468628, "coord": [48.91770042998111, 2.2378197383468628], "stop_id": 4023629, "stop_desc": "329 RUE GABRIEL PERI - 92025", "stop_name": "ECOLES DU PETIT COLOMBES"}, "geometry": {"type": "Point", "coordinates": [2.2378197383468628, 48.91770042998111]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b360599638c177b877173f204d63be8a2e73c300", "fields": {"departement": "92", "stop_lat": 48.92234554390623, "code_postal": "92025", "stop_lon": 2.2477115719889413, "coord": [48.92234554390623, 2.2477115719889413], "stop_id": 4023633, "stop_desc": "63 RUE GABRIEL PERI - 92025", "stop_name": "CIMETIERE DE COLOMBES"}, "geometry": {"type": "Point", "coordinates": [2.2477115719889413, 48.92234554390623]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "851f1aeebeb8df91d14d9403b1297ecf03fad1cd", "fields": {"departement": "92", "stop_lat": 48.9235833559115, "code_postal": "92025", "stop_lon": 2.2569830831008257, "coord": [48.9235833559115, 2.2569830831008257], "stop_id": 4023640, "stop_desc": "75 RUE DU BOURNARD - 92025", "stop_name": "RHIN ET DANUBE"}, "geometry": {"type": "Point", "coordinates": [2.2569830831008257, 48.9235833559115]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c5956d3ba214fa3b66ccd9884f948ec0f54bd994", "fields": {"departement": "92", "stop_lat": 48.925217275166055, "code_postal": "92025", "stop_lon": 2.2686548076317994, "coord": [48.925217275166055, 2.2686548076317994], "stop_id": 4023645, "stop_desc": "110 AVENUE DE L'AGENT SARRE - 92025", "stop_name": "GRAMME"}, "geometry": {"type": "Point", "coordinates": [2.2686548076317994, 48.925217275166055]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e02b5aab0acb881c2f428c29f984304fb79a47ca", "fields": {"departement": "92", "stop_lat": 48.927359703595755, "code_postal": "92004", "stop_lon": 2.2751167199882802, "coord": [48.927359703595755, 2.2751167199882802], "stop_id": 4023647, "stop_desc": "32 AVENUE DE LA REDOUTE - 92004", "stop_name": "QUATRE ROUTES"}, "geometry": {"type": "Point", "coordinates": [2.2751167199882802, 48.927359703595755]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "64ae921d3c4ffd13f73cf128c75d4e2362f9a056", "fields": {"departement": "92", "stop_lat": 48.9280344727097, "code_postal": "92004", "stop_lon": 2.27657527168149, "coord": [48.9280344727097, 2.27657527168149], "stop_id": 4023649, "stop_desc": "3/7 AVENUE DE LA REDOUTE - 92004", "stop_name": "FREYCINET"}, "geometry": {"type": "Point", "coordinates": [2.27657527168149, 48.9280344727097]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2f06df36ee5002fb1034dcd3506a2a5220f11743", "fields": {"departement": "92", "stop_lat": 48.92728729275542, "code_postal": "92004", "stop_lon": 2.274134820908049, "coord": [48.92728729275542, 2.274134820908049], "stop_id": 4023654, "stop_desc": "5 AVENUE DE LA REDOUTE - 92004", "stop_name": "QUATRE ROUTES - LA REDOUTE"}, "geometry": {"type": "Point", "coordinates": [2.274134820908049, 48.92728729275542]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "78402dd0ef44cb5619c64947196919276b13426f", "fields": {"departement": "95", "stop_lat": 48.94624869872489, "code_postal": "95018", "stop_lon": 2.257711987423115, "coord": [48.94624869872489, 2.257711987423115], "stop_id": 4023676, "stop_desc": "PISTE GARE ROUTIERE - 95018", "stop_name": "GARE D'ARGENTEUIL"}, "geometry": {"type": "Point", "coordinates": [2.257711987423115, 48.94624869872489]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "28e3179c1f7cfb7d4572ecbb6c3c10459ffee67a", "fields": {"departement": "95", "stop_lat": 48.94595216278769, "code_postal": "95018", "stop_lon": 2.2577533738675597, "coord": [48.94595216278769, 2.2577533738675597], "stop_id": 4023677, "stop_desc": "PLACE PIERRE SEMARD (GARE ROUTIERE) - 95018", "stop_name": "GARE D'ARGENTEUIL"}, "geometry": {"type": "Point", "coordinates": [2.2577533738675597, 48.94595216278769]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fbf03a65809ff7f4a109cc3f76c9a541259a9f17", "fields": {"departement": "95", "stop_lat": 48.94827603000987, "code_postal": "95018", "stop_lon": 2.2523739798914075, "coord": [48.94827603000987, 2.2523739798914075], "stop_id": 4023679, "stop_desc": "FACE 4 BIS BOULEVARD LEON FEIX - 95018", "stop_name": "LEON FEIX"}, "geometry": {"type": "Point", "coordinates": [2.2523739798914075, 48.94827603000987]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ef1b4253ab9c2021cc7196aa5544d477445bcf3c", "fields": {"departement": "95", "stop_lat": 48.94692605506069, "code_postal": "95018", "stop_lon": 2.249661062842731, "coord": [48.94692605506069, 2.249661062842731], "stop_id": 4023681, "stop_desc": "23 BOULEVARD LEON FEIX - 95018", "stop_name": "HOTEL DE VILLE D'ARGENTEUIL"}, "geometry": {"type": "Point", "coordinates": [2.249661062842731, 48.94692605506069]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a4fa0033556595c2b5959d71d670e5dc7d1f60aa", "fields": {"departement": "95", "stop_lat": 48.93442434515357, "code_postal": "95063", "stop_lon": 2.2088013850436523, "coord": [48.93442434515357, 2.2088013850436523], "stop_id": 4023708, "stop_desc": "FACE 122 AVENUE GABRIEL PERI - 95063", "stop_name": "ALBERT 1ER"}, "geometry": {"type": "Point", "coordinates": [2.2088013850436523, 48.93442434515357]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "16e7263f9e28869d04a45c0d83640ba12d2c1d55", "fields": {"departement": "95", "stop_lat": 48.93789120540721, "code_postal": "95063", "stop_lon": 2.2068966159627, "coord": [48.93789120540721, 2.2068966159627], "stop_id": 4023710, "stop_desc": "1 AVENUE LUCIEN SAMPAIX - 95063", "stop_name": "LA BERTHIE"}, "geometry": {"type": "Point", "coordinates": [2.2068966159627, 48.93789120540721]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f435ed4629be31e9689ee870497399e0607458dd", "fields": {"departement": "95", "stop_lat": 48.941492827048634, "code_postal": "95018", "stop_lon": 2.2049912474439646, "coord": [48.941492827048634, 2.2049912474439646], "stop_id": 4023711, "stop_desc": "FACE 232 AVENUE GEORGES CLEMENCEAU - 95018", "stop_name": "VAL NOTRE-DAME"}, "geometry": {"type": "Point", "coordinates": [2.2049912474439646, 48.941492827048634]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c428428f003ab920dfdd905602f8b1acd76eaa3f", "fields": {"departement": "78", "stop_lat": 48.94534128527181, "code_postal": "78586", "stop_lon": 2.198923716897662, "coord": [48.94534128527181, 2.198923716897662], "stop_id": 4023719, "stop_desc": "10 RUE PAUL BERT - 78586", "stop_name": "PEGUY"}, "geometry": {"type": "Point", "coordinates": [2.198923716897662, 48.94534128527181]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "19c8a7e11af6ad3e8833f9616f2bd905b901efcb", "fields": {"departement": "78", "stop_lat": 48.943031052857464, "code_postal": "78586", "stop_lon": 2.1908669596744974, "coord": [48.943031052857464, 2.1908669596744974], "stop_id": 4023724, "stop_desc": "186 AV DU GENERAL CHARLES DE GAULLE - 78586", "stop_name": "RUE DE CHATOU"}, "geometry": {"type": "Point", "coordinates": [2.1908669596744974, 48.943031052857464]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "acdd52b4c33fcdec6d07dbe0247b769ed0cc2ef6", "fields": {"departement": "78", "stop_lat": 48.94489759833591, "code_postal": "78586", "stop_lon": 2.181625131483485, "coord": [48.94489759833591, 2.181625131483485], "stop_id": 4023726, "stop_desc": "AV ROBERT SCHUMAN - 78586", "stop_name": "CHARLES DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.181625131483485, 48.94489759833591]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2cfa43c901901736b79e4d00c222373cf20137ec", "fields": {"departement": "78", "stop_lat": 48.94111286342735, "code_postal": "78586", "stop_lon": 2.161295746500365, "coord": [48.94111286342735, 2.161295746500365], "stop_id": 4023741, "stop_desc": "39 AV JEAN JAURES - 78586", "stop_name": "POSTE"}, "geometry": {"type": "Point", "coordinates": [2.161295746500365, 48.94111286342735]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fedd7707a153b29090dd68ec8d8bfa9b7bb47166", "fields": {"departement": "78", "stop_lat": 48.938257820556124, "code_postal": "78586", "stop_lon": 2.157131114784443, "coord": [48.938257820556124, 2.157131114784443], "stop_id": 4023742, "stop_desc": "PL DES FUSILLES - 78586", "stop_name": "GARE DE SARTROUVILLE-RER"}, "geometry": {"type": "Point", "coordinates": [2.157131114784443, 48.938257820556124]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3960ce8248d19ecfb93c4f6fa7b4473870739296", "fields": {"departement": "78", "stop_lat": 48.936803538555424, "code_postal": "78586", "stop_lon": 2.158186548448623, "coord": [48.936803538555424, 2.158186548448623], "stop_id": 4023743, "stop_desc": "0 PL DES FUSILLES - 78586", "stop_name": "GARE DE SARTROUVILLE-RER"}, "geometry": {"type": "Point", "coordinates": [2.158186548448623, 48.936803538555424]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "62275697a2285cba1de4c3ac1fb76f6621501435", "fields": {"departement": "95", "stop_lat": 48.94624869872489, "code_postal": "95018", "stop_lon": 2.257711987423115, "coord": [48.94624869872489, 2.257711987423115], "stop_id": 4023746, "stop_desc": "PISTE GARE ROUTIERE - 95018", "stop_name": "GARE D'ARGENTEUIL"}, "geometry": {"type": "Point", "coordinates": [2.257711987423115, 48.94624869872489]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "17953747de4fc062a4f804beb80eb8b432f12dc0", "fields": {"departement": "95", "stop_lat": 48.94595216278769, "code_postal": "95018", "stop_lon": 2.2577533738675597, "coord": [48.94595216278769, 2.2577533738675597], "stop_id": 4023747, "stop_desc": "PLACE PIERRE SEMARD (GARE ROUTIERE) - 95018", "stop_name": "GARE D'ARGENTEUIL"}, "geometry": {"type": "Point", "coordinates": [2.2577533738675597, 48.94595216278769]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8656796db5085bd78b674dccb6fd4d3be477345c", "fields": {"departement": "95", "stop_lat": 48.942309095810884, "code_postal": "95018", "stop_lon": 2.2527793991309855, "coord": [48.942309095810884, 2.2527793991309855], "stop_id": 4023751, "stop_desc": "FACE 2 AVENUE GABRIEL PERI - 95018", "stop_name": "BORDEREL"}, "geometry": {"type": "Point", "coordinates": [2.2527793991309855, 48.942309095810884]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eefea1f5ec87477ebf1535296f12158514fc174a", "fields": {"departement": "95", "stop_lat": 48.945405030431886, "code_postal": "95018", "stop_lon": 2.2466347856910835, "coord": [48.945405030431886, 2.2466347856910835], "stop_id": 4023754, "stop_desc": "4 BOULEVARD JEANNE D'ARC - 95018", "stop_name": "BELIN"}, "geometry": {"type": "Point", "coordinates": [2.2466347856910835, 48.945405030431886]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e9b083527311b809f0a848fb04a5ab20534a5661", "fields": {"departement": "95", "stop_lat": 48.94443359375987, "code_postal": "95018", "stop_lon": 2.245504099137286, "coord": [48.94443359375987, 2.245504099137286], "stop_id": 4023757, "stop_desc": "27 BOULEVARD JEANNE D'ARC - 95018", "stop_name": "CALAIS"}, "geometry": {"type": "Point", "coordinates": [2.245504099137286, 48.94443359375987]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ec9e24c80dd9b163a2702fde2b3f48082fb55ab1", "fields": {"departement": "95", "stop_lat": 48.93091215309626, "code_postal": "95018", "stop_lon": 2.228573963573526, "coord": [48.93091215309626, 2.228573963573526], "stop_id": 4023768, "stop_desc": "206 RUE HENRI BARBUSSE - 95018", "stop_name": "GENERAL DELAMBRE"}, "geometry": {"type": "Point", "coordinates": [2.228573963573526, 48.93091215309626]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e2339fb156faf8cb92e9575ff1bcbf7f6de46a4c", "fields": {"departement": "95", "stop_lat": 48.9308152795792, "code_postal": "95063", "stop_lon": 2.2122475253612013, "coord": [48.9308152795792, 2.2122475253612013], "stop_id": 4023778, "stop_desc": "FACE AU 68 AV GABRIEL PERI - 95063", "stop_name": "PLACE DES DROITS DE L'HOMME"}, "geometry": {"type": "Point", "coordinates": [2.2122475253612013, 48.9308152795792]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a54151a6dd6af8eec0599df8b5382a47ccea5545", "fields": {"departement": "78", "stop_lat": 48.94164288591797, "code_postal": "78586", "stop_lon": 2.2025625007836407, "coord": [48.94164288591797, 2.2025625007836407], "stop_id": 4023784, "stop_desc": "191 AV GEORGES CLEMENCEAU - 78586", "stop_name": "CONDORCET"}, "geometry": {"type": "Point", "coordinates": [2.2025625007836407, 48.94164288591797]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c75013dcd87c6c4a8855fe7c50a1479da8cf15bb", "fields": {"departement": "78", "stop_lat": 48.94232568134956, "code_postal": "78586", "stop_lon": 2.202383369779194, "coord": [48.94232568134956, 2.202383369779194], "stop_id": 4023786, "stop_desc": "RUE FLORIAN - 78586", "stop_name": "ROMAIN ROLLAND"}, "geometry": {"type": "Point", "coordinates": [2.202383369779194, 48.94232568134956]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "86448470ec0c941c5050b864b1d533d851369d47", "fields": {"departement": "78", "stop_lat": 48.94618396789697, "code_postal": "78586", "stop_lon": 2.2050201937152143, "coord": [48.94618396789697, 2.2050201937152143], "stop_id": 4023788, "stop_desc": "6-8 RUE DU BERRY - 78586", "stop_name": "BERRY"}, "geometry": {"type": "Point", "coordinates": [2.2050201937152143, 48.94618396789697]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6347914b77ec804aa56902a14bfbf9c8a2fec25f", "fields": {"departement": "78", "stop_lat": 48.94607591500551, "code_postal": "78586", "stop_lon": 2.204829458486919, "coord": [48.94607591500551, 2.204829458486919], "stop_id": 4023789, "stop_desc": "FACE 20 RUE DU BERRY - 78586", "stop_name": "BERRY"}, "geometry": {"type": "Point", "coordinates": [2.204829458486919, 48.94607591500551]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bc8cae13575d1945b89333f12b40c3fb4ba38e97", "fields": {"departement": "78", "stop_lat": 48.93998903483855, "code_postal": "78586", "stop_lon": 2.1671656550053164, "coord": [48.93998903483855, 2.1671656550053164], "stop_id": 4023809, "stop_desc": "100 AVENUE MAURICE BERTEAUX - 78586", "stop_name": "JEAN MERMOZ"}, "geometry": {"type": "Point", "coordinates": [2.1671656550053164, 48.93998903483855]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3306212eef5417144125c855698bebdec16e2131", "fields": {"departement": "95", "stop_lat": 48.923235913397576, "code_postal": "95063", "stop_lon": 2.2177072361847747, "coord": [48.923235913397576, 2.2177072361847747], "stop_id": 4023819, "stop_desc": "0 R JULIUS ET ETHEL ROSENBERG - 95063", "stop_name": "PONT DE BEZONS"}, "geometry": {"type": "Point", "coordinates": [2.2177072361847747, 48.923235913397576]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4954436d1648bae57529183c2912c79ffcd2b4f0", "fields": {"departement": "78", "stop_lat": 48.94507245396814, "code_postal": "78586", "stop_lon": 2.1779272439126975, "coord": [48.94507245396814, 2.1779272439126975], "stop_id": 4023833, "stop_desc": "FACE 40 AV DU GENERAL CHARLES DE GAULLE - 78586", "stop_name": "PICARDIE"}, "geometry": {"type": "Point", "coordinates": [2.1779272439126975, 48.94507245396814]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a1b067e5a61a30efbfbb431ec499cbde5b11c01f", "fields": {"departement": "92", "stop_lat": 48.891720058404495, "code_postal": "92062", "stop_lon": 2.2393824402810596, "coord": [48.891720058404495, 2.2393824402810596], "stop_id": 4023962, "stop_desc": "PISTE GARE ROUTIERE - 92062", "stop_name": "LA DEFENSE-METRO-RER-TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.2393824402810596, 48.891720058404495]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "402ce3908071c59fd0c450f28f694f4252f16865", "fields": {"departement": "92", "stop_lat": 48.887476445957894, "code_postal": "92062", "stop_lon": 2.2373871042096263, "coord": [48.887476445957894, 2.2373871042096263], "stop_id": 4023965, "stop_desc": "FACE 23 R LOUIS POUEY - 92062", "stop_name": "BOIELDIEU"}, "geometry": {"type": "Point", "coordinates": [2.2373871042096263, 48.887476445957894]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6e86085704dadd29b7259d83a1958d5093ce38f3", "fields": {"departement": "92", "stop_lat": 48.883969094999905, "code_postal": "92062", "stop_lon": 2.2346411462534888, "coord": [48.883969094999905, 2.2346411462534888], "stop_id": 4023968, "stop_desc": "FACE145BIS RUE DE LA REPUBLIQUE - 92062", "stop_name": "GARE DE PUTEAUX"}, "geometry": {"type": "Point", "coordinates": [2.2346411462534888, 48.883969094999905]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0d18d96b19bdfbe660d37ee679aa94591f9426b7", "fields": {"departement": "92", "stop_lat": 48.87989863325634, "code_postal": "92050", "stop_lon": 2.216294664203322, "coord": [48.87989863325634, 2.216294664203322], "stop_id": 4023976, "stop_desc": "107 RUE DES PLAIDEURS - 92050", "stop_name": "ROMAIN ROLLAND"}, "geometry": {"type": "Point", "coordinates": [2.216294664203322, 48.87989863325634]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c24a1cd1eb730020dad62658a8ec6b9ccb05a1c2", "fields": {"departement": "92", "stop_lat": 48.87493598656726, "code_postal": "92063", "stop_lon": 2.190786735325377, "coord": [48.87493598656726, 2.190786735325377], "stop_id": 4023988, "stop_desc": "FACE 41 BOULEVARD EDMOND ROSTAND - 92063", "stop_name": "RUE DES FOLIES"}, "geometry": {"type": "Point", "coordinates": [2.190786735325377, 48.87493598656726]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5160826a3be0184fd3e4ccdbb2fdf2ac30275904", "fields": {"departement": "92", "stop_lat": 48.87303032905678, "code_postal": "92063", "stop_lon": 2.1905060055108567, "coord": [48.87303032905678, 2.1905060055108567], "stop_id": 4023989, "stop_desc": "22 AVENUE DU PRESIDENT POMPIDOU - 92063", "stop_name": "EDMOND ROSTAND"}, "geometry": {"type": "Point", "coordinates": [2.1905060055108567, 48.87303032905678]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a9604d8a447572379970c8d7b7ae2d116715594b", "fields": {"departement": "92", "stop_lat": 48.87367623584867, "code_postal": "92063", "stop_lon": 2.1895504546143014, "coord": [48.87367623584867, 2.1895504546143014], "stop_id": 4023990, "stop_desc": "FACE 10 R DES BONS RAISINS - 92063", "stop_name": "EDMOND ROSTAND"}, "geometry": {"type": "Point", "coordinates": [2.1895504546143014, 48.87367623584867]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b9fc1ec0ca475a535ee86ce1229e7d22bb835cde", "fields": {"departement": "92", "stop_lat": 48.87233180255828, "code_postal": "92063", "stop_lon": 2.1925379967787646, "coord": [48.87233180255828, 2.1925379967787646], "stop_id": 4023992, "stop_desc": "31 AVENUE DU PRESIDENT POMPIDOU - 92063", "stop_name": "SAINT-EXUPERY"}, "geometry": {"type": "Point", "coordinates": [2.1925379967787646, 48.87233180255828]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bd73145f7f6c356c04419943ae11cc102714f16c", "fields": {"departement": "92", "stop_lat": 48.87060156604863, "code_postal": "92063", "stop_lon": 2.1961395093841154, "coord": [48.87060156604863, 2.1961395093841154], "stop_id": 4023994, "stop_desc": "83 AVENUE DU PRESIDENT POMPIDOU - 92063", "stop_name": "LA PAIX"}, "geometry": {"type": "Point", "coordinates": [2.1961395093841154, 48.87060156604863]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1602d801d057f7b957daaf1f55b1cb5fa9c6c5c8", "fields": {"departement": "92", "stop_lat": 48.86064558670998, "code_postal": "92063", "stop_lon": 2.190391217473671, "coord": [48.86064558670998, 2.190391217473671], "stop_id": 4024007, "stop_desc": "56 RUE DU 19 JANVIER - 92063", "stop_name": "DUMOURIEZ"}, "geometry": {"type": "Point", "coordinates": [2.190391217473671, 48.86064558670998]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d97957d3aea8fb92e0a0e6973df20b66639f5af5", "fields": {"departement": "92", "stop_lat": 48.85922478767498, "code_postal": "92063", "stop_lon": 2.1897550626721047, "coord": [48.85922478767498, 2.1897550626721047], "stop_id": 4024009, "stop_desc": "FACE 77 RUE DU 19 JANVIER - 92063", "stop_name": "HENRI REGNAULT"}, "geometry": {"type": "Point", "coordinates": [2.1897550626721047, 48.85922478767498]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "708c3641fa57c3a0a351d535f6dac47d63a3b24e", "fields": {"departement": "92", "stop_lat": 48.861904935438034, "code_postal": "92063", "stop_lon": 2.1841353741025102, "coord": [48.861904935438034, 2.1841353741025102], "stop_id": 4024012, "stop_desc": "FACE 187BI ROUTE DE L'EMPEREUR - 92063", "stop_name": "OTIS MYGATT"}, "geometry": {"type": "Point", "coordinates": [2.1841353741025102, 48.861904935438034]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d9541fa131fa99e100cae61d774c9f67f47a1c58", "fields": {"departement": "92", "stop_lat": 48.86433506348356, "code_postal": "92063", "stop_lon": 2.1799461959180966, "coord": [48.86433506348356, 2.1799461959180966], "stop_id": 4024014, "stop_desc": "146 ROUTE DE L'EMPEREUR - 92063", "stop_name": "LYCEE DE RUEIL"}, "geometry": {"type": "Point", "coordinates": [2.1799461959180966, 48.86433506348356]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "47cf4a4071049b1bbaed60f66c0485c6c485eb18", "fields": {"departement": "92", "stop_lat": 48.891720058404495, "code_postal": "92062", "stop_lon": 2.2393824402810596, "coord": [48.891720058404495, 2.2393824402810596], "stop_id": 4024019, "stop_desc": "PISTE GARE ROUTIERE - 92062", "stop_name": "LA DEFENSE-METRO-RER-TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.2393824402810596, 48.891720058404495]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "35fafc5fab62423fa7f25f304ac8df41d5bc0dea", "fields": {"departement": "92", "stop_lat": 48.88371676955176, "code_postal": "92062", "stop_lon": 2.233851265998093, "coord": [48.88371676955176, 2.233851265998093], "stop_id": 4024026, "stop_desc": "RUE DE LA REPUBLIQUE - 92062", "stop_name": "GARE DE PUTEAUX"}, "geometry": {"type": "Point", "coordinates": [2.233851265998093, 48.88371676955176]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4c69757c703b95e1d02a9a506393ebd429bd7885", "fields": {"departement": "92", "stop_lat": 48.877022210574445, "code_postal": "92063", "stop_lon": 2.1992967712593696, "coord": [48.877022210574445, 2.1992967712593696], "stop_id": 4024042, "stop_desc": "114 RUE DANTON - 92063", "stop_name": "VOLTAIRE"}, "geometry": {"type": "Point", "coordinates": [2.1992967712593696, 48.877022210574445]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bc232a3a6b0d728c5af5fe243dc9c9513ba4665e", "fields": {"departement": "92", "stop_lat": 48.87525070883133, "code_postal": "92063", "stop_lon": 2.1909220964409992, "coord": [48.87525070883133, 2.1909220964409992], "stop_id": 4024044, "stop_desc": "39 BOULEVARD EDMOND ROSTAND - 92063", "stop_name": "RUE DES FOLIES"}, "geometry": {"type": "Point", "coordinates": [2.1909220964409992, 48.87525070883133]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dd8a34c2ef6bb351133567ac5dc4996240d7d7d8", "fields": {"departement": "92", "stop_lat": 48.87367623584867, "code_postal": "92063", "stop_lon": 2.1895504546143014, "coord": [48.87367623584867, 2.1895504546143014], "stop_id": 4024047, "stop_desc": "FACE 10 R DES BONS RAISINS - 92063", "stop_name": "EDMOND ROSTAND"}, "geometry": {"type": "Point", "coordinates": [2.1895504546143014, 48.87367623584867]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "24272378fa0f09167af29fc199c65821b3c63301", "fields": {"departement": "92", "stop_lat": 48.87233180255828, "code_postal": "92063", "stop_lon": 2.1925379967787646, "coord": [48.87233180255828, 2.1925379967787646], "stop_id": 4024049, "stop_desc": "31 AVENUE DU PRESIDENT POMPIDOU - 92063", "stop_name": "SAINT-EXUPERY"}, "geometry": {"type": "Point", "coordinates": [2.1925379967787646, 48.87233180255828]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8414bcc7ae08671858c9b4f52875871ac7eb5609", "fields": {"departement": "92", "stop_lat": 48.86921083861, "code_postal": "92063", "stop_lon": 2.1981050688502193, "coord": [48.86921083861, 2.1981050688502193], "stop_id": 4024053, "stop_desc": "103 AVENUE DU PRESIDENT POMPIDOU - 92063", "stop_name": "RACINE"}, "geometry": {"type": "Point", "coordinates": [2.1981050688502193, 48.86921083861]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5f306bfb0060235b6127b199de31b47ee726e8ed", "fields": {"departement": "92", "stop_lat": 48.86249754050552, "code_postal": "92063", "stop_lon": 2.1908354879595704, "coord": [48.86249754050552, 2.1908354879595704], "stop_id": 4024063, "stop_desc": "9 RUE DU 19 JANVIER - 92063", "stop_name": "CARREY DE BELLEMARE"}, "geometry": {"type": "Point", "coordinates": [2.1908354879595704, 48.86249754050552]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5d65344525c8d35ff895eaaada61c8479642d804", "fields": {"departement": "92", "stop_lat": 48.8611850815715, "code_postal": "92063", "stop_lon": 2.1905940095910346, "coord": [48.8611850815715, 2.1905940095910346], "stop_id": 4024065, "stop_desc": "FACE 44 RUE DU 19 JANVIER - 92063", "stop_name": "DUMOURIEZ"}, "geometry": {"type": "Point", "coordinates": [2.1905940095910346, 48.8611850815715]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a03380ebe0b141be0f9afff9483a93e7cb8627af", "fields": {"departement": "92", "stop_lat": 48.85922478767498, "code_postal": "92063", "stop_lon": 2.1897550626721047, "coord": [48.85922478767498, 2.1897550626721047], "stop_id": 4024066, "stop_desc": "FACE 77 RUE DU 19 JANVIER - 92063", "stop_name": "HENRI REGNAULT"}, "geometry": {"type": "Point", "coordinates": [2.1897550626721047, 48.85922478767498]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3517a33ccb7f950f06aeceedb2344f4818f6fe30", "fields": {"departement": "92", "stop_lat": 48.861904935438034, "code_postal": "92063", "stop_lon": 2.1841353741025102, "coord": [48.861904935438034, 2.1841353741025102], "stop_id": 4024069, "stop_desc": "FACE 187BI ROUTE DE L'EMPEREUR - 92063", "stop_name": "OTIS MYGATT"}, "geometry": {"type": "Point", "coordinates": [2.1841353741025102, 48.861904935438034]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a739761a6ace5cc43ce151195b6697cf37a06b67", "fields": {"departement": "92", "stop_lat": 48.902081582947574, "code_postal": "92050", "stop_lon": 2.1942543460740294, "coord": [48.902081582947574, 2.1942543460740294], "stop_id": 4024081, "stop_desc": "BOULEVARD DE LA SEINE - 92050", "stop_name": "LANNES"}, "geometry": {"type": "Point", "coordinates": [2.1942543460740294, 48.902081582947574]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0d2f4ab10d2907a161bc6d3ef47c0dafc47bf916", "fields": {"departement": "92", "stop_lat": 48.900114030298596, "code_postal": "92050", "stop_lon": 2.1947777750056336, "coord": [48.900114030298596, 2.1947777750056336], "stop_id": 4024082, "stop_desc": "37 BOULEVARD DE LA SEINE - 92050", "stop_name": "VOLTAIRE"}, "geometry": {"type": "Point", "coordinates": [2.1947777750056336, 48.900114030298596]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8a22e61501f0f064cab05978ff6dea634b2fe2a2", "fields": {"departement": "92", "stop_lat": 48.89496293986389, "code_postal": "92050", "stop_lon": 2.1935652180158973, "coord": [48.89496293986389, 2.1935652180158973], "stop_id": 4024089, "stop_desc": "29 AVENUE HENRI MARTIN - 92050", "stop_name": "JULES QUENTIN"}, "geometry": {"type": "Point", "coordinates": [2.1935652180158973, 48.89496293986389]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e65ffdb9fec555276dfa793a28ac7afe8df26d24", "fields": {"departement": "92", "stop_lat": 48.888311386542, "code_postal": "92050", "stop_lon": 2.192711436545793, "coord": [48.888311386542, 2.192711436545793], "stop_id": 4024093, "stop_desc": "42-50 AVENUE LENINE - 92050", "stop_name": "FOCH"}, "geometry": {"type": "Point", "coordinates": [2.192711436545793, 48.888311386542]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a7e91ca8a6128a65946de16f67782d9ab9060c43", "fields": {"departement": "92", "stop_lat": 48.886962342334975, "code_postal": "92050", "stop_lon": 2.199488364504161, "coord": [48.886962342334975, 2.199488364504161], "stop_id": 4024094, "stop_desc": "PLACE DE LA BOULE - 92050", "stop_name": "PLACE DE LA BOULE - LENINE"}, "geometry": {"type": "Point", "coordinates": [2.199488364504161, 48.886962342334975]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d1e632c5b9fb7ad82705b3339a88b146a205547a", "fields": {"departement": "92", "stop_lat": 48.87591876669899, "code_postal": "92063", "stop_lon": 2.201030107440782, "coord": [48.87591876669899, 2.201030107440782], "stop_id": 4024101, "stop_desc": "RUE GALLIENI - 92063", "stop_name": "EUGENE SUE"}, "geometry": {"type": "Point", "coordinates": [2.201030107440782, 48.87591876669899]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6f8fd00ec075e9c442237f32360e1862be761cf7", "fields": {"departement": "92", "stop_lat": 48.85955644215121, "code_postal": "92063", "stop_lon": 2.181990205263972, "coord": [48.85955644215121, 2.181990205263972], "stop_id": 4024104, "stop_desc": "105 AV DE LA CHATAIGNERAIE - 92063", "stop_name": "COLLEGE PASSY - BUZENVAL"}, "geometry": {"type": "Point", "coordinates": [2.181990205263972, 48.85955644215121]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4be1fafbde256dfd76234ca91743471aaada9587", "fields": {"departement": "92", "stop_lat": 48.86128502730734, "code_postal": "92063", "stop_lon": 2.1708972435685348, "coord": [48.86128502730734, 2.1708972435685348], "stop_id": 4024106, "stop_desc": "RUE DE LA CHATAIGNERAIE - 92063", "stop_name": "CENTRE MADELEINE DANIELOU"}, "geometry": {"type": "Point", "coordinates": [2.1708972435685348, 48.86128502730734]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "36953cc28c8655e9509c17c0c32e13bd03ce52c9", "fields": {"departement": "92", "stop_lat": 48.867316519297965, "code_postal": "92063", "stop_lon": 2.199840265182229, "coord": [48.867316519297965, 2.199840265182229], "stop_id": 4024144, "stop_desc": "FACE 123 AVENUE DU PRESIDENT POMPIDOU - 92063", "stop_name": "AVENUE DU MONT VALERIEN"}, "geometry": {"type": "Point", "coordinates": [2.199840265182229, 48.867316519297965]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0ff944cb5334ca47029581eb3b409b2f8baaad70", "fields": {"departement": "92", "stop_lat": 48.86284606766256, "code_postal": "92063", "stop_lon": 2.1966509969329566, "coord": [48.86284606766256, 2.1966509969329566], "stop_id": 4024149, "stop_desc": "83 RUE DU LIEUTENANT COLONEL DE MONTBRISON - 92063", "stop_name": "LES MAZURIERES"}, "geometry": {"type": "Point", "coordinates": [2.1966509969329566, 48.86284606766256]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e5df1e471b3b4fc2b536e073d7a5888108098f00", "fields": {"departement": "92", "stop_lat": 48.86259620059796, "code_postal": "92063", "stop_lon": 2.190671749013255, "coord": [48.86259620059796, 2.190671749013255], "stop_id": 4024152, "stop_desc": "FACE 7 RUE DU 19 JANVIER - 92063", "stop_name": "CARREY DE BELLEMARE"}, "geometry": {"type": "Point", "coordinates": [2.190671749013255, 48.86259620059796]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "11c87ef2c2da8af7907b156ac662ecc6b165de37", "fields": {"departement": "75", "stop_lat": 48.89315301342331, "code_postal": "75118", "stop_lon": 2.344764650722631, "coord": [48.89315301342331, 2.344764650722631], "stop_id": 3749932, "stop_desc": "FACE 85-87 R DU MONT CENIS - 75118", "stop_name": "MAIRIE DU 18E - JULES JOFFRIN"}, "geometry": {"type": "Point", "coordinates": [2.344764650722631, 48.89315301342331]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "df20f0a8eede170e02827dd0d85eeefec4a7aa0f", "fields": {"departement": "92", "stop_lat": 48.90583965879505, "code_postal": "92024", "stop_lon": 2.308775253309294, "coord": [48.90583965879505, 2.308775253309294], "stop_id": 3749973, "stop_desc": "51 RUE DU LANDY - 92024", "stop_name": "VILLENEUVE - GENERAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.308775253309294, 48.90583965879505]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "077c13fe9506fbd02af078692f013441d9515a0f", "fields": {"departement": "92", "stop_lat": 48.908858980420824, "code_postal": "92024", "stop_lon": 2.307423843582273, "coord": [48.908858980420824, 2.307423843582273], "stop_id": 3749972, "stop_desc": "114 BOULEVARD DU GENERAL LECLERC - 92024", "stop_name": "HOPITAL BEAUJON"}, "geometry": {"type": "Point", "coordinates": [2.307423843582273, 48.908858980420824]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a5883db60cc74bc3fcd80a42421b863ea8dd1627", "fields": {"departement": "75", "stop_lat": 48.889567355855185, "code_postal": "75118", "stop_lon": 2.338821990099936, "coord": [48.889567355855185, 2.338821990099936], "stop_id": 3749928, "stop_desc": "100-102 RUE CAULAINCOURT - 75118", "stop_name": "LAMARCK - CAULAINCOURT"}, "geometry": {"type": "Point", "coordinates": [2.338821990099936, 48.889567355855185]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4076e809c1663ad86bea2bb5955809637d9c3c47", "fields": {"departement": "92", "stop_lat": 48.90670341784406, "code_postal": "92024", "stop_lon": 2.313328291363668, "coord": [48.90670341784406, 2.313328291363668], "stop_id": 3749964, "stop_desc": "63 RUE GEORGES BOISSEAU - 92024", "stop_name": "FONDATION ROGUET"}, "geometry": {"type": "Point", "coordinates": [2.313328291363668, 48.90670341784406]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "547b5c156bd1dececb75c4753304802d56471b40", "fields": {"departement": "75", "stop_lat": 48.8897110005581, "code_postal": "75118", "stop_lon": 2.343442158157412, "coord": [48.8897110005581, 2.343442158157412], "stop_id": 3749931, "stop_desc": "60-62 RUE CUSTINE - 75118", "stop_name": "CUSTINE - MONT-CENIS"}, "geometry": {"type": "Point", "coordinates": [2.343442158157412, 48.8897110005581]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "be5650f0f8970495c7c4c991dbcd3a8396acbd24", "fields": {"departement": "75", "stop_lat": 48.88948647367653, "code_postal": "75118", "stop_lon": 2.335891808026993, "coord": [48.88948647367653, 2.335891808026993], "stop_id": 3749926, "stop_desc": "58 RUE CAULAINCOURT - 75118", "stop_name": "SQUARE CAULAINCOURT"}, "geometry": {"type": "Point", "coordinates": [2.335891808026993, 48.88948647367653]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c4c2bc226211bc6f32d5f151d0744e57ed7debfb", "fields": {"departement": "75", "stop_lat": 48.9010167082799, "code_postal": "75117", "stop_lon": 2.3290074586280136, "coord": [48.9010167082799, 2.3290074586280136], "stop_id": 3749953, "stop_desc": "12 RUE TOULOUSE-LAUTREC - 75117", "stop_name": "TOULOUSE-LAUTREC"}, "geometry": {"type": "Point", "coordinates": [2.3290074586280136, 48.9010167082799]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "872b755cc651ddab392eca97ab7167594cb09615", "fields": {"departement": "75", "stop_lat": 48.89538188156463, "code_postal": "75118", "stop_lon": 2.330643990378814, "coord": [48.89538188156463, 2.330643990378814], "stop_id": 3749995, "stop_desc": "FACE 28 R FIRMIN GEMIER - 75118", "stop_name": "FIRMIN GEMIER"}, "geometry": {"type": "Point", "coordinates": [2.330643990378814, 48.89538188156463]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "edfc7b8fcd22868110cf07c4836d19144221fcd5", "fields": {"departement": "75", "stop_lat": 48.89014225050806, "code_postal": "75118", "stop_lon": 2.345650093872668, "coord": [48.89014225050806, 2.345650093872668], "stop_id": 3749934, "stop_desc": "59 RUE RAMEY - 75118", "stop_name": "MARCADET"}, "geometry": {"type": "Point", "coordinates": [2.345650093872668, 48.89014225050806]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6bef3d222972c470b3b2474bc52bfff3b746adb0", "fields": {"departement": "75", "stop_lat": 48.891283743428836, "code_postal": "75118", "stop_lon": 2.3307944343726006, "coord": [48.891283743428836, 2.3307944343726006], "stop_id": 3749999, "stop_desc": "27 BIS R JOSEPH DE MAISTRE - 75118", "stop_name": "HOPITAL BRETONNEAU"}, "geometry": {"type": "Point", "coordinates": [2.3307944343726006, 48.891283743428836]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3bf249aac93d08c65e2d0dbb1b00aea3ae3ee7da", "fields": {"departement": "75", "stop_lat": 48.89876598374683, "code_postal": "75118", "stop_lon": 2.369015339646523, "coord": [48.89876598374683, 2.369015339646523], "stop_id": 3750041, "stop_desc": "4 BOULEVARD NEY - 75118", "stop_name": "PORTE D'AUBERVILLIERS."}, "geometry": {"type": "Point", "coordinates": [2.369015339646523, 48.89876598374683]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f7af48744db4b692f041ef78f58a3b29856bbba3", "fields": {"departement": "75", "stop_lat": 48.88440771648958, "code_postal": "75117", "stop_lon": 2.3218829668409033, "coord": [48.88440771648958, 2.3218829668409033], "stop_id": 3750003, "stop_desc": "18 RUE DES BATIGNOLLES - 75117", "stop_name": "MAIRIE DU 17E"}, "geometry": {"type": "Point", "coordinates": [2.3218829668409033, 48.88440771648958]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "056d4f6c7a72ca679da10512a70cb2be2d3ac59c", "fields": {"departement": "75", "stop_lat": 48.8861598193159, "code_postal": "75117", "stop_lon": 2.3190069671238276, "coord": [48.8861598193159, 2.3190069671238276], "stop_id": 3750004, "stop_desc": "56-58 RUE DES BATIGNOLLES - 75117", "stop_name": "LOBLIGEOIS"}, "geometry": {"type": "Point", "coordinates": [2.3190069671238276, 48.8861598193159]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3a3519ade6c2182a0b6daf70e67933342c440c38", "fields": {"departement": "75", "stop_lat": 48.89975470008927, "code_postal": "75118", "stop_lon": 2.368511582228615, "coord": [48.89975470008927, 2.368511582228615], "stop_id": 3750047, "stop_desc": "13 RUE CHARLES HERMITE - 75118", "stop_name": "CHARLES HERMITE"}, "geometry": {"type": "Point", "coordinates": [2.368511582228615, 48.89975470008927]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c599dfce908a115827cdbe2b0f90cabe8eb130f8", "fields": {"departement": "75", "stop_lat": 48.88638546756796, "code_postal": "75117", "stop_lon": 2.3271427602819, "coord": [48.88638546756796, 2.3271427602819], "stop_id": 3750002, "stop_desc": "6 R DES DAMES - 75117", "stop_name": "GANNERON - DAMES"}, "geometry": {"type": "Point", "coordinates": [2.3271427602819, 48.88638546756796]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "80646ca2ed07a05b4f2ad07e8d9c695eb425ecb9", "fields": {"departement": "94", "stop_lat": 48.72927730804932, "code_postal": "94054", "stop_lon": 2.3598630243856316, "coord": [48.72927730804932, 2.3598630243856316], "stop_id": 3754207, "stop_desc": "AEROPORT D'ORLY-OUEST - 94054", "stop_name": "ORLY OUEST"}, "geometry": {"type": "Point", "coordinates": [2.3598630243856316, 48.72927730804932]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6c1c5ff93db1f461e0599254e48219820f7696f6", "fields": {"departement": "75", "stop_lat": 48.90157161500971, "code_postal": "75118", "stop_lon": 2.362051147267967, "coord": [48.90157161500971, 2.362051147267967], "stop_id": 3750044, "stop_desc": "FACE 23 IMPASSE MARTEAU - 75118", "stop_name": "ABEILLE"}, "geometry": {"type": "Point", "coordinates": [2.362051147267967, 48.90157161500971]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "41a8e81c689163b2ca71d2e92c9e04fbbd625ec3", "fields": {"departement": "75", "stop_lat": 48.89282937379386, "code_postal": "75118", "stop_lon": 2.328272761751626, "coord": [48.89282937379386, 2.328272761751626], "stop_id": 3749997, "stop_desc": "251 R MARCADET - 75118", "stop_name": "GUY MOQUET"}, "geometry": {"type": "Point", "coordinates": [2.328272761751626, 48.89282937379386]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "632c8cd7949f4aa661b95bc9cc180db26a05b88c", "fields": {"departement": "75", "stop_lat": 48.823886704556706, "code_postal": "75113", "stop_lon": 2.3482936191281167, "coord": [48.823886704556706, 2.3482936191281167], "stop_id": 3754264, "stop_desc": "84 RUE BOBILLOT - 75113", "stop_name": "BOBILLOT"}, "geometry": {"type": "Point", "coordinates": [2.3482936191281167, 48.823886704556706]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "156d2612283175cec8e39303d63ab8b26879f67c", "fields": {"departement": "91", "stop_lat": 48.71720114381044, "code_postal": "91477", "stop_lon": 2.260344358801258, "coord": [48.71720114381044, 2.260344358801258], "stop_id": 3757179, "stop_desc": "29 AVENUE DES COSMONAUTES - 91477", "stop_name": "COSMONAUTES-FLAUBERT"}, "geometry": {"type": "Point", "coordinates": [2.260344358801258, 48.71720114381044]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b9a4f3948f0f80af7689afab5c84ed9305a80eeb", "fields": {"departement": "94", "stop_lat": 48.80624429579577, "code_postal": "94003", "stop_lon": 2.3373091071086356, "coord": [48.80624429579577, 2.3373091071086356], "stop_id": 3755000, "stop_desc": "10 AV PAUL DOUMER - 94003", "stop_name": "HOTEL DE VILLE - CENTRE"}, "geometry": {"type": "Point", "coordinates": [2.3373091071086356, 48.80624429579577]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "13a05fce8a022bcc291c43a9b0a88fdeeb98dbec", "fields": {"departement": "91", "stop_lat": 48.71059686538975, "code_postal": "91136", "stop_lon": 2.2638718288836572, "coord": [48.71059686538975, 2.2638718288836572], "stop_id": 3757185, "stop_desc": "FACE 7-9 RUE DE LA BRETECHE - 91136", "stop_name": "BUTTE CHAUMONT"}, "geometry": {"type": "Point", "coordinates": [2.2638718288836572, 48.71059686538975]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ded189957aa41aa79e9ed1c9502d3c6be9628390", "fields": {"departement": "92", "stop_lat": 48.80291641377826, "code_postal": "92020", "stop_lon": 2.2852116586530387, "coord": [48.80291641377826, 2.2852116586530387], "stop_id": 5315292, "stop_desc": "R JEAN PIERRE TIMBAUD - 92020", "stop_name": "JEAN-PIERRE TIMBAUD"}, "geometry": {"type": "Point", "coordinates": [2.2852116586530387, 48.80291641377826]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bee1899554866f815666fa524bc985cfd554aff3", "fields": {"departement": "92", "stop_lat": 48.804006538371624, "code_postal": "92020", "stop_lon": 2.2915374981646384, "coord": [48.804006538371624, 2.2915374981646384], "stop_id": 5315298, "stop_desc": "FACE 9 BIS R JEAN MACE - 92020", "stop_name": "HENRI GATINOT"}, "geometry": {"type": "Point", "coordinates": [2.2915374981646384, 48.804006538371624]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "74d15e4857e6aaba94c8e9825f0110e952a3faa1", "fields": {"departement": "92", "stop_lat": 48.79994385199227, "code_postal": "92020", "stop_lon": 2.2910512864175656, "coord": [48.79994385199227, 2.2910512864175656], "stop_id": 5315303, "stop_desc": "AVENUE DE LA REPUBLIQUE - 92020", "stop_name": "MAIRIE DE CHATILLON"}, "geometry": {"type": "Point", "coordinates": [2.2910512864175656, 48.79994385199227]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "68ba893eb972a9d5d6373084c8c732d5436556fb", "fields": {"departement": "94", "stop_lat": 48.82245788268191, "code_postal": "94018", "stop_lon": 2.403200663736245, "coord": [48.82245788268191, 2.403200663736245], "stop_id": 5325157, "stop_desc": "4 BIS AVENUE DE LA LIBERTE - 94018", "stop_name": "PONT NELSON MANDELA - RIVE DROITE"}, "geometry": {"type": "Point", "coordinates": [2.403200663736245, 48.82245788268191]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "01bc49d10ef7c87d2a0bd412d34d6e2ffa15663c", "fields": {"departement": "94", "stop_lat": 48.82724767413975, "code_postal": "94018", "stop_lon": 2.404336579928587, "coord": [48.82724767413975, 2.404336579928587], "stop_id": 5325162, "stop_desc": "10 RUE DU GENERAL CHANZY - 94018", "stop_name": "LIBERTE-CHANZY"}, "geometry": {"type": "Point", "coordinates": [2.404336579928587, 48.82724767413975]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bbb95ca1f417ebeef789f6a557af7f7448069e00", "fields": {"departement": "75", "stop_lat": 48.897555878917444, "code_postal": "75119", "stop_lon": 2.386230382374741, "coord": [48.897555878917444, 2.386230382374741], "stop_id": 5355344, "stop_desc": "81-83 BD MACDONALD - 75119", "stop_name": "PORTE DE LA VILLETTE"}, "geometry": {"type": "Point", "coordinates": [2.386230382374741, 48.897555878917444]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c0b2b4e3e85ba80d32772d3f65892b055f962cae", "fields": {"departement": "75", "stop_lat": 48.89741211839957, "code_postal": "75119", "stop_lon": 2.386148461529299, "coord": [48.89741211839957, 2.386148461529299], "stop_id": 5355345, "stop_desc": "81/83 BD MACDONALD - 75119", "stop_name": "PORTE DE LA VILLETTE"}, "geometry": {"type": "Point", "coordinates": [2.386148461529299, 48.89741211839957]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ae19a4bc80aa7bc38ce6546bf5f003210a974a69", "fields": {"departement": "93", "stop_lat": 48.90815463608495, "code_postal": "93001", "stop_lon": 2.378360148584278, "coord": [48.90815463608495, 2.378360148584278], "stop_id": 5355353, "stop_desc": "119 BOULEVARD FELIX FAURE - 93001", "stop_name": "VICTOR HUGO - FELIX FAURE"}, "geometry": {"type": "Point", "coordinates": [2.378360148584278, 48.90815463608495]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8b98009f52090fe46ccbcaa662adcff919c05ee9", "fields": {"departement": "93", "stop_lat": 48.90908415338688, "code_postal": "93066", "stop_lon": 2.3650269328256974, "coord": [48.90908415338688, 2.3650269328256974], "stop_id": 5355363, "stop_desc": "R DE LA METALLURGIE - 93066", "stop_name": "METALLURGIE"}, "geometry": {"type": "Point", "coordinates": [2.3650269328256974, 48.90908415338688]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bd7d60a2bb0772d7ec2526c550d4fab2ac5e5e40", "fields": {"departement": "93", "stop_lat": 48.91858416019787, "code_postal": "93066", "stop_lon": 2.361663835852147, "coord": [48.91858416019787, 2.361663835852147], "stop_id": 5355369, "stop_desc": "AVENUE DU STADE DE FRANCE - 93066", "stop_name": "LA PLAINE - STADE DE FRANCE RER"}, "geometry": {"type": "Point", "coordinates": [2.361663835852147, 48.91858416019787]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e6cc5f1bd022d4340d17c484aabbebabbef3ae4b", "fields": {"departement": "93", "stop_lat": 48.918055082500004, "code_postal": "93066", "stop_lon": 2.355159090829287, "coord": [48.918055082500004, 2.355159090829287], "stop_id": 5355373, "stop_desc": "3 AVENUE FRANCOIS MITTERRAND - 93066", "stop_name": "AVENUE DES FRUITIERS"}, "geometry": {"type": "Point", "coordinates": [2.355159090829287, 48.918055082500004]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c1047f57a25e9cf5eb283b6056815fb314e24ce8", "fields": {"departement": "93", "stop_lat": 48.915637938262854, "code_postal": "93066", "stop_lon": 2.3526083938828766, "coord": [48.915637938262854, 2.3526083938828766], "stop_id": 5355376, "stop_desc": "FACE 4 R DES CHEMINOTS - 93066", "stop_name": "LANDY - CHEMINOTS"}, "geometry": {"type": "Point", "coordinates": [2.3526083938828766, 48.915637938262854]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cf047634e364f501a7f0c76158bc5762b98269ad", "fields": {"departement": "93", "stop_lat": 48.914577941456194, "code_postal": "93066", "stop_lon": 2.34838112314179, "coord": [48.914577941456194, 2.34838112314179], "stop_id": 5355379, "stop_desc": "149 RUE DU LANDY - 93066", "stop_name": "LANDY - PLEYEL"}, "geometry": {"type": "Point", "coordinates": [2.34838112314179, 48.914577941456194]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "802e975b9b89a3a4f66f63ffa8041d625a405405", "fields": {"departement": "93", "stop_lat": 48.92293629615535, "code_postal": "93066", "stop_lon": 2.3407186190716502, "coord": [48.92293629615535, 2.3407186190716502], "stop_id": 5355385, "stop_desc": "RUE AMPERE - 93066", "stop_name": "RUE AMPERE"}, "geometry": {"type": "Point", "coordinates": [2.3407186190716502, 48.92293629615535]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0aa3a7be9f4059933ba60bfc424e15d4c9c41a0e", "fields": {"departement": "93", "stop_lat": 48.90658593057732, "code_postal": "93001", "stop_lon": 2.364248498940453, "coord": [48.90658593057732, 2.364248498940453], "stop_id": 5355393, "stop_desc": "AVENUE GEORGE SAND - 93001", "stop_name": "FRONT POPULAIRE-PROUDHON"}, "geometry": {"type": "Point", "coordinates": [2.364248498940453, 48.90658593057732]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d95f87b6268483558004826bd38fc6b9a9d4bc01", "fields": {"departement": "93", "stop_lat": 48.90644795106903, "code_postal": "93001", "stop_lon": 2.3757957518622668, "coord": [48.90644795106903, 2.3757957518622668], "stop_id": 5355395, "stop_desc": "94-96 AVENUE VICTOR HUGO - 93001", "stop_name": "GARDINOUX"}, "geometry": {"type": "Point", "coordinates": [2.3757957518622668, 48.90644795106903]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dd9e22e6e573252f14ebbb1e2502b5c0093b8f72", "fields": {"departement": "92", "stop_lat": 48.78549509334643, "code_postal": "92060", "stop_lon": 2.279162864594655, "coord": [48.78549509334643, 2.279162864594655], "stop_id": 5370698, "stop_desc": "29-29 BIS AVENUE RAYMOND CROLAND - 92060", "stop_name": "PASTEUR"}, "geometry": {"type": "Point", "coordinates": [2.279162864594655, 48.78549509334643]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f099a90ad2eab734e3588cd37d6a890b76c46a91", "fields": {"departement": "92", "stop_lat": 48.79383837894482, "code_postal": "92032", "stop_lon": 2.28452697039672, "coord": [48.79383837894482, 2.28452697039672], "stop_id": 5370703, "stop_desc": "118 RUE BOUCICAUT - 92032", "stop_name": "ANDRE SALEL"}, "geometry": {"type": "Point", "coordinates": [2.28452697039672, 48.79383837894482]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b710a94cdc5a2a9ca8bcab15d01ffb6ef99e3817", "fields": {"departement": "92", "stop_lat": 48.81550629521654, "code_postal": "92049", "stop_lon": 2.3049461590607536, "coord": [48.81550629521654, 2.3049461590607536], "stop_id": 5370714, "stop_desc": "135-137 AVENUE PIERRE BROSSOLETTE - 92049", "stop_name": "AUGUSTIN DUMONT"}, "geometry": {"type": "Point", "coordinates": [2.3049461590607536, 48.81550629521654]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ccb24a5bcc69b6a3177f40027fb63ba2b2c4b549", "fields": {"departement": "75", "stop_lat": 48.82332914428735, "code_postal": "75114", "stop_lon": 2.32313969054984, "coord": [48.82332914428735, 2.32313969054984], "stop_id": 5370719, "stop_desc": "1 AVENUE DE LA PORTE DE MONTROUGE - 75114", "stop_name": "PORTE D'ORLEANS - ERNEST REYER"}, "geometry": {"type": "Point", "coordinates": [2.32313969054984, 48.82332914428735]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fd75df475ad1523043ae05adbf039215f29892ef", "fields": {"departement": "94", "stop_lat": 48.76276779077695, "code_postal": "94021", "stop_lon": 2.3578518672898063, "coord": [48.76276779077695, 2.3578518672898063], "stop_id": 5396938, "stop_desc": "AVENUE DE LA CITE - 94021", "stop_name": "MARCHE INTERNATIONAL DE RUNGIS"}, "geometry": {"type": "Point", "coordinates": [2.3578518672898063, 48.76276779077695]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f5a815e5cd7ef5d51be45e6b6305ecf2a4d80a11", "fields": {"departement": "94", "stop_lat": 48.8255747954595, "code_postal": "94018", "stop_lon": 2.406389823927422, "coord": [48.8255747954595, 2.406389823927422], "stop_id": 5411351, "stop_desc": "FACE 16 AVENUE DE LA LIBERTE - 94018", "stop_name": "LIBERTE"}, "geometry": {"type": "Point", "coordinates": [2.406389823927422, 48.8255747954595]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f9e7652c16d39c7c2dfb38047bc3c53eb6b0ca95", "fields": {"departement": "94", "stop_lat": 48.8255747954595, "code_postal": "94018", "stop_lon": 2.406389823927422, "coord": [48.8255747954595, 2.406389823927422], "stop_id": 5411352, "stop_desc": "FACE 16 AVENUE DE LA LIBERTE - 94018", "stop_name": "LIBERTE"}, "geometry": {"type": "Point", "coordinates": [2.406389823927422, 48.8255747954595]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "21a059e79ba3a46fa152cd69c9403dc37e52acf7", "fields": {"departement": "92", "stop_lat": 48.829986868403815, "code_postal": "92012", "stop_lon": 2.2304597586909325, "coord": [48.829986868403815, 2.2304597586909325], "stop_id": 5419723, "stop_desc": "AVENUE DU GENERAL LECLERC - 92012", "stop_name": "PONT DE SEVRES"}, "geometry": {"type": "Point", "coordinates": [2.2304597586909325, 48.829986868403815]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "977be42092fe656c2c067ab22c41f0e13150c3ef", "fields": {"departement": "92", "stop_lat": 48.89966475050333, "code_postal": "92044", "stop_lon": 2.305697945869282, "coord": [48.89966475050333, 2.305697945869282], "stop_id": 5419725, "stop_desc": "36 BIS RUE HENRI BARBUSSE - 92044", "stop_name": "JAURES - BARBUSSE"}, "geometry": {"type": "Point", "coordinates": [2.305697945869282, 48.89966475050333]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "102144df1305e27ec5274974c63e0a9113df6799", "fields": {"departement": "92", "stop_lat": 48.88763812082074, "code_postal": "92050", "stop_lon": 2.200999307080737, "coord": [48.88763812082074, 2.200999307080737], "stop_id": 5419728, "stop_desc": "FACE 2 AVENUE FREDERIC ET IRENE JOLIOT CURIE - 92050", "stop_name": "PLACE DE LA BOULE - JOLIOT CURIE"}, "geometry": {"type": "Point", "coordinates": [2.200999307080737, 48.88763812082074]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "517e4d647da0c7133b1f13e51eea55c41b8aff14", "fields": {"departement": "93", "stop_lat": 48.96328239313857, "code_postal": "93059", "stop_lon": 2.3705562323799776, "coord": [48.96328239313857, 2.3705562323799776], "stop_id": 5423655, "stop_desc": "AVENUE LEDRU ROLLIN - 93059", "stop_name": "GARE DE PIERREFITTE - STAINS RER"}, "geometry": {"type": "Point", "coordinates": [2.3705562323799776, 48.96328239313857]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3761fe0713c9c16ad4e7c4a4eea8f674c6957ea5", "fields": {"departement": "92", "stop_lat": 48.802264645455615, "code_postal": "92020", "stop_lon": 2.2963282906160316, "coord": [48.802264645455615, 2.2963282906160316], "stop_id": 5423662, "stop_desc": "33 RUE PERROTIN - 92020", "stop_name": "PERROTIN"}, "geometry": {"type": "Point", "coordinates": [2.2963282906160316, 48.802264645455615]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7e10021e6e70fa5cb1f4ba11959f002e3c018068", "fields": {"departement": "92", "stop_lat": 48.79794970412889, "code_postal": "92007", "stop_lon": 2.2941277270548075, "coord": [48.79794970412889, 2.2941277270548075], "stop_id": 5423665, "stop_desc": "FACE 11 RUE DE CHARTRES - 92007", "stop_name": "LIBERTE"}, "geometry": {"type": "Point", "coordinates": [2.2941277270548075, 48.79794970412889]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "99f3fbfe3eaf576a369c5013b8f5f6c5ae9e879d", "fields": {"departement": "92", "stop_lat": 48.79888932890812, "code_postal": "92020", "stop_lon": 2.2840048528585277, "coord": [48.79888932890812, 2.2840048528585277], "stop_id": 5423672, "stop_desc": "16BIS-18 AVENUE DE LA DIVISION LECLERC - 92020", "stop_name": "DIVISION LECLERC - BROSSELETTE"}, "geometry": {"type": "Point", "coordinates": [2.2840048528585277, 48.79888932890812]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "587ca70dd1695a95f3104147a1e89e4f387ca2db", "fields": {"departement": "92", "stop_lat": 48.78834461292559, "code_postal": "92060", "stop_lon": 2.2635579486207313, "coord": [48.78834461292559, 2.2635579486207313], "stop_id": 5423680, "stop_desc": "32 BOULEVARD DU MOULIN DE LA TOUR - 92060", "stop_name": "RUE DU MIDI"}, "geometry": {"type": "Point", "coordinates": [2.2635579486207313, 48.78834461292559]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9ba2729abc7dd7f618cb7620eae2a91f6af40aec", "fields": {"departement": "92", "stop_lat": 48.78172665679126, "code_postal": "92060", "stop_lon": 2.2591335837638575, "coord": [48.78172665679126, 2.2591335837638575], "stop_id": 5423685, "stop_desc": "9 RUE PIERRE D'ARTAGNAN - 92060", "stop_name": "DANIEL DE FOE"}, "geometry": {"type": "Point", "coordinates": [2.2591335837638575, 48.78172665679126]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "46577016fa4de77c15da6c53d21baa8e0bd7d2b0", "fields": {"departement": "92", "stop_lat": 48.77896801359053, "code_postal": "92060", "stop_lon": 2.260157713740714, "coord": [48.77896801359053, 2.260157713740714], "stop_id": 5423686, "stop_desc": "AVENUE CHARLES DE GAULLE - 92060", "stop_name": "RESISTANCE"}, "geometry": {"type": "Point", "coordinates": [2.260157713740714, 48.77896801359053]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b7e06728f2615e86c7ae959d39330c5d65fd5dcf", "fields": {"departement": "92", "stop_lat": 48.778581644594894, "code_postal": "92060", "stop_lon": 2.260335082615534, "coord": [48.778581644594894, 2.260335082615534], "stop_id": 5423687, "stop_desc": "5 AVENUE CHARLES DE GAULLE - 92060", "stop_name": "RESISTANCE"}, "geometry": {"type": "Point", "coordinates": [2.260335082615534, 48.778581644594894]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "702071e85053d89ec9e0cf8cacc4b8cd6d8da269", "fields": {"departement": "92", "stop_lat": 48.77689031129291, "code_postal": "92060", "stop_lon": 2.2579169280257254, "coord": [48.77689031129291, 2.2579169280257254], "stop_id": 5423689, "stop_desc": "AVENUE CHARLES DE GAULLE - 92060", "stop_name": "CITE JARDINS - PLACE DES ALLIES"}, "geometry": {"type": "Point", "coordinates": [2.2579169280257254, 48.77689031129291]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "54eb2e31a3a942f20dd86c5801618f646ee424df", "fields": {"departement": "92", "stop_lat": 48.76640827315518, "code_postal": "92019", "stop_lon": 2.255009693324619, "coord": [48.76640827315518, 2.255009693324619], "stop_id": 5423697, "stop_desc": "FACE 327 AVENUE DE LA DIVISION LECLERC - 92019", "stop_name": "FRANCIS DE PRESSENSE"}, "geometry": {"type": "Point", "coordinates": [2.255009693324619, 48.76640827315518]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e9f2dd601d200b8d5673b9d20740d125cf2b9fb5", "fields": {"departement": "92", "stop_lat": 48.76523468265433, "code_postal": "92019", "stop_lon": 2.2607763214489163, "coord": [48.76523468265433, 2.2607763214489163], "stop_id": 5423698, "stop_desc": "301 AVENUE DE LA DIVISION LECLERC - 92019", "stop_name": "BUTTE ROUGE - CITE JARDINS"}, "geometry": {"type": "Point", "coordinates": [2.2607763214489163, 48.76523468265433]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "99fe618a0f58a81b74068a53db85034f677121fb", "fields": {"departement": "92", "stop_lat": 48.762791481568364, "code_postal": "92019", "stop_lon": 2.279460155887965, "coord": [48.762791481568364, 2.279460155887965], "stop_id": 5423704, "stop_desc": "135-137 AVENUE DE LA DIVISION LECLERC - 92019", "stop_name": "LA BRIAUDE"}, "geometry": {"type": "Point", "coordinates": [2.279460155887965, 48.762791481568364]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f5cf9db8e205a51068461bc7192172c1b1fc1dc0", "fields": {"departement": "92", "stop_lat": 48.770791352463455, "code_postal": "92019", "stop_lon": 2.280457480051415, "coord": [48.770791352463455, 2.280457480051415], "stop_id": 5423713, "stop_desc": "40-42 RUE JEAN LONGUET - 92019", "stop_name": "PRES HAUTS"}, "geometry": {"type": "Point", "coordinates": [2.280457480051415, 48.770791352463455]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c028f971295bc98cb448a8f684d6401c646ef3cc", "fields": {"departement": "92", "stop_lat": 48.77951018460229, "code_postal": "92071", "stop_lon": 2.281413539368541, "coord": [48.77951018460229, 2.281413539368541], "stop_id": 5423719, "stop_desc": "3 AVENUE DE LA GARE - 92071", "stop_name": "ROBINSON RER"}, "geometry": {"type": "Point", "coordinates": [2.281413539368541, 48.77951018460229]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bf5be1ce4121d251e609aba6cc799fdb88a8ebac", "fields": {"departement": "92", "stop_lat": 48.76406362158655, "code_postal": "92019", "stop_lon": 2.2714371907722835, "coord": [48.76406362158655, 2.2714371907722835], "stop_id": 5423721, "stop_desc": "FACE 231 AVENUE DE LA DIVISION LECLERC - 92019", "stop_name": "PRESIDENT ALLENDE"}, "geometry": {"type": "Point", "coordinates": [2.2714371907722835, 48.76406362158655]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "494d195feb5bd3a4c1f0440f7d25bcf9fc287599", "fields": {"departement": "92", "stop_lat": 48.78797297359984, "code_postal": "92023", "stop_lon": 2.2586617167369663, "coord": [48.78797297359984, 2.2586617167369663], "stop_id": 5423722, "stop_desc": "1-3 RUE DE LA CAVEE - 92023", "stop_name": "LA CAVEE"}, "geometry": {"type": "Point", "coordinates": [2.2586617167369663, 48.78797297359984]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f11f30e7275853c90d094848f02ed257b7bfc4b7", "fields": {"departement": "92", "stop_lat": 48.78971897350695, "code_postal": "92023", "stop_lon": 2.262290959769518, "coord": [48.78971897350695, 2.262290959769518], "stop_id": 5423723, "stop_desc": "125 AVENUE DU GENERAL DE GAULLE - 92023", "stop_name": "SOLEIL LEVANT"}, "geometry": {"type": "Point", "coordinates": [2.262290959769518, 48.78971897350695]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dd31deab5d4821e896f4c057e98003cfb25fae65", "fields": {"departement": "75", "stop_lat": 48.82152331045431, "code_postal": "75113", "stop_lon": 2.343161808767993, "coord": [48.82152331045431, 2.343161808767993], "stop_id": 5454876, "stop_desc": "31 RUE DE RUNGIS - 75113", "stop_name": "AMIRAL MOUCHEZ"}, "geometry": {"type": "Point", "coordinates": [2.343161808767993, 48.82152331045431]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "725e4655f1429858b6c1f5784d151a6f5c6ec554", "fields": {"departement": "75", "stop_lat": 48.82831709694314, "code_postal": "75113", "stop_lon": 2.3529364847578846, "coord": [48.82831709694314, 2.3529364847578846], "stop_id": 5454879, "stop_desc": "41 RUE BOBILLOT - 75113", "stop_name": "VERLAINE"}, "geometry": {"type": "Point", "coordinates": [2.3529364847578846, 48.82831709694314]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4764759ef8cebbb00e8c511653235d2796ae6bcf", "fields": {"departement": "75", "stop_lat": 48.83633304434552, "code_postal": "75113", "stop_lon": 2.359256166042175, "coord": [48.83633304434552, 2.359256166042175], "stop_id": 5454883, "stop_desc": "113 BOULEVARD DE L'HOPITAL - 75113", "stop_name": "JENNER - JEANNE D'ARC"}, "geometry": {"type": "Point", "coordinates": [2.359256166042175, 48.83633304434552]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e23a95fd354d76790782223d1264a6b27fd56a04", "fields": {"departement": "75", "stop_lat": 48.850119889984526, "code_postal": "75104", "stop_lon": 2.3593981982611987, "coord": [48.850119889984526, 2.3593981982611987], "stop_id": 5454889, "stop_desc": "FACE 3-5 BOULEVARD HENRI IV - 75104", "stop_name": "PONT SULLY - QUAI DE BETHUNE"}, "geometry": {"type": "Point", "coordinates": [2.3593981982611987, 48.850119889984526]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e52f2413db21f780b1b42447fc68f13569c5aefa", "fields": {"departement": "75", "stop_lat": 48.851485428615085, "code_postal": "75104", "stop_lon": 2.3622178642019493, "coord": [48.851485428615085, 2.3622178642019493], "stop_id": 5454890, "stop_desc": "2 BIS QUAI DES CELESTINS - 75104", "stop_name": "SULLY - MORLAND"}, "geometry": {"type": "Point", "coordinates": [2.3622178642019493, 48.851485428615085]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "65e5eaea102be4c2d4e30683595884b25a5e57d8", "fields": {"departement": "75", "stop_lat": 48.85726596088864, "code_postal": "75104", "stop_lon": 2.3527954157613853, "coord": [48.85726596088864, 2.3527954157613853], "stop_id": 5454893, "stop_desc": "62 RUE DE RIVOLI - 75104", "stop_name": "HOTEL DE VILLE"}, "geometry": {"type": "Point", "coordinates": [2.3527954157613853, 48.85726596088864]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b818fcfd6a319b70adbe374e82a0ece72cf71020", "fields": {"departement": "75", "stop_lat": 48.85988210624847, "code_postal": "75101", "stop_lon": 2.344283098140992, "coord": [48.85988210624847, 2.344283098140992], "stop_id": 5454895, "stop_desc": "128 RUE DE RIVOLI - 75101", "stop_name": "RIVOLI - PONT NEUF"}, "geometry": {"type": "Point", "coordinates": [2.344283098140992, 48.85988210624847]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3aa87d90eff52e1500ec988d3c3ce396ff24f95b", "fields": {"departement": "75", "stop_lat": 48.87053221363609, "code_postal": "75102", "stop_lon": 2.3428949185469965, "coord": [48.87053221363609, 2.3428949185469965], "stop_id": 5454900, "stop_desc": "166-168 RUE MONTMARTRE - 75102", "stop_name": "GRANDS BOULEVARDS"}, "geometry": {"type": "Point", "coordinates": [2.3428949185469965, 48.87053221363609]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "16796b2f5c23581b11a1253b67b054614b9c0abb", "fields": {"departement": "75", "stop_lat": 48.87641002033888, "code_postal": "75109", "stop_lon": 2.339802613958686, "coord": [48.87641002033888, 2.339802613958686], "stop_id": 5454902, "stop_desc": "66BIS-68 RUE DU FAUBOURG MONTMARTRE - 75109", "stop_name": "CARREFOUR DE CHATEAUDUN"}, "geometry": {"type": "Point", "coordinates": [2.339802613958686, 48.87641002033888]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e9ab11c6f5d4e14bdbee9b79577429547559568e", "fields": {"departement": "75", "stop_lat": 48.88218885999581, "code_postal": "75109", "stop_lon": 2.3373773235099753, "coord": [48.88218885999581, 2.3373773235099753], "stop_id": 5454903, "stop_desc": "FACE 20 BD DE CLICHY - 75109", "stop_name": "PIGALLE"}, "geometry": {"type": "Point", "coordinates": [2.3373773235099753, 48.88218885999581]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "69eb11e5cc3d98e952a8e081c4dd582285da32f4", "fields": {"departement": "75", "stop_lat": 48.85726596088864, "code_postal": "75104", "stop_lon": 2.3527954157613853, "coord": [48.85726596088864, 2.3527954157613853], "stop_id": 5454907, "stop_desc": "62 RUE DE RIVOLI - 75104", "stop_name": "HOTEL DE VILLE"}, "geometry": {"type": "Point", "coordinates": [2.3527954157613853, 48.85726596088864]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cc8d3f0dd880a0450e6fe67d7a72d445898b132e", "fields": {"departement": "75", "stop_lat": 48.8516572958363, "code_postal": "75104", "stop_lon": 2.3562256735111764, "coord": [48.8516572958363, 2.3562256735111764], "stop_id": 5454909, "stop_desc": "17 RUE DES DEUX PONTS - 75104", "stop_name": "ILE SAINT-LOUIS"}, "geometry": {"type": "Point", "coordinates": [2.3562256735111764, 48.8516572958363]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7e03938fb12745662e1f1cd0f1e07cb244dd6d25", "fields": {"departement": "75", "stop_lat": 48.84390130314386, "code_postal": "75105", "stop_lon": 2.3548066932136584, "coord": [48.84390130314386, 2.3548066932136584], "stop_id": 5454914, "stop_desc": "1-3 RUE LINNE - 75105", "stop_name": "CUVIER - JARDIN DES PLANTES"}, "geometry": {"type": "Point", "coordinates": [2.3548066932136584, 48.84390130314386]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b298a4e9d1f0dbb5ae91e19fb863e9f6f15b576c", "fields": {"departement": "75", "stop_lat": 48.841034107345216, "code_postal": "75105", "stop_lon": 2.3559358522917724, "coord": [48.841034107345216, 2.3559358522917724], "stop_id": 5454916, "stop_desc": "FACE 34 RUE GEOFFROY SAINT HILAIRE - 75105", "stop_name": "BUFFON - LA MOSQUEE"}, "geometry": {"type": "Point", "coordinates": [2.3559358522917724, 48.841034107345216]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1aa84f2ae87b8a1d249b919bedc463106f1b5351", "fields": {"departement": "75", "stop_lat": 48.83066259989052, "code_postal": "75113", "stop_lon": 2.3548566679640492, "coord": [48.83066259989052, 2.3548566679640492], "stop_id": 5454924, "stop_desc": "FACE 6 RUE BOBILLOT - 75113", "stop_name": "PLACE D'ITALIE"}, "geometry": {"type": "Point", "coordinates": [2.3548566679640492, 48.83066259989052]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "27dacf2cce7c9e3789af659100d9b7b1b23a568f", "fields": {"departement": "75", "stop_lat": 48.8298809787651, "code_postal": "75113", "stop_lon": 2.352678308752121, "coord": [48.8298809787651, 2.352678308752121], "stop_id": 5454925, "stop_desc": "6 RUE DU MOULIN DES PRES - 75113", "stop_name": "MOULIN DES PRES"}, "geometry": {"type": "Point", "coordinates": [2.352678308752121, 48.8298809787651]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5319dd0e2fb48471af441f2c1292fe8b7d5a8ea0", "fields": {"departement": "75", "stop_lat": 48.82831709694314, "code_postal": "75113", "stop_lon": 2.3529364847578846, "coord": [48.82831709694314, 2.3529364847578846], "stop_id": 5454927, "stop_desc": "41 RUE BOBILLOT - 75113", "stop_name": "VERLAINE"}, "geometry": {"type": "Point", "coordinates": [2.3529364847578846, 48.82831709694314]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d33f5e239fdb1a5e8c150e0b9945c4773c159ed9", "fields": {"departement": "75", "stop_lat": 48.82609741539634, "code_postal": "75113", "stop_lon": 2.350757878691308, "coord": [48.82609741539634, 2.350757878691308], "stop_id": 5454929, "stop_desc": "77 RUE BOBILLOT - 75113", "stop_name": "BOBILLOT - TOLBIAC"}, "geometry": {"type": "Point", "coordinates": [2.350757878691308, 48.82609741539634]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f73b47a2d95e37c319434ad8f6ee3566d2ec459d", "fields": {"departement": "75", "stop_lat": 48.82300599252082, "code_postal": "75113", "stop_lon": 2.3473950870001614, "coord": [48.82300599252082, 2.3473950870001614], "stop_id": 5454930, "stop_desc": "102 RUE BOBILLOT - 75113", "stop_name": "RUNGIS"}, "geometry": {"type": "Point", "coordinates": [2.3473950870001614, 48.82300599252082]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9df5cc5eab65776617027c86d1e698892b143910", "fields": {"departement": "75", "stop_lat": 48.822718391470836, "code_postal": "75113", "stop_lon": 2.347340585960503, "coord": [48.822718391470836, 2.347340585960503], "stop_id": 5454931, "stop_desc": "FACE 104 RUE BOBILLOT - 75113", "stop_name": "RUNGIS"}, "geometry": {"type": "Point", "coordinates": [2.347340585960503, 48.822718391470836]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "92dfd5aea1ce29b99a9df5aef697b1ae625d0dd8", "fields": {"departement": "92", "stop_lat": 48.767312522073375, "code_postal": "92019", "stop_lon": 2.279523110651518, "coord": [48.767312522073375, 2.279523110651518], "stop_id": 5478215, "stop_desc": "98 RUE JEAN LONGUET - 92019", "stop_name": "MAIRIE DE CHATENAY-MALABRY"}, "geometry": {"type": "Point", "coordinates": [2.279523110651518, 48.767312522073375]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e8edd0882513f40c0047d9178db90115531478ea", "fields": {"departement": "92", "stop_lat": 48.76278393482754, "code_postal": "92019", "stop_lon": 2.2825055590305103, "coord": [48.76278393482754, 2.2825055590305103], "stop_id": 5478217, "stop_desc": "FACE 77 RUE VINCENT FAYO - 92019", "stop_name": "CARREFOUR DU 19 MARS 1962"}, "geometry": {"type": "Point", "coordinates": [2.2825055590305103, 48.76278393482754]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5cd7783ccf5723d84a93e71c56e312bb58787025", "fields": {"departement": "92", "stop_lat": 48.77180032988904, "code_postal": "92019", "stop_lon": 2.253886131757641, "coord": [48.77180032988904, 2.253886131757641], "stop_id": 5478225, "stop_desc": "FACE 22 AVENUE DU BOIS - 92019", "stop_name": "MAXIMILIEN ROBESPIERRE"}, "geometry": {"type": "Point", "coordinates": [2.253886131757641, 48.77180032988904]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9c6df48bed8fad9dcb0f446e7264dc51bde74701", "fields": {"departement": "92", "stop_lat": 48.77689031129291, "code_postal": "92060", "stop_lon": 2.2579169280257254, "coord": [48.77689031129291, 2.2579169280257254], "stop_id": 5478227, "stop_desc": "AVENUE CHARLES DE GAULLE - 92060", "stop_name": "CITE JARDINS - PLACE DES ALLIES"}, "geometry": {"type": "Point", "coordinates": [2.2579169280257254, 48.77689031129291]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0f71f6df8d5d317328db32c73d69398c4248a632", "fields": {"departement": "92", "stop_lat": 48.78513289467901, "code_postal": "92060", "stop_lon": 2.258829230564299, "coord": [48.78513289467901, 2.258829230564299], "stop_id": 5478230, "stop_desc": "42 RUE PAUL RIVET - 92060", "stop_name": "MOULIN DE LA TOUR"}, "geometry": {"type": "Point", "coordinates": [2.258829230564299, 48.78513289467901]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cb7890ba8884d8f1e7a57588629eba7940aa3f0f", "fields": {"departement": "92", "stop_lat": 48.78797297359984, "code_postal": "92023", "stop_lon": 2.2586617167369663, "coord": [48.78797297359984, 2.2586617167369663], "stop_id": 5478231, "stop_desc": "1-3 RUE DE LA CAVEE - 92023", "stop_name": "LA CAVEE"}, "geometry": {"type": "Point", "coordinates": [2.2586617167369663, 48.78797297359984]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d2432306332c547f8827419d539302c6d1f198ec", "fields": {"departement": "75", "stop_lat": 48.831731660986215, "code_postal": "75112", "stop_lon": 2.3878563351392117, "coord": [48.831731660986215, 2.3878563351392117], "stop_id": 5478238, "stop_desc": "FACE 30 AVENUE DES TERROIRS DE FRANCE - 75112", "stop_name": "TERROIRS DE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.3878563351392117, 48.831731660986215]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7d2e494ad8be77487d23d60e4541e6c5afbef053", "fields": {"departement": "75", "stop_lat": 48.83144830211143, "code_postal": "75112", "stop_lon": 2.3979981179423318, "coord": [48.83144830211143, 2.3979981179423318], "stop_id": 5478241, "stop_desc": "AVENUE DE LA PORTE DE CHARENTON - 75112", "stop_name": "PORTE DE CHARENTON"}, "geometry": {"type": "Point", "coordinates": [2.3979981179423318, 48.83144830211143]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9cc3dd53194c047ded7467d56f8733160e57b94b", "fields": {"departement": "94", "stop_lat": 48.82916356574205, "code_postal": "94018", "stop_lon": 2.4015756371245263, "coord": [48.82916356574205, 2.4015756371245263], "stop_id": 5478242, "stop_desc": "183 RUE DE PARIS - 94018", "stop_name": "FELIX LANGLAIS"}, "geometry": {"type": "Point", "coordinates": [2.4015756371245263, 48.82916356574205]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "139267487d0d84af5897d623c20396b007580624", "fields": {"departement": "94", "stop_lat": 48.823667195047015, "code_postal": "94018", "stop_lon": 2.410103212176365, "coord": [48.823667195047015, 2.410103212176365], "stop_id": 5478244, "stop_desc": "109 RUE DE PARIS - 94018", "stop_name": "THEATRE DE CHARENTON"}, "geometry": {"type": "Point", "coordinates": [2.410103212176365, 48.823667195047015]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7df79c2ad3c86adfbb9e4f3b241b2540c09cf082", "fields": {"departement": "94", "stop_lat": 48.820958902132894, "code_postal": "94018", "stop_lon": 2.4148495637651513, "coord": [48.820958902132894, 2.4148495637651513], "stop_id": 5478245, "stop_desc": "FACE 3 RUE GABRIELLE - 94018", "stop_name": "RUE GABRIELLE"}, "geometry": {"type": "Point", "coordinates": [2.4148495637651513, 48.820958902132894]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "55ae3f9d394a8caeaa5a6956f516ce7223a2c311", "fields": {"departement": "94", "stop_lat": 48.82194179585436, "code_postal": "94069", "stop_lon": 2.4232218060551216, "coord": [48.82194179585436, 2.4232218060551216], "stop_id": 5478247, "stop_desc": "39 RUE DU VAL D'OSNE - 94069", "stop_name": "HOPITAL NATIONAL DE SAINT-MAURICE"}, "geometry": {"type": "Point", "coordinates": [2.4232218060551216, 48.82194179585436]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f3aadf2a72fe629c7f202b63cfeecccfe90630ba", "fields": {"departement": "94", "stop_lat": 48.81835494535775, "code_postal": "94069", "stop_lon": 2.424263840734881, "coord": [48.81835494535775, 2.424263840734881], "stop_id": 5478249, "stop_desc": "3 RUE DU VAL D'OSNE - 94069", "stop_name": "VAL D'OSNE"}, "geometry": {"type": "Point", "coordinates": [2.424263840734881, 48.81835494535775]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "677d940ee62bd633665451da3e99b3dae12e5db6", "fields": {"departement": "94", "stop_lat": 48.81785051981082, "code_postal": "94069", "stop_lon": 2.425773698569028, "coord": [48.81785051981082, 2.425773698569028], "stop_id": 5478250, "stop_desc": "FACE 55BIS RUE DU MARECHAL LECLERC - 94069", "stop_name": "MAIRIE DE SAINT-MAURICE"}, "geometry": {"type": "Point", "coordinates": [2.425773698569028, 48.81785051981082]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "883e81aa749488d3196cf4649fa3703e5a7337ff", "fields": {"departement": "94", "stop_lat": 48.81786967316462, "code_postal": "94069", "stop_lon": 2.4460389440703985, "coord": [48.81786967316462, 2.4460389440703985], "stop_id": 5478255, "stop_desc": "150-156 RUE DU MARECHAL LECLERC - 94069", "stop_name": "CFA - ANDRIEU"}, "geometry": {"type": "Point", "coordinates": [2.4460389440703985, 48.81786967316462]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ec6e376ce7bec99045b59f2cde171a5ef829f4a7", "fields": {"departement": "94", "stop_lat": 48.81745989066233, "code_postal": "94069", "stop_lon": 2.451726999892649, "coord": [48.81745989066233, 2.451726999892649], "stop_id": 5478256, "stop_desc": "182 RUE DU MARECHAL LECLERC - 94069", "stop_name": "ROSERAIE"}, "geometry": {"type": "Point", "coordinates": [2.451726999892649, 48.81745989066233]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "856c6c850516a69b1a0baf1529211fff375e91c6", "fields": {"departement": "94", "stop_lat": 48.794361222724945, "code_postal": "94068", "stop_lon": 2.4769655328437334, "coord": [48.794361222724945, 2.4769655328437334], "stop_id": 5478268, "stop_desc": "5 PLACE GALILEE - 94068", "stop_name": "GALILEE"}, "geometry": {"type": "Point", "coordinates": [2.4769655328437334, 48.794361222724945]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "71d6965d70a686e9911bfe2c320389fb4e9c5e29", "fields": {"departement": "94", "stop_lat": 48.78634465839506, "code_postal": "94068", "stop_lon": 2.483880834458613, "coord": [48.78634465839506, 2.483880834458613], "stop_id": 5478271, "stop_desc": "6 AVENUE RASPAIL - 94068", "stop_name": "JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.483880834458613, 48.78634465839506]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6813e9dd3cbdfd3f1a8b41bfa972b951149a8c26", "fields": {"departement": "94", "stop_lat": 48.78601564796178, "code_postal": "94068", "stop_lon": 2.4882324222937453, "coord": [48.78601564796178, 2.4882324222937453], "stop_id": 5478272, "stop_desc": "50 AVENUE RASPAIL - 94068", "stop_name": "DOCTEUR ROUX - CHAMBRE DES METIERS"}, "geometry": {"type": "Point", "coordinates": [2.4882324222937453, 48.78601564796178]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f3977773491061c23515d7c75bd9f370a9eb1a2e", "fields": {"departement": "94", "stop_lat": 48.78580514257317, "code_postal": "94068", "stop_lon": 2.4911833490462474, "coord": [48.78580514257317, 2.4911833490462474], "stop_id": 5478273, "stop_desc": "72 AVENUE RASPAIL - 94068", "stop_name": "CORNEILLES"}, "geometry": {"type": "Point", "coordinates": [2.4911833490462474, 48.78580514257317]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d82e22fbe1cd042e5c5135904cabbe61be262083", "fields": {"departement": "94", "stop_lat": 48.78705761422884, "code_postal": "94068", "stop_lon": 2.50224539865963, "coord": [48.78705761422884, 2.50224539865963], "stop_id": 5478276, "stop_desc": "FACE 46 RUE CHEVALIER - 94068", "stop_name": "FALONNIERES"}, "geometry": {"type": "Point", "coordinates": [2.50224539865963, 48.78705761422884]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5c9837744a5078c8014d59db518f86f284c6550d", "fields": {"departement": "94", "stop_lat": 48.78873680058078, "code_postal": "94068", "stop_lon": 2.503366124614136, "coord": [48.78873680058078, 2.503366124614136], "stop_id": 5478277, "stop_desc": "FACE 24 RUE CHEVALIER - 94068", "stop_name": "PLACE DE MOLENES"}, "geometry": {"type": "Point", "coordinates": [2.503366124614136, 48.78873680058078]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fbae64cda4348d54079a11a988e15ed21f9e1639", "fields": {"departement": "94", "stop_lat": 48.82143491113748, "code_postal": "94018", "stop_lon": 2.415367488845544, "coord": [48.82143491113748, 2.415367488845544], "stop_id": 5478283, "stop_desc": "4 RUE ALFRED SAVOURE - 94018", "stop_name": "CHARENTON-ECOLES"}, "geometry": {"type": "Point", "coordinates": [2.415367488845544, 48.82143491113748]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "00c4e77a858a7f2443a829b996204db5b26b5c16", "fields": {"departement": "94", "stop_lat": 48.820958902132894, "code_postal": "94018", "stop_lon": 2.4148495637651513, "coord": [48.820958902132894, 2.4148495637651513], "stop_id": 5478284, "stop_desc": "FACE 3 RUE GABRIELLE - 94018", "stop_name": "RUE GABRIELLE"}, "geometry": {"type": "Point", "coordinates": [2.4148495637651513, 48.820958902132894]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "43f48da3ba1a7e151ece08af741d65466c18b810", "fields": {"departement": "94", "stop_lat": 48.81795512775568, "code_postal": "94069", "stop_lon": 2.430033797229572, "coord": [48.81795512775568, 2.430033797229572], "stop_id": 5478291, "stop_desc": "FACE 57 RUE DU MARECHAL LECLERC - 94069", "stop_name": "HOPITAL ESQUIROL"}, "geometry": {"type": "Point", "coordinates": [2.430033797229572, 48.81795512775568]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8f83794a44d403f0e372e50a1e6ec90395b370e0", "fields": {"departement": "94", "stop_lat": 48.818150375922244, "code_postal": "94069", "stop_lon": 2.4331644510330075, "coord": [48.818150375922244, 2.4331644510330075], "stop_id": 5478294, "stop_desc": "69 RUE DU MARECHAL LECLERC - 94069", "stop_name": "PASSERELLE DE SAINT-MAURICE"}, "geometry": {"type": "Point", "coordinates": [2.4331644510330075, 48.818150375922244]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ca927da694f22c10b68a01fd82f976a7df2f0b7d", "fields": {"departement": "92", "stop_lat": 48.862121953901166, "code_postal": "92063", "stop_lon": 2.171684610501522, "coord": [48.862121953901166, 2.171684610501522], "stop_id": 4024163, "stop_desc": "2 AV DE LA CHATAIGNERAIE - 92063", "stop_name": "SAINT CUCUFA"}, "geometry": {"type": "Point", "coordinates": [2.171684610501522, 48.862121953901166]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8946e6220a2c8448651ec80f53ace50b0bfab888", "fields": {"departement": "92", "stop_lat": 48.88662437941958, "code_postal": "92062", "stop_lon": 2.239460201963728, "coord": [48.88662437941958, 2.239460201963728], "stop_id": 4024170, "stop_desc": "3 AVENUE JEAN MOULIN - 92062", "stop_name": "BOIELDIEU"}, "geometry": {"type": "Point", "coordinates": [2.239460201963728, 48.88662437941958]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "72a5f89b3408a1d5bb828728885cb6a448e9d6da", "fields": {"departement": "92", "stop_lat": 48.86767710841224, "code_postal": "92073", "stop_lon": 2.226812902957634, "coord": [48.86767710841224, 2.226812902957634], "stop_id": 4024183, "stop_desc": "FACE 13 BOULEVARD HENRI SELLIER - 92073", "stop_name": "RUE DES BOURETS - PONT DE SURESNES"}, "geometry": {"type": "Point", "coordinates": [2.226812902957634, 48.86767710841224]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4826a1a76510bc764552f05f46eba87e6d3ad364", "fields": {"departement": "92", "stop_lat": 48.871360091607606, "code_postal": "92073", "stop_lon": 2.2248568272971028, "coord": [48.871360091607606, 2.2248568272971028], "stop_id": 4024209, "stop_desc": "3 BIS RUE CARNOT - 92073", "stop_name": "MAIRIE DE SURESNES - CARNOT"}, "geometry": {"type": "Point", "coordinates": [2.2248568272971028, 48.871360091607606]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9042f266044962a52c4c725721d95ed74e5914f6", "fields": {"departement": "92", "stop_lat": 48.86275238034975, "code_postal": "92073", "stop_lon": 2.2092104916477853, "coord": [48.86275238034975, 2.2092104916477853], "stop_id": 4024221, "stop_desc": "10 AVENUE EDOUARD VAILLANT - 92073", "stop_name": "PLACE JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.2092104916477853, 48.86275238034975]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "54334322d37515ca5e4de7b78e920c9183558880", "fields": {"departement": "92", "stop_lat": 48.87137676953357, "code_postal": "92063", "stop_lon": 2.1834670740107733, "coord": [48.87137676953357, 2.1834670740107733], "stop_id": 4024232, "stop_desc": "FACE 27-29 BOULEVARD RICHELIEU - 92063", "stop_name": "ZURICH"}, "geometry": {"type": "Point", "coordinates": [2.1834670740107733, 48.87137676953357]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7d628356bc608b302dd33a9c9377da0871ab459c", "fields": {"departement": "92", "stop_lat": 48.880673665885105, "code_postal": "92063", "stop_lon": 2.1796649666871524, "coord": [48.880673665885105, 2.1796649666871524], "stop_id": 4024238, "stop_desc": "6 AVENUE ALBERT 1ER - 92063", "stop_name": "ALBERT 1ER - RUEIL - VILLE"}, "geometry": {"type": "Point", "coordinates": [2.1796649666871524, 48.880673665885105]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eef6688dbdb4e86a694e63166c927f4d00f75dd0", "fields": {"departement": "92", "stop_lat": 48.86489624581866, "code_postal": "92073", "stop_lon": 2.205431821442203, "coord": [48.86489624581866, 2.205431821442203], "stop_id": 4024247, "stop_desc": "AVENUE JEAN JAURES - 92073", "stop_name": "PLACE DE LA PAIX"}, "geometry": {"type": "Point", "coordinates": [2.205431821442203, 48.86489624581866]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "09cc666471ca590de85faa30035577849a981321", "fields": {"departement": "92", "stop_lat": 48.87001429414235, "code_postal": "92073", "stop_lon": 2.2273256230142033, "coord": [48.87001429414235, 2.2273256230142033], "stop_id": 4024249, "stop_desc": "3 PLACE HENRI IV - 92073", "stop_name": "HENRI IV"}, "geometry": {"type": "Point", "coordinates": [2.2273256230142033, 48.87001429414235]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "87655aaca791920d85570e8fb5b023f09a130bf4", "fields": {"departement": "92", "stop_lat": 48.87992568956772, "code_postal": "92062", "stop_lon": 2.2356438653396578, "coord": [48.87992568956772, 2.2356438653396578], "stop_id": 4024263, "stop_desc": "FACE 4 RUE EUGENE EICHENBERGER - 92062", "stop_name": "BAS ROGERS"}, "geometry": {"type": "Point", "coordinates": [2.2356438653396578, 48.87992568956772]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3f736592517a299ce4c63a7e882823b86b854e93", "fields": {"departement": "92", "stop_lat": 48.87200998044218, "code_postal": "92073", "stop_lon": 2.2278663582668323, "coord": [48.87200998044218, 2.2278663582668323], "stop_id": 4024267, "stop_desc": "2 RUE D'ESTIENNE D'ORVES - 92073", "stop_name": "D'ESTIENNE D'ORVES"}, "geometry": {"type": "Point", "coordinates": [2.2278663582668323, 48.87200998044218]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "31b318e93bc0a8fe92cf7a97bb57287910c518ee", "fields": {"departement": "93", "stop_lat": 48.91835227412097, "code_postal": "93029", "stop_lon": 2.418513630102579, "coord": [48.91835227412097, 2.418513630102579], "stop_id": 5605613, "stop_desc": "RUE SAINT-STENAY - 93029", "stop_name": "CITE DE LA RESISTANCE"}, "geometry": {"type": "Point", "coordinates": [2.418513630102579, 48.91835227412097]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "885e283c96a825a1923aa1561f9aa50def4e2ad2", "fields": {"departement": "93", "stop_lat": 48.91898067959541, "code_postal": "93029", "stop_lon": 2.4195100811375116, "coord": [48.91898067959541, 2.4195100811375116], "stop_id": 5605617, "stop_desc": "R SAINT-STENAY - 93029", "stop_name": "CITE DE LA RESISTANCE."}, "geometry": {"type": "Point", "coordinates": [2.4195100811375116, 48.91898067959541]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "616ded98d5945673e73c7b9e1a37447ea04fd390", "fields": {"departement": "93", "stop_lat": 48.91750834246702, "code_postal": "93029", "stop_lon": 2.4296939273645153, "coord": [48.91750834246702, 2.4296939273645153], "stop_id": 5605620, "stop_desc": "R DIDEROT - 93029", "stop_name": "DIDEROT-BIZE"}, "geometry": {"type": "Point", "coordinates": [2.4296939273645153, 48.91750834246702]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "96245abc80d1b419ff915a3f63ee4547827c849a", "fields": {"departement": "93", "stop_lat": 48.92305719930438, "code_postal": "93029", "stop_lon": 2.4463553244077896, "coord": [48.92305719930438, 2.4463553244077896], "stop_id": 5605630, "stop_desc": "BOULEVARD PAUL VAILLANT COUTURIER - 93029", "stop_name": "MAIRIE DE DRANCY"}, "geometry": {"type": "Point", "coordinates": [2.4463553244077896, 48.92305719930438]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0a89ce7c14a7c69b9f05819e5142a832bea9cc69", "fields": {"departement": "93", "stop_lat": 48.923047812383174, "code_postal": "93029", "stop_lon": 2.446791707406282, "coord": [48.923047812383174, 2.446791707406282], "stop_id": 5605631, "stop_desc": "5 BOULEVARD PAUL VAILLANT-COUTURIER - 93029", "stop_name": "MAIRIE DE DRANCY"}, "geometry": {"type": "Point", "coordinates": [2.446791707406282, 48.923047812383174]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cd7af3d1c7f8f31e36fac2603b1ff30512f113e1", "fields": {"departement": "93", "stop_lat": 48.91995160206817, "code_postal": "93029", "stop_lon": 2.4517898551894257, "coord": [48.91995160206817, 2.4517898551894257], "stop_id": 5605632, "stop_desc": "128 AVENUE HENRI BARBUSSE - 93029", "stop_name": "PLACE DU 19 MARS 1962"}, "geometry": {"type": "Point", "coordinates": [2.4517898551894257, 48.91995160206817]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "225d2ea5bc81a78cd7961c019c5954a3cb204077", "fields": {"departement": "93", "stop_lat": 48.92362033739707, "code_postal": "93029", "stop_lon": 2.458794128458234, "coord": [48.92362033739707, 2.458794128458234], "stop_id": 5605638, "stop_desc": "FACE 9-11 RUE DU DOCTEUR ALBERT SCHWEITZER - 93029", "stop_name": "LYCEE EUGENE DELACROIX"}, "geometry": {"type": "Point", "coordinates": [2.458794128458234, 48.92362033739707]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "46986b8f4d6f2d36a3c29e012d61fdd0397c9038", "fields": {"departement": "93", "stop_lat": 48.92581313170106, "code_postal": "93029", "stop_lon": 2.4588129125897304, "coord": [48.92581313170106, 2.4588129125897304], "stop_id": 5605639, "stop_desc": "FACE 63 RUE DU DOCTEUR ALBERT SCHWEITZER - 93029", "stop_name": "STADE CHARLES SAGE"}, "geometry": {"type": "Point", "coordinates": [2.4588129125897304, 48.92581313170106]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1230ff0327a057f2b91705d07c8cd328ac8c1393", "fields": {"departement": "93", "stop_lat": 48.92635983698656, "code_postal": "93029", "stop_lon": 2.460273511190632, "coord": [48.92635983698656, 2.460273511190632], "stop_id": 5605640, "stop_desc": "AVENUE EDOUARD CASTELNAU - 93029", "stop_name": "STADE CHARLES SAGE"}, "geometry": {"type": "Point", "coordinates": [2.460273511190632, 48.92635983698656]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ee612e3289d3bc9d00401938c53dfbbaee99de5b", "fields": {"departement": "93", "stop_lat": 48.92450413843823, "code_postal": "93029", "stop_lon": 2.435993516058944, "coord": [48.92450413843823, 2.435993516058944], "stop_id": 5605646, "stop_desc": "12 R NOUVELLE - 93029", "stop_name": "FAIDHERBE - FERRY"}, "geometry": {"type": "Point", "coordinates": [2.435993516058944, 48.92450413843823]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eeb6a87f9fa887aa09f7d561c0298ed9c11b73d3", "fields": {"departement": "75", "stop_lat": 48.87487257832431, "code_postal": "75108", "stop_lon": 2.324883271925132, "coord": [48.87487257832431, 2.324883271925132], "stop_id": 5657267, "stop_desc": "0 RUE INTERIEURE - 75108", "stop_name": "GARE SAINT-LAZARE"}, "geometry": {"type": "Point", "coordinates": [2.324883271925132, 48.87487257832431]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "606ca22a2fca963ffe74fd621f5b202d8981f3c8", "fields": {"departement": "75", "stop_lat": 48.87654445856856, "code_postal": "75109", "stop_lon": 2.3469968002225374, "coord": [48.87654445856856, 2.3469968002225374], "stop_id": 5657276, "stop_desc": "90 RUE LA FAYETTE - 75109", "stop_name": "SQUARE MONTHOLON"}, "geometry": {"type": "Point", "coordinates": [2.3469968002225374, 48.87654445856856]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "88fb4c42cde6dd5602cf94649b0fb21282bbf74f", "fields": {"departement": "75", "stop_lat": 48.87794593694368, "code_postal": "75110", "stop_lon": 2.3521884586483655, "coord": [48.87794593694368, 2.3521884586483655], "stop_id": 5657277, "stop_desc": "130 RUE LA FAYETTE - 75110", "stop_name": "PLACE FRANZ LISZT"}, "geometry": {"type": "Point", "coordinates": [2.3521884586483655, 48.87794593694368]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d34ff69dc6ef3aa7d83a8a27b0bf96db59fc0973", "fields": {"departement": "75", "stop_lat": 48.88064053689111, "code_postal": "75110", "stop_lon": 2.3617413534759955, "coord": [48.88064053689111, 2.3617413534759955], "stop_id": 5657282, "stop_desc": "191 RUE LA FAYETTE - 75110", "stop_name": "CHATEAU LANDON"}, "geometry": {"type": "Point", "coordinates": [2.3617413534759955, 48.88064053689111]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e4a19d23730039069455647140f0ba9bed5aaf04", "fields": {"departement": "75", "stop_lat": 48.8805565173004, "code_postal": "75119", "stop_lon": 2.3739505644269787, "coord": [48.8805565173004, 2.3739505644269787], "stop_id": 5657286, "stop_desc": "121 AVENUE SIMON BOLIVAR - 75119", "stop_name": "MARCHE SECRETAN"}, "geometry": {"type": "Point", "coordinates": [2.3739505644269787, 48.8805565173004]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9adbc1bab78282d8b27bd254ac6ac78fd5b27862", "fields": {"departement": "75", "stop_lat": 48.872083815043844, "code_postal": "75120", "stop_lon": 2.3914516264544368, "coord": [48.872083815043844, 2.3914516264544368], "stop_id": 5657297, "stop_desc": "347 RUE DES PYRENEES - 75120", "stop_name": "L'ERMITAGE"}, "geometry": {"type": "Point", "coordinates": [2.3914516264544368, 48.872083815043844]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "689897e4fb05adcea55ec5b10217b18096ad2ac9", "fields": {"departement": "75", "stop_lat": 48.856528791256245, "code_postal": "75120", "stop_lon": 2.4048647761007027, "coord": [48.856528791256245, 2.4048647761007027], "stop_id": 5657309, "stop_desc": "108-110 RUE DES PYRENEES - 75120", "stop_name": "ORTEAUX"}, "geometry": {"type": "Point", "coordinates": [2.4048647761007027, 48.856528791256245]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "39477aa33dcbd44f343e58865167de3c366370a0", "fields": {"departement": "75", "stop_lat": 48.867758569105796, "code_postal": "75120", "stop_lon": 2.3963650212192182, "coord": [48.867758569105796, 2.3963650212192182], "stop_id": 5657320, "stop_desc": "238 RUE DES PYRENEES - 75120", "stop_name": "VILLIERS DE L'ISLE-ADAM"}, "geometry": {"type": "Point", "coordinates": [2.3963650212192182, 48.867758569105796]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d4f45886b4068dd016c20767b245a99639db8ce2", "fields": {"departement": "75", "stop_lat": 48.880390553874314, "code_postal": "75110", "stop_lon": 2.351535098083727, "coord": [48.880390553874314, 2.351535098083727], "stop_id": 5657324, "stop_desc": "77-79 RUE DE MAUBEUGE - 75110", "stop_name": "MAGENTA - MAUBEUGE"}, "geometry": {"type": "Point", "coordinates": [2.351535098083727, 48.880390553874314]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a4e9cdf61f43a1f64e6ffa2ac48e38fd53586e23", "fields": {"departement": "94", "stop_lat": 48.754675708162154, "code_postal": "94022", "stop_lon": 2.4104278941104806, "coord": [48.754675708162154, 2.4104278941104806], "stop_id": 5673016, "stop_desc": "20-22 RUE DU FOUR - 94022", "stop_name": "BRIAND - PELLOUTIER"}, "geometry": {"type": "Point", "coordinates": [2.4104278941104806, 48.754675708162154]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "456459dd68faaf1d9272ec3b441578017e044715", "fields": {"departement": "94", "stop_lat": 48.75947889194248, "code_postal": "94022", "stop_lon": 2.4044802012128668, "coord": [48.75947889194248, 2.4044802012128668], "stop_id": 5673020, "stop_desc": "3-5 RUE YVES LEGER - 94022", "stop_name": "RUE YVES LEGER"}, "geometry": {"type": "Point", "coordinates": [2.4044802012128668, 48.75947889194248]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7c9010785ffbe141470b9a0646b120463156925b", "fields": {"departement": "94", "stop_lat": 48.772746550459274, "code_postal": "94022", "stop_lon": 2.402240082110966, "coord": [48.772746550459274, 2.402240082110966], "stop_id": 5673025, "stop_desc": "FACE 25 RUE DEMANIEUX - 94022", "stop_name": "CIMETIERE DE CHOISY-LE-ROI"}, "geometry": {"type": "Point", "coordinates": [2.402240082110966, 48.772746550459274]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "511a52e0727e27cd4da9a86e56071fd2fb4279cb", "fields": {"departement": "94", "stop_lat": 48.76602842363055, "code_postal": "94022", "stop_lon": 2.4092609990003564, "coord": [48.76602842363055, 2.4092609990003564], "stop_id": 5673030, "stop_desc": "AVENUE PABLO PICASSO - 94022", "stop_name": "CHOISY-LE-ROI RER."}, "geometry": {"type": "Point", "coordinates": [2.4092609990003564, 48.76602842363055]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1862a1b8d7da26c1827561f09ebfe7937c063d69", "fields": {"departement": "94", "stop_lat": 48.762876038980295, "code_postal": "94071", "stop_lon": 2.511182474152281, "coord": [48.762876038980295, 2.511182474152281], "stop_id": 5675599, "stop_desc": "RUE DE BREVANNES - 94071", "stop_name": "RUE DE BREVANNES - CHERE ANNEE"}, "geometry": {"type": "Point", "coordinates": [2.511182474152281, 48.762876038980295]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "efc772ed64c6bd85c788cf914c1859ccc06d8040", "fields": {"departement": "94", "stop_lat": 48.77328787005393, "code_postal": "94011", "stop_lon": 2.4957288820720187, "coord": [48.77328787005393, 2.4957288820720187], "stop_id": 5675602, "stop_desc": "AVENUE DU MARECHAL LECLERC - 94011", "stop_name": "PETITS CARREAUX"}, "geometry": {"type": "Point", "coordinates": [2.4957288820720187, 48.77328787005393]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e4b2318fb825aac28a2e99a60f5b0e87154c9b27", "fields": {"departement": "94", "stop_lat": 48.768742338355544, "code_postal": "94028", "stop_lon": 2.4636938686829297, "coord": [48.768742338355544, 2.4636938686829297], "stop_id": 5675607, "stop_desc": "ROUTE DE LA POMPADOUR - 94028", "stop_name": "POINTE DU LAC"}, "geometry": {"type": "Point", "coordinates": [2.4636938686829297, 48.768742338355544]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e1ac51fb0292c84685c9f082d5f1cb96328fd0b4", "fields": {"departement": "94", "stop_lat": 48.77272997506265, "code_postal": "94028", "stop_lon": 2.4579923598884132, "coord": [48.77272997506265, 2.4579923598884132], "stop_id": 5675610, "stop_desc": "43-45 AVENUE DU GENERAL PIERRE BILLOTTE - 94028", "stop_name": "BILLOTTE - FALKIRK"}, "geometry": {"type": "Point", "coordinates": [2.4579923598884132, 48.77272997506265]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b0fb13acf1fa0498547028bc11e9270f5e86c0b6", "fields": {"departement": "94", "stop_lat": 48.77462751904508, "code_postal": "94028", "stop_lon": 2.456936077410044, "coord": [48.77462751904508, 2.456936077410044], "stop_id": 5675611, "stop_desc": "AVENUE DU GENERAL PIERRE BILLOTTE - 94028", "stop_name": "PORT"}, "geometry": {"type": "Point", "coordinates": [2.456936077410044, 48.77462751904508]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f4a7685ace41c6038dc1e272ac68cc781d523be6", "fields": {"departement": "94", "stop_lat": 48.80093266373305, "code_postal": "94028", "stop_lon": 2.4503572214194693, "coord": [48.80093266373305, 2.4503572214194693], "stop_id": 5675623, "stop_desc": "100 AVENUE DU MARECHAL DE LATTRE DE TASSIGNY - 94028", "stop_name": "VIET"}, "geometry": {"type": "Point", "coordinates": [2.4503572214194693, 48.80093266373305]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5913b78b4eda9f02ed214395eedced0f0ab3cec7", "fields": {"departement": "94", "stop_lat": 48.804191939783315, "code_postal": "94046", "stop_lon": 2.444214244601107, "coord": [48.804191939783315, 2.444214244601107], "stop_id": 5675624, "stop_desc": "253 BIS AVENUE DU GENERAL LECLERC - 94046", "stop_name": "LES JUILLIOTTES-METRO"}, "geometry": {"type": "Point", "coordinates": [2.444214244601107, 48.804191939783315]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "69644068e83665c09391f838a5651ee08fa281ea", "fields": {"departement": "94", "stop_lat": 48.82482628442783, "code_postal": "94018", "stop_lon": 2.3942062961024053, "coord": [48.82482628442783, 2.3942062961024053], "stop_id": 5675633, "stop_desc": "QUAI DE BERCY - 94018", "stop_name": "PARC DE BERCY"}, "geometry": {"type": "Point", "coordinates": [2.3942062961024053, 48.82482628442783]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e0b31b1696b7eb13da4929bb14cc93a73dd90404", "fields": {"departement": "75", "stop_lat": 48.831938061298615, "code_postal": "75112", "stop_lon": 2.38859167244866, "coord": [48.831938061298615, 2.38859167244866], "stop_id": 5675635, "stop_desc": "42 AVENUE DES TERROIRS DE FRANCE - 75112", "stop_name": "TERROIRS DE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.38859167244866, 48.831938061298615]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f93972262c3845fe157f68089e6dac35937eb054", "fields": {"departement": "75", "stop_lat": 48.83390615769929, "code_postal": "75112", "stop_lon": 2.3890292724064803, "coord": [48.83390615769929, 2.3890292724064803], "stop_id": 5675636, "stop_desc": "27-29 RUE BARON LE ROY - 75112", "stop_name": "BARON LE ROY"}, "geometry": {"type": "Point", "coordinates": [2.3890292724064803, 48.83390615769929]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "12b27c897e81cf15ec2bca3b98a60f6c37ad0fbc", "fields": {"departement": "75", "stop_lat": 48.83184843618731, "code_postal": "75112", "stop_lon": 2.388006198691371, "coord": [48.83184843618731, 2.388006198691371], "stop_id": 5675649, "stop_desc": "FACE 40 AVENUE DES TERROIRS DE FRANCE - 75112", "stop_name": "TERROIRS DE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.388006198691371, 48.83184843618731]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aa7b0c320b65e0db70aad9ed0f4ee7c048ac8c1d", "fields": {"departement": "94", "stop_lat": 48.820687922124755, "code_postal": "94018", "stop_lon": 2.4020823389153256, "coord": [48.820687922124755, 2.4020823389153256], "stop_id": 5675651, "stop_desc": "QUAI DES CARRIERES - 94018", "stop_name": "PONT NELSON MANDELA"}, "geometry": {"type": "Point", "coordinates": [2.4020823389153256, 48.820687922124755]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "55bb8c81f86c16a72faa1111d600bd50fb04a5ed", "fields": {"departement": "94", "stop_lat": 48.81004392098946, "code_postal": "94046", "stop_lon": 2.4325507264243877, "coord": [48.81004392098946, 2.4325507264243877], "stop_id": 5675656, "stop_desc": "AVENUE DU GENERAL LECLERC - 94046", "stop_name": "8 MAI 1945"}, "geometry": {"type": "Point", "coordinates": [2.4325507264243877, 48.81004392098946]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "80a6a410e64d4895047f0c0ffe5863f48436daaf", "fields": {"departement": "94", "stop_lat": 48.80866666037178, "code_postal": "94046", "stop_lon": 2.4351744524613728, "coord": [48.80866666037178, 2.4351744524613728], "stop_id": 5675657, "stop_desc": "FACE 149 AVENUE DU GENERAL LECLERC - 94046", "stop_name": "STADE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.4351744524613728, 48.80866666037178]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e2653d1457aa24e9df9c25eb5b2db746f3df8830", "fields": {"departement": "94", "stop_lat": 48.8054799076782, "code_postal": "94046", "stop_lon": 2.4411553902120193, "coord": [48.8054799076782, 2.4411553902120193], "stop_id": 5675659, "stop_desc": "86 AVENUE DU GENERAL LECLERC - 94046", "stop_name": "REPUBLIQUE - GENERAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.4411553902120193, 48.8054799076782]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c5f6ce84ad08c5a66729d9896348910c0ce1b438", "fields": {"departement": "94", "stop_lat": 48.778006534165975, "code_postal": "94028", "stop_lon": 2.466001136385476, "coord": [48.778006534165975, 2.466001136385476], "stop_id": 5675669, "stop_desc": "RUE RENE ARCOS - 94028", "stop_name": "RENE ARCOS"}, "geometry": {"type": "Point", "coordinates": [2.466001136385476, 48.778006534165975]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a511180d114dd490aa33d843906f512a4c5e5ce2", "fields": {"departement": "94", "stop_lat": 48.777666485328965, "code_postal": "94028", "stop_lon": 2.455923122658155, "coord": [48.777666485328965, 2.455923122658155], "stop_id": 5675671, "stop_desc": "AVENUE DES COMPAGNONS DE LA LIBERATION - 94028", "stop_name": "HOTEL DE VILLE DE CRETEIL"}, "geometry": {"type": "Point", "coordinates": [2.455923122658155, 48.777666485328965]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0876468ed0bdf5441fe9f61ba22ca21a55477353", "fields": {"departement": "94", "stop_lat": 48.77137944328404, "code_postal": "94028", "stop_lon": 2.460260049589847, "coord": [48.77137944328404, 2.460260049589847], "stop_id": 5675674, "stop_desc": "42 RUE FALKIRK - 94028", "stop_name": "GRIFFONS"}, "geometry": {"type": "Point", "coordinates": [2.460260049589847, 48.77137944328404]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "88c56b20b8ae35f267bba2db480c00efc2a4d77b", "fields": {"departement": "94", "stop_lat": 48.77060554041263, "code_postal": "94028", "stop_lon": 2.4611556570563367, "coord": [48.77060554041263, 2.4611556570563367], "stop_id": 5675675, "stop_desc": "1-2 PLACE DES ALIZES - 94028", "stop_name": "LA SOURCE"}, "geometry": {"type": "Point", "coordinates": [2.4611556570563367, 48.77060554041263]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6b92bcb5df7212e410a8a84c1422a82e389ca484", "fields": {"departement": "94", "stop_lat": 48.772728329171926, "code_postal": "94011", "stop_lon": 2.490614275236315, "coord": [48.772728329171926, 2.490614275236315], "stop_id": 5675680, "stop_desc": "AVENUE RHIN ET DANUBE-PREMIERE ARMEE FRANCAISE - 94011", "stop_name": "RHIN ET DANUBE"}, "geometry": {"type": "Point", "coordinates": [2.490614275236315, 48.772728329171926]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ada9f907fee71e2e75f12b0da0fa5ff4f9aa5fe5", "fields": {"departement": "94", "stop_lat": 48.770537731284094, "code_postal": "94071", "stop_lon": 2.5085429998906745, "coord": [48.770537731284094, 2.5085429998906745], "stop_id": 5675682, "stop_desc": "PLACE DE LA GARE - 94071", "stop_name": "SUCY - BONNEUIL RER"}, "geometry": {"type": "Point", "coordinates": [2.5085429998906745, 48.770537731284094]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a20c22db3bdb0136a99f47d550d5e19385e4fc09", "fields": {"departement": "94", "stop_lat": 48.76679852935919, "code_postal": "94071", "stop_lon": 2.5086530420389175, "coord": [48.76679852935919, 2.5086530420389175], "stop_id": 5675683, "stop_desc": "38 RUE DE VILLENEUVE - 94071", "stop_name": "PIERRE BROSSOLETTE"}, "geometry": {"type": "Point", "coordinates": [2.5086530420389175, 48.76679852935919]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b1d2782d74e342fc553ec5055647f62838731949", "fields": {"departement": "94", "stop_lat": 48.75380589309081, "code_postal": "94004", "stop_lon": 2.5057012490059583, "coord": [48.75380589309081, 2.5057012490059583], "stop_id": 5675685, "stop_desc": "PISTE GARE ROUTIERE - 94004", "stop_name": "BOISSY-SAINT-LEGER RER"}, "geometry": {"type": "Point", "coordinates": [2.5057012490059583, 48.75380589309081]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a2610eb02ddb92541b27492be90da84ba6dd71e1", "fields": {"departement": "78", "stop_lat": 48.70310256736092, "code_postal": "78575", "stop_lon": 2.070680495679639, "coord": [48.70310256736092, 2.070680495679639], "stop_id": 5682034, "stop_desc": "PLACE DE LA GARE - 78575", "stop_name": "SAINT-REMY-LES-CHEVREUSE RER"}, "geometry": {"type": "Point", "coordinates": [2.070680495679639, 48.70310256736092]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "56404dd40c2ab8a601618e5de52a9ad03d9f45ac", "fields": {"departement": "91", "stop_lat": 48.699990143511734, "code_postal": "91272", "stop_lon": 2.0991719606466352, "coord": [48.699990143511734, 2.0991719606466352], "stop_id": 5682035, "stop_desc": "AVENUE DU GENERAL LECLERC - 91272", "stop_name": "11 NOVEMBRE - COURCELLE-SUR-YVETTE RER"}, "geometry": {"type": "Point", "coordinates": [2.0991719606466352, 48.699990143511734]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "be2aa903705abb1043af84ce7f827d19f27e8d64", "fields": {"departement": "91", "stop_lat": 48.70007163861748, "code_postal": "91272", "stop_lon": 2.0994703297388755, "coord": [48.70007163861748, 2.0994703297388755], "stop_id": 5682036, "stop_desc": "AVENUE DU GENERAL LECLERC - 91272", "stop_name": "11 NOVEMBRE - COURCELLE-SUR-YVETTE RER"}, "geometry": {"type": "Point", "coordinates": [2.0994703297388755, 48.70007163861748]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b8f5b06e19127a74ce7aed9e024983382e77f5fb", "fields": {"departement": "91", "stop_lat": 48.69776837904325, "code_postal": "91272", "stop_lon": 2.1372971793392, "coord": [48.69776837904325, 2.1372971793392], "stop_id": 5682037, "stop_desc": "ROUTE DE BELLEVILLE - 91272", "stop_name": "GIF-SUR-YVETTE RER"}, "geometry": {"type": "Point", "coordinates": [2.1372971793392, 48.69776837904325]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "42d4236343cd5b859999dfc53ddfc1379012594e", "fields": {"departement": "91", "stop_lat": 48.69987783983225, "code_postal": "91661", "stop_lon": 2.2145948835441547, "coord": [48.69987783983225, 2.2145948835441547], "stop_id": 5682046, "stop_desc": "40 RUE DU GENERAL DE GAULLE - 91661", "stop_name": "LES SUISSES - LOZERE RER"}, "geometry": {"type": "Point", "coordinates": [2.2145948835441547, 48.69987783983225]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "98083129f2bb808b479475ff6c375168b29b94ba", "fields": {"departement": "91", "stop_lat": 48.7163389942601, "code_postal": "91477", "stop_lon": 2.2485145137045444, "coord": [48.7163389942601, 2.2485145137045444], "stop_id": 5682050, "stop_desc": "8 RUE EDOUARD BRANLY - 91477", "stop_name": "EDOUARD BRANLY-PALAISEAU RER"}, "geometry": {"type": "Point", "coordinates": [2.2485145137045444, 48.7163389942601]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "379d11a72eafb159c7d01b4f4d5251ea6e102e14", "fields": {"departement": "75", "stop_lat": 48.84028960403854, "code_postal": "75106", "stop_lon": 2.336492195010898, "coord": [48.84028960403854, 2.336492195010898], "stop_id": 5682063, "stop_desc": "18 AVENUE DE L'OBSERVATOIRE - 75106", "stop_name": "OBSERVATOIRE - PORT ROYAL"}, "geometry": {"type": "Point", "coordinates": [2.336492195010898, 48.84028960403854]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8b5802b85f43f4da7eebf9a62d595c644f025f3e", "fields": {"departement": "75", "stop_lat": 48.82273618498334, "code_postal": "75114", "stop_lon": 2.325208756264251, "coord": [48.82273618498334, 2.325208756264251], "stop_id": 5682064, "stop_desc": "4 PLACE DU 25 AOUT 1944 - 75114", "stop_name": "PORTE D'ORLEANS-METRO"}, "geometry": {"type": "Point", "coordinates": [2.325208756264251, 48.82273618498334]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4f1fe27e67b6442e73fe74d4e0bebedd8ff19442", "fields": {"departement": "91", "stop_lat": 48.6989211696682, "code_postal": "91471", "stop_lon": 2.1876838764816937, "coord": [48.6989211696682, 2.1876838764816937], "stop_id": 5682066, "stop_desc": "PLACE DU GENERAL LECLERC - 91471", "stop_name": "MAIRIE-HOPITAL-ORSAY RER"}, "geometry": {"type": "Point", "coordinates": [2.1876838764816937, 48.6989211696682]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1fab974b0e982ce1dc3700c44ae49c10f81d33b5", "fields": {"departement": "92", "stop_lat": 48.78016797303915, "code_postal": "92014", "stop_lon": 2.3130873734741386, "coord": [48.78016797303915, 2.3130873734741386], "stop_id": 5688789, "stop_desc": "PLACE DE LA GARE - 92014", "stop_name": "BOURG-LA-REINE RER"}, "geometry": {"type": "Point", "coordinates": [2.3130873734741386, 48.78016797303915]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1fff9dbd791ac145497177541c242229a9297916", "fields": {"departement": "92", "stop_lat": 48.78153510714234, "code_postal": "92014", "stop_lon": 2.318404500606189, "coord": [48.78153510714234, 2.318404500606189], "stop_id": 5688793, "stop_desc": "17-19 RUE DE LA BIEVRE - 92014", "stop_name": "INSTITUT-NOTRE DAME"}, "geometry": {"type": "Point", "coordinates": [2.318404500606189, 48.78153510714234]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2337674d6e144dce54a9e3c588678d43311e9049", "fields": {"departement": "94", "stop_lat": 48.77720420688661, "code_postal": "94038", "stop_lon": 2.330645426735226, "coord": [48.77720420688661, 2.330645426735226], "stop_id": 5688798, "stop_desc": "FACE 16-18 AVENUE JULES GRAVEREAUX - 94038", "stop_name": "COMMISSARIAT DE L'HAY-LES-ROSES"}, "geometry": {"type": "Point", "coordinates": [2.330645426735226, 48.77720420688661]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7307854be2205347b29f5ff1a7572903167d7ffe", "fields": {"departement": "94", "stop_lat": 48.77630541298781, "code_postal": "94038", "stop_lon": 2.330767932472282, "coord": [48.77630541298781, 2.330767932472282], "stop_id": 5688801, "stop_desc": "30 AVENUE LARROUMES - 94038", "stop_name": "SOUS-PREFECTURE - ROSERAIE"}, "geometry": {"type": "Point", "coordinates": [2.330767932472282, 48.77630541298781]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "49a3cf9bb990e6d9aa7574af55790afd412e378b", "fields": {"departement": "94", "stop_lat": 48.783630474740825, "code_postal": "94038", "stop_lon": 2.3460000993479024, "coord": [48.783630474740825, 2.3460000993479024], "stop_id": 5688807, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 94038", "stop_name": "CENTRE COMMERCIAL DE L'HAY-LES-ROSES"}, "geometry": {"type": "Point", "coordinates": [2.3460000993479024, 48.783630474740825]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e7af9b14fe2ca138e393bcead77c7ba204a869dc", "fields": {"departement": "94", "stop_lat": 48.78763810455098, "code_postal": "94076", "stop_lon": 2.354937298346551, "coord": [48.78763810455098, 2.354937298346551], "stop_id": 5688812, "stop_desc": "FACE 125 AVENUE DE LA REPUBLIQUE - 94076", "stop_name": "VERDUN - REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.354937298346551, 48.78763810455098]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "331d37d7d3f94bcd1552e8e606adb2bc16da2d3e", "fields": {"departement": "94", "stop_lat": 48.788418735281006, "code_postal": "94076", "stop_lon": 2.362282762940594, "coord": [48.788418735281006, 2.362282762940594], "stop_id": 5688815, "stop_desc": "39-41 AVENUE DE LA REPUBLIQUE - 94076", "stop_name": "AUGUSTE DELAUNE"}, "geometry": {"type": "Point", "coordinates": [2.362282762940594, 48.788418735281006]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "14a5e827b9fe1e5bbeb193c990a0c52ecb69b175", "fields": {"departement": "94", "stop_lat": 48.788562771525754, "code_postal": "94076", "stop_lon": 2.361167447217547, "coord": [48.788562771525754, 2.361167447217547], "stop_id": 5688816, "stop_desc": "52 AVENUE DE LA REPUBLIQUE - 94076", "stop_name": "AUGUSTE DELAUNE"}, "geometry": {"type": "Point", "coordinates": [2.361167447217547, 48.788562771525754]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8bf3055be1556b53bd03c86ddd12873b9f88d0e3", "fields": {"departement": "94", "stop_lat": 48.790579620426534, "code_postal": "94081", "stop_lon": 2.380429921953688, "coord": [48.790579620426534, 2.380429921953688], "stop_id": 5688822, "stop_desc": "78 AVENUE DU MOULIN DE SAQUET - 94081", "stop_name": "CAMELINAT"}, "geometry": {"type": "Point", "coordinates": [2.380429921953688, 48.790579620426534]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "33e5652d5cba49845a4941bfa1f3738808f52ac8", "fields": {"departement": "94", "stop_lat": 48.79412102922067, "code_postal": "94081", "stop_lon": 2.4001854625249575, "coord": [48.79412102922067, 2.4001854625249575], "stop_id": 5688829, "stop_desc": "64 AVENUE JEAN JAURES - 94081", "stop_name": "GABRIEL PERI"}, "geometry": {"type": "Point", "coordinates": [2.4001854625249575, 48.79412102922067]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9bc90cf127605abb8af209820d2c46b53105d840", "fields": {"departement": "94", "stop_lat": 48.79578747911074, "code_postal": "94081", "stop_lon": 2.4095063281618168, "coord": [48.79578747911074, 2.4095063281618168], "stop_id": 5688831, "stop_desc": "24 AVENUE DU PRESIDENT SALVADOR ALLENDE - 94081", "stop_name": "CHARLES HELLER"}, "geometry": {"type": "Point", "coordinates": [2.4095063281618168, 48.79578747911074]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5033567c88621f2eda2ef5704ef14a035a8c2b67", "fields": {"departement": "94", "stop_lat": 48.79636753616064, "code_postal": "94081", "stop_lon": 2.416050807417979, "coord": [48.79636753616064, 2.416050807417979], "stop_id": 5688833, "stop_desc": "AVENUE DU PRESIDENT SALVADOR ALLENDE - 94081", "stop_name": "PONT DE VITRY"}, "geometry": {"type": "Point", "coordinates": [2.416050807417979, 48.79636753616064]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b6698864e3287a34360d2c60de8a21158687447f", "fields": {"departement": "94", "stop_lat": 48.80046006629337, "code_postal": "94046", "stop_lon": 2.4360433254631566, "coord": [48.80046006629337, 2.4360433254631566], "stop_id": 5688843, "stop_desc": "31-33 RUE VICTOR HUGO - 94046", "stop_name": "HUGO - BLUM"}, "geometry": {"type": "Point", "coordinates": [2.4360433254631566, 48.80046006629337]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "655da09dfa807883f18251352f233ace0490a1a8", "fields": {"departement": "75", "stop_lat": 48.89766454139873, "code_postal": "75118", "stop_lon": 2.34507881517612, "coord": [48.89766454139873, 2.34507881517612], "stop_id": 5688891, "stop_desc": "FACE 55-57 RUE BELLIARD - 75118", "stop_name": "PORTE DE CLIGNANCOURT"}, "geometry": {"type": "Point", "coordinates": [2.34507881517612, 48.89766454139873]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d45543487c754ae75a7383a152dee2209e32f595", "fields": {"departement": "75", "stop_lat": 48.89601086148572, "code_postal": "75118", "stop_lon": 2.3457600883891234, "coord": [48.89601086148572, 2.3457600883891234], "stop_id": 5688893, "stop_desc": "55 BOULEVARD ORNANO - 75118", "stop_name": "ALBERT KAHN"}, "geometry": {"type": "Point", "coordinates": [2.3457600883891234, 48.89601086148572]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2b1604f87fdeca09741cf7ab6fc20b42a983660d", "fields": {"departement": "75", "stop_lat": 48.89480647637911, "code_postal": "75118", "stop_lon": 2.3471501651421702, "coord": [48.89480647637911, 2.3471501651421702], "stop_id": 5688896, "stop_desc": "46 BOULEVARD ORNANO - 75118", "stop_name": "SIMPLON"}, "geometry": {"type": "Point", "coordinates": [2.3471501651421702, 48.89480647637911]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2e4182ffb3ad1e9d2c1409663eff345d8432d2ab", "fields": {"departement": "75", "stop_lat": 48.8842642695008, "code_postal": "75118", "stop_lon": 2.349628333621673, "coord": [48.8842642695008, 2.349628333621673], "stop_id": 5688902, "stop_desc": "8 BOULEVARD BARBES - 75118", "stop_name": "BARBES - ROCHECHOUART"}, "geometry": {"type": "Point", "coordinates": [2.349628333621673, 48.8842642695008]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "79497949032edbddd73de1da7c78862c8589e1ae", "fields": {"departement": "75", "stop_lat": 48.870844523505404, "code_postal": "75110", "stop_lon": 2.361069158580319, "coord": [48.870844523505404, 2.361069158580319], "stop_id": 5688911, "stop_desc": "8 PLACE JACQUES BONSERGENT - 75110", "stop_name": "JACQUES BONSERGENT"}, "geometry": {"type": "Point", "coordinates": [2.361069158580319, 48.870844523505404]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d226cf732e30ee22da30265a89e2c044d1944780", "fields": {"departement": "75", "stop_lat": 48.868039861543714, "code_postal": "75110", "stop_lon": 2.363955968897187, "coord": [48.868039861543714, 2.363955968897187], "stop_id": 5688914, "stop_desc": "12 PLACE DE LA REPUBLIQUE - 75110", "stop_name": "REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.363955968897187, 48.868039861543714]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dd6d8db8d4fd4e9becb362b1cccb45caab42e302", "fields": {"departement": "75", "stop_lat": 48.863499642571085, "code_postal": "75111", "stop_lon": 2.3703286866162263, "coord": [48.863499642571085, 2.3703286866162263], "stop_id": 5688919, "stop_desc": "40 BOULEVARD VOLTAIRE - 75111", "stop_name": "OBERKAMPF - RICHARD LENOIR"}, "geometry": {"type": "Point", "coordinates": [2.3703286866162263, 48.863499642571085]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3b79bddfcfa536297a8b7b13ce38ad90fa6796d2", "fields": {"departement": "75", "stop_lat": 48.85227640549291, "code_postal": "75111", "stop_lon": 2.3896468443752967, "coord": [48.85227640549291, 2.3896468443752967], "stop_id": 5688932, "stop_desc": "209 BOULEVARD VOLTAIRE - 75111", "stop_name": "BOULETS - MONTREUIL"}, "geometry": {"type": "Point", "coordinates": [2.3896468443752967, 48.85227640549291]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2d0c90c6816ba92803e9396306a786c900e68975", "fields": {"departement": "75", "stop_lat": 48.84453883847328, "code_postal": "75112", "stop_lon": 2.4060065891934315, "coord": [48.84453883847328, 2.4060065891934315], "stop_id": 5688939, "stop_desc": "92 AVENUE DE SAINT-MANDE - 75112", "stop_name": "DOCTEUR NETTER"}, "geometry": {"type": "Point", "coordinates": [2.4060065891934315, 48.84453883847328]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6ad4adb62f1878ef63f6ba50e4111d6d866b9d73", "fields": {"departement": "75", "stop_lat": 48.844122540397606, "code_postal": "75112", "stop_lon": 2.410812778561765, "coord": [48.844122540397606, 2.410812778561765], "stop_id": 5688941, "stop_desc": "4 AVENUE COURTELINE - 75112", "stop_name": "PORTE DE SAINT-MANDE"}, "geometry": {"type": "Point", "coordinates": [2.410812778561765, 48.844122540397606]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f87ad3f9bbddf5234da968da20b657265fc0e8b1", "fields": {"departement": "94", "stop_lat": 48.84379487347871, "code_postal": "94067", "stop_lon": 2.417198567449742, "coord": [48.84379487347871, 2.417198567449742], "stop_id": 5688944, "stop_desc": "2-2BIS AVENUE VICTOR HUGO - 94067", "stop_name": "MAIRIE DE SAINT-MANDE"}, "geometry": {"type": "Point", "coordinates": [2.417198567449742, 48.84379487347871]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5cfee268fbc90dc3652ac3986f4ca65a64945028", "fields": {"departement": "94", "stop_lat": 48.84724821176432, "code_postal": "94080", "stop_lon": 2.426831570319593, "coord": [48.84724821176432, 2.426831570319593], "stop_id": 5688947, "stop_desc": "74 AVENUE AUBERT - 94080", "stop_name": "LYCEE HECTOR BERLIOZ"}, "geometry": {"type": "Point", "coordinates": [2.426831570319593, 48.84724821176432]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fc33023ad0dd07f4c6d9a46439dfc3154fe05a99", "fields": {"departement": "94", "stop_lat": 48.84479511335644, "code_postal": "94080", "stop_lon": 2.4374894541796297, "coord": [48.84479511335644, 2.4374894541796297], "stop_id": 5688954, "stop_desc": "12 AVENUE DE PARIS - 94080", "stop_name": "AVENUE DU CHATEAU"}, "geometry": {"type": "Point", "coordinates": [2.4374894541796297, 48.84479511335644]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9cb4eec3f3bf2da201b6e4c26deea3c437e94d2d", "fields": {"departement": "75", "stop_lat": 48.844350726240364, "code_postal": "75112", "stop_lon": 2.4421319571559623, "coord": [48.844350726240364, 2.4421319571559623], "stop_id": 5688956, "stop_desc": "PISTE GARE ROUTIERE - 75112", "stop_name": "CHATEAU DE VINCENNES"}, "geometry": {"type": "Point", "coordinates": [2.4421319571559623, 48.844350726240364]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4a4c2ad2cc5a6bd0ad4219de4b09fd3ba67fedb0", "fields": {"departement": "75", "stop_lat": 48.848245981367015, "code_postal": "75111", "stop_lon": 2.398126731810536, "coord": [48.848245981367015, 2.398126731810536], "stop_id": 5688958, "stop_desc": "3 AVENUE DU TRONE - 75111", "stop_name": "NATION - PLACE DES ANTILLES"}, "geometry": {"type": "Point", "coordinates": [2.398126731810536, 48.848245981367015]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "838d3a74dbcf4dcf8d9dda6922610094339e4528", "fields": {"departement": "75", "stop_lat": 48.83080094762275, "code_postal": "75113", "stop_lon": 2.3773595491650235, "coord": [48.83080094762275, 2.3773595491650235], "stop_id": 5709847, "stop_desc": "FACE 34 RUE NEUVE TOLBIAC - 75113", "stop_name": "BIBLIOTHEQUE FRANCOIS MITTERRAND"}, "geometry": {"type": "Point", "coordinates": [2.3773595491650235, 48.83080094762275]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bbc4299dbd071459bf4961f647e102b6414139b7", "fields": {"departement": "94", "stop_lat": 48.81781396314757, "code_postal": "94041", "stop_lon": 2.3980910406523597, "coord": [48.81781396314757, 2.3980910406523597], "stop_id": 5709861, "stop_desc": "50 BOULEVARD PAUL VAILLANT COUTURIER - 94041", "stop_name": "VAILLANT COUTURIER - LENINE"}, "geometry": {"type": "Point", "coordinates": [2.3980910406523597, 48.81781396314757]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "66d7952e380bcdc04cee6dc32bbdc516b7925e04", "fields": {"departement": "94", "stop_lat": 48.81460461799604, "code_postal": "94002", "stop_lon": 2.4147992375058376, "coord": [48.81460461799604, 2.4147992375058376], "stop_id": 5709869, "stop_desc": "17 RUE CHARLES DE GAULLE - 94002", "stop_name": "GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.4147992375058376, 48.81460461799604]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5b48104b3c2a7aca0552c94988024e3078349601", "fields": {"departement": "94", "stop_lat": 48.83829408516734, "code_postal": "94067", "stop_lon": 2.417802780011613, "coord": [48.83829408516734, 2.417802780011613], "stop_id": 5709878, "stop_desc": "75-77 AVENUE DU GENERAL DE GAULLE - 94067", "stop_name": "JEAN MERMOZ"}, "geometry": {"type": "Point", "coordinates": [2.417802780011613, 48.83829408516734]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "35cf1dde6f60f00ffd50530bfe15536189833217", "fields": {"departement": "94", "stop_lat": 48.84484956402065, "code_postal": "94080", "stop_lon": 2.436863176166916, "coord": [48.84484956402065, 2.436863176166916], "stop_id": 5709892, "stop_desc": "16 AVENUE DE PARIS - 94080", "stop_name": "AVENUE DU CHATEAU"}, "geometry": {"type": "Point", "coordinates": [2.436863176166916, 48.84484956402065]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e830ea7d4ed4c13308b99ae89047ed14b8879aff", "fields": {"departement": "94", "stop_lat": 48.817747748459695, "code_postal": "94018", "stop_lon": 2.418655538596147, "coord": [48.817747748459695, 2.418655538596147], "stop_id": 5709900, "stop_desc": "FACE 5 QUAI DES CARRIERES - 94018", "stop_name": "PONT DE CHARENTON"}, "geometry": {"type": "Point", "coordinates": [2.418655538596147, 48.817747748459695]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0abebf87d6aea7fdd77394623b83ca7c9c8f1f73", "fields": {"departement": "94", "stop_lat": 48.81814859027737, "code_postal": "94041", "stop_lon": 2.3938723284437864, "coord": [48.81814859027737, 2.3938723284437864], "stop_id": 5709903, "stop_desc": "21 RUE JEAN-JACQUES ROUSSEAU - 94041", "stop_name": "JEAN-JACQUES ROUSSEAU"}, "geometry": {"type": "Point", "coordinates": [2.3938723284437864, 48.81814859027737]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7808d132046f1ff7573a253a761417e8e26859a2", "fields": {"departement": "75", "stop_lat": 48.850067906070635, "code_postal": "75105", "stop_lon": 2.3425522330838273, "coord": [48.850067906070635, 2.3425522330838273], "stop_id": 5709973, "stop_desc": "29-31 BOULEVARD SAINT-MICHEL - 75105", "stop_name": "LES ECOLES"}, "geometry": {"type": "Point", "coordinates": [2.3425522330838273, 48.850067906070635]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ccc8eb98176331cdd508fd9f76533ecb49a1c75e", "fields": {"departement": "75", "stop_lat": 48.85247650155603, "code_postal": "75105", "stop_lon": 2.3435194294224857, "coord": [48.85247650155603, 2.3435194294224857], "stop_id": 5709975, "stop_desc": "10 BOULEVARD SAINT-MICHEL - 75105", "stop_name": "SAINT-MICHEL - SAINT-GERMAIN"}, "geometry": {"type": "Point", "coordinates": [2.3435194294224857, 48.85247650155603]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3795d741f6430e85d023a5aa86bced1d135d5aeb", "fields": {"departement": "75", "stop_lat": 48.85988210624847, "code_postal": "75101", "stop_lon": 2.344283098140992, "coord": [48.85988210624847, 2.344283098140992], "stop_id": 5709980, "stop_desc": "128 RUE DE RIVOLI - 75101", "stop_name": "RIVOLI - PONT NEUF"}, "geometry": {"type": "Point", "coordinates": [2.344283098140992, 48.85988210624847]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e5dd7b1e8fc7b2b57dc2e3f3d6367ff88bc04eb5", "fields": {"departement": "75", "stop_lat": 48.86565205893974, "code_postal": "75102", "stop_lon": 2.3433847968096146, "coord": [48.86565205893974, 2.3433847968096146], "stop_id": 5709985, "stop_desc": "54 RUE DU LOUVRE - 75102", "stop_name": "LOUVRE - ETIENNE MARCEL"}, "geometry": {"type": "Point", "coordinates": [2.3433847968096146, 48.86565205893974]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a3412e52207dec6a8ac1607c11d1cfc6e454a747", "fields": {"departement": "75", "stop_lat": 48.86862686808374, "code_postal": "75102", "stop_lon": 2.343494134664324, "coord": [48.86862686808374, 2.343494134664324], "stop_id": 5709986, "stop_desc": "140 RUE MONTMARTRE - 75102", "stop_name": "REAUMUR - MONTMARTRE"}, "geometry": {"type": "Point", "coordinates": [2.343494134664324, 48.86862686808374]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a02afa5285b2aee55f8b56b77dfc3deea2aa2487", "fields": {"departement": "75", "stop_lat": 48.876167195986696, "code_postal": "75109", "stop_lon": 2.3440673024762932, "coord": [48.876167195986696, 2.3440673024762932], "stop_id": 5709990, "stop_desc": "19-21 RUE CADET - 75109", "stop_name": "CADET"}, "geometry": {"type": "Point", "coordinates": [2.3440673024762932, 48.876167195986696]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bd4169005aef32138f93cc447f150fa75c2ba0ba", "fields": {"departement": "75", "stop_lat": 48.88031017660248, "code_postal": "75109", "stop_lon": 2.346357070489225, "coord": [48.88031017660248, 2.346357070489225], "stop_id": 5709992, "stop_desc": "62-64 RUE ROCHECHOUART - 75109", "stop_name": "CONDORCET-TRUDAINE"}, "geometry": {"type": "Point", "coordinates": [2.346357070489225, 48.88031017660248]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ee034ba895c9c6a6fa87fa6b60ce224a1698c8b0", "fields": {"departement": "93", "stop_lat": 48.903074996687764, "code_postal": "93070", "stop_lon": 2.340431012313881, "coord": [48.903074996687764, 2.340431012313881], "stop_id": 5710009, "stop_desc": "120 RUE DES ROSIERS - 93070", "stop_name": "PAUL BERT"}, "geometry": {"type": "Point", "coordinates": [2.340431012313881, 48.903074996687764]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "45e9aba797e9525ac17a946f7fa6eddf49e0d175", "fields": {"departement": "93", "stop_lat": 48.90558243403919, "code_postal": "93070", "stop_lon": 2.3368320603520347, "coord": [48.90558243403919, 2.3368320603520347], "stop_id": 5710010, "stop_desc": "FACE 58 RUE DES ROSIERS - 93070", "stop_name": "EUGENE LUMEAU - LES ECOLES"}, "geometry": {"type": "Point", "coordinates": [2.3368320603520347, 48.90558243403919]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "55d955713720fa4d07c72483d6699c62015ac3b3", "fields": {"departement": "93", "stop_lat": 48.914973234780966, "code_postal": "93070", "stop_lon": 2.324764612767746, "coord": [48.914973234780966, 2.324764612767746], "stop_id": 5710018, "stop_desc": "QUAI DE SEINE - 93070", "stop_name": "QUAI DE SEINE"}, "geometry": {"type": "Point", "coordinates": [2.324764612767746, 48.914973234780966]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "51cb98cbfcb66ba5c05efb7bb16a90757c7dd973", "fields": {"departement": "94", "stop_lat": 48.85624422313098, "code_postal": "94033", "stop_lon": 2.4820899197772075, "coord": [48.85624422313098, 2.4820899197772075], "stop_id": 3685764, "stop_desc": "14 AV CHARLES GARCIA - 94033", "stop_name": "JEAN MACE"}, "geometry": {"type": "Point", "coordinates": [2.4820899197772075, 48.85624422313098]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2cdee2f8cd8cfcb1e563e02587aa637e11c540a3", "fields": {"departement": "94", "stop_lat": 48.84850929983121, "code_postal": "94080", "stop_lon": 2.4546008259526815, "coord": [48.84850929983121, 2.4546008259526815], "stop_id": 3685744, "stop_desc": "20 RUE FELIX FAURE - 94080", "stop_name": "PASTEUR"}, "geometry": {"type": "Point", "coordinates": [2.4546008259526815, 48.84850929983121]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cbbbb11e23ce75db74ac8f89704acbac3b1599b6", "fields": {"departement": "94", "stop_lat": 48.76751753977791, "code_postal": "94073", "stop_lon": 2.377269907434098, "coord": [48.76751753977791, 2.377269907434098], "stop_id": 3686432, "stop_desc": "61 AVENUE DU GENERAL DE GAULLE - 94073", "stop_name": "PAUL LANGEVIN"}, "geometry": {"type": "Point", "coordinates": [2.377269907434098, 48.76751753977791]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f93f70eb950c0be21ce84d0a7249183a6dc551a1", "fields": {"departement": "94", "stop_lat": 48.765524735623956, "code_postal": "94022", "stop_lon": 2.409844938920653, "coord": [48.765524735623956, 2.409844938920653], "stop_id": 3686440, "stop_desc": "AVENUE JEAN JAURES - 94022", "stop_name": "CHOISY-LE-ROI RER"}, "geometry": {"type": "Point", "coordinates": [2.409844938920653, 48.765524735623956]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "542901ce0b701467b4ab009cc830c6c97de54c84", "fields": {"departement": "94", "stop_lat": 48.778995662591726, "code_postal": "94002", "stop_lon": 2.426237874429915, "coord": [48.778995662591726, 2.426237874429915], "stop_id": 3686447, "stop_desc": "RUE J.B. PREUX - 94002", "stop_name": "STADE D'ALFORTVILLE"}, "geometry": {"type": "Point", "coordinates": [2.426237874429915, 48.778995662591726]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "69a6a9d46573a88154a93382aa56f95973b1068e", "fields": {"departement": "94", "stop_lat": 48.81488981158628, "code_postal": "94046", "stop_lon": 2.4184197009305843, "coord": [48.81488981158628, 2.4184197009305843], "stop_id": 3686491, "stop_desc": "17 RUE EUGENE RENAULT - 94046", "stop_name": "MAISONS-ALFORT - ECOLE VETERINAIRE"}, "geometry": {"type": "Point", "coordinates": [2.4184197009305843, 48.81488981158628]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b2af74881326baaa2069ba3110447a8ec6fe4d33", "fields": {"departement": "94", "stop_lat": 48.804012330369375, "code_postal": "94046", "stop_lon": 2.444050598766659, "coord": [48.804012330369375, 2.444050598766659], "stop_id": 3686551, "stop_desc": "102 AVENUE DU GENERAL LECLERC - 94046", "stop_name": "LES JUILLIOTTES-METRO"}, "geometry": {"type": "Point", "coordinates": [2.444050598766659, 48.804012330369375]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5427cf9e8ec587f8b0e8f94753ced78447264f5e", "fields": {"departement": "94", "stop_lat": 48.765256267477696, "code_postal": "94011", "stop_lon": 2.4858743459580874, "coord": [48.765256267477696, 2.4858743459580874], "stop_id": 3686582, "stop_desc": "8 MAIL DE LA RESISTANCE - 94011", "stop_name": "PLACE DES LIBERTES"}, "geometry": {"type": "Point", "coordinates": [2.4858743459580874, 48.765256267477696]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5a4d6f97d8786eb2db9a4b8547c65054b9cd60ee", "fields": {"departement": "94", "stop_lat": 48.78919637955473, "code_postal": "94028", "stop_lon": 2.4661649010312385, "coord": [48.78919637955473, 2.4661649010312385], "stop_id": 3686562, "stop_desc": "FACE 80 AVENUE PIERRE BROSSOLETTE - 94028", "stop_name": "GABRIEL PERI"}, "geometry": {"type": "Point", "coordinates": [2.4661649010312385, 48.78919637955473]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "64b6cf4a2d7b8e891eeba39c094e9d8d312829e9", "fields": {"departement": "94", "stop_lat": 48.79140251008365, "code_postal": "94028", "stop_lon": 2.46233432604344, "coord": [48.79140251008365, 2.46233432604344], "stop_id": 3686560, "stop_desc": "33 RUE PIERRE BROSSOLETTE - 94028", "stop_name": "D'ESTIENNE D'ORVES"}, "geometry": {"type": "Point", "coordinates": [2.46233432604344, 48.79140251008365]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "53b55a1c84527f7a5575916998396ed01dec0806", "fields": {"departement": "94", "stop_lat": 48.81050478489195, "code_postal": "94002", "stop_lon": 2.4169431792660587, "coord": [48.81050478489195, 2.4169431792660587], "stop_id": 3686489, "stop_desc": "85-87 RUE VAILLANT COUTURIER - 94002", "stop_name": "RUE DE SEINE"}, "geometry": {"type": "Point", "coordinates": [2.4169431792660587, 48.81050478489195]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "133a9779f7435493728d202275d9539f09d384c6", "fields": {"departement": "94", "stop_lat": 48.81064656812028, "code_postal": "94046", "stop_lon": 2.4319666864318217, "coord": [48.81064656812028, 2.4319666864318217], "stop_id": 3686544, "stop_desc": "103 AVENUE DU GENERAL LECLERC - 94046", "stop_name": "8 MAI 1945"}, "geometry": {"type": "Point", "coordinates": [2.4319666864318217, 48.81064656812028]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2d2dde41a9d6ad0dad436faf9f4dc8c72fb80b9d", "fields": {"departement": "94", "stop_lat": 48.77052485741398, "code_postal": "94011", "stop_lon": 2.4846112470308515, "coord": [48.77052485741398, 2.4846112470308515], "stop_id": 3686576, "stop_desc": "AVENUE DE VERDUN - 94011", "stop_name": "COLONEL FABIEN"}, "geometry": {"type": "Point", "coordinates": [2.4846112470308515, 48.77052485741398]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0f700280596d90318db24af47b25908fcd8519ea", "fields": {"departement": "94", "stop_lat": 48.8074424310896, "code_postal": "94046", "stop_lon": 2.437444548191373, "coord": [48.8074424310896, 2.437444548191373], "stop_id": 3686547, "stop_desc": "38 AVENUE DU GENERAL LECLERC - 94046", "stop_name": "CECILE"}, "geometry": {"type": "Point", "coordinates": [2.437444548191373, 48.8074424310896]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6433f4958b209111e77313fa8e62285559d7c87d", "fields": {"departement": "94", "stop_lat": 48.7724984054768, "code_postal": "94011", "stop_lon": 2.494611431387697, "coord": [48.7724984054768, 2.494611431387697], "stop_id": 3686588, "stop_desc": "GRANDE ALLEE - 94011", "stop_name": "PETITS CARREAUX"}, "geometry": {"type": "Point", "coordinates": [2.494611431387697, 48.7724984054768]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fd5ab58a378dc0f15eea500719c2f4c813b912e2", "fields": {"departement": "94", "stop_lat": 48.82018223486051, "code_postal": "94017", "stop_lon": 2.485187767922024, "coord": [48.82018223486051, 2.485187767922024], "stop_id": 3687019, "stop_desc": "2-4 AVENUE DU GENERAL DE GAULLE - 94017", "stop_name": "LA FOURCHETTE DE CHAMPIGNY"}, "geometry": {"type": "Point", "coordinates": [2.485187767922024, 48.82018223486051]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0134a5989d48d0933cd4086cbdfd72d13bc84110", "fields": {"departement": "94", "stop_lat": 48.80483918599314, "code_postal": "94068", "stop_lon": 2.485933228953106, "coord": [48.80483918599314, 2.485933228953106], "stop_id": 3687007, "stop_desc": "RUE ANDRE DE CAILLEUX - 94068", "stop_name": "LE PARC DE SAINT-MAUR RER"}, "geometry": {"type": "Point", "coordinates": [2.485933228953106, 48.80483918599314]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d9ec9de54a0a0179418ff5fbfd64839049d1d904", "fields": {"departement": "94", "stop_lat": 48.80307737363469, "code_postal": "94068", "stop_lon": 2.4860914567450045, "coord": [48.80307737363469, 2.4860914567450045], "stop_id": 3687006, "stop_desc": "11 AVENUE DE LA REPUBLIQUE - 94068", "stop_name": "MAIRIE DE SAINT-MAUR"}, "geometry": {"type": "Point", "coordinates": [2.4860914567450045, 48.80307737363469]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fb25e82f2fb3c17089bdeac97c27d0c9672c7a9d", "fields": {"departement": "94", "stop_lat": 48.790117021924274, "code_postal": "94028", "stop_lon": 2.4536935278554077, "coord": [48.790117021924274, 2.4536935278554077], "stop_id": 3686993, "stop_desc": "2 RUE MAURICE DEMENITROUX - 94028", "stop_name": "CRETEIL - UNIVERSITE"}, "geometry": {"type": "Point", "coordinates": [2.4536935278554077, 48.790117021924274]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d7d58d7662a468900ed6b55d13a366c38a55fc82", "fields": {"departement": "94", "stop_lat": 48.82235696607947, "code_postal": "94017", "stop_lon": 2.492475926398596, "coord": [48.82235696607947, 2.492475926398596], "stop_id": 3687021, "stop_desc": "92 AVENUE DU GENERAL DE GAULLE - 94017", "stop_name": "LES MARRONNIERS"}, "geometry": {"type": "Point", "coordinates": [2.492475926398596, 48.82235696607947]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ff92103957d7060edf75b7ab3a9637a73ff72f00", "fields": {"departement": "94", "stop_lat": 48.799255398527684, "code_postal": "94068", "stop_lon": 2.472842757600087, "coord": [48.799255398527684, 2.472842757600087], "stop_id": 3687001, "stop_desc": "3 BIS BOULEVARD DE CRETEIL - 94068", "stop_name": "DOCTEUR TOURASSE"}, "geometry": {"type": "Point", "coordinates": [2.472842757600087, 48.799255398527684]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "19322fd1b669eea9790c9727a07beb3df372b491", "fields": {"departement": "94", "stop_lat": 48.807115850411975, "code_postal": "94068", "stop_lon": 2.476224250298953, "coord": [48.807115850411975, 2.476224250298953], "stop_id": 3687011, "stop_desc": "5-7 BOULEVARD RABELAIS - 94068", "stop_name": "LIBERATION - RABELAIS"}, "geometry": {"type": "Point", "coordinates": [2.476224250298953, 48.807115850411975]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2318f0d500dcedecc4f746412687d8f15e848f54", "fields": {"departement": "94", "stop_lat": 48.809110386571426, "code_postal": "94068", "stop_lon": 2.4768691497537905, "coord": [48.809110386571426, 2.4768691497537905], "stop_id": 3687013, "stop_desc": "22 BIS AVENUE DE LA LIBERATION - 94068", "stop_name": "MARINVILLE"}, "geometry": {"type": "Point", "coordinates": [2.4768691497537905, 48.809110386571426]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "72eb8e26d4595ec1570b8a675450ff810a129191", "fields": {"departement": "94", "stop_lat": 48.793919787708134, "code_postal": "94028", "stop_lon": 2.461701016520131, "coord": [48.793919787708134, 2.461701016520131], "stop_id": 3686997, "stop_desc": "2-4 AVENUE DE VERDUN - 94028", "stop_name": "EGLISE DE CRETEIL"}, "geometry": {"type": "Point", "coordinates": [2.461701016520131, 48.793919787708134]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2e45dddbcf6126a9baa68cfdf71bf106968b33d9", "fields": {"departement": "94", "stop_lat": 48.791731739472695, "code_postal": "94028", "stop_lon": 2.4568258619745396, "coord": [48.791731739472695, 2.4568258619745396], "stop_id": 3686995, "stop_desc": "FACE 34-36 RUE DES MECHES - 94028", "stop_name": "CHATEAU"}, "geometry": {"type": "Point", "coordinates": [2.4568258619745396, 48.791731739472695]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "97ba15a28eab182211410f639b05a38ead3014bf", "fields": {"departement": "75", "stop_lat": 48.858406114245255, "code_postal": "75107", "stop_lon": 2.3140316010249684, "coord": [48.858406114245255, 2.3140316010249684], "stop_id": 3687104, "stop_desc": "RUE DE GRENELLE - 75107", "stop_name": "ESPLANADE DES INVALIDES"}, "geometry": {"type": "Point", "coordinates": [2.3140316010249684, 48.858406114245255]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "634f907227296553419a448a097686e9ee35e098", "fields": {"departement": "94", "stop_lat": 48.797234127455916, "code_postal": "94028", "stop_lon": 2.4637768508323474, "coord": [48.797234127455916, 2.4637768508323474], "stop_id": 3687035, "stop_desc": "AVENUE DE VERDUN - 94028", "stop_name": "HOPITAL INTERCOMMUNAL"}, "geometry": {"type": "Point", "coordinates": [2.4637768508323474, 48.797234127455916]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "595b282f302541001dfa041cd9cd2cadebd7d68a", "fields": {"departement": "94", "stop_lat": 48.78548837703237, "code_postal": "94028", "stop_lon": 2.453547136144548, "coord": [48.78548837703237, 2.453547136144548], "stop_id": 3687040, "stop_desc": "AVENUE FRANCOIS MAURIAC - 94028", "stop_name": "CROIX DES MECHES"}, "geometry": {"type": "Point", "coordinates": [2.453547136144548, 48.78548837703237]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7ade3106c38369dd7aad04a8c214fa307f1d44ea", "fields": {"departement": "94", "stop_lat": 48.81938581587817, "code_postal": "94042", "stop_lon": 2.4823545433424603, "coord": [48.81938581587817, 2.4823545433424603], "stop_id": 3687032, "stop_desc": "FACE 11 AVENUE CHARLES FLOQUET - 94042", "stop_name": "42E DE LIGNE"}, "geometry": {"type": "Point", "coordinates": [2.4823545433424603, 48.81938581587817]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0e9befcfda82d47f5d4bc2e1350b2429062ce83d", "fields": {"departement": "75", "stop_lat": 48.86309803448752, "code_postal": "75120", "stop_lon": 2.387873320719877, "coord": [48.86309803448752, 2.387873320719877], "stop_id": 3687065, "stop_desc": "7-9 PLACE AUGUSTE METIVIER - 75120", "stop_name": "AUGUSTE METIVIER"}, "geometry": {"type": "Point", "coordinates": [2.387873320719877, 48.86309803448752]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8df12848ec263b299664c9629fd2838331b5d091", "fields": {"departement": "75", "stop_lat": 48.86294513869873, "code_postal": "75120", "stop_lon": 2.3881319851015386, "coord": [48.86294513869873, 2.3881319851015386], "stop_id": 3687066, "stop_desc": "4 AVENUE GAMBETTA - 75120", "stop_name": "AUGUSTE METIVIER"}, "geometry": {"type": "Point", "coordinates": [2.3881319851015386, 48.86294513869873]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dfa2fbce5ab83beb2b793ce124bdc7451845ca08", "fields": {"departement": "94", "stop_lat": 48.791731739472695, "code_postal": "94028", "stop_lon": 2.4568258619745396, "coord": [48.791731739472695, 2.4568258619745396], "stop_id": 3687042, "stop_desc": "FACE 34-36 RUE DES MECHES - 94028", "stop_name": "CHATEAU"}, "geometry": {"type": "Point", "coordinates": [2.4568258619745396, 48.791731739472695]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4a90bdb29329f3304fe8d70fe89d0a1a55be44b9", "fields": {"departement": "75", "stop_lat": 48.85726596088864, "code_postal": "75104", "stop_lon": 2.3527954157613853, "coord": [48.85726596088864, 2.3527954157613853], "stop_id": 3687085, "stop_desc": "62 RUE DE RIVOLI - 75104", "stop_name": "HOTEL DE VILLE"}, "geometry": {"type": "Point", "coordinates": [2.3527954157613853, 48.85726596088864]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fc5552007070a2de4f0a80dcf9b0d3ea0ed1ee5a", "fields": {"departement": "75", "stop_lat": 48.85705617283327, "code_postal": "75111", "stop_lon": 2.368472227233411, "coord": [48.85705617283327, 2.368472227233411], "stop_id": 3687076, "stop_desc": "1 RUE DU CHEMIN VERT - 75111", "stop_name": "BEAUMARCHAIS"}, "geometry": {"type": "Point", "coordinates": [2.368472227233411, 48.85705617283327]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3be3911ae409e181191a510752d8d691e2dcc6bf", "fields": {"departement": "75", "stop_lat": 48.85678114513896, "code_postal": "75104", "stop_lon": 2.348259761089279, "coord": [48.85678114513896, 2.348259761089279], "stop_id": 3687088, "stop_desc": "FACE 14 QUAI DE GESVRES - 75104", "stop_name": "CHATELET"}, "geometry": {"type": "Point", "coordinates": [2.348259761089279, 48.85678114513896]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ba71892c078b000d4dc2bbeb044113398b77114a", "fields": {"departement": "93", "stop_lat": 48.86268750480128, "code_postal": "93006", "stop_lon": 2.4157156831772415, "coord": [48.86268750480128, 2.4157156831772415], "stop_id": 3687276, "stop_desc": "25 AVENUE DE LA REPUBLIQUE - 93006", "stop_name": "GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.4157156831772415, 48.86268750480128]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d2fc3efd7f4bcdc91a2ad2c8e18cfb8a3d1f4c89", "fields": {"departement": "75", "stop_lat": 48.86208239491901, "code_postal": "75120", "stop_lon": 2.40594811880992, "coord": [48.86208239491901, 2.40594811880992], "stop_id": 3687271, "stop_desc": "141-143 RUE DE BAGNOLET - 75120", "stop_name": "PELLEPORT - BAGNOLET"}, "geometry": {"type": "Point", "coordinates": [2.40594811880992, 48.86208239491901]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "075f5723000d5b6cbbf28ff66d153440db43ff13", "fields": {"departement": "93", "stop_lat": 48.87073234403016, "code_postal": "93006", "stop_lon": 2.426831271086477, "coord": [48.87073234403016, 2.426831271086477], "stop_id": 3687288, "stop_desc": "FACE 7 RUE PIERRE BROSSOLETTE - 93006", "stop_name": "LES MALASSIS"}, "geometry": {"type": "Point", "coordinates": [2.426831271086477, 48.87073234403016]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d9330c46ae8a84759358de6ea60a82683fd867e2", "fields": {"departement": "93", "stop_lat": 48.86815870458364, "code_postal": "93006", "stop_lon": 2.41885728522245, "coord": [48.86815870458364, 2.41885728522245], "stop_id": 3687279, "stop_desc": "48 RUE SADI CARNOT - 93006", "stop_name": "MAIRIE DE BAGNOLET"}, "geometry": {"type": "Point", "coordinates": [2.41885728522245, 48.86815870458364]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "79e657255adb38b388ad8276cb72bd2d8312065a", "fields": {"departement": "75", "stop_lat": 48.841798238989874, "code_postal": "75115", "stop_lon": 2.319825926144041, "coord": [48.841798238989874, 2.319825926144041], "stop_id": 3687411, "stop_desc": "PLACE RAOUL DAUTRY - 75115", "stop_name": "GARE MONTPARNASSE"}, "geometry": {"type": "Point", "coordinates": [2.319825926144041, 48.841798238989874]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0c531bcdf40f94085fd4c432d089e88589de1d89", "fields": {"departement": "75", "stop_lat": 48.841798238989874, "code_postal": "75115", "stop_lon": 2.319825926144041, "coord": [48.841798238989874, 2.319825926144041], "stop_id": 3687412, "stop_desc": "PLACE RAOUL DAUTRY - 75115", "stop_name": "GARE MONTPARNASSE"}, "geometry": {"type": "Point", "coordinates": [2.319825926144041, 48.841798238989874]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9e1d707af9a8d35ce87b31932b77be4a8cded939", "fields": {"departement": "75", "stop_lat": 48.859783227521504, "code_postal": "75101", "stop_lon": 2.3445691244058975, "coord": [48.859783227521504, 2.3445691244058975], "stop_id": 3687302, "stop_desc": "126 RUE DE RIVOLI - 75101", "stop_name": "RIVOLI - PONT NEUF"}, "geometry": {"type": "Point", "coordinates": [2.3445691244058975, 48.859783227521504]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3db9b41ea1b3ec6c3f20c7581a7f34d464696b85", "fields": {"departement": "93", "stop_lat": 48.86988325648788, "code_postal": "93006", "stop_lon": 2.4203313478936685, "coord": [48.86988325648788, 2.4203313478936685], "stop_id": 3687281, "stop_desc": "6 RUE LENINE - 93006", "stop_name": "EGLISE DE BAGNOLET"}, "geometry": {"type": "Point", "coordinates": [2.4203313478936685, 48.86988325648788]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2fbd68753ff5d9adeaac2a424e0f80835e956721", "fields": {"departement": "93", "stop_lat": 48.87237570974885, "code_postal": "93006", "stop_lon": 2.4285643905774346, "coord": [48.87237570974885, 2.4285643905774346], "stop_id": 3687289, "stop_desc": "40 RUE RAYMOND LEFEBVRE - 93006", "stop_name": "STALINGRAD"}, "geometry": {"type": "Point", "coordinates": [2.4285643905774346, 48.87237570974885]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7eebb54e8027d1128b6086d4f031716e453ccce8", "fields": {"departement": "75", "stop_lat": 48.857179249586665, "code_postal": "75120", "stop_lon": 2.398654786729045, "coord": [48.857179249586665, 2.398654786729045], "stop_id": 3687266, "stop_desc": "56 RUE DE BAGNOLET - 75120", "stop_name": "LA REUNION"}, "geometry": {"type": "Point", "coordinates": [2.398654786729045, 48.857179249586665]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "76c9caa880b88a535f1832ec88a4f659333c40ed", "fields": {"departement": "94", "stop_lat": 48.81804240272417, "code_postal": "94069", "stop_lon": 2.4333139614357617, "coord": [48.81804240272417, 2.4333139614357617], "stop_id": 3686722, "stop_desc": "44 RUE DU MARECHAL LECLERC - 94069", "stop_name": "PASSERELLE DE SAINT-MAURICE"}, "geometry": {"type": "Point", "coordinates": [2.4333139614357617, 48.81804240272417]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "84f3a963874e9f9d539a3196c4d99a99c9d11dc3", "fields": {"departement": "94", "stop_lat": 48.80386787555055, "code_postal": "94068", "stop_lon": 2.4713308992074583, "coord": [48.80386787555055, 2.4713308992074583], "stop_id": 3686734, "stop_desc": "FACE 59 RUE DU PONT DE CRETEIL - 94068", "stop_name": "RUE DES REMISES"}, "geometry": {"type": "Point", "coordinates": [2.4713308992074583, 48.80386787555055]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "84e8944d97f17d29004f834646b9c60f2e1bfbde", "fields": {"departement": "94", "stop_lat": 48.79911299769273, "code_postal": "94068", "stop_lon": 2.4716043270020815, "coord": [48.79911299769273, 2.4716043270020815], "stop_id": 3686736, "stop_desc": "4 BIS BOULEVARD DE CRETEIL - 94068", "stop_name": "PONT DE CRETEIL"}, "geometry": {"type": "Point", "coordinates": [2.4716043270020815, 48.79911299769273]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7a79a4f9bcfaffe1271648b2892a9be2d5a9f4fc", "fields": {"departement": "94", "stop_lat": 48.809162214755624, "code_postal": "94068", "stop_lon": 2.470868304362221, "coord": [48.809162214755624, 2.470868304362221], "stop_id": 3686732, "stop_desc": "7 RUE DU PONT DE CRETEIL - 94068", "stop_name": "CROIX SOURIS"}, "geometry": {"type": "Point", "coordinates": [2.470868304362221, 48.809162214755624]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b592515dc0d2f321cba9993eb0aaffe189b6d4b0", "fields": {"departement": "94", "stop_lat": 48.78873680058078, "code_postal": "94068", "stop_lon": 2.503366124614136, "coord": [48.78873680058078, 2.503366124614136], "stop_id": 3686747, "stop_desc": "FACE 24 RUE CHEVALIER - 94068", "stop_name": "PLACE DE MOLENES"}, "geometry": {"type": "Point", "coordinates": [2.503366124614136, 48.78873680058078]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b1d9aa1fe9288fc5abfc49e5c8f7d3a7cd73c11f", "fields": {"departement": "94", "stop_lat": 48.77249232695218, "code_postal": "94071", "stop_lon": 2.505612258810384, "coord": [48.77249232695218, 2.505612258810384], "stop_id": 3686597, "stop_desc": "R MARCO POLO - 94071", "stop_name": "SUCY-BONNEUIL RER"}, "geometry": {"type": "Point", "coordinates": [2.505612258810384, 48.77249232695218]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "26fc04c4810008de1b83e609a4f294d41143b748", "fields": {"departement": "94", "stop_lat": 48.771407304301675, "code_postal": "94071", "stop_lon": 2.503813833505732, "coord": [48.771407304301675, 2.503813833505732], "stop_id": 3686589, "stop_desc": "AVENUE DE BONNEUIL - 94071", "stop_name": "PORTES DE SUCY"}, "geometry": {"type": "Point", "coordinates": [2.503813833505732, 48.771407304301675]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1b02574aacf15ad4a77937b7be9ab50ce8012de4", "fields": {"departement": "94", "stop_lat": 48.76498216125263, "code_postal": "94071", "stop_lon": 2.5028551051104713, "coord": [48.76498216125263, 2.5028551051104713], "stop_id": 3686598, "stop_desc": "13 CHE DES ATELIERS - 94071", "stop_name": "ATELIERS RATP"}, "geometry": {"type": "Point", "coordinates": [2.5028551051104713, 48.76498216125263]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "795b11950944bd9434adb41b366459fe66991ab2", "fields": {"departement": "94", "stop_lat": 48.76498216125263, "code_postal": "94071", "stop_lon": 2.5028551051104713, "coord": [48.76498216125263, 2.5028551051104713], "stop_id": 3686599, "stop_desc": "13 CHE DES ATELIERS - 94071", "stop_name": "ATELIERS RATP"}, "geometry": {"type": "Point", "coordinates": [2.5028551051104713, 48.76498216125263]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "07698e65d4a0baf761e298a42bc525e3df932923", "fields": {"departement": "94", "stop_lat": 48.78619026960421, "code_postal": "94068", "stop_lon": 2.498978243620413, "coord": [48.78619026960421, 2.498978243620413], "stop_id": 3686745, "stop_desc": "118 TER AVENUE RASPAIL - 94068", "stop_name": "SORBIERS"}, "geometry": {"type": "Point", "coordinates": [2.498978243620413, 48.78619026960421]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a9caf6f6d6b6f28a5b013a6f737eba5879a9f9d1", "fields": {"departement": "75", "stop_lat": 48.84381179353463, "code_postal": "75115", "stop_lon": 2.32238519748455, "coord": [48.84381179353463, 2.32238519748455], "stop_id": 3687473, "stop_desc": "FACE 3 RUE DE L'ARRIVEE - 75115", "stop_name": "PLACE DU 18 JUIN 1940 - RUE DE L'ARRIVEE"}, "geometry": {"type": "Point", "coordinates": [2.32238519748455, 48.84381179353463]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6839c8d2ec1d7a943d790cfa5852ce8b2e77f022", "fields": {"departement": "93", "stop_lat": 48.85856427056822, "code_postal": "93048", "stop_lon": 2.4370802062081176, "coord": [48.85856427056822, 2.4370802062081176], "stop_id": 3687590, "stop_desc": "62 BOULEVARD ROUGET DE LISLE - 93048", "stop_name": "CROIX DE CHAVAUX - ROUGET DE LISLE"}, "geometry": {"type": "Point", "coordinates": [2.4370802062081176, 48.85856427056822]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1dd4a86c6792428e4535c9064d76a6d6dcaf9e25", "fields": {"departement": "93", "stop_lat": 48.85838831333966, "code_postal": "93048", "stop_lon": 2.432448870052002, "coord": [48.85838831333966, 2.432448870052002], "stop_id": 3687586, "stop_desc": "33 BOULEVARD CHANZY - 93048", "stop_name": "MARCHE DE MONTREUIL"}, "geometry": {"type": "Point", "coordinates": [2.432448870052002, 48.85838831333966]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c857866ed29a530379f49ed0dd827cdccb37603f", "fields": {"departement": "93", "stop_lat": 48.86335244139611, "code_postal": "93048", "stop_lon": 2.449553449810795, "coord": [48.86335244139611, 2.449553449810795], "stop_id": 3687594, "stop_desc": "90 RUE DE ROSNY - 93048", "stop_name": "LYCEE JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.449553449810795, 48.86335244139611]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "955707cea154e066ec76ea97bdea0e52a0c8abde", "fields": {"departement": "93", "stop_lat": 48.859410350200605, "code_postal": "93048", "stop_lon": 2.423992199575018, "coord": [48.859410350200605, 2.423992199575018], "stop_id": 3687583, "stop_desc": "165 BOULEVARD CHANZY - 93048", "stop_name": "FRATERNITE"}, "geometry": {"type": "Point", "coordinates": [2.423992199575018, 48.859410350200605]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "81462f2cd7eee6c7d8f9e1a82c65395d6e61bd24", "fields": {"departement": "75", "stop_lat": 48.86045533777064, "code_postal": "75120", "stop_lon": 2.388810598217526, "coord": [48.86045533777064, 2.388810598217526], "stop_id": 3687127, "stop_desc": "FACE 27 BOULEVARD DE MENILMONTANT - 75120", "stop_name": "ROQUETTE - PERE LACHAISE"}, "geometry": {"type": "Point", "coordinates": [2.388810598217526, 48.86045533777064]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8f64959b132772041190d9e891e4cf0b54d8033e", "fields": {"departement": "75", "stop_lat": 48.85223399288273, "code_postal": "75106", "stop_lon": 2.3389434315520217, "coord": [48.85223399288273, 2.3389434315520217], "stop_id": 3687425, "stop_desc": "FACE 97-99 RUE DE L'ECOLE DE MEDECINE - 75106", "stop_name": "SAINT-GERMAIN - ODEON"}, "geometry": {"type": "Point", "coordinates": [2.3389434315520217, 48.85223399288273]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6dfd9c45ed759615ff3e8ca280f62e8cf62d5ec7", "fields": {"departement": "75", "stop_lat": 48.85234167570838, "code_postal": "75105", "stop_lon": 2.343778173799205, "coord": [48.85234167570838, 2.343778173799205], "stop_id": 3687426, "stop_desc": "7 BOULEVARD SAINT-MICHEL - 75105", "stop_name": "SAINT-MICHEL - SAINT-GERMAIN"}, "geometry": {"type": "Point", "coordinates": [2.343778173799205, 48.85234167570838]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "20dac9819f80001d352fa5c7980c3018f9e67da7", "fields": {"departement": "93", "stop_lat": 48.86019450396544, "code_postal": "93006", "stop_lon": 2.420847047944098, "coord": [48.86019450396544, 2.420847047944098], "stop_id": 3687581, "stop_desc": "82 AVENUE DE LA REPUBLIQUE - 93006", "stop_name": "REPUBLIQUE - ROBESPIERRE"}, "geometry": {"type": "Point", "coordinates": [2.420847047944098, 48.86019450396544]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "79799be3ba1bf15611f008c29f3e3e18cd41d6a4", "fields": {"departement": "75", "stop_lat": 48.86795492944697, "code_postal": "75111", "stop_lon": 2.37820567147731, "coord": [48.86795492944697, 2.37820567147731], "stop_id": 3687464, "stop_desc": "92 RUE JEAN PIERRE TIMBAUD - 75111", "stop_name": "MAISON DES METALLOS"}, "geometry": {"type": "Point", "coordinates": [2.37820567147731, 48.86795492944697]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1ffc36abcbf1f172b54c211d5e50b12d8197b89a", "fields": {"departement": "75", "stop_lat": 48.866112001913585, "code_postal": "75111", "stop_lon": 2.3796890795072163, "coord": [48.866112001913585, 2.3796890795072163], "stop_id": 3687444, "stop_desc": "120 RUE OBERKAMPF - 75111", "stop_name": "SAINT-MAUR - JEAN AICARD"}, "geometry": {"type": "Point", "coordinates": [2.3796890795072163, 48.866112001913585]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2c0f52cbe079b2b0a12ef2fbe3f5121c664a9ccb", "fields": {"departement": "75", "stop_lat": 48.868525708314515, "code_postal": "75120", "stop_lon": 2.3894861613015776, "coord": [48.868525708314515, 2.3894861613015776], "stop_id": 3687448, "stop_desc": "FACE 77 RUE DE MENILMONTANT - 75120", "stop_name": "HENRI CHEVREAU"}, "geometry": {"type": "Point", "coordinates": [2.3894861613015776, 48.868525708314515]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0d451f01b91b89aa3c3215cf6c739c6146ff81af", "fields": {"departement": "75", "stop_lat": 48.86356270427794, "code_postal": "75111", "stop_lon": 2.3697838496191475, "coord": [48.86356270427794, 2.3697838496191475], "stop_id": 3687442, "stop_desc": "RUE OBERKAMPF - 75111", "stop_name": "OBERKAMPF - RICHARD LENOIR"}, "geometry": {"type": "Point", "coordinates": [2.3697838496191475, 48.86356270427794]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e34ad14ebc80a2cb4a11f86ff605b92e769239c9", "fields": {"departement": "75", "stop_lat": 48.85678114513896, "code_postal": "75104", "stop_lon": 2.348259761089279, "coord": [48.85678114513896, 2.348259761089279], "stop_id": 3687428, "stop_desc": "FACE 14 QUAI DE GESVRES - 75104", "stop_name": "CHATELET"}, "geometry": {"type": "Point", "coordinates": [2.348259761089279, 48.85678114513896]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "69698c70faea4e1a48067ad74dddbdcc0f9bfad2", "fields": {"departement": "75", "stop_lat": 48.864656695043344, "code_postal": "75120", "stop_lon": 2.3987998628210687, "coord": [48.864656695043344, 2.3987998628210687], "stop_id": 3687568, "stop_desc": "4 PLACE GAMBETTA - 75120", "stop_name": "GAMBETTA"}, "geometry": {"type": "Point", "coordinates": [2.3987998628210687, 48.864656695043344]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "673dfcbb34d60f3e629a3d912e9ec2d2d2ae0750", "fields": {"departement": "94", "stop_lat": 48.80267030048723, "code_postal": "94002", "stop_lon": 2.425598151502994, "coord": [48.80267030048723, 2.425598151502994], "stop_id": 3686456, "stop_desc": "FACE 16 B RUE MALLERET JOINVILLE - 94002", "stop_name": "MAISONS-ALFORT - ALFORTVILLE RER"}, "geometry": {"type": "Point", "coordinates": [2.425598151502994, 48.80267030048723]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c96874523815695b96400504773d606188d667f5", "fields": {"departement": "94", "stop_lat": 48.79008704138252, "code_postal": "94002", "stop_lon": 2.425916812256359, "coord": [48.79008704138252, 2.425916812256359], "stop_id": 3686479, "stop_desc": "FACE 108 RUE ETIENNE DOLET - 94002", "stop_name": "PLACE DU PETIT PONT"}, "geometry": {"type": "Point", "coordinates": [2.425916812256359, 48.79008704138252]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "57d2dda2fda035a437ee3aef35269ed2ae2650fa", "fields": {"departement": "94", "stop_lat": 48.814298589736914, "code_postal": "94002", "stop_lon": 2.415479230713905, "coord": [48.814298589736914, 2.415479230713905], "stop_id": 3686462, "stop_desc": "17 R VAILLANT COUTURIER - 94002", "stop_name": "GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.415479230713905, 48.814298589736914]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ddc42a66ca2e4342c9ff1caec9569102cec8d156", "fields": {"departement": "94", "stop_lat": 48.765524735623956, "code_postal": "94022", "stop_lon": 2.409844938920653, "coord": [48.765524735623956, 2.409844938920653], "stop_id": 3686468, "stop_desc": "AVENUE JEAN JAURES - 94022", "stop_name": "CHOISY-LE-ROI RER"}, "geometry": {"type": "Point", "coordinates": [2.409844938920653, 48.765524735623956]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6f3723a7c0c8cc5d24cd806beed240b320908ca8", "fields": {"departement": "94", "stop_lat": 48.778995662591726, "code_postal": "94002", "stop_lon": 2.426237874429915, "coord": [48.778995662591726, 2.426237874429915], "stop_id": 3686475, "stop_desc": "RUE J.B. PREUX - 94002", "stop_name": "STADE D'ALFORTVILLE"}, "geometry": {"type": "Point", "coordinates": [2.426237874429915, 48.778995662591726]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "90cc68ad6cea61d885b2dbf7d38f952b9b232ddf", "fields": {"departement": "94", "stop_lat": 48.79513859863443, "code_postal": "94002", "stop_lon": 2.4254356938910138, "coord": [48.79513859863443, 2.4254356938910138], "stop_id": 3686481, "stop_desc": "FACE 52BIS RUE ETIENNE DOLET - 94002", "stop_name": "ACHTARAK"}, "geometry": {"type": "Point", "coordinates": [2.4254356938910138, 48.79513859863443]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "58918f4415545f281bc2eb9dbb1c1db25444688e", "fields": {"departement": "94", "stop_lat": 48.781627104512765, "code_postal": "94002", "stop_lon": 2.4289216711576915, "coord": [48.781627104512765, 2.4289216711576915], "stop_id": 3686476, "stop_desc": "CHEMIN DE VILLENEUVE - 94002", "stop_name": "VAL DE SEINE"}, "geometry": {"type": "Point", "coordinates": [2.4289216711576915, 48.781627104512765]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "37342db7f071a66c6a46c1c1c7eb7eb9462927d4", "fields": {"departement": "94", "stop_lat": 48.763057563786816, "code_postal": "94022", "stop_lon": 2.401956052432323, "coord": [48.763057563786816, 2.401956052432323], "stop_id": 3686466, "stop_desc": "37 AVENUE GAMBETTA - 94022", "stop_name": "RENE PANHARD"}, "geometry": {"type": "Point", "coordinates": [2.401956052432323, 48.763057563786816]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1f8242e65c72f12fd692c839dc528d500d576f04", "fields": {"departement": "94", "stop_lat": 48.797752319023104, "code_postal": "94002", "stop_lon": 2.4277665318073747, "coord": [48.797752319023104, 2.4277665318073747], "stop_id": 3686454, "stop_desc": "R DE VERDUN - 94002", "stop_name": "FLORE"}, "geometry": {"type": "Point", "coordinates": [2.4277665318073747, 48.797752319023104]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ba74022dd72e7cfb87f86e8b62cb65b100ae47ea", "fields": {"departement": "94", "stop_lat": 48.80031446208389, "code_postal": "94002", "stop_lon": 2.42696828289225, "coord": [48.80031446208389, 2.42696828289225], "stop_id": 3686483, "stop_desc": "R JOFFRIN - 94002", "stop_name": "CAMELIAS"}, "geometry": {"type": "Point", "coordinates": [2.42696828289225, 48.80031446208389]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6c0c5ae7832668fd876143c61a0af05f2f00f2d5", "fields": {"departement": "75", "stop_lat": 48.85690211239772, "code_postal": "75107", "stop_lon": 2.3015017080970694, "coord": [48.85690211239772, 2.3015017080970694], "stop_id": 3687110, "stop_desc": "77 AVENUE DE LA BOURDONNAIS - 75107", "stop_name": "CHAMP DE MARS - LA BOURDONNAIS"}, "geometry": {"type": "Point", "coordinates": [2.3015017080970694, 48.85690211239772]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "32ac1af12cd31074af70358a5ef8dfbf3ce21662", "fields": {"departement": "94", "stop_lat": 48.79956235861386, "code_postal": "94068", "stop_lon": 2.4716327000356686, "coord": [48.79956235861386, 2.4716327000356686], "stop_id": 3687045, "stop_desc": "6 TER BOULEVARD DE CRETEIL - 94068", "stop_name": "DOCTEUR TOURASSE"}, "geometry": {"type": "Point", "coordinates": [2.4716327000356686, 48.79956235861386]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ead463fcff9443200657e9d572172f0d3d6714d2", "fields": {"departement": "75", "stop_lat": 48.859873277650976, "code_postal": "75101", "stop_lon": 2.333849441440465, "coord": [48.859873277650976, 2.333849441440465], "stop_id": 3687118, "stop_desc": "QUAI FRANCOIS MITTERRAND - 75101", "stop_name": "QUAI FRANCOIS MITTERRAND"}, "geometry": {"type": "Point", "coordinates": [2.333849441440465, 48.859873277650976]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1e712b2bc71024d635de751b46275dc8d70fb910", "fields": {"departement": "75", "stop_lat": 48.855845636088695, "code_postal": "75104", "stop_lon": 2.355015034282583, "coord": [48.855845636088695, 2.355015034282583], "stop_id": 3687121, "stop_desc": "12 R FRANCOIS MIRON - 75104", "stop_name": "EGLISE SAINT-GERVAIS"}, "geometry": {"type": "Point", "coordinates": [2.355015034282583, 48.855845636088695]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "41950a14efc55467439e63e2627112a33683b5f6", "fields": {"departement": "75", "stop_lat": 48.855845636088695, "code_postal": "75104", "stop_lon": 2.355015034282583, "coord": [48.855845636088695, 2.355015034282583], "stop_id": 3687245, "stop_desc": "12 R FRANCOIS MIRON - 75104", "stop_name": "EGLISE SAINT-GERVAIS"}, "geometry": {"type": "Point", "coordinates": [2.355015034282583, 48.855845636088695]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "719e4f348acdeb45cd8e353f7bbdc9862ce38668", "fields": {"departement": "75", "stop_lat": 48.85317978826655, "code_postal": "75111", "stop_lon": 2.3777581910826306, "coord": [48.85317978826655, 2.3777581910826306], "stop_id": 3687257, "stop_desc": "52-54 RUE DE CHARONNE - 75111", "stop_name": "CHARONNE - KELLER"}, "geometry": {"type": "Point", "coordinates": [2.3777581910826306, 48.85317978826655]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "266abe4c443808d369d965072cb4794d5c2f3eba", "fields": {"departement": "75", "stop_lat": 48.85702863178393, "code_postal": "75107", "stop_lon": 2.3038987786095344, "coord": [48.85702863178393, 2.3038987786095344], "stop_id": 3687109, "stop_desc": "204 RUE DE GRENELLE - 75107", "stop_name": "BOSQUET - GRENELLE"}, "geometry": {"type": "Point", "coordinates": [2.3038987786095344, 48.85702863178393]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ac9fc3bfe6f6d38f89ee0ba6d934b5e4fbbae2e8", "fields": {"departement": "75", "stop_lat": 48.85507589362406, "code_postal": "75107", "stop_lon": 2.2960278467667523, "coord": [48.85507589362406, 2.2960278467667523], "stop_id": 3687113, "stop_desc": "AVENUE JOSEPH BOUVARD - 75107", "stop_name": "CHAMP DE MARS"}, "geometry": {"type": "Point", "coordinates": [2.2960278467667523, 48.85507589362406]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fbbb4e4679e65a898aa0a3e4acc8ade2a9e876cf", "fields": {"departement": "75", "stop_lat": 48.85547674635916, "code_postal": "75104", "stop_lon": 2.3575481918629646, "coord": [48.85547674635916, 2.3575481918629646], "stop_id": 3687246, "stop_desc": "64 RUE FRANCOIS MIRON - 75104", "stop_name": "RUE DE JOUY"}, "geometry": {"type": "Point", "coordinates": [2.3575481918629646, 48.85547674635916]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c59c46f4fe3f4ec5b907cc3fbf6393f193c94a09", "fields": {"departement": "75", "stop_lat": 48.8584078136177, "code_postal": "75104", "stop_lon": 2.3488457910577933, "coord": [48.8584078136177, 2.3488457910577933], "stop_id": 3687242, "stop_desc": "90 RUE DE RIVOLI - 75104", "stop_name": "CHATELET"}, "geometry": {"type": "Point", "coordinates": [2.3488457910577933, 48.8584078136177]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "65c77b68bf9e185c6f259829aec8bff5f497d0b9", "fields": {"departement": "93", "stop_lat": 48.867039221787195, "code_postal": "93048", "stop_lon": 2.4567815488354867, "coord": [48.867039221787195, 2.4567815488354867], "stop_id": 3687598, "stop_desc": "34 AVENUE DU PRESIDENT SALVADOR ALLENDE - 93048", "stop_name": "EDOUARD BRANLY"}, "geometry": {"type": "Point", "coordinates": [2.4567815488354867, 48.867039221787195]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c2effac6aeca8f75247523b0eadd8f71cf3221a7", "fields": {"departement": "93", "stop_lat": 48.88423567991556, "code_postal": "93064", "stop_lon": 2.4854523315455075, "coord": [48.88423567991556, 2.4854523315455075], "stop_id": 3687623, "stop_desc": "FACE 99 BOULEVARD ALSACE-LORRAINE - 93064", "stop_name": "BOIS-PERRIER NORD"}, "geometry": {"type": "Point", "coordinates": [2.4854523315455075, 48.88423567991556]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b81e690afa84c710ba47bc3d922c7ff83318a243", "fields": {"departement": "93", "stop_lat": 48.87363195729303, "code_postal": "93048", "stop_lon": 2.4606797563578597, "coord": [48.87363195729303, 2.4606797563578597], "stop_id": 3687602, "stop_desc": "110 AVENUE DU PRESIDENT SALVADOR ALLENDE - 93048", "stop_name": "RUE DES ROCHES"}, "geometry": {"type": "Point", "coordinates": [2.4606797563578597, 48.87363195729303]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7c38a3cf1679d522f3807ad82e024e1155f7e125", "fields": {"departement": "93", "stop_lat": 48.877348694856565, "code_postal": "93064", "stop_lon": 2.480336679027374, "coord": [48.877348694856565, 2.480336679027374], "stop_id": 3687614, "stop_desc": "BOULEVARD GABRIEL PERI - 93064", "stop_name": "GABRIEL PERI - DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.480336679027374, 48.877348694856565]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f3f2fbcaf8a14b62d2d0a41609d7ff4a00e9e8eb", "fields": {"departement": "93", "stop_lat": 48.87676097013241, "code_postal": "93048", "stop_lon": 2.4677724216133345, "coord": [48.87676097013241, 2.4677724216133345], "stop_id": 3687627, "stop_desc": "FACE 6 RUE ETIENNE DOLET - 93048", "stop_name": "ETIENNE DOLET"}, "geometry": {"type": "Point", "coordinates": [2.4677724216133345, 48.87676097013241]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ce4470da7da0c2ca3f17241b0c99c6fb9bdfb52f", "fields": {"departement": "93", "stop_lat": 48.883431641709635, "code_postal": "93053", "stop_lon": 2.465826905346156, "coord": [48.883431641709635, 2.465826905346156], "stop_id": 3687609, "stop_desc": "RUE DE NEUILLY - 93053", "stop_name": "LES GUILLAUMES"}, "geometry": {"type": "Point", "coordinates": [2.465826905346156, 48.883431641709635]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d57c1f34c4607d6738b7dafc6411fc29849c777a", "fields": {"departement": "93", "stop_lat": 48.86179640590272, "code_postal": "93048", "stop_lon": 2.4409821703623398, "coord": [48.86179640590272, 2.4409821703623398], "stop_id": 3687630, "stop_desc": "2 BOULEVARD ROUGET DE LISLE - 93048", "stop_name": "MAIRIE DE MONTREUIL - ROUGET DE LISLE"}, "geometry": {"type": "Point", "coordinates": [2.4409821703623398, 48.86179640590272]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a4afc613b67bf357e84fc1f4c9657ff46fa5ca90", "fields": {"departement": "93", "stop_lat": 48.86289264101808, "code_postal": "93048", "stop_lon": 2.4412431766587774, "coord": [48.86289264101808, 2.4412431766587774], "stop_id": 3687679, "stop_desc": "4 BIS AVENUE PASTEUR - 93048", "stop_name": "MAIRIE DE MONTREUIL - PASTEUR"}, "geometry": {"type": "Point", "coordinates": [2.4412431766587774, 48.86289264101808]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "31d158d972724b7ee769483d74f1025938ac024f", "fields": {"departement": "93", "stop_lat": 48.85472484035172, "code_postal": "93048", "stop_lon": 2.4391974770671148, "coord": [48.85472484035172, 2.4391974770671148], "stop_id": 3687687, "stop_desc": "134 BIS AVENUE DU PRESIDENT WILSON - 93048", "stop_name": "COLMET - LEPINAY"}, "geometry": {"type": "Point", "coordinates": [2.4391974770671148, 48.85472484035172]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9d7bbd9a181de917e2ae7c3c0b2032354b3273b7", "fields": {"departement": "75", "stop_lat": 48.844423497667826, "code_postal": "75112", "stop_lon": 2.4411380694265454, "coord": [48.844423497667826, 2.4411380694265454], "stop_id": 3687698, "stop_desc": "13 AVENUE DE NOGENT - 75112", "stop_name": "CHATEAU DE VINCENNES"}, "geometry": {"type": "Point", "coordinates": [2.4411380694265454, 48.844423497667826]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "42ed03376fff37a6a1937a5287a3d42c21072299", "fields": {"departement": "95", "stop_lat": 48.98726073037913, "code_postal": "95585", "stop_lon": 2.389442193662788, "coord": [48.98726073037913, 2.389442193662788], "stop_id": 4008115, "stop_desc": "3 RUE D'ESCOUVRIER - 95585", "stop_name": "LES PERREUX"}, "geometry": {"type": "Point", "coordinates": [2.389442193662788, 48.98726073037913]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2b5b4ce835a792c75ed6c60c72119b3322b50433", "fields": {"departement": "95", "stop_lat": 48.99443087389485, "code_postal": "95585", "stop_lon": 2.3917437033999436, "coord": [48.99443087389485, 2.3917437033999436], "stop_id": 4008119, "stop_desc": "19 RUE DU FER A CHEVAL - 95585", "stop_name": "PARC INDUSTRIEL CENTRE"}, "geometry": {"type": "Point", "coordinates": [2.3917437033999436, 48.99443087389485]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ce124e6020694c981c6feac95cf7866b92a1347e", "fields": {"departement": "95", "stop_lat": 48.99627373575462, "code_postal": "95585", "stop_lon": 2.39029801519464, "coord": [48.99627373575462, 2.39029801519464], "stop_id": 4008123, "stop_desc": "R DE L'ESCOUVRIER - 95585", "stop_name": "PARC INDUSTRIEL NORD"}, "geometry": {"type": "Point", "coordinates": [2.39029801519464, 48.99627373575462]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a86ee8551cab759ea13772a2b762c04691652d66", "fields": {"departement": "95", "stop_lat": 49.0051528130774, "code_postal": "95680", "stop_lon": 2.3890231557003694, "coord": [49.0051528130774, 2.3890231557003694], "stop_id": 4008129, "stop_desc": "BOULEVARD SALVADOR ALLENDE - 95680", "stop_name": "LA CERISAIE"}, "geometry": {"type": "Point", "coordinates": [2.3890231557003694, 49.0051528130774]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a2780504c3d86759b2e9c28c00c542b20a26e725", "fields": {"departement": "95", "stop_lat": 49.00423273731831, "code_postal": "95680", "stop_lon": 2.3964937004477846, "coord": [49.00423273731831, 2.3964937004477846], "stop_id": 4008133, "stop_desc": "RUE JEAN BULLANT - 95680", "stop_name": "JEAN BULLANT"}, "geometry": {"type": "Point", "coordinates": [2.3964937004477846, 49.00423273731831]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "edfb721d1689f158ee679c719ccd9f002a341c8a", "fields": {"departement": "95", "stop_lat": 49.00440218359201, "code_postal": "95680", "stop_lon": 2.399048133612884, "coord": [49.00440218359201, 2.399048133612884], "stop_id": 4008135, "stop_desc": "AVENUE PIERRE SEMARD - 95680", "stop_name": "LA POSTE"}, "geometry": {"type": "Point", "coordinates": [2.399048133612884, 49.00440218359201]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c926c709ece25e24cdf15b70d0b252f099ab145c", "fields": {"departement": "95", "stop_lat": 49.00257626307783, "code_postal": "95680", "stop_lon": 2.4022420525309895, "coord": [49.00257626307783, 2.4022420525309895], "stop_id": 4008136, "stop_desc": "AVENUE PIERRE SEMARD - 95680", "stop_name": "PIERRE SEMARD"}, "geometry": {"type": "Point", "coordinates": [2.4022420525309895, 49.00257626307783]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "08c969972d16909d28d3cc255002402867ec028c", "fields": {"departement": "95", "stop_lat": 49.00280991519116, "code_postal": "95680", "stop_lon": 2.402228687553973, "coord": [49.00280991519116, 2.402228687553973], "stop_id": 4008137, "stop_desc": "AVENUE PIERRE SEMARD - 95680", "stop_name": "PIERRE SEMARD"}, "geometry": {"type": "Point", "coordinates": [2.402228687553973, 49.00280991519116]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5453620f8bf6e93d2f916c93d34c4514c8f849f1", "fields": {"departement": "95", "stop_lat": 48.9944889675341, "code_postal": "95680", "stop_lon": 2.416407250578373, "coord": [48.9944889675341, 2.416407250578373], "stop_id": 4008143, "stop_desc": "FACE 15 RUE JEAN LAUGERE - 95680", "stop_name": "VILLIERS LE BEL - GONESSE - ARNOUVILLE RER"}, "geometry": {"type": "Point", "coordinates": [2.416407250578373, 48.9944889675341]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "67bd43624d895b7b359ae4a34c3c0feed0042ffb", "fields": {"departement": "75", "stop_lat": 48.87194329503051, "code_postal": "75109", "stop_lon": 2.333399052742479, "coord": [48.87194329503051, 2.333399052742479], "stop_id": 4008202, "stop_desc": "5 RUE MEYERBEER - 75109", "stop_name": "OPERA"}, "geometry": {"type": "Point", "coordinates": [2.333399052742479, 48.87194329503051]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b5a124a484a86441c1f770d66f0c075ea07312eb", "fields": {"departement": "75", "stop_lat": 48.87179721577452, "code_postal": "75108", "stop_lon": 2.313616880732058, "coord": [48.87179721577452, 2.313616880732058], "stop_id": 4008212, "stop_desc": "85 RUE DU FAUBOURG SAINT HONORE - 75108", "stop_name": "MATIGNON - SAINT-HONORE"}, "geometry": {"type": "Point", "coordinates": [2.313616880732058, 48.87179721577452]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8dd3d6b0ccfe4c48719bdfff89a8b8166c3b4c04", "fields": {"departement": "75", "stop_lat": 48.873180525721516, "code_postal": "75108", "stop_lon": 2.310155638063019, "coord": [48.873180525721516, 2.310155638063019], "stop_id": 4008214, "stop_desc": "FACE 1 AVENUE MYRON-T.HERRICK - 75108", "stop_name": "SAINT-PHILIPPE-DU-ROULE"}, "geometry": {"type": "Point", "coordinates": [2.310155638063019, 48.873180525721516]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "466eb10c07583b44694516440fed241178d59645", "fields": {"departement": "75", "stop_lat": 48.87442766603857, "code_postal": "75108", "stop_lon": 2.30212998791386, "coord": [48.87442766603857, 2.30212998791386], "stop_id": 4008221, "stop_desc": "21 AVENUE DE FRIEDLAND - 75108", "stop_name": "BALZAC"}, "geometry": {"type": "Point", "coordinates": [2.30212998791386, 48.87442766603857]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "43ed08763932cc48f4c4c5e91cebeeeb040db050", "fields": {"departement": "75", "stop_lat": 48.86982026544612, "code_postal": "75116", "stop_lon": 2.2858938072772896, "coord": [48.86982026544612, 2.2858938072772896], "stop_id": 4008229, "stop_desc": "89 AVENUE VICTOR HUGO - 75116", "stop_name": "VICTOR HUGO - POINCARE"}, "geometry": {"type": "Point", "coordinates": [2.2858938072772896, 48.86982026544612]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5e694c02d5e871eab6a54021abe959226e423283", "fields": {"departement": "75", "stop_lat": 48.86571914834078, "code_postal": "75116", "stop_lon": 2.2795906522141896, "coord": [48.86571914834078, 2.2795906522141896], "stop_id": 4008234, "stop_desc": "108 RUE DE LA POMPE - 75116", "stop_name": "LYCEE JANSON DE SAILLY"}, "geometry": {"type": "Point", "coordinates": [2.2795906522141896, 48.86571914834078]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "35a4c6de6b7446d35d80cbbc7aaf43c9714aef6a", "fields": {"departement": "75", "stop_lat": 48.861079569495644, "code_postal": "75116", "stop_lon": 2.2754276990104105, "coord": [48.861079569495644, 2.2754276990104105], "stop_id": 4008238, "stop_desc": "36 RUE DE LA POMPE - 75116", "stop_name": "NICOLO - JEAN RICHEPIN"}, "geometry": {"type": "Point", "coordinates": [2.2754276990104105, 48.861079569495644]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0391cedc4c1d39f8b83db797358f91b954b91690", "fields": {"departement": "75", "stop_lat": 48.84897697246938, "code_postal": "75116", "stop_lon": 2.265623471087728, "coord": [48.84897697246938, 2.265623471087728], "stop_id": 4008245, "stop_desc": "4 RUE POUSSIN - 75116", "stop_name": "MOZART - LA FONTAINE"}, "geometry": {"type": "Point", "coordinates": [2.265623471087728, 48.84897697246938]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "61de2d1b94f8600d00b79f29d820ccd3b2c95864", "fields": {"departement": "75", "stop_lat": 48.84877815306537, "code_postal": "75116", "stop_lon": 2.2638261627112803, "coord": [48.84877815306537, 2.2638261627112803], "stop_id": 4008246, "stop_desc": "16-20 RUE POUSSIN - 75116", "stop_name": "MICHEL-ANGE - AUTEUIL"}, "geometry": {"type": "Point", "coordinates": [2.2638261627112803, 48.84877815306537]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1d1d25203baa9a1f83bc8fb02c81441d47ceb8f9", "fields": {"departement": "75", "stop_lat": 48.84784140305659, "code_postal": "75116", "stop_lon": 2.2605728328261545, "coord": [48.84784140305659, 2.2605728328261545], "stop_id": 4008249, "stop_desc": "77 RUE D'AUTEUIL - 75116", "stop_name": "GARE D'AUTEUIL"}, "geometry": {"type": "Point", "coordinates": [2.2605728328261545, 48.84784140305659]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5405f7b984e454fed04a2c4f3dd40c2b59495449", "fields": {"departement": "75", "stop_lat": 48.845483233629736, "code_postal": "75116", "stop_lon": 2.2554017868810505, "coord": [48.845483233629736, 2.2554017868810505], "stop_id": 4008252, "stop_desc": "AVENUE DE LA PORTE MOLITOR - 75116", "stop_name": "PORTE MOLITOR"}, "geometry": {"type": "Point", "coordinates": [2.2554017868810505, 48.845483233629736]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d715a24317fb6b4f5e49265383c508ed10c4fff6", "fields": {"departement": "92", "stop_lat": 48.844536558788114, "code_postal": "92012", "stop_lon": 2.2511684119083535, "coord": [48.844536558788114, 2.2511684119083535], "stop_id": 4008254, "stop_desc": "32 RUE DU CHATEAU - 92012", "stop_name": "LA TOURELLE"}, "geometry": {"type": "Point", "coordinates": [2.2511684119083535, 48.844536558788114]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "15610a401c48dbc025f9e3e7c77fef6a53bf647d", "fields": {"departement": "92", "stop_lat": 48.84149215535017, "code_postal": "92012", "stop_lon": 2.2317704579524196, "coord": [48.84149215535017, 2.2317704579524196], "stop_id": 4008263, "stop_desc": "172 TER RUE DE PARIS - 92012", "stop_name": "RUE DE SILLY"}, "geometry": {"type": "Point", "coordinates": [2.2317704579524196, 48.84149215535017]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "981d6525f140e8a0d94986a55e58a9f052f6a20a", "fields": {"departement": "92", "stop_lat": 48.84183945014846, "code_postal": "92012", "stop_lon": 2.2384961727732495, "coord": [48.84183945014846, 2.2384961727732495], "stop_id": 4008272, "stop_desc": "123 RUE DU CHATEAU - 92012", "stop_name": "JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.2384961727732495, 48.84183945014846]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4672523217d9d163c06e7592c5d147443ec8c28e", "fields": {"departement": "75", "stop_lat": 48.8496185218846, "code_postal": "75116", "stop_lon": 2.271587388512346, "coord": [48.8496185218846, 2.271587388512346], "stop_id": 4008274, "stop_desc": "31 AVENUE THEOPHILE GAUTIER - 75116", "stop_name": "PERRICHONT"}, "geometry": {"type": "Point", "coordinates": [2.271587388512346, 48.8496185218846]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e3cc9eb3240d73f4d1e7279b531eb44809883869", "fields": {"departement": "75", "stop_lat": 48.85352744113881, "code_postal": "75116", "stop_lon": 2.2704520379538953, "coord": [48.85352744113881, 2.2704520379538953], "stop_id": 4008276, "stop_desc": "2 RUE ADRIEN EBRARD - 75116", "stop_name": "RODIN"}, "geometry": {"type": "Point", "coordinates": [2.2704520379538953, 48.85352744113881]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "468902f766e219242a51f9d5180ccc32c881f3ac", "fields": {"departement": "75", "stop_lat": 48.871186509834914, "code_postal": "75108", "stop_lon": 2.315905979830111, "coord": [48.871186509834914, 2.315905979830111], "stop_id": 4008278, "stop_desc": "59 RUE DU FAUBOURG SAINT HONORE - 75108", "stop_name": "BEAUVAU"}, "geometry": {"type": "Point", "coordinates": [2.315905979830111, 48.871186509834914]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2afd55c8197aeafd4b930b2c3d01a0e48f6a2f0d", "fields": {"departement": "75", "stop_lat": 48.87009172807477, "code_postal": "75102", "stop_lon": 2.3296935590563423, "coord": [48.87009172807477, 2.3296935590563423], "stop_id": 4008282, "stop_desc": "39 BOULEVARD DES CAPUCINES - 75102", "stop_name": "CAPUCINES - CAUMARTIN"}, "geometry": {"type": "Point", "coordinates": [2.3296935590563423, 48.87009172807477]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "04d20eff49afef0c0ac031997f6acf3b5667192e", "fields": {"departement": "75", "stop_lat": 48.87401247719477, "code_postal": "75108", "stop_lon": 2.296557776569808, "coord": [48.87401247719477, 2.296557776569808], "stop_id": 4008284, "stop_desc": "AVENUE DE FRIEDLAND - 75108", "stop_name": "CHARLES DE GAULLE - ETOILE - FRIEDLAND"}, "geometry": {"type": "Point", "coordinates": [2.296557776569808, 48.87401247719477]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "39901593fc3cbb24a21f7b2e482e37a182521652", "fields": {"departement": "75", "stop_lat": 48.87110677966517, "code_postal": "75116", "stop_lon": 2.2890669048546903, "coord": [48.87110677966517, 2.2890669048546903], "stop_id": 4008288, "stop_desc": "51 AVENUE VICTOR HUGO - 75116", "stop_name": "VICTOR HUGO - PAUL VALERY"}, "geometry": {"type": "Point", "coordinates": [2.2890669048546903, 48.87110677966517]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3b828fbcf8406a1791ab5b6d1786adb62efd2d46", "fields": {"departement": "75", "stop_lat": 48.86727440606912, "code_postal": "75116", "stop_lon": 2.2805152804475335, "coord": [48.86727440606912, 2.2805152804475335], "stop_id": 4008292, "stop_desc": "141 RUE DE LA POMPE - 75116", "stop_name": "PLACE JEAN MONNET"}, "geometry": {"type": "Point", "coordinates": [2.2805152804475335, 48.86727440606912]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0e6386597838de55d0cb172d7efceaeb2004844f", "fields": {"departement": "75", "stop_lat": 48.867966926962794, "code_postal": "75116", "stop_lon": 2.2815635005826227, "coord": [48.867966926962794, 2.2815635005826227], "stop_id": 4008293, "stop_desc": "125 AVENUE VICTOR HUGO - 75116", "stop_name": "PLACE JEAN MONNET"}, "geometry": {"type": "Point", "coordinates": [2.2815635005826227, 48.867966926962794]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c7333fce095e825b4a6b25f9c3935d0caa983aab", "fields": {"departement": "75", "stop_lat": 48.86367781678552, "code_postal": "75116", "stop_lon": 2.2771682126291473, "coord": [48.86367781678552, 2.2771682126291473], "stop_id": 4008297, "stop_desc": "78-80 RUE DE LA POMPE - 75116", "stop_name": "POMPE - MAIRIE DU 16EME"}, "geometry": {"type": "Point", "coordinates": [2.2771682126291473, 48.86367781678552]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "75933ce5779c133b0abf120f1b1e0062a888ad63", "fields": {"departement": "75", "stop_lat": 48.861079569495644, "code_postal": "75116", "stop_lon": 2.2754276990104105, "coord": [48.861079569495644, 2.2754276990104105], "stop_id": 4008299, "stop_desc": "36 RUE DE LA POMPE - 75116", "stop_name": "NICOLO - JEAN RICHEPIN"}, "geometry": {"type": "Point", "coordinates": [2.2754276990104105, 48.861079569495644]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e6ab4ab552b2dd4d328e7bdeaa21f2a2bb54001b", "fields": {"departement": "75", "stop_lat": 48.85627988445956, "code_postal": "75116", "stop_lon": 2.2746570793269227, "coord": [48.85627988445956, 2.2746570793269227], "stop_id": 4008302, "stop_desc": "47 RUE DE BOULAINVILLIERS - 75116", "stop_name": "LES VIGNES - BOULAINVILLIERS RER"}, "geometry": {"type": "Point", "coordinates": [2.2746570793269227, 48.85627988445956]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3f4bd13e648d0775d12c786a03e81cf5aaf13da7", "fields": {"departement": "75", "stop_lat": 48.84784140305659, "code_postal": "75116", "stop_lon": 2.2605728328261545, "coord": [48.84784140305659, 2.2605728328261545], "stop_id": 4008310, "stop_desc": "77 RUE D'AUTEUIL - 75116", "stop_name": "GARE D'AUTEUIL"}, "geometry": {"type": "Point", "coordinates": [2.2605728328261545, 48.84784140305659]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "274efcb6667e93ad338f8ceb404b2a7fc9ce161f", "fields": {"departement": "75", "stop_lat": 48.84739036149703, "code_postal": "75116", "stop_lon": 2.2580269917135367, "coord": [48.84739036149703, 2.2580269917135367], "stop_id": 4008312, "stop_desc": "PLACE DE LA PORTE D'AUTEUIL - 75116", "stop_name": "PORTE D'AUTEUIL"}, "geometry": {"type": "Point", "coordinates": [2.2580269917135367, 48.84739036149703]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6cce01eaa20f318ee3fedecd567f38e2efe575c7", "fields": {"departement": "75", "stop_lat": 48.852091170862494, "code_postal": "75116", "stop_lon": 2.273599858486286, "coord": [48.852091170862494, 2.273599858486286], "stop_id": 4008315, "stop_desc": "4 AVENUE DU RECTEUR POINCARE - 75116", "stop_name": "LA FONTAINE - RADIO FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.273599858486286, 48.852091170862494]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d0d070d6f55fea49371ea7b95a8fa5d834009890", "fields": {"departement": "92", "stop_lat": 48.84092591926018, "code_postal": "92064", "stop_lon": 2.222049786002583, "coord": [48.84092591926018, 2.222049786002583], "stop_id": 4008360, "stop_desc": "QUAI DU MARECHAL JUIN - 92064", "stop_name": "PONT DE SAINT-CLOUD - RIVE GAUCHE"}, "geometry": {"type": "Point", "coordinates": [2.222049786002583, 48.84092591926018]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "80d63e089c043cadb63b416d2cf070974a58d39f", "fields": {"departement": "92", "stop_lat": 48.84154904732475, "code_postal": "92012", "stop_lon": 2.235174382500791, "coord": [48.84154904732475, 2.235174382500791], "stop_id": 4008364, "stop_desc": "121 RUE DE PARIS - 92012", "stop_name": "RUE DE BILLANCOURT"}, "geometry": {"type": "Point", "coordinates": [2.235174382500791, 48.84154904732475]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b4f3665f380566ac36ddd761452e4e92fb68d453", "fields": {"departement": "92", "stop_lat": 48.843274327797964, "code_postal": "92012", "stop_lon": 2.2458327950717787, "coord": [48.843274327797964, 2.2458327950717787], "stop_id": 4008367, "stop_desc": "59 R DU CHATEAU - 92012", "stop_name": "DENFERT ROCHEREAU"}, "geometry": {"type": "Point", "coordinates": [2.2458327950717787, 48.843274327797964]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "57f34f742b6388a9ff7152d6ff06ff8fadc6a532", "fields": {"departement": "92", "stop_lat": 48.84449206259368, "code_postal": "92012", "stop_lon": 2.2517812475774006, "coord": [48.84449206259368, 2.2517812475774006], "stop_id": 4008368, "stop_desc": "1 RUE DU CHATEAU - 92012", "stop_name": "LA TOURELLE"}, "geometry": {"type": "Point", "coordinates": [2.2517812475774006, 48.84449206259368]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "654f2284e88dde73ef2f30bfdeaacf7ab1cc1e08", "fields": {"departement": "75", "stop_lat": 48.85791537342734, "code_postal": "75116", "stop_lon": 2.2742328714160207, "coord": [48.85791537342734, 2.2742328714160207], "stop_id": 4008378, "stop_desc": "7 AVENUE MOZART - 75116", "stop_name": "LA MUETTE - BOULAINVILLIERS RER"}, "geometry": {"type": "Point", "coordinates": [2.2742328714160207, 48.85791537342734]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c36dce97e0a9271aeeebfb017808832c7562b4ff", "fields": {"departement": "75", "stop_lat": 48.86571914834078, "code_postal": "75116", "stop_lon": 2.2795906522141896, "coord": [48.86571914834078, 2.2795906522141896], "stop_id": 4008381, "stop_desc": "108 RUE DE LA POMPE - 75116", "stop_name": "LYCEE JANSON DE SAILLY"}, "geometry": {"type": "Point", "coordinates": [2.2795906522141896, 48.86571914834078]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a4973e833a43c47d9cd296dbd89d146debd7639e", "fields": {"departement": "75", "stop_lat": 48.87110677966517, "code_postal": "75116", "stop_lon": 2.2890669048546903, "coord": [48.87110677966517, 2.2890669048546903], "stop_id": 4008384, "stop_desc": "51 AVENUE VICTOR HUGO - 75116", "stop_name": "VICTOR HUGO - PAUL VALERY"}, "geometry": {"type": "Point", "coordinates": [2.2890669048546903, 48.87110677966517]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a26627ebbfbeca6452491ee429c92a68d2c055c7", "fields": {"departement": "75", "stop_lat": 48.872698182012066, "code_postal": "75109", "stop_lon": 2.3321319339894804, "coord": [48.872698182012066, 2.3321319339894804], "stop_id": 4008834, "stop_desc": "6 RUE GLUCK - 75109", "stop_name": "OPERA"}, "geometry": {"type": "Point", "coordinates": [2.3321319339894804, 48.872698182012066]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "de9749d808ef3aca6b621348bcd130910865517f", "fields": {"departement": "75", "stop_lat": 48.87441332622057, "code_postal": "75108", "stop_lon": 2.318084616089399, "coord": [48.87441332622057, 2.318084616089399], "stop_id": 4008838, "stop_desc": "10-12 RUE LA BOETIE - 75108", "stop_name": "SAINT-AUGUSTIN"}, "geometry": {"type": "Point", "coordinates": [2.318084616089399, 48.87441332622057]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6bde02c2b4381a228f9bbf564ccdb88cd5d522a8", "fields": {"departement": "75", "stop_lat": 48.874863096583965, "code_postal": "75108", "stop_lon": 2.3207958046274593, "coord": [48.874863096583965, 2.3207958046274593], "stop_id": 4008839, "stop_desc": "FACE 24 RUE DE LA PEPINIERE - 75108", "stop_name": "SAINT-AUGUSTIN"}, "geometry": {"type": "Point", "coordinates": [2.3207958046274593, 48.874863096583965]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cb250b468f48c2bf780cb02cdbbb754d0f055bca", "fields": {"departement": "75", "stop_lat": 48.875121390460386, "code_postal": "75108", "stop_lon": 2.30847875269421, "coord": [48.875121390460386, 2.30847875269421], "stop_id": 4008842, "stop_desc": "174 BOULEVARD HAUSSMANN - 75108", "stop_name": "HAUSSMANN - COURCELLES"}, "geometry": {"type": "Point", "coordinates": [2.30847875269421, 48.875121390460386]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3a422f5e15754a3c92ebec0d53e865bee804569c", "fields": {"departement": "75", "stop_lat": 48.8728344242601, "code_postal": "75116", "stop_lon": 2.294515046174537, "coord": [48.8728344242601, 2.294515046174537], "stop_id": 4008851, "stop_desc": "1 AVENUE KLEBER - 75116", "stop_name": "CHARLES DE GAULLE - ETOILE - KLEBER"}, "geometry": {"type": "Point", "coordinates": [2.294515046174537, 48.8728344242601]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "748d8479700235673dc692bbdc2cf92b43a1959c", "fields": {"departement": "75", "stop_lat": 48.869382396794045, "code_postal": "75116", "stop_lon": 2.2920929155953367, "coord": [48.869382396794045, 2.2920929155953367], "stop_id": 4008853, "stop_desc": "35-37 AVENUE KLEBER - 75116", "stop_name": "KLEBER - PAUL VALERY"}, "geometry": {"type": "Point", "coordinates": [2.2920929155953367, 48.869382396794045]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "945673ef9820e5f3ca003067975152a135d56b9c", "fields": {"departement": "75", "stop_lat": 48.85315277938903, "code_postal": "75116", "stop_lon": 2.275668673992765, "coord": [48.85315277938903, 2.275668673992765], "stop_id": 4008865, "stop_desc": "19 BIS RUE BOULAINVILLIERS - 75116", "stop_name": "ASSOMPTION - RADIO FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.275668673992765, 48.85315277938903]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f0b54e992521b2295abd12e3390a649e739dc40e", "fields": {"departement": "75", "stop_lat": 48.848323718334726, "code_postal": "75116", "stop_lon": 2.270499593022801, "coord": [48.848323718334726, 2.270499593022801], "stop_id": 4008870, "stop_desc": "2 RUE GEORGE SAND - 75116", "stop_name": "EGLISE D'AUTEUIL"}, "geometry": {"type": "Point", "coordinates": [2.270499593022801, 48.848323718334726]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4b5ec0800a9d47f3930eecb1161d448ee6013461", "fields": {"departement": "75", "stop_lat": 48.842945753539325, "code_postal": "75116", "stop_lon": 2.2646377924472296, "coord": [48.842945753539325, 2.2646377924472296], "stop_id": 4008872, "stop_desc": "58 RUE CHARDON LAGACHE - 75116", "stop_name": "JOUVENET"}, "geometry": {"type": "Point", "coordinates": [2.2646377924472296, 48.842945753539325]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "538d9d99c4aa11ceb1a0055eae071c749040e78b", "fields": {"departement": "75", "stop_lat": 48.84281366597419, "code_postal": "75116", "stop_lon": 2.2692539662291007, "coord": [48.84281366597419, 2.2692539662291007], "stop_id": 4008880, "stop_desc": "127 AVENUE DE VERSAILLES - 75116", "stop_name": "VICTORIEN SARDOU"}, "geometry": {"type": "Point", "coordinates": [2.2692539662291007, 48.84281366597419]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "59959944784437d4007f5ab504bcfa99732252b3", "fields": {"departement": "75", "stop_lat": 48.84463919141917, "code_postal": "75116", "stop_lon": 2.271130714553106, "coord": [48.84463919141917, 2.271130714553106], "stop_id": 4008881, "stop_desc": "101 AVENUE DE VERSAILLES - 75116", "stop_name": "WILHEM"}, "geometry": {"type": "Point", "coordinates": [2.271130714553106, 48.84463919141917]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3bc2760f707005ae1e5d889b40c4f8c5651d1efa", "fields": {"departement": "75", "stop_lat": 48.84988633872962, "code_postal": "75116", "stop_lon": 2.26838673896929, "coord": [48.84988633872962, 2.26838673896929], "stop_id": 4008883, "stop_desc": "20-24 RUE GEORGE SAND - 75116", "stop_name": "GEORGE SAND - LA FONTAINE"}, "geometry": {"type": "Point", "coordinates": [2.26838673896929, 48.84988633872962]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9a53bfd13103478159fe8d3a36a2dec1cb022827", "fields": {"departement": "75", "stop_lat": 48.87536697356267, "code_postal": "75108", "stop_lon": 2.325823281094452, "coord": [48.87536697356267, 2.325823281094452], "stop_id": 4008888, "stop_desc": "111 R SAINT-LAZARE - 75108", "stop_name": "GARE SAINT-LAZARE"}, "geometry": {"type": "Point", "coordinates": [2.325823281094452, 48.87536697356267]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "873f47922906a4564c8ddea2719a1148b3082c61", "fields": {"departement": "75", "stop_lat": 48.873300053901026, "code_postal": "75109", "stop_lon": 2.327635793622974, "coord": [48.873300053901026, 2.327635793622974], "stop_id": 4008889, "stop_desc": "21 RUE AUBER - 75109", "stop_name": "HAVRE - HAUSSMANN"}, "geometry": {"type": "Point", "coordinates": [2.327635793622974, 48.873300053901026]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9f417e3faa72c650bbd305c15dd096daf80f0db2", "fields": {"departement": "92", "stop_lat": 48.82795039915451, "code_postal": "92072", "stop_lon": 2.2247466599919257, "coord": [48.82795039915451, 2.2247466599919257], "stop_id": 4008892, "stop_desc": "ALLEE DU PONT DE SEVRES - 92072", "stop_name": "MUSEE DE SEVRES"}, "geometry": {"type": "Point", "coordinates": [2.2247466599919257, 48.82795039915451]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5221e3ff114067343c6798753f5c1c37e1926545", "fields": {"departement": "92", "stop_lat": 48.82719400030173, "code_postal": "92072", "stop_lon": 2.2232373238068854, "coord": [48.82719400030173, 2.2232373238068854], "stop_id": 4008893, "stop_desc": "1 GRANDE RUE - 92072", "stop_name": "MUSEE DE SEVRES"}, "geometry": {"type": "Point", "coordinates": [2.2232373238068854, 48.82719400030173]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f35b1344b400e62f1020c409ffd8af4e9d0dc17e", "fields": {"departement": "92", "stop_lat": 48.824749461223334, "code_postal": "92072", "stop_lon": 2.2143133818536844, "coord": [48.824749461223334, 2.2143133818536844], "stop_id": 4008897, "stop_desc": "53 GRANDE RUE - 92072", "stop_name": "MAIRIE DE SEVRES"}, "geometry": {"type": "Point", "coordinates": [2.2143133818536844, 48.824749461223334]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "55e8d3fba442299c03045835b2858d1abb040301", "fields": {"departement": "92", "stop_lat": 48.81807928139687, "code_postal": "92022", "stop_lon": 2.196881146353624, "coord": [48.81807928139687, 2.196881146353624], "stop_id": 4008904, "stop_desc": "FACE 231 AVENUE ROGER SALENGRO - 92022", "stop_name": "MARIVEL"}, "geometry": {"type": "Point", "coordinates": [2.196881146353624, 48.81807928139687]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cb619a33323109184f5a23f43daf6c6c8ec44852", "fields": {"departement": "92", "stop_lat": 48.81329240286992, "code_postal": "92022", "stop_lon": 2.192375982764248, "coord": [48.81329240286992, 2.192375982764248], "stop_id": 4008909, "stop_desc": "855 AVENUE ROGER SALENGRO - 92022", "stop_name": "ATRIUM"}, "geometry": {"type": "Point", "coordinates": [2.192375982764248, 48.81329240286992]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8235918f0a4faee068e13e8db7d71ca9af1e2548", "fields": {"departement": "92", "stop_lat": 48.80939607804073, "code_postal": "92022", "stop_lon": 2.1886311203390743, "coord": [48.80939607804073, 2.1886311203390743], "stop_id": 4008912, "stop_desc": "1456 AVENUE ROGER SALENGRO - 92022", "stop_name": "PUITS SANS VIN"}, "geometry": {"type": "Point", "coordinates": [2.1886311203390743, 48.80939607804073]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b31d87e27f6bbe42376058551dfbdc91ff70e84c", "fields": {"departement": "92", "stop_lat": 48.80947415975704, "code_postal": "92022", "stop_lon": 2.186399224037896, "coord": [48.80947415975704, 2.186399224037896], "stop_id": 4008917, "stop_desc": "11 AVENUE DE LA RESISTANCE - 92022", "stop_name": "SECURITE SOCIALE"}, "geometry": {"type": "Point", "coordinates": [2.186399224037896, 48.80947415975704]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "603c38e5f6270f7979d40df5bfedfa2aaeea7613", "fields": {"departement": "92", "stop_lat": 48.82309945572887, "code_postal": "92072", "stop_lon": 2.209321933804203, "coord": [48.82309945572887, 2.209321933804203], "stop_id": 4008926, "stop_desc": "6 AVENUE DE L'EUROPE - 92072", "stop_name": "MARCHE SAINT-ROMAIN"}, "geometry": {"type": "Point", "coordinates": [2.209321933804203, 48.82309945572887]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0b0742ba56fe4a9ac564e8d1274a2a3cefd23a1c", "fields": {"departement": "92", "stop_lat": 48.823217271990735, "code_postal": "92072", "stop_lon": 2.2102336043309494, "coord": [48.823217271990735, 2.2102336043309494], "stop_id": 4008927, "stop_desc": "FACE 8 AVENUE DE L'EUROPE - 92072", "stop_name": "MARCHE SAINT-ROMAIN"}, "geometry": {"type": "Point", "coordinates": [2.2102336043309494, 48.823217271990735]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7efde041626b91106bc006f817f51c1ed8eaa529", "fields": {"departement": "92", "stop_lat": 48.8203484720689, "code_postal": "92072", "stop_lon": 2.20056348405683, "coord": [48.8203484720689, 2.20056348405683], "stop_id": 4008930, "stop_desc": "174 RUE GRANDE RUE - 92072", "stop_name": "HOPITAL JEAN ROSTAND"}, "geometry": {"type": "Point", "coordinates": [2.20056348405683, 48.8203484720689]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dae2938f12908d28f6994d3a9d1a3e5aaa55e1ac", "fields": {"departement": "92", "stop_lat": 48.81807928139687, "code_postal": "92022", "stop_lon": 2.196881146353624, "coord": [48.81807928139687, 2.196881146353624], "stop_id": 4008932, "stop_desc": "FACE 231 AVENUE ROGER SALENGRO - 92022", "stop_name": "MARIVEL"}, "geometry": {"type": "Point", "coordinates": [2.196881146353624, 48.81807928139687]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6650c0495e89d74d33247a61d66f67ebf38a6440", "fields": {"departement": "92", "stop_lat": 48.80877507090612, "code_postal": "92022", "stop_lon": 2.1879525193180367, "coord": [48.80877507090612, 2.1879525193180367], "stop_id": 4008941, "stop_desc": "1427 AVENUE ROGER SALENGRO - 92022", "stop_name": "PUITS SANS VIN"}, "geometry": {"type": "Point", "coordinates": [2.1879525193180367, 48.80877507090612]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6b92bea2c5b4d05bbbac643ff2edab9669e99c46", "fields": {"departement": "92", "stop_lat": 48.82795039915451, "code_postal": "92072", "stop_lon": 2.2247466599919257, "coord": [48.82795039915451, 2.2247466599919257], "stop_id": 4008946, "stop_desc": "ALLEE DU PONT DE SEVRES - 92072", "stop_name": "MUSEE DE SEVRES"}, "geometry": {"type": "Point", "coordinates": [2.2247466599919257, 48.82795039915451]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b4bc227cd21d90153683f7f832e3a4fb3f04f176", "fields": {"departement": "92", "stop_lat": 48.824703549250714, "code_postal": "92072", "stop_lon": 2.2133742801364997, "coord": [48.824703549250714, 2.2133742801364997], "stop_id": 4008950, "stop_desc": "48 GRANDE RUE - 92072", "stop_name": "MAIRIE DE SEVRES"}, "geometry": {"type": "Point", "coordinates": [2.2133742801364997, 48.824703549250714]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0387af3f968d605251c0158116714233d1cf78b9", "fields": {"departement": "92", "stop_lat": 48.822225083110055, "code_postal": "92072", "stop_lon": 2.206955758100564, "coord": [48.822225083110055, 2.206955758100564], "stop_id": 4008954, "stop_desc": "30 AVENUE DE L'EUROPE - 92072", "stop_name": "PLACE GABRIEL PERI"}, "geometry": {"type": "Point", "coordinates": [2.206955758100564, 48.822225083110055]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d679f26571d66bcbda6ebe0572a5e0b3b778e663", "fields": {"departement": "92", "stop_lat": 48.82088927265677, "code_postal": "92072", "stop_lon": 2.20190952396969, "coord": [48.82088927265677, 2.20190952396969], "stop_id": 4008957, "stop_desc": "149 RUE GRANDE RUE - 92072", "stop_name": "HOPITAL JEAN ROSTAND"}, "geometry": {"type": "Point", "coordinates": [2.20190952396969, 48.82088927265677]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1c483be306fee769c67d98c82b2e9af6a6c0dd51", "fields": {"departement": "92", "stop_lat": 48.81807928139687, "code_postal": "92022", "stop_lon": 2.196881146353624, "coord": [48.81807928139687, 2.196881146353624], "stop_id": 4008958, "stop_desc": "FACE 231 AVENUE ROGER SALENGRO - 92022", "stop_name": "MARIVEL"}, "geometry": {"type": "Point", "coordinates": [2.196881146353624, 48.81807928139687]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "08bc3c4cc68596db01a711362d5c7ce2f9c6abb0", "fields": {"departement": "92", "stop_lat": 48.81869202615678, "code_postal": "92022", "stop_lon": 2.198226896460123, "coord": [48.81869202615678, 2.198226896460123], "stop_id": 4008959, "stop_desc": "155 AVENUE ROGER SALENGRO - 92022", "stop_name": "MARIVEL"}, "geometry": {"type": "Point", "coordinates": [2.198226896460123, 48.81869202615678]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3c3b98d20e52b751c231114d889e9a93ce206fe8", "fields": {"departement": "92", "stop_lat": 48.810819960857444, "code_postal": "92022", "stop_lon": 2.1917160854064868, "coord": [48.810819960857444, 2.1917160854064868], "stop_id": 4008965, "stop_desc": "AVENUE ROGER SALENGRO - 92022", "stop_name": "COURS GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.1917160854064868, 48.810819960857444]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f7f567195c487871064346121eeceecb415640c2", "fields": {"departement": "78", "stop_lat": 48.80480992644157, "code_postal": "78686", "stop_lon": 2.179799998132435, "coord": [48.80480992644157, 2.179799998132435], "stop_id": 4008970, "stop_desc": "24 AVENUE DU GENERAL LECLERC - 78686", "stop_name": "LES FLEURS"}, "geometry": {"type": "Point", "coordinates": [2.179799998132435, 48.80480992644157]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d5dc77e0ec750045f35af5ebac0f4d9c433897ac", "fields": {"departement": "78", "stop_lat": 48.80463056638208, "code_postal": "78686", "stop_lon": 2.1800998849399043, "coord": [48.80463056638208, 2.1800998849399043], "stop_id": 4008971, "stop_desc": "FACE 22 AVENUE DU GENERAL LECLERC - 78686", "stop_name": "LES FLEURS"}, "geometry": {"type": "Point", "coordinates": [2.1800998849399043, 48.80463056638208]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "64060aa64b553fd94ddb45a03de95f6a7f3b132f", "fields": {"departement": "78", "stop_lat": 48.80116434164711, "code_postal": "78686", "stop_lon": 2.1629537291516154, "coord": [48.80116434164711, 2.1629537291516154], "stop_id": 4008979, "stop_desc": "161 AVENUE DU GENERAL LECLERC - 78686", "stop_name": "PIERRE EDOUARD"}, "geometry": {"type": "Point", "coordinates": [2.1629537291516154, 48.80116434164711]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "958813d5007a0cbe1496a0eff9f6b6003a4867fa", "fields": {"departement": "78", "stop_lat": 48.79982250795672, "code_postal": "78646", "stop_lon": 2.138346345358018, "coord": [48.79982250795672, 2.138346345358018], "stop_id": 4008987, "stop_desc": "56 AVENUE DE PARIS - 78646", "stop_name": "VERGENNES"}, "geometry": {"type": "Point", "coordinates": [2.138346345358018, 48.79982250795672]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1f9d0fc0148a4cc1ae1615fa3bdaf6635b44ac5a", "fields": {"departement": "92", "stop_lat": 48.87079400619145, "code_postal": "92073", "stop_lon": 2.2249806690114537, "coord": [48.87079400619145, 2.2249806690114537], "stop_id": 4008996, "stop_desc": "21 RUE DU MONT VALERIEN - 92073", "stop_name": "MAIRIE DE SURESNES"}, "geometry": {"type": "Point", "coordinates": [2.2249806690114537, 48.87079400619145]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "66b96df5a7e7554c4a51e04360229890e411da07", "fields": {"departement": "92", "stop_lat": 48.877199336305935, "code_postal": "92073", "stop_lon": 2.2222280666278524, "coord": [48.877199336305935, 2.2222280666278524], "stop_id": 4009000, "stop_desc": "2 RUE MAURICE PAYRET DORTAIL - 92073", "stop_name": "LYCEE PAUL LANGEVIN"}, "geometry": {"type": "Point", "coordinates": [2.2222280666278524, 48.877199336305935]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "57b4bc5584a1aa3f24bc9bb6a6bb98d2641bbc77", "fields": {"departement": "92", "stop_lat": 48.879346923618655, "code_postal": "92073", "stop_lon": 2.2218417709501512, "coord": [48.879346923618655, 2.2218417709501512], "stop_id": 4009002, "stop_desc": "RUE DES CHERCHEVETS - 92073", "stop_name": "LES PARECHAUX"}, "geometry": {"type": "Point", "coordinates": [2.2218417709501512, 48.879346923618655]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fceb1bccad56ab0291f5ada67ec91c579f0447de", "fields": {"departement": "92", "stop_lat": 48.88016607558125, "code_postal": "92073", "stop_lon": 2.223202577904025, "coord": [48.88016607558125, 2.223202577904025], "stop_id": 4009003, "stop_desc": "RUE DES CHENES - 92073", "stop_name": "LES CHENES"}, "geometry": {"type": "Point", "coordinates": [2.223202577904025, 48.88016607558125]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7ea08b973328df2e5f60d25c6087d0802e57c354", "fields": {"departement": "92", "stop_lat": 48.87913604338843, "code_postal": "92073", "stop_lon": 2.226924751572093, "coord": [48.87913604338843, 2.226924751572093], "stop_id": 4009007, "stop_desc": "FACE 33 RUE VOLTAIRE - 92073", "stop_name": "CAPITAINE FERBER"}, "geometry": {"type": "Point", "coordinates": [2.226924751572093, 48.87913604338843]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d8adacb0cf5728a546e1ddb4e2d0fbdb7c9e9fdb", "fields": {"departement": "92", "stop_lat": 48.8635343842633, "code_postal": "92073", "stop_lon": 2.2093039143430833, "coord": [48.8635343842633, 2.2093039143430833], "stop_id": 4009015, "stop_desc": "AVENUE JEAN JAURES - 92073", "stop_name": "PLACE JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.2093039143430833, 48.8635343842633]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "961dab33fb42b90dc654114d08a14c12b7302540", "fields": {"departement": "92", "stop_lat": 48.8635343842633, "code_postal": "92073", "stop_lon": 2.2093039143430833, "coord": [48.8635343842633, 2.2093039143430833], "stop_id": 4009016, "stop_desc": "AVENUE JEAN JAURES - 92073", "stop_name": "PLACE JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.2093039143430833, 48.8635343842633]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6e1b1f1ed5ea385439a69f2fcd2d08fef0c1872d", "fields": {"departement": "92", "stop_lat": 48.87050610336747, "code_postal": "92073", "stop_lon": 2.22465432200747, "coord": [48.87050610336747, 2.22465432200747], "stop_id": 4009019, "stop_desc": "24-26 AVENUE DU GENERAL DE GAULLE - 92073", "stop_name": "GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.22465432200747, 48.87050610336747]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3d731bd1e6050feec1fd0425bddecbd86f03fc7e", "fields": {"departement": "92", "stop_lat": 48.876820665431374, "code_postal": "92073", "stop_lon": 2.230594918473892, "coord": [48.876820665431374, 2.230594918473892], "stop_id": 4009024, "stop_desc": "4-6 RUE ROUGET DE LISLE - 92073", "stop_name": "ROUGET DE L'ISLE - RATRAIT"}, "geometry": {"type": "Point", "coordinates": [2.230594918473892, 48.876820665431374]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "36b78b8202b1ebcf5ad2a195da3f848e58731dfe", "fields": {"departement": "92", "stop_lat": 48.8795731176282, "code_postal": "92073", "stop_lon": 2.233246354394404, "coord": [48.8795731176282, 2.233246354394404], "stop_id": 4009025, "stop_desc": "100 RUE ROUGET DE LISLE - 92073", "stop_name": "ROUGET DE L'ISLE - BAS ROGERS"}, "geometry": {"type": "Point", "coordinates": [2.233246354394404, 48.8795731176282]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2b6075e535b68145d45bcf637f0939a908916052", "fields": {"departement": "92", "stop_lat": 48.87854592814571, "code_postal": "92073", "stop_lon": 2.2302643478350848, "coord": [48.87854592814571, 2.2302643478350848], "stop_id": 4009027, "stop_desc": "93 RUE GAMBETTA - 92073", "stop_name": "93, RUE GAMBETTA"}, "geometry": {"type": "Point", "coordinates": [2.2302643478350848, 48.87854592814571]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9624a52c4da78bdf2d18d6e1212e237f4268fe68", "fields": {"departement": "92", "stop_lat": 48.873086690937306, "code_postal": "92073", "stop_lon": 2.225956664356652, "coord": [48.873086690937306, 2.225956664356652], "stop_id": 4009029, "stop_desc": "7 RUE D'ESTIENNE D'ORVES - 92073", "stop_name": "CARNOT"}, "geometry": {"type": "Point", "coordinates": [2.225956664356652, 48.873086690937306]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "89220461ad2e4d9cf5283dece83d30e434ffe951", "fields": {"departement": "92", "stop_lat": 48.86020369310159, "code_postal": "92073", "stop_lon": 2.2216528149847683, "coord": [48.86020369310159, 2.2216528149847683], "stop_id": 4009036, "stop_desc": "2 RUE DE LA REPUBLIQUE - 92073", "stop_name": "REPUBLIQUE - VAL D'OR"}, "geometry": {"type": "Point", "coordinates": [2.2216528149847683, 48.86020369310159]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9a672e501c71c7d828829933fd02a3e1d9183508", "fields": {"departement": "92", "stop_lat": 48.86363810962967, "code_postal": "92073", "stop_lon": 2.2229256235034502, "coord": [48.86363810962967, 2.2229256235034502], "stop_id": 4009038, "stop_desc": "88 RUE DE LA REPUBLIQUE - 92073", "stop_name": "PLACE DE LA REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.2229256235034502, 48.86363810962967]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "08ea86e761bad7c1035199838f3ef4db1214579b", "fields": {"departement": "93", "stop_lat": 48.87835546087665, "code_postal": "93045", "stop_lon": 2.410970358588144, "coord": [48.87835546087665, 2.410970358588144], "stop_id": 4009042, "stop_desc": "40 R DE PARIS - 93045", "stop_name": "LES BRUYERES"}, "geometry": {"type": "Point", "coordinates": [2.410970358588144, 48.87835546087665]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "74ff9c0389aaf4d990f4ec854649f1bb9af357ae", "fields": {"departement": "93", "stop_lat": 48.89388169834081, "code_postal": "93055", "stop_lon": 2.4018195179428488, "coord": [48.89388169834081, 2.4018195179428488], "stop_id": 4009049, "stop_desc": "34-36 RUE HOCHE - 93055", "stop_name": "MONTGOLFIER"}, "geometry": {"type": "Point", "coordinates": [2.4018195179428488, 48.89388169834081]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d18434fbf1a223a48649f73fe593886df71cdbbf", "fields": {"departement": "93", "stop_lat": 48.90152464089519, "code_postal": "93055", "stop_lon": 2.3942088019686834, "coord": [48.90152464089519, 2.3942088019686834], "stop_id": 4009053, "stop_desc": "42 AVENUE EDOUARD VAILLANT - 93055", "stop_name": "LA PEROUSE"}, "geometry": {"type": "Point", "coordinates": [2.3942088019686834, 48.90152464089519]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3cc372cedb316e84d31d04a48ae7ecd00f7d9a58", "fields": {"departement": "93", "stop_lat": 48.91949633133381, "code_postal": "93001", "stop_lon": 2.378110052910618, "coord": [48.91949633133381, 2.378110052910618], "stop_id": 4009061, "stop_desc": "86 RUE DE SAINT-DENIS - 93001", "stop_name": "HEURTAULT"}, "geometry": {"type": "Point", "coordinates": [2.378110052910618, 48.91949633133381]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5c81e83245caf238813a1188502eb2865dbbebf5", "fields": {"departement": "93", "stop_lat": 48.923686884663525, "code_postal": "93066", "stop_lon": 2.3695215803495095, "coord": [48.923686884663525, 2.3695215803495095], "stop_id": 4009063, "stop_desc": "77 RUE DANIELLE CASANOVA - 93066", "stop_name": "BERGERIES - FRANCS MOISINS"}, "geometry": {"type": "Point", "coordinates": [2.3695215803495095, 48.923686884663525]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "845850e2f90b4d2d73fe79a20339e0b0ed33a8be", "fields": {"departement": "91", "stop_lat": 48.722865008113295, "code_postal": "91377", "stop_lon": 2.2621699682623326, "coord": [48.722865008113295, 2.2621699682623326], "stop_id": 3757177, "stop_desc": "15 AVENUE RAMOLFO GARNIER - 91377", "stop_name": "RUE DE PARIS"}, "geometry": {"type": "Point", "coordinates": [2.2621699682623326, 48.722865008113295]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "43aa6efe03aff9584d31bda22750486eadc971e6", "fields": {"departement": "94", "stop_lat": 48.80107615544935, "code_postal": "94003", "stop_lon": 2.343159481658929, "coord": [48.80107615544935, 2.343159481658929], "stop_id": 3755006, "stop_desc": "78 AVENUE GABRIEL PERI - 94003", "stop_name": "QUATRE CHEMINS"}, "geometry": {"type": "Point", "coordinates": [2.343159481658929, 48.80107615544935]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "12354e6c33acccc6db986381fbdfa8b7b7a826d8", "fields": {"departement": "94", "stop_lat": 48.81092692369328, "code_postal": "94003", "stop_lon": 2.3361115979106186, "coord": [48.81092692369328, 2.3361115979106186], "stop_id": 3755022, "stop_desc": "88 AVENUE JEAN JAURES - 94003", "stop_name": "CHAPERON VERT"}, "geometry": {"type": "Point", "coordinates": [2.3361115979106186, 48.81092692369328]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6a9e0214d006703f5420c95353e20d8db9b82524", "fields": {"departement": "91", "stop_lat": 48.70892852105778, "code_postal": "91136", "stop_lon": 2.269795689400011, "coord": [48.70892852105778, 2.269795689400011], "stop_id": 3757187, "stop_desc": "169 ROUTE DE VERSAILLES - 91136", "stop_name": "LA FONTAINE"}, "geometry": {"type": "Point", "coordinates": [2.269795689400011, 48.70892852105778]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "19d33354798ef58352f2124211881f72f2b883d7", "fields": {"departement": "94", "stop_lat": 48.808562977830384, "code_postal": "94003", "stop_lon": 2.3309408008390324, "coord": [48.808562977830384, 2.3309408008390324], "stop_id": 3755021, "stop_desc": "FACE 50 AVENUE LAPLACE - 94003", "stop_name": "LENINE"}, "geometry": {"type": "Point", "coordinates": [2.3309408008390324, 48.808562977830384]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dc05f3715f7db51bcf15007134ada3aeca8e1ea7", "fields": {"departement": "93", "stop_lat": 48.92044241871065, "code_postal": "93027", "stop_lon": 2.410539326109545, "coord": [48.92044241871065, 2.410539326109545], "stop_id": 4574197, "stop_desc": "0 AVENUE PAUL VAILLANT COUTURIER - 93027", "stop_name": "LA COURNEUVE-8 MAI 1945"}, "geometry": {"type": "Point", "coordinates": [2.410539326109545, 48.92044241871065]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e1b83cf57e3b4756e2b498cc85b8a6abbe88a767", "fields": {"departement": "94", "stop_lat": 48.83631306496527, "code_postal": "94052", "stop_lon": 2.4794610851063337, "coord": [48.83631306496527, 2.4794610851063337], "stop_id": 4614206, "stop_desc": "60 GRANDE RUE CHARLES DE GAULLE - 94052", "stop_name": "RUE DE BEAUTE"}, "geometry": {"type": "Point", "coordinates": [2.4794610851063337, 48.83631306496527]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ad935ebda9ae9bfff7f30e17a56113a2e4034696", "fields": {"departement": "94", "stop_lat": 48.836726053297795, "code_postal": "94052", "stop_lon": 2.4798298195018535, "coord": [48.836726053297795, 2.4798298195018535], "stop_id": 4614207, "stop_desc": "3 RUE PAUL DOUMER - 94052", "stop_name": "RUE DE BEAUTE"}, "geometry": {"type": "Point", "coordinates": [2.4798298195018535, 48.836726053297795]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fe9205d7eb9cc3571ac060939471812862d54190", "fields": {"departement": "94", "stop_lat": 48.838185309775355, "code_postal": "94052", "stop_lon": 2.4916246714838945, "coord": [48.838185309775355, 2.4916246714838945], "stop_id": 4614212, "stop_desc": "172 GRANDE RUE CHARLES DE GAULLE - 94052", "stop_name": "MAIRIE DE NOGENT-SUR-MARNE"}, "geometry": {"type": "Point", "coordinates": [2.4916246714838945, 48.838185309775355]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3e97297c42b266f2ee3812118dda8e88cea4de3c", "fields": {"departement": "94", "stop_lat": 48.83830246540127, "code_postal": "94052", "stop_lon": 2.4913799442406903, "coord": [48.83830246540127, 2.4913799442406903], "stop_id": 4614213, "stop_desc": "172 GR CHARLES DE GAULLE - 94052", "stop_name": "MAIRIE DE NOGENT-SUR-MARNE"}, "geometry": {"type": "Point", "coordinates": [2.4913799442406903, 48.83830246540127]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "46b2800ba6be135ca7bdc1183ffd1fa70d869ef5", "fields": {"departement": "94", "stop_lat": 48.83477537240173, "code_postal": "94015", "stop_lon": 2.5196193536418727, "coord": [48.83477537240173, 2.5196193536418727], "stop_id": 4614227, "stop_desc": "1 AV DE RIGNY - 94015", "stop_name": "MAIRIE DE BRY-SUR-MARNE"}, "geometry": {"type": "Point", "coordinates": [2.5196193536418727, 48.83477537240173]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "07fd2b3e704e55c09fcda886d578c72b0e67850a", "fields": {"departement": "94", "stop_lat": 48.83684957358511, "code_postal": "94015", "stop_lon": 2.520879219789748, "coord": [48.83684957358511, 2.520879219789748], "stop_id": 4614228, "stop_desc": "32 GRANDE RUE CHARLES DE GAULLE - 94015", "stop_name": "RUE DU PRESSOIR"}, "geometry": {"type": "Point", "coordinates": [2.520879219789748, 48.83684957358511]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a4db90ad5c82bb69b0ba9d84ce6aa37b0bd52710", "fields": {"departement": "94", "stop_lat": 48.844148576874794, "code_postal": "94015", "stop_lon": 2.5259296805163265, "coord": [48.844148576874794, 2.5259296805163265], "stop_id": 4614233, "stop_desc": "AVENUE ETIENNE DE SILHOUETTE - 94015", "stop_name": "BRY-SUR-MARNE RER"}, "geometry": {"type": "Point", "coordinates": [2.5259296805163265, 48.844148576874794]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a07c65fc8cee565ebf95e5e37373e1bd94538516", "fields": {"departement": "94", "stop_lat": 48.84408523258336, "code_postal": "94015", "stop_lon": 2.5262017872214524, "coord": [48.84408523258336, 2.5262017872214524], "stop_id": 4614234, "stop_desc": "AVENUE ETIENNE DE SILHOUETTE - 94015", "stop_name": "BRY-SUR-MARNE RER"}, "geometry": {"type": "Point", "coordinates": [2.5262017872214524, 48.84408523258336]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6c5d513720e1ca0f358d1b1624c9ee49d150177c", "fields": {"departement": "94", "stop_lat": 48.84093158731507, "code_postal": "94015", "stop_lon": 2.5255775804370817, "coord": [48.84093158731507, 2.5255775804370817], "stop_id": 4614236, "stop_desc": "BOULEVARD PASTEUR - 94015", "stop_name": "CIMETIERE - FUNERARIUM DE BRY"}, "geometry": {"type": "Point", "coordinates": [2.5255775804370817, 48.84093158731507]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "413fe2b873b0562d0b4d67ae099c5a92c3c01c91", "fields": {"departement": "94", "stop_lat": 48.83679452994152, "code_postal": "94015", "stop_lon": 2.5273188916761153, "coord": [48.83679452994152, 2.5273188916761153], "stop_id": 4614240, "stop_desc": "109 BOULEVARD PASTEUR - 94015", "stop_name": "DOCTEUR ARMAND BRILLARD"}, "geometry": {"type": "Point", "coordinates": [2.5273188916761153, 48.83679452994152]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c7e8ca349db5d3c715acb1e5ffdee0bd1d2b63fd", "fields": {"departement": "94", "stop_lat": 48.834368626874216, "code_postal": "94015", "stop_lon": 2.5268471190970643, "coord": [48.834368626874216, 2.5268471190970643], "stop_id": 4614241, "stop_desc": "RUE DU 2 DECEMBRE 1870 - 94015", "stop_name": "HOPITAL SAINT-CAMILLE"}, "geometry": {"type": "Point", "coordinates": [2.5268471190970643, 48.834368626874216]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c012466c728a60520a0fd9776538700c6a6d6563", "fields": {"departement": "94", "stop_lat": 48.83614857791696, "code_postal": "94015", "stop_lon": 2.53216338463, "coord": [48.83614857791696, 2.53216338463], "stop_id": 4614246, "stop_desc": "AV DES FRERES LUMIERE - 94015", "stop_name": "MOLIERE"}, "geometry": {"type": "Point", "coordinates": [2.53216338463, 48.83614857791696]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4395c7348c00874e82a8140948d2997ef97bfb5b", "fields": {"departement": "94", "stop_lat": 48.83798644590723, "code_postal": "94015", "stop_lon": 2.5349478013371, "coord": [48.83798644590723, 2.5349478013371], "stop_id": 4614247, "stop_desc": "AV DES FRERES LUMIERE - 94015", "stop_name": "LA FONTAINE"}, "geometry": {"type": "Point", "coordinates": [2.5349478013371, 48.83798644590723]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "faa8cae47bad204756dbdae0ddb53d66146ed6a3", "fields": {"departement": "94", "stop_lat": 48.838333354068794, "code_postal": "94052", "stop_lon": 2.4883165865023296, "coord": [48.838333354068794, 2.4883165865023296], "stop_id": 4614259, "stop_desc": "FACE 3 RUE EUGENE GALBRUN - 94052", "stop_name": "HOTEL DES COIGNARD"}, "geometry": {"type": "Point", "coordinates": [2.4883165865023296, 48.838333354068794]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b9736f46ed1fd5e2d893badae13c6c0540137415", "fields": {"departement": "93", "stop_lat": 48.84075952992124, "code_postal": "93051", "stop_lon": 2.5528361623161175, "coord": [48.84075952992124, 2.5528361623161175], "stop_id": 4614261, "stop_desc": "PISTE GARE ROUTIERE - 93051", "stop_name": "NOISY-LE-GRAND - MONT D'EST RER"}, "geometry": {"type": "Point", "coordinates": [2.5528361623161175, 48.84075952992124]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "496cbce61a255df0b6919ec9a4556853e7f2b276", "fields": {"departement": "93", "stop_lat": 48.839739559711695, "code_postal": "93051", "stop_lon": 2.5502721677203333, "coord": [48.839739559711695, 2.5502721677203333], "stop_id": 4614264, "stop_desc": "BOULEVARD DU LEVANT - 93051", "stop_name": "CIMETIERE DE NOISY-LE-GRAND"}, "geometry": {"type": "Point", "coordinates": [2.5502721677203333, 48.839739559711695]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5679a196337ef2a885e7a4c5173bb56d59db6b68", "fields": {"departement": "94", "stop_lat": 48.832767675211144, "code_postal": "94079", "stop_lon": 2.543749718800131, "coord": [48.832767675211144, 2.543749718800131], "stop_id": 4614266, "stop_desc": "FACE 37 BOULEVARD DE FRIEDBERG - 94079", "stop_name": "SQUARE DES ALLOBROGES"}, "geometry": {"type": "Point", "coordinates": [2.543749718800131, 48.832767675211144]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "83219a65e328814922f864783667a3296eb64877", "fields": {"departement": "94", "stop_lat": 48.832945485228045, "code_postal": "94079", "stop_lon": 2.5448667694120215, "coord": [48.832945485228045, 2.5448667694120215], "stop_id": 4614267, "stop_desc": "BOULEVARD DE FRIEDBERG - 94079", "stop_name": "SQUARE DES ALLOBROGES"}, "geometry": {"type": "Point", "coordinates": [2.5448667694120215, 48.832945485228045]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c34b98c45b0bc2ed14f7143b63876bb717049759", "fields": {"departement": "94", "stop_lat": 48.83052744548207, "code_postal": "94079", "stop_lon": 2.5398610125072185, "coord": [48.83052744548207, 2.5398610125072185], "stop_id": 4614268, "stop_desc": "FACE 7 BOULEVARD DE FRIEDBERG - 94079", "stop_name": "FRIEDBERG"}, "geometry": {"type": "Point", "coordinates": [2.5398610125072185, 48.83052744548207]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "081e4ee24b9287ccd19f3b3be2a0b9da959f4139", "fields": {"departement": "94", "stop_lat": 48.826068431366515, "code_postal": "94079", "stop_lon": 2.540524210599729, "coord": [48.826068431366515, 2.540524210599729], "stop_id": 4614271, "stop_desc": "FACE 37 RUE DU GENERAL GALLIENI - 94079", "stop_name": "MAIRIE DE VILLIERS-SUR-MARNE"}, "geometry": {"type": "Point", "coordinates": [2.540524210599729, 48.826068431366515]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "47520830765fa2ef98d142c2dbfc57fcb4e845f1", "fields": {"departement": "94", "stop_lat": 48.81025154425368, "code_postal": "94059", "stop_lon": 2.569175140910702, "coord": [48.81025154425368, 2.569175140910702], "stop_id": 4614282, "stop_desc": "22 AVENUE DU GENERAL LECLERC - 94059", "stop_name": "MAURICE BERTEAUX - GENERAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.569175140910702, 48.81025154425368]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bc7d5661d12cf4a942c905bf1deee64666c8f4cf", "fields": {"departement": "94", "stop_lat": 48.806524238250496, "code_postal": "94059", "stop_lon": 2.5769144941444875, "coord": [48.806524238250496, 2.5769144941444875], "stop_id": 4614286, "stop_desc": "35 AVENUE ARDOUIN - 94059", "stop_name": "JEAN KIFFER"}, "geometry": {"type": "Point", "coordinates": [2.5769144941444875, 48.806524238250496]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7dd71d5b72ac1a99bbbe2f38a7cf4935f7ecc958", "fields": {"departement": "94", "stop_lat": 48.80618275823874, "code_postal": "94059", "stop_lon": 2.5813079588492873, "coord": [48.80618275823874, 2.5813079588492873], "stop_id": 4614287, "stop_desc": "FACE 76 AVENUE JEAN KIFFER - 94059", "stop_name": "AVENUE BERTRAND"}, "geometry": {"type": "Point", "coordinates": [2.5813079588492873, 48.80618275823874]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7125b45c20075842caa233277d07f164e8381c3e", "fields": {"departement": "94", "stop_lat": 48.80513162258953, "code_postal": "94059", "stop_lon": 2.5854394438536805, "coord": [48.80513162258953, 2.5854394438536805], "stop_id": 4614290, "stop_desc": "1 AV GONZALVE - 94059", "stop_name": "PLACE DE VERDUN"}, "geometry": {"type": "Point", "coordinates": [2.5854394438536805, 48.80513162258953]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c718d79e66844b7089aefbd5e1793c804814e1e4", "fields": {"departement": "77", "stop_lat": 48.805734860786835, "code_postal": "77373", "stop_lon": 2.5975660110970877, "coord": [48.805734860786835, 2.5975660110970877], "stop_id": 4614294, "stop_desc": "AVENUE DE CAMINHA - 77373", "stop_name": "VILLAGE ANGLAIS"}, "geometry": {"type": "Point", "coordinates": [2.5975660110970877, 48.805734860786835]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "70fc505e027831371574fd4c61a2c48e8e57b716", "fields": {"departement": "77", "stop_lat": 48.79560044923286, "code_postal": "77373", "stop_lon": 2.6118131999412277, "coord": [48.79560044923286, 2.6118131999412277], "stop_id": 4614302, "stop_desc": "RUE DU PLATEAU - 77373", "stop_name": "SALLE DES FETES JACQUES BREL"}, "geometry": {"type": "Point", "coordinates": [2.6118131999412277, 48.79560044923286]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ac372ab3e174f82eb6c8e5f81d02470edfc25229", "fields": {"departement": "77", "stop_lat": 48.806175176731905, "code_postal": "77373", "stop_lon": 2.617393548505659, "coord": [48.806175176731905, 2.617393548505659], "stop_id": 4614314, "stop_desc": "FACE 3 RUE DE L'EST - 77373", "stop_name": "EMERAINVILLE-PONTAULT-COMBAULT RER"}, "geometry": {"type": "Point", "coordinates": [2.617393548505659, 48.806175176731905]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f2b85cbcbaf29ba3dfe12ddef516cda423766e07", "fields": {"departement": "77", "stop_lat": 48.806175176731905, "code_postal": "77373", "stop_lon": 2.617393548505659, "coord": [48.806175176731905, 2.617393548505659], "stop_id": 4614315, "stop_desc": "FACE 3 RUE DE L'EST - 77373", "stop_name": "EMERAINVILLE-PONTAULT-COMBAULT RER"}, "geometry": {"type": "Point", "coordinates": [2.617393548505659, 48.806175176731905]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b1d006f15e485c05908fd14177472777d47c8848", "fields": {"departement": "94", "stop_lat": 48.81435795899422, "code_postal": "94059", "stop_lon": 2.5650427202063413, "coord": [48.81435795899422, 2.5650427202063413], "stop_id": 4614319, "stop_desc": "FACE 110 AVENUE MAURICE BERTEAUX - 94059", "stop_name": "MAURICE BERTEAUX - TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.5650427202063413, 48.81435795899422]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ef481d707b080ce0464a4aace5ca5b091b5b44e4", "fields": {"departement": "94", "stop_lat": 48.82724329014408, "code_postal": "94079", "stop_lon": 2.541998956217836, "coord": [48.82724329014408, 2.541998956217836], "stop_id": 4614322, "stop_desc": "2 RUE DU GENERAL DE GAULLE - 94079", "stop_name": "EGLISE DE VILLIERS-SUR-MARNE"}, "geometry": {"type": "Point", "coordinates": [2.541998956217836, 48.82724329014408]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "492fe8cd02d7ee174604423c4e73f0d1873a2616", "fields": {"departement": "93", "stop_lat": 48.83520571658804, "code_postal": "93051", "stop_lon": 2.5475170326785896, "coord": [48.83520571658804, 2.5475170326785896], "stop_id": 4614323, "stop_desc": "BD DE FRIEDBERG - 93051", "stop_name": "MOULIN A VENT"}, "geometry": {"type": "Point", "coordinates": [2.5475170326785896, 48.83520571658804]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4a9f044fb33719827e90af05b7f03af580d09f45", "fields": {"departement": "94", "stop_lat": 48.8227441353955, "code_postal": "94079", "stop_lon": 2.5501479650901335, "coord": [48.8227441353955, 2.5501479650901335], "stop_id": 4614331, "stop_desc": "46 AVENUE ANDRE ROUY - 94079", "stop_name": "GEORGES DEMESY"}, "geometry": {"type": "Point", "coordinates": [2.5501479650901335, 48.8227441353955]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "48343fe3a859593642a93b9839f8d5dd163cf54e", "fields": {"departement": "94", "stop_lat": 48.81533254588097, "code_postal": "94017", "stop_lon": 2.562991988416578, "coord": [48.81533254588097, 2.562991988416578], "stop_id": 4614334, "stop_desc": "96 AVENUE MAURICE BERTEAUX - 94017", "stop_name": "GEORGES COURTELINE"}, "geometry": {"type": "Point", "coordinates": [2.562991988416578, 48.81533254588097]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "346d092bfc446be3c2ee190a12a41a917c389ea4", "fields": {"departement": "94", "stop_lat": 48.78999257243819, "code_postal": "94060", "stop_lon": 2.573886418866455, "coord": [48.78999257243819, 2.573886418866455], "stop_id": 4614343, "stop_desc": "FACE 7 AVENUE PAUL CLAUDEL - 94060", "stop_name": "HOTEL DE VILLE DE LA QUEUE-EN-BRIE"}, "geometry": {"type": "Point", "coordinates": [2.573886418866455, 48.78999257243819]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d602fc71fe4f14a1d681040c04b855afc1d226dc", "fields": {"departement": "94", "stop_lat": 48.79220407386903, "code_postal": "94060", "stop_lon": 2.573651637057144, "coord": [48.79220407386903, 2.573651637057144], "stop_id": 4614344, "stop_desc": "FACE 7 RUE JEAN RACINE - 94060", "stop_name": "SAINT-JEAN - LES BORDES"}, "geometry": {"type": "Point", "coordinates": [2.573651637057144, 48.79220407386903]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6b1bd306628e4b106bb88379ce8fd432cff76818", "fields": {"departement": "94", "stop_lat": 48.80074671374991, "code_postal": "94059", "stop_lon": 2.5760851010741983, "coord": [48.80074671374991, 2.5760851010741983], "stop_id": 4614346, "stop_desc": "CHEMIN DU PLESSIS TREVISE A LA QUEUE EN BRIE - 94059", "stop_name": "PLESSIS - SAINT-ANTOINE"}, "geometry": {"type": "Point", "coordinates": [2.5760851010741983, 48.80074671374991]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e2e72e71394cb9ddce1626cd82037676280be6d1", "fields": {"departement": "94", "stop_lat": 48.815962947351636, "code_postal": "94059", "stop_lon": 2.562327864820946, "coord": [48.815962947351636, 2.562327864820946], "stop_id": 4614353, "stop_desc": "3 AVENUE MAURICE BERTEAUX - 94059", "stop_name": "GEORGES COURTELINE"}, "geometry": {"type": "Point", "coordinates": [2.562327864820946, 48.815962947351636]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7c9163b06bac9aabcbee061f33f3c2366464bfd5", "fields": {"departement": "94", "stop_lat": 48.82916607462896, "code_postal": "94079", "stop_lon": 2.5525157392012354, "coord": [48.82916607462896, 2.5525157392012354], "stop_id": 4614362, "stop_desc": "FACE 46 AVENUE MONTRICHARD - 94079", "stop_name": "LES STADES"}, "geometry": {"type": "Point", "coordinates": [2.5525157392012354, 48.82916607462896]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b94428123cc93893f8e64f2a54fc12fd4b32b79e", "fields": {"departement": "93", "stop_lat": 48.83520571658804, "code_postal": "93051", "stop_lon": 2.5475170326785896, "coord": [48.83520571658804, 2.5475170326785896], "stop_id": 4614365, "stop_desc": "BD DE FRIEDBERG - 93051", "stop_name": "MOULIN A VENT"}, "geometry": {"type": "Point", "coordinates": [2.5475170326785896, 48.83520571658804]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "598826bd36e46518e541cc9b9dada0008e6ed1b7", "fields": {"departement": "93", "stop_lat": 48.83880776872974, "code_postal": "93051", "stop_lon": 2.5486344844287583, "coord": [48.83880776872974, 2.5486344844287583], "stop_id": 4614369, "stop_desc": "BD DU LEVANT - 93051", "stop_name": "CIMETIERE DE NOISY-LE-GRAND"}, "geometry": {"type": "Point", "coordinates": [2.5486344844287583, 48.83880776872974]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0719e958d62dfec2b635edbb249868f4bfb616b7", "fields": {"departement": "94", "stop_lat": 48.810134597675855, "code_postal": "94059", "stop_lon": 2.569229050320323, "coord": [48.810134597675855, 2.569229050320323], "stop_id": 4614384, "stop_desc": "FACE 24 AVENUE DU GENERAL LECLERC - 94059", "stop_name": "MAURICE BERTEAUX - GENERAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.569229050320323, 48.810134597675855]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "35e480e81fe8452224b2eed0a7217e0e6f9bd37f", "fields": {"departement": "94", "stop_lat": 48.80962390415088, "code_postal": "94059", "stop_lon": 2.5729825310092345, "coord": [48.80962390415088, 2.5729825310092345], "stop_id": 4614385, "stop_desc": "32 AVENUE ARDOUIN - 94059", "stop_name": "MAIRIE DU PLESSIS-TREVISE"}, "geometry": {"type": "Point", "coordinates": [2.5729825310092345, 48.80962390415088]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7373f02779b81f6f0ac63b0eff909d7d6a94ef43", "fields": {"departement": "94", "stop_lat": 48.8123230187691, "code_postal": "94068", "stop_lon": 2.4734212302794782, "coord": [48.8123230187691, 2.4734212302794782], "stop_id": 4614401, "stop_desc": "FACE 1 AVENUE DE CONDE - 94068", "stop_name": "PLACE D'ARMES"}, "geometry": {"type": "Point", "coordinates": [2.4734212302794782, 48.8123230187691]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a8f456dbbbfcc42c9e75604a8d898e5bc3c60810", "fields": {"departement": "94", "stop_lat": 48.81276204313824, "code_postal": "94017", "stop_lon": 2.5269451153226656, "coord": [48.81276204313824, 2.5269451153226656], "stop_id": 4614432, "stop_desc": "RUE ROLLEY - 94017", "stop_name": "LE PLATEAU"}, "geometry": {"type": "Point", "coordinates": [2.5269451153226656, 48.81276204313824]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7d6748aa49419eaaf95e199f105d3c7b0207b65f", "fields": {"departement": "94", "stop_lat": 48.81436159657632, "code_postal": "94017", "stop_lon": 2.527114269390822, "coord": [48.81436159657632, 2.527114269390822], "stop_id": 4614434, "stop_desc": "AVENUE AMBROISE CROIZAT - 94017", "stop_name": "SONIA DELAUNAY"}, "geometry": {"type": "Point", "coordinates": [2.527114269390822, 48.81436159657632]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ff4399df8fb352ecdcdae77eda7eaa3887c6dd75", "fields": {"departement": "94", "stop_lat": 48.817029311583305, "code_postal": "94017", "stop_lon": 2.5281447592343236, "coord": [48.817029311583305, 2.5281447592343236], "stop_id": 4614435, "stop_desc": "RUE DE BERNAU - 94017", "stop_name": "PARC DEPARTEMENTAL"}, "geometry": {"type": "Point", "coordinates": [2.5281447592343236, 48.817029311583305]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "429f5c4f268c4f278f96adc41d929a326f60a070", "fields": {"departement": "94", "stop_lat": 48.8170827134078, "code_postal": "94017", "stop_lon": 2.5284715901436785, "coord": [48.8170827134078, 2.5284715901436785], "stop_id": 4614436, "stop_desc": "RUE BERNAU - 94017", "stop_name": "PARC DEPARTEMENTAL"}, "geometry": {"type": "Point", "coordinates": [2.5284715901436785, 48.8170827134078]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f7b584cf8c8196c5212f5e0ca889e063b71797cb", "fields": {"departement": "94", "stop_lat": 48.81673345512435, "code_postal": "94017", "stop_lon": 2.5332200821253115, "coord": [48.81673345512435, 2.5332200821253115], "stop_id": 4614438, "stop_desc": "RUE DE BERNAU - 94017", "stop_name": "RUE DE BERNAU"}, "geometry": {"type": "Point", "coordinates": [2.5332200821253115, 48.81673345512435]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "32da01f3e713f19dd5f20d4badcb308abbf6189b", "fields": {"departement": "94", "stop_lat": 48.81976402522195, "code_postal": "94017", "stop_lon": 2.5321835178900676, "coord": [48.81976402522195, 2.5321835178900676], "stop_id": 4614440, "stop_desc": "RUE DU REGARD DES LUATS - 94017", "stop_name": "CENTRE COMMERCIAL DE CHAMPIGNY-SUR-MARNE"}, "geometry": {"type": "Point", "coordinates": [2.5321835178900676, 48.81976402522195]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9f4bc95973e887ca44424a54b7b52d1f5fd43b12", "fields": {"departement": "94", "stop_lat": 48.82184878427757, "code_postal": "94079", "stop_lon": 2.5324227353441313, "coord": [48.82184878427757, 2.5324227353441313], "stop_id": 4614441, "stop_desc": "ROUTE DE CHAMPIGNY - 94079", "stop_name": "LUATS-AMITIE"}, "geometry": {"type": "Point", "coordinates": [2.5324227353441313, 48.82184878427757]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1e1010ee6962343b778b309a99e5c2ead34de7a0", "fields": {"departement": "94", "stop_lat": 48.83333681329561, "code_postal": "94079", "stop_lon": 2.5367679813165975, "coord": [48.83333681329561, 2.5367679813165975], "stop_id": 4614453, "stop_desc": "BOULEVARD BISHOP'S STORTFORD - 94079", "stop_name": "PLACE DE FLORE"}, "geometry": {"type": "Point", "coordinates": [2.5367679813165975, 48.83333681329561]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4bf4b621fb7ddf144587ff79d2865fda4817482a", "fields": {"departement": "93", "stop_lat": 48.83520571658804, "code_postal": "93051", "stop_lon": 2.5475170326785896, "coord": [48.83520571658804, 2.5475170326785896], "stop_id": 4614458, "stop_desc": "BD DE FRIEDBERG - 93051", "stop_name": "MOULIN A VENT"}, "geometry": {"type": "Point", "coordinates": [2.5475170326785896, 48.83520571658804]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "48df13013343d9c0d3cf65cc2751e76df5a97550", "fields": {"departement": "93", "stop_lat": 48.84076085882967, "code_postal": "93051", "stop_lon": 2.55210090418231, "coord": [48.84076085882967, 2.55210090418231], "stop_id": 4614461, "stop_desc": "PISTE GARE ROUTIERE - 93051", "stop_name": "NOISY-LE-GRAND - MONT D'EST RER"}, "geometry": {"type": "Point", "coordinates": [2.55210090418231, 48.84076085882967]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9e9150ff5b1fe24a56328a96f669f3a4ac08ef28", "fields": {"departement": "94", "stop_lat": 48.813165663031356, "code_postal": "94017", "stop_lon": 2.509772359937948, "coord": [48.813165663031356, 2.509772359937948], "stop_id": 4614465, "stop_desc": "RUE GEORGES DIMITROV - 94017", "stop_name": "MAIRIE DE CHAMPIGNY - MARCHE"}, "geometry": {"type": "Point", "coordinates": [2.509772359937948, 48.813165663031356]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "057d80f5e2ed2a755e6ed8490917f20cf939deee", "fields": {"departement": "93", "stop_lat": 48.82357736365424, "code_postal": "93051", "stop_lon": 2.579715542785822, "coord": [48.82357736365424, 2.579715542785822], "stop_id": 4614466, "stop_desc": "1 AVENUE DES BOIS SAINT-MARTIN - 93051", "stop_name": "LES YVRIS - NOISY-LE-GRAND RER"}, "geometry": {"type": "Point", "coordinates": [2.579715542785822, 48.82357736365424]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "869d8bbfade2502673150632e2cc0c47f3a5899b", "fields": {"departement": "93", "stop_lat": 48.8234776672607, "code_postal": "93051", "stop_lon": 2.580123421212593, "coord": [48.8234776672607, 2.580123421212593], "stop_id": 4614467, "stop_desc": "FACE 3 AVENUE DES BOIS SAINT-MARTIN - 93051", "stop_name": "LES YVRIS - NOISY-LE-GRAND RER"}, "geometry": {"type": "Point", "coordinates": [2.580123421212593, 48.8234776672607]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e3a69b1e021a8d8f7195d514a35693992a5f73e0", "fields": {"departement": "93", "stop_lat": 48.82668997900703, "code_postal": "93051", "stop_lon": 2.5738223411104824, "coord": [48.82668997900703, 2.5738223411104824], "stop_id": 4614468, "stop_desc": "FACE 48 AVENUE ROGER CAILTEUX - 93051", "stop_name": "VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.5738223411104824, 48.82668997900703]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f0b6c566c4d957f20f53f909d46419fe68b805ba", "fields": {"departement": "93", "stop_lat": 48.8305033838722, "code_postal": "93051", "stop_lon": 2.5584294605572144, "coord": [48.8305033838722, 2.5584294605572144], "stop_id": 4614475, "stop_desc": "0 AV DU FORT - 93051", "stop_name": "CITE DES HETRES"}, "geometry": {"type": "Point", "coordinates": [2.5584294605572144, 48.8305033838722]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e84096d83e686fc94d6770c754f05c0bf9e0f027", "fields": {"departement": "93", "stop_lat": 48.84092957713675, "code_postal": "93051", "stop_lon": 2.5532317340341804, "coord": [48.84092957713675, 2.5532317340341804], "stop_id": 4614484, "stop_desc": "PISTE GARE ROUTIERE - 93051", "stop_name": "NOISY-LE-GRAND - MONT D'EST RER"}, "geometry": {"type": "Point", "coordinates": [2.5532317340341804, 48.84092957713675]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b7c67f2f808181a1347bbee2ada41af18fc8d63e", "fields": {"departement": "93", "stop_lat": 48.84619689031638, "code_postal": "93051", "stop_lon": 2.5528996112196936, "coord": [48.84619689031638, 2.5528996112196936], "stop_id": 4614488, "stop_desc": "20 RUE DE LA REPUBLIQUE - 93051", "stop_name": "ESPACE MICHEL SIMON"}, "geometry": {"type": "Point", "coordinates": [2.5528996112196936, 48.84619689031638]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aafdc1e0a8d17fd3e120a8e46226557cfc5a988d", "fields": {"departement": "93", "stop_lat": 48.84857734032127, "code_postal": "93051", "stop_lon": 2.5584792885004997, "coord": [48.84857734032127, 2.5584792885004997], "stop_id": 4614492, "stop_desc": "4 R DE MALNOUE - 93051", "stop_name": "CARREFOUR DE MALNOUE"}, "geometry": {"type": "Point", "coordinates": [2.5584792885004997, 48.84857734032127]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ae51cb8296872e784189cb2f75ead97fc6e11648", "fields": {"departement": "93", "stop_lat": 48.84242792804296, "code_postal": "93051", "stop_lon": 2.5780062719733907, "coord": [48.84242792804296, 2.5780062719733907], "stop_id": 4614500, "stop_desc": "ALLEE JEAN RENOIR - 93051", "stop_name": "NOISY - CHAMPS RER"}, "geometry": {"type": "Point", "coordinates": [2.5780062719733907, 48.84242792804296]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "576cba04ce1ef521205969badeef842be4149a20", "fields": {"departement": "93", "stop_lat": 48.840939304849854, "code_postal": "93051", "stop_lon": 2.552823293308902, "coord": [48.840939304849854, 2.552823293308902], "stop_id": 4614502, "stop_desc": "AVENUE DU MONT D'EST - 93051", "stop_name": "NOISY-LE-GRAND - MONT D'EST RER"}, "geometry": {"type": "Point", "coordinates": [2.552823293308902, 48.840939304849854]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8dc342f7d021bb62892c648af8a0bea77e416e73", "fields": {"departement": "93", "stop_lat": 48.84519643284332, "code_postal": "93051", "stop_lon": 2.5494775458929206, "coord": [48.84519643284332, 2.5494775458929206], "stop_id": 4614504, "stop_desc": "1 ROUTE DE VILLIERS - 93051", "stop_name": "REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.5494775458929206, 48.84519643284332]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ce3ba1e71d5cf117ec11de82486bb778393db00c", "fields": {"departement": "93", "stop_lat": 48.84951807883047, "code_postal": "93051", "stop_lon": 2.5648158086543447, "coord": [48.84951807883047, 2.5648158086543447], "stop_id": 4614513, "stop_desc": "75 AV EMILE COSSONNEAU - 93051", "stop_name": "POINTE DE GOURNAY"}, "geometry": {"type": "Point", "coordinates": [2.5648158086543447, 48.84951807883047]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3d1afca6ad765cc907b13d8548a5717df3e73ca0", "fields": {"departement": "93", "stop_lat": 48.84761100685357, "code_postal": "93051", "stop_lon": 2.570349886797638, "coord": [48.84761100685357, 2.570349886797638], "stop_id": 4614514, "stop_desc": "AVENUE MICHEL GOUTIER - 93051", "stop_name": "CHARLES PRANARD"}, "geometry": {"type": "Point", "coordinates": [2.570349886797638, 48.84761100685357]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e0ec3475b61f33b6a9fbf789c1fb3363c8386950", "fields": {"departement": "93", "stop_lat": 48.83955210062737, "code_postal": "93051", "stop_lon": 2.57341805575207, "coord": [48.83955210062737, 2.57341805575207], "stop_id": 4614526, "stop_desc": "21 RUE DE LA BUTTE VERTE - 93051", "stop_name": "LA BUTTE VERTE"}, "geometry": {"type": "Point", "coordinates": [2.57341805575207, 48.83955210062737]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d4d7e4d4f871b1b220a8ec0e8d4a251d81975810", "fields": {"departement": "93", "stop_lat": 48.833178356325, "code_postal": "93051", "stop_lon": 2.5786576703495943, "coord": [48.833178356325, 2.5786576703495943], "stop_id": 4614531, "stop_desc": "FACE 10-12 RUE DU BALLON - 93051", "stop_name": "RUE DU BALLON"}, "geometry": {"type": "Point", "coordinates": [2.5786576703495943, 48.833178356325]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "49bf498ae231c32f8e651115b49b3afb1b0fae88", "fields": {"departement": "93", "stop_lat": 48.83331424511531, "code_postal": "93051", "stop_lon": 2.578127354503669, "coord": [48.83331424511531, 2.578127354503669], "stop_id": 4614532, "stop_desc": "10 RUE DU BALLON - 93051", "stop_name": "RUE DU BALLON"}, "geometry": {"type": "Point", "coordinates": [2.578127354503669, 48.83331424511531]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b3e498c846feb304b277d717059917dcb6535813", "fields": {"departement": "93", "stop_lat": 48.82357736365424, "code_postal": "93051", "stop_lon": 2.579715542785822, "coord": [48.82357736365424, 2.579715542785822], "stop_id": 4614537, "stop_desc": "1 AVENUE DES BOIS SAINT-MARTIN - 93051", "stop_name": "LES YVRIS - NOISY-LE-GRAND RER"}, "geometry": {"type": "Point", "coordinates": [2.579715542785822, 48.82357736365424]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d62ce57b3385825efc74cfa0e0c0dda31e8ecda3", "fields": {"departement": "93", "stop_lat": 48.8234776672607, "code_postal": "93051", "stop_lon": 2.580123421212593, "coord": [48.8234776672607, 2.580123421212593], "stop_id": 4614538, "stop_desc": "FACE 3 AVENUE DES BOIS SAINT-MARTIN - 93051", "stop_name": "LES YVRIS - NOISY-LE-GRAND RER"}, "geometry": {"type": "Point", "coordinates": [2.580123421212593, 48.8234776672607]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e0ba86dbd2a917402bd9431556d213a5920bcb9d", "fields": {"departement": "93", "stop_lat": 48.83418336531997, "code_postal": "93051", "stop_lon": 2.565810468203873, "coord": [48.83418336531997, 2.565810468203873], "stop_id": 4614546, "stop_desc": "65 AVENUE GABRIEL PERI - 93051", "stop_name": "RUE DE LA CHAPELLE"}, "geometry": {"type": "Point", "coordinates": [2.565810468203873, 48.83418336531997]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2af70fe07d7192b610adc94cd898a26845d9977c", "fields": {"departement": "93", "stop_lat": 48.8389297724162, "code_postal": "93051", "stop_lon": 2.5605757873791464, "coord": [48.8389297724162, 2.5605757873791464], "stop_id": 4614548, "stop_desc": "AVENUE DU PAVE NEUF - 93051", "stop_name": "ETIENNE DOLET"}, "geometry": {"type": "Point", "coordinates": [2.5605757873791464, 48.8389297724162]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f6efe6a32eb9eac616bfd6b4522ffdbfe2a0ac04", "fields": {"departement": "93", "stop_lat": 48.84092876129849, "code_postal": "93051", "stop_lon": 2.5536810598972757, "coord": [48.84092876129849, 2.5536810598972757], "stop_id": 4614552, "stop_desc": "PISTE GARE ROUTIERE - 93051", "stop_name": "NOISY-LE-GRAND - MONT D'EST RER."}, "geometry": {"type": "Point", "coordinates": [2.5536810598972757, 48.84092876129849]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "752b6a6bd65725817b7868730a23f7e945d6a6c2", "fields": {"departement": "93", "stop_lat": 48.84619689031638, "code_postal": "93051", "stop_lon": 2.5528996112196936, "coord": [48.84619689031638, 2.5528996112196936], "stop_id": 4614558, "stop_desc": "20 RUE DE LA REPUBLIQUE - 93051", "stop_name": "ESPACE MICHEL SIMON"}, "geometry": {"type": "Point", "coordinates": [2.5528996112196936, 48.84619689031638]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "821f61f389e68cb4b12e07eb235c21ba88bab0a9", "fields": {"departement": "93", "stop_lat": 48.84825078188364, "code_postal": "93051", "stop_lon": 2.5399710907027604, "coord": [48.84825078188364, 2.5399710907027604], "stop_id": 4614562, "stop_desc": "17 BOULEVARD SOUCHET - 93051", "stop_name": "ROUTE DE NEUILLY"}, "geometry": {"type": "Point", "coordinates": [2.5399710907027604, 48.84825078188364]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a47c414af57cfd9ffa2b4e18483ccfbc4efd9d12", "fields": {"departement": "93", "stop_lat": 48.85655184767421, "code_postal": "93050", "stop_lon": 2.531204931415073, "coord": [48.85655184767421, 2.531204931415073], "stop_id": 4614567, "stop_desc": "30 PLACE DE LA RESISTANCE - 93050", "stop_name": "PLACE DE LA RESISTANCE"}, "geometry": {"type": "Point", "coordinates": [2.531204931415073, 48.85655184767421]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8cfd240e3be0fe87cabfb0e70f323016d50cd892", "fields": {"departement": "93", "stop_lat": 48.86018408234069, "code_postal": "93050", "stop_lon": 2.5304012505083278, "coord": [48.86018408234069, 2.5304012505083278], "stop_id": 4614569, "stop_desc": "59 RUE PAUL ET CAMILLE THOMOUX - 93050", "stop_name": "EPI D'OR"}, "geometry": {"type": "Point", "coordinates": [2.5304012505083278, 48.86018408234069]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fde47812f4cd79e75ac22f35d648e4ad0c1a7dd4", "fields": {"departement": "93", "stop_lat": 48.86653078639535, "code_postal": "93050", "stop_lon": 2.529416807489572, "coord": [48.86653078639535, 2.529416807489572], "stop_id": 4614572, "stop_desc": "4-6 AVENUE LEON BLUM - 93050", "stop_name": "LEON BLUM"}, "geometry": {"type": "Point", "coordinates": [2.529416807489572, 48.86653078639535]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "45c85a9c79a953c324fb256791547bf644a3d6fc", "fields": {"departement": "93", "stop_lat": 48.867818366920886, "code_postal": "93050", "stop_lon": 2.5334676366699243, "coord": [48.867818366920886, 2.5334676366699243], "stop_id": 4614575, "stop_desc": "AVENUE LEON BLUM - 93050", "stop_name": "ILE DE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.5334676366699243, 48.867818366920886]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "850837ef9bd5350e498228c269c89db9c86365ff", "fields": {"departement": "93", "stop_lat": 48.86932276095398, "code_postal": "93050", "stop_lon": 2.5367702131902, "coord": [48.86932276095398, 2.5367702131902], "stop_id": 4614576, "stop_desc": "4 AVENUE WINSTON CHURCHILL - 93050", "stop_name": "RUE DES POMMIERS"}, "geometry": {"type": "Point", "coordinates": [2.5367702131902, 48.86932276095398]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "36ef5385934576c6f8990ce821f647a99cb15125", "fields": {"departement": "93", "stop_lat": 48.87669368484657, "code_postal": "93077", "stop_lon": 2.524903587293289, "coord": [48.87669368484657, 2.524903587293289], "stop_id": 4614583, "stop_desc": "FACE 111 RUE DE NEUILLY - 93077", "stop_name": "LYCEE GEORGES CLEMENCEAU"}, "geometry": {"type": "Point", "coordinates": [2.524903587293289, 48.87669368484657]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8834334bb0f99e43da56ecd7ce4816bc42c876da", "fields": {"departement": "93", "stop_lat": 48.882391916339124, "code_postal": "93077", "stop_lon": 2.5247198110024587, "coord": [48.882391916339124, 2.5247198110024587], "stop_id": 4614586, "stop_desc": "178 BIS RUE GRANDE RUE - 93077", "stop_name": "GAGNY RER"}, "geometry": {"type": "Point", "coordinates": [2.5247198110024587, 48.882391916339124]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fe6e57a431af9eb68dd6c4f62118bef2d3d3b2fc", "fields": {"departement": "93", "stop_lat": 48.884120398332044, "code_postal": "93077", "stop_lon": 2.5169857165630183, "coord": [48.884120398332044, 2.5169857165630183], "stop_id": 4614587, "stop_desc": "3 AV HENRI DUNANT - 93077", "stop_name": "POTTIER"}, "geometry": {"type": "Point", "coordinates": [2.5169857165630183, 48.884120398332044]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "343e334386d99e47980d98ad216bf711aa1f1f36", "fields": {"departement": "93", "stop_lat": 48.88766097666592, "code_postal": "93077", "stop_lon": 2.5049233236352313, "coord": [48.88766097666592, 2.5049233236352313], "stop_id": 4614593, "stop_desc": "44-46 RUE DE BONDY - 93077", "stop_name": "FRANCOIS COPPEE"}, "geometry": {"type": "Point", "coordinates": [2.5049233236352313, 48.88766097666592]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "52cb85fbe1d097f59823686b1fb4ecd2438c0064", "fields": {"departement": "93", "stop_lat": 48.88740899012201, "code_postal": "93077", "stop_lon": 2.505167816587231, "coord": [48.88740899012201, 2.505167816587231], "stop_id": 4614594, "stop_desc": "7 RUE FRANCOIS COPPEE - 93077", "stop_name": "FRANCOIS COPPEE"}, "geometry": {"type": "Point", "coordinates": [2.505167816587231, 48.88740899012201]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e507d309e5aefaa31479cac1479d06168d9d68fe", "fields": {"departement": "93", "stop_lat": 48.88863768491767, "code_postal": "93077", "stop_lon": 2.5005380902320113, "coord": [48.88863768491767, 2.5005380902320113], "stop_id": 4614595, "stop_desc": "92 RUE DE BONDY - 93077", "stop_name": "MASSENA"}, "geometry": {"type": "Point", "coordinates": [2.5005380902320113, 48.88863768491767]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "555ad0bbc10097e651aa848d4d8f95c6b4eab3e1", "fields": {"departement": "93", "stop_lat": 48.889102506468866, "code_postal": "93077", "stop_lon": 2.4957422626622146, "coord": [48.889102506468866, 2.4957422626622146], "stop_id": 4614597, "stop_desc": "119-121 AVENUE MEISSONNIER - 93077", "stop_name": "LES MARNAUDES"}, "geometry": {"type": "Point", "coordinates": [2.4957422626622146, 48.889102506468866]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "651d65f9a4a6dafb65ae2ab520fde4b01766d445", "fields": {"departement": "93", "stop_lat": 48.88675326560095, "code_postal": "93077", "stop_lon": 2.491619408001084, "coord": [48.88675326560095, 2.491619408001084], "stop_id": 4614599, "stop_desc": "FACE 32 RUE DES MARNAUDES - 93077", "stop_name": "8 MAI 1945"}, "geometry": {"type": "Point", "coordinates": [2.491619408001084, 48.88675326560095]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "45786d6ac2c94c0939482538c127dfdc0f3cb10f", "fields": {"departement": "93", "stop_lat": 48.887322141077284, "code_postal": "93077", "stop_lon": 2.4895359876953287, "coord": [48.887322141077284, 2.4895359876953287], "stop_id": 4614600, "stop_desc": "ALLEE DES DEUX COMMUNES - 93077", "stop_name": "DENIS PAPIN"}, "geometry": {"type": "Point", "coordinates": [2.4895359876953287, 48.887322141077284]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "000d0f11de62fd51d31ac50b6954bd603a56d714", "fields": {"departement": "93", "stop_lat": 48.90323300235931, "code_postal": "93010", "stop_lon": 2.479358461626498, "coord": [48.90323300235931, 2.479358461626498], "stop_id": 4614613, "stop_desc": "60 RUE JULES GUESDE - 93010", "stop_name": "EGLISE DE BONDY"}, "geometry": {"type": "Point", "coordinates": [2.479358461626498, 48.90323300235931]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0c90840eb7be9474eb003376576ecf111595efbd", "fields": {"departement": "93", "stop_lat": 48.90555453249922, "code_postal": "93008", "stop_lon": 2.469044655471792, "coord": [48.90555453249922, 2.469044655471792], "stop_id": 4614619, "stop_desc": "FACE 439 AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "PONT DE BONDY"}, "geometry": {"type": "Point", "coordinates": [2.469044655471792, 48.90555453249922]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1b0e38dd24eaeb1825ab66cd8ccdf66e3e9ba155", "fields": {"departement": "93", "stop_lat": 48.90590089960924, "code_postal": "93008", "stop_lon": 2.46457388666915, "coord": [48.90590089960924, 2.46457388666915], "stop_id": 4614620, "stop_desc": "FACE 412 AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "RUE DES PEUPLIERS"}, "geometry": {"type": "Point", "coordinates": [2.46457388666915, 48.90590089960924]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e5fed7bb31157920dde3e93fe6bdbeef2e8502a0", "fields": {"departement": "93", "stop_lat": 48.905486896676855, "code_postal": "93008", "stop_lon": 2.4651318210827156, "coord": [48.905486896676855, 2.4651318210827156], "stop_id": 4614621, "stop_desc": "412 AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "RUE DES PEUPLIERS"}, "geometry": {"type": "Point", "coordinates": [2.4651318210827156, 48.905486896676855]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "15536268bc053051de67b2fb0449140f4b7258ac", "fields": {"departement": "92", "stop_lat": 48.86817044263968, "code_postal": "92063", "stop_lon": 2.192358886539712, "coord": [48.86817044263968, 2.192358886539712], "stop_id": 4024278, "stop_desc": "51 AV DU 18 JUIN 1940 - 92063", "stop_name": "DUNANT"}, "geometry": {"type": "Point", "coordinates": [2.192358886539712, 48.86817044263968]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "db9debe09616bdebb5145095ec4af0b0401356cd", "fields": {"departement": "92", "stop_lat": 48.88391135478196, "code_postal": "92063", "stop_lon": 2.1746675301348812, "coord": [48.88391135478196, 2.1746675301348812], "stop_id": 4024285, "stop_desc": "72 AVENUE ALBERT 1ER - 92063", "stop_name": "BAUDIN"}, "geometry": {"type": "Point", "coordinates": [2.1746675301348812, 48.88391135478196]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f90e500dfc496e1b0bc287392b2b6ad0ddbb3400", "fields": {"departement": "92", "stop_lat": 48.88719228663093, "code_postal": "92026", "stop_lon": 2.2535097512693967, "coord": [48.88719228663093, 2.2535097512693967], "stop_id": 4024290, "stop_desc": "BRETELLE PONT DE NEUILLY - 92026", "stop_name": "PONT DE NEUILLY - RIVE GAUCHE"}, "geometry": {"type": "Point", "coordinates": [2.2535097512693967, 48.88719228663093]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fe28ee54f6258d8e767c10f28f84cd8e52599ce6", "fields": {"departement": "92", "stop_lat": 48.883324123574575, "code_postal": "92062", "stop_lon": 2.248460335085293, "coord": [48.883324123574575, 2.248460335085293], "stop_id": 4024293, "stop_desc": "QUAI DE DION BOUTON - 92062", "stop_name": "SOLJENITSYNE"}, "geometry": {"type": "Point", "coordinates": [2.248460335085293, 48.883324123574575]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c1a6bfda4b6f489358fa57ac9d75e9ef7ee8308a", "fields": {"departement": "92", "stop_lat": 48.881821745766054, "code_postal": "92062", "stop_lon": 2.246459778300463, "coord": [48.881821745766054, 2.246459778300463], "stop_id": 4024295, "stop_desc": "34-36 QUAI DE DION BOUTON - 92062", "stop_name": "SQUARE LEON BLUM"}, "geometry": {"type": "Point", "coordinates": [2.246459778300463, 48.881821745766054]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "35f086de60f822ee3d56e147ea0b40ff6d2d3e86", "fields": {"departement": "92", "stop_lat": 48.87972417228882, "code_postal": "92062", "stop_lon": 2.2312838802690975, "coord": [48.87972417228882, 2.2312838802690975], "stop_id": 4024305, "stop_desc": "29 RUE DES BAS ROGERS - 92062", "stop_name": "VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.2312838802690975, 48.87972417228882]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b3391339fcc10a08a90cd277f9181f901b2cf5f3", "fields": {"departement": "92", "stop_lat": 48.87913604338843, "code_postal": "92073", "stop_lon": 2.226924751572093, "coord": [48.87913604338843, 2.226924751572093], "stop_id": 4024306, "stop_desc": "FACE 33 RUE VOLTAIRE - 92073", "stop_name": "CAPITAINE FERBER"}, "geometry": {"type": "Point", "coordinates": [2.226924751572093, 48.87913604338843]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "081a673f812356f63e398ebf4e744a3b4024f103", "fields": {"departement": "92", "stop_lat": 48.88018870315814, "code_postal": "92050", "stop_lon": 2.2187603501529525, "coord": [48.88018870315814, 2.2187603501529525], "stop_id": 4024311, "stop_desc": "FACE 224 RUE DE SURESNES - 92050", "stop_name": "LIBERTE - PLAIDEURS"}, "geometry": {"type": "Point", "coordinates": [2.2187603501529525, 48.88018870315814]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f876cbc24189cba8408ede0ec2d7a70e35442018", "fields": {"departement": "92", "stop_lat": 48.88434501113073, "code_postal": "92050", "stop_lon": 2.2140357663787533, "coord": [48.88434501113073, 2.2140357663787533], "stop_id": 4024315, "stop_desc": "100 RUE DE SURESNES - 92050", "stop_name": "LES ALOUETTES"}, "geometry": {"type": "Point", "coordinates": [2.2140357663787533, 48.88434501113073]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "319eab1dd179733f06bd4ece3b82e80d448cd08e", "fields": {"departement": "92", "stop_lat": 48.88863163240193, "code_postal": "92050", "stop_lon": 2.2053714557927226, "coord": [48.88863163240193, 2.2053714557927226], "stop_id": 4024318, "stop_desc": "FACE 52 RUE SADI-CARNOT - 92050", "stop_name": "SADI CARNOT - JOLIOT CURIE"}, "geometry": {"type": "Point", "coordinates": [2.2053714557927226, 48.88863163240193]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "00b4534bc624c3318e302d840c7ba5297b50d398", "fields": {"departement": "92", "stop_lat": 48.89076415653794, "code_postal": "92050", "stop_lon": 2.199682695448674, "coord": [48.89076415653794, 2.199682695448674], "stop_id": 4024321, "stop_desc": "BOULEVARD DU LEVANT - 92050", "stop_name": "PLAINCHAMP"}, "geometry": {"type": "Point", "coordinates": [2.199682695448674, 48.89076415653794]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c5d356908cd032bf820ec6693e9a256abd992456", "fields": {"departement": "92", "stop_lat": 48.893000092260564, "code_postal": "92050", "stop_lon": 2.198068457146964, "coord": [48.893000092260564, 2.198068457146964], "stop_id": 4024322, "stop_desc": "22 RUE DE STALINGRAD - 92050", "stop_name": "RUE DES ANCIENNES MAIRIES"}, "geometry": {"type": "Point", "coordinates": [2.198068457146964, 48.893000092260564]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a01ccff6188f4e90a2552923128e628a001b20f4", "fields": {"departement": "92", "stop_lat": 48.90005136480068, "code_postal": "92050", "stop_lon": 2.1949824204525146, "coord": [48.90005136480068, 2.1949824204525146], "stop_id": 4024329, "stop_desc": "66 BOULEVARD DE LA SEINE - 92050", "stop_name": "VOLTAIRE"}, "geometry": {"type": "Point", "coordinates": [2.1949824204525146, 48.90005136480068]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c50c9007eb756f1c61a74f142e7252576b623f26", "fields": {"departement": "92", "stop_lat": 48.900114030298596, "code_postal": "92050", "stop_lon": 2.1947777750056336, "coord": [48.900114030298596, 2.1947777750056336], "stop_id": 4024330, "stop_desc": "37 BOULEVARD DE LA SEINE - 92050", "stop_name": "VOLTAIRE"}, "geometry": {"type": "Point", "coordinates": [2.1947777750056336, 48.900114030298596]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "19f1f00a61ce9cdcfffa064eaf85176ecde6a3a5", "fields": {"departement": "92", "stop_lat": 48.90330277598378, "code_postal": "92050", "stop_lon": 2.1933785023252614, "coord": [48.90330277598378, 2.1933785023252614], "stop_id": 4024333, "stop_desc": "R KLEBER - 92050", "stop_name": "BOULEVARD DE LA SEINE"}, "geometry": {"type": "Point", "coordinates": [2.1933785023252614, 48.90330277598378]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6610ebd6d4d9b3fc956a8fc9fc1c343d318dc4f4", "fields": {"departement": "92", "stop_lat": 48.88906914182084, "code_postal": "92050", "stop_lon": 2.202808155962186, "coord": [48.88906914182084, 2.202808155962186], "stop_id": 4024339, "stop_desc": "4 RUE DE LA COTE - 92050", "stop_name": "SADI CARNOT - JOLIOT-CURIE"}, "geometry": {"type": "Point", "coordinates": [2.202808155962186, 48.88906914182084]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e63380354508b54c317c89d982acb12da9abd18e", "fields": {"departement": "92", "stop_lat": 48.887348351900705, "code_postal": "92050", "stop_lon": 2.2070918740511085, "coord": [48.887348351900705, 2.2070918740511085], "stop_id": 4024340, "stop_desc": "74 RUE SADI CARNOT - 92050", "stop_name": "CARRIERS"}, "geometry": {"type": "Point", "coordinates": [2.2070918740511085, 48.887348351900705]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b3b64ffb35ae89d6ae32ed50b197573d0f0b0e45", "fields": {"departement": "92", "stop_lat": 48.88769745158109, "code_postal": "92062", "stop_lon": 2.2330937691266137, "coord": [48.88769745158109, 2.2330937691266137], "stop_id": 4024348, "stop_desc": "60 AVENUE DU GENERAL DE GAULLE - 92062", "stop_name": "LES GRAVIERS"}, "geometry": {"type": "Point", "coordinates": [2.2330937691266137, 48.88769745158109]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bf8805cbf919a829c8e13850da0ba8863e5c2b4c", "fields": {"departement": "92", "stop_lat": 48.88864621542606, "code_postal": "92050", "stop_lon": 2.22874436019326, "coord": [48.88864621542606, 2.22874436019326], "stop_id": 4024352, "stop_desc": "133 AVENUE PABLO PICASSO - 92050", "stop_name": "LES ROSIERS"}, "geometry": {"type": "Point", "coordinates": [2.22874436019326, 48.88864621542606]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7f7d3643f0af019a3675c1ce514ae0209881207e", "fields": {"departement": "92", "stop_lat": 48.897851749188334, "code_postal": "92050", "stop_lon": 2.2130631147976536, "coord": [48.897851749188334, 2.2130631147976536], "stop_id": 4024366, "stop_desc": "BOULEVARD JULES MANSARD - 92050", "stop_name": "SOUFFLOT"}, "geometry": {"type": "Point", "coordinates": [2.2130631147976536, 48.897851749188334]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "08b17a9eb6f130541f12ffd5c6ce9dd7e55f2ff5", "fields": {"departement": "92", "stop_lat": 48.89937497841858, "code_postal": "92050", "stop_lon": 2.2087383229403086, "coord": [48.89937497841858, 2.2087383229403086], "stop_id": 4024367, "stop_desc": "3 BOULEVARD BLAISE PASCAL - 92050", "stop_name": "PASCAL"}, "geometry": {"type": "Point", "coordinates": [2.2087383229403086, 48.89937497841858]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b297e011c25c26b4d1299fcec224a91c366a9414", "fields": {"departement": "92", "stop_lat": 48.89369035872018, "code_postal": "92050", "stop_lon": 2.1965809475776066, "coord": [48.89369035872018, 2.1965809475776066], "stop_id": 4024378, "stop_desc": "35 BIS RUE DE STALINGRAD - 92050", "stop_name": "MAURICE THOREZ"}, "geometry": {"type": "Point", "coordinates": [2.1965809475776066, 48.89369035872018]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8595197b45c50934096474b9d46b4f1dcddb6867", "fields": {"departement": "92", "stop_lat": 48.890076182551034, "code_postal": "92050", "stop_lon": 2.181081044191548, "coord": [48.890076182551034, 2.181081044191548], "stop_id": 4024387, "stop_desc": "152-154 BOULEVARD NATIONAL - 92050", "stop_name": "CITE DU VIEUX PONT"}, "geometry": {"type": "Point", "coordinates": [2.181081044191548, 48.890076182551034]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8a01412da5f7ef604c7755c5c7135ac2ca511580", "fields": {"departement": "92", "stop_lat": 48.831778560975984, "code_postal": "92012", "stop_lon": 2.234036447384294, "coord": [48.831778560975984, 2.234036447384294], "stop_id": 4024393, "stop_desc": "167 RUE DE SILLY - 92012", "stop_name": "LYCEE E.J. MAREY"}, "geometry": {"type": "Point", "coordinates": [2.234036447384294, 48.831778560975984]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "98d66878167b881e92bbade9c5494a321e2505ee", "fields": {"departement": "92", "stop_lat": 48.83578551488156, "code_postal": "92012", "stop_lon": 2.2322994160386282, "coord": [48.83578551488156, 2.2322994160386282], "stop_id": 4024395, "stop_desc": "FACE 81 RUE DE SILLY - 92012", "stop_name": "SILLY - GALLIENI"}, "geometry": {"type": "Point", "coordinates": [2.2322994160386282, 48.83578551488156]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "69cc92854366daeca5e176d053064a769c8b8d01", "fields": {"departement": "92", "stop_lat": 48.84451824291562, "code_postal": "92064", "stop_lon": 2.2105491074089265, "coord": [48.84451824291562, 2.2105491074089265], "stop_id": 4024412, "stop_desc": "37 BOULEVARD DE LA REPUBLIQUE - 92064", "stop_name": "MARCHE DE SAINT-CLOUD"}, "geometry": {"type": "Point", "coordinates": [2.2105491074089265, 48.84451824291562]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1ab80bf9cb82d45515ed4734ea6e9501036624cc", "fields": {"departement": "92", "stop_lat": 48.8495813502211, "code_postal": "92064", "stop_lon": 2.213532760495842, "coord": [48.8495813502211, 2.213532760495842], "stop_id": 4024416, "stop_desc": "101 BOULEVARD DE LA REPUBLIQUE - 92064", "stop_name": "LYCEE DE SAINT-CLOUD"}, "geometry": {"type": "Point", "coordinates": [2.213532760495842, 48.8495813502211]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0aeb266bbc09b177562b19ffc94854ad43be1ff8", "fields": {"departement": "92", "stop_lat": 48.862450819553345, "code_postal": "92073", "stop_lon": 2.212998056196493, "coord": [48.862450819553345, 2.212998056196493], "stop_id": 4024422, "stop_desc": "8-10 RUE DE LA POTERIE - 92073", "stop_name": "CROIX DU ROY"}, "geometry": {"type": "Point", "coordinates": [2.212998056196493, 48.862450819553345]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c611dd395eb6065384bdb2255d81cdec7bef3c86", "fields": {"departement": "92", "stop_lat": 48.86950135809105, "code_postal": "92073", "stop_lon": 2.21732705866832, "coord": [48.86950135809105, 2.21732705866832], "stop_id": 4024428, "stop_desc": "FACE 160 BOULEVARD DU MARECHAL DE LATTRE DE TASSIGNY - 92073", "stop_name": "CLUSERET - HOPITAL FOCH"}, "geometry": {"type": "Point", "coordinates": [2.21732705866832, 48.86950135809105]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1220564208df71d339c22f1eb61fdb0db17c07f6", "fields": {"departement": "92", "stop_lat": 48.88371336825328, "code_postal": "92050", "stop_lon": 2.2033535096094816, "coord": [48.88371336825328, 2.2033535096094816], "stop_id": 4024438, "stop_desc": "82 RUE PAUL VAILLANT COUTURIER - 92050", "stop_name": "PIERRE SERGENT"}, "geometry": {"type": "Point", "coordinates": [2.2033535096094816, 48.88371336825328]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aba4f46a1efc230626da812eac4130e43a583497", "fields": {"departement": "92", "stop_lat": 48.88982481623273, "code_postal": "92050", "stop_lon": 2.203474009456126, "coord": [48.88982481623273, 2.203474009456126], "stop_id": 4024441, "stop_desc": "19 RUE DES VENETS - 92050", "stop_name": "LES VENETS"}, "geometry": {"type": "Point", "coordinates": [2.203474009456126, 48.88982481623273]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "64f20b7f3bdeed1b5e9cb390f9527a578f894712", "fields": {"departement": "92", "stop_lat": 48.89210313370966, "code_postal": "92050", "stop_lon": 2.1995837350962084, "coord": [48.89210313370966, 2.1995837350962084], "stop_id": 4024442, "stop_desc": "14 RUE DE STALINGRAD - 92050", "stop_name": "PLAINCHAMP"}, "geometry": {"type": "Point", "coordinates": [2.1995837350962084, 48.89210313370966]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "030893a0aa8d9243b87cb9ab74e02b057774b56f", "fields": {"departement": "92", "stop_lat": 48.895660974821816, "code_postal": "92050", "stop_lon": 2.2150856614501198, "coord": [48.895660974821816, 2.2150856614501198], "stop_id": 4024456, "stop_desc": "141 AVENUE FREDERIC ET IRENE JOLIOT CURIE - 92050", "stop_name": "PREFECTURE DES HAUTS-DE-SEINE"}, "geometry": {"type": "Point", "coordinates": [2.2150856614501198, 48.895660974821816]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "105ca5caea09be4f8d224912fa5b09d7a002f3a1", "fields": {"departement": "92", "stop_lat": 48.896889073971664, "code_postal": "92050", "stop_lon": 2.2209303386289885, "coord": [48.896889073971664, 2.2209303386289885], "stop_id": 4024458, "stop_desc": "0 BD DE PESARO - 92050", "stop_name": "NANTERRE-PREFECTURE RER"}, "geometry": {"type": "Point", "coordinates": [2.2209303386289885, 48.896889073971664]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "627324b5aab2ae6ac6ddccb7f227044c5c1ef9c7", "fields": {"departement": "92", "stop_lat": 48.894928935419784, "code_postal": "92050", "stop_lon": 2.195187305623287, "coord": [48.894928935419784, 2.195187305623287], "stop_id": 4024462, "stop_desc": "FACE 58-60 BOULEVARD DU COUCHANT - 92050", "stop_name": "NANTERRE - VILLE RER"}, "geometry": {"type": "Point", "coordinates": [2.195187305623287, 48.894928935419784]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c10022201623025d855ef58bb2169a40d2818e6b", "fields": {"departement": "92", "stop_lat": 48.89369035872018, "code_postal": "92050", "stop_lon": 2.1965809475776066, "coord": [48.89369035872018, 2.1965809475776066], "stop_id": 4024463, "stop_desc": "35 BIS RUE DE STALINGRAD - 92050", "stop_name": "MAURICE THOREZ"}, "geometry": {"type": "Point", "coordinates": [2.1965809475776066, 48.89369035872018]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ae4f9360f254469b532d5e317a236016338d1165", "fields": {"departement": "92", "stop_lat": 48.84092591926018, "code_postal": "92064", "stop_lon": 2.222049786002583, "coord": [48.84092591926018, 2.222049786002583], "stop_id": 4024470, "stop_desc": "QUAI DU MARECHAL JUIN - 92064", "stop_name": "PONT DE SAINT-CLOUD - RIVE GAUCHE"}, "geometry": {"type": "Point", "coordinates": [2.222049786002583, 48.84092591926018]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1ab55da0af77c372a4881d20a8924cf8e611f590", "fields": {"departement": "75", "stop_lat": 48.84788036114234, "code_postal": "75116", "stop_lon": 2.2517892825068784, "coord": [48.84788036114234, 2.2517892825068784], "stop_id": 4024526, "stop_desc": "3 AVENUE DE LA PORTE D'AUTEUIL - 75116", "stop_name": "FLEURISTE MUNICIPAL"}, "geometry": {"type": "Point", "coordinates": [2.2517892825068784, 48.84788036114234]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "172169e4f7ac397b6a35326c031d7b0637a3edc3", "fields": {"departement": "75", "stop_lat": 48.861342990838146, "code_postal": "75116", "stop_lon": 2.228978566967355, "coord": [48.861342990838146, 2.228978566967355], "stop_id": 4024534, "stop_desc": "ALLEE DU BORD DE L'EAU - 75116", "stop_name": "HIPPODROME DE LONGCHAMP"}, "geometry": {"type": "Point", "coordinates": [2.228978566967355, 48.861342990838146]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "31e31c08deaff172109d419fe2c1806e2efbe7c1", "fields": {"departement": "92", "stop_lat": 48.86837636340144, "code_postal": "92073", "stop_lon": 2.2249314109891505, "coord": [48.86837636340144, 2.2249314109891505], "stop_id": 4024540, "stop_desc": "38 BOULEVARD HENRI SELLIER - 92073", "stop_name": "SURESNES DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.2249314109891505, 48.86837636340144]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9af24c1c9cbe15e481358440662f610ecc5d8998", "fields": {"departement": "92", "stop_lat": 48.870577602062625, "code_postal": "92073", "stop_lon": 2.2242318293697605, "coord": [48.870577602062625, 2.2242318293697605], "stop_id": 4024543, "stop_desc": "35 AVENUE DU GENERAL DE GAULLE - 92073", "stop_name": "MAIRIE DE SURESNES"}, "geometry": {"type": "Point", "coordinates": [2.2242318293697605, 48.870577602062625]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e7a8430265fa156b71a0f997f84b99aea8a6baea", "fields": {"departement": "92", "stop_lat": 48.871940779947096, "code_postal": "92073", "stop_lon": 2.221217921872032, "coord": [48.871940779947096, 2.221217921872032], "stop_id": 4024545, "stop_desc": "AVENUE FRANKLIN ROOSEVELT - 92073", "stop_name": "GARE DU MONT VALERIEN - HOPITAL FOCH"}, "geometry": {"type": "Point", "coordinates": [2.221217921872032, 48.871940779947096]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a76ee723e9e1ac063c0311c8c7389af89ef0bd09", "fields": {"departement": "92", "stop_lat": 48.87467854081284, "code_postal": "92073", "stop_lon": 2.2178055782523347, "coord": [48.87467854081284, 2.2178055782523347], "stop_id": 4024549, "stop_desc": "BOULEVARD DE WASHINGTON - 92073", "stop_name": "MONT VALERIEN"}, "geometry": {"type": "Point", "coordinates": [2.2178055782523347, 48.87467854081284]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b1e22096738542fed71cbc1ae1e529bf99e9faaf", "fields": {"departement": "92", "stop_lat": 48.86371353049643, "code_postal": "92073", "stop_lon": 2.2087449708660327, "coord": [48.86371353049643, 2.2087449708660327], "stop_id": 4024557, "stop_desc": "23 AVENUE JEAN JAURES - 92073", "stop_name": "PLACE JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.2087449708660327, 48.86371353049643]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fb31d06a782eed1d11f3bbf8bd43c5c8c86e5766", "fields": {"departement": "92", "stop_lat": 48.86316108003911, "code_postal": "92073", "stop_lon": 2.2048913585176986, "coord": [48.86316108003911, 2.2048913585176986], "stop_id": 4024560, "stop_desc": "2 AVENUE G.STRESEMANN - 92073", "stop_name": "STRESEMANN"}, "geometry": {"type": "Point", "coordinates": [2.2048913585176986, 48.86316108003911]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a699a17be2513fa0b29790702bc6ad9f2a7abc9f", "fields": {"departement": "92", "stop_lat": 48.8630318275118, "code_postal": "92073", "stop_lon": 2.2018404031222523, "coord": [48.8630318275118, 2.2018404031222523], "stop_id": 4024562, "stop_desc": "1 PLACE DE STALINGRAD - 92073", "stop_name": "STALINGRAD"}, "geometry": {"type": "Point", "coordinates": [2.2018404031222523, 48.8630318275118]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3409ddcc25e180b87a2626f5d236004c215921ee", "fields": {"departement": "92", "stop_lat": 48.87045720657914, "code_postal": "92063", "stop_lon": 2.2034422382803878, "coord": [48.87045720657914, 2.2034422382803878], "stop_id": 4024570, "stop_desc": "FACE 38 RUE GALLIENI - 92063", "stop_name": "8 MAI 1945"}, "geometry": {"type": "Point", "coordinates": [2.2034422382803878, 48.87045720657914]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f6c5f509a855daa85e0c65ec3c966427b9c4593a", "fields": {"departement": "92", "stop_lat": 48.87051991876674, "code_postal": "92063", "stop_lon": 2.2032649673400737, "coord": [48.87051991876674, 2.2032649673400737], "stop_id": 4024571, "stop_desc": "FACE 45-47 RUE GALLIENI - 92063", "stop_name": "8 MAI 1945"}, "geometry": {"type": "Point", "coordinates": [2.2032649673400737, 48.87051991876674]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fb5edd9f584ea5d4de9d04ed35aec60baa028cec", "fields": {"departement": "92", "stop_lat": 48.87591876669899, "code_postal": "92063", "stop_lon": 2.201030107440782, "coord": [48.87591876669899, 2.201030107440782], "stop_id": 4024574, "stop_desc": "RUE GALLIENI - 92063", "stop_name": "EUGENE SUE"}, "geometry": {"type": "Point", "coordinates": [2.201030107440782, 48.87591876669899]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b4412b3a8843fb1a51b00952d256916abda3ffa4", "fields": {"departement": "92", "stop_lat": 48.878788314486506, "code_postal": "92063", "stop_lon": 2.188186920141885, "coord": [48.878788314486506, 2.188186920141885], "stop_id": 4024583, "stop_desc": "RUE DANTON - 92063", "stop_name": "LIENARD"}, "geometry": {"type": "Point", "coordinates": [2.188186920141885, 48.878788314486506]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "89aca3e3177df258ae758e939fd9dcfd9f4fccb4", "fields": {"departement": "92", "stop_lat": 48.87935136602782, "code_postal": "92063", "stop_lon": 2.1856917243126706, "coord": [48.87935136602782, 2.1856917243126706], "stop_id": 4024585, "stop_desc": "22 BIS BOULEVARD DE L'HOPITAL STELL - 92063", "stop_name": "LE GUE"}, "geometry": {"type": "Point", "coordinates": [2.1856917243126706, 48.87935136602782]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "72ca32cb55d1afde2175ccebf5c8069bbe897b43", "fields": {"departement": "92", "stop_lat": 48.884536162359126, "code_postal": "92063", "stop_lon": 2.178140575011425, "coord": [48.884536162359126, 2.178140575011425], "stop_id": 4024588, "stop_desc": "FACE 33 BI AVENUE VICTOR HUGO - 92063", "stop_name": "BAUDIN"}, "geometry": {"type": "Point", "coordinates": [2.178140575011425, 48.884536162359126]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b3484f7476276e8e850f898072d51d798e813703", "fields": {"departement": "92", "stop_lat": 48.86489624581866, "code_postal": "92073", "stop_lon": 2.205431821442203, "coord": [48.86489624581866, 2.205431821442203], "stop_id": 4024595, "stop_desc": "AVENUE JEAN JAURES - 92073", "stop_name": "PLACE DE LA PAIX"}, "geometry": {"type": "Point", "coordinates": [2.205431821442203, 48.86489624581866]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c4cb4e8eb6c524ee7fd96b8a95ce7bff9acc3ce6", "fields": {"departement": "92", "stop_lat": 48.878788314486506, "code_postal": "92063", "stop_lon": 2.188186920141885, "coord": [48.878788314486506, 2.188186920141885], "stop_id": 4024604, "stop_desc": "RUE DANTON - 92063", "stop_name": "LIENARD"}, "geometry": {"type": "Point", "coordinates": [2.188186920141885, 48.878788314486506]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7b1acabfd30e4eb48f6b42a1d613fa5746569639", "fields": {"departement": "92", "stop_lat": 48.877764661670334, "code_postal": "92063", "stop_lon": 2.1963107711420347, "coord": [48.877764661670334, 2.1963107711420347], "stop_id": 4024606, "stop_desc": "86 RUE DANTON - 92063", "stop_name": "FABRE D'EGLANTINE"}, "geometry": {"type": "Point", "coordinates": [2.1963107711420347, 48.877764661670334]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bc6df8795123357cb326daab9662014d92d11499", "fields": {"departement": "92", "stop_lat": 48.87313363911074, "code_postal": "92063", "stop_lon": 2.201854892950592, "coord": [48.87313363911074, 2.201854892950592], "stop_id": 4024609, "stop_desc": "FACE 25 RUE GALLIENI - 92063", "stop_name": "LES GERANIUMS"}, "geometry": {"type": "Point", "coordinates": [2.201854892950592, 48.87313363911074]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "400304c959fa693cbbda130c3376a19755c67209", "fields": {"departement": "92", "stop_lat": 48.87051991876674, "code_postal": "92063", "stop_lon": 2.2032649673400737, "coord": [48.87051991876674, 2.2032649673400737], "stop_id": 4024610, "stop_desc": "FACE 45-47 RUE GALLIENI - 92063", "stop_name": "8 MAI 1945"}, "geometry": {"type": "Point", "coordinates": [2.2032649673400737, 48.87051991876674]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1666e941666bc5eb973d547bb338f41b7c12d193", "fields": {"departement": "92", "stop_lat": 48.862603086716696, "code_postal": "92063", "stop_lon": 2.1963792217488365, "coord": [48.862603086716696, 2.1963792217488365], "stop_id": 4024613, "stop_desc": "FACE 71-73 RUE DU LIEUTENANT COLONEL DE MONTBRISON - 92063", "stop_name": "LES MAZURIERES"}, "geometry": {"type": "Point", "coordinates": [2.1963792217488365, 48.862603086716696]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2f6ad1182680887be9a44c9a3d6c80ad96de7640", "fields": {"departement": "92", "stop_lat": 48.88566422032724, "code_postal": "92050", "stop_lon": 2.2210781787603233, "coord": [48.88566422032724, 2.2210781787603233], "stop_id": 4024678, "stop_desc": "FACE 308 AVENUE GEORGES CLEMENCEAU - 92050", "stop_name": "CRAIOVA"}, "geometry": {"type": "Point", "coordinates": [2.2210781787603233, 48.88566422032724]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "410dc467a52fe13cefb4e0bdd7d78c1b3ef5013a", "fields": {"departement": "92", "stop_lat": 48.886684248614685, "code_postal": "92050", "stop_lon": 2.2079657352696955, "coord": [48.886684248614685, 2.2079657352696955], "stop_id": 4024683, "stop_desc": "119 AVENUE GEORGES CLEMENCEAU - 92050", "stop_name": "CLEMENCEAU - SADI CARNOT"}, "geometry": {"type": "Point", "coordinates": [2.2079657352696955, 48.886684248614685]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a765c95cca3aa21a0b2dd8e29895c8bd8af432a1", "fields": {"departement": "92", "stop_lat": 48.886782393482804, "code_postal": "92050", "stop_lon": 2.199311678106991, "coord": [48.886782393482804, 2.199311678106991], "stop_id": 4024689, "stop_desc": "8 AVENUE DU MARECHAL JOFFRE - 92050", "stop_name": "PLACE DE LA BOULE - JOFFRE"}, "geometry": {"type": "Point", "coordinates": [2.199311678106991, 48.886782393482804]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0270763f3cfa5d7637897529ce1c6c350401a713", "fields": {"departement": "92", "stop_lat": 48.88387910264952, "code_postal": "92063", "stop_lon": 2.191415575852575, "coord": [48.88387910264952, 2.191415575852575], "stop_id": 4024692, "stop_desc": "10 AVENUE PAUL DOUMER - 92063", "stop_name": "BOULEVARD NATIONAL"}, "geometry": {"type": "Point", "coordinates": [2.191415575852575, 48.88387910264952]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "505ca11c5e84f46c89fda8404f53424b6c223b67", "fields": {"departement": "92", "stop_lat": 48.872823153703756, "code_postal": "92063", "stop_lon": 2.163434928116744, "coord": [48.872823153703756, 2.163434928116744], "stop_id": 4024703, "stop_desc": "292-294 AVENUE NAPOLEON BONAPARTE - 92063", "stop_name": "ECOLE LA MALMAISON"}, "geometry": {"type": "Point", "coordinates": [2.163434928116744, 48.872823153703756]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4622b3f78c0a0b617777c640e63b6b4aa3b9014f", "fields": {"departement": "78", "stop_lat": 48.867705595836526, "code_postal": "78092", "stop_lon": 2.138072330151515, "coord": [48.867705595836526, 2.138072330151515], "stop_id": 4024712, "stop_desc": "QUAI BOISSY D'ANGLAS - 78092", "stop_name": "PONT DE BOUGIVAL"}, "geometry": {"type": "Point", "coordinates": [2.138072330151515, 48.867705595836526]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d80ea6b0e02c882c73bdcea6b59bd3ae24597cd2", "fields": {"departement": "78", "stop_lat": 48.86776253283614, "code_postal": "78092", "stop_lon": 2.1345301114685196, "coord": [48.86776253283614, 2.1345301114685196], "stop_id": 4024715, "stop_desc": "38-42 QUAI BOISSY D'ANGLAS - 78092", "stop_name": "LA PASSERELLE"}, "geometry": {"type": "Point", "coordinates": [2.1345301114685196, 48.86776253283614]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "deb68304511077b83f460e1c15409a10530b2883", "fields": {"departement": "78", "stop_lat": 48.87413539327091, "code_postal": "78350", "stop_lon": 2.119708708465882, "coord": [48.87413539327091, 2.119708708465882], "stop_id": 4024718, "stop_desc": "FACE 9 QUAI CONTI - 78350", "stop_name": "PAVILLON HALEVY"}, "geometry": {"type": "Point", "coordinates": [2.119708708465882, 48.87413539327091]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3e04b98fcd4a858e11d42a5f84627f64548cb394", "fields": {"departement": "78", "stop_lat": 48.87735522253001, "code_postal": "78502", "stop_lon": 2.1161116628632852, "coord": [48.87735522253001, 2.1161116628632852], "stop_id": 4024720, "stop_desc": "FACE 1 AVENUE SIMON VOUET - 78502", "stop_name": "BAS PRUNAY"}, "geometry": {"type": "Point", "coordinates": [2.1161116628632852, 48.87735522253001]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e4e7736dfdc2307973b3f7d775ef342103de3d3a", "fields": {"departement": "78", "stop_lat": 48.88935693262241, "code_postal": "78481", "stop_lon": 2.099365217138703, "coord": [48.88935693262241, 2.099365217138703], "stop_id": 4024727, "stop_desc": "46 AVENUE DU GENERAL LECLERC - 78481", "stop_name": "ALEXANDRE BERTRAND"}, "geometry": {"type": "Point", "coordinates": [2.099365217138703, 48.88935693262241]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "82ab21623c78339ad118873062323131c1febc37", "fields": {"departement": "78", "stop_lat": 48.89617666257727, "code_postal": "78551", "stop_lon": 2.098584230841915, "coord": [48.89617666257727, 2.098584230841915], "stop_id": 4024729, "stop_desc": "4 AVENUE GAMBETTA - 78551", "stop_name": "PLACE ROYALE"}, "geometry": {"type": "Point", "coordinates": [2.098584230841915, 48.89617666257727]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b1d95e5ab6f8c6d26c893c6cf709dd9c2ad94250", "fields": {"departement": "78", "stop_lat": 48.89703299526433, "code_postal": "78551", "stop_lon": 2.095390681983472, "coord": [48.89703299526433, 2.095390681983472], "stop_id": 4024732, "stop_desc": "FACE 2 PLACE ANDRE MALRAUX - 78551", "stop_name": "SAINT-GERMAIN-EN-LAYE RER"}, "geometry": {"type": "Point", "coordinates": [2.095390681983472, 48.89703299526433]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "02a41d0f79d256e7838d16fc9cfb3540102ad073", "fields": {"departement": "92", "stop_lat": 48.88567096716327, "code_postal": "92062", "stop_lon": 2.228219106244475, "coord": [48.88567096716327, 2.228219106244475], "stop_id": 4024740, "stop_desc": "106-108 AVENUE DU GENERAL DE GAULLE - 92062", "stop_name": "LES BERGERES"}, "geometry": {"type": "Point", "coordinates": [2.228219106244475, 48.88567096716327]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "108e734899e930c1a09078802fcf22d3607d7e22", "fields": {"departement": "92", "stop_lat": 48.88566422032724, "code_postal": "92050", "stop_lon": 2.2210781787603233, "coord": [48.88566422032724, 2.2210781787603233], "stop_id": 4024741, "stop_desc": "FACE 308 AVENUE GEORGES CLEMENCEAU - 92050", "stop_name": "CRAIOVA"}, "geometry": {"type": "Point", "coordinates": [2.2210781787603233, 48.88566422032724]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f48f64ff63a37c5b5fa30dccdb83b43df893fc1d", "fields": {"departement": "92", "stop_lat": 48.87798913829876, "code_postal": "92063", "stop_lon": 2.17495861831514, "coord": [48.87798913829876, 2.17495861831514], "stop_id": 4024752, "stop_desc": "212 AVENUE PAUL DOUMER - 92063", "stop_name": "DANIELLE CASANOVA"}, "geometry": {"type": "Point", "coordinates": [2.17495861831514, 48.87798913829876]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fc0a39aa6e4751c76f2dded90099e91814c803e6", "fields": {"departement": "92", "stop_lat": 48.8771682333074, "code_postal": "92063", "stop_lon": 2.172726600700979, "coord": [48.8771682333074, 2.172726600700979], "stop_id": 4024753, "stop_desc": "230 AVENUE NAPOLEON BONAPARTE - 92063", "stop_name": "BOIS PREAU"}, "geometry": {"type": "Point", "coordinates": [2.172726600700979, 48.8771682333074]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "907fbcf4b250a5a0d623ed5149ab8d1a1844f9c0", "fields": {"departement": "92", "stop_lat": 48.88703095931309, "code_postal": "92050", "stop_lon": 2.2045169572232255, "coord": [48.88703095931309, 2.2045169572232255], "stop_id": 4024773, "stop_desc": "FACE 48 AVENUE GEORGES CLEMENCEAU - 92050", "stop_name": "LA SOURCE"}, "geometry": {"type": "Point", "coordinates": [2.2045169572232255, 48.88703095931309]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fd32dbbe47e97a54f41777f0038a8f249c85d63e", "fields": {"departement": "92", "stop_lat": 48.88726100109216, "code_postal": "92050", "stop_lon": 2.2013001183399865, "coord": [48.88726100109216, 2.2013001183399865], "stop_id": 4024775, "stop_desc": "1 AVENUE GEORGES CLEMENCEAU - 92050", "stop_name": "PLACE DE LA BOULE - CLEMENCEAU"}, "geometry": {"type": "Point", "coordinates": [2.2013001183399865, 48.88726100109216]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f21cef2b1c09bdadceb27840018adc1992991697", "fields": {"departement": "78", "stop_lat": 48.89460216928469, "code_postal": "78551", "stop_lon": 2.097719152283792, "coord": [48.89460216928469, 2.097719152283792], "stop_id": 4024778, "stop_desc": "84-92 RUE DU MARECHAL LYAUTEY - 78551", "stop_name": "PLACE ROYALE"}, "geometry": {"type": "Point", "coordinates": [2.097719152283792, 48.89460216928469]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1573e45baa9fd9c719e898ea63cbc8d8fa46a6e9", "fields": {"departement": "78", "stop_lat": 48.88936469415523, "code_postal": "78551", "stop_lon": 2.098751886744399, "coord": [48.88936469415523, 2.098751886744399], "stop_id": 4024779, "stop_desc": "10 AVENUE DU GENERAL LECLERC - 78551", "stop_name": "ALEXANDRE BERTRAND"}, "geometry": {"type": "Point", "coordinates": [2.098751886744399, 48.88936469415523]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6da9b57a23cc3a58f9ff5f15506c57261ede0b64", "fields": {"departement": "78", "stop_lat": 48.88675939831912, "code_postal": "78481", "stop_lon": 2.099254485848873, "coord": [48.88675939831912, 2.099254485848873], "stop_id": 4024780, "stop_desc": "5 AVENUE DU GENERAL LECLERC - 78481", "stop_name": "L'ERMITAGE"}, "geometry": {"type": "Point", "coordinates": [2.099254485848873, 48.88675939831912]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5d69368aec69fd16eb569a9e4726f34d28090e8f", "fields": {"departement": "78", "stop_lat": 48.876798417578975, "code_postal": "78350", "stop_lon": 2.1163320453358043, "coord": [48.876798417578975, 2.1163320453358043], "stop_id": 4024783, "stop_desc": "1 QUAI CONTI - 78350", "stop_name": "BAS PRUNAY"}, "geometry": {"type": "Point", "coordinates": [2.1163320453358043, 48.876798417578975]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bea784774815887c396e70d417bf2c531ecc13e2", "fields": {"departement": "78", "stop_lat": 48.8716080062984, "code_postal": "78092", "stop_lon": 2.123602179576486, "coord": [48.8716080062984, 2.123602179576486], "stop_id": 4024785, "stop_desc": "14 QU RENNEQUIN SUALEM - 78092", "stop_name": "LA MACHINE"}, "geometry": {"type": "Point", "coordinates": [2.123602179576486, 48.8716080062984]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "48fc3de89be6b9cda936e7cc46ef511359d25ec2", "fields": {"departement": "78", "stop_lat": 48.86793504752743, "code_postal": "78092", "stop_lon": 2.146476913515293, "coord": [48.86793504752743, 2.146476913515293], "stop_id": 4024788, "stop_desc": "16 RUE YVAN TOURGUENIEV - 78092", "stop_name": "LA CHAUSSEE - MUSEE TOURGUENIEV"}, "geometry": {"type": "Point", "coordinates": [2.146476913515293, 48.86793504752743]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "60332fb026a4809760f42b1f67e789689b6541e7", "fields": {"departement": "92", "stop_lat": 48.891449870576835, "code_postal": "92062", "stop_lon": 2.2386878577678613, "coord": [48.891449870576835, 2.2386878577678613], "stop_id": 4024791, "stop_desc": "PISTE GARE ROUTIERE - 92062", "stop_name": "LA DEFENSE-METRO-RER-TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.2386878577678613, 48.891449870576835]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7fd727627b5ffc1e067f00757590c3aa07bf939c", "fields": {"departement": "92", "stop_lat": 48.89730498221079, "code_postal": "92026", "stop_lon": 2.256587602249458, "coord": [48.89730498221079, 2.256587602249458], "stop_id": 4024798, "stop_desc": "14-16 RUE DE COLOMBES - 92026", "stop_name": "HEROLD - MAIRIE DE COURBEVOIE"}, "geometry": {"type": "Point", "coordinates": [2.256587602249458, 48.89730498221079]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "39036847cf29c77d5bbc20b10b3406f1bb33def6", "fields": {"departement": "92", "stop_lat": 48.899274049222974, "code_postal": "92026", "stop_lon": 2.2579067754612288, "coord": [48.899274049222974, 2.2579067754612288], "stop_id": 4024800, "stop_desc": "22 BOULEVARD ARISTIDE BRIAND - 92026", "stop_name": "STADE DE COURBEVOIE"}, "geometry": {"type": "Point", "coordinates": [2.2579067754612288, 48.899274049222974]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "52307f7ca3f2788722e9ab0a011de776b212ff13", "fields": {"departement": "92", "stop_lat": 48.90026416008041, "code_postal": "92026", "stop_lon": 2.2602362601770274, "coord": [48.90026416008041, 2.2602362601770274], "stop_id": 4024803, "stop_desc": "15 BOULEVARD ARISTIDE BRIAND - 92026", "stop_name": "PAIX - VERDUN"}, "geometry": {"type": "Point", "coordinates": [2.2602362601770274, 48.90026416008041]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "692362146427514118fa373c228abbf5c2197b14", "fields": {"departement": "92", "stop_lat": 48.902797800336785, "code_postal": "92026", "stop_lon": 2.2743146074061666, "coord": [48.902797800336785, 2.2743146074061666], "stop_id": 4024809, "stop_desc": "2 BOULEVARD GEORGES CLEMENCEAU - 92026", "stop_name": "PLACE MERMOZ"}, "geometry": {"type": "Point", "coordinates": [2.2743146074061666, 48.902797800336785]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2887c1c25f2b0ff6c3a106f40f02fd0e757638ba", "fields": {"departement": "92", "stop_lat": 48.896472832917475, "code_postal": "92044", "stop_lon": 2.278152483179007, "coord": [48.896472832917475, 2.278152483179007], "stop_id": 4024812, "stop_desc": "FACE 143 RUE DANTON - 92044", "stop_name": "POMPIDOU"}, "geometry": {"type": "Point", "coordinates": [2.278152483179007, 48.896472832917475]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "358aa3e855661d8860d93c6d878930d46659efb7", "fields": {"departement": "92", "stop_lat": 48.89192062226174, "code_postal": "92026", "stop_lon": 2.2429120742176076, "coord": [48.89192062226174, 2.2429120742176076], "stop_id": 4024813, "stop_desc": "AVENUE ALBERT GLEIZES - 92026", "stop_name": "GAMBETTA"}, "geometry": {"type": "Point", "coordinates": [2.2429120742176076, 48.89192062226174]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0b322ab422c990ba0a2b1fe77ffbfc2b826d8055", "fields": {"departement": "92", "stop_lat": 48.891449870576835, "code_postal": "92062", "stop_lon": 2.2386878577678613, "coord": [48.891449870576835, 2.2386878577678613], "stop_id": 4024814, "stop_desc": "PISTE GARE ROUTIERE - 92062", "stop_name": "LA DEFENSE-METRO-RER-TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.2386878577678613, 48.891449870576835]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8a514cbacb5c8c736c565cbff7e3da88ae031320", "fields": {"departement": "92", "stop_lat": 48.895287505785355, "code_postal": "92026", "stop_lon": 2.2503889671181168, "coord": [48.895287505785355, 2.2503889671181168], "stop_id": 4024816, "stop_desc": "FACE 5 RUE BAUDIN - 92026", "stop_name": "PLACE CHARRAS"}, "geometry": {"type": "Point", "coordinates": [2.2503889671181168, 48.895287505785355]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b3eaa26f65f32c43647aac29d2879428f179bdd8", "fields": {"departement": "92", "stop_lat": 48.891449870576835, "code_postal": "92062", "stop_lon": 2.2386878577678613, "coord": [48.891449870576835, 2.2386878577678613], "stop_id": 4024820, "stop_desc": "PISTE GARE ROUTIERE - 92062", "stop_name": "LA DEFENSE-METRO-RER-TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.2386878577678613, 48.891449870576835]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "29bff2a8679060d40710266d6a9fcb72c74df45a", "fields": {"departement": "92", "stop_lat": 48.89160141473085, "code_postal": "92062", "stop_lon": 2.2372019748450263, "coord": [48.89160141473085, 2.2372019748450263], "stop_id": 4024821, "stop_desc": "PISTE GARE ROUTIERE - 92062", "stop_name": "LA DEFENSE-METRO-RER-TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.2372019748450263, 48.89160141473085]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "904869a446efaaf5203e416a6b22154ddfd4722a", "fields": {"departement": "92", "stop_lat": 48.89320029487814, "code_postal": "92026", "stop_lon": 2.247434814567136, "coord": [48.89320029487814, 2.247434814567136], "stop_id": 4024822, "stop_desc": "44 AV GAMBETTA - 92026", "stop_name": "CARNOT"}, "geometry": {"type": "Point", "coordinates": [2.247434814567136, 48.89320029487814]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a1b882ecb1b7cf8e2d4c284f7feee30888c75d5c", "fields": {"departement": "92", "stop_lat": 48.89490027911459, "code_postal": "92026", "stop_lon": 2.2493264625537774, "coord": [48.89490027911459, 2.2493264625537774], "stop_id": 4024824, "stop_desc": "6 PLACE CHARRAS - 92026", "stop_name": "PLACE CHARRAS"}, "geometry": {"type": "Point", "coordinates": [2.2493264625537774, 48.89490027911459]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b092d7a2b0b53f1d6501a94a9d85095c983bf9e0", "fields": {"departement": "92", "stop_lat": 48.89713404196785, "code_postal": "92026", "stop_lon": 2.256315253118939, "coord": [48.89713404196785, 2.256315253118939], "stop_id": 4024828, "stop_desc": "1-3 PLACE HEROLD - 92026", "stop_name": "HEROLD - MAIRIE DE COURBEVOIE"}, "geometry": {"type": "Point", "coordinates": [2.256315253118939, 48.89713404196785]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8a2a91160659d29c33dc7ed52fb547e73fe0f413", "fields": {"departement": "92", "stop_lat": 48.902222414608794, "code_postal": "92026", "stop_lon": 2.2588019791733935, "coord": [48.902222414608794, 2.2588019791733935], "stop_id": 4024834, "stop_desc": "BOULEVARD DE VERDUN - 92026", "stop_name": "VERDUN - RUE LATERALE"}, "geometry": {"type": "Point", "coordinates": [2.2588019791733935, 48.902222414608794]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f6fc8cf03a04a95098d2279c953672bc3047a434", "fields": {"departement": "92", "stop_lat": 48.90497983666463, "code_postal": "92026", "stop_lon": 2.256384794199449, "coord": [48.90497983666463, 2.256384794199449], "stop_id": 4024835, "stop_desc": "FACE 153 BOULEVARD DE VERDUN - 92026", "stop_name": "EUROPE"}, "geometry": {"type": "Point", "coordinates": [2.256384794199449, 48.90497983666463]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5735be9c7a34f3fdbcca4150735c7f06b2ec1b40", "fields": {"departement": "92", "stop_lat": 48.90616957410082, "code_postal": "92026", "stop_lon": 2.2616316951512183, "coord": [48.90616957410082, 2.2616316951512183], "stop_id": 4024837, "stop_desc": "FACE 14 RUE DES MINIMES - 92026", "stop_name": "MOULIN DES BRUYERES"}, "geometry": {"type": "Point", "coordinates": [2.2616316951512183, 48.90616957410082]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6325e5519fb87d02756192cf398c6f0cb701d9bc", "fields": {"departement": "92", "stop_lat": 48.905928596511075, "code_postal": "92009", "stop_lon": 2.264317762303109, "coord": [48.905928596511075, 2.264317762303109], "stop_id": 4024839, "stop_desc": "RUE RAOUL NORDLING - 92009", "stop_name": "LES BRUYERES"}, "geometry": {"type": "Point", "coordinates": [2.264317762303109, 48.905928596511075]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "173780c0922fdbe49bcb23c5f636ea9955c62e65", "fields": {"departement": "93", "stop_lat": 48.915727952042886, "code_postal": "93070", "stop_lon": 2.323059975011171, "coord": [48.915727952042886, 2.323059975011171], "stop_id": 5710019, "stop_desc": "RUE DES BATELIERS - 93070", "stop_name": "QUAI DE SEINE"}, "geometry": {"type": "Point", "coordinates": [2.323059975011171, 48.915727952042886]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "55d4c14ca0ee34eee11362ac802dfbbe093925ad", "fields": {"departement": "75", "stop_lat": 48.89014225050806, "code_postal": "75118", "stop_lon": 2.345650093872668, "coord": [48.89014225050806, 2.345650093872668], "stop_id": 5710020, "stop_desc": "59 RUE RAMEY - 75118", "stop_name": "MARCADET"}, "geometry": {"type": "Point", "coordinates": [2.345650093872668, 48.89014225050806]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7ea39dceb2ecef32330b34c4a1bb99b6e4a8db6c", "fields": {"departement": "75", "stop_lat": 48.88409354700711, "code_postal": "75118", "stop_lon": 2.349287609746963, "coord": [48.88409354700711, 2.349287609746963], "stop_id": 5710022, "stop_desc": "5 BOULEVARD BARBES - 75118", "stop_name": "BARBES - ROCHECHOUART"}, "geometry": {"type": "Point", "coordinates": [2.349287609746963, 48.88409354700711]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "adf88382446439cd087b1b19321397606c3a40ff", "fields": {"departement": "75", "stop_lat": 48.88108322962439, "code_postal": "75109", "stop_lon": 2.3441360813294616, "coord": [48.88108322962439, 2.3441360813294616], "stop_id": 5710024, "stop_desc": "FACE 74 RUE RODIER - 75109", "stop_name": "TRUDAINE"}, "geometry": {"type": "Point", "coordinates": [2.3441360813294616, 48.88108322962439]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "275805cf8a15742d3ccbb6a96738435a8da43783", "fields": {"departement": "75", "stop_lat": 48.84978931329091, "code_postal": "75106", "stop_lon": 2.342102800318699, "coord": [48.84978931329091, 2.342102800318699], "stop_id": 5710033, "stop_desc": "38 BOULEVARD SAINT-MICHEL - 75106", "stop_name": "LES ECOLES"}, "geometry": {"type": "Point", "coordinates": [2.342102800318699, 48.84978931329091]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5edf728d4796fb4eff15b28de92223100940316c", "fields": {"departement": "75", "stop_lat": 48.86336033166581, "code_postal": "75101", "stop_lon": 2.3422402882400415, "coord": [48.86336033166581, 2.3422402882400415], "stop_id": 5710041, "stop_desc": "42 RUE DU LOUVRE - 75101", "stop_name": "COQUILLIERE - LES HALLES"}, "geometry": {"type": "Point", "coordinates": [2.3422402882400415, 48.86336033166581]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7bb9e2832fa0b9fe12541caa5b54c1d4bc0bb47c", "fields": {"departement": "75", "stop_lat": 48.86862686808374, "code_postal": "75102", "stop_lon": 2.343494134664324, "coord": [48.86862686808374, 2.343494134664324], "stop_id": 5710044, "stop_desc": "140 RUE MONTMARTRE - 75102", "stop_name": "REAUMUR - MONTMARTRE"}, "geometry": {"type": "Point", "coordinates": [2.343494134664324, 48.86862686808374]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5d9a53958ea89a4d9c1aaf7c8903495e8ddf5f9a", "fields": {"departement": "75", "stop_lat": 48.88031017660248, "code_postal": "75109", "stop_lon": 2.346357070489225, "coord": [48.88031017660248, 2.346357070489225], "stop_id": 5710050, "stop_desc": "62-64 RUE ROCHECHOUART - 75109", "stop_name": "CONDORCET-TRUDAINE"}, "geometry": {"type": "Point", "coordinates": [2.346357070489225, 48.88031017660248]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e18243c060d7e4ca557dc4f9d85df84858faa5e4", "fields": {"departement": "75", "stop_lat": 48.88752679919355, "code_postal": "75118", "stop_lon": 2.347871071223989, "coord": [48.88752679919355, 2.347871071223989], "stop_id": 5710052, "stop_desc": "46-48 R DE CLIGNANCOURT - 75118", "stop_name": "MULLER"}, "geometry": {"type": "Point", "coordinates": [2.347871071223989, 48.88752679919355]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "248b0b1efaf6ee2ed72a8b8f101877729a034ff8", "fields": {"departement": "75", "stop_lat": 48.8866640640046, "code_postal": "75118", "stop_lon": 2.347448426484339, "coord": [48.8866640640046, 2.347448426484339], "stop_id": 5710053, "stop_desc": "49 RUE DE CLIGNANCOURT - 75118", "stop_name": "MULLER"}, "geometry": {"type": "Point", "coordinates": [2.347448426484339, 48.8866640640046]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d5738ee1c8e07344e24bce23a5ea8aaa511df233", "fields": {"departement": "75", "stop_lat": 48.892892360969476, "code_postal": "75118", "stop_lon": 2.345146242815116, "coord": [48.892892360969476, 2.345146242815116], "stop_id": 5710057, "stop_desc": "FACE 32 RUE HERMEL - 75118", "stop_name": "MAIRIE DU 18E - JULES JOFFRIN"}, "geometry": {"type": "Point", "coordinates": [2.345146242815116, 48.892892360969476]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "012c8e5033cba73409e0db70f19cbbc65d23de52", "fields": {"departement": "75", "stop_lat": 48.897062389876794, "code_postal": "75118", "stop_lon": 2.3452831852737237, "coord": [48.897062389876794, 2.3452831852737237], "stop_id": 5710060, "stop_desc": "80 BOULEVARD ORNANO - 75118", "stop_name": "PORTE DE CLIGNANCOURT"}, "geometry": {"type": "Point", "coordinates": [2.3452831852737237, 48.897062389876794]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bbb38728ff0be9268f45ec263d0d9b0b2c670184", "fields": {"departement": "75", "stop_lat": 48.89726014402725, "code_postal": "75118", "stop_lon": 2.3447107228641832, "coord": [48.89726014402725, 2.3447107228641832], "stop_id": 5710061, "stop_desc": "75 BIS BOULEVARD ORNANO - 75118", "stop_name": "PORTE DE CLIGNANCOURT"}, "geometry": {"type": "Point", "coordinates": [2.3447107228641832, 48.89726014402725]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "68d822072333fbda3f19541254eb33d1dff5ba24", "fields": {"departement": "93", "stop_lat": 48.90558243403919, "code_postal": "93070", "stop_lon": 2.3368320603520347, "coord": [48.90558243403919, 2.3368320603520347], "stop_id": 5710068, "stop_desc": "FACE 58 RUE DES ROSIERS - 93070", "stop_name": "EUGENE LUMEAU - LES ECOLES"}, "geometry": {"type": "Point", "coordinates": [2.3368320603520347, 48.90558243403919]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d6eac7cd0c5d78d84a2ba1a73ca6f7c3254637bf", "fields": {"departement": "75", "stop_lat": 48.89014225050806, "code_postal": "75118", "stop_lon": 2.345650093872668, "coord": [48.89014225050806, 2.345650093872668], "stop_id": 5710078, "stop_desc": "59 RUE RAMEY - 75118", "stop_name": "MARCADET"}, "geometry": {"type": "Point", "coordinates": [2.345650093872668, 48.89014225050806]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d35c607a59e1a811d4040214c915f728df11764c", "fields": {"departement": "75", "stop_lat": 48.88108322962439, "code_postal": "75109", "stop_lon": 2.3441360813294616, "coord": [48.88108322962439, 2.3441360813294616], "stop_id": 5710082, "stop_desc": "FACE 74 RUE RODIER - 75109", "stop_name": "TRUDAINE"}, "geometry": {"type": "Point", "coordinates": [2.3441360813294616, 48.88108322962439]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "51790f5bdaf677ad76b8fa20ebcc7c21b9d27339", "fields": {"departement": "75", "stop_lat": 48.8645556407801, "code_postal": "75101", "stop_lon": 2.3425264691880536, "coord": [48.8645556407801, 2.3425264691880536], "stop_id": 5710089, "stop_desc": "19 RUE DU LOUVRE - 75101", "stop_name": "LOUVRE - ETIENNE MARCEL"}, "geometry": {"type": "Point", "coordinates": [2.3425264691880536, 48.8645556407801]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9d193b522a7c71a56443c576deed09a3ec5091b2", "fields": {"departement": "93", "stop_lat": 48.90557324013011, "code_postal": "93070", "stop_lon": 2.3442892971129066, "coord": [48.90557324013011, 2.3442892971129066], "stop_id": 5726231, "stop_desc": "89-91 AVENUE MICHELET - 93070", "stop_name": "MICHELET - DOCTEUR BAUER"}, "geometry": {"type": "Point", "coordinates": [2.3442892971129066, 48.90557324013011]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "095b1a7b81623a0fca33635cf79ff50ee8839be4", "fields": {"departement": "93", "stop_lat": 48.904935139753796, "code_postal": "93070", "stop_lon": 2.3445891321991073, "coord": [48.904935139753796, 2.3445891321991073], "stop_id": 5726232, "stop_desc": "114 RUE DU DOCTEUR BAUER - 93070", "stop_name": "MICHELET - DOCTEUR BAUER"}, "geometry": {"type": "Point", "coordinates": [2.3445891321991073, 48.904935139753796]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9a92dc5a460663abefe8888b5c34099d5a7b0974", "fields": {"departement": "93", "stop_lat": 48.9251643028832, "code_postal": "93066", "stop_lon": 2.3510973855469373, "coord": [48.9251643028832, 2.3510973855469373], "stop_id": 5726242, "stop_desc": "143-147 RUE JULES SAULNIER - 93066", "stop_name": "LA PLAINE SAULNIER"}, "geometry": {"type": "Point", "coordinates": [2.3510973855469373, 48.9251643028832]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6d41014a3bd247c82997c29a0a100907c51871ed", "fields": {"departement": "93", "stop_lat": 48.9255954220962, "code_postal": "93066", "stop_lon": 2.3531295991868415, "coord": [48.9255954220962, 2.3531295991868415], "stop_id": 5726243, "stop_desc": "RUE JULES SAULNIER - 93066", "stop_name": "LA PLAINE SAULNIER"}, "geometry": {"type": "Point", "coordinates": [2.3531295991868415, 48.9255954220962]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2a7d6ef1bffb95179b01680060b14ff78eeaabf9", "fields": {"departement": "93", "stop_lat": 48.938957637647704, "code_postal": "93066", "stop_lon": 2.3607867257554176, "coord": [48.938957637647704, 2.3607867257554176], "stop_id": 5726256, "stop_desc": "27 BOULEVARD FELIX FAURE - 93066", "stop_name": "CITE LANGEVIN"}, "geometry": {"type": "Point", "coordinates": [2.3607867257554176, 48.938957637647704]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e9ea2d071cd1a79c01a903192549a413bd4e4ead", "fields": {"departement": "93", "stop_lat": 48.945211975397044, "code_postal": "93066", "stop_lon": 2.363081661891284, "coord": [48.945211975397044, 2.363081661891284], "stop_id": 5726259, "stop_desc": "AV DE STALINGRAD - 93066", "stop_name": "SAINT-DENIS - UNIVERSITE"}, "geometry": {"type": "Point", "coordinates": [2.363081661891284, 48.945211975397044]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "08984143af873ba06e69bef545e075c840abcb44", "fields": {"departement": "93", "stop_lat": 48.945795718542726, "code_postal": "93066", "stop_lon": 2.364855616722871, "coord": [48.945795718542726, 2.364855616722871], "stop_id": 5726260, "stop_desc": "AVENUE DE STALINGRAD - 93066", "stop_name": "SAINT-DENIS - UNIVERSITE"}, "geometry": {"type": "Point", "coordinates": [2.364855616722871, 48.945795718542726]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fd894411b73a0fb00481907c14b906ff96298130", "fields": {"departement": "93", "stop_lat": 48.94675570516098, "code_postal": "93066", "stop_lon": 2.371064066428182, "coord": [48.94675570516098, 2.371064066428182], "stop_id": 5726261, "stop_desc": "80-82 AVENUE DE STALINGRAD - 93066", "stop_name": "HENRI BARBUSSE"}, "geometry": {"type": "Point", "coordinates": [2.371064066428182, 48.94675570516098]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f9599bdad02e4b52fbb42dcac7512722a2d2fa12", "fields": {"departement": "93", "stop_lat": 48.946935432672504, "code_postal": "93066", "stop_lon": 2.371091471538473, "coord": [48.946935432672504, 2.371091471538473], "stop_id": 5726262, "stop_desc": "FACE 82 AVENUE DE STALINGRAD - 93066", "stop_name": "HENRI BARBUSSE"}, "geometry": {"type": "Point", "coordinates": [2.371091471538473, 48.946935432672504]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "332ab138d3cdef4d718f78373907ed9fa34e1760", "fields": {"departement": "93", "stop_lat": 48.947850246865144, "code_postal": "93072", "stop_lon": 2.3770409007672946, "coord": [48.947850246865144, 2.3770409007672946], "stop_id": 5726263, "stop_desc": "FACE 7-13 AVENUE DE STALINGRAD - 93072", "stop_name": "CLOS HANOT"}, "geometry": {"type": "Point", "coordinates": [2.3770409007672946, 48.947850246865144]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "528dbb03e0c3d1fc908e86eaf77f93c478065b3e", "fields": {"departement": "93", "stop_lat": 48.94804802350731, "code_postal": "93072", "stop_lon": 2.37683639035497, "coord": [48.94804802350731, 2.37683639035497], "stop_id": 5726264, "stop_desc": "5 AVENUE DE STALINGRAD - 93072", "stop_name": "CLOS HANOT"}, "geometry": {"type": "Point", "coordinates": [2.37683639035497, 48.94804802350731]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8891a96430b29326e7167e98ddbcbad64a6110fc", "fields": {"departement": "93", "stop_lat": 48.94853198465507, "code_postal": "93072", "stop_lon": 2.3806435168972673, "coord": [48.94853198465507, 2.3806435168972673], "stop_id": 5726265, "stop_desc": "66 AVENUE DE STALINGRAD - 93072", "stop_name": "PAUL VAILLANT-COUTURIER"}, "geometry": {"type": "Point", "coordinates": [2.3806435168972673, 48.94853198465507]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "163ca0a5ea55c23fe4b2c6294bc82545e09152e8", "fields": {"departement": "93", "stop_lat": 48.94885537305914, "code_postal": "93072", "stop_lon": 2.3810121860421063, "coord": [48.94885537305914, 2.3810121860421063], "stop_id": 5726266, "stop_desc": "55 AVENUE DE STALINGRAD - 93072", "stop_name": "PAUL VAILLANT-COUTURIER"}, "geometry": {"type": "Point", "coordinates": [2.3810121860421063, 48.94885537305914]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "22cc32d164f13b644629fbaa91beeee110599225", "fields": {"departement": "93", "stop_lat": 48.960097426554526, "code_postal": "93072", "stop_lon": 2.38186782564374, "coord": [48.960097426554526, 2.38186782564374], "stop_id": 5726274, "stop_desc": "47 AVENUE MARCEL CACHIN - 93072", "stop_name": "LES PAROUZETS"}, "geometry": {"type": "Point", "coordinates": [2.38186782564374, 48.960097426554526]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "741c12e0126c7e354800eff2e2f722d6b39aeca7", "fields": {"departement": "93", "stop_lat": 48.96432742015381, "code_postal": "93072", "stop_lon": 2.388627456697834, "coord": [48.96432742015381, 2.388627456697834], "stop_id": 5726276, "stop_desc": "FACE 83 AVENUE JULES GUESDE - 93072", "stop_name": "L'AVENIR"}, "geometry": {"type": "Point", "coordinates": [2.388627456697834, 48.96432742015381]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0aee136772cc4a6b797c1359dcdd4e54ffbed30f", "fields": {"departement": "95", "stop_lat": 48.96847890396483, "code_postal": "95268", "stop_lon": 2.3893959528689592, "coord": [48.96847890396483, 2.3893959528689592], "stop_id": 5726278, "stop_desc": "26 AVENUE PIERRE SEMARD - 95268", "stop_name": "ROND-POINT DE LA LUTECE"}, "geometry": {"type": "Point", "coordinates": [2.3893959528689592, 48.96847890396483]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8e24ca1b27c595da4448690ea6fb0928a2c00431", "fields": {"departement": "93", "stop_lat": 48.962057259865865, "code_postal": "93072", "stop_lon": 2.3798359847502955, "coord": [48.962057259865865, 2.3798359847502955], "stop_id": 5726282, "stop_desc": "33-35 AVENUE ARISTIDE BRIAND - 93072", "stop_name": "JEAN JAURES - ARISTIDE BRIAND"}, "geometry": {"type": "Point", "coordinates": [2.3798359847502955, 48.962057259865865]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f2a0185e81bd2f951f99a1aa064d0de0ee96cdf8", "fields": {"departement": "93", "stop_lat": 48.90295771043755, "code_postal": "93070", "stop_lon": 2.3481332465556504, "coord": [48.90295771043755, 2.3481332465556504], "stop_id": 5726285, "stop_desc": "RUE DU DOCTEUR BAUER - 93070", "stop_name": "PLACE DEBAIN"}, "geometry": {"type": "Point", "coordinates": [2.3481332465556504, 48.90295771043755]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3217b62947db578fca44a1f11495fe7cfc1119d2", "fields": {"departement": "75", "stop_lat": 48.89952489020208, "code_postal": "75118", "stop_lon": 2.3448609939832155, "coord": [48.89952489020208, 2.3448609939832155], "stop_id": 5726286, "stop_desc": "RUE FRANCIS DE CROISSET - 75118", "stop_name": "PORTE DE CLIGNANCOURT"}, "geometry": {"type": "Point", "coordinates": [2.3448609939832155, 48.89952489020208]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ade090d8a44a5189a802e935db5049f20f64205d", "fields": {"departement": "93", "stop_lat": 48.90557324013011, "code_postal": "93070", "stop_lon": 2.3442892971129066, "coord": [48.90557324013011, 2.3442892971129066], "stop_id": 5726287, "stop_desc": "89-91 AVENUE MICHELET - 93070", "stop_name": "MICHELET - DOCTEUR BAUER"}, "geometry": {"type": "Point", "coordinates": [2.3442892971129066, 48.90557324013011]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "10bfd9c4561b3e4dd53b35bba25247d18bad7289", "fields": {"departement": "93", "stop_lat": 48.90753242030172, "code_postal": "93070", "stop_lon": 2.3442895631562375, "coord": [48.90753242030172, 2.3442895631562375], "stop_id": 5726288, "stop_desc": "65 BIS AVENUE MICHELET - 93070", "stop_name": "CIMETIERE PARISIEN"}, "geometry": {"type": "Point", "coordinates": [2.3442895631562375, 48.90753242030172]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5a84a8b19a168584ce04b451ad20279ed0848627", "fields": {"departement": "93", "stop_lat": 48.91062396178027, "code_postal": "93070", "stop_lon": 2.3443308859153618, "coord": [48.91062396178027, 2.3443308859153618], "stop_id": 5726289, "stop_desc": "37-39 AVENUE MICHELET - 93070", "stop_name": "GODILLOT"}, "geometry": {"type": "Point", "coordinates": [2.3443308859153618, 48.91062396178027]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6113573a0816669f7ed8e24ddaca095f922e42b0", "fields": {"departement": "93", "stop_lat": 48.93873300725637, "code_postal": "93066", "stop_lon": 2.360581998088033, "coord": [48.93873300725637, 2.360581998088033], "stop_id": 5726300, "stop_desc": "28 BD FELIX FAURE - 93066", "stop_name": "CITE LANGEVIN"}, "geometry": {"type": "Point", "coordinates": [2.360581998088033, 48.93873300725637]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "39639c24aa15cc40df9cef52f4ddfd062bcb6548", "fields": {"departement": "93", "stop_lat": 48.945211975397044, "code_postal": "93066", "stop_lon": 2.363081661891284, "coord": [48.945211975397044, 2.363081661891284], "stop_id": 5726302, "stop_desc": "AV DE STALINGRAD - 93066", "stop_name": "SAINT-DENIS - UNIVERSITE"}, "geometry": {"type": "Point", "coordinates": [2.363081661891284, 48.945211975397044]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "758e711d83609e128b6bb98c9e5b7b9e255ac163", "fields": {"departement": "93", "stop_lat": 48.94853198465507, "code_postal": "93072", "stop_lon": 2.3806435168972673, "coord": [48.94853198465507, 2.3806435168972673], "stop_id": 5726305, "stop_desc": "66 AVENUE DE STALINGRAD - 93072", "stop_name": "PAUL VAILLANT-COUTURIER"}, "geometry": {"type": "Point", "coordinates": [2.3806435168972673, 48.94853198465507]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "413ee473adaed1f7c98a1fcca38e8e5c0e171afc", "fields": {"departement": "93", "stop_lat": 48.952466555775885, "code_postal": "93072", "stop_lon": 2.384890511280149, "coord": [48.952466555775885, 2.384890511280149], "stop_id": 5726307, "stop_desc": "45 BOULEVARD MAXIME GORKI - 93072", "stop_name": "FRANCOIS BEGUE"}, "geometry": {"type": "Point", "coordinates": [2.384890511280149, 48.952466555775885]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "13b10b07ac8c7f8ef7e99c42d5ed9110142a10cf", "fields": {"departement": "93", "stop_lat": 48.9629378434202, "code_postal": "93072", "stop_lon": 2.3801369671815955, "coord": [48.9629378434202, 2.3801369671815955], "stop_id": 5726310, "stop_desc": "8 AVENUE JEAN JAURES - 93072", "stop_name": "JEAN JAURES - ARISTIDE BRIAND"}, "geometry": {"type": "Point", "coordinates": [2.3801369671815955, 48.9629378434202]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "538fe588e633e3aa12df7fb5d64566b618505ab9", "fields": {"departement": "93", "stop_lat": 48.969577586780865, "code_postal": "93072", "stop_lon": 2.3837869763101276, "coord": [48.969577586780865, 2.3837869763101276], "stop_id": 5726312, "stop_desc": "2 RUE LOUIS MARTEAU - 93072", "stop_name": "LES PREVOYANTS"}, "geometry": {"type": "Point", "coordinates": [2.3837869763101276, 48.969577586780865]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b603c1b048647a94a14f6f9d26308452aa1407f0", "fields": {"departement": "93", "stop_lat": 48.90753242030172, "code_postal": "93070", "stop_lon": 2.3442895631562375, "coord": [48.90753242030172, 2.3442895631562375], "stop_id": 5726315, "stop_desc": "65 BIS AVENUE MICHELET - 93070", "stop_name": "CIMETIERE PARISIEN"}, "geometry": {"type": "Point", "coordinates": [2.3442895631562375, 48.90753242030172]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1b2b8e371eb9611b7f0019032f1a406d75381a36", "fields": {"departement": "93", "stop_lat": 48.9165284250622, "code_postal": "93066", "stop_lon": 2.344399871861026, "coord": [48.9165284250622, 2.344399871861026], "stop_id": 5726318, "stop_desc": "FACE 32 BOULEVARD ORNANO - 93066", "stop_name": "DOCTEUR FINOT"}, "geometry": {"type": "Point", "coordinates": [2.344399871861026, 48.9165284250622]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aaeeb9a2f9f3f5f5f1ce1c8b73e59fee7f6e89ac", "fields": {"departement": "93", "stop_lat": 48.92612502424029, "code_postal": "93066", "stop_lon": 2.357289468620289, "coord": [48.92612502424029, 2.357289468620289], "stop_id": 5726321, "stop_desc": "380 AVENUE DU PRESIDENT WILSON - 93066", "stop_name": "PONT DU CANAL"}, "geometry": {"type": "Point", "coordinates": [2.357289468620289, 48.92612502424029]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "43c4008d2fb137dbee9398ac851a5b28262b682a", "fields": {"departement": "93", "stop_lat": 48.93615537294846, "code_postal": "93066", "stop_lon": 2.3501181700852487, "coord": [48.93615537294846, 2.3501181700852487], "stop_id": 5726325, "stop_desc": "32 BOULEVARD JULES GUESDE - 93066", "stop_name": "EGLISE - THEATRE GERARD PHILIPE"}, "geometry": {"type": "Point", "coordinates": [2.3501181700852487, 48.93615537294846]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "81d6cc8ffca3f8160cffa419b6e5b813cc675ce7", "fields": {"departement": "93", "stop_lat": 48.947850246865144, "code_postal": "93072", "stop_lon": 2.3770409007672946, "coord": [48.947850246865144, 2.3770409007672946], "stop_id": 5726331, "stop_desc": "FACE 7-13 AVENUE DE STALINGRAD - 93072", "stop_name": "CLOS HANOT"}, "geometry": {"type": "Point", "coordinates": [2.3770409007672946, 48.947850246865144]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "18b7e317de83204c84b86f27174fbb65edb2aa55", "fields": {"departement": "95", "stop_lat": 48.99425639765105, "code_postal": "95585", "stop_lon": 2.378660734943352, "coord": [48.99425639765105, 2.378660734943352], "stop_id": 5726505, "stop_desc": "FACE 103 RUE PIERRE BROSSOLETTE - 95585", "stop_name": "PLACE DE VERDUN"}, "geometry": {"type": "Point", "coordinates": [2.378660734943352, 48.99425639765105]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "292338a94c32cb07f28d92eb3c36f61ff05a29a2", "fields": {"departement": "95", "stop_lat": 49.00694848952079, "code_postal": "95680", "stop_lon": 2.3925628168468323, "coord": [49.00694848952079, 2.3925628168468323], "stop_id": 5726512, "stop_desc": "FACE 45 RUE GAMBETTA - 95680", "stop_name": "LES LIERRES - LOUISE MICHEL"}, "geometry": {"type": "Point", "coordinates": [2.3925628168468323, 49.00694848952079]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "577d12afe6175cfe3beb90a67cc0180a0b978154", "fields": {"departement": "95", "stop_lat": 49.00118946263233, "code_postal": "95680", "stop_lon": 2.4073757872421946, "coord": [49.00118946263233, 2.4073757872421946], "stop_id": 5726518, "stop_desc": "AVENUE PIERRE SEMARD - 95680", "stop_name": "LOUIS PERREIN"}, "geometry": {"type": "Point", "coordinates": [2.4073757872421946, 49.00118946263233]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "31a9554ccc0e2750e83cf41799fc803f5507e61e", "fields": {"departement": "93", "stop_lat": 48.95312796651855, "code_postal": "93059", "stop_lon": 2.368639329647854, "coord": [48.95312796651855, 2.368639329647854], "stop_id": 5726523, "stop_desc": "FACE 126 RUE D'AMIENS - 93059", "stop_name": "LYCEE DE PIERREFITTE-SUR-SEINE"}, "geometry": {"type": "Point", "coordinates": [2.368639329647854, 48.95312796651855]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c08fa4f643ff74353c21290581fe891ad0e15449", "fields": {"departement": "93", "stop_lat": 48.955626655952, "code_postal": "93072", "stop_lon": 2.367139767354736, "coord": [48.955626655952, 2.367139767354736], "stop_id": 5726524, "stop_desc": "RD 28 - 93072", "stop_name": "PIERRE CURIE - CLINIQUE DE L'ESTREE"}, "geometry": {"type": "Point", "coordinates": [2.367139767354736, 48.955626655952]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f538fa9132fbe38b7e221c6db97aa3e38ca9e4f1", "fields": {"departement": "93", "stop_lat": 48.95807120701223, "code_postal": "93072", "stop_lon": 2.3664451919284564, "coord": [48.95807120701223, 2.3664451919284564], "stop_id": 5726525, "stop_desc": "AVENUE DU COLONEL ROL-TANGUY - 93072", "stop_name": "MAURICE BOKANOWSKI"}, "geometry": {"type": "Point", "coordinates": [2.3664451919284564, 48.95807120701223]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1ae39e975ef7db92ff991728d4c110550d684cf7", "fields": {"departement": "93", "stop_lat": 48.94728983073711, "code_postal": "93066", "stop_lon": 2.3517718559246434, "coord": [48.94728983073711, 2.3517718559246434], "stop_id": 5726533, "stop_desc": "FACE 26 RUE DU 19 MARS 1962 - 93066", "stop_name": "SEMARD - MONMOUSSEAU"}, "geometry": {"type": "Point", "coordinates": [2.3517718559246434, 48.94728983073711]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0c37b76494fb43c91d200ad9a2e912f88330971f", "fields": {"departement": "93", "stop_lat": 48.94948912219902, "code_postal": "93059", "stop_lon": 2.365512523883428, "coord": [48.94948912219902, 2.365512523883428], "stop_id": 5726538, "stop_desc": "RUE TOUSSAINT LOUVERTURE - 93059", "stop_name": "TOUSSAINT LOUVERTURE"}, "geometry": {"type": "Point", "coordinates": [2.365512523883428, 48.94948912219902]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ee0e7cd2fd12044ef012fad62019120bfb1dc24e", "fields": {"departement": "93", "stop_lat": 48.95849526144328, "code_postal": "93059", "stop_lon": 2.358489280339655, "coord": [48.95849526144328, 2.358489280339655], "stop_id": 5726545, "stop_desc": "68 AVENUE LENINE - 93059", "stop_name": "SUZANNE VALADON"}, "geometry": {"type": "Point", "coordinates": [2.358489280339655, 48.95849526144328]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e00bf001f071d237fdce8038f7e0c824f2d83358", "fields": {"departement": "93", "stop_lat": 48.963186040531, "code_postal": "93059", "stop_lon": 2.3598833163763553, "coord": [48.963186040531, 2.3598833163763553], "stop_id": 5726546, "stop_desc": "4 BOULEVARD JEAN MERMOZ - 93059", "stop_name": "MAIRIE DE PIERREFITTE"}, "geometry": {"type": "Point", "coordinates": [2.3598833163763553, 48.963186040531]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "da7c641a25856939d0805538ebd4e4471777026c", "fields": {"departement": "93", "stop_lat": 48.96878107104439, "code_postal": "93072", "stop_lon": 2.3743953162388975, "coord": [48.96878107104439, 2.3743953162388975], "stop_id": 5726553, "stop_desc": "54-56 RUE PARMENTIER - 93072", "stop_name": "JEAN GRIGNOUX"}, "geometry": {"type": "Point", "coordinates": [2.3743953162388975, 48.96878107104439]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c7f0d2deed9ae4d4395d2b7ec9824733a313c5d7", "fields": {"departement": "95", "stop_lat": 48.97644768689324, "code_postal": "95585", "stop_lon": 2.370769480865649, "coord": [48.97644768689324, 2.370769480865649], "stop_id": 5726557, "stop_desc": "BOULEVARD ALBERT CAMUS - 95585", "stop_name": "PLACE ANDRE GIDE"}, "geometry": {"type": "Point", "coordinates": [2.370769480865649, 48.97644768689324]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d442ec1d248e564d6fbdd6c6bd7e8d30f19d3100", "fields": {"departement": "95", "stop_lat": 48.98645835923404, "code_postal": "95585", "stop_lon": 2.3717863842776152, "coord": [48.98645835923404, 2.3717863842776152], "stop_id": 5726564, "stop_desc": "AVENUE DE LA DIVISION LECLERC - 95585", "stop_name": "ROUTE DE GROSLAY"}, "geometry": {"type": "Point", "coordinates": [2.3717863842776152, 48.98645835923404]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "123381d596ba1fe59ad24278b89608354fd57eab", "fields": {"departement": "95", "stop_lat": 48.991445119553724, "code_postal": "95585", "stop_lon": 2.374179444928489, "coord": [48.991445119553724, 2.374179444928489], "stop_id": 5726566, "stop_desc": "49 RUE PIERRE BROSSOLETTE - 95585", "stop_name": "THEODORE BULLIER"}, "geometry": {"type": "Point", "coordinates": [2.374179444928489, 48.991445119553724]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "37fb2a5b25bf660db391a11194fb53c51c830856", "fields": {"departement": "95", "stop_lat": 48.99425639765105, "code_postal": "95585", "stop_lon": 2.378660734943352, "coord": [48.99425639765105, 2.378660734943352], "stop_id": 5726567, "stop_desc": "FACE 103 RUE PIERRE BROSSOLETTE - 95585", "stop_name": "PLACE DE VERDUN"}, "geometry": {"type": "Point", "coordinates": [2.378660734943352, 48.99425639765105]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bb08c231afa5898059a7c748e17c993dfbb62d45", "fields": {"departement": "95", "stop_lat": 48.996152321652765, "code_postal": "95585", "stop_lon": 2.379249497427796, "coord": [48.996152321652765, 2.379249497427796], "stop_id": 5726570, "stop_desc": "FACE 116 RUE PIERRE BROSSOLETTE - 95585", "stop_name": "MAIRIE DE SARCELLES"}, "geometry": {"type": "Point", "coordinates": [2.379249497427796, 48.996152321652765]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9e97319362f22d44879d287cc785eb74093c9e63", "fields": {"departement": "95", "stop_lat": 49.00602985107246, "code_postal": "95680", "stop_lon": 2.39679626744626, "coord": [49.00602985107246, 2.39679626744626], "stop_id": 5726582, "stop_desc": "FACE 73 RUE GAMBETTA - 95680", "stop_name": "VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.39679626744626, 49.00602985107246]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b09a63f9dfba0fb56103c09bc2143be10f8e5cfb", "fields": {"departement": "92", "stop_lat": 48.862806940257784, "code_postal": "92073", "stop_lon": 2.2185003886282835, "coord": [48.862806940257784, 2.2185003886282835], "stop_id": 4472527, "stop_desc": "BOULEVARD HENRI SELLIER - 92073", "stop_name": "GARIBALDI"}, "geometry": {"type": "Point", "coordinates": [2.2185003886282835, 48.862806940257784]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "71a71f5b3d173987e4cc8ce695c13ab29c1c4b29", "fields": {"departement": "92", "stop_lat": 48.862932246409954, "code_postal": "92073", "stop_lon": 2.2179824740747285, "coord": [48.862932246409954, 2.2179824740747285], "stop_id": 4472528, "stop_desc": "124 BOULEVARD HENRI SELLIER - 92073", "stop_name": "GARIBALDI"}, "geometry": {"type": "Point", "coordinates": [2.2179824740747285, 48.862932246409954]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "97a6347a9ae1fe886e44a303056dc376f3dbe507", "fields": {"departement": "92", "stop_lat": 48.86837636340144, "code_postal": "92073", "stop_lon": 2.2249314109891505, "coord": [48.86837636340144, 2.2249314109891505], "stop_id": 4472532, "stop_desc": "38 BOULEVARD HENRI SELLIER - 92073", "stop_name": "SURESNES DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.2249314109891505, 48.86837636340144]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a1aa3a5d6ed7bdacf8d9dc4ea58419a3578c639d", "fields": {"departement": "75", "stop_lat": 48.865311004088845, "code_postal": "75116", "stop_lon": 2.2341331715569654, "coord": [48.865311004088845, 2.2341331715569654], "stop_id": 4472536, "stop_desc": "ROUTE DE SURESNES - 75116", "stop_name": "LES MOULINS - CAMPING"}, "geometry": {"type": "Point", "coordinates": [2.2341331715569654, 48.865311004088845]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7122927fe16fdee410807923e8739032fa55981c", "fields": {"departement": "75", "stop_lat": 48.861101670705104, "code_postal": "75116", "stop_lon": 2.283968219228734, "coord": [48.861101670705104, 2.283968219228734], "stop_id": 4472541, "stop_desc": "19 AVENUE PAUL DOUMER - 75116", "stop_name": "SCHEFFER"}, "geometry": {"type": "Point", "coordinates": [2.283968219228734, 48.861101670705104]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4168df82c415605b99cb7526e682e71e0a5dec84", "fields": {"departement": "75", "stop_lat": 48.875121390460386, "code_postal": "75108", "stop_lon": 2.30847875269421, "coord": [48.875121390460386, 2.30847875269421], "stop_id": 4472554, "stop_desc": "174 BOULEVARD HAUSSMANN - 75108", "stop_name": "HAUSSMANN - COURCELLES"}, "geometry": {"type": "Point", "coordinates": [2.30847875269421, 48.875121390460386]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9d40cd1c8d8fd07e030ca566a955243e8e2a063c", "fields": {"departement": "92", "stop_lat": 48.815057462556105, "code_postal": "92040", "stop_lon": 2.2652075656215733, "coord": [48.815057462556105, 2.2652075656215733], "stop_id": 4472621, "stop_desc": "3 RUE FERDINAND BUISSON - 92040", "stop_name": "E. DUPLOYE"}, "geometry": {"type": "Point", "coordinates": [2.2652075656215733, 48.815057462556105]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a25f338f31a01b3779dfa9ed6dfec3f32d6fd7fc", "fields": {"departement": "92", "stop_lat": 48.815948200735114, "code_postal": "92040", "stop_lon": 2.266798633660712, "coord": [48.815948200735114, 2.266798633660712], "stop_id": 4472622, "stop_desc": "5 GENERAL GUICHARD - 92040", "stop_name": "GENERAL GUICHARD"}, "geometry": {"type": "Point", "coordinates": [2.266798633660712, 48.815948200735114]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b3a335513583027b3067bc4d870b9f48d80c3e02", "fields": {"departement": "95", "stop_lat": 48.92333364375808, "code_postal": "95063", "stop_lon": 2.20801063048684, "coord": [48.92333364375808, 2.20801063048684], "stop_id": 4472631, "stop_desc": "PLACE DU GRAND CERF - 95063", "stop_name": "GRAND CERF"}, "geometry": {"type": "Point", "coordinates": [2.20801063048684, 48.92333364375808]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4151f627a1928a7aee026c314f029596567be7d9", "fields": {"departement": "95", "stop_lat": 48.92706161626719, "code_postal": "95063", "stop_lon": 2.2150115921880924, "coord": [48.92706161626719, 2.2150115921880924], "stop_id": 4472635, "stop_desc": "64 RUE EDOUARD VAILLANT - 95063", "stop_name": "LA GRACE DE DIEU"}, "geometry": {"type": "Point", "coordinates": [2.2150115921880924, 48.92706161626719]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9231db89a8af617d484f3819fd3a774201a5e5b4", "fields": {"departement": "92", "stop_lat": 48.9172574350341, "code_postal": "92025", "stop_lon": 2.2247436060973063, "coord": [48.9172574350341, 2.2247436060973063], "stop_id": 4472638, "stop_desc": "195 BOULEVARD CHARLES DE GAULLE - 92025", "stop_name": "PARC PIERRE LAGRAVERE"}, "geometry": {"type": "Point", "coordinates": [2.2247436060973063, 48.9172574350341]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "990b961b6c53d270d2506b6505b1f1f53a028302", "fields": {"departement": "92", "stop_lat": 48.908972739931876, "code_postal": "92025", "stop_lon": 2.236282226502673, "coord": [48.908972739931876, 2.236282226502673], "stop_id": 4472644, "stop_desc": "15 BD CHARLES DE GAULLE - 92025", "stop_name": "GARE DE LA GARENNE-COLOMBES"}, "geometry": {"type": "Point", "coordinates": [2.236282226502673, 48.908972739931876]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d99b2cd670da688bfbfac4ea2df763a305717873", "fields": {"departement": "92", "stop_lat": 48.90879380347171, "code_postal": "92025", "stop_lon": 2.23723694348742, "coord": [48.90879380347171, 2.23723694348742], "stop_id": 4472645, "stop_desc": "18-20 BOULEVARD CHARLES DE GAULLE - 92025", "stop_name": "GARE DE LA GARENNE-COLOMBES"}, "geometry": {"type": "Point", "coordinates": [2.23723694348742, 48.90879380347171]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4d05ea49b9e89b93eca9a8321fb203d1ee956719", "fields": {"departement": "92", "stop_lat": 48.8958012046481, "code_postal": "92026", "stop_lon": 2.2405742092276215, "coord": [48.8958012046481, 2.2405742092276215], "stop_id": 4472657, "stop_desc": "8 BOULEVARD DE LA MISSION MARCHAND - 92026", "stop_name": "CARON"}, "geometry": {"type": "Point", "coordinates": [2.2405742092276215, 48.8958012046481]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "31d0d34f6cbab538ecc2ecef3ac4df45b208f8c7", "fields": {"departement": "92", "stop_lat": 48.891361317918545, "code_postal": "92062", "stop_lon": 2.240296277187438, "coord": [48.891361317918545, 2.240296277187438], "stop_id": 4472659, "stop_desc": "VOI PERRONET NORD - 92062", "stop_name": "LA DEFENSE-METRO-RER-TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.240296277187438, 48.891361317918545]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ddb33fee5620e6d67c6324d2797e9cc970c2f566", "fields": {"departement": "92", "stop_lat": 48.88818903073687, "code_postal": "92062", "stop_lon": 2.240533894361642, "coord": [48.88818903073687, 2.240533894361642], "stop_id": 4472660, "stop_desc": "15 AVENUE JEAN MOULIN - 92062", "stop_name": "BOIELDIEU"}, "geometry": {"type": "Point", "coordinates": [2.240533894361642, 48.88818903073687]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "260ddcc6a7df275cf50d80be4e98adbc54ef0fcb", "fields": {"departement": "92", "stop_lat": 48.88555130589665, "code_postal": "92051", "stop_lon": 2.258922605272076, "coord": [48.88555130589665, 2.258922605272076], "stop_id": 4472665, "stop_desc": "176 AVENUE CHARLES DE GAULLE - 92051", "stop_name": "PONT DE NEUILLY-METRO"}, "geometry": {"type": "Point", "coordinates": [2.258922605272076, 48.88555130589665]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "379a6eac03bbe238d82857bc0bdbda1ef039b211", "fields": {"departement": "92", "stop_lat": 48.88013216210914, "code_postal": "92051", "stop_lon": 2.2743693786917185, "coord": [48.88013216210914, 2.2743693786917185], "stop_id": 4472672, "stop_desc": "73 AVENUE CHARLES DE GAULLE - 92051", "stop_name": "MARCHE DE NEUILLY-SUR-SEINE"}, "geometry": {"type": "Point", "coordinates": [2.2743693786917185, 48.88013216210914]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3f4a8833d0ad0a51e0c920d2fdf36b106875eb19", "fields": {"departement": "75", "stop_lat": 48.87713349214627, "code_postal": "75116", "stop_lon": 2.280504490492322, "coord": [48.87713349214627, 2.280504490492322], "stop_id": 4472675, "stop_desc": "PLACE DE LA PORTE MAILLOT - 75116", "stop_name": "PALAIS DES CONGRES"}, "geometry": {"type": "Point", "coordinates": [2.280504490492322, 48.87713349214627]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e14f01e0f167e435cf3e8efe67777ae2bc28dded", "fields": {"departement": "75", "stop_lat": 48.87941156710292, "code_postal": "75117", "stop_lon": 2.2903809168089997, "coord": [48.87941156710292, 2.2903809168089997], "stop_id": 4472676, "stop_desc": "69 AV DES TERNES - 75117", "stop_name": "EGLISE SAINT-FERDINAND"}, "geometry": {"type": "Point", "coordinates": [2.2903809168089997, 48.87941156710292]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "93be3bc191eba9293432b05593958cb5eaa752c9", "fields": {"departement": "75", "stop_lat": 48.87863131986088, "code_postal": "75117", "stop_lon": 2.2947691591166657, "coord": [48.87863131986088, 2.2947691591166657], "stop_id": 4472679, "stop_desc": "24 AV DES TERNES - 75117", "stop_name": "TERNES - MAC MAHON"}, "geometry": {"type": "Point", "coordinates": [2.2947691591166657, 48.87863131986088]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "15f9ddd92c7c6bf8f282248d114d966fe27a7377", "fields": {"departement": "75", "stop_lat": 48.87508653842288, "code_postal": "75108", "stop_lon": 2.313451881624046, "coord": [48.87508653842288, 2.313451881624046], "stop_id": 4472685, "stop_desc": "127 BOULEVARD HAUSSMANN - 75108", "stop_name": "HAUSSMANN - MIROMESNIL"}, "geometry": {"type": "Point", "coordinates": [2.313451881624046, 48.87508653842288]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "903e863eb0b385e64d56a0c5cafc01d7e50c6776", "fields": {"departement": "75", "stop_lat": 48.87807493981841, "code_postal": "75117", "stop_lon": 2.2971677460588693, "coord": [48.87807493981841, 2.2971677460588693], "stop_id": 4472694, "stop_desc": "2 AVENUE DES TERNES - 75117", "stop_name": "TERNES"}, "geometry": {"type": "Point", "coordinates": [2.2971677460588693, 48.87807493981841]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "73f15748b105f4cac3f657ba8bd87886cae681b9", "fields": {"departement": "95", "stop_lat": 48.97217114640024, "code_postal": "95210", "stop_lon": 2.3077559091969886, "coord": [48.97217114640024, 2.3077559091969886], "stop_id": 4472703, "stop_desc": "FACE 3 RUE DE L'ARRIVEE - 95210", "stop_name": "GARE D'ENGHIEN-LES-BAINS"}, "geometry": {"type": "Point", "coordinates": [2.3077559091969886, 48.97217114640024]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "29193b667d7e7704b3389f860b603b878f308500", "fields": {"departement": "93", "stop_lat": 48.95942727421821, "code_postal": "93031", "stop_lon": 2.3045151484510247, "coord": [48.95942727421821, 2.3045151484510247], "stop_id": 4472714, "stop_desc": "AVENUE DE LATTRE DE TASSIGNY - 93031", "stop_name": "PLACE FITZELIN"}, "geometry": {"type": "Point", "coordinates": [2.3045151484510247, 48.95942727421821]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d331b386b1e71180f965416973a7f0e81dd7fc11", "fields": {"departement": "93", "stop_lat": 48.95206266882724, "code_postal": "93031", "stop_lon": 2.338332655435747, "coord": [48.95206266882724, 2.338332655435747], "stop_id": 4472727, "stop_desc": "115 ROUTE DE SAINT-LEU - 93031", "stop_name": "76 ROUTE DE SAINT-LEU"}, "geometry": {"type": "Point", "coordinates": [2.338332655435747, 48.95206266882724]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d516d5741c05667915c8b628994f7098eee3948e", "fields": {"departement": "93", "stop_lat": 48.949456441080486, "code_postal": "93031", "stop_lon": 2.341620932934238, "coord": [48.949456441080486, 2.341620932934238], "stop_id": 4472728, "stop_desc": "59 ROUTE DE SAINT-LEU - 93031", "stop_name": "CITE BLUMENTHAL"}, "geometry": {"type": "Point", "coordinates": [2.341620932934238, 48.949456441080486]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "402c11238d2ddadd788cffd4a803b259a899b2c3", "fields": {"departement": "92", "stop_lat": 48.93322738865775, "code_postal": "92036", "stop_lon": 2.2937013496860867, "coord": [48.93322738865775, 2.2937013496860867], "stop_id": 4472742, "stop_desc": "FACE 1 AVENUE LUCIEN LANTERNIER - 92036", "stop_name": "LE VILLAGE"}, "geometry": {"type": "Point", "coordinates": [2.2937013496860867, 48.93322738865775]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7ae3fd4768bdbee5a7b91a1f60ebdd794a9301cf", "fields": {"departement": "92", "stop_lat": 48.93300278659405, "code_postal": "92036", "stop_lon": 2.293892501341222, "coord": [48.93300278659405, 2.293892501341222], "stop_id": 4472743, "stop_desc": "1 AVENUE LUCIEN LANTERNIER - 92036", "stop_name": "LE VILLAGE"}, "geometry": {"type": "Point", "coordinates": [2.293892501341222, 48.93300278659405]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b033357a19518e0a650569fc316fe423c4b3d46d", "fields": {"departement": "92", "stop_lat": 48.929952376682074, "code_postal": "92004", "stop_lon": 2.2843338402497513, "coord": [48.929952376682074, 2.2843338402497513], "stop_id": 4472746, "stop_desc": "BOULEVARD PIERRE DE COUBERTIN - 92004", "stop_name": "LES COURTILLES"}, "geometry": {"type": "Point", "coordinates": [2.2843338402497513, 48.929952376682074]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "abb170cea399288139b7ead6c1474e194543ea5e", "fields": {"departement": "92", "stop_lat": 48.92798429491097, "code_postal": "92004", "stop_lon": 2.2844449622932146, "coord": [48.92798429491097, 2.2844449622932146], "stop_id": 4472747, "stop_desc": "BOULEVARD PIERRE DE COUBERTIN - 92004", "stop_name": "PATINOIRE"}, "geometry": {"type": "Point", "coordinates": [2.2844449622932146, 48.92798429491097]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "80c9ba738a87f0a50f2f79526dcccdadbd7340f2", "fields": {"departement": "92", "stop_lat": 48.924973942801074, "code_postal": "92004", "stop_lon": 2.285048107368607, "coord": [48.924973942801074, 2.285048107368607], "stop_id": 4472748, "stop_desc": "CHEMIN DU FOSSE DE L'AUMONE - 92004", "stop_name": "ABBE GLATZ"}, "geometry": {"type": "Point", "coordinates": [2.285048107368607, 48.924973942801074]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cc13b3b94162957c2edb76aa856dee2de22edae9", "fields": {"departement": "92", "stop_lat": 48.92317699378374, "code_postal": "92004", "stop_lon": 2.28605910172606, "coord": [48.92317699378374, 2.28605910172606], "stop_id": 4472749, "stop_desc": "BOULEVARD PIERRE DE COUBERTIN - 92004", "stop_name": "LES AGNETTES-METRO"}, "geometry": {"type": "Point", "coordinates": [2.28605910172606, 48.92317699378374]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c31540a051257e4ace1e9d2aba4bfdbfbda15fb2", "fields": {"departement": "93", "stop_lat": 48.8714936249946, "code_postal": "93006", "stop_lon": 2.430279463952473, "coord": [48.8714936249946, 2.430279463952473], "stop_id": 3687672, "stop_desc": "FACE 97 AVENUE DE STALINGRAD - 93006", "stop_name": "LES RIGONDES"}, "geometry": {"type": "Point", "coordinates": [2.430279463952473, 48.8714936249946]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f958baad3b5eca54f16ffb25a783fb9321d054c1", "fields": {"departement": "93", "stop_lat": 48.85962371632797, "code_postal": "93048", "stop_lon": 2.4383489897739583, "coord": [48.85962371632797, 2.4383489897739583], "stop_id": 3687681, "stop_desc": "38 BOULEVARD ROUGET DE LISLE - 93048", "stop_name": "VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.4383489897739583, 48.85962371632797]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8a37101b3765cc62a4f486ffd9c6a3a9e2ac6c6d", "fields": {"departement": "94", "stop_lat": 48.84683591626402, "code_postal": "94080", "stop_lon": 2.4367308149123965, "coord": [48.84683591626402, 2.4367308149123965], "stop_id": 3687693, "stop_desc": "33 AVENUE DU CHATEAU - 94080", "stop_name": "VINCENNES RER"}, "geometry": {"type": "Point", "coordinates": [2.4367308149123965, 48.84683591626402]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0a0fd6b21e9afceaf7fba37fb2f04bf66bc4fa46", "fields": {"departement": "94", "stop_lat": 48.85274809035189, "code_postal": "94080", "stop_lon": 2.438621589640774, "coord": [48.85274809035189, 2.438621589640774], "stop_id": 3687689, "stop_desc": "75 RUE DE STRASBOURG - 94080", "stop_name": "SOLIDARITE"}, "geometry": {"type": "Point", "coordinates": [2.438621589640774, 48.85274809035189]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cc78b60801cd703ac2fd56eca619dce2c628bd87", "fields": {"departement": "93", "stop_lat": 48.877282866892386, "code_postal": "93045", "stop_lon": 2.4158331514815305, "coord": [48.877282866892386, 2.4158331514815305], "stop_id": 3690245, "stop_desc": "FACE 20-22 R DE ROMAINVILLE - 93045", "stop_name": "PASSAGE RONSARD"}, "geometry": {"type": "Point", "coordinates": [2.4158331514815305, 48.877282866892386]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "27e34079ef079b6b702dc94584e4e75a87818d70", "fields": {"departement": "94", "stop_lat": 48.85238226670591, "code_postal": "94033", "stop_lon": 2.4721781119906754, "coord": [48.85238226670591, 2.4721781119906754], "stop_id": 3690346, "stop_desc": "28 BIS BOULEVARD DE VERDUN - 94033", "stop_name": "PLACE MICHELET"}, "geometry": {"type": "Point", "coordinates": [2.4721781119906754, 48.85238226670591]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "34a4184478799fea49785ca5c7f2a1466d03b8d9", "fields": {"departement": "93", "stop_lat": 48.876483889685794, "code_postal": "93045", "stop_lon": 2.4144694073555555, "coord": [48.876483889685794, 2.4144694073555555], "stop_id": 3690246, "stop_desc": "46 RUE DES BRUYERES - 93045", "stop_name": "LES PRIMEVERES."}, "geometry": {"type": "Point", "coordinates": [2.4144694073555555, 48.876483889685794]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "87f66f3ae191a0915418721be4fb554ece40490c", "fields": {"departement": "94", "stop_lat": 48.850706662172556, "code_postal": "94033", "stop_lon": 2.4591543991412843, "coord": [48.850706662172556, 2.4591543991412843], "stop_id": 3690335, "stop_desc": "FACE 57 RUE EUGENE MARTIN - 94033", "stop_name": "ROUBLOT"}, "geometry": {"type": "Point", "coordinates": [2.4591543991412843, 48.850706662172556]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4aa46ebba5eda283b46f8b6b94e0600b3bfdf10a", "fields": {"departement": "94", "stop_lat": 48.85675154230017, "code_postal": "94033", "stop_lon": 2.4709636642567148, "coord": [48.85675154230017, 2.4709636642567148], "stop_id": 3690351, "stop_desc": "75 AVENUE VICTOR HUGO - 94033", "stop_name": "EMILE ZOLA"}, "geometry": {"type": "Point", "coordinates": [2.4709636642567148, 48.85675154230017]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ae810d47bdea56e2f5d60c8e7b4473692a18c6a7", "fields": {"departement": "94", "stop_lat": 48.84935147661661, "code_postal": "94033", "stop_lon": 2.4572582827026497, "coord": [48.84935147661661, 2.4572582827026497], "stop_id": 3690333, "stop_desc": "135 RUE DALAYRAC - 94033", "stop_name": "LES RIGOLLOTS"}, "geometry": {"type": "Point", "coordinates": [2.4572582827026497, 48.84935147661661]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "83e2975e3597a1cae5847ba055ba131dd70f5b58", "fields": {"departement": "94", "stop_lat": 48.847319739356294, "code_postal": "94033", "stop_lon": 2.4744254798495784, "coord": [48.847319739356294, 2.4744254798495784], "stop_id": 3690342, "stop_desc": "16 BIS RUE DE NEUILLY - 94033", "stop_name": "LE PARC"}, "geometry": {"type": "Point", "coordinates": [2.4744254798495784, 48.847319739356294]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "41e644f2d9d5bf989bb328f91bf00feeee5ef0f1", "fields": {"departement": "94", "stop_lat": 48.85510253831453, "code_postal": "94033", "stop_lon": 2.4581704910146134, "coord": [48.85510253831453, 2.4581704910146134], "stop_id": 3690337, "stop_desc": "95 R DANTON - 94033", "stop_name": "EDOUARD MAURY"}, "geometry": {"type": "Point", "coordinates": [2.4581704910146134, 48.85510253831453]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7342da1301223e8974eb1bf6d4a3e360e7e49a7b", "fields": {"departement": "94", "stop_lat": 48.85094587621135, "code_postal": "94033", "stop_lon": 2.462477907739809, "coord": [48.85094587621135, 2.462477907739809], "stop_id": 3690339, "stop_desc": "FACE 60 RUE GAMBETTA - 94033", "stop_name": "GAMBETTA"}, "geometry": {"type": "Point", "coordinates": [2.462477907739809, 48.85094587621135]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bc31e68131a0cba748a93fde934eb4eb894edbe2", "fields": {"departement": "94", "stop_lat": 48.846991013735796, "code_postal": "94033", "stop_lon": 2.471074681484275, "coord": [48.846991013735796, 2.471074681484275], "stop_id": 3690485, "stop_desc": "10 R NOTRE DAME - 94033", "stop_name": "ANCIENNE MAIRIE DE FONTENAY-SOUS-BOIS"}, "geometry": {"type": "Point", "coordinates": [2.471074681484275, 48.846991013735796]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8c03065c1ace4e796c69c1cb599e9679e7fa7a73", "fields": {"departement": "94", "stop_lat": 48.84819631751823, "code_postal": "94033", "stop_lon": 2.4780229275469767, "coord": [48.84819631751823, 2.4780229275469767], "stop_id": 3690482, "stop_desc": "109 BOULEVARD GALLIENI - 94033", "stop_name": "CIMETIERE DE FONTENAY-SOUS-BOIS"}, "geometry": {"type": "Point", "coordinates": [2.4780229275469767, 48.84819631751823]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "874b1ae42391c15dba5dbb794d195664ec2eb4e9", "fields": {"departement": "94", "stop_lat": 48.83547370371285, "code_postal": "94052", "stop_lon": 2.474802599415442, "coord": [48.83547370371285, 2.474802599415442], "stop_id": 3708131, "stop_desc": "12 GR CHARLES DE GAULLE - 94052", "stop_name": "PLACE DU GENERAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.474802599415442, 48.83547370371285]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "96119f276b95c4f5c2995bf7c837f2e3ef8194c4", "fields": {"departement": "94", "stop_lat": 48.8351467617629, "code_postal": "94058", "stop_lon": 2.498953845025156, "coord": [48.8351467617629, 2.498953845025156], "stop_id": 3708137, "stop_desc": "66 BIS AVENUE PIERRE BROSSOLETTE - 94058", "stop_name": "LES PARCLAIRS"}, "geometry": {"type": "Point", "coordinates": [2.498953845025156, 48.8351467617629]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b16293e7becea286e73a9794df931a5978da5b62", "fields": {"departement": "94", "stop_lat": 48.85297247950356, "code_postal": "94033", "stop_lon": 2.448999828579167, "coord": [48.85297247950356, 2.448999828579167], "stop_id": 3690493, "stop_desc": "FACE 75 RUE DE STALINGRAD - 94033", "stop_name": "LES PARAPLUIES"}, "geometry": {"type": "Point", "coordinates": [2.448999828579167, 48.85297247950356]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "57b95f06b18405016905106003203d58e77dfb04", "fields": {"departement": "94", "stop_lat": 48.85128380971573, "code_postal": "94033", "stop_lon": 2.473918451465365, "coord": [48.85128380971573, 2.473918451465365], "stop_id": 3690480, "stop_desc": "9 BIS BOULEVARD DE VERDUN - 94033", "stop_name": "SAINT-GERMAIN"}, "geometry": {"type": "Point", "coordinates": [2.473918451465365, 48.85128380971573]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1a2aabd527a8f5741ea0e090e4cebefffce294f4", "fields": {"departement": "94", "stop_lat": 48.849991154984615, "code_postal": "94033", "stop_lon": 2.4556936487973515, "coord": [48.849991154984615, 2.4556936487973515], "stop_id": 3690490, "stop_desc": "8 AVENUE DE STALINGRAD - 94033", "stop_name": "LES RIGOLLOTS"}, "geometry": {"type": "Point", "coordinates": [2.4556936487973515, 48.849991154984615]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f937433e04dc004469366bf601dfc5e2343dd129", "fields": {"departement": "75", "stop_lat": 48.85726596088864, "code_postal": "75104", "stop_lon": 2.3527954157613853, "coord": [48.85726596088864, 2.3527954157613853], "stop_id": 3695558, "stop_desc": "62 RUE DE RIVOLI - 75104", "stop_name": "HOTEL DE VILLE"}, "geometry": {"type": "Point", "coordinates": [2.3527954157613853, 48.85726596088864]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fe3ce6555c323b44fac848b67ebdbdc2680cc057", "fields": {"departement": "94", "stop_lat": 48.85675154230017, "code_postal": "94033", "stop_lon": 2.4709636642567148, "coord": [48.85675154230017, 2.4709636642567148], "stop_id": 3690478, "stop_desc": "75 AVENUE VICTOR HUGO - 94033", "stop_name": "EMILE ZOLA"}, "geometry": {"type": "Point", "coordinates": [2.4709636642567148, 48.85675154230017]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cb5389fca3e7f0139171c6d76ad5b7afefc8f1da", "fields": {"departement": "94", "stop_lat": 48.814932080698995, "code_postal": "94046", "stop_lon": 2.4222439451389848, "coord": [48.814932080698995, 2.4222439451389848], "stop_id": 3716910, "stop_desc": "31-35 AVENUE DU GENERAL LECLERC - 94046", "stop_name": "ECOLE VETERINAIRE DE MAISONS-ALFORT-METRO"}, "geometry": {"type": "Point", "coordinates": [2.4222439451389848, 48.814932080698995]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6d131a7457943ff043cba869d707ff092990e8cc", "fields": {"departement": "93", "stop_lat": 48.857215804703934, "code_postal": "93050", "stop_lon": 2.5318884295907167, "coord": [48.857215804703934, 2.5318884295907167], "stop_id": 3716663, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 93050", "stop_name": "PLACE DE LA RESISTANCE"}, "geometry": {"type": "Point", "coordinates": [2.5318884295907167, 48.857215804703934]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d97f2a21479e55ef51dd3ea6893f91c4532760c7", "fields": {"departement": "93", "stop_lat": 48.88472982350582, "code_postal": "93032", "stop_lon": 2.535085191366058, "coord": [48.88472982350582, 2.535085191366058], "stop_id": 3716671, "stop_desc": "10 AVENUE DU GENERAL LECLERC - 93032", "stop_name": "CHARLES DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.535085191366058, 48.88472982350582]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "05ef1a99a060ca09f08a1f4ab3dd92ded77e92cf", "fields": {"departement": "94", "stop_lat": 48.821606439542855, "code_postal": "94018", "stop_lon": 2.4141972075539684, "coord": [48.821606439542855, 2.4141972075539684], "stop_id": 3716913, "stop_desc": "RUE DE LA REPUBLIQUE - 94018", "stop_name": "CHARENTON-ECOLES"}, "geometry": {"type": "Point", "coordinates": [2.4141972075539684, 48.821606439542855]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "43e0ea82a227f228c91b53989dac26b857b9d709", "fields": {"departement": "94", "stop_lat": 48.82207395654258, "code_postal": "94018", "stop_lon": 2.398436310380732, "coord": [48.82207395654258, 2.398436310380732], "stop_id": 3716902, "stop_desc": "FACE 7 QUAI DE BERCY - 94018", "stop_name": "PORT AUX LIONS"}, "geometry": {"type": "Point", "coordinates": [2.398436310380732, 48.82207395654258]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "409b3022cc696f52cd0d12886f3dbbf675155e5c", "fields": {"departement": "93", "stop_lat": 48.874287642887154, "code_postal": "93050", "stop_lon": 2.528941440616018, "coord": [48.874287642887154, 2.528941440616018], "stop_id": 3715235, "stop_desc": "141 R DE VILLEMOMBLE - 93050", "stop_name": "TROIS COMMUNES"}, "geometry": {"type": "Point", "coordinates": [2.528941440616018, 48.874287642887154]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f2415bc9b5248317e29baa113c24c54999f51768", "fields": {"departement": "94", "stop_lat": 48.81887613822739, "code_postal": "94018", "stop_lon": 2.411103642894185, "coord": [48.81887613822739, 2.411103642894185], "stop_id": 3716906, "stop_desc": "FACE 7 BIS RUE VICTOR HUGO - 94018", "stop_name": "VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.411103642894185, 48.81887613822739]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f68e162f091d5689490ec8e3d89064d57fedc641", "fields": {"departement": "75", "stop_lat": 48.83592072593947, "code_postal": "75112", "stop_lon": 2.385831834104346, "coord": [48.83592072593947, 2.385831834104346], "stop_id": 3716922, "stop_desc": "2 RUE DE BERCY - 75112", "stop_name": "LACHAMBEAUDIE"}, "geometry": {"type": "Point", "coordinates": [2.385831834104346, 48.83592072593947]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "98adb714839904d6a37827c002e7b41258ca919c", "fields": {"departement": "94", "stop_lat": 48.81899305429177, "code_postal": "94018", "stop_lon": 2.4109813171069656, "coord": [48.81899305429177, 2.4109813171069656], "stop_id": 3716914, "stop_desc": "7 RUE VICTOR HUGO - 94018", "stop_name": "VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.4109813171069656, 48.81899305429177]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "94b360b3299675636a721bfd78bb6b86bdd1b2f3", "fields": {"departement": "94", "stop_lat": 48.817943764417215, "code_postal": "94069", "stop_lon": 2.4436165247676946, "coord": [48.817943764417215, 2.4436165247676946], "stop_id": 3724102, "stop_desc": "FACE 130 RUE DU MARECHAL LECLERC - 94069", "stop_name": "PASSERELLE DE CHARENTONNEAU"}, "geometry": {"type": "Point", "coordinates": [2.4436165247676946, 48.817943764417215]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7117e742006ac6865ed60f76df7fff109a58edb3", "fields": {"departement": "94", "stop_lat": 48.81785051981082, "code_postal": "94069", "stop_lon": 2.425773698569028, "coord": [48.81785051981082, 2.425773698569028], "stop_id": 3724093, "stop_desc": "FACE 55BIS RUE DU MARECHAL LECLERC - 94069", "stop_name": "MAIRIE DE SAINT-MAURICE"}, "geometry": {"type": "Point", "coordinates": [2.425773698569028, 48.81785051981082]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a2a4b6ba562a7dd6daf103cb4fe1e659f74c42f1", "fields": {"departement": "94", "stop_lat": 48.81796678050282, "code_postal": "94069", "stop_lon": 2.4265496652267307, "coord": [48.81796678050282, 2.4265496652267307], "stop_id": 3724094, "stop_desc": "55 RUE DU MARECHAL LECLERC - 94069", "stop_name": "MAIRIE DE SAINT-MAURICE"}, "geometry": {"type": "Point", "coordinates": [2.4265496652267307, 48.81796678050282]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "93775f7ee987b587e3be929c125bf6d04db1cd50", "fields": {"departement": "94", "stop_lat": 48.80681252421133, "code_postal": "94017", "stop_lon": 2.526692056396795, "coord": [48.80681252421133, 2.526692056396795], "stop_id": 3718110, "stop_desc": "87 AVENUE MARX DORMOY - 94017", "stop_name": "MUSEE DE LA RESISTANCE."}, "geometry": {"type": "Point", "coordinates": [2.526692056396795, 48.80681252421133]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6df65ec854dc2302839f66b6471364d1f12d1951", "fields": {"departement": "94", "stop_lat": 48.81786967316462, "code_postal": "94069", "stop_lon": 2.4460389440703985, "coord": [48.81786967316462, 2.4460389440703985], "stop_id": 3724103, "stop_desc": "150-156 RUE DU MARECHAL LECLERC - 94069", "stop_name": "CFA - ANDRIEU"}, "geometry": {"type": "Point", "coordinates": [2.4460389440703985, 48.81786967316462]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0f73889223951af0467685456a8b086d53181b32", "fields": {"departement": "94", "stop_lat": 48.81763994544958, "code_postal": "94069", "stop_lon": 2.4514143694904704, "coord": [48.81763994544958, 2.4514143694904704], "stop_id": 3724106, "stop_desc": "FACE 178 RUE DU MARECHAL LECLERC - 94069", "stop_name": "ROSERAIE"}, "geometry": {"type": "Point", "coordinates": [2.4514143694904704, 48.81763994544958]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d966c434251e5f60b27cd2fc0aa89117976ddebf", "fields": {"departement": "94", "stop_lat": 48.81184347836069, "code_postal": "94017", "stop_lon": 2.5104483853296258, "coord": [48.81184347836069, 2.5104483853296258], "stop_id": 3718116, "stop_desc": "FACE 4 BIS RUE ALBERT THOMAS - 94017", "stop_name": "MARCHE."}, "geometry": {"type": "Point", "coordinates": [2.5104483853296258, 48.81184347836069]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1415bc35b653a9a58aef32fb0c700943be4c031c", "fields": {"departement": "94", "stop_lat": 48.82002741880614, "code_postal": "94069", "stop_lon": 2.4232186351513785, "coord": [48.82002741880614, 2.4232186351513785], "stop_id": 3724091, "stop_desc": "23 BIS RUE DU VAL D'OSNE - 94069", "stop_name": "EPINETTES"}, "geometry": {"type": "Point", "coordinates": [2.4232186351513785, 48.82002741880614]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "576222fa06e5290dfee70d3f6f1146e8ee9660d3", "fields": {"departement": "94", "stop_lat": 48.81835494535775, "code_postal": "94069", "stop_lon": 2.424263840734881, "coord": [48.81835494535775, 2.424263840734881], "stop_id": 3724092, "stop_desc": "3 RUE DU VAL D'OSNE - 94069", "stop_name": "VAL D'OSNE"}, "geometry": {"type": "Point", "coordinates": [2.424263840734881, 48.81835494535775]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "612af68accff278f17c39401bec9b26707e08127", "fields": {"departement": "93", "stop_lat": 48.88429181358196, "code_postal": "93077", "stop_lon": 2.5104724083530376, "coord": [48.88429181358196, 2.5104724083530376], "stop_id": 3687739, "stop_desc": "FACE 1 BIS AV OUTREBON - 93077", "stop_name": "CHATEAU DE VILLEMOMBLE (DESCENTE)"}, "geometry": {"type": "Point", "coordinates": [2.5104724083530376, 48.88429181358196]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c5cabaf4da8aaa050207f504f72073e6aa607115", "fields": {"departement": "93", "stop_lat": 48.88518669153142, "code_postal": "93063", "stop_lon": 2.4347193879788533, "coord": [48.88518669153142, 2.4347193879788533], "stop_id": 3688088, "stop_desc": "4 AVENUE PAUL VAILLANT-COUTURIER - 93063", "stop_name": "MAIRIE DE ROMAINVILLE"}, "geometry": {"type": "Point", "coordinates": [2.4347193879788533, 48.88518669153142]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "76dad8c9b7563be154c43d22e98b086392e09221", "fields": {"departement": "94", "stop_lat": 48.85235832504077, "code_postal": "94033", "stop_lon": 2.4847892519496995, "coord": [48.85235832504077, 2.4847892519496995], "stop_id": 3688521, "stop_desc": "124 AVENUE DU MARECHAL JOFFRE - 94033", "stop_name": "GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.4847892519496995, 48.85235832504077]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "64da852a5bf5526ae46e91f28d32fe4546441302", "fields": {"departement": "94", "stop_lat": 48.85260933136605, "code_postal": "94033", "stop_lon": 2.4853074908421364, "coord": [48.85260933136605, 2.4853074908421364], "stop_id": 3688520, "stop_desc": "PLACE DU GENERAL DE GAULLE - 94033", "stop_name": "GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.4853074908421364, 48.85260933136605]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3c668e60627a29f17788e8ba5b54c81124c0e3f8", "fields": {"departement": "93", "stop_lat": 48.88021901272251, "code_postal": "93045", "stop_lon": 2.4198164856309488, "coord": [48.88021901272251, 2.4198164856309488], "stop_id": 3688092, "stop_desc": "33 BOULEVARD DE LA LIBERTE - 93045", "stop_name": "MARECHAL JUIN"}, "geometry": {"type": "Point", "coordinates": [2.4198164856309488, 48.88021901272251]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "33dcdedf324e271f13b21df530bd8ff9a1f46571", "fields": {"departement": "93", "stop_lat": 48.881996281021465, "code_postal": "93063", "stop_lon": 2.445083372675158, "coord": [48.881996281021465, 2.445083372675158], "stop_id": 3688105, "stop_desc": "76 AVENUE PIERRE KERAUTRET - 93063", "stop_name": "FORT DE NOISY"}, "geometry": {"type": "Point", "coordinates": [2.445083372675158, 48.881996281021465]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8b6a26721ccb433953857b90acc7dd5eb93c832f", "fields": {"departement": "93", "stop_lat": 48.868849201159506, "code_postal": "93048", "stop_lon": 2.4621124450708733, "coord": [48.868849201159506, 2.4621124450708733], "stop_id": 3687727, "stop_desc": "222 RUE DE ROSNY - 93048", "stop_name": "NOUVELLE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.4621124450708733, 48.868849201159506]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6aa43c4fb2433664d4234c72c9dcf9ff6d5876f3", "fields": {"departement": "93", "stop_lat": 48.867559196125555, "code_postal": "93048", "stop_lon": 2.458063309002578, "coord": [48.867559196125555, 2.458063309002578], "stop_id": 3687726, "stop_desc": "192 RUE DE ROSNY - 93048", "stop_name": "EDOUARD BRANLY"}, "geometry": {"type": "Point", "coordinates": [2.458063309002578, 48.867559196125555]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b690c58f3156ec90c768fef9d93b3c4493754c56", "fields": {"departement": "93", "stop_lat": 48.86441887778646, "code_postal": "93048", "stop_lon": 2.45275696892194, "coord": [48.86441887778646, 2.45275696892194], "stop_id": 3687725, "stop_desc": "128-130 RUE DE ROSNY - 93048", "stop_name": "DANTON"}, "geometry": {"type": "Point", "coordinates": [2.45275696892194, 48.86441887778646]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "defd25a6e837aa7b7401955ab69121dc29ba2e72", "fields": {"departement": "93", "stop_lat": 48.88208601035912, "code_postal": "93045", "stop_lon": 2.4231443995865596, "coord": [48.88208601035912, 2.4231443995865596], "stop_id": 3688100, "stop_desc": "RUE DES SABLONS - 93045", "stop_name": "SABLONS"}, "geometry": {"type": "Point", "coordinates": [2.4231443995865596, 48.88208601035912]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "456db0c763f9f13cca07c6453c10eaed2a62b817", "fields": {"departement": "93", "stop_lat": 48.87740504008273, "code_postal": "93048", "stop_lon": 2.462201179047303, "coord": [48.87740504008273, 2.462201179047303], "stop_id": 3688546, "stop_desc": "183 BOULEVARD DE LA BOISSIERE - 93048", "stop_name": "SALVADOR ALLENDE"}, "geometry": {"type": "Point", "coordinates": [2.462201179047303, 48.87740504008273]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "33d7b74fcf5b53d961223fa9a17ac4e3514ea81a", "fields": {"departement": "93", "stop_lat": 48.88749491926676, "code_postal": "93053", "stop_lon": 2.456160937155557, "coord": [48.88749491926676, 2.456160937155557], "stop_id": 3688555, "stop_desc": "12 BOULEVARD ROGER SALENGRO - 93053", "stop_name": "SALENGRO - AUFFRET"}, "geometry": {"type": "Point", "coordinates": [2.456160937155557, 48.88749491926676]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "67547006d3ba48dd64a182a20b8336d3e94382ad", "fields": {"departement": "93", "stop_lat": 48.88282273176747, "code_postal": "93053", "stop_lon": 2.4549782971960883, "coord": [48.88282273176747, 2.4549782971960883], "stop_id": 3688552, "stop_desc": "79 BOULEVARD ROGER SALENGRO - 93053", "stop_name": "FRERES LUMIERE"}, "geometry": {"type": "Point", "coordinates": [2.4549782971960883, 48.88282273176747]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3d39c25cd58f139f6eef892d6c326bea0947839b", "fields": {"departement": "93", "stop_lat": 48.878711214585806, "code_postal": "93053", "stop_lon": 2.4501726350137893, "coord": [48.878711214585806, 2.4501726350137893], "stop_id": 3688551, "stop_desc": "17 BOULEVARD DE LA BOISSIERE - 93053", "stop_name": "TROIS COMMUNES"}, "geometry": {"type": "Point", "coordinates": [2.4501726350137893, 48.878711214585806]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "13130e0991fb35b5c5edd6301e84702dc0a60edb", "fields": {"departement": "93", "stop_lat": 48.869010549902306, "code_postal": "93048", "stop_lon": 2.4707909260516066, "coord": [48.869010549902306, 2.4707909260516066], "stop_id": 3688541, "stop_desc": "11 BOULEVARD THEOPHILE SUEUR - 93048", "stop_name": "SAINT EXUPERY"}, "geometry": {"type": "Point", "coordinates": [2.4707909260516066, 48.869010549902306]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cb9684b8204fb24ec865797e0ee6541efdb3c7c9", "fields": {"departement": "93", "stop_lat": 48.87087968376009, "code_postal": "93064", "stop_lon": 2.471000098060112, "coord": [48.87087968376009, 2.471000098060112], "stop_id": 3688543, "stop_desc": "1 BOULEVARD THEOPHILE SUEUR - 93064", "stop_name": "FORT DE ROSNY"}, "geometry": {"type": "Point", "coordinates": [2.471000098060112, 48.87087968376009]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0b29d64e509f9a8dd481537d3379d252bc83f44b", "fields": {"departement": "94", "stop_lat": 48.85730381638216, "code_postal": "94033", "stop_lon": 2.467314846426084, "coord": [48.85730381638216, 2.467314846426084], "stop_id": 3688534, "stop_desc": "152 BOULEVARD DE VERDUN - 94033", "stop_name": "ERNEST RENAN"}, "geometry": {"type": "Point", "coordinates": [2.467314846426084, 48.85730381638216]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ecd99e18809cc564af8dde5d7d733cb8903a7bff", "fields": {"departement": "93", "stop_lat": 48.89105209927494, "code_postal": "93053", "stop_lon": 2.448673055310972, "coord": [48.89105209927494, 2.448673055310972], "stop_id": 3688559, "stop_desc": "31 RUE VAILLANT COUTURIER - 93053", "stop_name": "CHAALONS"}, "geometry": {"type": "Point", "coordinates": [2.448673055310972, 48.89105209927494]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e8e4245568bd25b69740edfe00622924f87f6994", "fields": {"departement": "94", "stop_lat": 48.857341200605816, "code_postal": "94033", "stop_lon": 2.4816707533851594, "coord": [48.857341200605816, 2.4816707533851594], "stop_id": 3688527, "stop_desc": "11 AV CHARLES GARCIA - 94033", "stop_name": "LA FONTAINE"}, "geometry": {"type": "Point", "coordinates": [2.4816707533851594, 48.857341200605816]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "58cba1845f4b35f610e15cd2a4f690073e1d5865", "fields": {"departement": "93", "stop_lat": 48.88963634548666, "code_postal": "93053", "stop_lon": 2.453658151289903, "coord": [48.88963634548666, 2.453658151289903], "stop_id": 3688557, "stop_desc": "8 RUE DE BREMENT - 93053", "stop_name": "JEANNE D'ARC"}, "geometry": {"type": "Point", "coordinates": [2.453658151289903, 48.88963634548666]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "986fcd133f4f40ceb2849fe4220bbb6842ddc537", "fields": {"departement": "93", "stop_lat": 48.864967201113274, "code_postal": "93048", "stop_lon": 2.442977370361323, "coord": [48.864967201113274, 2.442977370361323], "stop_id": 3689895, "stop_desc": "33 BIS BOULEVARD HENRI BARBUSSE - 93048", "stop_name": "PLACE FRANCOIS MITTERRAND"}, "geometry": {"type": "Point", "coordinates": [2.442977370361323, 48.864967201113274]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f083058fbec68ebe64fb73e1c5885454b9979756", "fields": {"departement": "93", "stop_lat": 48.89259280370902, "code_postal": "93053", "stop_lon": 2.4444239409257653, "coord": [48.89259280370902, 2.4444239409257653], "stop_id": 3689911, "stop_desc": "FACE 104 RUE DU PARC - 93053", "stop_name": "RUE DU PARC - VAILLANT-COUTURIER"}, "geometry": {"type": "Point", "coordinates": [2.4444239409257653, 48.89259280370902]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "11a40cf330be8de650e02aa53b79a3a665d9e703", "fields": {"departement": "93", "stop_lat": 48.90105182503004, "code_postal": "93008", "stop_lon": 2.442042239663171, "coord": [48.90105182503004, 2.442042239663171], "stop_id": 3689916, "stop_desc": "AVENUE DU PRESIDENT SALVADOR ALLENDE - 93008", "stop_name": "JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.442042239663171, 48.90105182503004]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eb1f69d67b7c12b0531db16ae01c5aa742c5b613", "fields": {"departement": "93", "stop_lat": 48.85686358157878, "code_postal": "93048", "stop_lon": 2.4671775405429193, "coord": [48.85686358157878, 2.4671775405429193], "stop_id": 3688578, "stop_desc": "306 BOULEVARD THEOPHILE SUEUR - 93048", "stop_name": "ERNEST RENAN"}, "geometry": {"type": "Point", "coordinates": [2.4671775405429193, 48.85686358157878]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "116ae6e8b206d5866eb7871066d14b94dfac352d", "fields": {"departement": "93", "stop_lat": 48.885834489371526, "code_postal": "93053", "stop_lon": 2.4443554563596304, "coord": [48.885834489371526, 2.4443554563596304], "stop_id": 3689907, "stop_desc": "FACE 121 RUE ANATOLE FRANCE - 93053", "stop_name": "RUE DU PARC"}, "geometry": {"type": "Point", "coordinates": [2.4443554563596304, 48.885834489371526]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fb7109bb535feaaadad5954840a33391079ea539", "fields": {"departement": "93", "stop_lat": 48.90248201047639, "code_postal": "93008", "stop_lon": 2.440627385981551, "coord": [48.90248201047639, 2.440627385981551], "stop_id": 3688565, "stop_desc": "60 AVENUE JEAN JAURES - 93008", "stop_name": "LOUISE MICHEL"}, "geometry": {"type": "Point", "coordinates": [2.440627385981551, 48.90248201047639]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "add37a410b38619af502c7cf259e1638bc1e93bd", "fields": {"departement": "93", "stop_lat": 48.89508320782615, "code_postal": "93053", "stop_lon": 2.4433523030529054, "coord": [48.89508320782615, 2.4433523030529054], "stop_id": 3689913, "stop_desc": "RUE DU PARC - 93053", "stop_name": "AVENUE DE BOBIGNY"}, "geometry": {"type": "Point", "coordinates": [2.4433523030529054, 48.89508320782615]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e3603ed98d204b205d647ee6fe3e0471ba604b5c", "fields": {"departement": "93", "stop_lat": 48.87161185403466, "code_postal": "93063", "stop_lon": 2.4395440332117184, "coord": [48.87161185403466, 2.4395440332117184], "stop_id": 3689899, "stop_desc": "100 BOULEVARD EDOUARD BRANLY - 93063", "stop_name": "BERLIOZ"}, "geometry": {"type": "Point", "coordinates": [2.4395440332117184, 48.87161185403466]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "05fe340fc2b4f34eb7450ded7c13173f269eea6a", "fields": {"departement": "94", "stop_lat": 48.846991013735796, "code_postal": "94033", "stop_lon": 2.471074681484275, "coord": [48.846991013735796, 2.471074681484275], "stop_id": 3690379, "stop_desc": "10 R NOTRE DAME - 94033", "stop_name": "ANCIENNE MAIRIE DE FONTENAY-SOUS-BOIS"}, "geometry": {"type": "Point", "coordinates": [2.471074681484275, 48.846991013735796]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "987133f41684726bb578f531b76ec1f3cc24568e", "fields": {"departement": "94", "stop_lat": 48.85925724338836, "code_postal": "94033", "stop_lon": 2.4802459027075754, "coord": [48.85925724338836, 2.4802459027075754], "stop_id": 3690354, "stop_desc": "11 RUE JEAN MOULIN - 94033", "stop_name": "JEAN MOULIN - CIMETIERE DE VINCENNES"}, "geometry": {"type": "Point", "coordinates": [2.4802459027075754, 48.85925724338836]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f8737d374765a81ae0f6e19d29db8616e44fff69", "fields": {"departement": "94", "stop_lat": 48.85253432483068, "code_postal": "94033", "stop_lon": 2.4877859452410003, "coord": [48.85253432483068, 2.4877859452410003], "stop_id": 3690368, "stop_desc": "AVENUE LOUISON BOBET - 94033", "stop_name": "VAL DE FONTENAY RER - LOUISON BOBET"}, "geometry": {"type": "Point", "coordinates": [2.4877859452410003, 48.85253432483068]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cbf5e97802967f2c9c02c22502cec2d1daf19aa7", "fields": {"departement": "94", "stop_lat": 48.85633965570982, "code_postal": "94033", "stop_lon": 2.491964727672761, "coord": [48.85633965570982, 2.491964727672761], "stop_id": 3690374, "stop_desc": "AVENUE DU MARECHAL DE LATTRE DE TASSIGNY - 94033", "stop_name": "DE LATTRE DE TASSIGNY"}, "geometry": {"type": "Point", "coordinates": [2.491964727672761, 48.85633965570982]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9ef0f9a36f1dc75295a863fa5769f11abdf412f9", "fields": {"departement": "94", "stop_lat": 48.85390043311673, "code_postal": "94033", "stop_lon": 2.4877762906555043, "coord": [48.85390043311673, 2.4877762906555043], "stop_id": 3690365, "stop_desc": "AVENUE DU VAL DE FONTENAY - 94033", "stop_name": "VAL-DE-FONTENAY RER"}, "geometry": {"type": "Point", "coordinates": [2.4877762906555043, 48.85390043311673]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d1652c05ef8022a4879a4d91db398f004d2a2833", "fields": {"departement": "94", "stop_lat": 48.85646931196126, "code_postal": "94033", "stop_lon": 2.47415003690013, "coord": [48.85646931196126, 2.47415003690013], "stop_id": 3690355, "stop_desc": "13 RUE JEAN PIERRE TIMBAUD - 94033", "stop_name": "AIMEE MATTERRAZ"}, "geometry": {"type": "Point", "coordinates": [2.47415003690013, 48.85646931196126]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dddd3892d3943c2ee984686619b0456351248495", "fields": {"departement": "94", "stop_lat": 48.8455457382008, "code_postal": "94033", "stop_lon": 2.4611848538596774, "coord": [48.8455457382008, 2.4611848538596774], "stop_id": 3690382, "stop_desc": "47 BIS RUE MALLIER - 94033", "stop_name": "MALLIER - GAUCHER"}, "geometry": {"type": "Point", "coordinates": [2.4611848538596774, 48.8455457382008]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d09be7a57809f8b7842669157a997c7a163a7e08", "fields": {"departement": "94", "stop_lat": 48.85912474105891, "code_postal": "94033", "stop_lon": 2.492749421074358, "coord": [48.85912474105891, 2.492749421074358], "stop_id": 3690373, "stop_desc": "FACE12BIS RUE DU BOIS GALON - 94033", "stop_name": "BOIS GALON"}, "geometry": {"type": "Point", "coordinates": [2.492749421074358, 48.85912474105891]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "565ff587308beda80c7d11a07d0ebac9af2ca40c", "fields": {"departement": "94", "stop_lat": 48.85741704615696, "code_postal": "94033", "stop_lon": 2.4857706866027764, "coord": [48.85741704615696, 2.4857706866027764], "stop_id": 3690361, "stop_desc": "18 RUE JEAN ZAY - 94033", "stop_name": "JEAN ZAY"}, "geometry": {"type": "Point", "coordinates": [2.4857706866027764, 48.85741704615696]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9fa66475170294946703d2070e288d6c3b6e7780", "fields": {"departement": "75", "stop_lat": 48.865618237665586, "code_postal": "75120", "stop_lon": 2.3990053411798007, "coord": [48.865618237665586, 2.3990053411798007], "stop_id": 3690081, "stop_desc": "87 AVENUE GAMBETTA - 75120", "stop_name": "GAMBETTA - MAIRIE DU 20E"}, "geometry": {"type": "Point", "coordinates": [2.3990053411798007, 48.865618237665586]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a98c6328e5e33d9a8eaf7311ba45f6a9c84f7719", "fields": {"departement": "93", "stop_lat": 48.88094305908556, "code_postal": "93045", "stop_lon": 2.4252954936046307, "coord": [48.88094305908556, 2.4252954936046307], "stop_id": 3690241, "stop_desc": "48 BOULEVARD DU GENERAL LECLERC - 93045", "stop_name": "JOSEPH DEPINAY"}, "geometry": {"type": "Point", "coordinates": [2.4252954936046307, 48.88094305908556]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "175426b65c3336120bee6d032045059d76c752ca", "fields": {"departement": "93", "stop_lat": 48.88048687661272, "code_postal": "93045", "stop_lon": 2.422310540571791, "coord": [48.88048687661272, 2.422310540571791], "stop_id": 3690240, "stop_desc": "4-6 AVENUE DU GENERAL LECLERC - 93045", "stop_name": "MARECHAL JUIN"}, "geometry": {"type": "Point", "coordinates": [2.422310540571791, 48.88048687661272]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "74b54589cbcd8c21d14ecd1f4ea2424d1aff58d1", "fields": {"departement": "75", "stop_lat": 48.84894348489332, "code_postal": "75120", "stop_lon": 2.4046642358414423, "coord": [48.84894348489332, 2.4046642358414423], "stop_id": 3690069, "stop_desc": "RUE DE LAGNY - 75120", "stop_name": "SQUARE SARAH BERNHARDT"}, "geometry": {"type": "Point", "coordinates": [2.4046642358414423, 48.84894348489332]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "99e72ba6b474b22d3aa3703f9726b3aee68491ea", "fields": {"departement": "75", "stop_lat": 48.8620193573115, "code_postal": "75120", "stop_lon": 2.406165979773254, "coord": [48.8620193573115, 2.406165979773254], "stop_id": 3690056, "stop_desc": "148 RUE DE BAGNOLET - 75120", "stop_name": "PELLEPORT - BAGNOLET"}, "geometry": {"type": "Point", "coordinates": [2.406165979773254, 48.8620193573115]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0f6d7181889c5c7b0bc248d957aca8befe4cc1e7", "fields": {"departement": "75", "stop_lat": 48.8541496943974, "code_postal": "75120", "stop_lon": 2.4001629604532924, "coord": [48.8541496943974, 2.4001629604532924], "stop_id": 3690072, "stop_desc": "FACE 43 RUE DES VIGNOLES - 75120", "stop_name": "VIGNOLES"}, "geometry": {"type": "Point", "coordinates": [2.4001629604532924, 48.8541496943974]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2fb9e5d2232a97294ca7b124f7982393bd39bff5", "fields": {"departement": "75", "stop_lat": 48.852639345937604, "code_postal": "75120", "stop_lon": 2.4010191296833328, "coord": [48.852639345937604, 2.4010191296833328], "stop_id": 3690071, "stop_desc": "58 RUE DE BUZENVAL - 75120", "stop_name": "BUZENVAL"}, "geometry": {"type": "Point", "coordinates": [2.4010191296833328, 48.852639345937604]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2fa6dc3ac25e097b4c4b6d19f8bec17c3c1badc9", "fields": {"departement": "75", "stop_lat": 48.86335061654989, "code_postal": "75120", "stop_lon": 2.4041925764614387, "coord": [48.86335061654989, 2.4041925764614387], "stop_id": 3690054, "stop_desc": "24 BIS RUE PELLEPORT - 75120", "stop_name": "INDRE"}, "geometry": {"type": "Point", "coordinates": [2.4041925764614387, 48.86335061654989]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "88bbd953ae66a388802dc26605bfc1c53d538c8a", "fields": {"departement": "75", "stop_lat": 48.84982554608386, "code_postal": "75120", "stop_lon": 2.402350266625055, "coord": [48.84982554608386, 2.402350266625055], "stop_id": 3690070, "stop_desc": "2-4 RUE DE BUZENVAL - 75120", "stop_name": "PLAINE"}, "geometry": {"type": "Point", "coordinates": [2.402350266625055, 48.84982554608386]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aa245c92ba70b43572c7fb5042f3514b5ac5dd11", "fields": {"departement": "75", "stop_lat": 48.8647200677307, "code_postal": "75120", "stop_lon": 2.397900870363696, "coord": [48.8647200677307, 2.397900870363696], "stop_id": 3690051, "stop_desc": "1 PLACE GAMBETTA - 75120", "stop_name": "GAMBETTA"}, "geometry": {"type": "Point", "coordinates": [2.397900870363696, 48.8647200677307]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "090524e4a2213c043f432f307893f9c8d278a600", "fields": {"departement": "94", "stop_lat": 48.85633965570982, "code_postal": "94033", "stop_lon": 2.491964727672761, "coord": [48.85633965570982, 2.491964727672761], "stop_id": 3690428, "stop_desc": "AVENUE DU MARECHAL DE LATTRE DE TASSIGNY - 94033", "stop_name": "DE LATTRE DE TASSIGNY"}, "geometry": {"type": "Point", "coordinates": [2.491964727672761, 48.85633965570982]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "60f0166874fc28997885a947757d224012e6b7ef", "fields": {"departement": "94", "stop_lat": 48.85338820076925, "code_postal": "94033", "stop_lon": 2.487733946275537, "coord": [48.85338820076925, 2.487733946275537], "stop_id": 3690420, "stop_desc": "AVENUE DU VAL DE FONTENAY - 94033", "stop_name": "VAL-DE-FONTENAY RER"}, "geometry": {"type": "Point", "coordinates": [2.487733946275537, 48.85338820076925]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0c2de88cca6358ea244fad73fbf9a4a4e03e3fd8", "fields": {"departement": "94", "stop_lat": 48.852612866371096, "code_postal": "94033", "stop_lon": 2.4491216254257, "coord": [48.852612866371096, 2.4491216254257], "stop_id": 3690385, "stop_desc": "59 BIS CARREFOUR DES PARAPLUIES - 94033", "stop_name": "LES PARAPLUIES"}, "geometry": {"type": "Point", "coordinates": [2.4491216254257, 48.852612866371096]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d1b0172afa0b7448b5d1f5187447325189dcdcc5", "fields": {"departement": "94", "stop_lat": 48.85072489037081, "code_postal": "94033", "stop_lon": 2.4753877853661814, "coord": [48.85072489037081, 2.4753877853661814], "stop_id": 3690401, "stop_desc": "163 BOULEVARD GALLIENI - 94033", "stop_name": "MEDIATHEQUE ARAGON"}, "geometry": {"type": "Point", "coordinates": [2.4753877853661814, 48.85072489037081]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4612f1a653843d7596962672b42c16aa9c05c95b", "fields": {"departement": "94", "stop_lat": 48.85667038006725, "code_postal": "94033", "stop_lon": 2.471208617513792, "coord": [48.85667038006725, 2.471208617513792], "stop_id": 3690404, "stop_desc": "FACE 71 AVENUE VICTOR HUGO - 94033", "stop_name": "EMILE ZOLA"}, "geometry": {"type": "Point", "coordinates": [2.471208617513792, 48.85667038006725]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "30dea221cf80ca5c8468ee2ef0f1ce3a6c965160", "fields": {"departement": "94", "stop_lat": 48.848773998953874, "code_postal": "94033", "stop_lon": 2.4679607443591447, "coord": [48.848773998953874, 2.4679607443591447], "stop_id": 3690396, "stop_desc": "35 RUE CHARLES BASSEE - 94033", "stop_name": "CHARLES BASSEE"}, "geometry": {"type": "Point", "coordinates": [2.4679607443591447, 48.848773998953874]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "68c4d9235175217920d10ef3e9a8f0915d1a640d", "fields": {"departement": "94", "stop_lat": 48.859075989520655, "code_postal": "94033", "stop_lon": 2.473870881419788, "coord": [48.859075989520655, 2.473870881419788], "stop_id": 3690407, "stop_desc": "127-129 AVENUE VICTOR HUGO - 94033", "stop_name": "VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.473870881419788, 48.859075989520655]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f0f873328d978f9af65956d40a72d6ecdeb6deec", "fields": {"departement": "94", "stop_lat": 48.85675154230017, "code_postal": "94033", "stop_lon": 2.4709636642567148, "coord": [48.85675154230017, 2.4709636642567148], "stop_id": 3690405, "stop_desc": "75 AVENUE VICTOR HUGO - 94033", "stop_name": "EMILE ZOLA"}, "geometry": {"type": "Point", "coordinates": [2.4709636642567148, 48.85675154230017]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9f97352476ecf3dc3f3299365a93c53eb7fbb32e", "fields": {"departement": "94", "stop_lat": 48.85741704615696, "code_postal": "94033", "stop_lon": 2.4857706866027764, "coord": [48.85741704615696, 2.4857706866027764], "stop_id": 3690415, "stop_desc": "18 RUE JEAN ZAY - 94033", "stop_name": "JEAN ZAY"}, "geometry": {"type": "Point", "coordinates": [2.4857706866027764, 48.85741704615696]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "68b47a4c6755104df974ea61fe2faf1a6c21d2f6", "fields": {"departement": "94", "stop_lat": 48.85253432483068, "code_postal": "94033", "stop_lon": 2.4877859452410003, "coord": [48.85253432483068, 2.4877859452410003], "stop_id": 3690442, "stop_desc": "AVENUE LOUISON BOBET - 94033", "stop_name": "VAL DE FONTENAY RER - LOUISON BOBET"}, "geometry": {"type": "Point", "coordinates": [2.4877859452410003, 48.85253432483068]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f71372fd9131b239c190318518f66045c32e134c", "fields": {"departement": "94", "stop_lat": 48.85253432483068, "code_postal": "94033", "stop_lon": 2.4877859452410003, "coord": [48.85253432483068, 2.4877859452410003], "stop_id": 3690470, "stop_desc": "AVENUE LOUISON BOBET - 94033", "stop_name": "VAL DE FONTENAY RER - LOUISON BOBET"}, "geometry": {"type": "Point", "coordinates": [2.4877859452410003, 48.85253432483068]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7241a2cd7b6db5c12bf4e0f76f89e6cf88adf549", "fields": {"departement": "94", "stop_lat": 48.85633965570982, "code_postal": "94033", "stop_lon": 2.491964727672761, "coord": [48.85633965570982, 2.491964727672761], "stop_id": 3690441, "stop_desc": "AVENUE DU MARECHAL DE LATTRE DE TASSIGNY - 94033", "stop_name": "DE LATTRE DE TASSIGNY"}, "geometry": {"type": "Point", "coordinates": [2.491964727672761, 48.85633965570982]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eeb15aa1ad08b31a0dde03464221aeec11bdcd54", "fields": {"departement": "94", "stop_lat": 48.849665220055705, "code_postal": "94033", "stop_lon": 2.47464957520262, "coord": [48.849665220055705, 2.47464957520262], "stop_id": 3690454, "stop_desc": "FACE 23 RUE GUERIN LEROUX - 94033", "stop_name": "HOTEL DE VILLE DE FONTENAY"}, "geometry": {"type": "Point", "coordinates": [2.47464957520262, 48.849665220055705]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a8b808e7ada65593c8d58057ea92b1352d70a2af", "fields": {"departement": "93", "stop_lat": 48.930466648681865, "code_postal": "93066", "stop_lon": 2.350471384685101, "coord": [48.930466648681865, 2.350471384685101], "stop_id": 4009069, "stop_desc": "RUE AMBROISE CROIZAT - 93066", "stop_name": "SQUARE DE GEYTER"}, "geometry": {"type": "Point", "coordinates": [2.350471384685101, 48.930466648681865]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cf31989d5ffc707562ac51a4cb882754a6a5834e", "fields": {"departement": "93", "stop_lat": 48.928902058125175, "code_postal": "93066", "stop_lon": 2.356813173931948, "coord": [48.928902058125175, 2.356813173931948], "stop_id": 4009073, "stop_desc": "AVENUE DU PRESIDENT WILSON - 93066", "stop_name": "PORTE DE PARIS - STADE DE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.356813173931948, 48.928902058125175]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a1f48adf59454de0021ba26344b04e70b2b5c57a", "fields": {"departement": "93", "stop_lat": 48.90530105233507, "code_postal": "93001", "stop_lon": 2.3902321446836763, "coord": [48.90530105233507, 2.3902321446836763], "stop_id": 4009084, "stop_desc": "120 AVENUE DE LA REPUBLIQUE - 93001", "stop_name": "HOPITAL LA ROSERAIE"}, "geometry": {"type": "Point", "coordinates": [2.3902321446836763, 48.90530105233507]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b15861a88086fb0ab9bc6049d9f4f1f84ade8863", "fields": {"departement": "93", "stop_lat": 48.89718117000412, "code_postal": "93055", "stop_lon": 2.3995881824305783, "coord": [48.89718117000412, 2.3995881824305783], "stop_id": 4009089, "stop_desc": "13 AVENUE EDOUARD VAILLANT - 93055", "stop_name": "PANTIN RER - MAIRIE"}, "geometry": {"type": "Point", "coordinates": [2.3995881824305783, 48.89718117000412]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ae9e263bf02616563b93d0849b2fad5616d7e495", "fields": {"departement": "93", "stop_lat": 48.89549979635163, "code_postal": "93055", "stop_lon": 2.401058235497317, "coord": [48.89549979635163, 2.401058235497317], "stop_id": 4009090, "stop_desc": "61 RUE HOCHE - 93055", "stop_name": "CENTRE NATIONAL DE LA DANSE"}, "geometry": {"type": "Point", "coordinates": [2.401058235497317, 48.89549979635163]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d2a4cc627d0a47775910a0305821c8619fc8cc29", "fields": {"departement": "75", "stop_lat": 48.876730434823244, "code_postal": "75120", "stop_lon": 2.408215718151263, "coord": [48.876730434823244, 2.408215718151263], "stop_id": 4009099, "stop_desc": "RUE DES GLAIEULS - 75120", "stop_name": "PORTE DES LILAS-METRO"}, "geometry": {"type": "Point", "coordinates": [2.408215718151263, 48.876730434823244]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a692f504b98531cd91219e24cbd9d42c13f4c1a9", "fields": {"departement": "92", "stop_lat": 48.816340640388, "code_postal": "92048", "stop_lon": 2.2272487621780552, "coord": [48.816340640388, 2.2272487621780552], "stop_id": 4009101, "stop_desc": "FACE1-1BIS RUE DES CAPUCINS - 92048", "stop_name": "GARDES - CAPUCINS"}, "geometry": {"type": "Point", "coordinates": [2.2272487621780552, 48.816340640388]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "baf3a42222948c0da2563c0fc4f34c4ec63c3151", "fields": {"departement": "92", "stop_lat": 48.81551983667514, "code_postal": "92048", "stop_lon": 2.2241339640123865, "coord": [48.81551983667514, 2.2241339640123865], "stop_id": 4009105, "stop_desc": "ROUTE DES GARDES - 92048", "stop_name": "GARDES - BEL AIR"}, "geometry": {"type": "Point", "coordinates": [2.2241339640123865, 48.81551983667514]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "26071beb3eb7f461d55f53b56ac502e78999a109", "fields": {"departement": "92", "stop_lat": 48.81549033481328, "code_postal": "92048", "stop_lon": 2.2214938187308557, "coord": [48.81549033481328, 2.2214938187308557], "stop_id": 4009106, "stop_desc": "53 RUE ERNEST RENAN - 92048", "stop_name": "HAMEAU"}, "geometry": {"type": "Point", "coordinates": [2.2214938187308557, 48.81549033481328]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fe26a0a875418e578fde5ce0760fa01044d4a1ac", "fields": {"departement": "92", "stop_lat": 48.808332006461626, "code_postal": "92048", "stop_lon": 2.2480851270319326, "coord": [48.808332006461626, 2.2480851270319326], "stop_id": 4009119, "stop_desc": "69 RUE DE BELGIQUE - 92048", "stop_name": "ORPHELINAT"}, "geometry": {"type": "Point", "coordinates": [2.2480851270319326, 48.808332006461626]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "acb9d18676b779953ce3cf37dd3809c3a3ca414c", "fields": {"departement": "92", "stop_lat": 48.81131007217264, "code_postal": "92048", "stop_lon": 2.2523393863240138, "coord": [48.81131007217264, 2.2523393863240138], "stop_id": 4009121, "stop_desc": "FACE 38 RUE DE LA PETITE FONTAINE - 92048", "stop_name": "PETITE FONTAINE"}, "geometry": {"type": "Point", "coordinates": [2.2523393863240138, 48.81131007217264]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "00fa0ddf34eb68dc8303a761e254ee5f5492b93a", "fields": {"departement": "92", "stop_lat": 48.811289529615514, "code_postal": "92048", "stop_lon": 2.2488148908721697, "coord": [48.811289529615514, 2.2488148908721697], "stop_id": 4009123, "stop_desc": "13 AVENUE PAUL BERT - 92048", "stop_name": "PAUL BERT"}, "geometry": {"type": "Point", "coordinates": [2.2488148908721697, 48.811289529615514]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "424b0dff3613c19df4dc163a9452ae8383e5b445", "fields": {"departement": "92", "stop_lat": 48.810713335177624, "code_postal": "92048", "stop_lon": 2.2475094977880525, "coord": [48.810713335177624, 2.2475094977880525], "stop_id": 4009124, "stop_desc": "49 RUE DE LA BELGIQUE - 92048", "stop_name": "VIGNES - BELGIQUE"}, "geometry": {"type": "Point", "coordinates": [2.2475094977880525, 48.810713335177624]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fb3489bce68bc3237b6ebe1c0c7e8bf1750cab61", "fields": {"departement": "92", "stop_lat": 48.81520636026428, "code_postal": "92048", "stop_lon": 2.2252914336382292, "coord": [48.81520636026428, 2.2252914336382292], "stop_id": 4009144, "stop_desc": "3 BIS R DU BEL AIR - 92048", "stop_name": "CHATELET - BEL AIR"}, "geometry": {"type": "Point", "coordinates": [2.2252914336382292, 48.81520636026428]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e50671a8a3bb6716064f7cf6b323e0a660d4c4e3", "fields": {"departement": "92", "stop_lat": 48.81551983667514, "code_postal": "92048", "stop_lon": 2.2241339640123865, "coord": [48.81551983667514, 2.2241339640123865], "stop_id": 4009145, "stop_desc": "ROUTE DES GARDES - 92048", "stop_name": "GARDES - BEL AIR"}, "geometry": {"type": "Point", "coordinates": [2.2241339640123865, 48.81551983667514]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9176f47b97eabd5d92eb146c53dc94f69d13cbce", "fields": {"departement": "92", "stop_lat": 48.81661431402316, "code_postal": "92048", "stop_lon": 2.231712137797927, "coord": [48.81661431402316, 2.231712137797927], "stop_id": 4009150, "stop_desc": "16 BOULEVARD VERD-DE-ST JULIEN - 92048", "stop_name": "JEANNE D'ARC"}, "geometry": {"type": "Point", "coordinates": [2.231712137797927, 48.81661431402316]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6af0be22ebc9b180efcf024f552370f5f9b0b027", "fields": {"departement": "92", "stop_lat": 48.8149894949538, "code_postal": "92048", "stop_lon": 2.2339473492547812, "coord": [48.8149894949538, 2.2339473492547812], "stop_id": 4009151, "stop_desc": "40 BOULEVARD VERD-DE-ST JULIEN - 92048", "stop_name": "STALINGRAD"}, "geometry": {"type": "Point", "coordinates": [2.2339473492547812, 48.8149894949538]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a739762e2e034e1986f8c07785b3f801e7846733", "fields": {"departement": "92", "stop_lat": 48.808400834248374, "code_postal": "92048", "stop_lon": 2.233225656940179, "coord": [48.808400834248374, 2.233225656940179], "stop_id": 4009154, "stop_desc": "FACE 20-22 RUE TERRE NEUVE - 92048", "stop_name": "TERRE NEUVE"}, "geometry": {"type": "Point", "coordinates": [2.233225656940179, 48.808400834248374]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "35e52f0ab548caeb584c81f244c0f903ed167db3", "fields": {"departement": "92", "stop_lat": 48.808332006461626, "code_postal": "92048", "stop_lon": 2.2480851270319326, "coord": [48.808332006461626, 2.2480851270319326], "stop_id": 4009162, "stop_desc": "69 RUE DE BELGIQUE - 92048", "stop_name": "ORPHELINAT"}, "geometry": {"type": "Point", "coordinates": [2.2480851270319326, 48.808332006461626]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ca78ab432f7356f617490cda261dbcb9e7da39fd", "fields": {"departement": "92", "stop_lat": 48.816318792177285, "code_postal": "92048", "stop_lon": 2.243743573303939, "coord": [48.816318792177285, 2.243743573303939], "stop_id": 4009176, "stop_desc": "RUE DES SORRIERES - 92048", "stop_name": "SORRIERES"}, "geometry": {"type": "Point", "coordinates": [2.243743573303939, 48.816318792177285]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "301c85133187a8d3259084ce305c75bbbac82974", "fields": {"departement": "92", "stop_lat": 48.81924588362742, "code_postal": "92048", "stop_lon": 2.2296652401647017, "coord": [48.81924588362742, 2.2296652401647017], "stop_id": 4009182, "stop_desc": "PLACE DE LA GARE - 92048", "stop_name": "GARE DE BELLEVUE.."}, "geometry": {"type": "Point", "coordinates": [2.2296652401647017, 48.81924588362742]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e816983c98a701995c5faef5b067f39b5c5d0de0", "fields": {"departement": "92", "stop_lat": 48.82310716843998, "code_postal": "92040", "stop_lon": 2.2753504327164387, "coord": [48.82310716843998, 2.2753504327164387], "stop_id": 4009230, "stop_desc": "5 R ETIENNE DOLET - 92040", "stop_name": "ETIENNE DOLET"}, "geometry": {"type": "Point", "coordinates": [2.2753504327164387, 48.82310716843998]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ef8b6ffdedb86917017ba00b7c5afe757ed24a25", "fields": {"departement": "92", "stop_lat": 48.830667352064815, "code_postal": "92040", "stop_lon": 2.278445245919053, "coord": [48.830667352064815, 2.278445245919053], "stop_id": 4009234, "stop_desc": "23 RUE GUYNEMER - 92040", "stop_name": "SEVERINE"}, "geometry": {"type": "Point", "coordinates": [2.278445245919053, 48.830667352064815]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c3491cc6852c01707e3a1752fdbf54763588c901", "fields": {"departement": "92", "stop_lat": 48.82736897894692, "code_postal": "92040", "stop_lon": 2.27862594528449, "coord": [48.82736897894692, 2.27862594528449], "stop_id": 4009238, "stop_desc": "FACE 39 AVENUE ERNEST RENAN - 92040", "stop_name": "CORENTIN CELTON-METRO"}, "geometry": {"type": "Point", "coordinates": [2.27862594528449, 48.82736897894692]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "64307c8bec8c8f7d9c54de6c2379c3aadb034491", "fields": {"departement": "92", "stop_lat": 48.821269179652546, "code_postal": "92040", "stop_lon": 2.2533302946057665, "coord": [48.821269179652546, 2.2533302946057665], "stop_id": 4009267, "stop_desc": "2-4 RUE ARISTIDE BRIAND - 92040", "stop_name": "LES TROIS MOULINS"}, "geometry": {"type": "Point", "coordinates": [2.2533302946057665, 48.821269179652546]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "25e77dcdbd758bd0b991f849218e52b60d44a7ff", "fields": {"departement": "92", "stop_lat": 48.917580644023914, "code_postal": "92025", "stop_lon": 2.224402000398648, "coord": [48.917580644023914, 2.224402000398648], "stop_id": 4009353, "stop_desc": "195 BD CHARLES DE GAULLE - 92025", "stop_name": "PARC PIERRE LAGRAVERE"}, "geometry": {"type": "Point", "coordinates": [2.224402000398648, 48.917580644023914]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "710eab9b8c809bbc48f73849d291be982280db7d", "fields": {"departement": "92", "stop_lat": 48.907437578853504, "code_postal": "92035", "stop_lon": 2.238221171763594, "coord": [48.907437578853504, 2.238221171763594], "stop_id": 4009359, "stop_desc": "89 BD NATIONAL - 92035", "stop_name": "CHARLEBOURG"}, "geometry": {"type": "Point", "coordinates": [2.238221171763594, 48.907437578853504]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3a20ab392deaff3a499d08b6077a87d4e1c4f989", "fields": {"departement": "92", "stop_lat": 48.907725514741244, "code_postal": "92035", "stop_lon": 2.23864326147143, "coord": [48.907725514741244, 2.23864326147143], "stop_id": 4009360, "stop_desc": "90 BD NATIONAL - 92035", "stop_name": "CHARLEBOURG"}, "geometry": {"type": "Point", "coordinates": [2.23864326147143, 48.907725514741244]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3890a1468a10297e91c286371c82af75db08fd39", "fields": {"departement": "92", "stop_lat": 48.875998165652426, "code_postal": "92073", "stop_lon": 2.225514407406248, "coord": [48.875998165652426, 2.225514407406248], "stop_id": 4009370, "stop_desc": "R ROGER SALENGRO - 92073", "stop_name": "BELVEDERE"}, "geometry": {"type": "Point", "coordinates": [2.225514407406248, 48.875998165652426]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a2122b67971a0fac492cc11006903bb1309ecf50", "fields": {"departement": "92", "stop_lat": 48.85677813384896, "code_postal": "92064", "stop_lon": 2.220271193724712, "coord": [48.85677813384896, 2.220271193724712], "stop_id": 4009373, "stop_desc": "3 AV DE SURESNES - 92064", "stop_name": "LES COTEAUX"}, "geometry": {"type": "Point", "coordinates": [2.220271193724712, 48.85677813384896]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "168d6448397f82984fdea39e3c686da653496b4a", "fields": {"departement": "92", "stop_lat": 48.85002041379945, "code_postal": "92064", "stop_lon": 2.2211443924745797, "coord": [48.85002041379945, 2.2211443924745797], "stop_id": 4009376, "stop_desc": "BD SENARD - 92064", "stop_name": "LES MILONS"}, "geometry": {"type": "Point", "coordinates": [2.2211443924745797, 48.85002041379945]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "61e109fe2bbbfe4720ea88c7319da9999db8c457", "fields": {"departement": "92", "stop_lat": 48.82147452777927, "code_postal": "92040", "stop_lon": 2.251410827016059, "coord": [48.82147452777927, 2.251410827016059], "stop_id": 4009384, "stop_desc": "R JEAN-JACQUES ROUSSEAU - 92040", "stop_name": "LES MOULINEAUX"}, "geometry": {"type": "Point", "coordinates": [2.251410827016059, 48.82147452777927]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1993d9753c812967b4d02c4901ab5533a7e05b87", "fields": {"departement": "75", "stop_lat": 48.83212737623452, "code_postal": "75115", "stop_lon": 2.2872652559205036, "coord": [48.83212737623452, 2.2872652559205036], "stop_id": 4009397, "stop_desc": "1 AV ERNEST RENAN - 75115", "stop_name": "PORTE DE VERSAILLES"}, "geometry": {"type": "Point", "coordinates": [2.2872652559205036, 48.83212737623452]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f2d5394c43c0f58311a0aecb66cf285fc5869cc7", "fields": {"departement": "75", "stop_lat": 48.8419870845697, "code_postal": "75115", "stop_lon": 2.320574757251473, "coord": [48.8419870845697, 2.320574757251473], "stop_id": 4009617, "stop_desc": "PLACE RAOUL DAUTRY - 75115", "stop_name": "GARE MONTPARNASSE"}, "geometry": {"type": "Point", "coordinates": [2.320574757251473, 48.8419870845697]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "445e961cec90f5411024fc0d8da3bd63a4651066", "fields": {"departement": "75", "stop_lat": 48.858263784804244, "code_postal": "75107", "stop_lon": 2.323497938538786, "coord": [48.858263784804244, 2.323497938538786], "stop_id": 4009631, "stop_desc": "256 BOULEVARD SAINT GERMAIN - 75107", "stop_name": "SOLFERINO - BELLECHASSE"}, "geometry": {"type": "Point", "coordinates": [2.323497938538786, 48.858263784804244]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f5209b6f5847dbf89b40fe373a7fce2e022fc72d", "fields": {"departement": "75", "stop_lat": 48.85821880950313, "code_postal": "75107", "stop_lon": 2.323171057847021, "coord": [48.85821880950313, 2.323171057847021], "stop_id": 4009632, "stop_desc": "223 BOULEVARD SAINT GERMAIN - 75107", "stop_name": "SOLFERINO - BELLECHASSE"}, "geometry": {"type": "Point", "coordinates": [2.323171057847021, 48.85821880950313]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e822cc5907ff4ed281e9f0dafcc4e3f83c67e61e", "fields": {"departement": "75", "stop_lat": 48.861543739204706, "code_postal": "75107", "stop_lon": 2.3200372331720067, "coord": [48.861543739204706, 2.3200372331720067], "stop_id": 4009636, "stop_desc": "241 BOULEVARD SAINT GERMAIN - 75107", "stop_name": "ASSEMBLEE NATIONALE"}, "geometry": {"type": "Point", "coordinates": [2.3200372331720067, 48.861543739204706]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "110155c1c75c1a96fcf559ce6c4995d769a42f49", "fields": {"departement": "75", "stop_lat": 48.87052260432167, "code_postal": "75108", "stop_lon": 2.3238352803584, "coord": [48.87052260432167, 2.3238352803584], "stop_id": 4009640, "stop_desc": "11 PLACE DE LA MADELEINE - 75108", "stop_name": "MADELEINE"}, "geometry": {"type": "Point", "coordinates": [2.3238352803584, 48.87052260432167]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0265577761c75865f46ac326081b865b511f7e5d", "fields": {"departement": "75", "stop_lat": 48.874863096583965, "code_postal": "75108", "stop_lon": 2.3207958046274593, "coord": [48.874863096583965, 2.3207958046274593], "stop_id": 4009644, "stop_desc": "FACE 24 RUE DE LA PEPINIERE - 75108", "stop_name": "SAINT-AUGUSTIN"}, "geometry": {"type": "Point", "coordinates": [2.3207958046274593, 48.874863096583965]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "79ae4f0445ca7108e669ff3475e9642bac7c2986", "fields": {"departement": "75", "stop_lat": 48.87755857985456, "code_postal": "75108", "stop_lon": 2.316312124207015, "coord": [48.87755857985456, 2.316312124207015], "stop_id": 4009646, "stop_desc": "81-83 BOULEVARD MALESHERBES - 75108", "stop_name": "LISBONNE - MAIRIE DU 8E"}, "geometry": {"type": "Point", "coordinates": [2.316312124207015, 48.87755857985456]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "24f76812f621031253be2e77f48b7d2c0432aa5b", "fields": {"departement": "75", "stop_lat": 48.88301250452481, "code_postal": "75117", "stop_lon": 2.3097144330949733, "coord": [48.88301250452481, 2.3097144330949733], "stop_id": 4009650, "stop_desc": "BOULEVARD MALESHERBES - 75117", "stop_name": "PLACE DU GENERAL CATROUX"}, "geometry": {"type": "Point", "coordinates": [2.3097144330949733, 48.88301250452481]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a464f79dd3662a1e4ba54eefd09761fa35cf1317", "fields": {"departement": "75", "stop_lat": 48.891988178822736, "code_postal": "75117", "stop_lon": 2.300305376823297, "coord": [48.891988178822736, 2.300305376823297], "stop_id": 4009659, "stop_desc": "4 BOULEVARD DE REIMS - 75117", "stop_name": "REIMS - HOTEL DES IMPOTS"}, "geometry": {"type": "Point", "coordinates": [2.300305376823297, 48.891988178822736]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f89590c05ef2fb43691b3bff661e0d5568eb7984", "fields": {"departement": "75", "stop_lat": 48.87536697356267, "code_postal": "75108", "stop_lon": 2.325823281094452, "coord": [48.87536697356267, 2.325823281094452], "stop_id": 4009664, "stop_desc": "111 R SAINT-LAZARE - 75108", "stop_name": "GARE SAINT-LAZARE"}, "geometry": {"type": "Point", "coordinates": [2.325823281094452, 48.87536697356267]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3c5a8a4e24859332bc24db15468256136893fd6c", "fields": {"departement": "92", "stop_lat": 48.915100681604876, "code_postal": "92004", "stop_lon": 2.293539328167843, "coord": [48.915100681604876, 2.293539328167843], "stop_id": 4015691, "stop_desc": "69 BOULEVARD VOLTAIRE - 92004", "stop_name": "DUSSAU"}, "geometry": {"type": "Point", "coordinates": [2.293539328167843, 48.915100681604876]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2746a630726965621ec5060d322449a5e3a916d7", "fields": {"departement": "92", "stop_lat": 48.917972927646225, "code_postal": "92004", "stop_lon": 2.2846460759971894, "coord": [48.917972927646225, 2.2846460759971894], "stop_id": 4015694, "stop_desc": "158 BOULEVARD VOLTAIRE - 92004", "stop_name": "GUILLEMIN"}, "geometry": {"type": "Point", "coordinates": [2.2846460759971894, 48.917972927646225]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "adb6d0cf2534d0bb61ac7cad4b3f39e3428cd742", "fields": {"departement": "92", "stop_lat": 48.917981642361255, "code_postal": "92004", "stop_lon": 2.2840324362343334, "coord": [48.917981642361255, 2.2840324362343334], "stop_id": 4015695, "stop_desc": "167 BOULEVARD VOLTAIRE - 92004", "stop_name": "GUILLEMIN"}, "geometry": {"type": "Point", "coordinates": [2.2840324362343334, 48.917981642361255]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4cf6e5c50943f0b0d0d2bb1f4a917813a37bec2f", "fields": {"departement": "92", "stop_lat": 48.91865458939018, "code_postal": "92004", "stop_lon": 2.2816726441871147, "coord": [48.91865458939018, 2.2816726441871147], "stop_id": 4015697, "stop_desc": "187 BOULEVARD VOLTAIRE - 92004", "stop_name": "BOURGUIGNONS"}, "geometry": {"type": "Point", "coordinates": [2.2816726441871147, 48.91865458939018]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c8789e1732e6890ef742a92a3977615f57f2eb36", "fields": {"departement": "95", "stop_lat": 48.94252482707516, "code_postal": "95018", "stop_lon": 2.2528472607038177, "coord": [48.94252482707516, 2.2528472607038177], "stop_id": 4015708, "stop_desc": "2 AVENUE GABRIEL PERI - 95018", "stop_name": "BORDEREL"}, "geometry": {"type": "Point", "coordinates": [2.2528472607038177, 48.94252482707516]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4e220916a0206e330c38d8314e5deb797706c9fa", "fields": {"departement": "95", "stop_lat": 48.94418619308955, "code_postal": "95018", "stop_lon": 2.2511800879323847, "coord": [48.94418619308955, 2.2511800879323847], "stop_id": 4015710, "stop_desc": "32 AVENUE GABRIEL PERI - 95018", "stop_name": "PAUL VAILLANT COUTURIER"}, "geometry": {"type": "Point", "coordinates": [2.2511800879323847, 48.94418619308955]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "59b99c834130fac8a96a3fe0ac78f9096f860c4d", "fields": {"departement": "95", "stop_lat": 48.94595216278769, "code_postal": "95018", "stop_lon": 2.2577533738675597, "coord": [48.94595216278769, 2.2577533738675597], "stop_id": 4015716, "stop_desc": "PLACE PIERRE SEMARD (GARE ROUTIERE) - 95018", "stop_name": "GARE D'ARGENTEUIL"}, "geometry": {"type": "Point", "coordinates": [2.2577533738675597, 48.94595216278769]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3c71c590c622a9d61387ce92929360502af24abb", "fields": {"departement": "92", "stop_lat": 48.91323216391939, "code_postal": "92004", "stop_lon": 2.295722503467884, "coord": [48.91323216391939, 2.295722503467884], "stop_id": 4015725, "stop_desc": "FACE 33 BD VOLTAIRE - 92004", "stop_name": "PLACE VOLTAIRE"}, "geometry": {"type": "Point", "coordinates": [2.295722503467884, 48.91323216391939]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f76b97e08523f9f3529c37d4ba86a8702d511eaa", "fields": {"departement": "92", "stop_lat": 48.915100681604876, "code_postal": "92004", "stop_lon": 2.293539328167843, "coord": [48.915100681604876, 2.293539328167843], "stop_id": 4015728, "stop_desc": "69 BOULEVARD VOLTAIRE - 92004", "stop_name": "DUSSAU"}, "geometry": {"type": "Point", "coordinates": [2.293539328167843, 48.915100681604876]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cf19cb873825677c9f660d2c1579bc873cd4744f", "fields": {"departement": "92", "stop_lat": 48.916931615298246, "code_postal": "92004", "stop_lon": 2.287387962664046, "coord": [48.916931615298246, 2.287387962664046], "stop_id": 4015730, "stop_desc": "141 BOULEVARD VOLTAIRE - 92004", "stop_name": "ALMA"}, "geometry": {"type": "Point", "coordinates": [2.287387962664046, 48.916931615298246]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0ea7788ef934a43dc19ecc7ab80f57802185280c", "fields": {"departement": "92", "stop_lat": 48.93449739935261, "code_postal": "92025", "stop_lon": 2.263077151509599, "coord": [48.93449739935261, 2.263077151509599], "stop_id": 4015742, "stop_desc": "FACE 205 AVENUE DE STALINGRAD - 92025", "stop_name": "PONT DU CHEMIN DE FER"}, "geometry": {"type": "Point", "coordinates": [2.263077151509599, 48.93449739935261]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4889b16fd1a06deeb275624fe80ee3df8bb967e9", "fields": {"departement": "92", "stop_lat": 48.933949446550976, "code_postal": "92025", "stop_lon": 2.263473509474367, "coord": [48.933949446550976, 2.263473509474367], "stop_id": 4015743, "stop_desc": "179 AVENUE DE STALINGRAD - 92025", "stop_name": "PONT DU CHEMIN DE FER"}, "geometry": {"type": "Point", "coordinates": [2.263473509474367, 48.933949446550976]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3b27fbfd07049449ac3a946171d72c5c56583b7d", "fields": {"departement": "95", "stop_lat": 48.94269678917408, "code_postal": "95018", "stop_lon": 2.254579610422324, "coord": [48.94269678917408, 2.254579610422324], "stop_id": 4015745, "stop_desc": "FACE 14 BOULEVARD HELOISE - 95018", "stop_name": "BORDEREL - HELOISE"}, "geometry": {"type": "Point", "coordinates": [2.254579610422324, 48.94269678917408]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9f7f19dc0489778d813b421b54e59296665d95a4", "fields": {"departement": "95", "stop_lat": 48.94591398921132, "code_postal": "95018", "stop_lon": 2.2544789675810435, "coord": [48.94591398921132, 2.2544789675810435], "stop_id": 4015747, "stop_desc": "42 RUE ALFRED LABRIERE - 95018", "stop_name": "LABRIERE"}, "geometry": {"type": "Point", "coordinates": [2.2544789675810435, 48.94591398921132]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b8ad812c0f39efdfd48e0fea0df6c9c7e597d97c", "fields": {"departement": "92", "stop_lat": 48.92646908462465, "code_postal": "92009", "stop_lon": 2.273385701754743, "coord": [48.92646908462465, 2.273385701754743], "stop_id": 4015752, "stop_desc": "359 AVENUE D'ARGENTEUIL - 92009", "stop_name": "QUATRE ROUTES"}, "geometry": {"type": "Point", "coordinates": [2.273385701754743, 48.92646908462465]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1e835e11a4055c87551d87203a91090277029cc8", "fields": {"departement": "92", "stop_lat": 48.923333845498576, "code_postal": "92009", "stop_lon": 2.275667055854338, "coord": [48.923333845498576, 2.275667055854338], "stop_id": 4015753, "stop_desc": "299 AVENUE D'ARGENTEUIL - 92009", "stop_name": "GRAMME"}, "geometry": {"type": "Point", "coordinates": [2.275667055854338, 48.923333845498576]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a61549c7ddf0294c42f6aee76c869909216ccbab", "fields": {"departement": "92", "stop_lat": 48.83508800198344, "code_postal": "92012", "stop_lon": 2.2476034844199417, "coord": [48.83508800198344, 2.2476034844199417], "stop_id": 4015760, "stop_desc": "68 AVENUE EDOUARD VAILLANT - 92012", "stop_name": "RENE DESCARTES"}, "geometry": {"type": "Point", "coordinates": [2.2476034844199417, 48.83508800198344]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c9cf645e65f008b4b12540c6caac3979dc91bfaa", "fields": {"departement": "92", "stop_lat": 48.83836610338885, "code_postal": "92012", "stop_lon": 2.2336148824234163, "coord": [48.83836610338885, 2.2336148824234163], "stop_id": 4015766, "stop_desc": "FACE 81 AVENUE ANDRE MORIZET - 92012", "stop_name": "ANCIENNE MAIRIE DE BOULOGNE-BILLANCOURT"}, "geometry": {"type": "Point", "coordinates": [2.2336148824234163, 48.83836610338885]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4ab7d165a5a1fee1f6d123510f936434c357dc77", "fields": {"departement": "92", "stop_lat": 48.85986493926487, "code_postal": "92073", "stop_lon": 2.2245412161882028, "coord": [48.85986493926487, 2.2245412161882028], "stop_id": 4015781, "stop_desc": "FACE 3 QUAI MARCEL DASSAULT - 92073", "stop_name": "RUE DU VAL D'OR"}, "geometry": {"type": "Point", "coordinates": [2.2245412161882028, 48.85986493926487]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "606c966451ebf34c1f75784ee7f4609d02fc0be6", "fields": {"departement": "92", "stop_lat": 48.8624995256755, "code_postal": "92073", "stop_lon": 2.2258976563733857, "coord": [48.8624995256755, 2.2258976563733857], "stop_id": 4015782, "stop_desc": "QUAI LEON BLUM - 92073", "stop_name": "CLAVEL"}, "geometry": {"type": "Point", "coordinates": [2.2258976563733857, 48.8624995256755]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0dee8115864476a897ac20600b3384d5aba286c4", "fields": {"departement": "92", "stop_lat": 48.881821745766054, "code_postal": "92062", "stop_lon": 2.246459778300463, "coord": [48.881821745766054, 2.246459778300463], "stop_id": 4015792, "stop_desc": "34-36 QUAI DE DION BOUTON - 92062", "stop_name": "SQUARE LEON BLUM"}, "geometry": {"type": "Point", "coordinates": [2.246459778300463, 48.881821745766054]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fa8011758cd07d82c8a464a56122478ee8dbdb1f", "fields": {"departement": "92", "stop_lat": 48.883324123574575, "code_postal": "92062", "stop_lon": 2.248460335085293, "coord": [48.883324123574575, 2.248460335085293], "stop_id": 4015794, "stop_desc": "QUAI DE DION BOUTON - 92062", "stop_name": "SOLJENITSYNE"}, "geometry": {"type": "Point", "coordinates": [2.248460335085293, 48.883324123574575]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d54abf246161aa24dd26b4028c459b37ac660336", "fields": {"departement": "92", "stop_lat": 48.8904021795583, "code_postal": "92026", "stop_lon": 2.255617058386803, "coord": [48.8904021795583, 2.255617058386803], "stop_id": 4015797, "stop_desc": "1 RUE DE L'ABREUVOIR - 92026", "stop_name": "PAUL DOUMER"}, "geometry": {"type": "Point", "coordinates": [2.255617058386803, 48.8904021795583]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1672efec2576294d52c7891ba5d40351e04da135", "fields": {"departement": "92", "stop_lat": 48.892387289396794, "code_postal": "92026", "stop_lon": 2.254087426083414, "coord": [48.892387289396794, 2.254087426083414], "stop_id": 4015798, "stop_desc": "4 RUE VICTOR HUGO - 92026", "stop_name": "VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.254087426083414, 48.892387289396794]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "09880241e01e713649df0899cfa0b1a029905704", "fields": {"departement": "92", "stop_lat": 48.89808242697684, "code_postal": "92026", "stop_lon": 2.263619993014687, "coord": [48.89808242697684, 2.263619993014687], "stop_id": 4015805, "stop_desc": "97 BOULEVARD SAINT-DENIS - 92026", "stop_name": "PONT BINEAU"}, "geometry": {"type": "Point", "coordinates": [2.263619993014687, 48.89808242697684]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "739ae3423d37be2eba3ab9d1b906a6ae6ed460f9", "fields": {"departement": "92", "stop_lat": 48.9037518671953, "code_postal": "92026", "stop_lon": 2.277094478249221, "coord": [48.9037518671953, 2.277094478249221], "stop_id": 4015811, "stop_desc": "FACE 250 BOULEVARD SAINT-DENIS - 92026", "stop_name": "HAUSSMANN"}, "geometry": {"type": "Point", "coordinates": [2.277094478249221, 48.9037518671953]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "309db9e5f9a7163dfaee9e18e742fa4fc0a0114f", "fields": {"departement": "92", "stop_lat": 48.91037177065861, "code_postal": "92004", "stop_lon": 2.2890303852704728, "coord": [48.91037177065861, 2.2890303852704728], "stop_id": 4015817, "stop_desc": "FACE 8 PLACE DE L'HOTEL DE VILLE - 92004", "stop_name": "MAIRIE D'ASNIERES"}, "geometry": {"type": "Point", "coordinates": [2.2890303852704728, 48.91037177065861]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "544007596681f4c645d19ab1914f97f88309d87d", "fields": {"departement": "92", "stop_lat": 48.884961254395016, "code_postal": "92062", "stop_lon": 2.250433527024066, "coord": [48.884961254395016, 2.250433527024066], "stop_id": 4015825, "stop_desc": "58 QUAI DE DION BOUTON - 92062", "stop_name": "BELLINI"}, "geometry": {"type": "Point", "coordinates": [2.250433527024066, 48.884961254395016]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d6ddcafcc9026b1feec524f50e33815f08c59c07", "fields": {"departement": "92", "stop_lat": 48.916135041733625, "code_postal": "92004", "stop_lon": 2.295938348237072, "coord": [48.916135041733625, 2.295938348237072], "stop_id": 4015880, "stop_desc": "PISTE GARE ROUTIERE - 92004", "stop_name": "GABRIEL PERI-METRO"}, "geometry": {"type": "Point", "coordinates": [2.295938348237072, 48.916135041733625]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a0f120976d737cd25052f48a618f21cfd8c623c0", "fields": {"departement": "92", "stop_lat": 48.916323540007774, "code_postal": "92004", "stop_lon": 2.295283679264348, "coord": [48.916323540007774, 2.295283679264348], "stop_id": 4015881, "stop_desc": "PISTE GARE ROUTIERE - 92004", "stop_name": "GABRIEL PERI-METRO"}, "geometry": {"type": "Point", "coordinates": [2.295283679264348, 48.916323540007774]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6e62feebcc1699e3844fdd63106fab28f3b6ee0b", "fields": {"departement": "92", "stop_lat": 48.92001712026825, "code_postal": "92036", "stop_lon": 2.2950897716169005, "coord": [48.92001712026825, 2.2950897716169005], "stop_id": 4015884, "stop_desc": "101 AV GABRIEL PERI - 92036", "stop_name": "BASLY"}, "geometry": {"type": "Point", "coordinates": [2.2950897716169005, 48.92001712026825]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f73144bfd77237da01d59f897146f37b19c2845e", "fields": {"departement": "92", "stop_lat": 48.921311130991214, "code_postal": "92036", "stop_lon": 2.294775064543917, "coord": [48.921311130991214, 2.294775064543917], "stop_id": 4015886, "stop_desc": "FACE 98 AVENUE GABRIEL PERI - 92036", "stop_name": "8 MAI 1945"}, "geometry": {"type": "Point", "coordinates": [2.294775064543917, 48.921311130991214]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ef369285cd0b4bec7319606cb9f203f02ea9873f", "fields": {"departement": "92", "stop_lat": 48.93400929531268, "code_postal": "92036", "stop_lon": 2.2938370966832227, "coord": [48.93400929531268, 2.2938370966832227], "stop_id": 4015893, "stop_desc": "4 RUE EUGENE VARLIN - 92036", "stop_name": "LE VILLAGE"}, "geometry": {"type": "Point", "coordinates": [2.2938370966832227, 48.93400929531268]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "64d4e933fbe06ee47370f82c57e1cb0570c1ed43", "fields": {"departement": "92", "stop_lat": 48.9301126692216, "code_postal": "92004", "stop_lon": 2.2811147693439118, "coord": [48.9301126692216, 2.2811147693439118], "stop_id": 4015903, "stop_desc": "0 R DE LA PAIX - 92004", "stop_name": "QUARTIER DES FLEURS"}, "geometry": {"type": "Point", "coordinates": [2.2811147693439118, 48.9301126692216]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "018b8bc9dc6d146fbf13e1224af4f3861a10bd7d", "fields": {"departement": "92", "stop_lat": 48.9276799113124, "code_postal": "92025", "stop_lon": 2.2548081645315006, "coord": [48.9276799113124, 2.2548081645315006], "stop_id": 4015916, "stop_desc": "11 BOULEVARD GAMBETTA - 92025", "stop_name": "VALMY-GAMBETTA"}, "geometry": {"type": "Point", "coordinates": [2.2548081645315006, 48.9276799113124]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b7ac1aef76aa531cc2f68e74201e805fd24f72f9", "fields": {"departement": "92", "stop_lat": 48.92749981390934, "code_postal": "92025", "stop_lon": 2.2542901786166416, "coord": [48.92749981390934, 2.2542901786166416], "stop_id": 4015917, "stop_desc": "4 BOULEVARD GAMBETTA - 92025", "stop_name": "VALMY-GAMBETTA"}, "geometry": {"type": "Point", "coordinates": [2.2542901786166416, 48.92749981390934]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "728aff125e5fc61cade404bb570a809553be4bf0", "fields": {"departement": "92", "stop_lat": 48.93241353720656, "code_postal": "92025", "stop_lon": 2.2648533423424495, "coord": [48.93241353720656, 2.2648533423424495], "stop_id": 4015926, "stop_desc": "76-78 RUE JEAN JACQUES ROUSSEAU - 92025", "stop_name": "STALINGRAD-JEAN JACQUES ROUSSEAU"}, "geometry": {"type": "Point", "coordinates": [2.2648533423424495, 48.93241353720656]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "292634b23d50ffe4d0bab249d617fa6ddf576ebb", "fields": {"departement": "92", "stop_lat": 48.90479539967374, "code_postal": "92024", "stop_lon": 2.302177566473815, "coord": [48.90479539967374, 2.302177566473815], "stop_id": 4016030, "stop_desc": "FACE 104 BOULEVARD JEAN JAURES - 92024", "stop_name": "DANIELLE CASANOVA"}, "geometry": {"type": "Point", "coordinates": [2.302177566473815, 48.90479539967374]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "55e8e5fcfa9aa3c7e204cf39c122390eae7cc71b", "fields": {"departement": "92", "stop_lat": 48.911294823804006, "code_postal": "92024", "stop_lon": 2.3088813304551024, "coord": [48.911294823804006, 2.3088813304551024], "stop_id": 4016034, "stop_desc": "VOIE NOUVELLE - 92024", "stop_name": "BERGES DE SEINE"}, "geometry": {"type": "Point", "coordinates": [2.3088813304551024, 48.911294823804006]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0c80965bed5119f8972fc67b495696a9ca816a80", "fields": {"departement": "92", "stop_lat": 48.90487707648954, "code_postal": "92024", "stop_lon": 2.3049858663019815, "coord": [48.90487707648954, 2.3049858663019815], "stop_id": 4016039, "stop_desc": "13 RUE DU LANDY - 92024", "stop_name": "LANDY - MARTRE"}, "geometry": {"type": "Point", "coordinates": [2.3049858663019815, 48.90487707648954]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ed05f0f3bc3bf55f79ca92b4762806a1fee4de9f", "fields": {"departement": "92", "stop_lat": 48.92332598264768, "code_postal": "92036", "stop_lon": 2.3000920948884778, "coord": [48.92332598264768, 2.3000920948884778], "stop_id": 4016047, "stop_desc": "70 RUE HENRI BARBUSSE - 92036", "stop_name": "RUE BRENU"}, "geometry": {"type": "Point", "coordinates": [2.3000920948884778, 48.92332598264768]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "94b777cbbecb44f02cf2404d6addc7fed5f2c4c7", "fields": {"departement": "92", "stop_lat": 48.92960808864332, "code_postal": "92036", "stop_lon": 2.3009059451617224, "coord": [48.92960808864332, 2.3009059451617224], "stop_id": 4016051, "stop_desc": "FACE 151 RUE HENRI BARBUSSE - 92036", "stop_name": "CASERNE DES POMPIERS"}, "geometry": {"type": "Point", "coordinates": [2.3009059451617224, 48.92960808864332]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "80731f655972409a219fe6144bd4209ffab8f1e6", "fields": {"departement": "92", "stop_lat": 48.936825497481216, "code_postal": "92036", "stop_lon": 2.3041884087956293, "coord": [48.936825497481216, 2.3041884087956293], "stop_id": 4016056, "stop_desc": "AVENUE MARCEL PAUL - 92036", "stop_name": "LES BARBANNIERS"}, "geometry": {"type": "Point", "coordinates": [2.3041884087956293, 48.936825497481216]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f13dafba61a5aa5d16e7c9d33c1120cc99c0bf22", "fields": {"departement": "95", "stop_lat": 48.94618569124683, "code_postal": "95018", "stop_lon": 2.257562003803285, "coord": [48.94618569124683, 2.257562003803285], "stop_id": 4016084, "stop_desc": "PISTE GARE ROUTIERE - 95018", "stop_name": "GARE D'ARGENTEUIL"}, "geometry": {"type": "Point", "coordinates": [2.257562003803285, 48.94618569124683]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "12e219a9ffcbac654e6fe0f0a67abe95a7a76074", "fields": {"departement": "92", "stop_lat": 48.90063734339747, "code_postal": "92024", "stop_lon": 2.314394362882737, "coord": [48.90063734339747, 2.314394362882737], "stop_id": 4016098, "stop_desc": "FACE 5 RUE D'ALSACE - 92024", "stop_name": "MAISON DU PEUPLE"}, "geometry": {"type": "Point", "coordinates": [2.314394362882737, 48.90063734339747]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d88bf3cac5a1038fed72726c0f314c844395914b", "fields": {"departement": "92", "stop_lat": 48.90619704877619, "code_postal": "92024", "stop_lon": 2.301058700163011, "coord": [48.90619704877619, 2.301058700163011], "stop_id": 4016109, "stop_desc": "133 BOULEVARD JEAN JAURES - 92024", "stop_name": "GABRIEL PERI"}, "geometry": {"type": "Point", "coordinates": [2.301058700163011, 48.90619704877619]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "793b5afb378862f977674526009ae2101ffd18f7", "fields": {"departement": "92", "stop_lat": 48.90048145362342, "code_postal": "92024", "stop_lon": 2.301703379352749, "coord": [48.90048145362342, 2.301703379352749], "stop_id": 4016118, "stop_desc": "39 RUE CASTERES - 92024", "stop_name": "NEUILLY - CASTERES"}, "geometry": {"type": "Point", "coordinates": [2.301703379352749, 48.90048145362342]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f7517e67cae69e3bb7b89284fc93bb5a76a84487", "fields": {"departement": "92", "stop_lat": 48.896357602165864, "code_postal": "92024", "stop_lon": 2.3061361372549865, "coord": [48.896357602165864, 2.3061361372549865], "stop_id": 4016121, "stop_desc": "FACE 13 RUE DES CAILLOUX - 92024", "stop_name": "CAILLOUX"}, "geometry": {"type": "Point", "coordinates": [2.3061361372549865, 48.896357602165864]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ad8edabdb6109b790f16f957b32f7cbb8aa27b9b", "fields": {"departement": "92", "stop_lat": 48.90149450534568, "code_postal": "92024", "stop_lon": 2.294150610420458, "coord": [48.90149450534568, 2.294150610420458], "stop_id": 4016125, "stop_desc": "FACE 10 RUE PIERRE BEREGOVOY - 92024", "stop_name": "RUE PETIT"}, "geometry": {"type": "Point", "coordinates": [2.294150610420458, 48.90149450534568]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7a0431dc089754da776e1bf4b668c1f6616879f8", "fields": {"departement": "92", "stop_lat": 48.906070014499605, "code_postal": "92024", "stop_lon": 2.2972551523114686, "coord": [48.906070014499605, 2.2972551523114686], "stop_id": 4016128, "stop_desc": "27 RUE FOURNIER - 92024", "stop_name": "RUE DU PORT"}, "geometry": {"type": "Point", "coordinates": [2.2972551523114686, 48.906070014499605]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0ac05701522a0b649358c9c975d8d503d162210f", "fields": {"departement": "75", "stop_lat": 48.8571764094318, "code_postal": "75104", "stop_lon": 2.35008495875021, "coord": [48.8571764094318, 2.35008495875021], "stop_id": 4016266, "stop_desc": "6 AVENUE VICTORIA - 75104", "stop_name": "HOTEL DE VILLE"}, "geometry": {"type": "Point", "coordinates": [2.35008495875021, 48.8571764094318]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2feb804b49dfd24046e62cc10e626ef67a581aec", "fields": {"departement": "75", "stop_lat": 48.86330642060076, "code_postal": "75101", "stop_lon": 2.341913358368381, "coord": [48.86330642060076, 2.341913358368381], "stop_id": 4016272, "stop_desc": "15 RUE DU LOUVRE - 75101", "stop_name": "COQUILLIERE - LES HALLES"}, "geometry": {"type": "Point", "coordinates": [2.341913358368381, 48.86330642060076]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "64e197241994a88f7ad74b0e9063bb8206c1eadd", "fields": {"departement": "75", "stop_lat": 48.868303315676926, "code_postal": "75102", "stop_lon": 2.3436439506432523, "coord": [48.868303315676926, 2.3436439506432523], "stop_id": 4016274, "stop_desc": "134-136 RUE MONTMARTRE - 75102", "stop_name": "REAUMUR - MONTMARTRE"}, "geometry": {"type": "Point", "coordinates": [2.3436439506432523, 48.868303315676926]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b4359940b2755426fee615aaa65a1b405fb45853", "fields": {"departement": "75", "stop_lat": 48.88778725739655, "code_postal": "75117", "stop_lon": 2.3248665614447788, "coord": [48.88778725739655, 2.3248665614447788], "stop_id": 4016288, "stop_desc": "69-71 AVENUE DE CLICHY - 75117", "stop_name": "LA FOURCHE"}, "geometry": {"type": "Point", "coordinates": [2.3248665614447788, 48.88778725739655]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "519bde3645fc1a3ac9e5f592838f40b0eb48aedd", "fields": {"departement": "75", "stop_lat": 48.8893417810624, "code_postal": "75117", "stop_lon": 2.3225629388550773, "coord": [48.8893417810624, 2.3225629388550773], "stop_id": 4016289, "stop_desc": "100 AVENUE DE CLICHY - 75117", "stop_name": "LEGENDRE"}, "geometry": {"type": "Point", "coordinates": [2.3225629388550773, 48.8893417810624]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5727dacc632f16fc3887998b259ecb514bb5a112", "fields": {"departement": "75", "stop_lat": 48.89295368222563, "code_postal": "75117", "stop_lon": 2.316251384985718, "coord": [48.89295368222563, 2.316251384985718], "stop_id": 4016294, "stop_desc": "182 AVENUE DE CLICHY - 75117", "stop_name": "BOULAY"}, "geometry": {"type": "Point", "coordinates": [2.316251384985718, 48.89295368222563]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0a3445b8a19404e69aeae22da27b656d5ffc80e8", "fields": {"departement": "75", "stop_lat": 48.89288171215441, "code_postal": "75117", "stop_lon": 2.315842525078344, "coord": [48.89288171215441, 2.315842525078344], "stop_id": 4016295, "stop_desc": "177 AVENUE DE CLICHY - 75117", "stop_name": "BOULAY"}, "geometry": {"type": "Point", "coordinates": [2.315842525078344, 48.89288171215441]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1d3461056de7156ed575f6a1033bfe55cf27e5e2", "fields": {"departement": "93", "stop_lat": 48.90657485833315, "code_postal": "93008", "stop_lon": 2.4559320596369205, "coord": [48.90657485833315, 2.4559320596369205], "stop_id": 4614624, "stop_desc": "302 AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "LAMARTINE"}, "geometry": {"type": "Point", "coordinates": [2.4559320596369205, 48.90657485833315]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ad6f59a6e750542e23732244ac9c1f83aa9a775a", "fields": {"departement": "93", "stop_lat": 48.907282528066425, "code_postal": "93008", "stop_lon": 2.449021527354522, "coord": [48.907282528066425, 2.449021527354522], "stop_id": 4614626, "stop_desc": "PISTE GARE ROUTIERE - 93008", "stop_name": "BOBIGNY - PABLO PICASSO"}, "geometry": {"type": "Point", "coordinates": [2.449021527354522, 48.907282528066425]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0895b23a498b88212a7de2ebc34ec958ef7e3d6a", "fields": {"departement": "93", "stop_lat": 48.90084337776183, "code_postal": "93010", "stop_lon": 2.4785612667664876, "coord": [48.90084337776183, 2.4785612667664876], "stop_id": 4614629, "stop_desc": "50 RUE ROGER SALENGRO - 93010", "stop_name": "BLANQUI - SALENGRO"}, "geometry": {"type": "Point", "coordinates": [2.4785612667664876, 48.90084337776183]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d897419382255410d0c3ed9ce9b564e7dcbfd78b", "fields": {"departement": "93", "stop_lat": 48.84075839430718, "code_postal": "93051", "stop_lon": 2.553462493289277, "coord": [48.84075839430718, 2.553462493289277], "stop_id": 4614643, "stop_desc": "PISTE GARE ROUTIERE - 93051", "stop_name": "NOISY-LE-GRAND - MONT D'EST RER"}, "geometry": {"type": "Point", "coordinates": [2.553462493289277, 48.84075839430718]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "635e9d36aa7f30d76f78f8553f070d8890b975c3", "fields": {"departement": "93", "stop_lat": 48.85059519865477, "code_postal": "93051", "stop_lon": 2.5354180326589923, "coord": [48.85059519865477, 2.5354180326589923], "stop_id": 4614653, "stop_desc": "FACE 33 ROUTE DE NEUILLY - 93051", "stop_name": "RENE NAVIER"}, "geometry": {"type": "Point", "coordinates": [2.5354180326589923, 48.85059519865477]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0ca13ff3aac9e5a80fccd1b0eefb3cf8649ae64c", "fields": {"departement": "93", "stop_lat": 48.85764811106718, "code_postal": "93050", "stop_lon": 2.531331614853965, "coord": [48.85764811106718, 2.531331614853965], "stop_id": 4614655, "stop_desc": "26 RUE PAUL ET CAMILLE THOMOUX - 93050", "stop_name": "PLACE DE LA RESISTANCE"}, "geometry": {"type": "Point", "coordinates": [2.531331614853965, 48.85764811106718]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a3964708d052fffae43282150e7492a94b3b7d77", "fields": {"departement": "93", "stop_lat": 48.86018408234069, "code_postal": "93050", "stop_lon": 2.5304012505083278, "coord": [48.86018408234069, 2.5304012505083278], "stop_id": 4614658, "stop_desc": "59 RUE PAUL ET CAMILLE THOMOUX - 93050", "stop_name": "EPI D'OR"}, "geometry": {"type": "Point", "coordinates": [2.5304012505083278, 48.86018408234069]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9c69968a1718055cef61586ffc5f6312148ac15c", "fields": {"departement": "93", "stop_lat": 48.86611826855342, "code_postal": "93050", "stop_lon": 2.5288567504658026, "coord": [48.86611826855342, 2.5288567504658026], "stop_id": 4614662, "stop_desc": "137 BIS RUE PAUL ET CAMILLE THOMOUX - 93050", "stop_name": "LEON BLUM"}, "geometry": {"type": "Point", "coordinates": [2.5288567504658026, 48.86611826855342]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8bbba62792c31b7a289a3c3d758a2d06e250086a", "fields": {"departement": "93", "stop_lat": 48.867540185876635, "code_postal": "93050", "stop_lon": 2.5332077466950484, "coord": [48.867540185876635, 2.5332077466950484], "stop_id": 4614663, "stop_desc": "AVENUE LEON BLUM - 93050", "stop_name": "ILE DE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.5332077466950484, 48.867540185876635]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b295be7b742181eeae5f93dc54640eacee3e87f4", "fields": {"departement": "93", "stop_lat": 48.867818366920886, "code_postal": "93050", "stop_lon": 2.5334676366699243, "coord": [48.867818366920886, 2.5334676366699243], "stop_id": 4614664, "stop_desc": "AVENUE LEON BLUM - 93050", "stop_name": "ILE DE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.5334676366699243, 48.867818366920886]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d63e117e0769fedb8f3562b57b74c951a189a39e", "fields": {"departement": "93", "stop_lat": 48.86932276095398, "code_postal": "93050", "stop_lon": 2.5367702131902, "coord": [48.86932276095398, 2.5367702131902], "stop_id": 4614665, "stop_desc": "4 AVENUE WINSTON CHURCHILL - 93050", "stop_name": "RUE DES POMMIERS"}, "geometry": {"type": "Point", "coordinates": [2.5367702131902, 48.86932276095398]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f0e94c0ecaebb8fb29c34b9269de236760886ecb", "fields": {"departement": "93", "stop_lat": 48.86918808813368, "code_postal": "93050", "stop_lon": 2.536687954277174, "coord": [48.86918808813368, 2.536687954277174], "stop_id": 4614666, "stop_desc": "FACE 2 AVENUE WINSTON CHURCHILL - 93050", "stop_name": "RUE DES POMMIERS"}, "geometry": {"type": "Point", "coordinates": [2.536687954277174, 48.86918808813368]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ab8748b41360f408caab39d2b2ffa2bb7b404bcf", "fields": {"departement": "93", "stop_lat": 48.874287642887154, "code_postal": "93050", "stop_lon": 2.528941440616018, "coord": [48.874287642887154, 2.528941440616018], "stop_id": 4614669, "stop_desc": "141 R DE VILLEMOMBLE - 93050", "stop_name": "TROIS COMMUNES"}, "geometry": {"type": "Point", "coordinates": [2.528941440616018, 48.874287642887154]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e620233f3105802d4f3eec78d171bff2165b4392", "fields": {"departement": "93", "stop_lat": 48.88345582949369, "code_postal": "93077", "stop_lon": 2.4977554485461115, "coord": [48.88345582949369, 2.4977554485461115], "stop_id": 4614686, "stop_desc": "ROUTE DE NOISY - 93077", "stop_name": "CIMETIERE DE VILLEMOMBLE"}, "geometry": {"type": "Point", "coordinates": [2.4977554485461115, 48.88345582949369]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8019d36161af734b0bd4d70529c94175190c8de1", "fields": {"departement": "93", "stop_lat": 48.885455242094, "code_postal": "93077", "stop_lon": 2.4945727553524426, "coord": [48.885455242094, 2.4945727553524426], "stop_id": 4614688, "stop_desc": "4 R DU 8 MAI 1945 - 93077", "stop_name": "8 MAI 1945"}, "geometry": {"type": "Point", "coordinates": [2.4945727553524426, 48.885455242094]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c88dd3c768fc11fed172971d79db73a1b089660d", "fields": {"departement": "93", "stop_lat": 48.8927463896491, "code_postal": "93010", "stop_lon": 2.485599334584045, "coord": [48.8927463896491, 2.485599334584045], "stop_id": 4614694, "stop_desc": "100 ROUTE DE VILLEMOMBLE - 93010", "stop_name": "L'ETOILE"}, "geometry": {"type": "Point", "coordinates": [2.485599334584045, 48.8927463896491]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e7f0750695277cabb75bc60c51b611f4803b2216", "fields": {"departement": "93", "stop_lat": 48.89363546520329, "code_postal": "93010", "stop_lon": 2.4787460614643035, "coord": [48.89363546520329, 2.4787460614643035], "stop_id": 4614696, "stop_desc": "RUE DE VARSOVIE - 93010", "stop_name": "VARSOVIE"}, "geometry": {"type": "Point", "coordinates": [2.4787460614643035, 48.89363546520329]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "456ea6ed8cbfd07190ce415a7cf05dd538655f6e", "fields": {"departement": "93", "stop_lat": 48.90306932325303, "code_postal": "93010", "stop_lon": 2.480952996252528, "coord": [48.90306932325303, 2.480952996252528], "stop_id": 4614701, "stop_desc": "75 RUE JULES GUESDE - 93010", "stop_name": "EGLISE DE BONDY"}, "geometry": {"type": "Point", "coordinates": [2.480952996252528, 48.90306932325303]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "38a1feb6ca45761b46e16c4256a50d94dd12493d", "fields": {"departement": "93", "stop_lat": 48.90323300235931, "code_postal": "93010", "stop_lon": 2.479358461626498, "coord": [48.90323300235931, 2.479358461626498], "stop_id": 4614702, "stop_desc": "60 RUE JULES GUESDE - 93010", "stop_name": "EGLISE DE BONDY"}, "geometry": {"type": "Point", "coordinates": [2.479358461626498, 48.90323300235931]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0e0f98161bf85bcd1cefea9b3587e673b602799d", "fields": {"departement": "93", "stop_lat": 48.90426396581919, "code_postal": "93010", "stop_lon": 2.4738536981285146, "coord": [48.90426396581919, 2.4738536981285146], "stop_id": 4614703, "stop_desc": "1 RUE JULES GUESDE - 93010", "stop_name": "LYCEES PAGNOL - RENOIR"}, "geometry": {"type": "Point", "coordinates": [2.4738536981285146, 48.90426396581919]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c239e433c3bdb4241db2125a14bb55255755d3e2", "fields": {"departement": "93", "stop_lat": 48.90421097774594, "code_postal": "93010", "stop_lon": 2.4730356002728167, "coord": [48.90421097774594, 2.4730356002728167], "stop_id": 4614704, "stop_desc": "FACE 1 RUE JULES GUESDE - 93010", "stop_name": "LYCEES PAGNOL - RENOIR"}, "geometry": {"type": "Point", "coordinates": [2.4730356002728167, 48.90421097774594]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6b7de4131b23653058929590760a6faaa6c7164a", "fields": {"departement": "93", "stop_lat": 48.90569029404579, "code_postal": "93008", "stop_lon": 2.459720013319434, "coord": [48.90569029404579, 2.459720013319434], "stop_id": 4614717, "stop_desc": "AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "CITE ADMINISTRATIVE"}, "geometry": {"type": "Point", "coordinates": [2.459720013319434, 48.90569029404579]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "87cc9e2b71c38de6c9a73b5dfbd57c8fc3d56e2c", "fields": {"departement": "93", "stop_lat": 48.90657485833315, "code_postal": "93008", "stop_lon": 2.4559320596369205, "coord": [48.90657485833315, 2.4559320596369205], "stop_id": 4614757, "stop_desc": "302 AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "LAMARTINE"}, "geometry": {"type": "Point", "coordinates": [2.4559320596369205, 48.90657485833315]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9db00b5c825e2a591f431c3f8cd432c97c8025d2", "fields": {"departement": "93", "stop_lat": 48.905486896676855, "code_postal": "93008", "stop_lon": 2.4651318210827156, "coord": [48.905486896676855, 2.4651318210827156], "stop_id": 4614759, "stop_desc": "412 AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "RUE DES PEUPLIERS"}, "geometry": {"type": "Point", "coordinates": [2.4651318210827156, 48.905486896676855]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fd55ed796a48aceed13bf506df6457dd364662dd", "fields": {"departement": "93", "stop_lat": 48.89124834937275, "code_postal": "93010", "stop_lon": 2.4904743115017753, "coord": [48.89124834937275, 2.4904743115017753], "stop_id": 4614769, "stop_desc": "FACE 21 ROUTE DE VILLEMOMBLE - 93010", "stop_name": "LA SABLIERE"}, "geometry": {"type": "Point", "coordinates": [2.4904743115017753, 48.89124834937275]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "41b950ae7b5750aec80d0cce52092899efe80bc0", "fields": {"departement": "93", "stop_lat": 48.88774450414245, "code_postal": "93077", "stop_lon": 2.4895644852244905, "coord": [48.88774450414245, 2.4895644852244905], "stop_id": 4614770, "stop_desc": "FACE 33 ALLEE DES DEUX COMMUNES - 93077", "stop_name": "DENIS PAPIN"}, "geometry": {"type": "Point", "coordinates": [2.4895644852244905, 48.88774450414245]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "70c5164285c52c21a2bef39907c7b2debce204aa", "fields": {"departement": "93", "stop_lat": 48.882391916339124, "code_postal": "93077", "stop_lon": 2.5247198110024587, "coord": [48.882391916339124, 2.5247198110024587], "stop_id": 4614779, "stop_desc": "178 BIS RUE GRANDE RUE - 93077", "stop_name": "GAGNY RER"}, "geometry": {"type": "Point", "coordinates": [2.5247198110024587, 48.882391916339124]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "41c8ae20190dc0bc8b60d14597426ebece27d3e0", "fields": {"departement": "93", "stop_lat": 48.87202496498664, "code_postal": "93050", "stop_lon": 2.5331565754378143, "coord": [48.87202496498664, 2.5331565754378143], "stop_id": 4614782, "stop_desc": "9 AVENUE ROBERT SCHUMAN - 93050", "stop_name": "CITE DES BOULEAUX"}, "geometry": {"type": "Point", "coordinates": [2.5331565754378143, 48.87202496498664]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "007b53614257861397045c9947a8fdd3529c2830", "fields": {"departement": "75", "stop_lat": 48.832272512743295, "code_postal": "75114", "stop_lon": 2.3308562345483637, "coord": [48.832272512743295, 2.3308562345483637], "stop_id": 4651124, "stop_desc": "15 AVENUE DU GENERAL LECLERC - 75114", "stop_name": "DENFERT-ROCHEREAU - DAGUERRE"}, "geometry": {"type": "Point", "coordinates": [2.3308562345483637, 48.832272512743295]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dda6d88100994134db1450dbc72254f064287dc2", "fields": {"departement": "75", "stop_lat": 48.837224833648605, "code_postal": "75114", "stop_lon": 2.335430268825086, "coord": [48.837224833648605, 2.335430268825086], "stop_id": 4651126, "stop_desc": "FACE 74 AVENUE DENFERT ROCHEREAU - 75114", "stop_name": "HOPITAL SAINT-VINCENT DE PAUL"}, "geometry": {"type": "Point", "coordinates": [2.335430268825086, 48.837224833648605]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "608a8555151f199899bfb68673a6c6e625c78a2a", "fields": {"departement": "75", "stop_lat": 48.85534333466014, "code_postal": "75104", "stop_lon": 2.346107532202977, "coord": [48.85534333466014, 2.346107532202977], "stop_id": 4651133, "stop_desc": "1 BOULEVARD DU PALAIS - 75104", "stop_name": "CITE - PALAIS DE JUSTICE"}, "geometry": {"type": "Point", "coordinates": [2.346107532202977, 48.85534333466014]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "14fd1a5e20d0e13f417f8a76ba73e56bbd1172d0", "fields": {"departement": "93", "stop_lat": 48.916724295544824, "code_postal": "93055", "stop_lon": 2.4063751121186447, "coord": [48.916724295544824, 2.4063751121186447], "stop_id": 4658166, "stop_desc": "FACE 247 AVENUE JEAN JAURES - 93055", "stop_name": "HELENE COCHENNEC"}, "geometry": {"type": "Point", "coordinates": [2.4063751121186447, 48.916724295544824]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f48522c0972b456004def1d2cf1b61505a080fa7", "fields": {"departement": "93", "stop_lat": 48.91843969494924, "code_postal": "93027", "stop_lon": 2.4082728559481428, "coord": [48.91843969494924, 2.4082728559481428], "stop_id": 4658167, "stop_desc": "8-8 BIS AVENUE PAUL VAILLANT-COUTURIER - 93027", "stop_name": "EDOUARD VAILLANT - JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.4082728559481428, 48.91843969494924]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "84eb9f0a2b602ba948af8596b3a9af5211580ae8", "fields": {"departement": "93", "stop_lat": 48.921080375066495, "code_postal": "93027", "stop_lon": 2.4107311475850186, "coord": [48.921080375066495, 2.4107311475850186], "stop_id": 4658169, "stop_desc": "63 AVENUE PAUL VAILLANT COUTURIER - 93027", "stop_name": "LA COURNEUVE-8 MAI 1945"}, "geometry": {"type": "Point", "coordinates": [2.4107311475850186, 48.921080375066495]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "936e102f7bc6c3d05e6519bd5ba3cd55e580443c", "fields": {"departement": "93", "stop_lat": 48.93285336721684, "code_postal": "93013", "stop_lon": 2.4239242493787803, "coord": [48.93285336721684, 2.4239242493787803], "stop_id": 4658174, "stop_desc": "2 AVENUE DE LA DIVISION LECLERC - 93013", "stop_name": "JEAN JAURES - DIVISION LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.4239242493787803, 48.93285336721684]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "372ce54ca3fbeab74e1f6f10b9a0929e2f49693a", "fields": {"departement": "93", "stop_lat": 48.93887013385676, "code_postal": "93013", "stop_lon": 2.429813914667063, "coord": [48.93887013385676, 2.429813914667063], "stop_id": 4658180, "stop_desc": "124 AVENUE DE LA DIVISION LECLERC - 93013", "stop_name": "EGLISE DU BOURGET"}, "geometry": {"type": "Point", "coordinates": [2.429813914667063, 48.93887013385676]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e3d9312260fc6dede51d9574e743e2c7b9eb0ee1", "fields": {"departement": "93", "stop_lat": 48.95307678233832, "code_postal": "93007", "stop_lon": 2.4424068190815564, "coord": [48.95307678233832, 2.4424068190815564], "stop_id": 4658186, "stop_desc": "212 AVENUE DU 8 MAI 1945 - 93007", "stop_name": "CHEMIN NOTRE DAME"}, "geometry": {"type": "Point", "coordinates": [2.4424068190815564, 48.95307678233832]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a7d8b3e6ffa5fbfed6647046263b54d3a5328b4f", "fields": {"departement": "93", "stop_lat": 48.955741414669745, "code_postal": "93007", "stop_lon": 2.4473112180729606, "coord": [48.955741414669745, 2.4473112180729606], "stop_id": 4658192, "stop_desc": "RUE DES FRERES LUMIERE - 93007", "stop_name": "MANOUCHIAN"}, "geometry": {"type": "Point", "coordinates": [2.4473112180729606, 48.955741414669745]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "96e6f3bef2850c7dbd3ba2c3e07af7c526b52691", "fields": {"departement": "93", "stop_lat": 48.91778431436412, "code_postal": "93001", "stop_lon": 2.407140153386434, "coord": [48.91778431436412, 2.407140153386434], "stop_id": 4658200, "stop_desc": "263 AVENUE JEAN JAURES - 93001", "stop_name": "EDOUARD VAILLANT - JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.407140153386434, 48.91778431436412]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f761e8b4a3293197389fd088b9e32a97d617c873", "fields": {"departement": "93", "stop_lat": 48.90902713462094, "code_postal": "93001", "stop_lon": 2.39769369061661, "coord": [48.90902713462094, 2.39769369061661], "stop_id": 4658202, "stop_desc": "151 AVENUE JEAN JAURES - 93001", "stop_name": "CIMETIERE PARISIEN"}, "geometry": {"type": "Point", "coordinates": [2.39769369061661, 48.90902713462094]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e239dcde38cd63f125f59f7febfcfad63e7457a6", "fields": {"departement": "93", "stop_lat": 48.904149780361635, "code_postal": "93001", "stop_lon": 2.3922758579397665, "coord": [48.904149780361635, 2.3922758579397665], "stop_id": 4658204, "stop_desc": "57 AVENUE JEAN JAURES - 93001", "stop_name": "QUATRE CHEMINS-METRO"}, "geometry": {"type": "Point", "coordinates": [2.3922758579397665, 48.904149780361635]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "687a4eeb01890a46bbc020b6cae2a2fcbb4f23cf", "fields": {"departement": "93", "stop_lat": 48.90909876026409, "code_postal": "93055", "stop_lon": 2.398225496493954, "coord": [48.90909876026409, 2.398225496493954], "stop_id": 4658211, "stop_desc": "AVENUE JEAN JAURES - 93055", "stop_name": "CIMETIERE PARISIEN"}, "geometry": {"type": "Point", "coordinates": [2.398225496493954, 48.90909876026409]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b1e77ac57fbcc538753ffe6cf2e3252886bcc45d", "fields": {"departement": "93", "stop_lat": 48.91439831194438, "code_postal": "93001", "stop_lon": 2.403467689395335, "coord": [48.91439831194438, 2.403467689395335], "stop_id": 4658215, "stop_desc": "213 AVENUE JEAN JAURES - 93001", "stop_name": "FORT D'AUBERVILLIERS - METRO"}, "geometry": {"type": "Point", "coordinates": [2.403467689395335, 48.91439831194438]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "886a1ea4042184376fa7d9eb0d088889cde0f7e4", "fields": {"departement": "93", "stop_lat": 48.91843969494924, "code_postal": "93027", "stop_lon": 2.4082728559481428, "coord": [48.91843969494924, 2.4082728559481428], "stop_id": 4658217, "stop_desc": "8-8 BIS AVENUE PAUL VAILLANT-COUTURIER - 93027", "stop_name": "EDOUARD VAILLANT - JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.4082728559481428, 48.91843969494924]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "77e3dace46c927389a3fb0193c1fa68d75944088", "fields": {"departement": "93", "stop_lat": 48.929153940203385, "code_postal": "93027", "stop_lon": 2.4194444041855228, "coord": [48.929153940203385, 2.4194444041855228], "stop_id": 4658223, "stop_desc": "FACE 168 AVENUE PAUL VAILLANT-COUTURIER - 93027", "stop_name": "AVENUE PAUL VAILLANT COUTURIER N0 176-191"}, "geometry": {"type": "Point", "coordinates": [2.4194444041855228, 48.929153940203385]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "41462030c72695fdf0eeb7ac2a70e0332e42eb30", "fields": {"departement": "93", "stop_lat": 48.93282676236949, "code_postal": "93013", "stop_lon": 2.423433159202592, "coord": [48.93282676236949, 2.423433159202592], "stop_id": 4658225, "stop_desc": "45 AVENUE DE LA DIVISION LECLERC - 93013", "stop_name": "JEAN JAURES - DIVISION LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.423433159202592, 48.93282676236949]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e5474c10d658610f6203aec30685508c73735a4f", "fields": {"departement": "93", "stop_lat": 48.93437993252766, "code_postal": "93013", "stop_lon": 2.4255636723591056, "coord": [48.93437993252766, 2.4255636723591056], "stop_id": 4658226, "stop_desc": "48 AVENUE DE LA DIVISION LECLERC - 93013", "stop_name": "ANIZAN CAVILLON - HOTEL DE VILLE"}, "geometry": {"type": "Point", "coordinates": [2.4255636723591056, 48.93437993252766]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "313ea6eee5be0f8f36895a34c08c18ebf0171173", "fields": {"departement": "93", "stop_lat": 48.9394631577265, "code_postal": "93013", "stop_lon": 2.4299513938399637, "coord": [48.9394631577265, 2.4299513938399637], "stop_id": 4658231, "stop_desc": "135 AVENUE DE LA DIVISION LECLERC - 93013", "stop_name": "EGLISE DU BOURGET"}, "geometry": {"type": "Point", "coordinates": [2.4299513938399637, 48.9394631577265]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "73ec6619c3ab38520e7a2d2feece4b3fe448f26f", "fields": {"departement": "93", "stop_lat": 48.94480619221531, "code_postal": "93007", "stop_lon": 2.4351044901097643, "coord": [48.94480619221531, 2.4351044901097643], "stop_id": 4658233, "stop_desc": "76 AVENUE DU 8 MAI 1945 - 93007", "stop_name": "DIDEROT"}, "geometry": {"type": "Point", "coordinates": [2.4351044901097643, 48.94480619221531]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6cb6d3dca5e2e40a1b5f13f63c64cfd14fdd22a9", "fields": {"departement": "93", "stop_lat": 48.95307678233832, "code_postal": "93007", "stop_lon": 2.4424068190815564, "coord": [48.95307678233832, 2.4424068190815564], "stop_id": 4658236, "stop_desc": "212 AVENUE DU 8 MAI 1945 - 93007", "stop_name": "CHEMIN NOTRE DAME"}, "geometry": {"type": "Point", "coordinates": [2.4424068190815564, 48.95307678233832]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "806b0548245f912bfdceddb15fd56d12c9185a69", "fields": {"departement": "95", "stop_lat": 48.96542623287396, "code_postal": "95277", "stop_lon": 2.4594382608623, "coord": [48.96542623287396, 2.4594382608623], "stop_id": 4658245, "stop_desc": "AV DU 21EME SIECLE - 95277", "stop_name": "21EME SIECLE"}, "geometry": {"type": "Point", "coordinates": [2.4594382608623, 48.96542623287396]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e0445d53ebf5c71392507905c6d072ac6aaa5e25", "fields": {"departement": "93", "stop_lat": 48.95016764576287, "code_postal": "93030", "stop_lon": 2.439453648187777, "coord": [48.95016764576287, 2.439453648187777], "stop_id": 4658250, "stop_desc": "FACE 180 AV DU 8 MAI 1945 - 93030", "stop_name": "LENINE"}, "geometry": {"type": "Point", "coordinates": [2.439453648187777, 48.95016764576287]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ded993111b9a95fe16ec52bfb9620b49405903be", "fields": {"departement": "93", "stop_lat": 48.94508493858331, "code_postal": "93013", "stop_lon": 2.4349140095036543, "coord": [48.94508493858331, 2.4349140095036543], "stop_id": 4658252, "stop_desc": "FACE 76 AVENUE DU 8 MAI 1945 - 93013", "stop_name": "DIDEROT"}, "geometry": {"type": "Point", "coordinates": [2.4349140095036543, 48.94508493858331]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "441b5e650e25e5fd1ad86d0237f11f75a92b650e", "fields": {"departement": "93", "stop_lat": 48.90902713462094, "code_postal": "93001", "stop_lon": 2.39769369061661, "coord": [48.90902713462094, 2.39769369061661], "stop_id": 4658256, "stop_desc": "151 AVENUE JEAN JAURES - 93001", "stop_name": "CIMETIERE PARISIEN"}, "geometry": {"type": "Point", "coordinates": [2.39769369061661, 48.90902713462094]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5394f54b3723741d2cf9b475d6e2dcea4db18f9d", "fields": {"departement": "92", "stop_lat": 48.898600670071836, "code_postal": "92044", "stop_lon": 2.2941939108666523, "coord": [48.898600670071836, 2.2941939108666523], "stop_id": 4677625, "stop_desc": "FACE 123 RUE VICTOR HUGO - 92044", "stop_name": "COLLANGE"}, "geometry": {"type": "Point", "coordinates": [2.2941939108666523, 48.898600670071836]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e765d1cf42185ed3f36f0948c83b6591e430216c", "fields": {"departement": "92", "stop_lat": 48.89918254367263, "code_postal": "92044", "stop_lon": 2.2882638141235936, "coord": [48.89918254367263, 2.2882638141235936], "stop_id": 4677626, "stop_desc": "91 RUE BAUDIN - 92044", "stop_name": "COLLANGE"}, "geometry": {"type": "Point", "coordinates": [2.2882638141235936, 48.89918254367263]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f792e5b35647c162be7a53caf146d560de7fde9f", "fields": {"departement": "92", "stop_lat": 48.90641632330126, "code_postal": "92004", "stop_lon": 2.2862801606749135, "coord": [48.90641632330126, 2.2862801606749135], "stop_id": 4677631, "stop_desc": "20 GRANDE RUE CHARLES DE GAULLE - 92004", "stop_name": "RUE DE LA STATION"}, "geometry": {"type": "Point", "coordinates": [2.2862801606749135, 48.90641632330126]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "799543d823842683b44fb181d0130764d752a8ab", "fields": {"departement": "92", "stop_lat": 48.90975057188337, "code_postal": "92004", "stop_lon": 2.28639958687339, "coord": [48.90975057188337, 2.28639958687339], "stop_id": 4677633, "stop_desc": "6 AVENUE D'ARGENTEUIL - 92004", "stop_name": "GALLIENI"}, "geometry": {"type": "Point", "coordinates": [2.28639958687339, 48.90975057188337]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5caf0edb1ac0456965142d9fd3cfcb24b667fb9f", "fields": {"departement": "92", "stop_lat": 48.91874406854453, "code_postal": "92004", "stop_lon": 2.2808407251176197, "coord": [48.91874406854453, 2.2808407251176197], "stop_id": 4677640, "stop_desc": "185 AVENUE D'ARGENTEUIL - 92004", "stop_name": "BOURGUIGNONS"}, "geometry": {"type": "Point", "coordinates": [2.2808407251176197, 48.91874406854453]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0739ebbc996f6309b54b96d25972fde6cf2ad42a", "fields": {"departement": "92", "stop_lat": 48.92965889733615, "code_postal": "92004", "stop_lon": 2.272386097627396, "coord": [48.92965889733615, 2.272386097627396], "stop_id": 4677646, "stop_desc": "AVENUE D'ORGEMONT - 92004", "stop_name": "HENRI ROBERT"}, "geometry": {"type": "Point", "coordinates": [2.272386097627396, 48.92965889733615]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "175c43019b8e7f9f83166a3b137f026a8f558663", "fields": {"departement": "92", "stop_lat": 48.92728729275542, "code_postal": "92004", "stop_lon": 2.274134820908049, "coord": [48.92728729275542, 2.274134820908049], "stop_id": 4677650, "stop_desc": "5 AVENUE DE LA REDOUTE - 92004", "stop_name": "QUATRE ROUTES - LA REDOUTE"}, "geometry": {"type": "Point", "coordinates": [2.274134820908049, 48.92728729275542]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ae1d9619beb7cd6a5fecf252abd79f6ed440c2f3", "fields": {"departement": "94", "stop_lat": 48.78288941619004, "code_postal": "94081", "stop_lon": 2.3936162801973566, "coord": [48.78288941619004, 2.3936162801973566], "stop_id": 4677669, "stop_desc": "FACE AU 167 AVENUE YOURI GAGARINE - 94081", "stop_name": "CONSTANT COQUELIN"}, "geometry": {"type": "Point", "coordinates": [2.3936162801973566, 48.78288941619004]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "27617bcdcefdf8bdfd118e917fa3bf1e24739ce1", "fields": {"departement": "94", "stop_lat": 48.77041910587895, "code_postal": "94073", "stop_lon": 2.4013941250520006, "coord": [48.77041910587895, 2.4013941250520006], "stop_id": 4677672, "stop_desc": "39 BOULEVARD DE STALINGRAD - 94073", "stop_name": "DOCTEUR ROUX"}, "geometry": {"type": "Point", "coordinates": [2.4013941250520006, 48.77041910587895]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6d7b6018c6a0ae119541022b1fef307166185a8e", "fields": {"departement": "94", "stop_lat": 48.80728086211342, "code_postal": "94041", "stop_lon": 2.37509619689156, "coord": [48.80728086211342, 2.37509619689156], "stop_id": 4677684, "stop_desc": "161 AVENUE DE VERDUN - 94041", "stop_name": "LA BRIQUETERIE"}, "geometry": {"type": "Point", "coordinates": [2.37509619689156, 48.80728086211342]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f2d93b6c658684722a47e4b4816d850c11b704ea", "fields": {"departement": "94", "stop_lat": 48.761229701279525, "code_postal": "94022", "stop_lon": 2.407718101924585, "coord": [48.761229701279525, 2.407718101924585], "stop_id": 4677707, "stop_desc": "5 AVENUE DE LA REPUBLIQUE - 94022", "stop_name": "WALDECK ROUSSEAU"}, "geometry": {"type": "Point", "coordinates": [2.407718101924585, 48.761229701279525]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a5a9a6fc01ab64ddd491941b009cd6a03e7c37c0", "fields": {"departement": "94", "stop_lat": 48.758388600026706, "code_postal": "94022", "stop_lon": 2.4091416576999163, "coord": [48.758388600026706, 2.4091416576999163], "stop_id": 4677708, "stop_desc": "62 AVENUE DE LA REPUBLIQUE - 94022", "stop_name": "PARMENTIER"}, "geometry": {"type": "Point", "coordinates": [2.4091416576999163, 48.758388600026706]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dceca9658618e19c5856a0ffec55d79c61980e7b", "fields": {"departement": "94", "stop_lat": 48.75593384837047, "code_postal": "94022", "stop_lon": 2.410755915003695, "coord": [48.75593384837047, 2.410755915003695], "stop_id": 4677710, "stop_desc": "20 AVENUE DE NEWBURN - 94022", "stop_name": "LAMARTINE"}, "geometry": {"type": "Point", "coordinates": [2.410755915003695, 48.75593384837047]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5cb0bab7a1bd2358409ec6ece1f499629e818000", "fields": {"departement": "94", "stop_lat": 48.750332280104146, "code_postal": "94054", "stop_lon": 2.413819843454324, "coord": [48.750332280104146, 2.413819843454324], "stop_id": 4677714, "stop_desc": "25 R JEAN MERMOZ - 94054", "stop_name": "JEAN MERMOZ"}, "geometry": {"type": "Point", "coordinates": [2.413819843454324, 48.750332280104146]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c050d1e9aa6d4adfbd11222059db3f150da49b27", "fields": {"departement": "94", "stop_lat": 48.743536109563614, "code_postal": "94054", "stop_lon": 2.4003552574833615, "coord": [48.743536109563614, 2.4003552574833615], "stop_id": 4677722, "stop_desc": "FACE 9 RUE DU COMMERCE - 94054", "stop_name": "MAIRIE D'ORLY"}, "geometry": {"type": "Point", "coordinates": [2.4003552574833615, 48.743536109563614]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "510c93b0cdc95e56905826434ad94480ee89d929", "fields": {"departement": "94", "stop_lat": 48.74617971011212, "code_postal": "94054", "stop_lon": 2.3771719326427716, "coord": [48.74617971011212, 2.3771719326427716], "stop_id": 4677729, "stop_desc": "157 ROUTE CHARLES TILLON - 94054", "stop_name": "CITE JARDINS"}, "geometry": {"type": "Point", "coordinates": [2.3771719326427716, 48.74617971011212]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fea1fbc4b730e6926dc1dbf0c0202771b2162df2", "fields": {"departement": "94", "stop_lat": 48.728879688960305, "code_postal": "94054", "stop_lon": 2.369156116527317, "coord": [48.728879688960305, 2.369156116527317], "stop_id": 4677737, "stop_desc": "AEROPORT D'ORLY - 94054", "stop_name": "AEROPORT D'ORLY-TERMINAL SUD"}, "geometry": {"type": "Point", "coordinates": [2.369156116527317, 48.728879688960305]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5632c04f419aca596339b0eceb57a268dc7dc63e", "fields": {"departement": "94", "stop_lat": 48.737031881671214, "code_postal": "94054", "stop_lon": 2.36992209078468, "coord": [48.737031881671214, 2.36992209078468], "stop_id": 4677738, "stop_desc": "AVENUE DE L'EUROPE - 94054", "stop_name": "CAROLINE AIGLE"}, "geometry": {"type": "Point", "coordinates": [2.36992209078468, 48.737031881671214]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "51ebfb2df70ecadd8ef511052a9d935f3aec6a74", "fields": {"departement": "94", "stop_lat": 48.76795532866585, "code_postal": "94022", "stop_lon": 2.4033082416592277, "coord": [48.76795532866585, 2.4033082416592277], "stop_id": 4677740, "stop_desc": "10 BOULEVARD DE STALINGRAD - 94022", "stop_name": "VERDUN - HOCHE"}, "geometry": {"type": "Point", "coordinates": [2.4033082416592277, 48.76795532866585]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "812acf9e1dc259f5ea7cba65322596f2730e8643", "fields": {"departement": "94", "stop_lat": 48.798362479145425, "code_postal": "94081", "stop_lon": 2.3821778114612555, "coord": [48.798362479145425, 2.3821778114612555], "stop_id": 4677758, "stop_desc": "74 BOULEVARD DE STALINGRAD - 94081", "stop_name": "LA CIVETTE"}, "geometry": {"type": "Point", "coordinates": [2.3821778114612555, 48.798362479145425]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6a04e31e3a3afafde2eba9b2c1b7b370c3b3b14a", "fields": {"departement": "94", "stop_lat": 48.78563163463027, "code_postal": "94081", "stop_lon": 2.3917014455806394, "coord": [48.78563163463027, 2.3917014455806394], "stop_id": 4677765, "stop_desc": "AVENUE YOURI GAGARINE - 94081", "stop_name": "CAMILLE GROULT"}, "geometry": {"type": "Point", "coordinates": [2.3917014455806394, 48.78563163463027]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "adec4e0e9699d3056722769b936f1e9a3cb66ee4", "fields": {"departement": "94", "stop_lat": 48.78297902371468, "code_postal": "94081", "stop_lon": 2.394187610971603, "coord": [48.78297902371468, 2.394187610971603], "stop_id": 4677768, "stop_desc": "FACE 167 AVENUE YOURI GAGARINE - 94081", "stop_name": "CONSTANT COQUELIN"}, "geometry": {"type": "Point", "coordinates": [2.394187610971603, 48.78297902371468]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b3e3d3e12a60ce279f69db1757dcd9c5aa85680e", "fields": {"departement": "94", "stop_lat": 48.77041910587895, "code_postal": "94073", "stop_lon": 2.4013941250520006, "coord": [48.77041910587895, 2.4013941250520006], "stop_id": 4677772, "stop_desc": "39 BOULEVARD DE STALINGRAD - 94073", "stop_name": "DOCTEUR ROUX"}, "geometry": {"type": "Point", "coordinates": [2.4013941250520006, 48.77041910587895]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bf926f1066455d971f69c7a298d3447361b52ff3", "fields": {"departement": "94", "stop_lat": 48.76796449757513, "code_postal": "94073", "stop_lon": 2.402981928452445, "coord": [48.76796449757513, 2.402981928452445], "stop_id": 4677773, "stop_desc": "3 BOULEVARD DE STALINGRAD - 94073", "stop_name": "VERDUN - HOCHE"}, "geometry": {"type": "Point", "coordinates": [2.402981928452445, 48.76796449757513]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ba9933d20db5a1ba20d078e406c18b114db95577", "fields": {"departement": "94", "stop_lat": 48.76459279271852, "code_postal": "94022", "stop_lon": 2.4050714452376734, "coord": [48.76459279271852, 2.4050714452376734], "stop_id": 4677774, "stop_desc": "1 BOULEVARD DES ALLIES - 94022", "stop_name": "ROUGET DE LISLE"}, "geometry": {"type": "Point", "coordinates": [2.4050714452376734, 48.76459279271852]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2ecd637b6d0f716c532a87de05d46075806cad4f", "fields": {"departement": "94", "stop_lat": 48.750961479370204, "code_postal": "94054", "stop_lon": 2.4137799931156327, "coord": [48.750961479370204, 2.4137799931156327], "stop_id": 4677785, "stop_desc": "AVENUE MARCEL CACHIN - 94054", "stop_name": "JEAN MERMOZ"}, "geometry": {"type": "Point", "coordinates": [2.4137799931156327, 48.750961479370204]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1cc4458b8857be920812011a3940b52ca4960a7e", "fields": {"departement": "94", "stop_lat": 48.74559720783472, "code_postal": "94054", "stop_lon": 2.411108255563119, "coord": [48.74559720783472, 2.411108255563119], "stop_id": 4677789, "stop_desc": "VOI DES SAULES - 94054", "stop_name": "MARCEL CACHIN - VOIE DES SAULES"}, "geometry": {"type": "Point", "coordinates": [2.411108255563119, 48.74559720783472]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cd622fb7698a99a55fbcebfd5d7de04db234ef96", "fields": {"departement": "94", "stop_lat": 48.743536109563614, "code_postal": "94054", "stop_lon": 2.4003552574833615, "coord": [48.743536109563614, 2.4003552574833615], "stop_id": 4677792, "stop_desc": "FACE 9 RUE DU COMMERCE - 94054", "stop_name": "MAIRIE D'ORLY"}, "geometry": {"type": "Point", "coordinates": [2.4003552574833615, 48.743536109563614]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e64aa35dac39adf0471ae2641c3be516903e55d5", "fields": {"departement": "94", "stop_lat": 48.74339244178158, "code_postal": "94054", "stop_lon": 2.400083274246774, "coord": [48.74339244178158, 2.400083274246774], "stop_id": 4677793, "stop_desc": "PLACE DE LA NOUVELLE MAIRIE - 94054", "stop_name": "MAIRIE D'ORLY"}, "geometry": {"type": "Point", "coordinates": [2.400083274246774, 48.74339244178158]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e8a2032452e4f197b7d944641193c1348119663f", "fields": {"departement": "94", "stop_lat": 48.80417032541045, "code_postal": "94041", "stop_lon": 2.3774070087558283, "coord": [48.80417032541045, 2.3774070087558283], "stop_id": 4677798, "stop_desc": "148 BOULEVARD DE STALINGRAD - 94041", "stop_name": "CENTRE BUS DE VITRY"}, "geometry": {"type": "Point", "coordinates": [2.3774070087558283, 48.80417032541045]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e3ae39aaeb4118ce90ecde08090630147eab8841", "fields": {"departement": "92", "stop_lat": 48.82418915289951, "code_postal": "92075", "stop_lon": 2.2824135616300723, "coord": [48.82418915289951, 2.2824135616300723], "stop_id": 4687338, "stop_desc": "45 BOULEVARD DU LYCEE - 92075", "stop_name": "GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.2824135616300723, 48.82418915289951]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "22d700ec3c6b0f4bb6387e43a9f4281d6b9c0cd0", "fields": {"departement": "92", "stop_lat": 48.814111354918694, "code_postal": "92046", "stop_lon": 2.2770758889235725, "coord": [48.814111354918694, 2.2770758889235725], "stop_id": 4687348, "stop_desc": "FACE 5 BOULEVARD DES FRERES VIGOUROUX - 92046", "stop_name": "CLOS MONTHOLON"}, "geometry": {"type": "Point", "coordinates": [2.2770758889235725, 48.814111354918694]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0127faffd9c00d6b7274bbbeb83f9f8316d32e8b", "fields": {"departement": "92", "stop_lat": 48.812824244237106, "code_postal": "92023", "stop_lon": 2.27349831431904, "coord": [48.812824244237106, 2.27349831431904], "stop_id": 4687351, "stop_desc": "8 BOULEVARD DES FRERES VIGOUROUX - 92023", "stop_name": "HEBERT - GARE"}, "geometry": {"type": "Point", "coordinates": [2.27349831431904, 48.812824244237106]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a34738950f087303880408c91c411d2296825d6d", "fields": {"departement": "92", "stop_lat": 48.8065833107802, "code_postal": "92023", "stop_lon": 2.267410049761415, "coord": [48.8065833107802, 2.267410049761415], "stop_id": 4687354, "stop_desc": "101-103 AVENUE JEAN JAURES - 92023", "stop_name": "PIERRE LOUVRIER"}, "geometry": {"type": "Point", "coordinates": [2.267410049761415, 48.8065833107802]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3d2b50f28532486210f113cb5f00d55247959251", "fields": {"departement": "92", "stop_lat": 48.804281619719895, "code_postal": "92023", "stop_lon": 2.266038901605573, "coord": [48.804281619719895, 2.266038901605573], "stop_id": 4687356, "stop_desc": "65 AVENUE JEAN JAURES - 92023", "stop_name": "GABRIEL PERI"}, "geometry": {"type": "Point", "coordinates": [2.266038901605573, 48.804281619719895]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0f29882388adb700dffceb4569d3f75f0cfbb1e0", "fields": {"departement": "92", "stop_lat": 48.80260013465449, "code_postal": "92023", "stop_lon": 2.264775855467971, "coord": [48.80260013465449, 2.264775855467971], "stop_id": 4687358, "stop_desc": "39 AV JEAN JAURES - 92023", "stop_name": "CENTRE CULTUREL JEAN ARP"}, "geometry": {"type": "Point", "coordinates": [2.264775855467971, 48.80260013465449]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "12acc7afdc9ca9baa9ff6339ad496385b947bedf", "fields": {"departement": "92", "stop_lat": 48.79792816615365, "code_postal": "92023", "stop_lon": 2.2676393668758803, "coord": [48.79792816615365, 2.2676393668758803], "stop_id": 4687362, "stop_desc": "31 AVENUE JEAN BAPTISTE CLEMENT - 92023", "stop_name": "PLESSIS PIQUET"}, "geometry": {"type": "Point", "coordinates": [2.2676393668758803, 48.79792816615365]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "230ab2dae34a1b492abf7b9da228c073f1228c78", "fields": {"departement": "92", "stop_lat": 48.78926265301571, "code_postal": "92023", "stop_lon": 2.2520081681720394, "coord": [48.78926265301571, 2.2520081681720394], "stop_id": 4687377, "stop_desc": "169 ROUTE DE LA PORTE DE TRIVAUX - 92023", "stop_name": "EUGENE BEAUJARD"}, "geometry": {"type": "Point", "coordinates": [2.2520081681720394, 48.78926265301571]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bc0f1b0dad79efaed8fdabb875173d0a183f6204", "fields": {"departement": "95", "stop_lat": 48.99397653556502, "code_postal": "95585", "stop_lon": 2.3822111429168356, "coord": [48.99397653556502, 2.3822111429168356], "stop_id": 4695636, "stop_desc": "1 RUE JEAN-JACQUES ROUSSEAU - 95585", "stop_name": "LYCEE JEAN-JACQUES ROUSSEAU"}, "geometry": {"type": "Point", "coordinates": [2.3822111429168356, 48.99397653556502]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6d3800dddf9a4764eb97483dd70fd4efa1b1b4a2", "fields": {"departement": "95", "stop_lat": 49.002621884294484, "code_postal": "95585", "stop_lon": 2.3809757298407406, "coord": [49.002621884294484, 2.3809757298407406], "stop_id": 4695639, "stop_desc": "RUE ANDRE GRUNIG - 95585", "stop_name": "LES CHARDONNERETTES"}, "geometry": {"type": "Point", "coordinates": [2.3809757298407406, 49.002621884294484]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "be6eb3eaa1a737fd7012e52d2224f2b0a5be4888", "fields": {"departement": "95", "stop_lat": 49.00213819553513, "code_postal": "95585", "stop_lon": 2.3764407214189807, "coord": [49.00213819553513, 2.3764407214189807], "stop_id": 4695645, "stop_desc": "12-14 AVENUE DES FAUVETTES - 95585", "stop_name": "AVENUE DU NID"}, "geometry": {"type": "Point", "coordinates": [2.3764407214189807, 49.00213819553513]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ee27095fe7460ea6a4bcda9d1507b4e13f138dc5", "fields": {"departement": "95", "stop_lat": 49.002064656160755, "code_postal": "95585", "stop_lon": 2.381180134920911, "coord": [49.002064656160755, 2.381180134920911], "stop_id": 4695646, "stop_desc": "FACE 48 AVENUE MARX DORMOY - 95585", "stop_name": "LES CHARDONNERETTES."}, "geometry": {"type": "Point", "coordinates": [2.381180134920911, 49.002064656160755]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8590353dcd1a6a6db6509318a8124fa8338919ba", "fields": {"departement": "95", "stop_lat": 48.994057366862776, "code_postal": "95585", "stop_lon": 2.382334119863101, "coord": [48.994057366862776, 2.382334119863101], "stop_id": 4695649, "stop_desc": "1 RUE JEAN-JACQUES ROUSSEAU - 95585", "stop_name": "LYCEE JEAN-JACQUES ROUSSEAU."}, "geometry": {"type": "Point", "coordinates": [2.382334119863101, 48.994057366862776]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7127125a406015e3340499b79fd98071b7faf6d9", "fields": {"departement": "95", "stop_lat": 48.99436259243544, "code_postal": "95585", "stop_lon": 2.38315376864614, "coord": [48.99436259243544, 2.38315376864614], "stop_id": 4695650, "stop_desc": "FACE 9 RUE JEAN-JACQUES ROUSSEAU - 95585", "stop_name": "LYCEE JEAN-JACQUES ROUSSEAU"}, "geometry": {"type": "Point", "coordinates": [2.38315376864614, 48.99436259243544]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d68f69cd2fd72c314704b8804d6c1e563d6c7659", "fields": {"departement": "95", "stop_lat": 49.006632690879485, "code_postal": "95585", "stop_lon": 2.372141347510079, "coord": [49.006632690879485, 2.372141347510079], "stop_id": 4695656, "stop_desc": "FACE 75 RUE DES GOSSEROTS - 95585", "stop_name": "BEL AIR - GOSSEROTS"}, "geometry": {"type": "Point", "coordinates": [2.372141347510079, 49.006632690879485]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dde4a9f59d54f2ad9b29bff0424518d51a10a080", "fields": {"departement": "95", "stop_lat": 49.002064656160755, "code_postal": "95585", "stop_lon": 2.381180134920911, "coord": [49.002064656160755, 2.381180134920911], "stop_id": 4695660, "stop_desc": "FACE 48 AVENUE MARX DORMOY - 95585", "stop_name": "LES CHARDONNERETTES."}, "geometry": {"type": "Point", "coordinates": [2.381180134920911, 49.002064656160755]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e4d130371f8b94857f128d806e32b76b86df8bbf", "fields": {"departement": "92", "stop_lat": 48.88731991777116, "code_postal": "92062", "stop_lon": 2.2330127586935045, "coord": [48.88731991777116, 2.2330127586935045], "stop_id": 4024848, "stop_desc": "65-69 AVENUE DU GENERAL DE GAULLE - 92062", "stop_name": "LES GRAVIERS"}, "geometry": {"type": "Point", "coordinates": [2.2330127586935045, 48.88731991777116]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b883d1a27ee7995e4ec65d003a5f69f4a42c6d2e", "fields": {"departement": "92", "stop_lat": 48.8843757175651, "code_postal": "92062", "stop_lon": 2.227036245944437, "coord": [48.8843757175651, 2.227036245944437], "stop_id": 4024850, "stop_desc": "129 ROND-POINT DES BERGERES - 92062", "stop_name": "LES BERGERES"}, "geometry": {"type": "Point", "coordinates": [2.227036245944437, 48.8843757175651]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "21fd9f90671ffe4a20616a259166c8a8b5389db6", "fields": {"departement": "92", "stop_lat": 48.874804089391844, "code_postal": "92073", "stop_lon": 2.217532791029242, "coord": [48.874804089391844, 2.217532791029242], "stop_id": 4024853, "stop_desc": "BOULEVARD DE WASHINGTON - 92073", "stop_name": "MONT VALERIEN"}, "geometry": {"type": "Point", "coordinates": [2.217532791029242, 48.874804089391844]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5af2487baebcd73d742851e69cb7348d30c2ab87", "fields": {"departement": "92", "stop_lat": 48.86950135809105, "code_postal": "92073", "stop_lon": 2.21732705866832, "coord": [48.86950135809105, 2.21732705866832], "stop_id": 4024855, "stop_desc": "FACE 160 BOULEVARD DU MARECHAL DE LATTRE DE TASSIGNY - 92073", "stop_name": "CLUSERET - HOPITAL FOCH"}, "geometry": {"type": "Point", "coordinates": [2.21732705866832, 48.86950135809105]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b9606b54e291c69105e586f662f7207bd342f1be", "fields": {"departement": "92", "stop_lat": 48.846939862303266, "code_postal": "92064", "stop_lon": 2.214342497712777, "coord": [48.846939862303266, 2.214342497712777], "stop_id": 4024868, "stop_desc": "92 BOULEVARD DE LA REPUBLIQUE - 92064", "stop_name": "MONTRETOUT"}, "geometry": {"type": "Point", "coordinates": [2.214342497712777, 48.846939862303266]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e1caf5ba0f9c9c48c7ab1a7910bfe9c20f7021ef", "fields": {"departement": "92", "stop_lat": 48.84762556422953, "code_postal": "92064", "stop_lon": 2.208349057952916, "coord": [48.84762556422953, 2.208349057952916], "stop_id": 4024870, "stop_desc": "59 AVENUE DU MARECHAL FOCH - 92064", "stop_name": "EGLISE DE SAINT-CLOUD"}, "geometry": {"type": "Point", "coordinates": [2.208349057952916, 48.84762556422953]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3df6dea62483fffcea64d6491bc6ab7ec101c5cd", "fields": {"departement": "92", "stop_lat": 48.8512652524159, "code_postal": "92033", "stop_lon": 2.1924878225243765, "coord": [48.8512652524159, 2.1924878225243765], "stop_id": 4024877, "stop_desc": "54 RUE DU 19 JANVIER - 92033", "stop_name": "LA VERBOISE"}, "geometry": {"type": "Point", "coordinates": [2.1924878225243765, 48.8512652524159]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "00086bd37c531bed9ddf662ea6562d6ec3a0623f", "fields": {"departement": "92", "stop_lat": 48.850292960344056, "code_postal": "92033", "stop_lon": 2.191142307788003, "coord": [48.850292960344056, 2.191142307788003], "stop_id": 4024879, "stop_desc": "FACE 3 RUE DES QUATRE VENTS - 92033", "stop_name": "REGNAULT"}, "geometry": {"type": "Point", "coordinates": [2.191142307788003, 48.850292960344056]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e63ae120375e74f4f6fb83067fe9db951f3091e0", "fields": {"departement": "92", "stop_lat": 48.842405056861125, "code_postal": "92033", "stop_lon": 2.1864532494520796, "coord": [48.842405056861125, 2.1864532494520796], "stop_id": 4024890, "stop_desc": "18 BOULEVARD DU MARECHAL FOCH - 92033", "stop_name": "MAIRIE DE GARCHES"}, "geometry": {"type": "Point", "coordinates": [2.1864532494520796, 48.842405056861125]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f7ee7eb8124ecd25d2b059b975891f9bbb354d7f", "fields": {"departement": "92", "stop_lat": 48.857424860288084, "code_postal": "92064", "stop_lon": 2.2111032506904253, "coord": [48.857424860288084, 2.2111032506904253], "stop_id": 4024900, "stop_desc": "222 BOULEVARD DE LA REPUBLIQUE - 92064", "stop_name": "LA BERANGERE"}, "geometry": {"type": "Point", "coordinates": [2.2111032506904253, 48.857424860288084]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "90e8d43aef71eb2eecfb620506da229a12fef6a7", "fields": {"departement": "92", "stop_lat": 48.86006972889107, "code_postal": "92073", "stop_lon": 2.213548602298387, "coord": [48.86006972889107, 2.213548602298387], "stop_id": 4024901, "stop_desc": "20 BOULEVARD LOUIS LOUCHEUR - 92073", "stop_name": "VAL D'OR"}, "geometry": {"type": "Point", "coordinates": [2.213548602298387, 48.86006972889107]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "720635550cf1f20cb66d20fde946115e33232a40", "fields": {"departement": "95", "stop_lat": 48.92320997339393, "code_postal": "95063", "stop_lon": 2.2187301184141046, "coord": [48.92320997339393, 2.2187301184141046], "stop_id": 4024905, "stop_desc": "132 RUE JEAN JAURES - 95063", "stop_name": "PONT DE BEZONS"}, "geometry": {"type": "Point", "coordinates": [2.2187301184141046, 48.92320997339393]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e1b59e25d57b24fb29c16de345fdf960a524a30e", "fields": {"departement": "92", "stop_lat": 48.91815206931789, "code_postal": "92050", "stop_lon": 2.220514410351981, "coord": [48.91815206931789, 2.220514410351981], "stop_id": 4024907, "stop_desc": "RUE DES HAUTES PATURES - 92050", "stop_name": "HAUTES PATURES"}, "geometry": {"type": "Point", "coordinates": [2.220514410351981, 48.91815206931789]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b1c49de865fc4c2d1fd1df732407fcf8232a8977", "fields": {"departement": "92", "stop_lat": 48.91636291133198, "code_postal": "92050", "stop_lon": 2.219754835962497, "coord": [48.91636291133198, 2.219754835962497], "stop_id": 4024910, "stop_desc": "RUE DES HAUTES PATURES - 92050", "stop_name": "PERIPARC"}, "geometry": {"type": "Point", "coordinates": [2.219754835962497, 48.91636291133198]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5f4bdb6f5ff321db9c55e0163dacd8c7b0725e45", "fields": {"departement": "92", "stop_lat": 48.91259288380761, "code_postal": "92050", "stop_lon": 2.2153047950246094, "coord": [48.91259288380761, 2.2153047950246094], "stop_id": 4024913, "stop_desc": "FACE 201 RUE DES PEUPLIERS - 92050", "stop_name": "LES PEUPLIERS"}, "geometry": {"type": "Point", "coordinates": [2.2153047950246094, 48.91259288380761]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "468f475f2b98283096c80d9ea28813cd4899bfad", "fields": {"departement": "92", "stop_lat": 48.91288038437475, "code_postal": "92050", "stop_lon": 2.2152223087781913, "coord": [48.91288038437475, 2.2152223087781913], "stop_id": 4024914, "stop_desc": "201 RUE DES PEUPLIERS - 92050", "stop_name": "LES PEUPLIERS"}, "geometry": {"type": "Point", "coordinates": [2.2152223087781913, 48.91288038437475]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "09b4b516394f838bc4c64e1ce995b7a0c0d1386a", "fields": {"departement": "92", "stop_lat": 48.90108993039388, "code_postal": "92050", "stop_lon": 2.21579534791084, "coord": [48.90108993039388, 2.21579534791084], "stop_id": 4024926, "stop_desc": "BOULEVARD DES PROVINCES FRANCAISES - 92050", "stop_name": "NANTERRE - UNIVERSITE RER"}, "geometry": {"type": "Point", "coordinates": [2.21579534791084, 48.90108993039388]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3079b705fcbc1668a3b8b8cd467d786f7bb873b6", "fields": {"departement": "92", "stop_lat": 48.89568621930803, "code_postal": "92050", "stop_lon": 2.1897330713241145, "coord": [48.89568621930803, 2.1897330713241145], "stop_id": 4024938, "stop_desc": "AVENUE JULES QUENTIN - 92050", "stop_name": "ERNEST RENAN"}, "geometry": {"type": "Point", "coordinates": [2.1897330713241145, 48.89568621930803]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7e1c22e794bca23f50e80bf7cd794a1756a6fb96", "fields": {"departement": "92", "stop_lat": 48.896659834135626, "code_postal": "92050", "stop_lon": 2.1849732016999486, "coord": [48.896659834135626, 2.1849732016999486], "stop_id": 4024939, "stop_desc": "FACE 13 RUE DES AGGLOMERES - 92050", "stop_name": "PAUL LESCOP"}, "geometry": {"type": "Point", "coordinates": [2.1849732016999486, 48.896659834135626]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "46404bc9e24fb968d11d10145f1153a1c9c78fc5", "fields": {"departement": "92", "stop_lat": 48.895867989680625, "code_postal": "92050", "stop_lon": 2.1842122235125045, "coord": [48.895867989680625, 2.1842122235125045], "stop_id": 4024940, "stop_desc": "FACE 26 RUE DES AGGLOMERES - 92050", "stop_name": "PAUL LESCOP"}, "geometry": {"type": "Point", "coordinates": [2.1842122235125045, 48.895867989680625]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "94c3443cfb4d2ba5a2c913c07d05268393be935e", "fields": {"departement": "92", "stop_lat": 48.89465224409112, "code_postal": "92050", "stop_lon": 2.1822939658002705, "coord": [48.89465224409112, 2.1822939658002705], "stop_id": 4024941, "stop_desc": "21 RUE DES FONDRIERES - 92050", "stop_name": "LES GUILLERAIES"}, "geometry": {"type": "Point", "coordinates": [2.1822939658002705, 48.89465224409112]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2e94fedcb043783e82b32c5b4e7e54dbbb4d4779", "fields": {"departement": "92", "stop_lat": 48.89302176215461, "code_postal": "92050", "stop_lon": 2.179395715050497, "coord": [48.89302176215461, 2.179395715050497], "stop_id": 4024944, "stop_desc": "5-51 RUE DU PORT - 92050", "stop_name": "PARC DE L'ILE"}, "geometry": {"type": "Point", "coordinates": [2.179395715050497, 48.89302176215461]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "96aaf1745ca1c276dfa6c6515994675a7cab9c36", "fields": {"departement": "92", "stop_lat": 48.88759745553194, "code_postal": "92063", "stop_lon": 2.1691501442509784, "coord": [48.88759745553194, 2.1691501442509784], "stop_id": 4024951, "stop_desc": "1 AVENUE EDOUARD BELIN - 92063", "stop_name": "EDOUARD BELIN"}, "geometry": {"type": "Point", "coordinates": [2.1691501442509784, 48.88759745553194]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6ab7e4d40661df9000daf292652fa87690514cff", "fields": {"departement": "92", "stop_lat": 48.88734753794848, "code_postal": "92063", "stop_lon": 2.1703774937566624, "coord": [48.88734753794848, 2.1703774937566624], "stop_id": 4024952, "stop_desc": "FACE 3 R DES 2 GARES - 92063", "stop_name": "RUEIL-MALMAISON RER"}, "geometry": {"type": "Point", "coordinates": [2.1703774937566624, 48.88734753794848]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5be02d94c26ada57022076af7a1cbb9a2e491e30", "fields": {"departement": "92", "stop_lat": 48.89060644172649, "code_postal": "92063", "stop_lon": 2.1679273977462246, "coord": [48.89060644172649, 2.1679273977462246], "stop_id": 4024971, "stop_desc": "FACE 27 RUE GUY DE MAUPASSANT - 92063", "stop_name": "CLAUDE MONET"}, "geometry": {"type": "Point", "coordinates": [2.1679273977462246, 48.89060644172649]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "80675270056fbf8af9a9b7fbc2dfdacd5cc4e404", "fields": {"departement": "92", "stop_lat": 48.894473025592475, "code_postal": "92050", "stop_lon": 2.1759156236892245, "coord": [48.894473025592475, 2.1759156236892245], "stop_id": 4024973, "stop_desc": "53 RUE DU PORT - 92050", "stop_name": "LAVOISIER"}, "geometry": {"type": "Point", "coordinates": [2.1759156236892245, 48.894473025592475]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "30b2cea857980aadf2bfb47f8900971487768a23", "fields": {"departement": "92", "stop_lat": 48.89537937703566, "code_postal": "92050", "stop_lon": 2.196099301858471, "coord": [48.89537937703566, 2.196099301858471], "stop_id": 4024979, "stop_desc": "FACE AU 70 BOULEVARD DU COUCHANT - 92050", "stop_name": "NANTERRE-VILLE RER"}, "geometry": {"type": "Point", "coordinates": [2.196099301858471, 48.89537937703566]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "709374e8c77817b5c1f20bf67d6de252baf97482", "fields": {"departement": "92", "stop_lat": 48.83466724735208, "code_postal": "92012", "stop_lon": 2.22806761335688, "coord": [48.83466724735208, 2.22806761335688], "stop_id": 4024985, "stop_desc": "42 R DE SEVRES - 92012", "stop_name": "GALLIENI"}, "geometry": {"type": "Point", "coordinates": [2.22806761335688, 48.83466724735208]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d96d173ed929135f0af251b62295c5ea48857c9f", "fields": {"departement": "92", "stop_lat": 48.84010504758792, "code_postal": "92012", "stop_lon": 2.228410179817798, "coord": [48.84010504758792, 2.228410179817798], "stop_id": 4024989, "stop_desc": "6 R DE SEVRES - 92012", "stop_name": "RHIN ET DANUBE - METRO"}, "geometry": {"type": "Point", "coordinates": [2.228410179817798, 48.84010504758792]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d5ed901aa7bbce358415fbd74bd81e3cfb4105fb", "fields": {"departement": "92", "stop_lat": 48.842309338591164, "code_postal": "92064", "stop_lon": 2.2213658958134324, "coord": [48.842309338591164, 2.2213658958134324], "stop_id": 4024991, "stop_desc": "6 RUE DAILLY - 92064", "stop_name": "PARC DE SAINT-CLOUD"}, "geometry": {"type": "Point", "coordinates": [2.2213658958134324, 48.842309338591164]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "50104109dd850bd6dc24925f41b3d1cef3845f0d", "fields": {"departement": "92", "stop_lat": 48.8417773109115, "code_postal": "92064", "stop_lon": 2.202603924506652, "coord": [48.8417773109115, 2.202603924506652], "stop_id": 4025002, "stop_desc": "15 R PASTEUR - 92064", "stop_name": "LELEGARD"}, "geometry": {"type": "Point", "coordinates": [2.202603924506652, 48.8417773109115]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d831a55d9aa79f0dcd4723f7b9b6d06e48c2cff9", "fields": {"departement": "92", "stop_lat": 48.855949945408625, "code_postal": "92063", "stop_lon": 2.194327060177352, "coord": [48.855949945408625, 2.194327060177352], "stop_id": 4025013, "stop_desc": "52 BIS R DU COLONEL DE ROCHEBRUNE - 92063", "stop_name": "EGLISE DE BUZENVAL"}, "geometry": {"type": "Point", "coordinates": [2.194327060177352, 48.855949945408625]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "341b98f53c094e6b85e78dea6ab5951ec308baa1", "fields": {"departement": "92", "stop_lat": 48.864576712675145, "code_postal": "92063", "stop_lon": 2.172548595243254, "coord": [48.864576712675145, 2.172548595243254], "stop_id": 4025023, "stop_desc": "R DU GENERAL DE MIRIBEL - 92063", "stop_name": "BRETAGNE"}, "geometry": {"type": "Point", "coordinates": [2.172548595243254, 48.864576712675145]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cdd6a1bb0a214f4a99c7227f94c83942c2614ef2", "fields": {"departement": "92", "stop_lat": 48.86742964019009, "code_postal": "92063", "stop_lon": 2.175413980846187, "coord": [48.86742964019009, 2.175413980846187], "stop_id": 4025024, "stop_desc": "1 R DU GENERAL DE MIRIBEL - 92063", "stop_name": "GENERAL DE MIRIBEL"}, "geometry": {"type": "Point", "coordinates": [2.175413980846187, 48.86742964019009]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "66e3dded0233ccf7b1673b83dd1a0d74f9ca9429", "fields": {"departement": "92", "stop_lat": 48.871637489328236, "code_postal": "92063", "stop_lon": 2.1835344210818635, "coord": [48.871637489328236, 2.1835344210818635], "stop_id": 4025032, "stop_desc": "17 BOULEVARD RICHELIEU - 92063", "stop_name": "ZURICH"}, "geometry": {"type": "Point", "coordinates": [2.1835344210818635, 48.871637489328236]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c48a3d8cbf8344bd60b3a1defbd194d40ce468e9", "fields": {"departement": "92", "stop_lat": 48.880673665885105, "code_postal": "92063", "stop_lon": 2.1796649666871524, "coord": [48.880673665885105, 2.1796649666871524], "stop_id": 4025039, "stop_desc": "6 AVENUE ALBERT 1ER - 92063", "stop_name": "ALBERT 1ER - RUEIL - VILLE"}, "geometry": {"type": "Point", "coordinates": [2.1796649666871524, 48.880673665885105]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a1aa3e06eafb1515d7d05eaf69d086590ce6377a", "fields": {"departement": "92", "stop_lat": 48.88391135478196, "code_postal": "92063", "stop_lon": 2.1746675301348812, "coord": [48.88391135478196, 2.1746675301348812], "stop_id": 4025040, "stop_desc": "72 AVENUE ALBERT 1ER - 92063", "stop_name": "BAUDIN"}, "geometry": {"type": "Point", "coordinates": [2.1746675301348812, 48.88391135478196]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8a25d038dabfd2df02cdee1b45adc8776c9ec45e", "fields": {"departement": "92", "stop_lat": 48.88033371255349, "code_postal": "92063", "stop_lon": 2.180851493712825, "coord": [48.88033371255349, 2.180851493712825], "stop_id": 4025046, "stop_desc": "1-3 RUE D'ESTIENNE D'ORVES - 92063", "stop_name": "RUEIL - VILLE"}, "geometry": {"type": "Point", "coordinates": [2.180851493712825, 48.88033371255349]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a3e6a36cf5267bd9966625b8e17b3e3bc3a73e18", "fields": {"departement": "92", "stop_lat": 48.849154361241695, "code_postal": "92033", "stop_lon": 2.2011003952220496, "coord": [48.849154361241695, 2.2011003952220496], "stop_id": 4025052, "stop_desc": "FACE 114 R DE LA PORTE JAUNE - 92033", "stop_name": "FOCH - 19 JANVIER"}, "geometry": {"type": "Point", "coordinates": [2.2011003952220496, 48.849154361241695]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6718f3805e921f777bbe16125a1e4eb406b5ff0e", "fields": {"departement": "92", "stop_lat": 48.845016669865494, "code_postal": "92033", "stop_lon": 2.1981291143434776, "coord": [48.845016669865494, 2.1981291143434776], "stop_id": 4025054, "stop_desc": "17-19 R DE LA PORTE JAUNE - 92033", "stop_name": "LES CROISSANTS"}, "geometry": {"type": "Point", "coordinates": [2.1981291143434776, 48.845016669865494]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eef0d344d3f8fa0055c09dd81676f8c1e9b78d2e", "fields": {"departement": "92", "stop_lat": 48.876279725607716, "code_postal": "92063", "stop_lon": 2.1803050865812237, "coord": [48.876279725607716, 2.1803050865812237], "stop_id": 4025064, "stop_desc": "26 RUE HERVET - 92063", "stop_name": "EGLISE DE RUEIL"}, "geometry": {"type": "Point", "coordinates": [2.1803050865812237, 48.876279725607716]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "627c58928f33860bda2fc24a8be35a53f658d37b", "fields": {"departement": "92", "stop_lat": 48.87137676953357, "code_postal": "92063", "stop_lon": 2.1834670740107733, "coord": [48.87137676953357, 2.1834670740107733], "stop_id": 4025066, "stop_desc": "FACE 27-29 BOULEVARD RICHELIEU - 92063", "stop_name": "ZURICH"}, "geometry": {"type": "Point", "coordinates": [2.1834670740107733, 48.87137676953357]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9f51be9d8dc554f51e20b0991bede52c30988fc3", "fields": {"departement": "92", "stop_lat": 48.85719375210371, "code_postal": "92063", "stop_lon": 2.1898561808210513, "coord": [48.85719375210371, 2.1898561808210513], "stop_id": 4025076, "stop_desc": "FACE 4 R DU MARQUIS DE CORIOLIS - 92063", "stop_name": "HENRI REGNAULT"}, "geometry": {"type": "Point", "coordinates": [2.1898561808210513, 48.85719375210371]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "53ebe59c6721dd203f61407d4bc7c320f613d419", "fields": {"departement": "92", "stop_lat": 48.858928691961545, "code_postal": "92063", "stop_lon": 2.190150906124163, "coord": [48.858928691961545, 2.190150906124163], "stop_id": 4025078, "stop_desc": "AV DU MARECHAL LECLERC DE HAUTECLOQUE - 92063", "stop_name": "HENRI REGNAULT."}, "geometry": {"type": "Point", "coordinates": [2.190150906124163, 48.858928691961545]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5db7a75a96fa8bf76d56403a6a06f756fb43aa5b", "fields": {"departement": "92", "stop_lat": 48.882606688350634, "code_postal": "92062", "stop_lon": 2.2389772115482813, "coord": [48.882606688350634, 2.2389772115482813], "stop_id": 4025087, "stop_desc": "69 RUE EUGENE EICHENBERGER - 92062", "stop_name": "MARCHE DE PUTEAUX"}, "geometry": {"type": "Point", "coordinates": [2.2389772115482813, 48.882606688350634]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8bcead51707e1d24b6f4c333b58b7100bc25b2fc", "fields": {"departement": "92", "stop_lat": 48.883969094999905, "code_postal": "92062", "stop_lon": 2.2346411462534888, "coord": [48.883969094999905, 2.2346411462534888], "stop_id": 4025088, "stop_desc": "FACE145BIS RUE DE LA REPUBLIQUE - 92062", "stop_name": "GARE DE PUTEAUX"}, "geometry": {"type": "Point", "coordinates": [2.2346411462534888, 48.883969094999905]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0e8628a607ad4c906c4d93a0aaedfc6894792f1a", "fields": {"departement": "92", "stop_lat": 48.88632948357126, "code_postal": "92062", "stop_lon": 2.2309296780930685, "coord": [48.88632948357126, 2.2309296780930685], "stop_id": 4025092, "stop_desc": "81 AVENUE DU PRESIDENT WILSON - 92062", "stop_name": "CHARLES LORILLEUX"}, "geometry": {"type": "Point", "coordinates": [2.2309296780930685, 48.88632948357126]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ab2ccb15e94bc75d460d48b847894d91f2ea06f8", "fields": {"departement": "92", "stop_lat": 48.8884961733333, "code_postal": "92062", "stop_lon": 2.2317974570829215, "coord": [48.8884961733333, 2.2317974570829215], "stop_id": 4025093, "stop_desc": "6 RUE MARCELIN BERTHELOT - 92062", "stop_name": "JULES VERNE - PALAIS DE LA JEUNESSE"}, "geometry": {"type": "Point", "coordinates": [2.2317974570829215, 48.8884961733333]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dc074a5e522202898c883db9904938b54ac18ee7", "fields": {"departement": "92", "stop_lat": 48.89225832527781, "code_postal": "92050", "stop_lon": 2.227932658046209, "coord": [48.89225832527781, 2.227932658046209], "stop_id": 4025096, "stop_desc": "BD DES BOUVETS - 92050", "stop_name": "CIMETIERE NOUVEAU"}, "geometry": {"type": "Point", "coordinates": [2.227932658046209, 48.89225832527781]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "86debf9b1e6eef1d80f23d206865209a118c4451", "fields": {"departement": "92", "stop_lat": 48.89225832527781, "code_postal": "92050", "stop_lon": 2.227932658046209, "coord": [48.89225832527781, 2.227932658046209], "stop_id": 4025097, "stop_desc": "BD DES BOUVETS - 92050", "stop_name": "CIMETIERE NOUVEAU"}, "geometry": {"type": "Point", "coordinates": [2.227932658046209, 48.89225832527781]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bfb2549f46e270d6780b7f351b9b231f0fbbe0ae", "fields": {"departement": "92", "stop_lat": 48.881681136378475, "code_postal": "92062", "stop_lon": 2.22877256644245, "coord": [48.881681136378475, 2.22877256644245], "stop_id": 4025102, "stop_desc": "29 RUE CARTAULT - 92062", "stop_name": "CARTAULT - PALISSY"}, "geometry": {"type": "Point", "coordinates": [2.22877256644245, 48.881681136378475]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e6e04a391ab6cc95a885ad44a6287be09a11dd2e", "fields": {"departement": "92", "stop_lat": 48.884058815418165, "code_postal": "92062", "stop_lon": 2.2454746925662836, "coord": [48.884058815418165, 2.2454746925662836], "stop_id": 4025106, "stop_desc": "FACE 52 RUE JEAN JAURES - 92062", "stop_name": "ARAGO - JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.2454746925662836, 48.884058815418165]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b9ae6b73995254689d916172bac48778a44d65ec", "fields": {"departement": "92", "stop_lat": 48.881681136378475, "code_postal": "92062", "stop_lon": 2.22877256644245, "coord": [48.881681136378475, 2.22877256644245], "stop_id": 4025137, "stop_desc": "29 RUE CARTAULT - 92062", "stop_name": "CARTAULT - PALISSY"}, "geometry": {"type": "Point", "coordinates": [2.22877256644245, 48.881681136378475]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "695af624f8139f637c558b2859e4737e872bbb2a", "fields": {"departement": "92", "stop_lat": 48.88267095834993, "code_postal": "92062", "stop_lon": 2.240639578928195, "coord": [48.88267095834993, 2.240639578928195], "stop_id": 4025140, "stop_desc": "RUE JEAN JAURES - 92062", "stop_name": "ROQUE DE FILLOL"}, "geometry": {"type": "Point", "coordinates": [2.240639578928195, 48.88267095834993]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2e511c66c922e8396ce05c1bbf471c88e1e3bf3e", "fields": {"departement": "92", "stop_lat": 48.87796073829657, "code_postal": "92062", "stop_lon": 2.239544673463894, "coord": [48.87796073829657, 2.239544673463894], "stop_id": 4025148, "stop_desc": "5 R PARMENTIER - 92062", "stop_name": "VOLTAIRE"}, "geometry": {"type": "Point", "coordinates": [2.239544673463894, 48.87796073829657]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aa969279362ce8cdcabc830446bc3c76088b7ba0", "fields": {"departement": "92", "stop_lat": 48.8784594456576, "code_postal": "92062", "stop_lon": 2.245075829970116, "coord": [48.8784594456576, 2.245075829970116], "stop_id": 4025150, "stop_desc": "ALLEE GEORGES HASSAUX - 92062", "stop_name": "ILE DE PUTEAUX"}, "geometry": {"type": "Point", "coordinates": [2.245075829970116, 48.8784594456576]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dd1c7c41611966d01d768acfa5b636dc2b9794b3", "fields": {"departement": "92", "stop_lat": 48.88738648256199, "code_postal": "92062", "stop_lon": 2.2372782519351437, "coord": [48.88738648256199, 2.2372782519351437], "stop_id": 4025168, "stop_desc": "23 RUE LOUIS POUEY - 92062", "stop_name": "BOIELDIEU"}, "geometry": {"type": "Point", "coordinates": [2.2372782519351437, 48.88738648256199]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4d5170c8729ef67316e16e6455022001a7feed7e", "fields": {"departement": "92", "stop_lat": 48.88582415923911, "code_postal": "92062", "stop_lon": 2.239025622435695, "coord": [48.88582415923911, 2.239025622435695], "stop_id": 4025169, "stop_desc": "1 RUE LOUIS POUEY - 92062", "stop_name": "MONTAIGNE"}, "geometry": {"type": "Point", "coordinates": [2.239025622435695, 48.88582415923911]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cb4a9a6890877f95a0245452ae42ef640d3d444e", "fields": {"departement": "92", "stop_lat": 48.88009441738014, "code_postal": "92062", "stop_lon": 2.244159961857736, "coord": [48.88009441738014, 2.244159961857736], "stop_id": 4025172, "stop_desc": "1 BIS RUE GODEFROY - 92062", "stop_name": "GODEFROY - QUAI DE DION BOUTON"}, "geometry": {"type": "Point", "coordinates": [2.244159961857736, 48.88009441738014]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "acc161e65bff7e974562ae07a34597066c62e584", "fields": {"departement": "92", "stop_lat": 48.8843757175651, "code_postal": "92062", "stop_lon": 2.227036245944437, "coord": [48.8843757175651, 2.227036245944437], "stop_id": 4025180, "stop_desc": "129 ROND-POINT DES BERGERES - 92062", "stop_name": "LES BERGERES"}, "geometry": {"type": "Point", "coordinates": [2.227036245944437, 48.8843757175651]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4b388c33cdca28323c619311b83daca477074435", "fields": {"departement": "92", "stop_lat": 48.899308650262405, "code_postal": "92050", "stop_lon": 2.190227118923417, "coord": [48.899308650262405, 2.190227118923417], "stop_id": 4025231, "stop_desc": "BD DU GENERAL LECLERC - 92050", "stop_name": "CHEMIN DE L'ILE"}, "geometry": {"type": "Point", "coordinates": [2.190227118923417, 48.899308650262405]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6c58a34b6cde9f237c9df93547fc471b5d8da65e", "fields": {"departement": "92", "stop_lat": 48.88773054840441, "code_postal": "92050", "stop_lon": 2.188120317758764, "coord": [48.88773054840441, 2.188120317758764], "stop_id": 4025241, "stop_desc": "85 AVENUE LENINE - 92050", "stop_name": "LES GOULVENTS"}, "geometry": {"type": "Point", "coordinates": [2.188120317758764, 48.88773054840441]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3d7b2582ebb16061224ac35b94ccbf4440d65a1e", "fields": {"departement": "92", "stop_lat": 48.878223793029576, "code_postal": "92050", "stop_lon": 2.204825649143524, "coord": [48.878223793029576, 2.204825649143524], "stop_id": 4025250, "stop_desc": "123 R DES CHAILLIERS - 92050", "stop_name": "LES CHAILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.204825649143524, 48.878223793029576]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5eef83ecf5b35326b7b2272324e8a39dda8d3c3c", "fields": {"departement": "92", "stop_lat": 48.87805706667851, "code_postal": "92050", "stop_lon": 2.208505029260346, "coord": [48.87805706667851, 2.208505029260346], "stop_id": 4025251, "stop_desc": "40 R DU CALVAIRE - 92050", "stop_name": "GARCHES"}, "geometry": {"type": "Point", "coordinates": [2.208505029260346, 48.87805706667851]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "768f256f89a5287b8361248bdd459f5852dd7093", "fields": {"departement": "92", "stop_lat": 48.877895545964726, "code_postal": "92050", "stop_lon": 2.2087370675198024, "coord": [48.877895545964726, 2.2087370675198024], "stop_id": 4025252, "stop_desc": "41-43 R DU CALVAIRE - 92050", "stop_name": "GARCHES"}, "geometry": {"type": "Point", "coordinates": [2.2087370675198024, 48.877895545964726]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "239a30a4a77367f4c513e336632c1da44523a626", "fields": {"departement": "92", "stop_lat": 48.87514488031733, "code_postal": "92050", "stop_lon": 2.2082261364005986, "coord": [48.87514488031733, 2.2082261364005986], "stop_id": 4025254, "stop_desc": "102 CHE DU CALVAIRE - 92050", "stop_name": "CIMETIERE DU MONT VALERIEN"}, "geometry": {"type": "Point", "coordinates": [2.2082261364005986, 48.87514488031733]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d702f32049af1cf728288f645a4af75b04a04483", "fields": {"departement": "92", "stop_lat": 48.88772674136297, "code_postal": "92050", "stop_lon": 2.1999088101019866, "coord": [48.88772674136297, 2.1999088101019866], "stop_id": 4025256, "stop_desc": "19 R GAMBETTA - 92050", "stop_name": "GAMBETTA"}, "geometry": {"type": "Point", "coordinates": [2.1999088101019866, 48.88772674136297]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e3fc3c956e24c2acfff6970775f460148976c288", "fields": {"departement": "92", "stop_lat": 48.89181993358955, "code_postal": "92050", "stop_lon": 2.195659226678591, "coord": [48.89181993358955, 2.195659226678591], "stop_id": 4025259, "stop_desc": "FACE 27-29 R MAURICE THOREZ - 92050", "stop_name": "PARC DES ANCIENNES MAIRIES"}, "geometry": {"type": "Point", "coordinates": [2.195659226678591, 48.89181993358955]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ca3f54c5b08e8cb31226bce5cc6aa9d50b3807bf", "fields": {"departement": "92", "stop_lat": 48.89409423242805, "code_postal": "92050", "stop_lon": 2.1961164321360105, "coord": [48.89409423242805, 2.1961164321360105], "stop_id": 4025260, "stop_desc": "FACE 43 RUE DE STALINGRAD - 92050", "stop_name": "MAURICE THOREZ"}, "geometry": {"type": "Point", "coordinates": [2.1961164321360105, 48.89409423242805]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cac60af7c814a52ac2b9abc472686285ba5ede9f", "fields": {"departement": "92", "stop_lat": 48.88066535817667, "code_postal": "92050", "stop_lon": 2.210351747286266, "coord": [48.88066535817667, 2.210351747286266], "stop_id": 4025276, "stop_desc": "161 R DE LA SOURCE - 92050", "stop_name": "LUAPS"}, "geometry": {"type": "Point", "coordinates": [2.210351747286266, 48.88066535817667]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2778fe49430a01269f42b4de27d859b05588fc73", "fields": {"departement": "92", "stop_lat": 48.89588719523416, "code_postal": "92050", "stop_lon": 2.2080245586894116, "coord": [48.89588719523416, 2.2080245586894116], "stop_id": 4025288, "stop_desc": "BOULEVARD HONORE DE BALZAC - 92050", "stop_name": "BERTHELOT"}, "geometry": {"type": "Point", "coordinates": [2.2080245586894116, 48.89588719523416]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d19a545d4d506645ae1d473367e19ee6e4ef9a9b", "fields": {"departement": "92", "stop_lat": 48.89150331423726, "code_postal": "92050", "stop_lon": 2.193929171222875, "coord": [48.89150331423726, 2.193929171222875], "stop_id": 4025302, "stop_desc": "FACE 3 R JEAN-BAPTISTE LEBON - 92050", "stop_name": "JEAN-BAPTISTE LEBON"}, "geometry": {"type": "Point", "coordinates": [2.193929171222875, 48.89150331423726]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c4d7fbe505da733e4d1089c13fcc082dd1ffebe7", "fields": {"departement": "92", "stop_lat": 48.88653863826318, "code_postal": "92050", "stop_lon": 2.2063034841934472, "coord": [48.88653863826318, 2.2063034841934472], "stop_id": 4025308, "stop_desc": "68 AVENUE GEORGES CLEMENCEAU - 92050", "stop_name": "LA SOURCE"}, "geometry": {"type": "Point", "coordinates": [2.2063034841934472, 48.88653863826318]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c8b3286d4042a0fccc66abed9782eb773826913b", "fields": {"departement": "92", "stop_lat": 48.88553311566029, "code_postal": "92050", "stop_lon": 2.207259964985575, "coord": [48.88553311566029, 2.207259964985575], "stop_id": 4025309, "stop_desc": "50 R PHILIPPE TRIAIRE - 92050", "stop_name": "LES CHENEVREUX"}, "geometry": {"type": "Point", "coordinates": [2.207259964985575, 48.88553311566029]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ac9fae0a9608dac118766dc2c07b54d3db425ffd", "fields": {"departement": "92", "stop_lat": 48.8634126465571, "code_postal": "92063", "stop_lon": 2.1629352160322277, "coord": [48.8634126465571, 2.1629352160322277], "stop_id": 4025322, "stop_desc": "3 R DE LA BERGERIE - 92063", "stop_name": "BERGERIE"}, "geometry": {"type": "Point", "coordinates": [2.1629352160322277, 48.8634126465571]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8bf251e04b12f9759effac20b967c9227130b342", "fields": {"departement": "92", "stop_lat": 48.87818488190759, "code_postal": "92063", "stop_lon": 2.1801903124346387, "coord": [48.87818488190759, 2.1801903124346387], "stop_id": 4025330, "stop_desc": "8 BOULEVARD DU MARECHAL FOCH - 92063", "stop_name": "MAIRIE DE RUEIL"}, "geometry": {"type": "Point", "coordinates": [2.1801903124346387, 48.87818488190759]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5038988d5b6ca812b3b709621ae17493ad376618", "fields": {"departement": "92", "stop_lat": 48.858448299232506, "code_postal": "92063", "stop_lon": 2.194197589561049, "coord": [48.858448299232506, 2.194197589561049], "stop_id": 4025350, "stop_desc": "153 BIS R DU LIEUTENANT COLONEL DE MONTBRISON - 92063", "stop_name": "EGLISE DE BUZENVAL"}, "geometry": {"type": "Point", "coordinates": [2.194197589561049, 48.858448299232506]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "be3488fe6b890da00919b0bea59540e3b12e07b0", "fields": {"departement": "92", "stop_lat": 48.876609766047764, "code_postal": "92063", "stop_lon": 2.185318228544712, "coord": [48.876609766047764, 2.185318228544712], "stop_id": 4025351, "stop_desc": "FACE 32 RUE DE LA LIBERATION - 92063", "stop_name": "HOPITAL STELL"}, "geometry": {"type": "Point", "coordinates": [2.185318228544712, 48.876609766047764]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fc3d913b3b0115fcf7cff9ac7d3088d6e3352314", "fields": {"departement": "92", "stop_lat": 48.89584909177021, "code_postal": "92050", "stop_lon": 2.2235497155722275, "coord": [48.89584909177021, 2.2235497155722275], "stop_id": 4025355, "stop_desc": "0 BOULEVARD DE PESARO - 92050", "stop_name": "NANTERRE-PREFECTURE RER"}, "geometry": {"type": "Point", "coordinates": [2.2235497155722275, 48.89584909177021]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "abcbdec57dbdd0f19bd6562e6f445b8c39f2ff0f", "fields": {"departement": "92", "stop_lat": 48.88591944348874, "code_postal": "92050", "stop_lon": 2.2248116290816093, "coord": [48.88591944348874, 2.2248116290816093], "stop_id": 4025363, "stop_desc": "R DE WATFORD - 92050", "stop_name": "WATFORD"}, "geometry": {"type": "Point", "coordinates": [2.2248116290816093, 48.88591944348874]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9a581f8a5cdb01f1b1087ff8b64c5a81c804c183", "fields": {"departement": "94", "stop_lat": 48.804191939783315, "code_postal": "94046", "stop_lon": 2.444214244601107, "coord": [48.804191939783315, 2.444214244601107], "stop_id": 3619809, "stop_desc": "253 BIS AVENUE DU GENERAL LECLERC - 94046", "stop_name": "LES JUILLIOTTES-METRO"}, "geometry": {"type": "Point", "coordinates": [2.444214244601107, 48.804191939783315]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0f42e2f2f0b745e0aa5507e50c790ba6d4ea744e", "fields": {"departement": "94", "stop_lat": 48.79636753616064, "code_postal": "94081", "stop_lon": 2.416050807417979, "coord": [48.79636753616064, 2.416050807417979], "stop_id": 3619789, "stop_desc": "AVENUE DU PRESIDENT SALVADOR ALLENDE - 94081", "stop_name": "PONT DE VITRY"}, "geometry": {"type": "Point", "coordinates": [2.416050807417979, 48.79636753616064]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5dd5cb01aa3145710abe8f503f0dda4b5dda25ca", "fields": {"departement": "75", "stop_lat": 48.81755123675178, "code_postal": "75112", "stop_lon": 2.4592942887163525, "coord": [48.81755123675178, 2.4592942887163525], "stop_id": 3619839, "stop_desc": "FACE 22 AVENUE DES CANADIENS - 75112", "stop_name": "FRERES LUMIERE"}, "geometry": {"type": "Point", "coordinates": [2.4592942887163525, 48.81755123675178]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "677090d76f2c3b6f9854896a00c5a1296d02558c", "fields": {"departement": "94", "stop_lat": 48.80267422348641, "code_postal": "94081", "stop_lon": 2.40604639220502, "coord": [48.80267422348641, 2.40604639220502], "stop_id": 3619836, "stop_desc": "52 R CHARLES FOURIER - 94081", "stop_name": "PASTEUR - CHARLES FOURIER"}, "geometry": {"type": "Point", "coordinates": [2.40604639220502, 48.80267422348641]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7ef2462f82ebabc6690b42a3a3d393328d68289b", "fields": {"departement": "94", "stop_lat": 48.80093266373305, "code_postal": "94028", "stop_lon": 2.4503572214194693, "coord": [48.80093266373305, 2.4503572214194693], "stop_id": 3619832, "stop_desc": "100 AVENUE DU MARECHAL DE LATTRE DE TASSIGNY - 94028", "stop_name": "VIET"}, "geometry": {"type": "Point", "coordinates": [2.4503572214194693, 48.80093266373305]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1783370cc4b85ba7e36dd9430ca2018caa777856", "fields": {"departement": "94", "stop_lat": 48.78243951884652, "code_postal": "94028", "stop_lon": 2.4642304365360244, "coord": [48.78243951884652, 2.4642304365360244], "stop_id": 3619822, "stop_desc": "92-94 RUE JULIETTE SAVAR - 94028", "stop_name": "HENRI CARDINAUD"}, "geometry": {"type": "Point", "coordinates": [2.4642304365360244, 48.78243951884652]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6c4673410b3122b31859807f77efb9f2160c5ae3", "fields": {"departement": "94", "stop_lat": 48.803849211682014, "code_postal": "94002", "stop_lon": 2.4235456106895175, "coord": [48.803849211682014, 2.4235456106895175], "stop_id": 3619794, "stop_desc": "64 RUE VICTOR HUGO - 94002", "stop_name": "RAYMOND JACLARD"}, "geometry": {"type": "Point", "coordinates": [2.4235456106895175, 48.803849211682014]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "145ac5eb4a049cf8c21aff83ee66b6d5565f8818", "fields": {"departement": "94", "stop_lat": 48.77980464437932, "code_postal": "94028", "stop_lon": 2.465529593805048, "coord": [48.77980464437932, 2.465529593805048], "stop_id": 3619824, "stop_desc": "98 RUE JULIETTE SAVAR - 94028", "stop_name": "CASALIS - SAVAR"}, "geometry": {"type": "Point", "coordinates": [2.465529593805048, 48.77980464437932]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bba894521679c33e065cc24df57ba68253bcf031", "fields": {"departement": "94", "stop_lat": 48.78519120243953, "code_postal": "94028", "stop_lon": 2.4629450315419548, "coord": [48.78519120243953, 2.4629450315419548], "stop_id": 3619821, "stop_desc": "47 RUE JULIETTE SAVAR - 94028", "stop_name": "ORME AU CHAT"}, "geometry": {"type": "Point", "coordinates": [2.4629450315419548, 48.78519120243953]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f52f79e67aa30e67b6d30c6f912abb5ed7d6afe1", "fields": {"departement": "94", "stop_lat": 48.79134120119615, "code_postal": "94028", "stop_lon": 2.4607970391449507, "coord": [48.79134120119615, 2.4607970391449507], "stop_id": 3619816, "stop_desc": "RUE D'ESTIENNE D'ORVES - 94028", "stop_name": "BRETAGNE"}, "geometry": {"type": "Point", "coordinates": [2.4607970391449507, 48.79134120119615]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6a1f72a4c8f42ad7a5f0905863a9dd977c0b32ed", "fields": {"departement": "94", "stop_lat": 48.8148695637539, "code_postal": "94046", "stop_lon": 2.4216858672703037, "coord": [48.8148695637539, 2.4216858672703037], "stop_id": 3619743, "stop_desc": "FACE 29 AVENUE DU GENERAL LECLERC - 94046", "stop_name": "ECOLE VETERINAIRE DE MAISONS-ALFORT"}, "geometry": {"type": "Point", "coordinates": [2.4216858672703037, 48.8148695637539]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "077441160cac3037b4a3747b7ef4ea0830357401", "fields": {"departement": "94", "stop_lat": 48.806103348118064, "code_postal": "94046", "stop_lon": 2.4259985924107417, "coord": [48.806103348118064, 2.4259985924107417], "stop_id": 3619748, "stop_desc": "64 BIS AVENUE DU GENERAL DE GAULLE - 94046", "stop_name": "PROFESSEUR CADIOT"}, "geometry": {"type": "Point", "coordinates": [2.4259985924107417, 48.806103348118064]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "24098981bdb0fce470b560346ec366ffd07ba0b8", "fields": {"departement": "94", "stop_lat": 48.77294449703535, "code_postal": "94011", "stop_lon": 2.490261360330465, "coord": [48.77294449703535, 2.490261360330465], "stop_id": 3619704, "stop_desc": "0 AV RHIN ET DANUBE-PREMIERE ARMEE FRANCAISE - 94011", "stop_name": "RHIN ET DANUBE"}, "geometry": {"type": "Point", "coordinates": [2.490261360330465, 48.77294449703535]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cc546a82973bc2cd9695a42a93d6e52e89f1fbfe", "fields": {"departement": "94", "stop_lat": 48.78201271988064, "code_postal": "94028", "stop_lon": 2.4598228120093797, "coord": [48.78201271988064, 2.4598228120093797], "stop_id": 3619731, "stop_desc": "RUE MAURICE UTRILLO (D1B) - 94028", "stop_name": "LYCEE SAINT-EXUPERY"}, "geometry": {"type": "Point", "coordinates": [2.4598228120093797, 48.78201271988064]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8302abcfaaedc0dbf828e309b20b15fdb3905004", "fields": {"departement": "94", "stop_lat": 48.81000564772791, "code_postal": "94046", "stop_lon": 2.423828001999437, "coord": [48.81000564772791, 2.423828001999437], "stop_id": 3619747, "stop_desc": "23 BIS AVENUE DU GENERAL DE GAULLE - 94046", "stop_name": "PIERRE CURIE"}, "geometry": {"type": "Point", "coordinates": [2.423828001999437, 48.81000564772791]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "de17dc46866ef2b878862d1fd364aef385ef48c2", "fields": {"departement": "94", "stop_lat": 48.78217006978288, "code_postal": "94011", "stop_lon": 2.4941919117596556, "coord": [48.78217006978288, 2.4941919117596556], "stop_id": 3619698, "stop_desc": "FACE 14 ROUTE DE STAINS - 94011", "stop_name": "MOULIN BATEAU"}, "geometry": {"type": "Point", "coordinates": [2.4941919117596556, 48.78217006978288]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "70903ec515eaeb9fd10e8ea08507c9e81b0f4fa0", "fields": {"departement": "94", "stop_lat": 48.78005034243216, "code_postal": "94011", "stop_lon": 2.493097502950846, "coord": [48.78005034243216, 2.493097502950846], "stop_id": 3619701, "stop_desc": "6 ROUTE DE STAINS - 94011", "stop_name": "PORT DE BONNEUIL"}, "geometry": {"type": "Point", "coordinates": [2.493097502950846, 48.78005034243216]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "183c4e1b651f0782352f1d8da7776eef9d3d73e0", "fields": {"departement": "94", "stop_lat": 48.76994130248055, "code_postal": "94011", "stop_lon": 2.476600720565667, "coord": [48.76994130248055, 2.476600720565667], "stop_id": 3619711, "stop_desc": "AVENUE DU DOCTEUR ROUX - 94011", "stop_name": "DOCTEUR ROUX"}, "geometry": {"type": "Point", "coordinates": [2.476600720565667, 48.76994130248055]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0d9c62089a4b07c013422beda9cfe1cf48b3e953", "fields": {"departement": "94", "stop_lat": 48.77060554041263, "code_postal": "94028", "stop_lon": 2.4611556570563367, "coord": [48.77060554041263, 2.4611556570563367], "stop_id": 3619740, "stop_desc": "1-2 PLACE DES ALIZES - 94028", "stop_name": "LA SOURCE"}, "geometry": {"type": "Point", "coordinates": [2.4611556570563367, 48.77060554041263]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5318dc3da1973b2094cf5c79b744284240092dec", "fields": {"departement": "94", "stop_lat": 48.77173059396369, "code_postal": "94028", "stop_lon": 2.4596625748657943, "coord": [48.77173059396369, 2.4596625748657943], "stop_id": 3619722, "stop_desc": "19 RUE FALKIRK - 94028", "stop_name": "GRIFFONS"}, "geometry": {"type": "Point", "coordinates": [2.4596625748657943, 48.77173059396369]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4afdb558aa4ac9687a04ee7bea31bc3ccf3b1070", "fields": {"departement": "92", "stop_lat": 48.920176425247114, "code_postal": "92004", "stop_lon": 2.288625789504137, "coord": [48.920176425247114, 2.288625789504137], "stop_id": 4472751, "stop_desc": "RUE DES BAS - 92004", "stop_name": "GILLET"}, "geometry": {"type": "Point", "coordinates": [2.288625789504137, 48.920176425247114]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6fb8e286e28b9c373db8df451a603360f6d75852", "fields": {"departement": "92", "stop_lat": 48.916664954153504, "code_postal": "92004", "stop_lon": 2.2950243206473284, "coord": [48.916664954153504, 2.2950243206473284], "stop_id": 4472753, "stop_desc": "PISTE GARE ROUTIERE - 92004", "stop_name": "GABRIEL PERI-METRO"}, "geometry": {"type": "Point", "coordinates": [2.2950243206473284, 48.916664954153504]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5640ac159a3242e5b51db3af59b4e7813c1b6f3e", "fields": {"departement": "92", "stop_lat": 48.913025400714396, "code_postal": "92004", "stop_lon": 2.2955454150474894, "coord": [48.913025400714396, 2.2955454150474894], "stop_id": 4472754, "stop_desc": "FACE 24 BOULEVARD VOLTAIRE - 92004", "stop_name": "PLACE VOLTAIRE"}, "geometry": {"type": "Point", "coordinates": [2.2955454150474894, 48.913025400714396]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ac6409fb08474a74193cced7faf4e18c544dab55", "fields": {"departement": "92", "stop_lat": 48.906403689038, "code_postal": "92024", "stop_lon": 2.3008540579028622, "coord": [48.906403689038, 2.3008540579028622], "stop_id": 4472756, "stop_desc": "136 BOULEVARD JEAN JAURES - 92024", "stop_name": "LEON BLUM"}, "geometry": {"type": "Point", "coordinates": [2.3008540579028622, 48.906403689038]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6acc2977759959363dad334cefcbab0457aa1db2", "fields": {"departement": "92", "stop_lat": 48.90329564012262, "code_postal": "92024", "stop_lon": 2.306077441180394, "coord": [48.90329564012262, 2.306077441180394], "stop_id": 4472759, "stop_desc": "88 RUE MARTRE - 92024", "stop_name": "MAIRIE DE CLICHY-METRO"}, "geometry": {"type": "Point", "coordinates": [2.306077441180394, 48.90329564012262]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cd2be4fa275f1825286cd64d5fe0bc8931264fdb", "fields": {"departement": "92", "stop_lat": 48.90114819778661, "code_postal": "92024", "stop_lon": 2.30794629123773, "coord": [48.90114819778661, 2.30794629123773], "stop_id": 4472779, "stop_desc": "62 RUE MARTRE - 92024", "stop_name": "BARBUSSE - MARTRE"}, "geometry": {"type": "Point", "coordinates": [2.30794629123773, 48.90114819778661]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7dde08c105214691223e3e67404abb9b3b020241", "fields": {"departement": "95", "stop_lat": 48.95659185515301, "code_postal": "95427", "stop_lon": 2.331932582935581, "coord": [48.95659185515301, 2.331932582935581], "stop_id": 4472790, "stop_desc": "11 ROUTE DE SAINT-LEU - 95427", "stop_name": "SABLONS"}, "geometry": {"type": "Point", "coordinates": [2.331932582935581, 48.95659185515301]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1f2ab72d0ec1cd47c94664d8a8805157ce2a243e", "fields": {"departement": "77", "stop_lat": 48.8744492608804, "code_postal": "77108", "stop_lon": 2.5828964158767787, "coord": [48.8744492608804, 2.5828964158767787], "stop_id": 4472793, "stop_desc": "PLACE GASNIER GUY - 77108", "stop_name": "CHELLES - GOURNAY RER"}, "geometry": {"type": "Point", "coordinates": [2.5828964158767787, 48.8744492608804]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5091f0fbb7b12692be2ca4c6dfa7a4078fd063b9", "fields": {"departement": "93", "stop_lat": 48.87478871518722, "code_postal": "93032", "stop_lon": 2.5513562940251218, "coord": [48.87478871518722, 2.5513562940251218], "stop_id": 4472801, "stop_desc": "FACE 43 AVENUE PAUL VAILLANT COUTURIER - 93032", "stop_name": "EMILE COSSONNEAU"}, "geometry": {"type": "Point", "coordinates": [2.5513562940251218, 48.87478871518722]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b1cf983ebedb8841b3cc21454cc338a85b66354a", "fields": {"departement": "93", "stop_lat": 48.87656249635237, "code_postal": "93032", "stop_lon": 2.549524191017157, "coord": [48.87656249635237, 2.549524191017157], "stop_id": 4472802, "stop_desc": "9 AVENUE PAUL VAILLANT COUTURIER - 93032", "stop_name": "LA MARE"}, "geometry": {"type": "Point", "coordinates": [2.549524191017157, 48.87656249635237]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2056efd6da61ef65c6adb6056361d3f5776695ad", "fields": {"departement": "93", "stop_lat": 48.881794404760505, "code_postal": "93032", "stop_lon": 2.538412546009786, "coord": [48.881794404760505, 2.538412546009786], "stop_id": 4472809, "stop_desc": "46 AVENUE DU PRESIDENT POMPIDOU - 93032", "stop_name": "FLORIAN"}, "geometry": {"type": "Point", "coordinates": [2.538412546009786, 48.881794404760505]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d71135efa6cabfc96a960a8ae45dfc2c7d4e71b5", "fields": {"departement": "93", "stop_lat": 48.8819846340026, "code_postal": "93077", "stop_lon": 2.5207801904987455, "coord": [48.8819846340026, 2.5207801904987455], "stop_id": 4472814, "stop_desc": "FACE 152 RUE GRANDE RUE - 93077", "stop_name": "BOULEVARD ANDRE"}, "geometry": {"type": "Point", "coordinates": [2.5207801904987455, 48.8819846340026]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e93d4cfde9f9d8b2451830bd00e925782dbd6fb3", "fields": {"departement": "93", "stop_lat": 48.882703747741374, "code_postal": "93077", "stop_lon": 2.514759604548513, "coord": [48.882703747741374, 2.514759604548513], "stop_id": 4472817, "stop_desc": "FACE 73 RUE GRANDE RUE - 93077", "stop_name": "RUE DE NEUILLY"}, "geometry": {"type": "Point", "coordinates": [2.514759604548513, 48.882703747741374]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8ca51d5286aaf07ca85a3469fcf6aff6a082e715", "fields": {"departement": "93", "stop_lat": 48.883824240877665, "code_postal": "93077", "stop_lon": 2.5106343733176093, "coord": [48.883824240877665, 2.5106343733176093], "stop_id": 4472819, "stop_desc": "RUE GRANDE RUE - 93077", "stop_name": "CHATEAU DE VILLEMOMBLE"}, "geometry": {"type": "Point", "coordinates": [2.5106343733176093, 48.883824240877665]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "129a91bd31d487657c894258efff6f23da8f89a6", "fields": {"departement": "93", "stop_lat": 48.88284223494826, "code_postal": "93064", "stop_lon": 2.4928341932578513, "coord": [48.88284223494826, 2.4928341932578513], "stop_id": 4472826, "stop_desc": "169 BOULEVARD D'ALSACE LORRAINE - 93064", "stop_name": "LES MARNAUDES"}, "geometry": {"type": "Point", "coordinates": [2.4928341932578513, 48.88284223494826]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "95422374ccfe1565ef9c43144a47209607fa0382", "fields": {"departement": "93", "stop_lat": 48.88666818491777, "code_postal": "93053", "stop_lon": 2.472907876521495, "coord": [48.88666818491777, 2.472907876521495], "stop_id": 4472834, "stop_desc": "7 AVENUE DE GAGNY - 93053", "stop_name": "ECHANGEUR DE ROSNY"}, "geometry": {"type": "Point", "coordinates": [2.472907876521495, 48.88666818491777]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "839059ab46133094a137b5c53c4b9dc7110d58b2", "fields": {"departement": "93", "stop_lat": 48.8881932533186, "code_postal": "93053", "stop_lon": 2.4588064524096587, "coord": [48.8881932533186, 2.4588064524096587], "stop_id": 4472839, "stop_desc": "97 RUE DE BREMENT - 93053", "stop_name": "SALENGRO - AUFFRET"}, "geometry": {"type": "Point", "coordinates": [2.4588064524096587, 48.8881932533186]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "78081631ef031d9c69e67d9c553a5a8a41ecb73f", "fields": {"departement": "93", "stop_lat": 48.88642559070357, "code_postal": "93053", "stop_lon": 2.4466189175575725, "coord": [48.88642559070357, 2.4466189175575725], "stop_id": 4472843, "stop_desc": "FACE 73 RUE ANATOLE FRANCE - 93053", "stop_name": "HOCHE"}, "geometry": {"type": "Point", "coordinates": [2.4466189175575725, 48.88642559070357]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "56e25211f4273521c7259e50601b2ac204b9ddb0", "fields": {"departement": "93", "stop_lat": 48.878870653419405, "code_postal": "93063", "stop_lon": 2.432241214103226, "coord": [48.878870653419405, 2.432241214103226], "stop_id": 4472849, "stop_desc": "FACE 58 RUE FLOREAL - 93063", "stop_name": "LES NOYERS"}, "geometry": {"type": "Point", "coordinates": [2.432241214103226, 48.878870653419405]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "47ab4702389804486a1ca0cfe3ddc1aeecadd879", "fields": {"departement": "93", "stop_lat": 48.87963324271645, "code_postal": "93045", "stop_lon": 2.4220911214059, "coord": [48.87963324271645, 2.4220911214059], "stop_id": 4472852, "stop_desc": "37-39 AVENUE DU MARECHAL JUIN - 93045", "stop_name": "JALENCLOUD"}, "geometry": {"type": "Point", "coordinates": [2.4220911214059, 48.87963324271645]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "298201dcc144a82c25fda00daaa693a8cac90d2b", "fields": {"departement": "75", "stop_lat": 48.87481729402142, "code_postal": "75119", "stop_lon": 2.388429758539716, "coord": [48.87481729402142, 2.388429758539716], "stop_id": 4472862, "stop_desc": "133 RUE DE BELLEVILLE - 75119", "stop_name": "JOURDAIN"}, "geometry": {"type": "Point", "coordinates": [2.388429758539716, 48.87481729402142]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e5d64a9cd03aa65e0c77f55a257ac06561502f6e", "fields": {"departement": "75", "stop_lat": 48.86897362596347, "code_postal": "75110", "stop_lon": 2.36778461159907, "coord": [48.86897362596347, 2.36778461159907], "stop_id": 4472866, "stop_desc": "31/33 RUE DU FAUBOURG DU TEMPLE - 75110", "stop_name": "JULES FERRY"}, "geometry": {"type": "Point", "coordinates": [2.36778461159907, 48.86897362596347]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8c9adeb91af41d3abd6d0843c728049accc8785a", "fields": {"departement": "75", "stop_lat": 48.868039861543714, "code_postal": "75110", "stop_lon": 2.363955968897187, "coord": [48.868039861543714, 2.363955968897187], "stop_id": 4472867, "stop_desc": "12 PLACE DE LA REPUBLIQUE - 75110", "stop_name": "REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.363955968897187, 48.868039861543714]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "62870d4cae841e893f183800456845fff69687ec", "fields": {"departement": "75", "stop_lat": 48.86531329081279, "code_postal": "75111", "stop_lon": 2.3762828281298214, "coord": [48.86531329081279, 2.3762828281298214], "stop_id": 4472873, "stop_desc": "80 RUE OBERKAMPF - 75111", "stop_name": "PARMENTIER - REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.3762828281298214, 48.86531329081279]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "350359a9f809d4730b560eb93aeff2bda2b97143", "fields": {"departement": "75", "stop_lat": 48.874054501568004, "code_postal": "75120", "stop_lon": 2.3857313172499337, "coord": [48.874054501568004, 2.3857313172499337], "stop_id": 4472878, "stop_desc": "88-90 RUE DE BELLEVILLE - 75120", "stop_name": "PYRENEES"}, "geometry": {"type": "Point", "coordinates": [2.3857313172499337, 48.874054501568004]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6c4973bff77680c518590f81a6e2d91dc69709ff", "fields": {"departement": "93", "stop_lat": 48.88258950570033, "code_postal": "93063", "stop_lon": 2.434564608323154, "coord": [48.88258950570033, 2.434564608323154], "stop_id": 4472884, "stop_desc": "51 AVENUE DE VERDUN - 93063", "stop_name": "PLACE DU 19 MARS 1962"}, "geometry": {"type": "Point", "coordinates": [2.434564608323154, 48.88258950570033]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "704293bf903cc37510a15b052e74336d26c3d5f0", "fields": {"departement": "91", "stop_lat": 48.70757856381556, "code_postal": "91689", "stop_lon": 2.3111654184174446, "coord": [48.70757856381556, 2.3111654184174446], "stop_id": 4472894, "stop_desc": "AVENUE MAZARIN - 91689", "stop_name": "CIMETIERE DE CHILLY-MAZARIN"}, "geometry": {"type": "Point", "coordinates": [2.3111654184174446, 48.70757856381556]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1e5d2ee1cda4752fe7040a5c23063f367fed25ee", "fields": {"departement": "91", "stop_lat": 48.71463130265708, "code_postal": "91161", "stop_lon": 2.2992768235553367, "coord": [48.71463130265708, 2.2992768235553367], "stop_id": 4472897, "stop_desc": "79 ROUTE DE MASSY - 91161", "stop_name": "ROUTE DE MASSY - LES CHAMPARTS"}, "geometry": {"type": "Point", "coordinates": [2.2992768235553367, 48.71463130265708]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f0ef5e84741e1dbd342d7655aafd6d6876628a3a", "fields": {"departement": "92", "stop_lat": 48.741525495145915, "code_postal": "92002", "stop_lon": 2.3027362046921716, "coord": [48.741525495145915, 2.3027362046921716], "stop_id": 4472925, "stop_desc": "157 AVENUE DE LA DIVISION LECLERC - 92002", "stop_name": "PETIT MASSY"}, "geometry": {"type": "Point", "coordinates": [2.3027362046921716, 48.741525495145915]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7432133982784cd03776849f5d32417528ea8b43", "fields": {"departement": "92", "stop_lat": 48.744392912887015, "code_postal": "92002", "stop_lon": 2.303318700823705, "coord": [48.744392912887015, 2.303318700823705], "stop_id": 4472927, "stop_desc": "115 AVENUE DE LA DIVISION LECLERC - 92002", "stop_name": "BLANCHE DE CASTILLE"}, "geometry": {"type": "Point", "coordinates": [2.303318700823705, 48.744392912887015]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6d2bb8fab8046a80b1ca61614c897a7fcca027f5", "fields": {"departement": "92", "stop_lat": 48.74507597561904, "code_postal": "92002", "stop_lon": 2.3031687552534903, "coord": [48.74507597561904, 2.3031687552534903], "stop_id": 4472928, "stop_desc": "134 AVENUE DE LA DIVISION LECLERC - 92002", "stop_name": "BLANCHE DE CASTILLE"}, "geometry": {"type": "Point", "coordinates": [2.3031687552534903, 48.74507597561904]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "18d18e0f326ed251be45be1cacf37a18140bd77d", "fields": {"departement": "92", "stop_lat": 48.779063025919605, "code_postal": "92014", "stop_lon": 2.316107036451739, "coord": [48.779063025919605, 2.316107036451739], "stop_id": 4472945, "stop_desc": "6 BOULEVARD CARNOT - 92014", "stop_name": "CONDORCET - MAIRIE-RER"}, "geometry": {"type": "Point", "coordinates": [2.316107036451739, 48.779063025919605]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b2af27fdde535b28bf6d46814775111d3747c586", "fields": {"departement": "94", "stop_lat": 48.775559027184684, "code_postal": "94038", "stop_lon": 2.325736450284986, "coord": [48.775559027184684, 2.325736450284986], "stop_id": 4472948, "stop_desc": "65 AVENUE LARROUMES - 94038", "stop_name": "BARBUSSE - LARROUMES"}, "geometry": {"type": "Point", "coordinates": [2.325736450284986, 48.775559027184684]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "78180136758c3495bd655719cbe1ae5bc529bda3", "fields": {"departement": "94", "stop_lat": 48.77562197572188, "code_postal": "94038", "stop_lon": 2.3260764080515264, "coord": [48.77562197572188, 2.3260764080515264], "stop_id": 4472949, "stop_desc": "74 AVENUE LARROUMES - 94038", "stop_name": "BARBUSSE - LARROUMES"}, "geometry": {"type": "Point", "coordinates": [2.3260764080515264, 48.77562197572188]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a9a54f1e83eaf51258abd7831ce3f866a053a0b9", "fields": {"departement": "94", "stop_lat": 48.77827394172297, "code_postal": "94038", "stop_lon": 2.3350379495207525, "coord": [48.77827394172297, 2.3350379495207525], "stop_id": 4472952, "stop_desc": "FACE 13 RUE JEAN JAURES - 94038", "stop_name": "SOUS-PREFECTURE - EGLISE DE L'HAY-LES-ROSES"}, "geometry": {"type": "Point", "coordinates": [2.3350379495207525, 48.77827394172297]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "677f2bbd2c47dfd421f64f73307e566c9edb4a0a", "fields": {"departement": "94", "stop_lat": 48.77838179451567, "code_postal": "94038", "stop_lon": 2.3348747498291758, "coord": [48.77838179451567, 2.3348747498291758], "stop_id": 4472953, "stop_desc": "7-9 RUE JEAN JAURES - 94038", "stop_name": "SOUS-PREFECTURE - EGLISE DE L'HAY-LES-ROSES"}, "geometry": {"type": "Point", "coordinates": [2.3348747498291758, 48.77838179451567]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4418959c248ba5b411a24e607685e28d39705b17", "fields": {"departement": "94", "stop_lat": 48.78564402029445, "code_postal": "94016", "stop_lon": 2.3329702084198036, "coord": [48.78564402029445, 2.3329702084198036], "stop_id": 4472957, "stop_desc": "FACE 9 AVENUE DE FRANCE - 94016", "stop_name": "CARREFOUR DES POULETS"}, "geometry": {"type": "Point", "coordinates": [2.3329702084198036, 48.78564402029445]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "233a7ea8e3e8ccf1f6f29a73f9c57bd970909d0e", "fields": {"departement": "94", "stop_lat": 48.790164885806014, "code_postal": "94016", "stop_lon": 2.3315007465699185, "coord": [48.790164885806014, 2.3315007465699185], "stop_id": 4472958, "stop_desc": "FACE 1 AV DE LA DIVISION LECLERC - 94016", "stop_name": "DIVISION LECLERC - CAMILLE DESMOULINS"}, "geometry": {"type": "Point", "coordinates": [2.3315007465699185, 48.790164885806014]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "72d4df99562f394e0c9cfe804fa87b6081470ab1", "fields": {"departement": "94", "stop_lat": 48.80187620108928, "code_postal": "94003", "stop_lon": 2.3351866061310647, "coord": [48.80187620108928, 2.3351866061310647], "stop_id": 4472966, "stop_desc": "3 RUE MAXIMILIEN ROBESPIERRE - 94003", "stop_name": "ROBESPIERRE"}, "geometry": {"type": "Point", "coordinates": [2.3351866061310647, 48.80187620108928]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "212cc5eeec29eda6f31e739d1de12021455eb5a2", "fields": {"departement": "94", "stop_lat": 48.81062089478181, "code_postal": "94003", "stop_lon": 2.3268989636631354, "coord": [48.81062089478181, 2.3268989636631354], "stop_id": 4472973, "stop_desc": "3 AVENUE ARISTIDE BRIAND - 94003", "stop_name": "VACHE NOIRE"}, "geometry": {"type": "Point", "coordinates": [2.3268989636631354, 48.81062089478181]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2b67ac839cde3693fc090a1cb42ebdd22f7b2279", "fields": {"departement": "75", "stop_lat": 48.830474895128575, "code_postal": "75114", "stop_lon": 2.3292909331491076, "coord": [48.830474895128575, 2.3292909331491076], "stop_id": 4472982, "stop_desc": "29-31 AVENUE DU GENERAL LECLERC - 75114", "stop_name": "MOUTON - DUVERNET"}, "geometry": {"type": "Point", "coordinates": [2.3292909331491076, 48.830474895128575]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a14f01d1cd68c0954a0d8d8c91a20d19bb633ce5", "fields": {"departement": "75", "stop_lat": 48.8316073794591, "code_postal": "75114", "stop_lon": 2.3299850499497685, "coord": [48.8316073794591, 2.3299850499497685], "stop_id": 4472983, "stop_desc": "32 AVENUE DU GENERAL LECLERC - 75114", "stop_name": "MOUTON - DUVERNET"}, "geometry": {"type": "Point", "coordinates": [2.3299850499497685, 48.8316073794591]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4f8e238984764da558b6abb8b3f93f90cb34995c", "fields": {"departement": "75", "stop_lat": 48.83479812557195, "code_postal": "75114", "stop_lon": 2.3330342236102313, "coord": [48.83479812557195, 2.3330342236102313], "stop_id": 4472985, "stop_desc": "95 AVENUE DENFERT-ROCHEREAU - 75114", "stop_name": "DENFERT-ROCHEREAU - ARAGO"}, "geometry": {"type": "Point", "coordinates": [2.3330342236102313, 48.83479812557195]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b2153c025d486d75027b6e0b10051c9daec07df5", "fields": {"departement": "75", "stop_lat": 48.84195202597997, "code_postal": "75114", "stop_lon": 2.3291393929668964, "coord": [48.84195202597997, 2.3291393929668964], "stop_id": 4472996, "stop_desc": "106 BOULEVARD DU MONTPARNASSE - 75114", "stop_name": "VAVIN"}, "geometry": {"type": "Point", "coordinates": [2.3291393929668964, 48.84195202597997]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8045bbd020b5c7107a38cd96ae798738127813d9", "fields": {"departement": "75", "stop_lat": 48.84075687740633, "code_postal": "75114", "stop_lon": 2.33284311590315, "coord": [48.84075687740633, 2.33284311590315], "stop_id": 4472997, "stop_desc": "150 BOULEVARD DU MONTPARNASSE - 75114", "stop_name": "CAMPAGNE PREMIERE"}, "geometry": {"type": "Point", "coordinates": [2.33284311590315, 48.84075687740633]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "23183ebe8f2cffe368a4b1da44de908868c22651", "fields": {"departement": "94", "stop_lat": 48.808562977830384, "code_postal": "94003", "stop_lon": 2.3309408008390324, "coord": [48.808562977830384, 2.3309408008390324], "stop_id": 4473002, "stop_desc": "FACE 50 AVENUE LAPLACE - 94003", "stop_name": "LENINE"}, "geometry": {"type": "Point", "coordinates": [2.3309408008390324, 48.808562977830384]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3e66eadda121b96ca9e246b88c5b9b3badfcbbd1", "fields": {"departement": "92", "stop_lat": 48.82837374190805, "code_postal": "92040", "stop_lon": 2.2749766076077833, "coord": [48.82837374190805, 2.2749766076077833], "stop_id": 4473012, "stop_desc": "71 RUE GUYNEMER - 92040", "stop_name": "MAISON DE RETRAITE"}, "geometry": {"type": "Point", "coordinates": [2.2749766076077833, 48.82837374190805]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "17d8861eee542c0bc1d34083e4c307af99b47b08", "fields": {"departement": "75", "stop_lat": 48.833116819786746, "code_postal": "75115", "stop_lon": 2.289224709950392, "coord": [48.833116819786746, 2.289224709950392], "stop_id": 4473015, "stop_desc": "403 BIS RUE DE VAUGIRARD - 75115", "stop_name": "PORTE DE VERSAILLES"}, "geometry": {"type": "Point", "coordinates": [2.289224709950392, 48.833116819786746]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e39d10870c400dfa229b50e40a587694951aecb2", "fields": {"departement": "75", "stop_lat": 48.83558092732886, "code_postal": "75115", "stop_lon": 2.2931162004514722, "coord": [48.83558092732886, 2.2931162004514722], "stop_id": 4473017, "stop_desc": "383 RUE DE VAUGIRARD - 75115", "stop_name": "HOPITAL DE VAUGIRARD"}, "geometry": {"type": "Point", "coordinates": [2.2931162004514722, 48.83558092732886]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2ab440acd0d9bc290f5a601e77f7e13e70139a0b", "fields": {"departement": "75", "stop_lat": 48.84068693742022, "code_postal": "75115", "stop_lon": 2.2961073600849584, "coord": [48.84068693742022, 2.2961073600849584], "stop_id": 4473020, "stop_desc": "188 RUE LECOURBE - 75115", "stop_name": "ABBE GROULT"}, "geometry": {"type": "Point", "coordinates": [2.2961073600849584, 48.84068693742022]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c51ed2d01de1a3ba24b05971fbb2e1e4b911ca79", "fields": {"departement": "75", "stop_lat": 48.84092542778849, "code_postal": "75115", "stop_lon": 2.3138760334790764, "coord": [48.84092542778849, 2.3138760334790764], "stop_id": 4473024, "stop_desc": "52 BOULEVARD PASTEUR - 75115", "stop_name": "PASTEUR - FALGUIERE"}, "geometry": {"type": "Point", "coordinates": [2.3138760334790764, 48.84092542778849]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b9c866a9f75225823c01e88227f7315a3ca665c0", "fields": {"departement": "75", "stop_lat": 48.84396164200655, "code_postal": "75115", "stop_lon": 2.3069028723393976, "coord": [48.84396164200655, 2.3069028723393976], "stop_id": 4473032, "stop_desc": "54 RUE LECOURBE - 75115", "stop_name": "VOLONTAIRES - LECOURBE"}, "geometry": {"type": "Point", "coordinates": [2.3069028723393976, 48.84396164200655]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "90cf3c66e0ebdd4ba40eba13be89fcdbe6792f73", "fields": {"departement": "92", "stop_lat": 48.89847241282332, "code_postal": "92050", "stop_lon": 2.213593241126523, "coord": [48.89847241282332, 2.213593241126523], "stop_id": 4473045, "stop_desc": "BOULEVARD DES PROVINCES FRANCAISES - 92050", "stop_name": "SOUFFLOT"}, "geometry": {"type": "Point", "coordinates": [2.213593241126523, 48.89847241282332]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "74cbbbac62c0efe9e42f38b8d96616b83f31262d", "fields": {"departement": "92", "stop_lat": 48.89174434180097, "code_postal": "92050", "stop_lon": 2.208239328971497, "coord": [48.89174434180097, 2.208239328971497], "stop_id": 4473057, "stop_desc": "AVENUE FREDERIC ET IRENE JOLIOT CURIE - 92050", "stop_name": "MAIRIE DE NANTERRE"}, "geometry": {"type": "Point", "coordinates": [2.208239328971497, 48.89174434180097]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "50c808138b0e4838b692e351e0ba938b357d9ee6", "fields": {"departement": "92", "stop_lat": 48.88545796036984, "code_postal": "92050", "stop_lon": 2.19648064018029, "coord": [48.88545796036984, 2.19648064018029], "stop_id": 4473063, "stop_desc": "FACE 24 AVENUE DU MARECHAL JOFFRE - 92050", "stop_name": "SAINTE-GENEVIEVE"}, "geometry": {"type": "Point", "coordinates": [2.19648064018029, 48.88545796036984]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ec9fa4ed3515a4132f8aaca1abc00e667527c7a8", "fields": {"departement": "92", "stop_lat": 48.871637489328236, "code_postal": "92063", "stop_lon": 2.1835344210818635, "coord": [48.871637489328236, 2.1835344210818635], "stop_id": 4473074, "stop_desc": "17 BOULEVARD RICHELIEU - 92063", "stop_name": "ZURICH"}, "geometry": {"type": "Point", "coordinates": [2.1835344210818635, 48.871637489328236]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5f4b146ee51053ad7736861505fad319ad00c1d6", "fields": {"departement": "92", "stop_lat": 48.86922348937091, "code_postal": "92063", "stop_lon": 2.1863480066905185, "coord": [48.86922348937091, 2.1863480066905185], "stop_id": 4473076, "stop_desc": "77 BOULEVARD RICHELIEU - 92063", "stop_name": "PLACE BESCHE"}, "geometry": {"type": "Point", "coordinates": [2.1863480066905185, 48.86922348937091]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "839c261d6caf1a504d07168ba4f203dd1404366c", "fields": {"departement": "92", "stop_lat": 48.86817044263968, "code_postal": "92063", "stop_lon": 2.192358886539712, "coord": [48.86817044263968, 2.192358886539712], "stop_id": 4473078, "stop_desc": "51 AV DU 18 JUIN 1940 - 92063", "stop_name": "DUNANT"}, "geometry": {"type": "Point", "coordinates": [2.192358886539712, 48.86817044263968]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eb8a6e530a3b63e12b206209d8509c5fc41144f3", "fields": {"departement": "92", "stop_lat": 48.867126364695906, "code_postal": "92063", "stop_lon": 2.198614709336574, "coord": [48.867126364695906, 2.198614709336574], "stop_id": 4473079, "stop_desc": "122 AVENUE DU 18 JUIN 1940 - 92063", "stop_name": "LIEUTENANT-COLONEL DE MONTBRISON"}, "geometry": {"type": "Point", "coordinates": [2.198614709336574, 48.867126364695906]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6c15a45fddd53fc7f3c99a88bb48ee7d598fc23e", "fields": {"departement": "92", "stop_lat": 48.86489624581866, "code_postal": "92073", "stop_lon": 2.205431821442203, "coord": [48.86489624581866, 2.205431821442203], "stop_id": 4473081, "stop_desc": "AVENUE JEAN JAURES - 92073", "stop_name": "PLACE DE LA PAIX"}, "geometry": {"type": "Point", "coordinates": [2.205431821442203, 48.86489624581866]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "828bd9afeea537a0332379b8cd966b9275453eff", "fields": {"departement": "92", "stop_lat": 48.8635343842633, "code_postal": "92073", "stop_lon": 2.2093039143430833, "coord": [48.8635343842633, 2.2093039143430833], "stop_id": 4473083, "stop_desc": "AVENUE JEAN JAURES - 92073", "stop_name": "PLACE JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.2093039143430833, 48.8635343842633]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "158254c7304dc50b917b878a099aa7362ad331c2", "fields": {"departement": "92", "stop_lat": 48.86184828083935, "code_postal": "92073", "stop_lon": 2.2126317195091785, "coord": [48.86184828083935, 2.2126317195091785], "stop_id": 4473085, "stop_desc": "30 CARREFOUR DE LA CROIX DU ROY - 92073", "stop_name": "CROIX DU ROY"}, "geometry": {"type": "Point", "coordinates": [2.2126317195091785, 48.86184828083935]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1f9bd75e6d98507e2de380cb2f9f76ae1634d0d2", "fields": {"departement": "92", "stop_lat": 48.862806940257784, "code_postal": "92073", "stop_lon": 2.2185003886282835, "coord": [48.862806940257784, 2.2185003886282835], "stop_id": 4473088, "stop_desc": "BOULEVARD HENRI SELLIER - 92073", "stop_name": "GARIBALDI"}, "geometry": {"type": "Point", "coordinates": [2.2185003886282835, 48.862806940257784]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "909b33f9be2fccd8f52fae06c01bb9185f4db6ae", "fields": {"departement": "92", "stop_lat": 48.862932246409954, "code_postal": "92073", "stop_lon": 2.2179824740747285, "coord": [48.862932246409954, 2.2179824740747285], "stop_id": 4473089, "stop_desc": "124 BOULEVARD HENRI SELLIER - 92073", "stop_name": "GARIBALDI"}, "geometry": {"type": "Point", "coordinates": [2.2179824740747285, 48.862932246409954]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8c5b2f4790bee280d006f8ff2bb5e822ef169201", "fields": {"departement": "75", "stop_lat": 48.880111718441405, "code_postal": "75117", "stop_lon": 2.2882545840252586, "coord": [48.880111718441405, 2.2882545840252586], "stop_id": 4473100, "stop_desc": "AV DES TERNES - 75117", "stop_name": "PEREIRE - PORTE MAILLOT"}, "geometry": {"type": "Point", "coordinates": [2.2882545840252586, 48.880111718441405]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6823ae516afbbf0ae10bfd6847632c3298684175", "fields": {"departement": "75", "stop_lat": 48.87958240532934, "code_postal": "75117", "stop_lon": 2.290585154457603, "coord": [48.87958240532934, 2.290585154457603], "stop_id": 4473102, "stop_desc": "68 AV DES TERNES - 75117", "stop_name": "EGLISE SAINT-FERDINAND"}, "geometry": {"type": "Point", "coordinates": [2.290585154457603, 48.87958240532934]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0fcecbe199a1769229b298ff972b9cbe0f23ebbf", "fields": {"departement": "75", "stop_lat": 48.87863131986088, "code_postal": "75117", "stop_lon": 2.2947691591166657, "coord": [48.87863131986088, 2.2947691591166657], "stop_id": 4473104, "stop_desc": "24 AV DES TERNES - 75117", "stop_name": "TERNES - MAC MAHON"}, "geometry": {"type": "Point", "coordinates": [2.2947691591166657, 48.87863131986088]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "350b678a7f61edcacfc36f1118f607f26f2309ae", "fields": {"departement": "75", "stop_lat": 48.87677297339352, "code_postal": "75108", "stop_lon": 2.300874862043233, "coord": [48.87677297339352, 2.300874862043233], "stop_id": 4473106, "stop_desc": "201-203 RUE DU FAUBOURG SAINT HONORE - 75108", "stop_name": "HOCHE - SAINT-HONORE"}, "geometry": {"type": "Point", "coordinates": [2.300874862043233, 48.87677297339352]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c92e72621e6d9b2abdcecbc4e236e3f792484db3", "fields": {"departement": "75", "stop_lat": 48.87508653842288, "code_postal": "75108", "stop_lon": 2.313451881624046, "coord": [48.87508653842288, 2.313451881624046], "stop_id": 4473112, "stop_desc": "127 BOULEVARD HAUSSMANN - 75108", "stop_name": "HAUSSMANN - MIROMESNIL"}, "geometry": {"type": "Point", "coordinates": [2.313451881624046, 48.87508653842288]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4f9e0b086f161a5b78eb3c9ca4391382bcec8dc6", "fields": {"departement": "75", "stop_lat": 48.87529316389243, "code_postal": "75108", "stop_lon": 2.3130430364059853, "coord": [48.87529316389243, 2.3130430364059853], "stop_id": 4473113, "stop_desc": "142 BOULEVARD HAUSSMANN - 75108", "stop_name": "HAUSSMANN - MIROMESNIL"}, "geometry": {"type": "Point", "coordinates": [2.3130430364059853, 48.87529316389243]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0c08ba51be81511022e04711897eeebdfe7093db", "fields": {"departement": "75", "stop_lat": 48.87533099926682, "code_postal": "75108", "stop_lon": 2.3255644136186038, "coord": [48.87533099926682, 2.3255644136186038], "stop_id": 4473117, "stop_desc": "117 RUE SAINT LAZARE - 75108", "stop_name": "GARE SAINT-LAZARE"}, "geometry": {"type": "Point", "coordinates": [2.3255644136186038, 48.87533099926682]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d8486cbb2d98797281bde3ee9e028681a62fcb11", "fields": {"departement": "75", "stop_lat": 48.87395603688644, "code_postal": "75108", "stop_lon": 2.3265729484538205, "coord": [48.87395603688644, 2.3265729484538205], "stop_id": 4473118, "stop_desc": "74-76 BOULEVARD HAUSSMANN - 75108", "stop_name": "ROME - HAUSSMANN"}, "geometry": {"type": "Point", "coordinates": [2.3265729484538205, 48.87395603688644]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a7a26297bed7edf877fe0431921cd6223cc92660", "fields": {"departement": "75", "stop_lat": 48.84083779071601, "code_postal": "75106", "stop_lon": 2.3335919869630257, "coord": [48.84083779071601, 2.3335919869630257], "stop_id": 4473145, "stop_desc": "147 BOULEVARD DU MONTPARNASSE - 75106", "stop_name": "CAMPAGNE PREMIERE"}, "geometry": {"type": "Point", "coordinates": [2.3335919869630257, 48.84083779071601]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5fb6ee89c685db9b3a943d276845fbef1f2f25ad", "fields": {"departement": "75", "stop_lat": 48.84202305182629, "code_postal": "75115", "stop_lon": 2.320697292153351, "coord": [48.84202305182629, 2.320697292153351], "stop_id": 4473149, "stop_desc": "PLACE RAOUL DAUTRY - 75115", "stop_name": "GARE MONTPARNASSE"}, "geometry": {"type": "Point", "coordinates": [2.320697292153351, 48.84202305182629]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a530583e37f8d464993dae2fba2b49226fe47ce8", "fields": {"departement": "75", "stop_lat": 48.84349739847797, "code_postal": "75114", "stop_lon": 2.3238014203032726, "coord": [48.84349739847797, 2.3238014203032726], "stop_id": 4473150, "stop_desc": "PLACE DU 18 JUIN 1940 - 75114", "stop_name": "PLACE DU 18 JUIN 1940"}, "geometry": {"type": "Point", "coordinates": [2.3238014203032726, 48.84349739847797]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3ee295edc39ac365739eb78745c1a17277ec7c2b", "fields": {"departement": "78", "stop_lat": 48.89662440936725, "code_postal": "78650", "stop_lon": 2.121304506246528, "coord": [48.89662440936725, 2.121304506246528], "stop_id": 4473159, "stop_desc": "BOULEVARD CARNOT - 78650", "stop_name": "LE VESINET - LE PECQ RER"}, "geometry": {"type": "Point", "coordinates": [2.121304506246528, 48.89662440936725]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b04ac202805eb49bf4e7a3d3aea84f3ec3c03008", "fields": {"departement": "78", "stop_lat": 48.89422741702106, "code_postal": "78650", "stop_lon": 2.1329681764334767, "coord": [48.89422741702106, 2.1329681764334767], "stop_id": 4473160, "stop_desc": "71 BOULEVARD CARNOT - 78650", "stop_name": "HOTEL DE VILLE-LE VESINET CENTRE-RER"}, "geometry": {"type": "Point", "coordinates": [2.1329681764334767, 48.89422741702106]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b3f74046b1b6dc21a52bc1a6dbd0340b93aa304d", "fields": {"departement": "75", "stop_lat": 48.87974094344161, "code_postal": "75117", "stop_lon": 2.28295434920751, "coord": [48.87974094344161, 2.28295434920751], "stop_id": 4473172, "stop_desc": "11 BOULEVARD PERSHING - 75117", "stop_name": "PORTE MAILLOT - PERSHING"}, "geometry": {"type": "Point", "coordinates": [2.28295434920751, 48.87974094344161]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "be2c93739cdccd71555db542193449e6979951f3", "fields": {"departement": "75", "stop_lat": 48.877545158770765, "code_postal": "75108", "stop_lon": 2.298585218601294, "coord": [48.877545158770765, 2.298585218601294], "stop_id": 4473179, "stop_desc": "237 RUE DU FAUBOURG SAINT-HONORE - 75108", "stop_name": "TERNES"}, "geometry": {"type": "Point", "coordinates": [2.298585218601294, 48.877545158770765]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5d470bac63a09ff4b466a87f860f0d77365b5eca", "fields": {"departement": "75", "stop_lat": 48.87677297339352, "code_postal": "75108", "stop_lon": 2.300874862043233, "coord": [48.87677297339352, 2.300874862043233], "stop_id": 4473180, "stop_desc": "201-203 RUE DU FAUBOURG SAINT HONORE - 75108", "stop_name": "HOCHE - SAINT-HONORE"}, "geometry": {"type": "Point", "coordinates": [2.300874862043233, 48.87677297339352]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "764cc7e2e2a9395ad0b0b6c4bb68f6bec32d4fff", "fields": {"departement": "75", "stop_lat": 48.87493294387232, "code_postal": "75108", "stop_lon": 2.3096914749426154, "coord": [48.87493294387232, 2.3096914749426154], "stop_id": 4473184, "stop_desc": "153 BOULEVARD HAUSSMANN - 75108", "stop_name": "HAUSSMANN - COURCELLES"}, "geometry": {"type": "Point", "coordinates": [2.3096914749426154, 48.87493294387232]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3a05da33d37f841947b849e708ed08c28edbc127", "fields": {"departement": "75", "stop_lat": 48.875121390460386, "code_postal": "75108", "stop_lon": 2.30847875269421, "coord": [48.875121390460386, 2.30847875269421], "stop_id": 4473185, "stop_desc": "174 BOULEVARD HAUSSMANN - 75108", "stop_name": "HAUSSMANN - COURCELLES"}, "geometry": {"type": "Point", "coordinates": [2.30847875269421, 48.875121390460386]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8863f23a5253cbb9b850e9af7eaee39d5c055d56", "fields": {"departement": "75", "stop_lat": 48.874863096583965, "code_postal": "75108", "stop_lon": 2.3207958046274593, "coord": [48.874863096583965, 2.3207958046274593], "stop_id": 4473188, "stop_desc": "FACE 24 RUE DE LA PEPINIERE - 75108", "stop_name": "SAINT-AUGUSTIN"}, "geometry": {"type": "Point", "coordinates": [2.3207958046274593, 48.874863096583965]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bb67d401a782ccbe56d262a9aaa78a2b54942a4d", "fields": {"departement": "75", "stop_lat": 48.87807493981841, "code_postal": "75117", "stop_lon": 2.2971677460588693, "coord": [48.87807493981841, 2.2971677460588693], "stop_id": 4473193, "stop_desc": "2 AVENUE DES TERNES - 75117", "stop_name": "TERNES"}, "geometry": {"type": "Point", "coordinates": [2.2971677460588693, 48.87807493981841]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "38775303676d1a46294a265b88bd08309b4b1c5b", "fields": {"departement": "92", "stop_lat": 48.81942176095425, "code_postal": "92040", "stop_lon": 2.274483765828633, "coord": [48.81942176095425, 2.274483765828633], "stop_id": 4473295, "stop_desc": "25 RUE GABRIEL PERI - 92040", "stop_name": "RUE DU FORT"}, "geometry": {"type": "Point", "coordinates": [2.274483765828633, 48.81942176095425]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8731558f0e60cb0235328345974dabe16fcdd156", "fields": {"departement": "92", "stop_lat": 48.814539964205004, "code_postal": "92040", "stop_lon": 2.271767855315436, "coord": [48.814539964205004, 2.271767855315436], "stop_id": 4473298, "stop_desc": "56 RUE BARBES - 92040", "stop_name": "GARE DE CLAMART"}, "geometry": {"type": "Point", "coordinates": [2.271767855315436, 48.814539964205004]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "93ed4168a446de0b3c8c0fcf3d9fad09a2cbb4e6", "fields": {"departement": "92", "stop_lat": 48.815057462556105, "code_postal": "92040", "stop_lon": 2.2652075656215733, "coord": [48.815057462556105, 2.2652075656215733], "stop_id": 4473299, "stop_desc": "3 RUE FERDINAND BUISSON - 92040", "stop_name": "E. DUPLOYE"}, "geometry": {"type": "Point", "coordinates": [2.2652075656215733, 48.815057462556105]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e224d247c1fd7fbc5943ed894f71bc365a0d83f6", "fields": {"departement": "92", "stop_lat": 48.81495832481246, "code_postal": "92040", "stop_lon": 2.264758600292619, "coord": [48.81495832481246, 2.264758600292619], "stop_id": 4473300, "stop_desc": "62 BIS RUE EMILE DUPLOYE - 92040", "stop_name": "E. DUPLOYE"}, "geometry": {"type": "Point", "coordinates": [2.264758600292619, 48.81495832481246]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3af4ca4147da2e3cf8d61068ae2359cda0cf8c03", "fields": {"departement": "92", "stop_lat": 48.81926294003921, "code_postal": "92040", "stop_lon": 2.2639359694747725, "coord": [48.81926294003921, 2.2639359694747725], "stop_id": 4473303, "stop_desc": "4-6 RUE DE L'EGALITE - 92040", "stop_name": "DEFENSE - EGALITE"}, "geometry": {"type": "Point", "coordinates": [2.2639359694747725, 48.81926294003921]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0b4123ab5d3417a3b9a42c2351f992f8768ed147", "fields": {"departement": "92", "stop_lat": 48.8147381437127, "code_postal": "92023", "stop_lon": 2.257750209717775, "coord": [48.8147381437127, 2.257750209717775], "stop_id": 4473308, "stop_desc": "138 AVENUE HENRI BARBUSSE - 92023", "stop_name": "HOPITAL PERCY"}, "geometry": {"type": "Point", "coordinates": [2.257750209717775, 48.8147381437127]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b2f965fb0bf2b2b34791c8e5db7a7fa10d575194", "fields": {"departement": "92", "stop_lat": 48.80782092548795, "code_postal": "92048", "stop_lon": 2.249732489524222, "coord": [48.80782092548795, 2.249732489524222], "stop_id": 4473312, "stop_desc": "90 AVENUE ALDOLPHE SCHNEIDER - 92048", "stop_name": "RUE DES PEUPLIERS"}, "geometry": {"type": "Point", "coordinates": [2.249732489524222, 48.80782092548795]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ace426d95deb7a6afab388a4f7ec407379a7db3e", "fields": {"departement": "92", "stop_lat": 48.81009224978225, "code_postal": "92048", "stop_lon": 2.2462858598334625, "coord": [48.81009224978225, 2.2462858598334625], "stop_id": 4473315, "stop_desc": "2 RUE HENRI BARBUSSE - 92048", "stop_name": "PAUL BERT"}, "geometry": {"type": "Point", "coordinates": [2.2462858598334625, 48.81009224978225]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8a63615cfc7d46fd648bef52b9aa34ac62c3733e", "fields": {"departement": "92", "stop_lat": 48.80801233889868, "code_postal": "92048", "stop_lon": 2.241526927414433, "coord": [48.80801233889868, 2.241526927414433], "stop_id": 4473317, "stop_desc": "21 RUE BANES - 92048", "stop_name": "VAL FLEURY RER"}, "geometry": {"type": "Point", "coordinates": [2.241526927414433, 48.80801233889868]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "54765c2457e407581f51f56b992042d9aa01e586", "fields": {"departement": "92", "stop_lat": 48.8144420432121, "code_postal": "92048", "stop_lon": 2.2348738541742104, "coord": [48.8144420432121, 2.2348738541742104], "stop_id": 4473325, "stop_desc": "3 BOULEVARD DES NATIONS-UNIES - 92048", "stop_name": "STALINGRAD"}, "geometry": {"type": "Point", "coordinates": [2.2348738541742104, 48.8144420432121]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bbc33a3000e39e5840b778360e358eeac834af77", "fields": {"departement": "92", "stop_lat": 48.81640815008475, "code_postal": "92048", "stop_lon": 2.2323385970316534, "coord": [48.81640815008475, 2.2323385970316534], "stop_id": 4473327, "stop_desc": "17 BIS BOULEVARD VERD DE SAINT JULIEN - 92048", "stop_name": "JEANNE D'ARC"}, "geometry": {"type": "Point", "coordinates": [2.2323385970316534, 48.81640815008475]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d1d170730736f355c8a79288e865a592c166ec42", "fields": {"departement": "92", "stop_lat": 48.821319799672125, "code_postal": "92048", "stop_lon": 2.2272109871942822, "coord": [48.821319799672125, 2.2272109871942822], "stop_id": 4473332, "stop_desc": "12 RUE MARCEL ALLEGOT - 92048", "stop_name": "11 NOVEMBRE"}, "geometry": {"type": "Point", "coordinates": [2.2272109871942822, 48.821319799672125]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2beb69b686c4cfa506730ffad9e41cbb674d4674", "fields": {"departement": "92", "stop_lat": 48.82719400030173, "code_postal": "92072", "stop_lon": 2.2232373238068854, "coord": [48.82719400030173, 2.2232373238068854], "stop_id": 4473337, "stop_desc": "1 GRANDE RUE - 92072", "stop_name": "MUSEE DE SEVRES"}, "geometry": {"type": "Point", "coordinates": [2.2232373238068854, 48.82719400030173]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c54d85a3fcf8952d291e8262db6669472ce6db12", "fields": {"departement": "92", "stop_lat": 48.809683828737846, "code_postal": "92023", "stop_lon": 2.253104083076981, "coord": [48.809683828737846, 2.253104083076981], "stop_id": 4473343, "stop_desc": "163 RUE DE FLEURY - 92023", "stop_name": "RIVOLI"}, "geometry": {"type": "Point", "coordinates": [2.253104083076981, 48.809683828737846]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6fa38bae360d98b2713e77c3010d88b7fefe65c3", "fields": {"departement": "92", "stop_lat": 48.81454049932141, "code_postal": "92075", "stop_lon": 2.272747707605776, "coord": [48.81454049932141, 2.272747707605776], "stop_id": 4473344, "stop_desc": "199 AVENUE DU GENERAL DE GAULLE - 92075", "stop_name": "GARE DE CLAMART"}, "geometry": {"type": "Point", "coordinates": [2.272747707605776, 48.81454049932141]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d34d6e64801e45573f58e45387695c2ad7ccbf64", "fields": {"departement": "92", "stop_lat": 48.82837374190805, "code_postal": "92040", "stop_lon": 2.2749766076077833, "coord": [48.82837374190805, 2.2749766076077833], "stop_id": 4473345, "stop_desc": "71 RUE GUYNEMER - 92040", "stop_name": "MAISON DE RETRAITE"}, "geometry": {"type": "Point", "coordinates": [2.2749766076077833, 48.82837374190805]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ea4650359413bed133f605a966e4e63c29d647d3", "fields": {"departement": "94", "stop_lat": 48.856770986269645, "code_postal": "94033", "stop_lon": 2.4775013942069823, "coord": [48.856770986269645, 2.4775013942069823], "stop_id": 3690475, "stop_desc": "12 RUE JEAN MACE - 94033", "stop_name": "JEAN MACE - MARTIN LUTHER KING"}, "geometry": {"type": "Point", "coordinates": [2.4775013942069823, 48.856770986269645]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9375732cf40df4c0a977619e3df79ce27d7bab0f", "fields": {"departement": "94", "stop_lat": 48.85338820076925, "code_postal": "94033", "stop_lon": 2.487733946275537, "coord": [48.85338820076925, 2.487733946275537], "stop_id": 3690471, "stop_desc": "AVENUE DU VAL DE FONTENAY - 94033", "stop_name": "VAL-DE-FONTENAY RER"}, "geometry": {"type": "Point", "coordinates": [2.487733946275537, 48.85338820076925]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8b9d7a498f4be115f5a0ff636ee620d74c9dd18f", "fields": {"departement": "94", "stop_lat": 48.84569879056931, "code_postal": "94033", "stop_lon": 2.469301104436902, "coord": [48.84569879056931, 2.469301104436902], "stop_id": 3690434, "stop_desc": "34-36 RUE MAURICE COUDERCHET - 94033", "stop_name": "MAURICE COUDERCHET"}, "geometry": {"type": "Point", "coordinates": [2.469301104436902, 48.84569879056931]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9908e85418772a5ec543a1269fccbb724f4f587c", "fields": {"departement": "94", "stop_lat": 48.85530369052728, "code_postal": "94033", "stop_lon": 2.4868133584133694, "coord": [48.85530369052728, 2.4868133584133694], "stop_id": 3690444, "stop_desc": "FACE 14 AVENUE DES OLYMPIADES - 94033", "stop_name": "PABLO PICASSO"}, "geometry": {"type": "Point", "coordinates": [2.4868133584133694, 48.85530369052728]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "916a24472d103cf06f895e857c06fd4168a3fdcf", "fields": {"departement": "94", "stop_lat": 48.8455457382008, "code_postal": "94033", "stop_lon": 2.4611848538596774, "coord": [48.8455457382008, 2.4611848538596774], "stop_id": 3690461, "stop_desc": "47 BIS RUE MALLIER - 94033", "stop_name": "MALLIER - GAUCHER"}, "geometry": {"type": "Point", "coordinates": [2.4611848538596774, 48.8455457382008]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c1e3f758547cd70ea2e3338b9515af411640b6b5", "fields": {"departement": "94", "stop_lat": 48.854082291262344, "code_postal": "94033", "stop_lon": 2.4709431635752845, "coord": [48.854082291262344, 2.4709431635752845], "stop_id": 3690451, "stop_desc": "FACE 40 RUE ANATOLE FRANCE - 94033", "stop_name": "VERDUN"}, "geometry": {"type": "Point", "coordinates": [2.4709431635752845, 48.854082291262344]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b8b84f1651db5ecb33e8e448bfe00e76938a95cc", "fields": {"departement": "94", "stop_lat": 48.83409776803969, "code_postal": "94058", "stop_lon": 2.5160228153874997, "coord": [48.83409776803969, 2.5160228153874997], "stop_id": 3708141, "stop_desc": "254 AVENUE PIERRE BROSSOLETTE - 94058", "stop_name": "MARECHAL JOFFRE - PONT DE BRY"}, "geometry": {"type": "Point", "coordinates": [2.5160228153874997, 48.83409776803969]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "922f073319c19951904328a7a3ec6ebcde42a778", "fields": {"departement": "93", "stop_lat": 48.914227247147316, "code_postal": "93001", "stop_lon": 2.404026516251405, "coord": [48.914227247147316, 2.404026516251405], "stop_id": 3708447, "stop_desc": "AVENUE JEAN JAURES - 93001", "stop_name": "FORT D'AUBERVILLIERS-METRO"}, "geometry": {"type": "Point", "coordinates": [2.404026516251405, 48.914227247147316]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4e764e604aba6dd4fc364e7533e90a5cd628ff5b", "fields": {"departement": "93", "stop_lat": 48.91022964359314, "code_postal": "93008", "stop_lon": 2.41608763544949, "coord": [48.91022964359314, 2.41608763544949], "stop_id": 3708455, "stop_desc": "AVENUE DE L'ILLUSTRATION - 93008", "stop_name": "CITE DU PONT DE PIERRE"}, "geometry": {"type": "Point", "coordinates": [2.41608763544949, 48.91022964359314]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1d778bdf1621cdb5f0657e04f3c52e84b67eb4cb", "fields": {"departement": "93", "stop_lat": 48.90759726631874, "code_postal": "93008", "stop_lon": 2.4488177035089067, "coord": [48.90759726631874, 2.4488177035089067], "stop_id": 3708466, "stop_desc": "PISTE GARE ROUTIERE - 93008", "stop_name": "BOBIGNY - PABLO PICASSO"}, "geometry": {"type": "Point", "coordinates": [2.4488177035089067, 48.90759726631874]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e6763bb4be4dbac90424112876fd09e50825fa92", "fields": {"departement": "94", "stop_lat": 48.83424543925855, "code_postal": "94015", "stop_lon": 2.5193996628002555, "coord": [48.83424543925855, 2.5193996628002555], "stop_id": 3708142, "stop_desc": "5 PL DAGUERRE - 94015", "stop_name": "MAIRIE DE BRY-SUR-MARNE"}, "geometry": {"type": "Point", "coordinates": [2.5193996628002555, 48.83424543925855]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2739df4b196c3b4e445b1293feb1f6bc283f69b1", "fields": {"departement": "94", "stop_lat": 48.84462471993193, "code_postal": "94015", "stop_lon": 2.526053965223131, "coord": [48.84462471993193, 2.526053965223131], "stop_id": 3708146, "stop_desc": "BD DU GENERAL GALLIENI - 94015", "stop_name": "BRY-SUR-MARNE RER"}, "geometry": {"type": "Point", "coordinates": [2.526053965223131, 48.84462471993193]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "491f0da1bffbe4acc22a25c1394cccef6d46b742", "fields": {"departement": "93", "stop_lat": 48.90657485833315, "code_postal": "93008", "stop_lon": 2.4559320596369205, "coord": [48.90657485833315, 2.4559320596369205], "stop_id": 3708467, "stop_desc": "302 AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "LAMARTINE"}, "geometry": {"type": "Point", "coordinates": [2.4559320596369205, 48.90657485833315]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "62dfe97fb7808a759d7533930fc044b94128a026", "fields": {"departement": "93", "stop_lat": 48.91372104318945, "code_postal": "93055", "stop_lon": 2.4090708594396384, "coord": [48.91372104318945, 2.4090708594396384], "stop_id": 3708493, "stop_desc": "23 AVENUE DES COURTILLIERES - 93055", "stop_name": "DIVISION LECLERC - COURTILLIERES"}, "geometry": {"type": "Point", "coordinates": [2.4090708594396384, 48.91372104318945]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "be3e51fb0f41e433fc498b9169df0eb447cbb5df", "fields": {"departement": "93", "stop_lat": 48.906307579968086, "code_postal": "93010", "stop_lon": 2.470723452889686, "coord": [48.906307579968086, 2.470723452889686], "stop_id": 3708474, "stop_desc": "16-18 CHEMIN DE GROSLAY - 93010", "stop_name": "PONT DE BONDY - ANATOLE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.470723452889686, 48.906307579968086]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "800d21e25153f9103e40635e2efb714358e42647", "fields": {"departement": "93", "stop_lat": 48.907039883330384, "code_postal": "93008", "stop_lon": 2.4582235319318775, "coord": [48.907039883330384, 2.4582235319318775], "stop_id": 3708486, "stop_desc": "AVENUE PAUL VAILLANT COUTURIER - 93008", "stop_name": "AUGUSTE DELAUNE-TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.4582235319318775, 48.907039883330384]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ccff7d4dcc7566de2cd974c18fd013b8bec3ca76", "fields": {"departement": "93", "stop_lat": 48.90717332711018, "code_postal": "93008", "stop_lon": 2.4296073209290268, "coord": [48.90717332711018, 2.4296073209290268], "stop_id": 3708503, "stop_desc": "140 RUE DE LA REPUBLIQUE - 93008", "stop_name": "LYCEE ANDRE SABATIER"}, "geometry": {"type": "Point", "coordinates": [2.4296073209290268, 48.90717332711018]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "edd170d6d899d937bf9a1d44d9d0d260dfaeb8ef", "fields": {"departement": "93", "stop_lat": 48.910544162666014, "code_postal": "93008", "stop_lon": 2.416129016905065, "coord": [48.910544162666014, 2.416129016905065], "stop_id": 3708499, "stop_desc": "RUE DE L'ILLUSTRATION - 93008", "stop_name": "CITE DU PONT DE PIERRE"}, "geometry": {"type": "Point", "coordinates": [2.416129016905065, 48.910544162666014]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fb29844883e1eb0531835e496d91b22ef1966479", "fields": {"departement": "93", "stop_lat": 48.911687882007875, "code_postal": "93010", "stop_lon": 2.4809905365254483, "coord": [48.911687882007875, 2.4809905365254483], "stop_id": 3708477, "stop_desc": "ROUTE D'AULNAY - 93010", "stop_name": "ROUTE D'AULNAY - JEAN MOULIN"}, "geometry": {"type": "Point", "coordinates": [2.4809905365254483, 48.911687882007875]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2d997e0b955313fb4d9c53141c767b1fb4226054", "fields": {"departement": "93", "stop_lat": 48.9136270250163, "code_postal": "93010", "stop_lon": 2.482686671284147, "coord": [48.9136270250163, 2.482686671284147], "stop_id": 3708478, "stop_desc": "AVENUE HENRI VARAGNAT - 93010", "stop_name": "SUZANNE BUISSON"}, "geometry": {"type": "Point", "coordinates": [2.482686671284147, 48.9136270250163]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fd71b4a2025677e2b0942a8b6ff2678ed6b0a724", "fields": {"departement": "93", "stop_lat": 48.91785529094698, "code_postal": "93010", "stop_lon": 2.4790576691997925, "coord": [48.91785529094698, 2.4790576691997925], "stop_id": 3708482, "stop_desc": "ROND-POINT JOUHAUX-BLUM - 93010", "stop_name": "JOUHAUX-BLUM"}, "geometry": {"type": "Point", "coordinates": [2.4790576691997925, 48.91785529094698]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "635a5bd49b092c2625eb629bd2eada3e65b31f0d", "fields": {"departement": "93", "stop_lat": 48.91328474196549, "code_postal": "93008", "stop_lon": 2.416828575050586, "coord": [48.91328474196549, 2.416828575050586], "stop_id": 3708497, "stop_desc": "1 RUE BALZAC - 93008", "stop_name": "LES COURTILLIERES"}, "geometry": {"type": "Point", "coordinates": [2.416828575050586, 48.91328474196549]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "46de6d6a7d9f722eed5e977dd863d484fd193b47", "fields": {"departement": "93", "stop_lat": 48.910341920328406, "code_postal": "93010", "stop_lon": 2.479241618110349, "coord": [48.910341920328406, 2.479241618110349], "stop_id": 3708484, "stop_desc": "FACE 5 RUE PAUL RENAUD - 93010", "stop_name": "PAUL RENAUD"}, "geometry": {"type": "Point", "coordinates": [2.479241618110349, 48.910341920328406]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e376154fc2538ccc1c5b6f48cc9f3cb63e7839c7", "fields": {"departement": "93", "stop_lat": 48.907039883330384, "code_postal": "93008", "stop_lon": 2.4582235319318775, "coord": [48.907039883330384, 2.4582235319318775], "stop_id": 3708536, "stop_desc": "AVENUE PAUL VAILLANT COUTURIER - 93008", "stop_name": "AUGUSTE DELAUNE-TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.4582235319318775, 48.907039883330384]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "be6cb61d7982bd68c0a8b858e20576b1635b129d", "fields": {"departement": "93", "stop_lat": 48.9076360931163, "code_postal": "93008", "stop_lon": 2.423704829250072, "coord": [48.9076360931163, 2.423704829250072], "stop_id": 3708540, "stop_desc": "AVENUE DE LA DIVISION LECLERC - 93008", "stop_name": "REPUBLIQUE-DIVISION LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.423704829250072, 48.9076360931163]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a28b64d69733c502140d8b3655c327def09a8637", "fields": {"departement": "93", "stop_lat": 48.90555453249922, "code_postal": "93008", "stop_lon": 2.469044655471792, "coord": [48.90555453249922, 2.469044655471792], "stop_id": 3708517, "stop_desc": "FACE 439 AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "PONT DE BONDY"}, "geometry": {"type": "Point", "coordinates": [2.469044655471792, 48.90555453249922]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f353a05a3f3e2e64a30814a689f5c7a991137065", "fields": {"departement": "93", "stop_lat": 48.864759105805646, "code_postal": "93049", "stop_lon": 2.5126957032545296, "coord": [48.864759105805646, 2.5126957032545296], "stop_id": 3715230, "stop_desc": "CHEMIN DES RENOUILLIERES - 93049", "stop_name": "ALEXANDER FLEMING"}, "geometry": {"type": "Point", "coordinates": [2.5126957032545296, 48.864759105805646]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "26e5e1f742b40a0044d50f0a5b18536dd29230ff", "fields": {"departement": "93", "stop_lat": 48.911687882007875, "code_postal": "93010", "stop_lon": 2.4809905365254483, "coord": [48.911687882007875, 2.4809905365254483], "stop_id": 3708526, "stop_desc": "ROUTE D'AULNAY - 93010", "stop_name": "ROUTE D'AULNAY - JEAN MOULIN"}, "geometry": {"type": "Point", "coordinates": [2.4809905365254483, 48.911687882007875]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "913517ab9c52b7f656f1d36a967da67135d44abc", "fields": {"departement": "93", "stop_lat": 48.90675435432779, "code_postal": "93008", "stop_lon": 2.4467981603729605, "coord": [48.90675435432779, 2.4467981603729605], "stop_id": 3708538, "stop_desc": "15 BOULEVARD MAURICE THOREZ - 93008", "stop_name": "MAURICE THOREZ"}, "geometry": {"type": "Point", "coordinates": [2.4467981603729605, 48.90675435432779]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ff22bde15ec6be487a6f070e9ca96668c7d62efe", "fields": {"departement": "93", "stop_lat": 48.86618647933904, "code_postal": "93050", "stop_lon": 2.5255330738242145, "coord": [48.86618647933904, 2.5255330738242145], "stop_id": 3715234, "stop_desc": "15 -17 RUE LOUIS VANNINI - 93050", "stop_name": "11 NOVEMBRE"}, "geometry": {"type": "Point", "coordinates": [2.5255330738242145, 48.86618647933904]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cbdf1ce2845d3d94413badc508d42f30362979ef", "fields": {"departement": "93", "stop_lat": 48.86974875272819, "code_postal": "93049", "stop_lon": 2.5053149784562296, "coord": [48.86974875272819, 2.5053149784562296], "stop_id": 3715226, "stop_desc": "5/7 AVENUE DES FAUVETTES - 93049", "stop_name": "BEL AIR"}, "geometry": {"type": "Point", "coordinates": [2.5053149784562296, 48.86974875272819]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6f34ac4458538a4526bd027b5bb8aeb2142b8644", "fields": {"departement": "93", "stop_lat": 48.86805952009656, "code_postal": "93049", "stop_lon": 2.505037040534674, "coord": [48.86805952009656, 2.505037040534674], "stop_id": 3715227, "stop_desc": "79 AVENUE CARNOT - 93049", "stop_name": "ETIENNE DOLET"}, "geometry": {"type": "Point", "coordinates": [2.505037040534674, 48.86805952009656]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "328cdd63a960279b55e51d92ee7c747ad6f4312b", "fields": {"departement": "93", "stop_lat": 48.9178455076262, "code_postal": "93010", "stop_lon": 2.4797258174982626, "coord": [48.9178455076262, 2.4797258174982626], "stop_id": 3708532, "stop_desc": "AV LEON JOUHAUX - 93010", "stop_name": "JOUHAUX-BLUM"}, "geometry": {"type": "Point", "coordinates": [2.4797258174982626, 48.9178455076262]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cbd6e8424e830ce1bb675e318f94a7087f58f3d2", "fields": {"departement": "75", "stop_lat": 48.85583791617629, "code_postal": "75106", "stop_lon": 2.3409320544688788, "coord": [48.85583791617629, 2.3409320544688788], "stop_id": 3716936, "stop_desc": "FACE 55 QUAI DES GRANDS AUGUSTINS - 75106", "stop_name": "PONT NEUF - QUAI DES GRANDS AUGUSTINS"}, "geometry": {"type": "Point", "coordinates": [2.3409320544688788, 48.85583791617629]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d40e60cb865c1d13de17533840045251e0e3fb1f", "fields": {"departement": "75", "stop_lat": 48.85826452640826, "code_postal": "75106", "stop_lon": 2.333713341644251, "coord": [48.85826452640826, 2.333713341644251], "stop_id": 3716938, "stop_desc": "FACE 21 QUAI MALAQUAIS - 75106", "stop_name": "PONT DU CARROUSEL - QUAI VOLTAIRE"}, "geometry": {"type": "Point", "coordinates": [2.333713341644251, 48.85826452640826]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "073ad4e6be3698c5de4084aaca88e776b13a70e9", "fields": {"departement": "75", "stop_lat": 48.8511007153224, "code_postal": "75105", "stop_lon": 2.3516359825745714, "coord": [48.8511007153224, 2.3516359825745714], "stop_id": 3716932, "stop_desc": "FACE 55 QUAI DE LA TOURNELLE - 75105", "stop_name": "PONT DE L'ARCHEVECHE"}, "geometry": {"type": "Point", "coordinates": [2.3516359825745714, 48.8511007153224]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9c88b9aef8e45fe13cfd1e2de7d5222bea0e86c7", "fields": {"departement": "75", "stop_lat": 48.85258403108319, "code_postal": "75105", "stop_lon": 2.348000108567692, "coord": [48.85258403108319, 2.348000108567692], "stop_id": 3716933, "stop_desc": "QUAI DE MONTEBELLO - 75105", "stop_name": "NOTRE-DAME - QUAI DE MONTEBELLO"}, "geometry": {"type": "Point", "coordinates": [2.348000108567692, 48.85258403108319]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "95d7f18db3d20dafe29d4479590621af477a9b88", "fields": {"departement": "75", "stop_lat": 48.86161608342362, "code_postal": "75107", "stop_lon": 2.3234561851162594, "coord": [48.86161608342362, 2.3234561851162594], "stop_id": 3716940, "stop_desc": "FACE 11 QUAI ANATOLE FRANCE - 75107", "stop_name": "MUSEE D'ORSAY"}, "geometry": {"type": "Point", "coordinates": [2.3234561851162594, 48.86161608342362]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "74bd4070cb8049005917fd40397fb3a08397046c", "fields": {"departement": "75", "stop_lat": 48.84009247169696, "code_postal": "75112", "stop_lon": 2.3819688617960826, "coord": [48.84009247169696, 2.3819688617960826], "stop_id": 3716924, "stop_desc": "15 BOULEVARD DE BERCY - 75112", "stop_name": "GARE DE BERCY"}, "geometry": {"type": "Point", "coordinates": [2.3819688617960826, 48.84009247169696]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9df5b2ebd21f5c7e967c216f6913fe7379be129d", "fields": {"departement": "75", "stop_lat": 48.869956563045214, "code_postal": "75108", "stop_lon": 2.3253476474582184, "coord": [48.869956563045214, 2.3253476474582184], "stop_id": 3716943, "stop_desc": "16 PLACE DE LA MADELEINE - 75108", "stop_name": "MADELEINE"}, "geometry": {"type": "Point", "coordinates": [2.3253476474582184, 48.869956563045214]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9f57536908f2c4f86bd2f3338d2083a106c538db", "fields": {"departement": "94", "stop_lat": 48.81940876414627, "code_postal": "94018", "stop_lon": 2.4072118416045463, "coord": [48.81940876414627, 2.4072118416045463], "stop_id": 3716955, "stop_desc": "52 QUAI DES CARRIERES - 94018", "stop_name": "LES BERGES DE CHARENTON"}, "geometry": {"type": "Point", "coordinates": [2.4072118416045463, 48.81940876414627]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5d1e7d7740a054a8f1cf49b607a53c6ed47f12e9", "fields": {"departement": "75", "stop_lat": 48.831938061298615, "code_postal": "75112", "stop_lon": 2.38859167244866, "coord": [48.831938061298615, 2.38859167244866], "stop_id": 3716960, "stop_desc": "42 AVENUE DES TERROIRS DE FRANCE - 75112", "stop_name": "TERROIRS DE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.38859167244866, 48.831938061298615]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5f39332d3d0f2d58723da94c255012050ecf5bd3", "fields": {"departement": "94", "stop_lat": 48.81403046676577, "code_postal": "94017", "stop_lon": 2.5575835585876816, "coord": [48.81403046676577, 2.5575835585876816], "stop_id": 3718003, "stop_desc": "PLACE DE LA RESISTANCE - 94017", "stop_name": "PLACE DE LA RESISTANCE"}, "geometry": {"type": "Point", "coordinates": [2.5575835585876816, 48.81403046676577]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bde9507dc872b98f03beed9773783a37e5c89205", "fields": {"departement": "94", "stop_lat": 48.81403046676577, "code_postal": "94017", "stop_lon": 2.5575835585876816, "coord": [48.81403046676577, 2.5575835585876816], "stop_id": 3718002, "stop_desc": "PLACE DE LA RESISTANCE - 94017", "stop_name": "PLACE DE LA RESISTANCE"}, "geometry": {"type": "Point", "coordinates": [2.5575835585876816, 48.81403046676577]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8e1ac5af606cc5e015fd2984379e924bf68c7045", "fields": {"departement": "94", "stop_lat": 48.821606439542855, "code_postal": "94018", "stop_lon": 2.4141972075539684, "coord": [48.821606439542855, 2.4141972075539684], "stop_id": 3716953, "stop_desc": "RUE DE LA REPUBLIQUE - 94018", "stop_name": "CHARENTON-ECOLES"}, "geometry": {"type": "Point", "coordinates": [2.4141972075539684, 48.821606439542855]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d765652ac5a2d754fe96910eca6437515bd4efd6", "fields": {"departement": "75", "stop_lat": 48.83390615769929, "code_postal": "75112", "stop_lon": 2.3890292724064803, "coord": [48.83390615769929, 2.3890292724064803], "stop_id": 3716961, "stop_desc": "27-29 RUE BARON LE ROY - 75112", "stop_name": "BARON LE ROY"}, "geometry": {"type": "Point", "coordinates": [2.3890292724064803, 48.83390615769929]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ad9d298e576f5aa5a3d4940be8eaa73d4e346ea1", "fields": {"departement": "94", "stop_lat": 48.82224470146372, "code_postal": "94018", "stop_lon": 2.3984773449336694, "coord": [48.82224470146372, 2.3984773449336694], "stop_id": 3716957, "stop_desc": "7 QUAI DE BERCY - 94018", "stop_name": "PORT AUX LIONS"}, "geometry": {"type": "Point", "coordinates": [2.3984773449336694, 48.82224470146372]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3719e1c0c8571e6d9b2d76a797c3525c499423a7", "fields": {"departement": "94", "stop_lat": 48.81142543777465, "code_postal": "94017", "stop_lon": 2.556810436968841, "coord": [48.81142543777465, 2.556810436968841], "stop_id": 3718005, "stop_desc": "FACE 16 AVENUE PAUL VENZAC - 94017", "stop_name": "PAUL VENZAC"}, "geometry": {"type": "Point", "coordinates": [2.556810436968841, 48.81142543777465]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b859947c427737c405fcac51947de4abc1867ed5", "fields": {"departement": "75", "stop_lat": 48.84698295134104, "code_postal": "75105", "stop_lon": 2.360976497921474, "coord": [48.84698295134104, 2.360976497921474], "stop_id": 3716969, "stop_desc": "FACE 5 QUAI SAINT BERNARD - 75105", "stop_name": "CUVIER"}, "geometry": {"type": "Point", "coordinates": [2.360976497921474, 48.84698295134104]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5a388c6feb7dd6da8a0aa9783a53e5e63c998e53", "fields": {"departement": "94", "stop_lat": 48.81113225531142, "code_postal": "94017", "stop_lon": 2.539676447681396, "coord": [48.81113225531142, 2.539676447681396], "stop_id": 3718012, "stop_desc": "R DU BOIS L'ABBE - 94017", "stop_name": "RUE DU BOIS L'ABBE - LOUISE COLLET"}, "geometry": {"type": "Point", "coordinates": [2.539676447681396, 48.81113225531142]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a840d88f48871e88b5f1fd02238f353568e8ddce", "fields": {"departement": "94", "stop_lat": 48.80654286951804, "code_postal": "94017", "stop_lon": 2.526704679451085, "coord": [48.80654286951804, 2.526704679451085], "stop_id": 3718020, "stop_desc": "FACE 87 AVENUE MARX DORMOY - 94017", "stop_name": "MUSEE DE LA RESISTANCE"}, "geometry": {"type": "Point", "coordinates": [2.526704679451085, 48.80654286951804]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fbfe73b3489c5460a5c4a008f91fd719c37c7d27", "fields": {"departement": "94", "stop_lat": 48.80702898783379, "code_postal": "94017", "stop_lon": 2.526216596540736, "coord": [48.80702898783379, 2.526216596540736], "stop_id": 3718019, "stop_desc": "87 AVENUE MARX DORMOY - 94017", "stop_name": "MUSEE DE LA RESISTANCE"}, "geometry": {"type": "Point", "coordinates": [2.526216596540736, 48.80702898783379]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "36598ba03535f4df33fba354f7c2f733c8351d7d", "fields": {"departement": "94", "stop_lat": 48.806027291317086, "code_postal": "94019", "stop_lon": 2.534254613211186, "coord": [48.806027291317086, 2.534254613211186], "stop_id": 3718033, "stop_desc": "FACE 2 AVENUE MAURICE THOREZ - 94019", "stop_name": "FORT DE CHAMPIGNY"}, "geometry": {"type": "Point", "coordinates": [2.534254613211186, 48.806027291317086]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "efe3e91b7c3f4ae9bb94999200d3ebc1c7ad6687", "fields": {"departement": "94", "stop_lat": 48.81313554348275, "code_postal": "94017", "stop_lon": 2.511936047825764, "coord": [48.81313554348275, 2.511936047825764], "stop_id": 3718027, "stop_desc": "32 RUE LOUIS TALAMONI - 94017", "stop_name": "MAIRIE DE CHAMPIGNY"}, "geometry": {"type": "Point", "coordinates": [2.511936047825764, 48.81313554348275]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "da8a388d724f275958ec5c1c847132c4c7145fe2", "fields": {"departement": "94", "stop_lat": 48.805543085784315, "code_postal": "94019", "stop_lon": 2.559139529965281, "coord": [48.805543085784315, 2.559139529965281], "stop_id": 3718050, "stop_desc": "RUE JEAN DE LA FONTAINE - 94019", "stop_name": "JEAN DE LA FONTAINE"}, "geometry": {"type": "Point", "coordinates": [2.559139529965281, 48.805543085784315]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9e64886f43cd6d4bf25c39b98b90b07b6641d62b", "fields": {"departement": "94", "stop_lat": 48.81156828189472, "code_postal": "94017", "stop_lon": 2.552415548105238, "coord": [48.81156828189472, 2.552415548105238], "stop_id": 3718006, "stop_desc": "33-35 RUE DU PLESSIS TREVISE - 94017", "stop_name": "CHATEAUDUN"}, "geometry": {"type": "Point", "coordinates": [2.552415548105238, 48.81156828189472]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a90412a5e33cac829293f9e778f40a1c4112a3f4", "fields": {"departement": "94", "stop_lat": 48.81226731242885, "code_postal": "94017", "stop_lon": 2.515580204948953, "coord": [48.81226731242885, 2.515580204948953], "stop_id": 3718025, "stop_desc": "FACE 1 RUE MARX DORMOY - 94017", "stop_name": "RUE DU MONUMENT"}, "geometry": {"type": "Point", "coordinates": [2.515580204948953, 48.81226731242885]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f286cd26247bbe0a91a0a5640eba476626216266", "fields": {"departement": "94", "stop_lat": 48.79857520334873, "code_postal": "94019", "stop_lon": 2.5555180518712635, "coord": [48.79857520334873, 2.5555180518712635], "stop_id": 3718044, "stop_desc": "RUE DES BORDES - 94019", "stop_name": "LYCEE CHAMPLAIN"}, "geometry": {"type": "Point", "coordinates": [2.5555180518712635, 48.79857520334873]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2299ba780ecb2572d7343fb65f875a3dc7182a1f", "fields": {"departement": "94", "stop_lat": 48.80532308289604, "code_postal": "94059", "stop_lon": 2.584134114369526, "coord": [48.80532308289604, 2.584134114369526], "stop_id": 3718035, "stop_desc": "PL VERDUN - 94059", "stop_name": "PLACE DE VERDUN"}, "geometry": {"type": "Point", "coordinates": [2.584134114369526, 48.80532308289604]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fe56e9e751f95c7539d3a712d0b79e8ccd1aca8c", "fields": {"departement": "94", "stop_lat": 48.770247117178215, "code_postal": "94021", "stop_lon": 2.3485813636454473, "coord": [48.770247117178215, 2.3485813636454473], "stop_id": 3730058, "stop_desc": "BOULEVARD CIRCULAIRE NORD - 94021", "stop_name": "MAIRIE DE CHEVILLY-LARUE"}, "geometry": {"type": "Point", "coordinates": [2.3485813636454473, 48.770247117178215]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d85edf51d2ad79fd4fbf8b087f71fd8820b9fa79", "fields": {"departement": "94", "stop_lat": 48.76353172246238, "code_postal": "94021", "stop_lon": 2.3581784670689125, "coord": [48.76353172246238, 2.3581784670689125], "stop_id": 3730060, "stop_desc": "AVENUE DE LA CITE - 94021", "stop_name": "MARCHE INTERNATIONAL DE RUNGIS"}, "geometry": {"type": "Point", "coordinates": [2.3581784670689125, 48.76353172246238]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "425ee22e37e82b4ea3d24e163dc1df91fa4ed349", "fields": {"departement": "92", "stop_lat": 48.8154422235913, "code_postal": "92046", "stop_lon": 2.3009314548288073, "coord": [48.8154422235913, 2.3009314548288073], "stop_id": 3729703, "stop_desc": "FACE 6 AV IRENE ET FREDERIC JOLIOT CURIE - 92046", "stop_name": "JOLIOT CURIE"}, "geometry": {"type": "Point", "coordinates": [2.3009314548288073, 48.8154422235913]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ee2f127546cdd56b93176d80068b6d0ea45e12c4", "fields": {"departement": "92", "stop_lat": 48.76371911769389, "code_postal": "92002", "stop_lon": 2.30968248881964, "coord": [48.76371911769389, 2.30968248881964], "stop_id": 3730044, "stop_desc": "1 AVENUE DU DOCTEUR TENINE - 92002", "stop_name": "BERNY-RAYMOND ARON"}, "geometry": {"type": "Point", "coordinates": [2.30968248881964, 48.76371911769389]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c61117535b00d876db1b30f09bdbbb380cb0f844", "fields": {"departement": "94", "stop_lat": 48.759647325903956, "code_postal": "94021", "stop_lon": 2.3655724136005585, "coord": [48.759647325903956, 2.3655724136005585], "stop_id": 3730062, "stop_desc": "RUE DE THIAIS - 94021", "stop_name": "PORTE DE THIAIS"}, "geometry": {"type": "Point", "coordinates": [2.3655724136005585, 48.759647325903956]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bbf57e5261026879ad480f6cd9c0a0ee2ba42c06", "fields": {"departement": "94", "stop_lat": 48.76754244330636, "code_postal": "94022", "stop_lon": 2.417040444311894, "coord": [48.76754244330636, 2.417040444311894], "stop_id": 3730080, "stop_desc": "26 BIS AVENUE VICTOR HUGO - 94022", "stop_name": "PASTEUR"}, "geometry": {"type": "Point", "coordinates": [2.417040444311894, 48.76754244330636]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4b59756ce7d6ce0754bcdca2f976689747160311", "fields": {"departement": "94", "stop_lat": 48.75451800791887, "code_postal": "94034", "stop_lon": 2.326787800242939, "coord": [48.75451800791887, 2.326787800242939], "stop_id": 3730051, "stop_desc": "18 AVENUE EDOUARD HERRIOT - 94034", "stop_name": "MONTJEAN"}, "geometry": {"type": "Point", "coordinates": [2.326787800242939, 48.75451800791887]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ce3fbf031aecafa84068b5a742a50b9363ba7b3d", "fields": {"departement": "92", "stop_lat": 48.823200502897365, "code_postal": "92046", "stop_lon": 2.3077725274735896, "coord": [48.823200502897365, 2.3077725274735896], "stop_id": 3729698, "stop_desc": "R VICTOR HUGO - 92046", "stop_name": "VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.3077725274735896, 48.823200502897365]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ac8937211776c09111e6f13a58f51d3616e8e72f", "fields": {"departement": "94", "stop_lat": 48.81113225531142, "code_postal": "94017", "stop_lon": 2.539676447681396, "coord": [48.81113225531142, 2.539676447681396], "stop_id": 3718106, "stop_desc": "R DU BOIS L'ABBE - 94017", "stop_name": "RUE DU BOIS L'ABBE - LOUISE COLLET"}, "geometry": {"type": "Point", "coordinates": [2.539676447681396, 48.81113225531142]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "50a1a925164c5ae4dc53422d5d400d121ccfa269", "fields": {"departement": "94", "stop_lat": 48.8009974528633, "code_postal": "94019", "stop_lon": 2.5480315676302205, "coord": [48.8009974528633, 2.5480315676302205], "stop_id": 3718061, "stop_desc": "35 RUE DU PLESSIS TREVISE - 94019", "stop_name": "GROUPE SCOLAIRE ROUSSEAU"}, "geometry": {"type": "Point", "coordinates": [2.5480315676302205, 48.8009974528633]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "18fa23c9215ac109875fbecb5644338e58b7cfde", "fields": {"departement": "94", "stop_lat": 48.81317916036105, "code_postal": "94017", "stop_lon": 2.5128343715435313, "coord": [48.81317916036105, 2.5128343715435313], "stop_id": 3718075, "stop_desc": "43 RUE LOUIS TALAMONI - 94017", "stop_name": "MAIRIE DE CHAMPIGNY"}, "geometry": {"type": "Point", "coordinates": [2.5128343715435313, 48.81317916036105]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e0d8e7abebec2f87a57ee1336a25370caed4a02c", "fields": {"departement": "94", "stop_lat": 48.81313554348275, "code_postal": "94017", "stop_lon": 2.511936047825764, "coord": [48.81313554348275, 2.511936047825764], "stop_id": 3718088, "stop_desc": "32 RUE LOUIS TALAMONI - 94017", "stop_name": "MAIRIE DE CHAMPIGNY"}, "geometry": {"type": "Point", "coordinates": [2.511936047825764, 48.81313554348275]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f8d669f02f2ad500ce55f399a06171ea392f88d6", "fields": {"departement": "94", "stop_lat": 48.806201108282245, "code_postal": "94017", "stop_lon": 2.53240473152121, "coord": [48.806201108282245, 2.53240473152121], "stop_id": 3718109, "stop_desc": "AVENUE MARX DORMOY - 94017", "stop_name": "FORT DE CHAMPIGNY"}, "geometry": {"type": "Point", "coordinates": [2.53240473152121, 48.806201108282245]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0d7210b073e3be872a69b15428b7bb177998b9c9", "fields": {"departement": "94", "stop_lat": 48.81226731242885, "code_postal": "94017", "stop_lon": 2.515580204948953, "coord": [48.81226731242885, 2.515580204948953], "stop_id": 3718074, "stop_desc": "FACE 1 RUE MARX DORMOY - 94017", "stop_name": "RUE DU MONUMENT"}, "geometry": {"type": "Point", "coordinates": [2.515580204948953, 48.81226731242885]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1f09965300c5c2018f06dccc972384a1bf05cddb", "fields": {"departement": "94", "stop_lat": 48.81226731242885, "code_postal": "94017", "stop_lon": 2.515580204948953, "coord": [48.81226731242885, 2.515580204948953], "stop_id": 3718089, "stop_desc": "FACE 1 RUE MARX DORMOY - 94017", "stop_name": "RUE DU MONUMENT"}, "geometry": {"type": "Point", "coordinates": [2.515580204948953, 48.81226731242885]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d32b6a0467d9a561f47604990765453c9817892e", "fields": {"departement": "94", "stop_lat": 48.80327671942918, "code_postal": "94019", "stop_lon": 2.5500817450343187, "coord": [48.80327671942918, 2.5500817450343187], "stop_id": 3718060, "stop_desc": "AVENUE BOILEAU - 94019", "stop_name": "RABELAIS"}, "geometry": {"type": "Point", "coordinates": [2.5500817450343187, 48.80327671942918]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "09442d389b142da1128aef1daa31efc4db9a9303", "fields": {"departement": "94", "stop_lat": 48.803393584967345, "code_postal": "94017", "stop_lon": 2.550068617897763, "coord": [48.803393584967345, 2.550068617897763], "stop_id": 3718083, "stop_desc": "AVENUE BOILEAU - 94017", "stop_name": "RABELAIS"}, "geometry": {"type": "Point", "coordinates": [2.550068617897763, 48.803393584967345]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "431b1fe205f07b54f0ed3efa023e135956dc0aa2", "fields": {"departement": "94", "stop_lat": 48.8064148949998, "code_postal": "94017", "stop_lon": 2.5542719544018957, "coord": [48.8064148949998, 2.5542719544018957], "stop_id": 3718055, "stop_desc": "AVENUE BOILEAU - 94017", "stop_name": "HOUDON"}, "geometry": {"type": "Point", "coordinates": [2.5542719544018957, 48.8064148949998]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1bb70e80c85768bb76e418509264e2c9ca5756ad", "fields": {"departement": "94", "stop_lat": 48.77042976802533, "code_postal": "94028", "stop_lon": 2.4266447259714754, "coord": [48.77042976802533, 2.4266447259714754], "stop_id": 3730084, "stop_desc": "116 AVENUE VICTOR HUGO - 94028", "stop_name": "PARC INTERDEPARTEMENTAL DES SPORTS"}, "geometry": {"type": "Point", "coordinates": [2.4266447259714754, 48.77042976802533]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f61c85c17465ca3e525e3bd6aec7425edcc74242", "fields": {"departement": "94", "stop_lat": 48.783436078303545, "code_postal": "94028", "stop_lon": 2.4472997147150757, "coord": [48.783436078303545, 2.4472997147150757], "stop_id": 3730090, "stop_desc": "ROUTE DE CHOISY - 94028", "stop_name": "PREFECTURE DU VAL-DE-MARNE"}, "geometry": {"type": "Point", "coordinates": [2.4472997147150757, 48.783436078303545]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8d702408c0c1140d41f27f7087048fff03e7edb1", "fields": {"departement": "94", "stop_lat": 48.77572986087126, "code_postal": "94038", "stop_lon": 2.326389159474474, "coord": [48.77572986087126, 2.326389159474474], "stop_id": 3730354, "stop_desc": "4 AVENUE HENRI BARBUSSE - 94038", "stop_name": "BARBUSSE - LARROUMES"}, "geometry": {"type": "Point", "coordinates": [2.326389159474474, 48.77572986087126]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5af9c367b32e1fedd38220e04ab69797c0538a00", "fields": {"departement": "94", "stop_lat": 48.79784034934669, "code_postal": "94016", "stop_lon": 2.328411632325268, "coord": [48.79784034934669, 2.328411632325268], "stop_id": 3730339, "stop_desc": "FACE 28 AVENUE CARNOT - 94016", "stop_name": "ARCUEIL-CACHAN RER"}, "geometry": {"type": "Point", "coordinates": [2.328411632325268, 48.79784034934669]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "068abf615ec08c75530406603d86b91b0409f597", "fields": {"departement": "94", "stop_lat": 48.773617476536444, "code_postal": "94038", "stop_lon": 2.324390644589767, "coord": [48.773617476536444, 2.324390644589767], "stop_id": 3730356, "stop_desc": "49 AVENUE CHARLES FLOUQUET - 94038", "stop_name": "COLLEGE RONSARD"}, "geometry": {"type": "Point", "coordinates": [2.324390644589767, 48.773617476536444]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "de99a4b6ada172fee3538eb9a1300fcb38910b1a", "fields": {"departement": "94", "stop_lat": 48.75574884176963, "code_postal": "94034", "stop_lon": 2.321798676035864, "coord": [48.75574884176963, 2.321798676035864], "stop_id": 3730369, "stop_desc": "SQUARE DU 19 MARS 1962 - 94034", "stop_name": "MAIRIE DE FRESNES"}, "geometry": {"type": "Point", "coordinates": [2.321798676035864, 48.75574884176963]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "79818279e44e7422901132270b7f69bdd161ef60", "fields": {"departement": "94", "stop_lat": 48.81062089478181, "code_postal": "94003", "stop_lon": 2.3268989636631354, "coord": [48.81062089478181, 2.3268989636631354], "stop_id": 3730334, "stop_desc": "3 AVENUE ARISTIDE BRIAND - 94003", "stop_name": "VACHE NOIRE"}, "geometry": {"type": "Point", "coordinates": [2.3268989636631354, 48.81062089478181]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "273e33305e0c6e42466dd0eaaf1ab2c3a67b1b96", "fields": {"departement": "94", "stop_lat": 48.76906016590539, "code_postal": "94038", "stop_lon": 2.3213188165227616, "coord": [48.76906016590539, 2.3213188165227616], "stop_id": 3730360, "stop_desc": "129 AVENUE FLOUQUET - 94038", "stop_name": "RUE GENEVIEVE"}, "geometry": {"type": "Point", "coordinates": [2.3213188165227616, 48.76906016590539]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6523d5992848c676cc2e2a762b643914af2ce12e", "fields": {"departement": "94", "stop_lat": 48.76777636972624, "code_postal": "94022", "stop_lon": 2.4166872861652084, "coord": [48.76777636972624, 2.4166872861652084], "stop_id": 3730081, "stop_desc": "37-39 AVENUE VICTOR HUGO - 94022", "stop_name": "PASTEUR"}, "geometry": {"type": "Point", "coordinates": [2.4166872861652084, 48.76777636972624]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3c101b6727a88ad82d415db4bd847f0fc0ffdbe3", "fields": {"departement": "94", "stop_lat": 48.76991509860442, "code_postal": "94021", "stop_lon": 2.337526625367893, "coord": [48.76991509860442, 2.337526625367893], "stop_id": 3730650, "stop_desc": "96 BD JEAN MERMOZ - 94021", "stop_name": "CROIX DU SUD - CENTRE DE PNEUMOLOGIE"}, "geometry": {"type": "Point", "coordinates": [2.337526625367893, 48.76991509860442]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6288d1aaba94e8a6cc8e7532597990ef33bc617e", "fields": {"departement": "92", "stop_lat": 48.75344458886405, "code_postal": "92002", "stop_lon": 2.305324564769305, "coord": [48.75344458886405, 2.305324564769305], "stop_id": 3730666, "stop_desc": "5-7 RUE JEAN MOULIN - 92002", "stop_name": "MOUNIE-DIVISION LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.305324564769305, 48.75344458886405]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fea9335f218a87b46de2e294e16e3cc36a27b4f6", "fields": {"departement": "94", "stop_lat": 48.80527304622148, "code_postal": "94003", "stop_lon": 2.3256346130653758, "coord": [48.80527304622148, 2.3256346130653758], "stop_id": 3730376, "stop_desc": "77-79 AVENUE ARISTIDE BRIAND - 94003", "stop_name": "CROIX D'ARCUEIL"}, "geometry": {"type": "Point", "coordinates": [2.3256346130653758, 48.80527304622148]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2580a36f626796f519ca6b58d68e60768ca10340", "fields": {"departement": "94", "stop_lat": 48.752071816727536, "code_postal": "94034", "stop_lon": 2.3161723886118133, "coord": [48.752071816727536, 2.3161723886118133], "stop_id": 3730663, "stop_desc": "11-13 AVENUE DU PARC DES SPORTS - 94034", "stop_name": "PARC DES SPORTS"}, "geometry": {"type": "Point", "coordinates": [2.3161723886118133, 48.752071816727536]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a7f500a16bcd2c6bf7a649596663cf45e7c3670f", "fields": {"departement": "92", "stop_lat": 48.75113455386284, "code_postal": "92002", "stop_lon": 2.3050541345531697, "coord": [48.75113455386284, 2.3050541345531697], "stop_id": 3730669, "stop_desc": "4 AVENUE DU 11 NOVEMBRE 1918 - 92002", "stop_name": "PONT D'ANTONY"}, "geometry": {"type": "Point", "coordinates": [2.3050541345531697, 48.75113455386284]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "038bcb4a5cfea2f9ef7978481aea4d66ed837b9f", "fields": {"departement": "94", "stop_lat": 48.77794081087016, "code_postal": "94038", "stop_lon": 2.349154219590485, "coord": [48.77794081087016, 2.349154219590485], "stop_id": 3730643, "stop_desc": "FACE 15 RUE JULES FERRY - 94038", "stop_name": "JULES FERRY-FERRER"}, "geometry": {"type": "Point", "coordinates": [2.349154219590485, 48.77794081087016]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b2f2569cc1bfa8da05212d34dc067aaf161849f1", "fields": {"departement": "94", "stop_lat": 48.7841494673713, "code_postal": "94076", "stop_lon": 2.362267104414379, "coord": [48.7841494673713, 2.362267104414379], "stop_id": 3730632, "stop_desc": "RUE AUGUSTE DELAUNE - 94076", "stop_name": "PLACE AUGUSTE DELAUNE"}, "geometry": {"type": "Point", "coordinates": [2.362267104414379, 48.7841494673713]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "041f7ee6ab20534f03c661ad26435b78b10961ba", "fields": {"departement": "94", "stop_lat": 48.758580343996215, "code_postal": "94034", "stop_lon": 2.3237418345669676, "coord": [48.758580343996215, 2.3237418345669676], "stop_id": 3730657, "stop_desc": "FACE 40 RUE HENRI BARBUSSE - 94034", "stop_name": "EMILE ZOLA"}, "geometry": {"type": "Point", "coordinates": [2.3237418345669676, 48.758580343996215]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ad67e26ae2196ce1a73082b2ef1eb0fe477946c9", "fields": {"departement": "94", "stop_lat": 48.77804860687779, "code_postal": "94038", "stop_lon": 2.3497390229670976, "coord": [48.77804860687779, 2.3497390229670976], "stop_id": 3730642, "stop_desc": "1 RUE JULES FERRY - 94038", "stop_name": "JULES FERRY-FERRER"}, "geometry": {"type": "Point", "coordinates": [2.3497390229670976, 48.77804860687779]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fbae3816e0b33f14a07e13b41f5b27e24af9d579", "fields": {"departement": "94", "stop_lat": 48.77598988189659, "code_postal": "94038", "stop_lon": 2.353627832171674, "coord": [48.77598988189659, 2.353627832171674], "stop_id": 3730640, "stop_desc": "FACE 119 RUE DE BICETRE - 94038", "stop_name": "RUE DE BICETRE"}, "geometry": {"type": "Point", "coordinates": [2.353627832171674, 48.77598988189659]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2654e470b8a8f55b22b29fc68f17150de98d3a76", "fields": {"departement": "94", "stop_lat": 48.76991509860442, "code_postal": "94021", "stop_lon": 2.337526625367893, "coord": [48.76991509860442, 2.337526625367893], "stop_id": 3730688, "stop_desc": "96 BD JEAN MERMOZ - 94021", "stop_name": "CROIX DU SUD - CENTRE DE PNEUMOLOGIE"}, "geometry": {"type": "Point", "coordinates": [2.337526625367893, 48.76991509860442]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ca057900e60ae0bcc4a28e0d39db8f79eb18da0f", "fields": {"departement": "93", "stop_lat": 48.91778716452653, "code_postal": "93029", "stop_lon": 2.4678894275681253, "coord": [48.91778716452653, 2.4678894275681253], "stop_id": 3731670, "stop_desc": "44-46 RUE DE L'ARGONNE - 93029", "stop_name": "ARGONNE - BOIS DE GROSLAY"}, "geometry": {"type": "Point", "coordinates": [2.4678894275681253, 48.91778716452653]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "73c79efd9e55393c44b14a54a6fdefd3b4780420", "fields": {"departement": "93", "stop_lat": 48.91966494533887, "code_postal": "93029", "stop_lon": 2.4508210158428168, "coord": [48.91966494533887, 2.4508210158428168], "stop_id": 3731661, "stop_desc": "141 AVENUE HENRI BARBUSSE - 93029", "stop_name": "PLACE DU 19 MARS 1962"}, "geometry": {"type": "Point", "coordinates": [2.4508210158428168, 48.91966494533887]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2e64392e4eb43b9ebd0c40ce6722c9c807ec556d", "fields": {"departement": "93", "stop_lat": 48.90870213196723, "code_postal": "93008", "stop_lon": 2.4283012006647344, "coord": [48.90870213196723, 2.4283012006647344], "stop_id": 3731646, "stop_desc": "AVENUE HENRI BARBUSSE - 93008", "stop_name": "LYCEE ALFRED COSTES"}, "geometry": {"type": "Point", "coordinates": [2.4283012006647344, 48.90870213196723]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4aaf42692aea7f4a5f24b23efff109a5723aacd7", "fields": {"departement": "92", "stop_lat": 48.8987676280021, "code_postal": "92024", "stop_lon": 2.312418665985478, "coord": [48.8987676280021, 2.312418665985478], "stop_id": 4016301, "stop_desc": "53 BOULEVARD VICTOR HUGO - 92024", "stop_name": "CURTON"}, "geometry": {"type": "Point", "coordinates": [2.312418665985478, 48.8987676280021]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e7160643ffca34a7df0b8b9f6e910e0cd8b2eb9b", "fields": {"departement": "92", "stop_lat": 48.9033333644882, "code_postal": "92024", "stop_lon": 2.3138342457048426, "coord": [48.9033333644882, 2.3138342457048426], "stop_id": 4016304, "stop_desc": "8 PLACE DE LA REPUBLIQUE - 92024", "stop_name": "REPUBLIQUE - FRANCOIS MITTERRAND"}, "geometry": {"type": "Point", "coordinates": [2.3138342457048426, 48.9033333644882]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d448097ac41fbf807f45316e104f7f3eb2925813", "fields": {"departement": "75", "stop_lat": 48.871332126753245, "code_postal": "75109", "stop_lon": 2.3325544120051322, "coord": [48.871332126753245, 2.3325544120051322], "stop_id": 4016336, "stop_desc": "8 RUE HALEVY - 75109", "stop_name": "OPERA"}, "geometry": {"type": "Point", "coordinates": [2.3325544120051322, 48.871332126753245]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b0db8ebbb1168cc254800a6aeac82c659267fe5b", "fields": {"departement": "75", "stop_lat": 48.885324939226564, "code_postal": "75118", "stop_lon": 2.3267205100468256, "coord": [48.885324939226564, 2.3267205100468256], "stop_id": 4016342, "stop_desc": "26-28 AVENUE DE CLICHY - 75118", "stop_name": "GANNERON"}, "geometry": {"type": "Point", "coordinates": [2.3267205100468256, 48.885324939226564]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aac15f2a302e63c028dd3f195c5af4e2c45a0f77", "fields": {"departement": "75", "stop_lat": 48.899201319908904, "code_postal": "75117", "stop_lon": 2.3291304291903123, "coord": [48.899201319908904, 2.3291304291903123], "stop_id": 4016349, "stop_desc": "AVENUE DE LA PORTE DE SAINT OUEN - 75117", "stop_name": "PORTE DE SAINT-OUEN"}, "geometry": {"type": "Point", "coordinates": [2.3291304291903123, 48.899201319908904]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "808f06c135a9e6f1077ae06cbd732b03ceb2ed82", "fields": {"departement": "75", "stop_lat": 48.88784124680933, "code_postal": "75117", "stop_lon": 2.3255207074215902, "coord": [48.88784124680933, 2.3255207074215902], "stop_id": 4016354, "stop_desc": "3 AVENUE DE SAINT OUEN - 75117", "stop_name": "LA FOURCHE"}, "geometry": {"type": "Point", "coordinates": [2.3255207074215902, 48.88784124680933]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3e1bd0f06d42af2917aa575fc1130b29eacd7de9", "fields": {"departement": "75", "stop_lat": 48.88006741726368, "code_postal": "75108", "stop_lon": 2.3268850934745684, "coord": [48.88006741726368, 2.3268850934745684], "stop_id": 4016357, "stop_desc": "57 RUE D'AMSTERDAM - 75108", "stop_name": "LIEGE"}, "geometry": {"type": "Point", "coordinates": [2.3268850934745684, 48.88006741726368]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0368ee78ec10cdc4cce8a959bfeb6c86b5f7ed94", "fields": {"departement": "75", "stop_lat": 48.87730831551477, "code_postal": "75108", "stop_lon": 2.326776640951808, "coord": [48.87730831551477, 2.326776640951808], "stop_id": 4016358, "stop_desc": "17 BIS RUE D'AMSTERDAM - 75108", "stop_name": "GARE SAINT-LAZARE - BUDAPEST"}, "geometry": {"type": "Point", "coordinates": [2.326776640951808, 48.87730831551477]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "82ac97c681df63b26087246bbebc01348e599779", "fields": {"departement": "75", "stop_lat": 48.86377382871805, "code_postal": "75101", "stop_lon": 2.334720992443335, "coord": [48.86377382871805, 2.334720992443335], "stop_id": 4016362, "stop_desc": "1 PLACE ANDRE MALRAUX - 75101", "stop_name": "PALAIS ROYAL - COMEDIE FRANCAISE"}, "geometry": {"type": "Point", "coordinates": [2.334720992443335, 48.86377382871805]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7fee8b9e9276baa410b5073cbce01ade75953bec", "fields": {"departement": "75", "stop_lat": 48.898033270205325, "code_postal": "75118", "stop_lon": 2.336968431666844, "coord": [48.898033270205325, 2.336968431666844], "stop_id": 4016541, "stop_desc": "1 AVENUE DE LA PORTE DE MONTMARTRE - 75118", "stop_name": "PORTE DE MONTMARTRE - BOULEVARD NEY"}, "geometry": {"type": "Point", "coordinates": [2.336968431666844, 48.898033270205325]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b35b9f7f0cdfdcc2f412762bdec2f4b39b388549", "fields": {"departement": "75", "stop_lat": 48.90073837978418, "code_postal": "75118", "stop_lon": 2.3354689295827047, "coord": [48.90073837978418, 2.3354689295827047], "stop_id": 4016542, "stop_desc": "AVENUE DE LA PORTE DE MONTMARTRE - 75118", "stop_name": "GERARD DE NERVAL"}, "geometry": {"type": "Point", "coordinates": [2.3354689295827047, 48.90073837978418]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f924487889ef67c98a059c1677e306450dddeadd", "fields": {"departement": "93", "stop_lat": 48.91492881365628, "code_postal": "93070", "stop_lon": 2.331473257971161, "coord": [48.91492881365628, 2.331473257971161], "stop_id": 4016553, "stop_desc": "FACE 49-51 RUE ALBERT DHALENNE - 93070", "stop_name": "SOUBISE"}, "geometry": {"type": "Point", "coordinates": [2.331473257971161, 48.91492881365628]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "797811f3af195cc4cec1198d8470df4612e18888", "fields": {"departement": "92", "stop_lat": 48.92181227159626, "code_postal": "92036", "stop_lon": 2.3242720228007543, "coord": [48.92181227159626, 2.3242720228007543], "stop_id": 4016558, "stop_desc": "FACE 13 AVENUE LOUIS ROCHE - 92036", "stop_name": "QUAI DES GRESILLONS"}, "geometry": {"type": "Point", "coordinates": [2.3242720228007543, 48.92181227159626]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "593597d8504745def04968328a024f404c07e3b5", "fields": {"departement": "92", "stop_lat": 48.940550222948914, "code_postal": "92078", "stop_lon": 2.3274595955870363, "coord": [48.940550222948914, 2.3274595955870363], "stop_id": 4016577, "stop_desc": "1 AVENUE GEORGES POMPIDOU - 92078", "stop_name": "PLACE PAUL HERBE"}, "geometry": {"type": "Point", "coordinates": [2.3274595955870363, 48.940550222948914]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c60008315194d90b67a7cf31bef3a5d6e97657ee", "fields": {"departement": "92", "stop_lat": 48.941583094215005, "code_postal": "92078", "stop_lon": 2.3217022839640276, "coord": [48.941583094215005, 2.3217022839640276], "stop_id": 4016581, "stop_desc": "BOULEVARD CHARLES DE GAULLE - 92078", "stop_name": "PARC DEPARTEMENTAL"}, "geometry": {"type": "Point", "coordinates": [2.3217022839640276, 48.941583094215005]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8bf4c6783655b0649ea370900c695fd3dc4094cd", "fields": {"departement": "93", "stop_lat": 48.9026879371554, "code_postal": "93070", "stop_lon": 2.349769055694266, "coord": [48.9026879371554, 2.349769055694266], "stop_id": 4016587, "stop_desc": "FACE 14 RUE DEBAIN - 93070", "stop_name": "DEBAIN"}, "geometry": {"type": "Point", "coordinates": [2.349769055694266, 48.9026879371554]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "052a72663a0e0328e39b4fdc2d2092115dccd055", "fields": {"departement": "93", "stop_lat": 48.9026879371554, "code_postal": "93070", "stop_lon": 2.349769055694266, "coord": [48.9026879371554, 2.349769055694266], "stop_id": 4016588, "stop_desc": "FACE 14 RUE DEBAIN - 93070", "stop_name": "DEBAIN"}, "geometry": {"type": "Point", "coordinates": [2.349769055694266, 48.9026879371554]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "671de38ac170fb5f4ac9f42449d9ce6563a38b32", "fields": {"departement": "93", "stop_lat": 48.908727886749155, "code_postal": "93070", "stop_lon": 2.3393951898889647, "coord": [48.908727886749155, 2.3393951898889647], "stop_id": 4016594, "stop_desc": "60-62 RUE DU DOCTEUR BAUER - 93070", "stop_name": "GODILLOT"}, "geometry": {"type": "Point", "coordinates": [2.3393951898889647, 48.908727886749155]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "79e0a3a65d4cfb1c2002c6e37b1ae42514fb7b40", "fields": {"departement": "93", "stop_lat": 48.91648367925108, "code_postal": "93070", "stop_lon": 2.334813866531514, "coord": [48.91648367925108, 2.334813866531514], "stop_id": 4016599, "stop_desc": "21 RUE DU LANDY - 93070", "stop_name": "CLINIQUE DU LANDY"}, "geometry": {"type": "Point", "coordinates": [2.334813866531514, 48.91648367925108]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "51694ab611c7145ba2bac71e5fef68a28910279a", "fields": {"departement": "93", "stop_lat": 48.902184835311324, "code_postal": "93070", "stop_lon": 2.326539865815577, "coord": [48.902184835311324, 2.326539865815577], "stop_id": 4016614, "stop_desc": "PLACE PAYRET - 93070", "stop_name": "PAYRET"}, "geometry": {"type": "Point", "coordinates": [2.326539865815577, 48.902184835311324]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5ab7a5c3f74d6b912b1cfbd4c127c929880ca059", "fields": {"departement": "75", "stop_lat": 48.898247184525296, "code_postal": "75118", "stop_lon": 2.357837562899376, "coord": [48.898247184525296, 2.357837562899376], "stop_id": 4016688, "stop_desc": "BOULEVARD NEY - 75118", "stop_name": "PORTE DE LA CHAPELLE"}, "geometry": {"type": "Point", "coordinates": [2.357837562899376, 48.898247184525296]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d120983bdeaea4a9783c03885fb2d0de60511d2e", "fields": {"departement": "75", "stop_lat": 48.89815807207283, "code_postal": "75118", "stop_lon": 2.3528349419067323, "coord": [48.89815807207283, 2.3528349419067323], "stop_id": 4016690, "stop_desc": "FACE 78 BOULEVARD NEY - 75118", "stop_name": "PORTE DES POISSONNIERS"}, "geometry": {"type": "Point", "coordinates": [2.3528349419067323, 48.89815807207283]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "97ccc4107b7f29c472dbc43d52d7e10399537e3a", "fields": {"departement": "75", "stop_lat": 48.89785327113471, "code_postal": "75118", "stop_lon": 2.3450788436751133, "coord": [48.89785327113471, 2.3450788436751133], "stop_id": 4016692, "stop_desc": "BOULEVARD NEY - 75118", "stop_name": "PORTE DE CLIGNANCOURT"}, "geometry": {"type": "Point", "coordinates": [2.3450788436751133, 48.89785327113471]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "67e42bbb54052c0d6b0e0da495cb177531252728", "fields": {"departement": "93", "stop_lat": 48.90835041579792, "code_postal": "93070", "stop_lon": 2.3401041269252816, "coord": [48.90835041579792, 2.3401041269252816], "stop_id": 4016697, "stop_desc": "85 RUE DU DOCTEUR BAUER - 93070", "stop_name": "GODILLOT"}, "geometry": {"type": "Point", "coordinates": [2.3401041269252816, 48.90835041579792]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b569ecc24359b87151104f51eff85df489da285a", "fields": {"departement": "93", "stop_lat": 48.91310456029728, "code_postal": "93070", "stop_lon": 2.334554961521502, "coord": [48.91310456029728, 2.334554961521502], "stop_id": 4016701, "stop_desc": "81-83 RUE ALBERT DHALENNE - 93070", "stop_name": "JEAN JAURES - MAIRIE"}, "geometry": {"type": "Point", "coordinates": [2.334554961521502, 48.91310456029728]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2fb1e218b49ee8f746d79d4f1a5e097f764d7445", "fields": {"departement": "93", "stop_lat": 48.91202613462916, "code_postal": "93070", "stop_lon": 2.335441271374089, "coord": [48.91202613462916, 2.335441271374089], "stop_id": 4016702, "stop_desc": "2 RUE DU DOCTEUR BAUER - 93070", "stop_name": "JEAN JAURES - MAIRIE"}, "geometry": {"type": "Point", "coordinates": [2.335441271374089, 48.91202613462916]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "148a5d62946aaf7f5ca99614e1af54585596265d", "fields": {"departement": "93", "stop_lat": 48.917813643280915, "code_postal": "93070", "stop_lon": 2.3315820256086908, "coord": [48.917813643280915, 2.3315820256086908], "stop_id": 4016705, "stop_desc": "FACE 2 R DU LANDY - 93070", "stop_name": "QUAI DE SEINE"}, "geometry": {"type": "Point", "coordinates": [2.3315820256086908, 48.917813643280915]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b8081f281dfe4dc00c7c97d7569f739a532fdad3", "fields": {"departement": "93", "stop_lat": 48.919880351718966, "code_postal": "93039", "stop_lon": 2.3271225855302653, "coord": [48.919880351718966, 2.3271225855302653], "stop_id": 4016707, "stop_desc": "14 BOULEVARD MARCE PAUL - 93039", "stop_name": "BOULEVARD MARCEL PAUL"}, "geometry": {"type": "Point", "coordinates": [2.3271225855302653, 48.919880351718966]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c01ce79c2fe60180021595f32ca63276e53423f2", "fields": {"departement": "92", "stop_lat": 48.92160556873136, "code_postal": "92036", "stop_lon": 2.324244800219602, "coord": [48.92160556873136, 2.324244800219602], "stop_id": 4016710, "stop_desc": "FACE 13 AVENUE LOUIS ROCHE - 92036", "stop_name": "QUAI DES GRESILLONS"}, "geometry": {"type": "Point", "coordinates": [2.324244800219602, 48.92160556873136]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ea68a61004527ac8fefa3f26c6aa3d65f9c9e58d", "fields": {"departement": "92", "stop_lat": 48.92556784456361, "code_postal": "92036", "stop_lon": 2.3172746658295837, "coord": [48.92556784456361, 2.3172746658295837], "stop_id": 4016713, "stop_desc": "FACE 115 AVENUE LOUIS ROCHE - 92036", "stop_name": "RUE DES NOELS"}, "geometry": {"type": "Point", "coordinates": [2.3172746658295837, 48.92556784456361]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "556bf932ccbb027a24445216d724ac3efc7c4a3f", "fields": {"departement": "92", "stop_lat": 48.927157977997645, "code_postal": "92036", "stop_lon": 2.314218993454647, "coord": [48.927157977997645, 2.314218993454647], "stop_id": 4016715, "stop_desc": "116 AVENUE LOUIS ROCHE - 92036", "stop_name": "AVENUE LOUIS ROCHE N0 115-116"}, "geometry": {"type": "Point", "coordinates": [2.314218993454647, 48.927157977997645]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3100ed97cb53f93ab73be9e61df7ca10c4c615b0", "fields": {"departement": "92", "stop_lat": 48.927112979782336, "code_postal": "92036", "stop_lon": 2.313891686006134, "coord": [48.927112979782336, 2.313891686006134], "stop_id": 4016716, "stop_desc": "125 AVENUE LOUIS ROCHE - 92036", "stop_name": "AVENUE LOUIS ROCHE N0 115-116"}, "geometry": {"type": "Point", "coordinates": [2.313891686006134, 48.927112979782336]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b9e144a1adabae9af5d5651be62a665861221359", "fields": {"departement": "92", "stop_lat": 48.936070392573825, "code_postal": "92036", "stop_lon": 2.303438635747753, "coord": [48.936070392573825, 2.303438635747753], "stop_id": 4016728, "stop_desc": "AVENUE MARCEL PAUL - 92036", "stop_name": "LES BARBANNIERS"}, "geometry": {"type": "Point", "coordinates": [2.303438635747753, 48.936070392573825]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3bd329c1d3cb1a9ce737157eefaf186e51098106", "fields": {"departement": "92", "stop_lat": 48.89160141473085, "code_postal": "92062", "stop_lon": 2.2372019748450263, "coord": [48.89160141473085, 2.2372019748450263], "stop_id": 4016737, "stop_desc": "PISTE GARE ROUTIERE - 92062", "stop_name": "LA DEFENSE-METRO-RER-TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.2372019748450263, 48.89160141473085]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "39c12a2a1b0aeb946b3bc66691a2a8b91c165c91", "fields": {"departement": "92", "stop_lat": 48.8859847711673, "code_postal": "92051", "stop_lon": 2.2621517454852405, "coord": [48.8859847711673, 2.2621517454852405], "stop_id": 4016745, "stop_desc": "209 AVENUE ACHILLE PERETTI OU DU ROULE - 92051", "stop_name": "GENERAL GOURAUD"}, "geometry": {"type": "Point", "coordinates": [2.2621517454852405, 48.8859847711673]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a8b378f5555ffae810ba6def7323d5c9b0b6c28c", "fields": {"departement": "77", "stop_lat": 48.849963254010994, "code_postal": "77468", "stop_lon": 2.6464466804422355, "coord": [48.849963254010994, 2.6464466804422355], "stop_id": 4208576, "stop_desc": "71 TER RUE DE PARIS - 77468", "stop_name": "LES TILLEULS"}, "geometry": {"type": "Point", "coordinates": [2.6464466804422355, 48.849963254010994]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a19d89e2a7b798e1687b9406cd15e54915efb862", "fields": {"departement": "77", "stop_lat": 48.850712449056154, "code_postal": "77468", "stop_lon": 2.6520756538555257, "coord": [48.850712449056154, 2.6520756538555257], "stop_id": 4208578, "stop_desc": "FACE 50 RUE DE PARIS - 77468", "stop_name": "MAIRIE DE TORCY"}, "geometry": {"type": "Point", "coordinates": [2.6520756538555257, 48.850712449056154]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2ca09ff09938a2a3f8944bad853e7f5564ff3650", "fields": {"departement": "77", "stop_lat": 48.851801971229484, "code_postal": "77468", "stop_lon": 2.65469710541561, "coord": [48.851801971229484, 2.65469710541561], "stop_id": 4208581, "stop_desc": "FACE 6 RUE DU COUVENT - 77468", "stop_name": "FERME DU COUVENT"}, "geometry": {"type": "Point", "coordinates": [2.65469710541561, 48.851801971229484]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "10085504eb0d464a477f1ae56c2eb2ab4c24f593", "fields": {"departement": "77", "stop_lat": 48.84526195661666, "code_postal": "77468", "stop_lon": 2.653594940647414, "coord": [48.84526195661666, 2.653594940647414], "stop_id": 4208591, "stop_desc": "FACE 28 AVENUE DE LINGENFELD - 77468", "stop_name": "RIVES DE MAUBUEE"}, "geometry": {"type": "Point", "coordinates": [2.653594940647414, 48.84526195661666]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9ca52f204761f63ad7d08a3339afe7dd76c346a0", "fields": {"departement": "77", "stop_lat": 48.839094475647336, "code_postal": "77468", "stop_lon": 2.6576964831372134, "coord": [48.839094475647336, 2.6576964831372134], "stop_id": 4208595, "stop_desc": "AVENUE JEAN MOULIN - 77468", "stop_name": "CITES UNIES"}, "geometry": {"type": "Point", "coordinates": [2.6576964831372134, 48.839094475647336]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a3647f3dd78df1b5f19c2b564b4e71791e129736", "fields": {"departement": "92", "stop_lat": 48.89584909177021, "code_postal": "92050", "stop_lon": 2.2235497155722275, "coord": [48.89584909177021, 2.2235497155722275], "stop_id": 4208607, "stop_desc": "0 BOULEVARD DE PESARO - 92050", "stop_name": "NANTERRE-PREFECTURE RER"}, "geometry": {"type": "Point", "coordinates": [2.2235497155722275, 48.89584909177021]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ac9426b42f44e7dc143d6237ab21f9f9ac893c13", "fields": {"departement": "92", "stop_lat": 48.89333561499962, "code_postal": "92050", "stop_lon": 2.2266628172208325, "coord": [48.89333561499962, 2.2266628172208325], "stop_id": 4208610, "stop_desc": "BD DE PESARO - 92050", "stop_name": "PESARO"}, "geometry": {"type": "Point", "coordinates": [2.2266628172208325, 48.89333561499962]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c80674cdb58125091512eec747dcc680e529ba3a", "fields": {"departement": "92", "stop_lat": 48.88591944348874, "code_postal": "92050", "stop_lon": 2.2248116290816093, "coord": [48.88591944348874, 2.2248116290816093], "stop_id": 4208615, "stop_desc": "R DE WATFORD - 92050", "stop_name": "WATFORD"}, "geometry": {"type": "Point", "coordinates": [2.2248116290816093, 48.88591944348874]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "26093d286bbca22ae91db59c3c1905e659c6506c", "fields": {"departement": "92", "stop_lat": 48.88652679272833, "code_postal": "92050", "stop_lon": 2.2208718257627393, "coord": [48.88652679272833, 2.2208718257627393], "stop_id": 4208618, "stop_desc": "R DE CRAIOVA - 92050", "stop_name": "CRAIOVA"}, "geometry": {"type": "Point", "coordinates": [2.2208718257627393, 48.88652679272833]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "924ba947815fc1fc8e94663f2154774ccb91df2e", "fields": {"departement": "92", "stop_lat": 48.88186447998276, "code_postal": "92050", "stop_lon": 2.213987155533238, "coord": [48.88186447998276, 2.213987155533238], "stop_id": 4208622, "stop_desc": "7 R PAUL BERTIN - 92050", "stop_name": "PAUL BERTIN"}, "geometry": {"type": "Point", "coordinates": [2.213987155533238, 48.88186447998276]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8870fbe0783bb80eeee535dfda158bdde24a590d", "fields": {"departement": "92", "stop_lat": 48.88066535817667, "code_postal": "92050", "stop_lon": 2.210351747286266, "coord": [48.88066535817667, 2.210351747286266], "stop_id": 4208623, "stop_desc": "161 R DE LA SOURCE - 92050", "stop_name": "LUAPS"}, "geometry": {"type": "Point", "coordinates": [2.210351747286266, 48.88066535817667]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "928d6e077a0d5534672e72b5d527fa129cab175f", "fields": {"departement": "92", "stop_lat": 48.88495723387458, "code_postal": "92050", "stop_lon": 2.206620913412666, "coord": [48.88495723387458, 2.206620913412666], "stop_id": 4208625, "stop_desc": "43 R DE LA SOURCE - 92050", "stop_name": "LIBERATION"}, "geometry": {"type": "Point", "coordinates": [2.206620913412666, 48.88495723387458]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dec89039a67750a13e74286b0be09211d632d284", "fields": {"departement": "92", "stop_lat": 48.88703095931309, "code_postal": "92050", "stop_lon": 2.2045169572232255, "coord": [48.88703095931309, 2.2045169572232255], "stop_id": 4208626, "stop_desc": "FACE 48 AVENUE GEORGES CLEMENCEAU - 92050", "stop_name": "LA SOURCE"}, "geometry": {"type": "Point", "coordinates": [2.2045169572232255, 48.88703095931309]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5a038432dc5bcc4aaab83b5137e70e7cba39cb1b", "fields": {"departement": "92", "stop_lat": 48.88653863826318, "code_postal": "92050", "stop_lon": 2.2063034841934472, "coord": [48.88653863826318, 2.2063034841934472], "stop_id": 4208627, "stop_desc": "68 AVENUE GEORGES CLEMENCEAU - 92050", "stop_name": "LA SOURCE"}, "geometry": {"type": "Point", "coordinates": [2.2063034841934472, 48.88653863826318]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "515366696570c3ee0d18871fabb05586e81b5d80", "fields": {"departement": "92", "stop_lat": 48.886856639445476, "code_postal": "92050", "stop_lon": 2.201355691235118, "coord": [48.886856639445476, 2.201355691235118], "stop_id": 4208629, "stop_desc": "10 AVENUE GEORGES CLEMENCEAU - 92050", "stop_name": "PLACE DE LA BOULE - CLEMENCEAU"}, "geometry": {"type": "Point", "coordinates": [2.201355691235118, 48.886856639445476]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6c60c1736b582d0c9bc538083afefa1393e219ec", "fields": {"departement": "92", "stop_lat": 48.88772674136297, "code_postal": "92050", "stop_lon": 2.1999088101019866, "coord": [48.88772674136297, 2.1999088101019866], "stop_id": 4208630, "stop_desc": "19 R GAMBETTA - 92050", "stop_name": "GAMBETTA"}, "geometry": {"type": "Point", "coordinates": [2.1999088101019866, 48.88772674136297]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "11e179e3fb18b68340534b51676d2da17619f28e", "fields": {"departement": "92", "stop_lat": 48.88275839405862, "code_postal": "92050", "stop_lon": 2.209419987945448, "coord": [48.88275839405862, 2.209419987945448], "stop_id": 4208638, "stop_desc": "122 R PHILIPPE TRIAIRE - 92050", "stop_name": "DANIEL BECKER"}, "geometry": {"type": "Point", "coordinates": [2.209419987945448, 48.88275839405862]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b2cc15562c3cd8acc61ccd936cae97558bf47f11", "fields": {"departement": "92", "stop_lat": 48.8967246279869, "code_postal": "92050", "stop_lon": 2.2182182061917946, "coord": [48.8967246279869, 2.2182182061917946], "stop_id": 4208644, "stop_desc": "R PABLO NERUDA - 92050", "stop_name": "MARCEL PAUL"}, "geometry": {"type": "Point", "coordinates": [2.2182182061917946, 48.8967246279869]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9ae1b78142cf9c905c8d87ad0b86fbcd65c1c2ff", "fields": {"departement": "95", "stop_lat": 48.977101270880496, "code_postal": "95585", "stop_lon": 2.3785377911129393, "coord": [48.977101270880496, 2.3785377911129393], "stop_id": 4211740, "stop_desc": "FACE 2 BOULEVARD EDOUARD BRANLY - 95585", "stop_name": "LES FLANADES"}, "geometry": {"type": "Point", "coordinates": [2.3785377911129393, 48.977101270880496]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9a19394e6e9bf81cec2b8e5d3ca9cdaa3d7499c0", "fields": {"departement": "95", "stop_lat": 48.97312113432338, "code_postal": "95585", "stop_lon": 2.375831762602298, "coord": [48.97312113432338, 2.375831762602298], "stop_id": 4211742, "stop_desc": "1 BOULEVARD HENRI BERGSON - 95585", "stop_name": "RAOUL DUFY"}, "geometry": {"type": "Point", "coordinates": [2.375831762602298, 48.97312113432338]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b6238322aeb8e4ff19d337307c42b41822e97847", "fields": {"departement": "93", "stop_lat": 48.96832287285804, "code_postal": "93059", "stop_lon": 2.3740128011987673, "coord": [48.96832287285804, 2.3740128011987673], "stop_id": 4211745, "stop_desc": "63 RUE PARMENTIER - 93059", "stop_name": "JEAN GRIGNOUX"}, "geometry": {"type": "Point", "coordinates": [2.3740128011987673, 48.96832287285804]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "68fc5bf4e16683d472663aa8b2609682a8875cdc", "fields": {"departement": "93", "stop_lat": 48.963186040531, "code_postal": "93059", "stop_lon": 2.3598833163763553, "coord": [48.963186040531, 2.3598833163763553], "stop_id": 4211751, "stop_desc": "4 BOULEVARD JEAN MERMOZ - 93059", "stop_name": "MAIRIE DE PIERREFITTE"}, "geometry": {"type": "Point", "coordinates": [2.3598833163763553, 48.963186040531]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bbcb5e2cc5f46fde0eb7276b6b11eb38dc91f1db", "fields": {"departement": "93", "stop_lat": 48.94158992771719, "code_postal": "93066", "stop_lon": 2.3647442349572647, "coord": [48.94158992771719, 2.3647442349572647], "stop_id": 4211761, "stop_desc": "AVENUE JEAN MOULIN - 93066", "stop_name": "LYCEE PAUL ELUARD"}, "geometry": {"type": "Point", "coordinates": [2.3647442349572647, 48.94158992771719]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "233535dcddef92d5b87a7eef9d8ae209c9349ad2", "fields": {"departement": "93", "stop_lat": 48.938347562476395, "code_postal": "93066", "stop_lon": 2.3548114262058704, "coord": [48.938347562476395, 2.3548114262058704], "stop_id": 4211764, "stop_desc": "11 BOULEVARD CARNOT - 93066", "stop_name": "MARCHE DE SAINT-DENIS-TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.3548114262058704, 48.938347562476395]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a71a76cb70c02a253d7c2eb2098950b23bc56745", "fields": {"departement": "93", "stop_lat": 48.9300705763602, "code_postal": "93066", "stop_lon": 2.355408754687434, "coord": [48.9300705763602, 2.355408754687434], "stop_id": 4211770, "stop_desc": "3 BOULEVARD MARCEL SEMBAT - 93066", "stop_name": "PORTE DE PARIS"}, "geometry": {"type": "Point", "coordinates": [2.355408754687434, 48.9300705763602]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f0130bc87849bf0cbdbc14faccd18dc141ce8daa", "fields": {"departement": "93", "stop_lat": 48.92715926717714, "code_postal": "93066", "stop_lon": 2.35218901128409, "coord": [48.92715926717714, 2.35218901128409], "stop_id": 4211771, "stop_desc": "FACE 31 BOULEVARD ANATOLE FRANCE - 93066", "stop_name": "AMBROISE CROIZAT"}, "geometry": {"type": "Point", "coordinates": [2.35218901128409, 48.92715926717714]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c74168b990f5046f10d46a1bf9707af1cbf5c030", "fields": {"departement": "93", "stop_lat": 48.91995249583406, "code_postal": "93066", "stop_lon": 2.3438412371492428, "coord": [48.91995249583406, 2.3438412371492428], "stop_id": 4211773, "stop_desc": "161 BOULEVARD ANATOLE FRANCE - 93066", "stop_name": "CARREFOUR PLEYEL"}, "geometry": {"type": "Point", "coordinates": [2.3438412371492428, 48.91995249583406]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ba81579ab0f31b0669184517cf52f5ef651a1f14", "fields": {"departement": "93", "stop_lat": 48.90604965230394, "code_postal": "93070", "stop_lon": 2.3321286373363135, "coord": [48.90604965230394, 2.3321286373363135], "stop_id": 4211783, "stop_desc": "2 RUE CHARLES SCHMIDT - 93070", "stop_name": "GARIBALDI"}, "geometry": {"type": "Point", "coordinates": [2.3321286373363135, 48.90604965230394]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f88fdf3efef2ad83729e2af187ec91fdf5cf1b78", "fields": {"departement": "75", "stop_lat": 48.900720401174596, "code_postal": "75118", "stop_lon": 2.3351962962605697, "coord": [48.900720401174596, 2.3351962962605697], "stop_id": 4211787, "stop_desc": "AVENUE DE LA PORTE DE MONTMARTRE - 75118", "stop_name": "GERARD DE NERVAL"}, "geometry": {"type": "Point", "coordinates": [2.3351962962605697, 48.900720401174596]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8a42370019747a5aac93bbe8b79bbc3080b968bf", "fields": {"departement": "75", "stop_lat": 48.89772769764517, "code_postal": "75118", "stop_lon": 2.338835867995168, "coord": [48.89772769764517, 2.338835867995168], "stop_id": 4211791, "stop_desc": "73 BOULEVARD NEY - 75118", "stop_name": "CAMILLE FLAMMARION"}, "geometry": {"type": "Point", "coordinates": [2.338835867995168, 48.89772769764517]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eb8785689523788742d5d79009e6f08a6f425361", "fields": {"departement": "75", "stop_lat": 48.89726014402725, "code_postal": "75118", "stop_lon": 2.3447107228641832, "coord": [48.89726014402725, 2.3447107228641832], "stop_id": 4211793, "stop_desc": "75 BIS BOULEVARD ORNANO - 75118", "stop_name": "PORTE DE CLIGNANCOURT"}, "geometry": {"type": "Point", "coordinates": [2.3447107228641832, 48.89726014402725]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "40ca8ab5dea0e2b3b1115bfd30d9a21a4c3d9afb", "fields": {"departement": "75", "stop_lat": 48.897062389876794, "code_postal": "75118", "stop_lon": 2.3452831852737237, "coord": [48.897062389876794, 2.3452831852737237], "stop_id": 4211794, "stop_desc": "80 BOULEVARD ORNANO - 75118", "stop_name": "PORTE DE CLIGNANCOURT"}, "geometry": {"type": "Point", "coordinates": [2.3452831852737237, 48.897062389876794]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fc13c5170d90837aee5b14c478ff8bc7a6e9c48a", "fields": {"departement": "75", "stop_lat": 48.87567135548821, "code_postal": "75110", "stop_lon": 2.357583347393136, "coord": [48.87567135548821, 2.357583347393136], "stop_id": 4211806, "stop_desc": "81 BOULEVARD DE STRASBOURG - 75110", "stop_name": "GARE DE L'EST"}, "geometry": {"type": "Point", "coordinates": [2.357583347393136, 48.87567135548821]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2b4f375b3a85f2c10629c0dea2ef080a7490f838", "fields": {"departement": "93", "stop_lat": 48.94284063307305, "code_postal": "93066", "stop_lon": 2.3569548674395238, "coord": [48.94284063307305, 2.3569548674395238], "stop_id": 4211815, "stop_desc": "FACE 143 RUE GABRIEL PERI - 93066", "stop_name": "BAUDELAIRE"}, "geometry": {"type": "Point", "coordinates": [2.3569548674395238, 48.94284063307305]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e8e5d3e6a90e54237901a7264a98971293b5041c", "fields": {"departement": "93", "stop_lat": 48.96453277877218, "code_postal": "93059", "stop_lon": 2.3657527627930537, "coord": [48.96453277877218, 2.3657527627930537], "stop_id": 4211818, "stop_desc": "46 BOULEVARD PASTEUR - 93059", "stop_name": "ETIENNE DOLET - PASTEUR"}, "geometry": {"type": "Point", "coordinates": [2.3657527627930537, 48.96453277877218]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4d94ef607657a5364a007e501e9cde7de9ebf1ae", "fields": {"departement": "95", "stop_lat": 48.993999103969465, "code_postal": "95539", "stop_lon": 2.3676399091248728, "coord": [48.993999103969465, 2.3676399091248728], "stop_id": 4226297, "stop_desc": "FACE 8 RUE DU CHAMP GALLOIS - 95539", "stop_name": "GARE DE SARCELLES-SAINT-BRICE"}, "geometry": {"type": "Point", "coordinates": [2.3676399091248728, 48.993999103969465]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "08b31d41a590cee5858381c80b4a8ea8dd1b668c", "fields": {"departement": "95", "stop_lat": 48.99135658939076, "code_postal": "95585", "stop_lon": 2.3695774497414885, "coord": [48.99135658939076, 2.3695774497414885], "stop_id": 4226298, "stop_desc": "FACE 34 RUE THEODORE BULLIER - 95585", "stop_name": "PETITS CLOS"}, "geometry": {"type": "Point", "coordinates": [2.3695774497414885, 48.99135658939076]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a25a145d6f11dbc1fc2cb23431ca92061f8a200f", "fields": {"departement": "95", "stop_lat": 48.98468557344964, "code_postal": "95585", "stop_lon": 2.3998984264022254, "coord": [48.98468557344964, 2.3998984264022254], "stop_id": 4226309, "stop_desc": "FACE 10 RUE EMILE ZOLA - 95585", "stop_name": "MONT DE GIF"}, "geometry": {"type": "Point", "coordinates": [2.3998984264022254, 48.98468557344964]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e217f89359ed89a0e5c9dc4264f376e11ccd8772", "fields": {"departement": "95", "stop_lat": 48.991505062447004, "code_postal": "95019", "stop_lon": 2.417030843258087, "coord": [48.991505062447004, 2.417030843258087], "stop_id": 4226317, "stop_desc": "FACE 127 AVENUE HENRI BARBUSSE - 95019", "stop_name": "LE STADE"}, "geometry": {"type": "Point", "coordinates": [2.417030843258087, 48.991505062447004]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "da1c31aed19c500941dd70f35e604c59be379f7a", "fields": {"departement": "95", "stop_lat": 48.99190060143691, "code_postal": "95019", "stop_lon": 2.4168266173162563, "coord": [48.99190060143691, 2.4168266173162563], "stop_id": 4226318, "stop_desc": "FACE-53 AVENUE JEAN JAURES - 95019", "stop_name": "LE STADE"}, "geometry": {"type": "Point", "coordinates": [2.4168266173162563, 48.99190060143691]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4855d9d32d3f972954002a3b8e57b1c29d3e1d2b", "fields": {"departement": "95", "stop_lat": 48.99365254015701, "code_postal": "95019", "stop_lon": 2.4174438414692254, "coord": [48.99365254015701, 2.4174438414692254], "stop_id": 4226319, "stop_desc": "33 RUE JEAN JAURES - 95019", "stop_name": "JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.4174438414692254, 48.99365254015701]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "17cc42a326e9e43bd2d75079d9d41e282b2df828", "fields": {"departement": "95", "stop_lat": 48.99577150205535, "code_postal": "95019", "stop_lon": 2.420123851095426, "coord": [48.99577150205535, 2.420123851095426], "stop_id": 4226321, "stop_desc": "3 RUE JEAN JAURES - 95019", "stop_name": "LES MARRONNIERS"}, "geometry": {"type": "Point", "coordinates": [2.420123851095426, 48.99577150205535]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2d6bb7d170e54fb487c7434c8496d6bceb2e7e70", "fields": {"departement": "95", "stop_lat": 48.99428236179967, "code_postal": "95019", "stop_lon": 2.4162840271281096, "coord": [48.99428236179967, 2.4162840271281096], "stop_id": 4226324, "stop_desc": "FACE 17 RUE JEAN LAUGERE - 95019", "stop_name": "VILLIERS LE BEL - GONESSE - ARNOUVILLE RER"}, "geometry": {"type": "Point", "coordinates": [2.4162840271281096, 48.99428236179967]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7a6da2c8cb6d60de354dcb95123b7b1fe0610105", "fields": {"departement": "95", "stop_lat": 48.97982763493602, "code_postal": "95585", "stop_lon": 2.3922744246408945, "coord": [48.97982763493602, 2.3922744246408945], "stop_id": 4226771, "stop_desc": "3 AVENUE DU MARECHAL PIERRE KOENIG - 95585", "stop_name": "ECOLE JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.3922744246408945, 48.97982763493602]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "218df7021fbe15d2e9b44271742688983db43d4c", "fields": {"departement": "95", "stop_lat": 49.01544344758993, "code_postal": "95205", "stop_lon": 2.385822902328346, "coord": [49.01544344758993, 2.385822902328346], "stop_id": 4226788, "stop_desc": "6 RUE DE PARIS - 95205", "stop_name": "RUE DE PARIS"}, "geometry": {"type": "Point", "coordinates": [2.385822902328346, 49.01544344758993]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4bd4721195a894d57668a215e8cfcb61ed39b8c3", "fields": {"departement": "95", "stop_lat": 49.01789806320088, "code_postal": "95205", "stop_lon": 2.3823139211042137, "coord": [49.01789806320088, 2.3823139211042137], "stop_id": 4226791, "stop_desc": "FACE 10 RUE DE PARIS - 95205", "stop_name": "GENERAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.3823139211042137, 49.01789806320088]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "72b1b86244cbcbdbec0fb0248cff87796bff38eb", "fields": {"departement": "95", "stop_lat": 49.021241935470606, "code_postal": "95205", "stop_lon": 2.379570476374338, "coord": [49.021241935470606, 2.379570476374338], "stop_id": 4226792, "stop_desc": "4 RUE DE LA REPUBLIQUE - 95205", "stop_name": "ROUTE D'EZANVILLE"}, "geometry": {"type": "Point", "coordinates": [2.379570476374338, 49.021241935470606]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "45c6257ada8ff188079698373a25189a0014eb5d", "fields": {"departement": "95", "stop_lat": 49.0229153394151, "code_postal": "95205", "stop_lon": 2.373573384530407, "coord": [49.0229153394151, 2.373573384530407], "stop_id": 4226793, "stop_desc": "FACE 27 RUE DE LA LIBERATION - 95205", "stop_name": "RUE DE LA LIBERATION N0 20"}, "geometry": {"type": "Point", "coordinates": [2.373573384530407, 49.0229153394151]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0b10bcb67167352f624f9bdde8d1ce0f4ec068c7", "fields": {"departement": "95", "stop_lat": 49.04958253545502, "code_postal": "95409", "stop_lon": 2.3355868243293996, "coord": [49.04958253545502, 2.3355868243293996], "stop_id": 4226813, "stop_desc": "RUE DE PARIS - 95409", "stop_name": "EGLISE DE MOISSELLES"}, "geometry": {"type": "Point", "coordinates": [2.3355868243293996, 49.04958253545502]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "957d6732a349babe3e1dcf495f2531c9599a068e", "fields": {"departement": "95", "stop_lat": 49.058649071321184, "code_postal": "95028", "stop_lon": 2.3455270734207807, "coord": [49.058649071321184, 2.3455270734207807], "stop_id": 4226816, "stop_desc": "RUE DU GOULOT - 95028", "stop_name": "HOTEL DE VILLE D'ATTAINVILLE"}, "geometry": {"type": "Point", "coordinates": [2.3455270734207807, 49.058649071321184]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4cdea7813f1238c8a79f0d82dec6f7ecc9ff1a23", "fields": {"departement": "95", "stop_lat": 49.058649071321184, "code_postal": "95028", "stop_lon": 2.3455270734207807, "coord": [49.058649071321184, 2.3455270734207807], "stop_id": 4226817, "stop_desc": "RUE DU GOULOT - 95028", "stop_name": "HOTEL DE VILLE D'ATTAINVILLE"}, "geometry": {"type": "Point", "coordinates": [2.3455270734207807, 49.058649071321184]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "07e999016dcb282104dfa7048b0abc4c2e76f923", "fields": {"departement": "95", "stop_lat": 48.979953521450625, "code_postal": "95585", "stop_lon": 2.3921107275981934, "coord": [48.979953521450625, 2.3921107275981934], "stop_id": 4226824, "stop_desc": "FACE 5 AVENUE DU MARECHAL PIERRE KOENIG - 95585", "stop_name": "ECOLE JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.3921107275981934, 48.979953521450625]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "617d7e48bfbf824751d7552957626529249f508e", "fields": {"departement": "95", "stop_lat": 48.9882130963267, "code_postal": "95585", "stop_lon": 2.389893761468781, "coord": [48.9882130963267, 2.389893761468781], "stop_id": 4226826, "stop_desc": "RUE EMILE ZOLA - 95585", "stop_name": "LES PERREUX"}, "geometry": {"type": "Point", "coordinates": [2.389893761468781, 48.9882130963267]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3d86681e9773bed83d79eb9d8d79ca097a1f320a", "fields": {"departement": "95", "stop_lat": 49.021241935470606, "code_postal": "95205", "stop_lon": 2.379570476374338, "coord": [49.021241935470606, 2.379570476374338], "stop_id": 4226835, "stop_desc": "4 RUE DE LA REPUBLIQUE - 95205", "stop_name": "ROUTE D'EZANVILLE"}, "geometry": {"type": "Point", "coordinates": [2.379570476374338, 49.021241935470606]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "16c9621c9d7c422efe7aac29a271608c95cfa332", "fields": {"departement": "95", "stop_lat": 49.02608199928632, "code_postal": "95229", "stop_lon": 2.359063636271061, "coord": [49.02608199928632, 2.359063636271061], "stop_id": 4226839, "stop_desc": "2 AVENUE DE VERDUN - 95229", "stop_name": "PLACE DE LA LIBERATION"}, "geometry": {"type": "Point", "coordinates": [2.359063636271061, 49.02608199928632]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "efbdff95cfbac5ac7d6351d822973def4e0986d0", "fields": {"departement": "95", "stop_lat": 49.03167992518945, "code_postal": "95229", "stop_lon": 2.361334593978683, "coord": [49.03167992518945, 2.361334593978683], "stop_id": 4226841, "stop_desc": "FACE 31 PLACE JULES RODET - 95229", "stop_name": "HOTEL DE VILLE D'EZANVILLE"}, "geometry": {"type": "Point", "coordinates": [2.361334593978683, 49.03167992518945]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "33020287855f67ff0a5d4e91cdda56c6f6156920", "fields": {"departement": "95", "stop_lat": 49.03347851132343, "code_postal": "95229", "stop_lon": 2.353176404039196, "coord": [49.03347851132343, 2.353176404039196], "stop_id": 4226843, "stop_desc": "48 RUE DE DOMONT - 95229", "stop_name": "FLEMING"}, "geometry": {"type": "Point", "coordinates": [2.353176404039196, 49.03347851132343]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c97ca0c994fc0c9f46bd2c0dbdbbd9aa60e4a717", "fields": {"departement": "95", "stop_lat": 48.98924288195465, "code_postal": "95585", "stop_lon": 2.375953026331125, "coord": [48.98924288195465, 2.375953026331125], "stop_id": 4230051, "stop_desc": "BOULEVARD FRANCOIS MITTERRAND - 95585", "stop_name": "SOUS-PREFECTURE"}, "geometry": {"type": "Point", "coordinates": [2.375953026331125, 48.98924288195465]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "10a1b609cc3e8674ddbf2bb75490d93b0604fc80", "fields": {"departement": "95", "stop_lat": 48.982800720789655, "code_postal": "95585", "stop_lon": 2.372275462523562, "coord": [48.982800720789655, 2.372275462523562], "stop_id": 4230055, "stop_desc": "RUE RAYMOND ROCHON - 95585", "stop_name": "RAYMOND ROCHON"}, "geometry": {"type": "Point", "coordinates": [2.372275462523562, 48.982800720789655]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5530f9da19c86993e996d5ef3b90f7762a1e4ac1", "fields": {"departement": "95", "stop_lat": 48.982899624085164, "code_postal": "95585", "stop_lon": 2.3720980358985133, "coord": [48.982899624085164, 2.3720980358985133], "stop_id": 4230056, "stop_desc": "RUE RAYMOND ROCHON - 95585", "stop_name": "RAYMOND ROCHON"}, "geometry": {"type": "Point", "coordinates": [2.3720980358985133, 48.982899624085164]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "67259adba505f3c4f46bbc31f72c8ed3628642ab", "fields": {"departement": "95", "stop_lat": 48.97804717770801, "code_postal": "95585", "stop_lon": 2.3711664270695776, "coord": [48.97804717770801, 2.3711664270695776], "stop_id": 4230061, "stop_desc": "BOULEVARD ALBERT CAMUS - 95585", "stop_name": "LES CHOLETTES"}, "geometry": {"type": "Point", "coordinates": [2.3711664270695776, 48.97804717770801]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8225978e1a5b933fa9577c37a56d04a1b283b2cc", "fields": {"departement": "95", "stop_lat": 48.97653780922876, "code_postal": "95585", "stop_lon": 2.3698412254631553, "coord": [48.97653780922876, 2.3698412254631553], "stop_id": 4230063, "stop_desc": "5 BOULEVARD JACQUES COPEAU - 95585", "stop_name": "PLACE ANDRE GIDE"}, "geometry": {"type": "Point", "coordinates": [2.3698412254631553, 48.97653780922876]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ef17a2eebbe5e86f92443bb58a944dfc7f586e3b", "fields": {"departement": "95", "stop_lat": 48.972247553324124, "code_postal": "95585", "stop_lon": 2.381277677575912, "coord": [48.972247553324124, 2.381277677575912], "stop_id": 4230069, "stop_desc": "14 RUE RAOUL DUFY - 95585", "stop_name": "SUZANNE VALADON"}, "geometry": {"type": "Point", "coordinates": [2.381277677575912, 48.972247553324124]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "150e4a9b0b318c196ea59737567ca673ecd8f15e", "fields": {"departement": "95", "stop_lat": 48.97270572670691, "code_postal": "95585", "stop_lon": 2.3816602859595393, "coord": [48.97270572670691, 2.3816602859595393], "stop_id": 4230070, "stop_desc": "BOULEVARD MAURICE RAVEL - 95585", "stop_name": "SUZANNE VALADON"}, "geometry": {"type": "Point", "coordinates": [2.3816602859595393, 48.97270572670691]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f706d63324f0735fc494ccb28d6c0b0d474005e8", "fields": {"departement": "95", "stop_lat": 48.97644508291592, "code_postal": "95585", "stop_lon": 2.379028726915868, "coord": [48.97644508291592, 2.379028726915868], "stop_id": 4230073, "stop_desc": "FACE 39 AVENUE AUGUSTE PERRET - 95585", "stop_name": "LES FLANADES"}, "geometry": {"type": "Point", "coordinates": [2.379028726915868, 48.97644508291592]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c8d8e3ee562b553bdcae0f845280fbf095ee073a", "fields": {"departement": "95", "stop_lat": 48.99429074316839, "code_postal": "95585", "stop_lon": 2.3830444540022824, "coord": [48.99429074316839, 2.3830444540022824], "stop_id": 4695663, "stop_desc": "FACE 9 RUE JEAN-JACQUES ROUSSEAU - 95585", "stop_name": "LYCEE JEAN-JACQUES ROUSSEAU."}, "geometry": {"type": "Point", "coordinates": [2.3830444540022824, 48.99429074316839]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c34c9084c0aaff9eca2d5fc609bd2766af7faa1c", "fields": {"departement": "95", "stop_lat": 49.00456558843109, "code_postal": "95585", "stop_lon": 2.3729868154366365, "coord": [49.00456558843109, 2.3729868154366365], "stop_id": 4695671, "stop_desc": "33 RUE GABRIEL PERI - 95585", "stop_name": "CHAMP DE CHARTRES."}, "geometry": {"type": "Point", "coordinates": [2.3729868154366365, 49.00456558843109]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a372fbfbb55d1ec1bdd792571b1aeff9bfd25640", "fields": {"departement": "93", "stop_lat": 48.89058768492959, "code_postal": "93055", "stop_lon": 2.4099928367937338, "coord": [48.89058768492959, 2.4099928367937338], "stop_id": 4705567, "stop_desc": "29 RUE JULES AUFFRET - 93055", "stop_name": "8 MAI 1945"}, "geometry": {"type": "Point", "coordinates": [2.4099928367937338, 48.89058768492959]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b1b492b727a36c3cf38b3e6c5061c7da51032eaa", "fields": {"departement": "93", "stop_lat": 48.8960882650742, "code_postal": "93055", "stop_lon": 2.409278141751874, "coord": [48.8960882650742, 2.409278141751874], "stop_id": 4705572, "stop_desc": "27 RUE RUE DELIZY - 93055", "stop_name": "LOUIS NADOT"}, "geometry": {"type": "Point", "coordinates": [2.409278141751874, 48.8960882650742]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9f1b29dc9dd7ad8900da76e73e07e11482ab09fb", "fields": {"departement": "93", "stop_lat": 48.898166318336614, "code_postal": "93055", "stop_lon": 2.4058460102302743, "coord": [48.898166318336614, 2.4058460102302743], "stop_id": 4705573, "stop_desc": "AVENUE DU GENERAL LECLERC - 93055", "stop_name": "DELIZY"}, "geometry": {"type": "Point", "coordinates": [2.4058460102302743, 48.898166318336614]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "abaf6cd8fefa081602a4c8fabc59508528274da4", "fields": {"departement": "93", "stop_lat": 48.89901570524189, "code_postal": "93055", "stop_lon": 2.3973276012268303, "coord": [48.89901570524189, 2.3973276012268303], "stop_id": 4705579, "stop_desc": "12 AVENUE EDOUARD VAILLANT - 93055", "stop_name": "JEAN MOULIN"}, "geometry": {"type": "Point", "coordinates": [2.3973276012268303, 48.89901570524189]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6009dc2cc68347d35f934c07e8a9e7632e229705", "fields": {"departement": "93", "stop_lat": 48.92454386199793, "code_postal": "93027", "stop_lon": 2.3864195579573853, "coord": [48.92454386199793, 2.3864195579573853], "stop_id": 4705602, "stop_desc": "FACE 7 AVENUE VICTOR HUGO - 93027", "stop_name": "GENERAL SCHRAMM"}, "geometry": {"type": "Point", "coordinates": [2.3864195579573853, 48.92454386199793]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "017afcb0a5a38e5110feab22eebf418265d4a50d", "fields": {"departement": "93", "stop_lat": 48.93765575610496, "code_postal": "93027", "stop_lon": 2.4047387994740164, "coord": [48.93765575610496, 2.4047387994740164], "stop_id": 4705611, "stop_desc": "92 AVENUE WALDECK ROCHET - 93027", "stop_name": "CIMETIERE DE LA_COURNEUVE"}, "geometry": {"type": "Point", "coordinates": [2.4047387994740164, 48.93765575610496]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "833a5caf1b44e49cd1f790a6ef6e7cb7fee60aac", "fields": {"departement": "93", "stop_lat": 48.94181352259452, "code_postal": "93027", "stop_lon": 2.4100648021765165, "coord": [48.94181352259452, 2.4100648021765165], "stop_id": 4705614, "stop_desc": "91 AVENUE WALDECK ROCHET - 93027", "stop_name": "CENTRE DES ESSENCES"}, "geometry": {"type": "Point", "coordinates": [2.4100648021765165, 48.94181352259452]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4f92c5921616527e17e966f49ea36be06c3e51e5", "fields": {"departement": "93", "stop_lat": 48.9519013403749, "code_postal": "93030", "stop_lon": 2.4168333559747754, "coord": [48.9519013403749, 2.4168333559747754], "stop_id": 4705617, "stop_desc": "6 AVENUE LOUIS LARIVIERE - 93030", "stop_name": "PLACE DU 16 AOUT 1943"}, "geometry": {"type": "Point", "coordinates": [2.4168333559747754, 48.9519013403749]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9292c244346767daa8e00a52a6dc0b609f034f8a", "fields": {"departement": "93", "stop_lat": 48.888934017798526, "code_postal": "93061", "stop_lon": 2.410031401835157, "coord": [48.888934017798526, 2.410031401835157], "stop_id": 4705627, "stop_desc": "FACE 53 R JULES AUFFRET - 93061", "stop_name": "PAUL BERT - CIMETIERE"}, "geometry": {"type": "Point", "coordinates": [2.410031401835157, 48.888934017798526]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1f15b46dfedabf64a52aeb6ce9f24c218563ebce", "fields": {"departement": "93", "stop_lat": 48.88294778661142, "code_postal": "93061", "stop_lon": 2.4112358028665697, "coord": [48.88294778661142, 2.4112358028665697], "stop_id": 4705628, "stop_desc": "73 AVENUE FAIDHERBE - 93061", "stop_name": "CONVENTION"}, "geometry": {"type": "Point", "coordinates": [2.4112358028665697, 48.88294778661142]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "23fcb43b512911dfb71d07210d25d883040545cb", "fields": {"departement": "93", "stop_lat": 48.95610771523027, "code_postal": "93030", "stop_lon": 2.4159391678675153, "coord": [48.95610771523027, 2.4159391678675153], "stop_id": 4705632, "stop_desc": "FACE 14 AVENUE AMBROISE CROIZAT - 93030", "stop_name": "LEO LAGRANGE"}, "geometry": {"type": "Point", "coordinates": [2.4159391678675153, 48.95610771523027]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a9e2236f5e50cde68dcc668778b99c0b84749a62", "fields": {"departement": "93", "stop_lat": 48.923133690428365, "code_postal": "93027", "stop_lon": 2.3844953179804316, "coord": [48.923133690428365, 2.3844953179804316], "stop_id": 4705644, "stop_desc": "6 R SUZANNE MASSON - 93027", "stop_name": "LA COURNEUVE - AUBERVILLIERS RER"}, "geometry": {"type": "Point", "coordinates": [2.3844953179804316, 48.923133690428365]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "93ab9777f2419a339a51ea34e9d1a4f256252011", "fields": {"departement": "93", "stop_lat": 48.91470992263207, "code_postal": "93001", "stop_lon": 2.391482586590616, "coord": [48.91470992263207, 2.391482586590616], "stop_id": 4705648, "stop_desc": "FACE 6 PL CONSTANTIN COTTIN - 93001", "stop_name": "MAISON DE RETRAITE"}, "geometry": {"type": "Point", "coordinates": [2.391482586590616, 48.91470992263207]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f15002828e2459cc3d099a23ae346efa3ad3d911", "fields": {"departement": "93", "stop_lat": 48.91289586731542, "code_postal": "93001", "stop_lon": 2.3884946437181336, "coord": [48.91289586731542, 2.3884946437181336], "stop_id": 4705649, "stop_desc": "161 RUE DES CITES - 93001", "stop_name": "NOUVELLE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.3884946437181336, 48.91289586731542]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "320469f8ae4b0fcc6930c4d9b5e547baf9063bf4", "fields": {"departement": "93", "stop_lat": 48.89537617333808, "code_postal": "93055", "stop_lon": 2.4126847264445748, "coord": [48.89537617333808, 2.4126847264445748], "stop_id": 4705659, "stop_desc": "1 RUE DU CHEVAL BLANC - 93055", "stop_name": "CHEVAL BLANC"}, "geometry": {"type": "Point", "coordinates": [2.4126847264445748, 48.89537617333808]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cf84196934bb840ccef6b19601930eb88e754542", "fields": {"departement": "93", "stop_lat": 48.892978636822406, "code_postal": "93055", "stop_lon": 2.409396487205529, "coord": [48.892978636822406, 2.409396487205529], "stop_id": 4705660, "stop_desc": "5 RUE DELIZY - 93055", "stop_name": "LYCEE PROFESSIONNEL SIMONE WEIL - EGLISE DE PANTIN"}, "geometry": {"type": "Point", "coordinates": [2.409396487205529, 48.892978636822406]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "940467e413eb8eeadeda5335d52bb6ebd2deab0d", "fields": {"departement": "93", "stop_lat": 48.88294778661142, "code_postal": "93061", "stop_lon": 2.4112358028665697, "coord": [48.88294778661142, 2.4112358028665697], "stop_id": 4705665, "stop_desc": "73 AVENUE FAIDHERBE - 93061", "stop_name": "CONVENTION"}, "geometry": {"type": "Point", "coordinates": [2.4112358028665697, 48.88294778661142]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "67fddd1c0d52ef6cca1a2b1ca7c915f34888f174", "fields": {"departement": "93", "stop_lat": 48.87902902292163, "code_postal": "93061", "stop_lon": 2.411747998347259, "coord": [48.87902902292163, 2.411747998347259], "stop_id": 4705666, "stop_desc": "5-7 AV FAIDHERBE - 93061", "stop_name": "FAIDHERBE - BELVEDERE"}, "geometry": {"type": "Point", "coordinates": [2.411747998347259, 48.87902902292163]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dbac59de75adb60219e9738408e3ddec29d6e9c5", "fields": {"departement": "75", "stop_lat": 48.876730434823244, "code_postal": "75120", "stop_lon": 2.408215718151263, "coord": [48.876730434823244, 2.408215718151263], "stop_id": 4705667, "stop_desc": "RUE DES GLAIEULS - 75120", "stop_name": "PORTE DES LILAS-METRO"}, "geometry": {"type": "Point", "coordinates": [2.408215718151263, 48.876730434823244]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5acf620bfda5aaf06cc4b653b46d1a8acd491e2f", "fields": {"departement": "75", "stop_lat": 48.829860486645096, "code_postal": "75112", "stop_lon": 2.3918159182403222, "coord": [48.829860486645096, 2.3918159182403222], "stop_id": 4723804, "stop_desc": "20 BD PONIATOWSKI - 75112", "stop_name": "BARON LE ROY"}, "geometry": {"type": "Point", "coordinates": [2.3918159182403222, 48.829860486645096]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "53e06e48a92d8a8a7c1ae8e32f93d42e5c18599d", "fields": {"departement": "75", "stop_lat": 48.83144830211143, "code_postal": "75112", "stop_lon": 2.3979981179423318, "coord": [48.83144830211143, 2.3979981179423318], "stop_id": 4723806, "stop_desc": "AVENUE DE LA PORTE DE CHARENTON - 75112", "stop_name": "PORTE DE CHARENTON"}, "geometry": {"type": "Point", "coordinates": [2.3979981179423318, 48.83144830211143]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "614103997594b12d0ee4b3e966519c9a57f45210", "fields": {"departement": "94", "stop_lat": 48.828983406255524, "code_postal": "94018", "stop_lon": 2.402324120933582, "coord": [48.828983406255524, 2.402324120933582], "stop_id": 4723809, "stop_desc": "172 RUE DE PARIS - 94018", "stop_name": "FELIX LANGLAIS"}, "geometry": {"type": "Point", "coordinates": [2.402324120933582, 48.828983406255524]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fc54e013a6c41350b3a78149582e7405577e875b", "fields": {"departement": "94", "stop_lat": 48.82629371263003, "code_postal": "94018", "stop_lon": 2.4065541275110616, "coord": [48.82629371263003, 2.4065541275110616], "stop_id": 4723811, "stop_desc": "130-132 RUE DE PARIS - 94018", "stop_name": "LIBERTE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.4065541275110616, 48.82629371263003]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7e22ef7b568356e15f92b8abc9c56a99cb40521a", "fields": {"departement": "94", "stop_lat": 48.823667195047015, "code_postal": "94018", "stop_lon": 2.410103212176365, "coord": [48.823667195047015, 2.410103212176365], "stop_id": 4723812, "stop_desc": "109 RUE DE PARIS - 94018", "stop_name": "THEATRE DE CHARENTON"}, "geometry": {"type": "Point", "coordinates": [2.410103212176365, 48.823667195047015]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6c98a8fa8fe09afbd9424e3f1928271cac24ece3", "fields": {"departement": "94", "stop_lat": 48.823325059800965, "code_postal": "94018", "stop_lon": 2.4110827508438324, "coord": [48.823325059800965, 2.4110827508438324], "stop_id": 4723813, "stop_desc": "88 RUE DE PARIS - 94018", "stop_name": "THEATRE DE CHARENTON"}, "geometry": {"type": "Point", "coordinates": [2.4110827508438324, 48.823325059800965]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "40b228f103a9a4c94a13edfddde645bbfd5a2a6c", "fields": {"departement": "94", "stop_lat": 48.818150375922244, "code_postal": "94069", "stop_lon": 2.4331644510330075, "coord": [48.818150375922244, 2.4331644510330075], "stop_id": 4723824, "stop_desc": "69 RUE DU MARECHAL LECLERC - 94069", "stop_name": "PASSERELLE DE SAINT-MAURICE"}, "geometry": {"type": "Point", "coordinates": [2.4331644510330075, 48.818150375922244]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "737799989561df996aeea7cad3eb361a243ff4d0", "fields": {"departement": "94", "stop_lat": 48.817943764417215, "code_postal": "94069", "stop_lon": 2.4436165247676946, "coord": [48.817943764417215, 2.4436165247676946], "stop_id": 4723828, "stop_desc": "FACE 130 RUE DU MARECHAL LECLERC - 94069", "stop_name": "PASSERELLE DE CHARENTONNEAU"}, "geometry": {"type": "Point", "coordinates": [2.4436165247676946, 48.817943764417215]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5fc861d4a97b176a330b72fb9a85a5cf663b59c1", "fields": {"departement": "94", "stop_lat": 48.81786967316462, "code_postal": "94069", "stop_lon": 2.4460389440703985, "coord": [48.81786967316462, 2.4460389440703985], "stop_id": 4723829, "stop_desc": "150-156 RUE DU MARECHAL LECLERC - 94069", "stop_name": "CFA - ANDRIEU"}, "geometry": {"type": "Point", "coordinates": [2.4460389440703985, 48.81786967316462]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1b921715851649a23a67c346e9aa3679a0d64768", "fields": {"departement": "94", "stop_lat": 48.81745989066233, "code_postal": "94069", "stop_lon": 2.451726999892649, "coord": [48.81745989066233, 2.451726999892649], "stop_id": 4723831, "stop_desc": "182 RUE DU MARECHAL LECLERC - 94069", "stop_name": "ROSERAIE"}, "geometry": {"type": "Point", "coordinates": [2.451726999892649, 48.81745989066233]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "28a97cbad4a5e029a33470d55526aa595efcfe18", "fields": {"departement": "94", "stop_lat": 48.816872071529666, "code_postal": "94069", "stop_lon": 2.4554275393875784, "coord": [48.816872071529666, 2.4554275393875784], "stop_id": 4723834, "stop_desc": "103 RUE DU MARECHAL LECLERC - 94069", "stop_name": "LES CANADIENS"}, "geometry": {"type": "Point", "coordinates": [2.4554275393875784, 48.816872071529666]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "60f7a3e63428eac34b0f756af64ddf796373d78d", "fields": {"departement": "94", "stop_lat": 48.81477302407176, "code_postal": "94069", "stop_lon": 2.460267615019731, "coord": [48.81477302407176, 2.460267615019731], "stop_id": 4723835, "stop_desc": "FACE 3 RUE PAUL VERLAINE - 94069", "stop_name": "ECOLES DE GRAVELLE"}, "geometry": {"type": "Point", "coordinates": [2.460267615019731, 48.81477302407176]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9a2d4a122ea21c1b42251a846bd190c241992087", "fields": {"departement": "94", "stop_lat": 48.81435751834528, "code_postal": "94069", "stop_lon": 2.4622535492272988, "coord": [48.81435751834528, 2.4622535492272988], "stop_id": 4723837, "stop_desc": "FACE 2 RUE MARECHAL LECLERC - 94069", "stop_name": "JOHN FITZGERALD KENNEDY"}, "geometry": {"type": "Point", "coordinates": [2.4622535492272988, 48.81435751834528]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "303a08dafb5e71b9afbe92ce498a71d3a00dd86e", "fields": {"departement": "94", "stop_lat": 48.79911299769273, "code_postal": "94068", "stop_lon": 2.4716043270020815, "coord": [48.79911299769273, 2.4716043270020815], "stop_id": 4723850, "stop_desc": "4 BIS BOULEVARD DE CRETEIL - 94068", "stop_name": "PONT DE CRETEIL"}, "geometry": {"type": "Point", "coordinates": [2.4716043270020815, 48.79911299769273]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4d9635da9dfb87d1e56f36345920232dd0721a4d", "fields": {"departement": "94", "stop_lat": 48.79137454136224, "code_postal": "94068", "stop_lon": 2.4792428043909154, "coord": [48.79137454136224, 2.4792428043909154], "stop_id": 4723856, "stop_desc": "34 AVENUE JEAN JAURES - 94068", "stop_name": "ARROMANCHES"}, "geometry": {"type": "Point", "coordinates": [2.4792428043909154, 48.79137454136224]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e433337c6bc000f5c59511df7ee326aa71941ffa", "fields": {"departement": "94", "stop_lat": 48.78934126816112, "code_postal": "94068", "stop_lon": 2.480910350828397, "coord": [48.78934126816112, 2.480910350828397], "stop_id": 4723857, "stop_desc": "80 AVENUE JEAN JAURES - 94068", "stop_name": "LA PIE"}, "geometry": {"type": "Point", "coordinates": [2.480910350828397, 48.78934126816112]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eef9c44825cabebe8b3ace52f70de45cad2fbd12", "fields": {"departement": "94", "stop_lat": 48.787607228897016, "code_postal": "94068", "stop_lon": 2.4946164026734783, "coord": [48.787607228897016, 2.4946164026734783], "stop_id": 4723864, "stop_desc": "21 BIS AVENUE DES PERDRIX - 94068", "stop_name": "ALMA"}, "geometry": {"type": "Point", "coordinates": [2.4946164026734783, 48.787607228897016]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ae42903c4c4ed63476ebc33a3f17d9464a2caf98", "fields": {"departement": "94", "stop_lat": 48.78619026960421, "code_postal": "94068", "stop_lon": 2.498978243620413, "coord": [48.78619026960421, 2.498978243620413], "stop_id": 4723865, "stop_desc": "118 TER AVENUE RASPAIL - 94068", "stop_name": "SORBIERS"}, "geometry": {"type": "Point", "coordinates": [2.498978243620413, 48.78619026960421]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "978506e7f26bbe0809a7fe6806aa012126a75bd8", "fields": {"departement": "94", "stop_lat": 48.78873680058078, "code_postal": "94068", "stop_lon": 2.503366124614136, "coord": [48.78873680058078, 2.503366124614136], "stop_id": 4723868, "stop_desc": "FACE 24 RUE CHEVALIER - 94068", "stop_name": "PLACE DE MOLENES"}, "geometry": {"type": "Point", "coordinates": [2.503366124614136, 48.78873680058078]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b7bf92fed58ebf79d4d6e0e3961a05b8dfcd8283", "fields": {"departement": "94", "stop_lat": 48.790384083368984, "code_postal": "94068", "stop_lon": 2.5079555256354293, "coord": [48.790384083368984, 2.5079555256354293], "stop_id": 4723872, "stop_desc": "74 BOULEVARD DE LA MARNE - 94068", "stop_name": "VOLTAIRE"}, "geometry": {"type": "Point", "coordinates": [2.5079555256354293, 48.790384083368984]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "204f0875bf5f715ee560ee8084da95607eb4061d", "fields": {"departement": "94", "stop_lat": 48.797104041342344, "code_postal": "94068", "stop_lon": 2.516113124895376, "coord": [48.797104041342344, 2.516113124895376], "stop_id": 4723877, "stop_desc": "44 AVENUE DU MESNIL - 94068", "stop_name": "CAPITAINE CHARTON"}, "geometry": {"type": "Point", "coordinates": [2.516113124895376, 48.797104041342344]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f75827035d29c5fcf64ebac8eab1748a11db616e", "fields": {"departement": "94", "stop_lat": 48.800497525445955, "code_postal": "94068", "stop_lon": 2.5187098443312363, "coord": [48.800497525445955, 2.5187098443312363], "stop_id": 4723879, "stop_desc": "78 BIS AVENUE DU MESNIL - 94068", "stop_name": "CHARLES PEGUY"}, "geometry": {"type": "Point", "coordinates": [2.5187098443312363, 48.800497525445955]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "de91bdfa32cc57e438077b3e3f2d75419c976a83", "fields": {"departement": "94", "stop_lat": 48.80685442257188, "code_postal": "94068", "stop_lon": 2.5110168459959366, "coord": [48.80685442257188, 2.5110168459959366], "stop_id": 4723886, "stop_desc": "RUE ROCHAMBEAU - 94068", "stop_name": "CHAMPIGNY - SAINT-MAUR RER"}, "geometry": {"type": "Point", "coordinates": [2.5110168459959366, 48.80685442257188]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "545d2b350837a4111473a6f1a5dd5950e8c6ff8c", "fields": {"departement": "75", "stop_lat": 48.838369035834674, "code_postal": "75115", "stop_lon": 2.2987641849521716, "coord": [48.838369035834674, 2.2987641849521716], "stop_id": 4726698, "stop_desc": "315 RUE DE VAUGIRARD - 75115", "stop_name": "ABBE GROULT"}, "geometry": {"type": "Point", "coordinates": [2.2987641849521716, 48.838369035834674]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fb381155552b9e749c8c8b79c2fb3e4d5483777f", "fields": {"departement": "75", "stop_lat": 48.84038395608434, "code_postal": "75115", "stop_lon": 2.304467729103389, "coord": [48.84038395608434, 2.304467729103389], "stop_id": 4726700, "stop_desc": "249 RUE DE VAUGIRARD - 75115", "stop_name": "CAMBRONNE - VAUGIRARD"}, "geometry": {"type": "Point", "coordinates": [2.304467729103389, 48.84038395608434]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "83f538b682668db88ad9790d8424320bec1ec630", "fields": {"departement": "75", "stop_lat": 48.84788276485709, "code_postal": "75106", "stop_lon": 2.3196604682901585, "coord": [48.84788276485709, 2.3196604682901585], "stop_id": 4726705, "stop_desc": "99-103 R DE SEVRES - 75106", "stop_name": "VANEAU - SAINT-ROMAIN"}, "geometry": {"type": "Point", "coordinates": [2.3196604682901585, 48.84788276485709]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "95747d5e9735f91fbf4133004121fb41b4d27da9", "fields": {"departement": "75", "stop_lat": 48.84992345516465, "code_postal": "75106", "stop_lon": 2.323718043780384, "coord": [48.84992345516465, 2.323718043780384], "stop_id": 4726706, "stop_desc": "83 RUE DE SEVRES - 75106", "stop_name": "BAC - SAINT-PLACIDE"}, "geometry": {"type": "Point", "coordinates": [2.323718043780384, 48.84992345516465]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "22842e58082ff743c2d5e797579c8a59ad4a661d", "fields": {"departement": "75", "stop_lat": 48.85075949870457, "code_postal": "75106", "stop_lon": 2.3256925178508983, "coord": [48.85075949870457, 2.3256925178508983], "stop_id": 4726707, "stop_desc": "29 RUE DE SEVRES - 75106", "stop_name": "SEVRES - BABYLONE"}, "geometry": {"type": "Point", "coordinates": [2.3256925178508983, 48.85075949870457]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e8d780406e7b92930d416a618e364338f42936fa", "fields": {"departement": "75", "stop_lat": 48.856125538622685, "code_postal": "75106", "stop_lon": 2.3344762062815754, "coord": [48.856125538622685, 2.3344762062815754], "stop_id": 4726710, "stop_desc": "13-15 RUE BONAPARTE - 75106", "stop_name": "JACOB"}, "geometry": {"type": "Point", "coordinates": [2.3344762062815754, 48.856125538622685]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "67f58895e356fbf8e0c6673e964ee52dc4e64e87", "fields": {"departement": "75", "stop_lat": 48.86083493385864, "code_postal": "75101", "stop_lon": 2.3339855904522095, "coord": [48.86083493385864, 2.3339855904522095], "stop_id": 4726712, "stop_desc": "PLACE DU CARROUSEL - 75101", "stop_name": "MUSEE DU LOUVRE"}, "geometry": {"type": "Point", "coordinates": [2.3339855904522095, 48.86083493385864]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dd8fc1b78190bdc2b3bd49805df6b748c03a8ae6", "fields": {"departement": "75", "stop_lat": 48.84333741383116, "code_postal": "75115", "stop_lon": 2.293722349362553, "coord": [48.84333741383116, 2.293722349362553], "stop_id": 4726721, "stop_desc": "106 RUE DES ENTREPRENEURS - 75115", "stop_name": "FELIX FAURE"}, "geometry": {"type": "Point", "coordinates": [2.293722349362553, 48.84333741383116]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ae9d9d01a3433e7d7716cf37ea9472cdd22d0509", "fields": {"departement": "75", "stop_lat": 48.84788276485709, "code_postal": "75106", "stop_lon": 2.3196604682901585, "coord": [48.84788276485709, 2.3196604682901585], "stop_id": 4726730, "stop_desc": "99-103 R DE SEVRES - 75106", "stop_name": "VANEAU - SAINT-ROMAIN"}, "geometry": {"type": "Point", "coordinates": [2.3196604682901585, 48.84788276485709]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "171cb12f3aa084d6760fce35531991f314dc54c3", "fields": {"departement": "75", "stop_lat": 48.85075949870457, "code_postal": "75106", "stop_lon": 2.3256925178508983, "coord": [48.85075949870457, 2.3256925178508983], "stop_id": 4726732, "stop_desc": "29 RUE DE SEVRES - 75106", "stop_name": "SEVRES - BABYLONE"}, "geometry": {"type": "Point", "coordinates": [2.3256925178508983, 48.85075949870457]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1fdc4e413049a3357c01393ebcae6f5e06ce8228", "fields": {"departement": "75", "stop_lat": 48.85259344198745, "code_postal": "75106", "stop_lon": 2.3334277286474445, "coord": [48.85259344198745, 2.3334277286474445], "stop_id": 4726734, "stop_desc": "31-33 RUE DU FOUR - 75106", "stop_name": "BONAPARTE - SAINT-GERMAIN"}, "geometry": {"type": "Point", "coordinates": [2.3334277286474445, 48.85259344198745]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3a4e018b778adb799b61decac485fd8bdb398f3f", "fields": {"departement": "75", "stop_lat": 48.857014888715405, "code_postal": "75104", "stop_lon": 2.347469838537296, "coord": [48.857014888715405, 2.347469838537296], "stop_id": 4726739, "stop_desc": "FACE 16 QUAI DE GESVRES - 75104", "stop_name": "CHATELET"}, "geometry": {"type": "Point", "coordinates": [2.347469838537296, 48.857014888715405]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "65da0fbca04e4322ac72805a736cc3615929ed7d", "fields": {"departement": "75", "stop_lat": 48.88547124572192, "code_postal": "75117", "stop_lon": 2.29657603558797, "coord": [48.88547124572192, 2.29657603558797], "stop_id": 4726743, "stop_desc": "173-175 RUE DE COURCELLES - 75117", "stop_name": "PEREIRE - LE CHATELIER"}, "geometry": {"type": "Point", "coordinates": [2.29657603558797, 48.88547124572192]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bdd7b04e79f2d3211e793697ce861c5c6d646f39", "fields": {"departement": "75", "stop_lat": 48.853444477702595, "code_postal": "75107", "stop_lon": 2.3112691100642078, "coord": [48.853444477702595, 2.3112691100642078], "stop_id": 4726756, "stop_desc": "1 AVENUE DE TOURVILLE - 75107", "stop_name": "VAUBAN - HOTEL DES INVALIDES"}, "geometry": {"type": "Point", "coordinates": [2.3112691100642078, 48.853444477702595]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d3ec5c099bb5c72abeddb1b238154ad8486a4330", "fields": {"departement": "75", "stop_lat": 48.849616522707365, "code_postal": "75107", "stop_lon": 2.314743685797424, "coord": [48.849616522707365, 2.314743685797424], "stop_id": 4726758, "stop_desc": "48 BOULEVARD DES INVALIDES - 75107", "stop_name": "OUDINOT"}, "geometry": {"type": "Point", "coordinates": [2.314743685797424, 48.849616522707365]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b842c55245e044c7f53eca6cc09d6b1824526673", "fields": {"departement": "75", "stop_lat": 48.845527910899904, "code_postal": "75115", "stop_lon": 2.3188170008674582, "coord": [48.845527910899904, 2.3188170008674582], "stop_id": 4726760, "stop_desc": "30 BOULEVARD DU MONTPARNASSE - 75115", "stop_name": "MAINE - VAUGIRARD"}, "geometry": {"type": "Point", "coordinates": [2.3188170008674582, 48.845527910899904]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d04e2a7ba7fecba5dd95c422b7897f3364c2dade", "fields": {"departement": "75", "stop_lat": 48.87510621368235, "code_postal": "75108", "stop_lon": 2.3245562170837055, "coord": [48.87510621368235, 2.3245562170837055], "stop_id": 4726914, "stop_desc": "RUE INTERIEURE - 75108", "stop_name": "GARE SAINT-LAZARE"}, "geometry": {"type": "Point", "coordinates": [2.3245562170837055, 48.87510621368235]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2194c6411a94f5ce7fd53eb84b58fb7362c350ed", "fields": {"departement": "75", "stop_lat": 48.868123588566576, "code_postal": "75102", "stop_lon": 2.3432624809229616, "coord": [48.868123588566576, 2.3432624809229616], "stop_id": 4726925, "stop_desc": "105 RUE REAUMUR - 75102", "stop_name": "REAUMUR - MONTMARTRE"}, "geometry": {"type": "Point", "coordinates": [2.3432624809229616, 48.868123588566576]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "37e5017417475f9695c859f0369ece6def75e398", "fields": {"departement": "75", "stop_lat": 48.8649490060928, "code_postal": "75103", "stop_lon": 2.3601265126259983, "coord": [48.8649490060928, 2.3601265126259983], "stop_id": 4726930, "stop_desc": "FACE 171 RUE DU TEMPLE - 75103", "stop_name": "SQUARE DU TEMPLE - MAIRIE DU 3EME - CARREAU DU TEMPLE"}, "geometry": {"type": "Point", "coordinates": [2.3601265126259983, 48.8649490060928]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9619a703d450013f3691bc2a65acdeb58c48e9ee", "fields": {"departement": "75", "stop_lat": 48.86483101886425, "code_postal": "75103", "stop_lon": 2.365493632274414, "coord": [48.86483101886425, 2.365493632274414], "stop_id": 4726933, "stop_desc": "23 BOULEVARD DU TEMPLE - 75103", "stop_name": "JEAN-PIERRE TIMBAUD"}, "geometry": {"type": "Point", "coordinates": [2.365493632274414, 48.86483101886425]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "72b73f82741723c8a8b0082329b1005c64d04fcc", "fields": {"departement": "75", "stop_lat": 48.85536654929761, "code_postal": "75104", "stop_lon": 2.3684167310968207, "coord": [48.85536654929761, 2.3684167310968207], "stop_id": 4726937, "stop_desc": "25 BOULEVARD BEAUMARCHAIS - 75104", "stop_name": "PASTEUR - WAGNER"}, "geometry": {"type": "Point", "coordinates": [2.3684167310968207, 48.85536654929761]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "294a2f99852c077cf8aeb7d524d3b12bc28b7595", "fields": {"departement": "75", "stop_lat": 48.85281401294961, "code_postal": "75104", "stop_lon": 2.3687965324803804, "coord": [48.85281401294961, 2.3687965324803804], "stop_id": 4726939, "stop_desc": "PLACE DE LA BASTILLE - 75104", "stop_name": "BASTILLE"}, "geometry": {"type": "Point", "coordinates": [2.3687965324803804, 48.85281401294961]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7beb9a9f2aa318eb26da075bef1ccc2062f351e8", "fields": {"departement": "75", "stop_lat": 48.8483376180706, "code_postal": "75112", "stop_lon": 2.3710952409746535, "coord": [48.8483376180706, 2.3710952409746535], "stop_id": 4726940, "stop_desc": "41 RUE DE LYON - 75112", "stop_name": "LYON - LEDRU ROLLIN"}, "geometry": {"type": "Point", "coordinates": [2.3710952409746535, 48.8483376180706]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a08f1aa23ba02a35bb8fa7a32e16b4662688d492", "fields": {"departement": "75", "stop_lat": 48.8690030013526, "code_postal": "75110", "stop_lon": 2.356150280147278, "coord": [48.8690030013526, 2.356150280147278], "stop_id": 4726957, "stop_desc": "20 BOULEVARD SAINT-MARTIN - 75110", "stop_name": "PORTE SAINT-MARTIN"}, "geometry": {"type": "Point", "coordinates": [2.356150280147278, 48.8690030013526]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fcd3dc168f391d9e352c63cd916c8ed54a9cc7e9", "fields": {"departement": "75", "stop_lat": 48.87084646432337, "code_postal": "75109", "stop_lon": 2.3474861878041238, "coord": [48.87084646432337, 2.3474861878041238], "stop_id": 4726959, "stop_desc": "4 BOULEVARD POISSONNIERE - 75109", "stop_name": "POISSONNIERE - BONNE NOUVELLE"}, "geometry": {"type": "Point", "coordinates": [2.3474861878041238, 48.87084646432337]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6b1fb57ee8de7bdc258c120f60ec567394785345", "fields": {"departement": "94", "stop_lat": 48.82482628442783, "code_postal": "94018", "stop_lon": 2.3942062961024053, "coord": [48.82482628442783, 2.3942062961024053], "stop_id": 4739158, "stop_desc": "QUAI DE BERCY - 94018", "stop_name": "PARC DE BERCY"}, "geometry": {"type": "Point", "coordinates": [2.3942062961024053, 48.82482628442783]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fab68c5654750a417d87a00160b92f857e70c3c0", "fields": {"departement": "75", "stop_lat": 48.831938061298615, "code_postal": "75112", "stop_lon": 2.38859167244866, "coord": [48.831938061298615, 2.38859167244866], "stop_id": 4739160, "stop_desc": "42 AVENUE DES TERROIRS DE FRANCE - 75112", "stop_name": "TERROIRS DE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.38859167244866, 48.831938061298615]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4fcec5e0f7af1bd30d880b29ed0a906fb672d7b7", "fields": {"departement": "75", "stop_lat": 48.8511007153224, "code_postal": "75105", "stop_lon": 2.3516359825745714, "coord": [48.8511007153224, 2.3516359825745714], "stop_id": 4739174, "stop_desc": "FACE 55 QUAI DE LA TOURNELLE - 75105", "stop_name": "PONT DE L'ARCHEVECHE"}, "geometry": {"type": "Point", "coordinates": [2.3516359825745714, 48.8511007153224]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "92c2905af340407d0fda0b1c5c58fc8501b5ca04", "fields": {"departement": "75", "stop_lat": 48.85258403108319, "code_postal": "75105", "stop_lon": 2.348000108567692, "coord": [48.85258403108319, 2.348000108567692], "stop_id": 4739199, "stop_desc": "QUAI DE MONTEBELLO - 75105", "stop_name": "NOTRE-DAME - QUAI DE MONTEBELLO"}, "geometry": {"type": "Point", "coordinates": [2.348000108567692, 48.85258403108319]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1fce056701c43335df48fc5f40709bbe149afc06", "fields": {"departement": "75", "stop_lat": 48.85583791617629, "code_postal": "75106", "stop_lon": 2.3409320544688788, "coord": [48.85583791617629, 2.3409320544688788], "stop_id": 4739201, "stop_desc": "FACE 55 QUAI DES GRANDS AUGUSTINS - 75106", "stop_name": "PONT NEUF - QUAI DES GRANDS AUGUSTINS"}, "geometry": {"type": "Point", "coordinates": [2.3409320544688788, 48.85583791617629]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7d580de56bb599b76079cc9dcda04a58cdb99271", "fields": {"departement": "75", "stop_lat": 48.85826452640826, "code_postal": "75106", "stop_lon": 2.333713341644251, "coord": [48.85826452640826, 2.333713341644251], "stop_id": 4739203, "stop_desc": "FACE 21 QUAI MALAQUAIS - 75106", "stop_name": "PONT DU CARROUSEL - QUAI VOLTAIRE"}, "geometry": {"type": "Point", "coordinates": [2.333713341644251, 48.85826452640826]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c259165ac30f4da4e09a704126e5f20fca4186c5", "fields": {"departement": "75", "stop_lat": 48.873219105262045, "code_postal": "75109", "stop_lon": 2.326886462987139, "coord": [48.873219105262045, 2.326886462987139], "stop_id": 4739209, "stop_desc": "34 RUE TRONCHET - 75109", "stop_name": "HAVRE - HAUSSMANN"}, "geometry": {"type": "Point", "coordinates": [2.326886462987139, 48.873219105262045]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f79be3bd1657973814e72ca23be05106bb757018", "fields": {"departement": "75", "stop_lat": 48.89491230018949, "code_postal": "75117", "stop_lon": 2.3131701728580083, "coord": [48.89491230018949, 2.3131701728580083], "stop_id": 4758934, "stop_desc": "AVENUE DE LA PORTE DE CLICHY - 75117", "stop_name": "PORTE DE CLICHY - METRO"}, "geometry": {"type": "Point", "coordinates": [2.3131701728580083, 48.89491230018949]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f1b8a76b73b8dedab01f78ccb666dbe2cf62ef6f", "fields": {"departement": "92", "stop_lat": 48.90070046224565, "code_postal": "92024", "stop_lon": 2.3155121338101297, "coord": [48.90070046224565, 2.3155121338101297], "stop_id": 4758937, "stop_desc": "93 BOULEVARD VICTOR HUGO - 92024", "stop_name": "GENERAL LECLERC - VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.3155121338101297, 48.90070046224565]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "85cc82965f555f0d3912204073068ee5c4929fce", "fields": {"departement": "92", "stop_lat": 48.90180625832521, "code_postal": "92024", "stop_lon": 2.3177200511128, "coord": [48.90180625832521, 2.3177200511128], "stop_id": 4758938, "stop_desc": "104 BOULEVARD VICTOR HUGO - 92024", "stop_name": "VICTOR HUGO - MOREL"}, "geometry": {"type": "Point", "coordinates": [2.3177200511128, 48.90180625832521]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6370e1137f8a54ec74cbc035a943da315eafbbfd", "fields": {"departement": "93", "stop_lat": 48.913032678779174, "code_postal": "93070", "stop_lon": 2.335304886790752, "coord": [48.913032678779174, 2.335304886790752], "stop_id": 4758947, "stop_desc": "29 BOULEVARD JEAN JAURES - 93070", "stop_name": "JAURES - DHALENNE"}, "geometry": {"type": "Point", "coordinates": [2.335304886790752, 48.913032678779174]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4db5b758bb0d386b9485099ea3da53c880cb1c45", "fields": {"departement": "93", "stop_lat": 48.9155480488809, "code_postal": "93066", "stop_lon": 2.3527583588299725, "coord": [48.9155480488809, 2.3527583588299725], "stop_id": 4758955, "stop_desc": "7 R DES CHEMINOTS - 93066", "stop_name": "LANDY - CHEMINOTS"}, "geometry": {"type": "Point", "coordinates": [2.3527583588299725, 48.9155480488809]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fd970bfe43399030424a418879775582012fb32f", "fields": {"departement": "93", "stop_lat": 48.915473745634934, "code_postal": "93066", "stop_lon": 2.365793950971609, "coord": [48.915473745634934, 2.365793950971609], "stop_id": 4758966, "stop_desc": "6 RUE DU LANDY - 93066", "stop_name": "MURGER"}, "geometry": {"type": "Point", "coordinates": [2.365793950971609, 48.915473745634934]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a196864b1fade02909a3f5b94c52912b4b11a435", "fields": {"departement": "93", "stop_lat": 48.91495572493585, "code_postal": "93001", "stop_lon": 2.403072973878873, "coord": [48.91495572493585, 2.403072973878873], "stop_id": 4758983, "stop_desc": "RUE DANIELLE CASANOVA - 93001", "stop_name": "FORT D'AUBERVILLIERS - DANIELLE CASANOVA"}, "geometry": {"type": "Point", "coordinates": [2.403072973878873, 48.91495572493585]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d5af3b7c24210335ad6bf37c003eda9b884bc1de", "fields": {"departement": "93", "stop_lat": 48.92057750706973, "code_postal": "93027", "stop_lon": 2.4100758616574143, "coord": [48.92057750706973, 2.4100758616574143], "stop_id": 4758987, "stop_desc": "49 AVENUE PAUL VAILLANT COUTURIER - 93027", "stop_name": "LA COURNEUVE-8 MAI 1945"}, "geometry": {"type": "Point", "coordinates": [2.4100758616574143, 48.92057750706973]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a3f8f3571598bcb930388ba098bbe39422c146c1", "fields": {"departement": "92", "stop_lat": 48.89390208020657, "code_postal": "92044", "stop_lon": 2.29914547040116, "coord": [48.89390208020657, 2.29914547040116], "stop_id": 4766796, "stop_desc": "32 RUE VICTOR HUGO - 92044", "stop_name": "ALSACE"}, "geometry": {"type": "Point", "coordinates": [2.29914547040116, 48.89390208020657]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2a0ac79ef8f1054517041d1fdf3d1c4fa77548a5", "fields": {"departement": "75", "stop_lat": 48.82764247186972, "code_postal": "75113", "stop_lon": 2.356679718554963, "coord": [48.82764247186972, 2.356679718554963], "stop_id": 4767047, "stop_desc": "52 AVENUE D'ITALIE - 75113", "stop_name": "VANDREZANNE"}, "geometry": {"type": "Point", "coordinates": [2.356679718554963, 48.82764247186972]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "76d23b7920f5541ccd000c1ee85f981f16040d94", "fields": {"departement": "75", "stop_lat": 48.8263661608696, "code_postal": "75113", "stop_lon": 2.357073993586242, "coord": [48.8263661608696, 2.357073993586242], "stop_id": 4767049, "stop_desc": "92-94 AVENUE D'ITALIE - 75113", "stop_name": "ITALIE - TOLBIAC"}, "geometry": {"type": "Point", "coordinates": [2.357073993586242, 48.8263661608696]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "00be4241c9ed3571560506cb0c8c5f20163f2d92", "fields": {"departement": "75", "stop_lat": 48.81843859863193, "code_postal": "75113", "stop_lon": 2.359493561653259, "coord": [48.81843859863193, 2.359493561653259], "stop_id": 4767055, "stop_desc": "AVENUE DE LA PORTE D'ITALIE - 75113", "stop_name": "PORTE D'ITALIE - HELENE BOUCHER"}, "geometry": {"type": "Point", "coordinates": [2.359493561653259, 48.81843859863193]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "be87699997c0cc1ef4fe0c3e20898ef6550d528c", "fields": {"departement": "94", "stop_lat": 48.812137822019444, "code_postal": "94043", "stop_lon": 2.361423259884513, "coord": [48.812137822019444, 2.361423259884513], "stop_id": 4767059, "stop_desc": "58 AVENUE DE FONTAINEBLEAU - 94043", "stop_name": "CONVENTION - FONTAINEBLEAU"}, "geometry": {"type": "Point", "coordinates": [2.361423259884513, 48.812137822019444]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "48b547b4078b21abf20d4f43fe0c57a531eb5e80", "fields": {"departement": "94", "stop_lat": 48.803140339876805, "code_postal": "94076", "stop_lon": 2.3646845296732795, "coord": [48.803140339876805, 2.3646845296732795], "stop_id": 4767066, "stop_desc": "87 AVENUE DE PARIS - 94076", "stop_name": "HENRI BARBUSSE"}, "geometry": {"type": "Point", "coordinates": [2.3646845296732795, 48.803140339876805]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5d92d8a8878e9f24a4c71eb5566a40becff24b04", "fields": {"departement": "94", "stop_lat": 48.79524862637609, "code_postal": "94076", "stop_lon": 2.3662992378184105, "coord": [48.79524862637609, 2.3662992378184105], "stop_id": 4767069, "stop_desc": "22 BIS RUE JEAN JAURES - 94076", "stop_name": "JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.3662992378184105, 48.79524862637609]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "49d3e004aa6b6b89fb6c6dcf3f81b6a4880000c7", "fields": {"departement": "94", "stop_lat": 48.79221063758954, "code_postal": "94076", "stop_lon": 2.3666376189108953, "coord": [48.79221063758954, 2.3666376189108953], "stop_id": 4767071, "stop_desc": "85 RUE JEAN JAURES - 94076", "stop_name": "GUYNEMER - PLACE DES FUSILLES"}, "geometry": {"type": "Point", "coordinates": [2.3666376189108953, 48.79221063758954]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "238c682edae27f7f4d2ab65ea487fc95cdbff91f", "fields": {"departement": "94", "stop_lat": 48.79238074838206, "code_postal": "94076", "stop_lon": 2.3691951277195096, "coord": [48.79238074838206, 2.3691951277195096], "stop_id": 4767072, "stop_desc": "114 BOULEVARD MAXIME GORKI - 94076", "stop_name": "GUYNEMER - MAXIME GORKI"}, "geometry": {"type": "Point", "coordinates": [2.3691951277195096, 48.79238074838206]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1a2f9c62933942855b520cc241e77d7d6cf4c55d", "fields": {"departement": "94", "stop_lat": 48.78757278336037, "code_postal": "94076", "stop_lon": 2.3670022487935434, "coord": [48.78757278336037, 2.3670022487935434], "stop_id": 4767075, "stop_desc": "7 AVENUE DE STALINGRAD - 94076", "stop_name": "VILLEJUIF - LOUIS ARAGON"}, "geometry": {"type": "Point", "coordinates": [2.3670022487935434, 48.78757278336037]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cba82b4280117cb1bf1aad8e032a7f6675a2efcb", "fields": {"departement": "94", "stop_lat": 48.78296198770418, "code_postal": "94076", "stop_lon": 2.3669180031361514, "coord": [48.78296198770418, 2.3669180031361514], "stop_id": 4767076, "stop_desc": "AVENUE DE STALINGRAD - 94076", "stop_name": "LAMARTINE"}, "geometry": {"type": "Point", "coordinates": [2.3669180031361514, 48.78296198770418]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6f35342adce6b150ad73175fa6ecf7ec526c72b0", "fields": {"departement": "94", "stop_lat": 48.75908996737717, "code_postal": "94021", "stop_lon": 2.3659663516074483, "coord": [48.75908996737717, 2.3659663516074483], "stop_id": 4767085, "stop_desc": "RUE DE THIAIS - 94021", "stop_name": "PORTE DE THIAIS"}, "geometry": {"type": "Point", "coordinates": [2.3659663516074483, 48.75908996737717]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7a93bb5a02559e47a08c551329205e30dd3525b0", "fields": {"departement": "94", "stop_lat": 48.777955508065254, "code_postal": "94081", "stop_lon": 2.367608717505563, "coord": [48.777955508065254, 2.367608717505563], "stop_id": 4767098, "stop_desc": "ROUTE DE FONTAINEBLEAU - 94081", "stop_name": "ECOLE DEPARTEMENTALE"}, "geometry": {"type": "Point", "coordinates": [2.367608717505563, 48.777955508065254]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3fb161e3ba6a175cb995a6fd249fadc4a96ebbfa", "fields": {"departement": "91", "stop_lat": 48.706042051347254, "code_postal": "91161", "stop_lon": 2.3136514533219743, "coord": [48.706042051347254, 2.3136514533219743], "stop_id": 4770077, "stop_desc": "32 AVENUE MAZARIN - 91161", "stop_name": "COLLEGE DE CHILLY-MAZARIN"}, "geometry": {"type": "Point", "coordinates": [2.3136514533219743, 48.706042051347254]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d4f0b7a20cd244b5456ad984b0c036a1fd69acb5", "fields": {"departement": "91", "stop_lat": 48.70569154817685, "code_postal": "91161", "stop_lon": 2.31389606291992, "coord": [48.70569154817685, 2.31389606291992], "stop_id": 4770078, "stop_desc": "AVENUE MAZARIN - 91161", "stop_name": "COLLEGE DE CHILLY-MAZARIN"}, "geometry": {"type": "Point", "coordinates": [2.31389606291992, 48.70569154817685]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0350f2d86d20ead8a6c337ff3e639b818a357282", "fields": {"departement": "91", "stop_lat": 48.707425732597464, "code_postal": "91689", "stop_lon": 2.3110432656858193, "coord": [48.707425732597464, 2.3110432656858193], "stop_id": 4770080, "stop_desc": "FACE 62 AVENUE MAZARIN - 91689", "stop_name": "CIMETIERE DE CHILLY-MAZARIN"}, "geometry": {"type": "Point", "coordinates": [2.3110432656858193, 48.707425732597464]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "87c0892da58619e241fe7a768a69b3ec8565c97b", "fields": {"departement": "94", "stop_lat": 48.77976663603938, "code_postal": "94028", "stop_lon": 2.4589335139487987, "coord": [48.77976663603938, 2.4589335139487987], "stop_id": 3619878, "stop_desc": "CHEMIN DEPARTEMENTAL (VOIE RAPIDE D1 ) - 94028", "stop_name": "CRETEIL - PREFECTURE METRO"}, "geometry": {"type": "Point", "coordinates": [2.4589335139487987, 48.77976663603938]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e4d9b38ff300eea3613056d5d5cc89025ef653dd", "fields": {"departement": "94", "stop_lat": 48.796782292795314, "code_postal": "94028", "stop_lon": 2.448212286596667, "coord": [48.796782292795314, 2.448212286596667], "stop_id": 3619865, "stop_desc": "96 AVENUE DU GENERAL DE GAULLE - 94028", "stop_name": "CRETEIL - L'ECHAT"}, "geometry": {"type": "Point", "coordinates": [2.448212286596667, 48.796782292795314]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ae3339bf7253c3abc4ccc88ec5d909a5c24d833b", "fields": {"departement": "94", "stop_lat": 48.79850589677907, "code_postal": "94028", "stop_lon": 2.450406354830155, "coord": [48.79850589677907, 2.450406354830155], "stop_id": 3619863, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 94028", "stop_name": "HOPITAL HENRI MONDOR"}, "geometry": {"type": "Point", "coordinates": [2.450406354830155, 48.79850589677907]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cb078f289a7572ea888054a3c55b5277e1c65c13", "fields": {"departement": "94", "stop_lat": 48.80239706283789, "code_postal": "94028", "stop_lon": 2.4600478100972842, "coord": [48.80239706283789, 2.4600478100972842], "stop_id": 3619857, "stop_desc": "69 AVENUE LAFERRIERE - 94028", "stop_name": "CHERET - LAFERRIERE"}, "geometry": {"type": "Point", "coordinates": [2.4600478100972842, 48.80239706283789]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fed38949c2af876c4d3dfeba80d209368c70766f", "fields": {"departement": "94", "stop_lat": 48.816872071529666, "code_postal": "94069", "stop_lon": 2.4554275393875784, "coord": [48.816872071529666, 2.4554275393875784], "stop_id": 3619842, "stop_desc": "103 RUE DU MARECHAL LECLERC - 94069", "stop_name": "LES CANADIENS"}, "geometry": {"type": "Point", "coordinates": [2.4554275393875784, 48.816872071529666]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0e258e86e3823f921eba6974e9148192a74115a8", "fields": {"departement": "75", "stop_lat": 48.81727247823628, "code_postal": "75112", "stop_lon": 2.4594297312609763, "coord": [48.81727247823628, 2.4594297312609763], "stop_id": 3619840, "stop_desc": "18 AVENUE DES CANADIENS - 75112", "stop_name": "FRERES LUMIERE"}, "geometry": {"type": "Point", "coordinates": [2.4594297312609763, 48.81727247823628]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5b8396431f18a3e738fbd37366c1328e67783fda", "fields": {"departement": "94", "stop_lat": 48.79094260529654, "code_postal": "94028", "stop_lon": 2.4455608480155067, "coord": [48.79094260529654, 2.4455608480155067], "stop_id": 3619868, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 94028", "stop_name": "MONTAIGUT"}, "geometry": {"type": "Point", "coordinates": [2.4455608480155067, 48.79094260529654]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b21317f0cc0764d425a6798ccf9ced2a7e082185", "fields": {"departement": "94", "stop_lat": 48.77581041304003, "code_postal": "94028", "stop_lon": 2.4687834755637574, "coord": [48.77581041304003, 2.4687834755637574], "stop_id": 3619884, "stop_desc": "FACE 104 R JULIETTE SAVAR - 94028", "stop_name": "JEAN MERMOZ"}, "geometry": {"type": "Point", "coordinates": [2.4687834755637574, 48.77581041304003]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5dd475cad4f94f3d2e7099776e227149bf543ccf", "fields": {"departement": "94", "stop_lat": 48.80764356796923, "code_postal": "94046", "stop_lon": 2.4623326343241865, "coord": [48.80764356796923, 2.4623326343241865], "stop_id": 3619851, "stop_desc": "AVENUE DE VERDUN - 94046", "stop_name": "LOUIS FLICHE"}, "geometry": {"type": "Point", "coordinates": [2.4623326343241865, 48.80764356796923]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "462968177acb6d5fc7bbc534cb4659ebe6468425", "fields": {"departement": "94", "stop_lat": 48.8068241553007, "code_postal": "94028", "stop_lon": 2.4637730084161467, "coord": [48.8068241553007, 2.4637730084161467], "stop_id": 3619852, "stop_desc": "55 QUAI DE HALAGE - 94028", "stop_name": "MAYENNE"}, "geometry": {"type": "Point", "coordinates": [2.4637730084161467, 48.8068241553007]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5412d6741605603feaa02183377544ba00bc4b64", "fields": {"departement": "94", "stop_lat": 48.77991704362218, "code_postal": "94028", "stop_lon": 2.461245867969711, "coord": [48.77991704362218, 2.461245867969711], "stop_id": 3619771, "stop_desc": "95 AVENUE DU DOCTEUR PAUL CASALIS - 94028", "stop_name": "CRETEIL-PREFECTURE"}, "geometry": {"type": "Point", "coordinates": [2.461245867969711, 48.77991704362218]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "308f063961a368ed1d98a98929c3ef7258d781d4", "fields": {"departement": "94", "stop_lat": 48.78000758804928, "code_postal": "94028", "stop_lon": 2.460606882514268, "coord": [48.78000758804928, 2.460606882514268], "stop_id": 3619772, "stop_desc": "FACE 95 RUE DOCTEUR PAUL CASALIS - 94028", "stop_name": "CRETEIL-PREFECTURE"}, "geometry": {"type": "Point", "coordinates": [2.460606882514268, 48.78000758804928]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b185908a6fda10cd5e5ae5c450452937add13af7", "fields": {"departement": "94", "stop_lat": 48.79648665998207, "code_postal": "94081", "stop_lon": 2.412527464273206, "coord": [48.79648665998207, 2.412527464273206], "stop_id": 3619787, "stop_desc": "R EDITH CAVELL - 94081", "stop_name": "SALVADOR ALLENDE - EDITH CAVELL"}, "geometry": {"type": "Point", "coordinates": [2.412527464273206, 48.79648665998207]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "35510124c40aeee237e73f1e0896dbe435d56059", "fields": {"departement": "94", "stop_lat": 48.78554622424842, "code_postal": "94028", "stop_lon": 2.449466821174109, "coord": [48.78554622424842, 2.449466821174109], "stop_id": 3619764, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 94028", "stop_name": "LA HAYE AUX MOINES"}, "geometry": {"type": "Point", "coordinates": [2.449466821174109, 48.78554622424842]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "849e49e108cc8cb034abb2aa24d8fd54d91836f1", "fields": {"departement": "94", "stop_lat": 48.795909442621635, "code_postal": "94081", "stop_lon": 2.4156147782433646, "coord": [48.795909442621635, 2.4156147782433646], "stop_id": 3619788, "stop_desc": "AVENUE DU PRESIDENT SALVADOR ALLENDE - 94081", "stop_name": "PONT DE VITRY"}, "geometry": {"type": "Point", "coordinates": [2.4156147782433646, 48.795909442621635]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "387448eae97c4dc30b4699e64e6dbae2c40cd686", "fields": {"departement": "94", "stop_lat": 48.80515501384992, "code_postal": "94046", "stop_lon": 2.4319838813533523, "coord": [48.80515501384992, 2.4319838813533523], "stop_id": 3619779, "stop_desc": "17 AVENUE DU PROFESSEUR CADIOT - 94046", "stop_name": "11 NOVEMBRE 1918"}, "geometry": {"type": "Point", "coordinates": [2.4319838813533523, 48.80515501384992]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fc51477a2e18972591958bbb3f4c88daf8fe2930", "fields": {"departement": "94", "stop_lat": 48.80663219172674, "code_postal": "94046", "stop_lon": 2.427904476465979, "coord": [48.80663219172674, 2.427904476465979], "stop_id": 3619749, "stop_desc": "5 AVENUE DU PROFESSEUR CADIOT - 94046", "stop_name": "PROFESSEUR CADIOT"}, "geometry": {"type": "Point", "coordinates": [2.427904476465979, 48.80663219172674]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2b31d8eb85d2e21fae381d9c67a2bc3d1435c6c8", "fields": {"departement": "94", "stop_lat": 48.78734645800536, "code_postal": "94028", "stop_lon": 2.4466279027630926, "coord": [48.78734645800536, 2.4466279027630926], "stop_id": 3619762, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 94028", "stop_name": "UNIVERSITE"}, "geometry": {"type": "Point", "coordinates": [2.4466279027630926, 48.78734645800536]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7d83d76d1ec5255e3f4a96ff9a696e7a27560db6", "fields": {"departement": "94", "stop_lat": 48.78930898679784, "code_postal": "94028", "stop_lon": 2.4431362022867154, "coord": [48.78930898679784, 2.4431362022867154], "stop_id": 3619760, "stop_desc": "RUE PASTEUR VALERY RADOT - 94028", "stop_name": "MONTAIGUT"}, "geometry": {"type": "Point", "coordinates": [2.4431362022867154, 48.78930898679784]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4fe6471ee4efcc0a588436263eb555e8d8d74811", "fields": {"departement": "94", "stop_lat": 48.793424107840224, "code_postal": "94046", "stop_lon": 2.4341662551945347, "coord": [48.793424107840224, 2.4341662551945347], "stop_id": 3619754, "stop_desc": "218 RUE JEAN JAURES - 94046", "stop_name": "BELFORT"}, "geometry": {"type": "Point", "coordinates": [2.4341662551945347, 48.793424107840224]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "93e462476c12211d8b8054b3888ce1414ae55dc4", "fields": {"departement": "94", "stop_lat": 48.80267030048723, "code_postal": "94002", "stop_lon": 2.425598151502994, "coord": [48.80267030048723, 2.425598151502994], "stop_id": 3619797, "stop_desc": "FACE 16 B RUE MALLERET JOINVILLE - 94002", "stop_name": "MAISONS-ALFORT - ALFORTVILLE RER"}, "geometry": {"type": "Point", "coordinates": [2.425598151502994, 48.80267030048723]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "004fbe767da144a67da01be6c8ea148b53d08852", "fields": {"departement": "94", "stop_lat": 48.809556539237605, "code_postal": "94046", "stop_lon": 2.4549210064796254, "coord": [48.809556539237605, 2.4549210064796254], "stop_id": 3619954, "stop_desc": "FACE 2 RUE DE VENUS - 94046", "stop_name": "PONT DE MAISONS-ALFORT"}, "geometry": {"type": "Point", "coordinates": [2.4549210064796254, 48.809556539237605]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "24504ea4a35efb9b0554942180df33195dd2606c", "fields": {"departement": "94", "stop_lat": 48.7608206316157, "code_postal": "94073", "stop_lon": 2.399886827106586, "coord": [48.7608206316157, 2.399886827106586], "stop_id": 3620236, "stop_desc": "FACE 18 AVENUE GEORGES HALGOULT - 94073", "stop_name": "GEORGES HALGOULT"}, "geometry": {"type": "Point", "coordinates": [2.399886827106586, 48.7608206316157]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7b4e8206ffaa3790665ff10f82bea0da1fd961f3", "fields": {"departement": "94", "stop_lat": 48.765524735623956, "code_postal": "94022", "stop_lon": 2.409844938920653, "coord": [48.765524735623956, 2.409844938920653], "stop_id": 3620242, "stop_desc": "AVENUE JEAN JAURES - 94022", "stop_name": "CHOISY-LE-ROI RER"}, "geometry": {"type": "Point", "coordinates": [2.409844938920653, 48.765524735623956]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0ef4f201778d99aab95d108a72cbcb9b1f12a162", "fields": {"departement": "94", "stop_lat": 48.76577673270161, "code_postal": "94022", "stop_lon": 2.4093014390791234, "coord": [48.76577673270161, 2.4093014390791234], "stop_id": 3620243, "stop_desc": "AVENUE JEAN JAURES - 94022", "stop_name": "CHOISY-LE-ROI RER"}, "geometry": {"type": "Point", "coordinates": [2.4093014390791234, 48.76577673270161]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eed9b9bf9f3751031de56dd8c79025208e1aa490", "fields": {"departement": "94", "stop_lat": 48.76861641884663, "code_postal": "94028", "stop_lon": 2.463775144557499, "coord": [48.76861641884663, 2.463775144557499], "stop_id": 3620258, "stop_desc": "ROUTE DE LA POMPADOUR - 94028", "stop_name": "POINTE DU LAC"}, "geometry": {"type": "Point", "coordinates": [2.463775144557499, 48.76861641884663]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3a52a5695a58edc0bc467d2ea55586ddf87c236f", "fields": {"departement": "94", "stop_lat": 48.76777636972624, "code_postal": "94022", "stop_lon": 2.4166872861652084, "coord": [48.76777636972624, 2.4166872861652084], "stop_id": 3620245, "stop_desc": "37-39 AVENUE VICTOR HUGO - 94022", "stop_name": "PASTEUR"}, "geometry": {"type": "Point", "coordinates": [2.4166872861652084, 48.76777636972624]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bfb046e88efd9716a1eb89aeb5ff16adf34be70b", "fields": {"departement": "94", "stop_lat": 48.77079027066135, "code_postal": "94074", "stop_lon": 2.4469465855669457, "coord": [48.77079027066135, 2.4469465855669457], "stop_id": 3620254, "stop_desc": "0 AV DES ROSEAUX - 94074", "stop_name": "VAL POMPADOUR"}, "geometry": {"type": "Point", "coordinates": [2.4469465855669457, 48.77079027066135]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0e8ca1e5de06d8c121e243fc56661c7874f15dfd", "fields": {"departement": "94", "stop_lat": 48.77112302859888, "code_postal": "94074", "stop_lon": 2.446729724882822, "coord": [48.77112302859888, 2.446729724882822], "stop_id": 3620255, "stop_desc": "0 AV DES ROSEAUX - 94074", "stop_name": "VAL POMPADOUR"}, "geometry": {"type": "Point", "coordinates": [2.446729724882822, 48.77112302859888]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4e31173365bba04489e4e670cfb898fcd9f8663b", "fields": {"departement": "94", "stop_lat": 48.77342760185409, "code_postal": "94028", "stop_lon": 2.4427094824571096, "coord": [48.77342760185409, 2.4427094824571096], "stop_id": 3620252, "stop_desc": "0 TCSP - 94028", "stop_name": "BASSE QUINTE"}, "geometry": {"type": "Point", "coordinates": [2.4427094824571096, 48.77342760185409]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d350a3ef73a19129dc5f1625c7ebc106b18bac79", "fields": {"departement": "94", "stop_lat": 48.809081950256626, "code_postal": "94046", "stop_lon": 2.453123721150605, "coord": [48.809081950256626, 2.453123721150605], "stop_id": 3619923, "stop_desc": "212 AVENUE DE LA REPUBLIQUE - 94046", "stop_name": "PONT DE MAISONS-ALFORT"}, "geometry": {"type": "Point", "coordinates": [2.453123721150605, 48.809081950256626]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "77e201de321aca9dd4c96e21465f69676c26d6a9", "fields": {"departement": "94", "stop_lat": 48.80170746252592, "code_postal": "94046", "stop_lon": 2.427120352683719, "coord": [48.80170746252592, 2.427120352683719], "stop_id": 3619901, "stop_desc": "RUE FLEUTIAUX - 94046", "stop_name": "MAISONS-ALFORT - ALFORTVILLE RER"}, "geometry": {"type": "Point", "coordinates": [2.427120352683719, 48.80170746252592]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3ccfde042e4abe3467eec5047e8134ac5f6a4efe", "fields": {"departement": "94", "stop_lat": 48.80866666037178, "code_postal": "94046", "stop_lon": 2.4351744524613728, "coord": [48.80866666037178, 2.4351744524613728], "stop_id": 3619914, "stop_desc": "FACE 149 AVENUE DU GENERAL LECLERC - 94046", "stop_name": "STADE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.4351744524613728, 48.80866666037178]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "882d161e737b4628cbe0cc14c600e7d8bb63980f", "fields": {"departement": "94", "stop_lat": 48.80885525788095, "code_postal": "94046", "stop_lon": 2.4353517068018586, "coord": [48.80885525788095, 2.4353517068018586], "stop_id": 3619913, "stop_desc": "149-151 AVENUE DU GENERAL LECLERC - 94046", "stop_name": "STADE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.4353517068018586, 48.80885525788095]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "26d3b9263a1d11fd9e5fb5bfd76c87fcbb3068ee", "fields": {"departement": "94", "stop_lat": 48.80751530813747, "code_postal": "94046", "stop_lon": 2.4465479290850816, "coord": [48.80751530813747, 2.4465479290850816], "stop_id": 3619950, "stop_desc": "163 AVENUE DE LA REPUBLIQUE - 94046", "stop_name": "RUE DE LILLE"}, "geometry": {"type": "Point", "coordinates": [2.4465479290850816, 48.80751530813747]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7ad453457149def9db695f2b1546f5daa9333afd", "fields": {"departement": "94", "stop_lat": 48.808942621482075, "code_postal": "94046", "stop_lon": 2.457668352733885, "coord": [48.808942621482075, 2.457668352733885], "stop_id": 3619926, "stop_desc": "FACE 40 RUE DANIELLE CASANOVA - 94046", "stop_name": "PLANETES"}, "geometry": {"type": "Point", "coordinates": [2.457668352733885, 48.808942621482075]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ee19f4ffc713b5950f370539723759a1aa733fc7", "fields": {"departement": "94", "stop_lat": 48.8074424310896, "code_postal": "94046", "stop_lon": 2.437444548191373, "coord": [48.8074424310896, 2.437444548191373], "stop_id": 3619912, "stop_desc": "38 AVENUE DU GENERAL LECLERC - 94046", "stop_name": "CECILE"}, "geometry": {"type": "Point", "coordinates": [2.437444548191373, 48.8074424310896]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "905e24a2617f461efe2645fa1547feebfb85a251", "fields": {"departement": "94", "stop_lat": 48.8074424310896, "code_postal": "94046", "stop_lon": 2.437444548191373, "coord": [48.8074424310896, 2.437444548191373], "stop_id": 3619942, "stop_desc": "38 AVENUE DU GENERAL LECLERC - 94046", "stop_name": "CECILE"}, "geometry": {"type": "Point", "coordinates": [2.437444548191373, 48.8074424310896]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f52cb3a410c0500bb152e123070298c4b80f3476", "fields": {"departement": "94", "stop_lat": 48.76562400562745, "code_postal": "94028", "stop_lon": 2.471408962079818, "coord": [48.76562400562745, 2.471408962079818], "stop_id": 3619897, "stop_desc": "RUE FERNAND POUILLON - 94028", "stop_name": "EUROPARC"}, "geometry": {"type": "Point", "coordinates": [2.471408962079818, 48.76562400562745]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "39e4b74f3ff034e66f22d04896e1ec581dedb462", "fields": {"departement": "94", "stop_lat": 48.76602843811365, "code_postal": "94028", "stop_lon": 2.4714371990791824, "coord": [48.76602843811365, 2.4714371990791824], "stop_id": 3619896, "stop_desc": "R FERNAND POUILLON - 94028", "stop_name": "EUROPARC"}, "geometry": {"type": "Point", "coordinates": [2.4714371990791824, 48.76602843811365]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1c75cbb706eaa49e373523d7c8455ee112faa567", "fields": {"departement": "77", "stop_lat": 48.85582614188607, "code_postal": "77083", "stop_lon": 2.5834755904681095, "coord": [48.85582614188607, 2.5834755904681095], "stop_id": 3639437, "stop_desc": "110 RUE AUGUSTE VALLAUD - 77083", "stop_name": "ROND-POINT DES PYRAMIDES"}, "geometry": {"type": "Point", "coordinates": [2.5834755904681095, 48.85582614188607]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3c4174a19ea9152ae720c82888375357d4e33347", "fields": {"departement": "77", "stop_lat": 48.852715174476415, "code_postal": "77083", "stop_lon": 2.584100922374777, "coord": [48.852715174476415, 2.584100922374777], "stop_id": 3639435, "stop_desc": "AVENUE DES PYRAMIDES - 77083", "stop_name": "COLLEGE ARMAND LANOUX"}, "geometry": {"type": "Point", "coordinates": [2.584100922374777, 48.852715174476415]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e836465d114ae0190ebcdef4e079ea38d67297a4", "fields": {"departement": "94", "stop_lat": 48.76772680830617, "code_postal": "94011", "stop_lon": 2.4868195939863633, "coord": [48.76772680830617, 2.4868195939863633], "stop_id": 3620264, "stop_desc": "AV JEAN ROSTAND - 94011", "stop_name": "MESSIDOR-LIBERTES"}, "geometry": {"type": "Point", "coordinates": [2.4868195939863633, 48.76772680830617]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "714b1f552b28d6e32dcb8c84962be6b4e593c60d", "fields": {"departement": "94", "stop_lat": 48.77213174501956, "code_postal": "94071", "stop_lon": 2.506358979548106, "coord": [48.77213174501956, 2.506358979548106], "stop_id": 3620270, "stop_desc": "0 TCSP - 94071", "stop_name": "SUCY-BONNEUIL RER"}, "geometry": {"type": "Point", "coordinates": [2.506358979548106, 48.77213174501956]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "232c3613aba06e559830ddb71ef9874fc40ca0fb", "fields": {"departement": "94", "stop_lat": 48.78201271988064, "code_postal": "94028", "stop_lon": 2.4598228120093797, "coord": [48.78201271988064, 2.4598228120093797], "stop_id": 3619292, "stop_desc": "RUE MAURICE UTRILLO (D1B) - 94028", "stop_name": "LYCEE SAINT-EXUPERY"}, "geometry": {"type": "Point", "coordinates": [2.4598228120093797, 48.78201271988064]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f326e32d31d9f0a20066ef0698d5fc198e16aaba", "fields": {"departement": "94", "stop_lat": 48.78411852447511, "code_postal": "94055", "stop_lon": 2.53739498409188, "coord": [48.78411852447511, 2.53739498409188], "stop_id": 3619329, "stop_desc": "RUE CHAUSSEE DEPARTEMENTALE 33 - 94055", "stop_name": "OLIVIER D'ORMESSON"}, "geometry": {"type": "Point", "coordinates": [2.53739498409188, 48.78411852447511]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d44ee164f5668166e75c4699e996405801b95675", "fields": {"departement": "94", "stop_lat": 48.783956924854316, "code_postal": "94055", "stop_lon": 2.5372855526287292, "coord": [48.783956924854316, 2.5372855526287292], "stop_id": 3619330, "stop_desc": "CHEMIN DEPARTEMANTAL 33 - 94055", "stop_name": "OLIVIER D'ORMESSON"}, "geometry": {"type": "Point", "coordinates": [2.5372855526287292, 48.783956924854316]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4a7d17e06c122923938ea103420ee7b7fe76d496", "fields": {"departement": "94", "stop_lat": 48.790221732835874, "code_postal": "94055", "stop_lon": 2.5317461644125108, "coord": [48.790221732835874, 2.5317461644125108], "stop_id": 3619336, "stop_desc": "FACE 122 RUE D'AMBOILE - 94055", "stop_name": "NOISEAU-AMBOILE"}, "geometry": {"type": "Point", "coordinates": [2.5317461644125108, 48.790221732835874]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "44f53871a0260c39afacf59f470c2fdfd12aa204", "fields": {"departement": "94", "stop_lat": 48.775386531297464, "code_postal": "94071", "stop_lon": 2.5236537030314024, "coord": [48.775386531297464, 2.5236537030314024], "stop_id": 3619319, "stop_desc": "R DE LA FOSSE ROUGE - 94071", "stop_name": "LA FOSSE ROUGE"}, "geometry": {"type": "Point", "coordinates": [2.5236537030314024, 48.775386531297464]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c102c11ab0aa3749b1c0c09ccd76b4cecbb02857", "fields": {"departement": "94", "stop_lat": 48.786250502173885, "code_postal": "94055", "stop_lon": 2.5308607846746427, "coord": [48.786250502173885, 2.5308607846746427], "stop_id": 3619333, "stop_desc": "76-78 RUE D'AMBOILE - 94055", "stop_name": "AMBOILE-CENTRE"}, "geometry": {"type": "Point", "coordinates": [2.5308607846746427, 48.786250502173885]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6acef2caed8f5e5428f7cb6013bc18f11444dcae", "fields": {"departement": "92", "stop_lat": 48.8179051379773, "code_postal": "92046", "stop_lon": 2.3018552078239987, "coord": [48.8179051379773, 2.3018552078239987], "stop_id": 3619169, "stop_desc": "1 R GUY MOQUET - 92046", "stop_name": "AUGUSTIN DUMONT"}, "geometry": {"type": "Point", "coordinates": [2.3018552078239987, 48.8179051379773]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "613ab4e84c5d186a17fbc777e5267c0638122482", "fields": {"departement": "94", "stop_lat": 48.77790167824832, "code_postal": "94028", "stop_lon": 2.4631993828949934, "coord": [48.77790167824832, 2.4631993828949934], "stop_id": 3619295, "stop_desc": "RUE RENE ARCOS - 94028", "stop_name": "JOHN KENNEDY"}, "geometry": {"type": "Point", "coordinates": [2.4631993828949934, 48.77790167824832]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f751141bb2360837fd74d7dc8257f4918859bd0e", "fields": {"departement": "94", "stop_lat": 48.78294005510195, "code_postal": "94055", "stop_lon": 2.532616552498793, "coord": [48.78294005510195, 2.532616552498793], "stop_id": 3619332, "stop_desc": "29 RUE D'AMBOILE - 94055", "stop_name": "JULES FERRY"}, "geometry": {"type": "Point", "coordinates": [2.532616552498793, 48.78294005510195]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c3658fb2682ab2fa3f156441c4d074e7841dce0f", "fields": {"departement": "94", "stop_lat": 48.79155086953002, "code_postal": "94019", "stop_lon": 2.5324040901775438, "coord": [48.79155086953002, 2.5324040901775438], "stop_id": 3619337, "stop_desc": "RUE D'AMBOILE - 94019", "stop_name": "8 MAI 1945"}, "geometry": {"type": "Point", "coordinates": [2.5324040901775438, 48.79155086953002]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1edcc8f1df8ebb96891c0cb5a8d811d3bad01ad7", "fields": {"departement": "94", "stop_lat": 48.8440225144832, "code_postal": "94015", "stop_lon": 2.5260790072465844, "coord": [48.8440225144832, 2.5260790072465844], "stop_id": 3616887, "stop_desc": "AVENUE ETIENNE DE SILHOUETTE - 94015", "stop_name": "BRY-SUR-MARNE RER"}, "geometry": {"type": "Point", "coordinates": [2.5260790072465844, 48.8440225144832]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "39bde67fc5938485684f18921425e384be4b21cd", "fields": {"departement": "93", "stop_lat": 48.88345582949369, "code_postal": "93077", "stop_lon": 2.4977554485461115, "coord": [48.88345582949369, 2.4977554485461115], "stop_id": 3616899, "stop_desc": "ROUTE DE NOISY - 93077", "stop_name": "CIMETIERE DE VILLEMOMBLE"}, "geometry": {"type": "Point", "coordinates": [2.4977554485461115, 48.88345582949369]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "72853274ea31dd56161a93b2f3502f1e3031341a", "fields": {"departement": "93", "stop_lat": 48.883824240877665, "code_postal": "93077", "stop_lon": 2.5106343733176093, "coord": [48.883824240877665, 2.5106343733176093], "stop_id": 3616904, "stop_desc": "RUE GRANDE RUE - 93077", "stop_name": "CHATEAU DE VILLEMOMBLE"}, "geometry": {"type": "Point", "coordinates": [2.5106343733176093, 48.883824240877665]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e0ac21e07a47cef79a58229e4fbb3406bc982d00", "fields": {"departement": "93", "stop_lat": 48.8819846340026, "code_postal": "93077", "stop_lon": 2.5207801904987455, "coord": [48.8819846340026, 2.5207801904987455], "stop_id": 3616909, "stop_desc": "FACE 152 RUE GRANDE RUE - 93077", "stop_name": "BOULEVARD ANDRE"}, "geometry": {"type": "Point", "coordinates": [2.5207801904987455, 48.8819846340026]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "46c00ea4d8d98e811e4d53c4632f32e42fee5656", "fields": {"departement": "93", "stop_lat": 48.882703747741374, "code_postal": "93077", "stop_lon": 2.514759604548513, "coord": [48.882703747741374, 2.514759604548513], "stop_id": 3616906, "stop_desc": "FACE 73 RUE GRANDE RUE - 93077", "stop_name": "RUE DE NEUILLY"}, "geometry": {"type": "Point", "coordinates": [2.514759604548513, 48.882703747741374]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8a8d3cd8aa4c1949823c34f9dc6f1fb0d5870b43", "fields": {"departement": "93", "stop_lat": 48.88180455357744, "code_postal": "93077", "stop_lon": 2.5209975811063257, "coord": [48.88180455357744, 2.5209975811063257], "stop_id": 3616908, "stop_desc": "154-156 RUE GRANDE RUE - 93077", "stop_name": "BOULEVARD ANDRE"}, "geometry": {"type": "Point", "coordinates": [2.5209975811063257, 48.88180455357744]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7e5b1ceeb6caca3e43bbfb50891ab79fc9ea13ac", "fields": {"departement": "94", "stop_lat": 48.8426003519002, "code_postal": "94015", "stop_lon": 2.5329637627590316, "coord": [48.8426003519002, 2.5329637627590316], "stop_id": 3616884, "stop_desc": "17-19 RUE LEON MENU - 94015", "stop_name": "LAMARTINE"}, "geometry": {"type": "Point", "coordinates": [2.5329637627590316, 48.8426003519002]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "776a54b9634f62cf7796190cffd4c3c2c205ae3c", "fields": {"departement": "93", "stop_lat": 48.88634143318657, "code_postal": "93064", "stop_lon": 2.475700748332326, "coord": [48.88634143318657, 2.475700748332326], "stop_id": 3616891, "stop_desc": "AVENUE DE GAGNY - 93064", "stop_name": "ROSNY 2 NORD"}, "geometry": {"type": "Point", "coordinates": [2.475700748332326, 48.88634143318657]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9033a8acb199dacdf32b29497fef35b5c57af66d", "fields": {"departement": "94", "stop_lat": 48.84422929758358, "code_postal": "94015", "stop_lon": 2.531621835506577, "coord": [48.84422929758358, 2.531621835506577], "stop_id": 3616885, "stop_desc": "1 RUE LEON MENU - 94015", "stop_name": "CLEMENCEAU"}, "geometry": {"type": "Point", "coordinates": [2.531621835506577, 48.84422929758358]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2c5cd596b207373e5fc467e3514e963dda3a15c2", "fields": {"departement": "93", "stop_lat": 48.882641730764206, "code_postal": "93077", "stop_lon": 2.525879007924305, "coord": [48.882641730764206, 2.525879007924305], "stop_id": 3616910, "stop_desc": "184 RUE GRANDE RUE - 93077", "stop_name": "GAGNY RER"}, "geometry": {"type": "Point", "coordinates": [2.525879007924305, 48.882641730764206]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6d29d7b47ad2a5613eaf5d41a1c09f5a66e3aa60", "fields": {"departement": "94", "stop_lat": 48.823395811335416, "code_postal": "94079", "stop_lon": 2.542432954768838, "coord": [48.823395811335416, 2.542432954768838], "stop_id": 3619372, "stop_desc": "PL PIERRE SEMARD - 94079", "stop_name": "VILLIERS-SUR-MARNE - LE PLESSIS-TREVISE RER"}, "geometry": {"type": "Point", "coordinates": [2.542432954768838, 48.823395811335416]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "46909c777c655aef8ad1013d194aac8350708fdf", "fields": {"departement": "94", "stop_lat": 48.823619739852504, "code_postal": "94017", "stop_lon": 2.4958825713513435, "coord": [48.823619739852504, 2.4958825713513435], "stop_id": 3619641, "stop_desc": "115-113 AVENUE DU GENERAL DE GAULLE - 94017", "stop_name": "GENERAL DE GAULLE - STALINGRAD"}, "geometry": {"type": "Point", "coordinates": [2.4958825713513435, 48.823619739852504]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b5fad9b84ad82a53313fa1906dc170dd96037545", "fields": {"departement": "94", "stop_lat": 48.82410169064426, "code_postal": "94017", "stop_lon": 2.498402190458391, "coord": [48.82410169064426, 2.498402190458391], "stop_id": 3619640, "stop_desc": "134 AVENUE DU GENERAL DE GAULLE - 94017", "stop_name": "GENERAL DE GAULLE - STALINGRAD"}, "geometry": {"type": "Point", "coordinates": [2.498402190458391, 48.82410169064426]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0c940972aafb6573b8d1896d6dfa9129cb250efe", "fields": {"departement": "94", "stop_lat": 48.826920858983385, "code_postal": "94017", "stop_lon": 2.5070003322128103, "coord": [48.826920858983385, 2.5070003322128103], "stop_id": 3619645, "stop_desc": "FACE 240 AVENUE DU GENERAL DE GAULLE - 94017", "stop_name": "FOURCHETTE DE BRY"}, "geometry": {"type": "Point", "coordinates": [2.5070003322128103, 48.826920858983385]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a45da7061e90fcaa06079b736a962ba260c6307a", "fields": {"departement": "94", "stop_lat": 48.82235696607947, "code_postal": "94017", "stop_lon": 2.492475926398596, "coord": [48.82235696607947, 2.492475926398596], "stop_id": 3619638, "stop_desc": "92 AVENUE DU GENERAL DE GAULLE - 94017", "stop_name": "LES MARRONNIERS"}, "geometry": {"type": "Point", "coordinates": [2.492475926398596, 48.82235696607947]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "228d9e8fe48a0449940ed72facba63b3f04587d2", "fields": {"departement": "94", "stop_lat": 48.820974547612614, "code_postal": "94017", "stop_lon": 2.510778293039968, "coord": [48.820974547612614, 2.510778293039968], "stop_id": 3619648, "stop_desc": "49BIS-51 AVENUE DE LA REPUBLIQUE - 94017", "stop_name": "CITES JARDINS"}, "geometry": {"type": "Point", "coordinates": [2.510778293039968, 48.820974547612614]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1fdfbd8c9bac1a01ec3c1e701df164baeed42f40", "fields": {"departement": "94", "stop_lat": 48.8269284059736, "code_postal": "94017", "stop_lon": 2.5080076704411036, "coord": [48.8269284059736, 2.5080076704411036], "stop_id": 3619644, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 94017", "stop_name": "FOURCHETTE DE BRY"}, "geometry": {"type": "Point", "coordinates": [2.5080076704411036, 48.8269284059736]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "42a66b0094d3e67e597982a300f8f44550ee05ff", "fields": {"departement": "94", "stop_lat": 48.818809952600624, "code_postal": "94017", "stop_lon": 2.521768113566315, "coord": [48.818809952600624, 2.521768113566315], "stop_id": 3619656, "stop_desc": "FACE 68 RUE ALEXANDRE FOURNY - 94017", "stop_name": "BENOIT FRACHON"}, "geometry": {"type": "Point", "coordinates": [2.521768113566315, 48.818809952600624]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "02a69c7498481de8e34c05ae5b9353310ccfec86", "fields": {"departement": "77", "stop_lat": 48.83978016258339, "code_postal": "77083", "stop_lon": 2.6017398630101356, "coord": [48.83978016258339, 2.6017398630101356], "stop_id": 3639455, "stop_desc": "AVENUE FORESTIERE - 77083", "stop_name": "LES VIGNES DE BAILLY"}, "geometry": {"type": "Point", "coordinates": [2.6017398630101356, 48.83978016258339]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "94c45d810d93c5b1dd7a19c7bdb53f57d3bec7ef", "fields": {"departement": "77", "stop_lat": 48.854692679419884, "code_postal": "77083", "stop_lon": 2.5966676702967124, "coord": [48.854692679419884, 2.5966676702967124], "stop_id": 3639444, "stop_desc": "FACE 30 RUE DE CHELLES - 77083", "stop_name": "POINTE DE CHAMPS"}, "geometry": {"type": "Point", "coordinates": [2.5966676702967124, 48.854692679419884]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a61477308cf1ff2588a1681344ce5b8186ba042d", "fields": {"departement": "77", "stop_lat": 48.85851927532908, "code_postal": "77083", "stop_lon": 2.593472330867125, "coord": [48.85851927532908, 2.593472330867125], "stop_id": 3639442, "stop_desc": "66 AVENUE DE LA MORELLE - 77083", "stop_name": "LES PINSONS"}, "geometry": {"type": "Point", "coordinates": [2.593472330867125, 48.85851927532908]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "99b153ed9eaa3ef25d2015540bbde6a27086f456", "fields": {"departement": "93", "stop_lat": 48.82887277435235, "code_postal": "93051", "stop_lon": 2.574431258960761, "coord": [48.82887277435235, 2.574431258960761], "stop_id": 3639469, "stop_desc": "FACE 3 AV DES YVRIS - 93051", "stop_name": "VICTOR-HUGO"}, "geometry": {"type": "Point", "coordinates": [2.574431258960761, 48.82887277435235]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "abac89678d00793065ea3f4bf731fe5010be0571", "fields": {"departement": "77", "stop_lat": 48.840710319751324, "code_postal": "77083", "stop_lon": 2.591450906282933, "coord": [48.840710319751324, 2.591450906282933], "stop_id": 3639477, "stop_desc": "0 AV BLAISE PASCAL - 77083", "stop_name": "BIBLIOTHEQUE"}, "geometry": {"type": "Point", "coordinates": [2.591450906282933, 48.840710319751324]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2b1f0b5c98c2f61bf4d53043b5a92bf0df494830", "fields": {"departement": "77", "stop_lat": 48.84059304604478, "code_postal": "77083", "stop_lon": 2.591654571230189, "coord": [48.84059304604478, 2.591654571230189], "stop_id": 3639476, "stop_desc": "0 AV BLAISE PASCAL - 77083", "stop_name": "BIBLIOTHEQUE"}, "geometry": {"type": "Point", "coordinates": [2.591654571230189, 48.84059304604478]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "833e51a08508d6bd871df44c33dd1ffa2c15a808", "fields": {"departement": "77", "stop_lat": 48.835254079794645, "code_postal": "77083", "stop_lon": 2.5918053833245454, "coord": [48.835254079794645, 2.5918053833245454], "stop_id": 3639480, "stop_desc": "RUE GALILEE - 77083", "stop_name": "EINSTEIN-GALILEE"}, "geometry": {"type": "Point", "coordinates": [2.5918053833245454, 48.835254079794645]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5cf8278cd46fcb0e3b07f7fdae35f60430317843", "fields": {"departement": "77", "stop_lat": 48.83099239038411, "code_postal": "77169", "stop_lon": 2.5882994342302235, "coord": [48.83099239038411, 2.5882994342302235], "stop_id": 3639462, "stop_desc": "AV DE L'EUROPE - 77169", "stop_name": "LES 2 LACS"}, "geometry": {"type": "Point", "coordinates": [2.5882994342302235, 48.83099239038411]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5e5df7e401b2243e56c2ca832ddd90b025b3d340", "fields": {"departement": "93", "stop_lat": 48.923133690428365, "code_postal": "93027", "stop_lon": 2.3844953179804316, "coord": [48.923133690428365, 2.3844953179804316], "stop_id": 3663825, "stop_desc": "6 R SUZANNE MASSON - 93027", "stop_name": "LA COURNEUVE - AUBERVILLIERS RER"}, "geometry": {"type": "Point", "coordinates": [2.3844953179804316, 48.923133690428365]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "19ca97f577df42ab13e82ff9d35d2bf18b17f23b", "fields": {"departement": "93", "stop_lat": 48.92390665860271, "code_postal": "93027", "stop_lon": 2.384264180372188, "coord": [48.92390665860271, 2.384264180372188], "stop_id": 3663824, "stop_desc": "BOULEVARD PASTEUR - 93027", "stop_name": "LA COURNEUVE - AUBERVILLIERS RER"}, "geometry": {"type": "Point", "coordinates": [2.384264180372188, 48.92390665860271]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "280b4121ee8c55371576dc6a7ea702c4ef6d9642", "fields": {"departement": "93", "stop_lat": 48.92099148363308, "code_postal": "93001", "stop_lon": 2.392225562923133, "coord": [48.92099148363308, 2.392225562923133], "stop_id": 3663823, "stop_desc": "PETIT CHEMIN DU PONT BLANC - 93001", "stop_name": "PETIT CHEMIN DU PONT BLANC"}, "geometry": {"type": "Point", "coordinates": [2.392225562923133, 48.92099148363308]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a6cd28da2cc099f06f8f8198757ff16dd80d0183", "fields": {"departement": "94", "stop_lat": 48.80307737363469, "code_postal": "94068", "stop_lon": 2.4860914567450045, "coord": [48.80307737363469, 2.4860914567450045], "stop_id": 3663692, "stop_desc": "11 AVENUE DE LA REPUBLIQUE - 94068", "stop_name": "MAIRIE DE SAINT-MAUR"}, "geometry": {"type": "Point", "coordinates": [2.4860914567450045, 48.80307737363469]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ea207b5272fbd367ac395ec97522ca49ba82d2d6", "fields": {"departement": "94", "stop_lat": 48.807115850411975, "code_postal": "94068", "stop_lon": 2.476224250298953, "coord": [48.807115850411975, 2.476224250298953], "stop_id": 3663695, "stop_desc": "5-7 BOULEVARD RABELAIS - 94068", "stop_name": "LIBERATION - RABELAIS"}, "geometry": {"type": "Point", "coordinates": [2.476224250298953, 48.807115850411975]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7e24d27715baf75c97e009648ba888a113cccf41", "fields": {"departement": "94", "stop_lat": 48.79773232228551, "code_postal": "94068", "stop_lon": 2.483899386356818, "coord": [48.79773232228551, 2.483899386356818], "stop_id": 3663662, "stop_desc": "2 RUE ARISTIDE BRIAND - 94068", "stop_name": "BOULEVARD DE CRETEIL"}, "geometry": {"type": "Point", "coordinates": [2.483899386356818, 48.79773232228551]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "db5ac477ee8c2ab31530042c832a4de8e4ba6819", "fields": {"departement": "94", "stop_lat": 48.800640990095474, "code_postal": "94068", "stop_lon": 2.4715538589830284, "coord": [48.800640990095474, 2.4715538589830284], "stop_id": 3663699, "stop_desc": "80 RUE DU PONT DE CRETEIL - 94068", "stop_name": "PONT DE CRETEIL"}, "geometry": {"type": "Point", "coordinates": [2.4715538589830284, 48.800640990095474]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4a656b51c9a1c0d52c33344b0f45be535734abd2", "fields": {"departement": "94", "stop_lat": 48.79366722744981, "code_postal": "94068", "stop_lon": 2.4859692603369736, "coord": [48.79366722744981, 2.4859692603369736], "stop_id": 3663664, "stop_desc": "FACE 38 BOULEVARD DE BELLECHASSE - 94068", "stop_name": "ADAMVILLE"}, "geometry": {"type": "Point", "coordinates": [2.4859692603369736, 48.79366722744981]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2d31bba95cfa03f31e37bf0da7c42bc4a99c6f4a", "fields": {"departement": "94", "stop_lat": 48.80433445713847, "code_postal": "94068", "stop_lon": 2.4720260310108393, "coord": [48.80433445713847, 2.4720260310108393], "stop_id": 3663684, "stop_desc": "45-47 RUE DES REMISES - 94068", "stop_name": "RUE DES REMISES"}, "geometry": {"type": "Point", "coordinates": [2.4720260310108393, 48.80433445713847]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "46a4c48bac808b195ec37ebab21f297cbcccec98", "fields": {"departement": "94", "stop_lat": 48.81532886691478, "code_postal": "94046", "stop_lon": 2.4323698992611313, "coord": [48.81532886691478, 2.4323698992611313], "stop_id": 3663671, "stop_desc": "AVENUE FOCH - 94046", "stop_name": "LES 7 ARBRES"}, "geometry": {"type": "Point", "coordinates": [2.4323698992611313, 48.81532886691478]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "88a101de4fdc67f0861f02e332844177be552756", "fields": {"departement": "95", "stop_lat": 48.96002657728869, "code_postal": "95268", "stop_lon": 2.399595633378217, "coord": [48.96002657728869, 2.399595633378217], "stop_id": 3663955, "stop_desc": "FACE 7 AVENUE DE STALINGRAD - 95268", "stop_name": "LIMITE DES DEPARTEMENTS"}, "geometry": {"type": "Point", "coordinates": [2.399595633378217, 48.96002657728869]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bea41a5c0427ae1056f6484c12245528cee73729", "fields": {"departement": "95", "stop_lat": 48.986536137085146, "code_postal": "95277", "stop_lon": 2.4497935507385007, "coord": [48.986536137085146, 2.4497935507385007], "stop_id": 3663931, "stop_desc": "FACE 66 RUE DE PARIS - 95277", "stop_name": "HOTEL DE VILLE DE GONESSE"}, "geometry": {"type": "Point", "coordinates": [2.4497935507385007, 48.986536137085146]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3592823c3b28a912071ad5a89848ab98462b4390", "fields": {"departement": "93", "stop_lat": 48.95562568154806, "code_postal": "93072", "stop_lon": 2.394445730381359, "coord": [48.95562568154806, 2.394445730381359], "stop_id": 3663954, "stop_desc": "215 AVENUE DE STALINGRAD - 93072", "stop_name": "AVENUE DE STALINGRAD N0 215"}, "geometry": {"type": "Point", "coordinates": [2.394445730381359, 48.95562568154806]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2c48cd6c4a5a0b181f985b91d1c9500518174da9", "fields": {"departement": "93", "stop_lat": 48.95941606344707, "code_postal": "93072", "stop_lon": 2.3984758308820933, "coord": [48.95941606344707, 2.3984758308820933], "stop_id": 3663938, "stop_desc": "195 AVENUE DE STALINGRAD - 93072", "stop_name": "LIMITE DES DEPARTEMENTS"}, "geometry": {"type": "Point", "coordinates": [2.3984758308820933, 48.95941606344707]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3e243b9f1f237ab41c3873b9dd434bb1b91ca514", "fields": {"departement": "95", "stop_lat": 48.98367986243862, "code_postal": "95277", "stop_lon": 2.438140842334344, "coord": [48.98367986243862, 2.438140842334344], "stop_id": 3663924, "stop_desc": "11-13 RUE RAYMOND RAMBERT - 95277", "stop_name": "CHEMIN DU MOULIN D'ETIF"}, "geometry": {"type": "Point", "coordinates": [2.438140842334344, 48.98367986243862]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "221800fe980fda3ba2b1342e18911417f39bf8ae", "fields": {"departement": "95", "stop_lat": 48.98838702257805, "code_postal": "95277", "stop_lon": 2.4501389479315456, "coord": [48.98838702257805, 2.4501389479315456], "stop_id": 3663936, "stop_desc": "9 R EMMANUEL RAIN - 95277", "stop_name": "HOPITAL DE GONESSE"}, "geometry": {"type": "Point", "coordinates": [2.4501389479315456, 48.98838702257805]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b44ba5be6ca26f0c568623d2e762a39fed833581", "fields": {"departement": "95", "stop_lat": 48.985879261551, "code_postal": "95277", "stop_lon": 2.4598006155998506, "coord": [48.985879261551, 2.4598006155998506], "stop_id": 3663933, "stop_desc": "RUE D'ARSONVAL - 95277", "stop_name": "LA FONTAINE CYPIERE ZI"}, "geometry": {"type": "Point", "coordinates": [2.4598006155998506, 48.985879261551]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e0ceb4c17d4936cecd40eea86d4e0d16e6934beb", "fields": {"departement": "93", "stop_lat": 48.952904674188225, "code_postal": "93072", "stop_lon": 2.3901853459733466, "coord": [48.952904674188225, 2.3901853459733466], "stop_id": 3663953, "stop_desc": "160 AVENUE DE STALINGRAD - 93072", "stop_name": "LOUIS BORDES"}, "geometry": {"type": "Point", "coordinates": [2.3901853459733466, 48.952904674188225]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "878b927d87c50c4f257e416eb1693aed41fb84c0", "fields": {"departement": "95", "stop_lat": 48.9829634551839, "code_postal": "95277", "stop_lon": 2.4351220485369556, "coord": [48.9829634551839, 2.4351220485369556], "stop_id": 3663922, "stop_desc": "RUE RAYMOND RAMBERT - 95277", "stop_name": "LYCEE DE GONESSE"}, "geometry": {"type": "Point", "coordinates": [2.4351220485369556, 48.9829634551839]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e5fdbdec1f587f0a3a26983c02b6a72a778a3991", "fields": {"departement": "95", "stop_lat": 48.965350983897174, "code_postal": "95268", "stop_lon": 2.4079823650895498, "coord": [48.965350983897174, 2.4079823650895498], "stop_id": 3663957, "stop_desc": "144 AVENUE DE STALINGRAD - 95268", "stop_name": "CROIX BUARD"}, "geometry": {"type": "Point", "coordinates": [2.4079823650895498, 48.965350983897174]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5b5ba2d1ba63eb67a9782b502c5eec062efe852f", "fields": {"departement": "75", "stop_lat": 48.83330919354311, "code_postal": "75115", "stop_lon": 2.2774075885147833, "coord": [48.83330919354311, 2.2774075885147833], "stop_id": 4473348, "stop_desc": "PLACE DES MARTYRS DE LA RESISTANCE DE LA PORTE DE SEVRES - 75115", "stop_name": "SUZANNE LENGLEN"}, "geometry": {"type": "Point", "coordinates": [2.2774075885147833, 48.83330919354311]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eb5be7b633b01f0c845093925d63c57318d61659", "fields": {"departement": "75", "stop_lat": 48.832330067121525, "code_postal": "75115", "stop_lon": 2.278456975264492, "coord": [48.832330067121525, 2.278456975264492], "stop_id": 4473357, "stop_desc": "FACE 1 RUE DU COLONEL PIERRE AVIA - 75115", "stop_name": "LOUIS ARMAND"}, "geometry": {"type": "Point", "coordinates": [2.278456975264492, 48.832330067121525]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "95b9a9a603ad9689e8b73833ab72e6198fa79e90", "fields": {"departement": "75", "stop_lat": 48.82981201095135, "code_postal": "75115", "stop_lon": 2.2754513391086495, "coord": [48.82981201095135, 2.2754513391086495], "stop_id": 4473358, "stop_desc": "FACE 29 RUE DU COLONEL PIERRE AVIA - 75115", "stop_name": "COLONEL PIERRE AVIA"}, "geometry": {"type": "Point", "coordinates": [2.2754513391086495, 48.82981201095135]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "753aa41bdd713352fd7375ce434d720929c952af", "fields": {"departement": "75", "stop_lat": 48.828444674765805, "code_postal": "75115", "stop_lon": 2.2731524186663283, "coord": [48.828444674765805, 2.2731524186663283], "stop_id": 4473359, "stop_desc": "38 R DU COLONEL AVIA - 75115", "stop_name": "FRERES VOISIN"}, "geometry": {"type": "Point", "coordinates": [2.2731524186663283, 48.828444674765805]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d5f1afc2b41c8afae8409d7673b0949b0a524dad", "fields": {"departement": "92", "stop_lat": 48.827501031407145, "code_postal": "92040", "stop_lon": 2.273262483998071, "coord": [48.827501031407145, 2.273262483998071], "stop_id": 4473361, "stop_desc": "5 RUE DU GOUVERNEUR GENERAL EBOUE - 92040", "stop_name": "VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.273262483998071, 48.827501031407145]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "06a45944e60cc01ca5ed86eac806140dd57c46e9", "fields": {"departement": "92", "stop_lat": 48.82483196157134, "code_postal": "92040", "stop_lon": 2.2737557986340695, "coord": [48.82483196157134, 2.2737557986340695], "stop_id": 4473362, "stop_desc": "FACE 19 RUE KLEBER - 92040", "stop_name": "MAIRIE D'ISSY-METRO"}, "geometry": {"type": "Point", "coordinates": [2.2737557986340695, 48.82483196157134]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9046ca46a3313a3d73abc0fe86bb13e9e9dd0572", "fields": {"departement": "92", "stop_lat": 48.82189276006719, "code_postal": "92040", "stop_lon": 2.2733238426711146, "coord": [48.82189276006719, 2.2733238426711146], "stop_id": 4473364, "stop_desc": "24-26 RUE AUGUSTE GERVAIS - 92040", "stop_name": "MUSEE"}, "geometry": {"type": "Point", "coordinates": [2.2733238426711146, 48.82189276006719]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dfc6a061cd9af5e38066aa8641d8f2edc6164d0a", "fields": {"departement": "92", "stop_lat": 48.82283664125882, "code_postal": "92040", "stop_lon": 2.273649349876303, "coord": [48.82283664125882, 2.273649349876303], "stop_id": 4473365, "stop_desc": "13 BIS RUE AUGUSTE GERVAIS - 92040", "stop_name": "MUSEE"}, "geometry": {"type": "Point", "coordinates": [2.273649349876303, 48.82283664125882]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "824aef29ccfadf2456a8989686bad299e058bd94", "fields": {"departement": "92", "stop_lat": 48.81924553941387, "code_postal": "92040", "stop_lon": 2.2648751050171123, "coord": [48.81924553941387, 2.2648751050171123], "stop_id": 4473376, "stop_desc": "11 RUE DE L'EGALITE - 92040", "stop_name": "DEFENSE - EGALITE"}, "geometry": {"type": "Point", "coordinates": [2.2648751050171123, 48.81924553941387]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8a1b2f715295fd5e9fff020bb7f76b5c89f79413", "fields": {"departement": "92", "stop_lat": 48.816851975637036, "code_postal": "92040", "stop_lon": 2.260360030025392, "coord": [48.816851975637036, 2.260360030025392], "stop_id": 4473377, "stop_desc": "58 RUE DE L'EGALITE - 92040", "stop_name": "EPINETTES"}, "geometry": {"type": "Point", "coordinates": [2.260360030025392, 48.816851975637036]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "39d30976d9086178fdf15940b6fb9ac58760a351", "fields": {"departement": "92", "stop_lat": 48.81148493414833, "code_postal": "92023", "stop_lon": 2.2582859145650356, "coord": [48.81148493414833, 2.2582859145650356], "stop_id": 4473382, "stop_desc": "90 AVENUE HENRI BARBUSSE - 92023", "stop_name": "FLEURY"}, "geometry": {"type": "Point", "coordinates": [2.2582859145650356, 48.81148493414833]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9bad3eb8d2a10fc4ad5cb70312f4643896861184", "fields": {"departement": "92", "stop_lat": 48.80782092548795, "code_postal": "92048", "stop_lon": 2.249732489524222, "coord": [48.80782092548795, 2.249732489524222], "stop_id": 4473384, "stop_desc": "90 AVENUE ALDOLPHE SCHNEIDER - 92048", "stop_name": "RUE DES PEUPLIERS"}, "geometry": {"type": "Point", "coordinates": [2.249732489524222, 48.80782092548795]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b73e1d25b33152e9c5b4dab8ff767cc71fde6f51", "fields": {"departement": "92", "stop_lat": 48.808376802438694, "code_postal": "92048", "stop_lon": 2.2478945456893578, "coord": [48.808376802438694, 2.2478945456893578], "stop_id": 4473386, "stop_desc": "FACE 69 RUE DE BELGIQUE - 92048", "stop_name": "ORPHELINAT"}, "geometry": {"type": "Point", "coordinates": [2.2478945456893578, 48.808376802438694]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d9848e29f82ac604e08a31c0c70182a42aa99848", "fields": {"departement": "92", "stop_lat": 48.80801233889868, "code_postal": "92048", "stop_lon": 2.241526927414433, "coord": [48.80801233889868, 2.241526927414433], "stop_id": 4473389, "stop_desc": "21 RUE BANES - 92048", "stop_name": "VAL FLEURY RER"}, "geometry": {"type": "Point", "coordinates": [2.241526927414433, 48.80801233889868]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cbcc544325821a30c3aa7ee2435194d274ad1354", "fields": {"departement": "92", "stop_lat": 48.80783182434355, "code_postal": "92048", "stop_lon": 2.2405883554701855, "coord": [48.80783182434355, 2.2405883554701855], "stop_id": 4473390, "stop_desc": "AVENUE LOUVOIS - 92048", "stop_name": "VAL FLEURY RER"}, "geometry": {"type": "Point", "coordinates": [2.2405883554701855, 48.80783182434355]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bacedc72f559bfc6dbcfd25ff9bf4dfbf9b057b1", "fields": {"departement": "92", "stop_lat": 48.80648020167826, "code_postal": "92048", "stop_lon": 2.236427141669803, "coord": [48.80648020167826, 2.236427141669803], "stop_id": 4473395, "stop_desc": "FACE 9 R DE L'EGLISE - 92048", "stop_name": "EGLISE DE MEUDON"}, "geometry": {"type": "Point", "coordinates": [2.236427141669803, 48.80648020167826]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5d3fc80a8a8875646cc02ee0a83a8f4eded36faa", "fields": {"departement": "92", "stop_lat": 48.81879641264312, "code_postal": "92048", "stop_lon": 2.229570900490973, "coord": [48.81879641264312, 2.229570900490973], "stop_id": 4473403, "stop_desc": "PLACE DE LA GARE - 92048", "stop_name": "GARE DE BELLEVUE"}, "geometry": {"type": "Point", "coordinates": [2.229570900490973, 48.81879641264312]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "43dd2136212c8283a473e15495e03d836cd5ebe3", "fields": {"departement": "92", "stop_lat": 48.82287845737709, "code_postal": "92072", "stop_lon": 2.2217223427454194, "coord": [48.82287845737709, 2.2217223427454194], "stop_id": 4473408, "stop_desc": "24 AVENUE DE LA DIVISION LECLERC - 92072", "stop_name": "BRIMBORION - DIVISION LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.2217223427454194, 48.82287845737709]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a21e2122ff8e27c6f03a533ba36ce620f253cc1b", "fields": {"departement": "92", "stop_lat": 48.830667352064815, "code_postal": "92040", "stop_lon": 2.278445245919053, "coord": [48.830667352064815, 2.278445245919053], "stop_id": 4473421, "stop_desc": "23 RUE GUYNEMER - 92040", "stop_name": "SEVERINE"}, "geometry": {"type": "Point", "coordinates": [2.278445245919053, 48.830667352064815]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a655da55847c9c6932963edbde5007a08023d905", "fields": {"departement": "92", "stop_lat": 48.827185492025485, "code_postal": "92040", "stop_lon": 2.271479650647873, "coord": [48.827185492025485, 2.271479650647873], "stop_id": 4473551, "stop_desc": "8 RUE MARCEAU - 92040", "stop_name": "MARCEAU"}, "geometry": {"type": "Point", "coordinates": [2.271479650647873, 48.827185492025485]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0891d0dc893a77a6c3bf33d2bab4552f1c04b09c", "fields": {"departement": "92", "stop_lat": 48.82744612612632, "code_postal": "92040", "stop_lon": 2.2714657078577885, "coord": [48.82744612612632, 2.2714657078577885], "stop_id": 4473552, "stop_desc": "RUE MARCEAU - 92040", "stop_name": "MARCEAU"}, "geometry": {"type": "Point", "coordinates": [2.2714657078577885, 48.82744612612632]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "97f99d76c7e5dd0e57f0bcdd4d2e39cc0b21b0ef", "fields": {"departement": "92", "stop_lat": 48.81686043583961, "code_postal": "92040", "stop_lon": 2.274813495453526, "coord": [48.81686043583961, 2.274813495453526], "stop_id": 4473559, "stop_desc": "109 AVENUE DE LA PAIX - 92040", "stop_name": "GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.274813495453526, 48.81686043583961]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f49b283d58cb5418c9adab01957fd79e1e0f9c4d", "fields": {"departement": "92", "stop_lat": 48.814354838357865, "code_postal": "92046", "stop_lon": 2.278708688999013, "coord": [48.814354838357865, 2.278708688999013], "stop_id": 4473561, "stop_desc": "BD DE STALINGRAD - 92046", "stop_name": "CLOS MONTHOLON"}, "geometry": {"type": "Point", "coordinates": [2.278708688999013, 48.814354838357865]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3cf0b4fc208e58ffbfcd539a576dd0032e825837", "fields": {"departement": "92", "stop_lat": 48.815102808351945, "code_postal": "92046", "stop_lon": 2.2828994837013292, "coord": [48.815102808351945, 2.2828994837013292], "stop_id": 4473563, "stop_desc": "FACE 35 BOULEVARD STALINGRAD - 92046", "stop_name": "LOUIS GIRARD"}, "geometry": {"type": "Point", "coordinates": [2.2828994837013292, 48.815102808351945]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4e8e52d7afbc62d6b32ca7e3ed0f1f843201be8d", "fields": {"departement": "92", "stop_lat": 48.811217620547396, "code_postal": "92020", "stop_lon": 2.299764105927095, "coord": [48.811217620547396, 2.299764105927095], "stop_id": 4473575, "stop_desc": "AVENUE PIERRE BROSSOLETTE - 92020", "stop_name": "CHATILLON-MONTROUGE"}, "geometry": {"type": "Point", "coordinates": [2.299764105927095, 48.811217620547396]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7ec4892244c69c712245c6ed38c234c40e50517e", "fields": {"departement": "92", "stop_lat": 48.81065344151417, "code_postal": "92007", "stop_lon": 2.306963170005201, "coord": [48.81065344151417, 2.306963170005201], "stop_id": 4473577, "stop_desc": "AVENUE MARX DORMOY - 92007", "stop_name": "MAURICE ARNOUX"}, "geometry": {"type": "Point", "coordinates": [2.306963170005201, 48.81065344151417]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a0e894d0b432736e5415c835410233562ec142cd", "fields": {"departement": "94", "stop_lat": 48.80720498540677, "code_postal": "94043", "stop_lon": 2.352712392424016, "coord": [48.80720498540677, 2.352712392424016], "stop_id": 4473595, "stop_desc": "50 AVENUE CHARLES GIDE - 94043", "stop_name": "BARNUFLES-LA PISCINE"}, "geometry": {"type": "Point", "coordinates": [2.352712392424016, 48.80720498540677]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c64da3564820d8db6e1ba6282c6f7a6d216dc0e0", "fields": {"departement": "94", "stop_lat": 48.80943303655347, "code_postal": "94043", "stop_lon": 2.3586460244237313, "coord": [48.80943303655347, 2.3586460244237313], "stop_id": 4473596, "stop_desc": "1 RUE DE VERDUN - 94043", "stop_name": "HOPITAL DU KREMLIN-BICETRE"}, "geometry": {"type": "Point", "coordinates": [2.3586460244237313, 48.80943303655347]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e1e387e4463535f1fb4301bd089a50c49355a062", "fields": {"departement": "94", "stop_lat": 48.81013321723447, "code_postal": "94043", "stop_lon": 2.3630144519730214, "coord": [48.81013321723447, 2.3630144519730214], "stop_id": 4473598, "stop_desc": "RUE EDMOND MICHELET - 94043", "stop_name": "LE KREMLIN-BICETRE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.3630144519730214, 48.81013321723447]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c38f5cf8dc56a59f2511eca8e2389f2f1a500125", "fields": {"departement": "94", "stop_lat": 48.81298069878652, "code_postal": "94041", "stop_lon": 2.369711324098239, "coord": [48.81298069878652, 2.369711324098239], "stop_id": 4473601, "stop_desc": "0 R PAUL ANDRIEUX - 94041", "stop_name": "CIMETIERE PARISIEN - PLACE DU GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.369711324098239, 48.81298069878652]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a857c1d0a89a4668de21e2301cd62512251736bf", "fields": {"departement": "94", "stop_lat": 48.808395797344296, "code_postal": "94041", "stop_lon": 2.3736546193882346, "coord": [48.808395797344296, 2.3736546193882346], "stop_id": 4473602, "stop_desc": "78 AVENUE DE VERDUN - 94041", "stop_name": "CARNOT"}, "geometry": {"type": "Point", "coordinates": [2.3736546193882346, 48.808395797344296]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "483c285e2f7f1f8c00322fef800712ae8a88f2cb", "fields": {"departement": "94", "stop_lat": 48.80827832747952, "code_postal": "94041", "stop_lon": 2.3756548284064114, "coord": [48.80827832747952, 2.3756548284064114], "stop_id": 4473605, "stop_desc": "34 AVENUE HENRI BARBUSSE - 94041", "stop_name": "VERDUN-BARBUSSE"}, "geometry": {"type": "Point", "coordinates": [2.3756548284064114, 48.80827832747952]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "11f3b4f43c83a4ce7828988708c84ace45b3520e", "fields": {"departement": "94", "stop_lat": 48.81046099318538, "code_postal": "94041", "stop_lon": 2.379670802090634, "coord": [48.81046099318538, 2.379670802090634], "stop_id": 4473607, "stop_desc": "2 AVENUE HENRI BARBUSSE - 94041", "stop_name": "JEAN LE GALLEU"}, "geometry": {"type": "Point", "coordinates": [2.379670802090634, 48.81046099318538]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2a328946fbfe2fc65f3666deb416ac0d050405eb", "fields": {"departement": "94", "stop_lat": 48.81390846585484, "code_postal": "94041", "stop_lon": 2.3893087213234336, "coord": [48.81390846585484, 2.3893087213234336], "stop_id": 4473613, "stop_desc": "66 AVENUE GEORGES GOSNAT - 94041", "stop_name": "IVRY-SUR-SEINE RER"}, "geometry": {"type": "Point", "coordinates": [2.3893087213234336, 48.81390846585484]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c9d347728ea89c1e7a45a8352d1e5cf9ae66a191", "fields": {"departement": "94", "stop_lat": 48.81448967910098, "code_postal": "94041", "stop_lon": 2.3957463869809015, "coord": [48.81448967910098, 2.3957463869809015], "stop_id": 4473616, "stop_desc": "31 BD DE BRANDEBOURG - 94041", "stop_name": "INSURRECTION D'AOUT 1944"}, "geometry": {"type": "Point", "coordinates": [2.3957463869809015, 48.81448967910098]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1c74c7ac44ff5401f6ede14bfbdd3b686097868a", "fields": {"departement": "92", "stop_lat": 48.809847461094996, "code_postal": "92049", "stop_lon": 2.3223268856022465, "coord": [48.809847461094996, 2.3223268856022465], "stop_id": 4473622, "stop_desc": "FACE 25-27 AVENUE MARX DORMOY - 92049", "stop_name": "AVENUE ET FORT DE MONTROUGE"}, "geometry": {"type": "Point", "coordinates": [2.3223268856022465, 48.809847461094996]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ee1d112ecf41f5ef20011d4045e285bfea451309", "fields": {"departement": "92", "stop_lat": 48.81094253979071, "code_postal": "92046", "stop_lon": 2.285271653231755, "coord": [48.81094253979071, 2.285271653231755], "stop_id": 4473638, "stop_desc": "BOULEVARD HENRI BARBUSSE - 92046", "stop_name": "BARBUSSE-VEDRINES"}, "geometry": {"type": "Point", "coordinates": [2.285271653231755, 48.81094253979071]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "44dedf2bc193ffda7da4c534ab309793db03ebac", "fields": {"departement": "92", "stop_lat": 48.80873378036129, "code_postal": "92020", "stop_lon": 2.290662452573169, "coord": [48.80873378036129, 2.290662452573169], "stop_id": 4473639, "stop_desc": "2 RUE JULES VEDRINES - 92020", "stop_name": "JEAN MERMOZ"}, "geometry": {"type": "Point", "coordinates": [2.290662452573169, 48.80873378036129]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0a29eeb198689ec00167bc9f01ce2c4536c0a312", "fields": {"departement": "92", "stop_lat": 48.81128070086906, "code_postal": "92020", "stop_lon": 2.3002947806132377, "coord": [48.81128070086906, 2.3002947806132377], "stop_id": 4473642, "stop_desc": "204 AVENUE DE PARIS - 92020", "stop_name": "CHATILLON-MONTROUGE"}, "geometry": {"type": "Point", "coordinates": [2.3002947806132377, 48.81128070086906]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dc659833f21210917a07294eab97224849e19be0", "fields": {"departement": "92", "stop_lat": 48.81065344151417, "code_postal": "92007", "stop_lon": 2.306963170005201, "coord": [48.81065344151417, 2.306963170005201], "stop_id": 4473644, "stop_desc": "AVENUE MARX DORMOY - 92007", "stop_name": "MAURICE ARNOUX"}, "geometry": {"type": "Point", "coordinates": [2.306963170005201, 48.81065344151417]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e206f15751022950433b1b3bb414c1402ad10693", "fields": {"departement": "94", "stop_lat": 48.805147413569976, "code_postal": "94043", "stop_lon": 2.34664323505667, "coord": [48.805147413569976, 2.34664323505667], "stop_id": 4473655, "stop_desc": "91-93 AVENUE CHARLES GIDE - 94043", "stop_name": "LYCEE DARIUS MILHAUD - CHARLES GIDE"}, "geometry": {"type": "Point", "coordinates": [2.34664323505667, 48.805147413569976]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6f0a267d1e6e922525f29203402656a879da7a5f", "fields": {"departement": "94", "stop_lat": 48.81013321723447, "code_postal": "94043", "stop_lon": 2.3630144519730214, "coord": [48.81013321723447, 2.3630144519730214], "stop_id": 4473658, "stop_desc": "RUE EDMOND MICHELET - 94043", "stop_name": "LE KREMLIN-BICETRE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.3630144519730214, 48.81013321723447]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "58dac834cadc81242e6b76f9a8bf2e1c4f84e543", "fields": {"departement": "94", "stop_lat": 48.81010133140996, "code_postal": "94041", "stop_lon": 2.380092353192655, "coord": [48.81010133140996, 2.380092353192655], "stop_id": 4473662, "stop_desc": "100 RUE JEAN LE GALLEU - 94041", "stop_name": "JEAN LE GALLEU"}, "geometry": {"type": "Point", "coordinates": [2.380092353192655, 48.81010133140996]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "32f9f678e8ab64806c51f5ae06c2b64a70a8e297", "fields": {"departement": "94", "stop_lat": 48.81406097593005, "code_postal": "94041", "stop_lon": 2.3899484945302714, "coord": [48.81406097593005, 2.3899484945302714], "stop_id": 4473665, "stop_desc": "FACE 64 AVENUE GEORGES GOSNAT - 94041", "stop_name": "IVRY-SUR-SEINE RER"}, "geometry": {"type": "Point", "coordinates": [2.3899484945302714, 48.81406097593005]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "859326392f2bd6fc61cd5d90768c05339ea9197b", "fields": {"departement": "94", "stop_lat": 48.81513779459741, "code_postal": "94041", "stop_lon": 2.3936785151763447, "coord": [48.81513779459741, 2.3936785151763447], "stop_id": 4473666, "stop_desc": "53 R MOLIERE - 94041", "stop_name": "MOLIERE"}, "geometry": {"type": "Point", "coordinates": [2.3936785151763447, 48.81513779459741]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3d3d05ae12ea41cb2716b7d62b6869e28b03f301", "fields": {"departement": "94", "stop_lat": 48.81487294715123, "code_postal": "94041", "stop_lon": 2.4019389847779085, "coord": [48.81487294715123, 2.4019389847779085], "stop_id": 4473668, "stop_desc": "121 BOULEVARD PAUL VAILLANT-COUTURIER - 94041", "stop_name": "GAMBETTA"}, "geometry": {"type": "Point", "coordinates": [2.4019389847779085, 48.81487294715123]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "65e868189a2f32055c913728dc271e787b1d9f93", "fields": {"departement": "94", "stop_lat": 48.76829332558924, "code_postal": "94021", "stop_lon": 2.3677934294587164, "coord": [48.76829332558924, 2.3677934294587164], "stop_id": 4480117, "stop_desc": "240 AVENUE DE STALINGRAD - 94021", "stop_name": "BRETAGNE"}, "geometry": {"type": "Point", "coordinates": [2.3677934294587164, 48.76829332558924]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cce70435d8bcf4febf2595d9e702f595612b85ec", "fields": {"departement": "92", "stop_lat": 48.8457913597342, "code_postal": "92064", "stop_lon": 2.216197168830745, "coord": [48.8457913597342, 2.216197168830745], "stop_id": 4532987, "stop_desc": "6 RUE COUTUREAU - 92064", "stop_name": "GARE DE SAINT-CLOUD"}, "geometry": {"type": "Point", "coordinates": [2.216197168830745, 48.8457913597342]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5a5d83fd2fadf89c6792d62e8e1655056ece336a", "fields": {"departement": "92", "stop_lat": 48.849154656764874, "code_postal": "92064", "stop_lon": 2.2013591395963967, "coord": [48.849154656764874, 2.2013591395963967], "stop_id": 4532992, "stop_desc": "FACE 161 R DE LA PORTE JAUNE - 92064", "stop_name": "FOCH - 19 JANVIER"}, "geometry": {"type": "Point", "coordinates": [2.2013591395963967, 48.849154656764874]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "69df26b88dddad7ca21828d8b081fdbe74e71148", "fields": {"departement": "92", "stop_lat": 48.85469637948016, "code_postal": "92063", "stop_lon": 2.198280205065901, "coord": [48.85469637948016, 2.198280205065901], "stop_id": 4532995, "stop_desc": "103 R DU COLONEL DE ROCHEBRUNE - 92063", "stop_name": "LES SUISSES"}, "geometry": {"type": "Point", "coordinates": [2.198280205065901, 48.85469637948016]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3a2e695637e400aec67b49946e8f8a4b3fd32bb0", "fields": {"departement": "92", "stop_lat": 48.85147893115728, "code_postal": "92064", "stop_lon": 2.206269428070967, "coord": [48.85147893115728, 2.206269428070967], "stop_id": 4533002, "stop_desc": "71 R DE BUZENVAL - 92064", "stop_name": "CHAMP DE COURSES"}, "geometry": {"type": "Point", "coordinates": [2.206269428070967, 48.85147893115728]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b4244945aece9a4bf48ac6c2e101e32fe86726ec", "fields": {"departement": "92", "stop_lat": 48.84917444315509, "code_postal": "92064", "stop_lon": 2.2111777879829897, "coord": [48.84917444315509, 2.2111777879829897], "stop_id": 4533003, "stop_desc": "13 R DE BUZENVAL - 92064", "stop_name": "BUCOURT"}, "geometry": {"type": "Point", "coordinates": [2.2111777879829897, 48.84917444315509]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fc7f4d22c830eebd43cd74f8003d6bc2ff8e889d", "fields": {"departement": "92", "stop_lat": 48.856948894847605, "code_postal": "92064", "stop_lon": 2.220270808563876, "coord": [48.856948894847605, 2.220270808563876], "stop_id": 4533005, "stop_desc": "PL SANTOS DUMONT - 92064", "stop_name": "LES COTEAUX-TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.220270808563876, 48.856948894847605]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "909f73cd4328888ba77f9cd19c8f7ce691a2884e", "fields": {"departement": "92", "stop_lat": 48.856948894847605, "code_postal": "92064", "stop_lon": 2.220270808563876, "coord": [48.856948894847605, 2.220270808563876], "stop_id": 4533006, "stop_desc": "PL SANTOS DUMONT - 92064", "stop_name": "LES COTEAUX-TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.220270808563876, 48.856948894847605]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "826f02ae4422c9a2128ed8ee4156f5963fe06fa3", "fields": {"departement": "92", "stop_lat": 48.85932270951459, "code_postal": "92064", "stop_lon": 2.2125288217257935, "coord": [48.85932270951459, 2.2125288217257935], "stop_id": 4533009, "stop_desc": "FACE 272 BOULEVARD DE LA REPUBLIQUE - 92064", "stop_name": "VAL D'OR"}, "geometry": {"type": "Point", "coordinates": [2.2125288217257935, 48.85932270951459]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ffe629fbd8f2f041e2cd8744a40182f419d99c9a", "fields": {"departement": "92", "stop_lat": 48.84939309337443, "code_postal": "92064", "stop_lon": 2.2139962291543736, "coord": [48.84939309337443, 2.2139962291543736], "stop_id": 4533015, "stop_desc": "FACE 6 R DE BUZENVAL - 92064", "stop_name": "LYCEE DE SAINT-CLOUD"}, "geometry": {"type": "Point", "coordinates": [2.2139962291543736, 48.84939309337443]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e0348971c878efeb819f889ea31b79b23b714399", "fields": {"departement": "92", "stop_lat": 48.8457913597342, "code_postal": "92064", "stop_lon": 2.216197168830745, "coord": [48.8457913597342, 2.216197168830745], "stop_id": 4533017, "stop_desc": "6 RUE COUTUREAU - 92064", "stop_name": "GARE DE SAINT-CLOUD"}, "geometry": {"type": "Point", "coordinates": [2.216197168830745, 48.8457913597342]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "87ada6bba62d8a063fddfc8244e2af322b22a9e7", "fields": {"departement": "92", "stop_lat": 48.84451824291562, "code_postal": "92064", "stop_lon": 2.2105491074089265, "coord": [48.84451824291562, 2.2105491074089265], "stop_id": 4533020, "stop_desc": "37 BOULEVARD DE LA REPUBLIQUE - 92064", "stop_name": "MARCHE DE SAINT-CLOUD"}, "geometry": {"type": "Point", "coordinates": [2.2105491074089265, 48.84451824291562]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "27e2483af9d903f986401babd099224c50a237ff", "fields": {"departement": "92", "stop_lat": 48.82124282643555, "code_postal": "92077", "stop_lon": 2.1755307824821752, "coord": [48.82124282643555, 2.1755307824821752], "stop_id": 4533035, "stop_desc": "FACE 123 R DE VERSAILLES - 92077", "stop_name": "LES SAPINS BLEUS"}, "geometry": {"type": "Point", "coordinates": [2.1755307824821752, 48.82124282643555]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d947e786eec46835195acc9a46fddb95dd731efd", "fields": {"departement": "92", "stop_lat": 48.81829859499256, "code_postal": "92077", "stop_lon": 2.1653732261735175, "coord": [48.81829859499256, 2.1653732261735175], "stop_id": 4533039, "stop_desc": "FACE 213 RUE DE VERSAILLES - 92077", "stop_name": "FAUSSES REPOSES"}, "geometry": {"type": "Point", "coordinates": [2.1653732261735175, 48.81829859499256]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ee202b6dc7758fe10f908f252bd1a5a43f3aa7c9", "fields": {"departement": "92", "stop_lat": 48.81450241207201, "code_postal": "92077", "stop_lon": 2.1570298159855676, "coord": [48.81450241207201, 2.1570298159855676], "stop_id": 4533043, "stop_desc": "AVENUE DES ETATS-UNIS - 92077", "stop_name": "PORTE DES HAUTS-DE-SEINE"}, "geometry": {"type": "Point", "coordinates": [2.1570298159855676, 48.81450241207201]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1f16e3e37107fdb46351eda7cf8faa0c6823010f", "fields": {"departement": "78", "stop_lat": 48.8109519874862, "code_postal": "78646", "stop_lon": 2.151027335173642, "coord": [48.8109519874862, 2.151027335173642], "stop_id": 4533048, "stop_desc": "94 AV DES ETATS-UNIS - 78646", "stop_name": "UNIVERSITE"}, "geometry": {"type": "Point", "coordinates": [2.151027335173642, 48.8109519874862]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "559fc3497dca1e2fc36e3548089683288d881faa", "fields": {"departement": "78", "stop_lat": 48.80980073246742, "code_postal": "78646", "stop_lon": 2.1340488515269387, "coord": [48.80980073246742, 2.1340488515269387], "stop_id": 4533049, "stop_desc": "55 R DU MARECHAL FOCH - 78646", "stop_name": "GARE DE VERSAILLES - RIVE DROITE"}, "geometry": {"type": "Point", "coordinates": [2.1340488515269387, 48.80980073246742]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fcf9a5d05550661300f9b4d8e053667229c05ba6", "fields": {"departement": "93", "stop_lat": 48.886477030775175, "code_postal": "93064", "stop_lon": 2.4750197118973545, "coord": [48.886477030775175, 2.4750197118973545], "stop_id": 4557266, "stop_desc": "NR - 93064", "stop_name": "ROSNY 2 - NORD"}, "geometry": {"type": "Point", "coordinates": [2.4750197118973545, 48.886477030775175]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a6caa2094c01639c2e9e9030619319f76d9db21f", "fields": {"departement": "93", "stop_lat": 48.88056605010287, "code_postal": "93064", "stop_lon": 2.4804136914472807, "coord": [48.88056605010287, 2.4804136914472807], "stop_id": 4557269, "stop_desc": "RUE CONRAD ADENAUER - 93064", "stop_name": "LEON BLUM"}, "geometry": {"type": "Point", "coordinates": [2.4804136914472807, 48.88056605010287]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1fba917713021ed17b85d68388b15fcd5bc4677c", "fields": {"departement": "93", "stop_lat": 48.87717850845737, "code_postal": "93064", "stop_lon": 2.479859315788344, "coord": [48.87717850845737, 2.479859315788344], "stop_id": 4557270, "stop_desc": "45 AVENUE DU GENERAL DE GAULLE - 93064", "stop_name": "GABRIEL PERI - DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.479859315788344, 48.87717850845737]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "275e2b9fbd2cc43dc03050611bcd7a448ccb561b", "fields": {"departement": "93", "stop_lat": 48.8633048846353, "code_postal": "93064", "stop_lon": 2.4919855077691397, "coord": [48.8633048846353, 2.4919855077691397], "stop_id": 4557275, "stop_desc": "FACE 173 R VICTOR HUGO - 93064", "stop_name": "SAINT-EXUPERY"}, "geometry": {"type": "Point", "coordinates": [2.4919855077691397, 48.8633048846353]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a9778c40462f0385510dcc5dc7b9536f5cf435f2", "fields": {"departement": "93", "stop_lat": 48.86355062556288, "code_postal": "93064", "stop_lon": 2.4964678637045843, "coord": [48.86355062556288, 2.4964678637045843], "stop_id": 4557276, "stop_desc": "RUE MISSAK MANOUCHIAN - 93064", "stop_name": "MISSAK MANOUCHIAN"}, "geometry": {"type": "Point", "coordinates": [2.4964678637045843, 48.86355062556288]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "32884b2592d0533852ef38a170a23214b1485cd0", "fields": {"departement": "93", "stop_lat": 48.86687408052309, "code_postal": "93064", "stop_lon": 2.4978675966688955, "coord": [48.86687408052309, 2.4978675966688955], "stop_id": 4557277, "stop_desc": "FACE 55 RUE DE STRASBOURG - 93064", "stop_name": "RUE DU RHIN"}, "geometry": {"type": "Point", "coordinates": [2.4978675966688955, 48.86687408052309]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "053a83ffc138d67b01b9ab9d0de14a65f161d8bb", "fields": {"departement": "93", "stop_lat": 48.866951337008146, "code_postal": "93064", "stop_lon": 2.500537914289821, "coord": [48.866951337008146, 2.500537914289821], "stop_id": 4557279, "stop_desc": "RUE DE STRASBOURG - 93064", "stop_name": "STRASBOURG"}, "geometry": {"type": "Point", "coordinates": [2.500537914289821, 48.866951337008146]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "faf00f0cb9e49249771b99ba2c214a258e39096f", "fields": {"departement": "93", "stop_lat": 48.8670774582693, "code_postal": "93064", "stop_lon": 2.500320345327849, "coord": [48.8670774582693, 2.500320345327849], "stop_id": 4557280, "stop_desc": "RUE DE STRASBOURG - 93064", "stop_name": "STRASBOURG"}, "geometry": {"type": "Point", "coordinates": [2.500320345327849, 48.8670774582693]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "12875ffc60c9a9b6142a59cf6ac2f2870fb16beb", "fields": {"departement": "94", "stop_lat": 48.849989653650425, "code_postal": "94058", "stop_lon": 2.495649990633529, "coord": [48.849989653650425, 2.495649990633529], "stop_id": 4557290, "stop_desc": "246 AVENUE DU GENERAL DE GAULLE - 94058", "stop_name": "CROIX D'EAU"}, "geometry": {"type": "Point", "coordinates": [2.495649990633529, 48.849989653650425]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a5b7f48940cf2cea284e120e6bf657c81106d038", "fields": {"departement": "94", "stop_lat": 48.8504026054325, "code_postal": "94058", "stop_lon": 2.496005332689618, "coord": [48.8504026054325, 2.496005332689618], "stop_id": 4557291, "stop_desc": "12-14 RUE DE LA CROIX D'EAU - 94058", "stop_name": "CROIX D'EAU"}, "geometry": {"type": "Point", "coordinates": [2.496005332689618, 48.8504026054325]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5f6af271d0f745f1f6434164ac6e1872d200c36e", "fields": {"departement": "94", "stop_lat": 48.85185253110625, "code_postal": "94033", "stop_lon": 2.486789788402135, "coord": [48.85185253110625, 2.486789788402135], "stop_id": 4557296, "stop_desc": "56 RUE ROGER SALENGRO - 94033", "stop_name": "PLACE DU GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.486789788402135, 48.85185253110625]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "83c077d95ca9f7934c096f1fd38aeb12c3da330a", "fields": {"departement": "92", "stop_lat": 48.8075885996782, "code_postal": "92023", "stop_lon": 2.2515970744570666, "coord": [48.8075885996782, 2.2515970744570666], "stop_id": 3909040, "stop_desc": "FACE 80 RUE ADOLPHE SCHNEIDER - 92023", "stop_name": "HOPITAL SAINTE-EMILIE"}, "geometry": {"type": "Point", "coordinates": [2.2515970744570666, 48.8075885996782]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f578afc40e921cba704bba6d550625fce1c5ac88", "fields": {"departement": "92", "stop_lat": 48.803066103925985, "code_postal": "92023", "stop_lon": 2.26251659861195, "coord": [48.803066103925985, 2.26251659861195], "stop_id": 3909046, "stop_desc": "28-30 RUE PAUL VAILLANT COUTURIER - 92023", "stop_name": "TROSY"}, "geometry": {"type": "Point", "coordinates": [2.26251659861195, 48.803066103925985]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b47fe6734f7a850d892f798b614c580261db8c8b", "fields": {"departement": "92", "stop_lat": 48.80004684776907, "code_postal": "92023", "stop_lon": 2.263568550303808, "coord": [48.80004684776907, 2.263568550303808], "stop_id": 3909048, "stop_desc": "FACE 13 RUE DU TROSY - 92023", "stop_name": "MAIRIE DE CLAMART"}, "geometry": {"type": "Point", "coordinates": [2.263568550303808, 48.80004684776907]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "888d4ad813cdfd54df90cac2b3b137e24aa2a376", "fields": {"departement": "92", "stop_lat": 48.80004684776907, "code_postal": "92023", "stop_lon": 2.263568550303808, "coord": [48.80004684776907, 2.263568550303808], "stop_id": 3909049, "stop_desc": "FACE 13 RUE DU TROSY - 92023", "stop_name": "MAIRIE DE CLAMART"}, "geometry": {"type": "Point", "coordinates": [2.263568550303808, 48.80004684776907]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c01af1d182e1f1694a7d36d2fa2553dea6398cb1", "fields": {"departement": "92", "stop_lat": 48.800387216576084, "code_postal": "92023", "stop_lon": 2.261704132854432, "coord": [48.800387216576084, 2.261704132854432], "stop_id": 3909051, "stop_desc": "5 AV RENE SAMUEL - 92023", "stop_name": "PLACE HUNEBELLE"}, "geometry": {"type": "Point", "coordinates": [2.261704132854432, 48.800387216576084]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a628b3863700e830ac059113c01d3573f794afeb", "fields": {"departement": "92", "stop_lat": 48.796709488138966, "code_postal": "92023", "stop_lon": 2.274225528269871, "coord": [48.796709488138966, 2.274225528269871], "stop_id": 3909057, "stop_desc": "R DE FONTENAY - 92023", "stop_name": "GYMNASE DU FORT"}, "geometry": {"type": "Point", "coordinates": [2.274225528269871, 48.796709488138966]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0dd72cd2fc0834e7a27f4875b1981a26e0e2e635", "fields": {"departement": "92", "stop_lat": 48.79454945481186, "code_postal": "92023", "stop_lon": 2.268895448592614, "coord": [48.79454945481186, 2.268895448592614], "stop_id": 3909059, "stop_desc": "21 AV DU BOIS TARDIEU - 92023", "stop_name": "CIMETIERE COMMUNAL"}, "geometry": {"type": "Point", "coordinates": [2.268895448592614, 48.79454945481186]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cadf719c7a58c2ccb9d836c326bf4f6a115ff253", "fields": {"departement": "92", "stop_lat": 48.79225151315278, "code_postal": "92023", "stop_lon": 2.2591041483824275, "coord": [48.79225151315278, 2.2591041483824275], "stop_id": 3909064, "stop_desc": "R DU PARC - 92023", "stop_name": "GYMNASE DU JARDIN PARISIEN"}, "geometry": {"type": "Point", "coordinates": [2.2591041483824275, 48.79225151315278]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a332884a60ea4697af0be37b8d6cc689e818c7c9", "fields": {"departement": "92", "stop_lat": 48.79273674292132, "code_postal": "92023", "stop_lon": 2.2589265745418308, "coord": [48.79273674292132, 2.2589265745418308], "stop_id": 3909065, "stop_desc": "R DE CROUY - 92023", "stop_name": "GYMNASE DU JARDIN PARISIEN"}, "geometry": {"type": "Point", "coordinates": [2.2589265745418308, 48.79273674292132]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "04c2de8e66842c6799188d9d8768029afc9fe2f3", "fields": {"departement": "92", "stop_lat": 48.7822469119877, "code_postal": "92023", "stop_lon": 2.2341620774303825, "coord": [48.7822469119877, 2.2341620774303825], "stop_id": 3909078, "stop_desc": "41 AV DE LA REPUBLIQUE - 92023", "stop_name": "REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.2341620774303825, 48.7822469119877]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d1317ebea5ad788c43f88d537d04d287d6b65896", "fields": {"departement": "92", "stop_lat": 48.77883012877619, "code_postal": "92023", "stop_lon": 2.232618490241656, "coord": [48.77883012877619, 2.232618490241656], "stop_id": 3909081, "stop_desc": "40 R DE LA GAITE - 92023", "stop_name": "GAITE"}, "geometry": {"type": "Point", "coordinates": [2.232618490241656, 48.77883012877619]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "264777ccdd41ccee3a153cba406707dc967c3bad", "fields": {"departement": "92", "stop_lat": 48.77996063095976, "code_postal": "92023", "stop_lon": 2.2303858102724794, "coord": [48.77996063095976, 2.2303858102724794], "stop_id": 3909084, "stop_desc": "5-7 R PASTEUR - 92023", "stop_name": "PASTEUR"}, "geometry": {"type": "Point", "coordinates": [2.2303858102724794, 48.77996063095976]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c499708402ee2f5aad57b2c196713b52f25240fa", "fields": {"departement": "92", "stop_lat": 48.781467960312966, "code_postal": "92023", "stop_lon": 2.2376861296997754, "coord": [48.781467960312966, 2.2376861296997754], "stop_id": 3909085, "stop_desc": "11 R VOLTAIRE - 92023", "stop_name": "VOLTAIRE"}, "geometry": {"type": "Point", "coordinates": [2.2376861296997754, 48.781467960312966]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fe772b0179c7bbb076d034b206394566b18a7fc9", "fields": {"departement": "92", "stop_lat": 48.782143736790886, "code_postal": "92023", "stop_lon": 2.2397113217399625, "coord": [48.782143736790886, 2.2397113217399625], "stop_id": 3909086, "stop_desc": "19 R DE BRETAGNE - 92023", "stop_name": "BRETAGNE"}, "geometry": {"type": "Point", "coordinates": [2.2397113217399625, 48.782143736790886]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7bc5df252d27f120924e196c66f051e38e3f83d8", "fields": {"departement": "92", "stop_lat": 48.78407097846272, "code_postal": "92023", "stop_lon": 2.244481685277178, "coord": [48.78407097846272, 2.244481685277178], "stop_id": 3909087, "stop_desc": "3 R DE BRETAGNE - 92023", "stop_name": "PLACE AIME CESAIRE"}, "geometry": {"type": "Point", "coordinates": [2.244481685277178, 48.78407097846272]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d31626dac5db749b965eec671b9e0847a8ce75d5", "fields": {"departement": "92", "stop_lat": 48.79174189622364, "code_postal": "92032", "stop_lon": 2.2795639699284296, "coord": [48.79174189622364, 2.2795639699284296], "stop_id": 3909100, "stop_desc": "27 BIS AVENUE DU GENERAL LECLERC - 92032", "stop_name": "TENNIS - GENERAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.2795639699284296, 48.79174189622364]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "05850ef69fcc24ccda7fce3ff26e6747617cf23d", "fields": {"departement": "92", "stop_lat": 48.784157072461696, "code_postal": "92032", "stop_lon": 2.281639762480135, "coord": [48.784157072461696, 2.281639762480135], "stop_id": 3909104, "stop_desc": "76 R D'ESTIENNE D'ORVES - 92032", "stop_name": "PIERRE BONNARD"}, "geometry": {"type": "Point", "coordinates": [2.281639762480135, 48.784157072461696]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d84dd3b837803a505d08279d935acea2cdff7d87", "fields": {"departement": "92", "stop_lat": 48.78940168904218, "code_postal": "92032", "stop_lon": 2.292679359839008, "coord": [48.78940168904218, 2.292679359839008], "stop_id": 3909107, "stop_desc": "FACE 44 AVENUE LOMBART - 92032", "stop_name": "CHATEAU SAINTE-BARBE"}, "geometry": {"type": "Point", "coordinates": [2.292679359839008, 48.78940168904218]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "966d11553ee23d3b54cc33fe63d514c01ef34641", "fields": {"departement": "92", "stop_lat": 48.78570194090637, "code_postal": "92032", "stop_lon": 2.3025164263735864, "coord": [48.78570194090637, 2.3025164263735864], "stop_id": 3909111, "stop_desc": "FACE 119 AVENUE GABRIEL PERI - 92032", "stop_name": "LES BLAGIS"}, "geometry": {"type": "Point", "coordinates": [2.3025164263735864, 48.78570194090637]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1533088ce83b910221d12745af129dfa0b9bb02e", "fields": {"departement": "92", "stop_lat": 48.79178512750472, "code_postal": "92032", "stop_lon": 2.297302369184098, "coord": [48.79178512750472, 2.297302369184098], "stop_id": 3909114, "stop_desc": "R DES BENARDS - 92032", "stop_name": "CENTRE COMMERCIAL SCARRON"}, "geometry": {"type": "Point", "coordinates": [2.297302369184098, 48.79178512750472]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e86963407d8dae94a5742489c0ac9ce463364257", "fields": {"departement": "92", "stop_lat": 48.792584095668204, "code_postal": "92032", "stop_lon": 2.294553885468792, "coord": [48.792584095668204, 2.294553885468792], "stop_id": 3909115, "stop_desc": "10 RUE GEORGES BAILLY - 92032", "stop_name": "GEORGES BAILLY"}, "geometry": {"type": "Point", "coordinates": [2.294553885468792, 48.792584095668204]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "727e53e3b1cb8dc91c4fc6ac63b1775ab978008a", "fields": {"departement": "92", "stop_lat": 48.78912115618851, "code_postal": "92032", "stop_lon": 2.287850746563457, "coord": [48.78912115618851, 2.287850746563457], "stop_id": 3909118, "stop_desc": "FACE 5 BD DE LA REPUBLIQUE - 92032", "stop_name": "CMS CENTRE MUNICIPAL DE SANTE"}, "geometry": {"type": "Point", "coordinates": [2.287850746563457, 48.78912115618851]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "87ace3870644775e00e5ee64f4db89b2c0fa47d1", "fields": {"departement": "92", "stop_lat": 48.79189122710944, "code_postal": "92032", "stop_lon": 2.2728166500893576, "coord": [48.79189122710944, 2.2728166500893576], "stop_id": 3909124, "stop_desc": "VOIE VERTE - 92032", "stop_name": "STADE DU PANORAMA"}, "geometry": {"type": "Point", "coordinates": [2.2728166500893576, 48.79189122710944]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ad9c613b0492c240013b005f88b2d182a87a8633", "fields": {"departement": "92", "stop_lat": 48.77381241398715, "code_postal": "92060", "stop_lon": 2.2403932863130374, "coord": [48.77381241398715, 2.2403932863130374], "stop_id": 3909811, "stop_desc": "CONTRE-ALLEE DE L'AVENUE DE LA DIVISION LECLERC - 92060", "stop_name": "LA BOURSIDIERE"}, "geometry": {"type": "Point", "coordinates": [2.2403932863130374, 48.77381241398715]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6a5bf044cb8d0d30c5aefa6aef817b9bef5ab63d", "fields": {"departement": "92", "stop_lat": 48.77679984747266, "code_postal": "92060", "stop_lon": 2.257046718411991, "coord": [48.77679984747266, 2.257046718411991], "stop_id": 3909819, "stop_desc": "86 AVENUE CHARLES DE GAULLE - 92060", "stop_name": "CITE JARDINS - PLACE DES ALLIES"}, "geometry": {"type": "Point", "coordinates": [2.257046718411991, 48.77679984747266]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "964ff552fa0c6786616aba0a1a47a694e9279970", "fields": {"departement": "92", "stop_lat": 48.77974342139406, "code_postal": "92071", "stop_lon": 2.28046129206943, "coord": [48.77974342139406, 2.28046129206943], "stop_id": 3909822, "stop_desc": "FACE 3 AV DU PLESSIS - 92071", "stop_name": "ROBINSON RER"}, "geometry": {"type": "Point", "coordinates": [2.28046129206943, 48.77974342139406]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bcd7d6856d528d92a304d652ce55ff0cda8d6dc4", "fields": {"departement": "93", "stop_lat": 48.92114485792039, "code_postal": "93029", "stop_lon": 2.4538653310183443, "coord": [48.92114485792039, 2.4538653310183443], "stop_id": 3731663, "stop_desc": "177 BIS AVENUE HENRI BARBUSSE - 93029", "stop_name": "AUGUSTE BLANQUI"}, "geometry": {"type": "Point", "coordinates": [2.4538653310183443, 48.92114485792039]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c35ffdac8226d062664ab03388a2324b7b5277a5", "fields": {"departement": "93", "stop_lat": 48.919350170175626, "code_postal": "93029", "stop_lon": 2.4601204973701063, "coord": [48.919350170175626, 2.4601204973701063], "stop_id": 3731664, "stop_desc": "RUE AUGUSTE BLANQUI - 93029", "stop_name": "EDOUARD LIEVIN"}, "geometry": {"type": "Point", "coordinates": [2.4601204973701063, 48.919350170175626]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9807ab91eb39c46dad473e3c08f39ea2f305033a", "fields": {"departement": "93", "stop_lat": 48.91825057140999, "code_postal": "93010", "stop_lon": 2.4791814782848673, "coord": [48.91825057140999, 2.4791814782848673], "stop_id": 3731675, "stop_desc": "ROND-POINT JOUHAUX-BLUM - 93010", "stop_name": "JOUHAUX - BLUM"}, "geometry": {"type": "Point", "coordinates": [2.4791814782848673, 48.91825057140999]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d7d463249b2a2ae47382c5d28aee12c04a686f04", "fields": {"departement": "93", "stop_lat": 48.9210360370681, "code_postal": "93029", "stop_lon": 2.4548605913266597, "coord": [48.9210360370681, 2.4548605913266597], "stop_id": 3731662, "stop_desc": "8 RUE AUGUSTE BLANQUI - 93029", "stop_name": "AUGUSTE BLANQUI"}, "geometry": {"type": "Point", "coordinates": [2.4548605913266597, 48.9210360370681]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a593bda2d8e6af7f1e8cfcd0d23b9d5d29ef5da4", "fields": {"departement": "91", "stop_lat": 48.67587863954793, "code_postal": "91589", "stop_lon": 2.338571234646402, "coord": [48.67587863954793, 2.338571234646402], "stop_id": 3732117, "stop_desc": "5 R VAN GOGH - 91589", "stop_name": "TOULOUSE-LAUTREC"}, "geometry": {"type": "Point", "coordinates": [2.338571234646402, 48.67587863954793]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "44ff50b15393dabc617ddff05768fdbd5f53c398", "fields": {"departement": "75", "stop_lat": 48.89045010166135, "code_postal": "75119", "stop_lon": 2.3989804109578343, "coord": [48.89045010166135, 2.3989804109578343], "stop_id": 3731679, "stop_desc": "7 AV JEAN LOLIVE - 75119", "stop_name": "PETITS PONTS"}, "geometry": {"type": "Point", "coordinates": [2.3989804109578343, 48.89045010166135]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "653ff1fb78a9f0570749635eaab2464b72c106c5", "fields": {"departement": "93", "stop_lat": 48.89543676209062, "code_postal": "93055", "stop_lon": 2.4012898731919776, "coord": [48.89543676209062, 2.4012898731919776], "stop_id": 3731633, "stop_desc": "52 RUE HOCHE - 93055", "stop_name": "CENTRE NATIONAL DE LA DANSE"}, "geometry": {"type": "Point", "coordinates": [2.4012898731919776, 48.89543676209062]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b2ed96f7b64bb70debe17ae77d95167f22741de9", "fields": {"departement": "93", "stop_lat": 48.896470092374635, "code_postal": "93055", "stop_lon": 2.401645545232717, "coord": [48.896470092374635, 2.401645545232717], "stop_id": 3731635, "stop_desc": "AVENUE DU GENERAL LECLERC - 93055", "stop_name": "PANTIN RER - MAIRIE"}, "geometry": {"type": "Point", "coordinates": [2.401645545232717, 48.896470092374635]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7c13bec57c082b4f711977252ee93d70ae70d3fa", "fields": {"departement": "94", "stop_lat": 48.77841770877821, "code_postal": "94038", "stop_lon": 2.3410761660577335, "coord": [48.77841770877821, 2.3410761660577335], "stop_id": 3730685, "stop_desc": "RUE HENRI THIRARD - 94038", "stop_name": "HENRI THIRARD-LEON JOUHAUX"}, "geometry": {"type": "Point", "coordinates": [2.3410761660577335, 48.77841770877821]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cf03c43c2145c6decc49cf85b5d8179610d68a44", "fields": {"departement": "75", "stop_lat": 48.88961612240122, "code_postal": "75119", "stop_lon": 2.395340533314463, "coord": [48.88961612240122, 2.395340533314463], "stop_id": 3731627, "stop_desc": "FACE 1 PL DE LA PORTE DE PANTIN - 75119", "stop_name": "PORTE DE PANTIN"}, "geometry": {"type": "Point", "coordinates": [2.395340533314463, 48.88961612240122]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "755e6bb11a3df33212f6f8971d7e8d8d50364a14", "fields": {"departement": "94", "stop_lat": 48.77589211459192, "code_postal": "94038", "stop_lon": 2.3397704819584093, "coord": [48.77589211459192, 2.3397704819584093], "stop_id": 3730686, "stop_desc": "124 AVENUE PAUL VAILLANT COUTURIER - 94038", "stop_name": "TOURNELLES"}, "geometry": {"type": "Point", "coordinates": [2.3397704819584093, 48.77589211459192]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d7f7447eb6d9cf8716410dd2e3bb87ef5181293d", "fields": {"departement": "94", "stop_lat": 48.76672429588342, "code_postal": "94021", "stop_lon": 2.3341818596864434, "coord": [48.76672429588342, 2.3341818596864434], "stop_id": 3730673, "stop_desc": "FACE 64 RUE DE FRESNES - 94021", "stop_name": "CAMELIAS-DAUVIN"}, "geometry": {"type": "Point", "coordinates": [2.3341818596864434, 48.76672429588342]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "921c3ce55c92e86abc81a936dd9e0e6afa0fd09e", "fields": {"departement": "94", "stop_lat": 48.77515392039387, "code_postal": "94038", "stop_lon": 2.354171518515035, "coord": [48.77515392039387, 2.354171518515035], "stop_id": 3730682, "stop_desc": "FACE 22 RUE DE LALLIER - 94038", "stop_name": "RUE DE LALLIER"}, "geometry": {"type": "Point", "coordinates": [2.354171518515035, 48.77515392039387]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e26a173fdfc037bd7619e4d98016f6e064b3a4f3", "fields": {"departement": "94", "stop_lat": 48.77598988189659, "code_postal": "94038", "stop_lon": 2.353627832171674, "coord": [48.77598988189659, 2.353627832171674], "stop_id": 3730683, "stop_desc": "FACE 119 RUE DE BICETRE - 94038", "stop_name": "RUE DE BICETRE"}, "geometry": {"type": "Point", "coordinates": [2.353627832171674, 48.77598988189659]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d8bab5f65b694bc721f1099944c47d0f74c5255b", "fields": {"departement": "93", "stop_lat": 48.906404975054635, "code_postal": "93008", "stop_lon": 2.423552809864812, "coord": [48.906404975054635, 2.423552809864812], "stop_id": 3731644, "stop_desc": "AVENUE HENRI BARBUSSE - 93008", "stop_name": "HENRI GAUTIER"}, "geometry": {"type": "Point", "coordinates": [2.423552809864812, 48.906404975054635]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ff20307a4bd27bc1d6644cf58712bf3d2b3ff925", "fields": {"departement": "93", "stop_lat": 48.90610924485547, "code_postal": "93008", "stop_lon": 2.422379868713123, "coord": [48.90610924485547, 2.422379868713123], "stop_id": 3731645, "stop_desc": "AVENUE HENRI BARBUSSE - 93008", "stop_name": "HENRI GAUTIER"}, "geometry": {"type": "Point", "coordinates": [2.422379868713123, 48.90610924485547]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "47f319a65e6ed5cd58f81c3edbbbcc353f6b838d", "fields": {"departement": "93", "stop_lat": 48.91343079680036, "code_postal": "93008", "stop_lon": 2.4376495217992566, "coord": [48.91343079680036, 2.4376495217992566], "stop_id": 3731653, "stop_desc": "FACE 04 AVENUE LOUIS ARAGON - 93008", "stop_name": "ESCADRILLE NORMANDIE-NIEMEN - PAUL VAILLANT-COUTURIER-TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.4376495217992566, 48.91343079680036]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9ecc6618b4390161252a9d6b4ef71aff55ec14ba", "fields": {"departement": "91", "stop_lat": 48.67332581487367, "code_postal": "91589", "stop_lon": 2.340226971440059, "coord": [48.67332581487367, 2.340226971440059], "stop_id": 3732122, "stop_desc": "AV HENRI OUZILLEAU - 91589", "stop_name": "COLLEGE JEAN MERMOZ"}, "geometry": {"type": "Point", "coordinates": [2.340226971440059, 48.67332581487367]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "027fff8cb5ebc658d9977e049f8228fa01d8eb35", "fields": {"departement": "91", "stop_lat": 48.685523097383836, "code_postal": "91589", "stop_lon": 2.346933879354916, "coord": [48.685523097383836, 2.346933879354916], "stop_id": 3732135, "stop_desc": "44 TER BD ARISTIDE BRIAND - 91589", "stop_name": "LES PEUPLIERS"}, "geometry": {"type": "Point", "coordinates": [2.346933879354916, 48.685523097383836]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ca44fa4300185049bf273328fcb763c53ce7c70c", "fields": {"departement": "91", "stop_lat": 48.6740359505754, "code_postal": "91589", "stop_lon": 2.3388290621585237, "coord": [48.6740359505754, 2.3388290621585237], "stop_id": 3732120, "stop_desc": "AV HENRI OUZILLEAU - 91589", "stop_name": "UTRILLO"}, "geometry": {"type": "Point", "coordinates": [2.3388290621585237, 48.6740359505754]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f595e605bbacf4c4cf780080aae2cc100d41c7b9", "fields": {"departement": "75", "stop_lat": 48.86476216664129, "code_postal": "75102", "stop_lon": 2.3457140953784914, "coord": [48.86476216664129, 2.3457140953784914], "stop_id": 3747877, "stop_desc": "FACE 39 RUE ETIENNE MARCEL - 75102", "stop_name": "ETIENNE MARCEL - MONTMARTRE"}, "geometry": {"type": "Point", "coordinates": [2.3457140953784914, 48.86476216664129]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "142dd7ed84c50856b278b6713c4e654fc43f0885", "fields": {"departement": "75", "stop_lat": 48.879473278409144, "code_postal": "75110", "stop_lon": 2.3557180612431323, "coord": [48.879473278409144, 2.3557180612431323], "stop_id": 3747907, "stop_desc": "33-35 RUE DE SAINT-QUENTIN - 75110", "stop_name": "LA FAYETTE - DUNKERQUE"}, "geometry": {"type": "Point", "coordinates": [2.3557180612431323, 48.879473278409144]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d35caa485679841cb344cca4e94ad1ba757b4fe9", "fields": {"departement": "75", "stop_lat": 48.85827052238488, "code_postal": "75103", "stop_lon": 2.36418248805735, "coord": [48.85827052238488, 2.36418248805735], "stop_id": 3747872, "stop_desc": "FACE AU 3 RUE DU PARC ROYAL - 75103", "stop_name": "TURENNE - SAINT-GILLES"}, "geometry": {"type": "Point", "coordinates": [2.36418248805735, 48.85827052238488]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "99ce9162cd6916f4b12c7a77480da66e95b90cec", "fields": {"departement": "75", "stop_lat": 48.841435701373044, "code_postal": "75112", "stop_lon": 2.393530107369139, "coord": [48.841435701373044, 2.393530107369139], "stop_id": 3747940, "stop_desc": "FACE117BIS RUE DE REUILLY - 75112", "stop_name": "RUE DE LA GARE DE REUILLY"}, "geometry": {"type": "Point", "coordinates": [2.393530107369139, 48.841435701373044]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cd979281a3eb6c780611327f00511889f9ac5a85", "fields": {"departement": "75", "stop_lat": 48.880324873898694, "code_postal": "75110", "stop_lon": 2.36664668484309, "coord": [48.880324873898694, 2.36664668484309], "stop_id": 3747915, "stop_desc": "16-18 RUE LOUIS BLANC - 75110", "stop_name": "CANAL SAINT-MARTIN"}, "geometry": {"type": "Point", "coordinates": [2.36664668484309, 48.880324873898694]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0cfb4a82a9d0175675014f3794b21ef85234fc8e", "fields": {"departement": "75", "stop_lat": 48.84764923526842, "code_postal": "75112", "stop_lon": 2.3864011455122154, "coord": [48.84764923526842, 2.3864011455122154], "stop_id": 3747936, "stop_desc": "FACE 31 RUE DE REUILLY - 75112", "stop_name": "REUILLY - DIDEROT"}, "geometry": {"type": "Point", "coordinates": [2.3864011455122154, 48.84764923526842]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2d3bbf4d797f50eebb00406fc6012aa12a30d33d", "fields": {"departement": "75", "stop_lat": 48.86750722069366, "code_postal": "75111", "stop_lon": 2.373055836298326, "coord": [48.86750722069366, 2.373055836298326], "stop_id": 3747922, "stop_desc": "114 AVENUE PARMENTIER - 75111", "stop_name": "FONTAINE AU ROI"}, "geometry": {"type": "Point", "coordinates": [2.373055836298326, 48.86750722069366]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "231c2ddfa7171bba01feb811ec6c939fe6c602dd", "fields": {"departement": "75", "stop_lat": 48.86004588170588, "code_postal": "75111", "stop_lon": 2.3786489192182496, "coord": [48.86004588170588, 2.3786489192182496], "stop_id": 3747927, "stop_desc": "13 BIS AVENUE PARMENTIER - 75111", "stop_name": "CHEMIN VERT"}, "geometry": {"type": "Point", "coordinates": [2.3786489192182496, 48.86004588170588]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3f6757b31daed59f45c40db3f014324bf5688b90", "fields": {"departement": "75", "stop_lat": 48.87627342878736, "code_postal": "75110", "stop_lon": 2.358019592112842, "coord": [48.87627342878736, 2.358019592112842], "stop_id": 3747909, "stop_desc": "RUE DU 8 MAI 1945 - 75110", "stop_name": "GARE DE L'EST"}, "geometry": {"type": "Point", "coordinates": [2.358019592112842, 48.87627342878736]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ae5118f2276ef133b952ca676f31d7b22158f64a", "fields": {"departement": "75", "stop_lat": 48.88097388157959, "code_postal": "75110", "stop_lon": 2.357381029341471, "coord": [48.88097388157959, 2.357381029341471], "stop_id": 3747906, "stop_desc": "GARE ROUTIERE - 75110", "stop_name": "GARE DU NORD"}, "geometry": {"type": "Point", "coordinates": [2.357381029341471, 48.88097388157959]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "af1b4e28ea3061f056eaa7d6a474467fcec4c7d6", "fields": {"departement": "75", "stop_lat": 48.8528494234173, "code_postal": "75112", "stop_lon": 2.370771325960331, "coord": [48.8528494234173, 2.370771325960331], "stop_id": 3748057, "stop_desc": "4 RUE DU FAUBOURG SAINT-ANTOINE - 75112", "stop_name": "BASTILLE - FAUBOURG SAINT-ANTOINE"}, "geometry": {"type": "Point", "coordinates": [2.370771325960331, 48.8528494234173]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "341ce4a287209d62b34b8e0a16dea58a172e2d12", "fields": {"departement": "75", "stop_lat": 48.85023917522549, "code_postal": "75112", "stop_lon": 2.3825087277099875, "coord": [48.85023917522549, 2.3825087277099875], "stop_id": 3748062, "stop_desc": "178 RUE DU FAUBOURG SAINT ANTOINE - 75112", "stop_name": "HOPITAL SAINT-ANTOINE"}, "geometry": {"type": "Point", "coordinates": [2.3825087277099875, 48.85023917522549]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f631814e4c73e56a79fe8d1414dd9bb454bbc31a", "fields": {"departement": "75", "stop_lat": 48.853429302159356, "code_postal": "75106", "stop_lon": 2.334367396488073, "coord": [48.853429302159356, 2.334367396488073], "stop_id": 3748042, "stop_desc": "145 BOULEVARD SAINT GERMAIN - 75106", "stop_name": "SAINT-GERMAIN-DES-PRES"}, "geometry": {"type": "Point", "coordinates": [2.334367396488073, 48.853429302159356]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6e43c5656cf9016f116716b330a47c94b5fa6633", "fields": {"departement": "75", "stop_lat": 48.83983472108902, "code_postal": "75112", "stop_lon": 2.3960064286910314, "coord": [48.83983472108902, 2.3960064286910314], "stop_id": 3747943, "stop_desc": "FACE 10 PLACE FELIX EBOUE - 75112", "stop_name": "DAUMESNIL - FELIX EBOUE"}, "geometry": {"type": "Point", "coordinates": [2.3960064286910314, 48.83983472108902]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "944c2a3288a5d24e5e12a98b387da75122c31b45", "fields": {"departement": "75", "stop_lat": 48.880711840653206, "code_postal": "75110", "stop_lon": 2.3644803008586255, "coord": [48.880711840653206, 2.3644803008586255], "stop_id": 3747968, "stop_desc": "217 RUE DU FAUBOURG SAINT-MARTIN - 75110", "stop_name": "LOUIS BLANC"}, "geometry": {"type": "Point", "coordinates": [2.3644803008586255, 48.880711840653206]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7df1f36d890cdf4ec8a03a5e51aefce82526dc22", "fields": {"departement": "75", "stop_lat": 48.85016642446109, "code_postal": "75105", "stop_lon": 2.3477408578510297, "coord": [48.85016642446109, 2.3477408578510297], "stop_id": 3748049, "stop_desc": "51 BD SAINT-GERMAIN - 75105", "stop_name": "MAUBERT - MUTUALITE"}, "geometry": {"type": "Point", "coordinates": [2.3477408578510297, 48.85016642446109]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f79f85104b8cb1b1ccc686edd91194bc77a0863c", "fields": {"departement": "75", "stop_lat": 48.83363150282553, "code_postal": "75112", "stop_lon": 2.414827672817244, "coord": [48.83363150282553, 2.414827672817244], "stop_id": 3747950, "stop_desc": "FACE 17 AVENUE DAUMESNIL - 75112", "stop_name": "PARC ZOOLOGIQUE"}, "geometry": {"type": "Point", "coordinates": [2.414827672817244, 48.83363150282553]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9dd7cdb4041e7f4f99f60dcc5b78fe398388c902", "fields": {"departement": "75", "stop_lat": 48.85220352272098, "code_postal": "75104", "stop_lon": 2.3662085612665225, "coord": [48.85220352272098, 2.3662085612665225], "stop_id": 3748055, "stop_desc": "38 BOULEVARD HENRI IV - 75104", "stop_name": "LA CERISAIE"}, "geometry": {"type": "Point", "coordinates": [2.3662085612665225, 48.85220352272098]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "78b784b3be9d0a3d4c7c7392dc8b866c1e5158cd", "fields": {"departement": "75", "stop_lat": 48.83815247544857, "code_postal": "75112", "stop_lon": 2.3991088033972896, "coord": [48.83815247544857, 2.3991088033972896], "stop_id": 3747944, "stop_desc": "194 AVENUE DAUMESNIL - 75112", "stop_name": "SIDI BRAHIM"}, "geometry": {"type": "Point", "coordinates": [2.3991088033972896, 48.83815247544857]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b86d688b597b9aff57550c3e947f8bbafc1c5fc1", "fields": {"departement": "75", "stop_lat": 48.851164321077135, "code_postal": "75105", "stop_lon": 2.3437099323238684, "coord": [48.851164321077135, 2.3437099323238684], "stop_id": 3748046, "stop_desc": "BD SAINT-GERMAIN - 75105", "stop_name": "CLUNY"}, "geometry": {"type": "Point", "coordinates": [2.3437099323238684, 48.851164321077135]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9233755c0a5440205341fe6b5456e585b32a9af4", "fields": {"departement": "93", "stop_lat": 48.9249347320335, "code_postal": "93066", "stop_lon": 2.3741320259302054, "coord": [48.9249347320335, 2.3741320259302054], "stop_id": 3741085, "stop_desc": "FACE 80 AVENUE FRANCIS PRESSENSE - 93066", "stop_name": "COLLEGE FREDERICO GARCIA LORCA"}, "geometry": {"type": "Point", "coordinates": [2.3741320259302054, 48.9249347320335]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "23add6fbb37cd900595d2a400907772ab124df07", "fields": {"departement": "94", "stop_lat": 48.817445659342866, "code_postal": "94017", "stop_lon": 2.4955234559960484, "coord": [48.817445659342866, 2.4955234559960484], "stop_id": 3743513, "stop_desc": "112-114 AVENUE ROGER SALENGRO - 94017", "stop_name": "JEAN-BAPTISTE CLEMENT"}, "geometry": {"type": "Point", "coordinates": [2.4955234559960484, 48.817445659342866]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "648a78fb0fc3bf6bdf11279986bb0b18443c2805", "fields": {"departement": "94", "stop_lat": 48.80654286951804, "code_postal": "94017", "stop_lon": 2.526704679451085, "coord": [48.80654286951804, 2.526704679451085], "stop_id": 3743499, "stop_desc": "FACE 87 AVENUE MARX DORMOY - 94017", "stop_name": "MUSEE DE LA RESISTANCE"}, "geometry": {"type": "Point", "coordinates": [2.526704679451085, 48.80654286951804]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3fc659077bc4e04e538cda197add6fa58e3f9ce2", "fields": {"departement": "94", "stop_lat": 48.816504806848876, "code_postal": "94017", "stop_lon": 2.500066196243978, "coord": [48.816504806848876, 2.500066196243978], "stop_id": 3743512, "stop_desc": "136 AVENUE ROGER SALENGRO - 94017", "stop_name": "PLAGE DE CHAMPIGNY"}, "geometry": {"type": "Point", "coordinates": [2.500066196243978, 48.816504806848876]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c5279ec43681b45c6292de78886e204e40906e0f", "fields": {"departement": "75", "stop_lat": 48.870073925958685, "code_postal": "75102", "stop_lon": 2.333249331660691, "coord": [48.870073925958685, 2.333249331660691], "stop_id": 3747817, "stop_desc": "35 RUE DU 4 SEPTEMBRE - 75102", "stop_name": "OPERA - 4 SEPTEMBRE"}, "geometry": {"type": "Point", "coordinates": [2.333249331660691, 48.870073925958685]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b335459820b9fdd223835ecac4d0694c82e3ce8b", "fields": {"departement": "94", "stop_lat": 48.80599270326873, "code_postal": "94017", "stop_lon": 2.54915400470061, "coord": [48.80599270326873, 2.54915400470061], "stop_id": 3743488, "stop_desc": "FACE 3 RUE JACQUES SOLOMON - 94017", "stop_name": "RODIN"}, "geometry": {"type": "Point", "coordinates": [2.54915400470061, 48.80599270326873]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b787928b417f85c6888590213960f135fea68eb7", "fields": {"departement": "94", "stop_lat": 48.81505742534415, "code_postal": "94017", "stop_lon": 2.506757397808122, "coord": [48.81505742534415, 2.506757397808122], "stop_id": 3743509, "stop_desc": "43 RUE JEAN JAURES - 94017", "stop_name": "GUITTARD"}, "geometry": {"type": "Point", "coordinates": [2.506757397808122, 48.81505742534415]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b5dce27015968dbfd302d2178314071c8eee592d", "fields": {"departement": "94", "stop_lat": 48.803393584967345, "code_postal": "94017", "stop_lon": 2.550068617897763, "coord": [48.803393584967345, 2.550068617897763], "stop_id": 3743516, "stop_desc": "AVENUE BOILEAU - 94017", "stop_name": "RABELAIS"}, "geometry": {"type": "Point", "coordinates": [2.550068617897763, 48.803393584967345]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9f21470df65b4badbee4da106472ccf40dd209ee", "fields": {"departement": "75", "stop_lat": 48.872033003523995, "code_postal": "75109", "stop_lon": 2.3298976383299848, "coord": [48.872033003523995, 2.3298976383299848], "stop_id": 3747813, "stop_desc": "FACE 8 RUE AUBER - 75109", "stop_name": "AUBER"}, "geometry": {"type": "Point", "coordinates": [2.3298976383299848, 48.872033003523995]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "33d97a3886d1deb407387a9cbd8b9c7a5a9a4104", "fields": {"departement": "75", "stop_lat": 48.87123321218385, "code_postal": "75109", "stop_lon": 2.3313418899103016, "coord": [48.87123321218385, 2.3313418899103016], "stop_id": 3747815, "stop_desc": "3 R AUBER - 75109", "stop_name": "OPERA"}, "geometry": {"type": "Point", "coordinates": [2.3313418899103016, 48.87123321218385]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "62aaed4c905df2118237abd758f6a345dbde47c2", "fields": {"departement": "75", "stop_lat": 48.88458818475614, "code_postal": "75118", "stop_lon": 2.329268993773359, "coord": [48.88458818475614, 2.329268993773359], "stop_id": 3740306, "stop_desc": "130 BIS BOULEVARD DE CLICHY - 75118", "stop_name": "PLACE DE CLICHY - CAULAINCOURT"}, "geometry": {"type": "Point", "coordinates": [2.329268993773359, 48.88458818475614]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "48fd61c6497be1598895115522ffd041a9f66a65", "fields": {"departement": "75", "stop_lat": 48.8810360017777, "code_postal": "75117", "stop_lon": 2.312890462597623, "coord": [48.8810360017777, 2.312890462597623], "stop_id": 3740311, "stop_desc": "30 BOULEVARD DE COURCELLES - 75117", "stop_name": "MALESHERBES - COURCELLES"}, "geometry": {"type": "Point", "coordinates": [2.312890462597623, 48.8810360017777]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "97bf33a9dd11e26774d36e9add0e841c23196311", "fields": {"departement": "91", "stop_lat": 48.67873671160133, "code_postal": "91589", "stop_lon": 2.346240365571396, "coord": [48.67873671160133, 2.346240365571396], "stop_id": 3732218, "stop_desc": "41 AVENUE CHARLES DE GAULLE - 91589", "stop_name": "CENTRE ADMINISTRATIF"}, "geometry": {"type": "Point", "coordinates": [2.346240365571396, 48.67873671160133]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "40d60c0dd0e4e9ca64b072cfc0fb45975163688e", "fields": {"departement": "75", "stop_lat": 48.869382396794045, "code_postal": "75116", "stop_lon": 2.2920929155953367, "coord": [48.869382396794045, 2.2920929155953367], "stop_id": 3740319, "stop_desc": "35-37 AVENUE KLEBER - 75116", "stop_name": "KLEBER - PAUL VALERY"}, "geometry": {"type": "Point", "coordinates": [2.2920929155953367, 48.869382396794045]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "627cc08cf272afa142911e976e5ac14a8f120b55", "fields": {"departement": "75", "stop_lat": 48.86691015970453, "code_postal": "75116", "stop_lon": 2.2902423664360336, "coord": [48.86691015970453, 2.2902423664360336], "stop_id": 3740324, "stop_desc": "57 AVENUE KLEBER - 75116", "stop_name": "KLEBER - BOISSIERE"}, "geometry": {"type": "Point", "coordinates": [2.2902423664360336, 48.86691015970453]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fe64c28e804d03fc4601e27790571d814511c5d5", "fields": {"departement": "75", "stop_lat": 48.87914640724038, "code_postal": "75108", "stop_lon": 2.303571149548516, "coord": [48.87914640724038, 2.303571149548516], "stop_id": 3740327, "stop_desc": "53 BOULEVARD DE COURCELLES - 75108", "stop_name": "COURCELLES"}, "geometry": {"type": "Point", "coordinates": [2.303571149548516, 48.87914640724038]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "de4e1f6d579e5428c7324582ac9c21d83b3fca60", "fields": {"departement": "75", "stop_lat": 48.88363536053692, "code_postal": "75117", "stop_lon": 2.326952515834137, "coord": [48.88363536053692, 2.326952515834137], "stop_id": 3740307, "stop_desc": "7-9 PLACE CLICHY - 75117", "stop_name": "PLACE DE CLICHY"}, "geometry": {"type": "Point", "coordinates": [2.326952515834137, 48.88363536053692]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7df6faf4a198c34ba4f7c4682e319d279ea95dd3", "fields": {"departement": "75", "stop_lat": 48.8805948493269, "code_postal": "75117", "stop_lon": 2.3093478044930875, "coord": [48.8805948493269, 2.3093478044930875], "stop_id": 3740312, "stop_desc": "60 BOULEVARD DE COURCELLES - 75117", "stop_name": "MONCEAU"}, "geometry": {"type": "Point", "coordinates": [2.3093478044930875, 48.8805948493269]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f4e4f6552719fe801a81400932d765f7dff2beba", "fields": {"departement": "75", "stop_lat": 48.86427591400921, "code_postal": "75116", "stop_lon": 2.287901750055491, "coord": [48.86427591400921, 2.287901750055491], "stop_id": 3740323, "stop_desc": "FACE 93 AV KLEBER - 75116", "stop_name": "TROCADERO."}, "geometry": {"type": "Point", "coordinates": [2.287901750055491, 48.86427591400921]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e3906a69831c9b63fa0d758574325363709354a6", "fields": {"departement": "91", "stop_lat": 48.67303796942494, "code_postal": "91589", "stop_lon": 2.3448550304356597, "coord": [48.67303796942494, 2.3448550304356597], "stop_id": 3732221, "stop_desc": "36-38 AV GAMBETTA - 91589", "stop_name": "BILLOIR"}, "geometry": {"type": "Point", "coordinates": [2.3448550304356597, 48.67303796942494]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ea81e7c68519fd3acb0472ae4eb91321f42ebacb", "fields": {"departement": "75", "stop_lat": 48.86308992934059, "code_postal": "75103", "stop_lon": 2.351775525865973, "coord": [48.86308992934059, 2.351775525865973], "stop_id": 3747825, "stop_desc": "21 RUE AUX OURS - 75103", "stop_name": "SEBASTOPOL - ETIENNE MARCEL"}, "geometry": {"type": "Point", "coordinates": [2.351775525865973, 48.86308992934059]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "65149fd3b2d43de07369d618cb7e19b6190909e6", "fields": {"departement": "75", "stop_lat": 48.83996122398997, "code_postal": "75112", "stop_lon": 2.394617766854211, "coord": [48.83996122398997, 2.394617766854211], "stop_id": 3747849, "stop_desc": "195 BIS AVENUE DAUMESNIL - 75112", "stop_name": "DAUMESNIL - FELIX EBOUE"}, "geometry": {"type": "Point", "coordinates": [2.394617766854211, 48.83996122398997]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0edaa5a80834b22337a36814b42c3f381de483bd", "fields": {"departement": "75", "stop_lat": 48.84433838362532, "code_postal": "75112", "stop_lon": 2.4105815975354195, "coord": [48.84433838362532, 2.4105815975354195], "stop_id": 3747863, "stop_desc": "1 AVENUE COURTELINE - 75112", "stop_name": "PORTE DE SAINT-MANDE"}, "geometry": {"type": "Point", "coordinates": [2.4105815975354195, 48.84433838362532]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bea307decba3ee7e2627037ff8f72f23db7c00a0", "fields": {"departement": "75", "stop_lat": 48.8697773289464, "code_postal": "75102", "stop_lon": 2.3328270241440445, "coord": [48.8697773289464, 2.3328270241440445], "stop_id": 3747818, "stop_desc": "38 AVENUE DE L'OPERA - 75102", "stop_name": "OPERA - 4 SEPTEMBRE"}, "geometry": {"type": "Point", "coordinates": [2.3328270241440445, 48.8697773289464]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ef64c358e8d913231325f3fecba852c53452a65d", "fields": {"departement": "75", "stop_lat": 48.84543398045113, "code_postal": "75112", "stop_lon": 2.3959583015802197, "coord": [48.84543398045113, 2.3959583015802197], "stop_id": 3747856, "stop_desc": "2 AV DE SAINT-MANDE - 75112", "stop_name": "FABRE D'EGLANTINE"}, "geometry": {"type": "Point", "coordinates": [2.3959583015802197, 48.84543398045113]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3a93d4237c5b3a6ff4e7c8eeb11cc54d7199da28", "fields": {"departement": "75", "stop_lat": 48.84603473948748, "code_postal": "75112", "stop_lon": 2.3777526120824866, "coord": [48.84603473948748, 2.3777526120824866], "stop_id": 3747838, "stop_desc": "42 AVENUE DAUMESNIL - 75112", "stop_name": "DAUMESNIL - DIDEROT"}, "geometry": {"type": "Point", "coordinates": [2.3777526120824866, 48.84603473948748]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2b6c26365c2b9aa5b3ef31e0f01d929b1ed45624", "fields": {"departement": "75", "stop_lat": 48.83949141603019, "code_postal": "75112", "stop_lon": 2.3995052525251834, "coord": [48.83949141603019, 2.3995052525251834], "stop_id": 3747852, "stop_desc": "76 BOULEVARD DE REUILLY - 75112", "stop_name": "PICPUS - REUILLY"}, "geometry": {"type": "Point", "coordinates": [2.3995052525251834, 48.83949141603019]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "06096bc3fa52bcfaf6618ba56109f48d0e600905", "fields": {"departement": "75", "stop_lat": 48.86010542614577, "code_postal": "75104", "stop_lon": 2.356610152751199, "coord": [48.86010542614577, 2.356610152751199], "stop_id": 3747829, "stop_desc": "1-3 RUE RAMBUTEAU - 75104", "stop_name": "ARCHIVES - RAMBUTEAU"}, "geometry": {"type": "Point", "coordinates": [2.356610152751199, 48.86010542614577]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8657010e5347d9e9d48d885b017d95816088455a", "fields": {"departement": "75", "stop_lat": 48.84176234919543, "code_postal": "75112", "stop_lon": 2.3865453468544944, "coord": [48.84176234919543, 2.3865453468544944], "stop_id": 3747844, "stop_desc": "130 AVENUE DAUMESNIL - 75112", "stop_name": "MAIRIE DU 12E"}, "geometry": {"type": "Point", "coordinates": [2.3865453468544944, 48.84176234919543]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5f6c1ce3433b2934463469e2be5dc0920e6dc4d8", "fields": {"departement": "75", "stop_lat": 48.84498089611102, "code_postal": "75112", "stop_lon": 2.403052274132775, "coord": [48.84498089611102, 2.403052274132775], "stop_id": 3747859, "stop_desc": "41-43 AV DE SAINT-MANDE - 75112", "stop_name": "PICPUS"}, "geometry": {"type": "Point", "coordinates": [2.403052274132775, 48.84498089611102]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b8c86b9056ea890711364ef629683fa259b172e7", "fields": {"departement": "75", "stop_lat": 48.88346447590784, "code_postal": "75109", "stop_lon": 2.3489331575610874, "coord": [48.88346447590784, 2.3489331575610874], "stop_id": 3740339, "stop_desc": "5 BOULEVARD DE ROCHECHOUART - 75109", "stop_name": "BARBES - ROCHECHOUART"}, "geometry": {"type": "Point", "coordinates": [2.3489331575610874, 48.88346447590784]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "86dda9a3ca107dd7aefc46d705fc7fb788b827ce", "fields": {"departement": "75", "stop_lat": 48.86379184179416, "code_postal": "75116", "stop_lon": 2.29100802489245, "coord": [48.86379184179416, 2.29100802489245], "stop_id": 3740531, "stop_desc": "43 AVENUE DU PRESIDENT WILSON - 75116", "stop_name": "ALBERT DE MUN"}, "geometry": {"type": "Point", "coordinates": [2.29100802489245, 48.86379184179416]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3a8932f6f8d5cdd7ab03fe9deba57029024d8d6e", "fields": {"departement": "75", "stop_lat": 48.87582585780375, "code_postal": "75109", "stop_lon": 2.339203078574824, "coord": [48.87582585780375, 2.339203078574824], "stop_id": 3740510, "stop_desc": "17 RUE DE CHATEAUDUN - 75109", "stop_name": "CARREFOUR DE CHATEAUDUN"}, "geometry": {"type": "Point", "coordinates": [2.339203078574824, 48.87582585780375]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3ecdcbec0158183e325c455e0ae163c7907e0e80", "fields": {"departement": "75", "stop_lat": 48.881216560788346, "code_postal": "75108", "stop_lon": 2.317264506301832, "coord": [48.881216560788346, 2.317264506301832], "stop_id": 3740330, "stop_desc": "63 BOULEVARD DES BATIGNOLLES - 75108", "stop_name": "VILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.317264506301832, 48.881216560788346]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d7e1cdf12721fd1e1acc6e22fc72928b9a3b82e8", "fields": {"departement": "75", "stop_lat": 48.882215821789494, "code_postal": "75109", "stop_lon": 2.337213801603721, "coord": [48.882215821789494, 2.337213801603721], "stop_id": 3740335, "stop_desc": "FACE 20 BOULEVARD DE CLICHY - 75109", "stop_name": "PIGALLE"}, "geometry": {"type": "Point", "coordinates": [2.337213801603721, 48.882215821789494]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a87cbc14543fa9ce1db8f3b5dc954d50609534a4", "fields": {"departement": "75", "stop_lat": 48.876202910971784, "code_postal": "75109", "stop_lon": 2.34736461779748, "coord": [48.876202910971784, 2.34736461779748], "stop_id": 3740505, "stop_desc": "18 RUE PAPILLON - 75109", "stop_name": "SQUARE MONTHOLON"}, "geometry": {"type": "Point", "coordinates": [2.34736461779748, 48.876202910971784]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bb1177aded44ea2935e7225bc61030032cc2f1a5", "fields": {"departement": "75", "stop_lat": 48.86518637209752, "code_postal": "75116", "stop_lon": 2.295011754450006, "coord": [48.86518637209752, 2.295011754450006], "stop_id": 3740528, "stop_desc": "6 AVENUE PIERRE 1 ER DE SERBIE - 75116", "stop_name": "IENA"}, "geometry": {"type": "Point", "coordinates": [2.295011754450006, 48.86518637209752]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d1011767826f97311120d7b45f3fcb17a0d0e2f2", "fields": {"departement": "75", "stop_lat": 48.8803341450589, "code_postal": "75108", "stop_lon": 2.309034539078685, "coord": [48.8803341450589, 2.309034539078685], "stop_id": 3740328, "stop_desc": "BOULEVARD DE COURCELLES - 75108", "stop_name": "MONCEAU"}, "geometry": {"type": "Point", "coordinates": [2.309034539078685, 48.8803341450589]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1b89f8490a846f4cab6e3b4e1347a34fd9415381", "fields": {"departement": "75", "stop_lat": 48.8528303031503, "code_postal": "75116", "stop_lon": 2.2619001308795323, "coord": [48.8528303031503, 2.2619001308795323], "stop_id": 3740544, "stop_desc": "51 BOULEVARD SUCHET - 75116", "stop_name": "RAFFET"}, "geometry": {"type": "Point", "coordinates": [2.2619001308795323, 48.8528303031503]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5b8393618345d12f2a6b70c6cc4ee2183ecf0cde", "fields": {"departement": "75", "stop_lat": 48.853468464049335, "code_postal": "75116", "stop_lon": 2.2619809194689444, "coord": [48.853468464049335, 2.2619809194689444], "stop_id": 3740543, "stop_desc": "BOULEVARD SUCHET - 75116", "stop_name": "RAFFET"}, "geometry": {"type": "Point", "coordinates": [2.2619809194689444, 48.853468464049335]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "99bf7e17b20639f715569f984bdeb2150bc4ab16", "fields": {"departement": "91", "stop_lat": 48.69429281893805, "code_postal": "91326", "stop_lon": 2.366310765272141, "coord": [48.69429281893805, 2.366310765272141], "stop_id": 3732174, "stop_desc": "FACE 5 AVENUE GABRIEL PERI - 91326", "stop_name": "CIMETIERE DE JUVISY-SUR-ORGE"}, "geometry": {"type": "Point", "coordinates": [2.366310765272141, 48.69429281893805]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f4e7a4c9dd042bab69a3bf393017cd108ea4018c", "fields": {"departement": "91", "stop_lat": 48.680372842719194, "code_postal": "91589", "stop_lon": 2.3432000763075984, "coord": [48.680372842719194, 2.3432000763075984], "stop_id": 3732217, "stop_desc": "77 AV CHARLES DE GAULLE - 91589", "stop_name": "BRIAND - SALENGRO"}, "geometry": {"type": "Point", "coordinates": [2.3432000763075984, 48.680372842719194]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "009b7918cdf1575d9b7f9c3e4b04ae4651a75fcf", "fields": {"departement": "91", "stop_lat": 48.685523097383836, "code_postal": "91589", "stop_lon": 2.346933879354916, "coord": [48.685523097383836, 2.346933879354916], "stop_id": 3732170, "stop_desc": "44 TER BD ARISTIDE BRIAND - 91589", "stop_name": "LES PEUPLIERS"}, "geometry": {"type": "Point", "coordinates": [2.346933879354916, 48.685523097383836]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "983cb345a8fce0b7b52d8d1943bea0501995becd", "fields": {"departement": "91", "stop_lat": 48.680912180885926, "code_postal": "91589", "stop_lon": 2.342833636658366, "coord": [48.680912180885926, 2.342833636658366], "stop_id": 3732167, "stop_desc": "6 BD ARISTIDE BRIAND - 91589", "stop_name": "BRIAND - SALENGRO"}, "geometry": {"type": "Point", "coordinates": [2.342833636658366, 48.680912180885926]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "90464b317e4eb95f7581c3e9a9a55e9c3a8ed1aa", "fields": {"departement": "91", "stop_lat": 48.68576575323934, "code_postal": "91589", "stop_lon": 2.347381912310779, "coord": [48.68576575323934, 2.347381912310779], "stop_id": 3732136, "stop_desc": "87-89 BD ARISTIDE BRIAND - 91589", "stop_name": "LES PEUPLIERS"}, "geometry": {"type": "Point", "coordinates": [2.347381912310779, 48.68576575323934]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9d69410330675155ccee6df334191c9f650503ea", "fields": {"departement": "91", "stop_lat": 48.69398544536874, "code_postal": "91326", "stop_lon": 2.372787077174569, "coord": [48.69398544536874, 2.372787077174569], "stop_id": 3732181, "stop_desc": "32 AVENUE CAMILLE FLAMMARION - 91326", "stop_name": "THIERS"}, "geometry": {"type": "Point", "coordinates": [2.372787077174569, 48.69398544536874]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e2475a322740e0ab4091a5ec0ea4b8cd3eed7308", "fields": {"departement": "91", "stop_lat": 48.674583884495874, "code_postal": "91589", "stop_lon": 2.346850409634568, "coord": [48.674583884495874, 2.346850409634568], "stop_id": 3732164, "stop_desc": "5-7 AV GAMBETTA - 91589", "stop_name": "MARTINIERE"}, "geometry": {"type": "Point", "coordinates": [2.346850409634568, 48.674583884495874]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "95b6009ab88bfc5e6ae9e5aae0888e696429b385", "fields": {"departement": "91", "stop_lat": 48.683464847717204, "code_postal": "91589", "stop_lon": 2.344870128655364, "coord": [48.683464847717204, 2.344870128655364], "stop_id": 3732168, "stop_desc": "26 BD ARISTIDE BRIAND - 91589", "stop_name": "GOUNOD"}, "geometry": {"type": "Point", "coordinates": [2.344870128655364, 48.683464847717204]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b585bd331801d33000b51aded34bf165434e42d3", "fields": {"departement": "91", "stop_lat": 48.67388314342264, "code_postal": "91589", "stop_lon": 2.338747623791262, "coord": [48.67388314342264, 2.338747623791262], "stop_id": 3732161, "stop_desc": "AV HENRI OUZILLEAU - 91589", "stop_name": "UTRILLO"}, "geometry": {"type": "Point", "coordinates": [2.338747623791262, 48.67388314342264]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8698498e8dbc7e57f09da8bbc285562efa6186e3", "fields": {"departement": "91", "stop_lat": 48.69382267955351, "code_postal": "91326", "stop_lon": 2.375896211585746, "coord": [48.69382267955351, 2.375896211585746], "stop_id": 3732205, "stop_desc": "8-10 AVENUE RASPAIL - 91326", "stop_name": "RASPAIL"}, "geometry": {"type": "Point", "coordinates": [2.375896211585746, 48.69382267955351]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d09d6d7b7e7084245d857a8d5dfcacf6b57e3735", "fields": {"departement": "94", "stop_lat": 48.79960320040546, "code_postal": "94019", "stop_lon": 2.5435497977978447, "coord": [48.79960320040546, 2.5435497977978447], "stop_id": 3743494, "stop_desc": "FACE 39 ROUTE DE LA LIBERATION - 94019", "stop_name": "RUE DES FUSILLES DE CHATEAUBRIANT"}, "geometry": {"type": "Point", "coordinates": [2.5435497977978447, 48.79960320040546]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1d441ebb8f153587cdf54ef7a77ea9608bf8db1b", "fields": {"departement": "94", "stop_lat": 48.84585268408715, "code_postal": "94067", "stop_lon": 2.4176919610456427, "coord": [48.84585268408715, 2.4176919610456427], "stop_id": 3748072, "stop_desc": "3 AVENUE DU GENERAL DE GAULLE - 94067", "stop_name": "SAINT-MANDE - TOURELLE"}, "geometry": {"type": "Point", "coordinates": [2.4176919610456427, 48.84585268408715]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3241d78e3e223a08bd00ad023ccb68a12470b22d", "fields": {"departement": "75", "stop_lat": 48.84868881809981, "code_postal": "75112", "stop_lon": 2.393129435536575, "coord": [48.84868881809981, 2.393129435536575], "stop_id": 3748065, "stop_desc": "270-272 RUE DU FAUBOURG SAINT ANTOINE - 75112", "stop_name": "CHEVREUL"}, "geometry": {"type": "Point", "coordinates": [2.393129435536575, 48.84868881809981]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f15d1e755c00f60bca2e22bf856b0a0f3bb03c7c", "fields": {"departement": "93", "stop_lat": 48.924144283877396, "code_postal": "93066", "stop_lon": 2.372808590361352, "coord": [48.924144283877396, 2.372808590361352], "stop_id": 3741084, "stop_desc": "86 AVENUE FRANCIS DE PRESSENSE - 93066", "stop_name": "COLLEGE FREDERICO GARCIA LORCA"}, "geometry": {"type": "Point", "coordinates": [2.372808590361352, 48.924144283877396]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b17bbe0f3257dd4649609496f6d3792ac6c16166", "fields": {"departement": "95", "stop_lat": 48.97569199699532, "code_postal": "95268", "stop_lon": 2.396119736437475, "coord": [48.97569199699532, 2.396119736437475], "stop_id": 3741000, "stop_desc": "AVENUE CHARLES DE GAULLE - 95268", "stop_name": "JEAN-BAPTISTE COROT - LAMARTINE"}, "geometry": {"type": "Point", "coordinates": [2.396119736437475, 48.97569199699532]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c091abf159e366bcdb346ba0442fccad9cbc1e53", "fields": {"departement": "94", "stop_lat": 48.81088865939043, "code_postal": "94017", "stop_lon": 2.540219823910816, "coord": [48.81088865939043, 2.540219823910816], "stop_id": 3743458, "stop_desc": "20 R DU BOIS L'ABBE - 94017", "stop_name": "RUE DU BOIS L'ABBE - LOUISE COLLET"}, "geometry": {"type": "Point", "coordinates": [2.540219823910816, 48.81088865939043]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c198a158be49e0d91f68b126f984c3665cb2b5e6", "fields": {"departement": "94", "stop_lat": 48.817445659342866, "code_postal": "94017", "stop_lon": 2.4955234559960484, "coord": [48.817445659342866, 2.4955234559960484], "stop_id": 3743480, "stop_desc": "112-114 AVENUE ROGER SALENGRO - 94017", "stop_name": "JEAN-BAPTISTE CLEMENT"}, "geometry": {"type": "Point", "coordinates": [2.4955234559960484, 48.817445659342866]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8d7ddeb985ecce083d5b8cbd72694767bb035026", "fields": {"departement": "94", "stop_lat": 48.816504806848876, "code_postal": "94017", "stop_lon": 2.500066196243978, "coord": [48.816504806848876, 2.500066196243978], "stop_id": 3743478, "stop_desc": "136 AVENUE ROGER SALENGRO - 94017", "stop_name": "PLAGE DE CHAMPIGNY"}, "geometry": {"type": "Point", "coordinates": [2.500066196243978, 48.816504806848876]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "75e559860190100069f388126de7b81ff5f9f2cd", "fields": {"departement": "94", "stop_lat": 48.81313554348275, "code_postal": "94017", "stop_lon": 2.511936047825764, "coord": [48.81313554348275, 2.511936047825764], "stop_id": 3743472, "stop_desc": "32 RUE LOUIS TALAMONI - 94017", "stop_name": "MAIRIE DE CHAMPIGNY"}, "geometry": {"type": "Point", "coordinates": [2.511936047825764, 48.81313554348275]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "343bc0a47ad8d32d635e59caaecc62066249d241", "fields": {"departement": "94", "stop_lat": 48.81403046676577, "code_postal": "94017", "stop_lon": 2.5575835585876816, "coord": [48.81403046676577, 2.5575835585876816], "stop_id": 3743447, "stop_desc": "PLACE DE LA RESISTANCE - 94017", "stop_name": "PLACE DE LA RESISTANCE"}, "geometry": {"type": "Point", "coordinates": [2.5575835585876816, 48.81403046676577]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "51a25463cde4a916f2c4d0e219712527fafff7c0", "fields": {"departement": "95", "stop_lat": 48.97634630247128, "code_postal": "95585", "stop_lon": 2.3788238728092614, "coord": [48.97634630247128, 2.3788238728092614], "stop_id": 4230074, "stop_desc": "AVENUE AUGUSTE PERRET - 95585", "stop_name": "LES FLANADES"}, "geometry": {"type": "Point", "coordinates": [2.3788238728092614, 48.97634630247128]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8529374e1d24ee78dbe59b702330b7c452a67f98", "fields": {"departement": "95", "stop_lat": 48.978215453264504, "code_postal": "95585", "stop_lon": 2.3789618957760865, "coord": [48.978215453264504, 2.3789618957760865], "stop_id": 4230076, "stop_desc": "BOULEVARD EDOUARD BRANLY - 95585", "stop_name": "FORUM DES CHOLETTES"}, "geometry": {"type": "Point", "coordinates": [2.3789618957760865, 48.978215453264504]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8bff90fe8be1fc8b6f0a3c62cfd070a18b913c46", "fields": {"departement": "95", "stop_lat": 48.978284356790724, "code_postal": "95585", "stop_lon": 2.3867846247994557, "coord": [48.978284356790724, 2.3867846247994557], "stop_id": 4230104, "stop_desc": "12 AVENUE PAUL VALERY - 95585", "stop_name": "LOCHERES"}, "geometry": {"type": "Point", "coordinates": [2.3867846247994557, 48.978284356790724]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0d343929e1731be1b2b14338c8c0a246d4a17e3d", "fields": {"departement": "95", "stop_lat": 48.977222409393406, "code_postal": "95268", "stop_lon": 2.3903603943501546, "coord": [48.977222409393406, 2.3903603943501546], "stop_id": 4230106, "stop_desc": "PISTE GARE ROUTIERE - 95268", "stop_name": "GARGES - SARCELLES RER"}, "geometry": {"type": "Point", "coordinates": [2.3903603943501546, 48.977222409393406]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "627e2c0adc056ab6c57a4eaaae262cb5f634016e", "fields": {"departement": "95", "stop_lat": 49.011019041292165, "code_postal": "95585", "stop_lon": 2.3683739325781117, "coord": [49.011019041292165, 2.3683739325781117], "stop_id": 4238636, "stop_desc": "FACE 95 RUE GABRIEL PERI - 95585", "stop_name": "BOIS D'ECOUEN"}, "geometry": {"type": "Point", "coordinates": [2.3683739325781117, 49.011019041292165]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "514ac53b15067452193c1fb6ceb28d9a422f2af0", "fields": {"departement": "95", "stop_lat": 49.00113214356447, "code_postal": "95585", "stop_lon": 2.3751424332945916, "coord": [49.00113214356447, 2.3751424332945916], "stop_id": 4238644, "stop_desc": "27 RUE DE GIRAUDON - 95585", "stop_name": "RUE DES FAUVETTES"}, "geometry": {"type": "Point", "coordinates": [2.3751424332945916, 49.00113214356447]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "36258a15a22911328d318540258140d74101bdac", "fields": {"departement": "95", "stop_lat": 49.00102426398719, "code_postal": "95585", "stop_lon": 2.3752789356338884, "coord": [49.00102426398719, 2.3752789356338884], "stop_id": 4238645, "stop_desc": "42 RUE DE GIRAUDON - 95585", "stop_name": "RUE DES FAUVETTES"}, "geometry": {"type": "Point", "coordinates": [2.3752789356338884, 49.00102426398719]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "691ed96891c36b6f666ba710c7cbeaa69d65853b", "fields": {"departement": "95", "stop_lat": 48.994897529127414, "code_postal": "95539", "stop_lon": 2.368473484612116, "coord": [48.994897529127414, 2.368473484612116], "stop_id": 4238650, "stop_desc": "PLACE DE LA GARE - 95539", "stop_name": "GARE DE SARCELLES-SAINT-BRICE"}, "geometry": {"type": "Point", "coordinates": [2.368473484612116, 48.994897529127414]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c1f97fee357b1ccbb39a3eab00d0cf86a56913ef", "fields": {"departement": "95", "stop_lat": 48.99361122312051, "code_postal": "95585", "stop_lon": 2.3729382789699915, "coord": [48.99361122312051, 2.3729382789699915], "stop_id": 4238652, "stop_desc": "FACE 17 RUE CARNOT - 95585", "stop_name": "CARNOT"}, "geometry": {"type": "Point", "coordinates": [2.3729382789699915, 48.99361122312051]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8e5c71570e37eaa64cf92ddb5f38f6ad1cc2c1c6", "fields": {"departement": "95", "stop_lat": 48.988595467302254, "code_postal": "95585", "stop_lon": 2.3771405144502658, "coord": [48.988595467302254, 2.3771405144502658], "stop_id": 4238655, "stop_desc": "0 BOULEVARD FRANCOIS MITTERRAND - 95585", "stop_name": "MOZART - MALESHERBES"}, "geometry": {"type": "Point", "coordinates": [2.3771405144502658, 48.988595467302254]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aaf1d592af98c87ddf9d6007933dc9f3fec6fdbf", "fields": {"departement": "95", "stop_lat": 48.98882900033444, "code_postal": "95585", "stop_lon": 2.377482067468722, "coord": [48.98882900033444, 2.377482067468722], "stop_id": 4238656, "stop_desc": "BOULEVARD FRANCOIS MITTERRAND - 95585", "stop_name": "MOZART - MALESHERBES"}, "geometry": {"type": "Point", "coordinates": [2.377482067468722, 48.98882900033444]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7abe2ccd62b3dd176632df585e9580929dd2d74c", "fields": {"departement": "95", "stop_lat": 48.978284356790724, "code_postal": "95585", "stop_lon": 2.3867846247994557, "coord": [48.978284356790724, 2.3867846247994557], "stop_id": 4238664, "stop_desc": "12 AVENUE PAUL VALERY - 95585", "stop_name": "LOCHERES"}, "geometry": {"type": "Point", "coordinates": [2.3867846247994557, 48.978284356790724]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "09b404b63cb09762cccd236b180ba920bc4996e8", "fields": {"departement": "95", "stop_lat": 48.971790664826926, "code_postal": "95268", "stop_lon": 2.3984358702053443, "coord": [48.971790664826926, 2.3984358702053443], "stop_id": 4238672, "stop_desc": "RUE LE NOTRE - 95268", "stop_name": "HOTEL DE VILLE DE GARGES-LES-GONESSE"}, "geometry": {"type": "Point", "coordinates": [2.3984358702053443, 48.971790664826926]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5cf6755e3aa86f187a3916a9c5fde9a599a5cfdc", "fields": {"departement": "95", "stop_lat": 48.963461004407435, "code_postal": "95268", "stop_lon": 2.412538290462792, "coord": [48.963461004407435, 2.412538290462792], "stop_id": 4238680, "stop_desc": "49 AVENUE AMBROISE CROIZAT - 95268", "stop_name": "DECLEMY"}, "geometry": {"type": "Point", "coordinates": [2.412538290462792, 48.963461004407435]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7f22aba0113c9136b76317132da0ec480751a5c0", "fields": {"departement": "93", "stop_lat": 48.953905794238224, "code_postal": "93030", "stop_lon": 2.4162087349141093, "coord": [48.953905794238224, 2.4162087349141093], "stop_id": 4238683, "stop_desc": "21 AVENUE LOUIS LARIVIERE - 93030", "stop_name": "GABRIEL PERI"}, "geometry": {"type": "Point", "coordinates": [2.4162087349141093, 48.953905794238224]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d3290294799fdbcd0b8a04eb805c7017e4e735ed", "fields": {"departement": "93", "stop_lat": 48.9517037960367, "code_postal": "93030", "stop_lon": 2.416587439952859, "coord": [48.9517037960367, 2.416587439952859], "stop_id": 4238685, "stop_desc": "AVENUE LOUIS LARIVIERE - 93030", "stop_name": "PLACE DU 16 AOUT 1943"}, "geometry": {"type": "Point", "coordinates": [2.416587439952859, 48.9517037960367]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "af3b57b1c4904e9596b88bbbb421132268216ce9", "fields": {"departement": "93", "stop_lat": 48.949359584636994, "code_postal": "93030", "stop_lon": 2.414564459753071, "coord": [48.949359584636994, 2.414564459753071], "stop_id": 4238687, "stop_desc": "14 AVENUE DU GENERAL DE GAULLE - 93030", "stop_name": "ALBERT CHARDAVOINE"}, "geometry": {"type": "Point", "coordinates": [2.414564459753071, 48.949359584636994]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "070a9cfd665450413889417bcfc75624f97aee13", "fields": {"departement": "93", "stop_lat": 48.94099671273499, "code_postal": "93030", "stop_lon": 2.4221643805930215, "coord": [48.94099671273499, 2.4221643805930215], "stop_id": 4238690, "stop_desc": "AVENUE MARECHAL LECLERC - 93030", "stop_name": "LA COMETE"}, "geometry": {"type": "Point", "coordinates": [2.4221643805930215, 48.94099671273499]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "902b2b77346e5d949ed810abb00d857a8701b889", "fields": {"departement": "93", "stop_lat": 48.9364636778597, "code_postal": "93013", "stop_lon": 2.4271768776938742, "coord": [48.9364636778597, 2.4271768776938742], "stop_id": 4238693, "stop_desc": "95 AVENUE DE LA DIVISION LECLERC - 93013", "stop_name": "PIERRE CURIE"}, "geometry": {"type": "Point", "coordinates": [2.4271768776938742, 48.9364636778597]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "727b98676c31cbcab95ef2cdae12f844b2e54d6a", "fields": {"departement": "93", "stop_lat": 48.93437993252766, "code_postal": "93013", "stop_lon": 2.4255636723591056, "coord": [48.93437993252766, 2.4255636723591056], "stop_id": 4238696, "stop_desc": "48 AVENUE DE LA DIVISION LECLERC - 93013", "stop_name": "ANIZAN CAVILLON - HOTEL DE VILLE"}, "geometry": {"type": "Point", "coordinates": [2.4255636723591056, 48.93437993252766]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "39ad36832cc6b5ff5cccb71edcf86d3c98f16612", "fields": {"departement": "93", "stop_lat": 48.930973587101626, "code_postal": "93013", "stop_lon": 2.425994333071701, "coord": [48.930973587101626, 2.425994333071701], "stop_id": 4238700, "stop_desc": "PLACE DES DEPORTES - 93013", "stop_name": "LE BOURGET RER"}, "geometry": {"type": "Point", "coordinates": [2.425994333071701, 48.930973587101626]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "df56d2b4528898494a8b038c1001015967396d52", "fields": {"departement": "95", "stop_lat": 48.98882900033444, "code_postal": "95585", "stop_lon": 2.377482067468722, "coord": [48.98882900033444, 2.377482067468722], "stop_id": 4238709, "stop_desc": "BOULEVARD FRANCOIS MITTERRAND - 95585", "stop_name": "MOZART - MALESHERBES"}, "geometry": {"type": "Point", "coordinates": [2.377482067468722, 48.98882900033444]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "58c5e0900daa3e618b3a7c966d48b03af79b85bd", "fields": {"departement": "95", "stop_lat": 48.975961680577434, "code_postal": "95268", "stop_lon": 2.3959425734505366, "coord": [48.975961680577434, 2.3959425734505366], "stop_id": 4238721, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 95268", "stop_name": "JEAN-BAPTISTE COROT - LAMARTINE"}, "geometry": {"type": "Point", "coordinates": [2.3959425734505366, 48.975961680577434]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4c928b78873fdac643d637857cebe96674fa9287", "fields": {"departement": "95", "stop_lat": 48.97049573285289, "code_postal": "95268", "stop_lon": 2.40009964917705, "coord": [48.97049573285289, 2.40009964917705], "stop_id": 4238727, "stop_desc": "RUE JEAN GOUJON - 95268", "stop_name": "LES MURIERS"}, "geometry": {"type": "Point", "coordinates": [2.40009964917705, 48.97049573285289]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0fb4a4a4c23b1fa9517a5220077c2032de2c88f1", "fields": {"departement": "93", "stop_lat": 48.956772558782895, "code_postal": "93030", "stop_lon": 2.4161994614082407, "coord": [48.956772558782895, 2.4161994614082407], "stop_id": 4238735, "stop_desc": "AVENUE AMBROISE CROIZAT - 93030", "stop_name": "LEO LAGRANGE"}, "geometry": {"type": "Point", "coordinates": [2.4161994614082407, 48.956772558782895]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "62b9bec3be17af5ed1bf14b0f0b0336f7db6796b", "fields": {"departement": "93", "stop_lat": 48.93437993252766, "code_postal": "93013", "stop_lon": 2.4255636723591056, "coord": [48.93437993252766, 2.4255636723591056], "stop_id": 4238749, "stop_desc": "48 AVENUE DE LA DIVISION LECLERC - 93013", "stop_name": "ANIZAN CAVILLON - HOTEL DE VILLE"}, "geometry": {"type": "Point", "coordinates": [2.4255636723591056, 48.93437993252766]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8d3071316a837cd05aaae3d70b8f62c5656b5793", "fields": {"departement": "93", "stop_lat": 48.930973587101626, "code_postal": "93013", "stop_lon": 2.425994333071701, "coord": [48.930973587101626, 2.425994333071701], "stop_id": 4238753, "stop_desc": "PLACE DES DEPORTES - 93013", "stop_name": "LE BOURGET RER"}, "geometry": {"type": "Point", "coordinates": [2.425994333071701, 48.930973587101626]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "abc5c4a7c1da09a53df8b4d6ac20bb748dfb6a69", "fields": {"departement": "95", "stop_lat": 49.005733947663856, "code_postal": "95585", "stop_lon": 2.3725232038314026, "coord": [49.005733947663856, 2.3725232038314026], "stop_id": 4238757, "stop_desc": "FACE 58 RUE GABRIEL PERI - 95585", "stop_name": "BEL AIR - GOSSEROTS"}, "geometry": {"type": "Point", "coordinates": [2.3725232038314026, 49.005733947663856]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1ade3947b47407ae16c5190c88af3aec327443dc", "fields": {"departement": "95", "stop_lat": 48.99603815234851, "code_postal": "95585", "stop_lon": 2.370864116699428, "coord": [48.99603815234851, 2.370864116699428], "stop_id": 4238762, "stop_desc": "32 BOULEVARD DU DOCTEUR GALVANI - 95585", "stop_name": "GALVANI - VOLTAIRE"}, "geometry": {"type": "Point", "coordinates": [2.370864116699428, 48.99603815234851]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2f7c9bca49759b22cb4c2ce331b1fd95daa89c08", "fields": {"departement": "95", "stop_lat": 48.96337124983975, "code_postal": "95268", "stop_lon": 2.412360733231345, "coord": [48.96337124983975, 2.412360733231345], "stop_id": 4238778, "stop_desc": "FACE 47 AVENUE AMBROISE CROIZAT - 95268", "stop_name": "DECLEMY"}, "geometry": {"type": "Point", "coordinates": [2.412360733231345, 48.96337124983975]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "34afa092d970a3f2dd9786e4c269e517ceb5ee51", "fields": {"departement": "93", "stop_lat": 48.953905794238224, "code_postal": "93030", "stop_lon": 2.4162087349141093, "coord": [48.953905794238224, 2.4162087349141093], "stop_id": 4238780, "stop_desc": "21 AVENUE LOUIS LARIVIERE - 93030", "stop_name": "GABRIEL PERI"}, "geometry": {"type": "Point", "coordinates": [2.4162087349141093, 48.953905794238224]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "491dfeffd0e3360696e2f00ef007e9a2c1633b0b", "fields": {"departement": "92", "stop_lat": 48.92293456245295, "code_postal": "92025", "stop_lon": 2.2544475041603773, "coord": [48.92293456245295, 2.2544475041603773], "stop_id": 4274237, "stop_desc": "28 RUE DU BOURNARD - 92025", "stop_name": "MAIRIE DE COLOMBES"}, "geometry": {"type": "Point", "coordinates": [2.2544475041603773, 48.92293456245295]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3f10dc1233fa7f503d5bed5fbaf8768afabb1a52", "fields": {"departement": "92", "stop_lat": 48.923186035500706, "code_postal": "92025", "stop_lon": 2.2542152626298364, "coord": [48.923186035500706, 2.2542152626298364], "stop_id": 4274238, "stop_desc": "FACE 20 RUE DU BOURNARD - 92025", "stop_name": "MAIRIE DE COLOMBES"}, "geometry": {"type": "Point", "coordinates": [2.2542152626298364, 48.923186035500706]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d3f975675c87e9ca4e32ef9fea7bd67e16b0c338", "fields": {"departement": "92", "stop_lat": 48.92365679804589, "code_postal": "92025", "stop_lon": 2.2593150228901626, "coord": [48.92365679804589, 2.2593150228901626], "stop_id": 4274242, "stop_desc": "1-3 RUE DU BOURNARD - 92025", "stop_name": "GARE DE COLOMBES"}, "geometry": {"type": "Point", "coordinates": [2.2593150228901626, 48.92365679804589]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7846df0a5f16ef64c8afbe99f8f5fd8979311c07", "fields": {"departement": "92", "stop_lat": 48.9192044006067, "code_postal": "92009", "stop_lon": 2.267612755065094, "coord": [48.9192044006067, 2.267612755065094], "stop_id": 4274245, "stop_desc": "137 RUE VICTOR HUGO - 92009", "stop_name": "CUNY"}, "geometry": {"type": "Point", "coordinates": [2.267612755065094, 48.9192044006067]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1104df747728e6225a477c2c7287d13c95ae61cf", "fields": {"departement": "92", "stop_lat": 48.919324232798914, "code_postal": "92009", "stop_lon": 2.2729581402863257, "coord": [48.919324232798914, 2.2729581402863257], "stop_id": 4274248, "stop_desc": "72 RUE CHARLES CHEFSON - 92009", "stop_name": "AMIRAL COURBET"}, "geometry": {"type": "Point", "coordinates": [2.2729581402863257, 48.919324232798914]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eb2b2f9722b560b61ce9fb2f417e3426fd723a00", "fields": {"departement": "92", "stop_lat": 48.91350916270402, "code_postal": "92009", "stop_lon": 2.2720654430399616, "coord": [48.91350916270402, 2.2720654430399616], "stop_id": 4274251, "stop_desc": "15 RUE DU GENERAL LECLERC - 92009", "stop_name": "GARE DE BOIS-COLOMBES"}, "geometry": {"type": "Point", "coordinates": [2.2720654430399616, 48.91350916270402]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a2c2eccd6ed937b53753044900571dad6f5d5d34", "fields": {"departement": "92", "stop_lat": 48.91555613773131, "code_postal": "92009", "stop_lon": 2.268394889163132, "coord": [48.91555613773131, 2.268394889163132], "stop_id": 4274252, "stop_desc": "FACE 1 PLACE DE LA REPUBLIQUE - 92009", "stop_name": "HOTEL DE VILLE DE BOIS-COLOMBES"}, "geometry": {"type": "Point", "coordinates": [2.268394889163132, 48.91555613773131]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "118823404f3ffac245ec2c46db608d493c53f05e", "fields": {"departement": "92", "stop_lat": 48.91409109106308, "code_postal": "92009", "stop_lon": 2.268110496888367, "coord": [48.91409109106308, 2.268110496888367], "stop_id": 4274253, "stop_desc": "RUE FELIX BRAQUET - 92009", "stop_name": "HOTEL DE VILLE DE BOIS-COLOMBES"}, "geometry": {"type": "Point", "coordinates": [2.268110496888367, 48.91409109106308]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e247373696b55ad707e8db6967e411a0d26cdb9d", "fields": {"departement": "92", "stop_lat": 48.913064984329694, "code_postal": "92009", "stop_lon": 2.2654257811177585, "coord": [48.913064984329694, 2.2654257811177585], "stop_id": 4274255, "stop_desc": "3 RUE HEYNEN - 92009", "stop_name": "CLOAREC - PISCINE"}, "geometry": {"type": "Point", "coordinates": [2.2654257811177585, 48.913064984329694]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "737c36555a47659cad92086d636e678b7a161ee0", "fields": {"departement": "92", "stop_lat": 48.89736347692711, "code_postal": "92044", "stop_lon": 2.2800325202686906, "coord": [48.89736347692711, 2.2800325202686906], "stop_id": 4274267, "stop_desc": "RUE ANATOLE FRANCE - 92044", "stop_name": "PONT DE LEVALLOIS-METRO"}, "geometry": {"type": "Point", "coordinates": [2.2800325202686906, 48.89736347692711]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2d7fcf483b21b0bd543e0488b61515b1f82e6110", "fields": {"departement": "92", "stop_lat": 48.89679752208179, "code_postal": "92044", "stop_lon": 2.280523849254737, "coord": [48.89679752208179, 2.280523849254737], "stop_id": 4274268, "stop_desc": "FACE 136 RUE ANATOLE FRANCE - 92044", "stop_name": "PONT DE LEVALLOIS-METRO"}, "geometry": {"type": "Point", "coordinates": [2.280523849254737, 48.89679752208179]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "18f98be16f2c361d5f0a5608980bf83e8b510c87", "fields": {"departement": "92", "stop_lat": 48.913419352179375, "code_postal": "92009", "stop_lon": 2.2721746363974322, "coord": [48.913419352179375, 2.2721746363974322], "stop_id": 4274271, "stop_desc": "15 RUE DU GENERAL LECLERC - 92009", "stop_name": "GARE DE BOIS-COLOMBES."}, "geometry": {"type": "Point", "coordinates": [2.2721746363974322, 48.913419352179375]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4149e6fd641c9a473644ace82cb28340cbd5638d", "fields": {"departement": "93", "stop_lat": 48.95742446586799, "code_postal": "93005", "stop_lon": 2.462940206766457, "coord": [48.95742446586799, 2.462940206766457], "stop_id": 4274275, "stop_desc": "VOIE LONGEANT L'AUTOROUTE A1 - 93005", "stop_name": "GARONOR-PORTE SUD"}, "geometry": {"type": "Point", "coordinates": [2.462940206766457, 48.95742446586799]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8a8f77f3f35db7c78489e1bb8cae4ae63ee689c1", "fields": {"departement": "93", "stop_lat": 48.95732552622408, "code_postal": "93005", "stop_lon": 2.463021846246865, "coord": [48.95732552622408, 2.463021846246865], "stop_id": 4274276, "stop_desc": "RUE ROBERT BREMOND (VOIE PRIVEE DE GARONOR) - 93005", "stop_name": "GARONOR-PORTE SUD"}, "geometry": {"type": "Point", "coordinates": [2.463021846246865, 48.95732552622408]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6b6901d62701a2d5a002190ae527ee34ae80de85", "fields": {"departement": "93", "stop_lat": 48.952536508620526, "code_postal": "93007", "stop_lon": 2.462164198411897, "coord": [48.952536508620526, 2.462164198411897], "stop_id": 4274279, "stop_desc": "RUE ANATOLE SIGONNEAU - 93007", "stop_name": "ANATOLE SIGONNEAU - CENTRE D'AFFAIRES"}, "geometry": {"type": "Point", "coordinates": [2.462164198411897, 48.952536508620526]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "adba3f449480239047f3c548f46a89ea0b3c38be", "fields": {"departement": "93", "stop_lat": 48.950665169998864, "code_postal": "93007", "stop_lon": 2.4641518334444137, "coord": [48.950665169998864, 2.4641518334444137], "stop_id": 4274281, "stop_desc": "5 AVENUE E.RENAULT - 93007", "stop_name": "DESCARTES - RENAULT"}, "geometry": {"type": "Point", "coordinates": [2.4641518334444137, 48.950665169998864]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "507668bd12fb10f8593ed6b520da83496b6fc2ab", "fields": {"departement": "93", "stop_lat": 48.946742961962975, "code_postal": "93007", "stop_lon": 2.4593532342715596, "coord": [48.946742961962975, 2.4593532342715596], "stop_id": 4274292, "stop_desc": "109 AVENUE DE LA DIVISION LECLERC - 93007", "stop_name": "DIVISION LECLERC - LANGEVIN"}, "geometry": {"type": "Point", "coordinates": [2.4593532342715596, 48.946742961962975]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4194351276590e666952f8cc103888f4d826d09d", "fields": {"departement": "93", "stop_lat": 48.943609127934664, "code_postal": "93007", "stop_lon": 2.465485196660577, "coord": [48.943609127934664, 2.465485196660577], "stop_id": 4274294, "stop_desc": "FACE 3 AVENUE DE LA DIVISION LECLERC - 93007", "stop_name": "LIBERATION"}, "geometry": {"type": "Point", "coordinates": [2.465485196660577, 48.943609127934664]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e753467ff90434ea0152f501a8c593bc29dd61dd", "fields": {"departement": "93", "stop_lat": 48.93875222326211, "code_postal": "93007", "stop_lon": 2.460780414235105, "coord": [48.93875222326211, 2.460780414235105], "stop_id": 4274297, "stop_desc": "FACE 42 AVENUE HENRI BARBUSSE - 93007", "stop_name": "HOTEL DE VILLE DU BLANC-MESNIL"}, "geometry": {"type": "Point", "coordinates": [2.460780414235105, 48.93875222326211]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "214d06321f78d3c234de3de96bf9bf103db7d1a0", "fields": {"departement": "93", "stop_lat": 48.93906619547618, "code_postal": "93007", "stop_lon": 2.461326835644282, "coord": [48.93906619547618, 2.461326835644282], "stop_id": 4274298, "stop_desc": "54 AVENUE HENRI BARBUSSE - 93007", "stop_name": "HOTEL DE VILLE DU BLANC-MESNIL"}, "geometry": {"type": "Point", "coordinates": [2.461326835644282, 48.93906619547618]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3075d557c9d6a103215bc340629079f54f7350be", "fields": {"departement": "93", "stop_lat": 48.937028715881254, "code_postal": "93007", "stop_lon": 2.4588665245586574, "coord": [48.937028715881254, 2.4588665245586574], "stop_id": 4274300, "stop_desc": "FACE 25 AVENUE HENRI BARBUSSE - 93007", "stop_name": "ANCIENNE MAIRIE DE LE_BLANC-MESNIL"}, "geometry": {"type": "Point", "coordinates": [2.4588665245586574, 48.937028715881254]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d1b1e5b7eef24903a02ed8c49d1287f0ec98b241", "fields": {"departement": "93", "stop_lat": 48.93518871535055, "code_postal": "93029", "stop_lon": 2.45658419184077, "coord": [48.93518871535055, 2.45658419184077], "stop_id": 4274301, "stop_desc": "FACE 242 RUE ANATOLE FRANCE - 93029", "stop_name": "ROGER SALOMON"}, "geometry": {"type": "Point", "coordinates": [2.45658419184077, 48.93518871535055]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d425f975a1d5e2cdea219eea8a81701e51707fae", "fields": {"departement": "93", "stop_lat": 48.932960982135306, "code_postal": "93029", "stop_lon": 2.455569683574768, "coord": [48.932960982135306, 2.455569683574768], "stop_id": 4274304, "stop_desc": "RUE ANATOLE FRANCE - 93029", "stop_name": "DRANCY RER"}, "geometry": {"type": "Point", "coordinates": [2.455569683574768, 48.932960982135306]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2c5b2b767e4f0ecfbd85b46dc7334758e4eaab9d", "fields": {"departement": "93", "stop_lat": 48.93115337124984, "code_postal": "93029", "stop_lon": 2.4568204083253646, "coord": [48.93115337124984, 2.4568204083253646], "stop_id": 4274306, "stop_desc": "RUE MAURICE BERNARD - 93029", "stop_name": "PLACE JOFFRE"}, "geometry": {"type": "Point", "coordinates": [2.4568204083253646, 48.93115337124984]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9f8b4bbac31ba5d5d1403b616f295d7216511916", "fields": {"departement": "93", "stop_lat": 48.92691748838212, "code_postal": "93029", "stop_lon": 2.459824761687686, "coord": [48.92691748838212, 2.459824761687686], "stop_id": 4274307, "stop_desc": "FACE 89 AVENUE CASTELNAU - 93029", "stop_name": "MADELON"}, "geometry": {"type": "Point", "coordinates": [2.459824761687686, 48.92691748838212]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5c12f926760299ae7b5c0d529aa1467b48ec26f0", "fields": {"departement": "93", "stop_lat": 48.92512759924023, "code_postal": "93029", "stop_lon": 2.4612661684131454, "coord": [48.92512759924023, 2.4612661684131454], "stop_id": 4274308, "stop_desc": "FACE 125 AVENUE CASTELNAU - 93029", "stop_name": "CITE DES COQUELICOTS"}, "geometry": {"type": "Point", "coordinates": [2.4612661684131454, 48.92512759924023]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b91c775d1ad1a8b2ad175d2d74d0bdf0200b34e2", "fields": {"departement": "94", "stop_lat": 48.75972109850383, "code_postal": "94034", "stop_lon": 2.318330844280497, "coord": [48.75972109850383, 2.318330844280497], "stop_id": 4274389, "stop_desc": "FACE 7-9 BOULEVARD PASTEUR - 94034", "stop_name": "PASTEUR"}, "geometry": {"type": "Point", "coordinates": [2.318330844280497, 48.75972109850383]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0d81065f9b88f7a4041fba8bedd32f47d4d5c7dc", "fields": {"departement": "94", "stop_lat": 48.75687180698333, "code_postal": "94034", "stop_lon": 2.3180056265785707, "coord": [48.75687180698333, 2.3180056265785707], "stop_id": 4274390, "stop_desc": "2 R DU DOCTEUR EMILE ROUX - 94034", "stop_name": "FOYER EMILE ROUX"}, "geometry": {"type": "Point", "coordinates": [2.3180056265785707, 48.75687180698333]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d6abd86aa1ff75ae30928eed0bf74c9e9d1457cc", "fields": {"departement": "94", "stop_lat": 48.75604539891785, "code_postal": "94034", "stop_lon": 2.3214043692119475, "coord": [48.75604539891785, 2.3214043692119475], "stop_id": 4274397, "stop_desc": "17-19 R ROGER SALENGRO - 94034", "stop_name": "CENTRE ADMINISTRATIF"}, "geometry": {"type": "Point", "coordinates": [2.3214043692119475, 48.75604539891785]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "383daad3074157a6f647b657a9684cb92e4f8baf", "fields": {"departement": "94", "stop_lat": 48.77827394172297, "code_postal": "94038", "stop_lon": 2.3350379495207525, "coord": [48.77827394172297, 2.3350379495207525], "stop_id": 4274410, "stop_desc": "FACE 13 RUE JEAN JAURES - 94038", "stop_name": "SOUS-PREFECTURE - EGLISE DE L'HAY-LES-ROSES"}, "geometry": {"type": "Point", "coordinates": [2.3350379495207525, 48.77827394172297]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e48b285b1c15b79d1429edaca3d4b383bb182e6f", "fields": {"departement": "94", "stop_lat": 48.77882222928945, "code_postal": "94038", "stop_lon": 2.3376490697971875, "coord": [48.77882222928945, 2.3376490697971875], "stop_id": 4274411, "stop_desc": "40 RUE JEAN JAURES - 94038", "stop_name": "MAIRIE DE L'HAY-LES-ROSES"}, "geometry": {"type": "Point", "coordinates": [2.3376490697971875, 48.77882222928945]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6bd25ded277d230abbff5764072bff1f5dc97483", "fields": {"departement": "94", "stop_lat": 48.78478099183424, "code_postal": "94038", "stop_lon": 2.3451570145813214, "coord": [48.78478099183424, 2.3451570145813214], "stop_id": 4274415, "stop_desc": "0 NR - 94038", "stop_name": "CENTRE COMMERCIAL DE L'HAY-LES-ROSES"}, "geometry": {"type": "Point", "coordinates": [2.3451570145813214, 48.78478099183424]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "42e4b1b7dbdae9e1f012304b4b79f16eb5a147f7", "fields": {"departement": "91", "stop_lat": 48.73961387407147, "code_postal": "91479", "stop_lon": 2.3597723941125155, "coord": [48.73961387407147, 2.3597723941125155], "stop_id": 4284905, "stop_desc": "2 ALLEE HELENE BOUCHER - 91479", "stop_name": "HELENE BOUCHER (ORLYTECH)"}, "geometry": {"type": "Point", "coordinates": [2.3597723941125155, 48.73961387407147]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "40cc79d1d5f3931512f7e7c4e7c95994b5d93b8f", "fields": {"departement": "94", "stop_lat": 48.752674551430026, "code_postal": "94065", "stop_lon": 2.3551157008751726, "coord": [48.752674551430026, 2.3551157008751726], "stop_id": 4284913, "stop_desc": "PLACE DU RELAIS - 94065", "stop_name": "PORTE DE RUNGIS"}, "geometry": {"type": "Point", "coordinates": [2.3551157008751726, 48.752674551430026]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2ad320045f7de8834722cc7e1dd2c79574afd6bd", "fields": {"departement": "94", "stop_lat": 48.755862583370366, "code_postal": "94065", "stop_lon": 2.368506590138602, "coord": [48.755862583370366, 2.368506590138602], "stop_id": 4284917, "stop_desc": "RUE LATERALE - 94065", "stop_name": "LA BELLE EPINE"}, "geometry": {"type": "Point", "coordinates": [2.368506590138602, 48.755862583370366]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "34a18e2390c28088b9216ecc462b9929308f3da4", "fields": {"departement": "94", "stop_lat": 48.75971904378714, "code_postal": "94021", "stop_lon": 2.3663473510391806, "coord": [48.75971904378714, 2.3663473510391806], "stop_id": 4284919, "stop_desc": "AVENUE DE LA CITE - 94021", "stop_name": "PORTE DE THIAIS (MARCHE INTERNATIONAL)"}, "geometry": {"type": "Point", "coordinates": [2.3663473510391806, 48.75971904378714]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5e1b00c518d156afbcec3d7897b9bf782b39d549", "fields": {"departement": "94", "stop_lat": 48.763296055485625, "code_postal": "94021", "stop_lon": 2.367382622887771, "coord": [48.763296055485625, 2.367382622887771], "stop_id": 4284921, "stop_desc": "20 AVENUE DE LA REPUBLIQUE - 94021", "stop_name": "AUGUSTE PERRET (CIMETIERE PARISIEN)"}, "geometry": {"type": "Point", "coordinates": [2.367382622887771, 48.763296055485625]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3b1adf078e8bd62b020f0768d1dd810a5269dbf6", "fields": {"departement": "94", "stop_lat": 48.78296198770418, "code_postal": "94076", "stop_lon": 2.3669180031361514, "coord": [48.78296198770418, 2.3669180031361514], "stop_id": 4284928, "stop_desc": "AVENUE DE STALINGRAD - 94076", "stop_name": "LAMARTINE"}, "geometry": {"type": "Point", "coordinates": [2.3669180031361514, 48.78296198770418]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "48f29e7f8f17c0dcbb497dd5633b7eac276e61b5", "fields": {"departement": "94", "stop_lat": 48.81017914664677, "code_postal": "94043", "stop_lon": 2.357938719977963, "coord": [48.81017914664677, 2.357938719977963], "stop_id": 4293171, "stop_desc": "78 R DU GENERAL LECLERC - 94043", "stop_name": "LECLERC - THOMAS"}, "geometry": {"type": "Point", "coordinates": [2.357938719977963, 48.81017914664677]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a978b5c49b1b6777c09bd590a2ddcef2fd77eb6f", "fields": {"departement": "94", "stop_lat": 48.797983182715456, "code_postal": "94076", "stop_lon": 2.35484558862714, "coord": [48.797983182715456, 2.35484558862714], "stop_id": 4293179, "stop_desc": "PLACE DU 8 MAI 1945 - 94076", "stop_name": "PLACE DU 8 MAI 1945"}, "geometry": {"type": "Point", "coordinates": [2.35484558862714, 48.797983182715456]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a887cc0ba934b66ecf5eacf517f4e9b2c63fbc5a", "fields": {"departement": "94", "stop_lat": 48.806576843454636, "code_postal": "94003", "stop_lon": 2.3368192563048034, "coord": [48.806576843454636, 2.3368192563048034], "stop_id": 4293190, "stop_desc": "FACE 9 AVENUE PAUL DOUMER - 94003", "stop_name": "HOTEL DE VILLE D'ARCUEIL"}, "geometry": {"type": "Point", "coordinates": [2.3368192563048034, 48.806576843454636]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "caaff53611258c1e744394b0812e9e7e2969a048", "fields": {"departement": "94", "stop_lat": 48.81086400701395, "code_postal": "94003", "stop_lon": 2.338615489800433, "coord": [48.81086400701395, 2.338615489800433], "stop_id": 4293191, "stop_desc": "111 AVENUE JEAN JAURES - 94003", "stop_name": "BENOIT MALON"}, "geometry": {"type": "Point", "coordinates": [2.338615489800433, 48.81086400701395]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4f98378040194a89d240f23e1c507d42920a1953", "fields": {"departement": "94", "stop_lat": 48.810864014533315, "code_postal": "94003", "stop_lon": 2.3375132336532727, "coord": [48.810864014533315, 2.3375132336532727], "stop_id": 4293192, "stop_desc": "FACE 111 AVENUE JEAN JAURES - 94003", "stop_name": "BENOIT MALON"}, "geometry": {"type": "Point", "coordinates": [2.3375132336532727, 48.810864014533315]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "587b4bb91a0f4d5e81e0ae0500bf71a333a018b6", "fields": {"departement": "94", "stop_lat": 48.79982621340434, "code_postal": "94016", "stop_lon": 2.323635866225698, "coord": [48.79982621340434, 2.323635866225698], "stop_id": 4293201, "stop_desc": "72 AVENUE CARNOT - 94016", "stop_name": "CARNOT - ARISTIDE BRIAND"}, "geometry": {"type": "Point", "coordinates": [2.323635866225698, 48.79982621340434]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ca2b0f2e34a7dbed4a16a696c85aa35759fa416b", "fields": {"departement": "94", "stop_lat": 48.797013620831194, "code_postal": "94016", "stop_lon": 2.3308197644314563, "coord": [48.797013620831194, 2.3308197644314563], "stop_id": 4293205, "stop_desc": "2 AVENUE CARNOT - 94016", "stop_name": "WILSON - PROVIGNY"}, "geometry": {"type": "Point", "coordinates": [2.3308197644314563, 48.797013620831194]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6e938332ea162530b364d9c209764603ab9c8565", "fields": {"departement": "94", "stop_lat": 48.794946528429556, "code_postal": "94016", "stop_lon": 2.3335952220745133, "coord": [48.794946528429556, 2.3335952220745133], "stop_id": 4293206, "stop_desc": "6-6 BIS RUE GALLIENI - 94016", "stop_name": "MAIRIE DE CACHAN"}, "geometry": {"type": "Point", "coordinates": [2.3335952220745133, 48.794946528429556]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3c18f5c6e1f56fb66beaeb4cb10601414f475ebf", "fields": {"departement": "94", "stop_lat": 48.79280746551407, "code_postal": "94016", "stop_lon": 2.3364792869327036, "coord": [48.79280746551407, 2.3364792869327036], "stop_id": 4293209, "stop_desc": "16 BIS AV LOUIS GEORGEON - 94016", "stop_name": "PLACE JACQUES CARAT - THEATRE"}, "geometry": {"type": "Point", "coordinates": [2.3364792869327036, 48.79280746551407]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "87638c3b9715ca2f023ecb80e00c5241b5386020", "fields": {"departement": "94", "stop_lat": 48.79010210882575, "code_postal": "94016", "stop_lon": 2.3368602016907163, "coord": [48.79010210882575, 2.3368602016907163], "stop_id": 4293211, "stop_desc": "AV LEON BLUM - 94016", "stop_name": "BLUM - BELGRAND"}, "geometry": {"type": "Point", "coordinates": [2.3368602016907163, 48.79010210882575]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b30400f6e5eff7a82e9adb6bd15af09c043db7a4", "fields": {"departement": "94", "stop_lat": 48.78184219114081, "code_postal": "94038", "stop_lon": 2.337581090386468, "coord": [48.78184219114081, 2.337581090386468], "stop_id": 4293217, "stop_desc": "R DU 11 NOVEMBRE 1918 - 94038", "stop_name": "RUE DU 11 NOVEMBRE 1918"}, "geometry": {"type": "Point", "coordinates": [2.337581090386468, 48.78184219114081]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "73b8507e01c7b1367274fe1a92d8022922c24828", "fields": {"departement": "94", "stop_lat": 48.80277433034498, "code_postal": "94003", "stop_lon": 2.3246147236519015, "coord": [48.80277433034498, 2.3246147236519015], "stop_id": 4293220, "stop_desc": "113 AV ARISTIDE BRIAND - 94003", "stop_name": "QUARTIER DE LA GARE"}, "geometry": {"type": "Point", "coordinates": [2.3246147236519015, 48.80277433034498]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bb50c6090fd3a9f37aa81c603166ed4d174f1aea", "fields": {"departement": "94", "stop_lat": 48.81046784481521, "code_postal": "94043", "stop_lon": 2.3502367086760128, "coord": [48.81046784481521, 2.3502367086760128], "stop_id": 4293248, "stop_desc": "FACE 92 BIS R GABRIEL PERI - 94043", "stop_name": "BENSERADE - C.H.U. DE BICETRE"}, "geometry": {"type": "Point", "coordinates": [2.3502367086760128, 48.81046784481521]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "663a69b28e3206fe90972a6739e02fd7b87589bc", "fields": {"departement": "94", "stop_lat": 48.812066724767554, "code_postal": "94043", "stop_lon": 2.3570685335223565, "coord": [48.812066724767554, 2.3570685335223565], "stop_id": 4293250, "stop_desc": "29 RUE DE LA CONVENTION - 94043", "stop_name": "MAIRIE DU KREMLIN-BICETRE"}, "geometry": {"type": "Point", "coordinates": [2.3570685335223565, 48.812066724767554]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "548e352a6c1cee58bf475f867b132274b7beedaa", "fields": {"departement": "75", "stop_lat": 48.88406032096609, "code_postal": "75117", "stop_lon": 2.296781552557011, "coord": [48.88406032096609, 2.296781552557011], "stop_id": 4298518, "stop_desc": "95-97 AVENUE NIEL - 75117", "stop_name": "PEREIRE - MARECHAL JUIN"}, "geometry": {"type": "Point", "coordinates": [2.296781552557011, 48.88406032096609]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0f5fc0c3b1aefe5e33d214c15a33de2967b42300", "fields": {"departement": "75", "stop_lat": 48.88406032096609, "code_postal": "75117", "stop_lon": 2.296781552557011, "coord": [48.88406032096609, 2.296781552557011], "stop_id": 4298519, "stop_desc": "95-97 AVENUE NIEL - 75117", "stop_name": "PEREIRE - MARECHAL JUIN"}, "geometry": {"type": "Point", "coordinates": [2.296781552557011, 48.88406032096609]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "488c7fc4cf2dd0d2dbea91c86b8b74d1843d34d3", "fields": {"departement": "91", "stop_lat": 48.72492240887915, "code_postal": "91377", "stop_lon": 2.2606997511595344, "coord": [48.72492240887915, 2.2606997511595344], "stop_id": 4314737, "stop_desc": "RUE CARNOT - 91377", "stop_name": "MASSY-PALAISEAU RER"}, "geometry": {"type": "Point", "coordinates": [2.2606997511595344, 48.72492240887915]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e5bfffc33ebac70a5cb6224d7a6bc05bef7b03d6", "fields": {"departement": "91", "stop_lat": 48.719901256044814, "code_postal": "91377", "stop_lon": 2.2661001109027317, "coord": [48.719901256044814, 2.2661001109027317], "stop_id": 4314740, "stop_desc": "14 R AMPERE - 91377", "stop_name": "AMPERE SUD"}, "geometry": {"type": "Point", "coordinates": [2.2661001109027317, 48.719901256044814]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d4b8bdbf837c00eea4fe1de353e5540d5e1c0584", "fields": {"departement": "91", "stop_lat": 48.729699558758426, "code_postal": "91377", "stop_lon": 2.2853392869169173, "coord": [48.729699558758426, 2.2853392869169173], "stop_id": 4314758, "stop_desc": "RUE D'ESPAGNE - 91377", "stop_name": "MOSCOU-ROME"}, "geometry": {"type": "Point", "coordinates": [2.2853392869169173, 48.729699558758426]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "92de50f05ab6295333e1483ce8f7c6cd149ecc0a", "fields": {"departement": "91", "stop_lat": 48.730337365280135, "code_postal": "91377", "stop_lon": 2.284509841439496, "coord": [48.730337365280135, 2.284509841439496], "stop_id": 4314759, "stop_desc": "FACE 11 RUE DE ROME - 91377", "stop_name": "MOSCOU-ROME"}, "geometry": {"type": "Point", "coordinates": [2.284509841439496, 48.730337365280135]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b50d11aee658ac6ece7bf5e173fbb1f3435803ac", "fields": {"departement": "91", "stop_lat": 48.73361104650575, "code_postal": "91377", "stop_lon": 2.289058461406938, "coord": [48.73361104650575, 2.289058461406938], "stop_id": 4314765, "stop_desc": "RUE DES CANADIENS - 91377", "stop_name": "PLACE DE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.289058461406938, 48.73361104650575]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2d2707c5e7a0a7ee584a7bb3418f54de982e6670", "fields": {"departement": "91", "stop_lat": 48.72193082205003, "code_postal": "91377", "stop_lon": 2.263135840244733, "coord": [48.72193082205003, 2.263135840244733], "stop_id": 4314768, "stop_desc": "1 RUE AMPERE - 91377", "stop_name": "MAIL AMPERE"}, "geometry": {"type": "Point", "coordinates": [2.263135840244733, 48.72193082205003]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c33f36d153328cb20aabc181024111b98034fdf3", "fields": {"departement": "91", "stop_lat": 48.73481745136846, "code_postal": "91377", "stop_lon": 2.2941936819238933, "coord": [48.73481745136846, 2.2941936819238933], "stop_id": 4314798, "stop_desc": "FACE 5 RUE D'ALGER - 91377", "stop_name": "BIARRITZ"}, "geometry": {"type": "Point", "coordinates": [2.2941936819238933, 48.73481745136846]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "db85efe22e2e8567bed91bc674c4d8e1c57ea0c5", "fields": {"departement": "91", "stop_lat": 48.734889288669834, "code_postal": "91377", "stop_lon": 2.294003387399992, "coord": [48.734889288669834, 2.294003387399992], "stop_id": 4314799, "stop_desc": "1 RUE D'ALGER - 91377", "stop_name": "BIARRITZ"}, "geometry": {"type": "Point", "coordinates": [2.294003387399992, 48.734889288669834]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d3509f60a703236fc6a8f6943903a979164c3ee8", "fields": {"departement": "91", "stop_lat": 48.735735534902446, "code_postal": "91377", "stop_lon": 2.2978753881082934, "coord": [48.735735534902446, 2.2978753881082934], "stop_id": 4314800, "stop_desc": "3 BIS RUE DE LANGUEDOC - 91377", "stop_name": "PERIGORD"}, "geometry": {"type": "Point", "coordinates": [2.2978753881082934, 48.735735534902446]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "20aee8abffe6451f8483ac21a8f501aa17a21dcf", "fields": {"departement": "91", "stop_lat": 48.740212913242345, "code_postal": "91377", "stop_lon": 2.301731445240281, "coord": [48.740212913242345, 2.301731445240281], "stop_id": 4314803, "stop_desc": "FACE 16 AVENUE DU PRESIDENT KENNEDY - 91377", "stop_name": "PETIT MASSY"}, "geometry": {"type": "Point", "coordinates": [2.301731445240281, 48.740212913242345]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "688588a21207bdf448d39b080d6eba6ac4af5928", "fields": {"departement": "92", "stop_lat": 48.733852167136185, "code_postal": "92002", "stop_lon": 2.3136252420747794, "coord": [48.733852167136185, 2.3136252420747794], "stop_id": 4314808, "stop_desc": "AVENUE LEON JOUHAUX - 92002", "stop_name": "ANTONYPOLE"}, "geometry": {"type": "Point", "coordinates": [2.3136252420747794, 48.733852167136185]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "18004eb4c9806678058ca719764fd0a57b1b074d", "fields": {"departement": "91", "stop_lat": 48.7333133922324, "code_postal": "91689", "stop_lon": 2.3164245743357395, "coord": [48.7333133922324, 2.3164245743357395], "stop_id": 4314810, "stop_desc": "RUE ANDRE DOLIMIER - 91689", "stop_name": "VILLEMILAN"}, "geometry": {"type": "Point", "coordinates": [2.3164245743357395, 48.7333133922324]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fe5a258d44e901ae23adbaf6aacf56103ce908c8", "fields": {"departement": "91", "stop_lat": 48.73166969981646, "code_postal": "91689", "stop_lon": 2.3247678799411764, "coord": [48.73166969981646, 2.3247678799411764], "stop_id": 4314812, "stop_desc": "15 RUE ANDRE DOLIMIER - 91689", "stop_name": "DOCTEUR TENINE"}, "geometry": {"type": "Point", "coordinates": [2.3247678799411764, 48.73166969981646]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "97f22cb5890f95d1627fe36ea46e3452181cc8f8", "fields": {"departement": "91", "stop_lat": 48.731454125187724, "code_postal": "91689", "stop_lon": 2.3262353619149487, "coord": [48.731454125187724, 2.3262353619149487], "stop_id": 4314814, "stop_desc": "2 RUE DE LA DIVISION LECLERC - 91689", "stop_name": "MAIRIE DE WISSOUS"}, "geometry": {"type": "Point", "coordinates": [2.3262353619149487, 48.731454125187724]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "68a6cd75d4d4d59df5fd95663154fe5b854b9afe", "fields": {"departement": "91", "stop_lat": 48.73482455349483, "code_postal": "91689", "stop_lon": 2.3243594764906135, "coord": [48.73482455349483, 2.3243594764906135], "stop_id": 4314815, "stop_desc": "FACE 13 ROUTE D'ANTONY CHARLES DE GAULLE - 91689", "stop_name": "LA POSTE"}, "geometry": {"type": "Point", "coordinates": [2.3243594764906135, 48.73482455349483]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "79d96743de5370be13f384ee42f57b76caff08fb", "fields": {"departement": "91", "stop_lat": 48.71646381338601, "code_postal": "91377", "stop_lon": 2.2958932184222367, "coord": [48.71646381338601, 2.2958932184222367], "stop_id": 4770084, "stop_desc": "AVENUE DU MARECHAL DE LATTRE DE TASSIGNY - 91377", "stop_name": "RUE DES FLEURS"}, "geometry": {"type": "Point", "coordinates": [2.2958932184222367, 48.71646381338601]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4ce7c88ad5bd896121a22f469a4da8a0a6cc320d", "fields": {"departement": "91", "stop_lat": 48.72261757097308, "code_postal": "91377", "stop_lon": 2.2873025979956845, "coord": [48.72261757097308, 2.2873025979956845], "stop_id": 4770086, "stop_desc": "AVENUE DU MARECHAL DE LATTRE DE TASSIGNY - 91377", "stop_name": "LA BONDE"}, "geometry": {"type": "Point", "coordinates": [2.2873025979956845, 48.72261757097308]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f66b52c57af8ab6db5c5b0576bdcfd3935c75dc7", "fields": {"departement": "91", "stop_lat": 48.72795025712105, "code_postal": "91377", "stop_lon": 2.2738741077748967, "coord": [48.72795025712105, 2.2738741077748967], "stop_id": 4770089, "stop_desc": "RUE DU 8 MAI 1945 - 91377", "stop_name": "8 MAI 1945"}, "geometry": {"type": "Point", "coordinates": [2.2738741077748967, 48.72795025712105]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f0d67a0bc835ae4f74ee79331a4ff113fdc33a66", "fields": {"departement": "91", "stop_lat": 48.732252260868215, "code_postal": "91377", "stop_lon": 2.2853775008007173, "coord": [48.732252260868215, 2.2853775008007173], "stop_id": 4770099, "stop_desc": "RUE DE LISBONNE - 91377", "stop_name": "HELENE BOUCHER"}, "geometry": {"type": "Point", "coordinates": [2.2853775008007173, 48.732252260868215]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fb0c66b2812f232287a3cf1e369e55bf5900c711", "fields": {"departement": "91", "stop_lat": 48.73370125203245, "code_postal": "91377", "stop_lon": 2.2898600642683493, "coord": [48.73370125203245, 2.2898600642683493], "stop_id": 4770103, "stop_desc": "RUE DES CANADIENS - 91377", "stop_name": "PLACE DE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.2898600642683493, 48.73370125203245]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "de5ad3e0cebbb925bcbf9410ccdd55448e673be7", "fields": {"departement": "91", "stop_lat": 48.73361104650575, "code_postal": "91377", "stop_lon": 2.289058461406938, "coord": [48.73361104650575, 2.289058461406938], "stop_id": 4770104, "stop_desc": "RUE DES CANADIENS - 91377", "stop_name": "PLACE DE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.289058461406938, 48.73361104650575]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "57cb53e0101af85c321f348a8bb6b77a99f274db", "fields": {"departement": "91", "stop_lat": 48.734889288669834, "code_postal": "91377", "stop_lon": 2.294003387399992, "coord": [48.734889288669834, 2.294003387399992], "stop_id": 4770106, "stop_desc": "1 RUE D'ALGER - 91377", "stop_name": "BIARRITZ"}, "geometry": {"type": "Point", "coordinates": [2.294003387399992, 48.734889288669834]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4de9a6a145fcf085836b7fd8fc7f506c7ea15462", "fields": {"departement": "91", "stop_lat": 48.73664329348613, "code_postal": "91377", "stop_lon": 2.2976980478096194, "coord": [48.73664329348613, 2.2976980478096194], "stop_id": 4770108, "stop_desc": "FACE 3 RUE DU DAUPHINE - 91377", "stop_name": "PERIGORD"}, "geometry": {"type": "Point", "coordinates": [2.2976980478096194, 48.73664329348613]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "af08bad190eb57f6d5a2ea74677b4c260a2af904", "fields": {"departement": "92", "stop_lat": 48.75025356657646, "code_postal": "92002", "stop_lon": 2.3045245832510624, "coord": [48.75025356657646, 2.3045245832510624], "stop_id": 4770114, "stop_desc": "FACE 50 AVENUE DE LA DIVISION LECLERC - 92002", "stop_name": "PONT D'ANTONY"}, "geometry": {"type": "Point", "coordinates": [2.3045245832510624, 48.75025356657646]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "25c7215c93b91a77f138a4352d5c8a7d56cb74ec", "fields": {"departement": "92", "stop_lat": 48.76239755022339, "code_postal": "92002", "stop_lon": 2.3083508399551924, "coord": [48.76239755022339, 2.3083508399551924], "stop_id": 4770122, "stop_desc": "127 AVENUE ARISTIDE BRIAND - 92002", "stop_name": "GENERAL DE GAULLE - CROIX DE BERNY"}, "geometry": {"type": "Point", "coordinates": [2.3083508399551924, 48.76239755022339]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f22f3d42667543986ec027b86b56a8edf2c6469c", "fields": {"departement": "92", "stop_lat": 48.77700575939989, "code_postal": "92014", "stop_lon": 2.3226627033398617, "coord": [48.77700575939989, 2.3226627033398617], "stop_id": 4770131, "stop_desc": "FACE 35 BOULEVARD CARNOT - 92014", "stop_name": "GALOIS"}, "geometry": {"type": "Point", "coordinates": [2.3226627033398617, 48.77700575939989]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9380d9e76512a22342d0b26290eeb5429d43552b", "fields": {"departement": "94", "stop_lat": 48.78029624321282, "code_postal": "94038", "stop_lon": 2.3352690648867527, "coord": [48.78029624321282, 2.3352690648867527], "stop_id": 4770139, "stop_desc": "AVENUE ARISTIDE BRIAND - 94038", "stop_name": "RUE DES JARDINS"}, "geometry": {"type": "Point", "coordinates": [2.3352690648867527, 48.78029624321282]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "88e5e05a6b53ee82155e756c9e3ad9802b2b68d8", "fields": {"departement": "94", "stop_lat": 48.790164885806014, "code_postal": "94016", "stop_lon": 2.3315007465699185, "coord": [48.790164885806014, 2.3315007465699185], "stop_id": 4770143, "stop_desc": "FACE 1 AV DE LA DIVISION LECLERC - 94016", "stop_name": "DIVISION LECLERC - CAMILLE DESMOULINS"}, "geometry": {"type": "Point", "coordinates": [2.3315007465699185, 48.790164885806014]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1ee8be58247f27cc3489083972548f3a828a5a2e", "fields": {"departement": "94", "stop_lat": 48.79456906298838, "code_postal": "94016", "stop_lon": 2.334547516787906, "coord": [48.79456906298838, 2.334547516787906], "stop_id": 4770146, "stop_desc": "FACE 3-5 RUE CAMILLE DESMOULINS - 94016", "stop_name": "MAIRIE DE CACHAN"}, "geometry": {"type": "Point", "coordinates": [2.334547516787906, 48.79456906298838]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "01cc7fc99199bc0567f21b4c9141aaa7a69f8567", "fields": {"departement": "94", "stop_lat": 48.80202900814903, "code_postal": "94003", "stop_lon": 2.338220690104766, "coord": [48.80202900814903, 2.338220690104766], "stop_id": 4770153, "stop_desc": "FACE 1 RUE AUGUSTE DELAUNE - 94003", "stop_name": "AUGUSTE DELAUNE"}, "geometry": {"type": "Point", "coordinates": [2.338220690104766, 48.80202900814903]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "748a056efd77881d1ce2718f9b93fc9b68538f71", "fields": {"departement": "94", "stop_lat": 48.81062089478181, "code_postal": "94003", "stop_lon": 2.3268989636631354, "coord": [48.81062089478181, 2.3268989636631354], "stop_id": 4770158, "stop_desc": "3 AVENUE ARISTIDE BRIAND - 94003", "stop_name": "VACHE NOIRE"}, "geometry": {"type": "Point", "coordinates": [2.3268989636631354, 48.81062089478181]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9a6d154c1ae8492de4ec6cf73a272c24448fc756", "fields": {"departement": "75", "stop_lat": 48.83479812557195, "code_postal": "75114", "stop_lon": 2.3330342236102313, "coord": [48.83479812557195, 2.3330342236102313], "stop_id": 4770170, "stop_desc": "95 AVENUE DENFERT-ROCHEREAU - 75114", "stop_name": "DENFERT-ROCHEREAU - ARAGO"}, "geometry": {"type": "Point", "coordinates": [2.3330342236102313, 48.83479812557195]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4fc610060faf5e7ac04d9cb6e960131d570f2709", "fields": {"departement": "75", "stop_lat": 48.846041587705, "code_postal": "75105", "stop_lon": 2.3402777279421545, "coord": [48.846041587705, 2.3402777279421545], "stop_id": 4770177, "stop_desc": "75 BOULEVARD SAINT-MICHEL - 75105", "stop_name": "LUXEMBOURG"}, "geometry": {"type": "Point", "coordinates": [2.3402777279421545, 48.846041587705]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b22906363d1f389276dc20990dea08da5f884d05", "fields": {"departement": "75", "stop_lat": 48.8575540203187, "code_postal": "75104", "stop_lon": 2.3487230170535773, "coord": [48.8575540203187, 2.3487230170535773], "stop_id": 4770182, "stop_desc": "FACE 15 AVENUE VICTORIA - 75104", "stop_name": "CHATELET"}, "geometry": {"type": "Point", "coordinates": [2.3487230170535773, 48.8575540203187]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dcc29f949e166bbf549315de5b55192a9f8d8582", "fields": {"departement": "75", "stop_lat": 48.846634763899694, "code_postal": "75106", "stop_lon": 2.340250527561508, "coord": [48.846634763899694, 2.340250527561508], "stop_id": 4770188, "stop_desc": "FACE 71 BOULEVARD SAINT-MICHEL - 75106", "stop_name": "LUXEMBOURG"}, "geometry": {"type": "Point", "coordinates": [2.340250527561508, 48.846634763899694]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3c63c67a25b69fdefea32ef1bf85050e9ea8bb08", "fields": {"departement": "94", "stop_lat": 48.808562977830384, "code_postal": "94003", "stop_lon": 2.3309408008390324, "coord": [48.808562977830384, 2.3309408008390324], "stop_id": 4770196, "stop_desc": "FACE 50 AVENUE LAPLACE - 94003", "stop_name": "LENINE"}, "geometry": {"type": "Point", "coordinates": [2.3309408008390324, 48.808562977830384]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2046a948e37eabacc12555ac82f9fb0f3a61de29", "fields": {"departement": "94", "stop_lat": 48.823771197974985, "code_postal": "94079", "stop_lon": 2.543645865192984, "coord": [48.823771197974985, 2.543645865192984], "stop_id": 4798781, "stop_desc": "FACE 5-7 RUE DU CHEMEIN DE FER - 94079", "stop_name": "VILLIERS-SUR-MARNE - LE PLESSIS-TREVISE RER"}, "geometry": {"type": "Point", "coordinates": [2.543645865192984, 48.823771197974985]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5010ab5226682403bcb16870b9b907e72078cead", "fields": {"departement": "94", "stop_lat": 48.82385154349994, "code_postal": "94079", "stop_lon": 2.543959250442133, "coord": [48.82385154349994, 2.543959250442133], "stop_id": 4798782, "stop_desc": "FACE 7 RUE DU CHEMIN DE FER - 94079", "stop_name": "VILLIERS-SUR-MARNE - LE PLESSIS-TREVISE RER"}, "geometry": {"type": "Point", "coordinates": [2.543959250442133, 48.82385154349994]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "095d2b2e703c49596b5821d3bda14f5975661a14", "fields": {"departement": "75", "stop_lat": 48.841674600518346, "code_postal": "75112", "stop_lon": 2.4496154545513202, "coord": [48.841674600518346, 2.4496154545513202], "stop_id": 4798795, "stop_desc": "AVENUE DE NOGENT - 75112", "stop_name": "TREMBLAY - PEPINIERE"}, "geometry": {"type": "Point", "coordinates": [2.4496154545513202, 48.841674600518346]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5c1f5345ba93a4fb302f96451e77d5274942d5eb", "fields": {"departement": "94", "stop_lat": 48.838185309775355, "code_postal": "94052", "stop_lon": 2.4916246714838945, "coord": [48.838185309775355, 2.4916246714838945], "stop_id": 4798802, "stop_desc": "172 GRANDE RUE CHARLES DE GAULLE - 94052", "stop_name": "MAIRIE DE NOGENT-SUR-MARNE"}, "geometry": {"type": "Point", "coordinates": [2.4916246714838945, 48.838185309775355]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6e0625ba21688fb394f45ac4aae1d98b8b3a08a4", "fields": {"departement": "93", "stop_lat": 48.86142936658215, "code_postal": "93049", "stop_lon": 2.5095515159825696, "coord": [48.86142936658215, 2.5095515159825696], "stop_id": 4798813, "stop_desc": "2/4 CHEMIN DE MEAUX - 93049", "stop_name": "SQUARE JEAN MERMOZ"}, "geometry": {"type": "Point", "coordinates": [2.5095515159825696, 48.86142936658215]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a6fd363cf965726266f9d8a5285cbf626ab7309a", "fields": {"departement": "93", "stop_lat": 48.86341716601422, "code_postal": "93049", "stop_lon": 2.514598232791676, "coord": [48.86341716601422, 2.514598232791676], "stop_id": 4798814, "stop_desc": "CHEMIN DE MEAUX - 93049", "stop_name": "CIMETIERE DE NEUILLY-PLAISANCE"}, "geometry": {"type": "Point", "coordinates": [2.514598232791676, 48.86341716601422]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0130f13853915b5d4af47d720e6890502dcb2ae1", "fields": {"departement": "95", "stop_lat": 48.92706161626719, "code_postal": "95063", "stop_lon": 2.2150115921880924, "coord": [48.92706161626719, 2.2150115921880924], "stop_id": 4798851, "stop_desc": "64 RUE EDOUARD VAILLANT - 95063", "stop_name": "LA GRACE DE DIEU"}, "geometry": {"type": "Point", "coordinates": [2.2150115921880924, 48.92706161626719]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "470b15663c0a86476809c797529cda87a786e8d6", "fields": {"departement": "95", "stop_lat": 48.92477310902637, "code_postal": "95063", "stop_lon": 2.20945267132122, "coord": [48.92477310902637, 2.20945267132122], "stop_id": 4798853, "stop_desc": "136 RUE EDOUARD VAILLANT - 95063", "stop_name": "EMILE ZOLA"}, "geometry": {"type": "Point", "coordinates": [2.20945267132122, 48.92477310902637]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ff51ae708ce8be9e6086144a603c3e4d3144176d", "fields": {"departement": "78", "stop_lat": 48.942015355754535, "code_postal": "78586", "stop_lon": 2.1638984164900226, "coord": [48.942015355754535, 2.1638984164900226], "stop_id": 4798863, "stop_desc": "35 AVENUE MAURICE BERTEAUX - 78586", "stop_name": "STALINGRAD"}, "geometry": {"type": "Point", "coordinates": [2.1638984164900226, 48.942015355754535]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f5979d85ab91741ac642b88e33131f868912e0da", "fields": {"departement": "92", "stop_lat": 48.90442755581318, "code_postal": "92035", "stop_lon": 2.2390039877341854, "coord": [48.90442755581318, 2.2390039877341854], "stop_id": 4798874, "stop_desc": "5 BD NATIONAL - 92035", "stop_name": "NORDMANN"}, "geometry": {"type": "Point", "coordinates": [2.2390039877341854, 48.90442755581318]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a978882d2f75c9aa374b8f99644b4ac23cc6bd2e", "fields": {"departement": "92", "stop_lat": 48.891361317918545, "code_postal": "92062", "stop_lon": 2.240296277187438, "coord": [48.891361317918545, 2.240296277187438], "stop_id": 4798879, "stop_desc": "VOI PERRONET NORD - 92062", "stop_name": "LA DEFENSE-METRO-RER-TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.240296277187438, 48.891361317918545]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f7891457d43355f3f6046ffd4b8a31a2278f8aa6", "fields": {"departement": "93", "stop_lat": 48.929504123733714, "code_postal": "93066", "stop_lon": 2.357154383164802, "coord": [48.929504123733714, 2.357154383164802], "stop_id": 4798987, "stop_desc": "RUE DANIELLE CASANOVA - 93066", "stop_name": "SAINT-DENIS - PORTE DE PARIS"}, "geometry": {"type": "Point", "coordinates": [2.357154383164802, 48.929504123733714]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f8bee8a842e0be4b11d01e2e58155eb851e1c11b", "fields": {"departement": "93", "stop_lat": 48.931949229258834, "code_postal": "93066", "stop_lon": 2.3525995902413137, "coord": [48.931949229258834, 2.3525995902413137], "stop_id": 4798989, "stop_desc": "BOULEVARD MARCEL SEMBAT - 93066", "stop_name": "PIERRE DE GEYTER"}, "geometry": {"type": "Point", "coordinates": [2.3525995902413137, 48.931949229258834]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "93ea37cdb8aeed3ff348a8053c686e50ac4ef391", "fields": {"departement": "93", "stop_lat": 48.94587936456207, "code_postal": "93066", "stop_lon": 2.347350937993363, "coord": [48.94587936456207, 2.347350937993363], "stop_id": 4798994, "stop_desc": "RUE DE LA POTERIE - 93066", "stop_name": "DELAUNAY-BELLEVILLE"}, "geometry": {"type": "Point", "coordinates": [2.347350937993363, 48.94587936456207]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "61bccd8f46420a9a20c8a9d775d33862e6a08256", "fields": {"departement": "93", "stop_lat": 48.95608855826227, "code_postal": "93079", "stop_lon": 2.3434500937690173, "coord": [48.95608855826227, 2.3434500937690173], "stop_id": 4799001, "stop_desc": "0 AVENUE DE LA DIVISION LECLERC - 93079", "stop_name": "PABLO NERUDA"}, "geometry": {"type": "Point", "coordinates": [2.3434500937690173, 48.95608855826227]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b58e4216aa5d141f8eac812f73cc213e62deb64b", "fields": {"departement": "93", "stop_lat": 48.929504123733714, "code_postal": "93066", "stop_lon": 2.357154383164802, "coord": [48.929504123733714, 2.357154383164802], "stop_id": 4799005, "stop_desc": "RUE DANIELLE CASANOVA - 93066", "stop_name": "SAINT-DENIS - PORTE DE PARIS"}, "geometry": {"type": "Point", "coordinates": [2.357154383164802, 48.929504123733714]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a23bc43d725fe173249cfaef9354a86d744274ba", "fields": {"departement": "93", "stop_lat": 48.931949229258834, "code_postal": "93066", "stop_lon": 2.3525995902413137, "coord": [48.931949229258834, 2.3525995902413137], "stop_id": 4799007, "stop_desc": "BOULEVARD MARCEL SEMBAT - 93066", "stop_name": "PIERRE DE GEYTER"}, "geometry": {"type": "Point", "coordinates": [2.3525995902413137, 48.931949229258834]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c19f2ef922f2c673cf7af685f9497812128577e5", "fields": {"departement": "93", "stop_lat": 48.93574226391828, "code_postal": "93066", "stop_lon": 2.34711706578437, "coord": [48.93574226391828, 2.34711706578437], "stop_id": 4799009, "stop_desc": "BOULEVARD MARCEL SEMBAT - 93066", "stop_name": "SAINT-DENIS - GARE"}, "geometry": {"type": "Point", "coordinates": [2.34711706578437, 48.93574226391828]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "935314d71e48cc8cdf09b0844f3b8aa391c69c02", "fields": {"departement": "93", "stop_lat": 48.939678642523866, "code_postal": "93066", "stop_lon": 2.34515337428564, "coord": [48.939678642523866, 2.34515337428564], "stop_id": 4799010, "stop_desc": "0 RUE MAURICE THOREZ - 93066", "stop_name": "PAUL ELUARD"}, "geometry": {"type": "Point", "coordinates": [2.34515337428564, 48.939678642523866]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c8c210e65e0ffab9c6e06dc42e9fa5716b6fc821", "fields": {"departement": "93", "stop_lat": 48.93983142913104, "code_postal": "93066", "stop_lon": 2.3449896936681927, "coord": [48.93983142913104, 2.3449896936681927], "stop_id": 4799011, "stop_desc": "RUE MAURICE THOREZ - 93066", "stop_name": "PAUL ELUARD"}, "geometry": {"type": "Point", "coordinates": [2.3449896936681927, 48.93983142913104]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2a98639b0870389a569f93729ffb8636bdfbac88", "fields": {"departement": "93", "stop_lat": 48.95135162883625, "code_postal": "93031", "stop_lon": 2.3210989678996365, "coord": [48.95135162883625, 2.3210989678996365], "stop_id": 4799019, "stop_desc": "AVENUE DE LA REPUBLIQUE - 93031", "stop_name": "LES BEATUS"}, "geometry": {"type": "Point", "coordinates": [2.3210989678996365, 48.95135162883625]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6486a838d0e01447b8c1bf4e65f85296208bc064", "fields": {"departement": "93", "stop_lat": 48.956067976723325, "code_postal": "93031", "stop_lon": 2.3115451043621174, "coord": [48.956067976723325, 2.3115451043621174], "stop_id": 4799022, "stop_desc": "39 AVENUE DE LATTRE DE TASSIGNY - 93031", "stop_name": "LACEPEDE"}, "geometry": {"type": "Point", "coordinates": [2.3115451043621174, 48.956067976723325]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4d9ad309f1305a97c75ba5543e101384fd05f8e1", "fields": {"departement": "93", "stop_lat": 48.955933078469805, "code_postal": "93031", "stop_lon": 2.311094845503062, "coord": [48.955933078469805, 2.311094845503062], "stop_id": 4799023, "stop_desc": "0 AV DE LATTRE DE TASSIGNY - 93031", "stop_name": "LACEPEDE"}, "geometry": {"type": "Point", "coordinates": [2.311094845503062, 48.955933078469805]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0841a274e3cd14cf99b0998b9037bbbe0dc655e6", "fields": {"departement": "92", "stop_lat": 48.824749461223334, "code_postal": "92072", "stop_lon": 2.2143133818536844, "coord": [48.824749461223334, 2.2143133818536844], "stop_id": 4834514, "stop_desc": "53 GRANDE RUE - 92072", "stop_name": "MAIRIE DE SEVRES"}, "geometry": {"type": "Point", "coordinates": [2.2143133818536844, 48.824749461223334]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "07352fb8d03321c0e9ce79540954fbccf5b59037", "fields": {"departement": "92", "stop_lat": 48.82577228758234, "code_postal": "92072", "stop_lon": 2.204306118537478, "coord": [48.82577228758234, 2.204306118537478], "stop_id": 4834518, "stop_desc": "FACE 72 RUE DE VILLE D'AVRAY - 92072", "stop_name": "PRE VERDY"}, "geometry": {"type": "Point", "coordinates": [2.204306118537478, 48.82577228758234]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7c5b384093338dd6119508f295eb2229bbd70a41", "fields": {"departement": "92", "stop_lat": 48.82835391758217, "code_postal": "92077", "stop_lon": 2.1837034753598776, "coord": [48.82835391758217, 2.1837034753598776], "stop_id": 4834524, "stop_desc": "18 R DE MARNES - 92077", "stop_name": "CHATEAU DE VILLE D'AVRAY"}, "geometry": {"type": "Point", "coordinates": [2.1837034753598776, 48.82835391758217]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2a639597fd78fc660e7acb985f2fbe41de576f07", "fields": {"departement": "92", "stop_lat": 48.838547281937004, "code_postal": "92033", "stop_lon": 2.171351380628767, "coord": [48.838547281937004, 2.171351380628767], "stop_id": 4834528, "stop_desc": "104 BOULEVARD RAYMOND POINCARE - 92033", "stop_name": "HOPITAL DE GARCHES"}, "geometry": {"type": "Point", "coordinates": [2.171351380628767, 48.838547281937004]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "82124f9e8a32ab870ce0ee4bf0e7274bbca7a323", "fields": {"departement": "92", "stop_lat": 48.83782398601047, "code_postal": "92076", "stop_lon": 2.162081739901833, "coord": [48.83782398601047, 2.162081739901833], "stop_id": 4834529, "stop_desc": "FACE 41 BOULEVARD DE LA REPUBLIQUE - 92076", "stop_name": "STADE DE LA MARCHE"}, "geometry": {"type": "Point", "coordinates": [2.162081739901833, 48.83782398601047]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1862f4b5200888f501dba39f0f44adf179316aeb", "fields": {"departement": "92", "stop_lat": 48.837395712264815, "code_postal": "92076", "stop_lon": 2.152266702572065, "coord": [48.837395712264815, 2.152266702572065], "stop_id": 4834532, "stop_desc": "PL CHARLES DE GAULLE - 92076", "stop_name": "VAUCRESSON - GARE SNCF"}, "geometry": {"type": "Point", "coordinates": [2.152266702572065, 48.837395712264815]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4771e7d72a553cdb9ee8fcd867629e7b2ae57434", "fields": {"departement": "92", "stop_lat": 48.83718899865574, "code_postal": "92076", "stop_lon": 2.1522674395784356, "coord": [48.83718899865574, 2.1522674395784356], "stop_id": 4834533, "stop_desc": "BD DE LA REPUBLIQUE - 92076", "stop_name": "VAUCRESSON - GARE SNCF"}, "geometry": {"type": "Point", "coordinates": [2.1522674395784356, 48.83718899865574]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3d58fae1a220f72f60205b5c7b2768d15a62a560", "fields": {"departement": "92", "stop_lat": 48.78002255065364, "code_postal": "92071", "stop_lon": 2.2815217887800636, "coord": [48.78002255065364, 2.2815217887800636], "stop_id": 4834561, "stop_desc": "AV DE LA GARE - 92071", "stop_name": "ROBINSON RER"}, "geometry": {"type": "Point", "coordinates": [2.2815217887800636, 48.78002255065364]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b65f7309c756a71c7b137382cbb48ded3fcd27a6", "fields": {"departement": "92", "stop_lat": 48.77843075794482, "code_postal": "92071", "stop_lon": 2.3028068802932182, "coord": [48.77843075794482, 2.3028068802932182], "stop_id": 4834571, "stop_desc": "49 BOULEVARD COLBERT - 92071", "stop_name": "PARC DE SCEAUX"}, "geometry": {"type": "Point", "coordinates": [2.3028068802932182, 48.77843075794482]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f3525661eecaf4cd959e17c2b20f35625b06f2f3", "fields": {"departement": "92", "stop_lat": 48.776285147903124, "code_postal": "92071", "stop_lon": 2.3130347834907137, "coord": [48.776285147903124, 2.3130347834907137], "stop_id": 4834573, "stop_desc": "0 AV FRANKLIN ROOSEVELT - 92071", "stop_name": "PETIT CHAMBORD"}, "geometry": {"type": "Point", "coordinates": [2.3130347834907137, 48.776285147903124]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "16e15a3c7401bc1d7c06ec2cf04757cf0a8f02a8", "fields": {"departement": "92", "stop_lat": 48.77960219728907, "code_postal": "92014", "stop_lon": 2.315508420878453, "coord": [48.77960219728907, 2.315508420878453], "stop_id": 4834575, "stop_desc": "PLACE CONDORCET - 92014", "stop_name": "CONDORCET - MAIRIE-RER"}, "geometry": {"type": "Point", "coordinates": [2.315508420878453, 48.77960219728907]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6798e506e685d81707eeda2c863080f6a2c60e52", "fields": {"departement": "94", "stop_lat": 48.77084862744517, "code_postal": "94021", "stop_lon": 2.3543468854886394, "coord": [48.77084862744517, 2.3543468854886394], "stop_id": 4834592, "stop_desc": "12 RUE DU PERE MAZURIE - 94021", "stop_name": "EGLISE DE CHEVILLY-LARUE"}, "geometry": {"type": "Point", "coordinates": [2.3543468854886394, 48.77084862744517]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1f9fa237dbd83452b9cbf60443f6dd2f25db9e4d", "fields": {"departement": "94", "stop_lat": 48.75835400547269, "code_postal": "94021", "stop_lon": 2.36115354479891, "coord": [48.75835400547269, 2.36115354479891], "stop_id": 4834605, "stop_desc": "RUE DU JOUR - 94021", "stop_name": "RUE DE LA BRESSE"}, "geometry": {"type": "Point", "coordinates": [2.36115354479891, 48.75835400547269]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d40632c6f1c06d5f45ddac048918dcd1c7617919", "fields": {"departement": "94", "stop_lat": 48.76004202458944, "code_postal": "94073", "stop_lon": 2.3686722414037877, "coord": [48.76004202458944, 2.3686722414037877], "stop_id": 4834614, "stop_desc": "AVENUE DE FONTAINEBLEAU - 94073", "stop_name": "LE COR DE CHASSE - LA BELLE EPINE"}, "geometry": {"type": "Point", "coordinates": [2.3686722414037877, 48.76004202458944]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e59fc1abb3b30827f728ade48a38148ef5cb4f4a", "fields": {"departement": "94", "stop_lat": 48.77285415407288, "code_postal": "94021", "stop_lon": 2.3401510827296654, "coord": [48.77285415407288, 2.3401510827296654], "stop_id": 4834618, "stop_desc": "11 AV DU GENERAL DE GAULLE - 94021", "stop_name": "LYCEE PAULINE ROLAND"}, "geometry": {"type": "Point", "coordinates": [2.3401510827296654, 48.77285415407288]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "009c42cbc1270e72d13357d4360795c074d77796", "fields": {"departement": "92", "stop_lat": 48.776788577724375, "code_postal": "92014", "stop_lon": 2.3135377182605867, "coord": [48.776788577724375, 2.3135377182605867], "stop_id": 4834622, "stop_desc": "8 AVENUE VICTOR HUGO - 92014", "stop_name": "PETIT CHAMBORD"}, "geometry": {"type": "Point", "coordinates": [2.3135377182605867, 48.776788577724375]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "13effd930842c0d677cb82fa655369819129dfeb", "fields": {"departement": "92", "stop_lat": 48.77901994462124, "code_postal": "92071", "stop_lon": 2.2909610986263127, "coord": [48.77901994462124, 2.2909610986263127], "stop_id": 4834631, "stop_desc": "110 RUE HOUDAN - 92071", "stop_name": "FONTENAY - HOUDAN"}, "geometry": {"type": "Point", "coordinates": [2.2909610986263127, 48.77901994462124]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "55ba38b53d108d5c1a7fcb952e1595e9cff311b1", "fields": {"departement": "92", "stop_lat": 48.77753596618915, "code_postal": "92014", "stop_lon": 2.321982585930126, "coord": [48.77753596618915, 2.321982585930126], "stop_id": 4834641, "stop_desc": "29 BOULEVARD CARNOT - 92014", "stop_name": "GALOIS"}, "geometry": {"type": "Point", "coordinates": [2.321982585930126, 48.77753596618915]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "134462ce9bca324f386f672067fd11cbd3904b8e", "fields": {"departement": "94", "stop_lat": 48.77838179451567, "code_postal": "94038", "stop_lon": 2.3348747498291758, "coord": [48.77838179451567, 2.3348747498291758], "stop_id": 4834647, "stop_desc": "7-9 RUE JEAN JAURES - 94038", "stop_name": "SOUS-PREFECTURE - EGLISE DE L'HAY-LES-ROSES"}, "geometry": {"type": "Point", "coordinates": [2.3348747498291758, 48.77838179451567]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "27a7749a9fba4181fd2daa871643c96855de0874", "fields": {"departement": "94", "stop_lat": 48.779846859794795, "code_postal": "94038", "stop_lon": 2.337689877550507, "coord": [48.779846859794795, 2.337689877550507], "stop_id": 4834649, "stop_desc": "11 RUE DES JARDINS - 94038", "stop_name": "MAIRIE DE L'HAY-LES-ROSES"}, "geometry": {"type": "Point", "coordinates": [2.337689877550507, 48.779846859794795]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ae637aa7ddeaa326c80580a2512b2364bca9347e", "fields": {"departement": "94", "stop_lat": 48.77130776729869, "code_postal": "94021", "stop_lon": 2.3479289034384623, "coord": [48.77130776729869, 2.3479289034384623], "stop_id": 4834654, "stop_desc": "88 AVENUE DU GENERAL DE GAULLE - 94021", "stop_name": "MAIRIE DE CHEVILLY-LARUE"}, "geometry": {"type": "Point", "coordinates": [2.3479289034384623, 48.77130776729869]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "973a47c2ecdd7e3e13b4ed20a40a326ebc8dd16f", "fields": {"departement": "94", "stop_lat": 48.77062233301879, "code_postal": "94021", "stop_lon": 2.363158030290623, "coord": [48.77062233301879, 2.363158030290623], "stop_id": 4834661, "stop_desc": "65 AVENUE DU PRESIDENT ROOSEVELT - 94021", "stop_name": "JACQUES BREL"}, "geometry": {"type": "Point", "coordinates": [2.363158030290623, 48.77062233301879]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9cccf5669fd00e6690b3f30d460b2b6f91cbb9dc", "fields": {"departement": "94", "stop_lat": 48.76499465577505, "code_postal": "94021", "stop_lon": 2.367968239679133, "coord": [48.76499465577505, 2.367968239679133], "stop_id": 4834664, "stop_desc": "AVENUE DE STALINGRAD - 94021", "stop_name": "CIMETIERE PARISIEN DE THIAIS"}, "geometry": {"type": "Point", "coordinates": [2.367968239679133, 48.76499465577505]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d8c2c5a2e0d0e53e349e55b61385fbbdb2349555", "fields": {"departement": "94", "stop_lat": 48.76378088217269, "code_postal": "94073", "stop_lon": 2.3694086738771816, "coord": [48.76378088217269, 2.3694086738771816], "stop_id": 4834665, "stop_desc": "ESPLANADE AUGUSTE PERRET - 94073", "stop_name": "AUGUSTE PERRET"}, "geometry": {"type": "Point", "coordinates": [2.3694086738771816, 48.76378088217269]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3021ae8a6a407548c2f30c6544f3ee34fa6e2fac", "fields": {"departement": "94", "stop_lat": 48.75908996737717, "code_postal": "94021", "stop_lon": 2.3659663516074483, "coord": [48.75908996737717, 2.3659663516074483], "stop_id": 4834668, "stop_desc": "RUE DE THIAIS - 94021", "stop_name": "PORTE DE THIAIS"}, "geometry": {"type": "Point", "coordinates": [2.3659663516074483, 48.75908996737717]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c4c120a2ca82ef4b2da5ac636a408488a2340e89", "fields": {"departement": "94", "stop_lat": 48.77285415407288, "code_postal": "94021", "stop_lon": 2.3401510827296654, "coord": [48.77285415407288, 2.3401510827296654], "stop_id": 4834675, "stop_desc": "11 AV DU GENERAL DE GAULLE - 94021", "stop_name": "LYCEE PAULINE ROLAND"}, "geometry": {"type": "Point", "coordinates": [2.3401510827296654, 48.77285415407288]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ce42a8cf4b5971a91bc0a29e7b59ec4a32a0ced5", "fields": {"departement": "95", "stop_lat": 49.00391440690258, "code_postal": "95527", "stop_lon": 2.5692104518710632, "coord": [49.00391440690258, 2.5692104518710632], "stop_id": 48432, "stop_desc": "Gare de Roissy TGV - 95527", "stop_name": "A\u00e9roport Charles de Gaulle 2 TGV"}, "geometry": {"type": "Point", "coordinates": [2.5692104518710632, 49.00391440690258]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a8e862e0de4f41057d805c2e943c59c2b5b52813", "fields": {"departement": "95", "stop_lat": 49.014337292933675, "code_postal": "95450", "stop_lon": 2.0784342019585837, "coord": [49.014337292933675, 2.0784342019585837], "stop_id": 48433, "stop_desc": "Gare de Neuville-Universite - 95450", "stop_name": "Neuville-Universit\u00e9"}, "geometry": {"type": "Point", "coordinates": [2.0784342019585837, 49.014337292933675]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "62a6cc50848391608572654bd709f0ed4dd70ce2", "fields": {"departement": "75", "stop_lat": 48.82978526345046, "code_postal": "75113", "stop_lon": 2.3776037993133134, "coord": [48.82978526345046, 2.3776037993133134], "stop_id": 4843403, "stop_desc": "FACE 103 AV DE FRANCE - 75113", "stop_name": "BIBLIOTHEQUE FRANCOIS MITTERRAND"}, "geometry": {"type": "Point", "coordinates": [2.3776037993133134, 48.82978526345046]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9ebe64f24d02c31b491a47bc1b70c44a95a71f4c", "fields": {"departement": "75", "stop_lat": 48.82935386653337, "code_postal": "75113", "stop_lon": 2.377576237962851, "coord": [48.82935386653337, 2.377576237962851], "stop_id": 4843404, "stop_desc": "AVENUE DE FRANCE - 75113", "stop_name": "BIBLIOTHEQUE FRANCOIS MITTERRAND"}, "geometry": {"type": "Point", "coordinates": [2.377576237962851, 48.82935386653337]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "211dfddb1b060c52435f6cb9fbe4d6e8ca8d229b", "fields": {"departement": "75", "stop_lat": 48.83010047423811, "code_postal": "75113", "stop_lon": 2.3756573644191827, "coord": [48.83010047423811, 2.3756573644191827], "stop_id": 4843405, "stop_desc": "12-14 RUE DE TOLBIAC - 75113", "stop_name": "BIBLIOTHEQUE CHEVALERET"}, "geometry": {"type": "Point", "coordinates": [2.3756573644191827, 48.83010047423811]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d22198792ec048ddcabb6be4272665455d2b1e83", "fields": {"departement": "75", "stop_lat": 48.8237276667357, "code_postal": "75113", "stop_lon": 2.3773676944465625, "coord": [48.8237276667357, 2.3773676944465625], "stop_id": 4843414, "stop_desc": "FACE 29 AVENUE DE LA PORTE DE VITRY - 75113", "stop_name": "PORTE DE VITRY"}, "geometry": {"type": "Point", "coordinates": [2.3773676944465625, 48.8237276667357]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "188eeb7031f5ae310fef68a630b74f77142523b4", "fields": {"departement": "94", "stop_lat": 48.81989807716134, "code_postal": "94041", "stop_lon": 2.379773787972575, "coord": [48.81989807716134, 2.379773787972575], "stop_id": 4843415, "stop_desc": "30 AVENUE PIERRE SEMARD - 94041", "stop_name": "RUE DES JARDINS"}, "geometry": {"type": "Point", "coordinates": [2.379773787972575, 48.81989807716134]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "efde517426ec42fe33818b9e9d626c21c58f2a09", "fields": {"departement": "94", "stop_lat": 48.81267861217987, "code_postal": "94041", "stop_lon": 2.385837300329046, "coord": [48.81267861217987, 2.385837300329046], "stop_id": 4843442, "stop_desc": "152 AVENUE DANIELLE CASANOVA - 94041", "stop_name": "VOLTAIRE"}, "geometry": {"type": "Point", "coordinates": [2.385837300329046, 48.81267861217987]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f0b06a60df0aafb573fb72c249d6bc6687aa36b0", "fields": {"departement": "94", "stop_lat": 48.811510913345934, "code_postal": "94041", "stop_lon": 2.3840671320019258, "coord": [48.811510913345934, 2.3840671320019258], "stop_id": 4843454, "stop_desc": "7 PLACE DE LA REPUBLIQUE - 94041", "stop_name": "MAIRIE D'IVRY-METRO"}, "geometry": {"type": "Point", "coordinates": [2.3840671320019258, 48.811510913345934]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5921b809272eb08199c677bc4ab491314d58accd", "fields": {"departement": "94", "stop_lat": 48.811402915146694, "code_postal": "94041", "stop_lon": 2.384434457204656, "coord": [48.811402915146694, 2.384434457204656], "stop_id": 4843455, "stop_desc": "FACE 100 AVENUE GEORGES GOSNAT - 94041", "stop_name": "MAIRIE D'IVRY-METRO"}, "geometry": {"type": "Point", "coordinates": [2.384434457204656, 48.811402915146694]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4a089a1cce3e339747989dcced4de09b70c4de2d", "fields": {"departement": "94", "stop_lat": 48.81010133140996, "code_postal": "94041", "stop_lon": 2.380092353192655, "coord": [48.81010133140996, 2.380092353192655], "stop_id": 4843456, "stop_desc": "100 RUE JEAN LE GALLEU - 94041", "stop_name": "JEAN LE GALLEU"}, "geometry": {"type": "Point", "coordinates": [2.380092353192655, 48.81010133140996]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ac996998e68df48ab070e13c137c64ace6025560", "fields": {"departement": "94", "stop_lat": 48.807943176128475, "code_postal": "94041", "stop_lon": 2.383016149793749, "coord": [48.807943176128475, 2.383016149793749], "stop_id": 4843457, "stop_desc": "134 RUE MARCEL HARTMANN - 94041", "stop_name": "LUCIEN SELVA"}, "geometry": {"type": "Point", "coordinates": [2.383016149793749, 48.807943176128475]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "40029c55a5023b590311e72fe6597d64a83a27e3", "fields": {"departement": "94", "stop_lat": 48.8002302722686, "code_postal": "94081", "stop_lon": 2.3864242861741203, "coord": [48.8002302722686, 2.3864242861741203], "stop_id": 4843462, "stop_desc": "PLACE DE LA LIBERTE - 94081", "stop_name": "PLACE DE LA LIBERTE"}, "geometry": {"type": "Point", "coordinates": [2.3864242861741203, 48.8002302722686]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "143b53876fa0ef9583f0eb144232ce44478a1051", "fields": {"departement": "94", "stop_lat": 48.79498804705973, "code_postal": "94081", "stop_lon": 2.391711256127831, "coord": [48.79498804705973, 2.391711256127831], "stop_id": 4843466, "stop_desc": "49 RUE DU GENERAL DE GAULLE - 94081", "stop_name": "MALRAUX - CHARLES INFROIT"}, "geometry": {"type": "Point", "coordinates": [2.391711256127831, 48.79498804705973]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a59ae41a6004434a4e56e22b3c48df96235dc2a9", "fields": {"departement": "93", "stop_lat": 48.95823127515412, "code_postal": "93031", "stop_lon": 2.3018138297170445, "coord": [48.95823127515412, 2.3018138297170445], "stop_id": 5081759, "stop_desc": "42 AVENUE JOFFRE - 93031", "stop_name": "JOFFRE CINEMA"}, "geometry": {"type": "Point", "coordinates": [2.3018138297170445, 48.95823127515412]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6835f938cb7ddfdf1db74393482047baf599b124", "fields": {"departement": "93", "stop_lat": 48.96145505205384, "code_postal": "93031", "stop_lon": 2.2943872759927437, "coord": [48.96145505205384, 2.2943872759927437], "stop_id": 5081763, "stop_desc": "2 BIS ROUTE D'ARGENTEUIL - 93031", "stop_name": "CYGNE D'ENGHIEN"}, "geometry": {"type": "Point", "coordinates": [2.2943872759927437, 48.96145505205384]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5beab3f99bb79e3bca02c975d522cbe446bee0e7", "fields": {"departement": "93", "stop_lat": 48.96113911237869, "code_postal": "93031", "stop_lon": 2.2906344442776145, "coord": [48.96113911237869, 2.2906344442776145], "stop_id": 5081765, "stop_desc": "RUE DE LILLE - 93031", "stop_name": "GROS BUISSON"}, "geometry": {"type": "Point", "coordinates": [2.2906344442776145, 48.96113911237869]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3c1006d669305387f93d2eefc1880064bd66db53", "fields": {"departement": "95", "stop_lat": 48.96590813070257, "code_postal": "95555", "stop_lon": 2.283751117277484, "coord": [48.96590813070257, 2.283751117277484], "stop_id": 5081769, "stop_desc": "51 RUE BERTHIE ALBRECHT - 95555", "stop_name": "BERTHIE ALBRECHT"}, "geometry": {"type": "Point", "coordinates": [2.283751117277484, 48.96590813070257]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "213e347b751ec054316f4c9bda5d47289f271de7", "fields": {"departement": "95", "stop_lat": 48.97190883155158, "code_postal": "95555", "stop_lon": 2.2787488463635803, "coord": [48.97190883155158, 2.2787488463635803], "stop_id": 5081774, "stop_desc": "RUE D'ERMONT - 95555", "stop_name": "CITE JEAN MOULIN"}, "geometry": {"type": "Point", "coordinates": [2.2787488463635803, 48.97190883155158]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "81dbe5b08b66e5c330d691d972077ea95d5b7f8a", "fields": {"departement": "92", "stop_lat": 48.79375678857883, "code_postal": "92023", "stop_lon": 2.2659445058349594, "coord": [48.79375678857883, 2.2659445058349594], "stop_id": 5091902, "stop_desc": "FACE 103 AVENUE JEAN BAPTISTE CLEMENT - 92023", "stop_name": "CIMETIERE DE CLAMART"}, "geometry": {"type": "Point", "coordinates": [2.2659445058349594, 48.79375678857883]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cfac871230c008033a1a8ff828f5038add3401a8", "fields": {"departement": "92", "stop_lat": 48.783685528794564, "code_postal": "92023", "stop_lon": 2.2458152706599854, "coord": [48.783685528794564, 2.2458152706599854], "stop_id": 5091909, "stop_desc": "20-22 RUE DE L'ILE DE FRANCE - 92023", "stop_name": "MAIL DE LA PLAINE"}, "geometry": {"type": "Point", "coordinates": [2.2458152706599854, 48.783685528794564]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "78001e39487ed69538e3aff91e0262dff45f1cbe", "fields": {"departement": "92", "stop_lat": 48.778526067860334, "code_postal": "92023", "stop_lon": 2.234373456356122, "coord": [48.778526067860334, 2.234373456356122], "stop_id": 5091911, "stop_desc": "502 AVENUE DU GENERAL DE GAULLE - 92023", "stop_name": "CHARLES DEBRY"}, "geometry": {"type": "Point", "coordinates": [2.234373456356122, 48.778526067860334]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "701101e158b931ed339f2038388f8d791dc8ea75", "fields": {"departement": "92", "stop_lat": 48.7776162465037, "code_postal": "92023", "stop_lon": 2.2320497603983007, "coord": [48.7776162465037, 2.2320497603983007], "stop_id": 5091912, "stop_desc": "544 AVENUE DU GENERAL DE GAULLE - 92023", "stop_name": "PETIT CLAMART - RD 906"}, "geometry": {"type": "Point", "coordinates": [2.2320497603983007, 48.7776162465037]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "04d4946bb4212e00dbd64860f3e00d6bc3013a5e", "fields": {"departement": "92", "stop_lat": 48.78687634148946, "code_postal": "92023", "stop_lon": 2.245932069536149, "coord": [48.78687634148946, 2.245932069536149], "stop_id": 5091918, "stop_desc": "183 R DE LA PORTE DE TRIVAUX - 92023", "stop_name": "CIMETIERE INTERCOMMUNAL"}, "geometry": {"type": "Point", "coordinates": [2.245932069536149, 48.78687634148946]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8ddefd512ee034dd90ba7ff66574f51a2415ed7e", "fields": {"departement": "92", "stop_lat": 48.79090356934487, "code_postal": "92023", "stop_lon": 2.259473454438876, "coord": [48.79090356934487, 2.259473454438876], "stop_id": 5091921, "stop_desc": "105 RUE DE LA PORTE DE TRIVAUX - 92023", "stop_name": "JARDIN PARISIEN - COQUELICOTS"}, "geometry": {"type": "Point", "coordinates": [2.259473454438876, 48.79090356934487]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b2505ae6c3b02bcb2b9f96a64b3eff4f03912aad", "fields": {"departement": "92", "stop_lat": 48.80501439804035, "code_postal": "92023", "stop_lon": 2.259302642664189, "coord": [48.80501439804035, 2.259302642664189], "stop_id": 5091930, "stop_desc": "PLACE MARQUIS - 92023", "stop_name": "MARQUIS"}, "geometry": {"type": "Point", "coordinates": [2.259302642664189, 48.80501439804035]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "14948035af66a4e4b97f57d04447a160345ed1c0", "fields": {"departement": "92", "stop_lat": 48.80927421475873, "code_postal": "92023", "stop_lon": 2.2586975080472604, "coord": [48.80927421475873, 2.2586975080472604], "stop_id": 5091931, "stop_desc": "FACE 43 AVENUE HENRI BARBUSSE - 92023", "stop_name": "D'ESTIENNE D'ORVES"}, "geometry": {"type": "Point", "coordinates": [2.2586975080472604, 48.80927421475873]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "956c4403a3f9bb8b95508e9c256caf586a815d03", "fields": {"departement": "92", "stop_lat": 48.82744612612632, "code_postal": "92040", "stop_lon": 2.2714657078577885, "coord": [48.82744612612632, 2.2714657078577885], "stop_id": 5091944, "stop_desc": "RUE MARCEAU - 92040", "stop_name": "MARCEAU"}, "geometry": {"type": "Point", "coordinates": [2.2714657078577885, 48.82744612612632]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bcd41c64f993c4e9b37c620f663ed08bad39047f", "fields": {"departement": "92", "stop_lat": 48.82457964728283, "code_postal": "92040", "stop_lon": 2.2725310542167305, "coord": [48.82457964728283, 2.2725310542167305], "stop_id": 5091946, "stop_desc": "FACE 34 RUE DIDEROT - 92040", "stop_name": "MAIRIE D'ISSY"}, "geometry": {"type": "Point", "coordinates": [2.2725310542167305, 48.82457964728283]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b8c967d273633053b8c4670589f32f13458d0db4", "fields": {"departement": "92", "stop_lat": 48.817005195778684, "code_postal": "92040", "stop_lon": 2.261026679177312, "coord": [48.817005195778684, 2.261026679177312], "stop_id": 5091953, "stop_desc": "57 RUE DE L'EGALITE - 92040", "stop_name": "EPINETTES"}, "geometry": {"type": "Point", "coordinates": [2.261026679177312, 48.817005195778684]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e44127b4d8e0a28d1dfefde5cec39a37b8b7db2a", "fields": {"departement": "95", "stop_lat": 48.986536137085146, "code_postal": "95277", "stop_lon": 2.4497935507385007, "coord": [48.986536137085146, 2.4497935507385007], "stop_id": 3663868, "stop_desc": "FACE 66 RUE DE PARIS - 95277", "stop_name": "HOTEL DE VILLE DE GONESSE"}, "geometry": {"type": "Point", "coordinates": [2.4497935507385007, 48.986536137085146]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "40b52411883a57fb08c5d8a5422ba1cd9af0c55e", "fields": {"departement": "93", "stop_lat": 48.95562568154806, "code_postal": "93072", "stop_lon": 2.394445730381359, "coord": [48.95562568154806, 2.394445730381359], "stop_id": 3663903, "stop_desc": "215 AVENUE DE STALINGRAD - 93072", "stop_name": "AVENUE DE STALINGRAD N0 215"}, "geometry": {"type": "Point", "coordinates": [2.394445730381359, 48.95562568154806]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7e25dca5e21b52cde5674797b3c6a3e624be1926", "fields": {"departement": "93", "stop_lat": 48.928336795835285, "code_postal": "93027", "stop_lon": 2.3853047632900903, "coord": [48.928336795835285, 2.3853047632900903], "stop_id": 3663892, "stop_desc": "FACE 100 BOULEVARD PASTEUR - 93027", "stop_name": "SIX ROUTES - TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.3853047632900903, 48.928336795835285]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "94f5c2d42cf5ac1f50fc33695b1310c121fc9b74", "fields": {"departement": "95", "stop_lat": 48.97986310472089, "code_postal": "95019", "stop_lon": 2.423470550870969, "coord": [48.97986310472089, 2.423470550870969], "stop_id": 3663918, "stop_desc": "48 AVENUE DE LA REPUBLIQUE - 95019", "stop_name": "MAIRIE D'ARNOUVILLE"}, "geometry": {"type": "Point", "coordinates": [2.423470550870969, 48.97986310472089]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bbe6904d96c1821f4841ead8590030c1b3fb0f26", "fields": {"departement": "95", "stop_lat": 48.986401391751656, "code_postal": "95277", "stop_lon": 2.4497386404359953, "coord": [48.986401391751656, 2.4497386404359953], "stop_id": 3663867, "stop_desc": "64 RUE DE PARIS - 95277", "stop_name": "HOTEL DE VILLE DE GONESSE"}, "geometry": {"type": "Point", "coordinates": [2.4497386404359953, 48.986401391751656]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a9289791ccf63189e4da8de159863862ec529718", "fields": {"departement": "93", "stop_lat": 48.93274884950854, "code_postal": "93027", "stop_lon": 2.386550109086291, "coord": [48.93274884950854, 2.386550109086291], "stop_id": 3663895, "stop_desc": "FACE 38 AVENUE ROGER SALENGRO - 93027", "stop_name": "PARC DES SPORTS"}, "geometry": {"type": "Point", "coordinates": [2.386550109086291, 48.93274884950854]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0fe334b75575d1736d71896cfe35efe7e39e1218", "fields": {"departement": "95", "stop_lat": 48.98838702257805, "code_postal": "95277", "stop_lon": 2.4501389479315456, "coord": [48.98838702257805, 2.4501389479315456], "stop_id": 3663873, "stop_desc": "9 R EMMANUEL RAIN - 95277", "stop_name": "HOPITAL DE GONESSE"}, "geometry": {"type": "Point", "coordinates": [2.4501389479315456, 48.98838702257805]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7fb669291a0ad973a945298538664e10082d9fe7", "fields": {"departement": "93", "stop_lat": 48.932838565426906, "code_postal": "93027", "stop_lon": 2.386918478660045, "coord": [48.932838565426906, 2.386918478660045], "stop_id": 3663894, "stop_desc": "AVENUE ROGER SALENGRO - 93027", "stop_name": "PARC DES SPORTS"}, "geometry": {"type": "Point", "coordinates": [2.386918478660045, 48.932838565426906]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "52081e6afc16e8094b9bc4e9355d7f0e2c5bb2a6", "fields": {"departement": "95", "stop_lat": 48.96286461040014, "code_postal": "95268", "stop_lon": 2.402860940707323, "coord": [48.96286461040014, 2.402860940707323], "stop_id": 3663907, "stop_desc": "AVENUE DE STALINGRAD - 95268", "stop_name": "DEMUSOIS"}, "geometry": {"type": "Point", "coordinates": [2.402860940707323, 48.96286461040014]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2790afe022820ee1a282465ca5d196bba2c6f85f", "fields": {"departement": "95", "stop_lat": 48.968242795775765, "code_postal": "95268", "stop_lon": 2.411084751683209, "coord": [48.968242795775765, 2.411084751683209], "stop_id": 3663911, "stop_desc": "175 AVENUE DE STALINGRAD - 95268", "stop_name": "VERDUN"}, "geometry": {"type": "Point", "coordinates": [2.411084751683209, 48.968242795775765]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9d6f1ac0b02024082302fb6e89cbe8c73d49a313", "fields": {"departement": "95", "stop_lat": 48.98055459058821, "code_postal": "95019", "stop_lon": 2.4241270347624337, "coord": [48.98055459058821, 2.4241270347624337], "stop_id": 3663856, "stop_desc": "FACE 30 AVENUE DE LA REPUBLIQUE - 95019", "stop_name": "MAIRIE D'ARNOUVILLE"}, "geometry": {"type": "Point", "coordinates": [2.4241270347624337, 48.98055459058821]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5dbe4b55d08f296236f48207dc8eddae82631f07", "fields": {"departement": "93", "stop_lat": 48.95562568154806, "code_postal": "93072", "stop_lon": 2.394445730381359, "coord": [48.95562568154806, 2.394445730381359], "stop_id": 3663840, "stop_desc": "215 AVENUE DE STALINGRAD - 93072", "stop_name": "AVENUE DE STALINGRAD N0 215"}, "geometry": {"type": "Point", "coordinates": [2.394445730381359, 48.95562568154806]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8e11e36deb0ee17422a396dcfec72840698515f7", "fields": {"departement": "93", "stop_lat": 48.95581451956647, "code_postal": "93072", "stop_lon": 2.3942003072526914, "coord": [48.95581451956647, 2.3942003072526914], "stop_id": 3663841, "stop_desc": "AVENUE DE STALINGRAD - 93072", "stop_name": "AVENUE DE STALINGRAD N0 215"}, "geometry": {"type": "Point", "coordinates": [2.3942003072526914, 48.95581451956647]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bcb618521a63fe9a084135db276bf0ce55ec5590", "fields": {"departement": "95", "stop_lat": 48.97986310472089, "code_postal": "95019", "stop_lon": 2.423470550870969, "coord": [48.97986310472089, 2.423470550870969], "stop_id": 3663855, "stop_desc": "48 AVENUE DE LA REPUBLIQUE - 95019", "stop_name": "MAIRIE D'ARNOUVILLE"}, "geometry": {"type": "Point", "coordinates": [2.423470550870969, 48.97986310472089]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "774ff24b810e86d653fce9ead4b27db7ad45c886", "fields": {"departement": "95", "stop_lat": 48.9829634551839, "code_postal": "95277", "stop_lon": 2.4351220485369556, "coord": [48.9829634551839, 2.4351220485369556], "stop_id": 3663859, "stop_desc": "RUE RAYMOND RAMBERT - 95277", "stop_name": "LYCEE DE GONESSE"}, "geometry": {"type": "Point", "coordinates": [2.4351220485369556, 48.9829634551839]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c2fe0c5f36b0cd8d6c64ec8c7895a24976d96922", "fields": {"departement": "93", "stop_lat": 48.953138383168564, "code_postal": "93072", "stop_lon": 2.3900627754179897, "coord": [48.953138383168564, 2.3900627754179897], "stop_id": 3663839, "stop_desc": "AVENUE DE STALINGRAD - 93072", "stop_name": "LOUIS BORDES"}, "geometry": {"type": "Point", "coordinates": [2.3900627754179897, 48.953138383168564]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1cb253e1684be3edc3b8ebb8ac8fee90ffc2d9e7", "fields": {"departement": "95", "stop_lat": 48.965350983897174, "code_postal": "95268", "stop_lon": 2.4079823650895498, "coord": [48.965350983897174, 2.4079823650895498], "stop_id": 3663845, "stop_desc": "144 AVENUE DE STALINGRAD - 95268", "stop_name": "CROIX BUARD"}, "geometry": {"type": "Point", "coordinates": [2.4079823650895498, 48.965350983897174]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7e8d5d481de603edf56a3d0faf1682bf028f56ad", "fields": {"departement": "95", "stop_lat": 48.98115412312256, "code_postal": "95019", "stop_lon": 2.4275822249308967, "coord": [48.98115412312256, 2.4275822249308967], "stop_id": 3663857, "stop_desc": "AVENUE DE LA REPUBLIQUE - 95019", "stop_name": "LEON BLUM"}, "geometry": {"type": "Point", "coordinates": [2.4275822249308967, 48.98115412312256]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2527a1dda80c6e1217f03edffe308bfba6cf2a7f", "fields": {"departement": "95", "stop_lat": 48.96808091868575, "code_postal": "95268", "stop_lon": 2.411275612988156, "coord": [48.96808091868575, 2.411275612988156], "stop_id": 3663847, "stop_desc": "FACE 191 AVENUE DE STALINGRAD - 95268", "stop_name": "VERDUN"}, "geometry": {"type": "Point", "coordinates": [2.411275612988156, 48.96808091868575]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "270710cd4efb3f21a1a481d26a87b9f24539586d", "fields": {"departement": "95", "stop_lat": 48.96286461040014, "code_postal": "95268", "stop_lon": 2.402860940707323, "coord": [48.96286461040014, 2.402860940707323], "stop_id": 3663844, "stop_desc": "AVENUE DE STALINGRAD - 95268", "stop_name": "DEMUSOIS"}, "geometry": {"type": "Point", "coordinates": [2.402860940707323, 48.96286461040014]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "181531f5147f07bc45871f569291f039182c1029", "fields": {"departement": "95", "stop_lat": 48.97986310472089, "code_postal": "95019", "stop_lon": 2.423470550870969, "coord": [48.97986310472089, 2.423470550870969], "stop_id": 3663962, "stop_desc": "48 AVENUE DE LA REPUBLIQUE - 95019", "stop_name": "MAIRIE D'ARNOUVILLE"}, "geometry": {"type": "Point", "coordinates": [2.423470550870969, 48.97986310472089]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3eebe284a3ab691bf2e0d429b2d814380aba36cf", "fields": {"departement": "95", "stop_lat": 48.976350593870706, "code_postal": "95268", "stop_lon": 2.3906325320248634, "coord": [48.976350593870706, 2.3906325320248634], "stop_id": 3664130, "stop_desc": "AVENUE ANATOLE FRANCE - 95268", "stop_name": "GARGES - SARCELLES RER"}, "geometry": {"type": "Point", "coordinates": [2.3906325320248634, 48.976350593870706]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b3ba5391a4a062276f2e7597153c827664e2a8ad", "fields": {"departement": "95", "stop_lat": 48.976350593870706, "code_postal": "95268", "stop_lon": 2.3906325320248634, "coord": [48.976350593870706, 2.3906325320248634], "stop_id": 3664154, "stop_desc": "AVENUE ANATOLE FRANCE - 95268", "stop_name": "GARGES - SARCELLES RER"}, "geometry": {"type": "Point", "coordinates": [2.3906325320248634, 48.976350593870706]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eaec928aaa586f646b78989b3b4ead399ce407b3", "fields": {"departement": "95", "stop_lat": 48.9688337062749, "code_postal": "95268", "stop_lon": 2.39915580527187, "coord": [48.9688337062749, 2.39915580527187], "stop_id": 3664137, "stop_desc": "28 AVENUE DE LA COMMUNE DE PARIS - 95268", "stop_name": "MATERNELLE EIFFEL"}, "geometry": {"type": "Point", "coordinates": [2.39915580527187, 48.9688337062749]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "936cfc617e2d33b5d071d215377bbba45d14abab", "fields": {"departement": "95", "stop_lat": 48.97300808054812, "code_postal": "95268", "stop_lon": 2.389537024367586, "coord": [48.97300808054812, 2.389537024367586], "stop_id": 3664155, "stop_desc": "RUE D'ESTIENNE D'ORVES - 95268", "stop_name": "EGLISE SAINTE-GENEVIEVE"}, "geometry": {"type": "Point", "coordinates": [2.389537024367586, 48.97300808054812]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a0ec3e8de1539da718fb08790fa9c56f6701cd41", "fields": {"departement": "95", "stop_lat": 48.96744114934686, "code_postal": "95268", "stop_lon": 2.398444377127274, "coord": [48.96744114934686, 2.398444377127274], "stop_id": 3664140, "stop_desc": "RUE DU TIERS POT - 95268", "stop_name": "COLLEGE HENRI WALLON"}, "geometry": {"type": "Point", "coordinates": [2.398444377127274, 48.96744114934686]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4cdc34422c8c7b9e321410560877887e9b09cb24", "fields": {"departement": "95", "stop_lat": 48.971254435036265, "code_postal": "95268", "stop_lon": 2.3923472104511623, "coord": [48.971254435036265, 2.3923472104511623], "stop_id": 3664132, "stop_desc": "13 RUE DU COLONEL FABIEN - 95268", "stop_name": "GUY MOQUET"}, "geometry": {"type": "Point", "coordinates": [2.3923472104511623, 48.971254435036265]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ad1e1efd104a5c34060761a4bff152fe5f70a2d2", "fields": {"departement": "95", "stop_lat": 48.985316934538886, "code_postal": "95277", "stop_lon": 2.446609515755716, "coord": [48.985316934538886, 2.446609515755716], "stop_id": 3663967, "stop_desc": "28 RUE DE PARIS - 95277", "stop_name": "SAINT-NICOLAS"}, "geometry": {"type": "Point", "coordinates": [2.446609515755716, 48.985316934538886]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "21082b5be5a450504b071a27a4f7d4f86b39bd4c", "fields": {"departement": "95", "stop_lat": 48.961885506221755, "code_postal": "95268", "stop_lon": 2.402054478648344, "coord": [48.961885506221755, 2.402054478648344], "stop_id": 3664149, "stop_desc": "AVENUE DE STALINGRAD - 95268", "stop_name": "L'ARGENTIERE"}, "geometry": {"type": "Point", "coordinates": [2.402054478648344, 48.961885506221755]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a0e16f2e27f5310f9fddecc64ca1b1762e66374e", "fields": {"departement": "95", "stop_lat": 48.961885506221755, "code_postal": "95268", "stop_lon": 2.402054478648344, "coord": [48.961885506221755, 2.402054478648344], "stop_id": 3664150, "stop_desc": "AVENUE DE STALINGRAD - 95268", "stop_name": "L'ARGENTIERE"}, "geometry": {"type": "Point", "coordinates": [2.402054478648344, 48.961885506221755]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8f9d03db6ead7e0b61a6c44f043ba087e7357aaf", "fields": {"departement": "93", "stop_lat": 48.92712853010298, "code_postal": "93007", "stop_lon": 2.472441027496559, "coord": [48.92712853010298, 2.472441027496559], "stop_id": 3664415, "stop_desc": "84 AVENUE PAUL VAILLANT COUTURIER - 93007", "stop_name": "DANIELLE CASANOVA - PAUL VAILLANT-COUTURIER"}, "geometry": {"type": "Point", "coordinates": [2.472441027496559, 48.92712853010298]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "81b14a3ada3b4a18b5d36a8a7b38dfae8bdcef2c", "fields": {"departement": "95", "stop_lat": 48.98055459058821, "code_postal": "95019", "stop_lon": 2.4241270347624337, "coord": [48.98055459058821, 2.4241270347624337], "stop_id": 3663919, "stop_desc": "FACE 30 AVENUE DE LA REPUBLIQUE - 95019", "stop_name": "MAIRIE D'ARNOUVILLE"}, "geometry": {"type": "Point", "coordinates": [2.4241270347624337, 48.98055459058821]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1039cfc1993c012a17807587d38ff1e900faf83a", "fields": {"departement": "93", "stop_lat": 48.91995160206817, "code_postal": "93029", "stop_lon": 2.4517898551894257, "coord": [48.91995160206817, 2.4517898551894257], "stop_id": 3664400, "stop_desc": "128 AVENUE HENRI BARBUSSE - 93029", "stop_name": "PLACE DU 19 MARS 1962"}, "geometry": {"type": "Point", "coordinates": [2.4517898551894257, 48.91995160206817]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e1550683395b9b3dfe1e94236514525ce508131c", "fields": {"departement": "93", "stop_lat": 48.92270485983442, "code_postal": "93029", "stop_lon": 2.457619155307906, "coord": [48.92270485983442, 2.457619155307906], "stop_id": 3664404, "stop_desc": "220 AVENUE HENRI BARBUSSE - 93029", "stop_name": "BARBUSSE - CROIZAT"}, "geometry": {"type": "Point", "coordinates": [2.457619155307906, 48.92270485983442]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "36c59e320a78ace38e38ecdd882ab4a1cd763ef3", "fields": {"departement": "93", "stop_lat": 48.923581735322124, "code_postal": "93029", "stop_lon": 2.4613715689703417, "coord": [48.923581735322124, 2.4613715689703417], "stop_id": 3664406, "stop_desc": "AVENUE HENRI BARBUSSE - 93029", "stop_name": "DANIEL FERY"}, "geometry": {"type": "Point", "coordinates": [2.4613715689703417, 48.923581735322124]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "98f128c19a7e93bd3c30246bcfac80ef1e5da7ad", "fields": {"departement": "95", "stop_lat": 48.97012044217253, "code_postal": "95268", "stop_lon": 2.3958813486062143, "coord": [48.97012044217253, 2.3958813486062143], "stop_id": 3664157, "stop_desc": "AVENUE DE LA DIVISION LECLERC - 95268", "stop_name": "LYCEE ARTHUR RIMBAUD"}, "geometry": {"type": "Point", "coordinates": [2.3958813486062143, 48.97012044217253]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b2cac98f99e1c421b42a2e7b721e933b8b30f151", "fields": {"departement": "93", "stop_lat": 48.904197566180336, "code_postal": "93008", "stop_lon": 2.4309380138820957, "coord": [48.904197566180336, 2.4309380138820957], "stop_id": 3664374, "stop_desc": "79-87 RUE BENOIT FRACHON - 93008", "stop_name": "BOBIGNY - BENOIT FRACHON"}, "geometry": {"type": "Point", "coordinates": [2.4309380138820957, 48.904197566180336]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "595debcd4cc36e03c1c63682233d7ca79b0aa750", "fields": {"departement": "95", "stop_lat": 48.97356093396896, "code_postal": "95268", "stop_lon": 2.3986017741043617, "coord": [48.97356093396896, 2.3986017741043617], "stop_id": 3664175, "stop_desc": "AVENUE FRANCOIS MITTERRAND - 95268", "stop_name": "DE GAULLE - MITTERRAND"}, "geometry": {"type": "Point", "coordinates": [2.3986017741043617, 48.97356093396896]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "836afad6bd0a32e56812e77d698a508498028263", "fields": {"departement": "93", "stop_lat": 48.906577135972725, "code_postal": "93008", "stop_lon": 2.4440166024805547, "coord": [48.906577135972725, 2.4440166024805547], "stop_id": 3664387, "stop_desc": "BOULEVARD LENINE - 93008", "stop_name": "HOTEL DE VILLE DE BOBIGNY"}, "geometry": {"type": "Point", "coordinates": [2.4440166024805547, 48.906577135972725]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "235ed80ec030a777e1d9540e143bd1c485e23677", "fields": {"departement": "93", "stop_lat": 48.90739956399522, "code_postal": "93008", "stop_lon": 2.4488036443331134, "coord": [48.90739956399522, 2.4488036443331134], "stop_id": 3664390, "stop_desc": "PISTE GARE ROUTIERE - 93008", "stop_name": "BOBIGNY - PABLO PICASSO"}, "geometry": {"type": "Point", "coordinates": [2.4488036443331134, 48.90739956399522]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9b3f57ed448c8277476ce8c4419c06389b07d10c", "fields": {"departement": "93", "stop_lat": 48.906711868542196, "code_postal": "93008", "stop_lon": 2.444098679824846, "coord": [48.906711868542196, 2.444098679824846], "stop_id": 3664388, "stop_desc": "BOULEVARD LENINE - 93008", "stop_name": "HOTEL DE VILLE DE BOBIGNY"}, "geometry": {"type": "Point", "coordinates": [2.444098679824846, 48.906711868542196]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9300f55740c34d8cd566dfe770b79cf60966dfe3", "fields": {"departement": "95", "stop_lat": 48.96744114934686, "code_postal": "95268", "stop_lon": 2.398444377127274, "coord": [48.96744114934686, 2.398444377127274], "stop_id": 3664164, "stop_desc": "RUE DU TIERS POT - 95268", "stop_name": "COLLEGE HENRI WALLON"}, "geometry": {"type": "Point", "coordinates": [2.398444377127274, 48.96744114934686]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "deb193508b304818a1a773229744244f67bb3cdd", "fields": {"departement": "93", "stop_lat": 48.918319618663716, "code_postal": "93029", "stop_lon": 2.4479271617152185, "coord": [48.918319618663716, 2.4479271617152185], "stop_id": 3664399, "stop_desc": "FACE 86 AVENUE HENRI BARBUSSE - 93029", "stop_name": "JANE JOYE"}, "geometry": {"type": "Point", "coordinates": [2.4479271617152185, 48.918319618663716]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "63a46da28f895b415c9d2d02d37ed8480a702a3f", "fields": {"departement": "93", "stop_lat": 48.914330917685795, "code_postal": "93029", "stop_lon": 2.4462687699795196, "coord": [48.914330917685795, 2.4462687699795196], "stop_id": 3664395, "stop_desc": "139-137 RUE CHARLES GIDE - 93029", "stop_name": "LES LIMITES"}, "geometry": {"type": "Point", "coordinates": [2.4462687699795196, 48.914330917685795]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ec9f12800425dffa191b018832e02e1538714208", "fields": {"departement": "93", "stop_lat": 48.903411405769695, "code_postal": "93008", "stop_lon": 2.424747476427535, "coord": [48.903411405769695, 2.424747476427535], "stop_id": 3664377, "stop_desc": "RUE BERNARD - 93008", "stop_name": "LES VIGNES"}, "geometry": {"type": "Point", "coordinates": [2.424747476427535, 48.903411405769695]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "86986b1b4d4d26c29ed78638c0e2de24e03534f1", "fields": {"departement": "93", "stop_lat": 48.93037928534793, "code_postal": "93005", "stop_lon": 2.4822290533249594, "coord": [48.93037928534793, 2.4822290533249594], "stop_id": 3664425, "stop_desc": "FACE 45 AVENUE CHARLES DE GAULLE - 93005", "stop_name": "ROND-POINT PIERRE SEMARD - TURGOT"}, "geometry": {"type": "Point", "coordinates": [2.4822290533249594, 48.93037928534793]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2ac3a419ebd7373db4bf7c864c48dcc2c32167c5", "fields": {"departement": "75", "stop_lat": 48.88362477105826, "code_postal": "75110", "stop_lon": 2.3593443757229804, "coord": [48.88362477105826, 2.3593443757229804], "stop_id": 3666566, "stop_desc": "226-228 RUE DU FAUBOURG SAINT-DENIS - 75110", "stop_name": "PLACE DE LA CHAPELLE"}, "geometry": {"type": "Point", "coordinates": [2.3593443757229804, 48.88362477105826]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "925391c4197c994026f55dafaae609658b073889", "fields": {"departement": "93", "stop_lat": 48.94982606812028, "code_postal": "93007", "stop_lon": 2.4395484863144565, "coord": [48.94982606812028, 2.4395484863144565], "stop_id": 3666572, "stop_desc": "174-176 AVENUE DU 8 MAI 1945 - 93007", "stop_name": "LENINE"}, "geometry": {"type": "Point", "coordinates": [2.4395484863144565, 48.94982606812028]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0f5bc49db06714ffe41125edf9ee9b220d6c80e4", "fields": {"departement": "93", "stop_lat": 48.931381553795, "code_postal": "93005", "stop_lon": 2.4856963662922227, "coord": [48.931381553795, 2.4856963662922227], "stop_id": 3664421, "stop_desc": "17 RTE DES PETITS PONTS - 93005", "stop_name": "LA SABLIERE"}, "geometry": {"type": "Point", "coordinates": [2.4856963662922227, 48.931381553795]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ff2d2a4d97ebe238b40eff9181877f07585e44a9", "fields": {"departement": "93", "stop_lat": 48.95023932361886, "code_postal": "93007", "stop_lon": 2.4496873518004296, "coord": [48.95023932361886, 2.4496873518004296], "stop_id": 3666573, "stop_desc": "AVENUE DESCARTES - 93007", "stop_name": "MAURICE AUDIN"}, "geometry": {"type": "Point", "coordinates": [2.4496873518004296, 48.95023932361886]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a589d90546d9a82fa814fa93c1750f8069acc5d5", "fields": {"departement": "93", "stop_lat": 48.93178471941148, "code_postal": "93005", "stop_lon": 2.4866932345626394, "coord": [48.93178471941148, 2.4866932345626394], "stop_id": 3664422, "stop_desc": "R DES PETITS PONTS - 93005", "stop_name": "LA SABLIERE"}, "geometry": {"type": "Point", "coordinates": [2.4866932345626394, 48.93178471941148]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5ab8c450054b56d8cb9262dc3fba437adb319148", "fields": {"departement": "93", "stop_lat": 48.90759788133574, "code_postal": "93008", "stop_lon": 2.4267723064132727, "coord": [48.90759788133574, 2.4267723064132727], "stop_id": 3664428, "stop_desc": "164 RUE DE LA REPUBLIQUE - 93008", "stop_name": "REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.4267723064132727, 48.90759788133574]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b7a828f7ebfddb65b17b8c9a59a4bea8a51229f8", "fields": {"departement": "93", "stop_lat": 48.887416298736774, "code_postal": "93061", "stop_lon": 2.4081758350624156, "coord": [48.887416298736774, 2.4081758350624156], "stop_id": 3673623, "stop_desc": "49 RUE GABRIEL PERI - 93061", "stop_name": "CIMETIERE DE LE_PRE-SAINT-GERVAIS"}, "geometry": {"type": "Point", "coordinates": [2.4081758350624156, 48.887416298736774]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f7ac13a9115a6991b0a37dfaadc468a2d87a3022", "fields": {"departement": "75", "stop_lat": 48.858938104417646, "code_postal": "75111", "stop_lon": 2.384872702577642, "coord": [48.858938104417646, 2.384872702577642], "stop_id": 3673636, "stop_desc": "FACE 166 RUE DE LA ROQUETTE - 75111", "stop_name": "SAINT MAUR - SERVAN"}, "geometry": {"type": "Point", "coordinates": [2.384872702577642, 48.858938104417646]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0b6b9c1564ba86304522d926035db4b32962f558", "fields": {"departement": "93", "stop_lat": 48.8932102006786, "code_postal": "93055", "stop_lon": 2.4127906117656055, "coord": [48.8932102006786, 2.4127906117656055], "stop_id": 3673630, "stop_desc": "AVENUE JEAN LOLIVE - 93055", "stop_name": "EGLISE DE PANTIN-METRO"}, "geometry": {"type": "Point", "coordinates": [2.4127906117656055, 48.8932102006786]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "23d4fd912bd5c8d5e4a3615916f8c7753eb764d7", "fields": {"departement": "75", "stop_lat": 48.8679628753725, "code_postal": "75120", "stop_lon": 2.401024350717871, "coord": [48.8679628753725, 2.401024350717871], "stop_id": 3673633, "stop_desc": "125 AVENUE GAMBETTA - 75120", "stop_name": "PELLEPORT - GAMBETTA"}, "geometry": {"type": "Point", "coordinates": [2.401024350717871, 48.8679628753725]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eac7f7e0d837eee965a996aa5f22e704693412f5", "fields": {"departement": "77", "stop_lat": 48.84107728179296, "code_postal": "77258", "stop_lon": 2.638360206241935, "coord": [48.84107728179296, 2.638360206241935], "stop_id": 3677666, "stop_desc": "RUE GABRIEL - 77258", "stop_name": "LA TOUR D'AUVERGNE"}, "geometry": {"type": "Point", "coordinates": [2.638360206241935, 48.84107728179296]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "75acaed66a5e33d8c781ef379d6c1dc7f7d14efc", "fields": {"departement": "77", "stop_lat": 48.84396122264184, "code_postal": "77337", "stop_lon": 2.620484369190129, "coord": [48.84396122264184, 2.620484369190129], "stop_id": 3677684, "stop_desc": "COURS DU BUISSON - 77337", "stop_name": "FERME DU BUISSON"}, "geometry": {"type": "Point", "coordinates": [2.620484369190129, 48.84396122264184]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "88f303c0e1d0050bed59cdb83288072641a06323", "fields": {"departement": "77", "stop_lat": 48.84181484743078, "code_postal": "77258", "stop_lon": 2.630929978089022, "coord": [48.84181484743078, 2.630929978089022], "stop_id": 3677680, "stop_desc": "COURS DU BUISSON - 77258", "stop_name": "COURS DES LACS"}, "geometry": {"type": "Point", "coordinates": [2.630929978089022, 48.84181484743078]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dafeb8a37fe4c9d9d71a231c26ecc318189003d2", "fields": {"departement": "93", "stop_lat": 48.889136185218675, "code_postal": "93055", "stop_lon": 2.4171185872806342, "coord": [48.889136185218675, 2.4171185872806342], "stop_id": 3673626, "stop_desc": "2 RUE LAVOISIER - 93055", "stop_name": "CHARLES AURAY"}, "geometry": {"type": "Point", "coordinates": [2.4171185872806342, 48.889136185218675]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "53498d0ae13d97b88ca016656df32c2290c183c8", "fields": {"departement": "77", "stop_lat": 48.84372290388273, "code_postal": "77468", "stop_lon": 2.6441218608239776, "coord": [48.84372290388273, 2.6441218608239776], "stop_id": 3677664, "stop_desc": "COURS DES LACS - 77468", "stop_name": "BAUDELAIRE"}, "geometry": {"type": "Point", "coordinates": [2.6441218608239776, 48.84372290388273]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "56d832747e6b4e95cde2a1580d1a81c8f63de0aa", "fields": {"departement": "77", "stop_lat": 48.8439446687912, "code_postal": "77337", "stop_lon": 2.6273607975996582, "coord": [48.8439446687912, 2.6273607975996582], "stop_id": 3677682, "stop_desc": "COURS DU BUISSON - 77337", "stop_name": "LE VERGER"}, "geometry": {"type": "Point", "coordinates": [2.6273607975996582, 48.8439446687912]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d9d8ec40a8253d1f940d35653d829b0370ac9213", "fields": {"departement": "77", "stop_lat": 48.82571249824891, "code_postal": "77258", "stop_lon": 2.629491258640077, "coord": [48.82571249824891, 2.629491258640077], "stop_id": 3677807, "stop_desc": "RUE DE LA MAISON ROUGE - 77258", "stop_name": "CHAMBRE DE COMMERCE ET D'INDUSTRIE"}, "geometry": {"type": "Point", "coordinates": [2.629491258640077, 48.82571249824891]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1e3e599b96b92677ef49f807de39f55c9efae7f3", "fields": {"departement": "77", "stop_lat": 48.824544052604296, "code_postal": "77258", "stop_lon": 2.6331462487305894, "coord": [48.824544052604296, 2.6331462487305894], "stop_id": 3677824, "stop_desc": "BOULEVARD DE COURCERIN - 77258", "stop_name": "AERODROME DE LOGNES"}, "geometry": {"type": "Point", "coordinates": [2.6331462487305894, 48.824544052604296]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "928f2c28e397692e22594ab0be90b8e984b12c53", "fields": {"departement": "77", "stop_lat": 48.828112417712866, "code_postal": "77258", "stop_lon": 2.6294094846955676, "coord": [48.828112417712866, 2.6294094846955676], "stop_id": 3677816, "stop_desc": "RUE DE LA MAISON ROUGE - 77258", "stop_name": "LA MADELEINE"}, "geometry": {"type": "Point", "coordinates": [2.6294094846955676, 48.828112417712866]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "308aef943e0b5044574836bedc659e91f3dafe55", "fields": {"departement": "77", "stop_lat": 48.828201357458596, "code_postal": "77258", "stop_lon": 2.629791142179634, "coord": [48.828201357458596, 2.629791142179634], "stop_id": 3677805, "stop_desc": "RUE DE LA MAISON ROUGE - 77258", "stop_name": "LA MADELEINE"}, "geometry": {"type": "Point", "coordinates": [2.629791142179634, 48.828201357458596]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5306662c3c3493ea3b092c41fb1afd72e0d1aa5f", "fields": {"departement": "77", "stop_lat": 48.84179603245742, "code_postal": "77258", "stop_lon": 2.63127027932034, "coord": [48.84179603245742, 2.63127027932034], "stop_id": 3677799, "stop_desc": "PLACE CHARLES CROS - 77258", "stop_name": "COURS DES LACS"}, "geometry": {"type": "Point", "coordinates": [2.63127027932034, 48.84179603245742]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3a890c736ed55592590e1291d583393ed27ad32b", "fields": {"departement": "77", "stop_lat": 48.842895365428475, "code_postal": "77337", "stop_lon": 2.615113613794591, "coord": [48.842895365428475, 2.615113613794591], "stop_id": 3677740, "stop_desc": "ALL JEAN PAUL SARTRE - 77337", "stop_name": "NOISIEL RER"}, "geometry": {"type": "Point", "coordinates": [2.615113613794591, 48.842895365428475]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f29107b96f7768a98053b864ddc3833bfc3ad6ec", "fields": {"departement": "77", "stop_lat": 48.82637430057647, "code_postal": "77146", "stop_lon": 2.6344498494410065, "coord": [48.82637430057647, 2.6344498494410065], "stop_id": 3677818, "stop_desc": "FACE 7 RUE PELLOUTIER - 77146", "stop_name": "PELLOUTIER"}, "geometry": {"type": "Point", "coordinates": [2.6344498494410065, 48.82637430057647]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "67cd0f0af60888913d953330c2735a778351aece", "fields": {"departement": "77", "stop_lat": 48.83939955555686, "code_postal": "77258", "stop_lon": 2.6335985955814634, "coord": [48.83939955555686, 2.6335985955814634], "stop_id": 3677812, "stop_desc": "RUE JEHAN SCARRON - 77258", "stop_name": "LOGNES RER"}, "geometry": {"type": "Point", "coordinates": [2.6335985955814634, 48.83939955555686]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "126ee2bd31c685b28d33e8d45b466f3847932d31", "fields": {"departement": "77", "stop_lat": 48.83882479616967, "code_postal": "77258", "stop_lon": 2.633418310732026, "coord": [48.83882479616967, 2.633418310732026], "stop_id": 3677797, "stop_desc": "RUE JEHAN SCARRON - 77258", "stop_name": "LOGNES RER"}, "geometry": {"type": "Point", "coordinates": [2.633418310732026, 48.83882479616967]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6679f76c7da2b44b1cf1b522fd8f5ee560a06f29", "fields": {"departement": "77", "stop_lat": 48.826324528217434, "code_postal": "77146", "stop_lon": 2.639935302815908, "coord": [48.826324528217434, 2.639935302815908], "stop_id": 3677820, "stop_desc": "RUE LEON JOUHAUX - 77146", "stop_name": "LEON JOUHAUX"}, "geometry": {"type": "Point", "coordinates": [2.639935302815908, 48.826324528217434]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3fb5cd7d52e3ad9a4587286fee40423cee85d747", "fields": {"departement": "77", "stop_lat": 48.850679452087306, "code_postal": "77337", "stop_lon": 2.6297681081578985, "coord": [48.850679452087306, 2.6297681081578985], "stop_id": 3677701, "stop_desc": "COURS DE L'ARCHE GUEDON - 77337", "stop_name": "LA REMISE AUX FRAISES"}, "geometry": {"type": "Point", "coordinates": [2.6297681081578985, 48.850679452087306]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dac10b8ba183d003d76612e58be9c5edbc7be6bc", "fields": {"departement": "77", "stop_lat": 48.85048981271242, "code_postal": "77337", "stop_lon": 2.6301347406719437, "coord": [48.85048981271242, 2.6301347406719437], "stop_id": 3677700, "stop_desc": "COURS DE L'ARCHE GUEDON - 77337", "stop_name": "LA REMISE AUX FRAISES"}, "geometry": {"type": "Point", "coordinates": [2.6301347406719437, 48.85048981271242]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9780812cac5fa1c74b280908dc35e5117aaa6934", "fields": {"departement": "77", "stop_lat": 48.881164483281744, "code_postal": "77055", "stop_lon": 2.629899247494795, "coord": [48.881164483281744, 2.629899247494795], "stop_id": 3677719, "stop_desc": "24 AVENUE VICTOR THIEBAUT - 77055", "stop_name": "MAIRIE DE BROU"}, "geometry": {"type": "Point", "coordinates": [2.629899247494795, 48.881164483281744]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c5c30b3f4c36bdfd3a9a08ce8bec468426fbb20e", "fields": {"departement": "77", "stop_lat": 48.85200407171796, "code_postal": "77337", "stop_lon": 2.6209096187583643, "coord": [48.85200407171796, 2.6209096187583643], "stop_id": 3677737, "stop_desc": "BD PIERRE CARLE - 77337", "stop_name": "LES QUATRE PAVES"}, "geometry": {"type": "Point", "coordinates": [2.6209096187583643, 48.85200407171796]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "611632cb5722d838092a9fd89561e041db74314d", "fields": {"departement": "77", "stop_lat": 48.866322520287966, "code_postal": "77479", "stop_lon": 2.642171321020683, "coord": [48.866322520287966, 2.642171321020683], "stop_id": 3677713, "stop_desc": "44 BOULEVARD DE LA MARNE - 77479", "stop_name": "LE CANAL"}, "geometry": {"type": "Point", "coordinates": [2.642171321020683, 48.866322520287966]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f2e1503ca909f30000d06eeb6bb2b95bc91e7db7", "fields": {"departement": "77", "stop_lat": 48.85110871780549, "code_postal": "77337", "stop_lon": 2.6269650659664032, "coord": [48.85110871780549, 2.6269650659664032], "stop_id": 3677734, "stop_desc": "192 R CLAIRE MENIER - 77337", "stop_name": "JULES FERRY"}, "geometry": {"type": "Point", "coordinates": [2.6269650659664032, 48.85110871780549]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "54e0b1f59cf246aee3cef5905f14386db85a1417", "fields": {"departement": "77", "stop_lat": 48.84720718243952, "code_postal": "77337", "stop_lon": 2.6160627148221396, "coord": [48.84720718243952, 2.6160627148221396], "stop_id": 3677691, "stop_desc": "CRS DU LUZARD - 77337", "stop_name": "COMMISSARIAT"}, "geometry": {"type": "Point", "coordinates": [2.6160627148221396, 48.84720718243952]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f5a02893e6c4df3f823cdee489e7f178b84bc49c", "fields": {"departement": "77", "stop_lat": 48.8428596378912, "code_postal": "77337", "stop_lon": 2.6150181063879754, "coord": [48.8428596378912, 2.6150181063879754], "stop_id": 3677687, "stop_desc": "COURS DES ROCHES - 77337", "stop_name": "NOISIEL RER"}, "geometry": {"type": "Point", "coordinates": [2.6150181063879754, 48.8428596378912]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e3a244050f7ef1e439d389667c7d5e6bba15f6e4", "fields": {"departement": "77", "stop_lat": 48.851342867636546, "code_postal": "77468", "stop_lon": 2.6376571447027524, "coord": [48.851342867636546, 2.6376571447027524], "stop_id": 3677705, "stop_desc": "R DE LA MOGOTTE - 77468", "stop_name": "LA MOGOTTE"}, "geometry": {"type": "Point", "coordinates": [2.6376571447027524, 48.851342867636546]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "455629e29ba68c82baa6142dd0cf16768214759b", "fields": {"departement": "77", "stop_lat": 48.851342867636546, "code_postal": "77468", "stop_lon": 2.6376571447027524, "coord": [48.851342867636546, 2.6376571447027524], "stop_id": 3677731, "stop_desc": "R DE LA MOGOTTE - 77468", "stop_name": "LA MOGOTTE"}, "geometry": {"type": "Point", "coordinates": [2.6376571447027524, 48.851342867636546]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "afec31b03fe9075017c81e3ab6c1dc6430a342d5", "fields": {"departement": "77", "stop_lat": 48.878965828315415, "code_postal": "77108", "stop_lon": 2.6134810521284204, "coord": [48.878965828315415, 2.6134810521284204], "stop_id": 3677720, "stop_desc": "BRETELLE DE SORTIE DU CENTRE COMMERCIAL - VERS L'AVENUE DU GENDARME CASTERMANT - 77108", "stop_name": "TERRE CIEL"}, "geometry": {"type": "Point", "coordinates": [2.6134810521284204, 48.878965828315415]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2ee1aecba273c10042fc02e73c7d891105965845", "fields": {"departement": "77", "stop_lat": 48.826493607422115, "code_postal": "77146", "stop_lon": 2.637050481519303, "coord": [48.826493607422115, 2.637050481519303], "stop_id": 3677843, "stop_desc": "ALLEE DU 1ER MAI - 77146", "stop_name": "CROISSY-BEAUBOURG - Z.I. PARIEST"}, "geometry": {"type": "Point", "coordinates": [2.637050481519303, 48.826493607422115]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "952008828d12ba7ce5e862a1bb287de2bb7b9a6f", "fields": {"departement": "77", "stop_lat": 48.83594845740181, "code_postal": "77258", "stop_lon": 2.6299028951720893, "coord": [48.83594845740181, 2.6299028951720893], "stop_id": 3677845, "stop_desc": "PL MARTIN LUTHER KING - 77258", "stop_name": "RUE DE LA FERME"}, "geometry": {"type": "Point", "coordinates": [2.6299028951720893, 48.83594845740181]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "08ab540d314df044c60488769498f37ed9de8ce5", "fields": {"departement": "77", "stop_lat": 48.832408572708516, "code_postal": "77258", "stop_lon": 2.629392832135877, "coord": [48.832408572708516, 2.629392832135877], "stop_id": 3677830, "stop_desc": "RUE DE LA MAISON ROUGE - 77258", "stop_name": "MAISON ROUGE"}, "geometry": {"type": "Point", "coordinates": [2.629392832135877, 48.832408572708516]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f2cee1adeb03dd6e79ab3250c8a5b3ec97743183", "fields": {"departement": "77", "stop_lat": 48.832408572708516, "code_postal": "77258", "stop_lon": 2.629392832135877, "coord": [48.832408572708516, 2.629392832135877], "stop_id": 3677846, "stop_desc": "RUE DE LA MAISON ROUGE - 77258", "stop_name": "MAISON ROUGE"}, "geometry": {"type": "Point", "coordinates": [2.629392832135877, 48.832408572708516]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "83c5f965dd1596e07f5a6f08cbae7e200e069d98", "fields": {"departement": "77", "stop_lat": 48.83296543292309, "code_postal": "77258", "stop_lon": 2.629545721233269, "coord": [48.83296543292309, 2.629545721233269], "stop_id": 3677831, "stop_desc": "RUE DE LA MAISON ROUGE - 77258", "stop_name": "MAISON ROUGE"}, "geometry": {"type": "Point", "coordinates": [2.629545721233269, 48.83296543292309]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "97c4ac5023c7b9e68e462228d7e84a0384389d3e", "fields": {"departement": "77", "stop_lat": 48.83882479616967, "code_postal": "77258", "stop_lon": 2.633418310732026, "coord": [48.83882479616967, 2.633418310732026], "stop_id": 3677827, "stop_desc": "RUE JEHAN SCARRON - 77258", "stop_name": "LOGNES RER"}, "geometry": {"type": "Point", "coordinates": [2.633418310732026, 48.83882479616967]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "57e3717c1d80d743a500b786524ac8c8e62e98a6", "fields": {"departement": "93", "stop_lat": 48.98354197724208, "code_postal": "93073", "stop_lon": 2.51719458677695, "coord": [48.98354197724208, 2.51719458677695], "stop_id": 3678790, "stop_desc": "56 AVENUE DE LA PYRAMIDE - 93073", "stop_name": "58, AVENUE DE LA PYRAMIDE"}, "geometry": {"type": "Point", "coordinates": [2.51719458677695, 48.98354197724208]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "666d452e765e490edecbf6284eb43145558abd5c", "fields": {"departement": "77", "stop_lat": 48.83599091440836, "code_postal": "77258", "stop_lon": 2.6309106287804247, "coord": [48.83599091440836, 2.6309106287804247], "stop_id": 3677880, "stop_desc": "FACE 1 COURS DES PETITES ECURIES - 77258", "stop_name": "RUE DE LA FERME"}, "geometry": {"type": "Point", "coordinates": [2.6309106287804247, 48.83599091440836]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2a2e9fe2e3b6c6f04d788312f912f4a83b2e7523", "fields": {"departement": "93", "stop_lat": 48.97377850518868, "code_postal": "93078", "stop_lon": 2.51391169970875, "coord": [48.97377850518868, 2.51391169970875], "stop_id": 3678786, "stop_desc": "PISTE GARE ROUTIERE - 93078", "stop_name": "PARC DES EXPOSITIONS RER"}, "geometry": {"type": "Point", "coordinates": [2.51391169970875, 48.97377850518868]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "25d3648a11d957b7c9738cfa8fbcfdc136449deb", "fields": {"departement": "95", "stop_lat": 48.989015745880955, "code_postal": "95527", "stop_lon": 2.5165308783227034, "coord": [48.989015745880955, 2.5165308783227034], "stop_id": 3678792, "stop_desc": "AVENUE DU BOIS DE LA PIE - 95527", "stop_name": "PARC DES NATIONS"}, "geometry": {"type": "Point", "coordinates": [2.5165308783227034, 48.989015745880955]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "94d73f636ee9a2615e0c7a3756bcabbd9a8472ca", "fields": {"departement": "77", "stop_lat": 48.824544052604296, "code_postal": "77258", "stop_lon": 2.6331462487305894, "coord": [48.824544052604296, 2.6331462487305894], "stop_id": 3677885, "stop_desc": "BOULEVARD DE COURCERIN - 77258", "stop_name": "AERODROME DE LOGNES"}, "geometry": {"type": "Point", "coordinates": [2.6331462487305894, 48.824544052604296]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ef9dddfea050bed93f0402d33392b6da3ba6de51", "fields": {"departement": "77", "stop_lat": 48.83594845740181, "code_postal": "77258", "stop_lon": 2.6299028951720893, "coord": [48.83594845740181, 2.6299028951720893], "stop_id": 3677879, "stop_desc": "PL MARTIN LUTHER KING - 77258", "stop_name": "RUE DE LA FERME"}, "geometry": {"type": "Point", "coordinates": [2.6299028951720893, 48.83594845740181]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "29385890e854b3d4ca62681994a07af7fdbfbecf", "fields": {"departement": "77", "stop_lat": 48.828112417712866, "code_postal": "77258", "stop_lon": 2.6294094846955676, "coord": [48.828112417712866, 2.6294094846955676], "stop_id": 3677882, "stop_desc": "RUE DE LA MAISON ROUGE - 77258", "stop_name": "LA MADELEINE"}, "geometry": {"type": "Point", "coordinates": [2.6294094846955676, 48.828112417712866]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4f342a8454f33b31919933605785a6990c48e1db", "fields": {"departement": "93", "stop_lat": 48.99460337939841, "code_postal": "93073", "stop_lon": 2.523665271336363, "coord": [48.99460337939841, 2.523665271336363], "stop_id": 3678794, "stop_desc": "RUE DES BUISSONS - 93073", "stop_name": "MARGUILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.523665271336363, 48.99460337939841]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "56ac6e31a708162005ae9629836711c4a3d39b21", "fields": {"departement": "94", "stop_lat": 48.84611383325415, "code_postal": "94052", "stop_lon": 2.4904635538561393, "coord": [48.84611383325415, 2.4904635538561393], "stop_id": 3682872, "stop_desc": "155 BOULEVARD DE STRASBOURG - 94052", "stop_name": "RUE DE PLAISANCE - LYCEE LOUIS ARMAND"}, "geometry": {"type": "Point", "coordinates": [2.4904635538561393, 48.84611383325415]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "53b4ae7fd64d62034b82c08eecce0495c4f05419", "fields": {"departement": "94", "stop_lat": 48.84870549363509, "code_postal": "94058", "stop_lon": 2.4948562221266246, "coord": [48.84870549363509, 2.4948562221266246], "stop_id": 3682874, "stop_desc": "29-29 BIS BOULEVARD ALSACE LORRAINE - 94058", "stop_name": "ROND-POINT DU GENERAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.4948562221266246, 48.84870549363509]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "52af395587a95aac234765dfe937aaee1a7a65dd", "fields": {"departement": "93", "stop_lat": 48.8678271689098, "code_postal": "93050", "stop_lon": 2.5223512286276963, "coord": [48.8678271689098, 2.5223512286276963], "stop_id": 3682842, "stop_desc": "67 RUE DES FRERES LUMIERE - 93050", "stop_name": "RUE DES FRERES LUMIERE N0 67"}, "geometry": {"type": "Point", "coordinates": [2.5223512286276963, 48.8678271689098]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c19d664e67ded9684a4d588a9d9f87c2c0e088a6", "fields": {"departement": "92", "stop_lat": 48.77689031129291, "code_postal": "92060", "stop_lon": 2.2579169280257254, "coord": [48.77689031129291, 2.2579169280257254], "stop_id": 3909826, "stop_desc": "AVENUE CHARLES DE GAULLE - 92060", "stop_name": "CITE JARDINS - PLACE DES ALLIES"}, "geometry": {"type": "Point", "coordinates": [2.2579169280257254, 48.77689031129291]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "13e42bfce76bfdf23f49743bb87aad77dd133ae8", "fields": {"departement": "92", "stop_lat": 48.778905501575515, "code_postal": "92060", "stop_lon": 2.260783394313373, "coord": [48.778905501575515, 2.260783394313373], "stop_id": 3909827, "stop_desc": "FACE 9 AVENUE CHARLES DE GAULLE - 92060", "stop_name": "RESISTANCE"}, "geometry": {"type": "Point", "coordinates": [2.260783394313373, 48.778905501575515]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "59d61b94d24f12275da4d5f205fc45d8350bb169", "fields": {"departement": "94", "stop_lat": 48.838001853465165, "code_postal": "94058", "stop_lon": 2.4944560966386526, "coord": [48.838001853465165, 2.4944560966386526], "stop_id": 3922303, "stop_desc": "10 PLACE ROBERT BELVAUX - 94058", "stop_name": "NOGENT-LE-PERREUX RER"}, "geometry": {"type": "Point", "coordinates": [2.4944560966386526, 48.838001853465165]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "79619741ae451451e2ca828f5a465b3e2ffcca99", "fields": {"departement": "94", "stop_lat": 48.83971417428451, "code_postal": "94015", "stop_lon": 2.522455164631506, "coord": [48.83971417428451, 2.522455164631506], "stop_id": 3922315, "stop_desc": "4 BIS BOULEVARD DU GENERAL GALLIENI - 94015", "stop_name": "CHATEAU"}, "geometry": {"type": "Point", "coordinates": [2.522455164631506, 48.83971417428451]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d8abd2dd96c975baa51deda78bbca881ce84fcf1", "fields": {"departement": "75", "stop_lat": 48.89591076610747, "code_postal": "75117", "stop_lon": 2.318090294952848, "coord": [48.89591076610747, 2.318090294952848], "stop_id": 3926149, "stop_desc": "95 BIS BOULEVARD BESSIERES - 75117", "stop_name": "LYCEE HONORE DE BALZAC"}, "geometry": {"type": "Point", "coordinates": [2.318090294952848, 48.89591076610747]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cd0cf3747c09b65705c4b04a54cf757eeba1f8d0", "fields": {"departement": "75", "stop_lat": 48.89563194240139, "code_postal": "75117", "stop_lon": 2.316754622873841, "coord": [48.89563194240139, 2.316754622873841], "stop_id": 3926150, "stop_desc": "FACE 107 BOULEVARD BESSIERES - 75117", "stop_name": "LYCEE HONORE DE BALZAC"}, "geometry": {"type": "Point", "coordinates": [2.316754622873841, 48.89563194240139]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d0d4f99ccb6774b82f7002715ac21efaf59aaebe", "fields": {"departement": "75", "stop_lat": 48.8975838266348, "code_postal": "75118", "stop_lon": 2.332688340334556, "coord": [48.8975838266348, 2.332688340334556], "stop_id": 3926157, "stop_desc": "129-131 BOULEVARD NEY - 75118", "stop_name": "FACULTE XAVIER BICHAT"}, "geometry": {"type": "Point", "coordinates": [2.332688340334556, 48.8975838266348]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3006c69262d7ce28d9598169cfb51929bea0558d", "fields": {"departement": "75", "stop_lat": 48.89772769764517, "code_postal": "75118", "stop_lon": 2.338835867995168, "coord": [48.89772769764517, 2.338835867995168], "stop_id": 3926161, "stop_desc": "73 BOULEVARD NEY - 75118", "stop_name": "CAMILLE FLAMMARION"}, "geometry": {"type": "Point", "coordinates": [2.338835867995168, 48.89772769764517]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0c83382da3ea45c26af9a50d11fe0d8eeae237b5", "fields": {"departement": "75", "stop_lat": 48.89868721913006, "code_postal": "75118", "stop_lon": 2.359691575824568, "coord": [48.89868721913006, 2.359691575824568], "stop_id": 3926168, "stop_desc": "27 BOULEVARD NEY - 75118", "stop_name": "PORTE DE LA CHAPELLE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.359691575824568, 48.89868721913006]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a36f90adbcc316662a20aba255aa0bd03c779c39", "fields": {"departement": "75", "stop_lat": 48.88571275955294, "code_postal": "75117", "stop_lon": 2.2933596965538796, "coord": [48.88571275955294, 2.2933596965538796], "stop_id": 3926169, "stop_desc": "FACE 99 BOULEVARD BERTHIER - 75117", "stop_name": "PORTE DE CHAMPERRET - BERTHIER"}, "geometry": {"type": "Point", "coordinates": [2.2933596965538796, 48.88571275955294]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "789540db593e002a970dab82fa510e1bc0fa4b77", "fields": {"departement": "75", "stop_lat": 48.826111667038155, "code_postal": "75114", "stop_lon": 2.3045584182021206, "coord": [48.826111667038155, 2.3045584182021206], "stop_id": 3926175, "stop_desc": "FACE 4 AVENUE DE LA PORTE DE VANVES - 75114", "stop_name": "PORTE DE VANVES"}, "geometry": {"type": "Point", "coordinates": [2.3045584182021206, 48.826111667038155]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a238574fb7ae87749d11713e8132561883a211b8", "fields": {"departement": "75", "stop_lat": 48.82887978607675, "code_postal": "75115", "stop_lon": 2.3042844176823127, "coord": [48.82887978607675, 2.3042844176823127], "stop_id": 3926177, "stop_desc": "31 RUE JACQUES BAUDRY - 75115", "stop_name": "CHAUVELOT"}, "geometry": {"type": "Point", "coordinates": [2.3042844176823127, 48.82887978607675]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "466148adb985912f9f49f991f678b636e26d8533", "fields": {"departement": "75", "stop_lat": 48.83136972361109, "code_postal": "75115", "stop_lon": 2.3056305701571644, "coord": [48.83136972361109, 2.3056305701571644], "stop_id": 3926178, "stop_desc": "1-3 RUE DU LIEUVIN - 75115", "stop_name": "MORILLONS"}, "geometry": {"type": "Point", "coordinates": [2.3056305701571644, 48.83136972361109]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ad8041766bfe1841fafde38ee7c788a41315f729", "fields": {"departement": "75", "stop_lat": 48.84638266447135, "code_postal": "75106", "stop_lon": 2.3264833034864068, "coord": [48.84638266447135, 2.3264833034864068], "stop_id": 3926191, "stop_desc": "129 RUE DE RENNES - 75106", "stop_name": "RENNES - SAINT-PLACIDE"}, "geometry": {"type": "Point", "coordinates": [2.3264833034864068, 48.84638266447135]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9e2fb8399cda74340ec4cacaf43a3371df546bed", "fields": {"departement": "75", "stop_lat": 48.86083493385864, "code_postal": "75101", "stop_lon": 2.3339855904522095, "coord": [48.86083493385864, 2.3339855904522095], "stop_id": 3926201, "stop_desc": "PLACE DU CARROUSEL - 75101", "stop_name": "MUSEE DU LOUVRE"}, "geometry": {"type": "Point", "coordinates": [2.3339855904522095, 48.86083493385864]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "df835a299aa0848dc474a132f3355e04e2c04bfe", "fields": {"departement": "75", "stop_lat": 48.86960655910574, "code_postal": "75102", "stop_lon": 2.332554568380394, "coord": [48.86960655910574, 2.332554568380394], "stop_id": 3926209, "stop_desc": "49 AVENUE DE L'OPERA - 75102", "stop_name": "OPERA - 4 SEPTEMBRE"}, "geometry": {"type": "Point", "coordinates": [2.332554568380394, 48.86960655910574]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "65a314c31b0c6fb924d635e6fc4dd83c105bca42", "fields": {"departement": "75", "stop_lat": 48.87219478360626, "code_postal": "75109", "stop_lon": 2.3300338573501684, "coord": [48.87219478360626, 2.3300338573501684], "stop_id": 3926212, "stop_desc": "8 RUE AUBER - 75109", "stop_name": "AUBER"}, "geometry": {"type": "Point", "coordinates": [2.3300338573501684, 48.87219478360626]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ef7d5c1fd64eee566ba597a52f5f12b3547cad6d", "fields": {"departement": "75", "stop_lat": 48.87711023118559, "code_postal": "75108", "stop_lon": 2.3232340538304124, "coord": [48.87711023118559, 2.3232340538304124], "stop_id": 3926216, "stop_desc": "34 RUE DE ROME - 75108", "stop_name": "GARE SAINT-LAZARE"}, "geometry": {"type": "Point", "coordinates": [2.3232340538304124, 48.87711023118559]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "68cd032092a20ca89b8f64843d0e0da39ff4e05b", "fields": {"departement": "75", "stop_lat": 48.885019641231644, "code_postal": "75118", "stop_lon": 2.330386387892586, "coord": [48.885019641231644, 2.330386387892586], "stop_id": 3926222, "stop_desc": "6 RUE CAULAINCOURT - 75118", "stop_name": "CLICHY - CAULAINCOURT"}, "geometry": {"type": "Point", "coordinates": [2.330386387892586, 48.885019641231644]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1606b930eb4d41f00be0108b2d353fe53efe375f", "fields": {"departement": "75", "stop_lat": 48.88006741726368, "code_postal": "75108", "stop_lon": 2.3268850934745684, "coord": [48.88006741726368, 2.3268850934745684], "stop_id": 3926242, "stop_desc": "57 RUE D'AMSTERDAM - 75108", "stop_name": "LIEGE"}, "geometry": {"type": "Point", "coordinates": [2.3268850934745684, 48.88006741726368]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9645568e52eefa40867b4701fb7f28521e8e012d", "fields": {"departement": "75", "stop_lat": 48.84162612423442, "code_postal": "75115", "stop_lon": 2.3122417773485484, "coord": [48.84162612423442, 2.3122417773485484], "stop_id": 3926247, "stop_desc": "6-10 RUE DU DOCTEUR ROUX - 75115", "stop_name": "PASTEUR - DOCTEUR ROUX"}, "geometry": {"type": "Point", "coordinates": [2.3122417773485484, 48.84162612423442]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a49e02f7b3e5acbb759e8e6e0df4c66a5c83ceea", "fields": {"departement": "75", "stop_lat": 48.83693339545702, "code_postal": "75115", "stop_lon": 2.3069750582199444, "coord": [48.83693339545702, 2.3069750582199444], "stop_id": 3926249, "stop_desc": "82-84 RUE DUTOT - 75115", "stop_name": "ALLERAY"}, "geometry": {"type": "Point", "coordinates": [2.3069750582199444, 48.83693339545702]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ee194bfca29388036e32a59fe42ed1cef10d8b03", "fields": {"departement": "75", "stop_lat": 48.8535149316934, "code_postal": "75120", "stop_lon": 2.4100634184348704, "coord": [48.8535149316934, 2.4100634184348704], "stop_id": 3926278, "stop_desc": "143 RUE D'AVRON - 75120", "stop_name": "PORTE DE MONTREUIL"}, "geometry": {"type": "Point", "coordinates": [2.4100634184348704, 48.8535149316934]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "06183e346224c2bcfa76b285dba67aa127a33a62", "fields": {"departement": "75", "stop_lat": 48.85270873901845, "code_postal": "75120", "stop_lon": 2.4055407507523663, "coord": [48.85270873901845, 2.4055407507523663], "stop_id": 3926280, "stop_desc": "89 RUE D'AVRON - 75120", "stop_name": "MARAICHERS"}, "geometry": {"type": "Point", "coordinates": [2.4055407507523663, 48.85270873901845]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c3f3bebfedd98fa53d009396ca761b09db5b01b1", "fields": {"departement": "75", "stop_lat": 48.851875499075916, "code_postal": "75120", "stop_lon": 2.4008547642641616, "coord": [48.851875499075916, 2.4008547642641616], "stop_id": 3926282, "stop_desc": "33 RUE D'AVRON - 75120", "stop_name": "BUZENVAL"}, "geometry": {"type": "Point", "coordinates": [2.4008547642641616, 48.851875499075916]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6a8c15f5f2753c5a642ed367c511a39fadfc0f59", "fields": {"departement": "75", "stop_lat": 48.849127855702214, "code_postal": "75111", "stop_lon": 2.3959352457679666, "coord": [48.849127855702214, 2.3959352457679666], "stop_id": 3926286, "stop_desc": "FACE 9 AVENUE DE BOUVINE - 75111", "stop_name": "NATION"}, "geometry": {"type": "Point", "coordinates": [2.3959352457679666, 48.849127855702214]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "935a10b40ee231ff86c383e538cb7fc524bf99c1", "fields": {"departement": "75", "stop_lat": 48.848929915496655, "code_postal": "75111", "stop_lon": 2.3963708007370164, "coord": [48.848929915496655, 2.3963708007370164], "stop_id": 3926287, "stop_desc": "13 PLACE DE LA NATION - 75111", "stop_name": "NATION"}, "geometry": {"type": "Point", "coordinates": [2.3963708007370164, 48.848929915496655]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4cc97f3e1376a8915e286870612533122715783f", "fields": {"departement": "75", "stop_lat": 48.847181924666934, "code_postal": "75112", "stop_lon": 2.386305379345434, "coord": [48.847181924666934, 2.386305379345434], "stop_id": 3926293, "stop_desc": "116 BOULEVARD DIDEROT - 75112", "stop_name": "REUILLY - DIDEROT"}, "geometry": {"type": "Point", "coordinates": [2.386305379345434, 48.847181924666934]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fcb00ba939bd0d274f8dc6a2d1f970a6cad37a06", "fields": {"departement": "75", "stop_lat": 48.845677278703754, "code_postal": "75112", "stop_lon": 2.3712296777810264, "coord": [48.845677278703754, 2.3712296777810264], "stop_id": 3926298, "stop_desc": "15-17 BOULEVARD DIDEROT - 75112", "stop_name": "GARE DE LYON - DIDEROT"}, "geometry": {"type": "Point", "coordinates": [2.3712296777810264, 48.845677278703754]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b70ac88226fcf40f249720b705e949d1f3ae11ce", "fields": {"departement": "75", "stop_lat": 48.84563186778721, "code_postal": "75112", "stop_lon": 2.3728500974777273, "coord": [48.84563186778721, 2.3728500974777273], "stop_id": 3926299, "stop_desc": "FACE 21 BOULEVARD DIDEROT - 75112", "stop_name": "GARE DE LYON - DIDEROT"}, "geometry": {"type": "Point", "coordinates": [2.3728500974777273, 48.84563186778721]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "87122016f5d21bc04042087de0dbc5dcaaa6c284", "fields": {"departement": "75", "stop_lat": 48.839235617788596, "code_postal": "75113", "stop_lon": 2.361381421671141, "coord": [48.839235617788596, 2.361381421671141], "stop_id": 3926303, "stop_desc": "BOULEVARD DE L'HOPITAL - 75113", "stop_name": "SAINT-MARCEL - LA PITIE"}, "geometry": {"type": "Point", "coordinates": [2.361381421671141, 48.839235617788596]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "020f6c69d4ed36934b0e4073b61f5428e20c0bae", "fields": {"departement": "75", "stop_lat": 48.83386184230507, "code_postal": "75113", "stop_lon": 2.3570632427962246, "coord": [48.83386184230507, 2.3570632427962246], "stop_id": 3926306, "stop_desc": "138 BOULEVARD DE L'HOPITAL - 75113", "stop_name": "RUBENS - ECOLE DES ARTS ET METIERS"}, "geometry": {"type": "Point", "coordinates": [2.3570632427962246, 48.83386184230507]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "df1077b02210c71ed52dd0bd0f65e6bd11e1ec04", "fields": {"departement": "75", "stop_lat": 48.834374005977395, "code_postal": "75113", "stop_lon": 2.3578258372775394, "coord": [48.834374005977395, 2.3578258372775394], "stop_id": 3926307, "stop_desc": "141 BOULEVARD DE L'HOPITAL - 75113", "stop_name": "RUBENS - ECOLE DES ARTS ET METIERS"}, "geometry": {"type": "Point", "coordinates": [2.3578258372775394, 48.834374005977395]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "92d96ba7e7d4146cfd830c0bab297be24202f73c", "fields": {"departement": "75", "stop_lat": 48.8298809787651, "code_postal": "75113", "stop_lon": 2.352678308752121, "coord": [48.8298809787651, 2.352678308752121], "stop_id": 3926310, "stop_desc": "6 RUE DU MOULIN DES PRES - 75113", "stop_name": "MOULIN DES PRES"}, "geometry": {"type": "Point", "coordinates": [2.352678308752121, 48.8298809787651]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4a3e81d23d853176b4bfb95aad7da236c7531241", "fields": {"departement": "75", "stop_lat": 48.82779590669523, "code_postal": "75113", "stop_lon": 2.352214862577147, "coord": [48.82779590669523, 2.352214862577147], "stop_id": 3926311, "stop_desc": "RUE BOBILLOT - 75113", "stop_name": "VERLAINE"}, "geometry": {"type": "Point", "coordinates": [2.352214862577147, 48.82779590669523]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4cb144fdfa88c1e5a1c4fdbd84f300f64bd32c86", "fields": {"departement": "75", "stop_lat": 48.824146749252314, "code_postal": "75113", "stop_lon": 2.3535069109806463, "coord": [48.824146749252314, 2.3535069109806463], "stop_id": 3926315, "stop_desc": "29 RUE DES PEUPLIERS - 75113", "stop_name": "ABBE GEORGES HENOCQUE"}, "geometry": {"type": "Point", "coordinates": [2.3535069109806463, 48.824146749252314]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "358a88d136e1ee8b3a983e48836d88ccf9f418c4", "fields": {"departement": "94", "stop_lat": 48.8100998700319, "code_postal": "94037", "stop_lon": 2.3438817271543786, "coord": [48.8100998700319, 2.3438817271543786], "stop_id": 3926324, "stop_desc": "113 AVENUE RASPAIL - 94037", "stop_name": "FRAYSSE"}, "geometry": {"type": "Point", "coordinates": [2.3438817271543786, 48.8100998700319]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1cc0343b9d65554df583521a3372a0d3c0a32578", "fields": {"departement": "94", "stop_lat": 48.810864014533315, "code_postal": "94003", "stop_lon": 2.3375132336532727, "coord": [48.810864014533315, 2.3375132336532727], "stop_id": 3926326, "stop_desc": "FACE 111 AVENUE JEAN JAURES - 94003", "stop_name": "BENOIT MALON"}, "geometry": {"type": "Point", "coordinates": [2.3375132336532727, 48.810864014533315]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c1d111035c0a3c0946a077d299c21e90bcf7803e", "fields": {"departement": "94", "stop_lat": 48.81364075955538, "code_postal": "94037", "stop_lon": 2.3478423484763105, "coord": [48.81364075955538, 2.3478423484763105], "stop_id": 3926333, "stop_desc": "73 AVENUE RASPAIL - 94037", "stop_name": "REINE BLANCHE"}, "geometry": {"type": "Point", "coordinates": [2.3478423484763105, 48.81364075955538]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f7ff5e4c1aa57c6910c355ffa09b5aa03fccee64", "fields": {"departement": "75", "stop_lat": 48.830261749848866, "code_postal": "75113", "stop_lon": 2.3771821609627457, "coord": [48.830261749848866, 2.3771821609627457], "stop_id": 3926345, "stop_desc": "110 AVENUE DE FRANCE - 75113", "stop_name": "BIBLIOTHEQUE FRANCOIS MITTERRAND"}, "geometry": {"type": "Point", "coordinates": [2.3771821609627457, 48.830261749848866]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1b110c079b28b54b7c79f62dee9ed0a3f94afb62", "fields": {"departement": "75", "stop_lat": 48.85969201639628, "code_postal": "75104", "stop_lon": 2.35654189388196, "coord": [48.85969201639628, 2.35654189388196], "stop_id": 3926391, "stop_desc": "52 RUE DES ARCHIVES - 75104", "stop_name": "ARCHIVES - RAMBUTEAU"}, "geometry": {"type": "Point", "coordinates": [2.35654189388196, 48.85969201639628]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "58907b7804c5c3e38111145f6ba0426ecccb5631", "fields": {"departement": "75", "stop_lat": 48.86625191048184, "code_postal": "75103", "stop_lon": 2.361462105708011, "coord": [48.86625191048184, 2.361462105708011], "stop_id": 3926394, "stop_desc": "164-166 RUE DU TEMPLE - 75103", "stop_name": "TURBIGO - REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.361462105708011, 48.86625191048184]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "02fc5db642793870ee78973367c561f41575d15a", "fields": {"departement": "75", "stop_lat": 48.878784716233085, "code_postal": "75119", "stop_lon": 2.377982585697334, "coord": [48.878784716233085, 2.377982585697334], "stop_id": 3926410, "stop_desc": "58 AVENUE MATHURIN MOREAU - 75119", "stop_name": "SECRETAN - BUTTES CHAUMONT"}, "geometry": {"type": "Point", "coordinates": [2.377982585697334, 48.878784716233085]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b1fe365c3d09d02f039c0268d4e3f38330e14bdd", "fields": {"departement": "75", "stop_lat": 48.88019518047279, "code_postal": "75119", "stop_lon": 2.3795234659561926, "coord": [48.88019518047279, 2.3795234659561926], "stop_id": 3926412, "stop_desc": "FACE 47 RUE MANIN - 75119", "stop_name": "JEAN MENANS - BUTTES CHAUMONT"}, "geometry": {"type": "Point", "coordinates": [2.3795234659561926, 48.88019518047279]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7f5d3cc23b36dd0b3199d1b18af7f64e437dd356", "fields": {"departement": "75", "stop_lat": 48.88220285243194, "code_postal": "75119", "stop_lon": 2.3928521430186667, "coord": [48.88220285243194, 2.3928521430186667], "stop_id": 3926419, "stop_desc": "1TER-3 PLACE DE RHIN ET DANUBE - 75119", "stop_name": "RHIN ET DANUBE"}, "geometry": {"type": "Point", "coordinates": [2.3928521430186667, 48.88220285243194]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "87f1395f996815d81dc4df50b5f8e8708966ec5c", "fields": {"departement": "75", "stop_lat": 48.88143744656989, "code_postal": "75119", "stop_lon": 2.395958193721214, "coord": [48.88143744656989, 2.395958193721214], "stop_id": 3926421, "stop_desc": "63 R DAVID D'ANGERS - 75119", "stop_name": "LYCEE DIDEROT"}, "geometry": {"type": "Point", "coordinates": [2.395958193721214, 48.88143744656989]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "59b124d0ef9896d520355d17357b04e4312c8b40", "fields": {"departement": "75", "stop_lat": 48.88351409703753, "code_postal": "75119", "stop_lon": 2.3947340996971898, "coord": [48.88351409703753, 2.3947340996971898], "stop_id": 3926423, "stop_desc": "BOULEVARD SERURIER - 75119", "stop_name": "PORTE BRUNET"}, "geometry": {"type": "Point", "coordinates": [2.3947340996971898, 48.88351409703753]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3c61796151a2b7500815a709b4cefc63c8866429", "fields": {"departement": "75", "stop_lat": 48.886208530311414, "code_postal": "75119", "stop_lon": 2.3982258261198344, "coord": [48.886208530311414, 2.3982258261198344], "stop_id": 3926428, "stop_desc": "2 RUE DE LA MARSEILLAISE - 75119", "stop_name": "MARSEILLAISE - CHEMINETS"}, "geometry": {"type": "Point", "coordinates": [2.3982258261198344, 48.886208530311414]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7767b71598d43171efb8226dbfb746958a79b192", "fields": {"departement": "75", "stop_lat": 48.86989862659334, "code_postal": "75110", "stop_lon": 2.3703872629076637, "coord": [48.86989862659334, 2.3703872629076637], "stop_id": 3926435, "stop_desc": "65 RUE DU FAUBOURG DU TEMPLE - 75110", "stop_name": "GONCOURT"}, "geometry": {"type": "Point", "coordinates": [2.3703872629076637, 48.86989862659334]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7da9a48c5febdf4d04156b320cb9946e9b7e0a65", "fields": {"departement": "75", "stop_lat": 48.86581231751377, "code_postal": "75103", "stop_lon": 2.357211673996915, "coord": [48.86581231751377, 2.357211673996915], "stop_id": 3926436, "stop_desc": "FACE 56 RUE DE TURBIGO - 75103", "stop_name": "ARTS ET METIERS"}, "geometry": {"type": "Point", "coordinates": [2.357211673996915, 48.86581231751377]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "787bea004238e3308bc45b954162b403c2af2da9", "fields": {"departement": "94", "stop_lat": 48.81249970053441, "code_postal": "94037", "stop_lon": 2.33272303952671, "coord": [48.81249970053441, 2.33272303952671], "stop_id": 3970595, "stop_desc": "1ERE AVENUE - 94037", "stop_name": "CHAPERON VERT - MARCEL CACHIN"}, "geometry": {"type": "Point", "coordinates": [2.33272303952671, 48.81249970053441]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c2cbd722cedb4518b3c2ced72036f30f59c55c3a", "fields": {"departement": "94", "stop_lat": 48.81651680221057, "code_postal": "94037", "stop_lon": 2.348196784389282, "coord": [48.81651680221057, 2.348196784389282], "stop_id": 3970601, "stop_desc": "19 R DU VAL DE MARNE - 94037", "stop_name": "VAL DE MARNE"}, "geometry": {"type": "Point", "coordinates": [2.348196784389282, 48.81651680221057]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "79f5ad38577dec9765356ec1623cdba7cee414df", "fields": {"departement": "94", "stop_lat": 48.81352368758163, "code_postal": "94037", "stop_lon": 2.350183037847167, "coord": [48.81352368758163, 2.350183037847167], "stop_id": 3970604, "stop_desc": "8 RUE SAINT-ELOI - 94037", "stop_name": "JEAN JAURES - SAINT ELOI"}, "geometry": {"type": "Point", "coordinates": [2.350183037847167, 48.81352368758163]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "93e680d6fd25e4bacef68ddccf321f889463eafc", "fields": {"departement": "94", "stop_lat": 48.80842803505071, "code_postal": "94037", "stop_lon": 2.3456096613594855, "coord": [48.80842803505071, 2.3456096613594855], "stop_id": 3970607, "stop_desc": "R JEAN LOUIS - 94037", "stop_name": "GABRIEL PERI - SOLEIL LEVANT."}, "geometry": {"type": "Point", "coordinates": [2.3456096613594855, 48.80842803505071]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b9235a726c7061e0db0918e9a6557ed51a65e998", "fields": {"departement": "75", "stop_lat": 48.89741211839957, "code_postal": "75119", "stop_lon": 2.386148461529299, "coord": [48.89741211839957, 2.386148461529299], "stop_id": 3972545, "stop_desc": "81/83 BD MACDONALD - 75119", "stop_name": "PORTE DE LA VILLETTE"}, "geometry": {"type": "Point", "coordinates": [2.386148461529299, 48.89741211839957]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d20c53e9c06be5476a1826c4f9c70b0bc64a09ab", "fields": {"departement": "93", "stop_lat": 48.90397924505706, "code_postal": "93001", "stop_lon": 2.391798537325414, "coord": [48.90397924505706, 2.391798537325414], "stop_id": 3972547, "stop_desc": "105 AVENUE DE LA REPUBLIQUE - 93001", "stop_name": "QUATRE CHEMINS - REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.391798537325414, 48.90397924505706]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f035c602bab66f4146567ccda2c367e844957f3a", "fields": {"departement": "93", "stop_lat": 48.90388946760922, "code_postal": "93001", "stop_lon": 2.391593954805926, "coord": [48.90388946760922, 2.391593954805926], "stop_id": 3972548, "stop_desc": "142 AVENUE DE LA REPUBLIQUE - 93001", "stop_name": "QUATRE CHEMINS - REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.391593954805926, 48.90388946760922]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c0c5dbffac758ab8dfa446d13cff570d98e1278d", "fields": {"departement": "93", "stop_lat": 48.90814215002271, "code_postal": "93001", "stop_lon": 2.3874946856123884, "coord": [48.90814215002271, 2.3874946856123884], "stop_id": 3972552, "stop_desc": "80 AVENUE DE LA REPUBLIQUE - 93001", "stop_name": "RUE DES CITES"}, "geometry": {"type": "Point", "coordinates": [2.3874946856123884, 48.90814215002271]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2adb040173538e1987bb9e7f50a36f959f112c03", "fields": {"departement": "93", "stop_lat": 48.914057895958884, "code_postal": "93001", "stop_lon": 2.381759999739615, "coord": [48.914057895958884, 2.381759999739615], "stop_id": 3972556, "stop_desc": "AVENUE DE LA REPUBLIQUE - 93001", "stop_name": "MAIRIE D'AUBERVILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.381759999739615, 48.914057895958884]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cd5e1374def747b7a579fd17100e9343c123462f", "fields": {"departement": "93", "stop_lat": 48.92390665860271, "code_postal": "93027", "stop_lon": 2.384264180372188, "coord": [48.92390665860271, 2.384264180372188], "stop_id": 3972558, "stop_desc": "BOULEVARD PASTEUR - 93027", "stop_name": "LA COURNEUVE - AUBERVILLIERS RER"}, "geometry": {"type": "Point", "coordinates": [2.384264180372188, 48.92390665860271]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4fae82d5c588529a2e0c28d15091f4d52e4c017b", "fields": {"departement": "93", "stop_lat": 48.92623412112914, "code_postal": "93027", "stop_lon": 2.38464816857512, "coord": [48.92623412112914, 2.38464816857512], "stop_id": 3972561, "stop_desc": "FACE 66 BOULEVARD PASTEUR - 93027", "stop_name": "MICHELET"}, "geometry": {"type": "Point", "coordinates": [2.38464816857512, 48.92623412112914]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "04f2b17ce141a43a64b812e9fafb52830430b16b", "fields": {"departement": "93", "stop_lat": 48.928336795835285, "code_postal": "93027", "stop_lon": 2.3853047632900903, "coord": [48.928336795835285, 2.3853047632900903], "stop_id": 3972563, "stop_desc": "FACE 100 BOULEVARD PASTEUR - 93027", "stop_name": "SIX ROUTES - TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.3853047632900903, 48.928336795835285]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4a619d29679bcde27ebfaea9cffe5014df1cde6a", "fields": {"departement": "93", "stop_lat": 48.946903036868115, "code_postal": "93072", "stop_lon": 2.386672737644679, "coord": [48.946903036868115, 2.386672737644679], "stop_id": 3972568, "stop_desc": "169 BOULEVARD MAXIME GORKI - 93072", "stop_name": "CROIX BLANCHE"}, "geometry": {"type": "Point", "coordinates": [2.386672737644679, 48.946903036868115]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e2435ddf98519300e4505f5d44576a280d4729d4", "fields": {"departement": "93", "stop_lat": 48.95179255165845, "code_postal": "93072", "stop_lon": 2.384889891033903, "coord": [48.95179255165845, 2.384889891033903], "stop_id": 3972573, "stop_desc": "FACE 57 BOULEVARD MAXIME GORKI - 93072", "stop_name": "FRANCOIS BEGUE"}, "geometry": {"type": "Point", "coordinates": [2.384889891033903, 48.95179255165845]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d3b03f55f4657bd2536aac2ff396975c61f3fa50", "fields": {"departement": "93", "stop_lat": 48.941582600962306, "code_postal": "93066", "stop_lon": 2.3872952124781888, "coord": [48.941582600962306, 2.3872952124781888], "stop_id": 3972582, "stop_desc": "8-10 AVENUE ROGER SALENGRO - 93066", "stop_name": "CITE FLOREAL"}, "geometry": {"type": "Point", "coordinates": [2.3872952124781888, 48.941582600962306]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "89351161b42baf48bb225c40c2c62fe2a57398da", "fields": {"departement": "93", "stop_lat": 48.901427984542, "code_postal": "93001", "stop_lon": 2.389396639770175, "coord": [48.901427984542, 2.389396639770175], "stop_id": 3972584, "stop_desc": "3 AVENUE JEAN JAURES - 93001", "stop_name": "MAGENTA"}, "geometry": {"type": "Point", "coordinates": [2.389396639770175, 48.901427984542]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "941c2b22bd28054f79288b0e004164c2a0a9c31c", "fields": {"departement": "93", "stop_lat": 48.90293839849037, "code_postal": "93066", "stop_lon": 2.358166601230586, "coord": [48.90293839849037, 2.358166601230586], "stop_id": 4000522, "stop_desc": "21-39 AVENUE DU PRESIDENT WILSON - 93066", "stop_name": "PONT HAINGUERLOT"}, "geometry": {"type": "Point", "coordinates": [2.358166601230586, 48.90293839849037]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "926928ea4666562dc1e90ea83095d37a9ca5c355", "fields": {"departement": "93", "stop_lat": 48.90595792856695, "code_postal": "93066", "stop_lon": 2.358890372990476, "coord": [48.90595792856695, 2.358890372990476], "stop_id": 4000523, "stop_desc": "80 AVENUE DU PRESIDENT WILSON - 93066", "stop_name": "PROUDHON"}, "geometry": {"type": "Point", "coordinates": [2.358890372990476, 48.90595792856695]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "359a0a96fe6f445faaf22be0b20dff0acfa9b649", "fields": {"departement": "93", "stop_lat": 48.91468446293827, "code_postal": "93066", "stop_lon": 2.3582122491464044, "coord": [48.91468446293827, 2.3582122491464044], "stop_id": 4000529, "stop_desc": "216-218 AVENUE DU PRESIDENT WILSON - 93066", "stop_name": "PONT DE SOISSONS"}, "geometry": {"type": "Point", "coordinates": [2.3582122491464044, 48.91468446293827]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "63df81f1a1b85b22bcb0de4cfa91874bcaf05551", "fields": {"departement": "93", "stop_lat": 48.918234263953785, "code_postal": "93066", "stop_lon": 2.358554593066675, "coord": [48.918234263953785, 2.358554593066675], "stop_id": 4000536, "stop_desc": "6 RUE FRANCIS DE PRESSENSE - 93066", "stop_name": "WILSON - DE PRESSENSE"}, "geometry": {"type": "Point", "coordinates": [2.358554593066675, 48.918234263953785]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7cb6706556942d1f69c6ea0205484d3bce4ff72a", "fields": {"departement": "93", "stop_lat": 48.92068785436819, "code_postal": "93066", "stop_lon": 2.3577101110089767, "coord": [48.92068785436819, 2.3577101110089767], "stop_id": 4000537, "stop_desc": "276 AVENUE DU PRESIDENT WILSON - 93066", "stop_name": "CORNILLON SUD"}, "geometry": {"type": "Point", "coordinates": [2.3577101110089767, 48.92068785436819]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a4e3a3117b1771da5a474a72ae49b18a42684663", "fields": {"departement": "93", "stop_lat": 48.925271401304954, "code_postal": "93066", "stop_lon": 2.356470848851111, "coord": [48.925271401304954, 2.356470848851111], "stop_id": 4000540, "stop_desc": "375 AVENUE DU PRESIDENT WILSON - 93066", "stop_name": "PONT DU CANAL"}, "geometry": {"type": "Point", "coordinates": [2.356470848851111, 48.925271401304954]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9fabf7063591f00979ebc732e8438c886ec161ef", "fields": {"departement": "93", "stop_lat": 48.928740296188124, "code_postal": "93066", "stop_lon": 2.3567994737664737, "coord": [48.928740296188124, 2.3567994737664737], "stop_id": 4000541, "stop_desc": "AVENUE DU PRESIDENT WILSON - 93066", "stop_name": "PORTE DE PARIS - STADE DE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.3567994737664737, 48.928740296188124]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0c50fbe537c5132d294bc4834edab547baffba61", "fields": {"departement": "93", "stop_lat": 48.930726417069806, "code_postal": "93066", "stop_lon": 2.3566911066037166, "coord": [48.930726417069806, 2.3566911066037166], "stop_id": 4000542, "stop_desc": "R DE LA LEGION D'HONNEUR - 93066", "stop_name": "PORTE DE PARIS-METRO"}, "geometry": {"type": "Point", "coordinates": [2.3566911066037166, 48.930726417069806]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "199b43f4d1c3b0bc77e1958152619ae65b72e885", "fields": {"departement": "93", "stop_lat": 48.93045686558686, "code_postal": "93066", "stop_lon": 2.3563500173144774, "coord": [48.93045686558686, 2.3563500173144774], "stop_id": 4000543, "stop_desc": "RUE GABRIEL PERI - 93066", "stop_name": "PORTE DE PARIS-METRO"}, "geometry": {"type": "Point", "coordinates": [2.3563500173144774, 48.93045686558686]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7c8127cc33a711cb6ad5874ba602ba90ab3522d7", "fields": {"departement": "93", "stop_lat": 48.93565775010247, "code_postal": "93066", "stop_lon": 2.368301359312325, "coord": [48.93565775010247, 2.368301359312325], "stop_id": 4000550, "stop_desc": "4 AV DE SAINT-REMY - 93066", "stop_name": "AVENUE SAINT-REMY"}, "geometry": {"type": "Point", "coordinates": [2.368301359312325, 48.93565775010247]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "97ee67b7aad457fe98644db0d48e5e3b0fcf439f", "fields": {"departement": "93", "stop_lat": 48.9359992182169, "code_postal": "93066", "stop_lon": 2.368424332918886, "coord": [48.9359992182169, 2.368424332918886], "stop_id": 4000551, "stop_desc": "73 BIS RUE DE STRASBOURG - 93066", "stop_name": "AVENUE SAINT-REMY"}, "geometry": {"type": "Point", "coordinates": [2.368424332918886, 48.9359992182169]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e10109150ead1f9d814ad96f660d90aca8e01c0e", "fields": {"departement": "93", "stop_lat": 48.94080131893561, "code_postal": "93066", "stop_lon": 2.385916589916401, "coord": [48.94080131893561, 2.385916589916401], "stop_id": 4000556, "stop_desc": "CHEMIN DE MARVILLE - 93066", "stop_name": "LA COURTILLE"}, "geometry": {"type": "Point", "coordinates": [2.385916589916401, 48.94080131893561]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d58b04dbe72c0a38a0d7a2606946dcc69a2156bf", "fields": {"departement": "93", "stop_lat": 48.9481155480015, "code_postal": "93072", "stop_lon": 2.3883384850297578, "coord": [48.9481155480015, 2.3883384850297578], "stop_id": 4000564, "stop_desc": "18-20 AVENUE GASTON MONMOUSSEAU - 93072", "stop_name": "MONMOUSSEAU - RENELLE"}, "geometry": {"type": "Point", "coordinates": [2.3883384850297578, 48.9481155480015]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "88af13a254e52846b904c53f1e8c2f8bbcdaabdf", "fields": {"departement": "93", "stop_lat": 48.948205468019445, "code_postal": "93072", "stop_lon": 2.3882157759296048, "coord": [48.948205468019445, 2.3882157759296048], "stop_id": 4000565, "stop_desc": "11-15 AVENUE GASTON MONMOUSSEAU - 93072", "stop_name": "MONMOUSSEAU - RENELLE"}, "geometry": {"type": "Point", "coordinates": [2.3882157759296048, 48.948205468019445]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4ca2e61fe5f04a8d9101635d8b52e570ddf64e41", "fields": {"departement": "93", "stop_lat": 48.949803465965104, "code_postal": "93072", "stop_lon": 2.3919286870255205, "coord": [48.949803465965104, 2.3919286870255205], "stop_id": 4000566, "stop_desc": "FACE 35 AVENUE GASTON MONMOUSSEAU - 93072", "stop_name": "TROIS RIVIERES"}, "geometry": {"type": "Point", "coordinates": [2.3919286870255205, 48.949803465965104]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5028f4a5c66b11129e7fe4ecefea847fde310a2c", "fields": {"departement": "93", "stop_lat": 48.94976765616206, "code_postal": "93072", "stop_lon": 2.391628467660622, "coord": [48.94976765616206, 2.391628467660622], "stop_id": 4000567, "stop_desc": "FACE 44 AVENUE GASTON MONMOUSSEAU - 93072", "stop_name": "TROIS RIVIERES"}, "geometry": {"type": "Point", "coordinates": [2.391628467660622, 48.94976765616206]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3028fdc8ac1f2a7efe788e352ea48d207dabdc64", "fields": {"departement": "93", "stop_lat": 48.951375607170604, "code_postal": "93072", "stop_lon": 2.393090175876201, "coord": [48.951375607170604, 2.393090175876201], "stop_id": 4000568, "stop_desc": "FACE 2 RUE DU CHARME - 93072", "stop_name": "MOULIN NEUF"}, "geometry": {"type": "Point", "coordinates": [2.393090175876201, 48.951375607170604]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "45912d0124914e07f8f05c239068083386baaba3", "fields": {"departement": "93", "stop_lat": 48.93613648458029, "code_postal": "93066", "stop_lon": 2.35684318859828, "coord": [48.93613648458029, 2.35684318859828], "stop_id": 4000570, "stop_desc": "12 RUE DE LA REPUBLIQUE - 93066", "stop_name": "MARCHE - REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.35684318859828, 48.93613648458029]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "38e9a7d7a136b7da8e3c417bf0f4d2958db284f1", "fields": {"departement": "95", "stop_lat": 48.95659185515301, "code_postal": "95427", "stop_lon": 2.331932582935581, "coord": [48.95659185515301, 2.331932582935581], "stop_id": 4000744, "stop_desc": "11 ROUTE DE SAINT-LEU - 95427", "stop_name": "SABLONS"}, "geometry": {"type": "Point", "coordinates": [2.331932582935581, 48.95659185515301]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9fc4df3c0289dbd662ec3419765139a12ba05d1b", "fields": {"departement": "93", "stop_lat": 48.95631326835775, "code_postal": "93031", "stop_lon": 2.3319462579160413, "coord": [48.95631326835775, 2.3319462579160413], "stop_id": 4000747, "stop_desc": "209 ROUTE DE SAINT-LEU - 93031", "stop_name": "SABLONS"}, "geometry": {"type": "Point", "coordinates": [2.3319462579160413, 48.95631326835775]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3c772a816cda6c22f62760b364fe9c7152d58cee", "fields": {"departement": "95", "stop_lat": 48.9831272330852, "code_postal": "95585", "stop_lon": 2.388796313327863, "coord": [48.9831272330852, 2.388796313327863], "stop_id": 4008112, "stop_desc": "ROUTE DES REFUZNIKS - 95585", "stop_name": "HAUT DU ROY"}, "geometry": {"type": "Point", "coordinates": [2.388796313327863, 48.9831272330852]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a8d3a056f469ec01557cf1c35638f426a99ee52d", "fields": {"departement": "95", "stop_lat": 48.996174208970196, "code_postal": "95585", "stop_lon": 2.391800167548266, "coord": [48.996174208970196, 2.391800167548266], "stop_id": 4008121, "stop_desc": "FACE 20 RUE DU FER A CHEVAL - 95585", "stop_name": "RUE D'ABLEVAL - PARC INDUSTRIEL"}, "geometry": {"type": "Point", "coordinates": [2.391800167548266, 48.996174208970196]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9bf07e2c0b0a45a2c3ffc604514398ed2101c126", "fields": {"departement": "95", "stop_lat": 48.998475818580886, "code_postal": "95585", "stop_lon": 2.38934425115093, "coord": [48.998475818580886, 2.38934425115093], "stop_id": 4008125, "stop_desc": "8 RUE D'ESCOUVRIER - 95585", "stop_name": "TISSONVILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.38934425115093, 48.998475818580886]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "68bf5b6d1a6f5fcf896e146f85d64f3b12c5d07a", "fields": {"departement": "95", "stop_lat": 49.002260530071794, "code_postal": "95680", "stop_lon": 2.3858924717103553, "coord": [49.002260530071794, 2.3858924717103553], "stop_id": 4008126, "stop_desc": "AVENUE DES ERABLES - 95680", "stop_name": "AVENUE DES ERABLES"}, "geometry": {"type": "Point", "coordinates": [2.3858924717103553, 49.002260530071794]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "22bb273d983f049dec9d7baec1dbd9c83878b43d", "fields": {"departement": "95", "stop_lat": 49.005072462594306, "code_postal": "95680", "stop_lon": 2.3877937465177923, "coord": [49.005072462594306, 2.3877937465177923], "stop_id": 4008128, "stop_desc": "RUE FAIDHERBE - 95680", "stop_name": "LA CERISAIE"}, "geometry": {"type": "Point", "coordinates": [2.3877937465177923, 49.005072462594306]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1b10fab804cb1c5fb0818fd4eaa7e5ec801329ee", "fields": {"departement": "95", "stop_lat": 49.003865878544815, "code_postal": "95680", "stop_lon": 2.3932151465090756, "coord": [49.003865878544815, 2.3932151465090756], "stop_id": 4008130, "stop_desc": "BOULEVARD SALVADOR ALLENDE - 95680", "stop_name": "PLACE DE LA TOLINETTE"}, "geometry": {"type": "Point", "coordinates": [2.3932151465090756, 49.003865878544815]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "38ed366202d4d01c6c78b35cac6b203e2f62cee2", "fields": {"departement": "95", "stop_lat": 49.00415179260462, "code_postal": "95680", "stop_lon": 2.3966301973787623, "coord": [49.00415179260462, 2.3966301973787623], "stop_id": 4008132, "stop_desc": "RUE JEAN BULLANT - 95680", "stop_name": "JEAN BULLANT"}, "geometry": {"type": "Point", "coordinates": [2.3966301973787623, 49.00415179260462]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5f17c0f9f39f1cc69f7684b37dbdce092816dcf8", "fields": {"departement": "75", "stop_lat": 48.87369358750886, "code_postal": "75108", "stop_lon": 2.313861258840092, "coord": [48.87369358750886, 2.313861258840092], "stop_id": 4008213, "stop_desc": "44 RUE LA BOETIE - 75108", "stop_name": "LA BOETIE - PERCIER"}, "geometry": {"type": "Point", "coordinates": [2.313861258840092, 48.87369358750886]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "965776ffa08a28e49450a86c1be25f41bf7c14b6", "fields": {"departement": "75", "stop_lat": 48.8749496829563, "code_postal": "75108", "stop_lon": 2.304786494112315, "coord": [48.8749496829563, 2.304786494112315], "stop_id": 4008218, "stop_desc": "6 AVENUE DE FRIEDLAND - 75108", "stop_name": "FRIEDLAND - HAUSSMANN"}, "geometry": {"type": "Point", "coordinates": [2.304786494112315, 48.8749496829563]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b92d9c2bfffec2be1267e1eb6e265c57596ddb69", "fields": {"departement": "75", "stop_lat": 48.87139441806429, "code_postal": "75116", "stop_lon": 2.2891756294490975, "coord": [48.87139441806429, 2.2891756294490975], "stop_id": 4008226, "stop_desc": "44 AVENUE VICTOR HUGO - 75116", "stop_name": "VICTOR HUGO - PAUL VALERY"}, "geometry": {"type": "Point", "coordinates": [2.2891756294490975, 48.87139441806429]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9e687194fdec64506751490f2cc4226f06b149f0", "fields": {"departement": "75", "stop_lat": 48.86727440606912, "code_postal": "75116", "stop_lon": 2.2805152804475335, "coord": [48.86727440606912, 2.2805152804475335], "stop_id": 4008231, "stop_desc": "141 RUE DE LA POMPE - 75116", "stop_name": "PLACE JEAN MONNET"}, "geometry": {"type": "Point", "coordinates": [2.2805152804475335, 48.86727440606912]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "42d58a37c1352e4ede6e11c2d4e1820438ccfdf9", "fields": {"departement": "75", "stop_lat": 48.867966926962794, "code_postal": "75116", "stop_lon": 2.2815635005826227, "coord": [48.867966926962794, 2.2815635005826227], "stop_id": 4008232, "stop_desc": "125 AVENUE VICTOR HUGO - 75116", "stop_name": "PLACE JEAN MONNET"}, "geometry": {"type": "Point", "coordinates": [2.2815635005826227, 48.867966926962794]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3b0fb9995ab0f4a12fa5079c2c1235b86febd310", "fields": {"departement": "75", "stop_lat": 48.85627988445956, "code_postal": "75116", "stop_lon": 2.2746570793269227, "coord": [48.85627988445956, 2.2746570793269227], "stop_id": 4008241, "stop_desc": "47 RUE DE BOULAINVILLIERS - 75116", "stop_name": "LES VIGNES - BOULAINVILLIERS RER"}, "geometry": {"type": "Point", "coordinates": [2.2746570793269227, 48.85627988445956]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "454fb9594572cec13d91c8cff7bbeddacfcd2ad0", "fields": {"departement": "75", "stop_lat": 48.8496974991679, "code_postal": "75116", "stop_lon": 2.2682099518666563, "coord": [48.8496974991679, 2.2682099518666563], "stop_id": 4008244, "stop_desc": "92 RUE LA FONTAINE - 75116", "stop_name": "GEORGE SAND - LA FONTAINE"}, "geometry": {"type": "Point", "coordinates": [2.2682099518666563, 48.8496974991679]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "37161c171d476bd96748fd1339f3245bf5981d4c", "fields": {"departement": "94", "stop_lat": 48.8103316422497, "code_postal": "94017", "stop_lon": 2.545293432999597, "coord": [48.8103316422497, 2.545293432999597], "stop_id": 3743454, "stop_desc": "13 R DE L'ABREUVOIR - 94017", "stop_name": "ROND-POINT DU CHATEAU"}, "geometry": {"type": "Point", "coordinates": [2.545293432999597, 48.8103316422497]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bc19f75b8f794e36baf045260bd9f47495b97f36", "fields": {"departement": "93", "stop_lat": 48.92701752331649, "code_postal": "93027", "stop_lon": 2.380598215065691, "coord": [48.92701752331649, 2.380598215065691], "stop_id": 3741088, "stop_desc": "FACE 26 RUE SAINT-JUST - 93027", "stop_name": "LANGEVIN - WALLON"}, "geometry": {"type": "Point", "coordinates": [2.380598215065691, 48.92701752331649]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0c8686ef9fb029c0e975070ad564ccfbb45de48f", "fields": {"departement": "93", "stop_lat": 48.926119856740286, "code_postal": "93027", "stop_lon": 2.3776788496006587, "coord": [48.926119856740286, 2.3776788496006587], "stop_id": 3741086, "stop_desc": "AVENUE DU GENERAL LECLERC - 93027", "stop_name": "GENEVE"}, "geometry": {"type": "Point", "coordinates": [2.3776788496006587, 48.926119856740286]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b2ea2d730fb93cea47a28d58067c626730c1c635", "fields": {"departement": "75", "stop_lat": 48.88305130198795, "code_postal": "75109", "stop_lon": 2.34616677318254, "coord": [48.88305130198795, 2.34616677318254], "stop_id": 3740338, "stop_desc": "21 BOULEVARD DE ROCHECHOUART - 75109", "stop_name": "ROCHECHOUART - CLIGNANCOURT"}, "geometry": {"type": "Point", "coordinates": [2.34616677318254, 48.88305130198795]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1e7ae53c3de3e617044fb86cce7b953b05c15a4e", "fields": {"departement": "93", "stop_lat": 48.956214648833715, "code_postal": "93072", "stop_lon": 2.3832700493319843, "coord": [48.956214648833715, 2.3832700493319843], "stop_id": 3740983, "stop_desc": "FACE 5 AVENUE MARCEL CACHIN - 93072", "stop_name": "MAIRIE DE STAINS"}, "geometry": {"type": "Point", "coordinates": [2.3832700493319843, 48.956214648833715]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5be6fd3db318e673f9144cedeee48cd7c1042943", "fields": {"departement": "75", "stop_lat": 48.858041846617304, "code_postal": "75116", "stop_lon": 2.275472181721968, "coord": [48.858041846617304, 2.275472181721968], "stop_id": 3740551, "stop_desc": "95-97 RUE DE PASSY - 75116", "stop_name": "PASSY - BOULAINVILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.275472181721968, 48.858041846617304]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d59bcfa4e6e0e487ac0d684d6d1a70282736dde1", "fields": {"departement": "93", "stop_lat": 48.9546688790513, "code_postal": "93072", "stop_lon": 2.383418780134514, "coord": [48.9546688790513, 2.383418780134514], "stop_id": 3740984, "stop_desc": "FACE 5 BOULEVARD MAXIME GORKI - 93072", "stop_name": "MAIRIE DE STAINS"}, "geometry": {"type": "Point", "coordinates": [2.383418780134514, 48.9546688790513]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c92ba82594cd728f8ed0c0a37bf3b411e4b04aa8", "fields": {"departement": "95", "stop_lat": 48.967318565198234, "code_postal": "95268", "stop_lon": 2.3917834012672485, "coord": [48.967318565198234, 2.3917834012672485], "stop_id": 3740992, "stop_desc": "72 RUE PAUL VAILLANT COUTURIER - 95268", "stop_name": "PIERRE SEMARD"}, "geometry": {"type": "Point", "coordinates": [2.3917834012672485, 48.967318565198234]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cbe33499b1ac698c6a6395d21c2edfe2a6c9c03f", "fields": {"departement": "75", "stop_lat": 48.87310957780222, "code_postal": "75108", "stop_lon": 2.314719861927881, "coord": [48.87310957780222, 2.314719861927881], "stop_id": 3740557, "stop_desc": "6 AV DELCASSE - 75108", "stop_name": "MATIGNON - SAINT-HONORE"}, "geometry": {"type": "Point", "coordinates": [2.314719861927881, 48.87310957780222]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f0e0ef50db591a343e89da22d7956d172528f529", "fields": {"departement": "75", "stop_lat": 48.85785426202155, "code_postal": "75116", "stop_lon": 2.2777333972036553, "coord": [48.85785426202155, 2.2777333972036553], "stop_id": 3740552, "stop_desc": "FACE 64 PLACE DE PASSY - 75116", "stop_name": "PLACE DE PASSY"}, "geometry": {"type": "Point", "coordinates": [2.2777333972036553, 48.85785426202155]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c7380470c3eb5409c511b0151379e127eb71d088", "fields": {"departement": "93", "stop_lat": 48.96254996245579, "code_postal": "93072", "stop_lon": 2.3840126733930727, "coord": [48.96254996245579, 2.3840126733930727], "stop_id": 3740988, "stop_desc": "31 AVENUE JULES GUESDE - 93072", "stop_name": "LEO LAGRANGE"}, "geometry": {"type": "Point", "coordinates": [2.3840126733930727, 48.96254996245579]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d444daabaa191c9f7469820aa20013a6353d1a2d", "fields": {"departement": "93", "stop_lat": 48.941474563908756, "code_postal": "93027", "stop_lon": 2.387758950668094, "coord": [48.941474563908756, 2.387758950668094], "stop_id": 3740976, "stop_desc": "AV ROGER SALENGRO - 93027", "stop_name": "CITE FLOREAL"}, "geometry": {"type": "Point", "coordinates": [2.387758950668094, 48.941474563908756]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "af8d40ec28216c5714a70b079c1dd5660898259b", "fields": {"departement": "75", "stop_lat": 48.85773866448645, "code_postal": "75116", "stop_lon": 2.2802669248647565, "coord": [48.85773866448645, 2.2802669248647565], "stop_id": 3740553, "stop_desc": "51 RUE DE PASSY - 75116", "stop_name": "JEAN BOLOGNE"}, "geometry": {"type": "Point", "coordinates": [2.2802669248647565, 48.85773866448645]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2fb42cd099912dfe337b151bcea395dfdda7b5c0", "fields": {"departement": "93", "stop_lat": 48.918413404869824, "code_postal": "93066", "stop_lon": 2.3616773917397325, "coord": [48.918413404869824, 2.3616773917397325], "stop_id": 3741082, "stop_desc": "AVENUE DU STADE DE FRANCE - 93066", "stop_name": "LA PLAINE - STADE DE FRANCE RER"}, "geometry": {"type": "Point", "coordinates": [2.3616773917397325, 48.918413404869824]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b3127784f8cd5ffb8e02ba5534649f6c980900ca", "fields": {"departement": "93", "stop_lat": 48.91835942402279, "code_postal": "93066", "stop_lon": 2.361963729420021, "coord": [48.91835942402279, 2.361963729420021], "stop_id": 3741081, "stop_desc": "AVENUE DU STADE DE FRANCE - 93066", "stop_name": "LA PLAINE - STADE DE FRANCE RER"}, "geometry": {"type": "Point", "coordinates": [2.361963729420021, 48.91835942402279]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "719219615f79cfd3d66c768a82627014a4bc5038", "fields": {"departement": "93", "stop_lat": 48.92285102889927, "code_postal": "93066", "stop_lon": 2.3697801725532712, "coord": [48.92285102889927, 2.3697801725532712], "stop_id": 3741083, "stop_desc": "48 AVENUE FRANCIS DE PRESSENSE - 93066", "stop_name": "BERGERIES - FRANC MOISIN"}, "geometry": {"type": "Point", "coordinates": [2.3697801725532712, 48.92285102889927]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "40f50a0eeb925a7e2a25d766359ec0d2f6e0ef1d", "fields": {"departement": "75", "stop_lat": 48.898022303141815, "code_postal": "75118", "stop_lon": 2.358982476552703, "coord": [48.898022303141815, 2.358982476552703], "stop_id": 3740975, "stop_desc": "91/93 RUE DE LA CHAPELLE - 75118", "stop_name": "PORTE DE LA CHAPELLE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.358982476552703, 48.898022303141815]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "321d117065a5799dd4ffd282ae31f1cc404dcf1f", "fields": {"departement": "75", "stop_lat": 48.88180050254322, "code_postal": "75110", "stop_lon": 2.3585668751343, "coord": [48.88180050254322, 2.3585668751343], "stop_id": 3741054, "stop_desc": "FACE 191 RUE DU FAUBOURG SAINT-DENIS - 75110", "stop_name": "CAIL - DEMARQUAY"}, "geometry": {"type": "Point", "coordinates": [2.3585668751343, 48.88180050254322]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "15ab71a57a1c5ad3c2942c3644f88e1946aba65e", "fields": {"departement": "93", "stop_lat": 48.941582600962306, "code_postal": "93066", "stop_lon": 2.3872952124781888, "coord": [48.941582600962306, 2.3872952124781888], "stop_id": 3741003, "stop_desc": "8-10 AVENUE ROGER SALENGRO - 93066", "stop_name": "CITE FLOREAL"}, "geometry": {"type": "Point", "coordinates": [2.3872952124781888, 48.941582600962306]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d42377374162d0053094066a108590a58cfb1b98", "fields": {"departement": "95", "stop_lat": 48.96916009704261, "code_postal": "95268", "stop_lon": 2.393341410920145, "coord": [48.96916009704261, 2.393341410920145], "stop_id": 3740993, "stop_desc": "21 AVENUE PAUL VAILLANT COUTURIER - 95268", "stop_name": "BELLEVUE"}, "geometry": {"type": "Point", "coordinates": [2.393341410920145, 48.96916009704261]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9be592bbf798b146eeb63fb80825ce23333c46f3", "fields": {"departement": "93", "stop_lat": 48.90591315073584, "code_postal": "93066", "stop_lon": 2.3580042051464107, "coord": [48.90591315073584, 2.3580042051464107], "stop_id": 3741074, "stop_desc": "89 AVENUE DU PRESIDENT WILSON - 93066", "stop_name": "PROUDHON"}, "geometry": {"type": "Point", "coordinates": [2.3580042051464107, 48.90591315073584]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5ceaa883dee0ef840c4d9ab65f347b9c9df856ad", "fields": {"departement": "95", "stop_lat": 48.971522595422556, "code_postal": "95268", "stop_lon": 2.3953778742083647, "coord": [48.971522595422556, 2.3953778742083647], "stop_id": 3740996, "stop_desc": "AVENUE FRANCOIS MITTERRAND - 95268", "stop_name": "PLEIN MIDI"}, "geometry": {"type": "Point", "coordinates": [2.3953778742083647, 48.971522595422556]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aaacf44b6681f31671294cb81d2372e0204f8154", "fields": {"departement": "75", "stop_lat": 48.88206125025161, "code_postal": "75110", "stop_lon": 2.3578992695947516, "coord": [48.88206125025161, 2.3578992695947516], "stop_id": 3741051, "stop_desc": "PISTE GARE ROUTIERE - 75110", "stop_name": "GARE DU NORD"}, "geometry": {"type": "Point", "coordinates": [2.3578992695947516, 48.88206125025161]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ae24fd201e90fadc6d0fc3be3bce9d01ef7696ae", "fields": {"departement": "94", "stop_lat": 48.835586810055226, "code_postal": "94067", "stop_lon": 2.4207257144278818, "coord": [48.835586810055226, 2.4207257144278818], "stop_id": 3748079, "stop_desc": "FACE 75 RUE JEANNE D'ARC - 94067", "stop_name": "SAINT-MANDE - DEMI LUNE - PARC ZOOLOGIQUE"}, "geometry": {"type": "Point", "coordinates": [2.4207257144278818, 48.835586810055226]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a56b51fa9402db04bd4154bfe99fbe4700ecd190", "fields": {"departement": "94", "stop_lat": 48.84336303178212, "code_postal": "94067", "stop_lon": 2.417851500327602, "coord": [48.84336303178212, 2.417851500327602], "stop_id": 3748074, "stop_desc": "FACE 38 AVENUE DU GENERAL DE GAULLE - 94067", "stop_name": "MAIRIE DE SAINT-MANDE"}, "geometry": {"type": "Point", "coordinates": [2.417851500327602, 48.84336303178212]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6f64fc712380e890e20ed2c456be22aefb1b5bd1", "fields": {"departement": "94", "stop_lat": 48.839884992931076, "code_postal": "94067", "stop_lon": 2.4176418613671933, "coord": [48.839884992931076, 2.4176418613671933], "stop_id": 3748076, "stop_desc": "61 AVENUE DU GENERAL DE GAULLE - 94067", "stop_name": "EGLISE DE SAINT-MANDE"}, "geometry": {"type": "Point", "coordinates": [2.4176418613671933, 48.839884992931076]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "08df40f146bc581c81c53e716e0f4fa399d45eab", "fields": {"departement": "75", "stop_lat": 48.85001323471419, "code_postal": "75111", "stop_lon": 2.385695229978222, "coord": [48.85001323471419, 2.385695229978222], "stop_id": 3748089, "stop_desc": "241 RUE DU FAUBOURG SAINT ANTOINE - 75111", "stop_name": "FAIDHERBE - CHALIGNY"}, "geometry": {"type": "Point", "coordinates": [2.385695229978222, 48.85001323471419]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "00308bbda28517996b53169d2f124b7b63c2a1f8", "fields": {"departement": "94", "stop_lat": 48.841044514864755, "code_postal": "94067", "stop_lon": 2.41745303371327, "coord": [48.841044514864755, 2.41745303371327], "stop_id": 3748075, "stop_desc": "70 AVENUE DU GENERAL DE GAULLE - 94067", "stop_name": "EGLISE DE SAINT-MANDE"}, "geometry": {"type": "Point", "coordinates": [2.41745303371327, 48.841044514864755]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5fdbdadee7b84237a292c661136cfe4966e6c2ea", "fields": {"departement": "75", "stop_lat": 48.848245981367015, "code_postal": "75111", "stop_lon": 2.398126731810536, "coord": [48.848245981367015, 2.398126731810536], "stop_id": 3748084, "stop_desc": "3 AVENUE DU TRONE - 75111", "stop_name": "NATION - PLACE DES ANTILLES"}, "geometry": {"type": "Point", "coordinates": [2.398126731810536, 48.848245981367015]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f794f159363bb835ba71e992faa9ef355f4e1ae3", "fields": {"departement": "75", "stop_lat": 48.87677297339352, "code_postal": "75108", "stop_lon": 2.300874862043233, "coord": [48.87677297339352, 2.300874862043233], "stop_id": 3749701, "stop_desc": "201-203 RUE DU FAUBOURG SAINT HONORE - 75108", "stop_name": "HOCHE - SAINT-HONORE"}, "geometry": {"type": "Point", "coordinates": [2.300874862043233, 48.87677297339352]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "56ad46500a47d37db25ce1cc353e654bf4ae5bb0", "fields": {"departement": "92", "stop_lat": 48.8859847711673, "code_postal": "92051", "stop_lon": 2.2621517454852405, "coord": [48.8859847711673, 2.2621517454852405], "stop_id": 3749719, "stop_desc": "209 AVENUE ACHILLE PERETTI OU DU ROULE - 92051", "stop_name": "GENERAL GOURAUD"}, "geometry": {"type": "Point", "coordinates": [2.2621517454852405, 48.8859847711673]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "740587ef5adb0e70fd926311224c963db6386546", "fields": {"departement": "92", "stop_lat": 48.88097471259445, "code_postal": "92051", "stop_lon": 2.255809049565702, "coord": [48.88097471259445, 2.255809049565702], "stop_id": 3749725, "stop_desc": "7-9 RUE DELABORDERE - 92051", "stop_name": "RUE DU BOIS DE BOULOGNE"}, "geometry": {"type": "Point", "coordinates": [2.255809049565702, 48.88097471259445]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "668c0d1518a31300654061082f40f90ec206cdec", "fields": {"departement": "75", "stop_lat": 48.87493294387232, "code_postal": "75108", "stop_lon": 2.3096914749426154, "coord": [48.87493294387232, 2.3096914749426154], "stop_id": 3749697, "stop_desc": "153 BOULEVARD HAUSSMANN - 75108", "stop_name": "HAUSSMANN - COURCELLES"}, "geometry": {"type": "Point", "coordinates": [2.3096914749426154, 48.87493294387232]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "440e54a086eacb7e002542292bd0e908187d6c74", "fields": {"departement": "75", "stop_lat": 48.874863096583965, "code_postal": "75108", "stop_lon": 2.3207958046274593, "coord": [48.874863096583965, 2.3207958046274593], "stop_id": 3749693, "stop_desc": "FACE 24 RUE DE LA PEPINIERE - 75108", "stop_name": "SAINT-AUGUSTIN"}, "geometry": {"type": "Point", "coordinates": [2.3207958046274593, 48.874863096583965]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "00b1f3fe20068a177d8cee0724b87dd86231b01e", "fields": {"departement": "92", "stop_lat": 48.87715821449779, "code_postal": "92051", "stop_lon": 2.2475988630252983, "coord": [48.87715821449779, 2.2475988630252983], "stop_id": 3749730, "stop_desc": "135-139 BOULEVARD DU GENERAL KOENIG - 92051", "stop_name": "BAGATELLE"}, "geometry": {"type": "Point", "coordinates": [2.2475988630252983, 48.87715821449779]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "825eab6a5632aca959975147818702a82f37bc75", "fields": {"departement": "92", "stop_lat": 48.885183911088326, "code_postal": "92051", "stop_lon": 2.2605857298276946, "coord": [48.885183911088326, 2.2605857298276946], "stop_id": 3749720, "stop_desc": "3 RUE DU CHATEAU - 92051", "stop_name": "PONT DE NEUILLY"}, "geometry": {"type": "Point", "coordinates": [2.2605857298276946, 48.885183911088326]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "324d090f7e57f681467037fd6dbd113d58f84d59", "fields": {"departement": "92", "stop_lat": 48.88122845626599, "code_postal": "92051", "stop_lon": 2.2589427639085233, "coord": [48.88122845626599, 2.2589427639085233], "stop_id": 3749723, "stop_desc": "21 AVENUE DE MADRID - 92051", "stop_name": "MAURICE BARRES"}, "geometry": {"type": "Point", "coordinates": [2.2589427639085233, 48.88122845626599]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fadd76c0f697b1f4c48235852d2d2c3dd31ec7f8", "fields": {"departement": "92", "stop_lat": 48.88527398449147, "code_postal": "92051", "stop_lon": 2.260899032348932, "coord": [48.88527398449147, 2.260899032348932], "stop_id": 3749721, "stop_desc": "2-4 RUE DU CHATEAU - 92051", "stop_name": "PONT DE NEUILLY"}, "geometry": {"type": "Point", "coordinates": [2.260899032348932, 48.88527398449147]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "668e4dad8b1ceede355881e659828472be2b6459", "fields": {"departement": "75", "stop_lat": 48.87640991415704, "code_postal": "75109", "stop_lon": 2.331613805742387, "coord": [48.87640991415704, 2.331613805742387], "stop_id": 3749686, "stop_desc": "PLACE D'ESTIENNE D'ORVES - 75109", "stop_name": "TRINITE"}, "geometry": {"type": "Point", "coordinates": [2.331613805742387, 48.87640991415704]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "960c2a14ff20c0721219800b47f2826b1d16c2f5", "fields": {"departement": "75", "stop_lat": 48.84898813585947, "code_postal": "75105", "stop_lon": 2.3554484654153858, "coord": [48.84898813585947, 2.3554484654153858], "stop_id": 3748095, "stop_desc": "6 RUE DES FOSSES SAINT-BERNARD - 75105", "stop_name": "INSTITUT DU MONDE ARABE"}, "geometry": {"type": "Point", "coordinates": [2.3554484654153858, 48.84898813585947]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "32393c5586eeda4eb3966e54085e8702bacfe1a1", "fields": {"departement": "75", "stop_lat": 48.87602359181986, "code_postal": "75109", "stop_lon": 2.336505295756201, "coord": [48.87602359181986, 2.336505295756201], "stop_id": 3749685, "stop_desc": "31-33 RUE DE CHATEAUDUN - 75109", "stop_name": "SAINT-GEORGES - CHATEAUDUN"}, "geometry": {"type": "Point", "coordinates": [2.336505295756201, 48.87602359181986]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a911c49d989caf4c7d4d9547a788e0019f614579", "fields": {"departement": "75", "stop_lat": 48.88652961837156, "code_postal": "75118", "stop_lon": 2.3414384674532873, "coord": [48.88652961837156, 2.3414384674532873], "stop_id": 3749651, "stop_desc": "2 RUE SAINT ELEUTHERE - 75118", "stop_name": "PLACE DU TERTRE - NORVINS"}, "geometry": {"type": "Point", "coordinates": [2.3414384674532873, 48.88652961837156]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e4d564f8a9d60021b55a39acd40db8bf2d92b981", "fields": {"departement": "75", "stop_lat": 48.889567355855185, "code_postal": "75118", "stop_lon": 2.338821990099936, "coord": [48.889567355855185, 2.338821990099936], "stop_id": 3749645, "stop_desc": "100-102 RUE CAULAINCOURT - 75118", "stop_name": "LAMARCK - CAULAINCOURT"}, "geometry": {"type": "Point", "coordinates": [2.338821990099936, 48.889567355855185]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "882de0454b4c1c391718f6ecc8debee2b95eb9fe", "fields": {"departement": "75", "stop_lat": 48.88952238824971, "code_postal": "75118", "stop_lon": 2.3404165527108622, "coord": [48.88952238824971, 2.3404165527108622], "stop_id": 3749644, "stop_desc": "45 RUE LAMARCK - 75118", "stop_name": "LAMARCK - CAULAINCOURT"}, "geometry": {"type": "Point", "coordinates": [2.3404165527108622, 48.88952238824971]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "429f1b5ac19776ab69dfcc9ed1e39a13e36fa612", "fields": {"departement": "75", "stop_lat": 48.889099909915785, "code_postal": "75118", "stop_lon": 2.3426516240229285, "coord": [48.889099909915785, 2.3426516240229285], "stop_id": 3749646, "stop_desc": "31 RUE LAMARCK - 75118", "stop_name": "LAMARCK - MONT CENIS"}, "geometry": {"type": "Point", "coordinates": [2.3426516240229285, 48.889099909915785]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e6a67160ddb036536eaf5a01e090baba86b2c510", "fields": {"departement": "75", "stop_lat": 48.88836289101116, "code_postal": "75118", "stop_lon": 2.3440007635213433, "coord": [48.88836289101116, 2.3440007635213433], "stop_id": 3749647, "stop_desc": "23 RUE LAMARCK - 75118", "stop_name": "LAMARCK - BECQUEREL"}, "geometry": {"type": "Point", "coordinates": [2.3440007635213433, 48.88836289101116]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ac11a52dc10a0a975580d5b9886fd2f61ab382aa", "fields": {"departement": "75", "stop_lat": 48.887796858313614, "code_postal": "75118", "stop_lon": 2.339925828674067, "coord": [48.887796858313614, 2.339925828674067], "stop_id": 3749654, "stop_desc": "22 RUE CORTOT - 75118", "stop_name": "SAULES - CORTOT"}, "geometry": {"type": "Point", "coordinates": [2.339925828674067, 48.887796858313614]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1369553c09ce48c356b0c25473384a75f451bb51", "fields": {"departement": "75", "stop_lat": 48.887293601561886, "code_postal": "75118", "stop_lon": 2.336382479605373, "coord": [48.887293601561886, 2.336382479605373], "stop_id": 3749670, "stop_desc": "88 RUE LEPIC - 75118", "stop_name": "N0 88 RUE LEPIC"}, "geometry": {"type": "Point", "coordinates": [2.336382479605373, 48.887293601561886]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5353cd6c187297a90dce5dc148dbbb5c66127452", "fields": {"departement": "75", "stop_lat": 48.88558598879218, "code_postal": "75118", "stop_lon": 2.34053896194982, "coord": [48.88558598879218, 2.34053896194982], "stop_id": 3749658, "stop_desc": "5 R DREVET - 75118", "stop_name": "DREVET"}, "geometry": {"type": "Point", "coordinates": [2.34053896194982, 48.88558598879218]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "00b9821252c707a2f46de43456830418645fd1ca", "fields": {"departement": "75", "stop_lat": 48.87388449426836, "code_postal": "75109", "stop_lon": 2.342663664424022, "coord": [48.87388449426836, 2.342663664424022], "stop_id": 3749786, "stop_desc": "30 RUE DU FAUBOURG MONTMARTRE - 75109", "stop_name": "PROVENCE - FAUBOURG MONTMARTRE"}, "geometry": {"type": "Point", "coordinates": [2.342663664424022, 48.87388449426836]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8781f9a01a59e535e3144bc2b968d1569682fc0e", "fields": {"departement": "75", "stop_lat": 48.87009195431089, "code_postal": "75102", "stop_lon": 2.339053002863979, "coord": [48.87009195431089, 2.339053002863979], "stop_id": 3749777, "stop_desc": "87 RUE DE RICHELIEU - 75102", "stop_name": "RICHELIEU - 4 SEPTEMBRE"}, "geometry": {"type": "Point", "coordinates": [2.339053002863979, 48.87009195431089]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d3ca37311c9a0117556527d689eb5dabbc13c70f", "fields": {"departement": "75", "stop_lat": 48.88082998036255, "code_postal": "75110", "stop_lon": 2.3579941644875797, "coord": [48.88082998036255, 2.3579941644875797], "stop_id": 3749768, "stop_desc": "184 RUE DU FAUBOURG SAINT-DENIS - 75110", "stop_name": "GARE DU NORD"}, "geometry": {"type": "Point", "coordinates": [2.3579941644875797, 48.88082998036255]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e0a4bd47435ead250fd1df23a44bc54e6ddbe598", "fields": {"departement": "75", "stop_lat": 48.86862686808374, "code_postal": "75102", "stop_lon": 2.343494134664324, "coord": [48.86862686808374, 2.343494134664324], "stop_id": 3749784, "stop_desc": "140 RUE MONTMARTRE - 75102", "stop_name": "REAUMUR - MONTMARTRE"}, "geometry": {"type": "Point", "coordinates": [2.343494134664324, 48.86862686808374]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2d8641498fb431fc531ffde3b5af74d8979bc347", "fields": {"departement": "75", "stop_lat": 48.87066702165196, "code_postal": "75102", "stop_lon": 2.342935804602398, "coord": [48.87066702165196, 2.342935804602398], "stop_id": 3749785, "stop_desc": "170 RUE MONTMARTRE - 75102", "stop_name": "GRANDS BOULEVARDS"}, "geometry": {"type": "Point", "coordinates": [2.342935804602398, 48.87066702165196]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "830ff1a91bcca69b502ce6da8ab2d67f9c77e298", "fields": {"departement": "75", "stop_lat": 48.875592054625365, "code_postal": "75109", "stop_lon": 2.343222471307978, "coord": [48.875592054625365, 2.343222471307978], "stop_id": 3749787, "stop_desc": "64 RUE LA FAYETTE - 75109", "stop_name": "CADET"}, "geometry": {"type": "Point", "coordinates": [2.343222471307978, 48.875592054625365]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fe961a97bf766170a05ea9f738d3fe4b47e68842", "fields": {"departement": "75", "stop_lat": 48.85129282244773, "code_postal": "75111", "stop_lon": 2.3765582711793267, "coord": [48.85129282244773, 2.3765582711793267], "stop_id": 3748091, "stop_desc": "111-113 RUE DU FAUBOURG SAINT-ANTOINE - 75111", "stop_name": "LEDRU ROLLIN - FAUBOURG SAINT-ANTOINE"}, "geometry": {"type": "Point", "coordinates": [2.3765582711793267, 48.85129282244773]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b91ab46283a6ffb541d0f932e2f9614cb9ff27fc", "fields": {"departement": "92", "stop_lat": 48.88181549687107, "code_postal": "92051", "stop_lon": 2.2797498948444104, "coord": [48.88181549687107, 2.2797498948444104], "stop_id": 3749733, "stop_desc": "37-35 AVENUE ACHILLE PERETTI OU DU ROULE - 92051", "stop_name": "MONTROSIER - PARMENTIER"}, "geometry": {"type": "Point", "coordinates": [2.2797498948444104, 48.88181549687107]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f5502cffdcf46c01709bfa5ea2ed4de010b730c0", "fields": {"departement": "75", "stop_lat": 48.877134298853896, "code_postal": "75120", "stop_lon": 2.4091564305240936, "coord": [48.877134298853896, 2.4091564305240936], "stop_id": 3749739, "stop_desc": "GARE ROUTIERE SUR DALLE DU BD PERIPHERIQUE - 75120", "stop_name": "PORTE DES LILAS"}, "geometry": {"type": "Point", "coordinates": [2.4091564305240936, 48.877134298853896]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5624d8ded15ae4f5b05688cd9fc86f08d748c886", "fields": {"departement": "92", "stop_lat": 48.87715821449779, "code_postal": "92051", "stop_lon": 2.2475988630252983, "coord": [48.87715821449779, 2.2475988630252983], "stop_id": 3749731, "stop_desc": "135-139 BOULEVARD DU GENERAL KOENIG - 92051", "stop_name": "BAGATELLE"}, "geometry": {"type": "Point", "coordinates": [2.2475988630252983, 48.87715821449779]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4b933a0fc9f4d39c288ed4248e1059a02f47e931", "fields": {"departement": "75", "stop_lat": 48.88154129778317, "code_postal": "75119", "stop_lon": 2.403575613138969, "coord": [48.88154129778317, 2.403575613138969], "stop_id": 3749745, "stop_desc": "AVENUE ALEXANDER FLEMING - 75119", "stop_name": "LES MARRONNIERS"}, "geometry": {"type": "Point", "coordinates": [2.403575613138969, 48.88154129778317]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8d12e5de880b51569c239b78eea1d139365db755", "fields": {"departement": "75", "stop_lat": 48.87871842290168, "code_postal": "75110", "stop_lon": 2.3552272595494315, "coord": [48.87871842290168, 2.3552272595494315], "stop_id": 3749738, "stop_desc": "142 RUE LA FAYETTE - 75110", "stop_name": "LA FAYETTE - MAGENTA"}, "geometry": {"type": "Point", "coordinates": [2.3552272595494315, 48.87871842290168]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b3ff2cbc3bce184ab11580461191a1efd6f6d260", "fields": {"departement": "75", "stop_lat": 48.87856856330758, "code_postal": "75119", "stop_lon": 2.3997838162611966, "coord": [48.87856856330758, 2.3997838162611966], "stop_id": 3749749, "stop_desc": "39-41 RUE DES BOIS - 75119", "stop_name": "RUE DES BOIS"}, "geometry": {"type": "Point", "coordinates": [2.3997838162611966, 48.87856856330758]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e621e7d306742bb3f6343888774feebad549351d", "fields": {"departement": "75", "stop_lat": 48.88292996267457, "code_postal": "75119", "stop_lon": 2.3712132136426027, "coord": [48.88292996267457, 2.3712132136426027], "stop_id": 3749761, "stop_desc": "6-8 AVENUE JEAN JAURES - 75119", "stop_name": "JAURES"}, "geometry": {"type": "Point", "coordinates": [2.3712132136426027, 48.88292996267457]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0f55642dab8077679fc920cc51c035d9ab39eab2", "fields": {"departement": "75", "stop_lat": 48.87850944209554, "code_postal": "75119", "stop_lon": 2.4090084533331813, "coord": [48.87850944209554, 2.4090084533331813], "stop_id": 3749742, "stop_desc": "AVENUE RENE FONCK - 75119", "stop_name": "RENE FONCK"}, "geometry": {"type": "Point", "coordinates": [2.4090084533331813, 48.87850944209554]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "27bb79d3155a0c25781a67941a6f7b0c085d8873", "fields": {"departement": "75", "stop_lat": 48.87880601372367, "code_postal": "75119", "stop_lon": 2.4090224897684416, "coord": [48.87880601372367, 2.4090224897684416], "stop_id": 3749741, "stop_desc": "AVENUE RENE FONCK - 75119", "stop_name": "RENE FONCK"}, "geometry": {"type": "Point", "coordinates": [2.4090224897684416, 48.87880601372367]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0158b1f9b026c04172a7b070030ee05ebdb3b763", "fields": {"departement": "75", "stop_lat": 48.849432598691315, "code_postal": "75115", "stop_lon": 2.298510847884081, "coord": [48.849432598691315, 2.298510847884081], "stop_id": 3749893, "stop_desc": "63 AVENUE DE LA MOTTE PICQUET - 75115", "stop_name": "LA MOTTE PICQUET - GRENELLE"}, "geometry": {"type": "Point", "coordinates": [2.298510847884081, 48.849432598691315]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "80642173367898d2b34d19dd416d96e95d6789ea", "fields": {"departement": "75", "stop_lat": 48.88284442780483, "code_postal": "75108", "stop_lon": 2.326325831178574, "coord": [48.88284442780483, 2.326325831178574], "stop_id": 3749922, "stop_desc": "43-45 RUE DE SAINT PETERSBOURG - 75108", "stop_name": "PLACE DE CLICHY"}, "geometry": {"type": "Point", "coordinates": [2.326325831178574, 48.88284442780483]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ff10dd81422e2f95c7d5adf956e0f944d82fcab7", "fields": {"departement": "75", "stop_lat": 48.88419945995435, "code_postal": "75110", "stop_lon": 2.3618656809447813, "coord": [48.88419945995435, 2.3618656809447813], "stop_id": 3749792, "stop_desc": "19 BOULEVARD DE LA CHAPELLE - 75110", "stop_name": "PHILIPPE DE GIRARD"}, "geometry": {"type": "Point", "coordinates": [2.3618656809447813, 48.88419945995435]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "79a09639bf7fca717b40bd2130136ddef7385150", "fields": {"departement": "75", "stop_lat": 48.8590686921895, "code_postal": "75107", "stop_lon": 2.303597810066123, "coord": [48.8590686921895, 2.303597810066123], "stop_id": 3749900, "stop_desc": "31 AVENUE BOSQUET - 75107", "stop_name": "BOSQUET - SAINT-DOMINIQUE"}, "geometry": {"type": "Point", "coordinates": [2.303597810066123, 48.8590686921895]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b549dbb7eec965972a2111feba05d3a0376f5a6a", "fields": {"departement": "75", "stop_lat": 48.86518899758036, "code_postal": "75108", "stop_lon": 2.3032124118386377, "coord": [48.86518899758036, 2.3032124118386377], "stop_id": 3749904, "stop_desc": "FACE 5 AVENUE MONTAIGNE - 75108", "stop_name": "ALMA - MARCEAU"}, "geometry": {"type": "Point", "coordinates": [2.3032124118386377, 48.86518899758036]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9353d0f42124af452b5b93fe9d1249b1f66f9b36", "fields": {"departement": "75", "stop_lat": 48.87871842290168, "code_postal": "75110", "stop_lon": 2.3552272595494315, "coord": [48.87871842290168, 2.3552272595494315], "stop_id": 3749790, "stop_desc": "142 RUE LA FAYETTE - 75110", "stop_name": "LA FAYETTE - MAGENTA"}, "geometry": {"type": "Point", "coordinates": [2.3552272595494315, 48.87871842290168]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "142fb84fcdbe92bb1315e584c53766d6b925a413", "fields": {"departement": "75", "stop_lat": 48.87465646998024, "code_postal": "75108", "stop_lon": 2.3213953633663262, "coord": [48.87465646998024, 2.3213953633663262], "stop_id": 3749914, "stop_desc": "108 BOULEVARD HAUSSMANN - 75108", "stop_name": "SAINT-AUGUSTIN"}, "geometry": {"type": "Point", "coordinates": [2.3213953633663262, 48.87465646998024]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "51d204d3198e6124593848c005ee1248d731dc8c", "fields": {"departement": "75", "stop_lat": 48.838369035834674, "code_postal": "75115", "stop_lon": 2.2987641849521716, "coord": [48.838369035834674, 2.2987641849521716], "stop_id": 3749881, "stop_desc": "315 RUE DE VAUGIRARD - 75115", "stop_name": "ABBE GROULT"}, "geometry": {"type": "Point", "coordinates": [2.2987641849521716, 48.838369035834674]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "79efbbc8e21fa00bcda714f783fd1bd655fb5d7d", "fields": {"departement": "75", "stop_lat": 48.86158471268089, "code_postal": "75107", "stop_lon": 2.3020297149717073, "coord": [48.86158471268089, 2.3020297149717073], "stop_id": 3749903, "stop_desc": "2 AVENUE BOSQUET - 75107", "stop_name": "BOSQUET - RAPP"}, "geometry": {"type": "Point", "coordinates": [2.3020297149717073, 48.86158471268089]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2a9a39f5f51937f6bffd2622f2cc962f8804174d", "fields": {"departement": "92", "stop_lat": 48.89657982025513, "code_postal": "92044", "stop_lon": 2.297821332188748, "coord": [48.89657982025513, 2.297821332188748], "stop_id": 3749976, "stop_desc": "1 PLACE DU 8 MAI 1945 - 92044", "stop_name": "GARE DE CLICHY - LEVALLOIS"}, "geometry": {"type": "Point", "coordinates": [2.297821332188748, 48.89657982025513]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d25892b12207e358608419d416dab443563db278", "fields": {"departement": "75", "stop_lat": 48.89297327694298, "code_postal": "75118", "stop_lon": 2.3446555873981922, "coord": [48.89297327694298, 2.3446555873981922], "stop_id": 3749933, "stop_desc": "FACE 34 RUE HERMEL - 75118", "stop_name": "MAIRIE DU 18E - JULES JOFFRIN"}, "geometry": {"type": "Point", "coordinates": [2.3446555873981922, 48.89297327694298]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "12bad31694c5cc26ed00fdfeb0b474d2cbee5ad1", "fields": {"departement": "75", "stop_lat": 48.89072171815623, "code_postal": "75117", "stop_lon": 2.302745882952136, "coord": [48.89072171815623, 2.302745882952136], "stop_id": 3749978, "stop_desc": "9-11 AVENUE DE LA PORTE D'ASNIERES - 75117", "stop_name": "PORTE D'ASNIERES"}, "geometry": {"type": "Point", "coordinates": [2.302745882952136, 48.89072171815623]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d1b13ddb3f410bdcdaf46add217689901684764c", "fields": {"departement": "92", "stop_lat": 48.90826586918908, "code_postal": "92024", "stop_lon": 2.307560521898799, "coord": [48.90826586918908, 2.307560521898799], "stop_id": 3749971, "stop_desc": "BOULEVARD DU GENERAL LECLERC - 92024", "stop_name": "HOPITAL BEAUJON"}, "geometry": {"type": "Point", "coordinates": [2.307560521898799, 48.90826586918908]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5f767d61a24fab2bf7e0e31836e3bf9938bd2116", "fields": {"departement": "75", "stop_lat": 48.89787149246499, "code_postal": "75118", "stop_lon": 2.3357280163206116, "coord": [48.89787149246499, 2.3357280163206116], "stop_id": 3749949, "stop_desc": "150-152 BOULEVARD NEY - 75118", "stop_name": "PORTE DE MONTMARTRE"}, "geometry": {"type": "Point", "coordinates": [2.3357280163206116, 48.89787149246499]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d660d2142bff9043585fbe3388f8fb130387be24", "fields": {"departement": "75", "stop_lat": 48.874360141907104, "code_postal": "75108", "stop_lon": 2.3234255441926437, "coord": [48.874360141907104, 2.3234255441926437], "stop_id": 3749937, "stop_desc": "96 BOULEVARD HAUSSMANN - 75108", "stop_name": "PASQUIER - ANJOU"}, "geometry": {"type": "Point", "coordinates": [2.3234255441926437, 48.874360141907104]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e96eba0b1f16c253fee77c429fb697fcdee3159f", "fields": {"departement": "75", "stop_lat": 48.89765580116296, "code_postal": "75118", "stop_lon": 2.33571439177938, "coord": [48.89765580116296, 2.33571439177938], "stop_id": 3749950, "stop_desc": "101-103 BOULEVARD NEY - 75118", "stop_name": "PORTE DE MONTMARTRE"}, "geometry": {"type": "Point", "coordinates": [2.33571439177938, 48.89765580116296]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2f83db5ee02b5cbc1bbc2f8703c4106ad7a72e8b", "fields": {"departement": "75", "stop_lat": 48.88955836643477, "code_postal": "75118", "stop_lon": 2.3355238295818674, "coord": [48.88955836643477, 2.3355238295818674], "stop_id": 3749927, "stop_desc": "59 RUE CAULAINCOURT - 75118", "stop_name": "SQUARE CAULAINCOURT"}, "geometry": {"type": "Point", "coordinates": [2.3355238295818674, 48.88955836643477]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "43b9ce9965f097a03a12615544167b39dc29d84c", "fields": {"departement": "93", "stop_lat": 48.90110583577153, "code_postal": "93070", "stop_lon": 2.3215917460017996, "coord": [48.90110583577153, 2.3215917460017996], "stop_id": 3749956, "stop_desc": "RUE INGRID JONKER - 93070", "stop_name": "TOUZET - GAILLARD"}, "geometry": {"type": "Point", "coordinates": [2.3215917460017996, 48.90110583577153]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7a01f18b34840a410080b079a1bbeb289deb5dbe", "fields": {"departement": "92", "stop_lat": 48.91040603006001, "code_postal": "92024", "stop_lon": 2.3130675307960664, "coord": [48.91040603006001, 2.3130675307960664], "stop_id": 3749967, "stop_desc": "RUE DU GENERAL ROGUET - 92024", "stop_name": "RUE PIERRE"}, "geometry": {"type": "Point", "coordinates": [2.3130675307960664, 48.91040603006001]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6e11346510f4accf88c4625f96b3eb8b1fa957f5", "fields": {"departement": "75", "stop_lat": 48.85096108762797, "code_postal": "75115", "stop_lon": 2.3004571691024998, "coord": [48.85096108762797, 2.3004571691024998], "stop_id": 3749941, "stop_desc": "46-48 AVENUE DE LA MOTTE PIQUET - 75115", "stop_name": "GAL DE BOLLARDIERE"}, "geometry": {"type": "Point", "coordinates": [2.3004571691024998, 48.85096108762797]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "91eb2ec5e8914729a1fc2f03e3e474dc635526d6", "fields": {"departement": "75", "stop_lat": 48.87445277569274, "code_postal": "75108", "stop_lon": 2.2963258094953476, "coord": [48.87445277569274, 2.2963258094953476], "stop_id": 3749982, "stop_desc": "66 AV HOCHE - 75108", "stop_name": "CHARLES DE GAULLE - ETOILE"}, "geometry": {"type": "Point", "coordinates": [2.2963258094953476, 48.87445277569274]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5200ad35c9ea16efcb7f7c6ee3ef39cf101359b3", "fields": {"departement": "93", "stop_lat": 48.90292094149015, "code_postal": "93070", "stop_lon": 2.3195327236531718, "coord": [48.90292094149015, 2.3195327236531718], "stop_id": 3749987, "stop_desc": "134 BD VICTOR HUGO - 93070", "stop_name": "VICTOR HUGO - SANZILLON"}, "geometry": {"type": "Point", "coordinates": [2.3195327236531718, 48.90292094149015]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dfd29c34c17c6a3555435da23137176cea5244bd", "fields": {"departement": "75", "stop_lat": 48.877545158770765, "code_postal": "75108", "stop_lon": 2.298585218601294, "coord": [48.877545158770765, 2.298585218601294], "stop_id": 3749981, "stop_desc": "237 RUE DU FAUBOURG SAINT-HONORE - 75108", "stop_name": "TERNES"}, "geometry": {"type": "Point", "coordinates": [2.298585218601294, 48.877545158770765]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2bb9b2b65ae17accfa44ac0361cc309744487bd0", "fields": {"departement": "75", "stop_lat": 48.885085288442156, "code_postal": "75117", "stop_lon": 2.298048117860305, "coord": [48.885085288442156, 2.298048117860305], "stop_id": 3749984, "stop_desc": "4 BIS PLACE DU MARECHAL JUIN - 75117", "stop_name": "PEREIRE"}, "geometry": {"type": "Point", "coordinates": [2.298048117860305, 48.885085288442156]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9c9fffc2a8184af0e640be363e31f245d8f8f30e", "fields": {"departement": "75", "stop_lat": 48.89890473272038, "code_postal": "75117", "stop_lon": 2.3289532698288054, "coord": [48.89890473272038, 2.3289532698288054], "stop_id": 3749993, "stop_desc": "1 R ANDRE BRECHET - 75117", "stop_name": "HOPITAL BICHAT"}, "geometry": {"type": "Point", "coordinates": [2.3289532698288054, 48.89890473272038]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ced56f35c6f5f0bdaea3a8f98275619fa977cbd8", "fields": {"departement": "75", "stop_lat": 48.89416856099952, "code_postal": "75118", "stop_lon": 2.329717306904836, "coord": [48.89416856099952, 2.329717306904836], "stop_id": 3749996, "stop_desc": "7 R JACQUES CARTIER - 75118", "stop_name": "JACQUES CARTIER"}, "geometry": {"type": "Point", "coordinates": [2.329717306904836, 48.89416856099952]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c46388c23783f23a9918bdbcf876aab402464dcb", "fields": {"departement": "75", "stop_lat": 48.88524166273658, "code_postal": "75117", "stop_lon": 2.3111577772470095, "coord": [48.88524166273658, 2.3111577772470095], "stop_id": 3750007, "stop_desc": "100-102 R CARDINET - 75117", "stop_name": "TOCQUEVILLE"}, "geometry": {"type": "Point", "coordinates": [2.3111577772470095, 48.88524166273658]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dc65ebe0aa252be2caae6f18f3b009bbabbc635c", "fields": {"departement": "75", "stop_lat": 48.88554005336861, "code_postal": "75117", "stop_lon": 2.321473799915764, "coord": [48.88554005336861, 2.321473799915764], "stop_id": 3750011, "stop_desc": "59 R LA CONDAMINE - 75117", "stop_name": "TRUFFAUT"}, "geometry": {"type": "Point", "coordinates": [2.321473799915764, 48.88554005336861]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5ffd508da4e6933b589aed52719c5bd6b8994128", "fields": {"departement": "75", "stop_lat": 48.89247000821948, "code_postal": "75118", "stop_lon": 2.330058292070262, "coord": [48.89247000821948, 2.330058292070262], "stop_id": 3749998, "stop_desc": "235 R MARCADET - 75118", "stop_name": "COYSEVOX"}, "geometry": {"type": "Point", "coordinates": [2.330058292070262, 48.89247000821948]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4bf18b426e1ea6476cb930737cfc2aa33b055d5e", "fields": {"departement": "75", "stop_lat": 48.89796107884481, "code_postal": "75117", "stop_lon": 2.328871635148322, "coord": [48.89796107884481, 2.328871635148322], "stop_id": 3749994, "stop_desc": "13 AVENUE DE LA PORTE DE SAINT-OUEN - 75117", "stop_name": "PORTE DE SAINT-OUEN - HOPITAL BICHAT"}, "geometry": {"type": "Point", "coordinates": [2.328871635148322, 48.89796107884481]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5cde4d6da761b397c008eb0bc5466cd25c98b084", "fields": {"departement": "75", "stop_lat": 48.899699914128, "code_postal": "75119", "stop_lon": 2.3716467780462773, "coord": [48.899699914128, 2.3716467780462773], "stop_id": 3750022, "stop_desc": "85/87 RUE EMILE BOLLAERT - 75119", "stop_name": "PORTE D'AUBERVILLIERS - OBERLE"}, "geometry": {"type": "Point", "coordinates": [2.3716467780462773, 48.899699914128]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a32e8bfbd676a33255c3eafc1992dbf3cecb3069", "fields": {"departement": "75", "stop_lat": 48.8996003647951, "code_postal": "75119", "stop_lon": 2.3739640506321846, "coord": [48.8996003647951, 2.3739640506321846], "stop_id": 3750023, "stop_desc": "11 RUE JACQUES DUCHESNE - 75119", "stop_name": "DUCHESNE - BOLLAERT"}, "geometry": {"type": "Point", "coordinates": [2.3739640506321846, 48.8996003647951]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6bd759140cd38de5e225b7a36cf643d1f4e3019a", "fields": {"departement": "75", "stop_lat": 48.89110303795833, "code_postal": "75117", "stop_lon": 2.320790647822453, "coord": [48.89110303795833, 2.320790647822453], "stop_id": 3750014, "stop_desc": "14-16 R SAUFFROY - 75117", "stop_name": "BROCHANT"}, "geometry": {"type": "Point", "coordinates": [2.320790647822453, 48.89110303795833]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c558a53a7305ff80db3548d2985aa6b055b2963a", "fields": {"departement": "75", "stop_lat": 48.88705626810924, "code_postal": "75118", "stop_lon": 2.3668276674382622, "coord": [48.88705626810924, 2.3668276674382622], "stop_id": 3750030, "stop_desc": "43 RUE D'AUBERVILLIERS - 75118", "stop_name": "MAROC"}, "geometry": {"type": "Point", "coordinates": [2.3668276674382622, 48.88705626810924]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2dffa1ce53caad11585dd5f179836476125e4893", "fields": {"departement": "75", "stop_lat": 48.889671333892906, "code_postal": "75118", "stop_lon": 2.3676605159154067, "coord": [48.889671333892906, 2.3676605159154067], "stop_id": 3750036, "stop_desc": "FACE 66 RUE RIQUET - 75118", "stop_name": "RIQUET."}, "geometry": {"type": "Point", "coordinates": [2.3676605159154067, 48.889671333892906]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ca542ec05ea156673c5feaf8c6501b53e2202fa3", "fields": {"departement": "91", "stop_lat": 48.73591239531101, "code_postal": "91689", "stop_lon": 2.3270089607134845, "coord": [48.73591239531101, 2.3270089607134845], "stop_id": 4314816, "stop_desc": "FACE 14 RUE DU BON PUITS - 91689", "stop_name": "JUMELAGES"}, "geometry": {"type": "Point", "coordinates": [2.3270089607134845, 48.73591239531101]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0b0353bfb4a2c6e20c8e3a2428698d6bf967b985", "fields": {"departement": "94", "stop_lat": 48.74338076869051, "code_postal": "94065", "stop_lon": 2.3549494218025053, "coord": [48.74338076869051, 2.3549494218025053], "stop_id": 4314824, "stop_desc": "5 RUE DE LONGJUMEAU - 94065", "stop_name": "LES SOLETS"}, "geometry": {"type": "Point", "coordinates": [2.3549494218025053, 48.74338076869051]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c2a12d9371cb713d55b056f4fbd80ecd0abdca18", "fields": {"departement": "91", "stop_lat": 48.74406243660473, "code_postal": "91479", "stop_lon": 2.362845799955751, "coord": [48.74406243660473, 2.362845799955751], "stop_id": 4314832, "stop_desc": "CHEMIN DES AVERNAISES - 91479", "stop_name": "LES AVERNAISES"}, "geometry": {"type": "Point", "coordinates": [2.362845799955751, 48.74406243660473]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5965f0a17f83f49488d37a7c8d35b3b46dae2d00", "fields": {"departement": "94", "stop_lat": 48.75846851876445, "code_postal": "94073", "stop_lon": 2.3708056078475495, "coord": [48.75846851876445, 2.3708056078475495], "stop_id": 4314840, "stop_desc": "BOULEVARD DU NORD - 94073", "stop_name": "BELLE EPINE NORD"}, "geometry": {"type": "Point", "coordinates": [2.3708056078475495, 48.75846851876445]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "82f602973076c4b83066addc468068162299c77f", "fields": {"departement": "91", "stop_lat": 48.73290134029453, "code_postal": "91689", "stop_lon": 2.327322070878521, "coord": [48.73290134029453, 2.327322070878521], "stop_id": 4314850, "stop_desc": "17-19 RUE DE L'AMIRAL MOUCHEZ - 91689", "stop_name": "MOUCHEZ"}, "geometry": {"type": "Point", "coordinates": [2.327322070878521, 48.73290134029453]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ab0154a158a5ed5a813ab1df2f4b807b2e02e9b0", "fields": {"departement": "92", "stop_lat": 48.738917689264994, "code_postal": "92002", "stop_lon": 2.2987970481475424, "coord": [48.738917689264994, 2.2987970481475424], "stop_id": 4314852, "stop_desc": "52-54 AVENUE DU PRESIDENT KENNEDY - 92002", "stop_name": "SAUSSAYE - MIRABEAU"}, "geometry": {"type": "Point", "coordinates": [2.2987970481475424, 48.738917689264994]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "37ef80db81f3c4d0d0f2ea9b7bc5268595788586", "fields": {"departement": "93", "stop_lat": 48.868849201159506, "code_postal": "93048", "stop_lon": 2.4621124450708733, "coord": [48.868849201159506, 2.4621124450708733], "stop_id": 4364009, "stop_desc": "222 RUE DE ROSNY - 93048", "stop_name": "NOUVELLE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.4621124450708733, 48.868849201159506]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5ae189e261b3802ed1e84b6725b2c4d26773c7d2", "fields": {"departement": "93", "stop_lat": 48.869745513479096, "code_postal": "93048", "stop_lon": 2.4644033634110007, "coord": [48.869745513479096, 2.4644033634110007], "stop_id": 4364012, "stop_desc": "259 RUE DE ROSNY - 93048", "stop_name": "ACACIA"}, "geometry": {"type": "Point", "coordinates": [2.4644033634110007, 48.869745513479096]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7a941b34e681f867f3935a4abca281ebf44f9c1a", "fields": {"departement": "93", "stop_lat": 48.87104299211104, "code_postal": "93048", "stop_lon": 2.469624503987606, "coord": [48.87104299211104, 2.469624503987606], "stop_id": 4364014, "stop_desc": "299 RUE DE ROSNY - 93048", "stop_name": "FORT DE ROSNY"}, "geometry": {"type": "Point", "coordinates": [2.469624503987606, 48.87104299211104]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1e842a934615c3a285a994b52d8764a9aeb02c41", "fields": {"departement": "93", "stop_lat": 48.87264272732939, "code_postal": "93064", "stop_lon": 2.47748982983825, "coord": [48.87264272732939, 2.47748982983825], "stop_id": 4364015, "stop_desc": "51 RUE DU 4EME ZOUAVES - 93064", "stop_name": "GRAND VERGER"}, "geometry": {"type": "Point", "coordinates": [2.47748982983825, 48.87264272732939]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6ca087ab6debdc49fdd2da59ef343a458b90279f", "fields": {"departement": "93", "stop_lat": 48.87412915905164, "code_postal": "93064", "stop_lon": 2.4820581343312194, "coord": [48.87412915905164, 2.4820581343312194], "stop_id": 4364018, "stop_desc": "6 RUE DU 4EME ZOUAVES - 93064", "stop_name": "EGLISE DE ROSNY"}, "geometry": {"type": "Point", "coordinates": [2.4820581343312194, 48.87412915905164]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "61e7cdcdabd6cd4fd0eb1180bd731c088f5ac646", "fields": {"departement": "93", "stop_lat": 48.87824132865198, "code_postal": "93064", "stop_lon": 2.485326189068649, "coord": [48.87824132865198, 2.485326189068649], "stop_id": 4364019, "stop_desc": "RUE JEAN DE MAILLY - 93064", "stop_name": "JEAN DE MAILLY - HOFFMANN"}, "geometry": {"type": "Point", "coordinates": [2.485326189068649, 48.87824132865198]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d841a0d90afe6a72c8df66c930c904129b9decab", "fields": {"departement": "93", "stop_lat": 48.88445147468918, "code_postal": "93064", "stop_lon": 2.485371183853036, "coord": [48.88445147468918, 2.485371183853036], "stop_id": 4364023, "stop_desc": "91 BOULEVARD ALSACE-LORRAINE - 93064", "stop_name": "BOIS-PERRIER NORD"}, "geometry": {"type": "Point", "coordinates": [2.485371183853036, 48.88445147468918]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4e51a52f1c041ef9ac3ad2848577c9b9cc640094", "fields": {"departement": "93", "stop_lat": 48.88295989291311, "code_postal": "93077", "stop_lon": 2.4989667209034665, "coord": [48.88295989291311, 2.4989667209034665], "stop_id": 4364026, "stop_desc": "FACE 106 AVENUE DE ROSNY-SOUS-BOIS - 93077", "stop_name": "CIMETIERE DE VILLEMOMBLE"}, "geometry": {"type": "Point", "coordinates": [2.4989667209034665, 48.88295989291311]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aeecadc47907e8cdc78978bbc016a96a3d9ed5e5", "fields": {"departement": "93", "stop_lat": 48.88345582949369, "code_postal": "93077", "stop_lon": 2.4977554485461115, "coord": [48.88345582949369, 2.4977554485461115], "stop_id": 4364027, "stop_desc": "ROUTE DE NOISY - 93077", "stop_name": "CIMETIERE DE VILLEMOMBLE"}, "geometry": {"type": "Point", "coordinates": [2.4977554485461115, 48.88345582949369]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "365283ace11ef33d618a223c6174b3945276b95a", "fields": {"departement": "93", "stop_lat": 48.884699099389856, "code_postal": "93077", "stop_lon": 2.502120102414242, "coord": [48.884699099389856, 2.502120102414242], "stop_id": 4364028, "stop_desc": "65-67 AV DE ROSNY - 93077", "stop_name": "MEISSONIER"}, "geometry": {"type": "Point", "coordinates": [2.502120102414242, 48.884699099389856]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "49604fd43942bcedac40e86b49cfde456e393ce4", "fields": {"departement": "93", "stop_lat": 48.884963221706364, "code_postal": "93077", "stop_lon": 2.506045686703492, "coord": [48.884963221706364, 2.506045686703492], "stop_id": 4364031, "stop_desc": "12 TER AV DE ROSNY - 93077", "stop_name": "AVENUE DU RAINCY"}, "geometry": {"type": "Point", "coordinates": [2.506045686703492, 48.884963221706364]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "46d53e7e3412db7ef10bb3807dd3a0b7f1fa3dd0", "fields": {"departement": "93", "stop_lat": 48.8819846340026, "code_postal": "93077", "stop_lon": 2.5207801904987455, "coord": [48.8819846340026, 2.5207801904987455], "stop_id": 4364037, "stop_desc": "FACE 152 RUE GRANDE RUE - 93077", "stop_name": "BOULEVARD ANDRE"}, "geometry": {"type": "Point", "coordinates": [2.5207801904987455, 48.8819846340026]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b0af2d3d6dd7f4576d9982064b6f34f920236090", "fields": {"departement": "93", "stop_lat": 48.86082320601623, "code_postal": "93048", "stop_lon": 2.4438815440753667, "coord": [48.86082320601623, 2.4438815440753667], "stop_id": 4364046, "stop_desc": "5 RUE DE ROSNY - 93048", "stop_name": "CENTRE ADMINISTRATIF"}, "geometry": {"type": "Point", "coordinates": [2.4438815440753667, 48.86082320601623]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9ef000d3d27fa060a09ca6b6e4af005c024f0165", "fields": {"departement": "91", "stop_lat": 48.70437836972327, "code_postal": "91027", "stop_lon": 2.3909509669122206, "coord": [48.70437836972327, 2.3909509669122206], "stop_id": 4364130, "stop_desc": "143-145-147 AVENUE DU 18 AVRIL - 91027", "stop_name": "COUBERTIN"}, "geometry": {"type": "Point", "coordinates": [2.3909509669122206, 48.70437836972327]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b7a2a7fe4f755999af88827d14d5f0b930352d3d", "fields": {"departement": "91", "stop_lat": 48.70476451673544, "code_postal": "91027", "stop_lon": 2.3917390257535804, "coord": [48.70476451673544, 2.3917390257535804], "stop_id": 4364131, "stop_desc": "140-142 AVENUE DU 18 AVRIL - 91027", "stop_name": "COUBERTIN"}, "geometry": {"type": "Point", "coordinates": [2.3917390257535804, 48.70476451673544]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "04f1786f85539418bd5c856ef69841397b8bd8b6", "fields": {"departement": "91", "stop_lat": 48.69991406717884, "code_postal": "91027", "stop_lon": 2.383858078039875, "coord": [48.69991406717884, 2.383858078039875], "stop_id": 4364135, "stop_desc": "62 AV DU 18 AVRIL - 91027", "stop_name": "DOCTEUR GUERIN"}, "geometry": {"type": "Point", "coordinates": [2.383858078039875, 48.69991406717884]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3e566905797c8fc37032e6596b20b080596b5f06", "fields": {"departement": "91", "stop_lat": 48.697470201935985, "code_postal": "91027", "stop_lon": 2.3811809353960895, "coord": [48.697470201935985, 2.3811809353960895], "stop_id": 4364136, "stop_desc": "19 AVENUE DU 18 AVRIL - 91027", "stop_name": "LYCEE MARCEL PAGNOL"}, "geometry": {"type": "Point", "coordinates": [2.3811809353960895, 48.697470201935985]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bbb1b59239447c159b382de33860987260ec007d", "fields": {"departement": "91", "stop_lat": 48.69795536643969, "code_postal": "91027", "stop_lon": 2.381765223571396, "coord": [48.69795536643969, 2.381765223571396], "stop_id": 4364137, "stop_desc": "32 AVENUE DU 18 AVRIL - 91027", "stop_name": "LYCEE MARCEL PAGNOL"}, "geometry": {"type": "Point", "coordinates": [2.381765223571396, 48.69795536643969]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cd147eb5e29e7d8ed095a750d9332bd3d19caa76", "fields": {"departement": "91", "stop_lat": 48.69204209970009, "code_postal": "91326", "stop_lon": 2.3783930622157, "coord": [48.69204209970009, 2.3783930622157], "stop_id": 4364138, "stop_desc": "FACE 8 AVENUE DU GENERAL DE GAULLE - 91326", "stop_name": "HOTEL DE POLICE"}, "geometry": {"type": "Point", "coordinates": [2.3783930622157, 48.69204209970009]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f48d13ff0c0ce34682dbece810339937c35a4585", "fields": {"departement": "91", "stop_lat": 48.702294968215284, "code_postal": "91161", "stop_lon": 2.3202393083415003, "coord": [48.702294968215284, 2.3202393083415003], "stop_id": 4373695, "stop_desc": "FACE 36 AVENUE PIERRE BROSSOLETTE - 91161", "stop_name": "PLACE DE LA LIBERATION"}, "geometry": {"type": "Point", "coordinates": [2.3202393083415003, 48.702294968215284]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b77b904574587d2cc9b170d4e3ef624b76212e69", "fields": {"departement": "91", "stop_lat": 48.70708677687683, "code_postal": "91432", "stop_lon": 2.3290246173367968, "coord": [48.70708677687683, 2.3290246173367968], "stop_id": 4373698, "stop_desc": "PL GABRIEL FONTAINE - 91432", "stop_name": "GABRIEL FONTAINE"}, "geometry": {"type": "Point", "coordinates": [2.3290246173367968, 48.70708677687683]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "60411f182dfce9d413d2e9c519061933e1537d7f", "fields": {"departement": "91", "stop_lat": 48.70617915310959, "code_postal": "91432", "stop_lon": 2.333153298254694, "coord": [48.70617915310959, 2.333153298254694], "stop_id": 4373701, "stop_desc": "10 AVENUE DU GENERAL WARABIOT - 91432", "stop_name": "MAIRIE DE MORANGIS"}, "geometry": {"type": "Point", "coordinates": [2.333153298254694, 48.70617915310959]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c42aa017daaa8c1f50e58932ab2c53145abe8774", "fields": {"departement": "91", "stop_lat": 48.70489385255475, "code_postal": "91432", "stop_lon": 2.335339840605048, "coord": [48.70489385255475, 2.335339840605048], "stop_id": 4373702, "stop_desc": "FACE 5 R DE SAVIGNY - 91432", "stop_name": "PLACE LUCIEN BOILLEAU"}, "geometry": {"type": "Point", "coordinates": [2.335339840605048, 48.70489385255475]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4e1752c23cbd8e10db00be42c68c3b01416c8eed", "fields": {"departement": "91", "stop_lat": 48.69586937522643, "code_postal": "91432", "stop_lon": 2.3368880668692618, "coord": [48.69586937522643, 2.3368880668692618], "stop_id": 4373710, "stop_desc": "2 AV FERDINAND DE LESSEPS - 91432", "stop_name": "LE MONTOIRE"}, "geometry": {"type": "Point", "coordinates": [2.3368880668692618, 48.69586937522643]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3d37451ea5899bde5d008d07b423e6f475972a0e", "fields": {"departement": "91", "stop_lat": 48.69594128422391, "code_postal": "91432", "stop_lon": 2.337091737010249, "coord": [48.69594128422391, 2.337091737010249], "stop_id": 4373711, "stop_desc": "FACE 2 AV FERDINAND DE LESSEPS - 91432", "stop_name": "LE MONTOIRE"}, "geometry": {"type": "Point", "coordinates": [2.337091737010249, 48.69594128422391]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7a596f96d2287f64f2415382b7c2f43b0d532698", "fields": {"departement": "91", "stop_lat": 48.680372842719194, "code_postal": "91589", "stop_lon": 2.3432000763075984, "coord": [48.680372842719194, 2.3432000763075984], "stop_id": 4373719, "stop_desc": "77 AV CHARLES DE GAULLE - 91589", "stop_name": "BRIAND - SALENGRO"}, "geometry": {"type": "Point", "coordinates": [2.3432000763075984, 48.680372842719194]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9653b60044805733181701e30a17e60d17a27b8d", "fields": {"departement": "91", "stop_lat": 48.68039673633752, "code_postal": "91589", "stop_lon": 2.3649048858394845, "coord": [48.68039673633752, 2.3649048858394845], "stop_id": 4373728, "stop_desc": "55 BIS RUE DES PRES SAINT-MARTIN - 91589", "stop_name": "PRES SAINT-MARTIN"}, "geometry": {"type": "Point", "coordinates": [2.3649048858394845, 48.68039673633752]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d67c240153f3deb98611e0ef7f140f0ad0fed208", "fields": {"departement": "91", "stop_lat": 48.69752730488461, "code_postal": "91326", "stop_lon": 2.3715538565357037, "coord": [48.69752730488461, 2.3715538565357037], "stop_id": 4376563, "stop_desc": "105 AVENUE DE LA COUR DE FRANCE - 91326", "stop_name": "PYRAMIDE DE JUVISY"}, "geometry": {"type": "Point", "coordinates": [2.3715538565357037, 48.69752730488461]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "569fb861be476fce97042f13bdd8a3689143267c", "fields": {"departement": "91", "stop_lat": 48.695370053417975, "code_postal": "91326", "stop_lon": 2.371538856451079, "coord": [48.695370053417975, 2.371538856451079], "stop_id": 4376565, "stop_desc": "40 BIS AVENUE DE LA COUR DE FRANCE - 91326", "stop_name": "OBSERVATOIRE CAMILLE FLAMMARION"}, "geometry": {"type": "Point", "coordinates": [2.371538856451079, 48.695370053417975]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fa8e2abb663ecf8e39593f16cd03e7eabf062009", "fields": {"departement": "91", "stop_lat": 48.68892508573745, "code_postal": "91326", "stop_lon": 2.372036929834239, "coord": [48.68892508573745, 2.372036929834239], "stop_id": 4376568, "stop_desc": "35-37 RUE PIVER - 91326", "stop_name": "PIVER"}, "geometry": {"type": "Point", "coordinates": [2.372036929834239, 48.68892508573745]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fff6f530db65c1edb22cd9e67c3a7f8dc1198ddf", "fields": {"departement": "91", "stop_lat": 48.692258585581776, "code_postal": "91326", "stop_lon": 2.3761394374852545, "coord": [48.692258585581776, 2.3761394374852545], "stop_id": 4376571, "stop_desc": "60 AVENUE D'ESTIENNE D'ORVES - 91326", "stop_name": "MARCHE DE JUVISY"}, "geometry": {"type": "Point", "coordinates": [2.3761394374852545, 48.692258585581776]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d65f8ddabf90534eda61560d39c6a1b6242319fd", "fields": {"departement": "91", "stop_lat": 48.690764432770045, "code_postal": "91326", "stop_lon": 2.381949145916975, "coord": [48.690764432770045, 2.381949145916975], "stop_id": 4376577, "stop_desc": "FACE 43 RUE DES GAULOIS - 91326", "stop_name": "JUVISY-RER"}, "geometry": {"type": "Point", "coordinates": [2.381949145916975, 48.690764432770045]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "69162b1c8287520540518295c384cb2ebfefb964", "fields": {"departement": "91", "stop_lat": 48.693375414081025, "code_postal": "91326", "stop_lon": 2.3685505196948786, "coord": [48.693375414081025, 2.3685505196948786], "stop_id": 4377209, "stop_desc": "7 R PETIT - 91326", "stop_name": "ECOLE JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.3685505196948786, 48.693375414081025]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9fd6df5423d63bf83e4c2226a4de8d49a69f00d0", "fields": {"departement": "91", "stop_lat": 48.68892529439915, "code_postal": "91326", "stop_lon": 2.371317390654125, "coord": [48.68892529439915, 2.371317390654125], "stop_id": 4377214, "stop_desc": "18-20 AVENUE DE LA COUR DE FRANCE - 91326", "stop_name": "PIVER"}, "geometry": {"type": "Point", "coordinates": [2.371317390654125, 48.68892529439915]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c3231c273b0b9e40abc7a0fab14ed44e97cee35c", "fields": {"departement": "91", "stop_lat": 48.71547730219704, "code_postal": "91027", "stop_lon": 2.371660776884332, "coord": [48.71547730219704, 2.371660776884332], "stop_id": 4377607, "stop_desc": "PISTE GARE ROUTIERE - 91027", "stop_name": "PORTE DE L'ESSONNE"}, "geometry": {"type": "Point", "coordinates": [2.371660776884332, 48.71547730219704]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "85e69f16597a7dbe57d5e295fa0470186faec1a6", "fields": {"departement": "91", "stop_lat": 48.705099358507645, "code_postal": "91479", "stop_lon": 2.354447502657611, "coord": [48.705099358507645, 2.354447502657611], "stop_id": 4377615, "stop_desc": "39 AVENUE DU GENERAL DE GAULLE - 91479", "stop_name": "LES FLEURS"}, "geometry": {"type": "Point", "coordinates": [2.354447502657611, 48.705099358507645]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6d17f5ed3f8aeb348dfe9cfe9eb167fe9163df12", "fields": {"departement": "91", "stop_lat": 48.696740677313635, "code_postal": "91589", "stop_lon": 2.3490813306570173, "coord": [48.696740677313635, 2.3490813306570173], "stop_id": 4377619, "stop_desc": "145 RUE ROBERT LEUTHREAU - 91589", "stop_name": "CIMETIERE DU PLATEAU"}, "geometry": {"type": "Point", "coordinates": [2.3490813306570173, 48.696740677313635]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3f3efbf9a537a1a05f9573a19d6fd9b519b742bd", "fields": {"departement": "91", "stop_lat": 48.69713611014286, "code_postal": "91589", "stop_lon": 2.3497060248892825, "coord": [48.69713611014286, 2.3497060248892825], "stop_id": 4377620, "stop_desc": "152 AVENUE ROBERT LEUTHREAU - 91589", "stop_name": "CIMETIERE DU PLATEAU"}, "geometry": {"type": "Point", "coordinates": [2.3497060248892825, 48.69713611014286]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8e1bce42bf6334c504725d0a6e77149618ce3b6b", "fields": {"departement": "91", "stop_lat": 48.68805660585001, "code_postal": "91589", "stop_lon": 2.3572249480463734, "coord": [48.68805660585001, 2.3572249480463734], "stop_id": 4377627, "stop_desc": "9 AVENUE GABRIEL PERI - 91589", "stop_name": "ARISTIDE BRIAND - CHAMPAGNE"}, "geometry": {"type": "Point", "coordinates": [2.3572249480463734, 48.68805660585001]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "82d6918ed9d63769c3207de325c4136ba09d26b8", "fields": {"departement": "91", "stop_lat": 48.680596314384715, "code_postal": "91589", "stop_lon": 2.3554438858017614, "coord": [48.680596314384715, 2.3554438858017614], "stop_id": 4377631, "stop_desc": "87 AVENUE CARNOT - 91589", "stop_name": "RUE DES ARTISTES"}, "geometry": {"type": "Point", "coordinates": [2.3554438858017614, 48.680596314384715]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2b1751b4140aa7c283e25d0a162c56b5a875e8ad", "fields": {"departement": "91", "stop_lat": 48.68120884787967, "code_postal": "91589", "stop_lon": 2.341883474517561, "coord": [48.68120884787967, 2.341883474517561], "stop_id": 4377637, "stop_desc": "88 AVENUE ROGER SALENGRO - 91589", "stop_name": "SALENGRO - DUNANT"}, "geometry": {"type": "Point", "coordinates": [2.341883474517561, 48.68120884787967]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "260cb5da175606c29686efd4c7732e8af9c5bbf5", "fields": {"departement": "91", "stop_lat": 48.684004408482274, "code_postal": "91589", "stop_lon": 2.336426602065792, "coord": [48.684004408482274, 2.336426602065792], "stop_id": 4377639, "stop_desc": "46 RUE RAOUL LEBON - 91589", "stop_name": "MARGUERITES - SALVADOR ALLENDE"}, "geometry": {"type": "Point", "coordinates": [2.336426602065792, 48.684004408482274]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "85cb935880b069dc74640cec41a365536db1864a", "fields": {"departement": "91", "stop_lat": 48.69168964503534, "code_postal": "91589", "stop_lon": 2.334186286277667, "coord": [48.69168964503534, 2.334186286277667], "stop_id": 4377647, "stop_desc": "AVENUE DU GENERAL LOUIS MORAND - 91589", "stop_name": "ZAC LES GATINES - CAPITAINE JEAN D'HERS"}, "geometry": {"type": "Point", "coordinates": [2.334186286277667, 48.69168964503534]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0b6d9b820eb5cfe52e21ead674dec392bed07c20", "fields": {"departement": "92", "stop_lat": 48.760366045536514, "code_postal": "92002", "stop_lon": 2.3075770618196296, "coord": [48.760366045536514, 2.3075770618196296], "stop_id": 4377719, "stop_desc": "105 AVENUE ARISTIDE BRIAND - 92002", "stop_name": "MORTEAUX"}, "geometry": {"type": "Point", "coordinates": [2.3075770618196296, 48.760366045536514]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9b44cefe96dd21309a4e3e0aefe0f4d40bed21ae", "fields": {"departement": "94", "stop_lat": 48.75492143665341, "code_postal": "94034", "stop_lon": 2.3183733720797615, "coord": [48.75492143665341, 2.3183733720797615], "stop_id": 4377728, "stop_desc": "23 BOULEVARD JEAN JAURES - 94034", "stop_name": "LES ANEMONES"}, "geometry": {"type": "Point", "coordinates": [2.3183733720797615, 48.75492143665341]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b972f5422c9368a64a44e7100e48247804719d1e", "fields": {"departement": "94", "stop_lat": 48.75302638134053, "code_postal": "94034", "stop_lon": 2.3337612872020754, "coord": [48.75302638134053, 2.3337612872020754], "stop_id": 4377736, "stop_desc": "CHEMIN DES OTAGES - 94034", "stop_name": "PARC DE MEDICIS"}, "geometry": {"type": "Point", "coordinates": [2.3337612872020754, 48.75302638134053]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "463663360033c18848119bce35e5deab5102b5a2", "fields": {"departement": "94", "stop_lat": 48.747641908841686, "code_postal": "94065", "stop_lon": 2.3491608729950526, "coord": [48.747641908841686, 2.3491608729950526], "stop_id": 4377744, "stop_desc": "FACE 1 RUE DE L'EGLISE - 94065", "stop_name": "MAIRIE DE RUNGIS"}, "geometry": {"type": "Point", "coordinates": [2.3491608729950526, 48.747641908841686]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5a6a478316efa23a2738286f50f32c49418e7ff9", "fields": {"departement": "94", "stop_lat": 48.74484505519896, "code_postal": "94065", "stop_lon": 2.3596659339806934, "coord": [48.74484505519896, 2.3596659339806934], "stop_id": 4377752, "stop_desc": "RUE DES SOLETS - 94065", "stop_name": "LINDBERGH"}, "geometry": {"type": "Point", "coordinates": [2.3596659339806934, 48.74484505519896]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "20c6ecc81d18cf14af0e3a25968dd6644466ab69", "fields": {"departement": "91", "stop_lat": 48.74437677346975, "code_postal": "91479", "stop_lon": 2.3639875731300255, "coord": [48.74437677346975, 2.3639875731300255], "stop_id": 4377753, "stop_desc": "CHEMIN DES AVERNAISES - 91479", "stop_name": "LES AVERNAISES"}, "geometry": {"type": "Point", "coordinates": [2.3639875731300255, 48.74437677346975]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dcf34b6efb9689c410fdef02fb6dd0ffa74d42fe", "fields": {"departement": "91", "stop_lat": 48.74406243660473, "code_postal": "91479", "stop_lon": 2.362845799955751, "coord": [48.74406243660473, 2.362845799955751], "stop_id": 4377754, "stop_desc": "CHEMIN DES AVERNAISES - 91479", "stop_name": "LES AVERNAISES"}, "geometry": {"type": "Point", "coordinates": [2.362845799955751, 48.74406243660473]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2e131cc12a8e081c175aa1dd5dc5229878fab53a", "fields": {"departement": "94", "stop_lat": 48.746020115872184, "code_postal": "94054", "stop_lon": 2.3699956957193247, "coord": [48.746020115872184, 2.3699956957193247], "stop_id": 4377755, "stop_desc": "RUE CHARLES TILLON - 94054", "stop_name": "ORLY PONT DE RUNGIS"}, "geometry": {"type": "Point", "coordinates": [2.3699956957193247, 48.746020115872184]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3ce55fc709cc1dbd37374b27fd09ea4afb7b6909", "fields": {"departement": "94", "stop_lat": 48.746323965957295, "code_postal": "94054", "stop_lon": 2.3758265141008157, "coord": [48.746323965957295, 2.3758265141008157], "stop_id": 4377757, "stop_desc": "RUE CHARLES TILLON - 94054", "stop_name": "CITE JARDINS"}, "geometry": {"type": "Point", "coordinates": [2.3758265141008157, 48.746323965957295]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3c0c0ba8d4df8cdb170e48b74d9ce5ef4bb1ab7e", "fields": {"departement": "94", "stop_lat": 48.74743363015079, "code_postal": "94054", "stop_lon": 2.388698484405287, "coord": [48.74743363015079, 2.388698484405287], "stop_id": 4377761, "stop_desc": "RUE DU BAS MARIN - 94054", "stop_name": "RUE DU PUITS DIXME"}, "geometry": {"type": "Point", "coordinates": [2.388698484405287, 48.74743363015079]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "944f41f81c0e03059da0854703727c167dac5d63", "fields": {"departement": "94", "stop_lat": 48.75201808660674, "code_postal": "94073", "stop_lon": 2.3875884213723615, "coord": [48.75201808660674, 2.3875884213723615], "stop_id": 4377765, "stop_desc": "FACE 12 RUE DU BAS MARIN - 94073", "stop_name": "CENTRE BUS DE THIAIS"}, "geometry": {"type": "Point", "coordinates": [2.3875884213723615, 48.75201808660674]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "daa488b7b743fd481ba8f7cc28a9cb24988cc1b5", "fields": {"departement": "94", "stop_lat": 48.754383536931336, "code_postal": "94073", "stop_lon": 2.3837573979025453, "coord": [48.754383536931336, 2.3837573979025453], "stop_id": 4377767, "stop_desc": "15 RUE DES ALOUETTES - 94073", "stop_name": "RUE DU BAS MARIN"}, "geometry": {"type": "Point", "coordinates": [2.3837573979025453, 48.754383536931336]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7225bb8dc6b6bec099d34d369fba8c225a2eb1d4", "fields": {"departement": "94", "stop_lat": 48.763846421293074, "code_postal": "94021", "stop_lon": 2.3575124002286936, "coord": [48.763846421293074, 2.3575124002286936], "stop_id": 4377776, "stop_desc": "PISTE GARE ROUTIERE - 94021", "stop_name": "MARCHE INTERNATIONAL DE RUNGIS"}, "geometry": {"type": "Point", "coordinates": [2.3575124002286936, 48.763846421293074]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f6cd7a68047e4380f4e7dc400020c81033ac5899", "fields": {"departement": "94", "stop_lat": 48.75280995344707, "code_postal": "94034", "stop_lon": 2.3237841132649644, "coord": [48.75280995344707, 2.3237841132649644], "stop_id": 4377987, "stop_desc": "27-29 R JULIEN CHAILLIOUX - 94034", "stop_name": "MAISON DE RETRAITE"}, "geometry": {"type": "Point", "coordinates": [2.3237841132649644, 48.75280995344707]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f5757f90360eff9cf02f1d05e2cb383b4bb1a5db", "fields": {"departement": "94", "stop_lat": 48.752827909643486, "code_postal": "94034", "stop_lon": 2.323607400851733, "coord": [48.752827909643486, 2.323607400851733], "stop_id": 4377988, "stop_desc": "FACE 27-29 R JULIEN CHAILLIOUX - 94034", "stop_name": "MAISON DE RETRAITE"}, "geometry": {"type": "Point", "coordinates": [2.323607400851733, 48.752827909643486]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "54eb62486419c0534fedebc174c6e34cebf7e836", "fields": {"departement": "94", "stop_lat": 48.773617476536444, "code_postal": "94038", "stop_lon": 2.324390644589767, "coord": [48.773617476536444, 2.324390644589767], "stop_id": 4378005, "stop_desc": "49 AVENUE CHARLES FLOUQUET - 94038", "stop_name": "COLLEGE RONSARD"}, "geometry": {"type": "Point", "coordinates": [2.324390644589767, 48.773617476536444]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "677d1ae2dbf0c6193eb19073a2984c75caa615b1", "fields": {"departement": "94", "stop_lat": 48.77266465724943, "code_postal": "94038", "stop_lon": 2.3236021909786224, "coord": [48.77266465724943, 2.3236021909786224], "stop_id": 4378006, "stop_desc": "FACE 59 AVENUE CHARLES FLOUQUET - 94038", "stop_name": "COLLEGE RONSARD"}, "geometry": {"type": "Point", "coordinates": [2.3236021909786224, 48.77266465724943]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "292bba5f0bf068a0b74f532b5f563d83ede73f85", "fields": {"departement": "94", "stop_lat": 48.77572986087126, "code_postal": "94038", "stop_lon": 2.326389159474474, "coord": [48.77572986087126, 2.326389159474474], "stop_id": 4378007, "stop_desc": "4 AVENUE HENRI BARBUSSE - 94038", "stop_name": "BARBUSSE - LARROUMES"}, "geometry": {"type": "Point", "coordinates": [2.326389159474474, 48.77572986087126]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9578540716509cf1e00ecc67934fe8efa46afba2", "fields": {"departement": "94", "stop_lat": 48.77895700307597, "code_postal": "94038", "stop_lon": 2.340586615053609, "coord": [48.77895700307597, 2.340586615053609], "stop_id": 4378017, "stop_desc": "BOULEVARD PAUL VAILLANT COUTURIER - 94038", "stop_name": "HENRI THIRARD - LEON JOUHAUX"}, "geometry": {"type": "Point", "coordinates": [2.340586615053609, 48.77895700307597]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9687c501054c42c8ae5bd6659a9d0b9eeb6f997f", "fields": {"departement": "94", "stop_lat": 48.7800355543998, "code_postal": "94038", "stop_lon": 2.3408314847242293, "coord": [48.7800355543998, 2.3408314847242293], "stop_id": 4378024, "stop_desc": "58 BOULEVARD PAUL VAILLANT COUTURIER - 94038", "stop_name": "DE GAULLE - GOUNOD - TABANOU."}, "geometry": {"type": "Point", "coordinates": [2.3408314847242293, 48.7800355543998]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "49df5e1b34fb99e5e7c3254f5b5a5d2e2ab78d8a", "fields": {"departement": "94", "stop_lat": 48.778741282513145, "code_postal": "94038", "stop_lon": 2.3408857942833157, "coord": [48.778741282513145, 2.3408857942833157], "stop_id": 4378027, "stop_desc": "BOULEVARD PAUL VAILLANT COUTURIER - 94038", "stop_name": "HENRI THIRARD - LEON JOUHAUX."}, "geometry": {"type": "Point", "coordinates": [2.3408857942833157, 48.778741282513145]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "67f65476d19906f534af2feb9ac7aa8acdd42a36", "fields": {"departement": "94", "stop_lat": 48.774588331216236, "code_postal": "94038", "stop_lon": 2.348663901972049, "coord": [48.774588331216236, 2.348663901972049], "stop_id": 4378030, "stop_desc": "FACE 83 R DE CHEVILLY - 94038", "stop_name": "CHEVILLY - DAHLIAS"}, "geometry": {"type": "Point", "coordinates": [2.348663901972049, 48.774588331216236]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c6ecea32912c3bcaa1804c6db85d8f77412db273", "fields": {"departement": "94", "stop_lat": 48.774561302720585, "code_postal": "94038", "stop_lon": 2.349316628412955, "coord": [48.774561302720585, 2.349316628412955], "stop_id": 4378031, "stop_desc": "85 R DE CHEVILLY - 94038", "stop_name": "CHEVILLY - DAHLIAS"}, "geometry": {"type": "Point", "coordinates": [2.349316628412955, 48.774561302720585]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f9ea333c48c45df3596aac71ecfe47696751dd0e", "fields": {"departement": "94", "stop_lat": 48.80028381899008, "code_postal": "94076", "stop_lon": 2.3564790075267084, "coord": [48.80028381899008, 2.3564790075267084], "stop_id": 4378057, "stop_desc": "FACE 12 RUE MARCEL PAUL - 94076", "stop_name": "AMBROISE CROIZAT"}, "geometry": {"type": "Point", "coordinates": [2.3564790075267084, 48.80028381899008]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c8fcb6a26c53ef48fad54d08b4ed722517da7188", "fields": {"departement": "94", "stop_lat": 48.803420226026184, "code_postal": "94076", "stop_lon": 2.358507485336182, "coord": [48.803420226026184, 2.358507485336182], "stop_id": 4378058, "stop_desc": "7 BOULEVARD CHASTENET DE GERY - 94076", "stop_name": "LES COQUETTES"}, "geometry": {"type": "Point", "coordinates": [2.358507485336182, 48.803420226026184]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "54eec60ecbc2daabba0dbdc766d83c2c9bddb04e", "fields": {"departement": "94", "stop_lat": 48.7989866529581, "code_postal": "94076", "stop_lon": 2.369865835984797, "coord": [48.7989866529581, 2.369865835984797], "stop_id": 4378064, "stop_desc": "47-47BIS RUE BIZET - 94076", "stop_name": "BEAUMARCHAIS"}, "geometry": {"type": "Point", "coordinates": [2.369865835984797, 48.7989866529581]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3ae35d3d72c42b0a1fd46e46cb60686c06eab4fd", "fields": {"departement": "94", "stop_lat": 48.78152620546666, "code_postal": "94076", "stop_lon": 2.3555472360672267, "coord": [48.78152620546666, 2.3555472360672267], "stop_id": 4378077, "stop_desc": "119 RUE DE CHEVILLY - 94076", "stop_name": "YOURI GAGARINE"}, "geometry": {"type": "Point", "coordinates": [2.3555472360672267, 48.78152620546666]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1d97f995fdc3455a36b22f3a90947e4ed4be494a", "fields": {"departement": "75", "stop_lat": 48.82416580440166, "code_postal": "75114", "stop_lon": 2.339922551596341, "coord": [48.82416580440166, 2.339922551596341], "stop_id": 4378085, "stop_desc": "FACE 2 RUE GAZAN - 75114", "stop_name": "PARC MONTSOURIS"}, "geometry": {"type": "Point", "coordinates": [2.339922551596341, 48.82416580440166]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "02b7f03b0b087fccc43d266b1156a2528400619c", "fields": {"departement": "75", "stop_lat": 48.82592735408744, "code_postal": "75114", "stop_lon": 2.3410932785585543, "coord": [48.82592735408744, 2.3410932785585543], "stop_id": 4378091, "stop_desc": "6-8 AVENUE REILLE - 75114", "stop_name": "GLACIERE - TOLBIAC"}, "geometry": {"type": "Point", "coordinates": [2.3410932785585543, 48.82592735408744]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4065083f58dbb346ad427e7b5f794e05ffcf4e16", "fields": {"departement": "94", "stop_lat": 48.75535400244807, "code_postal": "94065", "stop_lon": 2.3465662692692884, "coord": [48.75535400244807, 2.3465662692692884], "stop_id": 4378096, "stop_desc": "RUE CHARLES LINDBERG - 94065", "stop_name": "LES CLOSEAUX"}, "geometry": {"type": "Point", "coordinates": [2.3465662692692884, 48.75535400244807]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "865b48b299047bb5df99edc7e9e7bd6af8a958b4", "fields": {"departement": "94", "stop_lat": 48.75454432268653, "code_postal": "94065", "stop_lon": 2.353498734478365, "coord": [48.75454432268653, 2.353498734478365], "stop_id": 4378100, "stop_desc": "BOULEVARD CIRCULAIRE SUD - 94065", "stop_name": "CONCARNEAU"}, "geometry": {"type": "Point", "coordinates": [2.353498734478365, 48.75454432268653]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8f734bd4e641c558872ea16ee64ab671a0e2f3df", "fields": {"departement": "94", "stop_lat": 48.75843670476903, "code_postal": "94065", "stop_lon": 2.3491633467954522, "coord": [48.75843670476903, 2.3491633467954522], "stop_id": 4378101, "stop_desc": "BOULEVARD CIRCULAIRE OUEST - 94065", "stop_name": "MARCHE DE RUNGIS-PONDORLY"}, "geometry": {"type": "Point", "coordinates": [2.3491633467954522, 48.75843670476903]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "38df47797f0f3fe3c85d76548c2f3155a8f9e3aa", "fields": {"departement": "75", "stop_lat": 48.83209291939569, "code_postal": "75114", "stop_lon": 2.3390108437116397, "coord": [48.83209291939569, 2.3390108437116397], "stop_id": 4378106, "stop_desc": "17 BOULEVARD SAINT-JACQUES - 75114", "stop_name": "DAREAU - SAINT-JACQUES"}, "geometry": {"type": "Point", "coordinates": [2.3390108437116397, 48.83209291939569]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1895ea7132d32b98965f680bdc54335413b1927d", "fields": {"departement": "94", "stop_lat": 48.74971740744681, "code_postal": "94065", "stop_lon": 2.355318565882519, "coord": [48.74971740744681, 2.355318565882519], "stop_id": 4378116, "stop_desc": "AV CHARLES LINDBERGH - 94065", "stop_name": "SAARINEN"}, "geometry": {"type": "Point", "coordinates": [2.355318565882519, 48.74971740744681]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3298809abce05258fdac90510578cefcc212c6fd", "fields": {"departement": "91", "stop_lat": 48.714776333210814, "code_postal": "91027", "stop_lon": 2.3712120754283355, "coord": [48.714776333210814, 2.3712120754283355], "stop_id": 4378127, "stop_desc": "PISTE GARE ROUTIERE - 91027", "stop_name": "PORTE DE L'ESSONNE"}, "geometry": {"type": "Point", "coordinates": [2.3712120754283355, 48.714776333210814]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ef81f7ec58ab20abc6af374cd67c460c0461f3c3", "fields": {"departement": "91", "stop_lat": 48.714776333210814, "code_postal": "91027", "stop_lon": 2.3712120754283355, "coord": [48.714776333210814, 2.3712120754283355], "stop_id": 4378128, "stop_desc": "PISTE GARE ROUTIERE - 91027", "stop_name": "PORTE DE L'ESSONNE"}, "geometry": {"type": "Point", "coordinates": [2.3712120754283355, 48.714776333210814]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c6345ac69f8833740e68e4068b832b18f3364fcb", "fields": {"departement": "91", "stop_lat": 48.7119284543995, "code_postal": "91027", "stop_lon": 2.391488468075179, "coord": [48.7119284543995, 2.391488468075179], "stop_id": 4378140, "stop_desc": "FACE 31 AV HENRI DUNANT - 91027", "stop_name": "CLOS NOLLET"}, "geometry": {"type": "Point", "coordinates": [2.391488468075179, 48.7119284543995]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9c4d6dfd0c97f736e9173eef1339d231ec9b07c3", "fields": {"departement": "91", "stop_lat": 48.712915379986754, "code_postal": "91027", "stop_lon": 2.39530617333297, "coord": [48.712915379986754, 2.39530617333297], "stop_id": 4378142, "stop_desc": "PL DU 19 MARS 1962 - 91027", "stop_name": "DELALANDE PASTEUR"}, "geometry": {"type": "Point", "coordinates": [2.39530617333297, 48.712915379986754]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "19ef9b404d7d57a48ba67279651f1831ecb0c631", "fields": {"departement": "91", "stop_lat": 48.71887055072017, "code_postal": "91027", "stop_lon": 2.4032730645091243, "coord": [48.71887055072017, 2.4032730645091243], "stop_id": 4378144, "stop_desc": "13-13 BIS R CAMILLE DESMOULINS - 91027", "stop_name": "DAGOBERT"}, "geometry": {"type": "Point", "coordinates": [2.4032730645091243, 48.71887055072017]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "713875e3b13c60164eb34753c3d79d8dc99ae67d", "fields": {"departement": "91", "stop_lat": 48.71295654054325, "code_postal": "91027", "stop_lon": 2.4025864333113263, "coord": [48.71295654054325, 2.4025864333113263], "stop_id": 4378153, "stop_desc": "R EDOUARD VAILLANT - 91027", "stop_name": "ATHIS-MONS RER"}, "geometry": {"type": "Point", "coordinates": [2.4025864333113263, 48.71295654054325]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3f4c462a2c8076c3c054993f2803c27d78d80c58", "fields": {"departement": "91", "stop_lat": 48.70913802898374, "code_postal": "91027", "stop_lon": 2.399634453413181, "coord": [48.70913802898374, 2.399634453413181], "stop_id": 4378156, "stop_desc": "R EDOUARD VAILLANT - 91027", "stop_name": "PROVENCE"}, "geometry": {"type": "Point", "coordinates": [2.399634453413181, 48.70913802898374]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6d0a453537c8e5c0a4a16bf42eafda817b891106", "fields": {"departement": "91", "stop_lat": 48.70546503377607, "code_postal": "91027", "stop_lon": 2.393002748957722, "coord": [48.70546503377607, 2.393002748957722], "stop_id": 4378160, "stop_desc": "FACE 3-5 R EDOUARD VAILLANT - 91027", "stop_name": "COTTAGE"}, "geometry": {"type": "Point", "coordinates": [2.393002748957722, 48.70546503377607]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fcbbb715464c950537716a43d20bd304e68d0008", "fields": {"departement": "91", "stop_lat": 48.70476451673544, "code_postal": "91027", "stop_lon": 2.3917390257535804, "coord": [48.70476451673544, 2.3917390257535804], "stop_id": 4378162, "stop_desc": "140-142 AVENUE DU 18 AVRIL - 91027", "stop_name": "COUBERTIN"}, "geometry": {"type": "Point", "coordinates": [2.3917390257535804, 48.70476451673544]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ac738f9281c44e40a732837d3a90f6fbb42d4a5e", "fields": {"departement": "91", "stop_lat": 48.69991406717884, "code_postal": "91027", "stop_lon": 2.383858078039875, "coord": [48.69991406717884, 2.383858078039875], "stop_id": 4378166, "stop_desc": "62 AV DU 18 AVRIL - 91027", "stop_name": "DOCTEUR GUERIN"}, "geometry": {"type": "Point", "coordinates": [2.383858078039875, 48.69991406717884]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f372616a50643290245d3f3d0dca408aeaf1d91a", "fields": {"departement": "91", "stop_lat": 48.69204209970009, "code_postal": "91326", "stop_lon": 2.3783930622157, "coord": [48.69204209970009, 2.3783930622157], "stop_id": 4378169, "stop_desc": "FACE 8 AVENUE DU GENERAL DE GAULLE - 91326", "stop_name": "HOTEL DE POLICE"}, "geometry": {"type": "Point", "coordinates": [2.3783930622157, 48.69204209970009]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "24f41260eb720306d5ba534e24abc912e63a9d6d", "fields": {"departement": "91", "stop_lat": 48.715546205730526, "code_postal": "91027", "stop_lon": 2.4007559590311742, "coord": [48.715546205730526, 2.4007559590311742], "stop_id": 4378173, "stop_desc": "85-87 R ROBERT SCHUMAN - 91027", "stop_name": "PLACE DE MONS"}, "geometry": {"type": "Point", "coordinates": [2.4007559590311742, 48.715546205730526]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2a27f65045636b311aa5646e37393afd2e3c436a", "fields": {"departement": "91", "stop_lat": 48.70942281040112, "code_postal": "91027", "stop_lon": 2.386582910577231, "coord": [48.70942281040112, 2.386582910577231], "stop_id": 4378176, "stop_desc": "AVENUE MARCEL SEMBAT - 91027", "stop_name": "PLACE HENRI DEUDON"}, "geometry": {"type": "Point", "coordinates": [2.386582910577231, 48.70942281040112]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c8a292966da749bc4ae2950ac1dccf34a7a1a5c1", "fields": {"departement": "91", "stop_lat": 48.70919439569311, "code_postal": "91027", "stop_lon": 2.37157513175139, "coord": [48.70919439569311, 2.37157513175139], "stop_id": 4378178, "stop_desc": "AVENUE FRANCOIS MITTERRAND - 91027", "stop_name": "ARISTIDE BRIAND"}, "geometry": {"type": "Point", "coordinates": [2.37157513175139, 48.70919439569311]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "574f718c596fdc95c1ed0dc2aa9cef221cd9fa2e", "fields": {"departement": "91", "stop_lat": 48.708322622460564, "code_postal": "91479", "stop_lon": 2.3711942807962907, "coord": [48.708322622460564, 2.3711942807962907], "stop_id": 4378182, "stop_desc": "BOULEVARD DE FONTAINEBLEAU - 91479", "stop_name": "ARISTIDE BRIAND"}, "geometry": {"type": "Point", "coordinates": [2.3711942807962907, 48.708322622460564]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5bb9c90569e67edc31d712475d93be95c25708ce", "fields": {"departement": "91", "stop_lat": 48.70646575078744, "code_postal": "91027", "stop_lon": 2.3862134249681155, "coord": [48.70646575078744, 2.3862134249681155], "stop_id": 4378189, "stop_desc": "R PAUL VAILLANT COUTURIER - 91027", "stop_name": "LA POSTE"}, "geometry": {"type": "Point", "coordinates": [2.3862134249681155, 48.70646575078744]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e7c1d92e34b7d8a3c0b43f79c1fd74c60b5d79c8", "fields": {"departement": "91", "stop_lat": 48.71936064297995, "code_postal": "91027", "stop_lon": 2.4105547978016584, "coord": [48.71936064297995, 2.4105547978016584], "stop_id": 4378202, "stop_desc": "20-22 R D'ABLON - 91027", "stop_name": "CARON"}, "geometry": {"type": "Point", "coordinates": [2.4105547978016584, 48.71936064297995]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "31eeb0de70fb2a42dde3b8a48dc3339144234897", "fields": {"departement": "92", "stop_lat": 48.803521250298296, "code_postal": "92023", "stop_lon": 2.257536080651971, "coord": [48.803521250298296, 2.257536080651971], "stop_id": 5091959, "stop_desc": "PLACE DU GARDE - 92023", "stop_name": "PLACE DU GARDE"}, "geometry": {"type": "Point", "coordinates": [2.257536080651971, 48.803521250298296]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b54a1aa298fd469a5da5a2395e447d83656513e5", "fields": {"departement": "92", "stop_lat": 48.77871896376598, "code_postal": "92060", "stop_lon": 2.2508830970288525, "coord": [48.77871896376598, 2.2508830970288525], "stop_id": 5091964, "stop_desc": "AVENUE PAUL LANGEVIN - 92060", "stop_name": "PARC DES SPORTS"}, "geometry": {"type": "Point", "coordinates": [2.2508830970288525, 48.77871896376598]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0fddf4450438b308d097db0cbe1701389fbb987b", "fields": {"departement": "92", "stop_lat": 48.77970846611399, "code_postal": "92060", "stop_lon": 2.252023847268724, "coord": [48.77970846611399, 2.252023847268724], "stop_id": 5091965, "stop_desc": "AVENUE PAUL LANGEVIN - 92060", "stop_name": "PARC DES SPORTS"}, "geometry": {"type": "Point", "coordinates": [2.252023847268724, 48.77970846611399]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2bdc956266e76b1cad60eaf6d35139ba458f0380", "fields": {"departement": "92", "stop_lat": 48.77985252630424, "code_postal": "92060", "stop_lon": 2.2405996233018097, "coord": [48.77985252630424, 2.2405996233018097], "stop_id": 5091969, "stop_desc": "AVENUE NEWTON - 92060", "stop_name": "PAVE BLANC"}, "geometry": {"type": "Point", "coordinates": [2.2405996233018097, 48.77985252630424]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e8b66a7b6abe6f8b802e6cc2ad5409b6107d32a2", "fields": {"departement": "92", "stop_lat": 48.776711452918306, "code_postal": "92060", "stop_lon": 2.2466026986059076, "coord": [48.776711452918306, 2.2466026986059076], "stop_id": 5091976, "stop_desc": "7 AVENUE DESCARTES - 92060", "stop_name": "GALILEE"}, "geometry": {"type": "Point", "coordinates": [2.2466026986059076, 48.776711452918306]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "17eca7265180f4d36a63e3711bff090d72bf344b", "fields": {"departement": "93", "stop_lat": 48.943839781116864, "code_postal": "93039", "stop_lon": 2.33556294499362, "coord": [48.943839781116864, 2.33556294499362], "stop_id": 5092008, "stop_desc": "FACE 58 QUAI DE LA MARINE - 93039", "stop_name": "CIMETIERE DE L'ILE-SAINT-DENIS"}, "geometry": {"type": "Point", "coordinates": [2.33556294499362, 48.943839781116864]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c7723e7803ba851df36a1d4fda39309fba166ea3", "fields": {"departement": "93", "stop_lat": 48.94632873479355, "code_postal": "93039", "stop_lon": 2.3275403645868376, "coord": [48.94632873479355, 2.3275403645868376], "stop_id": 5092011, "stop_desc": "QUAI DE LA MARINE - 93039", "stop_name": "COLLEGE SISLEY"}, "geometry": {"type": "Point", "coordinates": [2.3275403645868376, 48.94632873479355]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9a466c778abdcdce3f4eb774955d65585a886182", "fields": {"departement": "93", "stop_lat": 48.95542880742772, "code_postal": "93031", "stop_lon": 2.3068102232470666, "coord": [48.95542880742772, 2.3068102232470666], "stop_id": 5092014, "stop_desc": "FACE 115 RUE DE PARIS - 93031", "stop_name": "GILBERT BONNEMAISON"}, "geometry": {"type": "Point", "coordinates": [2.3068102232470666, 48.95542880742772]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "283eb751d221a03c577c439df3e6a46d13b6ab1f", "fields": {"departement": "93", "stop_lat": 48.95469036853042, "code_postal": "93031", "stop_lon": 2.3013113553940445, "coord": [48.95469036853042, 2.3013113553940445], "stop_id": 5092017, "stop_desc": "R DU 8 MAI 1945 - 93031", "stop_name": "EPINAY-SUR-SEINE - GARE"}, "geometry": {"type": "Point", "coordinates": [2.3013113553940445, 48.95469036853042]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cd4fa14782a55f4e8f3daa43fad6ff37c3a6db1c", "fields": {"departement": "78", "stop_lat": 48.78475348735156, "code_postal": "78640", "stop_lon": 2.2141360277295785, "coord": [48.78475348735156, 2.2141360277295785], "stop_id": 5121006, "stop_desc": "RUE MARCEL DASSAULT - 78640", "stop_name": "DEWOITINE"}, "geometry": {"type": "Point", "coordinates": [2.2141360277295785, 48.78475348735156]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9a56823c033c12cf4a6dcf11292eba1cac701f00", "fields": {"departement": "78", "stop_lat": 48.78573889535098, "code_postal": "78640", "stop_lon": 2.2110189404706735, "coord": [48.78573889535098, 2.2110189404706735], "stop_id": 5121014, "stop_desc": "RUE MARCEL DASSAULT - 78640", "stop_name": "DASSAULT"}, "geometry": {"type": "Point", "coordinates": [2.2110189404706735, 48.78573889535098]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5b6b7ee2c4cefc4e3bc8569573e5b336ecc28112", "fields": {"departement": "92", "stop_lat": 48.79423166705624, "code_postal": "92048", "stop_lon": 2.2189700980748905, "coord": [48.79423166705624, 2.2189700980748905], "stop_id": 5121019, "stop_desc": "287 ROUTE DE VERRIERES - 92048", "stop_name": "ERMITAGE DE VILLEBON"}, "geometry": {"type": "Point", "coordinates": [2.2189700980748905, 48.79423166705624]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "10fae1faa4d5ccca8abe40a0fcad1d3d39db3c3f", "fields": {"departement": "78", "stop_lat": 48.783380109019745, "code_postal": "78640", "stop_lon": 2.2250200150825936, "coord": [48.783380109019745, 2.2250200150825936], "stop_id": 5121023, "stop_desc": "RUE DU PETIT CLAMART - 78640", "stop_name": "MEUDON-LA-FORET"}, "geometry": {"type": "Point", "coordinates": [2.2250200150825936, 48.783380109019745]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "975a2ed021e66677f119dd519a233f90dbb101f7", "fields": {"departement": "92", "stop_lat": 48.777551201449555, "code_postal": "92023", "stop_lon": 2.2296699995679092, "coord": [48.777551201449555, 2.2296699995679092], "stop_id": 5121025, "stop_desc": "11 ROUTE DE LA GARENNE - 92023", "stop_name": "ROND-POINT DU PETIT CLAMART"}, "geometry": {"type": "Point", "coordinates": [2.2296699995679092, 48.777551201449555]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fb54c1f06b79cc107637f6209c628b9395ccc6c8", "fields": {"departement": "92", "stop_lat": 48.76867917458104, "code_postal": "92019", "stop_lon": 2.2506686367640447, "coord": [48.76867917458104, 2.2506686367640447], "stop_id": 5121031, "stop_desc": "6 AVENUE DE LA DIVISION LECLERC - 92019", "stop_name": "CYRANO DE BERGERAC"}, "geometry": {"type": "Point", "coordinates": [2.2506686367640447, 48.76867917458104]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e6a45075201546cabc3793b62ef01fef5749c45a", "fields": {"departement": "92", "stop_lat": 48.76119681717594, "code_postal": "92002", "stop_lon": 2.2914392094374683, "coord": [48.76119681717594, 2.2914392094374683], "stop_id": 5121045, "stop_desc": "187 AVENUE DU GENERALE DE GAULLE - 92002", "stop_name": "CARREFOUR DE L'EUROPE"}, "geometry": {"type": "Point", "coordinates": [2.2914392094374683, 48.76119681717594]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3b63802e895436359f75e2542c3b1153d1104cd7", "fields": {"departement": "92", "stop_lat": 48.76244127336439, "code_postal": "92002", "stop_lon": 2.3037147773341946, "coord": [48.76244127336439, 2.3037147773341946], "stop_id": 5121049, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 92002", "stop_name": "LA CROIX DE BERNY RER"}, "geometry": {"type": "Point", "coordinates": [2.3037147773341946, 48.76244127336439]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "898d9ed50438a699dbb37f35947057790133898a", "fields": {"departement": "92", "stop_lat": 48.76150195135867, "code_postal": "92019", "stop_lon": 2.290256160129339, "coord": [48.76150195135867, 2.290256160129339], "stop_id": 5121050, "stop_desc": "6 AVENUE DE LA DIVISION LECLERC - 92019", "stop_name": "CARREFOUR DE L'EUROPE"}, "geometry": {"type": "Point", "coordinates": [2.290256160129339, 48.76150195135867]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c13e13ef8ffd0558fdf48ae4ad0a5614f3ae14a4", "fields": {"departement": "92", "stop_lat": 48.77268287806658, "code_postal": "92060", "stop_lon": 2.244094077916302, "coord": [48.77268287806658, 2.244094077916302], "stop_id": 5121052, "stop_desc": "AVENUE DE LA DIVISION LECLERC - 92060", "stop_name": "AVENUE GALILEE"}, "geometry": {"type": "Point", "coordinates": [2.244094077916302, 48.77268287806658]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "790105a82937dd81c780577aafd68ad29fe17075", "fields": {"departement": "92", "stop_lat": 48.80365618046732, "code_postal": "92048", "stop_lon": 2.2342692363964143, "coord": [48.80365618046732, 2.2342692363964143], "stop_id": 5121319, "stop_desc": "FACE 6 AV DE TRIVAUX - 92048", "stop_name": "TRIVAUX - VERTUGADINS - LYCEE"}, "geometry": {"type": "Point", "coordinates": [2.2342692363964143, 48.80365618046732]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fe384cb941b0f7ff3d1e6a7e3eac02cd953a3eb7", "fields": {"departement": "92", "stop_lat": 48.82287845737709, "code_postal": "92072", "stop_lon": 2.2217223427454194, "coord": [48.82287845737709, 2.2217223427454194], "stop_id": 5121334, "stop_desc": "24 AVENUE DE LA DIVISION LECLERC - 92072", "stop_name": "BRIMBORION - DIVISION LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.2217223427454194, 48.82287845737709]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "afd7b7bd4fb01a65a50ee0312a99716aa44e7293", "fields": {"departement": "92", "stop_lat": 48.831673816907355, "code_postal": "92012", "stop_lon": 2.237685092238732, "coord": [48.831673816907355, 2.237685092238732], "stop_id": 5121340, "stop_desc": "35 AVENUE DU GENERAL LECLERC - 92012", "stop_name": "BILLANCOURT-METRO"}, "geometry": {"type": "Point", "coordinates": [2.237685092238732, 48.831673816907355]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a6cb2331fc20793728ff45b538ca948170e99829", "fields": {"departement": "75", "stop_lat": 48.838837106438454, "code_postal": "75116", "stop_lon": 2.262478687427494, "coord": [48.838837106438454, 2.262478687427494], "stop_id": 5121349, "stop_desc": "27 RUE CLAUDE TERRASSE - 75116", "stop_name": "VERSAILLES - CHARDON LAGACHE"}, "geometry": {"type": "Point", "coordinates": [2.262478687427494, 48.838837106438454]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2c486f028f7d8461327eb27bc26187a36c1d8f9a", "fields": {"departement": "75", "stop_lat": 48.8409511553474, "code_postal": "75116", "stop_lon": 2.26568901604171, "coord": [48.8409511553474, 2.26568901604171], "stop_id": 5121350, "stop_desc": "167 AVENUE DE VERSAILLES - 75116", "stop_name": "VERSAILLES - EXELMANS"}, "geometry": {"type": "Point", "coordinates": [2.26568901604171, 48.8409511553474]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "42476f1f25e7519a6ec941709a41640d3f6ad928", "fields": {"departement": "75", "stop_lat": 48.84281366597419, "code_postal": "75116", "stop_lon": 2.2692539662291007, "coord": [48.84281366597419, 2.2692539662291007], "stop_id": 5121352, "stop_desc": "127 AVENUE DE VERSAILLES - 75116", "stop_name": "VICTORIEN SARDOU"}, "geometry": {"type": "Point", "coordinates": [2.2692539662291007, 48.84281366597419]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4dfe05d82c59c2a77cdabc1844c769369a7736a6", "fields": {"departement": "75", "stop_lat": 48.8489498688076, "code_postal": "75115", "stop_lon": 2.2822648220421606, "coord": [48.8489498688076, 2.2822648220421606], "stop_id": 5121362, "stop_desc": "3 RUE LINOIS - 75115", "stop_name": "PONT DE GRENELLE - PLACE FERNAND FOREST"}, "geometry": {"type": "Point", "coordinates": [2.2822648220421606, 48.8489498688076]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "32ca52a834efd2744f0c747b59c4140e0546c533", "fields": {"departement": "75", "stop_lat": 48.8470493169713, "code_postal": "75115", "stop_lon": 2.2938826456393087, "coord": [48.8470493169713, 2.2938826456393087], "stop_id": 5121366, "stop_desc": "PLACE ALFRED DREYFUS - 75115", "stop_name": "AVENUE EMILE ZOLA"}, "geometry": {"type": "Point", "coordinates": [2.2938826456393087, 48.8470493169713]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c1eaec15beba72f1bfa4e16beea7687b48e7e780", "fields": {"departement": "75", "stop_lat": 48.84770737146619, "code_postal": "75115", "stop_lon": 2.299669646594125, "coord": [48.84770737146619, 2.299669646594125], "stop_id": 5121368, "stop_desc": "47 RUE FREMICOURT - 75115", "stop_name": "CAMBRONNE"}, "geometry": {"type": "Point", "coordinates": [2.299669646594125, 48.84770737146619]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "288f39cdc37784f927b11f8d51f2c62588a00c69", "fields": {"departement": "75", "stop_lat": 48.84187918982126, "code_postal": "75115", "stop_lon": 2.3202616185071085, "coord": [48.84187918982126, 2.3202616185071085], "stop_id": 5121381, "stop_desc": "PLACE RAOUL DAUTRY - 75115", "stop_name": "GARE MONTPARNASSE"}, "geometry": {"type": "Point", "coordinates": [2.3202616185071085, 48.84187918982126]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6d9157b84b00649fc9da46b79c4a8df5f0f2e274", "fields": {"departement": "75", "stop_lat": 48.84077310974983, "code_postal": "75115", "stop_lon": 2.3164086680713942, "coord": [48.84077310974983, 2.3164086680713942], "stop_id": 5121385, "stop_desc": "65 BOULEVARD DE VAUGIRARD - 75115", "stop_name": "ARMORIQUE - MUSEE POSTAL"}, "geometry": {"type": "Point", "coordinates": [2.3164086680713942, 48.84077310974983]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "46bfefe6b5f38accfe1248caba6c5535d12ed680", "fields": {"departement": "75", "stop_lat": 48.83348531490719, "code_postal": "75114", "stop_lon": 2.324375805227016, "coord": [48.83348531490719, 2.324375805227016], "stop_id": 5121392, "stop_desc": "158 AVENUE DU MAINE - 75114", "stop_name": "CHATEAU - MAIRIE DU 14E"}, "geometry": {"type": "Point", "coordinates": [2.324375805227016, 48.83348531490719]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d4db52fd5e0763b4e53cdb24aec95088cf1256bf", "fields": {"departement": "75", "stop_lat": 48.83250570951872, "code_postal": "75114", "stop_lon": 2.3247844616165105, "coord": [48.83250570951872, 2.3247844616165105], "stop_id": 5121394, "stop_desc": "178 AVENUE DU MAINE - 75114", "stop_name": "MAIRIE DU 14E"}, "geometry": {"type": "Point", "coordinates": [2.3247844616165105, 48.83250570951872]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6d6e21a994f939f169db575acf7861c4111533bd", "fields": {"departement": "75", "stop_lat": 48.82735598995444, "code_postal": "75114", "stop_lon": 2.326759500564941, "coord": [48.82735598995444, 2.326759500564941], "stop_id": 5121399, "stop_desc": "83-85 AVENUE DU GENERAL LECLERC - 75114", "stop_name": "ALESIA - GENERAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.326759500564941, 48.82735598995444]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "57e1b050f0d54d29ae89e71206d756e1172e1d20", "fields": {"departement": "75", "stop_lat": 48.82356309968058, "code_postal": "75114", "stop_lon": 2.3256985758622, "coord": [48.82356309968058, 2.3256985758622], "stop_id": 5121401, "stop_desc": "123 AVENUE DU GENERAL LECLERC - 75114", "stop_name": "PORTE D'ORLEANS"}, "geometry": {"type": "Point", "coordinates": [2.3256985758622, 48.82356309968058]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "028305218e76c7f07373da57c836049b7babe39d", "fields": {"departement": "75", "stop_lat": 48.8237688886814, "code_postal": "75114", "stop_lon": 2.3184299973037343, "coord": [48.8237688886814, 2.3184299973037343], "stop_id": 5121403, "stop_desc": "AVENUE ERNEST REYER - 75114", "stop_name": "JEAN MOULIN"}, "geometry": {"type": "Point", "coordinates": [2.3184299973037343, 48.8237688886814]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b57a1e6af18bb1f3ddb54488ab653efc9c1c025d", "fields": {"departement": "92", "stop_lat": 48.821745681267025, "code_postal": "92046", "stop_lon": 2.313013571294374, "coord": [48.821745681267025, 2.313013571294374], "stop_id": 5121405, "stop_desc": "FACE 37 AV PIERRE BROSSOLETTE - 92046", "stop_name": "DEPINOY"}, "geometry": {"type": "Point", "coordinates": [2.313013571294374, 48.821745681267025]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c1d98539d3fbf1aabdadeb07d2fc7348a7e0b838", "fields": {"departement": "92", "stop_lat": 48.797594084137074, "code_postal": "92020", "stop_lon": 2.281829440896584, "coord": [48.797594084137074, 2.281829440896584], "stop_id": 5121416, "stop_desc": "FACE 37 AVENUE DE LA DIVISION LECLERC - 92020", "stop_name": "LES SABLONS"}, "geometry": {"type": "Point", "coordinates": [2.281829440896584, 48.797594084137074]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "77f090a72e1f9543db0062553116ee6697af8212", "fields": {"departement": "92", "stop_lat": 48.78691790681044, "code_postal": "92023", "stop_lon": 2.2535626256996477, "coord": [48.78691790681044, 2.2535626256996477], "stop_id": 5121420, "stop_desc": "AVENUE CLAUDE TREBIGNAUD - 92023", "stop_name": "HOPITAL ANTOINE BECLERE"}, "geometry": {"type": "Point", "coordinates": [2.2535626256996477, 48.78691790681044]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dc712c21a86abdbb16741edf00349a6767bb9b46", "fields": {"departement": "92", "stop_lat": 48.787037998768085, "code_postal": "92023", "stop_lon": 2.2457685628922226, "coord": [48.787037998768085, 2.2457685628922226], "stop_id": 5121422, "stop_desc": "FACE 179 R DE LA PORTE DE TRIVAUX - 92023", "stop_name": "CIMETIERE INTERCOMMUNAL"}, "geometry": {"type": "Point", "coordinates": [2.2457685628922226, 48.787037998768085]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "121b66e785d27d31baf66c37ecc04d69fca25932", "fields": {"departement": "78", "stop_lat": 48.78056751694995, "code_postal": "78640", "stop_lon": 2.192358456038206, "coord": [48.78056751694995, 2.192358456038206], "stop_id": 5121439, "stop_desc": "AVENUE DE L'EUROPE (CHAUSSEE NORD) - 78640", "stop_name": "MAIRIE DE VELIZY"}, "geometry": {"type": "Point", "coordinates": [2.192358456038206, 48.78056751694995]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f0908167e016f7e8c2794d86f56f65f6fa12db51", "fields": {"departement": "92", "stop_lat": 48.78926265301571, "code_postal": "92023", "stop_lon": 2.2520081681720394, "coord": [48.78926265301571, 2.2520081681720394], "stop_id": 5121447, "stop_desc": "169 ROUTE DE LA PORTE DE TRIVAUX - 92023", "stop_name": "EUGENE BEAUJARD"}, "geometry": {"type": "Point", "coordinates": [2.2520081681720394, 48.78926265301571]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "00a3884ba25d8858c225a7a29f3447d51dc1b3de", "fields": {"departement": "92", "stop_lat": 48.90267847704068, "code_postal": "92044", "stop_lon": 2.288137818957316, "coord": [48.90267847704068, 2.288137818957316], "stop_id": 5121466, "stop_desc": "88 QUAI MICHELET - 92044", "stop_name": "QUAI DE CLICHY"}, "geometry": {"type": "Point", "coordinates": [2.288137818957316, 48.90267847704068]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d83c879268c35704caedf2f2e43dc02ae30293ff", "fields": {"departement": "92", "stop_lat": 48.90633548629876, "code_postal": "92004", "stop_lon": 2.2863893056203586, "coord": [48.90633548629876, 2.2863893056203586], "stop_id": 5121468, "stop_desc": "RUE GRANDE RUE - 92004", "stop_name": "RUE DE LA STATION"}, "geometry": {"type": "Point", "coordinates": [2.2863893056203586, 48.90633548629876]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5e5c0703200fd60af87e4edffe5f95cbc6de71bc", "fields": {"departement": "92", "stop_lat": 48.91540172320488, "code_postal": "92004", "stop_lon": 2.282589717064443, "coord": [48.91540172320488, 2.282589717064443], "stop_id": 5121475, "stop_desc": "107 AVENUE D'ARGENTEUIL - 92004", "stop_name": "RUE DES CHAMPS"}, "geometry": {"type": "Point", "coordinates": [2.282589717064443, 48.91540172320488]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "06a994912d5a75947096615a7abc66b39f3f762e", "fields": {"departement": "92", "stop_lat": 48.93762453557405, "code_postal": "92036", "stop_lon": 2.278719377274554, "coord": [48.93762453557405, 2.278719377274554], "stop_id": 5121485, "stop_desc": "BOULEVARD INTERCOMMUNAL - 92036", "stop_name": "PORT DE GENNEVILLIERS - CENTRE DE VIE"}, "geometry": {"type": "Point", "coordinates": [2.278719377274554, 48.93762453557405]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a50ce31fa812ec3a80396b3cc7ff40a666430ee9", "fields": {"departement": "92", "stop_lat": 48.94635817395166, "code_postal": "92036", "stop_lon": 2.2966646333099496, "coord": [48.94635817395166, 2.2966646333099496], "stop_id": 5121495, "stop_desc": "23 CHEMIN DES PETITS MARAIS - 92036", "stop_name": "CHEMIN DES PETITS MARAIS"}, "geometry": {"type": "Point", "coordinates": [2.2966646333099496, 48.94635817395166]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3ea2356c43a2505473a529d0b5be17ac29c15faf", "fields": {"departement": "92", "stop_lat": 48.946567257702405, "code_postal": "92036", "stop_lon": 2.304427774639328, "coord": [48.946567257702405, 2.304427774639328], "stop_id": 5121498, "stop_desc": "2 CHEMIN DES PETITS MARAIS - 92036", "stop_name": "DEQUEVAUVILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.304427774639328, 48.946567257702405]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3b33173ce5ad62915ac2517c6c51b1da58a98c39", "fields": {"departement": "93", "stop_lat": 48.95542880742772, "code_postal": "93031", "stop_lon": 2.3068102232470666, "coord": [48.95542880742772, 2.3068102232470666], "stop_id": 5121501, "stop_desc": "FACE 115 RUE DE PARIS - 93031", "stop_name": "GILBERT BONNEMAISON"}, "geometry": {"type": "Point", "coordinates": [2.3068102232470666, 48.95542880742772]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "97be15763dfaccbe15ca9d5b91fdd54c0b30e1e9", "fields": {"departement": "95", "stop_lat": 48.96289851620853, "code_postal": "95555", "stop_lon": 2.285815088300164, "coord": [48.96289851620853, 2.285815088300164], "stop_id": 5121513, "stop_desc": "RUE MASSENET - 95555", "stop_name": "SAINT-GRATIEN - RER"}, "geometry": {"type": "Point", "coordinates": [2.285815088300164, 48.96289851620853]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "99c9f6a9cd9e17ca7599954aec655a2b86e6e560", "fields": {"departement": "95", "stop_lat": 48.96284437769105, "code_postal": "95555", "stop_lon": 2.2853101637876088, "coord": [48.96284437769105, 2.2853101637876088], "stop_id": 5121514, "stop_desc": "RUE MASSENET - 95555", "stop_name": "SAINT-GRATIEN - RER"}, "geometry": {"type": "Point", "coordinates": [2.2853101637876088, 48.96284437769105]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "76107ff0a85f84183d61866107b147f8093be5c8", "fields": {"departement": "92", "stop_lat": 48.82793583422805, "code_postal": "92012", "stop_lon": 2.2502702943416515, "coord": [48.82793583422805, 2.2502702943416515], "stop_id": 5121568, "stop_desc": "32 AVENUE PIERRE GRENIER - 92012", "stop_name": "RUE DE SEINE"}, "geometry": {"type": "Point", "coordinates": [2.2502702943416515, 48.82793583422805]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1bd46ea8ea5f5364a3a5829ea40f73b62802d212", "fields": {"departement": "92", "stop_lat": 48.82168067250145, "code_postal": "92040", "stop_lon": 2.250621051266338, "coord": [48.82168067250145, 2.250621051266338], "stop_id": 5121574, "stop_desc": "PLACE DE LA RESISTANCE - 92040", "stop_name": "LES MOULINEAUX"}, "geometry": {"type": "Point", "coordinates": [2.250621051266338, 48.82168067250145]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "83aca66aa6690dec98639e02d73a091f9532b457", "fields": {"departement": "92", "stop_lat": 48.81738297952943, "code_postal": "92048", "stop_lon": 2.2484914828572733, "coord": [48.81738297952943, 2.2484914828572733], "stop_id": 5121576, "stop_desc": "2-2 BIS RUE DE PARIS - 92048", "stop_name": "CARREFOUR DE LA FERME"}, "geometry": {"type": "Point", "coordinates": [2.2484914828572733, 48.81738297952943]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4c86bdcd28a9bdd30439533e364409bd213303b1", "fields": {"departement": "92", "stop_lat": 48.806337564978776, "code_postal": "92048", "stop_lon": 2.2378153250332398, "coord": [48.806337564978776, 2.2378153250332398], "stop_id": 5121583, "stop_desc": "1 AVENUE VICTOR HUGO - 92048", "stop_name": "VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.2378153250332398, 48.806337564978776]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eeb1ec5d7a9dbb2ec165da801f97363b6a850466", "fields": {"departement": "92", "stop_lat": 48.79875659480729, "code_postal": "92048", "stop_lon": 2.2328776451445167, "coord": [48.79875659480729, 2.2328776451445167], "stop_id": 5121587, "stop_desc": "10 AVENUE DE TRIVAUX - 92048", "stop_name": "CIMETIERE DE TRIVAUX"}, "geometry": {"type": "Point", "coordinates": [2.2328776451445167, 48.79875659480729]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "444bba13d7c14040f34a8b48a33dd009c1c7bc8c", "fields": {"departement": "92", "stop_lat": 48.785882969066456, "code_postal": "92048", "stop_lon": 2.2295711321190135, "coord": [48.785882969066456, 2.2295711321190135], "stop_id": 5121595, "stop_desc": "AVENUE DU MARECHAL DE LATTRE DE TASSIGNY - 92048", "stop_name": "LE LAC"}, "geometry": {"type": "Point", "coordinates": [2.2295711321190135, 48.785882969066456]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "39dabfbb516e6b3c3d0bf30c05671980f7f2082f", "fields": {"departement": "92", "stop_lat": 48.80319813132894, "code_postal": "92048", "stop_lon": 2.2346511158179676, "coord": [48.80319813132894, 2.2346511158179676], "stop_id": 5121601, "stop_desc": "RUE DES VERTUGADINS - 92048", "stop_name": "TRIVAUX - VERTUGADINS"}, "geometry": {"type": "Point", "coordinates": [2.2346511158179676, 48.80319813132894]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "448cdb18af95035732b96a28aa5a22717472f8f8", "fields": {"departement": "92", "stop_lat": 48.8101529346381, "code_postal": "92048", "stop_lon": 2.2434144816444856, "coord": [48.8101529346381, 2.2434144816444856], "stop_id": 5121603, "stop_desc": "FACE 58 AVENUE JEAN JAURES - 92048", "stop_name": "SAINT GERMAIN - JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.2434144816444856, 48.8101529346381]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f5739bb158590eab44c0c226bebd9557f4666119", "fields": {"departement": "92", "stop_lat": 48.81877841626567, "code_postal": "92040", "stop_lon": 2.2516874897032806, "coord": [48.81877841626567, 2.2516874897032806], "stop_id": 5121605, "stop_desc": "31 RUE DU DOCTEUR LOMBARD - 92040", "stop_name": "VERDUN - DOCTEUR LOMBARD"}, "geometry": {"type": "Point", "coordinates": [2.2516874897032806, 48.81877841626567]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "32287b7c2652776a660dcdc7b471bcc4e4c49a81", "fields": {"departement": "92", "stop_lat": 48.82956904799564, "code_postal": "92012", "stop_lon": 2.235715243309229, "coord": [48.82956904799564, 2.235715243309229], "stop_id": 5121608, "stop_desc": "1099 RUE YVES KERMEN - 92012", "stop_name": "GENERAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.235715243309229, 48.82956904799564]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "871dccf84510090de9c94c10e70f172806a4d1a5", "fields": {"departement": "92", "stop_lat": 48.82822027480617, "code_postal": "92012", "stop_lon": 2.2349827985612585, "coord": [48.82822027480617, 2.2349827985612585], "stop_id": 5121610, "stop_desc": "12 CRS DE L'ILE SEGUIN - 92012", "stop_name": "COURS DE L'ILE SEGUIN"}, "geometry": {"type": "Point", "coordinates": [2.2349827985612585, 48.82822027480617]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9b8aef61ee9432dc17bf1da3dac40be70aef43e9", "fields": {"departement": "92", "stop_lat": 48.82834681210375, "code_postal": "92012", "stop_lon": 2.2358129236647164, "coord": [48.82834681210375, 2.2358129236647164], "stop_id": 5121611, "stop_desc": "37 CRS DE L'ILE SEGUIN - 92012", "stop_name": "COURS DE L'ILE SEGUIN"}, "geometry": {"type": "Point", "coordinates": [2.2358129236647164, 48.82834681210375]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a57fbc8e76ae4d5f31d60dc2ac4ba59d09d54b0b", "fields": {"departement": "92", "stop_lat": 48.82605636775514, "code_postal": "92012", "stop_lon": 2.237478076359055, "coord": [48.82605636775514, 2.237478076359055], "stop_id": 5121612, "stop_desc": "FACE 50 AV PIERRE LEFAUCHEUX - 92012", "stop_name": "PARC DE BILLANCOURT"}, "geometry": {"type": "Point", "coordinates": [2.237478076359055, 48.82605636775514]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e1a4f17b1e6f11838a7f1a02d0e7df901d8efa9b", "fields": {"departement": "92", "stop_lat": 48.818566538438866, "code_postal": "92048", "stop_lon": 2.2447875037770855, "coord": [48.818566538438866, 2.2447875037770855], "stop_id": 5121625, "stop_desc": "169 AVENUE DE VERDUN - 92048", "stop_name": "GROUPE SCOLAIRE BROSSOLETTE"}, "geometry": {"type": "Point", "coordinates": [2.2447875037770855, 48.818566538438866]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "862afcff38b62fefff3ec32b8934b335f8784e2d", "fields": {"departement": "92", "stop_lat": 48.8149894949538, "code_postal": "92048", "stop_lon": 2.2339473492547812, "coord": [48.8149894949538, 2.2339473492547812], "stop_id": 5121633, "stop_desc": "40 BOULEVARD VERD-DE-ST JULIEN - 92048", "stop_name": "STALINGRAD"}, "geometry": {"type": "Point", "coordinates": [2.2339473492547812, 48.8149894949538]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f127cfaafe71a64bcae49f30dd84089baccc9205", "fields": {"departement": "92", "stop_lat": 48.78882610499131, "code_postal": "92048", "stop_lon": 2.234176222510831, "coord": [48.78882610499131, 2.234176222510831], "stop_id": 5121644, "stop_desc": "AVENUE ROBERT SCHUMAN - 92048", "stop_name": "TAPIS VERT"}, "geometry": {"type": "Point", "coordinates": [2.234176222510831, 48.78882610499131]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3c91186354218a1e5c6800496ac29b680c21bc1d", "fields": {"departement": "92", "stop_lat": 48.78951587021313, "code_postal": "92048", "stop_lon": 2.2315495674082637, "coord": [48.78951587021313, 2.2315495674082637], "stop_id": 5121646, "stop_desc": "AVENUE MEDERIC - 92048", "stop_name": "SQUARE MEDERIC"}, "geometry": {"type": "Point", "coordinates": [2.2315495674082637, 48.78951587021313]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ad7053f091918cad3e1be3cecdd711189e321915", "fields": {"departement": "92", "stop_lat": 48.78725665822654, "code_postal": "92048", "stop_lon": 2.2279632565302556, "coord": [48.78725665822654, 2.2279632565302556], "stop_id": 5121657, "stop_desc": "17 AVENUE DE CELLE - 92048", "stop_name": "EGLISE - AVENUE DE CELLE"}, "geometry": {"type": "Point", "coordinates": [2.2279632565302556, 48.78725665822654]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f00fa31763f9510965c20631ad0744967b87c64d", "fields": {"departement": "92", "stop_lat": 48.785882969066456, "code_postal": "92048", "stop_lon": 2.2295711321190135, "coord": [48.785882969066456, 2.2295711321190135], "stop_id": 5121659, "stop_desc": "AVENUE DU MARECHAL DE LATTRE DE TASSIGNY - 92048", "stop_name": "LE LAC"}, "geometry": {"type": "Point", "coordinates": [2.2295711321190135, 48.785882969066456]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "be99c1ced961d2a729f2a06249bec191321a4c42", "fields": {"departement": "92", "stop_lat": 48.78618865721884, "code_postal": "92048", "stop_lon": 2.2296793115262967, "coord": [48.78618865721884, 2.2296793115262967], "stop_id": 5121660, "stop_desc": "16 AVENUE DU MARECHAL DE LATTRE DE TASSIGNY - 92048", "stop_name": "LE LAC"}, "geometry": {"type": "Point", "coordinates": [2.2296793115262967, 48.78618865721884]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "021df5dfddfe39bc9f213d5150c9b808e8e42435", "fields": {"departement": "92", "stop_lat": 48.829042334210506, "code_postal": "92012", "stop_lon": 2.2295360266497624, "coord": [48.829042334210506, 2.2295360266497624], "stop_id": 5121669, "stop_desc": "AVENUE DU GENERAL LECLERC - 92012", "stop_name": "PONT DE SEVRES-METRO"}, "geometry": {"type": "Point", "coordinates": [2.2295360266497624, 48.829042334210506]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7c39f7221498faac9f95d50c15b080be87cc8a37", "fields": {"departement": "92", "stop_lat": 48.82692273104491, "code_postal": "92012", "stop_lon": 2.2418051290317815, "coord": [48.82692273104491, 2.2418051290317815], "stop_id": 5121678, "stop_desc": "6 PLACE JULES GUESDE - 92012", "stop_name": "PLACE JULES GUESDE"}, "geometry": {"type": "Point", "coordinates": [2.2418051290317815, 48.82692273104491]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ec1bdfbadadd5754fb5f9c48ae026e6f60f1e8e1", "fields": {"departement": "92", "stop_lat": 48.82167109764111, "code_postal": "92040", "stop_lon": 2.2498180216492933, "coord": [48.82167109764111, 2.2498180216492933], "stop_id": 5121683, "stop_desc": "PLACE DE LA RESISTANCE - 92040", "stop_name": "LES MOULINEAUX"}, "geometry": {"type": "Point", "coordinates": [2.2498180216492933, 48.82167109764111]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e128612d0a3d6147c1f733e79891a450ba12cd79", "fields": {"departement": "92", "stop_lat": 48.81879641264312, "code_postal": "92048", "stop_lon": 2.229570900490973, "coord": [48.81879641264312, 2.229570900490973], "stop_id": 5121691, "stop_desc": "PLACE DE LA GARE - 92048", "stop_name": "GARE DE BELLEVUE"}, "geometry": {"type": "Point", "coordinates": [2.229570900490973, 48.81879641264312]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a7287678308f28e7406d2f4b78eb29f11b5f9cce", "fields": {"departement": "92", "stop_lat": 48.8149894949538, "code_postal": "92048", "stop_lon": 2.2339473492547812, "coord": [48.8149894949538, 2.2339473492547812], "stop_id": 5121695, "stop_desc": "40 BOULEVARD VERD-DE-ST JULIEN - 92048", "stop_name": "STALINGRAD"}, "geometry": {"type": "Point", "coordinates": [2.2339473492547812, 48.8149894949538]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aac1d489706e334624985cd6ad469c2242e183ff", "fields": {"departement": "92", "stop_lat": 48.80800792839804, "code_postal": "92048", "stop_lon": 2.2361928494598557, "coord": [48.80800792839804, 2.2361928494598557], "stop_id": 5121700, "stop_desc": "49-51 AVENUE DE LA REPUBLIQUE - 92048", "stop_name": "EGLISE DE MEUDON"}, "geometry": {"type": "Point", "coordinates": [2.2361928494598557, 48.80800792839804]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cbf9d865ee7a9a800e00b9757c117812c3610591", "fields": {"departement": "92", "stop_lat": 48.798927673593, "code_postal": "92048", "stop_lon": 2.2332310308419236, "coord": [48.798927673593, 2.2332310308419236], "stop_id": 5121704, "stop_desc": "AVENUE DE TRIVAUX - 92048", "stop_name": "CIMETIERE DE TRIVAUX"}, "geometry": {"type": "Point", "coordinates": [2.2332310308419236, 48.798927673593]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c2323a3cca7a655a66dbfa356d5ed675f0c506b1", "fields": {"departement": "92", "stop_lat": 48.78882610499131, "code_postal": "92048", "stop_lon": 2.234176222510831, "coord": [48.78882610499131, 2.234176222510831], "stop_id": 5121706, "stop_desc": "AVENUE ROBERT SCHUMAN - 92048", "stop_name": "TAPIS VERT"}, "geometry": {"type": "Point", "coordinates": [2.234176222510831, 48.78882610499131]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dcb5c81e1675d259b2eb57d0e25cf89fdc9d65b8", "fields": {"departement": "92", "stop_lat": 48.7902763590761, "code_postal": "92048", "stop_lon": 2.227698450190972, "coord": [48.7902763590761, 2.227698450190972], "stop_id": 5121710, "stop_desc": "AVENUE HENRI DALSEME - 92048", "stop_name": "ACACIAS"}, "geometry": {"type": "Point", "coordinates": [2.227698450190972, 48.7902763590761]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c577ae1bc109e5fc50a6841710a50550d5abd74d", "fields": {"departement": "92", "stop_lat": 48.789813861465184, "code_postal": "92048", "stop_lon": 2.2233193891349172, "coord": [48.789813861465184, 2.2233193891349172], "stop_id": 5121711, "stop_desc": "4 AVENUE DU MARECHAL LECLERC - 92048", "stop_name": "CENTRE COMMERCIAL DU MOULIN"}, "geometry": {"type": "Point", "coordinates": [2.2233193891349172, 48.789813861465184]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f7d30add5b999f2d0d133385057127f7cc63e01d", "fields": {"departement": "92", "stop_lat": 48.786921728022854, "code_postal": "92048", "stop_lon": 2.225406815269084, "coord": [48.786921728022854, 2.225406815269084], "stop_id": 5121715, "stop_desc": "43 AVENUE DU GENERAL DE GAULLE - 92048", "stop_name": "ROSERAIE"}, "geometry": {"type": "Point", "coordinates": [2.225406815269084, 48.786921728022854]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bec1830c04b07605c5eaa22288f5608e5a5cd90d", "fields": {"departement": "92", "stop_lat": 48.78725665822654, "code_postal": "92048", "stop_lon": 2.2279632565302556, "coord": [48.78725665822654, 2.2279632565302556], "stop_id": 5121717, "stop_desc": "17 AVENUE DE CELLE - 92048", "stop_name": "EGLISE - AVENUE DE CELLE"}, "geometry": {"type": "Point", "coordinates": [2.2279632565302556, 48.78725665822654]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "32a78a495bc698a4468ea6a7b429ec07ba6175e9", "fields": {"departement": "92", "stop_lat": 48.787405564917776, "code_postal": "92048", "stop_lon": 2.2336621671073633, "coord": [48.787405564917776, 2.2336621671073633], "stop_id": 5121721, "stop_desc": "AVENUE DU MARECHAL DE LATTRE DE TASSIGNY - 92048", "stop_name": "ESPACE CULTUREL - ROBERT DOISNEAU"}, "geometry": {"type": "Point", "coordinates": [2.2336621671073633, 48.787405564917776]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f5b57255857274feea88eaa0cadfb5b44302b87c", "fields": {"departement": "92", "stop_lat": 48.78481065530936, "code_postal": "92023", "stop_lon": 2.2367004292831227, "coord": [48.78481065530936, 2.2367004292831227], "stop_id": 5121724, "stop_desc": "PLACE GEORGES POMPIDOU - 92023", "stop_name": "GEORGES POMPIDOU"}, "geometry": {"type": "Point", "coordinates": [2.2367004292831227, 48.78481065530936]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6ce34dfb1677c8fb0098e41daf8462139234cbe7", "fields": {"departement": "92", "stop_lat": 48.81877841626567, "code_postal": "92040", "stop_lon": 2.2516874897032806, "coord": [48.81877841626567, 2.2516874897032806], "stop_id": 5121726, "stop_desc": "31 RUE DU DOCTEUR LOMBARD - 92040", "stop_name": "VERDUN - DOCTEUR LOMBARD"}, "geometry": {"type": "Point", "coordinates": [2.2516874897032806, 48.81877841626567]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5499fa54a507659f70c66c4f0551b8f844ed174a", "fields": {"departement": "92", "stop_lat": 48.81873762020106, "code_postal": "92075", "stop_lon": 2.291905608283889, "coord": [48.81873762020106, 2.291905608283889], "stop_id": 5121764, "stop_desc": "5-7 AVENUE VICTOR BASCH - 92075", "stop_name": "GARE DE VANVES-MALAKOFF"}, "geometry": {"type": "Point", "coordinates": [2.291905608283889, 48.81873762020106]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "823ecd83234e3d1b4def31ccf15d9aa30fbfc7b8", "fields": {"departement": "92", "stop_lat": 48.81873762020106, "code_postal": "92075", "stop_lon": 2.291905608283889, "coord": [48.81873762020106, 2.291905608283889], "stop_id": 5121765, "stop_desc": "5-7 AVENUE VICTOR BASCH - 92075", "stop_name": "GARE DE VANVES-MALAKOFF"}, "geometry": {"type": "Point", "coordinates": [2.291905608283889, 48.81873762020106]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a0d24254599090d1989c451738e808b1ddffe43e", "fields": {"departement": "92", "stop_lat": 48.81701291707466, "code_postal": "92046", "stop_lon": 2.29443852200131, "coord": [48.81701291707466, 2.29443852200131], "stop_id": 5121767, "stop_desc": "36 RUE PAUL BERT - 92046", "stop_name": "PAUL BERT"}, "geometry": {"type": "Point", "coordinates": [2.29443852200131, 48.81701291707466]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4756df9cf2fb04c682b8e9274ba4128011807db8", "fields": {"departement": "92", "stop_lat": 48.79943492476011, "code_postal": "92007", "stop_lon": 2.300779390823623, "coord": [48.79943492476011, 2.300779390823623], "stop_id": 5121775, "stop_desc": "38 RUE ALPHONSE PLUCHET - 92007", "stop_name": "PLUCHET"}, "geometry": {"type": "Point", "coordinates": [2.300779390823623, 48.79943492476011]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "07f62fcf2c4aff4a1641dc17df09146b4c111890", "fields": {"departement": "92", "stop_lat": 48.79731360245945, "code_postal": "92007", "stop_lon": 2.300168676057517, "coord": [48.79731360245945, 2.300168676057517], "stop_id": 5121776, "stop_desc": "10 AVENUE JEAN-BAPTISTE FORTIN - 92007", "stop_name": "RUE FROIDE"}, "geometry": {"type": "Point", "coordinates": [2.300168676057517, 48.79731360245945]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9ff365166aad5e6bd00051f318d8ab690bc7d0a8", "fields": {"departement": "92", "stop_lat": 48.79009739203046, "code_postal": "92007", "stop_lon": 2.303751328563498, "coord": [48.79009739203046, 2.303751328563498], "stop_id": 5121786, "stop_desc": "40 R DE LA FONTAINE - 92007", "stop_name": "FONTAINE - GUEFFIER"}, "geometry": {"type": "Point", "coordinates": [2.303751328563498, 48.79009739203046]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "17ec923ffb8272b998bbb0d2db5b03be4d8ef792", "fields": {"departement": "92", "stop_lat": 48.82988731831299, "code_postal": "92012", "stop_lon": 2.229697629868492, "coord": [48.82988731831299, 2.229697629868492], "stop_id": 5121808, "stop_desc": "PISTE GARE ROUTIERE - 92012", "stop_name": "PONT DE SEVRES-METRO"}, "geometry": {"type": "Point", "coordinates": [2.229697629868492, 48.82988731831299]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bb939dc64ff55ad2b421df2dbeb961b56616dcbf", "fields": {"departement": "92", "stop_lat": 48.82593195169939, "code_postal": "92072", "stop_lon": 2.219360657621989, "coord": [48.82593195169939, 2.219360657621989], "stop_id": 5121810, "stop_desc": "2 AVENUE DE LA DIVISION LECLERC - 92072", "stop_name": "PARC DE SAINT-CLOUD"}, "geometry": {"type": "Point", "coordinates": [2.219360657621989, 48.82593195169939]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e569bb8788f2f24b8e1f09ada8fff446e052beef", "fields": {"departement": "92", "stop_lat": 48.82088004618545, "code_postal": "92072", "stop_lon": 2.2185282668363397, "coord": [48.82088004618545, 2.2185282668363397], "stop_id": 5121812, "stop_desc": "RUE DES BRUYERES - 92072", "stop_name": "GARE DE SEVRES - RIVE GAUCHE"}, "geometry": {"type": "Point", "coordinates": [2.2185282668363397, 48.82088004618545]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c48d7642ea867d02a17d03bab994f4fd856231f4", "fields": {"departement": "92", "stop_lat": 48.77363257599805, "code_postal": "92060", "stop_lon": 2.24029843310275, "coord": [48.77363257599805, 2.24029843310275], "stop_id": 5121820, "stop_desc": "CONTRE-ALLEE DE L'AVENUE DE LA DIVISION LECLERC - 92060", "stop_name": "LA BOURSIDIERE"}, "geometry": {"type": "Point", "coordinates": [2.24029843310275, 48.77363257599805]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a631c8b146985c5299e3d8f639f53c6bac789e40", "fields": {"departement": "92", "stop_lat": 48.76956887306972, "code_postal": "92019", "stop_lon": 2.2505039865630807, "coord": [48.76956887306972, 2.2505039865630807], "stop_id": 5121822, "stop_desc": "20 CHEMIN DU LOUP PENDU - 92019", "stop_name": "CYRANO DE BERGERAC"}, "geometry": {"type": "Point", "coordinates": [2.2505039865630807, 48.76956887306972]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c26e5eaca4d6d5bdffc73ee1e5e9d499c85513dd", "fields": {"departement": "92", "stop_lat": 48.778905501575515, "code_postal": "92060", "stop_lon": 2.260783394313373, "coord": [48.778905501575515, 2.260783394313373], "stop_id": 5121826, "stop_desc": "FACE 9 AVENUE CHARLES DE GAULLE - 92060", "stop_name": "RESISTANCE"}, "geometry": {"type": "Point", "coordinates": [2.260783394313373, 48.778905501575515]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "042118ca5bef9d96d9774ea2717c4c1f661ea78b", "fields": {"departement": "92", "stop_lat": 48.77966832236158, "code_postal": "92060", "stop_lon": 2.27412380591201, "coord": [48.77966832236158, 2.27412380591201], "stop_id": 5121830, "stop_desc": "AVENUE DE LA REPUBLIQUE - 92060", "stop_name": "ROBINSON"}, "geometry": {"type": "Point", "coordinates": [2.27412380591201, 48.77966832236158]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dd06c1bcf4fd5f59efc9c3f61e869f03bb356ea5", "fields": {"departement": "92", "stop_lat": 48.78139682184434, "code_postal": "92060", "stop_lon": 2.263391000895894, "coord": [48.78139682184434, 2.263391000895894], "stop_id": 5121837, "stop_desc": "FACE 20 AVENUE CHARLES DE GAULLE - 92060", "stop_name": "COEUR DE VILLE"}, "geometry": {"type": "Point", "coordinates": [2.263391000895894, 48.78139682184434]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "03323faa20ed931f1076b8cda4e1f74b3def5938", "fields": {"departement": "92", "stop_lat": 48.77896801359053, "code_postal": "92060", "stop_lon": 2.260157713740714, "coord": [48.77896801359053, 2.260157713740714], "stop_id": 5121838, "stop_desc": "AVENUE CHARLES DE GAULLE - 92060", "stop_name": "RESISTANCE"}, "geometry": {"type": "Point", "coordinates": [2.260157713740714, 48.77896801359053]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "11248e85e73464407665a0d31314a409e73089b8", "fields": {"departement": "93", "stop_lat": 48.86450513633291, "code_postal": "93050", "stop_lon": 2.520214305289419, "coord": [48.86450513633291, 2.520214305289419], "stop_id": 3682841, "stop_desc": "BOULEVARD LOUIS ARMAND - 93050", "stop_name": "LES CHANOUX - LYCEE CUGNOT"}, "geometry": {"type": "Point", "coordinates": [2.520214305289419, 48.86450513633291]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "75e95d4e4d8d436b3b08f98763af30bcdcf7d82b", "fields": {"departement": "93", "stop_lat": 48.865079110624954, "code_postal": "93050", "stop_lon": 2.5210064276049144, "coord": [48.865079110624954, 2.5210064276049144], "stop_id": 3682850, "stop_desc": "RUE LOUIS VANNINI - 93050", "stop_name": "LES CHANOUX - LYCEE CUGNOT."}, "geometry": {"type": "Point", "coordinates": [2.5210064276049144, 48.865079110624954]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "447b913afdc7004502d078dc71e0b766ce755d65", "fields": {"departement": "93", "stop_lat": 48.86932276095398, "code_postal": "93050", "stop_lon": 2.5367702131902, "coord": [48.86932276095398, 2.5367702131902], "stop_id": 3682859, "stop_desc": "4 AVENUE WINSTON CHURCHILL - 93050", "stop_name": "RUE DES POMMIERS"}, "geometry": {"type": "Point", "coordinates": [2.5367702131902, 48.86932276095398]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "65db4c2d1a669a3a4e8959aa5b8233f8cc52d3ac", "fields": {"departement": "94", "stop_lat": 48.83993372633444, "code_postal": "94052", "stop_lon": 2.4805738849520664, "coord": [48.83993372633444, 2.4805738849520664], "stop_id": 3682868, "stop_desc": "63 BOULEVARD DE STRASBOURG - 94052", "stop_name": "PAUL BERT"}, "geometry": {"type": "Point", "coordinates": [2.4805738849520664, 48.83993372633444]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2b1088474dd6706ccbfa5f6c518cfe7afaa0e4fd", "fields": {"departement": "93", "stop_lat": 48.853437480755204, "code_postal": "93050", "stop_lon": 2.5170155851458653, "coord": [48.853437480755204, 2.5170155851458653], "stop_id": 3682835, "stop_desc": "32 BOULEVARD GALLIENI - 93050", "stop_name": "CENTRE BUS"}, "geometry": {"type": "Point", "coordinates": [2.5170155851458653, 48.853437480755204]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a760d7b350a8a16448c45d1038235ea2d314d6c4", "fields": {"departement": "93", "stop_lat": 48.867540185876635, "code_postal": "93050", "stop_lon": 2.5332077466950484, "coord": [48.867540185876635, 2.5332077466950484], "stop_id": 3682856, "stop_desc": "AVENUE LEON BLUM - 93050", "stop_name": "ILE DE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.5332077466950484, 48.867540185876635]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e7245d2947b2d538208e99ef920adb8ec07e18db", "fields": {"departement": "93", "stop_lat": 48.867818366920886, "code_postal": "93050", "stop_lon": 2.5334676366699243, "coord": [48.867818366920886, 2.5334676366699243], "stop_id": 3682857, "stop_desc": "AVENUE LEON BLUM - 93050", "stop_name": "ILE DE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.5334676366699243, 48.867818366920886]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fd6b2f68fb7ab29351d085384fc0856a14e7f9f3", "fields": {"departement": "93", "stop_lat": 48.912276867790325, "code_postal": "93046", "stop_lon": 2.5230281611109553, "coord": [48.912276867790325, 2.5230281611109553], "stop_id": 3682266, "stop_desc": "1 AVENUE CAMILLE DESMOULINS - 93046", "stop_name": "CHANZY - EGLISE SAINT-MICHEL"}, "geometry": {"type": "Point", "coordinates": [2.5230281611109553, 48.912276867790325]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fa39f801f064a62c230534025355b838ceea5a4b", "fields": {"departement": "77", "stop_lat": 48.851227642343254, "code_postal": "77337", "stop_lon": 2.6223762009154137, "coord": [48.851227642343254, 2.6223762009154137], "stop_id": 3682678, "stop_desc": "COURS DE L'ARCHE GUEDON - 77337", "stop_name": "LES QUATRE PAVES"}, "geometry": {"type": "Point", "coordinates": [2.6223762009154137, 48.851227642343254]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a4a313d56f78b56fe114000a545ac21b99bd4d3a", "fields": {"departement": "77", "stop_lat": 48.85163425678612, "code_postal": "77337", "stop_lon": 2.6214659706761654, "coord": [48.85163425678612, 2.6214659706761654], "stop_id": 3682679, "stop_desc": "COURS DE L'ARCHE GUEDON - 77337", "stop_name": "LES QUATRE PAVES"}, "geometry": {"type": "Point", "coordinates": [2.6214659706761654, 48.85163425678612]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8a01e473b7215c495de2f1069fcb3487a25335a4", "fields": {"departement": "77", "stop_lat": 48.85239050434027, "code_postal": "77083", "stop_lon": 2.601381973860583, "coord": [48.85239050434027, 2.601381973860583], "stop_id": 3682662, "stop_desc": "FACE 8-6 RUE DE PARIS - 77083", "stop_name": "MAIRIE DE CHAMPS"}, "geometry": {"type": "Point", "coordinates": [2.601381973860583, 48.85239050434027]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5d0aac8f85cede4836a3be263172ba52cd653195", "fields": {"departement": "77", "stop_lat": 48.850599319807685, "code_postal": "77468", "stop_lon": 2.657427091333727, "coord": [48.850599319807685, 2.657427091333727], "stop_id": 3682694, "stop_desc": "1 RUE DE PARIS - 77468", "stop_name": "LA MARE AUX MARCHAIS"}, "geometry": {"type": "Point", "coordinates": [2.657427091333727, 48.850599319807685]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "43731ea53e19adab2d01cf4a8af9f042eb2d9dfe", "fields": {"departement": "77", "stop_lat": 48.84706316156763, "code_postal": "77468", "stop_lon": 2.652203301096435, "coord": [48.84706316156763, 2.652203301096435], "stop_id": 3682699, "stop_desc": "AVENUE DE LINGENFELD - 77468", "stop_name": "JACQUES PREVERT"}, "geometry": {"type": "Point", "coordinates": [2.652203301096435, 48.84706316156763]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9b906fb1c5f1c95caef87878486ceea1fb52f87c", "fields": {"departement": "77", "stop_lat": 48.84983959613489, "code_postal": "77468", "stop_lon": 2.6385881100782096, "coord": [48.84983959613489, 2.6385881100782096], "stop_id": 3682687, "stop_desc": "9 COURS DE L'ARCHE GUEDON - 77468", "stop_name": "LA MOGOTTE"}, "geometry": {"type": "Point", "coordinates": [2.6385881100782096, 48.84983959613489]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b00affbfe47fbaf04acf0599a94c9ff3b4705732", "fields": {"departement": "77", "stop_lat": 48.85243498342096, "code_postal": "77083", "stop_lon": 2.609567271347769, "coord": [48.85243498342096, 2.609567271347769], "stop_id": 3682663, "stop_desc": "RUE DE PARIS - 77083", "stop_name": "MAISON DE RETRAITE"}, "geometry": {"type": "Point", "coordinates": [2.609567271347769, 48.85243498342096]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5823df2fcf18a617d81829dae2617501e247bb99", "fields": {"departement": "77", "stop_lat": 48.84749560903365, "code_postal": "77337", "stop_lon": 2.615710202359631, "coord": [48.84749560903365, 2.615710202359631], "stop_id": 3682671, "stop_desc": "COURS DES DEUX PARCS - 77337", "stop_name": "COMMISSARIAT"}, "geometry": {"type": "Point", "coordinates": [2.615710202359631, 48.84749560903365]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2a3b27338561f020729d0659491b6d9ff6cc811b", "fields": {"departement": "93", "stop_lat": 48.858427897516826, "code_postal": "93033", "stop_lon": 2.5813495010157435, "coord": [48.858427897516826, 2.5813495010157435], "stop_id": 3682653, "stop_desc": "PLACE CHURCHILL - 93033", "stop_name": "PLACE CHURCHILL"}, "geometry": {"type": "Point", "coordinates": [2.5813495010157435, 48.858427897516826]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1f793e90743284435349bb90f1fd5ab49e35af98", "fields": {"departement": "93", "stop_lat": 48.86251256156095, "code_postal": "93050", "stop_lon": 2.529946785428853, "coord": [48.86251256156095, 2.529946785428853], "stop_id": 3682824, "stop_desc": "93 RUE PAUL ET CAMILLE THOMOUX - 93050", "stop_name": "CIMETIERE DE NEUILLY-SUR-MARNE"}, "geometry": {"type": "Point", "coordinates": [2.529946785428853, 48.86251256156095]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ce397ae0b41ab03f2d37415d554952245971511a", "fields": {"departement": "77", "stop_lat": 48.855411989118174, "code_postal": "77083", "stop_lon": 2.5838277405949586, "coord": [48.855411989118174, 2.5838277405949586], "stop_id": 3682655, "stop_desc": "37 BOULEVARD DE LA REPUBLIQUE - 77083", "stop_name": "ROND-POINT DES PYRAMIDES"}, "geometry": {"type": "Point", "coordinates": [2.5838277405949586, 48.855411989118174]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "930dce0a78e9ab3afbd4f79774cef69000ef5ac6", "fields": {"departement": "93", "stop_lat": 48.85513417080288, "code_postal": "93050", "stop_lon": 2.5241173569868938, "coord": [48.85513417080288, 2.5241173569868938], "stop_id": 3682816, "stop_desc": "27 BOULEVARD DU MARECHAL FOCH - 93050", "stop_name": "VILLEBOIS - MAREUIL"}, "geometry": {"type": "Point", "coordinates": [2.5241173569868938, 48.85513417080288]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "af4cb0b56403fda6145d82cf76ce4029a127b9ba", "fields": {"departement": "93", "stop_lat": 48.8484095296312, "code_postal": "93051", "stop_lon": 2.541742050558242, "coord": [48.8484095296312, 2.541742050558242], "stop_id": 3682710, "stop_desc": "39 BOULEVARD SOUCHET - 93051", "stop_name": "CHEMIN DE LA BARONNERIE"}, "geometry": {"type": "Point", "coordinates": [2.541742050558242, 48.8484095296312]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c74e3580535ff31e5032d3074b7e790efe769d51", "fields": {"departement": "93", "stop_lat": 48.853731134910625, "code_postal": "93049", "stop_lon": 2.512958026994144, "coord": [48.853731134910625, 2.512958026994144], "stop_id": 3682808, "stop_desc": "PISTE GARE ROUTIERE - 93049", "stop_name": "NEUILLY-PLAISANCE RER"}, "geometry": {"type": "Point", "coordinates": [2.512958026994144, 48.853731134910625]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c945d01473d53a695120010bfd41b2a51988d93c", "fields": {"departement": "93", "stop_lat": 48.86932276095398, "code_postal": "93050", "stop_lon": 2.5367702131902, "coord": [48.86932276095398, 2.5367702131902], "stop_id": 3682830, "stop_desc": "4 AVENUE WINSTON CHURCHILL - 93050", "stop_name": "RUE DES POMMIERS"}, "geometry": {"type": "Point", "coordinates": [2.5367702131902, 48.86932276095398]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7653550f54d37ab5e4324b2d95f0ab17c82bec89", "fields": {"departement": "93", "stop_lat": 48.85367127728647, "code_postal": "93050", "stop_lon": 2.5169346792383425, "coord": [48.85367127728647, 2.5169346792383425], "stop_id": 3682812, "stop_desc": "FACE 32 BOULEVARD GALLIENI - 93050", "stop_name": "CENTRE BUS"}, "geometry": {"type": "Point", "coordinates": [2.5169346792383425, 48.85367127728647]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "31b782cb13b7688538f7d9d6703114f9973f2148", "fields": {"departement": "77", "stop_lat": 48.83922919476257, "code_postal": "77468", "stop_lon": 2.6543750959439127, "coord": [48.83922919476257, 2.6543750959439127], "stop_id": 3682706, "stop_desc": "AVENUE JEAN MOULIN - 77468", "stop_name": "TORCY-RER"}, "geometry": {"type": "Point", "coordinates": [2.6543750959439127, 48.83922919476257]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3a1579f6d0e24bab213eee17a716dd354eba4692", "fields": {"departement": "77", "stop_lat": 48.83922919476257, "code_postal": "77468", "stop_lon": 2.6543750959439127, "coord": [48.83922919476257, 2.6543750959439127], "stop_id": 3682707, "stop_desc": "AVENUE JEAN MOULIN - 77468", "stop_name": "TORCY-RER"}, "geometry": {"type": "Point", "coordinates": [2.6543750959439127, 48.83922919476257]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5d34c96f8cb883a04eba859ad83a1bd3192abbe6", "fields": {"departement": "93", "stop_lat": 48.86653078639535, "code_postal": "93050", "stop_lon": 2.529416807489572, "coord": [48.86653078639535, 2.529416807489572], "stop_id": 3682825, "stop_desc": "4-6 AVENUE LEON BLUM - 93050", "stop_name": "LEON BLUM"}, "geometry": {"type": "Point", "coordinates": [2.529416807489572, 48.86653078639535]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7384c0b368f592f1fe52442f260ef285435dfecf", "fields": {"departement": "93", "stop_lat": 48.89559615956323, "code_postal": "93010", "stop_lon": 2.484925973405418, "coord": [48.89559615956323, 2.484925973405418], "stop_id": 3682325, "stop_desc": "FACE 76 RUE EDOUARD VAILLANT - 93010", "stop_name": "VAILLANT - SOLIDARITE"}, "geometry": {"type": "Point", "coordinates": [2.484925973405418, 48.89559615956323]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0736d1a2c7f2d49ed04c37d46e97d7ec56a53e18", "fields": {"departement": "93", "stop_lat": 48.89540609193745, "code_postal": "93010", "stop_lon": 2.4997688567730845, "coord": [48.89540609193745, 2.4997688567730845], "stop_id": 3682294, "stop_desc": "38 AVENUE ANATOLE FRANCE - 93010", "stop_name": "ANATOLE FRANCE - BLANQUI"}, "geometry": {"type": "Point", "coordinates": [2.4997688567730845, 48.89540609193745]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bc788bd91e257118762e39ab887b9ac42973daf0", "fields": {"departement": "93", "stop_lat": 48.89540609193745, "code_postal": "93010", "stop_lon": 2.4997688567730845, "coord": [48.89540609193745, 2.4997688567730845], "stop_id": 3682316, "stop_desc": "38 AVENUE ANATOLE FRANCE - 93010", "stop_name": "ANATOLE FRANCE - BLANQUI"}, "geometry": {"type": "Point", "coordinates": [2.4997688567730845, 48.89540609193745]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5a4e7756f021df6301295b0ecb8a02845ef2765d", "fields": {"departement": "93", "stop_lat": 48.89467753886772, "code_postal": "93077", "stop_lon": 2.5002027365048076, "coord": [48.89467753886772, 2.5002027365048076], "stop_id": 3682293, "stop_desc": "FACE 45 AVENUE FRANKLIN - 93077", "stop_name": "FRANKLIN - SABLIERE"}, "geometry": {"type": "Point", "coordinates": [2.5002027365048076, 48.89467753886772]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cb5c8dbf9b9afcc7a489d0b1f691fa85ac9175f1", "fields": {"departement": "93", "stop_lat": 48.89467753886772, "code_postal": "93077", "stop_lon": 2.5002027365048076, "coord": [48.89467753886772, 2.5002027365048076], "stop_id": 3682315, "stop_desc": "FACE 45 AVENUE FRANKLIN - 93077", "stop_name": "FRANKLIN - SABLIERE"}, "geometry": {"type": "Point", "coordinates": [2.5002027365048076, 48.89467753886772]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "072202ba078abc1ef4318dd814ac6a73079e16bb", "fields": {"departement": "93", "stop_lat": 48.89269402898734, "code_postal": "93077", "stop_lon": 2.4982474651445354, "coord": [48.89269402898734, 2.4982474651445354], "stop_id": 3682314, "stop_desc": "8 AVENUE FRANKLIN - 93077", "stop_name": "FRANKLIN - COQUETIERS"}, "geometry": {"type": "Point", "coordinates": [2.4982474651445354, 48.89269402898734]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ec55b19ec2fdff218981da9045bba3adfaec2ae4", "fields": {"departement": "93", "stop_lat": 48.89056871610303, "code_postal": "93010", "stop_lon": 2.4947654542780087, "coord": [48.89056871610303, 2.4947654542780087], "stop_id": 3682291, "stop_desc": "42 RUE SAINT-LOUIS PROLONGEE - 93010", "stop_name": "PHILOSOPHIE"}, "geometry": {"type": "Point", "coordinates": [2.4947654542780087, 48.89056871610303]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8fab263eadecf4043cf29cc579a0bfa7a82964f6", "fields": {"departement": "93", "stop_lat": 48.90015655155534, "code_postal": "93010", "stop_lon": 2.4817355499715297, "coord": [48.90015655155534, 2.4817355499715297], "stop_id": 3682330, "stop_desc": "49 AVENUE CARNOT - 93010", "stop_name": "BLANQUI - CARNOT."}, "geometry": {"type": "Point", "coordinates": [2.4817355499715297, 48.90015655155534]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dd21a4b24a511e931f2f57af26b89d6ec0919f06", "fields": {"departement": "93", "stop_lat": 48.900075717229335, "code_postal": "93010", "stop_lon": 2.4816944299365256, "coord": [48.900075717229335, 2.4816944299365256], "stop_id": 3682329, "stop_desc": "49 AVENUE CARNOT - 93010", "stop_name": "BLANQUI - CARNOT"}, "geometry": {"type": "Point", "coordinates": [2.4816944299365256, 48.900075717229335]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d17a28115582550d101dea8ad39d042210477ba7", "fields": {"departement": "93", "stop_lat": 48.905007103245715, "code_postal": "93010", "stop_lon": 2.476268671049849, "coord": [48.905007103245715, 2.476268671049849], "stop_id": 3682333, "stop_desc": "54 AVENUE GALLIENI - 93010", "stop_name": "GATINE RN3"}, "geometry": {"type": "Point", "coordinates": [2.476268671049849, 48.905007103245715]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d776b59e50072f87c93c06e41949d3ebd17fa66b", "fields": {"departement": "93", "stop_lat": 48.86362648686356, "code_postal": "93050", "stop_lon": 2.530264230340083, "coord": [48.86362648686356, 2.530264230340083], "stop_id": 3682823, "stop_desc": "FACE 111 RUE PAUL ET CAMILLE THOMOUX - 93050", "stop_name": "CIMETIERE DE NEUILLY-SUR-MARNE"}, "geometry": {"type": "Point", "coordinates": [2.530264230340083, 48.86362648686356]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aae535942c2b69eb800cee2fad8f307154b990da", "fields": {"departement": "93", "stop_lat": 48.85714423915471, "code_postal": "93050", "stop_lon": 2.531683856736101, "coord": [48.85714423915471, 2.531683856736101], "stop_id": 3682891, "stop_desc": "78 AVENUE DU GENERAL DE GAULLE - 93050", "stop_name": "PLACE DE LA RESISTANCE"}, "geometry": {"type": "Point", "coordinates": [2.531683856736101, 48.85714423915471]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ee52cb80afc21e8f437503154051178ddd8a20f2", "fields": {"departement": "93", "stop_lat": 48.854634780445664, "code_postal": "93050", "stop_lon": 2.5216095472047004, "coord": [48.854634780445664, 2.5216095472047004], "stop_id": 3682886, "stop_desc": "11 TER BOULEVARD DU MARECHAL FOCH - 93050", "stop_name": "HELENE BOUCHER"}, "geometry": {"type": "Point", "coordinates": [2.5216095472047004, 48.854634780445664]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fcbf1a949d0c24ff7b6b07412d4c6199f707f20f", "fields": {"departement": "93", "stop_lat": 48.85283059716511, "code_postal": "93049", "stop_lon": 2.51416708031688, "coord": [48.85283059716511, 2.51416708031688], "stop_id": 3682881, "stop_desc": "BOULEVARD GALLIENI - 93049", "stop_name": "NEUILLY-PLAISANCE RER"}, "geometry": {"type": "Point", "coordinates": [2.51416708031688, 48.85283059716511]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "342883db5eba610add93b720fe9c48801a5607cb", "fields": {"departement": "93", "stop_lat": 48.85367127728647, "code_postal": "93050", "stop_lon": 2.5169346792383425, "coord": [48.85367127728647, 2.5169346792383425], "stop_id": 3682884, "stop_desc": "FACE 32 BOULEVARD GALLIENI - 93050", "stop_name": "CENTRE BUS"}, "geometry": {"type": "Point", "coordinates": [2.5169346792383425, 48.85367127728647]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2030fd67d67c14b3e8ff57878d6d76f7da9e54bf", "fields": {"departement": "94", "stop_lat": 48.85196701765014, "code_postal": "94058", "stop_lon": 2.508553140777638, "coord": [48.85196701765014, 2.508553140777638], "stop_id": 3682880, "stop_desc": "167 BOULEVARD ALSACE-LORRAINE - 94058", "stop_name": "JOULEAU"}, "geometry": {"type": "Point", "coordinates": [2.508553140777638, 48.85196701765014]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "915812a5910966afdbbad70746638f25560d9932", "fields": {"departement": "93", "stop_lat": 48.845457082416395, "code_postal": "93051", "stop_lon": 2.5282357489753844, "coord": [48.845457082416395, 2.5282357489753844], "stop_id": 3682636, "stop_desc": "FACE 8 BOULEVARD DU MARECHAL FOCH - 93051", "stop_name": "MARX DORMOY-CARNOT"}, "geometry": {"type": "Point", "coordinates": [2.5282357489753844, 48.845457082416395]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c8a406ad5154d449b54187a8009f0ef23dc8d65e", "fields": {"departement": "93", "stop_lat": 48.89829576473624, "code_postal": "93010", "stop_lon": 2.4893228755208097, "coord": [48.89829576473624, 2.4893228755208097], "stop_id": 3682349, "stop_desc": "FACE 130BI RUE LOUIS AUGUSTE BLANQUI - 93010", "stop_name": "BLANQUI - BERNSTEIN"}, "geometry": {"type": "Point", "coordinates": [2.4893228755208097, 48.89829576473624]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0925ebd7db92c80b5d9971e098dd7858e49d7eca", "fields": {"departement": "93", "stop_lat": 48.899443523682145, "code_postal": "93010", "stop_lon": 2.491343689032779, "coord": [48.899443523682145, 2.491343689032779], "stop_id": 3682348, "stop_desc": "FACE 23 RUE DU PROFESSEUR VAILLANT - 93010", "stop_name": "PROFESSEUR VAILLANT"}, "geometry": {"type": "Point", "coordinates": [2.491343689032779, 48.899443523682145]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6928479fdf073576f9b532ff1e61b8c7fcd9a857", "fields": {"departement": "93", "stop_lat": 48.90331356074981, "code_postal": "93010", "stop_lon": 2.4796313305947475, "coord": [48.90331356074981, 2.4796313305947475], "stop_id": 3682351, "stop_desc": "75 RUE JULES GUESDE - 93010", "stop_name": "EGLISE DE BONDY."}, "geometry": {"type": "Point", "coordinates": [2.4796313305947475, 48.90331356074981]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8d27e986df2beda50c1263e26b1d6b3f5cb8d27f", "fields": {"departement": "93", "stop_lat": 48.856153679124525, "code_postal": "93033", "stop_lon": 2.577116582650718, "coord": [48.856153679124525, 2.577116582650718], "stop_id": 3682651, "stop_desc": "39 AVENUE ARISTIDE BRIAND - 93033", "stop_name": "LES ROSIERS"}, "geometry": {"type": "Point", "coordinates": [2.577116582650718, 48.856153679124525]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "834602500bc20361f326adecfd1122444ddeffd2", "fields": {"departement": "93", "stop_lat": 48.90685353237826, "code_postal": "93010", "stop_lon": 2.4804181583345417, "coord": [48.90685353237826, 2.4804181583345417], "stop_id": 3682334, "stop_desc": "6 ROUTE D'AULNAY - 93010", "stop_name": "AUGUSTE POLISSARD"}, "geometry": {"type": "Point", "coordinates": [2.4804181583345417, 48.90685353237826]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fffe79958f79c2557529c95bf7610a7c67321399", "fields": {"departement": "93", "stop_lat": 48.90214628074003, "code_postal": "93010", "stop_lon": 2.4931647955004856, "coord": [48.90214628074003, 2.4931647955004856], "stop_id": 3682347, "stop_desc": "3-5 RUE DES 5 ORMES - 93010", "stop_name": "HENRI SELLIER"}, "geometry": {"type": "Point", "coordinates": [2.4931647955004856, 48.90214628074003]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5041c1a0cc701ceb68e790730a47b9141ad37460", "fields": {"departement": "93", "stop_lat": 48.910341920328406, "code_postal": "93010", "stop_lon": 2.479241618110349, "coord": [48.910341920328406, 2.479241618110349], "stop_id": 3682335, "stop_desc": "FACE 5 RUE PAUL RENAUD - 93010", "stop_name": "PAUL RENAUD"}, "geometry": {"type": "Point", "coordinates": [2.479241618110349, 48.910341920328406]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8edde69bbba3f69833b71dadcd9273d8cb4d1cfa", "fields": {"departement": "93", "stop_lat": 48.9002438871064, "code_postal": "93010", "stop_lon": 2.4763104190381524, "coord": [48.9002438871064, 2.4763104190381524], "stop_id": 3682352, "stop_desc": "32 RUE JEAN JAURES - 93010", "stop_name": "LE MAINGUY"}, "geometry": {"type": "Point", "coordinates": [2.4763104190381524, 48.9002438871064]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "51c0aa36ad84201368865e376744a093e517a754", "fields": {"departement": "93", "stop_lat": 48.90636673535672, "code_postal": "93010", "stop_lon": 2.4888966678640814, "coord": [48.90636673535672, 2.4888966678640814], "stop_id": 3682345, "stop_desc": "2 AVENUE VERDUN - 93010", "stop_name": "LEO LAGRANGE"}, "geometry": {"type": "Point", "coordinates": [2.4888966678640814, 48.90636673535672]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c62e7a1f59c3b047fd653183a7a31d56dfa90c0f", "fields": {"departement": "93", "stop_lat": 48.91078374510361, "code_postal": "93046", "stop_lon": 2.5119789583655017, "coord": [48.91078374510361, 2.5119789583655017], "stop_id": 3682268, "stop_desc": "2-4 AVENUE JULES GUESDE - 93046", "stop_name": "VICTOR HUGO - JULES GUESDE"}, "geometry": {"type": "Point", "coordinates": [2.5119789583655017, 48.91078374510361]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a04ed4baf5ee35a01d64bb9262d7ad9689fa63a9", "fields": {"departement": "93", "stop_lat": 48.911837928024454, "code_postal": "93014", "stop_lon": 2.5491233384372705, "coord": [48.911837928024454, 2.5491233384372705], "stop_id": 3682229, "stop_desc": "11 AVENUE DE SEVIGNE - 93014", "stop_name": "MAIRIE DE CLICHY-SOUS-BOIS"}, "geometry": {"type": "Point", "coordinates": [2.5491233384372705, 48.911837928024454]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a4a63dc64c25ea82fdb08baf4513003324dfea3c", "fields": {"departement": "93", "stop_lat": 48.90888406123371, "code_postal": "93046", "stop_lon": 2.5316053431104883, "coord": [48.90888406123371, 2.5316053431104883], "stop_id": 3682225, "stop_desc": "43 AVENUE LEON BLUM - 93046", "stop_name": "JEAN-BAPTISTE CLEMENT"}, "geometry": {"type": "Point", "coordinates": [2.5316053431104883, 48.90888406123371]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2bd8a947e98f1315235a67d3270fcc0588f45c80", "fields": {"departement": "93", "stop_lat": 48.89124834937275, "code_postal": "93010", "stop_lon": 2.4904743115017753, "coord": [48.89124834937275, 2.4904743115017753], "stop_id": 3682290, "stop_desc": "FACE 21 ROUTE DE VILLEMOMBLE - 93010", "stop_name": "LA SABLIERE"}, "geometry": {"type": "Point", "coordinates": [2.4904743115017753, 48.89124834937275]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "65ea39722423fd9ba9119abbf776f59145b42a60", "fields": {"departement": "93", "stop_lat": 48.91064373427203, "code_postal": "93046", "stop_lon": 2.527139877834927, "coord": [48.91064373427203, 2.527139877834927], "stop_id": 3682250, "stop_desc": "53-57 AVENUE LEON BLUM - 93046", "stop_name": "ROGER SALENGRO"}, "geometry": {"type": "Point", "coordinates": [2.527139877834927, 48.91064373427203]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1b8ff710c06c72ff660107d23bc69b4f26a836c2", "fields": {"departement": "93", "stop_lat": 48.89976454852169, "code_postal": "93047", "stop_lon": 2.574919301798445, "coord": [48.89976454852169, 2.574919301798445], "stop_id": 3682244, "stop_desc": "FACE 85 RUE DU LAVOIR - 93047", "stop_name": "COLLEGE PICASSO"}, "geometry": {"type": "Point", "coordinates": [2.574919301798445, 48.89976454852169]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dc4ec78b4b6ed8a5a235008db9a115c948661424", "fields": {"departement": "93", "stop_lat": 48.90969055055938, "code_postal": "93014", "stop_lon": 2.5384390529437444, "coord": [48.90969055055938, 2.5384390529437444], "stop_id": 3682226, "stop_desc": "FACE 159 CHEMIN DES POSTES - 93014", "stop_name": "LES GENETTES"}, "geometry": {"type": "Point", "coordinates": [2.5384390529437444, 48.90969055055938]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0f0a3cc402bc32f47a959dc44f9427129fde2529", "fields": {"departement": "93", "stop_lat": 48.8927463896491, "code_postal": "93010", "stop_lon": 2.485599334584045, "coord": [48.8927463896491, 2.485599334584045], "stop_id": 3682288, "stop_desc": "100 ROUTE DE VILLEMOMBLE - 93010", "stop_name": "L'ETOILE"}, "geometry": {"type": "Point", "coordinates": [2.485599334584045, 48.8927463896491]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2a1d2bce1a659cab5c3d1666cf754cebb52a34db", "fields": {"departement": "93", "stop_lat": 48.904385606533154, "code_postal": "93047", "stop_lon": 2.5648522841424146, "coord": [48.904385606533154, 2.5648522841424146], "stop_id": 3682256, "stop_desc": "25 BOULEVARD HARDY - 93047", "stop_name": "TUILERIE"}, "geometry": {"type": "Point", "coordinates": [2.5648522841424146, 48.904385606533154]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eda209070301203ccfff2be7fccf98625308499d", "fields": {"departement": "93", "stop_lat": 48.90027462601666, "code_postal": "93047", "stop_lon": 2.5668653418209715, "coord": [48.90027462601666, 2.5668653418209715], "stop_id": 3682240, "stop_desc": "1 RUE PAUL BERT - 93047", "stop_name": "PAUL BERT"}, "geometry": {"type": "Point", "coordinates": [2.5668653418209715, 48.90027462601666]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2d6013db83578e81d4e6991c880174ae2e661231", "fields": {"departement": "94", "stop_lat": 48.83470447146906, "code_postal": "94052", "stop_lon": 2.4715603393176275, "coord": [48.83470447146906, 2.4715603393176275], "stop_id": 3682921, "stop_desc": "FACE AU 8 AVENUE DES MARRONNIERS - 94052", "stop_name": "NOGENT-SUR-MARNE RER"}, "geometry": {"type": "Point", "coordinates": [2.4715603393176275, 48.83470447146906]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0996d36c94226e2ce6bc65b8382a38dd295d6e9c", "fields": {"departement": "77", "stop_lat": 48.872435896102694, "code_postal": "77108", "stop_lon": 2.5785952142218123, "coord": [48.872435896102694, 2.5785952142218123], "stop_id": 3682910, "stop_desc": "32 AV DU MARECHAL FOCH - 77108", "stop_name": "PARMENTIER - JULES FERRY"}, "geometry": {"type": "Point", "coordinates": [2.5785952142218123, 48.872435896102694]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bf6a8e454323b96c9874ca3ab0e08d9d7088250c", "fields": {"departement": "93", "stop_lat": 48.85551623837613, "code_postal": "93050", "stop_lon": 2.526897183997044, "coord": [48.85551623837613, 2.526897183997044], "stop_id": 3682948, "stop_desc": "38 BOULEVARD DU MARECHAL FOCH - 93050", "stop_name": "FOCH - DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.526897183997044, 48.85551623837613]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a8758d468c2c21acf7f7888cb3b2bade6b50a71e", "fields": {"departement": "93", "stop_lat": 48.85831643344756, "code_postal": "93050", "stop_lon": 2.5348209878560497, "coord": [48.85831643344756, 2.5348209878560497], "stop_id": 3682952, "stop_desc": "118 AVENUE DU GENERAL DE GAULLE - 93050", "stop_name": "PASTEUR"}, "geometry": {"type": "Point", "coordinates": [2.5348209878560497, 48.85831643344756]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "491a2b53815fc949fcb616119e052cdedb5015a1", "fields": {"departement": "94", "stop_lat": 48.8507957926177, "code_postal": "94058", "stop_lon": 2.504232174035045, "coord": [48.8507957926177, 2.504232174035045], "stop_id": 3682936, "stop_desc": "106 BOULEVARD ALSACE-LORRAINE - 94058", "stop_name": "JULES FERRY"}, "geometry": {"type": "Point", "coordinates": [2.504232174035045, 48.8507957926177]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "661fb0c626bfb86c4e568a3de88849bec7d34ccc", "fields": {"departement": "94", "stop_lat": 48.84976027932212, "code_postal": "94058", "stop_lon": 2.4991355834688176, "coord": [48.84976027932212, 2.4991355834688176], "stop_id": 3682934, "stop_desc": "60 BIS BOULEVARD ALSACE-LORRAINE - 94058", "stop_name": "AVRON"}, "geometry": {"type": "Point", "coordinates": [2.4991355834688176, 48.84976027932212]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0bc80c017dd125577bff3b6425455d395fe736c8", "fields": {"departement": "93", "stop_lat": 48.86282809345117, "code_postal": "93050", "stop_lon": 2.5453950573798196, "coord": [48.86282809345117, 2.5453950573798196], "stop_id": 3682898, "stop_desc": "AVENUE JEAN JAURES - 93050", "stop_name": "VILLE EVRARD"}, "geometry": {"type": "Point", "coordinates": [2.5453950573798196, 48.86282809345117]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "08015196ebc44c3e41d89e3ef5acbf176be5767a", "fields": {"departement": "77", "stop_lat": 48.87977681518598, "code_postal": "77108", "stop_lon": 2.596534294535244, "coord": [48.87977681518598, 2.596534294535244], "stop_id": 3682978, "stop_desc": "FACE 3-5 AVENUE JEAN JAURES - 77108", "stop_name": "CARREFOUR DES DEPORTES"}, "geometry": {"type": "Point", "coordinates": [2.596534294535244, 48.87977681518598]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "df0ef0d34d9cf552afe9bac33efde854434908b9", "fields": {"departement": "77", "stop_lat": 48.870957143989884, "code_postal": "77108", "stop_lon": 2.576531116758481, "coord": [48.870957143989884, 2.576531116758481], "stop_id": 3682967, "stop_desc": "50 AVENUE DU MARECHAL FOCH - 77108", "stop_name": "AVENUE DES MARTYRS"}, "geometry": {"type": "Point", "coordinates": [2.576531116758481, 48.870957143989884]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "acbb23b2d6ed31c56341f723a291d10055fe6bcc", "fields": {"departement": "77", "stop_lat": 48.87067862014969, "code_postal": "77108", "stop_lon": 2.576488959824313, "coord": [48.87067862014969, 2.576488959824313], "stop_id": 3682966, "stop_desc": "49 AVENUE DU MARECHAL FOCH - 77108", "stop_name": "AVENUE DES MARTYRS"}, "geometry": {"type": "Point", "coordinates": [2.576488959824313, 48.87067862014969]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a33fa8c8274a5386eeed57126aec7f3db0a1ef77", "fields": {"departement": "93", "stop_lat": 48.860868420628236, "code_postal": "93050", "stop_lon": 2.5404290504023144, "coord": [48.860868420628236, 2.5404290504023144], "stop_id": 3682955, "stop_desc": "159 AVENUE DU MARECHAL LECLERC - 93050", "stop_name": "BLANCHEVILLE"}, "geometry": {"type": "Point", "coordinates": [2.5404290504023144, 48.860868420628236]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ce59a8be7c9da7847bdff53c092974b4a2f3cc1b", "fields": {"departement": "93", "stop_lat": 48.86066143215691, "code_postal": "93050", "stop_lon": 2.540591694022896, "coord": [48.86066143215691, 2.540591694022896], "stop_id": 3682954, "stop_desc": "60 AVENUE DU MARECHAL LECLERC - 93050", "stop_name": "BLANCHEVILLE"}, "geometry": {"type": "Point", "coordinates": [2.540591694022896, 48.86066143215691]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1c2bdc8d9a2e4bb51e4413b8c76130d72a6b7184", "fields": {"departement": "93", "stop_lat": 48.86547170811764, "code_postal": "93050", "stop_lon": 2.564354542874806, "coord": [48.86547170811764, 2.564354542874806], "stop_id": 3682962, "stop_desc": "AVENUE JEAN JAURES - 93050", "stop_name": "POINTE DE GOURNAY"}, "geometry": {"type": "Point", "coordinates": [2.564354542874806, 48.86547170811764]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2651b90e1b958ceadbaadf0fb70836bae275eb91", "fields": {"departement": "93", "stop_lat": 48.86394281893811, "code_postal": "93050", "stop_lon": 2.5503171019272557, "coord": [48.86394281893811, 2.5503171019272557], "stop_id": 3682958, "stop_desc": "AVENUE JEAN JAURES - 93050", "stop_name": "MAISON BLANCHE"}, "geometry": {"type": "Point", "coordinates": [2.5503171019272557, 48.86394281893811]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "608e5f86e00142f0da3abf77183c8e5da39a9c50", "fields": {"departement": "77", "stop_lat": 48.87590800674432, "code_postal": "77108", "stop_lon": 2.5901519562185276, "coord": [48.87590800674432, 2.5901519562185276], "stop_id": 3682974, "stop_desc": "33 RUE ADOLPHE BESSON - 77108", "stop_name": "RUE DUCHESNE"}, "geometry": {"type": "Point", "coordinates": [2.5901519562185276, 48.87590800674432]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4669a6ecf592dc3a79abe80b358177dc4c91fd50", "fields": {"departement": "93", "stop_lat": 48.87379559973046, "code_postal": "93064", "stop_lon": 2.4829019304695374, "coord": [48.87379559973046, 2.4829019304695374], "stop_id": 3685783, "stop_desc": "4 RUE DU GENERAL GALLIENI - 93064", "stop_name": "EGLISE DE ROSNY-SOUS-BOIS"}, "geometry": {"type": "Point", "coordinates": [2.4829019304695374, 48.87379559973046]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ef213f37fcbf9a449c0a5e0cf3916bf115bb6ad7", "fields": {"departement": "94", "stop_lat": 48.80711639570117, "code_postal": "94068", "stop_lon": 2.5101060436758766, "coord": [48.80711639570117, 2.5101060436758766], "stop_id": 3683476, "stop_desc": "PISTE GARE ROUTIERE - 94068", "stop_name": "CHAMPIGNY - SAINT-MAUR RER"}, "geometry": {"type": "Point", "coordinates": [2.5101060436758766, 48.80711639570117]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "02dd6715e3d6f9bb70dd053b6efe7f0fb6d2f299", "fields": {"departement": "93", "stop_lat": 48.870449992779264, "code_postal": "93064", "stop_lon": 2.484786235477952, "coord": [48.870449992779264, 2.484786235477952], "stop_id": 3685775, "stop_desc": "26 AVENUE DE LA REPUBLIQUE - 93064", "stop_name": "ROSNY-SOUS-BOIS RER"}, "geometry": {"type": "Point", "coordinates": [2.484786235477952, 48.870449992779264]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "22e85d2c77f5c2c9d62a77f8649683c50ba9afdc", "fields": {"departement": "75", "stop_lat": 48.84408977596744, "code_postal": "75112", "stop_lon": 2.4424854671358247, "coord": [48.84408977596744, 2.4424854671358247], "stop_id": 3685789, "stop_desc": "PISTE GARE ROUTIERE - 75112", "stop_name": "CHATEAU DE VINCENNES"}, "geometry": {"type": "Point", "coordinates": [2.4424854671358247, 48.84408977596744]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3d1d0345827d5b06548a87b229c9a106fd1bd91b", "fields": {"departement": "94", "stop_lat": 48.8446246823592, "code_postal": "94080", "stop_lon": 2.437094232812113, "coord": [48.8446246823592, 2.437094232812113], "stop_id": 3685791, "stop_desc": "FACE 10 AVENUE DE PARIS - 94080", "stop_name": "AVENUE DU CHATEAU"}, "geometry": {"type": "Point", "coordinates": [2.437094232812113, 48.8446246823592]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "95c65979ba6e70c0b3440875810ee5602053db56", "fields": {"departement": "94", "stop_lat": 48.852562149777675, "code_postal": "94033", "stop_lon": 2.4638709537730135, "coord": [48.852562149777675, 2.4638709537730135], "stop_id": 3685804, "stop_desc": "191 AVENUE DE LA REPUBLIQUE - 94033", "stop_name": "DANTON"}, "geometry": {"type": "Point", "coordinates": [2.4638709537730135, 48.852562149777675]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6cb37475ff1f0c578d8033c58988cdc9f0a866ee", "fields": {"departement": "93", "stop_lat": 48.86685565056985, "code_postal": "93064", "stop_lon": 2.484299210246628, "coord": [48.86685565056985, 2.484299210246628], "stop_id": 3685773, "stop_desc": "72 AVENUE DE LA REPUBLIQUE - 93064", "stop_name": "MEDERIC"}, "geometry": {"type": "Point", "coordinates": [2.484299210246628, 48.86685565056985]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "138409a45defab88bb2a215e18cc05fb713d529c", "fields": {"departement": "93", "stop_lat": 48.87258924183589, "code_postal": "93064", "stop_lon": 2.4845743335348023, "coord": [48.87258924183589, 2.4845743335348023], "stop_id": 3685777, "stop_desc": "RUE DU GENERAL GALLIENI - 93064", "stop_name": "COPERNIC"}, "geometry": {"type": "Point", "coordinates": [2.4845743335348023, 48.87258924183589]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "89446cf23cf8f2273b5b820ae555430120351f74", "fields": {"departement": "94", "stop_lat": 48.84938892654465, "code_postal": "94080", "stop_lon": 2.4557603648214354, "coord": [48.84938892654465, 2.4557603648214354], "stop_id": 3685786, "stop_desc": "143 RUE DEFRANCE - 94080", "stop_name": "LES RIGOLLOTS"}, "geometry": {"type": "Point", "coordinates": [2.4557603648214354, 48.84938892654465]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e0dd093966b024ed5b737727d91ca064d73083fd", "fields": {"departement": "93", "stop_lat": 48.859212514946975, "code_postal": "93050", "stop_lon": 2.5195826964474035, "coord": [48.859212514946975, 2.5195826964474035], "stop_id": 3685954, "stop_desc": "54 AVENUE PAUL DOUMER - 93050", "stop_name": "ARISTIDE BRIAND - LOUIS ARMAND"}, "geometry": {"type": "Point", "coordinates": [2.5195826964474035, 48.859212514946975]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "25590f197b41b56e75a29aa87ede76576fd8ef35", "fields": {"departement": "93", "stop_lat": 48.85738583002055, "code_postal": "93050", "stop_lon": 2.5323385391870294, "coord": [48.85738583002055, 2.5323385391870294], "stop_id": 3685961, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 93050", "stop_name": "PLACE DE LA RESISTANCE."}, "geometry": {"type": "Point", "coordinates": [2.5323385391870294, 48.85738583002055]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b274ca2a10eabe96cdeaa8bd3444bd2c3e10710d", "fields": {"departement": "93", "stop_lat": 48.85806344538522, "code_postal": "93050", "stop_lon": 2.524522906508116, "coord": [48.85806344538522, 2.524522906508116], "stop_id": 3685956, "stop_desc": "16 QUATER AVENUE PAUL DOUMER - 93050", "stop_name": "VILLEBOIS - MAREUIL"}, "geometry": {"type": "Point", "coordinates": [2.524522906508116, 48.85806344538522]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "94f06f8b6b97302b5254be19bb3ddbe3e78b75c6", "fields": {"departement": "93", "stop_lat": 48.85942539386842, "code_postal": "93048", "stop_lon": 2.466816195206703, "coord": [48.85942539386842, 2.466816195206703], "stop_id": 3685933, "stop_desc": "217 BOULEVARD THEOPHILE SUEUR - 93048", "stop_name": "GRANDS PECHERS"}, "geometry": {"type": "Point", "coordinates": [2.466816195206703, 48.85942539386842]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "df318661dd249c1652955d048919f21afe6d396c", "fields": {"departement": "93", "stop_lat": 48.8583084835988, "code_postal": "93050", "stop_lon": 2.534194410322863, "coord": [48.8583084835988, 2.534194410322863], "stop_id": 3685970, "stop_desc": "FACE 116 AVENUE DU GENERAL DE GAULLE - 93050", "stop_name": "PASTEUR."}, "geometry": {"type": "Point", "coordinates": [2.534194410322863, 48.8583084835988]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3eb0c6998398efa0b05bfbf5693594839558d78f", "fields": {"departement": "93", "stop_lat": 48.86171402390937, "code_postal": "93048", "stop_lon": 2.4775420051584067, "coord": [48.86171402390937, 2.4775420051584067], "stop_id": 3685938, "stop_desc": "176 RUE DES RUFFINS - 93048", "stop_name": "JULIETTE DODU"}, "geometry": {"type": "Point", "coordinates": [2.4775420051584067, 48.86171402390937]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "530fcced7410421e58bcc486bde74ed30a21250e", "fields": {"departement": "93", "stop_lat": 48.86054192119611, "code_postal": "93050", "stop_lon": 2.536859021889229, "coord": [48.86054192119611, 2.536859021889229], "stop_id": 3685963, "stop_desc": "94 AVENUE DE VERDUN - 93050", "stop_name": "SIMONE BIGOT"}, "geometry": {"type": "Point", "coordinates": [2.536859021889229, 48.86054192119611]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "52bdd4c8f0086120382d76e371e114f48c1e5b18", "fields": {"departement": "93", "stop_lat": 48.85888980667615, "code_postal": "93049", "stop_lon": 2.5068461735062857, "coord": [48.85888980667615, 2.5068461735062857], "stop_id": 3685948, "stop_desc": "10 AVENUE JEAN JAURES - 93049", "stop_name": "VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.5068461735062857, 48.85888980667615]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "70a8e1bccdd030fba58f7f55fe8906efd25f7efd", "fields": {"departement": "93", "stop_lat": 48.867468600810184, "code_postal": "93050", "stop_lon": 2.533016754201017, "coord": [48.867468600810184, 2.533016754201017], "stop_id": 3685966, "stop_desc": "AVENUE LEON BLUM - 93050", "stop_name": "ILE DE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.533016754201017, 48.867468600810184]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2f42e11e3b4ca78370eb2e496657115e350e322e", "fields": {"departement": "94", "stop_lat": 48.81504970329177, "code_postal": "94046", "stop_lon": 2.421141792054011, "coord": [48.81504970329177, 2.421141792054011], "stop_id": 3686375, "stop_desc": "FACE 7 AVENUE DU GENERAL LECLERC - 94046", "stop_name": "ECOLE VETERINAIRE DE MAISONS-ALFORT"}, "geometry": {"type": "Point", "coordinates": [2.421141792054011, 48.81504970329177]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0efc6247fc76370e69824444b22a85d6ad2665d5", "fields": {"departement": "94", "stop_lat": 48.76004202458944, "code_postal": "94073", "stop_lon": 2.3686722414037877, "coord": [48.76004202458944, 2.3686722414037877], "stop_id": 3686370, "stop_desc": "AVENUE DE FONTAINEBLEAU - 94073", "stop_name": "LE COR DE CHASSE - LA BELLE EPINE"}, "geometry": {"type": "Point", "coordinates": [2.3686722414037877, 48.76004202458944]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2b7797418d4e76a8a1cb9e905b39830b2ac03176", "fields": {"departement": "94", "stop_lat": 48.80253557408905, "code_postal": "94002", "stop_lon": 2.4254754689207894, "coord": [48.80253557408905, 2.4254754689207894], "stop_id": 3686389, "stop_desc": "16 AV MALLERET JOINVILLE - 94002", "stop_name": "MAISONS-ALFORT - ALFORTVILLE RER"}, "geometry": {"type": "Point", "coordinates": [2.4254754689207894, 48.80253557408905]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6b627d08b9590cd4d9e32fbd8f94d59048512126", "fields": {"departement": "94", "stop_lat": 48.80431895803931, "code_postal": "94002", "stop_lon": 2.420199218744179, "coord": [48.80431895803931, 2.420199218744179], "stop_id": 3686385, "stop_desc": "36 RUE VICTOR HUGO - 94002", "stop_name": "MAIRIE D'ALFORTVILLE"}, "geometry": {"type": "Point", "coordinates": [2.420199218744179, 48.80431895803931]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "232dc921dc4422bf8e0bc1e5b95919eb0bbb997d", "fields": {"departement": "75", "stop_lat": 48.8482544844928, "code_postal": "75116", "stop_lon": 2.2600411234856406, "coord": [48.8482544844928, 2.2600411234856406], "stop_id": 4008248, "stop_desc": "78 RUE D'AUTEUIL - 75116", "stop_name": "GARE D'AUTEUIL"}, "geometry": {"type": "Point", "coordinates": [2.2600411234856406, 48.8482544844928]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9cb66ed61a4363486d131ee100f9972d74b57e00", "fields": {"departement": "92", "stop_lat": 48.84297584333725, "code_postal": "92012", "stop_lon": 2.243395961659191, "coord": [48.84297584333725, 2.243395961659191], "stop_id": 4008258, "stop_desc": "82 RUE DU CHATEAU - 92012", "stop_name": "RUE DE L'EST"}, "geometry": {"type": "Point", "coordinates": [2.243395961659191, 48.84297584333725]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "680705ad9be8f94d6dca57c0a8beb2f82d6ad049", "fields": {"departement": "92", "stop_lat": 48.84276000305309, "code_postal": "92012", "stop_lon": 2.243219337953633, "coord": [48.84276000305309, 2.243219337953633], "stop_id": 4008259, "stop_desc": "81-83 RUE DU CHATEAU - 92012", "stop_name": "RUE DE L'EST"}, "geometry": {"type": "Point", "coordinates": [2.243219337953633, 48.84276000305309]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a02b58bd63da55ddd4583cc750646f6e4c018c1f", "fields": {"departement": "92", "stop_lat": 48.84154904732475, "code_postal": "92012", "stop_lon": 2.235174382500791, "coord": [48.84154904732475, 2.235174382500791], "stop_id": 4008262, "stop_desc": "121 RUE DE PARIS - 92012", "stop_name": "RUE DE BILLANCOURT"}, "geometry": {"type": "Point", "coordinates": [2.235174382500791, 48.84154904732475]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0501aa6cdfab8e170242e0f4beaf6d04d71565e5", "fields": {"departement": "92", "stop_lat": 48.84130316347026, "code_postal": "92012", "stop_lon": 2.2314849041770275, "coord": [48.84130316347026, 2.2314849041770275], "stop_id": 4008264, "stop_desc": "145 RUE DE PARIS - 92012", "stop_name": "RUE DE SILLY"}, "geometry": {"type": "Point", "coordinates": [2.2314849041770275, 48.84130316347026]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c9364784894ccf450a21230c52a78042d7abe7ea", "fields": {"departement": "92", "stop_lat": 48.843119375874195, "code_postal": "92064", "stop_lon": 2.2225623450036838, "coord": [48.843119375874195, 2.2225623450036838], "stop_id": 4008266, "stop_desc": "QUAI DU PRESIDENT CARNOT - 92064", "stop_name": "PARC DE SAINT-CLOUD"}, "geometry": {"type": "Point", "coordinates": [2.2225623450036838, 48.843119375874195]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a80d66098b726fe2cf5bc4c3c998760406309b1d", "fields": {"departement": "75", "stop_lat": 48.868796743214915, "code_postal": "75108", "stop_lon": 2.321451648683953, "coord": [48.868796743214915, 2.321451648683953], "stop_id": 4008280, "stop_desc": "17-19 RUE DU FAUBOURG SAINT HONORE - 75108", "stop_name": "BOISSY D'ANGLAS"}, "geometry": {"type": "Point", "coordinates": [2.321451648683953, 48.868796743214915]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c9c5439f51e62aa0ccd36a8c3fbf7078ba120c9e", "fields": {"departement": "75", "stop_lat": 48.86944432102202, "code_postal": "75101", "stop_lon": 2.325715598888305, "coord": [48.86944432102202, 2.325715598888305], "stop_id": 4008281, "stop_desc": "19-21 BOULEVARD DE LA MADELEINE - 75101", "stop_name": "MADELEINE"}, "geometry": {"type": "Point", "coordinates": [2.325715598888305, 48.86944432102202]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "487748a277fcee64abc0222aff9966b9c869c9f6", "fields": {"departement": "75", "stop_lat": 48.87401247719477, "code_postal": "75108", "stop_lon": 2.296557776569808, "coord": [48.87401247719477, 2.296557776569808], "stop_id": 4008285, "stop_desc": "AVENUE DE FRIEDLAND - 75108", "stop_name": "CHARLES DE GAULLE - ETOILE - FRIEDLAND"}, "geometry": {"type": "Point", "coordinates": [2.296557776569808, 48.87401247719477]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4f563b51af9c1901277d5afb2a49050b1c5315a9", "fields": {"departement": "75", "stop_lat": 48.86530539791666, "code_postal": "75116", "stop_lon": 2.278909992767549, "coord": [48.86530539791666, 2.278909992767549], "stop_id": 4008294, "stop_desc": "121 RUE DE LA POMPE - 75116", "stop_name": "LYCEE JANSON DE SAILLY"}, "geometry": {"type": "Point", "coordinates": [2.278909992767549, 48.86530539791666]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "101807ddde93b9d7551a9df94280ccee80c1d49f", "fields": {"departement": "75", "stop_lat": 48.86571914834078, "code_postal": "75116", "stop_lon": 2.2795906522141896, "coord": [48.86571914834078, 2.2795906522141896], "stop_id": 4008295, "stop_desc": "108 RUE DE LA POMPE - 75116", "stop_name": "LYCEE JANSON DE SAILLY"}, "geometry": {"type": "Point", "coordinates": [2.2795906522141896, 48.86571914834078]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "08975fa58b5b973f37e7536fc3b954e65af2aae7", "fields": {"departement": "75", "stop_lat": 48.86355182123114, "code_postal": "75116", "stop_lon": 2.2768278103580526, "coord": [48.86355182123114, 2.2768278103580526], "stop_id": 4008296, "stop_desc": "73 RUE DE LA POMPE - 75116", "stop_name": "POMPE - MAIRIE DU 16EME"}, "geometry": {"type": "Point", "coordinates": [2.2768278103580526, 48.86355182123114]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "05664db60373b700013c00760c0e6bb41059b729", "fields": {"departement": "75", "stop_lat": 48.858562818762316, "code_postal": "75116", "stop_lon": 2.2748994950671264, "coord": [48.858562818762316, 2.2748994950671264], "stop_id": 4008300, "stop_desc": "1 RUE DE LA POMPE - 75116", "stop_name": "LA MUETTE - BOULAINVILLIERS RER"}, "geometry": {"type": "Point", "coordinates": [2.2748994950671264, 48.858562818762316]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d956ee1edc8d86b45195b9b0f2d31dc5ec2f83a6", "fields": {"departement": "75", "stop_lat": 48.8482544844928, "code_postal": "75116", "stop_lon": 2.2600411234856406, "coord": [48.8482544844928, 2.2600411234856406], "stop_id": 4008309, "stop_desc": "78 RUE D'AUTEUIL - 75116", "stop_name": "GARE D'AUTEUIL"}, "geometry": {"type": "Point", "coordinates": [2.2600411234856406, 48.8482544844928]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "729145ee25f26b14559d54caf9bfdd92a030c811", "fields": {"departement": "75", "stop_lat": 48.85352744113881, "code_postal": "75116", "stop_lon": 2.2704520379538953, "coord": [48.85352744113881, 2.2704520379538953], "stop_id": 4008316, "stop_desc": "2 RUE ADRIEN EBRARD - 75116", "stop_name": "RODIN"}, "geometry": {"type": "Point", "coordinates": [2.2704520379538953, 48.85352744113881]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "77cdd7b182fbec4aaf031fd7486a8946f64cab31", "fields": {"departement": "92", "stop_lat": 48.84130316347026, "code_postal": "92012", "stop_lon": 2.2314849041770275, "coord": [48.84130316347026, 2.2314849041770275], "stop_id": 4008363, "stop_desc": "145 RUE DE PARIS - 92012", "stop_name": "RUE DE SILLY"}, "geometry": {"type": "Point", "coordinates": [2.2314849041770275, 48.84130316347026]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b7bcc717d634ba3b20d1a4347cf510282b54c9cf", "fields": {"departement": "92", "stop_lat": 48.84276000305309, "code_postal": "92012", "stop_lon": 2.243219337953633, "coord": [48.84276000305309, 2.243219337953633], "stop_id": 4008366, "stop_desc": "81-83 RUE DU CHATEAU - 92012", "stop_name": "RUE DE L'EST"}, "geometry": {"type": "Point", "coordinates": [2.243219337953633, 48.84276000305309]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5ec57ec56e7bc55c3272b58542cbcd2a05e4357e", "fields": {"departement": "75", "stop_lat": 48.84780825353484, "code_postal": "75116", "stop_lon": 2.2650531374112775, "coord": [48.84780825353484, 2.2650531374112775], "stop_id": 4008372, "stop_desc": "51 RUE D'AUTEUIL - 75116", "stop_name": "MICHEL-ANGE - AUTEUIL"}, "geometry": {"type": "Point", "coordinates": [2.2650531374112775, 48.84780825353484]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "37f377522020b27732aedd1be0dcd4002d8d68d1", "fields": {"departement": "75", "stop_lat": 48.867966926962794, "code_postal": "75116", "stop_lon": 2.2815635005826227, "coord": [48.867966926962794, 2.2815635005826227], "stop_id": 4008382, "stop_desc": "125 AVENUE VICTOR HUGO - 75116", "stop_name": "PLACE JEAN MONNET"}, "geometry": {"type": "Point", "coordinates": [2.2815635005826227, 48.867966926962794]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f0f62ecf515641b01634251ff30b18933e01d802", "fields": {"departement": "75", "stop_lat": 48.87401247719477, "code_postal": "75108", "stop_lon": 2.296557776569808, "coord": [48.87401247719477, 2.296557776569808], "stop_id": 4008385, "stop_desc": "AVENUE DE FRIEDLAND - 75108", "stop_name": "CHARLES DE GAULLE - ETOILE - FRIEDLAND"}, "geometry": {"type": "Point", "coordinates": [2.296557776569808, 48.87401247719477]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5edfb169f32decc46ce46141b6b0dec25805146d", "fields": {"departement": "75", "stop_lat": 48.871044532850576, "code_postal": "75109", "stop_lon": 2.3325680619632974, "coord": [48.871044532850576, 2.3325680619632974], "stop_id": 4008835, "stop_desc": "PLACE DE L'OPERA - 75109", "stop_name": "OPERA"}, "geometry": {"type": "Point", "coordinates": [2.3325680619632974, 48.871044532850576]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "33c763bf5052e8e818d70178960fa00eefef4460", "fields": {"departement": "75", "stop_lat": 48.87432421623703, "code_postal": "75108", "stop_lon": 2.3236299251277788, "coord": [48.87432421623703, 2.3236299251277788], "stop_id": 4008837, "stop_desc": "94 BOULEVARD HAUSSMANN - 75108", "stop_name": "PASQUIER - ANJOU"}, "geometry": {"type": "Point", "coordinates": [2.3236299251277788, 48.87432421623703]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5d903ac9596fa92306ed9230dd1aaee2f545d06f", "fields": {"departement": "75", "stop_lat": 48.87529316389243, "code_postal": "75108", "stop_lon": 2.3130430364059853, "coord": [48.87529316389243, 2.3130430364059853], "stop_id": 4008840, "stop_desc": "142 BOULEVARD HAUSSMANN - 75108", "stop_name": "HAUSSMANN - MIROMESNIL"}, "geometry": {"type": "Point", "coordinates": [2.3130430364059853, 48.87529316389243]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1eb2932c0863a3cc0c2c9c8d3c7a403dd7ea5105", "fields": {"departement": "75", "stop_lat": 48.87478831052261, "code_postal": "75108", "stop_lon": 2.3062853319385006, "coord": [48.87478831052261, 2.3062853319385006], "stop_id": 4008845, "stop_desc": "169-171 BOULEVARD HAUSSMANN - 75108", "stop_name": "FRIEDLAND - HAUSSMANN"}, "geometry": {"type": "Point", "coordinates": [2.3062853319385006, 48.87478831052261]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "08e6b754a1a86172a016cfbfe8a8005140db5de8", "fields": {"departement": "75", "stop_lat": 48.87458037356659, "code_postal": "75108", "stop_lon": 2.3018710127789976, "coord": [48.87458037356659, 2.3018710127789976], "stop_id": 4008846, "stop_desc": "FACE 19 AV DE FRIEDLAND - 75108", "stop_name": "BALZAC"}, "geometry": {"type": "Point", "coordinates": [2.3018710127789976, 48.87458037356659]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e52cd8c693c208323213180ffe0d57843d9f1503", "fields": {"departement": "75", "stop_lat": 48.87379677721912, "code_postal": "75108", "stop_lon": 2.2965443212582546, "coord": [48.87379677721912, 2.2965443212582546], "stop_id": 4008849, "stop_desc": "47 AVENUE DE FRIEDLAND - 75108", "stop_name": "CHARLES DE GAULLE - ETOILE - FRIEDLAND"}, "geometry": {"type": "Point", "coordinates": [2.2965443212582546, 48.87379677721912]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "591bc5497e19209fba708a33107a38ddf3fc2bc1", "fields": {"departement": "75", "stop_lat": 48.85913933981904, "code_postal": "75116", "stop_lon": 2.2774867484852144, "coord": [48.85913933981904, 2.2774867484852144], "stop_id": 4008862, "stop_desc": "77 AVENUE PAUL DOUMER - 75116", "stop_name": "PLACE POSSOZ"}, "geometry": {"type": "Point", "coordinates": [2.2774867484852144, 48.85913933981904]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f208011ed4cb80af3193d44576abde353c09b9cd", "fields": {"departement": "75", "stop_lat": 48.85627988445956, "code_postal": "75116", "stop_lon": 2.2746570793269227, "coord": [48.85627988445956, 2.2746570793269227], "stop_id": 4008864, "stop_desc": "47 RUE DE BOULAINVILLIERS - 75116", "stop_name": "LES VIGNES - BOULAINVILLIERS RER"}, "geometry": {"type": "Point", "coordinates": [2.2746570793269227, 48.85627988445956]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "48fc9d695614e01e0e7d2de68a86072e60149677", "fields": {"departement": "75", "stop_lat": 48.847963657326225, "code_postal": "75116", "stop_lon": 2.2695059542092397, "coord": [48.847963657326225, 2.2695059542092397], "stop_id": 4008869, "stop_desc": "66 AVENUE THEOPHILE GAUTIER - 75116", "stop_name": "EGLISE D'AUTEUIL"}, "geometry": {"type": "Point", "coordinates": [2.2695059542092397, 48.847963657326225]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "15f58d0b252ef4a52e49398636224abe0454d13b", "fields": {"departement": "75", "stop_lat": 48.83817802656563, "code_postal": "75116", "stop_lon": 2.257864060448581, "coord": [48.83817802656563, 2.257864060448581], "stop_id": 4008875, "stop_desc": "232 AVENUE DE VERSAILLES - 75116", "stop_name": "PORTE DE SAINT-CLOUD - MURAT"}, "geometry": {"type": "Point", "coordinates": [2.257864060448581, 48.83817802656563]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5844b276dec65798d10c6176d4757925ac3635a0", "fields": {"departement": "75", "stop_lat": 48.847749918985706, "code_postal": "75116", "stop_lon": 2.273046856545455, "coord": [48.847749918985706, 2.273046856545455], "stop_id": 4008882, "stop_desc": "21 R DE REMUSAT - 75116", "stop_name": "PONT MIRABEAU"}, "geometry": {"type": "Point", "coordinates": [2.273046856545455, 48.847749918985706]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "56af7fe8a11636af864da524d5577ab5c4800fa8", "fields": {"departement": "75", "stop_lat": 48.85571145111524, "code_postal": "75116", "stop_lon": 2.270558183985436, "coord": [48.85571145111524, 2.270558183985436], "stop_id": 4008885, "stop_desc": "33 AVENUE MOZART - 75116", "stop_name": "RANELAGH"}, "geometry": {"type": "Point", "coordinates": [2.270558183985436, 48.85571145111524]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3d8c705e0478622c72e485d6a19a8969e302212e", "fields": {"departement": "75", "stop_lat": 48.85791537342734, "code_postal": "75116", "stop_lon": 2.2742328714160207, "coord": [48.85791537342734, 2.2742328714160207], "stop_id": 4008886, "stop_desc": "7 AVENUE MOZART - 75116", "stop_name": "LA MUETTE - BOULAINVILLIERS RER"}, "geometry": {"type": "Point", "coordinates": [2.2742328714160207, 48.85791537342734]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9df0f0d188c5eb3922fa9cfe42edc275edb59c20", "fields": {"departement": "92", "stop_lat": 48.82987858862623, "code_postal": "92012", "stop_lon": 2.2299835230508434, "coord": [48.82987858862623, 2.2299835230508434], "stop_id": 4008891, "stop_desc": "GARE ROUTIERE - 92012", "stop_name": "PONT DE SEVRES-METRO"}, "geometry": {"type": "Point", "coordinates": [2.2299835230508434, 48.82987858862623]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "065d60076ffa125e2b0b9e42438c3bb16123b3ea", "fields": {"departement": "92", "stop_lat": 48.826516619377834, "code_postal": "92072", "stop_lon": 2.219835757126419, "coord": [48.826516619377834, 2.219835757126419], "stop_id": 4008895, "stop_desc": "25 BIS GRANDE RUE - 92072", "stop_name": "PARC DE SAINT-CLOUD"}, "geometry": {"type": "Point", "coordinates": [2.219835757126419, 48.826516619377834]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "073bb2c514233a09d60f6c9ee4c7a2e93dba6b90", "fields": {"departement": "92", "stop_lat": 48.824703549250714, "code_postal": "92072", "stop_lon": 2.2133742801364997, "coord": [48.824703549250714, 2.2133742801364997], "stop_id": 4008896, "stop_desc": "48 GRANDE RUE - 92072", "stop_name": "MAIRIE DE SEVRES"}, "geometry": {"type": "Point", "coordinates": [2.2133742801364997, 48.824703549250714]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6322247287f19f338adaa2df98ce87008447f933", "fields": {"departement": "92", "stop_lat": 48.821937268907554, "code_postal": "92072", "stop_lon": 2.206765926349108, "coord": [48.821937268907554, 2.206765926349108], "stop_id": 4008901, "stop_desc": "35 AVENUE DE L'EUROPE - 92072", "stop_name": "PLACE GABRIEL PERI"}, "geometry": {"type": "Point", "coordinates": [2.206765926349108, 48.821937268907554]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6a5fd43e896f4def3ee1779bcb1c9d24d7984f99", "fields": {"departement": "92", "stop_lat": 48.8203484720689, "code_postal": "92072", "stop_lon": 2.20056348405683, "coord": [48.8203484720689, 2.20056348405683], "stop_id": 4008902, "stop_desc": "174 RUE GRANDE RUE - 92072", "stop_name": "HOPITAL JEAN ROSTAND"}, "geometry": {"type": "Point", "coordinates": [2.20056348405683, 48.8203484720689]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "51820ebc6785a241757152db1a375c4093131659", "fields": {"departement": "92", "stop_lat": 48.82088927265677, "code_postal": "92072", "stop_lon": 2.20190952396969, "coord": [48.82088927265677, 2.20190952396969], "stop_id": 4008903, "stop_desc": "149 RUE GRANDE RUE - 92072", "stop_name": "HOPITAL JEAN ROSTAND"}, "geometry": {"type": "Point", "coordinates": [2.20190952396969, 48.82088927265677]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "988d0c766617104829be2a4fcd571d2ff228bb3c", "fields": {"departement": "92", "stop_lat": 48.81869202615678, "code_postal": "92022", "stop_lon": 2.198226896460123, "coord": [48.81869202615678, 2.198226896460123], "stop_id": 4008905, "stop_desc": "155 AVENUE ROGER SALENGRO - 92022", "stop_name": "MARIVEL"}, "geometry": {"type": "Point", "coordinates": [2.198226896460123, 48.81869202615678]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2bef2bea890531c8c08a05b5fe1bd8b3440c6cb4", "fields": {"departement": "92", "stop_lat": 48.81053153554522, "code_postal": "92022", "stop_lon": 2.1910501002131277, "coord": [48.81053153554522, 2.1910501002131277], "stop_id": 4008910, "stop_desc": "AVENUE ROGER SALENGRO - 92022", "stop_name": "COURS GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.1910501002131277, 48.81053153554522]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9ffb03467778b64293b00ffd8f0bd2dfad067dcd", "fields": {"departement": "92", "stop_lat": 48.810819960857444, "code_postal": "92022", "stop_lon": 2.1917160854064868, "coord": [48.810819960857444, 2.1917160854064868], "stop_id": 4008911, "stop_desc": "AVENUE ROGER SALENGRO - 92022", "stop_name": "COURS GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.1917160854064868, 48.810819960857444]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2cdb6a20ab940b6d88917e9d5d0398ddb024908e", "fields": {"departement": "92", "stop_lat": 48.829339588647336, "code_postal": "92072", "stop_lon": 2.2302705093554778, "coord": [48.829339588647336, 2.2302705093554778], "stop_id": 4008918, "stop_desc": "GARE ROUTIERE - 92072", "stop_name": "PONT DE SEVRES-METRO"}, "geometry": {"type": "Point", "coordinates": [2.2302705093554778, 48.829339588647336]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e660481e9dea7b0a9f0c2b7cfb7bbf3790228558", "fields": {"departement": "92", "stop_lat": 48.82987858862623, "code_postal": "92012", "stop_lon": 2.2299835230508434, "coord": [48.82987858862623, 2.2299835230508434], "stop_id": 4008919, "stop_desc": "GARE ROUTIERE - 92012", "stop_name": "PONT DE SEVRES-METRO"}, "geometry": {"type": "Point", "coordinates": [2.2299835230508434, 48.82987858862623]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4e413c9150b1087ffa6bbea46bc27ae3c4ae42b0", "fields": {"departement": "92", "stop_lat": 48.82642556896797, "code_postal": "92072", "stop_lon": 2.2186517020558836, "coord": [48.82642556896797, 2.2186517020558836], "stop_id": 4008922, "stop_desc": "16 GRANDE RUE - 92072", "stop_name": "PARC DE SAINT-CLOUD"}, "geometry": {"type": "Point", "coordinates": [2.2186517020558836, 48.82642556896797]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "644585386b823f82be0b2e16882390ec6d5315e5", "fields": {"departement": "92", "stop_lat": 48.816189030781565, "code_postal": "92022", "stop_lon": 2.1945045924659863, "coord": [48.816189030781565, 2.1945045924659863], "stop_id": 4008935, "stop_desc": "547 AVENUE ROGER SALENGRO - 92022", "stop_name": "GUILLEMINOT"}, "geometry": {"type": "Point", "coordinates": [2.1945045924659863, 48.816189030781565]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4cdc9b035265a5845a787356575df9e11436bf90", "fields": {"departement": "92", "stop_lat": 48.826516619377834, "code_postal": "92072", "stop_lon": 2.219835757126419, "coord": [48.826516619377834, 2.219835757126419], "stop_id": 4008949, "stop_desc": "25 BIS GRANDE RUE - 92072", "stop_name": "PARC DE SAINT-CLOUD"}, "geometry": {"type": "Point", "coordinates": [2.219835757126419, 48.826516619377834]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ad90529e0508b6bbf5a2a2b5a692539ee4ae8661", "fields": {"departement": "92", "stop_lat": 48.8203484720689, "code_postal": "92072", "stop_lon": 2.20056348405683, "coord": [48.8203484720689, 2.20056348405683], "stop_id": 4008956, "stop_desc": "174 RUE GRANDE RUE - 92072", "stop_name": "HOPITAL JEAN ROSTAND"}, "geometry": {"type": "Point", "coordinates": [2.20056348405683, 48.8203484720689]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "660f4a07a1da58e4f9bc91e54f114a3758c1eef3", "fields": {"departement": "92", "stop_lat": 48.812941234038774, "code_postal": "92022", "stop_lon": 2.191846224796117, "coord": [48.812941234038774, 2.191846224796117], "stop_id": 4008962, "stop_desc": "928 AVENUE ROGER SALENGRO - 92022", "stop_name": "ATRIUM"}, "geometry": {"type": "Point", "coordinates": [2.191846224796117, 48.812941234038774]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8afad869a4024d9fe8bf91d197d57cb81d4069d9", "fields": {"departement": "92", "stop_lat": 48.81053153554522, "code_postal": "92022", "stop_lon": 2.1910501002131277, "coord": [48.81053153554522, 2.1910501002131277], "stop_id": 4008964, "stop_desc": "AVENUE ROGER SALENGRO - 92022", "stop_name": "COURS GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.1910501002131277, 48.81053153554522]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "42c6f520ef55620279de0c0f17eea61a2bd13eaa", "fields": {"departement": "78", "stop_lat": 48.80396872482966, "code_postal": "78686", "stop_lon": 2.1693256810760886, "coord": [48.80396872482966, 2.1693256810760886], "stop_id": 4008975, "stop_desc": "93 AVENUE DU GENERAL LECLERC - 78686", "stop_name": "GABRIEL PERI"}, "geometry": {"type": "Point", "coordinates": [2.1693256810760886, 48.80396872482966]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3f5abe99b8ff751c6f677f985abd3a3c25dfbf60", "fields": {"departement": "78", "stop_lat": 48.80275022907373, "code_postal": "78686", "stop_lon": 2.1657240306264756, "coord": [48.80275022907373, 2.1657240306264756], "stop_id": 4008977, "stop_desc": "129 AVENUE DU GENERAL LECLERC - 78686", "stop_name": "PRESIDENT DOUMER"}, "geometry": {"type": "Point", "coordinates": [2.1657240306264756, 48.80275022907373]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0512de23c00458fef6e81ce0c7dfd653b0d2bb64", "fields": {"departement": "78", "stop_lat": 48.79873465778847, "code_postal": "78646", "stop_lon": 2.143602028643418, "coord": [48.79873465778847, 2.143602028643418], "stop_id": 4008984, "stop_desc": "73 AVENUE DE PARIS - 78646", "stop_name": "JEAN MERMOZ"}, "geometry": {"type": "Point", "coordinates": [2.143602028643418, 48.79873465778847]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5548f050335e6fa9634ec50ed7ac570dba79f257", "fields": {"departement": "78", "stop_lat": 48.80040534817908, "code_postal": "78646", "stop_lon": 2.1375277884285193, "coord": [48.80040534817908, 2.1375277884285193], "stop_id": 4008986, "stop_desc": "FACE 48 AVENUE DE PARIS - 78646", "stop_name": "VERGENNES"}, "geometry": {"type": "Point", "coordinates": [2.1375277884285193, 48.80040534817908]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "95d97364fd13a9195b340762e2cebbcab118e563", "fields": {"departement": "78", "stop_lat": 48.8022180452456, "code_postal": "78646", "stop_lon": 2.130595422726228, "coord": [48.8022180452456, 2.130595422726228], "stop_id": 4008988, "stop_desc": "FACE 6 AVENUE DE PARIS - 78646", "stop_name": "HOTEL DE VILLE DE VERSAILLES"}, "geometry": {"type": "Point", "coordinates": [2.130595422726228, 48.8022180452456]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "be3fba331779114d7626a03b8f4135f87e95999d", "fields": {"departement": "78", "stop_lat": 48.80167972148193, "code_postal": "78646", "stop_lon": 2.13114179496101, "coord": [48.80167972148193, 2.13114179496101], "stop_id": 4008989, "stop_desc": "6 AVENUE DE PARIS - 78646", "stop_name": "HOTEL DE VILLE DE VERSAILLES"}, "geometry": {"type": "Point", "coordinates": [2.13114179496101, 48.80167972148193]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e7c3677785b505145e4a9c60cd2cfa8a974d7716", "fields": {"departement": "92", "stop_lat": 48.87050610336747, "code_postal": "92073", "stop_lon": 2.22465432200747, "coord": [48.87050610336747, 2.22465432200747], "stop_id": 4008993, "stop_desc": "24-26 AVENUE DU GENERAL DE GAULLE - 92073", "stop_name": "GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.22465432200747, 48.87050610336747]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "543d0e4bb7d2fd77124506694eadc3eb29eb810d", "fields": {"departement": "92", "stop_lat": 48.871940779947096, "code_postal": "92073", "stop_lon": 2.221217921872032, "coord": [48.871940779947096, 2.221217921872032], "stop_id": 4008998, "stop_desc": "AVENUE FRANKLIN ROOSEVELT - 92073", "stop_name": "GARE DU MONT VALERIEN - HOPITAL FOCH"}, "geometry": {"type": "Point", "coordinates": [2.221217921872032, 48.871940779947096]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "239e0e4a0e245bc5efff894fd24955556151f2f9", "fields": {"departement": "92", "stop_lat": 48.87641822969387, "code_postal": "92073", "stop_lon": 2.2230473189484528, "coord": [48.87641822969387, 2.2230473189484528], "stop_id": 4009008, "stop_desc": "FACE 4 RUE CLAUDE BURGOD - 92073", "stop_name": "BURGOD - LIBERTE"}, "geometry": {"type": "Point", "coordinates": [2.2230473189484528, 48.87641822969387]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cb2bdc7b303ea3544ba05acf57fbe9c94887634f", "fields": {"departement": "92", "stop_lat": 48.86999418580025, "code_postal": "92073", "stop_lon": 2.2250368954107436, "coord": [48.86999418580025, 2.2250368954107436], "stop_id": 4009010, "stop_desc": "FACE 3 RUE DESBASSAYNS DE RICHEMONT - 92073", "stop_name": "MAIRIE DESBASSAYNS"}, "geometry": {"type": "Point", "coordinates": [2.2250368954107436, 48.86999418580025]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7ded90ed075b12893aefff2ea00a61c15c0bfa58", "fields": {"departement": "92", "stop_lat": 48.87111752398503, "code_postal": "92073", "stop_lon": 2.2249527206200748, "coord": [48.87111752398503, 2.2249527206200748], "stop_id": 4009020, "stop_desc": "2 RUE CARNOT - 92073", "stop_name": "MAIRIE DE SURESNES"}, "geometry": {"type": "Point", "coordinates": [2.2249527206200748, 48.87111752398503]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dd19c24b0144af9e6caa62ecc8ddcb3fa169de17", "fields": {"departement": "92", "stop_lat": 48.870577602062625, "code_postal": "92073", "stop_lon": 2.2242318293697605, "coord": [48.870577602062625, 2.2242318293697605], "stop_id": 4009021, "stop_desc": "35 AVENUE DU GENERAL DE GAULLE - 92073", "stop_name": "MAIRIE DE SURESNES"}, "geometry": {"type": "Point", "coordinates": [2.2242318293697605, 48.870577602062625]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a487b5fad6ea6f71331911cffb7257e9a45d5120", "fields": {"departement": "92", "stop_lat": 48.87333000775836, "code_postal": "92073", "stop_lon": 2.2266646165032538, "coord": [48.87333000775836, 2.2266646165032538], "stop_id": 4009022, "stop_desc": "46 RUE CARNOT - 92073", "stop_name": "HONORE D'ESTIENNE D'ORVES"}, "geometry": {"type": "Point", "coordinates": [2.2266646165032538, 48.87333000775836]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f08c1b74a72a9243599ffe5b2565b910c4891bf9", "fields": {"departement": "92", "stop_lat": 48.87576753024058, "code_postal": "92073", "stop_lon": 2.228798565454174, "coord": [48.87576753024058, 2.228798565454174], "stop_id": 4009023, "stop_desc": "100 RUE CARNOT - 92073", "stop_name": "BERTY ALBRECHT"}, "geometry": {"type": "Point", "coordinates": [2.228798565454174, 48.87576753024058]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c19ed5183cee64dbb9144eca3bbe1f8d32d121df", "fields": {"departement": "92", "stop_lat": 48.869309974761926, "code_postal": "92073", "stop_lon": 2.2237986419615177, "coord": [48.869309974761926, 2.2237986419615177], "stop_id": 4009031, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 92073", "stop_name": "SURESNES DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.2237986419615177, 48.869309974761926]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5fb43d4a99ec5527f4df40c3385c182f40b40910", "fields": {"departement": "92", "stop_lat": 48.86655752802742, "code_postal": "92073", "stop_lon": 2.221393440962992, "coord": [48.86655752802742, 2.221393440962992], "stop_id": 4009032, "stop_desc": "3 RUE DE SEVRES - 92073", "stop_name": "SURESNES - LONGCHAMP"}, "geometry": {"type": "Point", "coordinates": [2.221393440962992, 48.86655752802742]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3e3b75d2bbcf21b6db2b3faae8c2eebc42ecbe92", "fields": {"departement": "92", "stop_lat": 48.862071083317176, "code_postal": "92073", "stop_lon": 2.219619041013354, "coord": [48.862071083317176, 2.219619041013354], "stop_id": 4009034, "stop_desc": "29 BIS RUE FERNAND FOREST - 92073", "stop_name": "FERNAND FOREST"}, "geometry": {"type": "Point", "coordinates": [2.219619041013354, 48.862071083317176]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "800f9d2ffe3ba6e0f3c18a7e976d2677c8ef3f15", "fields": {"departement": "92", "stop_lat": 48.86119732646251, "code_postal": "92073", "stop_lon": 2.217632309777964, "coord": [48.86119732646251, 2.217632309777964], "stop_id": 4009035, "stop_desc": "FACE 41 RUE HENRI REGNAULT - 92073", "stop_name": "RUE DES COUVALOUX"}, "geometry": {"type": "Point", "coordinates": [2.217632309777964, 48.86119732646251]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "63522e7e245b055dd5beb532269dfbe09c700b65", "fields": {"departement": "92", "stop_lat": 48.86170500966111, "code_postal": "92073", "stop_lon": 2.2220853549430557, "coord": [48.86170500966111, 2.2220853549430557], "stop_id": 4009037, "stop_desc": "40-42 RUE DE LA REPUBLIQUE - 92073", "stop_name": "MONGE"}, "geometry": {"type": "Point", "coordinates": [2.2220853549430557, 48.86170500966111]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "42c4b8e5de722cab1f29311cd66bc2a7cc028518", "fields": {"departement": "92", "stop_lat": 48.86831363169239, "code_postal": "92073", "stop_lon": 2.2251222715536176, "coord": [48.86831363169239, 2.2251222715536176], "stop_id": 4009040, "stop_desc": "38 BOULEVARD HENRI SELLIER - 92073", "stop_name": "SURESNES DE GAULLE."}, "geometry": {"type": "Point", "coordinates": [2.2251222715536176, 48.86831363169239]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "45e739d2454ed1b063bc2f5eee16bd954963a12f", "fields": {"departement": "93", "stop_lat": 48.88226967931744, "code_postal": "93061", "stop_lon": 2.4028270683014936, "coord": [48.88226967931744, 2.4028270683014936], "stop_id": 4009045, "stop_desc": "83 RUE ANDRE JOINEAU - 93061", "stop_name": "MAIRIE DU PRE-SAINT-GERVAIS"}, "geometry": {"type": "Point", "coordinates": [2.4028270683014936, 48.88226967931744]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cc6517142a0f42a853c164325faba697590ca9f9", "fields": {"departement": "93", "stop_lat": 48.891535699652785, "code_postal": "93055", "stop_lon": 2.4024571717916654, "coord": [48.891535699652785, 2.4024571717916654], "stop_id": 4009048, "stop_desc": "2-8 RUE HOCHE - 93055", "stop_name": "HOCHE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.4024571717916654, 48.891535699652785]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c895b0b08f6ec5ce9f72806c21cc67321015ea24", "fields": {"departement": "93", "stop_lat": 48.90397924505706, "code_postal": "93001", "stop_lon": 2.391798537325414, "coord": [48.90397924505706, 2.391798537325414], "stop_id": 4009055, "stop_desc": "105 AVENUE DE LA REPUBLIQUE - 93001", "stop_name": "QUATRE CHEMINS - REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.391798537325414, 48.90397924505706]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5631eeb2c6474c1654dfb0bb09f0c1dd15a19cf3", "fields": {"departement": "93", "stop_lat": 48.92603314228467, "code_postal": "93066", "stop_lon": 2.366945392002711, "coord": [48.92603314228467, 2.366945392002711], "stop_id": 4009064, "stop_desc": "65 RUE DANIELLE CASANOVA - 93066", "stop_name": "RUE DU PROGRES"}, "geometry": {"type": "Point", "coordinates": [2.366945392002711, 48.92603314228467]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "87ddfe852a219d5276ea45cd87914d1f2c2090aa", "fields": {"departement": "93", "stop_lat": 48.934924465086425, "code_postal": "93066", "stop_lon": 2.3470623472132286, "coord": [48.934924465086425, 2.3470623472132286], "stop_id": 4009070, "stop_desc": "RUE AMBROISE CROIZAT - 93066", "stop_name": "SAINT-DENIS RER"}, "geometry": {"type": "Point", "coordinates": [2.3470623472132286, 48.934924465086425]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c818692122f05e3fcbb4a2e182f89ef20d031a73", "fields": {"departement": "93", "stop_lat": 48.93466386406904, "code_postal": "93066", "stop_lon": 2.346844047730973, "coord": [48.93466386406904, 2.346844047730973], "stop_id": 4009071, "stop_desc": "RUE AMBROISE CROIZAT - 93066", "stop_name": "SAINT-DENIS RER"}, "geometry": {"type": "Point", "coordinates": [2.346844047730973, 48.93466386406904]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "64bc5d9ead17cd16cf14e86d86aac8fd1cd2dac3", "fields": {"departement": "93", "stop_lat": 48.925574809326854, "code_postal": "93066", "stop_lon": 2.3669451292500514, "coord": [48.925574809326854, 2.3669451292500514], "stop_id": 4009076, "stop_desc": "130 RUE DANIELLE CASANOVA - 93066", "stop_name": "RUE DU PROGRES"}, "geometry": {"type": "Point", "coordinates": [2.3669451292500514, 48.925574809326854]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c110374ad9031a560ace76de940359f7589f651d", "fields": {"departement": "93", "stop_lat": 48.91436356576239, "code_postal": "93001", "stop_lon": 2.3814602859831564, "coord": [48.91436356576239, 2.3814602859831564], "stop_id": 4009081, "stop_desc": "AVENUE DE LA REPUBLIQUE - 93001", "stop_name": "MAIRIE D'AUBERVILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.3814602859831564, 48.91436356576239]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0f6de5fdb0a15c5e031a979aaa5f4aafbfc18fce", "fields": {"departement": "93", "stop_lat": 48.90288244987511, "code_postal": "93055", "stop_lon": 2.392601686654297, "coord": [48.90288244987511, 2.392601686654297], "stop_id": 4009086, "stop_desc": "91 AVENUE EDOUARD VAILLANT - 93055", "stop_name": "QUATRE CHEMINS - EDOUARD VAILLANT"}, "geometry": {"type": "Point", "coordinates": [2.392601686654297, 48.90288244987511]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "388111ee35b6a503286f37a736f3da5996e35ee1", "fields": {"departement": "93", "stop_lat": 48.89931266233647, "code_postal": "93055", "stop_lon": 2.3965645909629774, "coord": [48.89931266233647, 2.3965645909629774], "stop_id": 4009088, "stop_desc": "31 AVENUE EDOUARD VAILLANT - 93055", "stop_name": "JEAN MOULIN"}, "geometry": {"type": "Point", "coordinates": [2.3965645909629774, 48.89931266233647]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8accdca282bf6a8050487ec5ee628f2c9931dbdf", "fields": {"departement": "92", "stop_lat": 48.814122121331565, "code_postal": "92048", "stop_lon": 2.228832103890688, "coord": [48.814122121331565, 2.228832103890688], "stop_id": 4009102, "stop_desc": "FACE 13 RUE DES CAPUCINS - 92048", "stop_name": "CAPUCINS - BEL AIR"}, "geometry": {"type": "Point", "coordinates": [2.228832103890688, 48.814122121331565]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "31a0f719fa97a46f4c61caaaf6e806acd862371e", "fields": {"departement": "92", "stop_lat": 48.81520636026428, "code_postal": "92048", "stop_lon": 2.2252914336382292, "coord": [48.81520636026428, 2.2252914336382292], "stop_id": 4009104, "stop_desc": "3 BIS R DU BEL AIR - 92048", "stop_name": "CHATELET - BEL AIR"}, "geometry": {"type": "Point", "coordinates": [2.2252914336382292, 48.81520636026428]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "43ee0477a51bcab23c8b603b9d10048acf27c594", "fields": {"departement": "92", "stop_lat": 48.821319799672125, "code_postal": "92048", "stop_lon": 2.2272109871942822, "coord": [48.821319799672125, 2.2272109871942822], "stop_id": 4009108, "stop_desc": "12 RUE MARCEL ALLEGOT - 92048", "stop_name": "11 NOVEMBRE"}, "geometry": {"type": "Point", "coordinates": [2.2272109871942822, 48.821319799672125]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3d6734e120cec3b307d2629f7a54fd052adece3e", "fields": {"departement": "92", "stop_lat": 48.808400834248374, "code_postal": "92048", "stop_lon": 2.233225656940179, "coord": [48.808400834248374, 2.233225656940179], "stop_id": 4009111, "stop_desc": "FACE 20-22 RUE TERRE NEUVE - 92048", "stop_name": "TERRE NEUVE"}, "geometry": {"type": "Point", "coordinates": [2.233225656940179, 48.808400834248374]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9a7956957e012405de416c1d97cf6b21f49a8da7", "fields": {"departement": "92", "stop_lat": 48.80783182434355, "code_postal": "92048", "stop_lon": 2.2405883554701855, "coord": [48.80783182434355, 2.2405883554701855], "stop_id": 4009116, "stop_desc": "AVENUE LOUVOIS - 92048", "stop_name": "VAL FLEURY RER"}, "geometry": {"type": "Point", "coordinates": [2.2405883554701855, 48.80783182434355]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0d5a7c1ed517e409c6bd2d9f5bf73522431323c7", "fields": {"departement": "92", "stop_lat": 48.81472598229365, "code_postal": "92048", "stop_lon": 2.2412559731883066, "coord": [48.81472598229365, 2.2412559731883066], "stop_id": 4009132, "stop_desc": "PL DU 8 MAI 1945 - 92048", "stop_name": "GARE DE MEUDON"}, "geometry": {"type": "Point", "coordinates": [2.2412559731883066, 48.81472598229365]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "17a8b94934d42161aa133678e7d6f94c8c763143", "fields": {"departement": "92", "stop_lat": 48.816318792177285, "code_postal": "92048", "stop_lon": 2.243743573303939, "coord": [48.816318792177285, 2.243743573303939], "stop_id": 4009133, "stop_desc": "RUE DES SORRIERES - 92048", "stop_name": "SORRIERES"}, "geometry": {"type": "Point", "coordinates": [2.243743573303939, 48.816318792177285]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2d9c921451080db0f05d8bdcbf6c8b2545753b81", "fields": {"departement": "92", "stop_lat": 48.81549033481328, "code_postal": "92048", "stop_lon": 2.2214938187308557, "coord": [48.81549033481328, 2.2214938187308557], "stop_id": 4009146, "stop_desc": "53 RUE ERNEST RENAN - 92048", "stop_name": "HAMEAU"}, "geometry": {"type": "Point", "coordinates": [2.2214938187308557, 48.81549033481328]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c6c908b9962c6aba500139224ab63bcfd0192e45", "fields": {"departement": "92", "stop_lat": 48.821319799672125, "code_postal": "92048", "stop_lon": 2.2272109871942822, "coord": [48.821319799672125, 2.2272109871942822], "stop_id": 4009148, "stop_desc": "12 RUE MARCEL ALLEGOT - 92048", "stop_name": "11 NOVEMBRE"}, "geometry": {"type": "Point", "coordinates": [2.2272109871942822, 48.821319799672125]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6e8efb27dbc69068d1d921a734d74c079a01cbb2", "fields": {"departement": "92", "stop_lat": 48.80783182434355, "code_postal": "92048", "stop_lon": 2.2405883554701855, "coord": [48.80783182434355, 2.2405883554701855], "stop_id": 4009159, "stop_desc": "AVENUE LOUVOIS - 92048", "stop_name": "VAL FLEURY RER"}, "geometry": {"type": "Point", "coordinates": [2.2405883554701855, 48.80783182434355]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "69e9166fb70580bee3947a359248ed3fbef9fdc6", "fields": {"departement": "92", "stop_lat": 48.806182525144486, "code_postal": "92048", "stop_lon": 2.246238282785316, "coord": [48.806182525144486, 2.246238282785316], "stop_id": 4009161, "stop_desc": "13 RUE DU PERE BROTTIER - 92048", "stop_name": "PERE BROTTIER - CHARLES INFROIT"}, "geometry": {"type": "Point", "coordinates": [2.246238282785316, 48.806182525144486]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "517321e8e3e969f456ddabf0db3592de7b59ca8e", "fields": {"departement": "92", "stop_lat": 48.810418381146384, "code_postal": "92048", "stop_lon": 2.2497145024396503, "coord": [48.810418381146384, 2.2497145024396503], "stop_id": 4009163, "stop_desc": "37 BIS RUE DES MARAIS - 92048", "stop_name": "RIVOLI"}, "geometry": {"type": "Point", "coordinates": [2.2497145024396503, 48.810418381146384]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3faf5261f19cb2f50ea67855fff98b20205d7916", "fields": {"departement": "92", "stop_lat": 48.80896069011549, "code_postal": "92048", "stop_lon": 2.236259032803945, "coord": [48.80896069011549, 2.236259032803945], "stop_id": 4009172, "stop_desc": "23 R DE LA REPUBLIQUE - 92048", "stop_name": "MAISON ROUGE - NOUVELLE POSTE"}, "geometry": {"type": "Point", "coordinates": [2.236259032803945, 48.80896069011549]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1704899e2ba17161ec40650f4949cd3d82c221bf", "fields": {"departement": "92", "stop_lat": 48.824805063874585, "code_postal": "92040", "stop_lon": 2.27387833738733, "coord": [48.824805063874585, 2.27387833738733], "stop_id": 4009222, "stop_desc": "RUE KLEBER - 92040", "stop_name": "MAIRIE D'ISSY-METRO"}, "geometry": {"type": "Point", "coordinates": [2.27387833738733, 48.824805063874585]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "12d135482bd0293b9ebb50aad2b9ad540dfe0b85", "fields": {"departement": "92", "stop_lat": 48.82519958052329, "code_postal": "92040", "stop_lon": 2.2721355370286798, "coord": [48.82519958052329, 2.2721355370286798], "stop_id": 4009231, "stop_desc": "FACE 34 RUE DIDEROT - 92040", "stop_name": "MAIRIE D'ISSY-METRO."}, "geometry": {"type": "Point", "coordinates": [2.2721355370286798, 48.82519958052329]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1d2b73d9b7f6577e1bd0b3298caf5da7c3821406", "fields": {"departement": "92", "stop_lat": 48.82747005089394, "code_postal": "92040", "stop_lon": 2.2832949043650324, "coord": [48.82747005089394, 2.2832949043650324], "stop_id": 4009236, "stop_desc": "2 R MAURICE HARTMANN - 92040", "stop_name": "MAURICE HARTMANN"}, "geometry": {"type": "Point", "coordinates": [2.2832949043650324, 48.82747005089394]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6d8cfef84762dad6535310e148a11123c82891c9", "fields": {"departement": "92", "stop_lat": 48.82446285204868, "code_postal": "92040", "stop_lon": 2.2726128698969172, "coord": [48.82446285204868, 2.2726128698969172], "stop_id": 4009241, "stop_desc": "FACE 34 RUE DIDEROT - 92040", "stop_name": "MAIRIE D'ISSY-METRO.."}, "geometry": {"type": "Point", "coordinates": [2.2726128698969172, 48.82446285204868]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aec83c9752c132fc1cecf051dc93c790902c0598", "fields": {"departement": "92", "stop_lat": 48.822385251551566, "code_postal": "92040", "stop_lon": 2.2556287706912954, "coord": [48.822385251551566, 2.2556287706912954], "stop_id": 4009260, "stop_desc": "42 RUE JEAN JACQUES ROUSSEAU - 92040", "stop_name": "RUE DE LA GARE"}, "geometry": {"type": "Point", "coordinates": [2.2556287706912954, 48.822385251551566]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3c3bc233f46af56eb6e10c08e7ddfe426b03a77a", "fields": {"departement": "95", "stop_lat": 48.92337067632719, "code_postal": "95063", "stop_lon": 2.217666012118316, "coord": [48.92337067632719, 2.217666012118316], "stop_id": 4009352, "stop_desc": "R JULIUS ET ETHEL ROSENBERG - 95063", "stop_name": "PONT DE BEZONS"}, "geometry": {"type": "Point", "coordinates": [2.217666012118316, 48.92337067632719]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "029ed40ed62e3fd9eade57a844f595848b157a1f", "fields": {"departement": "92", "stop_lat": 48.91081341466561, "code_postal": "92025", "stop_lon": 2.2343289250336604, "coord": [48.91081341466561, 2.2343289250336604], "stop_id": 4009358, "stop_desc": "68 BD CHARLES DE GAULLE - 92025", "stop_name": "JACQUELINE AURIOL"}, "geometry": {"type": "Point", "coordinates": [2.2343289250336604, 48.91081341466561]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "385b7600a9b5290dd37f9f0c3d37a7c0812a9492", "fields": {"departement": "92", "stop_lat": 48.79375678857883, "code_postal": "92023", "stop_lon": 2.2659445058349594, "coord": [48.79375678857883, 2.2659445058349594], "stop_id": 4687363, "stop_desc": "FACE 103 AVENUE JEAN BAPTISTE CLEMENT - 92023", "stop_name": "CIMETIERE DE CLAMART"}, "geometry": {"type": "Point", "coordinates": [2.2659445058349594, 48.79375678857883]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1f3b4457dad502933cb481465f2bd8ebc716f037", "fields": {"departement": "92", "stop_lat": 48.78988368983829, "code_postal": "92023", "stop_lon": 2.253231383781296, "coord": [48.78988368983829, 2.253231383781296], "stop_id": 4687369, "stop_desc": "ROUTE DE LA PORTE DE TRIVAUX - 92023", "stop_name": "JARDIN PARISIEN - HOPITAL ANTOINE BECLERE"}, "geometry": {"type": "Point", "coordinates": [2.253231383781296, 48.78988368983829]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ff2104c08451ab06dbca9abbe5274fc03ed41a88", "fields": {"departement": "92", "stop_lat": 48.78687634148946, "code_postal": "92023", "stop_lon": 2.245932069536149, "coord": [48.78687634148946, 2.245932069536149], "stop_id": 4687372, "stop_desc": "183 R DE LA PORTE DE TRIVAUX - 92023", "stop_name": "CIMETIERE INTERCOMMUNAL"}, "geometry": {"type": "Point", "coordinates": [2.245932069536149, 48.78687634148946]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ed7874d26544c54e4356d175c013e16ffbd2802e", "fields": {"departement": "92", "stop_lat": 48.78492685219859, "code_postal": "92023", "stop_lon": 2.235938530633914, "coord": [48.78492685219859, 2.235938530633914], "stop_id": 4687376, "stop_desc": "R DE LA PLAINE - 92023", "stop_name": "GEORGES POMPIDOU"}, "geometry": {"type": "Point", "coordinates": [2.235938530633914, 48.78492685219859]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "74831780e32f051a4bee494f954dcba1c6979062", "fields": {"departement": "92", "stop_lat": 48.83429683488882, "code_postal": "92012", "stop_lon": 2.2600618934305037, "coord": [48.83429683488882, 2.2600618934305037], "stop_id": 4687378, "stop_desc": "AVENUE LE JOUR SE LEVE - 92012", "stop_name": "LE JOUR SE LEVE"}, "geometry": {"type": "Point", "coordinates": [2.2600618934305037, 48.83429683488882]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2f023521f706fc6af8e3832de7a2c58ca5458a44", "fields": {"departement": "95", "stop_lat": 49.00456558843109, "code_postal": "95585", "stop_lon": 2.3729868154366365, "coord": [49.00456558843109, 2.3729868154366365], "stop_id": 4695657, "stop_desc": "33 RUE GABRIEL PERI - 95585", "stop_name": "CHAMP DE CHARTRES."}, "geometry": {"type": "Point", "coordinates": [2.3729868154366365, 49.00456558843109]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e235ad18c735bdce6ef7741a606d18f5f0878ed4", "fields": {"departement": "95", "stop_lat": 48.996152321652765, "code_postal": "95585", "stop_lon": 2.379249497427796, "coord": [48.996152321652765, 2.379249497427796], "stop_id": 4695662, "stop_desc": "FACE 116 RUE PIERRE BROSSOLETTE - 95585", "stop_name": "MAIRIE DE SARCELLES"}, "geometry": {"type": "Point", "coordinates": [2.379249497427796, 48.996152321652765]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7b88460841c546c90cd085c32fdba1b878fb171e", "fields": {"departement": "95", "stop_lat": 48.99730173969438, "code_postal": "95585", "stop_lon": 2.381572147113851, "coord": [48.99730173969438, 2.381572147113851], "stop_id": 4695665, "stop_desc": "RUE DU DOCTEUR DUMOULIN - 95585", "stop_name": "MARCELLIN BERTHELOT - VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.381572147113851, 48.99730173969438]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2bad1f1fc4843c69bf181635a04cce2e2c4b9be5", "fields": {"departement": "95", "stop_lat": 49.002621884294484, "code_postal": "95585", "stop_lon": 2.3809757298407406, "coord": [49.002621884294484, 2.3809757298407406], "stop_id": 4695667, "stop_desc": "RUE ANDRE GRUNIG - 95585", "stop_name": "LES CHARDONNERETTES"}, "geometry": {"type": "Point", "coordinates": [2.3809757298407406, 49.002621884294484]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2490e75d148d1b10db732938d0729a594f29d650", "fields": {"departement": "95", "stop_lat": 48.99857843547482, "code_postal": "95585", "stop_lon": 2.379838739646569, "coord": [48.99857843547482, 2.379838739646569], "stop_id": 4695675, "stop_desc": "1 PLACE DU SOUVENIR FRANCAIS - 95585", "stop_name": "PLACE DU SOUVENIR FRANCAIS."}, "geometry": {"type": "Point", "coordinates": [2.379838739646569, 48.99857843547482]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "08a6687e4252b7fa6a891245d59251291e3f170c", "fields": {"departement": "95", "stop_lat": 48.99689724590376, "code_postal": "95585", "stop_lon": 2.3818585985161946, "coord": [48.99689724590376, 2.3818585985161946], "stop_id": 4695676, "stop_desc": "RUE MARCELLIN BERTHELOT - 95585", "stop_name": "MARCELLIN BERTHELOT - VICTOR HUGO."}, "geometry": {"type": "Point", "coordinates": [2.3818585985161946, 48.99689724590376]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ea26cf0cf081c3845c11a362b2a1ec47ff2bcb60", "fields": {"departement": "75", "stop_lat": 48.87675733170562, "code_postal": "75120", "stop_lon": 2.4083247581817724, "coord": [48.87675733170562, 2.4083247581817724], "stop_id": 4705558, "stop_desc": "3 R CHARLES CROS - 75120", "stop_name": "PORTE DES LILAS-METRO"}, "geometry": {"type": "Point", "coordinates": [2.4083247581817724, 48.87675733170562]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3e5c3890c595e515ca3e7ba7b0a3bc1c5ce6676f", "fields": {"departement": "93", "stop_lat": 48.88870922132644, "code_postal": "93055", "stop_lon": 2.410221885804846, "coord": [48.88870922132644, 2.410221885804846], "stop_id": 4705566, "stop_desc": "51 RUE JULES AUFFRET - 93055", "stop_name": "PAUL BERT - CIMETIERE"}, "geometry": {"type": "Point", "coordinates": [2.410221885804846, 48.88870922132644]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c9bd8aba0ba5e694230b131d02cf90bab3e861b4", "fields": {"departement": "93", "stop_lat": 48.896177954902676, "code_postal": "93055", "stop_lon": 2.409578137581468, "coord": [48.896177954902676, 2.409578137581468], "stop_id": 4705571, "stop_desc": "26 RUE DELIZY - 93055", "stop_name": "LOUIS NADOT"}, "geometry": {"type": "Point", "coordinates": [2.409578137581468, 48.896177954902676]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7b22a1e1b1a887e3a0d46a6ebd61033e12e15462", "fields": {"departement": "93", "stop_lat": 48.896470092374635, "code_postal": "93055", "stop_lon": 2.401645545232717, "coord": [48.896470092374635, 2.401645545232717], "stop_id": 4705576, "stop_desc": "AVENUE DU GENERAL LECLERC - 93055", "stop_name": "PANTIN RER - MAIRIE"}, "geometry": {"type": "Point", "coordinates": [2.401645545232717, 48.896470092374635]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2aeabae330b2ac2f7d8115fcfe795d9ee4614ed3", "fields": {"departement": "93", "stop_lat": 48.89931266233647, "code_postal": "93055", "stop_lon": 2.3965645909629774, "coord": [48.89931266233647, 2.3965645909629774], "stop_id": 4705580, "stop_desc": "31 AVENUE EDOUARD VAILLANT - 93055", "stop_name": "JEAN MOULIN"}, "geometry": {"type": "Point", "coordinates": [2.3965645909629774, 48.89931266233647]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cc9437eb7787c6c8755c917bbd132c1239ddf5d7", "fields": {"departement": "93", "stop_lat": 48.906199916210724, "code_postal": "93001", "stop_lon": 2.389878602085293, "coord": [48.906199916210724, 2.389878602085293], "stop_id": 4705587, "stop_desc": "62 RUE HENRI BARBUSSE - 93001", "stop_name": "HOPITAL LA ROSERAIE"}, "geometry": {"type": "Point", "coordinates": [2.389878602085293, 48.906199916210724]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f7e55769b26ba4fb69641c16ab0b0d712d92081d", "fields": {"departement": "93", "stop_lat": 48.90912030847772, "code_postal": "93001", "stop_lon": 2.3907814065174997, "coord": [48.90912030847772, 2.3907814065174997], "stop_id": 4705589, "stop_desc": "106 RUE HENRI BARBUSSE - 93001", "stop_name": "PAUL BERT"}, "geometry": {"type": "Point", "coordinates": [2.3907814065174997, 48.90912030847772]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8421875d1e2fd429436590d472a5e776a220afff", "fields": {"departement": "93", "stop_lat": 48.91176221328917, "code_postal": "93001", "stop_lon": 2.3914113280393225, "coord": [48.91176221328917, 2.3914113280393225], "stop_id": 4705591, "stop_desc": "132 RUE HENRI BARBUSSE - 93001", "stop_name": "LES ROSES"}, "geometry": {"type": "Point", "coordinates": [2.3914113280393225, 48.91176221328917]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7cf7e33712851ad46c1faabc1005558965112582", "fields": {"departement": "93", "stop_lat": 48.91470992263207, "code_postal": "93001", "stop_lon": 2.391482586590616, "coord": [48.91470992263207, 2.391482586590616], "stop_id": 4705593, "stop_desc": "FACE 6 PL CONSTANTIN COTTIN - 93001", "stop_name": "MAISON DE RETRAITE"}, "geometry": {"type": "Point", "coordinates": [2.391482586590616, 48.91470992263207]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "23b18a000602177315a1c9ad640f9bc8ef13164a", "fields": {"departement": "93", "stop_lat": 48.92471447827034, "code_postal": "93027", "stop_lon": 2.386747032274433, "coord": [48.92471447827034, 2.386747032274433], "stop_id": 4705603, "stop_desc": "5 AVENUE VICTOR HUGO - 93027", "stop_name": "GENERAL SCHRAMM"}, "geometry": {"type": "Point", "coordinates": [2.386747032274433, 48.92471447827034]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "22df5a377cf951043a3c1460e9c8426c3f2af1ac", "fields": {"departement": "93", "stop_lat": 48.92619490057146, "code_postal": "93027", "stop_lon": 2.39227200102727, "coord": [48.92619490057146, 2.39227200102727], "stop_id": 4705605, "stop_desc": "9 RUE JULES FERRY - 93027", "stop_name": "HOTEL DE VILLE - CENTRE ADMINISTRATIF"}, "geometry": {"type": "Point", "coordinates": [2.39227200102727, 48.92619490057146]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9d59debf01e6a00a4e995fa5822fde0abd69945c", "fields": {"departement": "93", "stop_lat": 48.93765601755153, "code_postal": "93027", "stop_lon": 2.4042749913382817, "coord": [48.93765601755153, 2.4042749913382817], "stop_id": 4705612, "stop_desc": "55 BIS AVENUE WALDECK ROCHET - 93027", "stop_name": "CIMETIERE DE LA_COURNEUVE"}, "geometry": {"type": "Point", "coordinates": [2.4042749913382817, 48.93765601755153]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1f37ac62cfeeb8bd5428367708e59d2d4d0f0ea9", "fields": {"departement": "93", "stop_lat": 48.94169653576693, "code_postal": "93027", "stop_lon": 2.4103238449941355, "coord": [48.94169653576693, 2.4103238449941355], "stop_id": 4705613, "stop_desc": "FACE 93 AVENUE WALDECK ROCHET - 93027", "stop_name": "CENTRE DES ESSENCES"}, "geometry": {"type": "Point", "coordinates": [2.4103238449941355, 48.94169653576693]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "54221ce2e9000904b153154354c29e555fe29406", "fields": {"departement": "93", "stop_lat": 48.9517037960367, "code_postal": "93030", "stop_lon": 2.416587439952859, "coord": [48.9517037960367, 2.416587439952859], "stop_id": 4705618, "stop_desc": "AVENUE LOUIS LARIVIERE - 93030", "stop_name": "PLACE DU 16 AOUT 1943"}, "geometry": {"type": "Point", "coordinates": [2.416587439952859, 48.9517037960367]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c58de6bf41d6210deb98de8eb89bab624dc231e2", "fields": {"departement": "93", "stop_lat": 48.95439164186058, "code_postal": "93030", "stop_lon": 2.415349788191931, "coord": [48.95439164186058, 2.415349788191931], "stop_id": 4705630, "stop_desc": "FACE 29 RUE GEORGES GUYNEMER - 93030", "stop_name": "DUGNY - CENTRE VILLE"}, "geometry": {"type": "Point", "coordinates": [2.415349788191931, 48.95439164186058]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0570d2a3f9c94590621e735324eef4dfac83861c", "fields": {"departement": "93", "stop_lat": 48.94181352259452, "code_postal": "93027", "stop_lon": 2.4100648021765165, "coord": [48.94181352259452, 2.4100648021765165], "stop_id": 4705636, "stop_desc": "91 AVENUE WALDECK ROCHET - 93027", "stop_name": "CENTRE DES ESSENCES"}, "geometry": {"type": "Point", "coordinates": [2.4100648021765165, 48.94181352259452]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6791a543365d029a087c202cd1eb6877f13eb3bb", "fields": {"departement": "93", "stop_lat": 48.93765601755153, "code_postal": "93027", "stop_lon": 2.4042749913382817, "coord": [48.93765601755153, 2.4042749913382817], "stop_id": 4705637, "stop_desc": "55 BIS AVENUE WALDECK ROCHET - 93027", "stop_name": "CIMETIERE DE LA_COURNEUVE"}, "geometry": {"type": "Point", "coordinates": [2.4042749913382817, 48.93765601755153]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a65c07d67fc2aaa0cdeb657eb38f0319bc98f04c", "fields": {"departement": "93", "stop_lat": 48.93338029847543, "code_postal": "93027", "stop_lon": 2.4005729364800854, "coord": [48.93338029847543, 2.4005729364800854], "stop_id": 4705638, "stop_desc": "15-33 AVENUE WALDECK ROCHET - 93027", "stop_name": "CITE WALDECK-ROCHET"}, "geometry": {"type": "Point", "coordinates": [2.4005729364800854, 48.93338029847543]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7e08334cdad7e0490e0b42b003ce834e36f6f12c", "fields": {"departement": "93", "stop_lat": 48.931754764816354, "code_postal": "93027", "stop_lon": 2.3984840487352446, "coord": [48.931754764816354, 2.3984840487352446], "stop_id": 4705639, "stop_desc": "59 RUE EDGAR QUINET - 93027", "stop_name": "JEAN MERMOZ - HENRI BARBUSSE"}, "geometry": {"type": "Point", "coordinates": [2.3984840487352446, 48.931754764816354]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ffa2e12efb9440e7111729fc35081a4304f987a2", "fields": {"departement": "93", "stop_lat": 48.92471447827034, "code_postal": "93027", "stop_lon": 2.386747032274433, "coord": [48.92471447827034, 2.386747032274433], "stop_id": 4705643, "stop_desc": "5 AVENUE VICTOR HUGO - 93027", "stop_name": "GENERAL SCHRAMM"}, "geometry": {"type": "Point", "coordinates": [2.386747032274433, 48.92471447827034]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "33d89452ea0ad1c07c99bbfb004edd7ccf1451b9", "fields": {"departement": "93", "stop_lat": 48.90288244987511, "code_postal": "93055", "stop_lon": 2.392601686654297, "coord": [48.90288244987511, 2.392601686654297], "stop_id": 4705653, "stop_desc": "91 AVENUE EDOUARD VAILLANT - 93055", "stop_name": "QUATRE CHEMINS - EDOUARD VAILLANT"}, "geometry": {"type": "Point", "coordinates": [2.392601686654297, 48.90288244987511]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3465bd11c2f5b9860b34599200d66a9c46544b3b", "fields": {"departement": "93", "stop_lat": 48.885158838792506, "code_postal": "93055", "stop_lon": 2.410925523608771, "coord": [48.885158838792506, 2.410925523608771], "stop_id": 4705664, "stop_desc": "74 RUE JULES AUFFRET - 93055", "stop_name": "LES POMMIERS"}, "geometry": {"type": "Point", "coordinates": [2.410925523608771, 48.885158838792506]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "90a41e203adf3307b59bd7dbbee2062f2f0cd676", "fields": {"departement": "75", "stop_lat": 48.82755015444301, "code_postal": "75112", "stop_lon": 2.3929160999411563, "coord": [48.82755015444301, 2.3929160999411563], "stop_id": 4723803, "stop_desc": "RUE DU GENERAL DE LANGLE DE CARY - 75112", "stop_name": "BERCY"}, "geometry": {"type": "Point", "coordinates": [2.3929160999411563, 48.82755015444301]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cb81f594c786c01da74ae55e104e2a7ddb04a432", "fields": {"departement": "94", "stop_lat": 48.82002741880614, "code_postal": "94069", "stop_lon": 2.4232186351513785, "coord": [48.82002741880614, 2.4232186351513785], "stop_id": 4723817, "stop_desc": "23 BIS RUE DU VAL D'OSNE - 94069", "stop_name": "EPINETTES"}, "geometry": {"type": "Point", "coordinates": [2.4232186351513785, 48.82002741880614]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "79d1dc5f853a928ea42c5358e08ae039838e9726", "fields": {"departement": "94", "stop_lat": 48.818334222865474, "code_postal": "94069", "stop_lon": 2.4390579510666335, "coord": [48.818334222865474, 2.4390579510666335], "stop_id": 4723826, "stop_desc": "FACE 94 RUE DE MARECHAL LECLERC - 94069", "stop_name": "MARECHAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.4390579510666335, 48.818334222865474]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "136ac556d7b27c8bb6ecab8263205fcac39862d4", "fields": {"departement": "94", "stop_lat": 48.81601428243233, "code_postal": "94069", "stop_lon": 2.4593451129262274, "coord": [48.81601428243233, 2.4593451129262274], "stop_id": 4723836, "stop_desc": "129 RUE DU MARECHAL LECLERC - 94069", "stop_name": "ECOLES DE GRAVELLE"}, "geometry": {"type": "Point", "coordinates": [2.4593451129262274, 48.81601428243233]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6395e03a0fedccd744a874d6495e104e75e460a6", "fields": {"departement": "94", "stop_lat": 48.809162214755624, "code_postal": "94068", "stop_lon": 2.470868304362221, "coord": [48.809162214755624, 2.470868304362221], "stop_id": 4723843, "stop_desc": "7 RUE DU PONT DE CRETEIL - 94068", "stop_name": "CROIX SOURIS"}, "geometry": {"type": "Point", "coordinates": [2.470868304362221, 48.809162214755624]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ec6ca0fe345079a45ee19bbc5500f9a2f6ed6175", "fields": {"departement": "94", "stop_lat": 48.809404486548786, "code_postal": "94068", "stop_lon": 2.471222729111198, "coord": [48.809404486548786, 2.471222729111198], "stop_id": 4723844, "stop_desc": "3 RUE DU PONT DE CRETEIL - 94068", "stop_name": "CROIX SOURIS"}, "geometry": {"type": "Point", "coordinates": [2.471222729111198, 48.809404486548786]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "603424a04309b4d44737414160b1c239e1583b29", "fields": {"departement": "94", "stop_lat": 48.80053272098549, "code_postal": "94068", "stop_lon": 2.47192092508883, "coord": [48.80053272098549, 2.47192092508883], "stop_id": 4723851, "stop_desc": "RUE DU PONT DE CRETEIL - 94068", "stop_name": "PONT DE CRETEIL"}, "geometry": {"type": "Point", "coordinates": [2.47192092508883, 48.80053272098549]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3e4da4ebe56d31ff1a4ace4625269d81becaadb3", "fields": {"departement": "94", "stop_lat": 48.796663625497644, "code_postal": "94068", "stop_lon": 2.475679309587896, "coord": [48.796663625497644, 2.475679309587896], "stop_id": 4723852, "stop_desc": "32-34 BOULEVARD DU GENERAL GIRAUD - 94068", "stop_name": "BEAUJEU"}, "geometry": {"type": "Point", "coordinates": [2.475679309587896, 48.796663625497644]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "37384ac9c82b2b49c8d547b9d9947365e5b00009", "fields": {"departement": "94", "stop_lat": 48.78601564796178, "code_postal": "94068", "stop_lon": 2.4882324222937453, "coord": [48.78601564796178, 2.4882324222937453], "stop_id": 4723859, "stop_desc": "50 AVENUE RASPAIL - 94068", "stop_name": "DOCTEUR ROUX - CHAMBRE DES METIERS"}, "geometry": {"type": "Point", "coordinates": [2.4882324222937453, 48.78601564796178]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "11849d9a5e6074cd1fa0674667a1eafab748f176", "fields": {"departement": "94", "stop_lat": 48.78705761422884, "code_postal": "94068", "stop_lon": 2.50224539865963, "coord": [48.78705761422884, 2.50224539865963], "stop_id": 4723867, "stop_desc": "FACE 46 RUE CHEVALIER - 94068", "stop_name": "FALONNIERES"}, "geometry": {"type": "Point", "coordinates": [2.50224539865963, 48.78705761422884]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cd613b85664a3f926936da266f09e55d91aba09a", "fields": {"departement": "94", "stop_lat": 48.790672572619854, "code_postal": "94068", "stop_lon": 2.507344346011358, "coord": [48.790672572619854, 2.507344346011358], "stop_id": 4723873, "stop_desc": "FACE 66 BOULEVARD DE LA MARNE - 94068", "stop_name": "VOLTAIRE"}, "geometry": {"type": "Point", "coordinates": [2.507344346011358, 48.790672572619854]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b77c4396fa32dba2ab05a06a9da65e6d929a4a71", "fields": {"departement": "94", "stop_lat": 48.80351871089344, "code_postal": "94068", "stop_lon": 2.517876818160826, "coord": [48.80351871089344, 2.517876818160826], "stop_id": 4723882, "stop_desc": "39 AVENUE RAYMOND POINCARE - 94068", "stop_name": "THIERS"}, "geometry": {"type": "Point", "coordinates": [2.517876818160826, 48.80351871089344]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b80b857d93cf8393fbc031654aac7b5a565b105b", "fields": {"departement": "94", "stop_lat": 48.805676851249785, "code_postal": "94068", "stop_lon": 2.5171767740947644, "coord": [48.805676851249785, 2.5171767740947644], "stop_id": 4723883, "stop_desc": "49 AVENUE DU 11 NOVEMBRE - 94068", "stop_name": "GUSTAVE GOUBLIER"}, "geometry": {"type": "Point", "coordinates": [2.5171767740947644, 48.805676851249785]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4413a0da6c5cd9931da06b44410ca3cd59f4bb63", "fields": {"departement": "94", "stop_lat": 48.79292439136609, "code_postal": "94068", "stop_lon": 2.5102220457518296, "coord": [48.79292439136609, 2.5102220457518296], "stop_id": 4723888, "stop_desc": "FACE 23 AVENUE MICHELET - 94068", "stop_name": "AVENUE DES PILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.5102220457518296, 48.79292439136609]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "60ec9f1d79bfdc03a10a7f85bf7e27e86db12b2c", "fields": {"departement": "94", "stop_lat": 48.81838475693689, "code_postal": "94069", "stop_lon": 2.4202761371458252, "coord": [48.81838475693689, 2.4202761371458252], "stop_id": 4723892, "stop_desc": "5 RUE DU MARECHAL LECLERC - 94069", "stop_name": "PONT DE CHARENTON"}, "geometry": {"type": "Point", "coordinates": [2.4202761371458252, 48.81838475693689]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ec9d3ee632ca6be65cf3eb4bfcf2973b3d8595f0", "fields": {"departement": "75", "stop_lat": 48.84487942666907, "code_postal": "75115", "stop_lon": 2.311382336330597, "coord": [48.84487942666907, 2.311382336330597], "stop_id": 4726703, "stop_desc": "1 PLACE HENRI QUEUILLE - 75115", "stop_name": "SEVRES - LECOURBE"}, "geometry": {"type": "Point", "coordinates": [2.311382336330597, 48.84487942666907]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fbcc0e0153d1f9f4f69a6040d36ed5a52d022663", "fields": {"departement": "75", "stop_lat": 48.8464261185428, "code_postal": "75115", "stop_lon": 2.315589350810912, "coord": [48.8464261185428, 2.315589350810912], "stop_id": 4726704, "stop_desc": "147 BIS RUE DE SEVRES - 75115", "stop_name": "HOPITAL DES ENFANTS MALADES"}, "geometry": {"type": "Point", "coordinates": [2.315589350810912, 48.8464261185428]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "602de0a8e21ee7d08ac082c733e142e8c42e089d", "fields": {"departement": "75", "stop_lat": 48.852658546616404, "code_postal": "75116", "stop_lon": 2.275819070570975, "coord": [48.852658546616404, 2.275819070570975], "stop_id": 4726716, "stop_desc": "11-13 RUE DE BOULAINVILLIERS - 75116", "stop_name": "PLACE DU DOCTEUR HAYEM - RADIO FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.275819070570975, 48.852658546616404]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2fa1e8f8fc69aa07fdec801d61c97d9091ad8569", "fields": {"departement": "75", "stop_lat": 48.84430711895828, "code_postal": "75115", "stop_lon": 2.291202413759144, "coord": [48.84430711895828, 2.291202413759144], "stop_id": 4726720, "stop_desc": "FACE 69 RUE DES ENTREPRENEURS - 75115", "stop_name": "VIOLET"}, "geometry": {"type": "Point", "coordinates": [2.291202413759144, 48.84430711895828]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0a22f06cf2a75fd9614dab4c65eb927b23ba48c6", "fields": {"departement": "75", "stop_lat": 48.84288963972782, "code_postal": "75115", "stop_lon": 2.298352336044908, "coord": [48.84288963972782, 2.298352336044908], "stop_id": 4726722, "stop_desc": "9 RUE LEON LHERMITTE - 75115", "stop_name": "PECLET"}, "geometry": {"type": "Point", "coordinates": [2.298352336044908, 48.84288963972782]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5f7ae5a8e24b97a8ee5fb374ef84727cf8498951", "fields": {"departement": "75", "stop_lat": 48.841892200000075, "code_postal": "75115", "stop_lon": 2.2988977335817613, "coord": [48.841892200000075, 2.2988977335817613], "stop_id": 4726723, "stop_desc": "2 BIS RUE PETEL - 75115", "stop_name": "MAIRIE DU 15E"}, "geometry": {"type": "Point", "coordinates": [2.2988977335817613, 48.841892200000075]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1c5e84f2260450ab2ba4f98c73a4a3ee86f2f319", "fields": {"departement": "75", "stop_lat": 48.844960299515556, "code_postal": "75115", "stop_lon": 2.3113142107734683, "coord": [48.844960299515556, 2.3113142107734683], "stop_id": 4726728, "stop_desc": "FACE 4 BOULEVARD PASTEUR - 75115", "stop_name": "SEVRES - LECOURBE"}, "geometry": {"type": "Point", "coordinates": [2.3113142107734683, 48.844960299515556]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e2396a78a06dbc550d8fefe78ba71039d0e46b04", "fields": {"departement": "75", "stop_lat": 48.85223383948741, "code_postal": "75106", "stop_lon": 2.330976343440543, "coord": [48.85223383948741, 2.330976343440543], "stop_id": 4726733, "stop_desc": "49-51 RUE DU FOUR - 75106", "stop_name": "MICHEL DEBRE"}, "geometry": {"type": "Point", "coordinates": [2.330976343440543, 48.85223383948741]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "98634a2cc76e8735e7b2d0f47da57f7a056fff04", "fields": {"departement": "75", "stop_lat": 48.85702356778014, "code_postal": "75104", "stop_lon": 2.3505888687775256, "coord": [48.85702356778014, 2.3505888687775256], "stop_id": 4726740, "stop_desc": "2-4 AVENUE VICTORIA - 75104", "stop_name": "HOTEL DE VILLE"}, "geometry": {"type": "Point", "coordinates": [2.3505888687775256, 48.85702356778014]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "12605420414d30195761902af850fcded179a8be", "fields": {"departement": "75", "stop_lat": 48.87260124918962, "code_postal": "75116", "stop_lon": 2.295918541882177, "coord": [48.87260124918962, 2.295918541882177], "stop_id": 4726748, "stop_desc": "87 AVENUE MARCEAU - 75116", "stop_name": "CHARLES DE GAULLE - ETOILE - MARCEAU"}, "geometry": {"type": "Point", "coordinates": [2.295918541882177, 48.87260124918962]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "af9fd4edd249919e700582e32b1a0230b3e14f95", "fields": {"departement": "75", "stop_lat": 48.86926772294137, "code_postal": "75116", "stop_lon": 2.2982099355081997, "coord": [48.86926772294137, 2.2982099355081997], "stop_id": 4726749, "stop_desc": "59 AVENUE MARCEAU - 75116", "stop_name": "BASSANO"}, "geometry": {"type": "Point", "coordinates": [2.2982099355081997, 48.86926772294137]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "49f6a1ff97afea56a2582ea391864926f58857f5", "fields": {"departement": "75", "stop_lat": 48.86705711802949, "code_postal": "75116", "stop_lon": 2.299083462320914, "coord": [48.86705711802949, 2.299083462320914], "stop_id": 4726750, "stop_desc": "27 AVENUE MARCEAU - 75116", "stop_name": "MARCEAU - PIERRE 1ER DE SERBIE - PLACE DE BEYROUTH"}, "geometry": {"type": "Point", "coordinates": [2.299083462320914, 48.86705711802949]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "878052bc00ce79a648eab6b04651f6bdd28cf72d", "fields": {"departement": "75", "stop_lat": 48.86158471268089, "code_postal": "75107", "stop_lon": 2.3020297149717073, "coord": [48.86158471268089, 2.3020297149717073], "stop_id": 4726752, "stop_desc": "2 AVENUE BOSQUET - 75107", "stop_name": "BOSQUET - RAPP"}, "geometry": {"type": "Point", "coordinates": [2.3020297149717073, 48.86158471268089]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "da36ff9cf17f878b7595d99037b4c0b49aba9bc2", "fields": {"departement": "75", "stop_lat": 48.844243191296684, "code_postal": "75115", "stop_lon": 2.3223578401351035, "coord": [48.844243191296684, 2.3223578401351035], "stop_id": 4726761, "stop_desc": "62 BOULEVARD DU MONTPARNASSE - 75115", "stop_name": "PLACE DU 18 JUIN 1940"}, "geometry": {"type": "Point", "coordinates": [2.3223578401351035, 48.844243191296684]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f3adc0c85bf434baa05afd41372a992ed6e5ad4d", "fields": {"departement": "75", "stop_lat": 48.87123321218385, "code_postal": "75109", "stop_lon": 2.3313418899103016, "coord": [48.87123321218385, 2.3313418899103016], "stop_id": 4726920, "stop_desc": "3 R AUBER - 75109", "stop_name": "OPERA"}, "geometry": {"type": "Point", "coordinates": [2.3313418899103016, 48.87123321218385]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b669b27f2b39b3a503cc599dbba7d7acbd7d0b91", "fields": {"departement": "75", "stop_lat": 48.870073925958685, "code_postal": "75102", "stop_lon": 2.333249331660691, "coord": [48.870073925958685, 2.333249331660691], "stop_id": 4726922, "stop_desc": "35 RUE DU 4 SEPTEMBRE - 75102", "stop_name": "OPERA - 4 SEPTEMBRE"}, "geometry": {"type": "Point", "coordinates": [2.333249331660691, 48.870073925958685]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9a9c4cddd441ae484d9706b0b7604f4951357c67", "fields": {"departement": "75", "stop_lat": 48.8686000083944, "code_postal": "75102", "stop_lon": 2.341069192464145, "coord": [48.8686000083944, 2.341069192464145], "stop_id": 4726924, "stop_desc": "11 PLACE DE LA BOURSE - 75102", "stop_name": "BOURSE"}, "geometry": {"type": "Point", "coordinates": [2.341069192464145, 48.8686000083944]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9b392760d6059306bac10d8b1caf42942b46711c", "fields": {"departement": "75", "stop_lat": 48.86519223447785, "code_postal": "75103", "stop_lon": 2.356938988179183, "coord": [48.86519223447785, 2.356938988179183], "stop_id": 4726929, "stop_desc": "23-25 RUE REAUMUR - 75103", "stop_name": "ARTS ET METIERS"}, "geometry": {"type": "Point", "coordinates": [2.356938988179183, 48.86519223447785]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8f9f6dbe9aad2fe5f9f7d9ce73a1c05534f9b9f8", "fields": {"departement": "75", "stop_lat": 48.84598203749001, "code_postal": "75112", "stop_lon": 2.3739805748450498, "coord": [48.84598203749001, 2.3739805748450498], "stop_id": 4726943, "stop_desc": "FACE 23BIS BOULEVARD DIDEROT - 75112", "stop_name": "GARE DE LYON - DIDEROT"}, "geometry": {"type": "Point", "coordinates": [2.3739805748450498, 48.84598203749001]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fe35cf05f2580e9e4caf4e9286c0a96b454d9ba3", "fields": {"departement": "75", "stop_lat": 48.84489527909312, "code_postal": "75112", "stop_lon": 2.3715287402401484, "coord": [48.84489527909312, 2.3715287402401484], "stop_id": 4726944, "stop_desc": "205-207 RUE DE BERCY - 75112", "stop_name": "GARE DE LYON - VAN GOGH"}, "geometry": {"type": "Point", "coordinates": [2.3715287402401484, 48.84489527909312]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cdb65ead272433e73d982786e6df3255e42bef71", "fields": {"departement": "75", "stop_lat": 48.87153877146487, "code_postal": "75109", "stop_lon": 2.3433582449134955, "coord": [48.87153877146487, 2.3433582449134955], "stop_id": 4726960, "stop_desc": "32 BOULEVARD POISSONNIERE - 75109", "stop_name": "GRANDS BOULEVARDS"}, "geometry": {"type": "Point", "coordinates": [2.3433582449134955, 48.87153877146487]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1b36fd20d17e6063dc49318ad3b739d286cbda43", "fields": {"departement": "94", "stop_lat": 48.81815136070248, "code_postal": "94069", "stop_lon": 2.4198674632527934, "coord": [48.81815136070248, 2.4198674632527934], "stop_id": 4739151, "stop_desc": "2 RUE DU PONT - 94069", "stop_name": "PONT DE CHARENTON"}, "geometry": {"type": "Point", "coordinates": [2.4198674632527934, 48.81815136070248]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1ae5f97a606b22d870f4218342166e506624762b", "fields": {"departement": "94", "stop_lat": 48.821606439542855, "code_postal": "94018", "stop_lon": 2.4141972075539684, "coord": [48.821606439542855, 2.4141972075539684], "stop_id": 4739153, "stop_desc": "RUE DE LA REPUBLIQUE - 94018", "stop_name": "CHARENTON-ECOLES"}, "geometry": {"type": "Point", "coordinates": [2.4141972075539684, 48.821606439542855]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f17f1a0f435cdd790af5626fb782a7312a2e3661", "fields": {"departement": "94", "stop_lat": 48.81899305429177, "code_postal": "94018", "stop_lon": 2.4109813171069656, "coord": [48.81899305429177, 2.4109813171069656], "stop_id": 4739154, "stop_desc": "7 RUE VICTOR HUGO - 94018", "stop_name": "VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.4109813171069656, 48.81899305429177]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4ce0e5bdad33db96dabf4e436008fc263789fb27", "fields": {"departement": "94", "stop_lat": 48.81940876414627, "code_postal": "94018", "stop_lon": 2.4072118416045463, "coord": [48.81940876414627, 2.4072118416045463], "stop_id": 4739155, "stop_desc": "52 QUAI DES CARRIERES - 94018", "stop_name": "LES BERGES DE CHARENTON"}, "geometry": {"type": "Point", "coordinates": [2.4072118416045463, 48.81940876414627]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "280448f6df468760b1a7ea27dea963163cf9f7e1", "fields": {"departement": "94", "stop_lat": 48.82224470146372, "code_postal": "94018", "stop_lon": 2.3984773449336694, "coord": [48.82224470146372, 2.3984773449336694], "stop_id": 4739157, "stop_desc": "7 QUAI DE BERCY - 94018", "stop_name": "PORT AUX LIONS"}, "geometry": {"type": "Point", "coordinates": [2.3984773449336694, 48.82224470146372]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d591f5c206cbc73ed1df816126c8e0177d9a717b", "fields": {"departement": "75", "stop_lat": 48.84539937588007, "code_postal": "75112", "stop_lon": 2.3686422351772856, "coord": [48.84539937588007, 2.3686422351772856], "stop_id": 4739167, "stop_desc": "1 BOULEVARD DIDEROT - 75112", "stop_name": "PONT D'AUSTERLITZ - QUAI DE LA RAPEE"}, "geometry": {"type": "Point", "coordinates": [2.3686422351772856, 48.84539937588007]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cf3f83e6fd2d9f07ef105f491f867840910ab0f1", "fields": {"departement": "75", "stop_lat": 48.87543870387126, "code_postal": "75108", "stop_lon": 2.324188259311247, "coord": [48.87543870387126, 2.324188259311247], "stop_id": 4739210, "stop_desc": "FACE 11 RUE DE ROME - 75108", "stop_name": "GARE SAINT-LAZARE"}, "geometry": {"type": "Point", "coordinates": [2.324188259311247, 48.87543870387126]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "39194c71def94b6de8da008c695550b95d902b75", "fields": {"departement": "93", "stop_lat": 48.84248240328661, "code_postal": "93051", "stop_lon": 2.5777341956106965, "coord": [48.84248240328661, 2.5777341956106965], "stop_id": 4745079, "stop_desc": "ALLEE JEAN RENOIR - 93051", "stop_name": "NOISY - CHAMPS RER"}, "geometry": {"type": "Point", "coordinates": [2.5777341956106965, 48.84248240328661]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "49a68a92679f9fa83d5943cf0255c319691afa1f", "fields": {"departement": "75", "stop_lat": 48.89491230018949, "code_postal": "75117", "stop_lon": 2.3131701728580083, "coord": [48.89491230018949, 2.3131701728580083], "stop_id": 4758933, "stop_desc": "AVENUE DE LA PORTE DE CLICHY - 75117", "stop_name": "PORTE DE CLICHY - METRO"}, "geometry": {"type": "Point", "coordinates": [2.3131701728580083, 48.89491230018949]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e061d588bc0dda4fa5162d01baaecd90066d32e5", "fields": {"departement": "93", "stop_lat": 48.90764902827149, "code_postal": "93070", "stop_lon": 2.3271113437454045, "coord": [48.90764902827149, 2.3271113437454045], "stop_id": 4758942, "stop_desc": "91 BOULEVARD VICTOR HUGO - 93070", "stop_name": "CAPITAINE GLARNER"}, "geometry": {"type": "Point", "coordinates": [2.3271113437454045, 48.90764902827149]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f80482a0df58dfb632b96d8778b5710b17ade735", "fields": {"departement": "93", "stop_lat": 48.90790964239018, "code_postal": "93070", "stop_lon": 2.326988590430061, "coord": [48.90790964239018, 2.326988590430061], "stop_id": 4758943, "stop_desc": "88 BOULEVARD VICTOR HUGO - 93070", "stop_name": "CAPITAINE GLARNER"}, "geometry": {"type": "Point", "coordinates": [2.326988590430061, 48.90790964239018]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6d9ae7569fbc3969d5f14cf95bf7c5e4442338c4", "fields": {"departement": "93", "stop_lat": 48.909545488841566, "code_postal": "93070", "stop_lon": 2.3297150701416416, "coord": [48.909545488841566, 2.3297150701416416], "stop_id": 4758945, "stop_desc": "60 BOULEVARD VICTOR HUGO - 93070", "stop_name": "LES BATELIERS"}, "geometry": {"type": "Point", "coordinates": [2.3297150701416416, 48.909545488841566]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4ff3d2d3125fe1d421e70d7c0e71a9e6e2dca614", "fields": {"departement": "93", "stop_lat": 48.914964898762996, "code_postal": "93070", "stop_lon": 2.3381000804017873, "coord": [48.914964898762996, 2.3381000804017873], "stop_id": 4758949, "stop_desc": "76 RUE DU LANDY - 93070", "stop_name": "LANDY - JAURES"}, "geometry": {"type": "Point", "coordinates": [2.3381000804017873, 48.914964898762996]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a04f52aeaf4b4292fb497f47cbc74929c7efd484", "fields": {"departement": "93", "stop_lat": 48.914191832859345, "code_postal": "93066", "stop_lon": 2.3439223160733174, "coord": [48.914191832859345, 2.3439223160733174], "stop_id": 4758952, "stop_desc": "194 BIS RUE DU LANDY - 93066", "stop_name": "LANDY - ORNANO"}, "geometry": {"type": "Point", "coordinates": [2.3439223160733174, 48.914191832859345]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "073ed3c1979acbcc1e9dc4cb59bfea8128255cbb", "fields": {"departement": "93", "stop_lat": 48.91823497894036, "code_postal": "93066", "stop_lon": 2.354081884797133, "coord": [48.91823497894036, 2.354081884797133], "stop_id": 4758960, "stop_desc": "10 AVENUE FRANCOIS MITTERRAND - 93066", "stop_name": "AVENUE DES FRUITIERS"}, "geometry": {"type": "Point", "coordinates": [2.354081884797133, 48.91823497894036]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2e8e1d9df5539c1997e01f57de8b02b0751b2adb", "fields": {"departement": "93", "stop_lat": 48.918234263953785, "code_postal": "93066", "stop_lon": 2.358554593066675, "coord": [48.918234263953785, 2.358554593066675], "stop_id": 4758961, "stop_desc": "6 RUE FRANCIS DE PRESSENSE - 93066", "stop_name": "WILSON - DE PRESSENSE"}, "geometry": {"type": "Point", "coordinates": [2.358554593066675, 48.918234263953785]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8f4ddb1cd869b4d9a9bee18be1086ac5e4524812", "fields": {"departement": "93", "stop_lat": 48.91837810158188, "code_postal": "93066", "stop_lon": 2.358295561671536, "coord": [48.91837810158188, 2.358295561671536], "stop_id": 4758962, "stop_desc": "3 RUE FRANCIS DE PRESSENSE - 93066", "stop_name": "WILSON - DE PRESSENSE"}, "geometry": {"type": "Point", "coordinates": [2.358295561671536, 48.91837810158188]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8ccad3439bcfc86d8f90490b7faa3082a4c3c936", "fields": {"departement": "93", "stop_lat": 48.91393824322177, "code_postal": "93001", "stop_lon": 2.388768378315134, "coord": [48.91393824322177, 2.388768378315134], "stop_id": 4758973, "stop_desc": "FACE 167 RUE DES CITES - 93001", "stop_name": "RUE DES CITES"}, "geometry": {"type": "Point", "coordinates": [2.388768378315134, 48.91393824322177]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e094857973d55183e65a48852a9092b6ac5cea55", "fields": {"departement": "93", "stop_lat": 48.918720103113905, "code_postal": "93001", "stop_lon": 2.386932214896267, "coord": [48.918720103113905, 2.386932214896267], "stop_id": 4758977, "stop_desc": "27 RUE DU COMMANDANT L'HERMINIER - 93001", "stop_name": "HEMET"}, "geometry": {"type": "Point", "coordinates": [2.386932214896267, 48.918720103113905]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d1d207478fc11b661a49155e4517ad2baaf03dc0", "fields": {"departement": "93", "stop_lat": 48.91801600642956, "code_postal": "93001", "stop_lon": 2.39391330052154, "coord": [48.91801600642956, 2.39391330052154], "stop_id": 4758978, "stop_desc": "70-72 RUE DANIELLE CASANOVA - 93001", "stop_name": "DANIELLE CASANOVA - PONT BLANC"}, "geometry": {"type": "Point", "coordinates": [2.39391330052154, 48.91801600642956]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5e17826300b1439e84023592337e943cede9efc6", "fields": {"departement": "93", "stop_lat": 48.91564949215748, "code_postal": "93001", "stop_lon": 2.399787668480733, "coord": [48.91564949215748, 2.399787668480733], "stop_id": 4758981, "stop_desc": "161 RUE DANIELLE CASANOVA - 93001", "stop_name": "BALZAC"}, "geometry": {"type": "Point", "coordinates": [2.399787668480733, 48.91564949215748]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0cef39d7d4de2359eac8307c412e13a7265eacf2", "fields": {"departement": "93", "stop_lat": 48.92010113161029, "code_postal": "93027", "stop_lon": 2.410184286356649, "coord": [48.92010113161029, 2.410184286356649], "stop_id": 4758986, "stop_desc": "0 AVENUE PAUL VAILLANT COUTURIER - 93027", "stop_name": "LA COURNEUVE-8 MAI 1945"}, "geometry": {"type": "Point", "coordinates": [2.410184286356649, 48.92010113161029]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0844cbbb36b131532cd27587b7fc53bfbf21ee74", "fields": {"departement": "93", "stop_lat": 48.91778431436412, "code_postal": "93001", "stop_lon": 2.407140153386434, "coord": [48.91778431436412, 2.407140153386434], "stop_id": 4758989, "stop_desc": "263 AVENUE JEAN JAURES - 93001", "stop_name": "EDOUARD VAILLANT - JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.407140153386434, 48.91778431436412]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7a0cfa54311a5aac9752ab780edca8041534cdec", "fields": {"departement": "93", "stop_lat": 48.91666473955509, "code_postal": "93001", "stop_lon": 2.380085024364659, "coord": [48.91666473955509, 2.380085024364659], "stop_id": 4758991, "stop_desc": "20 AVENUE DU PRESIDENT ROOSEVELT - 93001", "stop_name": "SCHAEFFER"}, "geometry": {"type": "Point", "coordinates": [2.380085024364659, 48.91666473955509]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "83a89907b1d217af9b9088cadcf44731680c407d", "fields": {"departement": "92", "stop_lat": 48.8987676280021, "code_postal": "92024", "stop_lon": 2.312418665985478, "coord": [48.8987676280021, 2.312418665985478], "stop_id": 4758994, "stop_desc": "53 BOULEVARD VICTOR HUGO - 92024", "stop_name": "CURTON"}, "geometry": {"type": "Point", "coordinates": [2.312418665985478, 48.8987676280021]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e3360b7568e7b563ad04d617c564a427b650be75", "fields": {"departement": "92", "stop_lat": 48.897724754228356, "code_postal": "92024", "stop_lon": 2.3107153020541866, "coord": [48.897724754228356, 2.3107153020541866], "stop_id": 4758995, "stop_desc": "31 BOULEVARD VICTOR HUGO - 92024", "stop_name": "VICTOR HUGO - JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.3107153020541866, 48.897724754228356]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "003f6f4d075d0c0a7a6296cb980ce9532f1e4b83", "fields": {"departement": "75", "stop_lat": 48.8947234218669, "code_postal": "75117", "stop_lon": 2.3124478642572925, "coord": [48.8947234218669, 2.3124478642572925], "stop_id": 4766827, "stop_desc": "1 AVENUE DE LA PORTE DE CLICHY - 75117", "stop_name": "PORTE DE CLICHY"}, "geometry": {"type": "Point", "coordinates": [2.3124478642572925, 48.8947234218669]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c2b59606e5b3587dbec2a1b52f638790ab08ecc4", "fields": {"departement": "75", "stop_lat": 48.81940931886217, "code_postal": "75113", "stop_lon": 2.3592353811253997, "coord": [48.81940931886217, 2.3592353811253997], "stop_id": 4767053, "stop_desc": "190 AVENUE D'ITALIE - 75113", "stop_name": "PORTE D'ITALIE"}, "geometry": {"type": "Point", "coordinates": [2.3592353811253997, 48.81940931886217]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "18cf8ff56b63b779a9dbb600af2c9a94d7861b39", "fields": {"departement": "75", "stop_lat": 48.818519431681594, "code_postal": "75113", "stop_lon": 2.359793018671695, "coord": [48.818519431681594, 2.359793018671695], "stop_id": 4767056, "stop_desc": "AVENUE DE LA PORTE D'ITALIE - 75113", "stop_name": "PORTE D'ITALIE - HELENE BOUCHER"}, "geometry": {"type": "Point", "coordinates": [2.359793018671695, 48.818519431681594]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "72d55718accbaab174674d831c9b5445bf8df8fc", "fields": {"departement": "94", "stop_lat": 48.810501863902964, "code_postal": "94043", "stop_lon": 2.362320626590704, "coord": [48.810501863902964, 2.362320626590704], "stop_id": 4767062, "stop_desc": "75 AVENUE DE FONTAINEBLEAU - 94043", "stop_name": "LE KREMLIN-BICETRE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.362320626590704, 48.810501863902964]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8650a01546deb8a2dd98815f98135aff3ea80d14", "fields": {"departement": "94", "stop_lat": 48.80503701410409, "code_postal": "94076", "stop_lon": 2.363597005894514, "coord": [48.80503701410409, 2.363597005894514], "stop_id": 4767063, "stop_desc": "FACE 41 AVENUE DE PARIS - 94076", "stop_name": "DAUPHIN - ANATOLE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.363597005894514, 48.80503701410409]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1136517b7f13e7afb343ff93468311f8709ef9b2", "fields": {"departement": "91", "stop_lat": 48.71895664834559, "code_postal": "91027", "stop_lon": 2.4097663530436666, "coord": [48.71895664834559, 2.4097663530436666], "stop_id": 4378203, "stop_desc": "15-17 R D'ABLON - 91027", "stop_name": "CARON"}, "geometry": {"type": "Point", "coordinates": [2.4097663530436666, 48.71895664834559]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "19016d2491f2a92a335b4f4687a31b7ae4b43d13", "fields": {"departement": "91", "stop_lat": 48.71953907577744, "code_postal": "91027", "stop_lon": 2.412687770258118, "coord": [48.71953907577744, 2.412687770258118], "stop_id": 4378204, "stop_desc": "45-47 R MAURICE GUNSBOURG - 91027", "stop_name": "GUNSBOURG"}, "geometry": {"type": "Point", "coordinates": [2.412687770258118, 48.71953907577744]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fc36a8931e98f4253227fa3910f3c12b23f5f52d", "fields": {"departement": "92", "stop_lat": 48.77033474019488, "code_postal": "92002", "stop_lon": 2.311460248843124, "coord": [48.77033474019488, 2.311460248843124], "stop_id": 4378266, "stop_desc": "69 AVENUE RAYMOND ARON - 92002", "stop_name": "LA FONTAINE"}, "geometry": {"type": "Point", "coordinates": [2.311460248843124, 48.77033474019488]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "94da41f5c84bcf4f182b4bff38d8eb7c52b0f672", "fields": {"departement": "92", "stop_lat": 48.768177510907535, "code_postal": "92002", "stop_lon": 2.311026218250398, "coord": [48.768177510907535, 2.311026218250398], "stop_id": 4378269, "stop_desc": "FACE 49 AVENUE RAYMOND ARON - 92002", "stop_name": "NORMANDIE"}, "geometry": {"type": "Point", "coordinates": [2.311026218250398, 48.768177510907535]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "521c5f46277d289d7cc0f26be87458defd910e09", "fields": {"departement": "94", "stop_lat": 48.76078187321723, "code_postal": "94034", "stop_lon": 2.319472436806623, "coord": [48.76078187321723, 2.319472436806623], "stop_id": 4378274, "stop_desc": "AVENUE DE LA DIVISION LECLERC - 94034", "stop_name": "DOCTEUR TENINE"}, "geometry": {"type": "Point", "coordinates": [2.319472436806623, 48.76078187321723]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "181fca8c0cfc3c779bb76289bc72cff16ad207c3", "fields": {"departement": "94", "stop_lat": 48.76353172246238, "code_postal": "94021", "stop_lon": 2.3581784670689125, "coord": [48.76353172246238, 2.3581784670689125], "stop_id": 4378288, "stop_desc": "AVENUE DE LA CITE - 94021", "stop_name": "MARCHE INTERNATIONAL DE RUNGIS"}, "geometry": {"type": "Point", "coordinates": [2.3581784670689125, 48.76353172246238]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "89b1c6526fde9817388c6bb9e8b697bfdf81c88d", "fields": {"departement": "94", "stop_lat": 48.75831681242365, "code_postal": "94073", "stop_lon": 2.3920534671005744, "coord": [48.75831681242365, 2.3920534671005744], "stop_id": 4378300, "stop_desc": "148 AVENUE DE VERSAILLES - 94073", "stop_name": "VICTOR BASCH"}, "geometry": {"type": "Point", "coordinates": [2.3920534671005744, 48.75831681242365]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d147cc39c347f65ceeeebd71ce23503915b86c75", "fields": {"departement": "94", "stop_lat": 48.7862655663759, "code_postal": "94028", "stop_lon": 2.4491419352937744, "coord": [48.7862655663759, 2.4491419352937744], "stop_id": 4378321, "stop_desc": "ROUTE DE CHOISY - 94028", "stop_name": "LA HAYE AUX MOINES"}, "geometry": {"type": "Point", "coordinates": [2.4491419352937744, 48.7862655663759]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7b774ced1f17217a24ceb585981c7ecf3e06f927", "fields": {"departement": "94", "stop_lat": 48.80069437856847, "code_postal": "94068", "stop_lon": 2.4720301880146383, "coord": [48.80069437856847, 2.4720301880146383], "stop_id": 4378328, "stop_desc": "83 RUE DU PONT DE CRETEIL - 94068", "stop_name": "PONT DE CRETEIL"}, "geometry": {"type": "Point", "coordinates": [2.4720301880146383, 48.80069437856847]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c0558aea1d7ffa6732054b23b0ad88cf97ce2367", "fields": {"departement": "94", "stop_lat": 48.800506264849396, "code_postal": "94068", "stop_lon": 2.471471878071295, "coord": [48.800506264849396, 2.471471878071295], "stop_id": 4378329, "stop_desc": "86 RUE DU PONT DE CRETEIL - 94068", "stop_name": "PONT DE CRETEIL"}, "geometry": {"type": "Point", "coordinates": [2.471471878071295, 48.800506264849396]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "726df1208c2f9c178aa3c5b34d73b3e2a0f02c12", "fields": {"departement": "92", "stop_lat": 48.77960219728907, "code_postal": "92014", "stop_lon": 2.315508420878453, "coord": [48.77960219728907, 2.315508420878453], "stop_id": 4378334, "stop_desc": "PLACE CONDORCET - 92014", "stop_name": "CONDORCET - MAIRIE-RER"}, "geometry": {"type": "Point", "coordinates": [2.315508420878453, 48.77960219728907]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "033f05106f6510ccf2e60602dc022b6b0b54d7db", "fields": {"departement": "75", "stop_lat": 48.81838449318841, "code_postal": "75113", "stop_lon": 2.3604326334975934, "coord": [48.81838449318841, 2.3604326334975934], "stop_id": 4378353, "stop_desc": "RUE FERNAND WIDAL - 75113", "stop_name": "PORTE D'ITALIE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.3604326334975934, 48.81838449318841]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8070ba978603b1bc953634ac874acd67ee05d250", "fields": {"departement": "94", "stop_lat": 48.79524862637609, "code_postal": "94076", "stop_lon": 2.3662992378184105, "coord": [48.79524862637609, 2.3662992378184105], "stop_id": 4378360, "stop_desc": "22 BIS RUE JEAN JAURES - 94076", "stop_name": "JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.3662992378184105, 48.79524862637609]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "14adb81104062933291a840650881cc4c94260ed", "fields": {"departement": "94", "stop_lat": 48.79238074838206, "code_postal": "94076", "stop_lon": 2.3691951277195096, "coord": [48.79238074838206, 2.3691951277195096], "stop_id": 4378362, "stop_desc": "114 BOULEVARD MAXIME GORKI - 94076", "stop_name": "GUYNEMER - MAXIME GORKI"}, "geometry": {"type": "Point", "coordinates": [2.3691951277195096, 48.79238074838206]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "053d7ad94eb87183bc0fc8974587ee818c10c8aa", "fields": {"departement": "94", "stop_lat": 48.766309422860196, "code_postal": "94073", "stop_lon": 2.3870991984731407, "coord": [48.766309422860196, 2.3870991984731407], "stop_id": 4378372, "stop_desc": "5 AVENUE DU GENERAL DE GAULLE - 94073", "stop_name": "LOUIS DUPERREY"}, "geometry": {"type": "Point", "coordinates": [2.3870991984731407, 48.766309422860196]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6c68faa8fc89e873db9737872b88a690d3593015", "fields": {"departement": "94", "stop_lat": 48.76240145451181, "code_postal": "94073", "stop_lon": 2.4019144491979936, "coord": [48.76240145451181, 2.4019144491979936], "stop_id": 4378376, "stop_desc": "0 AV DU 25 AOUT 1944 - 94073", "stop_name": "RENE PANHARD"}, "geometry": {"type": "Point", "coordinates": [2.4019144491979936, 48.76240145451181]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c8a9829e2795805921a8df8e6c182bee0a406760", "fields": {"departement": "94", "stop_lat": 48.764696603280214, "code_postal": "94022", "stop_lon": 2.4118288001877866, "coord": [48.764696603280214, 2.4118288001877866], "stop_id": 4378378, "stop_desc": "AVENUE LOUIS LUC - 94022", "stop_name": "CHOISY-LE-ROI RER"}, "geometry": {"type": "Point", "coordinates": [2.4118288001877866, 48.764696603280214]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b3ffbc98dfc792debb642f926462b649b998d6e5", "fields": {"departement": "94", "stop_lat": 48.76190913645617, "code_postal": "94022", "stop_lon": 2.413646568000583, "coord": [48.76190913645617, 2.413646568000583], "stop_id": 4378386, "stop_desc": "32 AVENUE LOUIS LUC - 94022", "stop_name": "QUARTIER DU PORT"}, "geometry": {"type": "Point", "coordinates": [2.413646568000583, 48.76190913645617]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5ce1f3bd08d8b9fd23b560af38d7bdd9c46d3cb0", "fields": {"departement": "94", "stop_lat": 48.763210933888864, "code_postal": "94073", "stop_lon": 2.400895784647364, "coord": [48.763210933888864, 2.400895784647364], "stop_id": 4378389, "stop_desc": "4 AVENUE RENE PANHARD - 94073", "stop_name": "RENE PANHARD"}, "geometry": {"type": "Point", "coordinates": [2.400895784647364, 48.763210933888864]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "845ad4fac95effe88ca5956d98e6fe6d13c43b65", "fields": {"departement": "94", "stop_lat": 48.79221063758954, "code_postal": "94076", "stop_lon": 2.3666376189108953, "coord": [48.79221063758954, 2.3666376189108953], "stop_id": 4378403, "stop_desc": "85 RUE JEAN JAURES - 94076", "stop_name": "GUYNEMER - PLACE DES FUSILLES"}, "geometry": {"type": "Point", "coordinates": [2.3666376189108953, 48.79221063758954]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "99e97396b5895d5a61deddca5c852c8131ca855a", "fields": {"departement": "94", "stop_lat": 48.81193100032783, "code_postal": "94043", "stop_lon": 2.361926673680407, "coord": [48.81193100032783, 2.361926673680407], "stop_id": 4378410, "stop_desc": "55 AVENUE DE FONTAINEBLEAU - 94043", "stop_name": "CONVENTION - FONTAINEBLEAU"}, "geometry": {"type": "Point", "coordinates": [2.361926673680407, 48.81193100032783]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b6e4fc1d6554ee3f777149f975dded404859804a", "fields": {"departement": "94", "stop_lat": 48.771773690860535, "code_postal": "94021", "stop_lon": 2.3586985056609033, "coord": [48.771773690860535, 2.3586985056609033], "stop_id": 4390971, "stop_desc": "AVENUE DU PRESIDENT FRANKLIN ROOSEVELT - 94021", "stop_name": "CITE DES SORBIERS"}, "geometry": {"type": "Point", "coordinates": [2.3586985056609033, 48.771773690860535]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fe125dedee2929dacace6840ba03c0e248902691", "fields": {"departement": "94", "stop_lat": 48.75975453648579, "code_postal": "94021", "stop_lon": 2.36816906303265, "coord": [48.75975453648579, 2.36816906303265], "stop_id": 4390975, "stop_desc": "AV DE FONTAINEBLEAU - 94021", "stop_name": "LE COR DE CHASSE - LA BELLE EPINE"}, "geometry": {"type": "Point", "coordinates": [2.36816906303265, 48.75975453648579]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "afebe7c385a2390c939c6da24da662dcae544a81", "fields": {"departement": "91", "stop_lat": 48.68805660585001, "code_postal": "91589", "stop_lon": 2.3572249480463734, "coord": [48.68805660585001, 2.3572249480463734], "stop_id": 4394966, "stop_desc": "9 AVENUE GABRIEL PERI - 91589", "stop_name": "ARISTIDE BRIAND - CHAMPAGNE"}, "geometry": {"type": "Point", "coordinates": [2.3572249480463734, 48.68805660585001]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4d06cb0cc87e40c7316facd2545f007051e31660", "fields": {"departement": "91", "stop_lat": 48.68961319475132, "code_postal": "91589", "stop_lon": 2.331864845590076, "coord": [48.68961319475132, 2.331864845590076], "stop_id": 4394975, "stop_desc": "33-35 AVENUE DU GENERAL FRIANT - 91589", "stop_name": "PERE COINDREAU"}, "geometry": {"type": "Point", "coordinates": [2.331864845590076, 48.68961319475132]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d7d55ee712d547bd29e86da3801061e4dd4d2562", "fields": {"departement": "75", "stop_lat": 48.82765302479091, "code_postal": "75114", "stop_lon": 2.3350766799082034, "coord": [48.82765302479091, 2.3350766799082034], "stop_id": 3754210, "stop_desc": "39 BIS AVENUE RENE COTY - 75114", "stop_name": "ALESIA - RENE COTY"}, "geometry": {"type": "Point", "coordinates": [2.3350766799082034, 48.82765302479091]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9ced3af86d3f7b99604b0b43bb31b6ea4a8c84c8", "fields": {"departement": "75", "stop_lat": 48.82432761001585, "code_postal": "75114", "stop_lon": 2.336506040578931, "coord": [48.82432761001585, 2.336506040578931], "stop_id": 3754271, "stop_desc": "48 AVENUE REILLE - 75114", "stop_name": "PARC MONTSOURIS"}, "geometry": {"type": "Point", "coordinates": [2.336506040578931, 48.82432761001585]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "393f9834d5cd4ef3c4438476dadf416f2b4def0f", "fields": {"departement": "75", "stop_lat": 48.82367138304594, "code_postal": "75114", "stop_lon": 2.331701205086033, "coord": [48.82367138304594, 2.331701205086033], "stop_id": 3754280, "stop_desc": "59 AVENUE REILLE - 75114", "stop_name": "PLACE JULES HENAFFE."}, "geometry": {"type": "Point", "coordinates": [2.331701205086033, 48.82367138304594]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "34b5b6dcdd2ead0b11f5f6cba9347fa694282b85", "fields": {"departement": "75", "stop_lat": 48.826475602255144, "code_postal": "75114", "stop_lon": 2.341052482548999, "coord": [48.826475602255144, 2.341052482548999], "stop_id": 3754284, "stop_desc": "1 RUE D'ALESIA - 75114", "stop_name": "GLACIERE - TOLBIAC."}, "geometry": {"type": "Point", "coordinates": [2.341052482548999, 48.826475602255144]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "63e25a38c6b80d3587ff7cb42b3fa830ce6060cb", "fields": {"departement": "75", "stop_lat": 48.822070094143626, "code_postal": "75113", "stop_lon": 2.35684096520132, "coord": [48.822070094143626, 2.35684096520132], "stop_id": 3754290, "stop_desc": "51 R DU MOULIN DE LA POINTE - 75113", "stop_name": "MOULIN DE LA POINTE"}, "geometry": {"type": "Point", "coordinates": [2.35684096520132, 48.822070094143626]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c336526a88e8d1895338dc598108f06266808b1d", "fields": {"departement": "94", "stop_lat": 48.81396274450369, "code_postal": "94043", "stop_lon": 2.35931472803775, "coord": [48.81396274450369, 2.35931472803775], "stop_id": 3754338, "stop_desc": "FACE 19 R DU GENERAL LECLERC - 94043", "stop_name": "GENERAL LECLERC - 14 JUILLET"}, "geometry": {"type": "Point", "coordinates": [2.35931472803775, 48.81396274450369]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "615db1d3190dd8076aca6f6f6d3a978fda4b1b12", "fields": {"departement": "94", "stop_lat": 48.80038423616264, "code_postal": "94003", "stop_lon": 2.3380301844769806, "coord": [48.80038423616264, 2.3380301844769806], "stop_id": 3755007, "stop_desc": "17 R DU COLONEL FABIEN - 94003", "stop_name": "COLONEL FABIEN."}, "geometry": {"type": "Point", "coordinates": [2.3380301844769806, 48.80038423616264]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "319465ad727020a4ff80a6d1f09ab06f74a76791", "fields": {"departement": "94", "stop_lat": 48.802703062005584, "code_postal": "94003", "stop_lon": 2.334288579763723, "coord": [48.802703062005584, 2.334288579763723], "stop_id": 3755013, "stop_desc": "60 R DE LA CONVENTION - 94003", "stop_name": "MAISON DES GARDES"}, "geometry": {"type": "Point", "coordinates": [2.334288579763723, 48.802703062005584]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6fc93a80a7a9008889d49675506b1d2eaa8dc3a9", "fields": {"departement": "94", "stop_lat": 48.80494103002888, "code_postal": "94003", "stop_lon": 2.3343836978404418, "coord": [48.80494103002888, 2.3343836978404418], "stop_id": 3755014, "stop_desc": "99 R MARIUS SIDOBRE - 94003", "stop_name": "BIBLIOTHEQUE"}, "geometry": {"type": "Point", "coordinates": [2.3343836978404418, 48.80494103002888]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ea50ff8194e7d7028b42d0079e576999bf29115b", "fields": {"departement": "94", "stop_lat": 48.804266904296085, "code_postal": "94003", "stop_lon": 2.333036704314496, "coord": [48.804266904296085, 2.333036704314496], "stop_id": 3755015, "stop_desc": "75 R MARIUS SIDOBRE - 94003", "stop_name": "LA POSTE"}, "geometry": {"type": "Point", "coordinates": [2.333036704314496, 48.804266904296085]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9991dedb5d1e66b0613a8a9f938af64e8d5f63f7", "fields": {"departement": "94", "stop_lat": 48.80046482066427, "code_postal": "94003", "stop_lon": 2.328683292966661, "coord": [48.80046482066427, 2.328683292966661], "stop_id": 3755017, "stop_desc": "33 R DU 8 MAI 1945 - 94003", "stop_name": "CACHAN RER"}, "geometry": {"type": "Point", "coordinates": [2.328683292966661, 48.80046482066427]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b4d90aac1e4880728931262e0ecc6840697e3876", "fields": {"departement": "94", "stop_lat": 48.80460821685429, "code_postal": "94003", "stop_lon": 2.3288186737090397, "coord": [48.80460821685429, 2.3288186737090397], "stop_id": 3755019, "stop_desc": "FACE 49 R BERTHOLLET - 94003", "stop_name": "CROIX D'ARCUEIL"}, "geometry": {"type": "Point", "coordinates": [2.3288186737090397, 48.80460821685429]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "86a8b928f5a12fe9113173895dcc010d5efa1b62", "fields": {"departement": "94", "stop_lat": 48.808895686141355, "code_postal": "94003", "stop_lon": 2.3385337926160976, "coord": [48.808895686141355, 2.3385337926160976], "stop_id": 3755024, "stop_desc": "FACE 54 R HENRI BARBUSSE - 94003", "stop_name": "HENRI BARBUSSE"}, "geometry": {"type": "Point", "coordinates": [2.3385337926160976, 48.808895686141355]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "010cf2a335578f7ce9fa355f693b67050c52f840", "fields": {"departement": "91", "stop_lat": 48.71383870908266, "code_postal": "91477", "stop_lon": 2.259181216507663, "coord": [48.71383870908266, 2.259181216507663], "stop_id": 3757184, "stop_desc": "75 AVENUE DE STALINGRAD - 91477", "stop_name": "PIERRE CURIE"}, "geometry": {"type": "Point", "coordinates": [2.259181216507663, 48.71383870908266]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "efbd1cccbfc0ad46ceff600dc3f1b833c9ce6028", "fields": {"departement": "91", "stop_lat": 48.710858608611034, "code_postal": "91136", "stop_lon": 2.2656371121606407, "coord": [48.710858608611034, 2.2656371121606407], "stop_id": 3757186, "stop_desc": "FACE 199 ROUTE DE VERSAILLES - 91136", "stop_name": "BUTTE CHAUMONT"}, "geometry": {"type": "Point", "coordinates": [2.2656371121606407, 48.710858608611034]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2f15c2879e93616eb71bd04e34090916473d0aa9", "fields": {"departement": "91", "stop_lat": 48.700120083755955, "code_postal": "91136", "stop_lon": 2.2888450601613095, "coord": [48.700120083755955, 2.2888450601613095], "stop_id": 3757194, "stop_desc": "30 ROUTE DE VERSAILLES - 91136", "stop_name": "ROUTE DE VERSAILLES N0 21-30"}, "geometry": {"type": "Point", "coordinates": [2.2888450601613095, 48.700120083755955]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "984fd168cfde8bc9e355529b85bad66ed03fedd8", "fields": {"departement": "91", "stop_lat": 48.697317212120595, "code_postal": "91345", "stop_lon": 2.292826140253021, "coord": [48.697317212120595, 2.292826140253021], "stop_id": 3757196, "stop_desc": "2 RUE MICHEL VINCENT - 91345", "stop_name": "PLACE CHARLES STEBER"}, "geometry": {"type": "Point", "coordinates": [2.292826140253021, 48.697317212120595]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "79783c1b76fcaaa0c1dd0c1786ab621f0f88c4cc", "fields": {"departement": "91", "stop_lat": 48.69613835362166, "code_postal": "91345", "stop_lon": 2.289337575962143, "coord": [48.69613835362166, 2.289337575962143], "stop_id": 3757197, "stop_desc": "RUE DU CANAL - 91345", "stop_name": "CANAL DE L'YVETTE"}, "geometry": {"type": "Point", "coordinates": [2.289337575962143, 48.69613835362166]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d5530467ce02e6daeb9130b068345c951be7b3eb", "fields": {"departement": "91", "stop_lat": 48.69036349266314, "code_postal": "91587", "stop_lon": 2.2798935862636833, "coord": [48.69036349266314, 2.2798935862636833], "stop_id": 3757200, "stop_desc": "32-36 RUE DU PONT NEUF - 91587", "stop_name": "PABLO PICASSO"}, "geometry": {"type": "Point", "coordinates": [2.2798935862636833, 48.69036349266314]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ce72c479cd8cbc3197ecf39789ae52815b380eac", "fields": {"departement": "91", "stop_lat": 48.72284681621443, "code_postal": "91377", "stop_lon": 2.2618303676799454, "coord": [48.72284681621443, 2.2618303676799454], "stop_id": 3757204, "stop_desc": "8-10 AVENUE RAMOLFO GARNIER - 91377", "stop_name": "RUE DE PARIS"}, "geometry": {"type": "Point", "coordinates": [2.2618303676799454, 48.72284681621443]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "088fc4de14ba489ea3832ac5a518211ad238f702", "fields": {"departement": "91", "stop_lat": 48.70870593005485, "code_postal": "91136", "stop_lon": 2.2736395084075736, "coord": [48.70870593005485, 2.2736395084075736], "stop_id": 3757218, "stop_desc": "6 RUE DE LA MAIRIE - 91136", "stop_name": "MAIRIE DE CHAMPLAN"}, "geometry": {"type": "Point", "coordinates": [2.2736395084075736, 48.70870593005485]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ec58259b93d0646dd46a874d1a609fde8ade017a", "fields": {"departement": "91", "stop_lat": 48.700120083755955, "code_postal": "91136", "stop_lon": 2.2888450601613095, "coord": [48.700120083755955, 2.2888450601613095], "stop_id": 3757222, "stop_desc": "30 ROUTE DE VERSAILLES - 91136", "stop_name": "ROUTE DE VERSAILLES N0 21-30"}, "geometry": {"type": "Point", "coordinates": [2.2888450601613095, 48.700120083755955]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cdbca6e3f47ff97bc6d19736d6666bb289492dd8", "fields": {"departement": "91", "stop_lat": 48.69613835362166, "code_postal": "91345", "stop_lon": 2.289337575962143, "coord": [48.69613835362166, 2.289337575962143], "stop_id": 3757225, "stop_desc": "RUE DU CANAL - 91345", "stop_name": "CANAL DE L'YVETTE"}, "geometry": {"type": "Point", "coordinates": [2.289337575962143, 48.69613835362166]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1fef239e3e80d88518e625eee77eb123aa8b2dc3", "fields": {"departement": "91", "stop_lat": 48.691959054551646, "code_postal": "91345", "stop_lon": 2.2903189686409093, "coord": [48.691959054551646, 2.2903189686409093], "stop_id": 3757228, "stop_desc": "159 RUE DU PRESIDENT FRANCOIS MITTERRAND - 91345", "stop_name": "HOPITAL DE LONGJUMEAU"}, "geometry": {"type": "Point", "coordinates": [2.2903189686409093, 48.691959054551646]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3805c61230d24af005fd3c4299484c907bd1ac10", "fields": {"departement": "91", "stop_lat": 48.68668330985952, "code_postal": "91345", "stop_lon": 2.2917898944622443, "coord": [48.68668330985952, 2.2917898944622443], "stop_id": 3757234, "stop_desc": "FACE 14 BOULEVARD DU DOCTEUR CATHELIN - 91345", "stop_name": "RESIDENCE FONTANGES"}, "geometry": {"type": "Point", "coordinates": [2.2917898944622443, 48.68668330985952]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e81b2b20027ba0eb050b21471719121dab8931c2", "fields": {"departement": "91", "stop_lat": 48.68710650299653, "code_postal": "91345", "stop_lon": 2.2937308555740574, "coord": [48.68710650299653, 2.2937308555740574], "stop_id": 3757236, "stop_desc": "FACE 54-56 BOULEVARD DU DOCTEUR CATHELIN - 91345", "stop_name": "RESIDENCE LA ROCADE"}, "geometry": {"type": "Point", "coordinates": [2.2937308555740574, 48.68710650299653]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b7abc82b65bc0a9ab2c1edf098b684db59ea2862", "fields": {"departement": "91", "stop_lat": 48.687646169985925, "code_postal": "91345", "stop_lon": 2.294694291776584, "coord": [48.687646169985925, 2.294694291776584], "stop_id": 3757238, "stop_desc": "BOULEVARD DU DOCTEUR CATHELIN - 91345", "stop_name": "LA ROCADE-LYCEE"}, "geometry": {"type": "Point", "coordinates": [2.294694291776584, 48.687646169985925]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5edf91bdbd6e2790fa904beea0321f6739d2a2b5", "fields": {"departement": "91", "stop_lat": 48.7244458500694, "code_postal": "91377", "stop_lon": 2.2604287428627776, "coord": [48.7244458500694, 2.2604287428627776], "stop_id": 3759046, "stop_desc": "R CARNOT - 91377", "stop_name": "MASSY-PALAISEAU RER"}, "geometry": {"type": "Point", "coordinates": [2.2604287428627776, 48.7244458500694]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ae10c746941477ccc8981c9be89db2cace8ecb9b", "fields": {"departement": "91", "stop_lat": 48.729458146368074, "code_postal": "91377", "stop_lon": 2.269959271531674, "coord": [48.729458146368074, 2.269959271531674], "stop_id": 3759051, "stop_desc": "32 RUE VICTOR BASCH - 91377", "stop_name": "MAIRIE DE MASSY"}, "geometry": {"type": "Point", "coordinates": [2.269959271531674, 48.729458146368074]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "93c775bde22402c0ad1f54298833c7267e95c24f", "fields": {"departement": "91", "stop_lat": 48.727770526426966, "code_postal": "91377", "stop_lon": 2.273942258629133, "coord": [48.727770526426966, 2.273942258629133], "stop_id": 3759055, "stop_desc": "AVENUE DE L'EUROPE - 91377", "stop_name": "8 MAI 1945"}, "geometry": {"type": "Point", "coordinates": [2.273942258629133, 48.727770526426966]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "71beea75a418d4dd9933a051a22dcd7f99c26f52", "fields": {"departement": "91", "stop_lat": 48.70396784643142, "code_postal": "91432", "stop_lon": 2.3302744832297666, "coord": [48.70396784643142, 2.3302744832297666], "stop_id": 3759077, "stop_desc": "1 AVENUE GABRIEL PERI - 91432", "stop_name": "PIERRE BROSSOLETTE"}, "geometry": {"type": "Point", "coordinates": [2.3302744832297666, 48.70396784643142]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7da822b09d05aa0d86db17f89a7147e901df4bb4", "fields": {"departement": "91", "stop_lat": 48.70668227845886, "code_postal": "91432", "stop_lon": 2.328793806915912, "coord": [48.70668227845886, 2.328793806915912], "stop_id": 3759079, "stop_desc": "3 AVENUE MARCEL TELOTTE - 91432", "stop_name": "GABRIEL FONTAINE"}, "geometry": {"type": "Point", "coordinates": [2.328793806915912, 48.70668227845886]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "193ced723ba4540c0ad4392b66a4cfd6a8aef353", "fields": {"departement": "91", "stop_lat": 48.705091579100525, "code_postal": "91432", "stop_lon": 2.3401744668219084, "coord": [48.705091579100525, 2.3401744668219084], "stop_id": 3759083, "stop_desc": "FACE 53 AVENUE CHARLES DE GAULLE - 91432", "stop_name": "LE STADE"}, "geometry": {"type": "Point", "coordinates": [2.3401744668219084, 48.705091579100525]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1a398bac38d92e54b4861ce210d3f9199e5d83b4", "fields": {"departement": "91", "stop_lat": 48.70548673822245, "code_postal": "91432", "stop_lon": 2.34663882337112, "coord": [48.70548673822245, 2.34663882337112], "stop_id": 3759086, "stop_desc": "89 AVENUE CHARLES DE GAULLE - 91432", "stop_name": "RUE DE LA PAIX"}, "geometry": {"type": "Point", "coordinates": [2.34663882337112, 48.70548673822245]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4a02907688c0a28145155c25fef6431d1f4934c8", "fields": {"departement": "91", "stop_lat": 48.70731415833315, "code_postal": "91027", "stop_lon": 2.3768569051497845, "coord": [48.70731415833315, 2.3768569051497845], "stop_id": 3759094, "stop_desc": "98 AVENUE MARCEL SEMBAT - 91027", "stop_name": "LA PLAINE"}, "geometry": {"type": "Point", "coordinates": [2.3768569051497845, 48.70731415833315]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2f7e879d4ddc50ca727e7d03db4accf1a2854b4c", "fields": {"departement": "91", "stop_lat": 48.706016393061184, "code_postal": "91027", "stop_lon": 2.3860500339303985, "coord": [48.706016393061184, 2.3860500339303985], "stop_id": 3759097, "stop_desc": "AVENUE ARISTIDE BRIAND - 91027", "stop_name": "CENTRE ADMINISTRATIF"}, "geometry": {"type": "Point", "coordinates": [2.3860500339303985, 48.706016393061184]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2e6e288903b2812b7e62be3093d5f7d589b9bd6f", "fields": {"departement": "91", "stop_lat": 48.70437836972327, "code_postal": "91027", "stop_lon": 2.3909509669122206, "coord": [48.70437836972327, 2.3909509669122206], "stop_id": 3759098, "stop_desc": "143-145-147 AVENUE DU 18 AVRIL - 91027", "stop_name": "COUBERTIN"}, "geometry": {"type": "Point", "coordinates": [2.3909509669122206, 48.70437836972327]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "00ad0a2d49b038def54746732958461cc7e8ffbc", "fields": {"departement": "91", "stop_lat": 48.699779392992774, "code_postal": "91027", "stop_lon": 2.383464165035811, "coord": [48.699779392992774, 2.383464165035811], "stop_id": 3759103, "stop_desc": "15 AVENUE DU 18 AVRIL - 91027", "stop_name": "DOCTEUR GUERIN"}, "geometry": {"type": "Point", "coordinates": [2.383464165035811, 48.699779392992774]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d14519a6b88e674cd1aed6f01284d820f60e888f", "fields": {"departement": "91", "stop_lat": 48.6931833463181, "code_postal": "91326", "stop_lon": 2.379262913371422, "coord": [48.6931833463181, 2.379262913371422], "stop_id": 3759110, "stop_desc": "24 RUE VOLTAIRE - 91326", "stop_name": "VOLTAIRE"}, "geometry": {"type": "Point", "coordinates": [2.379262913371422, 48.6931833463181]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e0b99bc5cb89b9995d10cffcbc09119361a7f4d3", "fields": {"departement": "75", "stop_lat": 48.82245759415938, "code_postal": "75114", "stop_lon": 2.3254810437249733, "coord": [48.82245759415938, 2.3254810437249733], "stop_id": 3763975, "stop_desc": "5 PL DU 25 AOUT 1944 - 75114", "stop_name": "PORTE D'ORLEANS-METRO"}, "geometry": {"type": "Point", "coordinates": [2.3254810437249733, 48.82245759415938]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4e54957a11e54bc2f4a0b3f22abfd2f8aefe60e7", "fields": {"departement": "92", "stop_lat": 48.81817044569001, "code_postal": "92049", "stop_lon": 2.3253050858161446, "coord": [48.81817044569001, 2.3253050858161446], "stop_id": 3763976, "stop_desc": "52 AVENUE ARISTIDE BRIAND - 92049", "stop_name": "GABRIEL PERI"}, "geometry": {"type": "Point", "coordinates": [2.3253050858161446, 48.81817044569001]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ca52d25ad69e2743aa9af1dcf05fb362cea4bd9d", "fields": {"departement": "94", "stop_lat": 48.81062089478181, "code_postal": "94003", "stop_lon": 2.3268989636631354, "coord": [48.81062089478181, 2.3268989636631354], "stop_id": 3763981, "stop_desc": "3 AVENUE ARISTIDE BRIAND - 94003", "stop_name": "VACHE NOIRE"}, "geometry": {"type": "Point", "coordinates": [2.3268989636631354, 48.81062089478181]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ea14250ceb0209870c76b84e945622a033d4a3d6", "fields": {"departement": "92", "stop_lat": 48.80103955903768, "code_postal": "92007", "stop_lon": 2.3235267038195793, "coord": [48.80103955903768, 2.3235267038195793], "stop_id": 3763983, "stop_desc": "FACE 1 AVENUE ARISTIDE BRIAND - 92007", "stop_name": "GRANGE ORY"}, "geometry": {"type": "Point", "coordinates": [2.3235267038195793, 48.80103955903768]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "992bf87aff2af7d1e27697e8a5c44582deefef08", "fields": {"departement": "92", "stop_lat": 48.79951155253117, "code_postal": "92007", "stop_lon": 2.322901271964075, "coord": [48.79951155253117, 2.322901271964075], "stop_id": 3763984, "stop_desc": "116 AVENUE ARISTIDE BRIAND - 92007", "stop_name": "CARNOT - ARISTIDE BRIAND"}, "geometry": {"type": "Point", "coordinates": [2.322901271964075, 48.79951155253117]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f496ed4d04fb6c1d5f6b56f504645aa209333b5e", "fields": {"departement": "92", "stop_lat": 48.79369610412017, "code_postal": "92007", "stop_lon": 2.3206038703652614, "coord": [48.79369610412017, 2.3206038703652614], "stop_id": 3763986, "stop_desc": "206-208 AVENUE ARISTIDE BRIAND - 92007", "stop_name": "PONT ROYAL - RER"}, "geometry": {"type": "Point", "coordinates": [2.3206038703652614, 48.79369610412017]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ea645f9f58868957867f15e3b07e05057d464b2c", "fields": {"departement": "92", "stop_lat": 48.77713929852077, "code_postal": "92014", "stop_lon": 2.3145031060719545, "coord": [48.77713929852077, 2.3145031060719545], "stop_id": 3763993, "stop_desc": "131 AVENUE DU GENERAL LECLERC - 92014", "stop_name": "PETIT CHAMBORD - LYCEE LAKANAL"}, "geometry": {"type": "Point", "coordinates": [2.3145031060719545, 48.77713929852077]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bc133a1b85caf4d73c0c0e29aa52caf2f25d8c42", "fields": {"departement": "92", "stop_lat": 48.77446957980129, "code_postal": "92071", "stop_lon": 2.3130900241212315, "coord": [48.77446957980129, 2.3130900241212315], "stop_id": 3763994, "stop_desc": "146 AVENUE DU GENERAL LECLERC - 92071", "stop_name": "LES COTTAGES"}, "geometry": {"type": "Point", "coordinates": [2.3130900241212315, 48.77446957980129]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "91a5e2043c7279774beab6d29b4f1b1f5c950f09", "fields": {"departement": "92", "stop_lat": 48.77033474019488, "code_postal": "92002", "stop_lon": 2.311460248843124, "coord": [48.77033474019488, 2.311460248843124], "stop_id": 3763995, "stop_desc": "69 AVENUE RAYMOND ARON - 92002", "stop_name": "LA FONTAINE"}, "geometry": {"type": "Point", "coordinates": [2.311460248843124, 48.77033474019488]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "67ef2fba61c88e823bfe942deac5bff9d0a6f4ec", "fields": {"departement": "92", "stop_lat": 48.75043325524002, "code_postal": "92002", "stop_lon": 2.3042526245193016, "coord": [48.75043325524002, 2.3042526245193016], "stop_id": 3764006, "stop_desc": "46 AVENUE DE LA DIVISION LECLERC - 92002", "stop_name": "PONT D'ANTONY"}, "geometry": {"type": "Point", "coordinates": [2.3042526245193016, 48.75043325524002]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b5c72a85d4010a86629da07ec2a7a73348df56d0", "fields": {"departement": "92", "stop_lat": 48.74507597561904, "code_postal": "92002", "stop_lon": 2.3031687552534903, "coord": [48.74507597561904, 2.3031687552534903], "stop_id": 3764008, "stop_desc": "134 AVENUE DE LA DIVISION LECLERC - 92002", "stop_name": "BLANCHE DE CASTILLE"}, "geometry": {"type": "Point", "coordinates": [2.3031687552534903, 48.74507597561904]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4f7a0712032a5e04857dcef02e22b00f32f88b83", "fields": {"departement": "92", "stop_lat": 48.7412916894257, "code_postal": "92002", "stop_lon": 2.30235584303178, "coord": [48.7412916894257, 2.30235584303178], "stop_id": 3764010, "stop_desc": "FACE 157 AVENUE DE LA DIVISION LECLERC - 92002", "stop_name": "PETIT MASSY"}, "geometry": {"type": "Point", "coordinates": [2.30235584303178, 48.7412916894257]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f6aaec96beb4c7a90d868f0859193d1a680d8124", "fields": {"departement": "92", "stop_lat": 48.741525495145915, "code_postal": "92002", "stop_lon": 2.3027362046921716, "coord": [48.741525495145915, 2.3027362046921716], "stop_id": 3764011, "stop_desc": "157 AVENUE DE LA DIVISION LECLERC - 92002", "stop_name": "PETIT MASSY"}, "geometry": {"type": "Point", "coordinates": [2.3027362046921716, 48.741525495145915]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4c50d076e0a7dcbab7e1a8e32ccc2f2f55154353", "fields": {"departement": "91", "stop_lat": 48.734889288669834, "code_postal": "91377", "stop_lon": 2.294003387399992, "coord": [48.734889288669834, 2.294003387399992], "stop_id": 3764015, "stop_desc": "1 RUE D'ALGER - 91377", "stop_name": "BIARRITZ"}, "geometry": {"type": "Point", "coordinates": [2.294003387399992, 48.734889288669834]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2958a6e71a9398cb98d820ce53dbbb51a4e104a9", "fields": {"departement": "94", "stop_lat": 48.78995699489565, "code_postal": "94016", "stop_lon": 2.319612077566947, "coord": [48.78995699489565, 2.319612077566947], "stop_id": 3764026, "stop_desc": "FACE 276 AVENUE ARISTIDE BRIAND - 94016", "stop_name": "CITE JARDINS"}, "geometry": {"type": "Point", "coordinates": [2.319612077566947, 48.78995699489565]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aa757948c28765781756f73cfaae1a96d597caaa", "fields": {"departement": "94", "stop_lat": 48.796922971774215, "code_postal": "94016", "stop_lon": 2.3222625783569653, "coord": [48.796922971774215, 2.3222625783569653], "stop_id": 3764028, "stop_desc": "73 AVENUE ARISTIDE BRIAND - 94016", "stop_name": "MARCEL BONNET"}, "geometry": {"type": "Point", "coordinates": [2.3222625783569653, 48.796922971774215]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "55fc2d3dc062035fa38f0ac2e9d9091078ce2464", "fields": {"departement": "92", "stop_lat": 48.75451292849927, "code_postal": "92002", "stop_lon": 2.300960444258561, "coord": [48.75451292849927, 2.300960444258561], "stop_id": 3764087, "stop_desc": "FACE 20 R VELPEAU - 92002", "stop_name": "ANTONY RER"}, "geometry": {"type": "Point", "coordinates": [2.300960444258561, 48.75451292849927]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6fdc144612de0c1229df46ab73c275f1c089e54a", "fields": {"departement": "92", "stop_lat": 48.765975131381744, "code_postal": "92002", "stop_lon": 2.3096948881143153, "coord": [48.765975131381744, 2.3096948881143153], "stop_id": 3764097, "stop_desc": "25 AVENUE RAYMOND ARON - 92002", "stop_name": "NORMANDIE"}, "geometry": {"type": "Point", "coordinates": [2.3096948881143153, 48.765975131381744]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "47eb185d33b673772ef6268e55a230eee12da7e3", "fields": {"departement": "92", "stop_lat": 48.77030871068641, "code_postal": "92002", "stop_lon": 2.3162057817741135, "coord": [48.77030871068641, 2.3162057817741135], "stop_id": 3764099, "stop_desc": "17 AVENUE DE LA RESIDENCE - 92002", "stop_name": "PIERRE KOLHMANN"}, "geometry": {"type": "Point", "coordinates": [2.3162057817741135, 48.77030871068641]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8c79421edf105a4988a3c080fb59ce93ed3ac028", "fields": {"departement": "91", "stop_lat": 48.72838680512074, "code_postal": "91377", "stop_lon": 2.2531405445199626, "coord": [48.72838680512074, 2.2531405445199626], "stop_id": 3764105, "stop_desc": "48 AVENUE GEORGES CLEMENCEAU - 91377", "stop_name": "LES RUELLES"}, "geometry": {"type": "Point", "coordinates": [2.2531405445199626, 48.72838680512074]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3b527a3c0ca8a62d3bc934f1a7cd57cf1dc95093", "fields": {"departement": "91", "stop_lat": 48.73430404493988, "code_postal": "91377", "stop_lon": 2.257370449190574, "coord": [48.73430404493988, 2.257370449190574], "stop_id": 3764110, "stop_desc": "53 BOULEVARD DU 1ER MAI - 91377", "stop_name": "GEORGES MANDEL"}, "geometry": {"type": "Point", "coordinates": [2.257370449190574, 48.73430404493988]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f8889933ed1aa3b8721f381bd644e86f44e678f2", "fields": {"departement": "91", "stop_lat": 48.73375007805158, "code_postal": "91377", "stop_lon": 2.2624531835693826, "coord": [48.73375007805158, 2.2624531835693826], "stop_id": 3764113, "stop_desc": "FACE 7-9 BOULEVARD DU 1ER MAI - 91377", "stop_name": "BOULEVARD DU 1ER MAI"}, "geometry": {"type": "Point", "coordinates": [2.2624531835693826, 48.73375007805158]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a9f3c4d3a5ca892c62aa4f69fa9cfe996d0e9171", "fields": {"departement": "91", "stop_lat": 48.73832815933296, "code_postal": "91645", "stop_lon": 2.2674473924853236, "coord": [48.73832815933296, 2.2674473924853236], "stop_id": 3764116, "stop_desc": "69 AV GABRIEL PERI - 91645", "stop_name": "VALLEE DE LA BIEVRE"}, "geometry": {"type": "Point", "coordinates": [2.2674473924853236, 48.73832815933296]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "91dabda11a70563914dbdbebccde8822c41585d2", "fields": {"departement": "92", "stop_lat": 48.75764035501477, "code_postal": "92002", "stop_lon": 2.2775762951547307, "coord": [48.75764035501477, 2.2775762951547307], "stop_id": 3764129, "stop_desc": "237 AVENUE DU BOIS DE VERRIERES - 92002", "stop_name": "LES GODETS"}, "geometry": {"type": "Point", "coordinates": [2.2775762951547307, 48.75764035501477]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "30289b6d56a1c4d0274c9813eca132d98a297853", "fields": {"departement": "92", "stop_lat": 48.754872582833805, "code_postal": "92002", "stop_lon": 2.3013815897668075, "coord": [48.754872582833805, 2.3013815897668075], "stop_id": 3764139, "stop_desc": "FACE 11 BD PIERRE BROSSOLETTE - 92002", "stop_name": "ANTONY RER"}, "geometry": {"type": "Point", "coordinates": [2.3013815897668075, 48.754872582833805]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "427111d118647afb5b2d2b8adfcf294b66eb11a2", "fields": {"departement": "75", "stop_lat": 48.83034030445196, "code_postal": "75114", "stop_lon": 2.3340691898234978, "coord": [48.83034030445196, 2.3340691898234978], "stop_id": 3764435, "stop_desc": "15 AVENUE RENE COTY - 75114", "stop_name": "DAREAU-RENE COTY"}, "geometry": {"type": "Point", "coordinates": [2.3340691898234978, 48.83034030445196]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7673a13a6afabb4216134b74eaac61eebe993936", "fields": {"departement": "75", "stop_lat": 48.837421236576084, "code_postal": "75114", "stop_lon": 2.319405329247623, "coord": [48.837421236576084, 2.319405329247623], "stop_id": 3764444, "stop_desc": "FACE 18 RUE VERCINGETORIX - 75114", "stop_name": "VERCINGETORIX"}, "geometry": {"type": "Point", "coordinates": [2.319405329247623, 48.837421236576084]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f2683b40aa04916c0a7a6824fe689d4a36b659d0", "fields": {"departement": "75", "stop_lat": 48.83693339545702, "code_postal": "75115", "stop_lon": 2.3069750582199444, "coord": [48.83693339545702, 2.3069750582199444], "stop_id": 3764453, "stop_desc": "82-84 RUE DUTOT - 75115", "stop_name": "ALLERAY"}, "geometry": {"type": "Point", "coordinates": [2.3069750582199444, 48.83693339545702]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aea3ff06c878816de3f01f718b44bc30abed70bd", "fields": {"departement": "75", "stop_lat": 48.837023039308455, "code_postal": "75115", "stop_lon": 2.3060764183898517, "coord": [48.837023039308455, 2.3060764183898517], "stop_id": 3764454, "stop_desc": "48 RUE PAUL BARRUEL - 75115", "stop_name": "ALLERAY"}, "geometry": {"type": "Point", "coordinates": [2.3060764183898517, 48.837023039308455]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1013a041e581073496663d74335e3aa6a6212694", "fields": {"departement": "75", "stop_lat": 48.84333741383116, "code_postal": "75115", "stop_lon": 2.293722349362553, "coord": [48.84333741383116, 2.293722349362553], "stop_id": 3764462, "stop_desc": "106 RUE DES ENTREPRENEURS - 75115", "stop_name": "FELIX FAURE"}, "geometry": {"type": "Point", "coordinates": [2.293722349362553, 48.84333741383116]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ee885da996ffcec70786fc5b6629025ce15d90d9", "fields": {"departement": "75", "stop_lat": 48.83946421233197, "code_postal": "75115", "stop_lon": 2.274541211540746, "coord": [48.83946421233197, 2.274541211540746], "stop_id": 3764477, "stop_desc": "31 RUE LEBLANC - 75115", "stop_name": "RUE LEBLANC"}, "geometry": {"type": "Point", "coordinates": [2.274541211540746, 48.83946421233197]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "75b38a3c8ac370a115269e9180089b05b891f6b9", "fields": {"departement": "75", "stop_lat": 48.84003340777896, "code_postal": "75115", "stop_lon": 2.3043454088503066, "coord": [48.84003340777896, 2.3043454088503066], "stop_id": 3764483, "stop_desc": "2 RUE PAUL BARRUEL - 75115", "stop_name": "CAMBRONNE - VAUGIRARD"}, "geometry": {"type": "Point", "coordinates": [2.3043454088503066, 48.84003340777896]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "250734ecc68315012661d735572356e64832a025", "fields": {"departement": "75", "stop_lat": 48.836457864626006, "code_postal": "75115", "stop_lon": 2.31035180957615, "coord": [48.836457864626006, 2.31035180957615], "stop_id": 3764484, "stop_desc": "FACE 136 RUE FALGUIERE - 75115", "stop_name": "FALGUIERE"}, "geometry": {"type": "Point", "coordinates": [2.31035180957615, 48.836457864626006]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2f924ed6e03536c11f08ded318c73e7fc9c717e9", "fields": {"departement": "75", "stop_lat": 48.833405022073045, "code_postal": "75114", "stop_lon": 2.3323536362675257, "coord": [48.833405022073045, 2.3323536362675257], "stop_id": 3764486, "stop_desc": "7-9 PLACE DENFERT ROCHEREAU - 75114", "stop_name": "DENFERT-ROCHEREAU"}, "geometry": {"type": "Point", "coordinates": [2.3323536362675257, 48.833405022073045]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ddb7b1b6cff9a9404b0ef23922bbd08b47d4ec19", "fields": {"departement": "75", "stop_lat": 48.880355460562406, "code_postal": "75109", "stop_lon": 2.3373773191265483, "coord": [48.880355460562406, 2.3373773191265483], "stop_id": 3764496, "stop_desc": "19 RUE HENRI MONNIER - 75109", "stop_name": "NAVARIN"}, "geometry": {"type": "Point", "coordinates": [2.3373773191265483, 48.880355460562406]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f19c1d551b95a9f6bcc25dcc92841c571705e08d", "fields": {"departement": "75", "stop_lat": 48.87222193151079, "code_postal": "75109", "stop_lon": 2.3400476437111686, "coord": [48.87222193151079, 2.3400476437111686], "stop_id": 3764503, "stop_desc": "1 RUE DROUOT - 75109", "stop_name": "RICHELIEU - DROUOT - MAIRIE DU 9E"}, "geometry": {"type": "Point", "coordinates": [2.3400476437111686, 48.87222193151079]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c2a6388d109c76f356585840d574a8733f1d5bda", "fields": {"departement": "92", "stop_lat": 48.770117094476994, "code_postal": "92019", "stop_lon": 2.2504350840192333, "coord": [48.770117094476994, 2.2504350840192333], "stop_id": 5121842, "stop_desc": "FACE 20 VOIE DU LOUP-PENDU - 92019", "stop_name": "CYRANO DE BERGERAC"}, "geometry": {"type": "Point", "coordinates": [2.2504350840192333, 48.770117094476994]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8b058c68f03d8fc5f22fa74cf8ce91d74229491b", "fields": {"departement": "92", "stop_lat": 48.76995424851963, "code_postal": "92019", "stop_lon": 2.248994032426121, "coord": [48.76995424851963, 2.248994032426121], "stop_id": 5121843, "stop_desc": "AVENUE DE LA DIVISION LECLERC - 92019", "stop_name": "FERME DE MALABRY"}, "geometry": {"type": "Point", "coordinates": [2.248994032426121, 48.76995424851963]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8d3b120fc63d20aa7304b9dc117a7c3b9fe19dc9", "fields": {"departement": "92", "stop_lat": 48.77268287806658, "code_postal": "92060", "stop_lon": 2.244094077916302, "coord": [48.77268287806658, 2.244094077916302], "stop_id": 5121844, "stop_desc": "AVENUE DE LA DIVISION LECLERC - 92060", "stop_name": "AVENUE GALILEE"}, "geometry": {"type": "Point", "coordinates": [2.244094077916302, 48.77268287806658]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "be4fc46994fad23d23ed44554022bddee07b4545", "fields": {"departement": "92", "stop_lat": 48.77738976143551, "code_postal": "92023", "stop_lon": 2.2300511155441054, "coord": [48.77738976143551, 2.2300511155441054], "stop_id": 5121846, "stop_desc": "10 ROUTE DE LA GARENNE - 92023", "stop_name": "ROND-POINT DU PETIT CLAMART"}, "geometry": {"type": "Point", "coordinates": [2.2300511155441054, 48.77738976143551]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0172d3a6497e538ee53a1d00c760d2ea9dbf33ed", "fields": {"departement": "78", "stop_lat": 48.78481204407608, "code_postal": "78640", "stop_lon": 2.218692321337125, "coord": [48.78481204407608, 2.218692321337125], "stop_id": 5121849, "stop_desc": "GARE ROUTIERE - 78640", "stop_name": "VELIZY 2"}, "geometry": {"type": "Point", "coordinates": [2.218692321337125, 48.78481204407608]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7bc236f06e29f99cfd75e5e867a08ec0368092a8", "fields": {"departement": "92", "stop_lat": 48.79423166705624, "code_postal": "92048", "stop_lon": 2.2189700980748905, "coord": [48.79423166705624, 2.2189700980748905], "stop_id": 5121852, "stop_desc": "287 ROUTE DE VERRIERES - 92048", "stop_name": "ERMITAGE DE VILLEBON"}, "geometry": {"type": "Point", "coordinates": [2.2189700980748905, 48.79423166705624]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9b6b0f4a126f575b8a1fbb4526f9b54312589c88", "fields": {"departement": "92", "stop_lat": 48.81685143561789, "code_postal": "92072", "stop_lon": 2.2164279802121505, "coord": [48.81685143561789, 2.2164279802121505], "stop_id": 5121854, "stop_desc": "63 RUE DES BRUYERES - 92072", "stop_name": "LES CAPUCINS"}, "geometry": {"type": "Point", "coordinates": [2.2164279802121505, 48.81685143561789]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "85c41aaba68f48823a77d5dbb1898927259299d1", "fields": {"departement": "92", "stop_lat": 48.826516619377834, "code_postal": "92072", "stop_lon": 2.219835757126419, "coord": [48.826516619377834, 2.219835757126419], "stop_id": 5121857, "stop_desc": "25 BIS GRANDE RUE - 92072", "stop_name": "PARC DE SAINT-CLOUD"}, "geometry": {"type": "Point", "coordinates": [2.219835757126419, 48.826516619377834]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "97603b92794f4e5c1bcc946a0946c56ac7d6fff7", "fields": {"departement": "92", "stop_lat": 48.82904303376725, "code_postal": "92072", "stop_lon": 2.2303119593717184, "coord": [48.82904303376725, 2.2303119593717184], "stop_id": 5121859, "stop_desc": "GARE ROUTIERE - 92072", "stop_name": "PONT DE SEVRES"}, "geometry": {"type": "Point", "coordinates": [2.2303119593717184, 48.82904303376725]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "abb5a5309de99be587f5be4e1ff27f9284e2fe8a", "fields": {"departement": "91", "stop_lat": 48.7319476269789, "code_postal": "91377", "stop_lon": 2.2552000770430967, "coord": [48.7319476269789, 2.2552000770430967], "stop_id": 5121937, "stop_desc": "RUE DE VERSAILLES - 91377", "stop_name": "LYCEE DE VILGENIS"}, "geometry": {"type": "Point", "coordinates": [2.2552000770430967, 48.7319476269789]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e13c6bc40f11a58ee200d6a975aa8aa4bc97cb6c", "fields": {"departement": "91", "stop_lat": 48.73362431871539, "code_postal": "91377", "stop_lon": 2.2625756555009833, "coord": [48.73362431871539, 2.2625756555009833], "stop_id": 5121940, "stop_desc": "7 BOULEVARD DU 1ER MAI - 91377", "stop_name": "BOULEVARD DU 1ER MAI"}, "geometry": {"type": "Point", "coordinates": [2.2625756555009833, 48.73362431871539]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aebec762bf3c52d96da63f9de8b5faaab466b97e", "fields": {"departement": "91", "stop_lat": 48.74122106613091, "code_postal": "91645", "stop_lon": 2.265241948180558, "coord": [48.74122106613091, 2.265241948180558], "stop_id": 5121945, "stop_desc": "33 AVENUE GABRIEL PERI - 91645", "stop_name": "CARNOT"}, "geometry": {"type": "Point", "coordinates": [2.265241948180558, 48.74122106613091]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2632bd1e746484c9690d2afe61a33704b12955df", "fields": {"departement": "91", "stop_lat": 48.741068274072724, "code_postal": "91645", "stop_lon": 2.265255749665387, "coord": [48.741068274072724, 2.265255749665387], "stop_id": 5121946, "stop_desc": "36 AVENUE GABRIEL PERI - 91645", "stop_name": "CARNOT"}, "geometry": {"type": "Point", "coordinates": [2.265255749665387, 48.741068274072724]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "37180845cb1c73c1656a80eb030d409bb4005dc7", "fields": {"departement": "91", "stop_lat": 48.74958399229917, "code_postal": "91645", "stop_lon": 2.271944840017176, "coord": [48.74958399229917, 2.271944840017176], "stop_id": 5121953, "stop_desc": "BOULEVARD DU MARECHAL FOCH - 91645", "stop_name": "LE CLOS"}, "geometry": {"type": "Point", "coordinates": [2.271944840017176, 48.74958399229917]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b06957ff88934e2a433a0a466e3b0c0a8b27f2c2", "fields": {"departement": "92", "stop_lat": 48.764432544927, "code_postal": "92019", "stop_lon": 2.272184500447193, "coord": [48.764432544927, 2.272184500447193], "stop_id": 5121959, "stop_desc": "AVENUE ROGER SALENGRO - 92019", "stop_name": "PRESIDENT ALLENDE"}, "geometry": {"type": "Point", "coordinates": [2.272184500447193, 48.764432544927]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "187bd21b08b53e7061184ff8f5ab190727b153d0", "fields": {"departement": "92", "stop_lat": 48.766266284732275, "code_postal": "92019", "stop_lon": 2.272494921821088, "coord": [48.766266284732275, 2.272494921821088], "stop_id": 5121961, "stop_desc": "FACE 136 AVENUE ROGER SALENGRO - 92019", "stop_name": "JULES VERNE"}, "geometry": {"type": "Point", "coordinates": [2.272494921821088, 48.766266284732275]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "efd8a476cbf64f786e937317b57139ad66f76536", "fields": {"departement": "92", "stop_lat": 48.78002209425372, "code_postal": "92071", "stop_lon": 2.280556187562754, "coord": [48.78002209425372, 2.280556187562754], "stop_id": 5121971, "stop_desc": "FACE 3 AVENUE DU PLESSIS - 92071", "stop_name": "ROBINSON RER"}, "geometry": {"type": "Point", "coordinates": [2.280556187562754, 48.78002209425372]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ceda45ba715006d4acf878cb36a33802f7fd4e4f", "fields": {"departement": "92", "stop_lat": 48.788527964826656, "code_postal": "92032", "stop_lon": 2.28787851531733, "coord": [48.788527964826656, 2.28787851531733], "stop_id": 5121977, "stop_desc": "4 AVENUE JEAN MOULIN - 92032", "stop_name": "BOULEVARD DE LA REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.28787851531733, 48.788527964826656]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7b4b79a4c32951290354d1f7d050956b954b1bc3", "fields": {"departement": "92", "stop_lat": 48.80622881995387, "code_postal": "92020", "stop_lon": 2.297957992282904, "coord": [48.80622881995387, 2.297957992282904], "stop_id": 5121987, "stop_desc": "AVENUE DE LA REPUBLIQUE - 92020", "stop_name": "PIERRE SEMARD"}, "geometry": {"type": "Point", "coordinates": [2.297957992282904, 48.80622881995387]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "25d8306518d190d7b2cfdb0985ec976f2f6864e4", "fields": {"departement": "92", "stop_lat": 48.822955519969454, "code_postal": "92046", "stop_lon": 2.299565069503205, "coord": [48.822955519969454, 2.299565069503205], "stop_id": 5121991, "stop_desc": "BOULEVARD CHARLES DE GAULLE - 92046", "stop_name": "PLATEAU DE VANVES"}, "geometry": {"type": "Point", "coordinates": [2.299565069503205, 48.822955519969454]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "88bdb45668413448849ec3a0214d52576a21ffb3", "fields": {"departement": "75", "stop_lat": 48.83766430038165, "code_postal": "75114", "stop_lon": 2.322305268313168, "coord": [48.83766430038165, 2.322305268313168], "stop_id": 5122001, "stop_desc": "6 RUE JEAN ZAY - 75114", "stop_name": "JEAN ZAY - MAINE"}, "geometry": {"type": "Point", "coordinates": [2.322305268313168, 48.83766430038165]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "612b6eb0fab290b78dcda9b80c9da3719d93b6fc", "fields": {"departement": "92", "stop_lat": 48.80149106597782, "code_postal": "92020", "stop_lon": 2.294546560730918, "coord": [48.80149106597782, 2.294546560730918], "stop_id": 5122010, "stop_desc": "45 AVENUE DE LA REPUBLIQUE - 92020", "stop_name": "PERROTIN"}, "geometry": {"type": "Point", "coordinates": [2.294546560730918, 48.80149106597782]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "054089fdbe8c25dc85462255c2d6e3ba8d2daa6c", "fields": {"departement": "92", "stop_lat": 48.79796754114928, "code_postal": "92020", "stop_lon": 2.2937467800028233, "coord": [48.79796754114928, 2.2937467800028233], "stop_id": 5122011, "stop_desc": "7-9 RUE DE CHARTRES - 92020", "stop_name": "LIBERTE"}, "geometry": {"type": "Point", "coordinates": [2.2937467800028233, 48.79796754114928]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1b1e49f0992866dc18386fd6d10dfed3fb28b880", "fields": {"departement": "92", "stop_lat": 48.779356696723205, "code_postal": "92019", "stop_lon": 2.279958520425801, "coord": [48.779356696723205, 2.279958520425801], "stop_id": 5122012, "stop_desc": "AVENUE DU PLESSIS - 92019", "stop_name": "ROBINSON RER"}, "geometry": {"type": "Point", "coordinates": [2.279958520425801, 48.779356696723205]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3ecd9ff9fb42228b6db4b4be2e27469f0fdedeb7", "fields": {"departement": "92", "stop_lat": 48.821745681267025, "code_postal": "92046", "stop_lon": 2.313013571294374, "coord": [48.821745681267025, 2.313013571294374], "stop_id": 5122019, "stop_desc": "FACE 37 AV PIERRE BROSSOLETTE - 92046", "stop_name": "DEPINOY"}, "geometry": {"type": "Point", "coordinates": [2.313013571294374, 48.821745681267025]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ffe725d8ee2bcca5dbc281e918be571ba37c1846", "fields": {"departement": "92", "stop_lat": 48.80956277466877, "code_postal": "92020", "stop_lon": 2.2964313994754675, "coord": [48.80956277466877, 2.2964313994754675], "stop_id": 5122026, "stop_desc": "FACE 22-24 R MARCELIN BERTHELOT - 92020", "stop_name": "MARCELIN BERTHELOT"}, "geometry": {"type": "Point", "coordinates": [2.2964313994754675, 48.80956277466877]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "29779105aaacd7c0cbf66377fa8e7bc15e9932fd", "fields": {"departement": "92", "stop_lat": 48.796382211107144, "code_postal": "92020", "stop_lon": 2.285122977025406, "coord": [48.796382211107144, 2.285122977025406], "stop_id": 5122040, "stop_desc": "RUE BOUCICAUT - 92020", "stop_name": "LE PLATEAU"}, "geometry": {"type": "Point", "coordinates": [2.285122977025406, 48.796382211107144]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f6c8ec9d4f703635f9eb5d1df72da3d41b877062", "fields": {"departement": "92", "stop_lat": 48.79101633072165, "code_postal": "92032", "stop_lon": 2.2848699080951174, "coord": [48.79101633072165, 2.2848699080951174], "stop_id": 5122044, "stop_desc": "FACE 32 RUE JEAN JAURES - 92032", "stop_name": "CARNOT - JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.2848699080951174, 48.79101633072165]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b80d996fe7048870e6afd6c0af4b670959b9e53b", "fields": {"departement": "92", "stop_lat": 48.787420753421074, "code_postal": "92032", "stop_lon": 2.2839486012052026, "coord": [48.787420753421074, 2.2839486012052026], "stop_id": 5122046, "stop_desc": "27 RUE D'ESTIENNE D'ORVES - 92032", "stop_name": "ABBE GRANDJEAN"}, "geometry": {"type": "Point", "coordinates": [2.2839486012052026, 48.787420753421074]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "da1fb2e3cb5336204d51541461dff3568e0d969c", "fields": {"departement": "92", "stop_lat": 48.78002209425372, "code_postal": "92071", "stop_lon": 2.280556187562754, "coord": [48.78002209425372, 2.280556187562754], "stop_id": 5122073, "stop_desc": "FACE 3 AVENUE DU PLESSIS - 92071", "stop_name": "ROBINSON RER"}, "geometry": {"type": "Point", "coordinates": [2.280556187562754, 48.78002209425372]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "923cacdb8a4ae424750317905e87595731d7a958", "fields": {"departement": "92", "stop_lat": 48.781884108470564, "code_postal": "92060", "stop_lon": 2.2527955068159655, "coord": [48.781884108470564, 2.2527955068159655], "stop_id": 5122156, "stop_desc": "AVENUE PAUL LANGEVIN - 92060", "stop_name": "PARC TECHNOLOGIQUE"}, "geometry": {"type": "Point", "coordinates": [2.2527955068159655, 48.781884108470564]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6728aceac40da838182a2d1ddab11837a078ed4e", "fields": {"departement": "92", "stop_lat": 48.78134688959043, "code_postal": "92060", "stop_lon": 2.255747661682154, "coord": [48.78134688959043, 2.255747661682154], "stop_id": 5122157, "stop_desc": "12 RUE DU CARREAU - 92060", "stop_name": "LE HAMEAU"}, "geometry": {"type": "Point", "coordinates": [2.255747661682154, 48.78134688959043]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c159609f46d2767f8cbc48f349db6d4b9b46ce20", "fields": {"departement": "92", "stop_lat": 48.78356199872459, "code_postal": "92060", "stop_lon": 2.2777777295145034, "coord": [48.78356199872459, 2.2777777295145034], "stop_id": 5122172, "stop_desc": "FACE 156 AVENUE DE LA RESISTANCE - 92060", "stop_name": "EDMOND ABOUT"}, "geometry": {"type": "Point", "coordinates": [2.2777777295145034, 48.78356199872459]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d5775a619da8ab83bb474c40e2e62807d1acbd5b", "fields": {"departement": "92", "stop_lat": 48.781074441808364, "code_postal": "92071", "stop_lon": 2.282159874265781, "coord": [48.781074441808364, 2.282159874265781], "stop_id": 5122175, "stop_desc": "FACE 19 AVENUE DE LA GARE - 92071", "stop_name": "ROBINSON RER"}, "geometry": {"type": "Point", "coordinates": [2.282159874265781, 48.781074441808364]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "79d2d6aeeed8f06a8cf6a31f5ea0f47a9e4566c1", "fields": {"departement": "92", "stop_lat": 48.77875821431904, "code_postal": "92071", "stop_lon": 2.288268592816922, "coord": [48.77875821431904, 2.288268592816922], "stop_id": 5122179, "stop_desc": "83 RUE HOUDAN - 92071", "stop_name": "MAIRIE DE SCEAUX"}, "geometry": {"type": "Point", "coordinates": [2.288268592816922, 48.77875821431904]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a31e88441716ccbd78d20de1353e8e580bc7ab34", "fields": {"departement": "92", "stop_lat": 48.775693372987476, "code_postal": "92071", "stop_lon": 2.288434669412741, "coord": [48.775693372987476, 2.288434669412741], "stop_id": 5122183, "stop_desc": "8 AVENUE CAUCHY - 92071", "stop_name": "I.U.T."}, "geometry": {"type": "Point", "coordinates": [2.288434669412741, 48.775693372987476]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "48e3169edbe5ac3f54bf626a16bb3bd58f21e20b", "fields": {"departement": "92", "stop_lat": 48.76223027618658, "code_postal": "92019", "stop_lon": 2.290989651202657, "coord": [48.76223027618658, 2.290989651202657], "stop_id": 5122187, "stop_desc": "AVENUE SULLY PRUDHOMME - 92019", "stop_name": "CARREFOUR DE L'EUROPE"}, "geometry": {"type": "Point", "coordinates": [2.290989651202657, 48.76223027618658]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bd581e48c73781b7983d4d9630ccbc12ed49599b", "fields": {"departement": "75", "stop_lat": 48.8237688886814, "code_postal": "75114", "stop_lon": 2.3184299973037343, "coord": [48.8237688886814, 2.3184299973037343], "stop_id": 5137968, "stop_desc": "AVENUE ERNEST REYER - 75114", "stop_name": "JEAN MOULIN"}, "geometry": {"type": "Point", "coordinates": [2.3184299973037343, 48.8237688886814]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4053d336f903a767d4f00e94616ad7740e1717a7", "fields": {"departement": "92", "stop_lat": 48.821745681267025, "code_postal": "92046", "stop_lon": 2.313013571294374, "coord": [48.821745681267025, 2.313013571294374], "stop_id": 5137969, "stop_desc": "FACE 37 AV PIERRE BROSSOLETTE - 92046", "stop_name": "DEPINOY"}, "geometry": {"type": "Point", "coordinates": [2.313013571294374, 48.821745681267025]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b8da3e35a02ad1def0da5efa5f718be65b44e6a1", "fields": {"departement": "92", "stop_lat": 48.81750220253278, "code_postal": "92046", "stop_lon": 2.3073674686478984, "coord": [48.81750220253278, 2.3073674686478984], "stop_id": 5137971, "stop_desc": "102 AVENUE PIERRE BROSSOLETTE - 92046", "stop_name": "12 FEVRIER 1934"}, "geometry": {"type": "Point", "coordinates": [2.3073674686478984, 48.81750220253278]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "597316828cf3e55817c9ef6a9e43980b2fab2880", "fields": {"departement": "92", "stop_lat": 48.80222528666044, "code_postal": "92007", "stop_lon": 2.3186282891522434, "coord": [48.80222528666044, 2.3186282891522434], "stop_id": 5137985, "stop_desc": "34 AVENUE LOUIS PASTEUR - 92007", "stop_name": "MARTYRS DE CHATEAUBRIANT"}, "geometry": {"type": "Point", "coordinates": [2.3186282891522434, 48.80222528666044]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f615fb69fbfb6d2b7efa0a99fa2bb10627990308", "fields": {"departement": "92", "stop_lat": 48.79806369600551, "code_postal": "92007", "stop_lon": 2.3172693071635835, "coord": [48.79806369600551, 2.3172693071635835], "stop_id": 5137987, "stop_desc": "FACE 12 AVENUE LOUIS PASTEUR - 92007", "stop_name": "PASTEUR - MEUNIERS"}, "geometry": {"type": "Point", "coordinates": [2.3172693071635835, 48.79806369600551]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "82208d3d0bcca5ecdec64f09550b1ac644c3604e", "fields": {"departement": "92", "stop_lat": 48.789758358425495, "code_postal": "92007", "stop_lon": 2.31432074503127, "coord": [48.789758358425495, 2.31432074503127], "stop_id": 5138000, "stop_desc": "AVENUE PAUL VAILLANT-COUTURIER - 92007", "stop_name": "PORT GALAND"}, "geometry": {"type": "Point", "coordinates": [2.31432074503127, 48.789758358425495]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f65d2d73dc75be15a09208588f45e3e84c8c8008", "fields": {"departement": "92", "stop_lat": 48.7928684616351, "code_postal": "92007", "stop_lon": 2.315870157613037, "coord": [48.7928684616351, 2.315870157613037], "stop_id": 5138001, "stop_desc": "31 AVENUE PAUL VAILLANT COUTURIER - 92007", "stop_name": "LES BLAINS"}, "geometry": {"type": "Point", "coordinates": [2.315870157613037, 48.7928684616351]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "05a931da069c7d3457dd5d1d7064e11ce81cbe2d", "fields": {"departement": "92", "stop_lat": 48.79701764965895, "code_postal": "92007", "stop_lon": 2.3023047897216844, "coord": [48.79701764965895, 2.3023047897216844], "stop_id": 5138008, "stop_desc": "AVENUE GABRIEL PERI - 92007", "stop_name": "ROSENBERG"}, "geometry": {"type": "Point", "coordinates": [2.3023047897216844, 48.79701764965895]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e4bad224d1cc9985e9547a429115e229dcd6f589", "fields": {"departement": "92", "stop_lat": 48.79731360245945, "code_postal": "92007", "stop_lon": 2.300168676057517, "coord": [48.79731360245945, 2.300168676057517], "stop_id": 5138009, "stop_desc": "10 AVENUE JEAN-BAPTISTE FORTIN - 92007", "stop_name": "RUE FROIDE"}, "geometry": {"type": "Point", "coordinates": [2.300168676057517, 48.79731360245945]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5309fa9a624ce5db47bf98e8f82a411278a3f42b", "fields": {"departement": "92", "stop_lat": 48.81128070086906, "code_postal": "92020", "stop_lon": 2.3002947806132377, "coord": [48.81128070086906, 2.3002947806132377], "stop_id": 5138016, "stop_desc": "204 AVENUE DE PARIS - 92020", "stop_name": "CHATILLON-MONTROUGE"}, "geometry": {"type": "Point", "coordinates": [2.3002947806132377, 48.81128070086906]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e9fea6da4a98062ff47eb6c48cac93fb8cf362ba", "fields": {"departement": "92", "stop_lat": 48.813375447567154, "code_postal": "92049", "stop_lon": 2.302280168230667, "coord": [48.813375447567154, 2.302280168230667], "stop_id": 5138017, "stop_desc": "189 AVENUE PIERRE BROSSOLETTE - 92049", "stop_name": "ETIENNE DOLET"}, "geometry": {"type": "Point", "coordinates": [2.302280168230667, 48.813375447567154]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "191e43d9318c94ebbfdddbffe76c16682dfdff50", "fields": {"departement": "92", "stop_lat": 48.82193457809965, "code_postal": "92049", "stop_lon": 2.3137893102917633, "coord": [48.82193457809965, 2.3137893102917633], "stop_id": 5138021, "stop_desc": "33 AVENUE PIERRE BROSSOLETTE - 92049", "stop_name": "DEPINOY"}, "geometry": {"type": "Point", "coordinates": [2.3137893102917633, 48.82193457809965]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9aaf8d6ef7388a00909fad082009eff120e32bd5", "fields": {"departement": "75", "stop_lat": 48.82366103662885, "code_postal": "75114", "stop_lon": 2.3184300364197443, "coord": [48.82366103662885, 2.3184300364197443], "stop_id": 5138022, "stop_desc": "AVENUE ERNEST REYER - 75114", "stop_name": "JEAN MOULIN"}, "geometry": {"type": "Point", "coordinates": [2.3184300364197443, 48.82366103662885]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7f5675bda52a54fab5cba07912d574a35e8c26f3", "fields": {"departement": "75", "stop_lat": 48.87590663728741, "code_postal": "75109", "stop_lon": 2.3318591135946556, "coord": [48.87590663728741, 2.3318591135946556], "stop_id": 5138029, "stop_desc": "57 R DE LA CHAUSSEE D'ANTIN - 75109", "stop_name": "TRINITE"}, "geometry": {"type": "Point", "coordinates": [2.3318591135946556, 48.87590663728741]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "036abb61802c7f2616e4fa434ac29a3ce66c8ef5", "fields": {"departement": "75", "stop_lat": 48.86683849717729, "code_postal": "75101", "stop_lon": 2.3337536247087347, "coord": [48.86683849717729, 2.3337536247087347], "stop_id": 5138033, "stop_desc": "29 AVENUE DE L'OPERA - 75101", "stop_name": "PYRAMIDES"}, "geometry": {"type": "Point", "coordinates": [2.3337536247087347, 48.86683849717729]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ba4d01db90906d94fd7ab9c679c86f35ce5e9496", "fields": {"departement": "75", "stop_lat": 48.860772008011736, "code_postal": "75101", "stop_lon": 2.333508852548907, "coord": [48.860772008011736, 2.333508852548907], "stop_id": 5138035, "stop_desc": "PLACE DU CARROUSEL - 75101", "stop_name": "MUSEE DU LOUVRE"}, "geometry": {"type": "Point", "coordinates": [2.333508852548907, 48.860772008011736]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8206a0057b58138b7aa59ccacdb2b4cb66f555a1", "fields": {"departement": "75", "stop_lat": 48.82929741932709, "code_postal": "75114", "stop_lon": 2.3279570462264916, "coord": [48.82929741932709, 2.3279570462264916], "stop_id": 5138050, "stop_desc": "72 AVENUE DU GENERAL LECLERC - 75114", "stop_name": "ALESIA - MAINE"}, "geometry": {"type": "Point", "coordinates": [2.3279570462264916, 48.82929741932709]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8c5b4480d12b0eb1172cd7e2d652824a8c33beda", "fields": {"departement": "75", "stop_lat": 48.82425513830218, "code_postal": "75114", "stop_lon": 2.3255759172850463, "coord": [48.82425513830218, 2.3255759172850463], "stop_id": 5138052, "stop_desc": "130 AVENUE DU GENERAL LECLERC - 75114", "stop_name": "PORTE D'ORLEANS"}, "geometry": {"type": "Point", "coordinates": [2.3255759172850463, 48.82425513830218]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a598007a7f92b1d6febb0d218426be8434117fa7", "fields": {"departement": "75", "stop_lat": 48.82094753551562, "code_postal": "75114", "stop_lon": 2.3242564192095085, "coord": [48.82094753551562, 2.3242564192095085], "stop_id": 5138053, "stop_desc": "RUE DE LA LEGION ETRANGERE - 75114", "stop_name": "PORTE D'ORLEANS - ERNEST REYER"}, "geometry": {"type": "Point", "coordinates": [2.3242564192095085, 48.82094753551562]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "456a3a89bdde5624e9df2d25ed43138085dcc8aa", "fields": {"departement": "92", "stop_lat": 48.81911390513648, "code_postal": "92049", "stop_lon": 2.3230319546022735, "coord": [48.81911390513648, 2.3230319546022735], "stop_id": 5138054, "stop_desc": "44 AVENUE HENRI GINOUX - 92049", "stop_name": "GABRIELLE DE GUERCHY"}, "geometry": {"type": "Point", "coordinates": [2.3230319546022735, 48.81911390513648]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b83c24590822c4dc73b24c4a7015553dc5f58e6a", "fields": {"departement": "92", "stop_lat": 48.81109318574074, "code_postal": "92049", "stop_lon": 2.3044862279926117, "coord": [48.81109318574074, 2.3044862279926117], "stop_id": 5138060, "stop_desc": "AVENUE MARX DORMOY - 92049", "stop_name": "CHATILLON-MONTROUGE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.3044862279926117, 48.81109318574074]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4158962fd3a268f51d5770b6988e01b0207e8fe0", "fields": {"departement": "75", "stop_lat": 48.88313213989916, "code_postal": "75109", "stop_lon": 2.327729358929872, "coord": [48.88313213989916, 2.327729358929872], "stop_id": 5138160, "stop_desc": "86 RUE DE CLICHY - 75109", "stop_name": "PLACE DE CLICHY"}, "geometry": {"type": "Point", "coordinates": [2.327729358929872, 48.88313213989916]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4180a9857223ed169fbf146cf78a83bbf1936d34", "fields": {"departement": "75", "stop_lat": 48.82929741932709, "code_postal": "75114", "stop_lon": 2.3279570462264916, "coord": [48.82929741932709, 2.3279570462264916], "stop_id": 5138198, "stop_desc": "72 AVENUE DU GENERAL LECLERC - 75114", "stop_name": "ALESIA - MAINE"}, "geometry": {"type": "Point", "coordinates": [2.3279570462264916, 48.82929741932709]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1d2edff792d3762c20e310b3cebe09d9eb77cbc3", "fields": {"departement": "75", "stop_lat": 48.82735598995444, "code_postal": "75114", "stop_lon": 2.326759500564941, "coord": [48.82735598995444, 2.326759500564941], "stop_id": 5138200, "stop_desc": "83-85 AVENUE DU GENERAL LECLERC - 75114", "stop_name": "ALESIA - GENERAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.326759500564941, 48.82735598995444]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8642a14423996bb9ffaa7ba3a8c08e1b695d4d2c", "fields": {"departement": "75", "stop_lat": 48.82094753551562, "code_postal": "75114", "stop_lon": 2.3242564192095085, "coord": [48.82094753551562, 2.3242564192095085], "stop_id": 5138203, "stop_desc": "RUE DE LA LEGION ETRANGERE - 75114", "stop_name": "PORTE D'ORLEANS - ERNEST REYER"}, "geometry": {"type": "Point", "coordinates": [2.3242564192095085, 48.82094753551562]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a215f26f225b8ab0a7bb41677775521c5b282809", "fields": {"departement": "92", "stop_lat": 48.81911390513648, "code_postal": "92049", "stop_lon": 2.3230319546022735, "coord": [48.81911390513648, 2.3230319546022735], "stop_id": 5138205, "stop_desc": "44 AVENUE HENRI GINOUX - 92049", "stop_name": "GABRIELLE DE GUERCHY"}, "geometry": {"type": "Point", "coordinates": [2.3230319546022735, 48.81911390513648]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "80251a80ce59af2175b8043de2a2faab402b5833", "fields": {"departement": "92", "stop_lat": 48.81735110896811, "code_postal": "92049", "stop_lon": 2.315138752600882, "coord": [48.81735110896811, 2.315138752600882], "stop_id": 5138208, "stop_desc": "12 PLACE DES ETATS-UNIS - 92049", "stop_name": "PLACE DES ETATS-UNIS"}, "geometry": {"type": "Point", "coordinates": [2.315138752600882, 48.81735110896811]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "087a994a7b99b1b1e7866cf7f9253891e7f3d549", "fields": {"departement": "92", "stop_lat": 48.813169841441436, "code_postal": "92049", "stop_lon": 2.306294875082923, "coord": [48.813169841441436, 2.306294875082923], "stop_id": 5138212, "stop_desc": "FACE 118 AVENUE JEAN JAURES - 92049", "stop_name": "JULES GUESDE"}, "geometry": {"type": "Point", "coordinates": [2.306294875082923, 48.813169841441436]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1af5454bdc27f9a22dbb771b86a06d6a3c9bf85d", "fields": {"departement": "92", "stop_lat": 48.81109318574074, "code_postal": "92049", "stop_lon": 2.3044862279926117, "coord": [48.81109318574074, 2.3044862279926117], "stop_id": 5138215, "stop_desc": "AVENUE MARX DORMOY - 92049", "stop_name": "CHATILLON-MONTROUGE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.3044862279926117, 48.81109318574074]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9beb11852666810a4c9d4f0468aaa5795b9a34ce", "fields": {"departement": "92", "stop_lat": 48.81551808357888, "code_postal": "92049", "stop_lon": 2.317834179108738, "coord": [48.81551808357888, 2.317834179108738], "stop_id": 5138217, "stop_desc": "77 AVENUE DE LA REPUBLIQUE - 92049", "stop_name": "VERDIER - REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.317834179108738, 48.81551808357888]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d5d0e1f6543488212ea8b3fca426788d8bbef667", "fields": {"departement": "75", "stop_lat": 48.84992381627841, "code_postal": "75106", "stop_lon": 2.3273949975521484, "coord": [48.84992381627841, 2.3273949975521484], "stop_id": 5138219, "stop_desc": "59 BOULEVARD RASPAIL - 75106", "stop_name": "RUE DU CHERCHE MIDI"}, "geometry": {"type": "Point", "coordinates": [2.3273949975521484, 48.84992381627841]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2f4e49e03c9f943b74ac83f9d0f9efffd567efe2", "fields": {"departement": "75", "stop_lat": 48.86405236740912, "code_postal": "75101", "stop_lon": 2.3324460951752197, "coord": [48.86405236740912, 2.3324460951752197], "stop_id": 5138221, "stop_desc": "4 RUE DES PYRAMIDES - 75101", "stop_name": "PYRAMIDES - SAINT-HONORE"}, "geometry": {"type": "Point", "coordinates": [2.3324460951752197, 48.86405236740912]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "feb08603a9bfb5558e5b6b8531619a049678b85a", "fields": {"departement": "75", "stop_lat": 48.880319226531334, "code_postal": "75109", "stop_lon": 2.3290107509694993, "coord": [48.880319226531334, 2.3290107509694993], "stop_id": 5138225, "stop_desc": "48 RUE DE CLICHY - 75109", "stop_name": "LIEGE"}, "geometry": {"type": "Point", "coordinates": [2.3290107509694993, 48.880319226531334]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "acfe3d9b9009ec7f4695ffc7086b26b2a7739a16", "fields": {"departement": "75", "stop_lat": 48.88741043842036, "code_postal": "75118", "stop_lon": 2.3371865412396517, "coord": [48.88741043842036, 2.3371865412396517], "stop_id": 5144685, "stop_desc": "RUE GIRARDON - 75118", "stop_name": "MOULIN DE LA GALETTE"}, "geometry": {"type": "Point", "coordinates": [2.3371865412396517, 48.88741043842036]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "49a82aaaf6ce838e799360bcce3d5c27bbd9659f", "fields": {"departement": "75", "stop_lat": 48.82548634462779, "code_postal": "75113", "stop_lon": 2.349941003573772, "coord": [48.82548634462779, 2.349941003573772], "stop_id": 5150143, "stop_desc": "56 RUE BOBILLOT - 75113", "stop_name": "BOBILLOT - TOLBIAC"}, "geometry": {"type": "Point", "coordinates": [2.349941003573772, 48.82548634462779]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d1109b936c047c81c5c1845bdb60c7e5703676dd", "fields": {"departement": "92", "stop_lat": 48.877790442841146, "code_postal": "92063", "stop_lon": 2.195316025714653, "coord": [48.877790442841146, 2.195316025714653], "stop_id": 5150151, "stop_desc": "138 BOULEVARD EDMOND ROSTAND - 92063", "stop_name": "FABRE D'EGLANTINE"}, "geometry": {"type": "Point", "coordinates": [2.195316025714653, 48.877790442841146]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "35198e643ad96f48acd629d404ae516b9ea598ce", "fields": {"departement": "92", "stop_lat": 48.93558066696842, "code_postal": "92036", "stop_lon": 2.271328331717231, "coord": [48.93558066696842, 2.271328331717231], "stop_id": 5150159, "stop_desc": "ROUTE DES MERCIERES - 92036", "stop_name": "MERCIERES"}, "geometry": {"type": "Point", "coordinates": [2.271328331717231, 48.93558066696842]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f9ba22d23654b990162fdbb0ea1fbdd56cb28857", "fields": {"departement": "92", "stop_lat": 48.89160141473085, "code_postal": "92062", "stop_lon": 2.2372019748450263, "coord": [48.89160141473085, 2.2372019748450263], "stop_id": 5150163, "stop_desc": "PISTE GARE ROUTIERE - 92062", "stop_name": "LA DEFENSE-METRO-RER-TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.2372019748450263, 48.89160141473085]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "45d668d4b3148e62ac8d3e08a062f7c2c49df091", "fields": {"departement": "92", "stop_lat": 48.89142218457634, "code_postal": "92062", "stop_lon": 2.2378156376439975, "coord": [48.89142218457634, 2.2378156376439975], "stop_id": 5150164, "stop_desc": "PISTE GARE ROUTIERE - 92062", "stop_name": "LA DEFENSE-METRO-RER-TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.2378156376439975, 48.89142218457634]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ff7aefb05605fb5f2ea91d083c7f03b9ccb39527", "fields": {"departement": "92", "stop_lat": 48.936126652714115, "code_postal": "92036", "stop_lon": 2.2674399450981904, "coord": [48.936126652714115, 2.2674399450981904], "stop_id": 5150167, "stop_desc": "62 ROUTE PRINCIPALE DU PORT - 92036", "stop_name": "DIRECTION DU PORT"}, "geometry": {"type": "Point", "coordinates": [2.2674399450981904, 48.936126652714115]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4fb2e4d0b8a29f8f44a66efb9cc70f80a09aea60", "fields": {"departement": "92", "stop_lat": 48.9372103888177, "code_postal": "92036", "stop_lon": 2.277205660356922, "coord": [48.9372103888177, 2.277205660356922], "stop_id": 5150169, "stop_desc": "RUE ALFRED SUQUET - 92036", "stop_name": "CENTRE DE VIE"}, "geometry": {"type": "Point", "coordinates": [2.277205660356922, 48.9372103888177]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2db554d305b51312693ccb797925ddee845b9e5e", "fields": {"departement": "92", "stop_lat": 48.893276528327654, "code_postal": "92050", "stop_lon": 2.212338071568413, "coord": [48.893276528327654, 2.212338071568413], "stop_id": 5150175, "stop_desc": "4 AVENUE PABLO PICASSO - 92050", "stop_name": "JOLIOT-CURIE - COURBEVOIE"}, "geometry": {"type": "Point", "coordinates": [2.212338071568413, 48.893276528327654]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "45c9bb3c247ed593ac754302b57c1331188a0760", "fields": {"departement": "92", "stop_lat": 48.893923902710036, "code_postal": "92050", "stop_lon": 2.2126227396461546, "coord": [48.893923902710036, 2.2126227396461546], "stop_id": 5150178, "stop_desc": "FACE 123 AV FREDERIC ET IRENE JOLIOT CURIE - 92050", "stop_name": "JOLIOT-CURIE - COURBEVOIE"}, "geometry": {"type": "Point", "coordinates": [2.2126227396461546, 48.893923902710036]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5b5c5e8f3618f289712605c208dff06eb0a29777", "fields": {"departement": "92", "stop_lat": 48.893923902710036, "code_postal": "92050", "stop_lon": 2.2126227396461546, "coord": [48.893923902710036, 2.2126227396461546], "stop_id": 5150180, "stop_desc": "FACE 123 AV FREDERIC ET IRENE JOLIOT CURIE - 92050", "stop_name": "JOLIOT-CURIE - COURBEVOIE"}, "geometry": {"type": "Point", "coordinates": [2.2126227396461546, 48.893923902710036]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4e9efbbbd0f12dcd279856c7978c7eeb2df5dc93", "fields": {"departement": "93", "stop_lat": 48.92054457945639, "code_postal": "93066", "stop_lon": 2.354437194918939, "coord": [48.92054457945639, 2.354437194918939], "stop_id": 5150183, "stop_desc": "0 AVENUE DES FRUITIERS - 93066", "stop_name": "ZAC LANDY NORD"}, "geometry": {"type": "Point", "coordinates": [2.354437194918939, 48.92054457945639]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5aa691e593957121e1da30e512a75a7f368e1d6c", "fields": {"departement": "93", "stop_lat": 48.91541304916659, "code_postal": "93066", "stop_lon": 2.354190052608104, "coord": [48.91541304916659, 2.354190052608104], "stop_id": 5150188, "stop_desc": "FACE 99 RUE DU LANDY - 93066", "stop_name": "LANDY - FRUITIERS"}, "geometry": {"type": "Point", "coordinates": [2.354190052608104, 48.91541304916659]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a88bd8560910825756d6ca83caa4af49bdbeeef6", "fields": {"departement": "93", "stop_lat": 48.91835942402279, "code_postal": "93066", "stop_lon": 2.361963729420021, "coord": [48.91835942402279, 2.361963729420021], "stop_id": 5150191, "stop_desc": "AVENUE DU STADE DE FRANCE - 93066", "stop_name": "LA PLAINE - STADE DE FRANCE RER"}, "geometry": {"type": "Point", "coordinates": [2.361963729420021, 48.91835942402279]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9041dd7add161d2b83fe3ce4c44f43eb11673376", "fields": {"departement": "93", "stop_lat": 48.92612502424029, "code_postal": "93066", "stop_lon": 2.357289468620289, "coord": [48.92612502424029, 2.357289468620289], "stop_id": 5150199, "stop_desc": "380 AVENUE DU PRESIDENT WILSON - 93066", "stop_name": "PONT DU CANAL"}, "geometry": {"type": "Point", "coordinates": [2.357289468620289, 48.92612502424029]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3a87725acd09e1418ae8fb49d5ae5e0a14d31287", "fields": {"departement": "93", "stop_lat": 48.94511502293629, "code_postal": "93066", "stop_lon": 2.3518531063908696, "coord": [48.94511502293629, 2.3518531063908696], "stop_id": 5150218, "stop_desc": "13 AVENUE DU COLONEL FABIEN - 93066", "stop_name": "STADE AUGUSTE DELAUNE"}, "geometry": {"type": "Point", "coordinates": [2.3518531063908696, 48.94511502293629]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b6463081fc04956aa5a5bd5fc2b0e1717950c363", "fields": {"departement": "93", "stop_lat": 48.95314107920405, "code_postal": "93031", "stop_lon": 2.3368043817358464, "coord": [48.95314107920405, 2.3368043817358464], "stop_id": 5150225, "stop_desc": "FACE 133 ROUTE DE SAINT-LEU - 93031", "stop_name": "J.-B. CLEMENT - CARNOT"}, "geometry": {"type": "Point", "coordinates": [2.3368043817358464, 48.95314107920405]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6557b7d206f894e2d36062a11ca773df0a705ab0", "fields": {"departement": "93", "stop_lat": 48.9544351422254, "code_postal": "93079", "stop_lon": 2.3348530149930027, "coord": [48.9544351422254, 2.3348530149930027], "stop_id": 5150226, "stop_desc": "FACE 163 ROUTE DE SAINT-LEU - 93079", "stop_name": "YSER"}, "geometry": {"type": "Point", "coordinates": [2.3348530149930027, 48.9544351422254]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0295a54d911e2ed453f93941a2222aec75603e56", "fields": {"departement": "95", "stop_lat": 48.95631326835775, "code_postal": "95427", "stop_lon": 2.3319462579160413, "coord": [48.95631326835775, 2.3319462579160413], "stop_id": 5150228, "stop_desc": "209 ROUTE DE SAINT-LEU - 95427", "stop_name": "SABLONS"}, "geometry": {"type": "Point", "coordinates": [2.3319462579160413, 48.95631326835775]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9ed5e3b54b24353c3444e4558d1e91ea6f2a3af8", "fields": {"departement": "95", "stop_lat": 48.97215571797996, "code_postal": "95197", "stop_lon": 2.3210515209843283, "coord": [48.97215571797996, 2.3210515209843283], "stop_id": 5150240, "stop_desc": "AVENUE MATHIEU CHAZOTTE - 95197", "stop_name": "MARCHE DES MORTEFONTAINES"}, "geometry": {"type": "Point", "coordinates": [2.3210515209843283, 48.97215571797996]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "024b1a8625fb00cb31ebbefd8156f8ada79c1844", "fields": {"departement": "95", "stop_lat": 48.97215571797996, "code_postal": "95197", "stop_lon": 2.3210515209843283, "coord": [48.97215571797996, 2.3210515209843283], "stop_id": 5150241, "stop_desc": "AVENUE MATHIEU CHAZOTTE - 95197", "stop_name": "MARCHE DES MORTEFONTAINES"}, "geometry": {"type": "Point", "coordinates": [2.3210515209843283, 48.97215571797996]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2e8eafc82bfe44cf5c782ca03e081980bd62c648", "fields": {"departement": "92", "stop_lat": 48.78691889542465, "code_postal": "92014", "stop_lon": 2.3184297505046834, "coord": [48.78691889542465, 2.3184297505046834], "stop_id": 5150248, "stop_desc": "9 AVENUE DU GENERAL LECLERC - 92014", "stop_name": "PLACE DE LA RESISTANCE - CHARLES DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.3184297505046834, 48.78691889542465]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bc4efbaabc5f0b1934576dd4f9b91091be90eb62", "fields": {"departement": "93", "stop_lat": 48.94830448312007, "code_postal": "93066", "stop_lon": 2.3575982253927537, "coord": [48.94830448312007, 2.3575982253927537], "stop_id": 5150252, "stop_desc": "28 AVENUE ROGER SEMAT - 93066", "stop_name": "GUYNEMER"}, "geometry": {"type": "Point", "coordinates": [2.3575982253927537, 48.94830448312007]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "664bb2e3e740fb931096ff6edd27a0d92e95d88a", "fields": {"departement": "93", "stop_lat": 48.94811582811757, "code_postal": "93066", "stop_lon": 2.3572024701112992, "coord": [48.94811582811757, 2.3572024701112992], "stop_id": 5150253, "stop_desc": "11 AVENUE ROGER SEMAT - 93066", "stop_name": "GUYNEMER"}, "geometry": {"type": "Point", "coordinates": [2.3572024701112992, 48.94811582811757]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "26150b70130973e735e3a22555f1794f61b391cf", "fields": {"departement": "93", "stop_lat": 48.962810553011046, "code_postal": "93079", "stop_lon": 2.344051412749311, "coord": [48.962810553011046, 2.344051412749311], "stop_id": 5150261, "stop_desc": "39 RUE ROGER SALENGRO - 93079", "stop_name": "EGLISE DE VILLETANEUSE"}, "geometry": {"type": "Point", "coordinates": [2.344051412749311, 48.962810553011046]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f762e783c2e2ce6bd57af6f6170e2786d2c45932", "fields": {"departement": "93", "stop_lat": 48.96723193444394, "code_postal": "93079", "stop_lon": 2.344693506684838, "coord": [48.96723193444394, 2.344693506684838], "stop_id": 5150264, "stop_desc": "110 RUE MAURICE GRANDCOING - 93079", "stop_name": "JEAN MISSOUT"}, "geometry": {"type": "Point", "coordinates": [2.344693506684838, 48.96723193444394]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5423b6fec3490dee22c68a3cc11bd992aa37ad36", "fields": {"departement": "95", "stop_lat": 48.97110494803874, "code_postal": "95427", "stop_lon": 2.347506012670217, "coord": [48.97110494803874, 2.347506012670217], "stop_id": 5150266, "stop_desc": "5-7 RUE DE VILLETANEUSE - 95427", "stop_name": "ROBERT FOULON"}, "geometry": {"type": "Point", "coordinates": [2.347506012670217, 48.97110494803874]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b2ffd324a40e52d971463d821342fc4e9b9b35ee", "fields": {"departement": "95", "stop_lat": 48.971850808904136, "code_postal": "95427", "stop_lon": 2.347792819586987, "coord": [48.971850808904136, 2.347792819586987], "stop_id": 5150267, "stop_desc": "6 RUE DE VILLETANEUSE - 95427", "stop_name": "ROBERT FOULON"}, "geometry": {"type": "Point", "coordinates": [2.347792819586987, 48.971850808904136]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b8b865d70d336e1b5b26f08e1ffee701b544e170", "fields": {"departement": "95", "stop_lat": 48.97514933537442, "code_postal": "95197", "stop_lon": 2.3384969522336485, "coord": [48.97514933537442, 2.3384969522336485], "stop_id": 5150270, "stop_desc": "19 AVENUE DE LA GARE - 95197", "stop_name": "GARE DE DEUIL - MONTMAGNY"}, "geometry": {"type": "Point", "coordinates": [2.3384969522336485, 48.97514933537442]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "365cc2387e9349fd335e04a0bbd86d5f26ca68f4", "fields": {"departement": "95", "stop_lat": 48.975804827233716, "code_postal": "95197", "stop_lon": 2.32597856206853, "coord": [48.975804827233716, 2.32597856206853], "stop_id": 5150273, "stop_desc": "FACE 14 RUE CHARLES DE GAULLE - 95197", "stop_name": "EGLISE DE DEUIL-LA-BARRE"}, "geometry": {"type": "Point", "coordinates": [2.32597856206853, 48.975804827233716]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d1f7b35918e86f392014dedab688d0564e32dba3", "fields": {"departement": "94", "stop_lat": 48.759448634048056, "code_postal": "94073", "stop_lon": 2.3693244252130907, "coord": [48.759448634048056, 2.3693244252130907], "stop_id": 3686365, "stop_desc": "ROUTE DE THIAIS - 94073", "stop_name": "LE COR DE CHASSE"}, "geometry": {"type": "Point", "coordinates": [2.3693244252130907, 48.759448634048056]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "30fe498ab811b5e5b8bfd47deb73b5a51424ea91", "fields": {"departement": "94", "stop_lat": 48.765957686542926, "code_postal": "94073", "stop_lon": 2.389886111195227, "coord": [48.765957686542926, 2.389886111195227], "stop_id": 3686355, "stop_desc": "FACE 22 AVENUE LEON MARCHAND - 94073", "stop_name": "PERREUX"}, "geometry": {"type": "Point", "coordinates": [2.389886111195227, 48.765957686542926]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c822bde9ad0d602ce500ff7f620325a89c5aebd7", "fields": {"departement": "94", "stop_lat": 48.770277053995144, "code_postal": "94022", "stop_lon": 2.4136316773726927, "coord": [48.770277053995144, 2.4136316773726927], "stop_id": 3686341, "stop_desc": "38 AVENUE D'ALFORTVILLE - 94022", "stop_name": "JEAN VILAR"}, "geometry": {"type": "Point", "coordinates": [2.4136316773726927, 48.770277053995144]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a78f76d241f0962f784fc225fdc90be30d467f26", "fields": {"departement": "94", "stop_lat": 48.759647325903956, "code_postal": "94021", "stop_lon": 2.3655724136005585, "coord": [48.759647325903956, 2.3655724136005585], "stop_id": 3686366, "stop_desc": "RUE DE THIAIS - 94021", "stop_name": "PORTE DE THIAIS"}, "geometry": {"type": "Point", "coordinates": [2.3655724136005585, 48.759647325903956]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9892d5b2d21966c4c113b5bf32bac960892973b0", "fields": {"departement": "94", "stop_lat": 48.80031446208389, "code_postal": "94002", "stop_lon": 2.42696828289225, "coord": [48.80031446208389, 2.42696828289225], "stop_id": 3686392, "stop_desc": "R JOFFRIN - 94002", "stop_name": "CAMELIAS"}, "geometry": {"type": "Point", "coordinates": [2.42696828289225, 48.80031446208389]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "22aba67303b73dd1e42b91f6e91c3a6adf05d08a", "fields": {"departement": "92", "stop_lat": 48.819317119931796, "code_postal": "92046", "stop_lon": 2.3050662799255197, "coord": [48.819317119931796, 2.3050662799255197], "stop_id": 3442554, "stop_desc": "156 BOULEVARD GABRIEL PERI - 92046", "stop_name": "PIERRE LAROUSSE - CARREFOUR DU 8 MAI 1945"}, "geometry": {"type": "Point", "coordinates": [2.3050662799255197, 48.819317119931796]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fb6f901df790e628ad46290d408b7ae83b3b47ba", "fields": {"departement": "92", "stop_lat": 48.82234784339921, "code_postal": "92075", "stop_lon": 2.2850016190088835, "coord": [48.82234784339921, 2.2850016190088835], "stop_id": 3442563, "stop_desc": "FACE 13 BOULEVARD DU LYCEE - 92075", "stop_name": "PLACE DU MARECHAL DE LATTRE DE TASSIGNY"}, "geometry": {"type": "Point", "coordinates": [2.2850016190088835, 48.82234784339921]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e0d15c37a2a9141f1e963bd8911f22330daa2fb5", "fields": {"departement": "92", "stop_lat": 48.82108197471381, "code_postal": "92075", "stop_lon": 2.2882830919650754, "coord": [48.82108197471381, 2.2882830919650754], "stop_id": 3442562, "stop_desc": "32 RUE ANTOINE FRATACCI - 92075", "stop_name": "MAIRIE DE VANVES - CENTRE ADMINISTRATIF"}, "geometry": {"type": "Point", "coordinates": [2.2882830919650754, 48.82108197471381]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "627365329e7e31ca28a1b4b3103f92286935a1e6", "fields": {"departement": "92", "stop_lat": 48.83757621146484, "code_postal": "92012", "stop_lon": 2.234787360382873, "coord": [48.83757621146484, 2.234787360382873], "stop_id": 3442586, "stop_desc": "73 AVENUE ANDRE MORIZET - 92012", "stop_name": "ANCIENNE MAIRIE DE BOULOGNE-BILLANCOURT"}, "geometry": {"type": "Point", "coordinates": [2.234787360382873, 48.83757621146484]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aeae9a6a5d92fa9e0d9d80256f46cc9543755ba2", "fields": {"departement": "92", "stop_lat": 48.83184772486699, "code_postal": "92012", "stop_lon": 2.2534357083714203, "coord": [48.83184772486699, 2.2534357083714203], "stop_id": 3442578, "stop_desc": "FACE 28 BOULEVARD DE LA REPUBLIQUE - 92012", "stop_name": "RUE DU POINT DU JOUR"}, "geometry": {"type": "Point", "coordinates": [2.2534357083714203, 48.83184772486699]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0922199cb915ccd78471f6d1677e0448c436fbbd", "fields": {"departement": "93", "stop_lat": 48.89530457817166, "code_postal": "93055", "stop_lon": 2.425347152348767, "coord": [48.89530457817166, 2.425347152348767], "stop_id": 3446767, "stop_desc": "AVENUE JEAN LOLIVE - 93055", "stop_name": "RAYMOND QUENEAU-METRO"}, "geometry": {"type": "Point", "coordinates": [2.425347152348767, 48.89530457817166]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fe5f7de44ca439c0a46c64f6da7c43dd9404e763", "fields": {"departement": "93", "stop_lat": 48.894382655105986, "code_postal": "93055", "stop_lon": 2.420111650565813, "coord": [48.894382655105986, 2.420111650565813], "stop_id": 3446765, "stop_desc": "176 AVENUE JEAN LOLIVE - 93055", "stop_name": "PIERRE BROSSOLETTE"}, "geometry": {"type": "Point", "coordinates": [2.420111650565813, 48.894382655105986]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a68452ad7bf3b453b7253655136916deef5d0fa8", "fields": {"departement": "92", "stop_lat": 48.82906809418619, "code_postal": "92040", "stop_lon": 2.2632959238789123, "coord": [48.82906809418619, 2.2632959238789123], "stop_id": 3442574, "stop_desc": "RUE ROUGET DE LISLE - 92040", "stop_name": "ISSY-VAL DE SEINE"}, "geometry": {"type": "Point", "coordinates": [2.2632959238789123, 48.82906809418619]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2989d354f5830597c4691fe254e9af2f42d395bf", "fields": {"departement": "93", "stop_lat": 48.89564602908959, "code_postal": "93055", "stop_lon": 2.425429514998437, "coord": [48.89564602908959, 2.425429514998437], "stop_id": 3446768, "stop_desc": "3 AV DE PARIS - 93055", "stop_name": "RAYMOND QUENEAU-METRO"}, "geometry": {"type": "Point", "coordinates": [2.425429514998437, 48.89564602908959]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c1795286dbc46ea35aa1b56594f1550e1b227048", "fields": {"departement": "75", "stop_lat": 48.84969053529712, "code_postal": "75106", "stop_lon": 2.339106768100015, "coord": [48.84969053529712, 2.339106768100015], "stop_id": 3442467, "stop_desc": "1-3 RUE CORNEILLE - 75106", "stop_name": "THEATRE DE L'ODEON"}, "geometry": {"type": "Point", "coordinates": [2.339106768100015, 48.84969053529712]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "364e88f51ddebfe5ed71ecfbf293b03360595500", "fields": {"departement": "93", "stop_lat": 48.89582081250454, "code_postal": "93053", "stop_lon": 2.461291449909493, "coord": [48.89582081250454, 2.461291449909493], "stop_id": 3560226, "stop_desc": "3 BOULEVARD DE LA REPUBLIQUE - 93053", "stop_name": "NOISY-LE-SEC RER"}, "geometry": {"type": "Point", "coordinates": [2.461291449909493, 48.89582081250454]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fa795c157b083b9e60ece472ff16f444deb180d2", "fields": {"departement": "93", "stop_lat": 48.8828137514324, "code_postal": "93063", "stop_lon": 2.4350964822392913, "coord": [48.8828137514324, 2.4350964822392913], "stop_id": 3560214, "stop_desc": "50 AVENUE DE VERDUN - 93063", "stop_name": "PLACE DU 19 MARS 1962"}, "geometry": {"type": "Point", "coordinates": [2.4350964822392913, 48.8828137514324]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9ab54d7499df93f71dda6e82b5d9e43cb8827069", "fields": {"departement": "93", "stop_lat": 48.88048687661272, "code_postal": "93045", "stop_lon": 2.422310540571791, "coord": [48.88048687661272, 2.422310540571791], "stop_id": 3560207, "stop_desc": "4-6 AVENUE DU GENERAL LECLERC - 93045", "stop_name": "MARECHAL JUIN"}, "geometry": {"type": "Point", "coordinates": [2.422310540571791, 48.88048687661272]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b5906504f01dbca6b9d59d89037db2df56293288", "fields": {"departement": "75", "stop_lat": 48.8771618648321, "code_postal": "75120", "stop_lon": 2.4081481811510286, "coord": [48.8771618648321, 2.4081481811510286], "stop_id": 3560202, "stop_desc": "RUE DES GLAIEULS - 75120", "stop_name": "PORTE DES LILAS-METRO"}, "geometry": {"type": "Point", "coordinates": [2.4081481811510286, 48.8771618648321]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cfc5528912af7bc852565419467fae15c941434c", "fields": {"departement": "93", "stop_lat": 48.890978386407994, "code_postal": "93053", "stop_lon": 2.4596852500473565, "coord": [48.890978386407994, 2.4596852500473565], "stop_id": 3560224, "stop_desc": "FACE 43TER BOULEVARD MICHELET - 93053", "stop_name": "MARCEAU"}, "geometry": {"type": "Point", "coordinates": [2.4596852500473565, 48.890978386407994]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f25b50dadc408060533894741519e13aedc99c02", "fields": {"departement": "93", "stop_lat": 48.88289931879224, "code_postal": "93063", "stop_lon": 2.440206776933691, "coord": [48.88289931879224, 2.440206776933691], "stop_id": 3560215, "stop_desc": "FACE 6 RUE DE LA REPUBLIQUE - 93063", "stop_name": "CARNOT"}, "geometry": {"type": "Point", "coordinates": [2.440206776933691, 48.88289931879224]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0d02db79becab6931c0f989546646988f806e411", "fields": {"departement": "93", "stop_lat": 48.88841679705343, "code_postal": "93053", "stop_lon": 2.450847946331153, "coord": [48.88841679705343, 2.450847946331153], "stop_id": 3560219, "stop_desc": "FACE 34 RUE ANATOLE FRANCE - 93053", "stop_name": "HELENE"}, "geometry": {"type": "Point", "coordinates": [2.450847946331153, 48.88841679705343]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d3cbfb4f87b8d90463a5ca2c26c9e8f6090272c7", "fields": {"departement": "93", "stop_lat": 48.88963634548666, "code_postal": "93053", "stop_lon": 2.453658151289903, "coord": [48.88963634548666, 2.453658151289903], "stop_id": 3560221, "stop_desc": "8 RUE DE BREMENT - 93053", "stop_name": "JEANNE D'ARC"}, "geometry": {"type": "Point", "coordinates": [2.453658151289903, 48.88963634548666]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2bd38faa6c64597d66488fa946c5330e3d955a88", "fields": {"departement": "93", "stop_lat": 48.87848998242335, "code_postal": "93045", "stop_lon": 2.411433829034282, "coord": [48.87848998242335, 2.411433829034282], "stop_id": 3560203, "stop_desc": "44 R DE PARIS - 93045", "stop_name": "LES BRUYERES"}, "geometry": {"type": "Point", "coordinates": [2.411433829034282, 48.87848998242335]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d8d93a903159a99e024457eba9e3f41f84c92fb3", "fields": {"departement": "93", "stop_lat": 48.89208968179855, "code_postal": "93053", "stop_lon": 2.4442457178336117, "coord": [48.89208968179855, 2.4442457178336117], "stop_id": 3446776, "stop_desc": "FACE 77 RUE VAILLANT COUTURIER - 93053", "stop_name": "RUE DU PARC - VAILLANT-COUTURIER"}, "geometry": {"type": "Point", "coordinates": [2.4442457178336117, 48.89208968179855]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1c9471063dd790a603559ad59a15c65b839de0ff", "fields": {"departement": "93", "stop_lat": 48.89164801754887, "code_postal": "93053", "stop_lon": 2.4456758850678475, "coord": [48.89164801754887, 2.4456758850678475], "stop_id": 3446775, "stop_desc": "69 RUE VAILLANT COUTURIER - 93053", "stop_name": "RUE DU PARC - VAILLANT-COUTURIER"}, "geometry": {"type": "Point", "coordinates": [2.4456758850678475, 48.89164801754887]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "44ccba7e26f174c1d518dedfbb544b2ac0e2a1b4", "fields": {"departement": "93", "stop_lat": 48.91240595297027, "code_postal": "93010", "stop_lon": 2.481728807753058, "coord": [48.91240595297027, 2.481728807753058], "stop_id": 3450618, "stop_desc": "AVENUE HENRI VARAGNAT - 93010", "stop_name": "ROUTE D'AULNAY - JEAN MOULIN"}, "geometry": {"type": "Point", "coordinates": [2.481728807753058, 48.91240595297027]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fd51a60557726c2d5e648b38d0a1eb23491213f9", "fields": {"departement": "92", "stop_lat": 48.81109318574074, "code_postal": "92020", "stop_lon": 2.3044862279926117, "coord": [48.81109318574074, 2.3044862279926117], "stop_id": 3449466, "stop_desc": "AVENUE MARX DORMOY - 92020", "stop_name": "CHATILLON-MONTROUGE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.3044862279926117, 48.81109318574074]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "38c47cc1aadb1a210dfd9ec26cfcbcf2def02bee", "fields": {"departement": "93", "stop_lat": 48.926484956933145, "code_postal": "93007", "stop_lon": 2.469329770033911, "coord": [48.926484956933145, 2.469329770033911], "stop_id": 3450636, "stop_desc": "122 AVENUE PAUL VAILLANT COUTURIER - 93007", "stop_name": "PIERRE MONTILLET"}, "geometry": {"type": "Point", "coordinates": [2.469329770033911, 48.926484956933145]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "035b76dae814a9a40284eb504a3d2dc772d6ef9f", "fields": {"departement": "93", "stop_lat": 48.88666818491777, "code_postal": "93053", "stop_lon": 2.472907876521495, "coord": [48.88666818491777, 2.472907876521495], "stop_id": 3446800, "stop_desc": "7 AVENUE DE GAGNY - 93053", "stop_name": "ECHANGEUR DE ROSNY"}, "geometry": {"type": "Point", "coordinates": [2.472907876521495, 48.88666818491777]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bde809ed8fb56d797a2011ab416748e0b73e63a2", "fields": {"departement": "93", "stop_lat": 48.89340708477658, "code_postal": "93010", "stop_lon": 2.4742203460032237, "coord": [48.89340708477658, 2.4742203460032237], "stop_id": 3450608, "stop_desc": "FACE 21 AVENUE JULES FERRY - 93010", "stop_name": "DAVID LEDER"}, "geometry": {"type": "Point", "coordinates": [2.4742203460032237, 48.89340708477658]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eb639ddeadb0958b22be2b92a0d8cfd110001493", "fields": {"departement": "93", "stop_lat": 48.91332218067506, "code_postal": "93010", "stop_lon": 2.4820995089248123, "coord": [48.91332218067506, 2.4820995089248123], "stop_id": 3450621, "stop_desc": "AV HENRI VARAGNAT - 93010", "stop_name": "SUZANNE BUISSON"}, "geometry": {"type": "Point", "coordinates": [2.4820995089248123, 48.91332218067506]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9030840258097c81286577ceb878a81ce02ddea8", "fields": {"departement": "92", "stop_lat": 48.81228106154365, "code_postal": "92049", "stop_lon": 2.310445989367692, "coord": [48.81228106154365, 2.310445989367692], "stop_id": 3449482, "stop_desc": "R MOLIERE - 92049", "stop_name": "GEORGES MESSIER"}, "geometry": {"type": "Point", "coordinates": [2.310445989367692, 48.81228106154365]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e3ed57fed7c82579260485c5fe43ddf677e61a61", "fields": {"departement": "93", "stop_lat": 48.887204747437394, "code_postal": "93053", "stop_lon": 2.467239965354698, "coord": [48.887204747437394, 2.467239965354698], "stop_id": 3446786, "stop_desc": "189 RUE DE BREMENT - 93053", "stop_name": "BREMENT"}, "geometry": {"type": "Point", "coordinates": [2.467239965354698, 48.887204747437394]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6dd93e5fa649ef609020c77f4e47e53a7e7076e9", "fields": {"departement": "92", "stop_lat": 48.83836610338885, "code_postal": "92012", "stop_lon": 2.2336148824234163, "coord": [48.83836610338885, 2.2336148824234163], "stop_id": 3442585, "stop_desc": "FACE 81 AVENUE ANDRE MORIZET - 92012", "stop_name": "ANCIENNE MAIRIE DE BOULOGNE-BILLANCOURT"}, "geometry": {"type": "Point", "coordinates": [2.2336148824234163, 48.83836610338885]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "edbbee3e898ef2a23138a29854d1c9935ef5fff6", "fields": {"departement": "93", "stop_lat": 48.93591278472093, "code_postal": "93007", "stop_lon": 2.4688081776452413, "coord": [48.93591278472093, 2.4688081776452413], "stop_id": 3450656, "stop_desc": "RUE RICHARD WAGNER - 93007", "stop_name": "REPUBLIQUE - PALADHILE"}, "geometry": {"type": "Point", "coordinates": [2.4688081776452413, 48.93591278472093]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dcd403d9dccfc678021588e20f779b27015cacf7", "fields": {"departement": "93", "stop_lat": 48.94258264155919, "code_postal": "93007", "stop_lon": 2.4673244238823555, "coord": [48.94258264155919, 2.4673244238823555], "stop_id": 3450659, "stop_desc": "186 AVENUE PASTEUR - 93007", "stop_name": "PLACE DE LA LIBERATION"}, "geometry": {"type": "Point", "coordinates": [2.4673244238823555, 48.94258264155919]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "17a07a28eba14499290c4ba7dda4e534ea296830", "fields": {"departement": "93", "stop_lat": 48.92797221161935, "code_postal": "93007", "stop_lon": 2.4652828128878084, "coord": [48.92797221161935, 2.4652828128878084], "stop_id": 3450638, "stop_desc": "32 AVENUE DU MARECHAL FOCH - 93007", "stop_name": "FOCH - GALLIENI"}, "geometry": {"type": "Point", "coordinates": [2.4652828128878084, 48.92797221161935]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3e7a7dd24bb2cf4e1e9107ab6b577a2f1b3c85e6", "fields": {"departement": "75", "stop_lat": 48.87651509555103, "code_postal": "75120", "stop_lon": 2.407615908523529, "coord": [48.87651509555103, 2.407615908523529], "stop_id": 3560201, "stop_desc": "1 RUE CHARLES CROS - 75120", "stop_name": "PORTE DES LILAS-METRO"}, "geometry": {"type": "Point", "coordinates": [2.407615908523529, 48.87651509555103]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b55eb4014e32b8d56864163ec147d66200fc984d", "fields": {"departement": "93", "stop_lat": 48.94358828065957, "code_postal": "93007", "stop_lon": 2.468131887501068, "coord": [48.94358828065957, 2.468131887501068], "stop_id": 3450661, "stop_desc": "9 AVENUE CHARLES DE GAULLE - 93007", "stop_name": "LES LYCEES"}, "geometry": {"type": "Point", "coordinates": [2.468131887501068, 48.94358828065957]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c027ddbd8613098bbe1b3315bd33ee7679f42476", "fields": {"departement": "93", "stop_lat": 48.92840750651025, "code_postal": "93029", "stop_lon": 2.4615740803416286, "coord": [48.92840750651025, 2.4615740803416286], "stop_id": 3450640, "stop_desc": "78 AVENUE JOFFRE - 93029", "stop_name": "JOFFRE - MADELON"}, "geometry": {"type": "Point", "coordinates": [2.4615740803416286, 48.92840750651025]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d5b5ef9950397b9cb2a779af3c6f6c30c335c000", "fields": {"departement": "93", "stop_lat": 48.93115337124984, "code_postal": "93029", "stop_lon": 2.4568204083253646, "coord": [48.93115337124984, 2.4568204083253646], "stop_id": 3450643, "stop_desc": "RUE MAURICE BERNARD - 93029", "stop_name": "PLACE JOFFRE"}, "geometry": {"type": "Point", "coordinates": [2.4568204083253646, 48.93115337124984]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b0a266263be9e7f702ceb8cc03f61606fc6f841f", "fields": {"departement": "93", "stop_lat": 48.93109081807379, "code_postal": "93029", "stop_lon": 2.456465631513302, "coord": [48.93109081807379, 2.456465631513302], "stop_id": 3450644, "stop_desc": "RUE MAURICE BERNARD - 93029", "stop_name": "PLACE JOFFRE"}, "geometry": {"type": "Point", "coordinates": [2.456465631513302, 48.93109081807379]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c9e729c87304564ae28166e8468aa2ddaa51d9da", "fields": {"departement": "92", "stop_lat": 48.81947891694374, "code_postal": "92046", "stop_lon": 2.305134231392822, "coord": [48.81947891694374, 2.305134231392822], "stop_id": 3619136, "stop_desc": "123 BOULEVARD GABRIEL PERI - 92046", "stop_name": "PIERRE LAROUSSE - CARREFOUR DU 8 MAI 1945"}, "geometry": {"type": "Point", "coordinates": [2.305134231392822, 48.81947891694374]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bdd009068c2c7172f6ade35928f15a90e9978611", "fields": {"departement": "92", "stop_lat": 48.80171076912714, "code_postal": "92023", "stop_lon": 2.2654845936995978, "coord": [48.80171076912714, 2.2654845936995978], "stop_id": 3619155, "stop_desc": "FACE 28 RUE PIERRE ET MARIE CURIE - 92023", "stop_name": "MARCHE DE CLAMART"}, "geometry": {"type": "Point", "coordinates": [2.2654845936995978, 48.80171076912714]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fd1e6d81f2b82c890fab90424b592ae259ebe904", "fields": {"departement": "93", "stop_lat": 48.86937996713038, "code_postal": "93050", "stop_lon": 2.5554073894083706, "coord": [48.86937996713038, 2.5554073894083706], "stop_id": 3616926, "stop_desc": "128 AVENUE PAUL VAILLANT COUTURIER - 93050", "stop_name": "RUE DE LA POINTE"}, "geometry": {"type": "Point", "coordinates": [2.5554073894083706, 48.86937996713038]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1a4b55ac8b84c818445b0a0b5c6e33f4c94983fc", "fields": {"departement": "92", "stop_lat": 48.81209081636463, "code_postal": "92046", "stop_lon": 2.280548379801124, "coord": [48.81209081636463, 2.280548379801124], "stop_id": 3619147, "stop_desc": "FACE 52 BOULEVARD DU COLONEL FABIEN - 92046", "stop_name": "COLONEL FABIEN"}, "geometry": {"type": "Point", "coordinates": [2.280548379801124, 48.81209081636463]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "75cd487127ddc4484205d2c719f6fc20d9184d7a", "fields": {"departement": "92", "stop_lat": 48.79957911641307, "code_postal": "92023", "stop_lon": 2.2629841926467162, "coord": [48.79957911641307, 2.2629841926467162], "stop_id": 3619158, "stop_desc": "5-7 RUE DE L'EGLISE - 92023", "stop_name": "MAIRIE DE CLAMART"}, "geometry": {"type": "Point", "coordinates": [2.2629841926467162, 48.79957911641307]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "634933ae6a0682ca3eaead73f2c75cdcfa209c0e", "fields": {"departement": "92", "stop_lat": 48.80229825705779, "code_postal": "92023", "stop_lon": 2.2711438196899305, "coord": [48.80229825705779, 2.2711438196899305], "stop_id": 3619154, "stop_desc": "17 AVENUE MARGUERITE RENAUDIN - 92023", "stop_name": "VOIE VERTE"}, "geometry": {"type": "Point", "coordinates": [2.2711438196899305, 48.80229825705779]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7caea34b455cc56263fdb5748308d11dff5d0688", "fields": {"departement": "92", "stop_lat": 48.800746208750255, "code_postal": "92023", "stop_lon": 2.260887283207438, "coord": [48.800746208750255, 2.260887283207438], "stop_id": 3619159, "stop_desc": "6 RUE DE MEUDON - 92023", "stop_name": "PLACE HUNEBELLE"}, "geometry": {"type": "Point", "coordinates": [2.260887283207438, 48.800746208750255]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8decd56f1e1d8dafcc313ce47e360d723c7e2ac0", "fields": {"departement": "92", "stop_lat": 48.80402598764789, "code_postal": "92023", "stop_lon": 2.2749785999696424, "coord": [48.80402598764789, 2.2749785999696424], "stop_id": 3619153, "stop_desc": "48 RUE DES ROISSYS - 92023", "stop_name": "MARIE DOFFE"}, "geometry": {"type": "Point", "coordinates": [2.2749785999696424, 48.80402598764789]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c3e95b052dbd620060f2f9bf1ff258658777d3f5", "fields": {"departement": "93", "stop_lat": 48.881032085028075, "code_postal": "93032", "stop_lon": 2.5427428357008504, "coord": [48.881032085028075, 2.5427428357008504], "stop_id": 3616919, "stop_desc": "RUE JULES GUESDE - 93032", "stop_name": "JEAN MOULIN"}, "geometry": {"type": "Point", "coordinates": [2.5427428357008504, 48.881032085028075]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5b7f0c2a733cebf02abc9d3e5576274a79a445d6", "fields": {"departement": "93", "stop_lat": 48.88071732063968, "code_postal": "93032", "stop_lon": 2.542864226332618, "coord": [48.88071732063968, 2.542864226332618], "stop_id": 3616918, "stop_desc": "RUE JULES GUESDE - 93032", "stop_name": "JEAN MOULIN"}, "geometry": {"type": "Point", "coordinates": [2.542864226332618, 48.88071732063968]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c2bb984188e1329fcbbbef9dcd94ae1bf4be2a92", "fields": {"departement": "94", "stop_lat": 48.817445659342866, "code_postal": "94017", "stop_lon": 2.4955234559960484, "coord": [48.817445659342866, 2.4955234559960484], "stop_id": 3619416, "stop_desc": "112-114 AVENUE ROGER SALENGRO - 94017", "stop_name": "JEAN-BAPTISTE CLEMENT"}, "geometry": {"type": "Point", "coordinates": [2.4955234559960484, 48.817445659342866]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ce4a10098fe2426fdf1499ee040d8f711ec1c977", "fields": {"departement": "94", "stop_lat": 48.78415776233238, "code_postal": "94028", "stop_lon": 2.453952190407719, "coord": [48.78415776233238, 2.453952190407719], "stop_id": 3619286, "stop_desc": "AVENUE DE LA BRECHE - 94028", "stop_name": "PREFECTURE DU VAL-DE-MARNE"}, "geometry": {"type": "Point", "coordinates": [2.453952190407719, 48.78415776233238]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6714a59e1f1aa03da80535b441207cf26a62502a", "fields": {"departement": "94", "stop_lat": 48.80959083245967, "code_postal": "94017", "stop_lon": 2.5423103529294875, "coord": [48.80959083245967, 2.5423103529294875], "stop_id": 3619363, "stop_desc": "AVENUE DU 8 MAI 1945 - 94017", "stop_name": "COLOMBE-HARDELET"}, "geometry": {"type": "Point", "coordinates": [2.5423103529294875, 48.80959083245967]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "071ad334d271f30db2eb90feb4dd696d8ed2d953", "fields": {"departement": "94", "stop_lat": 48.8140197332999, "code_postal": "94017", "stop_lon": 2.5096118909357625, "coord": [48.8140197332999, 2.5096118909357625], "stop_id": 3619423, "stop_desc": "85 AVENUE JEAN JAURES - 94017", "stop_name": "MAIRIE - MARCHE"}, "geometry": {"type": "Point", "coordinates": [2.5096118909357625, 48.8140197332999]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "584c15087c84f8d8ec4fdc679ccf3ff21a9ef085", "fields": {"departement": "94", "stop_lat": 48.8296917288368, "code_postal": "94017", "stop_lon": 2.4773193022480613, "coord": [48.8296917288368, 2.4773193022480613], "stop_id": 3619403, "stop_desc": "VOIE PRIVEE - 94017", "stop_name": "CAMPING INTERNATIONAL"}, "geometry": {"type": "Point", "coordinates": [2.4773193022480613, 48.8296917288368]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "573f8e95b9d7fd6baaad7a246450566014e20461", "fields": {"departement": "94", "stop_lat": 48.804622389298956, "code_postal": "94017", "stop_lon": 2.546427109100898, "coord": [48.804622389298956, 2.546427109100898], "stop_id": 3619353, "stop_desc": "2 RUE JACQUES SOLOMON - 94017", "stop_name": "CLAUDE BERNARD"}, "geometry": {"type": "Point", "coordinates": [2.546427109100898, 48.804622389298956]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "60c0680ebb2b4ccaa74ea75a995729058456b9c4", "fields": {"departement": "94", "stop_lat": 48.80899429838175, "code_postal": "94017", "stop_lon": 2.549343156172185, "coord": [48.80899429838175, 2.549343156172185], "stop_id": 3619361, "stop_desc": "51 AVENUE SALVADOR ALLENDE - 94017", "stop_name": "FAUVETTES"}, "geometry": {"type": "Point", "coordinates": [2.549343156172185, 48.80899429838175]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0c152264d1e0825894ba0985dcea34758cc237ea", "fields": {"departement": "94", "stop_lat": 48.797645142813415, "code_postal": "94055", "stop_lon": 2.5479363316218113, "coord": [48.797645142813415, 2.5479363316218113], "stop_id": 3619346, "stop_desc": "FACE 4 RUE DES BORDES - 94055", "stop_name": "SONNETTES"}, "geometry": {"type": "Point", "coordinates": [2.5479363316218113, 48.797645142813415]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8661d12d2e340c4af52bbd7bde3b8d5395355d7b", "fields": {"departement": "94", "stop_lat": 48.80327671942918, "code_postal": "94017", "stop_lon": 2.5500817450343187, "coord": [48.80327671942918, 2.5500817450343187], "stop_id": 3619352, "stop_desc": "AVENUE BOILEAU - 94017", "stop_name": "RABELAIS"}, "geometry": {"type": "Point", "coordinates": [2.5500817450343187, 48.80327671942918]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "69ecdde8bee73a4f15205e195fff5138ed0145b5", "fields": {"departement": "94", "stop_lat": 48.82052837728242, "code_postal": "94042", "stop_lon": 2.4738102453124604, "coord": [48.82052837728242, 2.4738102453124604], "stop_id": 3619409, "stop_desc": "PLACE DE VERDUN - 94042", "stop_name": "VERDUN"}, "geometry": {"type": "Point", "coordinates": [2.4738102453124604, 48.82052837728242]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "60f6a4282fb3409ba32e0a829ee5a0ad12dcf05e", "fields": {"departement": "94", "stop_lat": 48.82018223486051, "code_postal": "94017", "stop_lon": 2.485187767922024, "coord": [48.82018223486051, 2.485187767922024], "stop_id": 3619636, "stop_desc": "2-4 AVENUE DU GENERAL DE GAULLE - 94017", "stop_name": "LA FOURCHETTE DE CHAMPIGNY"}, "geometry": {"type": "Point", "coordinates": [2.485187767922024, 48.82018223486051]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b4765fac7aaabd57c2bcc0efef1fa1938ec298dc", "fields": {"departement": "94", "stop_lat": 48.81588598409138, "code_postal": "94017", "stop_lon": 2.5118092094724576, "coord": [48.81588598409138, 2.5118092094724576], "stop_id": 3619454, "stop_desc": "AVENUE DE LA REPUBLIQUE - 94017", "stop_name": "REPUBLIQUE - STALINGRAD"}, "geometry": {"type": "Point", "coordinates": [2.5118092094724576, 48.81588598409138]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b267ebd1fc9d8d2c3beb44c4015824e4b8323712", "fields": {"departement": "94", "stop_lat": 48.8202835765554, "code_postal": "94042", "stop_lon": 2.4676984462794116, "coord": [48.8202835765554, 2.4676984462794116], "stop_id": 3619631, "stop_desc": "PONT DE JOINVILLE - 94042", "stop_name": "CARREFOUR DE LA RESISTANCE"}, "geometry": {"type": "Point", "coordinates": [2.4676984462794116, 48.8202835765554]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "de94f11990b596d2e921b07c685dc35d6a41e4fe", "fields": {"departement": "94", "stop_lat": 48.82004983707806, "code_postal": "94042", "stop_lon": 2.467752300935123, "coord": [48.82004983707806, 2.467752300935123], "stop_id": 3619475, "stop_desc": "PONT DE JOINVILLE - 94042", "stop_name": "CARREFOUR DE LA RESISTANCE"}, "geometry": {"type": "Point", "coordinates": [2.467752300935123, 48.82004983707806]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "74c7a6ef6727a37a0272e5731cec40885c772126", "fields": {"departement": "94", "stop_lat": 48.81673809581467, "code_postal": "94017", "stop_lon": 2.5003527310760174, "coord": [48.81673809581467, 2.5003527310760174], "stop_id": 3619447, "stop_desc": "151 AVENUE ROGER SALENGRO - 94017", "stop_name": "PLAGE DE CHAMPIGNY"}, "geometry": {"type": "Point", "coordinates": [2.5003527310760174, 48.81673809581467]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4807bb10e8c59645d109ffd13ab0248298cfe512", "fields": {"departement": "94", "stop_lat": 48.81408866114471, "code_postal": "94017", "stop_lon": 2.5116534666993484, "coord": [48.81408866114471, 2.5116534666993484], "stop_id": 3619452, "stop_desc": "48 RUE ALBERT THOMAS - 94017", "stop_name": "MAIRIE DE CHAMPIGNY"}, "geometry": {"type": "Point", "coordinates": [2.5116534666993484, 48.81408866114471]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f11a573feeb967d46b3eec90757e6061e782cefb", "fields": {"departement": "94", "stop_lat": 48.813303070977845, "code_postal": "94017", "stop_lon": 2.488012394944514, "coord": [48.813303070977845, 2.488012394944514], "stop_id": 3619491, "stop_desc": "FACE 82 RUE DIDEROT - 94017", "stop_name": "LES PAVILLONS FLEURIS"}, "geometry": {"type": "Point", "coordinates": [2.488012394944514, 48.813303070977845]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b1b7e66fb5e1752705a3130ef4c8ff183108e081", "fields": {"departement": "94", "stop_lat": 48.809132450898176, "code_postal": "94017", "stop_lon": 2.5202640870258044, "coord": [48.809132450898176, 2.5202640870258044], "stop_id": 3619430, "stop_desc": "62 RUE DE MUSSELBURGH - 94017", "stop_name": "JEANNE VACHER"}, "geometry": {"type": "Point", "coordinates": [2.5202640870258044, 48.809132450898176]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dbabea506feb3701a50b82543d78bc2d7a5f9dad", "fields": {"departement": "94", "stop_lat": 48.8273444654541, "code_postal": "94079", "stop_lon": 2.529843423345273, "coord": [48.8273444654541, 2.529843423345273], "stop_id": 3619466, "stop_desc": "FACE 36 RUE JEAN JAURES - 94079", "stop_name": "LES ARMOIRIES"}, "geometry": {"type": "Point", "coordinates": [2.529843423345273, 48.8273444654541]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b127e98d37d87fa68ade2e229fa22377f7dff66c", "fields": {"departement": "94", "stop_lat": 48.82706540480724, "code_postal": "94079", "stop_lon": 2.535586816832712, "coord": [48.82706540480724, 2.535586816832712], "stop_id": 3619468, "stop_desc": "59 AVENUE JEAN JAURES - 94079", "stop_name": "BEAUSEJOUR"}, "geometry": {"type": "Point", "coordinates": [2.535586816832712, 48.82706540480724]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e64e3dec93eddec4b5871501173214017f5b141b", "fields": {"departement": "93", "stop_lat": 48.90376565348495, "code_postal": "93053", "stop_lon": 2.4694490810066267, "coord": [48.90376565348495, 2.4694490810066267], "stop_id": 3560255, "stop_desc": "194 BIS AVENUE DE PARIS - 93053", "stop_name": "PONT DE BONDY - AVENUE DE ROSNY"}, "geometry": {"type": "Point", "coordinates": [2.4694490810066267, 48.90376565348495]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a7206ce80157a223148721a1b340ae8e9a57b0cd", "fields": {"departement": "93", "stop_lat": 48.90255454352836, "code_postal": "93053", "stop_lon": 2.4674965867619383, "coord": [48.90255454352836, 2.4674965867619383], "stop_id": 3560233, "stop_desc": "AVENUE DU GENERAL GALLIENI - 93053", "stop_name": "NOUVELLE PISCINE"}, "geometry": {"type": "Point", "coordinates": [2.4674965867619383, 48.90255454352836]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "deb56a610f6503abf6a400fdc9f7e864d78a3ab5", "fields": {"departement": "93", "stop_lat": 48.89983409506919, "code_postal": "93053", "stop_lon": 2.465049713787794, "coord": [48.89983409506919, 2.465049713787794], "stop_id": 3560230, "stop_desc": "FACE 45 AVENUE DU GENERAL GALLIENI - 93053", "stop_name": "PETIT NOISY"}, "geometry": {"type": "Point", "coordinates": [2.465049713787794, 48.89983409506919]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "576b0368efeb53bd1ca3da448235b9164b211cc2", "fields": {"departement": "93", "stop_lat": 48.90323300235931, "code_postal": "93010", "stop_lon": 2.479358461626498, "coord": [48.90323300235931, 2.479358461626498], "stop_id": 3560238, "stop_desc": "60 RUE JULES GUESDE - 93010", "stop_name": "EGLISE DE BONDY"}, "geometry": {"type": "Point", "coordinates": [2.479358461626498, 48.90323300235931]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "398fa9ccc0bb1d0eb017571e83b239776c58ea87", "fields": {"departement": "93", "stop_lat": 48.90306932325303, "code_postal": "93010", "stop_lon": 2.480952996252528, "coord": [48.90306932325303, 2.480952996252528], "stop_id": 3560239, "stop_desc": "75 RUE JULES GUESDE - 93010", "stop_name": "EGLISE DE BONDY"}, "geometry": {"type": "Point", "coordinates": [2.480952996252528, 48.90306932325303]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f02fb5bebeb38ea28cede97a775a13ad1c4d5c77", "fields": {"departement": "93", "stop_lat": 48.90263750813602, "code_postal": "93057", "stop_lon": 2.5021226486894204, "coord": [48.90263750813602, 2.5021226486894204], "stop_id": 3560254, "stop_desc": "69 ALLEE PIERRE BROSSOLETTE - 93057", "stop_name": "VIRGINIE"}, "geometry": {"type": "Point", "coordinates": [2.5021226486894204, 48.90263750813602]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "57679b21e77776de7bf99345c6128c182b96b3ae", "fields": {"departement": "94", "stop_lat": 48.83550847166781, "code_postal": "94015", "stop_lon": 2.5333726800339575, "coord": [48.83550847166781, 2.5333726800339575], "stop_id": 3616877, "stop_desc": "VOIE PRIVEE - 94015", "stop_name": "LES HAUTS DE BRY"}, "geometry": {"type": "Point", "coordinates": [2.5333726800339575, 48.83550847166781]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "68f36e8968751acfe9d6422da8be64390370d273", "fields": {"departement": "93", "stop_lat": 48.89358734948423, "code_postal": "93053", "stop_lon": 2.4570472249714883, "coord": [48.89358734948423, 2.4570472249714883], "stop_id": 3560256, "stop_desc": "63 RUE JEAN JAURES - 93053", "stop_name": "SAINT-JEAN"}, "geometry": {"type": "Point", "coordinates": [2.4570472249714883, 48.89358734948423]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ac8b29ce3f1c692dd6dfc6cd3318e31f428396e7", "fields": {"departement": "94", "stop_lat": 48.83614857791696, "code_postal": "94015", "stop_lon": 2.53216338463, "coord": [48.83614857791696, 2.53216338463], "stop_id": 3616872, "stop_desc": "AV DES FRERES LUMIERE - 94015", "stop_name": "MOLIERE"}, "geometry": {"type": "Point", "coordinates": [2.53216338463, 48.83614857791696]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5ac33dce9b106cf6685925caf64de26597f1aa7f", "fields": {"departement": "94", "stop_lat": 48.83440763232223, "code_postal": "94015", "stop_lon": 2.5305367411931674, "coord": [48.83440763232223, 2.5305367411931674], "stop_id": 3616875, "stop_desc": "AV DE L'EUROPE - 94015", "stop_name": "EUROPE"}, "geometry": {"type": "Point", "coordinates": [2.5305367411931674, 48.83440763232223]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "867f4ffd8c2c4510cc991bf2c7df14c498b68fbd", "fields": {"departement": "94", "stop_lat": 48.82345834924084, "code_postal": "94079", "stop_lon": 2.542650985203811, "coord": [48.82345834924084, 2.542650985203811], "stop_id": 3619667, "stop_desc": "FACE 1-3 RUE DU CHEMIN DE FER - 94079", "stop_name": "VILLIERS-SUR-MARNE - LE PLESSIS-TREVISE-RER"}, "geometry": {"type": "Point", "coordinates": [2.542650985203811, 48.82345834924084]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6e47fbc8af6435f65d947bdd2f12694bee79c9dc", "fields": {"departement": "94", "stop_lat": 48.79320267015963, "code_postal": "94068", "stop_lon": 2.497639732087094, "coord": [48.79320267015963, 2.497639732087094], "stop_id": 3619692, "stop_desc": "FACE 67 AVENUE LOUIS BLANC - 94068", "stop_name": "BOULEVARD DE LA MARNE"}, "geometry": {"type": "Point", "coordinates": [2.497639732087094, 48.79320267015963]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0e4e944ea32483da8e15be159e1be5fde5eb521d", "fields": {"departement": "94", "stop_lat": 48.797456512183864, "code_postal": "94068", "stop_lon": 2.502332859235151, "coord": [48.797456512183864, 2.502332859235151], "stop_id": 3619689, "stop_desc": "6 BOULEVARD DE CHAMPIGNY - 94068", "stop_name": "JEAN MOULIN"}, "geometry": {"type": "Point", "coordinates": [2.502332859235151, 48.797456512183864]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1da5b7089d7a8abbe83ec6fc245509e18e4b638a", "fields": {"departement": "94", "stop_lat": 48.81793768191135, "code_postal": "94079", "stop_lon": 2.538682238280952, "coord": [48.81793768191135, 2.538682238280952], "stop_id": 3619668, "stop_desc": "157 RUE DE BERNAU - 94079", "stop_name": "DOCTEUR BRING"}, "geometry": {"type": "Point", "coordinates": [2.538682238280952, 48.81793768191135]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cd823f1c93858692af65f24f5ccbc9925e278196", "fields": {"departement": "77", "stop_lat": 48.81762921198782, "code_postal": "77169", "stop_lon": 2.6158766127359825, "coord": [48.81762921198782, 2.6158766127359825], "stop_id": 3639734, "stop_desc": "35 BOULEVARD DE BEAUBOURG - 77169", "stop_name": "CIMETIERE D'EMERAINVILLE"}, "geometry": {"type": "Point", "coordinates": [2.6158766127359825, 48.81762921198782]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aed0dd099ca6cde488832260b20297fe1d22762b", "fields": {"departement": "77", "stop_lat": 48.806023089513644, "code_postal": "77169", "stop_lon": 2.617093375643069, "coord": [48.806023089513644, 2.617093375643069], "stop_id": 3639743, "stop_desc": "R D'EMERY - 77169", "stop_name": "EMERAINVILLE-PONTAULT-COMBAULT RER"}, "geometry": {"type": "Point", "coordinates": [2.617093375643069, 48.806023089513644]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "309ed5f1227eadb7d63ce55379c48e15e8a3a927", "fields": {"departement": "77", "stop_lat": 48.8426628769459, "code_postal": "77083", "stop_lon": 2.5817927511651937, "coord": [48.8426628769459, 2.5817927511651937], "stop_id": 3639488, "stop_desc": "BD NEWTON - 77083", "stop_name": "NOISY-CHAMPS RER - DESCARTES."}, "geometry": {"type": "Point", "coordinates": [2.5817927511651937, 48.8426628769459]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bb15253ed49812bff1ec8cafd881c97ce0c5f658", "fields": {"departement": "94", "stop_lat": 48.80069437856847, "code_postal": "94068", "stop_lon": 2.4720301880146383, "coord": [48.80069437856847, 2.4720301880146383], "stop_id": 3663579, "stop_desc": "83 RUE DU PONT DE CRETEIL - 94068", "stop_name": "PONT DE CRETEIL"}, "geometry": {"type": "Point", "coordinates": [2.4720301880146383, 48.80069437856847]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e8731be12830cb564f629313a05cfe0ecd513634", "fields": {"departement": "77", "stop_lat": 48.836192481478214, "code_postal": "77083", "stop_lon": 2.5858058544107116, "coord": [48.836192481478214, 2.5858058544107116], "stop_id": 3639483, "stop_desc": "10 RUE ALBERT EINSTEIN - 77083", "stop_name": "ESPACE DESCARTES"}, "geometry": {"type": "Point", "coordinates": [2.5858058544107116, 48.836192481478214]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b0cb98aa162ab7ee09f1bfe4730fb768b2981e78", "fields": {"departement": "94", "stop_lat": 48.81172435455524, "code_postal": "94046", "stop_lon": 2.443494914666074, "coord": [48.81172435455524, 2.443494914666074], "stop_id": 3663570, "stop_desc": "FACE 85 AVENUE GEORGES CLEMENCEAU - 94046", "stop_name": "CONCORDE"}, "geometry": {"type": "Point", "coordinates": [2.443494914666074, 48.81172435455524]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2f1cb462a97582fbb2935329041dd7e2dfd09b6b", "fields": {"departement": "94", "stop_lat": 48.80433445713847, "code_postal": "94068", "stop_lon": 2.4720260310108393, "coord": [48.80433445713847, 2.4720260310108393], "stop_id": 3663580, "stop_desc": "45-47 RUE DES REMISES - 94068", "stop_name": "RUE DES REMISES"}, "geometry": {"type": "Point", "coordinates": [2.4720260310108393, 48.80433445713847]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ba585de8cb916404d5c33e308aec63a22c2fa96c", "fields": {"departement": "94", "stop_lat": 48.80572709873827, "code_postal": "94028", "stop_lon": 2.4555654521273964, "coord": [48.80572709873827, 2.4555654521273964], "stop_id": 3663576, "stop_desc": "109 RUE CHERET - 94028", "stop_name": "DANIELLE CASANOVA"}, "geometry": {"type": "Point", "coordinates": [2.4555654521273964, 48.80572709873827]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ea4cb0e08d71351623a43a30bc6e0f09e1463ed9", "fields": {"departement": "77", "stop_lat": 48.84238030651938, "code_postal": "77083", "stop_lon": 2.583711336428734, "coord": [48.84238030651938, 2.583711336428734], "stop_id": 3639716, "stop_desc": "FACE 23-25 AV AMPERE - 77083", "stop_name": "C.R.O.U.S."}, "geometry": {"type": "Point", "coordinates": [2.583711336428734, 48.84238030651938]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7082976db5f5fbaa5da79382b307e41ab3b9bdda", "fields": {"departement": "77", "stop_lat": 48.813805376080765, "code_postal": "77169", "stop_lon": 2.621381325410131, "coord": [48.813805376080765, 2.621381325410131], "stop_id": 3639736, "stop_desc": "FACE 5 RUE D'EMERY - 77169", "stop_name": "RUE D'EMERY"}, "geometry": {"type": "Point", "coordinates": [2.621381325410131, 48.813805376080765]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b07942c3ee5be4be3a36e7cbdc90d33a077ab262", "fields": {"departement": "94", "stop_lat": 48.814627272661085, "code_postal": "94046", "stop_lon": 2.443636947184136, "coord": [48.814627272661085, 2.443636947184136], "stop_id": 3663598, "stop_desc": "127-131 RUE GEORGES CLEMENCEAU - 94046", "stop_name": "PASSERELLE DE CHARENTONNEAU"}, "geometry": {"type": "Point", "coordinates": [2.443636947184136, 48.814627272661085]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "39f614b824b1b5add9f8eeac57e3ba117fc3b836", "fields": {"departement": "94", "stop_lat": 48.79040663472656, "code_postal": "94068", "stop_lon": 2.4768868801941784, "coord": [48.79040663472656, 2.4768868801941784], "stop_id": 3663612, "stop_desc": "FACE AU 26 AVENUE D'ARROMANCHES - 94068", "stop_name": "SQUARE BEAUREPAIRE"}, "geometry": {"type": "Point", "coordinates": [2.4768868801941784, 48.79040663472656]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "015b8e58c9778d17c83c31fb289b73cbbb3ebffd", "fields": {"departement": "94", "stop_lat": 48.79773232228551, "code_postal": "94068", "stop_lon": 2.483899386356818, "coord": [48.79773232228551, 2.483899386356818], "stop_id": 3663587, "stop_desc": "2 RUE ARISTIDE BRIAND - 94068", "stop_name": "BOULEVARD DE CRETEIL"}, "geometry": {"type": "Point", "coordinates": [2.483899386356818, 48.79773232228551]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c4fe49329e336b6f2a99341cb75006491682dc9f", "fields": {"departement": "92", "stop_lat": 48.87605193590856, "code_postal": "92073", "stop_lon": 2.225350788822975, "coord": [48.87605193590856, 2.225350788822975], "stop_id": 4009369, "stop_desc": "18 R ROGER SALENGRO - 92073", "stop_name": "BELVEDERE"}, "geometry": {"type": "Point", "coordinates": [2.225350788822975, 48.87605193590856]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d714d19d213f1003ad5f51cebddcebbea20dd67e", "fields": {"departement": "92", "stop_lat": 48.867914550913504, "code_postal": "92073", "stop_lon": 2.221322293381193, "coord": [48.867914550913504, 2.221322293381193], "stop_id": 4009371, "stop_desc": "R CLUSERET - 92073", "stop_name": "SURESNES LONGCHAMP"}, "geometry": {"type": "Point", "coordinates": [2.221322293381193, 48.867914550913504]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "804d33a52c97646c2de88870730aad86045d2aeb", "fields": {"departement": "92", "stop_lat": 48.86798659535799, "code_postal": "92073", "stop_lon": 2.221471986471923, "coord": [48.86798659535799, 2.221471986471923], "stop_id": 4009372, "stop_desc": "15 PAS LA GARE DE LONGCHAMP - 92073", "stop_name": "SURESNES LONGCHAMP"}, "geometry": {"type": "Point", "coordinates": [2.221471986471923, 48.86798659535799]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d164272d937893675222fae70d42ba8ed90d2d9b", "fields": {"departement": "92", "stop_lat": 48.81918273787022, "code_postal": "92048", "stop_lon": 2.239832259955797, "coord": [48.81918273787022, 2.239832259955797], "stop_id": 4009382, "stop_desc": "SEN DESLANDES - 92048", "stop_name": "MEUDON SUR-SEINE"}, "geometry": {"type": "Point", "coordinates": [2.239832259955797, 48.81918273787022]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2820cb4daa9e52b372eb5d4046803a26b754bef1", "fields": {"departement": "92", "stop_lat": 48.81927287064518, "code_postal": "92048", "stop_lon": 2.2401451280367315, "coord": [48.81927287064518, 2.2401451280367315], "stop_id": 4009383, "stop_desc": "SEN DESLANDES - 92048", "stop_name": "MEUDON SUR-SEINE"}, "geometry": {"type": "Point", "coordinates": [2.2401451280367315, 48.81927287064518]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "82819642708cfc6309947648192a953d14c77fce", "fields": {"departement": "92", "stop_lat": 48.824788174246734, "code_postal": "92040", "stop_lon": 2.260457165641521, "coord": [48.824788174246734, 2.260457165641521], "stop_id": 4009387, "stop_desc": "14 R JACQUES-HENRI LARTIGUE - 92040", "stop_name": "JACQUES-HENRI LARTIGUE"}, "geometry": {"type": "Point", "coordinates": [2.260457165641521, 48.824788174246734]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9ad91f7a51c09351110c4dd0a0ec3ad188f40ba8", "fields": {"departement": "92", "stop_lat": 48.82910364550732, "code_postal": "92040", "stop_lon": 2.2626560674016605, "coord": [48.82910364550732, 2.2626560674016605], "stop_id": 4009388, "stop_desc": "MAIL FELIX AMIOT - 92040", "stop_name": "ISSY - VAL DE SEINE"}, "geometry": {"type": "Point", "coordinates": [2.2626560674016605, 48.82910364550732]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6c1fa617e339fd94be6f02d9b71a211ef70add8e", "fields": {"departement": "75", "stop_lat": 48.834914901228935, "code_postal": "75115", "stop_lon": 2.2715787679864157, "coord": [48.834914901228935, 2.2715787679864157], "stop_id": 4009391, "stop_desc": "CW / 15 - 75115", "stop_name": "HENRI FARMAN"}, "geometry": {"type": "Point", "coordinates": [2.2715787679864157, 48.834914901228935]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0b29929e034860acebd658def1a7f97459f4b067", "fields": {"departement": "92", "stop_lat": 48.83169317046552, "code_postal": "92040", "stop_lon": 2.280989820289652, "coord": [48.83169317046552, 2.280989820289652], "stop_id": 4009394, "stop_desc": "FACE 2 R D'ORADOUR-SUR-GLANE - 92040", "stop_name": "PORTE D'ISSY"}, "geometry": {"type": "Point", "coordinates": [2.280989820289652, 48.83169317046552]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e1cd7a4117ee58fd8b7ab664c300e6e2bea13986", "fields": {"departement": "94", "stop_lat": 48.795791361288686, "code_postal": "94060", "stop_lon": 2.5638457285210916, "coord": [48.795791361288686, 2.5638457285210916], "stop_id": 4009535, "stop_desc": "AVENUE DE L'HIPPODROME - 94060", "stop_name": "HIPPODROME"}, "geometry": {"type": "Point", "coordinates": [2.5638457285210916, 48.795791361288686]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "de87793eed06f38c4fdec1b241dd7f48dce5f729", "fields": {"departement": "75", "stop_lat": 48.8419870845697, "code_postal": "75115", "stop_lon": 2.320574757251473, "coord": [48.8419870845697, 2.320574757251473], "stop_id": 4009616, "stop_desc": "PLACE RAOUL DAUTRY - 75115", "stop_name": "GARE MONTPARNASSE"}, "geometry": {"type": "Point", "coordinates": [2.320574757251473, 48.8419870845697]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bd09b13053ccef440373adb60285b12cc442046b", "fields": {"departement": "75", "stop_lat": 48.84454903838894, "code_postal": "75106", "stop_lon": 2.3247134823772995, "coord": [48.84454903838894, 2.3247134823772995], "stop_id": 4009619, "stop_desc": "169-171 RUE DE RENNES - 75106", "stop_name": "RENNES - LITTRE"}, "geometry": {"type": "Point", "coordinates": [2.3247134823772995, 48.84454903838894]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "81710d810824f4d97886b5777fc48b3993d6e00f", "fields": {"departement": "75", "stop_lat": 48.846103994722135, "code_postal": "75106", "stop_lon": 2.325870580821929, "coord": [48.846103994722135, 2.325870580821929], "stop_id": 4009622, "stop_desc": "128 RUE DE RENNES - 75106", "stop_name": "RENNES - SAINT-PLACIDE"}, "geometry": {"type": "Point", "coordinates": [2.325870580821929, 48.846103994722135]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eb67eb4ebecfece28577aacc24956cfda5eba774", "fields": {"departement": "75", "stop_lat": 48.848638637786514, "code_postal": "75106", "stop_lon": 2.3277901640867884, "coord": [48.848638637786514, 2.3277901640867884], "stop_id": 4009623, "stop_desc": "81 BOULEVARD RASPAIL - 75106", "stop_name": "RENNES - RASPAIL"}, "geometry": {"type": "Point", "coordinates": [2.3277901640867884, 48.848638637786514]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "93b4f90951060dc8af3ede53cfec8c338405d9bd", "fields": {"departement": "75", "stop_lat": 48.85386019995564, "code_postal": "75107", "stop_lon": 2.3259642143692596, "coord": [48.85386019995564, 2.3259642143692596], "stop_id": 4009628, "stop_desc": "22 BOULEVARD RASPAIL - 75107", "stop_name": "VARENNE - RASPAIL"}, "geometry": {"type": "Point", "coordinates": [2.3259642143692596, 48.85386019995564]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6f70d5253f2dfa0f453b613ab41fc3991e34a372", "fields": {"departement": "75", "stop_lat": 48.88476449782258, "code_postal": "75117", "stop_lon": 2.307560357012416, "coord": [48.88476449782258, 2.307560357012416], "stop_id": 4009652, "stop_desc": "147 BOULEVARD MALESHERBES - 75117", "stop_name": "JOUFFROY - MALESHERBES"}, "geometry": {"type": "Point", "coordinates": [2.307560357012416, 48.88476449782258]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0308946c0b11a4aea80517d313bd3e2d74b38808", "fields": {"departement": "75", "stop_lat": 48.88826872236327, "code_postal": "75117", "stop_lon": 2.3045464679733043, "coord": [48.88826872236327, 2.3045464679733043], "stop_id": 4009655, "stop_desc": "188-190 BOULEVARD MALESHERBES - 75117", "stop_name": "JULIETTE LAMBER"}, "geometry": {"type": "Point", "coordinates": [2.3045464679733043, 48.88826872236327]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "142a2b394875b12897e7d2751d1f3f1675e976db", "fields": {"departement": "75", "stop_lat": 48.85109213482204, "code_postal": "75106", "stop_lon": 2.3267683174103593, "coord": [48.85109213482204, 2.3267683174103593], "stop_id": 4009666, "stop_desc": "48 BOULEVARD RASPAIL - 75106", "stop_name": "SEVRES - BABYLONE"}, "geometry": {"type": "Point", "coordinates": [2.3267683174103593, 48.85109213482204]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bed4a37df75ecaa80d3f1203b8c916ee67dc314c", "fields": {"departement": "92", "stop_lat": 48.916323540007774, "code_postal": "92004", "stop_lon": 2.295283679264348, "coord": [48.916323540007774, 2.295283679264348], "stop_id": 4015687, "stop_desc": "PISTE GARE ROUTIERE - 92004", "stop_name": "GABRIEL PERI-METRO"}, "geometry": {"type": "Point", "coordinates": [2.295283679264348, 48.916323540007774]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4b110be40ee3c6e12295d1ae5f89c1e9180e262d", "fields": {"departement": "92", "stop_lat": 48.916878083087035, "code_postal": "92004", "stop_lon": 2.288328894856471, "coord": [48.916878083087035, 2.288328894856471], "stop_id": 4015692, "stop_desc": "116-118 BOULEVARD VOLTAIRE - 92004", "stop_name": "ALMA"}, "geometry": {"type": "Point", "coordinates": [2.288328894856471, 48.916878083087035]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "718772d66d05945c8bdc04fe8784c3cef179b0ff", "fields": {"departement": "92", "stop_lat": 48.916931615298246, "code_postal": "92004", "stop_lon": 2.287387962664046, "coord": [48.916931615298246, 2.287387962664046], "stop_id": 4015693, "stop_desc": "141 BOULEVARD VOLTAIRE - 92004", "stop_name": "ALMA"}, "geometry": {"type": "Point", "coordinates": [2.287387962664046, 48.916931615298246]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f4342bb21a25ad2c855fd7948ff63cc79f8f0a3d", "fields": {"departement": "92", "stop_lat": 48.933949446550976, "code_postal": "92025", "stop_lon": 2.263473509474367, "coord": [48.933949446550976, 2.263473509474367], "stop_id": 4015706, "stop_desc": "179 AVENUE DE STALINGRAD - 92025", "stop_name": "PONT DU CHEMIN DE FER"}, "geometry": {"type": "Point", "coordinates": [2.263473509474367, 48.933949446550976]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cddc0284f4a3a0778a30b4d11a2b6147d1deea16", "fields": {"departement": "92", "stop_lat": 48.937549860985655, "code_postal": "92036", "stop_lon": 2.2582982890496095, "coord": [48.937549860985655, 2.2582982890496095], "stop_id": 4015707, "stop_desc": "212 AVENUE D'ARGENTEUIL - 92036", "stop_name": "PETIT GENNEVILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.2582982890496095, 48.937549860985655]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b996fbd72f621b0cbab5066f12c4a9f20f1236bd", "fields": {"departement": "95", "stop_lat": 48.94606280319967, "code_postal": "95018", "stop_lon": 2.2489530539070373, "coord": [48.94606280319967, 2.2489530539070373], "stop_id": 4015713, "stop_desc": "79 AVENUE GABRIEL PERI - 95018", "stop_name": "HOTEL DE VILLE D'ARGENTEUIL"}, "geometry": {"type": "Point", "coordinates": [2.2489530539070373, 48.94606280319967]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9e6d157d1c55ad72f5e75c572fd56deb9415403d", "fields": {"departement": "92", "stop_lat": 48.91544202175869, "code_postal": "92004", "stop_lon": 2.2930890662142698, "coord": [48.91544202175869, 2.2930890662142698], "stop_id": 4015727, "stop_desc": "68 BOULEVARD VOLTAIRE - 92004", "stop_name": "DUSSAU"}, "geometry": {"type": "Point", "coordinates": [2.2930890662142698, 48.91544202175869]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3483f37699d2c3023174b5265a9157410686f479", "fields": {"departement": "92", "stop_lat": 48.91865458939018, "code_postal": "92004", "stop_lon": 2.2816726441871147, "coord": [48.91865458939018, 2.2816726441871147], "stop_id": 4015734, "stop_desc": "187 BOULEVARD VOLTAIRE - 92004", "stop_name": "BOURGUIGNONS"}, "geometry": {"type": "Point", "coordinates": [2.2816726441871147, 48.91865458939018]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fa0d730810a344dd32b8f29ab62ce7f7137936fc", "fields": {"departement": "92", "stop_lat": 48.92095388981479, "code_postal": "92004", "stop_lon": 2.2788200385932735, "coord": [48.92095388981479, 2.2788200385932735], "stop_id": 4015735, "stop_desc": "218 AVENUE D'ARGENTEUIL - 92004", "stop_name": "JAURES"}, "geometry": {"type": "Point", "coordinates": [2.2788200385932735, 48.92095388981479]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "df7c77a64ab66b3abb51a06c4f896c6aa9056dab", "fields": {"departement": "95", "stop_lat": 48.942813314139336, "code_postal": "95018", "stop_lon": 2.2541428551686327, "coord": [48.942813314139336, 2.2541428551686327], "stop_id": 4015746, "stop_desc": "12 BOULEVARD HELOISE - 95018", "stop_name": "BORDEREL - HELOISE"}, "geometry": {"type": "Point", "coordinates": [2.2541428551686327, 48.942813314139336]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a29b535f58c998607dcd8570aef026df629cb9c0", "fields": {"departement": "92", "stop_lat": 48.92089080016295, "code_postal": "92009", "stop_lon": 2.2784519105217274, "coord": [48.92089080016295, 2.2784519105217274], "stop_id": 4015754, "stop_desc": "227 AV D'ARGENTEUIL - 92009", "stop_name": "JAURES"}, "geometry": {"type": "Point", "coordinates": [2.2784519105217274, 48.92089080016295]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1208bfced3c0e19bfedb7ad30c5ad133c844f86f", "fields": {"departement": "75", "stop_lat": 48.8383835564642, "code_postal": "75116", "stop_lon": 2.256107368981866, "coord": [48.8383835564642, 2.256107368981866], "stop_id": 4015757, "stop_desc": "PLACE DE LA PORTE DE SAINT-CLOUD - 75116", "stop_name": "PORTE DE SAINT-CLOUD"}, "geometry": {"type": "Point", "coordinates": [2.256107368981866, 48.8383835564642]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "340a551305ecb0cbaabe05c3f1f5affd1975c7f0", "fields": {"departement": "92", "stop_lat": 48.83484557257652, "code_postal": "92012", "stop_lon": 2.247917034456035, "coord": [48.83484557257652, 2.247917034456035], "stop_id": 4015761, "stop_desc": "75 AVENUE EDOUARD VAILLANT - 92012", "stop_name": "RENE DESCARTES"}, "geometry": {"type": "Point", "coordinates": [2.247917034456035, 48.83484557257652]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "43566fe92da7383020edbede684328c70c8200de", "fields": {"departement": "92", "stop_lat": 48.84702137434797, "code_postal": "92064", "stop_lon": 2.2240380363194054, "coord": [48.84702137434797, 2.2240380363194054], "stop_id": 4015773, "stop_desc": "FACE 28 QUAI DU PRESIDENT CARNOT - 92064", "stop_name": "FEUDON"}, "geometry": {"type": "Point", "coordinates": [2.2240380363194054, 48.84702137434797]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "25015ac0f9acf81d899be0326615b930cbffd548", "fields": {"departement": "92", "stop_lat": 48.849178409685706, "code_postal": "92064", "stop_lon": 2.224074182912256, "coord": [48.849178409685706, 2.224074182912256], "stop_id": 4015775, "stop_desc": "44 QUAI DU PRESIDENT CARNOT - 92064", "stop_name": "PARC DE BEARN"}, "geometry": {"type": "Point", "coordinates": [2.224074182912256, 48.849178409685706]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "282e270d867db18f4c73d0247a4a304128250430", "fields": {"departement": "92", "stop_lat": 48.8531317877521, "code_postal": "92064", "stop_lon": 2.222907924085386, "coord": [48.8531317877521, 2.222907924085386], "stop_id": 4015777, "stop_desc": "QUAI MARCEL DASSAULT - 92064", "stop_name": "L'AQUEDUC"}, "geometry": {"type": "Point", "coordinates": [2.222907924085386, 48.8531317877521]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "011d1621dfe1e0cfe2cfe11d8faae357b2c4c4a6", "fields": {"departement": "92", "stop_lat": 48.85593593389623, "code_postal": "92064", "stop_lon": 2.2229698415765173, "coord": [48.85593593389623, 2.2229698415765173], "stop_id": 4015780, "stop_desc": "67 QUAI MARCEL DASSAULT - 92064", "stop_name": "AVENUE DE LONGCHAMP"}, "geometry": {"type": "Point", "coordinates": [2.2229698415765173, 48.85593593389623]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d048969c2d384a6e1be44cf36f5b451a27ce546b", "fields": {"departement": "92", "stop_lat": 48.86664483102247, "code_postal": "92073", "stop_lon": 2.2281909995013955, "coord": [48.86664483102247, 2.2281909995013955], "stop_id": 4015784, "stop_desc": "QUAI GALLIENI - 92073", "stop_name": "PONT DE SURESNES"}, "geometry": {"type": "Point", "coordinates": [2.2281909995013955, 48.86664483102247]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aa4b6c2e4d6256cc6b80ceef91844648c4d13b56", "fields": {"departement": "92", "stop_lat": 48.88408018811139, "code_postal": "92062", "stop_lon": 2.249998928193167, "coord": [48.88408018811139, 2.249998928193167], "stop_id": 4015793, "stop_desc": "FACE 55 QUAI DE DION BOUTON - 92062", "stop_name": "SOLJENITSYNE"}, "geometry": {"type": "Point", "coordinates": [2.249998928193167, 48.88408018811139]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "668f196cb6d780bd89d8c2e44fea9a3cbbbb5fc5", "fields": {"departement": "92", "stop_lat": 48.88662554435951, "code_postal": "92026", "stop_lon": 2.2527338710438607, "coord": [48.88662554435951, 2.2527338710438607], "stop_id": 4015795, "stop_desc": "QUAI DU PRESIDENT PAUL DOUMER - 92026", "stop_name": "RD 7 - PONT DE NEUILLY"}, "geometry": {"type": "Point", "coordinates": [2.2527338710438607, 48.88662554435951]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "409bc4c82e7f3979226472ee7240d5f17b1a5746", "fields": {"departement": "92", "stop_lat": 48.89563332895156, "code_postal": "92026", "stop_lon": 2.2565220524310243, "coord": [48.89563332895156, 2.2565220524310243], "stop_id": 4015800, "stop_desc": "16 RUE DE L'HOTEL DE VILLE - 92026", "stop_name": "MAIRIE DE COURBEVOIE"}, "geometry": {"type": "Point", "coordinates": [2.2565220524310243, 48.89563332895156]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4cc00fec9a29ae4f42f3bea72463e05d777472b1", "fields": {"departement": "92", "stop_lat": 48.9024741785828, "code_postal": "92026", "stop_lon": 2.2741514145414623, "coord": [48.9024741785828, 2.2741514145414623], "stop_id": 4015809, "stop_desc": "281 BOULEVARD SAINT-DENIS - 92026", "stop_name": "PLACE MERMOZ"}, "geometry": {"type": "Point", "coordinates": [2.2741514145414623, 48.9024741785828]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7e915e435db6041ad54670a5a15e3ed7c6771460", "fields": {"departement": "92", "stop_lat": 48.90636041802533, "code_postal": "92004", "stop_lon": 2.281835797695648, "coord": [48.90636041802533, 2.281835797695648], "stop_id": 4015812, "stop_desc": "37 BIS AVENUE DE LA MARNE - 92004", "stop_name": "GARE D'ASNIERES"}, "geometry": {"type": "Point", "coordinates": [2.281835797695648, 48.90636041802533]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0124e8b14a73bd60528fa951323c6814327e6af7", "fields": {"departement": "92", "stop_lat": 48.91031806230524, "code_postal": "92004", "stop_lon": 2.289562170031383, "coord": [48.91031806230524, 2.289562170031383], "stop_id": 4015816, "stop_desc": "10 RUE PIERRE BROSSOLETTE - 92004", "stop_name": "MAIRIE D'ASNIERES"}, "geometry": {"type": "Point", "coordinates": [2.289562170031383, 48.91031806230524]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "38909ce0ffb15f3b65b9f3285e1e7c777cd416b8", "fields": {"departement": "92", "stop_lat": 48.912738183418384, "code_postal": "92004", "stop_lon": 2.2966091654503624, "coord": [48.912738183418384, 2.2966091654503624], "stop_id": 4015820, "stop_desc": "52 RUE PIERRE BROSSOLETTE - 92004", "stop_name": "PLACE VOLTAIRE"}, "geometry": {"type": "Point", "coordinates": [2.2966091654503624, 48.912738183418384]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6607c26659d5b2449d1beb342aa67840b93c3d81", "fields": {"departement": "92", "stop_lat": 48.91219841265691, "code_postal": "92004", "stop_lon": 2.2950279615140774, "coord": [48.91219841265691, 2.2950279615140774], "stop_id": 4015821, "stop_desc": "49 RUE PIERRE BROSSOLETTE - 92004", "stop_name": "PLACE VOLTAIRE"}, "geometry": {"type": "Point", "coordinates": [2.2950279615140774, 48.91219841265691]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3a4ff81ac621a48ff93d7d28352d24241e6cf988", "fields": {"departement": "92", "stop_lat": 48.880094491854784, "code_postal": "92062", "stop_lon": 2.244255345702841, "coord": [48.880094491854784, 2.244255345702841], "stop_id": 4015826, "stop_desc": "30 QUAI DE DION BOUTON - 92062", "stop_name": "GODEFROY"}, "geometry": {"type": "Point", "coordinates": [2.244255345702841, 48.880094491854784]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ec3f62de26d9cb21f3c9e0eaa5ea44d35577ef49", "fields": {"departement": "92", "stop_lat": 48.84134695499046, "code_postal": "92064", "stop_lon": 2.220632775547223, "coord": [48.84134695499046, 2.220632775547223], "stop_id": 4015829, "stop_desc": "PISTE CIRCULAIRE OUEST DE LA PLACE CLEMENCEAU - 92064", "stop_name": "LA COLLINE"}, "geometry": {"type": "Point", "coordinates": [2.220632775547223, 48.84134695499046]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "df9ab7171ef20a6d0a0e144799355e389177aaa2", "fields": {"departement": "92", "stop_lat": 48.840885269272704, "code_postal": "92012", "stop_lon": 2.2265703845664584, "coord": [48.840885269272704, 2.2265703845664584], "stop_id": 4015831, "stop_desc": "5 BIS AV DU MARECHAL DE LATTRE DE TASSIGNY - 92012", "stop_name": "RHIN ET DANUBE-METRO."}, "geometry": {"type": "Point", "coordinates": [2.2265703845664584, 48.840885269272704]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "60a0d84911a81e135be7e9cee0dd5ff5d85ab52f", "fields": {"departement": "92", "stop_lat": 48.91994532066868, "code_postal": "92036", "stop_lon": 2.2953625652285923, "coord": [48.91994532066868, 2.2953625652285923], "stop_id": 4015883, "stop_desc": "FACE 103 AVENUE GABRIEL PERI - 92036", "stop_name": "BASLY"}, "geometry": {"type": "Point", "coordinates": [2.2953625652285923, 48.91994532066868]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c936f39144e9a210a55f3aedc5689c7014955ddd", "fields": {"departement": "92", "stop_lat": 48.92160782618113, "code_postal": "92036", "stop_lon": 2.2951293883186454, "coord": [48.92160782618113, 2.2951293883186454], "stop_id": 4015885, "stop_desc": "98 BIS AVENUE GABRIEL PERI - 92036", "stop_name": "8 MAI 1945"}, "geometry": {"type": "Point", "coordinates": [2.2951293883186454, 48.92160782618113]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dad6c18f091f509c457fa70c5c49273580f3235f", "fields": {"departement": "92", "stop_lat": 48.93021277146038, "code_postal": "92004", "stop_lon": 2.283828914025443, "coord": [48.93021277146038, 2.283828914025443], "stop_id": 4015901, "stop_desc": "0 AV DE LA REDOUTE - 92004", "stop_name": "LES COURTILLES"}, "geometry": {"type": "Point", "coordinates": [2.283828914025443, 48.93021277146038]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2ffba86b740c4908521955614b604020b4b6728d", "fields": {"departement": "92", "stop_lat": 48.93210735542388, "code_postal": "92004", "stop_lon": 2.2802669292894837, "coord": [48.93210735542388, 2.2802669292894837], "stop_id": 4015904, "stop_desc": "41 RUE HENRI POINCARE - 92004", "stop_name": "FLEMING"}, "geometry": {"type": "Point", "coordinates": [2.2802669292894837, 48.93210735542388]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6b11ca15bdec6f2c3f666c6e5e04ea3b6c3b23c4", "fields": {"departement": "92", "stop_lat": 48.93188267057626, "code_postal": "92004", "stop_lon": 2.280239896734464, "coord": [48.93188267057626, 2.280239896734464], "stop_id": 4015905, "stop_desc": "0 R HENRI POINCARE - 92004", "stop_name": "FLEMING"}, "geometry": {"type": "Point", "coordinates": [2.280239896734464, 48.93188267057626]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "53c87dcc2d6c7bbe295666ac62fdfd5d4be7bcbc", "fields": {"departement": "92", "stop_lat": 48.93073053426631, "code_postal": "92025", "stop_lon": 2.26091385015979, "coord": [48.93073053426631, 2.26091385015979], "stop_id": 4015913, "stop_desc": "AVENUE MENELOTTE - 92025", "stop_name": "GARE DU STADE"}, "geometry": {"type": "Point", "coordinates": [2.26091385015979, 48.93073053426631]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fd73793edb9574561524f5598e8dc2b720212c6d", "fields": {"departement": "92", "stop_lat": 48.928072446597874, "code_postal": "92025", "stop_lon": 2.250729507304718, "coord": [48.928072446597874, 2.250729507304718], "stop_id": 4015918, "stop_desc": "22 AVENUE AUDRA - 92025", "stop_name": "CITE DES MUSICIENS"}, "geometry": {"type": "Point", "coordinates": [2.250729507304718, 48.928072446597874]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e3165d98c40414a1956daa5e143cac3e70645ad8", "fields": {"departement": "92", "stop_lat": 48.927992076841434, "code_postal": "92025", "stop_lon": 2.251438863508048, "coord": [48.927992076841434, 2.251438863508048], "stop_id": 4015919, "stop_desc": "17 AVENUE AUDRA - 92025", "stop_name": "CITE DES MUSICIENS"}, "geometry": {"type": "Point", "coordinates": [2.251438863508048, 48.927992076841434]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f3bc46185aca3631ff7e324cdb6d25a2696c1a27", "fields": {"departement": "92", "stop_lat": 48.92743188545612, "code_postal": "92025", "stop_lon": 2.247361809638088, "coord": [48.92743188545612, 2.247361809638088], "stop_id": 4015921, "stop_desc": "AVENUE DE L'EUROPE - 92025", "stop_name": "AUDRA"}, "geometry": {"type": "Point", "coordinates": [2.247361809638088, 48.92743188545612]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c3c7a08167898e76fa6b7522ff21c43fb9b94f55", "fields": {"departement": "92", "stop_lat": 48.92637786305897, "code_postal": "92025", "stop_lon": 2.2440358549998067, "coord": [48.92637786305897, 2.2440358549998067], "stop_id": 4015923, "stop_desc": "FACE 20 AVENUE DE L'EUROPE - 92025", "stop_name": "TOUR D'AUVERGNE"}, "geometry": {"type": "Point", "coordinates": [2.2440358549998067, 48.92637786305897]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "80d9bab07f8c3234f42758ebc6c5eeb93603d2b9", "fields": {"departement": "92", "stop_lat": 48.924990275886174, "code_postal": "92025", "stop_lon": 2.239537781170969, "coord": [48.924990275886174, 2.239537781170969], "stop_id": 4015924, "stop_desc": "RUE DES RENOUILLERS - 92025", "stop_name": "EUROPE"}, "geometry": {"type": "Point", "coordinates": [2.239537781170969, 48.924990275886174]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f4dd0f8f8ece80dbef8b06b088436fd85f8dae41", "fields": {"departement": "92", "stop_lat": 48.924990275886174, "code_postal": "92025", "stop_lon": 2.239537781170969, "coord": [48.924990275886174, 2.239537781170969], "stop_id": 4015925, "stop_desc": "RUE DES RENOUILLERS - 92025", "stop_name": "EUROPE"}, "geometry": {"type": "Point", "coordinates": [2.239537781170969, 48.924990275886174]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ada6d6ed2c379c1ca11c94f3fcfabe0869aff55c", "fields": {"departement": "92", "stop_lat": 48.90889483249582, "code_postal": "92024", "stop_lon": 2.3070420751740435, "coord": [48.90889483249582, 2.3070420751740435], "stop_id": 4016022, "stop_desc": "1 PLACE JULES VERNE - 92024", "stop_name": "HOPITAL BEAUJON"}, "geometry": {"type": "Point", "coordinates": [2.3070420751740435, 48.90889483249582]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c528e63726c06bed13f0806e59ad97c7b1ef4c9d", "fields": {"departement": "92", "stop_lat": 48.911294823804006, "code_postal": "92024", "stop_lon": 2.3088813304551024, "coord": [48.911294823804006, 2.3088813304551024], "stop_id": 4016033, "stop_desc": "VOIE NOUVELLE - 92024", "stop_name": "BERGES DE SEINE"}, "geometry": {"type": "Point", "coordinates": [2.3088813304551024, 48.911294823804006]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "94e6eb99cd3b31445894fad710215c9b3e65c17c", "fields": {"departement": "92", "stop_lat": 48.90826586918908, "code_postal": "92024", "stop_lon": 2.307560521898799, "coord": [48.90826586918908, 2.307560521898799], "stop_id": 4016036, "stop_desc": "BOULEVARD DU GENERAL LECLERC - 92024", "stop_name": "HOPITAL BEAUJON"}, "geometry": {"type": "Point", "coordinates": [2.307560521898799, 48.90826586918908]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "699e24473888f692e8e763c05d661caef9ec58e7", "fields": {"departement": "92", "stop_lat": 48.90583965879505, "code_postal": "92024", "stop_lon": 2.308775253309294, "coord": [48.90583965879505, 2.308775253309294], "stop_id": 4016038, "stop_desc": "51 RUE DU LANDY - 92024", "stop_name": "VILLENEUVE - GENERAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.308775253309294, 48.90583965879505]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9a6db9e2c3225f0ec3f23e9622214ab4c3e7c652", "fields": {"departement": "92", "stop_lat": 48.90449961551857, "code_postal": "92024", "stop_lon": 2.304972468676297, "coord": [48.90449961551857, 2.304972468676297], "stop_id": 4016040, "stop_desc": "102 BIS RUE MARTRE - 92024", "stop_name": "LANDY - MARTRE"}, "geometry": {"type": "Point", "coordinates": [2.304972468676297, 48.90449961551857]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9bbe1be5e934c5084b9e280a4f432a81a1609c61", "fields": {"departement": "92", "stop_lat": 48.91937095562706, "code_postal": "92036", "stop_lon": 2.2977085261377264, "coord": [48.91937095562706, 2.2977085261377264], "stop_id": 4016046, "stop_desc": "RUE HENRI BARBUSSE - 92036", "stop_name": "REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.2977085261377264, 48.91937095562706]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "67682bf1041cab46256bf7a93d8b5685b27655f3", "fields": {"departement": "92", "stop_lat": 48.92623769620667, "code_postal": "92036", "stop_lon": 2.299926344689171, "coord": [48.92623769620667, 2.299926344689171], "stop_id": 4016050, "stop_desc": "95 RUE HENRI BARBUSSE - 92036", "stop_name": "SEVINES"}, "geometry": {"type": "Point", "coordinates": [2.299926344689171, 48.92623769620667]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e775ed0cd0a1fb838b4f54017dfbc698c3b64e04", "fields": {"departement": "92", "stop_lat": 48.94108199634376, "code_postal": "92036", "stop_lon": 2.2940085161142836, "coord": [48.94108199634376, 2.2940085161142836], "stop_id": 4016061, "stop_desc": "ROUTE PRINCIPALE DU PORT - 92036", "stop_name": "DARSE N0 5"}, "geometry": {"type": "Point", "coordinates": [2.2940085161142836, 48.94108199634376]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5d94e556b62d10d9f1e7d0726023450236eccc08", "fields": {"departement": "92", "stop_lat": 48.93964090031015, "code_postal": "92036", "stop_lon": 2.28592004573725, "coord": [48.93964090031015, 2.28592004573725], "stop_id": 4016062, "stop_desc": "ROUTE PRINCIPALE DU PORT - 92036", "stop_name": "MOLE CENTRAL"}, "geometry": {"type": "Point", "coordinates": [2.28592004573725, 48.93964090031015]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ebbeb56b4f9f324b1041469767cf1b00857b8537", "fields": {"departement": "92", "stop_lat": 48.93956954489779, "code_postal": "92036", "stop_lon": 2.287188815748167, "coord": [48.93956954489779, 2.287188815748167], "stop_id": 4016063, "stop_desc": "ROUTE PRINCIPALE DU PORT - 92036", "stop_name": "MOLE CENTRAL"}, "geometry": {"type": "Point", "coordinates": [2.287188815748167, 48.93956954489779]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "77a11d5726a6a9c2d411ec8ac9ef4b5fec9e28c5", "fields": {"departement": "92", "stop_lat": 48.938632104573415, "code_postal": "92036", "stop_lon": 2.2808872655868906, "coord": [48.938632104573415, 2.2808872655868906], "stop_id": 4016064, "stop_desc": "ROUTE PRINCIPALE DU PORT - 92036", "stop_name": "BASSIN N0 2"}, "geometry": {"type": "Point", "coordinates": [2.2808872655868906, 48.938632104573415]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "df5212d0d49264d30549c9764f4e72290a346ec3", "fields": {"departement": "92", "stop_lat": 48.937549860985655, "code_postal": "92036", "stop_lon": 2.2582982890496095, "coord": [48.937549860985655, 2.2582982890496095], "stop_id": 4016074, "stop_desc": "212 AVENUE D'ARGENTEUIL - 92036", "stop_name": "PETIT GENNEVILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.2582982890496095, 48.937549860985655]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2964cb07194de7278893df25e4f50f2faff943be", "fields": {"departement": "95", "stop_lat": 48.942309095810884, "code_postal": "95018", "stop_lon": 2.2527793991309855, "coord": [48.942309095810884, 2.2527793991309855], "stop_id": 4016076, "stop_desc": "FACE 2 AVENUE GABRIEL PERI - 95018", "stop_name": "BORDEREL"}, "geometry": {"type": "Point", "coordinates": [2.2527793991309855, 48.942309095810884]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "db3bee01d17bb573340348b2e6a9e37fc4bcafcb", "fields": {"departement": "95", "stop_lat": 48.94389855709099, "code_postal": "95018", "stop_lon": 2.251098707691505, "coord": [48.94389855709099, 2.251098707691505], "stop_id": 4016078, "stop_desc": "25 AVENUE GABRIEL PERI - 95018", "stop_name": "PAUL VAILLANT COUTURIER"}, "geometry": {"type": "Point", "coordinates": [2.251098707691505, 48.94389855709099]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1a170fe9f0420dc40278886bb5db981a39e5d344", "fields": {"departement": "95", "stop_lat": 48.94595216278769, "code_postal": "95018", "stop_lon": 2.2577533738675597, "coord": [48.94595216278769, 2.2577533738675597], "stop_id": 4016083, "stop_desc": "PLACE PIERRE SEMARD (GARE ROUTIERE) - 95018", "stop_name": "GARE D'ARGENTEUIL"}, "geometry": {"type": "Point", "coordinates": [2.2577533738675597, 48.94595216278769]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9aad29a7bf5ed9e20b5436c48f5a3bfd339602c7", "fields": {"departement": "92", "stop_lat": 48.9324481937284, "code_postal": "92036", "stop_lon": 2.3017359947576628, "coord": [48.9324481937284, 2.3017359947576628], "stop_id": 4016086, "stop_desc": "AVENUE LAURENT CELY - 92036", "stop_name": "ROND-POINT PIERRE TIMBAUD-J.LAROSE"}, "geometry": {"type": "Point", "coordinates": [2.3017359947576628, 48.9324481937284]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e0a26ef28fad4cfa81533300cea290da5908e7d9", "fields": {"departement": "92", "stop_lat": 48.907438204202705, "code_postal": "92024", "stop_lon": 2.304302597963457, "coord": [48.907438204202705, 2.304302597963457], "stop_id": 4016089, "stop_desc": "26 RUE GABRIEL PERI - 92024", "stop_name": "BATELIERS"}, "geometry": {"type": "Point", "coordinates": [2.304302597963457, 48.907438204202705]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7c7fdf8860602d82a1b93a5f694d70a0aea47078", "fields": {"departement": "92", "stop_lat": 48.90180436927663, "code_postal": "92024", "stop_lon": 2.3084094075392527, "coord": [48.90180436927663, 2.3084094075392527], "stop_id": 4016093, "stop_desc": "11 ALLEE LEON GAMBETTA - 92024", "stop_name": "THEATRE RUTEBEUF - HOPITAL GOUIN"}, "geometry": {"type": "Point", "coordinates": [2.3084094075392527, 48.90180436927663]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "77aa3194b68f4ca69f490268f4c02472a2df5300", "fields": {"departement": "92", "stop_lat": 48.898200635177055, "code_postal": "92024", "stop_lon": 2.308820344479695, "coord": [48.898200635177055, 2.308820344479695], "stop_id": 4016095, "stop_desc": "12 RUE DU DOCTEUR EMILE ROUX - 92024", "stop_name": "EMILE ROUX"}, "geometry": {"type": "Point", "coordinates": [2.308820344479695, 48.898200635177055]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "17c25249190e5612d75b164defa4f22ad973aa95", "fields": {"departement": "92", "stop_lat": 48.89855149048615, "code_postal": "92024", "stop_lon": 2.310360469358215, "coord": [48.89855149048615, 2.310360469358215], "stop_id": 4016096, "stop_desc": "1 RUE MARTRE - 92024", "stop_name": "VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.310360469358215, 48.89855149048615]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ac8c07d3b1a948391e0f70d51bfa05a23241eb76", "fields": {"departement": "92", "stop_lat": 48.90479539967374, "code_postal": "92024", "stop_lon": 2.302177566473815, "coord": [48.90479539967374, 2.302177566473815], "stop_id": 4016111, "stop_desc": "FACE 104 BOULEVARD JEAN JAURES - 92024", "stop_name": "DANIELLE CASANOVA"}, "geometry": {"type": "Point", "coordinates": [2.302177566473815, 48.90479539967374]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "862abac4aa4b000bff939e00f2342386bbb162d3", "fields": {"departement": "92", "stop_lat": 48.904057442909036, "code_postal": "92024", "stop_lon": 2.298878982538667, "coord": [48.904057442909036, 2.298878982538667], "stop_id": 4016115, "stop_desc": "25 RUE PIERRE BEREGOVOY - 92024", "stop_name": "FOURNIER"}, "geometry": {"type": "Point", "coordinates": [2.298878982538667, 48.904057442909036]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1436d87c55474b99a9794dd623fee98171ece045", "fields": {"departement": "92", "stop_lat": 48.89880128124929, "code_postal": "92024", "stop_lon": 2.3031358073195363, "coord": [48.89880128124929, 2.3031358073195363], "stop_id": 4016119, "stop_desc": "27 RUE HENRI BARBUSSE - 92024", "stop_name": "CASTERES"}, "geometry": {"type": "Point", "coordinates": [2.3031358073195363, 48.89880128124929]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f4668abe293f5efbaf07091fe2762c5746cd6e19", "fields": {"departement": "92", "stop_lat": 48.89731842863702, "code_postal": "92024", "stop_lon": 2.3032185684011117, "coord": [48.89731842863702, 2.3032185684011117], "stop_id": 4016120, "stop_desc": "FACE 22 RUE CHANCE MILLY - 92024", "stop_name": "CIMETIERE SUD"}, "geometry": {"type": "Point", "coordinates": [2.3032185684011117, 48.89731842863702]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "09d5498100f88b3cffe206f542b80e23815805e8", "fields": {"departement": "92", "stop_lat": 48.89657982025513, "code_postal": "92044", "stop_lon": 2.297821332188748, "coord": [48.89657982025513, 2.297821332188748], "stop_id": 4016123, "stop_desc": "1 PLACE DU 8 MAI 1945 - 92044", "stop_name": "GARE DE CLICHY - LEVALLOIS"}, "geometry": {"type": "Point", "coordinates": [2.297821332188748, 48.89657982025513]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9e657d76ec9e3a74b414c4f7de7936d193710fc1", "fields": {"departement": "75", "stop_lat": 48.85988210624847, "code_postal": "75101", "stop_lon": 2.344283098140992, "coord": [48.85988210624847, 2.344283098140992], "stop_id": 4016268, "stop_desc": "128 RUE DE RIVOLI - 75101", "stop_name": "RIVOLI - PONT NEUF"}, "geometry": {"type": "Point", "coordinates": [2.344283098140992, 48.85988210624847]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c2d5a2e7339b4a7e23db510104e5a853b6e419c5", "fields": {"departement": "75", "stop_lat": 48.86336033166581, "code_postal": "75101", "stop_lon": 2.3422402882400415, "coord": [48.86336033166581, 2.3422402882400415], "stop_id": 4016271, "stop_desc": "42 RUE DU LOUVRE - 75101", "stop_name": "COQUILLIERE - LES HALLES"}, "geometry": {"type": "Point", "coordinates": [2.3422402882400415, 48.86336033166581]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e38f85a3e84dd3c1f2f5a97037aae2cefa747ffb", "fields": {"departement": "75", "stop_lat": 48.86788990126235, "code_postal": "75102", "stop_lon": 2.3435757843603318, "coord": [48.86788990126235, 2.3435757843603318], "stop_id": 4016275, "stop_desc": "85 RUE MONTMARTRE - 75102", "stop_name": "REAUMUR - MONTMARTRE"}, "geometry": {"type": "Point", "coordinates": [2.3435757843603318, 48.86788990126235]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "57e598d9d760b89989756c1e008559cf7e62d1df", "fields": {"departement": "75", "stop_lat": 48.87053221363609, "code_postal": "75102", "stop_lon": 2.3428949185469965, "coord": [48.87053221363609, 2.3428949185469965], "stop_id": 4016276, "stop_desc": "166-168 RUE MONTMARTRE - 75102", "stop_name": "GRANDS BOULEVARDS"}, "geometry": {"type": "Point", "coordinates": [2.3428949185469965, 48.87053221363609]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "514918e348b1e66111a479f0fb00cc059eaa8d13", "fields": {"departement": "75", "stop_lat": 48.87582585780375, "code_postal": "75109", "stop_lon": 2.339203078574824, "coord": [48.87582585780375, 2.339203078574824], "stop_id": 4016279, "stop_desc": "17 RUE DE CHATEAUDUN - 75109", "stop_name": "CARREFOUR DE CHATEAUDUN"}, "geometry": {"type": "Point", "coordinates": [2.339203078574824, 48.87582585780375]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "855e5913dbfa42cd37b12bc191af7b3d411f4e49", "fields": {"departement": "75", "stop_lat": 48.87807269286103, "code_postal": "75109", "stop_lon": 2.3379223433423326, "coord": [48.87807269286103, 2.3379223433423326], "stop_id": 4016280, "stop_desc": "22 RUE NOTRE DAME DE LORETTE - 75109", "stop_name": "SAINT-GEORGES"}, "geometry": {"type": "Point", "coordinates": [2.3379223433423326, 48.87807269286103]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "56902af0e5eafb6ad78bfca513b21d0785f71b06", "fields": {"departement": "75", "stop_lat": 48.89044694908414, "code_postal": "75117", "stop_lon": 2.320613679282316, "coord": [48.89044694908414, 2.320613679282316], "stop_id": 4016291, "stop_desc": "130 AVENUE DE CLICHY - 75117", "stop_name": "RUE DES MOINES"}, "geometry": {"type": "Point", "coordinates": [2.320613679282316, 48.89044694908414]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "777dbd58a734c5288427b8c0bdd8e850e2681cf8", "fields": {"departement": "75", "stop_lat": 48.89185755313465, "code_postal": "75117", "stop_lon": 2.3180645348981526, "coord": [48.89185755313465, 2.3180645348981526], "stop_id": 4016292, "stop_desc": "168 AVENUE DE CLICHY - 75117", "stop_name": "BROCHANT - CARDINET"}, "geometry": {"type": "Point", "coordinates": [2.3180645348981526, 48.89185755313465]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3326a715be5effb79af0476714b76934b8b74e0b", "fields": {"departement": "92", "stop_lat": 48.898632852301176, "code_postal": "92024", "stop_lon": 2.312568673210836, "coord": [48.898632852301176, 2.312568673210836], "stop_id": 4016300, "stop_desc": "53 BOULEVARD VICTOR HUGO - 92024", "stop_name": "CURTON"}, "geometry": {"type": "Point", "coordinates": [2.312568673210836, 48.898632852301176]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d89942726717b75ec48d444d8730fa551d03a9dd", "fields": {"departement": "92", "stop_lat": 48.91112409937243, "code_postal": "92024", "stop_lon": 2.309004133870616, "coord": [48.91112409937243, 2.309004133870616], "stop_id": 4016310, "stop_desc": "0 ALL SANTO TIRSO - 92024", "stop_name": "CLICHY - BERGES DE SEINE"}, "geometry": {"type": "Point", "coordinates": [2.309004133870616, 48.91112409937243]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a2bb1e915e29644d3549bfe949bed080f3fbdeef", "fields": {"departement": "75", "stop_lat": 48.87974422707983, "code_postal": "75109", "stop_lon": 2.3323765091616417, "coord": [48.87974422707983, 2.3323765091616417], "stop_id": 4016316, "stop_desc": "47 RUE LA BRUYERE - 75109", "stop_name": "LA BRUYERE"}, "geometry": {"type": "Point", "coordinates": [2.3323765091616417, 48.87974422707983]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b4d9ceabe762385a2cb159849e9277f469cbf781", "fields": {"departement": "75", "stop_lat": 48.87656283115288, "code_postal": "75109", "stop_lon": 2.3369685497066297, "coord": [48.87656283115288, 2.3369685497066297], "stop_id": 4016317, "stop_desc": "29 RUE SAINT GEORGES - 75109", "stop_name": "SAINT-GEORGES - CHATEAUDUN"}, "geometry": {"type": "Point", "coordinates": [2.3369685497066297, 48.87656283115288]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "670dfaf2a8985a598651382b7e4a3a46e1a35c58", "fields": {"departement": "75", "stop_lat": 48.8598461517609, "code_postal": "75101", "stop_lon": 2.344364818985878, "coord": [48.8598461517609, 2.344364818985878], "stop_id": 4016327, "stop_desc": "128 RUE DE RIVOLI - 75101", "stop_name": "RIVOLI - PONT NEUF"}, "geometry": {"type": "Point", "coordinates": [2.344364818985878, 48.8598461517609]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0a1f46a7d3cdea44ba97093f4c7090428adb2720", "fields": {"departement": "75", "stop_lat": 48.87085576401549, "code_postal": "75109", "stop_lon": 2.3317506483025654, "coord": [48.87085576401549, 2.3317506483025654], "stop_id": 4016337, "stop_desc": "1 RUE AUBER - 75109", "stop_name": "OPERA"}, "geometry": {"type": "Point", "coordinates": [2.3317506483025654, 48.87085576401549]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c8c89ddd93e6f87baa0ac889a083bcafeeb0462b", "fields": {"departement": "75", "stop_lat": 48.87584369622378, "code_postal": "75109", "stop_lon": 2.3312323629648577, "coord": [48.87584369622378, 2.3312323629648577], "stop_id": 4016339, "stop_desc": "34 R DE MOGADOR - 75109", "stop_name": "TRINITE"}, "geometry": {"type": "Point", "coordinates": [2.3312323629648577, 48.87584369622378]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5a64296d0c2838d204509a6dea5620ac0890e0a1", "fields": {"departement": "75", "stop_lat": 48.88288949632451, "code_postal": "75109", "stop_lon": 2.327879300599818, "coord": [48.88288949632451, 2.327879300599818], "stop_id": 4016341, "stop_desc": "80-82 RUE DE CLICHY - 75109", "stop_name": "PLACE DE CLICHY"}, "geometry": {"type": "Point", "coordinates": [2.327879300599818, 48.88288949632451]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d4a6ffc63b685803758f6f2bbae1b6c8676a9484", "fields": {"departement": "94", "stop_lat": 48.80237644371773, "code_postal": "94076", "stop_lon": 2.3643847967808878, "coord": [48.80237644371773, 2.3643847967808878], "stop_id": 4767065, "stop_desc": "62 AVENUE DE PARIS - 94076", "stop_name": "HENRI BARBUSSE"}, "geometry": {"type": "Point", "coordinates": [2.3643847967808878, 48.80237644371773]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2b8880b650d60dfe2c625c4f70fc2789352e169b", "fields": {"departement": "94", "stop_lat": 48.79822371158427, "code_postal": "94076", "stop_lon": 2.3658791536218233, "coord": [48.79822371158427, 2.3658791536218233], "stop_id": 4767067, "stop_desc": "128 AVENUE DE PARIS - 94076", "stop_name": "DISPENSAIRE DANIELLE CASANOVA"}, "geometry": {"type": "Point", "coordinates": [2.3658791536218233, 48.79822371158427]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e4b0f90a0b8032f0cf8759360672db69ffedf1d2", "fields": {"departement": "94", "stop_lat": 48.7939895585951, "code_postal": "94076", "stop_lon": 2.369277739405965, "coord": [48.7939895585951, 2.369277739405965], "stop_id": 4767073, "stop_desc": "97 BOULEVARD MAXIME GORKI - 94076", "stop_name": "GUYNEMER - MAXIME GORKI"}, "geometry": {"type": "Point", "coordinates": [2.369277739405965, 48.7939895585951]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "282ced7ea6ec5ecad280af003e9c878f6a18cab5", "fields": {"departement": "94", "stop_lat": 48.78805792801428, "code_postal": "94076", "stop_lon": 2.3678050521272613, "coord": [48.78805792801428, 2.3678050521272613], "stop_id": 4767074, "stop_desc": "FACE 185 BOULEVARD MAXIME GORKI - 94076", "stop_name": "VILLEJUIF - LOUIS ARAGON"}, "geometry": {"type": "Point", "coordinates": [2.3678050521272613, 48.78805792801428]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "febd929e8ba585caabc3fdece9eeb4fb8ea71341", "fields": {"departement": "94", "stop_lat": 48.76378088217269, "code_postal": "94073", "stop_lon": 2.3694086738771816, "coord": [48.76378088217269, 2.3694086738771816], "stop_id": 4767082, "stop_desc": "ESPLANADE AUGUSTE PERRET - 94073", "stop_name": "AUGUSTE PERRET"}, "geometry": {"type": "Point", "coordinates": [2.3694086738771816, 48.76378088217269]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8927881bd8ad9f90e6ed5720c234fd1cf3566ffb", "fields": {"departement": "94", "stop_lat": 48.759647325903956, "code_postal": "94021", "stop_lon": 2.3655724136005585, "coord": [48.759647325903956, 2.3655724136005585], "stop_id": 4767084, "stop_desc": "RUE DE THIAIS - 94021", "stop_name": "PORTE DE THIAIS"}, "geometry": {"type": "Point", "coordinates": [2.3655724136005585, 48.759647325903956]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9a9e473d402c4b72c6ac4b65f45ffc2ef9a58463", "fields": {"departement": "94", "stop_lat": 48.76317343511212, "code_postal": "94021", "stop_lon": 2.3492460062814264, "coord": [48.76317343511212, 2.3492460062814264], "stop_id": 4767091, "stop_desc": "AVENUE DES MARAICHERS - 94021", "stop_name": "AGEN"}, "geometry": {"type": "Point", "coordinates": [2.3492460062814264, 48.76317343511212]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b113daf273082928c4055e63d0e7935b006f4914", "fields": {"departement": "94", "stop_lat": 48.779986814622646, "code_postal": "94038", "stop_lon": 2.367528304541817, "coord": [48.779986814622646, 2.367528304541817], "stop_id": 4767099, "stop_desc": "AVENUE DE STALINGRAD - 94038", "stop_name": "DOMAINE CHERIOUX"}, "geometry": {"type": "Point", "coordinates": [2.367528304541817, 48.779986814622646]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f10506230d8994f5c2a46e99253faf6d50184559", "fields": {"departement": "94", "stop_lat": 48.796272681571224, "code_postal": "94076", "stop_lon": 2.368517307929323, "coord": [48.796272681571224, 2.368517307929323], "stop_id": 4767100, "stop_desc": "33 BOULEVARD MAXIME GORKI - 94076", "stop_name": "PAUL VAILLANT-COUTURIER - HOPITAL PAUL BROUSSE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.368517307929323, 48.796272681571224]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bfa2edcb1adebba8f3277a7a697030a0232d7dfa", "fields": {"departement": "91", "stop_lat": 48.70255564704986, "code_postal": "91161", "stop_lon": 2.3203207017167378, "coord": [48.70255564704986, 2.3203207017167378], "stop_id": 4770074, "stop_desc": "7 AVENUE MAZARIN - 91161", "stop_name": "PLACE DE LA LIBERATION"}, "geometry": {"type": "Point", "coordinates": [2.3203207017167378, 48.70255564704986]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "10e6361915286b08961910afd80aa498971ae979", "fields": {"departement": "91", "stop_lat": 48.71463130265708, "code_postal": "91161", "stop_lon": 2.2992768235553367, "coord": [48.71463130265708, 2.2992768235553367], "stop_id": 4770082, "stop_desc": "79 ROUTE DE MASSY - 91161", "stop_name": "ROUTE DE MASSY - LES CHAMPARTS"}, "geometry": {"type": "Point", "coordinates": [2.2992768235553367, 48.71463130265708]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2ad19ffa3247f8fa6f093ee783f230e01dcdd57e", "fields": {"departement": "91", "stop_lat": 48.72805807374259, "code_postal": "91377", "stop_lon": 2.2737924577619357, "coord": [48.72805807374259, 2.2737924577619357], "stop_id": 4770090, "stop_desc": "RUE DU 8 MAI 1945 - 91377", "stop_name": "8 MAI 1945"}, "geometry": {"type": "Point", "coordinates": [2.2737924577619357, 48.72805807374259]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e84e0aafeb8eeb3bef1bc62f4702a7bc88d7e810", "fields": {"departement": "91", "stop_lat": 48.728042941856216, "code_postal": "91377", "stop_lon": 2.2793629122347263, "coord": [48.728042941856216, 2.2793629122347263], "stop_id": 4770093, "stop_desc": "54 RUE DE LONGJUMEAU - 91377", "stop_name": "JEAN MERMOZ"}, "geometry": {"type": "Point", "coordinates": [2.2793629122347263, 48.728042941856216]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "48a046bcf0c78ae2bd957b26fd1db43a23d61b2d", "fields": {"departement": "91", "stop_lat": 48.731469602983324, "code_postal": "91377", "stop_lon": 2.283856501392165, "coord": [48.731469602983324, 2.283856501392165], "stop_id": 4770100, "stop_desc": "1 RUE DE ROME - 91377", "stop_name": "HELENE BOUCHER"}, "geometry": {"type": "Point", "coordinates": [2.283856501392165, 48.731469602983324]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "829ca2a59c2d4ad42431e7bc72c6960c01d0586b", "fields": {"departement": "91", "stop_lat": 48.73294496958157, "code_postal": "91377", "stop_lon": 2.28678993142112, "coord": [48.73294496958157, 2.28678993142112], "stop_id": 4770101, "stop_desc": "67 RUE DES CANADIENS - 91377", "stop_name": "AVENUE SAINT-MARC"}, "geometry": {"type": "Point", "coordinates": [2.28678993142112, 48.73294496958157]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "422530071bc5d3494d66e10a2afc4c7096a58d1f", "fields": {"departement": "92", "stop_lat": 48.744392912887015, "code_postal": "92002", "stop_lon": 2.303318700823705, "coord": [48.744392912887015, 2.303318700823705], "stop_id": 4770112, "stop_desc": "115 AVENUE DE LA DIVISION LECLERC - 92002", "stop_name": "BLANCHE DE CASTILLE"}, "geometry": {"type": "Point", "coordinates": [2.303318700823705, 48.744392912887015]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4d36dd8b38d6547e2d3bc352551572b4dcd341c7", "fields": {"departement": "92", "stop_lat": 48.754253556672694, "code_postal": "92002", "stop_lon": 2.3054464073012886, "coord": [48.754253556672694, 2.3054464073012886], "stop_id": 4770116, "stop_desc": "16 AVENUE ARISTIDE BRIAND - 92002", "stop_name": "AUGUSTE MOUNIE"}, "geometry": {"type": "Point", "coordinates": [2.3054464073012886, 48.754253556672694]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1ed19172ae04a561de46b679c3432335f086ab8d", "fields": {"departement": "92", "stop_lat": 48.777076174853896, "code_postal": "92014", "stop_lon": 2.313442392219605, "coord": [48.777076174853896, 2.313442392219605], "stop_id": 4770129, "stop_desc": "114 BOULEVARD DU MARECHAL JOFFRE - 92014", "stop_name": "PETIT CHAMBORD - LYCEE LAKANAL"}, "geometry": {"type": "Point", "coordinates": [2.313442392219605, 48.777076174853896]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "19ded47704c3a06c2e9bd82ef1455882227ada33", "fields": {"departement": "94", "stop_lat": 48.77562197572188, "code_postal": "94038", "stop_lon": 2.3260764080515264, "coord": [48.77562197572188, 2.3260764080515264], "stop_id": 4770134, "stop_desc": "74 AVENUE LARROUMES - 94038", "stop_name": "BARBUSSE - LARROUMES"}, "geometry": {"type": "Point", "coordinates": [2.3260764080515264, 48.77562197572188]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d61943f5b0dc3df9b1aa8c212188b582d10bd8c2", "fields": {"departement": "94", "stop_lat": 48.77630541298781, "code_postal": "94038", "stop_lon": 2.330767932472282, "coord": [48.77630541298781, 2.330767932472282], "stop_id": 4770136, "stop_desc": "30 AVENUE LARROUMES - 94038", "stop_name": "SOUS-PREFECTURE - ROSERAIE"}, "geometry": {"type": "Point", "coordinates": [2.330767932472282, 48.77630541298781]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c202d0ecea9fc7e08f7987764bd8e8319d7208c2", "fields": {"departement": "94", "stop_lat": 48.78092539114513, "code_postal": "94038", "stop_lon": 2.3347114303236176, "coord": [48.78092539114513, 2.3347114303236176], "stop_id": 4770140, "stop_desc": "AVENUE ARISTIDE BRIAND - 94038", "stop_name": "RUE DES JARDINS"}, "geometry": {"type": "Point", "coordinates": [2.3347114303236176, 48.78092539114513]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "61b0e8643fab54a1e1a295aedc3c238d627d62b6", "fields": {"departement": "94", "stop_lat": 48.797930487387106, "code_postal": "94016", "stop_lon": 2.333200475290441, "coord": [48.797930487387106, 2.333200475290441], "stop_id": 4770147, "stop_desc": "68 AVENUE COUSIN DE MERICOURT - 94016", "stop_name": "COUSIN DE MERICOURT"}, "geometry": {"type": "Point", "coordinates": [2.333200475290441, 48.797930487387106]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "af4855f429d09a7bf04a76c93fa1f494ffc03422", "fields": {"departement": "92", "stop_lat": 48.813532857337734, "code_postal": "92049", "stop_lon": 2.326122681236126, "coord": [48.813532857337734, 2.326122681236126], "stop_id": 4770159, "stop_desc": "105 AVENUE ARISTIDE BRIAND - 92049", "stop_name": "LEON GAMBETTA"}, "geometry": {"type": "Point", "coordinates": [2.326122681236126, 48.813532857337734]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bd0c24d942df51258a954ee020ed081083df8ca8", "fields": {"departement": "92", "stop_lat": 48.81817044569001, "code_postal": "92049", "stop_lon": 2.3253050858161446, "coord": [48.81817044569001, 2.3253050858161446], "stop_id": 4770162, "stop_desc": "52 AVENUE ARISTIDE BRIAND - 92049", "stop_name": "GABRIEL PERI"}, "geometry": {"type": "Point", "coordinates": [2.3253050858161446, 48.81817044569001]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c3f793ddfeaa732f5afcf0fd29abb13341a92024", "fields": {"departement": "75", "stop_lat": 48.82425513830218, "code_postal": "75114", "stop_lon": 2.3255759172850463, "coord": [48.82425513830218, 2.3255759172850463], "stop_id": 4770164, "stop_desc": "130 AVENUE DU GENERAL LECLERC - 75114", "stop_name": "PORTE D'ORLEANS"}, "geometry": {"type": "Point", "coordinates": [2.3255759172850463, 48.82425513830218]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c1e510054ab9723106a7fa7fe10ebb659508e8a5", "fields": {"departement": "75", "stop_lat": 48.82688858812294, "code_postal": "75114", "stop_lon": 2.3262695521776147, "coord": [48.82688858812294, 2.3262695521776147], "stop_id": 4770166, "stop_desc": "96 AVENUE DU GENERAL LECLERC - 75114", "stop_name": "ALESIA - GENERAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.3262695521776147, 48.82688858812294]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5d5be43413e4917f51251c3000fd6ac5f43aa940", "fields": {"departement": "75", "stop_lat": 48.832272512743295, "code_postal": "75114", "stop_lon": 2.3308562345483637, "coord": [48.832272512743295, 2.3308562345483637], "stop_id": 4770169, "stop_desc": "15 AVENUE DU GENERAL LECLERC - 75114", "stop_name": "DENFERT-ROCHEREAU - DAGUERRE"}, "geometry": {"type": "Point", "coordinates": [2.3308562345483637, 48.832272512743295]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "581ad27b1051b266105553d173464ba15bb221dc", "fields": {"departement": "75", "stop_lat": 48.83736862961524, "code_postal": "75114", "stop_lon": 2.3351171175760603, "coord": [48.83736862961524, 2.3351171175760603], "stop_id": 4770173, "stop_desc": "76 AVENUE DENFERT ROCHEREAU - 75114", "stop_name": "HOPITAL SAINT-VINCENT DE PAUL"}, "geometry": {"type": "Point", "coordinates": [2.3351171175760603, 48.83736862961524]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3749312a1bb0aa979151632e605d27ac2ad31b65", "fields": {"departement": "75", "stop_lat": 48.843552071590224, "code_postal": "75105", "stop_lon": 2.3389295319749386, "coord": [48.843552071590224, 2.3389295319749386], "stop_id": 4770176, "stop_desc": "109 BOULEVARD SAINT MICHEL - 75105", "stop_name": "AUGUSTE COMTE"}, "geometry": {"type": "Point", "coordinates": [2.3389295319749386, 48.843552071590224]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "42a731b2496660b370817a18d63733214fec7dcc", "fields": {"departement": "75", "stop_lat": 48.850067906070635, "code_postal": "75105", "stop_lon": 2.3425522330838273, "coord": [48.850067906070635, 2.3425522330838273], "stop_id": 4770178, "stop_desc": "29-31 BOULEVARD SAINT-MICHEL - 75105", "stop_name": "LES ECOLES"}, "geometry": {"type": "Point", "coordinates": [2.3425522330838273, 48.850067906070635]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "04243b58ff904df0130717cc5a972983f824c92c", "fields": {"departement": "75", "stop_lat": 48.82273618498334, "code_postal": "75114", "stop_lon": 2.325208756264251, "coord": [48.82273618498334, 2.325208756264251], "stop_id": 4770194, "stop_desc": "4 PLACE DU 25 AOUT 1944 - 75114", "stop_name": "PORTE D'ORLEANS-METRO"}, "geometry": {"type": "Point", "coordinates": [2.325208756264251, 48.82273618498334]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2c9b6b39566ec214f90e9dcc0b5d86d89c5d73bc", "fields": {"departement": "92", "stop_lat": 48.77892842194231, "code_postal": "92014", "stop_lon": 2.3173582668401624, "coord": [48.77892842194231, 2.3173582668401624], "stop_id": 4770197, "stop_desc": "11 BOULEVARD CARNOT - 92014", "stop_name": "MAIRIE DE BOURG-LA-REINE - CONDORCET"}, "geometry": {"type": "Point", "coordinates": [2.3173582668401624, 48.77892842194231]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "65b390154f059260d68c2c89db70e989a8cf1cbd", "fields": {"departement": "92", "stop_lat": 48.77960179320402, "code_postal": "92014", "stop_lon": 2.313400434821077, "coord": [48.77960179320402, 2.313400434821077], "stop_id": 4770198, "stop_desc": "72 BOULEVARD DU MARECHAL JOFFRE - 92014", "stop_name": "BOURG-LA-REINE RER"}, "geometry": {"type": "Point", "coordinates": [2.313400434821077, 48.77960179320402]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fda64221f077c404d34ef900effbabebea37ae4e", "fields": {"departement": "94", "stop_lat": 48.80719728561856, "code_postal": "94068", "stop_lon": 2.510106312999258, "coord": [48.80719728561856, 2.510106312999258], "stop_id": 4798790, "stop_desc": "PISTE GARE ROUTIERE - 94068", "stop_name": "CHAMPIGNY - SAINT-MAUR RER"}, "geometry": {"type": "Point", "coordinates": [2.510106312999258, 48.80719728561856]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aa380a7323f3b6b4a58357a89b21f584cb1d9a2e", "fields": {"departement": "93", "stop_lat": 48.86416066665349, "code_postal": "93006", "stop_lon": 2.4168757901089926, "coord": [48.86416066665349, 2.4168757901089926], "stop_id": 4798791, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 93006", "stop_name": "GALLIENI - METRO"}, "geometry": {"type": "Point", "coordinates": [2.4168757901089926, 48.86416066665349]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "72646f8eec112ebeaf5a4e9cda7d4ad0264b0c4c", "fields": {"departement": "75", "stop_lat": 48.838778695962546, "code_postal": "75112", "stop_lon": 2.4606240718932018, "coord": [48.838778695962546, 2.4606240718932018], "stop_id": 4798796, "stop_desc": "AV DE NOGENT - 75112", "stop_name": "PORTE JAUNE"}, "geometry": {"type": "Point", "coordinates": [2.4606240718932018, 48.838778695962546]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "10288ab42d551b70f714ad58148c10bd5868aaf7", "fields": {"departement": "94", "stop_lat": 48.84093592361724, "code_postal": "94058", "stop_lon": 2.4981004635094584, "coord": [48.84093592361724, 2.4981004635094584], "stop_id": 4798804, "stop_desc": "44 BIS-46 AVENUE LEDRU-ROLLIN - 94058", "stop_name": "LE PARC"}, "geometry": {"type": "Point", "coordinates": [2.4981004635094584, 48.84093592361724]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8b6124f21fd0b0c6ee1d4c65b7574dc6f7918ad1", "fields": {"departement": "94", "stop_lat": 48.8425473339877, "code_postal": "94058", "stop_lon": 2.502735049441534, "coord": [48.8425473339877, 2.502735049441534], "stop_id": 4798805, "stop_desc": "74 BIS-76 AVENUE LEDRU-ROLLIN - 94058", "stop_name": "LEDRU-ROLLIN - GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.502735049441534, 48.8425473339877]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "db68dffc78a14a6e7faf0a71a8aeee9a3a027e56", "fields": {"departement": "95", "stop_lat": 48.922984347654, "code_postal": "95063", "stop_lon": 2.2177760046771526, "coord": [48.922984347654, 2.2177760046771526], "stop_id": 4798850, "stop_desc": "0 R JULIUS ET ETHEL ROSENBERG - 95063", "stop_name": "PONT DE BEZONS"}, "geometry": {"type": "Point", "coordinates": [2.2177760046771526, 48.922984347654]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5ac37b61d95c9e73d7dc70cda822283ebb22f2fa", "fields": {"departement": "95", "stop_lat": 48.92383631923717, "code_postal": "95063", "stop_lon": 2.2074638641796867, "coord": [48.92383631923717, 2.2074638641796867], "stop_id": 4798854, "stop_desc": "66-68 RUE EMILE ZOLA - 95063", "stop_name": "GRAND CERF"}, "geometry": {"type": "Point", "coordinates": [2.2074638641796867, 48.92383631923717]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7d8c5f726e39f768f6fcfff5eb7b73978578845b", "fields": {"departement": "78", "stop_lat": 48.92879333610611, "code_postal": "78311", "stop_lon": 2.18882042051532, "coord": [48.92879333610611, 2.18882042051532], "stop_id": 4798858, "stop_desc": "BOULEVARD HENRI BARBUSSE - 78311", "stop_name": "EDOUARD BRANLY"}, "geometry": {"type": "Point", "coordinates": [2.18882042051532, 48.92879333610611]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0f941ed3cfb556b9f0f01fd36f9dfd7efd3007a5", "fields": {"departement": "78", "stop_lat": 48.93091823783335, "code_postal": "78311", "stop_lon": 2.184858825547949, "coord": [48.93091823783335, 2.184858825547949], "stop_id": 4798859, "stop_desc": "112 BOULEVARD HENRI BARBUSSE - 78311", "stop_name": "CAMILLE PELLETAN"}, "geometry": {"type": "Point", "coordinates": [2.184858825547949, 48.93091823783335]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "75e7b63fd3659177f4b1ab0d6496e5e6b0ffb790", "fields": {"departement": "95", "stop_lat": 48.92696288608361, "code_postal": "95063", "stop_lon": 2.2151345728058702, "coord": [48.92696288608361, 2.2151345728058702], "stop_id": 4798867, "stop_desc": "73 BIS RUE EDOUARD VAILLANT - 95063", "stop_name": "LA GRACE DE DIEU"}, "geometry": {"type": "Point", "coordinates": [2.2151345728058702, 48.92696288608361]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ecdb526bd60e5d6f04add0c528b1cad801643d2d", "fields": {"departement": "92", "stop_lat": 48.9172574350341, "code_postal": "92025", "stop_lon": 2.2247436060973063, "coord": [48.9172574350341, 2.2247436060973063], "stop_id": 4798869, "stop_desc": "195 BOULEVARD CHARLES DE GAULLE - 92025", "stop_name": "PARC PIERRE LAGRAVERE"}, "geometry": {"type": "Point", "coordinates": [2.2247436060973063, 48.9172574350341]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a07b2cdd911c5b9da6b7e3a731e88c2c8cefedf3", "fields": {"departement": "92", "stop_lat": 48.91127047277405, "code_postal": "92025", "stop_lon": 2.232855492651058, "coord": [48.91127047277405, 2.232855492651058], "stop_id": 4798871, "stop_desc": "79-83 BD CHARLES DE GAULLE - 92025", "stop_name": "BUFFON"}, "geometry": {"type": "Point", "coordinates": [2.232855492651058, 48.91127047277405]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a72c80799fa24486fb6e397bf94088abd4da3f4e", "fields": {"departement": "92", "stop_lat": 48.908972739931876, "code_postal": "92025", "stop_lon": 2.236282226502673, "coord": [48.908972739931876, 2.236282226502673], "stop_id": 4798872, "stop_desc": "15 BD CHARLES DE GAULLE - 92025", "stop_name": "GARE DE LA GARENNE-COLOMBES"}, "geometry": {"type": "Point", "coordinates": [2.236282226502673, 48.908972739931876]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ff6d8664693d97e17ef9ddf30c7df1ae83cd2051", "fields": {"departement": "92", "stop_lat": 48.90592820498449, "code_postal": "92035", "stop_lon": 2.238769379821047, "coord": [48.90592820498449, 2.238769379821047], "stop_id": 4798873, "stop_desc": "BD NATIONAL - 92035", "stop_name": "LA GARENNE-COLOMBES - CHARLEBOURG"}, "geometry": {"type": "Point", "coordinates": [2.238769379821047, 48.90592820498449]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "da23de1aefe23597adc9ec108049665d6044b449", "fields": {"departement": "92", "stop_lat": 48.90195641075173, "code_postal": "92026", "stop_lon": 2.2393767381339007, "coord": [48.90195641075173, 2.2393767381339007], "stop_id": 4798875, "stop_desc": "107 BD DE LA MISSION MARCHAND - 92026", "stop_name": "LES FAUVELLES"}, "geometry": {"type": "Point", "coordinates": [2.2393767381339007, 48.90195641075173]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4cb4ba97b396179432ca10800d3148376c246ded", "fields": {"departement": "92", "stop_lat": 48.8996110567207, "code_postal": "92026", "stop_lon": 2.2397219534481287, "coord": [48.8996110567207, 2.2397219534481287], "stop_id": 4798876, "stop_desc": "FACE 64-66 BD DE LA MISSION MARCHAND - 92026", "stop_name": "DIEPPE"}, "geometry": {"type": "Point", "coordinates": [2.2397219534481287, 48.8996110567207]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2153d7e2f8e6b7d3d15fb90bc8dcb3f82a36c2ca", "fields": {"departement": "75", "stop_lat": 48.86878024640262, "code_postal": "75120", "stop_lon": 2.4019108707815024, "coord": [48.86878024640262, 2.4019108707815024], "stop_id": 4798887, "stop_desc": "66 AVENUE GAMBETTA - 75120", "stop_name": "PELLEPORT - GAMBETTA"}, "geometry": {"type": "Point", "coordinates": [2.4019108707815024, 48.86878024640262]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b593738678f67aeb9752f8160a03651da01de851", "fields": {"departement": "93", "stop_lat": 48.949528301071275, "code_postal": "93079", "stop_lon": 2.342466901047511, "coord": [48.949528301071275, 2.342466901047511], "stop_id": 4798996, "stop_desc": "AVENUE DIVISION LECLERC - 93079", "stop_name": "CESAR"}, "geometry": {"type": "Point", "coordinates": [2.342466901047511, 48.949528301071275]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0802d09b826dda000392e71c78353b0c2384b975", "fields": {"departement": "93", "stop_lat": 48.95279044635948, "code_postal": "93079", "stop_lon": 2.3432723086856364, "coord": [48.95279044635948, 2.3432723086856364], "stop_id": 4798999, "stop_desc": "AVENUE DIVISION LECLERC - 93079", "stop_name": "JEAN VILAR"}, "geometry": {"type": "Point", "coordinates": [2.3432723086856364, 48.95279044635948]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f5becca163cd30de62937c58a425ba8389c8ccfa", "fields": {"departement": "93", "stop_lat": 48.956142470533194, "code_postal": "93079", "stop_lon": 2.3436002094431267, "coord": [48.956142470533194, 2.3436002094431267], "stop_id": 4799000, "stop_desc": "0 AVENUE DE LA DIVISION LECLERC - 93079", "stop_name": "PABLO NERUDA"}, "geometry": {"type": "Point", "coordinates": [2.3436002094431267, 48.956142470533194]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5747c6bd04a0a1db9036a0ea0bfc4e30b63b1469", "fields": {"departement": "93", "stop_lat": 48.95940472130654, "code_postal": "93079", "stop_lon": 2.3417036551721426, "coord": [48.95940472130654, 2.3417036551721426], "stop_id": 4799002, "stop_desc": "0 RUE DU 19 MARS 1962 - 93079", "stop_name": "VILLETANEUSE-UNIVERSITE"}, "geometry": {"type": "Point", "coordinates": [2.3417036551721426, 48.95940472130654]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "547ce4091eb3ff3610ff951914607310e6c06207", "fields": {"departement": "93", "stop_lat": 48.935886040957556, "code_postal": "93066", "stop_lon": 2.3472671436699484, "coord": [48.935886040957556, 2.3472671436699484], "stop_id": 4799008, "stop_desc": "BOULEVARD MARCEL SEMBAT - 93066", "stop_name": "SAINT-DENIS - GARE"}, "geometry": {"type": "Point", "coordinates": [2.3472671436699484, 48.935886040957556]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7c22e632aaf795d0d9145e5595832172f09776a8", "fields": {"departement": "93", "stop_lat": 48.947740038961946, "code_postal": "93031", "stop_lon": 2.339001125202127, "coord": [48.947740038961946, 2.339001125202127], "stop_id": 4799015, "stop_desc": "AVENUE DE LA REPUBLIQUE - 93031", "stop_name": "BLUMENTHAL"}, "geometry": {"type": "Point", "coordinates": [2.339001125202127, 48.947740038961946]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a8bf9410ac0ff1a7ea27727de12ae153eab20454", "fields": {"departement": "93", "stop_lat": 48.95022903676928, "code_postal": "93031", "stop_lon": 2.328194579942107, "coord": [48.95022903676928, 2.328194579942107], "stop_id": 4799016, "stop_desc": "163 AVENUE DE LA REPUBLIQUE - 93031", "stop_name": "LES MOBILES"}, "geometry": {"type": "Point", "coordinates": [2.328194579942107, 48.95022903676928]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "921f157950e319eae0f9bb37d59d246a9c9cae84", "fields": {"departement": "93", "stop_lat": 48.95355240902295, "code_postal": "93031", "stop_lon": 2.3150805668929446, "coord": [48.95355240902295, 2.3150805668929446], "stop_id": 4799020, "stop_desc": "0 AVENUE DE LATTRE DE TASSIGNY - 93031", "stop_name": "ROSE BERTIN (CENTRE COMMERCIAL L'ILO)"}, "geometry": {"type": "Point", "coordinates": [2.3150805668929446, 48.95355240902295]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "acda738f5f870097e24b79f9357aea9cc779c494", "fields": {"departement": "93", "stop_lat": 48.95536613363595, "code_postal": "93031", "stop_lon": 2.307738194162769, "coord": [48.95536613363595, 2.307738194162769], "stop_id": 4799024, "stop_desc": "3 AVENUE SALVADOR ALLENDE - 93031", "stop_name": "GILBERT BONNEMAISON"}, "geometry": {"type": "Point", "coordinates": [2.307738194162769, 48.95536613363595]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "402806713d4ada3de1a8cce29bc7ed7264fa5603", "fields": {"departement": "93", "stop_lat": 48.955939666503006, "code_postal": "93031", "stop_lon": 2.3018017525380583, "coord": [48.955939666503006, 2.3018017525380583], "stop_id": 4799026, "stop_desc": "PONT DE LA RESISTANCE - 93031", "stop_name": "EPINAY-SUR-SEINE - GARE"}, "geometry": {"type": "Point", "coordinates": [2.3018017525380583, 48.955939666503006]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8ff67c404805beec4b1028656898219937952ea2", "fields": {"departement": "93", "stop_lat": 48.9554433351439, "code_postal": "93031", "stop_lon": 2.295429359107739, "coord": [48.9554433351439, 2.295429359107739], "stop_id": 4799028, "stop_desc": "67 RUE FELIX MERLIN - 93031", "stop_name": "EPINAY - ORGEMONT"}, "geometry": {"type": "Point", "coordinates": [2.295429359107739, 48.9554433351439]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "134be321033aadf4e877c39756e304d959234174", "fields": {"departement": "92", "stop_lat": 48.827074737056954, "code_postal": "92077", "stop_lon": 2.1884715919839444, "coord": [48.827074737056954, 2.1884715919839444], "stop_id": 4834522, "stop_desc": "PLACE CHARLES LAROCHE - 92077", "stop_name": "EGLISE DE VILLE D'AVRAY"}, "geometry": {"type": "Point", "coordinates": [2.1884715919839444, 48.827074737056954]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6c3965d472fce1f0d83ee85a39a39e99e0675e80", "fields": {"departement": "92", "stop_lat": 48.82664499048473, "code_postal": "92077", "stop_lon": 2.189806825779462, "coord": [48.82664499048473, 2.189806825779462], "stop_id": 4834523, "stop_desc": "4 R DE SEVRES - 92077", "stop_name": "EGLISE DE VILLE D'AVRAY"}, "geometry": {"type": "Point", "coordinates": [2.189806825779462, 48.82664499048473]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2fcbc631df4098ff085455ed544bc11dc46db69a", "fields": {"departement": "78", "stop_lat": 48.838572506179005, "code_postal": "78126", "stop_lon": 2.1300830036565928, "coord": [48.838572506179005, 2.1300830036565928], "stop_id": 4834539, "stop_desc": "39 AVENUE LUCIEN RENE DUCHESNE - 78126", "stop_name": "PUITS D'ANGLE"}, "geometry": {"type": "Point", "coordinates": [2.1300830036565928, 48.838572506179005]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "63f3bcf467d488355e91dbf9090f606a69439fed", "fields": {"departement": "78", "stop_lat": 48.838554057013596, "code_postal": "78126", "stop_lon": 2.129810769119929, "coord": [48.838554057013596, 2.129810769119929], "stop_id": 4834540, "stop_desc": "18 AV LUCIEN RENE DUCHESNE - 78126", "stop_name": "PUITS D'ANGLE"}, "geometry": {"type": "Point", "coordinates": [2.129810769119929, 48.838554057013596]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d3021c77fa59f76e06358a7026fc75023a8afb99", "fields": {"departement": "78", "stop_lat": 48.844356604024235, "code_postal": "78126", "stop_lon": 2.1330283962556065, "coord": [48.844356604024235, 2.1330283962556065], "stop_id": 4834544, "stop_desc": "2 AV LUCIEN RENE DUCHESNE - 78126", "stop_name": "GUIBERT"}, "geometry": {"type": "Point", "coordinates": [2.1330283962556065, 48.844356604024235]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "825d63139c7d5b166ca68edd3801fcea90775c10", "fields": {"departement": "78", "stop_lat": 48.843493783225576, "code_postal": "78126", "stop_lon": 2.1383286907641343, "coord": [48.843493783225576, 2.1383286907641343], "stop_id": 4834546, "stop_desc": "PL CORNEILLE - 78126", "stop_name": "LA CELLE ST-CLOUD - GARE SNCF"}, "geometry": {"type": "Point", "coordinates": [2.1383286907641343, 48.843493783225576]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "736ba7558d7dba4a2dfb8a32c8fe68aa25595e0c", "fields": {"departement": "78", "stop_lat": 48.84631400713844, "code_postal": "78126", "stop_lon": 2.137214863170127, "coord": [48.84631400713844, 2.137214863170127], "stop_id": 4834548, "stop_desc": "FACE 2 AV PIERRE CORNEILLE - 78126", "stop_name": "PIERRE CORNEILLE"}, "geometry": {"type": "Point", "coordinates": [2.137214863170127, 48.84631400713844]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0a71b8fdfe08bbae075a369bb63f5152a3c92f5d", "fields": {"departement": "78", "stop_lat": 48.84702128469756, "code_postal": "78126", "stop_lon": 2.1355916378187394, "coord": [48.84702128469756, 2.1355916378187394], "stop_id": 4834549, "stop_desc": "16 AV CHARLES DE GAULLE - 78126", "stop_name": "HOTEL DE VILLE DE LA CELLE-SAINT-CLOUD"}, "geometry": {"type": "Point", "coordinates": [2.1355916378187394, 48.84702128469756]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e5d48bc3a883232b5eaa294614dffea573aa37fb", "fields": {"departement": "92", "stop_lat": 48.83679320715325, "code_postal": "92076", "stop_lon": 2.1463599668460693, "coord": [48.83679320715325, 2.1463599668460693], "stop_id": 4834552, "stop_desc": "137 BD DE LA REPUBLIQUE - 92076", "stop_name": "ROUTE DES PUITS"}, "geometry": {"type": "Point", "coordinates": [2.1463599668460693, 48.83679320715325]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "34d5767706a8a51d602a27c7cc4244e5225cf343", "fields": {"departement": "92", "stop_lat": 48.82587488052899, "code_postal": "92077", "stop_lon": 2.199677756460082, "coord": [48.82587488052899, 2.199677756460082], "stop_id": 4834557, "stop_desc": "FACE 114 R DE SEVRES - 92077", "stop_name": "SEVRES-VILLE D'AVRAY - GARE SNCF RIVE DROITE"}, "geometry": {"type": "Point", "coordinates": [2.199677756460082, 48.82587488052899]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2aa27855ecf5b3efba93dce8439a4ca34afa2334", "fields": {"departement": "92", "stop_lat": 48.82904303376725, "code_postal": "92072", "stop_lon": 2.2303119593717184, "coord": [48.82904303376725, 2.2303119593717184], "stop_id": 4834559, "stop_desc": "GARE ROUTIERE - 92072", "stop_name": "PONT DE SEVRES"}, "geometry": {"type": "Point", "coordinates": [2.2303119593717184, 48.82904303376725]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ba47e18b096fa2348f8339daa2208f4888b2a3d4", "fields": {"departement": "92", "stop_lat": 48.77990566863007, "code_postal": "92071", "stop_lon": 2.281440314220599, "coord": [48.77990566863007, 2.281440314220599], "stop_id": 4834560, "stop_desc": "FACE 4 AVENUE DE LA GARE - 92071", "stop_name": "ROBINSON RER"}, "geometry": {"type": "Point", "coordinates": [2.281440314220599, 48.77990566863007]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "db18e8239813879ec1201e2f8a5fc26c73274b47", "fields": {"departement": "92", "stop_lat": 48.77889294434602, "code_postal": "92071", "stop_lon": 2.2880508701269706, "coord": [48.77889294434602, 2.2880508701269706], "stop_id": 4834565, "stop_desc": "126 RUE HOUDAN - 92071", "stop_name": "MAIRIE DE SCEAUX"}, "geometry": {"type": "Point", "coordinates": [2.2880508701269706, 48.77889294434602]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bd4c8d36f5b337eeec96c3be627598a5045eb8a6", "fields": {"departement": "92", "stop_lat": 48.77866238995284, "code_postal": "92071", "stop_lon": 2.2963196859352615, "coord": [48.77866238995284, 2.2963196859352615], "stop_id": 4834569, "stop_desc": "17-19 BOULEVARD COLBERT - 92071", "stop_name": "EGLISE DE SCEAUX"}, "geometry": {"type": "Point", "coordinates": [2.2963196859352615, 48.77866238995284]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "622226d56f5fee0c4fdbee540d560810a21d016a", "fields": {"departement": "94", "stop_lat": 48.77195519735116, "code_postal": "94021", "stop_lon": 2.3439448491581363, "coord": [48.77195519735116, 2.3439448491581363], "stop_id": 4834589, "stop_desc": "80 AVENUE DU GENERAL DE GAULLE - 94021", "stop_name": "CIMETIERE COMMUNAL"}, "geometry": {"type": "Point", "coordinates": [2.3439448491581363, 48.77195519735116]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ea4c72bba90e228f8da85b01ea87e9e40fcbd9a7", "fields": {"departement": "94", "stop_lat": 48.77130776729869, "code_postal": "94021", "stop_lon": 2.3479289034384623, "coord": [48.77130776729869, 2.3479289034384623], "stop_id": 4834590, "stop_desc": "88 AVENUE DU GENERAL DE GAULLE - 94021", "stop_name": "MAIRIE DE CHEVILLY-LARUE"}, "geometry": {"type": "Point", "coordinates": [2.3479289034384623, 48.77130776729869]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "09a0c47988b38deccbc09f6711b685fbc7c2ad03", "fields": {"departement": "94", "stop_lat": 48.771091259341816, "code_postal": "94021", "stop_lon": 2.3546597120364807, "coord": [48.771091259341816, 2.3546597120364807], "stop_id": 4834593, "stop_desc": "27 RUE DU PERE MAZURIE - 94021", "stop_name": "EGLISE DE CHEVILLY-LARUE"}, "geometry": {"type": "Point", "coordinates": [2.3546597120364807, 48.771091259341816]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0d718c0240f42c61542e48cbfd1240fcbe98f724", "fields": {"departement": "94", "stop_lat": 48.77019074739032, "code_postal": "94021", "stop_lon": 2.363878479826917, "coord": [48.77019074739032, 2.363878479826917], "stop_id": 4834596, "stop_desc": "112 AVENUE DU PRESIDENT ROOSEVELT - 94021", "stop_name": "JACQUES BREL"}, "geometry": {"type": "Point", "coordinates": [2.363878479826917, 48.77019074739032]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "592fd5e74564c6eabd1ff0572178d7b0a329f437", "fields": {"departement": "94", "stop_lat": 48.76499465577505, "code_postal": "94021", "stop_lon": 2.367968239679133, "coord": [48.76499465577505, 2.367968239679133], "stop_id": 4834600, "stop_desc": "AVENUE DE STALINGRAD - 94021", "stop_name": "CIMETIERE PARISIEN DE THIAIS"}, "geometry": {"type": "Point", "coordinates": [2.367968239679133, 48.76499465577505]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e35de124ece539aa0e0a316b4f73e2528b86b360", "fields": {"departement": "94", "stop_lat": 48.759448634048056, "code_postal": "94073", "stop_lon": 2.3693244252130907, "coord": [48.759448634048056, 2.3693244252130907], "stop_id": 4834602, "stop_desc": "ROUTE DE THIAIS - 94073", "stop_name": "LE COR DE CHASSE"}, "geometry": {"type": "Point", "coordinates": [2.3693244252130907, 48.759448634048056]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "985b7f09f4fdbaa672e4ec1b8b7abe544cdb3fa8", "fields": {"departement": "94", "stop_lat": 48.76317343511212, "code_postal": "94021", "stop_lon": 2.3492460062814264, "coord": [48.76317343511212, 2.3492460062814264], "stop_id": 4834609, "stop_desc": "AVENUE DES MARAICHERS - 94021", "stop_name": "AGEN"}, "geometry": {"type": "Point", "coordinates": [2.3492460062814264, 48.76317343511212]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eb7ce539c7b187bbaf36499887afe7d684fb3adc", "fields": {"departement": "94", "stop_lat": 48.76461703210473, "code_postal": "94073", "stop_lon": 2.3684438760824804, "coord": [48.76461703210473, 2.3684438760824804], "stop_id": 4834615, "stop_desc": "AVENUE DE FONTAINEBLEAU - 94073", "stop_name": "CIMETIERE PARISIEN DE THIAIS"}, "geometry": {"type": "Point", "coordinates": [2.3684438760824804, 48.76461703210473]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9153f5c7c0b5b2b822a7dc213448391ec104c3b0", "fields": {"departement": "92", "stop_lat": 48.782711905190155, "code_postal": "92014", "stop_lon": 2.3147998813643778, "coord": [48.782711905190155, 2.3147998813643778], "stop_id": 4834620, "stop_desc": "FACE 43 BOULEVARD DU MARECHAL JOFFRE - 92014", "stop_name": "RUE DU 8 MAI 1945"}, "geometry": {"type": "Point", "coordinates": [2.3147998813643778, 48.782711905190155]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8b764cadd974a5f9bc4dc96cd9f8022d8fdf3685", "fields": {"departement": "92", "stop_lat": 48.77889294434602, "code_postal": "92071", "stop_lon": 2.2880508701269706, "coord": [48.77889294434602, 2.2880508701269706], "stop_id": 4834629, "stop_desc": "126 RUE HOUDAN - 92071", "stop_name": "MAIRIE DE SCEAUX"}, "geometry": {"type": "Point", "coordinates": [2.2880508701269706, 48.77889294434602]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "118b5f4e5d3c085b24ea0f91ea0b279488ee93d3", "fields": {"departement": "92", "stop_lat": 48.778723681750364, "code_postal": "92071", "stop_lon": 2.2918453420322225, "coord": [48.778723681750364, 2.2918453420322225], "stop_id": 4834630, "stop_desc": "2 AVENUE DE CAMBERWELL - 92071", "stop_name": "FONTENAY - HOUDAN"}, "geometry": {"type": "Point", "coordinates": [2.2918453420322225, 48.778723681750364]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cb3e4ea99995ab5da8e13abea8fa09a7596e8519", "fields": {"departement": "92", "stop_lat": 48.77843075794482, "code_postal": "92071", "stop_lon": 2.3028068802932182, "coord": [48.77843075794482, 2.3028068802932182], "stop_id": 4834635, "stop_desc": "49 BOULEVARD COLBERT - 92071", "stop_name": "PARC DE SCEAUX"}, "geometry": {"type": "Point", "coordinates": [2.3028068802932182, 48.77843075794482]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9a5d85ceaf924c092f32797015a08661bb967152", "fields": {"departement": "92", "stop_lat": 48.776285147903124, "code_postal": "92071", "stop_lon": 2.3130347834907137, "coord": [48.776285147903124, 2.3130347834907137], "stop_id": 4834637, "stop_desc": "0 AV FRANKLIN ROOSEVELT - 92071", "stop_name": "PETIT CHAMBORD"}, "geometry": {"type": "Point", "coordinates": [2.3130347834907137, 48.776285147903124]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "329a32f78b7865e1290e6b7362d5387e4015c93d", "fields": {"departement": "92", "stop_lat": 48.77960219728907, "code_postal": "92014", "stop_lon": 2.315508420878453, "coord": [48.77960219728907, 2.315508420878453], "stop_id": 4834639, "stop_desc": "PLACE CONDORCET - 92014", "stop_name": "CONDORCET - MAIRIE-RER"}, "geometry": {"type": "Point", "coordinates": [2.315508420878453, 48.77960219728907]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0b3124718560be719f0fee896dd19f60f04303ba", "fields": {"departement": "94", "stop_lat": 48.775559027184684, "code_postal": "94038", "stop_lon": 2.325736450284986, "coord": [48.775559027184684, 2.325736450284986], "stop_id": 4834642, "stop_desc": "65 AVENUE LARROUMES - 94038", "stop_name": "BARBUSSE - LARROUMES"}, "geometry": {"type": "Point", "coordinates": [2.325736450284986, 48.775559027184684]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "822d232a82b85b9c7d659b7275ce74a2daa8722a", "fields": {"departement": "94", "stop_lat": 48.77827394172297, "code_postal": "94038", "stop_lon": 2.3350379495207525, "coord": [48.77827394172297, 2.3350379495207525], "stop_id": 4834646, "stop_desc": "FACE 13 RUE JEAN JAURES - 94038", "stop_name": "SOUS-PREFECTURE - EGLISE DE L'HAY-LES-ROSES"}, "geometry": {"type": "Point", "coordinates": [2.3350379495207525, 48.77827394172297]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b0503e36ec79d84790a4fac71c9302cc20a673d2", "fields": {"departement": "94", "stop_lat": 48.77589211459192, "code_postal": "94038", "stop_lon": 2.3397704819584093, "coord": [48.77589211459192, 2.3397704819584093], "stop_id": 4834650, "stop_desc": "124 AVENUE PAUL VAILLANT COUTURIER - 94038", "stop_name": "TOURNELLES"}, "geometry": {"type": "Point", "coordinates": [2.3397704819584093, 48.77589211459192]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f9fe335da309e0923b2658da909cc5a0c53f133f", "fields": {"departement": "94", "stop_lat": 48.772629461588615, "code_postal": "94021", "stop_lon": 2.3397839218859495, "coord": [48.772629461588615, 2.3397839218859495], "stop_id": 4834652, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 94021", "stop_name": "JEAN MERMOZ - GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.3397839218859495, 48.772629461588615]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "293b3713934765e1c477dcb4b8e8c48ee36a3ac4", "fields": {"departement": "94", "stop_lat": 48.76329818182903, "code_postal": "94021", "stop_lon": 2.35730825180501, "coord": [48.76329818182903, 2.35730825180501], "stop_id": 4834670, "stop_desc": "AVENUE DE LA CITE - 94021", "stop_name": "MARCHE INTERNATIONAL DE RUNGIS"}, "geometry": {"type": "Point", "coordinates": [2.35730825180501, 48.76329818182903]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d1bbed5c7b5d8de12a3a916cea9b36fc592f686d", "fields": {"departement": "92", "stop_lat": 48.777524106211125, "code_postal": "92014", "stop_lon": 2.3069824873860822, "coord": [48.777524106211125, 2.3069824873860822], "stop_id": 4834680, "stop_desc": "36 AVENUE VICTOR HUGO - 92014", "stop_name": "LYCEE LAKANAL"}, "geometry": {"type": "Point", "coordinates": [2.3069824873860822, 48.777524106211125]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e050debd1535c0f12ce881ded3a501654dd77a08", "fields": {"departement": "95", "stop_lat": 49.048547258734644, "code_postal": "95127", "stop_lon": 2.0120551690790514, "coord": [49.048547258734644, 2.0120551690790514], "stop_id": 48429, "stop_desc": "Gare de Cergy-Le-haut - 95127", "stop_name": "Cergy-Le-Haut"}, "geometry": {"type": "Point", "coordinates": [2.0120551690790514, 49.048547258734644]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7b0e3d5a218710a4c05ed3cfc2eef016fb4e20bc", "fields": {"departement": "95", "stop_lat": 49.048547258734644, "code_postal": "95127", "stop_lon": 2.0120551690790514, "coord": [49.048547258734644, 2.0120551690790514], "stop_id": 48430, "stop_desc": "Gare de Cergy-Le-haut - 95127", "stop_name": "Cergy-Le-Haut"}, "geometry": {"type": "Point", "coordinates": [2.0120551690790514, 49.048547258734644]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "176a4b2b45db5a13629fd4110ef65a6171273eb4", "fields": {"departement": "75", "stop_lat": 48.82745038137856, "code_postal": "75113", "stop_lon": 2.3715308304362543, "coord": [48.82745038137856, 2.3715308304362543], "stop_id": 4843407, "stop_desc": "103-105 RUE DE PATAY - 75113", "stop_name": "PATAY - TOLBIAC"}, "geometry": {"type": "Point", "coordinates": [2.3715308304362543, 48.82745038137856]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "66f8d751aef1ae34d3400ae0f8e0f9b46bae692f", "fields": {"departement": "75", "stop_lat": 48.825948776082065, "code_postal": "75113", "stop_lon": 2.3737758280905648, "coord": [48.825948776082065, 2.3737758280905648], "stop_id": 4843409, "stop_desc": "67 RUE DE PATAY - 75113", "stop_name": "OUDINE"}, "geometry": {"type": "Point", "coordinates": [2.3737758280905648, 48.825948776082065]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a9e779d99f962316e2aefd76ea293782bce259c7", "fields": {"departement": "75", "stop_lat": 48.82641622966347, "code_postal": "75113", "stop_lon": 2.373463076930392, "coord": [48.82641622966347, 2.373463076930392], "stop_id": 4843410, "stop_desc": "62 RUE DE PATAY - 75113", "stop_name": "OUDINE"}, "geometry": {"type": "Point", "coordinates": [2.373463076930392, 48.82641622966347]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "158d37a32a56be68f668d92633332a43bd02fe0f", "fields": {"departement": "75", "stop_lat": 48.861203399239315, "code_postal": "75101", "stop_lon": 2.3411231334321685, "coord": [48.861203399239315, 2.3411231334321685], "stop_id": 3764508, "stop_desc": "16 RUE DU LOUVRE - 75101", "stop_name": "LOUVRE - RIVOLI"}, "geometry": {"type": "Point", "coordinates": [2.3411231334321685, 48.861203399239315]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1afa6c163077961e6189601119fd67e751184471", "fields": {"departement": "75", "stop_lat": 48.858237481253475, "code_postal": "75101", "stop_lon": 2.3429344426817336, "coord": [48.858237481253475, 2.3429344426817336], "stop_id": 3764509, "stop_desc": "FACE 22 QUAI DE LA MEGISSERIE - 75101", "stop_name": "PONT NEUF - QUAI DU LOUVRE"}, "geometry": {"type": "Point", "coordinates": [2.3429344426817336, 48.858237481253475]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0be5c425b30c0562bcb0fb676f7f4b8af6f46a08", "fields": {"departement": "75", "stop_lat": 48.85726596088864, "code_postal": "75104", "stop_lon": 2.3527954157613853, "coord": [48.85726596088864, 2.3527954157613853], "stop_id": 3764513, "stop_desc": "62 RUE DE RIVOLI - 75104", "stop_name": "HOTEL DE VILLE"}, "geometry": {"type": "Point", "coordinates": [2.3527954157613853, 48.85726596088864]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9e94277cdba8ae39069e863095d34074c899bdd7", "fields": {"departement": "75", "stop_lat": 48.83386184230507, "code_postal": "75113", "stop_lon": 2.3570632427962246, "coord": [48.83386184230507, 2.3570632427962246], "stop_id": 3764525, "stop_desc": "138 BOULEVARD DE L'HOPITAL - 75113", "stop_name": "RUBENS - ECOLE DES ARTS ET METIERS"}, "geometry": {"type": "Point", "coordinates": [2.3570632427962246, 48.83386184230507]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "991ea1aab5ce8da822cf5e30426ab06138b6d96c", "fields": {"departement": "75", "stop_lat": 48.83066259989052, "code_postal": "75113", "stop_lon": 2.3548566679640492, "coord": [48.83066259989052, 2.3548566679640492], "stop_id": 3764528, "stop_desc": "FACE 6 RUE BOBILLOT - 75113", "stop_name": "PLACE D'ITALIE"}, "geometry": {"type": "Point", "coordinates": [2.3548566679640492, 48.83066259989052]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9b5c32fad947ebc0a87e4386814c5faaf1ca7031", "fields": {"departement": "75", "stop_lat": 48.822718391470836, "code_postal": "75113", "stop_lon": 2.347340585960503, "coord": [48.822718391470836, 2.347340585960503], "stop_id": 3764535, "stop_desc": "FACE 104 RUE BOBILLOT - 75113", "stop_name": "RUNGIS"}, "geometry": {"type": "Point", "coordinates": [2.347340585960503, 48.822718391470836]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "21fd49b2c977545d227686056839b6883d43dd7d", "fields": {"departement": "75", "stop_lat": 48.821765942250764, "code_postal": "75113", "stop_lon": 2.3438423843456815, "coord": [48.821765942250764, 2.3438423843456815], "stop_id": 3764536, "stop_desc": "26 RUE DE RUNGIS - 75113", "stop_name": "AMIRAL MOUCHEZ"}, "geometry": {"type": "Point", "coordinates": [2.3438423843456815, 48.821765942250764]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9280ec84b5fadb4944fcb457ea52f4ebdcd4ef2d", "fields": {"departement": "75", "stop_lat": 48.83873312208706, "code_postal": "75105", "stop_lon": 2.3569970257346244, "coord": [48.83873312208706, 2.3569970257346244], "stop_id": 3764541, "stop_desc": "FACE 5 RUE GEOFFROY SAINT HILAIRE - 75105", "stop_name": "SAINT-MARCEL - JEANNE D'ARC"}, "geometry": {"type": "Point", "coordinates": [2.3569970257346244, 48.83873312208706]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9095eb5269651a5ba9e1fc0bc24fc10f148d32b4", "fields": {"departement": "75", "stop_lat": 48.86565205893974, "code_postal": "75102", "stop_lon": 2.3433847968096146, "coord": [48.86565205893974, 2.3433847968096146], "stop_id": 3764550, "stop_desc": "54 RUE DU LOUVRE - 75102", "stop_name": "LOUVRE - ETIENNE MARCEL"}, "geometry": {"type": "Point", "coordinates": [2.3433847968096146, 48.86565205893974]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "db60ff1b675256694e45189156cab6fdc9af055c", "fields": {"departement": "75", "stop_lat": 48.85790459227585, "code_postal": "75104", "stop_lon": 2.3480556928647136, "coord": [48.85790459227585, 2.3480556928647136], "stop_id": 3764617, "stop_desc": "FACE 1 BOULEVARD DE SEBASTOPOL - 75104", "stop_name": "CHATELET"}, "geometry": {"type": "Point", "coordinates": [2.3480556928647136, 48.85790459227585]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1703fbc2825b920e8ac3670a9b06724a717e3099", "fields": {"departement": "75", "stop_lat": 48.846634763899694, "code_postal": "75106", "stop_lon": 2.340250527561508, "coord": [48.846634763899694, 2.340250527561508], "stop_id": 3764621, "stop_desc": "FACE 71 BOULEVARD SAINT-MICHEL - 75106", "stop_name": "LUXEMBOURG"}, "geometry": {"type": "Point", "coordinates": [2.340250527561508, 48.846634763899694]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "78b942774735aaff0af8f6370b1f7cd1b594276a", "fields": {"departement": "75", "stop_lat": 48.83736862961524, "code_postal": "75114", "stop_lon": 2.3351171175760603, "coord": [48.83736862961524, 2.3351171175760603], "stop_id": 3764625, "stop_desc": "76 AVENUE DENFERT ROCHEREAU - 75114", "stop_name": "HOPITAL SAINT-VINCENT DE PAUL"}, "geometry": {"type": "Point", "coordinates": [2.3351171175760603, 48.83736862961524]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4da26d2fcd47189ac6152989249aef98744e3d66", "fields": {"departement": "75", "stop_lat": 48.83479812557195, "code_postal": "75114", "stop_lon": 2.3330342236102313, "coord": [48.83479812557195, 2.3330342236102313], "stop_id": 3764628, "stop_desc": "95 AVENUE DENFERT-ROCHEREAU - 75114", "stop_name": "DENFERT-ROCHEREAU - ARAGO"}, "geometry": {"type": "Point", "coordinates": [2.3330342236102313, 48.83479812557195]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3e6f5e7d38d4ffd77eaa9e8a0f41c0697450c38b", "fields": {"departement": "75", "stop_lat": 48.8316073794591, "code_postal": "75114", "stop_lon": 2.3299850499497685, "coord": [48.8316073794591, 2.3299850499497685], "stop_id": 3764630, "stop_desc": "32 AVENUE DU GENERAL LECLERC - 75114", "stop_name": "MOUTON - DUVERNET"}, "geometry": {"type": "Point", "coordinates": [2.3299850499497685, 48.8316073794591]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "98c60d06cdc583c9d38b164bd8f97d07dfbf89c0", "fields": {"departement": "75", "stop_lat": 48.839256036606045, "code_postal": "75114", "stop_lon": 2.3367645211123738, "coord": [48.839256036606045, 2.3367645211123738], "stop_id": 3764638, "stop_desc": "49 AVENUE DE L'OBSERVATOIRE - 75114", "stop_name": "OBSERVATOIRE - PORT ROYAL"}, "geometry": {"type": "Point", "coordinates": [2.3367645211123738, 48.839256036606045]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eb3c2af0798ef89b92884071e88fa1a42c9b3ace", "fields": {"departement": "75", "stop_lat": 48.843552071590224, "code_postal": "75105", "stop_lon": 2.3389295319749386, "coord": [48.843552071590224, 2.3389295319749386], "stop_id": 3764640, "stop_desc": "109 BOULEVARD SAINT MICHEL - 75105", "stop_name": "AUGUSTE COMTE"}, "geometry": {"type": "Point", "coordinates": [2.3389295319749386, 48.843552071590224]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0ec0c80ad82f3aa8e48142aa2b39d8512b06d971", "fields": {"departement": "75", "stop_lat": 48.874062503585236, "code_postal": "75110", "stop_lon": 2.3583048250119405, "coord": [48.874062503585236, 2.3583048250119405], "stop_id": 3764654, "stop_desc": "119 RUE DU FAUBOURG SAINT-MARTIN - 75110", "stop_name": "MAGENTA - SAINT-MARTIN"}, "geometry": {"type": "Point", "coordinates": [2.3583048250119405, 48.874062503585236]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bdf7f99260c751237e948cfe4accb4e95a084af4", "fields": {"departement": "75", "stop_lat": 48.84414524904412, "code_postal": "75106", "stop_lon": 2.3388750838231998, "coord": [48.84414524904412, 2.3388750838231998], "stop_id": 3764666, "stop_desc": "68 BOULEVARD SAINT-MICHEL - 75106", "stop_name": "AUGUSTE COMTE"}, "geometry": {"type": "Point", "coordinates": [2.3388750838231998, 48.84414524904412]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c8b6581732d3c8889138c43c0e9b1f2dd668cfe6", "fields": {"departement": "75", "stop_lat": 48.83389932071581, "code_postal": "75114", "stop_lon": 2.3319043229181324, "coord": [48.83389932071581, 2.3319043229181324], "stop_id": 3764671, "stop_desc": "2 PLACE DENFERT ROCHEREAU - 75114", "stop_name": "DENFERT-ROCHEREAU"}, "geometry": {"type": "Point", "coordinates": [2.3319043229181324, 48.83389932071581]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "807737c05b08ad4217b0836e22e61d4acfd2a5fc", "fields": {"departement": "75", "stop_lat": 48.82688858812294, "code_postal": "75114", "stop_lon": 2.3262695521776147, "coord": [48.82688858812294, 2.3262695521776147], "stop_id": 3764674, "stop_desc": "96 AVENUE DU GENERAL LECLERC - 75114", "stop_name": "ALESIA - GENERAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.3262695521776147, 48.82688858812294]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "59037c8a1bb53fa369a3b1636f8cb18ee6897ede", "fields": {"departement": "75", "stop_lat": 48.823877732286824, "code_postal": "75114", "stop_lon": 2.326379081464189, "coord": [48.823877732286824, 2.326379081464189], "stop_id": 3764694, "stop_desc": "PISTE GARE ROUTIERE - 75114", "stop_name": "PORTE D'ORLEANS"}, "geometry": {"type": "Point", "coordinates": [2.326379081464189, 48.823877732286824]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a3681f226f3233c40f6a73dcbe4f7a25acac7761", "fields": {"departement": "75", "stop_lat": 48.82688858812294, "code_postal": "75114", "stop_lon": 2.3262695521776147, "coord": [48.82688858812294, 2.3262695521776147], "stop_id": 3764697, "stop_desc": "96 AVENUE DU GENERAL LECLERC - 75114", "stop_name": "ALESIA - GENERAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.3262695521776147, 48.82688858812294]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0fa4c9d669df59194371242571634f99a259dc9c", "fields": {"departement": "75", "stop_lat": 48.82856931662518, "code_postal": "75114", "stop_lon": 2.3267048042473495, "coord": [48.82856931662518, 2.3267048042473495], "stop_id": 3764698, "stop_desc": "FACE 222 AVENUE DU MAINE - 75114", "stop_name": "ALESIA - MAINE"}, "geometry": {"type": "Point", "coordinates": [2.3267048042473495, 48.82856931662518]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "168d1ffc8d0546ae11495ddbd958bcdb090cda5e", "fields": {"departement": "75", "stop_lat": 48.828425493707726, "code_postal": "75114", "stop_lon": 2.326473417482039, "coord": [48.828425493707726, 2.326473417482039], "stop_id": 3764699, "stop_desc": "230 AVENUE DU MAINE - 75114", "stop_name": "ALESIA - MAINE"}, "geometry": {"type": "Point", "coordinates": [2.326473417482039, 48.828425493707726]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0202c1b58304b717fe61fc41eda3a9a9e1040b67", "fields": {"departement": "75", "stop_lat": 48.83556139338345, "code_postal": "75114", "stop_lon": 2.3238715506034704, "coord": [48.83556139338345, 2.3238715506034704], "stop_id": 3764704, "stop_desc": "115 AVENUE DU MAINE - 75114", "stop_name": "LOSSERAND - MAINE"}, "geometry": {"type": "Point", "coordinates": [2.3238715506034704, 48.83556139338345]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "79b9b3ccfb74e9ea5742600badc0662eb6f642b9", "fields": {"departement": "75", "stop_lat": 48.84659686626664, "code_postal": "75107", "stop_lon": 2.3155075746566527, "coord": [48.84659686626664, 2.3155075746566527], "stop_id": 3764713, "stop_desc": "FACE 149 RUE DE SEVRES - 75107", "stop_name": "HOPITAL DES ENFANTS MALADES"}, "geometry": {"type": "Point", "coordinates": [2.3155075746566527, 48.84659686626664]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3b3596083c1c31f1205642af4d11526266193c54", "fields": {"departement": "75", "stop_lat": 48.847252312369214, "code_postal": "75107", "stop_lon": 2.312239064677639, "coord": [48.847252312369214, 2.312239064677639], "stop_id": 3764714, "stop_desc": "3 PLACE DE BRETEUIL - 75107", "stop_name": "BRETEUIL"}, "geometry": {"type": "Point", "coordinates": [2.312239064677639, 48.847252312369214]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "33da860a724b0e2654a153d272deb4274680654d", "fields": {"departement": "75", "stop_lat": 48.85127746509786, "code_postal": "75107", "stop_lon": 2.306898591714339, "coord": [48.85127746509786, 2.306898591714339], "stop_id": 3764717, "stop_desc": "PLACE DE FONTENOY - 75107", "stop_name": "FONTENOY - UNESCO"}, "geometry": {"type": "Point", "coordinates": [2.306898591714339, 48.85127746509786]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5fa2ba9da2591fedd6d59f3b0980205212c1d286", "fields": {"departement": "75", "stop_lat": 48.85177243579447, "code_postal": "75107", "stop_lon": 2.3096084499711007, "coord": [48.85177243579447, 2.3096084499711007], "stop_id": 3764718, "stop_desc": "25-27 RUE D'ESTREES - 75107", "stop_name": "FONTENOY - UNESCO"}, "geometry": {"type": "Point", "coordinates": [2.3096084499711007, 48.85177243579447]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bfef50d707e9f9c86db1bb79314543745f641d28", "fields": {"departement": "75", "stop_lat": 48.85412622900593, "code_postal": "75107", "stop_lon": 2.305889085070191, "coord": [48.85412622900593, 2.305889085070191], "stop_id": 3764722, "stop_desc": "PLACE DE L'ECOLE MILITAIRE - 75107", "stop_name": "ECOLE MILITAIRE"}, "geometry": {"type": "Point", "coordinates": [2.305889085070191, 48.85412622900593]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "989b3617d1032bf6272779aab1d80b474d5d7a0b", "fields": {"departement": "75", "stop_lat": 48.856823360057476, "code_postal": "75107", "stop_lon": 2.309510416610672, "coord": [48.856823360057476, 2.309510416610672], "stop_id": 3764723, "stop_desc": "1-3 AVENUE DE LA MOTTE PICQUET - 75107", "stop_name": "INVALIDES - LA TOUR MAUBOURG"}, "geometry": {"type": "Point", "coordinates": [2.309510416610672, 48.856823360057476]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b3db25ee28bdd82566dd2880140c714a25d44632", "fields": {"departement": "75", "stop_lat": 48.857101967206134, "code_postal": "75107", "stop_lon": 2.309496647346594, "coord": [48.857101967206134, 2.309496647346594], "stop_id": 3764724, "stop_desc": "10 AVENUE DE LA MOTTE PICQUET - 75107", "stop_name": "INVALIDES - LA TOUR MAUBOURG"}, "geometry": {"type": "Point", "coordinates": [2.309496647346594, 48.857101967206134]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ccfeec61101dc831a688de43ec1ed1515c9f7bda", "fields": {"departement": "75", "stop_lat": 48.86525375030457, "code_postal": "75108", "stop_lon": 2.3104186054184357, "coord": [48.86525375030457, 2.3104186054184357], "stop_id": 3764729, "stop_desc": "FACE 5 AVENUE F.D. ROOSEVELT - 75108", "stop_name": "PALAIS DE LA DECOUVERTE"}, "geometry": {"type": "Point", "coordinates": [2.3104186054184357, 48.86525375030457]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "102c1f68a7d73a04f521f04ad98c19d4b4cf024b", "fields": {"departement": "75", "stop_lat": 48.86896518119029, "code_postal": "75108", "stop_lon": 2.3089181162214705, "coord": [48.86896518119029, 2.3089181162214705], "stop_id": 3764732, "stop_desc": "ROND-POINT DES CHAMPS ELYSEES-MARCEL DASSAULT - 75108", "stop_name": "ROND-POINT DES CHAMPS-ELYSEES"}, "geometry": {"type": "Point", "coordinates": [2.3089181162214705, 48.86896518119029]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "02d462867c50d835cb86de306cedaff60c1f8dd1", "fields": {"departement": "75", "stop_lat": 48.87310957780222, "code_postal": "75108", "stop_lon": 2.314719861927881, "coord": [48.87310957780222, 2.314719861927881], "stop_id": 3764734, "stop_desc": "6 AV DELCASSE - 75108", "stop_name": "MATIGNON - SAINT-HONORE"}, "geometry": {"type": "Point", "coordinates": [2.314719861927881, 48.87310957780222]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fc3805e2b24446a45034d819d1f60e7cfff367fe", "fields": {"departement": "75", "stop_lat": 48.87323478976855, "code_postal": "75108", "stop_lon": 2.311695174941694, "coord": [48.87323478976855, 2.311695174941694], "stop_id": 3764741, "stop_desc": "64 BIS RUE LA BOETIE - 75108", "stop_name": "SAINT-PHILIPPE-DU-ROULE"}, "geometry": {"type": "Point", "coordinates": [2.311695174941694, 48.87323478976855]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "11cba6713bb266ec66707f1a3eff07d27728adeb", "fields": {"departement": "75", "stop_lat": 48.844243191296684, "code_postal": "75115", "stop_lon": 2.3223578401351035, "coord": [48.844243191296684, 2.3223578401351035], "stop_id": 3764747, "stop_desc": "62 BOULEVARD DU MONTPARNASSE - 75115", "stop_name": "PLACE DU 18 JUIN 1940"}, "geometry": {"type": "Point", "coordinates": [2.3223578401351035, 48.844243191296684]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fe911b9bc3ace79b7c2fbed157d0ee87052f3eec", "fields": {"departement": "75", "stop_lat": 48.82856931662518, "code_postal": "75114", "stop_lon": 2.3267048042473495, "coord": [48.82856931662518, 2.3267048042473495], "stop_id": 3764751, "stop_desc": "FACE 222 AVENUE DU MAINE - 75114", "stop_name": "ALESIA - MAINE"}, "geometry": {"type": "Point", "coordinates": [2.3267048042473495, 48.82856931662518]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1b76e10dad206d6a886104f81d06c61e43ca8a42", "fields": {"departement": "75", "stop_lat": 48.837951981216136, "code_postal": "75114", "stop_lon": 2.322945100085369, "coord": [48.837951981216136, 2.322945100085369], "stop_id": 3764755, "stop_desc": "85-87 AVENUE DU MAINE - 75114", "stop_name": "GAITE"}, "geometry": {"type": "Point", "coordinates": [2.322945100085369, 48.837951981216136]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3ee7efccf9d3dbfabc517a811b22843ccfbe5c47", "fields": {"departement": "75", "stop_lat": 48.84107050639419, "code_postal": "75114", "stop_lon": 2.3216915658600388, "coord": [48.84107050639419, 2.3216915658600388], "stop_id": 3764756, "stop_desc": "41 AVENUE DU MAINE - 75114", "stop_name": "GARE MONTPARNASSE"}, "geometry": {"type": "Point", "coordinates": [2.3216915658600388, 48.84107050639419]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a4f4f20c584b4e541ac20ceb4ed9bea48656ad5c", "fields": {"departement": "75", "stop_lat": 48.84439601125354, "code_postal": "75106", "stop_lon": 2.3226165172926523, "coord": [48.84439601125354, 2.3226165172926523], "stop_id": 3764758, "stop_desc": "51 BOULEVARD DU MONTPARNASSE - 75106", "stop_name": "PLACE DU 18 JUIN 1940 - RUE DE L'ARRIVEE"}, "geometry": {"type": "Point", "coordinates": [2.3226165172926523, 48.84439601125354]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "51d5c3f7d6b49caa1ba383b6116ee7d7b5bd2a1a", "fields": {"departement": "75", "stop_lat": 48.851053844823404, "code_postal": "75107", "stop_lon": 2.311420112728856, "coord": [48.851053844823404, 2.311420112728856], "stop_id": 3764762, "stop_desc": "45 AVENUE DUQUESNE - 75107", "stop_name": "EL SALVADOR"}, "geometry": {"type": "Point", "coordinates": [2.311420112728856, 48.851053844823404]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3808ecef6388585cf7b534145d4a4dce6decbc2f", "fields": {"departement": "75", "stop_lat": 48.85430600663912, "code_postal": "75107", "stop_lon": 2.305997932351291, "coord": [48.85430600663912, 2.305997932351291], "stop_id": 3764765, "stop_desc": "5 PL DE L'ECOLE MILITAIRE - 75107", "stop_name": "ECOLE MILITAIRE"}, "geometry": {"type": "Point", "coordinates": [2.305997932351291, 48.85430600663912]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8e926b1bfd984e5d3f3164d4c7f43d302587d85d", "fields": {"departement": "75", "stop_lat": 48.85177243579447, "code_postal": "75107", "stop_lon": 2.3096084499711007, "coord": [48.85177243579447, 2.3096084499711007], "stop_id": 3764779, "stop_desc": "25-27 RUE D'ESTREES - 75107", "stop_name": "FONTENOY - UNESCO"}, "geometry": {"type": "Point", "coordinates": [2.3096084499711007, 48.85177243579447]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "095771c581ae9040a4968a47fc80f7b916fea5e2", "fields": {"departement": "75", "stop_lat": 48.844243191296684, "code_postal": "75115", "stop_lon": 2.3223578401351035, "coord": [48.844243191296684, 2.3223578401351035], "stop_id": 3764784, "stop_desc": "62 BOULEVARD DU MONTPARNASSE - 75115", "stop_name": "PLACE DU 18 JUIN 1940"}, "geometry": {"type": "Point", "coordinates": [2.3223578401351035, 48.844243191296684]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d7f9dd1fb54a5db212850382b14ddab00eb713e3", "fields": {"departement": "75", "stop_lat": 48.84311093931437, "code_postal": "75115", "stop_lon": 2.323842370185889, "coord": [48.84311093931437, 2.323842370185889], "stop_id": 3764785, "stop_desc": "10 RUE DU DEPART - 75115", "stop_name": "PLACE DU 18 JUIN 1940 - RUE DU DEPART"}, "geometry": {"type": "Point", "coordinates": [2.323842370185889, 48.84311093931437]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3a63e9fbc222a355ca862753f2b64346b9b02675", "fields": {"departement": "75", "stop_lat": 48.83250570951872, "code_postal": "75114", "stop_lon": 2.3247844616165105, "coord": [48.83250570951872, 2.3247844616165105], "stop_id": 3764790, "stop_desc": "178 AVENUE DU MAINE - 75114", "stop_name": "MAIRIE DU 14E"}, "geometry": {"type": "Point", "coordinates": [2.3247844616165105, 48.83250570951872]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6583d6ffed39ef8cda7773db8c3c559a2caad773", "fields": {"departement": "75", "stop_lat": 48.82688858812294, "code_postal": "75114", "stop_lon": 2.3262695521776147, "coord": [48.82688858812294, 2.3262695521776147], "stop_id": 3764792, "stop_desc": "96 AVENUE DU GENERAL LECLERC - 75114", "stop_name": "ALESIA - GENERAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.3262695521776147, 48.82688858812294]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aeb1001546aa1bfca489f29bcd0b1ad84930eedf", "fields": {"departement": "75", "stop_lat": 48.875636412341855, "code_postal": "75108", "stop_lon": 2.324079208673973, "coord": [48.875636412341855, 2.324079208673973], "stop_id": 3764795, "stop_desc": "14 RUE DE ROME - 75108", "stop_name": "GARE SAINT-LAZARE"}, "geometry": {"type": "Point", "coordinates": [2.324079208673973, 48.875636412341855]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7a9140b26f486fe64c0151d04926f37a79b5fa91", "fields": {"departement": "75", "stop_lat": 48.8733809275033, "code_postal": "75109", "stop_lon": 2.3274859090230406, "coord": [48.8733809275033, 2.3274859090230406], "stop_id": 3764796, "stop_desc": "19 RUE AUBER - 75109", "stop_name": "HAVRE - HAUSSMANN"}, "geometry": {"type": "Point", "coordinates": [2.3274859090230406, 48.8733809275033]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dcece9f2a0def8d8dbd409be788daa6de11cd717", "fields": {"departement": "75", "stop_lat": 48.86960655910574, "code_postal": "75102", "stop_lon": 2.332554568380394, "coord": [48.86960655910574, 2.332554568380394], "stop_id": 3764802, "stop_desc": "49 AVENUE DE L'OPERA - 75102", "stop_name": "OPERA - 4 SEPTEMBRE"}, "geometry": {"type": "Point", "coordinates": [2.332554568380394, 48.86960655910574]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0f2033fc12ceb924197f2aa47c24605f14806763", "fields": {"departement": "75", "stop_lat": 48.8697773289464, "code_postal": "75102", "stop_lon": 2.3328270241440445, "coord": [48.8697773289464, 2.3328270241440445], "stop_id": 3764803, "stop_desc": "38 AVENUE DE L'OPERA - 75102", "stop_name": "OPERA - 4 SEPTEMBRE"}, "geometry": {"type": "Point", "coordinates": [2.3328270241440445, 48.8697773289464]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d882bbd1a0a52375c17f5dbb8f94bb72d7f3cd41", "fields": {"departement": "75", "stop_lat": 48.861131521308295, "code_postal": "75101", "stop_lon": 2.3404011996628897, "coord": [48.861131521308295, 2.3404011996628897], "stop_id": 3764809, "stop_desc": "156 RUE DE RIVOLI - 75101", "stop_name": "LOUVRE - RIVOLI"}, "geometry": {"type": "Point", "coordinates": [2.3404011996628897, 48.861131521308295]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fd40c8d818bc8e3b8af65e6bb41af893f02c86d3", "fields": {"departement": "75", "stop_lat": 48.84384857248528, "code_postal": "75105", "stop_lon": 2.3421158616941082, "coord": [48.84384857248528, 2.3421158616941082], "stop_id": 3764818, "stop_desc": "38 RUE GAY LUSSAC - 75105", "stop_name": "SAINT-JACQUES - GAY-LUSSAC"}, "geometry": {"type": "Point", "coordinates": [2.3421158616941082, 48.84384857248528]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f953bd2982f13179ed37899d775804ff7bbd9ec9", "fields": {"departement": "75", "stop_lat": 48.82416580440166, "code_postal": "75114", "stop_lon": 2.339922551596341, "coord": [48.82416580440166, 2.339922551596341], "stop_id": 3764834, "stop_desc": "FACE 2 RUE GAZAN - 75114", "stop_name": "PARC MONTSOURIS"}, "geometry": {"type": "Point", "coordinates": [2.339922551596341, 48.82416580440166]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "893ffc91045b434e75554fd4db046a44f23fa9ff", "fields": {"departement": "75", "stop_lat": 48.82156834002888, "code_postal": "75114", "stop_lon": 2.3408887923895567, "coord": [48.82156834002888, 2.3408887923895567], "stop_id": 3764835, "stop_desc": "FACE 43 R GAZAN - 75114", "stop_name": "CITE UNIVERSITAIRE"}, "geometry": {"type": "Point", "coordinates": [2.3408887923895567, 48.82156834002888]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "36c5413d6ae50fbb070594f3c1062f2255267e3b", "fields": {"departement": "75", "stop_lat": 48.82464210089522, "code_postal": "75113", "stop_lon": 2.341610428553512, "coord": [48.82464210089522, 2.341610428553512], "stop_id": 3764839, "stop_desc": "27 RUE DE L'AMIRAL MOUCHEZ - 75113", "stop_name": "PARC MONTSOURIS"}, "geometry": {"type": "Point", "coordinates": [2.341610428553512, 48.82464210089522]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9f02967411acf69a84ffc8ff97c062a078b4f213", "fields": {"departement": "75", "stop_lat": 48.85534333466014, "code_postal": "75104", "stop_lon": 2.346107532202977, "coord": [48.85534333466014, 2.346107532202977], "stop_id": 3764844, "stop_desc": "1 BOULEVARD DU PALAIS - 75104", "stop_name": "CITE - PALAIS DE JUSTICE"}, "geometry": {"type": "Point", "coordinates": [2.346107532202977, 48.85534333466014]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c197c4b8d3ab4fb9b836328d5bdd84deb6ae3dc5", "fields": {"departement": "75", "stop_lat": 48.862578527141316, "code_postal": "75101", "stop_lon": 2.336028731198637, "coord": [48.862578527141316, 2.336028731198637], "stop_id": 3764846, "stop_desc": "172 RUE DE RIVOLI - 75101", "stop_name": "PALAIS ROYAL - MUSEE DU LOUVRE"}, "geometry": {"type": "Point", "coordinates": [2.336028731198637, 48.862578527141316]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "18cf4a91f5440283f17a36e5903db38d2a29e247", "fields": {"departement": "75", "stop_lat": 48.837593076985385, "code_postal": "75113", "stop_lon": 2.345137830029515, "coord": [48.837593076985385, 2.345137830029515], "stop_id": 3764972, "stop_desc": "37 BOULEVARD DU PORT ROYAL - 75113", "stop_name": "PORT ROYAL - BERTHOLLET"}, "geometry": {"type": "Point", "coordinates": [2.345137830029515, 48.837593076985385]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d6e9a22a67e4962953ef240bf347436f7ddc949e", "fields": {"departement": "75", "stop_lat": 48.84539937588007, "code_postal": "75112", "stop_lon": 2.3686422351772856, "coord": [48.84539937588007, 2.3686422351772856], "stop_id": 3764978, "stop_desc": "1 BOULEVARD DIDEROT - 75112", "stop_name": "PONT D'AUSTERLITZ - QUAI DE LA RAPEE"}, "geometry": {"type": "Point", "coordinates": [2.3686422351772856, 48.84539937588007]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4518a8524e0a59df5fc41825d380bcfa5e0c9e59", "fields": {"departement": "75", "stop_lat": 48.85233756126786, "code_postal": "75112", "stop_lon": 2.3692320501677595, "coord": [48.85233756126786, 2.3692320501677595], "stop_id": 3764984, "stop_desc": "BOULEVARD DE LA BASTILLE - 75112", "stop_name": "BASTILLE"}, "geometry": {"type": "Point", "coordinates": [2.3692320501677595, 48.85233756126786]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "afaf7be420ed78ba92a0f1bf122b01246846e95e", "fields": {"departement": "75", "stop_lat": 48.83978396247523, "code_postal": "75105", "stop_lon": 2.3608642805982956, "coord": [48.83978396247523, 2.3608642805982956], "stop_id": 3764986, "stop_desc": "FACE 1 BOULEVARD SAINT-MARCEL - 75105", "stop_name": "SAINT-MARCEL - LA PITIE"}, "geometry": {"type": "Point", "coordinates": [2.3608642805982956, 48.83978396247523]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9e66d125dc747a4fb560b834c3f81adbab98bbad", "fields": {"departement": "75", "stop_lat": 48.84248225530111, "code_postal": "75106", "stop_lon": 2.3286355034590827, "coord": [48.84248225530111, 2.3286355034590827], "stop_id": 3764993, "stop_desc": "103 BOULEVARD DU MONTPARNASSE - 75106", "stop_name": "VAVIN"}, "geometry": {"type": "Point", "coordinates": [2.3286355034590827, 48.84248225530111]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c13fc549be4150ecb2cece826c4058a6dc0b9d08", "fields": {"departement": "75", "stop_lat": 48.84375813058096, "code_postal": "75106", "stop_lon": 2.32465920663277, "coord": [48.84375813058096, 2.32465920663277], "stop_id": 3764994, "stop_desc": "71 BOULEVARD DU MONTPARNASSE - 75106", "stop_name": "PLACE DU 18 JUIN 1940"}, "geometry": {"type": "Point", "coordinates": [2.32465920663277, 48.84375813058096]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a25c78a9c5fbae3fc16a748e0ce6922d5ce80f01", "fields": {"departement": "75", "stop_lat": 48.87280602082973, "code_postal": "75109", "stop_lon": 2.3319275579709204, "coord": [48.87280602082973, 2.3319275579709204], "stop_id": 3765149, "stop_desc": "8 RUE GLUCK - 75109", "stop_name": "GLUCK - HAUSSMANN"}, "geometry": {"type": "Point", "coordinates": [2.3319275579709204, 48.87280602082973]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2c1af357dd8c4de5167a74eb5c8a07877d55b310", "fields": {"departement": "75", "stop_lat": 48.88575498901237, "code_postal": "75117", "stop_lon": 2.3165268570000785, "coord": [48.88575498901237, 2.3165268570000785], "stop_id": 3765158, "stop_desc": "135-137 BIS R DE ROME - 75117", "stop_name": "LEGENDRE"}, "geometry": {"type": "Point", "coordinates": [2.3165268570000785, 48.88575498901237]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2dafd96dc330b561ee53522d438bf7282071610f", "fields": {"departement": "75", "stop_lat": 48.887219302068104, "code_postal": "75117", "stop_lon": 2.3133100288020154, "coord": [48.887219302068104, 2.3133100288020154], "stop_id": 3765159, "stop_desc": "2 RUE JOUFFROY D'ABBANS - 75117", "stop_name": "PONT CARDINET"}, "geometry": {"type": "Point", "coordinates": [2.3133100288020154, 48.887219302068104]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c2ebfd34051e3d6327b3cfaf9287710d10912df7", "fields": {"departement": "75", "stop_lat": 48.89072171815623, "code_postal": "75117", "stop_lon": 2.302745882952136, "coord": [48.89072171815623, 2.302745882952136], "stop_id": 3765168, "stop_desc": "9-11 AVENUE DE LA PORTE D'ASNIERES - 75117", "stop_name": "PORTE D'ASNIERES"}, "geometry": {"type": "Point", "coordinates": [2.302745882952136, 48.89072171815623]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9213697bdc28f28ab9f679a72b05764d08ff1576", "fields": {"departement": "92", "stop_lat": 48.89356629689293, "code_postal": "92044", "stop_lon": 2.29004099936461, "coord": [48.89356629689293, 2.29004099936461], "stop_id": 3765178, "stop_desc": "47 RUE RIVAY - 92044", "stop_name": "ARISTIDE BRIAND"}, "geometry": {"type": "Point", "coordinates": [2.29004099936461, 48.89356629689293]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3a6e35f6d5b3484203cdc49c4e8bc772ca32ca95", "fields": {"departement": "92", "stop_lat": 48.89632355619837, "code_postal": "92044", "stop_lon": 2.285703974689775, "coord": [48.89632355619837, 2.285703974689775], "stop_id": 3765188, "stop_desc": "FACE 61 RUE PAUL VAILLANT COUTURIER - 92044", "stop_name": "PARC DE LA PLANCHETTE"}, "geometry": {"type": "Point", "coordinates": [2.285703974689775, 48.89632355619837]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "02664f80038e24bd320045692552b6af09d22357", "fields": {"departement": "75", "stop_lat": 48.85156893064887, "code_postal": "75106", "stop_lon": 2.337881145081453, "coord": [48.85156893064887, 2.337881145081453], "stop_id": 3765208, "stop_desc": "10 PLACE SAINT SULPICE - 75106", "stop_name": "EGLISE SAINT-SULPICE"}, "geometry": {"type": "Point", "coordinates": [2.337881145081453, 48.85156893064887]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f416391b3fdc59ae21bb70698096ed2883df4de4", "fields": {"departement": "75", "stop_lat": 48.85173952083802, "code_postal": "75106", "stop_lon": 2.3308265961909207, "coord": [48.85173952083802, 2.3308265961909207], "stop_id": 3765209, "stop_desc": "16-18 RUE DU VIEUX COLOMBIER - 75106", "stop_name": "MICHEL DEBRE"}, "geometry": {"type": "Point", "coordinates": [2.3308265961909207, 48.85173952083802]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b3fe2441c400772b9e256516c4e48a2101951de5", "fields": {"departement": "75", "stop_lat": 48.851793228857055, "code_postal": "75107", "stop_lon": 2.327612543675961, "coord": [48.851793228857055, 2.327612543675961], "stop_id": 3765210, "stop_desc": "16 RUE DE SEVRES - 75107", "stop_name": "SEVRES - BABYLONE"}, "geometry": {"type": "Point", "coordinates": [2.327612543675961, 48.851793228857055]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "82b568d0df4881772112fda46b2046ccec23de37", "fields": {"departement": "75", "stop_lat": 48.85918035179073, "code_postal": "75107", "stop_lon": 2.322258204605786, "coord": [48.85918035179073, 2.322258204605786], "stop_id": 3765217, "stop_desc": "231 BOULEVARD SAINT GERMAIN - 75107", "stop_name": "LILLE - UNIVERSITE"}, "geometry": {"type": "Point", "coordinates": [2.322258204605786, 48.85918035179073]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a41ec8dcd390054095f655cf04122ca331ef332e", "fields": {"departement": "75", "stop_lat": 48.861714527136336, "code_postal": "75107", "stop_lon": 2.3202278766917344, "coord": [48.861714527136336, 2.3202278766917344], "stop_id": 3765218, "stop_desc": "286 BOULEVARD SAINT GERMAIN - 75107", "stop_name": "ASSEMBLEE NATIONALE"}, "geometry": {"type": "Point", "coordinates": [2.3202278766917344, 48.861714527136336]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d2693f648147a4db1ed113f1a2d6769b1a16cc92", "fields": {"departement": "75", "stop_lat": 48.861543739204706, "code_postal": "75107", "stop_lon": 2.3200372331720067, "coord": [48.861543739204706, 2.3200372331720067], "stop_id": 3765219, "stop_desc": "241 BOULEVARD SAINT GERMAIN - 75107", "stop_name": "ASSEMBLEE NATIONALE"}, "geometry": {"type": "Point", "coordinates": [2.3200372331720067, 48.861543739204706]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "67ae8265d025adb2e06a8931be84cd75cd59577f", "fields": {"departement": "75", "stop_lat": 48.86275609127557, "code_postal": "75107", "stop_lon": 2.3144110612463655, "coord": [48.86275609127557, 2.3144110612463655], "stop_id": 3765221, "stop_desc": "QUAI D'ORSAY - 75107", "stop_name": "INVALIDES"}, "geometry": {"type": "Point", "coordinates": [2.3144110612463655, 48.86275609127557]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c5e3e20ef98c5f4390de0321f6ce4a790d2ce814", "fields": {"departement": "75", "stop_lat": 48.86282731865924, "code_postal": "75107", "stop_lon": 2.3111418130628483, "coord": [48.86282731865924, 2.3111418130628483], "stop_id": 3765222, "stop_desc": "FACE 41 QUAI D'ORSAY - 75107", "stop_name": "PONT DES INVALIDES - PLACE DE FINLANDE"}, "geometry": {"type": "Point", "coordinates": [2.3111418130628483, 48.86282731865924]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8d5edb0f1fb32a8a5380d6269923d4cc580bbf75", "fields": {"departement": "75", "stop_lat": 48.862574360122785, "code_postal": "75107", "stop_lon": 2.305720515567515, "coord": [48.862574360122785, 2.305720515567515], "stop_id": 3765224, "stop_desc": "FACE 71 QUAI D'ORSAY - 75107", "stop_name": "JEAN NICOT - EGLISE AMERICAINE"}, "geometry": {"type": "Point", "coordinates": [2.305720515567515, 48.862574360122785]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "47dcdb01aa2cf7a2e217fbc53e25a91d53538c98", "fields": {"departement": "75", "stop_lat": 48.862492511551345, "code_postal": "75107", "stop_lon": 2.3022742880608593, "coord": [48.862492511551345, 2.3022742880608593], "stop_id": 3765226, "stop_desc": "QUAI D'ORSAY - 75107", "stop_name": "BOSQUET - RAPP"}, "geometry": {"type": "Point", "coordinates": [2.3022742880608593, 48.862492511551345]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cc64452fb64bb9e82b6ff372ee9697d837bbf84c", "fields": {"departement": "75", "stop_lat": 48.86492756261513, "code_postal": "75108", "stop_lon": 2.300515370213525, "coord": [48.86492756261513, 2.300515370213525], "stop_id": 3765228, "stop_desc": "2-4 AVENUE DU PRESIDENT WILSON - 75108", "stop_name": "ALMA - MARCEAU"}, "geometry": {"type": "Point", "coordinates": [2.300515370213525, 48.86492756261513]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "77c4d27337680b37ddbb81b44ca30c6e11e9f51a", "fields": {"departement": "75", "stop_lat": 48.86379184179416, "code_postal": "75116", "stop_lon": 2.29100802489245, "coord": [48.86379184179416, 2.29100802489245], "stop_id": 3765232, "stop_desc": "43 AVENUE DU PRESIDENT WILSON - 75116", "stop_name": "ALBERT DE MUN"}, "geometry": {"type": "Point", "coordinates": [2.29100802489245, 48.86379184179416]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "47d25af7ec52f9309daaab1ae8f47bcc19589f33", "fields": {"departement": "75", "stop_lat": 48.864234985999346, "code_postal": "75116", "stop_lon": 2.277072212279539, "coord": [48.864234985999346, 2.277072212279539], "stop_id": 3765239, "stop_desc": "60 AVENUE HENRI MARTIN - 75116", "stop_name": "POMPE - MAIRIE DU XVI"}, "geometry": {"type": "Point", "coordinates": [2.277072212279539, 48.864234985999346]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "66517471cc36e52984afea70e0bc4a46c1d2e2aa", "fields": {"departement": "75", "stop_lat": 48.86237873625398, "code_postal": "75116", "stop_lon": 2.268138581898066, "coord": [48.86237873625398, 2.268138581898066], "stop_id": 3765245, "stop_desc": "BOULEVARD SUCHET - 75116", "stop_name": "PORTE DE LA MUETTE"}, "geometry": {"type": "Point", "coordinates": [2.268138581898066, 48.86237873625398]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c0cf753518af57a79d3f46e6bba5e961493e60a7", "fields": {"departement": "75", "stop_lat": 48.82619465911337, "code_postal": "75113", "stop_lon": 2.3610895038059874, "coord": [48.82619465911337, 2.3610895038059874], "stop_id": 3765260, "stop_desc": "129 BIS RUE DE TOLBIAC - 75113", "stop_name": "CHOISY - TOLBIAC"}, "geometry": {"type": "Point", "coordinates": [2.3610895038059874, 48.82619465911337]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d1628dda7c1c6c5d067fa9c7c3d753dd8d9a03a8", "fields": {"departement": "75", "stop_lat": 48.83380082882198, "code_postal": "75112", "stop_lon": 2.3828619715825954, "coord": [48.83380082882198, 2.3828619715825954], "stop_id": 3765266, "stop_desc": "4 RUE JOSEPH KESSEL - 75112", "stop_name": "PARC DE BERCY"}, "geometry": {"type": "Point", "coordinates": [2.3828619715825954, 48.83380082882198]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3c5339387f2ecec86d6a6ea57696fbde04dc0712", "fields": {"departement": "75", "stop_lat": 48.83547131898762, "code_postal": "75112", "stop_lon": 2.3858994861277054, "coord": [48.83547131898762, 2.3858994861277054], "stop_id": 3765267, "stop_desc": "2 RUE DE DIJON - 75112", "stop_name": "DIJON - LACHAMBEAUDIE"}, "geometry": {"type": "Point", "coordinates": [2.3858994861277054, 48.83547131898762]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "55016fc8d9d17427d36adec4efd19a3bf1691a1a", "fields": {"departement": "75", "stop_lat": 48.839677926300375, "code_postal": "75112", "stop_lon": 2.4036310221250616, "coord": [48.839677926300375, 2.4036310221250616], "stop_id": 3765272, "stop_desc": "30 RUE LOUIS BRAILLE - 75112", "stop_name": "LOUIS BRAILLE"}, "geometry": {"type": "Point", "coordinates": [2.4036310221250616, 48.839677926300375]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0a89db959b7e8389239dfa5c530e76b503ae8f12", "fields": {"departement": "75", "stop_lat": 48.85898367896563, "code_postal": "75120", "stop_lon": 2.402497969229797, "coord": [48.85898367896563, 2.402497969229797], "stop_id": 3765279, "stop_desc": "144-148 RUE DES PYRENEES - 75120", "stop_name": "PYRENEES - BAGNOLET"}, "geometry": {"type": "Point", "coordinates": [2.402497969229797, 48.85898367896563]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2f4b1cd0fab4f79ececd209a5e854a31f801bbc6", "fields": {"departement": "75", "stop_lat": 48.86528621644533, "code_postal": "75120", "stop_lon": 2.3980105115961146, "coord": [48.86528621644533, 2.3980105115961146], "stop_id": 3765283, "stop_desc": "241 RUE DES PYRENEES - 75120", "stop_name": "GAMBETTA - MAIRIE DU 20E"}, "geometry": {"type": "Point", "coordinates": [2.3980105115961146, 48.86528621644533]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fa0c18a8594c765198c123d148af4a52de5974b5", "fields": {"departement": "75", "stop_lat": 48.8444402577939, "code_postal": "75112", "stop_lon": 2.4055162496644247, "coord": [48.8444402577939, 2.4055162496644247], "stop_id": 3765290, "stop_desc": "55 AVENUE DU DOCTEUR ARNOLD NETTER - 75112", "stop_name": "AVENUE DE SAINT-MANDE"}, "geometry": {"type": "Point", "coordinates": [2.4055162496644247, 48.8444402577939]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "db4de7a91280758e6b2153d7512e0325f2456042", "fields": {"departement": "75", "stop_lat": 48.83908981547571, "code_postal": "75112", "stop_lon": 2.393813488428377, "coord": [48.83908981547571, 2.393813488428377], "stop_id": 3765295, "stop_desc": "37 RUE TAINE - 75112", "stop_name": "DAUMESNIL - FELIX EBOUE"}, "geometry": {"type": "Point", "coordinates": [2.393813488428377, 48.83908981547571]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1763ce89812294d2b0019006e8bd6166137b8901", "fields": {"departement": "75", "stop_lat": 48.84904336807399, "code_postal": "75106", "stop_lon": 2.332815175209435, "coord": [48.84904336807399, 2.332815175209435], "stop_id": 3765425, "stop_desc": "FACE 92 R BONAPARTE - 75106", "stop_name": "MUSEE DU LUXEMBOURG"}, "geometry": {"type": "Point", "coordinates": [2.332815175209435, 48.84904336807399]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bb1c0c3ce8291f4304f1816511caa7daa629cd38", "fields": {"departement": "75", "stop_lat": 48.848665899498116, "code_postal": "75106", "stop_lon": 2.332978623710176, "coord": [48.848665899498116, 2.332978623710176], "stop_id": 3765426, "stop_desc": "FACE 56 RUE DE VAUGIRARD - 75106", "stop_name": "MUSEE DU LUXEMBOURG"}, "geometry": {"type": "Point", "coordinates": [2.332978623710176, 48.848665899498116]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d23a62c2b2055bc7b69bc19244e925cca33430ac", "fields": {"departement": "75", "stop_lat": 48.85088579969521, "code_postal": "75106", "stop_lon": 2.332760543177277, "coord": [48.85088579969521, 2.332760543177277], "stop_id": 3765428, "stop_desc": "76 RUE BONAPARTE - 75106", "stop_name": "SAINT-SULPICE"}, "geometry": {"type": "Point", "coordinates": [2.332760543177277, 48.85088579969521]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "590778f42dd94c5e7a113d22292dae1906a356b4", "fields": {"departement": "75", "stop_lat": 48.85386019995564, "code_postal": "75107", "stop_lon": 2.3259642143692596, "coord": [48.85386019995564, 2.3259642143692596], "stop_id": 3765433, "stop_desc": "22 BOULEVARD RASPAIL - 75107", "stop_name": "VARENNE - RASPAIL"}, "geometry": {"type": "Point", "coordinates": [2.3259642143692596, 48.85386019995564]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "925c23a912ab659f16bdee0aeafb663a34c043ab", "fields": {"departement": "75", "stop_lat": 48.869956563045214, "code_postal": "75108", "stop_lon": 2.3253476474582184, "coord": [48.869956563045214, 2.3253476474582184], "stop_id": 3765443, "stop_desc": "16 PLACE DE LA MADELEINE - 75108", "stop_name": "MADELEINE"}, "geometry": {"type": "Point", "coordinates": [2.3253476474582184, 48.869956563045214]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2d66329fbbe2bacdf1320a2c6324d5ca81f12698", "fields": {"departement": "75", "stop_lat": 48.868626210205754, "code_postal": "75108", "stop_lon": 2.3232635941930755, "coord": [48.868626210205754, 2.3232635941930755], "stop_id": 3765444, "stop_desc": "23 RUE ROYAL - 75108", "stop_name": "MADELEINE"}, "geometry": {"type": "Point", "coordinates": [2.3232635941930755, 48.868626210205754]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "20a9d8c7412ccd1af9260894e03c4a1a29974a08", "fields": {"departement": "75", "stop_lat": 48.87793368576805, "code_postal": "75108", "stop_lon": 2.3056157934314117, "coord": [48.87793368576805, 2.3056157934314117], "stop_id": 3765453, "stop_desc": "76 RUE DE COURCELLES - 75108", "stop_name": "MURILLO"}, "geometry": {"type": "Point", "coordinates": [2.3056157934314117, 48.87793368576805]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "485704213f0484f23139317ecf9efa25d78182b1", "fields": {"departement": "95", "stop_lat": 48.97213772062274, "code_postal": "95197", "stop_lon": 2.3208740699720463, "coord": [48.97213772062274, 2.3208740699720463], "stop_id": 5150277, "stop_desc": "AVENUE MATHIEU CHAZOTTE - 95197", "stop_name": "MARCHE DES MORTEFONTAINES"}, "geometry": {"type": "Point", "coordinates": [2.3208740699720463, 48.97213772062274]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2e5ddf9b8ddf305f2d4f4dd5d01a4aafcc708b82", "fields": {"departement": "95", "stop_lat": 48.967113640425, "code_postal": "95197", "stop_lon": 2.3171084848838297, "coord": [48.967113640425, 2.3171084848838297], "stop_id": 5150281, "stop_desc": "32 AVENUE DE LA DIVISION LECLERC - 95197", "stop_name": "PLACE DE LA BARRE"}, "geometry": {"type": "Point", "coordinates": [2.3171084848838297, 48.967113640425]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "25611b9db022bc84999226e0655f33596fc05b60", "fields": {"departement": "95", "stop_lat": 48.96989876334839, "code_postal": "95197", "stop_lon": 2.3132035231717083, "coord": [48.96989876334839, 2.3132035231717083], "stop_id": 5150283, "stop_desc": "61 BIS AVENUE DE LA DIVISION LECLERC - 95197", "stop_name": "LES COUTURES"}, "geometry": {"type": "Point", "coordinates": [2.3132035231717083, 48.96989876334839]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b99a1d969375cddf8d110c4acc1093db3fad7f19", "fields": {"departement": "95", "stop_lat": 48.97401857154393, "code_postal": "95555", "stop_lon": 2.2950730688798373, "coord": [48.97401857154393, 2.2950730688798373], "stop_id": 5150287, "stop_desc": "FACE 114 AVENUE DE CEINTURE - 95555", "stop_name": "LYCEE D'ENGHIEN"}, "geometry": {"type": "Point", "coordinates": [2.2950730688798373, 48.97401857154393]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d2a10178bccd87a0b492db55d98977aadce18e34", "fields": {"departement": "93", "stop_lat": 48.91372104318945, "code_postal": "93055", "stop_lon": 2.4090708594396384, "coord": [48.91372104318945, 2.4090708594396384], "stop_id": 5150326, "stop_desc": "23 AVENUE DES COURTILLIERES - 93055", "stop_name": "DIVISION LECLERC - COURTILLIERES"}, "geometry": {"type": "Point", "coordinates": [2.4090708594396384, 48.91372104318945]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2a42d484f37a37d0fa0fabe9ce44608616ea8a66", "fields": {"departement": "93", "stop_lat": 48.91398933649287, "code_postal": "93055", "stop_lon": 2.4112255921185435, "coord": [48.91398933649287, 2.4112255921185435], "stop_id": 5150327, "stop_desc": "15 AV DES COURTILLIERES - 93055", "stop_name": "PLACE DU MARCHE"}, "geometry": {"type": "Point", "coordinates": [2.4112255921185435, 48.91398933649287]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ae435acb70b85c8d9837ce38e877b322e04cec05", "fields": {"departement": "93", "stop_lat": 48.90569029404579, "code_postal": "93008", "stop_lon": 2.459720013319434, "coord": [48.90569029404579, 2.459720013319434], "stop_id": 5150337, "stop_desc": "AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "CITE ADMINISTRATIVE"}, "geometry": {"type": "Point", "coordinates": [2.459720013319434, 48.90569029404579]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "176cf821d793518b774435bed7a6d8a51ee72e3f", "fields": {"departement": "93", "stop_lat": 48.90555453249922, "code_postal": "93008", "stop_lon": 2.469044655471792, "coord": [48.90555453249922, 2.469044655471792], "stop_id": 5150339, "stop_desc": "FACE 439 AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "PONT DE BONDY"}, "geometry": {"type": "Point", "coordinates": [2.469044655471792, 48.90555453249922]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "478c4b99a61fbd432e8ba2a87ff3f032be7c006c", "fields": {"departement": "93", "stop_lat": 48.90934329593462, "code_postal": "93008", "stop_lon": 2.472421887673177, "coord": [48.90934329593462, 2.472421887673177], "stop_id": 5150342, "stop_desc": "RUE DE VARSOVIE - 93008", "stop_name": "PLACE DE L'EUROPE"}, "geometry": {"type": "Point", "coordinates": [2.472421887673177, 48.90934329593462]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "be3f9211fb2a9c1d3fc6cfb43dd9d00335fea16d", "fields": {"departement": "93", "stop_lat": 48.913127869248015, "code_postal": "93010", "stop_lon": 2.486625780970679, "coord": [48.913127869248015, 2.486625780970679], "stop_id": 5150346, "stop_desc": "VOIE PROMENADE - 93010", "stop_name": "RONSARD - VILLON"}, "geometry": {"type": "Point", "coordinates": [2.486625780970679, 48.913127869248015]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "68e9de88a8a2c61b161bed41c77e18b135453d36", "fields": {"departement": "93", "stop_lat": 48.914227247147316, "code_postal": "93001", "stop_lon": 2.404026516251405, "coord": [48.914227247147316, 2.404026516251405], "stop_id": 5150370, "stop_desc": "AVENUE JEAN JAURES - 93001", "stop_name": "FORT D'AUBERVILLIERS-METRO"}, "geometry": {"type": "Point", "coordinates": [2.404026516251405, 48.914227247147316]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "69b33dd209ca249d93b20e4bbda297eadee6fde3", "fields": {"departement": "93", "stop_lat": 48.91398933649287, "code_postal": "93055", "stop_lon": 2.4112255921185435, "coord": [48.91398933649287, 2.4112255921185435], "stop_id": 5150374, "stop_desc": "15 AV DES COURTILLIERES - 93055", "stop_name": "PLACE DU MARCHE"}, "geometry": {"type": "Point", "coordinates": [2.4112255921185435, 48.91398933649287]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "599d43f653ea3a1e2c0c697b2ceae33a850a518d", "fields": {"departement": "93", "stop_lat": 48.910544162666014, "code_postal": "93008", "stop_lon": 2.416129016905065, "coord": [48.910544162666014, 2.416129016905065], "stop_id": 5150378, "stop_desc": "RUE DE L'ILLUSTRATION - 93008", "stop_name": "CITE DU PONT DE PIERRE"}, "geometry": {"type": "Point", "coordinates": [2.416129016905065, 48.910544162666014]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1274cbe19df562b533f01658dd2f706f352c0f41", "fields": {"departement": "93", "stop_lat": 48.91022964359314, "code_postal": "93008", "stop_lon": 2.41608763544949, "coord": [48.91022964359314, 2.41608763544949], "stop_id": 5150379, "stop_desc": "AVENUE DE L'ILLUSTRATION - 93008", "stop_name": "CITE DU PONT DE PIERRE"}, "geometry": {"type": "Point", "coordinates": [2.41608763544949, 48.91022964359314]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4850ad431b599011159cf091faa14fa7e0ec4d0c", "fields": {"departement": "93", "stop_lat": 48.90717332711018, "code_postal": "93008", "stop_lon": 2.4296073209290268, "coord": [48.90717332711018, 2.4296073209290268], "stop_id": 5150383, "stop_desc": "140 RUE DE LA REPUBLIQUE - 93008", "stop_name": "LYCEE ANDRE SABATIER"}, "geometry": {"type": "Point", "coordinates": [2.4296073209290268, 48.90717332711018]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2ef27f853422073492b2fd575dd49405929cda11", "fields": {"departement": "93", "stop_lat": 48.90949244703692, "code_postal": "93008", "stop_lon": 2.4676094660723726, "coord": [48.90949244703692, 2.4676094660723726], "stop_id": 5150400, "stop_desc": "60 AVENUE EDOUARD VAILLANT - 93008", "stop_name": "AVENUE MARCELLE"}, "geometry": {"type": "Point", "coordinates": [2.4676094660723726, 48.90949244703692]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "277e1e88f0bdf31fbc8922b9c1865310b8e474a2", "fields": {"departement": "93", "stop_lat": 48.90934329593462, "code_postal": "93008", "stop_lon": 2.472421887673177, "coord": [48.90934329593462, 2.472421887673177], "stop_id": 5150402, "stop_desc": "RUE DE VARSOVIE - 93008", "stop_name": "PLACE DE L'EUROPE"}, "geometry": {"type": "Point", "coordinates": [2.472421887673177, 48.90934329593462]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ec497e1c46990d905d54bfe83bebd7727d97da93", "fields": {"departement": "93", "stop_lat": 48.91127967872346, "code_postal": "93010", "stop_lon": 2.484098069741226, "coord": [48.91127967872346, 2.484098069741226], "stop_id": 5150407, "stop_desc": "6 AVENUE MARX DORMOY - 93010", "stop_name": "MAISON DE RETRAITE"}, "geometry": {"type": "Point", "coordinates": [2.484098069741226, 48.91127967872346]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3cea4235cabcfc2d2964992521c94fd247d9f608", "fields": {"departement": "93", "stop_lat": 48.914815575998425, "code_postal": "93057", "stop_lon": 2.4950437090960174, "coord": [48.914815575998425, 2.4950437090960174], "stop_id": 5150413, "stop_desc": "BOULEVARD DE PARIS - 93057", "stop_name": "LOUISE MICHEL"}, "geometry": {"type": "Point", "coordinates": [2.4950437090960174, 48.914815575998425]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "51f0744f4ce96391ee9796d3b98acd3bdd1af0cb", "fields": {"departement": "93", "stop_lat": 48.914959777941725, "code_postal": "93057", "stop_lon": 2.5013982786723648, "coord": [48.914959777941725, 2.5013982786723648], "stop_id": 5150417, "stop_desc": "FACE 91 AVENUE DE ROME - 93057", "stop_name": "Z.I. DE LA POUDRETTE"}, "geometry": {"type": "Point", "coordinates": [2.5013982786723648, 48.914959777941725]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b5a42cab34b8f31d3345962439afe8962300c0c1", "fields": {"departement": "93", "stop_lat": 48.910341920328406, "code_postal": "93010", "stop_lon": 2.479241618110349, "coord": [48.910341920328406, 2.479241618110349], "stop_id": 5150437, "stop_desc": "FACE 5 RUE PAUL RENAUD - 93010", "stop_name": "PAUL RENAUD"}, "geometry": {"type": "Point", "coordinates": [2.479241618110349, 48.910341920328406]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e96320a8ef88af99f56450d498849db65b29299d", "fields": {"departement": "93", "stop_lat": 48.91057947427579, "code_postal": "93008", "stop_lon": 2.46798032754968, "coord": [48.91057947427579, 2.46798032754968], "stop_id": 5150439, "stop_desc": "17 RUE DE ROME - 93008", "stop_name": "ROBESPIERRE - EDOUARD VAILLANT"}, "geometry": {"type": "Point", "coordinates": [2.46798032754968, 48.91057947427579]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5c4cfa550657a0c3007d281a1f6de3b2461c8dce", "fields": {"departement": "93", "stop_lat": 48.90870952071069, "code_postal": "93008", "stop_lon": 2.451083311558328, "coord": [48.90870952071069, 2.451083311558328], "stop_id": 5150441, "stop_desc": "AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "RENE CAMIER"}, "geometry": {"type": "Point", "coordinates": [2.451083311558328, 48.90870952071069]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c3c3538b8d020239c8d4928e5dafcb2651f8c337", "fields": {"departement": "93", "stop_lat": 48.90691264968876, "code_postal": "93008", "stop_lon": 2.4296750229551916, "coord": [48.90691264968876, 2.4296750229551916], "stop_id": 5150450, "stop_desc": "FACE 140 RUE DE LA REPUBLIQUE - 93008", "stop_name": "LYCEE ANDRE SABATIER"}, "geometry": {"type": "Point", "coordinates": [2.4296750229551916, 48.90691264968876]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "52b7a5dddc25400a4e173c6c03198e2110d5d79d", "fields": {"departement": "93", "stop_lat": 48.91372104318945, "code_postal": "93055", "stop_lon": 2.4090708594396384, "coord": [48.91372104318945, 2.4090708594396384], "stop_id": 5150471, "stop_desc": "23 AVENUE DES COURTILLIERES - 93055", "stop_name": "DIVISION LECLERC - COURTILLIERES"}, "geometry": {"type": "Point", "coordinates": [2.4090708594396384, 48.91372104318945]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "15ecf892e4eb6f9f71c98faaac4aba22e67080c2", "fields": {"departement": "93", "stop_lat": 48.90717332711018, "code_postal": "93008", "stop_lon": 2.4296073209290268, "coord": [48.90717332711018, 2.4296073209290268], "stop_id": 5150482, "stop_desc": "140 RUE DE LA REPUBLIQUE - 93008", "stop_name": "LYCEE ANDRE SABATIER"}, "geometry": {"type": "Point", "coordinates": [2.4296073209290268, 48.90717332711018]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aa1c510ef6a9137bb9ecc4093f75fd29a7e4bf82", "fields": {"departement": "93", "stop_lat": 48.906577135972725, "code_postal": "93008", "stop_lon": 2.4440166024805547, "coord": [48.906577135972725, 2.4440166024805547], "stop_id": 5150487, "stop_desc": "BOULEVARD LENINE - 93008", "stop_name": "HOTEL DE VILLE DE BOBIGNY"}, "geometry": {"type": "Point", "coordinates": [2.4440166024805547, 48.906577135972725]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a3ac488728fcafc0d4055834637f8daa55e05227", "fields": {"departement": "93", "stop_lat": 48.90752818929823, "code_postal": "93008", "stop_lon": 2.45522530113179, "coord": [48.90752818929823, 2.45522530113179], "stop_id": 5150492, "stop_desc": "AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "LAMARTINE"}, "geometry": {"type": "Point", "coordinates": [2.45522530113179, 48.90752818929823]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "41f0d74e7d824b105fdec99324f19c019c16410a", "fields": {"departement": "93", "stop_lat": 48.905486896676855, "code_postal": "93008", "stop_lon": 2.4651318210827156, "coord": [48.905486896676855, 2.4651318210827156], "stop_id": 5150494, "stop_desc": "412 AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "RUE DES PEUPLIERS"}, "geometry": {"type": "Point", "coordinates": [2.4651318210827156, 48.905486896676855]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dcbc841bb8a54282ebfa1016dc684e54f639c3dd", "fields": {"departement": "93", "stop_lat": 48.90585160187891, "code_postal": "93008", "stop_lon": 2.4685955199065472, "coord": [48.90585160187891, 2.4685955199065472], "stop_id": 5150497, "stop_desc": "433-435 AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "PONT DE BONDY"}, "geometry": {"type": "Point", "coordinates": [2.4685955199065472, 48.90585160187891]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d03972933248bdd447d5bfd60116e0ef28f97b2c", "fields": {"departement": "93", "stop_lat": 48.91398334545437, "code_postal": "93057", "stop_lon": 2.492327766588215, "coord": [48.91398334545437, 2.492327766588215], "stop_id": 5150506, "stop_desc": "BOULEVARD DE PARIS - 93057", "stop_name": "LYCEE CLAUDE-NICOLAS LEDOUX"}, "geometry": {"type": "Point", "coordinates": [2.492327766588215, 48.91398334545437]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d77006ac697998d37a3914db81255bc0d0a886d8", "fields": {"departement": "93", "stop_lat": 48.914815575998425, "code_postal": "93057", "stop_lon": 2.4950437090960174, "coord": [48.914815575998425, 2.4950437090960174], "stop_id": 5150508, "stop_desc": "BOULEVARD DE PARIS - 93057", "stop_name": "LOUISE MICHEL"}, "geometry": {"type": "Point", "coordinates": [2.4950437090960174, 48.914815575998425]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ae5345a5af6132ce4b23dad00385d5eb3f0b10af", "fields": {"departement": "93", "stop_lat": 48.91630523836681, "code_postal": "93057", "stop_lon": 2.4966845457751448, "coord": [48.91630523836681, 2.4966845457751448], "stop_id": 5150510, "stop_desc": "BOULEVARD DE PARIS - 93057", "stop_name": "ROBERT SCHUMAN"}, "geometry": {"type": "Point", "coordinates": [2.4966845457751448, 48.91630523836681]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "18230e94726d2a3135df3bd18c321854cd42b67d", "fields": {"departement": "93", "stop_lat": 48.913146574234354, "code_postal": "93057", "stop_lon": 2.5062738627029915, "coord": [48.913146574234354, 2.5062738627029915], "stop_id": 5150512, "stop_desc": "34-36 ALLEE DE MONTHYON - 93057", "stop_name": "COLONEL FABIEN"}, "geometry": {"type": "Point", "coordinates": [2.5062738627029915, 48.913146574234354]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "deeea4da3896b3594611d15ed8f6c9906c8ac608", "fields": {"departement": "93", "stop_lat": 48.91269796035546, "code_postal": "93046", "stop_lon": 2.518025667968358, "coord": [48.91269796035546, 2.518025667968358], "stop_id": 5150517, "stop_desc": "17 AVENUE VAUBAN - 93046", "stop_name": "GUTENBERG"}, "geometry": {"type": "Point", "coordinates": [2.518025667968358, 48.91269796035546]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6677992c333570b567c2d50f2aaef35dafd530ef", "fields": {"departement": "93", "stop_lat": 48.921330190639104, "code_postal": "93046", "stop_lon": 2.537584209689117, "coord": [48.921330190639104, 2.537584209689117], "stop_id": 5150524, "stop_desc": "FACE 20 ALLEE JOSEPH NOIZE - 93046", "stop_name": "FRANCOIS VILLON"}, "geometry": {"type": "Point", "coordinates": [2.537584209689117, 48.921330190639104]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "83d3f1c167330fd5615067c5e2759626308285d1", "fields": {"departement": "93", "stop_lat": 48.914959777941725, "code_postal": "93057", "stop_lon": 2.5013982786723648, "coord": [48.914959777941725, 2.5013982786723648], "stop_id": 5150528, "stop_desc": "FACE 91 AVENUE DE ROME - 93057", "stop_name": "Z.I. DE LA POUDRETTE"}, "geometry": {"type": "Point", "coordinates": [2.5013982786723648, 48.914959777941725]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "60adde7561c0a2e4bc214c817234c6866e1fba43", "fields": {"departement": "93", "stop_lat": 48.910725212870034, "code_postal": "93008", "stop_lon": 2.4742524960527454, "coord": [48.910725212870034, 2.4742524960527454], "stop_id": 5150532, "stop_desc": "CHEMIN DE GROSLAY - 93008", "stop_name": "ETIENNE DOLET"}, "geometry": {"type": "Point", "coordinates": [2.4742524960527454, 48.910725212870034]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "09b7998147f11decb2e72ade9a0d5cfbd78f2aab", "fields": {"departement": "93", "stop_lat": 48.90653371180456, "code_postal": "93008", "stop_lon": 2.4610444314823243, "coord": [48.90653371180456, 2.4610444314823243], "stop_id": 5150533, "stop_desc": "AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "AUGUSTE DELAUNE"}, "geometry": {"type": "Point", "coordinates": [2.4610444314823243, 48.90653371180456]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ed0359d86e1608fa9500eb220e2c7542a7a5afe8", "fields": {"departement": "93", "stop_lat": 48.914959777941725, "code_postal": "93057", "stop_lon": 2.5013982786723648, "coord": [48.914959777941725, 2.5013982786723648], "stop_id": 5150545, "stop_desc": "FACE 91 AVENUE DE ROME - 93057", "stop_name": "Z.I. DE LA POUDRETTE"}, "geometry": {"type": "Point", "coordinates": [2.5013982786723648, 48.914959777941725]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1ffac19d62a5e6efef10c466a3e89c029edd997f", "fields": {"departement": "94", "stop_lat": 48.784301382448355, "code_postal": "94028", "stop_lon": 2.454142929287659, "coord": [48.784301382448355, 2.454142929287659], "stop_id": 5150708, "stop_desc": "AVENUE DE LA BRECHE - 94028", "stop_name": "PREFECTURE DU VAL-DE-MARNE"}, "geometry": {"type": "Point", "coordinates": [2.454142929287659, 48.784301382448355]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8f7b34176992fe919023a9b12ec1454fbb82ca92", "fields": {"departement": "93", "stop_lat": 48.93200395405514, "code_postal": "93066", "stop_lon": 2.343870049993926, "coord": [48.93200395405514, 2.343870049993926], "stop_id": 5150711, "stop_desc": "RUE COIGNET - 93066", "stop_name": "GARE DE SAINT-DENIS RER"}, "geometry": {"type": "Point", "coordinates": [2.343870049993926, 48.93200395405514]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a2f2ebf01fda25e54eea5cf500167e1287a8a675", "fields": {"departement": "93", "stop_lat": 48.93611102433381, "code_postal": "93066", "stop_lon": 2.3423291401973225, "coord": [48.93611102433381, 2.3423291401973225], "stop_id": 5150713, "stop_desc": "QUAI DE SEINE - 93066", "stop_name": "RUE DU PORT"}, "geometry": {"type": "Point", "coordinates": [2.3423291401973225, 48.93611102433381]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2bbc56775c88c9cad09b4c22b11f9e840308dfc3", "fields": {"departement": "93", "stop_lat": 48.95270028392015, "code_postal": "93031", "stop_lon": 2.326925126589558, "coord": [48.95270028392015, 2.326925126589558], "stop_id": 5150721, "stop_desc": "RUE DU COMMANDANT LOUIS BOUCHET - 93031", "stop_name": "AVENUE DE LA MARNE - COMMANDANT LOUIS BOUCHET"}, "geometry": {"type": "Point", "coordinates": [2.326925126589558, 48.95270028392015]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "383ea1554817c575c58e756622064a12493f1a6f", "fields": {"departement": "93", "stop_lat": 48.959327361641414, "code_postal": "93031", "stop_lon": 2.300857779808279, "coord": [48.959327361641414, 2.300857779808279], "stop_id": 5150733, "stop_desc": "AVENUE DE LATTRE DE TASSIGNY - 93031", "stop_name": "JOFFRE - DE LATTRE DE TASSIGNY"}, "geometry": {"type": "Point", "coordinates": [2.300857779808279, 48.959327361641414]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ff49216e69e152eb73757dc187adb241e78c2989", "fields": {"departement": "95", "stop_lat": 48.97217114640024, "code_postal": "95210", "stop_lon": 2.3077559091969886, "coord": [48.97217114640024, 2.3077559091969886], "stop_id": 5150744, "stop_desc": "FACE 3 RUE DE L'ARRIVEE - 95210", "stop_name": "GARE D'ENGHIEN-LES-BAINS"}, "geometry": {"type": "Point", "coordinates": [2.3077559091969886, 48.97217114640024]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "62716b389a03057669da6f8ecc074763311e44b8", "fields": {"departement": "92", "stop_lat": 48.76388058039732, "code_postal": "92002", "stop_lon": 2.3083228234864057, "coord": [48.76388058039732, 2.3083228234864057], "stop_id": 5150749, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 92002", "stop_name": "GENERAL DE GAULLE - CROIX DE BERNY"}, "geometry": {"type": "Point", "coordinates": [2.3083228234864057, 48.76388058039732]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "10cc7f1e1e8503dc948182dfc36b21b3c79a98fb", "fields": {"departement": "75", "stop_lat": 48.83766430038165, "code_postal": "75114", "stop_lon": 2.322305268313168, "coord": [48.83766430038165, 2.322305268313168], "stop_id": 5150757, "stop_desc": "6 RUE JEAN ZAY - 75114", "stop_name": "JEAN ZAY - MAINE"}, "geometry": {"type": "Point", "coordinates": [2.322305268313168, 48.83766430038165]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "917b8955fca8aa4fbfe8899ded0861d4192b7c40", "fields": {"departement": "95", "stop_lat": 48.976763931744124, "code_postal": "95268", "stop_lon": 2.390728520601148, "coord": [48.976763931744124, 2.390728520601148], "stop_id": 5150762, "stop_desc": "PISTE GARE ROUTIERE - 95268", "stop_name": "GARGES - SARCELLES RER"}, "geometry": {"type": "Point", "coordinates": [2.390728520601148, 48.976763931744124]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8135e351d320357768658acb5b1e9698cfa6d869", "fields": {"departement": "95", "stop_lat": 48.96504556156512, "code_postal": "95555", "stop_lon": 2.284079576492923, "coord": [48.96504556156512, 2.284079576492923], "stop_id": 5150769, "stop_desc": "BOULEVARD DU MARECHAL FOCH - 95555", "stop_name": "BERTHIE ALBRECHT"}, "geometry": {"type": "Point", "coordinates": [2.284079576492923, 48.96504556156512]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7945eb64bcd42b9c5805eb7bfd9f5ff7b6c8b6d5", "fields": {"departement": "95", "stop_lat": 48.96414901405228, "code_postal": "95555", "stop_lon": 2.2890621661377106, "coord": [48.96414901405228, 2.2890621661377106], "stop_id": 5150772, "stop_desc": "FACE 80 BOULEVARD DU MARECHAL FOCH - 95555", "stop_name": "SAINT-GRATIEN-RER-GUYNEMER"}, "geometry": {"type": "Point", "coordinates": [2.2890621661377106, 48.96414901405228]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b424c132093f7165b0937293f4bb1fabe08cb69f", "fields": {"departement": "92", "stop_lat": 48.946459397738785, "code_postal": "92036", "stop_lon": 2.3043596243230122, "coord": [48.946459397738785, 2.3043596243230122], "stop_id": 5150781, "stop_desc": "FACE 144 BOULEVARD DEQUEVAUVILLIERS - 92036", "stop_name": "DEQUEVAUVILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.3043596243230122, 48.946459397738785]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8cd7c1b4890a55db2360669cbfe215b17a732d86", "fields": {"departement": "92", "stop_lat": 48.930970236654886, "code_postal": "92078", "stop_lon": 2.3273659298403806, "coord": [48.930970236654886, 2.3273659298403806], "stop_id": 5150797, "stop_desc": "RUE DU HAUT DE LA NOUE - 92078", "stop_name": "AMPERE"}, "geometry": {"type": "Point", "coordinates": [2.3273659298403806, 48.930970236654886]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "841ab65b6ee1d542687f7000f6f6110cd95076f0", "fields": {"departement": "92", "stop_lat": 48.92991799730106, "code_postal": "92078", "stop_lon": 2.320450963769417, "coord": [48.92991799730106, 2.320450963769417], "stop_id": 5150799, "stop_desc": "FACE 25 AVENUE DE LA LONGUE BERTRANE - 92078", "stop_name": "LONGUE BERTRANE"}, "geometry": {"type": "Point", "coordinates": [2.320450963769417, 48.92991799730106]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bc307194887f22a3c153c9e2a21508e807067d73", "fields": {"departement": "92", "stop_lat": 48.92516459095208, "code_postal": "92078", "stop_lon": 2.326166882721144, "coord": [48.92516459095208, 2.326166882721144], "stop_id": 5150802, "stop_desc": "22 BOULEVARD GALLIENI - 92078", "stop_name": "BONGARDE"}, "geometry": {"type": "Point", "coordinates": [2.326166882721144, 48.92516459095208]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "73ce360ccb90a6fa03d60992796f0fff1eec3365", "fields": {"departement": "95", "stop_lat": 48.986041856486096, "code_postal": "95252", "stop_lon": 2.224689584348839, "coord": [48.986041856486096, 2.224689584348839], "stop_id": 5150808, "stop_desc": "RUE DU PLESSIS BOUCHARD - 95252", "stop_name": "CLOS MILONS"}, "geometry": {"type": "Point", "coordinates": [2.224689584348839, 48.986041856486096]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "594cd96237866fd7097ed07c451019b52ac4f9af", "fields": {"departement": "95", "stop_lat": 48.977941255780124, "code_postal": "95582", "stop_lon": 2.240939501270696, "coord": [48.977941255780124, 2.240939501270696], "stop_id": 5150813, "stop_desc": "FACE 114 BOULEVARD GAMBETTA - 95582", "stop_name": "COLLEGE JEAN MOULIN"}, "geometry": {"type": "Point", "coordinates": [2.240939501270696, 48.977941255780124]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "58de0ae37311d6e5aecc0a859ede87b3a5b4400d", "fields": {"departement": "95", "stop_lat": 48.96624749846566, "code_postal": "95555", "stop_lon": 2.2792056624802877, "coord": [48.96624749846566, 2.2792056624802877], "stop_id": 5150825, "stop_desc": "18 BOULEVARD PASTEUR - 95555", "stop_name": "LIBERTE"}, "geometry": {"type": "Point", "coordinates": [2.2792056624802877, 48.96624749846566]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "694dea8f1b688fde22ff73d7c962fd02d2f9f2f7", "fields": {"departement": "95", "stop_lat": 48.96504556156512, "code_postal": "95555", "stop_lon": 2.284079576492923, "coord": [48.96504556156512, 2.284079576492923], "stop_id": 5150826, "stop_desc": "BOULEVARD DU MARECHAL FOCH - 95555", "stop_name": "BERTHIE ALBRECHT"}, "geometry": {"type": "Point", "coordinates": [2.284079576492923, 48.96504556156512]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "742bc37eaa41bd0f50cce57d90d83f457d4db6be", "fields": {"departement": "93", "stop_lat": 48.96121297521404, "code_postal": "93031", "stop_lon": 2.2959842493910503, "coord": [48.96121297521404, 2.2959842493910503], "stop_id": 5150830, "stop_desc": "95-97 AVENUE JOFFRE - 93031", "stop_name": "CYGNE D'ENGHIEN - JOFFRE"}, "geometry": {"type": "Point", "coordinates": [2.2959842493910503, 48.96121297521404]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9e36290888ef2136ddcf7f834bf2d85342be3a9c", "fields": {"departement": "93", "stop_lat": 48.96144666587019, "code_postal": "93031", "stop_lon": 2.296093244588012, "coord": [48.96144666587019, 2.296093244588012], "stop_id": 5150831, "stop_desc": "AVENUE JOFFRE - 93031", "stop_name": "CYGNE D'ENGHIEN - JOFFRE"}, "geometry": {"type": "Point", "coordinates": [2.296093244588012, 48.96144666587019]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aa89efc32d01afe3f81c77a102b8ab9216184593", "fields": {"departement": "93", "stop_lat": 48.95459321635721, "code_postal": "93031", "stop_lon": 2.3074930089657295, "coord": [48.95459321635721, 2.3074930089657295], "stop_id": 5150834, "stop_desc": "AVENUE DU 18 JUIN 1940 - 93031", "stop_name": "GILBERT BONNEMAISON"}, "geometry": {"type": "Point", "coordinates": [2.3074930089657295, 48.95459321635721]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ec8c865b91a1a7cc372735f4ec5f5262c8b062c8", "fields": {"departement": "92", "stop_lat": 48.941376361861714, "code_postal": "92078", "stop_lon": 2.3214294980369004, "coord": [48.941376361861714, 2.3214294980369004], "stop_id": 5150845, "stop_desc": "BOULEVARD CHARLES DE GAULLE - 92078", "stop_name": "PARC DEPARTEMENTAL"}, "geometry": {"type": "Point", "coordinates": [2.3214294980369004, 48.941376361861714]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d4bbcaa13f38e836c15634e3c616e62c5a5655a9", "fields": {"departement": "92", "stop_lat": 48.93722482016393, "code_postal": "92078", "stop_lon": 2.3245137022434514, "coord": [48.93722482016393, 2.3245137022434514], "stop_id": 5150848, "stop_desc": "AVENUE DU MARECHAL LECLERC - 92078", "stop_name": "MARECHAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.3245137022434514, 48.93722482016393]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "df80f56d73ff1416495c91db762e7a37f4a572cf", "fields": {"departement": "92", "stop_lat": 48.93472662034221, "code_postal": "92078", "stop_lon": 2.325932944395314, "coord": [48.93472662034221, 2.325932944395314], "stop_id": 5150849, "stop_desc": "AVENUE DE VERDUN - 92078", "stop_name": "LA NOUE"}, "geometry": {"type": "Point", "coordinates": [2.325932944395314, 48.93472662034221]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eb462762d0f23628d0a97c4ca4eac52043bc0bb1", "fields": {"departement": "92", "stop_lat": 48.929989857586115, "code_postal": "92078", "stop_lon": 2.320205431224248, "coord": [48.929989857586115, 2.320205431224248], "stop_id": 5150855, "stop_desc": "29 AVENUE DE LA LONGUE BERTRANE - 92078", "stop_name": "LONGUE BERTRANE"}, "geometry": {"type": "Point", "coordinates": [2.320205431224248, 48.929989857586115]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9fd6524909e88faafec3ed9e071c3242e40a1ee9", "fields": {"departement": "92", "stop_lat": 48.92591009969317, "code_postal": "92036", "stop_lon": 2.3224298215034977, "coord": [48.92591009969317, 2.3224298215034977], "stop_id": 5150857, "stop_desc": "RUE DE LA BONGARDE - 92036", "stop_name": "HENRI COLIN"}, "geometry": {"type": "Point", "coordinates": [2.3224298215034977, 48.92591009969317]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7d4d22fc1f3b723131e8bc9454d4950a56c292bd", "fields": {"departement": "92", "stop_lat": 48.92516459095208, "code_postal": "92078", "stop_lon": 2.326166882721144, "coord": [48.92516459095208, 2.326166882721144], "stop_id": 5150859, "stop_desc": "22 BOULEVARD GALLIENI - 92078", "stop_name": "BONGARDE"}, "geometry": {"type": "Point", "coordinates": [2.326166882721144, 48.92516459095208]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "803b41fab8ad491ee8d7b0643f15dadf297a4e38", "fields": {"departement": "95", "stop_lat": 48.984130408053744, "code_postal": "95252", "stop_lon": 2.227561018304272, "coord": [48.984130408053744, 2.227561018304272], "stop_id": 5150863, "stop_desc": "FACE 109 RUE DU GENERAL LECLERC - 95252", "stop_name": "PLACE DE CHARLES DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.227561018304272, 48.984130408053744]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "07ec4d99e5242398b32f0ebc96efc034ced44982", "fields": {"departement": "95", "stop_lat": 48.96920897201974, "code_postal": "95197", "stop_lon": 2.3295835303359436, "coord": [48.96920897201974, 2.3295835303359436], "stop_id": 5150869, "stop_desc": "RUE DE LA FONTAINE DU GUE - 95197", "stop_name": "ZONE ARTISANALE DU MOUTIER"}, "geometry": {"type": "Point", "coordinates": [2.3295835303359436, 48.96920897201974]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "287cda068deb9022555ca6a22dc9534031a10650", "fields": {"departement": "95", "stop_lat": 48.973432109036295, "code_postal": "95427", "stop_lon": 2.351082997166991, "coord": [48.973432109036295, 2.351082997166991], "stop_id": 5150901, "stop_desc": "1 RUE DE PIERREFITTE - 95427", "stop_name": "CARRIERES - BEL AIR"}, "geometry": {"type": "Point", "coordinates": [2.351082997166991, 48.973432109036295]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6c4f035eef883aac819ea41040969624a065d49a", "fields": {"departement": "95", "stop_lat": 48.973701794920984, "code_postal": "95427", "stop_lon": 2.3502913156532492, "coord": [48.973701794920984, 2.3502913156532492], "stop_id": 5150902, "stop_desc": "FACE 2 RUE DE PIERREFITTE - 95427", "stop_name": "CARRIERES - BEL AIR"}, "geometry": {"type": "Point", "coordinates": [2.3502913156532492, 48.973701794920984]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8c8b9a36f15cbbac5338041ce8648ea270b028a9", "fields": {"departement": "95", "stop_lat": 48.97224553492985, "code_postal": "95427", "stop_lon": 2.353812788019778, "coord": [48.97224553492985, 2.353812788019778], "stop_id": 5150904, "stop_desc": "101 RUE DE PIERREFITTE - 95427", "stop_name": "SUZANNE VALADON"}, "geometry": {"type": "Point", "coordinates": [2.353812788019778, 48.97224553492985]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ff462f8778f4af15a1f48b7887c2acc46eed3f16", "fields": {"departement": "93", "stop_lat": 48.96800268966229, "code_postal": "93059", "stop_lon": 2.360813583269688, "coord": [48.96800268966229, 2.360813583269688], "stop_id": 5150905, "stop_desc": "FACE 12 AVENUE DE LA REPUBLIQUE - 93059", "stop_name": "RUE DE LA REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.360813583269688, 48.96800268966229]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a9f7119c6c86ecf993584fb4429c6b820fe9efbc", "fields": {"departement": "93", "stop_lat": 48.96338120417252, "code_postal": "93059", "stop_lon": 2.370706426192739, "coord": [48.96338120417252, 2.370706426192739], "stop_id": 5150911, "stop_desc": "PISTE GARE ROUTIERE - 93059", "stop_name": "GARE DE PIERREFITTE - STAINS RER"}, "geometry": {"type": "Point", "coordinates": [2.370706426192739, 48.96338120417252]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "87933ffd7bf8f345ff4d70800d2c78f954b0817e", "fields": {"departement": "93", "stop_lat": 48.96636579066507, "code_postal": "93059", "stop_lon": 2.3668183934090736, "coord": [48.96636579066507, 2.3668183934090736], "stop_id": 5150912, "stop_desc": "47-49 BOULEVARD CHARLES DE GAULLE - 93059", "stop_name": "ETIENNE DOLET - DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.3668183934090736, 48.96636579066507]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d9076f2b90d3e748a79aee964a2207f7a46b1a20", "fields": {"departement": "95", "stop_lat": 48.97514933537442, "code_postal": "95197", "stop_lon": 2.3384969522336485, "coord": [48.97514933537442, 2.3384969522336485], "stop_id": 5150913, "stop_desc": "19 AVENUE DE LA GARE - 95197", "stop_name": "GARE DE DEUIL - MONTMAGNY"}, "geometry": {"type": "Point", "coordinates": [2.3384969522336485, 48.97514933537442]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9b6657c6259d87c848e7acd23142b040b8ceca14", "fields": {"departement": "93", "stop_lat": 48.96636579066507, "code_postal": "93059", "stop_lon": 2.3668183934090736, "coord": [48.96636579066507, 2.3668183934090736], "stop_id": 5150922, "stop_desc": "47-49 BOULEVARD CHARLES DE GAULLE - 93059", "stop_name": "ETIENNE DOLET - DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.3668183934090736, 48.96636579066507]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "be374d0efe10fae7e4e38d9bd0fbc7932130af41", "fields": {"departement": "93", "stop_lat": 48.96808355018677, "code_postal": "93059", "stop_lon": 2.3609091661790065, "coord": [48.96808355018677, 2.3609091661790065], "stop_id": 5150924, "stop_desc": "14-16 AVENUE DE LA REPUBLIQUE - 93059", "stop_name": "RUE DE LA REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.3609091661790065, 48.96808355018677]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ca12498ec64dbeaa21f8b7aaca0989c9dcae5e23", "fields": {"departement": "95", "stop_lat": 48.973701794920984, "code_postal": "95427", "stop_lon": 2.3502913156532492, "coord": [48.973701794920984, 2.3502913156532492], "stop_id": 5150926, "stop_desc": "FACE 2 RUE DE PIERREFITTE - 95427", "stop_name": "CARRIERES - BEL AIR"}, "geometry": {"type": "Point", "coordinates": [2.3502913156532492, 48.973701794920984]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a20f04e796b33d58c159707175fd3641667a12a2", "fields": {"departement": "92", "stop_lat": 48.896626824820075, "code_postal": "92044", "stop_lon": 2.2806467117291467, "coord": [48.896626824820075, 2.2806467117291467], "stop_id": 5151246, "stop_desc": "RUE ANATOLE FRANCE - 92044", "stop_name": "PONT DE LEVALLOIS-METRO"}, "geometry": {"type": "Point", "coordinates": [2.2806467117291467, 48.896626824820075]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "23db70fcd1ba6cf2201cfb810f961d373c3e983a", "fields": {"departement": "92", "stop_lat": 48.90158754314956, "code_postal": "92026", "stop_lon": 2.2638467550055252, "coord": [48.90158754314956, 2.2638467550055252], "stop_id": 5151250, "stop_desc": "FACE 26 BOULEVARD DE LA PAIX - 92026", "stop_name": "ULBACH"}, "geometry": {"type": "Point", "coordinates": [2.2638467550055252, 48.90158754314956]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "484b3449007379cdf6d686ca9caf30a4821a9cf7", "fields": {"departement": "93", "stop_lat": 48.96376745970183, "code_postal": "93059", "stop_lon": 2.3713072012659175, "coord": [48.96376745970183, 2.3713072012659175], "stop_id": 5151270, "stop_desc": "AVENUE LEDRU ROLLIN - 93059", "stop_name": "GARE DE PIERREFITTE - STAINS RER"}, "geometry": {"type": "Point", "coordinates": [2.3713072012659175, 48.96376745970183]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b6af0457affc1ac2d54d769a34eee99036b0b61e", "fields": {"departement": "93", "stop_lat": 48.96379828218265, "code_postal": "93079", "stop_lon": 2.352663627098073, "coord": [48.96379828218265, 2.352663627098073], "stop_id": 5151276, "stop_desc": "FACE 70 AVENUE JEAN JAURES - 93079", "stop_name": "GASTON NOREUX"}, "geometry": {"type": "Point", "coordinates": [2.352663627098073, 48.96379828218265]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4b52497755efe679f8d13c1cb7a088c4d4ae48ad", "fields": {"departement": "95", "stop_lat": 48.95659185515301, "code_postal": "95427", "stop_lon": 2.331932582935581, "coord": [48.95659185515301, 2.331932582935581], "stop_id": 5151292, "stop_desc": "11 ROUTE DE SAINT-LEU - 95427", "stop_name": "SABLONS"}, "geometry": {"type": "Point", "coordinates": [2.331932582935581, 48.95659185515301]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5d00c130d62f55a5b5e6312ab8f6cb5a57b88855", "fields": {"departement": "95", "stop_lat": 48.95631326835775, "code_postal": "95427", "stop_lon": 2.3319462579160413, "coord": [48.95631326835775, 2.3319462579160413], "stop_id": 5151293, "stop_desc": "209 ROUTE DE SAINT-LEU - 95427", "stop_name": "SABLONS"}, "geometry": {"type": "Point", "coordinates": [2.3319462579160413, 48.95631326835775]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a24e41493ce6e5fcb2f6fefac0bc76440d58252e", "fields": {"departement": "93", "stop_lat": 48.95284347419519, "code_postal": "93031", "stop_lon": 2.321466928731806, "coord": [48.95284347419519, 2.321466928731806], "stop_id": 5151301, "stop_desc": "FACE 15 RUE HENRI DUNANT - 93031", "stop_name": "LYCEE D'EPINAY-SUR-SEINE"}, "geometry": {"type": "Point", "coordinates": [2.321466928731806, 48.95284347419519]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "705842a4bc7a75b6ab75645795434f312bd110c5", "fields": {"departement": "93", "stop_lat": 48.95283371042151, "code_postal": "93031", "stop_lon": 2.3164044805876465, "coord": [48.95283371042151, 2.3164044805876465], "stop_id": 5151304, "stop_desc": "PLACE DU GENERAL LECLERC - 93031", "stop_name": "ROSE BERTIN"}, "geometry": {"type": "Point", "coordinates": [2.3164044805876465, 48.95283371042151]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "270f80dceb0c68ebd9f44be5b3fbb2664cae48cf", "fields": {"departement": "93", "stop_lat": 48.955849516158175, "code_postal": "93031", "stop_lon": 2.300860225319865, "coord": [48.955849516158175, 2.300860225319865], "stop_id": 5151310, "stop_desc": "FACE 11 RUE FELIX MERLIN - 93031", "stop_name": "EPINAY-SUR-SEINE - GARE"}, "geometry": {"type": "Point", "coordinates": [2.300860225319865, 48.955849516158175]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7bb0b005ae5cfc8677906e278ae5161c0e57566a", "fields": {"departement": "93", "stop_lat": 48.9552995000875, "code_postal": "93031", "stop_lon": 2.2952930146074264, "coord": [48.9552995000875, 2.2952930146074264], "stop_id": 5151313, "stop_desc": "RUE FELIX MERLIN - 93031", "stop_name": "EPINAY - ORGEMONT"}, "geometry": {"type": "Point", "coordinates": [2.2952930146074264, 48.9552995000875]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "98bc908d96bcea9c843d5246e0835f51029e893a", "fields": {"departement": "95", "stop_lat": 48.95486482367487, "code_postal": "95018", "stop_lon": 2.2867373511837186, "coord": [48.95486482367487, 2.2867373511837186], "stop_id": 5151319, "stop_desc": "366 RUE D'EPINAY - 95018", "stop_name": "SAINT-FERDINAND"}, "geometry": {"type": "Point", "coordinates": [2.2867373511837186, 48.95486482367487]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "977f81ef06f1800ee57f9fa19bb36b7cc915e26b", "fields": {"departement": "95", "stop_lat": 48.95426055316669, "code_postal": "95018", "stop_lon": 2.2818663904455354, "coord": [48.95426055316669, 2.2818663904455354], "stop_id": 5151320, "stop_desc": "FACE 278 RUE D'EPINAY - 95018", "stop_name": "COMMANDANT DOUE"}, "geometry": {"type": "Point", "coordinates": [2.2818663904455354, 48.95426055316669]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "00d82f597eb5bbb667c7d09df756edf25bd34a0d", "fields": {"departement": "95", "stop_lat": 48.954260761302514, "code_postal": "95018", "stop_lon": 2.2823167016210104, "coord": [48.954260761302514, 2.2823167016210104], "stop_id": 5151321, "stop_desc": "284 RUE D'EPINAY - 95018", "stop_name": "COMMANDANT DOUE"}, "geometry": {"type": "Point", "coordinates": [2.2823167016210104, 48.954260761302514]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b27ebedba205d1ad13c82001cae5956d51cc7d0b", "fields": {"departement": "95", "stop_lat": 48.95229983143422, "code_postal": "95018", "stop_lon": 2.278484458166501, "coord": [48.95229983143422, 2.278484458166501], "stop_id": 5151322, "stop_desc": "209 RUE D'EPINAY - 95018", "stop_name": "BELVEDERE"}, "geometry": {"type": "Point", "coordinates": [2.278484458166501, 48.95229983143422]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5e7b5c2087df14982d9018287e1a25b1f9a71a07", "fields": {"departement": "95", "stop_lat": 48.949851319780144, "code_postal": "95018", "stop_lon": 2.2706415707109318, "coord": [48.949851319780144, 2.2706415707109318], "stop_id": 5151327, "stop_desc": "128 RUE D'EPINAY - 95018", "stop_name": "NOBLET"}, "geometry": {"type": "Point", "coordinates": [2.2706415707109318, 48.949851319780144]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "48bd814f645d4de4cfe2b3837d05d3287d75f32e", "fields": {"departement": "95", "stop_lat": 48.94931110431608, "code_postal": "95018", "stop_lon": 2.268854836748575, "coord": [48.94931110431608, 2.268854836748575], "stop_id": 5151329, "stop_desc": "102-104 RUE D'EPINAY - 95018", "stop_name": "BERINGIER"}, "geometry": {"type": "Point", "coordinates": [2.268854836748575, 48.94931110431608]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a9fffc8208bf13b6c45df9d04e2d3479838e66aa", "fields": {"departement": "93", "stop_lat": 48.95855060672941, "code_postal": "93031", "stop_lon": 2.326732902077469, "coord": [48.95855060672941, 2.326732902077469], "stop_id": 5151338, "stop_desc": "AVENUE JEAN JAURES - 93031", "stop_name": "GARE D'EPINAY-VILLETANEUSE"}, "geometry": {"type": "Point", "coordinates": [2.326732902077469, 48.95855060672941]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b61ea4968b9d36b04ebe7ecec349c24326c07617", "fields": {"departement": "93", "stop_lat": 48.953824055600066, "code_postal": "93031", "stop_lon": 2.335385224920676, "coord": [48.953824055600066, 2.335385224920676], "stop_id": 5151339, "stop_desc": "149 ROUTE DE SAINT-LEU - 93031", "stop_name": "YSER"}, "geometry": {"type": "Point", "coordinates": [2.335385224920676, 48.953824055600066]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d7a84800acfc52dcafd389765fc5d86a303e1eb9", "fields": {"departement": "92", "stop_lat": 48.780045513014734, "code_postal": "92060", "stop_lon": 2.273552146199807, "coord": [48.780045513014734, 2.273552146199807], "stop_id": 5151447, "stop_desc": "AVENUE DE LA REPUBLIQUE - 92060", "stop_name": "ROBINSON"}, "geometry": {"type": "Point", "coordinates": [2.273552146199807, 48.780045513014734]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7bcc5e5f6601285724d174aba2506a0b1fd81e78", "fields": {"departement": "92", "stop_lat": 48.78150498892182, "code_postal": "92060", "stop_lon": 2.2638940624309085, "coord": [48.78150498892182, 2.2638940624309085], "stop_id": 5151454, "stop_desc": "AVENUE CHARLES DE GAULLE - 92060", "stop_name": "COEUR DE VILLE"}, "geometry": {"type": "Point", "coordinates": [2.2638940624309085, 48.78150498892182]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6babe4b9710eae9ee5e78a6365db3fbc1a5c23c6", "fields": {"departement": "94", "stop_lat": 48.80069437856847, "code_postal": "94068", "stop_lon": 2.4720301880146383, "coord": [48.80069437856847, 2.4720301880146383], "stop_id": 3663608, "stop_desc": "83 RUE DU PONT DE CRETEIL - 94068", "stop_name": "PONT DE CRETEIL"}, "geometry": {"type": "Point", "coordinates": [2.4720301880146383, 48.80069437856847]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f5bbb73ea8ad3e3e1f033fc50a3fb97a7d953fb2", "fields": {"departement": "94", "stop_lat": 48.78820032893041, "code_postal": "94068", "stop_lon": 2.4804719249684917, "coord": [48.78820032893041, 2.4804719249684917], "stop_id": 3663593, "stop_desc": "FACE 68 AVENUE DU PORT-AU-FOUARRE - 94068", "stop_name": "LA PIE"}, "geometry": {"type": "Point", "coordinates": [2.4804719249684917, 48.78820032893041]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "108e71e5ee590d41154f3cfe4256a464344a7f59", "fields": {"departement": "94", "stop_lat": 48.79366722744981, "code_postal": "94068", "stop_lon": 2.4859692603369736, "coord": [48.79366722744981, 2.4859692603369736], "stop_id": 3663589, "stop_desc": "FACE 38 BOULEVARD DE BELLECHASSE - 94068", "stop_name": "ADAMVILLE"}, "geometry": {"type": "Point", "coordinates": [2.4859692603369736, 48.79366722744981]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ba1ba7a332e79e6306c4a1d3e35043ea00302272", "fields": {"departement": "94", "stop_lat": 48.80797351546657, "code_postal": "94046", "stop_lon": 2.456101258640502, "coord": [48.80797351546657, 2.456101258640502], "stop_id": 3663604, "stop_desc": "27 RUE DANIELLE CASANOVA - 94046", "stop_name": "PLANETES"}, "geometry": {"type": "Point", "coordinates": [2.456101258640502, 48.80797351546657]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "da17302c1038679df1d4d00eb2993001bb765286", "fields": {"departement": "94", "stop_lat": 48.80990845052213, "code_postal": "94046", "stop_lon": 2.4439130420696116, "coord": [48.80990845052213, 2.4439130420696116], "stop_id": 3663600, "stop_desc": "76 AVENUE GAMBETTA - 94046", "stop_name": "RENE COTY"}, "geometry": {"type": "Point", "coordinates": [2.4439130420696116, 48.80990845052213]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7bb334a667583c3a44cb0fc2e1d6df4cab9bc4d1", "fields": {"departement": "94", "stop_lat": 48.79533218010759, "code_postal": "94068", "stop_lon": 2.4842055014973234, "coord": [48.79533218010759, 2.4842055014973234], "stop_id": 3663588, "stop_desc": "76 RUE GARIBALDI - 94068", "stop_name": "GARIBALDI"}, "geometry": {"type": "Point", "coordinates": [2.4842055014973234, 48.79533218010759]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bf186c847e233c65eb59221444b2c3c9b1fe0dd0", "fields": {"departement": "94", "stop_lat": 48.80479502747449, "code_postal": "94068", "stop_lon": 2.4853072019162816, "coord": [48.80479502747449, 2.4853072019162816], "stop_id": 3663659, "stop_desc": "BOULEVARD RABELAIS - 94068", "stop_name": "LE PARC DE SAINT-MAUR RER"}, "geometry": {"type": "Point", "coordinates": [2.4853072019162816, 48.80479502747449]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e8cd7546eb75e3cd84d8bbbfaa58e7a8a1221276", "fields": {"departement": "94", "stop_lat": 48.806185859569304, "code_postal": "94068", "stop_lon": 2.4798139815274216, "coord": [48.806185859569304, 2.4798139815274216], "stop_id": 3663658, "stop_desc": "FACE 47 BOULEVARD RABELAIS - 94068", "stop_name": "CIMETIERE - RABELAIS"}, "geometry": {"type": "Point", "coordinates": [2.4798139815274216, 48.806185859569304]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "42bed2da12a2b970c8a7aa562b29682976b2d940", "fields": {"departement": "94", "stop_lat": 48.80386787555055, "code_postal": "94068", "stop_lon": 2.4713308992074583, "coord": [48.80386787555055, 2.4713308992074583], "stop_id": 3663623, "stop_desc": "FACE 59 RUE DU PONT DE CRETEIL - 94068", "stop_name": "RUE DES REMISES"}, "geometry": {"type": "Point", "coordinates": [2.4713308992074583, 48.80386787555055]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "27d474a55569bdb8ba16435bb260579bc2fc96c0", "fields": {"departement": "94", "stop_lat": 48.809556539237605, "code_postal": "94046", "stop_lon": 2.4549210064796254, "coord": [48.809556539237605, 2.4549210064796254], "stop_id": 3663629, "stop_desc": "FACE 2 RUE DE VENUS - 94046", "stop_name": "PONT DE MAISONS-ALFORT"}, "geometry": {"type": "Point", "coordinates": [2.4549210064796254, 48.809556539237605]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b7eaaba02fc6246be4707e11c1088aef215065e7", "fields": {"departement": "94", "stop_lat": 48.80231504419326, "code_postal": "94028", "stop_lon": 2.4611360862683753, "coord": [48.80231504419326, 2.4611360862683753], "stop_id": 3663652, "stop_desc": "FACE 62 RUE CHERET - 94028", "stop_name": "CHERET - LAFERRIERE"}, "geometry": {"type": "Point", "coordinates": [2.4611360862683753, 48.80231504419326]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cf667e5d0a56a3a9f2a4f41e4d4efe5fe86e2c85", "fields": {"departement": "94", "stop_lat": 48.80010479141968, "code_postal": "94068", "stop_lon": 2.484164587731033, "coord": [48.80010479141968, 2.484164587731033], "stop_id": 3663661, "stop_desc": "AVENUE EMILE ZOLA - 94068", "stop_name": "QUATRE SEPTEMBRE"}, "geometry": {"type": "Point", "coordinates": [2.484164587731033, 48.80010479141968]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9934bc0bfffb97b671d5124c0b07c4c5085abdcc", "fields": {"departement": "94", "stop_lat": 48.80292714697353, "code_postal": "94028", "stop_lon": 2.4602395483084356, "coord": [48.80292714697353, 2.4602395483084356], "stop_id": 3663626, "stop_desc": "72 RUE CHERET - 94028", "stop_name": "CHERET - LAFERRIERE"}, "geometry": {"type": "Point", "coordinates": [2.4602395483084356, 48.80292714697353]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0aa3409cdcb4220ec2696b709db997542ca5645a", "fields": {"departement": "94", "stop_lat": 48.79339690982196, "code_postal": "94068", "stop_lon": 2.4865126281236076, "coord": [48.79339690982196, 2.4865126281236076], "stop_id": 3663614, "stop_desc": "22 PLACE JOHN KENNEDY - 94068", "stop_name": "ADAMVILLE"}, "geometry": {"type": "Point", "coordinates": [2.4865126281236076, 48.79339690982196]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b1a6fdf44aff1fadb8d6bb20a04aa997c17aecc0", "fields": {"departement": "93", "stop_lat": 49.003932683419556, "code_postal": "93073", "stop_lon": 2.5643752610380326, "coord": [49.003932683419556, 2.5643752610380326], "stop_id": 3666757, "stop_desc": "VOIE PRIVEE AEROPORT CHARLES DE GAULLE - 93073", "stop_name": "TERMINAL 2B-2D"}, "geometry": {"type": "Point", "coordinates": [2.5643752610380326, 49.003932683419556]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "04432646b13023662adbcd67c06fcb39efffe8ed", "fields": {"departement": "93", "stop_lat": 49.01051954688492, "code_postal": "93073", "stop_lon": 2.559663932280221, "coord": [49.01051954688492, 2.559663932280221], "stop_id": 3666797, "stop_desc": "AEROPORT CHARLES DE GAULLE (T3) - 93073", "stop_name": "ROISSYPOLE - GARE - RER"}, "geometry": {"type": "Point", "coordinates": [2.559663932280221, 49.01051954688492]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7d5b698ce2b42a2fc1f3f01c9691362a285f2df4", "fields": {"departement": "93", "stop_lat": 48.9481288514466, "code_postal": "93007", "stop_lon": 2.438044271536468, "coord": [48.9481288514466, 2.438044271536468], "stop_id": 3666778, "stop_desc": "AVENUE DU 8 MAI 1945 - 93007", "stop_name": "MUSEE DE L'AIR ET DE L'ESPACE"}, "geometry": {"type": "Point", "coordinates": [2.438044271536468, 48.9481288514466]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7fd1e5c7dfa4e1e5cc7d77126d7de9973ca69e4d", "fields": {"departement": "93", "stop_lat": 49.00336657296951, "code_postal": "93073", "stop_lon": 2.5643591158079393, "coord": [49.00336657296951, 2.5643591158079393], "stop_id": 3666755, "stop_desc": "VOIE PRIVEE AEROPORT CHARLES DE GAULLE - 93073", "stop_name": "TERMINAL 2A-2C"}, "geometry": {"type": "Point", "coordinates": [2.5643591158079393, 49.00336657296951]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dd44f7e4eb18ecb98a59f2300a5ea0c495a34582", "fields": {"departement": "93", "stop_lat": 48.94345914313876, "code_postal": "93013", "stop_lon": 2.4339150066913304, "coord": [48.94345914313876, 2.4339150066913304], "stop_id": 3666777, "stop_desc": "AVENUE ALAIN BOZEL - 93013", "stop_name": "MICHELET-PARC DES EXPOSITIONS"}, "geometry": {"type": "Point", "coordinates": [2.4339150066913304, 48.94345914313876]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "20563420b58d4643a3f2a266df616d3dcc7ea68a", "fields": {"departement": "93", "stop_lat": 48.98354197724208, "code_postal": "93073", "stop_lon": 2.51719458677695, "coord": [48.98354197724208, 2.51719458677695], "stop_id": 3666792, "stop_desc": "56 AVENUE DE LA PYRAMIDE - 93073", "stop_name": "58, AVENUE DE LA PYRAMIDE"}, "geometry": {"type": "Point", "coordinates": [2.51719458677695, 48.98354197724208]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c15f97c412248c2297f03eebae9d6aae338fc3e5", "fields": {"departement": "75", "stop_lat": 48.86488327520136, "code_postal": "75120", "stop_lon": 2.41126451915231, "coord": [48.86488327520136, 2.41126451915231], "stop_id": 3672113, "stop_desc": "7 AVENUE CARTELLIER - 75120", "stop_name": "ECHANGEUR DE BAGNOLET"}, "geometry": {"type": "Point", "coordinates": [2.41126451915231, 48.86488327520136]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1d3a4f8d605b0510e9821b32209e6c016b194ab3", "fields": {"departement": "95", "stop_lat": 49.01153682433248, "code_postal": "95527", "stop_lon": 2.5157210066251756, "coord": [49.01153682433248, 2.5157210066251756], "stop_id": 3666767, "stop_desc": "ROUTE DE L'ARPENTEUR - 95527", "stop_name": "ENTRETIEN NORD."}, "geometry": {"type": "Point", "coordinates": [2.5157210066251756, 49.01153682433248]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "975d7766171d2f60f5d87488c88371b3e0fe653d", "fields": {"departement": "95", "stop_lat": 49.01346707921479, "code_postal": "95527", "stop_lon": 2.53403402919454, "coord": [49.01346707921479, 2.53403402919454], "stop_id": 3666762, "stop_desc": "ROUTE DES ANNIVERSAIRES - 95527", "stop_name": "ZONE TECHNIQUE"}, "geometry": {"type": "Point", "coordinates": [2.53403402919454, 49.01346707921479]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ea2bba93d7592bebddbf98d445651d9c608b949d", "fields": {"departement": "93", "stop_lat": 48.954338518544674, "code_postal": "93005", "stop_lon": 2.457624484216734, "coord": [48.954338518544674, 2.457624484216734], "stop_id": 3666784, "stop_desc": "RUE ROBERT BREMOND - 93005", "stop_name": "ROBERT BREMOND"}, "geometry": {"type": "Point", "coordinates": [2.457624484216734, 48.954338518544674]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d8ee3a76f52d1e1fcfbbd46f43380b7ed254a65d", "fields": {"departement": "93", "stop_lat": 48.96532057301456, "code_postal": "93005", "stop_lon": 2.4957982414324116, "coord": [48.96532057301456, 2.4957982414324116], "stop_id": 3666666, "stop_desc": "BOULEVARD ANDRE CITROEN (ROND POINT DE LA PORTE 3) - 93005", "stop_name": "ANDRE CITROEN - CENTRE DE PRODUCTION"}, "geometry": {"type": "Point", "coordinates": [2.4957982414324116, 48.96532057301456]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0b00e2014e548f637d3df01128cca9ec88cb4901", "fields": {"departement": "93", "stop_lat": 49.00336657296951, "code_postal": "93073", "stop_lon": 2.5643591158079393, "coord": [49.00336657296951, 2.5643591158079393], "stop_id": 3672157, "stop_desc": "VOIE PRIVEE AEROPORT CHARLES DE GAULLE - 93073", "stop_name": "TERMINAL 2A-2C"}, "geometry": {"type": "Point", "coordinates": [2.5643591158079393, 49.00336657296951]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b62f511214a8ec3da6cdb6ca514433a4e33f12ab", "fields": {"departement": "93", "stop_lat": 48.92358657007136, "code_postal": "93007", "stop_lon": 2.4734136996778835, "coord": [48.92358657007136, 2.4734136996778835], "stop_id": 3672132, "stop_desc": "FACE 62 AVENUE DANIELLE CASANOVA - 93007", "stop_name": "DANIELLE CASANOVA"}, "geometry": {"type": "Point", "coordinates": [2.4734136996778835, 48.92358657007136]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "746789187cce84a9c06ea1c688ffa8de7d001f6a", "fields": {"departement": "93", "stop_lat": 49.004269809288566, "code_postal": "93073", "stop_lon": 2.5712882222403115, "coord": [49.004269809288566, 2.5712882222403115], "stop_id": 3672158, "stop_desc": "AEROPORT CHARLES DE GAULLE - 93073", "stop_name": "GARE TGV-SNCF"}, "geometry": {"type": "Point", "coordinates": [2.5712882222403115, 49.004269809288566]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bd1ee302cf29ed689e3ac9855e26d63ab81f7a82", "fields": {"departement": "93", "stop_lat": 48.9939157315064, "code_postal": "93073", "stop_lon": 2.5266398659308664, "coord": [48.9939157315064, 2.5266398659308664], "stop_id": 3672147, "stop_desc": "RUE DE LA JEUNE FILLE - 93073", "stop_name": "RUE DE LA JEUNE FILLE"}, "geometry": {"type": "Point", "coordinates": [2.5266398659308664, 48.9939157315064]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "02c9ce718efc98a99cff72b4ebc8fc0f4d612bc5", "fields": {"departement": "93", "stop_lat": 48.91953137599179, "code_postal": "93007", "stop_lon": 2.475216716918382, "coord": [48.91953137599179, 2.475216716918382], "stop_id": 3672129, "stop_desc": "AVENUE DE SURCOUF - 93007", "stop_name": "JARDINS DE LA NOUE"}, "geometry": {"type": "Point", "coordinates": [2.475216716918382, 48.91953137599179]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ce5eba8567a02869021d19ea195dd5cee5c75d05", "fields": {"departement": "93", "stop_lat": 48.90685353237826, "code_postal": "93010", "stop_lon": 2.4804181583345417, "coord": [48.90685353237826, 2.4804181583345417], "stop_id": 3672118, "stop_desc": "6 ROUTE D'AULNAY - 93010", "stop_name": "AUGUSTE POLISSARD"}, "geometry": {"type": "Point", "coordinates": [2.4804181583345417, 48.90685353237826]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cd845f5649f2074447e206891bff33e814912149", "fields": {"departement": "95", "stop_lat": 49.01237299186272, "code_postal": "95527", "stop_lon": 2.5213522952243, "coord": [49.01237299186272, 2.5213522952243], "stop_id": 3672151, "stop_desc": "ROUTE DE L'ARPENTEUR - 95527", "stop_name": "RUE DES 2 SOEURS"}, "geometry": {"type": "Point", "coordinates": [2.5213522952243, 49.01237299186272]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9ba2f7cf3519e30ea5809f3b10b5213e28a7c932", "fields": {"departement": "93", "stop_lat": 48.99438721579055, "code_postal": "93073", "stop_lon": 2.523978589947988, "coord": [48.99438721579055, 2.523978589947988], "stop_id": 3672148, "stop_desc": "RUE DES BUISSONS - 93073", "stop_name": "MARGUILLIERS."}, "geometry": {"type": "Point", "coordinates": [2.523978589947988, 48.99438721579055]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c030d1802ea380b460a2954a38c4b3ecb9f2cd56", "fields": {"departement": "93", "stop_lat": 48.91695910540304, "code_postal": "93010", "stop_lon": 2.484400525396555, "coord": [48.91695910540304, 2.484400525396555], "stop_id": 3672126, "stop_desc": "AV HENRI VARAGNAT - 93010", "stop_name": "RABELAIS"}, "geometry": {"type": "Point", "coordinates": [2.484400525396555, 48.91695910540304]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8c002f0ebc44dce88c6200bc090c0765b8a20978", "fields": {"departement": "93", "stop_lat": 48.9526171602876, "code_postal": "93007", "stop_lon": 2.4623827191222363, "coord": [48.9526171602876, 2.4623827191222363], "stop_id": 3666638, "stop_desc": "RUE ANATOLE SIGONNEAU - 93007", "stop_name": "ANATOLE SIGONNEAU - CENTRE D'AFFAIRES"}, "geometry": {"type": "Point", "coordinates": [2.4623827191222363, 48.9526171602876]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "645ae06ac9c9871a8c42751f6fb43c4017acc128", "fields": {"departement": "75", "stop_lat": 48.88362477105826, "code_postal": "75110", "stop_lon": 2.3593443757229804, "coord": [48.88362477105826, 2.3593443757229804], "stop_id": 3666677, "stop_desc": "226-228 RUE DU FAUBOURG SAINT-DENIS - 75110", "stop_name": "PLACE DE LA CHAPELLE"}, "geometry": {"type": "Point", "coordinates": [2.3593443757229804, 48.88362477105826]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1ed9b1ff481f0b3fa4167f00fc114a94d1c16ccd", "fields": {"departement": "93", "stop_lat": 49.00336657296951, "code_postal": "93073", "stop_lon": 2.5643591158079393, "coord": [49.00336657296951, 2.5643591158079393], "stop_id": 3666653, "stop_desc": "VOIE PRIVEE AEROPORT CHARLES DE GAULLE - 93073", "stop_name": "TERMINAL 2A-2C"}, "geometry": {"type": "Point", "coordinates": [2.5643591158079393, 49.00336657296951]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "55d995120fc458697c85f0364420fe3be1fd0611", "fields": {"departement": "93", "stop_lat": 48.95002480024804, "code_postal": "93007", "stop_lon": 2.457709966646667, "coord": [48.95002480024804, 2.457709966646667], "stop_id": 3666686, "stop_desc": "AVENUE DESCARTES - 93007", "stop_name": "CIMETIERE DU BLANC-MESNIL"}, "geometry": {"type": "Point", "coordinates": [2.457709966646667, 48.95002480024804]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "be145301b9c36d71b92f422eb03d9533d4d16320", "fields": {"departement": "93", "stop_lat": 49.004269809288566, "code_postal": "93073", "stop_lon": 2.5712882222403115, "coord": [49.004269809288566, 2.5712882222403115], "stop_id": 3666654, "stop_desc": "AEROPORT CHARLES DE GAULLE - 93073", "stop_name": "GARE TGV-SNCF"}, "geometry": {"type": "Point", "coordinates": [2.5712882222403115, 49.004269809288566]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e8f5b434027a6968bee54b475e64d3843f012408", "fields": {"departement": "93", "stop_lat": 49.00453842018161, "code_postal": "93073", "stop_lon": 2.547659161829925, "coord": [49.00453842018161, 2.547659161829925], "stop_id": 3666706, "stop_desc": "ROUTE DU NOYER DU CHAT - 93073", "stop_name": "RUE DES VIGNES"}, "geometry": {"type": "Point", "coordinates": [2.547659161829925, 49.00453842018161]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9c129910e2d7c6667c865a2da215a162aae42413", "fields": {"departement": "93", "stop_lat": 48.954338518544674, "code_postal": "93005", "stop_lon": 2.457624484216734, "coord": [48.954338518544674, 2.457624484216734], "stop_id": 3666640, "stop_desc": "RUE ROBERT BREMOND - 93005", "stop_name": "ROBERT BREMOND"}, "geometry": {"type": "Point", "coordinates": [2.457624484216734, 48.954338518544674]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "26ac8cea1fa86fd911ef3d6b138e395798fe100c", "fields": {"departement": "93", "stop_lat": 48.954338518544674, "code_postal": "93005", "stop_lon": 2.457624484216734, "coord": [48.954338518544674, 2.457624484216734], "stop_id": 3666692, "stop_desc": "RUE ROBERT BREMOND - 93005", "stop_name": "ROBERT BREMOND"}, "geometry": {"type": "Point", "coordinates": [2.457624484216734, 48.954338518544674]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "abaeef4576926eb058ca3a4d8725b21a7ea4764e", "fields": {"departement": "95", "stop_lat": 48.998751840594245, "code_postal": "95527", "stop_lon": 2.525742518298485, "coord": [48.998751840594245, 2.525742518298485], "stop_id": 3666649, "stop_desc": "RUE DU REMBLAI - 95527", "stop_name": "CARGO CENTRE"}, "geometry": {"type": "Point", "coordinates": [2.525742518298485, 48.998751840594245]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eb03b754baeb8c75c539a35bde4f3cd5dadaac1e", "fields": {"departement": "93", "stop_lat": 48.95433871107077, "code_postal": "93005", "stop_lon": 2.457433442997565, "coord": [48.95433871107077, 2.457433442997565], "stop_id": 3666693, "stop_desc": "RUE ROBERT BREMOND - 93005", "stop_name": "ROBERT BREMOND"}, "geometry": {"type": "Point", "coordinates": [2.457433442997565, 48.95433871107077]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7c6536a7993f48b236e4b21d30582b6a74474023", "fields": {"departement": "75", "stop_lat": 48.84752230352113, "code_postal": "75120", "stop_lon": 2.406677811879984, "coord": [48.84752230352113, 2.406677811879984], "stop_id": 3672235, "stop_desc": "73 COURS DE VINCENNES - 75120", "stop_name": "PYRENEES - DOCTEUR NETTER"}, "geometry": {"type": "Point", "coordinates": [2.406677811879984, 48.84752230352113]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "686dccaad82819d91e826a78c4df36854f4a2768", "fields": {"departement": "93", "stop_lat": 48.91953137599179, "code_postal": "93007", "stop_lon": 2.475216716918382, "coord": [48.91953137599179, 2.475216716918382], "stop_id": 3672251, "stop_desc": "AVENUE DE SURCOUF - 93007", "stop_name": "JARDINS DE LA NOUE"}, "geometry": {"type": "Point", "coordinates": [2.475216716918382, 48.91953137599179]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2b56c56ebd97ca9bedf75f25cb9fc3401c53c0d8", "fields": {"departement": "75", "stop_lat": 48.85392494426368, "code_postal": "75120", "stop_lon": 2.415443658762252, "coord": [48.85392494426368, 2.415443658762252], "stop_id": 3672241, "stop_desc": "20 AVENUE BENOIT FRACHON - 75120", "stop_name": "RUE DE PARIS"}, "geometry": {"type": "Point", "coordinates": [2.415443658762252, 48.85392494426368]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "934d4b0452c813496daa8e134b712e3c118c8c7d", "fields": {"departement": "95", "stop_lat": 49.01153682433248, "code_postal": "95527", "stop_lon": 2.5157210066251756, "coord": [49.01153682433248, 2.5157210066251756], "stop_id": 3672219, "stop_desc": "ROUTE DE L'ARPENTEUR - 95527", "stop_name": "ENTRETIEN NORD."}, "geometry": {"type": "Point", "coordinates": [2.5157210066251756, 49.01153682433248]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8f0d27609a036ba09ceb0f05cdcdd015ab91c7a3", "fields": {"departement": "93", "stop_lat": 48.90685353237826, "code_postal": "93010", "stop_lon": 2.4804181583345417, "coord": [48.90685353237826, 2.4804181583345417], "stop_id": 3672245, "stop_desc": "6 ROUTE D'AULNAY - 93010", "stop_name": "AUGUSTE POLISSARD"}, "geometry": {"type": "Point", "coordinates": [2.4804181583345417, 48.90685353237826]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6b45d53bb2bc42ee9d7e458407b731dea96650b6", "fields": {"departement": "77", "stop_lat": 49.015367784893186, "code_postal": "77282", "stop_lon": 2.541992530464244, "coord": [49.015367784893186, 2.541992530464244], "stop_id": 3672221, "stop_desc": "AEROPORT CHARLES DE GAULLE - 77282", "stop_name": "TERMINAL 1"}, "geometry": {"type": "Point", "coordinates": [2.541992530464244, 49.015367784893186]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ecbb201855a9b65dd7a003ed1dafe6b9f39692fd", "fields": {"departement": "77", "stop_lat": 49.015367784893186, "code_postal": "77282", "stop_lon": 2.541992530464244, "coord": [49.015367784893186, 2.541992530464244], "stop_id": 3672257, "stop_desc": "AEROPORT CHARLES DE GAULLE - 77282", "stop_name": "TERMINAL 1"}, "geometry": {"type": "Point", "coordinates": [2.541992530464244, 49.015367784893186]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e3f354cdb4ab8a53ee79c2211bacf54d0c03853d", "fields": {"departement": "95", "stop_lat": 49.007892693168586, "code_postal": "95527", "stop_lon": 2.512812511923358, "coord": [49.007892693168586, 2.512812511923358], "stop_id": 3672218, "stop_desc": "RUE DE L'ARPENTEUR - 95527", "stop_name": "ENTRETIEN SUD"}, "geometry": {"type": "Point", "coordinates": [2.512812511923358, 49.007892693168586]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "609102914046c97e12b88688d6982972ad23d3bf", "fields": {"departement": "93", "stop_lat": 48.918161074606274, "code_postal": "93010", "stop_lon": 2.478867597962442, "coord": [48.918161074606274, 2.478867597962442], "stop_id": 3672250, "stop_desc": "AVENUE LEON JOUHAUX - 93010", "stop_name": "JOUHAUX - BLUM"}, "geometry": {"type": "Point", "coordinates": [2.478867597962442, 48.918161074606274]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c25a89101e7fa576c16e1cd4631fa45b28c034ed", "fields": {"departement": "95", "stop_lat": 48.998886851137584, "code_postal": "95527", "stop_lon": 2.525606434259353, "coord": [48.998886851137584, 2.525606434259353], "stop_id": 3672215, "stop_desc": "RUE DES 2 CEDRES - 95527", "stop_name": "CARGO CENTRE"}, "geometry": {"type": "Point", "coordinates": [2.525606434259353, 48.998886851137584]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2fc30205e866aa6e7d4fb47adf34b1d878e1e373", "fields": {"departement": "93", "stop_lat": 48.91240595297027, "code_postal": "93010", "stop_lon": 2.481728807753058, "coord": [48.91240595297027, 2.481728807753058], "stop_id": 3672186, "stop_desc": "AVENUE HENRI VARAGNAT - 93010", "stop_name": "ROUTE D'AULNAY - JEAN MOULIN"}, "geometry": {"type": "Point", "coordinates": [2.481728807753058, 48.91240595297027]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8ccc58e7b17ffbe6f396773c88480fdda5a1f074", "fields": {"departement": "93", "stop_lat": 48.86580463070785, "code_postal": "93006", "stop_lon": 2.417954493910392, "coord": [48.86580463070785, 2.417954493910392], "stop_id": 3672182, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 93006", "stop_name": "GALLIENI-METRO"}, "geometry": {"type": "Point", "coordinates": [2.417954493910392, 48.86580463070785]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9c069f791ce1bb6e02612d022996462a3346f68a", "fields": {"departement": "93", "stop_lat": 48.91859536998403, "code_postal": "93010", "stop_lon": 2.4763869562903142, "coord": [48.91859536998403, 2.4763869562903142], "stop_id": 3672166, "stop_desc": "18 AVENUE DE SURCOUF - 93010", "stop_name": "JARDINS DE LA NOUE"}, "geometry": {"type": "Point", "coordinates": [2.4763869562903142, 48.91859536998403]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "20b38a1a15c399e6996e8c9b7a812faeb65e15db", "fields": {"departement": "93", "stop_lat": 48.92527506408324, "code_postal": "93007", "stop_lon": 2.4743318967195087, "coord": [48.92527506408324, 2.4743318967195087], "stop_id": 3672199, "stop_desc": "BOULEVARD JACQUES DECOUR - 93007", "stop_name": "LES 4 TOURS"}, "geometry": {"type": "Point", "coordinates": [2.4743318967195087, 48.92527506408324]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fffe5d9874eef788a907cd29d80fd1f3d2b94b77", "fields": {"departement": "93", "stop_lat": 48.90685353237826, "code_postal": "93010", "stop_lon": 2.4804181583345417, "coord": [48.90685353237826, 2.4804181583345417], "stop_id": 3672183, "stop_desc": "6 ROUTE D'AULNAY - 93010", "stop_name": "AUGUSTE POLISSARD"}, "geometry": {"type": "Point", "coordinates": [2.4804181583345417, 48.90685353237826]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1cb7da1fdcfd2ca51910bf0a60cb41fc5a58854a", "fields": {"departement": "93", "stop_lat": 48.90667408580478, "code_postal": "93010", "stop_lon": 2.480172263344335, "coord": [48.90667408580478, 2.480172263344335], "stop_id": 3672184, "stop_desc": "ROUTE D'AULNAY - 93010", "stop_name": "AUGUSTE POLISSARD"}, "geometry": {"type": "Point", "coordinates": [2.480172263344335, 48.90667408580478]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7224f84e607fa4d001948a7e7640c6f89bf2c85d", "fields": {"departement": "93", "stop_lat": 48.918161074606274, "code_postal": "93010", "stop_lon": 2.478867597962442, "coord": [48.918161074606274, 2.478867597962442], "stop_id": 3672192, "stop_desc": "AVENUE LEON JOUHAUX - 93010", "stop_name": "JOUHAUX - BLUM"}, "geometry": {"type": "Point", "coordinates": [2.478867597962442, 48.918161074606274]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "01b8d9cd159486de163461d8d8bfcdd5ac0cbee1", "fields": {"departement": "93", "stop_lat": 48.99460337939841, "code_postal": "93073", "stop_lon": 2.523665271336363, "coord": [48.99460337939841, 2.523665271336363], "stop_id": 3672206, "stop_desc": "RUE DES BUISSONS - 93073", "stop_name": "MARGUILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.523665271336363, 48.99460337939841]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9d3ed5357695121b313c43e54a0aa0656d0ff0e8", "fields": {"departement": "93", "stop_lat": 48.99460337939841, "code_postal": "93073", "stop_lon": 2.523665271336363, "coord": [48.99460337939841, 2.523665271336363], "stop_id": 3672205, "stop_desc": "RUE DES BUISSONS - 93073", "stop_name": "MARGUILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.523665271336363, 48.99460337939841]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "74337eb2f9ea381a538d75699fb8a1119bc9e33e", "fields": {"departement": "95", "stop_lat": 48.998751840594245, "code_postal": "95527", "stop_lon": 2.525742518298485, "coord": [48.998751840594245, 2.525742518298485], "stop_id": 3672214, "stop_desc": "RUE DU REMBLAI - 95527", "stop_name": "CARGO CENTRE"}, "geometry": {"type": "Point", "coordinates": [2.525742518298485, 48.998751840594245]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5741f810015534ed678ae94a42479f6e2be57005", "fields": {"departement": "93", "stop_lat": 48.92935800046463, "code_postal": "93007", "stop_lon": 2.4795528998155345, "coord": [48.92935800046463, 2.4795528998155345], "stop_id": 3672139, "stop_desc": "12 AVENUE PAUL VAILLANT COUTURIER - 93007", "stop_name": "ROND-POINT PIERRE SEMARD - PAUL VAILLANT-COUTURIER"}, "geometry": {"type": "Point", "coordinates": [2.4795528998155345, 48.92935800046463]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f55ac1397a1f119d9511307c419685ebf6a174c2", "fields": {"departement": "75", "stop_lat": 48.84700789118935, "code_postal": "75120", "stop_lon": 2.4102313138152516, "coord": [48.84700789118935, 2.4102313138152516], "stop_id": 3672264, "stop_desc": "116 CRS DE VINCENNES - 75120", "stop_name": "PORTE DE VINCENNES"}, "geometry": {"type": "Point", "coordinates": [2.4102313138152516, 48.84700789118935]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aa8223758b3e151152e6716f9479ca0b06158361", "fields": {"departement": "77", "stop_lat": 49.015367784893186, "code_postal": "77282", "stop_lon": 2.541992530464244, "coord": [49.015367784893186, 2.541992530464244], "stop_id": 3672282, "stop_desc": "AEROPORT CHARLES DE GAULLE - 77282", "stop_name": "TERMINAL 1"}, "geometry": {"type": "Point", "coordinates": [2.541992530464244, 49.015367784893186]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7a33516d7513ba7bfd97d784e38eb4c038bae1da", "fields": {"departement": "93", "stop_lat": 48.86754005980411, "code_postal": "93006", "stop_lon": 2.4166630116229832, "coord": [48.86754005980411, 2.4166630116229832], "stop_id": 3672268, "stop_desc": "23 RUE ADELAIDE LAHAYE - 93006", "stop_name": "LA POSTE"}, "geometry": {"type": "Point", "coordinates": [2.4166630116229832, 48.86754005980411]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3bc4d9d51d2f2ba8e3662c2bd0a987867f0b446a", "fields": {"departement": "93", "stop_lat": 48.91748955522082, "code_postal": "93010", "stop_lon": 2.484224762465009, "coord": [48.91748955522082, 2.484224762465009], "stop_id": 3672274, "stop_desc": "VOIE NOUVELLE - 93010", "stop_name": "RABELAIS"}, "geometry": {"type": "Point", "coordinates": [2.484224762465009, 48.91748955522082]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0e8703cec73402a825c94a53917f2016c2561b95", "fields": {"departement": "93", "stop_lat": 48.952536508620526, "code_postal": "93007", "stop_lon": 2.462164198411897, "coord": [48.952536508620526, 2.462164198411897], "stop_id": 3666743, "stop_desc": "RUE ANATOLE SIGONNEAU - 93007", "stop_name": "ANATOLE SIGONNEAU - CENTRE D'AFFAIRES"}, "geometry": {"type": "Point", "coordinates": [2.462164198411897, 48.952536508620526]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2ec1f2f7226343a7b5998c2bc3e911be822c19d3", "fields": {"departement": "93", "stop_lat": 48.94732999328036, "code_postal": "93030", "stop_lon": 2.436896621836972, "coord": [48.94732999328036, 2.436896621836972], "stop_id": 3666721, "stop_desc": "ESPLANADE DE L'AIR ET DE L'ESPACE - 93030", "stop_name": "MUSEE DE L'AIR ET DE L'ESPACE"}, "geometry": {"type": "Point", "coordinates": [2.436896621836972, 48.94732999328036]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "07e147504302014828ace6e1d6c746c0fd16cefc", "fields": {"departement": "93", "stop_lat": 49.00336657296951, "code_postal": "93073", "stop_lon": 2.5643591158079393, "coord": [49.00336657296951, 2.5643591158079393], "stop_id": 3666707, "stop_desc": "VOIE PRIVEE AEROPORT CHARLES DE GAULLE - 93073", "stop_name": "TERMINAL 2A-2C"}, "geometry": {"type": "Point", "coordinates": [2.5643591158079393, 49.00336657296951]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "67ffd2095c9ac19cd13904454b588e6aec2e485a", "fields": {"departement": "75", "stop_lat": 48.879473278409144, "code_postal": "75110", "stop_lon": 2.3557180612431323, "coord": [48.879473278409144, 2.3557180612431323], "stop_id": 3666723, "stop_desc": "33-35 RUE DE SAINT-QUENTIN - 75110", "stop_name": "LA FAYETTE - DUNKERQUE"}, "geometry": {"type": "Point", "coordinates": [2.3557180612431323, 48.879473278409144]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d9c36002f96cf8bf53cc6d5a56d51330ad82a5a2", "fields": {"departement": "75", "stop_lat": 48.89769876400372, "code_postal": "75118", "stop_lon": 2.3589959717945, "coord": [48.89769876400372, 2.3589959717945], "stop_id": 3666731, "stop_desc": "85-87 RUE DE LA CHAPELLE - 75118", "stop_name": "PORTE DE LA CHAPELLE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.3589959717945, 48.89769876400372]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "830c2d330262b6de100d981ce59adab7da7b1695", "fields": {"departement": "93", "stop_lat": 48.98292708588317, "code_postal": "93073", "stop_lon": 2.5197046726137797, "coord": [48.98292708588317, 2.5197046726137797], "stop_id": 3666752, "stop_desc": "AVENUE DE LA PYRAMIDE - 93073", "stop_name": "227, AVENUE DES NATIONS"}, "geometry": {"type": "Point", "coordinates": [2.5197046726137797, 48.98292708588317]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e273ec138780b22dcd5807b9ccff988f94c964da", "fields": {"departement": "93", "stop_lat": 48.950186781515434, "code_postal": "93007", "stop_lon": 2.4574920277380605, "coord": [48.950186781515434, 2.4574920277380605], "stop_id": 3666739, "stop_desc": "AVENUE DESCARTES - 93007", "stop_name": "CIMETIERE DU BLANC-MESNIL"}, "geometry": {"type": "Point", "coordinates": [2.4574920277380605, 48.950186781515434]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "44cc6ca72529f3a0785af88b2955422be6d30093", "fields": {"departement": "93", "stop_lat": 48.95002480024804, "code_postal": "93007", "stop_lon": 2.457709966646667, "coord": [48.95002480024804, 2.457709966646667], "stop_id": 3666738, "stop_desc": "AVENUE DESCARTES - 93007", "stop_name": "CIMETIERE DU BLANC-MESNIL"}, "geometry": {"type": "Point", "coordinates": [2.457709966646667, 48.95002480024804]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "71cd85f46ec077a5bf9df6bc6082f8168ba9195c", "fields": {"departement": "95", "stop_lat": 49.01153682433248, "code_postal": "95527", "stop_lon": 2.5157210066251756, "coord": [49.01153682433248, 2.5157210066251756], "stop_id": 3666719, "stop_desc": "ROUTE DE L'ARPENTEUR - 95527", "stop_name": "ENTRETIEN NORD."}, "geometry": {"type": "Point", "coordinates": [2.5157210066251756, 49.01153682433248]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "89eda019f95bc97db413608f5a138facd7dace3d", "fields": {"departement": "75", "stop_lat": 48.87615667154024, "code_postal": "75110", "stop_lon": 2.3575699124657437, "coord": [48.87615667154024, 2.3575699124657437], "stop_id": 3666724, "stop_desc": "9 RUE DU 8 MAI 1945 - 75110", "stop_name": "GARE DE L'EST"}, "geometry": {"type": "Point", "coordinates": [2.3575699124657437, 48.87615667154024]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5d1d5765454a4fb84650067e220e4988d1cec198", "fields": {"departement": "75", "stop_lat": 48.89760883510394, "code_postal": "75118", "stop_lon": 2.359309444283519, "coord": [48.89760883510394, 2.359309444283519], "stop_id": 3666626, "stop_desc": "FACE AU 100 RUE DE LA CHAPELLE - 75118", "stop_name": "PORTE DE LA CHAPELLE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.359309444283519, 48.89760883510394]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fa79a0dd6693d72190378f692138be17d45d2b18", "fields": {"departement": "93", "stop_lat": 48.9481288514466, "code_postal": "93007", "stop_lon": 2.438044271536468, "coord": [48.9481288514466, 2.438044271536468], "stop_id": 3666630, "stop_desc": "AVENUE DU 8 MAI 1945 - 93007", "stop_name": "MUSEE DE L'AIR ET DE L'ESPACE"}, "geometry": {"type": "Point", "coordinates": [2.438044271536468, 48.9481288514466]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9bd805e3cc05b3f83878d8bc31cdfd2c9ba96576", "fields": {"departement": "75", "stop_lat": 48.879473278409144, "code_postal": "75110", "stop_lon": 2.3557180612431323, "coord": [48.879473278409144, 2.3557180612431323], "stop_id": 3666619, "stop_desc": "33-35 RUE DE SAINT-QUENTIN - 75110", "stop_name": "LA FAYETTE - DUNKERQUE"}, "geometry": {"type": "Point", "coordinates": [2.3557180612431323, 48.879473278409144]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "01eaf0c71bd39eef750b672a78affd1a136984da", "fields": {"departement": "93", "stop_lat": 48.95030571554676, "code_postal": "93007", "stop_lon": 2.4641373075254696, "coord": [48.95030571554676, 2.4641373075254696], "stop_id": 3666636, "stop_desc": "FACE 9 AVENUE EDOUARD RENAULT - 93007", "stop_name": "DESCARTES - RENAULT"}, "geometry": {"type": "Point", "coordinates": [2.4641373075254696, 48.95030571554676]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c03a24e7cbc8e80b23c34196a324697f63a36657", "fields": {"departement": "93", "stop_lat": 48.950186781515434, "code_postal": "93007", "stop_lon": 2.4574920277380605, "coord": [48.950186781515434, 2.4574920277380605], "stop_id": 3666635, "stop_desc": "AVENUE DESCARTES - 93007", "stop_name": "CIMETIERE DU BLANC-MESNIL"}, "geometry": {"type": "Point", "coordinates": [2.4574920277380605, 48.950186781515434]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "72939c608627dcee513e1f01dc034ce572766330", "fields": {"departement": "95", "stop_lat": 49.0093548695535, "code_postal": "95527", "stop_lon": 2.5477880446305514, "coord": [49.0093548695535, 2.5477880446305514], "stop_id": 3666612, "stop_desc": "ROUTE DES BADAUDS - 95527", "stop_name": "TOUR DE CONTROLE"}, "geometry": {"type": "Point", "coordinates": [2.5477880446305514, 49.0093548695535]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d928f8cf33d861fcd5e38163962a67378cf18154", "fields": {"departement": "93", "stop_lat": 48.954338518544674, "code_postal": "93005", "stop_lon": 2.457624484216734, "coord": [48.954338518544674, 2.457624484216734], "stop_id": 3666581, "stop_desc": "RUE ROBERT BREMOND - 93005", "stop_name": "ROBERT BREMOND"}, "geometry": {"type": "Point", "coordinates": [2.457624484216734, 48.954338518544674]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c8a875cd84ae7dd6f0b6890268347a13eb09c23f", "fields": {"departement": "93", "stop_lat": 48.9503918147959, "code_postal": "93007", "stop_lon": 2.4499878684013767, "coord": [48.9503918147959, 2.4499878684013767], "stop_id": 3666633, "stop_desc": "AVENUE DESCARTES - 93007", "stop_name": "MAURICE AUDIN"}, "geometry": {"type": "Point", "coordinates": [2.4499878684013767, 48.9503918147959]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b25c8b5df666b5128cfb0d76d4a5581a671f1852", "fields": {"departement": "95", "stop_lat": 48.998751840594245, "code_postal": "95527", "stop_lon": 2.525742518298485, "coord": [48.998751840594245, 2.525742518298485], "stop_id": 3666606, "stop_desc": "RUE DU REMBLAI - 95527", "stop_name": "CARGO CENTRE"}, "geometry": {"type": "Point", "coordinates": [2.525742518298485, 48.998751840594245]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "916527b29dbe7c18945e5479948eaca924b53dd0", "fields": {"departement": "93", "stop_lat": 48.99173782611795, "code_postal": "93073", "stop_lon": 2.5286392829463, "coord": [48.99173782611795, 2.5286392829463], "stop_id": 3666603, "stop_desc": "ROUTE DU MIDI - 93073", "stop_name": "RUE DU TE"}, "geometry": {"type": "Point", "coordinates": [2.5286392829463, 48.99173782611795]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f6955f20e51baf9eeb5cce427ba87870c9d7e6d0", "fields": {"departement": "93", "stop_lat": 48.880621937934315, "code_postal": "93061", "stop_lon": 2.4081937923573014, "coord": [48.880621937934315, 2.4081937923573014], "stop_id": 3673617, "stop_desc": "74 AVENUE JEAN JAURES - 93061", "stop_name": "JEAN JAURES-BELVEDERE"}, "geometry": {"type": "Point", "coordinates": [2.4081937923573014, 48.880621937934315]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "369691f9b165759b14b79c646e28effae905bd67", "fields": {"departement": "93", "stop_lat": 48.882472812988375, "code_postal": "93061", "stop_lon": 2.4090275664685965, "coord": [48.882472812988375, 2.4090275664685965], "stop_id": 3673618, "stop_desc": "3 PLACE SEVERINE - 93061", "stop_name": "PLACE SEVERINE"}, "geometry": {"type": "Point", "coordinates": [2.4090275664685965, 48.882472812988375]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9cb288242359086195aaa0b1086dbc629fb1c5ae", "fields": {"departement": "75", "stop_lat": 48.863824392740085, "code_postal": "75120", "stop_lon": 2.3915519700524968, "coord": [48.863824392740085, 2.3915519700524968], "stop_id": 3673601, "stop_desc": "FACE 29 AVENUE GAMBETTA - 75120", "stop_name": "MURIERS"}, "geometry": {"type": "Point", "coordinates": [2.3915519700524968, 48.863824392740085]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ba166823d19b372564f32e45d416358a9b7168ae", "fields": {"departement": "75", "stop_lat": 48.864811541241586, "code_postal": "75120", "stop_lon": 2.3946725014354397, "coord": [48.864811541241586, 2.3946725014354397], "stop_id": 3673604, "stop_desc": "AVENUE GAMBETTA - 75120", "stop_name": "MARTIN NADAUD"}, "geometry": {"type": "Point", "coordinates": [2.3946725014354397, 48.864811541241586]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6f2ef7150d84178015b5a5bb71fc15937da21d5b", "fields": {"departement": "93", "stop_lat": 48.88523280187399, "code_postal": "93061", "stop_lon": 2.4075050936424107, "coord": [48.88523280187399, 2.4075050936424107], "stop_id": 3673621, "stop_desc": "26 AVENUE JEAN JAURES - 93061", "stop_name": "JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.4075050936424107, 48.88523280187399]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7116b7159b6678eab8ce1db94352dd0c5af33051", "fields": {"departement": "75", "stop_lat": 48.87850944209554, "code_postal": "75119", "stop_lon": 2.4090084533331813, "coord": [48.87850944209554, 2.4090084533331813], "stop_id": 3673615, "stop_desc": "AVENUE RENE FONCK - 75119", "stop_name": "RENE FONCK"}, "geometry": {"type": "Point", "coordinates": [2.4090084533331813, 48.87850944209554]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3b04f72094242995afea808b52927b86ea9cc4aa", "fields": {"departement": "95", "stop_lat": 48.991963492498634, "code_postal": "95527", "stop_lon": 2.5164045376508506, "coord": [48.991963492498634, 2.5164045376508506], "stop_id": 3678824, "stop_desc": "AVENUE DU BOIS DE LA PIE - 95527", "stop_name": "351, AVENUE DU BOIS DE LA PIE"}, "geometry": {"type": "Point", "coordinates": [2.5164045376508506, 48.991963492498634]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a84e437b4d7db4c9d23b0f32674b44c03ccbed59", "fields": {"departement": "77", "stop_lat": 48.82604549537294, "code_postal": "77146", "stop_lon": 2.6365442421320906, "coord": [48.82604549537294, 2.6365442421320906], "stop_id": 3681429, "stop_desc": "ALLEE DU 1ER MAI - 77146", "stop_name": "CROISSY-BEAUBOURG - Z.I. PARIEST"}, "geometry": {"type": "Point", "coordinates": [2.6365442421320906, 48.82604549537294]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "40bf86b9a2058045a6a44d5e28c1cdbd0bd788c6", "fields": {"departement": "93", "stop_lat": 49.00992721697989, "code_postal": "93073", "stop_lon": 2.5592515680531114, "coord": [49.00992721697989, 2.5592515680531114], "stop_id": 3678809, "stop_desc": "AEROPORT CHARLES DE GAULLE (T3) - 93073", "stop_name": "ROISSYPOLE"}, "geometry": {"type": "Point", "coordinates": [2.5592515680531114, 49.00992721697989]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b35a407bcf6064188c9155616429096dc822a925", "fields": {"departement": "93", "stop_lat": 49.00998049943228, "code_postal": "93073", "stop_lon": 2.5595933107448334, "coord": [49.00998049943228, 2.5595933107448334], "stop_id": 3678810, "stop_desc": "AEROPORT CHARLES DE GAULLE (T3) - 93073", "stop_name": "ROISSYPOLE"}, "geometry": {"type": "Point", "coordinates": [2.5595933107448334, 49.00998049943228]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ac820b421d742b123635dfa6ec0bffed241af1a0", "fields": {"departement": "77", "stop_lat": 48.825645131503386, "code_postal": "77146", "stop_lon": 2.638488460077835, "coord": [48.825645131503386, 2.638488460077835], "stop_id": 3681432, "stop_desc": "RUE LEON JOUHAUX - 77146", "stop_name": "LA MARE A BLONDEAU"}, "geometry": {"type": "Point", "coordinates": [2.638488460077835, 48.825645131503386]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "22352fc03e554c2a568e5028da91b49a20dedec5", "fields": {"departement": "75", "stop_lat": 48.89805996621916, "code_postal": "75118", "stop_lon": 2.3292941800695495, "coord": [48.89805996621916, 2.3292941800695495], "stop_id": 4016347, "stop_desc": "2 AVENUE DE LA PORTE DE SAINT-OUEN - 75118", "stop_name": "PORTE DE SAINT-OUEN - HOPITAL BICHAT"}, "geometry": {"type": "Point", "coordinates": [2.3292941800695495, 48.89805996621916]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "48b7819fa74c80680d766972c8ae59de0dbdf452", "fields": {"departement": "75", "stop_lat": 48.89796107884481, "code_postal": "75117", "stop_lon": 2.328871635148322, "coord": [48.89796107884481, 2.328871635148322], "stop_id": 4016350, "stop_desc": "13 AVENUE DE LA PORTE DE SAINT-OUEN - 75117", "stop_name": "PORTE DE SAINT-OUEN - HOPITAL BICHAT"}, "geometry": {"type": "Point", "coordinates": [2.328871635148322, 48.89796107884481]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "335d970a394fcaba4f1378e22473467e7492281d", "fields": {"departement": "75", "stop_lat": 48.895201963706604, "code_postal": "75117", "stop_lon": 2.3280133759316444, "coord": [48.895201963706604, 2.3280133759316444], "stop_id": 4016351, "stop_desc": "119 AVENUE DE SAINT OUEN - 75117", "stop_name": "NAVIER"}, "geometry": {"type": "Point", "coordinates": [2.3280133759316444, 48.895201963706604]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3029e95c12a0ff95b45d2bce26c19850de982e79", "fields": {"departement": "75", "stop_lat": 48.88590006808008, "code_postal": "75117", "stop_lon": 2.326134397795573, "coord": [48.88590006808008, 2.326134397795573], "stop_id": 4016355, "stop_desc": "31 AVENUE DE CLICHY - 75117", "stop_name": "GANNERON"}, "geometry": {"type": "Point", "coordinates": [2.326134397795573, 48.88590006808008]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "523d6e81363f0c444e857f8c91f4b368254fa686", "fields": {"departement": "75", "stop_lat": 48.882763601993, "code_postal": "75108", "stop_lon": 2.3269935699922413, "coord": [48.882763601993, 2.3269935699922413], "stop_id": 4016356, "stop_desc": "99 RUE D'AMSTERDAM - 75108", "stop_name": "PLACE DE CLICHY"}, "geometry": {"type": "Point", "coordinates": [2.3269935699922413, 48.882763601993]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "80f1c7e59dcdcfd786b86065d0e88642905bf7ee", "fields": {"departement": "75", "stop_lat": 48.89772769764517, "code_postal": "75118", "stop_lon": 2.338835867995168, "coord": [48.89772769764517, 2.338835867995168], "stop_id": 4016539, "stop_desc": "73 BOULEVARD NEY - 75118", "stop_name": "CAMILLE FLAMMARION"}, "geometry": {"type": "Point", "coordinates": [2.338835867995168, 48.89772769764517]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2d3c11e3665afab7e43c822b9b8a3f759165fe8f", "fields": {"departement": "93", "stop_lat": 48.9080088414417, "code_postal": "93070", "stop_lon": 2.3323602149860267, "coord": [48.9080088414417, 2.3323602149860267], "stop_id": 4016549, "stop_desc": "54 AVENUE GABRIEL PERI - 93070", "stop_name": "ERNEST RENAN"}, "geometry": {"type": "Point", "coordinates": [2.3323602149860267, 48.9080088414417]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bb5d648648b326c55f45d52b2928dad6688208c9", "fields": {"departement": "93", "stop_lat": 48.91758896938038, "code_postal": "93070", "stop_lon": 2.3315956863449316, "coord": [48.91758896938038, 2.3315956863449316], "stop_id": 4016555, "stop_desc": "2 RUE DU LANDY - 93070", "stop_name": "QUAI DE SEINE"}, "geometry": {"type": "Point", "coordinates": [2.3315956863449316, 48.91758896938038]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a978f2d945a52f738738db9454cf8085cf3a6829", "fields": {"departement": "93", "stop_lat": 48.91936813194913, "code_postal": "93039", "stop_lon": 2.3275726936653074, "coord": [48.91936813194913, 2.3275726936653074], "stop_id": 4016557, "stop_desc": "BD MARCEL PAUL - 93039", "stop_name": "BOULEVARD MARCEL PAUL"}, "geometry": {"type": "Point", "coordinates": [2.3275726936653074, 48.91936813194913]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a443fb2692a2e66a48019576401f7a722f84a570", "fields": {"departement": "92", "stop_lat": 48.92160556873136, "code_postal": "92036", "stop_lon": 2.324244800219602, "coord": [48.92160556873136, 2.324244800219602], "stop_id": 4016559, "stop_desc": "FACE 13 AVENUE LOUIS ROCHE - 92036", "stop_name": "QUAI DES GRESILLONS"}, "geometry": {"type": "Point", "coordinates": [2.324244800219602, 48.92160556873136]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "072eacf213bf4ab21f53de1723a571a75b348c3d", "fields": {"departement": "92", "stop_lat": 48.93508654724024, "code_postal": "92078", "stop_lon": 2.33276687838028, "coord": [48.93508654724024, 2.33276687838028], "stop_id": 4016570, "stop_desc": "215 BOULEVARD GALLIENI - 92078", "stop_name": "MAIRIE DE VILLENEUVE-LA-GARENNE-GALLIENI"}, "geometry": {"type": "Point", "coordinates": [2.33276687838028, 48.93508654724024]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "03388b27510e5aa091783e7c07a3a30f055f2063", "fields": {"departement": "92", "stop_lat": 48.93628180786574, "code_postal": "92078", "stop_lon": 2.33303959597754, "coord": [48.93628180786574, 2.33303959597754], "stop_id": 4016571, "stop_desc": "RUE BRANDIN - 92078", "stop_name": "MAIRIE DE VILLENEUVE-LA-GARENNE"}, "geometry": {"type": "Point", "coordinates": [2.33303959597754, 48.93628180786574]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "99273efe3d04418517d42992e1a2b96edce0c122", "fields": {"departement": "92", "stop_lat": 48.93994838374572, "code_postal": "92078", "stop_lon": 2.3317978732895406, "coord": [48.93994838374572, 2.3317978732895406], "stop_id": 4016575, "stop_desc": "FACE 52 AV JEAN MOULIN - 92078", "stop_name": "JEAN MOULIN"}, "geometry": {"type": "Point", "coordinates": [2.3317978732895406, 48.93994838374572]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "42b71e13b527080809234852a053cdf680a7d52c", "fields": {"departement": "92", "stop_lat": 48.94200579242515, "code_postal": "92078", "stop_lon": 2.324376100119309, "coord": [48.94200579242515, 2.324376100119309], "stop_id": 4016579, "stop_desc": "AVENUE GEORGES POMPIDOU - 92078", "stop_name": "PISCINE"}, "geometry": {"type": "Point", "coordinates": [2.324376100119309, 48.94200579242515]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7aa82d81d92aa7cd909a5e43b996ecdeab8c2634", "fields": {"departement": "92", "stop_lat": 48.94182598858249, "code_postal": "92078", "stop_lon": 2.323762231462258, "coord": [48.94182598858249, 2.323762231462258], "stop_id": 4016580, "stop_desc": "FACE 28 AVENUE GEORGES POMPIDOU - 92078", "stop_name": "PISCINE"}, "geometry": {"type": "Point", "coordinates": [2.323762231462258, 48.94182598858249]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "498a563fc5b54da4cea9243e67e1e5d156260c4a", "fields": {"departement": "93", "stop_lat": 48.91227773399913, "code_postal": "93070", "stop_lon": 2.333764189783241, "coord": [48.91227773399913, 2.333764189783241], "stop_id": 4016586, "stop_desc": "4 PLACE DE LA REPUBLIQUE - 93070", "stop_name": "MAIRIE DE SAINT-OUEN"}, "geometry": {"type": "Point", "coordinates": [2.333764189783241, 48.91227773399913]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7c6777e17c2cbbd304046354f98eb9b3a06e11f2", "fields": {"departement": "93", "stop_lat": 48.90835041579792, "code_postal": "93070", "stop_lon": 2.3401041269252816, "coord": [48.90835041579792, 2.3401041269252816], "stop_id": 4016593, "stop_desc": "85 RUE DU DOCTEUR BAUER - 93070", "stop_name": "GODILLOT"}, "geometry": {"type": "Point", "coordinates": [2.3401041269252816, 48.90835041579792]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0351102aba31c9010cf6ab4ef47581dd13bc3d44", "fields": {"departement": "93", "stop_lat": 48.9080088414417, "code_postal": "93070", "stop_lon": 2.3323602149860267, "coord": [48.9080088414417, 2.3323602149860267], "stop_id": 4016610, "stop_desc": "54 AVENUE GABRIEL PERI - 93070", "stop_name": "ERNEST RENAN"}, "geometry": {"type": "Point", "coordinates": [2.3323602149860267, 48.9080088414417]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4ff4aeaf7e159419e6d13604c25db0aa6a402b87", "fields": {"departement": "93", "stop_lat": 48.90900642715508, "code_postal": "93070", "stop_lon": 2.3329600113604876, "coord": [48.90900642715508, 2.3329600113604876], "stop_id": 4016611, "stop_desc": "37 BIS AVENUE GABRIEL PERI - 93070", "stop_name": "ERNEST RENAN"}, "geometry": {"type": "Point", "coordinates": [2.3329600113604876, 48.90900642715508]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9ddfd835cdd3ad0ae0c395649e5c71c2b8d89a4d", "fields": {"departement": "93", "stop_lat": 48.90114257811645, "code_postal": "93070", "stop_lon": 2.3297708198557774, "coord": [48.90114257811645, 2.3297708198557774], "stop_id": 4016613, "stop_desc": "R LAFONTAINE - 93070", "stop_name": "PASTEUR"}, "geometry": {"type": "Point", "coordinates": [2.3297708198557774, 48.90114257811645]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d8e93700765a6b9d4ad945dd3f5eb66ece5b4a09", "fields": {"departement": "75", "stop_lat": 48.90125945888962, "code_postal": "75118", "stop_lon": 2.343920651748825, "coord": [48.90125945888962, 2.343920651748825], "stop_id": 4016694, "stop_desc": "0 AVENUE DE LA PORTE DE CLIGNANCOURT - 75118", "stop_name": "MICHELET - ROSIERS"}, "geometry": {"type": "Point", "coordinates": [2.343920651748825, 48.90125945888962]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9e173a5d615f66c329aa9301bcf1d48d0a57de9d", "fields": {"departement": "93", "stop_lat": 48.9048722466762, "code_postal": "93070", "stop_lon": 2.3443164675064123, "coord": [48.9048722466762, 2.3443164675064123], "stop_id": 4016695, "stop_desc": "FACE 98 RUE DU DOCTEUR BAUER - 93070", "stop_name": "MICHELET - DOCTEUR BAUER"}, "geometry": {"type": "Point", "coordinates": [2.3443164675064123, 48.9048722466762]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "be9a7133121f2073414d7d19e05014d10d29dff8", "fields": {"departement": "93", "stop_lat": 48.90535757000035, "code_postal": "93070", "stop_lon": 2.3439484448994423, "coord": [48.90535757000035, 2.3439484448994423], "stop_id": 4016696, "stop_desc": "110 AVENUE MICHELET - 93070", "stop_name": "MICHELET - DOCTEUR BAUER"}, "geometry": {"type": "Point", "coordinates": [2.3439484448994423, 48.90535757000035]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "77d1997767a7b6665fcee3957ea629592e437485", "fields": {"departement": "93", "stop_lat": 48.91758896938038, "code_postal": "93070", "stop_lon": 2.3315956863449316, "coord": [48.91758896938038, 2.3315956863449316], "stop_id": 4016706, "stop_desc": "2 RUE DU LANDY - 93070", "stop_name": "QUAI DE SEINE"}, "geometry": {"type": "Point", "coordinates": [2.3315956863449316, 48.91758896938038]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a155df5d015d7ab6ea5a784d6da5d851a2d5cac4", "fields": {"departement": "92", "stop_lat": 48.92363621639912, "code_postal": "92036", "stop_lon": 2.3209712353696914, "coord": [48.92363621639912, 2.3209712353696914], "stop_id": 4016711, "stop_desc": "FACE 51 AVENUE LOUIS ROCHE - 92036", "stop_name": "QUATRE CHEMINS"}, "geometry": {"type": "Point", "coordinates": [2.3209712353696914, 48.92363621639912]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e170bcc18e69edef503d1b5e709b29a2035fe004", "fields": {"departement": "92", "stop_lat": 48.92305216002952, "code_postal": "92036", "stop_lon": 2.32168057286034, "coord": [48.92305216002952, 2.32168057286034], "stop_id": 4016712, "stop_desc": "41-43 AVENUE LOUIS ROCHE - 92036", "stop_name": "QUATRE CHEMINS"}, "geometry": {"type": "Point", "coordinates": [2.32168057286034, 48.92305216002952]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "82896e0ed0e8c5a00eee5519f67c6cf3e47087b0", "fields": {"departement": "92", "stop_lat": 48.93199256497532, "code_postal": "92036", "stop_lon": 2.312416372287036, "coord": [48.93199256497532, 2.312416372287036], "stop_id": 4016719, "stop_desc": "28-34 RUE THOMAS EDISON - 92036", "stop_name": "AVENUE DU VIEUX CHEMIN DE SAINT-DENIS"}, "geometry": {"type": "Point", "coordinates": [2.312416372287036, 48.93199256497532]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "edee0e8e0585db64e977d03aa2a4d423b4609c83", "fields": {"departement": "92", "stop_lat": 48.93210037613064, "code_postal": "92036", "stop_lon": 2.3122662810416568, "coord": [48.93210037613064, 2.3122662810416568], "stop_id": 4016720, "stop_desc": "FACE AU 34 RUE THOMAS EDISON - 92036", "stop_name": "AVENUE DU VIEUX CHEMIN DE SAINT-DENIS"}, "geometry": {"type": "Point", "coordinates": [2.3122662810416568, 48.93210037613064]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7689d85a909c77552727a28527b9b093cdb47152", "fields": {"departement": "92", "stop_lat": 48.93355648872554, "code_postal": "92036", "stop_lon": 2.313438647773032, "coord": [48.93355648872554, 2.313438647773032], "stop_id": 4016721, "stop_desc": "RUE THOMAS EDISON - 92036", "stop_name": "PARC DES CHANTERAINES"}, "geometry": {"type": "Point", "coordinates": [2.313438647773032, 48.93355648872554]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "460ce28439791f2e03545dfa3db736507a67ce63", "fields": {"departement": "92", "stop_lat": 48.94042128465188, "code_postal": "92036", "stop_lon": 2.3082514732447663, "coord": [48.94042128465188, 2.3082514732447663], "stop_id": 4016733, "stop_desc": "AVENUE DES LOUVRESSES - 92036", "stop_name": "ZAC DES LOUVRESSES"}, "geometry": {"type": "Point", "coordinates": [2.3082514732447663, 48.94042128465188]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6e8801ed1ec97018363beea6a20c36bda83dd6dd", "fields": {"departement": "92", "stop_lat": 48.94222616127771, "code_postal": "92036", "stop_lon": 2.302725198731223, "coord": [48.94222616127771, 2.302725198731223], "stop_id": 4016735, "stop_desc": "97 AVENUE MARCEL PAUL - 92036", "stop_name": "CHAMPS FOURGONS"}, "geometry": {"type": "Point", "coordinates": [2.302725198731223, 48.94222616127771]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b44b67638965626c0bcbbbae7f8469b167588645", "fields": {"departement": "92", "stop_lat": 48.88555130589665, "code_postal": "92051", "stop_lon": 2.258922605272076, "coord": [48.88555130589665, 2.258922605272076], "stop_id": 4016743, "stop_desc": "176 AVENUE CHARLES DE GAULLE - 92051", "stop_name": "PONT DE NEUILLY-METRO"}, "geometry": {"type": "Point", "coordinates": [2.258922605272076, 48.88555130589665]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f3e755e4cf4338612c5ac410be1ca33acfdaf4c7", "fields": {"departement": "92", "stop_lat": 48.88622746023727, "code_postal": "92051", "stop_lon": 2.262205905418423, "coord": [48.88622746023727, 2.262205905418423], "stop_id": 4016746, "stop_desc": "154-164 AVENUE ACHILLE PERETTI - 92051", "stop_name": "GENERAL GOURAUD"}, "geometry": {"type": "Point", "coordinates": [2.262205905418423, 48.88622746023727]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "071425c9631a8173b7faa90fd70822637b040a3f", "fields": {"departement": "92", "stop_lat": 48.88481078773734, "code_postal": "92051", "stop_lon": 2.26765896400631, "coord": [48.88481078773734, 2.26765896400631], "stop_id": 4016749, "stop_desc": "FACE 149 AVENUE ACHILLE PERETTI OU DU ROULE - 92051", "stop_name": "SAINTE-FOY"}, "geometry": {"type": "Point", "coordinates": [2.26765896400631, 48.88481078773734]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5d3c8dd907770779d5a62e582b92a82e2eb34db1", "fields": {"departement": "92", "stop_lat": 48.885488404514305, "code_postal": "92051", "stop_lon": 2.2740766990315344, "coord": [48.885488404514305, 2.2740766990315344], "stop_id": 4016753, "stop_desc": "21 BOULEVARD INKERMANN - 92051", "stop_name": "LYCEE PASTEUR"}, "geometry": {"type": "Point", "coordinates": [2.2740766990315344, 48.885488404514305]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b9102e529dbd07cde4a2750a2abf0efa35eae5e6", "fields": {"departement": "92", "stop_lat": 48.891865251129495, "code_postal": "92044", "stop_lon": 2.28416829017675, "coord": [48.891865251129495, 2.28416829017675], "stop_id": 4016758, "stop_desc": "38 RUE VOLTAIRE - 92044", "stop_name": "ANATOLE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.28416829017675, 48.891865251129495]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2ee4aabc47ce283d7b381ee59a212b15b98dbcd5", "fields": {"departement": "92", "stop_lat": 48.8942862056984, "code_postal": "92044", "stop_lon": 2.2924664847616247, "coord": [48.8942862056984, 2.2924664847616247], "stop_id": 4016764, "stop_desc": "99 RUE ARISTIDE BRIAND - 92044", "stop_name": "MARJOLIN"}, "geometry": {"type": "Point", "coordinates": [2.2924664847616247, 48.8942862056984]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "51e6713ed75131c263b5886f19396b3cc2dc8ee0", "fields": {"departement": "92", "stop_lat": 48.898600670071836, "code_postal": "92044", "stop_lon": 2.2941939108666523, "coord": [48.898600670071836, 2.2941939108666523], "stop_id": 4016769, "stop_desc": "FACE 123 RUE VICTOR HUGO - 92044", "stop_name": "COLLANGE"}, "geometry": {"type": "Point", "coordinates": [2.2941939108666523, 48.898600670071836]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "47ca2837d8191827f3bbdc58037c3772d3d6575f", "fields": {"departement": "92", "stop_lat": 48.91643986832635, "code_postal": "92004", "stop_lon": 2.2938790939504416, "coord": [48.91643986832635, 2.2938790939504416], "stop_id": 4016798, "stop_desc": "PISTE GARE ROUTIERE - 92004", "stop_name": "GABRIEL PERI-METRO"}, "geometry": {"type": "Point", "coordinates": [2.2938790939504416, 48.91643986832635]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c74c1db58327edb2f665c36c7b248fe4fef43362", "fields": {"departement": "92", "stop_lat": 48.916323540007774, "code_postal": "92004", "stop_lon": 2.295283679264348, "coord": [48.916323540007774, 2.295283679264348], "stop_id": 4016799, "stop_desc": "PISTE GARE ROUTIERE - 92004", "stop_name": "GABRIEL PERI-METRO"}, "geometry": {"type": "Point", "coordinates": [2.295283679264348, 48.916323540007774]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f7c2b0c7161c68fdfd1c041525c68fba1310cd11", "fields": {"departement": "92", "stop_lat": 48.91686618787583, "code_postal": "92004", "stop_lon": 2.3065328960984046, "coord": [48.91686618787583, 2.3065328960984046], "stop_id": 4016803, "stop_desc": "124 AVENUE DES GRESILLONS - 92004", "stop_name": "GRESILLONS-FELIX EBOUE"}, "geometry": {"type": "Point", "coordinates": [2.3065328960984046, 48.91686618787583]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "171dc9c4d5f5c391827fe9aaa1873c19ecd10f44", "fields": {"departement": "92", "stop_lat": 48.92731276315047, "code_postal": "92078", "stop_lon": 2.330067090021507, "coord": [48.92731276315047, 2.330067090021507], "stop_id": 4016813, "stop_desc": "FACE 92 BOULEVARD GALLIENI - 92078", "stop_name": "LYCEE PETIET - C.COMMERCIAL"}, "geometry": {"type": "Point", "coordinates": [2.330067090021507, 48.92731276315047]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "abbf2605f25ebd51643acbe88f92c77e9932fbb3", "fields": {"departement": "92", "stop_lat": 48.930152731411006, "code_postal": "92078", "stop_lon": 2.3321671703219526, "coord": [48.930152731411006, 2.3321671703219526], "stop_id": 4016814, "stop_desc": "142 BOULEVARD GALLIENI - 92078", "stop_name": "MAURICE RAVEL"}, "geometry": {"type": "Point", "coordinates": [2.3321671703219526, 48.930152731411006]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3378c8d9de3d6628c147eb61b26b3114d63096ec", "fields": {"departement": "94", "stop_lat": 48.79799346817442, "code_postal": "94016", "stop_lon": 2.338125381759266, "coord": [48.79799346817442, 2.338125381759266], "stop_id": 3786332, "stop_desc": "45 R DE LA CITADELLE - 94016", "stop_name": "LA CITADELLE"}, "geometry": {"type": "Point", "coordinates": [2.338125381759266, 48.79799346817442]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d287c3e81fca4b9d256664cf7bb2635e7e5f59cd", "fields": {"departement": "94", "stop_lat": 48.80441077970278, "code_postal": "94003", "stop_lon": 2.336247805194497, "coord": [48.80441077970278, 2.336247805194497], "stop_id": 3792960, "stop_desc": "86 AVENUE DE LA CONVENTION - 94003", "stop_name": "LOUIS FREBAULT"}, "geometry": {"type": "Point", "coordinates": [2.336247805194497, 48.80441077970278]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dcccda7dcc123b11582b3db2b1ff165cb78dc8ca", "fields": {"departement": "94", "stop_lat": 48.80148968188163, "code_postal": "94003", "stop_lon": 2.3334587047633777, "coord": [48.80148968188163, 2.3334587047633777], "stop_id": 3792961, "stop_desc": "39 AVENUE DE LA CONVENTION - 94003", "stop_name": "CITE JARDINS"}, "geometry": {"type": "Point", "coordinates": [2.3334587047633777, 48.80148968188163]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "85ede5da7623c164ec82393c7e3fdc5fcf364fa0", "fields": {"departement": "94", "stop_lat": 48.79042553189924, "code_postal": "94016", "stop_lon": 2.3314327039783245, "coord": [48.79042553189924, 2.3314327039783245], "stop_id": 3792967, "stop_desc": "6 AVENUE DU MARECHAL DE LATTRE DE TASSIGNY - 94016", "stop_name": "DIVISION LECLERC - CAMILLE DESMOULINS"}, "geometry": {"type": "Point", "coordinates": [2.3314327039783245, 48.79042553189924]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "519a70df35d75ee08fc702b33c7673f83c51620f", "fields": {"departement": "94", "stop_lat": 48.77408540111115, "code_postal": "94038", "stop_lon": 2.3313121482244825, "coord": [48.77408540111115, 2.3313121482244825], "stop_id": 3792977, "stop_desc": "3 RUE DE CHALAIS - 94038", "stop_name": "LECLERC - CHALAIS"}, "geometry": {"type": "Point", "coordinates": [2.3313121482244825, 48.77408540111115]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8cc21fb1cff9c6600a6c8333ddf7392aba16c7fb", "fields": {"departement": "94", "stop_lat": 48.771056532055944, "code_postal": "94038", "stop_lon": 2.333828064157165, "coord": [48.771056532055944, 2.333828064157165], "stop_id": 3792978, "stop_desc": "56 RUE DE LA BERGERE - 94038", "stop_name": "BERGERE"}, "geometry": {"type": "Point", "coordinates": [2.333828064157165, 48.771056532055944]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "96bd5bceaa04d0623f0d5657a609e80bef93a462", "fields": {"departement": "94", "stop_lat": 48.75933546282939, "code_postal": "94034", "stop_lon": 2.3248020175823, "coord": [48.75933546282939, 2.3248020175823], "stop_id": 3792983, "stop_desc": "FACE 8 RUE EMILE ZOLA - 94034", "stop_name": "EMILE ZOLA"}, "geometry": {"type": "Point", "coordinates": [2.3248020175823, 48.75933546282939]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d4ebefbc0b0d6585d39d24f34bf038f82598604d", "fields": {"departement": "94", "stop_lat": 48.77068778511185, "code_postal": "94038", "stop_lon": 2.3290009485512337, "coord": [48.77068778511185, 2.3290009485512337], "stop_id": 3792995, "stop_desc": "RUE DE CHALAIS - 94038", "stop_name": "BLONDEAUX - ECOLES"}, "geometry": {"type": "Point", "coordinates": [2.3290009485512337, 48.77068778511185]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1afc0698bca8bd03aa69f2f3ddce09fcbcc44429", "fields": {"departement": "94", "stop_lat": 48.78630894084454, "code_postal": "94016", "stop_lon": 2.329324906869928, "coord": [48.78630894084454, 2.329324906869928], "stop_id": 3792997, "stop_desc": "AVENUE DE LA DIVISION LECLERC - 94016", "stop_name": "LA PLAINE"}, "geometry": {"type": "Point", "coordinates": [2.329324906869928, 48.78630894084454]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "656a58d7214805e7444eda51fd96c6393e82fce5", "fields": {"departement": "93", "stop_lat": 48.89542736283305, "code_postal": "93053", "stop_lon": 2.459368632850764, "coord": [48.89542736283305, 2.459368632850764], "stop_id": 3798440, "stop_desc": "119 RUE JEAN JAURES - 93053", "stop_name": "NOISY-LE-SEC RER"}, "geometry": {"type": "Point", "coordinates": [2.459368632850764, 48.89542736283305]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "104454137a7f38c8c31688c78f7c2c20e43d0e7a", "fields": {"departement": "93", "stop_lat": 48.90788894559004, "code_postal": "93008", "stop_lon": 2.4539309307063446, "coord": [48.90788894559004, 2.4539309307063446], "stop_id": 3798447, "stop_desc": "247 AVENUE PAUL VAILLANT COUTURIER - 93008", "stop_name": "JEAN ROSTAND"}, "geometry": {"type": "Point", "coordinates": [2.4539309307063446, 48.90788894559004]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bf5314e25fd6f2268e6008cf7b884c764d2aaaf9", "fields": {"departement": "93", "stop_lat": 48.922538782210765, "code_postal": "93027", "stop_lon": 2.4065192459924463, "coord": [48.922538782210765, 2.4065192459924463], "stop_id": 3798466, "stop_desc": "FACE 97 AVENUE JEAN JAURES - 93027", "stop_name": "DANTON"}, "geometry": {"type": "Point", "coordinates": [2.4065192459924463, 48.922538782210765]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0ea75e250429abc9f6d84cfd85a766855e93c7fb", "fields": {"departement": "93", "stop_lat": 48.92996388514459, "code_postal": "93027", "stop_lon": 2.38414692421841, "coord": [48.92996388514459, 2.38414692421841], "stop_id": 3798472, "stop_desc": "RUE DE SAINT-DENIS - 93027", "stop_name": "LA COURNEUVE - SIX ROUTES"}, "geometry": {"type": "Point", "coordinates": [2.38414692421841, 48.92996388514459]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f5b21ae896c2190641648b11825a8d5331cd4a3d", "fields": {"departement": "93", "stop_lat": 48.93361694655068, "code_postal": "93066", "stop_lon": 2.3711918916110073, "coord": [48.93361694655068, 2.3711918916110073], "stop_id": 3798474, "stop_desc": "ROUTE DE LA COURNEUVE - 93066", "stop_name": "HOPITAL DELAFONTAINE"}, "geometry": {"type": "Point", "coordinates": [2.3711918916110073, 48.93361694655068]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f03688531fc43c85660fa1fcf23de12a8a29d434", "fields": {"departement": "93", "stop_lat": 48.933446227155116, "code_postal": "93066", "stop_lon": 2.3710826572220967, "coord": [48.933446227155116, 2.3710826572220967], "stop_id": 3798475, "stop_desc": "ROUTE DE LA COURNEUVE - 93066", "stop_name": "HOPITAL DELAFONTAINE"}, "geometry": {"type": "Point", "coordinates": [2.3710826572220967, 48.933446227155116]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9de81d8509178cf9609a68c64fceadc4d4561087", "fields": {"departement": "93", "stop_lat": 48.937224787599476, "code_postal": "93066", "stop_lon": 2.3502957727621445, "coord": [48.937224787599476, 2.3502957727621445], "stop_id": 3798483, "stop_desc": "46 BIS BOULEVARD JULES GUESDE - 93066", "stop_name": "THEATRE GERARD PHILIPE"}, "geometry": {"type": "Point", "coordinates": [2.3502957727621445, 48.937224787599476]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f38a1d2a325927b928617232cd63f28b852ce438", "fields": {"departement": "93", "stop_lat": 48.93591315476924, "code_postal": "93066", "stop_lon": 2.3452346456266597, "coord": [48.93591315476924, 2.3452346456266597], "stop_id": 3798485, "stop_desc": "RUE DU PORT - 93066", "stop_name": "GARE DE ST-DENIS RER"}, "geometry": {"type": "Point", "coordinates": [2.3452346456266597, 48.93591315476924]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a37d6331c04366d8d958b5ae262dbb80725cfbfa", "fields": {"departement": "92", "stop_lat": 48.93577857776938, "code_postal": "92078", "stop_lon": 2.3341172700973267, "coord": [48.93577857776938, 2.3341172700973267], "stop_id": 3798488, "stop_desc": "12 AV DE VERDUN - 92078", "stop_name": "MAIRIE DE VILLENEUVE-LA GARENNE"}, "geometry": {"type": "Point", "coordinates": [2.3341172700973267, 48.93577857776938]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2e529a3d76b9ec3e30cd1b72b517f2a089e607e1", "fields": {"departement": "92", "stop_lat": 48.93011362688258, "code_postal": "92004", "stop_lon": 2.283187962763052, "coord": [48.93011362688258, 2.283187962763052], "stop_id": 3798504, "stop_desc": "0 AV DE LA REDOUTE - 92004", "stop_name": "LES COURTILLES"}, "geometry": {"type": "Point", "coordinates": [2.283187962763052, 48.93011362688258]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d3075b5751d3d49a5181b14ad24ca00e073b61b2", "fields": {"departement": "92", "stop_lat": 48.929906984040194, "code_postal": "92004", "stop_lon": 2.283310932940069, "coord": [48.929906984040194, 2.283310932940069], "stop_id": 3798505, "stop_desc": "0 AV DE LA REDOUTE - 92004", "stop_name": "LES COURTILLES"}, "geometry": {"type": "Point", "coordinates": [2.283310932940069, 48.929906984040194]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "98e3700281635081a5453ff0ac28269dc85a5718", "fields": {"departement": "93", "stop_lat": 48.91414621861748, "code_postal": "93008", "stop_lon": 2.4309560052261063, "coord": [48.91414621861748, 2.4309560052261063], "stop_id": 3798510, "stop_desc": "73 BIS R DE STALINGRAD - 93008", "stop_name": "GASTON ROULAUD"}, "geometry": {"type": "Point", "coordinates": [2.4309560052261063, 48.91414621861748]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f716ca927d659dfb8edd6361ae149b25bbc3ae58", "fields": {"departement": "75", "stop_lat": 48.88097388157959, "code_postal": "75110", "stop_lon": 2.357381029341471, "coord": [48.88097388157959, 2.357381029341471], "stop_id": 3807562, "stop_desc": "GARE ROUTIERE - 75110", "stop_name": "GARE DU NORD"}, "geometry": {"type": "Point", "coordinates": [2.357381029341471, 48.88097388157959]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c5a2fa3e6dac3d505fc0c47462dd5c9f135a0afd", "fields": {"departement": "75", "stop_lat": 48.87617468079017, "code_postal": "75110", "stop_lon": 2.3573655408708234, "coord": [48.87617468079017, 2.3573655408708234], "stop_id": 3807564, "stop_desc": "15-17 RUE DU 8 MAI 1945 - 75110", "stop_name": "GARE DE L'EST"}, "geometry": {"type": "Point", "coordinates": [2.3573655408708234, 48.87617468079017]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "87a991232999804482c873061baf046f9db9755f", "fields": {"departement": "75", "stop_lat": 48.87534776844683, "code_postal": "75110", "stop_lon": 2.357842096001513, "coord": [48.87534776844683, 2.357842096001513], "stop_id": 3807565, "stop_desc": "72 BOULEVARD DE STRASBOURG - 75110", "stop_name": "GARE DE L'EST"}, "geometry": {"type": "Point", "coordinates": [2.357842096001513, 48.87534776844683]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dcbce370d2f9e75b5946c0edcbae34b9b81e1406", "fields": {"departement": "75", "stop_lat": 48.8692458578095, "code_postal": "75110", "stop_lon": 2.354856143502057, "coord": [48.8692458578095, 2.354856143502057], "stop_id": 3807568, "stop_desc": "8 BOULEVARD SAINT-DENIS - 75110", "stop_name": "PORTE SAINT-MARTIN"}, "geometry": {"type": "Point", "coordinates": [2.354856143502057, 48.8692458578095]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4d8dcc871ee4c98d1f964e066b6373be40819d1b", "fields": {"departement": "75", "stop_lat": 48.871574850762954, "code_postal": "75102", "stop_lon": 2.3397615041178366, "coord": [48.871574850762954, 2.3397615041178366], "stop_id": 3807572, "stop_desc": "103 RUE DE RICHELIEU - 75102", "stop_name": "RICHELIEU - DROUOT"}, "geometry": {"type": "Point", "coordinates": [2.3397615041178366, 48.871574850762954]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ef7cabef9cff1dfb746bb8531a3725143f65bd90", "fields": {"departement": "75", "stop_lat": 48.86796196579372, "code_postal": "75102", "stop_lon": 2.337949459051578, "coord": [48.86796196579372, 2.337949459051578], "stop_id": 3807575, "stop_desc": "FACE 58 RUE DE RICHELIEU - 75102", "stop_name": "BIBLIOTHEQUE NATIONALE"}, "geometry": {"type": "Point", "coordinates": [2.337949459051578, 48.86796196579372]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c3833d7bd1770f79d0945b8bda9662d82360b786", "fields": {"departement": "75", "stop_lat": 48.860772008011736, "code_postal": "75101", "stop_lon": 2.333508852548907, "coord": [48.860772008011736, 2.333508852548907], "stop_id": 3807578, "stop_desc": "PLACE DU CARROUSEL - 75101", "stop_name": "MUSEE DU LOUVRE"}, "geometry": {"type": "Point", "coordinates": [2.333508852548907, 48.860772008011736]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "09e9b2a3b7d4569d9d464f1a11ca9bb32030d859", "fields": {"departement": "75", "stop_lat": 48.86083493385864, "code_postal": "75101", "stop_lon": 2.3339855904522095, "coord": [48.86083493385864, 2.3339855904522095], "stop_id": 3807579, "stop_desc": "PLACE DU CARROUSEL - 75101", "stop_name": "MUSEE DU LOUVRE"}, "geometry": {"type": "Point", "coordinates": [2.3339855904522095, 48.86083493385864]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b52ffc56acd8cc713de5d11adb8bd0a04a83df60", "fields": {"departement": "75", "stop_lat": 48.85436397838255, "code_postal": "75106", "stop_lon": 2.3336727493054252, "coord": [48.85436397838255, 2.3336727493054252], "stop_id": 3807583, "stop_desc": "PLACE SAINT-GERMAIN DES PRES - 75106", "stop_name": "SAINT-GERMAIN-DES-PRES"}, "geometry": {"type": "Point", "coordinates": [2.3336727493054252, 48.85436397838255]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "44439f9392be0076f69791596bebbe9ca87e5eb7", "fields": {"departement": "75", "stop_lat": 48.85109205620137, "code_postal": "75107", "stop_lon": 2.325910342202172, "coord": [48.85109205620137, 2.325910342202172], "stop_id": 3807586, "stop_desc": "FACE 29 RUE DE SEVRES - 75107", "stop_name": "SEVRES - BABYLONE"}, "geometry": {"type": "Point", "coordinates": [2.325910342202172, 48.85109205620137]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7590846b38691922843864a2566eab6356b5ac2c", "fields": {"departement": "75", "stop_lat": 48.84659686626664, "code_postal": "75107", "stop_lon": 2.3155075746566527, "coord": [48.84659686626664, 2.3155075746566527], "stop_id": 3807589, "stop_desc": "FACE 149 RUE DE SEVRES - 75107", "stop_name": "HOPITAL DES ENFANTS MALADES"}, "geometry": {"type": "Point", "coordinates": [2.3155075746566527, 48.84659686626664]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "547ee38bba6ccbbe87271b2bd5d62a104849b461", "fields": {"departement": "75", "stop_lat": 48.835786178532544, "code_postal": "75115", "stop_lon": 2.2893311561831453, "coord": [48.835786178532544, 2.2893311561831453], "stop_id": 3807611, "stop_desc": "35-37 RUE DESNOUETTES - 75115", "stop_name": "HAMEAU"}, "geometry": {"type": "Point", "coordinates": [2.2893311561831453, 48.835786178532544]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1ae350ec0efc3b02aa7a5e453988513b0136303e", "fields": {"departement": "75", "stop_lat": 48.83433085153598, "code_postal": "75115", "stop_lon": 2.2910070539330327, "coord": [48.83433085153598, 2.2910070539330327], "stop_id": 3807612, "stop_desc": "FACE 366 TER R DE VAUGIRARD - 75115", "stop_name": "VAUGIRARD - CROIX-NIVERT"}, "geometry": {"type": "Point", "coordinates": [2.2910070539330327, 48.83433085153598]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "51f484431b17794e47565216843396ed87d0621a", "fields": {"departement": "75", "stop_lat": 48.843217014382596, "code_postal": "75115", "stop_lon": 2.3127039743389797, "coord": [48.843217014382596, 2.3127039743389797], "stop_id": 3807618, "stop_desc": "31 BOULEVARD PASTEUR - 75115", "stop_name": "PASTEUR - LYCEE BUFFON"}, "geometry": {"type": "Point", "coordinates": [2.3127039743389797, 48.843217014382596]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "04792e742b70ee323136781a73c944aa8beb392d", "fields": {"departement": "75", "stop_lat": 48.856125538622685, "code_postal": "75106", "stop_lon": 2.3344762062815754, "coord": [48.856125538622685, 2.3344762062815754], "stop_id": 3807623, "stop_desc": "13-15 RUE BONAPARTE - 75106", "stop_name": "JACOB"}, "geometry": {"type": "Point", "coordinates": [2.3344762062815754, 48.856125538622685]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "79fbed372fba3c1452d95ecb21d5f5b8b9fb5731", "fields": {"departement": "75", "stop_lat": 48.8686000083944, "code_postal": "75102", "stop_lon": 2.341069192464145, "coord": [48.8686000083944, 2.341069192464145], "stop_id": 3807626, "stop_desc": "11 PLACE DE LA BOURSE - 75102", "stop_name": "BOURSE"}, "geometry": {"type": "Point", "coordinates": [2.341069192464145, 48.8686000083944]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b9de89b1ddfafa8686dcf068c7d4a7800a5b3b50", "fields": {"departement": "75", "stop_lat": 48.868123588566576, "code_postal": "75102", "stop_lon": 2.3432624809229616, "coord": [48.868123588566576, 2.3432624809229616], "stop_id": 3807627, "stop_desc": "105 RUE REAUMUR - 75102", "stop_name": "REAUMUR - MONTMARTRE"}, "geometry": {"type": "Point", "coordinates": [2.3432624809229616, 48.868123588566576]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bfa78410a66d513a9d11c03fe96b27be46965078", "fields": {"departement": "75", "stop_lat": 48.868338278887315, "code_postal": "75103", "stop_lon": 2.3538613429496, "coord": [48.868338278887315, 2.3538613429496], "stop_id": 3807630, "stop_desc": "108 BOULEVARD DE SEBASTOPOL - 75103", "stop_name": "STRASBOURG - SAINT-DENIS"}, "geometry": {"type": "Point", "coordinates": [2.3538613429496, 48.868338278887315]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7e7a3d577972de59411e4b313083f2a9db0f4b0c", "fields": {"departement": "75", "stop_lat": 48.87781949763114, "code_postal": "75110", "stop_lon": 2.3564941357294393, "coord": [48.87781949763114, 2.3564941357294393], "stop_id": 3807632, "stop_desc": "140-142 RUE DU FAUBOURG SAINT-DENIS - 75110", "stop_name": "VALENCIENNES"}, "geometry": {"type": "Point", "coordinates": [2.3564941357294393, 48.87781949763114]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cc1e1e1af6cc1c1c0cec7f1f12e8e2be90d5e67f", "fields": {"departement": "75", "stop_lat": 48.880390553874314, "code_postal": "75110", "stop_lon": 2.351535098083727, "coord": [48.880390553874314, 2.351535098083727], "stop_id": 3811225, "stop_desc": "77-79 RUE DE MAUBEUGE - 75110", "stop_name": "MAGENTA - MAUBEUGE"}, "geometry": {"type": "Point", "coordinates": [2.351535098083727, 48.880390553874314]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9a4d4b3f1dad6c1ee0f53e9e07511ec28b763000", "fields": {"departement": "75", "stop_lat": 48.87824322907468, "code_postal": "75109", "stop_lon": 2.3445581036681564, "coord": [48.87824322907468, 2.3445581036681564], "stop_id": 3811227, "stop_desc": "29 RUE DE MAUBEUGE - 75109", "stop_name": "MAUBEUGE - ROCHECHOUART"}, "geometry": {"type": "Point", "coordinates": [2.3445581036681564, 48.87824322907468]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8fd2368fa1d955e47f12a46156514a45f9e42ad0", "fields": {"departement": "75", "stop_lat": 48.86053115998036, "code_postal": "75107", "stop_lon": 2.29573746638822, "coord": [48.86053115998036, 2.29573746638822], "stop_id": 3811251, "stop_desc": "1 AVENUE DE LA BOURDONNAIS - 75107", "stop_name": "TOUR EIFFEL"}, "geometry": {"type": "Point", "coordinates": [2.29573746638822, 48.86053115998036]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cc825d5dfd101d319753588b9a43a35d3d3f8146", "fields": {"departement": "75", "stop_lat": 48.85309762534647, "code_postal": "75115", "stop_lon": 2.293155771552188, "coord": [48.85309762534647, 2.293155771552188], "stop_id": 3811258, "stop_desc": "26 RUE DESAIX - 75115", "stop_name": "DESAIX"}, "geometry": {"type": "Point", "coordinates": [2.293155771552188, 48.85309762534647]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "651d45aeef1941ef7cd9ceb04b45064c583c4531", "fields": {"departement": "75", "stop_lat": 48.85329552990264, "code_postal": "75115", "stop_lon": 2.2936458957508905, "coord": [48.85329552990264, 2.2936458957508905], "stop_id": 3811259, "stop_desc": "FACE 26 RUE DESAIX - 75115", "stop_name": "DESAIX"}, "geometry": {"type": "Point", "coordinates": [2.2936458957508905, 48.85329552990264]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ba73a0180d414dc65a8692c0faecda784b0857b5", "fields": {"departement": "75", "stop_lat": 48.85200075190116, "code_postal": "75115", "stop_lon": 2.2920808113742055, "coord": [48.85200075190116, 2.2920808113742055], "stop_id": 3811261, "stop_desc": "27 RUE DESAIX - 75115", "stop_name": "DUPLEIX"}, "geometry": {"type": "Point", "coordinates": [2.2920808113742055, 48.85200075190116]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "36a10dc1aec034482dcbf9394ba5d71d5b116394", "fields": {"departement": "75", "stop_lat": 48.84930412827262, "code_postal": "75115", "stop_lon": 2.2910890320531823, "coord": [48.84930412827262, 2.2910890320531823], "stop_id": 3811262, "stop_desc": "22 RUE DE LOURMEL - 75115", "stop_name": "RUE ROUELLE"}, "geometry": {"type": "Point", "coordinates": [2.2910890320531823, 48.84930412827262]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a84ecf5dd674d8f98bb3d0037446ef172aeb184a", "fields": {"departement": "75", "stop_lat": 48.84791959516581, "code_postal": "75115", "stop_lon": 2.289919131362428, "coord": [48.84791959516581, 2.289919131362428], "stop_id": 3811264, "stop_desc": "42 RUE DE LOURMEL - 75115", "stop_name": "THEATRE"}, "geometry": {"type": "Point", "coordinates": [2.289919131362428, 48.84791959516581]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8c93ac5966c9013928e527793e185e6d96dc29ac", "fields": {"departement": "75", "stop_lat": 48.84155432373409, "code_postal": "75115", "stop_lon": 2.2848869621812207, "coord": [48.84155432373409, 2.2848869621812207], "stop_id": 3811268, "stop_desc": "RUE DE LOURMEL - 75115", "stop_name": "CONVENTION - BOUCICAUT"}, "geometry": {"type": "Point", "coordinates": [2.2848869621812207, 48.84155432373409]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "613fd9dff554cf09fc1c031170aa50bf07b038ab", "fields": {"departement": "75", "stop_lat": 48.84380941506686, "code_postal": "75115", "stop_lon": 2.2831417424430995, "coord": [48.84380941506686, 2.2831417424430995], "stop_id": 3811269, "stop_desc": "135 RUE SAINT CHARLES - 75115", "stop_name": "CONVENTION - BOUCICAUT"}, "geometry": {"type": "Point", "coordinates": [2.2831417424430995, 48.84380941506686]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dc85ed8647fb9381f0fb424f1518154258770955", "fields": {"departement": "75", "stop_lat": 48.8369676365704, "code_postal": "75115", "stop_lon": 2.2783972601736324, "coord": [48.8369676365704, 2.2783972601736324], "stop_id": 3811274, "stop_desc": "85 RUE LEBLANC - 75115", "stop_name": "PLACE BALARD"}, "geometry": {"type": "Point", "coordinates": [2.2783972601736324, 48.8369676365704]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d6d970de1598f7495289b146da77678498f3d6b9", "fields": {"departement": "75", "stop_lat": 48.83946421233197, "code_postal": "75115", "stop_lon": 2.274541211540746, "coord": [48.83946421233197, 2.274541211540746], "stop_id": 3811276, "stop_desc": "31 RUE LEBLANC - 75115", "stop_name": "RUE LEBLANC"}, "geometry": {"type": "Point", "coordinates": [2.274541211540746, 48.83946421233197]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7532c795858d24891242bdf6d29cbcfeb1a12e52", "fields": {"departement": "75", "stop_lat": 48.83871138559654, "code_postal": "75115", "stop_lon": 2.27872205187518, "coord": [48.83871138559654, 2.27872205187518], "stop_id": 3811281, "stop_desc": "215 RUE SAINT CHARLES - 75115", "stop_name": "SAINT-CHARLES - BALARD"}, "geometry": {"type": "Point", "coordinates": [2.27872205187518, 48.83871138559654]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f838de25e527662a89c3c3c949a2ab2f60248e31", "fields": {"departement": "75", "stop_lat": 48.86944432102202, "code_postal": "75101", "stop_lon": 2.325715598888305, "coord": [48.86944432102202, 2.325715598888305], "stop_id": 3811284, "stop_desc": "19-21 BOULEVARD DE LA MADELEINE - 75101", "stop_name": "MADELEINE"}, "geometry": {"type": "Point", "coordinates": [2.325715598888305, 48.86944432102202]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6a7ee350b7c36e765c14efd2b2d8621724bda312", "fields": {"departement": "75", "stop_lat": 48.84985148247004, "code_postal": "75107", "stop_lon": 2.3230916194394515, "coord": [48.84985148247004, 2.3230916194394515], "stop_id": 3812931, "stop_desc": "38 RUE DE SEVRES - 75107", "stop_name": "BAC - SAINT-PLACIDE"}, "geometry": {"type": "Point", "coordinates": [2.3230916194394515, 48.84985148247004]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "41a0b28f2fb8b201b7f7e3c5144f8f3792e8a0bd", "fields": {"departement": "75", "stop_lat": 48.84333741383116, "code_postal": "75115", "stop_lon": 2.293722349362553, "coord": [48.84333741383116, 2.293722349362553], "stop_id": 3812943, "stop_desc": "106 RUE DES ENTREPRENEURS - 75115", "stop_name": "FELIX FAURE"}, "geometry": {"type": "Point", "coordinates": [2.293722349362553, 48.84333741383116]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "69bf4fb387d817ab02779399d1d98d943ed7bcb1", "fields": {"departement": "75", "stop_lat": 48.844361117650294, "code_postal": "75115", "stop_lon": 2.291393002278304, "coord": [48.844361117650294, 2.291393002278304], "stop_id": 3812944, "stop_desc": "67 RUE DES ENTREPRENEURS - 75115", "stop_name": "VIOLET"}, "geometry": {"type": "Point", "coordinates": [2.291393002278304, 48.844361117650294]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6a31f485cd2747796cd6d23bc2a32181dfe9371c", "fields": {"departement": "75", "stop_lat": 48.82451004472554, "code_postal": "75113", "stop_lon": 2.376007131149646, "coord": [48.82451004472554, 2.376007131149646], "stop_id": 4843411, "stop_desc": "5 BIS RUE DE PATAY - 75113", "stop_name": "REGNAULT"}, "geometry": {"type": "Point", "coordinates": [2.376007131149646, 48.82451004472554]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8f53bdff37f679359a473fc57b2026577c76a164", "fields": {"departement": "94", "stop_lat": 48.805181752874724, "code_postal": "94041", "stop_lon": 2.38834750833391, "coord": [48.805181752874724, 2.38834750833391], "stop_id": 4843459, "stop_desc": "RUE AMEDEE HUON - 94041", "stop_name": "FORT D'IVRY"}, "geometry": {"type": "Point", "coordinates": [2.38834750833391, 48.805181752874724]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "97a0da10387cac1a9954ba7c0787ce2bc5913ab5", "fields": {"departement": "94", "stop_lat": 48.79927544225278, "code_postal": "94081", "stop_lon": 2.391307600816875, "coord": [48.79927544225278, 2.391307600816875], "stop_id": 4843465, "stop_desc": "FACE 47 RUE DES CARRIERES - 94081", "stop_name": "LAVOISIER - CARRIERES"}, "geometry": {"type": "Point", "coordinates": [2.391307600816875, 48.79927544225278]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1616f8d4f728744d81aeb98d6f100a8967d8daea", "fields": {"departement": "94", "stop_lat": 48.79329781592944, "code_postal": "94081", "stop_lon": 2.392811367157449, "coord": [48.79329781592944, 2.392811367157449], "stop_id": 4843469, "stop_desc": "RUE DU GENERAL DE GAULLE - 94081", "stop_name": "EXPLORADOME"}, "geometry": {"type": "Point", "coordinates": [2.392811367157449, 48.79329781592944]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d8cecd7c8fc856e3fca0699c998b2a6c94282c0d", "fields": {"departement": "94", "stop_lat": 48.790610719207514, "code_postal": "94081", "stop_lon": 2.392196366578341, "coord": [48.790610719207514, 2.392196366578341], "stop_id": 4843472, "stop_desc": "10 AVENUE DE L'ABBE ROGER DERRY - 94081", "stop_name": "AUDIGEOIS"}, "geometry": {"type": "Point", "coordinates": [2.392196366578341, 48.790610719207514]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d0e245dcc351e8e2b02e5dc51cdce434b31eb491", "fields": {"departement": "94", "stop_lat": 48.78961431654919, "code_postal": "94081", "stop_lon": 2.3894067925901123, "coord": [48.78961431654919, 2.3894067925901123], "stop_id": 4843474, "stop_desc": "FACE 41 AVENUE DE L'ABBE ROGER DERRY - 94081", "stop_name": "HOTEL DE VILLE DE VITRY - R.DERRY"}, "geometry": {"type": "Point", "coordinates": [2.3894067925901123, 48.78961431654919]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c358f35f3740687046c031dffa0448c1e701e7b9", "fields": {"departement": "94", "stop_lat": 48.78568219945604, "code_postal": "94081", "stop_lon": 2.37758313609836, "coord": [48.78568219945604, 2.37758313609836], "stop_id": 4843514, "stop_desc": "91-93 AVENUE DU COLONEL FABIEN - 94081", "stop_name": "EDOUARD TREMBLAY"}, "geometry": {"type": "Point", "coordinates": [2.37758313609836, 48.78568219945604]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f7885946527508d9663c941b4d8673f12661fec6", "fields": {"departement": "94", "stop_lat": 48.77769219027568, "code_postal": "94081", "stop_lon": 2.3766929708744233, "coord": [48.77769219027568, 2.3766929708744233], "stop_id": 4843521, "stop_desc": "FACE 115 RUE JULIAN GRIMAU - 94081", "stop_name": "PAUL ARMANGOT"}, "geometry": {"type": "Point", "coordinates": [2.3766929708744233, 48.77769219027568]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "293342134b592d727f9adb4f03b2205103404717", "fields": {"departement": "94", "stop_lat": 48.77350541658463, "code_postal": "94081", "stop_lon": 2.371386448971689, "coord": [48.77350541658463, 2.371386448971689], "stop_id": 4843524, "stop_desc": "17 RUE DE FRANCE - 94081", "stop_name": "CITE JARDIN"}, "geometry": {"type": "Point", "coordinates": [2.371386448971689, 48.77350541658463]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "16d488263700bfdeeac14a2c5bdb994ec17d9c2d", "fields": {"departement": "94", "stop_lat": 48.77232889042314, "code_postal": "94081", "stop_lon": 2.368067762021552, "coord": [48.77232889042314, 2.368067762021552], "stop_id": 4843526, "stop_desc": "1 RUE DU MOULIN VERT - 94081", "stop_name": "MOULIN VERT"}, "geometry": {"type": "Point", "coordinates": [2.368067762021552, 48.77232889042314]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dbe6fb7a1e811b237017a42e384e6239597d9e37", "fields": {"departement": "75", "stop_lat": 48.825948776082065, "code_postal": "75113", "stop_lon": 2.3737758280905648, "coord": [48.825948776082065, 2.3737758280905648], "stop_id": 4843806, "stop_desc": "67 RUE DE PATAY - 75113", "stop_name": "OUDINE"}, "geometry": {"type": "Point", "coordinates": [2.3737758280905648, 48.825948776082065]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "41ab9ec4d025b95901d7bb546ea23b6a17e13b3e", "fields": {"departement": "75", "stop_lat": 48.82310745758169, "code_postal": "75113", "stop_lon": 2.3775441621261817, "coord": [48.82310745758169, 2.3775441621261817], "stop_id": 4843808, "stop_desc": "15-17 AVENUE DE LA PORTE DE VITRY - 75113", "stop_name": "PORTE DE VITRY"}, "geometry": {"type": "Point", "coordinates": [2.3775441621261817, 48.82310745758169]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b2d9a14bdb57edf9a9ca2c6bdd4177696a773d7d", "fields": {"departement": "94", "stop_lat": 48.79871818959465, "code_postal": "94081", "stop_lon": 2.391320625619278, "coord": [48.79871818959465, 2.391320625619278], "stop_id": 4843820, "stop_desc": "15-17 RUE LAVOISIER - 94081", "stop_name": "LAVOISIER - CARRIERES"}, "geometry": {"type": "Point", "coordinates": [2.391320625619278, 48.79871818959465]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e480b2ff568a998207b2bc0b9aa4c9c29e517020", "fields": {"departement": "94", "stop_lat": 48.790610719207514, "code_postal": "94081", "stop_lon": 2.392196366578341, "coord": [48.790610719207514, 2.392196366578341], "stop_id": 4843823, "stop_desc": "10 AVENUE DE L'ABBE ROGER DERRY - 94081", "stop_name": "AUDIGEOIS"}, "geometry": {"type": "Point", "coordinates": [2.392196366578341, 48.790610719207514]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a84550aeb07e2ba2f6628132d11ea758d40faf53", "fields": {"departement": "94", "stop_lat": 48.790579620426534, "code_postal": "94081", "stop_lon": 2.380429921953688, "coord": [48.790579620426534, 2.380429921953688], "stop_id": 4843827, "stop_desc": "78 AVENUE DU MOULIN DE SAQUET - 94081", "stop_name": "CAMELINAT"}, "geometry": {"type": "Point", "coordinates": [2.380429921953688, 48.790579620426534]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0c7c5931a5bc49db005f6b29d9c14b4f0594bffe", "fields": {"departement": "94", "stop_lat": 48.77945456833409, "code_postal": "94081", "stop_lon": 2.3744231301101495, "coord": [48.77945456833409, 2.3744231301101495], "stop_id": 4843831, "stop_desc": "FACE 184 RUE JULIAN GRIMAU - 94081", "stop_name": "JULIAN GRIMAU - VOIE VERTE"}, "geometry": {"type": "Point", "coordinates": [2.3744231301101495, 48.77945456833409]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b794fc0406f4ef6e6fc6c61e4056be89bd59b65b", "fields": {"departement": "94", "stop_lat": 48.77512254541031, "code_postal": "94081", "stop_lon": 2.3737944884119186, "coord": [48.77512254541031, 2.3737944884119186], "stop_id": 4843833, "stop_desc": "RUE PAUL ARMANGOT - 94081", "stop_name": "CAMILLE RISCH"}, "geometry": {"type": "Point", "coordinates": [2.3737944884119186, 48.77512254541031]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "03856e39fc736f12e3a0422c5d18a5bb1541f257", "fields": {"departement": "94", "stop_lat": 48.77350541658463, "code_postal": "94081", "stop_lon": 2.371386448971689, "coord": [48.77350541658463, 2.371386448971689], "stop_id": 4843834, "stop_desc": "17 RUE DE FRANCE - 94081", "stop_name": "CITE JARDIN"}, "geometry": {"type": "Point", "coordinates": [2.371386448971689, 48.77350541658463]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e2923df7898414e2c21ea44d0205f50b98edbf1e", "fields": {"departement": "93", "stop_lat": 48.91073588829419, "code_postal": "93008", "stop_lon": 2.446506623460887, "coord": [48.91073588829419, 2.446506623460887], "stop_id": 4889461, "stop_desc": "RUE PIERRE SEMARD - 93008", "stop_name": "PIERRE SEMARD - INDEPENDANCE"}, "geometry": {"type": "Point", "coordinates": [2.446506623460887, 48.91073588829419]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "407fe5ee9545861dfb8a0eb7949e8acf58446782", "fields": {"departement": "93", "stop_lat": 48.91966494533887, "code_postal": "93029", "stop_lon": 2.4508210158428168, "coord": [48.91966494533887, 2.4508210158428168], "stop_id": 4889466, "stop_desc": "141 AVENUE HENRI BARBUSSE - 93029", "stop_name": "PLACE DU 19 MARS 1962"}, "geometry": {"type": "Point", "coordinates": [2.4508210158428168, 48.91966494533887]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "814e3cbdfb10ea9b789f68417bfa2e21fb405157", "fields": {"departement": "93", "stop_lat": 48.92114485792039, "code_postal": "93029", "stop_lon": 2.4538653310183443, "coord": [48.92114485792039, 2.4538653310183443], "stop_id": 4889468, "stop_desc": "177 BIS AVENUE HENRI BARBUSSE - 93029", "stop_name": "AUGUSTE BLANQUI"}, "geometry": {"type": "Point", "coordinates": [2.4538653310183443, 48.92114485792039]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b3a94f1ca68c9497d28ab5e4eeece7e0a712c8ac", "fields": {"departement": "93", "stop_lat": 48.92265178851074, "code_postal": "93029", "stop_lon": 2.4567735079056705, "coord": [48.92265178851074, 2.4567735079056705], "stop_id": 4889470, "stop_desc": "219 AVENUE HENRI BARBUSSE - 93029", "stop_name": "BARBUSSE - CROIZAT"}, "geometry": {"type": "Point", "coordinates": [2.4567735079056705, 48.92265178851074]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "37d73e1c48c868f7422ca05d73b50ebb3fdf9362", "fields": {"departement": "93", "stop_lat": 48.923707793324965, "code_postal": "93029", "stop_lon": 2.4611400290594894, "coord": [48.923707793324965, 2.4611400290594894], "stop_id": 4889472, "stop_desc": "FACE 240 AVENUE HENRI BARBUSSE - 93029", "stop_name": "DANIEL FERY"}, "geometry": {"type": "Point", "coordinates": [2.4611400290594894, 48.923707793324965]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "987e4c005993ee5188478ffae70a4ed7cdf932f3", "fields": {"departement": "93", "stop_lat": 48.925687844848476, "code_postal": "93007", "stop_lon": 2.4668455689872397, "coord": [48.925687844848476, 2.4668455689872397], "stop_id": 4889475, "stop_desc": "FACE 160 AVENUE PAUL VAILLANT COUTURIER - 93007", "stop_name": "SUFFREN"}, "geometry": {"type": "Point", "coordinates": [2.4668455689872397, 48.925687844848476]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "338526cf7328dbe69173bd0f67a634d8ed220d76", "fields": {"departement": "93", "stop_lat": 48.92712853010298, "code_postal": "93007", "stop_lon": 2.472441027496559, "coord": [48.92712853010298, 2.472441027496559], "stop_id": 4889480, "stop_desc": "84 AVENUE PAUL VAILLANT COUTURIER - 93007", "stop_name": "DANIELLE CASANOVA - PAUL VAILLANT-COUTURIER"}, "geometry": {"type": "Point", "coordinates": [2.472441027496559, 48.92712853010298]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1c396dfb0865a8dc3dcb1dd0c90ba65b3838301d", "fields": {"departement": "93", "stop_lat": 48.91073588829419, "code_postal": "93008", "stop_lon": 2.446506623460887, "coord": [48.91073588829419, 2.446506623460887], "stop_id": 4889497, "stop_desc": "RUE PIERRE SEMARD - 93008", "stop_name": "PIERRE SEMARD - INDEPENDANCE"}, "geometry": {"type": "Point", "coordinates": [2.446506623460887, 48.91073588829419]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c51f4b58e1c338eaf0353d7287b8f354c301986e", "fields": {"departement": "93", "stop_lat": 48.91663286278753, "code_postal": "93029", "stop_lon": 2.4448691169000547, "coord": [48.91663286278753, 2.4448691169000547], "stop_id": 4889499, "stop_desc": "46 AVENUE HENRI BARBUSSE - 93029", "stop_name": "CHARLES GIDE"}, "geometry": {"type": "Point", "coordinates": [2.4448691169000547, 48.91663286278753]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3456b50c0537fe366c8b61752cf84905da7389f1", "fields": {"departement": "93", "stop_lat": 48.91995160206817, "code_postal": "93029", "stop_lon": 2.4517898551894257, "coord": [48.91995160206817, 2.4517898551894257], "stop_id": 4889503, "stop_desc": "128 AVENUE HENRI BARBUSSE - 93029", "stop_name": "PLACE DU 19 MARS 1962"}, "geometry": {"type": "Point", "coordinates": [2.4517898551894257, 48.91995160206817]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b22b37328fcf605b00111ce3a2d6f7379efd0c84", "fields": {"departement": "93", "stop_lat": 48.92270485983442, "code_postal": "93029", "stop_lon": 2.457619155307906, "coord": [48.92270485983442, 2.457619155307906], "stop_id": 4889507, "stop_desc": "220 AVENUE HENRI BARBUSSE - 93029", "stop_name": "BARBUSSE - CROIZAT"}, "geometry": {"type": "Point", "coordinates": [2.457619155307906, 48.92270485983442]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d6ac5642523916b465e68248d8e761e5fdc1ae56", "fields": {"departement": "93", "stop_lat": 48.92265178851074, "code_postal": "93029", "stop_lon": 2.4567735079056705, "coord": [48.92265178851074, 2.4567735079056705], "stop_id": 4889508, "stop_desc": "219 AVENUE HENRI BARBUSSE - 93029", "stop_name": "BARBUSSE - CROIZAT"}, "geometry": {"type": "Point", "coordinates": [2.4567735079056705, 48.92265178851074]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e37f71bb81d763be2dddc21862883628420e2ca7", "fields": {"departement": "93", "stop_lat": 48.923707793324965, "code_postal": "93029", "stop_lon": 2.4611400290594894, "coord": [48.923707793324965, 2.4611400290594894], "stop_id": 4889510, "stop_desc": "FACE 240 AVENUE HENRI BARBUSSE - 93029", "stop_name": "DANIEL FERY"}, "geometry": {"type": "Point", "coordinates": [2.4611400290594894, 48.923707793324965]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d85bc6a60102f9a51a42aecebb29b3cf118e907c", "fields": {"departement": "93", "stop_lat": 48.924504765214316, "code_postal": "93007", "stop_lon": 2.4638695302313343, "coord": [48.924504765214316, 2.4638695302313343], "stop_id": 4889511, "stop_desc": "197 AVENUE PAUL VAILLANT COUTURIER - 93007", "stop_name": "ANGELUS - FABIEN"}, "geometry": {"type": "Point", "coordinates": [2.4638695302313343, 48.924504765214316]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fe308aaf324a81bb081fbaf8b02c1b5e8cfbba9d", "fields": {"departement": "93", "stop_lat": 48.925687844848476, "code_postal": "93007", "stop_lon": 2.4668455689872397, "coord": [48.925687844848476, 2.4668455689872397], "stop_id": 4889513, "stop_desc": "FACE 160 AVENUE PAUL VAILLANT COUTURIER - 93007", "stop_name": "SUFFREN"}, "geometry": {"type": "Point", "coordinates": [2.4668455689872397, 48.925687844848476]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d20322724c9bcb78175ee9ba7ad5fc3094eebb0e", "fields": {"departement": "93", "stop_lat": 48.925939522751285, "code_postal": "93007", "stop_lon": 2.466805283664818, "coord": [48.925939522751285, 2.466805283664818], "stop_id": 4889514, "stop_desc": "158-160 AVENUE PAUL VAILLANT COUTURIER - 93007", "stop_name": "SUFFREN"}, "geometry": {"type": "Point", "coordinates": [2.466805283664818, 48.925939522751285]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d07d7ba2c3cc965bdfc94de456a8c6d9a1dbc9af", "fields": {"departement": "93", "stop_lat": 48.931381553795, "code_postal": "93005", "stop_lon": 2.4856963662922227, "coord": [48.931381553795, 2.4856963662922227], "stop_id": 4889524, "stop_desc": "17 RTE DES PETITS PONTS - 93005", "stop_name": "LA SABLIERE"}, "geometry": {"type": "Point", "coordinates": [2.4856963662922227, 48.931381553795]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "285f543200876d608f6e590ba2b6dd2368e17a8c", "fields": {"departement": "92", "stop_lat": 48.818062641326925, "code_postal": "92049", "stop_lon": 2.3257950701996193, "coord": [48.818062641326925, 2.3257950701996193], "stop_id": 4889622, "stop_desc": "51 BIS AVENUE ARISTIDE BRIAND - 92049", "stop_name": "GABRIEL PERI"}, "geometry": {"type": "Point", "coordinates": [2.3257950701996193, 48.818062641326925]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4278c07f31b22f02168bd56879587e93ee52344b", "fields": {"departement": "92", "stop_lat": 48.813532857337734, "code_postal": "92049", "stop_lon": 2.326122681236126, "coord": [48.813532857337734, 2.326122681236126], "stop_id": 4889624, "stop_desc": "105 AVENUE ARISTIDE BRIAND - 92049", "stop_name": "LEON GAMBETTA"}, "geometry": {"type": "Point", "coordinates": [2.326122681236126, 48.813532857337734]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8589f98c409b7a59f79e01dc4d8885a9cf4e6542", "fields": {"departement": "94", "stop_lat": 48.80906595180364, "code_postal": "94003", "stop_lon": 2.326246107567719, "coord": [48.80906595180364, 2.326246107567719], "stop_id": 4889625, "stop_desc": "24 AVENUE ARISTIDE BRIAND - 94003", "stop_name": "VACHE NOIRE"}, "geometry": {"type": "Point", "coordinates": [2.326246107567719, 48.80906595180364]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "01b6fee8baf657413bb50b95a3e605c4d7692fb4", "fields": {"departement": "92", "stop_lat": 48.78840695711526, "code_postal": "92007", "stop_lon": 2.3013312242470723, "coord": [48.78840695711526, 2.3013312242470723], "stop_id": 4889645, "stop_desc": "13 AVENUE DU MARECHAL FOCH - 92007", "stop_name": "RUE DES BRUGNAUTS"}, "geometry": {"type": "Point", "coordinates": [2.3013312242470723, 48.78840695711526]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "af12d3d4b474e11e90b7518fca103a216f93de79", "fields": {"departement": "92", "stop_lat": 48.79763791138375, "code_postal": "92007", "stop_lon": 2.302644488159289, "coord": [48.79763791138375, 2.302644488159289], "stop_id": 4889649, "stop_desc": "AVENUE HENRI RAVERA - 92007", "stop_name": "ROSENBERG"}, "geometry": {"type": "Point", "coordinates": [2.302644488159289, 48.79763791138375]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7a090253335cc43f12ad6d8a81cb66c80f99d542", "fields": {"departement": "92", "stop_lat": 48.79731360245945, "code_postal": "92007", "stop_lon": 2.300168676057517, "coord": [48.79731360245945, 2.300168676057517], "stop_id": 4889651, "stop_desc": "10 AVENUE JEAN-BAPTISTE FORTIN - 92007", "stop_name": "RUE FROIDE"}, "geometry": {"type": "Point", "coordinates": [2.300168676057517, 48.79731360245945]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "35b2804a1f492f60d4121dbcd5e57a9597ae08e8", "fields": {"departement": "75", "stop_lat": 48.82245759415938, "code_postal": "75114", "stop_lon": 2.3254810437249733, "coord": [48.82245759415938, 2.3254810437249733], "stop_id": 4890495, "stop_desc": "5 PL DU 25 AOUT 1944 - 75114", "stop_name": "PORTE D'ORLEANS-METRO"}, "geometry": {"type": "Point", "coordinates": [2.3254810437249733, 48.82245759415938]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a9052c7fb40ca0a9c9be29a1c696574915a2fa42", "fields": {"departement": "92", "stop_lat": 48.782711905190155, "code_postal": "92014", "stop_lon": 2.3147998813643778, "coord": [48.782711905190155, 2.3147998813643778], "stop_id": 4890511, "stop_desc": "FACE 43 BOULEVARD DU MARECHAL JOFFRE - 92014", "stop_name": "RUE DU 8 MAI 1945"}, "geometry": {"type": "Point", "coordinates": [2.3147998813643778, 48.782711905190155]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bd6bdc165c54a7bb08d5cb76c96c0e4c01dfd3fa", "fields": {"departement": "92", "stop_lat": 48.76239755022339, "code_postal": "92002", "stop_lon": 2.3083508399551924, "coord": [48.76239755022339, 2.3083508399551924], "stop_id": 4890521, "stop_desc": "127 AVENUE ARISTIDE BRIAND - 92002", "stop_name": "GENERAL DE GAULLE - CROIX DE BERNY"}, "geometry": {"type": "Point", "coordinates": [2.3083508399551924, 48.76239755022339]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "44e360688562eb0e4661f28354f3d87e769aeb99", "fields": {"departement": "92", "stop_lat": 48.760366045536514, "code_postal": "92002", "stop_lon": 2.3075770618196296, "coord": [48.760366045536514, 2.3075770618196296], "stop_id": 4890530, "stop_desc": "105 AVENUE ARISTIDE BRIAND - 92002", "stop_name": "MORTEAUX"}, "geometry": {"type": "Point", "coordinates": [2.3075770618196296, 48.760366045536514]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8d2ab903d45067a3173f590ba113b3427a8131a5", "fields": {"departement": "92", "stop_lat": 48.76014140331745, "code_postal": "92002", "stop_lon": 2.3078218968349273, "coord": [48.76014140331745, 2.3078218968349273], "stop_id": 4890531, "stop_desc": "118 AVENUE ARISTIDE BRIAND - 92002", "stop_name": "MORTEAUX"}, "geometry": {"type": "Point", "coordinates": [2.3078218968349273, 48.76014140331745]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1ca9b86177c3e6a5073f9d7cda427df0955c34ed", "fields": {"departement": "92", "stop_lat": 48.75025356657646, "code_postal": "92002", "stop_lon": 2.3045245832510624, "coord": [48.75025356657646, 2.3045245832510624], "stop_id": 4890536, "stop_desc": "FACE 50 AVENUE DE LA DIVISION LECLERC - 92002", "stop_name": "PONT D'ANTONY"}, "geometry": {"type": "Point", "coordinates": [2.3045245832510624, 48.75025356657646]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d07c6aa77f0fbb5c37c74059dc89d49e483d5f02", "fields": {"departement": "91", "stop_lat": 48.7434792760933, "code_postal": "91689", "stop_lon": 2.31726310983207, "coord": [48.7434792760933, 2.31726310983207], "stop_id": 4890542, "stop_desc": "56 RTE D'ANTONY CHARLES DE GAULLE - 91689", "stop_name": "PASCAL"}, "geometry": {"type": "Point", "coordinates": [2.31726310983207, 48.7434792760933]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "643cd509a4be327621bb734d7492bdfed376d77e", "fields": {"departement": "91", "stop_lat": 48.733450007041746, "code_postal": "91689", "stop_lon": 2.334360466332533, "coord": [48.733450007041746, 2.334360466332533], "stop_id": 4890548, "stop_desc": "RUE GUILLAUME BIGOURDAN - 91689", "stop_name": "CUCHERON"}, "geometry": {"type": "Point", "coordinates": [2.334360466332533, 48.733450007041746]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5143f27d66aa6c15cc4984c9a76bf793f3fd4b8d", "fields": {"departement": "91", "stop_lat": 48.73453761736959, "code_postal": "91689", "stop_lon": 2.335719218102518, "coord": [48.73453761736959, 2.335719218102518], "stop_id": 4890549, "stop_desc": "BOULEVARD DE L'EUROPE - 91689", "stop_name": "CUCHERON"}, "geometry": {"type": "Point", "coordinates": [2.335719218102518, 48.73453761736959]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "219330413a05e70682bcc9384403c8450b4d69c3", "fields": {"departement": "91", "stop_lat": 48.72734619670164, "code_postal": "91689", "stop_lon": 2.3237363634129284, "coord": [48.72734619670164, 2.3237363634129284], "stop_id": 4890551, "stop_desc": "RUE VICTOR BALOCHE - 91689", "stop_name": "VICTOR BALOCHE"}, "geometry": {"type": "Point", "coordinates": [2.3237363634129284, 48.72734619670164]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "96b7c9ee93cceee7eafa0ea47cfc29d96ccace77", "fields": {"departement": "91", "stop_lat": 48.70757856381556, "code_postal": "91689", "stop_lon": 2.3111654184174446, "coord": [48.70757856381556, 2.3111654184174446], "stop_id": 4890557, "stop_desc": "AVENUE MAZARIN - 91689", "stop_name": "CIMETIERE DE CHILLY-MAZARIN"}, "geometry": {"type": "Point", "coordinates": [2.3111654184174446, 48.70757856381556]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3edeecbd839c10dc7d17b717be2bf76765774993", "fields": {"departement": "91", "stop_lat": 48.706042051347254, "code_postal": "91161", "stop_lon": 2.3136514533219743, "coord": [48.706042051347254, 2.3136514533219743], "stop_id": 4890559, "stop_desc": "32 AVENUE MAZARIN - 91161", "stop_name": "COLLEGE DE CHILLY-MAZARIN"}, "geometry": {"type": "Point", "coordinates": [2.3136514533219743, 48.706042051347254]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "147e7061e2fc1b77439f75957e0551f36b05b16b", "fields": {"departement": "91", "stop_lat": 48.70487397259365, "code_postal": "91161", "stop_lon": 2.3159063254443284, "coord": [48.70487397259365, 2.3159063254443284], "stop_id": 4890561, "stop_desc": "30 AVENUE MAZARIN - 91161", "stop_name": "BEAUREGARD"}, "geometry": {"type": "Point", "coordinates": [2.3159063254443284, 48.70487397259365]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "354d4392b9e950c1537e5400bc0cedfaef205755", "fields": {"departement": "91", "stop_lat": 48.69683766498326, "code_postal": "91161", "stop_lon": 2.313003870905301, "coord": [48.69683766498326, 2.313003870905301], "stop_id": 4890567, "stop_desc": "27 BIS RUE PIERRE MENDES FRANCE - 91161", "stop_name": "ELISEE RECLUS"}, "geometry": {"type": "Point", "coordinates": [2.313003870905301, 48.69683766498326]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5f6772df05ec06c3e90e2f7bd2870b948f81703b", "fields": {"departement": "91", "stop_lat": 48.69451817758564, "code_postal": "91161", "stop_lon": 2.3109547232875918, "coord": [48.69451817758564, 2.3109547232875918], "stop_id": 4890569, "stop_desc": "69 RUE PIERRE MENDES FRANCE - 91161", "stop_name": "GRAND JARDIN"}, "geometry": {"type": "Point", "coordinates": [2.3109547232875918, 48.69451817758564]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "edb111ad8e608c9e3d29abb58b42c7a1079da651", "fields": {"departement": "91", "stop_lat": 48.699649097599796, "code_postal": "91161", "stop_lon": 2.304705784704111, "coord": [48.699649097599796, 2.304705784704111], "stop_id": 4890573, "stop_desc": "AVENUE PIERRE BROSSOLETTE - 91161", "stop_name": "RUE DE CHILLY"}, "geometry": {"type": "Point", "coordinates": [2.304705784704111, 48.699649097599796]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "141c47030d9ff8ffeeb1bd5c1a324afcc8ad9db0", "fields": {"departement": "91", "stop_lat": 48.691959054551646, "code_postal": "91345", "stop_lon": 2.2903189686409093, "coord": [48.691959054551646, 2.2903189686409093], "stop_id": 4890581, "stop_desc": "159 RUE DU PRESIDENT FRANCOIS MITTERRAND - 91345", "stop_name": "HOPITAL DE LONGJUMEAU"}, "geometry": {"type": "Point", "coordinates": [2.2903189686409093, 48.691959054551646]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ab9e1f5e1c83cce1f84975a372790fa15bf393d0", "fields": {"departement": "91", "stop_lat": 48.69159932736135, "code_postal": "91345", "stop_lon": 2.2898576780678925, "coord": [48.69159932736135, 2.2898576780678925], "stop_id": 4890582, "stop_desc": "RUE DU PRESIDENT FRANCOIS MITTERRAND - 91345", "stop_name": "HOPITAL DE LONGJUMEAU"}, "geometry": {"type": "Point", "coordinates": [2.2898576780678925, 48.69159932736135]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4761bae81c45aa87d80bde0a9b4ef5b491f62757", "fields": {"departement": "94", "stop_lat": 48.79940373893161, "code_postal": "94016", "stop_lon": 2.323241429194633, "coord": [48.79940373893161, 2.323241429194633], "stop_id": 4890597, "stop_desc": "43 AVENUE ARISTIDE BRIAND - 94016", "stop_name": "CARNOT - ARISTIDE BRIAND"}, "geometry": {"type": "Point", "coordinates": [2.323241429194633, 48.79940373893161]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7953f5ccb1a3ac0b7c47992072f5b3c821d7ce47", "fields": {"departement": "94", "stop_lat": 48.801668773295894, "code_postal": "94003", "stop_lon": 2.3241115821868807, "coord": [48.801668773295894, 2.3241115821868807], "stop_id": 4890598, "stop_desc": "127 AVENUE ARISTIDE BRIAND - 94003", "stop_name": "GRANGE ORY"}, "geometry": {"type": "Point", "coordinates": [2.3241115821868807, 48.801668773295894]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c43e5be1bb692f3995c566ccb20effaf56be1393", "fields": {"departement": "92", "stop_lat": 48.81363167569627, "code_postal": "92049", "stop_lon": 2.3256327423030254, "coord": [48.81363167569627, 2.3256327423030254], "stop_id": 4890602, "stop_desc": "110 AVENUE ARISTIDE BRIAND - 92049", "stop_name": "LEON GAMBETTA"}, "geometry": {"type": "Point", "coordinates": [2.3256327423030254, 48.81363167569627]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0d7ceb1a721ade0cae0611e97acd59dc65c8c374", "fields": {"departement": "92", "stop_lat": 48.77446957980129, "code_postal": "92071", "stop_lon": 2.3130900241212315, "coord": [48.77446957980129, 2.3130900241212315], "stop_id": 4890614, "stop_desc": "146 AVENUE DU GENERAL LECLERC - 92071", "stop_name": "LES COTTAGES"}, "geometry": {"type": "Point", "coordinates": [2.3130900241212315, 48.77446957980129]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9a454b9a1db1101d89398c9172365d47e1c7bc40", "fields": {"departement": "91", "stop_lat": 48.73289236325843, "code_postal": "91689", "stop_lon": 2.3274579495191072, "coord": [48.73289236325843, 2.3274579495191072], "stop_id": 4890627, "stop_desc": "5 RUE ANDRE DOLIMIER - 91689", "stop_name": "MAIRIE DE WISSOUS"}, "geometry": {"type": "Point", "coordinates": [2.3274579495191072, 48.73289236325843]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3cdda89b54ec46f6b7486e54821368faaf6b6f64", "fields": {"departement": "91", "stop_lat": 48.733450007041746, "code_postal": "91689", "stop_lon": 2.334360466332533, "coord": [48.733450007041746, 2.334360466332533], "stop_id": 4890628, "stop_desc": "RUE GUILLAUME BIGOURDAN - 91689", "stop_name": "CUCHERON"}, "geometry": {"type": "Point", "coordinates": [2.334360466332533, 48.733450007041746]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8e920d3d2cb0db3105d9b99ee5930a5705095dc8", "fields": {"departement": "91", "stop_lat": 48.727148402687796, "code_postal": "91689", "stop_lon": 2.323301656685195, "coord": [48.727148402687796, 2.323301656685195], "stop_id": 4890629, "stop_desc": "1 BD DE L'EUROPE - 91689", "stop_name": "VICTOR BALOCHE"}, "geometry": {"type": "Point", "coordinates": [2.323301656685195, 48.727148402687796]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f538459b44d708608f2ba4cb2bd2a59a4a11c782", "fields": {"departement": "91", "stop_lat": 48.707425732597464, "code_postal": "91689", "stop_lon": 2.3110432656858193, "coord": [48.707425732597464, 2.3110432656858193], "stop_id": 4890632, "stop_desc": "FACE 62 AVENUE MAZARIN - 91689", "stop_name": "CIMETIERE DE CHILLY-MAZARIN"}, "geometry": {"type": "Point", "coordinates": [2.3110432656858193, 48.707425732597464]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "20153534c7fc7ed34fe2af30eb222c8327e0e957", "fields": {"departement": "91", "stop_lat": 48.70255564704986, "code_postal": "91161", "stop_lon": 2.3203207017167378, "coord": [48.70255564704986, 2.3203207017167378], "stop_id": 4890635, "stop_desc": "7 AVENUE MAZARIN - 91161", "stop_name": "PLACE DE LA LIBERATION"}, "geometry": {"type": "Point", "coordinates": [2.3203207017167378, 48.70255564704986]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c97980fa3ba0caa16468b3fe68e4c11266f53578", "fields": {"departement": "91", "stop_lat": 48.702223050269076, "code_postal": "91161", "stop_lon": 2.320171433445207, "coord": [48.702223050269076, 2.320171433445207], "stop_id": 4890643, "stop_desc": "FACE 36 AVENUE PIERRE BROSSOLETTE - 91161", "stop_name": "PLACE DE LA LIBERATION."}, "geometry": {"type": "Point", "coordinates": [2.320171433445207, 48.702223050269076]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2040758d88a893813c7f2743ca155ec6fe8b584f", "fields": {"departement": "91", "stop_lat": 48.69958678808771, "code_postal": "91161", "stop_lon": 2.3070142528801103, "coord": [48.69958678808771, 2.3070142528801103], "stop_id": 4890648, "stop_desc": "FACE 47 RUE HENRI BARBUSSE - 91161", "stop_name": "CHILLY-MAZARIN RER"}, "geometry": {"type": "Point", "coordinates": [2.3070142528801103, 48.69958678808771]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "464d7086510cc3f4f703326db885efe6cbd0b2fb", "fields": {"departement": "91", "stop_lat": 48.699649097599796, "code_postal": "91161", "stop_lon": 2.304705784704111, "coord": [48.699649097599796, 2.304705784704111], "stop_id": 4890649, "stop_desc": "AVENUE PIERRE BROSSOLETTE - 91161", "stop_name": "RUE DE CHILLY"}, "geometry": {"type": "Point", "coordinates": [2.304705784704111, 48.699649097599796]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8da52d71f2c9c274d45161aaa56555452ee4cdc5", "fields": {"departement": "91", "stop_lat": 48.6972923578992, "code_postal": "91345", "stop_lon": 2.2988821266562796, "coord": [48.6972923578992, 2.2988821266562796], "stop_id": 4890650, "stop_desc": "FACE 34 AVENUE DU GENERAL DE GAULLE - 91345", "stop_name": "GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.2988821266562796, 48.6972923578992]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "11d193646ced2f64067205e6500440fb630c8b85", "fields": {"departement": "91", "stop_lat": 48.691959054551646, "code_postal": "91345", "stop_lon": 2.2903189686409093, "coord": [48.691959054551646, 2.2903189686409093], "stop_id": 4890653, "stop_desc": "159 RUE DU PRESIDENT FRANCOIS MITTERRAND - 91345", "stop_name": "HOPITAL DE LONGJUMEAU"}, "geometry": {"type": "Point", "coordinates": [2.2903189686409093, 48.691959054551646]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "84a6b527153e7f661a72d5aa5a31c1056e93267e", "fields": {"departement": "91", "stop_lat": 48.697425064642374, "code_postal": "91345", "stop_lon": 2.2927988913003228, "coord": [48.697425064642374, 2.2927988913003228], "stop_id": 4890670, "stop_desc": "FACE 6 RUE MICHEL VINCENT - 91345", "stop_name": "PLACE CHARLES STEBER"}, "geometry": {"type": "Point", "coordinates": [2.2927988913003228, 48.697425064642374]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "184653ced2affd716d38a1461fb2740f409e1884", "fields": {"departement": "91", "stop_lat": 48.69547017628833, "code_postal": "91161", "stop_lon": 2.307600495734536, "coord": [48.69547017628833, 2.307600495734536], "stop_id": 4890678, "stop_desc": "52 RUE DE GRAVIGNY - 91161", "stop_name": "SAINT-ELOI"}, "geometry": {"type": "Point", "coordinates": [2.307600495734536, 48.69547017628833]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0682077c30f987e62a4a79330177d8b9c0676c31", "fields": {"departement": "91", "stop_lat": 48.70487397259365, "code_postal": "91161", "stop_lon": 2.3159063254443284, "coord": [48.70487397259365, 2.3159063254443284], "stop_id": 4890683, "stop_desc": "30 AVENUE MAZARIN - 91161", "stop_name": "BEAUREGARD"}, "geometry": {"type": "Point", "coordinates": [2.3159063254443284, 48.70487397259365]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "56938a67deee50d7e65232a93ba424de151cc39c", "fields": {"departement": "91", "stop_lat": 48.70757856381556, "code_postal": "91689", "stop_lon": 2.3111654184174446, "coord": [48.70757856381556, 2.3111654184174446], "stop_id": 4890685, "stop_desc": "AVENUE MAZARIN - 91689", "stop_name": "CIMETIERE DE CHILLY-MAZARIN"}, "geometry": {"type": "Point", "coordinates": [2.3111654184174446, 48.70757856381556]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "64a4b6a1af0808b2b154b121b91d4e4a69c4c6d1", "fields": {"departement": "92", "stop_lat": 48.754253556672694, "code_postal": "92002", "stop_lon": 2.3054464073012886, "coord": [48.754253556672694, 2.3054464073012886], "stop_id": 4890699, "stop_desc": "16 AVENUE ARISTIDE BRIAND - 92002", "stop_name": "AUGUSTE MOUNIE"}, "geometry": {"type": "Point", "coordinates": [2.3054464073012886, 48.754253556672694]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2bfc983d4fb4eaf09d9d409587e509225acc53be", "fields": {"departement": "92", "stop_lat": 48.75549283519391, "code_postal": "92002", "stop_lon": 2.3016122529062426, "coord": [48.75549283519391, 2.3016122529062426], "stop_id": 4890700, "stop_desc": "FACE 26-28 R VELPEAU - 92002", "stop_name": "ANTONY RER"}, "geometry": {"type": "Point", "coordinates": [2.3016122529062426, 48.75549283519391]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6f6991b558d14256826baba5efb0a81428f4a9c0", "fields": {"departement": "94", "stop_lat": 48.75655236782585, "code_postal": "94073", "stop_lon": 2.397761037054311, "coord": [48.75655236782585, 2.397761037054311], "stop_id": 4909846, "stop_desc": "6 RUE HELENE MULLER - 94073", "stop_name": "HELENE MULLER"}, "geometry": {"type": "Point", "coordinates": [2.397761037054311, 48.75655236782585]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "95106e97946a656fd0506d0cafe96570209caaf6", "fields": {"departement": "94", "stop_lat": 48.76067758624762, "code_postal": "94073", "stop_lon": 2.398418398783196, "coord": [48.76067758624762, 2.398418398783196], "stop_id": 4909848, "stop_desc": "10 RUE VICTOR HUGO - 94073", "stop_name": "VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.398418398783196, 48.76067758624762]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "edfc7e9e86d661948395965a06db1456c8a413cb", "fields": {"departement": "94", "stop_lat": 48.76386013576496, "code_postal": "94073", "stop_lon": 2.396926607758173, "coord": [48.76386013576496, 2.396926607758173], "stop_id": 4909850, "stop_desc": "FACE 35 AVENUE RENE PANHARD - 94073", "stop_name": "PANHARD - HUGO"}, "geometry": {"type": "Point", "coordinates": [2.396926607758173, 48.76386013576496]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "54c5bdf9052c5b08e0f0b3800369e19a698c1266", "fields": {"departement": "94", "stop_lat": 48.763689375597984, "code_postal": "94073", "stop_lon": 2.396899220149278, "coord": [48.763689375597984, 2.396899220149278], "stop_id": 4909851, "stop_desc": "FACE 50 AVENUE RENE PANHARD - 94073", "stop_name": "PANHARD - HUGO"}, "geometry": {"type": "Point", "coordinates": [2.396899220149278, 48.763689375597984]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c65dc7b912ea0cfefc00ed5679ed1a4f8f3d083f", "fields": {"departement": "94", "stop_lat": 48.76614646028461, "code_postal": "94073", "stop_lon": 2.3898319168562305, "coord": [48.76614646028461, 2.3898319168562305], "stop_id": 4909854, "stop_desc": "20 AVENUE LEON MARCHAND - 94073", "stop_name": "PERREUX"}, "geometry": {"type": "Point", "coordinates": [2.3898319168562305, 48.76614646028461]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9bd85354d595444a203ac0dac55976b005877751", "fields": {"departement": "94", "stop_lat": 48.765957686542926, "code_postal": "94073", "stop_lon": 2.389886111195227, "coord": [48.765957686542926, 2.389886111195227], "stop_id": 4909855, "stop_desc": "FACE 22 AVENUE LEON MARCHAND - 94073", "stop_name": "PERREUX"}, "geometry": {"type": "Point", "coordinates": [2.389886111195227, 48.765957686542926]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a7651ea03c1020a98a409c50448181d2b234bb29", "fields": {"departement": "94", "stop_lat": 48.766309422860196, "code_postal": "94073", "stop_lon": 2.3870991984731407, "coord": [48.766309422860196, 2.3870991984731407], "stop_id": 4909857, "stop_desc": "5 AVENUE DU GENERAL DE GAULLE - 94073", "stop_name": "LOUIS DUPERREY"}, "geometry": {"type": "Point", "coordinates": [2.3870991984731407, 48.766309422860196]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "224170550395b1d30a9f10410e831b5faa8a5e7a", "fields": {"departement": "75", "stop_lat": 48.84410395312293, "code_postal": "75112", "stop_lon": 2.372971600444252, "coord": [48.84410395312293, 2.372971600444252], "stop_id": 4996974, "stop_desc": "FACE 193 RUE DE BERCY - 75112", "stop_name": "GARE DE LYON"}, "geometry": {"type": "Point", "coordinates": [2.372971600444252, 48.84410395312293]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ffe960974c9ed75ff71ea5b7060500bf54a21d47", "fields": {"departement": "75", "stop_lat": 48.8488765289316, "code_postal": "75112", "stop_lon": 2.372266746924533, "coord": [48.8488765289316, 2.372266746924533], "stop_id": 4996978, "stop_desc": "9-11 AVENUE DAUMESNIL - 75112", "stop_name": "LYON - LEDRU ROLLIN"}, "geometry": {"type": "Point", "coordinates": [2.372266746924533, 48.8488765289316]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d78e3482553ea4a7ad4d1d4d7b6ae8ef0a0c4483", "fields": {"departement": "75", "stop_lat": 48.856022593043754, "code_postal": "75111", "stop_lon": 2.368566944738585, "coord": [48.856022593043754, 2.368566944738585], "stop_id": 4996982, "stop_desc": "32 BOULEVARD BEAUMARCHAIS - 75111", "stop_name": "PASTEUR - WAGNER"}, "geometry": {"type": "Point", "coordinates": [2.368566944738585, 48.856022593043754]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2356053702200003ac28769db14136591fc02841", "fields": {"departement": "75", "stop_lat": 48.857271920933975, "code_postal": "75111", "stop_lon": 2.368281673209091, "coord": [48.857271920933975, 2.368281673209091], "stop_id": 4996983, "stop_desc": "50 BOULEVARD BEAUMARCHAIS - 75111", "stop_name": "SAINT-GILLES - CHEMIN VERT"}, "geometry": {"type": "Point", "coordinates": [2.368281673209091, 48.857271920933975]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3de14a5d0c436d8af59818c823ab1edcfb4dbca6", "fields": {"departement": "75", "stop_lat": 48.87534776844683, "code_postal": "75110", "stop_lon": 2.357842096001513, "coord": [48.87534776844683, 2.357842096001513], "stop_id": 4996993, "stop_desc": "72 BOULEVARD DE STRASBOURG - 75110", "stop_name": "GARE DE L'EST"}, "geometry": {"type": "Point", "coordinates": [2.357842096001513, 48.87534776844683]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cd163971d0ba2adf9b05f12df23e3ab692b372f4", "fields": {"departement": "75", "stop_lat": 48.87617468079017, "code_postal": "75110", "stop_lon": 2.3573655408708234, "coord": [48.87617468079017, 2.3573655408708234], "stop_id": 4996994, "stop_desc": "15-17 RUE DU 8 MAI 1945 - 75110", "stop_name": "GARE DE L'EST"}, "geometry": {"type": "Point", "coordinates": [2.3573655408708234, 48.87617468079017]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "454e661015c4c260355303887398bda62f1d0141", "fields": {"departement": "75", "stop_lat": 48.880677255819144, "code_postal": "75110", "stop_lon": 2.357653442709006, "coord": [48.880677255819144, 2.357653442709006], "stop_id": 4996997, "stop_desc": "183 RUE DU FAUBOURG SAINT-DENIS - 75110", "stop_name": "GARE DU NORD"}, "geometry": {"type": "Point", "coordinates": [2.357653442709006, 48.880677255819144]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4d4f2334aef3152da8d4d952c152076b99bf9c00", "fields": {"departement": "75", "stop_lat": 48.88180050254322, "code_postal": "75110", "stop_lon": 2.3585668751343, "coord": [48.88180050254322, 2.3585668751343], "stop_id": 4996998, "stop_desc": "FACE 191 RUE DU FAUBOURG SAINT-DENIS - 75110", "stop_name": "CAIL - DEMARQUAY"}, "geometry": {"type": "Point", "coordinates": [2.3585668751343, 48.88180050254322]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2e004d858e441aeefb86fbe1d001fa1ff60f8edb", "fields": {"departement": "75", "stop_lat": 48.89052682710956, "code_postal": "75118", "stop_lon": 2.359987881341442, "coord": [48.89052682710956, 2.359987881341442], "stop_id": 4997003, "stop_desc": "8 RUE DE LA CHAPELLE - 75118", "stop_name": "ORDENER - MARX DORMOY"}, "geometry": {"type": "Point", "coordinates": [2.359987881341442, 48.89052682710956]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "05c26f59e888881ef190962b79ad2d34e658c438", "fields": {"departement": "75", "stop_lat": 48.89703365100446, "code_postal": "75118", "stop_lon": 2.3593500916646, "coord": [48.89703365100446, 2.3593500916646], "stop_id": 4997010, "stop_desc": "90 RUE DE LA CHAPELLE - 75118", "stop_name": "PORTE DE LA CHAPELLE"}, "geometry": {"type": "Point", "coordinates": [2.3593500916646, 48.89703365100446]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3aa0dc1cdfad1735f182d3b1c6b7f3b4a24f62d1", "fields": {"departement": "75", "stop_lat": 48.86191877949409, "code_postal": "75103", "stop_lon": 2.3668405747099737, "coord": [48.86191877949409, 2.3668405747099737], "stop_id": 4997016, "stop_desc": "11 BOULEVARD DES FILLES DU CALVAIRE - 75103", "stop_name": "OBERKAMPF - FILLES DU CALVAIRE"}, "geometry": {"type": "Point", "coordinates": [2.3668405747099737, 48.86191877949409]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d7577fe8d4867a5a527568081e156c172facb9aa", "fields": {"departement": "75", "stop_lat": 48.85986952926583, "code_postal": "75103", "stop_lon": 2.3673297601478707, "coord": [48.85986952926583, 2.3673297601478707], "stop_id": 4997017, "stop_desc": "97 BOULEVARD BEAUMARCHAIS - 75103", "stop_name": "SAINT-CLAUDE"}, "geometry": {"type": "Point", "coordinates": [2.3673297601478707, 48.85986952926583]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ba49ed74a5246a823d3f7587f382c59b2b2368bb", "fields": {"departement": "75", "stop_lat": 48.85728098955349, "code_postal": "75103", "stop_lon": 2.367968412184262, "coord": [48.85728098955349, 2.367968412184262], "stop_id": 4997018, "stop_desc": "57 BOULEVARD BEAUMARCHAIS - 75103", "stop_name": "SAINT-GILLES - CHEMIN VERT"}, "geometry": {"type": "Point", "coordinates": [2.367968412184262, 48.85728098955349]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4431ce851d0503192f0bbcd6524aee8b96a038df", "fields": {"departement": "75", "stop_lat": 48.85536654929761, "code_postal": "75104", "stop_lon": 2.3684167310968207, "coord": [48.85536654929761, 2.3684167310968207], "stop_id": 4997019, "stop_desc": "25 BOULEVARD BEAUMARCHAIS - 75104", "stop_name": "PASTEUR - WAGNER"}, "geometry": {"type": "Point", "coordinates": [2.3684167310968207, 48.85536654929761]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "77aa3ed6dfd1c244479d238bb2cc8b38458e1023", "fields": {"departement": "75", "stop_lat": 48.8781132002736, "code_postal": "75108", "stop_lon": 2.3047572614027696, "coord": [48.8781132002736, 2.3047572614027696], "stop_id": 3765454, "stop_desc": "67 RUE DE COURCELLES - 75108", "stop_name": "MURILLO"}, "geometry": {"type": "Point", "coordinates": [2.3047572614027696, 48.8781132002736]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cc089347f3bca5d2656233115c1b4d9b146e403a", "fields": {"departement": "75", "stop_lat": 48.87896668881007, "code_postal": "75108", "stop_lon": 2.303666648161681, "coord": [48.87896668881007, 2.303666648161681], "stop_id": 3765455, "stop_desc": "94 RUE DE COURCELLES - 75108", "stop_name": "COURCELLES"}, "geometry": {"type": "Point", "coordinates": [2.303666648161681, 48.87896668881007]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "111eda242edca14d0c2dfad926eb64b61318ffd4", "fields": {"departement": "92", "stop_lat": 48.81738859502222, "code_postal": "92049", "stop_lon": 2.326135464270519, "coord": [48.81738859502222, 2.326135464270519], "stop_id": 3781624, "stop_desc": "FACE 3 RUE BARBES - 92049", "stop_name": "GABRIEL PERI"}, "geometry": {"type": "Point", "coordinates": [2.326135464270519, 48.81738859502222]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "af978a83d0824c700284b3bddbd52bafb3b43d92", "fields": {"departement": "94", "stop_lat": 48.81512373879943, "code_postal": "94037", "stop_lon": 2.3478154325869323, "coord": [48.81512373879943, 2.3478154325869323], "stop_id": 3781632, "stop_desc": "PLACE HENRI BARBUSSE - 94037", "stop_name": "MAIRIE DE GENTILLY"}, "geometry": {"type": "Point", "coordinates": [2.3478154325869323, 48.81512373879943]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f2dd1c2c40c42ef3848ca8ebbacf14694cc30968", "fields": {"departement": "94", "stop_lat": 48.81209279119115, "code_postal": "94043", "stop_lon": 2.361872316889022, "coord": [48.81209279119115, 2.361872316889022], "stop_id": 3781638, "stop_desc": "41-43 AVENUE DE FONTAINEBLEAU - 94043", "stop_name": "CONVENTION - FONTAINEBLEAU"}, "geometry": {"type": "Point", "coordinates": [2.361872316889022, 48.81209279119115]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e839d9f7cc4d860e76ff1f32dc8d8b87ea77ea48", "fields": {"departement": "94", "stop_lat": 48.81490227389111, "code_postal": "94041", "stop_lon": 2.375754993033723, "coord": [48.81490227389111, 2.375754993033723], "stop_id": 3781644, "stop_desc": "8 RUE JEAN LE GALLEU - 94041", "stop_name": "PIERRE ET MARIE CURIE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.375754993033723, 48.81490227389111]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a223a1fd063f7dd1950e18794108a9f441725536", "fields": {"departement": "94", "stop_lat": 48.812687002283674, "code_postal": "94041", "stop_lon": 2.387279817790889, "coord": [48.812687002283674, 2.387279817790889], "stop_id": 3781650, "stop_desc": "RUE GEORGES GOSNAT - 94041", "stop_name": "HOTEL DE VILLE D'IVRY"}, "geometry": {"type": "Point", "coordinates": [2.387279817790889, 48.812687002283674]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9385192bcbb0a51c4e7540dcfd0360919a9e9d80", "fields": {"departement": "94", "stop_lat": 48.812247216815784, "code_postal": "94041", "stop_lon": 2.3857960711744384, "coord": [48.812247216815784, 2.3857960711744384], "stop_id": 3781651, "stop_desc": "82 AVENUE GEORGES GOSNAT - 94041", "stop_name": "HOTEL DE VILLE D'IVRY"}, "geometry": {"type": "Point", "coordinates": [2.3857960711744384, 48.812247216815784]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d76ebebd3de4a298597e84b37c4eb684975d78c2", "fields": {"departement": "94", "stop_lat": 48.815703982762436, "code_postal": "94041", "stop_lon": 2.3937607868948834, "coord": [48.815703982762436, 2.3937607868948834], "stop_id": 3781654, "stop_desc": "57 RUE LENINE - 94041", "stop_name": "MOLIERE"}, "geometry": {"type": "Point", "coordinates": [2.3937607868948834, 48.815703982762436]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8c6533bd2ac23b82dea40bd42675837de3a74c8f", "fields": {"departement": "94", "stop_lat": 48.816429008859835, "code_postal": "94041", "stop_lon": 2.3997225650243545, "coord": [48.816429008859835, 2.3997225650243545], "stop_id": 3781657, "stop_desc": "94 BOULEVARD PAUL VAILLANT-COUTURIER - 94041", "stop_name": "MOISE - PIERRE GALAIS"}, "geometry": {"type": "Point", "coordinates": [2.3997225650243545, 48.816429008859835]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7db1992bb47036c1e699221866e8f19a63d42f9d", "fields": {"departement": "94", "stop_lat": 48.81486417327504, "code_postal": "94041", "stop_lon": 2.401544308380196, "coord": [48.81486417327504, 2.401544308380196], "stop_id": 3781659, "stop_desc": "FACE 119 BOULEVARD PAUL VAILLANT-COUTURIER - 94041", "stop_name": "GAMBETTA"}, "geometry": {"type": "Point", "coordinates": [2.401544308380196, 48.81486417327504]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f346c2c99ab294b307618af9b446cbcf0c1c0e00", "fields": {"departement": "94", "stop_lat": 48.81487294715123, "code_postal": "94041", "stop_lon": 2.4019389847779085, "coord": [48.81487294715123, 2.4019389847779085], "stop_id": 3781660, "stop_desc": "121 BOULEVARD PAUL VAILLANT-COUTURIER - 94041", "stop_name": "GAMBETTA"}, "geometry": {"type": "Point", "coordinates": [2.4019389847779085, 48.81487294715123]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a86aa5f4bd31e8b3763db78dbc126f440542e020", "fields": {"departement": "94", "stop_lat": 48.81504970329177, "code_postal": "94046", "stop_lon": 2.421141792054011, "coord": [48.81504970329177, 2.421141792054011], "stop_id": 3781667, "stop_desc": "FACE 7 AVENUE DU GENERAL LECLERC - 94046", "stop_name": "ECOLE VETERINAIRE DE MAISONS-ALFORT"}, "geometry": {"type": "Point", "coordinates": [2.421141792054011, 48.81504970329177]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "489d1696ea2f98793b907ade5dcb252f90df1b89", "fields": {"departement": "94", "stop_lat": 48.813927054571316, "code_postal": "94043", "stop_lon": 2.3578585601300905, "coord": [48.813927054571316, 2.3578585601300905], "stop_id": 3781675, "stop_desc": "SQUARE JULES GUESDE - 94043", "stop_name": "AVENUE DU DOCTEUR LACROIX-MAIRIE"}, "geometry": {"type": "Point", "coordinates": [2.3578585601300905, 48.813927054571316]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6200aba593c38fb4202c6f9dc93d90d18769b5d2", "fields": {"departement": "75", "stop_lat": 48.81642736577491, "code_postal": "75114", "stop_lon": 2.3411061851973916, "coord": [48.81642736577491, 2.3411061851973916], "stop_id": 3781677, "stop_desc": "FACE 67 AVENUE PAUL VAILLANT COUTURIER - 75114", "stop_name": "GENTILLY RER"}, "geometry": {"type": "Point", "coordinates": [2.3411061851973916, 48.81642736577491]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3a35bdbc6a53db8764b54e6d3bf64a892e9890ad", "fields": {"departement": "94", "stop_lat": 48.81083671859592, "code_postal": "94041", "stop_lon": 2.384352294022514, "coord": [48.81083671859592, 2.384352294022514], "stop_id": 3785914, "stop_desc": "FACE 15 RUE MARAT - 94041", "stop_name": "MAIRIE D'IVRY-METRO"}, "geometry": {"type": "Point", "coordinates": [2.384352294022514, 48.81083671859592]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d0eec40e2008a1ed74520901cb541d68fa3d12e4", "fields": {"departement": "94", "stop_lat": 48.808201831257435, "code_postal": "94041", "stop_lon": 2.387928651147245, "coord": [48.808201831257435, 2.387928651147245], "stop_id": 3785917, "stop_desc": "40 RUE MARAT - 94041", "stop_name": "SAINT JUST"}, "geometry": {"type": "Point", "coordinates": [2.387928651147245, 48.808201831257435]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "223997e3aab600f0be35fe2e4f06b660a28dc1bb", "fields": {"departement": "94", "stop_lat": 48.80696867744459, "code_postal": "94041", "stop_lon": 2.3920503934951416, "coord": [48.80696867744459, 2.3920503934951416], "stop_id": 3785920, "stop_desc": "1-3 AVENUE DE LA REPUBLIQUE - 94041", "stop_name": "PARMENTIER"}, "geometry": {"type": "Point", "coordinates": [2.3920503934951416, 48.80696867744459]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fba8dd816e67a5bc255bb6656b6c7fef515cc4d2", "fields": {"departement": "94", "stop_lat": 48.799693177298984, "code_postal": "94081", "stop_lon": 2.4008044491207685, "coord": [48.799693177298984, 2.4008044491207685], "stop_id": 3785926, "stop_desc": "4 AVENUE DE LA REPUBLIQUE - 94081", "stop_name": "REPUBLIQUE - VAILLANT COUTURIER"}, "geometry": {"type": "Point", "coordinates": [2.4008044491207685, 48.799693177298984]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "625fa11509dafc9d25c95f18efb164ae9601f816", "fields": {"departement": "94", "stop_lat": 48.7983005517985, "code_postal": "94081", "stop_lon": 2.399877617408329, "coord": [48.7983005517985, 2.399877617408329], "stop_id": 3785927, "stop_desc": "30 AVENUE PAUL VAILLANT-COUTURIER - 94081", "stop_name": "GABRIEL PERI"}, "geometry": {"type": "Point", "coordinates": [2.399877617408329, 48.7983005517985]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "615b9e0cc9dcfc5f76cba49f1a03dccee3ac87c4", "fields": {"departement": "94", "stop_lat": 48.79370731206612, "code_postal": "94081", "stop_lon": 2.400701898293865, "coord": [48.79370731206612, 2.400701898293865], "stop_id": 3785929, "stop_desc": "169 RUE GABRIEL PERI - 94081", "stop_name": "JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.400701898293865, 48.79370731206612]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bce8d00aafa81596267f815e43a46ee5198c9a06", "fields": {"departement": "94", "stop_lat": 48.78636349389331, "code_postal": "94081", "stop_lon": 2.4019850868098254, "coord": [48.78636349389331, 2.4019850868098254], "stop_id": 3785933, "stop_desc": "PLACE PAUL FROMENT - 94081", "stop_name": "PAUL FROMENT"}, "geometry": {"type": "Point", "coordinates": [2.4019850868098254, 48.78636349389331]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a0f15ba43c3f385e03de6822c8bb3912063a294a", "fields": {"departement": "94", "stop_lat": 48.78037667608841, "code_postal": "94081", "stop_lon": 2.4035008391930943, "coord": [48.78037667608841, 2.4035008391930943], "stop_id": 3785939, "stop_desc": "149 RUE DU GENERAL MALLERET JOINVILLE - 94081", "stop_name": "ANSELME RONDENAY"}, "geometry": {"type": "Point", "coordinates": [2.4035008391930943, 48.78037667608841]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c449909469546c977d51ffc3ae0c5c3604c18501", "fields": {"departement": "94", "stop_lat": 48.775978442111104, "code_postal": "94081", "stop_lon": 2.4088532233255204, "coord": [48.775978442111104, 2.4088532233255204], "stop_id": 3785945, "stop_desc": "21-23 RUE LEON GEFFROY - 94081", "stop_name": "LEON GEFFROY"}, "geometry": {"type": "Point", "coordinates": [2.4088532233255204, 48.775978442111104]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ba3e44b86feb312621cfce8465f22c47befdc42b", "fields": {"departement": "94", "stop_lat": 48.7648557244172, "code_postal": "94022", "stop_lon": 2.4159622300584207, "coord": [48.7648557244172, 2.4159622300584207], "stop_id": 3785956, "stop_desc": "18 AVENUE DE VILLENEUVE SAINT GEORGES - 94022", "stop_name": "FUSILLES"}, "geometry": {"type": "Point", "coordinates": [2.4159622300584207, 48.7648557244172]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5e9dbab1e0a33d2e35dc1b9e5001b14f1a8181ef", "fields": {"departement": "94", "stop_lat": 48.76492749391371, "code_postal": "94022", "stop_lon": 2.4161662799271997, "coord": [48.76492749391371, 2.4161662799271997], "stop_id": 3785957, "stop_desc": "29 AVENUE DE VILLENEUVE SAINT GEORGES - 94022", "stop_name": "FUSILLES"}, "geometry": {"type": "Point", "coordinates": [2.4161662799271997, 48.76492749391371]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7b417d1e33503b1e53223a9408fd9e9c8e63b809", "fields": {"departement": "94", "stop_lat": 48.75396131925804, "code_postal": "94078", "stop_lon": 2.429552532689557, "coord": [48.75396131925804, 2.429552532689557], "stop_id": 3785965, "stop_desc": "92 AVENUE DE CHOISY - 94078", "stop_name": "PAUL BERT"}, "geometry": {"type": "Point", "coordinates": [2.429552532689557, 48.75396131925804]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9c976e6ccdf700dbbcede18011ea45d7d5beb30a", "fields": {"departement": "94", "stop_lat": 48.74714216726016, "code_postal": "94078", "stop_lon": 2.4370972573888907, "coord": [48.74714216726016, 2.4370972573888907], "stop_id": 3785971, "stop_desc": "4 RUE RENE GUEGAN - 94078", "stop_name": "VILLENEUVE-TRIAGE RER"}, "geometry": {"type": "Point", "coordinates": [2.4370972573888907, 48.74714216726016]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "404cd6eaf5d65d1953a28fe9bed5c70f656c6535", "fields": {"departement": "94", "stop_lat": 48.81083671859592, "code_postal": "94041", "stop_lon": 2.384352294022514, "coord": [48.81083671859592, 2.384352294022514], "stop_id": 3785972, "stop_desc": "FACE 15 RUE MARAT - 94041", "stop_name": "MAIRIE D'IVRY-METRO"}, "geometry": {"type": "Point", "coordinates": [2.384352294022514, 48.81083671859592]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dce23ad97583e950133fb44ce51e1938d715aa83", "fields": {"departement": "94", "stop_lat": 48.7897695596788, "code_postal": "94081", "stop_lon": 2.4026422560236407, "coord": [48.7897695596788, 2.4026422560236407], "stop_id": 3785980, "stop_desc": "113 RUE ERNEST HAVET - 94081", "stop_name": "DANIELLE CASANOVA"}, "geometry": {"type": "Point", "coordinates": [2.4026422560236407, 48.7897695596788]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d6c1be327919466b0de44ceb2c4be5b5fccb290f", "fields": {"departement": "94", "stop_lat": 48.78667530592923, "code_postal": "94081", "stop_lon": 2.4068821118780837, "coord": [48.78667530592923, 2.4068821118780837], "stop_id": 3785982, "stop_desc": "RUE LEON GEFFROY - 94081", "stop_name": "JEAN PIERRE TIMBAUD"}, "geometry": {"type": "Point", "coordinates": [2.4068821118780837, 48.78667530592923]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "54446405be67bb85d5cc69ad9bc8332bb9879f5c", "fields": {"departement": "94", "stop_lat": 48.77132267807762, "code_postal": "94022", "stop_lon": 2.408792415801712, "coord": [48.77132267807762, 2.408792415801712], "stop_id": 3785988, "stop_desc": "AVENUE DE LUGO - 94022", "stop_name": "DOCTEUR ROUX"}, "geometry": {"type": "Point", "coordinates": [2.408792415801712, 48.77132267807762]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6d939fcc89c19edf3155b056f150e668fab07272", "fields": {"departement": "94", "stop_lat": 48.8152746562946, "code_postal": "94043", "stop_lon": 2.360866740991549, "coord": [48.8152746562946, 2.360866740991549], "stop_id": 3786052, "stop_desc": "13 AVENUE DE FONTAINEBLEAU - 94043", "stop_name": "ROGER SALENGRO - FONTAINEBLEAU"}, "geometry": {"type": "Point", "coordinates": [2.360866740991549, 48.8152746562946]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "df0f866c587b6ccac63e00513d05f52094ee3c4b", "fields": {"departement": "94", "stop_lat": 48.812066724767554, "code_postal": "94043", "stop_lon": 2.3570685335223565, "coord": [48.812066724767554, 2.3570685335223565], "stop_id": 3786056, "stop_desc": "29 RUE DE LA CONVENTION - 94043", "stop_name": "MAIRIE DU KREMLIN-BICETRE"}, "geometry": {"type": "Point", "coordinates": [2.3570685335223565, 48.812066724767554]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6cdc038142a522f7fb52aad3cfd409f94c6397d7", "fields": {"departement": "94", "stop_lat": 48.811330634006495, "code_postal": "94037", "stop_lon": 2.350563521832538, "coord": [48.811330634006495, 2.350563521832538], "stop_id": 3786066, "stop_desc": "AVENUE GABRIEL PERI - 94037", "stop_name": "CONVENTION - JAURES"}, "geometry": {"type": "Point", "coordinates": [2.350563521832538, 48.811330634006495]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e939db2e6a4e936fd136535aec51289b7a4a5f6a", "fields": {"departement": "94", "stop_lat": 48.80795157028177, "code_postal": "94037", "stop_lon": 2.3470791770842157, "coord": [48.80795157028177, 2.3470791770842157], "stop_id": 3786068, "stop_desc": "150 R GABRIEL PERI - 94037", "stop_name": "CITE DES H.B.M."}, "geometry": {"type": "Point", "coordinates": [2.3470791770842157, 48.80795157028177]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ad4e43f8854708642484e0fc2837339f774170af", "fields": {"departement": "94", "stop_lat": 48.79760685291465, "code_postal": "94016", "stop_lon": 2.343036645353699, "coord": [48.79760685291465, 2.343036645353699], "stop_id": 3786072, "stop_desc": "10 RUE GABRIEL PERI - 94016", "stop_name": "COLONEL FABIEN"}, "geometry": {"type": "Point", "coordinates": [2.343036645353699, 48.79760685291465]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "813e3f8c454cd7bc150c3c589af2af50f5e1cc83", "fields": {"departement": "94", "stop_lat": 48.789167224380094, "code_postal": "94016", "stop_lon": 2.343062910202168, "coord": [48.789167224380094, 2.343062910202168], "stop_id": 3786074, "stop_desc": "198 RUE GABRIEL PERI - 94016", "stop_name": "LUNAIN"}, "geometry": {"type": "Point", "coordinates": [2.343062910202168, 48.789167224380094]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8fdf97f4eec09cfec2e290de56f7a07ba473b106", "fields": {"departement": "94", "stop_lat": 48.77886711314606, "code_postal": "94038", "stop_lon": 2.340926602240112, "coord": [48.77886711314606, 2.340926602240112], "stop_id": 3786080, "stop_desc": "BOULEVARD PAUL VAILLANT COUTURIER - 94038", "stop_name": "HENRI THIRARD - LEON JOUHAUX"}, "geometry": {"type": "Point", "coordinates": [2.340926602240112, 48.77886711314606]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9418976def2207d6f467f7c4ab07b9f28be821b1", "fields": {"departement": "94", "stop_lat": 48.76991509860442, "code_postal": "94021", "stop_lon": 2.337526625367893, "coord": [48.76991509860442, 2.337526625367893], "stop_id": 3786085, "stop_desc": "96 BD JEAN MERMOZ - 94021", "stop_name": "CROIX DU SUD - CENTRE DE PNEUMOLOGIE"}, "geometry": {"type": "Point", "coordinates": [2.337526625367893, 48.76991509860442]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ed09782c9e499abcb71091d301c0a5b5224a7f3d", "fields": {"departement": "94", "stop_lat": 48.75993818030176, "code_postal": "94034", "stop_lon": 2.3315040920386356, "coord": [48.75993818030176, 2.3315040920386356], "stop_id": 3786091, "stop_desc": "AVENUE DE STALINGRAD - 94034", "stop_name": "LA FRESNAIE"}, "geometry": {"type": "Point", "coordinates": [2.3315040920386356, 48.75993818030176]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8398fa5c71637d2bde5aad1049ce650f8ab96bf5", "fields": {"departement": "94", "stop_lat": 48.758239317202175, "code_postal": "94034", "stop_lon": 2.3296146694714914, "coord": [48.758239317202175, 2.3296146694714914], "stop_id": 3786093, "stop_desc": "AVENUE DE STALINGRAD - 94034", "stop_name": "ROND-POINT ROOSEVELT"}, "geometry": {"type": "Point", "coordinates": [2.3296146694714914, 48.758239317202175]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "10f9f26bd6172fe632817450e62e3ef04e4a972a", "fields": {"departement": "94", "stop_lat": 48.75797868255833, "code_postal": "94034", "stop_lon": 2.3299545640695674, "coord": [48.75797868255833, 2.3299545640695674], "stop_id": 3786094, "stop_desc": "AVENUE DE STALINGRAD - 94034", "stop_name": "ROND-POINT ROOSEVELT"}, "geometry": {"type": "Point", "coordinates": [2.3299545640695674, 48.75797868255833]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b7201b20092d0d69ceaddf5a31f0d47beeb5e4d7", "fields": {"departement": "94", "stop_lat": 48.8152746562946, "code_postal": "94043", "stop_lon": 2.360866740991549, "coord": [48.8152746562946, 2.360866740991549], "stop_id": 3786097, "stop_desc": "13 AVENUE DE FONTAINEBLEAU - 94043", "stop_name": "ROGER SALENGRO - FONTAINEBLEAU"}, "geometry": {"type": "Point", "coordinates": [2.360866740991549, 48.8152746562946]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "978f2e66f40eed46b380c796c7389b47288ab133", "fields": {"departement": "94", "stop_lat": 48.81234517080877, "code_postal": "94043", "stop_lon": 2.358089276515501, "coord": [48.81234517080877, 2.358089276515501], "stop_id": 3786100, "stop_desc": "54 RUE DU GENERAL LECLERC - 94043", "stop_name": "MAIRIE DU KREMLIN-BICETRE"}, "geometry": {"type": "Point", "coordinates": [2.358089276515501, 48.81234517080877]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f864ce347fb4a720e711b9599a9e9b11ef8c7a7d", "fields": {"departement": "94", "stop_lat": 48.81046784481521, "code_postal": "94043", "stop_lon": 2.3502367086760128, "coord": [48.81046784481521, 2.3502367086760128], "stop_id": 3786103, "stop_desc": "FACE 92 BIS R GABRIEL PERI - 94043", "stop_name": "BENSERADE - C.H.U. DE BICETRE"}, "geometry": {"type": "Point", "coordinates": [2.3502367086760128, 48.81046784481521]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1e695cb65b1182512073cf7bd7d88e0fb8dc56b8", "fields": {"departement": "94", "stop_lat": 48.8000245336086, "code_postal": "94003", "stop_lon": 2.344002888128499, "coord": [48.8000245336086, 2.344002888128499], "stop_id": 3786107, "stop_desc": "AVENUE GABRIEL PERI - 94003", "stop_name": "QUATRE CHEMINS - PAULINE KERGOMARD"}, "geometry": {"type": "Point", "coordinates": [2.344002888128499, 48.8000245336086]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "469159359e63171c5a6e83f1528ad699e634059c", "fields": {"departement": "94", "stop_lat": 48.78909530463577, "code_postal": "94038", "stop_lon": 2.3433893596754563, "coord": [48.78909530463577, 2.3433893596754563], "stop_id": 3786110, "stop_desc": "146-148 RUE GABRIEL PERI - 94038", "stop_name": "LUNAIN"}, "geometry": {"type": "Point", "coordinates": [2.3433893596754563, 48.78909530463577]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a8c3c7ed673089578d41f9f36bab81acb7a38811", "fields": {"departement": "94", "stop_lat": 48.811330634006495, "code_postal": "94037", "stop_lon": 2.350563521832538, "coord": [48.811330634006495, 2.350563521832538], "stop_id": 3786111, "stop_desc": "AVENUE GABRIEL PERI - 94037", "stop_name": "CONVENTION - JAURES"}, "geometry": {"type": "Point", "coordinates": [2.350563521832538, 48.811330634006495]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1e255836b1cf970de331f22ff319ce4045ac55ef", "fields": {"departement": "94", "stop_lat": 48.80107615544935, "code_postal": "94003", "stop_lon": 2.343159481658929, "coord": [48.80107615544935, 2.343159481658929], "stop_id": 3786116, "stop_desc": "78 AVENUE GABRIEL PERI - 94003", "stop_name": "QUATRE CHEMINS"}, "geometry": {"type": "Point", "coordinates": [2.343159481658929, 48.80107615544935]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4e8086d6c322848e54e8e3ca4ce3d89961b0f62f", "fields": {"departement": "94", "stop_lat": 48.789167224380094, "code_postal": "94016", "stop_lon": 2.343062910202168, "coord": [48.789167224380094, 2.343062910202168], "stop_id": 3786119, "stop_desc": "198 RUE GABRIEL PERI - 94016", "stop_name": "LUNAIN"}, "geometry": {"type": "Point", "coordinates": [2.343062910202168, 48.789167224380094]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7f2aee57d076fce09e479308d5405496ccdd4b3d", "fields": {"departement": "94", "stop_lat": 48.7812129615611, "code_postal": "94038", "stop_lon": 2.341389179488394, "coord": [48.7812129615611, 2.341389179488394], "stop_id": 3786122, "stop_desc": "53 AVENUE PAUL VAILLANT COUTURIER - 94038", "stop_name": "EUGENE VARLIN"}, "geometry": {"type": "Point", "coordinates": [2.341389179488394, 48.7812129615611]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3c4c8858c0940eb19058e296c5a6226427073ba9", "fields": {"departement": "94", "stop_lat": 48.77895700307597, "code_postal": "94038", "stop_lon": 2.340586615053609, "coord": [48.77895700307597, 2.340586615053609], "stop_id": 3786124, "stop_desc": "BOULEVARD PAUL VAILLANT COUTURIER - 94038", "stop_name": "HENRI THIRARD - LEON JOUHAUX"}, "geometry": {"type": "Point", "coordinates": [2.340586615053609, 48.77895700307597]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4206cb148acfc9cac9cabcb457de90ccb004aab9", "fields": {"departement": "94", "stop_lat": 48.768063557426416, "code_postal": "94021", "stop_lon": 2.3367923835022073, "coord": [48.768063557426416, 2.3367923835022073], "stop_id": 3786133, "stop_desc": "FACE 138 BOULEVARD JEAN MERMOZ - 94021", "stop_name": "LOUIS BLERIOT - CIMETIERE INTERCOMMUNAL"}, "geometry": {"type": "Point", "coordinates": [2.3367923835022073, 48.768063557426416]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "40b1f2cf896b2ed0aeb3ed4d4361927ed19b222e", "fields": {"departement": "94", "stop_lat": 48.75992920812349, "code_postal": "94034", "stop_lon": 2.331843962081366, "coord": [48.75992920812349, 2.331843962081366], "stop_id": 3786137, "stop_desc": "AVENUE DE STALINGRAD - 94034", "stop_name": "LA FRESNAIE"}, "geometry": {"type": "Point", "coordinates": [2.331843962081366, 48.75992920812349]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d22e55a9ab424061e316d387c207ec470cd59255", "fields": {"departement": "94", "stop_lat": 48.797013620831194, "code_postal": "94016", "stop_lon": 2.3308197644314563, "coord": [48.797013620831194, 2.3308197644314563], "stop_id": 3786295, "stop_desc": "2 AVENUE CARNOT - 94016", "stop_name": "WILSON - PROVIGNY"}, "geometry": {"type": "Point", "coordinates": [2.3308197644314563, 48.797013620831194]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1a3d868a67591765534347e60f80818f74779a60", "fields": {"departement": "94", "stop_lat": 48.79642000035997, "code_postal": "94016", "stop_lon": 2.3253509031715356, "coord": [48.79642000035997, 2.3253509031715356], "stop_id": 3786297, "stop_desc": "42-44 R DE L'ESPERANCE - 94016", "stop_name": "LES LUMIERES"}, "geometry": {"type": "Point", "coordinates": [2.3253509031715356, 48.79642000035997]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "174191766f82ecc113e3d4a2e83808deea216790", "fields": {"departement": "94", "stop_lat": 48.789499034081295, "code_postal": "94016", "stop_lon": 2.322740808723322, "coord": [48.789499034081295, 2.322740808723322], "stop_id": 3786302, "stop_desc": "16 AV VICTOR HUGO - 94016", "stop_name": "CITE JARDINS - VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.322740808723322, 48.789499034081295]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dbdc2e304cdf21f2e86cdeced46c92db54d8e2bb", "fields": {"departement": "94", "stop_lat": 48.78804290595327, "code_postal": "94016", "stop_lon": 2.3220611095232906, "coord": [48.78804290595327, 2.3220611095232906], "stop_id": 3786303, "stop_desc": "R PIERRE CURIE - 94016", "stop_name": "CITE JARDINS - PIERRE CURIE"}, "geometry": {"type": "Point", "coordinates": [2.3220611095232906, 48.78804290595327]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5975eb91cde88354dc4ce3029c39902321f84432", "fields": {"departement": "92", "stop_lat": 48.885383873230644, "code_postal": "92051", "stop_lon": 2.2641558835611693, "coord": [48.885383873230644, 2.2641558835611693], "stop_id": 4016747, "stop_desc": "185 AVENUE ACHILLE PERETTI OU DU ROULE - 92051", "stop_name": "RUE DE L'EGLISE"}, "geometry": {"type": "Point", "coordinates": [2.2641558835611693, 48.885383873230644]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dbec4f8ac9b43dc366fb05a39c2e99b34926922e", "fields": {"departement": "92", "stop_lat": 48.890110735820386, "code_postal": "92044", "stop_lon": 2.279822464951176, "coord": [48.890110735820386, 2.279822464951176], "stop_id": 4016757, "stop_desc": "48 RUE DE VILLIERS - 92044", "stop_name": "VOLTAIRE - VILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.279822464951176, 48.890110735820386]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5c2212d08fedab0b953f002748fcc37d1bd9a094", "fields": {"departement": "92", "stop_lat": 48.89120071647459, "code_postal": "92044", "stop_lon": 2.2853410817006194, "coord": [48.89120071647459, 2.2853410817006194], "stop_id": 4016759, "stop_desc": "47 RUE ARISTIDE BRIAND - 92044", "stop_name": "ANATOLE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.2853410817006194, 48.89120071647459]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7d1f50e7a99b3c0d9a413cec814bfcac7bbe63d1", "fields": {"departement": "92", "stop_lat": 48.89281222932453, "code_postal": "92044", "stop_lon": 2.2922496846244274, "coord": [48.89281222932453, 2.2922496846244274], "stop_id": 4016763, "stop_desc": "108-110 RUE LOUIS ROUQUIER - 92044", "stop_name": "MARJOLIN"}, "geometry": {"type": "Point", "coordinates": [2.2922496846244274, 48.89281222932453]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a8a5648aa8d7fb0b21d8323b28d0743d72b91706", "fields": {"departement": "92", "stop_lat": 48.89546450581845, "code_postal": "92044", "stop_lon": 2.2951642691362526, "coord": [48.89546450581845, 2.2951642691362526], "stop_id": 4016766, "stop_desc": "121 RUE ARISTIDE BRIAND - 92044", "stop_name": "TREZEL"}, "geometry": {"type": "Point", "coordinates": [2.2951642691362526, 48.89546450581845]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a7cb27f34cc26b29507a6cadfc9837c912985ff2", "fields": {"departement": "92", "stop_lat": 48.896264656938605, "code_postal": "92044", "stop_lon": 2.2960087119398094, "coord": [48.896264656938605, 2.2960087119398094], "stop_id": 4016768, "stop_desc": "81 RUE VICTOR HUGO - 92044", "stop_name": "JEAN JAURES - VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.2960087119398094, 48.896264656938605]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eb3dc70ed014cb3e415794eee2bea09344aab17d", "fields": {"departement": "92", "stop_lat": 48.906070014499605, "code_postal": "92024", "stop_lon": 2.2972551523114686, "coord": [48.906070014499605, 2.2972551523114686], "stop_id": 4016776, "stop_desc": "27 RUE FOURNIER - 92024", "stop_name": "RUE DU PORT"}, "geometry": {"type": "Point", "coordinates": [2.2972551523114686, 48.906070014499605]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4dd6cd20f4b524da125c96f3056b3cf8c99ce026", "fields": {"departement": "92", "stop_lat": 48.90370014767024, "code_postal": "92024", "stop_lon": 2.3064180098461557, "coord": [48.90370014767024, 2.3064180098461557], "stop_id": 4016780, "stop_desc": "FACE 15 RUE VILLENEUVE - 92024", "stop_name": "MAIRIE DE CLICHY - METRO"}, "geometry": {"type": "Point", "coordinates": [2.3064180098461557, 48.90370014767024]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e0fd9c357bcbef0aa0f852637f6da5a85793ffff", "fields": {"departement": "92", "stop_lat": 48.90586686297892, "code_postal": "92024", "stop_lon": 2.3098113503006648, "coord": [48.90586686297892, 2.3098113503006648], "stop_id": 4016782, "stop_desc": "80 BOULEVARD DU GENERAL LECLERC - 92024", "stop_name": "GENERAL LECLERC - VILLENEUVE-HOPITAL BEAUJON"}, "geometry": {"type": "Point", "coordinates": [2.3098113503006648, 48.90586686297892]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f352d93baa7de104935bc6294086b82538e202d0", "fields": {"departement": "92", "stop_lat": 48.90361255737851, "code_postal": "92024", "stop_lon": 2.317078644623399, "coord": [48.90361255737851, 2.317078644623399], "stop_id": 4016786, "stop_desc": "35-37 RUE MADAME DE SANZILLON - 92024", "stop_name": "GEORGES BOISSEAU"}, "geometry": {"type": "Point", "coordinates": [2.317078644623399, 48.90361255737851]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "be2021572dfad7bcbd9549a015def856887a077b", "fields": {"departement": "92", "stop_lat": 48.906341484058906, "code_postal": "92024", "stop_lon": 2.3032399076261534, "coord": [48.906341484058906, 2.3032399076261534], "stop_id": 4016791, "stop_desc": "FACE 113 RUE MARTRE - 92024", "stop_name": "GABRIEL PERI"}, "geometry": {"type": "Point", "coordinates": [2.3032399076261534, 48.906341484058906]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c1e992734a9f10523492b15f16d9a9a00195a964", "fields": {"departement": "92", "stop_lat": 48.89174557599857, "code_postal": "92044", "stop_lon": 2.278130615179792, "coord": [48.89174557599857, 2.278130615179792], "stop_id": 4016792, "stop_desc": "70 RUE DE VILLIERS - 92044", "stop_name": "HOPITAL DU PERPETUEL SECOURS"}, "geometry": {"type": "Point", "coordinates": [2.278130615179792, 48.89174557599857]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6f06b38bdf4c6adff95bda92c1999791c1bc97a0", "fields": {"departement": "92", "stop_lat": 48.89192062226174, "code_postal": "92026", "stop_lon": 2.2429120742176076, "coord": [48.89192062226174, 2.2429120742176076], "stop_id": 4016797, "stop_desc": "AVENUE ALBERT GLEIZES - 92026", "stop_name": "GAMBETTA"}, "geometry": {"type": "Point", "coordinates": [2.2429120742176076, 48.89192062226174]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2b2bf4989d380cfa5836e243a6dfcdad34740fea", "fields": {"departement": "92", "stop_lat": 48.914491953779105, "code_postal": "92004", "stop_lon": 2.3006302096036, "coord": [48.914491953779105, 2.3006302096036], "stop_id": 4016801, "stop_desc": "70 AVENUE GRESILLONS - 92004", "stop_name": "MARCHE DE GENNEVILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.3006302096036, 48.914491953779105]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "75f31dc46243da47fb707520ad0cdad929c24160", "fields": {"departement": "92", "stop_lat": 48.915939874078106, "code_postal": "92004", "stop_lon": 2.304092654585697, "coord": [48.915939874078106, 2.304092654585697], "stop_id": 4016802, "stop_desc": "98 AV DES GRESILLONS - 92004", "stop_name": "CITE JARDINS"}, "geometry": {"type": "Point", "coordinates": [2.304092654585697, 48.915939874078106]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fc294a0bb2b1e19460694713edeab317c9d3ea4f", "fields": {"departement": "92", "stop_lat": 48.917774470595354, "code_postal": "92004", "stop_lon": 2.3089459623283473, "coord": [48.917774470595354, 2.3089459623283473], "stop_id": 4016804, "stop_desc": "198 AVENUE DES GRESILLONS - 92004", "stop_name": "TOUR D'ASNIERES-LAURENT CELY"}, "geometry": {"type": "Point", "coordinates": [2.3089459623283473, 48.917774470595354]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ace25324b6d86c987744acc2c5ff798dd1be64e8", "fields": {"departement": "92", "stop_lat": 48.92356443509411, "code_postal": "92036", "stop_lon": 2.3218304336369053, "coord": [48.92356443509411, 2.3218304336369053], "stop_id": 4016809, "stop_desc": "FACE 3 BOULEVARD GALLIENI - 92036", "stop_name": "QUATRE CHEMINS"}, "geometry": {"type": "Point", "coordinates": [2.3218304336369053, 48.92356443509411]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f7e04bf5a4d943d88389f697a5b777e8e7a2bd98", "fields": {"departement": "92", "stop_lat": 48.94293955264489, "code_postal": "92078", "stop_lon": 2.3179501029113507, "coord": [48.94293955264489, 2.3179501029113507], "stop_id": 4016829, "stop_desc": "270 BOULEVARD CHARLES DE GAULLE - 92078", "stop_name": "ZONE INDUSTRIELLE NORD"}, "geometry": {"type": "Point", "coordinates": [2.3179501029113507, 48.94293955264489]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ef9c04cb57eeb45f78234ad325160c07d41f8fe4", "fields": {"departement": "93", "stop_lat": 48.9331633477147, "code_postal": "93066", "stop_lon": 2.3420424063287166, "coord": [48.9331633477147, 2.3420424063287166], "stop_id": 4016999, "stop_desc": "PLACE JEAN POULMARCH - 93066", "stop_name": "PLACE JEAN POULMARCH"}, "geometry": {"type": "Point", "coordinates": [2.3420424063287166, 48.9331633477147]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0ec76579526057dfc6f53373059872550c9df137", "fields": {"departement": "93", "stop_lat": 48.917337421239395, "code_postal": "93066", "stop_lon": 2.3405955199536397, "coord": [48.917337421239395, 2.3405955199536397], "stop_id": 4017009, "stop_desc": "217 BOULEVARD ANATOLE FRANCE - 93066", "stop_name": "LES RENOUILLERES"}, "geometry": {"type": "Point", "coordinates": [2.3405955199536397, 48.917337421239395]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d52318cbc6a80db01647367b8cd7c6659d821062", "fields": {"departement": "93", "stop_lat": 48.91505477172237, "code_postal": "93070", "stop_lon": 2.3373774020111786, "coord": [48.91505477172237, 2.3373774020111786], "stop_id": 4017010, "stop_desc": "8 BIS BOULEVARD JEAN JAURES - 93070", "stop_name": "LANDY - JAURES"}, "geometry": {"type": "Point", "coordinates": [2.3373774020111786, 48.91505477172237]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8d41d444b36b25c38d4ad6466fc5f1dc5924041d", "fields": {"departement": "93", "stop_lat": 48.909545488841566, "code_postal": "93070", "stop_lon": 2.3297150701416416, "coord": [48.909545488841566, 2.3297150701416416], "stop_id": 4017014, "stop_desc": "60 BOULEVARD VICTOR HUGO - 93070", "stop_name": "LES BATELIERS"}, "geometry": {"type": "Point", "coordinates": [2.3297150701416416, 48.909545488841566]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1c0e0c6ca5e46b524ca750419c4b9193623a0a59", "fields": {"departement": "92", "stop_lat": 48.903522848561984, "code_postal": "92024", "stop_lon": 2.3180602148539173, "coord": [48.903522848561984, 2.3180602148539173], "stop_id": 4017022, "stop_desc": "42-44 RUE MADAME DE SANZILLON - 92024", "stop_name": "GEORGES BOISSEAU"}, "geometry": {"type": "Point", "coordinates": [2.3180602148539173, 48.903522848561984]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dd0b0ed8c7e9dc70ac8958304352c7af5584ba9b", "fields": {"departement": "92", "stop_lat": 48.89800100081786, "code_postal": "92024", "stop_lon": 2.3016778190226272, "coord": [48.89800100081786, 2.3016778190226272], "stop_id": 4017031, "stop_desc": "FACE 13 RUE HENRI BARBUSSE - 92024", "stop_name": "CHANCE - MILLY"}, "geometry": {"type": "Point", "coordinates": [2.3016778190226272, 48.89800100081786]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "375b3081e1131709522f33a0fd0296398d0ce3f4", "fields": {"departement": "92", "stop_lat": 48.894584074713464, "code_postal": "92044", "stop_lon": 2.296050939691295, "coord": [48.894584074713464, 2.296050939691295], "stop_id": 4017035, "stop_desc": "98 RUE JEAN JAURES - 92044", "stop_name": "TREZEL"}, "geometry": {"type": "Point", "coordinates": [2.296050939691295, 48.894584074713464]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1edd9058690669676129167b87751d7f7a6d1045", "fields": {"departement": "92", "stop_lat": 48.89324168818636, "code_postal": "92044", "stop_lon": 2.2874107567071595, "coord": [48.89324168818636, 2.2874107567071595], "stop_id": 4017039, "stop_desc": "FACE 75 RUE VOLTAIRE - 92044", "stop_name": "MAIRIE DE LEVALLOIS"}, "geometry": {"type": "Point", "coordinates": [2.2874107567071595, 48.89324168818636]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2bddad14f7cb63a90eeadf06ddd5297eba485a0e", "fields": {"departement": "93", "stop_lat": 48.9040715444015, "code_postal": "93070", "stop_lon": 2.3213454631470225, "coord": [48.9040715444015, 2.3213454631470225], "stop_id": 4017048, "stop_desc": "163-165 BOULEVARD VICTOR HUGO - 93070", "stop_name": "VICTOR HUGO - SANZILLON"}, "geometry": {"type": "Point", "coordinates": [2.3213454631470225, 48.9040715444015]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4d8d2babf7e4a8db450eceb58a608f4934ae8772", "fields": {"departement": "92", "stop_lat": 48.925673713228505, "code_postal": "92036", "stop_lon": 2.3077551157799605, "coord": [48.925673713228505, 2.3077551157799605], "stop_id": 4017057, "stop_desc": "76 RUE DU FOSSE BLANC - 92036", "stop_name": "FOSSE BLANC"}, "geometry": {"type": "Point", "coordinates": [2.3077551157799605, 48.925673713228505]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c2767156456460ff33cb8778b03d388e441ba88d", "fields": {"departement": "92", "stop_lat": 48.92077780514651, "code_postal": "92036", "stop_lon": 2.3172765134402966, "coord": [48.92077780514651, 2.3172765134402966], "stop_id": 4017059, "stop_desc": "AVENUE DES GRESILLONS - 92036", "stop_name": "CABOEUFS"}, "geometry": {"type": "Point", "coordinates": [2.3172765134402966, 48.92077780514651]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "44acbea4827607dfad123338119206cbc9876d1a", "fields": {"departement": "92", "stop_lat": 48.92022021800422, "code_postal": "92036", "stop_lon": 2.315040288490281, "coord": [48.92022021800422, 2.315040288490281], "stop_id": 4017060, "stop_desc": "243 AV DES GRESILLONS - 92036", "stop_name": "LES GRESILLONS RER"}, "geometry": {"type": "Point", "coordinates": [2.315040288490281, 48.92022021800422]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e7859711a603c2755fad2cabd6e4f35a89e2a2c8", "fields": {"departement": "92", "stop_lat": 48.91411605336958, "code_postal": "92004", "stop_lon": 2.3060981998439347, "coord": [48.91411605336958, 2.3060981998439347], "stop_id": 4017063, "stop_desc": "R DU JARDIN MODELE - 92004", "stop_name": "RIVER PLAZA"}, "geometry": {"type": "Point", "coordinates": [2.3060981998439347, 48.91411605336958]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "efd6094804a2dddc181927b72c5fc95546439a64", "fields": {"departement": "92", "stop_lat": 48.91382859631385, "code_postal": "92004", "stop_lon": 2.3065892380250648, "coord": [48.91382859631385, 2.3065892380250648], "stop_id": 4017064, "stop_desc": "R DU JARDIN MODELE - 92004", "stop_name": "RIVER PLAZA"}, "geometry": {"type": "Point", "coordinates": [2.3065892380250648, 48.91382859631385]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7c0ddff8adaadb083ec75645a0eb07fc635bb401", "fields": {"departement": "92", "stop_lat": 48.916287183435955, "code_postal": "92004", "stop_lon": 2.2941383019092667, "coord": [48.916287183435955, 2.2941383019092667], "stop_id": 4017066, "stop_desc": "PISTE GARE ROUTIERE - 92004", "stop_name": "GABRIEL PERI-METRO"}, "geometry": {"type": "Point", "coordinates": [2.2941383019092667, 48.916287183435955]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cef6ea33f6f1a7c29cc3b7a414a330bb6f1c0e85", "fields": {"departement": "75", "stop_lat": 48.86254136918029, "code_postal": "75107", "stop_lon": 2.320241226896711, "coord": [48.86254136918029, 2.320241226896711], "stop_id": 4022885, "stop_desc": "FACE 27 QUAI ANATOLE FRANCE - 75107", "stop_name": "ASSEMBLEE NATIONALE"}, "geometry": {"type": "Point", "coordinates": [2.320241226896711, 48.86254136918029]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "403158d18197cd43bd9c94c6a38ff0d5c1c3316c", "fields": {"departement": "75", "stop_lat": 48.86936951360943, "code_postal": "75108", "stop_lon": 2.3085091915962734, "coord": [48.86936951360943, 2.3085091915962734], "stop_id": 4022893, "stop_desc": "23 AVENUE DES CHAMPS ELYSEES - 75108", "stop_name": "ROND-POINT DES CHAMPS-ELYSEES"}, "geometry": {"type": "Point", "coordinates": [2.3085091915962734, 48.86936951360943]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "abff15acfd7f00eb688f94f13a6addeae0d2789b", "fields": {"departement": "75", "stop_lat": 48.871587468618785, "code_postal": "75108", "stop_lon": 2.3014370859374598, "coord": [48.871587468618785, 2.3014370859374598], "stop_id": 4022897, "stop_desc": "95 AVENUE DES CHAMPS ELYSEES - 75108", "stop_name": "GEORGE V"}, "geometry": {"type": "Point", "coordinates": [2.3014370859374598, 48.871587468618785]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3cf09b8c634b66769673434bb9d0e58abfb05033", "fields": {"departement": "75", "stop_lat": 48.87346419088715, "code_postal": "75108", "stop_lon": 2.2963810880084012, "coord": [48.87346419088715, 2.2963810880084012], "stop_id": 4022898, "stop_desc": "AVENUE DES CHAMPS ELYSEES - 75108", "stop_name": "CHARLES DE GAULLE - ETOILE - CHAMPS-ELYSEES"}, "geometry": {"type": "Point", "coordinates": [2.2963810880084012, 48.87346419088715]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "49b49b5e728e02a00c68d4fb433f245ddaae76d9", "fields": {"departement": "75", "stop_lat": 48.87329337582345, "code_postal": "75108", "stop_lon": 2.296217728814878, "coord": [48.87329337582345, 2.296217728814878], "stop_id": 4022899, "stop_desc": "135 AVENUE DES CHAMPS ELYSEES - 75108", "stop_name": "CHARLES DE GAULLE - ETOILE - CHAMPS-ELYSEES"}, "geometry": {"type": "Point", "coordinates": [2.296217728814878, 48.87329337582345]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "834ad8923c75b4a067b5716b36d05e794b8a5909", "fields": {"departement": "92", "stop_lat": 48.88013216210914, "code_postal": "92051", "stop_lon": 2.2743693786917185, "coord": [48.88013216210914, 2.2743693786917185], "stop_id": 4022905, "stop_desc": "73 AVENUE CHARLES DE GAULLE - 92051", "stop_name": "MARCHE DE NEUILLY-SUR-SEINE"}, "geometry": {"type": "Point", "coordinates": [2.2743693786917185, 48.88013216210914]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8b32e92aa4f7595c9c89d256dc4deaa819dffcd1", "fields": {"departement": "92", "stop_lat": 48.88347044692431, "code_postal": "92051", "stop_lon": 2.265562179942118, "coord": [48.88347044692431, 2.265562179942118], "stop_id": 4022910, "stop_desc": "130 BIS AVENUE CHARLES DE GAULLE - 92051", "stop_name": "LES GRAVIERS"}, "geometry": {"type": "Point", "coordinates": [2.265562179942118, 48.88347044692431]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4914536eb81ba76d1d2856a2fe9b9a3b860e7a05", "fields": {"departement": "92", "stop_lat": 48.885263256136696, "code_postal": "92051", "stop_lon": 2.258228030988886, "coord": [48.885263256136696, 2.258228030988886], "stop_id": 4022913, "stop_desc": "209 AVENUE CHARLES DE GAULLE - 92051", "stop_name": "PONT DE NEUILLY-METRO"}, "geometry": {"type": "Point", "coordinates": [2.258228030988886, 48.885263256136696]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b5772887e3268ed4ed3fd112fd707ab1207780e3", "fields": {"departement": "92", "stop_lat": 48.778905501575515, "code_postal": "92060", "stop_lon": 2.260783394313373, "coord": [48.778905501575515, 2.260783394313373], "stop_id": 5151456, "stop_desc": "FACE 9 AVENUE CHARLES DE GAULLE - 92060", "stop_name": "RESISTANCE"}, "geometry": {"type": "Point", "coordinates": [2.260783394313373, 48.778905501575515]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "56bc5c32d8799ce5f87f9a1d556497e5dcdd2b2e", "fields": {"departement": "92", "stop_lat": 48.78780203202974, "code_postal": "92023", "stop_lon": 2.2584035361816652, "coord": [48.78780203202974, 2.2584035361816652], "stop_id": 5151462, "stop_desc": "RUE DE LA CAVEE - 92023", "stop_name": "LA CAVEE"}, "geometry": {"type": "Point", "coordinates": [2.2584035361816652, 48.78780203202974]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e77162dab8c0b6eb3f06efb7a75286b6b3c1a46d", "fields": {"departement": "92", "stop_lat": 48.801091018443806, "code_postal": "92020", "stop_lon": 2.2832678956834442, "coord": [48.801091018443806, 2.2832678956834442], "stop_id": 5151465, "stop_desc": "FACE 27 RUE PIERRE BROSSOLETTE - 92020", "stop_name": "GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.2832678956834442, 48.801091018443806]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "575eb6df6828ad0f17741f5c28a037a4a9a14937", "fields": {"departement": "92", "stop_lat": 48.8065833107802, "code_postal": "92023", "stop_lon": 2.267410049761415, "coord": [48.8065833107802, 2.267410049761415], "stop_id": 5151476, "stop_desc": "101-103 AVENUE JEAN JAURES - 92023", "stop_name": "PIERRE LOUVRIER"}, "geometry": {"type": "Point", "coordinates": [2.267410049761415, 48.8065833107802]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c17b78734b7d8085186e927330789e676b80da9e", "fields": {"departement": "92", "stop_lat": 48.81796156576998, "code_postal": "92075", "stop_lon": 2.2843663662499045, "coord": [48.81796156576998, 2.2843663662499045], "stop_id": 5151485, "stop_desc": "FACE 10 RUE LARMEROUX - 92075", "stop_name": "RUE DE CHATILLON"}, "geometry": {"type": "Point", "coordinates": [2.2843663662499045, 48.81796156576998]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "611f2c60e8e821861a1e3f769c47b5963dee991c", "fields": {"departement": "92", "stop_lat": 48.82418915289951, "code_postal": "92075", "stop_lon": 2.2824135616300723, "coord": [48.82418915289951, 2.2824135616300723], "stop_id": 5151492, "stop_desc": "45 BOULEVARD DU LYCEE - 92075", "stop_name": "GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.2824135616300723, 48.82418915289951]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5f646e8eb3d3e648423b6f9d3d1428955e8255c0", "fields": {"departement": "75", "stop_lat": 48.837352823094804, "code_postal": "75115", "stop_lon": 2.2968996770026644, "coord": [48.837352823094804, 2.2968996770026644], "stop_id": 5151501, "stop_desc": "333-335 R DE VAUGIRARD - 75115", "stop_name": "CONVENTION - VAUGIRARD"}, "geometry": {"type": "Point", "coordinates": [2.2968996770026644, 48.837352823094804]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c6080a2f584a9c6a6dcc7429dc004f097d64f0eb", "fields": {"departement": "75", "stop_lat": 48.83959225019507, "code_postal": "75115", "stop_lon": 2.301677023842893, "coord": [48.83959225019507, 2.301677023842893], "stop_id": 5151504, "stop_desc": "FACE 252 RUE DE VAUGIRARD - 75115", "stop_name": "VAUGIRARD - FAVORITES"}, "geometry": {"type": "Point", "coordinates": [2.301677023842893, 48.83959225019507]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "220ba3dd1ec9bb41017367a4c424aa93b4eab27a", "fields": {"departement": "75", "stop_lat": 48.84038395608434, "code_postal": "75115", "stop_lon": 2.304467729103389, "coord": [48.84038395608434, 2.304467729103389], "stop_id": 5151505, "stop_desc": "249 RUE DE VAUGIRARD - 75115", "stop_name": "CAMBRONNE - VAUGIRARD"}, "geometry": {"type": "Point", "coordinates": [2.304467729103389, 48.84038395608434]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cea3e7aaefbe814ba09903e0324c07cc9898fd56", "fields": {"departement": "75", "stop_lat": 48.84092542778849, "code_postal": "75115", "stop_lon": 2.3138760334790764, "coord": [48.84092542778849, 2.3138760334790764], "stop_id": 5151507, "stop_desc": "52 BOULEVARD PASTEUR - 75115", "stop_name": "PASTEUR - FALGUIERE"}, "geometry": {"type": "Point", "coordinates": [2.3138760334790764, 48.84092542778849]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "72e62d7d228f5030bab1a50ac3b6cc59c5c9ee0a", "fields": {"departement": "75", "stop_lat": 48.84109667094733, "code_postal": "75115", "stop_lon": 2.316463002196349, "coord": [48.84109667094733, 2.316463002196349], "stop_id": 5151509, "stop_desc": "44 BOULEVARD DE VAUGIRARD - 75115", "stop_name": "ARMORIQUE - MUSEE POSTAL"}, "geometry": {"type": "Point", "coordinates": [2.316463002196349, 48.84109667094733]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0db0b840cf798a390a5a258c6bec5bd5cb7f738d", "fields": {"departement": "75", "stop_lat": 48.837267018830325, "code_postal": "75115", "stop_lon": 2.2843466881434824, "coord": [48.837267018830325, 2.2843466881434824], "stop_id": 5151520, "stop_desc": "330-332 RUE LECOURBE - 75115", "stop_name": "LYCEE LOUIS ARMAND"}, "geometry": {"type": "Point", "coordinates": [2.2843466881434824, 48.837267018830325]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f6bb7b198d266ae34a9887292dbf79f87afe872c", "fields": {"departement": "93", "stop_lat": 48.914959777941725, "code_postal": "93057", "stop_lon": 2.5013982786723648, "coord": [48.914959777941725, 2.5013982786723648], "stop_id": 5747165, "stop_desc": "FACE 91 AVENUE DE ROME - 93057", "stop_name": "Z.I. DE LA POUDRETTE"}, "geometry": {"type": "Point", "coordinates": [2.5013982786723648, 48.914959777941725]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e6a65725cfc8d050d5e9f539e77b7b3284e8f55c", "fields": {"departement": "93", "stop_lat": 48.9162860028772, "code_postal": "93057", "stop_lon": 2.497625358261496, "coord": [48.9162860028772, 2.497625358261496], "stop_id": 5747169, "stop_desc": "AVENUE DE ROME - 93057", "stop_name": "ROBERT SCHUMAN"}, "geometry": {"type": "Point", "coordinates": [2.497625358261496, 48.9162860028772]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "43ac561c2ab91cb6646082d943101c0d40349542", "fields": {"departement": "93", "stop_lat": 48.91122599541587, "code_postal": "93010", "stop_lon": 2.4910378711854277, "coord": [48.91122599541587, 2.4910378711854277], "stop_id": 5747173, "stop_desc": "27-29 AVENUE DU 14 JUILLET - 93010", "stop_name": "VILLAGEOISE"}, "geometry": {"type": "Point", "coordinates": [2.4910378711854277, 48.91122599541587]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e19ea5a5eff68869e690421bdbab8ff4f434c089", "fields": {"departement": "93", "stop_lat": 48.90450010869527, "code_postal": "93010", "stop_lon": 2.4716730867766277, "coord": [48.90450010869527, 2.4716730867766277], "stop_id": 5747180, "stop_desc": "AVENUE GALLIENI - 93010", "stop_name": "AVENUE DE ROSNY"}, "geometry": {"type": "Point", "coordinates": [2.4716730867766277, 48.90450010869527]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dfa3d90b01a9d8956206649e4ae6eb4dfde1f272", "fields": {"departement": "93", "stop_lat": 48.90653371180456, "code_postal": "93008", "stop_lon": 2.4610444314823243, "coord": [48.90653371180456, 2.4610444314823243], "stop_id": 5747186, "stop_desc": "AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "AUGUSTE DELAUNE"}, "geometry": {"type": "Point", "coordinates": [2.4610444314823243, 48.90653371180456]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b8fbea25a8ee8f8e598f610a9bf3066ac3610e55", "fields": {"departement": "93", "stop_lat": 48.912756874368, "code_postal": "93008", "stop_lon": 2.437525501906735, "coord": [48.912756874368, 2.437525501906735], "stop_id": 5747194, "stop_desc": "AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "ESCADRILLE NORMANDIE NIEMEN - PAUL VAILLANT-COUTURIER-TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.437525501906735, 48.912756874368]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "62cdfdc3d975ea1e78c6c3949bc32ed0c7ddf60c", "fields": {"departement": "93", "stop_lat": 48.912228084056785, "code_postal": "93008", "stop_lon": 2.435792866942983, "coord": [48.912228084056785, 2.435792866942983], "stop_id": 5747197, "stop_desc": "230 AVENUE HENRI BARBUSSE - 93008", "stop_name": "ESCADRILLE NORMANDIE NIEMEN - JEAN JAURES-TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.435792866942983, 48.912228084056785]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dfe648077cd4e54a113107fe88536470485c59c0", "fields": {"departement": "93", "stop_lat": 48.91035297644203, "code_postal": "93008", "stop_lon": 2.4318626387990308, "coord": [48.91035297644203, 2.4318626387990308], "stop_id": 5747199, "stop_desc": "FACE 161 AVENUE HENRI BARBUSSE - 93008", "stop_name": "GARE - GRANDE CEINTURE"}, "geometry": {"type": "Point", "coordinates": [2.4318626387990308, 48.91035297644203]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9bf71aeaf90d637e6001330ff37ae48850373797", "fields": {"departement": "93", "stop_lat": 48.90870213196723, "code_postal": "93008", "stop_lon": 2.4283012006647344, "coord": [48.90870213196723, 2.4283012006647344], "stop_id": 5747201, "stop_desc": "AVENUE HENRI BARBUSSE - 93008", "stop_name": "LYCEE ALFRED COSTES"}, "geometry": {"type": "Point", "coordinates": [2.4283012006647344, 48.90870213196723]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "07dd722f8c147f1d80f76ed41e3934f6ed7afb29", "fields": {"departement": "93", "stop_lat": 48.906404975054635, "code_postal": "93008", "stop_lon": 2.423552809864812, "coord": [48.906404975054635, 2.423552809864812], "stop_id": 5747203, "stop_desc": "AVENUE HENRI BARBUSSE - 93008", "stop_name": "HENRI GAUTIER"}, "geometry": {"type": "Point", "coordinates": [2.423552809864812, 48.906404975054635]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a815f6c8c47c4745afa5852c5a46580e6acd0835", "fields": {"departement": "93", "stop_lat": 48.898166318336614, "code_postal": "93055", "stop_lon": 2.4058460102302743, "coord": [48.898166318336614, 2.4058460102302743], "stop_id": 5747209, "stop_desc": "AVENUE DU GENERAL LECLERC - 93055", "stop_name": "DELIZY"}, "geometry": {"type": "Point", "coordinates": [2.4058460102302743, 48.898166318336614]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2f2aba72bf616125194b7e98a25034aa43c2f1a8", "fields": {"departement": "93", "stop_lat": 48.896658925161226, "code_postal": "93055", "stop_lon": 2.4014549509994745, "coord": [48.896658925161226, 2.4014549509994745], "stop_id": 5747211, "stop_desc": "FACE 80 AVENUE DU GENERAL LECLERC - 93055", "stop_name": "PANTIN RER - MAIRIE"}, "geometry": {"type": "Point", "coordinates": [2.4014549509994745, 48.896658925161226]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7afeb06e4ef809e467aefb33ae6db53a344e92f9", "fields": {"departement": "75", "stop_lat": 48.87619243475698, "code_postal": "75110", "stop_lon": 2.3586326958393027, "coord": [48.87619243475698, 2.3586326958393027], "stop_id": 5747231, "stop_desc": "FACE 7 RUE DU 8 MAI 1945 - 75110", "stop_name": "GARE DE L'EST"}, "geometry": {"type": "Point", "coordinates": [2.3586326958393027, 48.87619243475698]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "37ef2b0d8cfa063994186c2bb350ed93a176bf71", "fields": {"departement": "93", "stop_lat": 48.90687831499502, "code_postal": "93008", "stop_lon": 2.448802522093501, "coord": [48.90687831499502, 2.448802522093501], "stop_id": 5747235, "stop_desc": "PISTE GARE ROUTIERE - 93008", "stop_name": "BOBIGNY - PABLO PICASSO"}, "geometry": {"type": "Point", "coordinates": [2.448802522093501, 48.90687831499502]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5c4682ac0507e9bcd77c45aea81c5e85edf0dc47", "fields": {"departement": "92", "stop_lat": 48.78614112380999, "code_postal": "92032", "stop_lon": 2.298544458337044, "coord": [48.78614112380999, 2.298544458337044], "stop_id": 5747243, "stop_desc": "7 RUE PAUL VERLAINE - 92032", "stop_name": "MAISON DE QUARTIER"}, "geometry": {"type": "Point", "coordinates": [2.298544458337044, 48.78614112380999]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7859079f20647ac6a9f73a46bfa83ca33a533717", "fields": {"departement": "95", "stop_lat": 48.95319255914466, "code_postal": "95018", "stop_lon": 2.2212677638312486, "coord": [48.95319255914466, 2.2212677638312486], "stop_id": 5747249, "stop_desc": "ALLEE GUY DE MAUPASSANT - 95018", "stop_name": "BERIONNE"}, "geometry": {"type": "Point", "coordinates": [2.2212677638312486, 48.95319255914466]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5a3ca7bf2f005e130cf706e1b93317da7243e287", "fields": {"departement": "95", "stop_lat": 48.950765669774874, "code_postal": "95018", "stop_lon": 2.2303879872839434, "coord": [48.950765669774874, 2.2303879872839434], "stop_id": 5747253, "stop_desc": "RUE JEAN LURCAT - 95018", "stop_name": "GARE DU VAL D'ARGENTEUIL"}, "geometry": {"type": "Point", "coordinates": [2.2303879872839434, 48.950765669774874]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3aeab6dedca0ed0b82fc180106eb28022f182adf", "fields": {"departement": "95", "stop_lat": 48.945745321750415, "code_postal": "95018", "stop_lon": 2.2340821126286916, "coord": [48.945745321750415, 2.2340821126286916], "stop_id": 5747256, "stop_desc": "17 BOULEVARD DU GENERAL LECLERC - 95018", "stop_name": "BRETAGNE"}, "geometry": {"type": "Point", "coordinates": [2.2340821126286916, 48.945745321750415]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "654eea22219d746f1fcb64f38e9e56f552707253", "fields": {"departement": "95", "stop_lat": 48.94688061086869, "code_postal": "95018", "stop_lon": 2.2375590350859818, "coord": [48.94688061086869, 2.2375590350859818], "stop_id": 5747259, "stop_desc": "BOULEVARD DU GENERAL LECLERC - 95018", "stop_name": "CHARCOT HOPITAL"}, "geometry": {"type": "Point", "coordinates": [2.2375590350859818, 48.94688061086869]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2612867fc83054712ffb09fcb6645c8c772a289f", "fields": {"departement": "95", "stop_lat": 48.947622496227496, "code_postal": "95018", "stop_lon": 2.24369743207749, "coord": [48.947622496227496, 2.24369743207749], "stop_id": 5747262, "stop_desc": "85 RUE ANTONIN GEORGES BELIN - 95018", "stop_name": "RECHSTEINER"}, "geometry": {"type": "Point", "coordinates": [2.24369743207749, 48.947622496227496]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2bb386f9c757ebcd7b035218c4caf4f4375eacd5", "fields": {"departement": "95", "stop_lat": 48.94772143600891, "code_postal": "95018", "stop_lon": 2.2438064059347043, "coord": [48.94772143600891, 2.2438064059347043], "stop_id": 5747263, "stop_desc": "FACE 83 RUE ANTONIN GEORGES BELIN - 95018", "stop_name": "RECHSTEINER"}, "geometry": {"type": "Point", "coordinates": [2.2438064059347043, 48.94772143600891]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e026ed7727c5153ab93223255fe249a04abac270", "fields": {"departement": "92", "stop_lat": 48.93449739935261, "code_postal": "92025", "stop_lon": 2.263077151509599, "coord": [48.93449739935261, 2.263077151509599], "stop_id": 5747276, "stop_desc": "FACE 205 AVENUE DE STALINGRAD - 92025", "stop_name": "PONT DU CHEMIN DE FER"}, "geometry": {"type": "Point", "coordinates": [2.263077151509599, 48.93449739935261]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "97b90117598809a737eb3e2bf52af3bcbdf2d78e", "fields": {"departement": "92", "stop_lat": 48.920135215528944, "code_postal": "92009", "stop_lon": 2.2770890872485854, "coord": [48.920135215528944, 2.2770890872485854], "stop_id": 5747283, "stop_desc": "89 AVENUE CHARLES DE GAULLE - 92009", "stop_name": "ABBE GLATZ"}, "geometry": {"type": "Point", "coordinates": [2.2770890872485854, 48.920135215528944]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f322aeffd67c278fc3548490a043ef0823671764", "fields": {"departement": "92", "stop_lat": 48.909356955092186, "code_postal": "92004", "stop_lon": 2.271702550204557, "coord": [48.909356955092186, 2.271702550204557], "stop_id": 5747287, "stop_desc": "AVENUE FAIDHERBE - 92004", "stop_name": "CHANZY"}, "geometry": {"type": "Point", "coordinates": [2.271702550204557, 48.909356955092186]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6771e84bd3b18411a06a4c8617c026642110f56e", "fields": {"departement": "92", "stop_lat": 48.908456845173376, "code_postal": "92004", "stop_lon": 2.269195081354599, "coord": [48.908456845173376, 2.269195081354599], "stop_id": 5747289, "stop_desc": "46 AVENUE FAIDHERBE - 92004", "stop_name": "BALZAC"}, "geometry": {"type": "Point", "coordinates": [2.269195081354599, 48.908456845173376]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6334b2ecf165b5b6fe1ef49b500c9fa43154dbfe", "fields": {"departement": "92", "stop_lat": 48.906980990690805, "code_postal": "92009", "stop_lon": 2.2658159493248515, "coord": [48.906980990690805, 2.2658159493248515], "stop_id": 5747290, "stop_desc": "6 RUE DE BOIS-COLOMBES - 92009", "stop_name": "CHEVREUL"}, "geometry": {"type": "Point", "coordinates": [2.2658159493248515, 48.906980990690805]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dfc0c28da4372a69a99220d749320514b74c4f9a", "fields": {"departement": "92", "stop_lat": 48.90233974527351, "code_postal": "92026", "stop_lon": 2.2748604488756095, "coord": [48.90233974527351, 2.2748604488756095], "stop_id": 5747293, "stop_desc": "FACE 4 AVENUE DU 11 NOVEMBRE - 92026", "stop_name": "PLACE MERMOZ"}, "geometry": {"type": "Point", "coordinates": [2.2748604488756095, 48.90233974527351]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "44f54bd68aa0b9689623e469c11ab5443c039d6e", "fields": {"departement": "75", "stop_lat": 48.87900638175775, "code_postal": "75108", "stop_lon": 2.32189819428377, "coord": [48.87900638175775, 2.32189819428377], "stop_id": 5747302, "stop_desc": "53 RUE DE ROME - 75108", "stop_name": "EUROPE"}, "geometry": {"type": "Point", "coordinates": [2.32189819428377, 48.87900638175775]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "588643b786b8fb3353e92552af80f33e59d239d3", "fields": {"departement": "75", "stop_lat": 48.8789345252965, "code_postal": "75108", "stop_lon": 2.3222252388140916, "coord": [48.8789345252965, 2.3222252388140916], "stop_id": 5747303, "stop_desc": "52 RUE DE ROME - 75108", "stop_name": "EUROPE"}, "geometry": {"type": "Point", "coordinates": [2.3222252388140916, 48.8789345252965]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7c40f228bf2b1a68dcf861f739b6a0a48c776642", "fields": {"departement": "75", "stop_lat": 48.87576218699689, "code_postal": "75108", "stop_lon": 2.3236567975351456, "coord": [48.87576218699689, 2.3236567975351456], "stop_id": 5747304, "stop_desc": "17 RUE DE ROME - 75108", "stop_name": "GARE SAINT-LAZARE"}, "geometry": {"type": "Point", "coordinates": [2.3236567975351456, 48.87576218699689]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "85c660461833d7986eca8d5e0dba5f21106656de", "fields": {"departement": "92", "stop_lat": 48.916702465399936, "code_postal": "92004", "stop_lon": 2.2776385104689867, "coord": [48.916702465399936, 2.2776385104689867], "stop_id": 5747314, "stop_desc": "132-134 RUE DES BOURGUIGNONS - 92004", "stop_name": "CAYRON - CHEFSON"}, "geometry": {"type": "Point", "coordinates": [2.2776385104689867, 48.916702465399936]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "35619b2e4245acdd96d45874c76376fc3abe0c63", "fields": {"departement": "92", "stop_lat": 48.92095388981479, "code_postal": "92004", "stop_lon": 2.2788200385932735, "coord": [48.92095388981479, 2.2788200385932735], "stop_id": 5747316, "stop_desc": "218 AVENUE D'ARGENTEUIL - 92004", "stop_name": "JAURES"}, "geometry": {"type": "Point", "coordinates": [2.2788200385932735, 48.92095388981479]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6a50e9816f6229e1c23b9c2f930cb09b44bc85a3", "fields": {"departement": "95", "stop_lat": 48.94735924606738, "code_postal": "95018", "stop_lon": 2.240396062868675, "coord": [48.94735924606738, 2.240396062868675], "stop_id": 5747329, "stop_desc": "7 BIS BOULEVARD DU GENERAL LECLERC - 95018", "stop_name": "ERNESTINE"}, "geometry": {"type": "Point", "coordinates": [2.240396062868675, 48.94735924606738]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9428567835807fbe5ecb5db8967f8def1f8bd614", "fields": {"departement": "95", "stop_lat": 48.94648398906052, "code_postal": "95018", "stop_lon": 2.2473560161311945, "coord": [48.94648398906052, 2.2473560161311945], "stop_id": 5747331, "stop_desc": "43 RUE ANTONIN GEORGES BELIN - 95018", "stop_name": "BELIN"}, "geometry": {"type": "Point", "coordinates": [2.2473560161311945, 48.94648398906052]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e16552697a0b7cc0f3284ad1daab996aa7012cba", "fields": {"departement": "92", "stop_lat": 48.92911734127539, "code_postal": "92025", "stop_lon": 2.2682131879709906, "coord": [48.92911734127539, 2.2682131879709906], "stop_id": 5747339, "stop_desc": "67 AVENUE DE STALINGRAD - 92025", "stop_name": "LES CHAMPARONS"}, "geometry": {"type": "Point", "coordinates": [2.2682131879709906, 48.92911734127539]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cd7fab809921a6b370b9f1b8784036dda053a892", "fields": {"departement": "92", "stop_lat": 48.923333845498576, "code_postal": "92009", "stop_lon": 2.275667055854338, "coord": [48.923333845498576, 2.275667055854338], "stop_id": 5747341, "stop_desc": "299 AVENUE D'ARGENTEUIL - 92009", "stop_name": "GRAMME"}, "geometry": {"type": "Point", "coordinates": [2.275667055854338, 48.923333845498576]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fd9d0364715b603ff55ebbe8da7545e13e5f6365", "fields": {"departement": "92", "stop_lat": 48.91664590727471, "code_postal": "92009", "stop_lon": 2.2725796596115986, "coord": [48.91664590727471, 2.2725796596115986], "stop_id": 5747343, "stop_desc": "FACE 42 RUE D'ESTIENNE D'ORVES - 92009", "stop_name": "LA PAIX"}, "geometry": {"type": "Point", "coordinates": [2.2725796596115986, 48.91664590727471]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9e9266df84fa450a6cd11502f5c4bf0c9bb4ed28", "fields": {"departement": "92", "stop_lat": 48.909419676509756, "code_postal": "92004", "stop_lon": 2.2713616210811174, "coord": [48.909419676509756, 2.2713616210811174], "stop_id": 5747345, "stop_desc": "81 AVENUE FAIDHERBE - 92004", "stop_name": "CHANZY"}, "geometry": {"type": "Point", "coordinates": [2.2713616210811174, 48.909419676509756]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "086663034403fbbd48d686a4fd5ae285af23e462", "fields": {"departement": "92", "stop_lat": 48.8972915994998, "code_postal": "92044", "stop_lon": 2.2800734920307866, "coord": [48.8972915994998, 2.2800734920307866], "stop_id": 5747350, "stop_desc": "RUE ANATOLE FRANCE - 92044", "stop_name": "PONT DE LEVALLOIS - BECON"}, "geometry": {"type": "Point", "coordinates": [2.2800734920307866, 48.8972915994998]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4f30b681c45505d0273a419c1c24ea7a2ded1f4b", "fields": {"departement": "93", "stop_lat": 48.90288215462784, "code_postal": "93001", "stop_lon": 2.368731585129236, "coord": [48.90288215462784, 2.368731585129236], "stop_id": 5761278, "stop_desc": "FACE 287 AVENUE DES MAGASINS GENERAUX - 93001", "stop_name": "MAGASINS GENERAUX"}, "geometry": {"type": "Point", "coordinates": [2.368731585129236, 48.90288215462784]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "11f64505a672ae9fd5ed8e4b841c7ceab6d3f38f", "fields": {"departement": "93", "stop_lat": 48.90597438903976, "code_postal": "93001", "stop_lon": 2.3660477469171965, "coord": [48.90597438903976, 2.3660477469171965], "stop_id": 5761282, "stop_desc": "FACE 122 RUE NUMERO 15 - 93001", "stop_name": "GARDINOUX"}, "geometry": {"type": "Point", "coordinates": [2.3660477469171965, 48.90597438903976]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d3ffe3703697ab19c66eb03ef2c2e7e3fac5e020", "fields": {"departement": "93", "stop_lat": 48.908967302705726, "code_postal": "93066", "stop_lon": 2.3651086733932645, "coord": [48.908967302705726, 2.3651086733932645], "stop_id": 5761284, "stop_desc": "R DE LA METALLURGIE - 93066", "stop_name": "METALLURGIE"}, "geometry": {"type": "Point", "coordinates": [2.3651086733932645, 48.908967302705726]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e77bbf6d9bcfb94901121dc5ea2945f2b1f581c7", "fields": {"departement": "93", "stop_lat": 48.910899315692575, "code_postal": "93001", "stop_lon": 2.365955043487776, "coord": [48.910899315692575, 2.365955043487776], "stop_id": 5761286, "stop_desc": "RUE DES FILLETTES - 93001", "stop_name": "LA MONTJOIE - GERMAINE TILLION"}, "geometry": {"type": "Point", "coordinates": [2.365955043487776, 48.910899315692575]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a6553eab5a912af0010a9d6d47d0514c984facd9", "fields": {"departement": "93", "stop_lat": 48.915473745634934, "code_postal": "93066", "stop_lon": 2.365793950971609, "coord": [48.915473745634934, 2.365793950971609], "stop_id": 5761288, "stop_desc": "6 RUE DU LANDY - 93066", "stop_name": "MURGER"}, "geometry": {"type": "Point", "coordinates": [2.365793950971609, 48.915473745634934]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bb942ccf973b8c2dba254fc84783dca02fc27db5", "fields": {"departement": "93", "stop_lat": 48.91835942402279, "code_postal": "93066", "stop_lon": 2.361963729420021, "coord": [48.91835942402279, 2.361963729420021], "stop_id": 5761290, "stop_desc": "AVENUE DU STADE DE FRANCE - 93066", "stop_name": "LA PLAINE - STADE DE FRANCE RER"}, "geometry": {"type": "Point", "coordinates": [2.361963729420021, 48.91835942402279]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dc2bd06a4132406fcf74c10f6ac74e84a858a2bc", "fields": {"departement": "93", "stop_lat": 48.92619611781577, "code_postal": "93066", "stop_lon": 2.3615992314179888, "coord": [48.92619611781577, 2.3615992314179888], "stop_id": 5761296, "stop_desc": "RUE HENRI DELAUNAY - 93066", "stop_name": "DELAUNAY - RIMET"}, "geometry": {"type": "Point", "coordinates": [2.3615992314179888, 48.92619611781577]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8d92281a2468fab94cd897027166028cc19b29ac", "fields": {"departement": "93", "stop_lat": 48.93613648458029, "code_postal": "93066", "stop_lon": 2.35684318859828, "coord": [48.93613648458029, 2.35684318859828], "stop_id": 5761306, "stop_desc": "12 RUE DE LA REPUBLIQUE - 93066", "stop_name": "MARCHE - REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.35684318859828, 48.93613648458029]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e625c7736ce1271c868a78889c7968697179e361", "fields": {"departement": "93", "stop_lat": 48.93278467741047, "code_postal": "93066", "stop_lon": 2.3549868619249192, "coord": [48.93278467741047, 2.3549868619249192], "stop_id": 5761308, "stop_desc": "FACE 26 PLACE DE RESISTANCE - 93066", "stop_name": "PLACE DE LA RESISTANCE"}, "geometry": {"type": "Point", "coordinates": [2.3549868619249192, 48.93278467741047]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f5e019d3679acbbbc3e163c153c570c3f768e1c8", "fields": {"departement": "93", "stop_lat": 48.90658593057732, "code_postal": "93066", "stop_lon": 2.364248498940453, "coord": [48.90658593057732, 2.364248498940453], "stop_id": 5761311, "stop_desc": "AVENUE GEORGE SAND - 93066", "stop_name": "FRONT POPULAIRE-PROUDHON"}, "geometry": {"type": "Point", "coordinates": [2.364248498940453, 48.90658593057732]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2b1e8f07c296138381334d6b8beb5c4d96716db4", "fields": {"departement": "92", "stop_lat": 48.82735393112749, "code_postal": "92077", "stop_lon": 2.1889336147968588, "coord": [48.82735393112749, 2.1889336147968588], "stop_id": 5761322, "stop_desc": "RUE DE SAINT-CLOUD - 92077", "stop_name": "EGLISE DE VILLE D'AVRAY"}, "geometry": {"type": "Point", "coordinates": [2.1889336147968588, 48.82735393112749]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a45d4d250aa9b83e22a8d8df226b564d94b5afd0", "fields": {"departement": "75", "stop_lat": 48.87364029795952, "code_postal": "75116", "stop_lon": 2.2546624813667333, "coord": [48.87364029795952, 2.2546624813667333], "stop_id": 5761331, "stop_desc": "ALLEE DE LA REINE MARGUERITE - 75116", "stop_name": "PORTE DE MADRID"}, "geometry": {"type": "Point", "coordinates": [2.2546624813667333, 48.87364029795952]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "262a86ae4d960de0aad250db9a09e9853c8e9382", "fields": {"departement": "75", "stop_lat": 48.86514013802421, "code_postal": "75116", "stop_lon": 2.234010910145625, "coord": [48.86514013802421, 2.234010910145625], "stop_id": 5761338, "stop_desc": "ROUTE DE SURESNES - 75116", "stop_name": "LES MOULINS - CAMPING"}, "geometry": {"type": "Point", "coordinates": [2.234010910145625, 48.86514013802421]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bf03eb68e89e2e8da00ae88d842785e9470e8f94", "fields": {"departement": "92", "stop_lat": 48.867290753577876, "code_postal": "92073", "stop_lon": 2.2269227092177055, "coord": [48.867290753577876, 2.2269227092177055], "stop_id": 5761340, "stop_desc": "BOULEVARD HENRI SELLIER - 92073", "stop_name": "RUE DES BOURETS - PONT DE SURESNES"}, "geometry": {"type": "Point", "coordinates": [2.2269227092177055, 48.867290753577876]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8341437e09131c9eb825c6aa310d0242d6dc37f6", "fields": {"departement": "92", "stop_lat": 48.86805906191408, "code_postal": "92073", "stop_lon": 2.222057619036776, "coord": [48.86805906191408, 2.222057619036776], "stop_id": 5761343, "stop_desc": "FACE 49 BOULEVARD HENRI SELLIER - 92073", "stop_name": "LONGCHAMP"}, "geometry": {"type": "Point", "coordinates": [2.222057619036776, 48.86805906191408]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1f9cfbefec1721d7bff75f856d67e9adae7d4b1e", "fields": {"departement": "92", "stop_lat": 48.86006972889107, "code_postal": "92073", "stop_lon": 2.213548602298387, "coord": [48.86006972889107, 2.213548602298387], "stop_id": 5761347, "stop_desc": "20 BOULEVARD LOUIS LOUCHEUR - 92073", "stop_name": "VAL D'OR"}, "geometry": {"type": "Point", "coordinates": [2.213548602298387, 48.86006972889107]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "868fcdbdcf97fed9aa27ca1f8e3b4e6522f73e4b", "fields": {"departement": "92", "stop_lat": 48.85982860172332, "code_postal": "92073", "stop_lon": 2.215033862640823, "coord": [48.85982860172332, 2.215033862640823], "stop_id": 5761348, "stop_desc": "171 BOULEVARD HENRI SELLIER - 92073", "stop_name": "VAL D'OR"}, "geometry": {"type": "Point", "coordinates": [2.215033862640823, 48.85982860172332]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c63acf79ecb1c188cc1fc9c243bcff738ecdb6dd", "fields": {"departement": "92", "stop_lat": 48.87935136602782, "code_postal": "92063", "stop_lon": 2.1856917243126706, "coord": [48.87935136602782, 2.1856917243126706], "stop_id": 5761367, "stop_desc": "22 BIS BOULEVARD DE L'HOPITAL STELL - 92063", "stop_name": "LE GUE"}, "geometry": {"type": "Point", "coordinates": [2.1856917243126706, 48.87935136602782]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e1e26e4dd230cca8a655e28b4651a19bc5b2b5b7", "fields": {"departement": "92", "stop_lat": 48.88037172553721, "code_postal": "92063", "stop_lon": 2.1824320382519415, "coord": [48.88037172553721, 2.1824320382519415], "stop_id": 5761369, "stop_desc": "81 AVENUE PAUL DOUMER - 92063", "stop_name": "RUEIL - VILLE"}, "geometry": {"type": "Point", "coordinates": [2.1824320382519415, 48.88037172553721]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a83d122a0d7daf2f39060592cc2976be2da818d8", "fields": {"departement": "92", "stop_lat": 48.88720741536253, "code_postal": "92063", "stop_lon": 2.173021810486152, "coord": [48.88720741536253, 2.173021810486152], "stop_id": 5761373, "stop_desc": "PISTE GARE ROUTIERE - 92063", "stop_name": "RUEIL-MALMAISON RER"}, "geometry": {"type": "Point", "coordinates": [2.173021810486152, 48.88720741536253]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "028c682afe88c49da17270baf098d541434eefc2", "fields": {"departement": "92", "stop_lat": 48.887055008410314, "code_postal": "92063", "stop_lon": 2.1732948560407204, "coord": [48.887055008410314, 2.1732948560407204], "stop_id": 5761374, "stop_desc": "PISTE GARE ROUTIERE - 92063", "stop_name": "RUEIL-MALMAISON RER"}, "geometry": {"type": "Point", "coordinates": [2.1732948560407204, 48.887055008410314]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "336c206dfafa88f42bbe40e562984f1d0c929077", "fields": {"departement": "93", "stop_lat": 48.91107308645593, "code_postal": "93001", "stop_lon": 2.384661567776284, "coord": [48.91107308645593, 2.384661567776284], "stop_id": 5761412, "stop_desc": "FACE 39 AVENUE DE LA REPUBLIQUE - 93001", "stop_name": "ANDRE KARMAN"}, "geometry": {"type": "Point", "coordinates": [2.384661567776284, 48.91107308645593]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c9f9effaba34630cbefdf34820d99fd749a6e5ab", "fields": {"departement": "93", "stop_lat": 48.90933199092265, "code_postal": "93001", "stop_lon": 2.3782111091054023, "coord": [48.90933199092265, 2.3782111091054023], "stop_id": 5761415, "stop_desc": "129 BIS AVENUE VICTOR HUGO - 93001", "stop_name": "FELIX FAURE - VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.3782111091054023, 48.90933199092265]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "739275250dc8daf0d0215998c824169d1bd5063b", "fields": {"departement": "93", "stop_lat": 48.909493616493236, "code_postal": "93001", "stop_lon": 2.378620257097494, "coord": [48.909493616493236, 2.378620257097494], "stop_id": 5761416, "stop_desc": "100 AVENUE VICTOR HUGO - 93001", "stop_name": "FELIX FAURE - VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.378620257097494, 48.909493616493236]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0227dc854803cc8d7876b0101a76e38d44722c5b", "fields": {"departement": "93", "stop_lat": 48.904166194640815, "code_postal": "93001", "stop_lon": 2.372699453216886, "coord": [48.904166194640815, 2.372699453216886], "stop_id": 5761419, "stop_desc": "57 AVENUE VICTOR HUGO - 93001", "stop_name": "LA HAIE COQ"}, "geometry": {"type": "Point", "coordinates": [2.372699453216886, 48.904166194640815]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a6f91919aca4b169b6b34f79c2255c141a7e3cbf", "fields": {"departement": "75", "stop_lat": 48.898001763801254, "code_postal": "75118", "stop_lon": 2.3701735048124477, "coord": [48.898001763801254, 2.3701735048124477], "stop_id": 5761423, "stop_desc": "215 RUE D'AUBERVILLIERS - 75118", "stop_name": "PORTE D'AUBERVILLIERS - MACDONALD"}, "geometry": {"type": "Point", "coordinates": [2.3701735048124477, 48.898001763801254]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b55629383543f87964130cf65c32777abfab5cda", "fields": {"departement": "75", "stop_lat": 48.89553921270323, "code_postal": "75118", "stop_lon": 2.3704445472353575, "coord": [48.89553921270323, 2.3704445472353575], "stop_id": 5761424, "stop_desc": "73 RUE DE L'EVANGILE - 75118", "stop_name": "EVANGILE - AUBERVILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.3704445472353575, 48.89553921270323]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "af69a184220be2a89830c3c0bdba4f5301d20674", "fields": {"departement": "75", "stop_lat": 48.89540442067393, "code_postal": "75118", "stop_lon": 2.370389939706687, "coord": [48.89540442067393, 2.370389939706687], "stop_id": 5761425, "stop_desc": "RUE DE L'EVANGILE - 75118", "stop_name": "EVANGILE - AUBERVILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.370389939706687, 48.89540442067393]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6962b552ae92fc1f5f0a5775fa80140dfe0a82b1", "fields": {"departement": "75", "stop_lat": 48.894309094505694, "code_postal": "75118", "stop_lon": 2.3661366756905475, "coord": [48.894309094505694, 2.3661366756905475], "stop_id": 5761427, "stop_desc": "FACE 41 RUE DE L'EVANGILE - 75118", "stop_name": "TRISTAN TZARA"}, "geometry": {"type": "Point", "coordinates": [2.3661366756905475, 48.894309094505694]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "054c81e096b0756b9bcf7f7c3b1d8b2893f90ec4", "fields": {"departement": "75", "stop_lat": 48.89291675271591, "code_postal": "75118", "stop_lon": 2.3632327852679813, "coord": [48.89291675271591, 2.3632327852679813], "stop_id": 5761429, "stop_desc": "FACE 25 RUE DE L'EVANGILE - 75118", "stop_name": "PLACE HEBERT"}, "geometry": {"type": "Point", "coordinates": [2.3632327852679813, 48.89291675271591]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "547756253537c7d5ec6e507970557e61da02c0f9", "fields": {"departement": "75", "stop_lat": 48.88506276042979, "code_postal": "75118", "stop_lon": 2.3591678300283867, "coord": [48.88506276042979, 2.3591678300283867], "stop_id": 5761436, "stop_desc": "5 RUE MARX DORMOY - 75118", "stop_name": "PLACE DE LA CHAPELLE"}, "geometry": {"type": "Point", "coordinates": [2.3591678300283867, 48.88506276042979]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "77e4662940bb753c6c4570c9c335468e86a5375a", "fields": {"departement": "75", "stop_lat": 48.88269019810708, "code_postal": "75110", "stop_lon": 2.3587988991979594, "coord": [48.88269019810708, 2.3587988991979594], "stop_id": 5761437, "stop_desc": "197 RUE DU FAUBOURG SAINT-DENIS - 75110", "stop_name": "CAIL - DEMARQUAY"}, "geometry": {"type": "Point", "coordinates": [2.3587988991979594, 48.88269019810708]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5917c3bb787a1f3f97a77d55cb6d324e5158eed9", "fields": {"departement": "75", "stop_lat": 48.89352520943504, "code_postal": "75119", "stop_lon": 2.373469074306127, "coord": [48.89352520943504, 2.373469074306127], "stop_id": 5761965, "stop_desc": "237 RUE DE CRIMEE - 75119", "stop_name": "CRIMEE - CURIAL"}, "geometry": {"type": "Point", "coordinates": [2.373469074306127, 48.89352520943504]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ded4974622fbf5e45ab2e2458e20c28bcc036765", "fields": {"departement": "75", "stop_lat": 48.885805906811996, "code_postal": "75119", "stop_lon": 2.3711060756537696, "coord": [48.885805906811996, 2.3711060756537696], "stop_id": 5761973, "stop_desc": "28 AVENUE DE FLANDRE - 75119", "stop_name": "MAROC - FLANDRE"}, "geometry": {"type": "Point", "coordinates": [2.3711060756537696, 48.885805906811996]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fb6c2475d1f467141c68a303994f79f8611ee532", "fields": {"departement": "75", "stop_lat": 48.879508798192596, "code_postal": "75110", "stop_lon": 2.3583070366526497, "coord": [48.879508798192596, 2.3583070366526497], "stop_id": 5761982, "stop_desc": "FACE 171 RUE LA FAYETTE - 75110", "stop_name": "LA FAYETTE - DUNKERQUE"}, "geometry": {"type": "Point", "coordinates": [2.3583070366526497, 48.879508798192596]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fffafdc93b62d03f4326a53451d906325afc2f2c", "fields": {"departement": "75", "stop_lat": 48.8834647199869, "code_postal": "75118", "stop_lon": 2.3460987084741514, "coord": [48.8834647199869, 2.3460987084741514], "stop_id": 5761987, "stop_desc": "44-46 BOULEVARD DE ROCHECHOUART - 75118", "stop_name": "ROCHECHOUART - CLIGNANCOURT"}, "geometry": {"type": "Point", "coordinates": [2.3460987084741514, 48.8834647199869]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b2bdd70db9e9748af5e24c1aa93216ecf32bde5c", "fields": {"departement": "75", "stop_lat": 48.882296669602475, "code_postal": "75118", "stop_lon": 2.3402389627194693, "coord": [48.882296669602475, 2.3402389627194693], "stop_id": 5761989, "stop_desc": "112 BOULEVARD DE ROCHECHOUART - 75118", "stop_name": "ROCHECHOUART - MARTYRS"}, "geometry": {"type": "Point", "coordinates": [2.3402389627194693, 48.882296669602475]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a3a4217e70cc7085419ae3bcc87f05995b11158e", "fields": {"departement": "75", "stop_lat": 48.885324939226564, "code_postal": "75118", "stop_lon": 2.3267205100468256, "coord": [48.885324939226564, 2.3267205100468256], "stop_id": 5761993, "stop_desc": "26-28 AVENUE DE CLICHY - 75118", "stop_name": "GANNERON"}, "geometry": {"type": "Point", "coordinates": [2.3267205100468256, 48.885324939226564]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7063a33ebfd6f6d2dd10c952f57a920dde61981b", "fields": {"departement": "75", "stop_lat": 48.88778725739655, "code_postal": "75117", "stop_lon": 2.3248665614447788, "coord": [48.88778725739655, 2.3248665614447788], "stop_id": 5761996, "stop_desc": "69-71 AVENUE DE CLICHY - 75117", "stop_name": "LA FOURCHE"}, "geometry": {"type": "Point", "coordinates": [2.3248665614447788, 48.88778725739655]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "386690085cb86dc445e8608b9e0fbcd180a72590", "fields": {"departement": "75", "stop_lat": 48.89185755313465, "code_postal": "75117", "stop_lon": 2.3180645348981526, "coord": [48.89185755313465, 2.3180645348981526], "stop_id": 5762000, "stop_desc": "168 AVENUE DE CLICHY - 75117", "stop_name": "BROCHANT - CARDINET"}, "geometry": {"type": "Point", "coordinates": [2.3180645348981526, 48.89185755313465]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c1e0df9ac33f7914a803e87a8c5c3fd2e2fffbea", "fields": {"departement": "75", "stop_lat": 48.89495721386351, "code_postal": "75117", "stop_lon": 2.313061110532158, "coord": [48.89495721386351, 2.313061110532158], "stop_id": 5762004, "stop_desc": "AVENUE DE LA PORTE DE CLICHY - 75117", "stop_name": "PORTE DE CLICHY"}, "geometry": {"type": "Point", "coordinates": [2.313061110532158, 48.89495721386351]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a67ce5f4677f8612d9373c1845ea94a944532761", "fields": {"departement": "92", "stop_lat": 48.90449961551857, "code_postal": "92024", "stop_lon": 2.304972468676297, "coord": [48.90449961551857, 2.304972468676297], "stop_id": 5762010, "stop_desc": "102 BIS RUE MARTRE - 92024", "stop_name": "LANDY - MARTRE"}, "geometry": {"type": "Point", "coordinates": [2.304972468676297, 48.90449961551857]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4dabf9369449ba57b5ab81d9dffbb3f798768e2f", "fields": {"departement": "92", "stop_lat": 48.90479539967374, "code_postal": "92024", "stop_lon": 2.302177566473815, "coord": [48.90479539967374, 2.302177566473815], "stop_id": 5762017, "stop_desc": "FACE 104 BOULEVARD JEAN JAURES - 92024", "stop_name": "DANIELLE CASANOVA"}, "geometry": {"type": "Point", "coordinates": [2.302177566473815, 48.90479539967374]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e9efd8b90dfcef21c21232c7adb6d5e704b0a12f", "fields": {"departement": "92", "stop_lat": 48.90075212578295, "code_postal": "92024", "stop_lon": 2.3054519129764897, "coord": [48.90075212578295, 2.3054519129764897], "stop_id": 5762018, "stop_desc": "51 BOULEVARD JEAN JAURES - 92024", "stop_name": "JAURES - BARBUSSE"}, "geometry": {"type": "Point", "coordinates": [2.3054519129764897, 48.90075212578295]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bd6c231466cc9ee7b963fa16d4bffe781e90b3bf", "fields": {"departement": "75", "stop_lat": 48.883177013837376, "code_postal": "75109", "stop_lon": 2.3269798610834647, "coord": [48.883177013837376, 2.3269798610834647], "stop_id": 5762020, "stop_desc": "6 PLACE DE CLICHY - 75109", "stop_name": "PLACE DE CLICHY"}, "geometry": {"type": "Point", "coordinates": [2.3269798610834647, 48.883177013837376]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e32f4cab779ace351c6e9de2bb8c18bc4603a521", "fields": {"departement": "75", "stop_lat": 48.88267396530856, "code_postal": "75109", "stop_lon": 2.34425893510232, "coord": [48.88267396530856, 2.34425893510232], "stop_id": 5762024, "stop_desc": "FACE 68 BOULEVARD DE ROCHECHOUART - 75109", "stop_name": "ANVERS - SACRE COEUR"}, "geometry": {"type": "Point", "coordinates": [2.34425893510232, 48.88267396530856]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0f785d1ed56b8338bcf13aa6ed88c3414c058f92", "fields": {"departement": "75", "stop_lat": 48.89782193044455, "code_postal": "75119", "stop_lon": 2.3705005330326747, "coord": [48.89782193044455, 2.3705005330326747], "stop_id": 5762030, "stop_desc": "RUE D'AUBERVILLIERS - 75119", "stop_name": "PORTE D'AUBERVILLIERS - MACDONALD"}, "geometry": {"type": "Point", "coordinates": [2.3705005330326747, 48.89782193044455]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2218f69980c058a1dadbb406cd4084926b5f2e2f", "fields": {"departement": "75", "stop_lat": 48.86549237923351, "code_postal": "75120", "stop_lon": 2.399073303502112, "coord": [48.86549237923351, 2.399073303502112], "stop_id": 5770765, "stop_desc": "46-48 AVENUE GAMBETTA - 75120", "stop_name": "GAMBETTA - MAIRIE DU 20E"}, "geometry": {"type": "Point", "coordinates": [2.399073303502112, 48.86549237923351]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "74476125d717865b83856dc2df616f317a42f627", "fields": {"departement": "75", "stop_lat": 48.873240135148485, "code_postal": "75120", "stop_lon": 2.3977745918629827, "coord": [48.873240135148485, 2.3977745918629827], "stop_id": 5770771, "stop_desc": "129 RUE PELLEPORT - 75120", "stop_name": "BORREGO"}, "geometry": {"type": "Point", "coordinates": [2.3977745918629827, 48.873240135148485]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "64bf842c586a8c1c9aa16ad20e33f2cb47af10c2", "fields": {"departement": "95", "stop_lat": 49.01237299186272, "code_postal": "95527", "stop_lon": 2.5213522952243, "coord": [49.01237299186272, 2.5213522952243], "stop_id": 3678814, "stop_desc": "ROUTE DE L'ARPENTEUR - 95527", "stop_name": "RUE DES 2 SOEURS"}, "geometry": {"type": "Point", "coordinates": [2.5213522952243, 49.01237299186272]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fc4bd665f240a0270ce031fe4e4776ec6510187c", "fields": {"departement": "77", "stop_lat": 48.81676380860216, "code_postal": "77146", "stop_lon": 2.6354836017824104, "coord": [48.81676380860216, 2.6354836017824104], "stop_id": 3681420, "stop_desc": "R AMBROISE CROIZAT - 77146", "stop_name": "AMBROISE CROIZAT"}, "geometry": {"type": "Point", "coordinates": [2.6354836017824104, 48.81676380860216]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4731b972fdb40fa94d024476fc864d0333010a6e", "fields": {"departement": "77", "stop_lat": 48.817439551868524, "code_postal": "77146", "stop_lon": 2.634820598205491, "coord": [48.817439551868524, 2.634820598205491], "stop_id": 3681421, "stop_desc": "R AMBROISE CROIZAT - 77146", "stop_name": "AMBROISE CROIZAT"}, "geometry": {"type": "Point", "coordinates": [2.634820598205491, 48.817439551868524]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "09d0abfaa88e4010f29c7aa7a9242cd9a07a9e7a", "fields": {"departement": "77", "stop_lat": 48.834443749834776, "code_postal": "77468", "stop_lon": 2.659219802649894, "coord": [48.834443749834776, 2.659219802649894], "stop_id": 3681444, "stop_desc": "AV JEAN MOULIN - 77468", "stop_name": "ANNE FRANK"}, "geometry": {"type": "Point", "coordinates": [2.659219802649894, 48.834443749834776]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "58b3dfcd03db7afe0b67ee33ee1e0705e9f6be58", "fields": {"departement": "77", "stop_lat": 48.819035688501295, "code_postal": "77146", "stop_lon": 2.632692925641074, "coord": [48.819035688501295, 2.632692925641074], "stop_id": 3681419, "stop_desc": "BD DE BEAUBOURG - 77146", "stop_name": "LES MINES"}, "geometry": {"type": "Point", "coordinates": [2.632692925641074, 48.819035688501295]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f17f7b260856ee52e2115c9a1b890628b918fb25", "fields": {"departement": "77", "stop_lat": 48.84526195661666, "code_postal": "77468", "stop_lon": 2.653594940647414, "coord": [48.84526195661666, 2.653594940647414], "stop_id": 3681489, "stop_desc": "FACE 28 AVENUE DE LINGENFELD - 77468", "stop_name": "RIVES DE MAUBUEE"}, "geometry": {"type": "Point", "coordinates": [2.653594940647414, 48.84526195661666]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "14d01eec87cdcb6ab60e7b39679625a4ea2adcd6", "fields": {"departement": "77", "stop_lat": 48.84817571549336, "code_postal": "77468", "stop_lon": 2.6562954559929475, "coord": [48.84817571549336, 2.6562954559929475], "stop_id": 3681491, "stop_desc": "AVENUE JACQUES PREVERT - 77468", "stop_name": "RUE DES EPINETTES"}, "geometry": {"type": "Point", "coordinates": [2.6562954559929475, 48.84817571549336]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f0932702b281f17ac39b911aee37e5904a04891b", "fields": {"departement": "77", "stop_lat": 48.85446624161854, "code_postal": "77083", "stop_lon": 2.59747009502811, "coord": [48.85446624161854, 2.59747009502811], "stop_id": 3681502, "stop_desc": "34 AVENUE DE CHELLES - 77083", "stop_name": "POINTE DE CHAMPS"}, "geometry": {"type": "Point", "coordinates": [2.59747009502811, 48.85446624161854]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3b63fa7169cde0b1db8995867319c66ed6b95d5a", "fields": {"departement": "77", "stop_lat": 48.85142395593467, "code_postal": "77468", "stop_lon": 2.6548990747322203, "coord": [48.85142395593467, 2.6548990747322203], "stop_id": 3681464, "stop_desc": "8 R DU COUVENT - 77468", "stop_name": "FERME DU COUVENT"}, "geometry": {"type": "Point", "coordinates": [2.6548990747322203, 48.85142395593467]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "361419409666e3608948d0e384c8de62a37233fc", "fields": {"departement": "77", "stop_lat": 48.86649265103152, "code_postal": "77479", "stop_lon": 2.642417531883925, "coord": [48.86649265103152, 2.642417531883925], "stop_id": 3681479, "stop_desc": "45 BOULEVARD DE LA MARNE - 77479", "stop_name": "LE CANAL"}, "geometry": {"type": "Point", "coordinates": [2.642417531883925, 48.86649265103152]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9617f62df18304129674b57f0e4a5575a35a2a73", "fields": {"departement": "77", "stop_lat": 48.839094475647336, "code_postal": "77468", "stop_lon": 2.6576964831372134, "coord": [48.839094475647336, 2.6576964831372134], "stop_id": 3681487, "stop_desc": "AVENUE JEAN MOULIN - 77468", "stop_name": "CITES UNIES"}, "geometry": {"type": "Point", "coordinates": [2.6576964831372134, 48.839094475647336]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ba9e07bf790da1213616876eec43af2381727d80", "fields": {"departement": "77", "stop_lat": 48.85479638969216, "code_postal": "77468", "stop_lon": 2.6402921349589046, "coord": [48.85479638969216, 2.6402921349589046], "stop_id": 3681475, "stop_desc": "RUE JEAN JAURES - 77468", "stop_name": "LA MALTOURNEE"}, "geometry": {"type": "Point", "coordinates": [2.6402921349589046, 48.85479638969216]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4e57f82c9a30bc8f3e9d95a091de899a3eaa02b4", "fields": {"departement": "77", "stop_lat": 48.83924806864605, "code_postal": "77468", "stop_lon": 2.6573978872932438, "coord": [48.83924806864605, 2.6573978872932438], "stop_id": 3681450, "stop_desc": "AVENUE JEAN MOULIN - 77468", "stop_name": "CITES UNIES"}, "geometry": {"type": "Point", "coordinates": [2.6573978872932438, 48.83924806864605]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c5bed83ae3a46020a604dbca60a17b809dee3d10", "fields": {"departement": "77", "stop_lat": 48.85542846460346, "code_postal": "77083", "stop_lon": 2.5930620858796303, "coord": [48.85542846460346, 2.5930620858796303], "stop_id": 3681503, "stop_desc": "91 AVENUE JEAN JAURES - 77083", "stop_name": "LES IRIS"}, "geometry": {"type": "Point", "coordinates": [2.5930620858796303, 48.85542846460346]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "27991e23937739d76675b9576a1682ce6a67c324", "fields": {"departement": "77", "stop_lat": 48.87238142021725, "code_postal": "77108", "stop_lon": 2.5788674468620263, "coord": [48.87238142021725, 2.5788674468620263], "stop_id": 3681512, "stop_desc": "AV DU MARECHAL FOCH - 77108", "stop_name": "PARMENTIER - JULES FERRY"}, "geometry": {"type": "Point", "coordinates": [2.5788674468620263, 48.87238142021725]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a08a72b436be4b666505bbf3bd8540e6ad72704e", "fields": {"departement": "77", "stop_lat": 48.874339246385766, "code_postal": "77108", "stop_lon": 2.5839450063728906, "coord": [48.874339246385766, 2.5839450063728906], "stop_id": 3681513, "stop_desc": "ALLEE DES TRANSPORTS - 77108", "stop_name": "CHELLES - GOURNAY RER"}, "geometry": {"type": "Point", "coordinates": [2.5839450063728906, 48.874339246385766]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3ac6d2ec698a8eaa33e1e44bf037725f1d1ae29f", "fields": {"departement": "77", "stop_lat": 48.87067862014969, "code_postal": "77108", "stop_lon": 2.576488959824313, "coord": [48.87067862014969, 2.576488959824313], "stop_id": 3681511, "stop_desc": "49 AVENUE DU MARECHAL FOCH - 77108", "stop_name": "AVENUE DES MARTYRS"}, "geometry": {"type": "Point", "coordinates": [2.576488959824313, 48.87067862014969]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ee187344207cfd76499d20792a177d9864f7926b", "fields": {"departement": "93", "stop_lat": 48.863480491497555, "code_postal": "93033", "stop_lon": 2.576101580804232, "coord": [48.863480491497555, 2.576101580804232], "stop_id": 3681559, "stop_desc": "AVENUE PAUL DOUMER - 93033", "stop_name": "EGLISE DE GOURNAY"}, "geometry": {"type": "Point", "coordinates": [2.576101580804232, 48.863480491497555]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f4fad8ae774d028731fc37deca8eb1f000c23cad", "fields": {"departement": "77", "stop_lat": 48.855221315585304, "code_postal": "77083", "stop_lon": 2.5932653613534637, "coord": [48.855221315585304, 2.5932653613534637], "stop_id": 3681525, "stop_desc": "FACE 95 AVENUE JEAN JAURES - 77083", "stop_name": "LES IRIS"}, "geometry": {"type": "Point", "coordinates": [2.5932653613534637, 48.855221315585304]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "63e84a4e8c18dcbe2f970d3bff154cb84b550002", "fields": {"departement": "77", "stop_lat": 48.849623070716085, "code_postal": "77468", "stop_lon": 2.638913693080735, "coord": [48.849623070716085, 2.638913693080735], "stop_id": 3681533, "stop_desc": "COURS DE L'ARCHE GUEDON - 77468", "stop_name": "LA MOGOTTE"}, "geometry": {"type": "Point", "coordinates": [2.638913693080735, 48.849623070716085]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "af974fe397acee7268c1bd6719db7f6e84b7f1ef", "fields": {"departement": "93", "stop_lat": 48.86156019562919, "code_postal": "93033", "stop_lon": 2.579062216292892, "coord": [48.86156019562919, 2.579062216292892], "stop_id": 3681560, "stop_desc": "AVENUE DE CHAMPS - 93033", "stop_name": "PLACE ROOSEVELT"}, "geometry": {"type": "Point", "coordinates": [2.579062216292892, 48.86156019562919]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "24c716b93133269fe9f74090735804645fb5b610", "fields": {"departement": "77", "stop_lat": 48.86620528888257, "code_postal": "77108", "stop_lon": 2.5752967704531002, "coord": [48.86620528888257, 2.5752967704531002], "stop_id": 3681556, "stop_desc": "1 RUE DE GOURNAY - 77108", "stop_name": "PONT DE GOURNAY"}, "geometry": {"type": "Point", "coordinates": [2.5752967704531002, 48.86620528888257]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "387a33db30d388695b3133055fd4bebf6b9d5cf7", "fields": {"departement": "77", "stop_lat": 48.872435896102694, "code_postal": "77108", "stop_lon": 2.5785952142218123, "coord": [48.872435896102694, 2.5785952142218123], "stop_id": 3681645, "stop_desc": "32 AV DU MARECHAL FOCH - 77108", "stop_name": "PARMENTIER - JULES FERRY"}, "geometry": {"type": "Point", "coordinates": [2.5785952142218123, 48.872435896102694]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "026edf61f4be599fa2fbbe23e865dc4be4a94e79", "fields": {"departement": "93", "stop_lat": 48.90658543502007, "code_postal": "93010", "stop_lon": 2.4865114865196762, "coord": [48.90658543502007, 2.4865114865196762], "stop_id": 3682036, "stop_desc": "170 AVENUE GALLIENI - 93010", "stop_name": "PASTEUR - HOPITAL JEAN VERDIER"}, "geometry": {"type": "Point", "coordinates": [2.4865114865196762, 48.90658543502007]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d02de4928be81f89ac4381e9f654d205b8d977fe", "fields": {"departement": "92", "stop_lat": 48.8154422235913, "code_postal": "92046", "stop_lon": 2.3009314548288073, "coord": [48.8154422235913, 2.3009314548288073], "stop_id": 3681979, "stop_desc": "FACE 6 AV IRENE ET FREDERIC JOLIOT CURIE - 92046", "stop_name": "JOLIOT CURIE"}, "geometry": {"type": "Point", "coordinates": [2.3009314548288073, 48.8154422235913]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c1a47edf6ee45bb9bccd31cfc09023b07c806915", "fields": {"departement": "92", "stop_lat": 48.8154422235913, "code_postal": "92046", "stop_lon": 2.3009314548288073, "coord": [48.8154422235913, 2.3009314548288073], "stop_id": 3682009, "stop_desc": "FACE 6 AV IRENE ET FREDERIC JOLIOT CURIE - 92046", "stop_name": "JOLIOT CURIE"}, "geometry": {"type": "Point", "coordinates": [2.3009314548288073, 48.8154422235913]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "74e3f9599be02c8864f2b919d7c10691ba7e1e54", "fields": {"departement": "93", "stop_lat": 48.90099376228544, "code_postal": "93053", "stop_lon": 2.456041963320252, "coord": [48.90099376228544, 2.456041963320252], "stop_id": 3682028, "stop_desc": "FACE 155 RUE DE PARIS - 93053", "stop_name": "RUE DE PARIS N0 155"}, "geometry": {"type": "Point", "coordinates": [2.456041963320252, 48.90099376228544]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "35402793cb7d1a1727854eec647fbe110cf429f9", "fields": {"departement": "92", "stop_lat": 48.821745681267025, "code_postal": "92046", "stop_lon": 2.313013571294374, "coord": [48.821745681267025, 2.313013571294374], "stop_id": 3681967, "stop_desc": "FACE 37 AV PIERRE BROSSOLETTE - 92046", "stop_name": "DEPINOY"}, "geometry": {"type": "Point", "coordinates": [2.313013571294374, 48.821745681267025]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "51ebc4c49016792f02697f6dccc2a52a3b2ddbfc", "fields": {"departement": "92", "stop_lat": 48.81422911028907, "code_postal": "92046", "stop_lon": 2.2789129655955733, "coord": [48.81422911028907, 2.2789129655955733], "stop_id": 3681984, "stop_desc": "BD DE STALINGRAD - 92046", "stop_name": "CLOS MONTHOLON"}, "geometry": {"type": "Point", "coordinates": [2.2789129655955733, 48.81422911028907]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4d80d48390e6f2a43d400977085234f36928ed01", "fields": {"departement": "92", "stop_lat": 48.82550545005613, "code_postal": "92040", "stop_lon": 2.27266601906822, "coord": [48.82550545005613, 2.27266601906822], "stop_id": 3681864, "stop_desc": "28 R MARCEAU - 92040", "stop_name": "MAIRIE D'ISSY-METRO"}, "geometry": {"type": "Point", "coordinates": [2.27266601906822, 48.82550545005613]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "588af1f41a517747548b8cea66c1fcd451d202de", "fields": {"departement": "92", "stop_lat": 48.81387307516317, "code_postal": "92046", "stop_lon": 2.2864935189324047, "coord": [48.81387307516317, 2.2864935189324047], "stop_id": 3681975, "stop_desc": "FACE 74 R JULES GUESDE - 92046", "stop_name": "JULES GUESDE"}, "geometry": {"type": "Point", "coordinates": [2.2864935189324047, 48.81387307516317]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5c33cb9f01ee53f1758539fbcab3f043bac3666d", "fields": {"departement": "92", "stop_lat": 48.823200502897365, "code_postal": "92046", "stop_lon": 2.3077725274735896, "coord": [48.823200502897365, 2.3077725274735896], "stop_id": 3682014, "stop_desc": "R VICTOR HUGO - 92046", "stop_name": "VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.3077725274735896, 48.823200502897365]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cd2ea5beaf1b17efbe5729d450f129368fdc5138", "fields": {"departement": "77", "stop_lat": 48.83812725871016, "code_postal": "77083", "stop_lon": 2.593140166185643, "coord": [48.83812725871016, 2.593140166185643], "stop_id": 3681592, "stop_desc": "RUE GALILEE - 77083", "stop_name": "BOIS DE L'ETANG-UNIVERSITE"}, "geometry": {"type": "Point", "coordinates": [2.593140166185643, 48.83812725871016]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6a188cc61e3bb929499e194d7e6cc28e6b2b1fe8", "fields": {"departement": "77", "stop_lat": 48.83991488440749, "code_postal": "77083", "stop_lon": 2.6017813972024593, "coord": [48.83991488440749, 2.6017813972024593], "stop_id": 3681597, "stop_desc": "0 AV FORESTIERE - 77083", "stop_name": "LES VIGNES DE BAILLY"}, "geometry": {"type": "Point", "coordinates": [2.6017813972024593, 48.83991488440749]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8d39b5cfa06841fc7cf2c7c3543e30ccaccce58d", "fields": {"departement": "77", "stop_lat": 48.84992692242795, "code_postal": "77083", "stop_lon": 2.585122653047492, "coord": [48.84992692242795, 2.585122653047492], "stop_id": 3681626, "stop_desc": "AVENUE DES PYRAMIDES - 77083", "stop_name": "GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.585122653047492, 48.84992692242795]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b59f4aced255828caf7c0e78a53189042b4a639e", "fields": {"departement": "77", "stop_lat": 48.835505119314526, "code_postal": "77083", "stop_lon": 2.5920925222541435, "coord": [48.835505119314526, 2.5920925222541435], "stop_id": 3681590, "stop_desc": "23-25 RUE GALILEE - 77083", "stop_name": "EINSTEIN-GALILEE"}, "geometry": {"type": "Point", "coordinates": [2.5920925222541435, 48.835505119314526]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cf8f4770f89ca7d51874b70ea6a7e0d8cc382920", "fields": {"departement": "77", "stop_lat": 48.840746968959486, "code_postal": "77083", "stop_lon": 2.5953044170464787, "coord": [48.840746968959486, 2.5953044170464787], "stop_id": 3681594, "stop_desc": "AVENUE BLAISE PASCAL - 77083", "stop_name": "GALILEE-PASCAL"}, "geometry": {"type": "Point", "coordinates": [2.5953044170464787, 48.840746968959486]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e480110e23d5c310fd7955b5d65e498fc2580bfb", "fields": {"departement": "93", "stop_lat": 48.86156019562919, "code_postal": "93033", "stop_lon": 2.579062216292892, "coord": [48.86156019562919, 2.579062216292892], "stop_id": 3681620, "stop_desc": "AVENUE DE CHAMPS - 93033", "stop_name": "PLACE ROOSEVELT"}, "geometry": {"type": "Point", "coordinates": [2.579062216292892, 48.86156019562919]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "33c61e654b4e05b4834bcf7760f3b4236ffbd3be", "fields": {"departement": "77", "stop_lat": 48.854489416640035, "code_postal": "77083", "stop_lon": 2.5778988234131224, "coord": [48.854489416640035, 2.5778988234131224], "stop_id": 3681623, "stop_desc": "RUE SCHWEITZER - 77083", "stop_name": "CLAUDE BERNARD"}, "geometry": {"type": "Point", "coordinates": [2.5778988234131224, 48.854489416640035]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8e10f00284cf4cfc93f825bb7421c4de4c062bce", "fields": {"departement": "77", "stop_lat": 48.83862265088147, "code_postal": "77258", "stop_lon": 2.627916504340386, "coord": [48.83862265088147, 2.627916504340386], "stop_id": 3681612, "stop_desc": "BOULEVARD DU MANDINET - 77258", "stop_name": "LE VILLAGE"}, "geometry": {"type": "Point", "coordinates": [2.627916504340386, 48.83862265088147]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "702ca9667e14fabf007a902e8e5ec67cff0fc4cb", "fields": {"departement": "77", "stop_lat": 48.835254079794645, "code_postal": "77083", "stop_lon": 2.5918053833245454, "coord": [48.835254079794645, 2.5918053833245454], "stop_id": 3681591, "stop_desc": "RUE GALILEE - 77083", "stop_name": "EINSTEIN-GALILEE"}, "geometry": {"type": "Point", "coordinates": [2.5918053833245454, 48.835254079794645]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8135acae9c72ddaf1cbb7b847e94cd355357b04a", "fields": {"departement": "77", "stop_lat": 48.842245043016746, "code_postal": "77083", "stop_lon": 2.5839285562282472, "coord": [48.842245043016746, 2.5839285562282472], "stop_id": 3681585, "stop_desc": "21 AV AMPERE - 77083", "stop_name": "C.R.O.U.S."}, "geometry": {"type": "Point", "coordinates": [2.5839285562282472, 48.842245043016746]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bcc0e82b3750ad0973014c971c73ebe9e4b2b321", "fields": {"departement": "77", "stop_lat": 48.84676361821815, "code_postal": "77337", "stop_lon": 2.613568309410896, "coord": [48.84676361821815, 2.613568309410896], "stop_id": 3681642, "stop_desc": "FACE AU 7 COURS DES ROCHES - 77337", "stop_name": "COLLEGE LE LUZARD"}, "geometry": {"type": "Point", "coordinates": [2.613568309410896, 48.84676361821815]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "76cfc32f1dfc5d43f75a833bd65291629bcdc61c", "fields": {"departement": "77", "stop_lat": 48.874339246385766, "code_postal": "77108", "stop_lon": 2.5839450063728906, "coord": [48.874339246385766, 2.5839450063728906], "stop_id": 3681614, "stop_desc": "ALLEE DES TRANSPORTS - 77108", "stop_name": "CHELLES - GOURNAY RER"}, "geometry": {"type": "Point", "coordinates": [2.5839450063728906, 48.874339246385766]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9f9293e04712b43d441cdb859486892f82e1bbbe", "fields": {"departement": "77", "stop_lat": 48.870957143989884, "code_postal": "77108", "stop_lon": 2.576531116758481, "coord": [48.870957143989884, 2.576531116758481], "stop_id": 3681646, "stop_desc": "50 AVENUE DU MARECHAL FOCH - 77108", "stop_name": "AVENUE DES MARTYRS"}, "geometry": {"type": "Point", "coordinates": [2.576531116758481, 48.870957143989884]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8a6eb32db8888a8db0123405454332de1dbc4931", "fields": {"departement": "77", "stop_lat": 48.835505119314526, "code_postal": "77083", "stop_lon": 2.5920925222541435, "coord": [48.835505119314526, 2.5920925222541435], "stop_id": 3681635, "stop_desc": "23-25 RUE GALILEE - 77083", "stop_name": "EINSTEIN-GALILEE"}, "geometry": {"type": "Point", "coordinates": [2.5920925222541435, 48.835505119314526]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1c2617160d7f70c81e044935f2bdde04d68a6e89", "fields": {"departement": "77", "stop_lat": 48.835505119314526, "code_postal": "77083", "stop_lon": 2.5920925222541435, "coord": [48.835505119314526, 2.5920925222541435], "stop_id": 3681665, "stop_desc": "23-25 RUE GALILEE - 77083", "stop_name": "EINSTEIN-GALILEE"}, "geometry": {"type": "Point", "coordinates": [2.5920925222541435, 48.835505119314526]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4bc0fcf7e252f1b7244b70fc7659fc58bcd83577", "fields": {"departement": "77", "stop_lat": 48.840746968959486, "code_postal": "77083", "stop_lon": 2.5953044170464787, "coord": [48.840746968959486, 2.5953044170464787], "stop_id": 3681637, "stop_desc": "AVENUE BLAISE PASCAL - 77083", "stop_name": "GALILEE-PASCAL"}, "geometry": {"type": "Point", "coordinates": [2.5953044170464787, 48.840746968959486]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c053950c6b2e5d9d94edf6eae84f0860e8de46a8", "fields": {"departement": "77", "stop_lat": 48.84238030651938, "code_postal": "77083", "stop_lon": 2.583711336428734, "coord": [48.84238030651938, 2.583711336428734], "stop_id": 3681632, "stop_desc": "FACE 23-25 AV AMPERE - 77083", "stop_name": "C.R.O.U.S."}, "geometry": {"type": "Point", "coordinates": [2.583711336428734, 48.84238030651938]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "612cc6ba20d00042b51170ac98ec6c059051c609", "fields": {"departement": "77", "stop_lat": 48.86620528888257, "code_postal": "77108", "stop_lon": 2.5752967704531002, "coord": [48.86620528888257, 2.5752967704531002], "stop_id": 3681648, "stop_desc": "1 RUE DE GOURNAY - 77108", "stop_name": "PONT DE GOURNAY"}, "geometry": {"type": "Point", "coordinates": [2.5752967704531002, 48.86620528888257]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e3db9afe8dbbb0f4d53eb3d572a37510812786af", "fields": {"departement": "77", "stop_lat": 48.86831057428451, "code_postal": "77108", "stop_lon": 2.574175706615011, "coord": [48.86831057428451, 2.574175706615011], "stop_id": 3681647, "stop_desc": "RUE DE GOURNAY - 77108", "stop_name": "RUE DU PORT"}, "geometry": {"type": "Point", "coordinates": [2.574175706615011, 48.86831057428451]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "816d8ba30fcd1dd913bee28091030a425f1694d8", "fields": {"departement": "77", "stop_lat": 48.838512994627884, "code_postal": "77083", "stop_lon": 2.584986430503156, "coord": [48.838512994627884, 2.584986430503156], "stop_id": 3681663, "stop_desc": "AVENUE AMPERE - 77083", "stop_name": "NOBEL"}, "geometry": {"type": "Point", "coordinates": [2.584986430503156, 48.838512994627884]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3ad6a4dd8e2b5e2d0d2cc26db860b2868f8b54b8", "fields": {"departement": "93", "stop_lat": 48.91665674019552, "code_postal": "93046", "stop_lon": 2.53228902968875, "coord": [48.91665674019552, 2.53228902968875], "stop_id": 3682047, "stop_desc": "69 AVENUE DU CONSUL GENERAL NORDLING - 93046", "stop_name": "CHARLES DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.53228902968875, 48.91665674019552]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "37188eab4f46f414bd155edce7ca33f3f29c818c", "fields": {"departement": "93", "stop_lat": 48.93985777401575, "code_postal": "93071", "stop_lon": 2.523045266415024, "coord": [48.93985777401575, 2.523045266415024], "stop_id": 3682065, "stop_desc": "FACE 32 AV DU GENERAL LECLERC - 93071", "stop_name": "CIMETIERE DE SEVRAN"}, "geometry": {"type": "Point", "coordinates": [2.523045266415024, 48.93985777401575]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "21050ba43879b56b96c15a3d400d9ea0fcccb8c5", "fields": {"departement": "93", "stop_lat": 48.92586466008603, "code_postal": "93046", "stop_lon": 2.545143762663158, "coord": [48.92586466008603, 2.545143762663158], "stop_id": 3682053, "stop_desc": "FACE 35 RUE EUGENE MASSE - 93046", "stop_name": "JEAN-JACQUES ROUSSEAU"}, "geometry": {"type": "Point", "coordinates": [2.545143762663158, 48.92586466008603]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "757209b6867b02c1fabf063c149aae2be1938059", "fields": {"departement": "93", "stop_lat": 48.93602836595626, "code_postal": "93071", "stop_lon": 2.53485830189382, "coord": [48.93602836595626, 2.53485830189382], "stop_id": 3682059, "stop_desc": "PLACE DE LA GARE - 93071", "stop_name": "SEVRAN - LIVRY RER"}, "geometry": {"type": "Point", "coordinates": [2.53485830189382, 48.93602836595626]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3be72f0ba5f7a9d75f500742625b8149df24039a", "fields": {"departement": "93", "stop_lat": 48.937321424767774, "code_postal": "93071", "stop_lon": 2.53000690704112, "coord": [48.937321424767774, 2.53000690704112], "stop_id": 3682063, "stop_desc": "3 PLACE GASTON BUSSIERE - 93071", "stop_name": "GASTON BUSSIERE"}, "geometry": {"type": "Point", "coordinates": [2.53000690704112, 48.937321424767774]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "53bc8618e3cc9500e9aff9915eaa472e21908156", "fields": {"departement": "93", "stop_lat": 48.934554640105524, "code_postal": "93071", "stop_lon": 2.5347844748975574, "coord": [48.934554640105524, 2.5347844748975574], "stop_id": 3682060, "stop_desc": "8 AVENUE DE LIVRY - 93071", "stop_name": "SEVRAN - LIVRY"}, "geometry": {"type": "Point", "coordinates": [2.5347844748975574, 48.934554640105524]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4f52d1a2b4cfa87154b969bb86cd54a21fe81bfc", "fields": {"departement": "93", "stop_lat": 48.9480213410528, "code_postal": "93071", "stop_lon": 2.5320933752918715, "coord": [48.9480213410528, 2.5320933752918715], "stop_id": 3682074, "stop_desc": "AV SALVADOR ALLENDE - 93071", "stop_name": "LUTHER KING"}, "geometry": {"type": "Point", "coordinates": [2.5320933752918715, 48.9480213410528]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5f64a8124dadf1946323af731345e83f22755bcb", "fields": {"departement": "75", "stop_lat": 48.847371995517996, "code_postal": "75116", "stop_lon": 2.257441459332081, "coord": [48.847371995517996, 2.257441459332081], "stop_id": 3681831, "stop_desc": "PLACE DE LA PORTE D'AUTEUIL - 75116", "stop_name": "PORTE D'AUTEUIL-METRO"}, "geometry": {"type": "Point", "coordinates": [2.257441459332081, 48.847371995517996]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d332a627148c9d61f3138227fb4546572c94ab4b", "fields": {"departement": "92", "stop_lat": 48.825660155160065, "code_postal": "92012", "stop_lon": 2.247837562558885, "coord": [48.825660155160065, 2.247837562558885], "stop_id": 3681804, "stop_desc": "278 BOULEVARD JEAN JAURES - 92012", "stop_name": "PONT DE BILLANCOURT"}, "geometry": {"type": "Point", "coordinates": [2.247837562558885, 48.825660155160065]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "86fe4fbe0c96b172b6ef2760247bbc8312ac7efd", "fields": {"departement": "92", "stop_lat": 48.82855293733451, "code_postal": "92012", "stop_lon": 2.246199048394042, "coord": [48.82855293733451, 2.246199048394042], "stop_id": 3681806, "stop_desc": "242 BOULEVARD JEAN JAURES - 92012", "stop_name": "RUE DU POINT DU JOUR"}, "geometry": {"type": "Point", "coordinates": [2.246199048394042, 48.82855293733451]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "46e3bcf348d8f2da5e55810e0a19608e677a561b", "fields": {"departement": "92", "stop_lat": 48.844391180981994, "code_postal": "92012", "stop_lon": 2.237619833147819, "coord": [48.844391180981994, 2.237619833147819], "stop_id": 3681817, "stop_desc": "7 BIS BOULEVARD JEAN JAURES - 92012", "stop_name": "ESCUDIER-MARCHE"}, "geometry": {"type": "Point", "coordinates": [2.237619833147819, 48.844391180981994]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "79c230218df1f33d5c1df07a6336d0323c50addd", "fields": {"departement": "77", "stop_lat": 48.83777747640037, "code_postal": "77083", "stop_lon": 2.592798060287066, "coord": [48.83777747640037, 2.592798060287066], "stop_id": 3681680, "stop_desc": "RUE GALILEE - 77083", "stop_name": "BOIS DE L'ETANG-UNIVERSITE"}, "geometry": {"type": "Point", "coordinates": [2.592798060287066, 48.83777747640037]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a4b8783ad370c3fd685df49694849ee2aa71fc70", "fields": {"departement": "92", "stop_lat": 48.84552451210137, "code_postal": "92012", "stop_lon": 2.25024080281376, "coord": [48.84552451210137, 2.25024080281376], "stop_id": 3681827, "stop_desc": "BOULEVARD D'AUTEUIL - 92012", "stop_name": "STADE ROLAND GARROS"}, "geometry": {"type": "Point", "coordinates": [2.25024080281376, 48.84552451210137]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cda47f10c5399a8c7cc9588266177dadff9cdc51", "fields": {"departement": "92", "stop_lat": 48.82167109764111, "code_postal": "92040", "stop_lon": 2.2498180216492933, "coord": [48.82167109764111, 2.2498180216492933], "stop_id": 3681800, "stop_desc": "PLACE DE LA RESISTANCE - 92040", "stop_name": "LES MOULINEAUX"}, "geometry": {"type": "Point", "coordinates": [2.2498180216492933, 48.82167109764111]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a5150832ce0fc1e6a0228fa4229438ded5278111", "fields": {"departement": "75", "stop_lat": 48.845483233629736, "code_postal": "75116", "stop_lon": 2.2554017868810505, "coord": [48.845483233629736, 2.2554017868810505], "stop_id": 3681840, "stop_desc": "AVENUE DE LA PORTE MOLITOR - 75116", "stop_name": "PORTE MOLITOR"}, "geometry": {"type": "Point", "coordinates": [2.2554017868810505, 48.845483233629736]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "050363244933a17bdf76222d5a439dba46cc7336", "fields": {"departement": "77", "stop_lat": 48.84694506342962, "code_postal": "77083", "stop_lon": 2.6089256577232245, "coord": [48.84694506342962, 2.6089256577232245], "stop_id": 3681675, "stop_desc": "COURS DU LUZARD - 77083", "stop_name": "GUY DE MAUPASSANT"}, "geometry": {"type": "Point", "coordinates": [2.6089256577232245, 48.84694506342962]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5fa812ba859a5f663c18d02322370dba3699b188", "fields": {"departement": "92", "stop_lat": 48.81974370570486, "code_postal": "92040", "stop_lon": 2.2568578641021544, "coord": [48.81974370570486, 2.2568578641021544], "stop_id": 3681859, "stop_desc": "107 AVENUE DE VERDUN - 92040", "stop_name": "PAUL BERT"}, "geometry": {"type": "Point", "coordinates": [2.2568578641021544, 48.81974370570486]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f4f099ad73bd5ce0009938fe3f162c132c6c4936", "fields": {"departement": "77", "stop_lat": 48.85057148011402, "code_postal": "77083", "stop_lon": 2.5820070772404646, "coord": [48.85057148011402, 2.5820070772404646], "stop_id": 3681571, "stop_desc": "RUE ALBERT SCHWEITZER - 77083", "stop_name": "FLANDRES-DUNKERQUE 1940"}, "geometry": {"type": "Point", "coordinates": [2.5820070772404646, 48.85057148011402]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5aac6d77994e3dae5a0b2db9b8e4672e9e670338", "fields": {"departement": "77", "stop_lat": 48.85042731720968, "code_postal": "77083", "stop_lon": 2.5821834380995026, "coord": [48.85042731720968, 2.5821834380995026], "stop_id": 3681570, "stop_desc": "RUE ALBERT SCHWEITZER - 77083", "stop_name": "FLANDRES-DUNKERQUE 1940"}, "geometry": {"type": "Point", "coordinates": [2.5821834380995026, 48.85042731720968]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e4ad64fe906f77d60c2102297eafebf0bf2b9862", "fields": {"departement": "93", "stop_lat": 48.85878683398007, "code_postal": "93033", "stop_lon": 2.5816236052274646, "coord": [48.85878683398007, 2.5816236052274646], "stop_id": 3681563, "stop_desc": "AVENUE DES PRINCES - 93033", "stop_name": "PLACE CHURCHILL"}, "geometry": {"type": "Point", "coordinates": [2.5816236052274646, 48.85878683398007]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a1d6b7680a1555658f1e29eca5c0e852732a938d", "fields": {"departement": "77", "stop_lat": 48.85124413248589, "code_postal": "77083", "stop_lon": 2.5782923298882263, "coord": [48.85124413248589, 2.5782923298882263], "stop_id": 3681569, "stop_desc": "RUE ALBERT SCHWEITZER - 77083", "stop_name": "XAVIER BICHAT"}, "geometry": {"type": "Point", "coordinates": [2.5782923298882263, 48.85124413248589]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3cc32882d9f130f7352afa0c6c4ecb3ec18e35e3", "fields": {"departement": "77", "stop_lat": 48.851145436096516, "code_postal": "77083", "stop_lon": 2.578210158850117, "coord": [48.851145436096516, 2.578210158850117], "stop_id": 3681568, "stop_desc": "RUE ALBERT SCHWEITZER - 77083", "stop_name": "XAVIER BICHAT"}, "geometry": {"type": "Point", "coordinates": [2.578210158850117, 48.851145436096516]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "edc550b84908470e7667deeb3677f13f9a0516bb", "fields": {"departement": "93", "stop_lat": 48.861595619417926, "code_postal": "93033", "stop_lon": 2.579321189538517, "coord": [48.861595619417926, 2.579321189538517], "stop_id": 3681561, "stop_desc": "AVENUE DE CHAMPS - 93033", "stop_name": "PLACE ROOSEVELT"}, "geometry": {"type": "Point", "coordinates": [2.579321189538517, 48.861595619417926]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "be773f21f422c02a3e7ca9b304c408039bb0432a", "fields": {"departement": "77", "stop_lat": 48.848290555507766, "code_postal": "77083", "stop_lon": 2.585428047502302, "coord": [48.848290555507766, 2.585428047502302], "stop_id": 3681574, "stop_desc": "BOULEVARD DE NESLES - 77083", "stop_name": "BOIS DE GRACE"}, "geometry": {"type": "Point", "coordinates": [2.585428047502302, 48.848290555507766]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ae4617b603a9e5ae40ff0c82af6e5d8dd20f727b", "fields": {"departement": "77", "stop_lat": 48.854489416640035, "code_postal": "77083", "stop_lon": 2.5778988234131224, "coord": [48.854489416640035, 2.5778988234131224], "stop_id": 3681566, "stop_desc": "RUE SCHWEITZER - 77083", "stop_name": "CLAUDE BERNARD"}, "geometry": {"type": "Point", "coordinates": [2.5778988234131224, 48.854489416640035]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "78ec29bb18508d6865844b5f5bfb4772fb7c6a87", "fields": {"departement": "77", "stop_lat": 48.8484430582703, "code_postal": "77083", "stop_lon": 2.585564957393865, "coord": [48.8484430582703, 2.585564957393865], "stop_id": 3681575, "stop_desc": "BOULEVARD DE NESLES - 77083", "stop_name": "BOIS DE GRACE"}, "geometry": {"type": "Point", "coordinates": [2.585564957393865, 48.8484430582703]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "805321f933afa9be3a9b103e7b9d18e99fc08b37", "fields": {"departement": "77", "stop_lat": 48.84485318736399, "code_postal": "77083", "stop_lon": 2.5830830818506754, "coord": [48.84485318736399, 2.5830830818506754], "stop_id": 3681579, "stop_desc": "1 AVENUE AMPERE - 77083", "stop_name": "AMPERE"}, "geometry": {"type": "Point", "coordinates": [2.5830830818506754, 48.84485318736399]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "abf7c057dbf4355d22f2c083eb977fb066e51aa5", "fields": {"departement": "93", "stop_lat": 48.90376565348495, "code_postal": "93053", "stop_lon": 2.4694490810066267, "coord": [48.90376565348495, 2.4694490810066267], "stop_id": 3682080, "stop_desc": "194 BIS AVENUE DE PARIS - 93053", "stop_name": "PONT DE BONDY - AVENUE DE ROSNY"}, "geometry": {"type": "Point", "coordinates": [2.4694490810066267, 48.90376565348495]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "96db2ba5f1ef0107bb974509665ae7ff315d4ae3", "fields": {"departement": "93", "stop_lat": 48.910494778495185, "code_postal": "93057", "stop_lon": 2.5129187507167723, "coord": [48.910494778495185, 2.5129187507167723], "stop_id": 3682220, "stop_desc": "242 AVENUE ARISTIDE BRIAND - 93057", "stop_name": "VICTOR HUGO - JEAN MOULIN"}, "geometry": {"type": "Point", "coordinates": [2.5129187507167723, 48.910494778495185]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "586204ecb066ecadc4a5f102f5f6929b6d57477b", "fields": {"departement": "93", "stop_lat": 48.90859629871849, "code_postal": "93046", "stop_lon": 2.531713334134483, "coord": [48.90859629871849, 2.531713334134483], "stop_id": 3682182, "stop_desc": "26 AVENUE LEON BLUM - 93046", "stop_name": "JEAN-BAPTISTE CLEMENT"}, "geometry": {"type": "Point", "coordinates": [2.531713334134483, 48.90859629871849]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8a0984c9cad07a061e7ed46d0c56335113ff946e", "fields": {"departement": "93", "stop_lat": 48.90397868952098, "code_postal": "93010", "stop_lon": 2.4718216924159715, "coord": [48.90397868952098, 2.4718216924159715], "stop_id": 3682167, "stop_desc": "AVENUE DU GENERAL GALLIENI - 93010", "stop_name": "AVENUE DE ROSNY"}, "geometry": {"type": "Point", "coordinates": [2.4718216924159715, 48.90397868952098]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "14eae923cf9c8a2adcbe079cdcf2b8f0ef621d42", "fields": {"departement": "93", "stop_lat": 48.934554640105524, "code_postal": "93071", "stop_lon": 2.5347844748975574, "coord": [48.934554640105524, 2.5347844748975574], "stop_id": 3682096, "stop_desc": "8 AVENUE DE LIVRY - 93071", "stop_name": "SEVRAN - LIVRY"}, "geometry": {"type": "Point", "coordinates": [2.5347844748975574, 48.934554640105524]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f0b668c9b5cf07b63ed6a18427e1c49156979ac2", "fields": {"departement": "93", "stop_lat": 48.90294012056257, "code_postal": "93047", "stop_lon": 2.564096156304684, "coord": [48.90294012056257, 2.564096156304684], "stop_id": 3682197, "stop_desc": "33 AVENUE PAUL BERT - 93047", "stop_name": "LES GAZELLES"}, "geometry": {"type": "Point", "coordinates": [2.564096156304684, 48.90294012056257]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "63104c84d0e47eeaa41104d7bd33921706a2aee9", "fields": {"departement": "93", "stop_lat": 48.87478871518722, "code_postal": "93032", "stop_lon": 2.5513562940251218, "coord": [48.87478871518722, 2.5513562940251218], "stop_id": 3683039, "stop_desc": "FACE 43 AVENUE PAUL VAILLANT COUTURIER - 93032", "stop_name": "EMILE COSSONNEAU"}, "geometry": {"type": "Point", "coordinates": [2.5513562940251218, 48.87478871518722]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4d8deb9a0a5c38abc1f9d957c117ad47818bd8b8", "fields": {"departement": "93", "stop_lat": 48.87181530331215, "code_postal": "93064", "stop_lon": 2.4854032059016777, "coord": [48.87181530331215, 2.4854032059016777], "stop_id": 3683441, "stop_desc": "RUE PAUL CAVARE - 93064", "stop_name": "MAIRIE - ROSNY-SOUS-BOIS RER"}, "geometry": {"type": "Point", "coordinates": [2.4854032059016777, 48.87181530331215]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c6f3620a6b31b49ee14276bcb2939a21747531cc", "fields": {"departement": "93", "stop_lat": 48.85296447651706, "code_postal": "93049", "stop_lon": 2.5147940192726437, "coord": [48.85296447651706, 2.5147940192726437], "stop_id": 3683012, "stop_desc": "22-24 BOULEVARD GALLIENI - 93049", "stop_name": "NEUILLY-PLAISANCE RER."}, "geometry": {"type": "Point", "coordinates": [2.5147940192726437, 48.85296447651706]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "08683bba6952a861cc4ee3cce1efa0b19b4f0087", "fields": {"departement": "94", "stop_lat": 48.854684044140335, "code_postal": "94058", "stop_lon": 2.50014518401965, "coord": [48.854684044140335, 2.50014518401965], "stop_id": 3683449, "stop_desc": "23 AVENUE DE NEUILLY PLAISANCE - 94058", "stop_name": "LES JONCS MARINS"}, "geometry": {"type": "Point", "coordinates": [2.50014518401965, 48.854684044140335]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7eda8d288760f2ac1f4fc8f7b162d227a210b5b8", "fields": {"departement": "93", "stop_lat": 48.87238224076234, "code_postal": "93032", "stop_lon": 2.559997786632549, "coord": [48.87238224076234, 2.559997786632549], "stop_id": 3683045, "stop_desc": "45 R DU PETIT CHENAY - 93032", "stop_name": "LES MARRONNIERS"}, "geometry": {"type": "Point", "coordinates": [2.559997786632549, 48.87238224076234]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1f54c2fc6e28157b5c97ab9d9c400d4272872d23", "fields": {"departement": "93", "stop_lat": 48.86687408052309, "code_postal": "93064", "stop_lon": 2.4978675966688955, "coord": [48.86687408052309, 2.4978675966688955], "stop_id": 3683444, "stop_desc": "FACE 55 RUE DE STRASBOURG - 93064", "stop_name": "RUE DU RHIN"}, "geometry": {"type": "Point", "coordinates": [2.4978675966688955, 48.86687408052309]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "795a422ef67634cfbb3d8fa78442638fc3be049f", "fields": {"departement": "93", "stop_lat": 48.87200064890599, "code_postal": "93032", "stop_lon": 2.5669036181184093, "coord": [48.87200064890599, 2.5669036181184093], "stop_id": 3683049, "stop_desc": "132 AVENUE ROGER SALENGRO - 93032", "stop_name": "ROGER SALENGRO"}, "geometry": {"type": "Point", "coordinates": [2.5669036181184093, 48.87200064890599]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "63b5affecfea3bff58c82f7da3baa6ab8ea0907a", "fields": {"departement": "93", "stop_lat": 48.87312107634046, "code_postal": "93050", "stop_lon": 2.549114990975852, "coord": [48.87312107634046, 2.549114990975852], "stop_id": 3683037, "stop_desc": "40 RUE HIPPOLYTE PINA - 93050", "stop_name": "HIPPOLYTE PINA"}, "geometry": {"type": "Point", "coordinates": [2.549114990975852, 48.87312107634046]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9323cffec93974d3ce7349482b99b21467794591", "fields": {"departement": "94", "stop_lat": 48.850065501068165, "code_postal": "94058", "stop_lon": 2.4993952858883075, "coord": [48.850065501068165, 2.4993952858883075], "stop_id": 3683451, "stop_desc": "63 BOULEVARD ALSACE-LORRAINE - 94058", "stop_name": "AVRON"}, "geometry": {"type": "Point", "coordinates": [2.4993952858883075, 48.850065501068165]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7f6050154206b944af97a6f4215f33649f4032a0", "fields": {"departement": "93", "stop_lat": 48.873506824214644, "code_postal": "93032", "stop_lon": 2.5391706170088666, "coord": [48.873506824214644, 2.5391706170088666], "stop_id": 3683031, "stop_desc": "60 AVENUE DU CHATEAU - 93032", "stop_name": "FENELON"}, "geometry": {"type": "Point", "coordinates": [2.5391706170088666, 48.873506824214644]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e7317c641ac24582e333c4bba2b946ced70222ff", "fields": {"departement": "93", "stop_lat": 48.855634588875034, "code_postal": "93050", "stop_lon": 2.520183013188147, "coord": [48.855634588875034, 2.520183013188147], "stop_id": 3683015, "stop_desc": "8 BOULEVARD ARISTIDE BRIAND - 93050", "stop_name": "FRANCOIS MAURIAC"}, "geometry": {"type": "Point", "coordinates": [2.520183013188147, 48.855634588875034]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3541619225c7597ed9dea98452383b2914b5db30", "fields": {"departement": "77", "stop_lat": 48.8782952781097, "code_postal": "77108", "stop_lon": 2.608040751817994, "coord": [48.8782952781097, 2.608040751817994], "stop_id": 3682983, "stop_desc": "AVENUE DU GENDARME CASTERMANT - 77108", "stop_name": "RUE DU CHELLEEN"}, "geometry": {"type": "Point", "coordinates": [2.608040751817994, 48.8782952781097]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "945d92f7b73876528f7eda3969aa4c7a358104be", "fields": {"departement": "93", "stop_lat": 48.858465286712345, "code_postal": "93050", "stop_lon": 2.5204109277276596, "coord": [48.858465286712345, 2.5204109277276596], "stop_id": 3683017, "stop_desc": "63 BOULEVARD ARISTIDE BRIAND - 93050", "stop_name": "PAUL DOUMER"}, "geometry": {"type": "Point", "coordinates": [2.5204109277276596, 48.858465286712345]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2e67cb049b8327cb03826c3af7f357ae40f94248", "fields": {"departement": "94", "stop_lat": 48.84301923142581, "code_postal": "94052", "stop_lon": 2.48564776888473, "coord": [48.84301923142581, 2.48564776888473], "stop_id": 3682992, "stop_desc": "FACE147BIS BOULEVARD DE STRASBOURG - 94052", "stop_name": "ANQUETIL"}, "geometry": {"type": "Point", "coordinates": [2.48564776888473, 48.84301923142581]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1f0289c0d7dedb4a8e1ae8f9cb5737dabf101241", "fields": {"departement": "93", "stop_lat": 48.86618647933904, "code_postal": "93050", "stop_lon": 2.5255330738242145, "coord": [48.86618647933904, 2.5255330738242145], "stop_id": 3683020, "stop_desc": "15 -17 RUE LOUIS VANNINI - 93050", "stop_name": "11 NOVEMBRE"}, "geometry": {"type": "Point", "coordinates": [2.5255330738242145, 48.86618647933904]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "df7de789234156e2c99fcab906ea925bdcf9936c", "fields": {"departement": "75", "stop_lat": 48.84430711895828, "code_postal": "75115", "stop_lon": 2.291202413759144, "coord": [48.84430711895828, 2.291202413759144], "stop_id": 3812945, "stop_desc": "FACE 69 RUE DES ENTREPRENEURS - 75115", "stop_name": "VIOLET"}, "geometry": {"type": "Point", "coordinates": [2.291202413759144, 48.84430711895828]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5d3e74c35e100990eb954b7a8efd7d93c3dc17f0", "fields": {"departement": "75", "stop_lat": 48.85319065972661, "code_postal": "75116", "stop_lon": 2.2795228651902506, "coord": [48.85319065972661, 2.2795228651902506], "stop_id": 3812953, "stop_desc": "8 RUE RANELAGH - 75116", "stop_name": "RADIO FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.2795228651902506, 48.85319065972661]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "393b5b90a1f6b756fbacced29363285da7cdd2d7", "fields": {"departement": "75", "stop_lat": 48.843217014382596, "code_postal": "75115", "stop_lon": 2.3127039743389797, "coord": [48.843217014382596, 2.3127039743389797], "stop_id": 3812959, "stop_desc": "31 BOULEVARD PASTEUR - 75115", "stop_name": "PASTEUR - LYCEE BUFFON"}, "geometry": {"type": "Point", "coordinates": [2.3127039743389797, 48.843217014382596]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "92caa75609899907c69fb72bd5b812d26e0bded0", "fields": {"departement": "75", "stop_lat": 48.84992345516465, "code_postal": "75106", "stop_lon": 2.323718043780384, "coord": [48.84992345516465, 2.323718043780384], "stop_id": 3812962, "stop_desc": "83 RUE DE SEVRES - 75106", "stop_name": "BAC - SAINT-PLACIDE"}, "geometry": {"type": "Point", "coordinates": [2.323718043780384, 48.84992345516465]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "596ff73e6d9aaadd6f4b9f8325a5be1de5d4c314", "fields": {"departement": "75", "stop_lat": 48.85075949870457, "code_postal": "75106", "stop_lon": 2.3256925178508983, "coord": [48.85075949870457, 2.3256925178508983], "stop_id": 3812963, "stop_desc": "29 RUE DE SEVRES - 75106", "stop_name": "SEVRES - BABYLONE"}, "geometry": {"type": "Point", "coordinates": [2.3256925178508983, 48.85075949870457]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6913faa5e7a3956a398b77711d8fe8f9ff75a187", "fields": {"departement": "75", "stop_lat": 48.85376186529585, "code_postal": "75106", "stop_lon": 2.3386029974652143, "coord": [48.85376186529585, 2.3386029974652143], "stop_id": 3812966, "stop_desc": "53 RUE DAUPHINE - 75106", "stop_name": "SAINT-ANDRE DES ARTS"}, "geometry": {"type": "Point", "coordinates": [2.3386029974652143, 48.85376186529585]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8df6fa476421dc06d07278f70e538e395de379e0", "fields": {"departement": "75", "stop_lat": 48.84432413600794, "code_postal": "75106", "stop_lon": 2.3228207907374405, "coord": [48.84432413600794, 2.3228207907374405], "stop_id": 3812976, "stop_desc": "55 BIS BOULEVARD DU MONTPARNASSE - 75106", "stop_name": "PLACE DU 18 JUIN 1940 - RUE DE L'ARRIVEE"}, "geometry": {"type": "Point", "coordinates": [2.3228207907374405, 48.84432413600794]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2aaccaadd96ef4759812a6ee116952899d734163", "fields": {"departement": "75", "stop_lat": 48.84597723329333, "code_postal": "75106", "stop_lon": 2.318476408387774, "coord": [48.84597723329333, 2.318476408387774], "stop_id": 3812977, "stop_desc": "15-17 BOULEVARD DU MONTPARNASSE - 75106", "stop_name": "MAINE - VAUGIRARD"}, "geometry": {"type": "Point", "coordinates": [2.318476408387774, 48.84597723329333]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5eb508edb02584756e866d29ca491c04ccb10c2a", "fields": {"departement": "75", "stop_lat": 48.851527519111585, "code_postal": "75107", "stop_lon": 2.301178562089781, "coord": [48.851527519111585, 2.301178562089781], "stop_id": 3812988, "stop_desc": "73 AVENUE DE SUFFREN - 75107", "stop_name": "GAL DE BOLLARDIERE"}, "geometry": {"type": "Point", "coordinates": [2.301178562089781, 48.851527519111585]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3885eb37e26ca049ecc6bfe4584a28ebd96d91b6", "fields": {"departement": "75", "stop_lat": 48.853207126275045, "code_postal": "75107", "stop_lon": 2.2978679256149475, "coord": [48.853207126275045, 2.2978679256149475], "stop_id": 3812990, "stop_desc": "53 AVENUE DE SUFFREN - 75107", "stop_name": "GENERAL DETRIE"}, "geometry": {"type": "Point", "coordinates": [2.2978679256149475, 48.853207126275045]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4e2bb0ea2f167ff25696bf206a9584f4f180aab8", "fields": {"departement": "75", "stop_lat": 48.85715045494422, "code_postal": "75107", "stop_lon": 2.291803921151104, "coord": [48.85715045494422, 2.291803921151104], "stop_id": 3812992, "stop_desc": "3 AVENUE DE SUFFREN - 75107", "stop_name": "CHAMP DE MARS"}, "geometry": {"type": "Point", "coordinates": [2.291803921151104, 48.85715045494422]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "384a68e18da75df7736f8355734a49778a480f60", "fields": {"departement": "75", "stop_lat": 48.85821123394535, "code_postal": "75107", "stop_lon": 2.2924976383685554, "coord": [48.85821123394535, 2.2924976383685554], "stop_id": 3812993, "stop_desc": "QUAI BRANLY - 75107", "stop_name": "TOUR EIFFEL"}, "geometry": {"type": "Point", "coordinates": [2.2924976383685554, 48.85821123394535]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "37236842c8ebc12e6c344c21a741e5937a1e431e", "fields": {"departement": "75", "stop_lat": 48.85920893408429, "code_postal": "75107", "stop_lon": 2.2927555723428803, "coord": [48.85920893408429, 2.2927555723428803], "stop_id": 3812994, "stop_desc": "PONT D'IENA - 75107", "stop_name": "TOUR EIFFEL"}, "geometry": {"type": "Point", "coordinates": [2.2927555723428803, 48.85920893408429]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6cbb6ef3154b38ef02545aa80d88af845fc6dbe4", "fields": {"departement": "75", "stop_lat": 48.87425918130409, "code_postal": "75116", "stop_lon": 2.284022820285266, "coord": [48.87425918130409, 2.284022820285266], "stop_id": 3813009, "stop_desc": "129 AVENUE DE MALAKOFF - 75116", "stop_name": "ALPHAND"}, "geometry": {"type": "Point", "coordinates": [2.284022820285266, 48.87425918130409]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "52c2dd223e9a58d72d865ce7e1f8861ea5ab165f", "fields": {"departement": "75", "stop_lat": 48.87639801680339, "code_postal": "75116", "stop_lon": 2.2837072422274254, "coord": [48.87639801680339, 2.2837072422274254], "stop_id": 3813010, "stop_desc": "166 AVENUE DE MALAKOFF - 75116", "stop_name": "PORTE MAILLOT"}, "geometry": {"type": "Point", "coordinates": [2.2837072422274254, 48.87639801680339]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "43676e3c0772c05c1dfb25af400aa89e8b1d3a03", "fields": {"departement": "75", "stop_lat": 48.87656863398799, "code_postal": "75116", "stop_lon": 2.283393682964841, "coord": [48.87656863398799, 2.283393682964841], "stop_id": 3813011, "stop_desc": "155-157 AVENUE DE MALAKOFF - 75116", "stop_name": "PORTE MAILLOT"}, "geometry": {"type": "Point", "coordinates": [2.283393682964841, 48.87656863398799]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5acd6ffea063e3c9c3e6aa8a6c0fbac071d736a5", "fields": {"departement": "92", "stop_lat": 48.880215693674835, "code_postal": "92051", "stop_lon": 2.2796017800412995, "coord": [48.880215693674835, 2.2796017800412995], "stop_id": 3813013, "stop_desc": "16 RUE DE CHARTRES - 92051", "stop_name": "PARMENTIER"}, "geometry": {"type": "Point", "coordinates": [2.2796017800412995, 48.880215693674835]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "60aac91a6845ef5c21119d3fdd211787f2bf335f", "fields": {"departement": "92", "stop_lat": 48.88885395889522, "code_postal": "92051", "stop_lon": 2.265840933795836, "coord": [48.88885395889522, 2.265840933795836], "stop_id": 3813025, "stop_desc": "9 BOULEVARD DU CHATEAU - 92051", "stop_name": "PERRONET"}, "geometry": {"type": "Point", "coordinates": [2.265840933795836, 48.88885395889522]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "73d20ca051e0c5064392f25c9d5c0ff0294044a3", "fields": {"departement": "92", "stop_lat": 48.89262190476304, "code_postal": "92051", "stop_lon": 2.2698155769923516, "coord": [48.89262190476304, 2.2698155769923516], "stop_id": 3813026, "stop_desc": "70 BOULEVARD DE LA SAUSSAYE - 92051", "stop_name": "BINEAU - LA SAUSSAYE"}, "geometry": {"type": "Point", "coordinates": [2.2698155769923516, 48.89262190476304]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fcb59cec93d55b55e61e26d918668c925734c1aa", "fields": {"departement": "92", "stop_lat": 48.8859847711673, "code_postal": "92051", "stop_lon": 2.2621517454852405, "coord": [48.8859847711673, 2.2621517454852405], "stop_id": 3813030, "stop_desc": "209 AVENUE ACHILLE PERETTI OU DU ROULE - 92051", "stop_name": "GENERAL GOURAUD"}, "geometry": {"type": "Point", "coordinates": [2.2621517454852405, 48.8859847711673]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0d1770be13ac602d3ff1ae82f005445513d7d733", "fields": {"departement": "92", "stop_lat": 48.885383873230644, "code_postal": "92051", "stop_lon": 2.2641558835611693, "coord": [48.885383873230644, 2.2641558835611693], "stop_id": 3813031, "stop_desc": "185 AVENUE ACHILLE PERETTI OU DU ROULE - 92051", "stop_name": "RUE DE L'EGLISE"}, "geometry": {"type": "Point", "coordinates": [2.2641558835611693, 48.885383873230644]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fd1e75b9fa6a09c326f3c3871f720fbc7fbee7f5", "fields": {"departement": "75", "stop_lat": 48.845527910899904, "code_postal": "75115", "stop_lon": 2.3188170008674582, "coord": [48.845527910899904, 2.3188170008674582], "stop_id": 3813037, "stop_desc": "30 BOULEVARD DU MONTPARNASSE - 75115", "stop_name": "MAINE - VAUGIRARD"}, "geometry": {"type": "Point", "coordinates": [2.3188170008674582, 48.845527910899904]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b9f6b84ef4f71a95da4cee05327888a370ed595d", "fields": {"departement": "75", "stop_lat": 48.844243191296684, "code_postal": "75115", "stop_lon": 2.3223578401351035, "coord": [48.844243191296684, 2.3223578401351035], "stop_id": 3813038, "stop_desc": "62 BOULEVARD DU MONTPARNASSE - 75115", "stop_name": "PLACE DU 18 JUIN 1940"}, "geometry": {"type": "Point", "coordinates": [2.3223578401351035, 48.844243191296684]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "897765cddb2cc1c95a7303b4dc1c4b21791b4931", "fields": {"departement": "75", "stop_lat": 48.84195202597997, "code_postal": "75114", "stop_lon": 2.3291393929668964, "coord": [48.84195202597997, 2.3291393929668964], "stop_id": 3813040, "stop_desc": "106 BOULEVARD DU MONTPARNASSE - 75114", "stop_name": "VAVIN"}, "geometry": {"type": "Point", "coordinates": [2.3291393929668964, 48.84195202597997]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "399240de1d3dab93ed365aa391a8aff0d4a179c8", "fields": {"departement": "75", "stop_lat": 48.85690211239772, "code_postal": "75107", "stop_lon": 2.3015017080970694, "coord": [48.85690211239772, 2.3015017080970694], "stop_id": 3813049, "stop_desc": "77 AVENUE DE LA BOURDONNAIS - 75107", "stop_name": "CHAMP DE MARS - LA BOURDONNAIS"}, "geometry": {"type": "Point", "coordinates": [2.3015017080970694, 48.85690211239772]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dd1a02116e2b48abd5de7140d1e13e8e102cdc01", "fields": {"departement": "75", "stop_lat": 48.85154193352731, "code_postal": "75106", "stop_lon": 2.3401963360554157, "coord": [48.85154193352731, 2.3401963360554157], "stop_id": 3813067, "stop_desc": "FACE 25 RUE DE L'ECOLE DE MEDECINE - 75106", "stop_name": "SAINT-GERMAIN - ODEON"}, "geometry": {"type": "Point", "coordinates": [2.3401963360554157, 48.85154193352731]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6c2b8c0a40fbca872474ab6905a1b19a42ff69c7", "fields": {"departement": "75", "stop_lat": 48.85059796516235, "code_postal": "75105", "stop_lon": 2.345984155428729, "coord": [48.85059796516235, 2.345984155428729], "stop_id": 3813070, "stop_desc": "63 BD SAINT-GERMAIN - 75105", "stop_name": "DANTE"}, "geometry": {"type": "Point", "coordinates": [2.345984155428729, 48.85059796516235]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "25e315253db972606cd5ba283ada755674d026ad", "fields": {"departement": "75", "stop_lat": 48.85016642446109, "code_postal": "75105", "stop_lon": 2.3477408578510297, "coord": [48.85016642446109, 2.3477408578510297], "stop_id": 3813071, "stop_desc": "51 BD SAINT-GERMAIN - 75105", "stop_name": "MAUBERT - MUTUALITE"}, "geometry": {"type": "Point", "coordinates": [2.3477408578510297, 48.85016642446109]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "247327854ece6a80f998c9264b4a9fb0deaf8be2", "fields": {"departement": "75", "stop_lat": 48.85124258397393, "code_postal": "75104", "stop_lon": 2.363075725075009, "coord": [48.85124258397393, 2.363075725075009], "stop_id": 3813075, "stop_desc": "12 BOULEVARD HENRI IV - 75104", "stop_name": "SULLY - MORLAND"}, "geometry": {"type": "Point", "coordinates": [2.363075725075009, 48.85124258397393]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f18f70607a711c442b3e4967bbfd137b054ccd33", "fields": {"departement": "75", "stop_lat": 48.85220352272098, "code_postal": "75104", "stop_lon": 2.3662085612665225, "coord": [48.85220352272098, 2.3662085612665225], "stop_id": 3813077, "stop_desc": "38 BOULEVARD HENRI IV - 75104", "stop_name": "LA CERISAIE"}, "geometry": {"type": "Point", "coordinates": [2.3662085612665225, 48.85220352272098]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "941dfe5521d38d37b62988afb8b7141defab2a3b", "fields": {"departement": "75", "stop_lat": 48.85281401294961, "code_postal": "75104", "stop_lon": 2.3687965324803804, "coord": [48.85281401294961, 2.3687965324803804], "stop_id": 3813079, "stop_desc": "PLACE DE LA BASTILLE - 75104", "stop_name": "BASTILLE"}, "geometry": {"type": "Point", "coordinates": [2.3687965324803804, 48.85281401294961]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "85ee35fb8c5aabc937ec7fb10b5144c171d16193", "fields": {"departement": "75", "stop_lat": 48.84079481495786, "code_postal": "75112", "stop_lon": 2.378320391662055, "coord": [48.84079481495786, 2.378320391662055], "stop_id": 3813087, "stop_desc": "133-135 RUE DE BERCY - 75112", "stop_name": "MINISTERE DE L'ECONOMIE ET DES FINANCES"}, "geometry": {"type": "Point", "coordinates": [2.378320391662055, 48.84079481495786]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "40651a295b742244e4de21722e397fce84400021", "fields": {"departement": "75", "stop_lat": 48.838840824123245, "code_postal": "75112", "stop_lon": 2.3879041153117466, "coord": [48.838840824123245, 2.3879041153117466], "stop_id": 3813091, "stop_desc": "68 BOULEVARD DE BERCY - 75112", "stop_name": "DUGOMMIER"}, "geometry": {"type": "Point", "coordinates": [2.3879041153117466, 48.838840824123245]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "934158031f70cd681472ac31e17fd9c70f5dac33", "fields": {"departement": "75", "stop_lat": 48.83432305209836, "code_postal": "75112", "stop_lon": 2.400465664003342, "coord": [48.83432305209836, 2.400465664003342], "stop_id": 3813100, "stop_desc": "42-44 AVENUE DU GENERAL MICHEL BIZOT - 75112", "stop_name": "PORTE DE REUILLY"}, "geometry": {"type": "Point", "coordinates": [2.400465664003342, 48.83432305209836]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "edd5c6dc787e46a4561347b4c6f07693e86dc2ca", "fields": {"departement": "75", "stop_lat": 48.851756947252746, "code_postal": "75107", "stop_lon": 2.324139749041149, "coord": [48.851756947252746, 2.324139749041149], "stop_id": 3813109, "stop_desc": "RUE DE BABYLONE - 75107", "stop_name": "BAC - BABYLONE"}, "geometry": {"type": "Point", "coordinates": [2.324139749041149, 48.851756947252746]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8170244e19ea49634959041291d059d532dfb18f", "fields": {"departement": "75", "stop_lat": 48.844243191296684, "code_postal": "75115", "stop_lon": 2.3223578401351035, "coord": [48.844243191296684, 2.3223578401351035], "stop_id": 3813115, "stop_desc": "62 BOULEVARD DU MONTPARNASSE - 75115", "stop_name": "PLACE DU 18 JUIN 1940"}, "geometry": {"type": "Point", "coordinates": [2.3223578401351035, 48.844243191296684]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "db2751d15dcc4a02e24e4dd44cc98878ca046349", "fields": {"departement": "75", "stop_lat": 48.847369889708794, "code_postal": "75107", "stop_lon": 2.3160519577082312, "coord": [48.847369889708794, 2.3160519577082312], "stop_id": 3813119, "stop_desc": "56 BOULEVARD DES INVALIDES - 75107", "stop_name": "DUROC"}, "geometry": {"type": "Point", "coordinates": [2.3160519577082312, 48.847369889708794]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "55f062de27ff7e75c2211658366915c6f8e5c0dc", "fields": {"departement": "75", "stop_lat": 48.853570661304, "code_postal": "75107", "stop_lon": 2.31297146006203, "coord": [48.853570661304, 2.31297146006203], "stop_id": 3813124, "stop_desc": "PLACE VAUBAN - 75107", "stop_name": "VAUBAN - HOTEL DES INVALIDES"}, "geometry": {"type": "Point", "coordinates": [2.31297146006203, 48.853570661304]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ba5ed0fa222fb7a25ec4349baa32f643adef3bdb", "fields": {"departement": "75", "stop_lat": 48.87899060028815, "code_postal": "75117", "stop_lon": 2.2941829473245234, "coord": [48.87899060028815, 2.2941829473245234], "stop_id": 3813141, "stop_desc": "1 AVENUE NIEL - 75117", "stop_name": "TERNES - MAC MAHON"}, "geometry": {"type": "Point", "coordinates": [2.2941829473245234, 48.87899060028815]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ebe92a12049cb93598c8da6a368f51b8ea99d8c5", "fields": {"departement": "75", "stop_lat": 48.885085288442156, "code_postal": "75117", "stop_lon": 2.298048117860305, "coord": [48.885085288442156, 2.298048117860305], "stop_id": 3813146, "stop_desc": "4 BIS PLACE DU MARECHAL JUIN - 75117", "stop_name": "PEREIRE"}, "geometry": {"type": "Point", "coordinates": [2.298048117860305, 48.885085288442156]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "089a104ea61b0fd3c1597d6f90c96554d7637db1", "fields": {"departement": "75", "stop_lat": 48.887277052890184, "code_postal": "75117", "stop_lon": 2.2947893290138164, "coord": [48.887277052890184, 2.2947893290138164], "stop_id": 3813149, "stop_desc": "189 RUE DE COURCELLES - 75117", "stop_name": "PORTE DE COURCELLES"}, "geometry": {"type": "Point", "coordinates": [2.2947893290138164, 48.887277052890184]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "861bb25d62a01edbfb3a41a48d26837971800014", "fields": {"departement": "75", "stop_lat": 48.845527910899904, "code_postal": "75115", "stop_lon": 2.3188170008674582, "coord": [48.845527910899904, 2.3188170008674582], "stop_id": 3813155, "stop_desc": "30 BOULEVARD DU MONTPARNASSE - 75115", "stop_name": "MAINE - VAUGIRARD"}, "geometry": {"type": "Point", "coordinates": [2.3188170008674582, 48.845527910899904]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ba5c2c212a6de752ce9f83bcad8e4a968a24a3e1", "fields": {"departement": "75", "stop_lat": 48.838141410820995, "code_postal": "75115", "stop_lon": 2.2715202228430806, "coord": [48.838141410820995, 2.2715202228430806], "stop_id": 3813158, "stop_desc": "BD DU GENERAL MARTIAL VALIN - 75115", "stop_name": "PONT DU GARIGLIANO - HOPITAL EUROPEEN GEORGES POMPIDOU"}, "geometry": {"type": "Point", "coordinates": [2.2715202228430806, 48.838141410820995]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "85161c7fcb110f69835e513335e43ffab2b768f8", "fields": {"departement": "75", "stop_lat": 48.86076033616534, "code_postal": "75116", "stop_lon": 2.266996558099432, "coord": [48.86076033616534, 2.266996558099432], "stop_id": 3813179, "stop_desc": "3 BOULEVARD SUCHET - 75116", "stop_name": "ERNEST HEBERT"}, "geometry": {"type": "Point", "coordinates": [2.266996558099432, 48.86076033616534]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "51d3db404a627a2b14cfb8d5c6d8a59eaa73d22e", "fields": {"departement": "75", "stop_lat": 48.87670302712806, "code_postal": "75116", "stop_lon": 2.28248064254639, "coord": [48.87670302712806, 2.28248064254639], "stop_id": 3813192, "stop_desc": "FACE 9 BOULEVARD DE L'AMIRAL BRUIX - 75116", "stop_name": "PORTE MAILLOT - MALAKOFF"}, "geometry": {"type": "Point", "coordinates": [2.28248064254639, 48.87670302712806]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0d6c67aea2a0b2ec731c2fefbdc70684f2b0935e", "fields": {"departement": "75", "stop_lat": 48.87819549713169, "code_postal": "75117", "stop_lon": 2.2837598887649864, "coord": [48.87819549713169, 2.2837598887649864], "stop_id": 3813193, "stop_desc": "PLACE DE LA PORTE MAILLOT - 75117", "stop_name": "PORTE MAILLOT - PALAIS DES CONGRES"}, "geometry": {"type": "Point", "coordinates": [2.2837598887649864, 48.87819549713169]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "58d03e29a25845ed4dc99575ef6284e82d8461ae", "fields": {"departement": "75", "stop_lat": 48.88600877100075, "code_postal": "75117", "stop_lon": 2.2918467567357994, "coord": [48.88600877100075, 2.2918467567357994], "stop_id": 3813202, "stop_desc": "14 AVENUE STEPHANE MALLARME - 75117", "stop_name": "PORTE DE CHAMPERRET - STEPHANE MALLARME"}, "geometry": {"type": "Point", "coordinates": [2.2918467567357994, 48.88600877100075]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "db33cd1f8df825366d80c160460ba3db9d60086a", "fields": {"departement": "75", "stop_lat": 48.85884463692932, "code_postal": "75120", "stop_lon": 2.409812107706981, "coord": [48.85884463692932, 2.409812107706981], "stop_id": 3813314, "stop_desc": "108-112 BD DAVOUT - 75120", "stop_name": "MARIE DE MIRIBEL"}, "geometry": {"type": "Point", "coordinates": [2.409812107706981, 48.85884463692932]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d195ccba3bf94cc57ac6992a97421a68d6ce7eac", "fields": {"departement": "75", "stop_lat": 48.863545777166586, "code_postal": "75120", "stop_lon": 2.4086063337580583, "coord": [48.863545777166586, 2.4086063337580583], "stop_id": 3813317, "stop_desc": "221-211 BD DAVOUT - 75120", "stop_name": "PORTE DE BAGNOLET"}, "geometry": {"type": "Point", "coordinates": [2.4086063337580583, 48.863545777166586]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0fcec86beb423de03567ed59a59484063a04dc88", "fields": {"departement": "75", "stop_lat": 48.879268920288126, "code_postal": "75119", "stop_lon": 2.4010110065026677, "coord": [48.879268920288126, 2.4010110065026677], "stop_id": 3813324, "stop_desc": "FACE 1 BD D'ALGERIE - 75119", "stop_name": "HOPITAL ROBERT DEBRE"}, "geometry": {"type": "Point", "coordinates": [2.4010110065026677, 48.879268920288126]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2a7cf0c673e0838b054887d18a3f529c2e61124a", "fields": {"departement": "75", "stop_lat": 48.89857945243312, "code_postal": "75118", "stop_lon": 2.3592689639942424, "coord": [48.89857945243312, 2.3592689639942424], "stop_id": 3813340, "stop_desc": "31 BD NEY - 75118", "stop_name": "PORTE DE LA CHAPELLE"}, "geometry": {"type": "Point", "coordinates": [2.3592689639942424, 48.89857945243312]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "165cdacd5311755091267190b4f0876d2be18580", "fields": {"departement": "75", "stop_lat": 48.827648999329945, "code_postal": "75114", "stop_lon": 2.3062181750371833, "coord": [48.827648999329945, 2.3062181750371833], "stop_id": 3813513, "stop_desc": "FACE 17 BOULEVARD BRUNE - 75114", "stop_name": "PORTE DE VANVES"}, "geometry": {"type": "Point", "coordinates": [2.3062181750371833, 48.827648999329945]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aa989caf158100a966731ec72769bfb83b5444dc", "fields": {"departement": "75", "stop_lat": 48.825727285471544, "code_postal": "75114", "stop_lon": 2.313338399586871, "coord": [48.825727285471544, 2.313338399586871], "stop_id": 3813514, "stop_desc": "83 BOULEVARD BRUNE - 75114", "stop_name": "DIDOT"}, "geometry": {"type": "Point", "coordinates": [2.313338399586871, 48.825727285471544]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ad4f6af906ce6432b2e40822f5e47f8ad230125e", "fields": {"departement": "75", "stop_lat": 48.82456882109448, "code_postal": "75114", "stop_lon": 2.3186202708997943, "coord": [48.82456882109448, 2.3186202708997943], "stop_id": 3813516, "stop_desc": "139 BOULEVARD BRUNE - 75114", "stop_name": "JEAN MOULIN"}, "geometry": {"type": "Point", "coordinates": [2.3186202708997943, 48.82456882109448]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1c25812b5daa22109586655a06ec20415917a577", "fields": {"departement": "75", "stop_lat": 48.8228351420323, "code_postal": "75114", "stop_lon": 2.3261615200679633, "coord": [48.8228351420323, 2.3261615200679633], "stop_id": 3813518, "stop_desc": "FACE 201 BOULEVARD BRUNE - 75114", "stop_name": "PORTE D'ORLEANS"}, "geometry": {"type": "Point", "coordinates": [2.3261615200679633, 48.8228351420323]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0fd4383fa706bdceecb62d8aedf61f67ae51a9e5", "fields": {"departement": "75", "stop_lat": 48.821658208843665, "code_postal": "75114", "stop_lon": 2.3333619539764574, "coord": [48.821658208843665, 2.3333619539764574], "stop_id": 3813521, "stop_desc": "38 BD JOURDAN - 75114", "stop_name": "MONTSOURIS"}, "geometry": {"type": "Point", "coordinates": [2.3333619539764574, 48.821658208843665]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ece3dcaf9c37799a14db1901ccdf85ff45e06b0b", "fields": {"departement": "75", "stop_lat": 48.818905790809154, "code_postal": "75113", "stop_lon": 2.3603784254692677, "coord": [48.818905790809154, 2.3603784254692677], "stop_id": 3813528, "stop_desc": "FACE 164 BOULEVARD MASSENA - 75113", "stop_name": "PORTE D'ITALIE"}, "geometry": {"type": "Point", "coordinates": [2.3603784254692677, 48.818905790809154]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9a3efca3e255c87fa986667b0ea1295a9251ec2d", "fields": {"departement": "75", "stop_lat": 48.82557787011093, "code_postal": "75113", "stop_lon": 2.38093545833066, "coord": [48.82557787011093, 2.38093545833066], "stop_id": 3813537, "stop_desc": "BD DU GENERAL JEAN SIMON - 75113", "stop_name": "AVENUE DE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.38093545833066, 48.82557787011093]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8397c360b334f3a30756d26d5da8c659c978a858", "fields": {"departement": "75", "stop_lat": 48.81884297364722, "code_postal": "75113", "stop_lon": 2.359874820335962, "coord": [48.81884297364722, 2.359874820335962], "stop_id": 3864876, "stop_desc": "FACE 164 BOULEVARD MASSENA - 75113", "stop_name": "PORTE D'ITALIE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.359874820335962, 48.81884297364722]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fcb4b32204d99c07b39cecb9c10ef35ea36e9e90", "fields": {"departement": "94", "stop_lat": 48.81476240384012, "code_postal": "94043", "stop_lon": 2.360621543737651, "coord": [48.81476240384012, 2.360621543737651], "stop_id": 3864877, "stop_desc": "18 AVENUE DE FONTAINEBLEAU - 94043", "stop_name": "ROGER SALENGRO - FONTAINEBLEAU"}, "geometry": {"type": "Point", "coordinates": [2.360621543737651, 48.81476240384012]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1971be7c5905a90eef75d020a66b0e6a2c4dba79", "fields": {"departement": "94", "stop_lat": 48.81209279119115, "code_postal": "94043", "stop_lon": 2.361872316889022, "coord": [48.81209279119115, 2.361872316889022], "stop_id": 3864880, "stop_desc": "41-43 AVENUE DE FONTAINEBLEAU - 94043", "stop_name": "CONVENTION - FONTAINEBLEAU"}, "geometry": {"type": "Point", "coordinates": [2.361872316889022, 48.81209279119115]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "972b56d8f331ad7f365a4b3e512c42d461f13bcd", "fields": {"departement": "94", "stop_lat": 48.80558634105472, "code_postal": "94043", "stop_lon": 2.3582090243525666, "coord": [48.80558634105472, 2.3582090243525666], "stop_id": 3864885, "stop_desc": "16-16BIS BOULEVARD CHASTENET DE GERY - 94043", "stop_name": "CHASTENET DE GERY"}, "geometry": {"type": "Point", "coordinates": [2.3582090243525666, 48.80558634105472]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "24571a26944113ce3c7a315eabbb72847a8c826e", "fields": {"departement": "94", "stop_lat": 48.80076035769578, "code_postal": "94076", "stop_lon": 2.3553091150312904, "coord": [48.80076035769578, 2.3553091150312904], "stop_id": 3864887, "stop_desc": "FACE 4 BOULEVARD CHASTENET DE GERY - 94076", "stop_name": "AMBROISE CROIZAT"}, "geometry": {"type": "Point", "coordinates": [2.3553091150312904, 48.80076035769578]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a1c58d4ddd35a248a0d80c6d7039bd6ff48ccee7", "fields": {"departement": "94", "stop_lat": 48.800535643137906, "code_postal": "94076", "stop_lon": 2.3554314854308616, "coord": [48.800535643137906, 2.3554314854308616], "stop_id": 3864888, "stop_desc": "2 BOULEVARD CHASTENET DE GERY - 94076", "stop_name": "AMBROISE CROIZAT"}, "geometry": {"type": "Point", "coordinates": [2.3554314854308616, 48.800535643137906]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "126a92707aea9d5b76d389a52a1361a7cccbaf26", "fields": {"departement": "94", "stop_lat": 48.78765619122067, "code_postal": "94076", "stop_lon": 2.3541755913822158, "coord": [48.78765619122067, 2.3541755913822158], "stop_id": 3864896, "stop_desc": "FACE 2 RUE DE VERDUN - 94076", "stop_name": "VERDUN - REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.3541755913822158, 48.78765619122067]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8f692b6bd170554cb65f513fe0a73f1ffdac7b78", "fields": {"departement": "94", "stop_lat": 48.78490582321585, "code_postal": "94076", "stop_lon": 2.354582734218751, "coord": [48.78490582321585, 2.354582734218751], "stop_id": 3864898, "stop_desc": "FACE 48 RUE DE CHEVILLY - 94076", "stop_name": "LES LOZAITS"}, "geometry": {"type": "Point", "coordinates": [2.354582734218751, 48.78490582321585]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9da65d53a299ef79d5e49ca7dffca2aad2f58e81", "fields": {"departement": "94", "stop_lat": 48.7775716281211, "code_postal": "94038", "stop_lon": 2.354634684879699, "coord": [48.7775716281211, 2.354634684879699], "stop_id": 3864901, "stop_desc": "141 RUE DE BICETRE - 94038", "stop_name": "LES DAHLIAS"}, "geometry": {"type": "Point", "coordinates": [2.354634684879699, 48.7775716281211]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b04d83bfd0321909ff221dc66ff8ba6020ee84c1", "fields": {"departement": "94", "stop_lat": 48.775693340248715, "code_postal": "94038", "stop_lon": 2.3531653765116993, "coord": [48.775693340248715, 2.3531653765116993], "stop_id": 3864903, "stop_desc": "105 RUE DE BICETRE - 94038", "stop_name": "LES COQUELICOTS"}, "geometry": {"type": "Point", "coordinates": [2.3531653765116993, 48.775693340248715]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "62e4d63118ecb0a0a809ffe0558357429e140330", "fields": {"departement": "94", "stop_lat": 48.772395787216, "code_postal": "94021", "stop_lon": 2.3389680290446595, "coord": [48.772395787216, 2.3389680290446595], "stop_id": 3864907, "stop_desc": "40 BOULEVARD JEAN MERMOZ - 94021", "stop_name": "JEAN MERMOZ - GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.3389680290446595, 48.772395787216]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "38d14aeec4c3342492684fc92577793349c11aaa", "fields": {"departement": "94", "stop_lat": 48.76408182149031, "code_postal": "94021", "stop_lon": 2.3392396714462205, "coord": [48.76408182149031, 2.3392396714462205], "stop_id": 3864914, "stop_desc": "AVENUE GEORGES GUYNEMER - 94021", "stop_name": "PARC DES SPORTS"}, "geometry": {"type": "Point", "coordinates": [2.3392396714462205, 48.76408182149031]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b52061f1d5cea3d5d499a53ce8cbd42a37936c13", "fields": {"departement": "94", "stop_lat": 48.752639667584056, "code_postal": "94065", "stop_lon": 2.345315240123827, "coord": [48.752639667584056, 2.345315240123827], "stop_id": 3864921, "stop_desc": "12 AVENUE DES ANTES - 94065", "stop_name": "LES ANTES"}, "geometry": {"type": "Point", "coordinates": [2.345315240123827, 48.752639667584056]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d110992cb1fb932ba0db2480bcc492f242b46a99", "fields": {"departement": "94", "stop_lat": 48.75041943615605, "code_postal": "94065", "stop_lon": 2.34728577550244, "coord": [48.75041943615605, 2.34728577550244], "stop_id": 3864923, "stop_desc": "FACE 24 AVENUE LUCIEN GRELINGER - 94065", "stop_name": "PLACE LOUIS XIII"}, "geometry": {"type": "Point", "coordinates": [2.34728577550244, 48.75041943615605]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b267baac96fb1b61a0a9d78a5da99d6c2db19222", "fields": {"departement": "94", "stop_lat": 48.745987423719335, "code_postal": "94065", "stop_lon": 2.354488211356527, "coord": [48.745987423719335, 2.354488211356527], "stop_id": 3864928, "stop_desc": "43 AVENUE ROBERT SCHUMAN - 94065", "stop_name": "ROBERT SCHUMAN"}, "geometry": {"type": "Point", "coordinates": [2.354488211356527, 48.745987423719335]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "631a23aacf86db00112625ed543cc84290cd2fc0", "fields": {"departement": "94", "stop_lat": 48.74672408000925, "code_postal": "94065", "stop_lon": 2.3569212998815887, "coord": [48.74672408000925, 2.3569212998815887], "stop_id": 3864931, "stop_desc": "40 - 48 RUE D'ARCUEIL - 94065", "stop_name": "RUE D'ARCUEIL"}, "geometry": {"type": "Point", "coordinates": [2.3569212998815887, 48.74672408000925]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "05fc0134d3b25f1fead6b8a3a88aab7eb37c3639", "fields": {"departement": "92", "stop_lat": 48.88719228663093, "code_postal": "92026", "stop_lon": 2.2535097512693967, "coord": [48.88719228663093, 2.2535097512693967], "stop_id": 3877769, "stop_desc": "BRETELLE PONT DE NEUILLY - 92026", "stop_name": "PONT DE NEUILLY - RIVE GAUCHE"}, "geometry": {"type": "Point", "coordinates": [2.2535097512693967, 48.88719228663093]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "30f81cf849c8310abc5a7aaade545bd7cded0f36", "fields": {"departement": "92", "stop_lat": 48.88558764307915, "code_postal": "92062", "stop_lon": 2.246780247316581, "coord": [48.88558764307915, 2.246780247316581], "stop_id": 3877774, "stop_desc": "14 RUE PAUL LAFARGUE - 92062", "stop_name": "PAUL LAFARGUE"}, "geometry": {"type": "Point", "coordinates": [2.246780247316581, 48.88558764307915]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "874ff70dc57c14b12e843c75df032b7c0fa8be5f", "fields": {"departement": "92", "stop_lat": 48.88552755066137, "code_postal": "92050", "stop_lon": 2.2191842324841113, "coord": [48.88552755066137, 2.2191842324841113], "stop_id": 3877786, "stop_desc": "272 AVENUE GEORGES CLEMENCEAU - 92050", "stop_name": "LES FONTENELLES"}, "geometry": {"type": "Point", "coordinates": [2.2191842324841113, 48.88552755066137]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8403ded28fca1c6fb90295a4eba3f2e180844cd0", "fields": {"departement": "92", "stop_lat": 48.885918139125366, "code_postal": "92050", "stop_lon": 2.2143863501236374, "coord": [48.885918139125366, 2.2143863501236374], "stop_id": 3877788, "stop_desc": "196 AVENUE GEORGES CLEMENCEAU - 92050", "stop_name": "FELIX FAURE"}, "geometry": {"type": "Point", "coordinates": [2.2143863501236374, 48.885918139125366]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "463574df13827584b7a0523ab8ed1257a0e2327a", "fields": {"departement": "92", "stop_lat": 48.888311386542, "code_postal": "92050", "stop_lon": 2.192711436545793, "coord": [48.888311386542, 2.192711436545793], "stop_id": 3877797, "stop_desc": "42-50 AVENUE LENINE - 92050", "stop_name": "FOCH"}, "geometry": {"type": "Point", "coordinates": [2.192711436545793, 48.888311386542]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e12d7c699bce8c250b3ca1d073b1c15aa76019e7", "fields": {"departement": "92", "stop_lat": 48.88808864627775, "code_postal": "92050", "stop_lon": 2.194320208603867, "coord": [48.88808864627775, 2.194320208603867], "stop_id": 3877798, "stop_desc": "41 AVENUE LENINE - 92050", "stop_name": "FOCH"}, "geometry": {"type": "Point", "coordinates": [2.194320208603867, 48.88808864627775]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bf420eff77b967c2db9de120116d2fbb37e2da49", "fields": {"departement": "92", "stop_lat": 48.88819351793492, "code_postal": "92050", "stop_lon": 2.1846709935428845, "coord": [48.88819351793492, 2.1846709935428845], "stop_id": 3877801, "stop_desc": "FACE 85 BOULEVARD NATIONAL - 92050", "stop_name": "RUE DU MANS"}, "geometry": {"type": "Point", "coordinates": [2.1846709935428845, 48.88819351793492]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e8fe6c873049fc25e7b2d48d733774f82480d16d", "fields": {"departement": "92", "stop_lat": 48.88996835437114, "code_postal": "92050", "stop_lon": 2.1810949979951317, "coord": [48.88996835437114, 2.1810949979951317], "stop_id": 3877802, "stop_desc": "150 BOULEVARD NATIONAL - 92050", "stop_name": "CITE DU VIEUX PONT"}, "geometry": {"type": "Point", "coordinates": [2.1810949979951317, 48.88996835437114]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "16716e019b359553b01e013d9586f49db602ff41", "fields": {"departement": "92", "stop_lat": 48.88713332902822, "code_postal": "92063", "stop_lon": 2.1714411794210378, "coord": [48.88713332902822, 2.1714411794210378], "stop_id": 3877804, "stop_desc": "GARE ROUTIERE QUAI N 4 - 92063", "stop_name": "RUEIL-MALMAISON RER"}, "geometry": {"type": "Point", "coordinates": [2.1714411794210378, 48.88713332902822]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "996a101eadf3fbdcf37c0ae767f385e5f85a1270", "fields": {"departement": "92", "stop_lat": 48.887097740222536, "code_postal": "92063", "stop_lon": 2.171700228013538, "coord": [48.887097740222536, 2.171700228013538], "stop_id": 3877805, "stop_desc": "GARE ROUTIERE - 92063", "stop_name": "RUEIL-MALMAISON RER"}, "geometry": {"type": "Point", "coordinates": [2.171700228013538, 48.887097740222536]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ee34f050d986e39adf316fb994315358331bc4c7", "fields": {"departement": "92", "stop_lat": 48.90600841121363, "code_postal": "92050", "stop_lon": 2.2096216545626723, "coord": [48.90600841121363, 2.2096216545626723], "stop_id": 3887638, "stop_desc": "AVENUE DE LA COMMUNE DE PARIS - 92050", "stop_name": "UNIVERSITE PARIS X"}, "geometry": {"type": "Point", "coordinates": [2.2096216545626723, 48.90600841121363]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "72822a549eac5071fe1ea9194823da19130e8672", "fields": {"departement": "92", "stop_lat": 48.90320124278047, "code_postal": "92050", "stop_lon": 2.2066703453244894, "coord": [48.90320124278047, 2.2066703453244894], "stop_id": 3887639, "stop_desc": "152 AVENUE DE LA REPUBLIQUE - 92050", "stop_name": "JEAN BAILLET"}, "geometry": {"type": "Point", "coordinates": [2.2066703453244894, 48.90320124278047]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9038825870d36cc3e58b8ef67b179646e8d8d6b6", "fields": {"departement": "92", "stop_lat": 48.9235833559115, "code_postal": "92025", "stop_lon": 2.2569830831008257, "coord": [48.9235833559115, 2.2569830831008257], "stop_id": 3887647, "stop_desc": "75 RUE DU BOURNARD - 92025", "stop_name": "RHIN ET DANUBE"}, "geometry": {"type": "Point", "coordinates": [2.2569830831008257, 48.9235833559115]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bdbe8f5ab2437e7653527e7b9f919428e6e3e5d9", "fields": {"departement": "92", "stop_lat": 48.917347201824406, "code_postal": "92025", "stop_lon": 2.2246343224359464, "coord": [48.917347201824406, 2.2246343224359464], "stop_id": 3887657, "stop_desc": "R DU PRESIDENT SALVADOR ALLENDE - 92025", "stop_name": "PARC PIERRE LAGRAVERE"}, "geometry": {"type": "Point", "coordinates": [2.2246343224359464, 48.917347201824406]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "52abece3b6bbe9f71b48746bed1453fc3e6d5688", "fields": {"departement": "92", "stop_lat": 48.909502279380625, "code_postal": "92050", "stop_lon": 2.2162255493330205, "coord": [48.909502279380625, 2.2162255493330205], "stop_id": 3887661, "stop_desc": "FACE 1 RUE DES SAULES - 92050", "stop_name": "LES SAULES"}, "geometry": {"type": "Point", "coordinates": [2.2162255493330205, 48.909502279380625]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "36bc6bea1bbd81b98e1cf94458c7c57a799991ec", "fields": {"departement": "92", "stop_lat": 48.90363625264017, "code_postal": "92050", "stop_lon": 2.2187476273088236, "coord": [48.90363625264017, 2.2187476273088236], "stop_id": 3887664, "stop_desc": "VOIE LATERALE - 92050", "stop_name": "NOEL PONS"}, "geometry": {"type": "Point", "coordinates": [2.2187476273088236, 48.90363625264017]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1cb5005ccc57d1e47e6300b35a140c15b6a84aef", "fields": {"departement": "92", "stop_lat": 48.89174434180097, "code_postal": "92050", "stop_lon": 2.208239328971497, "coord": [48.89174434180097, 2.208239328971497], "stop_id": 3887670, "stop_desc": "AVENUE FREDERIC ET IRENE JOLIOT CURIE - 92050", "stop_name": "MAIRIE DE NANTERRE"}, "geometry": {"type": "Point", "coordinates": [2.208239328971497, 48.89174434180097]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "03789d78c59e8d42138c56142652f629b09f57fa", "fields": {"departement": "92", "stop_lat": 48.88938573912001, "code_postal": "92050", "stop_lon": 2.2046335852696703, "coord": [48.88938573912001, 2.2046335852696703], "stop_id": 3887675, "stop_desc": "92 AVENUE FREDERIC ET IRENE JOLIOT CURIE - 92050", "stop_name": "SADI-CARNOT - JOLIOT-CURIE"}, "geometry": {"type": "Point", "coordinates": [2.2046335852696703, 48.88938573912001]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fb494a59bdf88ff26d1fd924382d173d979db8ad", "fields": {"departement": "92", "stop_lat": 48.89652359969501, "code_postal": "92050", "stop_lon": 2.214947321784785, "coord": [48.89652359969501, 2.214947321784785], "stop_id": 3887679, "stop_desc": "BOULEVARD JACQUES GERMAIN SOUFFLOT - 92050", "stop_name": "PREFECTURE DES HAUTS-DE-SEINE"}, "geometry": {"type": "Point", "coordinates": [2.214947321784785, 48.89652359969501]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "251514a5895abf16c56695341c047259c86479cf", "fields": {"departement": "92", "stop_lat": 48.9010536621827, "code_postal": "92050", "stop_lon": 2.2154819015010276, "coord": [48.9010536621827, 2.2154819015010276], "stop_id": 3887681, "stop_desc": "BOULEVARD DES PROVINCES FRANCAISES - 92050", "stop_name": "GARE DE NANTERRE - UNIVERSITE RER"}, "geometry": {"type": "Point", "coordinates": [2.2154819015010276, 48.9010536621827]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "991a2d44d3637301e1a3d741177454f1f35b55c8", "fields": {"departement": "92", "stop_lat": 48.912206021163, "code_postal": "92050", "stop_lon": 2.22399103145728, "coord": [48.912206021163, 2.22399103145728], "stop_id": 3887686, "stop_desc": "FACE 403 AVENUE DE LA REPUBLIQUE - 92050", "stop_name": "HOPITAL DE NANTERRE"}, "geometry": {"type": "Point", "coordinates": [2.22399103145728, 48.912206021163]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "96217f98633a6859928afda00dfd0a541fb5876d", "fields": {"departement": "92", "stop_lat": 48.914924620432, "code_postal": "92025", "stop_lon": 2.2288529425389245, "coord": [48.914924620432, 2.2288529425389245], "stop_id": 3887687, "stop_desc": "154 BD CHARLES DE GAULLE - 92025", "stop_name": "VICTOR BASCH"}, "geometry": {"type": "Point", "coordinates": [2.2288529425389245, 48.914924620432]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7cbd78ac31cb168eeb7d6ff32d45b690c1ad47d7", "fields": {"departement": "92", "stop_lat": 48.90320124278047, "code_postal": "92050", "stop_lon": 2.2066703453244894, "coord": [48.90320124278047, 2.2066703453244894], "stop_id": 3887706, "stop_desc": "152 AVENUE DE LA REPUBLIQUE - 92050", "stop_name": "JEAN BAILLET"}, "geometry": {"type": "Point", "coordinates": [2.2066703453244894, 48.90320124278047]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "44cf8e3c880bbc3347ad818a314aa7e276cf099f", "fields": {"departement": "92", "stop_lat": 48.909016979537306, "code_postal": "92050", "stop_lon": 2.2162266830020974, "coord": [48.909016979537306, 2.2162266830020974], "stop_id": 3887709, "stop_desc": "334 AVENUE DE LA REPUBLIQUE - 92050", "stop_name": "LES SAULES"}, "geometry": {"type": "Point", "coordinates": [2.2162266830020974, 48.909016979537306]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4b0845ec8882b02c014cbf21bf34145eabd4b5b4", "fields": {"departement": "92", "stop_lat": 48.91042239419866, "code_postal": "92050", "stop_lon": 2.219659234743806, "coord": [48.91042239419866, 2.219659234743806], "stop_id": 3887710, "stop_desc": "354 AVENUE DE LA REPUBLIQUE - 92050", "stop_name": "LES ORMES"}, "geometry": {"type": "Point", "coordinates": [2.219659234743806, 48.91042239419866]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dd239f8f0568f6bf5dede27f9702092332fe1d72", "fields": {"departement": "92", "stop_lat": 48.914924620432, "code_postal": "92025", "stop_lon": 2.2288529425389245, "coord": [48.914924620432, 2.2288529425389245], "stop_id": 3887719, "stop_desc": "154 BD CHARLES DE GAULLE - 92025", "stop_name": "VICTOR BASCH"}, "geometry": {"type": "Point", "coordinates": [2.2288529425389245, 48.914924620432]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0c612b998cff1aaf958cfb7523cebcdcfe6b1840", "fields": {"departement": "92", "stop_lat": 48.91925830204555, "code_postal": "92004", "stop_lon": 2.3134315850183285, "coord": [48.91925830204555, 2.3134315850183285], "stop_id": 5009396, "stop_desc": "RUE PIERRE CURIE - 92004", "stop_name": "LES GRESILLONS RER"}, "geometry": {"type": "Point", "coordinates": [2.3134315850183285, 48.91925830204555]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6cc136b58c98868859bc1578f17b9130025e7d27", "fields": {"departement": "92", "stop_lat": 48.92309594091905, "code_postal": "92004", "stop_lon": 2.285663691765125, "coord": [48.92309594091905, 2.285663691765125], "stop_id": 5009405, "stop_desc": "2 RUE EMILE ZOLA - 92004", "stop_name": "LES AGNETTES"}, "geometry": {"type": "Point", "coordinates": [2.285663691765125, 48.92309594091905]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2004a3d8b35d5983563f5dc721c251d41011c6c2", "fields": {"departement": "92", "stop_lat": 48.92424308414592, "code_postal": "92004", "stop_lon": 2.278761776155866, "coord": [48.92424308414592, 2.278761776155866], "stop_id": 5009407, "stop_desc": "182 RUE DU MESNIL - 92004", "stop_name": "ABBE LEMIRE"}, "geometry": {"type": "Point", "coordinates": [2.278761776155866, 48.92424308414592]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b3ad9d8e2bca9a99232434189b101c6c8c28a381", "fields": {"departement": "92", "stop_lat": 48.92822094965031, "code_postal": "92004", "stop_lon": 2.2723060650553872, "coord": [48.92822094965031, 2.2723060650553872], "stop_id": 5009409, "stop_desc": "4 AVENUE D'ORGEMONT - 92004", "stop_name": "ROBERT LAVERGNE"}, "geometry": {"type": "Point", "coordinates": [2.2723060650553872, 48.92822094965031]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "03fe2966546711533344080e64e8eed08a8b04aa", "fields": {"departement": "92", "stop_lat": 48.92322901063561, "code_postal": "92025", "stop_lon": 2.251446755100315, "coord": [48.92322901063561, 2.251446755100315], "stop_id": 5009439, "stop_desc": "14 BIS RUE GABRIEL PERI - 92025", "stop_name": "EGLISE DE COLOMBES"}, "geometry": {"type": "Point", "coordinates": [2.251446755100315, 48.92322901063561]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e0ffb9872fe97b2e75d5b67a15f48a27df062aea", "fields": {"departement": "75", "stop_lat": 48.878107383214136, "code_postal": "75110", "stop_lon": 2.354586637385039, "coord": [48.878107383214136, 2.354586637385039], "stop_id": 5018142, "stop_desc": "110 BOULEVARD DE MAGENTA - 75110", "stop_name": "LA FAYETTE - MAGENTA - GARE DU NORD"}, "geometry": {"type": "Point", "coordinates": [2.354586637385039, 48.878107383214136]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "62cc367a557ad62de15cfb5afcfea9cc216daf1c", "fields": {"departement": "75", "stop_lat": 48.881334194288584, "code_postal": "75110", "stop_lon": 2.351712503852361, "coord": [48.881334194288584, 2.351712503852361], "stop_id": 5018144, "stop_desc": "140-142 BOULEVARD DE MAGENTA - 75110", "stop_name": "MAGENTA - MAUBEUGE - GARE DU NORD"}, "geometry": {"type": "Point", "coordinates": [2.351712503852361, 48.881334194288584]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7c362e7147ef14d46927515659cf5752f1dc939f", "fields": {"departement": "75", "stop_lat": 48.888325096155334, "code_postal": "75117", "stop_lon": 2.315217499247105, "coord": [48.888325096155334, 2.315217499247105], "stop_id": 5018167, "stop_desc": "145 RUE CARDINET - 75117", "stop_name": "PONT CARDINET"}, "geometry": {"type": "Point", "coordinates": [2.315217499247105, 48.888325096155334]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7ada44f3b8d316d632527af590b0ebd9e0f83c10", "fields": {"departement": "75", "stop_lat": 48.8750554120297, "code_postal": "75108", "stop_lon": 2.2977695785253514, "coord": [48.8750554120297, 2.2977695785253514], "stop_id": 5018181, "stop_desc": "54 AV HOCHE - 75108", "stop_name": "CHARLES DE GAULLE - ETOILE"}, "geometry": {"type": "Point", "coordinates": [2.2977695785253514, 48.8750554120297]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c05e6e13b52bfbd30abd8ec5d58acb115eb41f72", "fields": {"departement": "75", "stop_lat": 48.87908213185015, "code_postal": "75117", "stop_lon": 2.2990473564705924, "coord": [48.87908213185015, 2.2990473564705924], "stop_id": 5018184, "stop_desc": "54 AVENUE WAGRAM - 75117", "stop_name": "TERNES"}, "geometry": {"type": "Point", "coordinates": [2.2990473564705924, 48.87908213185015]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "94fd8f8842f4f06495bd9f3bb7baf3c12bf63a87", "fields": {"departement": "75", "stop_lat": 48.87374046011082, "code_postal": "75109", "stop_lon": 2.327989951615834, "coord": [48.87374046011082, 2.327989951615834], "stop_id": 5018189, "stop_desc": "64-66 BOULEVARD HAUSSMANN - 75109", "stop_name": "HAVRE - CAUMARTIN"}, "geometry": {"type": "Point", "coordinates": [2.327989951615834, 48.87374046011082]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4acfb3e2704d47bcfbd7e537f44094cd6e613551", "fields": {"departement": "75", "stop_lat": 48.88891841168186, "code_postal": "75117", "stop_lon": 2.316103105578142, "coord": [48.88891841168186, 2.316103105578142], "stop_id": 5018203, "stop_desc": "152 RUE CARDINET - 75117", "stop_name": "PARC MARTIN LUTHER KING"}, "geometry": {"type": "Point", "coordinates": [2.316103105578142, 48.88891841168186]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "14321f2a4f36e693ce34b7ca1d635309a801fc8b", "fields": {"departement": "75", "stop_lat": 48.891273377913336, "code_postal": "75117", "stop_lon": 2.3180102343336593, "coord": [48.891273377913336, 2.3180102343336593], "stop_id": 5018206, "stop_desc": "157 RUE CARDINET - 75117", "stop_name": "BROCHANT - CARDINET"}, "geometry": {"type": "Point", "coordinates": [2.3180102343336593, 48.891273377913336]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "da68b992c23b15af4d5a0bd88beb6e1478ba5e2a", "fields": {"departement": "75", "stop_lat": 48.89899384258199, "code_postal": "75117", "stop_lon": 2.3214288094033497, "coord": [48.89899384258199, 2.3214288094033497], "stop_id": 5018213, "stop_desc": "1 BOULEVARD DU BOIS LE PRETRE - 75117", "stop_name": "BOIS LE PRETRE"}, "geometry": {"type": "Point", "coordinates": [2.3214288094033497, 48.89899384258199]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8d616c5f6e6d59579ebc9ad67e1290cb23760493", "fields": {"departement": "92", "stop_lat": 48.900125711611764, "code_postal": "92024", "stop_lon": 2.3179796838881623, "coord": [48.900125711611764, 2.3179796838881623], "stop_id": 5018214, "stop_desc": "6 BOULEVARD DU GENERAL LECLERC - 92024", "stop_name": "FLOREAL"}, "geometry": {"type": "Point", "coordinates": [2.3179796838881623, 48.900125711611764]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6cce61ecea7fe39653f81e153da2e5ce88bce74f", "fields": {"departement": "75", "stop_lat": 48.874062503585236, "code_postal": "75110", "stop_lon": 2.3583048250119405, "coord": [48.874062503585236, 2.3583048250119405], "stop_id": 5018332, "stop_desc": "119 RUE DU FAUBOURG SAINT-MARTIN - 75110", "stop_name": "MAGENTA - SAINT-MARTIN"}, "geometry": {"type": "Point", "coordinates": [2.3583048250119405, 48.874062503585236]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "23186175ed14bf1cae5deb2a7b1f13d2af454f45", "fields": {"departement": "75", "stop_lat": 48.84944725540877, "code_postal": "75105", "stop_lon": 2.3495246995987396, "coord": [48.84944725540877, 2.3495246995987396], "stop_id": 5018343, "stop_desc": "3 RUE MONGE - 75105", "stop_name": "MAUBERT - MUTUALITE"}, "geometry": {"type": "Point", "coordinates": [2.3495246995987396, 48.84944725540877]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "edc1bb4523499cbfd753b1fb7ae165b99ce464b8", "fields": {"departement": "75", "stop_lat": 48.84097177701128, "code_postal": "75105", "stop_lon": 2.3517557184666833, "coord": [48.84097177701128, 2.3517557184666833], "stop_id": 5018348, "stop_desc": "96 RUE MONGE - 75105", "stop_name": "CENSIER - DAUBENTON"}, "geometry": {"type": "Point", "coordinates": [2.3517557184666833, 48.84097177701128]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "929174ea5220eaf2974847ab8affe88a7440f1bd", "fields": {"departement": "75", "stop_lat": 48.83891375330678, "code_postal": "75105", "stop_lon": 2.350679522020371, "coord": [48.83891375330678, 2.350679522020371], "stop_id": 5018350, "stop_desc": "118 RUE MONGE - 75105", "stop_name": "MONGE - CLAUDE BERNARD"}, "geometry": {"type": "Point", "coordinates": [2.350679522020371, 48.83891375330678]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "72f21982042d41fef784d76c7e3f1d2273e2f425", "fields": {"departement": "75", "stop_lat": 48.834176950124636, "code_postal": "75113", "stop_lon": 2.3534828245635113, "coord": [48.834176950124636, 2.3534828245635113], "stop_id": 5018353, "stop_desc": "50 AVENUE DES GOBELINS - 75113", "stop_name": "BANQUIER"}, "geometry": {"type": "Point", "coordinates": [2.3534828245635113, 48.834176950124636]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9187f3fded1dc328e067d069bf2ba39634e9aaf9", "fields": {"departement": "75", "stop_lat": 48.830545620330376, "code_postal": "75113", "stop_lon": 2.3557823301132745, "coord": [48.830545620330376, 2.3557823301132745], "stop_id": 5018357, "stop_desc": "6-8 AVENUE D'ITALIE - 75113", "stop_name": "CENTRE COMMERCIAL ITALIE 2"}, "geometry": {"type": "Point", "coordinates": [2.3557823301132745, 48.830545620330376]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8c7f465556ef87658dd6f6177e28549d70ece0a3", "fields": {"departement": "75", "stop_lat": 48.82764247186972, "code_postal": "75113", "stop_lon": 2.356679718554963, "coord": [48.82764247186972, 2.356679718554963], "stop_id": 5018358, "stop_desc": "52 AVENUE D'ITALIE - 75113", "stop_name": "VANDREZANNE"}, "geometry": {"type": "Point", "coordinates": [2.356679718554963, 48.82764247186972]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "90e7fede09ed48f1225ac372feb3e1060b0f1408", "fields": {"departement": "75", "stop_lat": 48.82247424034754, "code_postal": "75113", "stop_lon": 2.3585833443279376, "coord": [48.82247424034754, 2.3585833443279376], "stop_id": 5018363, "stop_desc": "109 AVENUE D'ITALIE - 75113", "stop_name": "MAISON BLANCHE"}, "geometry": {"type": "Point", "coordinates": [2.3585833443279376, 48.82247424034754]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "41ea3e413cc9eedec0abfdb329fd82eabbc09c2b", "fields": {"departement": "75", "stop_lat": 48.81946318939424, "code_postal": "75113", "stop_lon": 2.3595348317669615, "coord": [48.81946318939424, 2.3595348317669615], "stop_id": 5018365, "stop_desc": "159 AVENUE D'ITALIE - 75113", "stop_name": "PORTE D'ITALIE"}, "geometry": {"type": "Point", "coordinates": [2.3595348317669615, 48.81946318939424]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2fa914be4539d43c6ec4bee2a42b47fc5b7c9ac7", "fields": {"departement": "94", "stop_lat": 48.814771316142455, "code_postal": "94043", "stop_lon": 2.361002603265579, "coord": [48.814771316142455, 2.361002603265579], "stop_id": 5018369, "stop_desc": "17 AVENUE DE FONTAINEBLEAU - 94043", "stop_name": "ROGER SALENGRO - FONTAINEBLEAU"}, "geometry": {"type": "Point", "coordinates": [2.361002603265579, 48.814771316142455]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "330a142538022f08595d3aa32fb6be10d47e0987", "fields": {"departement": "75", "stop_lat": 48.85182010268793, "code_postal": "75105", "stop_lon": 2.3479318560576297, "coord": [48.85182010268793, 2.3479318560576297], "stop_id": 5018383, "stop_desc": "3-5 RUE LAGRANGE - 75105", "stop_name": "LAGRANGE"}, "geometry": {"type": "Point", "coordinates": [2.3479318560576297, 48.85182010268793]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "18330d364975435e2901a18d8d1f90c513648c2d", "fields": {"departement": "75", "stop_lat": 48.85258403108319, "code_postal": "75105", "stop_lon": 2.348000108567692, "coord": [48.85258403108319, 2.348000108567692], "stop_id": 5018384, "stop_desc": "QUAI DE MONTEBELLO - 75105", "stop_name": "NOTRE-DAME - QUAI DE MONTEBELLO"}, "geometry": {"type": "Point", "coordinates": [2.348000108567692, 48.85258403108319]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c566c30fc87d42a59d00907b45df45c2456b1e07", "fields": {"departement": "75", "stop_lat": 48.85534333466014, "code_postal": "75101", "stop_lon": 2.346107532202977, "coord": [48.85534333466014, 2.346107532202977], "stop_id": 5018385, "stop_desc": "1 BOULEVARD DU PALAIS - 75101", "stop_name": "CITE - PALAIS DE JUSTICE"}, "geometry": {"type": "Point", "coordinates": [2.346107532202977, 48.85534333466014]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "580e78a16c820ee137fa1a65934164fbc66b5487", "fields": {"departement": "75", "stop_lat": 48.86069953105734, "code_postal": "75104", "stop_lon": 2.34956822574239, "coord": [48.86069953105734, 2.34956822574239], "stop_id": 5018387, "stop_desc": "28 BOULEVARD DE SEBASTOPOL - 75104", "stop_name": "LES HALLES - CENTRE GEORGES POMPIDOU"}, "geometry": {"type": "Point", "coordinates": [2.34956822574239, 48.86069953105734]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "47121b57c6740d0a4541d48022534cbbd9e65fc9", "fields": {"departement": "75", "stop_lat": 48.87593186637593, "code_postal": "75110", "stop_lon": 2.358278333713854, "coord": [48.87593186637593, 2.358278333713854], "stop_id": 5018392, "stop_desc": "FACE 93 BOULEVARD DE STRASBOURG - 75110", "stop_name": "GARE DE L'EST"}, "geometry": {"type": "Point", "coordinates": [2.358278333713854, 48.87593186637593]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "574a6d2f870579160c23b81c00f52511d2fe1a31", "fields": {"departement": "75", "stop_lat": 48.83175010758925, "code_postal": "75113", "stop_lon": 2.35481619616892, "coord": [48.83175010758925, 2.35481619616892], "stop_id": 5018410, "stop_desc": "6 PLACE D'ITALIE - 75113", "stop_name": "PLACE D'ITALIE - MAIRIE DU 13E"}, "geometry": {"type": "Point", "coordinates": [2.35481619616892, 48.83175010758925]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "310b6f8cea2568e2761456441a528cd366599ebd", "fields": {"departement": "94", "stop_lat": 48.805093501623176, "code_postal": "94043", "stop_lon": 2.346452733070576, "coord": [48.805093501623176, 2.346452733070576], "stop_id": 5018424, "stop_desc": "113 AVENUE CHARLES GIDE - 94043", "stop_name": "FORT DU KREMLIN-BICETRE"}, "geometry": {"type": "Point", "coordinates": [2.346452733070576, 48.805093501623176]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f1be9afee632d5e61cd74eb5c55e2491488ae95a", "fields": {"departement": "92", "stop_lat": 48.82287845737709, "code_postal": "92072", "stop_lon": 2.2217223427454194, "coord": [48.82287845737709, 2.2217223427454194], "stop_id": 5018461, "stop_desc": "24 AVENUE DE LA DIVISION LECLERC - 92072", "stop_name": "BRIMBORION - DIVISION LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.2217223427454194, 48.82287845737709]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b0237119440a7c5593130cacd478ca4668197e83", "fields": {"departement": "92", "stop_lat": 48.818697289035434, "code_postal": "92048", "stop_lon": 2.229285292630867, "coord": [48.818697289035434, 2.229285292630867], "stop_id": 5018463, "stop_desc": "32 AVENUE DU GENERAL GALLIENI - 92048", "stop_name": "GARE DE BELLEVUE"}, "geometry": {"type": "Point", "coordinates": [2.229285292630867, 48.818697289035434]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7d2fc684ffc59bd183811cd657c8ef7b07680a7a", "fields": {"departement": "92", "stop_lat": 48.80847209310078, "code_postal": "92048", "stop_lon": 2.243254230057932, "coord": [48.80847209310078, 2.243254230057932], "stop_id": 5018470, "stop_desc": "FACE 50 RUE HENRI BARBUSSE - 92048", "stop_name": "ANDRE SCHOCK"}, "geometry": {"type": "Point", "coordinates": [2.243254230057932, 48.80847209310078]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "30ea48922daaf7167e6e9fab2609f89d509a6d53", "fields": {"departement": "92", "stop_lat": 48.80768631860821, "code_postal": "92023", "stop_lon": 2.2500184692424225, "coord": [48.80768631860821, 2.2500184692424225], "stop_id": 5018473, "stop_desc": "FACE 92 AVENUE SCHNEIDER - 92023", "stop_name": "RUE DES PEUPLIERS"}, "geometry": {"type": "Point", "coordinates": [2.2500184692424225, 48.80768631860821]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ffcc28ac3f8b44064762c1d1d58460b666e200c8", "fields": {"departement": "92", "stop_lat": 48.81148493414833, "code_postal": "92023", "stop_lon": 2.2582859145650356, "coord": [48.81148493414833, 2.2582859145650356], "stop_id": 5018475, "stop_desc": "90 AVENUE HENRI BARBUSSE - 92023", "stop_name": "FLEURY"}, "geometry": {"type": "Point", "coordinates": [2.2582859145650356, 48.81148493414833]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d8d168ac3e4f44ecacc3ead026728260c93f378d", "fields": {"departement": "92", "stop_lat": 48.8147381437127, "code_postal": "92023", "stop_lon": 2.257750209717775, "coord": [48.8147381437127, 2.257750209717775], "stop_id": 5018476, "stop_desc": "138 AVENUE HENRI BARBUSSE - 92023", "stop_name": "HOPITAL PERCY"}, "geometry": {"type": "Point", "coordinates": [2.257750209717775, 48.8147381437127]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4b728294f0d2148d126c8fbfe96a6cc1d94e1ba8", "fields": {"departement": "92", "stop_lat": 48.82837374190805, "code_postal": "92040", "stop_lon": 2.2749766076077833, "coord": [48.82837374190805, 2.2749766076077833], "stop_id": 5018487, "stop_desc": "71 RUE GUYNEMER - 92040", "stop_name": "MAISON DE RETRAITE"}, "geometry": {"type": "Point", "coordinates": [2.2749766076077833, 48.82837374190805]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "27072276d128e2b39b1e4079f543f4d952aa0696", "fields": {"departement": "92", "stop_lat": 48.917998544252164, "code_postal": "92036", "stop_lon": 2.306518588293348, "coord": [48.917998544252164, 2.306518588293348], "stop_id": 5020420, "stop_desc": "9 RUE GEORGES CORETE - 92036", "stop_name": "GEORGES CORETE"}, "geometry": {"type": "Point", "coordinates": [2.306518588293348, 48.917998544252164]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "59dcc524de3d6a41aa8dad3a3dbe60919b10f9f0", "fields": {"departement": "92", "stop_lat": 48.92301957302653, "code_postal": "92036", "stop_lon": 2.2974466266532474, "coord": [48.92301957302653, 2.2974466266532474], "stop_id": 5020426, "stop_desc": "34 AVENUE CHANDON - 92036", "stop_name": "DEBUSSY - CHANDON"}, "geometry": {"type": "Point", "coordinates": [2.2974466266532474, 48.92301957302653]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2415c62e385e0a92643f0e316ecfd468be0cc42d", "fields": {"departement": "92", "stop_lat": 48.92424308414592, "code_postal": "92004", "stop_lon": 2.278761776155866, "coord": [48.92424308414592, 2.278761776155866], "stop_id": 5020433, "stop_desc": "182 RUE DU MESNIL - 92004", "stop_name": "ABBE LEMIRE"}, "geometry": {"type": "Point", "coordinates": [2.278761776155866, 48.92424308414592]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9b80e2a5e6f624796e230dcddc66053dc3ab571c", "fields": {"departement": "92", "stop_lat": 48.92578060710762, "code_postal": "92004", "stop_lon": 2.280328443826804, "coord": [48.92578060710762, 2.280328443826804], "stop_id": 5020434, "stop_desc": "FACE 112 RUE EMILE ZOLA - 92004", "stop_name": "ABBE LEMIRE"}, "geometry": {"type": "Point", "coordinates": [2.280328443826804, 48.92578060710762]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dc00904c2b419b195d4a0c8b04af289306d66896", "fields": {"departement": "92", "stop_lat": 48.93186669884235, "code_postal": "92025", "stop_lon": 2.2671319703624646, "coord": [48.93186669884235, 2.2671319703624646], "stop_id": 5020442, "stop_desc": "FACE 8 RUE JULES MICHELET - 92025", "stop_name": "SOLFERINO"}, "geometry": {"type": "Point", "coordinates": [2.2671319703624646, 48.93186669884235]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bae5c22b61ba938f329726b68d6c3c5247af3185", "fields": {"departement": "92", "stop_lat": 48.93174113042299, "code_postal": "92025", "stop_lon": 2.267554976296195, "coord": [48.93174113042299, 2.267554976296195], "stop_id": 5020443, "stop_desc": "20 RUE JULES MICHELET - 92025", "stop_name": "SOLFERINO"}, "geometry": {"type": "Point", "coordinates": [2.267554976296195, 48.93174113042299]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "25642ac97cebfa52722bc6fb8642c8d6a00892ae", "fields": {"departement": "92", "stop_lat": 48.92322901063561, "code_postal": "92025", "stop_lon": 2.251446755100315, "coord": [48.92322901063561, 2.251446755100315], "stop_id": 5020456, "stop_desc": "14 BIS RUE GABRIEL PERI - 92025", "stop_name": "EGLISE DE COLOMBES"}, "geometry": {"type": "Point", "coordinates": [2.251446755100315, 48.92322901063561]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e42b10dd8cdf2df17fb3dfc22fa79383849010cb", "fields": {"departement": "92", "stop_lat": 48.9256512046653, "code_postal": "92025", "stop_lon": 2.2582618751987718, "coord": [48.9256512046653, 2.2582618751987718], "stop_id": 5020460, "stop_desc": "14 RUE BESSON - 92025", "stop_name": "BESSON-GARE DE COLOMBES"}, "geometry": {"type": "Point", "coordinates": [2.2582618751987718, 48.9256512046653]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1338481dc48dfbf9b367dc324f1d28294ca1813f", "fields": {"departement": "92", "stop_lat": 48.9181537924079, "code_postal": "92004", "stop_lon": 2.3183957008076392, "coord": [48.9181537924079, 2.3183957008076392], "stop_id": 5020464, "stop_desc": "RUE OLYMPE DE GOUGES - 92004", "stop_name": "OLYMPE DE GOUGES"}, "geometry": {"type": "Point", "coordinates": [2.3183957008076392, 48.9181537924079]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4686d4664739692a54f11c8c20a6efb36461eab0", "fields": {"departement": "92", "stop_lat": 48.91497683069225, "code_postal": "92025", "stop_lon": 2.2485288008274917, "coord": [48.91497683069225, 2.2485288008274917], "stop_id": 5020466, "stop_desc": "5 R JEAN WIENER - 92025", "stop_name": "JEAN WIENER"}, "geometry": {"type": "Point", "coordinates": [2.2485288008274917, 48.91497683069225]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6ab85dbf24f8d692ac1686d6be4d6386e5edea09", "fields": {"departement": "92", "stop_lat": 48.917706932272075, "code_postal": "92025", "stop_lon": 2.258560349309274, "coord": [48.917706932272075, 2.258560349309274], "stop_id": 5020469, "stop_desc": "84-86 R DES MONTS CLAIRS - 92025", "stop_name": "MONTS CLAIRS"}, "geometry": {"type": "Point", "coordinates": [2.258560349309274, 48.917706932272075]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d1f6dcf9c47ae0091a1fcbbf495bd392363bbd39", "fields": {"departement": "92", "stop_lat": 48.91734023452132, "code_postal": "92025", "stop_lon": 2.261288121803755, "coord": [48.91734023452132, 2.261288121803755], "stop_id": 5020470, "stop_desc": "128-130 R DES MONTS CLAIRS - 92025", "stop_name": "LITOLFF"}, "geometry": {"type": "Point", "coordinates": [2.261288121803755, 48.91734023452132]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "acaba4c90f7bf939cf49dd17e42fd43532e25a9a", "fields": {"departement": "92", "stop_lat": 48.919757668974675, "code_postal": "92025", "stop_lon": 2.261189119492981, "coord": [48.919757668974675, 2.261189119492981], "stop_id": 5020471, "stop_desc": "121 R DU MARECHAL JOFFRE - 92025", "stop_name": "MARECHAL JOFFRE"}, "geometry": {"type": "Point", "coordinates": [2.261189119492981, 48.919757668974675]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eb71e7afc822244ca04ddbcf66c4e7585243176d", "fields": {"departement": "92", "stop_lat": 48.923186035500706, "code_postal": "92025", "stop_lon": 2.2542152626298364, "coord": [48.923186035500706, 2.2542152626298364], "stop_id": 5020474, "stop_desc": "FACE 20 RUE DU BOURNARD - 92025", "stop_name": "MAIRIE DE COLOMBES"}, "geometry": {"type": "Point", "coordinates": [2.2542152626298364, 48.923186035500706]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "171c4af819b527c54ab578ec0dce4f26abb81811", "fields": {"departement": "92", "stop_lat": 48.92322901063561, "code_postal": "92025", "stop_lon": 2.251446755100315, "coord": [48.92322901063561, 2.251446755100315], "stop_id": 5020475, "stop_desc": "14 BIS RUE GABRIEL PERI - 92025", "stop_name": "EGLISE DE COLOMBES"}, "geometry": {"type": "Point", "coordinates": [2.251446755100315, 48.92322901063561]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b270516fdda6c2dbfc0bbbe5945ce419890d5eea", "fields": {"departement": "92", "stop_lat": 48.92322901063561, "code_postal": "92025", "stop_lon": 2.251446755100315, "coord": [48.92322901063561, 2.251446755100315], "stop_id": 5020482, "stop_desc": "14 BIS RUE GABRIEL PERI - 92025", "stop_name": "EGLISE DE COLOMBES"}, "geometry": {"type": "Point", "coordinates": [2.251446755100315, 48.92322901063561]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f27151c767921cde40011362b080a2607893cb57", "fields": {"departement": "92", "stop_lat": 48.92332884796557, "code_postal": "92025", "stop_lon": 2.2409592320114595, "coord": [48.92332884796557, 2.2409592320114595], "stop_id": 5020486, "stop_desc": "FACE 39-41 RUE DE L'EGALITE - 92025", "stop_name": "EGALITE"}, "geometry": {"type": "Point", "coordinates": [2.2409592320114595, 48.92332884796557]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e38b7d4166a46ce4f5c079813788b32cdc81bf7f", "fields": {"departement": "92", "stop_lat": 48.929974109382236, "code_postal": "92025", "stop_lon": 2.245952538071849, "coord": [48.929974109382236, 2.245952538071849], "stop_id": 5020494, "stop_desc": "FACE 77 RUE PAUL BERT - 92025", "stop_name": "LES SAULES"}, "geometry": {"type": "Point", "coordinates": [2.245952538071849, 48.929974109382236]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8368ec42329289b2bd4ad1920251727504a11db3", "fields": {"departement": "92", "stop_lat": 48.78728175533117, "code_postal": "92048", "stop_lon": 2.225950117356297, "coord": [48.78728175533117, 2.225950117356297], "stop_id": 5067344, "stop_desc": "FACE 43 AVENUE DU GENERAL DE GAULLE - 92048", "stop_name": "ROSERAIE"}, "geometry": {"type": "Point", "coordinates": [2.225950117356297, 48.78728175533117]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "571e1d83b2053a767653d3d887d387e7666551f1", "fields": {"departement": "92", "stop_lat": 48.78806619399687, "code_postal": "92048", "stop_lon": 2.2286416600121726, "coord": [48.78806619399687, 2.2286416600121726], "stop_id": 5067372, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 92048", "stop_name": "EGLISE DE MEUDON-LA-FORET"}, "geometry": {"type": "Point", "coordinates": [2.2286416600121726, 48.78806619399687]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4a8f7ef1001d469eb90e612e8d41a469d5b8ff69", "fields": {"departement": "92", "stop_lat": 48.786950459402505, "code_postal": "92023", "stop_lon": 2.237498795439241, "coord": [48.786950459402505, 2.237498795439241], "stop_id": 5067403, "stop_desc": "ROUTE DU PAVE BLANC - 92023", "stop_name": "GEORGES POMPIDOU"}, "geometry": {"type": "Point", "coordinates": [2.237498795439241, 48.786950459402505]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8cb863b0bb4d27c4eb0704e0d457f86f7da3df9a", "fields": {"departement": "92", "stop_lat": 48.787037998768085, "code_postal": "92023", "stop_lon": 2.2457685628922226, "coord": [48.787037998768085, 2.2457685628922226], "stop_id": 5067447, "stop_desc": "FACE 179 R DE LA PORTE DE TRIVAUX - 92023", "stop_name": "CIMETIERE INTERCOMMUNAL"}, "geometry": {"type": "Point", "coordinates": [2.2457685628922226, 48.787037998768085]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9fc88e013409eaa40b60310bbbdd00952f6d90e3", "fields": {"departement": "92", "stop_lat": 48.78780203202974, "code_postal": "92023", "stop_lon": 2.2584035361816652, "coord": [48.78780203202974, 2.2584035361816652], "stop_id": 5067451, "stop_desc": "RUE DE LA CAVEE - 92023", "stop_name": "LA CAVEE"}, "geometry": {"type": "Point", "coordinates": [2.2584035361816652, 48.78780203202974]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d4cb86b477e2ee98a1fca3b1d5fca476a43824fe", "fields": {"departement": "92", "stop_lat": 48.78290831132887, "code_postal": "92060", "stop_lon": 2.2658641938640955, "coord": [48.78290831132887, 2.2658641938640955], "stop_id": 5067462, "stop_desc": "AVENUE CHARLES DE GAULLE - 92060", "stop_name": "L'ESCALIER"}, "geometry": {"type": "Point", "coordinates": [2.2658641938640955, 48.78290831132887]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ff1cf7768ebc8fb1b1be52072a94bebe075838a1", "fields": {"departement": "92", "stop_lat": 48.783387934514586, "code_postal": "92060", "stop_lon": 2.2715215119852386, "coord": [48.783387934514586, 2.2715215119852386], "stop_id": 5067463, "stop_desc": "AVENUE DE LA RESISTANCE - 92060", "stop_name": "TOUR DE L'ETANG"}, "geometry": {"type": "Point", "coordinates": [2.2715215119852386, 48.783387934514586]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9b18dd8d0bc170896415277aa4e9fddcc8308c3a", "fields": {"departement": "92", "stop_lat": 48.783447627412066, "code_postal": "92032", "stop_lon": 2.2829462104794223, "coord": [48.783447627412066, 2.2829462104794223], "stop_id": 5067469, "stop_desc": "FACE 74 AVENUE PAUL LANGEVIN - 92032", "stop_name": "CARREFOUR DES MOUILLEBOEUFS"}, "geometry": {"type": "Point", "coordinates": [2.2829462104794223, 48.783447627412066]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "05d6012cd3b0087adf17ed3bd677adabf07fc719", "fields": {"departement": "92", "stop_lat": 48.78280200717305, "code_postal": "92014", "stop_lon": 2.3160103090786923, "coord": [48.78280200717305, 2.3160103090786923], "stop_id": 5067479, "stop_desc": "6 RUE DU 8 MAI 1945 - 92014", "stop_name": "RUE DU 8 MAI 1945"}, "geometry": {"type": "Point", "coordinates": [2.3160103090786923, 48.78280200717305]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "60d52b4bb9c74dc6a23c4f79ff1a1409c90f4ed5", "fields": {"departement": "92", "stop_lat": 48.78498452219128, "code_postal": "92007", "stop_lon": 2.3085830953806896, "coord": [48.78498452219128, 2.3085830953806896], "stop_id": 5067482, "stop_desc": "52 AVENUE DE BOURG LA REINE - 92007", "stop_name": "CLEMENCEAU"}, "geometry": {"type": "Point", "coordinates": [2.3085830953806896, 48.78498452219128]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "245a78515b078cf210322a61b3f69b82018dad40", "fields": {"departement": "92", "stop_lat": 48.78905975534039, "code_postal": "92048", "stop_lon": 2.2341349515820745, "coord": [48.78905975534039, 2.2341349515820745], "stop_id": 5067487, "stop_desc": "FACE 2 AVENUE ROBERT SCHUMAN - 92048", "stop_name": "TAPIS VERT"}, "geometry": {"type": "Point", "coordinates": [2.2341349515820745, 48.78905975534039]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "39937e3cf21c6ecf47a57d829c93a3c7a0aeff3a", "fields": {"departement": "92", "stop_lat": 48.82700948660238, "code_postal": "92040", "stop_lon": 2.278653576085032, "coord": [48.82700948660238, 2.278653576085032], "stop_id": 5067573, "stop_desc": "6 BOULEVARD GAMBETTA - 92040", "stop_name": "CORENTIN CELTON-METRO"}, "geometry": {"type": "Point", "coordinates": [2.278653576085032, 48.82700948660238]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "72b8fb81a30bb965cb7088749bd3df1fa7222471", "fields": {"departement": "92", "stop_lat": 48.797594084137074, "code_postal": "92020", "stop_lon": 2.281829440896584, "coord": [48.797594084137074, 2.281829440896584], "stop_id": 5067587, "stop_desc": "FACE 37 AVENUE DE LA DIVISION LECLERC - 92020", "stop_name": "LES SABLONS"}, "geometry": {"type": "Point", "coordinates": [2.281829440896584, 48.797594084137074]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "af376b0361e8f665ffd11c473f6d116873e39aba", "fields": {"departement": "92", "stop_lat": 48.795721662558684, "code_postal": "92020", "stop_lon": 2.2758320153493683, "coord": [48.795721662558684, 2.2758320153493683], "stop_id": 5067589, "stop_desc": "FACE 3 AVENUE DE LA DIVISION LECLERC - 92020", "stop_name": "CENTRE BUS"}, "geometry": {"type": "Point", "coordinates": [2.2758320153493683, 48.795721662558684]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0912c087ab7c4c24403731897e219166acf36f6b", "fields": {"departement": "92", "stop_lat": 48.79189122710944, "code_postal": "92032", "stop_lon": 2.2728166500893576, "coord": [48.79189122710944, 2.2728166500893576], "stop_id": 5067593, "stop_desc": "VOIE VERTE - 92032", "stop_name": "STADE DU PANORAMA"}, "geometry": {"type": "Point", "coordinates": [2.2728166500893576, 48.79189122710944]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9443b9b39bb1b0051c7f68a972e50620d7badd9e", "fields": {"departement": "92", "stop_lat": 48.79198246383179, "code_postal": "92032", "stop_lon": 2.275373930429335, "coord": [48.79198246383179, 2.275373930429335], "stop_id": 5067594, "stop_desc": "AVENUE GENERAL LECLERC - 92032", "stop_name": "LEONIE LAPORTE"}, "geometry": {"type": "Point", "coordinates": [2.275373930429335, 48.79198246383179]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6443238d77079113e459def6f6b088f24de51db3", "fields": {"departement": "92", "stop_lat": 48.79157978894597, "code_postal": "92032", "stop_lon": 2.2788976005054344, "coord": [48.79157978894597, 2.2788976005054344], "stop_id": 5067597, "stop_desc": "46 AVENUE DU GENERAL LECLERC - 92032", "stop_name": "TENNIS - GENERAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.2788976005054344, 48.79157978894597]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ba874c2c7cecf31436c5400682a36a8af641e458", "fields": {"departement": "92", "stop_lat": 48.793200099997385, "code_postal": "92032", "stop_lon": 2.284214738526938, "coord": [48.793200099997385, 2.284214738526938], "stop_id": 5067600, "stop_desc": "6 RUE LEDRU ROLLIN - 92032", "stop_name": "ANDRE SALEL"}, "geometry": {"type": "Point", "coordinates": [2.284214738526938, 48.793200099997385]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3cb54ebc9ec5fe34c073b99bba7073a2ef2ccbf6", "fields": {"departement": "92", "stop_lat": 48.79101633072165, "code_postal": "92032", "stop_lon": 2.2848699080951174, "coord": [48.79101633072165, 2.2848699080951174], "stop_id": 5067602, "stop_desc": "FACE 32 RUE JEAN JAURES - 92032", "stop_name": "CARNOT - JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.2848699080951174, 48.79101633072165]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d6b152bca5fe12504415e3124eeee802dad96cdc", "fields": {"departement": "92", "stop_lat": 48.79153843504976, "code_postal": "92032", "stop_lon": 2.2867329978586195, "coord": [48.79153843504976, 2.2867329978586195], "stop_id": 5067615, "stop_desc": "FACE 75 RUE BOUCICAUT - 92032", "stop_name": "MAIRIE DE FONTENAY-AUX-ROSES"}, "geometry": {"type": "Point", "coordinates": [2.2867329978586195, 48.79153843504976]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ea1e1a5cf44a626360909b93087330e6954547cb", "fields": {"departement": "92", "stop_lat": 48.82287845737709, "code_postal": "92072", "stop_lon": 2.2217223427454194, "coord": [48.82287845737709, 2.2217223427454194], "stop_id": 5073973, "stop_desc": "24 AVENUE DE LA DIVISION LECLERC - 92072", "stop_name": "BRIMBORION - DIVISION LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.2217223427454194, 48.82287845737709]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "85ec7581c377948e1b84274acb0da7c334e37e35", "fields": {"departement": "92", "stop_lat": 48.821319799672125, "code_postal": "92048", "stop_lon": 2.2272109871942822, "coord": [48.821319799672125, 2.2272109871942822], "stop_id": 5073974, "stop_desc": "12 RUE MARCEL ALLEGOT - 92048", "stop_name": "11 NOVEMBRE"}, "geometry": {"type": "Point", "coordinates": [2.2272109871942822, 48.821319799672125]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5efcaa13eda6ef77012e13ea88be99f4baf807f2", "fields": {"departement": "92", "stop_lat": 48.8075402745395, "code_postal": "92048", "stop_lon": 2.2358535787928604, "coord": [48.8075402745395, 2.2358535787928604], "stop_id": 5073979, "stop_desc": "36-38 RUE DE LA REPUBLIQUE - 92048", "stop_name": "EGLISE DE MEUDON"}, "geometry": {"type": "Point", "coordinates": [2.2358535787928604, 48.8075402745395]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bcee0964ca428299626696c15bd00f2fe9caf461", "fields": {"departement": "92", "stop_lat": 48.80635626509692, "code_postal": "92048", "stop_lon": 2.238686132716897, "coord": [48.80635626509692, 2.238686132716897], "stop_id": 5073981, "stop_desc": "31 AVENUE LOUVOIS - 92048", "stop_name": "VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.238686132716897, 48.80635626509692]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f01ef53ee04da0961a4c95f1847055e99a418bf7", "fields": {"departement": "92", "stop_lat": 48.82283664125882, "code_postal": "92040", "stop_lon": 2.273649349876303, "coord": [48.82283664125882, 2.273649349876303], "stop_id": 5073997, "stop_desc": "13 BIS RUE AUGUSTE GERVAIS - 92040", "stop_name": "MUSEE"}, "geometry": {"type": "Point", "coordinates": [2.273649349876303, 48.82283664125882]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a839d79b74ba2b430a8664e8a8a0f2a6f56dfa9d", "fields": {"departement": "92", "stop_lat": 48.82837374190805, "code_postal": "92040", "stop_lon": 2.2749766076077833, "coord": [48.82837374190805, 2.2749766076077833], "stop_id": 5074000, "stop_desc": "71 RUE GUYNEMER - 92040", "stop_name": "MAISON DE RETRAITE"}, "geometry": {"type": "Point", "coordinates": [2.2749766076077833, 48.82837374190805]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dc2a4be52073e21e306d3bc8a21d323f914f4508", "fields": {"departement": "78", "stop_lat": 48.802742704580076, "code_postal": "78646", "stop_lon": 2.1273823138362977, "coord": [48.802742704580076, 2.1273823138362977], "stop_id": 5079438, "stop_desc": "2 AVENUE DE PARIS - 78646", "stop_name": "CHATEAU DE VERSAILLES"}, "geometry": {"type": "Point", "coordinates": [2.1273823138362977, 48.802742704580076]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3fa00319bd613626961c58f0f09d48e99bd7e8d2", "fields": {"departement": "78", "stop_lat": 48.79982250795672, "code_postal": "78646", "stop_lon": 2.138346345358018, "coord": [48.79982250795672, 2.138346345358018], "stop_id": 5079440, "stop_desc": "56 AVENUE DE PARIS - 78646", "stop_name": "VERGENNES"}, "geometry": {"type": "Point", "coordinates": [2.138346345358018, 48.79982250795672]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f98a4a57cce9221e9b250ce893802bff94decf77", "fields": {"departement": "78", "stop_lat": 48.7982770749154, "code_postal": "78646", "stop_lon": 2.1440935095071154, "coord": [48.7982770749154, 2.1440935095071154], "stop_id": 5079441, "stop_desc": "82 AVENUE DE PARIS - 78646", "stop_name": "JEAN MERMOZ"}, "geometry": {"type": "Point", "coordinates": [2.1440935095071154, 48.7982770749154]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dbccb1f385e0ff773ac5a4b0a30a37b2b2fe9949", "fields": {"departement": "78", "stop_lat": 48.799578569894706, "code_postal": "78686", "stop_lon": 2.1603060428785503, "coord": [48.799578569894706, 2.1603060428785503], "stop_id": 5079443, "stop_desc": "191 AVENUE DU GENERAL LECLERC - 78686", "stop_name": "PLACE LOUIS XIV"}, "geometry": {"type": "Point", "coordinates": [2.1603060428785503, 48.799578569894706]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6b270a2b46fb438667fa1c4eea46b5c462f5547a", "fields": {"departement": "78", "stop_lat": 48.80463056638208, "code_postal": "78686", "stop_lon": 2.1800998849399043, "coord": [48.80463056638208, 2.1800998849399043], "stop_id": 5079448, "stop_desc": "FACE 22 AVENUE DU GENERAL LECLERC - 78686", "stop_name": "LES FLEURS"}, "geometry": {"type": "Point", "coordinates": [2.1800998849399043, 48.80463056638208]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "def7e7b0272ccf3c3c144b43bb8c4694a197c669", "fields": {"departement": "92", "stop_lat": 48.80586789578397, "code_postal": "92022", "stop_lon": 2.1847088505991104, "coord": [48.80586789578397, 2.1847088505991104], "stop_id": 5079449, "stop_desc": "1945 AVENUE ROGER SALENGRO - 92022", "stop_name": "POINTE DE CHAVILLE"}, "geometry": {"type": "Point", "coordinates": [2.1847088505991104, 48.80586789578397]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4cdf9eec6a4771cb705bb9657155cb785d0e28d6", "fields": {"departement": "92", "stop_lat": 48.810819960857444, "code_postal": "92022", "stop_lon": 2.1917160854064868, "coord": [48.810819960857444, 2.1917160854064868], "stop_id": 5079451, "stop_desc": "AVENUE ROGER SALENGRO - 92022", "stop_name": "COURS GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.1917160854064868, 48.810819960857444]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "298dd550df863664794d8bb57b8f02f92e7ff70b", "fields": {"departement": "92", "stop_lat": 48.816189030781565, "code_postal": "92022", "stop_lon": 2.1945045924659863, "coord": [48.816189030781565, 2.1945045924659863], "stop_id": 5079453, "stop_desc": "547 AVENUE ROGER SALENGRO - 92022", "stop_name": "GUILLEMINOT"}, "geometry": {"type": "Point", "coordinates": [2.1945045924659863, 48.816189030781565]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6d5c7c7c02290f8734cefcdc0ae01524e7ec7100", "fields": {"departement": "92", "stop_lat": 48.81869202615678, "code_postal": "92022", "stop_lon": 2.198226896460123, "coord": [48.81869202615678, 2.198226896460123], "stop_id": 5079454, "stop_desc": "155 AVENUE ROGER SALENGRO - 92022", "stop_name": "MARIVEL"}, "geometry": {"type": "Point", "coordinates": [2.198226896460123, 48.81869202615678]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fd9b4b719e7567c2c88dcf53b839231966307afd", "fields": {"departement": "92", "stop_lat": 48.810819960857444, "code_postal": "92022", "stop_lon": 2.1917160854064868, "coord": [48.810819960857444, 2.1917160854064868], "stop_id": 5079466, "stop_desc": "AVENUE ROGER SALENGRO - 92022", "stop_name": "COURS GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.1917160854064868, 48.810819960857444]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "29096088b56483c5b4b6bdb7d0f3e33b0d27c01a", "fields": {"departement": "92", "stop_lat": 48.816189030781565, "code_postal": "92022", "stop_lon": 2.1945045924659863, "coord": [48.816189030781565, 2.1945045924659863], "stop_id": 5079468, "stop_desc": "547 AVENUE ROGER SALENGRO - 92022", "stop_name": "GUILLEMINOT"}, "geometry": {"type": "Point", "coordinates": [2.1945045924659863, 48.816189030781565]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1bc9bb5566283ab744f16540522b3c700e3424b1", "fields": {"departement": "92", "stop_lat": 48.82088927265677, "code_postal": "92072", "stop_lon": 2.20190952396969, "coord": [48.82088927265677, 2.20190952396969], "stop_id": 5079470, "stop_desc": "149 RUE GRANDE RUE - 92072", "stop_name": "HOPITAL JEAN ROSTAND"}, "geometry": {"type": "Point", "coordinates": [2.20190952396969, 48.82088927265677]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2bdeb22e42361400d70b8b3ff135a5b1cb4fc8c7", "fields": {"departement": "92", "stop_lat": 48.82719400030173, "code_postal": "92072", "stop_lon": 2.2232373238068854, "coord": [48.82719400030173, 2.2232373238068854], "stop_id": 5079475, "stop_desc": "1 GRANDE RUE - 92072", "stop_name": "MUSEE DE SEVRES"}, "geometry": {"type": "Point", "coordinates": [2.2232373238068854, 48.82719400030173]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "17c88d7ed08a34d50905a8c12f745f329a04dbb7", "fields": {"departement": "92", "stop_lat": 48.823217271990735, "code_postal": "92072", "stop_lon": 2.2102336043309494, "coord": [48.823217271990735, 2.2102336043309494], "stop_id": 5079485, "stop_desc": "FACE 8 AVENUE DE L'EUROPE - 92072", "stop_name": "MARCHE SAINT-ROMAIN"}, "geometry": {"type": "Point", "coordinates": [2.2102336043309494, 48.823217271990735]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c34d68b06e861d457fcb12a984fe99986c892bb5", "fields": {"departement": "92", "stop_lat": 48.826516619377834, "code_postal": "92072", "stop_lon": 2.219835757126419, "coord": [48.826516619377834, 2.219835757126419], "stop_id": 5079487, "stop_desc": "25 BIS GRANDE RUE - 92072", "stop_name": "PARC DE SAINT-CLOUD"}, "geometry": {"type": "Point", "coordinates": [2.219835757126419, 48.826516619377834]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3999bdd3ab2de6eda23f59dd36052f3e621577be", "fields": {"departement": "92", "stop_lat": 48.82719400030173, "code_postal": "92072", "stop_lon": 2.2232373238068854, "coord": [48.82719400030173, 2.2232373238068854], "stop_id": 5079488, "stop_desc": "1 GRANDE RUE - 92072", "stop_name": "MUSEE DE SEVRES"}, "geometry": {"type": "Point", "coordinates": [2.2232373238068854, 48.82719400030173]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aa3451a5d9e87edf86a93f2f69c9b870550359f1", "fields": {"departement": "92", "stop_lat": 48.90252446696059, "code_postal": "92024", "stop_lon": 2.3135347035115874, "coord": [48.90252446696059, 2.3135347035115874], "stop_id": 5081728, "stop_desc": "53 BOULEVARD DU GENERAL LECLERC - 92024", "stop_name": "REPUBLIQUE - FRANCOIS MITTERRAND"}, "geometry": {"type": "Point", "coordinates": [2.3135347035115874, 48.90252446696059]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b81a7d05a2cf31e3309ea8a966acdde6e91cbe49", "fields": {"departement": "92", "stop_lat": 48.891502818584904, "code_postal": "92062", "stop_lon": 2.2375156387019617, "coord": [48.891502818584904, 2.2375156387019617], "stop_id": 4022919, "stop_desc": "AVENUE PERRONET EST - 92062", "stop_name": "LA DEFENSE-METRO-RER-TRAMWAY."}, "geometry": {"type": "Point", "coordinates": [2.2375156387019617, 48.891502818584904]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a0c22398200503392eeb12a2aab65167c0737147", "fields": {"departement": "92", "stop_lat": 48.89539650652404, "code_postal": "92026", "stop_lon": 2.2402342065353684, "coord": [48.89539650652404, 2.2402342065353684], "stop_id": 4022922, "stop_desc": "AVENUE DE LA DIVISION LECLERC - 92026", "stop_name": "CARON"}, "geometry": {"type": "Point", "coordinates": [2.2402342065353684, 48.89539650652404]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3372587b3a8aa5d7dc225cec828e9d1919f8c7f9", "fields": {"departement": "92", "stop_lat": 48.89883410793567, "code_postal": "92026", "stop_lon": 2.2348843355838928, "coord": [48.89883410793567, 2.2348843355838928], "stop_id": 4022928, "stop_desc": "24-30 AVENUE PUVIS DE CHAVANNES - 92026", "stop_name": "PUVIS DE CHAVANNES"}, "geometry": {"type": "Point", "coordinates": [2.2348843355838928, 48.89883410793567]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "574abdad33046805d29ade980db81cc9032ac654", "fields": {"departement": "92", "stop_lat": 48.8967714050638, "code_postal": "92026", "stop_lon": 2.24006806449667, "coord": [48.8967714050638, 2.24006806449667], "stop_id": 4022936, "stop_desc": "FACE 24 BOULEVARD DE LA MISSION MARCHAND - 92026", "stop_name": "FAUBOURG DE L'ARCHE"}, "geometry": {"type": "Point", "coordinates": [2.24006806449667, 48.8967714050638]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e07c988f3f300b36ed10577ec0430c06da878659", "fields": {"departement": "92", "stop_lat": 48.8871763106982, "code_postal": "92062", "stop_lon": 2.244092729902989, "coord": [48.8871763106982, 2.244092729902989], "stop_id": 4022938, "stop_desc": "39 RUE PAUL LAFARGUE - 92062", "stop_name": "GALLIENI"}, "geometry": {"type": "Point", "coordinates": [2.244092729902989, 48.8871763106982]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3c206ddc8974bc00861b8311c4171396ede0a27e", "fields": {"departement": "75", "stop_lat": 48.86131811885297, "code_postal": "75107", "stop_lon": 2.314466179979844, "coord": [48.86131811885297, 2.314466179979844], "stop_id": 4022948, "stop_desc": "R ROBERT ESNAULT-PELTERIE - 75107", "stop_name": "INVALIDES"}, "geometry": {"type": "Point", "coordinates": [2.314466179979844, 48.86131811885297]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bf502025b790bf009100f58907683e4f1e7b2ab6", "fields": {"departement": "75", "stop_lat": 48.862756049285835, "code_postal": "75107", "stop_lon": 2.314193113778344, "coord": [48.862756049285835, 2.314193113778344], "stop_id": 4022950, "stop_desc": "QUAI D'ORSAY - 75107", "stop_name": "INVALIDES."}, "geometry": {"type": "Point", "coordinates": [2.314193113778344, 48.862756049285835]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bb193e5ad41bc0b9e727d74377965730a2cfa74e", "fields": {"departement": "75", "stop_lat": 48.875121390460386, "code_postal": "75108", "stop_lon": 2.30847875269421, "coord": [48.875121390460386, 2.30847875269421], "stop_id": 4022959, "stop_desc": "174 BOULEVARD HAUSSMANN - 75108", "stop_name": "HAUSSMANN - COURCELLES"}, "geometry": {"type": "Point", "coordinates": [2.30847875269421, 48.875121390460386]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9f58689d7c1f51a82cab78e82f6b7256eae92219", "fields": {"departement": "75", "stop_lat": 48.875048935083306, "code_postal": "75108", "stop_lon": 2.3062579263665284, "coord": [48.875048935083306, 2.3062579263665284], "stop_id": 4022961, "stop_desc": "190 BOULEVARD HAUSSMANN - 75108", "stop_name": "FRIEDLAND - HAUSSMANN"}, "geometry": {"type": "Point", "coordinates": [2.3062579263665284, 48.875048935083306]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "500654add76bf7b593e83548bcf8c2844b8dbe8f", "fields": {"departement": "75", "stop_lat": 48.87479712605779, "code_postal": "75108", "stop_lon": 2.3056313323357602, "coord": [48.87479712605779, 2.3056313323357602], "stop_id": 4022962, "stop_desc": "177 BOULEVARD HAUSSMANN - 75108", "stop_name": "FRIEDLAND - HAUSSMANN"}, "geometry": {"type": "Point", "coordinates": [2.3056313323357602, 48.87479712605779]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4444d0d534a00dc678734c57e598063e072fdf01", "fields": {"departement": "75", "stop_lat": 48.87900870722632, "code_postal": "75117", "stop_lon": 2.2945508340067544, "coord": [48.87900870722632, 2.2945508340067544], "stop_id": 4022966, "stop_desc": "FACE 1 AVENUE NIEL - 75117", "stop_name": "TERNES - MAC MAHON"}, "geometry": {"type": "Point", "coordinates": [2.2945508340067544, 48.87900870722632]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f92d2b6cbf7e92b5e2c21f74e0a0a1b97e2ac1c0", "fields": {"departement": "75", "stop_lat": 48.87841558644444, "code_postal": "75117", "stop_lon": 2.2946603292390058, "coord": [48.87841558644444, 2.2946603292390058], "stop_id": 4022967, "stop_desc": "29-31 AV DES TERNES - 75117", "stop_name": "TERNES - MAC MAHON"}, "geometry": {"type": "Point", "coordinates": [2.2946603292390058, 48.87841558644444]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "db2578b1988542e2c44d03466d336d4ca9488cfa", "fields": {"departement": "75", "stop_lat": 48.883889646623466, "code_postal": "75117", "stop_lon": 2.297026976722162, "coord": [48.883889646623466, 2.297026976722162], "stop_id": 4022970, "stop_desc": "96 AVENUE NIEL - 75117", "stop_name": "PEREIRE - MARECHAL JUIN"}, "geometry": {"type": "Point", "coordinates": [2.297026976722162, 48.883889646623466]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2b78d8ddc4cede67da9e48d4c43fa8df24bac0c6", "fields": {"departement": "92", "stop_lat": 48.886616147822906, "code_postal": "92044", "stop_lon": 2.282879006969022, "coord": [48.886616147822906, 2.282879006969022], "stop_id": 4022979, "stop_desc": "9 BOULEVARD BINEAU - 92044", "stop_name": "VILLIERS - BINEAU"}, "geometry": {"type": "Point", "coordinates": [2.282879006969022, 48.886616147822906]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b20d263e6efdeaa6402b9c9f6baae1d58c52fac4", "fields": {"departement": "92", "stop_lat": 48.888610632721694, "code_postal": "92044", "stop_lon": 2.2814186634599443, "coord": [48.888610632721694, 2.2814186634599443], "stop_id": 4022980, "stop_desc": "34-36 RUE DE VILLIERS - 92044", "stop_name": "LOUIS ROUQUIER"}, "geometry": {"type": "Point", "coordinates": [2.2814186634599443, 48.888610632721694]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cdbfcd63fc560c94924e4e713b1ad49e61dc5347", "fields": {"departement": "92", "stop_lat": 48.89301174201657, "code_postal": "92051", "stop_lon": 2.27609834941811, "coord": [48.89301174201657, 2.27609834941811], "stop_id": 4022984, "stop_desc": "44 BOULEVARD DU CHATEAU - 92051", "stop_name": "PLACE DE LA LIBERATION"}, "geometry": {"type": "Point", "coordinates": [2.27609834941811, 48.89301174201657]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f2718c797eb75bfc04102d73320e6892f1e3ba5b", "fields": {"departement": "92", "stop_lat": 48.89320821199514, "code_postal": "92051", "stop_lon": 2.2737129156457394, "coord": [48.89320821199514, 2.2737129156457394], "stop_id": 4022985, "stop_desc": "70 BOULEVARD VICTOR HUGO - 92051", "stop_name": "HOPITAL AMERICAIN"}, "geometry": {"type": "Point", "coordinates": [2.2737129156457394, 48.89320821199514]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "86c24c283918b2d747f931336d6e61cbe871c663", "fields": {"departement": "92", "stop_lat": 48.89302840330965, "code_postal": "92051", "stop_lon": 2.2735904689924156, "coord": [48.89302840330965, 2.2735904689924156], "stop_id": 4022986, "stop_desc": "61 BOULEVARD VICTOR HUGO - 92051", "stop_name": "HOPITAL AMERICAIN"}, "geometry": {"type": "Point", "coordinates": [2.2735904689924156, 48.89302840330965]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "db005f3474d56b11683289dc110d55f607a1263e", "fields": {"departement": "92", "stop_lat": 48.89587682441385, "code_postal": "92051", "stop_lon": 2.272646470322342, "coord": [48.89587682441385, 2.272646470322342], "stop_id": 4022988, "stop_desc": "73 BOULEVARD VICTOR HUGO - 92051", "stop_name": "VILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.272646470322342, 48.89587682441385]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4251734965728249b4c08c665b3600064233627a", "fields": {"departement": "92", "stop_lat": 48.889929633289796, "code_postal": "92051", "stop_lon": 2.26132829742624, "coord": [48.889929633289796, 2.26132829742624], "stop_id": 4022991, "stop_desc": "47 BOULEVARD D'ARGENSON - 92051", "stop_name": "COLLEGE ANDRE MAUROIS"}, "geometry": {"type": "Point", "coordinates": [2.26132829742624, 48.889929633289796]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8a8ade8613a1039291b13666f31f7ab5da21df8f", "fields": {"departement": "92", "stop_lat": 48.88527398449147, "code_postal": "92051", "stop_lon": 2.260899032348932, "coord": [48.88527398449147, 2.260899032348932], "stop_id": 4022995, "stop_desc": "2-4 RUE DU CHATEAU - 92051", "stop_name": "PONT DE NEUILLY"}, "geometry": {"type": "Point", "coordinates": [2.260899032348932, 48.88527398449147]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f7d6c4f8d03f6b37007f210bc5fbcc6ba6e0814c", "fields": {"departement": "92", "stop_lat": 48.880404351725026, "code_postal": "92062", "stop_lon": 2.238422705718465, "coord": [48.880404351725026, 2.238422705718465], "stop_id": 4023006, "stop_desc": "45 BOULEVARD RICHARD WALLACE - 92062", "stop_name": "WALLACE - JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.238422705718465, 48.880404351725026]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "58b92f353e2560b523b9a5e47d232206d7448774", "fields": {"departement": "92", "stop_lat": 48.872963754497334, "code_postal": "92073", "stop_lon": 2.229090543089881, "coord": [48.872963754497334, 2.229090543089881], "stop_id": 4023011, "stop_desc": "FACE 38 RUE DE VERDUN - 92073", "stop_name": "JEAN MACE"}, "geometry": {"type": "Point", "coordinates": [2.229090543089881, 48.872963754497334]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2e6d60f241a1a431e8b6512091c8c466a110e4bf", "fields": {"departement": "92", "stop_lat": 48.86795761753568, "code_postal": "92073", "stop_lon": 2.228883016225569, "coord": [48.86795761753568, 2.228883016225569], "stop_id": 4023013, "stop_desc": "15 QUAI GALLIENI - 92073", "stop_name": "PONT DE SURESNES"}, "geometry": {"type": "Point", "coordinates": [2.228883016225569, 48.86795761753568]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0c08acc052b4d4815158bf61f7334a00b20b01db", "fields": {"departement": "92", "stop_lat": 48.87111752398503, "code_postal": "92073", "stop_lon": 2.2249527206200748, "coord": [48.87111752398503, 2.2249527206200748], "stop_id": 4023017, "stop_desc": "2 RUE CARNOT - 92073", "stop_name": "MAIRIE DE SURESNES"}, "geometry": {"type": "Point", "coordinates": [2.2249527206200748, 48.87111752398503]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "79f04387f28e91601d0ae2cc8d12bd93bf935073", "fields": {"departement": "92", "stop_lat": 48.87576753024058, "code_postal": "92073", "stop_lon": 2.228798565454174, "coord": [48.87576753024058, 2.228798565454174], "stop_id": 4023019, "stop_desc": "100 RUE CARNOT - 92073", "stop_name": "BERTY ALBRECHT"}, "geometry": {"type": "Point", "coordinates": [2.228798565454174, 48.87576753024058]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "025c9c4cb21e21a12aec72956594fdf839388841", "fields": {"departement": "92", "stop_lat": 48.89002075870348, "code_postal": "92051", "stop_lon": 2.2796045024686054, "coord": [48.89002075870348, 2.2796045024686054], "stop_id": 4023027, "stop_desc": "47 RUE DE VILLIERS - 92051", "stop_name": "VOLTAIRE - VILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.2796045024686054, 48.89002075870348]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "48bcc7e82225487130765a49cbb40b6bc385a29d", "fields": {"departement": "75", "stop_lat": 48.88479772861823, "code_postal": "75117", "stop_lon": 2.2981437279350554, "coord": [48.88479772861823, 2.2981437279350554], "stop_id": 4023029, "stop_desc": "115 AVENUE DE VILLIERS - 75117", "stop_name": "PEREIRE - LE CHATELIER"}, "geometry": {"type": "Point", "coordinates": [2.2981437279350554, 48.88479772861823]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "732e67fa34b7699bd341d7494eb8e16c014d72d4", "fields": {"departement": "75", "stop_lat": 48.87186926063576, "code_postal": "75108", "stop_lon": 2.314366174057174, "coord": [48.87186926063576, 2.314366174057174], "stop_id": 4023040, "stop_desc": "36 AVENUE MATIGNON - 75108", "stop_name": "MATIGNON - SAINT-HONORE"}, "geometry": {"type": "Point", "coordinates": [2.314366174057174, 48.87186926063576]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a414dd2cc10712efea9841508e93e5a9de319147", "fields": {"departement": "75", "stop_lat": 48.875121390460386, "code_postal": "75108", "stop_lon": 2.30847875269421, "coord": [48.875121390460386, 2.30847875269421], "stop_id": 4023043, "stop_desc": "174 BOULEVARD HAUSSMANN - 75108", "stop_name": "HAUSSMANN - COURCELLES"}, "geometry": {"type": "Point", "coordinates": [2.30847875269421, 48.875121390460386]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "436ecb1ef2f7ea8f2858d362b6a7f59880714c7b", "fields": {"departement": "75", "stop_lat": 48.87697969338554, "code_postal": "75108", "stop_lon": 2.300915593355041, "coord": [48.87697969338554, 2.300915593355041], "stop_id": 4023045, "stop_desc": "254 RUE DU FAUBOURG SAINT-HONORE - 75108", "stop_name": "HOCHE - SAINT-HONORE"}, "geometry": {"type": "Point", "coordinates": [2.300915593355041, 48.87697969338554]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a8f108d4697b005ac6a27248d9150c804aeb478d", "fields": {"departement": "75", "stop_lat": 48.885085288442156, "code_postal": "75117", "stop_lon": 2.298048117860305, "coord": [48.885085288442156, 2.298048117860305], "stop_id": 4023050, "stop_desc": "4 BIS PLACE DU MARECHAL JUIN - 75117", "stop_name": "PEREIRE"}, "geometry": {"type": "Point", "coordinates": [2.298048117860305, 48.885085288442156]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "899d65a12af5b8a3a5cd2700d1b9988a1960ac61", "fields": {"departement": "92", "stop_lat": 48.888610632721694, "code_postal": "92044", "stop_lon": 2.2814186634599443, "coord": [48.888610632721694, 2.2814186634599443], "stop_id": 4023055, "stop_desc": "34-36 RUE DE VILLIERS - 92044", "stop_name": "LOUIS ROUQUIER"}, "geometry": {"type": "Point", "coordinates": [2.2814186634599443, 48.888610632721694]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "95b3aa974d9d56856436866fe67100e54223e382", "fields": {"departement": "92", "stop_lat": 48.89174557599857, "code_postal": "92044", "stop_lon": 2.278130615179792, "coord": [48.89174557599857, 2.278130615179792], "stop_id": 4023057, "stop_desc": "70 RUE DE VILLIERS - 92044", "stop_name": "HOPITAL DU PERPETUEL SECOURS"}, "geometry": {"type": "Point", "coordinates": [2.278130615179792, 48.89174557599857]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2417150ee7c3d06b432ae290cea8c98431084642", "fields": {"departement": "92", "stop_lat": 48.8932094315966, "code_postal": "92051", "stop_lon": 2.2760435972410815, "coord": [48.8932094315966, 2.2760435972410815], "stop_id": 4023058, "stop_desc": "67 BOULEVARD DU CHATEAU - 92051", "stop_name": "PLACE DE LA LIBERATION"}, "geometry": {"type": "Point", "coordinates": [2.2760435972410815, 48.8932094315966]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5740b229092200e5c60fccecb0bdd4addb2602e3", "fields": {"departement": "92", "stop_lat": 48.88555130589665, "code_postal": "92051", "stop_lon": 2.258922605272076, "coord": [48.88555130589665, 2.258922605272076], "stop_id": 4023064, "stop_desc": "176 AVENUE CHARLES DE GAULLE - 92051", "stop_name": "PONT DE NEUILLY-METRO"}, "geometry": {"type": "Point", "coordinates": [2.258922605272076, 48.88555130589665]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b07ea2c48103782582976e60d7ed0e5b9d16bfb4", "fields": {"departement": "92", "stop_lat": 48.87333000775836, "code_postal": "92073", "stop_lon": 2.2266646165032538, "coord": [48.87333000775836, 2.2266646165032538], "stop_id": 4023067, "stop_desc": "46 RUE CARNOT - 92073", "stop_name": "HONORE D'ESTIENNE D'ORVES"}, "geometry": {"type": "Point", "coordinates": [2.2266646165032538, 48.87333000775836]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d5898dc1f63c47e2e94efbe89ce85c8989a89980", "fields": {"departement": "92", "stop_lat": 48.87855933518828, "code_postal": "92062", "stop_lon": 2.235305896379359, "coord": [48.87855933518828, 2.235305896379359], "stop_id": 4023071, "stop_desc": "140 RUE DE VERDUN - 92062", "stop_name": "RESIDENCE VERDUN"}, "geometry": {"type": "Point", "coordinates": [2.235305896379359, 48.87855933518828]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fd8b1a5ad5bde486d0cf2207802f69f80be03220", "fields": {"departement": "92", "stop_lat": 48.87866366555721, "code_postal": "92062", "stop_lon": 2.2419142564861145, "coord": [48.87866366555721, 2.2419142564861145], "stop_id": 4023074, "stop_desc": "FACE 6 BOULEVARD RICHARD WALLACE - 92062", "stop_name": "HOPITAL - PONT DE PUTEAUX"}, "geometry": {"type": "Point", "coordinates": [2.2419142564861145, 48.87866366555721]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6a32660892a9e6eb47143a82851d3a1e01321261", "fields": {"departement": "92", "stop_lat": 48.87684343387233, "code_postal": "92051", "stop_lon": 2.2472996479819614, "coord": [48.87684343387233, 2.2472996479819614], "stop_id": 4023075, "stop_desc": "135 BOULEVARD DU GENERAL KOENIG - 92051", "stop_name": "BAGATELLE"}, "geometry": {"type": "Point", "coordinates": [2.2472996479819614, 48.87684343387233]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9b2b3ceab84075b5f89447ebfeb284f0a391bd6a", "fields": {"departement": "92", "stop_lat": 48.88728839310905, "code_postal": "92051", "stop_lon": 2.279076042909763, "coord": [48.88728839310905, 2.279076042909763], "stop_id": 4023101, "stop_desc": "75 BOULEVARD BINEAU - 92051", "stop_name": "VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.279076042909763, 48.88728839310905]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bc88f0b99f57cac152517c3ee7d6421b40ed431f", "fields": {"departement": "92", "stop_lat": 48.88920854622339, "code_postal": "92051", "stop_lon": 2.2730227566215864, "coord": [48.88920854622339, 2.2730227566215864], "stop_id": 4023105, "stop_desc": "131 BOULEVARD BINEAU - 92051", "stop_name": "CHEZY"}, "geometry": {"type": "Point", "coordinates": [2.2730227566215864, 48.88920854622339]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cc36adc6d67694624d5349f1dea37d080c7aa261", "fields": {"departement": "92", "stop_lat": 48.90060601237607, "code_postal": "92026", "stop_lon": 2.2607673873457803, "coord": [48.90060601237607, 2.2607673873457803], "stop_id": 4023114, "stop_desc": "68 BOULEVARD DE VERDUN - 92026", "stop_name": "PAIX - VERDUN"}, "geometry": {"type": "Point", "coordinates": [2.2607673873457803, 48.90060601237607]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "698e0dc55a2471c8e3aca5667eabccb62f32448d", "fields": {"departement": "92", "stop_lat": 48.905715257896006, "code_postal": "92035", "stop_lon": 2.2541750973743575, "coord": [48.905715257896006, 2.2541750973743575], "stop_id": 4023120, "stop_desc": "FACE 7 BOULEVARD DE LA REPUBLIQUE - 92035", "stop_name": "PLAISANCE"}, "geometry": {"type": "Point", "coordinates": [2.2541750973743575, 48.905715257896006]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5a292b7312f603080fcbb2e63f8113dc925e20db", "fields": {"departement": "92", "stop_lat": 48.906358664664815, "code_postal": "92035", "stop_lon": 2.249075253224493, "coord": [48.906358664664815, 2.249075253224493], "stop_id": 4023122, "stop_desc": "48 BOULEVARD DE LA REPUBLIQUE - 92035", "stop_name": "SOUVENIR FRANCAIS"}, "geometry": {"type": "Point", "coordinates": [2.249075253224493, 48.906358664664815]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "862134db3411005e4a6ce660dad4f995802411fd", "fields": {"departement": "92", "stop_lat": 48.906161039991005, "code_postal": "92035", "stop_lon": 2.249198287788649, "coord": [48.906161039991005, 2.249198287788649], "stop_id": 4023123, "stop_desc": "29 BIS BOULEVARD DE LA REPUBLIQUE - 92035", "stop_name": "SOUVENIR FRANCAIS"}, "geometry": {"type": "Point", "coordinates": [2.249198287788649, 48.906161039991005]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9093851780edccfcdd9afb8420895cbfbd75c6ec", "fields": {"departement": "92", "stop_lat": 48.9067596914015, "code_postal": "92035", "stop_lon": 2.2446028499953714, "coord": [48.9067596914015, 2.2446028499953714], "stop_id": 4023125, "stop_desc": "55 BOULEVARD DE LA REPUBLIQUE - 92035", "stop_name": "MAIRIE DE LA GARENNE-COLOMBES"}, "geometry": {"type": "Point", "coordinates": [2.2446028499953714, 48.9067596914015]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fe9a9c5baba19cb195292b3f42be03ce234de90e", "fields": {"departement": "92", "stop_lat": 48.90736786089014, "code_postal": "92035", "stop_lon": 2.240879829025666, "coord": [48.90736786089014, 2.240879829025666], "stop_id": 4023126, "stop_desc": "98 BOULEVARD DE LA REPUBLIQUE - 92035", "stop_name": "DUMONT D'URVILLE - BELGIQUE"}, "geometry": {"type": "Point", "coordinates": [2.240879829025666, 48.90736786089014]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6b58d0eafffce4efabbdf5f6ef56cb23f8a7ee77", "fields": {"departement": "92", "stop_lat": 48.90307056824503, "code_postal": "92050", "stop_lon": 2.2287141538705844, "coord": [48.90307056824503, 2.2287141538705844], "stop_id": 4023133, "stop_desc": "204 AVENUE FRANCOIS ARAGO - 92050", "stop_name": "VEUVE LACROIX"}, "geometry": {"type": "Point", "coordinates": [2.2287141538705844, 48.90307056824503]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "81210f1ce9e3b657cb57e807258a734758a66d3f", "fields": {"departement": "92", "stop_lat": 48.90151323789025, "code_postal": "92050", "stop_lon": 2.2259365044967083, "coord": [48.90151323789025, 2.2259365044967083], "stop_id": 4023135, "stop_desc": "FACE 111 AVENUE FRANCOIS ARAGO - 92050", "stop_name": "ARRAS"}, "geometry": {"type": "Point", "coordinates": [2.2259365044967083, 48.90151323789025]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7c0fb00a2173e043d79838fa951f3589dcac3fd8", "fields": {"departement": "92", "stop_lat": 48.895660974821816, "code_postal": "92050", "stop_lon": 2.2150856614501198, "coord": [48.895660974821816, 2.2150856614501198], "stop_id": 4023143, "stop_desc": "141 AVENUE FREDERIC ET IRENE JOLIOT CURIE - 92050", "stop_name": "PREFECTURE DES HAUTS-DE-SEINE"}, "geometry": {"type": "Point", "coordinates": [2.2150856614501198, 48.895660974821816]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fab8e7c8c63c7ea1358d1a4b8868aafc22e651c7", "fields": {"departement": "92", "stop_lat": 48.89144597329983, "code_postal": "92050", "stop_lon": 2.215068338443355, "coord": [48.89144597329983, 2.215068338443355], "stop_id": 4023148, "stop_desc": "29-35 AV PABLO PICASSO - 92050", "stop_name": "LIBERTE"}, "geometry": {"type": "Point", "coordinates": [2.215068338443355, 48.89144597329983]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "463f1a88c553c3f50cb437bec7d394cea6cd5a2c", "fields": {"departement": "75", "stop_lat": 48.88601688033029, "code_postal": "75117", "stop_lon": 2.289598157269828, "coord": [48.88601688033029, 2.289598157269828], "stop_id": 4023172, "stop_desc": "FACE 5 PLACE DE LA PORTE DE CHAMPERRET - 75117", "stop_name": "L'YSER ET LA SOMME"}, "geometry": {"type": "Point", "coordinates": [2.289598157269828, 48.88601688033029]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2938f655b9b92305cdfa1c9e836590cbbad51397", "fields": {"departement": "92", "stop_lat": 48.886948430903146, "code_postal": "92051", "stop_lon": 2.282347163337189, "coord": [48.886948430903146, 2.282347163337189], "stop_id": 4023173, "stop_desc": "54 BOULEVARD BINEAU - 92051", "stop_name": "VILLIERS - BINEAU"}, "geometry": {"type": "Point", "coordinates": [2.282347163337189, 48.886948430903146]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2e43e61f2aac9f7ce2e09c09ba5fd894c298022a", "fields": {"departement": "92", "stop_lat": 48.88771020024983, "code_postal": "92051", "stop_lon": 2.2778762809004243, "coord": [48.88771020024983, 2.2778762809004243], "stop_id": 4023174, "stop_desc": "92 BOULEVARD BINEAU - 92051", "stop_name": "VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.2778762809004243, 48.88771020024983]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "12826a457ed014345c92beb5e687944292529c48", "fields": {"departement": "92", "stop_lat": 48.89253149733794, "code_postal": "92051", "stop_lon": 2.2688752558078367, "coord": [48.89253149733794, 2.2688752558078367], "stop_id": 4023178, "stop_desc": "186 BOULEVARD BINEAU - 92051", "stop_name": "LA SAUSSAYE - BINEAU"}, "geometry": {"type": "Point", "coordinates": [2.2688752558078367, 48.89253149733794]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b4303da22941830b96c1fc34643ef585faf128d8", "fields": {"departement": "92", "stop_lat": 48.8944895798988, "code_postal": "92051", "stop_lon": 2.2669508333590063, "coord": [48.8944895798988, 2.2669508333590063], "stop_id": 4023179, "stop_desc": "210 BOULEVARD BINEAU - 92051", "stop_name": "ILE DE LA JATTE"}, "geometry": {"type": "Point", "coordinates": [2.2669508333590063, 48.8944895798988]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9b740d64d0858f263f61db3502f0d830ac5d91f5", "fields": {"departement": "92", "stop_lat": 48.896889073971664, "code_postal": "92050", "stop_lon": 2.2209303386289885, "coord": [48.896889073971664, 2.2209303386289885], "stop_id": 4023190, "stop_desc": "0 BD DE PESARO - 92050", "stop_name": "NANTERRE-PREFECTURE RER"}, "geometry": {"type": "Point", "coordinates": [2.2209303386289885, 48.896889073971664]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6d51dd25019a72ad8e5f80387756874a14535a9e", "fields": {"departement": "92", "stop_lat": 48.89284340529102, "code_postal": "92050", "stop_lon": 2.2106899287691784, "coord": [48.89284340529102, 2.2106899287691784], "stop_id": 4023202, "stop_desc": "136 AVENUE FREDERIC ET IRENE JOLIOT CURIE - 92050", "stop_name": "PALAIS DES SPORTS"}, "geometry": {"type": "Point", "coordinates": [2.2106899287691784, 48.89284340529102]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a6240df4a937bd5acae098f289a364b6e78596d6", "fields": {"departement": "92", "stop_lat": 48.88960127968521, "code_postal": "92050", "stop_lon": 2.2044967458355496, "coord": [48.88960127968521, 2.2044967458355496], "stop_id": 4023203, "stop_desc": "45 AVENUE FREDERIC ET IRENE JOLIOT CURIE - 92050", "stop_name": "SADI-CARNOT - JOLIOT-CURIE"}, "geometry": {"type": "Point", "coordinates": [2.2044967458355496, 48.88960127968521]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "50c0ac9080f01f6a9537b4ddbcaec6d241de7c1a", "fields": {"departement": "92", "stop_lat": 48.88739562234356, "code_postal": "92050", "stop_lon": 2.201136226679893, "coord": [48.88739562234356, 2.201136226679893], "stop_id": 4023206, "stop_desc": "2 AVENUE FREDERIC ET IRENE JOLIOT CURIE - 92050", "stop_name": "PLACE DE LA BOULE - JOLIOT CURIE"}, "geometry": {"type": "Point", "coordinates": [2.201136226679893, 48.88739562234356]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6e1db407e620152f5e6619f8da8aecf4839fe60c", "fields": {"departement": "92", "stop_lat": 48.87051991876674, "code_postal": "92063", "stop_lon": 2.2032649673400737, "coord": [48.87051991876674, 2.2032649673400737], "stop_id": 4023213, "stop_desc": "FACE 45-47 RUE GALLIENI - 92063", "stop_name": "8 MAI 1945"}, "geometry": {"type": "Point", "coordinates": [2.2032649673400737, 48.87051991876674]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "be8f635f21b74633762e7c96d75b131938ffa6a9", "fields": {"departement": "92", "stop_lat": 48.85949432773221, "code_postal": "92063", "stop_lon": 2.18260333113373, "coord": [48.85949432773221, 2.18260333113373], "stop_id": 4023216, "stop_desc": "R DE LA CHATAIGNERAIE - 92063", "stop_name": "COLLEGE PASSY - BUZENVAL"}, "geometry": {"type": "Point", "coordinates": [2.18260333113373, 48.85949432773221]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "db32926b93ab4efbbcd3100f636810b4c9f5c056", "fields": {"departement": "92", "stop_lat": 48.8944895798988, "code_postal": "92051", "stop_lon": 2.2669508333590063, "coord": [48.8944895798988, 2.2669508333590063], "stop_id": 4023227, "stop_desc": "210 BOULEVARD BINEAU - 92051", "stop_name": "ILE DE LA JATTE"}, "geometry": {"type": "Point", "coordinates": [2.2669508333590063, 48.8944895798988]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a5ed8e43a47a71950a55f0fb34d1023301dbc07a", "fields": {"departement": "92", "stop_lat": 48.90114366662126, "code_postal": "92050", "stop_lon": 2.2247649617257386, "coord": [48.90114366662126, 2.2247649617257386], "stop_id": 4023240, "stop_desc": "103 AVENUE FRANCOIS ARAGO - 92050", "stop_name": "ARRAS"}, "geometry": {"type": "Point", "coordinates": [2.2247649617257386, 48.90114366662126]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7eced5a503290cc624e461496d46047e6d480b2b", "fields": {"departement": "92", "stop_lat": 48.88279774489227, "code_postal": "92063", "stop_lon": 2.1890747728507938, "coord": [48.88279774489227, 2.1890747728507938], "stop_id": 4023244, "stop_desc": "FACE 46 AVENUE PAUL DOUMER - 92063", "stop_name": "GABRIEL PERI"}, "geometry": {"type": "Point", "coordinates": [2.1890747728507938, 48.88279774489227]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "353a11ca9abe5343d2937ebe5171e36a14b03436", "fields": {"departement": "92", "stop_lat": 48.88545796036984, "code_postal": "92050", "stop_lon": 2.19648064018029, "coord": [48.88545796036984, 2.19648064018029], "stop_id": 4023246, "stop_desc": "FACE 24 AVENUE DU MARECHAL JOFFRE - 92050", "stop_name": "SAINTE-GENEVIEVE"}, "geometry": {"type": "Point", "coordinates": [2.19648064018029, 48.88545796036984]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dfece728746813e6759e707e09750cca08d970ec", "fields": {"departement": "92", "stop_lat": 48.88884631097434, "code_postal": "92050", "stop_lon": 2.204457793799681, "coord": [48.88884631097434, 2.204457793799681], "stop_id": 4023248, "stop_desc": "42 RUE SADI CARNOT - 92050", "stop_name": "SADI CARNOT - JOLIOT CURIE"}, "geometry": {"type": "Point", "coordinates": [2.204457793799681, 48.88884631097434]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8ad8624a6cd409ac3b3bcd07165d7a0b10620326", "fields": {"departement": "92", "stop_lat": 48.89095063633459, "code_postal": "92051", "stop_lon": 2.270431062561649, "coord": [48.89095063633459, 2.270431062561649], "stop_id": 4023275, "stop_desc": "166 BOULEVARD BINEAU - 92051", "stop_name": "BINEAU - CHATEAU"}, "geometry": {"type": "Point", "coordinates": [2.270431062561649, 48.89095063633459]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ad77e3c5a42a4f7f6ec02a85fdf3a7ee5d8af9f0", "fields": {"departement": "92", "stop_lat": 48.892342586607654, "code_postal": "92051", "stop_lon": 2.268562026580621, "coord": [48.892342586607654, 2.268562026580621], "stop_id": 4023278, "stop_desc": "171 BOULEVARD BINEAU - 92051", "stop_name": "LA SAUSSAYE - BINEAU"}, "geometry": {"type": "Point", "coordinates": [2.268562026580621, 48.892342586607654]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7de91b08cb89382112d0232b147ddb7e0264e2e4", "fields": {"departement": "92", "stop_lat": 48.8942916530335, "code_postal": "92051", "stop_lon": 2.2665967215565543, "coord": [48.8942916530335, 2.2665967215565543], "stop_id": 4023280, "stop_desc": "197 BOULEVARD BINEAU - 92051", "stop_name": "ILE DE LA JATTE"}, "geometry": {"type": "Point", "coordinates": [2.2665967215565543, 48.8942916530335]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "07daa33b974f79b1888a682b9cba780c35895291", "fields": {"departement": "92", "stop_lat": 48.90844826511231, "code_postal": "92035", "stop_lon": 2.255534088725969, "coord": [48.90844826511231, 2.255534088725969], "stop_id": 4023289, "stop_desc": "89 AVENUE DU GENERAL DE GAULLE - 92035", "stop_name": "JEAN BONAL"}, "geometry": {"type": "Point", "coordinates": [2.255534088725969, 48.90844826511231]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b3a5dfb82b4231df0194e81773e3aca2c6362eca", "fields": {"departement": "92", "stop_lat": 48.912536269649756, "code_postal": "92035", "stop_lon": 2.253946001874337, "coord": [48.912536269649756, 2.253946001874337], "stop_id": 4023293, "stop_desc": "11 AVENUE DU GENERAL DE GAULLE - 92035", "stop_name": "PONT DE LA PUCE"}, "geometry": {"type": "Point", "coordinates": [2.253946001874337, 48.912536269649756]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "08ca32d1bffab9e4fa528a639e26e136e71f56e0", "fields": {"departement": "92", "stop_lat": 48.91873628540861, "code_postal": "92025", "stop_lon": 2.2525042037655285, "coord": [48.91873628540861, 2.2525042037655285], "stop_id": 4023298, "stop_desc": "64 AVENUE HENRI BARBUSSE - 92025", "stop_name": "PRAGUE"}, "geometry": {"type": "Point", "coordinates": [2.2525042037655285, 48.91873628540861]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "133958eaed5e311cf1a441178f5f294187f178b6", "fields": {"departement": "92", "stop_lat": 48.92221443086064, "code_postal": "92025", "stop_lon": 2.2527712599816208, "coord": [48.92221443086064, 2.2527712599816208], "stop_id": 4023299, "stop_desc": "4 AVENUE HENRI BARBUSSE - 92025", "stop_name": "MAIRIE DE COLOMBES"}, "geometry": {"type": "Point", "coordinates": [2.2527712599816208, 48.92221443086064]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1d0b9b2f4aed962e499735332714de4b435a9db9", "fields": {"departement": "92", "stop_lat": 48.929974109382236, "code_postal": "92025", "stop_lon": 2.245952538071849, "coord": [48.929974109382236, 2.245952538071849], "stop_id": 4023306, "stop_desc": "FACE 77 RUE PAUL BERT - 92025", "stop_name": "LES SAULES"}, "geometry": {"type": "Point", "coordinates": [2.245952538071849, 48.929974109382236]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0948d6dbff5d55555d4d5fbe94075e1b3dbc6d86", "fields": {"departement": "95", "stop_lat": 48.93795575482997, "code_postal": "95018", "stop_lon": 2.236416690481608, "coord": [48.93795575482997, 2.236416690481608], "stop_id": 4023310, "stop_desc": "26 RUE AMBROISE THOMAS - 95018", "stop_name": "FERDINAND BERTHOUD"}, "geometry": {"type": "Point", "coordinates": [2.236416690481608, 48.93795575482997]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f5ca0d0a18588e67d438a089000a88060f3811ef", "fields": {"departement": "95", "stop_lat": 48.93967980526299, "code_postal": "95018", "stop_lon": 2.2347490131325474, "coord": [48.93967980526299, 2.2347490131325474], "stop_id": 4023312, "stop_desc": "34 RUE AMBROISE THOMAS - 95018", "stop_name": "MAURICE UTRILLO"}, "geometry": {"type": "Point", "coordinates": [2.2347490131325474, 48.93967980526299]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "74e15719816eb0ea745e12b52c5be91cd0e5661e", "fields": {"departement": "95", "stop_lat": 48.94226793321173, "code_postal": "95018", "stop_lon": 2.234662033226233, "coord": [48.94226793321173, 2.234662033226233], "stop_id": 4023314, "stop_desc": "42-44 AVENUE MAURICE UTRILLO (EX MARCEL CACHIN) - 95018", "stop_name": "LES MESSIERS"}, "geometry": {"type": "Point", "coordinates": [2.234662033226233, 48.94226793321173]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "664b7cb1a7cb665da5acd4cada4fe38844129153", "fields": {"departement": "95", "stop_lat": 48.94664307288312, "code_postal": "95018", "stop_lon": 2.233016107082275, "coord": [48.94664307288312, 2.233016107082275], "stop_id": 4023316, "stop_desc": "AVENUE MAURICE UTRILLO - 95018", "stop_name": "PLACE FRANCOIS RABELAIS"}, "geometry": {"type": "Point", "coordinates": [2.233016107082275, 48.94664307288312]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3b55699dda76f79ca99ec31c5704e2a7edee286b", "fields": {"departement": "95", "stop_lat": 48.95019067794116, "code_postal": "95018", "stop_lon": 2.2305665558582644, "coord": [48.95019067794116, 2.2305665558582644], "stop_id": 4023319, "stop_desc": "RUE JEAN LURCAT - 95018", "stop_name": "GARE DU VAL D'ARGENTEUIL"}, "geometry": {"type": "Point", "coordinates": [2.2305665558582644, 48.95019067794116]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "24d9a9a91c13834b3574f9e4bf4332e4f79954c2", "fields": {"departement": "95", "stop_lat": 48.95446717548616, "code_postal": "95018", "stop_lon": 2.219736570739411, "coord": [48.95446717548616, 2.219736570739411], "stop_id": 4023324, "stop_desc": "ALLEE GUY DE MAUPASSANT - 95018", "stop_name": "BEETHOVEN"}, "geometry": {"type": "Point", "coordinates": [2.219736570739411, 48.95446717548616]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1b98ad32526a796146b18c7ef65536f744804be6", "fields": {"departement": "95", "stop_lat": 48.95529108126409, "code_postal": "95018", "stop_lon": 2.216855376493315, "coord": [48.95529108126409, 2.216855376493315], "stop_id": 4023327, "stop_desc": "RUE DES ALLOBROGES - 95018", "stop_name": "COLLEGE CLAUDE MONET"}, "geometry": {"type": "Point", "coordinates": [2.216855376493315, 48.95529108126409]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8beee69ddf8bdf6e2b00903dbaa11b9f2bc3a968", "fields": {"departement": "92", "stop_lat": 48.886616147822906, "code_postal": "92044", "stop_lon": 2.282879006969022, "coord": [48.886616147822906, 2.282879006969022], "stop_id": 4023329, "stop_desc": "9 BOULEVARD BINEAU - 92044", "stop_name": "VILLIERS - BINEAU"}, "geometry": {"type": "Point", "coordinates": [2.282879006969022, 48.886616147822906]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "531f06dba543b912d9b2ef94a6b18dbc8b427bc8", "fields": {"departement": "92", "stop_lat": 48.897640147983765, "code_postal": "92026", "stop_lon": 2.247699737192323, "coord": [48.897640147983765, 2.247699737192323], "stop_id": 4023376, "stop_desc": "FACE 87 RUE DE BEZONS - 92026", "stop_name": "GARE DE COURBEVOIE"}, "geometry": {"type": "Point", "coordinates": [2.247699737192323, 48.897640147983765]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7549e0f0077ce593d1399ee87b05d385ec676ca2", "fields": {"departement": "92", "stop_lat": 48.897648899181064, "code_postal": "92026", "stop_lon": 2.247386211418411, "coord": [48.897648899181064, 2.247386211418411], "stop_id": 4023377, "stop_desc": "87 RUE DE BEZONS - 92026", "stop_name": "GARE DE COURBEVOIE"}, "geometry": {"type": "Point", "coordinates": [2.247386211418411, 48.897648899181064]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b981922f84d59e570828d5190cb4fe64d1bcd079", "fields": {"departement": "92", "stop_lat": 48.902902381796835, "code_postal": "92035", "stop_lon": 2.242251362599403, "coord": [48.902902381796835, 2.242251362599403], "stop_id": 4023381, "stop_desc": "32 RUE LEON MAURICE NORDMANN - 92035", "stop_name": "RHIN ET DANUBE"}, "geometry": {"type": "Point", "coordinates": [2.242251362599403, 48.902902381796835]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ad1a5122101cfeff41da2a2319cda623b0612932", "fields": {"departement": "92", "stop_lat": 48.91056816740818, "code_postal": "92025", "stop_lon": 2.242019156833614, "coord": [48.91056816740818, 2.242019156833614], "stop_id": 4023388, "stop_desc": "223 RUE DES VOIES DU BOIS - 92025", "stop_name": "RUE DU COMMERCE"}, "geometry": {"type": "Point", "coordinates": [2.242019156833614, 48.91056816740818]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "343ee318c7216ea8ab57c1b61d3f0e7c669b1591", "fields": {"departement": "92", "stop_lat": 48.91684175838484, "code_postal": "92025", "stop_lon": 2.242839416058581, "coord": [48.91684175838484, 2.242839416058581], "stop_id": 4023406, "stop_desc": "FACE 153 RUE D'ESTIENNE D'ORVES - 92025", "stop_name": "GROS GRES"}, "geometry": {"type": "Point", "coordinates": [2.242839416058581, 48.91684175838484]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c28aeee143e8de78c4f60efe9bd5c4b17452721e", "fields": {"departement": "92", "stop_lat": 48.91119258282441, "code_postal": "92025", "stop_lon": 2.236332437932319, "coord": [48.91119258282441, 2.236332437932319], "stop_id": 4023407, "stop_desc": "336 RUE D'ESTIENNE D'ORVES - 92025", "stop_name": "COLBERT"}, "geometry": {"type": "Point", "coordinates": [2.236332437932319, 48.91119258282441]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c3eaff28faea6b864af8e584c2462ffc55b91982", "fields": {"departement": "95", "stop_lat": 48.92706161626719, "code_postal": "95063", "stop_lon": 2.2150115921880924, "coord": [48.92706161626719, 2.2150115921880924], "stop_id": 4023486, "stop_desc": "64 RUE EDOUARD VAILLANT - 95063", "stop_name": "LA GRACE DE DIEU"}, "geometry": {"type": "Point", "coordinates": [2.2150115921880924, 48.92706161626719]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5d641d9e551227a881cef05483371d5d5ac7e9fd", "fields": {"departement": "78", "stop_lat": 48.92427005982802, "code_postal": "78311", "stop_lon": 2.201516646605205, "coord": [48.92427005982802, 2.201516646605205], "stop_id": 4023494, "stop_desc": "74 RUE EMILE ZOLA - 78311", "stop_name": "YSER"}, "geometry": {"type": "Point", "coordinates": [2.201516646605205, 48.92427005982802]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "00dced7ca9b3df73e8d526211361ac235f8bc19a", "fields": {"departement": "78", "stop_lat": 48.926758035842404, "code_postal": "78311", "stop_lon": 2.1926723314908734, "coord": [48.926758035842404, 2.1926723314908734], "stop_id": 4023497, "stop_desc": "BOULEVARD HENRI BARBUSSE - 78311", "stop_name": "LES BLANCHES"}, "geometry": {"type": "Point", "coordinates": [2.1926723314908734, 48.926758035842404]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "474c8caa26d2124b23b59c8cf0889931275beeae", "fields": {"departement": "78", "stop_lat": 48.92879333610611, "code_postal": "78311", "stop_lon": 2.18882042051532, "coord": [48.92879333610611, 2.18882042051532], "stop_id": 4023499, "stop_desc": "BOULEVARD HENRI BARBUSSE - 78311", "stop_name": "EDOUARD BRANLY"}, "geometry": {"type": "Point", "coordinates": [2.18882042051532, 48.92879333610611]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ef51937e10a100112d8bd92b439d2311f846d966", "fields": {"departement": "78", "stop_lat": 48.930666622983374, "code_postal": "78311", "stop_lon": 2.1848732055873903, "coord": [48.930666622983374, 2.1848732055873903], "stop_id": 4023502, "stop_desc": "81 BOULEVARD HENRI BARBUSSE - 78311", "stop_name": "CAMILLE PELLETAN"}, "geometry": {"type": "Point", "coordinates": [2.1848732055873903, 48.930666622983374]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "09ded6e48ed178cf208d1621c14b9f46a2074525", "fields": {"departement": "78", "stop_lat": 48.945785577871696, "code_postal": "78358", "stop_lon": 2.1436114027095563, "coord": [48.945785577871696, 2.1436114027095563], "stop_id": 4023515, "stop_desc": "PLACE DE LA LIBERATION - 78358", "stop_name": "GARE DE MAISONS-LAFFITTE-RER"}, "geometry": {"type": "Point", "coordinates": [2.1436114027095563, 48.945785577871696]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b18704f8ed6bf733fa8b87564c581f56925a4da4", "fields": {"departement": "92", "stop_lat": 48.903432755669506, "code_postal": "92050", "stop_lon": 2.204720324448439, "coord": [48.903432755669506, 2.204720324448439], "stop_id": 4023614, "stop_desc": "AVENUE DE LA COMMUNE DE PARIS - 92050", "stop_name": "JEAN BAILLET"}, "geometry": {"type": "Point", "coordinates": [2.204720324448439, 48.903432755669506]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "da8d696334750e2463c5c2fe9b97b39d92b46350", "fields": {"departement": "92", "stop_lat": 48.90829480662086, "code_postal": "92050", "stop_lon": 2.2131062512149104, "coord": [48.90829480662086, 2.2131062512149104], "stop_id": 4023618, "stop_desc": "RUE DU 1ER MAI - 92050", "stop_name": "PONT DE ROUEN"}, "geometry": {"type": "Point", "coordinates": [2.2131062512149104, 48.90829480662086]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e7ee5cbfc0eabbe6cfcb384f14cd095dbb36b489", "fields": {"departement": "92", "stop_lat": 48.909016979537306, "code_postal": "92050", "stop_lon": 2.2162266830020974, "coord": [48.909016979537306, 2.2162266830020974], "stop_id": 4023619, "stop_desc": "334 AVENUE DE LA REPUBLIQUE - 92050", "stop_name": "LES SAULES"}, "geometry": {"type": "Point", "coordinates": [2.2162266830020974, 48.909016979537306]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d75d931b11b0f53b174914840a1fc3752b783ccf", "fields": {"departement": "92", "stop_lat": 48.91563722160135, "code_postal": "92025", "stop_lon": 2.2317831128577867, "coord": [48.91563722160135, 2.2317831128577867], "stop_id": 4023628, "stop_desc": "430-432 RUE GABRIEL PERI - 92025", "stop_name": "COLBERT"}, "geometry": {"type": "Point", "coordinates": [2.2317831128577867, 48.91563722160135]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5af088efab0277dd921f53362eaf0cf82067ac47", "fields": {"departement": "75", "stop_lat": 48.88243186331477, "code_postal": "75119", "stop_lon": 2.382632220716057, "coord": [48.88243186331477, 2.382632220716057], "stop_id": 5770782, "stop_desc": "FACE 7 PLACE ARMAND CARREL - 75119", "stop_name": "ARMAND CARREL - MAIRIE DU 19E"}, "geometry": {"type": "Point", "coordinates": [2.382632220716057, 48.88243186331477]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9889e938e6a545edbbb76cb8a7a26eb757ca8ca8", "fields": {"departement": "75", "stop_lat": 48.89071832990986, "code_postal": "75119", "stop_lon": 2.3819580224941928, "coord": [48.89071832990986, 2.3819580224941928], "stop_id": 5770790, "stop_desc": "49 RUE DE L'OURCQ - 75119", "stop_name": "CANAL DE L'OURCQ"}, "geometry": {"type": "Point", "coordinates": [2.3819580224941928, 48.89071832990986]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e98af5cec0c77b9ac2644af27289348446cfe5ea", "fields": {"departement": "75", "stop_lat": 48.89219133685987, "code_postal": "75118", "stop_lon": 2.345514131309468, "coord": [48.89219133685987, 2.345514131309468], "stop_id": 5770813, "stop_desc": "109-111 RUE ORDENER - 75118", "stop_name": "MAIRIE DU 18E - JULES JOFFRIN"}, "geometry": {"type": "Point", "coordinates": [2.345514131309468, 48.89219133685987]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bfbb92a409680e60328b4f353a6dfb9e3819f244", "fields": {"departement": "75", "stop_lat": 48.89483384850544, "code_postal": "75118", "stop_lon": 2.3370638603104035, "coord": [48.89483384850544, 2.3370638603104035], "stop_id": 5770819, "stop_desc": "103-105 RUE DAMREMONT - 75118", "stop_name": "DAMREMONT - CHAMPIONNET"}, "geometry": {"type": "Point", "coordinates": [2.3370638603104035, 48.89483384850544]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ba7b7af7293ba85abc88b80d9e786eece5ba19d5", "fields": {"departement": "75", "stop_lat": 48.897071643161446, "code_postal": "75118", "stop_lon": 2.338263356998402, "coord": [48.897071643161446, 2.338263356998402], "stop_id": 5770820, "stop_desc": "96 RUE DU POTEAU - 75118", "stop_name": "POTEAU - BELLIARD"}, "geometry": {"type": "Point", "coordinates": [2.338263356998402, 48.897071643161446]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "09f1d99026914b8877b30eb8d17b66456481d719", "fields": {"departement": "75", "stop_lat": 48.9002979503857, "code_postal": "75118", "stop_lon": 2.3330425224541718, "coord": [48.9002979503857, 2.3330425224541718], "stop_id": 5770827, "stop_desc": "1 R LOUIS PASTEUR VALLERY-RADOT - 75118", "stop_name": "PORTE DE MONTMARTRE"}, "geometry": {"type": "Point", "coordinates": [2.3330425224541718, 48.9002979503857]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dfa84d60be73e35d2f4bb88c73243fe3178f35a5", "fields": {"departement": "92", "stop_lat": 48.89682561624369, "code_postal": "92026", "stop_lon": 2.240422360584157, "coord": [48.89682561624369, 2.240422360584157], "stop_id": 5775572, "stop_desc": "24 BOULEVARD DE LA MISSION MARCHAND - 92026", "stop_name": "FAUBOURG DE L'ARCHE"}, "geometry": {"type": "Point", "coordinates": [2.240422360584157, 48.89682561624369]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9309da88ecc0382d94017620f236a927d5df8c7d", "fields": {"departement": "92", "stop_lat": 48.90328991347829, "code_postal": "92026", "stop_lon": 2.255869401224173, "coord": [48.90328991347829, 2.255869401224173], "stop_id": 5775581, "stop_desc": "97 BIS RUE DE COLOMBES - 92026", "stop_name": "REPUBLIQUE - COLOMBES"}, "geometry": {"type": "Point", "coordinates": [2.255869401224173, 48.90328991347829]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7310a8ca3727f4b0dd87569b86324652ff96d7d6", "fields": {"departement": "92", "stop_lat": 48.92087488546375, "code_postal": "92004", "stop_lon": 2.282788496058093, "coord": [48.92087488546375, 2.282788496058093], "stop_id": 5775595, "stop_desc": "23 RUE ROBERT DUPONT - 92004", "stop_name": "MENIL"}, "geometry": {"type": "Point", "coordinates": [2.282788496058093, 48.92087488546375]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d074d2db20ffe41e7b14cfdbb62dd359be94de69", "fields": {"departement": "92", "stop_lat": 48.92482327770003, "code_postal": "92036", "stop_lon": 2.2901216113838316, "coord": [48.92482327770003, 2.2901216113838316], "stop_id": 5775598, "stop_desc": "FACE 60 RUE LOUIS CALMEL - 92036", "stop_name": "COUTURE D'AUXERRE"}, "geometry": {"type": "Point", "coordinates": [2.2901216113838316, 48.92482327770003]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f07567cf126f5b3de4f89aed561becee32a0e257", "fields": {"departement": "92", "stop_lat": 48.9247960072066, "code_postal": "92036", "stop_lon": 2.2893442681480756, "coord": [48.9247960072066, 2.2893442681480756], "stop_id": 5775599, "stop_desc": "60 RUE LOUIS CALMEL - 92036", "stop_name": "COUTURE D'AUXERRE"}, "geometry": {"type": "Point", "coordinates": [2.2893442681480756, 48.9247960072066]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eaf55a068713a7b20bd7bdda253ef733df74f9c3", "fields": {"departement": "92", "stop_lat": 48.933331743045414, "code_postal": "92036", "stop_lon": 2.313070463514173, "coord": [48.933331743045414, 2.313070463514173], "stop_id": 5775609, "stop_desc": "RUE THOMAS EDISON - 92036", "stop_name": "PARC DES CHANTERAINES"}, "geometry": {"type": "Point", "coordinates": [2.313070463514173, 48.933331743045414]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "12a76059f93a638e6cdbdd95333fe34ecf8ca697", "fields": {"departement": "92", "stop_lat": 48.93136481953886, "code_postal": "92036", "stop_lon": 2.31998674235399, "coord": [48.93136481953886, 2.31998674235399], "stop_id": 5775610, "stop_desc": "110 AVENUE DU VIEUX CHEMIN DE SAINT-DENIS - 92036", "stop_name": "VIEUX CHEMIN DE SAINT-DENIS - CENTRE COMMERCIAL"}, "geometry": {"type": "Point", "coordinates": [2.31998674235399, 48.93136481953886]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e7d77619dd1d0a38d325b52a087f96f197e403ce", "fields": {"departement": "92", "stop_lat": 48.91664590727471, "code_postal": "92009", "stop_lon": 2.2725796596115986, "coord": [48.91664590727471, 2.2725796596115986], "stop_id": 5775616, "stop_desc": "FACE 42 RUE D'ESTIENNE D'ORVES - 92009", "stop_name": "LA PAIX"}, "geometry": {"type": "Point", "coordinates": [2.2725796596115986, 48.91664590727471]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c688b35ad2c1e393dccce9aefd68d4b77f883874", "fields": {"departement": "92", "stop_lat": 48.91152981895809, "code_postal": "92024", "stop_lon": 2.3151803601377994, "coord": [48.91152981895809, 2.3151803601377994], "stop_id": 5794239, "stop_desc": "17 RUE DES 3 PAVILLONS - 92024", "stop_name": "RUE DES TROIS PAVILLONS"}, "geometry": {"type": "Point", "coordinates": [2.3151803601377994, 48.91152981895809]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6c4bb3e76f4591b0699095ca850084b94b5da661", "fields": {"departement": "93", "stop_lat": 48.91229909660558, "code_postal": "93008", "stop_lon": 2.436856512880611, "coord": [48.91229909660558, 2.436856512880611], "stop_id": 5794616, "stop_desc": "AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "ESCADRILLE NORMANDIE NIEMEN - PAUL VAILLANT-COUTURIER-TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.436856512880611, 48.91229909660558]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3f9247ba8e82b9a9a1c6af252a501b9ffe4d2326", "fields": {"departement": "93", "stop_lat": 48.90076982510812, "code_postal": "93062", "stop_lon": 2.513540106450058, "coord": [48.90076982510812, 2.513540106450058], "stop_id": 5794633, "stop_desc": "FACE 13 AVENUE THIERS - 93062", "stop_name": "CENTRE SPORTIF - PISCINE"}, "geometry": {"type": "Point", "coordinates": [2.513540106450058, 48.90076982510812]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9a88df7f7cfbcf02fd6ee01b9dc91c2d58a3ee95", "fields": {"departement": "93", "stop_lat": 48.90575758417073, "code_postal": "93014", "stop_lon": 2.551961420366634, "coord": [48.90575758417073, 2.551961420366634], "stop_id": 5794642, "stop_desc": "BOULEVARD EMILE ZOLA - 93014", "stop_name": "COLLEGE ROMAIN ROLLAND"}, "geometry": {"type": "Point", "coordinates": [2.551961420366634, 48.90575758417073]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3e533511627db6b9cd289a214b9263d7a116f607", "fields": {"departement": "93", "stop_lat": 48.93103616975119, "code_postal": "93013", "stop_lon": 2.4264309102565793, "coord": [48.93103616975119, 2.4264309102565793], "stop_id": 5794645, "stop_desc": "FACE 13 RUE ETIENNE DOLET - 93013", "stop_name": "LE BOURGET-RER"}, "geometry": {"type": "Point", "coordinates": [2.4264309102565793, 48.93103616975119]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2ebaca33337578175003870b616f34e1d91cb2ed", "fields": {"departement": "93", "stop_lat": 48.92548845120095, "code_postal": "93029", "stop_lon": 2.441000622041601, "coord": [48.92548845120095, 2.441000622041601], "stop_id": 5794652, "stop_desc": "FACE 99 RUE SADI CARNOT - 93029", "stop_name": "JEAN-PIERRE TIMBAUD"}, "geometry": {"type": "Point", "coordinates": [2.441000622041601, 48.92548845120095]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "38d1bd96c24fa053fe85b3c0bc35770f6f39210c", "fields": {"departement": "93", "stop_lat": 48.923047812383174, "code_postal": "93029", "stop_lon": 2.446791707406282, "coord": [48.923047812383174, 2.446791707406282], "stop_id": 5794654, "stop_desc": "5 BOULEVARD PAUL VAILLANT-COUTURIER - 93029", "stop_name": "MAIRIE DE DRANCY"}, "geometry": {"type": "Point", "coordinates": [2.446791707406282, 48.923047812383174]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "23348115b76d5f660777c95854fe8a6c0c885598", "fields": {"departement": "93", "stop_lat": 48.90519794816186, "code_postal": "93014", "stop_lon": 2.5482918443949325, "coord": [48.90519794816186, 2.5482918443949325], "stop_id": 5794668, "stop_desc": "BOULEVARD EMILE ZOLA - 93014", "stop_name": "GAGARINE"}, "geometry": {"type": "Point", "coordinates": [2.5482918443949325, 48.90519794816186]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "39b1eb41f98a8978d5666d7b1cc78cdaa0295fb7", "fields": {"departement": "93", "stop_lat": 48.90223965052625, "code_postal": "93057", "stop_lon": 2.510177970708728, "coord": [48.90223965052625, 2.510177970708728], "stop_id": 5794677, "stop_desc": "215 AVENUE JEAN JAURES - 93057", "stop_name": "GARE DES PAVILLONS-SOUS-BOIS"}, "geometry": {"type": "Point", "coordinates": [2.510177970708728, 48.90223965052625]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "93b004ee3e0c26800087d01875dfbff5df50f75d", "fields": {"departement": "93", "stop_lat": 48.90695328855752, "code_postal": "93010", "stop_lon": 2.487003347246266, "coord": [48.90695328855752, 2.487003347246266], "stop_id": 5794683, "stop_desc": "177 AVENUE GALLIENI - 93010", "stop_name": "PASTEUR - HOPITAL JEAN VERDIER"}, "geometry": {"type": "Point", "coordinates": [2.487003347246266, 48.90695328855752]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4fd93d4f5f55f963c966f2738ef2d605e6f33de8", "fields": {"departement": "93", "stop_lat": 48.90676356658909, "code_postal": "93008", "stop_lon": 2.446552780443455, "coord": [48.90676356658909, 2.446552780443455], "stop_id": 5794692, "stop_desc": "15 BOULEVARD MAURICE THOREZ - 93008", "stop_name": "MAURICE THOREZ"}, "geometry": {"type": "Point", "coordinates": [2.446552780443455, 48.90676356658909]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bde1b6f9eede6814d0139520a0403ad0b6302fc3", "fields": {"departement": "93", "stop_lat": 48.917738008626415, "code_postal": "93029", "stop_lon": 2.434712453448304, "coord": [48.917738008626415, 2.434712453448304], "stop_id": 5794699, "stop_desc": "RUE FERNAND PENA - 93029", "stop_name": "FERNAND PENA"}, "geometry": {"type": "Point", "coordinates": [2.434712453448304, 48.917738008626415]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "57f0f46d3ac2680a0235d33cce1aa5097776caea", "fields": {"departement": "93", "stop_lat": 48.9234232321201, "code_postal": "93029", "stop_lon": 2.4389371950510172, "coord": [48.9234232321201, 2.4389371950510172], "stop_id": 5794702, "stop_desc": "80 RUE DE LA REPUBLIQUE - 93029", "stop_name": "JEAN-PIERRE TIMBAUD"}, "geometry": {"type": "Point", "coordinates": [2.4389371950510172, 48.9234232321201]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9fbff3956a1fcb5422b7adadb6744215a97c5c07", "fields": {"departement": "93", "stop_lat": 48.92636274998825, "code_postal": "93029", "stop_lon": 2.4267365478070193, "coord": [48.92636274998825, 2.4267365478070193], "stop_id": 5794705, "stop_desc": "FACE 235 RUE DE LA REPUBLIQUE - 93029", "stop_name": "REPUBLIQUE - VINSON"}, "geometry": {"type": "Point", "coordinates": [2.4267365478070193, 48.92636274998825]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "039ca7caeecc4a4e39b119ed84d8ac9fefc861ec", "fields": {"departement": "93", "stop_lat": 48.93101006011957, "code_postal": "93013", "stop_lon": 2.425285132274111, "coord": [48.93101006011957, 2.425285132274111], "stop_id": 5794709, "stop_desc": "22 AVENUE FRANCIS DE PRESSENSE - 93013", "stop_name": "LE BOURGET-RER"}, "geometry": {"type": "Point", "coordinates": [2.425285132274111, 48.93101006011957]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "70826e6ffb009095b7711bd86003ae7ffaef5623", "fields": {"departement": "93", "stop_lat": 48.90676370239889, "code_postal": "93014", "stop_lon": 2.55713262535528, "coord": [48.90676370239889, 2.55713262535528], "stop_id": 5794711, "stop_desc": "AVENUE JEAN MOULIN - 93014", "stop_name": "EMILE ZOLA"}, "geometry": {"type": "Point", "coordinates": [2.55713262535528, 48.90676370239889]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a1dcfa0c24e5810fa639bb976456c5f5689459ad", "fields": {"departement": "93", "stop_lat": 48.905473006780014, "code_postal": "93014", "stop_lon": 2.5502833823341953, "coord": [48.905473006780014, 2.5502833823341953], "stop_id": 5794712, "stop_desc": "BOULEVARD EMILE ZOLA - 93014", "stop_name": "COLLEGE ROMAIN ROLLAND"}, "geometry": {"type": "Point", "coordinates": [2.5502833823341953, 48.905473006780014]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "89275969f565554dc1cf9fc76146b3ec381005e0", "fields": {"departement": "93", "stop_lat": 48.912055676467105, "code_postal": "93046", "stop_lon": 2.5207776395378794, "coord": [48.912055676467105, 2.5207776395378794], "stop_id": 5794717, "stop_desc": "FACE 300 AVENUE ARISTIDE BRIAND - 93046", "stop_name": "CHANZY"}, "geometry": {"type": "Point", "coordinates": [2.5207776395378794, 48.912055676467105]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3478f2520407db4ac2b3fb6f38f9bd3d710d9580", "fields": {"departement": "77", "stop_lat": 48.845090849272935, "code_postal": "77083", "stop_lon": 2.5854944429890026, "coord": [48.845090849272935, 2.5854944429890026], "stop_id": 5815085, "stop_desc": "RUE NELSON MANDELA - 77083", "stop_name": "LYCEE RENE DESCARTES"}, "geometry": {"type": "Point", "coordinates": [2.5854944429890026, 48.845090849272935]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "490ea5a06ab00eb7439dacd678b171f1c667b51a", "fields": {"departement": "91", "stop_lat": 48.70376756176423, "code_postal": "91027", "stop_lon": 2.3627716551741482, "coord": [48.70376756176423, 2.3627716551741482], "stop_id": 5816771, "stop_desc": "1 R DE L'EPINETTE - 91027", "stop_name": "NOYER RENARD"}, "geometry": {"type": "Point", "coordinates": [2.3627716551741482, 48.70376756176423]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6e501c349f159d4f550590fc169504f0c7216819", "fields": {"departement": "91", "stop_lat": 48.70108981669968, "code_postal": "91027", "stop_lon": 2.3585335728597934, "coord": [48.70108981669968, 2.3585335728597934], "stop_id": 5816773, "stop_desc": "113 R HENRI BARBUSSE - 91027", "stop_name": "LES OISEAUX"}, "geometry": {"type": "Point", "coordinates": [2.3585335728597934, 48.70108981669968]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e7cea7da97fc36838656643a909dce77fb2b98c9", "fields": {"departement": "91", "stop_lat": 48.70216768058842, "code_postal": "91027", "stop_lon": 2.3624177989832913, "coord": [48.70216768058842, 2.3624177989832913], "stop_id": 5816774, "stop_desc": "10 R DES POURPOINTIERS - 91027", "stop_name": "PLEIN MIDI"}, "geometry": {"type": "Point", "coordinates": [2.3624177989832913, 48.70216768058842]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "12736c870cdd2fb990d8563ac22f3cc1ec6e7e6d", "fields": {"departement": "91", "stop_lat": 48.705663068594994, "code_postal": "91027", "stop_lon": 2.367335660345063, "coord": [48.705663068594994, 2.367335660345063], "stop_id": 5816777, "stop_desc": "45-47 AV DE MORANGIS - 91027", "stop_name": "PASTEUR"}, "geometry": {"type": "Point", "coordinates": [2.367335660345063, 48.705663068594994]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6822835af63a6e003327ea421e041835101e9d8d", "fields": {"departement": "91", "stop_lat": 48.70593138039471, "code_postal": "91027", "stop_lon": 2.372238430729525, "coord": [48.70593138039471, 2.372238430729525], "stop_id": 5816779, "stop_desc": "125 AVENUE MARCEL SEMBAT - 91027", "stop_name": "BELLE ETOILE - LA POMPE"}, "geometry": {"type": "Point", "coordinates": [2.372238430729525, 48.70593138039471]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2e62abbcbd6ae258ef3fee8f46cb156939cadb16", "fields": {"departement": "91", "stop_lat": 48.709028737005546, "code_postal": "91027", "stop_lon": 2.383037775388115, "coord": [48.709028737005546, 2.383037775388115], "stop_id": 5816781, "stop_desc": "13-15 AV LEON BLUM - 91027", "stop_name": "ALBERT SARRAUT"}, "geometry": {"type": "Point", "coordinates": [2.383037775388115, 48.709028737005546]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "85e738679f56bb2df0c5311904dbb4b13e3cf8ed", "fields": {"departement": "91", "stop_lat": 48.7119284543995, "code_postal": "91027", "stop_lon": 2.391488468075179, "coord": [48.7119284543995, 2.391488468075179], "stop_id": 5816785, "stop_desc": "FACE 31 AV HENRI DUNANT - 91027", "stop_name": "CLOS NOLLET"}, "geometry": {"type": "Point", "coordinates": [2.391488468075179, 48.7119284543995]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1d3ea3a3ab5e5fed2f31be772b4dcb046e3eed7f", "fields": {"departement": "91", "stop_lat": 48.69831833679098, "code_postal": "91027", "stop_lon": 2.3714185914159382, "coord": [48.69831833679098, 2.3714185914159382], "stop_id": 5816793, "stop_desc": "4-6 R DE LA CONCORDE - 91027", "stop_name": "PYRAMIDE DE JUVISY"}, "geometry": {"type": "Point", "coordinates": [2.3714185914159382, 48.69831833679098]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5dccfa1b12a75c3c72bbc5581bb74759fa98f22d", "fields": {"departement": "91", "stop_lat": 48.700330241046316, "code_postal": "91027", "stop_lon": 2.376376316963509, "coord": [48.700330241046316, 2.376376316963509], "stop_id": 5816803, "stop_desc": "38-40 AVENUE JULES VALLES - 91027", "stop_name": "TROIS ORMES"}, "geometry": {"type": "Point", "coordinates": [2.376376316963509, 48.700330241046316]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6f78ea81d98ee2bc82295427dcba577c19f50186", "fields": {"departement": "91", "stop_lat": 48.712915379986754, "code_postal": "91027", "stop_lon": 2.39530617333297, "coord": [48.712915379986754, 2.39530617333297], "stop_id": 5816810, "stop_desc": "PL DU 19 MARS 1962 - 91027", "stop_name": "DELALANDE PASTEUR"}, "geometry": {"type": "Point", "coordinates": [2.39530617333297, 48.712915379986754]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9b52fa90f6cf0c1f902aeec9ec54ccf9027f3f72", "fields": {"departement": "91", "stop_lat": 48.711650315597296, "code_postal": "91027", "stop_lon": 2.3903744420213293, "coord": [48.711650315597296, 2.3903744420213293], "stop_id": 5816812, "stop_desc": "AV HENRI DUNANT - 91027", "stop_name": "CLOS NOLLET"}, "geometry": {"type": "Point", "coordinates": [2.3903744420213293, 48.711650315597296]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "18ff2cfe2678d6190d30a27c518e71f4fe6dc809", "fields": {"departement": "91", "stop_lat": 48.70731415833315, "code_postal": "91027", "stop_lon": 2.3768569051497845, "coord": [48.70731415833315, 2.3768569051497845], "stop_id": 5816815, "stop_desc": "98 AVENUE MARCEL SEMBAT - 91027", "stop_name": "LA PLAINE"}, "geometry": {"type": "Point", "coordinates": [2.3768569051497845, 48.70731415833315]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a034782213d99943263bab27c56ccca2d0d8e47e", "fields": {"departement": "91", "stop_lat": 48.70479216077662, "code_postal": "91027", "stop_lon": 2.3631931487726177, "coord": [48.70479216077662, 2.3631931487726177], "stop_id": 5816819, "stop_desc": "R DES FROIDES BOUILLIES - 91027", "stop_name": "NOYER RENARD"}, "geometry": {"type": "Point", "coordinates": [2.3631931487726177, 48.70479216077662]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b1c016ef34523dc9345bae321fa33e0ddad7cdc3", "fields": {"departement": "91", "stop_lat": 48.70108981669968, "code_postal": "91027", "stop_lon": 2.3585335728597934, "coord": [48.70108981669968, 2.3585335728597934], "stop_id": 5816822, "stop_desc": "113 R HENRI BARBUSSE - 91027", "stop_name": "LES OISEAUX"}, "geometry": {"type": "Point", "coordinates": [2.3585335728597934, 48.70108981669968]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e98e1648cf8454c7d7ebba21c6b6ebe557700b69", "fields": {"departement": "92", "stop_lat": 48.903146582104675, "code_postal": "92024", "stop_lon": 2.2900595348789694, "coord": [48.903146582104675, 2.2900595348789694], "stop_id": 5821504, "stop_desc": "34 ROUTE D'ASNIERES - 92024", "stop_name": "QUAI DE CLICHY"}, "geometry": {"type": "Point", "coordinates": [2.2900595348789694, 48.903146582104675]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fb23acfa1f3e86db20315d5e210f9353ccfb71f4", "fields": {"departement": "92", "stop_lat": 48.904010896001374, "code_postal": "92024", "stop_lon": 2.294162149687809, "coord": [48.904010896001374, 2.294162149687809], "stop_id": 5821505, "stop_desc": "2 RUE PAUL DUPONT - 92024", "stop_name": "VAN GOGH"}, "geometry": {"type": "Point", "coordinates": [2.294162149687809, 48.904010896001374]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ac34de0181861954ab6544322cc86eaedb2ced90", "fields": {"departement": "93", "stop_lat": 48.8529665110659, "code_postal": "93048", "stop_lon": 2.423777136175315, "coord": [48.8529665110659, 2.423777136175315], "stop_id": 5922166, "stop_desc": "FACE 54 BIS RUE ROBESPIERRE - 93048", "stop_name": "RASPAIL - REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.423777136175315, 48.8529665110659]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "38b2951b1c50e2879d76deb92a21821716f5a9c5", "fields": {"departement": "93", "stop_lat": 48.87254412714695, "code_postal": "93006", "stop_lon": 2.4194364079603696, "coord": [48.87254412714695, 2.4194364079603696], "stop_id": 5922176, "stop_desc": "122 AVENUE GAMBETTA - 93006", "stop_name": "GAMBETTA - RENE ALAZARD"}, "geometry": {"type": "Point", "coordinates": [2.4194364079603696, 48.87254412714695]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b5ce0161669341e81ef077b2c20664ce884b7b18", "fields": {"departement": "93", "stop_lat": 48.89128696470689, "code_postal": "93063", "stop_lon": 2.4371841207040204, "coord": [48.89128696470689, 2.4371841207040204], "stop_id": 5922195, "stop_desc": "FACE 60 RUE DU DOCTEUR PARAT - 93063", "stop_name": "CHANTALOUPS"}, "geometry": {"type": "Point", "coordinates": [2.4371841207040204, 48.89128696470689]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e73eb4f7e092d379ce2ddef84dcf550d84a88fe6", "fields": {"departement": "93", "stop_lat": 48.89115563536361, "code_postal": "93063", "stop_lon": 2.4329451887586555, "coord": [48.89115563536361, 2.4329451887586555], "stop_id": 5922196, "stop_desc": "66 AVENUE DU DOCTEUR VAILLANT - 93063", "stop_name": "TROU VASSOU"}, "geometry": {"type": "Point", "coordinates": [2.4329451887586555, 48.89115563536361]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a6c162b2d08e20fc9ff88f20d9eaaa42d3bd5b97", "fields": {"departement": "93", "stop_lat": 48.89198582433039, "code_postal": "93063", "stop_lon": 2.4286534575998706, "coord": [48.89198582433039, 2.4286534575998706], "stop_id": 5922197, "stop_desc": "FACE 147 AVENUE DU DOCTEUR VAILLANT - 93063", "stop_name": "CENTRE D'ACTIVITES"}, "geometry": {"type": "Point", "coordinates": [2.4286534575998706, 48.89198582433039]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f9f0bbfdfdc3ebbc7dedc6968e7a7f44749995c4", "fields": {"departement": "93", "stop_lat": 48.880538625445055, "code_postal": "93063", "stop_lon": 2.436727356200238, "coord": [48.880538625445055, 2.436727356200238], "stop_id": 5922204, "stop_desc": "94 RUE DE LA REPUBLIQUE - 93063", "stop_name": "GABRIEL HUSSON"}, "geometry": {"type": "Point", "coordinates": [2.436727356200238, 48.880538625445055]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9f967961c414e91aff20d03d90a99fec7bf477f3", "fields": {"departement": "93", "stop_lat": 48.86923939789337, "code_postal": "93006", "stop_lon": 2.4155621165197254, "coord": [48.86923939789337, 2.4155621165197254], "stop_id": 5922211, "stop_desc": "29 AVENUE GAMBETTA - 93006", "stop_name": "MAIRIE DE BAGNOLET"}, "geometry": {"type": "Point", "coordinates": [2.4155621165197254, 48.86923939789337]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2afd5b5c8cfa2b6275f1010099d893bb378a1aa3", "fields": {"departement": "93", "stop_lat": 48.86373839643221, "code_postal": "93006", "stop_lon": 2.4166708120048925, "coord": [48.86373839643221, 2.4166708120048925], "stop_id": 5922214, "stop_desc": "PISTE GARE ROUTIERE - 93006", "stop_name": "GALLIENI"}, "geometry": {"type": "Point", "coordinates": [2.4166708120048925, 48.86373839643221]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "df91ac1a1ceaffe45647a81679bf6dfc15ace4c6", "fields": {"departement": "93", "stop_lat": 48.85547466762151, "code_postal": "93048", "stop_lon": 2.422868792890243, "coord": [48.85547466762151, 2.422868792890243], "stop_id": 5922218, "stop_desc": "FACE 21 RUE ROBESPIERRE - 93048", "stop_name": "ROBESPIERRE"}, "geometry": {"type": "Point", "coordinates": [2.422868792890243, 48.85547466762151]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8afd1337097d4835349b7e055c60cbe11271159d", "fields": {"departement": "93", "stop_lat": 48.849549833034985, "code_postal": "93048", "stop_lon": 2.4257324661373545, "coord": [48.849549833034985, 2.4257324661373545], "stop_id": 5922221, "stop_desc": "100 RUE ROBESPIERRE - 93048", "stop_name": "LES LAITIERES"}, "geometry": {"type": "Point", "coordinates": [2.4257324661373545, 48.849549833034985]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6517fb9944b922eae9c353463cc3e4bdc01608ea", "fields": {"departement": "93", "stop_lat": 48.89543676209062, "code_postal": "93055", "stop_lon": 2.4012898731919776, "coord": [48.89543676209062, 2.4012898731919776], "stop_id": 5944497, "stop_desc": "52 RUE HOCHE - 93055", "stop_name": "CENTRE NATIONAL DE LA DANSE"}, "geometry": {"type": "Point", "coordinates": [2.4012898731919776, 48.89543676209062]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "018585c033793da8e4f39ea1f37762965cbc0266", "fields": {"departement": "93", "stop_lat": 48.89117591319706, "code_postal": "93055", "stop_lon": 2.403001886814897, "coord": [48.89117591319706, 2.403001886814897], "stop_id": 5944500, "stop_desc": "64 AVENUE JEAN LOLIVE - 93055", "stop_name": "HOCHE - METRO"}, "geometry": {"type": "Point", "coordinates": [2.403001886814897, 48.89117591319706]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9ba37e9f9c967a0e50804269e7714d07dff2b938", "fields": {"departement": "93", "stop_lat": 48.888934017798526, "code_postal": "93061", "stop_lon": 2.410031401835157, "coord": [48.888934017798526, 2.410031401835157], "stop_id": 5944506, "stop_desc": "FACE 53 R JULES AUFFRET - 93061", "stop_name": "PAUL BERT - CIMETIERE"}, "geometry": {"type": "Point", "coordinates": [2.410031401835157, 48.888934017798526]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "75c2db06eff34b49a8ac3a39fd9edfcd9ccfbcc4", "fields": {"departement": "93", "stop_lat": 48.887262390648374, "code_postal": "93061", "stop_lon": 2.4100426828600936, "coord": [48.887262390648374, 2.4100426828600936], "stop_id": 5944507, "stop_desc": "FACE 2 R GARIBALDI - 93061", "stop_name": "MONTIGNY - MAISON DE RETRAITE"}, "geometry": {"type": "Point", "coordinates": [2.4100426828600936, 48.887262390648374]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a2d406aa630735e8c38c282c3417083930c08b5c", "fields": {"departement": "93", "stop_lat": 48.89085827757746, "code_postal": "93055", "stop_lon": 2.4221094954722133, "coord": [48.89085827757746, 2.4221094954722133], "stop_id": 5944513, "stop_desc": "AV ANATOLE FRANCE - 93055", "stop_name": "JULES JASLIN"}, "geometry": {"type": "Point", "coordinates": [2.4221094954722133, 48.89085827757746]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5a91b2eec3a5deca729ab7e19fcfed5aa2d578d8", "fields": {"departement": "93", "stop_lat": 48.89182156439479, "code_postal": "93055", "stop_lon": 2.405537767131282, "coord": [48.89182156439479, 2.405537767131282], "stop_id": 5944523, "stop_desc": "73 BIS AVENUE JEAN LOLIVE - 93055", "stop_name": "ETIENNE MARCEL - CORNET"}, "geometry": {"type": "Point", "coordinates": [2.405537767131282, 48.89182156439479]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d8e4ef92d044d90418bf53cf37275820f7ac8dff", "fields": {"departement": "93", "stop_lat": 48.891535699652785, "code_postal": "93055", "stop_lon": 2.4024571717916654, "coord": [48.891535699652785, 2.4024571717916654], "stop_id": 5944524, "stop_desc": "2-8 RUE HOCHE - 93055", "stop_name": "HOCHE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.4024571717916654, 48.891535699652785]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d0d347c6c05adfd67206cdc406854c6e22a8fe81", "fields": {"departement": "93", "stop_lat": 48.90152464089519, "code_postal": "93055", "stop_lon": 2.3942088019686834, "coord": [48.90152464089519, 2.3942088019686834], "stop_id": 5944526, "stop_desc": "42 AVENUE EDOUARD VAILLANT - 93055", "stop_name": "LA PEROUSE"}, "geometry": {"type": "Point", "coordinates": [2.3942088019686834, 48.90152464089519]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6792296c416923ad182048bdfb7ccff5f986f046", "fields": {"departement": "93", "stop_lat": 48.90909876026409, "code_postal": "93055", "stop_lon": 2.398225496493954, "coord": [48.90909876026409, 2.398225496493954], "stop_id": 5944528, "stop_desc": "AVENUE JEAN JAURES - 93055", "stop_name": "CIMETIERE PARISIEN"}, "geometry": {"type": "Point", "coordinates": [2.398225496493954, 48.90909876026409]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7f7110082ed8e582f6b5e485544cce8f5ea3f212", "fields": {"departement": "93", "stop_lat": 48.91022964359314, "code_postal": "93008", "stop_lon": 2.41608763544949, "coord": [48.91022964359314, 2.41608763544949], "stop_id": 5944532, "stop_desc": "AVENUE DE L'ILLUSTRATION - 93008", "stop_name": "CITE DU PONT DE PIERRE"}, "geometry": {"type": "Point", "coordinates": [2.41608763544949, 48.91022964359314]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ca3b5bfbb6fe108936a111968075c0f7ea87e7c9", "fields": {"departement": "93", "stop_lat": 48.91337851162092, "code_postal": "93008", "stop_lon": 2.4356859748755975, "coord": [48.91337851162092, 2.4356859748755975], "stop_id": 5976284, "stop_desc": "8 RUE DE STALINGRAD - 93008", "stop_name": "ESCADRILLE NORMANDIE - NIEMEN-STALINGRAD-TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.4356859748755975, 48.91337851162092]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "12b2a03e943341d171e19c7f276d178dac12c57d", "fields": {"departement": "93", "stop_lat": 48.91337851162092, "code_postal": "93008", "stop_lon": 2.4356859748755975, "coord": [48.91337851162092, 2.4356859748755975], "stop_id": 5976285, "stop_desc": "8 RUE DE STALINGRAD - 93008", "stop_name": "ESCADRILLE NORMANDIE - NIEMEN-STALINGRAD-TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.4356859748755975, 48.91337851162092]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "10e1fec7d3524580cc3872723e0f188633f59f28", "fields": {"departement": "93", "stop_lat": 48.91361714795015, "code_postal": "93029", "stop_lon": 2.4503441641802204, "coord": [48.91361714795015, 2.4503441641802204], "stop_id": 5976292, "stop_desc": "84 R DE LA LIBERTE - 93029", "stop_name": "COLLEGE LIBERTE"}, "geometry": {"type": "Point", "coordinates": [2.4503441641802204, 48.91361714795015]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "23d5c5f376bb65b51c38d948d93faa6d4e01a953", "fields": {"departement": "92", "stop_lat": 48.79794970412889, "code_postal": "92007", "stop_lon": 2.2941277270548075, "coord": [48.79794970412889, 2.2941277270548075], "stop_id": 5976632, "stop_desc": "FACE 11 RUE DE CHARTRES - 92007", "stop_name": "LIBERTE"}, "geometry": {"type": "Point", "coordinates": [2.2941277270548075, 48.79794970412889]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "67f741fa090c76949244e68a5e16d097106c3d8a", "fields": {"departement": "92", "stop_lat": 48.79441648121683, "code_postal": "92032", "stop_lon": 2.2914779216832235, "coord": [48.79441648121683, 2.2914779216832235], "stop_id": 5976634, "stop_desc": "28 AVENUE JEANNE ET MAURICE DOLIVET - 92032", "stop_name": "CIMETIERE DE FONTENAY-AUX-ROSES"}, "geometry": {"type": "Point", "coordinates": [2.2914779216832235, 48.79441648121683]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ab960be0d082b91f6ac3e8379516560d0bd580bf", "fields": {"departement": "92", "stop_lat": 48.77302725091217, "code_postal": "92019", "stop_lon": 2.276171604837392, "coord": [48.77302725091217, 2.276171604837392], "stop_id": 5976647, "stop_desc": "FACE 36 AVENUE ROGER SALENGRO - 92019", "stop_name": "MARC SANGNIER"}, "geometry": {"type": "Point", "coordinates": [2.276171604837392, 48.77302725091217]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "88cacb4c695f4f4dc00367d59c94363b2f92ea34", "fields": {"departement": "91", "stop_lat": 48.73953746754802, "code_postal": "91645", "stop_lon": 2.24789056992582, "coord": [48.73953746754802, 2.24789056992582], "stop_id": 5976675, "stop_desc": "16-16 BIS RUE DE PARIS - 91645", "stop_name": "CROIX PASQUIER"}, "geometry": {"type": "Point", "coordinates": [2.24789056992582, 48.73953746754802]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "99a6a89086e0a14d0f901b15f53a8962578cb867", "fields": {"departement": "91", "stop_lat": 48.73645464574494, "code_postal": "91312", "stop_lon": 2.23683472126287, "coord": [48.73645464574494, 2.23683472126287], "stop_id": 5976678, "stop_desc": "FACE 56 AVENUE JEAN JAURES - 91312", "stop_name": "ROND-POINT DES VALLEES"}, "geometry": {"type": "Point", "coordinates": [2.23683472126287, 48.73645464574494]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eefd93efc8b5080a32e773ad96a6f7971e2ef83e", "fields": {"departement": "91", "stop_lat": 48.738075440313075, "code_postal": "91312", "stop_lon": 2.2298739924455693, "coord": [48.738075440313075, 2.2298739924455693], "stop_id": 5976681, "stop_desc": "AVENUE DU PRESIDENT KENNEDY - 91312", "stop_name": "KENNEDY - BELLEVUE"}, "geometry": {"type": "Point", "coordinates": [2.2298739924455693, 48.738075440313075]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "668e8e16a379405f66807e4357964fd4dd7e32f5", "fields": {"departement": "92", "stop_lat": 48.80383802353411, "code_postal": "92020", "stop_lon": 2.2978373453843948, "coord": [48.80383802353411, 2.2978373453843948], "stop_id": 5976691, "stop_desc": "FACE 91 AVENUE DE LA REPUBLIQUE - 92020", "stop_name": "REPUBLIQUE - DEFORGES"}, "geometry": {"type": "Point", "coordinates": [2.2978373453843948, 48.80383802353411]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "21b46b79b2a3e7d1f7d00830870f5efd127afff4", "fields": {"departement": "92", "stop_lat": 48.79796754114928, "code_postal": "92007", "stop_lon": 2.2937467800028233, "coord": [48.79796754114928, 2.2937467800028233], "stop_id": 5976694, "stop_desc": "7-9 RUE DE CHARTRES - 92007", "stop_name": "LIBERTE"}, "geometry": {"type": "Point", "coordinates": [2.2937467800028233, 48.79796754114928]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cb678d62b7983e966f9d5c607fe929ccb3d95403", "fields": {"departement": "92", "stop_lat": 48.79794970412889, "code_postal": "92007", "stop_lon": 2.2941277270548075, "coord": [48.79794970412889, 2.2941277270548075], "stop_id": 5976695, "stop_desc": "FACE 11 RUE DE CHARTRES - 92007", "stop_name": "LIBERTE"}, "geometry": {"type": "Point", "coordinates": [2.2941277270548075, 48.79794970412889]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ae2aaf5839ce1df04abf79fb2fa866a0d043ef4b", "fields": {"departement": "92", "stop_lat": 48.794900379219925, "code_postal": "92020", "stop_lon": 2.287858852506314, "coord": [48.794900379219925, 2.287858852506314], "stop_id": 5976697, "stop_desc": "FACE 17 RUE DES PIERRELAIS - 92020", "stop_name": "PIERRELAIS - BLANCHARD"}, "geometry": {"type": "Point", "coordinates": [2.287858852506314, 48.794900379219925]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f194f7efbd8fb0c8d2e430981a1518776276b365", "fields": {"departement": "92", "stop_lat": 48.79959122387618, "code_postal": "92020", "stop_lon": 2.285922459098015, "coord": [48.79959122387618, 2.285922459098015], "stop_id": 5976701, "stop_desc": "FACE 1 TER RUE D'ESTIENNE D'ORVES - 92020", "stop_name": "D'ESTIENNE D'ORVES - DIVISION LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.285922459098015, 48.79959122387618]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7d343a7efb1cfc262972fa88ef14faa3984b6fa8", "fields": {"departement": "92", "stop_lat": 48.78172665679126, "code_postal": "92060", "stop_lon": 2.2591335837638575, "coord": [48.78172665679126, 2.2591335837638575], "stop_id": 5976715, "stop_desc": "9 RUE PIERRE D'ARTAGNAN - 92060", "stop_name": "DANIEL DE FOE"}, "geometry": {"type": "Point", "coordinates": [2.2591335837638575, 48.78172665679126]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3c1ca0714fe309d6a5186b1d08d1fcce6a633918", "fields": {"departement": "92", "stop_lat": 48.77679984747266, "code_postal": "92060", "stop_lon": 2.257046718411991, "coord": [48.77679984747266, 2.257046718411991], "stop_id": 5976718, "stop_desc": "86 AVENUE CHARLES DE GAULLE - 92060", "stop_name": "CITE JARDINS - PLACE DES ALLIES"}, "geometry": {"type": "Point", "coordinates": [2.257046718411991, 48.77679984747266]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c15757cd1556eaec5c72fe50e65fcd1f27ea2b57", "fields": {"departement": "92", "stop_lat": 48.77689031129291, "code_postal": "92060", "stop_lon": 2.2579169280257254, "coord": [48.77689031129291, 2.2579169280257254], "stop_id": 5976719, "stop_desc": "AVENUE CHARLES DE GAULLE - 92060", "stop_name": "CITE JARDINS - PLACE DES ALLIES"}, "geometry": {"type": "Point", "coordinates": [2.2579169280257254, 48.77689031129291]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ca76b9902aff035c01b5cdf1a64acf30f45ec9fc", "fields": {"departement": "92", "stop_lat": 48.76462663033227, "code_postal": "92019", "stop_lon": 2.2658213312517548, "coord": [48.76462663033227, 2.2658213312517548], "stop_id": 5976730, "stop_desc": "293 AVENUE DE LA DIVISION LECLERC - 92019", "stop_name": "GENERAL DUVAL"}, "geometry": {"type": "Point", "coordinates": [2.2658213312517548, 48.76462663033227]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bde4511cacb67dc848b75f9eeaea50ffbacd5122", "fields": {"departement": "92", "stop_lat": 48.767096900631465, "code_postal": "92019", "stop_lon": 2.2797137031980217, "coord": [48.767096900631465, 2.2797137031980217], "stop_id": 5976740, "stop_desc": "67 RUE JEAN LONGUET - 92019", "stop_name": "MAIRIE DE CHATENAY-MALABRY"}, "geometry": {"type": "Point", "coordinates": [2.2797137031980217, 48.767096900631465]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8b6be884887ee88689cd56b7ec08f9bbe24405b6", "fields": {"departement": "92", "stop_lat": 48.78971897350695, "code_postal": "92023", "stop_lon": 2.262290959769518, "coord": [48.78971897350695, 2.262290959769518], "stop_id": 5976753, "stop_desc": "125 AVENUE DU GENERAL DE GAULLE - 92023", "stop_name": "SOLEIL LEVANT"}, "geometry": {"type": "Point", "coordinates": [2.262290959769518, 48.78971897350695]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2b65525b3997fc203978d39b91ef9d6a0d4a0818", "fields": {"departement": "92", "stop_lat": 48.7948199241652, "code_postal": "92032", "stop_lon": 2.2889200331325124, "coord": [48.7948199241652, 2.2889200331325124], "stop_id": 5976756, "stop_desc": "32-34 RUE BLANCHARD - 92032", "stop_name": "PIERRELAIS - BLANCHARD"}, "geometry": {"type": "Point", "coordinates": [2.2889200331325124, 48.7948199241652]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f247f4806d0bdacecba76d207260a1d1b33829b9", "fields": {"departement": "92", "stop_lat": 48.811937937061636, "code_postal": "92049", "stop_lon": 2.304131876817707, "coord": [48.811937937061636, 2.304131876817707], "stop_id": 5976758, "stop_desc": "AVENUE JEAN JAURES - 92049", "stop_name": "JEAN MONNET"}, "geometry": {"type": "Point", "coordinates": [2.304131876817707, 48.811937937061636]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cf9ae902182767dd7462d9912eb101fcbad06987", "fields": {"departement": "93", "stop_lat": 48.93216750310899, "code_postal": "93027", "stop_lon": 2.399753054814286, "coord": [48.93216750310899, 2.399753054814286], "stop_id": 5991328, "stop_desc": "FACE 2 AVENUE JEAN MERMOZ - 93027", "stop_name": "JEAN MERMOZ - HENRI BARBUSSE"}, "geometry": {"type": "Point", "coordinates": [2.399753054814286, 48.93216750310899]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8f36c841bb0eb15a01de026959d7646865cb2767", "fields": {"departement": "93", "stop_lat": 48.93249633635531, "code_postal": "93027", "stop_lon": 2.406423444144385, "coord": [48.93249633635531, 2.406423444144385], "stop_id": 5991330, "stop_desc": "85 AVENUE JEAN MERMOZ - 93027", "stop_name": "PASSAGE A NIVEAU - JEAN MERMOZ"}, "geometry": {"type": "Point", "coordinates": [2.406423444144385, 48.93249633635531]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "818eae119f1b584de246f9ab25c564f78ce0b5e3", "fields": {"departement": "93", "stop_lat": 48.93272557543931, "code_postal": "93013", "stop_lon": 2.4136666582260666, "coord": [48.93272557543931, 2.4136666582260666], "stop_id": 5991331, "stop_desc": "101-103 RUE ANIZAN CAVILLON - 93013", "stop_name": "VERDUN"}, "geometry": {"type": "Point", "coordinates": [2.4136666582260666, 48.93272557543931]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "40220fa04c3b4e1b411d41ff401612b731f86391", "fields": {"departement": "93", "stop_lat": 48.93341974722198, "code_postal": "93013", "stop_lon": 2.4236387507429926, "coord": [48.93341974722198, 2.4236387507429926], "stop_id": 5991335, "stop_desc": "25 AVENUE JEAN JAURES - 93013", "stop_name": "JEAN JAURES - DIVISION LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.4236387507429926, 48.93341974722198]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3bf591f1fa82fe6aa35231cfcb97a94f50f0e8c1", "fields": {"departement": "93", "stop_lat": 48.92548845120095, "code_postal": "93029", "stop_lon": 2.441000622041601, "coord": [48.92548845120095, 2.441000622041601], "stop_id": 5991343, "stop_desc": "FACE 99 RUE SADI CARNOT - 93029", "stop_name": "JEAN-PIERRE TIMBAUD"}, "geometry": {"type": "Point", "coordinates": [2.441000622041601, 48.92548845120095]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cf2b98246900cc8c7062a191252863497181d870", "fields": {"departement": "93", "stop_lat": 48.91870073883618, "code_postal": "93029", "stop_lon": 2.4535189176950283, "coord": [48.91870073883618, 2.4535189176950283], "stop_id": 5991348, "stop_desc": "112-114 AVENUE JEAN JAURES - 93029", "stop_name": "SQUARE DE LA LIBERATION"}, "geometry": {"type": "Point", "coordinates": [2.4535189176950283, 48.91870073883618]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2f2fd27e7e37c6b87910178bb755ce912e0e0983", "fields": {"departement": "93", "stop_lat": 48.895785062376305, "code_postal": "93053", "stop_lon": 2.461100538518833, "coord": [48.895785062376305, 2.461100538518833], "stop_id": 5991364, "stop_desc": "6 BOULEVARD DE LA REPUBLIQUE - 93053", "stop_name": "NOISY-LE-SEC RER"}, "geometry": {"type": "Point", "coordinates": [2.461100538518833, 48.895785062376305]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "159e98eebaa7b59cd362433d48336a009343bf18", "fields": {"departement": "93", "stop_lat": 48.89258907324533, "code_postal": "93053", "stop_lon": 2.466326658497942, "coord": [48.89258907324533, 2.466326658497942], "stop_id": 5991366, "stop_desc": "100 BOULEVARD DE LA REPUBLIQUE - 93053", "stop_name": "11 NOVEMBRE 1918"}, "geometry": {"type": "Point", "coordinates": [2.466326658497942, 48.89258907324533]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8818cc235067bf8ecff4b3759e943950136ff354", "fields": {"departement": "93", "stop_lat": 48.883008234161885, "code_postal": "93064", "stop_lon": 2.4747788328505353, "coord": [48.883008234161885, 2.4747788328505353], "stop_id": 5991371, "stop_desc": "99 AVENUE DU GENERAL DE GAULLE - 93064", "stop_name": "ROSNY 2 - CENTRE COMMERCIAL"}, "geometry": {"type": "Point", "coordinates": [2.4747788328505353, 48.883008234161885]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a199fe33ba4d075c62a64512bebda0e8c972fa45", "fields": {"departement": "93", "stop_lat": 48.853437480755204, "code_postal": "93050", "stop_lon": 2.5170155851458653, "coord": [48.853437480755204, 2.5170155851458653], "stop_id": 3683013, "stop_desc": "32 BOULEVARD GALLIENI - 93050", "stop_name": "CENTRE BUS"}, "geometry": {"type": "Point", "coordinates": [2.5170155851458653, 48.853437480755204]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "663b6bcddc1e55fc842fe5dee300ef8710eddb6a", "fields": {"departement": "93", "stop_lat": 48.867818366920886, "code_postal": "93050", "stop_lon": 2.5334676366699243, "coord": [48.867818366920886, 2.5334676366699243], "stop_id": 3683025, "stop_desc": "AVENUE LEON BLUM - 93050", "stop_name": "ILE DE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.5334676366699243, 48.867818366920886]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2f1ecc82f8b5f1dfe01c8cb76aed50d502f819ad", "fields": {"departement": "93", "stop_lat": 48.865965284395486, "code_postal": "93050", "stop_lon": 2.5233117869995256, "coord": [48.865965284395486, 2.5233117869995256], "stop_id": 3683021, "stop_desc": "26 RUE LOUIS VANNINI - 93050", "stop_name": "11 NOVEMBRE"}, "geometry": {"type": "Point", "coordinates": [2.5233117869995256, 48.865965284395486]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f45b1b18475117066b53b9c6d96dd15e68e09f2a", "fields": {"departement": "93", "stop_lat": 48.86659553796948, "code_postal": "93050", "stop_lon": 2.5282727350480747, "coord": [48.86659553796948, 2.5282727350480747], "stop_id": 3683023, "stop_desc": "RUE LOUIS VANNINI - 93050", "stop_name": "LEON BLUM"}, "geometry": {"type": "Point", "coordinates": [2.5282727350480747, 48.86659553796948]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "72f218511903a11620fff08bae1e92be6787784a", "fields": {"departement": "93", "stop_lat": 48.87369444704396, "code_postal": "93032", "stop_lon": 2.539825330267934, "coord": [48.87369444704396, 2.539825330267934], "stop_id": 3683030, "stop_desc": "47 AVENUE DU CHATEAU - 93032", "stop_name": "FENELON"}, "geometry": {"type": "Point", "coordinates": [2.539825330267934, 48.87369444704396]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2ef41dc071ff4f7a4f86729f86e6d35eb4aff187", "fields": {"departement": "93", "stop_lat": 48.87379559973046, "code_postal": "93064", "stop_lon": 2.4829019304695374, "coord": [48.87379559973046, 2.4829019304695374], "stop_id": 3683439, "stop_desc": "4 RUE DU GENERAL GALLIENI - 93064", "stop_name": "EGLISE DE ROSNY-SOUS-BOIS"}, "geometry": {"type": "Point", "coordinates": [2.4829019304695374, 48.87379559973046]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "98f67893c301e1cea792788765a97ed2f522cc24", "fields": {"departement": "94", "stop_lat": 48.85339768655697, "code_postal": "94033", "stop_lon": 2.4873390145395913, "coord": [48.85339768655697, 2.4873390145395913], "stop_id": 3683454, "stop_desc": "9 AVENUE DU VAL DE FONTENAY - 94033", "stop_name": "VAL DE FONTENAY RER"}, "geometry": {"type": "Point", "coordinates": [2.4873390145395913, 48.85339768655697]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4a22e66541c47d46df83a294ba030fa0405da290", "fields": {"departement": "94", "stop_lat": 48.84608360378214, "code_postal": "94058", "stop_lon": 2.499709656804693, "coord": [48.84608360378214, 2.499709656804693], "stop_id": 3683460, "stop_desc": "197 AVENUE DU GENERAL DE GAULLE - 94058", "stop_name": "VICTOR BASCH"}, "geometry": {"type": "Point", "coordinates": [2.499709656804693, 48.84608360378214]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "28a40e5059f4fc463d608e68d42aefd433c9019b", "fields": {"departement": "94", "stop_lat": 48.85009930664015, "code_postal": "94058", "stop_lon": 2.494288483355709, "coord": [48.85009930664015, 2.494288483355709], "stop_id": 3683458, "stop_desc": "19 BOULEVARD RAYMOND POINCARE - 94058", "stop_name": "RAYMOND POINCARE"}, "geometry": {"type": "Point", "coordinates": [2.494288483355709, 48.85009930664015]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "13e8f80176a08e035288752726d13c600df5fdb6", "fields": {"departement": "94", "stop_lat": 48.84920123008757, "code_postal": "94033", "stop_lon": 2.4867821452076706, "coord": [48.84920123008757, 2.4867821452076706], "stop_id": 3683456, "stop_desc": "RUE GEORGES GUYNEMER - 94033", "stop_name": "LE BOIS CADET"}, "geometry": {"type": "Point", "coordinates": [2.4867821452076706, 48.84920123008757]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1f04ac33fd9b218500d58b6d4879f971fc57953b", "fields": {"departement": "94", "stop_lat": 48.82329843194109, "code_postal": "94017", "stop_lon": 2.507274323448212, "coord": [48.82329843194109, 2.507274323448212], "stop_id": 3683469, "stop_desc": "RUE GERMINAL - 94017", "stop_name": "IRENE JOLIOT CURIE"}, "geometry": {"type": "Point", "coordinates": [2.507274323448212, 48.82329843194109]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0bf8e8de443cb2e59c17aa63fb64685b65790491", "fields": {"departement": "94", "stop_lat": 48.83506442543633, "code_postal": "94052", "stop_lon": 2.493303581104327, "coord": [48.83506442543633, 2.493303581104327], "stop_id": 3683464, "stop_desc": "BOULEVARD ALBERT 1ER - 94052", "stop_name": "VIADUC"}, "geometry": {"type": "Point", "coordinates": [2.493303581104327, 48.83506442543633]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1688f25282db2b017d84f3ee958204d4935496a2", "fields": {"departement": "94", "stop_lat": 48.84807383726229, "code_postal": "94080", "stop_lon": 2.439511235018801, "coord": [48.84807383726229, 2.439511235018801], "stop_id": 3685866, "stop_desc": "FACE 57 RUE DE FONTENAY - 94080", "stop_name": "MAIRIE DE VINCENNES"}, "geometry": {"type": "Point", "coordinates": [2.439511235018801, 48.84807383726229]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "59671eac557738bf29863d522dc8a6f79d592c5b", "fields": {"departement": "75", "stop_lat": 48.84408977596744, "code_postal": "75112", "stop_lon": 2.4424854671358247, "coord": [48.84408977596744, 2.4424854671358247], "stop_id": 3685860, "stop_desc": "PISTE GARE ROUTIERE - 75112", "stop_name": "CHATEAU DE VINCENNES"}, "geometry": {"type": "Point", "coordinates": [2.4424854671358247, 48.84408977596744]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "82457cc7dac567cf5ef1d1a31e72639f946cc72a", "fields": {"departement": "94", "stop_lat": 48.85287232679907, "code_postal": "94033", "stop_lon": 2.467930214706656, "coord": [48.85287232679907, 2.467930214706656], "stop_id": 3685806, "stop_desc": "243 AVENUE DE LA REPUBLIQUE - 94033", "stop_name": "ANDRE TESSIER"}, "geometry": {"type": "Point", "coordinates": [2.467930214706656, 48.85287232679907]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "523dfe4656d098c6363ac569e4b685ee4093a6fd", "fields": {"departement": "94", "stop_lat": 48.84783944640084, "code_postal": "94080", "stop_lon": 2.4403414594989346, "coord": [48.84783944640084, 2.4403414594989346], "stop_id": 3685865, "stop_desc": "51 RUE DE FONTENAY - 94080", "stop_name": "MAIRIE DE VINCENNES"}, "geometry": {"type": "Point", "coordinates": [2.4403414594989346, 48.84783944640084]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dc6bf89c5bfe5c01bd8d217f201cd2177b0d3baa", "fields": {"departement": "94", "stop_lat": 48.85241681373307, "code_postal": "94033", "stop_lon": 2.4810578052880423, "coord": [48.85241681373307, 2.4810578052880423], "stop_id": 3685811, "stop_desc": "AVENUE DU MARECHAL JOFFRE - 94033", "stop_name": "CHARLES GARCIA"}, "geometry": {"type": "Point", "coordinates": [2.4810578052880423, 48.85241681373307]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3d1bf2f29a59b95d54cb1ea1af6868c330300cb7", "fields": {"departement": "94", "stop_lat": 48.8446246823592, "code_postal": "94080", "stop_lon": 2.437094232812113, "coord": [48.8446246823592, 2.437094232812113], "stop_id": 3685862, "stop_desc": "FACE 10 AVENUE DE PARIS - 94080", "stop_name": "AVENUE DU CHATEAU"}, "geometry": {"type": "Point", "coordinates": [2.437094232812113, 48.8446246823592]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "36f7658997fc14013179a624ba12b4ff824e3002", "fields": {"departement": "94", "stop_lat": 48.84479511335644, "code_postal": "94080", "stop_lon": 2.4374894541796297, "coord": [48.84479511335644, 2.4374894541796297], "stop_id": 3685861, "stop_desc": "12 AVENUE DE PARIS - 94080", "stop_name": "AVENUE DU CHATEAU"}, "geometry": {"type": "Point", "coordinates": [2.4374894541796297, 48.84479511335644]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "45d06a1afc8590bbd8e0bd05c150af24d05b89f4", "fields": {"departement": "93", "stop_lat": 48.86546334999699, "code_postal": "93064", "stop_lon": 2.483695874168352, "coord": [48.86546334999699, 2.483695874168352], "stop_id": 3685825, "stop_desc": "89 AVENUE DE LA REPUBLIQUE - 93064", "stop_name": "DIDEROT"}, "geometry": {"type": "Point", "coordinates": [2.483695874168352, 48.86546334999699]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a3251109e0977e0b9dc086fc73160cf4078be31c", "fields": {"departement": "93", "stop_lat": 48.87707404802961, "code_postal": "93064", "stop_lon": 2.4844644483711713, "coord": [48.87707404802961, 2.4844644483711713], "stop_id": 3685834, "stop_desc": "PL VAN DER HEYDEN - 93064", "stop_name": "VAN DERHEYDEN"}, "geometry": {"type": "Point", "coordinates": [2.4844644483711713, 48.87707404802961]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1596d27033644808e5044bd72012f3ad2d95bc5c", "fields": {"departement": "94", "stop_lat": 48.83615702610112, "code_postal": "94052", "stop_lon": 2.482156379329326, "coord": [48.83615702610112, 2.482156379329326], "stop_id": 3686067, "stop_desc": "FACE AVENUE DE LATTRE DE TASSIGNY - 94052", "stop_name": "SOUS-PREFECTURE - JULES FERRY"}, "geometry": {"type": "Point", "coordinates": [2.482156379329326, 48.83615702610112]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c33b89ce95991b9e9baf2867cd313f564d2f9e31", "fields": {"departement": "94", "stop_lat": 48.843645855174145, "code_postal": "94033", "stop_lon": 2.4645164108617656, "coord": [48.843645855174145, 2.4645164108617656], "stop_id": 3686062, "stop_desc": "FACE12 BIS PLACE MOREAU DAVID - 94033", "stop_name": "FONTENAY-SOUS-BOIS RER"}, "geometry": {"type": "Point", "coordinates": [2.4645164108617656, 48.843645855174145]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d309c4a20c481c26594d64c52361d566bbfa2b9e", "fields": {"departement": "94", "stop_lat": 48.838001853465165, "code_postal": "94058", "stop_lon": 2.4944560966386526, "coord": [48.838001853465165, 2.4944560966386526], "stop_id": 3686070, "stop_desc": "10 PLACE ROBERT BELVAUX - 94058", "stop_name": "NOGENT-LE-PERREUX RER"}, "geometry": {"type": "Point", "coordinates": [2.4944560966386526, 48.838001853465165]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "30719f30d025e10218a02d91201b1473e68a40c2", "fields": {"departement": "75", "stop_lat": 48.84420733285396, "code_postal": "75112", "stop_lon": 2.4416686940517773, "coord": [48.84420733285396, 2.4416686940517773], "stop_id": 3686057, "stop_desc": "AVENUE DE NOGENT - 75112", "stop_name": "CHATEAU DE VINCENNES"}, "geometry": {"type": "Point", "coordinates": [2.4416686940517773, 48.84420733285396]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "98e865caa264e31bf7a8e18ff2f3e75ea09968e3", "fields": {"departement": "94", "stop_lat": 48.838646963428566, "code_postal": "94058", "stop_lon": 2.5089176247550213, "coord": [48.838646963428566, 2.5089176247550213], "stop_id": 3686074, "stop_desc": "63 AVENUE DU GENERAL DE GAULLE - 94058", "stop_name": "MONTAIGNE"}, "geometry": {"type": "Point", "coordinates": [2.5089176247550213, 48.838646963428566]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "81465f06371a00e421c0498a23e2ff781f8f64da", "fields": {"departement": "94", "stop_lat": 48.83593023716701, "code_postal": "94058", "stop_lon": 2.5106240895836107, "coord": [48.83593023716701, 2.5106240895836107], "stop_id": 3686075, "stop_desc": "16 ALLEE GUY MOQUET - 94058", "stop_name": "PLACE BEAUFRANCHET"}, "geometry": {"type": "Point", "coordinates": [2.5106240895836107, 48.83593023716701]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2d7bfd8f859e6b9149a8e70e459d6f438d5ae4f6", "fields": {"departement": "94", "stop_lat": 48.84093592361724, "code_postal": "94058", "stop_lon": 2.4981004635094584, "coord": [48.84093592361724, 2.4981004635094584], "stop_id": 3686071, "stop_desc": "44 BIS-46 AVENUE LEDRU-ROLLIN - 94058", "stop_name": "LE PARC"}, "geometry": {"type": "Point", "coordinates": [2.4981004635094584, 48.84093592361724]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ad9ed9823f7e38ac48de93fd510d017093f209c4", "fields": {"departement": "94", "stop_lat": 48.834303962813244, "code_postal": "94058", "stop_lon": 2.5102919129696097, "coord": [48.834303962813244, 2.5102919129696097], "stop_id": 3686076, "stop_desc": "38-40 ALLEE GUY MOQUET - 94058", "stop_name": "GUY MOQUET"}, "geometry": {"type": "Point", "coordinates": [2.5102919129696097, 48.834303962813244]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b36a740bd1099bf88dc150abb41aef745c0a8fd7", "fields": {"departement": "93", "stop_lat": 48.856160159490415, "code_postal": "93048", "stop_lon": 2.4609922970985134, "coord": [48.856160159490415, 2.4609922970985134], "stop_id": 3685974, "stop_desc": "23 AVENUE ERNEST RENAN - 93048", "stop_name": "VEDRINES"}, "geometry": {"type": "Point", "coordinates": [2.4609922970985134, 48.856160159490415]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e6184d82e0ed49c24966f0e90d76abdcff7f39c9", "fields": {"departement": "94", "stop_lat": 48.81588598409138, "code_postal": "94017", "stop_lon": 2.5118092094724576, "coord": [48.81588598409138, 2.5118092094724576], "stop_id": 3683473, "stop_desc": "AVENUE DE LA REPUBLIQUE - 94017", "stop_name": "REPUBLIQUE - STALINGRAD"}, "geometry": {"type": "Point", "coordinates": [2.5118092094724576, 48.81588598409138]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1ee98dee3cd2dab4bc96198050cf74db8a372bae", "fields": {"departement": "94", "stop_lat": 48.85260933136605, "code_postal": "94033", "stop_lon": 2.4853074908421364, "coord": [48.85260933136605, 2.4853074908421364], "stop_id": 3685705, "stop_desc": "PLACE DU GENERAL DE GAULLE - 94033", "stop_name": "GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.4853074908421364, 48.85260933136605]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d4c8afabc93a9fe19acec242bccabd4289227985", "fields": {"departement": "94", "stop_lat": 48.823403507335144, "code_postal": "94017", "stop_lon": 2.5092074894469842, "coord": [48.823403507335144, 2.5092074894469842], "stop_id": 3683470, "stop_desc": "FACE 6 RUE GERMINAL - 94017", "stop_name": "LOUIS LOUCHEUR"}, "geometry": {"type": "Point", "coordinates": [2.5092074894469842, 48.823403507335144]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "99dccdaaf5d7d4278f23a9fcc97c8a86cc9a8799", "fields": {"departement": "94", "stop_lat": 48.84479511335644, "code_postal": "94080", "stop_lon": 2.4374894541796297, "coord": [48.84479511335644, 2.4374894541796297], "stop_id": 3685681, "stop_desc": "12 AVENUE DE PARIS - 94080", "stop_name": "AVENUE DU CHATEAU"}, "geometry": {"type": "Point", "coordinates": [2.4374894541796297, 48.84479511335644]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "538999d2d865351aa59f8de16fe1ba785060564a", "fields": {"departement": "94", "stop_lat": 48.852348875529906, "code_postal": "94033", "stop_lon": 2.4615688218490126, "coord": [48.852348875529906, 2.4615688218490126], "stop_id": 3685694, "stop_desc": "146 TER AVENUE DE LA REPUBLIQUE - 94033", "stop_name": "DANTON"}, "geometry": {"type": "Point", "coordinates": [2.4615688218490126, 48.852348875529906]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5e2c573da21669d3176a9b20e09a971df5d5b2d8", "fields": {"departement": "94", "stop_lat": 48.85146032958376, "code_postal": "94058", "stop_lon": 2.4980922431947783, "coord": [48.85146032958376, 2.4980922431947783], "stop_id": 3683572, "stop_desc": "38 RUE LAMARTINE - 94058", "stop_name": "MARECHAL LYAUTEY"}, "geometry": {"type": "Point", "coordinates": [2.4980922431947783, 48.85146032958376]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ff1155f93e81057bb26a1e355f87fb0a13ae38c6", "fields": {"departement": "94", "stop_lat": 48.84683591626402, "code_postal": "94080", "stop_lon": 2.4367308149123965, "coord": [48.84683591626402, 2.4367308149123965], "stop_id": 3685684, "stop_desc": "33 AVENUE DU CHATEAU - 94080", "stop_name": "VINCENNES RER"}, "geometry": {"type": "Point", "coordinates": [2.4367308149123965, 48.84683591626402]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "49a0726c8565bd661f9c4be1614ccd8160076b71", "fields": {"departement": "94", "stop_lat": 48.85535311036773, "code_postal": "94058", "stop_lon": 2.503756533179889, "coord": [48.85535311036773, 2.503756533179889], "stop_id": 3683574, "stop_desc": "98 RUE LAMARTINE - 94058", "stop_name": "LAMARTINE - MARIE"}, "geometry": {"type": "Point", "coordinates": [2.503756533179889, 48.85535311036773]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "05ceeb8be907872494212caabf8ef5b6315d9236", "fields": {"departement": "93", "stop_lat": 48.87517502004982, "code_postal": "93064", "stop_lon": 2.486639056925365, "coord": [48.87517502004982, 2.486639056925365], "stop_id": 3683585, "stop_desc": "RUE LECH WALESA - 93064", "stop_name": "COMMISSARIAT"}, "geometry": {"type": "Point", "coordinates": [2.486639056925365, 48.87517502004982]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2ba48881c116a99a1c7954a600b4ec4b0dfbc344", "fields": {"departement": "93", "stop_lat": 48.86703552178636, "code_postal": "93064", "stop_lon": 2.4981133083935707, "coord": [48.86703552178636, 2.4981133083935707], "stop_id": 3683581, "stop_desc": "RUE DE STRASBOURG - 93064", "stop_name": "RUE DU RHIN"}, "geometry": {"type": "Point", "coordinates": [2.4981133083935707, 48.86703552178636]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dbd940dd9cb18eb970708052c7e4105b057e24c5", "fields": {"departement": "94", "stop_lat": 48.85235832504077, "code_postal": "94033", "stop_lon": 2.4847892519496995, "coord": [48.85235832504077, 2.4847892519496995], "stop_id": 3685758, "stop_desc": "124 AVENUE DU MARECHAL JOFFRE - 94033", "stop_name": "GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.4847892519496995, 48.85235832504077]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c758663187a9b32f8b97aedddbe7c2e764e3ce8f", "fields": {"departement": "75", "stop_lat": 48.84445846840891, "code_postal": "75112", "stop_lon": 2.4422547273027364, "coord": [48.84445846840891, 2.4422547273027364], "stop_id": 3685733, "stop_desc": "13 AVENUE DE NOGENT - 75112", "stop_name": "CHATEAU DE VINCENNES"}, "geometry": {"type": "Point", "coordinates": [2.4422547273027364, 48.84445846840891]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "45e54b1404e71e5c14438c63b5c00830b7b58cbb", "fields": {"departement": "94", "stop_lat": 48.85260933136605, "code_postal": "94033", "stop_lon": 2.4853074908421364, "coord": [48.85260933136605, 2.4853074908421364], "stop_id": 3685759, "stop_desc": "PLACE DU GENERAL DE GAULLE - 94033", "stop_name": "GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.4853074908421364, 48.85260933136605]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6aa7c4e639bbdd4ced3d6406227838692ec550bc", "fields": {"departement": "94", "stop_lat": 48.852479525084256, "code_postal": "94033", "stop_lon": 2.4568569488415384, "coord": [48.852479525084256, 2.4568569488415384], "stop_id": 3685746, "stop_desc": "54 AVENUE DE LA REPUBLIQUE - 94033", "stop_name": "ANDRE LAURENT"}, "geometry": {"type": "Point", "coordinates": [2.4568569488415384, 48.852479525084256]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d54ed9e05a1be0fb943e3e1acf6e6675e59fa1ce", "fields": {"departement": "94", "stop_lat": 48.84783944640084, "code_postal": "94080", "stop_lon": 2.4403414594989346, "coord": [48.84783944640084, 2.4403414594989346], "stop_id": 3685739, "stop_desc": "51 RUE DE FONTENAY - 94080", "stop_name": "MAIRIE DE VINCENNES"}, "geometry": {"type": "Point", "coordinates": [2.4403414594989346, 48.84783944640084]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "971a0a1a89fcc2510077649545f99b6b4696bdb8", "fields": {"departement": "94", "stop_lat": 48.850026084738296, "code_postal": "94033", "stop_lon": 2.4567151078138254, "coord": [48.850026084738296, 2.4567151078138254], "stop_id": 3685745, "stop_desc": "2 AVENUE DE LA REPUBLIQUE - 94033", "stop_name": "LES RIGOLLOTS"}, "geometry": {"type": "Point", "coordinates": [2.4567151078138254, 48.850026084738296]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c54a2709381d85909908e15cb541b3f184631744", "fields": {"departement": "94", "stop_lat": 48.84479511335644, "code_postal": "94080", "stop_lon": 2.4374894541796297, "coord": [48.84479511335644, 2.4374894541796297], "stop_id": 3685735, "stop_desc": "12 AVENUE DE PARIS - 94080", "stop_name": "AVENUE DU CHATEAU"}, "geometry": {"type": "Point", "coordinates": [2.4374894541796297, 48.84479511335644]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "113695c7003d1610d41014dcee4a6bf52636593e", "fields": {"departement": "94", "stop_lat": 48.855351310287475, "code_postal": "94033", "stop_lon": 2.48466156778649, "coord": [48.855351310287475, 2.48466156778649], "stop_id": 3685708, "stop_desc": "23 AV DES OLYMPIADES - 94033", "stop_name": "PABLO PICASSO"}, "geometry": {"type": "Point", "coordinates": [2.48466156778649, 48.855351310287475]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c4f767f66c8c0d72519335eda0787ae6b8b6fb25", "fields": {"departement": "93", "stop_lat": 48.86685565056985, "code_postal": "93064", "stop_lon": 2.484299210246628, "coord": [48.86685565056985, 2.484299210246628], "stop_id": 3685719, "stop_desc": "72 AVENUE DE LA REPUBLIQUE - 93064", "stop_name": "MEDERIC"}, "geometry": {"type": "Point", "coordinates": [2.484299210246628, 48.86685565056985]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a454340ef14e3fb20f3999f903de2aa690413903", "fields": {"departement": "94", "stop_lat": 48.84799597105422, "code_postal": "94080", "stop_lon": 2.446238301316548, "coord": [48.84799597105422, 2.446238301316548], "stop_id": 3685742, "stop_desc": "1-3 RUE DEFRANCE - 94080", "stop_name": "LIBERATION"}, "geometry": {"type": "Point", "coordinates": [2.446238301316548, 48.84799597105422]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b496dec3357c7b1b81d285bca0c9b176375f0442", "fields": {"departement": "93", "stop_lat": 48.85760031481306, "code_postal": "93048", "stop_lon": 2.439788805325031, "coord": [48.85760031481306, 2.439788805325031], "stop_id": 3685922, "stop_desc": "11 AVENUE GABRIEL PERI - 93048", "stop_name": "WILSON - GABRIEL PERI"}, "geometry": {"type": "Point", "coordinates": [2.439788805325031, 48.85760031481306]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f5459407225f98932efadf2c4b8d98b39f6a4eba", "fields": {"departement": "93", "stop_lat": 48.85686358157878, "code_postal": "93048", "stop_lon": 2.4671775405429193, "coord": [48.85686358157878, 2.4671775405429193], "stop_id": 3685932, "stop_desc": "306 BOULEVARD THEOPHILE SUEUR - 93048", "stop_name": "ERNEST RENAN"}, "geometry": {"type": "Point", "coordinates": [2.4671775405429193, 48.85686358157878]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dcdca02c56b37def740f5a77048d2b9d90a965d2", "fields": {"departement": "93", "stop_lat": 48.85339567884233, "code_postal": "93048", "stop_lon": 2.448156345426207, "coord": [48.85339567884233, 2.448156345426207], "stop_id": 3685925, "stop_desc": "FACE 121 RUE DE STALINGRAD - 93048", "stop_name": "LES PARAPLUIES"}, "geometry": {"type": "Point", "coordinates": [2.448156345426207, 48.85339567884233]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fdedb5f6680143cb9ad7c15e6adfbac699304369", "fields": {"departement": "94", "stop_lat": 48.851775265892286, "code_postal": "94033", "stop_lon": 2.4509856010862467, "coord": [48.851775265892286, 2.4509856010862467], "stop_id": 3685873, "stop_desc": "49 AVENUE DE STALINGRAD - 94033", "stop_name": "HECTOR MALOT"}, "geometry": {"type": "Point", "coordinates": [2.4509856010862467, 48.851775265892286]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "236f762411f513f283b182d36261416b015fd6ed", "fields": {"departement": "93", "stop_lat": 48.85652248979159, "code_postal": "93048", "stop_lon": 2.4667817032118613, "coord": [48.85652248979159, 2.4667817032118613], "stop_id": 3685931, "stop_desc": "172-174 AVENUE ERNEST RENAN - 93048", "stop_name": "ERNEST RENAN"}, "geometry": {"type": "Point", "coordinates": [2.4667817032118613, 48.85652248979159]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "962d9f46f513ece36f835f0e5b7e4938fdab2a59", "fields": {"departement": "94", "stop_lat": 48.8536429388402, "code_postal": "94033", "stop_lon": 2.452773829801377, "coord": [48.8536429388402, 2.452773829801377], "stop_id": 3685926, "stop_desc": "34 AVENUE PARMENTIER - 94033", "stop_name": "LES BEAUMONTS"}, "geometry": {"type": "Point", "coordinates": [2.452773829801377, 48.8536429388402]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "69656f2d9ce571ce34a3d3ee4f0642978f3a9e70", "fields": {"departement": "94", "stop_lat": 48.85525709533519, "code_postal": "94033", "stop_lon": 2.4564139017972937, "coord": [48.85525709533519, 2.4564139017972937], "stop_id": 3685929, "stop_desc": "FACE 130 AVENUE PARMENTIER - 94033", "stop_name": "DANTON"}, "geometry": {"type": "Point", "coordinates": [2.4564139017972937, 48.85525709533519]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5ebd6f8bf4bc1bb816ed4a18c4906d62fd88ff3c", "fields": {"departement": "94", "stop_lat": 48.84703875543706, "code_postal": "94033", "stop_lon": 2.4685555468583766, "coord": [48.84703875543706, 2.4685555468583766], "stop_id": 3685899, "stop_desc": "6 R DALAYRAC - 94033", "stop_name": "MAUCONSEIL"}, "geometry": {"type": "Point", "coordinates": [2.4685555468583766, 48.84703875543706]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e0ceb07793dd7f990c901e37c3244a6098f6087f", "fields": {"departement": "94", "stop_lat": 48.81488981158628, "code_postal": "94046", "stop_lon": 2.4184197009305843, "coord": [48.81488981158628, 2.4184197009305843], "stop_id": 3686302, "stop_desc": "17 RUE EUGENE RENAULT - 94046", "stop_name": "MAISONS-ALFORT - ECOLE VETERINAIRE"}, "geometry": {"type": "Point", "coordinates": [2.4184197009305843, 48.81488981158628]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f3d0846a7ed0d558ed77dc60280bd82958cf893a", "fields": {"departement": "94", "stop_lat": 48.833711015988115, "code_postal": "94058", "stop_lon": 2.5162120806998196, "coord": [48.833711015988115, 2.5162120806998196], "stop_id": 3686079, "stop_desc": "FACE127BIS BOULEVARD FOCH - 94058", "stop_name": "MARECHAL JOFFRE - PONT DE BRY"}, "geometry": {"type": "Point", "coordinates": [2.5162120806998196, 48.833711015988115]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f93a2ef1acda94a15daaa05b2fe6ade85d621eac", "fields": {"departement": "94", "stop_lat": 48.79008704138252, "code_postal": "94002", "stop_lon": 2.425916812256359, "coord": [48.79008704138252, 2.425916812256359], "stop_id": 3686325, "stop_desc": "FACE 108 RUE ETIENNE DOLET - 94002", "stop_name": "PLACE DU PETIT PONT"}, "geometry": {"type": "Point", "coordinates": [2.425916812256359, 48.79008704138252]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "43159e42d2c3c638a879b3b213c8c70a217f7b1b", "fields": {"departement": "94", "stop_lat": 48.790195038046896, "code_postal": "94002", "stop_lon": 2.4257265589282144, "coord": [48.790195038046896, 2.4257265589282144], "stop_id": 3686324, "stop_desc": "108 RUE ETIENNE DOLET - 94002", "stop_name": "PLACE DU PETIT PONT"}, "geometry": {"type": "Point", "coordinates": [2.4257265589282144, 48.790195038046896]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d29c7d59686ee6b410bcec1786546907e9e8942f", "fields": {"departement": "94", "stop_lat": 48.78711218269996, "code_postal": "94002", "stop_lon": 2.425721307267386, "coord": [48.78711218269996, 2.425721307267386], "stop_id": 3686327, "stop_desc": "FACE 138B RUE ETIENNE DOLET - 94002", "stop_name": "SAN BENEDETTO"}, "geometry": {"type": "Point", "coordinates": [2.425721307267386, 48.78711218269996]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0badcf1b7c397f8c2421829a38672a7e3d680759", "fields": {"departement": "94", "stop_lat": 48.79513859863443, "code_postal": "94002", "stop_lon": 2.4254356938910138, "coord": [48.79513859863443, 2.4254356938910138], "stop_id": 3686321, "stop_desc": "FACE 52BIS RUE ETIENNE DOLET - 94002", "stop_name": "ACHTARAK"}, "geometry": {"type": "Point", "coordinates": [2.4254356938910138, 48.79513859863443]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "63e1aa40f882eb79035f5cacf974f521c8a4691b", "fields": {"departement": "94", "stop_lat": 48.7785438078669, "code_postal": "94002", "stop_lon": 2.4170301430382213, "coord": [48.7785438078669, 2.4170301430382213], "stop_id": 3686334, "stop_desc": "QUAI DE LA REVOLUTION - 94002", "stop_name": "COKERIE"}, "geometry": {"type": "Point", "coordinates": [2.4170301430382213, 48.7785438078669]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2b50aec04ffbe4560e166aec2190c71358d828c2", "fields": {"departement": "94", "stop_lat": 48.797752319023104, "code_postal": "94002", "stop_lon": 2.4277665318073747, "coord": [48.797752319023104, 2.4277665318073747], "stop_id": 3686319, "stop_desc": "R DE VERDUN - 94002", "stop_name": "FLORE"}, "geometry": {"type": "Point", "coordinates": [2.4277665318073747, 48.797752319023104]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "675238d7ead256bf99775bce048be8e05d15d94c", "fields": {"departement": "94", "stop_lat": 48.800107762416324, "code_postal": "94002", "stop_lon": 2.426940715163204, "coord": [48.800107762416324, 2.426940715163204], "stop_id": 3686316, "stop_desc": "R JOFFRIN - 94002", "stop_name": "CAMELIAS"}, "geometry": {"type": "Point", "coordinates": [2.426940715163204, 48.800107762416324]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "836bf1e9d8ab7586f03703a72f4167655c117235", "fields": {"departement": "94", "stop_lat": 48.76461703210473, "code_postal": "94073", "stop_lon": 2.3684438760824804, "coord": [48.76461703210473, 2.3684438760824804], "stop_id": 3686430, "stop_desc": "AVENUE DE FONTAINEBLEAU - 94073", "stop_name": "CIMETIERE PARISIEN DE THIAIS"}, "geometry": {"type": "Point", "coordinates": [2.3684438760824804, 48.76461703210473]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "330811a92f706c43a50aaca9587b5e686d1749a3", "fields": {"departement": "94", "stop_lat": 48.78205591032208, "code_postal": "94002", "stop_lon": 2.4202452695843597, "coord": [48.78205591032208, 2.4202452695843597], "stop_id": 3686407, "stop_desc": "3 ROUTE DE LA DIGUE D'ALFORTVILLE - 94002", "stop_name": "DIGUE-REVOLUTION"}, "geometry": {"type": "Point", "coordinates": [2.4202452695843597, 48.78205591032208]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "881eb989b8ba867ec66e05bc0c747e395ff6642d", "fields": {"departement": "94", "stop_lat": 48.784171436693946, "code_postal": "94002", "stop_lon": 2.4279604824325824, "coord": [48.784171436693946, 2.4279604824325824], "stop_id": 3686404, "stop_desc": "175 RUE ETIENNE DOLET - 94002", "stop_name": "CIMETIERE D'ALFORTVILLE"}, "geometry": {"type": "Point", "coordinates": [2.4279604824325824, 48.784171436693946]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a74a433ce07d462c112476c2962ef6f0ca93a22a", "fields": {"departement": "94", "stop_lat": 48.790195038046896, "code_postal": "94002", "stop_lon": 2.4257265589282144, "coord": [48.790195038046896, 2.4257265589282144], "stop_id": 3686399, "stop_desc": "108 RUE ETIENNE DOLET - 94002", "stop_name": "PLACE DU PETIT PONT"}, "geometry": {"type": "Point", "coordinates": [2.4257265589282144, 48.790195038046896]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7cd4f8fa8d60872bc6119cb71ec7f9ee1d9b19dd", "fields": {"departement": "94", "stop_lat": 48.76577673270161, "code_postal": "94022", "stop_lon": 2.4093014390791234, "coord": [48.76577673270161, 2.4093014390791234], "stop_id": 3686419, "stop_desc": "AVENUE JEAN JAURES - 94022", "stop_name": "CHOISY-LE-ROI RER"}, "geometry": {"type": "Point", "coordinates": [2.4093014390791234, 48.76577673270161]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5a2848fca0579b1b46759c7287d232b7ea6dccec", "fields": {"departement": "94", "stop_lat": 48.77743755917018, "code_postal": "94002", "stop_lon": 2.4181027928439263, "coord": [48.77743755917018, 2.4181027928439263], "stop_id": 3686410, "stop_desc": "4 RUE DU CAPITAINE ALFRED DREYFUS - 94002", "stop_name": "COKERIE"}, "geometry": {"type": "Point", "coordinates": [2.4181027928439263, 48.77743755917018]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "30692e5dc67685a7b9a1f81c1f72828a4f2a3e98", "fields": {"departement": "94", "stop_lat": 48.77428444311341, "code_postal": "94022", "stop_lon": 2.41559575687124, "coord": [48.77428444311341, 2.41559575687124], "stop_id": 3686412, "stop_desc": "FACE 115 AVENUE D'ALFORTVILLE - 94022", "stop_name": "MESANGES"}, "geometry": {"type": "Point", "coordinates": [2.41559575687124, 48.77428444311341]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9f0434e34c533265edfc464785ca1f6f86a2a501", "fields": {"departement": "94", "stop_lat": 48.78232844812767, "code_postal": "94002", "stop_lon": 2.4285556918131372, "coord": [48.78232844812767, 2.4285556918131372], "stop_id": 3686405, "stop_desc": "RUE ETIENNE DOLET - 94002", "stop_name": "VAL DE SEINE"}, "geometry": {"type": "Point", "coordinates": [2.4285556918131372, 48.78232844812767]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6b658895638d0c4d36741a3a54675966828ce0ec", "fields": {"departement": "94", "stop_lat": 48.75908996737717, "code_postal": "94021", "stop_lon": 2.3659663516074483, "coord": [48.75908996737717, 2.3659663516074483], "stop_id": 3686428, "stop_desc": "RUE DE THIAIS - 94021", "stop_name": "PORTE DE THIAIS"}, "geometry": {"type": "Point", "coordinates": [2.3659663516074483, 48.75908996737717]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eec468edd8eb31e81c58ef959f7b1fc941ff7367", "fields": {"departement": "94", "stop_lat": 48.7785438078669, "code_postal": "94002", "stop_lon": 2.4170301430382213, "coord": [48.7785438078669, 2.4170301430382213], "stop_id": 3686409, "stop_desc": "QUAI DE LA REVOLUTION - 94002", "stop_name": "COKERIE"}, "geometry": {"type": "Point", "coordinates": [2.4170301430382213, 48.7785438078669]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "06902be03d4d9982509e50a790eeb8b0dae4065c", "fields": {"departement": "94", "stop_lat": 48.784171436693946, "code_postal": "94002", "stop_lon": 2.4279604824325824, "coord": [48.784171436693946, 2.4279604824325824], "stop_id": 3686449, "stop_desc": "175 RUE ETIENNE DOLET - 94002", "stop_name": "CIMETIERE D'ALFORTVILLE"}, "geometry": {"type": "Point", "coordinates": [2.4279604824325824, 48.784171436693946]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1766e5dc843ea1cf20f9f924b33f9a5fba4e0a49", "fields": {"departement": "94", "stop_lat": 48.76737347256756, "code_postal": "94022", "stop_lon": 2.4143072447805944, "coord": [48.76737347256756, 2.4143072447805944], "stop_id": 3686441, "stop_desc": "FACE 5 AVENUE D'ALFORTVILLE - 94022", "stop_name": "PONT DE CHOISY"}, "geometry": {"type": "Point", "coordinates": [2.4143072447805944, 48.76737347256756]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2d67b178f773cac7e24711e83fcc273ecef278c4", "fields": {"departement": "94", "stop_lat": 48.781627104512765, "code_postal": "94002", "stop_lon": 2.4289216711576915, "coord": [48.781627104512765, 2.4289216711576915], "stop_id": 3686448, "stop_desc": "CHEMIN DE VILLENEUVE - 94002", "stop_name": "VAL DE SEINE"}, "geometry": {"type": "Point", "coordinates": [2.4289216711576915, 48.781627104512765]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cf0e8d73125a7539ce18f761d9d48473c2258e30", "fields": {"departement": "94", "stop_lat": 48.770277053995144, "code_postal": "94022", "stop_lon": 2.4136316773726927, "coord": [48.770277053995144, 2.4136316773726927], "stop_id": 3686442, "stop_desc": "38 AVENUE D'ALFORTVILLE - 94022", "stop_name": "JEAN VILAR"}, "geometry": {"type": "Point", "coordinates": [2.4136316773726927, 48.770277053995144]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5f50ac0c30e24e7ec0c5eb8661b3da62ce88084e", "fields": {"departement": "94", "stop_lat": 48.770277053995144, "code_postal": "94022", "stop_lon": 2.4136316773726927, "coord": [48.770277053995144, 2.4136316773726927], "stop_id": 3686470, "stop_desc": "38 AVENUE D'ALFORTVILLE - 94022", "stop_name": "JEAN VILAR"}, "geometry": {"type": "Point", "coordinates": [2.4136316773726927, 48.770277053995144]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6b7eadf89015b81bc9040a373174d7d5ec137ea6", "fields": {"departement": "94", "stop_lat": 48.76432242204478, "code_postal": "94022", "stop_lon": 2.406335512595289, "coord": [48.76432242204478, 2.406335512595289], "stop_id": 3686439, "stop_desc": "7 AV GAMBETTA - 94022", "stop_name": "ROUGET DE LISLE"}, "geometry": {"type": "Point", "coordinates": [2.406335512595289, 48.76432242204478]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1a35bf74f464de3c038f53122a49a8dda17bc2da", "fields": {"departement": "94", "stop_lat": 48.795039543105396, "code_postal": "94068", "stop_lon": 2.5142966834723746, "coord": [48.795039543105396, 2.5142966834723746], "stop_id": 3686751, "stop_desc": "3 AVENUE DU MESNIL - 94068", "stop_name": "LA VARENNE-CHENNEVIERES RER"}, "geometry": {"type": "Point", "coordinates": [2.5142966834723746, 48.795039543105396]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0cc419c0711bb6af1179d93d679c26c24f8b7f8b", "fields": {"departement": "94", "stop_lat": 48.82961792713526, "code_postal": "94017", "stop_lon": 2.493300815393294, "coord": [48.82961792713526, 2.493300815393294], "stop_id": 3687027, "stop_desc": "264 BOULEVARD DE STALINGRAD - 94017", "stop_name": "PIERRE BROSSOLETTE"}, "geometry": {"type": "Point", "coordinates": [2.493300815393294, 48.82961792713526]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c7dc9c419a06d6e3514d9d34cab58644017b5479", "fields": {"departement": "94", "stop_lat": 48.8280081599537, "code_postal": "94017", "stop_lon": 2.4940446690229003, "coord": [48.8280081599537, 2.4940446690229003], "stop_id": 3687025, "stop_desc": "236 BOULEVARD DE STALINGRAD - 94017", "stop_name": "PARC DU TREMBLAY"}, "geometry": {"type": "Point", "coordinates": [2.4940446690229003, 48.8280081599537]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ae3a4c29c5b921b67f6b0c5de86bd80e990e995b", "fields": {"departement": "94", "stop_lat": 48.78529175404654, "code_postal": "94028", "stop_lon": 2.452404176996184, "coord": [48.78529175404654, 2.452404176996184], "stop_id": 3686992, "stop_desc": "AVENUE FRANCOIS MAURIAC - 94028", "stop_name": "CROIX DES MECHES"}, "geometry": {"type": "Point", "coordinates": [2.452404176996184, 48.78529175404654]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3516b33b684f41176d961feb75de09684b07cabe", "fields": {"departement": "94", "stop_lat": 48.800506264849396, "code_postal": "94068", "stop_lon": 2.471471878071295, "coord": [48.800506264849396, 2.471471878071295], "stop_id": 3687034, "stop_desc": "86 RUE DU PONT DE CRETEIL - 94068", "stop_name": "PONT DE CRETEIL"}, "geometry": {"type": "Point", "coordinates": [2.471471878071295, 48.800506264849396]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a18e5897d05196bd80d8ac1ee82934736154d6cc", "fields": {"departement": "94", "stop_lat": 48.791008619456996, "code_postal": "94068", "stop_lon": 2.504883316430706, "coord": [48.791008619456996, 2.504883316430706], "stop_id": 3686748, "stop_desc": "RUE CHEVALIER - 94068", "stop_name": "AVENUE DE BONNEUIL"}, "geometry": {"type": "Point", "coordinates": [2.504883316430706, 48.791008619456996]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eb1ffd064aff6cff5401de1751185268353e5ea5", "fields": {"departement": "94", "stop_lat": 48.792001458154665, "code_postal": "94028", "stop_lon": 2.456744863965384, "coord": [48.792001458154665, 2.456744863965384], "stop_id": 3686996, "stop_desc": "30-32 RUE DES MECHES - 94028", "stop_name": "CHATEAU"}, "geometry": {"type": "Point", "coordinates": [2.456744863965384, 48.792001458154665]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3ee89e224866af7127869e0e39dddceb5b8230fc", "fields": {"departement": "94", "stop_lat": 48.80093815541192, "code_postal": "94068", "stop_lon": 2.471051223419979, "coord": [48.80093815541192, 2.471051223419979], "stop_id": 3686735, "stop_desc": "RUE DU CHEMIN VERT - 94068", "stop_name": "CHEMIN VERT"}, "geometry": {"type": "Point", "coordinates": [2.471051223419979, 48.80093815541192]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d9e4d8b6233b37930cdfb76c9143886f08417925", "fields": {"departement": "94", "stop_lat": 48.794361222724945, "code_postal": "94068", "stop_lon": 2.4769655328437334, "coord": [48.794361222724945, 2.4769655328437334], "stop_id": 3686738, "stop_desc": "5 PLACE GALILEE - 94068", "stop_name": "GALILEE"}, "geometry": {"type": "Point", "coordinates": [2.4769655328437334, 48.794361222724945]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9c8652d649e52ba10bfbae8fdfa9b78ac87390cc", "fields": {"departement": "75", "stop_lat": 48.866991448808626, "code_postal": "75120", "stop_lon": 2.3832317356000146, "coord": [48.866991448808626, 2.3832317356000146], "stop_id": 3687445, "stop_desc": "BD DE MENILMONTANT - 75120", "stop_name": "BELLEVILLE - MENILMONTANT"}, "geometry": {"type": "Point", "coordinates": [2.3832317356000146, 48.866991448808626]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a2fb775fc7644348ec82c8642249f1260534c205", "fields": {"departement": "75", "stop_lat": 48.86476593093983, "code_postal": "75111", "stop_lon": 2.3735307222740634, "coord": [48.86476593093983, 2.3735307222740634], "stop_id": 3687443, "stop_desc": "58 RUE OBERKAMPF - 75111", "stop_name": "PARMENTIER - REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.3735307222740634, 48.86476593093983]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "562856f7c1c2c717c15f1a0c4a4640f2dcbeb351", "fields": {"departement": "93", "stop_lat": 48.87658775595986, "code_postal": "93006", "stop_lon": 2.4324005357009613, "coord": [48.87658775595986, 2.4324005357009613], "stop_id": 3687294, "stop_desc": "FACE 55 RUE LOUISE MICHEL - 93006", "stop_name": "LOUISE MICHEL"}, "geometry": {"type": "Point", "coordinates": [2.4324005357009613, 48.87658775595986]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f54895bcccc3eb0864c4f5b6ae0436be3bf50c81", "fields": {"departement": "75", "stop_lat": 48.85726596088864, "code_postal": "75104", "stop_lon": 2.3527954157613853, "coord": [48.85726596088864, 2.3527954157613853], "stop_id": 3687430, "stop_desc": "62 RUE DE RIVOLI - 75104", "stop_name": "HOTEL DE VILLE"}, "geometry": {"type": "Point", "coordinates": [2.3527954157613853, 48.85726596088864]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "489b7af50d7294e2760c647e313193dbe54689af", "fields": {"departement": "75", "stop_lat": 48.84879147223759, "code_postal": "75106", "stop_lon": 2.328402948470149, "coord": [48.84879147223759, 2.328402948470149], "stop_id": 3687419, "stop_desc": "108 RUE DE RENNES - 75106", "stop_name": "RENNES - D'ASSAS"}, "geometry": {"type": "Point", "coordinates": [2.328402948470149, 48.84879147223759]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9e837bb553a5a0f40789d49ff4d3188f5357fc70", "fields": {"departement": "75", "stop_lat": 48.85547674635916, "code_postal": "75104", "stop_lon": 2.3575481918629646, "coord": [48.85547674635916, 2.3575481918629646], "stop_id": 3687432, "stop_desc": "64 RUE FRANCOIS MIRON - 75104", "stop_name": "RUE DE JOUY"}, "geometry": {"type": "Point", "coordinates": [2.3575481918629646, 48.85547674635916]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8346d9c1e37f317527d11faadec284f7c6193870", "fields": {"departement": "75", "stop_lat": 48.85986123906396, "code_postal": "75103", "stop_lon": 2.364428491296072, "coord": [48.85986123906396, 2.364428491296072], "stop_id": 3687438, "stop_desc": "77 RUE DE TURENNE - 75103", "stop_name": "SAINT-CLAUDE"}, "geometry": {"type": "Point", "coordinates": [2.364428491296072, 48.85986123906396]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8ef1e37ee7d44cfd59d0ab1ee5b5f5a607b6a613", "fields": {"departement": "75", "stop_lat": 48.85121823484648, "code_postal": "75106", "stop_lon": 2.3305951430899357, "coord": [48.85121823484648, 2.3305951430899357], "stop_id": 3687421, "stop_desc": "76 RUE DE RENNES - 75106", "stop_name": "MICHEL DEBRE"}, "geometry": {"type": "Point", "coordinates": [2.3305951430899357, 48.85121823484648]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "104e3c30c5d75d853f0e81b47f115c12b5ca79f9", "fields": {"departement": "92", "stop_lat": 48.91741081652648, "code_postal": "92025", "stop_lon": 2.2253841697951615, "coord": [48.91741081652648, 2.2253841697951615], "stop_id": 3887720, "stop_desc": "202 BD CHARLES DE GAULLE - 92025", "stop_name": "PARC PIERRE LAGRAVERE"}, "geometry": {"type": "Point", "coordinates": [2.2253841697951615, 48.91741081652648]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "871d9bd7552a2dc71073f48a48fd3279e3940633", "fields": {"departement": "92", "stop_lat": 48.92313572137065, "code_postal": "92025", "stop_lon": 2.2356545619085146, "coord": [48.92313572137065, 2.2356545619085146], "stop_id": 3887723, "stop_desc": "211 RUE DES RENOUILLERS - 92025", "stop_name": "HOPITAL LOUIS MOURIER"}, "geometry": {"type": "Point", "coordinates": [2.2356545619085146, 48.92313572137065]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9878f9356d1582a8c2b5715f114d2ecd5363942d", "fields": {"departement": "92", "stop_lat": 48.92637786305897, "code_postal": "92025", "stop_lon": 2.2440358549998067, "coord": [48.92637786305897, 2.2440358549998067], "stop_id": 3887725, "stop_desc": "FACE 20 AVENUE DE L'EUROPE - 92025", "stop_name": "TOUR D'AUVERGNE"}, "geometry": {"type": "Point", "coordinates": [2.2440358549998067, 48.92637786305897]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1d2a3ee14154652e791fa1b62ddc706fde579ac3", "fields": {"departement": "92", "stop_lat": 48.92927697817656, "code_postal": "92004", "stop_lon": 2.281306624278163, "coord": [48.92927697817656, 2.281306624278163], "stop_id": 3887736, "stop_desc": "FACE 17 AVENUE DE LA REDOUTE - 92004", "stop_name": "ABBE LEMIRE"}, "geometry": {"type": "Point", "coordinates": [2.281306624278163, 48.92927697817656]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a6a44a78da8deaea754cce723c3acff043ed0bcc", "fields": {"departement": "75", "stop_lat": 48.89744790977127, "code_postal": "75119", "stop_lon": 2.3865301587901095, "coord": [48.89744790977127, 2.3865301587901095], "stop_id": 3887739, "stop_desc": "FACE 81 BD MACDONALD - 75119", "stop_name": "PORTE DE LA VILLETTE - CITE DES SCIENCES ET DE L'INDUSTRIE"}, "geometry": {"type": "Point", "coordinates": [2.3865301587901095, 48.89744790977127]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e41dc028844f91a269da000d74ed04ef6e48d2db", "fields": {"departement": "75", "stop_lat": 48.87691988372172, "code_postal": "75120", "stop_lon": 2.407003312913803, "coord": [48.87691988372172, 2.407003312913803], "stop_id": 3887742, "stop_desc": "164-166 BD MORTIER - 75120", "stop_name": "PORTE DES LILAS"}, "geometry": {"type": "Point", "coordinates": [2.407003312913803, 48.87691988372172]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "35cdd0581eef4d279fc736abea7919fef0abdd19", "fields": {"departement": "75", "stop_lat": 48.82657558924991, "code_postal": "75113", "stop_lon": 2.3806912781462786, "coord": [48.82657558924991, 2.3806912781462786], "stop_id": 3887744, "stop_desc": "0 AV DE FRANCE - 75113", "stop_name": "PORTE DE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.3806912781462786, 48.82657558924991]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dcfc3b7018dbd2a5911d00e6107c014f5faebe2e", "fields": {"departement": "75", "stop_lat": 48.82929076276829, "code_postal": "75113", "stop_lon": 2.3781343192446807, "coord": [48.82929076276829, 2.3781343192446807], "stop_id": 3887745, "stop_desc": "FACE 89-91 AVENUE DE FRANCE - 75113", "stop_name": "BIBLIOTHEQUE RUE MANN"}, "geometry": {"type": "Point", "coordinates": [2.3781343192446807, 48.82929076276829]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ae97ccc450a78919e55a50e558172261db0f48e5", "fields": {"departement": "75", "stop_lat": 48.83685160358952, "code_postal": "75113", "stop_lon": 2.3708971402492605, "coord": [48.83685160358952, 2.3708971402492605], "stop_id": 3887754, "stop_desc": "AVENUE PIERRE MENDES FRANCE - 75113", "stop_name": "VINCENT AURIOL"}, "geometry": {"type": "Point", "coordinates": [2.3708971402492605, 48.83685160358952]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "379c7d61c5786c9f0713c67494f8ee2b59d57f4e", "fields": {"departement": "75", "stop_lat": 48.840366307524064, "code_postal": "75113", "stop_lon": 2.368829811809347, "coord": [48.840366307524064, 2.368829811809347], "stop_id": 3887756, "stop_desc": "FACE 60 AVENUE PIERRE MENDES FRANCE - 75113", "stop_name": "CITE DE LA MODE ET DU DESIGN"}, "geometry": {"type": "Point", "coordinates": [2.368829811809347, 48.840366307524064]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "429152f9eb0693fd2383895545633830e7b8f186", "fields": {"departement": "75", "stop_lat": 48.846373350546365, "code_postal": "75105", "stop_lon": 2.3511716797175524, "coord": [48.846373350546365, 2.3511716797175524], "stop_id": 3887762, "stop_desc": "FACE 61 RUE DU CARDINAL LEMOINE - 75105", "stop_name": "CARDINAL LEMOINE - MONGE"}, "geometry": {"type": "Point", "coordinates": [2.3511716797175524, 48.846373350546365]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "04d0c6da3f826fcf01a13a6cc7fd114ffc73139b", "fields": {"departement": "75", "stop_lat": 48.84755119498378, "code_postal": "75106", "stop_lon": 2.328362306896542, "coord": [48.84755119498378, 2.328362306896542], "stop_id": 3887774, "stop_desc": "82 RUE DE VAUGIRARD - 75106", "stop_name": "RENNES - RASPAIL"}, "geometry": {"type": "Point", "coordinates": [2.328362306896542, 48.84755119498378]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5e35be1e47cf607fe9b1016cc4c51b3ee0fe6636", "fields": {"departement": "75", "stop_lat": 48.84659686626664, "code_postal": "75107", "stop_lon": 2.3155075746566527, "coord": [48.84659686626664, 2.3155075746566527], "stop_id": 3887782, "stop_desc": "FACE 149 RUE DE SEVRES - 75107", "stop_name": "HOPITAL DES ENFANTS MALADES"}, "geometry": {"type": "Point", "coordinates": [2.3155075746566527, 48.84659686626664]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9128ee2d728ee1348a9244c8f924f6f84b8cec53", "fields": {"departement": "75", "stop_lat": 48.837023039308455, "code_postal": "75115", "stop_lon": 2.3060764183898517, "coord": [48.837023039308455, 2.3060764183898517], "stop_id": 3887788, "stop_desc": "48 RUE PAUL BARRUEL - 75115", "stop_name": "ALLERAY"}, "geometry": {"type": "Point", "coordinates": [2.3060764183898517, 48.837023039308455]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e31ec1c54d5f183dffd402534677c4224d8d0cd8", "fields": {"departement": "75", "stop_lat": 48.83423650893377, "code_postal": "75115", "stop_lon": 2.304662212610296, "coord": [48.83423650893377, 2.304662212610296], "stop_id": 3887790, "stop_desc": "32 RUE BRANCION - 75115", "stop_name": "BRANCION - VOUILLE"}, "geometry": {"type": "Point", "coordinates": [2.304662212610296, 48.83423650893377]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8fe1588a4d8498d38cfb22d86e7e1d75180bbe91", "fields": {"departement": "75", "stop_lat": 48.83013533679864, "code_postal": "75115", "stop_lon": 2.295612039793084, "coord": [48.83013533679864, 2.295612039793084], "stop_id": 3887795, "stop_desc": "86 RUE DE DANTZIG - 75115", "stop_name": "GEORGES BRASSENS"}, "geometry": {"type": "Point", "coordinates": [2.295612039793084, 48.83013533679864]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a4dd51872485e76e26a110d7695863a860bc9fa9", "fields": {"departement": "92", "stop_lat": 48.82068748843285, "code_postal": "92075", "stop_lon": 2.2907061649623706, "coord": [48.82068748843285, 2.2907061649623706], "stop_id": 3887803, "stop_desc": "7-9 AVENUE MARCEL MARTINIE - 92075", "stop_name": "SQUARE DE L'INSURRECTION"}, "geometry": {"type": "Point", "coordinates": [2.2907061649623706, 48.82068748843285]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "33fcd989d648b7d9a21070354be290b7bbe8acc1", "fields": {"departement": "92", "stop_lat": 48.82083143991088, "code_postal": "92075", "stop_lon": 2.291087135918191, "coord": [48.82083143991088, 2.291087135918191], "stop_id": 3887804, "stop_desc": "AVENUE MARCEL MARTINIE - 92075", "stop_name": "SQUARE DE L'INSURRECTION"}, "geometry": {"type": "Point", "coordinates": [2.291087135918191, 48.82083143991088]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b1013b015395c0e3191e1dcb4328bf9cc92f05ea", "fields": {"departement": "75", "stop_lat": 48.8733809275033, "code_postal": "75109", "stop_lon": 2.3274859090230406, "coord": [48.8733809275033, 2.3274859090230406], "stop_id": 3893337, "stop_desc": "19 RUE AUBER - 75109", "stop_name": "HAVRE - HAUSSMANN"}, "geometry": {"type": "Point", "coordinates": [2.3274859090230406, 48.8733809275033]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bf1cc60a22c854a43da7871c349bc3efd99a6f4a", "fields": {"departement": "75", "stop_lat": 48.87351575263024, "code_postal": "75109", "stop_lon": 2.327676627244145, "coord": [48.87351575263024, 2.327676627244145], "stop_id": 3893338, "stop_desc": "16-18 RUE AUBER - 75109", "stop_name": "HAVRE - HAUSSMANN"}, "geometry": {"type": "Point", "coordinates": [2.327676627244145, 48.87351575263024]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f794e54e2121c1ab8f8dbb94c8009ca9935e2f22", "fields": {"departement": "75", "stop_lat": 48.871287153820475, "code_postal": "75109", "stop_lon": 2.3317097306442087, "coord": [48.871287153820475, 2.3317097306442087], "stop_id": 3893342, "stop_desc": "FACE 1 RUE AUBER - 75109", "stop_name": "OPERA"}, "geometry": {"type": "Point", "coordinates": [2.3317097306442087, 48.871287153820475]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1815a02f5f78d2242b8980c7760554fdd9fb1009", "fields": {"departement": "75", "stop_lat": 48.866236360134835, "code_postal": "75101", "stop_lon": 2.3343530611372842, "coord": [48.866236360134835, 2.3343530611372842], "stop_id": 3893346, "stop_desc": "20 AVENUE DE L'OPERA - 75101", "stop_name": "PYRAMIDES"}, "geometry": {"type": "Point", "coordinates": [2.3343530611372842, 48.866236360134835]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c5896d2ed22c68c1de439dc1b6679d37ce2fee83", "fields": {"departement": "75", "stop_lat": 48.86427713063281, "code_postal": "75101", "stop_lon": 2.335170497725097, "coord": [48.86427713063281, 2.335170497725097], "stop_id": 3893348, "stop_desc": "6 AVENUE DE L'OPERA - 75101", "stop_name": "PALAIS ROYAL - COMEDIE FRANCAISE"}, "geometry": {"type": "Point", "coordinates": [2.335170497725097, 48.86427713063281]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5a8fa4a17ebe8cb264be5aa88c52554b7e35c0da", "fields": {"departement": "75", "stop_lat": 48.85657487118363, "code_postal": "75101", "stop_lon": 2.3413815698445117, "coord": [48.85657487118363, 2.3413815698445117], "stop_id": 3893352, "stop_desc": "FACE 68 QUAI DES ORFEVRES - 75101", "stop_name": "PONT NEUF - QUAI DES ORFEVRES"}, "geometry": {"type": "Point", "coordinates": [2.3413815698445117, 48.85657487118363]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "47c8155cff09aae8153f83910f4ad8ebe0c8ee79", "fields": {"departement": "75", "stop_lat": 48.84978931329091, "code_postal": "75106", "stop_lon": 2.342102800318699, "coord": [48.84978931329091, 2.342102800318699], "stop_id": 3893355, "stop_desc": "38 BOULEVARD SAINT-MICHEL - 75106", "stop_name": "LES ECOLES"}, "geometry": {"type": "Point", "coordinates": [2.342102800318699, 48.84978931329091]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6ac80c44d6cd28eabf04047cb5a31c523a6ed620", "fields": {"departement": "75", "stop_lat": 48.843875523629535, "code_postal": "75105", "stop_lon": 2.342388199416716, "coord": [48.843875523629535, 2.342388199416716], "stop_id": 3893359, "stop_desc": "29 RUE GAY LUSSAC - 75105", "stop_name": "SAINT-JACQUES - GAY-LUSSAC"}, "geometry": {"type": "Point", "coordinates": [2.342388199416716, 48.843875523629535]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "814179a0b2be3df62d3fccf3636e6c3f3b24e404", "fields": {"departement": "75", "stop_lat": 48.84169151496391, "code_postal": "75105", "stop_lon": 2.343204954429883, "coord": [48.84169151496391, 2.343204954429883], "stop_id": 3893360, "stop_desc": "76 RUE GAY LUSSAC - 75105", "stop_name": "FEUILLANTINES"}, "geometry": {"type": "Point", "coordinates": [2.343204954429883, 48.84169151496391]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c62b45ad0a8452328e0273506ed165bc3697e3d3", "fields": {"departement": "75", "stop_lat": 48.83315989310514, "code_postal": "75113", "stop_lon": 2.361963996197848, "coord": [48.83315989310514, 2.361963996197848], "stop_id": 3893375, "stop_desc": "FACE 145 BOULEVARD VINCENT AURIOL - 75113", "stop_name": "NATIONALE"}, "geometry": {"type": "Point", "coordinates": [2.361963996197848, 48.83315989310514]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8e5f5c85995586c10d171c9c411028b2dcc0e093", "fields": {"departement": "75", "stop_lat": 48.825948776082065, "code_postal": "75113", "stop_lon": 2.3737758280905648, "coord": [48.825948776082065, 2.3737758280905648], "stop_id": 3893382, "stop_desc": "67 RUE DE PATAY - 75113", "stop_name": "OUDINE"}, "geometry": {"type": "Point", "coordinates": [2.3737758280905648, 48.825948776082065]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aad2e09b49166bb217de4e98eab73f95d1e8ff55", "fields": {"departement": "75", "stop_lat": 48.82641622966347, "code_postal": "75113", "stop_lon": 2.373463076930392, "coord": [48.82641622966347, 2.373463076930392], "stop_id": 3893383, "stop_desc": "62 RUE DE PATAY - 75113", "stop_name": "OUDINE"}, "geometry": {"type": "Point", "coordinates": [2.373463076930392, 48.82641622966347]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cf754f47823a13c344c66b82c72268ae3e0ca4ee", "fields": {"departement": "75", "stop_lat": 48.85415714947943, "code_postal": "75106", "stop_lon": 2.343642207604387, "coord": [48.85415714947943, 2.343642207604387], "stop_id": 3893395, "stop_desc": "FACE 15-17 QUAI DES GRANDS AUGUSTINS - 75106", "stop_name": "SAINT-MICHEL"}, "geometry": {"type": "Point", "coordinates": [2.343642207604387, 48.85415714947943]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3a71e1b0e0dbb52c59186cb3a15010423f6eda10", "fields": {"departement": "75", "stop_lat": 48.865290361605936, "code_postal": "75108", "stop_lon": 2.313538112353421, "coord": [48.865290361605936, 2.313538112353421], "stop_id": 3893409, "stop_desc": "AVENUE WINSTON CHURCHILL - 75108", "stop_name": "GRAND PALAIS"}, "geometry": {"type": "Point", "coordinates": [2.313538112353421, 48.865290361605936]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b603908f6f7c3d8a90cf6615955a925f787a45b9", "fields": {"departement": "75", "stop_lat": 48.857607734065525, "code_postal": "75107", "stop_lon": 2.323770519843578, "coord": [48.857607734065525, 2.323770519843578], "stop_id": 3893416, "stop_desc": "FACE 250 BOULEVARD SAINT-GERMAIN - 75107", "stop_name": "SOLFERINO - BELLECHASSE"}, "geometry": {"type": "Point", "coordinates": [2.323770519843578, 48.857607734065525]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0117564d833d8dea103244bdd5c9b3ff8a469d59", "fields": {"departement": "75", "stop_lat": 48.853644539093, "code_postal": "75107", "stop_lon": 2.32637284104398, "coord": [48.853644539093, 2.32637284104398], "stop_id": 3893421, "stop_desc": "19 BOULEVARD RASPAIL - 75107", "stop_name": "VARENNE - RASPAIL"}, "geometry": {"type": "Point", "coordinates": [2.32637284104398, 48.853644539093]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8f1f5cb1c098e2e60c73e701bf76cb91f226092e", "fields": {"departement": "75", "stop_lat": 48.84931275955873, "code_postal": "75106", "stop_lon": 2.328579895964584, "coord": [48.84931275955873, 2.328579895964584], "stop_id": 3893425, "stop_desc": "FACE 14BIS RUE D'ASSAS - 75106", "stop_name": "RENNES - D'ASSAS"}, "geometry": {"type": "Point", "coordinates": [2.328579895964584, 48.84931275955873]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "992c1da779db7f5bf375c36391c3f91d36fb55c2", "fields": {"departement": "75", "stop_lat": 48.84459455351623, "code_postal": "75106", "stop_lon": 2.3328155557835526, "coord": [48.84459455351623, 2.3328155557835526], "stop_id": 3893429, "stop_desc": "FACE 80 RUE D'ASSAS - 75106", "stop_name": "GUYNEMER - VAVIN"}, "geometry": {"type": "Point", "coordinates": [2.3328155557835526, 48.84459455351623]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "80c990dd553eaee6d67f0bb1c77a9c662741170b", "fields": {"departement": "75", "stop_lat": 48.8394357886837, "code_postal": "75114", "stop_lon": 2.3371049092839686, "coord": [48.8394357886837, 2.3371049092839686], "stop_id": 3893434, "stop_desc": "127 BOULEVARD DE PORT ROYAL - 75114", "stop_name": "OBSERVATOIRE - PORT ROYAL"}, "geometry": {"type": "Point", "coordinates": [2.3371049092839686, 48.8394357886837]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "94f9bc0da5bfce9510177f23deb92b1e7c1e1821", "fields": {"departement": "75", "stop_lat": 48.83549896754265, "code_postal": "75113", "stop_lon": 2.345191970040922, "coord": [48.83549896754265, 2.345191970040922], "stop_id": 3893438, "stop_desc": "15-15 BIS RUE DE LA GLACIERE - 75113", "stop_name": "GLACIERE - ARAGO"}, "geometry": {"type": "Point", "coordinates": [2.345191970040922, 48.83549896754265]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "11be9d1449301a9ef2f4426766ad6c5e4ce6d8cb", "fields": {"departement": "75", "stop_lat": 48.83656798522795, "code_postal": "75113", "stop_lon": 2.3507878337280705, "coord": [48.83656798522795, 2.3507878337280705], "stop_id": 3893442, "stop_desc": "4 BOULEVARD ARAGO - 75113", "stop_name": "LES GOBELINS"}, "geometry": {"type": "Point", "coordinates": [2.3507878337280705, 48.83656798522795]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3006b369955b2785315e06eebbc3ce84de813a88", "fields": {"departement": "75", "stop_lat": 48.834248809681654, "code_postal": "75113", "stop_lon": 2.3537823601834367, "coord": [48.834248809681654, 2.3537823601834367], "stop_id": 3893444, "stop_desc": "57-63 AVENUE DES GOBELINS - 75113", "stop_name": "BANQUIER"}, "geometry": {"type": "Point", "coordinates": [2.3537823601834367, 48.834248809681654]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f1845b088278ac2d90c4d0dc61eb762824af712c", "fields": {"departement": "75", "stop_lat": 48.82122233552293, "code_postal": "75113", "stop_lon": 2.3700839704330785, "coord": [48.82122233552293, 2.3700839704330785], "stop_id": 3893464, "stop_desc": "48 AVENUE DE LA PORTE D'IVRY - 75113", "stop_name": "PORTE D'IVRY"}, "geometry": {"type": "Point", "coordinates": [2.3700839704330785, 48.82122233552293]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8f7c7a7ba95b6517b1b63386b636c2ffc5423533", "fields": {"departement": "75", "stop_lat": 48.82198650760714, "code_postal": "75113", "stop_lon": 2.369281403770244, "coord": [48.82198650760714, 2.369281403770244], "stop_id": 3893465, "stop_desc": "2 R NATIONALE - 75113", "stop_name": "NATIONALE"}, "geometry": {"type": "Point", "coordinates": [2.369281403770244, 48.82198650760714]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2bdb889ef3c0f816148c0faf1e161235330d858a", "fields": {"departement": "75", "stop_lat": 48.83877965010914, "code_postal": "75105", "stop_lon": 2.3405904592793836, "coord": [48.83877965010914, 2.3405904592793836], "stop_id": 3893467, "stop_desc": "FACE 121 BOULEVARD DE PORT ROYAL - 75105", "stop_name": "PORT ROYAL - SAINT-JACQUES"}, "geometry": {"type": "Point", "coordinates": [2.3405904592793836, 48.83877965010914]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2519231fd92cd9612a401d33e36b77edefedf36d", "fields": {"departement": "75", "stop_lat": 48.86525375030457, "code_postal": "75108", "stop_lon": 2.3104186054184357, "coord": [48.86525375030457, 2.3104186054184357], "stop_id": 3893470, "stop_desc": "FACE 5 AVENUE F.D. ROOSEVELT - 75108", "stop_name": "PALAIS DE LA DECOUVERTE"}, "geometry": {"type": "Point", "coordinates": [2.3104186054184357, 48.86525375030457]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8d8b3a78f4998020fc2b33907db621234336b1ad", "fields": {"departement": "75", "stop_lat": 48.82929076276829, "code_postal": "75113", "stop_lon": 2.3781343192446807, "coord": [48.82929076276829, 2.3781343192446807], "stop_id": 3893477, "stop_desc": "FACE 89-91 AVENUE DE FRANCE - 75113", "stop_name": "BIBLIOTHEQUE RUE MANN"}, "geometry": {"type": "Point", "coordinates": [2.3781343192446807, 48.82929076276829]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "675db89dc2f7eeaa6afc898bce7a99cb085d082b", "fields": {"departement": "75", "stop_lat": 48.828814432307446, "code_postal": "75113", "stop_lon": 2.3780931055620878, "coord": [48.828814432307446, 2.3780931055620878], "stop_id": 3893478, "stop_desc": "89-91 AVENUE DE FRANCE - 75113", "stop_name": "BIBLIOTHEQUE RUE MANN"}, "geometry": {"type": "Point", "coordinates": [2.3780931055620878, 48.828814432307446]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9b00cdc6303e86ecf549e3cd0acf3b825aa69687", "fields": {"departement": "75", "stop_lat": 48.83010047423811, "code_postal": "75113", "stop_lon": 2.3756573644191827, "coord": [48.83010047423811, 2.3756573644191827], "stop_id": 3893479, "stop_desc": "12-14 RUE DE TOLBIAC - 75113", "stop_name": "BIBLIOTHEQUE CHEVALERET"}, "geometry": {"type": "Point", "coordinates": [2.3756573644191827, 48.83010047423811]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "af4e6af09b710ec8597c16a1bbc4d102333edfb4", "fields": {"departement": "75", "stop_lat": 48.82773792696931, "code_postal": "75113", "stop_lon": 2.371735208270784, "coord": [48.82773792696931, 2.371735208270784], "stop_id": 3893482, "stop_desc": "45 RUE DE TOLBIAC - 75113", "stop_name": "PATAY - TOLBIAC"}, "geometry": {"type": "Point", "coordinates": [2.371735208270784, 48.82773792696931]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a6a5c9cb6de7d78aa04471f52f1c481f883f770d", "fields": {"departement": "75", "stop_lat": 48.82702909203566, "code_postal": "75113", "stop_lon": 2.367351563599449, "coord": [48.82702909203566, 2.367351563599449], "stop_id": 3893484, "stop_desc": "89 RUE DE TOLBIAC - 75113", "stop_name": "OLYMPIADES"}, "geometry": {"type": "Point", "coordinates": [2.367351563599449, 48.82702909203566]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2f229c5bdbdb26732e6e3ef0a76696fd8f833d64", "fields": {"departement": "75", "stop_lat": 48.82594416528597, "code_postal": "75113", "stop_lon": 2.3543378093062266, "coord": [48.82594416528597, 2.3543378093062266], "stop_id": 3893492, "stop_desc": "169 RUE DE TOLBIAC - 75113", "stop_name": "MOULIN DES PRES"}, "geometry": {"type": "Point", "coordinates": [2.3543378093062266, 48.82594416528597]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8ff06b132150756161484dc3cb9814abe7533f18", "fields": {"departement": "75", "stop_lat": 48.8257468937481, "code_postal": "75113", "stop_lon": 2.350785011480723, "coord": [48.8257468937481, 2.350785011480723], "stop_id": 3893494, "stop_desc": "191 RUE DE TOLBIAC - 75113", "stop_name": "BOBILLOT - TOLBIAC"}, "geometry": {"type": "Point", "coordinates": [2.350785011480723, 48.8257468937481]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "61198160a9427e6b6f79cc94e065e272bd469d1c", "fields": {"departement": "75", "stop_lat": 48.827419356718764, "code_postal": "75114", "stop_lon": 2.335770924237383, "coord": [48.827419356718764, 2.335770924237383], "stop_id": 3893498, "stop_desc": "4 RUE D'ALESIA - 75114", "stop_name": "RENE COTY"}, "geometry": {"type": "Point", "coordinates": [2.335770924237383, 48.827419356718764]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0a819df8a66bb1335c90134f641d09400302837c", "fields": {"departement": "75", "stop_lat": 48.82794026364181, "code_postal": "75114", "stop_lon": 2.3276714251828756, "coord": [48.82794026364181, 2.3276714251828756], "stop_id": 3893502, "stop_desc": "54 RUE D'ALESIA - 75114", "stop_name": "ALESIA - GENERAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.3276714251828756, 48.82794026364181]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "35e0ec9580184da94e9c85f9bb9db9fc0b785e0c", "fields": {"departement": "75", "stop_lat": 48.82776048971546, "code_postal": "75114", "stop_lon": 2.327412820279018, "coord": [48.82776048971546, 2.327412820279018], "stop_id": 3893503, "stop_desc": "81 RUE D'ALESIA - 75114", "stop_name": "ALESIA - GENERAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.327412820279018, 48.82776048971546]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8fc1bf69d0ba3b06ad62b166eba804093ddced3d", "fields": {"departement": "75", "stop_lat": 48.82823669626762, "code_postal": "75114", "stop_lon": 2.3258608871652875, "coord": [48.82823669626762, 2.3258608871652875], "stop_id": 3893504, "stop_desc": "66-68 RUE D'ALESIA - 75114", "stop_name": "ALESIA - JEAN MOULIN"}, "geometry": {"type": "Point", "coordinates": [2.3258608871652875, 48.82823669626762]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a972e4481aa7917ba671ed5b7dea02b1e566a401", "fields": {"departement": "75", "stop_lat": 48.82799403130306, "code_postal": "75114", "stop_lon": 2.325874553028079, "coord": [48.82799403130306, 2.325874553028079], "stop_id": 3893505, "stop_desc": "91 RUE D'ALESIA - 75114", "stop_name": "ALESIA - JEAN MOULIN"}, "geometry": {"type": "Point", "coordinates": [2.325874553028079, 48.82799403130306]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "16d960ddcf61eda20327808a07a038caa5b80c23", "fields": {"departement": "75", "stop_lat": 48.83084218687325, "code_postal": "75114", "stop_lon": 2.3185635649772385, "coord": [48.83084218687325, 2.3185635649772385], "stop_id": 3893508, "stop_desc": "FACE 165 RUE D'ALESIA - 75114", "stop_name": "ALESIA - DIDOT"}, "geometry": {"type": "Point", "coordinates": [2.3185635649772385, 48.83084218687325]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "696e1fb0d1893ddad12b42cb0f11ad1ba71e0df4", "fields": {"departement": "75", "stop_lat": 48.831982776060656, "code_postal": "75114", "stop_lon": 2.313825607667822, "coord": [48.831982776060656, 2.313825607667822], "stop_id": 3893510, "stop_desc": "172 RUE D'ALESIA - 75114", "stop_name": "PLAISANCE - HOPITAL SAINT-JOSEPH"}, "geometry": {"type": "Point", "coordinates": [2.313825607667822, 48.831982776060656]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "034d2297effb489ab35b21e1593f633397b954db", "fields": {"departement": "75", "stop_lat": 48.83364431656356, "code_postal": "75115", "stop_lon": 2.308501753949005, "coord": [48.83364431656356, 2.308501753949005], "stop_id": 3893515, "stop_desc": "62 RUE DE VOUILLE - 75115", "stop_name": "LABROUSTE"}, "geometry": {"type": "Point", "coordinates": [2.308501753949005, 48.83364431656356]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e993d0c8f19f9acb4a35465f7c6513a4f2b74bed", "fields": {"departement": "75", "stop_lat": 48.83700225226864, "code_postal": "75115", "stop_lon": 2.296736570165904, "coord": [48.83700225226864, 2.296736570165904], "stop_id": 3893521, "stop_desc": "200-202 RUE DE LA CONVENTION - 75115", "stop_name": "CONVENTION - VAUGIRARD"}, "geometry": {"type": "Point", "coordinates": [2.296736570165904, 48.83700225226864]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6511db38790a4db3fc37d8c598988f9b99622f20", "fields": {"departement": "75", "stop_lat": 48.84085467640056, "code_postal": "75115", "stop_lon": 2.288128269158041, "coord": [48.84085467640056, 2.288128269158041], "stop_id": 3893525, "stop_desc": "114 RUE DE LA CONVENTION - 75115", "stop_name": "FELIX FAURE"}, "geometry": {"type": "Point", "coordinates": [2.288128269158041, 48.84085467640056]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2230611cb7a2f3f129c3d0a15dd84067aaa709e8", "fields": {"departement": "75", "stop_lat": 48.837880299347574, "code_postal": "75116", "stop_lon": 2.256176232036295, "coord": [48.837880299347574, 2.256176232036295], "stop_id": 3893541, "stop_desc": "PLACE DE LA PORTE SAINT CLOUD - 75116", "stop_name": "PORTE DE SAINT-CLOUD"}, "geometry": {"type": "Point", "coordinates": [2.256176232036295, 48.837880299347574]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "786b45cec6325afad6b5a238eb728b6b944f4881", "fields": {"departement": "75", "stop_lat": 48.840928669528076, "code_postal": "75116", "stop_lon": 2.258540651016587, "coord": [48.840928669528076, 2.258540651016587], "stop_id": 3893543, "stop_desc": "89 RUE MICHEL ANGE - 75116", "stop_name": "MICHEL-ANGE - VARIZE"}, "geometry": {"type": "Point", "coordinates": [2.258540651016587, 48.840928669528076]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7ca2e7cad2aff523702e2eb5fc5f8e6e737bf289", "fields": {"departement": "75", "stop_lat": 48.843437462530694, "code_postal": "75116", "stop_lon": 2.260484025680082, "coord": [48.843437462530694, 2.260484025680082], "stop_id": 3893544, "stop_desc": "65 RUE MICHEL ANGE - 75116", "stop_name": "EXELMANS"}, "geometry": {"type": "Point", "coordinates": [2.260484025680082, 48.843437462530694]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5c55e59def4e280dfbdf5557c3798761e6392db1", "fields": {"departement": "93", "stop_lat": 48.91555906776703, "code_postal": "93001", "stop_lon": 2.3808340683950466, "coord": [48.91555906776703, 2.3808340683950466], "stop_id": 3908816, "stop_desc": "8 AV DU PRESIDENT ROOSEVELT - 93001", "stop_name": "MAIRIE D'AUBERVILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.3808340683950466, 48.91555906776703]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "18da97d6712aaaeabc9f2f92f8c0addc04a01afc", "fields": {"departement": "93", "stop_lat": 48.90706163028774, "code_postal": "93001", "stop_lon": 2.3668390863978126, "coord": [48.90706163028774, 2.3668390863978126], "stop_id": 3908821, "stop_desc": "0 R WALDECK ROCHET - 93001", "stop_name": "FRONT POPULAIRE-GARDINOUX"}, "geometry": {"type": "Point", "coordinates": [2.3668390863978126, 48.90706163028774]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f56802175a694c6994052aa20a4ef7c884a09246", "fields": {"departement": "93", "stop_lat": 48.90654993584481, "code_postal": "93066", "stop_lon": 2.3644529786614665, "coord": [48.90654993584481, 2.3644529786614665], "stop_id": 3908823, "stop_desc": "AV GEORGE SAND - 93066", "stop_name": "FRONT POPULAIRE-PROUDHON"}, "geometry": {"type": "Point", "coordinates": [2.3644529786614665, 48.90654993584481]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "acf777b25e943c3c15224266183e3328b81835cb", "fields": {"departement": "92", "stop_lat": 48.78901890772784, "code_postal": "92032", "stop_lon": 2.280287920737367, "coord": [48.78901890772784, 2.280287920737367], "stop_id": 3909005, "stop_desc": "1-3 R DE BELLEVUE - 92032", "stop_name": "BELLEVUE - VILDE"}, "geometry": {"type": "Point", "coordinates": [2.280287920737367, 48.78901890772784]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8fb370a3475946406eb8cb14566c7aa08bf30ad3", "fields": {"departement": "92", "stop_lat": 48.784157072461696, "code_postal": "92032", "stop_lon": 2.281639762480135, "coord": [48.784157072461696, 2.281639762480135], "stop_id": 3909008, "stop_desc": "76 R D'ESTIENNE D'ORVES - 92032", "stop_name": "PIERRE BONNARD"}, "geometry": {"type": "Point", "coordinates": [2.281639762480135, 48.784157072461696]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ebf8045c707f116607108a04fc3bb9ad1565f6a4", "fields": {"departement": "92", "stop_lat": 48.78940168904218, "code_postal": "92032", "stop_lon": 2.292679359839008, "coord": [48.78940168904218, 2.292679359839008], "stop_id": 3909011, "stop_desc": "FACE 44 AVENUE LOMBART - 92032", "stop_name": "CHATEAU SAINTE-BARBE"}, "geometry": {"type": "Point", "coordinates": [2.292679359839008, 48.78940168904218]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8f31789c4775f5ad05063767e1f925f1c1e3abc0", "fields": {"departement": "92", "stop_lat": 48.81391095719406, "code_postal": "92023", "stop_lon": 2.2720136091014633, "coord": [48.81391095719406, 2.2720136091014633], "stop_id": 3909030, "stop_desc": "RUE DE FLEURY - 92023", "stop_name": "GARE DE CLAMART"}, "geometry": {"type": "Point", "coordinates": [2.2720136091014633, 48.81391095719406]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fdc43b1847e2a95d40ea17fa4fa5fc5ebb098ab3", "fields": {"departement": "92", "stop_lat": 48.81153343598869, "code_postal": "92023", "stop_lon": 2.2638516282691494, "coord": [48.81153343598869, 2.2638516282691494], "stop_id": 3909033, "stop_desc": "FACE 75 R CONDORCET - 92023", "stop_name": "GYMNASE CONDORCET"}, "geometry": {"type": "Point", "coordinates": [2.2638516282691494, 48.81153343598869]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ccc4ce4951f6130e26448648afaf75a6f5ead4b3", "fields": {"departement": "92", "stop_lat": 48.81173960547065, "code_postal": "92023", "stop_lon": 2.2629667949093544, "coord": [48.81173960547065, 2.2629667949093544], "stop_id": 3909034, "stop_desc": "81 R CONDORCET - 92023", "stop_name": "GYMNASE CONDORCET"}, "geometry": {"type": "Point", "coordinates": [2.2629667949093544, 48.81173960547065]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8498e38e41e1460ac250ae1de419a777432395d1", "fields": {"departement": "92", "stop_lat": 48.81148493414833, "code_postal": "92023", "stop_lon": 2.2582859145650356, "coord": [48.81148493414833, 2.2582859145650356], "stop_id": 3909038, "stop_desc": "90 AVENUE HENRI BARBUSSE - 92023", "stop_name": "FLEURY"}, "geometry": {"type": "Point", "coordinates": [2.2582859145650356, 48.81148493414833]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dbaad1f5e10fa1cb02aeaf51a4f6640352b73e60", "fields": {"departement": "94", "stop_lat": 48.80980304722781, "code_postal": "94003", "stop_lon": 2.3273617927425523, "coord": [48.80980304722781, 2.3273617927425523], "stop_id": 3755020, "stop_desc": "AV LAPLACE - 94003", "stop_name": "VACHE NOIRE - CENTRE COMMERCIAL"}, "geometry": {"type": "Point", "coordinates": [2.3273617927425523, 48.80980304722781]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0a45a3cfa50e80a4215fea23aace4045e6f3c2c1", "fields": {"departement": "94", "stop_lat": 48.810864014533315, "code_postal": "94003", "stop_lon": 2.3375132336532727, "coord": [48.810864014533315, 2.3375132336532727], "stop_id": 3755023, "stop_desc": "FACE 111 AVENUE JEAN JAURES - 94003", "stop_name": "BENOIT MALON"}, "geometry": {"type": "Point", "coordinates": [2.3375132336532727, 48.810864014533315]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a48ad22c9ca3dd38e99266b2918badeb05db050c", "fields": {"departement": "91", "stop_lat": 48.72476050436811, "code_postal": "91377", "stop_lon": 2.2605233770372464, "coord": [48.72476050436811, 2.2605233770372464], "stop_id": 3757174, "stop_desc": "R CARNOT - 91377", "stop_name": "MASSY-PALAISEAU-RER"}, "geometry": {"type": "Point", "coordinates": [2.2605233770372464, 48.72476050436811]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "920ff6a683bca3f8fb61cad40cd42655aa8ec95e", "fields": {"departement": "91", "stop_lat": 48.71258187397343, "code_postal": "91477", "stop_lon": 2.261573604137755, "coord": [48.71258187397343, 2.261573604137755], "stop_id": 3757183, "stop_desc": "104 AVENUE DE STALINGRAD - 91477", "stop_name": "PIERRE CURIE"}, "geometry": {"type": "Point", "coordinates": [2.261573604137755, 48.71258187397343]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "83201b350d9e6ec33887a26f4aa469af913e5fac", "fields": {"departement": "91", "stop_lat": 48.70870593005485, "code_postal": "91136", "stop_lon": 2.2736395084075736, "coord": [48.70870593005485, 2.2736395084075736], "stop_id": 3757190, "stop_desc": "6 RUE DE LA MAIRIE - 91136", "stop_name": "MAIRIE DE CHAMPLAN"}, "geometry": {"type": "Point", "coordinates": [2.2736395084075736, 48.70870593005485]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "07b0456a95156b8cc5e0b7db161a55c75e4e4327", "fields": {"departement": "91", "stop_lat": 48.697461215948486, "code_postal": "91345", "stop_lon": 2.293328419636158, "coord": [48.697461215948486, 2.293328419636158], "stop_id": 3757195, "stop_desc": "FACE 2 RUE MICHEL VINCENT - 91345", "stop_name": "PLACE CHARLES STEBER"}, "geometry": {"type": "Point", "coordinates": [2.293328419636158, 48.697461215948486]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1774e3e28acf20d91433ebd85184251e9d022e31", "fields": {"departement": "91", "stop_lat": 48.72476050436811, "code_postal": "91377", "stop_lon": 2.2605233770372464, "coord": [48.72476050436811, 2.2605233770372464], "stop_id": 3757202, "stop_desc": "R CARNOT - 91377", "stop_name": "MASSY-PALAISEAU-RER"}, "geometry": {"type": "Point", "coordinates": [2.2605233770372464, 48.72476050436811]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7167cb42eb166d5a8ac5057fe4fac10b11b05ef9", "fields": {"departement": "91", "stop_lat": 48.71720114381044, "code_postal": "91477", "stop_lon": 2.260344358801258, "coord": [48.71720114381044, 2.260344358801258], "stop_id": 3757207, "stop_desc": "29 AVENUE DES COSMONAUTES - 91477", "stop_name": "COSMONAUTES-FLAUBERT"}, "geometry": {"type": "Point", "coordinates": [2.260344358801258, 48.71720114381044]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c9dd030bc179df82037f4bf1570e5f879e0ccce8", "fields": {"departement": "91", "stop_lat": 48.71467427546075, "code_postal": "91477", "stop_lon": 2.2586366447284165, "coord": [48.71467427546075, 2.2586366447284165], "stop_id": 3757209, "stop_desc": "FACE 2 AVENUE DES COSMONAUTES - 91477", "stop_name": "COSMONAUTES-STALINGRAD"}, "geometry": {"type": "Point", "coordinates": [2.2586366447284165, 48.71467427546075]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "02ec9065055da2f7edb6addef6475d2cfaf0ec1a", "fields": {"departement": "91", "stop_lat": 48.70892852105778, "code_postal": "91136", "stop_lon": 2.269795689400011, "coord": [48.70892852105778, 2.269795689400011], "stop_id": 3757215, "stop_desc": "169 ROUTE DE VERSAILLES - 91136", "stop_name": "LA FONTAINE"}, "geometry": {"type": "Point", "coordinates": [2.269795689400011, 48.70892852105778]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d361b5e68e733b38d96f2911b3cedcc49182bc2f", "fields": {"departement": "91", "stop_lat": 48.697461215948486, "code_postal": "91345", "stop_lon": 2.293328419636158, "coord": [48.697461215948486, 2.293328419636158], "stop_id": 3757223, "stop_desc": "FACE 2 RUE MICHEL VINCENT - 91345", "stop_name": "PLACE CHARLES STEBER"}, "geometry": {"type": "Point", "coordinates": [2.293328419636158, 48.697461215948486]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "22e23eff0b78fb10324e84b8193ca8044a76916e", "fields": {"departement": "91", "stop_lat": 48.69625528152623, "code_postal": "91345", "stop_lon": 2.2895275620689732, "coord": [48.69625528152623, 2.2895275620689732], "stop_id": 3757226, "stop_desc": "RUE DU CANAL - 91345", "stop_name": "CANAL DE L'YVETTE"}, "geometry": {"type": "Point", "coordinates": [2.2895275620689732, 48.69625528152623]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e7a740d1f0e9fa097af5eb39f3eb7ae51ba9e6dc", "fields": {"departement": "91", "stop_lat": 48.69159932736135, "code_postal": "91345", "stop_lon": 2.2898576780678925, "coord": [48.69159932736135, 2.2898576780678925], "stop_id": 3757227, "stop_desc": "RUE DU PRESIDENT FRANCOIS MITTERRAND - 91345", "stop_name": "HOPITAL DE LONGJUMEAU"}, "geometry": {"type": "Point", "coordinates": [2.2898576780678925, 48.69159932736135]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "beaa507fa02a24e5a559695afac54b1f17c8f015", "fields": {"departement": "91", "stop_lat": 48.689099771882155, "code_postal": "91345", "stop_lon": 2.288081464412264, "coord": [48.689099771882155, 2.288081464412264], "stop_id": 3757229, "stop_desc": "RUE DU PRESIDENT FRAN\u00c7OIS MITTERRAND - 91345", "stop_name": "LES ARCADES"}, "geometry": {"type": "Point", "coordinates": [2.288081464412264, 48.689099771882155]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "41ee8bddf330d2d543e30ad44b08330beff80afd", "fields": {"departement": "91", "stop_lat": 48.68939654734807, "code_postal": "91345", "stop_lon": 2.2884477451160876, "coord": [48.68939654734807, 2.2884477451160876], "stop_id": 3757230, "stop_desc": "163 RUE DU PRESIDENT FRAN\u00c7OIS MITTERRAND - 91345", "stop_name": "LES ARCADES"}, "geometry": {"type": "Point", "coordinates": [2.2884477451160876, 48.68939654734807]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "62bb5008fab6c5b5ecd8fc2709c89e07fdb57657", "fields": {"departement": "91", "stop_lat": 48.68798516647997, "code_postal": "91345", "stop_lon": 2.2880417896353276, "coord": [48.68798516647997, 2.2880417896353276], "stop_id": 3757231, "stop_desc": "2 BOULEVARD DU DOCTEUR CATHELIN - 91345", "stop_name": "DOCTEUR CATHELIN"}, "geometry": {"type": "Point", "coordinates": [2.2880417896353276, 48.68798516647997]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a4342f86fdadf46b263030b4ba6579bd24a25b8d", "fields": {"departement": "91", "stop_lat": 48.727054428485005, "code_postal": "91377", "stop_lon": 2.2635089502996615, "coord": [48.727054428485005, 2.2635089502996615], "stop_id": 3759049, "stop_desc": "34 AVENUE CARNOT - 91377", "stop_name": "CHEMIN DES FEMMES"}, "geometry": {"type": "Point", "coordinates": [2.2635089502996615, 48.727054428485005]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5d6e502b4230c797ba3f9fe9a69dd341eec2401c", "fields": {"departement": "91", "stop_lat": 48.72738439469209, "code_postal": "91377", "stop_lon": 2.274635627883543, "coord": [48.72738439469209, 2.274635627883543], "stop_id": 3759054, "stop_desc": "AVENUE DE L'EUROPE - 91377", "stop_name": "8 MAI 1945"}, "geometry": {"type": "Point", "coordinates": [2.274635627883543, 48.72738439469209]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "587b839f2f13662f83cf5d83b51a0863bdd51003", "fields": {"departement": "91", "stop_lat": 48.707425732597464, "code_postal": "91689", "stop_lon": 2.3110432656858193, "coord": [48.707425732597464, 2.3110432656858193], "stop_id": 3759064, "stop_desc": "FACE 62 AVENUE MAZARIN - 91689", "stop_name": "CIMETIERE DE CHILLY-MAZARIN"}, "geometry": {"type": "Point", "coordinates": [2.3110432656858193, 48.707425732597464]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "058cc98c55e08074aa2f98653bb444c2367328c8", "fields": {"departement": "91", "stop_lat": 48.706042051347254, "code_postal": "91161", "stop_lon": 2.3136514533219743, "coord": [48.706042051347254, 2.3136514533219743], "stop_id": 3759067, "stop_desc": "32 AVENUE MAZARIN - 91161", "stop_name": "COLLEGE DE CHILLY-MAZARIN"}, "geometry": {"type": "Point", "coordinates": [2.3136514533219743, 48.706042051347254]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5d3c3114002ced20226d73b7d03dae2a687c3770", "fields": {"departement": "91", "stop_lat": 48.70424493000524, "code_postal": "91161", "stop_lon": 2.316775717016181, "coord": [48.70424493000524, 2.316775717016181], "stop_id": 3759068, "stop_desc": "37 AVENUE MAZARIN - 91161", "stop_name": "BEAUREGARD"}, "geometry": {"type": "Point", "coordinates": [2.316775717016181, 48.70424493000524]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c2af2a33ad61071055f6aae6c9fce3ea0c3dd9b0", "fields": {"departement": "91", "stop_lat": 48.70274441181845, "code_postal": "91161", "stop_lon": 2.320361379742285, "coord": [48.70274441181845, 2.320361379742285], "stop_id": 3759072, "stop_desc": "FACE 5 AVENUE MAZARIN - 91161", "stop_name": "PLACE DE LA LIBERATION"}, "geometry": {"type": "Point", "coordinates": [2.320361379742285, 48.70274441181845]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0de139247e2c8232d9d9909b6330d2c817e14d93", "fields": {"departement": "91", "stop_lat": 48.705297980719955, "code_postal": "91432", "stop_lon": 2.34662520882401, "coord": [48.705297980719955, 2.34662520882401], "stop_id": 3759085, "stop_desc": "FACE 89 AVENUE CHARLES DE GAULLE - 91432", "stop_name": "RUE DE LA PAIX"}, "geometry": {"type": "Point", "coordinates": [2.34662520882401, 48.705297980719955]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3960f7e843db17f119b274c5149f7174a64a5518", "fields": {"departement": "91", "stop_lat": 48.70573426494945, "code_postal": "91027", "stop_lon": 2.3700246603246247, "coord": [48.70573426494945, 2.3700246603246247], "stop_id": 3759090, "stop_desc": "5 AV DE MORANGIS - 91027", "stop_name": "BELLE ETOILE"}, "geometry": {"type": "Point", "coordinates": [2.3700246603246247, 48.70573426494945]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0b18b4808831b5e70169853076bc6ff8956d2727", "fields": {"departement": "91", "stop_lat": 48.705836684388174, "code_postal": "91027", "stop_lon": 2.385900478442477, "coord": [48.705836684388174, 2.385900478442477], "stop_id": 3759096, "stop_desc": "1 AVENUE ARISTIDE BRIAND - 91027", "stop_name": "CENTRE ADMINISTRATIF"}, "geometry": {"type": "Point", "coordinates": [2.385900478442477, 48.705836684388174]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e450f7762b68ae08d5712cef7030b49c80c47aa6", "fields": {"departement": "91", "stop_lat": 48.702096796240035, "code_postal": "91027", "stop_lon": 2.3874993801835265, "coord": [48.702096796240035, 2.3874993801835265], "stop_id": 3759102, "stop_desc": "102 AVENUE DU 18 AVRIL - 91027", "stop_name": "CITE MOZART"}, "geometry": {"type": "Point", "coordinates": [2.3874993801835265, 48.702096796240035]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0fedb18fdec701cb24c1ab06e616ec9d1b2909eb", "fields": {"departement": "92", "stop_lat": 48.911915613341925, "code_postal": "92024", "stop_lon": 2.3119215159894906, "coord": [48.911915613341925, 2.3119215159894906], "stop_id": 5081733, "stop_desc": "AVENUE DU PONT DE GENNEVILLIERS - 92024", "stop_name": "QUAI DE CLICHY"}, "geometry": {"type": "Point", "coordinates": [2.3119215159894906, 48.911915613341925]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0dbaa0ed2ff518222127b27d5ac9b79caa0e3e23", "fields": {"departement": "92", "stop_lat": 48.91697459008546, "code_postal": "92004", "stop_lon": 2.3087827677358304, "coord": [48.91697459008546, 2.3087827677358304], "stop_id": 5081735, "stop_desc": "AVENUE LAURENT CELY - 92004", "stop_name": "PIERRE BOUDOU"}, "geometry": {"type": "Point", "coordinates": [2.3087827677358304, 48.91697459008546]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b57af220e023ffd88e4f49e8221c82e810e2326d", "fields": {"departement": "92", "stop_lat": 48.927325994280196, "code_postal": "92036", "stop_lon": 2.302857881059681, "coord": [48.927325994280196, 2.302857881059681], "stop_id": 5081742, "stop_desc": "AVENUE LAURENT CELY - 92036", "stop_name": "PARC DES SEVINES"}, "geometry": {"type": "Point", "coordinates": [2.302857881059681, 48.927325994280196]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c05cf51683be564b6b245a2426ab502172357927", "fields": {"departement": "92", "stop_lat": 48.939881018424195, "code_postal": "92036", "stop_lon": 2.304186457509024, "coord": [48.939881018424195, 2.304186457509024], "stop_id": 5081749, "stop_desc": "AVENUE MARCEL PAUL - 92036", "stop_name": "ROUTE DU PORT"}, "geometry": {"type": "Point", "coordinates": [2.304186457509024, 48.939881018424195]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "44a83930ce48caebad5349d213f0e1d7d63d7050", "fields": {"departement": "92", "stop_lat": 48.94662128647738, "code_postal": "92036", "stop_lon": 2.304823410121321, "coord": [48.94662128647738, 2.304823410121321], "stop_id": 5081753, "stop_desc": "FACE 139 AVENUE MARCEL PAUL - 92036", "stop_name": "DEQUEVAUVILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.304823410121321, 48.94662128647738]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b8c783d54316fa22d5a86785bbb769ed78a8e2e9", "fields": {"departement": "93", "stop_lat": 48.95020746179774, "code_postal": "93039", "stop_lon": 2.3065676888040505, "coord": [48.95020746179774, 2.3065676888040505], "stop_id": 5081756, "stop_desc": "AVENUE DU PONT D'EPINAY - 93039", "stop_name": "PONT D'EPINAY"}, "geometry": {"type": "Point", "coordinates": [2.3065676888040505, 48.95020746179774]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8ca1a9b5c8a5f1f18813de7df2ec6c27d2cc2734", "fields": {"departement": "95", "stop_lat": 49.00539905143459, "code_postal": "95680", "stop_lon": 2.4002240243373523, "coord": [49.00539905143459, 2.4002240243373523], "stop_id": 5726591, "stop_desc": "FACE 12 AVENUE DU 8 MAI 1945 - 95680", "stop_name": "PLACE BERLIOZ"}, "geometry": {"type": "Point", "coordinates": [2.4002240243373523, 49.00539905143459]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e2dac8c87827cae53b19d3cb6e40f5380ba8467f", "fields": {"departement": "95", "stop_lat": 49.00280991519116, "code_postal": "95680", "stop_lon": 2.402228687553973, "coord": [49.00280991519116, 2.402228687553973], "stop_id": 5726598, "stop_desc": "AVENUE PIERRE SEMARD - 95680", "stop_name": "PIERRE SEMARD"}, "geometry": {"type": "Point", "coordinates": [2.402228687553973, 49.00280991519116]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "53a3b08d453a39d223fc9071041d73e1eb561f46", "fields": {"departement": "95", "stop_lat": 48.998794668395874, "code_postal": "95680", "stop_lon": 2.414542755640942, "coord": [48.998794668395874, 2.414542755640942], "stop_id": 5726606, "stop_desc": "6 AVENUE DE LA CONCORDE - 95680", "stop_name": "LES CARREAUX"}, "geometry": {"type": "Point", "coordinates": [2.414542755640942, 48.998794668395874]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ef1e636c0e0496445e398a82793d594747dcf49d", "fields": {"departement": "95", "stop_lat": 48.99465090332859, "code_postal": "95019", "stop_lon": 2.416134369205257, "coord": [48.99465090332859, 2.416134369205257], "stop_id": 5726610, "stop_desc": "PLACE DU GENERAL LECLERC - 95019", "stop_name": "VILLIERS LE BEL - GONESSE - ARNOUVILLE RER"}, "geometry": {"type": "Point", "coordinates": [2.416134369205257, 48.99465090332859]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "88cdad6fe936f321579d6ac7e142b359550fa425", "fields": {"departement": "95", "stop_lat": 49.0087766464134, "code_postal": "95680", "stop_lon": 2.3832758453998397, "coord": [49.0087766464134, 2.3832758453998397], "stop_id": 5726613, "stop_desc": "65 RUE DE PARIS - 95680", "stop_name": "L'ESPERANCE"}, "geometry": {"type": "Point", "coordinates": [2.3832758453998397, 49.0087766464134]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "717f0c2fd020104e3d73fa916a34c2b481dcbc94", "fields": {"departement": "75", "stop_lat": 48.85902811573952, "code_postal": "75101", "stop_lon": 2.3469390263467473, "coord": [48.85902811573952, 2.3469390263467473], "stop_id": 5727628, "stop_desc": "108 RUE DE RIVOLI - 75101", "stop_name": "CHATELET"}, "geometry": {"type": "Point", "coordinates": [2.3469390263467473, 48.85902811573952]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "84394f8da7462583fc048a031f8f357cbb21c197", "fields": {"departement": "75", "stop_lat": 48.8598461517609, "code_postal": "75101", "stop_lon": 2.344364818985878, "coord": [48.8598461517609, 2.344364818985878], "stop_id": 5727629, "stop_desc": "128 RUE DE RIVOLI - 75101", "stop_name": "RIVOLI - PONT NEUF"}, "geometry": {"type": "Point", "coordinates": [2.344364818985878, 48.8598461517609]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b6b37c333afe85b36fcb9634da880cee43c15cb9", "fields": {"departement": "75", "stop_lat": 48.865516960040004, "code_postal": "75101", "stop_lon": 2.326942492564363, "coord": [48.865516960040004, 2.326942492564363], "stop_id": 5727633, "stop_desc": "234 RUE DE RIVOLI - 75101", "stop_name": "CASTIGLIONE"}, "geometry": {"type": "Point", "coordinates": [2.326942492564363, 48.865516960040004]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "48f984f3c5df217cb2fbf133a635c0bc85a59228", "fields": {"departement": "75", "stop_lat": 48.86288585730515, "code_postal": "75116", "stop_lon": 2.2957355812934135, "coord": [48.86288585730515, 2.2957355812934135], "stop_id": 5727643, "stop_desc": "FACE 30 AVENUE DE NEW YORK - 75116", "stop_name": "MUSEE D'ART MODERNE - PALAIS DE TOKYO"}, "geometry": {"type": "Point", "coordinates": [2.2957355812934135, 48.86288585730515]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b7bd3a034c913bd0ba30cb39eb22a95c57f3e72d", "fields": {"departement": "75", "stop_lat": 48.85633034883181, "code_postal": "75116", "stop_lon": 2.286247666673078, "coord": [48.85633034883181, 2.286247666673078], "stop_id": 5727648, "stop_desc": "FACE 16 AVENUE DU PRESIDENT KENNEDY - 75116", "stop_name": "PONT DE BIR-HAKEIM"}, "geometry": {"type": "Point", "coordinates": [2.286247666673078, 48.85633034883181]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5f580f3d50b2663c957578eb96896c104059d90f", "fields": {"departement": "75", "stop_lat": 48.850961087388356, "code_postal": "75116", "stop_lon": 2.2781362470491286, "coord": [48.850961087388356, 2.2781362470491286], "stop_id": 5727662, "stop_desc": "7 AVENUE DE VERSAILLES - 75116", "stop_name": "RADIO FRANCE - PONT DE GRENELLE"}, "geometry": {"type": "Point", "coordinates": [2.2781362470491286, 48.850961087388356]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3a52f16d24f60f173e82f058b0a811b9345d4a13", "fields": {"departement": "75", "stop_lat": 48.83920477695226, "code_postal": "75116", "stop_lon": 2.2611846812238183, "coord": [48.83920477695226, 2.2611846812238183], "stop_id": 5727674, "stop_desc": "186 AVENUE DE VERSAILLES - 75116", "stop_name": "VERSAILLES - CHARDON LAGACHE"}, "geometry": {"type": "Point", "coordinates": [2.2611846812238183, 48.83920477695226]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c5de81c0cb4ee7922d801d66713670f67a81d460", "fields": {"departement": "75", "stop_lat": 48.837127452662195, "code_postal": "75116", "stop_lon": 2.2593360874504773, "coord": [48.837127452662195, 2.2593360874504773], "stop_id": 5727677, "stop_desc": "124 BOULEVARD MURAT - 75116", "stop_name": "PORTE DE SAINT-CLOUD - MURAT"}, "geometry": {"type": "Point", "coordinates": [2.2593360874504773, 48.837127452662195]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "927e9a336a6e3b9c074261ac33ce21cc55bc9a8a", "fields": {"departement": "92", "stop_lat": 48.839221354432034, "code_postal": "92012", "stop_lon": 2.2463709430281624, "coord": [48.839221354432034, 2.2463709430281624], "stop_id": 5727682, "stop_desc": "36 ROUTE DE LA REINE - 92012", "stop_name": "VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.2463709430281624, 48.839221354432034]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "efc4e9f2fe07ef8f134755a9793969bd5c110b98", "fields": {"departement": "92", "stop_lat": 48.839853822447424, "code_postal": "92012", "stop_lon": 2.2392488167263207, "coord": [48.839853822447424, 2.2392488167263207], "stop_id": 5727684, "stop_desc": "84-86 ROUTE DE LA REINE - 92012", "stop_name": "ROUTE DE LA REINE - JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.2392488167263207, 48.839853822447424]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c49c93d91e07759946127a2c65d8d4ccf74353f1", "fields": {"departement": "92", "stop_lat": 48.84109238684097, "code_postal": "92012", "stop_lon": 2.2270056560618907, "coord": [48.84109238684097, 2.2270056560618907], "stop_id": 5727690, "stop_desc": "12-14 AV DU MARECHAL DE LATTRE DE TASSIGNY - 92012", "stop_name": "PONT DE SAINT-CLOUD - ALBERT KAHN"}, "geometry": {"type": "Point", "coordinates": [2.2270056560618907, 48.84109238684097]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7e5b59903a49bb51ffa944f4884cf70a6903adec", "fields": {"departement": "92", "stop_lat": 48.84092591926018, "code_postal": "92064", "stop_lon": 2.222049786002583, "coord": [48.84092591926018, 2.222049786002583], "stop_id": 5727694, "stop_desc": "QUAI DU MARECHAL JUIN - 92064", "stop_name": "PONT DE SAINT-CLOUD - RIVE GAUCHE"}, "geometry": {"type": "Point", "coordinates": [2.222049786002583, 48.84092591926018]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "115f0769814cec60b9287d7bc40f75f312c91e8e", "fields": {"departement": "75", "stop_lat": 48.862110639738226, "code_postal": "75101", "stop_lon": 2.3258125813412875, "coord": [48.862110639738226, 2.3258125813412875], "stop_id": 5727697, "stop_desc": "QUAI DES TUILERIES - 75101", "stop_name": "PONT DE SOLFERINO - QUAI DES TUILERIES"}, "geometry": {"type": "Point", "coordinates": [2.3258125813412875, 48.862110639738226]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b9ff99a0bde247b60045c5596326e29d168ac6da", "fields": {"departement": "75", "stop_lat": 48.857014888715405, "code_postal": "75104", "stop_lon": 2.347469838537296, "coord": [48.857014888715405, 2.347469838537296], "stop_id": 5727702, "stop_desc": "FACE 16 QUAI DE GESVRES - 75104", "stop_name": "CHATELET"}, "geometry": {"type": "Point", "coordinates": [2.347469838537296, 48.857014888715405]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2b09897985765acf4a2abf54411971b3a58f0a1b", "fields": {"departement": "77", "stop_lat": 48.95367143481529, "code_postal": "77294", "stop_lon": 2.603249680411181, "coord": [48.95367143481529, 2.603249680411181], "stop_id": 5747132, "stop_desc": "PISTE GARE ROUTIERE - 77294", "stop_name": "VILLEPARISIS - MITRY-LE-NEUF RER"}, "geometry": {"type": "Point", "coordinates": [2.603249680411181, 48.95367143481529]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "96c0009fcb67cf7af2e3766b3ebb0067eba1fb98", "fields": {"departement": "77", "stop_lat": 48.95367143481529, "code_postal": "77294", "stop_lon": 2.603249680411181, "coord": [48.95367143481529, 2.603249680411181], "stop_id": 5747133, "stop_desc": "PISTE GARE ROUTIERE - 77294", "stop_name": "VILLEPARISIS - MITRY-LE-NEUF RER"}, "geometry": {"type": "Point", "coordinates": [2.603249680411181, 48.95367143481529]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e80e022d1a9adff6b103a8d0b53ab06b58a2e01a", "fields": {"departement": "93", "stop_lat": 48.94966631220331, "code_postal": "93073", "stop_lon": 2.5763627723332467, "coord": [48.94966631220331, 2.5763627723332467], "stop_id": 5747137, "stop_desc": "AVENUE GILBERT BERGER - 93073", "stop_name": "CITE DES DOUANIERS"}, "geometry": {"type": "Point", "coordinates": [2.5763627723332467, 48.94966631220331]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eb2c98b011be1ea598ee77374e15212d344f5f74", "fields": {"departement": "93", "stop_lat": 48.93434123243314, "code_postal": "93074", "stop_lon": 2.563838133466493, "coord": [48.93434123243314, 2.563838133466493], "stop_id": 5747140, "stop_desc": "FACE 34 RUE DE MEAUX - 93074", "stop_name": "BRAZZA"}, "geometry": {"type": "Point", "coordinates": [2.563838133466493, 48.93434123243314]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b3fdfb6ac13f7a3b579558c7e41ded58b0b807c9", "fields": {"departement": "93", "stop_lat": 48.932807035186705, "code_postal": "93071", "stop_lon": 2.5372739629987113, "coord": [48.932807035186705, 2.5372739629987113], "stop_id": 5747146, "stop_desc": "FACE 38 AVENUE DE LIVRY - 93071", "stop_name": "LOUIS MENARD"}, "geometry": {"type": "Point", "coordinates": [2.5372739629987113, 48.932807035186705]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "152921012516611f0605aaa3d3c23da5a12760e2", "fields": {"departement": "93", "stop_lat": 48.916863886008755, "code_postal": "93046", "stop_lon": 2.5320170898564878, "coord": [48.916863886008755, 2.5320170898564878], "stop_id": 5747155, "stop_desc": "FACE 69 AVENUE DU CONSUL GENERAL NORDLING - 93046", "stop_name": "CHARLES DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.5320170898564878, 48.916863886008755]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ce8ce3c3405ace3f5c66e06cd5f02c3981ad8da4", "fields": {"departement": "93", "stop_lat": 48.912055676467105, "code_postal": "93046", "stop_lon": 2.5207776395378794, "coord": [48.912055676467105, 2.5207776395378794], "stop_id": 5747159, "stop_desc": "FACE 300 AVENUE ARISTIDE BRIAND - 93046", "stop_name": "CHANZY"}, "geometry": {"type": "Point", "coordinates": [2.5207776395378794, 48.912055676467105]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "183974a7b6ac75f91828795ed82e4c318645b0f6", "fields": {"departement": "93", "stop_lat": 48.913146574234354, "code_postal": "93057", "stop_lon": 2.5062738627029915, "coord": [48.913146574234354, 2.5062738627029915], "stop_id": 5747163, "stop_desc": "34-36 ALLEE DE MONTHYON - 93057", "stop_name": "COLONEL FABIEN"}, "geometry": {"type": "Point", "coordinates": [2.5062738627029915, 48.913146574234354]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "550347fde4e678d9e4217cbe079f770fbaf1f307", "fields": {"departement": "93", "stop_lat": 48.91630523836681, "code_postal": "93057", "stop_lon": 2.4966845457751448, "coord": [48.91630523836681, 2.4966845457751448], "stop_id": 5747168, "stop_desc": "BOULEVARD DE PARIS - 93057", "stop_name": "ROBERT SCHUMAN"}, "geometry": {"type": "Point", "coordinates": [2.4966845457751448, 48.91630523836681]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a5a2799f2b7665b507a4f5f1fd47db80013fed08", "fields": {"departement": "93", "stop_lat": 48.90658543502007, "code_postal": "93010", "stop_lon": 2.4865114865196762, "coord": [48.90658543502007, 2.4865114865196762], "stop_id": 5747177, "stop_desc": "170 AVENUE GALLIENI - 93010", "stop_name": "PASTEUR - HOPITAL JEAN VERDIER"}, "geometry": {"type": "Point", "coordinates": [2.4865114865196762, 48.90658543502007]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6306ff29ee6f89ed350fe7eb471b1ce0921e831e", "fields": {"departement": "93", "stop_lat": 48.90555453249922, "code_postal": "93008", "stop_lon": 2.469044655471792, "coord": [48.90555453249922, 2.469044655471792], "stop_id": 5747183, "stop_desc": "FACE 439 AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "PONT DE BONDY"}, "geometry": {"type": "Point", "coordinates": [2.469044655471792, 48.90555453249922]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ab6dcf1db60023f363db116856be86cf15b98835", "fields": {"departement": "93", "stop_lat": 48.90752818929823, "code_postal": "93008", "stop_lon": 2.45522530113179, "coord": [48.90752818929823, 2.45522530113179], "stop_id": 5747187, "stop_desc": "AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "LAMARTINE"}, "geometry": {"type": "Point", "coordinates": [2.45522530113179, 48.90752818929823]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8be97cf50cc2ed3716f4a050094ad79bbc18df96", "fields": {"departement": "93", "stop_lat": 48.90870952071069, "code_postal": "93008", "stop_lon": 2.451083311558328, "coord": [48.90870952071069, 2.451083311558328], "stop_id": 5747189, "stop_desc": "AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "RENE CAMIER"}, "geometry": {"type": "Point", "coordinates": [2.451083311558328, 48.90870952071069]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dbe54476ece41f22d4ef50cf3c1f0115e95298f3", "fields": {"departement": "93", "stop_lat": 48.910269160707436, "code_postal": "93008", "stop_lon": 2.445851196538282, "coord": [48.910269160707436, 2.445851196538282], "stop_id": 5747190, "stop_desc": "AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "PIERRE SEMARD"}, "geometry": {"type": "Point", "coordinates": [2.445851196538282, 48.910269160707436]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8cf7c9c68fce17d4f6eb44901436ad65417378de", "fields": {"departement": "93", "stop_lat": 48.90946775056652, "code_postal": "93008", "stop_lon": 2.447553768193413, "coord": [48.90946775056652, 2.447553768193413], "stop_id": 5747191, "stop_desc": "AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "PIERRE SEMARD"}, "geometry": {"type": "Point", "coordinates": [2.447553768193413, 48.90946775056652]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c7be0d225a6832fe31b85d1c69923f34809a9538", "fields": {"departement": "93", "stop_lat": 48.910550831592126, "code_postal": "93008", "stop_lon": 2.4316857542938997, "coord": [48.910550831592126, 2.4316857542938997], "stop_id": 5747198, "stop_desc": "AVENUE HENRI BARBUSSE - 93008", "stop_name": "GARE - GRANDE CEINTURE"}, "geometry": {"type": "Point", "coordinates": [2.4316857542938997, 48.910550831592126]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b2ece94b5139e38e0d1dcfd5e8ffe54ad0503b08", "fields": {"departement": "93", "stop_lat": 48.90189991672069, "code_postal": "93055", "stop_lon": 2.4141119526047987, "coord": [48.90189991672069, 2.4141119526047987], "stop_id": 5747206, "stop_desc": "182 AVENUE DU GENERAL LECLERC - 93055", "stop_name": "CIMETIERE PARISIEN"}, "geometry": {"type": "Point", "coordinates": [2.4141119526047987, 48.90189991672069]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "91353c0f198d875d4b5ced72b01384488c122dd7", "fields": {"departement": "93", "stop_lat": 48.89997054613696, "code_postal": "93055", "stop_lon": 2.4095425364246923, "coord": [48.89997054613696, 2.4095425364246923], "stop_id": 5747207, "stop_desc": "83 AVENUE DU GENERAL LECLERC - 93055", "stop_name": "DIDEROT"}, "geometry": {"type": "Point", "coordinates": [2.4095425364246923, 48.89997054613696]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a4c91abf7be8f54ce53a3f8898a588da99549e50", "fields": {"departement": "93", "stop_lat": 48.89549979635163, "code_postal": "93055", "stop_lon": 2.401058235497317, "coord": [48.89549979635163, 2.401058235497317], "stop_id": 5747213, "stop_desc": "61 RUE HOCHE - 93055", "stop_name": "CENTRE NATIONAL DE LA DANSE"}, "geometry": {"type": "Point", "coordinates": [2.401058235497317, 48.89549979635163]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8dc40204af7c92fc802ab384f17ae6802fc45cb6", "fields": {"departement": "93", "stop_lat": 48.89388169834081, "code_postal": "93055", "stop_lon": 2.4018195179428488, "coord": [48.89388169834081, 2.4018195179428488], "stop_id": 5747216, "stop_desc": "34-36 RUE HOCHE - 93055", "stop_name": "MONTGOLFIER"}, "geometry": {"type": "Point", "coordinates": [2.4018195179428488, 48.89388169834081]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "78963933ef1c24d63a153e1c6424b2fe73661653", "fields": {"departement": "75", "stop_lat": 48.887426807824475, "code_postal": "75119", "stop_lon": 2.387501862391329, "coord": [48.887426807824475, 2.387501862391329], "stop_id": 5747221, "stop_desc": "167 AVENUE JEAN JAURES - 75119", "stop_name": "OURCQ"}, "geometry": {"type": "Point", "coordinates": [2.387501862391329, 48.887426807824475]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3108145c64e8ba3569c3a6c370ad026da642bee8", "fields": {"departement": "75", "stop_lat": 48.88695086167976, "code_postal": "75119", "stop_lon": 2.386601947808809, "coord": [48.88695086167976, 2.386601947808809], "stop_id": 5747222, "stop_desc": "146 AVENUE JEAN JAURES - 75119", "stop_name": "OURCQ"}, "geometry": {"type": "Point", "coordinates": [2.386601947808809, 48.88695086167976]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b323c577dc2be1deda79a91cdc308a8c925d11e6", "fields": {"departement": "75", "stop_lat": 48.88590126784092, "code_postal": "75119", "stop_lon": 2.381749450930778, "coord": [48.88590126784092, 2.381749450930778], "stop_id": 5747223, "stop_desc": "119 AVENUE JEAN JAURES - 75119", "stop_name": "JEAN JAURES - LORRAINE"}, "geometry": {"type": "Point", "coordinates": [2.381749450930778, 48.88590126784092]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7458c0ef97fb82c550382f3b368fdb705fbafd86", "fields": {"departement": "75", "stop_lat": 48.87568923822874, "code_postal": "75110", "stop_lon": 2.358114733926893, "coord": [48.87568923822874, 2.358114733926893], "stop_id": 5747232, "stop_desc": "76 BOULEVARD DE STRASBOURG - 75110", "stop_name": "GARE DE L'EST"}, "geometry": {"type": "Point", "coordinates": [2.358114733926893, 48.87568923822874]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e4fea692bc69d9758c51c0f6ef59f18ccb4a7a19", "fields": {"departement": "75", "stop_lat": 48.87628189386968, "code_postal": "75110", "stop_lon": 2.3608264014869884, "coord": [48.87628189386968, 2.3608264014869884], "stop_id": 5747233, "stop_desc": "156 RUE DU FAUBOURG SAINT-MARTIN - 75110", "stop_name": "VERDUN"}, "geometry": {"type": "Point", "coordinates": [2.3608264014869884, 48.87628189386968]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cdc454de1d82e85556d20eedfd3cbc38f8294e35", "fields": {"departement": "95", "stop_lat": 48.95529108126409, "code_postal": "95018", "stop_lon": 2.216855376493315, "coord": [48.95529108126409, 2.216855376493315], "stop_id": 5747244, "stop_desc": "RUE DES ALLOBROGES - 95018", "stop_name": "COLLEGE CLAUDE MONET"}, "geometry": {"type": "Point", "coordinates": [2.216855376493315, 48.95529108126409]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b958984335e652aa0ad44784e36f23752315bab5", "fields": {"departement": "95", "stop_lat": 48.95397324256516, "code_postal": "95018", "stop_lon": 2.2200788355207943, "coord": [48.95397324256516, 2.2200788355207943], "stop_id": 5747246, "stop_desc": "ALLEE GUY DE MAUPASSANT - 95018", "stop_name": "BEETHOVEN"}, "geometry": {"type": "Point", "coordinates": [2.2200788355207943, 48.95397324256516]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c1e13fc512f57181ac17142fea4428f0d813eb87", "fields": {"departement": "95", "stop_lat": 48.946005961455654, "code_postal": "95018", "stop_lon": 2.234108880477247, "coord": [48.946005961455654, 2.234108880477247], "stop_id": 5747257, "stop_desc": "FACE 17 BOULEVARD DU GENERAL LECLERC - 95018", "stop_name": "BRETAGNE"}, "geometry": {"type": "Point", "coordinates": [2.234108880477247, 48.946005961455654]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "157d7e93eed8cf661fa0477be42c657ba8c24427", "fields": {"departement": "95", "stop_lat": 48.94735924606738, "code_postal": "95018", "stop_lon": 2.240396062868675, "coord": [48.94735924606738, 2.240396062868675], "stop_id": 5747260, "stop_desc": "7 BIS BOULEVARD DU GENERAL LECLERC - 95018", "stop_name": "ERNESTINE"}, "geometry": {"type": "Point", "coordinates": [2.240396062868675, 48.94735924606738]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f4e396ac7886c27d7dda6e691936070e7d94530c", "fields": {"departement": "95", "stop_lat": 48.94759295695823, "code_postal": "95018", "stop_lon": 2.2404638458531743, "coord": [48.94759295695823, 2.2404638458531743], "stop_id": 5747261, "stop_desc": "4 BOULEVARD DU GENERAL LECLERC - 95018", "stop_name": "ERNESTINE"}, "geometry": {"type": "Point", "coordinates": [2.2404638458531743, 48.94759295695823]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "92d7e5422e5f460eccc71ab766e9a9a779e5caed", "fields": {"departement": "95", "stop_lat": 48.94648398906052, "code_postal": "95018", "stop_lon": 2.2473560161311945, "coord": [48.94648398906052, 2.2473560161311945], "stop_id": 5747264, "stop_desc": "43 RUE ANTONIN GEORGES BELIN - 95018", "stop_name": "BELIN"}, "geometry": {"type": "Point", "coordinates": [2.2473560161311945, 48.94648398906052]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a8b5e8bee23211652198d719bd7e69a6446c6e83", "fields": {"departement": "95", "stop_lat": 48.94692605506069, "code_postal": "95018", "stop_lon": 2.249661062842731, "coord": [48.94692605506069, 2.249661062842731], "stop_id": 5747266, "stop_desc": "23 BOULEVARD LEON FEIX - 95018", "stop_name": "HOTEL DE VILLE D'ARGENTEUIL"}, "geometry": {"type": "Point", "coordinates": [2.249661062842731, 48.94692605506069]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "10e2fc50ee239bba2b56c741840025728c2cb55b", "fields": {"departement": "95", "stop_lat": 48.948437655421316, "code_postal": "95018", "stop_lon": 2.252182695114476, "coord": [48.948437655421316, 2.252182695114476], "stop_id": 5747269, "stop_desc": "2-4 BIS BOULEVARD LEON FEIX - 95018", "stop_name": "LEON FEIX"}, "geometry": {"type": "Point", "coordinates": [2.252182695114476, 48.948437655421316]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "417f49dc05400300d0708634b8c62c35758882c7", "fields": {"departement": "95", "stop_lat": 48.94269678917408, "code_postal": "95018", "stop_lon": 2.254579610422324, "coord": [48.94269678917408, 2.254579610422324], "stop_id": 5747273, "stop_desc": "FACE 14 BOULEVARD HELOISE - 95018", "stop_name": "BORDEREL - HELOISE"}, "geometry": {"type": "Point", "coordinates": [2.254579610422324, 48.94269678917408]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "77cae34b2c37737d0d999b4e928dcd38aac07976", "fields": {"departement": "92", "stop_lat": 48.929117593087796, "code_postal": "92025", "stop_lon": 2.2686496412914248, "coord": [48.929117593087796, 2.2686496412914248], "stop_id": 5747280, "stop_desc": "48 AVENUE DE STALINGRAD - 92025", "stop_name": "LES CHAMPARONS"}, "geometry": {"type": "Point", "coordinates": [2.2686496412914248, 48.929117593087796]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2c5f45dfb423ff01dff4ff08270b17f6bab74484", "fields": {"departement": "92", "stop_lat": 48.91350916270402, "code_postal": "92009", "stop_lon": 2.2720654430399616, "coord": [48.91350916270402, 2.2720654430399616], "stop_id": 5747285, "stop_desc": "15 RUE DU GENERAL LECLERC - 92009", "stop_name": "GARE DE BOIS-COLOMBES"}, "geometry": {"type": "Point", "coordinates": [2.2720654430399616, 48.91350916270402]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a2c4f3593e9ec92fa5c02c84cc5b6dede6e57ee2", "fields": {"departement": "92", "stop_lat": 48.896626824820075, "code_postal": "92044", "stop_lon": 2.2806467117291467, "coord": [48.896626824820075, 2.2806467117291467], "stop_id": 5747295, "stop_desc": "RUE ANATOLE FRANCE - 92044", "stop_name": "PONT DE LEVALLOIS-METRO"}, "geometry": {"type": "Point", "coordinates": [2.2806467117291467, 48.896626824820075]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "23bef4d84f6adf97fcfa6bcfb6d42229ee4d27ca", "fields": {"departement": "75", "stop_lat": 48.885451744264294, "code_postal": "75117", "stop_lon": 2.2923242136225292, "coord": [48.885451744264294, 2.2923242136225292], "stop_id": 5747297, "stop_desc": "135 AVENUE DE VILLIERS - 75117", "stop_name": "PORTE DE CHAMPERRET"}, "geometry": {"type": "Point", "coordinates": [2.2923242136225292, 48.885451744264294]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b8069fe277d417a507b4ba585d412c50c113c7c0", "fields": {"departement": "75", "stop_lat": 48.88594618449054, "code_postal": "75117", "stop_lon": 2.2927053638286177, "coord": [48.88594618449054, 2.2927053638286177], "stop_id": 5747298, "stop_desc": "PLACE STUART MERRILL - 75117", "stop_name": "PORTE DE CHAMPERRET"}, "geometry": {"type": "Point", "coordinates": [2.2927053638286177, 48.88594618449054]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "756c862d1445f13b1b86d0955ee53fc3cb944d5d", "fields": {"departement": "75", "stop_lat": 48.88789708721117, "code_postal": "75117", "stop_lon": 2.2945571394886106, "coord": [48.88789708721117, 2.2945571394886106], "stop_id": 5747308, "stop_desc": "RUE DE COURCELLES - 75117", "stop_name": "PORTE DE COURCELLES"}, "geometry": {"type": "Point", "coordinates": [2.2945571394886106, 48.88789708721117]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "941b3440e1107659e6279f5035eb7f6a2460b32d", "fields": {"departement": "92", "stop_lat": 48.89317963178215, "code_postal": "92044", "stop_lon": 2.289496162966111, "coord": [48.89317963178215, 2.289496162966111], "stop_id": 5747309, "stop_desc": "66 RUE DU PRESIDENT WILSON - 92044", "stop_name": "MAIRIE DE LEVALLOIS"}, "geometry": {"type": "Point", "coordinates": [2.289496162966111, 48.89317963178215]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "08bd1805e0f470abcaab1308e1fba42076806510", "fields": {"departement": "92", "stop_lat": 48.90745767067383, "code_postal": "92004", "stop_lon": 2.266428798456684, "coord": [48.90745767067383, 2.266428798456684], "stop_id": 5747312, "stop_desc": "10 AVENUE FAIDHERBE - 92004", "stop_name": "CHEVREUL"}, "geometry": {"type": "Point", "coordinates": [2.266428798456684, 48.90745767067383]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ae7fa43bf8bcb7ff6f74b7da8b671329398f7739", "fields": {"departement": "92", "stop_lat": 48.91863589388542, "code_postal": "92004", "stop_lon": 2.2801453857521996, "coord": [48.91863589388542, 2.2801453857521996], "stop_id": 5747315, "stop_desc": "188 RUE DES BOURGUIGNONS - 92004", "stop_name": "BOURGUIGNONS"}, "geometry": {"type": "Point", "coordinates": [2.2801453857521996, 48.91863589388542]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "16a6e0385d8fb384c7c10b263e232b40c74ce8f9", "fields": {"departement": "95", "stop_lat": 48.95019067794116, "code_postal": "95018", "stop_lon": 2.2305665558582644, "coord": [48.95019067794116, 2.2305665558582644], "stop_id": 5747325, "stop_desc": "RUE JEAN LURCAT - 95018", "stop_name": "GARE DU VAL D'ARGENTEUIL"}, "geometry": {"type": "Point", "coordinates": [2.2305665558582644, 48.95019067794116]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3df6649c05f2450b382e69af97f3084844e52dab", "fields": {"departement": "95", "stop_lat": 48.947622496227496, "code_postal": "95018", "stop_lon": 2.24369743207749, "coord": [48.947622496227496, 2.24369743207749], "stop_id": 5747330, "stop_desc": "85 RUE ANTONIN GEORGES BELIN - 95018", "stop_name": "RECHSTEINER"}, "geometry": {"type": "Point", "coordinates": [2.24369743207749, 48.947622496227496]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f4232e2a7850f2e33106ab7a58dace358b885d33", "fields": {"departement": "92", "stop_lat": 48.933949446550976, "code_postal": "92025", "stop_lon": 2.263473509474367, "coord": [48.933949446550976, 2.263473509474367], "stop_id": 5747337, "stop_desc": "179 AVENUE DE STALINGRAD - 92025", "stop_name": "PONT DU CHEMIN DE FER"}, "geometry": {"type": "Point", "coordinates": [2.263473509474367, 48.933949446550976]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "32d87982514008ddba3b4fa6f48104a829348dea", "fields": {"departement": "92", "stop_lat": 48.90869960422468, "code_postal": "92004", "stop_lon": 2.269385635682005, "coord": [48.90869960422468, 2.269385635682005], "stop_id": 5747346, "stop_desc": "49 AVENUE FAIDHERBE - 92004", "stop_name": "BALZAC"}, "geometry": {"type": "Point", "coordinates": [2.269385635682005, 48.90869960422468]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0343c499d5d2ed287bb8306d4ac206f1a84102bc", "fields": {"departement": "92", "stop_lat": 48.90233974527351, "code_postal": "92026", "stop_lon": 2.2748604488756095, "coord": [48.90233974527351, 2.2748604488756095], "stop_id": 5747349, "stop_desc": "FACE 4 AVENUE DU 11 NOVEMBRE - 92026", "stop_name": "PLACE MERMOZ"}, "geometry": {"type": "Point", "coordinates": [2.2748604488756095, 48.90233974527351]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a7b0b4351959a94f9b4a4b8ed357ea90208ceecf", "fields": {"departement": "75", "stop_lat": 48.895967985861425, "code_postal": "75119", "stop_lon": 2.378773025928539, "coord": [48.895967985861425, 2.378773025928539], "stop_id": 5761271, "stop_desc": "110 RUE CURIAL - 75119", "stop_name": "ROSA PARKS - CURIAL"}, "geometry": {"type": "Point", "coordinates": [2.378773025928539, 48.895967985861425]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f7aa2cfcba794458c277c3120ff94ceba647a52f", "fields": {"departement": "75", "stop_lat": 48.89619385040414, "code_postal": "75119", "stop_lon": 2.3752156442507153, "coord": [48.89619385040414, 2.3752156442507153], "stop_id": 5761273, "stop_desc": "16 RUE GASTON TESSIER - 75119", "stop_name": "ROSA PARKS"}, "geometry": {"type": "Point", "coordinates": [2.3752156442507153, 48.89619385040414]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "790503501b38fa4b769ebe5dd84898030384856c", "fields": {"departement": "93", "stop_lat": 48.90314345577332, "code_postal": "93001", "stop_lon": 2.3660598060980185, "coord": [48.90314345577332, 2.3660598060980185], "stop_id": 5761279, "stop_desc": "AVENUE DES MAGASINS GENERAUX - 93001", "stop_name": "NET SQU@RE"}, "geometry": {"type": "Point", "coordinates": [2.3660598060980185, 48.90314345577332]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b334a72c1d7757d310e225ba9f9eaaccfbc8cd09", "fields": {"departement": "93", "stop_lat": 48.90908415338688, "code_postal": "93066", "stop_lon": 2.3650269328256974, "coord": [48.90908415338688, 2.3650269328256974], "stop_id": 5761285, "stop_desc": "R DE LA METALLURGIE - 93066", "stop_name": "METALLURGIE"}, "geometry": {"type": "Point", "coordinates": [2.3650269328256974, 48.90908415338688]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6735ed46f76d169db26a4139aaffa48efbaf342d", "fields": {"departement": "93", "stop_lat": 48.92044450149774, "code_postal": "93066", "stop_lon": 2.361473796109187, "coord": [48.92044450149774, 2.361473796109187], "stop_id": 5761293, "stop_desc": "AVENUE DU STADE DE FRANCE - 93066", "stop_name": "AVENUE DU STADE DE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.361473796109187, 48.92044450149774]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "21efa273e30d1fcc03fd096923fdebaf3550f495", "fields": {"departement": "93", "stop_lat": 48.92609724777595, "code_postal": "93066", "stop_lon": 2.3616673768276093, "coord": [48.92609724777595, 2.3616673768276093], "stop_id": 5761297, "stop_desc": "RUE HENRI DELAUNAY - 93066", "stop_name": "DELAUNAY - RIMET"}, "geometry": {"type": "Point", "coordinates": [2.3616673768276093, 48.92609724777595]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bef18708053f2d1bab5866688be6bb0ef1f9cc46", "fields": {"departement": "93", "stop_lat": 48.9259451264698, "code_postal": "93066", "stop_lon": 2.3582168059200574, "coord": [48.9259451264698, 2.3582168059200574], "stop_id": 5761299, "stop_desc": "RUE HENRI DELAUNAY - 93066", "stop_name": "PONT DU CANAL"}, "geometry": {"type": "Point", "coordinates": [2.3582168059200574, 48.9259451264698]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f19c5cd15af7bac6912089242e26e5378ddab3ca", "fields": {"departement": "93", "stop_lat": 48.93078932080951, "code_postal": "93066", "stop_lon": 2.3567184094380003, "coord": [48.93078932080951, 2.3567184094380003], "stop_id": 5761301, "stop_desc": "R DE LA LEGION D'HONNEUR - 93066", "stop_name": "PORTE DE PARIS"}, "geometry": {"type": "Point", "coordinates": [2.3567184094380003, 48.93078932080951]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "711dd42f4a25644be1286b4a47a8475f7a0fbd37", "fields": {"departement": "93", "stop_lat": 48.93053775410343, "code_postal": "93066", "stop_lon": 2.356309128503143, "coord": [48.93053775410343, 2.356309128503143], "stop_id": 5761302, "stop_desc": "RUE GABRIEL PERI - 93066", "stop_name": "PORTE DE PARIS"}, "geometry": {"type": "Point", "coordinates": [2.356309128503143, 48.93053775410343]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5d0e9cd72eaf95ad72a9ef2f3d2baf0c9c3baae2", "fields": {"departement": "93", "stop_lat": 48.93546214227096, "code_postal": "93066", "stop_lon": 2.3587526515474195, "coord": [48.93546214227096, 2.3587526515474195], "stop_id": 5761304, "stop_desc": "5 RUE DE LA LEGION D'HONNEUR - 93066", "stop_name": "MEDIATHEQUE"}, "geometry": {"type": "Point", "coordinates": [2.3587526515474195, 48.93546214227096]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "93cc7114479e396d60107b884781aa173ff39659", "fields": {"departement": "93", "stop_lat": 48.90261243317066, "code_postal": "93066", "stop_lon": 2.369140387154886, "coord": [48.90261243317066, 2.369140387154886], "stop_id": 5761314, "stop_desc": "AVENUE DES MAGASINS GENERAUX - 93066", "stop_name": "MAGASINS GENERAUX"}, "geometry": {"type": "Point", "coordinates": [2.369140387154886, 48.90261243317066]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "00aa44ae124da5c390bc01b4603ad4e864ec1650", "fields": {"departement": "92", "stop_lat": 48.82602778051459, "code_postal": "92072", "stop_lon": 2.199772635808918, "coord": [48.82602778051459, 2.199772635808918], "stop_id": 5761317, "stop_desc": "AVENUE GAMBETTA - 92072", "stop_name": "SEVRES-VILLE D'AVRAY - GARE SNCF RIVE DROITE"}, "geometry": {"type": "Point", "coordinates": [2.199772635808918, 48.82602778051459]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "74093691c8cd4dd4d2c154cc66165b94f25d2a92", "fields": {"departement": "92", "stop_lat": 48.82802031682577, "code_postal": "92077", "stop_lon": 2.1899798821828482, "coord": [48.82802031682577, 2.1899798821828482], "stop_id": 5761320, "stop_desc": "7 RUE COROT - 92077", "stop_name": "MAIRIE DE VILLE-D'AVRAY"}, "geometry": {"type": "Point", "coordinates": [2.1899798821828482, 48.82802031682577]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "48f8e0f1bd4bfe9819e950600b970901aab27378", "fields": {"departement": "92", "stop_lat": 48.82581847327086, "code_postal": "92077", "stop_lon": 2.1829895386338984, "coord": [48.82581847327086, 2.1829895386338984], "stop_id": 5761323, "stop_desc": "14 AVENUE HALPHEN - 92077", "stop_name": "MONASTERE"}, "geometry": {"type": "Point", "coordinates": [2.1829895386338984, 48.82581847327086]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "426d748ae5b035e920e00e599b1b4040afa8de52", "fields": {"departement": "75", "stop_lat": 48.878158015689465, "code_postal": "75116", "stop_lon": 2.280448865923247, "coord": [48.878158015689465, 2.280448865923247], "stop_id": 5761325, "stop_desc": "PLACE JOSEPH ET MARIE HACKIN - 75116", "stop_name": "PORTE MAILLOT - METRO - RER"}, "geometry": {"type": "Point", "coordinates": [2.280448865923247, 48.878158015689465]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a25b2a01dfbd04475142fac9f862db73685dfc24", "fields": {"departement": "92", "stop_lat": 48.86837636340144, "code_postal": "92073", "stop_lon": 2.2249314109891505, "coord": [48.86837636340144, 2.2249314109891505], "stop_id": 5761341, "stop_desc": "38 BOULEVARD HENRI SELLIER - 92073", "stop_name": "SURESNES DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.2249314109891505, 48.86837636340144]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "47d8398a7c85ab2af95fe9ec300d5bde4b0f9888", "fields": {"departement": "92", "stop_lat": 48.862806940257784, "code_postal": "92073", "stop_lon": 2.2185003886282835, "coord": [48.862806940257784, 2.2185003886282835], "stop_id": 5761346, "stop_desc": "BOULEVARD HENRI SELLIER - 92073", "stop_name": "GARIBALDI"}, "geometry": {"type": "Point", "coordinates": [2.2185003886282835, 48.862806940257784]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "88b7a4e377ac3ee32394872dd46102aa34267d32", "fields": {"departement": "92", "stop_lat": 48.86140775640603, "code_postal": "92073", "stop_lon": 2.212496564318806, "coord": [48.86140775640603, 2.212496564318806], "stop_id": 5761350, "stop_desc": "CARREFOUR DE LA CROIX DU ROY - 92073", "stop_name": "CROIX DU ROY"}, "geometry": {"type": "Point", "coordinates": [2.212496564318806, 48.86140775640603]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "abad13cf3251f6a2d01fc985cdfd9b38745909bc", "fields": {"departement": "92", "stop_lat": 48.87266704184456, "code_postal": "92063", "stop_lon": 2.1947850777900255, "coord": [48.87266704184456, 2.1947850777900255], "stop_id": 5761361, "stop_desc": "54 RUE DES BONS RAISINS - 92063", "stop_name": "LES GODARDES"}, "geometry": {"type": "Point", "coordinates": [2.1947850777900255, 48.87266704184456]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "73f82ed65eae948326b67462604c65883e3f7bdf", "fields": {"departement": "92", "stop_lat": 48.87367623584867, "code_postal": "92063", "stop_lon": 2.1895504546143014, "coord": [48.87367623584867, 2.1895504546143014], "stop_id": 5761362, "stop_desc": "FACE 10 R DES BONS RAISINS - 92063", "stop_name": "EDMOND ROSTAND"}, "geometry": {"type": "Point", "coordinates": [2.1895504546143014, 48.87367623584867]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ae5eb4c1e25ee80e3353605a4c3423230432f8de", "fields": {"departement": "92", "stop_lat": 48.880623262018354, "code_postal": "92063", "stop_lon": 2.1823495283900023, "coord": [48.880623262018354, 2.1823495283900023], "stop_id": 5761368, "stop_desc": "140 AVENUE PAUL DOUMER - 92063", "stop_name": "RUEIL - VILLE"}, "geometry": {"type": "Point", "coordinates": [2.1823495283900023, 48.880623262018354]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9ca6a55490c087640f51a9705cd17f133ac18ab9", "fields": {"departement": "92", "stop_lat": 48.88391135478196, "code_postal": "92063", "stop_lon": 2.1746675301348812, "coord": [48.88391135478196, 2.1746675301348812], "stop_id": 5761371, "stop_desc": "72 AVENUE ALBERT 1ER - 92063", "stop_name": "BAUDIN"}, "geometry": {"type": "Point", "coordinates": [2.1746675301348812, 48.88391135478196]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fdddce4a3e88696874cf80bc7d0f2c59e6e03ad0", "fields": {"departement": "75", "stop_lat": 48.892988682621194, "code_postal": "75118", "stop_lon": 2.363082895018561, "coord": [48.892988682621194, 2.363082895018561], "stop_id": 5761428, "stop_desc": "19 RUE DE L'EVANGILE - 75118", "stop_name": "PLACE HEBERT"}, "geometry": {"type": "Point", "coordinates": [2.363082895018561, 48.892988682621194]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "75356b2520f0ac8331ee4804ec6de6f8779f216a", "fields": {"departement": "75", "stop_lat": 48.88180050254322, "code_postal": "75110", "stop_lon": 2.3585668751343, "coord": [48.88180050254322, 2.3585668751343], "stop_id": 5761438, "stop_desc": "FACE 191 RUE DU FAUBOURG SAINT-DENIS - 75110", "stop_name": "CAIL - DEMARQUAY"}, "geometry": {"type": "Point", "coordinates": [2.3585668751343, 48.88180050254322]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "004c5faa7296c067539336247f02a6c3110cf40c", "fields": {"departement": "75", "stop_lat": 48.879473278409144, "code_postal": "75110", "stop_lon": 2.3557180612431323, "coord": [48.879473278409144, 2.3557180612431323], "stop_id": 5761441, "stop_desc": "33-35 RUE DE SAINT-QUENTIN - 75110", "stop_name": "LA FAYETTE - DUNKERQUE"}, "geometry": {"type": "Point", "coordinates": [2.3557180612431323, 48.879473278409144]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7295a94a5f9b4ed24f39eefa7375946d4c2cb242", "fields": {"departement": "75", "stop_lat": 48.87617468079017, "code_postal": "75110", "stop_lon": 2.3573655408708234, "coord": [48.87617468079017, 2.3573655408708234], "stop_id": 5761442, "stop_desc": "15-17 RUE DU 8 MAI 1945 - 75110", "stop_name": "GARE DE L'EST"}, "geometry": {"type": "Point", "coordinates": [2.3573655408708234, 48.87617468079017]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c128d22a66c2ef765f4ed651b5907537c2abe8cc", "fields": {"departement": "75", "stop_lat": 48.87613845686216, "code_postal": "75110", "stop_lon": 2.3589324287286892, "coord": [48.87613845686216, 2.3589324287286892], "stop_id": 5761444, "stop_desc": "3-5 RUE DU 8 MAI 1945 - 75110", "stop_name": "GARE DE L'EST."}, "geometry": {"type": "Point", "coordinates": [2.3589324287286892, 48.87613845686216]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6f483e51da5d653adf4a27c9f2f12e5be522b0c9", "fields": {"departement": "92", "stop_lat": 48.917636904939, "code_postal": "92025", "stop_lon": 2.2370835076690034, "coord": [48.917636904939, 2.2370835076690034], "stop_id": 4023630, "stop_desc": "252 BIS RUE GABRIEL PERI - 92025", "stop_name": "ECOLES DU PETIT COLOMBES"}, "geometry": {"type": "Point", "coordinates": [2.2370835076690034, 48.917636904939]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3d4415f752e0bb55c255d454ea4c4827dd221590", "fields": {"departement": "92", "stop_lat": 48.92243515687141, "code_postal": "92025", "stop_lon": 2.2473704815516977, "coord": [48.92243515687141, 2.2473704815516977], "stop_id": 4023634, "stop_desc": "52 RUE GABRIEL PERI - 92025", "stop_name": "CIMETIERE DE COLOMBES"}, "geometry": {"type": "Point", "coordinates": [2.2473704815516977, 48.92243515687141]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4d833c93de0e542fecc2ab9732ac720d65fcfdfc", "fields": {"departement": "92", "stop_lat": 48.92299546791915, "code_postal": "92025", "stop_lon": 2.2516107928123716, "coord": [48.92299546791915, 2.2516107928123716], "stop_id": 4023635, "stop_desc": "5 RUE GABRIEL PERI - 92025", "stop_name": "EGLISE DE COLOMBES"}, "geometry": {"type": "Point", "coordinates": [2.2516107928123716, 48.92299546791915]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "85e9c1bb05ce4412bd77bfb3bdcbff54495e899b", "fields": {"departement": "92", "stop_lat": 48.92340543054013, "code_postal": "92025", "stop_lon": 2.2597245313593417, "coord": [48.92340543054013, 2.2597245313593417], "stop_id": 4023641, "stop_desc": "RUE DU BOURNARD - 92025", "stop_name": "GARE DE COLOMBES"}, "geometry": {"type": "Point", "coordinates": [2.2597245313593417, 48.92340543054013]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "109ebace726465bf5c09212cbf01a8f10f2a6e74", "fields": {"departement": "92", "stop_lat": 48.92365679804589, "code_postal": "92025", "stop_lon": 2.2593150228901626, "coord": [48.92365679804589, 2.2593150228901626], "stop_id": 4023642, "stop_desc": "1-3 RUE DU BOURNARD - 92025", "stop_name": "GARE DE COLOMBES"}, "geometry": {"type": "Point", "coordinates": [2.2593150228901626, 48.92365679804589]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "afbcfbe997a8f4ddec818c86e18d16d1d1ec9d05", "fields": {"departement": "92", "stop_lat": 48.92421689404357, "code_postal": "92025", "stop_lon": 2.2638965101958997, "coord": [48.92421689404357, 2.2638965101958997], "stop_id": 4023643, "stop_desc": "58-60 AVENUE DE L'AGENT SARRE - 92025", "stop_name": "BEAUSEJOUR"}, "geometry": {"type": "Point", "coordinates": [2.2638965101958997, 48.92421689404357]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "459a833612789cbff593c2025b84905e42d8f6ef", "fields": {"departement": "92", "stop_lat": 48.925009743763596, "code_postal": "92025", "stop_lon": 2.2672230825226314, "coord": [48.925009743763596, 2.2672230825226314], "stop_id": 4023646, "stop_desc": "85-87 AVENUE DE L'AGENT SARRE - 92025", "stop_name": "GRAMME"}, "geometry": {"type": "Point", "coordinates": [2.2672230825226314, 48.925009743763596]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8d2374c361f93e6d8bc5e04a151d58500672716e", "fields": {"departement": "95", "stop_lat": 48.945405030431886, "code_postal": "95018", "stop_lon": 2.2466347856910835, "coord": [48.945405030431886, 2.2466347856910835], "stop_id": 4023682, "stop_desc": "4 BOULEVARD JEANNE D'ARC - 95018", "stop_name": "BELIN"}, "geometry": {"type": "Point", "coordinates": [2.2466347856910835, 48.945405030431886]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ba03fc8e92de1254ce2320f0f6f3de56cf9be495", "fields": {"departement": "95", "stop_lat": 48.94443359375987, "code_postal": "95018", "stop_lon": 2.245504099137286, "coord": [48.94443359375987, 2.245504099137286], "stop_id": 4023685, "stop_desc": "27 BOULEVARD JEANNE D'ARC - 95018", "stop_name": "CALAIS"}, "geometry": {"type": "Point", "coordinates": [2.245504099137286, 48.94443359375987]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "722fc597bdba3519d389ddef20a28f1dea40d5ce", "fields": {"departement": "95", "stop_lat": 48.93872491361057, "code_postal": "95018", "stop_lon": 2.2428677226717237, "coord": [48.93872491361057, 2.2428677226717237], "stop_id": 4023690, "stop_desc": "70 RUE HENRI BARBUSSE - 95018", "stop_name": "JEAN MOULIN - HENRI BARBUSSE"}, "geometry": {"type": "Point", "coordinates": [2.2428677226717237, 48.93872491361057]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e590c96e2aca71361f046d4daa76108658589400", "fields": {"departement": "95", "stop_lat": 48.927474080218055, "code_postal": "95063", "stop_lon": 2.223139316054955, "coord": [48.927474080218055, 2.223139316054955], "stop_id": 4023698, "stop_desc": "FACE 38 RUE JEAN JAURES - 95063", "stop_name": "VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.223139316054955, 48.927474080218055]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "29aacdb035adb67f80e8eda96329633f494e3f6f", "fields": {"departement": "95", "stop_lat": 48.924289845732346, "code_postal": "95063", "stop_lon": 2.2201869042076, "coord": [48.924289845732346, 2.2201869042076], "stop_id": 4023700, "stop_desc": "79 RUE JEAN JAURES - 95063", "stop_name": "JAURES - BRANCHARD"}, "geometry": {"type": "Point", "coordinates": [2.2201869042076, 48.924289845732346]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3dfeb7f8ddf4c00c985735217455e832553caffd", "fields": {"departement": "95", "stop_lat": 48.92316367574363, "code_postal": "95063", "stop_lon": 2.2173664624293954, "coord": [48.92316367574363, 2.2173664624293954], "stop_id": 4023702, "stop_desc": "R JULIUS ET ETHEL ROSENBERG - 95063", "stop_name": "PONT DE BEZONS"}, "geometry": {"type": "Point", "coordinates": [2.2173664624293954, 48.92316367574363]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7348415a635daee7afa872641b0d688e15a8ff86", "fields": {"departement": "95", "stop_lat": 48.93144398832164, "code_postal": "95063", "stop_lon": 2.2118913728873326, "coord": [48.93144398832164, 2.2118913728873326], "stop_id": 4023705, "stop_desc": "88 PLACE DES DROITS DE L'HOMME - 95063", "stop_name": "PLACE DES DROITS DE L'HOMME"}, "geometry": {"type": "Point", "coordinates": [2.2118913728873326, 48.93144398832164]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e58f2f7f2c66ad3d279204a1f0c9b61498292100", "fields": {"departement": "78", "stop_lat": 48.94246942361279, "code_postal": "78586", "stop_lon": 2.202342067210779, "coord": [48.94246942361279, 2.202342067210779], "stop_id": 4023715, "stop_desc": "RUE FLORIAN - 78586", "stop_name": "ROMAIN ROLLAND"}, "geometry": {"type": "Point", "coordinates": [2.202342067210779, 48.94246942361279]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "50cd2f1cd04c3cf391035939bed180506c6eef96", "fields": {"departement": "78", "stop_lat": 48.94607591500551, "code_postal": "78586", "stop_lon": 2.204829458486919, "coord": [48.94607591500551, 2.204829458486919], "stop_id": 4023717, "stop_desc": "FACE 20 RUE DU BERRY - 78586", "stop_name": "BERRY"}, "geometry": {"type": "Point", "coordinates": [2.204829458486919, 48.94607591500551]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d425a00c4468eaf94384c21bfabd0b817b414c42", "fields": {"departement": "78", "stop_lat": 48.94286038776641, "code_postal": "78586", "stop_lon": 2.19093565629163, "coord": [48.94286038776641, 2.19093565629163], "stop_id": 4023725, "stop_desc": "FACE 131 AVENUE GENERAL DE GAULLE - 78586", "stop_name": "RUE DE CHATOU"}, "geometry": {"type": "Point", "coordinates": [2.19093565629163, 48.94286038776641]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f82970119d5028868fe11f505733254d2af64dcf", "fields": {"departement": "78", "stop_lat": 48.9445292122809, "code_postal": "78586", "stop_lon": 2.18168081189023, "coord": [48.9445292122809, 2.18168081189023], "stop_id": 4023727, "stop_desc": "AV DU GENERAL CHARLES DE GAULLE - 78586", "stop_name": "CHARLES DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.18168081189023, 48.9445292122809]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "91147d67619d9c3ccb0612d55f6f7d7fa0524412", "fields": {"departement": "78", "stop_lat": 48.94507245396814, "code_postal": "78586", "stop_lon": 2.1779272439126975, "coord": [48.94507245396814, 2.1779272439126975], "stop_id": 4023728, "stop_desc": "FACE 40 AV DU GENERAL CHARLES DE GAULLE - 78586", "stop_name": "PICARDIE"}, "geometry": {"type": "Point", "coordinates": [2.1779272439126975, 48.94507245396814]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8b766306552becbbc23fc996c9a477a0b54c36b0", "fields": {"departement": "78", "stop_lat": 48.94016904281243, "code_postal": "78586", "stop_lon": 2.167356053279125, "coord": [48.94016904281243, 2.167356053279125], "stop_id": 4023736, "stop_desc": "73 AVENUE MAURICE BERTEAUX - 78586", "stop_name": "JEAN MERMOZ"}, "geometry": {"type": "Point", "coordinates": [2.167356053279125, 48.94016904281243]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "85b4449c8dfac9ec2e0cfc2f8da722169975dea2", "fields": {"departement": "95", "stop_lat": 48.9459497561669, "code_postal": "95018", "stop_lon": 2.2542196817375144, "coord": [48.9459497561669, 2.2542196817375144], "stop_id": 4023748, "stop_desc": "FACE 42 RUE ALFRED LABRIERE - 95018", "stop_name": "LABRIERE"}, "geometry": {"type": "Point", "coordinates": [2.2542196817375144, 48.9459497561669]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4a0dd3ecde30ab2626421f55092872d3ebd07463", "fields": {"departement": "95", "stop_lat": 48.944037490415205, "code_postal": "95018", "stop_lon": 2.244617998855466, "coord": [48.944037490415205, 2.244617998855466], "stop_id": 4023756, "stop_desc": "10 BOULEVARD GALLIENI - 95018", "stop_name": "CALAIS"}, "geometry": {"type": "Point", "coordinates": [2.244617998855466, 48.944037490415205]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4c0f3ef02268f3294226b66651a00c61e5d08f09", "fields": {"departement": "95", "stop_lat": 48.94258069339716, "code_postal": "95018", "stop_lon": 2.2434200453478628, "coord": [48.94258069339716, 2.2434200453478628], "stop_id": 4023759, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 95018", "stop_name": "CLEMENT ADER"}, "geometry": {"type": "Point", "coordinates": [2.2434200453478628, 48.94258069339716]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "355286f07139db2a6522576ebe8c64640d3affe2", "fields": {"departement": "95", "stop_lat": 48.940389064483114, "code_postal": "95018", "stop_lon": 2.244897369409708, "coord": [48.940389064483114, 2.244897369409708], "stop_id": 4023760, "stop_desc": "9 AVENUE DU GENERAL DE GAULLE - 95018", "stop_name": "CHARLES DE GAULLE - HENRI BARBUSSE"}, "geometry": {"type": "Point", "coordinates": [2.244897369409708, 48.940389064483114]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a870090b479ed3e50ed1c137208f6f2eaa36a966", "fields": {"departement": "95", "stop_lat": 48.935853879178346, "code_postal": "95018", "stop_lon": 2.2376621106651746, "coord": [48.935853879178346, 2.2376621106651746], "stop_id": 4023764, "stop_desc": "144 RUE HENRI BARBUSSE - 95018", "stop_name": "PLACE DU 11 NOVEMBRE"}, "geometry": {"type": "Point", "coordinates": [2.2376621106651746, 48.935853879178346]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6c68652008c8ada3abfea6cb9122c704019656f7", "fields": {"departement": "95", "stop_lat": 48.93297352796869, "code_postal": "95018", "stop_lon": 2.232347972688566, "coord": [48.93297352796869, 2.232347972688566], "stop_id": 4023766, "stop_desc": "FACE 195 RUE HENRI BARBUSSE - 95018", "stop_name": "AVENUE DU CHATEAU"}, "geometry": {"type": "Point", "coordinates": [2.232347972688566, 48.93297352796869]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0fe9ccd4dfd20b200e758aba92e9dfa9f8c534b9", "fields": {"departement": "95", "stop_lat": 48.9333247799194, "code_postal": "95018", "stop_lon": 2.2332202397770198, "coord": [48.9333247799194, 2.2332202397770198], "stop_id": 4023767, "stop_desc": "FACE 190 RUE HENRI BARBUSSE - 95018", "stop_name": "AVENUE DU CHATEAU"}, "geometry": {"type": "Point", "coordinates": [2.2332202397770198, 48.9333247799194]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1c01bdebed63c120b8a22a0784e76aae460ff2e8", "fields": {"departement": "78", "stop_lat": 48.94246942361279, "code_postal": "78586", "stop_lon": 2.202342067210779, "coord": [48.94246942361279, 2.202342067210779], "stop_id": 4023787, "stop_desc": "RUE FLORIAN - 78586", "stop_name": "ROMAIN ROLLAND"}, "geometry": {"type": "Point", "coordinates": [2.202342067210779, 48.94246942361279]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d3b3596d48731f579b00d8504e0bdaaef5388521", "fields": {"departement": "78", "stop_lat": 48.94534128527181, "code_postal": "78586", "stop_lon": 2.198923716897662, "coord": [48.94534128527181, 2.198923716897662], "stop_id": 4023791, "stop_desc": "10 RUE PAUL BERT - 78586", "stop_name": "PEGUY"}, "geometry": {"type": "Point", "coordinates": [2.198923716897662, 48.94534128527181]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cf5820d3306692ea9d2a3c3f6f814b487ab71285", "fields": {"departement": "78", "stop_lat": 48.94234423329563, "code_postal": "78586", "stop_lon": 2.1951390600094682, "coord": [48.94234423329563, 2.1951390600094682], "stop_id": 4023795, "stop_desc": "68 AVENUE GEORGES CLEMENCEAU - 78586", "stop_name": "CLEMENCEAU"}, "geometry": {"type": "Point", "coordinates": [2.1951390600094682, 48.94234423329563]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8c4d263e8ed37c21da6cbc3d1fd8b7bd9dcc47f4", "fields": {"departement": "78", "stop_lat": 48.94286038776641, "code_postal": "78586", "stop_lon": 2.19093565629163, "coord": [48.94286038776641, 2.19093565629163], "stop_id": 4023797, "stop_desc": "FACE 131 AVENUE GENERAL DE GAULLE - 78586", "stop_name": "RUE DE CHATOU"}, "geometry": {"type": "Point", "coordinates": [2.19093565629163, 48.94286038776641]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ce4f0d08f3e563b5d197a4000e1f36284b232ffb", "fields": {"departement": "78", "stop_lat": 48.94489759833591, "code_postal": "78586", "stop_lon": 2.181625131483485, "coord": [48.94489759833591, 2.181625131483485], "stop_id": 4023798, "stop_desc": "AV ROBERT SCHUMAN - 78586", "stop_name": "CHARLES DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.181625131483485, 48.94489759833591]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "18048f25834e427d3a564005fd5441a86e6ff626", "fields": {"departement": "78", "stop_lat": 48.94577653563615, "code_postal": "78586", "stop_lon": 2.173586415795281, "coord": [48.94577653563615, 2.173586415795281], "stop_id": 4023802, "stop_desc": "RUE JEAN MERMOZ - 78586", "stop_name": "EGLISE DE SARTROUVILLE"}, "geometry": {"type": "Point", "coordinates": [2.173586415795281, 48.94577653563615]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eed3bdf6ae6dd0dccbbe696a3587375656517460", "fields": {"departement": "78", "stop_lat": 48.93864537025909, "code_postal": "78586", "stop_lon": 2.1702530958492527, "coord": [48.93864537025909, 2.1702530958492527], "stop_id": 4023806, "stop_desc": "121 AVENUE MAURICE BERTEAUX - 78586", "stop_name": "VOLTAIRE"}, "geometry": {"type": "Point", "coordinates": [2.1702530958492527, 48.93864537025909]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bdfb2a0ee94434710e0a6f588e3fe5c4c97cd24b", "fields": {"departement": "78", "stop_lat": 48.9385473921077, "code_postal": "78586", "stop_lon": 2.1708809294112283, "coord": [48.9385473921077, 2.1708809294112283], "stop_id": 4023807, "stop_desc": "10 R VOLTAIRE - 78586", "stop_name": "VOLTAIRE"}, "geometry": {"type": "Point", "coordinates": [2.1708809294112283, 48.9385473921077]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2db721d7b18707602939978c0a011bb885afe3a9", "fields": {"departement": "78", "stop_lat": 48.94016904281243, "code_postal": "78586", "stop_lon": 2.167356053279125, "coord": [48.94016904281243, 2.167356053279125], "stop_id": 4023808, "stop_desc": "73 AVENUE MAURICE BERTEAUX - 78586", "stop_name": "JEAN MERMOZ"}, "geometry": {"type": "Point", "coordinates": [2.167356053279125, 48.94016904281243]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c162220973d7f770e0b54e717cd95fe2c32e4b75", "fields": {"departement": "95", "stop_lat": 48.93144398832164, "code_postal": "95063", "stop_lon": 2.2118913728873326, "coord": [48.93144398832164, 2.2118913728873326], "stop_id": 4023821, "stop_desc": "88 PLACE DES DROITS DE L'HOMME - 95063", "stop_name": "PLACE DES DROITS DE L'HOMME"}, "geometry": {"type": "Point", "coordinates": [2.2118913728873326, 48.93144398832164]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8f5a93772c2d14af65a4aacd411a8cad99b00677", "fields": {"departement": "95", "stop_lat": 48.93455032243546, "code_postal": "95063", "stop_lon": 2.208951119371209, "coord": [48.93455032243546, 2.208951119371209], "stop_id": 4023822, "stop_desc": "FACE 137 AVENUE GABRIEL PERI - 95063", "stop_name": "ALBERT 1ER"}, "geometry": {"type": "Point", "coordinates": [2.208951119371209, 48.93455032243546]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6734d3bb839d85a41566cae48e3f370220e5707b", "fields": {"departement": "95", "stop_lat": 48.93783756740844, "code_postal": "95063", "stop_lon": 2.2071559392532305, "coord": [48.93783756740844, 2.2071559392532305], "stop_id": 4023823, "stop_desc": "FACE 1 RUE LUCIEN SAMPAIX - 95063", "stop_name": "LA BERTHIE"}, "geometry": {"type": "Point", "coordinates": [2.2071559392532305, 48.93783756740844]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1aae5bdba1930a8d30309dff467df419f9b54c32", "fields": {"departement": "95", "stop_lat": 48.941492827048634, "code_postal": "95018", "stop_lon": 2.2049912474439646, "coord": [48.941492827048634, 2.2049912474439646], "stop_id": 4023824, "stop_desc": "FACE 232 AVENUE GEORGES CLEMENCEAU - 95018", "stop_name": "VAL NOTRE-DAME"}, "geometry": {"type": "Point", "coordinates": [2.2049912474439646, 48.941492827048634]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "09976964e559b267e11962164abc5ca3a4451a9c", "fields": {"departement": "78", "stop_lat": 48.94525577127578, "code_postal": "78586", "stop_lon": 2.17392914841541, "coord": [48.94525577127578, 2.17392914841541], "stop_id": 4023834, "stop_desc": "0 BD DE BEZONS - 78586", "stop_name": "EGLISE DE SARTROUVILLE"}, "geometry": {"type": "Point", "coordinates": [2.17392914841541, 48.94525577127578]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "002ba141ddad0dd48b424e548f4e6b3cce42761e", "fields": {"departement": "92", "stop_lat": 48.88485158543995, "code_postal": "92062", "stop_lon": 2.226544642763386, "coord": [48.88485158543995, 2.226544642763386], "stop_id": 4023972, "stop_desc": "ROND-POINT DES BERGERES - 92062", "stop_name": "LES BERGERES"}, "geometry": {"type": "Point", "coordinates": [2.226544642763386, 48.88485158543995]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "66d2c0770fb1d2353b732f34029e053ce47c23e7", "fields": {"departement": "92", "stop_lat": 48.8843757175651, "code_postal": "92062", "stop_lon": 2.227036245944437, "coord": [48.8843757175651, 2.227036245944437], "stop_id": 4023973, "stop_desc": "129 ROND-POINT DES BERGERES - 92062", "stop_name": "LES BERGERES"}, "geometry": {"type": "Point", "coordinates": [2.227036245944437, 48.8843757175651]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b843b091b7387b739f0431eab73737b635a858d4", "fields": {"departement": "92", "stop_lat": 48.87983525134293, "code_postal": "92050", "stop_lon": 2.2158315205732415, "coord": [48.87983525134293, 2.2158315205732415], "stop_id": 4023977, "stop_desc": "84 RUE DES PLAIDEURS - 92050", "stop_name": "ROMAIN ROLLAND"}, "geometry": {"type": "Point", "coordinates": [2.2158315205732415, 48.87983525134293]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0f99e9dffe7302e7bac13bf897ed9ad25a226ecf", "fields": {"departement": "92", "stop_lat": 48.87657514902867, "code_postal": "92063", "stop_lon": 2.2013008901085636, "coord": [48.87657514902867, 2.2013008901085636], "stop_id": 4023983, "stop_desc": "10-12 RUE EUGENE SUE - 92063", "stop_name": "EUGENE SUE"}, "geometry": {"type": "Point", "coordinates": [2.2013008901085636, 48.87657514902867]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "12d4dbcb343112ad971588715b11edbda9965bf5", "fields": {"departement": "92", "stop_lat": 48.877908296637465, "code_postal": "92063", "stop_lon": 2.1961741234389067, "coord": [48.877908296637465, 2.1961741234389067], "stop_id": 4023986, "stop_desc": "101 RUE DANTON - 92063", "stop_name": "FABRE D'EGLANTINE"}, "geometry": {"type": "Point", "coordinates": [2.1961741234389067, 48.877908296637465]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4958abf0481ec1e5bd4b4b6c97d33a7787252d63", "fields": {"departement": "92", "stop_lat": 48.86921083861, "code_postal": "92063", "stop_lon": 2.1981050688502193, "coord": [48.86921083861, 2.1981050688502193], "stop_id": 4023996, "stop_desc": "103 AVENUE DU PRESIDENT POMPIDOU - 92063", "stop_name": "RACINE"}, "geometry": {"type": "Point", "coordinates": [2.1981050688502193, 48.86921083861]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c35fd2cb9bb0d88fede404ac6dd5042f7f582f7b", "fields": {"departement": "92", "stop_lat": 48.86548918638805, "code_postal": "92063", "stop_lon": 2.197352198011936, "coord": [48.86548918638805, 2.197352198011936], "stop_id": 4023999, "stop_desc": "30 RUE DU LIEUTENANT COLONEL DE MONTBRISON - 92063", "stop_name": "VICTORIEN SARDOU"}, "geometry": {"type": "Point", "coordinates": [2.197352198011936, 48.86548918638805]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cf1698fbd59daade7f71d4395cf0427b11f279a8", "fields": {"departement": "92", "stop_lat": 48.86458658354024, "code_postal": "92063", "stop_lon": 2.179850077344955, "coord": [48.86458658354024, 2.179850077344955], "stop_id": 4024013, "stop_desc": "FACE 144 RTE DE L'EMPEREUR - 92063", "stop_name": "LYCEE DE RUEIL"}, "geometry": {"type": "Point", "coordinates": [2.179850077344955, 48.86458658354024]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "47ca9da0988fa0fd01a4379f44d3a6a0d8c368b4", "fields": {"departement": "92", "stop_lat": 48.89160141473085, "code_postal": "92062", "stop_lon": 2.2372019748450263, "coord": [48.89160141473085, 2.2372019748450263], "stop_id": 4024020, "stop_desc": "PISTE GARE ROUTIERE - 92062", "stop_name": "LA DEFENSE-METRO-RER-TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.2372019748450263, 48.89160141473085]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8f36c9ee8ba5a8136faa80be3d1149ff37c1d30c", "fields": {"departement": "92", "stop_lat": 48.88461955721549, "code_postal": "92062", "stop_lon": 2.2386463359117337, "coord": [48.88461955721549, 2.2386463359117337], "stop_id": 4024023, "stop_desc": "110-112 R DE LA REPUBLIQUE - 92062", "stop_name": "MAIRIE DE PUTEAUX"}, "geometry": {"type": "Point", "coordinates": [2.2386463359117337, 48.88461955721549]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f6a5bee1cec2e067118d5d83ea385c5545658d3b", "fields": {"departement": "92", "stop_lat": 48.87989863325634, "code_postal": "92050", "stop_lon": 2.216294664203322, "coord": [48.87989863325634, 2.216294664203322], "stop_id": 4024033, "stop_desc": "107 RUE DES PLAIDEURS - 92050", "stop_name": "ROMAIN ROLLAND"}, "geometry": {"type": "Point", "coordinates": [2.216294664203322, 48.87989863325634]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ae7c6a0cfddac26f7aafef582158588715d7a343", "fields": {"departement": "92", "stop_lat": 48.876664959562326, "code_postal": "92063", "stop_lon": 2.2012461530238006, "coord": [48.876664959562326, 2.2012461530238006], "stop_id": 4024039, "stop_desc": "FACE 8 RUE EUGENE SUE - 92063", "stop_name": "EUGENE SUE"}, "geometry": {"type": "Point", "coordinates": [2.2012461530238006, 48.876664959562326]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d9698a2bfc4e30756f811100d66f00ae93b330d1", "fields": {"departement": "92", "stop_lat": 48.87493598656726, "code_postal": "92063", "stop_lon": 2.190786735325377, "coord": [48.87493598656726, 2.190786735325377], "stop_id": 4024045, "stop_desc": "FACE 41 BOULEVARD EDMOND ROSTAND - 92063", "stop_name": "RUE DES FOLIES"}, "geometry": {"type": "Point", "coordinates": [2.190786735325377, 48.87493598656726]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1d9ff780825919b456708188dd431f930e8ab6ff", "fields": {"departement": "92", "stop_lat": 48.87044862023422, "code_postal": "92063", "stop_lon": 2.1960036880384797, "coord": [48.87044862023422, 2.1960036880384797], "stop_id": 4024050, "stop_desc": "FACE 83 AVENUE DU PRESIDENT POMPIDOU - 92063", "stop_name": "LA PAIX"}, "geometry": {"type": "Point", "coordinates": [2.1960036880384797, 48.87044862023422]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d2c3b501a64115e034b5022f2ab7a5ad244f23b6", "fields": {"departement": "92", "stop_lat": 48.86902191369568, "code_postal": "92063", "stop_lon": 2.1979420952336834, "coord": [48.86902191369568, 2.1979420952336834], "stop_id": 4024052, "stop_desc": "120 AVENUE DU PRESIDENT POMPIDOU - 92063", "stop_name": "RACINE"}, "geometry": {"type": "Point", "coordinates": [2.1979420952336834, 48.86902191369568]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4a111af417682bf48aa37e55c1d52982eeb76add", "fields": {"departement": "92", "stop_lat": 48.86236706288304, "code_postal": "92063", "stop_lon": 2.194404725521763, "coord": [48.86236706288304, 2.194404725521763], "stop_id": 4024061, "stop_desc": "54 AV DE FOUILLEUSE - 92063", "stop_name": "FOUILLEUSE"}, "geometry": {"type": "Point", "coordinates": [2.194404725521763, 48.86236706288304]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7cf89c465f7eb9d8a1721f8424a65e948dc4f6fa", "fields": {"departement": "92", "stop_lat": 48.86128502730734, "code_postal": "92063", "stop_lon": 2.1708972435685348, "coord": [48.86128502730734, 2.1708972435685348], "stop_id": 4024072, "stop_desc": "RUE DE LA CHATAIGNERAIE - 92063", "stop_name": "CENTRE MADELEINE DANIELOU"}, "geometry": {"type": "Point", "coordinates": [2.1708972435685348, 48.86128502730734]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f1798b43b1cc7bdb66e6abddc09715e535d87fa3", "fields": {"departement": "92", "stop_lat": 48.88243089977522, "code_postal": "92073", "stop_lon": 2.2232384756225154, "coord": [48.88243089977522, 2.2232384756225154], "stop_id": 4024076, "stop_desc": "FACE 34 ROUTE DES FUSILLES DE LA RESISTANCE - 92073", "stop_name": "FELIX FAURE"}, "geometry": {"type": "Point", "coordinates": [2.2232384756225154, 48.88243089977522]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "058e32e3a6fa3cde91b82e2a5a6edf25c8ee6f8e", "fields": {"departement": "92", "stop_lat": 48.89488972341188, "code_postal": "92050", "stop_lon": 2.1924750061252696, "coord": [48.89488972341188, 2.1924750061252696], "stop_id": 4024088, "stop_desc": "AVENUE JULES QUENTIN - 92050", "stop_name": "JULES QUENTIN"}, "geometry": {"type": "Point", "coordinates": [2.1924750061252696, 48.89488972341188]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c1c89686a7ee52763f1bbb974bfa080f939f0673", "fields": {"departement": "92", "stop_lat": 48.88773054840441, "code_postal": "92050", "stop_lon": 2.188120317758764, "coord": [48.88773054840441, 2.188120317758764], "stop_id": 4024090, "stop_desc": "85 AVENUE LENINE - 92050", "stop_name": "LES GOULVENTS"}, "geometry": {"type": "Point", "coordinates": [2.188120317758764, 48.88773054840441]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9eaa9a30d0c6c112117c99289509a6f2d7a88863", "fields": {"departement": "92", "stop_lat": 48.887946428384666, "code_postal": "92050", "stop_lon": 2.1882696085948057, "coord": [48.887946428384666, 2.1882696085948057], "stop_id": 4024091, "stop_desc": "FACE 85 AVENUE LENINE - 92050", "stop_name": "LES GOULVENTS"}, "geometry": {"type": "Point", "coordinates": [2.1882696085948057, 48.887946428384666]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c7e64a166b93b508c2274b9fa92ebd66feae3bab", "fields": {"departement": "92", "stop_lat": 48.887447524764085, "code_postal": "92050", "stop_lon": 2.199378049116164, "coord": [48.887447524764085, 2.199378049116164], "stop_id": 4024095, "stop_desc": "FACE 7 AVENUE LENINE - 92050", "stop_name": "PLACE DE LA BOULE - LENINE"}, "geometry": {"type": "Point", "coordinates": [2.199378049116164, 48.887447524764085]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d7cade5e2311d1405fadb382abf53fb96afef69c", "fields": {"departement": "92", "stop_lat": 48.88371336825328, "code_postal": "92050", "stop_lon": 2.2033535096094816, "coord": [48.88371336825328, 2.2033535096094816], "stop_id": 4024096, "stop_desc": "82 RUE PAUL VAILLANT COUTURIER - 92050", "stop_name": "PIERRE SERGENT"}, "geometry": {"type": "Point", "coordinates": [2.2033535096094816, 48.88371336825328]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "90fb00119b471bc90d8b430e7f37e9e0720ec5a6", "fields": {"departement": "92", "stop_lat": 48.88426143542383, "code_postal": "92050", "stop_lon": 2.2032158199743552, "coord": [48.88426143542383, 2.2032158199743552], "stop_id": 4024097, "stop_desc": "65-67 RUE PAUL VAILLANT COUTURIER - 92050", "stop_name": "PIERRE SERGENT"}, "geometry": {"type": "Point", "coordinates": [2.2032158199743552, 48.88426143542383]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b2b1a47f5f15d9a0fb0168d2ce88a39dc7995f70", "fields": {"departement": "92", "stop_lat": 48.87808078212805, "code_postal": "92050", "stop_lon": 2.205534554136397, "coord": [48.87808078212805, 2.205534554136397], "stop_id": 4024099, "stop_desc": "77 RUE DE GARCHES - 92050", "stop_name": "LES CHAILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.205534554136397, 48.87808078212805]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "141dbb59954f45511f2196673c8549de881e26ab", "fields": {"departement": "92", "stop_lat": 48.87045720657914, "code_postal": "92063", "stop_lon": 2.2034422382803878, "coord": [48.87045720657914, 2.2034422382803878], "stop_id": 4024103, "stop_desc": "FACE 38 RUE GALLIENI - 92063", "stop_name": "8 MAI 1945"}, "geometry": {"type": "Point", "coordinates": [2.2034422382803878, 48.87045720657914]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6c446377e348ef19d6ccb1aa92fa9ff2985a1b4d", "fields": {"departement": "92", "stop_lat": 48.884503004736075, "code_postal": "92062", "stop_lon": 2.238987243699706, "coord": [48.884503004736075, 2.238987243699706], "stop_id": 4024114, "stop_desc": "FACE104BIS RUE DE LA REPUBLIQUE - 92062", "stop_name": "MAIRIE DE PUTEAUX"}, "geometry": {"type": "Point", "coordinates": [2.238987243699706, 48.884503004736075]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "96726ac5256e5343c2352259b0aa80706e56aa3d", "fields": {"departement": "92", "stop_lat": 48.88441324201123, "code_postal": "92062", "stop_lon": 2.2287532212789096, "coord": [48.88441324201123, 2.2287532212789096], "stop_id": 4024118, "stop_desc": "167 RUE DE LA REPUBLIQUE - 92062", "stop_name": "PALISSY"}, "geometry": {"type": "Point", "coordinates": [2.2287532212789096, 48.88441324201123]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fc1c67e6c2996a6c3bfe4cf044f494a831891c9c", "fields": {"departement": "92", "stop_lat": 48.8843757175651, "code_postal": "92062", "stop_lon": 2.227036245944437, "coord": [48.8843757175651, 2.227036245944437], "stop_id": 4024120, "stop_desc": "129 ROND-POINT DES BERGERES - 92062", "stop_name": "LES BERGERES"}, "geometry": {"type": "Point", "coordinates": [2.227036245944437, 48.8843757175651]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "baad71b31c8d954b3f9ef60c78eea58787b417bf", "fields": {"departement": "92", "stop_lat": 48.87967564135883, "code_postal": "92050", "stop_lon": 2.2179712045178617, "coord": [48.87967564135883, 2.2179712045178617], "stop_id": 4024122, "stop_desc": "141 RUE DES PLAIDEURS - 92050", "stop_name": "LIBERTE - PLAIDEURS"}, "geometry": {"type": "Point", "coordinates": [2.2179712045178617, 48.87967564135883]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2d7d877324fdc9d7fa35b32f5c6a7bd39a28aa3d", "fields": {"departement": "92", "stop_lat": 48.87989863325634, "code_postal": "92050", "stop_lon": 2.216294664203322, "coord": [48.87989863325634, 2.216294664203322], "stop_id": 4024123, "stop_desc": "107 RUE DES PLAIDEURS - 92050", "stop_name": "ROMAIN ROLLAND"}, "geometry": {"type": "Point", "coordinates": [2.216294664203322, 48.87989863325634]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0cd4994029e82227bc80002db09ec59174178ee7", "fields": {"departement": "92", "stop_lat": 48.87744385318489, "code_postal": "92063", "stop_lon": 2.1986416205603554, "coord": [48.87744385318489, 2.1986416205603554], "stop_id": 4024131, "stop_desc": "125 RUE DANTON - 92063", "stop_name": "VOLTAIRE"}, "geometry": {"type": "Point", "coordinates": [2.1986416205603554, 48.87744385318489]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2d4e8e0e98b8e9e05eace860890bd10e230e160a", "fields": {"departement": "92", "stop_lat": 48.877908296637465, "code_postal": "92063", "stop_lon": 2.1961741234389067, "coord": [48.877908296637465, 2.1961741234389067], "stop_id": 4024133, "stop_desc": "101 RUE DANTON - 92063", "stop_name": "FABRE D'EGLANTINE"}, "geometry": {"type": "Point", "coordinates": [2.1961741234389067, 48.877908296637465]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "00284fd2987c7b112073ef5787833073a453af2d", "fields": {"departement": "92", "stop_lat": 48.87060156604863, "code_postal": "92063", "stop_lon": 2.1961395093841154, "coord": [48.87060156604863, 2.1961395093841154], "stop_id": 4024141, "stop_desc": "83 AVENUE DU PRESIDENT POMPIDOU - 92063", "stop_name": "LA PAIX"}, "geometry": {"type": "Point", "coordinates": [2.1961395093841154, 48.87060156604863]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fcb9b0d745e05ed398d6a8f3360849980d51cc13", "fields": {"departement": "92", "stop_lat": 48.86902191369568, "code_postal": "92063", "stop_lon": 2.1979420952336834, "coord": [48.86902191369568, 2.1979420952336834], "stop_id": 4024142, "stop_desc": "120 AVENUE DU PRESIDENT POMPIDOU - 92063", "stop_name": "RACINE"}, "geometry": {"type": "Point", "coordinates": [2.1979420952336834, 48.86902191369568]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a00528216704835d51386a788aace94b84453995", "fields": {"departement": "92", "stop_lat": 48.868097614319126, "code_postal": "92063", "stop_lon": 2.1991434150061457, "coord": [48.868097614319126, 2.1991434150061457], "stop_id": 4024145, "stop_desc": "127 AVENUE DU PRESIDENT POMPIDOU - 92063", "stop_name": "AVENUE DU MONT VALERIEN"}, "geometry": {"type": "Point", "coordinates": [2.1991434150061457, 48.868097614319126]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "463385ca3a41a319485d3e6308ecc8e7a83767af", "fields": {"departement": "92", "stop_lat": 48.86548918638805, "code_postal": "92063", "stop_lon": 2.197352198011936, "coord": [48.86548918638805, 2.197352198011936], "stop_id": 4024146, "stop_desc": "30 RUE DU LIEUTENANT COLONEL DE MONTBRISON - 92063", "stop_name": "VICTORIEN SARDOU"}, "geometry": {"type": "Point", "coordinates": [2.197352198011936, 48.86548918638805]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "74ef260a6de4ddf17a4978f3cf8b86b188fe2faa", "fields": {"departement": "92", "stop_lat": 48.86530961517471, "code_postal": "92063", "stop_lon": 2.1975025289849834, "coord": [48.86530961517471, 2.1975025289849834], "stop_id": 4024147, "stop_desc": "29 RUE DU LIEUTENANT COLONEL DE MONTBRISON - 92063", "stop_name": "VICTORIEN SARDOU"}, "geometry": {"type": "Point", "coordinates": [2.1975025289849834, 48.86530961517471]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cd7ee229e94663c14dbc31ec0b91d2b7c17b5288", "fields": {"departement": "92", "stop_lat": 48.86256548606598, "code_postal": "92063", "stop_lon": 2.1949899115932214, "coord": [48.86256548606598, 2.1949899115932214], "stop_id": 4024150, "stop_desc": "FACE 58 AVENUE DE FOUILLEUSE - 92063", "stop_name": "FOUILLEUSE"}, "geometry": {"type": "Point", "coordinates": [2.1949899115932214, 48.86256548606598]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b5b8bbf6faa998fba275f1bd00f99b9251ce498f", "fields": {"departement": "92", "stop_lat": 48.86236706288304, "code_postal": "92063", "stop_lon": 2.194404725521763, "coord": [48.86236706288304, 2.194404725521763], "stop_id": 4024151, "stop_desc": "54 AV DE FOUILLEUSE - 92063", "stop_name": "FOUILLEUSE"}, "geometry": {"type": "Point", "coordinates": [2.194404725521763, 48.86236706288304]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "53ca9f3fd55387edf1fb681101da7fd45f2f6b7b", "fields": {"departement": "92", "stop_lat": 48.86249754050552, "code_postal": "92063", "stop_lon": 2.1908354879595704, "coord": [48.86249754050552, 2.1908354879595704], "stop_id": 4024153, "stop_desc": "9 RUE DU 19 JANVIER - 92063", "stop_name": "CARREY DE BELLEMARE"}, "geometry": {"type": "Point", "coordinates": [2.1908354879595704, 48.86249754050552]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "59248d32e17fea91868fb0d9656f8eae75c04527", "fields": {"departement": "93", "stop_lat": 48.910269160707436, "code_postal": "93008", "stop_lon": 2.445851196538282, "coord": [48.910269160707436, 2.445851196538282], "stop_id": 4036937, "stop_desc": "AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "PIERRE SEMARD"}, "geometry": {"type": "Point", "coordinates": [2.445851196538282, 48.910269160707436]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e8d7c060a9074130c2bb2bb5f7a83cf3789e9e82", "fields": {"departement": "93", "stop_lat": 48.91035297644203, "code_postal": "93008", "stop_lon": 2.4318626387990308, "coord": [48.91035297644203, 2.4318626387990308], "stop_id": 4036946, "stop_desc": "FACE 161 AVENUE HENRI BARBUSSE - 93008", "stop_name": "GARE - GRANDE CEINTURE"}, "geometry": {"type": "Point", "coordinates": [2.4318626387990308, 48.91035297644203]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c4d3f82b9b78e1b22411fec3934d8c81a79c69cc", "fields": {"departement": "93", "stop_lat": 48.906404975054635, "code_postal": "93008", "stop_lon": 2.423552809864812, "coord": [48.906404975054635, 2.423552809864812], "stop_id": 4036950, "stop_desc": "AVENUE HENRI BARBUSSE - 93008", "stop_name": "HENRI GAUTIER"}, "geometry": {"type": "Point", "coordinates": [2.423552809864812, 48.906404975054635]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d0bac943b00b1cfb506a50852292e5ce84ba9e81", "fields": {"departement": "93", "stop_lat": 48.898166318336614, "code_postal": "93055", "stop_lon": 2.4058460102302743, "coord": [48.898166318336614, 2.4058460102302743], "stop_id": 4036956, "stop_desc": "AVENUE DU GENERAL LECLERC - 93055", "stop_name": "DELIZY"}, "geometry": {"type": "Point", "coordinates": [2.4058460102302743, 48.898166318336614]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0f3cd8f82f089eedf89cf94b487eb2a5fbe30b17", "fields": {"departement": "93", "stop_lat": 48.891535699652785, "code_postal": "93055", "stop_lon": 2.4024571717916654, "coord": [48.891535699652785, 2.4024571717916654], "stop_id": 4036965, "stop_desc": "2-8 RUE HOCHE - 93055", "stop_name": "HOCHE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.4024571717916654, 48.891535699652785]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f40a2ea8d88c61bb9e19d288fcf92c61a85fd552", "fields": {"departement": "75", "stop_lat": 48.880711840653206, "code_postal": "75110", "stop_lon": 2.3644803008586255, "coord": [48.880711840653206, 2.3644803008586255], "stop_id": 4036974, "stop_desc": "217 RUE DU FAUBOURG SAINT-MARTIN - 75110", "stop_name": "LOUIS BLANC"}, "geometry": {"type": "Point", "coordinates": [2.3644803008586255, 48.880711840653206]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ec6326b4514e667607abaa778a5d230cc86aca03", "fields": {"departement": "75", "stop_lat": 48.87243595580059, "code_postal": "75110", "stop_lon": 2.3574049633654526, "coord": [48.87243595580059, 2.3574049633654526], "stop_id": 4036980, "stop_desc": "67-69 RUE DU FAUBOURG SAINT-MARTIN - 75110", "stop_name": "MAIRIE DU 10E"}, "geometry": {"type": "Point", "coordinates": [2.3574049633654526, 48.87243595580059]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f8a613be20b2a2d2c519f9d4f2205d009c95f1b0", "fields": {"departement": "75", "stop_lat": 48.8579858907306, "code_postal": "75107", "stop_lon": 2.332936994185843, "coord": [48.8579858907306, 2.332936994185843], "stop_id": 4036991, "stop_desc": "4 RUE DES SAINTS-PERES - 75107", "stop_name": "PONT DU CARROUSEL - QUAI VOLTAIRE"}, "geometry": {"type": "Point", "coordinates": [2.332936994185843, 48.8579858907306]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "13fc51f94f087e31f0958c0fd2e1999822bcc12d", "fields": {"departement": "75", "stop_lat": 48.85121823484648, "code_postal": "75106", "stop_lon": 2.3305951430899357, "coord": [48.85121823484648, 2.3305951430899357], "stop_id": 4036994, "stop_desc": "76 RUE DE RENNES - 75106", "stop_name": "MICHEL DEBRE"}, "geometry": {"type": "Point", "coordinates": [2.3305951430899357, 48.85121823484648]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f05b6e87624ddd4b4a83502212c5ea24407d478d", "fields": {"departement": "75", "stop_lat": 48.84195996643212, "code_postal": "75115", "stop_lon": 2.3194990816420824, "coord": [48.84195996643212, 2.3194990816420824], "stop_id": 4037003, "stop_desc": "8-10 BOULEVARD DE VAUGIRARD - 75115", "stop_name": "GARE MONTPARNASSE"}, "geometry": {"type": "Point", "coordinates": [2.3194990816420824, 48.84195996643212]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8919fd74b51faf6a642ab1836e136597fd3e279d", "fields": {"departement": "75", "stop_lat": 48.84109667094733, "code_postal": "75115", "stop_lon": 2.316463002196349, "coord": [48.84109667094733, 2.316463002196349], "stop_id": 4037005, "stop_desc": "44 BOULEVARD DE VAUGIRARD - 75115", "stop_name": "ARMORIQUE - MUSEE POSTAL"}, "geometry": {"type": "Point", "coordinates": [2.316463002196349, 48.84109667094733]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "13b9512ddf9d4c1cfedb779a1cb0c225ab2698d6", "fields": {"departement": "75", "stop_lat": 48.8425042999016, "code_postal": "75115", "stop_lon": 2.3019609713401774, "coord": [48.8425042999016, 2.3019609713401774], "stop_id": 4037010, "stop_desc": "118-120 RUE LECOURBE - 75115", "stop_name": "CAMBRONNE - LECOURBE"}, "geometry": {"type": "Point", "coordinates": [2.3019609713401774, 48.8425042999016]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bcf27d3d504954c0861ef8f3beb5b0121c87052d", "fields": {"departement": "75", "stop_lat": 48.8418655148874, "code_postal": "75115", "stop_lon": 2.2997691922702015, "coord": [48.8418655148874, 2.2997691922702015], "stop_id": 4037011, "stop_desc": "148 RUE LECOURBE - 75115", "stop_name": "MAIRIE DU 15E"}, "geometry": {"type": "Point", "coordinates": [2.2997691922702015, 48.8418655148874]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5e0aea6ba409a6818eb83596fe8a54344877f49c", "fields": {"departement": "92", "stop_lat": 48.827501031407145, "code_postal": "92040", "stop_lon": 2.273262483998071, "coord": [48.827501031407145, 2.273262483998071], "stop_id": 4037023, "stop_desc": "5 RUE DU GOUVERNEUR GENERAL EBOUE - 92040", "stop_name": "VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.273262483998071, 48.827501031407145]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2293dd30c4064eaba4cb3b06fd41119cced00640", "fields": {"departement": "92", "stop_lat": 48.824921780034416, "code_postal": "92040", "stop_lon": 2.2736467944118726, "coord": [48.824921780034416, 2.2736467944118726], "stop_id": 4037024, "stop_desc": "FACE 29BIS RUE KLEBER - 92040", "stop_name": "MAIRIE D'ISSY-METRO"}, "geometry": {"type": "Point", "coordinates": [2.2736467944118726, 48.824921780034416]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "da9ca042c18a88d763c17dfd584c1913f7c6c115", "fields": {"departement": "92", "stop_lat": 48.830667352064815, "code_postal": "92040", "stop_lon": 2.278445245919053, "coord": [48.830667352064815, 2.278445245919053], "stop_id": 4037027, "stop_desc": "23 RUE GUYNEMER - 92040", "stop_name": "SEVERINE"}, "geometry": {"type": "Point", "coordinates": [2.278445245919053, 48.830667352064815]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9b2680f1c1b673c0a5319f394f5bc9b4fa107b58", "fields": {"departement": "75", "stop_lat": 48.85234167570838, "code_postal": "75105", "stop_lon": 2.343778173799205, "coord": [48.85234167570838, 2.343778173799205], "stop_id": 4037041, "stop_desc": "7 BOULEVARD SAINT-MICHEL - 75105", "stop_name": "SAINT-MICHEL - SAINT-GERMAIN"}, "geometry": {"type": "Point", "coordinates": [2.343778173799205, 48.85234167570838]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0ab937b43420892fc7166b34fed85867bdf6b6a0", "fields": {"departement": "75", "stop_lat": 48.86069953105734, "code_postal": "75104", "stop_lon": 2.34956822574239, "coord": [48.86069953105734, 2.34956822574239], "stop_id": 4037043, "stop_desc": "28 BOULEVARD DE SEBASTOPOL - 75104", "stop_name": "LES HALLES - CENTRE GEORGES POMPIDOU"}, "geometry": {"type": "Point", "coordinates": [2.34956822574239, 48.86069953105734]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d62cc57237c446dae27f34f0727d41d703e0be21", "fields": {"departement": "93", "stop_lat": 48.87984142225998, "code_postal": "93064", "stop_lon": 2.4776046871341837, "coord": [48.87984142225998, 2.4776046871341837], "stop_id": 5991373, "stop_desc": "FACE 106 AVENUE DU GENERAL DE GAULLE - 93064", "stop_name": "LEON BLUM"}, "geometry": {"type": "Point", "coordinates": [2.4776046871341837, 48.87984142225998]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6da04537c9577ef2b2be8f4c63ba8d27081c02dd", "fields": {"departement": "93", "stop_lat": 48.87757332740218, "code_postal": "93064", "stop_lon": 2.4803781759061594, "coord": [48.87757332740218, 2.4803781759061594], "stop_id": 5991375, "stop_desc": "FACE 61 AVENUE DU GENERAL DE GAULLE - 93064", "stop_name": "GABRIEL PERI - DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.4803781759061594, 48.87757332740218]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0ffc0891423874cbe98f620cbd3fcee7706f4542", "fields": {"departement": "92", "stop_lat": 48.81096662517294, "code_postal": "92020", "stop_lon": 2.3019279796787178, "coord": [48.81096662517294, 2.3019279796787178], "stop_id": 6000771, "stop_desc": "PISTE GARE ROUTIERE - 92020", "stop_name": "CHATILLON - MONTROUGE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.3019279796787178, 48.81096662517294]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a7346c4792a8dcfd651da2bc7f8635086ed4604b", "fields": {"departement": "92", "stop_lat": 48.73972316332122, "code_postal": "92002", "stop_lon": 2.2892566374363725, "coord": [48.73972316332122, 2.2892566374363725], "stop_id": 6041755, "stop_desc": "RUE DE MASSY - 92002", "stop_name": "LES BACONNETS-RER"}, "geometry": {"type": "Point", "coordinates": [2.2892566374363725, 48.73972316332122]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "82f33502cdc835248488349d4f1a195e33b4a702", "fields": {"departement": "91", "stop_lat": 48.73441224239229, "code_postal": "91377", "stop_lon": 2.292210156102793, "coord": [48.73441224239229, 2.292210156102793], "stop_id": 6041760, "stop_desc": "FACE 6-8 RUE DE MONTPELLIER - 91377", "stop_name": "BOURGOGNE"}, "geometry": {"type": "Point", "coordinates": [2.292210156102793, 48.73441224239229]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "887bc7b1db76323a7c15fc4eb192f38de20a2470", "fields": {"departement": "91", "stop_lat": 48.73434040280648, "code_postal": "91377", "stop_lon": 2.292386863289612, "coord": [48.73434040280648, 2.292386863289612], "stop_id": 6041761, "stop_desc": "8 RUE DE MONTPELLIER - 91377", "stop_name": "BOURGOGNE"}, "geometry": {"type": "Point", "coordinates": [2.292386863289612, 48.73434040280648]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "19c8f39c5501bcd4a8d52bbad71fb28c1430b26f", "fields": {"departement": "91", "stop_lat": 48.72961869341443, "code_postal": "91377", "stop_lon": 2.2854073018509964, "coord": [48.72961869341443, 2.2854073018509964], "stop_id": 6041769, "stop_desc": "RUE D'ESPAGNE - 91377", "stop_name": "MOSCOU - ROME"}, "geometry": {"type": "Point", "coordinates": [2.2854073018509964, 48.72961869341443]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e4c4f6cccff07254f12104e1c2f475a976acf579", "fields": {"departement": "91", "stop_lat": 48.729353668825254, "code_postal": "91377", "stop_lon": 2.2762229087458588, "coord": [48.729353668825254, 2.2762229087458588], "stop_id": 6041774, "stop_desc": "3 RUE FUSTEL DE COULANGES - 91377", "stop_name": "GABRIEL PERI"}, "geometry": {"type": "Point", "coordinates": [2.2762229087458588, 48.729353668825254]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "077a7ddd2c34741b39fc5f18fb0437b046308778", "fields": {"departement": "91", "stop_lat": 48.734185885914364, "code_postal": "91377", "stop_lon": 2.269749331950209, "coord": [48.734185885914364, 2.269749331950209], "stop_id": 6041780, "stop_desc": "AVENUE DES MARTYRS DE SOWETO - 91377", "stop_name": "CHARLES DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.269749331950209, 48.734185885914364]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7ba407d5ab67bcfe5842ff8b2303686671b1c548", "fields": {"departement": "91", "stop_lat": 48.73375007805158, "code_postal": "91377", "stop_lon": 2.2624531835693826, "coord": [48.73375007805158, 2.2624531835693826], "stop_id": 6041783, "stop_desc": "FACE 7-9 BOULEVARD DU 1ER MAI - 91377", "stop_name": "BOULEVARD DU 1ER MAI"}, "geometry": {"type": "Point", "coordinates": [2.2624531835693826, 48.73375007805158]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4ff95f3b8b216f5d5c018acddad28b0006992e56", "fields": {"departement": "91", "stop_lat": 48.73362431871539, "code_postal": "91377", "stop_lon": 2.2625756555009833, "coord": [48.73362431871539, 2.2625756555009833], "stop_id": 6041784, "stop_desc": "7 BOULEVARD DU 1ER MAI - 91377", "stop_name": "BOULEVARD DU 1ER MAI"}, "geometry": {"type": "Point", "coordinates": [2.2625756555009833, 48.73362431871539]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3dc60dec23079f6c5a1595fcb3ffc4b3f05a7391", "fields": {"departement": "91", "stop_lat": 48.73445685515161, "code_postal": "91377", "stop_lon": 2.2573838025168427, "coord": [48.73445685515161, 2.2573838025168427], "stop_id": 6041785, "stop_desc": "51 BOULEVARD DU 1ER MAI - 91377", "stop_name": "GEORGES MANDEL"}, "geometry": {"type": "Point", "coordinates": [2.2573838025168427, 48.73445685515161]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1ee06628494fa64dde7585dbe12a777e7ac7d23a", "fields": {"departement": "91", "stop_lat": 48.73430404493988, "code_postal": "91377", "stop_lon": 2.257370449190574, "coord": [48.73430404493988, 2.257370449190574], "stop_id": 6041786, "stop_desc": "53 BOULEVARD DU 1ER MAI - 91377", "stop_name": "GEORGES MANDEL"}, "geometry": {"type": "Point", "coordinates": [2.257370449190574, 48.73430404493988]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e343a57cb4d3ff6393cf126c7e0e8e72c67edda1", "fields": {"departement": "91", "stop_lat": 48.73195699870029, "code_postal": "91377", "stop_lon": 2.255757147921993, "coord": [48.73195699870029, 2.255757147921993], "stop_id": 6041788, "stop_desc": "71 RUE DE VERSAILLES - 91377", "stop_name": "LYCEE DE VILGENIS"}, "geometry": {"type": "Point", "coordinates": [2.255757147921993, 48.73195699870029]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5d7c4735a30461244b3d7f3ef08ce44f67aa85c1", "fields": {"departement": "91", "stop_lat": 48.72503602399836, "code_postal": "91377", "stop_lon": 2.255835922477194, "coord": [48.72503602399836, 2.255835922477194], "stop_id": 6041794, "stop_desc": "PISTE GARE ROUTIERE - 91377", "stop_name": "MASSY-PALAISEAU RER"}, "geometry": {"type": "Point", "coordinates": [2.255835922477194, 48.72503602399836]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "68ff33cd7b80da49bccf5164950f325117b9946d", "fields": {"departement": "91", "stop_lat": 48.7321014294692, "code_postal": "91312", "stop_lon": 2.223663255396271, "coord": [48.7321014294692, 2.223663255396271], "stop_id": 6041818, "stop_desc": "RUE JULES FERRY - 91312", "stop_name": "JULES FERRY - REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.223663255396271, 48.7321014294692]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "415639f2f2337aaecd20f64999035d7eba70071c", "fields": {"departement": "91", "stop_lat": 48.73626568002945, "code_postal": "91312", "stop_lon": 2.2172267546299467, "coord": [48.73626568002945, 2.2172267546299467], "stop_id": 6041822, "stop_desc": "ROUTE DE VAUHALLAN - 91312", "stop_name": "BOUTON D'OR"}, "geometry": {"type": "Point", "coordinates": [2.2172267546299467, 48.73626568002945]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "720cc391dd17160e414fc1c88370b6277af040dd", "fields": {"departement": "91", "stop_lat": 48.73301351789884, "code_postal": "91635", "stop_lon": 2.20198881573625, "coord": [48.73301351789884, 2.20198881573625], "stop_id": 6041828, "stop_desc": "15 ROUTE DE SACLAY - 91635", "stop_name": "GRANDS CHAMPS - FAVREUSE"}, "geometry": {"type": "Point", "coordinates": [2.20198881573625, 48.73301351789884]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "af529804dce710e61efcd4476c897393a8db6368", "fields": {"departement": "91", "stop_lat": 48.73233256804282, "code_postal": "91635", "stop_lon": 2.1961207582806446, "coord": [48.73233256804282, 2.1961207582806446], "stop_id": 6041830, "stop_desc": "ROUTE DE SACLAY - 91635", "stop_name": "ABBAYE CIMETIERE"}, "geometry": {"type": "Point", "coordinates": [2.1961207582806446, 48.73233256804282]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ea5b9628b89c3384908a8264936cc65aa5c709fd", "fields": {"departement": "91", "stop_lat": 48.72749923805249, "code_postal": "91377", "stop_lon": 2.2709400193270484, "coord": [48.72749923805249, 2.2709400193270484], "stop_id": 6041836, "stop_desc": "RUE VICTOR BASCH - 91377", "stop_name": "LA TUILERIE"}, "geometry": {"type": "Point", "coordinates": [2.2709400193270484, 48.72749923805249]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e73d9db30a0efbb9296e73bc10d23cac17bdd35e", "fields": {"departement": "75", "stop_lat": 48.82106438438323, "code_postal": "75114", "stop_lon": 2.324338054601359, "coord": [48.82106438438323, 2.324338054601359], "stop_id": 6041838, "stop_desc": "RUE DE LA LEGION ETRANGERE - 75114", "stop_name": "PORTE D'ORLEANS - ERNEST REYER"}, "geometry": {"type": "Point", "coordinates": [2.324338054601359, 48.82106438438323]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3cdf3da3de9d8908bd2ace124e94636966c3e25d", "fields": {"departement": "75", "stop_lat": 48.82106438438323, "code_postal": "75114", "stop_lon": 2.324338054601359, "coord": [48.82106438438323, 2.324338054601359], "stop_id": 6041839, "stop_desc": "RUE DE LA LEGION ETRANGERE - 75114", "stop_name": "PORTE D'ORLEANS - ERNEST REYER"}, "geometry": {"type": "Point", "coordinates": [2.324338054601359, 48.82106438438323]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e46f51e1ca2b4c8efff84de4f2dd0d78937ed9c8", "fields": {"departement": "91", "stop_lat": 48.71677842244562, "code_postal": "91377", "stop_lon": 2.2959337186988806, "coord": [48.71677842244562, 2.2959337186988806], "stop_id": 6041848, "stop_desc": "50 RUE DE CHILLY - 91377", "stop_name": "RUE DES FLEURS"}, "geometry": {"type": "Point", "coordinates": [2.2959337186988806, 48.71677842244562]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f9615f59af4b54dda3ae0ef39a31f785e61a7f32", "fields": {"departement": "91", "stop_lat": 48.70487397259365, "code_postal": "91161", "stop_lon": 2.3159063254443284, "coord": [48.70487397259365, 2.3159063254443284], "stop_id": 6041856, "stop_desc": "30 AVENUE MAZARIN - 91161", "stop_name": "BEAUREGARD"}, "geometry": {"type": "Point", "coordinates": [2.3159063254443284, 48.70487397259365]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d960dea9fc96ec228ff7a4cb04fd4d6b2844ffb2", "fields": {"departement": "91", "stop_lat": 48.702134037740976, "code_postal": "91432", "stop_lon": 2.3280612447081723, "coord": [48.702134037740976, 2.3280612447081723], "stop_id": 6041861, "stop_desc": "41 AVENUE GABRIEL PERI - 91432", "stop_name": "PIERRE LOTI"}, "geometry": {"type": "Point", "coordinates": [2.3280612447081723, 48.702134037740976]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c4cc04139f1927dc1bca70e3ab6698bc71193c08", "fields": {"departement": "91", "stop_lat": 48.70465994218228, "code_postal": "91432", "stop_lon": 2.329948462768087, "coord": [48.70465994218228, 2.329948462768087], "stop_id": 6041864, "stop_desc": "AVENUE MARCEL TELOTTE - 91432", "stop_name": "PIERRE BROSSOLETTE"}, "geometry": {"type": "Point", "coordinates": [2.329948462768087, 48.70465994218228]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0344b3c7c2a6cd2505bc046c92447d2da4eba542", "fields": {"departement": "91", "stop_lat": 48.6972923578992, "code_postal": "91345", "stop_lon": 2.2988821266562796, "coord": [48.6972923578992, 2.2988821266562796], "stop_id": 6041882, "stop_desc": "FACE 34 AVENUE DU GENERAL DE GAULLE - 91345", "stop_name": "GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.2988821266562796, 48.6972923578992]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bd528f6b3f97bc1713efb0feee20f78848c228a1", "fields": {"departement": "91", "stop_lat": 48.69969462982099, "code_postal": "91161", "stop_lon": 2.3069327160654125, "coord": [48.69969462982099, 2.3069327160654125], "stop_id": 6041885, "stop_desc": "47 RUE HENRI BARBUSSE - 91161", "stop_name": "CHILLY-MAZARIN RER"}, "geometry": {"type": "Point", "coordinates": [2.3069327160654125, 48.69969462982099]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "edad28aefcc82d31b629aeb8defebca8bc51ffb8", "fields": {"departement": "91", "stop_lat": 48.69972359172762, "code_postal": "91161", "stop_lon": 2.316152861000321, "coord": [48.69972359172762, 2.316152861000321], "stop_id": 6041894, "stop_desc": "AVENUE PIERRE BROSSOLETTE - 91161", "stop_name": "DIVISION LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.316152861000321, 48.69972359172762]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "12aac1fae1dd572950f89639bd1c6ed576463c0e", "fields": {"departement": "91", "stop_lat": 48.70220512156463, "code_postal": "91161", "stop_lon": 2.320510931279847, "coord": [48.70220512156463, 2.320510931279847], "stop_id": 6041895, "stop_desc": "36 AVENUE PIERRE BROSSOLETTE - 91161", "stop_name": "PLACE DE LA LIBERATION"}, "geometry": {"type": "Point", "coordinates": [2.320510931279847, 48.70220512156463]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "63fb77a8c159537943eb313668133768f0b77885", "fields": {"departement": "91", "stop_lat": 48.70274441181845, "code_postal": "91161", "stop_lon": 2.320361379742285, "coord": [48.70274441181845, 2.320361379742285], "stop_id": 6041907, "stop_desc": "FACE 5 AVENUE MAZARIN - 91161", "stop_name": "PLACE DE LA LIBERATION"}, "geometry": {"type": "Point", "coordinates": [2.320361379742285, 48.70274441181845]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "35528e844dea9be098d2932abd610179a092f6fb", "fields": {"departement": "91", "stop_lat": 48.70757856381556, "code_postal": "91161", "stop_lon": 2.3111654184174446, "coord": [48.70757856381556, 2.3111654184174446], "stop_id": 6041910, "stop_desc": "AVENUE MAZARIN - 91161", "stop_name": "CIMETIERE DE CHILLY-MAZARIN"}, "geometry": {"type": "Point", "coordinates": [2.3111654184174446, 48.70757856381556]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f3f720e1c75789be5420cb596c8dfc9415c6f631", "fields": {"departement": "93", "stop_lat": 48.93329097181622, "code_postal": "93046", "stop_lon": 2.5484881734567137, "coord": [48.93329097181622, 2.5484881734567137], "stop_id": 6041911, "stop_desc": "FACE 83 BIS RUE DU DOCTEUR ROUX - 93046", "stop_name": "SQUARE HENRI LEGRAND"}, "geometry": {"type": "Point", "coordinates": [2.5484881734567137, 48.93329097181622]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "08e7c53dedb9aab90120accd1e9e961c9d39f09a", "fields": {"departement": "92", "stop_lat": 48.790672776140546, "code_postal": "92023", "stop_lon": 2.2640307434412787, "coord": [48.790672776140546, 2.2640307434412787], "stop_id": 6046785, "stop_desc": "FACE 117 AVENUE DU GENERAL DE GAULLE - 92023", "stop_name": "SOLEIL LEVANT"}, "geometry": {"type": "Point", "coordinates": [2.2640307434412787, 48.790672776140546]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f9b12f363c5986892f4105213b6691720d22651b", "fields": {"departement": "78", "stop_lat": 48.78154828594826, "code_postal": "78640", "stop_lon": 2.2089482577333666, "coord": [48.78154828594826, 2.2089482577333666], "stop_id": 6046802, "stop_desc": "7 AVENUE MORANE SAULNIER - 78640", "stop_name": "INOVEL PARC NORD"}, "geometry": {"type": "Point", "coordinates": [2.2089482577333666, 48.78154828594826]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0627d75234dc8dbef762fa78f1029cc047961149", "fields": {"departement": "78", "stop_lat": 48.78515236022436, "code_postal": "78640", "stop_lon": 2.1790163043796027, "coord": [48.78515236022436, 2.1790163043796027], "stop_id": 6046810, "stop_desc": "AVENUE ROBERT WAGNER - 78640", "stop_name": "ROBERT WAGNER"}, "geometry": {"type": "Point", "coordinates": [2.1790163043796027, 48.78515236022436]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f3060b6932d6bf0948e5c660c79dbab1d78a8a07", "fields": {"departement": "78", "stop_lat": 48.78518820334172, "code_postal": "78640", "stop_lon": 2.1789345867757355, "coord": [48.78518820334172, 2.1789345867757355], "stop_id": 6046811, "stop_desc": "AVENUE ROBERT WAGNER - 78640", "stop_name": "ROBERT WAGNER"}, "geometry": {"type": "Point", "coordinates": [2.1789345867757355, 48.78518820334172]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "003af285046cb25bcb0b3d0c6c6e5a324ff83a0a", "fields": {"departement": "78", "stop_lat": 48.805639799279135, "code_postal": "78686", "stop_lon": 2.1688576460676927, "coord": [48.805639799279135, 2.1688576460676927], "stop_id": 6046814, "stop_desc": "RUE GABRIEL PERI - 78686", "stop_name": "VIROFLAY - RIVE DROITE"}, "geometry": {"type": "Point", "coordinates": [2.1688576460676927, 48.805639799279135]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4fd956e26ad67034efc8c45ac9870f8a50c9b835", "fields": {"departement": "94", "stop_lat": 48.81476240384012, "code_postal": "94043", "stop_lon": 2.360621543737651, "coord": [48.81476240384012, 2.360621543737651], "stop_id": 6075082, "stop_desc": "18 AVENUE DE FONTAINEBLEAU - 94043", "stop_name": "ROGER SALENGRO - FONTAINEBLEAU"}, "geometry": {"type": "Point", "coordinates": [2.360621543737651, 48.81476240384012]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "28611f34a39de503e6face0eca0fd310f01b0117", "fields": {"departement": "94", "stop_lat": 48.814771316142455, "code_postal": "94043", "stop_lon": 2.361002603265579, "coord": [48.814771316142455, 2.361002603265579], "stop_id": 6075083, "stop_desc": "17 AVENUE DE FONTAINEBLEAU - 94043", "stop_name": "ROGER SALENGRO - FONTAINEBLEAU"}, "geometry": {"type": "Point", "coordinates": [2.361002603265579, 48.814771316142455]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a99211f7072f428f746ba90682f552529aa15b17", "fields": {"departement": "94", "stop_lat": 48.812137822019444, "code_postal": "94043", "stop_lon": 2.361423259884513, "coord": [48.812137822019444, 2.361423259884513], "stop_id": 6075084, "stop_desc": "58 AVENUE DE FONTAINEBLEAU - 94043", "stop_name": "CONVENTION - FONTAINEBLEAU"}, "geometry": {"type": "Point", "coordinates": [2.361423259884513, 48.812137822019444]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b3f7730203c6c0200e204d76efe8eb71a0944361", "fields": {"departement": "94", "stop_lat": 48.81193100032783, "code_postal": "94043", "stop_lon": 2.361926673680407, "coord": [48.81193100032783, 2.361926673680407], "stop_id": 6075085, "stop_desc": "55 AVENUE DE FONTAINEBLEAU - 94043", "stop_name": "CONVENTION - FONTAINEBLEAU"}, "geometry": {"type": "Point", "coordinates": [2.361926673680407, 48.81193100032783]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "55727fb6ce91ad30364323399ca46bdbf2b56b05", "fields": {"departement": "94", "stop_lat": 48.80558634105472, "code_postal": "94043", "stop_lon": 2.3582090243525666, "coord": [48.80558634105472, 2.3582090243525666], "stop_id": 6075090, "stop_desc": "16-16BIS BOULEVARD CHASTENET DE GERY - 94043", "stop_name": "CHASTENET DE GERY"}, "geometry": {"type": "Point", "coordinates": [2.3582090243525666, 48.80558634105472]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "547a9cc88dd4d5b242f3d2b89532b58467023b8e", "fields": {"departement": "94", "stop_lat": 48.80076035769578, "code_postal": "94076", "stop_lon": 2.3553091150312904, "coord": [48.80076035769578, 2.3553091150312904], "stop_id": 6075092, "stop_desc": "FACE 4 BOULEVARD CHASTENET DE GERY - 94076", "stop_name": "AMBROISE CROIZAT"}, "geometry": {"type": "Point", "coordinates": [2.3553091150312904, 48.80076035769578]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ce96d2fd420ac0d504e7a4e5a9a61d2cb5518244", "fields": {"departement": "94", "stop_lat": 48.79832469082517, "code_postal": "94076", "stop_lon": 2.3550497765575598, "coord": [48.79832469082517, 2.3550497765575598], "stop_id": 6075095, "stop_desc": "PLACE DU 8 MAI 1945 - 94076", "stop_name": "PLACE DU 8 MAI 1945"}, "geometry": {"type": "Point", "coordinates": [2.3550497765575598, 48.79832469082517]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c23ed8f1c4724b2b666fca5013d38e5e491b5ea2", "fields": {"departement": "94", "stop_lat": 48.787054009493104, "code_postal": "94076", "stop_lon": 2.3541073858526538, "coord": [48.787054009493104, 2.3541073858526538], "stop_id": 6075100, "stop_desc": "8 BIS RUE DE CHEVILLY - 94076", "stop_name": "VERDUN - REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.3541073858526538, 48.787054009493104]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "744180ade764ad08eeda780b85a490093ddd7222", "fields": {"departement": "94", "stop_lat": 48.78765619122067, "code_postal": "94076", "stop_lon": 2.3541755913822158, "coord": [48.78765619122067, 2.3541755913822158], "stop_id": 6075101, "stop_desc": "FACE 2 RUE DE VERDUN - 94076", "stop_name": "VERDUN - REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.3541755913822158, 48.78765619122067]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "abe5c8742ededdb6a833d48ef9a9639343e438e3", "fields": {"departement": "94", "stop_lat": 48.78490582321585, "code_postal": "94076", "stop_lon": 2.354582734218751, "coord": [48.78490582321585, 2.354582734218751], "stop_id": 6075103, "stop_desc": "FACE 48 RUE DE CHEVILLY - 94076", "stop_name": "LES LOZAITS"}, "geometry": {"type": "Point", "coordinates": [2.354582734218751, 48.78490582321585]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a676f2bc8f30f8b4fbaf4cf4283e48b4e6bf81df", "fields": {"departement": "94", "stop_lat": 48.7775716281211, "code_postal": "94038", "stop_lon": 2.354634684879699, "coord": [48.7775716281211, 2.354634684879699], "stop_id": 6075106, "stop_desc": "141 RUE DE BICETRE - 94038", "stop_name": "LES DAHLIAS"}, "geometry": {"type": "Point", "coordinates": [2.354634684879699, 48.7775716281211]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ed3761d0e5ee6d24b12a79e8e1f5515cb78157de", "fields": {"departement": "94", "stop_lat": 48.775693340248715, "code_postal": "94038", "stop_lon": 2.3531653765116993, "coord": [48.775693340248715, 2.3531653765116993], "stop_id": 6075108, "stop_desc": "105 RUE DE BICETRE - 94038", "stop_name": "LES COQUELICOTS"}, "geometry": {"type": "Point", "coordinates": [2.3531653765116993, 48.775693340248715]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c9c8e857eecb38e89e8ac3432dfbf815272bf90d", "fields": {"departement": "94", "stop_lat": 48.775190042091346, "code_postal": "94038", "stop_lon": 2.352934043488661, "coord": [48.775190042091346, 2.352934043488661], "stop_id": 6075109, "stop_desc": "84 RUE DE BICETRE - 94038", "stop_name": "LES COQUELICOTS"}, "geometry": {"type": "Point", "coordinates": [2.352934043488661, 48.775190042091346]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "59714a939617683d1cd8a6bda2bbbf51066ecdcf", "fields": {"departement": "92", "stop_lat": 48.74788189955395, "code_postal": "92002", "stop_lon": 2.309296732352314, "coord": [48.74788189955395, 2.309296732352314], "stop_id": 6085321, "stop_desc": "AVENUE ARMAND GUILLEBAUD - 92002", "stop_name": "DESCARTES"}, "geometry": {"type": "Point", "coordinates": [2.309296732352314, 48.74788189955395]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "21125cf980e4d32ca67adfda73dfc5e22013d33a", "fields": {"departement": "93", "stop_lat": 48.95816434930164, "code_postal": "93031", "stop_lon": 2.328875532262177, "coord": [48.95816434930164, 2.328875532262177], "stop_id": 6095576, "stop_desc": "ROUTE DE SAINT-LEU - 93031", "stop_name": "GARE D'EPINAY-VILLETANEUSE"}, "geometry": {"type": "Point", "coordinates": [2.328875532262177, 48.95816434930164]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e13eb5f1b8ef04ae89e71561090429c175ffea25", "fields": {"departement": "75", "stop_lat": 48.857535849643995, "code_postal": "75104", "stop_lon": 2.3506026208485578, "coord": [48.857535849643995, 2.3506026208485578], "stop_id": 6114729, "stop_desc": "2 RUE DE LA COUTELLERIE - 75104", "stop_name": "HOTEL DE VILLE DE PARIS"}, "geometry": {"type": "Point", "coordinates": [2.3506026208485578, 48.857535849643995]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "894b7bd0e0fe3cfa0c9bde510680568a1f446cf6", "fields": {"departement": "75", "stop_lat": 48.85702356778014, "code_postal": "75104", "stop_lon": 2.3505888687775256, "coord": [48.85702356778014, 2.3505888687775256], "stop_id": 6114732, "stop_desc": "2-4 AVENUE VICTORIA - 75104", "stop_name": "HOTEL DE VILLE"}, "geometry": {"type": "Point", "coordinates": [2.3505888687775256, 48.85702356778014]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d3ee451756abb00cac53fe14c612fa8eda733a95", "fields": {"departement": "75", "stop_lat": 48.89837942410141, "code_postal": "75118", "stop_lon": 2.3694376662733503, "coord": [48.89837942410141, 2.3694376662733503], "stop_id": 6131933, "stop_desc": "FACE 4 BOULEVARD NEY - 75118", "stop_name": "PORTE D'AUBERVILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.3694376662733503, 48.89837942410141]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d535c710700b81347e488fa546981364701bc66e", "fields": {"departement": "75", "stop_lat": 48.89787149246499, "code_postal": "75118", "stop_lon": 2.3357280163206116, "coord": [48.89787149246499, 2.3357280163206116], "stop_id": 6131937, "stop_desc": "150-152 BOULEVARD NEY - 75118", "stop_name": "PORTE DE MONTMARTRE"}, "geometry": {"type": "Point", "coordinates": [2.3357280163206116, 48.89787149246499]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e6fc56f36691408ccd8b222ff512235b5eb22cef", "fields": {"departement": "75", "stop_lat": 48.889580290177456, "code_postal": "75117", "stop_lon": 2.302555840141141, "coord": [48.889580290177456, 2.302555840141141], "stop_id": 6131946, "stop_desc": "106 BOULEVARD BERTHIER - 75117", "stop_name": "PORTE D'ASNIERES"}, "geometry": {"type": "Point", "coordinates": [2.302555840141141, 48.889580290177456]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6919d4ad9bc23386b8decc3b606f5ee0e8bcda69", "fields": {"departement": "75", "stop_lat": 48.89785327113471, "code_postal": "75118", "stop_lon": 2.3450788436751133, "coord": [48.89785327113471, 2.3450788436751133], "stop_id": 6131955, "stop_desc": "BOULEVARD NEY - 75118", "stop_name": "PORTE DE CLIGNANCOURT"}, "geometry": {"type": "Point", "coordinates": [2.3450788436751133, 48.89785327113471]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e58472cb4fa2b541b8cfc06844ddf42b8bc78768", "fields": {"departement": "75", "stop_lat": 48.90006882773614, "code_postal": "75118", "stop_lon": 2.3700793973012155, "coord": [48.90006882773614, 2.3700793973012155], "stop_id": 6131967, "stop_desc": "AVENUE DE LA PORTE D'AUBERVILLIERS - 75118", "stop_name": "SKANDERBEG"}, "geometry": {"type": "Point", "coordinates": [2.3700793973012155, 48.90006882773614]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "787da72505e42aee95e57fafb05eeabb972d91e1", "fields": {"departement": "94", "stop_lat": 48.788470834681945, "code_postal": "94076", "stop_lon": 2.3698320279301677, "coord": [48.788470834681945, 2.3698320279301677], "stop_id": 6143543, "stop_desc": "18 TER AVENUE LOUIS ARAGON - 94076", "stop_name": "RUE DE LA COMMUNE"}, "geometry": {"type": "Point", "coordinates": [2.3698320279301677, 48.788470834681945]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3798ec800c9586a03b07a71ef50820c40e8f5813", "fields": {"departement": "94", "stop_lat": 48.79196144548288, "code_postal": "94081", "stop_lon": 2.3863892504374427, "coord": [48.79196144548288, 2.3863892504374427], "stop_id": 6143546, "stop_desc": "13 AVENUE DU MOULIN DE SAQUET - 94081", "stop_name": "MUSEE MAC-VAL"}, "geometry": {"type": "Point", "coordinates": [2.3863892504374427, 48.79196144548288]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "94a6f2b50e26fa9df3e3b0b589e1ff83cf7d41d9", "fields": {"departement": "94", "stop_lat": 48.795784945342916, "code_postal": "94081", "stop_lon": 2.3979563979549137, "coord": [48.795784945342916, 2.3979563979549137], "stop_id": 6143551, "stop_desc": "FACE 62 AVENUE PAUL VAILLANT-COUTURIER - 94081", "stop_name": "PAUL VAILLANT-COUTURIER"}, "geometry": {"type": "Point", "coordinates": [2.3979563979549137, 48.795784945342916]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "31bedb85cd7f09618217b774ef3d79eb31622cca", "fields": {"departement": "94", "stop_lat": 48.80129206892912, "code_postal": "94081", "stop_lon": 2.402547922508139, "coord": [48.80129206892912, 2.402547922508139], "stop_id": 6143553, "stop_desc": "PLACE PIERRE SEMARD - 94081", "stop_name": "VITRY RER"}, "geometry": {"type": "Point", "coordinates": [2.402547922508139, 48.80129206892912]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "93bdaf199266f952b62e866370d40fd730dfba65", "fields": {"departement": "94", "stop_lat": 48.804220736262316, "code_postal": "94041", "stop_lon": 2.4049871449392652, "coord": [48.804220736262316, 2.4049871449392652], "stop_id": 6143554, "stop_desc": "FACE 144 AVENUE ANATOLE FRANCE - 94041", "stop_name": "PORT A L'ANGLAIS"}, "geometry": {"type": "Point", "coordinates": [2.4049871449392652, 48.804220736262316]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5952e3af75011a199561b249d9be92c34f066689", "fields": {"departement": "94", "stop_lat": 48.81688746102785, "code_postal": "94041", "stop_lon": 2.399573410259213, "coord": [48.81688746102785, 2.399573410259213], "stop_id": 6143558, "stop_desc": "75 BOULEVARD PAUL VAILLANT-COUTURIER - 94041", "stop_name": "MOISE - PIERRE GALAIS"}, "geometry": {"type": "Point", "coordinates": [2.399573410259213, 48.81688746102785]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1c2a0cc0fb3c76fa236a34e4a085721629ec24ac", "fields": {"departement": "94", "stop_lat": 48.818290102338466, "code_postal": "94041", "stop_lon": 2.398499900300091, "coord": [48.818290102338466, 2.398499900300091], "stop_id": 6143559, "stop_desc": "5 RUE LENINE - 94041", "stop_name": "VAILLANT COUTURIER - LENINE"}, "geometry": {"type": "Point", "coordinates": [2.398499900300091, 48.818290102338466]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "97d845243a87f182576d2f456f7468539928848e", "fields": {"departement": "94", "stop_lat": 48.823667195047015, "code_postal": "94018", "stop_lon": 2.410103212176365, "coord": [48.823667195047015, 2.410103212176365], "stop_id": 6143563, "stop_desc": "109 RUE DE PARIS - 94018", "stop_name": "THEATRE DE CHARENTON"}, "geometry": {"type": "Point", "coordinates": [2.410103212176365, 48.823667195047015]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "df24085af183411681607e876f21aa4cf3439c83", "fields": {"departement": "94", "stop_lat": 48.821606439542855, "code_postal": "94018", "stop_lon": 2.4141972075539684, "coord": [48.821606439542855, 2.4141972075539684], "stop_id": 6143565, "stop_desc": "RUE DE LA REPUBLIQUE - 94018", "stop_name": "CHARENTON-ECOLES"}, "geometry": {"type": "Point", "coordinates": [2.4141972075539684, 48.821606439542855]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "15b3d07a1efeeb2233be76b973f3619094e62bc1", "fields": {"departement": "94", "stop_lat": 48.823325059800965, "code_postal": "94018", "stop_lon": 2.4110827508438324, "coord": [48.823325059800965, 2.4110827508438324], "stop_id": 6143566, "stop_desc": "88 RUE DE PARIS - 94018", "stop_name": "THEATRE DE CHARENTON"}, "geometry": {"type": "Point", "coordinates": [2.4110827508438324, 48.823325059800965]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "32e3ae2133c70414d6d05fb5b41cbfd9cffaf6e5", "fields": {"departement": "94", "stop_lat": 48.7924967978393, "code_postal": "94081", "stop_lon": 2.395109466390311, "coord": [48.7924967978393, 2.395109466390311], "stop_id": 6143579, "stop_desc": "AVENUE PAUL VAILLANT-COUTURIER - 94081", "stop_name": "EGLISE DE VITRY"}, "geometry": {"type": "Point", "coordinates": [2.395109466390311, 48.7924967978393]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "38885caaf99afffd5eecb1ea404819e50ffdf2aa", "fields": {"departement": "94", "stop_lat": 48.789686136205226, "code_postal": "94081", "stop_lon": 2.389597300476869, "coord": [48.789686136205226, 2.389597300476869], "stop_id": 6143581, "stop_desc": "FACE 41 AVENUE DE L'ABBE ROGER DERRY - 94081", "stop_name": "HOTEL DE VILLE DE VITRY - R. DERRY"}, "geometry": {"type": "Point", "coordinates": [2.389597300476869, 48.789686136205226]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aa134cb2f7ed21377b4e826025728f532648cd13", "fields": {"departement": "94", "stop_lat": 48.8255747954595, "code_postal": "94018", "stop_lon": 2.406389823927422, "coord": [48.8255747954595, 2.406389823927422], "stop_id": 6143589, "stop_desc": "FACE 16 AVENUE DE LA LIBERTE - 94018", "stop_name": "LIBERTE"}, "geometry": {"type": "Point", "coordinates": [2.406389823927422, 48.8255747954595]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "93054bfa4ab951ca00aca9a170006a37eb9d4e74", "fields": {"departement": "94", "stop_lat": 48.790610719207514, "code_postal": "94081", "stop_lon": 2.392196366578341, "coord": [48.790610719207514, 2.392196366578341], "stop_id": 6143602, "stop_desc": "10 AVENUE DE L'ABBE ROGER DERRY - 94081", "stop_name": "AUDIGEOIS"}, "geometry": {"type": "Point", "coordinates": [2.392196366578341, 48.790610719207514]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "af456a1aebae1aedd23dc00ff38a442171c301e4", "fields": {"departement": "94", "stop_lat": 48.789686136205226, "code_postal": "94081", "stop_lon": 2.389597300476869, "coord": [48.789686136205226, 2.389597300476869], "stop_id": 6143603, "stop_desc": "FACE 41 AVENUE DE L'ABBE ROGER DERRY - 94081", "stop_name": "HOTEL DE VILLE DE VITRY - R. DERRY"}, "geometry": {"type": "Point", "coordinates": [2.389597300476869, 48.789686136205226]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cf9d554f850a447ab01d5d62682b2a849bd3b5ed", "fields": {"departement": "92", "stop_lat": 48.80387036712337, "code_postal": "92007", "stop_lon": 2.320723064287912, "coord": [48.80387036712337, 2.320723064287912], "stop_id": 6161493, "stop_desc": "8 AVENUE VICTOR HUGO - 92007", "stop_name": "GUSTAVE COURBET"}, "geometry": {"type": "Point", "coordinates": [2.320723064287912, 48.80387036712337]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f6aea456a60807bc223d3c11582ff1b4f6345914", "fields": {"departement": "75", "stop_lat": 48.828444674765805, "code_postal": "75115", "stop_lon": 2.2731524186663283, "coord": [48.828444674765805, 2.2731524186663283], "stop_id": 5151525, "stop_desc": "38 R DU COLONEL AVIA - 75115", "stop_name": "FRERES VOISIN"}, "geometry": {"type": "Point", "coordinates": [2.2731524186663283, 48.828444674765805]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5db27f51f6859d621932268be5e1955116b7314b", "fields": {"departement": "92", "stop_lat": 48.755050861485685, "code_postal": "92002", "stop_lon": 2.296759680994518, "coord": [48.755050861485685, 2.296759680994518], "stop_id": 5155517, "stop_desc": "34 RUE MAURICE LABROUSSE - 92002", "stop_name": "THEATRE-MAIRIE"}, "geometry": {"type": "Point", "coordinates": [2.296759680994518, 48.755050861485685]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0c9380e8b20ce71b0379144a1dd63ae80df4572f", "fields": {"departement": "93", "stop_lat": 48.96339730303593, "code_postal": "93031", "stop_lon": 2.2976748852355953, "coord": [48.96339730303593, 2.2976748852355953], "stop_id": 5157991, "stop_desc": "41 AVENUE GALLIENI - 93031", "stop_name": "RUE DE SAINT-GRATIEN"}, "geometry": {"type": "Point", "coordinates": [2.2976748852355953, 48.96339730303593]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f13e6bef035990bf7fab51992c5c120dbc88b107", "fields": {"departement": "93", "stop_lat": 48.96145505205384, "code_postal": "93031", "stop_lon": 2.2943872759927437, "coord": [48.96145505205384, 2.2943872759927437], "stop_id": 5157992, "stop_desc": "2 BIS ROUTE D'ARGENTEUIL - 93031", "stop_name": "CYGNE D'ENGHIEN"}, "geometry": {"type": "Point", "coordinates": [2.2943872759927437, 48.96145505205384]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "83ce3eef5af3de36080ae36b9116c953dc55a584", "fields": {"departement": "93", "stop_lat": 48.9568088163607, "code_postal": "93031", "stop_lon": 2.2940363157436994, "coord": [48.9568088163607, 2.2940363157436994], "stop_id": 5157997, "stop_desc": "10 RUE DE MARSEILLE - 93031", "stop_name": "RUE DE MARSEILLE"}, "geometry": {"type": "Point", "coordinates": [2.2940363157436994, 48.9568088163607]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d7c7143c00921a10fd3ffcc095c88afad20835fd", "fields": {"departement": "93", "stop_lat": 48.955849516158175, "code_postal": "93031", "stop_lon": 2.300860225319865, "coord": [48.955849516158175, 2.300860225319865], "stop_id": 5158001, "stop_desc": "FACE 11 RUE FELIX MERLIN - 93031", "stop_name": "EPINAY-SUR-SEINE - GARE"}, "geometry": {"type": "Point", "coordinates": [2.300860225319865, 48.955849516158175]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d4f8ecc13a60faac9b901247c99e4e2801a976a6", "fields": {"departement": "93", "stop_lat": 48.95482797177079, "code_postal": "93031", "stop_lon": 2.31229624732756, "coord": [48.95482797177079, 2.31229624732756], "stop_id": 5158004, "stop_desc": "AVENUE DE LATTRE DE TASSIGNY - 93031", "stop_name": "LACEPEDE"}, "geometry": {"type": "Point", "coordinates": [2.31229624732756, 48.95482797177079]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "097d4a114d380d0e5f51fd87afa9e34d3676cae4", "fields": {"departement": "93", "stop_lat": 48.9526179031098, "code_postal": "93031", "stop_lon": 2.315695008580914, "coord": [48.9526179031098, 2.315695008580914], "stop_id": 5158006, "stop_desc": "RUE DE LA REPUBLIQUE - 93031", "stop_name": "ROSE BERTIN"}, "geometry": {"type": "Point", "coordinates": [2.315695008580914, 48.9526179031098]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f6dbec611f419d22ad7ce54fe49dd09975baf4c1", "fields": {"departement": "93", "stop_lat": 48.95283371042151, "code_postal": "93031", "stop_lon": 2.3164044805876465, "coord": [48.95283371042151, 2.3164044805876465], "stop_id": 5158007, "stop_desc": "PLACE DU GENERAL LECLERC - 93031", "stop_name": "ROSE BERTIN"}, "geometry": {"type": "Point", "coordinates": [2.3164044805876465, 48.95283371042151]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0eb3344483fcd29a8904a7e6537e836a1139dce3", "fields": {"departement": "93", "stop_lat": 48.953050253528204, "code_postal": "93031", "stop_lon": 2.322121848600631, "coord": [48.953050253528204, 2.322121848600631], "stop_id": 5158011, "stop_desc": "FACE 34 RUE DU COMMANDANT LOUIS BOUCHET - 93031", "stop_name": "LYCEE D'EPINAY-SUR-SEINE"}, "geometry": {"type": "Point", "coordinates": [2.322121848600631, 48.953050253528204]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e2de8bf8380b34a54764e8dba9a640c94b62f501", "fields": {"departement": "93", "stop_lat": 48.95279015464042, "code_postal": "93031", "stop_lon": 2.3269660448838123, "coord": [48.95279015464042, 2.3269660448838123], "stop_id": 5158013, "stop_desc": "49 RUE DU COMMANDANT LOUIS BOUCHET - 93031", "stop_name": "AVENUE DE LA MARNE - COMMANDANT LOUIS BOUCHET"}, "geometry": {"type": "Point", "coordinates": [2.3269660448838123, 48.95279015464042]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dcbd4b0ea0bd5be28fab5966863614477a555384", "fields": {"departement": "93", "stop_lat": 48.956321872581206, "code_postal": "93031", "stop_lon": 2.3263239649110883, "coord": [48.956321872581206, 2.3263239649110883], "stop_id": 5158014, "stop_desc": "FACE 73 AVENUE DE LA MARNE - 93031", "stop_name": "RUE DES PRESLES"}, "geometry": {"type": "Point", "coordinates": [2.3263239649110883, 48.956321872581206]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f850581d0fcd646bdd3c26f9e9bf65f9122db565", "fields": {"departement": "93", "stop_lat": 48.94953732619852, "code_postal": "93031", "stop_lon": 2.341498138792808, "coord": [48.94953732619852, 2.341498138792808], "stop_id": 5158021, "stop_desc": "59 ROUTE DE SAINT-LEU - 93031", "stop_name": "CESAR"}, "geometry": {"type": "Point", "coordinates": [2.341498138792808, 48.94953732619852]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a215c0fea2c10f407af6c0c63cfdf7a2fee48b4c", "fields": {"departement": "92", "stop_lat": 48.93472662034221, "code_postal": "92078", "stop_lon": 2.325932944395314, "coord": [48.93472662034221, 2.325932944395314], "stop_id": 5158034, "stop_desc": "AVENUE DE VERDUN - 92078", "stop_name": "LA NOUE"}, "geometry": {"type": "Point", "coordinates": [2.325932944395314, 48.93472662034221]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "951b7ec1fb525a3c4fea032c586d7d9b49dbe791", "fields": {"departement": "92", "stop_lat": 48.931373892357634, "code_postal": "92036", "stop_lon": 2.288042404693419, "coord": [48.931373892357634, 2.288042404693419], "stop_id": 5158044, "stop_desc": "AVENUE LUCIEN LANTERNIER - 92036", "stop_name": "LE LUTH"}, "geometry": {"type": "Point", "coordinates": [2.288042404693419, 48.931373892357634]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "17e2ae806aaf293335863c131a201de3b16e9892", "fields": {"departement": "92", "stop_lat": 48.924973942801074, "code_postal": "92004", "stop_lon": 2.285048107368607, "coord": [48.924973942801074, 2.285048107368607], "stop_id": 5158048, "stop_desc": "CHEMIN DU FOSSE DE L'AUMONE - 92004", "stop_name": "ABBE GLATZ"}, "geometry": {"type": "Point", "coordinates": [2.285048107368607, 48.924973942801074]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3358774813c9a16e1b389de6c6865484302abd5e", "fields": {"departement": "92", "stop_lat": 48.91585586683023, "code_postal": "92004", "stop_lon": 2.294302289078872, "coord": [48.91585586683023, 2.294302289078872], "stop_id": 5158053, "stop_desc": "PISTE GARE ROUTIERE - 92004", "stop_name": "GABRIEL PERI-METRO"}, "geometry": {"type": "Point", "coordinates": [2.294302289078872, 48.91585586683023]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d10151430693cf7ada128b5c2ac477e78719b341", "fields": {"departement": "75", "stop_lat": 48.8893417810624, "code_postal": "75117", "stop_lon": 2.3225629388550773, "coord": [48.8893417810624, 2.3225629388550773], "stop_id": 5158070, "stop_desc": "100 AVENUE DE CLICHY - 75117", "stop_name": "LEGENDRE"}, "geometry": {"type": "Point", "coordinates": [2.3225629388550773, 48.8893417810624]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1adeaf4ed6b2aa0463f60704515424eb9c42e0c0", "fields": {"departement": "75", "stop_lat": 48.88778725739655, "code_postal": "75117", "stop_lon": 2.3248665614447788, "coord": [48.88778725739655, 2.3248665614447788], "stop_id": 5158071, "stop_desc": "69-71 AVENUE DE CLICHY - 75117", "stop_name": "LA FOURCHE"}, "geometry": {"type": "Point", "coordinates": [2.3248665614447788, 48.88778725739655]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c9225ea85fea8c792006cfde6f93ade13a98c78f", "fields": {"departement": "75", "stop_lat": 48.87442327938621, "code_postal": "75108", "stop_lon": 2.3255373687031535, "coord": [48.87442327938621, 2.3255373687031535], "stop_id": 5158082, "stop_desc": "10 RUE DE ROME - 75108", "stop_name": "GARE SAINT-LAZARE"}, "geometry": {"type": "Point", "coordinates": [2.3255373687031535, 48.87442327938621]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d8118526272ec0fc1f9b2a7f6d7a08c5e28beb80", "fields": {"departement": "92", "stop_lat": 48.90114819778661, "code_postal": "92024", "stop_lon": 2.30794629123773, "coord": [48.90114819778661, 2.30794629123773], "stop_id": 5158086, "stop_desc": "62 RUE MARTRE - 92024", "stop_name": "BARBUSSE - MARTRE"}, "geometry": {"type": "Point", "coordinates": [2.30794629123773, 48.90114819778661]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "df5fd8ab6774617331f6a2e9854ad7f698f969f3", "fields": {"departement": "92", "stop_lat": 48.92524363395361, "code_postal": "92036", "stop_lon": 2.2852387696877594, "coord": [48.92524363395361, 2.2852387696877594], "stop_id": 5158088, "stop_desc": "BOULEVARD PIERRE DE COUBERTIN - 92036", "stop_name": "ABBE GLATZ"}, "geometry": {"type": "Point", "coordinates": [2.2852387696877594, 48.92524363395361]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "71a3db5900914f75270717a9ecb7261cbb4827f2", "fields": {"departement": "92", "stop_lat": 48.928370858133576, "code_postal": "92036", "stop_lon": 2.2847309866572316, "coord": [48.928370858133576, 2.2847309866572316], "stop_id": 5158089, "stop_desc": "BOULEVARD PIERRE DE COUBERTIN - 92036", "stop_name": "PATINOIRE"}, "geometry": {"type": "Point", "coordinates": [2.2847309866572316, 48.928370858133576]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0ee43834d6aaa9319774019dbc70051164095bde", "fields": {"departement": "93", "stop_lat": 48.95314107920405, "code_postal": "93031", "stop_lon": 2.3368043817358464, "coord": [48.95314107920405, 2.3368043817358464], "stop_id": 5158092, "stop_desc": "FACE 133 ROUTE DE SAINT-LEU - 93031", "stop_name": "J.-B. CLEMENT - CARNOT"}, "geometry": {"type": "Point", "coordinates": [2.3368043817358464, 48.95314107920405]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "60ff825164b137bb69627d69d97f7edab146409c", "fields": {"departement": "75", "stop_lat": 48.86184718176563, "code_postal": "75103", "stop_lon": 2.3656009792180224, "coord": [48.86184718176563, 2.3656009792180224], "stop_id": 3687439, "stop_desc": "10 RUE COMMINES - 75103", "stop_name": "BRETAGNE"}, "geometry": {"type": "Point", "coordinates": [2.3656009792180224, 48.86184718176563]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "90e48c718ca651d2ebb4ef917b6c5f4b25118916", "fields": {"departement": "94", "stop_lat": 48.81492358660343, "code_postal": "94046", "stop_lon": 2.4215498634161805, "coord": [48.81492358660343, 2.4215498634161805], "stop_id": 3686539, "stop_desc": "FACE 31-35 AVENUE DU GENERAL LECLERC - 94046", "stop_name": "ECOLE VETERINAIRE DE MAISONS-ALFORT"}, "geometry": {"type": "Point", "coordinates": [2.4215498634161805, 48.81492358660343]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "109ba3b7f58386f4c37e18e7156ff09d8a6b9f13", "fields": {"departement": "94", "stop_lat": 48.798691144546154, "code_postal": "94028", "stop_lon": 2.4540256685936535, "coord": [48.798691144546154, 2.4540256685936535], "stop_id": 3686553, "stop_desc": "FACE 50 AVENUE DU MARECHAL DE LATTRE DE TASSIGNY - 94028", "stop_name": "HENRI MONDOR - LAFERRIERE"}, "geometry": {"type": "Point", "coordinates": [2.4540256685936535, 48.798691144546154]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3007871f63373b30053835d6560bbaae27d52f4e", "fields": {"departement": "94", "stop_lat": 48.80267030048723, "code_postal": "94002", "stop_lon": 2.425598151502994, "coord": [48.80267030048723, 2.425598151502994], "stop_id": 3686484, "stop_desc": "FACE 16 B RUE MALLERET JOINVILLE - 94002", "stop_name": "MAISONS-ALFORT - ALFORTVILLE RER"}, "geometry": {"type": "Point", "coordinates": [2.425598151502994, 48.80267030048723]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "29f12b04174a5219cdd049301c5b556a2070e11c", "fields": {"departement": "94", "stop_lat": 48.79676434459723, "code_postal": "94028", "stop_lon": 2.457436045286632, "coord": [48.79676434459723, 2.457436045286632], "stop_id": 3686556, "stop_desc": "24-26 AVENUE DU MARECHAL DE LATTRE DE TASSIGNY - 94028", "stop_name": "GENERAL GALLIENI"}, "geometry": {"type": "Point", "coordinates": [2.457436045286632, 48.79676434459723]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eea0f25a81573082e35be509c694bd4694bdd8c6", "fields": {"departement": "94", "stop_lat": 48.8054799076782, "code_postal": "94046", "stop_lon": 2.4411553902120193, "coord": [48.8054799076782, 2.4411553902120193], "stop_id": 3686549, "stop_desc": "86 AVENUE DU GENERAL LECLERC - 94046", "stop_name": "REPUBLIQUE - GENERAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.4411553902120193, 48.8054799076782]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "70f87a511afa39061d6590d133166c7169637e3a", "fields": {"departement": "94", "stop_lat": 48.814298589736914, "code_postal": "94002", "stop_lon": 2.415479230713905, "coord": [48.814298589736914, 2.415479230713905], "stop_id": 3686490, "stop_desc": "17 R VAILLANT COUTURIER - 94002", "stop_name": "GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.415479230713905, 48.814298589736914]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aa67c4bcba13cee0a935ab4afe37b5ae5d224ab0", "fields": {"departement": "94", "stop_lat": 48.794271448231854, "code_postal": "94028", "stop_lon": 2.460613557714741, "coord": [48.794271448231854, 2.460613557714741], "stop_id": 3686558, "stop_desc": "FACE 21 RUE DE PARIS - 94028", "stop_name": "EGLISE DE CRETEIL"}, "geometry": {"type": "Point", "coordinates": [2.460613557714741, 48.794271448231854]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4121e1e728e9888744439cc1be1a6f13cbfa6ba9", "fields": {"departement": "94", "stop_lat": 48.80393001308312, "code_postal": "94002", "stop_lon": 2.4236682016103535, "coord": [48.80393001308312, 2.4236682016103535], "stop_id": 3686485, "stop_desc": "71-73 RUE VICTOR HUGO - 94002", "stop_name": "RAYMOND JACLARD"}, "geometry": {"type": "Point", "coordinates": [2.4236682016103535, 48.80393001308312]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "14b348ac6536f0a9082899328dff9c3da82c96dc", "fields": {"departement": "94", "stop_lat": 48.77428444311341, "code_postal": "94022", "stop_lon": 2.41559575687124, "coord": [48.77428444311341, 2.41559575687124], "stop_id": 3686472, "stop_desc": "FACE 115 AVENUE D'ALFORTVILLE - 94022", "stop_name": "MESANGES"}, "geometry": {"type": "Point", "coordinates": [2.41559575687124, 48.77428444311341]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "48952aeaef881e1e6c8d33dfec3b8d49209ec7a5", "fields": {"departement": "94", "stop_lat": 48.811998055392515, "code_postal": "94046", "stop_lon": 2.427696112363076, "coord": [48.811998055392515, 2.427696112363076], "stop_id": 3686542, "stop_desc": "RUE PIERRE CURIE - 94046", "stop_name": "ERNEST RENAN"}, "geometry": {"type": "Point", "coordinates": [2.427696112363076, 48.811998055392515]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7f8250cce863a16b5ab61db84b996aa1e3015841", "fields": {"departement": "94", "stop_lat": 48.82194179585436, "code_postal": "94069", "stop_lon": 2.4232218060551216, "coord": [48.82194179585436, 2.4232218060551216], "stop_id": 3686717, "stop_desc": "39 RUE DU VAL D'OSNE - 94069", "stop_name": "HOPITAL NATIONAL DE SAINT-MAURICE"}, "geometry": {"type": "Point", "coordinates": [2.4232218060551216, 48.82194179585436]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bc336e18fbba143f85220da1a660b0cb96773830", "fields": {"departement": "94", "stop_lat": 48.79123195451347, "code_postal": "94028", "stop_lon": 2.4621298706462995, "coord": [48.79123195451347, 2.4621298706462995], "stop_id": 3686559, "stop_desc": "FACE 35 RUE PIERRE BROSSOLETTE - 94028", "stop_name": "D'ESTIENNE D'ORVES"}, "geometry": {"type": "Point", "coordinates": [2.4621298706462995, 48.79123195451347]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "70e74c18f6ce691c10c0d622c74aaa0fbea1d27e", "fields": {"departement": "94", "stop_lat": 48.78269951482372, "code_postal": "94028", "stop_lon": 2.4729627477641096, "coord": [48.78269951482372, 2.4729627477641096], "stop_id": 3686565, "stop_desc": "182-184 RUE DU GENERAL LECLERC - 94028", "stop_name": "EDMOND FOUINAT"}, "geometry": {"type": "Point", "coordinates": [2.4729627477641096, 48.78269951482372]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "646125a90c04a0807ba20bc3d3843e0d645fdffb", "fields": {"departement": "94", "stop_lat": 48.76620099779137, "code_postal": "94011", "stop_lon": 2.485088455487372, "coord": [48.76620099779137, 2.485088455487372], "stop_id": 3686581, "stop_desc": "FACE 2 MAIL DE LA RESISTANCE - 94011", "stop_name": "I.U.F.M."}, "geometry": {"type": "Point", "coordinates": [2.485088455487372, 48.76620099779137]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a4909fe2f35e8546d8435f21d25d0957c23a812e", "fields": {"departement": "94", "stop_lat": 48.820958902132894, "code_postal": "94018", "stop_lon": 2.4148495637651513, "coord": [48.820958902132894, 2.4148495637651513], "stop_id": 3686715, "stop_desc": "FACE 3 RUE GABRIELLE - 94018", "stop_name": "RUE GABRIELLE"}, "geometry": {"type": "Point", "coordinates": [2.4148495637651513, 48.820958902132894]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e0d6f8d6e5bbd286356686aa1cdff86aca249312", "fields": {"departement": "94", "stop_lat": 48.77265975747977, "code_postal": "94011", "stop_lon": 2.4949382750158504, "coord": [48.77265975747977, 2.4949382750158504], "stop_id": 3686587, "stop_desc": "GRANDE ALLEE - 94011", "stop_name": "PETITS CARREAUX"}, "geometry": {"type": "Point", "coordinates": [2.4949382750158504, 48.77265975747977]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5f103a0f325b564b1b37bc9c413798dc4c2c39f7", "fields": {"departement": "94", "stop_lat": 48.810472733578806, "code_postal": "94046", "stop_lon": 2.4242098051495105, "coord": [48.810472733578806, 2.4242098051495105], "stop_id": 3686594, "stop_desc": "RUE PIERRE CURIE - 94046", "stop_name": "PIERRE CURIE"}, "geometry": {"type": "Point", "coordinates": [2.4242098051495105, 48.810472733578806]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "564d521be5219ad12137adad9f67ee8a583e96df", "fields": {"departement": "94", "stop_lat": 48.768999931666684, "code_postal": "94011", "stop_lon": 2.482132238982161, "coord": [48.768999931666684, 2.482132238982161], "stop_id": 3686579, "stop_desc": "1 AVENUE JEAN MOULIN - 94011", "stop_name": "VERDUN"}, "geometry": {"type": "Point", "coordinates": [2.482132238982161, 48.768999931666684]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "163dac0b8ebacba2df641be223a866fbfbfd9306", "fields": {"departement": "94", "stop_lat": 48.77615741871018, "code_postal": "94011", "stop_lon": 2.4796499789115707, "coord": [48.77615741871018, 2.4796499789115707], "stop_id": 3686569, "stop_desc": "43 AVENUE DE PARIS - 94011", "stop_name": "REGARD"}, "geometry": {"type": "Point", "coordinates": [2.4796499789115707, 48.77615741871018]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9b538ac00219d3833a36cd590f02646016313d7b", "fields": {"departement": "94", "stop_lat": 48.822231640351454, "code_postal": "94069", "stop_lon": 2.4200645134930636, "coord": [48.822231640351454, 2.4200645134930636], "stop_id": 3686716, "stop_desc": "2 RUE VERDUN - 94069", "stop_name": "VERDUN"}, "geometry": {"type": "Point", "coordinates": [2.4200645134930636, 48.822231640351454]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ac1285d5cb52249df5035682dda8126e9703808b", "fields": {"departement": "75", "stop_lat": 48.859656415811216, "code_postal": "75111", "stop_lon": 2.386548733562634, "coord": [48.859656415811216, 2.386548733562634], "stop_id": 3687068, "stop_desc": "45-45 BIS RUE DE LA FOLIE REGNAULT - 75111", "stop_name": "ROQUETTE - PERE LACHAISE"}, "geometry": {"type": "Point", "coordinates": [2.386548733562634, 48.859656415811216]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3c2a68f83883c9d110718dfdb58c36f225fcd0cc", "fields": {"departement": "94", "stop_lat": 48.77789179415231, "code_postal": "94028", "stop_lon": 2.4553116608432237, "coord": [48.77789179415231, 2.4553116608432237], "stop_id": 3687037, "stop_desc": "AVENUE DE LA FRANCE LIBRE - 94028", "stop_name": "HOTEL DE VILLE DE CRETEIL"}, "geometry": {"type": "Point", "coordinates": [2.4553116608432237, 48.77789179415231]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "26e8f36352c64c1d9e7f78abdcf9d9d3264e58d9", "fields": {"departement": "94", "stop_lat": 48.798269059760955, "code_postal": "94068", "stop_lon": 2.4859416258134512, "coord": [48.798269059760955, 2.4859416258134512], "stop_id": 3687047, "stop_desc": "71-73 AVENUE DE LA REPUBLIQUE - 94068", "stop_name": "THEATRE DE SAINT-MAUR"}, "geometry": {"type": "Point", "coordinates": [2.4859416258134512, 48.798269059760955]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "70e5604735310edc4b62ce037a865aef49aa959c", "fields": {"departement": "75", "stop_lat": 48.85794172235713, "code_postal": "75111", "stop_lon": 2.3817118420922787, "coord": [48.85794172235713, 2.3817118420922787], "stop_id": 3687071, "stop_desc": "136 RUE DE LA ROQUETTE - 75111", "stop_name": "VOLTAIRE - LEON BLUM"}, "geometry": {"type": "Point", "coordinates": [2.3817118420922787, 48.85794172235713]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "76cb29bac536e0ff6adbcaf94b98acfbb679f375", "fields": {"departement": "75", "stop_lat": 48.85536654929761, "code_postal": "75104", "stop_lon": 2.3684167310968207, "coord": [48.85536654929761, 2.3684167310968207], "stop_id": 3687077, "stop_desc": "25 BOULEVARD BEAUMARCHAIS - 75104", "stop_name": "PASTEUR - WAGNER"}, "geometry": {"type": "Point", "coordinates": [2.3684167310968207, 48.85536654929761]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9030898e7b0c44d52ba021d4d74ffeff527dea7e", "fields": {"departement": "94", "stop_lat": 48.793919787708134, "code_postal": "94028", "stop_lon": 2.461701016520131, "coord": [48.793919787708134, 2.461701016520131], "stop_id": 3687043, "stop_desc": "2-4 AVENUE DE VERDUN - 94028", "stop_name": "EGLISE DE CRETEIL"}, "geometry": {"type": "Point", "coordinates": [2.461701016520131, 48.793919787708134]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7ee664b24e7c6d98f28407fa9e25a806c9904caa", "fields": {"departement": "75", "stop_lat": 48.864811541241586, "code_postal": "75120", "stop_lon": 2.3946725014354397, "coord": [48.864811541241586, 2.3946725014354397], "stop_id": 3687061, "stop_desc": "AVENUE GAMBETTA - 75120", "stop_name": "MARTIN NADAUD"}, "geometry": {"type": "Point", "coordinates": [2.3946725014354397, 48.864811541241586]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c2a8c33aaf7feaebc32252d72243714584f2bdbe", "fields": {"departement": "75", "stop_lat": 48.86507050572395, "code_postal": "75120", "stop_lon": 2.398037503514009, "coord": [48.86507050572395, 2.398037503514009], "stop_id": 3687059, "stop_desc": "9 PLACE GAMBETTA - 75120", "stop_name": "GAMBETTA"}, "geometry": {"type": "Point", "coordinates": [2.398037503514009, 48.86507050572395]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4bce0c56a996a4390c02c95ae65406929d635718", "fields": {"departement": "75", "stop_lat": 48.856438611249025, "code_postal": "75104", "stop_lon": 2.356281902801697, "coord": [48.856438611249025, 2.356281902801697], "stop_id": 3687084, "stop_desc": "32 RUE DE RIVOLI - 75104", "stop_name": "RUE VIEILLE DU TEMPLE - MAIRIE DU 4E"}, "geometry": {"type": "Point", "coordinates": [2.356281902801697, 48.856438611249025]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0444f48d72bdadce7ab0e578b3384c5d66363852", "fields": {"departement": "75", "stop_lat": 48.85990896102511, "code_postal": "75107", "stop_lon": 2.328591744841365, "coord": [48.85990896102511, 2.328591744841365], "stop_id": 3687094, "stop_desc": "QUAI ANATOLE FRANCE - 75107", "stop_name": "PONT ROYAL - QUAI VOLTAIRE"}, "geometry": {"type": "Point", "coordinates": [2.328591744841365, 48.85990896102511]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7104b0e5df79d921b1e2391944b3e464ac443e10", "fields": {"departement": "75", "stop_lat": 48.859010249775515, "code_postal": "75107", "stop_lon": 2.3290141376749216, "coord": [48.859010249775515, 2.3290141376749216], "stop_id": 3687095, "stop_desc": "7 RUE DU BAC - 75107", "stop_name": "PONT ROYAL - QUAI VOLTAIRE"}, "geometry": {"type": "Point", "coordinates": [2.3290141376749216, 48.859010249775515]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "81137b848323f2a3e7bbf80164f5d853afa1714f", "fields": {"departement": "75", "stop_lat": 48.85886205066583, "code_postal": "75107", "stop_lon": 2.303843116688156, "coord": [48.85886205066583, 2.303843116688156], "stop_id": 3687115, "stop_desc": "119 RUE SAINT DOMINIQUE - 75107", "stop_name": "BOSQUET - SAINT-DOMINIQUE"}, "geometry": {"type": "Point", "coordinates": [2.303843116688156, 48.85886205066583]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a5925621a51a2b434319cbb1d14bd0d32c1639b0", "fields": {"departement": "75", "stop_lat": 48.854869360427614, "code_postal": "75107", "stop_lon": 2.2965455575456333, "coord": [48.854869360427614, 2.2965455575456333], "stop_id": 3687114, "stop_desc": "AVENUE JOSEPH BOUVARD - 75107", "stop_name": "CHAMP DE MARS"}, "geometry": {"type": "Point", "coordinates": [2.2965455575456333, 48.854869360427614]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "422cc5b6736771765108ea41f56ff0184cf18094", "fields": {"departement": "75", "stop_lat": 48.8609337842048, "code_postal": "75101", "stop_lon": 2.333604189539699, "coord": [48.8609337842048, 2.333604189539699], "stop_id": 3687092, "stop_desc": "PLACE DU CARROUSEL - 75101", "stop_name": "MUSEE DU LOUVRE"}, "geometry": {"type": "Point", "coordinates": [2.333604189539699, 48.8609337842048]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cb526f4691622afd9f42e8a910703924263fca47", "fields": {"departement": "75", "stop_lat": 48.85918901331081, "code_postal": "75107", "stop_lon": 2.319860944694083, "coord": [48.85918901331081, 2.319860944694083], "stop_id": 3687103, "stop_desc": "FACE 12 RUE SAINT DOMINIQUE - 75107", "stop_name": "BOURGOGNE"}, "geometry": {"type": "Point", "coordinates": [2.319860944694083, 48.85918901331081]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "19e954e42b5c1af939454050a5114b2443fe5ad4", "fields": {"departement": "75", "stop_lat": 48.86055619281375, "code_postal": "75101", "stop_lon": 2.330771019079064, "coord": [48.86055619281375, 2.330771019079064], "stop_id": 3687117, "stop_desc": "QUAI FRANCOIS MITTERRAND - 75101", "stop_name": "PONT ROYAL"}, "geometry": {"type": "Point", "coordinates": [2.330771019079064, 48.86055619281375]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f0a68843ba1ba52e22f2a115258ace50a55df0f9", "fields": {"departement": "75", "stop_lat": 48.8537676322283, "code_postal": "75104", "stop_lon": 2.3649836922579452, "coord": [48.8537676322283, 2.3649836922579452], "stop_id": 3687081, "stop_desc": "31-33 RUE SAINT-ANTOINE - 75104", "stop_name": "BIRAGUE"}, "geometry": {"type": "Point", "coordinates": [2.3649836922579452, 48.8537676322283]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5b6822bcef16f03bc902a30038b7fe85f9584cb3", "fields": {"departement": "75", "stop_lat": 48.85386641123812, "code_postal": "75104", "stop_lon": 2.365337849043121, "coord": [48.85386641123812, 2.365337849043121], "stop_id": 3687080, "stop_desc": "32 RUE SAINT-ANTOINE - 75104", "stop_name": "BIRAGUE"}, "geometry": {"type": "Point", "coordinates": [2.365337849043121, 48.85386641123812]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "29f760a781edd58d4976a040f6128108d58ea142", "fields": {"departement": "75", "stop_lat": 48.865728702101386, "code_postal": "75111", "stop_lon": 2.3696353609445455, "coord": [48.865728702101386, 2.3696353609445455], "stop_id": 3687466, "stop_desc": "RUE JEAN PIERRE TIMBAUD - 75111", "stop_name": "JEAN-PIERRE TIMBAUD - RICHARD LENOIR"}, "geometry": {"type": "Point", "coordinates": [2.3696353609445455, 48.865728702101386]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d035e7ced0c78375c96dc768a9bbaae75b22c636", "fields": {"departement": "75", "stop_lat": 48.87665866619254, "code_postal": "75120", "stop_lon": 2.4079976139019896, "coord": [48.87665866619254, 2.4079976139019896], "stop_id": 3687461, "stop_desc": "GARE ROUTIERE SUR DALLE DU BD PERIPHERIQUE - 75120", "stop_name": "PORTE DES LILAS"}, "geometry": {"type": "Point", "coordinates": [2.4079976139019896, 48.87665866619254]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2c3b8c1b3c4fb6d5a5aa38158d18ca22a0347b59", "fields": {"departement": "75", "stop_lat": 48.870785720280224, "code_postal": "75120", "stop_lon": 2.3994747058344372, "coord": [48.870785720280224, 2.3994747058344372], "stop_id": 3687452, "stop_desc": "2 RUE SAINT FARGEAU - 75120", "stop_name": "MENILMONTANT - PELLEPORT"}, "geometry": {"type": "Point", "coordinates": [2.3994747058344372, 48.870785720280224]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2ca16a348a5121307273b2cbf7be69a160b248ff", "fields": {"departement": "75", "stop_lat": 48.86734201336139, "code_postal": "75111", "stop_lon": 2.3830821942789715, "coord": [48.86734201336139, 2.3830821942789715], "stop_id": 3687462, "stop_desc": "6 BD DE BELLEVILLE - 75111", "stop_name": "BELLEVILLE - MENILMONTANT"}, "geometry": {"type": "Point", "coordinates": [2.3830821942789715, 48.86734201336139]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0995963d6285d6205a616ea10f73eb576171c024", "fields": {"departement": "75", "stop_lat": 48.86974591766969, "code_postal": "75120", "stop_lon": 2.394010411437351, "coord": [48.86974591766969, 2.394010411437351], "stop_id": 3687450, "stop_desc": "114 RUE DE MENILMONTANT - 75120", "stop_name": "PYRENEES - MENILMONTANT"}, "geometry": {"type": "Point", "coordinates": [2.394010411437351, 48.86974591766969]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2c0e5ce310e79013038169cf8b565a1559ccc5a0", "fields": {"departement": "75", "stop_lat": 48.86789772911015, "code_postal": "75120", "stop_lon": 2.3868290298688386, "coord": [48.86789772911015, 2.3868290298688386], "stop_id": 3687446, "stop_desc": "42 RUE DE MENILMONTANT - 75120", "stop_name": "JULIEN LACROIX"}, "geometry": {"type": "Point", "coordinates": [2.3868290298688386, 48.86789772911015]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4c754a9580302c035df0d7c0979a676b37e4c5a6", "fields": {"departement": "75", "stop_lat": 48.86664440176645, "code_postal": "75111", "stop_lon": 2.3731642224845593, "coord": [48.86664440176645, 2.3731642224845593], "stop_id": 3687465, "stop_desc": "43 RUE JEAN PIERRE TIMBAUD - 75111", "stop_name": "PARMENTIER"}, "geometry": {"type": "Point", "coordinates": [2.3731642224845593, 48.86664440176645]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "201058a9ee2ee6644810ae3bab8b5075ec9374c8", "fields": {"departement": "75", "stop_lat": 48.86861576615157, "code_postal": "75120", "stop_lon": 2.3890639309680894, "coord": [48.86861576615157, 2.3890639309680894], "stop_id": 3687449, "stop_desc": "79 R DE MENILMONTANT - 75120", "stop_name": "HENRI CHEVREAU"}, "geometry": {"type": "Point", "coordinates": [2.3890639309680894, 48.86861576615157]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e606607f677f1d347617c8ea9a35c735f865ca42", "fields": {"departement": "75", "stop_lat": 48.85143669814865, "code_postal": "75111", "stop_lon": 2.376326861513944, "coord": [48.85143669814865, 2.376326861513944], "stop_id": 3687255, "stop_desc": "94-96 AVENUE LEDRU ROLLIN - 75111", "stop_name": "LEDRU ROLLIN - FAUBOURG SAINT-ANTOINE"}, "geometry": {"type": "Point", "coordinates": [2.376326861513944, 48.85143669814865]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dd8b739613c4bfd7406f0fdb422bf2c7f1c10379", "fields": {"departement": "75", "stop_lat": 48.85337130716259, "code_postal": "75104", "stop_lon": 2.368524486324227, "coord": [48.85337130716259, 2.368524486324227], "stop_id": 3687252, "stop_desc": "3 BIS PLACE DE LA BASTILLE - 75104", "stop_name": "BASTILLE - RUE SAINT-ANTOINE"}, "geometry": {"type": "Point", "coordinates": [2.368524486324227, 48.85337130716259]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fada2ebd01c0c6c7ea5d3d86b0a80d642d18639b", "fields": {"departement": "75", "stop_lat": 48.85319164694081, "code_postal": "75104", "stop_lon": 2.3681838978405163, "coord": [48.85319164694081, 2.3681838978405163], "stop_id": 3687251, "stop_desc": "1 RUE SAINT-ANTOINE - 75104", "stop_name": "BASTILLE - RUE SAINT-ANTOINE"}, "geometry": {"type": "Point", "coordinates": [2.3681838978405163, 48.85319164694081]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a61ec05c58ba04b1be12a79e5f7bc5e290609b49", "fields": {"departement": "75", "stop_lat": 48.855858799269356, "code_postal": "75111", "stop_lon": 2.3754857587351745, "coord": [48.855858799269356, 2.3754857587351745], "stop_id": 3687125, "stop_desc": "74-76 RUE DE LA ROQUETTE - 75111", "stop_name": "COMMANDANT LAMY"}, "geometry": {"type": "Point", "coordinates": [2.3754857587351745, 48.855858799269356]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d69e3b4e8a04544aa9f7af4322450c73cb56f229", "fields": {"departement": "75", "stop_lat": 48.859244351184564, "code_postal": "75120", "stop_lon": 2.4024301931718464, "coord": [48.859244351184564, 2.4024301931718464], "stop_id": 3687268, "stop_desc": "94 RUE DE BAGNOLET - 75120", "stop_name": "PYRENEES - BAGNOLET"}, "geometry": {"type": "Point", "coordinates": [2.4024301931718464, 48.859244351184564]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9ddb70c534bc3383c001da566283466f52bd5e01", "fields": {"departement": "75", "stop_lat": 48.85481258359159, "code_postal": "75111", "stop_lon": 2.3855907554166644, "coord": [48.85481258359159, 2.3855907554166644], "stop_id": 3687262, "stop_desc": "111 RUE DE CHARONNE - 75111", "stop_name": "CHARONNE - VOLTAIRE"}, "geometry": {"type": "Point", "coordinates": [2.3855907554166644, 48.85481258359159]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bfebd38d6dff02f7f861f596bb88bf8d8255f9a9", "fields": {"departement": "75", "stop_lat": 48.86035859070837, "code_postal": "75101", "stop_lon": 2.34089151189953, "coord": [48.86035859070837, 2.34089151189953], "stop_id": 3687238, "stop_desc": "6 PLACE DU LOUVRE - 75101", "stop_name": "LOUVRE - RIVOLI"}, "geometry": {"type": "Point", "coordinates": [2.34089151189953, 48.86035859070837]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "910047dfe729169ac34cfe5cc85326d444835048", "fields": {"departement": "75", "stop_lat": 48.85678114513896, "code_postal": "75104", "stop_lon": 2.348259761089279, "coord": [48.85678114513896, 2.348259761089279], "stop_id": 3687241, "stop_desc": "FACE 14 QUAI DE GESVRES - 75104", "stop_name": "CHATELET"}, "geometry": {"type": "Point", "coordinates": [2.348259761089279, 48.85678114513896]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "43201e9007852d9cda02de0340466859baeaa5e5", "fields": {"departement": "75", "stop_lat": 48.8552333745965, "code_postal": "75104", "stop_lon": 2.361361624451313, "coord": [48.8552333745965, 2.361361624451313], "stop_id": 3687248, "stop_desc": "94 RUE SAINT ANTOINE - 75104", "stop_name": "SAINT-PAUL"}, "geometry": {"type": "Point", "coordinates": [2.361361624451313, 48.8552333745965]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e0bb9b1ddafa61f347cd4c07848bf76f4360df1a", "fields": {"departement": "93", "stop_lat": 48.87378500492672, "code_postal": "93006", "stop_lon": 2.4307740617841693, "coord": [48.87378500492672, 2.4307740617841693], "stop_id": 3687291, "stop_desc": "24 RUE LOUISE MICHEL - 93006", "stop_name": "GIRARDOT"}, "geometry": {"type": "Point", "coordinates": [2.4307740617841693, 48.87378500492672]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8813400d95ddfe02d652e52bc7fe394fa684693e", "fields": {"departement": "75", "stop_lat": 48.855415256092286, "code_postal": "75101", "stop_lon": 2.3458079091124455, "coord": [48.855415256092286, 2.3458079091124455], "stop_id": 3687470, "stop_desc": "FACE 1 BOULEVARD DU PALAIS - 75101", "stop_name": "CITE - PALAIS DE JUSTICE"}, "geometry": {"type": "Point", "coordinates": [2.3458079091124455, 48.855415256092286]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "82163e9786de9e23055f0f4fc26fc1718e1de8ad", "fields": {"departement": "93", "stop_lat": 48.86154445012234, "code_postal": "93048", "stop_lon": 2.441335823088336, "coord": [48.86154445012234, 2.441335823088336], "stop_id": 3687593, "stop_desc": "9 AVENUE DU PRESIDENT WILSON - 93048", "stop_name": "MAIRIE DE MONTREUIL"}, "geometry": {"type": "Point", "coordinates": [2.441335823088336, 48.86154445012234]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7709ba714aad64bec499fae691729fd487f3e0f0", "fields": {"departement": "93", "stop_lat": 48.877550507721665, "code_postal": "93064", "stop_lon": 2.4843567962909288, "coord": [48.877550507721665, 2.4843567962909288], "stop_id": 3687617, "stop_desc": "FACE 3 BOULEVARD GABRIEL PERI - 93064", "stop_name": "VAN DERHEYDEN"}, "geometry": {"type": "Point", "coordinates": [2.4843567962909288, 48.877550507721665]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b5380acbdb5ede70cf2862733beea7aec8e0bda1", "fields": {"departement": "93", "stop_lat": 48.88302860981106, "code_postal": "93064", "stop_lon": 2.4876700928849522, "coord": [48.88302860981106, 2.4876700928849522], "stop_id": 3687620, "stop_desc": "16 RUE PHILIBERT HOFFMANN - 93064", "stop_name": "ALSACE LORRAINE"}, "geometry": {"type": "Point", "coordinates": [2.4876700928849522, 48.88302860981106]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "260021a5d1b237d3f0bdf58d38f6e54552b49e4b", "fields": {"departement": "93", "stop_lat": 48.8832443547315, "code_postal": "93064", "stop_lon": 2.4876298375443358, "coord": [48.8832443547315, 2.4876298375443358], "stop_id": 3687621, "stop_desc": "RUE PHILIBERT HOFFMANN - 93064", "stop_name": "ALSACE LORRAINE"}, "geometry": {"type": "Point", "coordinates": [2.4876298375443358, 48.8832443547315]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1a3b8df465770573861835ded090f19ce0d7fc66", "fields": {"departement": "93", "stop_lat": 48.86699095256208, "code_postal": "93006", "stop_lon": 2.41796996305945, "coord": [48.86699095256208, 2.41796996305945], "stop_id": 3687576, "stop_desc": "13 RUE SADI CARNOT - 93006", "stop_name": "CENTRE DE SANTE"}, "geometry": {"type": "Point", "coordinates": [2.41796996305945, 48.86699095256208]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ca65e804c8fc3e058c8ab489e3623ac1764db855", "fields": {"departement": "93", "stop_lat": 48.881869761663204, "code_postal": "93053", "stop_lon": 2.464051552865257, "coord": [48.881869761663204, 2.464051552865257], "stop_id": 3687608, "stop_desc": "RUE DE NEUILLY - 93053", "stop_name": "LES GUILLAUMES"}, "geometry": {"type": "Point", "coordinates": [2.464051552865257, 48.881869761663204]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ddee34a73ef412bed228f990f3d386b8c1241dfd", "fields": {"departement": "93", "stop_lat": 48.87743459311378, "code_postal": "93064", "stop_lon": 2.476099355669566, "coord": [48.87743459311378, 2.476099355669566], "stop_id": 3687613, "stop_desc": "FACE 3 RUE DE LISBONNE - 93064", "stop_name": "NANTEUIL"}, "geometry": {"type": "Point", "coordinates": [2.476099355669566, 48.87743459311378]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9114a9f22d0f4ce07be3b45ff12a8a129d7b904a", "fields": {"departement": "93", "stop_lat": 48.87675165415139, "code_postal": "93064", "stop_lon": 2.468072157260162, "coord": [48.87675165415139, 2.468072157260162], "stop_id": 3687606, "stop_desc": "4 RUE ETIENNE DOLET - 93064", "stop_name": "ETIENNE DOLET"}, "geometry": {"type": "Point", "coordinates": [2.468072157260162, 48.87675165415139]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1bbe8e952d504f55f5c6a2e96efce91f306f1e72", "fields": {"departement": "93", "stop_lat": 48.85856427056822, "code_postal": "93048", "stop_lon": 2.4370802062081176, "coord": [48.85856427056822, 2.4370802062081176], "stop_id": 3687683, "stop_desc": "62 BOULEVARD ROUGET DE LISLE - 93048", "stop_name": "CROIX DE CHAVAUX - ROUGET DE LISLE"}, "geometry": {"type": "Point", "coordinates": [2.4370802062081176, 48.85856427056822]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7c1b20d6719495ba1e3ee88389466c56078ba98a", "fields": {"departement": "93", "stop_lat": 48.85694417447475, "code_postal": "93048", "stop_lon": 2.4398556091390167, "coord": [48.85694417447475, 2.4398556091390167], "stop_id": 3687685, "stop_desc": "88 AVENUE DU PRESIDENT WILSON - 93048", "stop_name": "WILSON - GABRIEL PERI"}, "geometry": {"type": "Point", "coordinates": [2.4398556091390167, 48.85694417447475]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "841f420a6f23531566b1caf50fdc1fa83fbd1696", "fields": {"departement": "93", "stop_lat": 48.859842396882804, "code_postal": "93006", "stop_lon": 2.4230939388017254, "coord": [48.859842396882804, 2.4230939388017254], "stop_id": 3687631, "stop_desc": "115 AVENUE DE LA REPUBLIQUE - 93006", "stop_name": "FRATERNITE"}, "geometry": {"type": "Point", "coordinates": [2.4230939388017254, 48.859842396882804]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3ded591984546b0a408c076443f6012b65e0252d", "fields": {"departement": "75", "stop_lat": 48.86491653801377, "code_postal": "75120", "stop_lon": 2.4003122453315737, "coord": [48.86491653801377, 2.4003122453315737], "stop_id": 3687633, "stop_desc": "FACE 14 RUE BELGRAND - 75120", "stop_name": "HOPITAL TENON"}, "geometry": {"type": "Point", "coordinates": [2.4003122453315737, 48.86491653801377]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dc9f623e1c0013826021c4b1a4ddbc1b201eae96", "fields": {"departement": "93", "stop_lat": 48.872234644955576, "code_postal": "93006", "stop_lon": 2.4249264763232885, "coord": [48.872234644955576, 2.4249264763232885], "stop_id": 3687668, "stop_desc": "2 RUE RAYMOND LEFEBVRE - 93006", "stop_name": "LES MALASSIS"}, "geometry": {"type": "Point", "coordinates": [2.4249264763232885, 48.872234644955576]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a6c97255960ae79fa908fc32bf401fb340519305", "fields": {"departement": "93", "stop_lat": 48.87237570974885, "code_postal": "93006", "stop_lon": 2.4285643905774346, "coord": [48.87237570974885, 2.4285643905774346], "stop_id": 3687670, "stop_desc": "40 RUE RAYMOND LEFEBVRE - 93006", "stop_name": "STALINGRAD"}, "geometry": {"type": "Point", "coordinates": [2.4285643905774346, 48.87237570974885]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1dacbaf0403db496f9194c7e504ecaff9ca38676", "fields": {"departement": "93", "stop_lat": 48.8764307456169, "code_postal": "93045", "stop_lon": 2.413256674999561, "coord": [48.8764307456169, 2.413256674999561], "stop_id": 3687661, "stop_desc": "76 AVENUE PASTEUR - 93045", "stop_name": "CHASSAGNOLE"}, "geometry": {"type": "Point", "coordinates": [2.413256674999561, 48.8764307456169]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "10d2ca2d2c4b01a9a8808836dd66bde6eaddb9de", "fields": {"departement": "93", "stop_lat": 48.906711868542196, "code_postal": "93008", "stop_lon": 2.444098679824846, "coord": [48.906711868542196, 2.444098679824846], "stop_id": 3688570, "stop_desc": "BOULEVARD LENINE - 93008", "stop_name": "HOTEL DE VILLE DE BOBIGNY"}, "geometry": {"type": "Point", "coordinates": [2.444098679824846, 48.906711868542196]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "25373a96283f6b9f2f1935cabd8e9c912f0a17f6", "fields": {"departement": "93", "stop_lat": 48.90637437721665, "code_postal": "93008", "stop_lon": 2.439517229737543, "coord": [48.90637437721665, 2.439517229737543], "stop_id": 3688567, "stop_desc": "BOULEVARD LENINE - 93008", "stop_name": "CONSERVATOIRE JEAN WIENER"}, "geometry": {"type": "Point", "coordinates": [2.439517229737543, 48.90637437721665]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "374791ee903d98d5d205606c69b0b84e2a8b4a26", "fields": {"departement": "93", "stop_lat": 48.90656839275324, "code_postal": "93008", "stop_lon": 2.443743919497556, "coord": [48.90656839275324, 2.443743919497556], "stop_id": 3688569, "stop_desc": "BOULEVARD LENINE - 93008", "stop_name": "HOTEL DE VILLE DE BOBIGNY"}, "geometry": {"type": "Point", "coordinates": [2.443743919497556, 48.90656839275324]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "799ebdfbd7caa3d706f73db00b643c5ac7ce33fb", "fields": {"departement": "93", "stop_lat": 48.86937021089425, "code_postal": "93048", "stop_lon": 2.470641994105173, "coord": [48.86937021089425, 2.470641994105173], "stop_id": 3688542, "stop_desc": "40 BOULEVARD THEOPHILE SUEUR - 93048", "stop_name": "SAINT EXUPERY"}, "geometry": {"type": "Point", "coordinates": [2.470641994105173, 48.86937021089425]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "475083766a1368b5a9fc4421c8e34c732d63603f", "fields": {"departement": "93", "stop_lat": 48.86423307945557, "code_postal": "93048", "stop_lon": 2.4673458479082804, "coord": [48.86423307945557, 2.4673458479082804], "stop_id": 3688538, "stop_desc": "152 BOULEVARD THEOPHILE SUEUR - 93048", "stop_name": "LES RUFFINS"}, "geometry": {"type": "Point", "coordinates": [2.4673458479082804, 48.86423307945557]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d38be049e0a90540d47d20ab20342b632718719c", "fields": {"departement": "93", "stop_lat": 48.90677822577068, "code_postal": "93008", "stop_lon": 2.450111103877603, "coord": [48.90677822577068, 2.450111103877603], "stop_id": 3688572, "stop_desc": "R CARNOT - 93008", "stop_name": "BOBIGNY - PABLO PICASSO"}, "geometry": {"type": "Point", "coordinates": [2.450111103877603, 48.90677822577068]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2174a645318ed852e44cd48ce75a8be0610ed91e", "fields": {"departement": "93", "stop_lat": 48.86358627135531, "code_postal": "93048", "stop_lon": 2.467085408141435, "coord": [48.86358627135531, 2.467085408141435], "stop_id": 3688537, "stop_desc": "BOULEVARD THEOPHILE SUEUR - 93048", "stop_name": "LES RUFFINS"}, "geometry": {"type": "Point", "coordinates": [2.467085408141435, 48.86358627135531]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7a546b10f37839888e4f1e77f2b93e2e2eecc015", "fields": {"departement": "93", "stop_lat": 48.8905815063416, "code_postal": "93053", "stop_lon": 2.4521065629036953, "coord": [48.8905815063416, 2.4521065629036953], "stop_id": 3688556, "stop_desc": "2 RUE VAILLANT COUTURIER - 93053", "stop_name": "JEANNE D'ARC"}, "geometry": {"type": "Point", "coordinates": [2.4521065629036953, 48.8905815063416]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "be34154878763cf5b074ce2eaf8145c1138b8157", "fields": {"departement": "93", "stop_lat": 48.877912764034505, "code_postal": "93048", "stop_lon": 2.457896676294, "coord": [48.877912764034505, 2.457896676294], "stop_id": 3688549, "stop_desc": "94 BOULEVARD DE LA BOISSIERE - 93048", "stop_name": "LA BOISSIERE"}, "geometry": {"type": "Point", "coordinates": [2.457896676294, 48.877912764034505]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c73d69a3c3e69fcc61773bd422832462fd9af5f1", "fields": {"departement": "94", "stop_lat": 48.85419097895035, "code_postal": "94033", "stop_lon": 2.4701943719023447, "coord": [48.85419097895035, 2.4701943719023447], "stop_id": 3688532, "stop_desc": "7-9 AVENUE VICTOR HUGO - 94033", "stop_name": "VERDUN"}, "geometry": {"type": "Point", "coordinates": [2.4701943719023447, 48.85419097895035]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8ebff406ce478fbc3fd3aaa5e31075da3b1d24e0", "fields": {"departement": "94", "stop_lat": 48.846991013735796, "code_postal": "94033", "stop_lon": 2.471074681484275, "coord": [48.846991013735796, 2.471074681484275], "stop_id": 3690433, "stop_desc": "10 R NOTRE DAME - 94033", "stop_name": "ANCIENNE MAIRIE DE FONTENAY-SOUS-BOIS"}, "geometry": {"type": "Point", "coordinates": [2.471074681484275, 48.846991013735796]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e31c689bd575101a675a69765f308c06093ca3e8", "fields": {"departement": "94", "stop_lat": 48.84819631751823, "code_postal": "94033", "stop_lon": 2.4780229275469767, "coord": [48.84819631751823, 2.4780229275469767], "stop_id": 3690455, "stop_desc": "109 BOULEVARD GALLIENI - 94033", "stop_name": "CIMETIERE DE FONTENAY-SOUS-BOIS"}, "geometry": {"type": "Point", "coordinates": [2.4780229275469767, 48.84819631751823]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bc2ff58f6daefa11127bcc4d8a3e481c770d1089", "fields": {"departement": "94", "stop_lat": 48.838001853465165, "code_postal": "94058", "stop_lon": 2.4944560966386526, "coord": [48.838001853465165, 2.4944560966386526], "stop_id": 3708136, "stop_desc": "10 PLACE ROBERT BELVAUX - 94058", "stop_name": "NOGENT-LE-PERREUX RER"}, "geometry": {"type": "Point", "coordinates": [2.4944560966386526, 48.838001853465165]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b461a9ff3419c3e04d8e4137919204d25e042d56", "fields": {"departement": "94", "stop_lat": 48.85338820076925, "code_postal": "94033", "stop_lon": 2.487733946275537, "coord": [48.85338820076925, 2.487733946275537], "stop_id": 3690443, "stop_desc": "AVENUE DU VAL DE FONTENAY - 94033", "stop_name": "VAL-DE-FONTENAY RER"}, "geometry": {"type": "Point", "coordinates": [2.487733946275537, 48.85338820076925]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "59896bf6230681a6f7fd4134810bb46f2f81ef30", "fields": {"departement": "94", "stop_lat": 48.85530369052728, "code_postal": "94033", "stop_lon": 2.4868133584133694, "coord": [48.85530369052728, 2.4868133584133694], "stop_id": 3690472, "stop_desc": "FACE 14 AVENUE DES OLYMPIADES - 94033", "stop_name": "PABLO PICASSO"}, "geometry": {"type": "Point", "coordinates": [2.4868133584133694, 48.85530369052728]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8e3326c16c7f901e6dc2b2686d56cc36bbad34ea", "fields": {"departement": "94", "stop_lat": 48.85128380971573, "code_postal": "94033", "stop_lon": 2.473918451465365, "coord": [48.85128380971573, 2.473918451465365], "stop_id": 3690453, "stop_desc": "9 BIS BOULEVARD DE VERDUN - 94033", "stop_name": "SAINT-GERMAIN"}, "geometry": {"type": "Point", "coordinates": [2.473918451465365, 48.85128380971573]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2923027d5f730d3bd4881b76d3e4b06e776b3619", "fields": {"departement": "75", "stop_lat": 48.856061944099835, "code_postal": "75104", "stop_lon": 2.350302602371364, "coord": [48.856061944099835, 2.350302602371364], "stop_id": 3695557, "stop_desc": "FACE 2 QUAI DE GESVRES - 75104", "stop_name": "HOTEL DE VILLE"}, "geometry": {"type": "Point", "coordinates": [2.350302602371364, 48.856061944099835]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b237a7047d71066c608585b3ee8fe5dc0afd39ff", "fields": {"departement": "94", "stop_lat": 48.8455457382008, "code_postal": "94033", "stop_lon": 2.4611848538596774, "coord": [48.8455457382008, 2.4611848538596774], "stop_id": 3690488, "stop_desc": "47 BIS RUE MALLIER - 94033", "stop_name": "MALLIER - GAUCHER"}, "geometry": {"type": "Point", "coordinates": [2.4611848538596774, 48.8455457382008]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8d1449d0d7a6496d46c334329e770f5ba0859669", "fields": {"departement": "94", "stop_lat": 48.859075989520655, "code_postal": "94033", "stop_lon": 2.473870881419788, "coord": [48.859075989520655, 2.473870881419788], "stop_id": 3690477, "stop_desc": "127-129 AVENUE VICTOR HUGO - 94033", "stop_name": "VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.473870881419788, 48.859075989520655]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "678bded82f74cf327b5c4b6159fff0f4998927bc", "fields": {"departement": "93", "stop_lat": 48.87017285920084, "code_postal": "93048", "stop_lon": 2.450603621539786, "coord": [48.87017285920084, 2.450603621539786], "stop_id": 3688079, "stop_desc": "FACE 35 BOULEVARD ARISTIDE BRIAND - 93048", "stop_name": "PAUL SIGNAC - CARREFOUR DU 8 MAI 1945"}, "geometry": {"type": "Point", "coordinates": [2.450603621539786, 48.87017285920084]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aed17fa412a285a02a09d92bc1487ff864628961", "fields": {"departement": "93", "stop_lat": 48.865855769817074, "code_postal": "93048", "stop_lon": 2.444300568817163, "coord": [48.865855769817074, 2.444300568817163], "stop_id": 3688077, "stop_desc": "32-32 BIS BOULEVARD PAUL VAILLANT COUTURIER - 93048", "stop_name": "PLACE FRANCOIS MITTERRAND"}, "geometry": {"type": "Point", "coordinates": [2.444300568817163, 48.865855769817074]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "19a860806d80d49065f5d6dff5f95eb4900c73d5", "fields": {"departement": "93", "stop_lat": 48.882631221265676, "code_postal": "93064", "stop_lon": 2.481986495656371, "coord": [48.882631221265676, 2.481986495656371], "stop_id": 3687733, "stop_desc": "RUE JEAN DE MAILLY - 93064", "stop_name": "BOIS-PERRIER RER-ROSNY 2"}, "geometry": {"type": "Point", "coordinates": [2.481986495656371, 48.882631221265676]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "28476ae244f986765d5d9a845e41b7c11ac9dd85", "fields": {"departement": "75", "stop_lat": 48.84408977596744, "code_postal": "75112", "stop_lon": 2.4424854671358247, "coord": [48.84408977596744, 2.4424854671358247], "stop_id": 3687697, "stop_desc": "PISTE GARE ROUTIERE - 75112", "stop_name": "CHATEAU DE VINCENNES"}, "geometry": {"type": "Point", "coordinates": [2.4424854671358247, 48.84408977596744]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "792f7cf5c829e01ffe6ecd0912c44f9608bbc67e", "fields": {"departement": "93", "stop_lat": 48.88324072702506, "code_postal": "93064", "stop_lon": 2.4904778963421714, "coord": [48.88324072702506, 2.4904778963421714], "stop_id": 3687735, "stop_desc": "190-192 BOULEVARD ALSACE LORRAINE - 93064", "stop_name": "LES MARNAUDES"}, "geometry": {"type": "Point", "coordinates": [2.4904778963421714, 48.88324072702506]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f3087cdb1cda8aa679c930017454e3fc573e5249", "fields": {"departement": "93", "stop_lat": 48.85760031481306, "code_postal": "93048", "stop_lon": 2.439788805325031, "coord": [48.85760031481306, 2.439788805325031], "stop_id": 3687686, "stop_desc": "11 AVENUE GABRIEL PERI - 93048", "stop_name": "WILSON - GABRIEL PERI"}, "geometry": {"type": "Point", "coordinates": [2.439788805325031, 48.85760031481306]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e563c52b01bbe4131046f2032b5848639d8c95df", "fields": {"departement": "93", "stop_lat": 48.86837844609414, "code_postal": "93048", "stop_lon": 2.4473437521014723, "coord": [48.86837844609414, 2.4473437521014723], "stop_id": 3688078, "stop_desc": "4 BOULEVARD ARISTIDE BRIAND - 93048", "stop_name": "SEPT CHEMINS"}, "geometry": {"type": "Point", "coordinates": [2.4473437521014723, 48.86837844609414]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aa8a89a6dd2756e9a0810b9787a0c093c68de7df", "fields": {"departement": "93", "stop_lat": 48.85335892351668, "code_postal": "93048", "stop_lon": 2.438990503479335, "coord": [48.85335892351668, 2.438990503479335], "stop_id": 3687699, "stop_desc": "137 AVENUE DU PRESIDENT WILSON - 93048", "stop_name": "SOLIDARITE"}, "geometry": {"type": "Point", "coordinates": [2.438990503479335, 48.85335892351668]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "509199534bc4cdb4a6406e966e99b4b55b890ecf", "fields": {"departement": "91", "stop_lat": 48.69204209970009, "code_postal": "91326", "stop_lon": 2.3783930622157, "coord": [48.69204209970009, 2.3783930622157], "stop_id": 3759107, "stop_desc": "FACE 8 AVENUE DU GENERAL DE GAULLE - 91326", "stop_name": "HOTEL DE POLICE"}, "geometry": {"type": "Point", "coordinates": [2.3783930622157, 48.69204209970009]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b2c29e31786ae0459db8b6d6cee408e32461c344", "fields": {"departement": "91", "stop_lat": 48.705763134492756, "code_postal": "91479", "stop_lon": 2.3621886680433914, "coord": [48.705763134492756, 2.3621886680433914], "stop_id": 3759113, "stop_desc": "104-102 AVENUE DE VERDUN - 91479", "stop_name": "FROIDES BOUILLIES"}, "geometry": {"type": "Point", "coordinates": [2.3621886680433914, 48.705763134492756]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b318ce682118ec13b45d9b1d5e0e4b3ca7af450f", "fields": {"departement": "92", "stop_lat": 48.81363167569627, "code_postal": "92049", "stop_lon": 2.3256327423030254, "coord": [48.81363167569627, 2.3256327423030254], "stop_id": 3763978, "stop_desc": "110 AVENUE ARISTIDE BRIAND - 92049", "stop_name": "LEON GAMBETTA"}, "geometry": {"type": "Point", "coordinates": [2.3256327423030254, 48.81363167569627]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "03de6b85aafe6a087608cda821f63ee54634a89c", "fields": {"departement": "92", "stop_lat": 48.813532857337734, "code_postal": "92049", "stop_lon": 2.326122681236126, "coord": [48.813532857337734, 2.326122681236126], "stop_id": 3763979, "stop_desc": "105 AVENUE ARISTIDE BRIAND - 92049", "stop_name": "LEON GAMBETTA"}, "geometry": {"type": "Point", "coordinates": [2.326122681236126, 48.813532857337734]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8a86ac6d575d00fd00d7dd6d92ee01e037bd149b", "fields": {"departement": "92", "stop_lat": 48.77960179320402, "code_postal": "92014", "stop_lon": 2.313400434821077, "coord": [48.77960179320402, 2.313400434821077], "stop_id": 3763991, "stop_desc": "72 BOULEVARD DU MARECHAL JOFFRE - 92014", "stop_name": "BOURG-LA-REINE RER"}, "geometry": {"type": "Point", "coordinates": [2.313400434821077, 48.77960179320402]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bb585e902034b4fabb1884d4460e667c8463557e", "fields": {"departement": "92", "stop_lat": 48.768177510907535, "code_postal": "92002", "stop_lon": 2.311026218250398, "coord": [48.768177510907535, 2.311026218250398], "stop_id": 3763998, "stop_desc": "FACE 49 AVENUE RAYMOND ARON - 92002", "stop_name": "NORMANDIE"}, "geometry": {"type": "Point", "coordinates": [2.311026218250398, 48.768177510907535]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9aeae8966caf164e388394b9b4f9e6c1f8f5d7d8", "fields": {"departement": "92", "stop_lat": 48.76239755022339, "code_postal": "92002", "stop_lon": 2.3083508399551924, "coord": [48.76239755022339, 2.3083508399551924], "stop_id": 3763999, "stop_desc": "127 AVENUE ARISTIDE BRIAND - 92002", "stop_name": "GENERAL DE GAULLE - CROIX DE BERNY"}, "geometry": {"type": "Point", "coordinates": [2.3083508399551924, 48.76239755022339]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "74de294db65576783bee9bb1f7231abcd64e6f5b", "fields": {"departement": "92", "stop_lat": 48.76014140331745, "code_postal": "92002", "stop_lon": 2.3078218968349273, "coord": [48.76014140331745, 2.3078218968349273], "stop_id": 3764001, "stop_desc": "118 AVENUE ARISTIDE BRIAND - 92002", "stop_name": "MORTEAUX"}, "geometry": {"type": "Point", "coordinates": [2.3078218968349273, 48.76014140331745]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4740523c6a08cb78e70b4384329334677ab31c1e", "fields": {"departement": "92", "stop_lat": 48.75309388432978, "code_postal": "92002", "stop_lon": 2.3047130963329145, "coord": [48.75309388432978, 2.3047130963329145], "stop_id": 3764004, "stop_desc": "AVENUE DE LA DIVISION LECLERC - 92002", "stop_name": "AUGUSTE MOUNIE - DIVISION LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.3047130963329145, 48.75309388432978]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9c0e9570739b14eb8f0f1859814e3fcf13544748", "fields": {"departement": "91", "stop_lat": 48.735735534902446, "code_postal": "91377", "stop_lon": 2.2978753881082934, "coord": [48.735735534902446, 2.2978753881082934], "stop_id": 3764014, "stop_desc": "3 BIS RUE DE LANGUEDOC - 91377", "stop_name": "PERIGORD"}, "geometry": {"type": "Point", "coordinates": [2.2978753881082934, 48.735735534902446]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "089eb861939f1696ed634a9c6d82f3b91de8df21", "fields": {"departement": "91", "stop_lat": 48.73392631398321, "code_postal": "91377", "stop_lon": 2.290756664817219, "coord": [48.73392631398321, 2.290756664817219], "stop_id": 3764018, "stop_desc": "FACE 3 RUE DE MONTPELLIER - 91377", "stop_name": "PLACE DE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.290756664817219, 48.73392631398321]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "397d8d79a1e68847dc2380c6f6dc4e89f60ba57b", "fields": {"departement": "91", "stop_lat": 48.7317691614872, "code_postal": "91377", "stop_lon": 2.2908672930248044, "coord": [48.7317691614872, 2.2908672930248044], "stop_id": 3764019, "stop_desc": "PLACE SAINT-EXUPERY - 91377", "stop_name": "MASSY - OPERA-THEATRE"}, "geometry": {"type": "Point", "coordinates": [2.2908672930248044, 48.7317691614872]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f7db1aaf3b5df6645328e3cf07f52b35170a433f", "fields": {"departement": "92", "stop_lat": 48.772240461974114, "code_postal": "92014", "stop_lon": 2.312669523337748, "coord": [48.772240461974114, 2.312669523337748], "stop_id": 3764023, "stop_desc": "177-175 AVENUE DE GENERAL LECLERC - 92014", "stop_name": "LES COTTAGES"}, "geometry": {"type": "Point", "coordinates": [2.312669523337748, 48.772240461974114]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b93869a0a99dce7c7cfdf733e15a8322f14e54e1", "fields": {"departement": "94", "stop_lat": 48.7935613440926, "code_postal": "94016", "stop_lon": 2.3210256241366607, "coord": [48.7935613440926, 2.3210256241366607], "stop_id": 3764027, "stop_desc": "127 AVENUE ARISTIDE BRIAND - 94016", "stop_name": "PONT ROYAL - RER"}, "geometry": {"type": "Point", "coordinates": [2.3210256241366607, 48.7935613440926]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e5f993f6303b0c041db8c7e83d3cc7d4258785c1", "fields": {"departement": "94", "stop_lat": 48.801668773295894, "code_postal": "94003", "stop_lon": 2.3241115821868807, "coord": [48.801668773295894, 2.3241115821868807], "stop_id": 3764030, "stop_desc": "127 AVENUE ARISTIDE BRIAND - 94003", "stop_name": "GRANGE ORY"}, "geometry": {"type": "Point", "coordinates": [2.3241115821868807, 48.801668773295894]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "72feb845c3c8fe4ccd0c63a4a30b59273e782831", "fields": {"departement": "94", "stop_lat": 48.80527304622148, "code_postal": "94003", "stop_lon": 2.3256346130653758, "coord": [48.80527304622148, 2.3256346130653758], "stop_id": 3764031, "stop_desc": "77-79 AVENUE ARISTIDE BRIAND - 94003", "stop_name": "CROIX D'ARCUEIL"}, "geometry": {"type": "Point", "coordinates": [2.3256346130653758, 48.80527304622148]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3190d642d6e69a8069362c14654c7548a1b71577", "fields": {"departement": "92", "stop_lat": 48.752311162009455, "code_postal": "92002", "stop_lon": 2.302076588893825, "coord": [48.752311162009455, 2.302076588893825], "stop_id": 3764089, "stop_desc": "19 RUE GABRIEL PERI - 92002", "stop_name": "MARCHE D'ANTONY"}, "geometry": {"type": "Point", "coordinates": [2.302076588893825, 48.752311162009455]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ba03e85d3ad96c88a9fe7271d9520a1849bebc3c", "fields": {"departement": "92", "stop_lat": 48.753687240162584, "code_postal": "92002", "stop_lon": 2.305215670660631, "coord": [48.753687240162584, 2.305215670660631], "stop_id": 3764090, "stop_desc": "16 AVENUE ARISTIDE BRIAND - 92002", "stop_name": "AUGUSTE MOUNIE - DIVISION LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.305215670660631, 48.753687240162584]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "423b2536bee08b70f42886397f5f7867495c5ca9", "fields": {"departement": "92", "stop_lat": 48.76014140331745, "code_postal": "92002", "stop_lon": 2.3078218968349273, "coord": [48.76014140331745, 2.3078218968349273], "stop_id": 3764093, "stop_desc": "118 AVENUE ARISTIDE BRIAND - 92002", "stop_name": "MORTEAUX"}, "geometry": {"type": "Point", "coordinates": [2.3078218968349273, 48.76014140331745]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "06f2a6f35ab7302f1f09f7b2ffad731227e8d144", "fields": {"departement": "92", "stop_lat": 48.76263134269084, "code_postal": "92002", "stop_lon": 2.308772169484832, "coord": [48.76263134269084, 2.308772169484832], "stop_id": 3764095, "stop_desc": "148 AVENUE ARISTIDE BRIAND - 92002", "stop_name": "GENERAL DE GAULLE - CROIX DE BERNY"}, "geometry": {"type": "Point", "coordinates": [2.308772169484832, 48.76263134269084]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e3264622936530cc650bda21b603959cf2cddea4", "fields": {"departement": "91", "stop_lat": 48.72502703563501, "code_postal": "91377", "stop_lon": 2.255835936549794, "coord": [48.72502703563501, 2.255835936549794], "stop_id": 3764103, "stop_desc": "PLACE PIERRE SEMARD - 91377", "stop_name": "MASSY-PALAISEAU RER"}, "geometry": {"type": "Point", "coordinates": [2.255835936549794, 48.72502703563501]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e191297d9be866a99ef0ffcb8429e7e069fb0b12", "fields": {"departement": "91", "stop_lat": 48.73035814816352, "code_postal": "91377", "stop_lon": 2.257335750179739, "coord": [48.73035814816352, 2.257335750179739], "stop_id": 3764106, "stop_desc": "AVENUE DU PRESIDENT ALLENDE - 91377", "stop_name": "PRESIDENT ALLENDE"}, "geometry": {"type": "Point", "coordinates": [2.257335750179739, 48.73035814816352]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f6a26c312e62cf29e8806424c6ce8b6693521dc4", "fields": {"departement": "91", "stop_lat": 48.73195699870029, "code_postal": "91377", "stop_lon": 2.255757147921993, "coord": [48.73195699870029, 2.255757147921993], "stop_id": 3764108, "stop_desc": "71 RUE DE VERSAILLES - 91377", "stop_name": "LYCEE DE VILGENIS"}, "geometry": {"type": "Point", "coordinates": [2.255757147921993, 48.73195699870029]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4c4cee45e1420142366dfacf6b82a9004f5dd863", "fields": {"departement": "91", "stop_lat": 48.741068274072724, "code_postal": "91645", "stop_lon": 2.265255749665387, "coord": [48.741068274072724, 2.265255749665387], "stop_id": 3764118, "stop_desc": "36 AVENUE GABRIEL PERI - 91645", "stop_name": "CARNOT"}, "geometry": {"type": "Point", "coordinates": [2.265255749665387, 48.741068274072724]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7fbc436af55bef2e52199dc3cf6fb883efde90ad", "fields": {"departement": "91", "stop_lat": 48.74439504485675, "code_postal": "91645", "stop_lon": 2.267126659210256, "coord": [48.74439504485675, 2.267126659210256], "stop_id": 3764121, "stop_desc": "42 BOULEVARD DU MARECHAL FOCH - 91645", "stop_name": "FOCH - LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.267126659210256, 48.74439504485675]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "153862af01a4a050ab4cf3192080d2792cd69404", "fields": {"departement": "91", "stop_lat": 48.75199312360041, "code_postal": "91645", "stop_lon": 2.2724855204515526, "coord": [48.75199312360041, 2.2724855204515526], "stop_id": 3764126, "stop_desc": "CARREFOUR DE L'EUROPE - 91645", "stop_name": "LES ANTES"}, "geometry": {"type": "Point", "coordinates": [2.2724855204515526, 48.75199312360041]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "210258354c3468462268a6017aed472d254ac6e5", "fields": {"departement": "92", "stop_lat": 48.75754177749323, "code_postal": "92002", "stop_lon": 2.2781609564268264, "coord": [48.75754177749323, 2.2781609564268264], "stop_id": 3764130, "stop_desc": "216 AVENUE DU BOIS DE VERRIERES - 92002", "stop_name": "LES GODETS"}, "geometry": {"type": "Point", "coordinates": [2.2781609564268264, 48.75754177749323]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "20160a1c07d0b0da357bc284320d402d09f89e2c", "fields": {"departement": "92", "stop_lat": 48.75433883602628, "code_postal": "92002", "stop_lon": 2.29136369501317, "coord": [48.75433883602628, 2.29136369501317], "stop_id": 3764135, "stop_desc": "AVENUE DU BOIS DE VERRIERES - 92002", "stop_name": "FRANCOIS MOLE"}, "geometry": {"type": "Point", "coordinates": [2.29136369501317, 48.75433883602628]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "25f4a0b75d6032fe8f1efd2a5c04eeeef23f66cb", "fields": {"departement": "92", "stop_lat": 48.75441085639533, "code_postal": "92002", "stop_lon": 2.2916626844773966, "coord": [48.75441085639533, 2.2916626844773966], "stop_id": 3764136, "stop_desc": "FACE 55 AVENUE DU BOIS DE VERRIERES - 92002", "stop_name": "FRANCOIS MOLE"}, "geometry": {"type": "Point", "coordinates": [2.2916626844773966, 48.75441085639533]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6a33cfeec94b2eb025917f4d7106657adbf0a224", "fields": {"departement": "92", "stop_lat": 48.75466575625577, "code_postal": "92002", "stop_lon": 2.301055491243289, "coord": [48.75466575625577, 2.301055491243289], "stop_id": 3764140, "stop_desc": "FACE 18 RUE VELPEAU - 92002", "stop_name": "ANTONY RER"}, "geometry": {"type": "Point", "coordinates": [2.301055491243289, 48.75466575625577]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "02a2893be007dcb16685ebd1b7c99dd11923d16d", "fields": {"departement": "91", "stop_lat": 48.74608343692979, "code_postal": "91645", "stop_lon": 2.2648002954070896, "coord": [48.74608343692979, 2.2648002954070896], "stop_id": 3764143, "stop_desc": "1 AVENUE GENERAL LECLERC - 91645", "stop_name": "D'ESTIENNE D'ORVES - GENERAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.2648002954070896, 48.74608343692979]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d314285751e958ceb4ff5ff598a4cc286311e4c7", "fields": {"departement": "75", "stop_lat": 48.82499269324786, "code_postal": "75114", "stop_lon": 2.3360296178253943, "coord": [48.82499269324786, 2.3360296178253943], "stop_id": 3764432, "stop_desc": "61 AVENUE RENE COTY - 75114", "stop_name": "PARC MONTSOURIS"}, "geometry": {"type": "Point", "coordinates": [2.3360296178253943, 48.82499269324786]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9ea5e27bd33b4720880e019292f95af54db7704d", "fields": {"departement": "75", "stop_lat": 48.82469609759323, "code_postal": "75114", "stop_lon": 2.3357846137206675, "coord": [48.82469609759323, 2.3357846137206675], "stop_id": 3764433, "stop_desc": "FACE 61 AVENUE RENE COTY - 75114", "stop_name": "PARC MONTSOURIS"}, "geometry": {"type": "Point", "coordinates": [2.3357846137206675, 48.82469609759323]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1703bb3a686c7ea705b06c546f474cacbf0aa4a4", "fields": {"departement": "75", "stop_lat": 48.84357109451511, "code_postal": "75115", "stop_lon": 2.2937357699636536, "coord": [48.84357109451511, 2.2937357699636536], "stop_id": 3764461, "stop_desc": "7 RUE MADEMOISELLE - 75115", "stop_name": "FELIX FAURE"}, "geometry": {"type": "Point", "coordinates": [2.2937357699636536, 48.84357109451511]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c404f4d69b4643666ac186e6048a9e09303a3535", "fields": {"departement": "75", "stop_lat": 48.84634523535695, "code_postal": "75115", "stop_lon": 2.2861757799721945, "coord": [48.84634523535695, 2.2861757799721945], "stop_id": 3764466, "stop_desc": "40 RUE DES ENTREPRENEURS - 75115", "stop_name": "CHARLES MICHELS"}, "geometry": {"type": "Point", "coordinates": [2.2861757799721945, 48.84634523535695]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f59fd733a1da348892646a5f5f8e4058823007e0", "fields": {"departement": "75", "stop_lat": 48.83994238476741, "code_postal": "75115", "stop_lon": 2.2781215709372296, "coord": [48.83994238476741, 2.2781215709372296], "stop_id": 3764474, "stop_desc": "73 RUE BALARD - 75115", "stop_name": "PARC ANDRE CITROEN"}, "geometry": {"type": "Point", "coordinates": [2.2781215709372296, 48.83994238476741]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6ded3a87790973df5db2934be0b83b98c60bcd1e", "fields": {"departement": "75", "stop_lat": 48.8369676365704, "code_postal": "75115", "stop_lon": 2.2783972601736324, "coord": [48.8369676365704, 2.2783972601736324], "stop_id": 3764475, "stop_desc": "85 RUE LEBLANC - 75115", "stop_name": "PLACE BALARD"}, "geometry": {"type": "Point", "coordinates": [2.2783972601736324, 48.8369676365704]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "31a97994a387b886cb490f2664c2955fec4fa2b6", "fields": {"departement": "75", "stop_lat": 48.84092542778849, "code_postal": "75115", "stop_lon": 2.3138760334790764, "coord": [48.84092542778849, 2.3138760334790764], "stop_id": 3764485, "stop_desc": "52 BOULEVARD PASTEUR - 75115", "stop_name": "PASTEUR - FALGUIERE"}, "geometry": {"type": "Point", "coordinates": [2.3138760334790764, 48.84092542778849]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "430a769ff5f5161185a0b9947037ca4f58e0a06e", "fields": {"departement": "75", "stop_lat": 48.87656283115288, "code_postal": "75109", "stop_lon": 2.3369685497066297, "coord": [48.87656283115288, 2.3369685497066297], "stop_id": 3764499, "stop_desc": "29 RUE SAINT GEORGES - 75109", "stop_name": "SAINT-GEORGES - CHATEAUDUN"}, "geometry": {"type": "Point", "coordinates": [2.3369685497066297, 48.87656283115288]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1b7bbf578b347b6f48b59bd2d283dd1303d66f58", "fields": {"departement": "75", "stop_lat": 48.87582585780375, "code_postal": "75109", "stop_lon": 2.339203078574824, "coord": [48.87582585780375, 2.339203078574824], "stop_id": 3764500, "stop_desc": "17 RUE DE CHATEAUDUN - 75109", "stop_name": "CARREFOUR DE CHATEAUDUN"}, "geometry": {"type": "Point", "coordinates": [2.339203078574824, 48.87582585780375]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7f768184c414c3942179841a0a2a62ae116747e1", "fields": {"departement": "75", "stop_lat": 48.874576588810406, "code_postal": "75109", "stop_lon": 2.340729011773776, "coord": [48.874576588810406, 2.340729011773776], "stop_id": 3764502, "stop_desc": "21-23 RUE DROUOT - 75109", "stop_name": "PROVENCE - DROUOT"}, "geometry": {"type": "Point", "coordinates": [2.340729011773776, 48.874576588810406]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0deac6f9447395e5f3a1452efd1b783cc55efd03", "fields": {"departement": "75", "stop_lat": 48.86796196579372, "code_postal": "75102", "stop_lon": 2.337949459051578, "coord": [48.86796196579372, 2.337949459051578], "stop_id": 3764505, "stop_desc": "FACE 58 RUE DE RICHELIEU - 75102", "stop_name": "BIBLIOTHEQUE NATIONALE"}, "geometry": {"type": "Point", "coordinates": [2.337949459051578, 48.86796196579372]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "730e324ff1bc29b4996c139780c283d53d34d50c", "fields": {"departement": "75", "stop_lat": 48.8629200485678, "code_postal": "75101", "stop_lon": 2.3360968319370383, "coord": [48.8629200485678, 2.3360968319370383], "stop_id": 3764506, "stop_desc": "155-157 RUE SAINT HONORE - 75101", "stop_name": "PALAIS ROYAL - COMEDIE FRANCAISE"}, "geometry": {"type": "Point", "coordinates": [2.3360968319370383, 48.8629200485678]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d469ba152af0078c698f57a7ff2fcba0dad17ff0", "fields": {"departement": "75", "stop_lat": 48.85678114513896, "code_postal": "75104", "stop_lon": 2.348259761089279, "coord": [48.85678114513896, 2.348259761089279], "stop_id": 3764510, "stop_desc": "FACE 14 QUAI DE GESVRES - 75104", "stop_name": "CHATELET"}, "geometry": {"type": "Point", "coordinates": [2.348259761089279, 48.85678114513896]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "84892276bb8b9a16b17afbbffc26546d022ecd34", "fields": {"departement": "75", "stop_lat": 48.8584078136177, "code_postal": "75104", "stop_lon": 2.3488457910577933, "coord": [48.8584078136177, 2.3488457910577933], "stop_id": 3764511, "stop_desc": "90 RUE DE RIVOLI - 75104", "stop_name": "CHATELET"}, "geometry": {"type": "Point", "coordinates": [2.3488457910577933, 48.8584078136177]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a69a1e4dd004d77b8740d5ba3302453b749366fc", "fields": {"departement": "75", "stop_lat": 48.85445267414927, "code_postal": "75104", "stop_lon": 2.35438805855369, "coord": [48.85445267414927, 2.35438805855369], "stop_id": 3764514, "stop_desc": "FACE 52 QUAI DE L'HOTEL DE VILLE - 75104", "stop_name": "PONT LOUIS PHILIPPE"}, "geometry": {"type": "Point", "coordinates": [2.35438805855369, 48.85445267414927]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2b95fa2bc583c311004407afbdeaf4ac446a861e", "fields": {"departement": "75", "stop_lat": 48.8516572958363, "code_postal": "75104", "stop_lon": 2.3562256735111764, "coord": [48.8516572958363, 2.3562256735111764], "stop_id": 3764515, "stop_desc": "17 RUE DES DEUX PONTS - 75104", "stop_name": "ILE SAINT-LOUIS"}, "geometry": {"type": "Point", "coordinates": [2.3562256735111764, 48.8516572958363]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "659b5a532a5866ee10e7ddfac6f8f2e2f22daeb6", "fields": {"departement": "75", "stop_lat": 48.83629716139105, "code_postal": "75113", "stop_lon": 2.358888551995435, "coord": [48.83629716139105, 2.358888551995435], "stop_id": 3764523, "stop_desc": "100-102 BOULEVARD DE L'HOPITAL - 75113", "stop_name": "JENNER - JEANNE D'ARC"}, "geometry": {"type": "Point", "coordinates": [2.358888551995435, 48.83629716139105]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "823a8ac6e4043a115dea5b07f92b58d23f7efe81", "fields": {"departement": "75", "stop_lat": 48.8314984744011, "code_postal": "75113", "stop_lon": 2.3546799758762553, "coord": [48.8314984744011, 2.3546799758762553], "stop_id": 3764527, "stop_desc": "10 PLACE D'ITALIE - 75113", "stop_name": "PLACE D'ITALIE"}, "geometry": {"type": "Point", "coordinates": [2.3546799758762553, 48.8314984744011]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c56ecc53687dad90f2e66fd0e3339bf65bcaea74", "fields": {"departement": "75", "stop_lat": 48.850119889984526, "code_postal": "75104", "stop_lon": 2.3593981982611987, "coord": [48.850119889984526, 2.3593981982611987], "stop_id": 3764544, "stop_desc": "FACE 3-5 BOULEVARD HENRI IV - 75104", "stop_name": "PONT SULLY - QUAI DE BETHUNE"}, "geometry": {"type": "Point", "coordinates": [2.3593981982611987, 48.850119889984526]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4d88e9e3a740a33f1ec161244555f72fffb9d0d6", "fields": {"departement": "75", "stop_lat": 48.8563936522421, "code_postal": "75104", "stop_lon": 2.3564180867740645, "coord": [48.8563936522421, 2.3564180867740645], "stop_id": 3764547, "stop_desc": "38 BIS RUE DE RIVOLI - 75104", "stop_name": "RUE VIEILLE DU TEMPLE-MAIRIE DU 4EME"}, "geometry": {"type": "Point", "coordinates": [2.3564180867740645, 48.8563936522421]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0a80d40ca046e43f155ef3e2ff4a5a60bbafd792", "fields": {"departement": "75", "stop_lat": 48.874244007171676, "code_postal": "75109", "stop_lon": 2.3421868361926466, "coord": [48.874244007171676, 2.3421868361926466], "stop_id": 3764553, "stop_desc": "32 RUE DU FAUBOURG MONTMARTRE - 75109", "stop_name": "PROVENCE - FAUBOURG MONTMARTRE"}, "geometry": {"type": "Point", "coordinates": [2.3421868361926466, 48.874244007171676]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "120ca744081e50fd0186175febc83db18a8e4ce5", "fields": {"departement": "75", "stop_lat": 48.88146086239612, "code_postal": "75109", "stop_lon": 2.339952755300667, "coord": [48.88146086239612, 2.339952755300667], "stop_id": 3764554, "stop_desc": "72-72 BIS RUE DES MARTYRS - 75109", "stop_name": "ROCHECHOUART-MARTYRS"}, "geometry": {"type": "Point", "coordinates": [2.339952755300667, 48.88146086239612]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aaee00c3143a3d7d63fe71dd12a82ab75a600abb", "fields": {"departement": "75", "stop_lat": 48.88097388157959, "code_postal": "75110", "stop_lon": 2.357381029341471, "coord": [48.88097388157959, 2.357381029341471], "stop_id": 3764605, "stop_desc": "GARE ROUTIERE - 75110", "stop_name": "GARE DU NORD"}, "geometry": {"type": "Point", "coordinates": [2.357381029341471, 48.88097388157959]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eab0e603d3d06a3e7a7341c174c51f0b0b7d35dc", "fields": {"departement": "75", "stop_lat": 48.879473278409144, "code_postal": "75110", "stop_lon": 2.3557180612431323, "coord": [48.879473278409144, 2.3557180612431323], "stop_id": 3764606, "stop_desc": "33-35 RUE DE SAINT-QUENTIN - 75110", "stop_name": "LA FAYETTE - DUNKERQUE"}, "geometry": {"type": "Point", "coordinates": [2.3557180612431323, 48.879473278409144]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "70cfd8a2d544c85e3ae5869844e8a575c8fc75ee", "fields": {"departement": "75", "stop_lat": 48.874062503585236, "code_postal": "75110", "stop_lon": 2.3583048250119405, "coord": [48.874062503585236, 2.3583048250119405], "stop_id": 3764609, "stop_desc": "119 RUE DU FAUBOURG SAINT-MARTIN - 75110", "stop_name": "MAGENTA - SAINT-MARTIN"}, "geometry": {"type": "Point", "coordinates": [2.3583048250119405, 48.874062503585236]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "22ee7e3eb34564d3d82536444f616179c18c1de1", "fields": {"departement": "75", "stop_lat": 48.87243595580059, "code_postal": "75110", "stop_lon": 2.3574049633654526, "coord": [48.87243595580059, 2.3574049633654526], "stop_id": 3764610, "stop_desc": "67-69 RUE DU FAUBOURG SAINT-MARTIN - 75110", "stop_name": "MAIRIE DU 10E"}, "geometry": {"type": "Point", "coordinates": [2.3574049633654526, 48.87243595580059]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "195820eba39ea5bf78f906dc7cbc65386415fce4", "fields": {"departement": "75", "stop_lat": 48.868778444624105, "code_postal": "75110", "stop_lon": 2.355332800316335, "coord": [48.868778444624105, 2.355332800316335], "stop_id": 3764611, "stop_desc": "FACE 326 RUE SAINT-MARTIN - 75110", "stop_name": "PORTE SAINT-MARTIN"}, "geometry": {"type": "Point", "coordinates": [2.355332800316335, 48.868778444624105]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e8b1fdaff2e4d5138a3cb809ae7cf6547307e386", "fields": {"departement": "75", "stop_lat": 48.8597465272257, "code_postal": "75104", "stop_lon": 2.35249649876749, "coord": [48.8597465272257, 2.35249649876749], "stop_id": 3764614, "stop_desc": "FACE 22 RUE DU RENARD - 75104", "stop_name": "CENTRE GEORGES POMPIDOU"}, "geometry": {"type": "Point", "coordinates": [2.35249649876749, 48.8597465272257]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e504ccc6ccbefdd925bb85b2500d44632ee55d5b", "fields": {"departement": "75", "stop_lat": 48.8575540203187, "code_postal": "75104", "stop_lon": 2.3487230170535773, "coord": [48.8575540203187, 2.3487230170535773], "stop_id": 3764616, "stop_desc": "FACE 15 AVENUE VICTORIA - 75104", "stop_name": "CHATELET"}, "geometry": {"type": "Point", "coordinates": [2.3487230170535773, 48.8575540203187]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a1d2e863b8a643171214af1fb2caadf4ffc47d21", "fields": {"departement": "75", "stop_lat": 48.84414524904412, "code_postal": "75106", "stop_lon": 2.3388750838231998, "coord": [48.84414524904412, 2.3388750838231998], "stop_id": 3764622, "stop_desc": "68 BOULEVARD SAINT-MICHEL - 75106", "stop_name": "AUGUSTE COMTE"}, "geometry": {"type": "Point", "coordinates": [2.3388750838231998, 48.84414524904412]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "56c9b900e17a82721459150d27f17a7976bb7423", "fields": {"departement": "75", "stop_lat": 48.832272512743295, "code_postal": "75114", "stop_lon": 2.3308562345483637, "coord": [48.832272512743295, 2.3308562345483637], "stop_id": 3764637, "stop_desc": "15 AVENUE DU GENERAL LECLERC - 75114", "stop_name": "DENFERT-ROCHEREAU - DAGUERRE"}, "geometry": {"type": "Point", "coordinates": [2.3308562345483637, 48.832272512743295]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4e44ef55293b61d58c2ce83fb9860073603ad5b8", "fields": {"departement": "75", "stop_lat": 48.846041587705, "code_postal": "75105", "stop_lon": 2.3402777279421545, "coord": [48.846041587705, 2.3402777279421545], "stop_id": 3764641, "stop_desc": "75 BOULEVARD SAINT-MICHEL - 75105", "stop_name": "LUXEMBOURG"}, "geometry": {"type": "Point", "coordinates": [2.3402777279421545, 48.846041587705]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "594b16e0c034a78ce0d45a1f8e9a497db3a3aa7c", "fields": {"departement": "75", "stop_lat": 48.87781949763114, "code_postal": "75110", "stop_lon": 2.3564941357294393, "coord": [48.87781949763114, 2.3564941357294393], "stop_id": 3764650, "stop_desc": "140-142 RUE DU FAUBOURG SAINT-DENIS - 75110", "stop_name": "VALENCIENNES"}, "geometry": {"type": "Point", "coordinates": [2.3564941357294393, 48.87781949763114]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b71cc7e0574f03c3aef3695c19b2908e1e220123", "fields": {"departement": "75", "stop_lat": 48.86287390987719, "code_postal": "75103", "stop_lon": 2.354213758372903, "coord": [48.86287390987719, 2.354213758372903], "stop_id": 3764658, "stop_desc": "59 RUE BEAUBOURG - 75103", "stop_name": "GRENIER SAINT-LAZARE - QUARTIER DE L'HORLOGE"}, "geometry": {"type": "Point", "coordinates": [2.354213758372903, 48.86287390987719]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8b635d510e944acd8421df6f5b3f88663392338d", "fields": {"departement": "75", "stop_lat": 48.84978931329091, "code_postal": "75106", "stop_lon": 2.342102800318699, "coord": [48.84978931329091, 2.342102800318699], "stop_id": 3764664, "stop_desc": "38 BOULEVARD SAINT-MICHEL - 75106", "stop_name": "LES ECOLES"}, "geometry": {"type": "Point", "coordinates": [2.342102800318699, 48.84978931329091]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "37e675a61e9c73812c56f63c68b38fcc2519fd96", "fields": {"departement": "75", "stop_lat": 48.82383287374942, "code_postal": "75114", "stop_lon": 2.327291061442393, "coord": [48.82383287374942, 2.327291061442393], "stop_id": 3764675, "stop_desc": "68-70 R DU PERE CORENTIN - 75114", "stop_name": "PORTE D'ORLEANS"}, "geometry": {"type": "Point", "coordinates": [2.327291061442393, 48.82383287374942]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "603b6f389210b7206e18196648006a174799ca58", "fields": {"departement": "75", "stop_lat": 48.83348531490719, "code_postal": "75114", "stop_lon": 2.324375805227016, "coord": [48.83348531490719, 2.324375805227016], "stop_id": 3764703, "stop_desc": "158 AVENUE DU MAINE - 75114", "stop_name": "CHATEAU - MAIRIE DU 14E"}, "geometry": {"type": "Point", "coordinates": [2.324375805227016, 48.83348531490719]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d31a82c275265e189d1f246c15dbd3b84deebf97", "fields": {"departement": "75", "stop_lat": 48.83643311204049, "code_postal": "75114", "stop_lon": 2.323204200254015, "coord": [48.83643311204049, 2.323204200254015], "stop_id": 3764705, "stop_desc": "108 AVENUE DU MAINE - 75114", "stop_name": "LOSSERAND - MAINE"}, "geometry": {"type": "Point", "coordinates": [2.323204200254015, 48.83643311204049]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "56ef335cab3325c7af52f4415c0ec272aa23de51", "fields": {"departement": "75", "stop_lat": 48.84107050639419, "code_postal": "75114", "stop_lon": 2.3216915658600388, "coord": [48.84107050639419, 2.3216915658600388], "stop_id": 3764708, "stop_desc": "41 AVENUE DU MAINE - 75114", "stop_name": "GARE MONTPARNASSE"}, "geometry": {"type": "Point", "coordinates": [2.3216915658600388, 48.84107050639419]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "160ef9d9c6193d7d306514fe5f1ee4e3701f2fab", "fields": {"departement": "75", "stop_lat": 48.84291322887416, "code_postal": "75114", "stop_lon": 2.3239785863676334, "coord": [48.84291322887416, 2.3239785863676334], "stop_id": 3764710, "stop_desc": "7 RUE DU DEPART - 75114", "stop_name": "PLACE DU 18 JUIN 1940 - RUE DU DEPART"}, "geometry": {"type": "Point", "coordinates": [2.3239785863676334, 48.84291322887416]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "946d017695f2a3cc71a4c0970eb4c0a46575c13e", "fields": {"departement": "75", "stop_lat": 48.869469015384865, "code_postal": "75108", "stop_lon": 2.3113019501850944, "coord": [48.869469015384865, 2.3113019501850944], "stop_id": 3764733, "stop_desc": "FACE 3 AVENUE MATIGNON - 75108", "stop_name": "ROND-POINT DES CHAMPS-ELYSEES - MATIGNON"}, "geometry": {"type": "Point", "coordinates": [2.3113019501850944, 48.869469015384865]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "31d9f7b94b672cc3b0e55d513329954b41cfa476", "fields": {"departement": "75", "stop_lat": 48.87447561220089, "code_postal": "75108", "stop_lon": 2.314528521056996, "coord": [48.87447561220089, 2.314528521056996], "stop_id": 3764735, "stop_desc": "10-12 AVENUE PERCIER - 75108", "stop_name": "HAUSSMANN - MIROMESNIL"}, "geometry": {"type": "Point", "coordinates": [2.314528521056996, 48.87447561220089]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "11a81c59504bdcb2ee00f6eb6d89e4b51848250f", "fields": {"departement": "75", "stop_lat": 48.87613950699143, "code_postal": "75108", "stop_lon": 2.3224304275220877, "coord": [48.87613950699143, 2.3224304275220877], "stop_id": 3764739, "stop_desc": "FACE 2 RUE DU ROCHER - 75108", "stop_name": "GARE SAINT-LAZARE"}, "geometry": {"type": "Point", "coordinates": [2.3224304275220877, 48.87613950699143]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "90855392cfd34a3fd16290a1e907952e581c0475", "fields": {"departement": "75", "stop_lat": 48.823877732286824, "code_postal": "75114", "stop_lon": 2.326379081464189, "coord": [48.823877732286824, 2.326379081464189], "stop_id": 3764749, "stop_desc": "PISTE GARE ROUTIERE - 75114", "stop_name": "PORTE D'ORLEANS"}, "geometry": {"type": "Point", "coordinates": [2.326379081464189, 48.823877732286824]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ee2c846f35c29a73c8b0b9a1e028619d1a316d6f", "fields": {"departement": "75", "stop_lat": 48.84291322887416, "code_postal": "75114", "stop_lon": 2.3239785863676334, "coord": [48.84291322887416, 2.3239785863676334], "stop_id": 3764757, "stop_desc": "7 RUE DU DEPART - 75114", "stop_name": "PLACE DU 18 JUIN 1940 - RUE DU DEPART"}, "geometry": {"type": "Point", "coordinates": [2.3239785863676334, 48.84291322887416]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8ab7fa6a07481c09994607d6dc4929c0df213031", "fields": {"departement": "75", "stop_lat": 48.85127746509786, "code_postal": "75107", "stop_lon": 2.306898591714339, "coord": [48.85127746509786, 2.306898591714339], "stop_id": 3764763, "stop_desc": "PLACE DE FONTENOY - 75107", "stop_name": "FONTENOY - UNESCO"}, "geometry": {"type": "Point", "coordinates": [2.306898591714339, 48.85127746509786]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3df88301daf4b2dd85514cf4d6e51305832cd699", "fields": {"departement": "75", "stop_lat": 48.85301242148468, "code_postal": "75107", "stop_lon": 2.3084093030670783, "coord": [48.85301242148468, 2.3084093030670783], "stop_id": 3764764, "stop_desc": "19 AVENUE DUQUESNE - 75107", "stop_name": "DUQUESNE - LOWENDAL"}, "geometry": {"type": "Point", "coordinates": [2.3084093030670783, 48.85301242148468]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "12156e6c396462032abb3724eec3aa6183d588ea", "fields": {"departement": "75", "stop_lat": 48.87465646998024, "code_postal": "75108", "stop_lon": 2.3213953633663262, "coord": [48.87465646998024, 2.3213953633663262], "stop_id": 3764767, "stop_desc": "108 BOULEVARD HAUSSMANN - 75108", "stop_name": "SAINT-AUGUSTIN"}, "geometry": {"type": "Point", "coordinates": [2.3213953633663262, 48.87465646998024]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6200f18949f7caba22cf1475a49a4d1c56f70e44", "fields": {"departement": "75", "stop_lat": 48.87411645667242, "code_postal": "75108", "stop_lon": 2.3163680133309223, "coord": [48.87411645667242, 2.3163680133309223], "stop_id": 3764768, "stop_desc": "20 BIS RUE LA BOETIE - 75108", "stop_name": "LA BOETIE - MIROMESNIL"}, "geometry": {"type": "Point", "coordinates": [2.3163680133309223, 48.87411645667242]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9ae5d8be52e582c266fc27f234edc85099d72d79", "fields": {"departement": "75", "stop_lat": 48.87006185940335, "code_postal": "75108", "stop_lon": 2.3098711715341227, "coord": [48.87006185940335, 2.3098711715341227], "stop_id": 3764770, "stop_desc": "ROND-POINT DES CHAMPS ELYSEES - 75108", "stop_name": "ROND-POINT DES CHAMPS-ELYSEES - FRANKLIN D. ROOSEVELT"}, "geometry": {"type": "Point", "coordinates": [2.3098711715341227, 48.87006185940335]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "17705674c420ea502c78b893bae7d50688dcc6ce", "fields": {"departement": "75", "stop_lat": 48.86896518119029, "code_postal": "75108", "stop_lon": 2.3089181162214705, "coord": [48.86896518119029, 2.3089181162214705], "stop_id": 3764771, "stop_desc": "ROND-POINT DES CHAMPS ELYSEES-MARCEL DASSAULT - 75108", "stop_name": "ROND-POINT DES CHAMPS-ELYSEES"}, "geometry": {"type": "Point", "coordinates": [2.3089181162214705, 48.86896518119029]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "74040b54331bb77e64fa86c2fb0ecbea189d7605", "fields": {"departement": "75", "stop_lat": 48.852275541406364, "code_postal": "75107", "stop_lon": 2.3087910438824077, "coord": [48.852275541406364, 2.3087910438824077], "stop_id": 3764778, "stop_desc": "14 AVENUE DE LOWENDAL - 75107", "stop_name": "DUQUESNE - LOWENDAL"}, "geometry": {"type": "Point", "coordinates": [2.3087910438824077, 48.852275541406364]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "278d306ca642c7859397e07ca174d319e541c63d", "fields": {"departement": "75", "stop_lat": 48.85066735678148, "code_postal": "75107", "stop_lon": 2.311297738319514, "coord": [48.85066735678148, 2.311297738319514], "stop_id": 3764780, "stop_desc": "32-34 AVENUE DUQUESNE - 75107", "stop_name": "EL SALVADOR"}, "geometry": {"type": "Point", "coordinates": [2.311297738319514, 48.85066735678148]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8a838616a027a50f3be21a8af62c7add0f510b08", "fields": {"departement": "75", "stop_lat": 48.845527910899904, "code_postal": "75115", "stop_lon": 2.3188170008674582, "coord": [48.845527910899904, 2.3188170008674582], "stop_id": 3764783, "stop_desc": "30 BOULEVARD DU MONTPARNASSE - 75115", "stop_name": "MAINE - VAUGIRARD"}, "geometry": {"type": "Point", "coordinates": [2.3188170008674582, 48.845527910899904]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "51c6fa14b92c56c10f213b2399116381f04c36f7", "fields": {"departement": "75", "stop_lat": 48.83348531490719, "code_postal": "75114", "stop_lon": 2.324375805227016, "coord": [48.83348531490719, 2.324375805227016], "stop_id": 3764789, "stop_desc": "158 AVENUE DU MAINE - 75114", "stop_name": "CHATEAU - MAIRIE DU 14E"}, "geometry": {"type": "Point", "coordinates": [2.324375805227016, 48.83348531490719]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "23dc3789e3e247710107b83f91af0f58b7727705", "fields": {"departement": "75", "stop_lat": 48.82383287374942, "code_postal": "75114", "stop_lon": 2.327291061442393, "coord": [48.82383287374942, 2.327291061442393], "stop_id": 3764793, "stop_desc": "68-70 R DU PERE CORENTIN - 75114", "stop_name": "PORTE D'ORLEANS"}, "geometry": {"type": "Point", "coordinates": [2.327291061442393, 48.82383287374942]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "40625a26f8582dc72c0367508847bd9b51a6695b", "fields": {"departement": "75", "stop_lat": 48.83460922358238, "code_postal": "75113", "stop_lon": 2.3447697897325, "coord": [48.83460922358238, 2.3447697897325], "stop_id": 3764825, "stop_desc": "32 RUE DE LA GLACIERE - 75113", "stop_name": "GLACIERE - ARAGO"}, "geometry": {"type": "Point", "coordinates": [2.3447697897325, 48.83460922358238]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fecc2e55b84bc81c0b2135ec0bebb73f3d389f15", "fields": {"departement": "75", "stop_lat": 48.832811709729036, "code_postal": "75113", "stop_lon": 2.344674232338146, "coord": [48.832811709729036, 2.344674232338146], "stop_id": 3764828, "stop_desc": "43 RUE DE LA GLACIERE - 75113", "stop_name": "GLACIERE - NORDMANN"}, "geometry": {"type": "Point", "coordinates": [2.344674232338146, 48.832811709729036]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f7ec65c9d027f5dc32501c332c11d38cacef7e6e", "fields": {"departement": "75", "stop_lat": 48.82592735408744, "code_postal": "75114", "stop_lon": 2.3410932785585543, "coord": [48.82592735408744, 2.3410932785585543], "stop_id": 3764833, "stop_desc": "6-8 AVENUE REILLE - 75114", "stop_name": "GLACIERE - TOLBIAC"}, "geometry": {"type": "Point", "coordinates": [2.3410932785585543, 48.82592735408744]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "24666ad098532d7e67d78a03ece4538f80728d7a", "fields": {"departement": "75", "stop_lat": 48.85234167570838, "code_postal": "75105", "stop_lon": 2.343778173799205, "coord": [48.85234167570838, 2.343778173799205], "stop_id": 3764843, "stop_desc": "7 BOULEVARD SAINT-MICHEL - 75105", "stop_name": "SAINT-MICHEL - SAINT-GERMAIN"}, "geometry": {"type": "Point", "coordinates": [2.343778173799205, 48.85234167570838]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "449378721f3135d631eb0b187cea6a11d655467f", "fields": {"departement": "75", "stop_lat": 48.83858931715887, "code_postal": "75115", "stop_lon": 2.3174851598728554, "coord": [48.83858931715887, 2.3174851598728554], "stop_id": 3764964, "stop_desc": "PLACE DES 5 MARTYRS DU LYCEE BUFFON - 75115", "stop_name": "MONTPARNASSE 2 - GARE TGV"}, "geometry": {"type": "Point", "coordinates": [2.3174851598728554, 48.83858931715887]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ecef08c498b74644b308718014124b66fbbb2182", "fields": {"departement": "75", "stop_lat": 48.84077310974983, "code_postal": "75115", "stop_lon": 2.3164086680713942, "coord": [48.84077310974983, 2.3164086680713942], "stop_id": 3764965, "stop_desc": "65 BOULEVARD DE VAUGIRARD - 75115", "stop_name": "ARMORIQUE - MUSEE POSTAL"}, "geometry": {"type": "Point", "coordinates": [2.3164086680713942, 48.84077310974983]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "96c03d0608ea5bce156cf2d2d7c3c894d33632ce", "fields": {"departement": "75", "stop_lat": 48.84349739847797, "code_postal": "75114", "stop_lon": 2.3238014203032726, "coord": [48.84349739847797, 2.3238014203032726], "stop_id": 3764967, "stop_desc": "PLACE DU 18 JUIN 1940 - 75114", "stop_name": "PLACE DU 18 JUIN 1940"}, "geometry": {"type": "Point", "coordinates": [2.3238014203032726, 48.84349739847797]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "697d17a7111d60b59be8184f56cc075c7af0019a", "fields": {"departement": "75", "stop_lat": 48.84598203749001, "code_postal": "75112", "stop_lon": 2.3739805748450498, "coord": [48.84598203749001, 2.3739805748450498], "stop_id": 3764979, "stop_desc": "FACE 23BIS BOULEVARD DIDEROT - 75112", "stop_name": "GARE DE LYON - DIDEROT"}, "geometry": {"type": "Point", "coordinates": [2.3739805748450498, 48.84598203749001]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3b096d9a2d40951f42159050a4e9ae6887fcdfc4", "fields": {"departement": "75", "stop_lat": 48.83877965010914, "code_postal": "75105", "stop_lon": 2.3405904592793836, "coord": [48.83877965010914, 2.3405904592793836], "stop_id": 3764990, "stop_desc": "FACE 121 BOULEVARD DE PORT ROYAL - 75105", "stop_name": "PORT ROYAL - SAINT-JACQUES"}, "geometry": {"type": "Point", "coordinates": [2.3405904592793836, 48.83877965010914]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e280ee5d72e9670e35551d54c783749b63a93cae", "fields": {"departement": "75", "stop_lat": 48.84083779071601, "code_postal": "75106", "stop_lon": 2.3335919869630257, "coord": [48.84083779071601, 2.3335919869630257], "stop_id": 3764992, "stop_desc": "147 BOULEVARD DU MONTPARNASSE - 75106", "stop_name": "CAMPAGNE PREMIERE"}, "geometry": {"type": "Point", "coordinates": [2.3335919869630257, 48.84083779071601]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8338c3ddee7993ff501b544ace417fea29d017de", "fields": {"departement": "75", "stop_lat": 48.871044532850576, "code_postal": "75109", "stop_lon": 2.3325680619632974, "coord": [48.871044532850576, 2.3325680619632974], "stop_id": 3765148, "stop_desc": "PLACE DE L'OPERA - 75109", "stop_name": "OPERA"}, "geometry": {"type": "Point", "coordinates": [2.3325680619632974, 48.871044532850576]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "294e3ea57212795de3dcf33d99a49b1fc988f399", "fields": {"departement": "75", "stop_lat": 48.87374046011082, "code_postal": "75109", "stop_lon": 2.327989951615834, "coord": [48.87374046011082, 2.327989951615834], "stop_id": 3765150, "stop_desc": "64-66 BOULEVARD HAUSSMANN - 75109", "stop_name": "HAVRE - CAUMARTIN"}, "geometry": {"type": "Point", "coordinates": [2.327989951615834, 48.87374046011082]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d718d5a15ac5f9b1e8c64415fb3ee9398c6daa15", "fields": {"departement": "75", "stop_lat": 48.87395603688644, "code_postal": "75108", "stop_lon": 2.3265729484538205, "coord": [48.87395603688644, 2.3265729484538205], "stop_id": 3765151, "stop_desc": "74-76 BOULEVARD HAUSSMANN - 75108", "stop_name": "ROME - HAUSSMANN"}, "geometry": {"type": "Point", "coordinates": [2.3265729484538205, 48.87395603688644]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cb75fcf07060c57956265360ad42b2f19686d2af", "fields": {"departement": "75", "stop_lat": 48.88362477105826, "code_postal": "75110", "stop_lon": 2.3593443757229804, "coord": [48.88362477105826, 2.3593443757229804], "stop_id": 5761446, "stop_desc": "226-228 RUE DU FAUBOURG SAINT-DENIS - 75110", "stop_name": "PLACE DE LA CHAPELLE"}, "geometry": {"type": "Point", "coordinates": [2.3593443757229804, 48.88362477105826]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0199b08b61a5267ce43bbca86e688a4f849ef9d0", "fields": {"departement": "75", "stop_lat": 48.89996986758614, "code_postal": "75119", "stop_lon": 2.3704473851366274, "coord": [48.89996986758614, 2.3704473851366274], "stop_id": 5761448, "stop_desc": "AVENUE DE LA PORTE D'AUBERVILLIERS - 75119", "stop_name": "SKANDERBEG"}, "geometry": {"type": "Point", "coordinates": [2.3704473851366274, 48.89996986758614]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8155204623dc248478094fd3b899079cf5307eac", "fields": {"departement": "93", "stop_lat": 48.90163251647613, "code_postal": "93001", "stop_lon": 2.3703257627706003, "coord": [48.90163251647613, 2.3703257627706003], "stop_id": 5761449, "stop_desc": "40 AV VICTOR HUGO - 93001", "stop_name": "PARC DU MILLENAIRE"}, "geometry": {"type": "Point", "coordinates": [2.3703257627706003, 48.90163251647613]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e99b7e3faabc7ce8ad10afb2bfd4eac46f3f6541", "fields": {"departement": "75", "stop_lat": 48.89020802078957, "code_postal": "75119", "stop_lon": 2.3763833482577903, "coord": [48.89020802078957, 2.3763833482577903], "stop_id": 5761968, "stop_desc": "FACE 90 AVENUE DE FLANDRE - 75119", "stop_name": "CRIMEE"}, "geometry": {"type": "Point", "coordinates": [2.3763833482577903, 48.89020802078957]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b171d6c0009d29ca0b936b494d008996d9b45a3f", "fields": {"departement": "75", "stop_lat": 48.8887076684606, "code_postal": "75119", "stop_lon": 2.3748013049984094, "coord": [48.8887076684606, 2.3748013049984094], "stop_id": 5761971, "stop_desc": "64 AVENUE DE FLANDRE - 75119", "stop_name": "RIQUET"}, "geometry": {"type": "Point", "coordinates": [2.3748013049984094, 48.8887076684606]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "56ea56dcf3c401d8e6e4e4b6d7abd8623a947828", "fields": {"departement": "75", "stop_lat": 48.884539150640755, "code_postal": "75119", "stop_lon": 2.3695108375358216, "coord": [48.884539150640755, 2.3695108375358216], "stop_id": 5761975, "stop_desc": "4 AVENUE DE FLANDRE - 75119", "stop_name": "QUAI DE LA SEINE - STALINGRAD"}, "geometry": {"type": "Point", "coordinates": [2.3695108375358216, 48.884539150640755]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "14ac8fcdfde58949b3a88aff0a3271105033355c", "fields": {"departement": "75", "stop_lat": 48.88152054535606, "code_postal": "75110", "stop_lon": 2.3651211781154475, "coord": [48.88152054535606, 2.3651211781154475], "stop_id": 5761977, "stop_desc": "217 RUE LA FAYETTE - 75110", "stop_name": "LOUIS BLANC"}, "geometry": {"type": "Point", "coordinates": [2.3651211781154475, 48.88152054535606]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "251b402c415fe72979a9158b1e92cadc5b1de870", "fields": {"departement": "75", "stop_lat": 48.88064053689111, "code_postal": "75110", "stop_lon": 2.3617413534759955, "coord": [48.88064053689111, 2.3617413534759955], "stop_id": 5761979, "stop_desc": "191 RUE LA FAYETTE - 75110", "stop_name": "CHATEAU LANDON"}, "geometry": {"type": "Point", "coordinates": [2.3617413534759955, 48.88064053689111]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b86ef2512633905335650c9f1939d8f509b7ef2a", "fields": {"departement": "75", "stop_lat": 48.88080199600097, "code_postal": "75110", "stop_lon": 2.3632130874245205, "coord": [48.88080199600097, 2.3632130874245205], "stop_id": 5761980, "stop_desc": "190 RUE LA FAYETTE - 75110", "stop_name": "CHATEAU LANDON"}, "geometry": {"type": "Point", "coordinates": [2.3632130874245205, 48.88080199600097]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f6aad66b2e0cb4c6bcfa18355a70e90608f73a8f", "fields": {"departement": "75", "stop_lat": 48.88005756021677, "code_postal": "75110", "stop_lon": 2.3549960773675407, "coord": [48.88005756021677, 2.3549960773675407], "stop_id": 5761983, "stop_desc": "PLACE NAPOLEON III - 75110", "stop_name": "GARE DU NORD - DUNKERQUE"}, "geometry": {"type": "Point", "coordinates": [2.3549960773675407, 48.88005756021677]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0fd26078c68fd3e79097d07cf47031ffe82d657a", "fields": {"departement": "75", "stop_lat": 48.88371663447967, "code_postal": "75118", "stop_lon": 2.3335889584918315, "coord": [48.88371663447967, 2.3335889584918315], "stop_id": 5761991, "stop_desc": "80 BOULEVARD DE CLICHY - 75118", "stop_name": "BLANCHE"}, "geometry": {"type": "Point", "coordinates": [2.3335889584918315, 48.88371663447967]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9fbf3f90e1612bd62aa0af62170d6f9f47fec571", "fields": {"departement": "75", "stop_lat": 48.88458818475614, "code_postal": "75118", "stop_lon": 2.329268993773359, "coord": [48.88458818475614, 2.329268993773359], "stop_id": 5761992, "stop_desc": "130 BIS BOULEVARD DE CLICHY - 75118", "stop_name": "PLACE DE CLICHY - CAULAINCOURT"}, "geometry": {"type": "Point", "coordinates": [2.329268993773359, 48.88458818475614]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "83191498e9d71d57e27bc4236ef8382567a947f9", "fields": {"departement": "75", "stop_lat": 48.8893417810624, "code_postal": "75117", "stop_lon": 2.3225629388550773, "coord": [48.8893417810624, 2.3225629388550773], "stop_id": 5761997, "stop_desc": "100 AVENUE DE CLICHY - 75117", "stop_name": "LEGENDRE"}, "geometry": {"type": "Point", "coordinates": [2.3225629388550773, 48.8893417810624]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "65517f14e50322aae44a203c3ff7980ec69a1234", "fields": {"departement": "75", "stop_lat": 48.88941360841949, "code_postal": "75117", "stop_lon": 2.322004140832718, "coord": [48.88941360841949, 2.322004140832718], "stop_id": 5761998, "stop_desc": "103 AVENUE DE CLICHY - 75117", "stop_name": "LEGENDRE"}, "geometry": {"type": "Point", "coordinates": [2.322004140832718, 48.88941360841949]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "64cca196a3a2746cc189432af16772a43796cc39", "fields": {"departement": "92", "stop_lat": 48.902531185117816, "code_postal": "92024", "stop_lon": 2.304033074946289, "coord": [48.902531185117816, 2.304033074946289], "stop_id": 5762009, "stop_desc": "89 BOULEVARD JEAN JAURES - 92024", "stop_name": "MAIRIE DE CLICHY"}, "geometry": {"type": "Point", "coordinates": [2.304033074946289, 48.902531185117816]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6ecce245761544c05c64cae6612665a5c03580ca", "fields": {"departement": "75", "stop_lat": 48.88182933710138, "code_postal": "75109", "stop_lon": 2.340061788322775, "coord": [48.88182933710138, 2.340061788322775], "stop_id": 5762023, "stop_desc": "63 BOULEVARD DE ROCHECHOUART - 75109", "stop_name": "ROCHECHOUART - MARTYRS"}, "geometry": {"type": "Point", "coordinates": [2.340061788322775, 48.88182933710138]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b3ba694a33e13acb1f155e954620d5ccb9ccf772", "fields": {"departement": "75", "stop_lat": 48.87905074959519, "code_postal": "75110", "stop_lon": 2.356521844707956, "coord": [48.87905074959519, 2.356521844707956], "stop_id": 5762027, "stop_desc": "FACE 147 RUE LA FAYETTE - 75110", "stop_name": "LA FAYETTE - SAINT QUENTIN - GARE DU NORD"}, "geometry": {"type": "Point", "coordinates": [2.356521844707956, 48.87905074959519]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f9ce4645d317d4b2435881c204e8376955474cc3", "fields": {"departement": "75", "stop_lat": 48.892615791362296, "code_postal": "75119", "stop_lon": 2.378729451710416, "coord": [48.892615791362296, 2.378729451710416], "stop_id": 5762028, "stop_desc": "64 RUE DE L'OURCQ - 75119", "stop_name": "FLANDRE"}, "geometry": {"type": "Point", "coordinates": [2.378729451710416, 48.892615791362296]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f885fc01b526a39a9e2563ec6844a692ca141316", "fields": {"departement": "75", "stop_lat": 48.87604613955116, "code_postal": "75119", "stop_lon": 2.393772054863151, "coord": [48.87604613955116, 2.393772054863151], "stop_id": 5770776, "stop_desc": "17-19 RUE AUGUSTIN THIERRY - 75119", "stop_name": "PLACE DES FETES"}, "geometry": {"type": "Point", "coordinates": [2.393772054863151, 48.87604613955116]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bffaeb63d05ed0347582953fde79d18e38e2745d", "fields": {"departement": "75", "stop_lat": 48.88240505655071, "code_postal": "75119", "stop_lon": 2.382223390760729, "coord": [48.88240505655071, 2.382223390760729], "stop_id": 5770781, "stop_desc": "5 PLACE ARMAND CARREL - 75119", "stop_name": "ARMAND CARREL - MAIRIE DU 19E"}, "geometry": {"type": "Point", "coordinates": [2.382223390760729, 48.88240505655071]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dd2b1745312f13e6180f7de3db4c816d29f55f4e", "fields": {"departement": "75", "stop_lat": 48.884526827130706, "code_postal": "75119", "stop_lon": 2.380099350780431, "coord": [48.884526827130706, 2.380099350780431], "stop_id": 5770783, "stop_desc": "30 AVENUE LAUMIERE - 75119", "stop_name": "LAUMIERE"}, "geometry": {"type": "Point", "coordinates": [2.380099350780431, 48.884526827130706]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c7f8ef0f795f15afdfe30edd6ab1fdfb0fe94790", "fields": {"departement": "75", "stop_lat": 48.89357817917953, "code_postal": "75119", "stop_lon": 2.3764813015559594, "coord": [48.89357817917953, 2.3764813015559594], "stop_id": 5770793, "stop_desc": "70 RUE DE L'OURCQ - 75119", "stop_name": "CAMBRAI"}, "geometry": {"type": "Point", "coordinates": [2.3764813015559594, 48.89357817917953]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0fa6a355befb0d5ffd9cc0c83cfa007ace4313d3", "fields": {"departement": "75", "stop_lat": 48.894909625756426, "code_postal": "75119", "stop_lon": 2.3721479152579015, "coord": [48.894909625756426, 2.3721479152579015], "stop_id": 5770797, "stop_desc": "251 RUE DE CRIMEE - 75119", "stop_name": "CRIMEE - ROSA PARKS"}, "geometry": {"type": "Point", "coordinates": [2.3721479152579015, 48.894909625756426]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8b9aa7ab6ff11e7b9cbb53d0af139489ae494cbb", "fields": {"departement": "75", "stop_lat": 48.89540442067393, "code_postal": "75118", "stop_lon": 2.370389939706687, "coord": [48.89540442067393, 2.370389939706687], "stop_id": 5770799, "stop_desc": "RUE DE L'EVANGILE - 75118", "stop_name": "EVANGILE - AUBERVILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.370389939706687, 48.89540442067393]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ad5b1d023729b348000a150cfcde291832dbb332", "fields": {"departement": "75", "stop_lat": 48.89035620871295, "code_postal": "75118", "stop_lon": 2.3592518420279815, "coord": [48.89035620871295, 2.3592518420279815], "stop_id": 5770806, "stop_desc": "4 RUE ORDENER - 75118", "stop_name": "ORDENER - MARX DORMOY"}, "geometry": {"type": "Point", "coordinates": [2.3592518420279815, 48.89035620871295]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ee2b89d7595adc0fe588a70d549d4eed0fd838c9", "fields": {"departement": "75", "stop_lat": 48.89041977052216, "code_postal": "75118", "stop_lon": 2.355381236320418, "coord": [48.89041977052216, 2.355381236320418], "stop_id": 5770809, "stop_desc": "RUE ORDENER - 75118", "stop_name": "PONT MARCADET"}, "geometry": {"type": "Point", "coordinates": [2.355381236320418, 48.89041977052216]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c49fd1bb3fedcfb06ae811609fbf2d3ce1a9b983", "fields": {"departement": "75", "stop_lat": 48.89641558297259, "code_postal": "75118", "stop_lon": 2.3381542996971008, "coord": [48.89641558297259, 2.3381542996971008], "stop_id": 5770821, "stop_desc": "131 RUE DAMREMONT - 75118", "stop_name": "POTEAU - BELLIARD"}, "geometry": {"type": "Point", "coordinates": [2.3381542996971008, 48.89641558297259]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3a917dead026315d4162692cbb06fa55fb2c1df9", "fields": {"departement": "75", "stop_lat": 48.898033270205325, "code_postal": "75118", "stop_lon": 2.336968431666844, "coord": [48.898033270205325, 2.336968431666844], "stop_id": 5770823, "stop_desc": "1 AVENUE DE LA PORTE DE MONTMARTRE - 75118", "stop_name": "PORTE DE MONTMARTRE - BOULEVARD NEY"}, "geometry": {"type": "Point", "coordinates": [2.336968431666844, 48.898033270205325]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "badb2758f04246beeb87fa3706eeb5a4a97cb6ef", "fields": {"departement": "75", "stop_lat": 48.89939032212724, "code_postal": "75118", "stop_lon": 2.3362732254932808, "coord": [48.89939032212724, 2.3362732254932808], "stop_id": 5770824, "stop_desc": "FACE 15 AVENUE DE LA PORTE DE MONTMARTRE - 75118", "stop_name": "RENE BINET"}, "geometry": {"type": "Point", "coordinates": [2.3362732254932808, 48.89939032212724]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1f0c1535dab02061b6665adee1506499dccb4d2a", "fields": {"departement": "75", "stop_lat": 48.90051369018747, "code_postal": "75118", "stop_lon": 2.3348009868294834, "coord": [48.90051369018747, 2.3348009868294834], "stop_id": 5770826, "stop_desc": "FACE 16 R GERARD DE NERVAL - 75118", "stop_name": "PORTE DE MONTMARTRE"}, "geometry": {"type": "Point", "coordinates": [2.3348009868294834, 48.90051369018747]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "72c2bd6c6846dd5125e24f987f1e597dca630fd9", "fields": {"departement": "75", "stop_lat": 48.89177211247161, "code_postal": "75119", "stop_lon": 2.3753895869477755, "coord": [48.89177211247161, 2.3753895869477755], "stop_id": 5770828, "stop_desc": "207 RUE DE CRIMEE - 75119", "stop_name": "CRIMEE - ARCHEREAU"}, "geometry": {"type": "Point", "coordinates": [2.3753895869477755, 48.89177211247161]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "484d1be4dd126a5280fae6f4eb6f8c7a81d134d8", "fields": {"departement": "75", "stop_lat": 48.87510948006039, "code_postal": "75120", "stop_lon": 2.397804023976576, "coord": [48.87510948006039, 2.397804023976576], "stop_id": 5770830, "stop_desc": "169 RUE PELLEPORT - 75120", "stop_name": "PELLEPORT - BELLEVILLE"}, "geometry": {"type": "Point", "coordinates": [2.397804023976576, 48.87510948006039]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b0651818791002f51d411ee677c4dd7373968cae", "fields": {"departement": "92", "stop_lat": 48.891549826449435, "code_postal": "92062", "stop_lon": 2.240023338628281, "coord": [48.891549826449435, 2.240023338628281], "stop_id": 5775568, "stop_desc": "AVENUE PERRONET EST - 92062", "stop_name": "LA DEFENSE-METRO-RER-TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.240023338628281, 48.891549826449435]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cffc4732adce918e030fd57c1ce60f24e8b30ff7", "fields": {"departement": "92", "stop_lat": 48.90172322958267, "code_postal": "92026", "stop_lon": 2.25168684754486, "coord": [48.90172322958267, 2.25168684754486], "stop_id": 5775579, "stop_desc": "77 AVENUE DE LA REPUBLIQUE - 92026", "stop_name": "D'ESTIENNE D'ORVES"}, "geometry": {"type": "Point", "coordinates": [2.25168684754486, 48.90172322958267]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c516739254dc8b308f1c83407ee65bd6c953a063", "fields": {"departement": "92", "stop_lat": 48.912907359327576, "code_postal": "92004", "stop_lon": 2.272666136273818, "coord": [48.912907359327576, 2.272666136273818], "stop_id": 5775590, "stop_desc": "42 RUE DES BOURGUIGNONS - 92004", "stop_name": "GARE DE BOIS-COLOMBES"}, "geometry": {"type": "Point", "coordinates": [2.272666136273818, 48.912907359327576]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c9ddf4f123ca0f5128f568bd19ea5a78dedf4fea", "fields": {"departement": "92", "stop_lat": 48.923132268807166, "code_postal": "92036", "stop_lon": 2.286550099471401, "coord": [48.923132268807166, 2.286550099471401], "stop_id": 5775597, "stop_desc": "102 RUE LOUIS CALMEL - 92036", "stop_name": "LES AGNETTES"}, "geometry": {"type": "Point", "coordinates": [2.286550099471401, 48.923132268807166]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7891b479514c7c63c7e739ecb265c3205034d418", "fields": {"departement": "92", "stop_lat": 48.92856507706061, "code_postal": "92036", "stop_lon": 2.299201798745609, "coord": [48.92856507706061, 2.299201798745609], "stop_id": 5775602, "stop_desc": "BOULEVARD CAMELINAT - 92036", "stop_name": "DESLANDES - CABOEUFS"}, "geometry": {"type": "Point", "coordinates": [2.299201798745609, 48.92856507706061]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "67fa5254339d7db3e0abcf3661e351f23775f263", "fields": {"departement": "92", "stop_lat": 48.93299675581422, "code_postal": "92036", "stop_lon": 2.3029768762207876, "coord": [48.93299675581422, 2.3029768762207876], "stop_id": 5775605, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 92036", "stop_name": "ROND-POINT PIERRE TIMBAUD"}, "geometry": {"type": "Point", "coordinates": [2.3029768762207876, 48.93299675581422]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "046222a93f379e2adb3642a6b9e3d6908146cbbd", "fields": {"departement": "92", "stop_lat": 48.933546227385655, "code_postal": "92036", "stop_lon": 2.3077369908710854, "coord": [48.933546227385655, 2.3077369908710854], "stop_id": 5775608, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 92036", "stop_name": "GENNEVILLIERS RER"}, "geometry": {"type": "Point", "coordinates": [2.3077369908710854, 48.933546227385655]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a3bbdf2a577c977133743c265eecfe2dc44940c5", "fields": {"departement": "92", "stop_lat": 48.920135215528944, "code_postal": "92009", "stop_lon": 2.2770890872485854, "coord": [48.920135215528944, 2.2770890872485854], "stop_id": 5775615, "stop_desc": "89 AVENUE CHARLES DE GAULLE - 92009", "stop_name": "ABBE GLATZ"}, "geometry": {"type": "Point", "coordinates": [2.2770890872485854, 48.920135215528944]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4bd0d594577b8392e95187e0c131fea9981fdd9f", "fields": {"departement": "93", "stop_lat": 48.9295181671536, "code_postal": "93029", "stop_lon": 2.42537807131032, "coord": [48.9295181671536, 2.42537807131032], "stop_id": 5794605, "stop_desc": "RUE DE LA STATION - 93029", "stop_name": "RUE DE LA STATION"}, "geometry": {"type": "Point", "coordinates": [2.42537807131032, 48.9295181671536]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "966376eb5c6d7cd423dd786f7bba47512755dc9a", "fields": {"departement": "93", "stop_lat": 48.923585414424764, "code_postal": "93029", "stop_lon": 2.438446555301734, "coord": [48.923585414424764, 2.438446555301734], "stop_id": 5794609, "stop_desc": "79 RUE DE LA REPUBLIQUE - 93029", "stop_name": "JEAN-PIERRE TIMBAUD"}, "geometry": {"type": "Point", "coordinates": [2.438446555301734, 48.923585414424764]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1f1a46a96ba5d68081b528863254c06e050d5744", "fields": {"departement": "93", "stop_lat": 48.916266004778805, "code_postal": "93029", "stop_lon": 2.4324052341691074, "coord": [48.916266004778805, 2.4324052341691074], "stop_id": 5794613, "stop_desc": "38-40 RUE FERNAND PENA - 93029", "stop_name": "ANDRE SIGONNEY"}, "geometry": {"type": "Point", "coordinates": [2.4324052341691074, 48.916266004778805]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f5b75603bffd9cb174bc6c6968739e6ffd8e5777", "fields": {"departement": "93", "stop_lat": 48.91279472656473, "code_postal": "93008", "stop_lon": 2.4352349144643686, "coord": [48.91279472656473, 2.4352349144643686], "stop_id": 5794615, "stop_desc": "RUE DE STALINGRAD - 93008", "stop_name": "ESCADRILLE NORMANDIE - NIEMEN-STALINGRAD-TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.4352349144643686, 48.91279472656473]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8817fc8e8c530ea6513f734ac08066f7e15a3f60", "fields": {"departement": "93", "stop_lat": 48.90946775056652, "code_postal": "93008", "stop_lon": 2.447553768193413, "coord": [48.90946775056652, 2.447553768193413], "stop_id": 5794618, "stop_desc": "AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "PIERRE SEMARD"}, "geometry": {"type": "Point", "coordinates": [2.447553768193413, 48.90946775056652]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "09623f54f1d44332837c3b6f29f137e5732ceead", "fields": {"departement": "93", "stop_lat": 48.905486896676855, "code_postal": "93008", "stop_lon": 2.4651318210827156, "coord": [48.905486896676855, 2.4651318210827156], "stop_id": 5794622, "stop_desc": "412 AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "RUE DES PEUPLIERS"}, "geometry": {"type": "Point", "coordinates": [2.4651318210827156, 48.905486896676855]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6e3ca9b236e203dff761a1c1e90c7602dadaaf34", "fields": {"departement": "93", "stop_lat": 48.903907330531226, "code_postal": "93010", "stop_lon": 2.4713443676447677, "coord": [48.903907330531226, 2.4713443676447677], "stop_id": 5794624, "stop_desc": "AVENUE GALLIENI - 93010", "stop_name": "AVENUE DE ROSNY"}, "geometry": {"type": "Point", "coordinates": [2.4713443676447677, 48.903907330531226]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e721677de4d06b06ade9e37478397eb2b770b3ad", "fields": {"departement": "93", "stop_lat": 48.90579255204801, "code_postal": "93010", "stop_lon": 2.480837851423006, "coord": [48.90579255204801, 2.480837851423006], "stop_id": 5794626, "stop_desc": "112 AVENUE GALLIENI - 93010", "stop_name": "AUGUSTE POLISSARD"}, "geometry": {"type": "Point", "coordinates": [2.480837851423006, 48.90579255204801]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ef5b9e8aa50795657fce772ea0067d4e77693da4", "fields": {"departement": "93", "stop_lat": 48.90658543502007, "code_postal": "93010", "stop_lon": 2.4865114865196762, "coord": [48.90658543502007, 2.4865114865196762], "stop_id": 5794627, "stop_desc": "170 AVENUE GALLIENI - 93010", "stop_name": "PASTEUR - HOPITAL JEAN VERDIER"}, "geometry": {"type": "Point", "coordinates": [2.4865114865196762, 48.90658543502007]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2d671b71ba6a6e88bf9f4dc9b714bb45cc532c3c", "fields": {"departement": "93", "stop_lat": 48.899505143899496, "code_postal": "93062", "stop_lon": 2.5178705933413594, "coord": [48.899505143899496, 2.5178705933413594], "stop_id": 5794634, "stop_desc": "2 AVENUE DE LIVRY - 93062", "stop_name": "ROND-POINT THIERS"}, "geometry": {"type": "Point", "coordinates": [2.5178705933413594, 48.899505143899496]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0e14e588f3063e427be28e3e089a3ec2cba5976b", "fields": {"departement": "93", "stop_lat": 48.90621831778443, "code_postal": "93046", "stop_lon": 2.5238380621365057, "coord": [48.90621831778443, 2.5238380621365057], "stop_id": 5794636, "stop_desc": "87 BOULEVARD MARX DORMOY - 93046", "stop_name": "REPUBLIQUE - MARX DORMOY"}, "geometry": {"type": "Point", "coordinates": [2.5238380621365057, 48.90621831778443]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ab6b8639e594407113a739f07e23df2f8bf72d7a", "fields": {"departement": "93", "stop_lat": 48.90778406877689, "code_postal": "93014", "stop_lon": 2.533782592514705, "coord": [48.90778406877689, 2.533782592514705], "stop_id": 5794639, "stop_desc": "BOULEVARD GAGARINE - 93014", "stop_name": "COLLEGE LOUISE MICHEL"}, "geometry": {"type": "Point", "coordinates": [2.533782592514705, 48.90778406877689]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e5ac350ce2abceab2126c04cffe41462148c51ea", "fields": {"departement": "93", "stop_lat": 48.92723414897826, "code_postal": "93029", "stop_lon": 2.4383991297305485, "coord": [48.92723414897826, 2.4383991297305485], "stop_id": 5794650, "stop_desc": "1 PLACE MAURICE NILES - 93029", "stop_name": "ARISTIDE BRIAND"}, "geometry": {"type": "Point", "coordinates": [2.4383991297305485, 48.92723414897826]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "10683ef4b9b09288f22f9da344ebf5e82e6a131c", "fields": {"departement": "93", "stop_lat": 48.92305719930438, "code_postal": "93029", "stop_lon": 2.4463553244077896, "coord": [48.92305719930438, 2.4463553244077896], "stop_id": 5794653, "stop_desc": "BOULEVARD PAUL VAILLANT COUTURIER - 93029", "stop_name": "MAIRIE DE DRANCY"}, "geometry": {"type": "Point", "coordinates": [2.4463553244077896, 48.92305719930438]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "721746429b2dc14116b97c22a6cf3a734bdab11e", "fields": {"departement": "93", "stop_lat": 48.92144031506802, "code_postal": "93029", "stop_lon": 2.454997880913197, "coord": [48.92144031506802, 2.454997880913197], "stop_id": 5794657, "stop_desc": "168 AVENUE HENRI BARBUSSE - 93029", "stop_name": "AUGUSTE BLANQUI"}, "geometry": {"type": "Point", "coordinates": [2.454997880913197, 48.92144031506802]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4be42098b869a8991ae5dde214f038ef7faf2b8b", "fields": {"departement": "93", "stop_lat": 48.92114485792039, "code_postal": "93029", "stop_lon": 2.4538653310183443, "coord": [48.92114485792039, 2.4538653310183443], "stop_id": 5794658, "stop_desc": "177 BIS AVENUE HENRI BARBUSSE - 93029", "stop_name": "AUGUSTE BLANQUI"}, "geometry": {"type": "Point", "coordinates": [2.4538653310183443, 48.92114485792039]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8306158fe7be279be3c14a36e929d8096b33c432", "fields": {"departement": "93", "stop_lat": 48.92362033739707, "code_postal": "93029", "stop_lon": 2.458794128458234, "coord": [48.92362033739707, 2.458794128458234], "stop_id": 5794662, "stop_desc": "FACE 9-11 RUE DU DOCTEUR ALBERT SCHWEITZER - 93029", "stop_name": "LYCEE EUGENE DELACROIX"}, "geometry": {"type": "Point", "coordinates": [2.458794128458234, 48.92362033739707]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4de5f16e90c3bb3397ff34b8e9b8cd552513998e", "fields": {"departement": "93", "stop_lat": 48.90386287775983, "code_postal": "93047", "stop_lon": 2.5608829071805457, "coord": [48.90386287775983, 2.5608829071805457], "stop_id": 5794665, "stop_desc": "AVENUE DE CLICHY - 93047", "stop_name": "LES BOSQUETS"}, "geometry": {"type": "Point", "coordinates": [2.5608829071805457, 48.90386287775983]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "87b85fcf7f92413857583fa1c8b684e8fd12c003", "fields": {"departement": "93", "stop_lat": 48.905730467371214, "code_postal": "93057", "stop_lon": 2.501110012082014, "coord": [48.905730467371214, 2.501110012082014], "stop_id": 5794680, "stop_desc": "71 AVENUE JEAN JAURES - 93057", "stop_name": "JEAN-BAPTISTE CLEMENT - JAURES"}, "geometry": {"type": "Point", "coordinates": [2.501110012082014, 48.905730467371214]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0037e3ce308f301bb45490d672b8c13186553768", "fields": {"departement": "93", "stop_lat": 48.90778666578987, "code_postal": "93057", "stop_lon": 2.495826683951808, "coord": [48.90778666578987, 2.495826683951808], "stop_id": 5794681, "stop_desc": "3 AVENUE JEAN JAURES - 93057", "stop_name": "PAVILLONS DE GARDE"}, "geometry": {"type": "Point", "coordinates": [2.495826683951808, 48.90778666578987]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5886df1ba80c3ad888c237ab6d8bc6132d0c4b19", "fields": {"departement": "93", "stop_lat": 48.907969430629855, "code_postal": "93057", "stop_lon": 2.4935367931702235, "coord": [48.907969430629855, 2.4935367931702235], "stop_id": 5794682, "stop_desc": "11 AVENUE ARISTIDE BRIAND - 93057", "stop_name": "LA FOURCHE"}, "geometry": {"type": "Point", "coordinates": [2.4935367931702235, 48.907969430629855]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a991cf63fbbffa2bfbe2543d9ad21e0fa9bd5f21", "fields": {"departement": "93", "stop_lat": 48.906169876941505, "code_postal": "93010", "stop_lon": 2.4809479623042554, "coord": [48.906169876941505, 2.4809479623042554], "stop_id": 5794684, "stop_desc": "111 AVENUE GALLIENI - 93010", "stop_name": "AUGUSTE POLISSARD"}, "geometry": {"type": "Point", "coordinates": [2.4809479623042554, 48.906169876941505]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "373a1600d18ea1d3e4ca62e0b0d33f355c378d40", "fields": {"departement": "93", "stop_lat": 48.90429432550699, "code_postal": "93010", "stop_lon": 2.4708545934866195, "coord": [48.90429432550699, 2.4708545934866195], "stop_id": 5794685, "stop_desc": "AVENUE GALLIENI - 93010", "stop_name": "AVENUE DE ROSNY"}, "geometry": {"type": "Point", "coordinates": [2.4708545934866195, 48.90429432550699]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "924f14c4d638e69f59398440e7a722aca1c47fc5", "fields": {"departement": "93", "stop_lat": 48.90653371180456, "code_postal": "93008", "stop_lon": 2.4610444314823243, "coord": [48.90653371180456, 2.4610444314823243], "stop_id": 5794688, "stop_desc": "AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "AUGUSTE DELAUNE"}, "geometry": {"type": "Point", "coordinates": [2.4610444314823243, 48.90653371180456]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2697ebd8c35082670847ad7586f9f4dfffbc190e", "fields": {"departement": "93", "stop_lat": 48.91337851162092, "code_postal": "93008", "stop_lon": 2.4356859748755975, "coord": [48.91337851162092, 2.4356859748755975], "stop_id": 5794696, "stop_desc": "8 RUE DE STALINGRAD - 93008", "stop_name": "ESCADRILLE NORMANDIE - NIEMEN-STALINGRAD-TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.4356859748755975, 48.91337851162092]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "67fe836d5cb60f3dfa7c409e20103b19bb9521b8", "fields": {"departement": "93", "stop_lat": 48.919684999183026, "code_postal": "93029", "stop_lon": 2.438534392398405, "coord": [48.919684999183026, 2.438534392398405], "stop_id": 5794700, "stop_desc": "35 RUE ROGER SALENGRO - 93029", "stop_name": "DANTON"}, "geometry": {"type": "Point", "coordinates": [2.438534392398405, 48.919684999183026]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a5631b68beb7f48436944014d63f14c5c2388940", "fields": {"departement": "93", "stop_lat": 48.9255019571105, "code_postal": "93029", "stop_lon": 2.435668100820287, "coord": [48.9255019571105, 2.435668100820287], "stop_id": 5794703, "stop_desc": "FACE 131 RUE DE LA REPUBLIQUE - 93029", "stop_name": "CITE PIERRE SEMARD"}, "geometry": {"type": "Point", "coordinates": [2.435668100820287, 48.9255019571105]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "84911543ac8382c6fd483913e8f5104518291291", "fields": {"departement": "93", "stop_lat": 48.9255414042813, "code_postal": "93029", "stop_lon": 2.4313312153896587, "coord": [48.9255414042813, 2.4313312153896587], "stop_id": 5794704, "stop_desc": "FACE 183 RUE DE LA REPUBLIQUE - 93029", "stop_name": "LAMARTINE - FRANCOIS RUDE"}, "geometry": {"type": "Point", "coordinates": [2.4313312153896587, 48.9255414042813]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "64e1d4ba8587a78c4fcdb8c8af1bc3232be81b58", "fields": {"departement": "93", "stop_lat": 48.931672961444356, "code_postal": "93013", "stop_lon": 2.428123348689085, "coord": [48.931672961444356, 2.428123348689085], "stop_id": 5794707, "stop_desc": "FACE 60 AVENUE JEAN JAURES - 93013", "stop_name": "LE BOURGET RER"}, "geometry": {"type": "Point", "coordinates": [2.428123348689085, 48.931672961444356]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3cbd878be4d5e8b6e5695f1a537e7fa27c78e3a6", "fields": {"departement": "93", "stop_lat": 48.90519794816186, "code_postal": "93014", "stop_lon": 2.5482918443949325, "coord": [48.90519794816186, 2.5482918443949325], "stop_id": 5794713, "stop_desc": "BOULEVARD EMILE ZOLA - 93014", "stop_name": "GAGARINE"}, "geometry": {"type": "Point", "coordinates": [2.5482918443949325, 48.90519794816186]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e78e10e1c8b0d0cc8b6fcb60b0dfee92a83f9435", "fields": {"departement": "93", "stop_lat": 48.90888406123371, "code_postal": "93046", "stop_lon": 2.5316053431104883, "coord": [48.90888406123371, 2.5316053431104883], "stop_id": 5794716, "stop_desc": "43 AVENUE LEON BLUM - 93046", "stop_name": "JEAN-BAPTISTE CLEMENT"}, "geometry": {"type": "Point", "coordinates": [2.5316053431104883, 48.90888406123371]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f354cb36fb806c4f412e0f235b8de077f9da64d4", "fields": {"departement": "77", "stop_lat": 48.84523513115238, "code_postal": "77083", "stop_lon": 2.585263641276989, "coord": [48.84523513115238, 2.585263641276989], "stop_id": 5815081, "stop_desc": "RUE NELSON MANDELA - 77083", "stop_name": "LYCEE RENE DESCARTES"}, "geometry": {"type": "Point", "coordinates": [2.585263641276989, 48.84523513115238]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2b3646c407cdebc3d02f6921e6351b4dc4fe2036", "fields": {"departement": "91", "stop_lat": 48.70334608676053, "code_postal": "91027", "stop_lon": 2.3576789573845205, "coord": [48.70334608676053, 2.3576789573845205], "stop_id": 5816772, "stop_desc": "2-4 AV CONDORCET - 91027", "stop_name": "CONDORCET"}, "geometry": {"type": "Point", "coordinates": [2.3576789573845205, 48.70334608676053]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "498fbbf99000c0a3f143e41dc0bf54a0d0568089", "fields": {"departement": "91", "stop_lat": 48.70733186538039, "code_postal": "91027", "stop_lon": 2.3776581986811003, "coord": [48.70733186538039, 2.3776581986811003], "stop_id": 5816780, "stop_desc": "81 AVENUE MARCEL SEMBAT - 91027", "stop_name": "LA PLAINE"}, "geometry": {"type": "Point", "coordinates": [2.3776581986811003, 48.70733186538039]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c902c9b37d155c0c362e81ca39ae9d6b22ab4856", "fields": {"departement": "91", "stop_lat": 48.7077884725674, "code_postal": "91027", "stop_lon": 2.3826564118763565, "coord": [48.7077884725674, 2.3826564118763565], "stop_id": 5816782, "stop_desc": "RUE JEAN-BAPTISTE DE LA SALLE - 91027", "stop_name": "ALBERT SARRAUT"}, "geometry": {"type": "Point", "coordinates": [2.3826564118763565, 48.7077884725674]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e256fce784ef3667bb546559f160b84349311bab", "fields": {"departement": "91", "stop_lat": 48.70028541860071, "code_postal": "91027", "stop_lon": 2.376009645442066, "coord": [48.70028541860071, 2.376009645442066], "stop_id": 5816792, "stop_desc": "33-35 AV JULES VALLES - 91027", "stop_name": "TROIS ORMES"}, "geometry": {"type": "Point", "coordinates": [2.376009645442066, 48.70028541860071]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4a065335ffcab5d2c7d2a497e6e5e3c8358b2b8f", "fields": {"departement": "91", "stop_lat": 48.69984698396775, "code_postal": "91027", "stop_lon": 2.3692876823505715, "coord": [48.69984698396775, 2.3692876823505715], "stop_id": 5816801, "stop_desc": "21-23 R HENRI BARBUSSE - 91027", "stop_name": "MUTUALITE"}, "geometry": {"type": "Point", "coordinates": [2.3692876823505715, 48.69984698396775]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0bf88d02f479a7c69061b6e91f08ff780c856358", "fields": {"departement": "91", "stop_lat": 48.7019924730489, "code_postal": "91027", "stop_lon": 2.3782922940076636, "coord": [48.7019924730489, 2.3782922940076636], "stop_id": 5816804, "stop_desc": "80-82 AV JULES VALLES - 91027", "stop_name": "PRESIDENT DENIS"}, "geometry": {"type": "Point", "coordinates": [2.3782922940076636, 48.7019924730489]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "acb59ce0d4b4ca6f1e09a3d173d2c7578868fab9", "fields": {"departement": "91", "stop_lat": 48.7119284543995, "code_postal": "91027", "stop_lon": 2.391488468075179, "coord": [48.7119284543995, 2.391488468075179], "stop_id": 5816809, "stop_desc": "FACE 31 AV HENRI DUNANT - 91027", "stop_name": "CLOS NOLLET"}, "geometry": {"type": "Point", "coordinates": [2.391488468075179, 48.7119284543995]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "28b07eb20720dbdbabf83cd70c72e89779f85665", "fields": {"departement": "91", "stop_lat": 48.71091407362534, "code_postal": "91027", "stop_lon": 2.388526544318977, "coord": [48.71091407362534, 2.388526544318977], "stop_id": 5816813, "stop_desc": "FACE 32 AV HENRI DUNANT - 91027", "stop_name": "CIMETIERE D'ATHIS-MONS"}, "geometry": {"type": "Point", "coordinates": [2.388526544318977, 48.71091407362534]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "91fccdff7d391aa627c28627691fd3c64c572b85", "fields": {"departement": "91", "stop_lat": 48.705887069449716, "code_postal": "91027", "stop_lon": 2.3700247565914854, "coord": [48.705887069449716, 2.3700247565914854], "stop_id": 5816817, "stop_desc": "8/10 AVENUE DE MORANGIS - 91027", "stop_name": "BELLE ETOILE"}, "geometry": {"type": "Point", "coordinates": [2.3700247565914854, 48.705887069449716]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ddc706e71ab9de15f3a7c1f8c8ac6a3f3584b8cc", "fields": {"departement": "91", "stop_lat": 48.7037675148692, "code_postal": "91027", "stop_lon": 2.362988936531022, "coord": [48.7037675148692, 2.362988936531022], "stop_id": 5816820, "stop_desc": "1 R DE L'EPINETTE - 91027", "stop_name": "NOYER RENARD."}, "geometry": {"type": "Point", "coordinates": [2.362988936531022, 48.7037675148692]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e0d9f2a1fa3e6580d7e6229afc7aabc6efe57d06", "fields": {"departement": "92", "stop_lat": 48.896357602165864, "code_postal": "92024", "stop_lon": 2.3061361372549865, "coord": [48.896357602165864, 2.3061361372549865], "stop_id": 5821500, "stop_desc": "FACE 13 RUE DES CAILLOUX - 92024", "stop_name": "CAILLOUX"}, "geometry": {"type": "Point", "coordinates": [2.3061361372549865, 48.896357602165864]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "039d452c3dbd8ca6cc9527f23cfff6f6c67e088a", "fields": {"departement": "92", "stop_lat": 48.9011253545939, "code_postal": "92024", "stop_lon": 2.292310623720337, "coord": [48.9011253545939, 2.292310623720337], "stop_id": 5821503, "stop_desc": "ROUTE D'ASNIERES - 92024", "stop_name": "RUE DES CHASSES"}, "geometry": {"type": "Point", "coordinates": [2.292310623720337, 48.9011253545939]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c638d8799c6e936ef5f0499c2efdaeba268e838f", "fields": {"departement": "94", "stop_lat": 48.844450744856765, "code_postal": "94080", "stop_lon": 2.4408113178436235, "coord": [48.844450744856765, 2.4408113178436235], "stop_id": 5922159, "stop_desc": "PISTE GARE ROUTIERE - 94080", "stop_name": "CHATEAU DE VINCENNES"}, "geometry": {"type": "Point", "coordinates": [2.4408113178436235, 48.844450744856765]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "32e1dabb5d66d1f921ad414622c955e577cf82ea", "fields": {"departement": "94", "stop_lat": 48.8486731310663, "code_postal": "94080", "stop_lon": 2.432117826131677, "coord": [48.8486731310663, 2.432117826131677], "stop_id": 5922163, "stop_desc": "206 RUE DE FONTENAY - 94080", "stop_name": "FRATERNITE"}, "geometry": {"type": "Point", "coordinates": [2.432117826131677, 48.8486731310663]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "962e5b5f1f19f6f1101bafcff521afc381bb032f", "fields": {"departement": "93", "stop_lat": 48.858324672028104, "code_postal": "93006", "stop_lon": 2.4214842004580808, "coord": [48.858324672028104, 2.4214842004580808], "stop_id": 5922168, "stop_desc": "195 RUE ROBESPIERRE - 93006", "stop_name": "VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.4214842004580808, 48.858324672028104]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ab9e48dffbe8519a08f7ccfd4dde6cf896a988a5", "fields": {"departement": "93", "stop_lat": 48.87274919592086, "code_postal": "93006", "stop_lon": 2.4217801213150154, "coord": [48.87274919592086, 2.4217801213150154], "stop_id": 5922177, "stop_desc": "128 RUE SADI CARNOT - 93006", "stop_name": "RENE ALAZARD - SADI CARNOT"}, "geometry": {"type": "Point", "coordinates": [2.4217801213150154, 48.87274919592086]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c55f02912394246ce35e378634ad8ad6f8363c8a", "fields": {"departement": "93", "stop_lat": 48.8807537029515, "code_postal": "93063", "stop_lon": 2.4374635976267305, "coord": [48.8807537029515, 2.4374635976267305], "stop_id": 5922183, "stop_desc": "87 RUE DE LA REPUBLIQUE - 93063", "stop_name": "GABRIEL HUSSON"}, "geometry": {"type": "Point", "coordinates": [2.4374635976267305, 48.8807537029515]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "280ac60251d7ef5a757f26d48f4ff71c9a3673d2", "fields": {"departement": "93", "stop_lat": 48.89231451914397, "code_postal": "93063", "stop_lon": 2.4335197673300724, "coord": [48.89231451914397, 2.4335197673300724], "stop_id": 5922190, "stop_desc": "16 RUE LOUISE DORY - 93063", "stop_name": "CHANTALOUPS"}, "geometry": {"type": "Point", "coordinates": [2.4335197673300724, 48.89231451914397]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2226dddacf1b851b19c236b5a72dfcf379df4321", "fields": {"departement": "93", "stop_lat": 48.89546528048841, "code_postal": "93055", "stop_lon": 2.426778609497494, "coord": [48.89546528048841, 2.426778609497494], "stop_id": 5922192, "stop_desc": "3 ROUTE DE NOISY - 93055", "stop_name": "RAYMOND QUENEAU - ROUTE DE NOISY"}, "geometry": {"type": "Point", "coordinates": [2.426778609497494, 48.89546528048841]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7b01dbff895978caba1a52698e64455a4d5814b8", "fields": {"departement": "93", "stop_lat": 48.89070212704878, "code_postal": "93063", "stop_lon": 2.426715865681448, "coord": [48.89070212704878, 2.426715865681448], "stop_id": 5922198, "stop_desc": "127 AVENUE DU COLONEL FABIEN - 93063", "stop_name": "BRETAGNES"}, "geometry": {"type": "Point", "coordinates": [2.426715865681448, 48.89070212704878]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8ea6a6520d96032ea3bceb42e2c3a7a97a5579d7", "fields": {"departement": "93", "stop_lat": 48.88546036712287, "code_postal": "93063", "stop_lon": 2.4296231450537884, "coord": [48.88546036712287, 2.4296231450537884], "stop_id": 5922200, "stop_desc": "RUE VASSOU - 93063", "stop_name": "FORT DE ROMAINVILLE"}, "geometry": {"type": "Point", "coordinates": [2.4296231450537884, 48.88546036712287]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cb247c0951842478baeb31dd4b397837962206ab", "fields": {"departement": "93", "stop_lat": 48.883348621455006, "code_postal": "93063", "stop_lon": 2.440275805005778, "coord": [48.883348621455006, 2.440275805005778], "stop_id": 5922203, "stop_desc": "2 RUE DE LA REPUBLIQUE - 93063", "stop_name": "CARNOT"}, "geometry": {"type": "Point", "coordinates": [2.440275805005778, 48.883348621455006]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c7517a6c333a3f0588bf39c8b336253566b0b36a", "fields": {"departement": "93", "stop_lat": 48.86754005980411, "code_postal": "93006", "stop_lon": 2.4166630116229832, "coord": [48.86754005980411, 2.4166630116229832], "stop_id": 5922212, "stop_desc": "23 RUE ADELAIDE LAHAYE - 93006", "stop_name": "LA POSTE"}, "geometry": {"type": "Point", "coordinates": [2.4166630116229832, 48.86754005980411]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6d2964a832223510db21282ab6c7c817770184c5", "fields": {"departement": "93", "stop_lat": 48.85849850827165, "code_postal": "93006", "stop_lon": 2.4170169238156283, "coord": [48.85849850827165, 2.4170169238156283], "stop_id": 5922216, "stop_desc": "57 RUE JULES FERRY - 93006", "stop_name": "LIEUTENANT THOMAS"}, "geometry": {"type": "Point", "coordinates": [2.4170169238156283, 48.85849850827165]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8e205b25d75922a7855aeb5b11dbc294165b0c7f", "fields": {"departement": "75", "stop_lat": 48.864766333887154, "code_postal": "75120", "stop_lon": 2.3952309635940914, "coord": [48.864766333887154, 2.3952309635940914], "stop_id": 5939872, "stop_desc": "AVENUE GAMBETTA - 75120", "stop_name": "MARTIN NADAUD"}, "geometry": {"type": "Point", "coordinates": [2.3952309635940914, 48.864766333887154]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6c9a19a80d4fbafa4b39bd3ad930d77a3428ef6d", "fields": {"departement": "93", "stop_lat": 48.91437948795612, "code_postal": "93001", "stop_lon": 2.404981183228012, "coord": [48.91437948795612, 2.404981183228012], "stop_id": 5944484, "stop_desc": "PISTE GARE ROUTIERE - 93001", "stop_name": "FORT D'AUBERVILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.404981183228012, 48.91437948795612]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7397470ec25d2b48e59e07141c989f1bad21e80a", "fields": {"departement": "93", "stop_lat": 48.89931266233647, "code_postal": "93055", "stop_lon": 2.3965645909629774, "coord": [48.89931266233647, 2.3965645909629774], "stop_id": 5944492, "stop_desc": "31 AVENUE EDOUARD VAILLANT - 93055", "stop_name": "JEAN MOULIN"}, "geometry": {"type": "Point", "coordinates": [2.3965645909629774, 48.89931266233647]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8b097f38c0bdc7bc10326980a8169145a01e91bb", "fields": {"departement": "93", "stop_lat": 48.89335270277015, "code_postal": "93055", "stop_lon": 2.399474539557299, "coord": [48.89335270277015, 2.399474539557299], "stop_id": 5944498, "stop_desc": "35 R AUGER - 93055", "stop_name": "CONGO"}, "geometry": {"type": "Point", "coordinates": [2.399474539557299, 48.89335270277015]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c961beb134ad309f0d19703168f8e8e7bb79bb3a", "fields": {"departement": "75", "stop_lat": 48.868338278887315, "code_postal": "75103", "stop_lon": 2.3538613429496, "coord": [48.868338278887315, 2.3538613429496], "stop_id": 4037046, "stop_desc": "108 BOULEVARD DE SEBASTOPOL - 75103", "stop_name": "STRASBOURG - SAINT-DENIS"}, "geometry": {"type": "Point", "coordinates": [2.3538613429496, 48.868338278887315]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "23e7e914a21829b5b522537347bd73fbb6b7dc4b", "fields": {"departement": "94", "stop_lat": 48.845692921910626, "code_postal": "94080", "stop_lon": 2.42742804346871, "coord": [48.845692921910626, 2.42742804346871], "stop_id": 4037166, "stop_desc": "98 AVENUE DE PARIS - 94080", "stop_name": "BERAULT-METRO"}, "geometry": {"type": "Point", "coordinates": [2.42742804346871, 48.845692921910626]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7eb847543bdc7f02bfb1568aca2a9ce4986f2eb9", "fields": {"departement": "94", "stop_lat": 48.8461007461472, "code_postal": "94080", "stop_lon": 2.422839704596597, "coord": [48.8461007461472, 2.422839704596597], "stop_id": 4037167, "stop_desc": "144 AVENUE DE PARIS - 94080", "stop_name": "AUBERT"}, "geometry": {"type": "Point", "coordinates": [2.422839704596597, 48.8461007461472]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "84bd1f962443da574f927ab807da58fcee4f6b60", "fields": {"departement": "75", "stop_lat": 48.847078787112714, "code_postal": "75120", "stop_lon": 2.411851908753727, "coord": [48.847078787112714, 2.411851908753727], "stop_id": 4037168, "stop_desc": "5 AVENUE DE LA PORTE DE VINCENNES - 75120", "stop_name": "PORTE DE VINCENNES"}, "geometry": {"type": "Point", "coordinates": [2.411851908753727, 48.847078787112714]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b148d7c47374d2050c46c57be06299b1f88b41d2", "fields": {"departement": "75", "stop_lat": 48.84787500756238, "code_postal": "75120", "stop_lon": 2.402810824531941, "coord": [48.84787500756238, 2.402810824531941], "stop_id": 4037170, "stop_desc": "39 COURS DE VINCENNES - 75120", "stop_name": "MARSOULAN"}, "geometry": {"type": "Point", "coordinates": [2.402810824531941, 48.84787500756238]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "16088ae1dacff8f24440ca69428b128cde7fd925", "fields": {"departement": "75", "stop_lat": 48.84752295573372, "code_postal": "75112", "stop_lon": 2.387490443468507, "coord": [48.84752295573372, 2.387490443468507], "stop_id": 4037177, "stop_desc": "81 BOULEVARD DIDEROT - 75112", "stop_name": "REUILLY - DIDEROT"}, "geometry": {"type": "Point", "coordinates": [2.387490443468507, 48.84752295573372]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d04eba01536e2a1d1344f5e8843b640f752c8ceb", "fields": {"departement": "75", "stop_lat": 48.84644830763424, "code_postal": "75112", "stop_lon": 2.3773307944168156, "coord": [48.84644830763424, 2.3773307944168156], "stop_id": 4037181, "stop_desc": "69 AVENUE DAUMESNIL - 75112", "stop_name": "DAUMESNIL - DIDEROT"}, "geometry": {"type": "Point", "coordinates": [2.3773307944168156, 48.84644830763424]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cb156dbfabd2b036fb634c1f1d517cb5057bd73c", "fields": {"departement": "75", "stop_lat": 48.85386641123812, "code_postal": "75104", "stop_lon": 2.365337849043121, "coord": [48.85386641123812, 2.365337849043121], "stop_id": 4037190, "stop_desc": "32 RUE SAINT-ANTOINE - 75104", "stop_name": "BIRAGUE"}, "geometry": {"type": "Point", "coordinates": [2.365337849043121, 48.85386641123812]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "12a5756f93b90f4a641fbbc53935f886305723dc", "fields": {"departement": "75", "stop_lat": 48.856438611249025, "code_postal": "75104", "stop_lon": 2.356281902801697, "coord": [48.856438611249025, 2.356281902801697], "stop_id": 4037194, "stop_desc": "32 RUE DE RIVOLI - 75104", "stop_name": "RUE VIEILLE DU TEMPLE - MAIRIE DU 4E"}, "geometry": {"type": "Point", "coordinates": [2.356281902801697, 48.856438611249025]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5f9d3a890bcb10e916e7ab5f3d7ebac9787909ea", "fields": {"departement": "75", "stop_lat": 48.864034354931775, "code_postal": "75101", "stop_lon": 2.3315879074954515, "coord": [48.864034354931775, 2.3315879074954515], "stop_id": 4037202, "stop_desc": "194 RUE DE RIVOLI - 75101", "stop_name": "PYRAMIDES - TUILERIES"}, "geometry": {"type": "Point", "coordinates": [2.3315879074954515, 48.864034354931775]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "231603db8f3d61ceabeb1b78106afbbf1541ff4f", "fields": {"departement": "75", "stop_lat": 48.86672008014077, "code_postal": "75108", "stop_lon": 2.3175289269176997, "coord": [48.86672008014077, 2.3175289269176997], "stop_id": 4037205, "stop_desc": "AVENUE DES CHAMPS ELYSEES - 75108", "stop_name": "CONCORDE - COURS LA REINE"}, "geometry": {"type": "Point", "coordinates": [2.3175289269176997, 48.86672008014077]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ba6acc73df398c21ee5d1fcfc54b8f41020f85f3", "fields": {"departement": "75", "stop_lat": 48.86958522941789, "code_postal": "75108", "stop_lon": 2.3085908130857256, "coord": [48.86958522941789, 2.3085908130857256], "stop_id": 4037209, "stop_desc": "24-26 AVENUE DES CHAMPS ELYSEES - 75108", "stop_name": "ROND-POINT DES CHAMPS-ELYSEES"}, "geometry": {"type": "Point", "coordinates": [2.3085908130857256, 48.86958522941789]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0250620e143c33f59b8bc5fe1911a2b021c2b5a7", "fields": {"departement": "75", "stop_lat": 48.86936951360943, "code_postal": "75108", "stop_lon": 2.3085091915962734, "coord": [48.86936951360943, 2.3085091915962734], "stop_id": 4037210, "stop_desc": "23 AVENUE DES CHAMPS ELYSEES - 75108", "stop_name": "ROND-POINT DES CHAMPS-ELYSEES"}, "geometry": {"type": "Point", "coordinates": [2.3085091915962734, 48.86936951360943]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7c4f6777e15e1f7766543e343b2d37bccf75df21", "fields": {"departement": "75", "stop_lat": 48.87027649546204, "code_postal": "75108", "stop_lon": 2.3055932182690912, "coord": [48.87027649546204, 2.3055932182690912], "stop_id": 4037212, "stop_desc": "39 AVENUE DES CHAMPS ELYSEES - 75108", "stop_name": "LA BOETIE - CHAMPS-ELYSEES"}, "geometry": {"type": "Point", "coordinates": [2.3055932182690912, 48.87027649546204]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "04f6750e40f455fdd0718c19b5222d21abdae19d", "fields": {"departement": "92", "stop_lat": 48.882132893754225, "code_postal": "92051", "stop_lon": 2.2681803781483323, "coord": [48.882132893754225, 2.2681803781483323], "stop_id": 4037226, "stop_desc": "127-151 AVENUE CHARLES DE GAULLE - 92051", "stop_name": "RUE DE L'HOTEL DE VILLE"}, "geometry": {"type": "Point", "coordinates": [2.2681803781483323, 48.882132893754225]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "02464f478c371c529d8b9506196aa247abda910c", "fields": {"departement": "92", "stop_lat": 48.88347044692431, "code_postal": "92051", "stop_lon": 2.265562179942118, "coord": [48.88347044692431, 2.265562179942118], "stop_id": 4037227, "stop_desc": "130 BIS AVENUE CHARLES DE GAULLE - 92051", "stop_name": "LES GRAVIERS"}, "geometry": {"type": "Point", "coordinates": [2.265562179942118, 48.88347044692431]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a44a92b792b5a4dbe9fb5b74f3beb53a12e9dc37", "fields": {"departement": "92", "stop_lat": 48.882994057899715, "code_postal": "92051", "stop_lon": 2.265453822468646, "coord": [48.882994057899715, 2.265453822468646], "stop_id": 4037228, "stop_desc": "151 AVENUE CHARLES DE GAULLE - 92051", "stop_name": "LES GRAVIERS"}, "geometry": {"type": "Point", "coordinates": [2.265453822468646, 48.882994057899715]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ab1c2ad7d689bdb4ee9d2afe8de4fb6cbd4e7b14", "fields": {"departement": "75", "stop_lat": 48.859046477901266, "code_postal": "75101", "stop_lon": 2.338494169074047, "coord": [48.859046477901266, 2.338494169074047], "stop_id": 4037240, "stop_desc": "QUAI FRANCOIS MITTERRAND - 75101", "stop_name": "PONT DES ARTS"}, "geometry": {"type": "Point", "coordinates": [2.338494169074047, 48.859046477901266]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "00ae08b3cd7fffd9bdd16a8ccbfa38e0b9189e42", "fields": {"departement": "75", "stop_lat": 48.858237481253475, "code_postal": "75101", "stop_lon": 2.3429344426817336, "coord": [48.858237481253475, 2.3429344426817336], "stop_id": 4037241, "stop_desc": "FACE 22 QUAI DE LA MEGISSERIE - 75101", "stop_name": "PONT NEUF - QUAI DU LOUVRE"}, "geometry": {"type": "Point", "coordinates": [2.3429344426817336, 48.858237481253475]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0675ee2f8e737fbdf37a13efc646c15551222c31", "fields": {"departement": "75", "stop_lat": 48.85281401294961, "code_postal": "75104", "stop_lon": 2.3687965324803804, "coord": [48.85281401294961, 2.3687965324803804], "stop_id": 4037243, "stop_desc": "PLACE DE LA BASTILLE - 75104", "stop_name": "BASTILLE"}, "geometry": {"type": "Point", "coordinates": [2.3687965324803804, 48.85281401294961]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d85427f3ba885eca71228adbe5447dd79effd399", "fields": {"departement": "94", "stop_lat": 48.84552226230954, "code_postal": "94067", "stop_lon": 2.4272915748023243, "coord": [48.84552226230954, 2.4272915748023243], "stop_id": 4037250, "stop_desc": "67 AVENUE DE PARIS - 94067", "stop_name": "BERAULT-METRO"}, "geometry": {"type": "Point", "coordinates": [2.4272915748023243, 48.84552226230954]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e8370668f78163692b51eba48dbacebfb86d4a59", "fields": {"departement": "75", "stop_lat": 48.84075687740633, "code_postal": "75114", "stop_lon": 2.33284311590315, "coord": [48.84075687740633, 2.33284311590315], "stop_id": 4037254, "stop_desc": "150 BOULEVARD DU MONTPARNASSE - 75114", "stop_name": "CAMPAGNE PREMIERE"}, "geometry": {"type": "Point", "coordinates": [2.33284311590315, 48.84075687740633]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e4839827ff787bbb9850527e7a0fc8b0b34ffbf7", "fields": {"departement": "75", "stop_lat": 48.83960417885431, "code_postal": "75113", "stop_lon": 2.361027586451779, "coord": [48.83960417885431, 2.361027586451779], "stop_id": 4037259, "stop_desc": "1 BOULEVARD SAINT MARCEL - 75113", "stop_name": "SAINT-MARCEL - LA PITIE"}, "geometry": {"type": "Point", "coordinates": [2.361027586451779, 48.83960417885431]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "64f08c5ef59100ec3ed724d08608d6f42760bc4a", "fields": {"departement": "75", "stop_lat": 48.84260538929042, "code_postal": "75113", "stop_lon": 2.363997342939993, "coord": [48.84260538929042, 2.363997342939993], "stop_id": 4037260, "stop_desc": "5 BIS BOULEVARD DE L'HOPITAL - 75113", "stop_name": "GARE D'AUSTERLITZ"}, "geometry": {"type": "Point", "coordinates": [2.363997342939993, 48.84260538929042]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "34fb5b5a0118b621988ddeea1557f1a3c2af0a75", "fields": {"departement": "75", "stop_lat": 48.8488765289316, "code_postal": "75112", "stop_lon": 2.372266746924533, "coord": [48.8488765289316, 2.372266746924533], "stop_id": 4037263, "stop_desc": "9-11 AVENUE DAUMESNIL - 75112", "stop_name": "LYON - LEDRU ROLLIN"}, "geometry": {"type": "Point", "coordinates": [2.372266746924533, 48.8488765289316]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "387e968f2b93610475811cde751080d3a90da640", "fields": {"departement": "75", "stop_lat": 48.853856485402765, "code_postal": "75111", "stop_lon": 2.369069554093801, "coord": [48.853856485402765, 2.369069554093801], "stop_id": 4037265, "stop_desc": "2 BOULEVARD BEAUMARCHAIS - 75111", "stop_name": "BASTILLE - BEAUMARCHAIS"}, "geometry": {"type": "Point", "coordinates": [2.369069554093801, 48.853856485402765]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b12b91ff80606b5163b1472ffac6a9f04aeb2150", "fields": {"departement": "75", "stop_lat": 48.875141086436834, "code_postal": "75110", "stop_lon": 2.3576921392329484, "coord": [48.875141086436834, 2.3576921392329484], "stop_id": 4037270, "stop_desc": "74 BOULEVARD DE STRASBOURG - 75110", "stop_name": "GARE DE L'EST"}, "geometry": {"type": "Point", "coordinates": [2.3576921392329484, 48.875141086436834]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "025b45b54f2ef4ab941832541d7590dcaf86d868", "fields": {"departement": "75", "stop_lat": 48.881334194288584, "code_postal": "75110", "stop_lon": 2.351712503852361, "coord": [48.881334194288584, 2.351712503852361], "stop_id": 4037272, "stop_desc": "140-142 BOULEVARD DE MAGENTA - 75110", "stop_name": "MAGENTA - MAUBEUGE - GARE DU NORD"}, "geometry": {"type": "Point", "coordinates": [2.351712503852361, 48.881334194288584]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ca838cad907c9b81f2f9494c9d750dd49b779f02", "fields": {"departement": "75", "stop_lat": 48.88324867913404, "code_postal": "75110", "stop_lon": 2.3499415145297466, "coord": [48.88324867913404, 2.3499415145297466], "stop_id": 4037273, "stop_desc": "168 BOULEVARD DE MAGENTA - 75110", "stop_name": "BARBES - ROCHECHOUART"}, "geometry": {"type": "Point", "coordinates": [2.3499415145297466, 48.88324867913404]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f1c4299327943e636b4ba15c45b56e43c2995a2e", "fields": {"departement": "75", "stop_lat": 48.88305144279706, "code_postal": "75118", "stop_lon": 2.3440273262563576, "coord": [48.88305144279706, 2.3440273262563576], "stop_id": 4037275, "stop_desc": "68-70 BOULEVARD DE ROCHECHOUART - 75118", "stop_name": "ANVERS - SACRE COEUR"}, "geometry": {"type": "Point", "coordinates": [2.3440273262563576, 48.88305144279706]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1851789a19f4feda070c4e3375f45062d9287e45", "fields": {"departement": "75", "stop_lat": 48.88284442780483, "code_postal": "75108", "stop_lon": 2.326325831178574, "coord": [48.88284442780483, 2.326325831178574], "stop_id": 4037280, "stop_desc": "43-45 RUE DE SAINT PETERSBOURG - 75108", "stop_name": "PLACE DE CLICHY"}, "geometry": {"type": "Point", "coordinates": [2.326325831178574, 48.88284442780483]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6353e8228906bc7306b232f32986f17c483ac9dc", "fields": {"departement": "75", "stop_lat": 48.86275609127557, "code_postal": "75107", "stop_lon": 2.3144110612463655, "coord": [48.86275609127557, 2.3144110612463655], "stop_id": 4037288, "stop_desc": "QUAI D'ORSAY - 75107", "stop_name": "INVALIDES"}, "geometry": {"type": "Point", "coordinates": [2.3144110612463655, 48.86275609127557]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "45524a294d541fbb6a1ca4d596aba74559240b91", "fields": {"departement": "75", "stop_lat": 48.861543739204706, "code_postal": "75107", "stop_lon": 2.3200372331720067, "coord": [48.861543739204706, 2.3200372331720067], "stop_id": 4037289, "stop_desc": "241 BOULEVARD SAINT GERMAIN - 75107", "stop_name": "ASSEMBLEE NATIONALE"}, "geometry": {"type": "Point", "coordinates": [2.3200372331720067, 48.861543739204706]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7dba0220bfc517efb013735a9e2b136cd40303ac", "fields": {"departement": "75", "stop_lat": 48.84879147223759, "code_postal": "75106", "stop_lon": 2.328402948470149, "coord": [48.84879147223759, 2.328402948470149], "stop_id": 4037294, "stop_desc": "108 RUE DE RENNES - 75106", "stop_name": "RENNES - D'ASSAS"}, "geometry": {"type": "Point", "coordinates": [2.328402948470149, 48.84879147223759]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4dd0ba0c13c2d3dae88485512c4210f3d95e30a9", "fields": {"departement": "95", "stop_lat": 48.925367901149954, "code_postal": "95063", "stop_lon": 2.211005958642109, "coord": [48.925367901149954, 2.211005958642109], "stop_id": 4037720, "stop_desc": "FACE 109 RUE EDOUARD VAILLANT - 95063", "stop_name": "HENRI BARBUSSE"}, "geometry": {"type": "Point", "coordinates": [2.211005958642109, 48.925367901149954]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0191654202dfa5d14bb51c0151745bfa95146846", "fields": {"departement": "95", "stop_lat": 48.92532257626675, "code_postal": "95063", "stop_lon": 2.210637838002561, "coord": [48.92532257626675, 2.210637838002561], "stop_id": 4037721, "stop_desc": "122 RUE EDOUARD VAILLANT - 95063", "stop_name": "HENRI BARBUSSE"}, "geometry": {"type": "Point", "coordinates": [2.210637838002561, 48.92532257626675]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b094969e6634bba9c8030940f491a6102e41cf1e", "fields": {"departement": "92", "stop_lat": 48.9172574350341, "code_postal": "92025", "stop_lon": 2.2247436060973063, "coord": [48.9172574350341, 2.2247436060973063], "stop_id": 4037726, "stop_desc": "195 BOULEVARD CHARLES DE GAULLE - 92025", "stop_name": "PARC PIERRE LAGRAVERE"}, "geometry": {"type": "Point", "coordinates": [2.2247436060973063, 48.9172574350341]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a6fbb6cd2a69692ddcdba6006f99c5bfb0f22288", "fields": {"departement": "92", "stop_lat": 48.90592820498449, "code_postal": "92035", "stop_lon": 2.238769379821047, "coord": [48.90592820498449, 2.238769379821047], "stop_id": 4037734, "stop_desc": "BD NATIONAL - 92035", "stop_name": "LA GARENNE-COLOMBES - CHARLEBOURG"}, "geometry": {"type": "Point", "coordinates": [2.238769379821047, 48.90592820498449]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3a4a580a17904cbefc7fd8bdf5341afb19fa4c8e", "fields": {"departement": "92", "stop_lat": 48.90442755581318, "code_postal": "92035", "stop_lon": 2.2390039877341854, "coord": [48.90442755581318, 2.2390039877341854], "stop_id": 4037736, "stop_desc": "5 BD NATIONAL - 92035", "stop_name": "NORDMANN"}, "geometry": {"type": "Point", "coordinates": [2.2390039877341854, 48.90442755581318]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c1d8765a384d9dd94ab8e49ede5bcc6ae676da3b", "fields": {"departement": "92", "stop_lat": 48.90575775425841, "code_postal": "92035", "stop_lon": 2.2391377956954837, "coord": [48.90575775425841, 2.2391377956954837], "stop_id": 4037737, "stop_desc": "0 BD NATIONAL - 92035", "stop_name": "NORDMANN"}, "geometry": {"type": "Point", "coordinates": [2.2391377956954837, 48.90575775425841]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "390220f27c6385b753f1ce2f8a062ed203130266", "fields": {"departement": "92", "stop_lat": 48.8967714050638, "code_postal": "92026", "stop_lon": 2.24006806449667, "coord": [48.8967714050638, 2.24006806449667], "stop_id": 4037742, "stop_desc": "FACE 24 BOULEVARD DE LA MISSION MARCHAND - 92026", "stop_name": "FAUBOURG DE L'ARCHE"}, "geometry": {"type": "Point", "coordinates": [2.24006806449667, 48.8967714050638]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e81dba84905da40a0a1ae793ce9e82a66bf76fc1", "fields": {"departement": "92", "stop_lat": 48.882132893754225, "code_postal": "92051", "stop_lon": 2.2681803781483323, "coord": [48.882132893754225, 2.2681803781483323], "stop_id": 4037756, "stop_desc": "127-151 AVENUE CHARLES DE GAULLE - 92051", "stop_name": "RUE DE L'HOTEL DE VILLE"}, "geometry": {"type": "Point", "coordinates": [2.2681803781483323, 48.882132893754225]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "027f86fa49b4ddf53aeb21a9655a418c2af8a016", "fields": {"departement": "75", "stop_lat": 48.8704742492725, "code_postal": "75108", "stop_lon": 2.3057157112334865, "coord": [48.8704742492725, 2.3057157112334865], "stop_id": 4037772, "stop_desc": "58-60 AVENUE DES CHAMPS ELYSEES - 75108", "stop_name": "LA BOETIE - CHAMPS-ELYSEES"}, "geometry": {"type": "Point", "coordinates": [2.3057157112334865, 48.8704742492725]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c3dee4d5faf9a55182019100890b8b8ac9f81e11", "fields": {"departement": "75", "stop_lat": 48.86936951360943, "code_postal": "75108", "stop_lon": 2.3085091915962734, "coord": [48.86936951360943, 2.3085091915962734], "stop_id": 4037773, "stop_desc": "23 AVENUE DES CHAMPS ELYSEES - 75108", "stop_name": "ROND-POINT DES CHAMPS-ELYSEES"}, "geometry": {"type": "Point", "coordinates": [2.3085091915962734, 48.86936951360943]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7bac9cd505e5eaaf8a804d82e0d739573523548d", "fields": {"departement": "75", "stop_lat": 48.86958522941789, "code_postal": "75108", "stop_lon": 2.3085908130857256, "coord": [48.86958522941789, 2.3085908130857256], "stop_id": 4037774, "stop_desc": "24-26 AVENUE DES CHAMPS ELYSEES - 75108", "stop_name": "ROND-POINT DES CHAMPS-ELYSEES"}, "geometry": {"type": "Point", "coordinates": [2.3085908130857256, 48.86958522941789]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fdaaf3ba6fc96407c1d62b103ee8b6a56203473b", "fields": {"departement": "75", "stop_lat": 48.867842706224465, "code_postal": "75108", "stop_lon": 2.3132099917230624, "coord": [48.867842706224465, 2.3132099917230624], "stop_id": 4037775, "stop_desc": "AVENUE DES CHAMPS ELYSEES - 75108", "stop_name": "CHAMPS-ELYSEES - CLEMENCEAU"}, "geometry": {"type": "Point", "coordinates": [2.3132099917230624, 48.867842706224465]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8712b6b608a7f183b5bc4a3f59c3fd7235a41adb", "fields": {"departement": "75", "stop_lat": 48.86055619281375, "code_postal": "75101", "stop_lon": 2.330771019079064, "coord": [48.86055619281375, 2.330771019079064], "stop_id": 4037781, "stop_desc": "QUAI FRANCOIS MITTERRAND - 75101", "stop_name": "PONT ROYAL"}, "geometry": {"type": "Point", "coordinates": [2.330771019079064, 48.86055619281375]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "44e4c867288bafcea655d41774f9b3a374df6e7f", "fields": {"departement": "75", "stop_lat": 48.859046477901266, "code_postal": "75101", "stop_lon": 2.338494169074047, "coord": [48.859046477901266, 2.338494169074047], "stop_id": 4037783, "stop_desc": "QUAI FRANCOIS MITTERRAND - 75101", "stop_name": "PONT DES ARTS"}, "geometry": {"type": "Point", "coordinates": [2.338494169074047, 48.859046477901266]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3668eb29488c15d2835319c7f1cc14b3a40f49af", "fields": {"departement": "75", "stop_lat": 48.85753603492456, "code_postal": "75104", "stop_lon": 2.3488319758479785, "coord": [48.85753603492456, 2.3488319758479785], "stop_id": 4037786, "stop_desc": "FACE 15 AVENUE VICTORIA - 75104", "stop_name": "CHATELET"}, "geometry": {"type": "Point", "coordinates": [2.3488319758479785, 48.85753603492456]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "82dfcc0aa62d6df022aade8b8a410ebf964aa736", "fields": {"departement": "75", "stop_lat": 48.865516960040004, "code_postal": "75101", "stop_lon": 2.326942492564363, "coord": [48.865516960040004, 2.326942492564363], "stop_id": 4037792, "stop_desc": "234 RUE DE RIVOLI - 75101", "stop_name": "CASTIGLIONE"}, "geometry": {"type": "Point", "coordinates": [2.326942492564363, 48.865516960040004]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1a91788fe7a1f7ea7d490855ae62679ad2d2312c", "fields": {"departement": "75", "stop_lat": 48.874308041663966, "code_postal": "75117", "stop_lon": 2.293682721402183, "coord": [48.874308041663966, 2.293682721402183], "stop_id": 4037794, "stop_desc": "2 AVENUE DE LA GRANDE ARMEE - 75117", "stop_name": "CHARLES DE GAULLE - ETOILE - GRANDE ARMEE"}, "geometry": {"type": "Point", "coordinates": [2.293682721402183, 48.874308041663966]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1449a7bdc07f70c6aeba9accc31f3cf5a96bba4a", "fields": {"departement": "75", "stop_lat": 48.8759239102111, "code_postal": "75117", "stop_lon": 2.288898925441744, "coord": [48.8759239102111, 2.288898925441744], "stop_id": 4037795, "stop_desc": "40 AVENUE DE LA GRANDE ARMEE - 75117", "stop_name": "ARGENTINE"}, "geometry": {"type": "Point", "coordinates": [2.288898925441744, 48.8759239102111]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4085c82fd91aa8d6e6bbb9dd325898b52dcf6505", "fields": {"departement": "75", "stop_lat": 48.87588703652639, "code_postal": "75110", "stop_lon": 2.35766518297707, "coord": [48.87588703652639, 2.35766518297707], "stop_id": 4044988, "stop_desc": "89 BOULEVARD DE STRASBOURG - 75110", "stop_name": "GARE DE L'EST"}, "geometry": {"type": "Point", "coordinates": [2.35766518297707, 48.87588703652639]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0cfd6ee7eccd1981b8a4b9420e133b7599e97956", "fields": {"departement": "75", "stop_lat": 48.86191877949409, "code_postal": "75103", "stop_lon": 2.3668405747099737, "coord": [48.86191877949409, 2.3668405747099737], "stop_id": 4044991, "stop_desc": "11 BOULEVARD DES FILLES DU CALVAIRE - 75103", "stop_name": "OBERKAMPF - FILLES DU CALVAIRE"}, "geometry": {"type": "Point", "coordinates": [2.3668405747099737, 48.86191877949409]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5161dd883ac54e0cfdfc1dbbb81d0bf69592df7f", "fields": {"departement": "75", "stop_lat": 48.845677278703754, "code_postal": "75112", "stop_lon": 2.3712296777810264, "coord": [48.845677278703754, 2.3712296777810264], "stop_id": 4044996, "stop_desc": "15-17 BOULEVARD DIDEROT - 75112", "stop_name": "GARE DE LYON - DIDEROT"}, "geometry": {"type": "Point", "coordinates": [2.3712296777810264, 48.845677278703754]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "22ce182c15b53f4a228f54f1a64a5665653ecb12", "fields": {"departement": "75", "stop_lat": 48.837026175409214, "code_postal": "75105", "stop_lon": 2.352258369199745, "coord": [48.837026175409214, 2.352258369199745], "stop_id": 4045001, "stop_desc": "FACE 83 BOULEVARD SAINT-MARCEL - 75105", "stop_name": "LES GOBELINS"}, "geometry": {"type": "Point", "coordinates": [2.352258369199745, 48.837026175409214]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ac29de18f3454176657072266d55f3a3604fb071", "fields": {"departement": "75", "stop_lat": 48.84083779071601, "code_postal": "75106", "stop_lon": 2.3335919869630257, "coord": [48.84083779071601, 2.3335919869630257], "stop_id": 4045004, "stop_desc": "147 BOULEVARD DU MONTPARNASSE - 75106", "stop_name": "CAMPAGNE PREMIERE"}, "geometry": {"type": "Point", "coordinates": [2.3335919869630257, 48.84083779071601]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bd16a26282017a08c5e143e25a66e86e42f4f0fb", "fields": {"departement": "75", "stop_lat": 48.84248225530111, "code_postal": "75106", "stop_lon": 2.3286355034590827, "coord": [48.84248225530111, 2.3286355034590827], "stop_id": 4045005, "stop_desc": "103 BOULEVARD DU MONTPARNASSE - 75106", "stop_name": "VAVIN"}, "geometry": {"type": "Point", "coordinates": [2.3286355034590827, 48.84248225530111]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "43eb0ec3d118809faadaddb0fda9ad67b0fa3199", "fields": {"departement": "75", "stop_lat": 48.84381179353463, "code_postal": "75115", "stop_lon": 2.32238519748455, "coord": [48.84381179353463, 2.32238519748455], "stop_id": 4045006, "stop_desc": "FACE 3 RUE DE L'ARRIVEE - 75115", "stop_name": "PLACE DU 18 JUIN 1940 - RUE DE L'ARRIVEE"}, "geometry": {"type": "Point", "coordinates": [2.32238519748455, 48.84381179353463]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "80c156060bb76598284de9759ecb9f608f950670", "fields": {"departement": "75", "stop_lat": 48.861139933597755, "code_postal": "75107", "stop_lon": 2.325131730835768, "coord": [48.861139933597755, 2.325131730835768], "stop_id": 4045015, "stop_desc": "QUAI ANATOLE FRANCE - 75107", "stop_name": "MUSEE D'ORSAY"}, "geometry": {"type": "Point", "coordinates": [2.325131730835768, 48.861139933597755]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d97aae3f23fbdeac45f1ecd214a77fcbc6701741", "fields": {"departement": "75", "stop_lat": 48.86254136918029, "code_postal": "75107", "stop_lon": 2.320241226896711, "coord": [48.86254136918029, 2.320241226896711], "stop_id": 4045016, "stop_desc": "FACE 27 QUAI ANATOLE FRANCE - 75107", "stop_name": "ASSEMBLEE NATIONALE"}, "geometry": {"type": "Point", "coordinates": [2.320241226896711, 48.86254136918029]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2ae47b070408713a3691514d2c84cca492c2fce7", "fields": {"departement": "75", "stop_lat": 48.86525375030457, "code_postal": "75108", "stop_lon": 2.3104186054184357, "coord": [48.86525375030457, 2.3104186054184357], "stop_id": 4045018, "stop_desc": "FACE 5 AVENUE F.D. ROOSEVELT - 75108", "stop_name": "PALAIS DE LA DECOUVERTE"}, "geometry": {"type": "Point", "coordinates": [2.3104186054184357, 48.86525375030457]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5005f5993897332520b39fdff13384c40370a14f", "fields": {"departement": "75", "stop_lat": 48.87706594597337, "code_postal": "75109", "stop_lon": 2.3308234566960984, "coord": [48.87706594597337, 2.3308234566960984], "stop_id": 4045023, "stop_desc": "2 RUE DE CLICHY - 75109", "stop_name": "TRINITE"}, "geometry": {"type": "Point", "coordinates": [2.3308234566960984, 48.87706594597337]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f0456e6f9ba9b1653952c86db985462f0f2f6e9c", "fields": {"departement": "75", "stop_lat": 48.880319226531334, "code_postal": "75109", "stop_lon": 2.3290107509694993, "coord": [48.880319226531334, 2.3290107509694993], "stop_id": 4045024, "stop_desc": "48 RUE DE CLICHY - 75109", "stop_name": "LIEGE"}, "geometry": {"type": "Point", "coordinates": [2.3290107509694993, 48.880319226531334]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "19177ee5ea4b0630afa5dac80dd915d07460151d", "fields": {"departement": "75", "stop_lat": 48.882215821789494, "code_postal": "75109", "stop_lon": 2.337213801603721, "coord": [48.882215821789494, 2.337213801603721], "stop_id": 4045027, "stop_desc": "FACE 20 BOULEVARD DE CLICHY - 75109", "stop_name": "PIGALLE"}, "geometry": {"type": "Point", "coordinates": [2.337213801603721, 48.882215821789494]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a349617492200a9c1c5f1bb1d681f345e3c66ae9", "fields": {"departement": "75", "stop_lat": 48.88182933710138, "code_postal": "75109", "stop_lon": 2.340061788322775, "coord": [48.88182933710138, 2.340061788322775], "stop_id": 4045028, "stop_desc": "63 BOULEVARD DE ROCHECHOUART - 75109", "stop_name": "ROCHECHOUART - MARTYRS"}, "geometry": {"type": "Point", "coordinates": [2.340061788322775, 48.88182933710138]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5cfffdbb9cddbb64dcb2dadfcb8364eed28940d8", "fields": {"departement": "92", "stop_lat": 48.88371676955176, "code_postal": "92062", "stop_lon": 2.233851265998093, "coord": [48.88371676955176, 2.233851265998093], "stop_id": 4102145, "stop_desc": "RUE DE LA REPUBLIQUE - 92062", "stop_name": "GARE DE PUTEAUX"}, "geometry": {"type": "Point", "coordinates": [2.233851265998093, 48.88371676955176]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6c9f2821e1a258348a4ffdefe982742a8c6dff1a", "fields": {"departement": "92", "stop_lat": 48.886589576197764, "code_postal": "92062", "stop_lon": 2.252706673716969, "coord": [48.886589576197764, 2.252706673716969], "stop_id": 4102150, "stop_desc": "VOIE D'ACCES AU PONT DE NEUILLY - 92062", "stop_name": "PONT DE NEUILLY - RIVE GAUCHE"}, "geometry": {"type": "Point", "coordinates": [2.252706673716969, 48.886589576197764]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f6a9a14340c02081a760c2f2b4e7193d3045969e", "fields": {"departement": "75", "stop_lat": 48.84248422077351, "code_postal": "75112", "stop_lon": 2.4488274563768555, "coord": [48.84248422077351, 2.4488274563768555], "stop_id": 4109731, "stop_desc": "AV DE NOGENT - 75112", "stop_name": "TREMBLAY - PEPINIERE"}, "geometry": {"type": "Point", "coordinates": [2.4488274563768555, 48.84248422077351]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "af16880b28390b26eb62ac09dbd7af0b62417288", "fields": {"departement": "75", "stop_lat": 48.83894023183105, "code_postal": "75112", "stop_lon": 2.460855919192387, "coord": [48.83894023183105, 2.460855919192387], "stop_id": 4109733, "stop_desc": "AV DE NOGENT - 75112", "stop_name": "PORTE JAUNE"}, "geometry": {"type": "Point", "coordinates": [2.460855919192387, 48.83894023183105]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "abf86f17a84261cc132d28acc626cf7a8b9191d0", "fields": {"departement": "94", "stop_lat": 48.838185309775355, "code_postal": "94052", "stop_lon": 2.4916246714838945, "coord": [48.838185309775355, 2.4916246714838945], "stop_id": 4109743, "stop_desc": "172 GRANDE RUE CHARLES DE GAULLE - 94052", "stop_name": "MAIRIE DE NOGENT-SUR-MARNE"}, "geometry": {"type": "Point", "coordinates": [2.4916246714838945, 48.838185309775355]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "feabfa6aaa42375de271c76bb5fde2ca571fca40", "fields": {"departement": "94", "stop_lat": 48.83830246540127, "code_postal": "94052", "stop_lon": 2.4913799442406903, "coord": [48.83830246540127, 2.4913799442406903], "stop_id": 4109744, "stop_desc": "172 GR CHARLES DE GAULLE - 94052", "stop_name": "MAIRIE DE NOGENT-SUR-MARNE"}, "geometry": {"type": "Point", "coordinates": [2.4913799442406903, 48.83830246540127]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9bd26c51040d848902bb5c7ee30e9657e29e54ae", "fields": {"departement": "94", "stop_lat": 48.84093592361724, "code_postal": "94058", "stop_lon": 2.4981004635094584, "coord": [48.84093592361724, 2.4981004635094584], "stop_id": 4109747, "stop_desc": "44 BIS-46 AVENUE LEDRU-ROLLIN - 94058", "stop_name": "LE PARC"}, "geometry": {"type": "Point", "coordinates": [2.4981004635094584, 48.84093592361724]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2678c4d059c6f72a1ac564c99c51ffca3d0d95ae", "fields": {"departement": "94", "stop_lat": 48.8425473339877, "code_postal": "94058", "stop_lon": 2.502735049441534, "coord": [48.8425473339877, 2.502735049441534], "stop_id": 4109749, "stop_desc": "74 BIS-76 AVENUE LEDRU-ROLLIN - 94058", "stop_name": "LEDRU-ROLLIN - GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.502735049441534, 48.8425473339877]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "420cfa9390ea13b298802b3f9ed2e52b6e1f138e", "fields": {"departement": "93", "stop_lat": 48.853237006831336, "code_postal": "93049", "stop_lon": 2.5128337798407876, "coord": [48.853237006831336, 2.5128337798407876], "stop_id": 4109756, "stop_desc": "PISTE GARE ROUTIERE - 93049", "stop_name": "NEUILLY-PLAISANCE RER"}, "geometry": {"type": "Point", "coordinates": [2.5128337798407876, 48.853237006831336]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "777ee2c1ce2e968b8878612cd3f23e3c144bbc86", "fields": {"departement": "93", "stop_lat": 48.85833935460912, "code_postal": "93049", "stop_lon": 2.508397120703054, "coord": [48.85833935460912, 2.508397120703054], "stop_id": 4109760, "stop_desc": "2 RUE ALEXANDRE 1ER - 93049", "stop_name": "ALEXANDRE 1ER"}, "geometry": {"type": "Point", "coordinates": [2.508397120703054, 48.85833935460912]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "da512d6323cf72539a8a9a6df513c21f8c5e63fa", "fields": {"departement": "93", "stop_lat": 48.86349863968202, "code_postal": "93049", "stop_lon": 2.514203474951785, "coord": [48.86349863968202, 2.514203474951785], "stop_id": 4109764, "stop_desc": "FACE 2 CHEMIN DE MEAUX - 93049", "stop_name": "CIMETIERE DE NEUILLY-PLAISANCE"}, "geometry": {"type": "Point", "coordinates": [2.514203474951785, 48.86349863968202]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9c80557c5c16ac0cce5770fd379988efc3a88f90", "fields": {"departement": "93", "stop_lat": 48.86431247288154, "code_postal": "93049", "stop_lon": 2.51688981783057, "coord": [48.86431247288154, 2.51688981783057], "stop_id": 4109765, "stop_desc": "RUE MARCEL DASSAULT - 93049", "stop_name": "GEORGES POMPIDOU"}, "geometry": {"type": "Point", "coordinates": [2.51688981783057, 48.86431247288154]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "79bbb08578b93bc890892b0d1a6f4c7aeb6f5ff7", "fields": {"departement": "93", "stop_lat": 48.86553663551359, "code_postal": "93049", "stop_lon": 2.5156407901244173, "coord": [48.86553663551359, 2.5156407901244173], "stop_id": 4109767, "stop_desc": "RUE MARCEL DASSAULT - 93049", "stop_name": "MARCEL DASSAULT"}, "geometry": {"type": "Point", "coordinates": [2.5156407901244173, 48.86553663551359]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5e83b807de74dfe0a6835b0447ca5e101c0fe58b", "fields": {"departement": "93", "stop_lat": 48.87002682081479, "code_postal": "93049", "stop_lon": 2.5056973422055644, "coord": [48.87002682081479, 2.5056973422055644], "stop_id": 4109777, "stop_desc": "FACE 9 AVENUE DES FAUVETTES - 93049", "stop_name": "BEL AIR"}, "geometry": {"type": "Point", "coordinates": [2.5056973422055644, 48.87002682081479]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b55d5cb4ca921dd31838c9c3eb7a7f3234e2348e", "fields": {"departement": "93", "stop_lat": 48.87280588953881, "code_postal": "93049", "stop_lon": 2.5105839026382406, "coord": [48.87280588953881, 2.5105839026382406], "stop_id": 4109781, "stop_desc": "32 BIS PLACE DE STALINGRAD - 93049", "stop_name": "PLATEAU D'AVRON - PLACE DE STALINGRAD"}, "geometry": {"type": "Point", "coordinates": [2.5105839026382406, 48.87280588953881]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c8afa16d0d9e2e7db23895f70e2454c9217ab432", "fields": {"departement": "93", "stop_lat": 48.88979082106777, "code_postal": "93077", "stop_lon": 2.511281260102416, "coord": [48.88979082106777, 2.511281260102416], "stop_id": 4109792, "stop_desc": "10 AVENUE DU GENERAL GALLIENI - 93077", "stop_name": "GALLIENI-LE RAINCY-VILLEMOMBLE-MONTFERMEIL RER"}, "geometry": {"type": "Point", "coordinates": [2.511281260102416, 48.88979082106777]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "210766ff695ac0defe1e572141947286d8683144", "fields": {"departement": "93", "stop_lat": 48.87859460586374, "code_postal": "93077", "stop_lon": 2.5160672483771727, "coord": [48.87859460586374, 2.5160672483771727], "stop_id": 4109801, "stop_desc": "FACE 7 RUE DU BEL AIR - 93077", "stop_name": "LUCIEN BERNEUX"}, "geometry": {"type": "Point", "coordinates": [2.5160672483771727, 48.87859460586374]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "84c0f6fd2a06846660ef87f62dcdcf6c169d102c", "fields": {"departement": "94", "stop_lat": 48.837531691648586, "code_postal": "94052", "stop_lon": 2.482514211609343, "coord": [48.837531691648586, 2.482514211609343], "stop_id": 4109807, "stop_desc": "7 RUE DES HEROS NOGENTAIS - 94052", "stop_name": "SOUS-PREFECTURE - JULES FERRY"}, "geometry": {"type": "Point", "coordinates": [2.482514211609343, 48.837531691648586]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cc77aa7ac44946c32c8733c8ac8c88f156f11b2c", "fields": {"departement": "93", "stop_lat": 48.88388732971967, "code_postal": "93077", "stop_lon": 2.5105119386049104, "coord": [48.88388732971967, 2.5105119386049104], "stop_id": 4109810, "stop_desc": "RUE GRANDE RUE - 93077", "stop_name": "CHATEAU DE VILLEMOMBLE"}, "geometry": {"type": "Point", "coordinates": [2.5105119386049104, 48.88388732971967]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "71f12fb3e66c7ffd5583e8f5f4927a69287932ba", "fields": {"departement": "93", "stop_lat": 48.86805952009656, "code_postal": "93049", "stop_lon": 2.505037040534674, "coord": [48.86805952009656, 2.505037040534674], "stop_id": 4109817, "stop_desc": "79 AVENUE CARNOT - 93049", "stop_name": "ETIENNE DOLET"}, "geometry": {"type": "Point", "coordinates": [2.505037040534674, 48.86805952009656]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "02d2264294ee29b490474429e160274ce13b3c42", "fields": {"departement": "93", "stop_lat": 48.864759105805646, "code_postal": "93049", "stop_lon": 2.5126957032545296, "coord": [48.864759105805646, 2.5126957032545296], "stop_id": 4109820, "stop_desc": "CHEMIN DES RENOUILLIERES - 93049", "stop_name": "ALEXANDER FLEMING"}, "geometry": {"type": "Point", "coordinates": [2.5126957032545296, 48.864759105805646]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2abde6edd55be0c0ca46fe964f9caa044a65691a", "fields": {"departement": "93", "stop_lat": 48.86017651145646, "code_postal": "93049", "stop_lon": 2.5057879376763466, "coord": [48.86017651145646, 2.5057879376763466], "stop_id": 4109825, "stop_desc": "FACE 24 AVENUE DU GENERAL LECLERC - 93049", "stop_name": "MAIRIE DE NEUILLY-PLAISANCE"}, "geometry": {"type": "Point", "coordinates": [2.5057879376763466, 48.86017651145646]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "05e19caeb292f9b714d51d4a4fff2bae2dbd516e", "fields": {"departement": "93", "stop_lat": 48.85882768868064, "code_postal": "93049", "stop_lon": 2.50628752096187, "coord": [48.85882768868064, 2.50628752096187], "stop_id": 4109826, "stop_desc": "81 AVENUE VICTOR HUGO - 93049", "stop_name": "JEAN JAURES - VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.50628752096187, 48.85882768868064]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "18548b3887bb90d30619a0acf80592351165b7cf", "fields": {"departement": "93", "stop_lat": 48.85710008891055, "code_postal": "93049", "stop_lon": 2.5076983977962444, "coord": [48.85710008891055, 2.5076983977962444], "stop_id": 4109827, "stop_desc": "57 AVENUE VICTOR HUGO - 93049", "stop_name": "FAIDHERBE - EGLISE"}, "geometry": {"type": "Point", "coordinates": [2.5076983977962444, 48.85710008891055]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8aa1b73533d3030680b3921111a3b4332484d6dc", "fields": {"departement": "92", "stop_lat": 48.88736726938604, "code_postal": "92050", "stop_lon": 2.1999233908349463, "coord": [48.88736726938604, 2.1999233908349463], "stop_id": 4109829, "stop_desc": "PL DE LA BOULE - 92050", "stop_name": "PLACE DE LA BOULE - GAMBETTA"}, "geometry": {"type": "Point", "coordinates": [2.1999233908349463, 48.88736726938604]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7ea7d4726133dfbdaeb33528f6d94fa075eb864c", "fields": {"departement": "92", "stop_lat": 48.880397475116645, "code_postal": "92063", "stop_lon": 2.195922074489025, "coord": [48.880397475116645, 2.195922074489025], "stop_id": 4109834, "stop_desc": "75 R GAMBETTA - 92063", "stop_name": "LES GIBETS"}, "geometry": {"type": "Point", "coordinates": [2.195922074489025, 48.880397475116645]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9db4d873e65b9b04dba17aa266cc37a45a54c144", "fields": {"departement": "92", "stop_lat": 48.87883131771929, "code_postal": "92063", "stop_lon": 2.193936953559183, "coord": [48.87883131771929, 2.193936953559183], "stop_id": 4109836, "stop_desc": "11 R GAMBETTA - 92063", "stop_name": "DANTON - GAMBETTA"}, "geometry": {"type": "Point", "coordinates": [2.193936953559183, 48.87883131771929]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0f415e795d978ffc80c71fc1d970ca4456504db6", "fields": {"departement": "92", "stop_lat": 48.86921083861, "code_postal": "92063", "stop_lon": 2.1981050688502193, "coord": [48.86921083861, 2.1981050688502193], "stop_id": 4109849, "stop_desc": "103 AVENUE DU PRESIDENT POMPIDOU - 92063", "stop_name": "RACINE"}, "geometry": {"type": "Point", "coordinates": [2.1981050688502193, 48.86921083861]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6b784e5032ce128d77266dc0f1a7f52147424c48", "fields": {"departement": "92", "stop_lat": 48.870497970936604, "code_postal": "92063", "stop_lon": 2.199777338578445, "coord": [48.870497970936604, 2.199777338578445], "stop_id": 4109851, "stop_desc": "27 R DE LA CHAPELLE - 92063", "stop_name": "LA CHAPELLE"}, "geometry": {"type": "Point", "coordinates": [2.199777338578445, 48.870497970936604]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e9888227d77096fbdc1585b2613f2f52ba71e359", "fields": {"departement": "92", "stop_lat": 48.870173404903845, "code_postal": "92073", "stop_lon": 2.2244779366653864, "coord": [48.870173404903845, 2.2244779366653864], "stop_id": 4109862, "stop_desc": "24 AV DU GENERAL CHARLES DE GAULLE - 92073", "stop_name": "SURESNES DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.2244779366653864, 48.870173404903845]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2bf4afabefd29ca2209aa95aa77d19df0c8206da", "fields": {"departement": "92", "stop_lat": 48.87052093243255, "code_postal": "92073", "stop_lon": 2.2124746370212707, "coord": [48.87052093243255, 2.2124746370212707], "stop_id": 4109864, "stop_desc": "FACE 14 R DES LANDES - 92073", "stop_name": "MONT VALERIEN"}, "geometry": {"type": "Point", "coordinates": [2.2124746370212707, 48.87052093243255]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f413c708326461489a968590f0c5192ffb149af4", "fields": {"departement": "93", "stop_lat": 48.87177064081864, "code_postal": "93048", "stop_lon": 2.4429639950128457, "coord": [48.87177064081864, 2.4429639950128457], "stop_id": 4117614, "stop_desc": "10-12 AV BERLIOZ - 93048", "stop_name": "OSERAIES"}, "geometry": {"type": "Point", "coordinates": [2.4429639950128457, 48.87177064081864]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d2293d555e7f1dd77ac752c2fa8deb08b7de6705", "fields": {"departement": "93", "stop_lat": 48.874875604883364, "code_postal": "93048", "stop_lon": 2.448079668931218, "coord": [48.874875604883364, 2.448079668931218], "stop_id": 4117615, "stop_desc": "FACE 94 RTE DE MONTREUIL - 93048", "stop_name": "MIRABEAU"}, "geometry": {"type": "Point", "coordinates": [2.448079668931218, 48.874875604883364]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a93320225c9a782f9f328d5a34061f25cc8cca59", "fields": {"departement": "93", "stop_lat": 48.87651942533625, "code_postal": "93048", "stop_lon": 2.4489960812167424, "coord": [48.87651942533625, 2.4489960812167424], "stop_id": 4117617, "stop_desc": "ROUTE DE MONTREUIL - 93048", "stop_name": "RUE DE ROMAINVILLE"}, "geometry": {"type": "Point", "coordinates": [2.4489960812167424, 48.87651942533625]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e360d7c53f7a9717b5bf00f2f07ef45df26d84ca", "fields": {"departement": "95", "stop_lat": 48.96987984977362, "code_postal": "95210", "stop_lon": 2.308917458272139, "coord": [48.96987984977362, 2.308917458272139], "stop_id": 5158095, "stop_desc": "9 RUE DE MALLEVILLE - 95210", "stop_name": "MAIRIE D'ENGHIEN-LES-BAINS"}, "geometry": {"type": "Point", "coordinates": [2.308917458272139, 48.96987984977362]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8d9a5c0690f25c9fa35a671ea7be6a9e9ed4f2c3", "fields": {"departement": "92", "stop_lat": 48.80576553034424, "code_postal": "92007", "stop_lon": 2.313293167413813, "coord": [48.80576553034424, 2.313293167413813], "stop_id": 5161418, "stop_desc": "FACE 196 AV HENRI RAVERA - 92007", "stop_name": "JEAN-MARIN NAUDIN"}, "geometry": {"type": "Point", "coordinates": [2.313293167413813, 48.80576553034424]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aa94424e5a82b3dcc5b33e2dbfc70d785a10bdc1", "fields": {"departement": "92", "stop_lat": 48.80202610288528, "code_postal": "92007", "stop_lon": 2.3109410922086444, "coord": [48.80202610288528, 2.3109410922086444], "stop_id": 5161421, "stop_desc": "136 AVENUE HENRI RAVERA - 92007", "stop_name": "PASTEUR"}, "geometry": {"type": "Point", "coordinates": [2.3109410922086444, 48.80202610288528]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8103ae05e5f7db68c6d87e78b9d6b0be42612535", "fields": {"departement": "92", "stop_lat": 48.7930429254811, "code_postal": "92032", "stop_lon": 2.295818627433244, "coord": [48.7930429254811, 2.295818627433244], "stop_id": 5161429, "stop_desc": "35-37 RUE MARX DORMOY - 92032", "stop_name": "SENTIER DES LILAS"}, "geometry": {"type": "Point", "coordinates": [2.295818627433244, 48.7930429254811]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "242c83338c43dcec532f86be2ce72973d3fe2d2d", "fields": {"departement": "92", "stop_lat": 48.778927187110924, "code_postal": "92071", "stop_lon": 2.284079714549488, "coord": [48.778927187110924, 2.284079714549488], "stop_id": 5161444, "stop_desc": "117 RUE HOUDAN - 92071", "stop_name": "CIMETIERE DE SCEAUX"}, "geometry": {"type": "Point", "coordinates": [2.284079714549488, 48.778927187110924]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a965ceace814699c849fdf84238d24fc0358c824", "fields": {"departement": "92", "stop_lat": 48.81055016215596, "code_postal": "92023", "stop_lon": 2.2582192963739454, "coord": [48.81055016215596, 2.2582192963739454], "stop_id": 5161453, "stop_desc": "71 AVENUE HENRI BARBUSSE - 92023", "stop_name": "FLEURY"}, "geometry": {"type": "Point", "coordinates": [2.2582192963739454, 48.81055016215596]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "37a405a262c6a76db0ff2a77d010c9074ff8f197", "fields": {"departement": "92", "stop_lat": 48.80622881995387, "code_postal": "92020", "stop_lon": 2.297957992282904, "coord": [48.80622881995387, 2.297957992282904], "stop_id": 5161457, "stop_desc": "AVENUE DE LA REPUBLIQUE - 92020", "stop_name": "PIERRE SEMARD"}, "geometry": {"type": "Point", "coordinates": [2.297957992282904, 48.80622881995387]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fa8b89883c75196068c774832ce0dac38481d1eb", "fields": {"departement": "92", "stop_lat": 48.80631879638491, "code_postal": "92020", "stop_lon": 2.298257276220564, "coord": [48.80631879638491, 2.298257276220564], "stop_id": 5161458, "stop_desc": "140 AVENUE DE LA REPUBLIQUE - 92020", "stop_name": "PIERRE SEMARD"}, "geometry": {"type": "Point", "coordinates": [2.298257276220564, 48.80631879638491]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fb6948a55b1e20535c383064e6dc84129f0110e1", "fields": {"departement": "92", "stop_lat": 48.80368510844796, "code_postal": "92020", "stop_lon": 2.2974700935135903, "coord": [48.80368510844796, 2.2974700935135903], "stop_id": 5161459, "stop_desc": "95 AVENUE DE LA REPUBLIQUE - 92020", "stop_name": "REPUBLIQUE - DEFORGES"}, "geometry": {"type": "Point", "coordinates": [2.2974700935135903, 48.80368510844796]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c013d5bf8d0a6f19a728e220204ec07ede7b2ba8", "fields": {"departement": "92", "stop_lat": 48.802264645455615, "code_postal": "92020", "stop_lon": 2.2963282906160316, "coord": [48.802264645455615, 2.2963282906160316], "stop_id": 5161461, "stop_desc": "33 RUE PERROTIN - 92020", "stop_name": "PERROTIN"}, "geometry": {"type": "Point", "coordinates": [2.2963282906160316, 48.802264645455615]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7f0941090e0fe9436aef1468c4427df7ba4b8400", "fields": {"departement": "92", "stop_lat": 48.79441648121683, "code_postal": "92032", "stop_lon": 2.2914779216832235, "coord": [48.79441648121683, 2.2914779216832235], "stop_id": 5161465, "stop_desc": "28 AVENUE JEANNE ET MAURICE DOLIVET - 92032", "stop_name": "CIMETIERE DE FONTENAY-AUX-ROSES"}, "geometry": {"type": "Point", "coordinates": [2.2914779216832235, 48.79441648121683]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bddaf1c10d194fb4fc9c995e752af2244184b0f7", "fields": {"departement": "92", "stop_lat": 48.786289554194546, "code_postal": "92032", "stop_lon": 2.2868877217300163, "coord": [48.786289554194546, 2.2868877217300163], "stop_id": 5161470, "stop_desc": "30-32 AVENUE JEAN MOULIN - 92032", "stop_name": "AUGUSTIN CLAUDE"}, "geometry": {"type": "Point", "coordinates": [2.2868877217300163, 48.786289554194546]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "14348aa2db33091243aa14cc6c1239ac45140bf2", "fields": {"departement": "92", "stop_lat": 48.77245154539877, "code_postal": "92019", "stop_lon": 2.2752612128272904, "coord": [48.77245154539877, 2.2752612128272904], "stop_id": 5161477, "stop_desc": "72 AVENUE ROGER SALENGRO - 92019", "stop_name": "MARC SANGNIER"}, "geometry": {"type": "Point", "coordinates": [2.2752612128272904, 48.77245154539877]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5b215d63b898ba2c65825ed62cb7fff5710fc946", "fields": {"departement": "92", "stop_lat": 48.77302725091217, "code_postal": "92019", "stop_lon": 2.276171604837392, "coord": [48.77302725091217, 2.276171604837392], "stop_id": 5161478, "stop_desc": "FACE 36 AVENUE ROGER SALENGRO - 92019", "stop_name": "MARC SANGNIER"}, "geometry": {"type": "Point", "coordinates": [2.276171604837392, 48.77302725091217]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "66d52dbf3fde3ad7dfca404d4ea8e67e381daa37", "fields": {"departement": "92", "stop_lat": 48.77004221401073, "code_postal": "92019", "stop_lon": 2.2742442816575563, "coord": [48.77004221401073, 2.2742442816575563], "stop_id": 5161480, "stop_desc": "89 AVENUE ROGER SALENGRO - 92019", "stop_name": "JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.2742442816575563, 48.77004221401073]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "26a0cddf03adb82d09e18e1f916969d5576a1dbe", "fields": {"departement": "92", "stop_lat": 48.76784850968755, "code_postal": "92019", "stop_lon": 2.273091210688663, "coord": [48.76784850968755, 2.273091210688663], "stop_id": 5161482, "stop_desc": "FACE 104 AVENUE ROGER SALENGRO - 92019", "stop_name": "DOCTEUR LE SAVOUREUX"}, "geometry": {"type": "Point", "coordinates": [2.273091210688663, 48.76784850968755]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6e199db86d7897be3babdbf4f584bc18fd217761", "fields": {"departement": "92", "stop_lat": 48.76668861303903, "code_postal": "92019", "stop_lon": 2.2722904474309713, "coord": [48.76668861303903, 2.2722904474309713], "stop_id": 5161483, "stop_desc": "134 AVENUE ROGER SALENGRO - 92019", "stop_name": "JULES VERNE"}, "geometry": {"type": "Point", "coordinates": [2.2722904474309713, 48.76668861303903]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "597a022185d4e41537626933b30a48140f24caae", "fields": {"departement": "91", "stop_lat": 48.74282908897804, "code_postal": "91645", "stop_lon": 2.263812739611913, "coord": [48.74282908897804, 2.263812739611913], "stop_id": 5161499, "stop_desc": "FACE 27 BOULEVARD DU MARECHAL FOCH - 91645", "stop_name": "GRANDS CHENES"}, "geometry": {"type": "Point", "coordinates": [2.263812739611913, 48.74282908897804]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "93c802e4bd90b0d96e3f2ef2daa5b4c289787a90", "fields": {"departement": "91", "stop_lat": 48.74053303079903, "code_postal": "91645", "stop_lon": 2.2575239540089407, "coord": [48.74053303079903, 2.2575239540089407], "stop_id": 5161501, "stop_desc": "131-133 RUE D'ESTIENNE D'ORVES - 91645", "stop_name": "MOULIN DE GRAIS"}, "geometry": {"type": "Point", "coordinates": [2.2575239540089407, 48.74053303079903]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ea9163fe2b0285c86fdc57617bb2ddb400bee1ba", "fields": {"departement": "91", "stop_lat": 48.74074601079986, "code_postal": "91645", "stop_lon": 2.2535418298794765, "coord": [48.74074601079986, 2.2535418298794765], "stop_id": 5161502, "stop_desc": "FACE 143 RUE D'ESTIENNE D'ORVES - 91645", "stop_name": "RIANTES CITES"}, "geometry": {"type": "Point", "coordinates": [2.2535418298794765, 48.74074601079986]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "47432f3cff9ba339499a69a1bbdbaf653e9ffdf4", "fields": {"departement": "91", "stop_lat": 48.74107627367905, "code_postal": "91645", "stop_lon": 2.250334095938015, "coord": [48.74107627367905, 2.250334095938015], "stop_id": 5161504, "stop_desc": "ROND-POINT D'AMBLAINVILLIERS - 91645", "stop_name": "CROIX BELLE AVOINE"}, "geometry": {"type": "Point", "coordinates": [2.250334095938015, 48.74107627367905]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "da947609d9da53955df51d3952b2a481fa8440d0", "fields": {"departement": "91", "stop_lat": 48.7382193017177, "code_postal": "91312", "stop_lon": 2.2299280516962123, "coord": [48.7382193017177, 2.2299280516962123], "stop_id": 5161511, "stop_desc": "AVENUE DU PRESIDENT KENNEDY - 91312", "stop_name": "KENNEDY - BELLEVUE"}, "geometry": {"type": "Point", "coordinates": [2.2299280516962123, 48.7382193017177]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "881c556c12026ac99892dc5f53dd18ed1f8d9237", "fields": {"departement": "94", "stop_lat": 48.80980304722781, "code_postal": "94003", "stop_lon": 2.3273617927425523, "coord": [48.80980304722781, 2.3273617927425523], "stop_id": 5161521, "stop_desc": "AV LAPLACE - 94003", "stop_name": "VACHE NOIRE - CENTRE COMMERCIAL"}, "geometry": {"type": "Point", "coordinates": [2.3273617927425523, 48.80980304722781]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f39c0c1f415a333d6c0ba4ac339e765d75ee5de5", "fields": {"departement": "94", "stop_lat": 48.806576843454636, "code_postal": "94003", "stop_lon": 2.3368192563048034, "coord": [48.806576843454636, 2.3368192563048034], "stop_id": 5161526, "stop_desc": "FACE 9 AVENUE PAUL DOUMER - 94003", "stop_name": "HOTEL DE VILLE D'ARCUEIL"}, "geometry": {"type": "Point", "coordinates": [2.3368192563048034, 48.806576843454636]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b344458a1fceba54e85df324ec5172fde2ed0478", "fields": {"departement": "94", "stop_lat": 48.797876157007266, "code_postal": "94076", "stop_lon": 2.3478527380649643, "coord": [48.797876157007266, 2.3478527380649643], "stop_id": 5161533, "stop_desc": "80 AVENUE DU PRESIDENT SALVADOR ALLENDE - 94076", "stop_name": "BELVEDERE"}, "geometry": {"type": "Point", "coordinates": [2.3478527380649643, 48.797876157007266]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3a1738fa23b61e1c52d1f686e8c9f2016a7abfa1", "fields": {"departement": "94", "stop_lat": 48.791287372333734, "code_postal": "94076", "stop_lon": 2.3537278766347285, "coord": [48.791287372333734, 2.3537278766347285], "stop_id": 5161539, "stop_desc": "RUE DE VERDUN - 94076", "stop_name": "VERDUN - HAUTES BRUYERES"}, "geometry": {"type": "Point", "coordinates": [2.3537278766347285, 48.791287372333734]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7c27d1934d786f39ddb2cf1807ddb294079ebc63", "fields": {"departement": "75", "stop_lat": 48.82366103662885, "code_postal": "75114", "stop_lon": 2.3184300364197443, "coord": [48.82366103662885, 2.3184300364197443], "stop_id": 5221742, "stop_desc": "AVENUE ERNEST REYER - 75114", "stop_name": "JEAN MOULIN"}, "geometry": {"type": "Point", "coordinates": [2.3184300364197443, 48.82366103662885]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "68458735d43d900c84e24d523b779af50b21aac3", "fields": {"departement": "92", "stop_lat": 48.819462162874615, "code_postal": "92046", "stop_lon": 2.310033969847727, "coord": [48.819462162874615, 2.310033969847727], "stop_id": 5221744, "stop_desc": "62 AVENUE PIERRE BROSSOLETTE - 92046", "stop_name": "PIERRE BROSSOLETTE - GABRIEL PERI"}, "geometry": {"type": "Point", "coordinates": [2.310033969847727, 48.819462162874615]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e8ca6bbe57794ed7bb08855d9cba311772874b13", "fields": {"departement": "92", "stop_lat": 48.81750220253278, "code_postal": "92046", "stop_lon": 2.3073674686478984, "coord": [48.81750220253278, 2.3073674686478984], "stop_id": 5221745, "stop_desc": "102 AVENUE PIERRE BROSSOLETTE - 92046", "stop_name": "12 FEVRIER 1934"}, "geometry": {"type": "Point", "coordinates": [2.3073674686478984, 48.81750220253278]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3db2548727bc22263aa9ee780f515666be2b9104", "fields": {"departement": "92", "stop_lat": 48.81609960993273, "code_postal": "92046", "stop_lon": 2.3054085119085057, "coord": [48.81609960993273, 2.3054085119085057], "stop_id": 5221746, "stop_desc": "132-134 AVENUE PIERRE BROSSOLETTE - 92046", "stop_name": "AUGUSTIN DUMONT"}, "geometry": {"type": "Point", "coordinates": [2.3054085119085057, 48.81609960993273]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4c1502e668b872501501bc244d28e139df478fda", "fields": {"departement": "92", "stop_lat": 48.80877914567906, "code_postal": "92020", "stop_lon": 2.2917646239249407, "coord": [48.80877914567906, 2.2917646239249407], "stop_id": 5221752, "stop_desc": "FACE 70 R MARCELIN BERTHELOT - 92020", "stop_name": "JEAN MERMOZ"}, "geometry": {"type": "Point", "coordinates": [2.2917646239249407, 48.80877914567906]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d8f5c0c9dfad0da97d5bbe4aac557fa6e2b1bafd", "fields": {"departement": "92", "stop_lat": 48.80628732978911, "code_postal": "92020", "stop_lon": 2.2863376527004067, "coord": [48.80628732978911, 2.2863376527004067], "stop_id": 5221757, "stop_desc": "FACE 33 BOULEVARD DE VANVES - 92020", "stop_name": "FELIX FAURE"}, "geometry": {"type": "Point", "coordinates": [2.2863376527004067, 48.80628732978911]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6bb6fe83c8a548249b16aa6431d3c71a76cc8ac2", "fields": {"departement": "92", "stop_lat": 48.79054868854144, "code_postal": "92032", "stop_lon": 2.2842582546709322, "coord": [48.79054868854144, 2.2842582546709322], "stop_id": 5221767, "stop_desc": "4 RUE D'ESTIENNE D'ORVES - 92032", "stop_name": "CARNOT - JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.2842582546709322, 48.79054868854144]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9c619039fea07600b74f1b451b9222b63d94c04c", "fields": {"departement": "92", "stop_lat": 48.79101633072165, "code_postal": "92032", "stop_lon": 2.2848699080951174, "coord": [48.79101633072165, 2.2848699080951174], "stop_id": 5221768, "stop_desc": "FACE 32 RUE JEAN JAURES - 92032", "stop_name": "CARNOT - JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.2848699080951174, 48.79101633072165]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "81ecf7a3d38eef1b0e6820e02c06055aa98c7c31", "fields": {"departement": "92", "stop_lat": 48.7867192580975, "code_postal": "92032", "stop_lon": 2.28298359496056, "coord": [48.7867192580975, 2.28298359496056], "stop_id": 5221769, "stop_desc": "4 AVENUE RAYMOND CROLAND - 92032", "stop_name": "ABBE GRANDJEAN"}, "geometry": {"type": "Point", "coordinates": [2.28298359496056, 48.7867192580975]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3675242c68c809e40d9a11bccd6a6d5a05e55bb2", "fields": {"departement": "92", "stop_lat": 48.779356696723205, "code_postal": "92019", "stop_lon": 2.279958520425801, "coord": [48.779356696723205, 2.279958520425801], "stop_id": 5221776, "stop_desc": "AVENUE DU PLESSIS - 92019", "stop_name": "ROBINSON RER"}, "geometry": {"type": "Point", "coordinates": [2.279958520425801, 48.779356696723205]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9ccf129cbcd665fe2cc5ae8ee30f4e05f88d6014", "fields": {"departement": "92", "stop_lat": 48.77569758793708, "code_postal": "92019", "stop_lon": 2.277936321101258, "coord": [48.77569758793708, 2.277936321101258], "stop_id": 5221778, "stop_desc": "15-17 AVENUE ROGER SALENGRO - 92019", "stop_name": "PROFESSEUR EINSTEIN"}, "geometry": {"type": "Point", "coordinates": [2.277936321101258, 48.77569758793708]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "774a9a9d8d1ed0ac396b0f690681d8ad95c4f659", "fields": {"departement": "92", "stop_lat": 48.76994317207525, "code_postal": "92019", "stop_lon": 2.2739180644920944, "coord": [48.76994317207525, 2.2739180644920944], "stop_id": 5221781, "stop_desc": "88 AVENUE ROGER SALENGRO - 92019", "stop_name": "JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.2739180644920944, 48.76994317207525]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "001ee10cee7b7ed6aadc1f7f540347b7babc71af", "fields": {"departement": "92", "stop_lat": 48.77004221401073, "code_postal": "92019", "stop_lon": 2.2742442816575563, "coord": [48.77004221401073, 2.2742442816575563], "stop_id": 5221782, "stop_desc": "89 AVENUE ROGER SALENGRO - 92019", "stop_name": "JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.2742442816575563, 48.77004221401073]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f6f62d0b608c6554b7482382c58abab639021bf8", "fields": {"departement": "92", "stop_lat": 48.76782133944119, "code_postal": "92019", "stop_lon": 2.272710532959813, "coord": [48.76782133944119, 2.272710532959813], "stop_id": 5221783, "stop_desc": "FACE 131 AVENUE ROGER SALENGRO - 92019", "stop_name": "DOCTEUR LE SAVOUREUX"}, "geometry": {"type": "Point", "coordinates": [2.272710532959813, 48.76782133944119]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "631bfb304d63f1de7f1e47cf07c3258eef9beec1", "fields": {"departement": "92", "stop_lat": 48.764432544927, "code_postal": "92019", "stop_lon": 2.272184500447193, "coord": [48.764432544927, 2.272184500447193], "stop_id": 5221788, "stop_desc": "AVENUE ROGER SALENGRO - 92019", "stop_name": "PRESIDENT ALLENDE"}, "geometry": {"type": "Point", "coordinates": [2.272184500447193, 48.764432544927]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8977663984f91f9286775a40c307bfb7878d5079", "fields": {"departement": "75", "stop_lat": 48.82332914428735, "code_postal": "75114", "stop_lon": 2.32313969054984, "coord": [48.82332914428735, 2.32313969054984], "stop_id": 5221800, "stop_desc": "1 AVENUE DE LA PORTE DE MONTROUGE - 75114", "stop_name": "PORTE D'ORLEANS - ERNEST REYER"}, "geometry": {"type": "Point", "coordinates": [2.32313969054984, 48.82332914428735]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1ab5863212278632f8bb8f6ebed1a9d8355108b8", "fields": {"departement": "75", "stop_lat": 48.82015648764433, "code_postal": "75113", "stop_lon": 2.3513960280804413, "coord": [48.82015648764433, 2.3513960280804413], "stop_id": 5221803, "stop_desc": "12 RUE GOUTHIERE - 75113", "stop_name": "POTERNE DES PEUPLIERS"}, "geometry": {"type": "Point", "coordinates": [2.3513960280804413, 48.82015648764433]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c718f8c93ad5fbcf09b909126487d1fd7f5d2d14", "fields": {"departement": "94", "stop_lat": 48.81352368758163, "code_postal": "94037", "stop_lon": 2.350183037847167, "coord": [48.81352368758163, 2.350183037847167], "stop_id": 5221806, "stop_desc": "8 RUE SAINT-ELOI - 94037", "stop_name": "JEAN JAURES - SAINT ELOI"}, "geometry": {"type": "Point", "coordinates": [2.350183037847167, 48.81352368758163]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "326c88a7ed5f659fa480ba8ac5d708270dc0f9eb", "fields": {"departement": "94", "stop_lat": 48.81007292302495, "code_postal": "94037", "stop_lon": 2.3435823500614354, "coord": [48.81007292302495, 2.3435823500614354], "stop_id": 5221808, "stop_desc": "82 AVENUE RASPAIL - 94037", "stop_name": "FRAYSSE - VAL DE BIEVRE"}, "geometry": {"type": "Point", "coordinates": [2.3435823500614354, 48.81007292302495]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bf8fdd472e787a81399f877e1aa781341021cf1f", "fields": {"departement": "94", "stop_lat": 48.80148968188163, "code_postal": "94003", "stop_lon": 2.3334587047633777, "coord": [48.80148968188163, 2.3334587047633777], "stop_id": 5221811, "stop_desc": "39 AVENUE DE LA CONVENTION - 94003", "stop_name": "CITE JARDINS"}, "geometry": {"type": "Point", "coordinates": [2.3334587047633777, 48.80148968188163]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "423df9a909b558c861f168f929b894d6b37984d9", "fields": {"departement": "91", "stop_lat": 48.695412134272416, "code_postal": "91326", "stop_lon": 2.3803237896699936, "coord": [48.695412134272416, 2.3803237896699936], "stop_id": 5221903, "stop_desc": "60 AVENUE DU 18 AVRIL 1944 - 91326", "stop_name": "LYCEE JEAN MONNET"}, "geometry": {"type": "Point", "coordinates": [2.3803237896699936, 48.695412134272416]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0769801c70e528cb67dfe89b7b976e16e7bf0424", "fields": {"departement": "91", "stop_lat": 48.69524149849297, "code_postal": "91326", "stop_lon": 2.3799163125470466, "coord": [48.69524149849297, 2.3799163125470466], "stop_id": 5221904, "stop_desc": "FACE 60 AVENUE DU 18 AVRIL 1944 - 91326", "stop_name": "LYCEE JEAN MONNET"}, "geometry": {"type": "Point", "coordinates": [2.3799163125470466, 48.69524149849297]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9e0df409fe69de873d3f295c9644fce4f23e2a6e", "fields": {"departement": "77", "stop_lat": 48.85076123947161, "code_postal": "77468", "stop_lon": 2.6573736160779675, "coord": [48.85076123947161, 2.6573736160779675], "stop_id": 5231534, "stop_desc": "FACE 3-7 RUE DE PARIS - 77468", "stop_name": "LA MARE AUX MARCHAIS"}, "geometry": {"type": "Point", "coordinates": [2.6573736160779675, 48.85076123947161]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1c4617fe805d575bcfe758f4b7ed7d6029435b32", "fields": {"departement": "77", "stop_lat": 48.850679452087306, "code_postal": "77337", "stop_lon": 2.6297681081578985, "coord": [48.850679452087306, 2.6297681081578985], "stop_id": 5231540, "stop_desc": "COURS DE L'ARCHE GUEDON - 77337", "stop_name": "LA REMISE AUX FRAISES"}, "geometry": {"type": "Point", "coordinates": [2.6297681081578985, 48.850679452087306]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "18ef16330dd5846dca75bb41753df5c00d4bde25", "fields": {"departement": "77", "stop_lat": 48.85104795592041, "code_postal": "77337", "stop_lon": 2.626079508796173, "coord": [48.85104795592041, 2.626079508796173], "stop_id": 5231541, "stop_desc": "COURS DE L'ARCHE GUEDON - 77337", "stop_name": "JULES FERRY"}, "geometry": {"type": "Point", "coordinates": [2.626079508796173, 48.85104795592041]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b23ba2081d7f2b67958072d560e2d02b7a187485", "fields": {"departement": "77", "stop_lat": 48.85163425678612, "code_postal": "77337", "stop_lon": 2.6214659706761654, "coord": [48.85163425678612, 2.6214659706761654], "stop_id": 5231542, "stop_desc": "COURS DE L'ARCHE GUEDON - 77337", "stop_name": "LES QUATRE PAVES"}, "geometry": {"type": "Point", "coordinates": [2.6214659706761654, 48.85163425678612]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fb17fe5298a24f9196ad3f10de05325b7513129b", "fields": {"departement": "77", "stop_lat": 48.85258832961184, "code_postal": "77083", "stop_lon": 2.609322932107952, "coord": [48.85258832961184, 2.609322932107952], "stop_id": 5231543, "stop_desc": "RUE DE PARIS - 77083", "stop_name": "MAISON DE RETRAITE"}, "geometry": {"type": "Point", "coordinates": [2.609322932107952, 48.85258832961184]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b4421b618344c426c26e051860f62e591833b98d", "fields": {"departement": "77", "stop_lat": 48.85552919168464, "code_postal": "77083", "stop_lon": 2.5836512392662123, "coord": [48.85552919168464, 2.5836512392662123], "stop_id": 5231548, "stop_desc": "48 RUE DE LA REPUBLIQUE - 77083", "stop_name": "ROND-POINT DES PYRAMIDES"}, "geometry": {"type": "Point", "coordinates": [2.5836512392662123, 48.85552919168464]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2d1ac8efa2e835d83707be7a808853ec1887a0e3", "fields": {"departement": "93", "stop_lat": 48.858401939189704, "code_postal": "93033", "stop_lon": 2.5808590358130417, "coord": [48.858401939189704, 2.5808590358130417], "stop_id": 5231549, "stop_desc": "AVENUE ARISTIDE BRIAND - 93033", "stop_name": "PLACE CHURCHILL"}, "geometry": {"type": "Point", "coordinates": [2.5808590358130417, 48.858401939189704]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0a3429d4bcdff1ceabfcbd1f496df23b24689ecf", "fields": {"departement": "93", "stop_lat": 48.84951807883047, "code_postal": "93051", "stop_lon": 2.5648158086543447, "coord": [48.84951807883047, 2.5648158086543447], "stop_id": 5231552, "stop_desc": "75 AV EMILE COSSONNEAU - 93051", "stop_name": "POINTE DE GOURNAY"}, "geometry": {"type": "Point", "coordinates": [2.5648158086543447, 48.84951807883047]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "49049abc6af2766e2241cfcd03d61eab849763ba", "fields": {"departement": "93", "stop_lat": 48.848823452640055, "code_postal": "93051", "stop_lon": 2.5566146567258454, "coord": [48.848823452640055, 2.5566146567258454], "stop_id": 5231553, "stop_desc": "11-13 AVENUE EMILE COSSONNEAU - 93051", "stop_name": "CARREFOUR DE MALNOUE"}, "geometry": {"type": "Point", "coordinates": [2.5566146567258454, 48.848823452640055]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0105c30f50733903e0f95e53b25c69b8fe5bc456", "fields": {"departement": "93", "stop_lat": 48.85683222647169, "code_postal": "93050", "stop_lon": 2.5301163636868558, "coord": [48.85683222647169, 2.5301163636868558], "stop_id": 5231560, "stop_desc": "FACE 52 AVENUE DU GENERAL DE GAULLE - 93050", "stop_name": "PLACE DE LA RESISTANCE"}, "geometry": {"type": "Point", "coordinates": [2.5301163636868558, 48.85683222647169]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f8bbebc6ed3328748b45f4a0906df664f2daa2a8", "fields": {"departement": "93", "stop_lat": 48.85367127728647, "code_postal": "93050", "stop_lon": 2.5169346792383425, "coord": [48.85367127728647, 2.5169346792383425], "stop_id": 5231564, "stop_desc": "FACE 32 BOULEVARD GALLIENI - 93050", "stop_name": "CENTRE BUS"}, "geometry": {"type": "Point", "coordinates": [2.5169346792383425, 48.85367127728647]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bc5709e5e15e70029daf5cbab83979068c1d193b", "fields": {"departement": "94", "stop_lat": 48.85196701765014, "code_postal": "94058", "stop_lon": 2.508553140777638, "coord": [48.85196701765014, 2.508553140777638], "stop_id": 5231566, "stop_desc": "167 BOULEVARD ALSACE-LORRAINE - 94058", "stop_name": "JOULEAU"}, "geometry": {"type": "Point", "coordinates": [2.508553140777638, 48.85196701765014]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "942b4ef7a37c97ee4a62dacc1d9b0b579fa17183", "fields": {"departement": "94", "stop_lat": 48.85994861762231, "code_postal": "94033", "stop_lon": 2.4807926491059042, "coord": [48.85994861762231, 2.4807926491059042], "stop_id": 5231575, "stop_desc": "FACE 239 AVENUE VICTOR HUGO - 94033", "stop_name": "CIMETIERE DE VINCENNES"}, "geometry": {"type": "Point", "coordinates": [2.4807926491059042, 48.85994861762231]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5b614f3a709ce7aaee54b75d7c302c8e9249064d", "fields": {"departement": "93", "stop_lat": 48.86714742476843, "code_postal": "93048", "stop_lon": 2.456427603199559, "coord": [48.86714742476843, 2.456427603199559], "stop_id": 5231584, "stop_desc": "151 RUE DE ROSNY - 93048", "stop_name": "EDOUARD BRANLY"}, "geometry": {"type": "Point", "coordinates": [2.456427603199559, 48.86714742476843]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2253d1f05c489053c79a264f5e1684da695c0a91", "fields": {"departement": "93", "stop_lat": 48.86443716904679, "code_postal": "93048", "stop_lon": 2.4524300774929575, "coord": [48.86443716904679, 2.4524300774929575], "stop_id": 5231585, "stop_desc": "121 RUE DE ROSNY - 93048", "stop_name": "DANTON"}, "geometry": {"type": "Point", "coordinates": [2.4524300774929575, 48.86443716904679]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1c4ff75556220224e57c8601fc0f6f5626fb33ec", "fields": {"departement": "93", "stop_lat": 48.86082320601623, "code_postal": "93048", "stop_lon": 2.4438815440753667, "coord": [48.86082320601623, 2.4438815440753667], "stop_id": 5231587, "stop_desc": "5 RUE DE ROSNY - 93048", "stop_name": "CENTRE ADMINISTRATIF"}, "geometry": {"type": "Point", "coordinates": [2.4438815440753667, 48.86082320601623]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "de11e36e1595720050ab4febd88fc5d32287ff1d", "fields": {"departement": "93", "stop_lat": 48.858522424684516, "code_postal": "93048", "stop_lon": 2.4333208356182703, "coord": [48.858522424684516, 2.4333208356182703], "stop_id": 5231591, "stop_desc": "50 BOULEVARD CHANZY - 93048", "stop_name": "MARCHE DE MONTREUIL"}, "geometry": {"type": "Point", "coordinates": [2.4333208356182703, 48.858522424684516]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "334ee5b7653657a5f43ad169f668ee1ae76af997", "fields": {"departement": "75", "stop_lat": 48.85808583827969, "code_postal": "75111", "stop_lon": 2.380853874579723, "coord": [48.85808583827969, 2.380853874579723], "stop_id": 5231606, "stop_desc": "PLACE LEON BLUM - 75111", "stop_name": "VOLTAIRE - LEON BLUM"}, "geometry": {"type": "Point", "coordinates": [2.380853874579723, 48.85808583827969]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0d372fcbc1b252c29a5e78e7f1c58409e9a1e1d1", "fields": {"departement": "75", "stop_lat": 48.85108640384751, "code_postal": "75112", "stop_lon": 2.3756592835679635, "coord": [48.85108640384751, 2.3756592835679635], "stop_id": 5231609, "stop_desc": "85 AVENUE LEDRU ROLLIN - 75112", "stop_name": "LEDRU ROLLIN-FAUBOURG SAINT-ANTOINE"}, "geometry": {"type": "Point", "coordinates": [2.3756592835679635, 48.85108640384751]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cc831d4bcd21e28f4691f5af7f077f42f3b3e64d", "fields": {"departement": "75", "stop_lat": 48.848426890902694, "code_postal": "75112", "stop_lon": 2.373151610559424, "coord": [48.848426890902694, 2.373151610559424], "stop_id": 5231614, "stop_desc": "15 AVENUE DAUMESNIL - 75112", "stop_name": "DAUMESNIL - LEDRU ROLLIN"}, "geometry": {"type": "Point", "coordinates": [2.373151610559424, 48.848426890902694]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a6d7e2e8df3081889c3c02b9827aa806bb69a422", "fields": {"departement": "75", "stop_lat": 48.85143669814865, "code_postal": "75111", "stop_lon": 2.376326861513944, "coord": [48.85143669814865, 2.376326861513944], "stop_id": 5231615, "stop_desc": "94-96 AVENUE LEDRU ROLLIN - 75111", "stop_name": "LEDRU ROLLIN - FAUBOURG SAINT-ANTOINE"}, "geometry": {"type": "Point", "coordinates": [2.376326861513944, 48.85143669814865]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3ecd8e4d92f4d448b5b43fb19a3be3faf1ff662d", "fields": {"departement": "75", "stop_lat": 48.85309905314883, "code_postal": "75111", "stop_lon": 2.377308694993932, "coord": [48.85309905314883, 2.377308694993932], "stop_id": 5231616, "stop_desc": "114 AVENUE LEDRU ROLLIN - 75111", "stop_name": "CHARONNE - KELLER"}, "geometry": {"type": "Point", "coordinates": [2.377308694993932, 48.85309905314883]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "16a3e0c2c90e31e7591f837578846b571a246aa0", "fields": {"departement": "75", "stop_lat": 48.85794172235713, "code_postal": "75111", "stop_lon": 2.3817118420922787, "coord": [48.85794172235713, 2.3817118420922787], "stop_id": 5231618, "stop_desc": "136 RUE DE LA ROQUETTE - 75111", "stop_name": "VOLTAIRE - LEON BLUM"}, "geometry": {"type": "Point", "coordinates": [2.3817118420922787, 48.85794172235713]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d5faa7258038670603e936a778e9a4670eafe5b1", "fields": {"departement": "75", "stop_lat": 48.86045533777064, "code_postal": "75120", "stop_lon": 2.388810598217526, "coord": [48.86045533777064, 2.388810598217526], "stop_id": 5231620, "stop_desc": "FACE 27 BOULEVARD DE MENILMONTANT - 75120", "stop_name": "ROQUETTE - PERE LACHAISE"}, "geometry": {"type": "Point", "coordinates": [2.388810598217526, 48.86045533777064]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6344abfcdd1ac3cbccd14d7e60cfe1b870407785", "fields": {"departement": "75", "stop_lat": 48.86294513869873, "code_postal": "75120", "stop_lon": 2.3881319851015386, "coord": [48.86294513869873, 2.3881319851015386], "stop_id": 5231621, "stop_desc": "4 AVENUE GAMBETTA - 75120", "stop_name": "AUGUSTE METIVIER"}, "geometry": {"type": "Point", "coordinates": [2.3881319851015386, 48.86294513869873]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9576819685afd07543a948aad10be9cf102bdab3", "fields": {"departement": "75", "stop_lat": 48.863824392740085, "code_postal": "75120", "stop_lon": 2.3915519700524968, "coord": [48.863824392740085, 2.3915519700524968], "stop_id": 5231622, "stop_desc": "FACE 29 AVENUE GAMBETTA - 75120", "stop_name": "MURIERS"}, "geometry": {"type": "Point", "coordinates": [2.3915519700524968, 48.863824392740085]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fc6a351b758a1111442a54248153ad7aa2e5b103", "fields": {"departement": "75", "stop_lat": 48.86465476793721, "code_postal": "75120", "stop_lon": 2.4024233712222123, "coord": [48.86465476793721, 2.4024233712222123], "stop_id": 5231625, "stop_desc": "50 RUE BELGRAND - 75120", "stop_name": "PELLEPORT"}, "geometry": {"type": "Point", "coordinates": [2.4024233712222123, 48.86465476793721]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3c249c6f4fa6e8679517a1cae0a0a1b638628f16", "fields": {"departement": "93", "stop_lat": 48.8617520482782, "code_postal": "93006", "stop_lon": 2.4168720919850277, "coord": [48.8617520482782, 2.4168720919850277], "stop_id": 5231628, "stop_desc": "50-52 AVENUE DE LA REPUBLIQUE - 93006", "stop_name": "GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.4168720919850277, 48.8617520482782]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "19c69a22ee4a0f09fd96f0c492c171c358a45e94", "fields": {"departement": "93", "stop_lat": 48.86242440102482, "code_postal": "93048", "stop_lon": 2.442263860889917, "coord": [48.86242440102482, 2.442263860889917], "stop_id": 5231635, "stop_desc": "FACE 5 PLACE JEAN JAURES - 93048", "stop_name": "MAIRIE DE MONTREUIL"}, "geometry": {"type": "Point", "coordinates": [2.442263860889917, 48.86242440102482]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aad27bb57082152522f83a1db8d91ba8bc8d63d7", "fields": {"departement": "93", "stop_lat": 48.85283059716511, "code_postal": "93049", "stop_lon": 2.51416708031688, "coord": [48.85283059716511, 2.51416708031688], "stop_id": 5231656, "stop_desc": "BOULEVARD GALLIENI - 93049", "stop_name": "NEUILLY-PLAISANCE RER"}, "geometry": {"type": "Point", "coordinates": [2.51416708031688, 48.85283059716511]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c2c663a9790523f06a9b9a7c3933c3ae03ce27cc", "fields": {"departement": "93", "stop_lat": 48.85429380589795, "code_postal": "93050", "stop_lon": 2.5212542273863185, "coord": [48.85429380589795, 2.5212542273863185], "stop_id": 5231658, "stop_desc": "FACE 11 BOULEVARD DU MARECHAL FOCH - 93050", "stop_name": "HELENE BOUCHER"}, "geometry": {"type": "Point", "coordinates": [2.5212542273863185, 48.85429380589795]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "03f93fe16fb913bd9cfcf273e62e4ca9107c0cfd", "fields": {"departement": "93", "stop_lat": 48.85551623837613, "code_postal": "93050", "stop_lon": 2.526897183997044, "coord": [48.85551623837613, 2.526897183997044], "stop_id": 5231660, "stop_desc": "38 BOULEVARD DU MARECHAL FOCH - 93050", "stop_name": "FOCH - DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.526897183997044, 48.85551623837613]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9b7dda80446e7f058c9a52aaf653fa6e30a4e88c", "fields": {"departement": "93", "stop_lat": 48.84982102924448, "code_postal": "93051", "stop_lon": 2.536164085113424, "coord": [48.84982102924448, 2.536164085113424], "stop_id": 5231662, "stop_desc": "36-38 ROUTE DE NEUILLY - 93051", "stop_name": "RENE NAVIER"}, "geometry": {"type": "Point", "coordinates": [2.536164085113424, 48.84982102924448]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bf17b8a6c58d79e3d77acbaa5268f048fdc605c7", "fields": {"departement": "93", "stop_lat": 48.84092093522442, "code_postal": "93051", "stop_lon": 2.553041073554446, "coord": [48.84092093522442, 2.553041073554446], "stop_id": 5231664, "stop_desc": "PISTE GARE ROUTIERE - 93051", "stop_name": "NOISY-LE-GRAND - MONT D'EST RER"}, "geometry": {"type": "Point", "coordinates": [2.553041073554446, 48.84092093522442]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "178b2c4e11c0faca5534caa912ca5c0cb401a44c", "fields": {"departement": "93", "stop_lat": 48.84619689031638, "code_postal": "93051", "stop_lon": 2.5528996112196936, "coord": [48.84619689031638, 2.5528996112196936], "stop_id": 5231666, "stop_desc": "20 RUE DE LA REPUBLIQUE - 93051", "stop_name": "ESPACE MICHEL SIMON"}, "geometry": {"type": "Point", "coordinates": [2.5528996112196936, 48.84619689031638]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a576bc96fad015a06196fc566987790c4d5d2ad8", "fields": {"departement": "77", "stop_lat": 48.851227642343254, "code_postal": "77337", "stop_lon": 2.6223762009154137, "coord": [48.851227642343254, 2.6223762009154137], "stop_id": 5231679, "stop_desc": "COURS DE L'ARCHE GUEDON - 77337", "stop_name": "LES QUATRE PAVES"}, "geometry": {"type": "Point", "coordinates": [2.6223762009154137, 48.851227642343254]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eea07814aff6663bc544f6d27bbc51b8d9bd29ac", "fields": {"departement": "77", "stop_lat": 48.849623070716085, "code_postal": "77468", "stop_lon": 2.638913693080735, "coord": [48.849623070716085, 2.638913693080735], "stop_id": 5231683, "stop_desc": "COURS DE L'ARCHE GUEDON - 77468", "stop_name": "LA MOGOTTE"}, "geometry": {"type": "Point", "coordinates": [2.638913693080735, 48.849623070716085]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5562e16f0c52e4a29a3a1803fbc4d9c191d8d585", "fields": {"departement": "77", "stop_lat": 48.84694657702187, "code_postal": "77468", "stop_lon": 2.6521072695310983, "coord": [48.84694657702187, 2.6521072695310983], "stop_id": 5231689, "stop_desc": "AVENUE DE LINGENFELD - 77468", "stop_name": "JACQUES PREVERT"}, "geometry": {"type": "Point", "coordinates": [2.6521072695310983, 48.84694657702187]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f105a7d535d5ddfae0d462ae917cf51d0add74d2", "fields": {"departement": "77", "stop_lat": 48.845082316255095, "code_postal": "77468", "stop_lon": 2.653552993631835, "coord": [48.845082316255095, 2.653552993631835], "stop_id": 5231690, "stop_desc": "24 AVENUE DE LINGENFELD - 77468", "stop_name": "RIVES DE MAUBUEE"}, "geometry": {"type": "Point", "coordinates": [2.653552993631835, 48.845082316255095]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0260ac876055e3633cd2c8c6b497be98c181d5c6", "fields": {"departement": "77", "stop_lat": 48.84220830914811, "code_postal": "77468", "stop_lon": 2.6561634428593592, "coord": [48.84220830914811, 2.6561634428593592], "stop_id": 5231691, "stop_desc": "AVENUE DE LINGENFELD - 77468", "stop_name": "SALVADOR ALLENDE"}, "geometry": {"type": "Point", "coordinates": [2.6561634428593592, 48.84220830914811]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "25eea8447ec9fe08b2ef1356cbcd2ac252e525b2", "fields": {"departement": "91", "stop_lat": 48.74282908897804, "code_postal": "91645", "stop_lon": 2.263812739611913, "coord": [48.74282908897804, 2.263812739611913], "stop_id": 5231704, "stop_desc": "FACE 27 BOULEVARD DU MARECHAL FOCH - 91645", "stop_name": "GRANDS CHENES"}, "geometry": {"type": "Point", "coordinates": [2.263812739611913, 48.74282908897804]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7b87b45309bea200af0f47f1abff982d63437404", "fields": {"departement": "91", "stop_lat": 48.74277444859887, "code_postal": "91645", "stop_lon": 2.2626712331596037, "coord": [48.74277444859887, 2.2626712331596037], "stop_id": 5231705, "stop_desc": "6 AVENUE GABRIEL PERI - 91645", "stop_name": "GRANDS CHENES"}, "geometry": {"type": "Point", "coordinates": [2.2626712331596037, 48.74277444859887]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0b3b577f8f41756a525dadfe01aab596a0daba12", "fields": {"departement": "91", "stop_lat": 48.74630205931568, "code_postal": "91645", "stop_lon": 2.2697335974341466, "coord": [48.74630205931568, 2.2697335974341466], "stop_id": 5231707, "stop_desc": "BOULEVARD DU MARECHAL FOCH - 91645", "stop_name": "PARON"}, "geometry": {"type": "Point", "coordinates": [2.2697335974341466, 48.74630205931568]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6ced15cd0da06b62d7f55fa334b6e87ff2cac811", "fields": {"departement": "91", "stop_lat": 48.75199312360041, "code_postal": "91645", "stop_lon": 2.2724855204515526, "coord": [48.75199312360041, 2.2724855204515526], "stop_id": 5231711, "stop_desc": "CARREFOUR DE L'EUROPE - 91645", "stop_name": "LES ANTES"}, "geometry": {"type": "Point", "coordinates": [2.2724855204515526, 48.75199312360041]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "52719244da1c4c24b572a2ecea4c69b7d31a623a", "fields": {"departement": "92", "stop_lat": 48.75491599272716, "code_postal": "92002", "stop_lon": 2.2966238515531257, "coord": [48.75491599272716, 2.2966238515531257], "stop_id": 5231722, "stop_desc": "13 RUE MAURICE LABROUSSE - 92002", "stop_name": "THEATRE-MAIRIE"}, "geometry": {"type": "Point", "coordinates": [2.2966238515531257, 48.75491599272716]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f9eb05a23d2d72eb1a781813de6c46b1999fb5ba", "fields": {"departement": "91", "stop_lat": 48.75594049814434, "code_postal": "91645", "stop_lon": 2.2754304389224944, "coord": [48.75594049814434, 2.2754304389224944], "stop_id": 5231726, "stop_desc": "4 BOULEVARD DU MARECHAL JUIN - 91645", "stop_name": "RUE DES GRILLONS"}, "geometry": {"type": "Point", "coordinates": [2.2754304389224944, 48.75594049814434]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "adbd2765ab081e2e4052635850ad57da928602a6", "fields": {"departement": "92", "stop_lat": 48.73627282979433, "code_postal": "92002", "stop_lon": 2.2922357213290274, "coord": [48.73627282979433, 2.2922357213290274], "stop_id": 5244891, "stop_desc": "2-4 AVENUE DU PRESIDENT J-F KENNEDY - 92002", "stop_name": "KENNEDY - BOURGOGNE"}, "geometry": {"type": "Point", "coordinates": [2.2922357213290274, 48.73627282979433]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "075c07e9321732cda58789f679a4e3e08c508fb8", "fields": {"departement": "92", "stop_lat": 48.74788189955395, "code_postal": "92002", "stop_lon": 2.309296732352314, "coord": [48.74788189955395, 2.309296732352314], "stop_id": 5244898, "stop_desc": "AVENUE ARMAND GUILLEBAUD - 92002", "stop_name": "DESCARTES"}, "geometry": {"type": "Point", "coordinates": [2.309296732352314, 48.74788189955395]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "15f7587d2ba8663ea8342230ece8295ea921d603", "fields": {"departement": "92", "stop_lat": 48.739324111442066, "code_postal": "92002", "stop_lon": 2.30538759434198, "coord": [48.739324111442066, 2.30538759434198], "stop_id": 5244901, "stop_desc": "198 RUE DES RABATS - 92002", "stop_name": "COLLEGE DES RABATS"}, "geometry": {"type": "Point", "coordinates": [2.30538759434198, 48.739324111442066]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e1687f011f6a54e825f3ae338a0bc687ba8163b6", "fields": {"departement": "92", "stop_lat": 48.74041965542758, "code_postal": "92002", "stop_lon": 2.301772072962336, "coord": [48.74041965542758, 2.301772072962336], "stop_id": 5244902, "stop_desc": "4-18 AVENUE DU PRESIDENT KENNEDY - 92002", "stop_name": "PETIT MASSY"}, "geometry": {"type": "Point", "coordinates": [2.301772072962336, 48.74041965542758]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a4f0660104028cbcfe140958165014f72a63d315", "fields": {"departement": "92", "stop_lat": 48.73972316332122, "code_postal": "92002", "stop_lon": 2.2892566374363725, "coord": [48.73972316332122, 2.2892566374363725], "stop_id": 5244905, "stop_desc": "RUE DE MASSY - 92002", "stop_name": "LES BACONNETS-RER"}, "geometry": {"type": "Point", "coordinates": [2.2892566374363725, 48.73972316332122]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "60bc883deefb82b8a3e4ee04fc49d14506fb5df9", "fields": {"departement": "92", "stop_lat": 48.737691166840456, "code_postal": "92002", "stop_lon": 2.287682195244428, "coord": [48.737691166840456, 2.287682195244428], "stop_id": 5244907, "stop_desc": "RUE ROBERT SCHERRER - 92002", "stop_name": "MONT BLANC"}, "geometry": {"type": "Point", "coordinates": [2.287682195244428, 48.737691166840456]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4aaa0411061a4dfd0a6dfdc011cf067977e72f26", "fields": {"departement": "94", "stop_lat": 48.848429694872884, "code_postal": "94080", "stop_lon": 2.4330842564800896, "coord": [48.848429694872884, 2.4330842564800896], "stop_id": 3687692, "stop_desc": "131 RUE DE FONTENAY - 94080", "stop_name": "FRATERNITE"}, "geometry": {"type": "Point", "coordinates": [2.4330842564800896, 48.848429694872884]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3752f97ba21c49c809c6dd2a16243e689c6415d5", "fields": {"departement": "93", "stop_lat": 48.87092577812884, "code_postal": "93048", "stop_lon": 2.469964801821174, "coord": [48.87092577812884, 2.469964801821174], "stop_id": 3687729, "stop_desc": "302 RUE DE ROSNY - 93048", "stop_name": "FORT DE ROSNY"}, "geometry": {"type": "Point", "coordinates": [2.469964801821174, 48.87092577812884]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b0f337571f52911255fe452dd1d00fa90607eec5", "fields": {"departement": "93", "stop_lat": 48.87685606756203, "code_postal": "93048", "stop_lon": 2.454079094687399, "coord": [48.87685606756203, 2.454079094687399], "stop_id": 3688082, "stop_desc": "8 AVENUE DU DOCTEUR FERNAND LAMAZE - 93048", "stop_name": "HOPITAL ANDRE GREGOIRE"}, "geometry": {"type": "Point", "coordinates": [2.454079094687399, 48.87685606756203]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "88a403fd5829f54124af026550c26af38b3b2ab1", "fields": {"departement": "93", "stop_lat": 48.88473959333616, "code_postal": "93063", "stop_lon": 2.4319112813314825, "coord": [48.88473959333616, 2.4319112813314825], "stop_id": 3688102, "stop_desc": "41-43 AVENUE PAUL VAILLANT-COUTURIER - 93063", "stop_name": "VASSOU - LENINE"}, "geometry": {"type": "Point", "coordinates": [2.4319112813314825, 48.88473959333616]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a18e1b0f50558b4bf2aef277bb03764cb24c3e55", "fields": {"departement": "93", "stop_lat": 48.87711963869739, "code_postal": "93048", "stop_lon": 2.4510412007545956, "coord": [48.87711963869739, 2.4510412007545956], "stop_id": 3688083, "stop_desc": "28-30 AVENUE DU DOCTEUR FERNAND LAMAZE - 93048", "stop_name": "FERNAND LAMAZE"}, "geometry": {"type": "Point", "coordinates": [2.4510412007545956, 48.87711963869739]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5952ce5165364aa1706f99968e2a656efe78c5c0", "fields": {"departement": "94", "stop_lat": 48.85306537420076, "code_postal": "94033", "stop_lon": 2.4871610033887768, "coord": [48.85306537420076, 2.4871610033887768], "stop_id": 3688518, "stop_desc": "8 AVENUE DU VAL DE FONTENAY - 94033", "stop_name": "VAL DE FONTENAY-RER"}, "geometry": {"type": "Point", "coordinates": [2.4871610033887768, 48.85306537420076]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6315837d72df42e184394a93e5c653ef4f54b08b", "fields": {"departement": "93", "stop_lat": 48.88238315052524, "code_postal": "93063", "stop_lon": 2.4446208632397446, "coord": [48.88238315052524, 2.4446208632397446], "stop_id": 3688086, "stop_desc": "FACE 54 AVENUE PIERRE KERAUTRET - 93063", "stop_name": "FORT DE NOISY"}, "geometry": {"type": "Point", "coordinates": [2.4446208632397446, 48.88238315052524]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8f304361b5628fbca8330a7f8c59b6a70a3448c1", "fields": {"departement": "93", "stop_lat": 48.8856154663342, "code_postal": "93063", "stop_lon": 2.426584436793504, "coord": [48.8856154663342, 2.426584436793504], "stop_id": 3688101, "stop_desc": "AVENUE PAUL DOUMER - 93063", "stop_name": "FORT DE ROMAINVILLE"}, "geometry": {"type": "Point", "coordinates": [2.426584436793504, 48.8856154663342]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2f1bae9b354b844d15be96e829d49aefe5176c79", "fields": {"departement": "93", "stop_lat": 48.87358488201373, "code_postal": "93048", "stop_lon": 2.45388097963372, "coord": [48.87358488201373, 2.45388097963372], "stop_id": 3688111, "stop_desc": "147 BOULEVARD ARISTIDE BRIAND - 93048", "stop_name": "SAINT-DENIS"}, "geometry": {"type": "Point", "coordinates": [2.45388097963372, 48.87358488201373]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "72c3fcec8a65481df167659415ebf7c63e0b2f2e", "fields": {"departement": "93", "stop_lat": 48.88074942091883, "code_postal": "93045", "stop_lon": 2.419585680699672, "coord": [48.88074942091883, 2.419585680699672], "stop_id": 3688099, "stop_desc": "158 RUE DE PARIS - 93045", "stop_name": "PAUL DE KOCK"}, "geometry": {"type": "Point", "coordinates": [2.419585680699672, 48.88074942091883]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a84dcd74e68af8050450eaa047363a88cf15ea94", "fields": {"departement": "94", "stop_lat": 48.85624422313098, "code_postal": "94033", "stop_lon": 2.4820899197772075, "coord": [48.85624422313098, 2.4820899197772075], "stop_id": 3688524, "stop_desc": "14 AV CHARLES GARCIA - 94033", "stop_name": "JEAN MACE"}, "geometry": {"type": "Point", "coordinates": [2.4820899197772075, 48.85624422313098]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "824bbd46cb564c89e56e8c11d3712584b36e0e01", "fields": {"departement": "93", "stop_lat": 48.882517260193715, "code_postal": "93045", "stop_lon": 2.423335890997198, "coord": [48.882517260193715, 2.423335890997198], "stop_id": 3688091, "stop_desc": "3-5 RUE DES SABLONS - 93045", "stop_name": "SABLONS"}, "geometry": {"type": "Point", "coordinates": [2.423335890997198, 48.882517260193715]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "51decd53e0e7a2c8332ded2b32925105a59ec7f5", "fields": {"departement": "93", "stop_lat": 48.88592501190064, "code_postal": "93045", "stop_lon": 2.421106588876464, "coord": [48.88592501190064, 2.421106588876464], "stop_id": 3690235, "stop_desc": "RUE DU PRESIDENT ROBERT SCHUMAN - 93045", "stop_name": "RUE DU PRESIDENT SCHUMAN"}, "geometry": {"type": "Point", "coordinates": [2.421106588876464, 48.88592501190064]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d3d9a9a9fef1bc0565177d1f749659febe327b7f", "fields": {"departement": "75", "stop_lat": 48.84752230352113, "code_postal": "75120", "stop_lon": 2.406677811879984, "coord": [48.84752230352113, 2.406677811879984], "stop_id": 3690068, "stop_desc": "73 COURS DE VINCENNES - 75120", "stop_name": "PYRENEES - DOCTEUR NETTER"}, "geometry": {"type": "Point", "coordinates": [2.406677811879984, 48.84752230352113]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2b799fa04487b891587dfaed82fb5acba0fee900", "fields": {"departement": "93", "stop_lat": 48.900898648108544, "code_postal": "93008", "stop_lon": 2.442491777859412, "coord": [48.900898648108544, 2.442491777859412], "stop_id": 3689915, "stop_desc": "AVENUE DU PRESIDENT SALVADOR ALLENDE - 93008", "stop_name": "JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.442491777859412, 48.900898648108544]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ce9122d02397b02b03662d8f395d6da6b3fdcb36", "fields": {"departement": "75", "stop_lat": 48.864313647919055, "code_postal": "75120", "stop_lon": 2.4016873474342844, "coord": [48.864313647919055, 2.4016873474342844], "stop_id": 3690052, "stop_desc": "25 RUE DE LA COUR DES NOUES - 75120", "stop_name": "COUR DES NOUES"}, "geometry": {"type": "Point", "coordinates": [2.4016873474342844, 48.864313647919055]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "057c7fc16e2d1a9a8393363d1a19bcb92bc98dde", "fields": {"departement": "93", "stop_lat": 48.87632896068022, "code_postal": "93063", "stop_lon": 2.4409703710483925, "coord": [48.87632896068022, 2.4409703710483925], "stop_id": 3689901, "stop_desc": "12 BOULEVARD EDOUARD BRANLY - 93063", "stop_name": "ALEXANDRE DUMAS"}, "geometry": {"type": "Point", "coordinates": [2.4409703710483925, 48.87632896068022]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cd6e63c0f5c79d54318a16d3f9f59a7cb00bb9cc", "fields": {"departement": "75", "stop_lat": 48.856015852722194, "code_postal": "75120", "stop_lon": 2.4060081834240776, "coord": [48.856015852722194, 2.4060081834240776], "stop_id": 3690060, "stop_desc": "72 RUE DES ORTEAUX - 75120", "stop_name": "ORTEAUX - MARAICHERS"}, "geometry": {"type": "Point", "coordinates": [2.4060081834240776, 48.856015852722194]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ad868ca0d7566b9894da1b5c25e42c5d35455ab2", "fields": {"departement": "93", "stop_lat": 48.86750232166612, "code_postal": "93048", "stop_lon": 2.442206029610474, "coord": [48.86750232166612, 2.442206029610474], "stop_id": 3689896, "stop_desc": "80 BOULEVARD HENRI BARBUSSE - 93048", "stop_name": "VICTOR BEAUSSE"}, "geometry": {"type": "Point", "coordinates": [2.442206029610474, 48.86750232166612]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b40331ddba845226fa652c3a64b9c74100bba160", "fields": {"departement": "93", "stop_lat": 48.87497195165903, "code_postal": "93063", "stop_lon": 2.44088590669376, "coord": [48.87497195165903, 2.44088590669376], "stop_id": 3689900, "stop_desc": "BOULEVARD EDOUARD BRANLY - 93063", "stop_name": "ALEXANDRE DUMAS"}, "geometry": {"type": "Point", "coordinates": [2.44088590669376, 48.87497195165903]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8e5f8b19f3373a5178fb9d7ab8d6de70b72e84b3", "fields": {"departement": "75", "stop_lat": 48.85770605116422, "code_postal": "75120", "stop_lon": 2.4050297555951956, "coord": [48.85770605116422, 2.4050297555951956], "stop_id": 3690058, "stop_desc": "3-7 RUE ALBERT MARQUET - 75120", "stop_name": "ALBERT MARQUET"}, "geometry": {"type": "Point", "coordinates": [2.4050297555951956, 48.85770605116422]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5a83b4cf452e890a884a6cd26402229fcd6bbedf", "fields": {"departement": "93", "stop_lat": 48.89802306132276, "code_postal": "93053", "stop_lon": 2.44215879411988, "coord": [48.89802306132276, 2.44215879411988], "stop_id": 3688574, "stop_desc": "121 RUE DU PARC - 93053", "stop_name": "LA FOLIE"}, "geometry": {"type": "Point", "coordinates": [2.44215879411988, 48.89802306132276]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c32549be2d75e35a17bdce464e5b63e02438ae74", "fields": {"departement": "94", "stop_lat": 48.85925724338836, "code_postal": "94033", "stop_lon": 2.4802459027075754, "coord": [48.85925724338836, 2.4802459027075754], "stop_id": 3690408, "stop_desc": "11 RUE JEAN MOULIN - 94033", "stop_name": "JEAN MOULIN - CIMETIERE DE VINCENNES"}, "geometry": {"type": "Point", "coordinates": [2.4802459027075754, 48.85925724338836]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8e4b807f738033045c815cd6183aee4c0831aa3d", "fields": {"departement": "94", "stop_lat": 48.84819631751823, "code_postal": "94033", "stop_lon": 2.4780229275469767, "coord": [48.84819631751823, 2.4780229275469767], "stop_id": 3690430, "stop_desc": "109 BOULEVARD GALLIENI - 94033", "stop_name": "CIMETIERE DE FONTENAY-SOUS-BOIS"}, "geometry": {"type": "Point", "coordinates": [2.4780229275469767, 48.84819631751823]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "66da3a49c82bec82a22aaa417265c026ea8c223c", "fields": {"departement": "94", "stop_lat": 48.85390043311673, "code_postal": "94033", "stop_lon": 2.4877762906555043, "coord": [48.85390043311673, 2.4877762906555043], "stop_id": 3690419, "stop_desc": "AVENUE DU VAL DE FONTENAY - 94033", "stop_name": "VAL-DE-FONTENAY RER"}, "geometry": {"type": "Point", "coordinates": [2.4877762906555043, 48.85390043311673]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "50f58400888080f983166f538c5cbea30648a913", "fields": {"departement": "94", "stop_lat": 48.85646931196126, "code_postal": "94033", "stop_lon": 2.47415003690013, "coord": [48.85646931196126, 2.47415003690013], "stop_id": 3690409, "stop_desc": "13 RUE JEAN PIERRE TIMBAUD - 94033", "stop_name": "AIMEE MATTERRAZ"}, "geometry": {"type": "Point", "coordinates": [2.47415003690013, 48.85646931196126]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "55fc01a1611edf1467e63e09bbe3a5e63aba535e", "fields": {"departement": "94", "stop_lat": 48.85341711061478, "code_postal": "94033", "stop_lon": 2.4627834982902463, "coord": [48.85341711061478, 2.4627834982902463], "stop_id": 3690394, "stop_desc": "155-157 R DES MOULINS - 94033", "stop_name": "EUGENE HERICOURT"}, "geometry": {"type": "Point", "coordinates": [2.4627834982902463, 48.85341711061478]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bfae47f48fe5b8012b2c3f5add6117ca7d85c122", "fields": {"departement": "94", "stop_lat": 48.855186048482445, "code_postal": "94033", "stop_lon": 2.4874531476263697, "coord": [48.855186048482445, 2.4874531476263697], "stop_id": 3690417, "stop_desc": "14 AVENUE DES OLYMPIADES - 94033", "stop_name": "PABLO PICASSO"}, "geometry": {"type": "Point", "coordinates": [2.4874531476263697, 48.855186048482445]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8f9a427ff2cb77efac02ccf779664320242107d9", "fields": {"departement": "94", "stop_lat": 48.851882894083694, "code_postal": "94033", "stop_lon": 2.451217357977865, "coord": [48.851882894083694, 2.451217357977865], "stop_id": 3690388, "stop_desc": "70 AVENUE DE STALINGRAD - 94033", "stop_name": "HECTOR MALOT"}, "geometry": {"type": "Point", "coordinates": [2.451217357977865, 48.851882894083694]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c5b104880f6de1822fab6cf810a9eca581cc1b3b", "fields": {"departement": "94", "stop_lat": 48.854082291262344, "code_postal": "94033", "stop_lon": 2.4709431635752845, "coord": [48.854082291262344, 2.4709431635752845], "stop_id": 3690403, "stop_desc": "FACE 40 RUE ANATOLE FRANCE - 94033", "stop_name": "VERDUN"}, "geometry": {"type": "Point", "coordinates": [2.4709431635752845, 48.854082291262344]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f1ec2c25df91de9c2d00dea6416b727a097a3772", "fields": {"departement": "94", "stop_lat": 48.85510253831453, "code_postal": "94033", "stop_lon": 2.4581704910146134, "coord": [48.85510253831453, 2.4581704910146134], "stop_id": 3690393, "stop_desc": "95 R DANTON - 94033", "stop_name": "EDOUARD MAURY"}, "geometry": {"type": "Point", "coordinates": [2.4581704910146134, 48.85510253831453]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b70024f6aa78f4df0a6d222e2e01f50f03269b24", "fields": {"departement": "94", "stop_lat": 48.857533865512345, "code_postal": "94033", "stop_lon": 2.4857846415012927, "coord": [48.857533865512345, 2.4857846415012927], "stop_id": 3690416, "stop_desc": "FACE 18 RUE JEAN ZAY - 94033", "stop_name": "JEAN ZAY"}, "geometry": {"type": "Point", "coordinates": [2.4857846415012927, 48.857533865512345]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "84fa661b30ac533b176dcb7a2638ded10b74c339", "fields": {"departement": "94", "stop_lat": 48.84617823330674, "code_postal": "94033", "stop_lon": 2.4579045761282967, "coord": [48.84617823330674, 2.4579045761282967], "stop_id": 3690383, "stop_desc": "FACE 87BIS RUE MARCEL ET JACQUES GAUCHER - 94033", "stop_name": "JEAN-JACQUES ROUSSEAU"}, "geometry": {"type": "Point", "coordinates": [2.4579045761282967, 48.84617823330674]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9f14d356790239fabc72a2eb534e48375036131a", "fields": {"departement": "94", "stop_lat": 48.85228075608887, "code_postal": "94033", "stop_lon": 2.489296917423076, "coord": [48.85228075608887, 2.489296917423076], "stop_id": 3690367, "stop_desc": "AVENUE LOUISON BOBET - 94033", "stop_name": "VAL DE FONTENAY RER - LOUISON BOBET"}, "geometry": {"type": "Point", "coordinates": [2.489296917423076, 48.85228075608887]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "02fa57b35d089c8875e1ff2cdd930767328bd793", "fields": {"departement": "94", "stop_lat": 48.849665220055705, "code_postal": "94033", "stop_lon": 2.47464957520262, "coord": [48.849665220055705, 2.47464957520262], "stop_id": 3690344, "stop_desc": "FACE 23 RUE GUERIN LEROUX - 94033", "stop_name": "HOTEL DE VILLE DE FONTENAY"}, "geometry": {"type": "Point", "coordinates": [2.47464957520262, 48.849665220055705]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c1d27d3206d9ecc030853ed21dd182cd082b2d54", "fields": {"departement": "94", "stop_lat": 48.84658036308523, "code_postal": "94033", "stop_lon": 2.4764933833473752, "coord": [48.84658036308523, 2.4764933833473752], "stop_id": 3690377, "stop_desc": "FACE 4 RUE DE LA RESISTANCE - 94033", "stop_name": "MAISON DU CITOYEN"}, "geometry": {"type": "Point", "coordinates": [2.4764933833473752, 48.84658036308523]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0ea9084930c55a5dc57ecb4dadd63d9335200bc5", "fields": {"departement": "94", "stop_lat": 48.852612866371096, "code_postal": "94033", "stop_lon": 2.4491216254257, "coord": [48.852612866371096, 2.4491216254257], "stop_id": 3690330, "stop_desc": "59 BIS CARREFOUR DES PARAPLUIES - 94033", "stop_name": "LES PARAPLUIES"}, "geometry": {"type": "Point", "coordinates": [2.4491216254257, 48.852612866371096]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a9dae5ac95f29691c4a52bacb62e8af298176ede", "fields": {"departement": "94", "stop_lat": 48.852612866371096, "code_postal": "94033", "stop_lon": 2.4491216254257, "coord": [48.852612866371096, 2.4491216254257], "stop_id": 3690386, "stop_desc": "59 BIS CARREFOUR DES PARAPLUIES - 94033", "stop_name": "LES PARAPLUIES"}, "geometry": {"type": "Point", "coordinates": [2.4491216254257, 48.852612866371096]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "259194ae2153a84693a73372d7ae38d82d555e02", "fields": {"departement": "94", "stop_lat": 48.85530369052728, "code_postal": "94033", "stop_lon": 2.4868133584133694, "coord": [48.85530369052728, 2.4868133584133694], "stop_id": 3690364, "stop_desc": "FACE 14 AVENUE DES OLYMPIADES - 94033", "stop_name": "PABLO PICASSO"}, "geometry": {"type": "Point", "coordinates": [2.4868133584133694, 48.85530369052728]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1c11fb8731f1c44e5bf6a42fd87458c71382132f", "fields": {"departement": "94", "stop_lat": 48.851882894083694, "code_postal": "94033", "stop_lon": 2.451217357977865, "coord": [48.851882894083694, 2.451217357977865], "stop_id": 3690332, "stop_desc": "70 AVENUE DE STALINGRAD - 94033", "stop_name": "HECTOR MALOT"}, "geometry": {"type": "Point", "coordinates": [2.451217357977865, 48.851882894083694]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7139efdc79eb8f2e498898c89dfcafbde7359e7c", "fields": {"departement": "94", "stop_lat": 48.85812367901838, "code_postal": "94033", "stop_lon": 2.495375181556799, "coord": [48.85812367901838, 2.495375181556799], "stop_id": 3690372, "stop_desc": "RUE DE LA PRAIRIE - 94033", "stop_name": "LES ALOUETTES"}, "geometry": {"type": "Point", "coordinates": [2.495375181556799, 48.85812367901838]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "80083a7ec3ffc389dbc1399d1387c13cd1aee3a4", "fields": {"departement": "94", "stop_lat": 48.854206354574735, "code_postal": "94033", "stop_lon": 2.494464352121565, "coord": [48.854206354574735, 2.494464352121565], "stop_id": 3690369, "stop_desc": "14 RUE LOUIS AUROUX - 94033", "stop_name": "LOUIS AUROUX"}, "geometry": {"type": "Point", "coordinates": [2.494464352121565, 48.854206354574735]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cf98b453acf6f5471c5de8fd840a5e07e7619fb6", "fields": {"departement": "93", "stop_lat": 48.90691264968876, "code_postal": "93008", "stop_lon": 2.4296750229551916, "coord": [48.90691264968876, 2.4296750229551916], "stop_id": 3708457, "stop_desc": "FACE 140 RUE DE LA REPUBLIQUE - 93008", "stop_name": "LYCEE ANDRE SABATIER"}, "geometry": {"type": "Point", "coordinates": [2.4296750229551916, 48.90691264968876]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4b149f1bd778466f53fbb5b8a5f560c8b68e641b", "fields": {"departement": "93", "stop_lat": 48.914227247147316, "code_postal": "93001", "stop_lon": 2.404026516251405, "coord": [48.914227247147316, 2.404026516251405], "stop_id": 3708446, "stop_desc": "AVENUE JEAN JAURES - 93001", "stop_name": "FORT D'AUBERVILLIERS-METRO"}, "geometry": {"type": "Point", "coordinates": [2.404026516251405, 48.914227247147316]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a880194e9d8de92daef1cf0660087ca4fdbc3399", "fields": {"departement": "94", "stop_lat": 48.84218500063309, "code_postal": "94015", "stop_lon": 2.5229405575565873, "coord": [48.84218500063309, 2.5229405575565873], "stop_id": 3708145, "stop_desc": "FACE 23 BOULEVARD DU GENERAL GALLIENI - 94015", "stop_name": "PLACE CARNOT"}, "geometry": {"type": "Point", "coordinates": [2.5229405575565873, 48.84218500063309]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a27076961869530d93c3f0a64853ccb920c2e612", "fields": {"departement": "94", "stop_lat": 48.834263400251615, "code_postal": "94058", "stop_lon": 2.5134366743240233, "coord": [48.834263400251615, 2.5134366743240233], "stop_id": 3708140, "stop_desc": "FACE 191 AV PIERRE BROSSOLETTE - 94058", "stop_name": "MAIL MEYER"}, "geometry": {"type": "Point", "coordinates": [2.5134366743240233, 48.834263400251615]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c93c3ee4834d5425b24cfff540a99e5c74780af4", "fields": {"departement": "93", "stop_lat": 48.906426065874264, "code_postal": "93008", "stop_lon": 2.469237737369291, "coord": [48.906426065874264, 2.469237737369291], "stop_id": 3708519, "stop_desc": "15 AVENUE EDOUARD VAILLANT - 93008", "stop_name": "PONT DE BONDY - ANATOLE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.469237737369291, 48.906426065874264]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6bbc1e7f92e5cd933ce605d2661c8ada324a6dcd", "fields": {"departement": "93", "stop_lat": 48.914227247147316, "code_postal": "93001", "stop_lon": 2.404026516251405, "coord": [48.914227247147316, 2.404026516251405], "stop_id": 3708492, "stop_desc": "AVENUE JEAN JAURES - 93001", "stop_name": "FORT D'AUBERVILLIERS-METRO"}, "geometry": {"type": "Point", "coordinates": [2.404026516251405, 48.914227247147316]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9d5b925d8033babaf784f604c960091760dd7ada", "fields": {"departement": "93", "stop_lat": 48.91022964359314, "code_postal": "93008", "stop_lon": 2.41608763544949, "coord": [48.91022964359314, 2.41608763544949], "stop_id": 3708500, "stop_desc": "AVENUE DE L'ILLUSTRATION - 93008", "stop_name": "CITE DU PONT DE PIERRE"}, "geometry": {"type": "Point", "coordinates": [2.41608763544949, 48.91022964359314]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "91dbcc317640c9e51aec3ce35a6338c9f61a49e8", "fields": {"departement": "93", "stop_lat": 48.90759726631874, "code_postal": "93008", "stop_lon": 2.4488177035089067, "coord": [48.90759726631874, 2.4488177035089067], "stop_id": 3708511, "stop_desc": "PISTE GARE ROUTIERE - 93008", "stop_name": "BOBIGNY - PABLO PICASSO"}, "geometry": {"type": "Point", "coordinates": [2.4488177035089067, 48.90759726631874]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "af12360b3592746dfdfe69d370bd52c3f6fa0223", "fields": {"departement": "93", "stop_lat": 48.90653616722905, "code_postal": "93008", "stop_lon": 2.449483447525252, "coord": [48.90653616722905, 2.449483447525252], "stop_id": 3708510, "stop_desc": "PISTE GARE ROUTIERE - 93008", "stop_name": "BOBIGNY - PABLO PICASSO"}, "geometry": {"type": "Point", "coordinates": [2.449483447525252, 48.90653616722905]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "73145327697aa9456b5ad440ddf9efff33d3cd68", "fields": {"departement": "93", "stop_lat": 48.90925885871582, "code_postal": "93008", "stop_lon": 2.46754070853601, "coord": [48.90925885871582, 2.46754070853601], "stop_id": 3708521, "stop_desc": "FACE 56 AVENUE EDOUARD VAILLANT - 93008", "stop_name": "AVENUE MARCELLE"}, "geometry": {"type": "Point", "coordinates": [2.46754070853601, 48.90925885871582]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6d2179756c980391f4314c98ba364db6c92d12e6", "fields": {"departement": "93", "stop_lat": 48.90657485833315, "code_postal": "93008", "stop_lon": 2.4559320596369205, "coord": [48.90657485833315, 2.4559320596369205], "stop_id": 3708512, "stop_desc": "302 AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "LAMARTINE"}, "geometry": {"type": "Point", "coordinates": [2.4559320596369205, 48.90657485833315]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0576f52cd7ccf09b46b720f72ddbbe0e516b3218", "fields": {"departement": "93", "stop_lat": 48.90934329593462, "code_postal": "93008", "stop_lon": 2.472421887673177, "coord": [48.90934329593462, 2.472421887673177], "stop_id": 3708522, "stop_desc": "RUE DE VARSOVIE - 93008", "stop_name": "PLACE DE L'EUROPE"}, "geometry": {"type": "Point", "coordinates": [2.472421887673177, 48.90934329593462]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0eadc7ba158b87a707c8c09f4fa77ebc56e72a1a", "fields": {"departement": "93", "stop_lat": 48.90759788133574, "code_postal": "93008", "stop_lon": 2.4267723064132727, "coord": [48.90759788133574, 2.4267723064132727], "stop_id": 3708489, "stop_desc": "164 RUE DE LA REPUBLIQUE - 93008", "stop_name": "REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.4267723064132727, 48.90759788133574]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c0c07e515be792a1ea911eb346820c67b7a850e6", "fields": {"departement": "93", "stop_lat": 48.91695910540304, "code_postal": "93010", "stop_lon": 2.484400525396555, "coord": [48.91695910540304, 2.484400525396555], "stop_id": 3708481, "stop_desc": "AV HENRI VARAGNAT - 93010", "stop_name": "RABELAIS"}, "geometry": {"type": "Point", "coordinates": [2.484400525396555, 48.91695910540304]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dc0ed59beaa50cb86931b06069e5e04380cf82f5", "fields": {"departement": "93", "stop_lat": 48.912236663887136, "code_postal": "93010", "stop_lon": 2.4805148428665595, "coord": [48.912236663887136, 2.4805148428665595], "stop_id": 3708525, "stop_desc": "AVENUE JEAN MOULIN - 93010", "stop_name": "ROUTE D'AULNAY - JEAN MOULIN"}, "geometry": {"type": "Point", "coordinates": [2.4805148428665595, 48.912236663887136]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7a4f50972454e9866c7c6b11fd1ffe42fbcbd61c", "fields": {"departement": "93", "stop_lat": 48.865205487157176, "code_postal": "93049", "stop_lon": 2.514713328014915, "coord": [48.865205487157176, 2.514713328014915], "stop_id": 3715231, "stop_desc": "11-13 RUE ALEXANDRE FLEMING - 93049", "stop_name": "MARCEL DASSAULT"}, "geometry": {"type": "Point", "coordinates": [2.514713328014915, 48.865205487157176]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4a373544978cd40e0483e2e866bfecc8f8bebc10", "fields": {"departement": "93", "stop_lat": 48.90870952071069, "code_postal": "93008", "stop_lon": 2.451083311558328, "coord": [48.90870952071069, 2.451083311558328], "stop_id": 3708537, "stop_desc": "AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "RENE CAMIER"}, "geometry": {"type": "Point", "coordinates": [2.451083311558328, 48.90870952071069]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6b3fec9780b1a176a2a6cd55644d6fdaf55f4826", "fields": {"departement": "93", "stop_lat": 48.86666012662581, "code_postal": "93049", "stop_lon": 2.5094871599325916, "coord": [48.86666012662581, 2.5094871599325916], "stop_id": 3715228, "stop_desc": "RUE DES LOGES D'AVRON - 93049", "stop_name": "RUE DES HERSIERS"}, "geometry": {"type": "Point", "coordinates": [2.5094871599325916, 48.86666012662581]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7a065b7e105c9abee7c4a199028f0f0c05b43f93", "fields": {"departement": "93", "stop_lat": 48.85831643344756, "code_postal": "93050", "stop_lon": 2.5348209878560497, "coord": [48.85831643344756, 2.5348209878560497], "stop_id": 3716664, "stop_desc": "118 AVENUE DU GENERAL DE GAULLE - 93050", "stop_name": "PASTEUR"}, "geometry": {"type": "Point", "coordinates": [2.5348209878560497, 48.85831643344756]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0052f9a43eb06139ee7e9462503f078d8419a2a0", "fields": {"departement": "93", "stop_lat": 48.9136270250163, "code_postal": "93010", "stop_lon": 2.482686671284147, "coord": [48.9136270250163, 2.482686671284147], "stop_id": 3708527, "stop_desc": "AVENUE HENRI VARAGNAT - 93010", "stop_name": "SUZANNE BUISSON"}, "geometry": {"type": "Point", "coordinates": [2.482686671284147, 48.9136270250163]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "88f6c95bc3d14027008ce3c334e510bb50e5042b", "fields": {"departement": "93", "stop_lat": 48.910725212870034, "code_postal": "93008", "stop_lon": 2.4742524960527454, "coord": [48.910725212870034, 2.4742524960527454], "stop_id": 3708534, "stop_desc": "CHEMIN DE GROSLAY - 93008", "stop_name": "ETIENNE DOLET"}, "geometry": {"type": "Point", "coordinates": [2.4742524960527454, 48.910725212870034]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4a889d5c8df06e7f770b8a6c73b384d94364a3a7", "fields": {"departement": "94", "stop_lat": 48.79960320040546, "code_postal": "94019", "stop_lon": 2.5435497977978447, "coord": [48.79960320040546, 2.5435497977978447], "stop_id": 3718094, "stop_desc": "FACE 39 ROUTE DE LA LIBERATION - 94019", "stop_name": "RUE DES FUSILLES DE CHATEAUBRIANT"}, "geometry": {"type": "Point", "coordinates": [2.5435497977978447, 48.79960320040546]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d3fe061d82683185c769b89f55f4171ec3ff31ed", "fields": {"departement": "94", "stop_lat": 48.82194179585436, "code_postal": "94069", "stop_lon": 2.4232218060551216, "coord": [48.82194179585436, 2.4232218060551216], "stop_id": 3724090, "stop_desc": "39 RUE DU VAL D'OSNE - 94069", "stop_name": "HOPITAL NATIONAL DE SAINT-MAURICE"}, "geometry": {"type": "Point", "coordinates": [2.4232218060551216, 48.82194179585436]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e334cdf9bcac58dd2d5972cf79af5a96ba8db0b2", "fields": {"departement": "94", "stop_lat": 48.80654286951804, "code_postal": "94017", "stop_lon": 2.526704679451085, "coord": [48.80654286951804, 2.526704679451085], "stop_id": 3718091, "stop_desc": "FACE 87 AVENUE MARX DORMOY - 94017", "stop_name": "MUSEE DE LA RESISTANCE"}, "geometry": {"type": "Point", "coordinates": [2.526704679451085, 48.80654286951804]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "224e123f41cf4d1c8225982226c3d03e0bb115c3", "fields": {"departement": "94", "stop_lat": 48.806917555441274, "code_postal": "94068", "stop_lon": 2.510867379207914, "coord": [48.806917555441274, 2.510867379207914], "stop_id": 3718081, "stop_desc": "PISTE GARE ROUTIERE - 94068", "stop_name": "CHAMPIGNY - SAINT-MAUR RER"}, "geometry": {"type": "Point", "coordinates": [2.510867379207914, 48.806917555441274]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6182d90f02eb9ec561229ff33049fc021cb5cde8", "fields": {"departement": "94", "stop_lat": 48.81804496236758, "code_postal": "94069", "stop_lon": 2.4300883977837833, "coord": [48.81804496236758, 2.4300883977837833], "stop_id": 3724096, "stop_desc": "57 RUE DU MARECHAL LECLERC - 94069", "stop_name": "HOPITAL ESQUIROL"}, "geometry": {"type": "Point", "coordinates": [2.4300883977837833, 48.81804496236758]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4d2538084da0d1a65a052dffc8fcc97b92fbd583", "fields": {"departement": "94", "stop_lat": 48.81802692471475, "code_postal": "94069", "stop_lon": 2.4410444069161104, "coord": [48.81802692471475, 2.4410444069161104], "stop_id": 3724099, "stop_desc": "98-100 RUE DU MARECHAL LECLERC - 94069", "stop_name": "MARECHAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.4410444069161104, 48.81802692471475]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "be58db96a7faf1d69e2789925ff3c757b860fe91", "fields": {"departement": "94", "stop_lat": 48.81129225052951, "code_postal": "94017", "stop_lon": 2.5559253363655947, "coord": [48.81129225052951, 2.5559253363655947], "stop_id": 3718102, "stop_desc": "FACE 78 RUE DU PLESSIS TREVISE - 94017", "stop_name": "PAUL VENZAC"}, "geometry": {"type": "Point", "coordinates": [2.5559253363655947, 48.81129225052951]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "026faebbddf0808b9b0d8ff81e07016ca123ec3c", "fields": {"departement": "94", "stop_lat": 48.805516067822516, "code_postal": "94019", "stop_lon": 2.53359954975718, "coord": [48.805516067822516, 2.53359954975718], "stop_id": 3718082, "stop_desc": "ROUTE DE LA LIBERATION - 94019", "stop_name": "FORT DE CHAMPIGNY"}, "geometry": {"type": "Point", "coordinates": [2.53359954975718, 48.805516067822516]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7f7edd7cb425a8da80197e109c50628ca77f5eee", "fields": {"departement": "94", "stop_lat": 48.804622389298956, "code_postal": "94017", "stop_lon": 2.546427109100898, "coord": [48.804622389298956, 2.546427109100898], "stop_id": 3718097, "stop_desc": "2 RUE JACQUES SOLOMON - 94017", "stop_name": "CLAUDE BERNARD"}, "geometry": {"type": "Point", "coordinates": [2.546427109100898, 48.804622389298956]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ff976738f3fff331028e1f93f121141536342e30", "fields": {"departement": "94", "stop_lat": 48.808496295953304, "code_postal": "94017", "stop_lon": 2.524765932868587, "coord": [48.808496295953304, 2.524765932868587], "stop_id": 3718111, "stop_desc": "59 AVENUE MARX DORMOY - 94017", "stop_name": "LA CASCADE"}, "geometry": {"type": "Point", "coordinates": [2.524765932868587, 48.808496295953304]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8406303ec4f067456388e1e9c73f197ffdc6aae4", "fields": {"departement": "94", "stop_lat": 48.81197817551925, "code_postal": "94017", "stop_lon": 2.510530485291293, "coord": [48.81197817551925, 2.510530485291293], "stop_id": 3718029, "stop_desc": "FACE 4 BIS RUE ALBERT THOMAS - 94017", "stop_name": "MARCHE DE CHAMPIGNY-SUR-MARNE"}, "geometry": {"type": "Point", "coordinates": [2.510530485291293, 48.81197817551925]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "670e322baad0827e5097f0d35b8a67fbea5fb88c", "fields": {"departement": "94", "stop_lat": 48.81088865939043, "code_postal": "94017", "stop_lon": 2.540219823910816, "coord": [48.81088865939043, 2.540219823910816], "stop_id": 3718013, "stop_desc": "20 R DU BOIS L'ABBE - 94017", "stop_name": "RUE DU BOIS L'ABBE - LOUISE COLLET"}, "geometry": {"type": "Point", "coordinates": [2.540219823910816, 48.81088865939043]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "27cc0a5e5c2201674d67f18799b1c6595c190f7a", "fields": {"departement": "94", "stop_lat": 48.81317916036105, "code_postal": "94017", "stop_lon": 2.5128343715435313, "coord": [48.81317916036105, 2.5128343715435313], "stop_id": 3718026, "stop_desc": "43 RUE LOUIS TALAMONI - 94017", "stop_name": "MAIRIE DE CHAMPIGNY"}, "geometry": {"type": "Point", "coordinates": [2.5128343715435313, 48.81317916036105]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e01acb033c88e52a8cbf23fab8c07917c6177999", "fields": {"departement": "94", "stop_lat": 48.80059300170557, "code_postal": "94019", "stop_lon": 2.5480299257631347, "coord": [48.80059300170557, 2.5480299257631347], "stop_id": 3718062, "stop_desc": "ROUTE DU PLESSIS - 94019", "stop_name": "GROUPE SCOLAIRE ROUSSEAU"}, "geometry": {"type": "Point", "coordinates": [2.5480299257631347, 48.80059300170557]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bd7e05d985460d6c9767b3b395d91ed1ff4f6e15", "fields": {"departement": "94", "stop_lat": 48.8103316422497, "code_postal": "94017", "stop_lon": 2.545293432999597, "coord": [48.8103316422497, 2.545293432999597], "stop_id": 3718009, "stop_desc": "13 R DE L'ABREUVOIR - 94017", "stop_name": "ROND-POINT DU CHATEAU"}, "geometry": {"type": "Point", "coordinates": [2.545293432999597, 48.8103316422497]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7a4ad0bb053a538afc8bca710aa978ff6b1e971f", "fields": {"departement": "94", "stop_lat": 48.812500911822575, "code_postal": "94017", "stop_lon": 2.5156354416957813, "coord": [48.812500911822575, 2.5156354416957813], "stop_id": 3718024, "stop_desc": "1 AVENUE MARX DORMOY - 94017", "stop_name": "RUE DU MONUMENT"}, "geometry": {"type": "Point", "coordinates": [2.5156354416957813, 48.812500911822575]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0c00066be4581e5fba8230f721019e055d767423", "fields": {"departement": "94", "stop_lat": 48.8062135699128, "code_postal": "94059", "stop_lon": 2.574967266918578, "coord": [48.8062135699128, 2.574967266918578], "stop_id": 3718039, "stop_desc": "51 AVENUE JEAN KIFFER - 94059", "stop_name": "AVENUE ARDOUIN"}, "geometry": {"type": "Point", "coordinates": [2.574967266918578, 48.8062135699128]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f50b6851a81709324112a2888c268d8e76e1f5ba", "fields": {"departement": "94", "stop_lat": 48.805167857355826, "code_postal": "94059", "stop_lon": 2.585303550313021, "coord": [48.805167857355826, 2.585303550313021], "stop_id": 3718034, "stop_desc": "1 AVENUE GONZALVE - 94059", "stop_name": "PLACE DE VERDUN"}, "geometry": {"type": "Point", "coordinates": [2.585303550313021, 48.805167857355826]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d754605b216a939c0aa83476c31e83ecc6edfe00", "fields": {"departement": "94", "stop_lat": 48.81025489203839, "code_postal": "94017", "stop_lon": 2.520934834992837, "coord": [48.81025489203839, 2.520934834992837], "stop_id": 3718023, "stop_desc": "38-40 AVENUE MARX DORMOY - 94017", "stop_name": "MARTELET"}, "geometry": {"type": "Point", "coordinates": [2.520934834992837, 48.81025489203839]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0ab82da602c6b150519cbbe16a55fc4b35ce3a76", "fields": {"departement": "94", "stop_lat": 48.802865021891, "code_postal": "94019", "stop_lon": 2.5540938436982032, "coord": [48.802865021891, 2.5540938436982032], "stop_id": 3718048, "stop_desc": "RUE RABELAIS - 94019", "stop_name": "JEAN MERMOZ"}, "geometry": {"type": "Point", "coordinates": [2.5540938436982032, 48.802865021891]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6e0d33996ae8b8fe2b46de01f410ca3f493caf0b", "fields": {"departement": "94", "stop_lat": 48.76329807704591, "code_postal": "94021", "stop_lon": 2.357920055738764, "coord": [48.76329807704591, 2.357920055738764], "stop_id": 3730059, "stop_desc": "AVENUE DE LA CITE - 94021", "stop_name": "MARCHE INTERNATIONAL DE RUNGIS"}, "geometry": {"type": "Point", "coordinates": [2.357920055738764, 48.76329807704591]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bd959619626e04e6b868dd3796bd14aed60a337d", "fields": {"departement": "92", "stop_lat": 48.82055645343307, "code_postal": "92046", "stop_lon": 2.301662850605415, "coord": [48.82055645343307, 2.301662850605415], "stop_id": 3729707, "stop_desc": "PL DU 11 NOVEMBRE - 92046", "stop_name": "HOTEL DE VILLE DE MALAKOFF."}, "geometry": {"type": "Point", "coordinates": [2.301662850605415, 48.82055645343307]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c625516fa25ea034a7d80073905a51e93de92b40", "fields": {"departement": "92", "stop_lat": 48.82063740758417, "code_postal": "92046", "stop_lon": 2.3018805657242396, "coord": [48.82063740758417, 2.3018805657242396], "stop_id": 3729697, "stop_desc": "PL DU 11 NOVEMBRE - 92046", "stop_name": "HOTEL DE VILLE DE MALAKOFF"}, "geometry": {"type": "Point", "coordinates": [2.3018805657242396, 48.82063740758417]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6b6b68f82d256e565a1b39620d957e6b91f58c23", "fields": {"departement": "92", "stop_lat": 48.76304499124328, "code_postal": "92002", "stop_lon": 2.309601273025239, "coord": [48.76304499124328, 2.309601273025239], "stop_id": 3730043, "stop_desc": "2 AVENUE DU DOCTEUR TENINE - 92002", "stop_name": "BERNY-RAYMOND ARON"}, "geometry": {"type": "Point", "coordinates": [2.309601273025239, 48.76304499124328]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "74e49ff52c8a0e6d1ce14b190666689ed3095336", "fields": {"departement": "94", "stop_lat": 48.818334222865474, "code_postal": "94069", "stop_lon": 2.4390579510666335, "coord": [48.818334222865474, 2.4390579510666335], "stop_id": 3724100, "stop_desc": "FACE 94 RUE DE MARECHAL LECLERC - 94069", "stop_name": "MARECHAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.4390579510666335, 48.818334222865474]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6096eabe977fa081e299cd4a29fcdd831804ba13", "fields": {"departement": "94", "stop_lat": 48.76044018922145, "code_postal": "94034", "stop_lon": 2.3185888854725127, "coord": [48.76044018922145, 2.3185888854725127], "stop_id": 3730045, "stop_desc": "AVENUE DE LA DIVISION LECLERC - 94034", "stop_name": "DOCTEUR TENINE"}, "geometry": {"type": "Point", "coordinates": [2.3185888854725127, 48.76044018922145]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f3178b402566b80a612ce9645c3d28aee011d6f0", "fields": {"departement": "94", "stop_lat": 48.754212424595146, "code_postal": "94034", "stop_lon": 2.326950980970579, "coord": [48.754212424595146, 2.326950980970579], "stop_id": 3730052, "stop_desc": "FACE 18 AVENUE EDOUARD HERRIOT - 94034", "stop_name": "MONTJEAN"}, "geometry": {"type": "Point", "coordinates": [2.326950980970579, 48.754212424595146]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "995daa38459fe390e270d0e3a2f8a7932b3df7bd", "fields": {"departement": "94", "stop_lat": 48.81477725565159, "code_postal": "94069", "stop_lon": 2.4561032273681587, "coord": [48.81477725565159, 2.4561032273681587], "stop_id": 3724110, "stop_desc": "PLACE DE L'ECLUSE - 94069", "stop_name": "PLACE DE L'ECLUSE"}, "geometry": {"type": "Point", "coordinates": [2.4561032273681587, 48.81477725565159]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "af036ea97a699feb24d177aec06b62a997f3d2ce", "fields": {"departement": "92", "stop_lat": 48.8179051379773, "code_postal": "92046", "stop_lon": 2.3018552078239987, "coord": [48.8179051379773, 2.3018552078239987], "stop_id": 3729706, "stop_desc": "1 R GUY MOQUET - 92046", "stop_name": "AUGUSTIN DUMONT"}, "geometry": {"type": "Point", "coordinates": [2.3018552078239987, 48.8179051379773]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7a46fd1362407eb1713c40a204cca4fddc1cfd10", "fields": {"departement": "94", "stop_lat": 48.75911678578232, "code_postal": "94021", "stop_lon": 2.366564526644527, "coord": [48.75911678578232, 2.366564526644527], "stop_id": 3730061, "stop_desc": "RUE DE THIAIS - 94021", "stop_name": "PORTE DE THIAIS"}, "geometry": {"type": "Point", "coordinates": [2.366564526644527, 48.75911678578232]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d3a941c13d1f1b8a522ca08c24a436f0f8bdc8d9", "fields": {"departement": "94", "stop_lat": 48.757356640926375, "code_postal": "94073", "stop_lon": 2.388558772880809, "coord": [48.757356640926375, 2.388558772880809], "stop_id": 3730070, "stop_desc": "AVENUE DE VERSAILLES - 94073", "stop_name": "CARREFOUR DE LA RESISTANCE"}, "geometry": {"type": "Point", "coordinates": [2.388558772880809, 48.757356640926375]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fef9d42d3a207404e96018b790ff7550caeb8f2b", "fields": {"departement": "94", "stop_lat": 48.78142438618897, "code_postal": "94028", "stop_lon": 2.4455410009269434, "coord": [48.78142438618897, 2.4455410009269434], "stop_id": 3730088, "stop_desc": "ROUTE DE CHOISY - 94028", "stop_name": "BASE DE LOISIRS DE CRETEIL"}, "geometry": {"type": "Point", "coordinates": [2.4455410009269434, 48.78142438618897]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b529b8ec6d2cf9f54dcc2d45d2eb50310c3aa035", "fields": {"departement": "94", "stop_lat": 48.76284237079401, "code_postal": "94073", "stop_lon": 2.4009905019262536, "coord": [48.76284237079401, 2.4009905019262536], "stop_id": 3730104, "stop_desc": "FACE 2BIS AVENUE GEORGES HALGOULT - 94073", "stop_name": "RENE PANHARD"}, "geometry": {"type": "Point", "coordinates": [2.4009905019262536, 48.76284237079401]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bb56e62e1bc6e6fe02de3aa36650552d3532f0ae", "fields": {"departement": "94", "stop_lat": 48.769004919799386, "code_postal": "94022", "stop_lon": 2.420795502042092, "coord": [48.769004919799386, 2.420795502042092], "stop_id": 3730083, "stop_desc": "64 AVENUE VICTOR HUGO - 94022", "stop_name": "MARCELLIN BERTHELOT"}, "geometry": {"type": "Point", "coordinates": [2.420795502042092, 48.769004919799386]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5878994ecbcb8cd230d4da13062998a6acd167a7", "fields": {"departement": "92", "stop_lat": 48.818062641326925, "code_postal": "92049", "stop_lon": 2.3257950701996193, "coord": [48.818062641326925, 2.3257950701996193], "stop_id": 3730330, "stop_desc": "51 BIS AVENUE ARISTIDE BRIAND - 92049", "stop_name": "GABRIEL PERI"}, "geometry": {"type": "Point", "coordinates": [2.3257950701996193, 48.818062641326925]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0c74cddc407368d6401990e32f748890650e9380", "fields": {"departement": "94", "stop_lat": 48.765524735623956, "code_postal": "94022", "stop_lon": 2.409844938920653, "coord": [48.765524735623956, 2.409844938920653], "stop_id": 3730078, "stop_desc": "AVENUE JEAN JAURES - 94022", "stop_name": "CHOISY-LE-ROI RER"}, "geometry": {"type": "Point", "coordinates": [2.409844938920653, 48.765524735623956]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eeeda16b468f1235226c0bdd1c49c7490b3b5f8d", "fields": {"departement": "94", "stop_lat": 48.80069437856847, "code_postal": "94068", "stop_lon": 2.4720301880146383, "coord": [48.80069437856847, 2.4720301880146383], "stop_id": 3730099, "stop_desc": "83 RUE DU PONT DE CRETEIL - 94068", "stop_name": "PONT DE CRETEIL"}, "geometry": {"type": "Point", "coordinates": [2.4720301880146383, 48.80069437856847]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2606f2dc9502589f88e7c500a57d94b99f7b5f0f", "fields": {"departement": "75", "stop_lat": 48.87576218699689, "code_postal": "75108", "stop_lon": 2.3236567975351456, "coord": [48.87576218699689, 2.3236567975351456], "stop_id": 3765153, "stop_desc": "17 RUE DE ROME - 75108", "stop_name": "GARE SAINT-LAZARE"}, "geometry": {"type": "Point", "coordinates": [2.3236567975351456, 48.87576218699689]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c6544a714f1e08db498f1440b0d0a2249e1d61e6", "fields": {"departement": "75", "stop_lat": 48.8789345252965, "code_postal": "75108", "stop_lon": 2.3222252388140916, "coord": [48.8789345252965, 2.3222252388140916], "stop_id": 3765154, "stop_desc": "52 RUE DE ROME - 75108", "stop_name": "EUROPE"}, "geometry": {"type": "Point", "coordinates": [2.3222252388140916, 48.8789345252965]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c625126925717c8f66fdc6d3968960cc01d7e182", "fields": {"departement": "75", "stop_lat": 48.88554837882155, "code_postal": "75117", "stop_lon": 2.31708567562063, "coord": [48.88554837882155, 2.31708567562063], "stop_id": 3765157, "stop_desc": "FACE 131 R DE ROME - 75117", "stop_name": "LEGENDRE"}, "geometry": {"type": "Point", "coordinates": [2.31708567562063, 48.88554837882155]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1317f2eaa81f04139fd5ff3ea423cb68aeb9e8a1", "fields": {"departement": "75", "stop_lat": 48.88782886483789, "code_postal": "75117", "stop_lon": 2.306481965220348, "coord": [48.88782886483789, 2.306481965220348], "stop_id": 3765163, "stop_desc": "36 BOULEVARD PEREIRE - 75117", "stop_name": "PEREIRE - TOCQUEVILLE"}, "geometry": {"type": "Point", "coordinates": [2.306481965220348, 48.88782886483789]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5a74c926fa9cd4df724f721998c8c45c8354f785", "fields": {"departement": "75", "stop_lat": 48.88741561362886, "code_postal": "75117", "stop_lon": 2.3071091077074306, "coord": [48.88741561362886, 2.3071091077074306], "stop_id": 3765164, "stop_desc": "55 BIS BOULEVARD PEREIRE - 75117", "stop_name": "PEREIRE - TOCQUEVILLE"}, "geometry": {"type": "Point", "coordinates": [2.3071091077074306, 48.88741561362886]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "410a51be39da4c4d312f0264b172692a688ee1e7", "fields": {"departement": "75", "stop_lat": 48.888358507928764, "code_postal": "75117", "stop_lon": 2.3042329570350892, "coord": [48.888358507928764, 2.3042329570350892], "stop_id": 3765166, "stop_desc": "195 BOULEVARD MALESHERBES - 75117", "stop_name": "JULIETTE LAMBER"}, "geometry": {"type": "Point", "coordinates": [2.3042329570350892, 48.888358507928764]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "991342c5df517cf74a09baf19bd7f4d6ac0b8233", "fields": {"departement": "92", "stop_lat": 48.89390208020657, "code_postal": "92044", "stop_lon": 2.29914547040116, "coord": [48.89390208020657, 2.29914547040116], "stop_id": 3765169, "stop_desc": "32 RUE VICTOR HUGO - 92044", "stop_name": "ALSACE"}, "geometry": {"type": "Point", "coordinates": [2.29914547040116, 48.89390208020657]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8aeaf5757cc42ace6a708873cea54ed1ad64e097", "fields": {"departement": "92", "stop_lat": 48.89524957348329, "code_postal": "92044", "stop_lon": 2.2973725457866454, "coord": [48.89524957348329, 2.2973725457866454], "stop_id": 3765171, "stop_desc": "70 RUE VICTOR HUGO - 92044", "stop_name": "VICTOR HUGO - JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.2973725457866454, 48.89524957348329]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "16e6eb90c666e270668bbda3c94ddcdc07a4ce4a", "fields": {"departement": "92", "stop_lat": 48.894584074713464, "code_postal": "92044", "stop_lon": 2.296050939691295, "coord": [48.894584074713464, 2.296050939691295], "stop_id": 3765174, "stop_desc": "98 RUE JEAN JAURES - 92044", "stop_name": "TREZEL"}, "geometry": {"type": "Point", "coordinates": [2.296050939691295, 48.894584074713464]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "56c46c4b9492cda1f6d85fe6f70fb3aa1b558afd", "fields": {"departement": "92", "stop_lat": 48.8942862056984, "code_postal": "92044", "stop_lon": 2.2924664847616247, "coord": [48.8942862056984, 2.2924664847616247], "stop_id": 3765175, "stop_desc": "99 RUE ARISTIDE BRIAND - 92044", "stop_name": "MARJOLIN"}, "geometry": {"type": "Point", "coordinates": [2.2924664847616247, 48.8942862056984]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9feac19e107b48888534beb44810be98bc4ca351", "fields": {"departement": "92", "stop_lat": 48.8954053454185, "code_postal": "92044", "stop_lon": 2.282297312528385, "coord": [48.8954053454185, 2.282297312528385], "stop_id": 3765187, "stop_desc": "32 RUE PAUL VAILLANT COUTURIER - 92044", "stop_name": "ANATOLE FRANCE - PAUL VAILLANT-COUTURIER"}, "geometry": {"type": "Point", "coordinates": [2.282297312528385, 48.8954053454185]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3ab081d90b8d32abc41037ce7aa645d6e2aa5e52", "fields": {"departement": "75", "stop_lat": 48.84489707858878, "code_postal": "75105", "stop_lon": 2.3645704396042673, "coord": [48.84489707858878, 2.3645704396042673], "stop_id": 3765196, "stop_desc": "PL VALHUBERT - 75105", "stop_name": "GARE D'AUSTERLITZ"}, "geometry": {"type": "Point", "coordinates": [2.3645704396042673, 48.84489707858878]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "df193c3ca14d445ed95bab91333165ed4eeeae82", "fields": {"departement": "75", "stop_lat": 48.849014689133234, "code_postal": "75105", "stop_lon": 2.357954206837178, "coord": [48.849014689133234, 2.357954206837178], "stop_id": 3765199, "stop_desc": "QUAI SAINT BERNARD - 75105", "stop_name": "UNIVERSITE PARIS VI"}, "geometry": {"type": "Point", "coordinates": [2.357954206837178, 48.849014689133234]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2a1cce2b209ad19ead5563fbdfc975fcdf22f722", "fields": {"departement": "75", "stop_lat": 48.84840468548921, "code_postal": "75105", "stop_lon": 2.349728722188171, "coord": [48.84840468548921, 2.349728722188171], "stop_id": 3765202, "stop_desc": "12 RUE DES ECOLES - 75105", "stop_name": "MONGE - MUTUALITE"}, "geometry": {"type": "Point", "coordinates": [2.349728722188171, 48.84840468548921]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "03b4f74e128d97025770ec018982bf4d7404c39c", "fields": {"departement": "75", "stop_lat": 48.849321725621934, "code_postal": "75105", "stop_lon": 2.3462154498324934, "coord": [48.849321725621934, 2.3462154498324934], "stop_id": 3765203, "stop_desc": "42 RUE DES ECOLES - 75105", "stop_name": "COLLEGE DE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.3462154498324934, 48.849321725621934]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "18861c0f6694fa1650d01f0ea9877f3a5d8e3ee2", "fields": {"departement": "75", "stop_lat": 48.852162079896225, "code_postal": "75106", "stop_lon": 2.3397060895787947, "coord": [48.852162079896225, 2.3397060895787947], "stop_id": 3765207, "stop_desc": "87 BOULEVARD SAINT GERMAIN - 75106", "stop_name": "SAINT-GERMAIN - ODEON"}, "geometry": {"type": "Point", "coordinates": [2.3397060895787947, 48.852162079896225]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ded0c81f8baaf1c974ea4dc65ce5f12b28bb5a37", "fields": {"departement": "75", "stop_lat": 48.853644539093, "code_postal": "75107", "stop_lon": 2.32637284104398, "coord": [48.853644539093, 2.32637284104398], "stop_id": 3765211, "stop_desc": "19 BOULEVARD RASPAIL - 75107", "stop_name": "VARENNE - RASPAIL"}, "geometry": {"type": "Point", "coordinates": [2.32637284104398, 48.853644539093]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "52bfbeb60a63b204b57bd53febde44ccdaee127d", "fields": {"departement": "75", "stop_lat": 48.85808405358477, "code_postal": "75107", "stop_lon": 2.3236478116024615, "coord": [48.85808405358477, 2.3236478116024615], "stop_id": 3765214, "stop_desc": "260 BOULEVARD SAINT GERMAIN - 75107", "stop_name": "SOLFERINO - BELLECHASSE"}, "geometry": {"type": "Point", "coordinates": [2.3236478116024615, 48.85808405358477]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bf336389a8647c17805dae08acff9dbbe34a6322", "fields": {"departement": "75", "stop_lat": 48.86048341319638, "code_postal": "75107", "stop_lon": 2.3213860761151324, "coord": [48.86048341319638, 2.3213860761151324], "stop_id": 3765216, "stop_desc": "276 BOULEVARD SAINT GERMAIN - 75107", "stop_name": "LILLE - UNIVERSITE"}, "geometry": {"type": "Point", "coordinates": [2.3213860761151324, 48.86048341319638]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "629b1fcd9b3dac415c5df7fa389f98feecf3550f", "fields": {"departement": "75", "stop_lat": 48.86259366148508, "code_postal": "75107", "stop_lon": 2.3112100390900125, "coord": [48.86259366148508, 2.3112100390900125], "stop_id": 3765223, "stop_desc": "PLACE DE FINLANDE - 75107", "stop_name": "PONT DES INVALIDES - PLACE DE FINLANDE"}, "geometry": {"type": "Point", "coordinates": [2.3112100390900125, 48.86259366148508]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a27b07c27949add66d73d01f514c620c967cadcf", "fields": {"departement": "75", "stop_lat": 48.86502471012733, "code_postal": "75116", "stop_lon": 2.29532519938919, "coord": [48.86502471012733, 2.29532519938919], "stop_id": 3765229, "stop_desc": "18 AVENUE DU PRESIDENT WILSON - 75116", "stop_name": "IENA"}, "geometry": {"type": "Point", "coordinates": [2.29532519938919, 48.86502471012733]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f462f93ad7d7004cf9e47c658c84f267c1f9437f", "fields": {"departement": "75", "stop_lat": 48.86335676313397, "code_postal": "75116", "stop_lon": 2.2823312766568558, "coord": [48.86335676313397, 2.2823312766568558], "stop_id": 3765238, "stop_desc": "35 AVENUE GEORGES MANDEL - 75116", "stop_name": "SABLONS - CORTAMBERT"}, "geometry": {"type": "Point", "coordinates": [2.2823312766568558, 48.86335676313397]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6c0fac18200a2a37d2ccf1ffaa4bbe21a5412ecc", "fields": {"departement": "75", "stop_lat": 48.86382213249222, "code_postal": "75116", "stop_lon": 2.278203317507923, "coord": [48.86382213249222, 2.278203317507923], "stop_id": 3765240, "stop_desc": "67 AVENUE GEORGES MANDEL - 75116", "stop_name": "POMPE - MAIRIE DU XVI"}, "geometry": {"type": "Point", "coordinates": [2.278203317507923, 48.86382213249222]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "124c6bbf71b2a469f6a1497190ad1940a0cfce24", "fields": {"departement": "75", "stop_lat": 48.84460965957797, "code_postal": "75105", "stop_lon": 2.363766888008652, "coord": [48.84460965957797, 2.363766888008652], "stop_id": 3765254, "stop_desc": "PLACE VALHUBERT - 75105", "stop_name": "JARDIN DES PLANTES"}, "geometry": {"type": "Point", "coordinates": [2.363766888008652, 48.84460965957797]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2dc5c38d272702176c4f9659a5a663fca3e66dd5", "fields": {"departement": "75", "stop_lat": 48.83698822025995, "code_postal": "75112", "stop_lon": 2.3905708379884882, "coord": [48.83698822025995, 2.3905708379884882], "stop_id": 3765268, "stop_desc": "FACE 39 RUE PROUDHON - 75112", "stop_name": "CHARENTON - WATTIGNIES"}, "geometry": {"type": "Point", "coordinates": [2.3905708379884882, 48.83698822025995]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "75d1cf6e6775a83f747688bea74d9017e95ba99e", "fields": {"departement": "75", "stop_lat": 48.85220514342427, "code_postal": "75120", "stop_lon": 2.4060576079126568, "coord": [48.85220514342427, 2.4060576079126568], "stop_id": 3765287, "stop_desc": "61 RUE DES PYRENEES - 75120", "stop_name": "MARAICHERS"}, "geometry": {"type": "Point", "coordinates": [2.4060576079126568, 48.85220514342427]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6cb5aef76a2ec7835f7e58d19cf5435c7a36539f", "fields": {"departement": "75", "stop_lat": 48.84211285354539, "code_postal": "75112", "stop_lon": 2.4048732210356287, "coord": [48.84211285354539, 2.4048732210356287], "stop_id": 3765291, "stop_desc": "23 AVENUE DU DOCTEUR ARNOLD NETTER - 75112", "stop_name": "HOPITAL TROUSSEAU"}, "geometry": {"type": "Point", "coordinates": [2.4048732210356287, 48.84211285354539]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1ab73e33a10b6145df2d7c92db9fa189301df57b", "fields": {"departement": "75", "stop_lat": 48.839794718912636, "code_postal": "75112", "stop_lon": 2.403712865712914, "coord": [48.839794718912636, 2.403712865712914], "stop_id": 3765292, "stop_desc": "37 RUE LOUIS BRAILLE - 75112", "stop_name": "LOUIS BRAILLE"}, "geometry": {"type": "Point", "coordinates": [2.403712865712914, 48.839794718912636]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fd2a6b7631087fc640e139ca0d335684d3c7eb49", "fields": {"departement": "75", "stop_lat": 48.826374409435104, "code_postal": "75113", "stop_lon": 2.3611031985372395, "coord": [48.826374409435104, 2.3611031985372395], "stop_id": 3765304, "stop_desc": "118 RUE DE TOLBIAC - 75113", "stop_name": "CHOISY - TOLBIAC"}, "geometry": {"type": "Point", "coordinates": [2.3611031985372395, 48.826374409435104]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dbab8c7df657625e081ac6e01b4e97293ca17ccb", "fields": {"departement": "75", "stop_lat": 48.82770500506569, "code_postal": "75113", "stop_lon": 2.358884969751515, "coord": [48.82770500506569, 2.358884969751515], "stop_id": 3765305, "stop_desc": "FACE 145 AVENUE DE CHOISY - 75113", "stop_name": "PARC DE CHOISY"}, "geometry": {"type": "Point", "coordinates": [2.358884969751515, 48.82770500506569]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ae9792dd3823025006c3bf0a444cb713c58e5ef8", "fields": {"departement": "75", "stop_lat": 48.831570105297956, "code_postal": "75113", "stop_lon": 2.35643614543779, "coord": [48.831570105297956, 2.35643614543779], "stop_id": 3765306, "stop_desc": "7 PLACE D'ITALIE - 75113", "stop_name": "PLACE D'ITALIE"}, "geometry": {"type": "Point", "coordinates": [2.35643614543779, 48.831570105297956]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2b8a5565829b258f5b7d7839e1c0ad3355a3c4f1", "fields": {"departement": "75", "stop_lat": 48.846814222652064, "code_postal": "75105", "stop_lon": 2.3461060763555603, "coord": [48.846814222652064, 2.3461060763555603], "stop_id": 3765418, "stop_desc": "10 PLACE PANTHEON - 75105", "stop_name": "PANTHEON"}, "geometry": {"type": "Point", "coordinates": [2.3461060763555603, 48.846814222652064]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "49b39d12b0ad90f169c55e244f98b229fefeb421", "fields": {"departement": "75", "stop_lat": 48.846562716073876, "code_postal": "75105", "stop_lon": 2.3439000040664557, "coord": [48.846562716073876, 2.3439000040664557], "stop_id": 3765420, "stop_desc": "5-7 RUE SOUFFLOT - 75105", "stop_name": "MAIRIE DU VE - PANTHEON"}, "geometry": {"type": "Point", "coordinates": [2.3439000040664557, 48.846562716073876]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6208196da183d5cf066a33aa15dfaa7e09d2fedf", "fields": {"departement": "75", "stop_lat": 48.849349014857154, "code_postal": "75106", "stop_lon": 2.3356749703493738, "coord": [48.849349014857154, 2.3356749703493738], "stop_id": 3765423, "stop_desc": "FACE 17 RUE DE VAUGIRARD - 75106", "stop_name": "SENAT"}, "geometry": {"type": "Point", "coordinates": [2.3356749703493738, 48.849349014857154]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a266a3565e4de9aeda0c6efb0070a045bf404b7d", "fields": {"departement": "75", "stop_lat": 48.853644539093, "code_postal": "75107", "stop_lon": 2.32637284104398, "coord": [48.853644539093, 2.32637284104398], "stop_id": 3765432, "stop_desc": "19 BOULEVARD RASPAIL - 75107", "stop_name": "VARENNE - RASPAIL"}, "geometry": {"type": "Point", "coordinates": [2.32637284104398, 48.853644539093]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6602aa4e246e4b45e446ff8561230060d5251c0b", "fields": {"departement": "75", "stop_lat": 48.86254136918029, "code_postal": "75107", "stop_lon": 2.320241226896711, "coord": [48.86254136918029, 2.320241226896711], "stop_id": 3765439, "stop_desc": "FACE 27 QUAI ANATOLE FRANCE - 75107", "stop_name": "ASSEMBLEE NATIONALE"}, "geometry": {"type": "Point", "coordinates": [2.320241226896711, 48.86254136918029]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6b711b4c70c0afe66d1a34a2f2a4a469ba7be408", "fields": {"departement": "75", "stop_lat": 48.875590149932734, "code_postal": "75108", "stop_lon": 2.3151275364829758, "coord": [48.875590149932734, 2.3151275364829758], "stop_id": 3765449, "stop_desc": "4-6 AVENUE DE MESSINE - 75108", "stop_name": "HAUSSMANN - MIROMESNIL"}, "geometry": {"type": "Point", "coordinates": [2.3151275364829758, 48.875590149932734]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6e818cd90c896be31d02097866287117b772ac39", "fields": {"departement": "75", "stop_lat": 48.88588328924992, "code_postal": "75117", "stop_lon": 2.2927463012748963, "coord": [48.88588328924992, 2.2927463012748963], "stop_id": 3765462, "stop_desc": "FACE 145 AVENUE DE VILLIERS - 75117", "stop_name": "PORTE DE CHAMPERRET"}, "geometry": {"type": "Point", "coordinates": [2.2927463012748963, 48.88588328924992]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aecf64253f7383543ccaf10b5a54e6bf518cafb6", "fields": {"departement": "75", "stop_lat": 48.88547124572192, "code_postal": "75117", "stop_lon": 2.29657603558797, "coord": [48.88547124572192, 2.29657603558797], "stop_id": 3765464, "stop_desc": "173-175 RUE DE COURCELLES - 75117", "stop_name": "PEREIRE - LE CHATELIER"}, "geometry": {"type": "Point", "coordinates": [2.29657603558797, 48.88547124572192]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7630515857ebb49f0520c1c74c0431675b326853", "fields": {"departement": "92", "stop_lat": 48.81737081522255, "code_postal": "92049", "stop_lon": 2.3284763548099487, "coord": [48.81737081522255, 2.3284763548099487], "stop_id": 3781627, "stop_desc": "21 RUE BARBES - 92049", "stop_name": "BARBES - ORY"}, "geometry": {"type": "Point", "coordinates": [2.3284763548099487, 48.81737081522255]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d951641fe02109e950715cda476898125d803206", "fields": {"departement": "94", "stop_lat": 48.8162565998908, "code_postal": "94037", "stop_lon": 2.3410789534908614, "coord": [48.8162565998908, 2.3410789534908614], "stop_id": 3781629, "stop_desc": "71 AVENUE PAUL VAILLANT COUTURIER - 94037", "stop_name": "GENTILLY RER"}, "geometry": {"type": "Point", "coordinates": [2.3410789534908614, 48.8162565998908]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "06676dcca597f5c08bc96db89b45607f62d73b88", "fields": {"departement": "94", "stop_lat": 48.81591498046112, "code_postal": "94037", "stop_lon": 2.3431747797269917, "coord": [48.81591498046112, 2.3431747797269917], "stop_id": 3781630, "stop_desc": "80 AVENUE PAUL VAILLANT COUTURIER - 94037", "stop_name": "GAUTHEROT - CARREFOUR MAZAGRAN"}, "geometry": {"type": "Point", "coordinates": [2.3431747797269917, 48.81591498046112]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d38b869a89d470f8c3aeafcdb01abfcb839a507d", "fields": {"departement": "94", "stop_lat": 48.81440454837094, "code_postal": "94037", "stop_lon": 2.349598069026504, "coord": [48.81440454837094, 2.349598069026504], "stop_id": 3781634, "stop_desc": "FACE 12 AVENUE JEAN JAURES - 94037", "stop_name": "RASPAIL-JAURES"}, "geometry": {"type": "Point", "coordinates": [2.349598069026504, 48.81440454837094]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7027af378fbfd5c1e1306dcbac023dc59d5bce67", "fields": {"departement": "94", "stop_lat": 48.817670553773546, "code_postal": "94041", "stop_lon": 2.397315108876825, "coord": [48.817670553773546, 2.397315108876825], "stop_id": 3781656, "stop_desc": "7-9 RUE LENINE - 94041", "stop_name": "VAILLANT-COUTURIER - LENINE"}, "geometry": {"type": "Point", "coordinates": [2.397315108876825, 48.817670553773546]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b7c102128e987b72c9383d5d26a67c3591e3087d", "fields": {"departement": "94", "stop_lat": 48.81444772813397, "code_postal": "94041", "stop_lon": 2.4068921473134495, "coord": [48.81444772813397, 2.4068921473134495], "stop_id": 3781661, "stop_desc": "FACE 28 BOULEVARD DU COLONEL FABIEN - 94041", "stop_name": "PONT D'IVRY - RIVE GAUCHE"}, "geometry": {"type": "Point", "coordinates": [2.4068921473134495, 48.81444772813397]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e8199944cf6bdd55b08a9ee4443bffaacfa8d1f1", "fields": {"departement": "94", "stop_lat": 48.81464533066428, "code_postal": "94041", "stop_lon": 2.4071101579735426, "coord": [48.81464533066428, 2.4071101579735426], "stop_id": 3781662, "stop_desc": "20 BOULEVARD DU COLONEL FABIEN - 94041", "stop_name": "PONT D'IVRY - RIVE GAUCHE"}, "geometry": {"type": "Point", "coordinates": [2.4071101579735426, 48.81464533066428]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b1b6d0fc020f9257bc982bd2ede75efcdf9575f0", "fields": {"departement": "94", "stop_lat": 48.81511443980852, "code_postal": "94046", "stop_lon": 2.4185153167345823, "coord": [48.81511443980852, 2.4185153167345823], "stop_id": 3781666, "stop_desc": "FACE 17 RUE EUGENE RENAULT - 94046", "stop_name": "MAISONS-ALFORT - ECOLE VETERINAIRE"}, "geometry": {"type": "Point", "coordinates": [2.4185153167345823, 48.81511443980852]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e035175cae10127dcc5a2020ade62c12f78c0985", "fields": {"departement": "94", "stop_lat": 48.81877659985563, "code_postal": "94041", "stop_lon": 2.396200354098123, "coord": [48.81877659985563, 2.396200354098123], "stop_id": 3781670, "stop_desc": "FACE 5 RUE WESTERMEYER - 94041", "stop_name": "VAILLANT-COUTURIER - WESTERMEYER"}, "geometry": {"type": "Point", "coordinates": [2.396200354098123, 48.81877659985563]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d49e96a67c3505ee755152c93632c280b629ea5a", "fields": {"departement": "94", "stop_lat": 48.81845289009328, "code_postal": "94041", "stop_lon": 2.3742877369559676, "coord": [48.81845289009328, 2.3742877369559676], "stop_id": 3781673, "stop_desc": "RUE BARBES - 94041", "stop_name": "MAURICE THOREZ-BARBES"}, "geometry": {"type": "Point", "coordinates": [2.3742877369559676, 48.81845289009328]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8f5ee596ec81e9e9edb3831d3ff73113d4d7c15c", "fields": {"departement": "94", "stop_lat": 48.80002606720367, "code_postal": "94081", "stop_lon": 2.4001654091272115, "coord": [48.80002606720367, 2.4001654091272115], "stop_id": 3785925, "stop_desc": "7 AVENUE DE LA REPUBLIQUE - 94081", "stop_name": "REPUBLIQUE - VAILLANT COUTURIER"}, "geometry": {"type": "Point", "coordinates": [2.4001654091272115, 48.80002606720367]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "137e07350e7361afeb18e7c52e593e2acf3fde07", "fields": {"departement": "94", "stop_lat": 48.79445342927977, "code_postal": "94081", "stop_lon": 2.4004715452591294, "coord": [48.79445342927977, 2.4004715452591294], "stop_id": 3785930, "stop_desc": "162-164 RUE GABRIEL PERI - 94081", "stop_name": "JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.4004715452591294, 48.79445342927977]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3ce689ba5c7e404df6c9edee1cc7d170cc41bb52", "fields": {"departement": "94", "stop_lat": 48.7897695596788, "code_postal": "94081", "stop_lon": 2.4026422560236407, "coord": [48.7897695596788, 2.4026422560236407], "stop_id": 3785931, "stop_desc": "113 RUE ERNEST HAVET - 94081", "stop_name": "DANIELLE CASANOVA"}, "geometry": {"type": "Point", "coordinates": [2.4026422560236407, 48.7897695596788]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9cd9ad7f4290fb6322f71ee5815c6ef67cb1d29a", "fields": {"departement": "94", "stop_lat": 48.78645303856109, "code_postal": "94081", "stop_lon": 2.4025972753357894, "coord": [48.78645303856109, 2.4025972753357894], "stop_id": 3785934, "stop_desc": "4 PLACE PAUL FROMENT - 94081", "stop_name": "PAUL FROMENT"}, "geometry": {"type": "Point", "coordinates": [2.4025972753357894, 48.78645303856109]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d71092b1125ebf35e383418e811c2c8204dbf25c", "fields": {"departement": "94", "stop_lat": 48.778407433750424, "code_postal": "94081", "stop_lon": 2.4050486824649706, "coord": [48.778407433750424, 2.4050486824649706], "stop_id": 3785942, "stop_desc": "98 RUE DU GENERAL MALLERET JOINVILLE - 94081", "stop_name": "CITE BALZAC"}, "geometry": {"type": "Point", "coordinates": [2.4050486824649706, 48.778407433750424]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e1f080682a007e2877a66e2910fb765ed60c350e", "fields": {"departement": "94", "stop_lat": 48.766325128884695, "code_postal": "94022", "stop_lon": 2.4090982529089526, "coord": [48.766325128884695, 2.4090982529089526], "stop_id": 3785951, "stop_desc": "AVENUE PABLO PICASSO - 94022", "stop_name": "CHOISY-LE-ROI RER"}, "geometry": {"type": "Point", "coordinates": [2.4090982529089526, 48.766325128884695]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "36a79eec7dd6c50072041871ecadd1954ede0a14", "fields": {"departement": "94", "stop_lat": 48.7669603900709, "code_postal": "94022", "stop_lon": 2.413735574615047, "coord": [48.7669603900709, 2.413735574615047], "stop_id": 3785954, "stop_desc": "AVENUE VICTOR HUGO - 94022", "stop_name": "PONT DE CHOISY"}, "geometry": {"type": "Point", "coordinates": [2.413735574615047, 48.7669603900709]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a0736eef17d2d32968d7b248f7d40c13d0499bc8", "fields": {"departement": "94", "stop_lat": 48.76184223475119, "code_postal": "94022", "stop_lon": 2.4196147929639293, "coord": [48.76184223475119, 2.4196147929639293], "stop_id": 3785958, "stop_desc": "88-90 AVENUE DE VILLENEUVE-SAINT-GEORGES - 94022", "stop_name": "THEOPHILE DUCLOUX"}, "geometry": {"type": "Point", "coordinates": [2.4196147929639293, 48.76184223475119]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c3254b42502cf845e26402360127e520211d66cc", "fields": {"departement": "94", "stop_lat": 48.80690581924993, "code_postal": "94041", "stop_lon": 2.391927863549737, "coord": [48.80690581924993, 2.391927863549737], "stop_id": 3785974, "stop_desc": "6-8 AVENUE DE LA REPUBLIQUE - 94041", "stop_name": "PARMENTIER"}, "geometry": {"type": "Point", "coordinates": [2.391927863549737, 48.80690581924993]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7b7d512b04de3d52c895b522d5a2823f19e763c9", "fields": {"departement": "94", "stop_lat": 48.80543996337165, "code_postal": "94041", "stop_lon": 2.3937360085830046, "coord": [48.80543996337165, 2.3937360085830046], "stop_id": 3785975, "stop_desc": "14 AVENUE DE LA REPUBLIQUE - 94041", "stop_name": "HOPITAL CHARLES FOIX"}, "geometry": {"type": "Point", "coordinates": [2.3937360085830046, 48.80543996337165]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d3962652365ae21ef03a837030f11f41acd48159", "fields": {"departement": "94", "stop_lat": 48.80225645002726, "code_postal": "94081", "stop_lon": 2.397460547776301, "coord": [48.80225645002726, 2.397460547776301], "stop_id": 3785976, "stop_desc": "AVENUE DE LA REPUBLIQUE - 94081", "stop_name": "FELIX FAURE"}, "geometry": {"type": "Point", "coordinates": [2.397460547776301, 48.80225645002726]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7dc05ffa0f5f582c6a0d995997a79521dc047e74", "fields": {"departement": "94", "stop_lat": 48.7983005517985, "code_postal": "94081", "stop_lon": 2.399877617408329, "coord": [48.7983005517985, 2.399877617408329], "stop_id": 3785978, "stop_desc": "30 AVENUE PAUL VAILLANT-COUTURIER - 94081", "stop_name": "GABRIEL PERI"}, "geometry": {"type": "Point", "coordinates": [2.399877617408329, 48.7983005517985]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "11e9e1f1166497afc55366e5e0c724b470375932", "fields": {"departement": "94", "stop_lat": 48.78037667608841, "code_postal": "94081", "stop_lon": 2.4035008391930943, "coord": [48.78037667608841, 2.4035008391930943], "stop_id": 3785984, "stop_desc": "149 RUE DU GENERAL MALLERET JOINVILLE - 94081", "stop_name": "ANSELME RONDENAY"}, "geometry": {"type": "Point", "coordinates": [2.4035008391930943, 48.78037667608841]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "afc76360537a9509d5a6480be30b9c3833b3acb5", "fields": {"departement": "94", "stop_lat": 48.766325128884695, "code_postal": "94022", "stop_lon": 2.4090982529089526, "coord": [48.766325128884695, 2.4090982529089526], "stop_id": 3785990, "stop_desc": "AVENUE PABLO PICASSO - 94022", "stop_name": "CHOISY-LE-ROI RER"}, "geometry": {"type": "Point", "coordinates": [2.4090982529089526, 48.766325128884695]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f0f3fd1192ca0060fd49bbdcbad3f2a1dceca6b0", "fields": {"departement": "75", "stop_lat": 48.81823187367253, "code_postal": "75113", "stop_lon": 2.3595343031703324, "coord": [48.81823187367253, 2.3595343031703324], "stop_id": 3786051, "stop_desc": "AVENUE DE LA PORTE D'ITALIE - 75113", "stop_name": "PORTE D'ITALIE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.3595343031703324, 48.81823187367253]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "27ae7b101652526663615f94e05715536f0fedcf", "fields": {"departement": "94", "stop_lat": 48.814924301740824, "code_postal": "94043", "stop_lon": 2.3600092041705403, "coord": [48.814924301740824, 2.3600092041705403], "stop_id": 3786054, "stop_desc": "8 RUE DU GENERAL LECLERC - 94043", "stop_name": "PIERRE BROSSOLETTE"}, "geometry": {"type": "Point", "coordinates": [2.3600092041705403, 48.814924301740824]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dd1aba0360249aa9741a2a4d4cad5f4043277a52", "fields": {"departement": "94", "stop_lat": 48.80793353658343, "code_postal": "94043", "stop_lon": 2.3477595402989655, "coord": [48.80793353658343, 2.3477595402989655], "stop_id": 3786059, "stop_desc": "FACE 140 AV GABRIEL PERI - 94043", "stop_name": "CITE DES H.B.M."}, "geometry": {"type": "Point", "coordinates": [2.3477595402989655, 48.80793353658343]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1a87be4e398214872595a7b40ae9bf253c71a241", "fields": {"departement": "94", "stop_lat": 48.80261303302782, "code_postal": "94003", "stop_lon": 2.3439351949817233, "coord": [48.80261303302782, 2.3439351949817233], "stop_id": 3786061, "stop_desc": "FACE AU 197 AVENUE GABRIEL PERI - 94003", "stop_name": "RICARDO - LE PLATEAU"}, "geometry": {"type": "Point", "coordinates": [2.3439351949817233, 48.80261303302782]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2f75032ff8c28551bc2857d3c9a8faab7f469bed", "fields": {"departement": "94", "stop_lat": 48.78909530463577, "code_postal": "94038", "stop_lon": 2.3433893596754563, "coord": [48.78909530463577, 2.3433893596754563], "stop_id": 3786065, "stop_desc": "146-148 RUE GABRIEL PERI - 94038", "stop_name": "LUNAIN"}, "geometry": {"type": "Point", "coordinates": [2.3433893596754563, 48.78909530463577]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fcf836940d7a06d61d0fbb27fe76e7c4c2ecb08c", "fields": {"departement": "94", "stop_lat": 48.81022526555067, "code_postal": "94037", "stop_lon": 2.3493793482029757, "coord": [48.81022526555067, 2.3493793482029757], "stop_id": 3786067, "stop_desc": "92 BIS RUE GABRIEL PERI - 94037", "stop_name": "BENSERADE - C.H.U. DE BICETRE"}, "geometry": {"type": "Point", "coordinates": [2.3493793482029757, 48.81022526555067]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b42dd7bfeac2a0bb9a80c46768c053d4f231f04e", "fields": {"departement": "94", "stop_lat": 48.80107615544935, "code_postal": "94003", "stop_lon": 2.343159481658929, "coord": [48.80107615544935, 2.343159481658929], "stop_id": 3786071, "stop_desc": "78 AVENUE GABRIEL PERI - 94003", "stop_name": "QUATRE CHEMINS"}, "geometry": {"type": "Point", "coordinates": [2.343159481658929, 48.80107615544935]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8aec363927e3d02fa14975f4566db46fed6adb88", "fields": {"departement": "94", "stop_lat": 48.783900371009835, "code_postal": "94038", "stop_lon": 2.341158175922949, "coord": [48.783900371009835, 2.341158175922949], "stop_id": 3786075, "stop_desc": "FACE 9 AVENUE PAUL VAILLANT COUTURIER - 94038", "stop_name": "BELVEDERE"}, "geometry": {"type": "Point", "coordinates": [2.341158175922949, 48.783900371009835]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "45c3df1eef1dbfb9b2c332f387fb34c6e850794c", "fields": {"departement": "94", "stop_lat": 48.77589211459192, "code_postal": "94038", "stop_lon": 2.3397704819584093, "coord": [48.77589211459192, 2.3397704819584093], "stop_id": 3786081, "stop_desc": "124 AVENUE PAUL VAILLANT COUTURIER - 94038", "stop_name": "TOURNELLES"}, "geometry": {"type": "Point", "coordinates": [2.3397704819584093, 48.77589211459192]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "86a73e2e442b9083b5cc12e3a1977890be849bf0", "fields": {"departement": "94", "stop_lat": 48.772395787216, "code_postal": "94021", "stop_lon": 2.3389680290446595, "coord": [48.772395787216, 2.3389680290446595], "stop_id": 3786083, "stop_desc": "40 BOULEVARD JEAN MERMOZ - 94021", "stop_name": "JEAN MERMOZ - GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.3389680290446595, 48.772395787216]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c4c7c26e065f494de14198acf7c5d260fdebbfc1", "fields": {"departement": "94", "stop_lat": 48.77315975756274, "code_postal": "94021", "stop_lon": 2.3396887601604144, "coord": [48.77315975756274, 2.3396887601604144], "stop_id": 3786084, "stop_desc": "11 BD PAUL VAILLANT COUTURIER - 94021", "stop_name": "JEAN MERMOZ - GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.3396887601604144, 48.77315975756274]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6ced807d0f09d9be9d0c8ba7841de8ec6e94b3f6", "fields": {"departement": "94", "stop_lat": 48.76992408524456, "code_postal": "94021", "stop_lon": 2.3378937546024634, "coord": [48.76992408524456, 2.3378937546024634], "stop_id": 3786086, "stop_desc": "FACE 88/92 BOULEVARD JEAN MERMOZ - 94021", "stop_name": "CROIX DU SUD - CENTRE DE PNEUMOLOGIE"}, "geometry": {"type": "Point", "coordinates": [2.3378937546024634, 48.76992408524456]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "df15d675dd90fabb77fe5ab83aeaf277a62e0719", "fields": {"departement": "94", "stop_lat": 48.763030171767916, "code_postal": "94034", "stop_lon": 2.3335158948610877, "coord": [48.763030171767916, 2.3335158948610877], "stop_id": 3786089, "stop_desc": "7 AV DE STALINGRAD - 94034", "stop_name": "ALLEE DU PLATEAU"}, "geometry": {"type": "Point", "coordinates": [2.3335158948610877, 48.763030171767916]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "955afac093a7d806a9ed00bea5950eda59849789", "fields": {"departement": "94", "stop_lat": 48.76310208832712, "code_postal": "94034", "stop_lon": 2.333910161861606, "coord": [48.76310208832712, 2.333910161861606], "stop_id": 3786090, "stop_desc": "FACE 7 AVENUE DE STALINGRAD - 94034", "stop_name": "ALLEE DU PLATEAU"}, "geometry": {"type": "Point", "coordinates": [2.333910161861606, 48.76310208832712]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3de37ea4262270790e24eb80cb31f351188f3996", "fields": {"departement": "75", "stop_lat": 48.81884297364722, "code_postal": "75113", "stop_lon": 2.359874820335962, "coord": [48.81884297364722, 2.359874820335962], "stop_id": 3786095, "stop_desc": "FACE 164 BOULEVARD MASSENA - 75113", "stop_name": "PORTE D'ITALIE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.359874820335962, 48.81884297364722]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "26566c1e7d7775dd4e358669b27cc9bbcbe615e7", "fields": {"departement": "75", "stop_lat": 48.81884297364722, "code_postal": "75113", "stop_lon": 2.359874820335962, "coord": [48.81884297364722, 2.359874820335962], "stop_id": 3786096, "stop_desc": "FACE 164 BOULEVARD MASSENA - 75113", "stop_name": "PORTE D'ITALIE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.359874820335962, 48.81884297364722]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a25a5618da265408aeca061b81cc61ed0d0c04e9", "fields": {"departement": "94", "stop_lat": 48.80793353658343, "code_postal": "94043", "stop_lon": 2.3477595402989655, "coord": [48.80793353658343, 2.3477595402989655], "stop_id": 3786104, "stop_desc": "FACE 140 AV GABRIEL PERI - 94043", "stop_name": "CITE DES H.B.M."}, "geometry": {"type": "Point", "coordinates": [2.3477595402989655, 48.80793353658343]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bf0dd9a63a453277479e256b940bae64244a4f46", "fields": {"departement": "94", "stop_lat": 48.80261303302782, "code_postal": "94003", "stop_lon": 2.3439351949817233, "coord": [48.80261303302782, 2.3439351949817233], "stop_id": 3786106, "stop_desc": "FACE AU 197 AVENUE GABRIEL PERI - 94003", "stop_name": "RICARDO - LE PLATEAU"}, "geometry": {"type": "Point", "coordinates": [2.3439351949817233, 48.80261303302782]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3a5d437830c641715914cdc731ab6bcdc5d81d53", "fields": {"departement": "94", "stop_lat": 48.81022526555067, "code_postal": "94037", "stop_lon": 2.3493793482029757, "coord": [48.81022526555067, 2.3493793482029757], "stop_id": 3786112, "stop_desc": "92 BIS RUE GABRIEL PERI - 94037", "stop_name": "BENSERADE - C.H.U. DE BICETRE"}, "geometry": {"type": "Point", "coordinates": [2.3493793482029757, 48.81022526555067]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "29d15db119e2a8775472c6afbef14b31dcf8167c", "fields": {"departement": "94", "stop_lat": 48.80795157028177, "code_postal": "94037", "stop_lon": 2.3470791770842157, "coord": [48.80795157028177, 2.3470791770842157], "stop_id": 3786113, "stop_desc": "150 R GABRIEL PERI - 94037", "stop_name": "CITE DES H.B.M."}, "geometry": {"type": "Point", "coordinates": [2.3470791770842157, 48.80795157028177]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "547b7abcbf23aa128de82263a148f0dd11889d2e", "fields": {"departement": "94", "stop_lat": 48.80542617482965, "code_postal": "94003", "stop_lon": 2.344670317551298, "coord": [48.80542617482965, 2.344670317551298], "stop_id": 3786114, "stop_desc": "0 AV GABRIEL PERI - 94003", "stop_name": "TROIS COMMUNES"}, "geometry": {"type": "Point", "coordinates": [2.344670317551298, 48.80542617482965]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "110ac31e1899a2b70783dc9e85b50bb18f3ab9af", "fields": {"departement": "94", "stop_lat": 48.79760685291465, "code_postal": "94016", "stop_lon": 2.343036645353699, "coord": [48.79760685291465, 2.343036645353699], "stop_id": 3786117, "stop_desc": "10 RUE GABRIEL PERI - 94016", "stop_name": "COLONEL FABIEN"}, "geometry": {"type": "Point", "coordinates": [2.343036645353699, 48.79760685291465]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ea69a9f8418159925a08506d8c10a3716029b1f1", "fields": {"departement": "94", "stop_lat": 48.783900371009835, "code_postal": "94038", "stop_lon": 2.341158175922949, "coord": [48.783900371009835, 2.341158175922949], "stop_id": 3786120, "stop_desc": "FACE 9 AVENUE PAUL VAILLANT COUTURIER - 94038", "stop_name": "BELVEDERE"}, "geometry": {"type": "Point", "coordinates": [2.341158175922949, 48.783900371009835]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "28094533e41006f9cbfaf497cfb1320f0e4bfdea", "fields": {"departement": "94", "stop_lat": 48.77315975756274, "code_postal": "94021", "stop_lon": 2.3396887601604144, "coord": [48.77315975756274, 2.3396887601604144], "stop_id": 3786129, "stop_desc": "11 BD PAUL VAILLANT COUTURIER - 94021", "stop_name": "JEAN MERMOZ - GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.3396887601604144, 48.77315975756274]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "02611c23ea8c246e19812933dab77a66623cf28c", "fields": {"departement": "94", "stop_lat": 48.763030171767916, "code_postal": "94034", "stop_lon": 2.3335158948610877, "coord": [48.763030171767916, 2.3335158948610877], "stop_id": 3786134, "stop_desc": "7 AV DE STALINGRAD - 94034", "stop_name": "ALLEE DU PLATEAU"}, "geometry": {"type": "Point", "coordinates": [2.3335158948610877, 48.763030171767916]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3f5c348288d6f6d81b1f755e17a48214a12986a7", "fields": {"departement": "94", "stop_lat": 48.79494653952937, "code_postal": "94016", "stop_lon": 2.333976132094692, "coord": [48.79494653952937, 2.333976132094692], "stop_id": 3786294, "stop_desc": "FACE 8 R GALLIENI - 94016", "stop_name": "CENTRE VILLE"}, "geometry": {"type": "Point", "coordinates": [2.333976132094692, 48.79494653952937]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4896b74421d3ca4e13769e74edc89ffad3cf5cef", "fields": {"departement": "94", "stop_lat": 48.79171056591342, "code_postal": "94016", "stop_lon": 2.327759727921073, "coord": [48.79171056591342, 2.327759727921073], "stop_id": 3786299, "stop_desc": "2 AV JEAN JAURES - 94016", "stop_name": "JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.327759727921073, 48.79171056591342]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3deff97e151b165f12d504d322002abe11356916", "fields": {"departement": "94", "stop_lat": 48.78600320648722, "code_postal": "94016", "stop_lon": 2.3273935281980815, "coord": [48.78600320648722, 2.3273935281980815], "stop_id": 3786304, "stop_desc": "AV DE L'EUROPE - 94016", "stop_name": "PISCINE"}, "geometry": {"type": "Point", "coordinates": [2.3273935281980815, 48.78600320648722]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0cb55d749507f082c732ae897ce7c1791afa145e", "fields": {"departement": "92", "stop_lat": 48.88354681399069, "code_postal": "92050", "stop_lon": 2.2156593002014677, "coord": [48.88354681399069, 2.2156593002014677], "stop_id": 4025369, "stop_desc": "130 R DE SURESNES - 92050", "stop_name": "SURESNES"}, "geometry": {"type": "Point", "coordinates": [2.2156593002014677, 48.88354681399069]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4b826dc9960923ea71d53e877c325465c46e8ccd", "fields": {"departement": "92", "stop_lat": 48.883116502284224, "code_postal": "92050", "stop_lon": 2.2081381587657183, "coord": [48.883116502284224, 2.2081381587657183], "stop_id": 4025372, "stop_desc": "97-99 R DE LA SOURCE - 92050", "stop_name": "LES DAMADES"}, "geometry": {"type": "Point", "coordinates": [2.2081381587657183, 48.883116502284224]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2e861a3555253e067730ef11b0c6f73295abb7e5", "fields": {"departement": "92", "stop_lat": 48.88703095931309, "code_postal": "92050", "stop_lon": 2.2045169572232255, "coord": [48.88703095931309, 2.2045169572232255], "stop_id": 4025374, "stop_desc": "FACE 48 AVENUE GEORGES CLEMENCEAU - 92050", "stop_name": "LA SOURCE"}, "geometry": {"type": "Point", "coordinates": [2.2045169572232255, 48.88703095931309]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0c06d3b84d16efe480845224752bec5a1524182d", "fields": {"departement": "92", "stop_lat": 48.88736726938604, "code_postal": "92050", "stop_lon": 2.1999233908349463, "coord": [48.88736726938604, 2.1999233908349463], "stop_id": 4025379, "stop_desc": "PL DE LA BOULE - 92050", "stop_name": "PLACE DE LA BOULE - GAMBETTA"}, "geometry": {"type": "Point", "coordinates": [2.1999233908349463, 48.88736726938604]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c6926746276ffdb9dd2380435d514f4abf331226", "fields": {"departement": "92", "stop_lat": 48.88271280979073, "code_postal": "92050", "stop_lon": 2.2174463905700637, "coord": [48.88271280979073, 2.2174463905700637], "stop_id": 4025383, "stop_desc": "33 R DE VERDUN - 92050", "stop_name": "VERDUN"}, "geometry": {"type": "Point", "coordinates": [2.2174463905700637, 48.88271280979073]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cf664aebfec0f7409017693714e0192284cd1ed3", "fields": {"departement": "92", "stop_lat": 48.885321343250595, "code_postal": "92050", "stop_lon": 2.2196889256981716, "coord": [48.885321343250595, 2.2196889256981716], "stop_id": 4025384, "stop_desc": "1 R PASTEUR - 92050", "stop_name": "PASTEUR"}, "geometry": {"type": "Point", "coordinates": [2.2196889256981716, 48.885321343250595]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bcd014ecea3806f569e7e74e35ab498c9f4a15a5", "fields": {"departement": "92", "stop_lat": 48.89327347338015, "code_postal": "92050", "stop_lon": 2.227494364668417, "coord": [48.89327347338015, 2.227494364668417], "stop_id": 4025385, "stop_desc": "BD DES BOUVETS - 92050", "stop_name": "AIME CESAIRE"}, "geometry": {"type": "Point", "coordinates": [2.227494364668417, 48.89327347338015]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "28fbc4b2a07ddd414a5b3dd10a71eb485bf65266", "fields": {"departement": "92", "stop_lat": 48.8967246279869, "code_postal": "92050", "stop_lon": 2.2182182061917946, "coord": [48.8967246279869, 2.2182182061917946], "stop_id": 4025387, "stop_desc": "R PABLO NERUDA - 92050", "stop_name": "MARCEL PAUL"}, "geometry": {"type": "Point", "coordinates": [2.2182182061917946, 48.8967246279869]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "066c96f34f75cb5294e4b54553ebed5dc191d8c0", "fields": {"departement": "94", "stop_lat": 48.84633248805177, "code_postal": "94033", "stop_lon": 2.456447870879037, "coord": [48.84633248805177, 2.456447870879037], "stop_id": 4028770, "stop_desc": "RUE DES POMMIERS - 94033", "stop_name": "RUE DES POMMIERS"}, "geometry": {"type": "Point", "coordinates": [2.456447870879037, 48.84633248805177]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d35c2cdf96d329146ddda0023117d80783f8d1fd", "fields": {"departement": "93", "stop_lat": 48.89228664164641, "code_postal": "93055", "stop_lon": 2.409368264983254, "coord": [48.89228664164641, 2.409368264983254], "stop_id": 5944502, "stop_desc": "FACE 103 AV JEAN LOLIVE - 93055", "stop_name": "CINE 104"}, "geometry": {"type": "Point", "coordinates": [2.409368264983254, 48.89228664164641]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ce989fcded20c1d99d7249ea7e453376d9c2606b", "fields": {"departement": "93", "stop_lat": 48.888696040663106, "code_postal": "93055", "stop_lon": 2.4167771955275255, "coord": [48.888696040663106, 2.4167771955275255], "stop_id": 5944510, "stop_desc": "FACE 61 R CHARLES AURAY - 93055", "stop_name": "POMMIERS - CIMETIERE"}, "geometry": {"type": "Point", "coordinates": [2.4167771955275255, 48.888696040663106]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "147120e75b42b6c100a2d11c82ad3c63d157c2e1", "fields": {"departement": "93", "stop_lat": 48.89490898245388, "code_postal": "93055", "stop_lon": 2.4255645627297566, "coord": [48.89490898245388, 2.4255645627297566], "stop_id": 5944516, "stop_desc": "FACE 4 AV ANATOLE FRANCE - 93055", "stop_name": "RAYMOND QUENEAU - ANATOLE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.4255645627297566, 48.89490898245388]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9b2a4b96997bcd6dc0d3175cf61d545a5aaf48cb", "fields": {"departement": "93", "stop_lat": 48.88870922132644, "code_postal": "93055", "stop_lon": 2.410221885804846, "coord": [48.88870922132644, 2.410221885804846], "stop_id": 5944522, "stop_desc": "51 RUE JULES AUFFRET - 93055", "stop_name": "PAUL BERT - CIMETIERE"}, "geometry": {"type": "Point", "coordinates": [2.410221885804846, 48.88870922132644]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "de44c3746a29dd187fcfa704493ea94dd50906d0", "fields": {"departement": "93", "stop_lat": 48.89388169834081, "code_postal": "93055", "stop_lon": 2.4018195179428488, "coord": [48.89388169834081, 2.4018195179428488], "stop_id": 5944525, "stop_desc": "34-36 RUE HOCHE - 93055", "stop_name": "MONTGOLFIER"}, "geometry": {"type": "Point", "coordinates": [2.4018195179428488, 48.89388169834081]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "89b3c589c74004a4c548fae21463a4a7b8f13948", "fields": {"departement": "93", "stop_lat": 48.91364125447781, "code_postal": "93001", "stop_lon": 2.407230009973787, "coord": [48.91364125447781, 2.407230009973787], "stop_id": 5944530, "stop_desc": "AVENUE DE LA DIVISION LECLERC - 93001", "stop_name": "MAISON DE QUARTIER - COURTILLIERES"}, "geometry": {"type": "Point", "coordinates": [2.407230009973787, 48.91364125447781]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "64d51c6c947c5dc74c1ccd8adb207c2a42773539", "fields": {"departement": "93", "stop_lat": 48.9114184285498, "code_postal": "93055", "stop_lon": 2.4122172411197242, "coord": [48.9114184285498, 2.4122172411197242], "stop_id": 5944531, "stop_desc": "FACE 42 AV DE LA DIVISION LECLERC - 93055", "stop_name": "DIVISION LECLERC - STENDHAL"}, "geometry": {"type": "Point", "coordinates": [2.4122172411197242, 48.9114184285498]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e114ba9782c8320be3901c70974d48907f7e9e3b", "fields": {"departement": "93", "stop_lat": 48.91618499123219, "code_postal": "93029", "stop_lon": 2.43256871468153, "coord": [48.91618499123219, 2.43256871468153], "stop_id": 5976287, "stop_desc": "FACE 40 RUE FERNAND PENA - 93029", "stop_name": "ANDRE SIGONNEY"}, "geometry": {"type": "Point", "coordinates": [2.43256871468153, 48.91618499123219]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7e1eff30a6eec73c1b082c06e566c0c4e4b2cf9d", "fields": {"departement": "92", "stop_lat": 48.80622881995387, "code_postal": "92020", "stop_lon": 2.297957992282904, "coord": [48.80622881995387, 2.297957992282904], "stop_id": 5976626, "stop_desc": "AVENUE DE LA REPUBLIQUE - 92020", "stop_name": "PIERRE SEMARD"}, "geometry": {"type": "Point", "coordinates": [2.297957992282904, 48.80622881995387]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3b3e1b3108a4fa01094ba39f8314739ef354a581", "fields": {"departement": "92", "stop_lat": 48.802264645455615, "code_postal": "92020", "stop_lon": 2.2963282906160316, "coord": [48.802264645455615, 2.2963282906160316], "stop_id": 5976629, "stop_desc": "33 RUE PERROTIN - 92020", "stop_name": "PERROTIN"}, "geometry": {"type": "Point", "coordinates": [2.2963282906160316, 48.802264645455615]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f9df513d2f5bbc01f2903533596b1b72dbb504f6", "fields": {"departement": "92", "stop_lat": 48.8020850518021, "code_postal": "92020", "stop_lon": 2.2968046352222333, "coord": [48.8020850518021, 2.2968046352222333], "stop_id": 5976630, "stop_desc": "RUE PERROTIN - 92020", "stop_name": "PERROTIN"}, "geometry": {"type": "Point", "coordinates": [2.2968046352222333, 48.8020850518021]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4d312671b04c1901a9af9950e0f3486dc9c3a455", "fields": {"departement": "92", "stop_lat": 48.79796754114928, "code_postal": "92007", "stop_lon": 2.2937467800028233, "coord": [48.79796754114928, 2.2937467800028233], "stop_id": 5976631, "stop_desc": "7-9 RUE DE CHARTRES - 92007", "stop_name": "LIBERTE"}, "geometry": {"type": "Point", "coordinates": [2.2937467800028233, 48.79796754114928]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6b86ffeb94eb5132c6f5c3ae4233701356e1adda", "fields": {"departement": "92", "stop_lat": 48.79473999766578, "code_postal": "92032", "stop_lon": 2.2913552016110916, "coord": [48.79473999766578, 2.2913552016110916], "stop_id": 5976633, "stop_desc": "FACE 22 AVENUE JEANNE ET MAURICE DOLIVET - 92032", "stop_name": "CIMETIERE DE FONTENAY-AUX-ROSES"}, "geometry": {"type": "Point", "coordinates": [2.2913552016110916, 48.79473999766578]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "558c9364fcdcbeeaf1f5ad3ffba2ed04a75c311d", "fields": {"departement": "92", "stop_lat": 48.7909013635518, "code_postal": "92032", "stop_lon": 2.2893181633221373, "coord": [48.7909013635518, 2.2893181633221373], "stop_id": 5976636, "stop_desc": "AVENUE JEANNE ET MAURICE DOLIVET - 92032", "stop_name": "THEATRE DES SOURCES"}, "geometry": {"type": "Point", "coordinates": [2.2893181633221373, 48.7909013635518]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bd46c9c99e6ce3e29f51eca0eba1085566239cba", "fields": {"departement": "92", "stop_lat": 48.788959603982086, "code_postal": "92032", "stop_lon": 2.2884085971458927, "coord": [48.788959603982086, 2.2884085971458927], "stop_id": 5976638, "stop_desc": "3 AVENUE JEAN MOULIN - 92032", "stop_name": "BOULEVARD DE LA REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.2884085971458927, 48.788959603982086]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1d47ea00ec2dedd6a9ee9646752a0659f83c6651", "fields": {"departement": "92", "stop_lat": 48.786289554194546, "code_postal": "92032", "stop_lon": 2.2868877217300163, "coord": [48.786289554194546, 2.2868877217300163], "stop_id": 5976639, "stop_desc": "30-32 AVENUE JEAN MOULIN - 92032", "stop_name": "AUGUSTIN CLAUDE"}, "geometry": {"type": "Point", "coordinates": [2.2868877217300163, 48.786289554194546]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "85f3b492ec1a8a404a1767ba9db53c6a27318ba6", "fields": {"departement": "92", "stop_lat": 48.76782133944119, "code_postal": "92019", "stop_lon": 2.272710532959813, "coord": [48.76782133944119, 2.272710532959813], "stop_id": 5976650, "stop_desc": "FACE 131 AVENUE ROGER SALENGRO - 92019", "stop_name": "DOCTEUR LE SAVOUREUX"}, "geometry": {"type": "Point", "coordinates": [2.272710532959813, 48.76782133944119]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b41f14128eaef507cb840d70ae274ba3d2ffa07d", "fields": {"departement": "91", "stop_lat": 48.75199312360041, "code_postal": "91645", "stop_lon": 2.2724855204515526, "coord": [48.75199312360041, 2.2724855204515526], "stop_id": 5976660, "stop_desc": "CARREFOUR DE L'EUROPE - 91645", "stop_name": "LES ANTES"}, "geometry": {"type": "Point", "coordinates": [2.2724855204515526, 48.75199312360041]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "422f577465fcc7a5831bc0c89dc68b902af1cf48", "fields": {"departement": "91", "stop_lat": 48.74439504485675, "code_postal": "91645", "stop_lon": 2.267126659210256, "coord": [48.74439504485675, 2.267126659210256], "stop_id": 5976666, "stop_desc": "42 BOULEVARD DU MARECHAL FOCH - 91645", "stop_name": "FOCH - LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.267126659210256, 48.74439504485675]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2ffc2b855747a2c540a7fefc6f91bb7af9055ecd", "fields": {"departement": "91", "stop_lat": 48.74241485917584, "code_postal": "91645", "stop_lon": 2.26257661775109, "coord": [48.74241485917584, 2.26257661775109], "stop_id": 5976667, "stop_desc": "19 BOULEVARD DU MARECHAL FOCH - 91645", "stop_name": "GRANDS CHENES"}, "geometry": {"type": "Point", "coordinates": [2.26257661775109, 48.74241485917584]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d39934fab47432eca172263cfac3ba42943eb462", "fields": {"departement": "91", "stop_lat": 48.7405950939472, "code_postal": "91645", "stop_lon": 2.256260015531992, "coord": [48.7405950939472, 2.256260015531992], "stop_id": 5976669, "stop_desc": "174 RUE D'ESTIENNE D'ORVES - 91645", "stop_name": "MOULIN DE GRAIS"}, "geometry": {"type": "Point", "coordinates": [2.256260015531992, 48.7405950939472]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "70771159bc1c6ac23fbaf25bc7315a49137774e0", "fields": {"departement": "91", "stop_lat": 48.74053303079903, "code_postal": "91645", "stop_lon": 2.2575239540089407, "coord": [48.74053303079903, 2.2575239540089407], "stop_id": 5976670, "stop_desc": "131-133 RUE D'ESTIENNE D'ORVES - 91645", "stop_name": "MOULIN DE GRAIS"}, "geometry": {"type": "Point", "coordinates": [2.2575239540089407, 48.74053303079903]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "08d12891c302b179a566973ae1f1a28d27410510", "fields": {"departement": "91", "stop_lat": 48.73970899646605, "code_postal": "91645", "stop_lon": 2.2488958968010944, "coord": [48.73970899646605, 2.2488958968010944], "stop_id": 5976676, "stop_desc": "FACE 12 RUE DE PARIS - 91645", "stop_name": "CROIX PASQUIER"}, "geometry": {"type": "Point", "coordinates": [2.2488958968010944, 48.73970899646605]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "34007497f79443fefbb79fb70c4d618ae7873e73", "fields": {"departement": "91", "stop_lat": 48.73706334414667, "code_postal": "91377", "stop_lon": 2.244823755686539, "coord": [48.73706334414667, 2.244823755686539], "stop_id": 5976677, "stop_desc": "VOIE DE LA VALLEE DE LA BIEVRE - 91377", "stop_name": "AMBLAINVILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.244823755686539, 48.73706334414667]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8099657fae8e9fd637daf0ffd2f3e6f08d4915e0", "fields": {"departement": "91", "stop_lat": 48.741577170262595, "code_postal": "91312", "stop_lon": 2.2258577165204803, "coord": [48.741577170262595, 2.2258577165204803], "stop_id": 5976682, "stop_desc": "PLACE FRANCOIS COLLET - 91312", "stop_name": "PLACE FRANCOIS COLLET"}, "geometry": {"type": "Point", "coordinates": [2.2258577165204803, 48.741577170262595]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4e5e6b99b1e82bffb6ec689fc6d1014498ff5b18", "fields": {"departement": "92", "stop_lat": 48.79971713568461, "code_postal": "92020", "stop_lon": 2.2861128071739714, "coord": [48.79971713568461, 2.2861128071739714], "stop_id": 5976700, "stop_desc": "3 RUE D'ESTIENNE D'ORVES - 92020", "stop_name": "D'ESTIENNE D'ORVES - DIVISION LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.2861128071739714, 48.79971713568461]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7b61ae2a7fc0448f2267b50a95f9501cf2cc2982", "fields": {"departement": "92", "stop_lat": 48.79887152309433, "code_postal": "92020", "stop_lon": 2.2843858100166203, "coord": [48.79887152309433, 2.2843858100166203], "stop_id": 5976703, "stop_desc": "FACE 14 AVENUE DE LA DIVISION LECLERC - 92020", "stop_name": "DIVISION LECLERC - BROSSELETTE"}, "geometry": {"type": "Point", "coordinates": [2.2843858100166203, 48.79887152309433]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9ef4c44fbf3b1cec35d5c4ef1fcfcfd96502165d", "fields": {"departement": "92", "stop_lat": 48.797594084137074, "code_postal": "92020", "stop_lon": 2.281829440896584, "coord": [48.797594084137074, 2.281829440896584], "stop_id": 5976704, "stop_desc": "FACE 37 AVENUE DE LA DIVISION LECLERC - 92020", "stop_name": "LES SABLONS"}, "geometry": {"type": "Point", "coordinates": [2.281829440896584, 48.797594084137074]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "417c645bec15549358d2a1af256e31541d3e6ddb", "fields": {"departement": "92", "stop_lat": 48.79316722656794, "code_postal": "92023", "stop_lon": 2.272298135045123, "coord": [48.79316722656794, 2.272298135045123], "stop_id": 5976708, "stop_desc": "CHEMIN DE LA FOSSE BAZIN - 92023", "stop_name": "DIVISION LECLERC - FOSSE BAZIN"}, "geometry": {"type": "Point", "coordinates": [2.272298135045123, 48.79316722656794]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d7d29bf2cda900070fc0294ffcfc44e99eeeaf02", "fields": {"departement": "92", "stop_lat": 48.786544287053275, "code_postal": "92060", "stop_lon": 2.2592623549480146, "coord": [48.786544287053275, 2.2592623549480146], "stop_id": 5976711, "stop_desc": "88 BOULEVARD DU MOULIN DE LA TOUR - 92060", "stop_name": "RUE GABRIELLE"}, "geometry": {"type": "Point", "coordinates": [2.2592623549480146, 48.786544287053275]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3d05d67bb7a2f439ea0cb94b654fa3807811d3d7", "fields": {"departement": "92", "stop_lat": 48.77896801359053, "code_postal": "92060", "stop_lon": 2.260157713740714, "coord": [48.77896801359053, 2.260157713740714], "stop_id": 5976716, "stop_desc": "AVENUE CHARLES DE GAULLE - 92060", "stop_name": "RESISTANCE"}, "geometry": {"type": "Point", "coordinates": [2.260157713740714, 48.77896801359053]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d6a736e303bf6e160c49cc4f4610ae6623bb494d", "fields": {"departement": "92", "stop_lat": 48.773708035421556, "code_postal": "92060", "stop_lon": 2.257146680420341, "coord": [48.773708035421556, 2.257146680420341], "stop_id": 5976721, "stop_desc": "14 RUE DU MOULIN FIDEL - 92060", "stop_name": "MOULIN FIDEL"}, "geometry": {"type": "Point", "coordinates": [2.257146680420341, 48.773708035421556]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f053018af612aca8fd12887fcaf193e64bfa209d", "fields": {"departement": "92", "stop_lat": 48.771502860374085, "code_postal": "92019", "stop_lon": 2.2526628072569346, "coord": [48.771502860374085, 2.2526628072569346], "stop_id": 5976722, "stop_desc": "FACE 2 AVENUE DU BOIS - 92019", "stop_name": "MAXIMILIEN ROBESPIERRE"}, "geometry": {"type": "Point", "coordinates": [2.2526628072569346, 48.771502860374085]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f6086869117f00f8c47b6630f0e363afac7e5d3e", "fields": {"departement": "92", "stop_lat": 48.77180032988904, "code_postal": "92019", "stop_lon": 2.253886131757641, "coord": [48.77180032988904, 2.253886131757641], "stop_id": 5976723, "stop_desc": "FACE 22 AVENUE DU BOIS - 92019", "stop_name": "MAXIMILIEN ROBESPIERRE"}, "geometry": {"type": "Point", "coordinates": [2.253886131757641, 48.77180032988904]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "171c31a9fe3ce26efc65a48765d934d50bc2e834", "fields": {"departement": "92", "stop_lat": 48.76867917458104, "code_postal": "92019", "stop_lon": 2.2506686367640447, "coord": [48.76867917458104, 2.2506686367640447], "stop_id": 5976724, "stop_desc": "6 AVENUE DE LA DIVISION LECLERC - 92019", "stop_name": "CYRANO DE BERGERAC"}, "geometry": {"type": "Point", "coordinates": [2.2506686367640447, 48.76867917458104]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "569c4597dd512fefeb752f8892b3f3aee3637413", "fields": {"departement": "92", "stop_lat": 48.76610283824545, "code_postal": "92019", "stop_lon": 2.255241315319122, "coord": [48.76610283824545, 2.255241315319122], "stop_id": 5976726, "stop_desc": "327 AVENUE DE LA DIVISION LECLERC - 92019", "stop_name": "FRANCIS DE PRESSENSE"}, "geometry": {"type": "Point", "coordinates": [2.255241315319122, 48.76610283824545]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "34d613c901ebc1ab1cb0994dbbe74e699437e078", "fields": {"departement": "92", "stop_lat": 48.76541462761812, "code_postal": "92019", "stop_lon": 2.2610615768725446, "coord": [48.76541462761812, 2.2610615768725446], "stop_id": 5976729, "stop_desc": "FACE 305 AVENUE DE LA DIVISION LECLERC - 92019", "stop_name": "BUTTE ROUGE - CITE JARDINS"}, "geometry": {"type": "Point", "coordinates": [2.2610615768725446, 48.76541462761812]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5482e862ee9ad0faadea40d12a3add52b64a4378", "fields": {"departement": "92", "stop_lat": 48.76357946332891, "code_postal": "92019", "stop_lon": 2.2736403109029157, "coord": [48.76357946332891, 2.2736403109029157], "stop_id": 5976732, "stop_desc": "203 AVENUE DE LA DIVISION LECLERC - 92019", "stop_name": "LES VALLEES"}, "geometry": {"type": "Point", "coordinates": [2.2736403109029157, 48.76357946332891]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2c2d0a116568fc49356810bdc7d46fa0f5d20970", "fields": {"departement": "92", "stop_lat": 48.762936826296524, "code_postal": "92019", "stop_lon": 2.282709331226945, "coord": [48.762936826296524, 2.282709331226945], "stop_id": 5976736, "stop_desc": "75 RUE VINCENT FAYO - 92019", "stop_name": "CARREFOUR DU 19 MARS 1962"}, "geometry": {"type": "Point", "coordinates": [2.282709331226945, 48.762936826296524]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f227822b1631e96beddf9b82d23f60558352e043", "fields": {"departement": "92", "stop_lat": 48.770791352463455, "code_postal": "92019", "stop_lon": 2.280457480051415, "coord": [48.770791352463455, 2.280457480051415], "stop_id": 5976743, "stop_desc": "40-42 RUE JEAN LONGUET - 92019", "stop_name": "PRES HAUTS"}, "geometry": {"type": "Point", "coordinates": [2.280457480051415, 48.770791352463455]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "134a3d8a9c2a96a66dcf9c79f846d418cdfbf722", "fields": {"departement": "92", "stop_lat": 48.76406362158655, "code_postal": "92019", "stop_lon": 2.2714371907722835, "coord": [48.76406362158655, 2.2714371907722835], "stop_id": 5976751, "stop_desc": "FACE 231 AVENUE DE LA DIVISION LECLERC - 92019", "stop_name": "PRESIDENT ALLENDE"}, "geometry": {"type": "Point", "coordinates": [2.2714371907722835, 48.76406362158655]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f4f2f53093d203d71ad134b5e7f407f6e7b6978e", "fields": {"departement": "92", "stop_lat": 48.7942551077991, "code_postal": "92032", "stop_lon": 2.2729361506767765, "coord": [48.7942551077991, 2.2729361506767765], "stop_id": 5976754, "stop_desc": "PLACE DE LA DIVISION LECLERC - 92032", "stop_name": "DIVISION LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.2729361506767765, 48.7942551077991]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "54ee6b8094541dd77656b3196d4edf998c7b9092", "fields": {"departement": "92", "stop_lat": 48.79576467289333, "code_postal": "92007", "stop_lon": 2.291503941539559, "coord": [48.79576467289333, 2.291503941539559], "stop_id": 5976757, "stop_desc": "FACE 23 RUE DE CHARTRES - 92007", "stop_name": "CHARTRES - BLANCHARD"}, "geometry": {"type": "Point", "coordinates": [2.291503941539559, 48.79576467289333]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "881304d3807fa0da468685e27b48070610511757", "fields": {"departement": "93", "stop_lat": 48.92827480422056, "code_postal": "93027", "stop_lon": 2.382972444955277, "coord": [48.92827480422056, 2.382972444955277], "stop_id": 5991320, "stop_desc": "66 AVENUE DU GENERAL LECLERC - 93027", "stop_name": "RUE DE L'UNION"}, "geometry": {"type": "Point", "coordinates": [2.382972444955277, 48.92827480422056]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "729be04b4aaa3d7cd1015a6766c0ded7660f5310", "fields": {"departement": "93", "stop_lat": 48.930070731784575, "code_postal": "93027", "stop_lon": 2.3866157569397, "coord": [48.930070731784575, 2.3866157569397], "stop_id": 5991322, "stop_desc": "AVENUE HENRI BARBUSSE - 93027", "stop_name": "6 ROUTES-TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.3866157569397, 48.930070731784575]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "082b2f9b8dacefba47458555bca5cee47ca27a83", "fields": {"departement": "93", "stop_lat": 48.92305719930438, "code_postal": "93029", "stop_lon": 2.4463553244077896, "coord": [48.92305719930438, 2.4463553244077896], "stop_id": 5991344, "stop_desc": "BOULEVARD PAUL VAILLANT COUTURIER - 93029", "stop_name": "MAIRIE DE DRANCY"}, "geometry": {"type": "Point", "coordinates": [2.4463553244077896, 48.92305719930438]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "db0db8d2a7ae2ff616191f886b1c8238e6044a6b", "fields": {"departement": "93", "stop_lat": 48.923047812383174, "code_postal": "93029", "stop_lon": 2.446791707406282, "coord": [48.923047812383174, 2.446791707406282], "stop_id": 5991345, "stop_desc": "5 BOULEVARD PAUL VAILLANT-COUTURIER - 93029", "stop_name": "MAIRIE DE DRANCY"}, "geometry": {"type": "Point", "coordinates": [2.446791707406282, 48.923047812383174]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "714fca5e182f043181470c3f1f19cef5999d55b3", "fields": {"departement": "93", "stop_lat": 48.91995250198689, "code_postal": "93029", "stop_lon": 2.4508489198538204, "coord": [48.91995250198689, 2.4508489198538204], "stop_id": 5991346, "stop_desc": "74 AVENUE JEAN JAURES - 93029", "stop_name": "PLACE DU 19 MARS 1962"}, "geometry": {"type": "Point", "coordinates": [2.4508489198538204, 48.91995250198689]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d98cfb8fbf9f511e980e060aec1d1cb376dd9c6f", "fields": {"departement": "93", "stop_lat": 48.91852929310951, "code_postal": "93029", "stop_lon": 2.4542276256211597, "coord": [48.91852929310951, 2.4542276256211597], "stop_id": 5991349, "stop_desc": "FACE 122 AVENUE JEAN JAURES - 93029", "stop_name": "SQUARE DE LA LIBERATION"}, "geometry": {"type": "Point", "coordinates": [2.4542276256211597, 48.91852929310951]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "511c4a764a6ac3d348e876419fd3eb217b59b693", "fields": {"departement": "93", "stop_lat": 48.91671987662045, "code_postal": "93029", "stop_lon": 2.4572779865013215, "coord": [48.91671987662045, 2.4572779865013215], "stop_id": 5991350, "stop_desc": "180-182 AVENUE JEAN JAURES - 93029", "stop_name": "BALZAC"}, "geometry": {"type": "Point", "coordinates": [2.4572779865013215, 48.91671987662045]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "32fa7dde4ec118491df0fbfd5797314b4e77331b", "fields": {"departement": "93", "stop_lat": 48.9142442678167, "code_postal": "93029", "stop_lon": 2.4613628324919063, "coord": [48.9142442678167, 2.4613628324919063], "stop_id": 5991352, "stop_desc": "240 AVENUE JEAN JAURES - 93029", "stop_name": "AVENUE DU BOIS D'AMOUR"}, "geometry": {"type": "Point", "coordinates": [2.4613628324919063, 48.9142442678167]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c495d449121d7c04af3e0067b1ced43e622c0f8a", "fields": {"departement": "93", "stop_lat": 48.90679444443228, "code_postal": "93008", "stop_lon": 2.4693204756522555, "coord": [48.90679444443228, 2.4693204756522555], "stop_id": 5991359, "stop_desc": "16 AVENUE EDOUARD VAILLANT - 93008", "stop_name": "PONT DE BONDY - ANATOLE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.4693204756522555, 48.90679444443228]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "594b67d9371ad2fd4a950228a177723cdb37c4c8", "fields": {"departement": "93", "stop_lat": 48.898677424919306, "code_postal": "93053", "stop_lon": 2.470812849856864, "coord": [48.898677424919306, 2.470812849856864], "stop_id": 5991361, "stop_desc": "155 AVENUE DE ROSNY - 93053", "stop_name": "BAUDIN"}, "geometry": {"type": "Point", "coordinates": [2.470812849856864, 48.898677424919306]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ce22c40dd9e56b3aa0a4ea60e82782a005f85977", "fields": {"departement": "93", "stop_lat": 48.89582081250454, "code_postal": "93053", "stop_lon": 2.461291449909493, "coord": [48.89582081250454, 2.461291449909493], "stop_id": 5991365, "stop_desc": "3 BOULEVARD DE LA REPUBLIQUE - 93053", "stop_name": "NOISY-LE-SEC RER"}, "geometry": {"type": "Point", "coordinates": [2.461291449909493, 48.89582081250454]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5ee01356746dbc75fd6f3fa7d98bc2a2859bfd51", "fields": {"departement": "93", "stop_lat": 48.8925707738656, "code_postal": "93053", "stop_lon": 2.4666264635101536, "coord": [48.8925707738656, 2.4666264635101536], "stop_id": 5991367, "stop_desc": "93 BOULEVARD DE LA REPUBLIQUE - 93053", "stop_name": "11 NOVEMBRE 1918"}, "geometry": {"type": "Point", "coordinates": [2.4666264635101536, 48.8925707738656]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b371a4ad88a453919ac4fbc794e6578b03df4878", "fields": {"departement": "93", "stop_lat": 48.88937553111442, "code_postal": "93053", "stop_lon": 2.4709660535408102, "coord": [48.88937553111442, 2.4709660535408102], "stop_id": 5991369, "stop_desc": "31 AVENUE DU GENERAL LECLERC - 93053", "stop_name": "LES CARROUGES"}, "geometry": {"type": "Point", "coordinates": [2.4709660535408102, 48.88937553111442]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e80e442c31468f390693ecd09f24825d6527efe9", "fields": {"departement": "93", "stop_lat": 48.87717850845737, "code_postal": "93064", "stop_lon": 2.479859315788344, "coord": [48.87717850845737, 2.479859315788344], "stop_id": 5991374, "stop_desc": "45 AVENUE DU GENERAL DE GAULLE - 93064", "stop_name": "GABRIEL PERI - DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.479859315788344, 48.87717850845737]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "825ae026833d51e7adc6714dd02f5d64c7532d7c", "fields": {"departement": "93", "stop_lat": 48.87258924183589, "code_postal": "93064", "stop_lon": 2.4845743335348023, "coord": [48.87258924183589, 2.4845743335348023], "stop_id": 5991377, "stop_desc": "RUE DU GENERAL GALLIENI - 93064", "stop_name": "COPERNIC"}, "geometry": {"type": "Point", "coordinates": [2.4845743335348023, 48.87258924183589]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "af11aab596361c0a641775729a2a09c6a7f5ff7e", "fields": {"departement": "92", "stop_lat": 48.81128070086906, "code_postal": "92020", "stop_lon": 2.3002947806132377, "coord": [48.81128070086906, 2.3002947806132377], "stop_id": 6000768, "stop_desc": "204 AVENUE DE PARIS - 92020", "stop_name": "CHATILLON-MONTROUGE"}, "geometry": {"type": "Point", "coordinates": [2.3002947806132377, 48.81128070086906]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5c56e7b963f633e3df2d7b5b8588420273e3b932", "fields": {"departement": "92", "stop_lat": 48.81128070086906, "code_postal": "92020", "stop_lon": 2.3002947806132377, "coord": [48.81128070086906, 2.3002947806132377], "stop_id": 6000769, "stop_desc": "204 AVENUE DE PARIS - 92020", "stop_name": "CHATILLON-MONTROUGE"}, "geometry": {"type": "Point", "coordinates": [2.3002947806132377, 48.81128070086906]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0aee3b6029c9ea39d2f672a52721b4b6c0895690", "fields": {"departement": "93", "stop_lat": 48.95807414604545, "code_postal": "93079", "stop_lon": 2.3495231584094824, "coord": [48.95807414604545, 2.3495231584094824], "stop_id": 6000774, "stop_desc": "RUE RAYMOND BROSSE - 93079", "stop_name": "GYMNASE JESSE OWENS"}, "geometry": {"type": "Point", "coordinates": [2.3495231584094824, 48.95807414604545]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "381f544e40fdd1c892f6cc6612fcd417ac70d2e9", "fields": {"departement": "92", "stop_lat": 48.73771040607843, "code_postal": "92002", "stop_lon": 2.290807636376131, "coord": [48.73771040607843, 2.290807636376131], "stop_id": 6041757, "stop_desc": "6-8 AVENUE DE LA FONTAINE MOUTON - 92002", "stop_name": "CENTRE COMMERCIAL DES BACONNETS"}, "geometry": {"type": "Point", "coordinates": [2.290807636376131, 48.73771040607843]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "73862015f2c58aa248e5275230e7fa7da5cf784f", "fields": {"departement": "91", "stop_lat": 48.72788290719792, "code_postal": "91377", "stop_lon": 2.2830857604019945, "coord": [48.72788290719792, 2.2830857604019945], "stop_id": 6041770, "stop_desc": "AVENUE NATIONALE - 91377", "stop_name": "AUSTRALIE"}, "geometry": {"type": "Point", "coordinates": [2.2830857604019945, 48.72788290719792]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "89941e05599c7a5cec0a8b08af7f8eac398104f9", "fields": {"departement": "91", "stop_lat": 48.73234073314556, "code_postal": "91377", "stop_lon": 2.2654037103202116, "coord": [48.73234073314556, 2.2654037103202116], "stop_id": 6041782, "stop_desc": "ROND-POINT DU PRESIDENT ALLENDE - 91377", "stop_name": "LYCEE FUSTEL DE COULANGES"}, "geometry": {"type": "Point", "coordinates": [2.2654037103202116, 48.73234073314556]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a3e1ffbcd5fb5e5b9ddd30b9b20076505fa2c218", "fields": {"departement": "91", "stop_lat": 48.7319476269789, "code_postal": "91377", "stop_lon": 2.2552000770430967, "coord": [48.7319476269789, 2.2552000770430967], "stop_id": 6041787, "stop_desc": "RUE DE VERSAILLES - 91377", "stop_name": "LYCEE DE VILGENIS"}, "geometry": {"type": "Point", "coordinates": [2.2552000770430967, 48.7319476269789]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dab9e40a98d5e3d1f3159b04b9f6122516de2e71", "fields": {"departement": "91", "stop_lat": 48.73035814816352, "code_postal": "91377", "stop_lon": 2.257335750179739, "coord": [48.73035814816352, 2.257335750179739], "stop_id": 6041790, "stop_desc": "AVENUE DU PRESIDENT ALLENDE - 91377", "stop_name": "PRESIDENT ALLENDE"}, "geometry": {"type": "Point", "coordinates": [2.257335750179739, 48.73035814816352]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "66571adb2e383501474a87bdcb44fa3c1bea6e0c", "fields": {"departement": "91", "stop_lat": 48.725098774698225, "code_postal": "91377", "stop_lon": 2.2555912822924897, "coord": [48.725098774698225, 2.2555912822924897], "stop_id": 6041793, "stop_desc": "PISTE GARE ROUTIERE - 91377", "stop_name": "MASSY-PALAISEAU RER"}, "geometry": {"type": "Point", "coordinates": [2.2555912822924897, 48.725098774698225]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "99d3fcd17a1f525cb1235cca48b8e5a22d919abb", "fields": {"departement": "91", "stop_lat": 48.728684203818474, "code_postal": "91377", "stop_lon": 2.254254164683764, "coord": [48.728684203818474, 2.254254164683764], "stop_id": 6041795, "stop_desc": "AVENUE JEAN MONNET - 91377", "stop_name": "LES RUELLES"}, "geometry": {"type": "Point", "coordinates": [2.254254164683764, 48.728684203818474]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7e28b60968d386d90bac04552b7941627d3fa7a9", "fields": {"departement": "91", "stop_lat": 48.72838680512074, "code_postal": "91377", "stop_lon": 2.2531405445199626, "coord": [48.72838680512074, 2.2531405445199626], "stop_id": 6041796, "stop_desc": "48 AVENUE GEORGES CLEMENCEAU - 91377", "stop_name": "LES RUELLES"}, "geometry": {"type": "Point", "coordinates": [2.2531405445199626, 48.72838680512074]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8e9917aaf5674616ce1fd95da67fec61c12cb876", "fields": {"departement": "91", "stop_lat": 48.72963002949433, "code_postal": "91377", "stop_lon": 2.2572417613313376, "coord": [48.72963002949433, 2.2572417613313376], "stop_id": 6041797, "stop_desc": "42 RUE DES RUELLES - 91377", "stop_name": "CLOS DE VILLAINE"}, "geometry": {"type": "Point", "coordinates": [2.2572417613313376, 48.72963002949433]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "565da8ed6c51d505bac8b6250155817d19f3f822", "fields": {"departement": "91", "stop_lat": 48.73042093834977, "code_postal": "91377", "stop_lon": 2.2571454349224407, "coord": [48.73042093834977, 2.2571454349224407], "stop_id": 6041798, "stop_desc": "AVENUE DU PRESIDENT ALLENDE - 91377", "stop_name": "PRESIDENT ALLENDE."}, "geometry": {"type": "Point", "coordinates": [2.2571454349224407, 48.73042093834977]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "40aa7cb9cf60e35d2b0cecea9ecdbdde6fe562fb", "fields": {"departement": "91", "stop_lat": 48.73010344384926, "code_postal": "91377", "stop_lon": 2.2411132969119816, "coord": [48.73010344384926, 2.2411132969119816], "stop_id": 6041804, "stop_desc": "ROND-POINT DE VILGENIS - 91377", "stop_name": "ROND-POINT DU PILEU"}, "geometry": {"type": "Point", "coordinates": [2.2411132969119816, 48.73010344384926]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2f365ad2a939c6dc36dc948c71c9e6972cb090cb", "fields": {"departement": "91", "stop_lat": 48.729621028188234, "code_postal": "91377", "stop_lon": 2.244836985030906, "coord": [48.729621028188234, 2.244836985030906], "stop_id": 6041806, "stop_desc": "18 ROUTE DE PALAISEAU - 91377", "stop_name": "CENTRE COMMERCIAL DE MASSY"}, "geometry": {"type": "Point", "coordinates": [2.244836985030906, 48.729621028188234]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7d4564e3d925d5a5730b6a977c88a6a5a9b5f999", "fields": {"departement": "91", "stop_lat": 48.72751939756359, "code_postal": "91377", "stop_lon": 2.2358330041009435, "coord": [48.72751939756359, 2.2358330041009435], "stop_id": 6041812, "stop_desc": "FACE 76 RUE DE L'EFFORT MUTUEL - 91377", "stop_name": "MARCHE DU PILEU"}, "geometry": {"type": "Point", "coordinates": [2.2358330041009435, 48.72751939756359]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c94d264d84a44ec3a5914b0bc1725cc030eefe91", "fields": {"departement": "91", "stop_lat": 48.72768610654622, "code_postal": "91312", "stop_lon": 2.2311725630346166, "coord": [48.72768610654622, 2.2311725630346166], "stop_id": 6041813, "stop_desc": "1 RUE DE LA FAISANDERIE - 91312", "stop_name": "CENT MARCHES"}, "geometry": {"type": "Point", "coordinates": [2.2311725630346166, 48.72768610654622]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a88f757774373678759691c1b1b4d5af74d0125b", "fields": {"departement": "91", "stop_lat": 48.73218804916396, "code_postal": "91312", "stop_lon": 2.229818213513826, "coord": [48.73218804916396, 2.229818213513826], "stop_id": 6041816, "stop_desc": "8 BOULEVARD MARCEL CACHIN - 91312", "stop_name": "LE GYMNASE"}, "geometry": {"type": "Point", "coordinates": [2.229818213513826, 48.73218804916396]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b96490406ee3941da9256f4127ea2ac13b1e8b2c", "fields": {"departement": "91", "stop_lat": 48.73341147801444, "code_postal": "91312", "stop_lon": 2.2213368722574276, "coord": [48.73341147801444, 2.2213368722574276], "stop_id": 6041819, "stop_desc": "41 AVENUE ALBERT SARRAUT - 91312", "stop_name": "LA FERME"}, "geometry": {"type": "Point", "coordinates": [2.2213368722574276, 48.73341147801444]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "85189bae5e95b2c83a86447ce23b3a629d14fb78", "fields": {"departement": "91", "stop_lat": 48.73309659546756, "code_postal": "91312", "stop_lon": 2.221038643535873, "coord": [48.73309659546756, 2.221038643535873], "stop_id": 6041820, "stop_desc": "19 RUE PIERRE LESCOT - 91312", "stop_name": "LA FERME"}, "geometry": {"type": "Point", "coordinates": [2.221038643535873, 48.73309659546756]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8bd55fda7fb63adddb5e58110b8ca21add652175", "fields": {"departement": "91", "stop_lat": 48.73697131624232, "code_postal": "91312", "stop_lon": 2.2218181310526597, "coord": [48.73697131624232, 2.2218181310526597], "stop_id": 6041821, "stop_desc": "20 AVENUE ALBERT SARRAUT - 91312", "stop_name": "ALBERT SARRAUT"}, "geometry": {"type": "Point", "coordinates": [2.2218181310526597, 48.73697131624232]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f43e71d1c3a996926e7722c907e871bebbd8f1e3", "fields": {"departement": "91", "stop_lat": 48.7341581092343, "code_postal": "91635", "stop_lon": 2.2047170345579956, "coord": [48.7341581092343, 2.2047170345579956], "stop_id": 6041825, "stop_desc": "2 ROUTE DE SACLAY - 91635", "stop_name": "MAIRIE DE VAUHALLAN"}, "geometry": {"type": "Point", "coordinates": [2.2047170345579956, 48.7341581092343]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "71ef07d0e293898380ef5bcce25b4fef7795bc1b", "fields": {"departement": "91", "stop_lat": 48.734005429461135, "code_postal": "91635", "stop_lon": 2.204826127780347, "coord": [48.734005429461135, 2.204826127780347], "stop_id": 6041826, "stop_desc": "3 ROUTE DE SACLAY - 91635", "stop_name": "MAIRIE DE VAUHALLAN"}, "geometry": {"type": "Point", "coordinates": [2.204826127780347, 48.734005429461135]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "455d1cf27760b5b97814d1d76708407068c970fa", "fields": {"departement": "91", "stop_lat": 48.73140896975298, "code_postal": "91312", "stop_lon": 2.2330807793689016, "coord": [48.73140896975298, 2.2330807793689016], "stop_id": 6041832, "stop_desc": "FACE 151 BOULEVARD MARCEL CACHIN - 91312", "stop_name": "RUCHERES"}, "geometry": {"type": "Point", "coordinates": [2.2330807793689016, 48.73140896975298]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "df8fb2269dece74a9caf016062ac2841633fa081", "fields": {"departement": "92", "stop_lat": 48.736470364971034, "code_postal": "92002", "stop_lon": 2.2916920050958236, "coord": [48.736470364971034, 2.2916920050958236], "stop_id": 6041837, "stop_desc": "AVENUE DE LA FONTAINE MOUTON - 92002", "stop_name": "PRESIDENT JOHN FITZGERALD KENNEDY"}, "geometry": {"type": "Point", "coordinates": [2.2916920050958236, 48.736470364971034]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3ae8a1ef23398b4055181cd22ebdbef5f5e2eebb", "fields": {"departement": "91", "stop_lat": 48.72141008000624, "code_postal": "91689", "stop_lon": 2.3043389644207317, "coord": [48.72141008000624, 2.3043389644207317], "stop_id": 6041844, "stop_desc": "AVENUE LE CONCORDE - 91689", "stop_name": "CONCORDE"}, "geometry": {"type": "Point", "coordinates": [2.3043389644207317, 48.72141008000624]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "efc30c1a1c9a3e1a9eb427fcf187d631eccff06d", "fields": {"departement": "91", "stop_lat": 48.71781195788119, "code_postal": "91377", "stop_lon": 2.295552552495033, "coord": [48.71781195788119, 2.295552552495033], "stop_id": 6041845, "stop_desc": "FACE 66 RUE DES CHAMPARTS - 91377", "stop_name": "Z.A.C. DU PEROU"}, "geometry": {"type": "Point", "coordinates": [2.295552552495033, 48.71781195788119]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4aeab38a2047461ad217be65d97d1899d77da93e", "fields": {"departement": "91", "stop_lat": 48.707425732597464, "code_postal": "91161", "stop_lon": 2.3110432656858193, "coord": [48.707425732597464, 2.3110432656858193], "stop_id": 6041851, "stop_desc": "FACE 62 AVENUE MAZARIN - 91161", "stop_name": "CIMETIERE DE CHILLY-MAZARIN"}, "geometry": {"type": "Point", "coordinates": [2.3110432656858193, 48.707425732597464]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3af2a1a55ed252580864e4ce8d9e00c7b3454e26", "fields": {"departement": "91", "stop_lat": 48.70757856381556, "code_postal": "91161", "stop_lon": 2.3111654184174446, "coord": [48.70757856381556, 2.3111654184174446], "stop_id": 6041852, "stop_desc": "AVENUE MAZARIN - 91161", "stop_name": "CIMETIERE DE CHILLY-MAZARIN"}, "geometry": {"type": "Point", "coordinates": [2.3111654184174446, 48.70757856381556]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2e2bef068ae4b64de2c1619010c44656496c99d3", "fields": {"departement": "91", "stop_lat": 48.706042051347254, "code_postal": "91161", "stop_lon": 2.3136514533219743, "coord": [48.706042051347254, 2.3136514533219743], "stop_id": 6041854, "stop_desc": "32 AVENUE MAZARIN - 91161", "stop_name": "COLLEGE DE CHILLY-MAZARIN"}, "geometry": {"type": "Point", "coordinates": [2.3136514533219743, 48.706042051347254]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "df121837d378d6f8c4f9108717ad50abede15267", "fields": {"departement": "91", "stop_lat": 48.70668227845886, "code_postal": "91432", "stop_lon": 2.328793806915912, "coord": [48.70668227845886, 2.328793806915912], "stop_id": 6041865, "stop_desc": "3 AVENUE MARCEL TELOTTE - 91432", "stop_name": "GABRIEL FONTAINE"}, "geometry": {"type": "Point", "coordinates": [2.328793806915912, 48.70668227845886]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "369043429b3e68ffe442b3a4ba0250edfa768830", "fields": {"departement": "91", "stop_lat": 48.705559004419435, "code_postal": "91432", "stop_lon": 2.335502782802847, "coord": [48.705559004419435, 2.335502782802847], "stop_id": 6041867, "stop_desc": "RUE DE SAVIGNY - 91432", "stop_name": "PLACE LUCIEN BOILLEAU"}, "geometry": {"type": "Point", "coordinates": [2.335502782802847, 48.705559004419435]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5fb6b7d225cacdd687001f6692edd9dc05777d86", "fields": {"departement": "91", "stop_lat": 48.70617915310959, "code_postal": "91432", "stop_lon": 2.333153298254694, "coord": [48.70617915310959, 2.333153298254694], "stop_id": 6041869, "stop_desc": "10 AVENUE DU GENERAL WARABIOT - 91432", "stop_name": "MAIRIE DE MORANGIS"}, "geometry": {"type": "Point", "coordinates": [2.333153298254694, 48.70617915310959]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e53e0ffe509f08610ae4839ca64d1265f0fba46f", "fields": {"departement": "91", "stop_lat": 48.697317212120595, "code_postal": "91345", "stop_lon": 2.292826140253021, "coord": [48.697317212120595, 2.292826140253021], "stop_id": 6041872, "stop_desc": "2 RUE MICHEL VINCENT - 91345", "stop_name": "PLACE CHARLES STEBER"}, "geometry": {"type": "Point", "coordinates": [2.292826140253021, 48.697317212120595]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8ba9639ee5ecc14a85f7d4f072e77824656be6ba", "fields": {"departement": "91", "stop_lat": 48.69761622788545, "code_postal": "91345", "stop_lon": 2.299764489117, "coord": [48.69761622788545, 2.299764489117], "stop_id": 6041881, "stop_desc": "AVENUE DE L'ABBE PIERRE - 91345", "stop_name": "GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.299764489117, 48.69761622788545]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b4483277c7275fa246c53382e9bf1bc58b6dbb96", "fields": {"departement": "91", "stop_lat": 48.69547017628833, "code_postal": "91161", "stop_lon": 2.307600495734536, "coord": [48.69547017628833, 2.307600495734536], "stop_id": 6041887, "stop_desc": "52 RUE DE GRAVIGNY - 91161", "stop_name": "SAINT-ELOI"}, "geometry": {"type": "Point", "coordinates": [2.307600495734536, 48.69547017628833]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "83d0f29ee2a1613eccc5d95dc0675e2b4734bf13", "fields": {"departement": "91", "stop_lat": 48.69451817758564, "code_postal": "91161", "stop_lon": 2.3109547232875918, "coord": [48.69451817758564, 2.3109547232875918], "stop_id": 6041889, "stop_desc": "69 RUE PIERRE MENDES FRANCE - 91161", "stop_name": "GRAND JARDIN"}, "geometry": {"type": "Point", "coordinates": [2.3109547232875918, 48.69451817758564]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0ec38c5de11723b9cd4528058d4ed4960310495c", "fields": {"departement": "91", "stop_lat": 48.69448217799073, "code_postal": "91161", "stop_lon": 2.3107510765385917, "coord": [48.69448217799073, 2.3107510765385917], "stop_id": 6041890, "stop_desc": "56-58 RUE PIERRE MENDES FRANCE - 91161", "stop_name": "GRAND JARDIN"}, "geometry": {"type": "Point", "coordinates": [2.3107510765385917, 48.69448217799073]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7bed8a995a79d4164171d45e3920336ece243867", "fields": {"departement": "91", "stop_lat": 48.702294968215284, "code_postal": "91161", "stop_lon": 2.3202393083415003, "coord": [48.702294968215284, 2.3202393083415003], "stop_id": 6041896, "stop_desc": "FACE 36 AVENUE PIERRE BROSSOLETTE - 91161", "stop_name": "PLACE DE LA LIBERATION"}, "geometry": {"type": "Point", "coordinates": [2.3202393083415003, 48.702294968215284]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "94ac8648f73b87aae20f1182dde7eaf1b976b171", "fields": {"departement": "91", "stop_lat": 48.706996800991995, "code_postal": "91432", "stop_lon": 2.3278023479938312, "coord": [48.706996800991995, 2.3278023479938312], "stop_id": 6041898, "stop_desc": "FACE 43 RUE DU GENERAL LECLERC - 91432", "stop_name": "SQUARE - CONDORCET"}, "geometry": {"type": "Point", "coordinates": [2.3278023479938312, 48.706996800991995]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "814c9c37f7167cc6ac5a7741c2f1b1e740342636", "fields": {"departement": "91", "stop_lat": 48.69761622788545, "code_postal": "91345", "stop_lon": 2.299764489117, "coord": [48.69761622788545, 2.299764489117], "stop_id": 6041900, "stop_desc": "AVENUE DE L'ABBE PIERRE - 91345", "stop_name": "GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.299764489117, 48.69761622788545]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "34f8a06ba3b1c53e8a7cfb1d0ecd0927c460d18c", "fields": {"departement": "91", "stop_lat": 48.6996427594255, "code_postal": "91161", "stop_lon": 2.316519527030894, "coord": [48.6996427594255, 2.316519527030894], "stop_id": 6041906, "stop_desc": "AVENUE PIERRE BROSSOLETTE - 91161", "stop_name": "DIVISION LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.316519527030894, 48.6996427594255]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2062b40382ceacc8c5ebe3984a9ac35b35420caa", "fields": {"departement": "93", "stop_lat": 48.88337524506829, "code_postal": "93053", "stop_lon": 2.459640037898469, "coord": [48.88337524506829, 2.459640037898469], "stop_id": 4117628, "stop_desc": "AV DU 18 AVRIL 1944 - 93053", "stop_name": "NOUVEAU CIMETIERE"}, "geometry": {"type": "Point", "coordinates": [2.459640037898469, 48.88337524506829]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f7ec4598740a5872d4d7dca01dfdfeb87fd8d1ad", "fields": {"departement": "93", "stop_lat": 48.88749491926676, "code_postal": "93053", "stop_lon": 2.456160937155557, "coord": [48.88749491926676, 2.456160937155557], "stop_id": 4117641, "stop_desc": "12 BOULEVARD ROGER SALENGRO - 93053", "stop_name": "SALENGRO - AUFFRET"}, "geometry": {"type": "Point", "coordinates": [2.456160937155557, 48.88749491926676]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "22198041ef1789ca2f4d36763051bd1bef8726ad", "fields": {"departement": "93", "stop_lat": 48.89582081250454, "code_postal": "93053", "stop_lon": 2.461291449909493, "coord": [48.89582081250454, 2.461291449909493], "stop_id": 4117644, "stop_desc": "3 BOULEVARD DE LA REPUBLIQUE - 93053", "stop_name": "NOISY-LE-SEC RER"}, "geometry": {"type": "Point", "coordinates": [2.461291449909493, 48.89582081250454]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5a002a012e055f43c554946b0ad3006772a5f08d", "fields": {"departement": "93", "stop_lat": 48.878711214585806, "code_postal": "93053", "stop_lon": 2.4501726350137893, "coord": [48.878711214585806, 2.4501726350137893], "stop_id": 4117652, "stop_desc": "17 BOULEVARD DE LA BOISSIERE - 93053", "stop_name": "TROIS COMMUNES"}, "geometry": {"type": "Point", "coordinates": [2.4501726350137893, 48.878711214585806]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b52bb3d73f6185b8055f7d41dd723a9c011f45a6", "fields": {"departement": "93", "stop_lat": 48.90946775056652, "code_postal": "93008", "stop_lon": 2.447553768193413, "coord": [48.90946775056652, 2.447553768193413], "stop_id": 4117659, "stop_desc": "AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "PIERRE SEMARD"}, "geometry": {"type": "Point", "coordinates": [2.447553768193413, 48.90946775056652]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "451a54ae9ca8a0fe19462223db94a80d82c7f5b7", "fields": {"departement": "93", "stop_lat": 48.911252186179276, "code_postal": "93008", "stop_lon": 2.4420083335197096, "coord": [48.911252186179276, 2.4420083335197096], "stop_id": 4117660, "stop_desc": "AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "LIEUTENANT LEBRUN"}, "geometry": {"type": "Point", "coordinates": [2.4420083335197096, 48.911252186179276]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "14f78d33ab7001c15c5a7253f37edfe6c7eab045", "fields": {"departement": "93", "stop_lat": 48.91337793559649, "code_postal": "93029", "stop_lon": 2.4363813607487033, "coord": [48.91337793559649, 2.4363813607487033], "stop_id": 4117664, "stop_desc": "8 RUE ROGER SALENGRO - 93029", "stop_name": "ESCADRILLE NORMANDIE-NIEMEN - ROGER SALENGRO-TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.4363813607487033, 48.91337793559649]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8e27b86798bc28a4f24a89eb6e7032e21ff519dd", "fields": {"departement": "93", "stop_lat": 48.91720666615813, "code_postal": "93029", "stop_lon": 2.4360614223565733, "coord": [48.91720666615813, 2.4360614223565733], "stop_id": 4117667, "stop_desc": "FACE 89 RUE ROGER SALENGRO - 93029", "stop_name": "CHAVEZ - NIEUPORT"}, "geometry": {"type": "Point", "coordinates": [2.4360614223565733, 48.91720666615813]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3f0217cdf202edb7747b7f7570ed55982ad4d801", "fields": {"departement": "93", "stop_lat": 48.919568653703536, "code_postal": "93029", "stop_lon": 2.4379614248273005, "coord": [48.919568653703536, 2.4379614248273005], "stop_id": 4117669, "stop_desc": "FACE 37 RUE ROGER SALENGRO - 93029", "stop_name": "DANTON"}, "geometry": {"type": "Point", "coordinates": [2.4379614248273005, 48.919568653703536]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5a79980be3a744843fb5f6dd2d528eaf8d534030", "fields": {"departement": "93", "stop_lat": 48.9216835727608, "code_postal": "93029", "stop_lon": 2.4448386988498934, "coord": [48.9216835727608, 2.4448386988498934], "stop_id": 4117672, "stop_desc": "5 RUE DE LA REPUBLIQUE - 93029", "stop_name": "CHARLES GIDE"}, "geometry": {"type": "Point", "coordinates": [2.4448386988498934, 48.9216835727608]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e88151c55cb92bbdc9ce8637288e961def968e39", "fields": {"departement": "93", "stop_lat": 48.92181840151084, "code_postal": "93029", "stop_lon": 2.444811704374571, "coord": [48.92181840151084, 2.444811704374571], "stop_id": 4117673, "stop_desc": "FACE 5 RUE DE LA REPUBLIQUE - 93029", "stop_name": "CHARLES GIDE"}, "geometry": {"type": "Point", "coordinates": [2.444811704374571, 48.92181840151084]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4893896e5628a73e744bacb457f9c988705c5243", "fields": {"departement": "93", "stop_lat": 48.923047812383174, "code_postal": "93029", "stop_lon": 2.446791707406282, "coord": [48.923047812383174, 2.446791707406282], "stop_id": 4117674, "stop_desc": "5 BOULEVARD PAUL VAILLANT-COUTURIER - 93029", "stop_name": "MAIRIE DE DRANCY"}, "geometry": {"type": "Point", "coordinates": [2.446791707406282, 48.923047812383174]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "335f6482c29673c2787ed28fb39175fe862481a2", "fields": {"departement": "93", "stop_lat": 48.923066758422934, "code_postal": "93029", "stop_lon": 2.445728015336079, "coord": [48.923066758422934, 2.445728015336079], "stop_id": 4117675, "stop_desc": "RUE CHARLES DE GAULLE - 93029", "stop_name": "MAIRIE DE DRANCY"}, "geometry": {"type": "Point", "coordinates": [2.445728015336079, 48.923066758422934]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8e1bcc33a2918d6519a2d381cc87b86e23646cc7", "fields": {"departement": "93", "stop_lat": 48.924763737630265, "code_postal": "93029", "stop_lon": 2.4474226861997432, "coord": [48.924763737630265, 2.4474226861997432], "stop_id": 4117677, "stop_desc": "RUE ANATOLE FRANCE - 93029", "stop_name": "CIMETIERE DE DRANCY"}, "geometry": {"type": "Point", "coordinates": [2.4474226861997432, 48.924763737630265]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "caadbc04c8e75003f1af3070cd17c651fb96d8e0", "fields": {"departement": "93", "stop_lat": 48.93281739515088, "code_postal": "93029", "stop_lon": 2.455364753088356, "coord": [48.93281739515088, 2.455364753088356], "stop_id": 4117683, "stop_desc": "193 RUE ANATOLE FRANCE - 93029", "stop_name": "DRANCY RER"}, "geometry": {"type": "Point", "coordinates": [2.455364753088356, 48.93281739515088]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9574a6b7b04438a0b819a756f651ee53cefc3171", "fields": {"departement": "93", "stop_lat": 48.93906619547618, "code_postal": "93007", "stop_lon": 2.461326835644282, "coord": [48.93906619547618, 2.461326835644282], "stop_id": 4117688, "stop_desc": "54 AVENUE HENRI BARBUSSE - 93007", "stop_name": "HOTEL DE VILLE DU BLANC-MESNIL"}, "geometry": {"type": "Point", "coordinates": [2.461326835644282, 48.93906619547618]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c8e134639f985abf902f2ea1846e0d96c4f6cbcf", "fields": {"departement": "93", "stop_lat": 48.94782292734594, "code_postal": "93007", "stop_lon": 2.4485769306130054, "coord": [48.94782292734594, 2.4485769306130054], "stop_id": 4117699, "stop_desc": "RUE ALTRINCHAM - 93007", "stop_name": "ALTRINCHAM - LENINE"}, "geometry": {"type": "Point", "coordinates": [2.4485769306130054, 48.94782292734594]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5265190c1ca400137adf88e8e15402ccae4fe838", "fields": {"departement": "93", "stop_lat": 48.947391290249065, "code_postal": "93007", "stop_lon": 2.438806899433861, "coord": [48.947391290249065, 2.438806899433861], "stop_id": 4117705, "stop_desc": "7 RUE DES MARTYRS DE LA DEPORTATION - 93007", "stop_name": "MUSEE DE L'AIR ET DE L'ESPACE"}, "geometry": {"type": "Point", "coordinates": [2.438806899433861, 48.947391290249065]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e288adb4a7a95d9587335163a76cf4e9eb9aa568", "fields": {"departement": "93", "stop_lat": 48.94552541413175, "code_postal": "93007", "stop_lon": 2.4452020439489845, "coord": [48.94552541413175, 2.4452020439489845], "stop_id": 4117706, "stop_desc": "FACE 55BIS AVENUE GEORGES GUYNEMER - 93007", "stop_name": "MARIA VALTAT"}, "geometry": {"type": "Point", "coordinates": [2.4452020439489845, 48.94552541413175]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "96a174a90fe5efda607d6fe6140533c75f5cb0bf", "fields": {"departement": "93", "stop_lat": 48.9162860028772, "code_postal": "93057", "stop_lon": 2.497625358261496, "coord": [48.9162860028772, 2.497625358261496], "stop_id": 4118150, "stop_desc": "AVENUE DE ROME - 93057", "stop_name": "ROBERT SCHUMAN"}, "geometry": {"type": "Point", "coordinates": [2.497625358261496, 48.9162860028772]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4dd7558e20ac7a80ac8d2920d69f8e88df40a830", "fields": {"departement": "93", "stop_lat": 48.91082955769692, "code_postal": "93046", "stop_lon": 2.511379199677004, "coord": [48.91082955769692, 2.511379199677004], "stop_id": 4118153, "stop_desc": "FACE 10 RUE JULES GUESDE - 93046", "stop_name": "VICTOR HUGO-JULES GUESDE"}, "geometry": {"type": "Point", "coordinates": [2.511379199677004, 48.91082955769692]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6248e23e888c4cdef6a337a50bdaf9e8f9667efd", "fields": {"departement": "93", "stop_lat": 48.907969430629855, "code_postal": "93057", "stop_lon": 2.4935367931702235, "coord": [48.907969430629855, 2.4935367931702235], "stop_id": 4118156, "stop_desc": "11 AVENUE ARISTIDE BRIAND - 93057", "stop_name": "LA FOURCHE"}, "geometry": {"type": "Point", "coordinates": [2.4935367931702235, 48.907969430629855]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "da75d6e61aaba5faa8fd15e6858de6e8d3049788", "fields": {"departement": "94", "stop_lat": 48.75972109850383, "code_postal": "94034", "stop_lon": 2.318330844280497, "coord": [48.75972109850383, 2.318330844280497], "stop_id": 4124807, "stop_desc": "FACE 7-9 BOULEVARD PASTEUR - 94034", "stop_name": "PASTEUR"}, "geometry": {"type": "Point", "coordinates": [2.318330844280497, 48.75972109850383]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0e8587029c9fa135e2054b0754289d5e865ccd3a", "fields": {"departement": "94", "stop_lat": 48.76632849655934, "code_postal": "94038", "stop_lon": 2.3279547152132936, "coord": [48.76632849655934, 2.3279547152132936], "stop_id": 4124814, "stop_desc": "159 RUE DE CHALAIS - 94038", "stop_name": "CHALAIS - THERESE"}, "geometry": {"type": "Point", "coordinates": [2.3279547152132936, 48.76632849655934]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6f18060e7555d652d1b54b6e13078df5101801e4", "fields": {"departement": "94", "stop_lat": 48.78630894084454, "code_postal": "94016", "stop_lon": 2.329324906869928, "coord": [48.78630894084454, 2.329324906869928], "stop_id": 4124821, "stop_desc": "AVENUE DE LA DIVISION LECLERC - 94016", "stop_name": "LA PLAINE"}, "geometry": {"type": "Point", "coordinates": [2.329324906869928, 48.78630894084454]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "21343759ce669c88e887c1046487e87f3bec0d57", "fields": {"departement": "92", "stop_lat": 48.909016979537306, "code_postal": "92050", "stop_lon": 2.2162266830020974, "coord": [48.909016979537306, 2.2162266830020974], "stop_id": 4130523, "stop_desc": "334 AVENUE DE LA REPUBLIQUE - 92050", "stop_name": "LES SAULES"}, "geometry": {"type": "Point", "coordinates": [2.2162266830020974, 48.909016979537306]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b0940dbb672a18da9d3b633baf2816cf5ce9c69d", "fields": {"departement": "92", "stop_lat": 48.913340385698675, "code_postal": "92025", "stop_lon": 2.2261156162905245, "coord": [48.913340385698675, 2.2261156162905245], "stop_id": 4130526, "stop_desc": "482 RUE GABRIEL PERI - 92025", "stop_name": "VICTOR BASCH"}, "geometry": {"type": "Point", "coordinates": [2.2261156162905245, 48.913340385698675]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "81c9cc545b0049f5981af6bb8b0a7e4278d1b6d3", "fields": {"departement": "75", "stop_lat": 48.82247424034754, "code_postal": "75113", "stop_lon": 2.3585833443279376, "coord": [48.82247424034754, 2.3585833443279376], "stop_id": 4130576, "stop_desc": "109 AVENUE D'ITALIE - 75113", "stop_name": "MAISON BLANCHE"}, "geometry": {"type": "Point", "coordinates": [2.3585833443279376, 48.82247424034754]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "34518a1edbc0797a6502abd6aeb1d9a1b6c16905", "fields": {"departement": "78", "stop_lat": 48.94398566123074, "code_postal": "78586", "stop_lon": 2.185284227399462, "coord": [48.94398566123074, 2.185284227399462], "stop_id": 4146014, "stop_desc": "FACE 130 AVENUE DU GENERAL CHARLES DE GAULLE - 78586", "stop_name": "QUATRE CHEMINS"}, "geometry": {"type": "Point", "coordinates": [2.185284227399462, 48.94398566123074]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9aa6664ff321192955b73253bed1074adfdd2974", "fields": {"departement": "95", "stop_lat": 49.004717953484715, "code_postal": "95527", "stop_lon": 2.547769165629998, "coord": [49.004717953484715, 2.547769165629998], "stop_id": 4146089, "stop_desc": "RTE DU NOYER AU CHAT - 95527", "stop_name": "RUE DES VIGNES"}, "geometry": {"type": "Point", "coordinates": [2.547769165629998, 49.004717953484715]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a4f706ba650bb461b65a5c402d68bc2ed1ad2a6e", "fields": {"departement": "93", "stop_lat": 48.91859536998403, "code_postal": "93010", "stop_lon": 2.4763869562903142, "coord": [48.91859536998403, 2.4763869562903142], "stop_id": 4146103, "stop_desc": "18 AVENUE DE SURCOUF - 93010", "stop_name": "JARDINS DE LA NOUE"}, "geometry": {"type": "Point", "coordinates": [2.4763869562903142, 48.91859536998403]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6a5ce0b384765173516d8c71bccb1d956330059c", "fields": {"departement": "93", "stop_lat": 48.917972348346105, "code_postal": "93010", "stop_lon": 2.4788670820144523, "coord": [48.917972348346105, 2.4788670820144523], "stop_id": 4146104, "stop_desc": "AVENUE LEON JOUHAUX - 93010", "stop_name": "JOUHAUX - BLUM"}, "geometry": {"type": "Point", "coordinates": [2.4788670820144523, 48.917972348346105]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "58ab2a66c6ced120ad2beebcbef54b2e8a921798", "fields": {"departement": "93", "stop_lat": 48.91695910540304, "code_postal": "93010", "stop_lon": 2.484400525396555, "coord": [48.91695910540304, 2.484400525396555], "stop_id": 4146105, "stop_desc": "AV HENRI VARAGNAT - 93010", "stop_name": "RABELAIS"}, "geometry": {"type": "Point", "coordinates": [2.484400525396555, 48.91695910540304]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1084286808e62b3cf189ed5a20e7f9a8bcee781e", "fields": {"departement": "93", "stop_lat": 48.91332218067506, "code_postal": "93010", "stop_lon": 2.4820995089248123, "coord": [48.91332218067506, 2.4820995089248123], "stop_id": 4146106, "stop_desc": "AV HENRI VARAGNAT - 93010", "stop_name": "SUZANNE BUISSON"}, "geometry": {"type": "Point", "coordinates": [2.4820995089248123, 48.91332218067506]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a0b3639b42b5de581e2d6d78939ef16e56948f1e", "fields": {"departement": "75", "stop_lat": 48.84752230352113, "code_postal": "75120", "stop_lon": 2.406677811879984, "coord": [48.84752230352113, 2.406677811879984], "stop_id": 4146115, "stop_desc": "73 COURS DE VINCENNES - 75120", "stop_name": "PYRENEES - DOCTEUR NETTER"}, "geometry": {"type": "Point", "coordinates": [2.406677811879984, 48.84752230352113]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7d71dd6ca0b796881d0b809b593889dadf601290", "fields": {"departement": "93", "stop_lat": 48.928463917414284, "code_postal": "93007", "stop_lon": 2.4756360440448932, "coord": [48.928463917414284, 2.4756360440448932], "stop_id": 4146127, "stop_desc": "42 AVENUE PAUL VAILLANT COUTURIER - 93007", "stop_name": "QUEBEC"}, "geometry": {"type": "Point", "coordinates": [2.4756360440448932, 48.928463917414284]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d86c77835b68a624edcd6968545ad9b00f3bab7c", "fields": {"departement": "93", "stop_lat": 48.92212592273542, "code_postal": "93007", "stop_lon": 2.469659588543364, "coord": [48.92212592273542, 2.469659588543364], "stop_id": 4146130, "stop_desc": "66 AVENUE DE SUFFREN - 93007", "stop_name": "MATHILDE EMILIE"}, "geometry": {"type": "Point", "coordinates": [2.469659588543364, 48.92212592273542]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9cc705950b89a38c69d45a5e5ac7ab278f7eacef", "fields": {"departement": "93", "stop_lat": 48.91859536998403, "code_postal": "93010", "stop_lon": 2.4763869562903142, "coord": [48.91859536998403, 2.4763869562903142], "stop_id": 4146132, "stop_desc": "18 AVENUE DE SURCOUF - 93010", "stop_name": "JARDINS DE LA NOUE"}, "geometry": {"type": "Point", "coordinates": [2.4763869562903142, 48.91859536998403]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cf8f9da9cc94ad4c1ba2699f14c96c77097455bc", "fields": {"departement": "93", "stop_lat": 48.90667408580478, "code_postal": "93010", "stop_lon": 2.480172263344335, "coord": [48.90667408580478, 2.480172263344335], "stop_id": 4146138, "stop_desc": "ROUTE D'AULNAY - 93010", "stop_name": "AUGUSTE POLISSARD"}, "geometry": {"type": "Point", "coordinates": [2.480172263344335, 48.90667408580478]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d5c709729829f4adf5169905cd728a73d713c7d4", "fields": {"departement": "93", "stop_lat": 48.86580463070785, "code_postal": "93006", "stop_lon": 2.417954493910392, "coord": [48.86580463070785, 2.417954493910392], "stop_id": 4146139, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 93006", "stop_name": "GALLIENI-METRO"}, "geometry": {"type": "Point", "coordinates": [2.417954493910392, 48.86580463070785]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1327e47ee42d95dc11e41c7a25b7da898df461df", "fields": {"departement": "75", "stop_lat": 48.84919040171898, "code_postal": "75120", "stop_lon": 2.4125630899221813, "coord": [48.84919040171898, 2.4125630899221813], "stop_id": 4146144, "stop_desc": "111-113 RUE DE LAGNY - 75120", "stop_name": "HILSZ - LAGNY"}, "geometry": {"type": "Point", "coordinates": [2.4125630899221813, 48.84919040171898]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fa26bbbd9303bfffe299afa928fa4fcd5613d50a", "fields": {"departement": "95", "stop_lat": 48.97652646848082, "code_postal": "95585", "stop_lon": 2.377554412167228, "coord": [48.97652646848082, 2.377554412167228], "stop_id": 4146220, "stop_desc": "10 AVENUE AUGUSTE PERRET - 95585", "stop_name": "LES FLANADES"}, "geometry": {"type": "Point", "coordinates": [2.377554412167228, 48.97652646848082]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "245cb3cdf339d6960eb7c8cb811161226a89db5a", "fields": {"departement": "95", "stop_lat": 48.977696637028245, "code_postal": "95585", "stop_lon": 2.3713982809506327, "coord": [48.977696637028245, 2.3713982809506327], "stop_id": 4146221, "stop_desc": "24 AVENUE DU 8 MAI 1945 - 95585", "stop_name": "LES CHOLETTES"}, "geometry": {"type": "Point", "coordinates": [2.3713982809506327, 48.977696637028245]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5f0b3bbec0fa1a49677a25a1ca6e7ed33e39ea4f", "fields": {"departement": "93", "stop_lat": 48.970859338551605, "code_postal": "93059", "stop_lon": 2.365797197627149, "coord": [48.970859338551605, 2.365797197627149], "stop_id": 4146225, "stop_desc": "BOULEVARD JEAN MERMOZ - 93059", "stop_name": "JACQUES PREVERT"}, "geometry": {"type": "Point", "coordinates": [2.365797197627149, 48.970859338551605]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5955d8c9f376d86b074f2f17705f560d2cd2926a", "fields": {"departement": "93", "stop_lat": 48.96589019371525, "code_postal": "93059", "stop_lon": 2.363869967071234, "coord": [48.96589019371525, 2.363869967071234], "stop_id": 4146228, "stop_desc": "BOULEVARD JEAN MERMOZ - 93059", "stop_name": "ALCIDE D'ORBIGNY"}, "geometry": {"type": "Point", "coordinates": [2.363869967071234, 48.96589019371525]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0dae92c8697a9dcfcdd64517be83f0d8aa024e66", "fields": {"departement": "93", "stop_lat": 48.96349146022825, "code_postal": "93059", "stop_lon": 2.3605385650162742, "coord": [48.96349146022825, 2.3605385650162742], "stop_id": 4146230, "stop_desc": "BOULEVARD JEAN MERMOZ - 93059", "stop_name": "MAIRIE DE PIERREFITTE"}, "geometry": {"type": "Point", "coordinates": [2.3605385650162742, 48.96349146022825]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "32fa13acdc0f9611bcf8d691536e8833b0c2b98e", "fields": {"departement": "93", "stop_lat": 48.95892661445699, "code_postal": "93059", "stop_lon": 2.3585303983960872, "coord": [48.95892661445699, 2.3585303983960872], "stop_id": 4146231, "stop_desc": "62 AV LENINE - 93059", "stop_name": "SUZANNE VALADON"}, "geometry": {"type": "Point", "coordinates": [2.3585303983960872, 48.95892661445699]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b89a0b385b8ac21b2683f5a741643f91542fea21", "fields": {"departement": "93", "stop_lat": 48.95568243136831, "code_postal": "93059", "stop_lon": 2.3584744801995736, "coord": [48.95568243136831, 2.3584744801995736], "stop_id": 4146234, "stop_desc": "0 AVENUE LENINE - 93059", "stop_name": "JONCHEROLLES"}, "geometry": {"type": "Point", "coordinates": [2.3584744801995736, 48.95568243136831]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4e20cb82cbb4f45ff955af1d0a3ab43018f1ff35", "fields": {"departement": "93", "stop_lat": 48.9481427239018, "code_postal": "93066", "stop_lon": 2.3575845176403534, "coord": [48.9481427239018, 2.3575845176403534], "stop_id": 4146238, "stop_desc": "32 AVENUE ROGER SEMAT - 93066", "stop_name": "GUYNEMER (STADE AUGUSTE DELAUNE)"}, "geometry": {"type": "Point", "coordinates": [2.3575845176403534, 48.9481427239018]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "649301f9c3bcf49a6e3f73f593f3b151e63e063b", "fields": {"departement": "93", "stop_lat": 48.94213972325765, "code_postal": "93066", "stop_lon": 2.3565862504717936, "coord": [48.94213972325765, 2.3565862504717936], "stop_id": 4146241, "stop_desc": "134 RUE GABRIEL PERI - 93066", "stop_name": "BAUDELAIRE"}, "geometry": {"type": "Point", "coordinates": [2.3565862504717936, 48.94213972325765]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c133448a10a8bce80bcdd13eefe8e1002f61bfca", "fields": {"departement": "77", "stop_lat": 48.85542846460346, "code_postal": "77083", "stop_lon": 2.5930620858796303, "coord": [48.85542846460346, 2.5930620858796303], "stop_id": 4146254, "stop_desc": "91 AVENUE JEAN JAURES - 77083", "stop_name": "LES IRIS"}, "geometry": {"type": "Point", "coordinates": [2.5930620858796303, 48.85542846460346]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a962b2db90313e7985af0011e01e62cd7226a5fd", "fields": {"departement": "95", "stop_lat": 49.003314914863815, "code_postal": "95680", "stop_lon": 2.414371947898631, "coord": [49.003314914863815, 2.414371947898631], "stop_id": 4179574, "stop_desc": "42 AVENUE ALEXIS VARAGNE - 95680", "stop_name": "LES FLEURS"}, "geometry": {"type": "Point", "coordinates": [2.414371947898631, 49.003314914863815]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "93724c1e470f2454cad205f0aaa9d58fcb07b3d9", "fields": {"departement": "95", "stop_lat": 49.00409498522754, "code_postal": "95680", "stop_lon": 2.4170229483094174, "coord": [49.00409498522754, 2.4170229483094174], "stop_id": 4179575, "stop_desc": "11 RUE CHARLES PERRAULT - 95680", "stop_name": "SQUARE CHARLES PERRAULT"}, "geometry": {"type": "Point", "coordinates": [2.4170229483094174, 49.00409498522754]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2fa9f4d74a6ec09e9e69f6af83585ebcf3b1ff61", "fields": {"departement": "95", "stop_lat": 48.9987046365887, "code_postal": "95680", "stop_lon": 2.414802114163666, "coord": [48.9987046365887, 2.414802114163666], "stop_id": 4179578, "stop_desc": "6 AVENUE DE LA CONCORDE - 95680", "stop_name": "LES CARREAUX."}, "geometry": {"type": "Point", "coordinates": [2.414802114163666, 48.9987046365887]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bb3446ec45edbc41787c8cc50217e661d5c5c49e", "fields": {"departement": "93", "stop_lat": 48.923358266419875, "code_postal": "93027", "stop_lon": 2.384741000649786, "coord": [48.923358266419875, 2.384741000649786], "stop_id": 4179702, "stop_desc": "FACE 6 RUE SUZANNE MASSON - 93027", "stop_name": "LA COURNEUVE - AUBERVILLIERS RER"}, "geometry": {"type": "Point", "coordinates": [2.384741000649786, 48.923358266419875]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "716165917acd3d31a946df71146f127e0766831f", "fields": {"departement": "93", "stop_lat": 48.9258964168501, "code_postal": "93066", "stop_lon": 2.37385994419247, "coord": [48.9258964168501, 2.37385994419247], "stop_id": 4179708, "stop_desc": "12 AVENUE DU FRANC MOISIN - 93066", "stop_name": "FEDERICO GARCIA LORCA"}, "geometry": {"type": "Point", "coordinates": [2.37385994419247, 48.9258964168501]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8f4e69bb0402f1ee7db5179ba05c9e4c1270ffe3", "fields": {"departement": "93", "stop_lat": 48.93129126341453, "code_postal": "93066", "stop_lon": 2.3636066691817836, "coord": [48.93129126341453, 2.3636066691817836], "stop_id": 4179713, "stop_desc": "FACE 144 AVENUE PAUL VAILLANT COUTURIER - 93066", "stop_name": "PARC DE LA LEGION D'HONNEUR"}, "geometry": {"type": "Point", "coordinates": [2.3636066691817836, 48.93129126341453]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9a28fe061b63bf65b6777a33c67dbec62abd52c6", "fields": {"departement": "93", "stop_lat": 48.931174212983635, "code_postal": "93066", "stop_lon": 2.3645886690339566, "coord": [48.931174212983635, 2.3645886690339566], "stop_id": 4179714, "stop_desc": "4 AVENUE JEANNE D'ARC - 93066", "stop_name": "PARC DE LA LEGION D'HONNEUR"}, "geometry": {"type": "Point", "coordinates": [2.3645886690339566, 48.931174212983635]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ac6856989d4c494a38576714970a2caeff684277", "fields": {"departement": "93", "stop_lat": 48.93045686558686, "code_postal": "93066", "stop_lon": 2.3563500173144774, "coord": [48.93045686558686, 2.3563500173144774], "stop_id": 4179717, "stop_desc": "RUE GABRIEL PERI - 93066", "stop_name": "PORTE DE PARIS-METRO"}, "geometry": {"type": "Point", "coordinates": [2.3563500173144774, 48.93045686558686]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "226c3b2782e7081a63ebeed412374826d71a3f38", "fields": {"departement": "93", "stop_lat": 48.93565775010247, "code_postal": "93066", "stop_lon": 2.368301359312325, "coord": [48.93565775010247, 2.368301359312325], "stop_id": 4179724, "stop_desc": "4 AV DE SAINT-REMY - 93066", "stop_name": "AVENUE SAINT-REMY"}, "geometry": {"type": "Point", "coordinates": [2.368301359312325, 48.93565775010247]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2e526fca46bfbe504e13efac2557e695c92a9e37", "fields": {"departement": "93", "stop_lat": 48.941749817077586, "code_postal": "93066", "stop_lon": 2.3719339175660155, "coord": [48.941749817077586, 2.3719339175660155], "stop_id": 4179729, "stop_desc": "57 RUE HENRI BARBUSSE - 93066", "stop_name": "CLOVIS HUGUES"}, "geometry": {"type": "Point", "coordinates": [2.3719339175660155, 48.941749817077586]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6b149aad334a3ea14d66db335fee0e891bb9527b", "fields": {"departement": "93", "stop_lat": 48.946782607287815, "code_postal": "93066", "stop_lon": 2.3712687414000553, "coord": [48.946782607287815, 2.3712687414000553], "stop_id": 4179731, "stop_desc": "80-82 AVENUE DE STALINGRAD - 93066", "stop_name": "HENRI BARBUSSE"}, "geometry": {"type": "Point", "coordinates": [2.3712687414000553, 48.946782607287815]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "061081f17162717c6151ddff2a414197bde5c0e4", "fields": {"departement": "93", "stop_lat": 48.95262437736663, "code_postal": "93072", "stop_lon": 2.369880752664725, "coord": [48.95262437736663, 2.369880752664725], "stop_id": 4179736, "stop_desc": "RUE JEAN DURAND - 93072", "stop_name": "EMILE ZOLA"}, "geometry": {"type": "Point", "coordinates": [2.369880752664725, 48.95262437736663]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2edc4c97cbd4781f67b7839c70741d1c28443a6a", "fields": {"departement": "93", "stop_lat": 48.95351259232509, "code_postal": "93072", "stop_lon": 2.3748756024163633, "coord": [48.95351259232509, 2.3748756024163633], "stop_id": 4179738, "stop_desc": "AV GEORGE SAND - 93072", "stop_name": "CHARLES PEGUY"}, "geometry": {"type": "Point", "coordinates": [2.3748756024163633, 48.95351259232509]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f579c6b459d491ae95ae2c6a2d028e5acd1c2594", "fields": {"departement": "93", "stop_lat": 48.95386050312599, "code_postal": "93072", "stop_lon": 2.3822991123199295, "coord": [48.95386050312599, 2.3822991123199295], "stop_id": 4179746, "stop_desc": "26 AVENUE PAUL VAILLANT COUTURIER - 93072", "stop_name": "MAIRIE DE STAINS"}, "geometry": {"type": "Point", "coordinates": [2.3822991123199295, 48.95386050312599]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "261a9f09fa2d76d7fbeb8177dff3fa91fb120ab7", "fields": {"departement": "93", "stop_lat": 48.92992559027362, "code_postal": "93066", "stop_lon": 2.362051084336665, "coord": [48.92992559027362, 2.362051084336665], "stop_id": 4179752, "stop_desc": "0 AV PAUL VAILLANT COUTURIER - 93066", "stop_name": "HOPITAL"}, "geometry": {"type": "Point", "coordinates": [2.362051084336665, 48.92992559027362]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2dc1e174e1662b1993461aa6003ddbe399f0aba6", "fields": {"departement": "94", "stop_lat": 48.80690402627174, "code_postal": "94019", "stop_lon": 2.5571042790841676, "coord": [48.80690402627174, 2.5571042790841676], "stop_id": 4180925, "stop_desc": "ROUTE DU PLESSIS TREVISE - 94019", "stop_name": "BOIS L'ABBE"}, "geometry": {"type": "Point", "coordinates": [2.5571042790841676, 48.80690402627174]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "33c7c53cb83642867612881db4eebe6aa2c9f17b", "fields": {"departement": "94", "stop_lat": 48.8064148949998, "code_postal": "94017", "stop_lon": 2.5542719544018957, "coord": [48.8064148949998, 2.5542719544018957], "stop_id": 4180927, "stop_desc": "AVENUE BOILEAU - 94017", "stop_name": "HOUDON"}, "geometry": {"type": "Point", "coordinates": [2.5542719544018957, 48.8064148949998]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "960eb9d67270fce39ea7325010bd341a60a52bd9", "fields": {"departement": "94", "stop_lat": 48.80418174889629, "code_postal": "94019", "stop_lon": 2.546561397788981, "coord": [48.80418174889629, 2.546561397788981], "stop_id": 4180929, "stop_desc": "19 AVENUE BOILEAU - 94019", "stop_name": "CLAUDE BERNARD"}, "geometry": {"type": "Point", "coordinates": [2.546561397788981, 48.80418174889629]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b1ae2e5d92db4a46523a04d2c24c88e1d5c9270b", "fields": {"departement": "94", "stop_lat": 48.81079518388607, "code_postal": "94017", "stop_lon": 2.5202699488603515, "coord": [48.81079518388607, 2.5202699488603515], "stop_id": 4180938, "stop_desc": "FACE 30 AVENUE MARX DORMOY - 94017", "stop_name": "MARTELET"}, "geometry": {"type": "Point", "coordinates": [2.5202699488603515, 48.81079518388607]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c3354fde24c3c9bfc955ac422c864e9ed0602f1c", "fields": {"departement": "94", "stop_lat": 48.812500911822575, "code_postal": "94017", "stop_lon": 2.5156354416957813, "coord": [48.812500911822575, 2.5156354416957813], "stop_id": 4180939, "stop_desc": "1 AVENUE MARX DORMOY - 94017", "stop_name": "RUE DU MONUMENT"}, "geometry": {"type": "Point", "coordinates": [2.5156354416957813, 48.812500911822575]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ce524fb130183a7a0d9037d9687428c931b4668a", "fields": {"departement": "93", "stop_lat": 48.87006263142268, "code_postal": "93006", "stop_lon": 2.42086295744223, "coord": [48.87006263142268, 2.42086295744223], "stop_id": 4199320, "stop_desc": "FACE 6-10 RUE LENINE - 93006", "stop_name": "EGLISE DE BAGNOLET"}, "geometry": {"type": "Point", "coordinates": [2.42086295744223, 48.87006263142268]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "284bcbed7019997a5524db4e2487a90cf2da3b0e", "fields": {"departement": "93", "stop_lat": 48.868990600448974, "code_postal": "93006", "stop_lon": 2.4244033032798584, "coord": [48.868990600448974, 2.4244033032798584], "stop_id": 4199322, "stop_desc": "RUE LENINE - 93006", "stop_name": "PIERRE CURIE"}, "geometry": {"type": "Point", "coordinates": [2.4244033032798584, 48.868990600448974]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5f11753362fdf5574572feee3518a451021f06b1", "fields": {"departement": "93", "stop_lat": 48.866093989595534, "code_postal": "93006", "stop_lon": 2.4279948022338496, "coord": [48.866093989595534, 2.4279948022338496], "stop_id": 4199326, "stop_desc": "7 RUE DE LA NOUE - 93006", "stop_name": "LA NOUE"}, "geometry": {"type": "Point", "coordinates": [2.4279948022338496, 48.866093989595534]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "64fdec7006c9ac88a0d9467a937d1f33cd6b9b7a", "fields": {"departement": "93", "stop_lat": 48.86552451630694, "code_postal": "93048", "stop_lon": 2.432189521609298, "coord": [48.86552451630694, 2.432189521609298], "stop_id": 4199329, "stop_desc": "31 RUE DES CLOS FRANCAIS - 93048", "stop_name": "CLOS FRANCAIS"}, "geometry": {"type": "Point", "coordinates": [2.432189521609298, 48.86552451630694]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8abdf33dc998fdfa73862b7ac7072ee3b75ac64b", "fields": {"departement": "93", "stop_lat": 48.85901414180942, "code_postal": "93048", "stop_lon": 2.436481759345457, "coord": [48.85901414180942, 2.436481759345457], "stop_id": 4199333, "stop_desc": "15 AVENUE DE LA RESISTANCE - 93048", "stop_name": "CROIX DE CHAVAUX-METRO"}, "geometry": {"type": "Point", "coordinates": [2.436481759345457, 48.85901414180942]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d000e01d1a37cacf29b73c17ead87acfbc3ffb47", "fields": {"departement": "93", "stop_lat": 48.861156472716615, "code_postal": "93048", "stop_lon": 2.45273608142788, "coord": [48.861156472716615, 2.45273608142788], "stop_id": 4199345, "stop_desc": "AVENUE JEAN MOULIN - 93048", "stop_name": "NOUVEAU CIMETIERE DE MONTREUIL"}, "geometry": {"type": "Point", "coordinates": [2.45273608142788, 48.861156472716615]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cf2feaa0dd4ae861c48c044de35bb417ac7f2ea6", "fields": {"departement": "93", "stop_lat": 48.86284092235296, "code_postal": "93048", "stop_lon": 2.482149209358743, "coord": [48.86284092235296, 2.482149209358743], "stop_id": 4199362, "stop_desc": "289 BIS AVENUE VICTOR HUGO - 93048", "stop_name": "JULES GUESDE"}, "geometry": {"type": "Point", "coordinates": [2.482149209358743, 48.86284092235296]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0364c23dfd6756bddcd66aa260fd2a891858286a", "fields": {"departement": "94", "stop_lat": 48.85380076063956, "code_postal": "94033", "stop_lon": 2.4884161127614495, "coord": [48.85380076063956, 2.4884161127614495], "stop_id": 4199369, "stop_desc": "AVENUE DES OLYMPIADES - 94033", "stop_name": "VAL-DE-FONTENAY RER"}, "geometry": {"type": "Point", "coordinates": [2.4884161127614495, 48.85380076063956]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e1395cb22840cfc59d1c637bd2710f09abc927ec", "fields": {"departement": "93", "stop_lat": 48.845457082416395, "code_postal": "93051", "stop_lon": 2.5282357489753844, "coord": [48.845457082416395, 2.5282357489753844], "stop_id": 4208520, "stop_desc": "FACE 8 BOULEVARD DU MARECHAL FOCH - 93051", "stop_name": "MARX DORMOY-CARNOT"}, "geometry": {"type": "Point", "coordinates": [2.5282357489753844, 48.845457082416395]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f9545d3c0937b2538263b1c9a96d007ae4efc290", "fields": {"departement": "93", "stop_lat": 48.846768150627604, "code_postal": "93051", "stop_lon": 2.539788268441885, "coord": [48.846768150627604, 2.539788268441885], "stop_id": 4208523, "stop_desc": "58 RUE PIERRE BROSSOLETTTE - 93051", "stop_name": "ROUTE DE NEUILLY"}, "geometry": {"type": "Point", "coordinates": [2.539788268441885, 48.846768150627604]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "06ad23dcf606ea222b505a688f7f0593fed6605a", "fields": {"departement": "93", "stop_lat": 48.848057113244195, "code_postal": "93051", "stop_lon": 2.537573583016719, "coord": [48.848057113244195, 2.537573583016719], "stop_id": 4208524, "stop_desc": "FACE 114 BOULEVARD DU MARECHAL FOCH - 93051", "stop_name": "ROUTE DE NEUILLY"}, "geometry": {"type": "Point", "coordinates": [2.537573583016719, 48.848057113244195]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6f5540deb1b2ef758aa379b884fa68e165070ba0", "fields": {"departement": "93", "stop_lat": 48.848900736886335, "code_postal": "93051", "stop_lon": 2.5585623765321235, "coord": [48.848900736886335, 2.5585623765321235], "stop_id": 4208529, "stop_desc": "50 AVENUE EMILE COSSONNEAU - 93051", "stop_name": "CARREFOUR DE MALNOUE"}, "geometry": {"type": "Point", "coordinates": [2.5585623765321235, 48.848900736886335]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "be38d2c6eb4fcf39bcbdf5f25c062aae7237c8a6", "fields": {"departement": "93", "stop_lat": 48.853661095724256, "code_postal": "93051", "stop_lon": 2.5741496475069026, "coord": [48.853661095724256, 2.5741496475069026], "stop_id": 4208533, "stop_desc": "80 ROUTE DE GOURNAY - 93051", "stop_name": "LES PREVOYANTS"}, "geometry": {"type": "Point", "coordinates": [2.5741496475069026, 48.853661095724256]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a2abee5755a5387e2049d893eada253bf8988ae0", "fields": {"departement": "77", "stop_lat": 48.85542846460346, "code_postal": "77083", "stop_lon": 2.5930620858796303, "coord": [48.85542846460346, 2.5930620858796303], "stop_id": 4208544, "stop_desc": "91 AVENUE JEAN JAURES - 77083", "stop_name": "LES IRIS"}, "geometry": {"type": "Point", "coordinates": [2.5930620858796303, 48.85542846460346]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "21e82db5404ff49e8eb0d9787758d372d725f634", "fields": {"departement": "77", "stop_lat": 48.85239050434027, "code_postal": "77083", "stop_lon": 2.601381973860583, "coord": [48.85239050434027, 2.601381973860583], "stop_id": 4208548, "stop_desc": "FACE 8-6 RUE DE PARIS - 77083", "stop_name": "MAIRIE DE CHAMPS"}, "geometry": {"type": "Point", "coordinates": [2.601381973860583, 48.85239050434027]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "df11017ae181bfb7a5fbf1c84fe311fb85a82320", "fields": {"departement": "77", "stop_lat": 48.85258832961184, "code_postal": "77083", "stop_lon": 2.609322932107952, "coord": [48.85258832961184, 2.609322932107952], "stop_id": 4208550, "stop_desc": "RUE DE PARIS - 77083", "stop_name": "MAISON DE RETRAITE"}, "geometry": {"type": "Point", "coordinates": [2.609322932107952, 48.85258832961184]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7916881c5bd91ea45b9786321e4dc67df741d2f3", "fields": {"departement": "77", "stop_lat": 48.84735219191144, "code_postal": "77337", "stop_lon": 2.6155460194009392, "coord": [48.84735219191144, 2.6155460194009392], "stop_id": 4208556, "stop_desc": "COURS DES DEUX PARCS - 77337", "stop_name": "COMMISSARIAT"}, "geometry": {"type": "Point", "coordinates": [2.6155460194009392, 48.84735219191144]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b6fbf369571ce42aa31709ed0305ec0332b1a645", "fields": {"departement": "94", "stop_lat": 48.7858775513412, "code_postal": "94016", "stop_lon": 2.3298146286555395, "coord": [48.7858775513412, 2.3298146286555395], "stop_id": 3786305, "stop_desc": "R MARC SANGNIER - 94016", "stop_name": "PLACE EDOUARD HERRIOT"}, "geometry": {"type": "Point", "coordinates": [2.3298146286555395, 48.7858775513412]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ea33321d9925d70bbf232b85bea6df8ce5523051", "fields": {"departement": "94", "stop_lat": 48.78822358978264, "code_postal": "94016", "stop_lon": 2.333990158359735, "coord": [48.78822358978264, 2.333990158359735], "stop_id": 3786306, "stop_desc": "R FRANCOIS RUDE - 94016", "stop_name": "LA PLAINE"}, "geometry": {"type": "Point", "coordinates": [2.333990158359735, 48.78822358978264]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d90141ed5501052ecc063f2d82bd364d29dc07ac", "fields": {"departement": "75", "stop_lat": 48.82015648764433, "code_postal": "75113", "stop_lon": 2.3513960280804413, "coord": [48.82015648764433, 2.3513960280804413], "stop_id": 3792950, "stop_desc": "12 RUE GOUTHIERE - 75113", "stop_name": "POTERNE DES PEUPLIERS"}, "geometry": {"type": "Point", "coordinates": [2.3513960280804413, 48.82015648764433]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ea8a1f9eb8c975712df25eeefecd74367ad4207c", "fields": {"departement": "94", "stop_lat": 48.81567175666497, "code_postal": "94037", "stop_lon": 2.350183572948421, "coord": [48.81567175666497, 2.350183572948421], "stop_id": 3792953, "stop_desc": "FACE 35 RUE CHARLES FREROT - 94037", "stop_name": "MAIRIE DE GENTILLY"}, "geometry": {"type": "Point", "coordinates": [2.350183572948421, 48.81567175666497]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8178cb9c9a67163b066de207031e4a6b86d61e23", "fields": {"departement": "94", "stop_lat": 48.81352368758163, "code_postal": "94037", "stop_lon": 2.350183037847167, "coord": [48.81352368758163, 2.350183037847167], "stop_id": 3792954, "stop_desc": "8 RUE SAINT-ELOI - 94037", "stop_name": "JEAN JAURES - SAINT ELOI"}, "geometry": {"type": "Point", "coordinates": [2.350183037847167, 48.81352368758163]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c31a97b24b70736dbc850a12c20ac2075c6ea603", "fields": {"departement": "94", "stop_lat": 48.81166358951922, "code_postal": "94037", "stop_lon": 2.346195339589877, "coord": [48.81166358951922, 2.346195339589877], "stop_id": 3792955, "stop_desc": "FACE 1 RUE DU BOUT DU RANG - 94037", "stop_name": "BOUT DU RANG"}, "geometry": {"type": "Point", "coordinates": [2.346195339589877, 48.81166358951922]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c121c1354ff8bca327afa3ff136e35bf1f14b11c", "fields": {"departement": "94", "stop_lat": 48.805731980613565, "code_postal": "94003", "stop_lon": 2.3388466699122623, "coord": [48.805731980613565, 2.3388466699122623], "stop_id": 3792958, "stop_desc": "48 AVENUE FRANCOIS VINCENT RASPAIL - 94003", "stop_name": "PAUL DOUMER"}, "geometry": {"type": "Point", "coordinates": [2.3388466699122623, 48.805731980613565]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "21a554d7b4c81fda047a04eb2d5625567b59fcc1", "fields": {"departement": "94", "stop_lat": 48.78092539114513, "code_postal": "94038", "stop_lon": 2.3347114303236176, "coord": [48.78092539114513, 2.3347114303236176], "stop_id": 3792971, "stop_desc": "AVENUE ARISTIDE BRIAND - 94038", "stop_name": "RUE DES JARDINS"}, "geometry": {"type": "Point", "coordinates": [2.3347114303236176, 48.78092539114513]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "719a6231c3f05e2bc556a71a07ea62813e42626b", "fields": {"departement": "94", "stop_lat": 48.78029624321282, "code_postal": "94038", "stop_lon": 2.3352690648867527, "coord": [48.78029624321282, 2.3352690648867527], "stop_id": 3792972, "stop_desc": "AVENUE ARISTIDE BRIAND - 94038", "stop_name": "RUE DES JARDINS"}, "geometry": {"type": "Point", "coordinates": [2.3352690648867527, 48.78029624321282]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "94fae15d5b28aba1550f7bba36538425efd826eb", "fields": {"departement": "94", "stop_lat": 48.77630541298781, "code_postal": "94038", "stop_lon": 2.330767932472282, "coord": [48.77630541298781, 2.330767932472282], "stop_id": 3792974, "stop_desc": "30 AVENUE LARROUMES - 94038", "stop_name": "SOUS-PREFECTURE - ROSERAIE"}, "geometry": {"type": "Point", "coordinates": [2.330767932472282, 48.77630541298781]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c53c684ab26db6283d5c7fc029964174a66c91f6", "fields": {"departement": "94", "stop_lat": 48.77419327454434, "code_postal": "94038", "stop_lon": 2.3316656967534755, "coord": [48.77419327454434, 2.3316656967534755], "stop_id": 3792976, "stop_desc": "34-36 AVENUE DU GENERAL LECLERC - 94038", "stop_name": "LECLERC - CHALAIS"}, "geometry": {"type": "Point", "coordinates": [2.3316656967534755, 48.77419327454434]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d4fc6e35da0ff71768076556d4ea20e423409889", "fields": {"departement": "94", "stop_lat": 48.76106133960879, "code_postal": "94034", "stop_lon": 2.326405820962682, "coord": [48.76106133960879, 2.326405820962682], "stop_id": 3792982, "stop_desc": "FACE 39 RUE EMILE ZOLA - 94034", "stop_name": "CHARCOT - ZOLA"}, "geometry": {"type": "Point", "coordinates": [2.326405820962682, 48.76106133960879]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f7c02d7211863d01289589d279e7fc6049f3f697", "fields": {"departement": "92", "stop_lat": 48.735622570458304, "code_postal": "92002", "stop_lon": 2.2846811291647646, "coord": [48.735622570458304, 2.2846811291647646], "stop_id": 5244908, "stop_desc": "AVENUE DU NOYER DORE - 92002", "stop_name": "CENTRE COMMERCIAL - NOYER DORE"}, "geometry": {"type": "Point", "coordinates": [2.2846811291647646, 48.735622570458304]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "50f888b5abd8ea5b4cf12f506158b9447ded3585", "fields": {"departement": "92", "stop_lat": 48.9374526254832, "code_postal": "92036", "stop_lon": 2.2764005385463992, "coord": [48.9374526254832, 2.2764005385463992], "stop_id": 5244913, "stop_desc": "ROUTE PRINCIPALE DU PORT - 92036", "stop_name": "CENTRE DE VIE"}, "geometry": {"type": "Point", "coordinates": [2.2764005385463992, 48.9374526254832]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "066c4adf9294bfe8b36a80d12cb25ba7dd99650a", "fields": {"departement": "92", "stop_lat": 48.93892783859855, "code_postal": "92036", "stop_lon": 2.279154440214823, "coord": [48.93892783859855, 2.279154440214823], "stop_id": 5244915, "stop_desc": "0 RTE PRINCIPALE DU PORT - 92036", "stop_name": "DEBARCADERE"}, "geometry": {"type": "Point", "coordinates": [2.279154440214823, 48.93892783859855]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fb3157cc27973457cd76dd1d3cf0c7dbf90f8a19", "fields": {"departement": "92", "stop_lat": 48.94299631080269, "code_postal": "92036", "stop_lon": 2.2741293126156603, "coord": [48.94299631080269, 2.2741293126156603], "stop_id": 5244917, "stop_desc": "12 RTE DU MOLE 2 ET 3 - 92036", "stop_name": "OSCARO"}, "geometry": {"type": "Point", "coordinates": [2.2741293126156603, 48.94299631080269]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d1ba6e308a18048cf9256926414f0a30be7a4bf8", "fields": {"departement": "92", "stop_lat": 48.93956954489779, "code_postal": "92036", "stop_lon": 2.287188815748167, "coord": [48.93956954489779, 2.287188815748167], "stop_id": 5244920, "stop_desc": "ROUTE PRINCIPALE DU PORT - 92036", "stop_name": "MOLE CENTRAL"}, "geometry": {"type": "Point", "coordinates": [2.287188815748167, 48.93956954489779]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "75d8449de9270e3badb92f3b197d0ee177b01015", "fields": {"departement": "92", "stop_lat": 48.93964090031015, "code_postal": "92036", "stop_lon": 2.28592004573725, "coord": [48.93964090031015, 2.28592004573725], "stop_id": 5244921, "stop_desc": "ROUTE PRINCIPALE DU PORT - 92036", "stop_name": "MOLE CENTRAL"}, "geometry": {"type": "Point", "coordinates": [2.28592004573725, 48.93964090031015]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e70624a13cdb738450d43efee37d995d327b7ae9", "fields": {"departement": "92", "stop_lat": 48.94733982923478, "code_postal": "92036", "stop_lon": 2.279881774405817, "coord": [48.94733982923478, 2.279881774405817], "stop_id": 5244922, "stop_desc": "0 RTE DE LA SEINE - 92036", "stop_name": "CORUS"}, "geometry": {"type": "Point", "coordinates": [2.279881774405817, 48.94733982923478]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "02b157c446813c15ec1ddb0f35d852b515c014eb", "fields": {"departement": "92", "stop_lat": 48.94832048428063, "code_postal": "92036", "stop_lon": 2.282213851657548, "coord": [48.94832048428063, 2.282213851657548], "stop_id": 5244933, "stop_desc": "FACE 39 RTE DU BASSIN NUMERO 6 - 92036", "stop_name": "ROND-POINT SEINE"}, "geometry": {"type": "Point", "coordinates": [2.282213851657548, 48.94832048428063]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b70300f46cd5241fd30b83f5fa5586aa3f58dad1", "fields": {"departement": "92", "stop_lat": 48.9374526254832, "code_postal": "92036", "stop_lon": 2.2764005385463992, "coord": [48.9374526254832, 2.2764005385463992], "stop_id": 5244937, "stop_desc": "ROUTE PRINCIPALE DU PORT - 92036", "stop_name": "CENTRE DE VIE"}, "geometry": {"type": "Point", "coordinates": [2.2764005385463992, 48.9374526254832]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4c09612368b9a10d256d3ef1e0f440f1887648b0", "fields": {"departement": "92", "stop_lat": 48.938632104573415, "code_postal": "92036", "stop_lon": 2.2808872655868906, "coord": [48.938632104573415, 2.2808872655868906], "stop_id": 5244947, "stop_desc": "ROUTE PRINCIPALE DU PORT - 92036", "stop_name": "BASSIN N0 2"}, "geometry": {"type": "Point", "coordinates": [2.2808872655868906, 48.938632104573415]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4088d1888f96125f5fcdaa835f0ff64652694957", "fields": {"departement": "92", "stop_lat": 48.944838932927986, "code_postal": "92036", "stop_lon": 2.2952878495686044, "coord": [48.944838932927986, 2.2952878495686044], "stop_id": 5244954, "stop_desc": "ROUTE DU BASSIN NUMERO 6 - 92036", "stop_name": "BASSIN N0 5"}, "geometry": {"type": "Point", "coordinates": [2.2952878495686044, 48.944838932927986]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "909c690f2ebeb034beb15d835b6ed659c6e5794e", "fields": {"departement": "92", "stop_lat": 48.9374526254832, "code_postal": "92036", "stop_lon": 2.2764005385463992, "coord": [48.9374526254832, 2.2764005385463992], "stop_id": 5244977, "stop_desc": "ROUTE PRINCIPALE DU PORT - 92036", "stop_name": "CENTRE DE VIE"}, "geometry": {"type": "Point", "coordinates": [2.2764005385463992, 48.9374526254832]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4e990e6bae0bc2fc39c0145abab5aa76214312a0", "fields": {"departement": "92", "stop_lat": 48.93835357740893, "code_postal": "92036", "stop_lon": 2.281023984871198, "coord": [48.93835357740893, 2.281023984871198], "stop_id": 5244984, "stop_desc": "35 ROUTE PRINCIPALE DU PORT - 92036", "stop_name": "BASSIN N0 2"}, "geometry": {"type": "Point", "coordinates": [2.281023984871198, 48.93835357740893]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4d9bf793887648233f2cf60f3d43a0a34b483b28", "fields": {"departement": "92", "stop_lat": 48.94108199634376, "code_postal": "92036", "stop_lon": 2.2940085161142836, "coord": [48.94108199634376, 2.2940085161142836], "stop_id": 5244988, "stop_desc": "ROUTE PRINCIPALE DU PORT - 92036", "stop_name": "DARSE N0 5"}, "geometry": {"type": "Point", "coordinates": [2.2940085161142836, 48.94108199634376]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "503bb27f2b36dab69ed5c22a0097a468699eec08", "fields": {"departement": "92", "stop_lat": 48.94430863599829, "code_postal": "92036", "stop_lon": 2.295069988612095, "coord": [48.94430863599829, 2.295069988612095], "stop_id": 5244991, "stop_desc": "ROUTE DU BASSIN NUMERO 6 - 92036", "stop_name": "BASSIN N0 5"}, "geometry": {"type": "Point", "coordinates": [2.295069988612095, 48.94430863599829]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4e57897b933806ef369c76c137f17ba7cd05016b", "fields": {"departement": "92", "stop_lat": 48.94759789901477, "code_postal": "92036", "stop_lon": 2.2953674772990853, "coord": [48.94759789901477, 2.2953674772990853], "stop_id": 5244999, "stop_desc": "23 RTE DU BASSIN NUMERO 6 - 92036", "stop_name": "BASSIN N0 6"}, "geometry": {"type": "Point", "coordinates": [2.2953674772990853, 48.94759789901477]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9db9634788a77e63f2e162592d73f7e97e6bb23f", "fields": {"departement": "92", "stop_lat": 48.757537734352205, "code_postal": "92019", "stop_lon": 2.2705210539804392, "coord": [48.757537734352205, 2.2705210539804392], "stop_id": 5250525, "stop_desc": "ROND-POINT DES GRILLONS - 92019", "stop_name": "SOPHIE BARAT"}, "geometry": {"type": "Point", "coordinates": [2.2705210539804392, 48.757537734352205]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ebdc8f40fce8480cbc0cbc07b9ec27674bb66c05", "fields": {"departement": "75", "stop_lat": 48.878158015689465, "code_postal": "75116", "stop_lon": 2.280448865923247, "coord": [48.878158015689465, 2.280448865923247], "stop_id": 5251748, "stop_desc": "PLACE JOSEPH ET MARIE HACKIN - 75116", "stop_name": "PORTE MAILLOT - METRO - RER"}, "geometry": {"type": "Point", "coordinates": [2.280448865923247, 48.878158015689465]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b4b5d576079294337a17dbce62fc07b914a8b421", "fields": {"departement": "75", "stop_lat": 48.874944573894595, "code_postal": "75116", "stop_lon": 2.2708195655943415, "coord": [48.874944573894595, 2.2708195655943415], "stop_id": 5251750, "stop_desc": "ALLEE DE LONGCHAMP - 75116", "stop_name": "JARDIN D'ACCLIMATATION"}, "geometry": {"type": "Point", "coordinates": [2.2708195655943415, 48.874944573894595]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "45f8d2e85fec53d86634c05922adb2f5c3148f43", "fields": {"departement": "75", "stop_lat": 48.872640471620045, "code_postal": "75116", "stop_lon": 2.265059430779524, "coord": [48.872640471620045, 2.265059430779524], "stop_id": 5251753, "stop_desc": "ALLEE DE LONGCHAMP - 75116", "stop_name": "ROUTE DE LA MUETTE"}, "geometry": {"type": "Point", "coordinates": [2.265059430779524, 48.872640471620045]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6f46b4133b44376e5933363a75e5da59623399eb", "fields": {"departement": "75", "stop_lat": 48.87075879308113, "code_postal": "75116", "stop_lon": 2.2597623825111985, "coord": [48.87075879308113, 2.2597623825111985], "stop_id": 5251755, "stop_desc": "ALLEE DE LONGCHAMP - 75116", "stop_name": "ROUTE DES LACS"}, "geometry": {"type": "Point", "coordinates": [2.2597623825111985, 48.87075879308113]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c8b492947408321e3384defdfd212f71a9b14d7d", "fields": {"departement": "75", "stop_lat": 48.867039425612255, "code_postal": "75116", "stop_lon": 2.248856037918719, "coord": [48.867039425612255, 2.248856037918719], "stop_id": 5251756, "stop_desc": "ALLEE DE LONGCHAMP - 75116", "stop_name": "BAGATELLE - PRE CATELAN"}, "geometry": {"type": "Point", "coordinates": [2.248856037918719, 48.867039425612255]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dca57642a9c7c5a6ff93571eba5e4bc4308ec95a", "fields": {"departement": "92", "stop_lat": 48.86805906191408, "code_postal": "92073", "stop_lon": 2.222057619036776, "coord": [48.86805906191408, 2.222057619036776], "stop_id": 5251766, "stop_desc": "FACE 49 BOULEVARD HENRI SELLIER - 92073", "stop_name": "LONGCHAMP"}, "geometry": {"type": "Point", "coordinates": [2.222057619036776, 48.86805906191408]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9486f6c7d21f8ad2f3193b5bbb2325949cc77851", "fields": {"departement": "92", "stop_lat": 48.862806940257784, "code_postal": "92073", "stop_lon": 2.2185003886282835, "coord": [48.862806940257784, 2.2185003886282835], "stop_id": 5251769, "stop_desc": "BOULEVARD HENRI SELLIER - 92073", "stop_name": "GARIBALDI"}, "geometry": {"type": "Point", "coordinates": [2.2185003886282835, 48.862806940257784]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a74101d65e8cfb51da3d76f617352f4359dc19a0", "fields": {"departement": "92", "stop_lat": 48.86495981904738, "code_postal": "92063", "stop_lon": 2.2060310416999966, "coord": [48.86495981904738, 2.2060310416999966], "stop_id": 5251776, "stop_desc": "183 AVENUE JEAN JAURES - 92063", "stop_name": "PLACE DE LA PAIX"}, "geometry": {"type": "Point", "coordinates": [2.2060310416999966, 48.86495981904738]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b621df28710534c733584d5cc5aae50e0fced6b3", "fields": {"departement": "92", "stop_lat": 48.880623262018354, "code_postal": "92063", "stop_lon": 2.1823495283900023, "coord": [48.880623262018354, 2.1823495283900023], "stop_id": 5251791, "stop_desc": "140 AVENUE PAUL DOUMER - 92063", "stop_name": "RUEIL - VILLE"}, "geometry": {"type": "Point", "coordinates": [2.1823495283900023, 48.880623262018354]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5c4a9896c0bf0f3b12041d9e5a6b7a58a8ee2d6e", "fields": {"departement": "92", "stop_lat": 48.880673665885105, "code_postal": "92063", "stop_lon": 2.1796649666871524, "coord": [48.880673665885105, 2.1796649666871524], "stop_id": 5251793, "stop_desc": "6 AVENUE ALBERT 1ER - 92063", "stop_name": "ALBERT 1ER - RUEIL - VILLE"}, "geometry": {"type": "Point", "coordinates": [2.1796649666871524, 48.880673665885105]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0887e31940bef50a1a9a1af41c7f9cfaec520110", "fields": {"departement": "92", "stop_lat": 48.86489624581866, "code_postal": "92073", "stop_lon": 2.205431821442203, "coord": [48.86489624581866, 2.205431821442203], "stop_id": 5251799, "stop_desc": "AVENUE JEAN JAURES - 92073", "stop_name": "PLACE DE LA PAIX"}, "geometry": {"type": "Point", "coordinates": [2.205431821442203, 48.86489624581866]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ccf3dd24343535c537c163037e0ea880359e535c", "fields": {"departement": "93", "stop_lat": 48.880538625445055, "code_postal": "93063", "stop_lon": 2.436727356200238, "coord": [48.880538625445055, 2.436727356200238], "stop_id": 5289076, "stop_desc": "94 RUE DE LA REPUBLIQUE - 93063", "stop_name": "GABRIEL HUSSON"}, "geometry": {"type": "Point", "coordinates": [2.436727356200238, 48.880538625445055]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c4c3a3e766f0eabeb29fd7c40f2d834b5be77998", "fields": {"departement": "93", "stop_lat": 48.878870653419405, "code_postal": "93063", "stop_lon": 2.432241214103226, "coord": [48.878870653419405, 2.432241214103226], "stop_id": 5289077, "stop_desc": "FACE 58 RUE FLOREAL - 93063", "stop_name": "LES NOYERS"}, "geometry": {"type": "Point", "coordinates": [2.432241214103226, 48.878870653419405]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ec42caa4bf5d05ea979948482fdf72626a585795", "fields": {"departement": "93", "stop_lat": 48.87979861447409, "code_postal": "93045", "stop_lon": 2.4168725562657696, "coord": [48.87979861447409, 2.4168725562657696], "stop_id": 5289082, "stop_desc": "1 BOULEVARD DE LA LIBERTE - 93045", "stop_name": "MAIRIE DES LILAS"}, "geometry": {"type": "Point", "coordinates": [2.4168725562657696, 48.87979861447409]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6fa193f45159b65d73c61347675e6a980692f5c5", "fields": {"departement": "93", "stop_lat": 48.878911777815574, "code_postal": "93045", "stop_lon": 2.4124018763644015, "coord": [48.878911777815574, 2.4124018763644015], "stop_id": 5289083, "stop_desc": "71 RUE DE PARIS - 93045", "stop_name": "LES BRUYERES"}, "geometry": {"type": "Point", "coordinates": [2.4124018763644015, 48.878911777815574]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bac55fa211ce29fef80fddc4a34e7ab7bea21171", "fields": {"departement": "75", "stop_lat": 48.87481729402142, "code_postal": "75119", "stop_lon": 2.388429758539716, "coord": [48.87481729402142, 2.388429758539716], "stop_id": 5289086, "stop_desc": "133 RUE DE BELLEVILLE - 75119", "stop_name": "JOURDAIN"}, "geometry": {"type": "Point", "coordinates": [2.388429758539716, 48.87481729402142]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e590749a13d63874c448e9b63c6ff18b40f6bd0a", "fields": {"departement": "75", "stop_lat": 48.868039861543714, "code_postal": "75110", "stop_lon": 2.363955968897187, "coord": [48.868039861543714, 2.363955968897187], "stop_id": 5289091, "stop_desc": "12 PLACE DE LA REPUBLIQUE - 75110", "stop_name": "REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.363955968897187, 48.868039861543714]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "da74560aa414b1cc84e338ea8377c8afe754bf3f", "fields": {"departement": "75", "stop_lat": 48.86680908230982, "code_postal": "75103", "stop_lon": 2.3616803303586003, "coord": [48.86680908230982, 2.3616803303586003], "stop_id": 5289092, "stop_desc": "85 RUE DE TURBIGO - 75103", "stop_name": "TURBIGO - REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.3616803303586003, 48.86680908230982]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7a8512c90875052d7b70920d0c2c6f035fe012fb", "fields": {"departement": "75", "stop_lat": 48.86287390987719, "code_postal": "75103", "stop_lon": 2.354213758372903, "coord": [48.86287390987719, 2.354213758372903], "stop_id": 5289094, "stop_desc": "59 RUE BEAUBOURG - 75103", "stop_name": "GRENIER SAINT-LAZARE - QUARTIER DE L'HORLOGE"}, "geometry": {"type": "Point", "coordinates": [2.354213758372903, 48.86287390987719]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "72caed34d9d5a8331360742645f001115979d6b2", "fields": {"departement": "75", "stop_lat": 48.8579858907306, "code_postal": "75107", "stop_lon": 2.332936994185843, "coord": [48.8579858907306, 2.332936994185843], "stop_id": 5289101, "stop_desc": "4 RUE DES SAINTS-PERES - 75107", "stop_name": "PONT DU CARROUSEL - QUAI VOLTAIRE"}, "geometry": {"type": "Point", "coordinates": [2.332936994185843, 48.8579858907306]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fcb657afb7b6d3210338208f192b8fd0203f36fe", "fields": {"departement": "75", "stop_lat": 48.84195996643212, "code_postal": "75115", "stop_lon": 2.3194990816420824, "coord": [48.84195996643212, 2.3194990816420824], "stop_id": 5289109, "stop_desc": "8-10 BOULEVARD DE VAUGIRARD - 75115", "stop_name": "GARE MONTPARNASSE"}, "geometry": {"type": "Point", "coordinates": [2.3194990816420824, 48.84195996643212]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4d2135b5be2e0ad1993fe5878e28134b6c54a320", "fields": {"departement": "75", "stop_lat": 48.84109667094733, "code_postal": "75115", "stop_lon": 2.316463002196349, "coord": [48.84109667094733, 2.316463002196349], "stop_id": 5289110, "stop_desc": "44 BOULEVARD DE VAUGIRARD - 75115", "stop_name": "ARMORIQUE - MUSEE POSTAL"}, "geometry": {"type": "Point", "coordinates": [2.316463002196349, 48.84109667094733]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "542ec88411083a22b31cd9e8d25997493c069eb2", "fields": {"departement": "75", "stop_lat": 48.843217014382596, "code_postal": "75115", "stop_lon": 2.3127039743389797, "coord": [48.843217014382596, 2.3127039743389797], "stop_id": 5289111, "stop_desc": "31 BOULEVARD PASTEUR - 75115", "stop_name": "PASTEUR - LYCEE BUFFON"}, "geometry": {"type": "Point", "coordinates": [2.3127039743389797, 48.843217014382596]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b20812ff1b694ffe66ae1793c0b7a974c98f08fd", "fields": {"departement": "75", "stop_lat": 48.844960299515556, "code_postal": "75115", "stop_lon": 2.3113142107734683, "coord": [48.844960299515556, 2.3113142107734683], "stop_id": 5289112, "stop_desc": "FACE 4 BOULEVARD PASTEUR - 75115", "stop_name": "SEVRES - LECOURBE"}, "geometry": {"type": "Point", "coordinates": [2.3113142107734683, 48.844960299515556]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1435c02117999f3bca96bf0c56461fc4396abe83", "fields": {"departement": "75", "stop_lat": 48.847018927050215, "code_postal": "75115", "stop_lon": 2.2853172086036198, "coord": [48.847018927050215, 2.2853172086036198], "stop_id": 5289115, "stop_desc": "45 RUE LINOIS - 75115", "stop_name": "CHARLES MICHELS"}, "geometry": {"type": "Point", "coordinates": [2.2853172086036198, 48.847018927050215]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "160e60d33e6840a3177c60e17e39f7f3c4d1e749", "fields": {"departement": "92", "stop_lat": 48.836421364373635, "code_postal": "92012", "stop_lon": 2.2519579203710243, "coord": [48.836421364373635, 2.2519579203710243], "stop_id": 5289125, "stop_desc": "36 AVENUE EDOUARD VAILLANT - 92012", "stop_name": "HENRI MARTIN"}, "geometry": {"type": "Point", "coordinates": [2.2519579203710243, 48.836421364373635]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dbe1877be849b902def1185bf56f6234c5e9361c", "fields": {"departement": "92", "stop_lat": 48.83043815923514, "code_postal": "92012", "stop_lon": 2.2326097227781334, "coord": [48.83043815923514, 2.2326097227781334], "stop_id": 5289129, "stop_desc": "122 AVENUE DU GENERAL LECLERC - 92012", "stop_name": "PONT DE SEVRES"}, "geometry": {"type": "Point", "coordinates": [2.2326097227781334, 48.83043815923514]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "86cd8d2e3ace52a8f34509fc2c5ab5d6599fae3b", "fields": {"departement": "92", "stop_lat": 48.833818522727846, "code_postal": "92012", "stop_lon": 2.2446922540305154, "coord": [48.833818522727846, 2.2446922540305154], "stop_id": 5289132, "stop_desc": "101 AVENUE EDOUARD VAILLANT - 92012", "stop_name": "MARCEL SEMBAT-METRO"}, "geometry": {"type": "Point", "coordinates": [2.2446922540305154, 48.833818522727846]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "617a815eb54d7ac852983543bcba535b1d75efcd", "fields": {"departement": "92", "stop_lat": 48.83484557257652, "code_postal": "92012", "stop_lon": 2.247917034456035, "coord": [48.83484557257652, 2.247917034456035], "stop_id": 5289133, "stop_desc": "75 AVENUE EDOUARD VAILLANT - 92012", "stop_name": "RENE DESCARTES"}, "geometry": {"type": "Point", "coordinates": [2.247917034456035, 48.83484557257652]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cbb85fc235d3162b1620a563280af3d191412548", "fields": {"departement": "75", "stop_lat": 48.837127452662195, "code_postal": "75116", "stop_lon": 2.2593360874504773, "coord": [48.837127452662195, 2.2593360874504773], "stop_id": 5289135, "stop_desc": "124 BOULEVARD MURAT - 75116", "stop_name": "PORTE DE SAINT-CLOUD - MURAT"}, "geometry": {"type": "Point", "coordinates": [2.2593360874504773, 48.837127452662195]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6c032c99a867556017e9d07a7bdf957e7ec770cf", "fields": {"departement": "75", "stop_lat": 48.8409511553474, "code_postal": "75116", "stop_lon": 2.26568901604171, "coord": [48.8409511553474, 2.26568901604171], "stop_id": 5289137, "stop_desc": "167 AVENUE DE VERSAILLES - 75116", "stop_name": "VERSAILLES - EXELMANS"}, "geometry": {"type": "Point", "coordinates": [2.26568901604171, 48.8409511553474]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7054f7f2f5824e0e17a2a3da0aa3824293032e6a", "fields": {"departement": "75", "stop_lat": 48.847040191869645, "code_postal": "75116", "stop_lon": 2.273578821194911, "coord": [48.847040191869645, 2.273578821194911], "stop_id": 5289140, "stop_desc": "55 AVENUE DE VERSAILLES - 75116", "stop_name": "PONT MIRABEAU"}, "geometry": {"type": "Point", "coordinates": [2.273578821194911, 48.847040191869645]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e5fcbab5eabd6e259142619f73591b8ac285afe4", "fields": {"departement": "75", "stop_lat": 48.84092542778849, "code_postal": "75115", "stop_lon": 2.3138760334790764, "coord": [48.84092542778849, 2.3138760334790764], "stop_id": 5289147, "stop_desc": "52 BOULEVARD PASTEUR - 75115", "stop_name": "PASTEUR - FALGUIERE"}, "geometry": {"type": "Point", "coordinates": [2.3138760334790764, 48.84092542778849]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cb507ea3eeccf75a5ef74cd15181c1edb77e9fc4", "fields": {"departement": "75", "stop_lat": 48.85259344198745, "code_postal": "75106", "stop_lon": 2.3334277286474445, "coord": [48.85259344198745, 2.3334277286474445], "stop_id": 5289155, "stop_desc": "31-33 RUE DU FOUR - 75106", "stop_name": "BONAPARTE - SAINT-GERMAIN"}, "geometry": {"type": "Point", "coordinates": [2.3334277286474445, 48.85259344198745]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5572c020cdffc0cd6bdb371f9d488ec34f940035", "fields": {"departement": "75", "stop_lat": 48.866682718988855, "code_postal": "75103", "stop_lon": 2.3641868567643844, "coord": [48.866682718988855, 2.3641868567643844], "stop_id": 5289167, "stop_desc": "9 PLACE DE LA REPUBLIQUE - 75103", "stop_name": "REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.3641868567643844, 48.866682718988855]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "828a7e2bde73841d187d18bde942e6a535aad2da", "fields": {"departement": "75", "stop_lat": 48.87212533036264, "code_postal": "75120", "stop_lon": 2.3773915146330897, "coord": [48.87212533036264, 2.3773915146330897], "stop_id": 5289172, "stop_desc": "4 RUE DE BELLEVILLE - 75120", "stop_name": "BELLEVILLE"}, "geometry": {"type": "Point", "coordinates": [2.3773915146330897, 48.87212533036264]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a4f789b9b2fd7a31158a972b4ed1a194f66414d6", "fields": {"departement": "75", "stop_lat": 48.87477226370445, "code_postal": "75120", "stop_lon": 2.388647712129114, "coord": [48.87477226370445, 2.388647712129114], "stop_id": 5289174, "stop_desc": "134 RUE DE BELLEVILLE - 75120", "stop_name": "JOURDAIN"}, "geometry": {"type": "Point", "coordinates": [2.388647712129114, 48.87477226370445]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b6abd29a28fc62a490c0a9197003a196751d760f", "fields": {"departement": "75", "stop_lat": 48.87718030694225, "code_postal": "75120", "stop_lon": 2.407357926623049, "coord": [48.87718030694225, 2.407357926623049], "stop_id": 5289177, "stop_desc": "4 AVENUE DE LA PORTE DES LILAS - 75120", "stop_name": "PORTE DES LILAS-METRO"}, "geometry": {"type": "Point", "coordinates": [2.407357926623049, 48.87718030694225]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "40ff9d35d1ec89e92e737890c1a00938059dded4", "fields": {"departement": "93", "stop_lat": 48.87968189832887, "code_postal": "93045", "stop_lon": 2.416695236771681, "coord": [48.87968189832887, 2.416695236771681], "stop_id": 5289179, "stop_desc": "6 BOULEVARD DE LA LIBERTE - 93045", "stop_name": "MAIRIE DES LILAS"}, "geometry": {"type": "Point", "coordinates": [2.416695236771681, 48.87968189832887]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fd7b238abbe35e308834da9c32125cb025ddb4a7", "fields": {"departement": "91", "stop_lat": 48.7225358357411, "code_postal": "91377", "stop_lon": 2.267753875299475, "coord": [48.7225358357411, 2.267753875299475], "stop_id": 5298003, "stop_desc": "FACE AU 12-14 RUE ALEXANDRA DAVIS NEEL - 91377", "stop_name": "LEONARD DE VINCI"}, "geometry": {"type": "Point", "coordinates": [2.267753875299475, 48.7225358357411]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e3f7fd5dde7f2c578020522003af9ef2a27088ea", "fields": {"departement": "92", "stop_lat": 48.80956277466877, "code_postal": "92020", "stop_lon": 2.2964313994754675, "coord": [48.80956277466877, 2.2964313994754675], "stop_id": 5315272, "stop_desc": "FACE 22-24 R MARCELIN BERTHELOT - 92020", "stop_name": "MARCELIN BERTHELOT"}, "geometry": {"type": "Point", "coordinates": [2.2964313994754675, 48.80956277466877]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dbe868e1ea05cb2733db7d4826bc9cc5dd4d2b71", "fields": {"departement": "92", "stop_lat": 48.80801371203143, "code_postal": "92020", "stop_lon": 2.288064093805718, "coord": [48.80801371203143, 2.288064093805718], "stop_id": 5315277, "stop_desc": "R D'AYWAILLE - 92020", "stop_name": "STADE DE CHATILLON"}, "geometry": {"type": "Point", "coordinates": [2.288064093805718, 48.80801371203143]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4c93aaeef1223050d5ff4d85c91e7c8daec0db39", "fields": {"departement": "92", "stop_lat": 48.80607672207126, "code_postal": "92020", "stop_lon": 2.277942433381694, "coord": [48.80607672207126, 2.277942433381694], "stop_id": 5315287, "stop_desc": "87 R GAY LUSSAC - 92020", "stop_name": "COLLEGE GEORGE SAND"}, "geometry": {"type": "Point", "coordinates": [2.277942433381694, 48.80607672207126]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cd387c5a9d08f8f5fb3ff773e53b6c0528a9d2e0", "fields": {"departement": "92", "stop_lat": 48.802384199977695, "code_postal": "92020", "stop_lon": 2.280967157153532, "coord": [48.802384199977695, 2.280967157153532], "stop_id": 5315291, "stop_desc": "FACE 57 R LASEGUE - 92020", "stop_name": "CIMETIERE DE CHATILLON"}, "geometry": {"type": "Point", "coordinates": [2.280967157153532, 48.802384199977695]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b4ef30c7bb54296bc113598c0c18764c0da5685b", "fields": {"departement": "92", "stop_lat": 48.80122090468318, "code_postal": "92020", "stop_lon": 2.2931045919619266, "coord": [48.80122090468318, 2.2931045919619266], "stop_id": 5315300, "stop_desc": "BD DE LA LIBERTE - 92020", "stop_name": "LIBERTE"}, "geometry": {"type": "Point", "coordinates": [2.2931045919619266, 48.80122090468318]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b6f5772952e66fd866469bfa6e49ab536ac9b0e7", "fields": {"departement": "92", "stop_lat": 48.801373748209365, "code_postal": "92020", "stop_lon": 2.293240518156548, "coord": [48.801373748209365, 2.293240518156548], "stop_id": 5315301, "stop_desc": "BD DE LA LIBERTE - 92020", "stop_name": "LIBERTE"}, "geometry": {"type": "Point", "coordinates": [2.293240518156548, 48.801373748209365]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "05c1d12650ce5d9acd9d4b312bdfba106be81a51", "fields": {"departement": "92", "stop_lat": 48.79893847095858, "code_postal": "92020", "stop_lon": 2.2944126103761726, "coord": [48.79893847095858, 2.2944126103761726], "stop_id": 5315305, "stop_desc": "BD DE LA LIBERTE - 92020", "stop_name": "BAGNEUX"}, "geometry": {"type": "Point", "coordinates": [2.2944126103761726, 48.79893847095858]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4c09abefaa8b9b7a303a3a670984196666f003c7", "fields": {"departement": "75", "stop_lat": 48.828144659099536, "code_postal": "75112", "stop_lon": 2.390017246298964, "coord": [48.828144659099536, 2.390017246298964], "stop_id": 5325166, "stop_desc": "RUE ROBERT ETLIN - 75112", "stop_name": "PONT NATIONAL - QUAI DE BERCY"}, "geometry": {"type": "Point", "coordinates": [2.390017246298964, 48.828144659099536]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d755b668a847d1d71c6e0715e82a36f66e0405ca", "fields": {"departement": "75", "stop_lat": 48.901150697614995, "code_postal": "75119", "stop_lon": 2.386301939156553, "coord": [48.901150697614995, 2.386301939156553], "stop_id": 5355346, "stop_desc": "BOULEVARD DE LA COMMANDERIE - 75119", "stop_name": "PLACE AUGUSTE BARON"}, "geometry": {"type": "Point", "coordinates": [2.386301939156553, 48.901150697614995]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "62be9efbca600182108eacaebb37d895e96e03ab", "fields": {"departement": "93", "stop_lat": 48.90312888029698, "code_postal": "93001", "stop_lon": 2.3837545653612247, "coord": [48.90312888029698, 2.3837545653612247], "stop_id": 5355348, "stop_desc": "52 BOULEVARD FELIX FAURE - 93001", "stop_name": "KARMAN - FELIX FAURE"}, "geometry": {"type": "Point", "coordinates": [2.3837545653612247, 48.90312888029698]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b12355379d294d8d6cc36c0f0187d61bd066e947", "fields": {"departement": "93", "stop_lat": 48.90664421073287, "code_postal": "93001", "stop_lon": 2.3800631074504173, "coord": [48.90664421073287, 2.3800631074504173], "stop_id": 5355350, "stop_desc": "102 BOULEVARD FELIX FAURE - 93001", "stop_name": "FELIX FAURE - RUE DES ECOLES"}, "geometry": {"type": "Point", "coordinates": [2.3800631074504173, 48.90664421073287]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8059e43c0d68918ee2b18a2baea1153b7814fc89", "fields": {"departement": "93", "stop_lat": 48.90651840163011, "code_postal": "93001", "stop_lon": 2.380035737052579, "coord": [48.90651840163011, 2.380035737052579], "stop_id": 5355351, "stop_desc": "87 BOULEVARD FELIX FAURE - 93001", "stop_name": "FELIX FAURE - RUE DES ECOLES"}, "geometry": {"type": "Point", "coordinates": [2.380035737052579, 48.90651840163011]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4f995f388ebef865cbe5ea3c49be9e77be328633", "fields": {"departement": "93", "stop_lat": 48.910430113513634, "code_postal": "93001", "stop_lon": 2.3729082526099017, "coord": [48.910430113513634, 2.3729082526099017], "stop_id": 5355355, "stop_desc": "26 RUE DE LA HAIE COQ - 93001", "stop_name": "CENTRE BUS AUBERVILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.3729082526099017, 48.910430113513634]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8db42c7152f8c991662c451b21a5bb7c5406b5f0", "fields": {"departement": "93", "stop_lat": 48.909918006184206, "code_postal": "93001", "stop_lon": 2.37238980367598, "coord": [48.909918006184206, 2.37238980367598], "stop_id": 5355356, "stop_desc": "RUE DU PILIER - 93001", "stop_name": "CENTRE BUS AUBERVILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.37238980367598, 48.909918006184206]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "32bb34885e901a47090d26f65e5c004d7374b794", "fields": {"departement": "93", "stop_lat": 48.90831920589587, "code_postal": "93001", "stop_lon": 2.3692120678694204, "coord": [48.90831920589587, 2.3692120678694204], "stop_id": 5355358, "stop_desc": "9 RUE DU PILIER - 93001", "stop_name": "18 RUE DU PILIER"}, "geometry": {"type": "Point", "coordinates": [2.3692120678694204, 48.90831920589587]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "494130b26bf4bc694c774b41c23cabd3fb4332bf", "fields": {"departement": "93", "stop_lat": 48.915473745634934, "code_postal": "93066", "stop_lon": 2.365793950971609, "coord": [48.915473745634934, 2.365793950971609], "stop_id": 5355366, "stop_desc": "6 RUE DU LANDY - 93066", "stop_name": "MURGER"}, "geometry": {"type": "Point", "coordinates": [2.365793950971609, 48.915473745634934]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4eaf9a7f1e682bdf259cdd244bc0bdc21b5ff3e7", "fields": {"departement": "93", "stop_lat": 48.91837810158188, "code_postal": "93066", "stop_lon": 2.358295561671536, "coord": [48.91837810158188, 2.358295561671536], "stop_id": 5355370, "stop_desc": "3 RUE FRANCIS DE PRESSENSE - 93066", "stop_name": "WILSON - DE PRESSENSE"}, "geometry": {"type": "Point", "coordinates": [2.358295561671536, 48.91837810158188]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fceb530a4248a203f2d8ce96e8cf9015f234c018", "fields": {"departement": "93", "stop_lat": 48.91823497894036, "code_postal": "93066", "stop_lon": 2.354081884797133, "coord": [48.91823497894036, 2.354081884797133], "stop_id": 5355372, "stop_desc": "10 AVENUE FRANCOIS MITTERRAND - 93066", "stop_name": "AVENUE DES FRUITIERS"}, "geometry": {"type": "Point", "coordinates": [2.354081884797133, 48.91823497894036]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9bb9cddfbc866ccde435aaafe7cc66f40264a433", "fields": {"departement": "93", "stop_lat": 48.91460496652382, "code_postal": "93066", "stop_lon": 2.3476720907060686, "coord": [48.91460496652382, 2.3476720907060686], "stop_id": 5355378, "stop_desc": "150 R DU LANDY - 93066", "stop_name": "LANDY - PLEYEL"}, "geometry": {"type": "Point", "coordinates": [2.3476720907060686, 48.91460496652382]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "25f988477765771113787d1d69e16f33a1288ae3", "fields": {"departement": "93", "stop_lat": 48.91760677298149, "code_postal": "93066", "stop_lon": 2.3457772708505646, "coord": [48.91760677298149, 2.3457772708505646], "stop_id": 5355380, "stop_desc": "23 RUE PLEYEL - 93066", "stop_name": "RUE PLEYEL"}, "geometry": {"type": "Point", "coordinates": [2.3457772708505646, 48.91760677298149]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a787f1b95aecc5e8243ad31137f1fbf083711a32", "fields": {"departement": "93", "stop_lat": 48.917292229522474, "code_postal": "93066", "stop_lon": 2.3457635830367742, "coord": [48.917292229522474, 2.3457635830367742], "stop_id": 5355381, "stop_desc": "54 RUE PLEYEL - 93066", "stop_name": "RUE PLEYEL"}, "geometry": {"type": "Point", "coordinates": [2.3457635830367742, 48.917292229522474]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "72c0031a6647b11f21bb0f34e9d5ac6b5cff455f", "fields": {"departement": "93", "stop_lat": 48.91995249583406, "code_postal": "93066", "stop_lon": 2.3438412371492428, "coord": [48.91995249583406, 2.3438412371492428], "stop_id": 5355382, "stop_desc": "161 BOULEVARD ANATOLE FRANCE - 93066", "stop_name": "CARREFOUR PLEYEL"}, "geometry": {"type": "Point", "coordinates": [2.3438412371492428, 48.91995249583406]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c0bf97ff4e92b90800dfa79b0af8ae108f85ce07", "fields": {"departement": "93", "stop_lat": 48.92276555815781, "code_postal": "93066", "stop_lon": 2.340200382690003, "coord": [48.92276555815781, 2.340200382690003], "stop_id": 5355384, "stop_desc": "6 RUE AMPERE - 93066", "stop_name": "RUE AMPERE"}, "geometry": {"type": "Point", "coordinates": [2.340200382690003, 48.92276555815781]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "964c91da536952f91094a6c0f92b333b63e862f5", "fields": {"departement": "93", "stop_lat": 48.920635684204804, "code_postal": "93070", "stop_lon": 2.336450103530589, "coord": [48.920635684204804, 2.336450103530589], "stop_id": 5355386, "stop_desc": "FACE 104 R DE SAINT-DENIS - 93070", "stop_name": "RUE NICOLAU"}, "geometry": {"type": "Point", "coordinates": [2.336450103530589, 48.920635684204804]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f1e1c502c9d4fc03d5c4cd783f5d2dcd0cefcc4b", "fields": {"departement": "92", "stop_lat": 48.79153843504976, "code_postal": "92032", "stop_lon": 2.2867329978586195, "coord": [48.79153843504976, 2.2867329978586195], "stop_id": 5370702, "stop_desc": "FACE 75 RUE BOUCICAUT - 92032", "stop_name": "MAIRIE DE FONTENAY-AUX-ROSES"}, "geometry": {"type": "Point", "coordinates": [2.2867329978586195, 48.79153843504976]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8d1ebcb1ab28739a4fd456ed931ea7ac2dbbda0d", "fields": {"departement": "92", "stop_lat": 48.79797396181116, "code_postal": "92020", "stop_lon": 2.2872165067124657, "coord": [48.79797396181116, 2.2872165067124657], "stop_id": 5370705, "stop_desc": "FACE 26 RUE DE FONTENAY - 92020", "stop_name": "PIERRELAIS"}, "geometry": {"type": "Point", "coordinates": [2.2872165067124657, 48.79797396181116]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6ef86b9326c16aa0f1a68f44cb0434452441a98c", "fields": {"departement": "92", "stop_lat": 48.801910761177105, "code_postal": "92020", "stop_lon": 2.2875120395185693, "coord": [48.801910761177105, 2.2875120395185693], "stop_id": 5370707, "stop_desc": "21 AVENUE GABRIEL PERI - 92020", "stop_name": "CENTRE DE CHATILLON - MARCHE"}, "geometry": {"type": "Point", "coordinates": [2.2875120395185693, 48.801910761177105]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f74de7b46f8b7240e9bcd2cf6b3e1685925b8b7f", "fields": {"departement": "92", "stop_lat": 48.80801371203143, "code_postal": "92020", "stop_lon": 2.288064093805718, "coord": [48.80801371203143, 2.288064093805718], "stop_id": 5370709, "stop_desc": "R D'AYWAILLE - 92020", "stop_name": "STADE DE CHATILLON"}, "geometry": {"type": "Point", "coordinates": [2.288064093805718, 48.80801371203143]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a4fc75e390c85698c605e3eb0f37273f2c3681e0", "fields": {"departement": "92", "stop_lat": 48.813375447567154, "code_postal": "92049", "stop_lon": 2.302280168230667, "coord": [48.813375447567154, 2.302280168230667], "stop_id": 5370713, "stop_desc": "189 AVENUE PIERRE BROSSOLETTE - 92049", "stop_name": "ETIENNE DOLET"}, "geometry": {"type": "Point", "coordinates": [2.302280168230667, 48.813375447567154]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "89cd919680f929cc349aace9f857eeaa24eea469", "fields": {"departement": "94", "stop_lat": 48.76276779077695, "code_postal": "94021", "stop_lon": 2.3578518672898063, "coord": [48.76276779077695, 2.3578518672898063], "stop_id": 5397305, "stop_desc": "AVENUE DE LA CITE - 94021", "stop_name": "MARCHE INTERNATIONAL DE RUNGIS"}, "geometry": {"type": "Point", "coordinates": [2.3578518672898063, 48.76276779077695]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "364f25a956108c18a414d38dab94c878fa67e9a0", "fields": {"departement": "92", "stop_lat": 48.82916931189616, "code_postal": "92012", "stop_lon": 2.230815376926983, "coord": [48.82916931189616, 2.230815376926983], "stop_id": 5419720, "stop_desc": "PISTE GARE ROUTIERE - 92012", "stop_name": "PONT DE SEVRES"}, "geometry": {"type": "Point", "coordinates": [2.230815376926983, 48.82916931189616]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "582c359061672e371af55a8c31ce258b8ed5e2d5", "fields": {"departement": "92", "stop_lat": 48.81096662517294, "code_postal": "92020", "stop_lon": 2.3019279796787178, "coord": [48.81096662517294, 2.3019279796787178], "stop_id": 5423656, "stop_desc": "PISTE GARE ROUTIERE - 92020", "stop_name": "CHATILLON - MONTROUGE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.3019279796787178, 48.81096662517294]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "735a44db1e83fa68d53ec9b5958d5389b717a4a1", "fields": {"departement": "92", "stop_lat": 48.80631879638491, "code_postal": "92020", "stop_lon": 2.298257276220564, "coord": [48.80631879638491, 2.298257276220564], "stop_id": 5423659, "stop_desc": "140 AVENUE DE LA REPUBLIQUE - 92020", "stop_name": "PIERRE SEMARD"}, "geometry": {"type": "Point", "coordinates": [2.298257276220564, 48.80631879638491]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "84bf083f140f7a6244a189372e9cb0d0f9dde727", "fields": {"departement": "92", "stop_lat": 48.79887152309433, "code_postal": "92020", "stop_lon": 2.2843858100166203, "coord": [48.79887152309433, 2.2843858100166203], "stop_id": 5423673, "stop_desc": "FACE 14 AVENUE DE LA DIVISION LECLERC - 92020", "stop_name": "DIVISION LECLERC - BROSSELETTE"}, "geometry": {"type": "Point", "coordinates": [2.2843858100166203, 48.79887152309433]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e08e8a50ffcf6df10bbfd8331e6519e32b054a8b", "fields": {"departement": "92", "stop_lat": 48.79316722656794, "code_postal": "92023", "stop_lon": 2.272298135045123, "coord": [48.79316722656794, 2.272298135045123], "stop_id": 5423678, "stop_desc": "CHEMIN DE LA FOSSE BAZIN - 92023", "stop_name": "DIVISION LECLERC - FOSSE BAZIN"}, "geometry": {"type": "Point", "coordinates": [2.272298135045123, 48.79316722656794]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5566a39b805194f553d6a8b3eefd2e7e1cd52de5", "fields": {"departement": "92", "stop_lat": 48.78513289467901, "code_postal": "92060", "stop_lon": 2.258829230564299, "coord": [48.78513289467901, 2.258829230564299], "stop_id": 5423683, "stop_desc": "42 RUE PAUL RIVET - 92060", "stop_name": "MOULIN DE LA TOUR"}, "geometry": {"type": "Point", "coordinates": [2.258829230564299, 48.78513289467901]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d13beddffa0ceab6da1ad44e79618abc770d418c", "fields": {"departement": "92", "stop_lat": 48.771502860374085, "code_postal": "92019", "stop_lon": 2.2526628072569346, "coord": [48.771502860374085, 2.2526628072569346], "stop_id": 5423692, "stop_desc": "FACE 2 AVENUE DU BOIS - 92019", "stop_name": "MAXIMILIEN ROBESPIERRE"}, "geometry": {"type": "Point", "coordinates": [2.2526628072569346, 48.771502860374085]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3ba754f3ead245be71702cd29d7f2bacbaafdc11", "fields": {"departement": "92", "stop_lat": 48.763651715473046, "code_postal": "92019", "stop_lon": 2.2742928179820256, "coord": [48.763651715473046, 2.2742928179820256], "stop_id": 5423703, "stop_desc": "FACE 197 AVENUE DE LA DIVISION LECLERC - 92019", "stop_name": "LES VALLEES"}, "geometry": {"type": "Point", "coordinates": [2.2742928179820256, 48.763651715473046]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1e382c58023a5a85fbed77bfdf13bab8448953aa", "fields": {"departement": "92", "stop_lat": 48.762936826296524, "code_postal": "92019", "stop_lon": 2.282709331226945, "coord": [48.762936826296524, 2.282709331226945], "stop_id": 5423706, "stop_desc": "75 RUE VINCENT FAYO - 92019", "stop_name": "CARREFOUR DU 19 MARS 1962"}, "geometry": {"type": "Point", "coordinates": [2.282709331226945, 48.762936826296524]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9f652d2b3e9a8eccc04a9eabc3455434a77b202a", "fields": {"departement": "92", "stop_lat": 48.76278393482754, "code_postal": "92019", "stop_lon": 2.2825055590305103, "coord": [48.76278393482754, 2.2825055590305103], "stop_id": 5423707, "stop_desc": "FACE 77 RUE VINCENT FAYO - 92019", "stop_name": "CARREFOUR DU 19 MARS 1962"}, "geometry": {"type": "Point", "coordinates": [2.2825055590305103, 48.76278393482754]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2f6b3e09cd60f2cffdd62f97c1720450ecba61bb", "fields": {"departement": "92", "stop_lat": 48.77271498057555, "code_postal": "92019", "stop_lon": 2.2808497223291235, "coord": [48.77271498057555, 2.2808497223291235], "stop_id": 5423715, "stop_desc": "4 RUE JEAN LONGUET - 92019", "stop_name": "HELENE ROEDERER"}, "geometry": {"type": "Point", "coordinates": [2.2808497223291235, 48.77271498057555]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a779c4f503ea3e018ebf207aeda4cc7de113d363", "fields": {"departement": "92", "stop_lat": 48.77956429702969, "code_postal": "92071", "stop_lon": 2.2818078784187574, "coord": [48.77956429702969, 2.2818078784187574], "stop_id": 5423718, "stop_desc": "2 AVENUE DE LA GARE - 92071", "stop_name": "ROBINSON RER"}, "geometry": {"type": "Point", "coordinates": [2.2818078784187574, 48.77956429702969]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fa27f6d1a9f793809a70c156bdb6809587a31ce5", "fields": {"departement": "75", "stop_lat": 48.822718391470836, "code_postal": "75113", "stop_lon": 2.347340585960503, "coord": [48.822718391470836, 2.347340585960503], "stop_id": 5454877, "stop_desc": "FACE 104 RUE BOBILLOT - 75113", "stop_name": "RUNGIS"}, "geometry": {"type": "Point", "coordinates": [2.347340585960503, 48.822718391470836]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "961d6388828fd60c5caffaa29683460baeaab6f6", "fields": {"departement": "94", "stop_lat": 48.76577673270161, "code_postal": "94022", "stop_lon": 2.4093014390791234, "coord": [48.76577673270161, 2.4093014390791234], "stop_id": 3730079, "stop_desc": "AVENUE JEAN JAURES - 94022", "stop_name": "CHOISY-LE-ROI RER"}, "geometry": {"type": "Point", "coordinates": [2.4093014390791234, 48.76577673270161]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "464656c5a6bb7cc45c6079930c7b703c3d7df6b8", "fields": {"departement": "94", "stop_lat": 48.7862655663759, "code_postal": "94028", "stop_lon": 2.4491419352937744, "coord": [48.7862655663759, 2.4491419352937744], "stop_id": 3730092, "stop_desc": "ROUTE DE CHOISY - 94028", "stop_name": "LA HAYE AUX MOINES"}, "geometry": {"type": "Point", "coordinates": [2.4491419352937744, 48.7862655663759]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2e573010812fd97f3f96a37f07436bd422ff1c37", "fields": {"departement": "94", "stop_lat": 48.75831681242365, "code_postal": "94073", "stop_lon": 2.3920534671005744, "coord": [48.75831681242365, 2.3920534671005744], "stop_id": 3730072, "stop_desc": "148 AVENUE DE VERSAILLES - 94073", "stop_name": "VICTOR BASCH"}, "geometry": {"type": "Point", "coordinates": [2.3920534671005744, 48.75831681242365]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "26a35b762d384c780e37c8e6fa858c390e9e8024", "fields": {"departement": "94", "stop_lat": 48.77315975756274, "code_postal": "94021", "stop_lon": 2.3396887601604144, "coord": [48.77315975756274, 2.3396887601604144], "stop_id": 3730649, "stop_desc": "11 BD PAUL VAILLANT COUTURIER - 94021", "stop_name": "JEAN MERMOZ - GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.3396887601604144, 48.77315975756274]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3f4ae26a370fb01208ac897af7f23de9197bfb51", "fields": {"departement": "94", "stop_lat": 48.75803247298405, "code_postal": "94034", "stop_lon": 2.3279697937010537, "coord": [48.75803247298405, 2.3279697937010537], "stop_id": 3730050, "stop_desc": "FACE 80 AVENUE DE LA DIVISION LECLERC - 94034", "stop_name": "LE CLOS LA GARENNE"}, "geometry": {"type": "Point", "coordinates": [2.3279697937010537, 48.75803247298405]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9bb2714d689815eec805e8950476d5182ce1ed26", "fields": {"departement": "94", "stop_lat": 48.77841770877821, "code_postal": "94038", "stop_lon": 2.3410761660577335, "coord": [48.77841770877821, 2.3410761660577335], "stop_id": 3730644, "stop_desc": "RUE HENRI THIRARD - 94038", "stop_name": "HENRI THIRARD-LEON JOUHAUX"}, "geometry": {"type": "Point", "coordinates": [2.3410761660577335, 48.77841770877821]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "99a0a20e7363f94cdbb461f7c02ee2d05af5f933", "fields": {"departement": "94", "stop_lat": 48.76391093626095, "code_postal": "94034", "stop_lon": 2.3317347812397253, "coord": [48.76391093626095, 2.3317347812397253], "stop_id": 3730653, "stop_desc": "FACE 94-96 RUE DE LA PAIX - 94034", "stop_name": "STADE DE LA PAIX"}, "geometry": {"type": "Point", "coordinates": [2.3317347812397253, 48.76391093626095]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5b5d5ea5adb995490038a75a2d0b9b6a5abc5df5", "fields": {"departement": "94", "stop_lat": 48.76113351614437, "code_postal": "94034", "stop_lon": 2.329967716107387, "coord": [48.76113351614437, 2.329967716107387], "stop_id": 3730655, "stop_desc": "FACE 50 AVENUE DE LA PAIX - 94034", "stop_name": "GALLIENI"}, "geometry": {"type": "Point", "coordinates": [2.329967716107387, 48.76113351614437]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e9fa0473db76ceaa818b363a4bf34bdd63f80af3", "fields": {"departement": "94", "stop_lat": 48.758436565941224, "code_postal": "94034", "stop_lon": 2.324027353751202, "coord": [48.758436565941224, 2.324027353751202], "stop_id": 3730658, "stop_desc": "40 RUE HENRI BARBUSSE - 94034", "stop_name": "EMILE ZOLA"}, "geometry": {"type": "Point", "coordinates": [2.324027353751202, 48.758436565941224]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "daa3e7d809ddf5439fb50e6b34b105f6c82fa96f", "fields": {"departement": "75", "stop_lat": 48.84982392159421, "code_postal": "75105", "stop_lon": 2.355775598313055, "coord": [48.84982392159421, 2.355775598313055], "stop_id": 3716971, "stop_desc": "FACE 3 QUAI DE LA TOURNELLE - 75105", "stop_name": "PONT DE LA TOURNELLE - CARDINAL LEMOINE"}, "geometry": {"type": "Point", "coordinates": [2.355775598313055, 48.84982392159421]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ebf8d3c167e41a64f316ee23c9769d1445a80be2", "fields": {"departement": "75", "stop_lat": 48.84539937588007, "code_postal": "75112", "stop_lon": 2.3686422351772856, "coord": [48.84539937588007, 2.3686422351772856], "stop_id": 3716927, "stop_desc": "1 BOULEVARD DIDEROT - 75112", "stop_name": "PONT D'AUSTERLITZ - QUAI DE LA RAPEE"}, "geometry": {"type": "Point", "coordinates": [2.3686422351772856, 48.84539937588007]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a74b7b7a6ed716eb8e0451a3a2718230e63255e4", "fields": {"departement": "75", "stop_lat": 48.84106444132994, "code_postal": "75112", "stop_lon": 2.37832060509252, "coord": [48.84106444132994, 2.37832060509252], "stop_id": 3716965, "stop_desc": "124 RUE DE BERCY - 75112", "stop_name": "MINISTERE DE L'ECONOMIE ET DES FINANCES"}, "geometry": {"type": "Point", "coordinates": [2.37832060509252, 48.84106444132994]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f2309b21b63f4563e5deaddbc4d83c83e8ab1cc3", "fields": {"departement": "75", "stop_lat": 48.85768938378177, "code_postal": "75106", "stop_lon": 2.3374453668304107, "coord": [48.85768938378177, 2.3374453668304107], "stop_id": 3716937, "stop_desc": "FACE 23 QUAI DE CONTI - 75106", "stop_name": "PONT DES ARTS - QUAI DE CONTI"}, "geometry": {"type": "Point", "coordinates": [2.3374453668304107, 48.85768938378177]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "155406a255851ec9dac5579bafe8678d68b03fdc", "fields": {"departement": "75", "stop_lat": 48.828144659099536, "code_postal": "75112", "stop_lon": 2.390017246298964, "coord": [48.828144659099536, 2.390017246298964], "stop_id": 3716919, "stop_desc": "RUE ROBERT ETLIN - 75112", "stop_name": "PONT NATIONAL - QUAI DE BERCY"}, "geometry": {"type": "Point", "coordinates": [2.390017246298964, 48.828144659099536]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2aa41d325bbafd6f9f7dcd10fbc8ca935b4e5537", "fields": {"departement": "94", "stop_lat": 48.820876767236136, "code_postal": "94018", "stop_lon": 2.4018920245725224, "coord": [48.820876767236136, 2.4018920245725224], "stop_id": 3716956, "stop_desc": "QUAI DES CARRIERES - 94018", "stop_name": "PONT NELSON MANDELA"}, "geometry": {"type": "Point", "coordinates": [2.4018920245725224, 48.820876767236136]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b7d37b5e18d400c287d0a4760c02c67c28084222", "fields": {"departement": "75", "stop_lat": 48.843744254309904, "code_postal": "75112", "stop_lon": 2.3736249556721383, "coord": [48.843744254309904, 2.3736249556721383], "stop_id": 3716926, "stop_desc": "FACE 179 RUE DE BERCY - 75112", "stop_name": "GARE DE LYON"}, "geometry": {"type": "Point", "coordinates": [2.3736249556721383, 48.843744254309904]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c392f30fa57c5f3ced7e120ee43fb19304c5df6e", "fields": {"departement": "75", "stop_lat": 48.84009247169696, "code_postal": "75112", "stop_lon": 2.3819688617960826, "coord": [48.84009247169696, 2.3819688617960826], "stop_id": 3716964, "stop_desc": "15 BOULEVARD DE BERCY - 75112", "stop_name": "GARE DE BERCY"}, "geometry": {"type": "Point", "coordinates": [2.3819688617960826, 48.84009247169696]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3596dcd477cc7019d5b418afabd526f78f2918ed", "fields": {"departement": "75", "stop_lat": 48.83426595556621, "code_postal": "75112", "stop_lon": 2.3883489193871736, "coord": [48.83426595556621, 2.3883489193871736], "stop_id": 3716899, "stop_desc": "38 RUE BARON LE ROY - 75112", "stop_name": "BARON LE ROY"}, "geometry": {"type": "Point", "coordinates": [2.3883489193871736, 48.83426595556621]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5b3748347c407cf874e0a0096f47eecdb26c5d58", "fields": {"departement": "75", "stop_lat": 48.844041290696545, "code_postal": "75112", "stop_lon": 2.3721273154078797, "coord": [48.844041290696545, 2.3721273154078797], "stop_id": 3716894, "stop_desc": "16 RUE VAN GOGH - 75112", "stop_name": "VAN GOGH"}, "geometry": {"type": "Point", "coordinates": [2.3721273154078797, 48.844041290696545]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8f86d27f6fd2aee48ce1fa07b674e41483ecf3b9", "fields": {"departement": "94", "stop_lat": 48.77163099807411, "code_postal": "94038", "stop_lon": 2.323303310425621, "coord": [48.77163099807411, 2.323303310425621], "stop_id": 3730358, "stop_desc": "81 AVENUE FLOUQUET - 94038", "stop_name": "COMMANDANT L'HERMINIER"}, "geometry": {"type": "Point", "coordinates": [2.323303310425621, 48.77163099807411]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d70a63b1ed92174087e304b7dec699d9994b65ae", "fields": {"departement": "94", "stop_lat": 48.79982621340434, "code_postal": "94016", "stop_lon": 2.323635866225698, "coord": [48.79982621340434, 2.323635866225698], "stop_id": 3730338, "stop_desc": "72 AVENUE CARNOT - 94016", "stop_name": "CARNOT - ARISTIDE BRIAND"}, "geometry": {"type": "Point", "coordinates": [2.323635866225698, 48.79982621340434]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "059bf149afc7ed06b633145e8738272ab71ffce8", "fields": {"departement": "94", "stop_lat": 48.78298330181174, "code_postal": "94038", "stop_lon": 2.32797893562584, "coord": [48.78298330181174, 2.32797893562584], "stop_id": 3730350, "stop_desc": "122 AVENUE DE LA DIVISION LECLERC - 94038", "stop_name": "STRASBOURG"}, "geometry": {"type": "Point", "coordinates": [2.32797893562584, 48.78298330181174]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "60c0e81304dbcc646282ca35b4ce3a32d4d9ebd0", "fields": {"departement": "94", "stop_lat": 48.764026360078205, "code_postal": "94034", "stop_lon": 2.3180573598666214, "coord": [48.764026360078205, 2.3180573598666214], "stop_id": 3730363, "stop_desc": "47 AVENUE DE LA LIBERTE - 94034", "stop_name": "MAISON D'ARRET"}, "geometry": {"type": "Point", "coordinates": [2.3180573598666214, 48.764026360078205]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e79d760cde8c07aa28da1c12b53dc3efdca602df", "fields": {"departement": "92", "stop_lat": 48.813532857337734, "code_postal": "92049", "stop_lon": 2.326122681236126, "coord": [48.813532857337734, 2.326122681236126], "stop_id": 3730332, "stop_desc": "105 AVENUE ARISTIDE BRIAND - 92049", "stop_name": "LEON GAMBETTA"}, "geometry": {"type": "Point", "coordinates": [2.326122681236126, 48.813532857337734]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ccaf49e5d0f6102d714c8ba5f6bd507e15d68394", "fields": {"departement": "94", "stop_lat": 48.758580343996215, "code_postal": "94034", "stop_lon": 2.3237418345669676, "coord": [48.758580343996215, 2.3237418345669676], "stop_id": 3730372, "stop_desc": "FACE 40 RUE HENRI BARBUSSE - 94034", "stop_name": "EMILE ZOLA"}, "geometry": {"type": "Point", "coordinates": [2.3237418345669676, 48.758580343996215]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "51668063aeffab39e57f095d682c016ec07c8a55", "fields": {"departement": "94", "stop_lat": 48.78450808719232, "code_postal": "94076", "stop_lon": 2.366225225199101, "coord": [48.78450808719232, 2.366225225199101], "stop_id": 3730630, "stop_desc": "3 RUE DES VILLAS - 94076", "stop_name": "LES BONS ENFANTS"}, "geometry": {"type": "Point", "coordinates": [2.366225225199101, 48.78450808719232]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b581ce81c34852963380935edf395dccbd1d452a", "fields": {"departement": "94", "stop_lat": 48.797013620831194, "code_postal": "94016", "stop_lon": 2.3308197644314563, "coord": [48.797013620831194, 2.3308197644314563], "stop_id": 3730342, "stop_desc": "2 AVENUE CARNOT - 94016", "stop_name": "WILSON - PROVIGNY"}, "geometry": {"type": "Point", "coordinates": [2.3308197644314563, 48.797013620831194]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "39cfc8602fdbf44fb1a7090dda4c39f7abb450b3", "fields": {"departement": "94", "stop_lat": 48.75961342740006, "code_postal": "94034", "stop_lon": 2.3195408099795713, "coord": [48.75961342740006, 2.3195408099795713], "stop_id": 3730368, "stop_desc": "44 AVENUE DE LA REPUBLIQUE - 94034", "stop_name": "TUILERIE"}, "geometry": {"type": "Point", "coordinates": [2.3195408099795713, 48.75961342740006]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f0320d4ce50c1392916c0f7f25c90baac6b2f2fa", "fields": {"departement": "94", "stop_lat": 48.77515392039387, "code_postal": "94038", "stop_lon": 2.354171518515035, "coord": [48.77515392039387, 2.354171518515035], "stop_id": 3730639, "stop_desc": "FACE 22 RUE DE LALLIER - 94038", "stop_name": "RUE DE LALLIER"}, "geometry": {"type": "Point", "coordinates": [2.354171518515035, 48.77515392039387]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7ccad01bc2a5c19c91ed02a48262030fe6c8e667", "fields": {"departement": "75", "stop_lat": 48.862110639738226, "code_postal": "75101", "stop_lon": 2.3258125813412875, "coord": [48.862110639738226, 2.3258125813412875], "stop_id": 3716879, "stop_desc": "QUAI DES TUILERIES - 75101", "stop_name": "PONT DE SOLFERINO - QUAI DES TUILERIES"}, "geometry": {"type": "Point", "coordinates": [2.3258125813412875, 48.862110639738226]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f49f5a8e57626fb8df3d37464f58de3c10684c4d", "fields": {"departement": "75", "stop_lat": 48.856305237903015, "code_postal": "75101", "stop_lon": 2.341667568867299, "coord": [48.856305237903015, 2.341667568867299], "stop_id": 3716884, "stop_desc": "72-70 QUAI DES ORFEVRES - 75101", "stop_name": "PONT NEUF - QUAI DES ORFEVRES"}, "geometry": {"type": "Point", "coordinates": [2.341667568867299, 48.856305237903015]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "efe9bfddbe933ac905620fa674d14c4126d4bc89", "fields": {"departement": "93", "stop_lat": 48.872024651226546, "code_postal": "93050", "stop_lon": 2.533347312982959, "coord": [48.872024651226546, 2.533347312982959], "stop_id": 3716670, "stop_desc": "FACE 7 AVENUE ROBERT SCHUMAN - 93050", "stop_name": "CITE DES BOULEAUX"}, "geometry": {"type": "Point", "coordinates": [2.533347312982959, 48.872024651226546]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "582d11c369206725e82619c4c849d4b01f23f1b3", "fields": {"departement": "75", "stop_lat": 48.859046477901266, "code_postal": "75101", "stop_lon": 2.338494169074047, "coord": [48.859046477901266, 2.338494169074047], "stop_id": 3716882, "stop_desc": "QUAI FRANCOIS MITTERRAND - 75101", "stop_name": "PONT DES ARTS"}, "geometry": {"type": "Point", "coordinates": [2.338494169074047, 48.859046477901266]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "34d869506152f8d8388247d56d3bf0fae76175dc", "fields": {"departement": "93", "stop_lat": 48.86054192119611, "code_postal": "93050", "stop_lon": 2.536859021889229, "coord": [48.86054192119611, 2.536859021889229], "stop_id": 3716665, "stop_desc": "94 AVENUE DE VERDUN - 93050", "stop_name": "SIMONE BIGOT"}, "geometry": {"type": "Point", "coordinates": [2.536859021889229, 48.86054192119611]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9f42119654df717f22c0334b78e6c5d462c4cea9", "fields": {"departement": "75", "stop_lat": 48.86055619281375, "code_postal": "75101", "stop_lon": 2.330771019079064, "coord": [48.86055619281375, 2.330771019079064], "stop_id": 3716880, "stop_desc": "QUAI FRANCOIS MITTERRAND - 75101", "stop_name": "PONT ROYAL"}, "geometry": {"type": "Point", "coordinates": [2.330771019079064, 48.86055619281375]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ed0e9398b0f2454fdc4a034ce12f34a9dcc73494", "fields": {"departement": "93", "stop_lat": 48.86589496606923, "code_postal": "93050", "stop_lon": 2.5335284715513957, "coord": [48.86589496606923, 2.5335284715513957], "stop_id": 3716667, "stop_desc": "11-13 RUE DU ROUSSILLON - 93050", "stop_name": "ROUSSILLON"}, "geometry": {"type": "Point", "coordinates": [2.5335284715513957, 48.86589496606923]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4ad9254b58e3de1cfdd8332af54a3a9744beb92d", "fields": {"departement": "75", "stop_lat": 48.85241340970007, "code_postal": "75105", "stop_lon": 2.346311317055316, "coord": [48.85241340970007, 2.346311317055316], "stop_id": 3716886, "stop_desc": "4 RUE DU PETIT PONT - 75105", "stop_name": "PETIT PONT"}, "geometry": {"type": "Point", "coordinates": [2.346311317055316, 48.85241340970007]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a9a3d148caf9f96b60ae33937cf7d9ab76424282", "fields": {"departement": "75", "stop_lat": 48.84705496127261, "code_postal": "75105", "stop_lon": 2.3604182094584814, "coord": [48.84705496127261, 2.3604182094584814], "stop_id": 3716891, "stop_desc": "5 QUAI SAINT BERNARD - 75105", "stop_name": "CUVIER"}, "geometry": {"type": "Point", "coordinates": [2.3604182094584814, 48.84705496127261]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "af9a020eaba386fa55bb6326277af54c62a182a3", "fields": {"departement": "75", "stop_lat": 48.85059796516235, "code_postal": "75105", "stop_lon": 2.345984155428729, "coord": [48.85059796516235, 2.345984155428729], "stop_id": 3716887, "stop_desc": "63 BD SAINT-GERMAIN - 75105", "stop_name": "DANTE"}, "geometry": {"type": "Point", "coordinates": [2.345984155428729, 48.85059796516235]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7414d4fdb92a3afb750c4751406b69bd5b5e3aa0", "fields": {"departement": "94", "stop_lat": 48.768063557426416, "code_postal": "94021", "stop_lon": 2.3367923835022073, "coord": [48.768063557426416, 2.3367923835022073], "stop_id": 3730674, "stop_desc": "FACE 138 BOULEVARD JEAN MERMOZ - 94021", "stop_name": "LOUIS BLERIOT - CIMETIERE INTERCOMMUNAL"}, "geometry": {"type": "Point", "coordinates": [2.3367923835022073, 48.768063557426416]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "99a437c7d1a889cb4464e780d17cd6902067484f", "fields": {"departement": "94", "stop_lat": 48.78742885991961, "code_postal": "94076", "stop_lon": 2.367464633032502, "coord": [48.78742885991961, 2.367464633032502], "stop_id": 3730676, "stop_desc": "PISTE GARE ROUTIERE - 94076", "stop_name": "VILLEJUIF - LOUIS ARAGON"}, "geometry": {"type": "Point", "coordinates": [2.367464633032502, 48.78742885991961]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "46e08133eac15c10fed872abe533c654b6c23062", "fields": {"departement": "94", "stop_lat": 48.76693101878247, "code_postal": "94038", "stop_lon": 2.334073074719126, "coord": [48.76693101878247, 2.334073074719126], "stop_id": 3730689, "stop_desc": "56 BIS RUE DE FRESNES - 94038", "stop_name": "CAMELIAS-DAUVIN"}, "geometry": {"type": "Point", "coordinates": [2.334073074719126, 48.76693101878247]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a7876ec5892205d3d044ed00caebc06cabf13cf0", "fields": {"departement": "94", "stop_lat": 48.758580343996215, "code_postal": "94034", "stop_lon": 2.3237418345669676, "coord": [48.758580343996215, 2.3237418345669676], "stop_id": 3730692, "stop_desc": "FACE 40 RUE HENRI BARBUSSE - 94034", "stop_name": "EMILE ZOLA"}, "geometry": {"type": "Point", "coordinates": [2.3237418345669676, 48.758580343996215]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c933499a11ca82d2ef7061a0fd1d2142c2782b0d", "fields": {"departement": "94", "stop_lat": 48.753958599998995, "code_postal": "94034", "stop_lon": 2.312379120332119, "coord": [48.753958599998995, 2.312379120332119], "stop_id": 3730665, "stop_desc": "66 BOULEVARD JEAN JAURES - 94034", "stop_name": "PASTEUR"}, "geometry": {"type": "Point", "coordinates": [2.312379120332119, 48.753958599998995]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c2a16a0adc32b69fd7aece76569e4ec2934b666e", "fields": {"departement": "94", "stop_lat": 48.775575985902144, "code_postal": "94038", "stop_lon": 2.3566058513906185, "coord": [48.775575985902144, 2.3566058513906185], "stop_id": 3730681, "stop_desc": "39 RUE PAUL HOCHART - 94038", "stop_name": "POITOU"}, "geometry": {"type": "Point", "coordinates": [2.3566058513906185, 48.775575985902144]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "28c5b29876fc3de9adcf7c1a6463b6b35881ef1a", "fields": {"departement": "93", "stop_lat": 48.91235422836199, "code_postal": "93008", "stop_lon": 2.435397698576254, "coord": [48.91235422836199, 2.435397698576254], "stop_id": 3731651, "stop_desc": "FACE 230 AVENUE HENRI BARBUSSE - 93008", "stop_name": "ESCADRILLE NORMANDIE NIEMEN - JEAN JAURES-TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.435397698576254, 48.91235422836199]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0ee072554f8d3ce40fe39e0e42e34c41aea19cc2", "fields": {"departement": "93", "stop_lat": 48.90341697332724, "code_postal": "93055", "stop_lon": 2.4167997882929195, "coord": [48.90341697332724, 2.4167997882929195], "stop_id": 3731678, "stop_desc": "FACE 210 AVENUE DU GENERAL LECLERC - 93055", "stop_name": "CHEMIN DES VIGNES"}, "geometry": {"type": "Point", "coordinates": [2.4167997882929195, 48.90341697332724]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "30d95e7ed3776001f279c5f06242c2e3c3525191", "fields": {"departement": "93", "stop_lat": 48.91035297644203, "code_postal": "93008", "stop_lon": 2.4318626387990308, "coord": [48.91035297644203, 2.4318626387990308], "stop_id": 3731648, "stop_desc": "FACE 161 AVENUE HENRI BARBUSSE - 93008", "stop_name": "GARE - GRANDE CEINTURE"}, "geometry": {"type": "Point", "coordinates": [2.4318626387990308, 48.91035297644203]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "42bb20c42dad56ffc338411eecde4c18a10970a0", "fields": {"departement": "93", "stop_lat": 48.90159508814018, "code_postal": "93055", "stop_lon": 2.4129664180362322, "coord": [48.90159508814018, 2.4129664180362322], "stop_id": 3731642, "stop_desc": "FACE 172 AVENUE DU GENERAL LECLERC - 93055", "stop_name": "CIMETIERE PARISIEN"}, "geometry": {"type": "Point", "coordinates": [2.4129664180362322, 48.90159508814018]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5ae5480dcc24def4d0931c1710f702c7193b2aaf", "fields": {"departement": "93", "stop_lat": 48.91918677900897, "code_postal": "93029", "stop_lon": 2.4616883157921547, "coord": [48.91918677900897, 2.4616883157921547], "stop_id": 3731666, "stop_desc": "RUE DES BOIS GROSLAY ET JULES GUESDE - 93029", "stop_name": "JULES AUFFRET"}, "geometry": {"type": "Point", "coordinates": [2.4616883157921547, 48.91918677900897]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4ae7993d345c9754ee8dd79a5d4acb24cbfa786b", "fields": {"departement": "93", "stop_lat": 48.89549979635163, "code_postal": "93055", "stop_lon": 2.401058235497317, "coord": [48.89549979635163, 2.401058235497317], "stop_id": 3731634, "stop_desc": "61 RUE HOCHE - 93055", "stop_name": "CENTRE NATIONAL DE LA DANSE"}, "geometry": {"type": "Point", "coordinates": [2.401058235497317, 48.89549979635163]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "02743c106b4387993b3792e90d2282e00793cc76", "fields": {"departement": "94", "stop_lat": 48.755874712688076, "code_postal": "94034", "stop_lon": 2.322084106341217, "coord": [48.755874712688076, 2.322084106341217], "stop_id": 3730693, "stop_desc": "2 AVENUE DE LA REPUBLIQUE - 94034", "stop_name": "MAIRIE DE FRESNES"}, "geometry": {"type": "Point", "coordinates": [2.322084106341217, 48.755874712688076]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6d8e36ff419dd5997a58d9dfe8827139d2f27ed2", "fields": {"departement": "93", "stop_lat": 48.9180138262929, "code_postal": "93029", "stop_lon": 2.4660627394516226, "coord": [48.9180138262929, 2.4660627394516226], "stop_id": 3731668, "stop_desc": "AVENUE DES BOIS DE GROSLAY - 93029", "stop_name": "MARCEL CACHIN"}, "geometry": {"type": "Point", "coordinates": [2.4660627394516226, 48.9180138262929]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "708b272f79f4d34dd7fef2a89b1873a9e832711d", "fields": {"departement": "93", "stop_lat": 48.890100894125055, "code_postal": "93055", "stop_lon": 2.396431389245738, "coord": [48.890100894125055, 2.396431389245738], "stop_id": 3731680, "stop_desc": "1 AV DE LA PORTE DE PANTIN - 93055", "stop_name": "PORTE DE PANTIN"}, "geometry": {"type": "Point", "coordinates": [2.396431389245738, 48.890100894125055]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5f00dec12c591b68521044f129fd79a78cdfcf92", "fields": {"departement": "93", "stop_lat": 48.918319618663716, "code_postal": "93029", "stop_lon": 2.4479271617152185, "coord": [48.918319618663716, 2.4479271617152185], "stop_id": 3731659, "stop_desc": "FACE 86 AVENUE HENRI BARBUSSE - 93029", "stop_name": "JANE JOYE"}, "geometry": {"type": "Point", "coordinates": [2.4479271617152185, 48.918319618663716]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "880c45275c1544ffb2bf42f221cfe3ef1d243511", "fields": {"departement": "91", "stop_lat": 48.67873671160133, "code_postal": "91589", "stop_lon": 2.346240365571396, "coord": [48.67873671160133, 2.346240365571396], "stop_id": 3732130, "stop_desc": "41 AVENUE CHARLES DE GAULLE - 91589", "stop_name": "CENTRE ADMINISTRATIF"}, "geometry": {"type": "Point", "coordinates": [2.346240365571396, 48.67873671160133]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1c89340e4df2cef045ea1f6f2e0eb21245d9d314", "fields": {"departement": "91", "stop_lat": 48.680372842719194, "code_postal": "91589", "stop_lon": 2.3432000763075984, "coord": [48.680372842719194, 2.3432000763075984], "stop_id": 3732132, "stop_desc": "77 AV CHARLES DE GAULLE - 91589", "stop_name": "BRIAND - SALENGRO"}, "geometry": {"type": "Point", "coordinates": [2.3432000763075984, 48.680372842719194]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bd20729c7a60608b630500a69f1a9b9c370c6e85", "fields": {"departement": "91", "stop_lat": 48.69847991744048, "code_postal": "91027", "stop_lon": 2.372151947688958, "coord": [48.69847991744048, 2.372151947688958], "stop_id": 3732183, "stop_desc": "10 AV FRANCOIS MITTERRAND - 91027", "stop_name": "PYRAMIDE DE JUVISY"}, "geometry": {"type": "Point", "coordinates": [2.372151947688958, 48.69847991744048]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cda4bd3ff94358d526ee50ad7495832638f0175c", "fields": {"departement": "91", "stop_lat": 48.69064764216272, "code_postal": "91326", "stop_lon": 2.381786125631908, "coord": [48.69064764216272, 2.381786125631908], "stop_id": 3732151, "stop_desc": "FACE 41 RUE DES GAULOIS - 91326", "stop_name": "JUVISY RER"}, "geometry": {"type": "Point", "coordinates": [2.381786125631908, 48.69064764216272]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6e9880d94bd5120551e5d37a12a03c42500ddd47", "fields": {"departement": "91", "stop_lat": 48.67587863954793, "code_postal": "91589", "stop_lon": 2.338571234646402, "coord": [48.67587863954793, 2.338571234646402], "stop_id": 3732160, "stop_desc": "5 R VAN GOGH - 91589", "stop_name": "TOULOUSE-LAUTREC"}, "geometry": {"type": "Point", "coordinates": [2.338571234646402, 48.67587863954793]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "353cf51581e52571a0d21c431ae226a95cf915f4", "fields": {"departement": "91", "stop_lat": 48.69398544536874, "code_postal": "91326", "stop_lon": 2.372787077174569, "coord": [48.69398544536874, 2.372787077174569], "stop_id": 3732155, "stop_desc": "32 AVENUE CAMILLE FLAMMARION - 91326", "stop_name": "THIERS"}, "geometry": {"type": "Point", "coordinates": [2.372787077174569, 48.69398544536874]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2d6b96263d0ae7ed7923c5ead9af98034fbed91b", "fields": {"departement": "91", "stop_lat": 48.673055930070326, "code_postal": "91589", "stop_lon": 2.3451129024556816, "coord": [48.673055930070326, 2.3451129024556816], "stop_id": 3732163, "stop_desc": "25-23 AV GAMBETTA - 91589", "stop_name": "BILLOIR"}, "geometry": {"type": "Point", "coordinates": [2.3451129024556816, 48.673055930070326]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7c1a0b7385b6051dac42a8c6571d22bfcfb81a50", "fields": {"departement": "75", "stop_lat": 48.85809485412893, "code_postal": "75116", "stop_lon": 2.2737286949180775, "coord": [48.85809485412893, 2.2737286949180775], "stop_id": 3740539, "stop_desc": "11 CHAUSSEE DE LA MUETTE - 75116", "stop_name": "LA MUETTE - BOULAINVILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.2737286949180775, 48.85809485412893]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5b23ca942c4681e1ce591c8db9047678bc496ec8", "fields": {"departement": "93", "stop_lat": 48.90293839849037, "code_postal": "93066", "stop_lon": 2.358166601230586, "coord": [48.90293839849037, 2.358166601230586], "stop_id": 3741072, "stop_desc": "21-39 AVENUE DU PRESIDENT WILSON - 93066", "stop_name": "PONT HAINGUERLOT"}, "geometry": {"type": "Point", "coordinates": [2.358166601230586, 48.90293839849037]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9ca6bffd156b8fedfd69d5134076c6e1853411d6", "fields": {"departement": "94", "stop_lat": 48.80906834632684, "code_postal": "94017", "stop_lon": 2.537736110172869, "coord": [48.80906834632684, 2.537736110172869], "stop_id": 3743461, "stop_desc": "FACE 8 AVENUE DU 11 NOVEMBRE 1918 - 94017", "stop_name": "LES MORDACS"}, "geometry": {"type": "Point", "coordinates": [2.537736110172869, 48.80906834632684]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "37d71035f225d64c9e7a7061aabe8cd15c9e485f", "fields": {"departement": "95", "stop_lat": 48.96895355249564, "code_postal": "95268", "stop_lon": 2.393027244535697, "coord": [48.96895355249564, 2.393027244535697], "stop_id": 3740994, "stop_desc": "42 RUE PAUL VAILLANT COUTURIER - 95268", "stop_name": "BELLEVUE"}, "geometry": {"type": "Point", "coordinates": [2.393027244535697, 48.96895355249564]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9f91d70507e76795482fe3881d5762e022e89a1e", "fields": {"departement": "75", "stop_lat": 48.857326021592506, "code_postal": "75116", "stop_lon": 2.2651216094341193, "coord": [48.857326021592506, 2.2651216094341193], "stop_id": 3740541, "stop_desc": "8-10 AVENUE INGRES - 75116", "stop_name": "PORTE DE PASSY"}, "geometry": {"type": "Point", "coordinates": [2.2651216094341193, 48.857326021592506]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9f3dd3407beec5dddf5f55cbe75b662a105b6804", "fields": {"departement": "75", "stop_lat": 48.847390152721914, "code_postal": "75116", "stop_lon": 2.2577137851809037, "coord": [48.847390152721914, 2.2577137851809037], "stop_id": 3740547, "stop_desc": "PLACE PORTE D'AUTEUIL - 75116", "stop_name": "PORTE D'AUTEUIL"}, "geometry": {"type": "Point", "coordinates": [2.2577137851809037, 48.847390152721914]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "60a8d3b2c202e8eb40b7059f6518eea91bb1ecb0", "fields": {"departement": "75", "stop_lat": 48.886141692423514, "code_postal": "75118", "stop_lon": 2.3564699692142286, "coord": [48.886141692423514, 2.3564699692142286], "stop_id": 3741058, "stop_desc": "FACE 16 RUE STEPHENSON - 75118", "stop_name": "SAINT-BRUNO"}, "geometry": {"type": "Point", "coordinates": [2.3564699692142286, 48.886141692423514]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ddf88b2c1a71ceab86afc62b43dff2d1053554c3", "fields": {"departement": "93", "stop_lat": 48.913982562739044, "code_postal": "93066", "stop_lon": 2.3628888344746857, "coord": [48.913982562739044, 2.3628888344746857], "stop_id": 3741080, "stop_desc": "RUE DE LA PROCESSION - 93066", "stop_name": "MARAICHERS"}, "geometry": {"type": "Point", "coordinates": [2.3628888344746857, 48.913982562739044]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dd9e018c4713746fc8ec9e3b12c5beecfa37c4a8", "fields": {"departement": "75", "stop_lat": 48.88621356145275, "code_postal": "75118", "stop_lon": 2.3566471583288378, "coord": [48.88621356145275, 2.3566471583288378], "stop_id": 3741057, "stop_desc": "16-18 RUE STEPHENSON - 75118", "stop_name": "SAINT-BRUNO"}, "geometry": {"type": "Point", "coordinates": [2.3566471583288378, 48.88621356145275]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "58b697c4baa141e06c005120944b8d3fb6d32458", "fields": {"departement": "75", "stop_lat": 48.8881998305129, "code_postal": "75118", "stop_lon": 2.3560482517287324, "coord": [48.8881998305129, 2.3560482517287324], "stop_id": 3741060, "stop_desc": "45 RUE STEPHENSON - 75118", "stop_name": "DOUDEAUVILLE"}, "geometry": {"type": "Point", "coordinates": [2.3560482517287324, 48.8881998305129]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dc5f8bb553f83568cdad3ccada640caafb29707e", "fields": {"departement": "75", "stop_lat": 48.882296669602475, "code_postal": "75118", "stop_lon": 2.3402389627194693, "coord": [48.882296669602475, 2.3402389627194693], "stop_id": 3740303, "stop_desc": "112 BOULEVARD DE ROCHECHOUART - 75118", "stop_name": "ROCHECHOUART - MARTYRS"}, "geometry": {"type": "Point", "coordinates": [2.3402389627194693, 48.882296669602475]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bfedaa3bf399d7cd1865385188b054be6d0da157", "fields": {"departement": "75", "stop_lat": 48.88182933710138, "code_postal": "75109", "stop_lon": 2.340061788322775, "coord": [48.88182933710138, 2.340061788322775], "stop_id": 3740336, "stop_desc": "63 BOULEVARD DE ROCHECHOUART - 75109", "stop_name": "ROCHECHOUART - MARTYRS"}, "geometry": {"type": "Point", "coordinates": [2.340061788322775, 48.88182933710138]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6dc447e21f9a111fd00bfd8607666f3f20409e0b", "fields": {"departement": "75", "stop_lat": 48.87395603688644, "code_postal": "75108", "stop_lon": 2.3265729484538205, "coord": [48.87395603688644, 2.3265729484538205], "stop_id": 3740516, "stop_desc": "74-76 BOULEVARD HAUSSMANN - 75108", "stop_name": "ROME - HAUSSMANN"}, "geometry": {"type": "Point", "coordinates": [2.3265729484538205, 48.87395603688644]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5c3142a9a661a238a05728359cd310b438fb3b44", "fields": {"departement": "75", "stop_lat": 48.87654445856856, "code_postal": "75109", "stop_lon": 2.3469968002225374, "coord": [48.87654445856856, 2.3469968002225374], "stop_id": 3740506, "stop_desc": "90 RUE LA FAYETTE - 75109", "stop_name": "SQUARE MONTHOLON"}, "geometry": {"type": "Point", "coordinates": [2.3469968002225374, 48.87654445856856]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5dbedbc4aba5fa66b7104ca1fc03ad99cbf4c1c2", "fields": {"departement": "75", "stop_lat": 48.866523432618784, "code_postal": "75116", "stop_lon": 2.289561581571576, "coord": [48.866523432618784, 2.289561581571576], "stop_id": 3740320, "stop_desc": "86 AVENUE KLEBER - 75116", "stop_name": "KLEBER - BOISSIERE"}, "geometry": {"type": "Point", "coordinates": [2.289561581571576, 48.866523432618784]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8f64da41b62d3b97e1b24e688aa101b0ba902a8a", "fields": {"departement": "75", "stop_lat": 48.879398119760694, "code_postal": "75117", "stop_lon": 2.3038162556497275, "coord": [48.879398119760694, 2.3038162556497275], "stop_id": 3740313, "stop_desc": "98 BOULEVARD DE COURCELLES - 75117", "stop_name": "COURCELLES"}, "geometry": {"type": "Point", "coordinates": [2.3038162556497275, 48.879398119760694]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "609186fcfff08b2262688458634cb8972ff4d5ec", "fields": {"departement": "75", "stop_lat": 48.878201440359085, "code_postal": "75108", "stop_lon": 2.299238766398053, "coord": [48.878201440359085, 2.299238766398053], "stop_id": 3740326, "stop_desc": "91 BOULEVARD DE COURCELLES - 75108", "stop_name": "TERNES"}, "geometry": {"type": "Point", "coordinates": [2.299238766398053, 48.878201440359085]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4d6da089aa448f07fe05561ce00b63f951d0190e", "fields": {"departement": "75", "stop_lat": 48.88371663447967, "code_postal": "75118", "stop_lon": 2.3335889584918315, "coord": [48.88371663447967, 2.3335889584918315], "stop_id": 3740305, "stop_desc": "80 BOULEVARD DE CLICHY - 75118", "stop_name": "BLANCHE"}, "geometry": {"type": "Point", "coordinates": [2.3335889584918315, 48.88371663447967]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "98db11c5162f2af4fedeb8382edc0d27db5d6737", "fields": {"departement": "75", "stop_lat": 48.86441975709718, "code_postal": "75116", "stop_lon": 2.2880105904161927, "coord": [48.86441975709718, 2.2880105904161927], "stop_id": 3740321, "stop_desc": "114 AVENUE KLEBER - 75116", "stop_name": "TROCADERO"}, "geometry": {"type": "Point", "coordinates": [2.2880105904161927, 48.86441975709718]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2e6bcf5a914d3b23138e9ff45b065e18a8c4eeea", "fields": {"departement": "75", "stop_lat": 48.87561905816125, "code_postal": "75109", "stop_lon": 2.342323218012916, "coord": [48.87561905816125, 2.342323218012916], "stop_id": 3740508, "stop_desc": "1 RUE DE CHATEAUDUN - 75109", "stop_name": "CADET"}, "geometry": {"type": "Point", "coordinates": [2.342323218012916, 48.87561905816125]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d2c6b74c37da5f06b88f73b78af850a59bf07262", "fields": {"departement": "93", "stop_lat": 48.909318575656386, "code_postal": "93066", "stop_lon": 2.3615503986581152, "coord": [48.909318575656386, 2.3615503986581152], "stop_id": 3741078, "stop_desc": "FACE 16 RUE DE LA METALLURGIE - 93066", "stop_name": "ENCYCLOPEDIE - METALLURGIE"}, "geometry": {"type": "Point", "coordinates": [2.3615503986581152, 48.909318575656386]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9103bebdc66b4f5bcd2970f5f3b9be59a4cc0eb6", "fields": {"departement": "94", "stop_lat": 48.81317916036105, "code_postal": "94017", "stop_lon": 2.5128343715435313, "coord": [48.81317916036105, 2.5128343715435313], "stop_id": 3743471, "stop_desc": "43 RUE LOUIS TALAMONI - 94017", "stop_name": "MAIRIE DE CHAMPIGNY"}, "geometry": {"type": "Point", "coordinates": [2.5128343715435313, 48.81317916036105]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6ee7e1fc0a00dd9269a87d9df4b0d20bf34d8260", "fields": {"departement": "94", "stop_lat": 48.80059300170557, "code_postal": "94019", "stop_lon": 2.5480299257631347, "coord": [48.80059300170557, 2.5480299257631347], "stop_id": 3743492, "stop_desc": "ROUTE DU PLESSIS - 94019", "stop_name": "GROUPE SCOLAIRE ROUSSEAU"}, "geometry": {"type": "Point", "coordinates": [2.5480299257631347, 48.80059300170557]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "332dfbae12c342039a78127bfd551765f267a799", "fields": {"departement": "94", "stop_lat": 48.81387624492796, "code_postal": "94017", "stop_lon": 2.50939367172205, "coord": [48.81387624492796, 2.50939367172205], "stop_id": 3743474, "stop_desc": "FACE 85 AVENUE JEAN JAURES - 94017", "stop_name": "MAIRIE - MARCHE"}, "geometry": {"type": "Point", "coordinates": [2.50939367172205, 48.81387624492796]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ff3bed54c58dc9e5fec382b150d71ec2fa3f6dcf", "fields": {"departement": "94", "stop_lat": 48.81226731242885, "code_postal": "94017", "stop_lon": 2.515580204948953, "coord": [48.81226731242885, 2.515580204948953], "stop_id": 3743470, "stop_desc": "FACE 1 RUE MARX DORMOY - 94017", "stop_name": "RUE DU MONUMENT"}, "geometry": {"type": "Point", "coordinates": [2.515580204948953, 48.81226731242885]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4eec41fb180f0fde6fd0688c58018f92c06e8a05", "fields": {"departement": "94", "stop_lat": 48.80690402627174, "code_postal": "94019", "stop_lon": 2.5571042790841676, "coord": [48.80690402627174, 2.5571042790841676], "stop_id": 3743482, "stop_desc": "ROUTE DU PLESSIS TREVISE - 94019", "stop_name": "BOIS L'ABBE"}, "geometry": {"type": "Point", "coordinates": [2.5571042790841676, 48.80690402627174]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "813e6388cecb8149942917ba6b978f25c21fbe49", "fields": {"departement": "94", "stop_lat": 48.81025489203839, "code_postal": "94017", "stop_lon": 2.520934834992837, "coord": [48.81025489203839, 2.520934834992837], "stop_id": 3743468, "stop_desc": "38-40 AVENUE MARX DORMOY - 94017", "stop_name": "MARTELET"}, "geometry": {"type": "Point", "coordinates": [2.520934834992837, 48.81025489203839]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a3b13890b99c32a6ea5701fe0ce11a7be2507196", "fields": {"departement": "94", "stop_lat": 48.80690979215043, "code_postal": "94017", "stop_lon": 2.5539610595023534, "coord": [48.80690979215043, 2.5539610595023534], "stop_id": 3743486, "stop_desc": "AVENUE BOILEAU - 94017", "stop_name": "HOUDON"}, "geometry": {"type": "Point", "coordinates": [2.5539610595023534, 48.80690979215043]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dfd27eaa62f883179376213142d7191a6f9059c7", "fields": {"departement": "75", "stop_lat": 48.839259765112175, "code_postal": "75112", "stop_lon": 2.3955020021576816, "coord": [48.839259765112175, 2.3955020021576816], "stop_id": 3747942, "stop_desc": "10-12 PLACE FELIX EBOUE - 75112", "stop_name": "DAUMESNIL - FELIX EBOUE"}, "geometry": {"type": "Point", "coordinates": [2.3955020021576816, 48.839259765112175]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "00bb9efaaeb6e7b129641a7197ecbad7e783f0cb", "fields": {"departement": "75", "stop_lat": 48.84408977596744, "code_postal": "75112", "stop_lon": 2.4424854671358247, "coord": [48.84408977596744, 2.4424854671358247], "stop_id": 3747959, "stop_desc": "PISTE GARE ROUTIERE - 75112", "stop_name": "CHATEAU DE VINCENNES"}, "geometry": {"type": "Point", "coordinates": [2.4424854671358247, 48.84408977596744]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "13d90a874514631b39e403983eba2aeb6c5c90f2", "fields": {"departement": "75", "stop_lat": 48.875677457948655, "code_postal": "75110", "stop_lon": 2.370431831514734, "coord": [48.875677457948655, 2.370431831514734], "stop_id": 3747966, "stop_desc": "52 AVENUE CLAUDE VELLEFAUX - 75110", "stop_name": "SAMBRE ET MEUSE"}, "geometry": {"type": "Point", "coordinates": [2.370431831514734, 48.875677457948655]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c541425e36332096ea368f5d97e9aa64ed74d092", "fields": {"departement": "75", "stop_lat": 48.84408977596744, "code_postal": "75112", "stop_lon": 2.4424854671358247, "coord": [48.84408977596744, 2.4424854671358247], "stop_id": 3747960, "stop_desc": "13 AVENUE DE NOGENT - 75112", "stop_name": "CHATEAU DE VINCENNES"}, "geometry": {"type": "Point", "coordinates": [2.4424854671358247, 48.84408977596744]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e2ac52d9ba4075045b3b086b5e7e0f6921748147", "fields": {"departement": "75", "stop_lat": 48.83937246797884, "code_postal": "75112", "stop_lon": 2.430303562536124, "coord": [48.83937246797884, 2.430303562536124], "stop_id": 3747955, "stop_desc": "AVENUE DAUMESNIL - 75112", "stop_name": "TOURELLE - DAUMESNIL"}, "geometry": {"type": "Point", "coordinates": [2.430303562536124, 48.83937246797884]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6bbb3baff8f7bbe0d899fe7ec41053f621345b10", "fields": {"departement": "75", "stop_lat": 48.83675736825707, "code_postal": "75112", "stop_lon": 2.4029056962363957, "coord": [48.83675736825707, 2.4029056962363957], "stop_id": 3747946, "stop_desc": "254 AVENUE DAUMESNIL - 75112", "stop_name": "MICHEL BIZOT"}, "geometry": {"type": "Point", "coordinates": [2.4029056962363957, 48.83675736825707]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b90484023eea89e57f274fdbda759f6aab26409a", "fields": {"departement": "75", "stop_lat": 48.84416933764707, "code_postal": "75112", "stop_lon": 2.3904284332710555, "coord": [48.84416933764707, 2.3904284332710555], "stop_id": 3747939, "stop_desc": "95 RUE DE REUILLY - 75112", "stop_name": "MONTGALLET"}, "geometry": {"type": "Point", "coordinates": [2.3904284332710555, 48.84416933764707]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "051539e6249aa85f47340e9a06cfce855ffb7bb6", "fields": {"departement": "75", "stop_lat": 48.84417842225694, "code_postal": "75112", "stop_lon": 2.390210573103677, "coord": [48.84417842225694, 2.390210573103677], "stop_id": 3747938, "stop_desc": "64 RUE DE REUILLY - 75112", "stop_name": "MONTGALLET"}, "geometry": {"type": "Point", "coordinates": [2.390210573103677, 48.84417842225694]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cf0554e7a262cc5029f97762d8b2c822037e45e5", "fields": {"departement": "75", "stop_lat": 48.86103077674531, "code_postal": "75103", "stop_lon": 2.3586673091110497, "coord": [48.86103077674531, 2.3586673091110497], "stop_id": 3747874, "stop_desc": "28 RUE DES QUATRE FILS - 75103", "stop_name": "ARCHIVES - HAUDRIETTES"}, "geometry": {"type": "Point", "coordinates": [2.3586673091110497, 48.86103077674531]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d0ff1dca05de9be57f915bb0f4dc55ff389ac6f1", "fields": {"departement": "75", "stop_lat": 48.86359337051969, "code_postal": "75102", "stop_lon": 2.350508826661906, "coord": [48.86359337051969, 2.350508826661906], "stop_id": 3747875, "stop_desc": "4 RUE ETIENNE MARCEL - 75102", "stop_name": "SEBASTOPOL - ETIENNE MARCEL"}, "geometry": {"type": "Point", "coordinates": [2.350508826661906, 48.86359337051969]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d28aad0f51f237919e8e7e803ddacc5aaa240b47", "fields": {"departement": "94", "stop_lat": 48.8357724958462, "code_postal": "94052", "stop_lon": 2.4728837253016107, "coord": [48.8357724958462, 2.4728837253016107], "stop_id": 4028776, "stop_desc": "AV GEORGES CLEMENCEAU - 94052", "stop_name": "NOGENT-SUR-MARNE RER - PIERRE SEMARD"}, "geometry": {"type": "Point", "coordinates": [2.4728837253016107, 48.8357724958462]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1a378e52adcd46e2795a502662e22248f1deb30f", "fields": {"departement": "94", "stop_lat": 48.83631306496527, "code_postal": "94052", "stop_lon": 2.4794610851063337, "coord": [48.83631306496527, 2.4794610851063337], "stop_id": 4028779, "stop_desc": "60 GRANDE RUE CHARLES DE GAULLE - 94052", "stop_name": "RUE DE BEAUTE"}, "geometry": {"type": "Point", "coordinates": [2.4794610851063337, 48.83631306496527]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ac93f5bf766ca8fcf2089dc45cf3563d60382f60", "fields": {"departement": "94", "stop_lat": 48.838646963428566, "code_postal": "94058", "stop_lon": 2.5089176247550213, "coord": [48.838646963428566, 2.5089176247550213], "stop_id": 4028794, "stop_desc": "63 AVENUE DU GENERAL DE GAULLE - 94058", "stop_name": "MONTAIGNE"}, "geometry": {"type": "Point", "coordinates": [2.5089176247550213, 48.838646963428566]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "97545d273f3b0957484147f82b3f9c243cfd16e6", "fields": {"departement": "94", "stop_lat": 48.838691488575265, "code_postal": "94058", "stop_lon": 2.5092036961467725, "coord": [48.838691488575265, 2.5092036961467725], "stop_id": 4028795, "stop_desc": "FACE 63 AVENUE DU GENERAL DE GAULLE - 94058", "stop_name": "MONTAIGNE"}, "geometry": {"type": "Point", "coordinates": [2.5092036961467725, 48.838691488575265]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1d09b2bf4255078cf5eee7d10b4081dc42194a45", "fields": {"departement": "94", "stop_lat": 48.83593023716701, "code_postal": "94058", "stop_lon": 2.5106240895836107, "coord": [48.83593023716701, 2.5106240895836107], "stop_id": 4028796, "stop_desc": "16 ALLEE GUY MOQUET - 94058", "stop_name": "PLACE BEAUFRANCHET"}, "geometry": {"type": "Point", "coordinates": [2.5106240895836107, 48.83593023716701]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a840eb8255dc44caab8934546ffcf313e71601dd", "fields": {"departement": "94", "stop_lat": 48.836395480091795, "code_postal": "94058", "stop_lon": 2.5120688161789144, "coord": [48.836395480091795, 2.5120688161789144], "stop_id": 4028797, "stop_desc": "44-48 AVENUE DU GENERAL DE GAULLE - 94058", "stop_name": "PLACE BEAUFRANCHET"}, "geometry": {"type": "Point", "coordinates": [2.5120688161789144, 48.836395480091795]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c1eed1979fdbd0d0e4a27489dcb794a402a562e4", "fields": {"departement": "94", "stop_lat": 48.83477537240173, "code_postal": "94015", "stop_lon": 2.5196193536418727, "coord": [48.83477537240173, 2.5196193536418727], "stop_id": 4028804, "stop_desc": "1 AV DE RIGNY - 94015", "stop_name": "MAIRIE DE BRY-SUR-MARNE"}, "geometry": {"type": "Point", "coordinates": [2.5196193536418727, 48.83477537240173]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1fbf62276613a827bbc2420fd0b42cca7e1681bb", "fields": {"departement": "94", "stop_lat": 48.83971417428451, "code_postal": "94015", "stop_lon": 2.522455164631506, "coord": [48.83971417428451, 2.522455164631506], "stop_id": 4028806, "stop_desc": "4 BIS BOULEVARD DU GENERAL GALLIENI - 94015", "stop_name": "CHATEAU"}, "geometry": {"type": "Point", "coordinates": [2.522455164631506, 48.83971417428451]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3b9b66e7216bbed6247e959a3bd993b82fd2b816", "fields": {"departement": "94", "stop_lat": 48.83393968487427, "code_postal": "94015", "stop_lon": 2.525293533899705, "coord": [48.83393968487427, 2.525293533899705], "stop_id": 4028818, "stop_desc": "180 BOULEVARD PASTEUR - 94015", "stop_name": "2 DECEMBRE 1870"}, "geometry": {"type": "Point", "coordinates": [2.525293533899705, 48.83393968487427]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "efcf341e929ec53acb6d4414553bd9c5fcb7cb21", "fields": {"departement": "94", "stop_lat": 48.82982876807472, "code_postal": "94079", "stop_lon": 2.5384697464405925, "coord": [48.82982876807472, 2.5384697464405925], "stop_id": 4028826, "stop_desc": "7-9 ROUTE DE BRY - 94079", "stop_name": "FRIEDBERG"}, "geometry": {"type": "Point", "coordinates": [2.5384697464405925, 48.82982876807472]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "125cab6cec99aa255f16942b11aa548f463e5911", "fields": {"departement": "94", "stop_lat": 48.835945431006095, "code_postal": "94052", "stop_lon": 2.4709645048297553, "coord": [48.835945431006095, 2.4709645048297553], "stop_id": 4028842, "stop_desc": "FACE 7-9 AV GEORGES CLEMENCEAU - 94052", "stop_name": "NOGENT-SUR-MARNE RER - PIERRE SEMARD"}, "geometry": {"type": "Point", "coordinates": [2.4709645048297553, 48.835945431006095]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9851e2ed04c65c136f2eb4b15a946b18d8eea3fb", "fields": {"departement": "94", "stop_lat": 48.8357724958462, "code_postal": "94052", "stop_lon": 2.4728837253016107, "coord": [48.8357724958462, 2.4728837253016107], "stop_id": 4028843, "stop_desc": "AV GEORGES CLEMENCEAU - 94052", "stop_name": "NOGENT-SUR-MARNE RER - PIERRE SEMARD"}, "geometry": {"type": "Point", "coordinates": [2.4728837253016107, 48.8357724958462]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a55d1172c0ff9c63537353b46d7e5054b53e66e0", "fields": {"departement": "94", "stop_lat": 48.83574292139633, "code_postal": "94052", "stop_lon": 2.4751572939223943, "coord": [48.83574292139633, 2.4751572939223943], "stop_id": 4028845, "stop_desc": "3-5 GRANDE RUE CHARLES DE GAULLE - 94052", "stop_name": "PLACE DU GENERAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.4751572939223943, 48.83574292139633]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a173fcd637702672e20b67aa498bd48b94e0d096", "fields": {"departement": "94", "stop_lat": 48.83631306496527, "code_postal": "94052", "stop_lon": 2.4794610851063337, "coord": [48.83631306496527, 2.4794610851063337], "stop_id": 4028846, "stop_desc": "60 GRANDE RUE CHARLES DE GAULLE - 94052", "stop_name": "RUE DE BEAUTE"}, "geometry": {"type": "Point", "coordinates": [2.4794610851063337, 48.83631306496527]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "77801570afad499a5f0268ec39f68fe5a05248b9", "fields": {"departement": "94", "stop_lat": 48.83651943713013, "code_postal": "94052", "stop_lon": 2.479747562623527, "coord": [48.83651943713013, 2.479747562623527], "stop_id": 4028847, "stop_desc": "FACE 60BIS GRANDE RUE CHARLES DE GAULLE - 94052", "stop_name": "RUE DE BEAUTE"}, "geometry": {"type": "Point", "coordinates": [2.479747562623527, 48.83651943713013]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "67ee3dd3f4084d1f601ac77afce831a9b2186a94", "fields": {"departement": "94", "stop_lat": 48.83615702610112, "code_postal": "94052", "stop_lon": 2.482156379329326, "coord": [48.83615702610112, 2.482156379329326], "stop_id": 4028848, "stop_desc": "FACE AVENUE DE LATTRE DE TASSIGNY - 94052", "stop_name": "SOUS-PREFECTURE - JULES FERRY"}, "geometry": {"type": "Point", "coordinates": [2.482156379329326, 48.83615702610112]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "de2f223343303e3f95394473a85b39b3fbe81a3e", "fields": {"departement": "94", "stop_lat": 48.83567647044124, "code_postal": "94052", "stop_lon": 2.4926246901215525, "coord": [48.83567647044124, 2.4926246901215525], "stop_id": 4028853, "stop_desc": "39-41 RUE JACQUES KABLE - 94052", "stop_name": "VIADUC"}, "geometry": {"type": "Point", "coordinates": [2.4926246901215525, 48.83567647044124]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "00e94502be3bc98c0195c4911e69a98ed192df17", "fields": {"departement": "94", "stop_lat": 48.83842408841958, "code_postal": "94058", "stop_lon": 2.494593529552752, "coord": [48.83842408841958, 2.494593529552752], "stop_id": 4028855, "stop_desc": "PLACE ROBERT BELVAUX - 94058", "stop_name": "NOGENT-LE-PERREUX RER"}, "geometry": {"type": "Point", "coordinates": [2.494593529552752, 48.83842408841958]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8f7cfbee00406e651dd85fec5efd0f08be82254b", "fields": {"departement": "94", "stop_lat": 48.83427753993413, "code_postal": "94058", "stop_lon": 2.516009820486316, "coord": [48.83427753993413, 2.516009820486316], "stop_id": 4028869, "stop_desc": "219 AVENUE PIERRE BROSSOLETTE - 94058", "stop_name": "MARECHAL JOFFRE - PONT DE BRY"}, "geometry": {"type": "Point", "coordinates": [2.516009820486316, 48.83427753993413]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "31623f7c89c6e2bdd76327e94424ed5b63a969d9", "fields": {"departement": "94", "stop_lat": 48.84080528787608, "code_postal": "94015", "stop_lon": 2.5258766738291087, "coord": [48.84080528787608, 2.5258766738291087], "stop_id": 4028879, "stop_desc": "4 BD PASTEUR - 94015", "stop_name": "CIMETIERE - FUNERARIUM DE BRY"}, "geometry": {"type": "Point", "coordinates": [2.5258766738291087, 48.84080528787608]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "126b162f2913802abe5b6f359417bc8f151334b8", "fields": {"departement": "94", "stop_lat": 48.84032410062164, "code_postal": "94015", "stop_lon": 2.528911262894006, "coord": [48.84032410062164, 2.528911262894006], "stop_id": 4028881, "stop_desc": "FACE 25 BOULEVARD PASTEUR - 94015", "stop_name": "CHEMIN DES MOINES"}, "geometry": {"type": "Point", "coordinates": [2.528911262894006, 48.84032410062164]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "29da47a50764ce0417811a8697320ba39c4f7522", "fields": {"departement": "94", "stop_lat": 48.83348118957876, "code_postal": "94015", "stop_lon": 2.525373556761865, "coord": [48.83348118957876, 2.525373556761865], "stop_id": 4028886, "stop_desc": "FACE 188 BD PASTEUR - 94015", "stop_name": "2 DECEMBRE 1870"}, "geometry": {"type": "Point", "coordinates": [2.525373556761865, 48.83348118957876]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cb6bfc86949a745d9b71305531c1561dce43adf6", "fields": {"departement": "94", "stop_lat": 48.8322665273916, "code_postal": "94015", "stop_lon": 2.5317948449824925, "coord": [48.8322665273916, 2.5317948449824925], "stop_id": 4028889, "stop_desc": "BOULEVARD PASTEUR - 94015", "stop_name": "GEORGES MELIES"}, "geometry": {"type": "Point", "coordinates": [2.5317948449824925, 48.8322665273916]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8cccd951579af986de0b6bcf69b8bb180bfa836e", "fields": {"departement": "94", "stop_lat": 48.83278008495768, "code_postal": "94015", "stop_lon": 2.5310207786855186, "coord": [48.83278008495768, 2.5310207786855186], "stop_id": 4028890, "stop_desc": "BD PASTEUR - 94015", "stop_name": "GEORGES MELIES"}, "geometry": {"type": "Point", "coordinates": [2.5310207786855186, 48.83278008495768]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "33c5c713256217a107b9b869051e65f09113addc", "fields": {"departement": "94", "stop_lat": 48.8299271941974, "code_postal": "94079", "stop_lon": 2.5387287778459253, "coord": [48.8299271941974, 2.5387287778459253], "stop_id": 4028894, "stop_desc": "10 ROUTE DE BRY - 94079", "stop_name": "FRIEDBERG"}, "geometry": {"type": "Point", "coordinates": [2.5387287778459253, 48.8299271941974]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ab8ccfe6423153186a5805797d140805453d3f6c", "fields": {"departement": "94", "stop_lat": 48.823395811335416, "code_postal": "94079", "stop_lon": 2.542432954768838, "coord": [48.823395811335416, 2.542432954768838], "stop_id": 4028897, "stop_desc": "PL PIERRE SEMARD - 94079", "stop_name": "VILLIERS-SUR-MARNE - LE PLESSIS-TREVISE RER"}, "geometry": {"type": "Point", "coordinates": [2.542432954768838, 48.823395811335416]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "abc6247819953a699bc54566cc4ba9c2686e4972", "fields": {"departement": "94", "stop_lat": 48.836395480091795, "code_postal": "94058", "stop_lon": 2.5120688161789144, "coord": [48.836395480091795, 2.5120688161789144], "stop_id": 4028921, "stop_desc": "44-48 AVENUE DU GENERAL DE GAULLE - 94058", "stop_name": "PLACE BEAUFRANCHET"}, "geometry": {"type": "Point", "coordinates": [2.5120688161789144, 48.836395480091795]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "65c7923f9f1ba7d6ec76fe5a393ed9d76c26d7e2", "fields": {"departement": "92", "stop_lat": 48.88726872385087, "code_postal": "92063", "stop_lon": 2.1718632201600414, "coord": [48.88726872385087, 2.1718632201600414], "stop_id": 4035030, "stop_desc": "GARE ROUTIERE - 92063", "stop_name": "RUEIL-MALMAISON RER"}, "geometry": {"type": "Point", "coordinates": [2.1718632201600414, 48.88726872385087]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8690806199042b300bd9f2b7aed78edab9800be8", "fields": {"departement": "92", "stop_lat": 48.89514144595209, "code_postal": "92050", "stop_lon": 2.192542454162083, "coord": [48.89514144595209, 2.192542454162083], "stop_id": 4035032, "stop_desc": "AVENUE BENOIT FRACHON - 92050", "stop_name": "JULES QUENTIN-NANTERRE VILLE-RER"}, "geometry": {"type": "Point", "coordinates": [2.192542454162083, 48.89514144595209]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "972b48bf16c0887839b2a8ce1a097bcb6ae0d627", "fields": {"departement": "92", "stop_lat": 48.88555130589665, "code_postal": "92051", "stop_lon": 2.258922605272076, "coord": [48.88555130589665, 2.258922605272076], "stop_id": 4035034, "stop_desc": "176 AVENUE CHARLES DE GAULLE - 92051", "stop_name": "PONT DE NEUILLY-METRO"}, "geometry": {"type": "Point", "coordinates": [2.258922605272076, 48.88555130589665]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "09d68abab39a630640bfe632947dce3dfbeefc36", "fields": {"departement": "75", "stop_lat": 48.87379677721912, "code_postal": "75108", "stop_lon": 2.2965443212582546, "coord": [48.87379677721912, 2.2965443212582546], "stop_id": 4035036, "stop_desc": "47 AVENUE DE FRIEDLAND - 75108", "stop_name": "CHARLES DE GAULLE - ETOILE - FRIEDLAND"}, "geometry": {"type": "Point", "coordinates": [2.2965443212582546, 48.87379677721912]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cbaa034c96cfc3f0f0096ecdd72d95028e61b1fd", "fields": {"departement": "93", "stop_lat": 48.90104281606892, "code_postal": "93047", "stop_lon": 2.5692952134673757, "coord": [48.90104281606892, 2.5692952134673757], "stop_id": 4035478, "stop_desc": "FACE 65 RUE HENRI BARBUSSE - 93047", "stop_name": "HOTEL DE VILLE DE MONTFERMEIL"}, "geometry": {"type": "Point", "coordinates": [2.5692952134673757, 48.90104281606892]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a1873175ffeba19ae132fb63cee3079f29a9aaa5", "fields": {"departement": "93", "stop_lat": 48.90778406877689, "code_postal": "93014", "stop_lon": 2.533782592514705, "coord": [48.90778406877689, 2.533782592514705], "stop_id": 4035496, "stop_desc": "BOULEVARD GAGARINE - 93014", "stop_name": "COLLEGE LOUISE MICHEL"}, "geometry": {"type": "Point", "coordinates": [2.533782592514705, 48.90778406877689]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8f41b06206fc648354bc7d3e5f0f02461e51dda7", "fields": {"departement": "93", "stop_lat": 48.90888406123371, "code_postal": "93046", "stop_lon": 2.5316053431104883, "coord": [48.90888406123371, 2.5316053431104883], "stop_id": 4035497, "stop_desc": "43 AVENUE LEON BLUM - 93046", "stop_name": "JEAN-BAPTISTE CLEMENT"}, "geometry": {"type": "Point", "coordinates": [2.5316053431104883, 48.90888406123371]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9baa998eac1b262c605d8b4fdfdd03b535ec0f70", "fields": {"departement": "93", "stop_lat": 48.90859629871849, "code_postal": "93046", "stop_lon": 2.531713334134483, "coord": [48.90859629871849, 2.531713334134483], "stop_id": 4035498, "stop_desc": "26 AVENUE LEON BLUM - 93046", "stop_name": "JEAN-BAPTISTE CLEMENT"}, "geometry": {"type": "Point", "coordinates": [2.531713334134483, 48.90859629871849]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cd1a32eb42e8e8521b17d17ecdb4b749c3a42c69", "fields": {"departement": "93", "stop_lat": 48.899505143899496, "code_postal": "93062", "stop_lon": 2.5178705933413594, "coord": [48.899505143899496, 2.5178705933413594], "stop_id": 4035506, "stop_desc": "2 AVENUE DE LIVRY - 93062", "stop_name": "ROND-POINT THIERS"}, "geometry": {"type": "Point", "coordinates": [2.5178705933413594, 48.899505143899496]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "992f2c7907f5bfd8f53b8bc16cfe80a1636e6a07", "fields": {"departement": "93", "stop_lat": 48.900976669119245, "code_postal": "93062", "stop_lon": 2.5134453875476033, "coord": [48.900976669119245, 2.5134453875476033], "stop_id": 4035507, "stop_desc": "13 AVENUE THIERS - 93062", "stop_name": "CENTRE SPORTIF - PISCINE"}, "geometry": {"type": "Point", "coordinates": [2.5134453875476033, 48.900976669119245]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "23427706fb893cac6c40b22e029d46e2226c5941", "fields": {"departement": "93", "stop_lat": 48.90313270953216, "code_postal": "93057", "stop_lon": 2.5078634491475795, "coord": [48.90313270953216, 2.5078634491475795], "stop_id": 4035511, "stop_desc": "177-179 AVENUE JEAN JAURES - 93057", "stop_name": "PRESIDENT WILSON - MAIRIE"}, "geometry": {"type": "Point", "coordinates": [2.5078634491475795, 48.90313270953216]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2d58fa474785fc1ff33714014e3ec5614c6138fc", "fields": {"departement": "93", "stop_lat": 48.90416102868509, "code_postal": "93057", "stop_lon": 2.5051948388058465, "coord": [48.90416102868509, 2.5051948388058465], "stop_id": 4035513, "stop_desc": "FACE 120 AVENUE JEAN JAURES - 93057", "stop_name": "PIERRE BROSSOLETTE - LA BASOCHE"}, "geometry": {"type": "Point", "coordinates": [2.5051948388058465, 48.90416102868509]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dc600110c44b459387d44631fa690ee820f2870f", "fields": {"departement": "93", "stop_lat": 48.905486896676855, "code_postal": "93008", "stop_lon": 2.4651318210827156, "coord": [48.905486896676855, 2.4651318210827156], "stop_id": 4035529, "stop_desc": "412 AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "RUE DES PEUPLIERS"}, "geometry": {"type": "Point", "coordinates": [2.4651318210827156, 48.905486896676855]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8a3e3f1919185c3e6d8d0edf9f4abee3c4cb3c3f", "fields": {"departement": "93", "stop_lat": 48.89345208786673, "code_postal": "93055", "stop_lon": 2.413990385997094, "coord": [48.89345208786673, 2.413990385997094], "stop_id": 4035546, "stop_desc": "153 AVENUE JEAN LOLIVE - 93055", "stop_name": "EGLISE DE PANTIN-METRO"}, "geometry": {"type": "Point", "coordinates": [2.413990385997094, 48.89345208786673]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ea48106d47fb82d20c7bb037195b0c922ee3ab07", "fields": {"departement": "75", "stop_lat": 48.88842234356189, "code_postal": "75119", "stop_lon": 2.392136505883537, "coord": [48.88842234356189, 2.392136505883537], "stop_id": 4035550, "stop_desc": "204-206 AVENUE JEAN JAURES - 75119", "stop_name": "PORTE DE PANTIN - METRO"}, "geometry": {"type": "Point", "coordinates": [2.392136505883537, 48.88842234356189]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "83dd9355bc02aee510df86dbefa05583fc3b43ed", "fields": {"departement": "75", "stop_lat": 48.887426807824475, "code_postal": "75119", "stop_lon": 2.387501862391329, "coord": [48.887426807824475, 2.387501862391329], "stop_id": 4035551, "stop_desc": "167 AVENUE JEAN JAURES - 75119", "stop_name": "OURCQ"}, "geometry": {"type": "Point", "coordinates": [2.387501862391329, 48.887426807824475]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b0577bbccf3d8e05f9222ec997743c0c74d15dcc", "fields": {"departement": "75", "stop_lat": 48.88590126784092, "code_postal": "75119", "stop_lon": 2.381749450930778, "coord": [48.88590126784092, 2.381749450930778], "stop_id": 4035553, "stop_desc": "119 AVENUE JEAN JAURES - 75119", "stop_name": "JEAN JAURES - LORRAINE"}, "geometry": {"type": "Point", "coordinates": [2.381749450930778, 48.88590126784092]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d03fc739ae2f99a927481f0b5e477cb73f8499b0", "fields": {"departement": "75", "stop_lat": 48.880711840653206, "code_postal": "75110", "stop_lon": 2.3644803008586255, "coord": [48.880711840653206, 2.3644803008586255], "stop_id": 4035557, "stop_desc": "217 RUE DU FAUBOURG SAINT-MARTIN - 75110", "stop_name": "LOUIS BLANC"}, "geometry": {"type": "Point", "coordinates": [2.3644803008586255, 48.880711840653206]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "523cd0436dbe3e56f15c91103175cfba3a3b5a7d", "fields": {"departement": "75", "stop_lat": 48.878384730659775, "code_postal": "75110", "stop_lon": 2.361753913742779, "coord": [48.878384730659775, 2.361753913742779], "stop_id": 4035559, "stop_desc": "FACE 186 RUE DU FAUBOURG SAINT-MARTIN - 75110", "stop_name": "CHATEAU LANDON"}, "geometry": {"type": "Point", "coordinates": [2.361753913742779, 48.878384730659775]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "63d462a43e1997d12a6ef9ddd0f13e849eadf6b6", "fields": {"departement": "75", "stop_lat": 48.87619243475698, "code_postal": "75110", "stop_lon": 2.3586326958393027, "coord": [48.87619243475698, 2.3586326958393027], "stop_id": 4035561, "stop_desc": "FACE 7 RUE DU 8 MAI 1945 - 75110", "stop_name": "GARE DE L'EST"}, "geometry": {"type": "Point", "coordinates": [2.3586326958393027, 48.87619243475698]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3014f05aa74098f00c5e5172ec8190c23389b2e7", "fields": {"departement": "93", "stop_lat": 48.891686419646405, "code_postal": "93055", "stop_lon": 2.4061236501025007, "coord": [48.891686419646405, 2.4061236501025007], "stop_id": 4035565, "stop_desc": "92 AVENUE JEAN LOLIVE - 93055", "stop_name": "ETIENNE MARCEL"}, "geometry": {"type": "Point", "coordinates": [2.4061236501025007, 48.891686419646405]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cd53441bd58e967722befdc0fea5278740fd660e", "fields": {"departement": "93", "stop_lat": 48.90569029404579, "code_postal": "93008", "stop_lon": 2.459720013319434, "coord": [48.90569029404579, 2.459720013319434], "stop_id": 4035570, "stop_desc": "AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "CITE ADMINISTRATIVE"}, "geometry": {"type": "Point", "coordinates": [2.459720013319434, 48.90569029404579]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f3e225c1a2923d47562492b11970eb2059ab111f", "fields": {"departement": "93", "stop_lat": 48.90027462601666, "code_postal": "93047", "stop_lon": 2.5668653418209715, "coord": [48.90027462601666, 2.5668653418209715], "stop_id": 4035573, "stop_desc": "1 RUE PAUL BERT - 93047", "stop_name": "PAUL BERT"}, "geometry": {"type": "Point", "coordinates": [2.5668653418209715, 48.90027462601666]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e5f48f5d3e9ce186abc87808c8bac109f9ebdc87", "fields": {"departement": "93", "stop_lat": 48.89976454852169, "code_postal": "93047", "stop_lon": 2.574919301798445, "coord": [48.89976454852169, 2.574919301798445], "stop_id": 4035574, "stop_desc": "FACE 85 RUE DU LAVOIR - 93047", "stop_name": "COLLEGE PICASSO"}, "geometry": {"type": "Point", "coordinates": [2.574919301798445, 48.89976454852169]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1b5d499e448f1255f1b0cb45607af5d7a69ad436", "fields": {"departement": "95", "stop_lat": 48.994726805411624, "code_postal": "95539", "stop_lon": 2.368405099191321, "coord": [48.994726805411624, 2.368405099191321], "stop_id": 4035650, "stop_desc": "62 BD DE LA GARE - 95539", "stop_name": "GARE DE SARCELLES-SAINT-BRICE"}, "geometry": {"type": "Point", "coordinates": [2.368405099191321, 48.994726805411624]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4c03ebbcca59e1fe3689e439fc76e521d1b8c589", "fields": {"departement": "95", "stop_lat": 48.991445119553724, "code_postal": "95585", "stop_lon": 2.374179444928489, "coord": [48.991445119553724, 2.374179444928489], "stop_id": 4035653, "stop_desc": "49 RUE PIERRE BROSSOLETTE - 95585", "stop_name": "THEODORE BULLIER"}, "geometry": {"type": "Point", "coordinates": [2.374179444928489, 48.991445119553724]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "532ef2ebb3b321d8bd663897d11ad0d08649f8a1", "fields": {"departement": "95", "stop_lat": 48.98882900033444, "code_postal": "95585", "stop_lon": 2.377482067468722, "coord": [48.98882900033444, 2.377482067468722], "stop_id": 4035656, "stop_desc": "BOULEVARD FRANCOIS MITTERRAND - 95585", "stop_name": "MOZART - MALESHERBES"}, "geometry": {"type": "Point", "coordinates": [2.377482067468722, 48.98882900033444]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0d8fe4cfb09e44372fb30792c9714224484a21c4", "fields": {"departement": "95", "stop_lat": 48.983445372512016, "code_postal": "95585", "stop_lon": 2.3796078265809943, "coord": [48.983445372512016, 2.3796078265809943], "stop_id": 4035657, "stop_desc": "AVENUE PAUL LANGEVIN - 95585", "stop_name": "PISCINE"}, "geometry": {"type": "Point", "coordinates": [2.3796078265809943, 48.983445372512016]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7ea9ee6a8c35b0a64332994e35b6b83cafbe1bc2", "fields": {"departement": "95", "stop_lat": 48.97980646193852, "code_postal": "95585", "stop_lon": 2.3778163653237265, "coord": [48.97980646193852, 2.3778163653237265], "stop_id": 4035659, "stop_desc": "1 BOULEVARD ALEXIS CARREL - 95585", "stop_name": "PAUL VALERY - DE LATTRE DE TASSIGNY"}, "geometry": {"type": "Point", "coordinates": [2.3778163653237265, 48.97980646193852]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9de18dc8747cf9959cc11a90bf0b2ffaa946a423", "fields": {"departement": "95", "stop_lat": 48.97832069546756, "code_postal": "95585", "stop_lon": 2.3858290094265384, "coord": [48.97832069546756, 2.3858290094265384], "stop_id": 4035663, "stop_desc": "AVENUE PAUL VALERY - 95585", "stop_name": "LOCHERES"}, "geometry": {"type": "Point", "coordinates": [2.3858290094265384, 48.97832069546756]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "105f829141d9d04f7c2372f9dd677cc8de204863", "fields": {"departement": "95", "stop_lat": 48.9734622776144, "code_postal": "95268", "stop_lon": 2.3982194329211333, "coord": [48.9734622776144, 2.3982194329211333], "stop_id": 4035668, "stop_desc": "AVENUE FRANCOIS MITTERRAND - 95268", "stop_name": "DE GAULLE - MITTERRAND"}, "geometry": {"type": "Point", "coordinates": [2.3982194329211333, 48.9734622776144]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8fe0c2e37917f6b111aa65f1ce4ecfc8f7ad9e29", "fields": {"departement": "95", "stop_lat": 48.96916009704261, "code_postal": "95268", "stop_lon": 2.393341410920145, "coord": [48.96916009704261, 2.393341410920145], "stop_id": 4035673, "stop_desc": "21 AVENUE PAUL VAILLANT COUTURIER - 95268", "stop_name": "BELLEVUE"}, "geometry": {"type": "Point", "coordinates": [2.393341410920145, 48.96916009704261]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ab5106bbb20035841522667b7012682a1a516365", "fields": {"departement": "93", "stop_lat": 48.960420869630234, "code_postal": "93072", "stop_lon": 2.3820728157965996, "coord": [48.960420869630234, 2.3820728157965996], "stop_id": 4035681, "stop_desc": "FACE 47 AVENUE MARCEL CACHIN - 93072", "stop_name": "LES PAROUZETS"}, "geometry": {"type": "Point", "coordinates": [2.3820728157965996, 48.960420869630234]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c19c4bddbaaacfd2e6bec49f85130e2c681528e9", "fields": {"departement": "93", "stop_lat": 48.94922196627469, "code_postal": "93072", "stop_lon": 2.3858289941299575, "coord": [48.94922196627469, 2.3858289941299575], "stop_id": 4035686, "stop_desc": "FACE 99 BOULEVARD MAXIME GORKI - 93072", "stop_name": "LE GLOBE"}, "geometry": {"type": "Point", "coordinates": [2.3858289941299575, 48.94922196627469]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e09dca5dc6b7a2e2fca5c7321fc6ad0133b04f70", "fields": {"departement": "93", "stop_lat": 48.946274104207006, "code_postal": "93072", "stop_lon": 2.386331044930748, "coord": [48.946274104207006, 2.386331044930748], "stop_id": 4035688, "stop_desc": "FACE 191 BOULEVARD MAXIME GORKI - 93072", "stop_name": "CROIX BLANCHE"}, "geometry": {"type": "Point", "coordinates": [2.386331044930748, 48.946274104207006]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e59da9f5c8f1bec096a78438a5a2f2a405da25b5", "fields": {"departement": "93", "stop_lat": 48.946903036868115, "code_postal": "93072", "stop_lon": 2.386672737644679, "coord": [48.946903036868115, 2.386672737644679], "stop_id": 4035689, "stop_desc": "169 BOULEVARD MAXIME GORKI - 93072", "stop_name": "CROIX BLANCHE"}, "geometry": {"type": "Point", "coordinates": [2.386672737644679, 48.946903036868115]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f97e35d7998258430fb02caa8e79fe5bace4dc8f", "fields": {"departement": "93", "stop_lat": 48.92275658140487, "code_postal": "93027", "stop_lon": 2.3836221740870704, "coord": [48.92275658140487, 2.3836221740870704], "stop_id": 4035697, "stop_desc": "51 BOULEVARD PASTEUR - 93027", "stop_name": "LA COURNEUVE - AUBERVILLIERS RER"}, "geometry": {"type": "Point", "coordinates": [2.3836221740870704, 48.92275658140487]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fc3c836790578fd1b427a0b180aeaebbd544a00c", "fields": {"departement": "93", "stop_lat": 48.91088635912227, "code_postal": "93001", "stop_lon": 2.379330356593486, "coord": [48.91088635912227, 2.379330356593486], "stop_id": 4035703, "stop_desc": "118 BIS AVENUE VICTOR HUGO - 93001", "stop_name": "VILLEBOIS - MAREUIL"}, "geometry": {"type": "Point", "coordinates": [2.379330356593486, 48.91088635912227]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "331274102d3163e439aed79be0ad9b541c8ff5c1", "fields": {"departement": "93", "stop_lat": 48.90933199092265, "code_postal": "93001", "stop_lon": 2.3782111091054023, "coord": [48.90933199092265, 2.3782111091054023], "stop_id": 4035704, "stop_desc": "129 BIS AVENUE VICTOR HUGO - 93001", "stop_name": "FELIX FAURE - VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.3782111091054023, 48.90933199092265]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ba467ee3edbbe570e7e93aadd7c24f4c8116865d", "fields": {"departement": "75", "stop_lat": 48.894984549435996, "code_postal": "75118", "stop_lon": 2.359526410435676, "coord": [48.894984549435996, 2.359526410435676], "stop_id": 4035717, "stop_desc": "66 RUE DE LA CHAPELLE - 75118", "stop_name": "BOUCRY"}, "geometry": {"type": "Point", "coordinates": [2.359526410435676, 48.894984549435996]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d572e4ea4cca7b646862182cf5301c533fea8d7a", "fields": {"departement": "75", "stop_lat": 48.892989410552985, "code_postal": "75118", "stop_lon": 2.3594710343482697, "coord": [48.892989410552985, 2.3594710343482697], "stop_id": 4035718, "stop_desc": "33 RUE DE LA CHAPELLE - 75118", "stop_name": "LES ROSES"}, "geometry": {"type": "Point", "coordinates": [2.3594710343482697, 48.892989410552985]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b7abdcd5800a54af9c2c6eddb5c9f6b8e6ff1d9c", "fields": {"departement": "75", "stop_lat": 48.8869140179454, "code_postal": "75118", "stop_lon": 2.3597546195871972, "coord": [48.8869140179454, 2.3597546195871972], "stop_id": 4035723, "stop_desc": "38-40 RUE MARX DORMOY - 75118", "stop_name": "DEPARTEMENT - MARX DORMOY"}, "geometry": {"type": "Point", "coordinates": [2.3597546195871972, 48.8869140179454]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ecd985b6df378b5d9b7d13e52ac4ac910124f5bc", "fields": {"departement": "75", "stop_lat": 48.88269019810708, "code_postal": "75110", "stop_lon": 2.3587988991979594, "coord": [48.88269019810708, 2.3587988991979594], "stop_id": 4035725, "stop_desc": "197 RUE DU FAUBOURG SAINT-DENIS - 75110", "stop_name": "CAIL - DEMARQUAY"}, "geometry": {"type": "Point", "coordinates": [2.3587988991979594, 48.88269019810708]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "63e77dc937b81ab5b52c858a39d4941ea5a94321", "fields": {"departement": "75", "stop_lat": 48.89837942410141, "code_postal": "75118", "stop_lon": 2.3694376662733503, "coord": [48.89837942410141, 2.3694376662733503], "stop_id": 4035734, "stop_desc": "FACE 4 BOULEVARD NEY - 75118", "stop_name": "PORTE D'AUBERVILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.3694376662733503, 48.89837942410141]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e4f87409282158bb58aa6f46f1aceabe7e13eef6", "fields": {"departement": "93", "stop_lat": 48.941474563908756, "code_postal": "93027", "stop_lon": 2.387758950668094, "coord": [48.941474563908756, 2.387758950668094], "stop_id": 4035738, "stop_desc": "AV ROGER SALENGRO - 93027", "stop_name": "CITE FLOREAL"}, "geometry": {"type": "Point", "coordinates": [2.387758950668094, 48.941474563908756]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dafbafefd67cf57d1adc4b7db6cca740a4872978", "fields": {"departement": "95", "stop_lat": 48.976808500972865, "code_postal": "95268", "stop_lon": 2.391534019720296, "coord": [48.976808500972865, 2.391534019720296], "stop_id": 4035739, "stop_desc": "1 AVENUE CHARLES DE GAULLE - 95268", "stop_name": "GARGES - SARCELLES RER"}, "geometry": {"type": "Point", "coordinates": [2.391534019720296, 48.976808500972865]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fe46d38f9873f5f34e130123b85620f597d88594", "fields": {"departement": "93", "stop_lat": 48.95658572640723, "code_postal": "93005", "stop_lon": 2.4657356877614824, "coord": [48.95658572640723, 2.4657356877614824], "stop_id": 4035741, "stop_desc": "VOIE PARALLELE A L'ENTREPOT NUMERO 1 - 93005", "stop_name": "GARONOR"}, "geometry": {"type": "Point", "coordinates": [2.4657356877614824, 48.95658572640723]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5aad28b8994ab279c94fea06505c5526ca2b963f", "fields": {"departement": "93", "stop_lat": 48.952536508620526, "code_postal": "93007", "stop_lon": 2.462164198411897, "coord": [48.952536508620526, 2.462164198411897], "stop_id": 4035745, "stop_desc": "RUE ANATOLE SIGONNEAU - 93007", "stop_name": "ANATOLE SIGONNEAU - CENTRE D'AFFAIRES"}, "geometry": {"type": "Point", "coordinates": [2.462164198411897, 48.952536508620526]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4d6e915bb6ca865743aac959b148cf93f59f0780", "fields": {"departement": "93", "stop_lat": 48.94052953216569, "code_postal": "93007", "stop_lon": 2.462776414924133, "coord": [48.94052953216569, 2.462776414924133], "stop_id": 4035755, "stop_desc": "87 AVENUE HENRI BARBUSSE - 93007", "stop_name": "AUDRAN"}, "geometry": {"type": "Point", "coordinates": [2.462776414924133, 48.94052953216569]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a15016bf915705a3cadc8c14a824b5b9ac81a848", "fields": {"departement": "93", "stop_lat": 48.940233053832436, "code_postal": "93007", "stop_lon": 2.4626938434728123, "coord": [48.940233053832436, 2.4626938434728123], "stop_id": 4035756, "stop_desc": "74-76 AVENUE HENRI BARBUSSE - 93007", "stop_name": "AUDRAN"}, "geometry": {"type": "Point", "coordinates": [2.4626938434728123, 48.940233053832436]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eaca3efebef0de0c516b518e9258977ad56ce308", "fields": {"departement": "93", "stop_lat": 48.93906619547618, "code_postal": "93007", "stop_lon": 2.461326835644282, "coord": [48.93906619547618, 2.461326835644282], "stop_id": 4035758, "stop_desc": "54 AVENUE HENRI BARBUSSE - 93007", "stop_name": "HOTEL DE VILLE DU BLANC-MESNIL"}, "geometry": {"type": "Point", "coordinates": [2.461326835644282, 48.93906619547618]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "770d7e03cb378e3e4fa083db8523cfe9462e2a61", "fields": {"departement": "93", "stop_lat": 48.93002351401339, "code_postal": "93029", "stop_lon": 2.45430814538096, "coord": [48.93002351401339, 2.45430814538096], "stop_id": 4035766, "stop_desc": "FACE 165 RUE ANATOLE FRANCE - 93029", "stop_name": "BREMENT"}, "geometry": {"type": "Point", "coordinates": [2.45430814538096, 48.93002351401339]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b687b75e834f07d6244a9a666e2b8ca6e4a9f12d", "fields": {"departement": "93", "stop_lat": 48.91778431436412, "code_postal": "93001", "stop_lon": 2.407140153386434, "coord": [48.91778431436412, 2.407140153386434], "stop_id": 4035789, "stop_desc": "263 AVENUE JEAN JAURES - 93001", "stop_name": "EDOUARD VAILLANT - JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.407140153386434, 48.91778431436412]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d1539cdb04c37f2d89582ee239c71abab86b4af0", "fields": {"departement": "93", "stop_lat": 48.91142512932666, "code_postal": "93001", "stop_lon": 2.400668813128449, "coord": [48.91142512932666, 2.400668813128449], "stop_id": 4035794, "stop_desc": "172 AVENUE JEAN JAURES - 93001", "stop_name": "RECHOSSIERE"}, "geometry": {"type": "Point", "coordinates": [2.400668813128449, 48.91142512932666]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a9d35828d0800de6ba9b65c841cbbf7f2bad7db8", "fields": {"departement": "75", "stop_lat": 48.890872677145964, "code_postal": "75119", "stop_lon": 2.377569582525219, "coord": [48.890872677145964, 2.377569582525219], "stop_id": 4035803, "stop_desc": "104 AVENUE DE FLANDRE - 75119", "stop_name": "CRIMEE"}, "geometry": {"type": "Point", "coordinates": [2.377569582525219, 48.890872677145964]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7e4dd07cbcfc3c75a7f28f917edb05ddc6fbb2e3", "fields": {"departement": "75", "stop_lat": 48.885805906811996, "code_postal": "75119", "stop_lon": 2.3711060756537696, "coord": [48.885805906811996, 2.3711060756537696], "stop_id": 4035807, "stop_desc": "28 AVENUE DE FLANDRE - 75119", "stop_name": "MAROC - FLANDRE"}, "geometry": {"type": "Point", "coordinates": [2.3711060756537696, 48.885805906811996]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7abc2414533d4539984e82f5d293e2ef9e0795dc", "fields": {"departement": "93", "stop_lat": 48.90129304047551, "code_postal": "93055", "stop_lon": 2.389710036547281, "coord": [48.90129304047551, 2.389710036547281], "stop_id": 4035820, "stop_desc": "32 AVENUE JEAN JAURES - 93055", "stop_name": "MAGENTA"}, "geometry": {"type": "Point", "coordinates": [2.389710036547281, 48.90129304047551]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4334d60991dcd819e2249b47ff7d7193b71b903f", "fields": {"departement": "94", "stop_lat": 48.81513595487389, "code_postal": "94042", "stop_lon": 2.4812539237749385, "coord": [48.81513595487389, 2.4812539237749385], "stop_id": 4035939, "stop_desc": "AVENUE CHARLES FLOQUET - 94042", "stop_name": "CHARLES FLOQUET - DIDEROT"}, "geometry": {"type": "Point", "coordinates": [2.4812539237749385, 48.81513595487389]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "482f167838e6c3945e6e3467dbd5684206e15482", "fields": {"departement": "94", "stop_lat": 48.80930106575029, "code_postal": "94068", "stop_lon": 2.475209521668586, "coord": [48.80930106575029, 2.475209521668586], "stop_id": 4035942, "stop_desc": "15 BIS AVENUE GODEFROY CAVAIGNAC - 94068", "stop_name": "MARINVILLE"}, "geometry": {"type": "Point", "coordinates": [2.475209521668586, 48.80930106575029]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0f6582a086b0a92352d2a8452f1437c38bfd1f14", "fields": {"departement": "94", "stop_lat": 48.809162214755624, "code_postal": "94068", "stop_lon": 2.470868304362221, "coord": [48.809162214755624, 2.470868304362221], "stop_id": 4035944, "stop_desc": "7 RUE DU PONT DE CRETEIL - 94068", "stop_name": "CROIX SOURIS"}, "geometry": {"type": "Point", "coordinates": [2.470868304362221, 48.809162214755624]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c360618d5c174192f0fe6ace18bde49a371f0d99", "fields": {"departement": "94", "stop_lat": 48.80386787555055, "code_postal": "94068", "stop_lon": 2.4713308992074583, "coord": [48.80386787555055, 2.4713308992074583], "stop_id": 4035946, "stop_desc": "FACE 59 RUE DU PONT DE CRETEIL - 94068", "stop_name": "RUE DES REMISES"}, "geometry": {"type": "Point", "coordinates": [2.4713308992074583, 48.80386787555055]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4637727a7f419faceb0169876cd274bfba508422", "fields": {"departement": "94", "stop_lat": 48.800506264849396, "code_postal": "94068", "stop_lon": 2.471471878071295, "coord": [48.800506264849396, 2.471471878071295], "stop_id": 4035948, "stop_desc": "86 RUE DU PONT DE CRETEIL - 94068", "stop_name": "PONT DE CRETEIL"}, "geometry": {"type": "Point", "coordinates": [2.471471878071295, 48.800506264849396]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "378ac47ab378296e56a3a739a05da3c38b3a3591", "fields": {"departement": "94", "stop_lat": 48.79676434459723, "code_postal": "94028", "stop_lon": 2.457436045286632, "coord": [48.79676434459723, 2.457436045286632], "stop_id": 4035954, "stop_desc": "24-26 AVENUE DU MARECHAL DE LATTRE DE TASSIGNY - 94028", "stop_name": "GENERAL GALLIENI"}, "geometry": {"type": "Point", "coordinates": [2.457436045286632, 48.79676434459723]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1ba5872913d30ce78cc7de31846b0ae89519132c", "fields": {"departement": "94", "stop_lat": 48.799383900372796, "code_postal": "94028", "stop_lon": 2.4533197609918105, "coord": [48.799383900372796, 2.4533197609918105], "stop_id": 4035956, "stop_desc": "AVENUE DU MARECHAL DE LATTRE DE TASSIGNY - 94028", "stop_name": "HENRI MONDOR - LAFERRIERE"}, "geometry": {"type": "Point", "coordinates": [2.4533197609918105, 48.799383900372796]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "da3c4f2482078fc974e0051c717254d183ecde0b", "fields": {"departement": "94", "stop_lat": 48.81265425396275, "code_postal": "94046", "stop_lon": 2.427574778454602, "coord": [48.81265425396275, 2.427574778454602], "stop_id": 4035996, "stop_desc": "18 AVENUE DU GENERAL LECLERC - 94046", "stop_name": "ERNEST RENAN"}, "geometry": {"type": "Point", "coordinates": [2.427574778454602, 48.81265425396275]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5163f61160cb9c9840037b5cc96653aaa8f6fad3", "fields": {"departement": "94", "stop_lat": 48.82961792713526, "code_postal": "94017", "stop_lon": 2.493300815393294, "coord": [48.82961792713526, 2.493300815393294], "stop_id": 4036001, "stop_desc": "264 BOULEVARD DE STALINGRAD - 94017", "stop_name": "PIERRE BROSSOLETTE"}, "geometry": {"type": "Point", "coordinates": [2.493300815393294, 48.82961792713526]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f0939de18d2c36889078a225ca57db3542a11f49", "fields": {"departement": "94", "stop_lat": 48.818368537391834, "code_postal": "94017", "stop_lon": 2.539010553063761, "coord": [48.818368537391834, 2.539010553063761], "stop_id": 4036168, "stop_desc": "FACE 67 AVENUE MAURICE THOREZ - 94017", "stop_name": "DOCTEUR BRING"}, "geometry": {"type": "Point", "coordinates": [2.539010553063761, 48.818368537391834]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "383a18641611df7a4322127bbb6a436a833cdff2", "fields": {"departement": "94", "stop_lat": 48.814919195724926, "code_postal": "94017", "stop_lon": 2.537853972399855, "coord": [48.814919195724926, 2.537853972399855], "stop_id": 4036169, "stop_desc": "370 AVENUE MAURICE THOREZ - 94017", "stop_name": "VOLTAIRE"}, "geometry": {"type": "Point", "coordinates": [2.537853972399855, 48.814919195724926]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c9ecd1ba10d8e6d22ce38f9eadaf50d453d4a0b5", "fields": {"departement": "94", "stop_lat": 48.80906834632684, "code_postal": "94017", "stop_lon": 2.537736110172869, "coord": [48.80906834632684, 2.537736110172869], "stop_id": 4036171, "stop_desc": "FACE 8 AVENUE DU 11 NOVEMBRE 1918 - 94017", "stop_name": "LES MORDACS"}, "geometry": {"type": "Point", "coordinates": [2.537736110172869, 48.80906834632684]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3ae8b689a007f0ddfbbaa3f585a6526127a043ee", "fields": {"departement": "94", "stop_lat": 48.818303452164834, "code_postal": "94017", "stop_lon": 2.4925182443483265, "coord": [48.818303452164834, 2.4925182443483265], "stop_id": 4036182, "stop_desc": "89 AVENUE ROGER SALENGRO - 94017", "stop_name": "ARISTIDE BRIAND - LE PLANT"}, "geometry": {"type": "Point", "coordinates": [2.4925182443483265, 48.818303452164834]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d84d9920bc3a236e78ef5d8a26ee351550dedad4", "fields": {"departement": "94", "stop_lat": 48.84523046287141, "code_postal": "94080", "stop_lon": 2.432683449855939, "coord": [48.84523046287141, 2.432683449855939], "stop_id": 4036193, "stop_desc": "48-50 AVENUE DE PARIS - 94080", "stop_name": "VIGNERONS"}, "geometry": {"type": "Point", "coordinates": [2.432683449855939, 48.84523046287141]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b1462df17e431e77591e766548dd0cbfb5908560", "fields": {"departement": "75", "stop_lat": 48.839259765112175, "code_postal": "75112", "stop_lon": 2.3955020021576816, "coord": [48.839259765112175, 2.3955020021576816], "stop_id": 4036210, "stop_desc": "10-12 PLACE FELIX EBOUE - 75112", "stop_name": "DAUMESNIL - FELIX EBOUE"}, "geometry": {"type": "Point", "coordinates": [2.3955020021576816, 48.839259765112175]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c39ae59b85bff694dab717b37083de0cc9d9f509", "fields": {"departement": "75", "stop_lat": 48.844122540397606, "code_postal": "75112", "stop_lon": 2.410812778561765, "coord": [48.844122540397606, 2.410812778561765], "stop_id": 4036214, "stop_desc": "4 AVENUE COURTELINE - 75112", "stop_name": "PORTE DE SAINT-MANDE"}, "geometry": {"type": "Point", "coordinates": [2.410812778561765, 48.844122540397606]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e49575fbe4e79db4967bfb70a5e5751e437b9bfa", "fields": {"departement": "91", "stop_lat": 48.70487397259365, "code_postal": "91161", "stop_lon": 2.3159063254443284, "coord": [48.70487397259365, 2.3159063254443284], "stop_id": 6041908, "stop_desc": "30 AVENUE MAZARIN - 91161", "stop_name": "BEAUREGARD"}, "geometry": {"type": "Point", "coordinates": [2.3159063254443284, 48.70487397259365]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cd1cba6c513a3684568dbe53b3e4ee7a242ac2ff", "fields": {"departement": "92", "stop_lat": 48.81059766892361, "code_postal": "92020", "stop_lon": 2.300417739172848, "coord": [48.81059766892361, 2.300417739172848], "stop_id": 6046775, "stop_desc": "FACE 8 RUE DE L'AVENIR - 92020", "stop_name": "CHATILLON - MONTROUGE"}, "geometry": {"type": "Point", "coordinates": [2.300417739172848, 48.81059766892361]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c74eaf9ea707bec77ba03416d1386d7210865191", "fields": {"departement": "92", "stop_lat": 48.800165010831286, "code_postal": "92020", "stop_lon": 2.282697435867172, "coord": [48.800165010831286, 2.282697435867172], "stop_id": 6046782, "stop_desc": "AVENUE DE VERDUN - 92020", "stop_name": "PARC ANDRE MALRAUX"}, "geometry": {"type": "Point", "coordinates": [2.282697435867172, 48.800165010831286]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e26de9dafaa080cc7b10015675580ea3622f4a25", "fields": {"departement": "92", "stop_lat": 48.794524795590824, "code_postal": "92020", "stop_lon": 2.273031043420119, "coord": [48.794524795590824, 2.273031043420119], "stop_id": 6046784, "stop_desc": "AVENUE DE VERDUN - 92020", "stop_name": "DIVISION LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.273031043420119, 48.794524795590824]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0713b3413d0012e04d0c0232e5ac116093b42362", "fields": {"departement": "78", "stop_lat": 48.7850196042459, "code_postal": "78640", "stop_lon": 2.219535130897101, "coord": [48.7850196042459, 2.219535130897101], "stop_id": 6046798, "stop_desc": "AVENUE MORANE SAULNIER - 78640", "stop_name": "VELIZY 2"}, "geometry": {"type": "Point", "coordinates": [2.219535130897101, 48.7850196042459]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "93742b213f3963cca5fad7c7e9ca11c05ddfd10d", "fields": {"departement": "78", "stop_lat": 48.78344057008095, "code_postal": "78640", "stop_lon": 2.2134862950305427, "coord": [48.78344057008095, 2.2134862950305427], "stop_id": 6046800, "stop_desc": "AVENUE MORANE SAULNIER - 78640", "stop_name": "DEWOITINE"}, "geometry": {"type": "Point", "coordinates": [2.2134862950305427, 48.78344057008095]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "73a453d0128cc3f56669bbfd7f8c7a9310cdc897", "fields": {"departement": "78", "stop_lat": 48.78058521097883, "code_postal": "78640", "stop_lon": 2.1921272034340964, "coord": [48.78058521097883, 2.1921272034340964], "stop_id": 6046806, "stop_desc": "70 AVENUE DE L'EUROPE - 78640", "stop_name": "MAIRIE DE VELIZY"}, "geometry": {"type": "Point", "coordinates": [2.1921272034340964, 48.78058521097883]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9bb97a7355cb59fd53496a42b8d9e83a07908674", "fields": {"departement": "78", "stop_lat": 48.780423444214065, "code_postal": "78640", "stop_lon": 2.1921412555423556, "coord": [48.780423444214065, 2.1921412555423556], "stop_id": 6046807, "stop_desc": "AVENUE LOUIS BREGUET - 78640", "stop_name": "MAIRIE DE VELIZY"}, "geometry": {"type": "Point", "coordinates": [2.1921412555423556, 48.780423444214065]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fa675752c2f888cbdf10cdc372293d8c96c176b0", "fields": {"departement": "92", "stop_lat": 48.78317851738328, "code_postal": "92023", "stop_lon": 2.2305968033368524, "coord": [48.78317851738328, 2.2305968033368524], "stop_id": 6046816, "stop_desc": "AVENUE DE VILLACOUBLAY - 92023", "stop_name": "GEORGES MILLANDY"}, "geometry": {"type": "Point", "coordinates": [2.2305968033368524, 48.78317851738328]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "973a5327175609c1757af6138a77ba44b6a677b7", "fields": {"departement": "91", "stop_lat": 48.706996800991995, "code_postal": "91432", "stop_lon": 2.3278023479938312, "coord": [48.706996800991995, 2.3278023479938312], "stop_id": 6049601, "stop_desc": "FACE 43 RUE DU GENERAL LECLERC - 91432", "stop_name": "SQUARE - CONDORCET"}, "geometry": {"type": "Point", "coordinates": [2.3278023479938312, 48.706996800991995]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8a230ee40580bd4cbc18467d7b498bfb79195669", "fields": {"departement": "91", "stop_lat": 48.706996800991995, "code_postal": "91432", "stop_lon": 2.3278023479938312, "coord": [48.706996800991995, 2.3278023479938312], "stop_id": 6049847, "stop_desc": "FACE 43 RUE DU GENERAL LECLERC - 91432", "stop_name": "SQUARE - CONDORCET"}, "geometry": {"type": "Point", "coordinates": [2.3278023479938312, 48.706996800991995]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "85421dcefdc7aba71e006cc44e187abe700a1cfa", "fields": {"departement": "94", "stop_lat": 48.809738105933455, "code_postal": "94043", "stop_lon": 2.361340495740618, "coord": [48.809738105933455, 2.361340495740618], "stop_id": 6075086, "stop_desc": "6 AVENUE EUGENE THOMAS - 94043", "stop_name": "LE KREMLIN-BICETRE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.361340495740618, 48.809738105933455]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "685463623c84e9fb07a3fa58f26ceaf15fe6e746", "fields": {"departement": "94", "stop_lat": 48.810501863902964, "code_postal": "94043", "stop_lon": 2.362320626590704, "coord": [48.810501863902964, 2.362320626590704], "stop_id": 6075087, "stop_desc": "75 AVENUE DE FONTAINEBLEAU - 94043", "stop_name": "LE KREMLIN-BICETRE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.362320626590704, 48.810501863902964]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eef60650086048cdb5d61821c1b2df318b902f4a", "fields": {"departement": "94", "stop_lat": 48.80943303655347, "code_postal": "94043", "stop_lon": 2.3586460244237313, "coord": [48.80943303655347, 2.3586460244237313], "stop_id": 6075089, "stop_desc": "1 RUE DE VERDUN - 94043", "stop_name": "HOPITAL DU KREMLIN-BICETRE"}, "geometry": {"type": "Point", "coordinates": [2.3586460244237313, 48.80943303655347]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "27db04bee0b8ced5bda63b2f163eecb877774dfe", "fields": {"departement": "94", "stop_lat": 48.79463978887536, "code_postal": "94076", "stop_lon": 2.354205074984419, "coord": [48.79463978887536, 2.354205074984419], "stop_id": 6075096, "stop_desc": "6-8 RUE DE VERDUN - 94076", "stop_name": "INSTITUT GUSTAVE ROUSSY"}, "geometry": {"type": "Point", "coordinates": [2.354205074984419, 48.79463978887536]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "722941c4d91c2250098d025d3c498a7670ab056b", "fields": {"departement": "94", "stop_lat": 48.79403759305073, "code_postal": "94076", "stop_lon": 2.354259293159642, "coord": [48.79403759305073, 2.354259293159642], "stop_id": 6075097, "stop_desc": "17 RUE DE VERDUN - 94076", "stop_name": "INSTITUT GUSTAVE ROUSSY"}, "geometry": {"type": "Point", "coordinates": [2.354259293159642, 48.79403759305073]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4f499b06d3e71ee3b0649740b3870c72b2f8b59a", "fields": {"departement": "94", "stop_lat": 48.791287372333734, "code_postal": "94076", "stop_lon": 2.3537278766347285, "coord": [48.791287372333734, 2.3537278766347285], "stop_id": 6075099, "stop_desc": "RUE DE VERDUN - 94076", "stop_name": "VERDUN - HAUTES BRUYERES"}, "geometry": {"type": "Point", "coordinates": [2.3537278766347285, 48.791287372333734]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2342e5e29aca5af570df12a7ede2242dc9ee9227", "fields": {"departement": "94", "stop_lat": 48.8061526129115, "code_postal": "94076", "stop_lon": 2.3579779362065865, "coord": [48.8061526129115, 2.3579779362065865], "stop_id": 6075114, "stop_desc": "5 BOULEVARD CHASTENET DE GERY - 94076", "stop_name": "CHASTENET DE GERY"}, "geometry": {"type": "Point", "coordinates": [2.3579779362065865, 48.8061526129115]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f4b1c894ec322fbaea3b4ef1f1e900d10e1136e1", "fields": {"departement": "75", "stop_lat": 48.86661383061701, "code_postal": "75101", "stop_lon": 2.3344075309487886, "coord": [48.86661383061701, 2.3344075309487886], "stop_id": 6129304, "stop_desc": "Rue de l'Echelle - 75101", "stop_name": "Pyramides"}, "geometry": {"type": "Point", "coordinates": [2.3344075309487886, 48.86661383061701]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ef9e69ded017c91d76eee5347a8a0e7b0a515dbe", "fields": {"departement": "75", "stop_lat": 48.87984885258133, "code_postal": "75117", "stop_lon": 2.2830904982986158, "coord": [48.87984885258133, 2.2830904982986158], "stop_id": 6131927, "stop_desc": "11 BIS BOULEVARD PERSHING - 75117", "stop_name": "PORTE MAILLOT - PERSHING"}, "geometry": {"type": "Point", "coordinates": [2.2830904982986158, 48.87984885258133]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6ba82568b609f922d1d46ca3a8b5715e89f150ee", "fields": {"departement": "75", "stop_lat": 48.87984885258133, "code_postal": "75117", "stop_lon": 2.2830904982986158, "coord": [48.87984885258133, 2.2830904982986158], "stop_id": 6131928, "stop_desc": "11 BIS BOULEVARD PERSHING - 75117", "stop_name": "PORTE MAILLOT - PERSHING"}, "geometry": {"type": "Point", "coordinates": [2.2830904982986158, 48.87984885258133]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d605b0d29b02cd594d8981e90650bc68bed9bf93", "fields": {"departement": "75", "stop_lat": 48.89745787204729, "code_postal": "75118", "stop_lon": 2.329975814491889, "coord": [48.89745787204729, 2.329975814491889], "stop_id": 6131931, "stop_desc": "151 BOULEVARD NEY - 75118", "stop_name": "PORTE DE SAINT-OUEN - HOPITAL BICHAT"}, "geometry": {"type": "Point", "coordinates": [2.329975814491889, 48.89745787204729]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0a69db412bfd76811e7f5f3fdabc24434d96ac42", "fields": {"departement": "75", "stop_lat": 48.89781732898422, "code_postal": "75118", "stop_lon": 2.329525943205834, "coord": [48.89781732898422, 2.329525943205834], "stop_id": 6131932, "stop_desc": "BOULEVARD NEY - 75118", "stop_name": "PORTE DE SAINT-OUEN - HOPITAL BICHAT"}, "geometry": {"type": "Point", "coordinates": [2.329525943205834, 48.89781732898422]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e27c305faa65488a5c9d43959ce095cac7fd0b4c", "fields": {"departement": "75", "stop_lat": 48.887925614289436, "code_postal": "75117", "stop_lon": 2.2991771211380807, "coord": [48.887925614289436, 2.2991771211380807], "stop_id": 6131935, "stop_desc": "134 BOULEVARD BERTHIER - 75117", "stop_name": "GOURGAUD - PAUL ADAM"}, "geometry": {"type": "Point", "coordinates": [2.2991771211380807, 48.887925614289436]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "59edcc7f80ce82e1383cc82ba88f6912beefa866", "fields": {"departement": "75", "stop_lat": 48.897430330084035, "code_postal": "75117", "stop_lon": 2.3234193883003913, "coord": [48.897430330084035, 2.3234193883003913], "stop_id": 6131938, "stop_desc": "49 BOULEVARD BESSIERES - 75117", "stop_name": "PORTE POUCHET"}, "geometry": {"type": "Point", "coordinates": [2.3234193883003913, 48.897430330084035]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0ba63d446b823d3aa521ea94bf14107f036a330b", "fields": {"departement": "75", "stop_lat": 48.88670236338325, "code_postal": "75117", "stop_lon": 2.296193485091651, "coord": [48.88670236338325, 2.296193485091651], "stop_id": 6131943, "stop_desc": "158 BOULEVARD BERTHIER - 75117", "stop_name": "PORTE DE COURCELLES"}, "geometry": {"type": "Point", "coordinates": [2.296193485091651, 48.88670236338325]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2972d157135bf84f052d75b3098a42ab908ffb8c", "fields": {"departement": "75", "stop_lat": 48.88155742563233, "code_postal": "75117", "stop_lon": 2.2853234854885076, "coord": [48.88155742563233, 2.2853234854885076], "stop_id": 6131944, "stop_desc": "1 BOULEVARD PERSHING - 75117", "stop_name": "GENERAL KOENIG - PALAIS DES CONGRES"}, "geometry": {"type": "Point", "coordinates": [2.2853234854885076, 48.88155742563233]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "647940c158385e6a5c2b4f545ebf182c774b697e", "fields": {"departement": "75", "stop_lat": 48.88965246545579, "code_postal": "75117", "stop_lon": 2.3035234357239616, "coord": [48.88965246545579, 2.3035234357239616], "stop_id": 6131945, "stop_desc": "FACE 100 BOULEVARD BERTHIER - 75117", "stop_name": "PORTE D'ASNIERES"}, "geometry": {"type": "Point", "coordinates": [2.3035234357239616, 48.88965246545579]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2ece7ae72870229f0b25d83bdd94d311b02ea6ef", "fields": {"departement": "75", "stop_lat": 48.89157657185209, "code_postal": "75117", "stop_lon": 2.3066705502169684, "coord": [48.89157657185209, 2.3066705502169684], "stop_id": 6131948, "stop_desc": "66-68 BOULEVARD BERTHIER - 75117", "stop_name": "LES HAUTS DE MALESHERBES"}, "geometry": {"type": "Point", "coordinates": [2.3066705502169684, 48.89157657185209]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0ca8cd32df02931037bc7b09f33adeeeefff946c", "fields": {"departement": "75", "stop_lat": 48.883328927509616, "code_postal": "75117", "stop_lon": 2.2877064578922117, "coord": [48.883328927509616, 2.2877064578922117], "stop_id": 6131952, "stop_desc": "28 BOULEVARD GOUVION-SAINT-CYR - 75117", "stop_name": "PORTE DE VILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.2877064578922117, 48.883328927509616]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "55633a9448ad5c4f2905fb3a6ac28a14c68d0ae8", "fields": {"departement": "75", "stop_lat": 48.89563194240139, "code_postal": "75117", "stop_lon": 2.316754622873841, "coord": [48.89563194240139, 2.316754622873841], "stop_id": 6131959, "stop_desc": "FACE 107 BOULEVARD BESSIERES - 75117", "stop_name": "LYCEE HONORE DE BALZAC"}, "geometry": {"type": "Point", "coordinates": [2.316754622873841, 48.89563194240139]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3462aa49c5c2354e2eb3f4792fa73dce567b47a6", "fields": {"departement": "75", "stop_lat": 48.89779951301287, "code_postal": "75118", "stop_lon": 2.3325656429748887, "coord": [48.89779951301287, 2.3325656429748887], "stop_id": 6131961, "stop_desc": "168 BOULEVARD NEY - 75118", "stop_name": "FACULTE XAVIER BICHAT"}, "geometry": {"type": "Point", "coordinates": [2.3325656429748887, 48.89779951301287]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2e5fdb8795545b47136006483652cd3c9f882f9a", "fields": {"departement": "75", "stop_lat": 48.89795236411017, "code_postal": "75118", "stop_lon": 2.3395583162084646, "coord": [48.89795236411017, 2.3395583162084646], "stop_id": 6131963, "stop_desc": "134 BOULEVARD NEY - 75118", "stop_name": "CAMILLE FLAMMARION"}, "geometry": {"type": "Point", "coordinates": [2.3395583162084646, 48.89795236411017]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9f8eff342d15c6328b1da49fc6d6264a8f6a682a", "fields": {"departement": "94", "stop_lat": 48.79047578726445, "code_postal": "94081", "stop_lon": 2.392441073532451, "coord": [48.79047578726445, 2.392441073532451], "stop_id": 6143549, "stop_desc": "7 AVENUE DE L'ABBE ROGER DERRY - 94081", "stop_name": "AUDIGEOIS"}, "geometry": {"type": "Point", "coordinates": [2.392441073532451, 48.79047578726445]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e7f67baa372e060de43f0ac6c3e006504a6144f1", "fields": {"departement": "94", "stop_lat": 48.808445499086595, "code_postal": "94041", "stop_lon": 2.4041081714684718, "coord": [48.808445499086595, 2.4041081714684718], "stop_id": 6143555, "stop_desc": "AVENUE JEAN JAURES - 94041", "stop_name": "RUE DE LA BAIGNADE"}, "geometry": {"type": "Point", "coordinates": [2.4041081714684718, 48.808445499086595]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a596014cffb1975afb2e2259dab36f5d50277af1", "fields": {"departement": "94", "stop_lat": 48.81487294715123, "code_postal": "94041", "stop_lon": 2.4019389847779085, "coord": [48.81487294715123, 2.4019389847779085], "stop_id": 6143557, "stop_desc": "121 BOULEVARD PAUL VAILLANT-COUTURIER - 94041", "stop_name": "GAMBETTA"}, "geometry": {"type": "Point", "coordinates": [2.4019389847779085, 48.81487294715123]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "86330d017f50b307a36e0d04baeb6a8610f7c0e5", "fields": {"departement": "94", "stop_lat": 48.82353564157872, "code_postal": "94018", "stop_lon": 2.4045631760597113, "coord": [48.82353564157872, 2.4045631760597113], "stop_id": 6143561, "stop_desc": "AVENUE DE LA LIBERTE - 94018", "stop_name": "ARCHEVECHE"}, "geometry": {"type": "Point", "coordinates": [2.4045631760597113, 48.82353564157872]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e4b4d7314d8504fa39b9df797f24fd6ba403ce99", "fields": {"departement": "94", "stop_lat": 48.8255747954595, "code_postal": "94018", "stop_lon": 2.406389823927422, "coord": [48.8255747954595, 2.406389823927422], "stop_id": 6143567, "stop_desc": "FACE 16 AVENUE DE LA LIBERTE - 94018", "stop_name": "LIBERTE"}, "geometry": {"type": "Point", "coordinates": [2.406389823927422, 48.8255747954595]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f59652ba0cfaf07b7ed756e229c77cc97b5379db", "fields": {"departement": "94", "stop_lat": 48.82357178419231, "code_postal": "94018", "stop_lon": 2.404222936993622, "coord": [48.82357178419231, 2.404222936993622], "stop_id": 6143568, "stop_desc": "AVENUE DE LA LIBERTE - 94018", "stop_name": "ARCHEVECHE"}, "geometry": {"type": "Point", "coordinates": [2.404222936993622, 48.82357178419231]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "32df6c6fbcceb6c6db6f96cd25511fff829086a1", "fields": {"departement": "94", "stop_lat": 48.79045958793866, "code_postal": "94081", "stop_lon": 2.3884690512328666, "coord": [48.79045958793866, 2.3884690512328666], "stop_id": 6143582, "stop_desc": "17 AVENUE MAXIMILIEN ROBESPIERRE - 94081", "stop_name": "HOTEL DE VILLE DE VITRY"}, "geometry": {"type": "Point", "coordinates": [2.3884690512328666, 48.79045958793866]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3eb1fec139ed7a9ceafa38b48281682a7c6d6e51", "fields": {"departement": "94", "stop_lat": 48.82357178419231, "code_postal": "94018", "stop_lon": 2.404222936993622, "coord": [48.82357178419231, 2.404222936993622], "stop_id": 6143590, "stop_desc": "AVENUE DE LA LIBERTE - 94018", "stop_name": "ARCHEVECHE"}, "geometry": {"type": "Point", "coordinates": [2.404222936993622, 48.82357178419231]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "19c4e1f3691f52db4369ed1225bb4b21af38ded8", "fields": {"departement": "94", "stop_lat": 48.80869730181348, "code_postal": "94081", "stop_lon": 2.403849952527833, "coord": [48.80869730181348, 2.403849952527833], "stop_id": 6143596, "stop_desc": "88 AV JEAN JAURES - 94081", "stop_name": "RUE DE LA BAIGNADE"}, "geometry": {"type": "Point", "coordinates": [2.403849952527833, 48.80869730181348]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a5e9c81339a48650f9b3ab703755bd83aac923ae", "fields": {"departement": "94", "stop_lat": 48.804777925970896, "code_postal": "94081", "stop_lon": 2.4050831174449394, "coord": [48.804777925970896, 2.4050831174449394], "stop_id": 6143597, "stop_desc": "128 AVENUE ANATOLE FRANCE - 94081", "stop_name": "PORT A L'ANGLAIS"}, "geometry": {"type": "Point", "coordinates": [2.4050831174449394, 48.804777925970896]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "14460ad6e0a12d1cc18f9546f163f94eaee4bd3c", "fields": {"departement": "94", "stop_lat": 48.78785123708828, "code_postal": "94076", "stop_lon": 2.3676825118887823, "coord": [48.78785123708828, 2.3676825118887823], "stop_id": 6143608, "stop_desc": "PISTE GARE ROUTIERE - 94076", "stop_name": "VILLEJUIF - LOUIS ARAGON"}, "geometry": {"type": "Point", "coordinates": [2.3676825118887823, 48.78785123708828]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cdf56b73da89dae23481fb13d7addc3a6943a552", "fields": {"departement": "75", "stop_lat": 48.867240185361254, "code_postal": "75111", "stop_lon": 2.3630564459452406, "coord": [48.867240185361254, 2.3630564459452406], "stop_id": 967988, "stop_desc": "Saint-Martin (9 boulevard) - 75111", "stop_name": "R\u00e9publique"}, "geometry": {"type": "Point", "coordinates": [2.3630564459452406, 48.867240185361254]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6dd51a4985712a721f978202e2c6e15783d75d01", "fields": {"departement": "75", "stop_lat": 48.87711809537049, "code_postal": "75120", "stop_lon": 2.4061587988157935, "coord": [48.87711809537049, 2.4061587988157935], "stop_id": 5289084, "stop_desc": "349 RUE DE BELLEVILLE - 75120", "stop_name": "PORTE DES LILAS-METRO"}, "geometry": {"type": "Point", "coordinates": [2.4061587988157935, 48.87711809537049]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "977d39c6516d8d187fba30f6985c368dabfa84e3", "fields": {"departement": "75", "stop_lat": 48.87235895924468, "code_postal": "75119", "stop_lon": 2.377514313676753, "coord": [48.87235895924468, 2.377514313676753], "stop_id": 5289088, "stop_desc": "5 RUE DE BELLEVILLE - 75119", "stop_name": "BELLEVILLE"}, "geometry": {"type": "Point", "coordinates": [2.377514313676753, 48.87235895924468]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ee49e595d0d73dac7c7d6377df9041c3bf6c2e23", "fields": {"departement": "75", "stop_lat": 48.855415256092286, "code_postal": "75101", "stop_lon": 2.3458079091124455, "coord": [48.855415256092286, 2.3458079091124455], "stop_id": 5289097, "stop_desc": "FACE 1 BOULEVARD DU PALAIS - 75101", "stop_name": "CITE - PALAIS DE JUSTICE"}, "geometry": {"type": "Point", "coordinates": [2.3458079091124455, 48.855415256092286]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3bbf317c8fdfdf9050438a87d0bdb7c5246ff7e7", "fields": {"departement": "75", "stop_lat": 48.856008585004595, "code_postal": "75107", "stop_lon": 2.3312891453604494, "coord": [48.856008585004595, 2.3312891453604494], "stop_id": 5289102, "stop_desc": "26-28 RUE DES SAINTS-PERES - 75107", "stop_name": "JACOB"}, "geometry": {"type": "Point", "coordinates": [2.3312891453604494, 48.856008585004595]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fb3118d1fac66ad4fa354bde44a3e6feb2fa29da", "fields": {"departement": "75", "stop_lat": 48.85121823484648, "code_postal": "75106", "stop_lon": 2.3305951430899357, "coord": [48.85121823484648, 2.3305951430899357], "stop_id": 5289104, "stop_desc": "76 RUE DE RENNES - 75106", "stop_name": "MICHEL DEBRE"}, "geometry": {"type": "Point", "coordinates": [2.3305951430899357, 48.85121823484648]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b0fe19c0e43bcc235bb789eee8779d3c975db097", "fields": {"departement": "75", "stop_lat": 48.84879147223759, "code_postal": "75106", "stop_lon": 2.328402948470149, "coord": [48.84879147223759, 2.328402948470149], "stop_id": 5289105, "stop_desc": "108 RUE DE RENNES - 75106", "stop_name": "RENNES - D'ASSAS"}, "geometry": {"type": "Point", "coordinates": [2.328402948470149, 48.84879147223759]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d0faa023e65a6244f1cf9a8d993cff415eeb8fd4", "fields": {"departement": "75", "stop_lat": 48.84483663038162, "code_postal": "75106", "stop_lon": 2.3246317107880734, "coord": [48.84483663038162, 2.3246317107880734], "stop_id": 5289107, "stop_desc": "146 BIS RUE DE RENNES - 75106", "stop_name": "RENNES - LITTRE"}, "geometry": {"type": "Point", "coordinates": [2.3246317107880734, 48.84483663038162]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dc7cecfa0a038ddbf029ce73fb73cd12335b300e", "fields": {"departement": "75", "stop_lat": 48.84770737146619, "code_postal": "75115", "stop_lon": 2.299669646594125, "coord": [48.84770737146619, 2.299669646594125], "stop_id": 5289113, "stop_desc": "47 RUE FREMICOURT - 75115", "stop_name": "CAMBRONNE"}, "geometry": {"type": "Point", "coordinates": [2.299669646594125, 48.84770737146619]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "280c2a90bb631118464b6638a902ab3e6fd2e45a", "fields": {"departement": "75", "stop_lat": 48.8470493169713, "code_postal": "75115", "stop_lon": 2.2938826456393087, "coord": [48.8470493169713, 2.2938826456393087], "stop_id": 5289114, "stop_desc": "PLACE ALFRED DREYFUS - 75115", "stop_name": "AVENUE EMILE ZOLA"}, "geometry": {"type": "Point", "coordinates": [2.2938826456393087, 48.8470493169713]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aad51fc17714968fa88d0c574eea80849922d465", "fields": {"departement": "75", "stop_lat": 48.844710909640725, "code_postal": "75116", "stop_lon": 2.2708038155294377, "coord": [48.844710909640725, 2.2708038155294377], "stop_id": 5289120, "stop_desc": "92 BIS AVENUE DE VERSAILLES - 75116", "stop_name": "WILHEM"}, "geometry": {"type": "Point", "coordinates": [2.2708038155294377, 48.844710909640725]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c330c80a8970c42c99e8532b3c58f2eabc886061", "fields": {"departement": "75", "stop_lat": 48.84290336202021, "code_postal": "75116", "stop_lon": 2.2689406689398375, "coord": [48.84290336202021, 2.2689406689398375], "stop_id": 5289121, "stop_desc": "114 BIS AVENUE DE VERSAILLES - 75116", "stop_name": "VICTORIEN SARDOU"}, "geometry": {"type": "Point", "coordinates": [2.2689406689398375, 48.84290336202021]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c07add4f30ef8823cc05e8cdb956df0eb5d7d984", "fields": {"departement": "75", "stop_lat": 48.8383835564642, "code_postal": "75116", "stop_lon": 2.256107368981866, "coord": [48.8383835564642, 2.256107368981866], "stop_id": 5289124, "stop_desc": "PLACE DE LA PORTE DE SAINT-CLOUD - 75116", "stop_name": "PORTE DE SAINT-CLOUD"}, "geometry": {"type": "Point", "coordinates": [2.256107368981866, 48.8383835564642]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "34f704e73923554c35d44a8b3bd679363c5799ea", "fields": {"departement": "92", "stop_lat": 48.83508800198344, "code_postal": "92012", "stop_lon": 2.2476034844199417, "coord": [48.83508800198344, 2.2476034844199417], "stop_id": 5289126, "stop_desc": "68 AVENUE EDOUARD VAILLANT - 92012", "stop_name": "RENE DESCARTES"}, "geometry": {"type": "Point", "coordinates": [2.2476034844199417, 48.83508800198344]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f0e9ad168fea9af9b09a2619f3d7255dbc8ac8a5", "fields": {"departement": "92", "stop_lat": 48.83612495942025, "code_postal": "92012", "stop_lon": 2.2522170875706116, "coord": [48.83612495942025, 2.2522170875706116], "stop_id": 5289134, "stop_desc": "35 AVENUE EDOUARD VAILLANT - 92012", "stop_name": "HENRI MARTIN"}, "geometry": {"type": "Point", "coordinates": [2.2522170875706116, 48.83612495942025]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5e0f97ef955e428c6f22e098384a3b423d62f39e", "fields": {"departement": "75", "stop_lat": 48.84638266447135, "code_postal": "75106", "stop_lon": 2.3264833034864068, "coord": [48.84638266447135, 2.3264833034864068], "stop_id": 5289152, "stop_desc": "129 RUE DE RENNES - 75106", "stop_name": "RENNES - SAINT-PLACIDE"}, "geometry": {"type": "Point", "coordinates": [2.3264833034864068, 48.84638266447135]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "da6c318ec32d7f8158da81ad7ca36ca3a3358824", "fields": {"departement": "75", "stop_lat": 48.84914202919279, "code_postal": "75106", "stop_lon": 2.3290293232080557, "coord": [48.84914202919279, 2.3290293232080557], "stop_id": 5289153, "stop_desc": "97-99 RUE DE RENNES - 75106", "stop_name": "RENNES - D'ASSAS"}, "geometry": {"type": "Point", "coordinates": [2.3290293232080557, 48.84914202919279]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "55229a001adda3d3ef80278567ca594aacbfccbe", "fields": {"departement": "75", "stop_lat": 48.86586694331711, "code_postal": "75103", "stop_lon": 2.3524574303330636, "coord": [48.86586694331711, 2.3524574303330636], "stop_id": 5289163, "stop_desc": "84 BOULEVARD DE SEBASTOPOL - 75103", "stop_name": "REAUMUR - SEBASTOPOL"}, "geometry": {"type": "Point", "coordinates": [2.3524574303330636, 48.86586694331711]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6b553bed9f2301054822405904c79ccbaaecf5e7", "fields": {"departement": "75", "stop_lat": 48.865821809644764, "code_postal": "75103", "stop_lon": 2.353928649583883, "coord": [48.865821809644764, 2.353928649583883], "stop_id": 5289164, "stop_desc": "37-39 RUE REAUMUR - 75103", "stop_name": "REAUMUR - ARTS ET METIERS"}, "geometry": {"type": "Point", "coordinates": [2.353928649583883, 48.865821809644764]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dade40fd5e206f0cf41e632da96e44a94097bf50", "fields": {"departement": "75", "stop_lat": 48.86485915584956, "code_postal": "75103", "stop_lon": 2.36000387255969, "coord": [48.86485915584956, 2.36000387255969], "stop_id": 5289165, "stop_desc": "FACE 171 RUE DU TEMPLE - 75103", "stop_name": "SQUARE DU TEMPLE - MAIRIE DU 3E - CARREAU DU TEMPLE"}, "geometry": {"type": "Point", "coordinates": [2.36000387255969, 48.86485915584956]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7f3abe08d66b927aa6ad856e1a15967aeb46f341", "fields": {"departement": "75", "stop_lat": 48.86886163360014, "code_postal": "75120", "stop_lon": 2.381067285501073, "coord": [48.86886163360014, 2.381067285501073], "stop_id": 5289171, "stop_desc": "48 BOULEVARD DE BELLEVILLE - 75120", "stop_name": "COURONNES"}, "geometry": {"type": "Point", "coordinates": [2.381067285501073, 48.86886163360014]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ec9f5d94a986fbfa7a5cdbba6bf33f1f25160f25", "fields": {"departement": "93", "stop_lat": 48.88048687661272, "code_postal": "93045", "stop_lon": 2.422310540571791, "coord": [48.88048687661272, 2.422310540571791], "stop_id": 5289180, "stop_desc": "4-6 AVENUE DU GENERAL LECLERC - 93045", "stop_name": "MARECHAL JUIN"}, "geometry": {"type": "Point", "coordinates": [2.422310540571791, 48.88048687661272]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f434259654048bbae4b565d08e192466374223c4", "fields": {"departement": "93", "stop_lat": 48.881676627413, "code_postal": "93063", "stop_lon": 2.4297662965308153, "coord": [48.881676627413, 2.4297662965308153], "stop_id": 5289182, "stop_desc": "FACE 108 AVENUE DE VERDUN - 93063", "stop_name": "LIBERTE"}, "geometry": {"type": "Point", "coordinates": [2.4297662965308153, 48.881676627413]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ae624b9a728d9501d16f9bccdf8f9ba9d6eaf0e6", "fields": {"departement": "77", "stop_lat": 48.87779062154949, "code_postal": "77108", "stop_lon": 2.5923685098372817, "coord": [48.87779062154949, 2.5923685098372817], "stop_id": 5290097, "stop_desc": "RUE DE L'ILLETTE - 77108", "stop_name": "MAIRIE DE CHELLES"}, "geometry": {"type": "Point", "coordinates": [2.5923685098372817, 48.87779062154949]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fe4ac6c0ba96443aed94c4c7a579214dc78d4b01", "fields": {"departement": "92", "stop_lat": 48.80877914567906, "code_postal": "92020", "stop_lon": 2.2917646239249407, "coord": [48.80877914567906, 2.2917646239249407], "stop_id": 5315274, "stop_desc": "FACE 70 R MARCELIN BERTHELOT - 92020", "stop_name": "JEAN MERMOZ"}, "geometry": {"type": "Point", "coordinates": [2.2917646239249407, 48.80877914567906]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0263c311946b363e5c7c6c40339a6df4fdfb480a", "fields": {"departement": "92", "stop_lat": 48.808567889817134, "code_postal": "92020", "stop_lon": 2.2811373503643333, "coord": [48.808567889817134, 2.2811373503643333], "stop_id": 5315282, "stop_desc": "45 R LUCIEN SAMPAIX - 92020", "stop_name": "PREVOYANTS"}, "geometry": {"type": "Point", "coordinates": [2.2811373503643333, 48.808567889817134]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "69ad6b19d6774087e660b09a2c5705cbeeabd828", "fields": {"departement": "92", "stop_lat": 48.806222096879374, "code_postal": "92020", "stop_lon": 2.281180706519713, "coord": [48.806222096879374, 2.281180706519713], "stop_id": 5315283, "stop_desc": "51 R BERANGER - 92020", "stop_name": "BERANGER - PETITE ENFANCE"}, "geometry": {"type": "Point", "coordinates": [2.281180706519713, 48.806222096879374]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "efdc6159bbad085a7fc0735cbe9d9d74f2a51715", "fields": {"departement": "92", "stop_lat": 48.80476676295409, "code_postal": "92020", "stop_lon": 2.2826653874084424, "coord": [48.80476676295409, 2.2826653874084424], "stop_id": 5315285, "stop_desc": "70 AV DE LA PAIX - 92020", "stop_name": "ECOLE MARCEL DORET"}, "geometry": {"type": "Point", "coordinates": [2.2826653874084424, 48.80476676295409]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "48f6ed1964c2f63e2caf898c7390888a75ddd3d4", "fields": {"departement": "92", "stop_lat": 48.80301194788116, "code_postal": "92020", "stop_lon": 2.2780819948406235, "coord": [48.80301194788116, 2.2780819948406235], "stop_id": 5315288, "stop_desc": "107 R LASEGUE - 92020", "stop_name": "LASEGUE"}, "geometry": {"type": "Point", "coordinates": [2.2780819948406235, 48.80301194788116]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bfa92da2c005c36e8cb2b46dc8e8fb9224312496", "fields": {"departement": "92", "stop_lat": 48.80201614595034, "code_postal": "92020", "stop_lon": 2.281919961092053, "coord": [48.80201614595034, 2.281919961092053], "stop_id": 5315290, "stop_desc": "R LASEGUE - 92020", "stop_name": "CIMETIERE DE CHATILLON"}, "geometry": {"type": "Point", "coordinates": [2.281919961092053, 48.80201614595034]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1668ffdcb5bb0f3578fdaeaa86a9b7707eeb1c0e", "fields": {"departement": "92", "stop_lat": 48.80402598764789, "code_postal": "92020", "stop_lon": 2.2749785999696424, "coord": [48.80402598764789, 2.2749785999696424], "stop_id": 5315307, "stop_desc": "48 RUE DES ROISSYS - 92020", "stop_name": "MARIE DOFFE"}, "geometry": {"type": "Point", "coordinates": [2.2749785999696424, 48.80402598764789]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6360d0841b4637342e663188cb60c63407147868", "fields": {"departement": "92", "stop_lat": 48.80801794839486, "code_postal": "92020", "stop_lon": 2.277668068466293, "coord": [48.80801794839486, 2.277668068466293], "stop_id": 5315308, "stop_desc": "142 RUE DES ROISSYS - 92020", "stop_name": "LAZARE-CARNOT"}, "geometry": {"type": "Point", "coordinates": [2.277668068466293, 48.80801794839486]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "03fa2368474764774e194bc5c49c6fc6171fd138", "fields": {"departement": "92", "stop_lat": 48.81103003977072, "code_postal": "92046", "stop_lon": 2.2800868614889476, "coord": [48.81103003977072, 2.2800868614889476], "stop_id": 5315309, "stop_desc": "7 R DES ROISSYS - 92046", "stop_name": "MALAKOFF"}, "geometry": {"type": "Point", "coordinates": [2.2800868614889476, 48.81103003977072]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9d1ab3f926a07d2f54aa36bac738a6a8c14dc77a", "fields": {"departement": "94", "stop_lat": 48.82224470146372, "code_postal": "94018", "stop_lon": 2.3984773449336694, "coord": [48.82224470146372, 2.3984773449336694], "stop_id": 5325156, "stop_desc": "7 QUAI DE BERCY - 94018", "stop_name": "PORT AUX LIONS"}, "geometry": {"type": "Point", "coordinates": [2.3984773449336694, 48.82224470146372]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6dcf175889e8f15938a0f8555ad2c67cf80016f7", "fields": {"departement": "94", "stop_lat": 48.82353564157872, "code_postal": "94018", "stop_lon": 2.4045631760597113, "coord": [48.82353564157872, 2.4045631760597113], "stop_id": 5325158, "stop_desc": "AVENUE DE LA LIBERTE - 94018", "stop_name": "ARCHEVECHE"}, "geometry": {"type": "Point", "coordinates": [2.4045631760597113, 48.82353564157872]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "796d7e944403a40d7dae480d0b070bfb57c70b14", "fields": {"departement": "94", "stop_lat": 48.82357178419231, "code_postal": "94018", "stop_lon": 2.404222936993622, "coord": [48.82357178419231, 2.404222936993622], "stop_id": 5325159, "stop_desc": "AVENUE DE LA LIBERTE - 94018", "stop_name": "ARCHEVECHE"}, "geometry": {"type": "Point", "coordinates": [2.404222936993622, 48.82357178419231]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4c3b45629ee3b270cd99eed3c489e125fb657a27", "fields": {"departement": "94", "stop_lat": 48.82724767413975, "code_postal": "94018", "stop_lon": 2.404336579928587, "coord": [48.82724767413975, 2.404336579928587], "stop_id": 5325161, "stop_desc": "10 RUE DU GENERAL CHANZY - 94018", "stop_name": "LIBERTE-CHANZY"}, "geometry": {"type": "Point", "coordinates": [2.404336579928587, 48.82724767413975]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2cdcb81d780ed45cd6ef486d5e2bf32fdd43eb1c", "fields": {"departement": "94", "stop_lat": 48.82248640945558, "code_postal": "94018", "stop_lon": 2.4003151356284196, "coord": [48.82248640945558, 2.4003151356284196], "stop_id": 5325165, "stop_desc": "7 RUE DE L'ARCADE - 94018", "stop_name": "PONT NELSON MANDELA - RIVES DE BERCY"}, "geometry": {"type": "Point", "coordinates": [2.4003151356284196, 48.82248640945558]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8a46fc7b56097331d06bb1addbcad8f62188d7a4", "fields": {"departement": "75", "stop_lat": 48.82225073510656, "code_postal": "75114", "stop_lon": 2.3241199820135248, "coord": [48.82225073510656, 2.3241199820135248], "stop_id": 5325169, "stop_desc": "FACE 41 AV ERNEST REYER - 75114", "stop_name": "PORTE D'ORLEANS-METRO"}, "geometry": {"type": "Point", "coordinates": [2.3241199820135248, 48.82225073510656]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a322a13a5e5ac33ef3a4f5e7936e9727ff4b2bf6", "fields": {"departement": "93", "stop_lat": 48.903308775601, "code_postal": "93001", "stop_lon": 2.383359387771907, "coord": [48.903308775601, 2.383359387771907], "stop_id": 5355349, "stop_desc": "FACE 54 BOULEVARD FELIX FAURE - 93001", "stop_name": "KARMAN - FELIX FAURE"}, "geometry": {"type": "Point", "coordinates": [2.383359387771907, 48.903308775601]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6cbdbe2109852de52d7b46aac10e71d72bf95028", "fields": {"departement": "93", "stop_lat": 48.90833463787649, "code_postal": "93001", "stop_lon": 2.3775968040688387, "coord": [48.90833463787649, 2.3775968040688387], "stop_id": 5355352, "stop_desc": "119 AVENUE VICTOR HUGO - 93001", "stop_name": "VICTOR HUGO - FELIX FAURE"}, "geometry": {"type": "Point", "coordinates": [2.3775968040688387, 48.90833463787649]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "57f5ba589091975233c2ba3fcd71096a76b29154", "fields": {"departement": "93", "stop_lat": 48.910899315692575, "code_postal": "93001", "stop_lon": 2.365955043487776, "coord": [48.910899315692575, 2.365955043487776], "stop_id": 5355364, "stop_desc": "RUE DES FILLETTES - 93001", "stop_name": "LA MONTJOIE - GERMAINE TILLION"}, "geometry": {"type": "Point", "coordinates": [2.365955043487776, 48.910899315692575]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0acd1ce650690e196a8e90b2f10d7b059167c3c8", "fields": {"departement": "93", "stop_lat": 48.918234263953785, "code_postal": "93066", "stop_lon": 2.358554593066675, "coord": [48.918234263953785, 2.358554593066675], "stop_id": 5355371, "stop_desc": "6 RUE FRANCIS DE PRESSENSE - 93066", "stop_name": "WILSON - DE PRESSENSE"}, "geometry": {"type": "Point", "coordinates": [2.358554593066675, 48.918234263953785]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "35099818e46289f350b25bb857c6a55b6ffade5f", "fields": {"departement": "93", "stop_lat": 48.91974582929707, "code_postal": "93066", "stop_lon": 2.3432002857805556, "coord": [48.91974582929707, 2.3432002857805556], "stop_id": 5355383, "stop_desc": "FACE 171 BOULEVARD ANATOLE FRANCE - 93066", "stop_name": "CARREFOUR PLEYEL"}, "geometry": {"type": "Point", "coordinates": [2.3432002857805556, 48.91974582929707]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e494c52f9a41f415518ffa0e1c1e8bc0e508d16d", "fields": {"departement": "92", "stop_lat": 48.7842427774519, "code_postal": "92032", "stop_lon": 2.2931190231479297, "coord": [48.7842427774519, 2.2931190231479297], "stop_id": 5370694, "stop_desc": "FACE 1 AVENUE PAUL LANGEVIN - 92032", "stop_name": "AVENUE LOMBART"}, "geometry": {"type": "Point", "coordinates": [2.2931190231479297, 48.7842427774519]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2510aece206bb8f9a623637978561079847c9399", "fields": {"departement": "92", "stop_lat": 48.78362126025075, "code_postal": "92032", "stop_lon": 2.2896241031638933, "coord": [48.78362126025075, 2.2896241031638933], "stop_id": 5370695, "stop_desc": "FACE 17BIS AVENUE PAUL LANGEVIN - 92032", "stop_name": "AUGUSTIN CLAUDE"}, "geometry": {"type": "Point", "coordinates": [2.2896241031638933, 48.78362126025075]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "522a771dac99b93865c8bd0adfcdaa949ea9bc2c", "fields": {"departement": "92", "stop_lat": 48.787420753421074, "code_postal": "92032", "stop_lon": 2.2839486012052026, "coord": [48.787420753421074, 2.2839486012052026], "stop_id": 5370699, "stop_desc": "27 RUE D'ESTIENNE D'ORVES - 92032", "stop_name": "ABBE GRANDJEAN"}, "geometry": {"type": "Point", "coordinates": [2.2839486012052026, 48.787420753421074]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8739f0dcc6d06e59c6f23958366405021001a949", "fields": {"departement": "92", "stop_lat": 48.788670335567566, "code_postal": "92032", "stop_lon": 2.284532217092355, "coord": [48.788670335567566, 2.284532217092355], "stop_id": 5370700, "stop_desc": "FACE 32 R D'ESTIENNE D'ORVES - 92032", "stop_name": "LES ORMEAUX"}, "geometry": {"type": "Point", "coordinates": [2.284532217092355, 48.788670335567566]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c9cebb5712a554f43f3a140db759c64326f98909", "fields": {"departement": "92", "stop_lat": 48.80628732978911, "code_postal": "92020", "stop_lon": 2.2863376527004067, "coord": [48.80628732978911, 2.2863376527004067], "stop_id": 5370708, "stop_desc": "FACE 33 BOULEVARD DE VANVES - 92020", "stop_name": "FELIX FAURE"}, "geometry": {"type": "Point", "coordinates": [2.2863376527004067, 48.80628732978911]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6544b4422702ceb0a644ab1e16acd27cace2ac8b", "fields": {"departement": "92", "stop_lat": 48.809392030314854, "code_postal": "92020", "stop_lon": 2.2964995723194335, "coord": [48.809392030314854, 2.2964995723194335], "stop_id": 5370711, "stop_desc": "20 R MARCELIN BERTHELOT - 92020", "stop_name": "MARCELIN BERTHELOT"}, "geometry": {"type": "Point", "coordinates": [2.2964995723194335, 48.809392030314854]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4513decb6729be7b5324c2dd6888f878420d9b67", "fields": {"departement": "92", "stop_lat": 48.81128070086906, "code_postal": "92020", "stop_lon": 2.3002947806132377, "coord": [48.81128070086906, 2.3002947806132377], "stop_id": 5370712, "stop_desc": "204 AVENUE DE PARIS - 92020", "stop_name": "CHATILLON-MONTROUGE"}, "geometry": {"type": "Point", "coordinates": [2.3002947806132377, 48.81128070086906]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9d68ce04bdfe5ce63e8ba025d19defd00649dd80", "fields": {"departement": "75", "stop_lat": 48.82366103662885, "code_postal": "75114", "stop_lon": 2.3184300364197443, "coord": [48.82366103662885, 2.3184300364197443], "stop_id": 5370718, "stop_desc": "AVENUE ERNEST REYER - 75114", "stop_name": "JEAN MOULIN"}, "geometry": {"type": "Point", "coordinates": [2.3184300364197443, 48.82366103662885]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0a6bd98b0a0f176048f5db65478f84090314e2b4", "fields": {"departement": "94", "stop_lat": 48.76276779077695, "code_postal": "94021", "stop_lon": 2.3578518672898063, "coord": [48.76276779077695, 2.3578518672898063], "stop_id": 5396937, "stop_desc": "AVENUE DE LA CITE - 94021", "stop_name": "MARCHE INTERNATIONAL DE RUNGIS"}, "geometry": {"type": "Point", "coordinates": [2.3578518672898063, 48.76276779077695]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f7eeebf056a9c3d3e91ac68260c44fcfe7e82ce5", "fields": {"departement": "94", "stop_lat": 48.75280986245938, "code_postal": "94065", "stop_lon": 2.3515000359753047, "coord": [48.75280986245938, 2.3515000359753047], "stop_id": 5409389, "stop_desc": "RUE DE LA VANNE - 94065", "stop_name": "LE STADE"}, "geometry": {"type": "Point", "coordinates": [2.3515000359753047, 48.75280986245938]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "62ab9f55b3e0046c69c5524d45d0c0c039c47e60", "fields": {"departement": "92", "stop_lat": 48.89966475050333, "code_postal": "92024", "stop_lon": 2.305697945869282, "coord": [48.89966475050333, 2.305697945869282], "stop_id": 5419726, "stop_desc": "36 BIS RUE HENRI BARBUSSE - 92024", "stop_name": "JAURES - BARBUSSE"}, "geometry": {"type": "Point", "coordinates": [2.305697945869282, 48.89966475050333]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9cd17813f88ec6c39665b097d092c2c32dd5a058", "fields": {"departement": "93", "stop_lat": 48.96348000732218, "code_postal": "93059", "stop_lon": 2.3708839170316467, "coord": [48.96348000732218, 2.3708839170316467], "stop_id": 5423654, "stop_desc": "AVENUE LEDRU-ROLLIN - 93059", "stop_name": "GARE DE PIERREFITTE - STAINS RER"}, "geometry": {"type": "Point", "coordinates": [2.3708839170316467, 48.96348000732218]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b6c1d6f41358f2e03901317122441fa2ba31988f", "fields": {"departement": "94", "stop_lat": 48.758436565941224, "code_postal": "94034", "stop_lon": 2.324027353751202, "coord": [48.758436565941224, 2.324027353751202], "stop_id": 3792984, "stop_desc": "40 RUE HENRI BARBUSSE - 94034", "stop_name": "EMILE ZOLA"}, "geometry": {"type": "Point", "coordinates": [2.324027353751202, 48.758436565941224]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0794a803495d61d4b2b608c75b2529e2946ae546", "fields": {"departement": "94", "stop_lat": 48.754732379673456, "code_postal": "94034", "stop_lon": 2.316538331355197, "coord": [48.754732379673456, 2.316538331355197], "stop_id": 3792987, "stop_desc": "34-36 AVENUE JEAN JAURES - 94034", "stop_name": "LES ANEMONES"}, "geometry": {"type": "Point", "coordinates": [2.316538331355197, 48.754732379673456]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "26b707a032c3f429ed726aa28454dc84f88524f5", "fields": {"departement": "94", "stop_lat": 48.75969417922064, "code_postal": "94034", "stop_lon": 2.3186163428002002, "coord": [48.75969417922064, 2.3186163428002002], "stop_id": 3792992, "stop_desc": "3 BD PASTEUR - 94034", "stop_name": "PASTEUR"}, "geometry": {"type": "Point", "coordinates": [2.3186163428002002, 48.75969417922064]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c4b25f24735c494aa5cd858bd64152516533f37c", "fields": {"departement": "94", "stop_lat": 48.81364075955538, "code_postal": "94037", "stop_lon": 2.3478423484763105, "coord": [48.81364075955538, 2.3478423484763105], "stop_id": 3793000, "stop_desc": "73 AVENUE RASPAIL - 94037", "stop_name": "REINE BLANCHE"}, "geometry": {"type": "Point", "coordinates": [2.3478423484763105, 48.81364075955538]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "32105396cee43f1716108505d7cb713a5aa915f0", "fields": {"departement": "94", "stop_lat": 48.8140810065842, "code_postal": "94037", "stop_lon": 2.3494346847488, "coord": [48.8140810065842, 2.3494346847488], "stop_id": 3793001, "stop_desc": "41 AVENUE RASPAIL - 94037", "stop_name": "RASPAIL - JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.3494346847488, 48.8140810065842]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aeb13940dc8cb654591f866257f88023c2190aec", "fields": {"departement": "93", "stop_lat": 48.90472660332895, "code_postal": "93053", "stop_lon": 2.470051374623267, "coord": [48.90472660332895, 2.470051374623267], "stop_id": 3798443, "stop_desc": "ROUTE DE STAINS - 93053", "stop_name": "PONT DE BONDY"}, "geometry": {"type": "Point", "coordinates": [2.470051374623267, 48.90472660332895]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "30d91c3b9203c5432e78fe7de803303e1b9d027a", "fields": {"departement": "93", "stop_lat": 48.90664360045724, "code_postal": "93008", "stop_lon": 2.449919944861118, "coord": [48.90664360045724, 2.449919944861118], "stop_id": 3798449, "stop_desc": "RUE CARNOT - 93008", "stop_name": "BOBIGNY - PABLO PICASSO"}, "geometry": {"type": "Point", "coordinates": [2.449919944861118, 48.90664360045724]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e233644466dd0b2e2bf0c908faebe6f422f7d5a9", "fields": {"departement": "93", "stop_lat": 48.91290273857398, "code_postal": "93008", "stop_lon": 2.4350305950504136, "coord": [48.91290273857398, 2.4350305950504136], "stop_id": 3798457, "stop_desc": "RUE DE STALINGRAD - 93008", "stop_name": "ESCADRILLE NORMANDIE-NIEMEN"}, "geometry": {"type": "Point", "coordinates": [2.4350305950504136, 48.91290273857398]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "34ce58a5e49c67ec379545910c157472109c9376", "fields": {"departement": "93", "stop_lat": 48.91811947930612, "code_postal": "93029", "stop_lon": 2.417231454306985, "coord": [48.91811947930612, 2.417231454306985], "stop_id": 3798461, "stop_desc": "230 R DE STALINGRAD - 93029", "stop_name": "DRANCY-AVENIR"}, "geometry": {"type": "Point", "coordinates": [2.417231454306985, 48.91811947930612]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "48b90ae53f1f1bb521cabfbbd133c01368b0ba85", "fields": {"departement": "93", "stop_lat": 48.920549824355035, "code_postal": "93027", "stop_lon": 2.411248597997996, "coord": [48.920549824355035, 2.411248597997996], "stop_id": 3798463, "stop_desc": "PLACE DU 8 MAI 1945 - 93027", "stop_name": "LA COURNEUVE - 8 MAI 1945"}, "geometry": {"type": "Point", "coordinates": [2.411248597997996, 48.920549824355035]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9227670694b0e79e61bd4fe3d313a8c497294de4", "fields": {"departement": "93", "stop_lat": 48.920901079079776, "code_postal": "93027", "stop_lon": 2.4100081314988717, "coord": [48.920901079079776, 2.4100081314988717], "stop_id": 3798464, "stop_desc": "PLACE DU 8 MAI 1945 - 93027", "stop_name": "LA COURNEUVE - 8 MAI 1945"}, "geometry": {"type": "Point", "coordinates": [2.4100081314988717, 48.920901079079776]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "70f2605463131974bccab912277e61c4ba89869a", "fields": {"departement": "93", "stop_lat": 48.92712929297018, "code_postal": "93027", "stop_lon": 2.3928049010519836, "coord": [48.92712929297018, 2.3928049010519836], "stop_id": 3798470, "stop_desc": "74 RUE DE LA CONVENTION - 93027", "stop_name": "HOTEL DE VILLE DE LA COURNEUVE"}, "geometry": {"type": "Point", "coordinates": [2.3928049010519836, 48.92712929297018]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f9939f5e732da06fd786e6b1dfdf4dbabb6581e4", "fields": {"departement": "93", "stop_lat": 48.9364226573768, "code_postal": "93066", "stop_lon": 2.3640730779531007, "coord": [48.9364226573768, 2.3640730779531007], "stop_id": 3798476, "stop_desc": "AVENUE DE LA COMMUNE DE PARIS - 93066", "stop_name": "CIMETIERE DE SAINT-DENIS"}, "geometry": {"type": "Point", "coordinates": [2.3640730779531007, 48.9364226573768]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "097680523b35065e7f2054518c0bec58214247ec", "fields": {"departement": "93", "stop_lat": 48.936179994214235, "code_postal": "93066", "stop_lon": 2.3641547984668994, "coord": [48.936179994214235, 2.3641547984668994], "stop_id": 3798477, "stop_desc": "32 BOULEVARD DE LA COMMUNE DE PARIS - 93066", "stop_name": "CIMETIERE DE SAINT-DENIS"}, "geometry": {"type": "Point", "coordinates": [2.3641547984668994, 48.936179994214235]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "33f61fb75f499ed7b169c2e81a4895c213354df9", "fields": {"departement": "93", "stop_lat": 48.938635015545344, "code_postal": "93066", "stop_lon": 2.3556436660955438, "coord": [48.938635015545344, 2.3556436660955438], "stop_id": 3798480, "stop_desc": "FACE 3 BOULEVARD CARNOT - 93066", "stop_name": "MARCHE DE SAINT-DENIS"}, "geometry": {"type": "Point", "coordinates": [2.3556436660955438, 48.938635015545344]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d731ce1f91baad79c3af5c54b6d997f4df1ae71f", "fields": {"departement": "92", "stop_lat": 48.93541011700662, "code_postal": "92078", "stop_lon": 2.3341172924172344, "coord": [48.93541011700662, 2.3341172924172344], "stop_id": 3798489, "stop_desc": "0 AV DE VERDUN - 92078", "stop_name": "MAIRIE DE VILLENEUVE-LA GARENNE"}, "geometry": {"type": "Point", "coordinates": [2.3341172924172344, 48.93541011700662]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ecbb4fa0f4c1c10463700dcda7c13653992c9913", "fields": {"departement": "92", "stop_lat": 48.93477106412093, "code_postal": "92078", "stop_lon": 2.321595204519359, "coord": [48.93477106412093, 2.321595204519359], "stop_id": 3798492, "stop_desc": "102 AV DE VERDUN - 92078", "stop_name": "CHEMIN DES RENIERS"}, "geometry": {"type": "Point", "coordinates": [2.321595204519359, 48.93477106412093]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eddc70c7136a9a9a191a988246560970e9436c77", "fields": {"departement": "92", "stop_lat": 48.93349938568873, "code_postal": "92036", "stop_lon": 2.3008350121717913, "coord": [48.93349938568873, 2.3008350121717913], "stop_id": 3798498, "stop_desc": "12 R PIERRE TIMBAUD - 92036", "stop_name": "TIMBAUD"}, "geometry": {"type": "Point", "coordinates": [2.3008350121717913, 48.93349938568873]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c1827f9c794ad8c10a40125feb6ceb04707f3651", "fields": {"departement": "92", "stop_lat": 48.932735720625814, "code_postal": "92036", "stop_lon": 2.3015584759131658, "coord": [48.932735720625814, 2.3015584759131658], "stop_id": 3798499, "stop_desc": "8 R PIERRE GRAINDORGE - 92036", "stop_name": "TIMBAUD"}, "geometry": {"type": "Point", "coordinates": [2.3015584759131658, 48.932735720625814]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "07f42918bf90eb92c1da178cbfb81a70a143f597", "fields": {"departement": "92", "stop_lat": 48.93319180543302, "code_postal": "92036", "stop_lon": 2.294710757867617, "coord": [48.93319180543302, 2.294710757867617], "stop_id": 3798501, "stop_desc": "FACE 92 R PIERRE TIMBAUD - 92036", "stop_name": "LE VILLAGE"}, "geometry": {"type": "Point", "coordinates": [2.294710757867617, 48.93319180543302]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b3265cbafecbae22d56589691d0d381414cc7ba5", "fields": {"departement": "93", "stop_lat": 48.91881351182381, "code_postal": "93008", "stop_lon": 2.414137048246282, "coord": [48.91881351182381, 2.414137048246282], "stop_id": 3798507, "stop_desc": "267 R DE STALINGRAD - 93008", "stop_name": "MAURICE LACHATRE"}, "geometry": {"type": "Point", "coordinates": [2.414137048246282, 48.91881351182381]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7591419f301c15490ef455b48605020834f413db", "fields": {"departement": "75", "stop_lat": 48.88225900488386, "code_postal": "75110", "stop_lon": 2.3576949457154477, "coord": [48.88225900488386, 2.3576949457154477], "stop_id": 3807561, "stop_desc": "PISTE GARE ROUTIERE - 75110", "stop_name": "GARE DU NORD"}, "geometry": {"type": "Point", "coordinates": [2.3576949457154477, 48.88225900488386]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0550cedfc85efee3b7f7c9e8888667e5d54bb72f", "fields": {"departement": "75", "stop_lat": 48.879473278409144, "code_postal": "75110", "stop_lon": 2.3557180612431323, "coord": [48.879473278409144, 2.3557180612431323], "stop_id": 3807563, "stop_desc": "33-35 RUE DE SAINT-QUENTIN - 75110", "stop_name": "LA FAYETTE - DUNKERQUE"}, "geometry": {"type": "Point", "coordinates": [2.3557180612431323, 48.879473278409144]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "84dfca84fedf0b1d89887a4d6b1606be2b872c43", "fields": {"departement": "75", "stop_lat": 48.86427713063281, "code_postal": "75101", "stop_lon": 2.335170497725097, "coord": [48.86427713063281, 2.335170497725097], "stop_id": 3807577, "stop_desc": "6 AVENUE DE L'OPERA - 75101", "stop_name": "PALAIS ROYAL - COMEDIE FRANCAISE"}, "geometry": {"type": "Point", "coordinates": [2.335170497725097, 48.86427713063281]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3bc18219846d6303ade01a043f41bf6cc216298c", "fields": {"departement": "75", "stop_lat": 48.85223383948741, "code_postal": "75106", "stop_lon": 2.330976343440543, "coord": [48.85223383948741, 2.330976343440543], "stop_id": 3807585, "stop_desc": "49-51 RUE DU FOUR - 75106", "stop_name": "MICHEL DEBRE"}, "geometry": {"type": "Point", "coordinates": [2.330976343440543, 48.85223383948741]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "00ff117cf1ffd77e858e4d6bdbfcf29a0015acfc", "fields": {"departement": "75", "stop_lat": 48.84868281900701, "code_postal": "75107", "stop_lon": 2.3208313468452886, "coord": [48.84868281900701, 2.3208313468452886], "stop_id": 3807588, "stop_desc": "56 RUE DE SEVRES - 75107", "stop_name": "VANEAU - SAINT-ROMAIN"}, "geometry": {"type": "Point", "coordinates": [2.3208313468452886, 48.84868281900701]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "00794fde5469861831b3ce44316bf23597214ef3", "fields": {"departement": "75", "stop_lat": 48.838369035834674, "code_postal": "75115", "stop_lon": 2.2987641849521716, "coord": [48.838369035834674, 2.2987641849521716], "stop_id": 3807596, "stop_desc": "315 RUE DE VAUGIRARD - 75115", "stop_name": "ABBE GROULT"}, "geometry": {"type": "Point", "coordinates": [2.2987641849521716, 48.838369035834674]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "634c6cdbbfd7b3413d9c139d7540e51d2be3209a", "fields": {"departement": "92", "stop_lat": 48.82837374190805, "code_postal": "92040", "stop_lon": 2.2749766076077833, "coord": [48.82837374190805, 2.2749766076077833], "stop_id": 3807606, "stop_desc": "71 RUE GUYNEMER - 92040", "stop_name": "MAISON DE RETRAITE"}, "geometry": {"type": "Point", "coordinates": [2.2749766076077833, 48.82837374190805]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "516c5d9668b90b632c4afaa0d4258516f58b8bb2", "fields": {"departement": "75", "stop_lat": 48.834651675112646, "code_postal": "75115", "stop_lon": 2.284444655246696, "coord": [48.834651675112646, 2.284444655246696], "stop_id": 3807609, "stop_desc": "81 RUE DESNOUETTES - 75115", "stop_name": "DESNOUETTES"}, "geometry": {"type": "Point", "coordinates": [2.284444655246696, 48.834651675112646]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a523ce160434754301b44f53785843f0926b64e1", "fields": {"departement": "75", "stop_lat": 48.83959225019507, "code_postal": "75115", "stop_lon": 2.301677023842893, "coord": [48.83959225019507, 2.301677023842893], "stop_id": 3807615, "stop_desc": "FACE 252 RUE DE VAUGIRARD - 75115", "stop_name": "VAUGIRARD - FAVORITES"}, "geometry": {"type": "Point", "coordinates": [2.301677023842893, 48.83959225019507]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cee63562cb8a6bfca310c5b6edcdb78bb5ecb6de", "fields": {"departement": "75", "stop_lat": 48.84038395608434, "code_postal": "75115", "stop_lon": 2.304467729103389, "coord": [48.84038395608434, 2.304467729103389], "stop_id": 3807616, "stop_desc": "249 RUE DE VAUGIRARD - 75115", "stop_name": "CAMBRONNE - VAUGIRARD"}, "geometry": {"type": "Point", "coordinates": [2.304467729103389, 48.84038395608434]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5275bca18bdecd2feb59c4224efb944c5809a100", "fields": {"departement": "75", "stop_lat": 48.84788276485709, "code_postal": "75106", "stop_lon": 2.3196604682901585, "coord": [48.84788276485709, 2.3196604682901585], "stop_id": 3807620, "stop_desc": "99-103 R DE SEVRES - 75106", "stop_name": "VANEAU - SAINT-ROMAIN"}, "geometry": {"type": "Point", "coordinates": [2.3196604682901585, 48.84788276485709]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c0f75d40a365c484d2b68eaf41a2e7c912e6897f", "fields": {"departement": "75", "stop_lat": 48.84992345516465, "code_postal": "75106", "stop_lon": 2.323718043780384, "coord": [48.84992345516465, 2.323718043780384], "stop_id": 3807621, "stop_desc": "83 RUE DE SEVRES - 75106", "stop_name": "BAC - SAINT-PLACIDE"}, "geometry": {"type": "Point", "coordinates": [2.323718043780384, 48.84992345516465]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b8c9ab111b93e8dadd803c44add202bc51f32426", "fields": {"departement": "75", "stop_lat": 48.86740438643242, "code_postal": "75102", "stop_lon": 2.3465863945789227, "coord": [48.86740438643242, 2.3465863945789227], "stop_id": 3807628, "stop_desc": "91 RUE REAUMUR - 75102", "stop_name": "SENTIER"}, "geometry": {"type": "Point", "coordinates": [2.3465863945789227, 48.86740438643242]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "881ee4ecfaff4373a69e11b209fd19dac37b5652", "fields": {"departement": "75", "stop_lat": 48.88083009699428, "code_postal": "75110", "stop_lon": 2.3573128411784254, "coord": [48.88083009699428, 2.3573128411784254], "stop_id": 3811223, "stop_desc": "PISTE GARE ROUTIERE - 75110", "stop_name": "GARE DU NORD"}, "geometry": {"type": "Point", "coordinates": [2.3573128411784254, 48.88083009699428]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7d58651cb90f1f2db1c2d926c87d4052cd94fcd6", "fields": {"departement": "75", "stop_lat": 48.872895973944125, "code_postal": "75109", "stop_lon": 2.3342028204244496, "coord": [48.872895973944125, 2.3342028204244496], "stop_id": 3811230, "stop_desc": "32 BIS BOULEVARD HAUSSMANN - 75109", "stop_name": "CHAUSSEE D'ANTIN"}, "geometry": {"type": "Point", "coordinates": [2.3342028204244496, 48.872895973944125]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5480b62fda91f9d9dbf65c4aebc058dc47955e64", "fields": {"departement": "75", "stop_lat": 48.87081035686259, "code_postal": "75108", "stop_lon": 2.325320203744418, "coord": [48.87081035686259, 2.325320203744418], "stop_id": 3811234, "stop_desc": "30 PLACE DE LA MADELEINE - 75108", "stop_name": "MADELEINE - VIGNON"}, "geometry": {"type": "Point", "coordinates": [2.325320203744418, 48.87081035686259]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a7b1a2205c04b53be67bfedac7e1745a69fec5d9", "fields": {"departement": "75", "stop_lat": 48.87052260432167, "code_postal": "75108", "stop_lon": 2.3238352803584, "coord": [48.87052260432167, 2.3238352803584], "stop_id": 3811235, "stop_desc": "11 PLACE DE LA MADELEINE - 75108", "stop_name": "MADELEINE"}, "geometry": {"type": "Point", "coordinates": [2.3238352803584, 48.87052260432167]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f5cb4ca60858ea5dad2f3755e36003f880b72e6c", "fields": {"departement": "75", "stop_lat": 48.866999231212986, "code_postal": "75108", "stop_lon": 2.32113887130694, "coord": [48.866999231212986, 2.32113887130694], "stop_id": 3811236, "stop_desc": "8 PLACE DE LA CONCORDE - 75108", "stop_name": "CONCORDE"}, "geometry": {"type": "Point", "coordinates": [2.32113887130694, 48.866999231212986]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "587b0c1c029cd9dfee8c5a6dcad14de2679f2079", "fields": {"departement": "75", "stop_lat": 48.868848352216375, "code_postal": "75108", "stop_lon": 2.3089454267019436, "coord": [48.868848352216375, 2.3089454267019436], "stop_id": 3811242, "stop_desc": "ROND-POINT DES CHAMPS ELYSEES - 75108", "stop_name": "ROND-POINT DES CHAMPS-ELYSEES"}, "geometry": {"type": "Point", "coordinates": [2.3089454267019436, 48.868848352216375]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ad0e1e7d4e9ec3ce8b99add3240560f4170739f0", "fields": {"departement": "75", "stop_lat": 48.867131293216886, "code_postal": "75108", "stop_lon": 2.30701191687767, "coord": [48.867131293216886, 2.30701191687767], "stop_id": 3811245, "stop_desc": "36 AVENUE MONTAIGNE - 75108", "stop_name": "MONTAIGNE - FRANCOIS 1ER"}, "geometry": {"type": "Point", "coordinates": [2.30701191687767, 48.867131293216886]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "438d7e5e4fc4f2f55342099a9965c9f6045741ab", "fields": {"departement": "75", "stop_lat": 48.86513479707833, "code_postal": "75108", "stop_lon": 2.3022588833746376, "coord": [48.86513479707833, 2.3022588833746376], "stop_id": 3811246, "stop_desc": "3 AVENUE MONTAIGNE - 75108", "stop_name": "ALMA - MARCEAU"}, "geometry": {"type": "Point", "coordinates": [2.3022588833746376, 48.86513479707833]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "227068eddcce52626027c42582e9c091df17b76f", "fields": {"departement": "75", "stop_lat": 48.86518899758036, "code_postal": "75108", "stop_lon": 2.3032124118386377, "coord": [48.86518899758036, 2.3032124118386377], "stop_id": 3811247, "stop_desc": "FACE 5 AVENUE MONTAIGNE - 75108", "stop_name": "ALMA - MARCEAU"}, "geometry": {"type": "Point", "coordinates": [2.3032124118386377, 48.86518899758036]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f5e1c2fc8082b332f0ae05c2b74b22e74182eca9", "fields": {"departement": "75", "stop_lat": 48.862456355985195, "code_postal": "75107", "stop_lon": 2.3015796088099587, "coord": [48.862456355985195, 2.3015796088099587], "stop_id": 3811248, "stop_desc": "FACE 7 QUAI BRANLY - 75107", "stop_name": "BOSQUET - RAPP"}, "geometry": {"type": "Point", "coordinates": [2.3015796088099587, 48.862456355985195]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c1ca161aa971f39c2719862ee4820cd11a6b078d", "fields": {"departement": "75", "stop_lat": 48.86304962502413, "code_postal": "75107", "stop_lon": 2.3019197455873655, "coord": [48.86304962502413, 2.3019197455873655], "stop_id": 3811249, "stop_desc": "PONT DE L'ALMA - 75107", "stop_name": "BOSQUET - RAPP"}, "geometry": {"type": "Point", "coordinates": [2.3019197455873655, 48.86304962502413]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4b989762fa5ea3bbcc5ea3dec2fd0bf0def60d73", "fields": {"departement": "75", "stop_lat": 48.85891421086733, "code_postal": "75107", "stop_lon": 2.298054281467755, "coord": [48.85891421086733, 2.298054281467755], "stop_id": 3811252, "stop_desc": "22 AVENUE DE LA BOURDONNAIS - 75107", "stop_name": "MONTTESSUY"}, "geometry": {"type": "Point", "coordinates": [2.298054281467755, 48.85891421086733]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cdc75cb236cb006596c2d775f34a57c60546a79f", "fields": {"departement": "75", "stop_lat": 48.85120070117625, "code_postal": "75115", "stop_lon": 2.291645710199559, "coord": [48.85120070117625, 2.291645710199559], "stop_id": 3811260, "stop_desc": "58 BOULEVARD DE GRENELLE - 75115", "stop_name": "DUPLEIX"}, "geometry": {"type": "Point", "coordinates": [2.291645710199559, 48.85120070117625]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "11153d55416ba92f6b63c7e4dd5fbd9f2eabbf71", "fields": {"departement": "75", "stop_lat": 48.83700593345708, "code_postal": "75115", "stop_lon": 2.283353062291027, "coord": [48.83700593345708, 2.283353062291027], "stop_id": 3811272, "stop_desc": "FACE 31-33 RUE VASCO DE GAMA - 75115", "stop_name": "LECOURBE - VASCO DE GAMA"}, "geometry": {"type": "Point", "coordinates": [2.283353062291027, 48.83700593345708]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "761b81697686b96efad01c1a417ef3e77198b146", "fields": {"departement": "75", "stop_lat": 48.83944609349221, "code_postal": "75115", "stop_lon": 2.2742689214112684, "coord": [48.83944609349221, 2.2742689214112684], "stop_id": 3811277, "stop_desc": "36 RUE LEBLANC - 75115", "stop_name": "RUE LEBLANC"}, "geometry": {"type": "Point", "coordinates": [2.2742689214112684, 48.83944609349221]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6d6b7edfc51a2a201651d5ee2b3ac179b6e128d5", "fields": {"departement": "75", "stop_lat": 48.839912296324485, "code_postal": "75115", "stop_lon": 2.272130686771809, "coord": [48.839912296324485, 2.272130686771809], "stop_id": 3811279, "stop_desc": "10 RUE LEBLANC - 75115", "stop_name": "HOPITAL EUROPEEN GEORGES POMPIDOU"}, "geometry": {"type": "Point", "coordinates": [2.272130686771809, 48.839912296324485]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fb4278f166e160c164e987f08e875497b9bf103e", "fields": {"departement": "75", "stop_lat": 48.84098620338169, "code_postal": "75115", "stop_lon": 2.2807210381997813, "coord": [48.84098620338169, 2.2807210381997813], "stop_id": 3811282, "stop_desc": "171-173 RUE SAINT CHARLES - 75115", "stop_name": "ROND-POINT SAINT-CHARLES"}, "geometry": {"type": "Point", "coordinates": [2.2807210381997813, 48.84098620338169]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bd431175a9f105ea434b5ba293f34a72ab45cc1a", "fields": {"departement": "75", "stop_lat": 48.85183822296341, "code_postal": "75115", "stop_lon": 2.29013345702088, "coord": [48.85183822296341, 2.29013345702088], "stop_id": 3811283, "stop_desc": "5 RUE SAINT CHARLES - 75115", "stop_name": "DOCTEUR FINLAY"}, "geometry": {"type": "Point", "coordinates": [2.29013345702088, 48.85183822296341]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c199f163e3c97b0abe1b5b0e99c7fa1770642494", "fields": {"departement": "75", "stop_lat": 48.87654445856856, "code_postal": "75109", "stop_lon": 2.3469968002225374, "coord": [48.87654445856856, 2.3469968002225374], "stop_id": 3811290, "stop_desc": "90 RUE LA FAYETTE - 75109", "stop_name": "SQUARE MONTHOLON"}, "geometry": {"type": "Point", "coordinates": [2.3469968002225374, 48.87654445856856]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c87bddbcb4f84413b8c45fbf9d347a2a6a70593a", "fields": {"departement": "75", "stop_lat": 48.87794593694368, "code_postal": "75110", "stop_lon": 2.3521884586483655, "coord": [48.87794593694368, 2.3521884586483655], "stop_id": 3811291, "stop_desc": "130 RUE LA FAYETTE - 75110", "stop_name": "PLACE FRANZ LISZT"}, "geometry": {"type": "Point", "coordinates": [2.3521884586483655, 48.87794593694368]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d0bf871c56846bfbf61d1da6f17d956ec021016f", "fields": {"departement": "75", "stop_lat": 48.858237481253475, "code_postal": "75101", "stop_lon": 2.3429344426817336, "coord": [48.858237481253475, 2.3429344426817336], "stop_id": 3812922, "stop_desc": "FACE 22 QUAI DE LA MEGISSERIE - 75101", "stop_name": "PONT NEUF - QUAI DU LOUVRE"}, "geometry": {"type": "Point", "coordinates": [2.3429344426817336, 48.858237481253475]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0c6201ce336e3a533ed96bb947dc15679bdccab8", "fields": {"departement": "75", "stop_lat": 48.84659686626664, "code_postal": "75107", "stop_lon": 2.3155075746566527, "coord": [48.84659686626664, 2.3155075746566527], "stop_id": 3812933, "stop_desc": "FACE 149 RUE DE SEVRES - 75107", "stop_name": "HOPITAL DES ENFANTS MALADES"}, "geometry": {"type": "Point", "coordinates": [2.3155075746566527, 48.84659686626664]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8906d57e25731e98ceea4e20b5476e98b66b8409", "fields": {"departement": "75", "stop_lat": 48.84473518742932, "code_postal": "75115", "stop_lon": 2.3094351792376666, "coord": [48.84473518742932, 2.3094351792376666], "stop_id": 3812934, "stop_desc": "20 RUE LECOURBE - 75115", "stop_name": "SEVRES - LECOURBE"}, "geometry": {"type": "Point", "coordinates": [2.3094351792376666, 48.84473518742932]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "edd807aeae7b33691aa6c614529b8202f9c03163", "fields": {"departement": "75", "stop_lat": 48.847018927050215, "code_postal": "75115", "stop_lon": 2.2853172086036198, "coord": [48.847018927050215, 2.2853172086036198], "stop_id": 3812946, "stop_desc": "45 RUE LINOIS - 75115", "stop_name": "CHARLES MICHELS"}, "geometry": {"type": "Point", "coordinates": [2.2853172086036198, 48.847018927050215]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "db511baf0906809d33187f00b664e50a2558cee2", "fields": {"departement": "75", "stop_lat": 48.84896773666375, "code_postal": "75115", "stop_lon": 2.282033295404702, "coord": [48.84896773666375, 2.282033295404702], "stop_id": 3812949, "stop_desc": "6-8 RUE LINOIS - 75115", "stop_name": "PONT DE GRENELLE - PLACE FERNAND FOREST"}, "geometry": {"type": "Point", "coordinates": [2.282033295404702, 48.84896773666375]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "261f2ea096107c99e2dbd95ec75e484df96d1b99", "fields": {"departement": "75", "stop_lat": 48.853091988495116, "code_postal": "75116", "stop_lon": 2.2799179313180344, "coord": [48.853091988495116, 2.2799179313180344], "stop_id": 3812952, "stop_desc": "6 R DU RANELAGH - 75116", "stop_name": "RADIO FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.2799179313180344, 48.853091988495116]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ce56922f88679983316da6a58d19ae21c94a3a44", "fields": {"departement": "75", "stop_lat": 48.84153536388469, "code_postal": "75115", "stop_lon": 2.3083339871069257, "coord": [48.84153536388469, 2.3083339871069257], "stop_id": 3812958, "stop_desc": "225-223 RUE DE VAUGIRARD - 75115", "stop_name": "VOLONTAIRES - VAUGIRARD"}, "geometry": {"type": "Point", "coordinates": [2.3083339871069257, 48.84153536388469]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "49256a343025984d35358a64fd19ac054afbfce5", "fields": {"departement": "75", "stop_lat": 48.85289907507759, "code_postal": "75106", "stop_lon": 2.336560105706197, "coord": [48.85289907507759, 2.336560105706197], "stop_id": 3812965, "stop_desc": "125 BOULEVARD SAINT-GERMAIN - 75106", "stop_name": "SEINE - BUCI"}, "geometry": {"type": "Point", "coordinates": [2.336560105706197, 48.85289907507759]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "86ad1bae92cebcaf24378b0e1a97ed60588b3ce4", "fields": {"departement": "75", "stop_lat": 48.84459455351623, "code_postal": "75106", "stop_lon": 2.3328155557835526, "coord": [48.84459455351623, 2.3328155557835526], "stop_id": 3812971, "stop_desc": "FACE 80 RUE D'ASSAS - 75106", "stop_name": "GUYNEMER - VAVIN"}, "geometry": {"type": "Point", "coordinates": [2.3328155557835526, 48.84459455351623]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9b0adec05db7a8b7a7a1fdfa3536b6f55b126713", "fields": {"departement": "75", "stop_lat": 48.849616522707365, "code_postal": "75107", "stop_lon": 2.314743685797424, "coord": [48.849616522707365, 2.314743685797424], "stop_id": 3812981, "stop_desc": "48 BOULEVARD DES INVALIDES - 75107", "stop_name": "OUDINOT"}, "geometry": {"type": "Point", "coordinates": [2.314743685797424, 48.849616522707365]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "364761f66ffd47af8ae732aed645fc6bc7ad9fa7", "fields": {"departement": "75", "stop_lat": 48.852186655965916, "code_postal": "75107", "stop_lon": 2.3132853436335314, "coord": [48.852186655965916, 2.3132853436335314], "stop_id": 3812983, "stop_desc": "18 AVENUE DE VILLARS - 75107", "stop_name": "SAINT-FRANCOIS XAVIER"}, "geometry": {"type": "Point", "coordinates": [2.3132853436335314, 48.852186655965916]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c7fee83ee109a1e7eeefa5d060872750de5e63ce", "fields": {"departement": "75", "stop_lat": 48.853570661304, "code_postal": "75107", "stop_lon": 2.31297146006203, "coord": [48.853570661304, 2.31297146006203], "stop_id": 3812984, "stop_desc": "PLACE VAUBAN - 75107", "stop_name": "VAUBAN - HOTEL DES INVALIDES"}, "geometry": {"type": "Point", "coordinates": [2.31297146006203, 48.853570661304]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "92a776320755cb5e2e9b4e2e3786fb6ac9a0128c", "fields": {"departement": "75", "stop_lat": 48.853444477702595, "code_postal": "75107", "stop_lon": 2.3112691100642078, "coord": [48.853444477702595, 2.3112691100642078], "stop_id": 3812985, "stop_desc": "1 AVENUE DE TOURVILLE - 75107", "stop_name": "VAUBAN - HOTEL DES INVALIDES"}, "geometry": {"type": "Point", "coordinates": [2.3112691100642078, 48.853444477702595]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "06078900ea8df3d4119e9e81401c7da869f6501c", "fields": {"departement": "75", "stop_lat": 48.85489587353005, "code_postal": "75107", "stop_lon": 2.295251669526531, "coord": [48.85489587353005, 2.295251669526531], "stop_id": 3812991, "stop_desc": "35 AVENUE DE SUFFREN - 75107", "stop_name": "CHAMP DE MARS - SUFFREN"}, "geometry": {"type": "Point", "coordinates": [2.295251669526531, 48.85489587353005]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5f18d39f8ddd29bfdafa7e3ef231beba3562772b", "fields": {"departement": "75", "stop_lat": 48.86744957216263, "code_postal": "75116", "stop_lon": 2.2906778118812134, "coord": [48.86744957216263, 2.2906778118812134], "stop_id": 3813001, "stop_desc": "53 AVENUE KLEBER - 75116", "stop_name": "KLEBER - BOISSIERE"}, "geometry": {"type": "Point", "coordinates": [2.2906778118812134, 48.86744957216263]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7520a419a0709001a4362ccda4613b660f756b9d", "fields": {"departement": "92", "stop_lat": 48.88070064055311, "code_postal": "92051", "stop_lon": 2.278851786727379, "coord": [48.88070064055311, 2.278851786727379], "stop_id": 3813014, "stop_desc": "13 RUE DE CHARTRES - 92051", "stop_name": "PARMENTIER"}, "geometry": {"type": "Point", "coordinates": [2.278851786727379, 48.88070064055311]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9266951d80e943c4609d895b64e7bf48728b7f4b", "fields": {"departement": "92", "stop_lat": 48.88256889254122, "code_postal": "92051", "stop_lon": 2.276655746559639, "coord": [48.88256889254122, 2.276655746559639], "stop_id": 3813016, "stop_desc": "63 AVENUE ACHILLE PERETTI OU DU ROULE - 92051", "stop_name": "CHARTRES"}, "geometry": {"type": "Point", "coordinates": [2.276655746559639, 48.88256889254122]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "382dbd29604a46f7b4e406a71710a2af3050ef98", "fields": {"departement": "92", "stop_lat": 48.88888814154779, "code_postal": "92051", "stop_lon": 2.2629516254345514, "coord": [48.88888814154779, 2.2629516254345514], "stop_id": 3813023, "stop_desc": "14 BOULEVARD DE LA SAUSSAYE - 92051", "stop_name": "LA SAUSSAYE - D'ARGENSON"}, "geometry": {"type": "Point", "coordinates": [2.2629516254345514, 48.88888814154779]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e0ee3bc283b166204838f34a2a73a2d91047269d", "fields": {"departement": "75", "stop_lat": 48.87797775885424, "code_postal": "75116", "stop_lon": 2.2793862572396137, "coord": [48.87797775885424, 2.2793862572396137], "stop_id": 3813032, "stop_desc": "RUE JOSEPH ET MARIE HACKIN - 75116", "stop_name": "ANDRE MAUROIS"}, "geometry": {"type": "Point", "coordinates": [2.2793862572396137, 48.87797775885424]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "16aedde614031dce745597a4ac309f4ffdc5e55f", "fields": {"departement": "75", "stop_lat": 48.87713349214627, "code_postal": "75116", "stop_lon": 2.280504490492322, "coord": [48.87713349214627, 2.280504490492322], "stop_id": 3813033, "stop_desc": "PLACE DE LA PORTE MAILLOT - 75116", "stop_name": "PALAIS DES CONGRES"}, "geometry": {"type": "Point", "coordinates": [2.280504490492322, 48.87713349214627]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1c8fe8fbc507de6f7c7b91f9fc0686da49f51d08", "fields": {"departement": "75", "stop_lat": 48.856937478832926, "code_postal": "75107", "stop_lon": 2.29960847722716, "coord": [48.856937478832926, 2.29960847722716], "stop_id": 3813046, "stop_desc": "AVENUE JOSEPH BOUVARD - 75107", "stop_name": "RAPP - LA BOURDONNAIS"}, "geometry": {"type": "Point", "coordinates": [2.29960847722716, 48.856937478832926]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "33b12aa177fb85918601d7ab2866b0638bb4ccb2", "fields": {"departement": "75", "stop_lat": 48.857485703294316, "code_postal": "75107", "stop_lon": 2.2995808386336414, "coord": [48.857485703294316, 2.2995808386336414], "stop_id": 3813047, "stop_desc": "AVENUE JOSEPH BOUVARD - 75107", "stop_name": "RAPP - LA BOURDONNAIS"}, "geometry": {"type": "Point", "coordinates": [2.2995808386336414, 48.857485703294316]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "024fd1c3a106f9522eb59a4e9978dd363721536f", "fields": {"departement": "75", "stop_lat": 48.855581450544854, "code_postal": "75107", "stop_lon": 2.3031778580684246, "coord": [48.855581450544854, 2.3031778580684246], "stop_id": 3813048, "stop_desc": "60 AVENUE DE LA BOURDONNAIS - 75107", "stop_name": "CHAMP DE MARS - LA BOURDONNAIS"}, "geometry": {"type": "Point", "coordinates": [2.3031778580684246, 48.855581450544854]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "43c77793e6f3b37152057c211b853be903589b38", "fields": {"departement": "75", "stop_lat": 48.85066735678148, "code_postal": "75107", "stop_lon": 2.311297738319514, "coord": [48.85066735678148, 2.311297738319514], "stop_id": 3813054, "stop_desc": "32-34 AVENUE DUQUESNE - 75107", "stop_name": "EL SALVADOR"}, "geometry": {"type": "Point", "coordinates": [2.311297738319514, 48.85066735678148]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f7690fe623608a66dca9275834359d3470af369f", "fields": {"departement": "75", "stop_lat": 48.85092846205761, "code_postal": "75107", "stop_lon": 2.3135446786335057, "coord": [48.85092846205761, 2.3135446786335057], "stop_id": 3813055, "stop_desc": "PLACE DU PRESIDENT MITHOUARD - 75107", "stop_name": "SAINT-FRANCOIS-XAVIER"}, "geometry": {"type": "Point", "coordinates": [2.3135446786335057, 48.85092846205761]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a5c45eedc681411cda02231238dfbf746ce1873f", "fields": {"departement": "75", "stop_lat": 48.849616522707365, "code_postal": "75107", "stop_lon": 2.314743685797424, "coord": [48.849616522707365, 2.314743685797424], "stop_id": 3813057, "stop_desc": "48 BOULEVARD DES INVALIDES - 75107", "stop_name": "OUDINOT"}, "geometry": {"type": "Point", "coordinates": [2.314743685797424, 48.849616522707365]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cdb81aaad30c55bbac84df8e9d3383b3b1c468fc", "fields": {"departement": "75", "stop_lat": 48.84788276485709, "code_postal": "75106", "stop_lon": 2.3196604682901585, "coord": [48.84788276485709, 2.3196604682901585], "stop_id": 3813059, "stop_desc": "99-103 R DE SEVRES - 75106", "stop_name": "VANEAU - SAINT-ROMAIN"}, "geometry": {"type": "Point", "coordinates": [2.3196604682901585, 48.84788276485709]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5b8b78d09317d45e1d84ed220652ab224125dc56", "fields": {"departement": "75", "stop_lat": 48.85223383948741, "code_postal": "75106", "stop_lon": 2.330976343440543, "coord": [48.85223383948741, 2.330976343440543], "stop_id": 3813062, "stop_desc": "49-51 RUE DU FOUR - 75106", "stop_name": "MICHEL DEBRE"}, "geometry": {"type": "Point", "coordinates": [2.330976343440543, 48.85223383948741]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "be89cd57365b80d9eab496b608b418ba4f8838e3", "fields": {"departement": "75", "stop_lat": 48.8517844515023, "code_postal": "75106", "stop_lon": 2.3307040210995797, "coord": [48.8517844515023, 2.3307040210995797], "stop_id": 3813063, "stop_desc": "18-20 RUE DU VIEUX COLOMBIER - 75106", "stop_name": "MICHEL DEBRE"}, "geometry": {"type": "Point", "coordinates": [2.3307040210995797, 48.8517844515023]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8175f01c3658730aa000ca1e9fdf1c02dc95c108", "fields": {"departement": "75", "stop_lat": 48.852162079896225, "code_postal": "75106", "stop_lon": 2.3397060895787947, "coord": [48.852162079896225, 2.3397060895787947], "stop_id": 3813066, "stop_desc": "87 BOULEVARD SAINT GERMAIN - 75106", "stop_name": "SAINT-GERMAIN - ODEON"}, "geometry": {"type": "Point", "coordinates": [2.3397060895787947, 48.852162079896225]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5ea1d994b5a690945fb408d07924e87f3251446c", "fields": {"departement": "75", "stop_lat": 48.850119889984526, "code_postal": "75104", "stop_lon": 2.3593981982611987, "coord": [48.850119889984526, 2.3593981982611987], "stop_id": 3813073, "stop_desc": "FACE 3-5 BOULEVARD HENRI IV - 75104", "stop_name": "PONT SULLY - QUAI DE BETHUNE"}, "geometry": {"type": "Point", "coordinates": [2.3593981982611987, 48.850119889984526]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c39844646fa5a59db47ef0927ae59e453e114076", "fields": {"departement": "75", "stop_lat": 48.85029067481675, "code_postal": "75104", "stop_lon": 2.3592757051746074, "coord": [48.85029067481675, 2.3592757051746074], "stop_id": 3813074, "stop_desc": "1-3 BOULEVARD HENRI IV - 75104", "stop_name": "PONT SULLY - QUAI DE BETHUNE"}, "geometry": {"type": "Point", "coordinates": [2.3592757051746074, 48.85029067481675]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d39f0256e8ea1a6da05f13822c220e0aa17e02df", "fields": {"departement": "75", "stop_lat": 48.8488765289316, "code_postal": "75112", "stop_lon": 2.372266746924533, "coord": [48.8488765289316, 2.372266746924533], "stop_id": 3813081, "stop_desc": "9-11 AVENUE DAUMESNIL - 75112", "stop_name": "LYON - LEDRU ROLLIN"}, "geometry": {"type": "Point", "coordinates": [2.372266746924533, 48.8488765289316]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f15a6ffe86bc559dd40b7c9225a6728d94a021dd", "fields": {"departement": "75", "stop_lat": 48.84369043264488, "code_postal": "75112", "stop_lon": 2.373284500119991, "coord": [48.84369043264488, 2.373284500119991], "stop_id": 3813085, "stop_desc": "179 RUE DE BERCY - 75112", "stop_name": "GARE DE LYON"}, "geometry": {"type": "Point", "coordinates": [2.373284500119991, 48.84369043264488]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4504e7185ab284a112be490cf5f88d20e80c0989", "fields": {"departement": "75", "stop_lat": 48.84106444132994, "code_postal": "75112", "stop_lon": 2.37832060509252, "coord": [48.84106444132994, 2.37832060509252], "stop_id": 3813088, "stop_desc": "124 RUE DE BERCY - 75112", "stop_name": "MINISTERE DE L'ECONOMIE ET DES FINANCES"}, "geometry": {"type": "Point", "coordinates": [2.37832060509252, 48.84106444132994]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ef8a3c1511f7747203b9b4d0b7f317bcd3546e9e", "fields": {"departement": "75", "stop_lat": 48.83698822025995, "code_postal": "75112", "stop_lon": 2.3905708379884882, "coord": [48.83698822025995, 2.3905708379884882], "stop_id": 3813093, "stop_desc": "FACE 39 RUE PROUDHON - 75112", "stop_name": "CHARENTON - WATTIGNIES"}, "geometry": {"type": "Point", "coordinates": [2.3905708379884882, 48.83698822025995]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4bc394eea3827fc04615208703fa69a934345b71", "fields": {"departement": "75", "stop_lat": 48.83770709142014, "code_postal": "75112", "stop_lon": 2.3908711098984665, "coord": [48.83770709142014, 2.3908711098984665], "stop_id": 3813094, "stop_desc": "235/237 RUE DE CHARENTON - 75112", "stop_name": "CHARENTON - WATTIGNIES"}, "geometry": {"type": "Point", "coordinates": [2.3908711098984665, 48.83770709142014]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c8d48f1b02793d5f841b246dab28550b813fd56b", "fields": {"departement": "75", "stop_lat": 48.834152432094236, "code_postal": "75112", "stop_lon": 2.400193171890694, "coord": [48.834152432094236, 2.400193171890694], "stop_id": 3813099, "stop_desc": "40 AV DU GENERAL MICHEL BIZOT - 75112", "stop_name": "PORTE DE REUILLY"}, "geometry": {"type": "Point", "coordinates": [2.400193171890694, 48.834152432094236]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e380d5eefcb886358d7f4cdae6ee2c8601f7e533", "fields": {"departement": "75", "stop_lat": 48.85239140153054, "code_postal": "75112", "stop_lon": 2.369545320283473, "coord": [48.85239140153054, 2.369545320283473], "stop_id": 3813102, "stop_desc": "RUE DE LYON - 75112", "stop_name": "BASTILLE"}, "geometry": {"type": "Point", "coordinates": [2.369545320283473, 48.85239140153054]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0b8cd795c2ab4b94b4756fed5dd2975fbf1243df", "fields": {"departement": "75", "stop_lat": 48.849321725621934, "code_postal": "75105", "stop_lon": 2.3462154498324934, "coord": [48.849321725621934, 2.3462154498324934], "stop_id": 3813106, "stop_desc": "42 RUE DES ECOLES - 75105", "stop_name": "COLLEGE DE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.3462154498324934, 48.849321725621934]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cb8fa3b982e10614c7e9a6015cef1f9d774ca240", "fields": {"departement": "75", "stop_lat": 48.84202305182629, "code_postal": "75115", "stop_lon": 2.320697292153351, "coord": [48.84202305182629, 2.320697292153351], "stop_id": 3813112, "stop_desc": "PLACE RAOUL DAUTRY - 75115", "stop_name": "GARE MONTPARNASSE"}, "geometry": {"type": "Point", "coordinates": [2.320697292153351, 48.84202305182629]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ec8c6b8ee139e96150e9bdf69567d6f4a719a6d1", "fields": {"departement": "75", "stop_lat": 48.84363218345401, "code_postal": "75115", "stop_lon": 2.323556284824934, "coord": [48.84363218345401, 2.323556284824934], "stop_id": 3813114, "stop_desc": "PLACE DU 18 JUIN 1940 - 75115", "stop_name": "PLACE DU 18 JUIN 1940"}, "geometry": {"type": "Point", "coordinates": [2.323556284824934, 48.84363218345401]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c334f7b45c697fa5aa4995d77c8d9de7e2f10def", "fields": {"departement": "75", "stop_lat": 48.84597723329333, "code_postal": "75106", "stop_lon": 2.318476408387774, "coord": [48.84597723329333, 2.318476408387774], "stop_id": 3813117, "stop_desc": "15-17 BOULEVARD DU MONTPARNASSE - 75106", "stop_name": "MAINE - VAUGIRARD"}, "geometry": {"type": "Point", "coordinates": [2.318476408387774, 48.84597723329333]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "13917ee64e5e47340830ab8dd722a8bc7bb9ab45", "fields": {"departement": "75", "stop_lat": 48.851422903990496, "code_postal": "75107", "stop_lon": 2.314211770978317, "coord": [48.851422903990496, 2.314211770978317], "stop_id": 3813122, "stop_desc": "AVENUE DE VILLARS - 75107", "stop_name": "SAINT-FRANCOIS XAVIER"}, "geometry": {"type": "Point", "coordinates": [2.314211770978317, 48.851422903990496]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b6653e0b368c92e14dc24282b849b4259c7aa501", "fields": {"departement": "75", "stop_lat": 48.85418005267749, "code_postal": "75107", "stop_lon": 2.305507707472057, "coord": [48.85418005267749, 2.305507707472057], "stop_id": 3813127, "stop_desc": "PLACE DE L'ECOLE MILITAIRE - 75107", "stop_name": "ECOLE MILITAIRE"}, "geometry": {"type": "Point", "coordinates": [2.305507707472057, 48.85418005267749]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2189af4c0740f7e6e48f0bc94e7d7b0138c41916", "fields": {"departement": "75", "stop_lat": 48.86778517191395, "code_postal": "75108", "stop_lon": 2.2993281411071806, "coord": [48.86778517191395, 2.2993281411071806], "stop_id": 3813135, "stop_desc": "34 AVENUE MARCEAU - 75108", "stop_name": "MARCEAU - PIERRE 1ER DE SERBIE - PLACE DE BEYROUTH"}, "geometry": {"type": "Point", "coordinates": [2.2993281411071806, 48.86778517191395]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cf763fcf8081b397d179c7027b967357b13b47ad", "fields": {"departement": "75", "stop_lat": 48.8416902150658, "code_postal": "75105", "stop_lon": 2.3558271590760156, "coord": [48.8416902150658, 2.3558271590760156], "stop_id": 5454885, "stop_desc": "36 BIS RUE GEOFFROY SAINT-HILAIRE - 75105", "stop_name": "BUFFON - LA MOSQUEE"}, "geometry": {"type": "Point", "coordinates": [2.3558271590760156, 48.8416902150658]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a17991913a6e1bb58a3a1adb8ef71fab71594f65", "fields": {"departement": "75", "stop_lat": 48.8462021413457, "code_postal": "75105", "stop_lon": 2.3545759764763554, "coord": [48.8462021413457, 2.3545759764763554], "stop_id": 5454913, "stop_desc": "PLACE JUSSIEU - 75105", "stop_name": "JUSSIEU"}, "geometry": {"type": "Point", "coordinates": [2.3545759764763554, 48.8462021413457]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "26bb11a952d569b49af6de4c51f10bbd8bf2ac18", "fields": {"departement": "75", "stop_lat": 48.83386184230507, "code_postal": "75113", "stop_lon": 2.3570632427962246, "coord": [48.83386184230507, 2.3570632427962246], "stop_id": 5454921, "stop_desc": "138 BOULEVARD DE L'HOPITAL - 75113", "stop_name": "RUBENS - ECOLE DES ARTS ET METIERS"}, "geometry": {"type": "Point", "coordinates": [2.3570632427962246, 48.83386184230507]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fbbd7deb7babee26d1ebb47c4e5ca8ee397563f2", "fields": {"departement": "75", "stop_lat": 48.82548634462779, "code_postal": "75113", "stop_lon": 2.349941003573772, "coord": [48.82548634462779, 2.349941003573772], "stop_id": 5454928, "stop_desc": "56 RUE BOBILLOT - 75113", "stop_name": "BOBILLOT - TOLBIAC"}, "geometry": {"type": "Point", "coordinates": [2.349941003573772, 48.82548634462779]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b129e4767372b39d37ebc723e8d1ff60cb92c486", "fields": {"departement": "75", "stop_lat": 48.821765942250764, "code_postal": "75113", "stop_lon": 2.3438423843456815, "coord": [48.821765942250764, 2.3438423843456815], "stop_id": 5454932, "stop_desc": "26 RUE DE RUNGIS - 75113", "stop_name": "AMIRAL MOUCHEZ"}, "geometry": {"type": "Point", "coordinates": [2.3438423843456815, 48.821765942250764]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c6f023a29a3cc65b2e5aebd2829f2a8af534acb5", "fields": {"departement": "75", "stop_lat": 48.82152331045431, "code_postal": "75113", "stop_lon": 2.343161808767993, "coord": [48.82152331045431, 2.343161808767993], "stop_id": 5454933, "stop_desc": "31 RUE DE RUNGIS - 75113", "stop_name": "AMIRAL MOUCHEZ"}, "geometry": {"type": "Point", "coordinates": [2.343161808767993, 48.82152331045431]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b6d8493e17a87c20d92101a85ccf5f3c4f1831fb", "fields": {"departement": "75", "stop_lat": 48.82027398784946, "code_postal": "75114", "stop_lon": 2.343801363217265, "coord": [48.82027398784946, 2.343801363217265], "stop_id": 5454935, "stop_desc": "96 RUE DE L' AMIRAL MOUCHEZ - 75114", "stop_name": "STADE CHARLETY - PORTE DE GENTILLY"}, "geometry": {"type": "Point", "coordinates": [2.343801363217265, 48.82027398784946]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9dbbf0106e34601a8ccdf26ad29fd19db9fdb2ec", "fields": {"departement": "75", "stop_lat": 48.83873312208706, "code_postal": "75105", "stop_lon": 2.3569970257346244, "coord": [48.83873312208706, 2.3569970257346244], "stop_id": 5454937, "stop_desc": "FACE 5 RUE GEOFFROY SAINT HILAIRE - 75105", "stop_name": "SAINT-MARCEL - JEANNE D'ARC"}, "geometry": {"type": "Point", "coordinates": [2.3569970257346244, 48.83873312208706]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "61e3b8a1e23b4f65e7f96e23e9e0370ff6076516", "fields": {"departement": "75", "stop_lat": 48.856465597390816, "code_postal": "75104", "stop_lon": 2.356132091980676, "coord": [48.856465597390816, 2.356132091980676], "stop_id": 5454941, "stop_desc": "38 BIS RUE DE RIVOLI - 75104", "stop_name": "RUE VIEILLE DU TEMPLE - MAIRIE DU 4E"}, "geometry": {"type": "Point", "coordinates": [2.356132091980676, 48.856465597390816]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b01ee9c42d0acfa6452362b4cbd2426f1f433b68", "fields": {"departement": "92", "stop_lat": 48.776093317003124, "code_postal": "92019", "stop_lon": 2.278452631089123, "coord": [48.776093317003124, 2.278452631089123], "stop_id": 5478212, "stop_desc": "44 AVENUE EDOUARD DEPREUX - 92019", "stop_name": "EDOUARD DEPREUX - ROGER SALENGRO"}, "geometry": {"type": "Point", "coordinates": [2.278452631089123, 48.776093317003124]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "88d7d93faed35c1c31b54b7a8aecca96829a0e0e", "fields": {"departement": "92", "stop_lat": 48.768724332319636, "code_postal": "92019", "stop_lon": 2.2509676970806165, "coord": [48.768724332319636, 2.2509676970806165], "stop_id": 5478224, "stop_desc": "AVENUE DE LA DIVISION LECLERC - 92019", "stop_name": "CYRANO DE BERGERAC"}, "geometry": {"type": "Point", "coordinates": [2.2509676970806165, 48.768724332319636]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e991544a7acee1ae51b99e9d463edfebfe6b772d", "fields": {"departement": "92", "stop_lat": 48.78172665679126, "code_postal": "92060", "stop_lon": 2.2591335837638575, "coord": [48.78172665679126, 2.2591335837638575], "stop_id": 5478229, "stop_desc": "9 RUE PIERRE D'ARTAGNAN - 92060", "stop_name": "DANIEL DE FOE"}, "geometry": {"type": "Point", "coordinates": [2.2591335837638575, 48.78172665679126]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6353a5338f7f9a40e062c24932535c46d7581a60", "fields": {"departement": "94", "stop_lat": 48.825529348029235, "code_postal": "94018", "stop_lon": 2.407260928275537, "coord": [48.825529348029235, 2.407260928275537], "stop_id": 5478243, "stop_desc": "135 RUE DE PARIS - 94018", "stop_name": "LIBERTE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.407260928275537, 48.825529348029235]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e90519f8ae959e72c2b797e54034c6a06fcb18b2", "fields": {"departement": "94", "stop_lat": 48.822231640351454, "code_postal": "94069", "stop_lon": 2.4200645134930636, "coord": [48.822231640351454, 2.4200645134930636], "stop_id": 5478246, "stop_desc": "2 RUE VERDUN - 94069", "stop_name": "VERDUN"}, "geometry": {"type": "Point", "coordinates": [2.4200645134930636, 48.822231640351454]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5540574975d5d4f3790d6da69f2afefb9f9654b0", "fields": {"departement": "94", "stop_lat": 48.81804240272417, "code_postal": "94069", "stop_lon": 2.4333139614357617, "coord": [48.81804240272417, 2.4333139614357617], "stop_id": 5478252, "stop_desc": "44 RUE DU MARECHAL LECLERC - 94069", "stop_name": "PASSERELLE DE SAINT-MAURICE"}, "geometry": {"type": "Point", "coordinates": [2.4333139614357617, 48.81804240272417]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e57bcf6867d40b5a34281b926151d97fd4a55242", "fields": {"departement": "94", "stop_lat": 48.81477302407176, "code_postal": "94069", "stop_lon": 2.460267615019731, "coord": [48.81477302407176, 2.460267615019731], "stop_id": 5478258, "stop_desc": "FACE 3 RUE PAUL VERLAINE - 94069", "stop_name": "ECOLES DE GRAVELLE"}, "geometry": {"type": "Point", "coordinates": [2.460267615019731, 48.81477302407176]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9ed61e37c199b1ceecbe5cb465f6e4b7c4696d9f", "fields": {"departement": "94", "stop_lat": 48.81435751834528, "code_postal": "94069", "stop_lon": 2.4622535492272988, "coord": [48.81435751834528, 2.4622535492272988], "stop_id": 5478259, "stop_desc": "FACE 2 RUE MARECHAL LECLERC - 94069", "stop_name": "JOHN FITZGERALD KENNEDY"}, "geometry": {"type": "Point", "coordinates": [2.4622535492272988, 48.81435751834528]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "59947b502992ecd7ecf839ee5424aa6b0c085b5f", "fields": {"departement": "94", "stop_lat": 48.812726380577566, "code_postal": "94042", "stop_lon": 2.466332203413321, "coord": [48.812726380577566, 2.466332203413321], "stop_id": 5478260, "stop_desc": "8 RUE HENRI BARBUSSE - 94042", "stop_name": "VOISIN - REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.466332203413321, 48.812726380577566]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6908e141653d35f3bdf317b87b9c9dcd12cc3b55", "fields": {"departement": "94", "stop_lat": 48.80386787555055, "code_postal": "94068", "stop_lon": 2.4713308992074583, "coord": [48.80386787555055, 2.4713308992074583], "stop_id": 5478264, "stop_desc": "FACE 59 RUE DU PONT DE CRETEIL - 94068", "stop_name": "RUE DES REMISES"}, "geometry": {"type": "Point", "coordinates": [2.4713308992074583, 48.80386787555055]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c8a2cbb8020290a0dd56ff2065affad5635b5c1a", "fields": {"departement": "94", "stop_lat": 48.79911299769273, "code_postal": "94068", "stop_lon": 2.4716043270020815, "coord": [48.79911299769273, 2.4716043270020815], "stop_id": 5478266, "stop_desc": "4 BIS BOULEVARD DE CRETEIL - 94068", "stop_name": "PONT DE CRETEIL"}, "geometry": {"type": "Point", "coordinates": [2.4716043270020815, 48.79911299769273]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "883d64e100e9ec0f5436e6937c64bcb4fdb7f836", "fields": {"departement": "94", "stop_lat": 48.796663625497644, "code_postal": "94068", "stop_lon": 2.475679309587896, "coord": [48.796663625497644, 2.475679309587896], "stop_id": 5478267, "stop_desc": "32-34 BOULEVARD DU GENERAL GIRAUD - 94068", "stop_name": "BEAUJEU"}, "geometry": {"type": "Point", "coordinates": [2.475679309587896, 48.796663625497644]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ec3bc75c2d82166d9980d3d0a96c63a2549f8066", "fields": {"departement": "94", "stop_lat": 48.79137454136224, "code_postal": "94068", "stop_lon": 2.4792428043909154, "coord": [48.79137454136224, 2.4792428043909154], "stop_id": 5478269, "stop_desc": "34 AVENUE JEAN JAURES - 94068", "stop_name": "ARROMANCHES"}, "geometry": {"type": "Point", "coordinates": [2.4792428043909154, 48.79137454136224]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6522ef423ab325011dd0ded34f4187b52cc02db0", "fields": {"departement": "94", "stop_lat": 48.80093815541192, "code_postal": "94068", "stop_lon": 2.471051223419979, "coord": [48.80093815541192, 2.471051223419979], "stop_id": 5478319, "stop_desc": "RUE DU CHEMIN VERT - 94068", "stop_name": "CHEMIN VERT"}, "geometry": {"type": "Point", "coordinates": [2.471051223419979, 48.80093815541192]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cca7ef10e5c64d712e1021b28a124a38d702279f", "fields": {"departement": "94", "stop_lat": 48.79642046203381, "code_postal": "94068", "stop_lon": 2.476100395803062, "coord": [48.79642046203381, 2.476100395803062], "stop_id": 5478323, "stop_desc": "35 BOULEVARD DU GENERAL GIRAUD - 94068", "stop_name": "BEAUJEU"}, "geometry": {"type": "Point", "coordinates": [2.476100395803062, 48.79642046203381]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4c9873be4cf40b87b8ed2ff77f340d987c81f85b", "fields": {"departement": "94", "stop_lat": 48.794361222724945, "code_postal": "94068", "stop_lon": 2.4769655328437334, "coord": [48.794361222724945, 2.4769655328437334], "stop_id": 5478324, "stop_desc": "5 PLACE GALILEE - 94068", "stop_name": "GALILEE"}, "geometry": {"type": "Point", "coordinates": [2.4769655328437334, 48.794361222724945]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "75921fefbc77c4ccea0c9369797f35d29b4d7ee6", "fields": {"departement": "94", "stop_lat": 48.78580514257317, "code_postal": "94068", "stop_lon": 2.4911833490462474, "coord": [48.78580514257317, 2.4911833490462474], "stop_id": 5478331, "stop_desc": "72 AVENUE RASPAIL - 94068", "stop_name": "CORNEILLES"}, "geometry": {"type": "Point", "coordinates": [2.4911833490462474, 48.78580514257317]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5524514d54212712ff8e935c3a9fe09e57c2eb7e", "fields": {"departement": "94", "stop_lat": 48.78588192622703, "code_postal": "94068", "stop_lon": 2.4943255420261448, "coord": [48.78588192622703, 2.4943255420261448], "stop_id": 5478333, "stop_desc": "FACE 77 AVENUE RASPAIL - 94068", "stop_name": "ALMA"}, "geometry": {"type": "Point", "coordinates": [2.4943255420261448, 48.78588192622703]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b8262feadd1dcef00704e42ba57cec9af0d0451d", "fields": {"departement": "94", "stop_lat": 48.78619026960421, "code_postal": "94068", "stop_lon": 2.498978243620413, "coord": [48.78619026960421, 2.498978243620413], "stop_id": 5478335, "stop_desc": "118 TER AVENUE RASPAIL - 94068", "stop_name": "SORBIERS"}, "geometry": {"type": "Point", "coordinates": [2.498978243620413, 48.78619026960421]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0f649c8892ddd889ad7fcba3b76671bc39e5495d", "fields": {"departement": "94", "stop_lat": 48.78873680058078, "code_postal": "94068", "stop_lon": 2.503366124614136, "coord": [48.78873680058078, 2.503366124614136], "stop_id": 5478338, "stop_desc": "FACE 24 RUE CHEVALIER - 94068", "stop_name": "PLACE DE MOLENES"}, "geometry": {"type": "Point", "coordinates": [2.503366124614136, 48.78873680058078]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c126e9b8fb6611ff56a7af9343c1ebe41a121e57", "fields": {"departement": "94", "stop_lat": 48.80685442257188, "code_postal": "94068", "stop_lon": 2.5110168459959366, "coord": [48.80685442257188, 2.5110168459959366], "stop_id": 5478355, "stop_desc": "RUE ROCHAMBEAU - 94068", "stop_name": "CHAMPIGNY - SAINT-MAUR RER"}, "geometry": {"type": "Point", "coordinates": [2.5110168459959366, 48.80685442257188]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3f4fb0d2613464e3687a604ffeccd3dc1f32eb25", "fields": {"departement": "94", "stop_lat": 48.79298722732496, "code_postal": "94068", "stop_lon": 2.510276668842329, "coord": [48.79298722732496, 2.510276668842329], "stop_id": 5478358, "stop_desc": "FACE 23 AVENUE MICHELET - 94068", "stop_name": "AVENUE DES PILIERS"}, "geometry": {"type": "Point", "coordinates": [2.510276668842329, 48.79298722732496]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6bbb215721ce7619b5630edbd3d968ec4fd6fe2c", "fields": {"departement": "94", "stop_lat": 48.78988273218762, "code_postal": "94068", "stop_lon": 2.4864345150389475, "coord": [48.78988273218762, 2.4864345150389475], "stop_id": 5478360, "stop_desc": "129 BOULEVARD DU GENERAL GIRAUD - 94068", "stop_name": "GUYNEMER"}, "geometry": {"type": "Point", "coordinates": [2.4864345150389475, 48.78988273218762]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4fcdd98a00fee126c9c464a6e03edf159a750840", "fields": {"departement": "75", "stop_lat": 48.829860486645096, "code_postal": "75112", "stop_lon": 2.3918159182403222, "coord": [48.829860486645096, 2.3918159182403222], "stop_id": 5478367, "stop_desc": "20 BD PONIATOWSKI - 75112", "stop_name": "BARON LE ROY"}, "geometry": {"type": "Point", "coordinates": [2.3918159182403222, 48.829860486645096]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a407d7917f805660c66ec3924b28399154ae02f6", "fields": {"departement": "94", "stop_lat": 48.820958902132894, "code_postal": "94018", "stop_lon": 2.4148495637651513, "coord": [48.820958902132894, 2.4148495637651513], "stop_id": 5478377, "stop_desc": "FACE 3 RUE GABRIELLE - 94018", "stop_name": "RUE GABRIELLE"}, "geometry": {"type": "Point", "coordinates": [2.4148495637651513, 48.820958902132894]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "60f41b1361547cd0aff9a027aba4b8988ec64955", "fields": {"departement": "94", "stop_lat": 48.81795512775568, "code_postal": "94069", "stop_lon": 2.430033797229572, "coord": [48.81795512775568, 2.430033797229572], "stop_id": 5478384, "stop_desc": "FACE 57 RUE DU MARECHAL LECLERC - 94069", "stop_name": "HOPITAL ESQUIROL"}, "geometry": {"type": "Point", "coordinates": [2.430033797229572, 48.81795512775568]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0fbb80f14983ca3f609b6d5ff36c5ee6688f7641", "fields": {"departement": "94", "stop_lat": 48.81804496236758, "code_postal": "94069", "stop_lon": 2.4300883977837833, "coord": [48.81804496236758, 2.4300883977837833], "stop_id": 5478385, "stop_desc": "57 RUE DU MARECHAL LECLERC - 94069", "stop_name": "HOPITAL ESQUIROL"}, "geometry": {"type": "Point", "coordinates": [2.4300883977837833, 48.81804496236758]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b51e6b11e012576b7ce3fbeaf314a4a4da09f52b", "fields": {"departement": "94", "stop_lat": 48.817943764417215, "code_postal": "94069", "stop_lon": 2.4436165247676946, "coord": [48.817943764417215, 2.4436165247676946], "stop_id": 5478391, "stop_desc": "FACE 130 RUE DU MARECHAL LECLERC - 94069", "stop_name": "PASSERELLE DE CHARENTONNEAU"}, "geometry": {"type": "Point", "coordinates": [2.4436165247676946, 48.817943764417215]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d7b3c1f054c170188fa5363bbe392bea1713f733", "fields": {"departement": "94", "stop_lat": 48.81838475693689, "code_postal": "94069", "stop_lon": 2.4202761371458252, "coord": [48.81838475693689, 2.4202761371458252], "stop_id": 5478400, "stop_desc": "5 RUE DU MARECHAL LECLERC - 94069", "stop_name": "PONT DE CHARENTON"}, "geometry": {"type": "Point", "coordinates": [2.4202761371458252, 48.81838475693689]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7faf3893131365b94ac1dfabe5349f0942f7c6ef", "fields": {"departement": "94", "stop_lat": 48.82184523642489, "code_postal": "94069", "stop_lon": 2.4199686200390875, "coord": [48.82184523642489, 2.4199686200390875], "stop_id": 5478401, "stop_desc": "50 AVENUE DU MARECHAL DE LATTRE DE TASSIGNY - 94069", "stop_name": "EDMOND NOCARD"}, "geometry": {"type": "Point", "coordinates": [2.4199686200390875, 48.82184523642489]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6ee1cc638570f0698476be6df865addabb786d4e", "fields": {"departement": "75", "stop_lat": 48.834624381639394, "code_postal": "75112", "stop_lon": 2.4441544489796994, "coord": [48.834624381639394, 2.4441544489796994], "stop_id": 5478411, "stop_desc": "ROUTE DE LA PYRAMIDE - 75112", "stop_name": "PLAINE DE LA FALUERE"}, "geometry": {"type": "Point", "coordinates": [2.4441544489796994, 48.834624381639394]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "898ddacb52669c0c958e85408197d94ec6a1171b", "fields": {"departement": "75", "stop_lat": 48.83421701207519, "code_postal": "75112", "stop_lon": 2.4473665699162366, "coord": [48.83421701207519, 2.4473665699162366], "stop_id": 5478412, "stop_desc": "ROUTE DU CHAMP DE MANOEUVRE - 75112", "stop_name": "CARTOUCHERIE"}, "geometry": {"type": "Point", "coordinates": [2.4473665699162366, 48.83421701207519]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1c198f1e7bc50193ef1db30d3974a66c412942b2", "fields": {"departement": "75", "stop_lat": 48.83283327502617, "code_postal": "75112", "stop_lon": 2.456335178220005, "coord": [48.83283327502617, 2.456335178220005], "stop_id": 5478416, "stop_desc": "AVENUE DU TREMBLAY - 75112", "stop_name": "INSEP"}, "geometry": {"type": "Point", "coordinates": [2.456335178220005, 48.83283327502617]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3e91466789770f4fb36f0bce976e188ca43b7527", "fields": {"departement": "75", "stop_lat": 48.82961975338726, "code_postal": "75112", "stop_lon": 2.461174044445433, "coord": [48.82961975338726, 2.461174044445433], "stop_id": 5478418, "stop_desc": "AVENUE DU TREMBLAY - 75112", "stop_name": "MORTEMART"}, "geometry": {"type": "Point", "coordinates": [2.461174044445433, 48.82961975338726]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bf194ab099587e75489a32a5fe627828b51cf665", "fields": {"departement": "75", "stop_lat": 48.82960130968597, "code_postal": "75112", "stop_lon": 2.4616232304339936, "coord": [48.82960130968597, 2.4616232304339936], "stop_id": 5478419, "stop_desc": "AVENUE DU TREMBLAY - 75112", "stop_name": "MORTEMART"}, "geometry": {"type": "Point", "coordinates": [2.4616232304339936, 48.82960130968597]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a4f58eb7daf7f1f7d9806c17a181193c47f6efd5", "fields": {"departement": "94", "stop_lat": 48.817139396576785, "code_postal": "94042", "stop_lon": 2.466302348502789, "coord": [48.817139396576785, 2.466302348502789], "stop_id": 5478425, "stop_desc": "0 RUE HIPPOLYTE PINSON - 94042", "stop_name": "EUGENE VOISIN - MARCHE"}, "geometry": {"type": "Point", "coordinates": [2.466302348502789, 48.817139396576785]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0507ec3ba6ebf23eb97b425ac0cfd662d2235d68", "fields": {"departement": "94", "stop_lat": 48.80686116187773, "code_postal": "94068", "stop_lon": 2.4710256670182504, "coord": [48.80686116187773, 2.4710256670182504], "stop_id": 5478432, "stop_desc": "14 RUE DU PONT DE CRETEIL - 94068", "stop_name": "SAINT-MAUR - CRETEIL RER"}, "geometry": {"type": "Point", "coordinates": [2.4710256670182504, 48.80686116187773]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8b35b3d9ae3287b52f0975cfffe50a3f844dc379", "fields": {"departement": "94", "stop_lat": 48.80679780315122, "code_postal": "94068", "stop_lon": 2.4714201083472345, "coord": [48.80679780315122, 2.4714201083472345], "stop_id": 5478433, "stop_desc": "37 RUE DU PONT DE CRETEIL - 94068", "stop_name": "SAINT-MAUR - CRETEIL RER"}, "geometry": {"type": "Point", "coordinates": [2.4714201083472345, 48.80679780315122]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5c33426149912439816502e1e8a30560ffe7d3e4", "fields": {"departement": "94", "stop_lat": 48.79828630588296, "code_postal": "94068", "stop_lon": 2.479180075806201, "coord": [48.79828630588296, 2.479180075806201], "stop_id": 5478440, "stop_desc": "45 BOULEVARD DE CRETEIL - 94068", "stop_name": "BEAUJEU"}, "geometry": {"type": "Point", "coordinates": [2.479180075806201, 48.79828630588296]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "adecae15c92d122bcf2711ae92e54241c4319d2e", "fields": {"departement": "94", "stop_lat": 48.79580912375039, "code_postal": "94068", "stop_lon": 2.483730704958691, "coord": [48.79580912375039, 2.483730704958691], "stop_id": 5478442, "stop_desc": "1 PLACE GARIBALDI - 94068", "stop_name": "GARIBALDI"}, "geometry": {"type": "Point", "coordinates": [2.483730704958691, 48.79580912375039]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "633297be0a5f7fb873e3fea8b7e01aacd9dd5a98", "fields": {"departement": "94", "stop_lat": 48.79372300399782, "code_postal": "94068", "stop_lon": 2.491574117389262, "coord": [48.79372300399782, 2.491574117389262], "stop_id": 5478445, "stop_desc": "76 BOULEVARD DE BELLECHASSE - 94068", "stop_name": "DOCTEUR ROUX"}, "geometry": {"type": "Point", "coordinates": [2.491574117389262, 48.79372300399782]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e557cd5f7337fbe0b4eb3fd0a52f3a7b05e2660c", "fields": {"departement": "94", "stop_lat": 48.79383963441083, "code_postal": "94068", "stop_lon": 2.4917377079750924, "coord": [48.79383963441083, 2.4917377079750924], "stop_id": 5478446, "stop_desc": "71 BOULEVARD DE BELLECHASSE - 94068", "stop_name": "DOCTEUR ROUX"}, "geometry": {"type": "Point", "coordinates": [2.4917377079750924, 48.79383963441083]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3add74cf8472218d58e2c2298423aecf88686d98", "fields": {"departement": "94", "stop_lat": 48.79390725277281, "code_postal": "94068", "stop_lon": 2.495002793316519, "coord": [48.79390725277281, 2.495002793316519], "stop_id": 5478448, "stop_desc": "107 BOULEVARD DE BELLECHASSE - 94068", "stop_name": "PLACE RIMINI"}, "geometry": {"type": "Point", "coordinates": [2.495002793316519, 48.79390725277281]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b51b9d04c633f60b7ab5a3016b36ffb6b747214f", "fields": {"departement": "94", "stop_lat": 48.794877640222786, "code_postal": "94068", "stop_lon": 2.5143777551591184, "coord": [48.794877640222786, 2.5143777551591184], "stop_id": 5478457, "stop_desc": "3 AVENUE DU MESNIL - 94068", "stop_name": "LA VARENNE - CHENNEVIERES RER"}, "geometry": {"type": "Point", "coordinates": [2.5143777551591184, 48.794877640222786]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "88d405dad400f8e9ee2074850521876135a3fba1", "fields": {"departement": "95", "stop_lat": 48.9781714787488, "code_postal": "95585", "stop_lon": 2.376122222505324, "coord": [48.9781714787488, 2.376122222505324], "stop_id": 5478490, "stop_desc": "9 BOULEVARD HENRI POINCARE - 95585", "stop_name": "FORUM DES CHOLETTES"}, "geometry": {"type": "Point", "coordinates": [2.376122222505324, 48.9781714787488]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fd4b981cf19b937b3f4245e1b98798f07456615e", "fields": {"departement": "95", "stop_lat": 48.98032024507773, "code_postal": "95585", "stop_lon": 2.372956417001388, "coord": [48.98032024507773, 2.372956417001388], "stop_id": 5478492, "stop_desc": "75 AVENUE PAUL VALERY - 95585", "stop_name": "LOUIS LEBRUN"}, "geometry": {"type": "Point", "coordinates": [2.372956417001388, 48.98032024507773]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "59ee9f84253b9bdcc38ad58c0a7e2721d0b7a90e", "fields": {"departement": "93", "stop_lat": 48.925485308609375, "code_postal": "93027", "stop_lon": 2.3914529541350937, "coord": [48.925485308609375, 2.3914529541350937], "stop_id": 5504095, "stop_desc": "AVENUE VICTOR HUGO - 93027", "stop_name": "MECANO"}, "geometry": {"type": "Point", "coordinates": [2.3914529541350937, 48.925485308609375]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3e8548f2e0f7d38b242db014ce88bfe483b8f295", "fields": {"departement": "92", "stop_lat": 48.820933480042825, "code_postal": "92040", "stop_lon": 2.277966288225501, "coord": [48.820933480042825, 2.277966288225501], "stop_id": 5545778, "stop_desc": "RUE JULES GUESDE - 92040", "stop_name": "CHEVALIER DE LA BARRE"}, "geometry": {"type": "Point", "coordinates": [2.277966288225501, 48.820933480042825]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aa5194540d97be66543f9b2e7bac1af708726afc", "fields": {"departement": "92", "stop_lat": 48.835800241114036, "code_postal": "92012", "stop_lon": 2.23902502422197, "coord": [48.835800241114036, 2.23902502422197], "stop_id": 5549448, "stop_desc": "AVENUE ANDRE MORIZET - 92012", "stop_name": "HOTEL DE VILLE DE BOULOGNE-BILLANCOURT"}, "geometry": {"type": "Point", "coordinates": [2.23902502422197, 48.835800241114036]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b79939f4122f4bbbfd744800b7fc478ad31d79eb", "fields": {"departement": "92", "stop_lat": 48.8368818339282, "code_postal": "92012", "stop_lon": 2.242835158202796, "coord": [48.8368818339282, 2.242835158202796], "stop_id": 5549517, "stop_desc": "93-95 RUE GALLIENI - 92012", "stop_name": "GALLIENI - BELLE FEUILLE"}, "geometry": {"type": "Point", "coordinates": [2.242835158202796, 48.8368818339282]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e6a584cdc0f0f2b31c163f900fb2baff9e7a12e1", "fields": {"departement": "92", "stop_lat": 48.834200230116856, "code_postal": "92012", "stop_lon": 2.250300635653518, "coord": [48.834200230116856, 2.250300635653518], "stop_id": 5549520, "stop_desc": "86-90 RUE THIERS - 92012", "stop_name": "THIERS - MAISON DU COMBATTANT"}, "geometry": {"type": "Point", "coordinates": [2.250300635653518, 48.834200230116856]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "14a56cb7669abf82af8a801fe99fd394d6b035c3", "fields": {"departement": "92", "stop_lat": 48.84740716136117, "code_postal": "92012", "stop_lon": 2.233147435434065, "coord": [48.84740716136117, 2.233147435434065], "stop_id": 5549551, "stop_desc": "FACE 13 RUE DE L'ABREUVOIR - 92012", "stop_name": "PARC DE BOULOGNE - EDMOND DE ROTHSCHILD"}, "geometry": {"type": "Point", "coordinates": [2.233147435434065, 48.84740716136117]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2d535082d7c04c0ec38960facbdb3e3f37c1b1bb", "fields": {"departement": "92", "stop_lat": 48.84460168149665, "code_postal": "92012", "stop_lon": 2.23158711476295, "coord": [48.84460168149665, 2.23158711476295], "stop_id": 5549553, "stop_desc": "25 RUE SAINT-DENISN - 92012", "stop_name": "SAINT-DENIS - ANNA JACQUIN"}, "geometry": {"type": "Point", "coordinates": [2.23158711476295, 48.84460168149665]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "19d2b9af5ede671da4166d4d71b2c96bea4b84e8", "fields": {"departement": "92", "stop_lat": 48.829985724372506, "code_postal": "92012", "stop_lon": 2.2395941688461223, "coord": [48.829985724372506, 2.2395941688461223], "stop_id": 5549563, "stop_desc": "FACE 93 RUE NATIONALE - 92012", "stop_name": "PLACE BIR-HAKEIM"}, "geometry": {"type": "Point", "coordinates": [2.2395941688461223, 48.829985724372506]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b7a96785c991c20acc726049e28533bf130fbb7d", "fields": {"departement": "95", "stop_lat": 48.97982763493602, "code_postal": "95585", "stop_lon": 2.3922744246408945, "coord": [48.97982763493602, 2.3922744246408945], "stop_id": 5559264, "stop_desc": "3 AVENUE DU MARECHAL PIERRE KOENIG - 95585", "stop_name": "ECOLE JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.3922744246408945, 48.97982763493602]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e29b1f0208d2e61b9ed6d9b230e1749bd7e0f365", "fields": {"departement": "95", "stop_lat": 48.972950481901165, "code_postal": "95585", "stop_lon": 2.375544970099841, "coord": [48.972950481901165, 2.375544970099841], "stop_id": 5582576, "stop_desc": "AVENUE CESAR FRANCK - 95585", "stop_name": "RAOUL DUFY"}, "geometry": {"type": "Point", "coordinates": [2.375544970099841, 48.972950481901165]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "17a59c606c2e3cd3c24948485781d8f5df55a391", "fields": {"departement": "93", "stop_lat": 48.91328474196549, "code_postal": "93008", "stop_lon": 2.416828575050586, "coord": [48.91328474196549, 2.416828575050586], "stop_id": 5605609, "stop_desc": "1 RUE BALZAC - 93008", "stop_name": "LES COURTILLIERES"}, "geometry": {"type": "Point", "coordinates": [2.416828575050586, 48.91328474196549]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "94127c892648fbf44f284adfdb9e249a2348d0bc", "fields": {"departement": "93", "stop_lat": 48.91533241655837, "code_postal": "93029", "stop_lon": 2.4310672352554477, "coord": [48.91533241655837, 2.4310672352554477], "stop_id": 5605619, "stop_desc": "24 RUE RAYMOND BARKER - 93029", "stop_name": "CARREFOUR REPIQUET"}, "geometry": {"type": "Point", "coordinates": [2.4310672352554477, 48.91533241655837]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "61507a668ed257bdf7c612f3e7ac69d31ecc1d83", "fields": {"departement": "93", "stop_lat": 48.92144031506802, "code_postal": "93029", "stop_lon": 2.454997880913197, "coord": [48.92144031506802, 2.454997880913197], "stop_id": 5605634, "stop_desc": "168 AVENUE HENRI BARBUSSE - 93029", "stop_name": "AUGUSTE BLANQUI"}, "geometry": {"type": "Point", "coordinates": [2.454997880913197, 48.92144031506802]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "32eb474ee35e4c3df564732c9a00ed7d154e5cd9", "fields": {"departement": "93", "stop_lat": 48.92114485792039, "code_postal": "93029", "stop_lon": 2.4538653310183443, "coord": [48.92114485792039, 2.4538653310183443], "stop_id": 5605635, "stop_desc": "177 BIS AVENUE HENRI BARBUSSE - 93029", "stop_name": "AUGUSTE BLANQUI"}, "geometry": {"type": "Point", "coordinates": [2.4538653310183443, 48.92114485792039]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "567e1b0cf001c61d74325eb44534360ce9f2b58c", "fields": {"departement": "93", "stop_lat": 48.92265178851074, "code_postal": "93029", "stop_lon": 2.4567735079056705, "coord": [48.92265178851074, 2.4567735079056705], "stop_id": 5605637, "stop_desc": "219 AVENUE HENRI BARBUSSE - 93029", "stop_name": "BARBUSSE - CROIZAT"}, "geometry": {"type": "Point", "coordinates": [2.4567735079056705, 48.92265178851074]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a62ed985d5c606e4190c036d5b520c30f78c96b5", "fields": {"departement": "93", "stop_lat": 48.93115337124984, "code_postal": "93029", "stop_lon": 2.4568204083253646, "coord": [48.93115337124984, 2.4568204083253646], "stop_id": 5605641, "stop_desc": "RUE MAURICE BERNARD - 93029", "stop_name": "PLACE JOFFRE"}, "geometry": {"type": "Point", "coordinates": [2.4568204083253646, 48.93115337124984]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4281019bd3ccb965b57c93fa94e30c6786aed724", "fields": {"departement": "93", "stop_lat": 48.921442214254355, "code_postal": "93029", "stop_lon": 2.432769309114845, "coord": [48.921442214254355, 2.432769309114845], "stop_id": 5605647, "stop_desc": "FACE 63 R FAIDHERBE - 93029", "stop_name": "FAIDHERBE - DANTON"}, "geometry": {"type": "Point", "coordinates": [2.432769309114845, 48.921442214254355]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "65a47a8b09e1412733c58e47ae10269952c1ebfc", "fields": {"departement": "93", "stop_lat": 48.91739056488388, "code_postal": "93029", "stop_lon": 2.430907329514141, "coord": [48.91739056488388, 2.430907329514141], "stop_id": 5605648, "stop_desc": "134 R FAIDHERBE - 93029", "stop_name": "FAIDHERBE - BIZE"}, "geometry": {"type": "Point", "coordinates": [2.430907329514141, 48.91739056488388]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9ab5a4c82458438917c805b2fc51267637437cb9", "fields": {"departement": "92", "stop_lat": 48.88529645972229, "code_postal": "92050", "stop_lon": 2.2218148964062006, "coord": [48.88529645972229, 2.2218148964062006], "stop_id": 5653499, "stop_desc": "FACE 285 AVENUE GEORGES CLEMENCEAU - 92050", "stop_name": "CRAIOVA"}, "geometry": {"type": "Point", "coordinates": [2.2218148964062006, 48.88529645972229]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f40bf688e4fad6b919bcf8778e22b28e058bd946", "fields": {"departement": "75", "stop_lat": 48.875070457405144, "code_postal": "75108", "stop_lon": 2.3265182190657376, "coord": [48.875070457405144, 2.3265182190657376], "stop_id": 5657268, "stop_desc": "3 RUE INTERIEURE - 75108", "stop_name": "GARE SAINT-LAZARE"}, "geometry": {"type": "Point", "coordinates": [2.3265182190657376, 48.875070457405144]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f0989e472fac5d0619f5cfb4570ce4a0b784b7e1", "fields": {"departement": "75", "stop_lat": 48.87622131126687, "code_postal": "75109", "stop_lon": 2.3363690403507302, "coord": [48.87622131126687, 2.3363690403507302], "stop_id": 5657272, "stop_desc": "36 RUE DE CHATEAUDUN - 75109", "stop_name": "SAINT-GEORGES - CHATEAUDUN"}, "geometry": {"type": "Point", "coordinates": [2.3363690403507302, 48.87622131126687]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6a631b645836f37301ef4e1a362777ecbceedf57", "fields": {"departement": "75", "stop_lat": 48.87561905816125, "code_postal": "75109", "stop_lon": 2.342323218012916, "coord": [48.87561905816125, 2.342323218012916], "stop_id": 5657275, "stop_desc": "1 RUE DE CHATEAUDUN - 75109", "stop_name": "CADET"}, "geometry": {"type": "Point", "coordinates": [2.342323218012916, 48.87561905816125]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8c5e986c9247eeb94e619deb098570efa75efdf2", "fields": {"departement": "75", "stop_lat": 48.87905074959519, "code_postal": "75110", "stop_lon": 2.356521844707956, "coord": [48.87905074959519, 2.356521844707956], "stop_id": 5657278, "stop_desc": "FACE 147 RUE LA FAYETTE - 75110", "stop_name": "LA FAYETTE - SAINT QUENTIN - GARE DU NORD"}, "geometry": {"type": "Point", "coordinates": [2.356521844707956, 48.87905074959519]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d6be700fc4d1b2e332be3a2738d4eab7824b8c09", "fields": {"departement": "75", "stop_lat": 48.87959876119247, "code_postal": "75110", "stop_lon": 2.3577892797369544, "coord": [48.87959876119247, 2.3577892797369544], "stop_id": 5657280, "stop_desc": "FACE 166 RUE LA FAYETTE - 75110", "stop_name": "LA FAYETTE - DUNKERQUE"}, "geometry": {"type": "Point", "coordinates": [2.3577892797369544, 48.87959876119247]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b6277d1f4672793d0afeeb113db02c19a46c8265", "fields": {"departement": "75", "stop_lat": 48.876385758562954, "code_postal": "75119", "stop_lon": 2.3760459083941936, "coord": [48.876385758562954, 2.3760459083941936], "stop_id": 5657291, "stop_desc": "68 AVENUE SIMON BOLIVAR - 75119", "stop_name": "ATLAS"}, "geometry": {"type": "Point", "coordinates": [2.3760459083941936, 48.876385758562954]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "be4243c5e7d3105d872955687b85cd0d30b7649d", "fields": {"departement": "75", "stop_lat": 48.876150406251725, "code_postal": "75119", "stop_lon": 2.3809099424584814, "coord": [48.876150406251725, 2.3809099424584814], "stop_id": 5657293, "stop_desc": "FACE 43BIS AVENUE SIMON BOLIVAR - 75119", "stop_name": "BOTZARIS - BUTTES CHAUMONT"}, "geometry": {"type": "Point", "coordinates": [2.3809099424584814, 48.876150406251725]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "35763d3dfcfd88554613e869ea07815a99e3ff62", "fields": {"departement": "75", "stop_lat": 48.86528621644533, "code_postal": "75120", "stop_lon": 2.3980105115961146, "coord": [48.86528621644533, 2.3980105115961146], "stop_id": 5657302, "stop_desc": "241 RUE DES PYRENEES - 75120", "stop_name": "GAMBETTA - MAIRIE DU 20E"}, "geometry": {"type": "Point", "coordinates": [2.3980105115961146, 48.86528621644533]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "487f4de6bb14d9854e2865ed2f5315f11c6b7a76", "fields": {"departement": "75", "stop_lat": 48.85883098235677, "code_postal": "75120", "stop_lon": 2.4023343288357757, "coord": [48.85883098235677, 2.4023343288357757], "stop_id": 5657306, "stop_desc": "145 RUE DES PYRENEES - 75120", "stop_name": "PYRENEES - BAGNOLET"}, "geometry": {"type": "Point", "coordinates": [2.4023343288357757, 48.85883098235677]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cb0d97a14c9a3cad5ae7493767e3d458736457d1", "fields": {"departement": "75", "stop_lat": 48.85898367896563, "code_postal": "75120", "stop_lon": 2.402497969229797, "coord": [48.85898367896563, 2.402497969229797], "stop_id": 5657307, "stop_desc": "144-148 RUE DES PYRENEES - 75120", "stop_name": "PYRENEES - BAGNOLET"}, "geometry": {"type": "Point", "coordinates": [2.402497969229797, 48.85898367896563]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f6c3a2736246db538f8d17659ffe1af17a2321b5", "fields": {"departement": "75", "stop_lat": 48.85220514342427, "code_postal": "75120", "stop_lon": 2.4060576079126568, "coord": [48.85220514342427, 2.4060576079126568], "stop_id": 5657310, "stop_desc": "61 RUE DES PYRENEES - 75120", "stop_name": "MARAICHERS"}, "geometry": {"type": "Point", "coordinates": [2.4060576079126568, 48.85220514342427]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "91a82bf319627b780a4dcd33f18c6c2e4c97ac06", "fields": {"departement": "75", "stop_lat": 48.84787500756238, "code_postal": "75120", "stop_lon": 2.402810824531941, "coord": [48.84787500756238, 2.402810824531941], "stop_id": 5657316, "stop_desc": "39 COURS DE VINCENNES - 75120", "stop_name": "MARSOULAN"}, "geometry": {"type": "Point", "coordinates": [2.402810824531941, 48.84787500756238]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c5165a1f0f6e4dad656e3647134ac8fd11ba087f", "fields": {"departement": "75", "stop_lat": 48.84804889034139, "code_postal": "75112", "stop_lon": 2.396873657460073, "coord": [48.84804889034139, 2.396873657460073], "stop_id": 5657319, "stop_desc": "30 PLACE DE LA NATION - 75112", "stop_name": "NATION - PLACE DES ANTILLES"}, "geometry": {"type": "Point", "coordinates": [2.396873657460073, 48.84804889034139]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "72a21a7fb378631ff2e82d6aad3534a7d86530f4", "fields": {"departement": "75", "stop_lat": 48.874018903927755, "code_postal": "75119", "stop_lon": 2.384859304503551, "coord": [48.874018903927755, 2.384859304503551], "stop_id": 5657321, "stop_desc": "6-8 AVENUE SIMON BOLIVAR - 75119", "stop_name": "PYRENEES - BELLEVILLE"}, "geometry": {"type": "Point", "coordinates": [2.384859304503551, 48.874018903927755]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a537982b3ed21c65063d88fda4b204ba7e9d37f9", "fields": {"departement": "75", "stop_lat": 48.87933042390682, "code_postal": "75109", "stop_lon": 2.3480465314325087, "coord": [48.87933042390682, 2.3480465314325087], "stop_id": 5657325, "stop_desc": "59 RUE DE MAUBEUGE - 75109", "stop_name": "CONDORCET"}, "geometry": {"type": "Point", "coordinates": [2.3480465314325087, 48.87933042390682]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a60034bb0c61ebb65aa7dc90628abf4ed53e899e", "fields": {"departement": "75", "stop_lat": 48.87824322907468, "code_postal": "75109", "stop_lon": 2.3445581036681564, "coord": [48.87824322907468, 2.3445581036681564], "stop_id": 5657326, "stop_desc": "29 RUE DE MAUBEUGE - 75109", "stop_name": "MAUBEUGE - ROCHECHOUART"}, "geometry": {"type": "Point", "coordinates": [2.3445581036681564, 48.87824322907468]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0a67b0a3f0e94548af7a31577bf3bf1b2c067076", "fields": {"departement": "94", "stop_lat": 48.755047255175974, "code_postal": "94022", "stop_lon": 2.4195360566907587, "coord": [48.755047255175974, 2.4195360566907587], "stop_id": 5673010, "stop_desc": "5-7 RUE EDOUARD BRANLY - 94022", "stop_name": "C.T.M."}, "geometry": {"type": "Point", "coordinates": [2.4195360566907587, 48.755047255175974]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7d37443206f20e6c79444b63a0e43d492d52baaa", "fields": {"departement": "94", "stop_lat": 48.75869121513839, "code_postal": "94022", "stop_lon": 2.413913726281213, "coord": [48.75869121513839, 2.413913726281213], "stop_id": 5673012, "stop_desc": "AVENUE RONDU - 94022", "stop_name": "CHARLES JULES VAILLANT"}, "geometry": {"type": "Point", "coordinates": [2.413913726281213, 48.75869121513839]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5a65c34bd8c809beeff727e6670dd4f5f841c7ed", "fields": {"departement": "94", "stop_lat": 48.75238011937365, "code_postal": "94022", "stop_lon": 2.41606567141663, "coord": [48.75238011937365, 2.41606567141663], "stop_id": 5673014, "stop_desc": "FACE 1 RUE VASCO DE GAMA - 94022", "stop_name": "EGLISE SAINT-MARTIN"}, "geometry": {"type": "Point", "coordinates": [2.41606567141663, 48.75238011937365]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "04ab3126e052a86ea6c11461be490cde825598a7", "fields": {"departement": "94", "stop_lat": 48.754147306278135, "code_postal": "94022", "stop_lon": 2.4072735148891224, "coord": [48.754147306278135, 2.4072735148891224], "stop_id": 5673017, "stop_desc": "70 RUE DU FOUR - 94022", "stop_name": "RUE DU FOUR"}, "geometry": {"type": "Point", "coordinates": [2.4072735148891224, 48.754147306278135]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a167f346098983a880adc178a016b07d288d634e", "fields": {"departement": "94", "stop_lat": 48.762623370469974, "code_postal": "94022", "stop_lon": 2.406849881655046, "coord": [48.762623370469974, 2.406849881655046], "stop_id": 5673021, "stop_desc": "FACE 28 AVENUE LEON GOURDAULT - 94022", "stop_name": "MAIRIE DE CHOISY-LE-ROI"}, "geometry": {"type": "Point", "coordinates": [2.406849881655046, 48.762623370469974]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1ab81417757cb2a624ada4d0bb6bb5dcce315d9b", "fields": {"departement": "94", "stop_lat": 48.76780986749525, "code_postal": "94022", "stop_lon": 2.406217778152439, "coord": [48.76780986749525, 2.406217778152439], "stop_id": 5673024, "stop_desc": "31 RUE EMILE ZOLA - 94022", "stop_name": "EMILE ZOLA"}, "geometry": {"type": "Point", "coordinates": [2.406217778152439, 48.76780986749525]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8d905952988b78dc806dbeddbda460335c8302fa", "fields": {"departement": "94", "stop_lat": 48.76750182894009, "code_postal": "94022", "stop_lon": 2.410309990732507, "coord": [48.76750182894009, 2.410309990732507], "stop_id": 5673029, "stop_desc": "AVENUE DU 8 MAI 1945 - 94022", "stop_name": "CLEMENCEAU"}, "geometry": {"type": "Point", "coordinates": [2.410309990732507, 48.76750182894009]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "824dec683cf9966be4144497ce914fc9123e04b9", "fields": {"departement": "94", "stop_lat": 48.7628811733168, "code_postal": "94022", "stop_lon": 2.424769150300762, "coord": [48.7628811733168, 2.424769150300762], "stop_id": 5673034, "stop_desc": "60 AVENUE HENRI CORVOL - 94022", "stop_name": "PARC PAYSAGER DES GONDOLES"}, "geometry": {"type": "Point", "coordinates": [2.424769150300762, 48.7628811733168]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "058d37b1147e7943a6e1b501ed0368cb6087e3cc", "fields": {"departement": "94", "stop_lat": 48.76594750621226, "code_postal": "94022", "stop_lon": 2.4093016758851458, "coord": [48.76594750621226, 2.4093016758851458], "stop_id": 5673038, "stop_desc": "AVENUE PABLO PICASSO - 94022", "stop_name": "CHOISY-LE-ROI RER.."}, "geometry": {"type": "Point", "coordinates": [2.4093016758851458, 48.76594750621226]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0630a7276f155a6f1cf60f18b0a563294d091020", "fields": {"departement": "94", "stop_lat": 48.772818752265856, "code_postal": "94011", "stop_lon": 2.4901929991783653, "coord": [48.772818752265856, 2.4901929991783653], "stop_id": 5675603, "stop_desc": "AVENUE RHIN ET DANUBE-PREMIERE ARMEE FRANCAISE - 94011", "stop_name": "RHIN ET DANUBE"}, "geometry": {"type": "Point", "coordinates": [2.4901929991783653, 48.772818752265856]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "39c4a3957c98ba9d5e4ae33863fdbc689115dc71", "fields": {"departement": "75", "stop_lat": 48.87698169601442, "code_postal": "75110", "stop_lon": 2.366290527508591, "coord": [48.87698169601442, 2.366290527508591], "stop_id": 3747914, "stop_desc": "19 RUE DES ECLUSES SAINT-MARTIN - 75110", "stop_name": "CANAL SAINT-MARTIN"}, "geometry": {"type": "Point", "coordinates": [2.366290527508591, 48.87698169601442]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "84491dbac76cf4fad2b060a5e2baea831588abdb", "fields": {"departement": "75", "stop_lat": 48.87246014976294, "code_postal": "75110", "stop_lon": 2.3698984262295637, "coord": [48.87246014976294, 2.3698984262295637], "stop_id": 3747918, "stop_desc": "6 AVENUE CLAUDE VELLEFAUX - 75110", "stop_name": "HOPITAL SAINT-LOUIS"}, "geometry": {"type": "Point", "coordinates": [2.3698984262295637, 48.87246014976294]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5acdf207ca1b2b141acfeb4f162fb6996f7d4d2e", "fields": {"departement": "75", "stop_lat": 48.83974547020667, "code_postal": "75112", "stop_lon": 2.3947264537351547, "coord": [48.83974547020667, 2.3947264537351547], "stop_id": 3747848, "stop_desc": "172 AVENUE DAUMESNIL - 75112", "stop_name": "DAUMESNIL - FELIX EBOUE"}, "geometry": {"type": "Point", "coordinates": [2.3947264537351547, 48.83974547020667]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c97161a3c3314fdbd918783e6c53d0b9c213f1e0", "fields": {"departement": "75", "stop_lat": 48.856022593043754, "code_postal": "75111", "stop_lon": 2.368566944738585, "coord": [48.856022593043754, 2.368566944738585], "stop_id": 3747870, "stop_desc": "32 BOULEVARD BEAUMARCHAIS - 75111", "stop_name": "PASTEUR - WAGNER"}, "geometry": {"type": "Point", "coordinates": [2.368566944738585, 48.856022593043754]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "69c5c789bac1bad38dcfd79c33fbd4019634d26e", "fields": {"departement": "75", "stop_lat": 48.84958214338538, "code_postal": "75112", "stop_lon": 2.384932204803839, "coord": [48.84958214338538, 2.384932204803839], "stop_id": 3747934, "stop_desc": "12 RUE DE REUILLY - 75112", "stop_name": "FAIDHERBE - CHALIGNY"}, "geometry": {"type": "Point", "coordinates": [2.384932204803839, 48.84958214338538]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c8030efa63deac8b2264b13781b551876a3afce2", "fields": {"departement": "75", "stop_lat": 48.86224837842613, "code_postal": "75111", "stop_lon": 2.376934357530956, "coord": [48.86224837842613, 2.376934357530956], "stop_id": 3747926, "stop_desc": "52 AVENUE PARMENTIER - 75111", "stop_name": "SAINT-AMBROISE"}, "geometry": {"type": "Point", "coordinates": [2.376934357530956, 48.86224837842613]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2fe4f6ef71d5f60dd4f0b77cf36d63b08658f84e", "fields": {"departement": "75", "stop_lat": 48.844801183409494, "code_postal": "75112", "stop_lon": 2.4029839611504027, "coord": [48.844801183409494, 2.4029839611504027], "stop_id": 3747858, "stop_desc": "56 AVENUE DE SAINT-MANDE - 75112", "stop_name": "PICPUS"}, "geometry": {"type": "Point", "coordinates": [2.4029839611504027, 48.844801183409494]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1971f3f6c248f41709872dd0ea1d89bce65ccd5a", "fields": {"departement": "75", "stop_lat": 48.8696018221402, "code_postal": "75111", "stop_lon": 2.3711772372329496, "coord": [48.8696018221402, 2.3711772372329496], "stop_id": 3747920, "stop_desc": "135 AVENUE PARMENTIER - 75111", "stop_name": "GONCOURT"}, "geometry": {"type": "Point", "coordinates": [2.3711772372329496, 48.8696018221402]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b961aa2625da8614196d304f9349a856202b1090", "fields": {"departement": "94", "stop_lat": 48.81317916036105, "code_postal": "94017", "stop_lon": 2.5128343715435313, "coord": [48.81317916036105, 2.5128343715435313], "stop_id": 3743505, "stop_desc": "43 RUE LOUIS TALAMONI - 94017", "stop_name": "MAIRIE DE CHAMPIGNY"}, "geometry": {"type": "Point", "coordinates": [2.5128343715435313, 48.81317916036105]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d92dca8a91f9f75526bad9382437a783c84b97b7", "fields": {"departement": "75", "stop_lat": 48.8746658461575, "code_postal": "75108", "stop_lon": 2.324651698857363, "coord": [48.8746658461575, 2.324651698857363], "stop_id": 3747810, "stop_desc": "FACE 61 RUE DE L'ARCADE - 75108", "stop_name": "GARE SAINT-LAZARE"}, "geometry": {"type": "Point", "coordinates": [2.324651698857363, 48.8746658461575]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "010fec674a496b6449b83aa41c50c26516d69d20", "fields": {"departement": "94", "stop_lat": 48.80191963408518, "code_postal": "94019", "stop_lon": 2.5397357710998154, "coord": [48.80191963408518, 2.5397357710998154], "stop_id": 3743496, "stop_desc": "22 ROUTE DE LA LIBERATION - 94019", "stop_name": "AVENUE GEORGES"}, "geometry": {"type": "Point", "coordinates": [2.5397357710998154, 48.80191963408518]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3fca12a9d920f1cf3df0d8b7e3c191ff2363ce91", "fields": {"departement": "94", "stop_lat": 48.81387624492796, "code_postal": "94017", "stop_lon": 2.50939367172205, "coord": [48.81387624492796, 2.50939367172205], "stop_id": 3743508, "stop_desc": "FACE 85 AVENUE JEAN JAURES - 94017", "stop_name": "MAIRIE - MARCHE"}, "geometry": {"type": "Point", "coordinates": [2.50939367172205, 48.81387624492796]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c5745f651c88fb1086e96caf8a714ba05f5d215f", "fields": {"departement": "94", "stop_lat": 48.805516067822516, "code_postal": "94019", "stop_lon": 2.53359954975718, "coord": [48.805516067822516, 2.53359954975718], "stop_id": 3743515, "stop_desc": "ROUTE DE LA LIBERATION - 94019", "stop_name": "FORT DE CHAMPIGNY"}, "geometry": {"type": "Point", "coordinates": [2.53359954975718, 48.805516067822516]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "71889b2f42a8860fa5bcfbabeec792f990200e16", "fields": {"departement": "94", "stop_lat": 48.81226731242885, "code_postal": "94017", "stop_lon": 2.515580204948953, "coord": [48.81226731242885, 2.515580204948953], "stop_id": 3743504, "stop_desc": "FACE 1 RUE MARX DORMOY - 94017", "stop_name": "RUE DU MONUMENT"}, "geometry": {"type": "Point", "coordinates": [2.515580204948953, 48.81226731242885]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6498a28759946199ef67bdb7cf99e1f40347762a", "fields": {"departement": "75", "stop_lat": 48.84446078820971, "code_postal": "75112", "stop_lon": 2.380964975355521, "coord": [48.84446078820971, 2.380964975355521], "stop_id": 3747840, "stop_desc": "70 BIS AVENUE DAUMESNIL - 75112", "stop_name": "RAMBOUILLET"}, "geometry": {"type": "Point", "coordinates": [2.380964975355521, 48.84446078820971]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e9f7480b6b2516d0ea65eb3594924ad2ab4d89ed", "fields": {"departement": "75", "stop_lat": 48.86546339402845, "code_postal": "75101", "stop_lon": 2.341831817642396, "coord": [48.86546339402845, 2.341831817642396], "stop_id": 3747822, "stop_desc": "51 RUE ETIENNE MARCEL - 75101", "stop_name": "VICTOIRES"}, "geometry": {"type": "Point", "coordinates": [2.341831817642396, 48.86546339402845]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eeeab10df0d56ac57d6f839ecdfd491f2460143b", "fields": {"departement": "94", "stop_lat": 48.81497727135156, "code_postal": "94017", "stop_lon": 2.5062399860581337, "coord": [48.81497727135156, 2.5062399860581337], "stop_id": 3743510, "stop_desc": "42 AVENUE JEAN JAURES - 94017", "stop_name": "GUITTARD"}, "geometry": {"type": "Point", "coordinates": [2.5062399860581337, 48.81497727135156]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a93ec146ae99273d034884ffccfc28f07d4357a4", "fields": {"departement": "75", "stop_lat": 48.84449658259152, "code_postal": "75112", "stop_lon": 2.38138713019064, "coord": [48.84449658259152, 2.38138713019064], "stop_id": 3747841, "stop_desc": "127 AVENUE DAUMESNIL - 75112", "stop_name": "RAMBOUILLET"}, "geometry": {"type": "Point", "coordinates": [2.38138713019064, 48.84449658259152]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "27e09a12f6a95aaaece891f89717a22a961b8b1a", "fields": {"departement": "94", "stop_lat": 48.835586810055226, "code_postal": "94067", "stop_lon": 2.4207257144278818, "coord": [48.835586810055226, 2.4207257144278818], "stop_id": 3748080, "stop_desc": "FACE 75 RUE JEANNE D'ARC - 94067", "stop_name": "SAINT-MANDE - DEMI LUNE - PARC ZOOLOGIQUE"}, "geometry": {"type": "Point", "coordinates": [2.4207257144278818, 48.835586810055226]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0aba2cadddcd09cafdae4d45353dd52d7386186f", "fields": {"departement": "94", "stop_lat": 48.84621234043926, "code_postal": "94067", "stop_lon": 2.417461023272112, "coord": [48.84621234043926, 2.417461023272112], "stop_id": 3748071, "stop_desc": "2 AVENUE DU GENERAL DE GAULLE - 94067", "stop_name": "SAINT-MANDE - TOURELLE"}, "geometry": {"type": "Point", "coordinates": [2.417461023272112, 48.84621234043926]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "52e193f62eeb19a0ff665c2f535f3acf1d09bfe3", "fields": {"departement": "75", "stop_lat": 48.85188700856417, "code_postal": "75112", "stop_lon": 2.3733582882643787, "coord": [48.85188700856417, 2.3733582882643787], "stop_id": 3748058, "stop_desc": "58 RUE DU FAUBOURG SAINT-ANTOINE - 75112", "stop_name": "LA BOULE BLANCHE"}, "geometry": {"type": "Point", "coordinates": [2.3733582882643787, 48.85188700856417]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5014bb680d41e5b98e06b6e5c4208f9689cac2aa", "fields": {"departement": "75", "stop_lat": 48.84919362999697, "code_postal": "75112", "stop_lon": 2.3898071484915784, "coord": [48.84919362999697, 2.3898071484915784], "stop_id": 3748064, "stop_desc": "242 RUE DU FAUBOURG SAINT ANTOINE - 75112", "stop_name": "CLAUDE TILLIER"}, "geometry": {"type": "Point", "coordinates": [2.3898071484915784, 48.84919362999697]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ee9dce346434a0b5c3d1a5e871878e6161eb0c6d", "fields": {"departement": "75", "stop_lat": 48.85140439083716, "code_postal": "75104", "stop_lon": 2.3629259995215057, "coord": [48.85140439083716, 2.3629259995215057], "stop_id": 3748054, "stop_desc": "13 BOULEVARD HENRI IV - 75104", "stop_name": "SULLY - MORLAND"}, "geometry": {"type": "Point", "coordinates": [2.3629259995215057, 48.85140439083716]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "13870ceac83c1121181101484dc471fde2a6a2e2", "fields": {"departement": "75", "stop_lat": 48.85250003579268, "code_postal": "75104", "stop_lon": 2.366508345341815, "coord": [48.85250003579268, 2.366508345341815], "stop_id": 3748056, "stop_desc": "39 BOULEVARD HENRI IV - 75104", "stop_name": "LA CERISAIE"}, "geometry": {"type": "Point", "coordinates": [2.366508345341815, 48.85250003579268]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e76af645caa45923f6eaa38abc1ee8ff3c410e75", "fields": {"departement": "75", "stop_lat": 48.850130779272746, "code_postal": "75105", "stop_lon": 2.343369343620797, "coord": [48.850130779272746, 2.343369343620797], "stop_id": 3748047, "stop_desc": "58-60 RUE DES ECOLES - 75105", "stop_name": "CLUNY"}, "geometry": {"type": "Point", "coordinates": [2.343369343620797, 48.850130779272746]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ed600923d1c738893970b51aef6413b599608723", "fields": {"departement": "75", "stop_lat": 48.87935853680856, "code_postal": "75119", "stop_lon": 2.401488029675163, "coord": [48.87935853680856, 2.401488029675163], "stop_id": 3749747, "stop_desc": "AVENUE DE LA PORTE DU PRE SAINT-GERVAIS - 75119", "stop_name": "HOPITAL R. DEBRE - PRE ST GERVAIS"}, "geometry": {"type": "Point", "coordinates": [2.401488029675163, 48.87935853680856]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "99f3f78168a0d87bb5aec15dfc1840152f173cdd", "fields": {"departement": "92", "stop_lat": 48.885383873230644, "code_postal": "92051", "stop_lon": 2.2641558835611693, "coord": [48.885383873230644, 2.2641558835611693], "stop_id": 3749732, "stop_desc": "185 AVENUE ACHILLE PERETTI OU DU ROULE - 92051", "stop_name": "RUE DE L'EGLISE"}, "geometry": {"type": "Point", "coordinates": [2.2641558835611693, 48.885383873230644]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "904e3b20502df210475b6aa13fdedc66b593c721", "fields": {"departement": "75", "stop_lat": 48.88180050254322, "code_postal": "75110", "stop_lon": 2.3585668751343, "coord": [48.88180050254322, 2.3585668751343], "stop_id": 3749766, "stop_desc": "FACE 191 RUE DU FAUBOURG SAINT-DENIS - 75110", "stop_name": "CAIL - DEMARQUAY"}, "geometry": {"type": "Point", "coordinates": [2.3585668751343, 48.88180050254322]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f0d530be98d66383fb229439446c2e99bb71119b", "fields": {"departement": "75", "stop_lat": 48.88005756021677, "code_postal": "75110", "stop_lon": 2.3549960773675407, "coord": [48.88005756021677, 2.3549960773675407], "stop_id": 3749769, "stop_desc": "PLACE NAPOLEON III - 75110", "stop_name": "GARE DU NORD - DUNKERQUE"}, "geometry": {"type": "Point", "coordinates": [2.3549960773675407, 48.88005756021677]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4ef49425e7f7f441cef24d0d47b063a8a377de33", "fields": {"departement": "92", "stop_lat": 48.88264994354407, "code_postal": "92051", "stop_lon": 2.2769826985860053, "coord": [48.88264994354407, 2.2769826985860053], "stop_id": 3749712, "stop_desc": "56 AVENUE ACHILLE PERETTI OU DU ROULE - 92051", "stop_name": "CHARTRES"}, "geometry": {"type": "Point", "coordinates": [2.2769826985860053, 48.88264994354407]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5279c85ea386b4e07111c1e96a819383be9293de", "fields": {"departement": "92", "stop_lat": 48.88622746023727, "code_postal": "92051", "stop_lon": 2.262205905418423, "coord": [48.88622746023727, 2.262205905418423], "stop_id": 3749718, "stop_desc": "154-164 AVENUE ACHILLE PERETTI - 92051", "stop_name": "GENERAL GOURAUD"}, "geometry": {"type": "Point", "coordinates": [2.262205905418423, 48.88622746023727]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "773971a0ded171a8cda17e8661557206e03ca7ff", "fields": {"departement": "92", "stop_lat": 48.87704382500589, "code_postal": "92051", "stop_lon": 2.250910052450818, "coord": [48.87704382500589, 2.250910052450818], "stop_id": 3749728, "stop_desc": "96 RUE DE LONGCHAMP - 92051", "stop_name": "PLACE DE BAGATELLE"}, "geometry": {"type": "Point", "coordinates": [2.250910052450818, 48.87704382500589]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a6d34bf7636608ba42c2db4d0af03c7c2d781cb6", "fields": {"departement": "75", "stop_lat": 48.87654445856856, "code_postal": "75109", "stop_lon": 2.3469968002225374, "coord": [48.87654445856856, 2.3469968002225374], "stop_id": 3749736, "stop_desc": "90 RUE LA FAYETTE - 75109", "stop_name": "SQUARE MONTHOLON"}, "geometry": {"type": "Point", "coordinates": [2.3469968002225374, 48.87654445856856]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "743365ccbc0a8cd970e03c724c46e823f1801a7a", "fields": {"departement": "75", "stop_lat": 48.87794593694368, "code_postal": "75110", "stop_lon": 2.3521884586483655, "coord": [48.87794593694368, 2.3521884586483655], "stop_id": 3749737, "stop_desc": "130 RUE LA FAYETTE - 75110", "stop_name": "PLACE FRANZ LISZT"}, "geometry": {"type": "Point", "coordinates": [2.3521884586483655, 48.87794593694368]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5cc263df260d6526eed9b434b0a2f1549e21bccf", "fields": {"departement": "75", "stop_lat": 48.882493450416284, "code_postal": "75119", "stop_lon": 2.3859844935998042, "coord": [48.882493450416284, 2.3859844935998042], "stop_id": 3749755, "stop_desc": "FACE 86 RUE DE CRIMEE - 75119", "stop_name": "MANIN"}, "geometry": {"type": "Point", "coordinates": [2.3859844935998042, 48.882493450416284]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d95eea5d62d5583a2745acec50321961a62dc0b7", "fields": {"departement": "75", "stop_lat": 48.85851141448971, "code_postal": "75107", "stop_lon": 2.3033938626480066, "coord": [48.85851141448971, 2.3033938626480066], "stop_id": 3749901, "stop_desc": "20 AVENUE BOSQUET - 75107", "stop_name": "BOSQUET - SAINT-DOMINIQUE"}, "geometry": {"type": "Point", "coordinates": [2.3033938626480066, 48.85851141448971]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "12ff089a8da55caecd952a6b51a64d7d7bb21a22", "fields": {"departement": "75", "stop_lat": 48.83558092732886, "code_postal": "75115", "stop_lon": 2.2931162004514722, "coord": [48.83558092732886, 2.2931162004514722], "stop_id": 3749879, "stop_desc": "383 RUE DE VAUGIRARD - 75115", "stop_name": "HOPITAL DE VAUGIRARD"}, "geometry": {"type": "Point", "coordinates": [2.2931162004514722, 48.83558092732886]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "64ff0c7189d1f6306dd72635d7a36fa489b6568e", "fields": {"departement": "75", "stop_lat": 48.87310957780222, "code_postal": "75108", "stop_lon": 2.314719861927881, "coord": [48.87310957780222, 2.314719861927881], "stop_id": 3749911, "stop_desc": "6 AV DELCASSE - 75108", "stop_name": "MATIGNON - SAINT-HONORE"}, "geometry": {"type": "Point", "coordinates": [2.314719861927881, 48.87310957780222]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "171627a2b0b3d3de26e6dc257d86bc293d336fd7", "fields": {"departement": "75", "stop_lat": 48.8425042999016, "code_postal": "75115", "stop_lon": 2.3019609713401774, "coord": [48.8425042999016, 2.3019609713401774], "stop_id": 3749885, "stop_desc": "118-120 RUE LECOURBE - 75115", "stop_name": "CAMBRONNE - LECOURBE"}, "geometry": {"type": "Point", "coordinates": [2.3019609713401774, 48.8425042999016]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dd3e19fb528d6fbd61224663720d4f285c42b051", "fields": {"departement": "75", "stop_lat": 48.833187643240564, "code_postal": "75115", "stop_lon": 2.286624378486834, "coord": [48.833187643240564, 2.286624378486834], "stop_id": 3749876, "stop_desc": "BOULEVARD VICTOR - 75115", "stop_name": "PORTE DE VERSAILLES"}, "geometry": {"type": "Point", "coordinates": [2.286624378486834, 48.833187643240564]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "58384eeaaa4cdfcc354e32b65d13a254fb3a90ed", "fields": {"departement": "75", "stop_lat": 48.840671486142476, "code_postal": "75115", "stop_lon": 2.304208844924357, "coord": [48.840671486142476, 2.304208844924357], "stop_id": 3749884, "stop_desc": "121 RUE CAMBRONNE - 75115", "stop_name": "CAMBRONNE - VAUGIRARD"}, "geometry": {"type": "Point", "coordinates": [2.304208844924357, 48.840671486142476]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8a07a583011fdf27caee14c8f943e18ce18d9a50", "fields": {"departement": "75", "stop_lat": 48.854054184701525, "code_postal": "75107", "stop_lon": 2.305344351313163, "coord": [48.854054184701525, 2.305344351313163], "stop_id": 3749896, "stop_desc": "85 AVENUE BOSQUET - 75107", "stop_name": "ECOLE MILITAIRE"}, "geometry": {"type": "Point", "coordinates": [2.305344351313163, 48.854054184701525]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "395f951949516caa3f553710fb857b596b25a567", "fields": {"departement": "75", "stop_lat": 48.8483638057164, "code_postal": "75115", "stop_lon": 2.300785842022063, "coord": [48.8483638057164, 2.300785842022063], "stop_id": 3749891, "stop_desc": "135-137 BOULEVARD DE GRENELLE - 75115", "stop_name": "CAMBRONNE"}, "geometry": {"type": "Point", "coordinates": [2.300785842022063, 48.8483638057164]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4fb5b65b5a9b8ecc158f189f5ffdf22a30e35f82", "fields": {"departement": "75", "stop_lat": 48.8418655148874, "code_postal": "75115", "stop_lon": 2.2997691922702015, "coord": [48.8418655148874, 2.2997691922702015], "stop_id": 3749888, "stop_desc": "148 RUE LECOURBE - 75115", "stop_name": "MAIRIE DU 15E"}, "geometry": {"type": "Point", "coordinates": [2.2997691922702015, 48.8418655148874]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1e15363f2eb96861ce253839034930b4683a2f91", "fields": {"departement": "75", "stop_lat": 48.87991705797838, "code_postal": "75119", "stop_lon": 2.39900874767663, "coord": [48.87991705797838, 2.39900874767663], "stop_id": 3749797, "stop_desc": "0 BD SERURIER - 75119", "stop_name": "MOUZAIA"}, "geometry": {"type": "Point", "coordinates": [2.39900874767663, 48.87991705797838]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4439027d96f8efebc4562935dcd68a86533d0a49", "fields": {"departement": "75", "stop_lat": 48.87622131126687, "code_postal": "75109", "stop_lon": 2.3363690403507302, "coord": [48.87622131126687, 2.3363690403507302], "stop_id": 3749684, "stop_desc": "36 RUE DE CHATEAUDUN - 75109", "stop_name": "SAINT-GEORGES - CHATEAUDUN"}, "geometry": {"type": "Point", "coordinates": [2.3363690403507302, 48.87622131126687]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f4a72e0ef77cebf50f3e2c52e07add4f63b9e25d", "fields": {"departement": "75", "stop_lat": 48.875048935083306, "code_postal": "75108", "stop_lon": 2.3062579263665284, "coord": [48.875048935083306, 2.3062579263665284], "stop_id": 3749698, "stop_desc": "190 BOULEVARD HAUSSMANN - 75108", "stop_name": "FRIEDLAND - HAUSSMANN"}, "geometry": {"type": "Point", "coordinates": [2.3062579263665284, 48.875048935083306]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b7d416bd71ae1fd3c56b58107e46fa7f45838ded", "fields": {"departement": "75", "stop_lat": 48.88715858179531, "code_postal": "75118", "stop_lon": 2.344409450662319, "coord": [48.88715858179531, 2.344409450662319], "stop_id": 3749648, "stop_desc": "FACE 16 RUE LAMARCK - 75118", "stop_name": "CHEVALIER DE LA BARRE"}, "geometry": {"type": "Point", "coordinates": [2.344409450662319, 48.88715858179531]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "76aeaa0c3b424b507e27892df15134b5c7a8a72b", "fields": {"departement": "75", "stop_lat": 48.87582585780375, "code_postal": "75109", "stop_lon": 2.339203078574824, "coord": [48.87582585780375, 2.339203078574824], "stop_id": 3749683, "stop_desc": "17 RUE DE CHATEAUDUN - 75109", "stop_name": "CARREFOUR DE CHATEAUDUN"}, "geometry": {"type": "Point", "coordinates": [2.339203078574824, 48.87582585780375]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "94c006ab0467367cedd6de29e8179838d86beec3", "fields": {"departement": "75", "stop_lat": 48.87841558644444, "code_postal": "75117", "stop_lon": 2.2946603292390058, "coord": [48.87841558644444, 2.2946603292390058], "stop_id": 3749704, "stop_desc": "29-31 AV DES TERNES - 75117", "stop_name": "TERNES - MAC MAHON"}, "geometry": {"type": "Point", "coordinates": [2.2946603292390058, 48.87841558644444]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6c92986ed1a0d553522addfb3d5fcd9df789bfb0", "fields": {"departement": "75", "stop_lat": 48.88435477227426, "code_postal": "75118", "stop_lon": 2.3389444789053817, "coord": [48.88435477227426, 2.3389444789053817], "stop_id": 3749661, "stop_desc": "30 R YVONNE LE TAC - 75118", "stop_name": "ABBESSES"}, "geometry": {"type": "Point", "coordinates": [2.3389444789053817, 48.88435477227426]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "99133de93798736e1afb79e16b4d4db24bc92613", "fields": {"departement": "75", "stop_lat": 48.87933042390682, "code_postal": "75109", "stop_lon": 2.3480465314325087, "coord": [48.87933042390682, 2.3480465314325087], "stop_id": 3749679, "stop_desc": "59 RUE DE MAUBEUGE - 75109", "stop_name": "CONDORCET"}, "geometry": {"type": "Point", "coordinates": [2.3480465314325087, 48.87933042390682]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "37a97c34fdf48a90c39fc147f5092635c898f19d", "fields": {"departement": "75", "stop_lat": 48.87609534919313, "code_postal": "75109", "stop_lon": 2.331409461627424, "coord": [48.87609534919313, 2.331409461627424], "stop_id": 3749687, "stop_desc": "73 RUE SAINT-LAZARE - 75109", "stop_name": "TRINITE"}, "geometry": {"type": "Point", "coordinates": [2.331409461627424, 48.87609534919313]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0504d1730e3d607c7b196e201ba8f8a16d3f44a8", "fields": {"departement": "75", "stop_lat": 48.88245845070049, "code_postal": "75118", "stop_lon": 2.339775657617902, "coord": [48.88245845070049, 2.339775657617902], "stop_id": 3749665, "stop_desc": "74 RUE DES MARTYRS - 75118", "stop_name": "MARTYRS"}, "geometry": {"type": "Point", "coordinates": [2.339775657617902, 48.88245845070049]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3f927476317d885889e0856cee9ad25fe13cab2d", "fields": {"departement": "75", "stop_lat": 48.87807493981841, "code_postal": "75117", "stop_lon": 2.2971677460588693, "coord": [48.87807493981841, 2.2971677460588693], "stop_id": 3749702, "stop_desc": "2 AVENUE DES TERNES - 75117", "stop_name": "TERNES"}, "geometry": {"type": "Point", "coordinates": [2.2971677460588693, 48.87807493981841]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6bfd33e89782e2fca926aee3a50417a930783d71", "fields": {"departement": "75", "stop_lat": 48.887572148838096, "code_postal": "75118", "stop_lon": 2.3334932882373276, "coord": [48.887572148838096, 2.3334932882373276], "stop_id": 3749924, "stop_desc": "28 RUE CAULAINCOURT - 75118", "stop_name": "DAMREMONT - CAULAINCOURT"}, "geometry": {"type": "Point", "coordinates": [2.3334932882373276, 48.887572148838096]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f368856ed5055fe28fb49154bc24633cab73ebfc", "fields": {"departement": "75", "stop_lat": 48.889962656364695, "code_postal": "75118", "stop_lon": 2.343155981984433, "coord": [48.889962656364695, 2.343155981984433], "stop_id": 3749930, "stop_desc": "42 RUE DU MONT-CENIS - 75118", "stop_name": "CUSTINE - MONT-CENIS"}, "geometry": {"type": "Point", "coordinates": [2.343155981984433, 48.889962656364695]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ca62c1709c30c3fc4c3a543910dbcad775718780", "fields": {"departement": "75", "stop_lat": 48.889756058043695, "code_postal": "75118", "stop_lon": 2.3403075364645303, "coord": [48.889756058043695, 2.3403075364645303], "stop_id": 3749929, "stop_desc": "107 RUE CAULAINCOURT - 75118", "stop_name": "LAMARCK - CAULAINCOURT"}, "geometry": {"type": "Point", "coordinates": [2.3403075364645303, 48.889756058043695]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6bbd3735dea922de6a0e4f271d559efc3b86f1f2", "fields": {"departement": "75", "stop_lat": 48.87711023118559, "code_postal": "75108", "stop_lon": 2.3232340538304124, "coord": [48.87711023118559, 2.3232340538304124], "stop_id": 3749915, "stop_desc": "34 RUE DE ROME - 75108", "stop_name": "GARE SAINT-LAZARE"}, "geometry": {"type": "Point", "coordinates": [2.3232340538304124, 48.87711023118559]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2c31a843b38dbf9d7b8eb8462f3eb898f71ab614", "fields": {"departement": "75", "stop_lat": 48.88023794533592, "code_postal": "75108", "stop_lon": 2.3245140812346885, "coord": [48.88023794533592, 2.3245140812346885], "stop_id": 3749919, "stop_desc": "12 RUE DE SAINT-PETERSBOURG - 75108", "stop_name": "BUCAREST"}, "geometry": {"type": "Point", "coordinates": [2.3245140812346885, 48.88023794533592]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ccd233ee4f3989223fae4965cf564009165ca0f9", "fields": {"departement": "75", "stop_lat": 48.87829652117301, "code_postal": "75108", "stop_lon": 2.322974842811343, "coord": [48.87829652117301, 2.322974842811343], "stop_id": 3749917, "stop_desc": "24 RUE DE VIENNE - 75108", "stop_name": "EUROPE"}, "geometry": {"type": "Point", "coordinates": [2.322974842811343, 48.87829652117301]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6b88d3e9c70a7d8ac030f93b7b1d48e0ebd3e513", "fields": {"departement": "75", "stop_lat": 48.87849422642491, "code_postal": "75108", "stop_lon": 2.32285215568243, "coord": [48.87849422642491, 2.32285215568243], "stop_id": 3749918, "stop_desc": "27 RUE DE VIENNE - 75108", "stop_name": "EUROPE"}, "geometry": {"type": "Point", "coordinates": [2.32285215568243, 48.87849422642491]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4d727dfd4c6d8d2b4415b20f4b1cb3d5f2afba98", "fields": {"departement": "94", "stop_lat": 48.809208018958664, "code_postal": "94043", "stop_lon": 2.360374105412841, "coord": [48.809208018958664, 2.360374105412841], "stop_id": 3754327, "stop_desc": "2-4 R JEAN MONNET - 94043", "stop_name": "ESPACE CULTUREL ANDRE MALRAUX"}, "geometry": {"type": "Point", "coordinates": [2.360374105412841, 48.809208018958664]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "66d5c743fb49c375f82b21d2a4e520db3ecb630e", "fields": {"departement": "94", "stop_lat": 48.813829920243066, "code_postal": "94037", "stop_lon": 2.340806597050351, "coord": [48.813829920243066, 2.340806597050351], "stop_id": 3754320, "stop_desc": "FACE 63TER R BENOIT MALON - 94037", "stop_name": "GENTILLY RER - PLATEAU"}, "geometry": {"type": "Point", "coordinates": [2.340806597050351, 48.813829920243066]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3ba0f06691f05b06a7cc9465c529144dcb03dc31", "fields": {"departement": "94", "stop_lat": 48.81007292302495, "code_postal": "94037", "stop_lon": 2.3435823500614354, "coord": [48.81007292302495, 2.3435823500614354], "stop_id": 3754317, "stop_desc": "82 AVENUE RASPAIL - 94037", "stop_name": "FRAYSSE - VAL DE BIEVRE"}, "geometry": {"type": "Point", "coordinates": [2.3435823500614354, 48.81007292302495]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "091d32dc90ef453a4f1479e122573910541a8024", "fields": {"departement": "94", "stop_lat": 48.80529984305715, "code_postal": "94043", "stop_lon": 2.350466729119173, "coord": [48.80529984305715, 2.350466729119173], "stop_id": 3754330, "stop_desc": "RUE BENOIT MALON - 94043", "stop_name": "BENOIT MALON - MARTINETS"}, "geometry": {"type": "Point", "coordinates": [2.350466729119173, 48.80529984305715]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d9d43e05e179e7ebd8f6f3f52a383d7e32a5b9d1", "fields": {"departement": "94", "stop_lat": 48.81017914664677, "code_postal": "94043", "stop_lon": 2.357938719977963, "coord": [48.81017914664677, 2.357938719977963], "stop_id": 3754326, "stop_desc": "78 R DU GENERAL LECLERC - 94043", "stop_name": "LECLERC - THOMAS"}, "geometry": {"type": "Point", "coordinates": [2.357938719977963, 48.81017914664677]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4dc9bb1fd0367aa4586ebc3c7a753aafe0796bd6", "fields": {"departement": "94", "stop_lat": 48.808895686141355, "code_postal": "94003", "stop_lon": 2.3385337926160976, "coord": [48.808895686141355, 2.3385337926160976], "stop_id": 3755010, "stop_desc": "FACE 54 R HENRI BARBUSSE - 94003", "stop_name": "HENRI BARBUSSE"}, "geometry": {"type": "Point", "coordinates": [2.3385337926160976, 48.808895686141355]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b69fbf9b654618b0079b4fe35e0e30981db6b916", "fields": {"departement": "94", "stop_lat": 48.81045909547389, "code_postal": "94037", "stop_lon": 2.347828091442007, "coord": [48.81045909547389, 2.347828091442007], "stop_id": 3754324, "stop_desc": "FACE 14 R BENSERADE - 94037", "stop_name": "FONDATION VALLEE"}, "geometry": {"type": "Point", "coordinates": [2.347828091442007, 48.81045909547389]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "41ee91206dd5e93511c3a4d300d624c009130e21", "fields": {"departement": "94", "stop_lat": 48.80251420048116, "code_postal": "94003", "stop_lon": 2.343309310300123, "coord": [48.80251420048116, 2.343309310300123], "stop_id": 3755005, "stop_desc": "FACE AU 13 AVENUE GABRIEL PERI - 94003", "stop_name": "RICARDO"}, "geometry": {"type": "Point", "coordinates": [2.343309310300123, 48.80251420048116]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e7b516c668beee7eaac8b5237651014581aeb06c", "fields": {"departement": "94", "stop_lat": 48.81763994544958, "code_postal": "94069", "stop_lon": 2.4514143694904704, "coord": [48.81763994544958, 2.4514143694904704], "stop_id": 5478302, "stop_desc": "FACE 178 RUE DU MARECHAL LECLERC - 94069", "stop_name": "ROSERAIE"}, "geometry": {"type": "Point", "coordinates": [2.4514143694904704, 48.81763994544958]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c1f37149d1c7d1d73b5b3a8ed2c2c4c0fa6a847f", "fields": {"departement": "94", "stop_lat": 48.816872071529666, "code_postal": "94069", "stop_lon": 2.4554275393875784, "coord": [48.816872071529666, 2.4554275393875784], "stop_id": 5478304, "stop_desc": "103 RUE DU MARECHAL LECLERC - 94069", "stop_name": "LES CANADIENS"}, "geometry": {"type": "Point", "coordinates": [2.4554275393875784, 48.816872071529666]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "63e64ec3805428cb65ea47f5cd597165ea2d6e3d", "fields": {"departement": "94", "stop_lat": 48.80686116187773, "code_postal": "94068", "stop_lon": 2.4710256670182504, "coord": [48.80686116187773, 2.4710256670182504], "stop_id": 5478315, "stop_desc": "14 RUE DU PONT DE CRETEIL - 94068", "stop_name": "SAINT-MAUR - CRETEIL RER"}, "geometry": {"type": "Point", "coordinates": [2.4710256670182504, 48.80686116187773]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c18e8cf3a44a9e7449050d2c140b7c176f03caad", "fields": {"departement": "94", "stop_lat": 48.80679780315122, "code_postal": "94068", "stop_lon": 2.4714201083472345, "coord": [48.80679780315122, 2.4714201083472345], "stop_id": 5478316, "stop_desc": "37 RUE DU PONT DE CRETEIL - 94068", "stop_name": "SAINT-MAUR - CRETEIL RER"}, "geometry": {"type": "Point", "coordinates": [2.4714201083472345, 48.80679780315122]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4b80b79945adbd3cdd4b9485dae4a55dcee323bd", "fields": {"departement": "94", "stop_lat": 48.79911299769273, "code_postal": "94068", "stop_lon": 2.4716043270020815, "coord": [48.79911299769273, 2.4716043270020815], "stop_id": 5478320, "stop_desc": "4 BIS BOULEVARD DE CRETEIL - 94068", "stop_name": "PONT DE CRETEIL"}, "geometry": {"type": "Point", "coordinates": [2.4716043270020815, 48.79911299769273]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "05d41131ae4b29c1c7c40fabf3e0cfaa7df5010c", "fields": {"departement": "94", "stop_lat": 48.79137454136224, "code_postal": "94068", "stop_lon": 2.4792428043909154, "coord": [48.79137454136224, 2.4792428043909154], "stop_id": 5478326, "stop_desc": "34 AVENUE JEAN JAURES - 94068", "stop_name": "ARROMANCHES"}, "geometry": {"type": "Point", "coordinates": [2.4792428043909154, 48.79137454136224]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "46e9de10c79e8b16289ee7eb1562d85b026d272c", "fields": {"departement": "94", "stop_lat": 48.78634465839506, "code_postal": "94068", "stop_lon": 2.483880834458613, "coord": [48.78634465839506, 2.483880834458613], "stop_id": 5478328, "stop_desc": "6 AVENUE RASPAIL - 94068", "stop_name": "JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.483880834458613, 48.78634465839506]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "82ca291b05f2b0bfd33110b3ed8071fbe2c17741", "fields": {"departement": "94", "stop_lat": 48.787538805050225, "code_postal": "94068", "stop_lon": 2.4919638022374393, "coord": [48.787538805050225, 2.4919638022374393], "stop_id": 5478332, "stop_desc": "179 BIS PLACE DES CORNEILLES - 94068", "stop_name": "CORNEILLES"}, "geometry": {"type": "Point", "coordinates": [2.4919638022374393, 48.787538805050225]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "56f58d097951c6ae0498a8294ed310307f911b58", "fields": {"departement": "94", "stop_lat": 48.78946669335857, "code_postal": "94068", "stop_lon": 2.5020218093095745, "coord": [48.78946669335857, 2.5020218093095745], "stop_id": 5478339, "stop_desc": "78 AVENUE DE BONNEUIL - 94068", "stop_name": "PLACE DE MOLENES"}, "geometry": {"type": "Point", "coordinates": [2.5020218093095745, 48.78946669335857]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d1ec4b2d0b77b9f7fb79ee1d5cfe24f2dcf8cc14", "fields": {"departement": "94", "stop_lat": 48.805676851249785, "code_postal": "94068", "stop_lon": 2.5171767740947644, "coord": [48.805676851249785, 2.5171767740947644], "stop_id": 5478353, "stop_desc": "49 AVENUE DU 11 NOVEMBRE - 94068", "stop_name": "GUSTAVE GOUBLIER"}, "geometry": {"type": "Point", "coordinates": [2.5171767740947644, 48.805676851249785]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "86d5a093e3cbdfd55f0edede60033ac7d1ec8093", "fields": {"departement": "94", "stop_lat": 48.80535296183323, "code_postal": "94068", "stop_lon": 2.5173933587041386, "coord": [48.80535296183323, 2.5173933587041386], "stop_id": 5478354, "stop_desc": "R DU 11 NOVEMBRE - 94068", "stop_name": "GUSTAVE GOUBLIER"}, "geometry": {"type": "Point", "coordinates": [2.5173933587041386, 48.80535296183323]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6e7c45e46636f890a20ea522ced9891b40a7e75c", "fields": {"departement": "94", "stop_lat": 48.79207386657092, "code_postal": "94068", "stop_lon": 2.480686655615311, "coord": [48.79207386657092, 2.480686655615311], "stop_id": 5478361, "stop_desc": "91 BOULEVARD DU GENERAL GIRAUD - 94068", "stop_name": "BOURBAKI"}, "geometry": {"type": "Point", "coordinates": [2.480686655615311, 48.79207386657092]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cde0c3f23249e9790faf8ec164c15d750cb6e833", "fields": {"departement": "94", "stop_lat": 48.82629371263003, "code_postal": "94018", "stop_lon": 2.4065541275110616, "coord": [48.82629371263003, 2.4065541275110616], "stop_id": 5478374, "stop_desc": "130-132 RUE DE PARIS - 94018", "stop_name": "LIBERTE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.4065541275110616, 48.82629371263003]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2b532ad2e5f24c09281cced881b74fcc43f8405b", "fields": {"departement": "94", "stop_lat": 48.823667195047015, "code_postal": "94018", "stop_lon": 2.410103212176365, "coord": [48.823667195047015, 2.410103212176365], "stop_id": 5478375, "stop_desc": "109 RUE DE PARIS - 94018", "stop_name": "THEATRE DE CHARENTON"}, "geometry": {"type": "Point", "coordinates": [2.410103212176365, 48.823667195047015]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1d5cbc46106cb4a74c4fa94a5848f331f111c1dc", "fields": {"departement": "94", "stop_lat": 48.818334222865474, "code_postal": "94069", "stop_lon": 2.4390579510666335, "coord": [48.818334222865474, 2.4390579510666335], "stop_id": 5478389, "stop_desc": "FACE 94 RUE DE MARECHAL LECLERC - 94069", "stop_name": "MARECHAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.4390579510666335, 48.818334222865474]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "49aa095a9a6a1832c2e6ee5d6d83effd437f1483", "fields": {"departement": "94", "stop_lat": 48.81783566839134, "code_postal": "94069", "stop_lon": 2.4438885020756413, "coord": [48.81783566839134, 2.4438885020756413], "stop_id": 5478390, "stop_desc": "134 RUE DU MARECHAL LECLERC - 94069", "stop_name": "PASSERELLE DE CHARENTONNEAU"}, "geometry": {"type": "Point", "coordinates": [2.4438885020756413, 48.81783566839134]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "618b3d8260e747fb8d3cd3c5257c62ec905d662c", "fields": {"departement": "94", "stop_lat": 48.81745989066233, "code_postal": "94069", "stop_lon": 2.451726999892649, "coord": [48.81745989066233, 2.451726999892649], "stop_id": 5478394, "stop_desc": "182 RUE DU MARECHAL LECLERC - 94069", "stop_name": "ROSERAIE"}, "geometry": {"type": "Point", "coordinates": [2.451726999892649, 48.81745989066233]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "410846dc1f43a50b408187964eabea672b847ba3", "fields": {"departement": "94", "stop_lat": 48.81672811941364, "code_postal": "94069", "stop_lon": 2.4555769178378704, "coord": [48.81672811941364, 2.4555769178378704], "stop_id": 5478396, "stop_desc": "228 RUE DU MARECHAL LECLERC - 94069", "stop_name": "LES CANADIENS"}, "geometry": {"type": "Point", "coordinates": [2.4555769178378704, 48.81672811941364]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e9670f3024ab768cd42855632495205a7d590362", "fields": {"departement": "75", "stop_lat": 48.828144659099536, "code_postal": "75112", "stop_lon": 2.390017246298964, "coord": [48.828144659099536, 2.390017246298964], "stop_id": 5478403, "stop_desc": "RUE ROBERT ETLIN - 75112", "stop_name": "PONT NATIONAL - QUAI DE BERCY"}, "geometry": {"type": "Point", "coordinates": [2.390017246298964, 48.828144659099536]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cacdaafff8fa006623089ec95c086d762756ba24", "fields": {"departement": "75", "stop_lat": 48.82743234390457, "code_postal": "75112", "stop_lon": 2.4644085871670787, "coord": [48.82743234390457, 2.4644085871670787], "stop_id": 5478421, "stop_desc": "AVENUE DU TREMBLAY - 75112", "stop_name": "CARREFOUR DE BEAUTE"}, "geometry": {"type": "Point", "coordinates": [2.4644085871670787, 48.82743234390457]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "436382347a833b98f052380e77d2489571e3f05e", "fields": {"departement": "94", "stop_lat": 48.820170736349816, "code_postal": "94042", "stop_lon": 2.4639960906120337, "coord": [48.820170736349816, 2.4639960906120337], "stop_id": 5478422, "stop_desc": "AVENUE JEAN JAURES - 94042", "stop_name": "JOINVILLE-LE-PONT RER"}, "geometry": {"type": "Point", "coordinates": [2.4639960906120337, 48.820170736349816]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "73ae87c803b1749a2e83e8c1788fa75a83942ceb", "fields": {"departement": "94", "stop_lat": 48.8109161507398, "code_postal": "94068", "stop_lon": 2.469688911159269, "coord": [48.8109161507398, 2.469688911159269], "stop_id": 5478429, "stop_desc": "1 BOULEVARD MAURICE BERTEAUX - 94068", "stop_name": "MAURICE BERTEAUX"}, "geometry": {"type": "Point", "coordinates": [2.469688911159269, 48.8109161507398]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fdfbb221faff993cc3b8f9cac6816de36d16294d", "fields": {"departement": "94", "stop_lat": 48.79911299769273, "code_postal": "94068", "stop_lon": 2.4716043270020815, "coord": [48.79911299769273, 2.4716043270020815], "stop_id": 5478437, "stop_desc": "4 BIS BOULEVARD DE CRETEIL - 94068", "stop_name": "PONT DE CRETEIL"}, "geometry": {"type": "Point", "coordinates": [2.4716043270020815, 48.79911299769273]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b0347fe27924e1e1178f0a98f7fb57ae54cd5f5f", "fields": {"departement": "94", "stop_lat": 48.7981603300009, "code_postal": "94068", "stop_lon": 2.479302174617681, "coord": [48.7981603300009, 2.479302174617681], "stop_id": 5478439, "stop_desc": "58 BIS BOULEVARD DE CRETEIL - 94068", "stop_name": "BEAUJEU"}, "geometry": {"type": "Point", "coordinates": [2.479302174617681, 48.7981603300009]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fcda5091fb5db8970ac3af62dabdbc6bb5de8f8f", "fields": {"departement": "94", "stop_lat": 48.79768845269919, "code_postal": "94068", "stop_lon": 2.5035852270011363, "coord": [48.79768845269919, 2.5035852270011363], "stop_id": 5478453, "stop_desc": "11 AVENUE DU BAC - 94068", "stop_name": "PLACE JEAN MOULIN"}, "geometry": {"type": "Point", "coordinates": [2.5035852270011363, 48.79768845269919]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "821697158321c6562ac86b89392e4c2a17b70a0d", "fields": {"departement": "94", "stop_lat": 48.795839993215026, "code_postal": "94068", "stop_lon": 2.5077830022664225, "coord": [48.795839993215026, 2.5077830022664225], "stop_id": 5478454, "stop_desc": "40 AVENUE DU BAC - 94068", "stop_name": "AVENUE DE BONNEUIL"}, "geometry": {"type": "Point", "coordinates": [2.5077830022664225, 48.795839993215026]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "73e987d3f56910d0ba55053a4be4c98afba480f3", "fields": {"departement": "94", "stop_lat": 48.79478452281416, "code_postal": "94068", "stop_lon": 2.510473112245452, "coord": [48.79478452281416, 2.510473112245452], "stop_id": 5478456, "stop_desc": "64 AVENUE DU BAC - 94068", "stop_name": "ECOLE MICHELET"}, "geometry": {"type": "Point", "coordinates": [2.510473112245452, 48.79478452281416]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0b7b81129b931e1d4e5a83ef5d33e1f1839de003", "fields": {"departement": "95", "stop_lat": 48.980410089723726, "code_postal": "95585", "stop_lon": 2.3730247424784547, "coord": [48.980410089723726, 2.3730247424784547], "stop_id": 5478491, "stop_desc": "FACE 87 AVENUE PAUL VALERY - 95585", "stop_name": "LOUIS LEBRUN"}, "geometry": {"type": "Point", "coordinates": [2.3730247424784547, 48.980410089723726]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e3a80e9f6e14d194cb9127b42fd2e2980fe5c54c", "fields": {"departement": "95", "stop_lat": 48.97804717770801, "code_postal": "95585", "stop_lon": 2.3711664270695776, "coord": [48.97804717770801, 2.3711664270695776], "stop_id": 5478493, "stop_desc": "BOULEVARD ALBERT CAMUS - 95585", "stop_name": "LES CHOLETTES"}, "geometry": {"type": "Point", "coordinates": [2.3711664270695776, 48.97804717770801]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e0e0d4d81f822e41808b775f2d41a9485b64290f", "fields": {"departement": "93", "stop_lat": 48.92542230702411, "code_postal": "93027", "stop_lon": 2.39165746123348, "coord": [48.92542230702411, 2.39165746123348], "stop_id": 5504094, "stop_desc": "FACE 37-39 AVENUE VICTOR HUGO - 93027", "stop_name": "MECANO"}, "geometry": {"type": "Point", "coordinates": [2.39165746123348, 48.92542230702411]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "73dca3f4151a05b26a2836f9c853e1f73dc61d62", "fields": {"departement": "94", "stop_lat": 48.820170736349816, "code_postal": "94042", "stop_lon": 2.4639960906120337, "coord": [48.820170736349816, 2.4639960906120337], "stop_id": 4036224, "stop_desc": "AVENUE JEAN JAURES - 94042", "stop_name": "JOINVILLE-LE-PONT RER"}, "geometry": {"type": "Point", "coordinates": [2.4639960906120337, 48.820170736349816]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0d6a035df4dafc48bb4a4d8a7f278da63b15c64a", "fields": {"departement": "94", "stop_lat": 48.816504806848876, "code_postal": "94017", "stop_lon": 2.500066196243978, "coord": [48.816504806848876, 2.500066196243978], "stop_id": 4036231, "stop_desc": "136 AVENUE ROGER SALENGRO - 94017", "stop_name": "PLAGE DE CHAMPIGNY"}, "geometry": {"type": "Point", "coordinates": [2.500066196243978, 48.816504806848876]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4cfb278ea0117d5076ce4a6d13d0134bb25a98b2", "fields": {"departement": "94", "stop_lat": 48.81313554348275, "code_postal": "94017", "stop_lon": 2.511936047825764, "coord": [48.81313554348275, 2.511936047825764], "stop_id": 4036234, "stop_desc": "32 RUE LOUIS TALAMONI - 94017", "stop_name": "MAIRIE DE CHAMPIGNY"}, "geometry": {"type": "Point", "coordinates": [2.511936047825764, 48.81313554348275]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dd145bdcc67b174803c0404800df1f428984bdbd", "fields": {"departement": "94", "stop_lat": 48.81999384987343, "code_postal": "94079", "stop_lon": 2.539874335068376, "coord": [48.81999384987343, 2.539874335068376], "stop_id": 4036242, "stop_desc": "23 ROUTE DE CHENNEVIERES - 94079", "stop_name": "DOCTEUR BRING"}, "geometry": {"type": "Point", "coordinates": [2.539874335068376, 48.81999384987343]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4750111a19d9132907c270e29a681fb8d422032a", "fields": {"departement": "77", "stop_lat": 48.870957143989884, "code_postal": "77108", "stop_lon": 2.576531116758481, "coord": [48.870957143989884, 2.576531116758481], "stop_id": 4036245, "stop_desc": "50 AVENUE DU MARECHAL FOCH - 77108", "stop_name": "AVENUE DES MARTYRS"}, "geometry": {"type": "Point", "coordinates": [2.576531116758481, 48.870957143989884]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fca00e8513cbaaaea3e777f29864fb26b1b36086", "fields": {"departement": "93", "stop_lat": 48.874914218521944, "code_postal": "93032", "stop_lon": 2.551533936826456, "coord": [48.874914218521944, 2.551533936826456], "stop_id": 4036249, "stop_desc": "43 AVENUE PAUL VAILLANT COUTURIER - 93032", "stop_name": "EMILE COSSONNEAU"}, "geometry": {"type": "Point", "coordinates": [2.551533936826456, 48.874914218521944]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fa74583d5c4979f32a45b5989ff69e3fba6b6013", "fields": {"departement": "93", "stop_lat": 48.881032085028075, "code_postal": "93032", "stop_lon": 2.5427428357008504, "coord": [48.881032085028075, 2.5427428357008504], "stop_id": 4036252, "stop_desc": "RUE JULES GUESDE - 93032", "stop_name": "JEAN MOULIN"}, "geometry": {"type": "Point", "coordinates": [2.5427428357008504, 48.881032085028075]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c98dec8621f4c542cadeab7a537c0c426c3c0c55", "fields": {"departement": "93", "stop_lat": 48.8826966660454, "code_postal": "93077", "stop_lon": 2.525238738981049, "coord": [48.8826966660454, 2.525238738981049], "stop_id": 4036255, "stop_desc": "FACE 180 RUE GRANDE RUE - 93077", "stop_name": "GAGNY RER"}, "geometry": {"type": "Point", "coordinates": [2.525238738981049, 48.8826966660454]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5a558c02d8de6792cf2d6244545d20146cf83830", "fields": {"departement": "93", "stop_lat": 48.88287391562427, "code_postal": "93077", "stop_lon": 2.5151553713886163, "coord": [48.88287391562427, 2.5151553713886163], "stop_id": 4036257, "stop_desc": "91 RUE GRANDE RUE - 93077", "stop_name": "RUE DE NEUILLY"}, "geometry": {"type": "Point", "coordinates": [2.5151553713886163, 48.88287391562427]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "baeab93dd3293db5a829ffca6192a61deea39518", "fields": {"departement": "93", "stop_lat": 48.884963221706364, "code_postal": "93077", "stop_lon": 2.506045686703492, "coord": [48.884963221706364, 2.506045686703492], "stop_id": 4036259, "stop_desc": "12 TER AV DE ROSNY - 93077", "stop_name": "AVENUE DU RAINCY"}, "geometry": {"type": "Point", "coordinates": [2.506045686703492, 48.884963221706364]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "797854aa75707fec3bf8ad906a5e54bc4f7be7aa", "fields": {"departement": "93", "stop_lat": 48.88345582949369, "code_postal": "93077", "stop_lon": 2.4977554485461115, "coord": [48.88345582949369, 2.4977554485461115], "stop_id": 4036261, "stop_desc": "ROUTE DE NOISY - 93077", "stop_name": "CIMETIERE DE VILLEMOMBLE"}, "geometry": {"type": "Point", "coordinates": [2.4977554485461115, 48.88345582949369]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "132cac55caaff1d506b9472813f67fc1adc9bf54", "fields": {"departement": "93", "stop_lat": 48.88284223494826, "code_postal": "93064", "stop_lon": 2.4928341932578513, "coord": [48.88284223494826, 2.4928341932578513], "stop_id": 4036262, "stop_desc": "169 BOULEVARD D'ALSACE LORRAINE - 93064", "stop_name": "LES MARNAUDES"}, "geometry": {"type": "Point", "coordinates": [2.4928341932578513, 48.88284223494826]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "be4f133bb8828048d8714e2c051ddc1789b9f633", "fields": {"departement": "93", "stop_lat": 48.88810005790789, "code_postal": "93053", "stop_lon": 2.4620225350223475, "coord": [48.88810005790789, 2.4620225350223475], "stop_id": 4036268, "stop_desc": "139 RUE DE BREMENT - 93053", "stop_name": "SQUARE STEPHENSON"}, "geometry": {"type": "Point", "coordinates": [2.4620225350223475, 48.88810005790789]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d8f9907d920eb6c369bc9390add314ec60f023cf", "fields": {"departement": "75", "stop_lat": 48.87481729402142, "code_postal": "75119", "stop_lon": 2.388429758539716, "coord": [48.87481729402142, 2.388429758539716], "stop_id": 4036285, "stop_desc": "133 RUE DE BELLEVILLE - 75119", "stop_name": "JOURDAIN"}, "geometry": {"type": "Point", "coordinates": [2.388429758539716, 48.87481729402142]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9dbeefd9e5ccf1a5448de2c2b75a273a9ba88f7d", "fields": {"departement": "75", "stop_lat": 48.87235895924468, "code_postal": "75119", "stop_lon": 2.377514313676753, "coord": [48.87235895924468, 2.377514313676753], "stop_id": 4036287, "stop_desc": "5 RUE DE BELLEVILLE - 75119", "stop_name": "BELLEVILLE"}, "geometry": {"type": "Point", "coordinates": [2.377514313676753, 48.87235895924468]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "66e8b901692e9a06001e554d197f8af4438e335d", "fields": {"departement": "75", "stop_lat": 48.868039861543714, "code_postal": "75110", "stop_lon": 2.363955968897187, "coord": [48.868039861543714, 2.363955968897187], "stop_id": 4036290, "stop_desc": "12 PLACE DE LA REPUBLIQUE - 75110", "stop_name": "REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.363955968897187, 48.868039861543714]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cbdbe51a3ed8515844c03a3aea1bc9dbee7184d6", "fields": {"departement": "75", "stop_lat": 48.86680908230982, "code_postal": "75103", "stop_lon": 2.3616803303586003, "coord": [48.86680908230982, 2.3616803303586003], "stop_id": 4036291, "stop_desc": "85 RUE DE TURBIGO - 75103", "stop_name": "TURBIGO - REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.3616803303586003, 48.86680908230982]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b1537dafeb89af7ec38006694bd90d6b631b663f", "fields": {"departement": "75", "stop_lat": 48.86069953105734, "code_postal": "75104", "stop_lon": 2.34956822574239, "coord": [48.86069953105734, 2.34956822574239], "stop_id": 4036297, "stop_desc": "28 BOULEVARD DE SEBASTOPOL - 75104", "stop_name": "LES HALLES - CENTRE GEORGES POMPIDOU"}, "geometry": {"type": "Point", "coordinates": [2.34956822574239, 48.86069953105734]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "002e9596528fd6e5db8b074baf943be3d0bc3d8f", "fields": {"departement": "75", "stop_lat": 48.86625191048184, "code_postal": "75103", "stop_lon": 2.361462105708011, "coord": [48.86625191048184, 2.361462105708011], "stop_id": 4036302, "stop_desc": "164-166 RUE DU TEMPLE - 75103", "stop_name": "TURBIGO - REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.361462105708011, 48.86625191048184]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d04cd012642756165e37b6801925741a3a75d9f1", "fields": {"departement": "75", "stop_lat": 48.866682718988855, "code_postal": "75103", "stop_lon": 2.3641868567643844, "coord": [48.866682718988855, 2.3641868567643844], "stop_id": 4036303, "stop_desc": "9 PLACE DE LA REPUBLIQUE - 75103", "stop_name": "REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.3641868567643844, 48.866682718988855]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c2b0714f7088a5f5ccf9e0432ca6aefca568330d", "fields": {"departement": "75", "stop_lat": 48.866991448808626, "code_postal": "75120", "stop_lon": 2.3832317356000146, "coord": [48.866991448808626, 2.3832317356000146], "stop_id": 4036306, "stop_desc": "BD DE MENILMONTANT - 75120", "stop_name": "BELLEVILLE - MENILMONTANT"}, "geometry": {"type": "Point", "coordinates": [2.3832317356000146, 48.866991448808626]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ebbba28e42000436a14fa6ad7b046ea7e4712c3c", "fields": {"departement": "75", "stop_lat": 48.874054501568004, "code_postal": "75120", "stop_lon": 2.3857313172499337, "coord": [48.874054501568004, 2.3857313172499337], "stop_id": 4036309, "stop_desc": "88-90 RUE DE BELLEVILLE - 75120", "stop_name": "PYRENEES"}, "geometry": {"type": "Point", "coordinates": [2.3857313172499337, 48.874054501568004]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "57db8b607f8c502099f9e95e2f3640012c2b213e", "fields": {"departement": "75", "stop_lat": 48.87520940811392, "code_postal": "75120", "stop_lon": 2.395665016734033, "coord": [48.87520940811392, 2.395665016734033], "stop_id": 4036311, "stop_desc": "212-218 RUE DE BELLEVILLE - 75120", "stop_name": "PIXERECOURT"}, "geometry": {"type": "Point", "coordinates": [2.395665016734033, 48.87520940811392]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9ce9dce602ae832a5935a9c57fd2362c13c9eada", "fields": {"departement": "75", "stop_lat": 48.87718030694225, "code_postal": "75120", "stop_lon": 2.407357926623049, "coord": [48.87718030694225, 2.407357926623049], "stop_id": 4036313, "stop_desc": "4 AVENUE DE LA PORTE DES LILAS - 75120", "stop_name": "PORTE DES LILAS-METRO"}, "geometry": {"type": "Point", "coordinates": [2.407357926623049, 48.87718030694225]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4f6ddae88c2509bcc12fbcee92dee24462c99785", "fields": {"departement": "93", "stop_lat": 48.87968189832887, "code_postal": "93045", "stop_lon": 2.416695236771681, "coord": [48.87968189832887, 2.416695236771681], "stop_id": 4036315, "stop_desc": "6 BOULEVARD DE LA LIBERTE - 93045", "stop_name": "MAIRIE DES LILAS"}, "geometry": {"type": "Point", "coordinates": [2.416695236771681, 48.87968189832887]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b0060690e14435eee3290d2c0145e85a38d03c48", "fields": {"departement": "93", "stop_lat": 48.88289931879224, "code_postal": "93063", "stop_lon": 2.440206776933691, "coord": [48.88289931879224, 2.440206776933691], "stop_id": 4036320, "stop_desc": "FACE 6 RUE DE LA REPUBLIQUE - 93063", "stop_name": "CARNOT"}, "geometry": {"type": "Point", "coordinates": [2.440206776933691, 48.88289931879224]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "37c111841692f00fd6364a7ca6b431048e429314", "fields": {"departement": "93", "stop_lat": 48.88646135518234, "code_postal": "93064", "stop_lon": 2.4730163589597844, "coord": [48.88646135518234, 2.4730163589597844], "stop_id": 4036325, "stop_desc": "FACE 5 BOULEVARD ALSACE LORRAINE - 93064", "stop_name": "ECHANGEUR DE ROSNY"}, "geometry": {"type": "Point", "coordinates": [2.4730163589597844, 48.88646135518234]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e1c6970bfee6c2ff79e0b3031ae801fbed3ec3c6", "fields": {"departement": "93", "stop_lat": 48.88626138520519, "code_postal": "93064", "stop_lon": 2.474978254992678, "coord": [48.88626138520519, 2.474978254992678], "stop_id": 4036326, "stop_desc": "AVENUE DE GAGNY - 93064", "stop_name": "ROSNY 2 NORD"}, "geometry": {"type": "Point", "coordinates": [2.474978254992678, 48.88626138520519]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7b2fa8ee6ae365b1f88a8e7b826112ab2a6f3c56", "fields": {"departement": "93", "stop_lat": 48.88324072702506, "code_postal": "93064", "stop_lon": 2.4904778963421714, "coord": [48.88324072702506, 2.4904778963421714], "stop_id": 4036329, "stop_desc": "190-192 BOULEVARD ALSACE LORRAINE - 93064", "stop_name": "LES MARNAUDES"}, "geometry": {"type": "Point", "coordinates": [2.4904778963421714, 48.88324072702506]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fba337fc8a5b212bd3e32438cf66833d4c7e84c6", "fields": {"departement": "93", "stop_lat": 48.883824240877665, "code_postal": "93077", "stop_lon": 2.5106343733176093, "coord": [48.883824240877665, 2.5106343733176093], "stop_id": 4036333, "stop_desc": "RUE GRANDE RUE - 93077", "stop_name": "CHATEAU DE VILLEMOMBLE"}, "geometry": {"type": "Point", "coordinates": [2.5106343733176093, 48.883824240877665]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0bdd78ca2a4e90f8ee8057b268cafcb2d61a9b02", "fields": {"departement": "77", "stop_lat": 48.86893998350323, "code_postal": "77108", "stop_lon": 2.574028725109295, "coord": [48.86893998350323, 2.574028725109295], "stop_id": 4036345, "stop_desc": "1 AVENUE DU MARECHAL FOCH - 77108", "stop_name": "RUE DU PORT"}, "geometry": {"type": "Point", "coordinates": [2.574028725109295, 48.86893998350323]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b3e57b8e73fb465e3d674c46ee2d4276a454535e", "fields": {"departement": "93", "stop_lat": 48.86179640590272, "code_postal": "93048", "stop_lon": 2.4409821703623398, "coord": [48.86179640590272, 2.4409821703623398], "stop_id": 4036617, "stop_desc": "2 BOULEVARD ROUGET DE LISLE - 93048", "stop_name": "MAIRIE DE MONTREUIL - ROUGET DE LISLE"}, "geometry": {"type": "Point", "coordinates": [2.4409821703623398, 48.86179640590272]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "97fc9d28bdd56d05e7b56baa56aeb00300b9cf6c", "fields": {"departement": "93", "stop_lat": 48.858522424684516, "code_postal": "93048", "stop_lon": 2.4333208356182703, "coord": [48.858522424684516, 2.4333208356182703], "stop_id": 4036620, "stop_desc": "50 BOULEVARD CHANZY - 93048", "stop_name": "MARCHE DE MONTREUIL"}, "geometry": {"type": "Point", "coordinates": [2.4333208356182703, 48.858522424684516]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "73a93d6863df745317cca72b74d4f17f7a812d22", "fields": {"departement": "75", "stop_lat": 48.864785410194465, "code_postal": "75120", "stop_lon": 2.4096433309569973, "coord": [48.864785410194465, 2.4096433309569973], "stop_id": 4036625, "stop_desc": "FACE 4 AVENUE DE LA PORTE DE BAGNOLET - 75120", "stop_name": "PORTE DE BAGNOLET"}, "geometry": {"type": "Point", "coordinates": [2.4096433309569973, 48.864785410194465]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f1c6e74d75cfad17bce018d5b16f2da3ec69b468", "fields": {"departement": "75", "stop_lat": 48.864811541241586, "code_postal": "75120", "stop_lon": 2.3946725014354397, "coord": [48.864811541241586, 2.3946725014354397], "stop_id": 4036629, "stop_desc": "AVENUE GAMBETTA - 75120", "stop_name": "MARTIN NADAUD"}, "geometry": {"type": "Point", "coordinates": [2.3946725014354397, 48.864811541241586]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e413120fb2bf54b4687829142c1eafbf7f142c6c", "fields": {"departement": "75", "stop_lat": 48.858938104417646, "code_postal": "75111", "stop_lon": 2.384872702577642, "coord": [48.858938104417646, 2.384872702577642], "stop_id": 4036634, "stop_desc": "FACE 166 RUE DE LA ROQUETTE - 75111", "stop_name": "SAINT MAUR - SERVAN"}, "geometry": {"type": "Point", "coordinates": [2.384872702577642, 48.858938104417646]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8de4ca1821f22b031f7addd0a6a0442e840b0ef4", "fields": {"departement": "75", "stop_lat": 48.85301826641808, "code_postal": "75111", "stop_lon": 2.377009011046008, "coord": [48.85301826641808, 2.377009011046008], "stop_id": 4036637, "stop_desc": "111 AVENUE LEDRU ROLLIN - 75111", "stop_name": "CHARONNE - KELLER"}, "geometry": {"type": "Point", "coordinates": [2.377009011046008, 48.85301826641808]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e1537e37add0b069c11ea9e05bed705114d57268", "fields": {"departement": "75", "stop_lat": 48.84598203749001, "code_postal": "75112", "stop_lon": 2.3739805748450498, "coord": [48.84598203749001, 2.3739805748450498], "stop_id": 4036640, "stop_desc": "FACE 23BIS BOULEVARD DIDEROT - 75112", "stop_name": "GARE DE LYON - DIDEROT"}, "geometry": {"type": "Point", "coordinates": [2.3739805748450498, 48.84598203749001]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f1a173c5bab68b9bd7fc69725abe712c76d528b3", "fields": {"departement": "75", "stop_lat": 48.85239140153054, "code_postal": "75112", "stop_lon": 2.369545320283473, "coord": [48.85239140153054, 2.369545320283473], "stop_id": 4036642, "stop_desc": "RUE DE LYON - 75112", "stop_name": "BASTILLE"}, "geometry": {"type": "Point", "coordinates": [2.369545320283473, 48.85239140153054]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f5e7391ed43f93aed1d2813872232795ae7fa1b4", "fields": {"departement": "75", "stop_lat": 48.85337130716259, "code_postal": "75104", "stop_lon": 2.368524486324227, "coord": [48.85337130716259, 2.368524486324227], "stop_id": 4036643, "stop_desc": "3 BIS PLACE DE LA BASTILLE - 75104", "stop_name": "BASTILLE - RUE SAINT-ANTOINE"}, "geometry": {"type": "Point", "coordinates": [2.368524486324227, 48.85337130716259]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "53bd92cda72315c819b2b7f630e9a5993a296140", "fields": {"departement": "75", "stop_lat": 48.85386641123812, "code_postal": "75104", "stop_lon": 2.365337849043121, "coord": [48.85386641123812, 2.365337849043121], "stop_id": 4036644, "stop_desc": "32 RUE SAINT-ANTOINE - 75104", "stop_name": "BIRAGUE"}, "geometry": {"type": "Point", "coordinates": [2.365337849043121, 48.85386641123812]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3a0fe27a8d4a36252d37454dd9384656b116f3c0", "fields": {"departement": "75", "stop_lat": 48.86336033166581, "code_postal": "75101", "stop_lon": 2.3422402882400415, "coord": [48.86336033166581, 2.3422402882400415], "stop_id": 4036651, "stop_desc": "42 RUE DU LOUVRE - 75101", "stop_name": "COQUILLIERE - LES HALLES"}, "geometry": {"type": "Point", "coordinates": [2.3422402882400415, 48.86336033166581]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ce893c358da8fd57e56f22c53902f2fdccc77f84", "fields": {"departement": "75", "stop_lat": 48.87395603688644, "code_postal": "75108", "stop_lon": 2.3265729484538205, "coord": [48.87395603688644, 2.3265729484538205], "stop_id": 4036660, "stop_desc": "74-76 BOULEVARD HAUSSMANN - 75108", "stop_name": "ROME - HAUSSMANN"}, "geometry": {"type": "Point", "coordinates": [2.3265729484538205, 48.87395603688644]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "be959193afea7ed8bc2c606fdfd8e4c55bcd5341", "fields": {"departement": "75", "stop_lat": 48.88789708721117, "code_postal": "75117", "stop_lon": 2.2945571394886106, "coord": [48.88789708721117, 2.2945571394886106], "stop_id": 4036666, "stop_desc": "RUE DE COURCELLES - 75117", "stop_name": "PORTE DE COURCELLES"}, "geometry": {"type": "Point", "coordinates": [2.2945571394886106, 48.88789708721117]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "be2409cad7028f99f81d7bb2fd8aac8a0714eebf", "fields": {"departement": "92", "stop_lat": 48.913025400714396, "code_postal": "92004", "stop_lon": 2.2955454150474894, "coord": [48.913025400714396, 2.2955454150474894], "stop_id": 4036723, "stop_desc": "FACE 24 BOULEVARD VOLTAIRE - 92004", "stop_name": "PLACE VOLTAIRE"}, "geometry": {"type": "Point", "coordinates": [2.2955454150474894, 48.913025400714396]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "089d84f7990fbd9e64851d3ebdb899b183cccb06", "fields": {"departement": "75", "stop_lat": 48.881199633166666, "code_postal": "75108", "stop_lon": 2.3250044012022726, "coord": [48.881199633166666, 2.3250044012022726], "stop_id": 4036743, "stop_desc": "11 BIS-13 RUE DE SAINT-PETERSBOURG - 75108", "stop_name": "BUCAREST"}, "geometry": {"type": "Point", "coordinates": [2.3250044012022726, 48.881199633166666]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e1129cf91c2c23e23ba81eab3779248af3e021d1", "fields": {"departement": "75", "stop_lat": 48.87219478360626, "code_postal": "75109", "stop_lon": 2.3300338573501684, "coord": [48.87219478360626, 2.3300338573501684], "stop_id": 4036753, "stop_desc": "8 RUE AUBER - 75109", "stop_name": "AUBER"}, "geometry": {"type": "Point", "coordinates": [2.3300338573501684, 48.87219478360626]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cb987f2699965bbedb2d8136f652141810a8b915", "fields": {"departement": "75", "stop_lat": 48.87123321218385, "code_postal": "75109", "stop_lon": 2.3313418899103016, "coord": [48.87123321218385, 2.3313418899103016], "stop_id": 4036754, "stop_desc": "3 R AUBER - 75109", "stop_name": "OPERA"}, "geometry": {"type": "Point", "coordinates": [2.3313418899103016, 48.87123321218385]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "25929e7335169247b7d2d9283236070cbb1abcca", "fields": {"departement": "75", "stop_lat": 48.87088277826318, "code_postal": "75109", "stop_lon": 2.333031287561144, "coord": [48.87088277826318, 2.333031287561144], "stop_id": 4036755, "stop_desc": "6 BOULEVARD DES CAPUCINES - 75109", "stop_name": "OPERA"}, "geometry": {"type": "Point", "coordinates": [2.333031287561144, 48.87088277826318]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f3361d7e833c9405a58ff3290eed179852533018", "fields": {"departement": "75", "stop_lat": 48.86917525585135, "code_postal": "75102", "stop_lon": 2.3381810732063615, "coord": [48.86917525585135, 2.3381810732063615], "stop_id": 4036757, "stop_desc": "7 RUE DU 4 SEPTEMBRE - 75102", "stop_name": "RICHELIEU - 4 SEPTEMBRE"}, "geometry": {"type": "Point", "coordinates": [2.3381810732063615, 48.86917525585135]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2c70938532def002bf02dba97e57b169c154e77c", "fields": {"departement": "75", "stop_lat": 48.8686000083944, "code_postal": "75102", "stop_lon": 2.341069192464145, "coord": [48.8686000083944, 2.341069192464145], "stop_id": 4036758, "stop_desc": "11 PLACE DE LA BOURSE - 75102", "stop_name": "BOURSE"}, "geometry": {"type": "Point", "coordinates": [2.341069192464145, 48.8686000083944]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5db94f62c99b02c27466aff3d85cfd6547404247", "fields": {"departement": "75", "stop_lat": 48.86788990126235, "code_postal": "75102", "stop_lon": 2.3435757843603318, "coord": [48.86788990126235, 2.3435757843603318], "stop_id": 4036759, "stop_desc": "85 RUE MONTMARTRE - 75102", "stop_name": "REAUMUR - MONTMARTRE"}, "geometry": {"type": "Point", "coordinates": [2.3435757843603318, 48.86788990126235]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7e23a29b50a305be6165ee5838c677206b27d2de", "fields": {"departement": "75", "stop_lat": 48.8645556407801, "code_postal": "75101", "stop_lon": 2.3425264691880536, "coord": [48.8645556407801, 2.3425264691880536], "stop_id": 4036761, "stop_desc": "19 RUE DU LOUVRE - 75101", "stop_name": "LOUVRE - ETIENNE MARCEL"}, "geometry": {"type": "Point", "coordinates": [2.3425264691880536, 48.8645556407801]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7e16c97ca09d929fde963ec9dbfec6a2d2a0a71d", "fields": {"departement": "75", "stop_lat": 48.85678114513896, "code_postal": "75104", "stop_lon": 2.348259761089279, "coord": [48.85678114513896, 2.348259761089279], "stop_id": 4036767, "stop_desc": "FACE 14 QUAI DE GESVRES - 75104", "stop_name": "CHATELET"}, "geometry": {"type": "Point", "coordinates": [2.348259761089279, 48.85678114513896]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b4ae1e1d565fdc3d855b28a546aed8e8eebb9c8a", "fields": {"departement": "75", "stop_lat": 48.85709549291431, "code_postal": "75104", "stop_lon": 2.3503573433471843, "coord": [48.85709549291431, 2.3503573433471843], "stop_id": 4036769, "stop_desc": "02 AVENUE VICTORIA - 75104", "stop_name": "CHATELET."}, "geometry": {"type": "Point", "coordinates": [2.3503573433471843, 48.85709549291431]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "394a36f7fc3c617b23de44f4746e55530f9c4a43", "fields": {"departement": "75", "stop_lat": 48.85059796516235, "code_postal": "75105", "stop_lon": 2.345984155428729, "coord": [48.85059796516235, 2.345984155428729], "stop_id": 4036772, "stop_desc": "63 BD SAINT-GERMAIN - 75105", "stop_name": "DANTE"}, "geometry": {"type": "Point", "coordinates": [2.345984155428729, 48.85059796516235]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c871b8e03ad99ddb1d581e6bf81a98614f3e48ed", "fields": {"departement": "75", "stop_lat": 48.84944725540877, "code_postal": "75105", "stop_lon": 2.3495246995987396, "coord": [48.84944725540877, 2.3495246995987396], "stop_id": 4036774, "stop_desc": "3 RUE MONGE - 75105", "stop_name": "MAUBERT - MUTUALITE"}, "geometry": {"type": "Point", "coordinates": [2.3495246995987396, 48.84944725540877]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "08e22666538e42398fd0c7dd508a0acaaab1836b", "fields": {"departement": "75", "stop_lat": 48.82764247186972, "code_postal": "75113", "stop_lon": 2.356679718554963, "coord": [48.82764247186972, 2.356679718554963], "stop_id": 4036788, "stop_desc": "52 AVENUE D'ITALIE - 75113", "stop_name": "VANDREZANNE"}, "geometry": {"type": "Point", "coordinates": [2.356679718554963, 48.82764247186972]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "08045837150c0d8c627b44643e35b3c78b0243b2", "fields": {"departement": "75", "stop_lat": 48.828172718149084, "code_postal": "75113", "stop_lon": 2.356829656095805, "coord": [48.828172718149084, 2.356829656095805], "stop_id": 4036789, "stop_desc": "27 AVENUE D'ITALIE - 75113", "stop_name": "VANDREZANNE"}, "geometry": {"type": "Point", "coordinates": [2.356829656095805, 48.828172718149084]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "55688f53f8b3bd7bf7d9a298c1e8e5bb925f3935", "fields": {"departement": "75", "stop_lat": 48.8263661608696, "code_postal": "75113", "stop_lon": 2.357073993586242, "coord": [48.8263661608696, 2.357073993586242], "stop_id": 4036790, "stop_desc": "92-94 AVENUE D'ITALIE - 75113", "stop_name": "ITALIE - TOLBIAC"}, "geometry": {"type": "Point", "coordinates": [2.357073993586242, 48.8263661608696]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "748a9964f4eb80afdd7e538e2a8e9b4f31ce14d2", "fields": {"departement": "94", "stop_lat": 48.814771316142455, "code_postal": "94043", "stop_lon": 2.361002603265579, "coord": [48.814771316142455, 2.361002603265579], "stop_id": 4036799, "stop_desc": "17 AVENUE DE FONTAINEBLEAU - 94043", "stop_name": "ROGER SALENGRO - FONTAINEBLEAU"}, "geometry": {"type": "Point", "coordinates": [2.361002603265579, 48.814771316142455]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d263faad01ec97470d805193ed5b8fabd8be405e", "fields": {"departement": "94", "stop_lat": 48.81209279119115, "code_postal": "94043", "stop_lon": 2.361872316889022, "coord": [48.81209279119115, 2.361872316889022], "stop_id": 4036801, "stop_desc": "41-43 AVENUE DE FONTAINEBLEAU - 94043", "stop_name": "CONVENTION - FONTAINEBLEAU"}, "geometry": {"type": "Point", "coordinates": [2.361872316889022, 48.81209279119115]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2ce00e62097855e4a60bbf979d4c51e217d8a53a", "fields": {"departement": "94", "stop_lat": 48.804830185116614, "code_postal": "94076", "stop_lon": 2.364086735660601, "coord": [48.804830185116614, 2.364086735660601], "stop_id": 4036805, "stop_desc": "AVENUE DE PARIS - 94076", "stop_name": "DAUPHIN - ANATOLE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.364086735660601, 48.804830185116614]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d72745ec7adc9410ee7bf9bff5a1f97a83af3476", "fields": {"departement": "94", "stop_lat": 48.80237644371773, "code_postal": "94076", "stop_lon": 2.3643847967808878, "coord": [48.80237644371773, 2.3643847967808878], "stop_id": 4036806, "stop_desc": "62 AVENUE DE PARIS - 94076", "stop_name": "HENRI BARBUSSE"}, "geometry": {"type": "Point", "coordinates": [2.3643847967808878, 48.80237644371773]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ef03dbfe1fe59b80afff310fa753d7b681ef5498", "fields": {"departement": "94", "stop_lat": 48.7992481272412, "code_postal": "94076", "stop_lon": 2.3666960218389126, "coord": [48.7992481272412, 2.3666960218389126], "stop_id": 4036809, "stop_desc": "9 BOULEVARD MAXIME GORKI - 94076", "stop_name": "DISPENSAIRE DANIELLE CASANOVA"}, "geometry": {"type": "Point", "coordinates": [2.3666960218389126, 48.7992481272412]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e6f48b94376207abedd5bf1d1eecfc89c83e7156", "fields": {"departement": "94", "stop_lat": 48.79221063758954, "code_postal": "94076", "stop_lon": 2.3666376189108953, "coord": [48.79221063758954, 2.3666376189108953], "stop_id": 4036812, "stop_desc": "85 RUE JEAN JAURES - 94076", "stop_name": "GUYNEMER - PLACE DES FUSILLES"}, "geometry": {"type": "Point", "coordinates": [2.3666376189108953, 48.79221063758954]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b75db8d145ef39f2f408a443e28a800ed65c0a6c", "fields": {"departement": "75", "stop_lat": 48.83725093710796, "code_postal": "75105", "stop_lon": 2.3516729882807454, "coord": [48.83725093710796, 2.3516729882807454], "stop_id": 4036818, "stop_desc": "21 AVENUE DES GOBELINS - 75105", "stop_name": "LES GOBELINS"}, "geometry": {"type": "Point", "coordinates": [2.3516729882807454, 48.83725093710796]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "44a4611672d12cd3015993b9e0a7de5e007c4b68", "fields": {"departement": "75", "stop_lat": 48.85534333466014, "code_postal": "75104", "stop_lon": 2.346107532202977, "coord": [48.85534333466014, 2.346107532202977], "stop_id": 4036821, "stop_desc": "1 BOULEVARD DU PALAIS - 75104", "stop_name": "CITE - PALAIS DE JUSTICE"}, "geometry": {"type": "Point", "coordinates": [2.346107532202977, 48.85534333466014]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4c79afe79de1a969f7da56dd910a88dc021ce988", "fields": {"departement": "75", "stop_lat": 48.87066702165196, "code_postal": "75102", "stop_lon": 2.342935804602398, "coord": [48.87066702165196, 2.342935804602398], "stop_id": 4036824, "stop_desc": "170 RUE MONTMARTRE - 75102", "stop_name": "GRANDS BOULEVARDS"}, "geometry": {"type": "Point", "coordinates": [2.342935804602398, 48.87066702165196]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8c83ad2d8f8eff4bebbc6a403183ca8102e75df3", "fields": {"departement": "93", "stop_lat": 48.91197216252709, "code_postal": "93070", "stop_lon": 2.3333551706347166, "coord": [48.91197216252709, 2.3333551706347166], "stop_id": 4036834, "stop_desc": "PLACE DE LA REPUBLIQUE - 93070", "stop_name": "MAIRIE DE SAINT-OUEN"}, "geometry": {"type": "Point", "coordinates": [2.3333551706347166, 48.91197216252709]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "064bdad02a1ddfa44a206346601f17f1e9544725", "fields": {"departement": "93", "stop_lat": 48.90900642715508, "code_postal": "93070", "stop_lon": 2.3329600113604876, "coord": [48.90900642715508, 2.3329600113604876], "stop_id": 4036837, "stop_desc": "37 BIS AVENUE GABRIEL PERI - 93070", "stop_name": "ERNEST RENAN"}, "geometry": {"type": "Point", "coordinates": [2.3329600113604876, 48.90900642715508]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4f9004e09fd3b44aef8d065e9d11f56a9f57610a", "fields": {"departement": "93", "stop_lat": 48.902922217984674, "code_postal": "93070", "stop_lon": 2.3341465235619183, "coord": [48.902922217984674, 2.3341465235619183], "stop_id": 4036841, "stop_desc": "37 RUE CHARLES SCHMIDT - 93070", "stop_name": "KLEBER"}, "geometry": {"type": "Point", "coordinates": [2.3341465235619183, 48.902922217984674]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "67d0119a2ef55250f2a7967715d0dce64c9617fc", "fields": {"departement": "75", "stop_lat": 48.90073837978418, "code_postal": "75118", "stop_lon": 2.3354689295827047, "coord": [48.90073837978418, 2.3354689295827047], "stop_id": 4036843, "stop_desc": "AVENUE DE LA PORTE DE MONTMARTRE - 75118", "stop_name": "GERARD DE NERVAL"}, "geometry": {"type": "Point", "coordinates": [2.3354689295827047, 48.90073837978418]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3b51d220f7899b222702edccc6e77322053c8448", "fields": {"departement": "75", "stop_lat": 48.897062389876794, "code_postal": "75118", "stop_lon": 2.3452831852737237, "coord": [48.897062389876794, 2.3452831852737237], "stop_id": 4036849, "stop_desc": "80 BOULEVARD ORNANO - 75118", "stop_name": "PORTE DE CLIGNANCOURT"}, "geometry": {"type": "Point", "coordinates": [2.3452831852737237, 48.897062389876794]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e9ba908d5381c30dfa9e414c4ea2fdb6497d5b45", "fields": {"departement": "75", "stop_lat": 48.89422230110277, "code_postal": "75118", "stop_lon": 2.3472727234785546, "coord": [48.89422230110277, 2.3472727234785546], "stop_id": 4036850, "stop_desc": "29 BOULEVARD ORNANO - 75118", "stop_name": "SIMPLON"}, "geometry": {"type": "Point", "coordinates": [2.3472727234785546, 48.89422230110277]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "24eb91efa3fadb9c2243e846c091b06038d43672", "fields": {"departement": "75", "stop_lat": 48.88409354700711, "code_postal": "75118", "stop_lon": 2.349287609746963, "coord": [48.88409354700711, 2.349287609746963], "stop_id": 4036856, "stop_desc": "5 BOULEVARD BARBES - 75118", "stop_name": "BARBES - ROCHECHOUART"}, "geometry": {"type": "Point", "coordinates": [2.349287609746963, 48.88409354700711]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d1d9e9a55ac19ed5f8ca947680c39920f197cdc0", "fields": {"departement": "75", "stop_lat": 48.868778444624105, "code_postal": "75110", "stop_lon": 2.355332800316335, "coord": [48.868778444624105, 2.355332800316335], "stop_id": 4036865, "stop_desc": "FACE 326 RUE SAINT-MARTIN - 75110", "stop_name": "PORTE SAINT-MARTIN"}, "geometry": {"type": "Point", "coordinates": [2.355332800316335, 48.868778444624105]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "676f8f6b084eb05bf1b7531beba8b44390e29d89", "fields": {"departement": "75", "stop_lat": 48.86287390987719, "code_postal": "75103", "stop_lon": 2.354213758372903, "coord": [48.86287390987719, 2.354213758372903], "stop_id": 4036867, "stop_desc": "59 RUE BEAUBOURG - 75103", "stop_name": "GRENIER SAINT-LAZARE - QUARTIER DE L'HORLOGE"}, "geometry": {"type": "Point", "coordinates": [2.354213758372903, 48.86287390987719]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5623fe0c16848eb85e5ec03d615893c597a7a2bc", "fields": {"departement": "75", "stop_lat": 48.8575540203187, "code_postal": "75104", "stop_lon": 2.3487230170535773, "coord": [48.8575540203187, 2.3487230170535773], "stop_id": 4036869, "stop_desc": "FACE 15 AVENUE VICTORIA - 75104", "stop_name": "CHATELET"}, "geometry": {"type": "Point", "coordinates": [2.3487230170535773, 48.8575540203187]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ce1e0610b0801d86003fb7ec7a073cfb58a1978b", "fields": {"departement": "75", "stop_lat": 48.855415256092286, "code_postal": "75101", "stop_lon": 2.3458079091124455, "coord": [48.855415256092286, 2.3458079091124455], "stop_id": 4036871, "stop_desc": "FACE 1 BOULEVARD DU PALAIS - 75101", "stop_name": "CITE - PALAIS DE JUSTICE"}, "geometry": {"type": "Point", "coordinates": [2.3458079091124455, 48.855415256092286]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2473d158f1ecf07c0c5781fb8ece297a6d6e4033", "fields": {"departement": "75", "stop_lat": 48.85247650155603, "code_postal": "75106", "stop_lon": 2.3435194294224857, "coord": [48.85247650155603, 2.3435194294224857], "stop_id": 4036872, "stop_desc": "10 BOULEVARD SAINT-MICHEL - 75106", "stop_name": "SAINT-MICHEL - SAINT-GERMAIN"}, "geometry": {"type": "Point", "coordinates": [2.3435194294224857, 48.85247650155603]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f3fb199e8ea1698c5d3c6e39edfc1406bea2118a", "fields": {"departement": "75", "stop_lat": 48.846634763899694, "code_postal": "75106", "stop_lon": 2.340250527561508, "coord": [48.846634763899694, 2.340250527561508], "stop_id": 4036874, "stop_desc": "FACE 71 BOULEVARD SAINT-MICHEL - 75106", "stop_name": "LUXEMBOURG"}, "geometry": {"type": "Point", "coordinates": [2.340250527561508, 48.846634763899694]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "65c67d14202afc6e10b75c402d037112fc7e3c88", "fields": {"departement": "75", "stop_lat": 48.82735598995444, "code_postal": "75114", "stop_lon": 2.326759500564941, "coord": [48.82735598995444, 2.326759500564941], "stop_id": 4036890, "stop_desc": "83-85 AVENUE DU GENERAL LECLERC - 75114", "stop_name": "ALESIA - GENERAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.326759500564941, 48.82735598995444]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6abd7968e13e41894ade09b6f91fa83df391cc72", "fields": {"departement": "92", "stop_lat": 48.813532857337734, "code_postal": "92049", "stop_lon": 2.326122681236126, "coord": [48.813532857337734, 2.326122681236126], "stop_id": 4036897, "stop_desc": "105 AVENUE ARISTIDE BRIAND - 92049", "stop_name": "LEON GAMBETTA"}, "geometry": {"type": "Point", "coordinates": [2.326122681236126, 48.813532857337734]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1cbc5adf513de5795e77aaaf1f04ab9dd085b241", "fields": {"departement": "92", "stop_lat": 48.80103955903768, "code_postal": "92007", "stop_lon": 2.3235267038195793, "coord": [48.80103955903768, 2.3235267038195793], "stop_id": 4036901, "stop_desc": "FACE 1 AVENUE ARISTIDE BRIAND - 92007", "stop_name": "GRANGE ORY"}, "geometry": {"type": "Point", "coordinates": [2.3235267038195793, 48.80103955903768]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a6bd17fa4221f15fe8702cb4acfc8f5d8cef6019", "fields": {"departement": "92", "stop_lat": 48.79951155253117, "code_postal": "92007", "stop_lon": 2.322901271964075, "coord": [48.79951155253117, 2.322901271964075], "stop_id": 4036902, "stop_desc": "116 AVENUE ARISTIDE BRIAND - 92007", "stop_name": "CARNOT - ARISTIDE BRIAND"}, "geometry": {"type": "Point", "coordinates": [2.322901271964075, 48.79951155253117]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "95c8e7b23986aca5f1405c23fc2a4ac745c51a31", "fields": {"departement": "92", "stop_lat": 48.795754436146936, "code_postal": "92007", "stop_lon": 2.3213922506374303, "coord": [48.795754436146936, 2.3213922506374303], "stop_id": 4036903, "stop_desc": "168-170 AVENUE ARISTIDE BRIAND - 92007", "stop_name": "MARCEL BONNET"}, "geometry": {"type": "Point", "coordinates": [2.3213922506374303, 48.795754436146936]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "780d1b2ec6cdb3ea2c9e8f17f09f4d0352427c94", "fields": {"departement": "92", "stop_lat": 48.79369610412017, "code_postal": "92007", "stop_lon": 2.3206038703652614, "coord": [48.79369610412017, 2.3206038703652614], "stop_id": 4036904, "stop_desc": "206-208 AVENUE ARISTIDE BRIAND - 92007", "stop_name": "PONT ROYAL - RER"}, "geometry": {"type": "Point", "coordinates": [2.3206038703652614, 48.79369610412017]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9f430b55005eb4f2103e5ab83489b1eb772c0de5", "fields": {"departement": "92", "stop_lat": 48.77960219728907, "code_postal": "92014", "stop_lon": 2.315508420878453, "coord": [48.77960219728907, 2.315508420878453], "stop_id": 4036912, "stop_desc": "PLACE CONDORCET - 92014", "stop_name": "CONDORCET - MAIRIE-RER"}, "geometry": {"type": "Point", "coordinates": [2.315508420878453, 48.77960219728907]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c87ad773490c99449d452021699e25056e75afaf", "fields": {"departement": "94", "stop_lat": 48.801668773295894, "code_postal": "94003", "stop_lon": 2.3241115821868807, "coord": [48.801668773295894, 2.3241115821868807], "stop_id": 4036918, "stop_desc": "127 AVENUE ARISTIDE BRIAND - 94003", "stop_name": "GRANGE ORY"}, "geometry": {"type": "Point", "coordinates": [2.3241115821868807, 48.801668773295894]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8579e6b30935d0c4f1bdeec31c477fdd2f11a6d5", "fields": {"departement": "75", "stop_lat": 48.84075687740633, "code_postal": "75114", "stop_lon": 2.33284311590315, "coord": [48.84075687740633, 2.33284311590315], "stop_id": 4036921, "stop_desc": "150 BOULEVARD DU MONTPARNASSE - 75114", "stop_name": "CAMPAGNE PREMIERE"}, "geometry": {"type": "Point", "coordinates": [2.33284311590315, 48.84075687740633]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "04f9f9cd9f88d15a529358f3f2efa721a6e5b328", "fields": {"departement": "75", "stop_lat": 48.843552071590224, "code_postal": "75105", "stop_lon": 2.3389295319749386, "coord": [48.843552071590224, 2.3389295319749386], "stop_id": 4036924, "stop_desc": "109 BOULEVARD SAINT MICHEL - 75105", "stop_name": "AUGUSTE COMTE"}, "geometry": {"type": "Point", "coordinates": [2.3389295319749386, 48.843552071590224]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "db882039d56d1f323cd2cb4b8f50908bfa0e0acc", "fields": {"departement": "93", "stop_lat": 48.90748037088362, "code_postal": "93008", "stop_lon": 2.448885619248054, "coord": [48.90748037088362, 2.448885619248054], "stop_id": 4036936, "stop_desc": "PISTE GARE ROUTIERE - 93008", "stop_name": "BOBIGNY - PABLO PICASSO"}, "geometry": {"type": "Point", "coordinates": [2.448885619248054, 48.90748037088362]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ea08274c068d306d2b579c1c1fb5b59c3ce8a35c", "fields": {"departement": "93", "stop_lat": 48.90946775056652, "code_postal": "93008", "stop_lon": 2.447553768193413, "coord": [48.90946775056652, 2.447553768193413], "stop_id": 4036938, "stop_desc": "AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "PIERRE SEMARD"}, "geometry": {"type": "Point", "coordinates": [2.447553768193413, 48.90946775056652]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ba810b3f56f7bacb793ab7942238b885a2f88d39", "fields": {"departement": "93", "stop_lat": 48.911252186179276, "code_postal": "93008", "stop_lon": 2.4420083335197096, "coord": [48.911252186179276, 2.4420083335197096], "stop_id": 4036939, "stop_desc": "AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "LIEUTENANT LEBRUN"}, "geometry": {"type": "Point", "coordinates": [2.4420083335197096, 48.911252186179276]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3096f34460110dc5e5cd0c9e54d5722597c64b9f", "fields": {"departement": "93", "stop_lat": 48.91212795519052, "code_postal": "93008", "stop_lon": 2.4373197639788775, "coord": [48.91212795519052, 2.4373197639788775], "stop_id": 4036942, "stop_desc": "AV PAUL VAILLANT COUTURIER - 93008", "stop_name": "ESCADRILLE NORMANDIE NIEMEN - PAUL VAILLANT COUTURIER-TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.4373197639788775, 48.91212795519052]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c384464015c8b8358aa20ce634e9984d951eab96", "fields": {"departement": "93", "stop_lat": 48.91235422836199, "code_postal": "93008", "stop_lon": 2.435397698576254, "coord": [48.91235422836199, 2.435397698576254], "stop_id": 4036943, "stop_desc": "FACE 230 AVENUE HENRI BARBUSSE - 93008", "stop_name": "ESCADRILLE NORMANDIE NIEMEN - JEAN JAURES-TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.435397698576254, 48.91235422836199]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9175188d0c2d0a67594c90888aed2eabac1adc3b", "fields": {"departement": "93", "stop_lat": 48.90189991672069, "code_postal": "93055", "stop_lon": 2.4141119526047987, "coord": [48.90189991672069, 2.4141119526047987], "stop_id": 4036953, "stop_desc": "182 AVENUE DU GENERAL LECLERC - 93055", "stop_name": "CIMETIERE PARISIEN"}, "geometry": {"type": "Point", "coordinates": [2.4141119526047987, 48.90189991672069]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c6ae75249e4f4d553758f928cdf4b7d71f53aa67", "fields": {"departement": "93", "stop_lat": 48.89997054613696, "code_postal": "93055", "stop_lon": 2.4095425364246923, "coord": [48.89997054613696, 2.4095425364246923], "stop_id": 4036954, "stop_desc": "83 AVENUE DU GENERAL LECLERC - 93055", "stop_name": "DIDEROT"}, "geometry": {"type": "Point", "coordinates": [2.4095425364246923, 48.89997054613696]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "116689392c3c058fb31e21cb9a835bd5f31421fc", "fields": {"departement": "93", "stop_lat": 48.896658925161226, "code_postal": "93055", "stop_lon": 2.4014549509994745, "coord": [48.896658925161226, 2.4014549509994745], "stop_id": 4036958, "stop_desc": "FACE 80 AVENUE DU GENERAL LECLERC - 93055", "stop_name": "PANTIN RER - MAIRIE"}, "geometry": {"type": "Point", "coordinates": [2.4014549509994745, 48.896658925161226]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "00cde05b35245ac326b95c6d86d891a2b037c588", "fields": {"departement": "92", "stop_lat": 48.80622881995387, "code_postal": "92020", "stop_lon": 2.297957992282904, "coord": [48.80622881995387, 2.297957992282904], "stop_id": 5423658, "stop_desc": "AVENUE DE LA REPUBLIQUE - 92020", "stop_name": "PIERRE SEMARD"}, "geometry": {"type": "Point", "coordinates": [2.297957992282904, 48.80622881995387]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "58b35e21438a7d67022a28ea004bd93d60ca372d", "fields": {"departement": "92", "stop_lat": 48.79598046005003, "code_postal": "92032", "stop_lon": 2.2917078144657896, "coord": [48.79598046005003, 2.2917078144657896], "stop_id": 5423666, "stop_desc": "63-65 RUE BLANCHARD - 92032", "stop_name": "CHARTRES - BLANCHARD"}, "geometry": {"type": "Point", "coordinates": [2.2917078144657896, 48.79598046005003]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4391477ae02ab5be9decab31ed69273c5eac7908", "fields": {"departement": "92", "stop_lat": 48.794900379219925, "code_postal": "92020", "stop_lon": 2.287858852506314, "coord": [48.794900379219925, 2.287858852506314], "stop_id": 5423667, "stop_desc": "FACE 17 RUE DES PIERRELAIS - 92020", "stop_name": "PIERRELAIS - BLANCHARD"}, "geometry": {"type": "Point", "coordinates": [2.287858852506314, 48.794900379219925]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f9b72922dc0ad5907fdcb69cd5c06c7833dac745", "fields": {"departement": "92", "stop_lat": 48.79787526636481, "code_postal": "92020", "stop_lon": 2.2876247427945486, "coord": [48.79787526636481, 2.2876247427945486], "stop_id": 5423669, "stop_desc": "FACE 1 RUE DES PIERRELAIS - 92020", "stop_name": "PIERRELAIS - FONTENAY"}, "geometry": {"type": "Point", "coordinates": [2.2876247427945486, 48.79787526636481]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "80e567e282ea36b36f947d984ae66a4b399dcb80", "fields": {"departement": "92", "stop_lat": 48.797594084137074, "code_postal": "92020", "stop_lon": 2.281829440896584, "coord": [48.797594084137074, 2.281829440896584], "stop_id": 5423674, "stop_desc": "FACE 37 AVENUE DE LA DIVISION LECLERC - 92020", "stop_name": "LES SABLONS"}, "geometry": {"type": "Point", "coordinates": [2.281829440896584, 48.797594084137074]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9bc7d45e40c749b87da01f01e0b2a70367e1f3c6", "fields": {"departement": "92", "stop_lat": 48.78948039145754, "code_postal": "92023", "stop_lon": 2.269092555647171, "coord": [48.78948039145754, 2.269092555647171], "stop_id": 5423679, "stop_desc": "2 BOULEVARD DU MOULIN DE LA TOUR - 92023", "stop_name": "LOUIS PERGAUD"}, "geometry": {"type": "Point", "coordinates": [2.269092555647171, 48.78948039145754]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1c1a24735a80f1433ba702f8cd67097a25f368e0", "fields": {"departement": "92", "stop_lat": 48.77180032988904, "code_postal": "92019", "stop_lon": 2.253886131757641, "coord": [48.77180032988904, 2.253886131757641], "stop_id": 5423693, "stop_desc": "FACE 22 AVENUE DU BOIS - 92019", "stop_name": "MAXIMILIEN ROBESPIERRE"}, "geometry": {"type": "Point", "coordinates": [2.253886131757641, 48.77180032988904]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e0b28f286d453dc3775e98b0c93c124b3bf1ba32", "fields": {"departement": "92", "stop_lat": 48.76867917458104, "code_postal": "92019", "stop_lon": 2.2506686367640447, "coord": [48.76867917458104, 2.2506686367640447], "stop_id": 5423694, "stop_desc": "6 AVENUE DE LA DIVISION LECLERC - 92019", "stop_name": "CYRANO DE BERGERAC"}, "geometry": {"type": "Point", "coordinates": [2.2506686367640447, 48.76867917458104]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e9333ccde86d0df7d0781d15fe695743b4b7172f", "fields": {"departement": "92", "stop_lat": 48.76462663033227, "code_postal": "92019", "stop_lon": 2.2658213312517548, "coord": [48.76462663033227, 2.2658213312517548], "stop_id": 5423700, "stop_desc": "293 AVENUE DE LA DIVISION LECLERC - 92019", "stop_name": "GENERAL DUVAL"}, "geometry": {"type": "Point", "coordinates": [2.2658213312517548, 48.76462663033227]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6dd4d59ea762a0cc79d5221b849811f9c00fad77", "fields": {"departement": "92", "stop_lat": 48.77302065093243, "code_postal": "92019", "stop_lon": 2.281012568764139, "coord": [48.77302065093243, 2.281012568764139], "stop_id": 5423714, "stop_desc": "5 RUE JEAN LONGUET - 92019", "stop_name": "HELENE ROEDERER"}, "geometry": {"type": "Point", "coordinates": [2.281012568764139, 48.77302065093243]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c314de395d160d3fadc1937d61958b7720696b4c", "fields": {"departement": "92", "stop_lat": 48.77612938311899, "code_postal": "92019", "stop_lon": 2.278683773355305, "coord": [48.77612938311899, 2.278683773355305], "stop_id": 5423716, "stop_desc": "63 AVENUE EDOUARD DEPREUX - 92019", "stop_name": "EDOUARD DEPREUX - ROGER SALENGRO"}, "geometry": {"type": "Point", "coordinates": [2.278683773355305, 48.77612938311899]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4d1ede4aa52d5f7407fb828d79f6f6752ec49eb8", "fields": {"departement": "92", "stop_lat": 48.776093317003124, "code_postal": "92019", "stop_lon": 2.278452631089123, "coord": [48.776093317003124, 2.278452631089123], "stop_id": 5423717, "stop_desc": "44 AVENUE EDOUARD DEPREUX - 92019", "stop_name": "EDOUARD DEPREUX - ROGER SALENGRO"}, "geometry": {"type": "Point", "coordinates": [2.278452631089123, 48.776093317003124]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "73a25e43b34526c7ab763eb00214aa3cdd0ab5fd", "fields": {"departement": "92", "stop_lat": 48.779303460940056, "code_postal": "92071", "stop_lon": 2.2814137615884182, "coord": [48.779303460940056, 2.2814137615884182], "stop_id": 5423720, "stop_desc": "3 AVENUE DE LA GARE - 92071", "stop_name": "ROBINSON RER."}, "geometry": {"type": "Point", "coordinates": [2.2814137615884182, 48.779303460940056]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "65897e0740dd04cc57ec75294193c0c97a20bcfa", "fields": {"departement": "92", "stop_lat": 48.79537992622254, "code_postal": "92032", "stop_lon": 2.2754515062396203, "coord": [48.79537992622254, 2.2754515062396203], "stop_id": 5423725, "stop_desc": "3-5 AVENUE DE LA DIVISION LECLERC - 92032", "stop_name": "CENTRE BUS"}, "geometry": {"type": "Point", "coordinates": [2.2754515062396203, 48.79537992622254]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "33d7238b857bbb0622e32ba54963178e1855ddf6", "fields": {"departement": "75", "stop_lat": 48.83219927738061, "code_postal": "75113", "stop_lon": 2.356191331508679, "coord": [48.83219927738061, 2.356191331508679], "stop_id": 5454881, "stop_desc": "169 BOULEVARD DE L'HOPITAL - 75113", "stop_name": "PLACE D'ITALIE - MAIRIE DU 13E"}, "geometry": {"type": "Point", "coordinates": [2.356191331508679, 48.83219927738061]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6350442a749ce3f798749ec83413d9fed986d0c6", "fields": {"departement": "75", "stop_lat": 48.83873312208706, "code_postal": "75105", "stop_lon": 2.3569970257346244, "coord": [48.83873312208706, 2.3569970257346244], "stop_id": 5454884, "stop_desc": "FACE 5 RUE GEOFFROY SAINT HILAIRE - 75105", "stop_name": "SAINT-MARCEL - JEANNE D'ARC"}, "geometry": {"type": "Point", "coordinates": [2.3569970257346244, 48.83873312208706]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "05f899a2044b502430c6fa564270a50f8f6b6923", "fields": {"departement": "75", "stop_lat": 48.844134964687136, "code_postal": "75105", "stop_lon": 2.354902090075552, "coord": [48.844134964687136, 2.354902090075552], "stop_id": 5454886, "stop_desc": "2-4 RUE LINNE - 75105", "stop_name": "CUVIER - JARDIN DES PLANTES"}, "geometry": {"type": "Point", "coordinates": [2.354902090075552, 48.844134964687136]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f823bca5e76a4dcc9d13819664feea282640b305", "fields": {"departement": "75", "stop_lat": 48.856465597390816, "code_postal": "75104", "stop_lon": 2.356132091980676, "coord": [48.856465597390816, 2.356132091980676], "stop_id": 5454892, "stop_desc": "38 BIS RUE DE RIVOLI - 75104", "stop_name": "RUE VIEILLE DU TEMPLE - MAIRIE DU 4E"}, "geometry": {"type": "Point", "coordinates": [2.356132091980676, 48.856465597390816]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e3c8db36cb551f44a091822d78e92ef5a1808e38", "fields": {"departement": "75", "stop_lat": 48.86336033166581, "code_postal": "75101", "stop_lon": 2.3422402882400415, "coord": [48.86336033166581, 2.3422402882400415], "stop_id": 5454897, "stop_desc": "42 RUE DU LOUVRE - 75101", "stop_name": "COQUILLIERE - LES HALLES"}, "geometry": {"type": "Point", "coordinates": [2.3422402882400415, 48.86336033166581]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "74db54de6ace8b8c0a7766d9b68eed8f1d58039b", "fields": {"departement": "75", "stop_lat": 48.86565205893974, "code_postal": "75102", "stop_lon": 2.3433847968096146, "coord": [48.86565205893974, 2.3433847968096146], "stop_id": 5454898, "stop_desc": "54 RUE DU LOUVRE - 75102", "stop_name": "LOUVRE - ETIENNE MARCEL"}, "geometry": {"type": "Point", "coordinates": [2.3433847968096146, 48.86565205893974]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e936b269e210ad7f781d71482b8d89f44124bf2f", "fields": {"departement": "75", "stop_lat": 48.849104948120974, "code_postal": "75105", "stop_lon": 2.3556119239853666, "coord": [48.849104948120974, 2.3556119239853666], "stop_id": 5454910, "stop_desc": "4 RUE DES FOSSES SAINT BERNARD - 75105", "stop_name": "INSTITUT DU MONDE ARABE"}, "geometry": {"type": "Point", "coordinates": [2.3556119239853666, 48.849104948120974]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5ce68b85ff8dfb6901f7a3b9ff49a85491785e9c", "fields": {"departement": "75", "stop_lat": 48.8416902150658, "code_postal": "75105", "stop_lon": 2.3558271590760156, "coord": [48.8416902150658, 2.3558271590760156], "stop_id": 5454917, "stop_desc": "36 BIS RUE GEOFFROY SAINT-HILAIRE - 75105", "stop_name": "BUFFON - LA MOSQUEE"}, "geometry": {"type": "Point", "coordinates": [2.3558271590760156, 48.8416902150658]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "55021168827c32c6d5c4ad5701e79b0123525247", "fields": {"departement": "75", "stop_lat": 48.838158000417195, "code_postal": "75113", "stop_lon": 2.3564930422658135, "coord": [48.838158000417195, 2.3564930422658135], "stop_id": 5454918, "stop_desc": "45-47 BOULEVARD SAINT-MARCEL - 75113", "stop_name": "SAINT-MARCEL - JEANNE D'ARC"}, "geometry": {"type": "Point", "coordinates": [2.3564930422658135, 48.838158000417195]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1bfb16a6541a8e8fa5cbc2fa4523d7d3405e6766", "fields": {"departement": "75", "stop_lat": 48.834374005977395, "code_postal": "75113", "stop_lon": 2.3578258372775394, "coord": [48.834374005977395, 2.3578258372775394], "stop_id": 5454922, "stop_desc": "141 BOULEVARD DE L'HOPITAL - 75113", "stop_name": "RUBENS - ECOLE DES ARTS ET METIERS"}, "geometry": {"type": "Point", "coordinates": [2.3578258372775394, 48.834374005977395]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a268433cae46272e9ae258d19edd899348b4c09c", "fields": {"departement": "75", "stop_lat": 48.82027398784946, "code_postal": "75114", "stop_lon": 2.343801363217265, "coord": [48.82027398784946, 2.343801363217265], "stop_id": 5454934, "stop_desc": "96 RUE DE L' AMIRAL MOUCHEZ - 75114", "stop_name": "STADE CHARLETY - PORTE DE GENTILLY"}, "geometry": {"type": "Point", "coordinates": [2.343801363217265, 48.82027398784946]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5292b4744435c5dd0b23e00a3f17b6741554f17a", "fields": {"departement": "75", "stop_lat": 48.851485428615085, "code_postal": "75104", "stop_lon": 2.3622178642019493, "coord": [48.851485428615085, 2.3622178642019493], "stop_id": 5454939, "stop_desc": "2 BIS QUAI DES CELESTINS - 75104", "stop_name": "SULLY - MORLAND"}, "geometry": {"type": "Point", "coordinates": [2.3622178642019493, 48.851485428615085]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e14dffc493e2378d05ab62cab929314d3eb254aa", "fields": {"departement": "92", "stop_lat": 48.770791352463455, "code_postal": "92019", "stop_lon": 2.280457480051415, "coord": [48.770791352463455, 2.280457480051415], "stop_id": 5478214, "stop_desc": "40-42 RUE JEAN LONGUET - 92019", "stop_name": "PRES HAUTS"}, "geometry": {"type": "Point", "coordinates": [2.280457480051415, 48.770791352463455]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4c3c1fa7802f8959edb299493a96f953a3aaeb18", "fields": {"departement": "92", "stop_lat": 48.766558053543704, "code_postal": "92019", "stop_lon": 2.2806252654114942, "coord": [48.766558053543704, 2.2806252654114942], "stop_id": 5478216, "stop_desc": "16 RUE HENRI-IRENEE MARROU - 92019", "stop_name": "RUE DES VIGNES"}, "geometry": {"type": "Point", "coordinates": [2.2806252654114942, 48.766558053543704]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f26942f6c6107a2cf41230f9fd12f8d72396a0da", "fields": {"departement": "92", "stop_lat": 48.763651715473046, "code_postal": "92019", "stop_lon": 2.2742928179820256, "coord": [48.763651715473046, 2.2742928179820256], "stop_id": 5478219, "stop_desc": "FACE 197 AVENUE DE LA DIVISION LECLERC - 92019", "stop_name": "LES VALLEES"}, "geometry": {"type": "Point", "coordinates": [2.2742928179820256, 48.763651715473046]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c66c951828d5aa968a45b4d6a98cb7cf518cccff", "fields": {"departement": "75", "stop_lat": 48.82755015444301, "code_postal": "75112", "stop_lon": 2.3929160999411563, "coord": [48.82755015444301, 2.3929160999411563], "stop_id": 5478239, "stop_desc": "RUE DU GENERAL DE LANGLE DE CARY - 75112", "stop_name": "BERCY"}, "geometry": {"type": "Point", "coordinates": [2.3929160999411563, 48.82755015444301]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "729c95b3538308d8968a08de71d77a9bedbb8a52", "fields": {"departement": "94", "stop_lat": 48.81802692471475, "code_postal": "94069", "stop_lon": 2.4410444069161104, "coord": [48.81802692471475, 2.4410444069161104], "stop_id": 5478253, "stop_desc": "98-100 RUE DU MARECHAL LECLERC - 94069", "stop_name": "MARECHAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.4410444069161104, 48.81802692471475]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4543bf9eb66b09462fd74401e4c6af34105dad59", "fields": {"departement": "94", "stop_lat": 48.80686116187773, "code_postal": "94068", "stop_lon": 2.4710256670182504, "coord": [48.80686116187773, 2.4710256670182504], "stop_id": 5478263, "stop_desc": "14 RUE DU PONT DE CRETEIL - 94068", "stop_name": "SAINT-MAUR - CRETEIL RER"}, "geometry": {"type": "Point", "coordinates": [2.4710256670182504, 48.80686116187773]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f5fccb0268b9792c1322b3e8c47352de7d8dd643", "fields": {"departement": "94", "stop_lat": 48.82143489326957, "code_postal": "94018", "stop_lon": 2.415394710576689, "coord": [48.82143489326957, 2.415394710576689], "stop_id": 5478282, "stop_desc": "R ALFRED SAVOURE - 94018", "stop_name": "CHARENTON-ECOLES"}, "geometry": {"type": "Point", "coordinates": [2.415394710576689, 48.82143489326957]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "58f64ca9cc98ce6f17f68e0ac12e566c115dac37", "fields": {"departement": "94", "stop_lat": 48.81796678050282, "code_postal": "94069", "stop_lon": 2.4265496652267307, "coord": [48.81796678050282, 2.4265496652267307], "stop_id": 5478290, "stop_desc": "55 RUE DU MARECHAL LECLERC - 94069", "stop_name": "MAIRIE DE SAINT-MAURICE"}, "geometry": {"type": "Point", "coordinates": [2.4265496652267307, 48.81796678050282]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0e9652c04e29cbf3e0ca0a7ef47754ddc4559551", "fields": {"departement": "94", "stop_lat": 48.81804496236758, "code_postal": "94069", "stop_lon": 2.4300883977837833, "coord": [48.81804496236758, 2.4300883977837833], "stop_id": 5478292, "stop_desc": "57 RUE DU MARECHAL LECLERC - 94069", "stop_name": "HOPITAL ESQUIROL"}, "geometry": {"type": "Point", "coordinates": [2.4300883977837833, 48.81804496236758]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fd6c0d5fa88c241086c05d3ca85f948d779183af", "fields": {"departement": "94", "stop_lat": 48.81802692471475, "code_postal": "94069", "stop_lon": 2.4410444069161104, "coord": [48.81802692471475, 2.4410444069161104], "stop_id": 5478295, "stop_desc": "98-100 RUE DU MARECHAL LECLERC - 94069", "stop_name": "MARECHAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.4410444069161104, 48.81802692471475]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "becfd06de9bd3def1ff156c098c5f663e955aa84", "fields": {"departement": "94", "stop_lat": 48.81783566839134, "code_postal": "94069", "stop_lon": 2.4438885020756413, "coord": [48.81783566839134, 2.4438885020756413], "stop_id": 5478297, "stop_desc": "134 RUE DU MARECHAL LECLERC - 94069", "stop_name": "PASSERELLE DE CHARENTONNEAU"}, "geometry": {"type": "Point", "coordinates": [2.4438885020756413, 48.81783566839134]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3b691c37472a6d58caae58c3af7e5dda3a8c3e50", "fields": {"departement": "94", "stop_lat": 48.817943764417215, "code_postal": "94069", "stop_lon": 2.4436165247676946, "coord": [48.817943764417215, 2.4436165247676946], "stop_id": 5478298, "stop_desc": "FACE 130 RUE DU MARECHAL LECLERC - 94069", "stop_name": "PASSERELLE DE CHARENTONNEAU"}, "geometry": {"type": "Point", "coordinates": [2.4436165247676946, 48.817943764417215]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1bcbcfa3b96e9a37297e00a7bc4a5f463880fcfc", "fields": {"departement": "94", "stop_lat": 48.81799355417233, "code_postal": "94069", "stop_lon": 2.4481487511090174, "coord": [48.81799355417233, 2.4481487511090174], "stop_id": 5478300, "stop_desc": "FACE 156 RUE DU MARECHAL LECLERC - 94069", "stop_name": "CFA - ANDRIEU"}, "geometry": {"type": "Point", "coordinates": [2.4481487511090174, 48.81799355417233]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "280d1df3d3594554e897b54b48d95dadbbe0f460", "fields": {"departement": "94", "stop_lat": 48.81745989066233, "code_postal": "94069", "stop_lon": 2.451726999892649, "coord": [48.81745989066233, 2.451726999892649], "stop_id": 5478301, "stop_desc": "182 RUE DU MARECHAL LECLERC - 94069", "stop_name": "ROSERAIE"}, "geometry": {"type": "Point", "coordinates": [2.451726999892649, 48.81745989066233]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9f9e9a63fe08b9f07d811e93b6b6873092d5387f", "fields": {"departement": "94", "stop_lat": 48.81477302407176, "code_postal": "94069", "stop_lon": 2.460267615019731, "coord": [48.81477302407176, 2.460267615019731], "stop_id": 5478305, "stop_desc": "FACE 3 RUE PAUL VERLAINE - 94069", "stop_name": "ECOLES DE GRAVELLE"}, "geometry": {"type": "Point", "coordinates": [2.460267615019731, 48.81477302407176]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "85dd409c31999ac64c0c24fe6fb308b73401809d", "fields": {"departement": "94", "stop_lat": 48.81484339757609, "code_postal": "94069", "stop_lon": 2.461737571167802, "coord": [48.81484339757609, 2.461737571167802], "stop_id": 5478308, "stop_desc": "155 RUE DU MARECHAL LECLERC - 94069", "stop_name": "JOHN FITZGERALD KENNEDY"}, "geometry": {"type": "Point", "coordinates": [2.461737571167802, 48.81484339757609]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6bc6834b8fd534b0ca8dc50670322f90b7834361", "fields": {"departement": "94", "stop_lat": 48.812726380577566, "code_postal": "94042", "stop_lon": 2.466332203413321, "coord": [48.812726380577566, 2.466332203413321], "stop_id": 5478309, "stop_desc": "8 RUE HENRI BARBUSSE - 94042", "stop_name": "VOISIN - REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.466332203413321, 48.812726380577566]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4223680fbb5863d5f72d48b6da8456c54a78ddd6", "fields": {"departement": "94", "stop_lat": 48.81355384140271, "code_postal": "94042", "stop_lon": 2.465789908048834, "coord": [48.81355384140271, 2.465789908048834], "stop_id": 5478310, "stop_desc": "VOIE NOUVELLE - 94042", "stop_name": "VOISIN - REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.465789908048834, 48.81355384140271]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6c3f2b47b24bee86024eb2020c42fca29cfac5a7", "fields": {"departement": "94", "stop_lat": 48.81078159169864, "code_postal": "94068", "stop_lon": 2.469457230202651, "coord": [48.81078159169864, 2.469457230202651], "stop_id": 5478311, "stop_desc": "6 BOULEVARD MAURICE BERTEAUX - 94068", "stop_name": "MAURICE BERTEAUX"}, "geometry": {"type": "Point", "coordinates": [2.469457230202651, 48.81078159169864]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a85cf43be8d7e26af701664c6e68d493a53da694", "fields": {"departement": "94", "stop_lat": 48.812275166309234, "code_postal": "94068", "stop_lon": 2.46800492561192, "coord": [48.812275166309234, 2.46800492561192], "stop_id": 5478312, "stop_desc": "BOULEVARD DE L'EUROPE - 94068", "stop_name": "MAURICE BERTEAUX"}, "geometry": {"type": "Point", "coordinates": [2.46800492561192, 48.812275166309234]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c0e6c4a004f6b33d2c1b4cd7be9bb81a288a7b26", "fields": {"departement": "94", "stop_lat": 48.809162214755624, "code_postal": "94068", "stop_lon": 2.470868304362221, "coord": [48.809162214755624, 2.470868304362221], "stop_id": 5478313, "stop_desc": "7 RUE DU PONT DE CRETEIL - 94068", "stop_name": "CROIX SOURIS"}, "geometry": {"type": "Point", "coordinates": [2.470868304362221, 48.809162214755624]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5dff781a79c05245dd2f85480aa1e2a1bf99c7c0", "fields": {"departement": "94", "stop_lat": 48.809404486548786, "code_postal": "94068", "stop_lon": 2.471222729111198, "coord": [48.809404486548786, 2.471222729111198], "stop_id": 5478314, "stop_desc": "3 RUE DU PONT DE CRETEIL - 94068", "stop_name": "CROIX SOURIS"}, "geometry": {"type": "Point", "coordinates": [2.471222729111198, 48.809404486548786]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "726473cb265c4aa222891895dc1db3801c837745", "fields": {"departement": "94", "stop_lat": 48.796663625497644, "code_postal": "94068", "stop_lon": 2.475679309587896, "coord": [48.796663625497644, 2.475679309587896], "stop_id": 5478322, "stop_desc": "32-34 BOULEVARD DU GENERAL GIRAUD - 94068", "stop_name": "BEAUJEU"}, "geometry": {"type": "Point", "coordinates": [2.475679309587896, 48.796663625497644]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a36520f711de18c72ec7d04fb43d687f5cfd92dc", "fields": {"departement": "94", "stop_lat": 48.79407263348, "code_postal": "94068", "stop_lon": 2.4777945834631026, "coord": [48.79407263348, 2.4777945834631026], "stop_id": 5478325, "stop_desc": "FACE 62 BOULEVARD GENERAL GIRAUD - 94068", "stop_name": "GALILEE"}, "geometry": {"type": "Point", "coordinates": [2.4777945834631026, 48.79407263348]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8d6f225871ef96f94816eabf9f7610118e1d1fb3", "fields": {"departement": "94", "stop_lat": 48.78601564796178, "code_postal": "94068", "stop_lon": 2.4882324222937453, "coord": [48.78601564796178, 2.4882324222937453], "stop_id": 5478329, "stop_desc": "50 AVENUE RASPAIL - 94068", "stop_name": "DOCTEUR ROUX - CHAMBRE DES METIERS"}, "geometry": {"type": "Point", "coordinates": [2.4882324222937453, 48.78601564796178]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1f6289742e7bfc0334b1edd1c985e28a5f601190", "fields": {"departement": "94", "stop_lat": 48.787674731845975, "code_postal": "94068", "stop_lon": 2.4979083039361076, "coord": [48.787674731845975, 2.4979083039361076], "stop_id": 5478336, "stop_desc": "55 AVENUE DES PERDRIX - 94068", "stop_name": "SORBIERS"}, "geometry": {"type": "Point", "coordinates": [2.4979083039361076, 48.787674731845975]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3156843a03e7f78dfc1b844bbdd04b1f75ccf398", "fields": {"departement": "94", "stop_lat": 48.79490458353255, "code_postal": "94068", "stop_lon": 2.514391451014474, "coord": [48.79490458353255, 2.514391451014474], "stop_id": 5478345, "stop_desc": "8 AVENUE DU MESNIL - 94068", "stop_name": "LA VARENNE-CHENNEVIERES RER"}, "geometry": {"type": "Point", "coordinates": [2.514391451014474, 48.79490458353255]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e3530b89efc7f05815464be4d3d64a1ea1393a36", "fields": {"departement": "94", "stop_lat": 48.7952190773792, "code_postal": "94068", "stop_lon": 2.514446939968507, "coord": [48.7952190773792, 2.514446939968507], "stop_id": 5478346, "stop_desc": "FACE 8 AVENUE DU MESNIL - 94068", "stop_name": "LA VARENNE-CHENNEVIERES RER"}, "geometry": {"type": "Point", "coordinates": [2.514446939968507, 48.7952190773792]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "59f2b5d81332c1c03308c6477a9848415b561766", "fields": {"departement": "94", "stop_lat": 48.800497525445955, "code_postal": "94068", "stop_lon": 2.5187098443312363, "coord": [48.800497525445955, 2.5187098443312363], "stop_id": 5478349, "stop_desc": "78 BIS AVENUE DU MESNIL - 94068", "stop_name": "CHARLES PEGUY"}, "geometry": {"type": "Point", "coordinates": [2.5187098443312363, 48.800497525445955]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "825bdf6c752c6d8b4ee2e541d4ced77476d92770", "fields": {"departement": "94", "stop_lat": 48.80095609056281, "code_postal": "94068", "stop_lon": 2.5185889970595916, "coord": [48.80095609056281, 2.5185889970595916], "stop_id": 5478350, "stop_desc": "1 AVENUE RAYMOND POINCARE - 94068", "stop_name": "CHARLES PEGUY"}, "geometry": {"type": "Point", "coordinates": [2.5185889970595916, 48.80095609056281]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "46e62051631689c1ad617ab669bbf8bac5987adb", "fields": {"departement": "94", "stop_lat": 48.80685442257188, "code_postal": "94068", "stop_lon": 2.5110168459959366, "coord": [48.80685442257188, 2.5110168459959366], "stop_id": 5478356, "stop_desc": "RUE ROCHAMBEAU - 94068", "stop_name": "CHAMPIGNY - SAINT-MAUR RER"}, "geometry": {"type": "Point", "coordinates": [2.5110168459959366, 48.80685442257188]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "68e932fd44c48f78e2082b73a10158cc9724fdbc", "fields": {"departement": "94", "stop_lat": 48.82184523642489, "code_postal": "94069", "stop_lon": 2.4199686200390875, "coord": [48.82184523642489, 2.4199686200390875], "stop_id": 5478363, "stop_desc": "50 AVENUE DU MARECHAL DE LATTRE DE TASSIGNY - 94069", "stop_name": "EDMOND NOCARD"}, "geometry": {"type": "Point", "coordinates": [2.4199686200390875, 48.82184523642489]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2b4dec982d449680e3c785217f72c3fa90e7d2ac", "fields": {"departement": "75", "stop_lat": 48.83025564079889, "code_postal": "75112", "stop_lon": 2.392469766818625, "coord": [48.83025564079889, 2.392469766818625], "stop_id": 5478368, "stop_desc": "BD PONIATOWSKI - 75112", "stop_name": "BARON LE ROY"}, "geometry": {"type": "Point", "coordinates": [2.392469766818625, 48.83025564079889]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e9f4fd7b36567f634fe4c4c6e1797b514eaf4e0d", "fields": {"departement": "94", "stop_lat": 48.82916356574205, "code_postal": "94018", "stop_lon": 2.4015756371245263, "coord": [48.82916356574205, 2.4015756371245263], "stop_id": 5478371, "stop_desc": "183 RUE DE PARIS - 94018", "stop_name": "FELIX LANGLAIS"}, "geometry": {"type": "Point", "coordinates": [2.4015756371245263, 48.82916356574205]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "294206dfa1479d4e55915fa28a668ce6ff285db0", "fields": {"departement": "94", "stop_lat": 48.82194179585436, "code_postal": "94069", "stop_lon": 2.4232218060551216, "coord": [48.82194179585436, 2.4232218060551216], "stop_id": 5478379, "stop_desc": "39 RUE DU VAL D'OSNE - 94069", "stop_name": "HOPITAL NATIONAL DE SAINT-MAURICE"}, "geometry": {"type": "Point", "coordinates": [2.4232218060551216, 48.82194179585436]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "02a943fdfd10e16035e4d321cc0c2f89ad739753", "fields": {"departement": "94", "stop_lat": 48.81786967316462, "code_postal": "94069", "stop_lon": 2.4460389440703985, "coord": [48.81786967316462, 2.4460389440703985], "stop_id": 5478392, "stop_desc": "150-156 RUE DU MARECHAL LECLERC - 94069", "stop_name": "CFA - ANDRIEU"}, "geometry": {"type": "Point", "coordinates": [2.4460389440703985, 48.81786967316462]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "085baa782055bcada34b20cd8417abb02637fc08", "fields": {"departement": "94", "stop_lat": 48.816872071529666, "code_postal": "94069", "stop_lon": 2.4554275393875784, "coord": [48.816872071529666, 2.4554275393875784], "stop_id": 5478397, "stop_desc": "103 RUE DU MARECHAL LECLERC - 94069", "stop_name": "LES CANADIENS"}, "geometry": {"type": "Point", "coordinates": [2.4554275393875784, 48.816872071529666]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f300a692973a42909944f96100e291c7dcf19a37", "fields": {"departement": "94", "stop_lat": 48.81477725565159, "code_postal": "94069", "stop_lon": 2.4561032273681587, "coord": [48.81477725565159, 2.4561032273681587], "stop_id": 5478398, "stop_desc": "PLACE DE L'ECLUSE - 94069", "stop_name": "PLACE DE L'ECLUSE"}, "geometry": {"type": "Point", "coordinates": [2.4561032273681587, 48.81477725565159]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "74bc9b4fab7ba02c6732c2974d01c4f3095f78ca", "fields": {"departement": "75", "stop_lat": 48.84408977596744, "code_postal": "75112", "stop_lon": 2.4424854671358247, "coord": [48.84408977596744, 2.4424854671358247], "stop_id": 5478405, "stop_desc": "PISTE GARE ROUTIERE - 75112", "stop_name": "CHATEAU DE VINCENNES"}, "geometry": {"type": "Point", "coordinates": [2.4424854671358247, 48.84408977596744]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5dd2562f056ced548b89e2f464d75486c2bf985a", "fields": {"departement": "75", "stop_lat": 48.84111880202587, "code_postal": "75112", "stop_lon": 2.4379725289919545, "coord": [48.84111880202587, 2.4379725289919545], "stop_id": 5478406, "stop_desc": "ROUTE DE L'ARTILLERIE - 75112", "stop_name": "PARC FLORAL"}, "geometry": {"type": "Point", "coordinates": [2.4379725289919545, 48.84111880202587]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "63d4b05b26a74789f5ee9807e04030f062c813b8", "fields": {"departement": "75", "stop_lat": 48.83738677546338, "code_postal": "75112", "stop_lon": 2.440524917104416, "coord": [48.83738677546338, 2.440524917104416], "stop_id": 5478409, "stop_desc": "ROUTE DE LA PYRAMIDE - 75112", "stop_name": "STADE LEO LAGRANGE"}, "geometry": {"type": "Point", "coordinates": [2.440524917104416, 48.83738677546338]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9c87eb171df609b8b3d6d462915f276b75444773", "fields": {"departement": "75", "stop_lat": 48.83441760604238, "code_postal": "75112", "stop_lon": 2.444222094420121, "coord": [48.83441760604238, 2.444222094420121], "stop_id": 5478410, "stop_desc": "ROUTE DE LA PYRAMIDE - 75112", "stop_name": "PLAINE DE LA FALUERE"}, "geometry": {"type": "Point", "coordinates": [2.444222094420121, 48.83441760604238]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4991e834d20e400a5e2e5a314981c3171074d6d1", "fields": {"departement": "75", "stop_lat": 48.83544267294231, "code_postal": "75112", "stop_lon": 2.453305119600015, "coord": [48.83544267294231, 2.453305119600015], "stop_id": 5478414, "stop_desc": "AVENUE DU TREMBLAY - 75112", "stop_name": "CHAMP DE MANOEUVRE - TREMBLAY"}, "geometry": {"type": "Point", "coordinates": [2.453305119600015, 48.83544267294231]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c0c756d097aa6ae6b530fe5a1707258ed1413064", "fields": {"departement": "75", "stop_lat": 48.83564127207761, "code_postal": "75112", "stop_lon": 2.452406999297592, "coord": [48.83564127207761, 2.452406999297592], "stop_id": 5478415, "stop_desc": "ROUTE DU CHAMP DE MANOEUVRE - 75112", "stop_name": "CHAMP DE MANOEUVRE - TREMBLAY"}, "geometry": {"type": "Point", "coordinates": [2.452406999297592, 48.83564127207761]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9a7010e3aacef2ae611a07304e910b7bb6050de2", "fields": {"departement": "94", "stop_lat": 48.81924513479825, "code_postal": "94042", "stop_lon": 2.463871337523456, "coord": [48.81924513479825, 2.463871337523456], "stop_id": 5478423, "stop_desc": "1 RUE EMILE MOUTIER - 94042", "stop_name": "JOINVILLE-LE-PONT RER"}, "geometry": {"type": "Point", "coordinates": [2.463871337523456, 48.81924513479825]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0e6d2c08d442157d63e2d43f392ec8727571eb73", "fields": {"departement": "94", "stop_lat": 48.809162214755624, "code_postal": "94068", "stop_lon": 2.470868304362221, "coord": [48.809162214755624, 2.470868304362221], "stop_id": 5478430, "stop_desc": "7 RUE DU PONT DE CRETEIL - 94068", "stop_name": "CROIX SOURIS"}, "geometry": {"type": "Point", "coordinates": [2.470868304362221, 48.809162214755624]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1340444f9e7ea660d90938fefbe469966a20bc53", "fields": {"departement": "94", "stop_lat": 48.809404486548786, "code_postal": "94068", "stop_lon": 2.471222729111198, "coord": [48.809404486548786, 2.471222729111198], "stop_id": 5478431, "stop_desc": "3 RUE DU PONT DE CRETEIL - 94068", "stop_name": "CROIX SOURIS"}, "geometry": {"type": "Point", "coordinates": [2.471222729111198, 48.809404486548786]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "147f358f0717f3b7b5ae2a507e4e1b76a0e84397", "fields": {"departement": "94", "stop_lat": 48.80386787555055, "code_postal": "94068", "stop_lon": 2.4713308992074583, "coord": [48.80386787555055, 2.4713308992074583], "stop_id": 5478434, "stop_desc": "FACE 59 RUE DU PONT DE CRETEIL - 94068", "stop_name": "RUE DES REMISES"}, "geometry": {"type": "Point", "coordinates": [2.4713308992074583, 48.80386787555055]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ef2b45114d42ad3681fcad0db4f8b08857c25800", "fields": {"departement": "94", "stop_lat": 48.80437071624623, "code_postal": "94068", "stop_lon": 2.4717539967583275, "coord": [48.80437071624623, 2.4717539967583275], "stop_id": 5478435, "stop_desc": "61 RUE DU PONT DE CRETEIL - 94068", "stop_name": "RUE DES REMISES"}, "geometry": {"type": "Point", "coordinates": [2.4717539967583275, 48.80437071624623]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "02b33ce0c4a0912864b9a213f177f417a267210b", "fields": {"departement": "94", "stop_lat": 48.79775371413977, "code_postal": "94068", "stop_lon": 2.5018984538557225, "coord": [48.79775371413977, 2.5018984538557225], "stop_id": 5478452, "stop_desc": "206 BOULEVARD DE CRETEIL - 94068", "stop_name": "PLACE JEAN MOULIN"}, "geometry": {"type": "Point", "coordinates": [2.5018984538557225, 48.79775371413977]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dbc8da1d0471bde5a75d661a76153e967c61c267", "fields": {"departement": "95", "stop_lat": 48.9780456184267, "code_postal": "95585", "stop_lon": 2.376272300740613, "coord": [48.9780456184267, 2.376272300740613], "stop_id": 5478489, "stop_desc": "FACE 9 BOULEVARD HENRI POINCARE - 95585", "stop_name": "FORUM DES CHOLETTES"}, "geometry": {"type": "Point", "coordinates": [2.376272300740613, 48.9780456184267]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "54316e2494ec73bd5f20caac95d039fa7725cc44", "fields": {"departement": "95", "stop_lat": 48.99465090332859, "code_postal": "95019", "stop_lon": 2.416134369205257, "coord": [48.99465090332859, 2.416134369205257], "stop_id": 5478495, "stop_desc": "PLACE DU GENERAL LECLERC - 95019", "stop_name": "VILLIERS LE BEL - GONESSE - ARNOUVILLE RER"}, "geometry": {"type": "Point", "coordinates": [2.416134369205257, 48.99465090332859]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "da93bd3e726af30ebf50c96d68b45fad8eaff658", "fields": {"departement": "95", "stop_lat": 48.9944889675341, "code_postal": "95680", "stop_lon": 2.416407250578373, "coord": [48.9944889675341, 2.416407250578373], "stop_id": 5478496, "stop_desc": "FACE 15 RUE JEAN LAUGERE - 95680", "stop_name": "VILLIERS LE BEL - GONESSE - ARNOUVILLE RER"}, "geometry": {"type": "Point", "coordinates": [2.416407250578373, 48.9944889675341]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f6e817b586a8540739855d018ef8d2e553ab63f4", "fields": {"departement": "92", "stop_lat": 48.839248834753775, "code_postal": "92012", "stop_lon": 2.2470516726107004, "coord": [48.839248834753775, 2.2470516726107004], "stop_id": 5549468, "stop_desc": "47 AVENUE VICTOR HUGO - 92012", "stop_name": "AVENUE VICTOR HUGO - REINE"}, "geometry": {"type": "Point", "coordinates": [2.2470516726107004, 48.839248834753775]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1fa83ee8d1adac346654eadb722d487e7f6e7584", "fields": {"departement": "92", "stop_lat": 48.8491836092491, "code_postal": "92012", "stop_lon": 2.2401436065620266, "coord": [48.8491836092491, 2.2401436065620266], "stop_id": 5549477, "stop_desc": "RUE D'ALSACE-LORRAINE - 92012", "stop_name": "ALSACE LORRAINE - PORTE DE BOULOGNE"}, "geometry": {"type": "Point", "coordinates": [2.2401436065620266, 48.8491836092491]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "48d44fa0b60b064d61c5b4038cd65f196eaae221", "fields": {"departement": "92", "stop_lat": 48.84908236932488, "code_postal": "92012", "stop_lon": 2.237270369148506, "coord": [48.84908236932488, 2.237270369148506], "stop_id": 5549478, "stop_desc": "FACE 10 AVENUE CHARLES DE GAULLE - 92012", "stop_name": "HOPITAL AMBROISE PARE"}, "geometry": {"type": "Point", "coordinates": [2.237270369148506, 48.84908236932488]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "937de96cf8d20ba7b01d2fb58cba9970cae4c1e3", "fields": {"departement": "92", "stop_lat": 48.84685301365016, "code_postal": "92012", "stop_lon": 2.236729963913616, "coord": [48.84685301365016, 2.236729963913616], "stop_id": 5549479, "stop_desc": "1 AVENUE CHARLES DE GAULLE - 92012", "stop_name": "PARCHAMP"}, "geometry": {"type": "Point", "coordinates": [2.236729963913616, 48.84685301365016]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c3475b64ca69dc13cd818c0fe2f53c08aae8bbee", "fields": {"departement": "92", "stop_lat": 48.83651062931107, "code_postal": "92012", "stop_lon": 2.2394729689662283, "coord": [48.83651062931107, 2.2394729689662283], "stop_id": 5549516, "stop_desc": "RUE GALLIENI - 92012", "stop_name": "HOTEL DE VILLE-LES PASSAGES"}, "geometry": {"type": "Point", "coordinates": [2.2394729689662283, 48.83651062931107]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "48d8973df01086c9026a5f60d9a4a4dc5babecfe", "fields": {"departement": "92", "stop_lat": 48.83746974002384, "code_postal": "92012", "stop_lon": 2.247640214343819, "coord": [48.83746974002384, 2.247640214343819], "stop_id": 5549518, "stop_desc": "55 RUE GALLIENI - 92012", "stop_name": "GALLIENI - THIERS"}, "geometry": {"type": "Point", "coordinates": [2.247640214343819, 48.83746974002384]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dcb187c98138aee2e7280ec12434f79b051ac0e0", "fields": {"departement": "92", "stop_lat": 48.84274950053729, "code_postal": "92012", "stop_lon": 2.230746665719793, "coord": [48.84274950053729, 2.230746665719793], "stop_id": 5549554, "stop_desc": "3 RUE SAINT DENIS - 92012", "stop_name": "SAINT-DENIS - JEAN-BAPTISTE CLEMENT"}, "geometry": {"type": "Point", "coordinates": [2.230746665719793, 48.84274950053729]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "97d735cacf509ab3393cb5927998700523d38c56", "fields": {"departement": "92", "stop_lat": 48.83651062931107, "code_postal": "92012", "stop_lon": 2.2394729689662283, "coord": [48.83651062931107, 2.2394729689662283], "stop_id": 5549559, "stop_desc": "RUE GALLIENI - 92012", "stop_name": "HOTEL DE VILLE-LES PASSAGES"}, "geometry": {"type": "Point", "coordinates": [2.2394729689662283, 48.83651062931107]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f4e66bb2d49cb28c0b3f9342b42e8fa263aecd07", "fields": {"departement": "92", "stop_lat": 48.82439043938498, "code_postal": "92012", "stop_lon": 2.244627399270202, "coord": [48.82439043938498, 2.244627399270202], "stop_id": 5549561, "stop_desc": "6 R NATIONALE - 92012", "stop_name": "TRAVERSIERE"}, "geometry": {"type": "Point", "coordinates": [2.244627399270202, 48.82439043938498]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cdb8f87df964063ed456a7e533a12516ccedbfbc", "fields": {"departement": "92", "stop_lat": 48.829696027980006, "code_postal": "92012", "stop_lon": 2.2370762998549445, "coord": [48.829696027980006, 2.2370762998549445], "stop_id": 5549564, "stop_desc": "1384 RUE DU VIEUX PONT DE SEVRES - 92012", "stop_name": "CASTEJA"}, "geometry": {"type": "Point", "coordinates": [2.2370762998549445, 48.829696027980006]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2724af21d64d9edd2dec5d1126fbc8183c5714a3", "fields": {"departement": "92", "stop_lat": 48.82942124485574, "code_postal": "92012", "stop_lon": 2.2311279587069355, "coord": [48.82942124485574, 2.2311279587069355], "stop_id": 5549566, "stop_desc": "284 ROND-POINT DE SEVRES - 92012", "stop_name": "PONT DE SEVRES-METRO"}, "geometry": {"type": "Point", "coordinates": [2.2311279587069355, 48.82942124485574]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3533b524b0a2690e0f3238740cd330109145d536", "fields": {"departement": "92", "stop_lat": 48.834396956192066, "code_postal": "92012", "stop_lon": 2.237557338213911, "coord": [48.834396956192066, 2.237557338213911], "stop_id": 5549568, "stop_desc": "FACE 1 RUE DE LA PYRAMIDE - 92012", "stop_name": "PYRAMIDE"}, "geometry": {"type": "Point", "coordinates": [2.237557338213911, 48.834396956192066]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e5262aa3df9389bf27bde83345dbaf2ae277987f", "fields": {"departement": "93", "stop_lat": 48.956753516675874, "code_postal": "93079", "stop_lon": 2.3444600109551623, "coord": [48.956753516675874, 2.3444600109551623], "stop_id": 5582588, "stop_desc": "AVENUE DE LA DIVISION LECLERC - 93079", "stop_name": "PABLO NERUDA"}, "geometry": {"type": "Point", "coordinates": [2.3444600109551623, 48.956753516675874]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e327c0765c4f9c0531943039a28f5fe620be419f", "fields": {"departement": "93", "stop_lat": 48.91154413533002, "code_postal": "93055", "stop_lon": 2.412394672182099, "coord": [48.91154413533002, 2.412394672182099], "stop_id": 5605605, "stop_desc": "44 AVENUE DE LA DIVISION LECLERC - 93055", "stop_name": "DIVISION LECLERC - STENDHAL"}, "geometry": {"type": "Point", "coordinates": [2.412394672182099, 48.91154413533002]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "acd6ffee49bb3f897f4d8c082446868f3b32e5b3", "fields": {"departement": "93", "stop_lat": 48.91022964359314, "code_postal": "93008", "stop_lon": 2.41608763544949, "coord": [48.91022964359314, 2.41608763544949], "stop_id": 5605606, "stop_desc": "AVENUE DE L'ILLUSTRATION - 93008", "stop_name": "CITE DU PONT DE PIERRE"}, "geometry": {"type": "Point", "coordinates": [2.41608763544949, 48.91022964359314]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fb63c5da2654fd959224ac9da174c6b68318f433", "fields": {"departement": "93", "stop_lat": 48.91905251887424, "code_postal": "93029", "stop_lon": 2.419592014390968, "coord": [48.91905251887424, 2.419592014390968], "stop_id": 5605612, "stop_desc": "R SAINT-STENAY - 93029", "stop_name": "CITE DE LA RESISTANCE"}, "geometry": {"type": "Point", "coordinates": [2.419592014390968, 48.91905251887424]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d91a64d4a317be2e38ad3912792fcd45fafae60c", "fields": {"departement": "93", "stop_lat": 48.91572311406006, "code_postal": "93008", "stop_lon": 2.4254909602221035, "coord": [48.91572311406006, 2.4254909602221035], "stop_id": 5605618, "stop_desc": "0 R DE STALINGRAD - 93008", "stop_name": "HOPITAL AVICENNE"}, "geometry": {"type": "Point", "coordinates": [2.4254909602221035, 48.91572311406006]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3411892821a97c480de8b585093c619477d40b88", "fields": {"departement": "93", "stop_lat": 48.92462351294785, "code_postal": "93029", "stop_lon": 2.432870641931615, "coord": [48.92462351294785, 2.432870641931615], "stop_id": 5605624, "stop_desc": "11-13 R GUTENBERG - 93029", "stop_name": "GUTENBERG - FERRY"}, "geometry": {"type": "Point", "coordinates": [2.432870641931615, 48.92462351294785]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b37892818decf25036730a8e08a8f964084c586b", "fields": {"departement": "93", "stop_lat": 48.926146652196245, "code_postal": "93029", "stop_lon": 2.43849247473924, "coord": [48.926146652196245, 2.43849247473924], "stop_id": 5605626, "stop_desc": "13 R ADRIEN FROMENT - 93029", "stop_name": "CENTRE CULTUREL"}, "geometry": {"type": "Point", "coordinates": [2.43849247473924, 48.926146652196245]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "06d601654e4bee795ffb28d6120fbbd16d5a6306", "fields": {"departement": "93", "stop_lat": 48.9264969562802, "code_postal": "93029", "stop_lon": 2.438711375378739, "coord": [48.9264969562802, 2.438711375378739], "stop_id": 5605627, "stop_desc": "FACE 1 R ADRIEN FROMENT - 93029", "stop_name": "CENTRE CULTUREL"}, "geometry": {"type": "Point", "coordinates": [2.438711375378739, 48.9264969562802]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b5a89e1308f7bf2970a6b3a23ee5e39c26d9fe29", "fields": {"departement": "93", "stop_lat": 48.92482281223156, "code_postal": "93029", "stop_lon": 2.4416948293908285, "coord": [48.92482281223156, 2.4416948293908285], "stop_id": 5605628, "stop_desc": "89 RUE SADI CARNOT - 93029", "stop_name": "JEAN-PIERRE TIMBAUD"}, "geometry": {"type": "Point", "coordinates": [2.4416948293908285, 48.92482281223156]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6b1e0e31d5054f58e28237f14d404857bf36baae", "fields": {"departement": "75", "stop_lat": 48.88104905742808, "code_postal": "75117", "stop_lon": 2.2952304795629583, "coord": [48.88104905742808, 2.2952304795629583], "stop_id": 3813143, "stop_desc": "25 AVENUE NIEL - 75117", "stop_name": "PIERRE DEMOURS"}, "geometry": {"type": "Point", "coordinates": [2.2952304795629583, 48.88104905742808]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0a6d9605a1a89c9e19aeb2eb087bd721c751c600", "fields": {"departement": "75", "stop_lat": 48.88594618449054, "code_postal": "75117", "stop_lon": 2.2927053638286177, "coord": [48.88594618449054, 2.2927053638286177], "stop_id": 3813148, "stop_desc": "PLACE STUART MERRILL - 75117", "stop_name": "PORTE DE CHAMPERRET"}, "geometry": {"type": "Point", "coordinates": [2.2927053638286177, 48.88594618449054]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cd6e7877d765cf547eaa2da0525053f84668e50b", "fields": {"departement": "75", "stop_lat": 48.84041127623981, "code_postal": "75116", "stop_lon": 2.264654955671404, "coord": [48.84041127623981, 2.264654955671404], "stop_id": 3813160, "stop_desc": "175 AVENUE DE VERSAILLES - 75116", "stop_name": "VERSAILLES - EXELMANS"}, "geometry": {"type": "Point", "coordinates": [2.264654955671404, 48.84041127623981]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "59e22792dfeda481e4635c42d518be9698ae6b2b", "fields": {"departement": "75", "stop_lat": 48.838837106438454, "code_postal": "75116", "stop_lon": 2.262478687427494, "coord": [48.838837106438454, 2.262478687427494], "stop_id": 3813162, "stop_desc": "27 RUE CLAUDE TERRASSE - 75116", "stop_name": "VERSAILLES - CHARDON LAGACHE"}, "geometry": {"type": "Point", "coordinates": [2.262478687427494, 48.838837106438454]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e7fd190ec8436ae2695337c680ddc27014ee2df9", "fields": {"departement": "75", "stop_lat": 48.837127452662195, "code_postal": "75116", "stop_lon": 2.2593360874504773, "coord": [48.837127452662195, 2.2593360874504773], "stop_id": 3813164, "stop_desc": "124 BOULEVARD MURAT - 75116", "stop_name": "PORTE DE SAINT-CLOUD - MURAT"}, "geometry": {"type": "Point", "coordinates": [2.2593360874504773, 48.837127452662195]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c33cf327e7584b2430de4cc1a08b68b6fc90a1e6", "fields": {"departement": "75", "stop_lat": 48.83919292624556, "code_postal": "75116", "stop_lon": 2.2568277266144117, "coord": [48.83919292624556, 2.2568277266144117], "stop_id": 3813165, "stop_desc": "109 BOULEVARD MURAT - 75116", "stop_name": "PORTE DE SAINT-CLOUD - MICHEL ANGE"}, "geometry": {"type": "Point", "coordinates": [2.2568277266144117, 48.83919292624556]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e8098d0c72ce451e70026dc33de877327a7d25e0", "fields": {"departement": "75", "stop_lat": 48.838563769658435, "code_postal": "75116", "stop_lon": 2.256787855766526, "coord": [48.838563769658435, 2.256787855766526], "stop_id": 3813166, "stop_desc": "98 BOULEVARD MURAT - 75116", "stop_name": "PORTE DE SAINT-CLOUD - MICHEL ANGE"}, "geometry": {"type": "Point", "coordinates": [2.256787855766526, 48.838563769658435]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "17ed55d674ceab5485f972da7411caf558abf058", "fields": {"departement": "75", "stop_lat": 48.84712089038782, "code_postal": "75116", "stop_lon": 2.2582589027832634, "coord": [48.84712089038782, 2.2582589027832634], "stop_id": 3813172, "stop_desc": "10 BOULEVARD MURAT - 75116", "stop_name": "PORTE D'AUTEUIL"}, "geometry": {"type": "Point", "coordinates": [2.2582589027832634, 48.84712089038782]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0bb80778540065a987c62a856230f1e0ae87e0a1", "fields": {"departement": "75", "stop_lat": 48.8528303031503, "code_postal": "75116", "stop_lon": 2.2619001308795323, "coord": [48.8528303031503, 2.2619001308795323], "stop_id": 3813175, "stop_desc": "51 BOULEVARD SUCHET - 75116", "stop_name": "RAFFET"}, "geometry": {"type": "Point", "coordinates": [2.2619001308795323, 48.8528303031503]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b3140a0794c6274db819703664c9305000018072", "fields": {"departement": "75", "stop_lat": 48.86067922402239, "code_postal": "75116", "stop_lon": 2.2666152750224673, "coord": [48.86067922402239, 2.2666152750224673], "stop_id": 3813180, "stop_desc": "12 BOULEVARD SUCHET - 75116", "stop_name": "ERNEST HEBERT"}, "geometry": {"type": "Point", "coordinates": [2.2666152750224673, 48.86067922402239]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f70f98e00760e0bd66babd3ece2bce1ca836f247", "fields": {"departement": "75", "stop_lat": 48.87974094344161, "code_postal": "75117", "stop_lon": 2.28295434920751, "coord": [48.87974094344161, 2.28295434920751], "stop_id": 3813195, "stop_desc": "11 BOULEVARD PERSHING - 75117", "stop_name": "PORTE MAILLOT - PERSHING"}, "geometry": {"type": "Point", "coordinates": [2.28295434920751, 48.87974094344161]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b86ba4077b2a064e68a401746e1698ee8c64fbb6", "fields": {"departement": "75", "stop_lat": 48.88135058192774, "code_postal": "75117", "stop_lon": 2.285010280750466, "coord": [48.88135058192774, 2.285010280750466], "stop_id": 3813196, "stop_desc": "1 BOULEVARD PERSHING - 75117", "stop_name": "GENERAL KOENING - PALAIS DES CONGRES"}, "geometry": {"type": "Point", "coordinates": [2.285010280750466, 48.88135058192774]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9150942ad27668a189f6b2d43948a36458fba7ed", "fields": {"departement": "75", "stop_lat": 48.88113503083954, "code_postal": "75117", "stop_lon": 2.285337535175961, "coord": [48.88113503083954, 2.285337535175961], "stop_id": 3813197, "stop_desc": "48 BOULEVARD GOUVION-SAINT-CYR - 75117", "stop_name": "GENERAL KOENING - PALAIS DES CONGRES"}, "geometry": {"type": "Point", "coordinates": [2.285337535175961, 48.88113503083954]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b0aecaefb0570d9cfddc30cf48b1504cac2b4ed1", "fields": {"departement": "75", "stop_lat": 48.84722392369698, "code_postal": "75120", "stop_lon": 2.4096869119519257, "coord": [48.84722392369698, 2.4096869119519257], "stop_id": 3813310, "stop_desc": "FACE 103 CRS DE VINCENNES - 75120", "stop_name": "PORTE DE VINCENNES"}, "geometry": {"type": "Point", "coordinates": [2.4096869119519257, 48.84722392369698]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4946799c4d3c15cebf9bbfa7bb4b3a957643df34", "fields": {"departement": "75", "stop_lat": 48.85318193567518, "code_postal": "75120", "stop_lon": 2.410812007479081, "coord": [48.85318193567518, 2.410812007479081], "stop_id": 3813312, "stop_desc": "68-70 BD DAVOUT - 75120", "stop_name": "PORTE DE MONTREUIL"}, "geometry": {"type": "Point", "coordinates": [2.410812007479081, 48.85318193567518]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2646919ab303708dbb0799bb2d259532dd5baa3c", "fields": {"departement": "75", "stop_lat": 48.85318212034523, "code_postal": "75120", "stop_lon": 2.4105123851418995, "coord": [48.85318212034523, 2.4105123851418995], "stop_id": 3813313, "stop_desc": "65 BD DAVOUT - 75120", "stop_name": "PORTE DE MONTREUIL"}, "geometry": {"type": "Point", "coordinates": [2.4105123851418995, 48.85318212034523]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "56fee3edab07c3022bc36972c40eac594af11c2c", "fields": {"departement": "75", "stop_lat": 48.879493514270365, "code_postal": "75119", "stop_lon": 2.4011747961654972, "coord": [48.879493514270365, 2.4011747961654972], "stop_id": 3813323, "stop_desc": "1 BD D'ALGERIE - 75119", "stop_name": "HOPITAL ROBERT DEBRE"}, "geometry": {"type": "Point", "coordinates": [2.4011747961654972, 48.879493514270365]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d043caed6f514ef8f6ac362ce136c26b4d7e9312", "fields": {"departement": "75", "stop_lat": 48.885166743390215, "code_postal": "75119", "stop_lon": 2.396780073937169, "coord": [48.885166743390215, 2.396780073937169], "stop_id": 3813325, "stop_desc": "13 BD D'INDOCHINE - 75119", "stop_name": "BUTTE DU CHAPEAU ROUGE"}, "geometry": {"type": "Point", "coordinates": [2.396780073937169, 48.885166743390215]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d3df9733e45cf6fdb9f98cdb58078eb8d2e8b38b", "fields": {"departement": "75", "stop_lat": 48.897515796383985, "code_postal": "75119", "stop_lon": 2.3724904415209136, "coord": [48.897515796383985, 2.3724904415209136], "stop_id": 3813334, "stop_desc": "0 NR - 75119", "stop_name": "ROSA PARKS"}, "geometry": {"type": "Point", "coordinates": [2.3724904415209136, 48.897515796383985]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4653b427d9a1218b6479f902684a66c05fd4e0d5", "fields": {"departement": "75", "stop_lat": 48.89866849236912, "code_postal": "75118", "stop_lon": 2.3633856115291576, "coord": [48.89866849236912, 2.3633856115291576], "stop_id": 3813338, "stop_desc": "FACE 17-19 BD NEY - 75118", "stop_name": "COLETTE BESSON"}, "geometry": {"type": "Point", "coordinates": [2.3633856115291576, 48.89866849236912]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "92201590f183816b5b51b48012ff3ca6adfee9d2", "fields": {"departement": "75", "stop_lat": 48.876821182828934, "code_postal": "75120", "stop_lon": 2.406730671754107, "coord": [48.876821182828934, 2.406730671754107], "stop_id": 3813345, "stop_desc": "166-168 BD MORTIER - 75120", "stop_name": "PORTE DES LILAS"}, "geometry": {"type": "Point", "coordinates": [2.406730671754107, 48.876821182828934]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "36cd9209d178783ab1a272edce6108f16a99592f", "fields": {"departement": "75", "stop_lat": 48.828806922967175, "code_postal": "75115", "stop_lon": 2.3009765518628895, "coord": [48.828806922967175, 2.3009765518628895], "stop_id": 3813511, "stop_desc": "FACE 167 BOULEVARD LEFEBVRE - 75115", "stop_name": "BRANCION"}, "geometry": {"type": "Point", "coordinates": [2.3009765518628895, 48.828806922967175]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8b21c46e1969d628ca4838907a66bca01e6afaa0", "fields": {"departement": "75", "stop_lat": 48.82608682166155, "code_postal": "75114", "stop_lon": 2.3134879669297725, "coord": [48.82608682166155, 2.3134879669297725], "stop_id": 3813515, "stop_desc": "FACE 83 BOULEVARD BRUNE - 75114", "stop_name": "DIDOT"}, "geometry": {"type": "Point", "coordinates": [2.3134879669297725, 48.82608682166155]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "13b47ec1ca780e64a261bd5a06e79517acfba3a8", "fields": {"departement": "75", "stop_lat": 48.81928360989372, "code_postal": "75113", "stop_lon": 2.358582033071079, "coord": [48.81928360989372, 2.358582033071079], "stop_id": 3813529, "stop_desc": "164 BOULEVARD MASSENA - 75113", "stop_name": "PORTE D'ITALIE"}, "geometry": {"type": "Point", "coordinates": [2.358582033071079, 48.81928360989372]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4c734fb4142bc23306ba384e11e09a0b66eaa474", "fields": {"departement": "75", "stop_lat": 48.83028208068306, "code_postal": "75112", "stop_lon": 2.3935860770449033, "coord": [48.83028208068306, 2.3935860770449033], "stop_id": 3813538, "stop_desc": "30 BD PONIATOWSKI - 75112", "stop_name": "BARON LE ROY"}, "geometry": {"type": "Point", "coordinates": [2.3935860770449033, 48.83028208068306]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2deca9df6b2594c288acef016becd89e9b20ec46", "fields": {"departement": "75", "stop_lat": 48.83025563448411, "code_postal": "75112", "stop_lon": 2.392483380001145, "coord": [48.83025563448411, 2.392483380001145], "stop_id": 3813539, "stop_desc": "FACE 30 BD PONIATOWSKI - 75112", "stop_name": "BARON LE ROY"}, "geometry": {"type": "Point", "coordinates": [2.392483380001145, 48.83025563448411]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fbe0ff01cc917e07a53413f4960da07d7507f39b", "fields": {"departement": "75", "stop_lat": 48.836053743044054, "code_postal": "75112", "stop_lon": 2.4074521197954795, "coord": [48.836053743044054, 2.4074521197954795], "stop_id": 3813542, "stop_desc": "2 BD SOULT - 75112", "stop_name": "PORTE DOREE"}, "geometry": {"type": "Point", "coordinates": [2.4074521197954795, 48.836053743044054]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bf7023ce2d318b1b5e2a1ed09ab345b1839bc285", "fields": {"departement": "75", "stop_lat": 48.83989049153473, "code_postal": "75112", "stop_lon": 2.409036734617636, "coord": [48.83989049153473, 2.409036734617636], "stop_id": 3813544, "stop_desc": "FACE 61 BD SOULT - 75112", "stop_name": "MONTEMPOIVRE"}, "geometry": {"type": "Point", "coordinates": [2.409036734617636, 48.83989049153473]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7262824c4de6b6354423f82c11f9c68dc3c88ddd", "fields": {"departement": "94", "stop_lat": 48.812137822019444, "code_postal": "94043", "stop_lon": 2.361423259884513, "coord": [48.812137822019444, 2.361423259884513], "stop_id": 3864879, "stop_desc": "58 AVENUE DE FONTAINEBLEAU - 94043", "stop_name": "CONVENTION - FONTAINEBLEAU"}, "geometry": {"type": "Point", "coordinates": [2.361423259884513, 48.812137822019444]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e5497e7c4c8148e869e414cecd9f8bf700e6a7e9", "fields": {"departement": "94", "stop_lat": 48.79832469082517, "code_postal": "94076", "stop_lon": 2.3550497765575598, "coord": [48.79832469082517, 2.3550497765575598], "stop_id": 3864890, "stop_desc": "PLACE DU 8 MAI 1945 - 94076", "stop_name": "PLACE DU 8 MAI 1945"}, "geometry": {"type": "Point", "coordinates": [2.3550497765575598, 48.79832469082517]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2199a2df6322aac618f8f28e6dfd385dc3e26d30", "fields": {"departement": "94", "stop_lat": 48.79067620604572, "code_postal": "94076", "stop_lon": 2.3536460658781135, "coord": [48.79067620604572, 2.3536460658781135], "stop_id": 3864893, "stop_desc": "RUE DE VERDUN - 94076", "stop_name": "VERDUN - HAUTES BRUYERES"}, "geometry": {"type": "Point", "coordinates": [2.3536460658781135, 48.79067620604572]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "88e2db8dbb588e75ddb652b027f23017fecb4bd3", "fields": {"departement": "94", "stop_lat": 48.787054009493104, "code_postal": "94076", "stop_lon": 2.3541073858526538, "coord": [48.787054009493104, 2.3541073858526538], "stop_id": 3864895, "stop_desc": "8 BIS RUE DE CHEVILLY - 94076", "stop_name": "VERDUN - REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.3541073858526538, 48.787054009493104]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a503b802f483da2a5b926cf864227deac96a5558", "fields": {"departement": "94", "stop_lat": 48.78411489536589, "code_postal": "94076", "stop_lon": 2.35450086375768, "coord": [48.78411489536589, 2.35450086375768], "stop_id": 3864897, "stop_desc": "68 RUE DE CHEVILLY - 94076", "stop_name": "LES LOZAITS"}, "geometry": {"type": "Point", "coordinates": [2.35450086375768, 48.78411489536589]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dd26bf2a9af8ef50bf339613fb334329872cce9b", "fields": {"departement": "94", "stop_lat": 48.77285415407288, "code_postal": "94021", "stop_lon": 2.3401510827296654, "coord": [48.77285415407288, 2.3401510827296654], "stop_id": 3864906, "stop_desc": "11 AV DU GENERAL DE GAULLE - 94021", "stop_name": "LYCEE PAULINE ROLAND"}, "geometry": {"type": "Point", "coordinates": [2.3401510827296654, 48.77285415407288]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0ee2ad20c8c8eb411e954940e793a806c04682f2", "fields": {"departement": "94", "stop_lat": 48.76991509860442, "code_postal": "94021", "stop_lon": 2.337526625367893, "coord": [48.76991509860442, 2.337526625367893], "stop_id": 3864909, "stop_desc": "96 BD JEAN MERMOZ - 94021", "stop_name": "CROIX DU SUD - CENTRE DE PNEUMOLOGIE"}, "geometry": {"type": "Point", "coordinates": [2.337526625367893, 48.76991509860442]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "894d64bb692ef1a091e194f0d45642e937b6b6c3", "fields": {"departement": "94", "stop_lat": 48.76345265661607, "code_postal": "94021", "stop_lon": 2.3391172862241154, "coord": [48.76345265661607, 2.3391172862241154], "stop_id": 3864913, "stop_desc": "AVENUE GEORGES GUYNEMER - 94021", "stop_name": "PARC DES SPORTS"}, "geometry": {"type": "Point", "coordinates": [2.3391172862241154, 48.76345265661607]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ac3df45c8d499f38245903d666095411cc16c00a", "fields": {"departement": "94", "stop_lat": 48.750527288692936, "code_postal": "94065", "stop_lon": 2.3473537578382837, "coord": [48.750527288692936, 2.3473537578382837], "stop_id": 3864924, "stop_desc": "24-26 AVENUE LUCIEN GRELINGER - 94065", "stop_name": "PLACE LOUIS XIII"}, "geometry": {"type": "Point", "coordinates": [2.3473537578382837, 48.750527288692936]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "da7127771976757e9d5e3b6d2e93f0d837a42d02", "fields": {"departement": "94", "stop_lat": 48.746976528713446, "code_postal": "94065", "stop_lon": 2.3514576628283086, "coord": [48.746976528713446, 2.3514576628283086], "stop_id": 3864926, "stop_desc": "RUE D'ORLY - 94065", "stop_name": "TRAVERSIERE"}, "geometry": {"type": "Point", "coordinates": [2.3514576628283086, 48.746976528713446]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5722ae3ab14091789f5623d48d9b2b252846c0f8", "fields": {"departement": "94", "stop_lat": 48.74716531499765, "code_postal": "94065", "stop_lon": 2.351172294523596, "coord": [48.74716531499765, 2.351172294523596], "stop_id": 3864927, "stop_desc": "RUE D'ORLY PROLONGEE - 94065", "stop_name": "TRAVERSIERE"}, "geometry": {"type": "Point", "coordinates": [2.351172294523596, 48.74716531499765]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "89a673c45245ec3bcd429d4eeb4258c03ba885d2", "fields": {"departement": "92", "stop_lat": 48.885470572986875, "code_postal": "92051", "stop_lon": 2.2591543980581945, "coord": [48.885470572986875, 2.2591543980581945], "stop_id": 3877767, "stop_desc": "AVENUE CHARLES DE GAULLE - 92051", "stop_name": "PONT DE NEUILLY-METRO"}, "geometry": {"type": "Point", "coordinates": [2.2591543980581945, 48.885470572986875]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "684e7198e2db5bd1ea67d558ab739d639f179756", "fields": {"departement": "92", "stop_lat": 48.88679588428236, "code_postal": "92062", "stop_lon": 2.252147587443668, "coord": [48.88679588428236, 2.252147587443668], "stop_id": 3877770, "stop_desc": "PISTE SOUS LE PONT DE NEUILLY - 92062", "stop_name": "RD 7 - PONT DE NEUILLY"}, "geometry": {"type": "Point", "coordinates": [2.252147587443668, 48.88679588428236]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e32c81c2e865a1929f3d56062fdc498714cec2ef", "fields": {"departement": "92", "stop_lat": 48.88408018811139, "code_postal": "92062", "stop_lon": 2.249998928193167, "coord": [48.88408018811139, 2.249998928193167], "stop_id": 3877773, "stop_desc": "FACE 55 QUAI DE DION BOUTON - 92062", "stop_name": "SOLJENITSYNE"}, "geometry": {"type": "Point", "coordinates": [2.249998928193167, 48.88408018811139]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ef0c02237c303cd72f128043416efeaff644f3c6", "fields": {"departement": "92", "stop_lat": 48.88615114877273, "code_postal": "92062", "stop_lon": 2.243304155685305, "coord": [48.88615114877273, 2.243304155685305], "stop_id": 3877776, "stop_desc": "FACE 59 RUE DE LA REPUBLIQUE - 92062", "stop_name": "ROUSSELLE"}, "geometry": {"type": "Point", "coordinates": [2.243304155685305, 48.88615114877273]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f535e53eb06214934dc86d0b3894975c07107a95", "fields": {"departement": "92", "stop_lat": 48.88566422032724, "code_postal": "92050", "stop_lon": 2.2210781787603233, "coord": [48.88566422032724, 2.2210781787603233], "stop_id": 3877784, "stop_desc": "FACE 308 AVENUE GEORGES CLEMENCEAU - 92050", "stop_name": "CRAIOVA"}, "geometry": {"type": "Point", "coordinates": [2.2210781787603233, 48.88566422032724]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dc6862373200e1603e59f05c10872219de27e840", "fields": {"departement": "92", "stop_lat": 48.88633906822974, "code_postal": "92050", "stop_lon": 2.212968047459183, "coord": [48.88633906822974, 2.212968047459183], "stop_id": 3877787, "stop_desc": "FACE 174 AVENUE GEORGES CLEMENCEAU - 92050", "stop_name": "FELIX FAURE"}, "geometry": {"type": "Point", "coordinates": [2.212968047459183, 48.88633906822974]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "58e09af8a934b7ebba3be67f9dc54221f650b515", "fields": {"departement": "92", "stop_lat": 48.88773054840441, "code_postal": "92050", "stop_lon": 2.188120317758764, "coord": [48.88773054840441, 2.188120317758764], "stop_id": 3877800, "stop_desc": "85 AVENUE LENINE - 92050", "stop_name": "LES GOULVENTS"}, "geometry": {"type": "Point", "coordinates": [2.188120317758764, 48.88773054840441]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c930a7dde392479f649fbdc1397933d40e7955ce", "fields": {"departement": "92", "stop_lat": 48.88732996129307, "code_postal": "92063", "stop_lon": 2.1840602666177458, "coord": [48.88732996129307, 2.1840602666177458], "stop_id": 3877807, "stop_desc": "19 AVENUE DE COLMAR - 92063", "stop_name": "RUE DU MANS"}, "geometry": {"type": "Point", "coordinates": [2.1840602666177458, 48.88732996129307]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a0946934af1f066326bec6a78770660ca64580b7", "fields": {"departement": "92", "stop_lat": 48.8843757175651, "code_postal": "92062", "stop_lon": 2.227036245944437, "coord": [48.8843757175651, 2.227036245944437], "stop_id": 3877808, "stop_desc": "129 ROND-POINT DES BERGERES - 92062", "stop_name": "LES BERGERES"}, "geometry": {"type": "Point", "coordinates": [2.227036245944437, 48.8843757175651]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5a7b8730b717c175e0ef2d3944b1d92845690cb0", "fields": {"departement": "92", "stop_lat": 48.884058815418165, "code_postal": "92062", "stop_lon": 2.2454746925662836, "coord": [48.884058815418165, 2.2454746925662836], "stop_id": 3877809, "stop_desc": "FACE 52 RUE JEAN JAURES - 92062", "stop_name": "ARAGO - JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.2454746925662836, 48.884058815418165]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8e5f94cd720296fc0b3959e109eba8f7d40ded56", "fields": {"departement": "92", "stop_lat": 48.90829480662086, "code_postal": "92050", "stop_lon": 2.2131062512149104, "coord": [48.90829480662086, 2.2131062512149104], "stop_id": 3887637, "stop_desc": "RUE DU 1ER MAI - 92050", "stop_name": "PONT DE ROUEN"}, "geometry": {"type": "Point", "coordinates": [2.2131062512149104, 48.90829480662086]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3616bc78c9a66ce6688ebe55f114d3ac6d08c04f", "fields": {"departement": "92", "stop_lat": 48.925009743763596, "code_postal": "92025", "stop_lon": 2.2672230825226314, "coord": [48.925009743763596, 2.2672230825226314], "stop_id": 3887644, "stop_desc": "85-87 AVENUE DE L'AGENT SARRE - 92025", "stop_name": "GRAMME"}, "geometry": {"type": "Point", "coordinates": [2.2672230825226314, 48.925009743763596]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4cfe3a1633a087f04cb95a69e7cb304d27798ff2", "fields": {"departement": "92", "stop_lat": 48.91970396630706, "code_postal": "92025", "stop_lon": 2.226961075200175, "coord": [48.91970396630706, 2.226961075200175], "stop_id": 3887656, "stop_desc": "316 RUE PRESIDENT SALVADOR ALLENDE - 92025", "stop_name": "ZONE INDUSTRIELLE"}, "geometry": {"type": "Point", "coordinates": [2.226961075200175, 48.91970396630706]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e2a70b154b96e35701cbdb86a9ce88ade9e59b8a", "fields": {"departement": "92", "stop_lat": 48.912277593016725, "code_postal": "92050", "stop_lon": 2.223650006178399, "coord": [48.912277593016725, 2.223650006178399], "stop_id": 3887659, "stop_desc": "403 AVENUE DE LA REPUBLIQUE - 92050", "stop_name": "HOPITAL DE NANTERRE"}, "geometry": {"type": "Point", "coordinates": [2.223650006178399, 48.912277593016725]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a5627bba5e9addf0b361aa431a1cbd9e1826b67f", "fields": {"departement": "92", "stop_lat": 48.91106151693222, "code_postal": "92050", "stop_lon": 2.2207212698138035, "coord": [48.91106151693222, 2.2207212698138035], "stop_id": 3887660, "stop_desc": "361 AVENUE DE LA REPUBLIQUE - 92050", "stop_name": "LES ORMES"}, "geometry": {"type": "Point", "coordinates": [2.2207212698138035, 48.91106151693222]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c99ec302dddd14ae7fa14edbd1b4db59cfb96a2d", "fields": {"departement": "92", "stop_lat": 48.90829480662086, "code_postal": "92050", "stop_lon": 2.2131062512149104, "coord": [48.90829480662086, 2.2131062512149104], "stop_id": 3887663, "stop_desc": "RUE DU 1ER MAI - 92050", "stop_name": "PONT DE ROUEN"}, "geometry": {"type": "Point", "coordinates": [2.2131062512149104, 48.90829480662086]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b56889ab41cb241274b723f96c74d03a06563781", "fields": {"departement": "92", "stop_lat": 48.895660974821816, "code_postal": "92050", "stop_lon": 2.2150856614501198, "coord": [48.895660974821816, 2.2150856614501198], "stop_id": 3887667, "stop_desc": "141 AVENUE FREDERIC ET IRENE JOLIOT CURIE - 92050", "stop_name": "PREFECTURE DES HAUTS-DE-SEINE"}, "geometry": {"type": "Point", "coordinates": [2.2150856614501198, 48.895660974821816]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6fd8c29ad4c413bada8bc9a38fcbec516b1c8de3", "fields": {"departement": "92", "stop_lat": 48.8876927900033, "code_postal": "92050", "stop_lon": 2.2016533213360185, "coord": [48.8876927900033, 2.2016533213360185], "stop_id": 3887674, "stop_desc": "6 AVENUE FREDERIC ET IRENE JOLIOT CURIE - 92050", "stop_name": "PLACE DE LA BOULE - JOLIOT CURIE"}, "geometry": {"type": "Point", "coordinates": [2.2016533213360185, 48.8876927900033]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e558dd78987ac52306ecddc1f39240b311cb7082", "fields": {"departement": "92", "stop_lat": 48.89284340529102, "code_postal": "92050", "stop_lon": 2.2106899287691784, "coord": [48.89284340529102, 2.2106899287691784], "stop_id": 3887677, "stop_desc": "136 AVENUE FREDERIC ET IRENE JOLIOT CURIE - 92050", "stop_name": "PALAIS DES SPORTS"}, "geometry": {"type": "Point", "coordinates": [2.2106899287691784, 48.89284340529102]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8bd6f00f59c15a364dddaebb56fe216a0a27f900", "fields": {"departement": "92", "stop_lat": 48.90763002067973, "code_postal": "92050", "stop_lon": 2.2133532477195574, "coord": [48.90763002067973, 2.2133532477195574], "stop_id": 3887683, "stop_desc": "AVENUE DE LA REPUBLIQUE - 92050", "stop_name": "PONT DE ROUEN"}, "geometry": {"type": "Point", "coordinates": [2.2133532477195574, 48.90763002067973]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e99700084848ace4f621e9993788abb6770e9e03", "fields": {"departement": "92", "stop_lat": 48.909016979537306, "code_postal": "92050", "stop_lon": 2.2162266830020974, "coord": [48.909016979537306, 2.2162266830020974], "stop_id": 3887684, "stop_desc": "334 AVENUE DE LA REPUBLIQUE - 92050", "stop_name": "LES SAULES"}, "geometry": {"type": "Point", "coordinates": [2.2162266830020974, 48.909016979537306]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0796be5b1149f2ea71b604f3f7f42b371b1231c7", "fields": {"departement": "92", "stop_lat": 48.91956937608856, "code_postal": "92025", "stop_lon": 2.227193185179809, "coord": [48.91956937608856, 2.227193185179809], "stop_id": 3887689, "stop_desc": "239 RUE PRESIDENT SALVADOR ALLENDE - 92025", "stop_name": "ZONE INDUSTRIELLE"}, "geometry": {"type": "Point", "coordinates": [2.227193185179809, 48.91956937608856]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7f3ba726fb285acd7599d0356fc55c4f9353996a", "fields": {"departement": "92", "stop_lat": 48.92995205379622, "code_postal": "92036", "stop_lon": 2.28361095267388, "coord": [48.92995205379622, 2.28361095267388], "stop_id": 3887705, "stop_desc": "AVENUE DE LA REDOUTE - 92036", "stop_name": "LES COURTILLES"}, "geometry": {"type": "Point", "coordinates": [2.28361095267388, 48.92995205379622]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b9ced7de92c0cc024583c893edd27da7e85f46b0", "fields": {"departement": "92", "stop_lat": 48.912206021163, "code_postal": "92050", "stop_lon": 2.22399103145728, "coord": [48.912206021163, 2.22399103145728], "stop_id": 3887711, "stop_desc": "FACE 403 AVENUE DE LA REPUBLIQUE - 92050", "stop_name": "HOPITAL DE NANTERRE"}, "geometry": {"type": "Point", "coordinates": [2.22399103145728, 48.912206021163]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b0dee4c578e4b69059d442931e8f437a882e04c4", "fields": {"departement": "75", "stop_lat": 48.834693841080195, "code_postal": "75113", "stop_lon": 2.373428010525295, "coord": [48.834693841080195, 2.373428010525295], "stop_id": 3887750, "stop_desc": "RUE RAYMOND ARON - 75113", "stop_name": "BIBLIOTHEQUE NATIONALE DE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.373428010525295, 48.834693841080195]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "939cdc45a1f119fb6fe442166d8416353c6d2624", "fields": {"departement": "75", "stop_lat": 48.84058201232279, "code_postal": "75113", "stop_lon": 2.368816327199685, "coord": [48.84058201232279, 2.368816327199685], "stop_id": 3887755, "stop_desc": "AVENUE PIERRE MENDES FRANCE - 75113", "stop_name": "CITE DE LA MODE ET DU DESIGN"}, "geometry": {"type": "Point", "coordinates": [2.368816327199685, 48.84058201232279]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "13136e08755ae2f1cbdfb579f2c195cf2cf1972e", "fields": {"departement": "75", "stop_lat": 48.84211202457843, "code_postal": "75105", "stop_lon": 2.3593675474188056, "coord": [48.84211202457843, 2.3593675474188056], "stop_id": 3887758, "stop_desc": "FACE 43 R BUFFON - 75105", "stop_name": "BUFFON - JARDIN DES PLANTES"}, "geometry": {"type": "Point", "coordinates": [2.3593675474188056, 48.84211202457843]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0778be550c889079be3bafe4cf10212482b21083", "fields": {"departement": "75", "stop_lat": 48.8416902150658, "code_postal": "75105", "stop_lon": 2.3558271590760156, "coord": [48.8416902150658, 2.3558271590760156], "stop_id": 3887759, "stop_desc": "36 BIS RUE GEOFFROY SAINT-HILAIRE - 75105", "stop_name": "BUFFON - LA MOSQUEE"}, "geometry": {"type": "Point", "coordinates": [2.3558271590760156, 48.8416902150658]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5651d7125a888b1ed43653c523c3acf770e3ef55", "fields": {"departement": "75", "stop_lat": 48.846364682967724, "code_postal": "75105", "stop_lon": 2.3480941419752357, "coord": [48.846364682967724, 2.3480941419752357], "stop_id": 3887764, "stop_desc": "FACE 13 RUE CLOVIS - 75105", "stop_name": "LYCEE HENRI IV"}, "geometry": {"type": "Point", "coordinates": [2.3480941419752357, 48.846364682967724]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ec1d5faf2b1ae2f377546b9cf9325950899f6f96", "fields": {"departement": "75", "stop_lat": 48.84638266447135, "code_postal": "75106", "stop_lon": 2.3264833034864068, "coord": [48.84638266447135, 2.3264833034864068], "stop_id": 3887777, "stop_desc": "129 RUE DE RENNES - 75106", "stop_name": "RENNES - SAINT-PLACIDE"}, "geometry": {"type": "Point", "coordinates": [2.3264833034864068, 48.84638266447135]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e10e3b81b1ba3dbec4cfe603a9c7892c04a5bcea", "fields": {"departement": "75", "stop_lat": 48.84483663038162, "code_postal": "75106", "stop_lon": 2.3246317107880734, "coord": [48.84483663038162, 2.3246317107880734], "stop_id": 3887778, "stop_desc": "146 BIS RUE DE RENNES - 75106", "stop_name": "RENNES - LITTRE"}, "geometry": {"type": "Point", "coordinates": [2.3246317107880734, 48.84483663038162]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c98bed1c21ae0d096f9bb16fe8ae6876df49eb99", "fields": {"departement": "75", "stop_lat": 48.84597723329333, "code_postal": "75106", "stop_lon": 2.318476408387774, "coord": [48.84597723329333, 2.318476408387774], "stop_id": 3887781, "stop_desc": "15-17 BOULEVARD DU MONTPARNASSE - 75106", "stop_name": "MAINE - VAUGIRARD"}, "geometry": {"type": "Point", "coordinates": [2.318476408387774, 48.84597723329333]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7faebf200d2b04d63f1716382c22f84d01912d06", "fields": {"departement": "75", "stop_lat": 48.84003340777896, "code_postal": "75115", "stop_lon": 2.3043454088503066, "coord": [48.84003340777896, 2.3043454088503066], "stop_id": 3887786, "stop_desc": "2 RUE PAUL BARRUEL - 75115", "stop_name": "CAMBRONNE - VAUGIRARD"}, "geometry": {"type": "Point", "coordinates": [2.3043454088503066, 48.84003340777896]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f66b778d9c12ff1a5bbb2a858440d5150af4df3d", "fields": {"departement": "75", "stop_lat": 48.83501865748275, "code_postal": "75115", "stop_lon": 2.3055058164005855, "coord": [48.83501865748275, 2.3055058164005855], "stop_id": 3887791, "stop_desc": "21 RUE BRANCION - 75115", "stop_name": "BRANCION - VOUILLE"}, "geometry": {"type": "Point", "coordinates": [2.3055058164005855, 48.83501865748275]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6ef99086a65a26a1875a7eb00381e70c310b5607", "fields": {"departement": "75", "stop_lat": 48.828112292914845, "code_postal": "75115", "stop_lon": 2.293313129412713, "coord": [48.828112292914845, 2.293313129412713], "stop_id": 3887798, "stop_desc": "13 RUE DU GENERAL GUILLAUMAT - 75115", "stop_name": "THEATRE DE LA PLAINE - GUILLAUMAT"}, "geometry": {"type": "Point", "coordinates": [2.293313129412713, 48.828112292914845]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "634bed36b64a05db43e9247bd260f874cdc4a7a8", "fields": {"departement": "92", "stop_lat": 48.81881855615467, "code_postal": "92075", "stop_lon": 2.292028029266672, "coord": [48.81881855615467, 2.292028029266672], "stop_id": 3887805, "stop_desc": "FACE 6 AVENUE VICTOR BASCH - 92075", "stop_name": "GARE DE VANVES-MALAKOFF"}, "geometry": {"type": "Point", "coordinates": [2.292028029266672, 48.81881855615467]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "84c71dc51fbc64db3b8cdc3ca0658121c71303ed", "fields": {"departement": "92", "stop_lat": 48.81881855615467, "code_postal": "92075", "stop_lon": 2.292028029266672, "coord": [48.81881855615467, 2.292028029266672], "stop_id": 3887806, "stop_desc": "FACE 6 AVENUE VICTOR BASCH - 92075", "stop_name": "GARE DE VANVES-MALAKOFF"}, "geometry": {"type": "Point", "coordinates": [2.292028029266672, 48.81881855615467]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "42ead9a1ecac824de6f565b9b0cbb6da41f51e8c", "fields": {"departement": "75", "stop_lat": 48.844243191296684, "code_postal": "75115", "stop_lon": 2.3223578401351035, "coord": [48.844243191296684, 2.3223578401351035], "stop_id": 3887812, "stop_desc": "62 BOULEVARD DU MONTPARNASSE - 75115", "stop_name": "PLACE DU 18 JUIN 1940"}, "geometry": {"type": "Point", "coordinates": [2.3223578401351035, 48.844243191296684]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dcf0f6593ed4826951f82cc3ddfc4190fd7e9a9a", "fields": {"departement": "75", "stop_lat": 48.84904201040451, "code_postal": "75105", "stop_lon": 2.355775319106966, "coord": [48.84904201040451, 2.355775319106966], "stop_id": 3887813, "stop_desc": "FACE 2 RUE DES FOSSES SAINT BERNARD - 75105", "stop_name": "INSTITUT DU MONDE ARABE"}, "geometry": {"type": "Point", "coordinates": [2.355775319106966, 48.84904201040451]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "014c7f2a766d4de45671ba693e6c55be7acab2ba", "fields": {"departement": "75", "stop_lat": 48.84705496127261, "code_postal": "75105", "stop_lon": 2.3604182094584814, "coord": [48.84705496127261, 2.3604182094584814], "stop_id": 3887815, "stop_desc": "5 QUAI SAINT BERNARD - 75105", "stop_name": "CUVIER"}, "geometry": {"type": "Point", "coordinates": [2.3604182094584814, 48.84705496127261]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "41ae962c3d0330b5b6c1da1f3acf9762712aaafa", "fields": {"departement": "75", "stop_lat": 48.84353974667888, "code_postal": "75113", "stop_lon": 2.365495658602017, "coord": [48.84353974667888, 2.365495658602017], "stop_id": 3887817, "stop_desc": "QUAI D'AUSTERLITZ - 75113", "stop_name": "GARE D'AUSTERLITZ"}, "geometry": {"type": "Point", "coordinates": [2.365495658602017, 48.84353974667888]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "73a64c31624f9c09d1b151ee61bdff453102fcd0", "fields": {"departement": "75", "stop_lat": 48.87085576401549, "code_postal": "75109", "stop_lon": 2.3317506483025654, "coord": [48.87085576401549, 2.3317506483025654], "stop_id": 3893341, "stop_desc": "1 RUE AUBER - 75109", "stop_name": "OPERA"}, "geometry": {"type": "Point", "coordinates": [2.3317506483025654, 48.87085576401549]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1e0d7c6abe8b0f654cf6d8edb209e629d7c83b39", "fields": {"departement": "75", "stop_lat": 48.85463346706191, "code_postal": "75101", "stop_lon": 2.343955516715223, "coord": [48.85463346706191, 2.343955516715223], "stop_id": 3893353, "stop_desc": "4 QUAI DES ORFEVRES - 75101", "stop_name": "PONT SAINT-MICHEL - QUAI DES ORFEVRES"}, "geometry": {"type": "Point", "coordinates": [2.343955516715223, 48.85463346706191]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "11548bc40112cfd4fe90243dde5539072f0e339f", "fields": {"departement": "75", "stop_lat": 48.83859026416306, "code_postal": "75105", "stop_lon": 2.350107592645486, "coord": [48.83859026416306, 2.350107592645486], "stop_id": 3893364, "stop_desc": "5 RUE CLAUDE BERNARD - 75105", "stop_name": "MONGE - CLAUDE BERNARD"}, "geometry": {"type": "Point", "coordinates": [2.350107592645486, 48.83859026416306]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cd88f617e11a15f5b14bb912425f1505024e1e15", "fields": {"departement": "75", "stop_lat": 48.834248809681654, "code_postal": "75113", "stop_lon": 2.3537823601834367, "coord": [48.834248809681654, 2.3537823601834367], "stop_id": 3893368, "stop_desc": "57-63 AVENUE DES GOBELINS - 75113", "stop_name": "BANQUIER"}, "geometry": {"type": "Point", "coordinates": [2.3537823601834367, 48.834248809681654]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6d3cb737ed6a5577c5e2ffaf2d8c45adb71250b9", "fields": {"departement": "75", "stop_lat": 48.8313903398072, "code_postal": "75113", "stop_lon": 2.3565177598840474, "coord": [48.8313903398072, 2.3565177598840474], "stop_id": 3893371, "stop_desc": "FACE 209 BOULEVARD VINCENT AURIOL - 75113", "stop_name": "PLACE D'ITALIE"}, "geometry": {"type": "Point", "coordinates": [2.3565177598840474, 48.8313903398072]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "897c7e8ba89a40e14fa57d5aa82f10aa914239b5", "fields": {"departement": "75", "stop_lat": 48.83188407729677, "code_postal": "75113", "stop_lon": 2.3598260512798004, "coord": [48.83188407729677, 2.3598260512798004], "stop_id": 3893372, "stop_desc": "175 - 177 BOULEVARD VINCENT AURIOL - 75113", "stop_name": "LES ALPES"}, "geometry": {"type": "Point", "coordinates": [2.3598260512798004, 48.83188407729677]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6ed77003a1b3f67e716949fd417076c7dda07931", "fields": {"departement": "75", "stop_lat": 48.82461782113403, "code_postal": "75113", "stop_lon": 2.3762386106788336, "coord": [48.82461782113403, 2.3762386106788336], "stop_id": 3893385, "stop_desc": "6 RUE DE PATAY - 75113", "stop_name": "REGNAULT"}, "geometry": {"type": "Point", "coordinates": [2.3762386106788336, 48.82461782113403]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b7c47e31b7ef96a168d38878a644d0aaf6663329", "fields": {"departement": "75", "stop_lat": 48.821706774177926, "code_postal": "75113", "stop_lon": 2.373187572302347, "coord": [48.821706774177926, 2.373187572302347], "stop_id": 3893388, "stop_desc": "FACE 47 AVENUE BOUTROUX - 75113", "stop_name": "CLAUDE REGAUD"}, "geometry": {"type": "Point", "coordinates": [2.373187572302347, 48.821706774177926]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "953770369f395eecd867af86ba6691fec7156423", "fields": {"departement": "75", "stop_lat": 48.82323415815727, "code_postal": "75113", "stop_lon": 2.374876436715813, "coord": [48.82323415815727, 2.374876436715813], "stop_id": 3893391, "stop_desc": "FACE 20 BOULEVARD MASSENA - 75113", "stop_name": "MASSENA - DARMESTETER"}, "geometry": {"type": "Point", "coordinates": [2.374876436715813, 48.82323415815727]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "37ab868b2b80765316c964d17d39e9d4da2a568b", "fields": {"departement": "92", "stop_lat": 48.886856639445476, "code_postal": "92050", "stop_lon": 2.201355691235118, "coord": [48.886856639445476, 2.201355691235118], "stop_id": 4025377, "stop_desc": "10 AVENUE GEORGES CLEMENCEAU - 92050", "stop_name": "PLACE DE LA BOULE - CLEMENCEAU"}, "geometry": {"type": "Point", "coordinates": [2.201355691235118, 48.886856639445476]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "01b8c18ad0df1321d21df4cac748f67e8fedf96e", "fields": {"departement": "92", "stop_lat": 48.88553311566029, "code_postal": "92050", "stop_lon": 2.207259964985575, "coord": [48.88553311566029, 2.207259964985575], "stop_id": 4025380, "stop_desc": "50 R PHILIPPE TRIAIRE - 92050", "stop_name": "LES CHENEVREUX"}, "geometry": {"type": "Point", "coordinates": [2.207259964985575, 48.88553311566029]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ee206ea32f988c208ff864cd6dd9841294c75d4c", "fields": {"departement": "75", "stop_lat": 48.844359905437706, "code_postal": "75112", "stop_lon": 2.441914105326876, "coord": [48.844359905437706, 2.441914105326876], "stop_id": 4028764, "stop_desc": "AVENUE DE NOGENT - 75112", "stop_name": "CHATEAU DE VINCENNES"}, "geometry": {"type": "Point", "coordinates": [2.441914105326876, 48.844359905437706]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ba4dd3f98b502eea6c6f2e081d4fef457fc6d8c3", "fields": {"departement": "75", "stop_lat": 48.84248422077351, "code_postal": "75112", "stop_lon": 2.4488274563768555, "coord": [48.84248422077351, 2.4488274563768555], "stop_id": 4028766, "stop_desc": "AV DE NOGENT - 75112", "stop_name": "TREMBLAY - PEPINIERE"}, "geometry": {"type": "Point", "coordinates": [2.4488274563768555, 48.84248422077351]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "435d3b71d94d7a9fb1a4a1ba72076e3e0d12e2e4", "fields": {"departement": "94", "stop_lat": 48.84591520755849, "code_postal": "94033", "stop_lon": 2.4512042476175644, "coord": [48.84591520755849, 2.4512042476175644], "stop_id": 4028768, "stop_desc": "FACE 14 RUE DE LA PEPINIERE - 94033", "stop_name": "CHARMES - PEPINIERE"}, "geometry": {"type": "Point", "coordinates": [2.4512042476175644, 48.84591520755849]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7a2ba73428551c6ba9dd67f5e04934130bd6ad5e", "fields": {"departement": "94", "stop_lat": 48.83615702610112, "code_postal": "94052", "stop_lon": 2.482156379329326, "coord": [48.83615702610112, 2.482156379329326], "stop_id": 4028781, "stop_desc": "FACE AVENUE DE LATTRE DE TASSIGNY - 94052", "stop_name": "SOUS-PREFECTURE - JULES FERRY"}, "geometry": {"type": "Point", "coordinates": [2.482156379329326, 48.83615702610112]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "655b629cdc15d933cadaf318b34df82a77f9fc00", "fields": {"departement": "94", "stop_lat": 48.8357349277931, "code_postal": "94052", "stop_lon": 2.489112285575055, "coord": [48.8357349277931, 2.489112285575055], "stop_id": 4028783, "stop_desc": "2 RUE JACQUES KABLE - 94052", "stop_name": "RUE DU PORT"}, "geometry": {"type": "Point", "coordinates": [2.489112285575055, 48.8357349277931]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "117880a30223511a9efceecbda0e4f65d1df55eb", "fields": {"departement": "94", "stop_lat": 48.84084377806442, "code_postal": "94058", "stop_lon": 2.5062289263976862, "coord": [48.84084377806442, 2.5062289263976862], "stop_id": 4028792, "stop_desc": "103 AVENUE DU GENERAL DE GAULLE - 94058", "stop_name": "MAIRIE DU PERREUX-SUR-MARNE"}, "geometry": {"type": "Point", "coordinates": [2.5062289263976862, 48.84084377806442]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "908010785cedcd4cea20c262b262dd4094d6681c", "fields": {"departement": "94", "stop_lat": 48.84101438643778, "code_postal": "94058", "stop_lon": 2.5063384103979285, "coord": [48.84101438643778, 2.5063384103979285], "stop_id": 4028793, "stop_desc": "FACE 93 AVENUE DU GENERAL DE GAULLE - 94058", "stop_name": "MAIRIE DU PERREUX-SUR-MARNE"}, "geometry": {"type": "Point", "coordinates": [2.5063384103979285, 48.84101438643778]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "32cfd31948f54f2cf1867a672031965c3546fd84", "fields": {"departement": "94", "stop_lat": 48.8324244878627, "code_postal": "94058", "stop_lon": 2.5110207899145554, "coord": [48.8324244878627, 2.5110207899145554], "stop_id": 4028799, "stop_desc": "94 BOULEVARD FOCH - 94058", "stop_name": "FOCH"}, "geometry": {"type": "Point", "coordinates": [2.5110207899145554, 48.8324244878627]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "42b3e59d04c9818353af615dfbd4cbf74b09aecc", "fields": {"departement": "94", "stop_lat": 48.84408523258336, "code_postal": "94015", "stop_lon": 2.5262017872214524, "coord": [48.84408523258336, 2.5262017872214524], "stop_id": 4028811, "stop_desc": "AVENUE ETIENNE DE SILHOUETTE - 94015", "stop_name": "BRY-SUR-MARNE RER"}, "geometry": {"type": "Point", "coordinates": [2.5262017872214524, 48.84408523258336]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b53b23f0aa99be5a4380b2f612a49acf79c92f99", "fields": {"departement": "94", "stop_lat": 48.777826464918576, "code_postal": "94028", "stop_lon": 2.466286278833099, "coord": [48.777826464918576, 2.466286278833099], "stop_id": 5675614, "stop_desc": "RUE RENE ARCOS - 94028", "stop_name": "RENE ARCOS"}, "geometry": {"type": "Point", "coordinates": [2.466286278833099, 48.777826464918576]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "044018ea33a9acd9526d51d7a43f0739763a0057", "fields": {"departement": "94", "stop_lat": 48.78044293691277, "code_postal": "94028", "stop_lon": 2.4653951686108386, "coord": [48.78044293691277, 2.4653951686108386], "stop_id": 5675615, "stop_desc": "FACE 96BIS RUE JULIETTE SAVAR - 94028", "stop_name": "CASALIS - SAVAR"}, "geometry": {"type": "Point", "coordinates": [2.4653951686108386, 48.78044293691277]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "06d124af9177214c8bf425268edc070841edcba3", "fields": {"departement": "94", "stop_lat": 48.794271448231854, "code_postal": "94028", "stop_lon": 2.460613557714741, "coord": [48.794271448231854, 2.460613557714741], "stop_id": 5675620, "stop_desc": "FACE 21 RUE DE PARIS - 94028", "stop_name": "EGLISE DE CRETEIL"}, "geometry": {"type": "Point", "coordinates": [2.460613557714741, 48.794271448231854]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "14f4d1f0aa2df63b26f820709e11a66cd1df05d6", "fields": {"departement": "94", "stop_lat": 48.820876767236136, "code_postal": "94018", "stop_lon": 2.4018920245725224, "coord": [48.820876767236136, 2.4018920245725224], "stop_id": 5675631, "stop_desc": "QUAI DES CARRIERES - 94018", "stop_name": "PONT NELSON MANDELA"}, "geometry": {"type": "Point", "coordinates": [2.4018920245725224, 48.820876767236136]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "844a4857dc83410e712fb7218e01d6956f933f79", "fields": {"departement": "75", "stop_lat": 48.828144659099536, "code_postal": "75112", "stop_lon": 2.390017246298964, "coord": [48.828144659099536, 2.390017246298964], "stop_id": 5675634, "stop_desc": "RUE ROBERT ETLIN - 75112", "stop_name": "PONT NATIONAL - QUAI DE BERCY"}, "geometry": {"type": "Point", "coordinates": [2.390017246298964, 48.828144659099536]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "39ec227e4a6b22983ff8ba30e085270af484f024", "fields": {"departement": "75", "stop_lat": 48.84563186778721, "code_postal": "75112", "stop_lon": 2.3728500974777273, "coord": [48.84563186778721, 2.3728500974777273], "stop_id": 5675642, "stop_desc": "FACE 21 BOULEVARD DIDEROT - 75112", "stop_name": "GARE DE LYON - DIDEROT"}, "geometry": {"type": "Point", "coordinates": [2.3728500974777273, 48.84563186778721]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b8371bc51643d8d72a8cbed1ebe3e857a01a173b", "fields": {"departement": "75", "stop_lat": 48.83426595556621, "code_postal": "75112", "stop_lon": 2.3883489193871736, "coord": [48.83426595556621, 2.3883489193871736], "stop_id": 5675648, "stop_desc": "38 RUE BARON LE ROY - 75112", "stop_name": "BARON LE ROY"}, "geometry": {"type": "Point", "coordinates": [2.3883489193871736, 48.83426595556621]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9412f52bfce5728aa8a982db85d6913fb12604ef", "fields": {"departement": "94", "stop_lat": 48.81265425396275, "code_postal": "94046", "stop_lon": 2.427574778454602, "coord": [48.81265425396275, 2.427574778454602], "stop_id": 5675655, "stop_desc": "18 AVENUE DU GENERAL LECLERC - 94046", "stop_name": "ERNEST RENAN"}, "geometry": {"type": "Point", "coordinates": [2.427574778454602, 48.81265425396275]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ae65eb78310723fd302ee8636b865dcf5ac196d0", "fields": {"departement": "94", "stop_lat": 48.804012330369375, "code_postal": "94046", "stop_lon": 2.444050598766659, "coord": [48.804012330369375, 2.444050598766659], "stop_id": 5675660, "stop_desc": "102 AVENUE DU GENERAL LECLERC - 94046", "stop_name": "LES JUILLIOTTES-METRO"}, "geometry": {"type": "Point", "coordinates": [2.444050598766659, 48.804012330369375]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "49264ecdbe5fa788e3637aef1ea4fa12ae9d32b6", "fields": {"departement": "94", "stop_lat": 48.793965959282545, "code_postal": "94028", "stop_lon": 2.4605176061845695, "coord": [48.793965959282545, 2.4605176061845695], "stop_id": 5675663, "stop_desc": "RUE DE PARIS - 94028", "stop_name": "EGLISE DE CRETEIL"}, "geometry": {"type": "Point", "coordinates": [2.4605176061845695, 48.793965959282545]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c2dc72212e911e5b381a1ef292de1d69992ffb68", "fields": {"departement": "94", "stop_lat": 48.78243951884652, "code_postal": "94028", "stop_lon": 2.4642304365360244, "coord": [48.78243951884652, 2.4642304365360244], "stop_id": 5675667, "stop_desc": "92-94 RUE JULIETTE SAVAR - 94028", "stop_name": "HENRI CARDINAUD"}, "geometry": {"type": "Point", "coordinates": [2.4642304365360244, 48.78243951884652]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "96ebe59f7517d88fb1da9930cefcd84427b0af3e", "fields": {"departement": "94", "stop_lat": 48.7670902372259, "code_postal": "94028", "stop_lon": 2.4703658054910917, "coord": [48.7670902372259, 2.4703658054910917], "stop_id": 5675677, "stop_desc": "ROUTE DE LA POMPADOUR - 94028", "stop_name": "EUROPARC"}, "geometry": {"type": "Point", "coordinates": [2.4703658054910917, 48.7670902372259]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fd250393f6ada1dd226f05ed43149e051c8433a1", "fields": {"departement": "94", "stop_lat": 48.76320853830806, "code_postal": "94071", "stop_lon": 2.511224374086569, "coord": [48.76320853830806, 2.511224374086569], "stop_id": 5675684, "stop_desc": "RUE DE BREVANNES - 94071", "stop_name": "RUE DE BREVANNES - CHERE ANNEE"}, "geometry": {"type": "Point", "coordinates": [2.511224374086569, 48.76320853830806]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "767b7fe4f3d99ecf85db86c26f6f7bca9feb36cb", "fields": {"departement": "91", "stop_lat": 48.698807068481955, "code_postal": "91122", "stop_lon": 2.1633102237812083, "coord": [48.698807068481955, 2.1633102237812083], "stop_id": 5682039, "stop_desc": "FACE 231 VOIE DE LA FACULTE - 91122", "stop_name": "BURES-SUR-YVETTE RER - UNIVERSITE"}, "geometry": {"type": "Point", "coordinates": [2.1633102237812083, 48.698807068481955]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6a9cf05e7d7c1f995bc3dbfe31c8cd9a4512c48f", "fields": {"departement": "91", "stop_lat": 48.7065337226987, "code_postal": "91477", "stop_lon": 2.2385765006887657, "coord": [48.7065337226987, 2.2385765006887657], "stop_id": 5682048, "stop_desc": "1 AVENUE DU GENERAL LECLERC - 91477", "stop_name": "PALAISEAU-VILLEBON RER"}, "geometry": {"type": "Point", "coordinates": [2.2385765006887657, 48.7065337226987]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4e3eb1ba86f827ea8ad843286cc202f3770838dd", "fields": {"departement": "91", "stop_lat": 48.71647366819736, "code_postal": "91477", "stop_lon": 2.24831053275632, "coord": [48.71647366819736, 2.24831053275632], "stop_id": 5682051, "stop_desc": "FACE 8 - 8BIS RUE EDOUARD BRANLY - 91477", "stop_name": "EDOUARD BRANLY-PALAISEAU RER"}, "geometry": {"type": "Point", "coordinates": [2.24831053275632, 48.71647366819736]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a3d2045b9002876a4273dc0a7acae7c24b3da5b9", "fields": {"departement": "75", "stop_lat": 48.82356309968058, "code_postal": "75114", "stop_lon": 2.3256985758622, "coord": [48.82356309968058, 2.3256985758622], "stop_id": 5682053, "stop_desc": "123 AVENUE DU GENERAL LECLERC - 75114", "stop_name": "PORTE D'ORLEANS"}, "geometry": {"type": "Point", "coordinates": [2.3256985758622, 48.82356309968058]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dbf27c2f5aaec1af4ff821e77a717e6da3acaacf", "fields": {"departement": "75", "stop_lat": 48.846041587705, "code_postal": "75105", "stop_lon": 2.3402777279421545, "coord": [48.846041587705, 2.3402777279421545], "stop_id": 5682057, "stop_desc": "75 BOULEVARD SAINT-MICHEL - 75105", "stop_name": "LUXEMBOURG"}, "geometry": {"type": "Point", "coordinates": [2.3402777279421545, 48.846041587705]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2b2fdfad3eb6be2f92ca3eee30b4d04259649064", "fields": {"departement": "75", "stop_lat": 48.85247650155603, "code_postal": "75105", "stop_lon": 2.3435194294224857, "coord": [48.85247650155603, 2.3435194294224857], "stop_id": 5682059, "stop_desc": "10 BOULEVARD SAINT-MICHEL - 75105", "stop_name": "SAINT-MICHEL - SAINT-GERMAIN"}, "geometry": {"type": "Point", "coordinates": [2.3435194294224857, 48.85247650155603]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f46c175dbb003de0f3a8de5b03509f3dc08298f1", "fields": {"departement": "94", "stop_lat": 48.77631442599705, "code_postal": "94038", "stop_lon": 2.331243898097316, "coord": [48.77631442599705, 2.331243898097316], "stop_id": 5688800, "stop_desc": "28 AVENUE LARROUMES - 94038", "stop_name": "SOUS-PREFECTURE - ROSERAIE"}, "geometry": {"type": "Point", "coordinates": [2.331243898097316, 48.77631442599705]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bd211f8a426a1608eace586e44d5419d2196d20a", "fields": {"departement": "94", "stop_lat": 48.77838179451567, "code_postal": "94038", "stop_lon": 2.3348747498291758, "coord": [48.77838179451567, 2.3348747498291758], "stop_id": 5688803, "stop_desc": "7-9 RUE JEAN JAURES - 94038", "stop_name": "SOUS-PREFECTURE - EGLISE DE L'HAY-LES-ROSES"}, "geometry": {"type": "Point", "coordinates": [2.3348747498291758, 48.77838179451567]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "49d08c156e8bd6ebd6744fb770fd727731207c0e", "fields": {"departement": "94", "stop_lat": 48.787422420393476, "code_postal": "94076", "stop_lon": 2.354760399438226, "coord": [48.787422420393476, 2.354760399438226], "stop_id": 5688811, "stop_desc": "127 AVENUE DE LA REPUBLIQUE - 94076", "stop_name": "VERDUN - REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.354760399438226, 48.787422420393476]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c172a36ad0b381f45834936308d5fe5513c5e23e", "fields": {"departement": "94", "stop_lat": 48.78839237866755, "code_postal": "94076", "stop_lon": 2.3592086500654466, "coord": [48.78839237866755, 2.3592086500654466], "stop_id": 5688813, "stop_desc": "83 AVENUE DE LA REPUBLIQUE - 94076", "stop_name": "HOPITAL PAUL GUIRAUD"}, "geometry": {"type": "Point", "coordinates": [2.3592086500654466, 48.78839237866755]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7d8c8e35ec1b014f24bf42199c4a40a8334a3241", "fields": {"departement": "94", "stop_lat": 48.788470834681945, "code_postal": "94076", "stop_lon": 2.3698320279301677, "coord": [48.788470834681945, 2.3698320279301677], "stop_id": 5688819, "stop_desc": "18 TER AVENUE LOUIS ARAGON - 94076", "stop_name": "RUE DE LA COMMUNE"}, "geometry": {"type": "Point", "coordinates": [2.3698320279301677, 48.788470834681945]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d18ebac6a224077a6dff4caeeb035ab7fd660c19", "fields": {"departement": "94", "stop_lat": 48.78850494351641, "code_postal": "94081", "stop_lon": 2.3759802633642253, "coord": [48.78850494351641, 2.3759802633642253], "stop_id": 5688820, "stop_desc": "133 AVENUE DU MOULIN DE SAQUET - 94081", "stop_name": "COLONEL FABIEN"}, "geometry": {"type": "Point", "coordinates": [2.3759802633642253, 48.78850494351641]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aaa31319e99da24530ebc47e833c2993cf9327c3", "fields": {"departement": "94", "stop_lat": 48.79196144548288, "code_postal": "94081", "stop_lon": 2.3863892504374427, "coord": [48.79196144548288, 2.3863892504374427], "stop_id": 5688823, "stop_desc": "13 AVENUE DU MOULIN DE SAQUET - 94081", "stop_name": "MUSEE MAC-VAL"}, "geometry": {"type": "Point", "coordinates": [2.3863892504374427, 48.79196144548288]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "67290690501862912092c172cd664ac0a9e721ef", "fields": {"departement": "94", "stop_lat": 48.795909442621635, "code_postal": "94081", "stop_lon": 2.4156147782433646, "coord": [48.795909442621635, 2.4156147782433646], "stop_id": 5688832, "stop_desc": "AVENUE DU PRESIDENT SALVADOR ALLENDE - 94081", "stop_name": "PONT DE VITRY"}, "geometry": {"type": "Point", "coordinates": [2.4156147782433646, 48.795909442621635]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1fe9e86a0900d7f9ba8da1107a5abcfcacfc1a5c", "fields": {"departement": "94", "stop_lat": 48.798628214442694, "code_postal": "94002", "stop_lon": 2.422244468242623, "coord": [48.798628214442694, 2.422244468242623], "stop_id": 5688835, "stop_desc": "9 RUE EMILE ZOLA - 94002", "stop_name": "DOLET - ZOLA"}, "geometry": {"type": "Point", "coordinates": [2.422244468242623, 48.798628214442694]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "af13c8b47c0595da437c3e9001c1fbdf414d4620", "fields": {"departement": "94", "stop_lat": 48.80102123483813, "code_postal": "94046", "stop_lon": 2.431200824049608, "coord": [48.80102123483813, 2.431200824049608], "stop_id": 5688841, "stop_desc": "FACE 10 AVENUE DE LA REPUBLIQUE - 94046", "stop_name": "MAIRIE DE MAISONS-ALFORT"}, "geometry": {"type": "Point", "coordinates": [2.431200824049608, 48.80102123483813]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "485c429e9825a3a2dff0a89f283d966e718496d9", "fields": {"departement": "94", "stop_lat": 48.79734659026719, "code_postal": "94046", "stop_lon": 2.440377259620767, "coord": [48.79734659026719, 2.440377259620767], "stop_id": 5688845, "stop_desc": "RUE DE MESLY - 94046", "stop_name": "HECTOR BERLIOZ"}, "geometry": {"type": "Point", "coordinates": [2.440377259620767, 48.79734659026719]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "79872e89c706d470d849dc39d008174eeaf0fc34", "fields": {"departement": "94", "stop_lat": 48.79690849007686, "code_postal": "94028", "stop_lon": 2.4478180270113206, "coord": [48.79690849007686, 2.4478180270113206], "stop_id": 5688850, "stop_desc": "FACE 96 AVENUE DU GENERAL DE GAULLE - 94028", "stop_name": "CRETEIL - L'ECHAT"}, "geometry": {"type": "Point", "coordinates": [2.4478180270113206, 48.79690849007686]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8d98ff6e5e6910f9c04f310b21f88a93cc86f874", "fields": {"departement": "94", "stop_lat": 48.79850589677907, "code_postal": "94028", "stop_lon": 2.450406354830155, "coord": [48.79850589677907, 2.450406354830155], "stop_id": 5688851, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 94028", "stop_name": "HOPITAL HENRI MONDOR"}, "geometry": {"type": "Point", "coordinates": [2.450406354830155, 48.79850589677907]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "13bd28595d316711677efd31f6fb388a68c667b2", "fields": {"departement": "94", "stop_lat": 48.79298344235775, "code_postal": "94081", "stop_lon": 2.392375721426145, "coord": [48.79298344235775, 2.392375721426145], "stop_id": 5688854, "stop_desc": "AVENUE HENRI BARBUSSE - 94081", "stop_name": "EXPLORADOME"}, "geometry": {"type": "Point", "coordinates": [2.392375721426145, 48.79298344235775]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fa4e65a74db72d470b53edccb9c999e0d9acc5d5", "fields": {"departement": "75", "stop_lat": 48.89770047171525, "code_postal": "75118", "stop_lon": 2.3453514386567176, "coord": [48.89770047171525, 2.3453514386567176], "stop_id": 5688892, "stop_desc": "FACE 53 RUE BELLIARD - 75118", "stop_name": "PORTE DE CLIGNANCOURT"}, "geometry": {"type": "Point", "coordinates": [2.3453514386567176, 48.89770047171525]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7dfc5aa5f87be5d26eaf35a137ec4e9a01064367", "fields": {"departement": "75", "stop_lat": 48.89635231596725, "code_postal": "75118", "stop_lon": 2.3465234551347627, "coord": [48.89635231596725, 2.3465234551347627], "stop_id": 5688894, "stop_desc": "108 RUE DU MONT CENIS - 75118", "stop_name": "ALBERT KAHN"}, "geometry": {"type": "Point", "coordinates": [2.3465234551347627, 48.89635231596725]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "93adc94cd3ede6e08bea1a1442069cfdec715da7", "fields": {"departement": "75", "stop_lat": 48.89118443658087, "code_postal": "75118", "stop_lon": 2.34943917727661, "coord": [48.89118443658087, 2.34943917727661], "stop_id": 5688897, "stop_desc": "73 BOULEVARD BARBES - 75118", "stop_name": "MARCADET - POISSONNIERS"}, "geometry": {"type": "Point", "coordinates": [2.34943917727661, 48.89118443658087]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9dab14268b2b989cd43ffffb598c17cdcca409cf", "fields": {"departement": "75", "stop_lat": 48.88409354700711, "code_postal": "75118", "stop_lon": 2.349287609746963, "coord": [48.88409354700711, 2.349287609746963], "stop_id": 5688901, "stop_desc": "5 BOULEVARD BARBES - 75118", "stop_name": "BARBES - ROCHECHOUART"}, "geometry": {"type": "Point", "coordinates": [2.349287609746963, 48.88409354700711]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6af5378858b3bcce6171aeb9e7e276cc637a93a0", "fields": {"departement": "75", "stop_lat": 48.878916395001, "code_postal": "75110", "stop_lon": 2.353469578838293, "coord": [48.878916395001, 2.353469578838293], "stop_id": 5688905, "stop_desc": "103 BOULEVARD DE MAGENTA - 75110", "stop_name": "LA FAYETTE - MAGENTA - GARE DU NORD"}, "geometry": {"type": "Point", "coordinates": [2.353469578838293, 48.878916395001]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1b32013747cc2bc308cee5fc009892457db34832", "fields": {"departement": "75", "stop_lat": 48.878107383214136, "code_postal": "75110", "stop_lon": 2.354586637385039, "coord": [48.878107383214136, 2.354586637385039], "stop_id": 5688906, "stop_desc": "110 BOULEVARD DE MAGENTA - 75110", "stop_name": "LA FAYETTE - MAGENTA - GARE DU NORD"}, "geometry": {"type": "Point", "coordinates": [2.354586637385039, 48.878107383214136]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f4e6be34c4a31701576bea92f4128fb91d708a20", "fields": {"departement": "75", "stop_lat": 48.871114258986275, "code_postal": "75110", "stop_lon": 2.3604834541826505, "coord": [48.871114258986275, 2.3604834541826505], "stop_id": 5688910, "stop_desc": "27-29 BOULEVARD DE MAGENTA - 75110", "stop_name": "JACQUES BONSERGENT"}, "geometry": {"type": "Point", "coordinates": [2.3604834541826505, 48.871114258986275]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a3c683d33329e2921f450755398de5fa686dd191", "fields": {"departement": "75", "stop_lat": 48.8653517497349, "code_postal": "75111", "stop_lon": 2.3676734998981503, "coord": [48.8653517497349, 2.3676734998981503], "stop_id": 5688918, "stop_desc": "21 BOULEVARD VOLTAIRE - 75111", "stop_name": "JEAN-PIERRE TIMBAUD"}, "geometry": {"type": "Point", "coordinates": [2.3676734998981503, 48.8653517497349]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8feefe812bfc076c3217c5685c0872967d831a31", "fields": {"departement": "75", "stop_lat": 48.86363439638464, "code_postal": "75111", "stop_lon": 2.370533101805249, "coord": [48.86363439638464, 2.370533101805249], "stop_id": 5688920, "stop_desc": "45-47 BOULEVARD VOLTAIRE - 75111", "stop_name": "OBERKAMPF - RICHARD LENOIR"}, "geometry": {"type": "Point", "coordinates": [2.370533101805249, 48.86363439638464]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2408b74907612e7f0696d39d46e3ef42150d4933", "fields": {"departement": "75", "stop_lat": 48.86110781750106, "code_postal": "75111", "stop_lon": 2.374331819166815, "coord": [48.86110781750106, 2.374331819166815], "stop_id": 5688921, "stop_desc": "72 BOULEVARD VOLTAIRE - 75111", "stop_name": "SAINT-AMBROISE"}, "geometry": {"type": "Point", "coordinates": [2.374331819166815, 48.86110781750106]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c2fe9efbfbc269a65c039708c7c949a219314114", "fields": {"departement": "75", "stop_lat": 48.85998364434044, "code_postal": "75111", "stop_lon": 2.3766602048518144, "coord": [48.85998364434044, 2.3766602048518144], "stop_id": 5688924, "stop_desc": "91 BOULEVARD VOLTAIRE - 75111", "stop_name": "CHEMIN VERT"}, "geometry": {"type": "Point", "coordinates": [2.3766602048518144, 48.85998364434044]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7935287354b488d8d94c4c20e91f05d51d5d553b", "fields": {"departement": "75", "stop_lat": 48.85623380839704, "code_postal": "75111", "stop_lon": 2.3825139584475243, "coord": [48.85623380839704, 2.3825139584475243], "stop_id": 5688927, "stop_desc": "150 BOULEVARD VOLTAIRE - 75111", "stop_name": "GYMNASE JAPY"}, "geometry": {"type": "Point", "coordinates": [2.3825139584475243, 48.85623380839704]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c27792af09d33119f4e4c8d4eb61f05cea04d4fe", "fields": {"departement": "75", "stop_lat": 48.85634155898826, "code_postal": "75111", "stop_lon": 2.3827728331433713, "coord": [48.85634155898826, 2.3827728331433713], "stop_id": 5688928, "stop_desc": "131 BOULEVARD VOLTAIRE - 75111", "stop_name": "GYMNASE JAPY"}, "geometry": {"type": "Point", "coordinates": [2.3827728331433713, 48.85634155898826]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0ebc0f46eda93662ef34afeb5dcb75e5ffb7a0ab", "fields": {"departement": "75", "stop_lat": 48.85434502523925, "code_postal": "75111", "stop_lon": 2.3861078610898048, "coord": [48.85434502523925, 2.3861078610898048], "stop_id": 5688930, "stop_desc": "173 BOULEVARD VOLTAIRE - 75111", "stop_name": "CHARONNE"}, "geometry": {"type": "Point", "coordinates": [2.3861078610898048, 48.85434502523925]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9fc52e71c116ffd695c59cf02fdb12c1f924ea87", "fields": {"departement": "75", "stop_lat": 48.85208775845587, "code_postal": "75111", "stop_lon": 2.389442370038292, "coord": [48.85208775845587, 2.389442370038292], "stop_id": 5688931, "stop_desc": "230 BOULEVARD VOLTAIRE - 75111", "stop_name": "BOULETS - MONTREUIL"}, "geometry": {"type": "Point", "coordinates": [2.389442370038292, 48.85208775845587]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ec7ff1a56c8e7bb015b0543b86b85f295c19f9d3", "fields": {"departement": "75", "stop_lat": 48.84942542520063, "code_postal": "75111", "stop_lon": 2.3939064675651625, "coord": [48.84942542520063, 2.3939064675651625], "stop_id": 5688933, "stop_desc": "282 BOULEVARD VOLTAIRE - 75111", "stop_name": "NATION - VOLTAIRE"}, "geometry": {"type": "Point", "coordinates": [2.3939064675651625, 48.84942542520063]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "04dc49b3402f0f39abb0fd037c14f85f9112df5a", "fields": {"departement": "75", "stop_lat": 48.84433838362532, "code_postal": "75112", "stop_lon": 2.4105815975354195, "coord": [48.84433838362532, 2.4105815975354195], "stop_id": 5688942, "stop_desc": "1 AVENUE COURTELINE - 75112", "stop_name": "PORTE DE SAINT-MANDE"}, "geometry": {"type": "Point", "coordinates": [2.4105815975354195, 48.84433838362532]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "defef9082506d01b1d67f00b75f48f96286402a0", "fields": {"departement": "75", "stop_lat": 48.84408977596744, "code_postal": "75112", "stop_lon": 2.4424854671358247, "coord": [48.84408977596744, 2.4424854671358247], "stop_id": 5688955, "stop_desc": "PISTE GARE ROUTIERE - 75112", "stop_name": "CHATEAU DE VINCENNES"}, "geometry": {"type": "Point", "coordinates": [2.4424854671358247, 48.84408977596744]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "177de45facbe9d3ee64e1ca9055d55e16771b360", "fields": {"departement": "75", "stop_lat": 48.848929915496655, "code_postal": "75111", "stop_lon": 2.3963708007370164, "coord": [48.848929915496655, 2.3963708007370164], "stop_id": 5688959, "stop_desc": "13 PLACE DE LA NATION - 75111", "stop_name": "NATION"}, "geometry": {"type": "Point", "coordinates": [2.3963708007370164, 48.848929915496655]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "93a585824159e802db39922f3d71f68648b32ef6", "fields": {"departement": "94", "stop_lat": 48.81948841684325, "code_postal": "94041", "stop_lon": 2.392471922404574, "coord": [48.81948841684325, 2.392471922404574], "stop_id": 5709860, "stop_desc": "FACE 10-12 RUE JEAN-JACQUES ROUSSEAU - 94041", "stop_name": "JULES VANZUPPE"}, "geometry": {"type": "Point", "coordinates": [2.392471922404574, 48.81948841684325]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "664216200ccc212fe617ca0060d553e2fe5cfc49", "fields": {"departement": "94", "stop_lat": 48.81815136070248, "code_postal": "94069", "stop_lon": 2.4198674632527934, "coord": [48.81815136070248, 2.4198674632527934], "stop_id": 5709872, "stop_desc": "2 RUE DU PONT - 94069", "stop_name": "PONT DE CHARENTON"}, "geometry": {"type": "Point", "coordinates": [2.4198674632527934, 48.81815136070248]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bbde1b01ad9129f43e55b170e7a166fcb50f38d2", "fields": {"departement": "94", "stop_lat": 48.83814143459987, "code_postal": "94067", "stop_lon": 2.4175983140877286, "coord": [48.83814143459987, 2.4175983140877286], "stop_id": 5709879, "stop_desc": "94-96 AVENUE DU GENERAL DE GAULLE - 94067", "stop_name": "JEAN MERMOZ"}, "geometry": {"type": "Point", "coordinates": [2.4175983140877286, 48.83814143459987]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dfef01acb70d787de9c51b49c6d9f29b4c607b76", "fields": {"departement": "94", "stop_lat": 48.84580335074176, "code_postal": "94067", "stop_lon": 2.423955830416074, "coord": [48.84580335074176, 2.423955830416074], "stop_id": 5709886, "stop_desc": "67 AVENUE DE PARIS - 94067", "stop_name": "AUBERT"}, "geometry": {"type": "Point", "coordinates": [2.423955830416074, 48.84580335074176]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "54ddcbb48bca1d735733afd3b31fb654616d1b72", "fields": {"departement": "94", "stop_lat": 48.84523046287141, "code_postal": "94080", "stop_lon": 2.432683449855939, "coord": [48.84523046287141, 2.432683449855939], "stop_id": 5709890, "stop_desc": "48-50 AVENUE DE PARIS - 94080", "stop_name": "VIGNERONS"}, "geometry": {"type": "Point", "coordinates": [2.432683449855939, 48.84523046287141]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "75395596f8f758cca154e0f8d7078ab961bcb279", "fields": {"departement": "75", "stop_lat": 48.84408977596744, "code_postal": "75112", "stop_lon": 2.4424854671358247, "coord": [48.84408977596744, 2.4424854671358247], "stop_id": 5709893, "stop_desc": "PISTE GARE ROUTIERE - 75112", "stop_name": "CHATEAU DE VINCENNES"}, "geometry": {"type": "Point", "coordinates": [2.4424854671358247, 48.84408977596744]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "daff32fa680e4b51304b08c417182fe11acd9797", "fields": {"departement": "94", "stop_lat": 48.8461007461472, "code_postal": "94080", "stop_lon": 2.422839704596597, "coord": [48.8461007461472, 2.422839704596597], "stop_id": 5709895, "stop_desc": "144 AVENUE DE PARIS - 94080", "stop_name": "AUBERT"}, "geometry": {"type": "Point", "coordinates": [2.422839704596597, 48.8461007461472]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "21c77d96214796b1f368992824456b6662ddc7d6", "fields": {"departement": "75", "stop_lat": 48.85534333466014, "code_postal": "75101", "stop_lon": 2.346107532202977, "coord": [48.85534333466014, 2.346107532202977], "stop_id": 5709976, "stop_desc": "1 BOULEVARD DU PALAIS - 75101", "stop_name": "CITE - PALAIS DE JUSTICE"}, "geometry": {"type": "Point", "coordinates": [2.346107532202977, 48.85534333466014]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c24f3158f5dba45003b6ce427db0658f38bd96ee", "fields": {"departement": "75", "stop_lat": 48.860511386883175, "code_postal": "75101", "stop_lon": 2.340537373296839, "coord": [48.860511386883175, 2.340537373296839], "stop_id": 5709982, "stop_desc": "FACE 6 RUE DE L'AMIRAL DE COLIGNY - 75101", "stop_name": "LOUVRE - RIVOLI"}, "geometry": {"type": "Point", "coordinates": [2.340537373296839, 48.860511386883175]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2ec98e875ca8112d6d3af5e593234a5a03aa4a3d", "fields": {"departement": "75", "stop_lat": 48.87388449426836, "code_postal": "75109", "stop_lon": 2.342663664424022, "coord": [48.87388449426836, 2.342663664424022], "stop_id": 5709989, "stop_desc": "30 RUE DU FAUBOURG MONTMARTRE - 75109", "stop_name": "PROVENCE - FAUBOURG MONTMARTRE"}, "geometry": {"type": "Point", "coordinates": [2.342663664424022, 48.87388449426836]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "81217c9807b217baeaecfb80fc1e7250a78c5088", "fields": {"departement": "75", "stop_lat": 48.8866640640046, "code_postal": "75118", "stop_lon": 2.347448426484339, "coord": [48.8866640640046, 2.347448426484339], "stop_id": 5709995, "stop_desc": "49 RUE DE CLIGNANCOURT - 75118", "stop_name": "MULLER"}, "geometry": {"type": "Point", "coordinates": [2.347448426484339, 48.8866640640046]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5190937652a62caa3280a34360af46c27cd9a1d5", "fields": {"departement": "75", "stop_lat": 48.891346276137476, "code_postal": "75118", "stop_lon": 2.348730495281202, "coord": [48.891346276137476, 2.348730495281202], "stop_id": 5709997, "stop_desc": "92 RUE DE CLIGNANCOURT - 75118", "stop_name": "EUGENE SUE"}, "geometry": {"type": "Point", "coordinates": [2.348730495281202, 48.891346276137476]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b5fc68e00aeaed23a5a337a5bcbb5f8aed0add0e", "fields": {"departement": "93", "stop_lat": 48.90225710325208, "code_postal": "93070", "stop_lon": 2.3423803526552986, "coord": [48.90225710325208, 2.3423803526552986], "stop_id": 5710006, "stop_desc": "97 RUE DES ROSIERS - 93070", "stop_name": "MARCHE AUX PUCES"}, "geometry": {"type": "Point", "coordinates": [2.3423803526552986, 48.90225710325208]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b53f5cbf0d391000eca70c474d92521169961591", "fields": {"departement": "93", "stop_lat": 48.91197216252709, "code_postal": "93070", "stop_lon": 2.3333551706347166, "coord": [48.91197216252709, 2.3333551706347166], "stop_id": 5710014, "stop_desc": "PLACE DE LA REPUBLIQUE - 93070", "stop_name": "MAIRIE DE SAINT-OUEN"}, "geometry": {"type": "Point", "coordinates": [2.3333551706347166, 48.91197216252709]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a6c740576f0254a4ebe068efaa902183b65806c6", "fields": {"departement": "93", "stop_lat": 48.911468887244375, "code_postal": "93070", "stop_lon": 2.3333006704060493, "coord": [48.911468887244375, 2.3333006704060493], "stop_id": 5710015, "stop_desc": "11 BOULEVARD VICTOR HUGO - 93070", "stop_name": "MAIRIE DE SAINT-OUEN"}, "geometry": {"type": "Point", "coordinates": [2.3333006704060493, 48.911468887244375]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8b97e8e93570318d1ebc4fceb854b80c5a896f62", "fields": {"departement": "75", "stop_lat": 48.8686000083944, "code_postal": "75102", "stop_lon": 2.341069192464145, "coord": [48.8686000083944, 2.341069192464145], "stop_id": 5710030, "stop_desc": "11 PLACE DE LA BOURSE - 75102", "stop_name": "BOURSE"}, "geometry": {"type": "Point", "coordinates": [2.341069192464145, 48.8686000083944]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "abce51dcf0c7f0afd931ff5feec78fc839d3fc60", "fields": {"departement": "75", "stop_lat": 48.87388449426836, "code_postal": "75109", "stop_lon": 2.342663664424022, "coord": [48.87388449426836, 2.342663664424022], "stop_id": 5710047, "stop_desc": "30 RUE DU FAUBOURG MONTMARTRE - 75109", "stop_name": "PROVENCE - FAUBOURG MONTMARTRE"}, "geometry": {"type": "Point", "coordinates": [2.342663664424022, 48.87388449426836]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6b2e33eb17ee0e659a8d984691b6160f52930504", "fields": {"departement": "93", "stop_lat": 48.90225710325208, "code_postal": "93070", "stop_lon": 2.3423803526552986, "coord": [48.90225710325208, 2.3423803526552986], "stop_id": 5710064, "stop_desc": "97 RUE DES ROSIERS - 93070", "stop_name": "MARCHE AUX PUCES"}, "geometry": {"type": "Point", "coordinates": [2.3423803526552986, 48.90225710325208]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6fce82cbe0405a32e0aedf10be763103140f0758", "fields": {"departement": "93", "stop_lat": 48.90203241805544, "code_postal": "93070", "stop_lon": 2.3425575469745206, "coord": [48.90203241805544, 2.3425575469745206], "stop_id": 5710065, "stop_desc": "148 RUE DES ROSIERS - 93070", "stop_name": "MARCHE AUX PUCES"}, "geometry": {"type": "Point", "coordinates": [2.3425575469745206, 48.90203241805544]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "65ef6e967f8e0416f1740d776710ad598019262d", "fields": {"departement": "93", "stop_lat": 48.90810772312276, "code_postal": "93070", "stop_lon": 2.332987353120165, "coord": [48.90810772312276, 2.332987353120165], "stop_id": 5710071, "stop_desc": "6 BIS RUE DES ROSIERS - 93070", "stop_name": "ERNEST RENAN"}, "geometry": {"type": "Point", "coordinates": [2.332987353120165, 48.90810772312276]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d62d3ef6a5c327219869dae3cf144d4ea0289bdd", "fields": {"departement": "93", "stop_lat": 48.91197216252709, "code_postal": "93070", "stop_lon": 2.3333551706347166, "coord": [48.91197216252709, 2.3333551706347166], "stop_id": 5710072, "stop_desc": "PLACE DE LA REPUBLIQUE - 93070", "stop_name": "MAIRIE DE SAINT-OUEN"}, "geometry": {"type": "Point", "coordinates": [2.3333551706347166, 48.91197216252709]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1e8ad635d9240a4158d3a2e9789517060aebe4e2", "fields": {"departement": "93", "stop_lat": 48.911468887244375, "code_postal": "93070", "stop_lon": 2.3333006704060493, "coord": [48.911468887244375, 2.3333006704060493], "stop_id": 5710073, "stop_desc": "11 BOULEVARD VICTOR HUGO - 93070", "stop_name": "MAIRIE DE SAINT-OUEN"}, "geometry": {"type": "Point", "coordinates": [2.3333006704060493, 48.911468887244375]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3e7c2bdb7141755ad2195ada771f454012ae8b65", "fields": {"departement": "93", "stop_lat": 48.911846045413384, "code_postal": "93070", "stop_lon": 2.327955868807036, "coord": [48.911846045413384, 2.327955868807036], "stop_id": 5710075, "stop_desc": "RUE DES BATELIERS - 93070", "stop_name": "PARVIS DES BATELIERS"}, "geometry": {"type": "Point", "coordinates": [2.327955868807036, 48.911846045413384]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "263862815b317a5a4ca464bd0ac8e3b25f7eb78c", "fields": {"departement": "75", "stop_lat": 48.88409354700711, "code_postal": "75118", "stop_lon": 2.349287609746963, "coord": [48.88409354700711, 2.349287609746963], "stop_id": 5710080, "stop_desc": "5 BOULEVARD BARBES - 75118", "stop_name": "BARBES - ROCHECHOUART"}, "geometry": {"type": "Point", "coordinates": [2.349287609746963, 48.88409354700711]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "536f99d06a19411e3c5637cec81dfae665112d32", "fields": {"departement": "75", "stop_lat": 48.874576588810406, "code_postal": "75109", "stop_lon": 2.340729011773776, "coord": [48.874576588810406, 2.340729011773776], "stop_id": 5710085, "stop_desc": "21-23 RUE DROUOT - 75109", "stop_name": "PROVENCE - DROUOT"}, "geometry": {"type": "Point", "coordinates": [2.340729011773776, 48.874576588810406]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d19d5dfa921595f911f35aa38bd5987d007f1ed8", "fields": {"departement": "75", "stop_lat": 48.87222193151079, "code_postal": "75109", "stop_lon": 2.3400476437111686, "coord": [48.87222193151079, 2.3400476437111686], "stop_id": 5710086, "stop_desc": "1 RUE DROUOT - 75109", "stop_name": "RICHELIEU - DROUOT - MAIRIE DU 9E"}, "geometry": {"type": "Point", "coordinates": [2.3400476437111686, 48.87222193151079]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b9c2048e94b654e2ca65aea2269d97da5fffaae6", "fields": {"departement": "75", "stop_lat": 48.85861502191514, "code_postal": "75101", "stop_lon": 2.3412319053226995, "coord": [48.85861502191514, 2.3412319053226995], "stop_id": 5710090, "stop_desc": "FACE 16 QUAI DU LOUVRE - 75101", "stop_name": "PONT NEUF - QUAI DU LOUVRE"}, "geometry": {"type": "Point", "coordinates": [2.3412319053226995, 48.85861502191514]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9183eaeda2b983ea86c82b01c6c0178a0b506a2c", "fields": {"departement": "93", "stop_lat": 48.91074081065126, "code_postal": "93070", "stop_lon": 2.3440309465362006, "coord": [48.91074081065126, 2.3440309465362006], "stop_id": 5726236, "stop_desc": "32 AVENUE MICHELET - 93070", "stop_name": "GODILLOT"}, "geometry": {"type": "Point", "coordinates": [2.3440309465362006, 48.91074081065126]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "29249039010e2729d93eb9a2da903fbc0d7e7f84", "fields": {"departement": "93", "stop_lat": 48.92612502424029, "code_postal": "93066", "stop_lon": 2.357289468620289, "coord": [48.92612502424029, 2.357289468620289], "stop_id": 5726244, "stop_desc": "380 AVENUE DU PRESIDENT WILSON - 93066", "stop_name": "PONT DU CANAL"}, "geometry": {"type": "Point", "coordinates": [2.357289468620289, 48.92612502424029]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "36acfee89160c253dbf8ef11f894ea2c988101f4", "fields": {"departement": "93", "stop_lat": 48.927410291962126, "code_postal": "93066", "stop_lon": 2.356444365044096, "coord": [48.927410291962126, 2.356444365044096], "stop_id": 5726245, "stop_desc": "AVENUE DU PRESIDENT WILSON - 93066", "stop_name": "PONT DU CANAL"}, "geometry": {"type": "Point", "coordinates": [2.356444365044096, 48.927410291962126]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a70f9c027e6f99db5552cf6aab3bdd892a0a89b9", "fields": {"departement": "93", "stop_lat": 48.928740296188124, "code_postal": "93066", "stop_lon": 2.3567994737664737, "coord": [48.928740296188124, 2.3567994737664737], "stop_id": 5726246, "stop_desc": "AVENUE DU PRESIDENT WILSON - 93066", "stop_name": "PORTE DE PARIS - STADE DE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.3567994737664737, 48.928740296188124]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4acbdafa0f2791479d38f139085f014be2b207ac", "fields": {"departement": "93", "stop_lat": 48.938347562476395, "code_postal": "93066", "stop_lon": 2.3548114262058704, "coord": [48.938347562476395, 2.3548114262058704], "stop_id": 5726253, "stop_desc": "11 BOULEVARD CARNOT - 93066", "stop_name": "MARCHE DE SAINT-DENIS-TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.3548114262058704, 48.938347562476395]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "238244bd3b6f3b6146db6560df19d3dbcfe66337", "fields": {"departement": "95", "stop_lat": 48.96733669378764, "code_postal": "95268", "stop_lon": 2.3914421891695534, "coord": [48.96733669378764, 2.3914421891695534], "stop_id": 5726277, "stop_desc": "2 AVENUE PIERRE SEMARD - 95268", "stop_name": "PIERRE SEMARD"}, "geometry": {"type": "Point", "coordinates": [2.3914421891695534, 48.96733669378764]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "45b957c8ffcfd1c9124c1c49a312ee615e95f10d", "fields": {"departement": "93", "stop_lat": 48.91371551285309, "code_postal": "93070", "stop_lon": 2.34407224104168, "coord": [48.91371551285309, 2.34407224104168], "stop_id": 5726284, "stop_desc": "4 AVENUE MICHELET - 93070", "stop_name": "LANDY - ORNANO"}, "geometry": {"type": "Point", "coordinates": [2.34407224104168, 48.91371551285309]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "89adfba05c2b9b6c53d75d6f8865b2ef2e30f377", "fields": {"departement": "93", "stop_lat": 48.92612502424029, "code_postal": "93066", "stop_lon": 2.357289468620289, "coord": [48.92612502424029, 2.357289468620289], "stop_id": 5726294, "stop_desc": "380 AVENUE DU PRESIDENT WILSON - 93066", "stop_name": "PONT DU CANAL"}, "geometry": {"type": "Point", "coordinates": [2.357289468620289, 48.92612502424029]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2a13c77b4c9c3897b39f539f75461245c357f258", "fields": {"departement": "93", "stop_lat": 48.928740296188124, "code_postal": "93066", "stop_lon": 2.3567994737664737, "coord": [48.928740296188124, 2.3567994737664737], "stop_id": 5726295, "stop_desc": "AVENUE DU PRESIDENT WILSON - 93066", "stop_name": "PORTE DE PARIS - STADE DE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.3567994737664737, 48.928740296188124]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "820f035b425d3030e62164c300daae6054ba0cf9", "fields": {"departement": "93", "stop_lat": 48.934088379381535, "code_postal": "93066", "stop_lon": 2.3502813423714684, "coord": [48.934088379381535, 2.3502813423714684], "stop_id": 5726297, "stop_desc": "8 BOULEVARD JULES GUESDE - 93066", "stop_name": "DENFERT-ROCHEREAU"}, "geometry": {"type": "Point", "coordinates": [2.3502813423714684, 48.934088379381535]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "effd851a762155ae4a732eb1edfcb3f668c4976e", "fields": {"departement": "93", "stop_lat": 48.938347562476395, "code_postal": "93066", "stop_lon": 2.3548114262058704, "coord": [48.938347562476395, 2.3548114262058704], "stop_id": 5726299, "stop_desc": "11 BOULEVARD CARNOT - 93066", "stop_name": "MARCHE DE SAINT-DENIS-TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.3548114262058704, 48.938347562476395]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fb40aa4671538bec217a8939aa6aa9e72e95925d", "fields": {"departement": "93", "stop_lat": 48.941284376402265, "code_postal": "93066", "stop_lon": 2.3647440727267015, "coord": [48.941284376402265, 2.3647440727267015], "stop_id": 5726301, "stop_desc": "AV JEAN MOULIN - 93066", "stop_name": "LYCEE PAUL ELUARD"}, "geometry": {"type": "Point", "coordinates": [2.3647440727267015, 48.941284376402265]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9c8721bb3bff2cafbc8cbcae37cd36004fafead6", "fields": {"departement": "93", "stop_lat": 48.947850246865144, "code_postal": "93072", "stop_lon": 2.3770409007672946, "coord": [48.947850246865144, 2.3770409007672946], "stop_id": 5726304, "stop_desc": "FACE 7-13 AVENUE DE STALINGRAD - 93072", "stop_name": "CLOS HANOT"}, "geometry": {"type": "Point", "coordinates": [2.3770409007672946, 48.947850246865144]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "23daf9cfbaba28f5e7fe09d860efbdb3db23bcf4", "fields": {"departement": "93", "stop_lat": 48.95039021456424, "code_postal": "93072", "stop_lon": 2.3858983142439496, "coord": [48.95039021456424, 2.3858983142439496], "stop_id": 5726306, "stop_desc": "79 BOULEVARD MAXIME GORKI - 93072", "stop_name": "LE GLOBE"}, "geometry": {"type": "Point", "coordinates": [2.3858983142439496, 48.95039021456424]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "19c39f355d57b884b57d660d20d392e6fd17fc21", "fields": {"departement": "93", "stop_lat": 48.945211975397044, "code_postal": "93066", "stop_lon": 2.363081661891284, "coord": [48.945211975397044, 2.363081661891284], "stop_id": 5726329, "stop_desc": "AV DE STALINGRAD - 93066", "stop_name": "SAINT-DENIS - UNIVERSITE"}, "geometry": {"type": "Point", "coordinates": [2.363081661891284, 48.945211975397044]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "06676790ade49d5cf5c622b15a40a84ea822b29b", "fields": {"departement": "93", "stop_lat": 48.952466555775885, "code_postal": "93072", "stop_lon": 2.384890511280149, "coord": [48.952466555775885, 2.384890511280149], "stop_id": 5726334, "stop_desc": "45 BOULEVARD MAXIME GORKI - 93072", "stop_name": "FRANCOIS BEGUE"}, "geometry": {"type": "Point", "coordinates": [2.384890511280149, 48.952466555775885]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "230ece272b70576841551f5aca789f88eca22c10", "fields": {"departement": "93", "stop_lat": 48.94830448312007, "code_postal": "93066", "stop_lon": 2.3575982253927537, "coord": [48.94830448312007, 2.3575982253927537], "stop_id": 5726494, "stop_desc": "28 AVENUE ROGER SEMAT - 93066", "stop_name": "GUYNEMER"}, "geometry": {"type": "Point", "coordinates": [2.3575982253927537, 48.94830448312007]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "24d57e3b2527d456ddf0896913efcdab74d98950", "fields": {"departement": "95", "stop_lat": 48.98052798729397, "code_postal": "95585", "stop_lon": 2.3692430188300597, "coord": [48.98052798729397, 2.3692430188300597], "stop_id": 5726502, "stop_desc": "100 AVENUE DE LA DIVISION LECLERC - 95585", "stop_name": "LES POIRIERS"}, "geometry": {"type": "Point", "coordinates": [2.3692430188300597, 48.98052798729397]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6ab22b2872ebf3763c0747b1a32223861ab1cd68", "fields": {"departement": "95", "stop_lat": 48.98606293116861, "code_postal": "95585", "stop_lon": 2.3718680454329575, "coord": [48.98606293116861, 2.3718680454329575], "stop_id": 5726503, "stop_desc": "AVENUE DE LA DIVISION LECLERC - 95585", "stop_name": "ROUTE DE GROSLAY"}, "geometry": {"type": "Point", "coordinates": [2.3718680454329575, 48.98606293116861]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f9b10e1d1f7490cfbbeb0171aef739962118ef80", "fields": {"departement": "95", "stop_lat": 48.991552816451964, "code_postal": "95585", "stop_lon": 2.3746301578176694, "coord": [48.991552816451964, 2.3746301578176694], "stop_id": 5726504, "stop_desc": "FACE 4 AVENUE DIVISION LECLERC - 95585", "stop_name": "THEODORE BULLIER"}, "geometry": {"type": "Point", "coordinates": [2.3746301578176694, 48.991552816451964]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "65abd81d389d67d972ba509d981406d98dd21ac9", "fields": {"departement": "95", "stop_lat": 48.996475701301144, "code_postal": "95585", "stop_lon": 2.3796184973023964, "coord": [48.996475701301144, 2.3796184973023964], "stop_id": 5726506, "stop_desc": "FACE 141 RUE PIERRE BROSSOLETTE - 95585", "stop_name": "MAIRIE DE SARCELLES"}, "geometry": {"type": "Point", "coordinates": [2.3796184973023964, 48.996475701301144]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "312bc75dd6414aece511aa047362cc4b66453bde", "fields": {"departement": "92", "stop_lat": 48.82263018567278, "code_postal": "92040", "stop_lon": 2.259003961239736, "coord": [48.82263018567278, 2.259003961239736], "stop_id": 5545677, "stop_desc": "FACE 16 RUE JEAN-JACQUES ROUSSEAU - 92040", "stop_name": "JEAN-JACQUES ROUSSEAU."}, "geometry": {"type": "Point", "coordinates": [2.259003961239736, 48.82263018567278]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "95da3b1ac7b0ebe3395e89d0ed2f7b2a4d2f6e83", "fields": {"departement": "92", "stop_lat": 48.83396076230996, "code_postal": "92012", "stop_lon": 2.2427043318565953, "coord": [48.83396076230996, 2.2427043318565953], "stop_id": 5549457, "stop_desc": "5 AVENUE ANDRE MORIZET - 92012", "stop_name": "MARCEL SEMBAT-METRO"}, "geometry": {"type": "Point", "coordinates": [2.2427043318565953, 48.83396076230996]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dbdedd5ae5d9391b129cac7825ebf395cf34b431", "fields": {"departement": "92", "stop_lat": 48.843687962585435, "code_postal": "92012", "stop_lon": 2.2461044005473303, "coord": [48.843687962585435, 2.2461044005473303], "stop_id": 5549475, "stop_desc": "FACE 54 RUE DENFERT-ROCHEREAU - 92012", "stop_name": "PLACE DENFERT-ROCHEREAU"}, "geometry": {"type": "Point", "coordinates": [2.2461044005473303, 48.843687962585435]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "82c82fb688c81dc8ccc8fcd0e905611b8a06f939", "fields": {"departement": "92", "stop_lat": 48.847235492565204, "code_postal": "92012", "stop_lon": 2.2428435485271696, "coord": [48.847235492565204, 2.2428435485271696], "stop_id": 5549476, "stop_desc": "FACE 10 RUE DENFERT-ROCHEREAU - 92012", "stop_name": "DENFERT-ROCHEREAU - PORTE DE BOULOGNE"}, "geometry": {"type": "Point", "coordinates": [2.2428435485271696, 48.847235492565204]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "18e5c79161b8670b3ee817e2331b4e7c350982d1", "fields": {"departement": "92", "stop_lat": 48.8363830284435, "code_postal": "92012", "stop_lon": 2.248690430994227, "coord": [48.8363830284435, 2.248690430994227], "stop_id": 5549519, "stop_desc": "FACE 63 RUE THIERS - 92012", "stop_name": "THIERS-VAILLANT"}, "geometry": {"type": "Point", "coordinates": [2.248690430994227, 48.8363830284435]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7818f95bfc920b52f187842c905ed0c67f5f76bc", "fields": {"departement": "92", "stop_lat": 48.84685301365016, "code_postal": "92012", "stop_lon": 2.236729963913616, "coord": [48.84685301365016, 2.236729963913616], "stop_id": 5549550, "stop_desc": "1 AVENUE CHARLES DE GAULLE - 92012", "stop_name": "PARCHAMP"}, "geometry": {"type": "Point", "coordinates": [2.236729963913616, 48.84685301365016]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e5ea54965538d38e78471369dd3f40e3c51fbfea", "fields": {"departement": "92", "stop_lat": 48.839505872408495, "code_postal": "92012", "stop_lon": 2.231733649429482, "coord": [48.839505872408495, 2.231733649429482], "stop_id": 5549556, "stop_desc": "26 RUE DE SILLY - 92012", "stop_name": "SILLY - MORIZET"}, "geometry": {"type": "Point", "coordinates": [2.231733649429482, 48.839505872408495]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3398bda9fbedf7daede7419f3b48d976db49a8a6", "fields": {"departement": "92", "stop_lat": 48.83578551488156, "code_postal": "92012", "stop_lon": 2.2322994160386282, "coord": [48.83578551488156, 2.2322994160386282], "stop_id": 5549557, "stop_desc": "FACE 81 RUE DE SILLY - 92012", "stop_name": "SILLY - GALLIENI"}, "geometry": {"type": "Point", "coordinates": [2.2322994160386282, 48.83578551488156]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "12461d7b6b14b3f6722126dacd37b7613a4f4bce", "fields": {"departement": "92", "stop_lat": 48.82756981923219, "code_postal": "92012", "stop_lon": 2.241776713885296, "coord": [48.82756981923219, 2.241776713885296], "stop_id": 5549562, "stop_desc": "FACE 39 RUE NATIONALE - 92012", "stop_name": "PLACE JULES GUESDE"}, "geometry": {"type": "Point", "coordinates": [2.241776713885296, 48.82756981923219]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "398f5521ca42932e6d02cfc1d77708996e3fa534", "fields": {"departement": "92", "stop_lat": 48.83193142104501, "code_postal": "92012", "stop_lon": 2.234117825146668, "coord": [48.83193142104501, 2.234117825146668], "stop_id": 5549567, "stop_desc": "FACE 162 AVENUE DE SILLY - 92012", "stop_name": "LYCEE E.J. MAREY"}, "geometry": {"type": "Point", "coordinates": [2.234117825146668, 48.83193142104501]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "02adcf21726fa3de77e1051d0787f4655d04d82c", "fields": {"departement": "75", "stop_lat": 48.837201163484416, "code_postal": "75113", "stop_lon": 2.374124124182864, "coord": [48.837201163484416, 2.374124124182864], "stop_id": 5582589, "stop_desc": "FACE AU 87 QUAI DE LA GARE - 75113", "stop_name": "QUAI DE LA GARE"}, "geometry": {"type": "Point", "coordinates": [2.374124124182864, 48.837201163484416]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d21b214f2af798ce3e10a9b7bc85587dc7f369aa", "fields": {"departement": "75", "stop_lat": 48.83709339242982, "code_postal": "75113", "stop_lon": 2.373865362950128, "coord": [48.83709339242982, 2.373865362950128], "stop_id": 5582590, "stop_desc": "87 QUAI DE LA GARE - 75113", "stop_name": "QUAI DE LA GARE"}, "geometry": {"type": "Point", "coordinates": [2.373865362950128, 48.83709339242982]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "078179334ba937cb2a8ad4656db45330b6f80d00", "fields": {"departement": "92", "stop_lat": 48.820916904093785, "code_postal": "92046", "stop_lon": 2.3049700126679156, "coord": [48.820916904093785, 2.3049700126679156], "stop_id": 5604540, "stop_desc": "71 AVENUE PIERRE LAROUSSE - 92046", "stop_name": "CENTRE MEDICAL DE SANTE"}, "geometry": {"type": "Point", "coordinates": [2.3049700126679156, 48.820916904093785]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e6e3ea868795f21945e579636843f5ef1744d247", "fields": {"departement": "93", "stop_lat": 48.910544162666014, "code_postal": "93008", "stop_lon": 2.416129016905065, "coord": [48.910544162666014, 2.416129016905065], "stop_id": 5605607, "stop_desc": "RUE DE L'ILLUSTRATION - 93008", "stop_name": "CITE DU PONT DE PIERRE"}, "geometry": {"type": "Point", "coordinates": [2.416129016905065, 48.910544162666014]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b7dd669e2139b5541f4e5f59a4dbc152cf7daea2", "fields": {"departement": "93", "stop_lat": 48.914506847220245, "code_postal": "93008", "stop_lon": 2.4170213469444453, "coord": [48.914506847220245, 2.4170213469444453], "stop_id": 5605611, "stop_desc": "AVENUE DE LA CONVENTION - 93008", "stop_name": "IUT PARIS 13"}, "geometry": {"type": "Point", "coordinates": [2.4170213469444453, 48.914506847220245]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5ff92833b856b9743b7b814de2a38eacfbce334c", "fields": {"departement": "93", "stop_lat": 48.920240990902556, "code_postal": "93029", "stop_lon": 2.428907867186176, "coord": [48.920240990902556, 2.428907867186176], "stop_id": 5605621, "stop_desc": "95-97 R GUTENBERG - 93029", "stop_name": "GUTENBERG - DIDEROT"}, "geometry": {"type": "Point", "coordinates": [2.428907867186176, 48.920240990902556]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "43552b5255da0319c285adf4d19754406dad5dd6", "fields": {"departement": "93", "stop_lat": 48.92150759353533, "code_postal": "93029", "stop_lon": 2.4296328788282593, "coord": [48.92150759353533, 2.4296328788282593], "stop_id": 5605622, "stop_desc": "75 R GUTENBERG - 93029", "stop_name": "GUTENBERG - GUYNEMER"}, "geometry": {"type": "Point", "coordinates": [2.4296328788282593, 48.92150759353533]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1f5cb539b0f9f6da5f1d802b8924dc9e4db82910", "fields": {"departement": "93", "stop_lat": 48.92548845120095, "code_postal": "93029", "stop_lon": 2.441000622041601, "coord": [48.92548845120095, 2.441000622041601], "stop_id": 5605629, "stop_desc": "FACE 99 RUE SADI CARNOT - 93029", "stop_name": "JEAN-PIERRE TIMBAUD"}, "geometry": {"type": "Point", "coordinates": [2.441000622041601, 48.92548845120095]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a5aeccc46d0912ee873960268c15b8693dffd54a", "fields": {"departement": "93", "stop_lat": 48.92014120206481, "code_postal": "93029", "stop_lon": 2.450876607325212, "coord": [48.92014120206481, 2.450876607325212], "stop_id": 5605633, "stop_desc": "79 AVENUE JEAN JAURES - 93029", "stop_name": "PLACE DU 19 MARS 1962"}, "geometry": {"type": "Point", "coordinates": [2.450876607325212, 48.92014120206481]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cb14b45713792589ac7cf07a8ecc5828ca7a57f4", "fields": {"departement": "75", "stop_lat": 48.87602359181986, "code_postal": "75109", "stop_lon": 2.336505295756201, "coord": [48.87602359181986, 2.336505295756201], "stop_id": 5657271, "stop_desc": "31-33 RUE DE CHATEAUDUN - 75109", "stop_name": "SAINT-GEORGES - CHATEAUDUN"}, "geometry": {"type": "Point", "coordinates": [2.336505295756201, 48.87602359181986]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fae9fe4459f6b88113f012c7753292b249c91d5a", "fields": {"departement": "75", "stop_lat": 48.87582585780375, "code_postal": "75109", "stop_lon": 2.339203078574824, "coord": [48.87582585780375, 2.339203078574824], "stop_id": 5657273, "stop_desc": "17 RUE DE CHATEAUDUN - 75109", "stop_name": "CARREFOUR DE CHATEAUDUN"}, "geometry": {"type": "Point", "coordinates": [2.339203078574824, 48.87582585780375]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "37d0a3398962fcfa377d9421c3900c33bfc0bba1", "fields": {"departement": "75", "stop_lat": 48.876032563673256, "code_postal": "75109", "stop_lon": 2.339312087994025, "coord": [48.876032563673256, 2.339312087994025], "stop_id": 5657274, "stop_desc": "18 RUE DE CHATEAUDUN - 75109", "stop_name": "CARREFOUR DE CHATEAUDUN"}, "geometry": {"type": "Point", "coordinates": [2.339312087994025, 48.876032563673256]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "810b713228d2f2fe06e174b47ac686cc84e2b504", "fields": {"departement": "75", "stop_lat": 48.879508798192596, "code_postal": "75110", "stop_lon": 2.3583070366526497, "coord": [48.879508798192596, 2.3583070366526497], "stop_id": 5657279, "stop_desc": "FACE 171 RUE LA FAYETTE - 75110", "stop_name": "LA FAYETTE - DUNKERQUE"}, "geometry": {"type": "Point", "coordinates": [2.3583070366526497, 48.879508798192596]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5533a906e1ca31c42d51af7dd068f1ec95e52d51", "fields": {"departement": "75", "stop_lat": 48.88164607374856, "code_postal": "75110", "stop_lon": 2.3663476469834346, "coord": [48.88164607374856, 2.3663476469834346], "stop_id": 5657283, "stop_desc": "210 RUE LA FAYETTE - 75110", "stop_name": "LOUIS BLANC"}, "geometry": {"type": "Point", "coordinates": [2.3663476469834346, 48.88164607374856]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2b5ee80e89427078fe76d7f7afbe6dcd7cb7ca29", "fields": {"departement": "75", "stop_lat": 48.88152054535606, "code_postal": "75110", "stop_lon": 2.3651211781154475, "coord": [48.88152054535606, 2.3651211781154475], "stop_id": 5657284, "stop_desc": "217 RUE LA FAYETTE - 75110", "stop_name": "LOUIS BLANC"}, "geometry": {"type": "Point", "coordinates": [2.3651211781154475, 48.88152054535606]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bea1258ae2ff772741c586cffd8fa7329ec14423", "fields": {"departement": "75", "stop_lat": 48.88233740972725, "code_postal": "75110", "stop_lon": 2.3690189003299653, "coord": [48.88233740972725, 2.3690189003299653], "stop_id": 5657285, "stop_desc": "FACE 247 RUE LA FAYETTE - 75110", "stop_name": "JAURES - STALINGRAD"}, "geometry": {"type": "Point", "coordinates": [2.3690189003299653, 48.88233740972725]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bd0a4d0d5270d9cf32e397fe0ef257fa424d9f76", "fields": {"departement": "75", "stop_lat": 48.87380281264768, "code_postal": "75120", "stop_lon": 2.3858400788914653, "coord": [48.87380281264768, 2.3858400788914653], "stop_id": 5657294, "stop_desc": "399 BIS RUE DES PYRENEES - 75120", "stop_name": "PYRENEES - BELLEVILLE"}, "geometry": {"type": "Point", "coordinates": [2.3858400788914653, 48.87380281264768]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7f1bcc544e057ec08212d200cad5b0e9f5481b37", "fields": {"departement": "75", "stop_lat": 48.873657667162384, "code_postal": "75120", "stop_lon": 2.38904172020333, "coord": [48.873657667162384, 2.38904172020333], "stop_id": 5657295, "stop_desc": "379-381 RUE DES PYRENEES - 75120", "stop_name": "JOURDAIN"}, "geometry": {"type": "Point", "coordinates": [2.38904172020333, 48.873657667162384]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1137248ff16bf935b6f021d4af8d07446b651c49", "fields": {"departement": "75", "stop_lat": 48.867174303288515, "code_postal": "75120", "stop_lon": 2.396541452632025, "coord": [48.867174303288515, 2.396541452632025], "stop_id": 5657301, "stop_desc": "265 RUE DES PYRENEES - 75120", "stop_name": "VILLIERS DE L'ISLE ADAM"}, "geometry": {"type": "Point", "coordinates": [2.396541452632025, 48.867174303288515]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4f6ef15fe37452c5ac82e8677756f48cceb29300", "fields": {"departement": "75", "stop_lat": 48.86445889534913, "code_postal": "75120", "stop_lon": 2.398949471915961, "coord": [48.86445889534913, 2.398949471915961], "stop_id": 5657303, "stop_desc": "210 RUE DES PYRENEES - 75120", "stop_name": "GAMBETTA - MAIRIE DU 20E"}, "geometry": {"type": "Point", "coordinates": [2.398949471915961, 48.86445889534913]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7e9a2d8935450f4c017d63896ac91f09ffde8cb2", "fields": {"departement": "75", "stop_lat": 48.84795395647359, "code_postal": "75120", "stop_lon": 2.4062426188405976, "coord": [48.84795395647359, 2.4062426188405976], "stop_id": 5657314, "stop_desc": "1-3 RUE DES PYRENEES - 75120", "stop_name": "COURS DE VINCENNES"}, "geometry": {"type": "Point", "coordinates": [2.4062426188405976, 48.84795395647359]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d9bc75fddfd06d5a06b46eb83a8f671ff5022627", "fields": {"departement": "75", "stop_lat": 48.847917856335386, "code_postal": "75120", "stop_lon": 2.406501309527455, "coord": [48.847917856335386, 2.406501309527455], "stop_id": 5657315, "stop_desc": "2 RUE DES PYRENEES - 75120", "stop_name": "COURS DE VINCENNES"}, "geometry": {"type": "Point", "coordinates": [2.406501309527455, 48.847917856335386]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e69eac4ef0ace1c7491ebbb6e3c89d9e23fbef44", "fields": {"departement": "75", "stop_lat": 48.848245981367015, "code_postal": "75111", "stop_lon": 2.398126731810536, "coord": [48.848245981367015, 2.398126731810536], "stop_id": 5657318, "stop_desc": "3 AVENUE DU TRONE - 75111", "stop_name": "NATION - PLACE DES ANTILLES"}, "geometry": {"type": "Point", "coordinates": [2.398126731810536, 48.848245981367015]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "36e31851ee7ec39c87562d4e39bdb92c4548437b", "fields": {"departement": "75", "stop_lat": 48.88230990108933, "code_postal": "75119", "stop_lon": 2.3710084045733804, "coord": [48.88230990108933, 2.3710084045733804], "stop_id": 5657322, "stop_desc": "5 AVENUE SECRETAN - 75119", "stop_name": "JAURES - STALINGRAD"}, "geometry": {"type": "Point", "coordinates": [2.3710084045733804, 48.88230990108933]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "16627a8bc53ab24ccaa6276c81c6fab614a4f05a", "fields": {"departement": "75", "stop_lat": 48.87571760094273, "code_postal": "75109", "stop_lon": 2.3271857160925067, "coord": [48.87571760094273, 2.3271857160925067], "stop_id": 5657328, "stop_desc": "102 RUE SAINT-LAZARE - 75109", "stop_name": "GARE SAINT-LAZARE - BUDAPEST"}, "geometry": {"type": "Point", "coordinates": [2.3271857160925067, 48.87571760094273]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "532f3de301d4e54b522760e032f95741bf39a0cc", "fields": {"departement": "94", "stop_lat": 48.75419349303375, "code_postal": "94022", "stop_lon": 2.419371585721645, "coord": [48.75419349303375, 2.419371585721645], "stop_id": 5673011, "stop_desc": "10-14 RUE DES BLEUETS - 94022", "stop_name": "PRAIRIE"}, "geometry": {"type": "Point", "coordinates": [2.419371585721645, 48.75419349303375]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "09ed85841a1d5810315a42932747900d2968fcfc", "fields": {"departement": "94", "stop_lat": 48.755518005476794, "code_postal": "94022", "stop_lon": 2.414520758040493, "coord": [48.755518005476794, 2.414520758040493], "stop_id": 5673013, "stop_desc": "FACE 131 AVENUE ANATOLE FRANCE - 94022", "stop_name": "CRECHE JEAN EFFEL"}, "geometry": {"type": "Point", "coordinates": [2.414520758040493, 48.755518005476794]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f23793f9ecd4d56a0024561e5e3d727687914c4e", "fields": {"departement": "94", "stop_lat": 48.770038061199706, "code_postal": "94022", "stop_lon": 2.4076620616464175, "coord": [48.770038061199706, 2.4076620616464175], "stop_id": 5673027, "stop_desc": "FACE 10 RUE DES ANCIENNES CRISTALLERIES - 94022", "stop_name": "ANCIENNES CRISTALLERIES"}, "geometry": {"type": "Point", "coordinates": [2.4076620616464175, 48.770038061199706]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6eba8b65e2f79b181a407417dc6846190b12aa2b", "fields": {"departement": "94", "stop_lat": 48.76431294494884, "code_postal": "94022", "stop_lon": 2.421073472382117, "coord": [48.76431294494884, 2.421073472382117], "stop_id": 5673032, "stop_desc": "FACE 89 RUE MIRABEAU - 94022", "stop_name": "LYCEE MIRABEAU"}, "geometry": {"type": "Point", "coordinates": [2.421073472382117, 48.76431294494884]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "768d2b572998d0c62acb7030921e92fbecf81b2a", "fields": {"departement": "94", "stop_lat": 48.76184223475119, "code_postal": "94022", "stop_lon": 2.4196147929639293, "coord": [48.76184223475119, 2.4196147929639293], "stop_id": 5673033, "stop_desc": "88-90 AVENUE DE VILLENEUVE-SAINT-GEORGES - 94022", "stop_name": "THEOPHILE DUCLOUX"}, "geometry": {"type": "Point", "coordinates": [2.4196147929639293, 48.76184223475119]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9af6339ec9befd2c503de1a7f65f9c8b9dc9efea", "fields": {"departement": "94", "stop_lat": 48.766620635897716, "code_postal": "94022", "stop_lon": 2.4242043950845975, "coord": [48.766620635897716, 2.4242043950845975], "stop_id": 5673035, "stop_desc": "FACE 54 RUE POMPADOUR - 94022", "stop_name": "STADE JEAN BOUIN"}, "geometry": {"type": "Point", "coordinates": [2.4242043950845975, 48.766620635897716]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4c1e7f7d100b9efdc009bb5156b81ba706a53783", "fields": {"departement": "94", "stop_lat": 48.76501268795222, "code_postal": "94022", "stop_lon": 2.409395552307626, "coord": [48.76501268795222, 2.409395552307626], "stop_id": 5673039, "stop_desc": "FACE 15 AVENUE ANATOLE FRANCE - 94022", "stop_name": "CHOISY-LE-ROI RER..."}, "geometry": {"type": "Point", "coordinates": [2.409395552307626, 48.76501268795222]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "22f6227d3a5fa3b8adda46fb91677c62a8c142cf", "fields": {"departement": "94", "stop_lat": 48.77100973260041, "code_postal": "94028", "stop_lon": 2.4614149769056626, "coord": [48.77100973260041, 2.4614149769056626], "stop_id": 5675608, "stop_desc": "91-95 BOULEVARD JEAN-BAPTISTE OUDRY - 94028", "stop_name": "LA SOURCE"}, "geometry": {"type": "Point", "coordinates": [2.4614149769056626, 48.77100973260041]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3dc724f95c3c5c729b38110530f483ae3c172f15", "fields": {"departement": "94", "stop_lat": 48.77173059396369, "code_postal": "94028", "stop_lon": 2.4596625748657943, "coord": [48.77173059396369, 2.4596625748657943], "stop_id": 5675609, "stop_desc": "19 RUE FALKIRK - 94028", "stop_name": "GRIFFONS"}, "geometry": {"type": "Point", "coordinates": [2.4596625748657943, 48.77173059396369]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "85afc12227c1ecab90b8dea46327e46e8339a725", "fields": {"departement": "94", "stop_lat": 48.777712959312176, "code_postal": "94028", "stop_lon": 2.463171726467112, "coord": [48.777712959312176, 2.463171726467112], "stop_id": 5675613, "stop_desc": "RUE RENE ARCOS - 94028", "stop_name": "JOHN KENNEDY"}, "geometry": {"type": "Point", "coordinates": [2.463171726467112, 48.777712959312176]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b645ce7866677204fd675ab578b0f85515687f64", "fields": {"departement": "94", "stop_lat": 48.805470371692955, "code_postal": "94046", "stop_lon": 2.4417812792795126, "coord": [48.805470371692955, 2.4417812792795126], "stop_id": 5675625, "stop_desc": "217 AVENUE DU GENERAL LECLERC - 94046", "stop_name": "REPUBLIQUE - GENERAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.4417812792795126, 48.805470371692955]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4ba8f0db6ae7d5e515a2b2a995a8f1e30ce69422", "fields": {"departement": "94", "stop_lat": 48.82224470146372, "code_postal": "94018", "stop_lon": 2.3984773449336694, "coord": [48.82224470146372, 2.3984773449336694], "stop_id": 5675632, "stop_desc": "7 QUAI DE BERCY - 94018", "stop_name": "PORT AUX LIONS"}, "geometry": {"type": "Point", "coordinates": [2.3984773449336694, 48.82224470146372]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f957b09e59e57debde77664ef63b3b47eadaa07e", "fields": {"departement": "75", "stop_lat": 48.83592072593947, "code_postal": "75112", "stop_lon": 2.385831834104346, "coord": [48.83592072593947, 2.385831834104346], "stop_id": 5675637, "stop_desc": "2 RUE DE BERCY - 75112", "stop_name": "LACHAMBEAUDIE"}, "geometry": {"type": "Point", "coordinates": [2.385831834104346, 48.83592072593947]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a9e7ae66bbf6bcfcea39182ac4a80ef293c8fa7f", "fields": {"departement": "75", "stop_lat": 48.838348992494765, "code_postal": "75112", "stop_lon": 2.3816814376226065, "coord": [48.838348992494765, 2.3816814376226065], "stop_id": 5675638, "stop_desc": "RUE DE BERCY - 75112", "stop_name": "GARE DE BERCY - POPB"}, "geometry": {"type": "Point", "coordinates": [2.3816814376226065, 48.838348992494765]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5044f0a0c2a232048011ec5cb0c0ce5994513fca", "fields": {"departement": "75", "stop_lat": 48.84106444132994, "code_postal": "75112", "stop_lon": 2.37832060509252, "coord": [48.84106444132994, 2.37832060509252], "stop_id": 5675640, "stop_desc": "124 RUE DE BERCY - 75112", "stop_name": "MINISTERE DE L'ECONOMIE ET DES FINANCES"}, "geometry": {"type": "Point", "coordinates": [2.37832060509252, 48.84106444132994]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c862cdc90ec29b78828df594bca3c838cb79ccc7", "fields": {"departement": "75", "stop_lat": 48.845704198407574, "code_postal": "75112", "stop_lon": 2.371379485064664, "coord": [48.845704198407574, 2.371379485064664], "stop_id": 5675643, "stop_desc": "15-17 BOULEVARD DIDEROT - 75112", "stop_name": "GARE DE LYON - DIDEROT."}, "geometry": {"type": "Point", "coordinates": [2.371379485064664, 48.845704198407574]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "31099d73c58d43189226a88767d96765fc321124", "fields": {"departement": "75", "stop_lat": 48.83547131898762, "code_postal": "75112", "stop_lon": 2.3858994861277054, "coord": [48.83547131898762, 2.3858994861277054], "stop_id": 5675647, "stop_desc": "2 RUE DE DIJON - 75112", "stop_name": "DIJON - LACHAMBEAUDIE"}, "geometry": {"type": "Point", "coordinates": [2.3858994861277054, 48.83547131898762]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fddb8cf6db178ad66b84dcfce8224c1df3f1ff96", "fields": {"departement": "94", "stop_lat": 48.81894991672889, "code_postal": "94018", "stop_lon": 2.4080142264771136, "coord": [48.81894991672889, 2.4080142264771136], "stop_id": 5675652, "stop_desc": "FACE 40 QUAI DES CARRIERES - 94018", "stop_name": "LES BERGES DE CHARENTON"}, "geometry": {"type": "Point", "coordinates": [2.4080142264771136, 48.81894991672889]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1bfb9d1d2e756273cf949fc893dda485d8cf5035", "fields": {"departement": "94", "stop_lat": 48.817747748459695, "code_postal": "94018", "stop_lon": 2.418655538596147, "coord": [48.817747748459695, 2.418655538596147], "stop_id": 5675653, "stop_desc": "FACE 5 QUAI DES CARRIERES - 94018", "stop_name": "PONT DE CHARENTON"}, "geometry": {"type": "Point", "coordinates": [2.418655538596147, 48.817747748459695]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7d03ac636c5375141fa607b991a188203a03b72d", "fields": {"departement": "94", "stop_lat": 48.81496864081074, "code_postal": "94046", "stop_lon": 2.421386626368657, "coord": [48.81496864081074, 2.421386626368657], "stop_id": 5675654, "stop_desc": "AVENUE DU GENERAL LECLERC - 94046", "stop_name": "ECOLE VETERINAIRE DE MAISONS-ALFORT-METRO"}, "geometry": {"type": "Point", "coordinates": [2.421386626368657, 48.81496864081074]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "535046fe0320ef51001db5b87dacc9ae26a79e4c", "fields": {"departement": "94", "stop_lat": 48.79134120119615, "code_postal": "94028", "stop_lon": 2.4607970391449507, "coord": [48.79134120119615, 2.4607970391449507], "stop_id": 5675664, "stop_desc": "RUE D'ESTIENNE D'ORVES - 94028", "stop_name": "BRETAGNE"}, "geometry": {"type": "Point", "coordinates": [2.4607970391449507, 48.79134120119615]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dcb6c82c3e895f4888437f18a779bc97c9bf9a1e", "fields": {"departement": "94", "stop_lat": 48.77435776914354, "code_postal": "94028", "stop_lon": 2.457044244380805, "coord": [48.77435776914354, 2.457044244380805], "stop_id": 5675672, "stop_desc": "18 AVENUE DU GENERAL PIERRE BILLOTTE - 94028", "stop_name": "PORT"}, "geometry": {"type": "Point", "coordinates": [2.457044244380805, 48.77435776914354]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c08a593383bde0cda2f7f7a6cc50c3b3aac1d35c", "fields": {"departement": "94", "stop_lat": 48.76586240258943, "code_postal": "94011", "stop_lon": 2.48269453656466, "coord": [48.76586240258943, 2.48269453656466], "stop_id": 5675678, "stop_desc": "AVENUE JEAN ROSTAND - 94011", "stop_name": "STADE DE BONNEUIL"}, "geometry": {"type": "Point", "coordinates": [2.48269453656466, 48.76586240258943]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f6ece47d61d0508e1dee9cf64c0b1ccd70a294a6", "fields": {"departement": "94", "stop_lat": 48.76778059974915, "code_postal": "94011", "stop_lon": 2.486928523564849, "coord": [48.76778059974915, 2.486928523564849], "stop_id": 5675679, "stop_desc": "AVENUE JEAN ROSTAND - 94011", "stop_name": "MESSIDOR - LIBERTES"}, "geometry": {"type": "Point", "coordinates": [2.486928523564849, 48.76778059974915]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5282d3e0c9f1da513adbc5d7139acbbbd96a27ae", "fields": {"departement": "94", "stop_lat": 48.77305376447532, "code_postal": "94011", "stop_lon": 2.4960409270950934, "coord": [48.77305376447532, 2.4960409270950934], "stop_id": 5675681, "stop_desc": "AVENUE DU MARECHAL LECLERC - 94011", "stop_name": "PETITS CARREAUX"}, "geometry": {"type": "Point", "coordinates": [2.4960409270950934, 48.77305376447532]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2216235e5d813e1f7e081415e9d8a443c6334500", "fields": {"departement": "91", "stop_lat": 48.697866818081394, "code_postal": "91272", "stop_lon": 2.137038807836006, "coord": [48.697866818081394, 2.137038807836006], "stop_id": 5682038, "stop_desc": "ROUTE DE BELLEVILLE - 91272", "stop_name": "GIF-SUR-YVETTE RER"}, "geometry": {"type": "Point", "coordinates": [2.137038807836006, 48.697866818081394]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ba48507b8fd360410e9209dbc10b4fb00869e015", "fields": {"departement": "91", "stop_lat": 48.70665944861114, "code_postal": "91477", "stop_lon": 2.238440453695439, "coord": [48.70665944861114, 2.238440453695439], "stop_id": 5682049, "stop_desc": "FACE 7 AVENUE DU GENERAL LECLERC - 91477", "stop_name": "PALAISEAU-VILLEBON RER"}, "geometry": {"type": "Point", "coordinates": [2.238440453695439, 48.70665944861114]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5d4b983aa60acacebb68c82217014e36fc24b54b", "fields": {"departement": "91", "stop_lat": 48.72476050436811, "code_postal": "91377", "stop_lon": 2.2605233770372464, "coord": [48.72476050436811, 2.2605233770372464], "stop_id": 5682052, "stop_desc": "R CARNOT - 91377", "stop_name": "MASSY-PALAISEAU-RER"}, "geometry": {"type": "Point", "coordinates": [2.2605233770372464, 48.72476050436811]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5cd9fb20a37ba3fe3ea9b8edd84eee72eedef270", "fields": {"departement": "75", "stop_lat": 48.846634763899694, "code_postal": "75106", "stop_lon": 2.340250527561508, "coord": [48.846634763899694, 2.340250527561508], "stop_id": 5682062, "stop_desc": "FACE 71 BOULEVARD SAINT-MICHEL - 75106", "stop_name": "LUXEMBOURG"}, "geometry": {"type": "Point", "coordinates": [2.340250527561508, 48.846634763899694]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "17fc6263d56e3414bbc4aab145db8cc989616bfe", "fields": {"departement": "94", "stop_lat": 48.77936119499181, "code_postal": "94038", "stop_lon": 2.3286051752442676, "coord": [48.77936119499181, 2.3286051752442676], "stop_id": 5688797, "stop_desc": "46 RUE DE LA COSARDE - 94038", "stop_name": "PETIT ROBINSON"}, "geometry": {"type": "Point", "coordinates": [2.3286051752442676, 48.77936119499181]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a42267a095bcee637eeed3fcd0cbab4c69764203", "fields": {"departement": "94", "stop_lat": 48.788435514601645, "code_postal": "94076", "stop_lon": 2.367438014184474, "coord": [48.788435514601645, 2.367438014184474], "stop_id": 5688817, "stop_desc": "2-4 AVENUE LOUIS ARAGON - 94076", "stop_name": "VILLEJUIF - LOUIS ARAGON"}, "geometry": {"type": "Point", "coordinates": [2.367438014184474, 48.788435514601645]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bb8aa20b54652dc1a81fad542670a0fb44671ab0", "fields": {"departement": "94", "stop_lat": 48.78864231920959, "code_postal": "94076", "stop_lon": 2.3671116796873686, "coord": [48.78864231920959, 2.3671116796873686], "stop_id": 5688818, "stop_desc": "1-3 AVENUE LOUIS ARAGON - 94076", "stop_name": "VILLEJUIF - LOUIS ARAGON"}, "geometry": {"type": "Point", "coordinates": [2.3671116796873686, 48.78864231920959]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9e79d796755d904bb9fccfde2eeaf379d40231d8", "fields": {"departement": "94", "stop_lat": 48.79209689981996, "code_postal": "94081", "stop_lon": 2.3848250122745944, "coord": [48.79209689981996, 2.3848250122745944], "stop_id": 5688824, "stop_desc": "FACE 11-13 AVENUE DU MOULIN DE SAQUET - 94081", "stop_name": "MUSEE MAC-VAL"}, "geometry": {"type": "Point", "coordinates": [2.3848250122745944, 48.79209689981996]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "652395bc2de015f327689a2eaad53efb7eaad68e", "fields": {"departement": "94", "stop_lat": 48.792679733413074, "code_postal": "94081", "stop_lon": 2.3881583640613684, "coord": [48.792679733413074, 2.3881583640613684], "stop_id": 5688826, "stop_desc": "50 AVENUE HENRI BARBUSSE - 94081", "stop_name": "HENRI DE VILMORIN"}, "geometry": {"type": "Point", "coordinates": [2.3881583640613684, 48.792679733413074]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "005e5f75226a872c4795f47f2252194d34f4e062", "fields": {"departement": "94", "stop_lat": 48.799587212426964, "code_postal": "94002", "stop_lon": 2.4259466397667797, "coord": [48.799587212426964, 2.4259466397667797], "stop_id": 5688836, "stop_desc": "FACE 43 RUE EMILE ZOLA - 94002", "stop_name": "CAMELIAS"}, "geometry": {"type": "Point", "coordinates": [2.4259466397667797, 48.799587212426964]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f8cb388aa8343c8976d8b6aead867f82ab8e222b", "fields": {"departement": "94", "stop_lat": 48.801083415499214, "code_postal": "94046", "stop_lon": 2.4321261137661754, "coord": [48.801083415499214, 2.4321261137661754], "stop_id": 5688840, "stop_desc": "FACE 3 BIS RUE VICTOR HUGO - 94046", "stop_name": "MAIRIE DE MAISONS-ALFORT"}, "geometry": {"type": "Point", "coordinates": [2.4321261137661754, 48.801083415499214]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a0d2835a040ce19635f350d65ae38bef2eff6204", "fields": {"departement": "94", "stop_lat": 48.796782292795314, "code_postal": "94028", "stop_lon": 2.448212286596667, "coord": [48.796782292795314, 2.448212286596667], "stop_id": 5688849, "stop_desc": "96 AVENUE DU GENERAL DE GAULLE - 94028", "stop_name": "CRETEIL - L'ECHAT"}, "geometry": {"type": "Point", "coordinates": [2.448212286596667, 48.796782292795314]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "03fe6ddbd47c492866074508dd9023a865eadedb", "fields": {"departement": "94", "stop_lat": 48.798802197537015, "code_postal": "94028", "stop_lon": 2.4507199144659713, "coord": [48.798802197537015, 2.4507199144659713], "stop_id": 5688852, "stop_desc": "123 AVENUE DU GENERAL DE GAULLE - 94028", "stop_name": "HOPITAL HENRI MONDOR"}, "geometry": {"type": "Point", "coordinates": [2.4507199144659713, 48.798802197537015]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bd8b14ca445b0f88ed6f4ee0818633e494aea1ab", "fields": {"departement": "75", "stop_lat": 48.89422230110277, "code_postal": "75118", "stop_lon": 2.3472727234785546, "coord": [48.89422230110277, 2.3472727234785546], "stop_id": 5688895, "stop_desc": "29 BOULEVARD ORNANO - 75118", "stop_name": "SIMPLON"}, "geometry": {"type": "Point", "coordinates": [2.3472727234785546, 48.89422230110277]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9b15381e5bb9f7724e4baf64e65b1f9d0856157d", "fields": {"departement": "75", "stop_lat": 48.87627342878736, "code_postal": "75110", "stop_lon": 2.358019592112842, "coord": [48.87627342878736, 2.358019592112842], "stop_id": 5688908, "stop_desc": "RUE DU 8 MAI 1945 - 75110", "stop_name": "GARE DE L'EST"}, "geometry": {"type": "Point", "coordinates": [2.358019592112842, 48.87627342878736]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1df0a22da83ab28ebce48261bad20499b5f591b1", "fields": {"departement": "75", "stop_lat": 48.86870520821781, "code_postal": "75110", "stop_lon": 2.362662099843037, "coord": [48.86870520821781, 2.362662099843037], "stop_id": 5688912, "stop_desc": "1 BIS BOULEVARD DE MAGENTA - 75110", "stop_name": "REPUBLIQUE - MAGENTA"}, "geometry": {"type": "Point", "coordinates": [2.362662099843037, 48.86870520821781]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "545b76b52786cb4b1caf4ebd79001d0118f7da42", "fields": {"departement": "75", "stop_lat": 48.85791548085358, "code_postal": "75111", "stop_lon": 2.379736854618289, "coord": [48.85791548085358, 2.379736854618289], "stop_id": 5688925, "stop_desc": "5 PLACE LEON BLUM - 75111", "stop_name": "VOLTAIRE - LEON BLUM"}, "geometry": {"type": "Point", "coordinates": [2.379736854618289, 48.85791548085358]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "59c2577675dd0efb0dcc7fc1cd5be832a0ec7e0a", "fields": {"departement": "75", "stop_lat": 48.85805920167334, "code_postal": "75111", "stop_lon": 2.3799549001208082, "coord": [48.85805920167334, 2.3799549001208082], "stop_id": 5688926, "stop_desc": "FACE 5 PLACE LEON BLUM - 75111", "stop_name": "VOLTAIRE - LEON BLUM"}, "geometry": {"type": "Point", "coordinates": [2.3799549001208082, 48.85805920167334]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3016229ced9b7d86a67d801f2bb09fe5ddef4b64", "fields": {"departement": "75", "stop_lat": 48.84956011407106, "code_postal": "75111", "stop_lon": 2.3941653615279757, "coord": [48.84956011407106, 2.3941653615279757], "stop_id": 5688934, "stop_desc": "271 BOULEVARD VOLTAIRE - 75111", "stop_name": "NATION - VOLTAIRE"}, "geometry": {"type": "Point", "coordinates": [2.3941653615279757, 48.84956011407106]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c8d265935f2c15378bb6078fe119f079562c6d3e", "fields": {"departement": "75", "stop_lat": 48.84565567464678, "code_postal": "75112", "stop_lon": 2.4017458757700765, "coord": [48.84565567464678, 2.4017458757700765], "stop_id": 5688938, "stop_desc": "72 BOULEVARD DE PICPUS - 75112", "stop_name": "PICPUS"}, "geometry": {"type": "Point", "coordinates": [2.4017458757700765, 48.84565567464678]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "11eb75250b4a846fcd2adfb34e5569dc03e100e9", "fields": {"departement": "94", "stop_lat": 48.84617115064548, "code_postal": "94080", "stop_lon": 2.4248960437365876, "coord": [48.84617115064548, 2.4248960437365876], "stop_id": 5688945, "stop_desc": "20 AVENUE ANTOINE QUINSON - 94080", "stop_name": "AUBERT QUINSON"}, "geometry": {"type": "Point", "coordinates": [2.4248960437365876, 48.84617115064548]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9fb5005bf534e745139722907e55ca9ee9ce74bb", "fields": {"departement": "94", "stop_lat": 48.847156087985, "code_postal": "94080", "stop_lon": 2.4297728193534036, "coord": [48.847156087985, 2.4297728193534036], "stop_id": 5688948, "stop_desc": "2 AVENUE ANTOINE QUINSON - 94080", "stop_name": "VINCENNES RER - REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.4297728193534036, 48.847156087985]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a6de4e0f425af981d4d41645a447104a52749e84", "fields": {"departement": "94", "stop_lat": 48.8446246823592, "code_postal": "94080", "stop_lon": 2.437094232812113, "coord": [48.8446246823592, 2.437094232812113], "stop_id": 5688953, "stop_desc": "FACE 10 AVENUE DE PARIS - 94080", "stop_name": "AVENUE DU CHATEAU"}, "geometry": {"type": "Point", "coordinates": [2.437094232812113, 48.8446246823592]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ca43e1cd4590d12966eb73f92e3c2fedc8079600", "fields": {"departement": "75", "stop_lat": 48.830180997514994, "code_postal": "75113", "stop_lon": 2.3767737037854664, "coord": [48.830180997514994, 2.3767737037854664], "stop_id": 5709848, "stop_desc": "109-111 AVENUE DE FRANCE - 75113", "stop_name": "BIBLIOTHEQUE FRANCOIS MITTERRAND"}, "geometry": {"type": "Point", "coordinates": [2.3767737037854664, 48.830180997514994]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eac2b01081224ef56b88ff58c5aaabae5c6aea7d", "fields": {"departement": "75", "stop_lat": 48.83040388393591, "code_postal": "75113", "stop_lon": 2.38187883355155, "coord": [48.83040388393591, 2.38187883355155], "stop_id": 5709851, "stop_desc": "QUAI PANHARD ET LEVASSOR - 75113", "stop_name": "THOMAS MANN"}, "geometry": {"type": "Point", "coordinates": [2.38187883355155, 48.83040388393591]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "92b57378d76dacb17a3dc7fb6815b654b8897b29", "fields": {"departement": "75", "stop_lat": 48.82869540362841, "code_postal": "75113", "stop_lon": 2.3840417961718314, "coord": [48.82869540362841, 2.3840417961718314], "stop_id": 5709853, "stop_desc": "QUAI PANHARD ET LEVASSOR - 75113", "stop_name": "WATT"}, "geometry": {"type": "Point", "coordinates": [2.3840417961718314, 48.82869540362841]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b8ab4db54fa9cbba03f6a8c8d1d9d7542c443012", "fields": {"departement": "94", "stop_lat": 48.82357076682193, "code_postal": "94041", "stop_lon": 2.388120606577062, "coord": [48.82357076682193, 2.388120606577062], "stop_id": 5709856, "stop_desc": "RUE FRANCOIS MITTERRAND - 94041", "stop_name": "BRUNESEAU"}, "geometry": {"type": "Point", "coordinates": [2.388120606577062, 48.82357076682193]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4b115cb2afa8e67e3d5fb10d50e06146a75f4cc9", "fields": {"departement": "94", "stop_lat": 48.820170141400126, "code_postal": "94041", "stop_lon": 2.3952900303320455, "coord": [48.820170141400126, 2.3952900303320455], "stop_id": 5709859, "stop_desc": "QUAI MARCEL BOYER - 94041", "stop_name": "JULES VANZUPPE"}, "geometry": {"type": "Point", "coordinates": [2.3952900303320455, 48.820170141400126]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d3c71354cf617c40ecd5a30e394e33a4e02a775b", "fields": {"departement": "94", "stop_lat": 48.816429008859835, "code_postal": "94041", "stop_lon": 2.3997225650243545, "coord": [48.816429008859835, 2.3997225650243545], "stop_id": 5709862, "stop_desc": "94 BOULEVARD PAUL VAILLANT-COUTURIER - 94041", "stop_name": "MOISE - PIERRE GALAIS"}, "geometry": {"type": "Point", "coordinates": [2.3997225650243545, 48.816429008859835]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b36c497bba4b5bc7a5b2984742e16380c715291e", "fields": {"departement": "94", "stop_lat": 48.81487294715123, "code_postal": "94041", "stop_lon": 2.4019389847779085, "coord": [48.81487294715123, 2.4019389847779085], "stop_id": 5709865, "stop_desc": "121 BOULEVARD PAUL VAILLANT-COUTURIER - 94041", "stop_name": "GAMBETTA"}, "geometry": {"type": "Point", "coordinates": [2.4019389847779085, 48.81487294715123]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e75cbce55f561e9f90972312222896014215e8e2", "fields": {"departement": "94", "stop_lat": 48.823669648914155, "code_postal": "94069", "stop_lon": 2.4200940309772974, "coord": [48.823669648914155, 2.4200940309772974], "stop_id": 5709874, "stop_desc": "68 AVENUE DU MARECHAL DE LATTRE DE TASSIGNY - 94069", "stop_name": "AVENUE DE GRAVELLE"}, "geometry": {"type": "Point", "coordinates": [2.4200940309772974, 48.823669648914155]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4337b13acb9d1fed7d119af9f4a3c7b25a39be16", "fields": {"departement": "75", "stop_lat": 48.82775041121972, "code_postal": "75112", "stop_lon": 2.419569656360002, "coord": [48.82775041121972, 2.419569656360002], "stop_id": 5709875, "stop_desc": "AVENUE DE SAINT-MAURICE - 75112", "stop_name": "CASERNE DES GARDES"}, "geometry": {"type": "Point", "coordinates": [2.419569656360002, 48.82775041121972]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5dcd67710e06132c9d84fa815d24be6ef39b46ef", "fields": {"departement": "94", "stop_lat": 48.84336303178212, "code_postal": "94067", "stop_lon": 2.417851500327602, "coord": [48.84336303178212, 2.417851500327602], "stop_id": 5709882, "stop_desc": "FACE 38 AVENUE DU GENERAL DE GAULLE - 94067", "stop_name": "MAIRIE DE SAINT-MANDE"}, "geometry": {"type": "Point", "coordinates": [2.417851500327602, 48.84336303178212]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7e95740666eec0bec16c4549eef596fbdaf145d8", "fields": {"departement": "94", "stop_lat": 48.845692921910626, "code_postal": "94067", "stop_lon": 2.42742804346871, "coord": [48.845692921910626, 2.42742804346871], "stop_id": 5709888, "stop_desc": "98 AVENUE DE PARIS - 94067", "stop_name": "BERAULT-METRO"}, "geometry": {"type": "Point", "coordinates": [2.42742804346871, 48.845692921910626]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b8a74f15c5d57f258849b1f03bcf1eb075132d8c", "fields": {"departement": "94", "stop_lat": 48.82167819119796, "code_postal": "94018", "stop_lon": 2.4144286999531315, "coord": [48.82167819119796, 2.4144286999531315], "stop_id": 5709898, "stop_desc": "1 RUE DE LA REPUBLIQUE - 94018", "stop_name": "CHARENTON - ECOLES"}, "geometry": {"type": "Point", "coordinates": [2.4144286999531315, 48.82167819119796]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8aacfd96aa017ebdb9963f0a060906ef32351c32", "fields": {"departement": "94", "stop_lat": 48.81899305429177, "code_postal": "94018", "stop_lon": 2.4109813171069656, "coord": [48.81899305429177, 2.4109813171069656], "stop_id": 5709899, "stop_desc": "7 RUE VICTOR HUGO - 94018", "stop_name": "VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.4109813171069656, 48.81899305429177]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8a69a9a28df56577470a6e83b5748827c5f2bf4a", "fields": {"departement": "94", "stop_lat": 48.81462482947732, "code_postal": "94002", "stop_lon": 2.4112881217219546, "coord": [48.81462482947732, 2.4112881217219546], "stop_id": 5709901, "stop_desc": "PONT D'IVRY - 94002", "stop_name": "CHINAGORA"}, "geometry": {"type": "Point", "coordinates": [2.4112881217219546, 48.81462482947732]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3bd75b271a269858079fff40be235944207cd8af", "fields": {"departement": "75", "stop_lat": 48.84611347903207, "code_postal": "75105", "stop_lon": 2.3406045484676747, "coord": [48.84611347903207, 2.3406045484676747], "stop_id": 5709971, "stop_desc": "20 RUE ROYER COLLARD - 75105", "stop_name": "LUXEMBOURG"}, "geometry": {"type": "Point", "coordinates": [2.3406045484676747, 48.84611347903207]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b6a9b615d759d504561c677bde207f000d71bb5a", "fields": {"departement": "75", "stop_lat": 48.84611347903207, "code_postal": "75105", "stop_lon": 2.3406045484676747, "coord": [48.84611347903207, 2.3406045484676747], "stop_id": 5709972, "stop_desc": "20 RUE ROYER COLLARD - 75105", "stop_name": "LUXEMBOURG"}, "geometry": {"type": "Point", "coordinates": [2.3406045484676747, 48.84611347903207]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3422709a6dea8ba446477ceb67a3e7a5724c3345", "fields": {"departement": "75", "stop_lat": 48.85234167570838, "code_postal": "75105", "stop_lon": 2.343778173799205, "coord": [48.85234167570838, 2.343778173799205], "stop_id": 5709974, "stop_desc": "7 BOULEVARD SAINT-MICHEL - 75105", "stop_name": "SAINT-MICHEL - SAINT-GERMAIN"}, "geometry": {"type": "Point", "coordinates": [2.343778173799205, 48.85234167570838]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aecbc4fbd31e70ddf8f6242f1ca1960dd7ccf654", "fields": {"departement": "93", "stop_lat": 48.89394469691144, "code_postal": "93055", "stop_lon": 2.401656037394683, "coord": [48.89394469691144, 2.401656037394683], "stop_id": 4036962, "stop_desc": "FACE 34 RUE HOCHE - 93055", "stop_name": "MONTGOLFIER"}, "geometry": {"type": "Point", "coordinates": [2.401656037394683, 48.89394469691144]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c025e43860e86edfc2378d56c7e7ad767b5229ff", "fields": {"departement": "93", "stop_lat": 48.89388169834081, "code_postal": "93055", "stop_lon": 2.4018195179428488, "coord": [48.89388169834081, 2.4018195179428488], "stop_id": 4036963, "stop_desc": "34-36 RUE HOCHE - 93055", "stop_name": "MONTGOLFIER"}, "geometry": {"type": "Point", "coordinates": [2.4018195179428488, 48.89388169834081]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8395a522d40f2eb52a6cca993bed44bfd0d2ee18", "fields": {"departement": "75", "stop_lat": 48.88695086167976, "code_postal": "75119", "stop_lon": 2.386601947808809, "coord": [48.88695086167976, 2.386601947808809], "stop_id": 4036969, "stop_desc": "146 AVENUE JEAN JAURES - 75119", "stop_name": "OURCQ"}, "geometry": {"type": "Point", "coordinates": [2.386601947808809, 48.88695086167976]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6f7c26cef8d0d5476cdb718285c8cdaf6059d590", "fields": {"departement": "75", "stop_lat": 48.88340600662427, "code_postal": "75119", "stop_lon": 2.372181052819465, "coord": [48.88340600662427, 2.372181052819465], "stop_id": 4036972, "stop_desc": "13 AVENUE JEAN JAURES - 75119", "stop_name": "JAURES"}, "geometry": {"type": "Point", "coordinates": [2.372181052819465, 48.88340600662427]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0c203b5d5977a4129ad21376d80e76899c6aabe0", "fields": {"departement": "75", "stop_lat": 48.88164607374856, "code_postal": "75110", "stop_lon": 2.3663476469834346, "coord": [48.88164607374856, 2.3663476469834346], "stop_id": 4036975, "stop_desc": "210 RUE LA FAYETTE - 75110", "stop_name": "LOUIS BLANC"}, "geometry": {"type": "Point", "coordinates": [2.3663476469834346, 48.88164607374856]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e49f58b7243c6db1e805f27e69a296e0f7c2974c", "fields": {"departement": "75", "stop_lat": 48.87619243475698, "code_postal": "75110", "stop_lon": 2.3586326958393027, "coord": [48.87619243475698, 2.3586326958393027], "stop_id": 4036978, "stop_desc": "FACE 7 RUE DU 8 MAI 1945 - 75110", "stop_name": "GARE DE L'EST"}, "geometry": {"type": "Point", "coordinates": [2.3586326958393027, 48.87619243475698]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "62d840d259e58c40e319b1332921ebfd252ade0d", "fields": {"departement": "75", "stop_lat": 48.875141086436834, "code_postal": "75110", "stop_lon": 2.3576921392329484, "coord": [48.875141086436834, 2.3576921392329484], "stop_id": 4036979, "stop_desc": "74 BOULEVARD DE STRASBOURG - 75110", "stop_name": "GARE DE L'EST"}, "geometry": {"type": "Point", "coordinates": [2.3576921392329484, 48.875141086436834]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "507dfe1c99718f124d43bea7a3339f66efa1a372", "fields": {"departement": "75", "stop_lat": 48.865821809644764, "code_postal": "75103", "stop_lon": 2.353928649583883, "coord": [48.865821809644764, 2.353928649583883], "stop_id": 4036982, "stop_desc": "37-39 RUE REAUMUR - 75103", "stop_name": "REAUMUR - ARTS ET METIERS"}, "geometry": {"type": "Point", "coordinates": [2.353928649583883, 48.865821809644764]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6e5f0e6ef52f901caa9a631e38560721cb6af93e", "fields": {"departement": "75", "stop_lat": 48.84638266447135, "code_postal": "75106", "stop_lon": 2.3264833034864068, "coord": [48.84638266447135, 2.3264833034864068], "stop_id": 4036999, "stop_desc": "129 RUE DE RENNES - 75106", "stop_name": "RENNES - SAINT-PLACIDE"}, "geometry": {"type": "Point", "coordinates": [2.3264833034864068, 48.84638266447135]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ded3dcc4dcba2b5d9b5480acbab7528459418d79", "fields": {"departement": "75", "stop_lat": 48.84473518742932, "code_postal": "75115", "stop_lon": 2.3094351792376666, "coord": [48.84473518742932, 2.3094351792376666], "stop_id": 4037008, "stop_desc": "20 RUE LECOURBE - 75115", "stop_name": "SEVRES - LECOURBE"}, "geometry": {"type": "Point", "coordinates": [2.3094351792376666, 48.84473518742932]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "febc44f71ddc0019a12b105745ff7f519fba1a8a", "fields": {"departement": "75", "stop_lat": 48.84396164200655, "code_postal": "75115", "stop_lon": 2.3069028723393976, "coord": [48.84396164200655, 2.3069028723393976], "stop_id": 4037009, "stop_desc": "54 RUE LECOURBE - 75115", "stop_name": "VOLONTAIRES - LECOURBE"}, "geometry": {"type": "Point", "coordinates": [2.3069028723393976, 48.84396164200655]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2dba548904b45e475eaafc12eb5c9a103d43686f", "fields": {"departement": "75", "stop_lat": 48.82981201095135, "code_postal": "75115", "stop_lon": 2.2754513391086495, "coord": [48.82981201095135, 2.2754513391086495], "stop_id": 4037020, "stop_desc": "FACE 29 RUE DU COLONEL PIERRE AVIA - 75115", "stop_name": "COLONEL PIERRE AVIA"}, "geometry": {"type": "Point", "coordinates": [2.2754513391086495, 48.82981201095135]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d548e2c70b20eddae1fac6263436300e2d7c2e68", "fields": {"departement": "92", "stop_lat": 48.82738441088452, "code_postal": "92040", "stop_lon": 2.273671000910632, "coord": [48.82738441088452, 2.273671000910632], "stop_id": 4037022, "stop_desc": "4 AVENUE DE LA REPUBLIQUE - 92040", "stop_name": "VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.273671000910632, 48.82738441088452]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6ef64ba64dc959bfcc5d0eea23563c95bd9aa594", "fields": {"departement": "92", "stop_lat": 48.824921780034416, "code_postal": "92040", "stop_lon": 2.2736467944118726, "coord": [48.824921780034416, 2.2736467944118726], "stop_id": 4037025, "stop_desc": "FACE 29BIS RUE KLEBER - 92040", "stop_name": "MAIRIE D'ISSY-METRO"}, "geometry": {"type": "Point", "coordinates": [2.2736467944118726, 48.824921780034416]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6ce9b8ad40cd8e5fb57b9711e806979974685e27", "fields": {"departement": "75", "stop_lat": 48.83433085153598, "code_postal": "75115", "stop_lon": 2.2910070539330327, "coord": [48.83433085153598, 2.2910070539330327], "stop_id": 4037030, "stop_desc": "FACE 366 TER R DE VAUGIRARD - 75115", "stop_name": "VAUGIRARD - CROIX-NIVERT"}, "geometry": {"type": "Point", "coordinates": [2.2910070539330327, 48.83433085153598]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c4d11a0be3f5707b3e7cee3ab7d4b15388a7c63d", "fields": {"departement": "75", "stop_lat": 48.85534333466014, "code_postal": "75104", "stop_lon": 2.346107532202977, "coord": [48.85534333466014, 2.346107532202977], "stop_id": 4037042, "stop_desc": "1 BOULEVARD DU PALAIS - 75104", "stop_name": "CITE - PALAIS DE JUSTICE"}, "geometry": {"type": "Point", "coordinates": [2.346107532202977, 48.85534333466014]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6adaacdb88b3b9c8fb230168e96cc0c87893c895", "fields": {"departement": "75", "stop_lat": 48.872337311493894, "code_postal": "75110", "stop_lon": 2.3560833742278997, "coord": [48.872337311493894, 2.3560833742278997], "stop_id": 4037047, "stop_desc": "32 BOULEVARD DE STRASBOURG - 75110", "stop_name": "CHATEAU D'EAU"}, "geometry": {"type": "Point", "coordinates": [2.3560833742278997, 48.872337311493894]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f5a53f71efed0ea500b7a4d5e0b983405eeaf299", "fields": {"departement": "94", "stop_lat": 48.84523046287141, "code_postal": "94080", "stop_lon": 2.432683449855939, "coord": [48.84523046287141, 2.432683449855939], "stop_id": 4037164, "stop_desc": "48-50 AVENUE DE PARIS - 94080", "stop_name": "VIGNERONS"}, "geometry": {"type": "Point", "coordinates": [2.432683449855939, 48.84523046287141]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "490faf4771089bc1b55c3c15e036b0bea47f6bac", "fields": {"departement": "94", "stop_lat": 48.84508719554478, "code_postal": "94080", "stop_lon": 2.4320159489963507, "coord": [48.84508719554478, 2.4320159489963507], "stop_id": 4037165, "stop_desc": "21 AVENUE DE PARIS - 94080", "stop_name": "VIGNERONS"}, "geometry": {"type": "Point", "coordinates": [2.4320159489963507, 48.84508719554478]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "54b3b7a385386aaec08e4a1ea0e7b0a3c248eecd", "fields": {"departement": "75", "stop_lat": 48.848245981367015, "code_postal": "75111", "stop_lon": 2.398126731810536, "coord": [48.848245981367015, 2.398126731810536], "stop_id": 4037171, "stop_desc": "3 AVENUE DU TRONE - 75111", "stop_name": "NATION - PLACE DES ANTILLES"}, "geometry": {"type": "Point", "coordinates": [2.398126731810536, 48.848245981367015]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3ad5e6fb508ad56f7142b1256d70a2a6a59282aa", "fields": {"departement": "75", "stop_lat": 48.848929915496655, "code_postal": "75111", "stop_lon": 2.3963708007370164, "coord": [48.848929915496655, 2.3963708007370164], "stop_id": 4037172, "stop_desc": "13 PLACE DE LA NATION - 75111", "stop_name": "NATION"}, "geometry": {"type": "Point", "coordinates": [2.3963708007370164, 48.848929915496655]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "47beb61d68a03308efef5d7f30cf50b29d708af3", "fields": {"departement": "75", "stop_lat": 48.847816009124294, "code_postal": "75112", "stop_lon": 2.395266489629075, "coord": [48.847816009124294, 2.395266489629075], "stop_id": 4037174, "stop_desc": "FACE 4 PLACE DE LA NATION - 75112", "stop_name": "DIDEROT - NATION"}, "geometry": {"type": "Point", "coordinates": [2.395266489629075, 48.847816009124294]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6b16c57898f7c5030def7999094e44c7494f99b2", "fields": {"departement": "75", "stop_lat": 48.84783650700258, "code_postal": "75112", "stop_lon": 2.389833009163833, "coord": [48.84783650700258, 2.389833009163833], "stop_id": 4037175, "stop_desc": "107 BOULEVARD DIDEROT - 75112", "stop_name": "PIERRE BOURDAN"}, "geometry": {"type": "Point", "coordinates": [2.389833009163833, 48.84783650700258]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a64cfab57a2935287d1c0fec8fe508a28dc2d3a3", "fields": {"departement": "75", "stop_lat": 48.847656209674426, "code_postal": "75112", "stop_lon": 2.3910584243965474, "coord": [48.847656209674426, 2.3910584243965474], "stop_id": 4037176, "stop_desc": "156 BOULEVARD DIDEROT - 75112", "stop_name": "PIERRE BOURDAN"}, "geometry": {"type": "Point", "coordinates": [2.3910584243965474, 48.847656209674426]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5232901fee130bc8212bd1ef66f6d600ee7ad513", "fields": {"departement": "75", "stop_lat": 48.84671618720462, "code_postal": "75112", "stop_lon": 2.3822196865655947, "coord": [48.84671618720462, 2.3822196865655947], "stop_id": 4037180, "stop_desc": "74 BOULEVARD DIDEROT - 75112", "stop_name": "HOPITAL SAINT-ANTOINE"}, "geometry": {"type": "Point", "coordinates": [2.3822196865655947, 48.84671618720462]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2789e42f9e85f50170219b0c46c58eb7cfd2efe6", "fields": {"departement": "75", "stop_lat": 48.85496370976521, "code_postal": "75104", "stop_lon": 2.361565794177265, "coord": [48.85496370976521, 2.361565794177265], "stop_id": 4037193, "stop_desc": "92 RUE SAINT-ANTOINE - 75104", "stop_name": "SAINT-PAUL"}, "geometry": {"type": "Point", "coordinates": [2.361565794177265, 48.85496370976521]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "519a4af650127189485a23adedf801bb08f85e7e", "fields": {"departement": "75", "stop_lat": 48.861131521308295, "code_postal": "75101", "stop_lon": 2.3404011996628897, "coord": [48.861131521308295, 2.3404011996628897], "stop_id": 4037200, "stop_desc": "156 RUE DE RIVOLI - 75101", "stop_name": "LOUVRE - RIVOLI"}, "geometry": {"type": "Point", "coordinates": [2.3404011996628897, 48.861131521308295]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "46c6cdbf8847ec325d49d1cfd9495917dbc5fbde", "fields": {"departement": "75", "stop_lat": 48.8704742492725, "code_postal": "75108", "stop_lon": 2.3057157112334865, "coord": [48.8704742492725, 2.3057157112334865], "stop_id": 4037211, "stop_desc": "58-60 AVENUE DES CHAMPS ELYSEES - 75108", "stop_name": "LA BOETIE - CHAMPS-ELYSEES"}, "geometry": {"type": "Point", "coordinates": [2.3057157112334865, 48.8704742492725]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2a8342621feec206c0430a614428623b7a59e0fa", "fields": {"departement": "75", "stop_lat": 48.87218927378012, "code_postal": "75108", "stop_lon": 2.3003058618572507, "coord": [48.87218927378012, 2.3003058618572507], "stop_id": 4037213, "stop_desc": "116-116BIS AVENUE DES CHAMPS ELYSEES - 75108", "stop_name": "GEORGE V"}, "geometry": {"type": "Point", "coordinates": [2.3003058618572507, 48.87218927378012]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d80f57b4b1ce02f4b99ab01d5fdcfa7f83fd0c2c", "fields": {"departement": "75", "stop_lat": 48.871587468618785, "code_postal": "75108", "stop_lon": 2.3014370859374598, "coord": [48.871587468618785, 2.3014370859374598], "stop_id": 4037214, "stop_desc": "95 AVENUE DES CHAMPS ELYSEES - 75108", "stop_name": "GEORGE V"}, "geometry": {"type": "Point", "coordinates": [2.3014370859374598, 48.871587468618785]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2215496f74f2758b86489dc54759785204fda2e8", "fields": {"departement": "75", "stop_lat": 48.87329337582345, "code_postal": "75108", "stop_lon": 2.296217728814878, "coord": [48.87329337582345, 2.296217728814878], "stop_id": 4037216, "stop_desc": "135 AVENUE DES CHAMPS ELYSEES - 75108", "stop_name": "CHARLES DE GAULLE - ETOILE - CHAMPS-ELYSEES"}, "geometry": {"type": "Point", "coordinates": [2.296217728814878, 48.87329337582345]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "83b060a3366a59e9d4aeb199f07821088c990513", "fields": {"departement": "75", "stop_lat": 48.874308041663966, "code_postal": "75117", "stop_lon": 2.293682721402183, "coord": [48.874308041663966, 2.293682721402183], "stop_id": 4037217, "stop_desc": "2 AVENUE DE LA GRANDE ARMEE - 75117", "stop_name": "CHARLES DE GAULLE - ETOILE - GRANDE ARMEE"}, "geometry": {"type": "Point", "coordinates": [2.293682721402183, 48.874308041663966]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e1f4c7380ab261835a5d69ebbc14318573dd32fb", "fields": {"departement": "75", "stop_lat": 48.87819549713169, "code_postal": "75117", "stop_lon": 2.2837598887649864, "coord": [48.87819549713169, 2.2837598887649864], "stop_id": 4037219, "stop_desc": "PLACE DE LA PORTE MAILLOT - 75117", "stop_name": "PORTE MAILLOT - PALAIS DES CONGRES"}, "geometry": {"type": "Point", "coordinates": [2.2837598887649864, 48.87819549713169]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "908a06ce621e34c4e9207d618884ac4378785793", "fields": {"departement": "92", "stop_lat": 48.88056374397198, "code_postal": "92051", "stop_lon": 2.2747367679822643, "coord": [48.88056374397198, 2.2747367679822643], "stop_id": 4037221, "stop_desc": "44 AVENUE CHARLES DE GAULLE - 92051", "stop_name": "MARCHE DE NEUILLY-SUR-SEINE"}, "geometry": {"type": "Point", "coordinates": [2.2747367679822643, 48.88056374397198]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b12c81d8c2f73f2d51153d7a17d06237ceea0220", "fields": {"departement": "92", "stop_lat": 48.8829142749037, "code_postal": "92051", "stop_lon": 2.2673072076891807, "coord": [48.8829142749037, 2.2673072076891807], "stop_id": 4037225, "stop_desc": "110-112 AVENUE CHARLES DE GAULLE - 92051", "stop_name": "RUE DE L'HOTEL DE VILLE"}, "geometry": {"type": "Point", "coordinates": [2.2673072076891807, 48.8829142749037]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d1dd73b0a7e630b8eec790fdfb72b1a90ac85db9", "fields": {"departement": "75", "stop_lat": 48.874146200317256, "code_postal": "75116", "stop_lon": 2.293492111443569, "coord": [48.874146200317256, 2.293492111443569], "stop_id": 4037235, "stop_desc": "1 AVENUE DE LA GRANDE ARMEE - 75116", "stop_name": "CHARLES DE GAULLE - ETOILE - GRANDE ARMEE"}, "geometry": {"type": "Point", "coordinates": [2.293492111443569, 48.874146200317256]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c56c4bc1fe760ada64c186499da67672f541b807", "fields": {"departement": "75", "stop_lat": 48.862110639738226, "code_postal": "75101", "stop_lon": 2.3258125813412875, "coord": [48.862110639738226, 2.3258125813412875], "stop_id": 4037237, "stop_desc": "QUAI DES TUILERIES - 75101", "stop_name": "PONT DE SOLFERINO - QUAI DES TUILERIES"}, "geometry": {"type": "Point", "coordinates": [2.3258125813412875, 48.862110639738226]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c9da0b600a1140bc3e16b09609e4badfde8024ae", "fields": {"departement": "75", "stop_lat": 48.85547674635916, "code_postal": "75104", "stop_lon": 2.3575481918629646, "coord": [48.85547674635916, 2.3575481918629646], "stop_id": 4037242, "stop_desc": "64 RUE FRANCOIS MIRON - 75104", "stop_name": "RUE DE JOUY"}, "geometry": {"type": "Point", "coordinates": [2.3575481918629646, 48.85547674635916]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ea814fead4b411bf69ef7a0664f443f84da4f458", "fields": {"departement": "75", "stop_lat": 48.84804889034139, "code_postal": "75112", "stop_lon": 2.396873657460073, "coord": [48.84804889034139, 2.396873657460073], "stop_id": 4037244, "stop_desc": "30 PLACE DE LA NATION - 75112", "stop_name": "NATION - PLACE DES ANTILLES"}, "geometry": {"type": "Point", "coordinates": [2.396873657460073, 48.84804889034139]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "43f239b1b3fde77edc011e188887358140d791a6", "fields": {"departement": "75", "stop_lat": 48.84765930770116, "code_postal": "75112", "stop_lon": 2.4028105519305467, "coord": [48.84765930770116, 2.4028105519305467], "stop_id": 4037245, "stop_desc": "44 COURS DE VINCENNES - 75112", "stop_name": "MARSOULAN"}, "geometry": {"type": "Point", "coordinates": [2.4028105519305467, 48.84765930770116]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b6b6ad89a579a0347b4e1bcbaa8ff13724e09f8a", "fields": {"departement": "75", "stop_lat": 48.84195202597997, "code_postal": "75114", "stop_lon": 2.3291393929668964, "coord": [48.84195202597997, 2.3291393929668964], "stop_id": 4037253, "stop_desc": "106 BOULEVARD DU MONTPARNASSE - 75114", "stop_name": "VAVIN"}, "geometry": {"type": "Point", "coordinates": [2.3291393929668964, 48.84195202597997]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f5f0961ee2273beeaf86fd77bed78f5a8426a1a2", "fields": {"departement": "75", "stop_lat": 48.8394357886837, "code_postal": "75114", "stop_lon": 2.3371049092839686, "coord": [48.8394357886837, 2.3371049092839686], "stop_id": 4037255, "stop_desc": "127 BOULEVARD DE PORT ROYAL - 75114", "stop_name": "OBSERVATOIRE - PORT ROYAL"}, "geometry": {"type": "Point", "coordinates": [2.3371049092839686, 48.8394357886837]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a48204bc82bfc272fecd781e171a737072b8df2c", "fields": {"departement": "75", "stop_lat": 48.84598203749001, "code_postal": "75112", "stop_lon": 2.3739805748450498, "coord": [48.84598203749001, 2.3739805748450498], "stop_id": 4037262, "stop_desc": "FACE 23BIS BOULEVARD DIDEROT - 75112", "stop_name": "GARE DE LYON - DIDEROT"}, "geometry": {"type": "Point", "coordinates": [2.3739805748450498, 48.84598203749001]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "375de3c8d362f7bab1064b64175228badfc4d096", "fields": {"departement": "75", "stop_lat": 48.878107383214136, "code_postal": "75110", "stop_lon": 2.354586637385039, "coord": [48.878107383214136, 2.354586637385039], "stop_id": 4037271, "stop_desc": "110 BOULEVARD DE MAGENTA - 75110", "stop_name": "LA FAYETTE - MAGENTA - GARE DU NORD"}, "geometry": {"type": "Point", "coordinates": [2.354586637385039, 48.878107383214136]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7b69aad360db9c343695e6997de993a3a91f9c18", "fields": {"departement": "75", "stop_lat": 48.87849422642491, "code_postal": "75108", "stop_lon": 2.32285215568243, "coord": [48.87849422642491, 2.32285215568243], "stop_id": 4037282, "stop_desc": "27 RUE DE VIENNE - 75108", "stop_name": "EUROPE"}, "geometry": {"type": "Point", "coordinates": [2.32285215568243, 48.87849422642491]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "81565f86e4878d43ee553d410f1a8fa88478c488", "fields": {"departement": "75", "stop_lat": 48.85462441442023, "code_postal": "75107", "stop_lon": 2.3294779001454495, "coord": [48.85462441442023, 2.3294779001454495], "stop_id": 4037291, "stop_desc": "183-185 BOULEVARD SAINT GERMAIN - 75107", "stop_name": "SAINT-GUILLAUME"}, "geometry": {"type": "Point", "coordinates": [2.3294779001454495, 48.85462441442023]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b1049f1f41c96a476ae065b7fbf008cd09c6821c", "fields": {"departement": "95", "stop_lat": 48.92333364375808, "code_postal": "95063", "stop_lon": 2.20801063048684, "coord": [48.92333364375808, 2.20801063048684], "stop_id": 4037718, "stop_desc": "PLACE DU GRAND CERF - 95063", "stop_name": "GRAND CERF"}, "geometry": {"type": "Point", "coordinates": [2.20801063048684, 48.92333364375808]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "181e6d6fec6c50906008ad0a179e8d7fa7b4b7df", "fields": {"departement": "92", "stop_lat": 48.90879380347171, "code_postal": "92025", "stop_lon": 2.23723694348742, "coord": [48.90879380347171, 2.23723694348742], "stop_id": 4037733, "stop_desc": "18-20 BOULEVARD CHARLES DE GAULLE - 92025", "stop_name": "GARE DE LA GARENNE-COLOMBES"}, "geometry": {"type": "Point", "coordinates": [2.23723694348742, 48.90879380347171]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "12eec96c2dbc210c65e256b0f6f505116edd81e9", "fields": {"departement": "92", "stop_lat": 48.90024931956762, "code_postal": "92026", "stop_lon": 2.239938857466106, "coord": [48.90024931956762, 2.239938857466106], "stop_id": 4037741, "stop_desc": "FACE 99 BD DE LA MISSION MARCHAND - 92026", "stop_name": "DIEPPE"}, "geometry": {"type": "Point", "coordinates": [2.239938857466106, 48.90024931956762]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "37bc434a871982fd490a2ecc6a8980061dd21cea", "fields": {"departement": "92", "stop_lat": 48.891361317918545, "code_postal": "92062", "stop_lon": 2.240296277187438, "coord": [48.891361317918545, 2.240296277187438], "stop_id": 4037746, "stop_desc": "VOI PERRONET NORD - 92062", "stop_name": "LA DEFENSE-METRO-RER-TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.240296277187438, 48.891361317918545]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "58effdd9f35f9627b997a2fd9b28e2ce0a96e1bd", "fields": {"departement": "92", "stop_lat": 48.886657892619546, "code_postal": "92062", "stop_lon": 2.2478004797854343, "coord": [48.886657892619546, 2.2478004797854343], "stop_id": 4037750, "stop_desc": "RUE DE LA REPUBLIQUE - 92062", "stop_name": "BELLINI"}, "geometry": {"type": "Point", "coordinates": [2.2478004797854343, 48.886657892619546]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d7fec4342ba4bf452f1047033343552e5f35cf47", "fields": {"departement": "92", "stop_lat": 48.887154962379554, "code_postal": "92062", "stop_lon": 2.2515746160906414, "coord": [48.887154962379554, 2.2515746160906414], "stop_id": 4037751, "stop_desc": "BOULEVARD PIERRE GAUDIN - 92062", "stop_name": "PONT DE NEUILLY - RIVE GAUCHE"}, "geometry": {"type": "Point", "coordinates": [2.2515746160906414, 48.887154962379554]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8f4d2e98a104f6e477b3594f6c834424f084d0a8", "fields": {"departement": "92", "stop_lat": 48.88462644850585, "code_postal": "92051", "stop_lon": 2.2601913576941075, "coord": [48.88462644850585, 2.2601913576941075], "stop_id": 4037752, "stop_desc": "201 AVENUE CHARLES DE GAULLE - 92051", "stop_name": "PONT DE NEUILLY-METRO"}, "geometry": {"type": "Point", "coordinates": [2.2601913576941075, 48.88462644850585]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "28868a7185e2ebb06fdbb03c341cffb742737589", "fields": {"departement": "92", "stop_lat": 48.88347044692431, "code_postal": "92051", "stop_lon": 2.265562179942118, "coord": [48.88347044692431, 2.265562179942118], "stop_id": 4037755, "stop_desc": "130 BIS AVENUE CHARLES DE GAULLE - 92051", "stop_name": "LES GRAVIERS"}, "geometry": {"type": "Point", "coordinates": [2.265562179942118, 48.88347044692431]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9087afa7f6af6e8a47fb903819c4042784736bd4", "fields": {"departement": "92", "stop_lat": 48.8829142749037, "code_postal": "92051", "stop_lon": 2.2673072076891807, "coord": [48.8829142749037, 2.2673072076891807], "stop_id": 4037757, "stop_desc": "110-112 AVENUE CHARLES DE GAULLE - 92051", "stop_name": "RUE DE L'HOTEL DE VILLE"}, "geometry": {"type": "Point", "coordinates": [2.2673072076891807, 48.8829142749037]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5dd15c0c26da1d73138dcce7baffc9cd547ebc8a", "fields": {"departement": "92", "stop_lat": 48.889975774020385, "code_postal": "92026", "stop_lon": 2.249961745288486, "coord": [48.889975774020385, 2.249961745288486], "stop_id": 4037799, "stop_desc": "BOULEVARD CIRCULAIRE (SUR PISTE) - 92026", "stop_name": "ALSACE"}, "geometry": {"type": "Point", "coordinates": [2.249961745288486, 48.889975774020385]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "716d83693bc881f9a9f0fc30374819829df3adef", "fields": {"departement": "95", "stop_lat": 48.92477310902637, "code_postal": "95063", "stop_lon": 2.20945267132122, "coord": [48.92477310902637, 2.20945267132122], "stop_id": 4037801, "stop_desc": "136 RUE EDOUARD VAILLANT - 95063", "stop_name": "EMILE ZOLA"}, "geometry": {"type": "Point", "coordinates": [2.20945267132122, 48.92477310902637]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d974c0c56737c1c2573a8cb40ceb561276a6b2b0", "fields": {"departement": "75", "stop_lat": 48.871114258986275, "code_postal": "75110", "stop_lon": 2.3604834541826505, "coord": [48.871114258986275, 2.3604834541826505], "stop_id": 4044989, "stop_desc": "27-29 BOULEVARD DE MAGENTA - 75110", "stop_name": "JACQUES BONSERGENT"}, "geometry": {"type": "Point", "coordinates": [2.3604834541826505, 48.871114258986275]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e5317b019c7f0554ceee06b8cbc15c852e1052bb", "fields": {"departement": "75", "stop_lat": 48.84311767863822, "code_postal": "75105", "stop_lon": 2.363997607036225, "coord": [48.84311767863822, 2.363997607036225], "stop_id": 4044998, "stop_desc": "4 BOULEVARD DE L'HOPITAL - 75105", "stop_name": "GARE D'AUSTERLITZ"}, "geometry": {"type": "Point", "coordinates": [2.363997607036225, 48.84311767863822]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "94d9783be4febe9a729e7e9b21eb39abb8b34110", "fields": {"departement": "75", "stop_lat": 48.84202305182629, "code_postal": "75115", "stop_lon": 2.320697292153351, "coord": [48.84202305182629, 2.320697292153351], "stop_id": 4045007, "stop_desc": "PLACE RAOUL DAUTRY - 75115", "stop_name": "GARE MONTPARNASSE"}, "geometry": {"type": "Point", "coordinates": [2.320697292153351, 48.84202305182629]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7bfc401f99c9532a8d2a078b8da84fadc367795c", "fields": {"departement": "75", "stop_lat": 48.84454903838894, "code_postal": "75106", "stop_lon": 2.3247134823772995, "coord": [48.84454903838894, 2.3247134823772995], "stop_id": 4045009, "stop_desc": "169-171 RUE DE RENNES - 75106", "stop_name": "RENNES - LITTRE"}, "geometry": {"type": "Point", "coordinates": [2.3247134823772995, 48.84454903838894]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d5abeed2bed0d651bb5212189edd6c91daf25696", "fields": {"departement": "75", "stop_lat": 48.858893562960745, "code_postal": "75107", "stop_lon": 2.331574848358332, "coord": [48.858893562960745, 2.331574848358332], "stop_id": 4045014, "stop_desc": "FACE 13 QUAI VOLTAIRE - 75107", "stop_name": "PONT DU CARROUSEL - QUAI VOLTAIRE"}, "geometry": {"type": "Point", "coordinates": [2.331574848358332, 48.858893562960745]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "53f34cd1ffacb2264b0177e683f026a097022e08", "fields": {"departement": "75", "stop_lat": 48.86294479231431, "code_postal": "75107", "stop_lon": 2.314233895150675, "coord": [48.86294479231431, 2.314233895150675], "stop_id": 4045017, "stop_desc": "QUAI D'ORSAY - 75107", "stop_name": "INVALIDES"}, "geometry": {"type": "Point", "coordinates": [2.314233895150675, 48.86294479231431]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "71b216bda006bb767152c529852d956e63109013", "fields": {"departement": "75", "stop_lat": 48.869469015384865, "code_postal": "75108", "stop_lon": 2.3113019501850944, "coord": [48.869469015384865, 2.3113019501850944], "stop_id": 4045019, "stop_desc": "FACE 3 AVENUE MATIGNON - 75108", "stop_name": "ROND-POINT DES CHAMPS-ELYSEES - MATIGNON"}, "geometry": {"type": "Point", "coordinates": [2.3113019501850944, 48.869469015384865]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "10658d066c1a140a9e59732ace77b52649499c3c", "fields": {"departement": "75", "stop_lat": 48.883788451969494, "code_postal": "75109", "stop_lon": 2.331544866765384, "coord": [48.883788451969494, 2.331544866765384], "stop_id": 4045026, "stop_desc": "57 BOULEVARD DE CLICHY - 75109", "stop_name": "BLANCHE"}, "geometry": {"type": "Point", "coordinates": [2.331544866765384, 48.883788451969494]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5d30b8dcce0811ae98169529e71e8983760fc2fd", "fields": {"departement": "75", "stop_lat": 48.88087584272046, "code_postal": "75110", "stop_lon": 2.351726002486145, "coord": [48.88087584272046, 2.351726002486145], "stop_id": 4045032, "stop_desc": "129 BOULEVARD DE MAGENTA - 75110", "stop_name": "MAGENTA - MAUBEUGE - GARE DU NORD"}, "geometry": {"type": "Point", "coordinates": [2.351726002486145, 48.88087584272046]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "139bdd3f9610f286a8d9a01ed1c05edbb316e0f8", "fields": {"departement": "77", "stop_lat": 49.01526081540313, "code_postal": "77282", "stop_lon": 2.5414866149290445, "coord": [49.01526081540313, 2.5414866149290445], "stop_id": 4075438, "stop_desc": "AER CHARLES DE GAULLE - 77282", "stop_name": "TERMINAL 1"}, "geometry": {"type": "Point", "coordinates": [2.5414866149290445, 49.01526081540313]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "294c663c0a1126469399a05ad6c83112ad32cf32", "fields": {"departement": "92", "stop_lat": 48.88808864627775, "code_postal": "92050", "stop_lon": 2.194320208603867, "coord": [48.88808864627775, 2.194320208603867], "stop_id": 4102136, "stop_desc": "41 AVENUE LENINE - 92050", "stop_name": "FOCH"}, "geometry": {"type": "Point", "coordinates": [2.194320208603867, 48.88808864627775]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "231ee67bdaec9859ca478a29884ff004062a29fa", "fields": {"departement": "92", "stop_lat": 48.88552755066137, "code_postal": "92050", "stop_lon": 2.2191842324841113, "coord": [48.88552755066137, 2.2191842324841113], "stop_id": 4102142, "stop_desc": "272 AVENUE GEORGES CLEMENCEAU - 92050", "stop_name": "LES FONTENELLES"}, "geometry": {"type": "Point", "coordinates": [2.2191842324841113, 48.88552755066137]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7a72b303f85dc41e93649a11284d9d83893b4fca", "fields": {"departement": "92", "stop_lat": 48.885614220888584, "code_postal": "92062", "stop_lon": 2.2462759747958674, "coord": [48.885614220888584, 2.2462759747958674], "stop_id": 4102148, "stop_desc": "11 BIS RUE PAUL LAFARGUE - 92062", "stop_name": "PAUL LAFARGUE"}, "geometry": {"type": "Point", "coordinates": [2.2462759747958674, 48.885614220888584]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "37e89c52a035e8a5f38b47c98aa5273fcbce99c7", "fields": {"departement": "75", "stop_lat": 48.844359905437706, "code_postal": "75112", "stop_lon": 2.441914105326876, "coord": [48.844359905437706, 2.441914105326876], "stop_id": 4109729, "stop_desc": "AVENUE DE NOGENT - 75112", "stop_name": "CHATEAU DE VINCENNES"}, "geometry": {"type": "Point", "coordinates": [2.441914105326876, 48.844359905437706]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9fd9425b309cff4e1087c17e40ca2579b52e6ed0", "fields": {"departement": "94", "stop_lat": 48.83741794915162, "code_postal": "94052", "stop_lon": 2.4872655593059427, "coord": [48.83741794915162, 2.4872655593059427], "stop_id": 4109741, "stop_desc": "140 GRANDE RUE CHARLES DE GAULLE - 94052", "stop_name": "MARCHE DE NOGENT-SUR-MARNE"}, "geometry": {"type": "Point", "coordinates": [2.4872655593059427, 48.83741794915162]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5dc699f9a40ec5a811441a5e3d2cfcafb6654b32", "fields": {"departement": "94", "stop_lat": 48.838001853465165, "code_postal": "94058", "stop_lon": 2.4944560966386526, "coord": [48.838001853465165, 2.4944560966386526], "stop_id": 4109745, "stop_desc": "10 PLACE ROBERT BELVAUX - 94058", "stop_name": "NOGENT-LE-PERREUX RER"}, "geometry": {"type": "Point", "coordinates": [2.4944560966386526, 48.838001853465165]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "17a3a9f6650277423a6778608fa97a319db91b19", "fields": {"departement": "94", "stop_lat": 48.84287979631081, "code_postal": "94058", "stop_lon": 2.502790576045101, "coord": [48.84287979631081, 2.502790576045101], "stop_id": 4109750, "stop_desc": "FACE 72BIS AVENUE LEDRU-ROLLIN - 94058", "stop_name": "LEDRU-ROLLIN - GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.502790576045101, 48.84287979631081]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b40a5ec4499a7335404d2284ba0cdbf6e6399b6c", "fields": {"departement": "93", "stop_lat": 48.864867014190644, "code_postal": "93049", "stop_lon": 2.5126552014216936, "coord": [48.864867014190644, 2.5126552014216936], "stop_id": 4109769, "stop_desc": "CHEMIN DES RENOUILLERES - 93049", "stop_name": "ALEXANDER FLEMING"}, "geometry": {"type": "Point", "coordinates": [2.5126552014216936, 48.864867014190644]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cbfca7697fd4d06c98523cdde39f02a3e05badae", "fields": {"departement": "93", "stop_lat": 48.86541686191669, "code_postal": "93049", "stop_lon": 2.5115536428349077, "coord": [48.86541686191669, 2.5115536428349077], "stop_id": 4109772, "stop_desc": "15 AVENUE DU PRESIDENT KENNEDY - 93049", "stop_name": "KENNEDY - RENOUILLERES"}, "geometry": {"type": "Point", "coordinates": [2.5115536428349077, 48.86541686191669]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bfec8adf0929430209402ad9791d850d914c8f98", "fields": {"departement": "93", "stop_lat": 48.86666012662581, "code_postal": "93049", "stop_lon": 2.5094871599325916, "coord": [48.86666012662581, 2.5094871599325916], "stop_id": 4109774, "stop_desc": "RUE DES LOGES D'AVRON - 93049", "stop_name": "RUE DES HERSIERS"}, "geometry": {"type": "Point", "coordinates": [2.5094871599325916, 48.86666012662581]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8dcf0a6895519301aeb47aaaeea263c44493746c", "fields": {"departement": "93", "stop_lat": 48.86805952009656, "code_postal": "93049", "stop_lon": 2.505037040534674, "coord": [48.86805952009656, 2.505037040534674], "stop_id": 4109776, "stop_desc": "79 AVENUE CARNOT - 93049", "stop_name": "ETIENNE DOLET"}, "geometry": {"type": "Point", "coordinates": [2.505037040534674, 48.86805952009656]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ebfdcfcbb688fb177b9fd754ec994aa8a9ac6d95", "fields": {"departement": "93", "stop_lat": 48.88885730679274, "code_postal": "93077", "stop_lon": 2.510487666300401, "coord": [48.88885730679274, 2.510487666300401], "stop_id": 4109791, "stop_desc": "61 AVENUE DU RAINCY - 93077", "stop_name": "LE RAINCY-VILLEMOMBLE-MONTFERMEIL RER"}, "geometry": {"type": "Point", "coordinates": [2.510487666300401, 48.88885730679274]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0ac4f6898bafe4f431bf692b76c3574e454182f7", "fields": {"departement": "93", "stop_lat": 48.8939941869411, "code_postal": "93077", "stop_lon": 2.506879267612857, "coord": [48.8939941869411, 2.506879267612857], "stop_id": 4109799, "stop_desc": "17 BIS-19 RUE CHARLES HILDEVER - 93077", "stop_name": "CHARLES HILDEVERT"}, "geometry": {"type": "Point", "coordinates": [2.506879267612857, 48.8939941869411]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6ffd27c8fae34b3e3b822ed7e27e89378f1fb9e5", "fields": {"departement": "93", "stop_lat": 48.88250683953164, "code_postal": "93077", "stop_lon": 2.514213852584426, "coord": [48.88250683953164, 2.514213852584426], "stop_id": 4109800, "stop_desc": "FACE 1BIS RUE DE NEUILLY - 93077", "stop_name": "MARCEAU"}, "geometry": {"type": "Point", "coordinates": [2.514213852584426, 48.88250683953164]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ee8bb7235c6b63dbbcb6b5f496ae40a7e04353fc", "fields": {"departement": "93", "stop_lat": 48.87463720617038, "code_postal": "93049", "stop_lon": 2.512020636749665, "coord": [48.87463720617038, 2.512020636749665], "stop_id": 4109802, "stop_desc": "33 BIS AVENUE ARISTIDE BRIAND - 93049", "stop_name": "CAVES D'AVRON"}, "geometry": {"type": "Point", "coordinates": [2.512020636749665, 48.87463720617038]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "985b2982a8ae5a6e5b258a5205bc7167905768ea", "fields": {"departement": "93", "stop_lat": 48.86017651145646, "code_postal": "93049", "stop_lon": 2.5057879376763466, "coord": [48.86017651145646, 2.5057879376763466], "stop_id": 4109803, "stop_desc": "FACE 24 AVENUE DU GENERAL LECLERC - 93049", "stop_name": "MAIRIE DE NEUILLY-PLAISANCE"}, "geometry": {"type": "Point", "coordinates": [2.5057879376763466, 48.86017651145646]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "90cf9327e57ba0d7f86797b4f75fbbaf29f0d862", "fields": {"departement": "94", "stop_lat": 48.851245085996716, "code_postal": "94058", "stop_lon": 2.510579946974966, "coord": [48.851245085996716, 2.510579946974966], "stop_id": 4109805, "stop_desc": "165-187 AVENUE DU 8 MAI 1945 - 94058", "stop_name": "LA MALTOURNEE"}, "geometry": {"type": "Point", "coordinates": [2.510579946974966, 48.851245085996716]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "126ef4f5dd442caea214fb6444600b4f5572d5a4", "fields": {"departement": "93", "stop_lat": 48.88250683953164, "code_postal": "93077", "stop_lon": 2.514213852584426, "coord": [48.88250683953164, 2.514213852584426], "stop_id": 4109811, "stop_desc": "FACE 1BIS RUE DE NEUILLY - 93077", "stop_name": "MARCEAU"}, "geometry": {"type": "Point", "coordinates": [2.514213852584426, 48.88250683953164]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c1d0aacb4e62deccfebcbb7dd3af80e2d50a97de", "fields": {"departement": "93", "stop_lat": 48.86666012662581, "code_postal": "93049", "stop_lon": 2.5094871599325916, "coord": [48.86666012662581, 2.5094871599325916], "stop_id": 4109818, "stop_desc": "RUE DES LOGES D'AVRON - 93049", "stop_name": "RUE DES HERSIERS"}, "geometry": {"type": "Point", "coordinates": [2.5094871599325916, 48.86666012662581]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "60d08887d3f031bec20c1ae4563dc5303bff6ee8", "fields": {"departement": "93", "stop_lat": 48.860919438984546, "code_postal": "93049", "stop_lon": 2.5079152696909723, "coord": [48.860919438984546, 2.5079152696909723], "stop_id": 4109824, "stop_desc": "FACE 44 R DU GENERAL LECLERC - 93049", "stop_name": "SQUARE JEAN MERMOZ"}, "geometry": {"type": "Point", "coordinates": [2.5079152696909723, 48.860919438984546]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "320efb3eb1ba748eb0a05b766c615ff6957cb15c", "fields": {"departement": "92", "stop_lat": 48.8805237484064, "code_postal": "92063", "stop_lon": 2.1963032696465157, "coord": [48.8805237484064, 2.1963032696465157], "stop_id": 4109835, "stop_desc": "FACE 73 R GAMBETTA - 92063", "stop_name": "LES GIBETS"}, "geometry": {"type": "Point", "coordinates": [2.1963032696465157, 48.8805237484064]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2635fab28beffbc2eb5dd90a29862578ba59f8e4", "fields": {"departement": "92", "stop_lat": 48.87744385318489, "code_postal": "92063", "stop_lon": 2.1986416205603554, "coord": [48.87744385318489, 2.1986416205603554], "stop_id": 4109841, "stop_desc": "125 RUE DANTON - 92063", "stop_name": "VOLTAIRE"}, "geometry": {"type": "Point", "coordinates": [2.1986416205603554, 48.87744385318489]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d22f088ec75ed795d054ce31402c9936b1b13105", "fields": {"departement": "92", "stop_lat": 48.87030928440779, "code_postal": "92063", "stop_lon": 2.1998187100323046, "coord": [48.87030928440779, 2.1998187100323046], "stop_id": 4109850, "stop_desc": "FACE 25 R DE LA CHAPELLE - 92063", "stop_name": "LA CHAPELLE"}, "geometry": {"type": "Point", "coordinates": [2.1998187100323046, 48.87030928440779]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7760ca3c226d26f2ea190a6f142b865366464cfb", "fields": {"departement": "92", "stop_lat": 48.871194899116894, "code_postal": "92063", "stop_lon": 2.2040942842434, "coord": [48.871194899116894, 2.2040942842434], "stop_id": 4109852, "stop_desc": "FACE 3 R DES ROSIERS - 92063", "stop_name": "PLACE DU 8 MAI 1945"}, "geometry": {"type": "Point", "coordinates": [2.2040942842434, 48.871194899116894]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "587ac1d8620aaafe2c0a0ca1acf7755cab2d486d", "fields": {"departement": "92", "stop_lat": 48.87130250305342, "code_postal": "92063", "stop_lon": 2.203876024180731, "coord": [48.87130250305342, 2.203876024180731], "stop_id": 4109853, "stop_desc": "1-3 R DES ROSIERS - 92063", "stop_name": "PLACE DU 8 MAI 1945"}, "geometry": {"type": "Point", "coordinates": [2.203876024180731, 48.87130250305342]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6be2d5c399d644abbe76add79cba0169327428f7", "fields": {"departement": "93", "stop_lat": 48.8726302957579, "code_postal": "93048", "stop_lon": 2.4361399617921786, "coord": [48.8726302957579, 2.4361399617921786], "stop_id": 4117613, "stop_desc": "AV FERDINAND BUISSON - 93048", "stop_name": "VERT BOIS"}, "geometry": {"type": "Point", "coordinates": [2.4361399617921786, 48.8726302957579]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cce17acc8c9068fffa5f2570cf7975672dc38f09", "fields": {"departement": "93", "stop_lat": 48.876779222562476, "code_postal": "93048", "stop_lon": 2.449882293218182, "coord": [48.876779222562476, 2.449882293218182], "stop_id": 4117616, "stop_desc": "FACE 18 AVENUE DU DOCTEUR FERNAND LAMAZE - 93048", "stop_name": "RUE DE ROMAINVILLE"}, "geometry": {"type": "Point", "coordinates": [2.449882293218182, 48.876779222562476]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "21c3dfa2c8b7092dd8c8316b32c9d8af4672f2ea", "fields": {"departement": "93", "stop_lat": 48.87788854353282, "code_postal": "93048", "stop_lon": 2.455157852359322, "coord": [48.87788854353282, 2.455157852359322], "stop_id": 4117619, "stop_desc": "60 RUE DES SAULES CLOUETS - 93048", "stop_name": "HOPITAL ANDRE GREGOIRE"}, "geometry": {"type": "Point", "coordinates": [2.455157852359322, 48.87788854353282]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4c6e7d85e472953bba21e465cb26aa0dfac2dfbb", "fields": {"departement": "93", "stop_lat": 48.8833570324907, "code_postal": "93053", "stop_lon": 2.459871656407652, "coord": [48.8833570324907, 2.459871656407652], "stop_id": 4117629, "stop_desc": "AV DU 18 AVRIL 1944 - 93053", "stop_name": "NOUVEAU CIMETIERE"}, "geometry": {"type": "Point", "coordinates": [2.459871656407652, 48.8833570324907]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c9028f8fb8820bed9b27316fbbe51328e46ace21", "fields": {"departement": "93", "stop_lat": 48.88481445355203, "code_postal": "93053", "stop_lon": 2.4584169582426765, "coord": [48.88481445355203, 2.4584169582426765], "stop_id": 4117638, "stop_desc": "FACE 8-10 AV DU 18 AVRIL 1944 - 93053", "stop_name": "ECOLE PAUL LANGEVIN"}, "geometry": {"type": "Point", "coordinates": [2.4584169582426765, 48.88481445355203]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3ac1b8443c19cbc6b0e714a4e52c9c3d120093c4", "fields": {"departement": "93", "stop_lat": 48.88562432364013, "code_postal": "93053", "stop_lon": 2.4574103983415507, "coord": [48.88562432364013, 2.4574103983415507], "stop_id": 4117639, "stop_desc": "8 AV DU 18 AVRIL 1944 - 93053", "stop_name": "ECOLE PAUL LANGEVIN"}, "geometry": {"type": "Point", "coordinates": [2.4574103983415507, 48.88562432364013]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "17e6df51840e9fbfeb7b1352c21460186ed0ed7f", "fields": {"departement": "93", "stop_lat": 48.89609148581634, "code_postal": "93053", "stop_lon": 2.4602698105278074, "coord": [48.89609148581634, 2.4602698105278074], "stop_id": 4117645, "stop_desc": "FACE 108 RUE JEAN JAURES - 93053", "stop_name": "NOISY-LE-SEC RER"}, "geometry": {"type": "Point", "coordinates": [2.4602698105278074, 48.89609148581634]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b90acd5e42134861c8b4888e56c551f35eec19aa", "fields": {"departement": "93", "stop_lat": 48.880061015709764, "code_postal": "93053", "stop_lon": 2.4662000814018366, "coord": [48.880061015709764, 2.4662000814018366], "stop_id": 4117649, "stop_desc": "76 RUELLE DE LA BOISSIERE - 93053", "stop_name": "RUELLE BOISSIERE"}, "geometry": {"type": "Point", "coordinates": [2.4662000814018366, 48.880061015709764]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2de772edea25e466294cb948bdf1da4d7efd51a0", "fields": {"departement": "93", "stop_lat": 48.92270485983442, "code_postal": "93029", "stop_lon": 2.457619155307906, "coord": [48.92270485983442, 2.457619155307906], "stop_id": 5605636, "stop_desc": "220 AVENUE HENRI BARBUSSE - 93029", "stop_name": "BARBUSSE - CROIZAT"}, "geometry": {"type": "Point", "coordinates": [2.457619155307906, 48.92270485983442]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0209a68ce51a35a49da1c1b6f180ac5cdcb9afee", "fields": {"departement": "93", "stop_lat": 48.932960982135306, "code_postal": "93029", "stop_lon": 2.455569683574768, "coord": [48.932960982135306, 2.455569683574768], "stop_id": 5605643, "stop_desc": "RUE ANATOLE FRANCE - 93029", "stop_name": "DRANCY RER"}, "geometry": {"type": "Point", "coordinates": [2.455569683574768, 48.932960982135306]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6c6f0ea00077132e45fa76e9bceea318d2c22c5f", "fields": {"departement": "93", "stop_lat": 48.93281739515088, "code_postal": "93029", "stop_lon": 2.455364753088356, "coord": [48.93281739515088, 2.455364753088356], "stop_id": 5605644, "stop_desc": "193 RUE ANATOLE FRANCE - 93029", "stop_name": "DRANCY RER"}, "geometry": {"type": "Point", "coordinates": [2.455364753088356, 48.93281739515088]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a0ac1d2825a081d022b595cdc275998b770204f1", "fields": {"departement": "93", "stop_lat": 48.923707793324965, "code_postal": "93029", "stop_lon": 2.4611400290594894, "coord": [48.923707793324965, 2.4611400290594894], "stop_id": 5605645, "stop_desc": "FACE 240 AVENUE HENRI BARBUSSE - 93029", "stop_name": "DANIEL FERY"}, "geometry": {"type": "Point", "coordinates": [2.4611400290594894, 48.923707793324965]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "244e95df0adc6f1827ec145433b86f1679c51e7f", "fields": {"departement": "93", "stop_lat": 48.91589374569769, "code_postal": "93029", "stop_lon": 2.4256548792488, "coord": [48.91589374569769, 2.4256548792488], "stop_id": 5605649, "stop_desc": "124 R DE STALINGRAD - 93029", "stop_name": "HOPITAL AVICENNE"}, "geometry": {"type": "Point", "coordinates": [2.4256548792488, 48.91589374569769]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "060798a74df2c1ce1701842e1570c3aca9695e18", "fields": {"departement": "92", "stop_lat": 48.88529645972229, "code_postal": "92050", "stop_lon": 2.2218148964062006, "coord": [48.88529645972229, 2.2218148964062006], "stop_id": 5653471, "stop_desc": "FACE 285 AVENUE GEORGES CLEMENCEAU - 92050", "stop_name": "CRAIOVA"}, "geometry": {"type": "Point", "coordinates": [2.2218148964062006, 48.88529645972229]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f3da2495ba0f3c9a02d2bffdb0c7c2f3897be8fc", "fields": {"departement": "75", "stop_lat": 48.87609534919313, "code_postal": "75109", "stop_lon": 2.331409461627424, "coord": [48.87609534919313, 2.331409461627424], "stop_id": 5657269, "stop_desc": "73 RUE SAINT-LAZARE - 75109", "stop_name": "TRINITE"}, "geometry": {"type": "Point", "coordinates": [2.331409461627424, 48.87609534919313]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1cbc50724fdbf2f2a11c197d4df21c6b673754b9", "fields": {"departement": "75", "stop_lat": 48.87640991415704, "code_postal": "75109", "stop_lon": 2.331613805742387, "coord": [48.87640991415704, 2.331613805742387], "stop_id": 5657270, "stop_desc": "PLACE D'ESTIENNE D'ORVES - 75109", "stop_name": "TRINITE"}, "geometry": {"type": "Point", "coordinates": [2.331613805742387, 48.87640991415704]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3819e9d4b372dc575874cf6bd6cb9aba57899846", "fields": {"departement": "75", "stop_lat": 48.880583424388306, "code_postal": "75119", "stop_lon": 2.3741277267178926, "coord": [48.880583424388306, 2.3741277267178926], "stop_id": 5657287, "stop_desc": "FACE 127 AVENUE SIMON BOLIVAR - 75119", "stop_name": "MARCHE SECRETAN"}, "geometry": {"type": "Point", "coordinates": [2.3741277267178926, 48.880583424388306]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b40c8f7774a4c8dcf17eb4834fd1b3a5ddef8ff7", "fields": {"departement": "75", "stop_lat": 48.87630480626612, "code_postal": "75119", "stop_lon": 2.3762502270048813, "coord": [48.87630480626612, 2.3762502270048813], "stop_id": 5657290, "stop_desc": "71 AVENUE SIMON BOLIVAR - 75119", "stop_name": "ATLAS"}, "geometry": {"type": "Point", "coordinates": [2.3762502270048813, 48.87630480626612]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b80b1a5cc88cc2cf2922c1d0b3fdbb1b6ac9b781", "fields": {"departement": "75", "stop_lat": 48.87615071764947, "code_postal": "75119", "stop_lon": 2.3800515526740487, "coord": [48.87615071764947, 2.3800515526740487], "stop_id": 5657292, "stop_desc": "47 AVENUE SIMON BOLIVAR - 75119", "stop_name": "BOTZARIS - BUTTES CHAUMONT"}, "geometry": {"type": "Point", "coordinates": [2.3800515526740487, 48.87615071764947]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "038139fede55b0f599ad4e6c32ce24d03f5e4fd9", "fields": {"departement": "75", "stop_lat": 48.87354041986844, "code_postal": "75120", "stop_lon": 2.389981697300904, "coord": [48.87354041986844, 2.389981697300904], "stop_id": 5657296, "stop_desc": "FACE 373 RUE DES PYRENEES - 75120", "stop_name": "JOURDAIN"}, "geometry": {"type": "Point", "coordinates": [2.389981697300904, 48.87354041986844]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6695d400bc1fc54b9fcc334b78eaf745477f299e", "fields": {"departement": "75", "stop_lat": 48.869538889083685, "code_postal": "75120", "stop_lon": 2.3946777364629392, "coord": [48.869538889083685, 2.3946777364629392], "stop_id": 5657299, "stop_desc": "295 RUE DES PYRENEES - 75120", "stop_name": "PYRENEES - MENILMONTANT"}, "geometry": {"type": "Point", "coordinates": [2.3946777364629392, 48.869538889083685]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0997e2497ed5f90bb64e6ea82a08ca7341bb11e2", "fields": {"departement": "75", "stop_lat": 48.86203162509228, "code_postal": "75120", "stop_lon": 2.4002406296725773, "coord": [48.86203162509228, 2.4002406296725773], "stop_id": 5657305, "stop_desc": "180-180 BIS RUE DES PYRENEES - 75120", "stop_name": "RAMUS"}, "geometry": {"type": "Point", "coordinates": [2.4002406296725773, 48.86203162509228]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ea1d109ce7b631471c8866d4e64c5efeb83d674c", "fields": {"departement": "75", "stop_lat": 48.85600750472807, "code_postal": "75120", "stop_lon": 2.40489133644558, "coord": [48.85600750472807, 2.40489133644558], "stop_id": 5657308, "stop_desc": "111 RUE DES PYRENEES - 75120", "stop_name": "ORTEAUX"}, "geometry": {"type": "Point", "coordinates": [2.40489133644558, 48.85600750472807]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7e70790cbe57376b9d64755f39d1e972e442e0aa", "fields": {"departement": "75", "stop_lat": 48.853139807594715, "code_postal": "75120", "stop_lon": 2.4061133245654953, "coord": [48.853139807594715, 2.4061133245654953], "stop_id": 5657311, "stop_desc": "62 RUE DES PYRENEES - 75120", "stop_name": "MARAICHERS"}, "geometry": {"type": "Point", "coordinates": [2.4061133245654953, 48.853139807594715]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "72ad3e6de9368853188b3efddd2e29e5651b7389", "fields": {"departement": "75", "stop_lat": 48.851171364007484, "code_postal": "75120", "stop_lon": 2.406437559672925, "coord": [48.851171364007484, 2.406437559672925], "stop_id": 5657313, "stop_desc": "40-42 RUE DES PYRENEES - 75120", "stop_name": "LA PLAINE"}, "geometry": {"type": "Point", "coordinates": [2.406437559672925, 48.851171364007484]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d6e4355e7df35cf5626ea877f70ba211352cac4e", "fields": {"departement": "75", "stop_lat": 48.84765930770116, "code_postal": "75120", "stop_lon": 2.4028105519305467, "coord": [48.84765930770116, 2.4028105519305467], "stop_id": 5657317, "stop_desc": "44 COURS DE VINCENNES - 75120", "stop_name": "MARSOULAN"}, "geometry": {"type": "Point", "coordinates": [2.4028105519305467, 48.84765930770116]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "25609f837e6c50f7ca8b05e77ba6c558e0b3f083", "fields": {"departement": "94", "stop_lat": 48.7619901951208, "code_postal": "94022", "stop_lon": 2.4133883763250874, "coord": [48.7619901951208, 2.4133883763250874], "stop_id": 5673009, "stop_desc": "FACE 24 AVENUE LOUIS LUC - 94022", "stop_name": "QUARTIER DU PORT"}, "geometry": {"type": "Point", "coordinates": [2.4133883763250874, 48.7619901951208]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d74f61417f3b8569a52e7f453349402570089f53", "fields": {"departement": "94", "stop_lat": 48.755380007209055, "code_postal": "94022", "stop_lon": 2.404991454792588, "coord": [48.755380007209055, 2.404991454792588], "stop_id": 5673018, "stop_desc": "85 AVENUE DU MARECHAL DE LATTRE DE TASSIGNY - 94022", "stop_name": "SPINOZA"}, "geometry": {"type": "Point", "coordinates": [2.404991454792588, 48.755380007209055]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e11d83be879002b23cbf0a77651ecf4ffaf6a7ce", "fields": {"departement": "94", "stop_lat": 48.75760940670489, "code_postal": "94022", "stop_lon": 2.404396217766073, "coord": [48.75760940670489, 2.404396217766073], "stop_id": 5673019, "stop_desc": "49 AVENUE DU MARECHAL DE LATTRE DE TASSIGNY - 94022", "stop_name": "DE LATTRE DE TASSIGNY"}, "geometry": {"type": "Point", "coordinates": [2.404396217766073, 48.75760940670489]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9e9e11b59340d4d07efa0cadb7d1161158c46f99", "fields": {"departement": "94", "stop_lat": 48.77101094857996, "code_postal": "94022", "stop_lon": 2.403883228723226, "coord": [48.77101094857996, 2.403883228723226], "stop_id": 5673026, "stop_desc": "39-41 RUE DU DOCTEUR ROUX - 94022", "stop_name": "CONSERVATOIRE"}, "geometry": {"type": "Point", "coordinates": [2.403883228723226, 48.77101094857996]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8e53fa14ea3e7d97ed86fcc7ef09047704d80edf", "fields": {"departement": "94", "stop_lat": 48.76868024848463, "code_postal": "94022", "stop_lon": 2.408693597915253, "coord": [48.76868024848463, 2.408693597915253], "stop_id": 5673028, "stop_desc": "AVENUE DE LUGO - 94022", "stop_name": "8 MAI 1945"}, "geometry": {"type": "Point", "coordinates": [2.408693597915253, 48.76868024848463]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "85455dac3e919182a0690da3f21f5e536479f989", "fields": {"departement": "94", "stop_lat": 48.76872487864614, "code_postal": "94022", "stop_lon": 2.422780224172931, "coord": [48.76872487864614, 2.422780224172931], "stop_id": 5673036, "stop_desc": "2-4 RUE POMPADOUR - 94022", "stop_name": "RUE POMPADOUR"}, "geometry": {"type": "Point", "coordinates": [2.422780224172931, 48.76872487864614]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "be82773c5af721a9147cbf6e1747c29946959a35", "fields": {"departement": "94", "stop_lat": 48.77205187672439, "code_postal": "94022", "stop_lon": 2.42078680383975, "coord": [48.77205187672439, 2.42078680383975], "stop_id": 5673037, "stop_desc": "FACE 62 AVENUE DE LA FOLIE - 94022", "stop_name": "COLLEGE JULES VALLES"}, "geometry": {"type": "Point", "coordinates": [2.42078680383975, 48.77205187672439]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7baa189c8090f20e94673e4cabdc79e0952351f9", "fields": {"departement": "94", "stop_lat": 48.76803252179247, "code_postal": "94011", "stop_lon": 2.4867252956967754, "coord": [48.76803252179247, 2.4867252956967754], "stop_id": 5675604, "stop_desc": "AVENUE JEAN ROSTAND - 94011", "stop_name": "MESSIDOR - LIBERTES"}, "geometry": {"type": "Point", "coordinates": [2.4867252956967754, 48.76803252179247]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3e2ade52c09a0eb53c33c06f639007df1c3014d8", "fields": {"departement": "94", "stop_lat": 48.767278803731315, "code_postal": "94028", "stop_lon": 2.4705294490523295, "coord": [48.767278803731315, 2.4705294490523295], "stop_id": 5675606, "stop_desc": "ROUTE DE LA POMPADOUR - 94028", "stop_name": "EUROPARC"}, "geometry": {"type": "Point", "coordinates": [2.4705294490523295, 48.767278803731315]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b36d3397550ff1f94128a4ecef65c29d6bc76ebc", "fields": {"departement": "94", "stop_lat": 48.788958585593384, "code_postal": "94028", "stop_lon": 2.4615803091793236, "coord": [48.788958585593384, 2.4615803091793236], "stop_id": 5675618, "stop_desc": "73 RUE DE MESLY - 94028", "stop_name": "HOPITAL CHENEVIER"}, "geometry": {"type": "Point", "coordinates": [2.4615803091793236, 48.788958585593384]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3bebe0868a42bb9c3bff8edb34aceb11ca02520b", "fields": {"departement": "94", "stop_lat": 48.79101789108695, "code_postal": "94028", "stop_lon": 2.460551417499719, "coord": [48.79101789108695, 2.460551417499719], "stop_id": 5675619, "stop_desc": "3 RUE DE MESLY - 94028", "stop_name": "BRETAGNE"}, "geometry": {"type": "Point", "coordinates": [2.460551417499719, 48.79101789108695]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b5f441ffd1ec179882208b4177e0fa4f19f2c7cb", "fields": {"departement": "94", "stop_lat": 48.79676434459723, "code_postal": "94028", "stop_lon": 2.457436045286632, "coord": [48.79676434459723, 2.457436045286632], "stop_id": 5675621, "stop_desc": "24-26 AVENUE DU MARECHAL DE LATTRE DE TASSIGNY - 94028", "stop_name": "GENERAL GALLIENI"}, "geometry": {"type": "Point", "coordinates": [2.457436045286632, 48.79676434459723]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4e029df8b17d0c2541eaf9c13e80c6bcbee03ede", "fields": {"departement": "94", "stop_lat": 48.81064656812028, "code_postal": "94046", "stop_lon": 2.4319666864318217, "coord": [48.81064656812028, 2.4319666864318217], "stop_id": 5675628, "stop_desc": "103 AVENUE DU GENERAL LECLERC - 94046", "stop_name": "8 MAI 1945"}, "geometry": {"type": "Point", "coordinates": [2.4319666864318217, 48.81064656812028]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b306d65f180cc64c3989401b2eae5a44b2b13932", "fields": {"departement": "94", "stop_lat": 48.814932080698995, "code_postal": "94046", "stop_lon": 2.4222439451389848, "coord": [48.814932080698995, 2.4222439451389848], "stop_id": 5675629, "stop_desc": "31-35 AVENUE DU GENERAL LECLERC - 94046", "stop_name": "ECOLE VETERINAIRE DE MAISONS-ALFORT-METRO"}, "geometry": {"type": "Point", "coordinates": [2.4222439451389848, 48.814932080698995]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0ba641ff4c37d9ae8eed600b748fea70fc0c1def", "fields": {"departement": "75", "stop_lat": 48.84369043264488, "code_postal": "75112", "stop_lon": 2.373284500119991, "coord": [48.84369043264488, 2.373284500119991], "stop_id": 5675644, "stop_desc": "179 RUE DE BERCY - 75112", "stop_name": "GARE DE LYON"}, "geometry": {"type": "Point", "coordinates": [2.373284500119991, 48.84369043264488]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fd0e2f83c064a3656f8d44bf6e8c010d629dfe9f", "fields": {"departement": "75", "stop_lat": 48.84079481495786, "code_postal": "75112", "stop_lon": 2.378320391662055, "coord": [48.84079481495786, 2.378320391662055], "stop_id": 5675645, "stop_desc": "133-135 RUE DE BERCY - 75112", "stop_name": "MINISTERE DE L'ECONOMIE ET DES FINANCES"}, "geometry": {"type": "Point", "coordinates": [2.378320391662055, 48.84079481495786]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ee60c1049a6ae5ee3a5e03647a4b9d0131042a5a", "fields": {"departement": "75", "stop_lat": 48.837728651093556, "code_postal": "75112", "stop_lon": 2.3822118972238107, "coord": [48.837728651093556, 2.3822118972238107], "stop_id": 5675646, "stop_desc": "61 RUE DE BERCY - 75112", "stop_name": "GARE DE BERCY - POPB"}, "geometry": {"type": "Point", "coordinates": [2.3822118972238107, 48.837728651093556]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1fd1afc8ec8d30f1de7c79345639f37804fb4133", "fields": {"departement": "94", "stop_lat": 48.82207395654258, "code_postal": "94018", "stop_lon": 2.398436310380732, "coord": [48.82207395654258, 2.398436310380732], "stop_id": 5675650, "stop_desc": "FACE 7 QUAI DE BERCY - 94018", "stop_name": "PORT AUX LIONS"}, "geometry": {"type": "Point", "coordinates": [2.398436310380732, 48.82207395654258]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "079610bd61ba47aa16dbdd0b55df62e5ce05bdcf", "fields": {"departement": "94", "stop_lat": 48.8074424310896, "code_postal": "94046", "stop_lon": 2.437444548191373, "coord": [48.8074424310896, 2.437444548191373], "stop_id": 5675658, "stop_desc": "38 AVENUE DU GENERAL LECLERC - 94046", "stop_name": "CECILE"}, "geometry": {"type": "Point", "coordinates": [2.437444548191373, 48.8074424310896]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eadc91044054e6133c4442b84a1990b9ab05014c", "fields": {"departement": "94", "stop_lat": 48.78845519149672, "code_postal": "94028", "stop_lon": 2.461647115332306, "coord": [48.78845519149672, 2.461647115332306], "stop_id": 5675665, "stop_desc": "FACE 75 RUE DE MESLY - 94028", "stop_name": "HOPITAL CHENEVIER"}, "geometry": {"type": "Point", "coordinates": [2.461647115332306, 48.78845519149672]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d9d32fb3994b680a70aaab8bfabf50eac73ffefd", "fields": {"departement": "94", "stop_lat": 48.77980464437932, "code_postal": "94028", "stop_lon": 2.465529593805048, "coord": [48.77980464437932, 2.465529593805048], "stop_id": 5675668, "stop_desc": "98 RUE JULIETTE SAVAR - 94028", "stop_name": "CASALIS - SAVAR"}, "geometry": {"type": "Point", "coordinates": [2.465529593805048, 48.77980464437932]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "785f7595c36bbda9ee1b23d9b97e671c89905c05", "fields": {"departement": "94", "stop_lat": 48.76861641884663, "code_postal": "94028", "stop_lon": 2.463775144557499, "coord": [48.76861641884663, 2.463775144557499], "stop_id": 5675676, "stop_desc": "ROUTE DE LA POMPADOUR - 94028", "stop_name": "POINTE DU LAC"}, "geometry": {"type": "Point", "coordinates": [2.463775144557499, 48.76861641884663]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a5004662807d6ec838fee63261309cd1c1b20faf", "fields": {"departement": "91", "stop_lat": 48.6988617345815, "code_postal": "91122", "stop_lon": 2.1638124580254603, "coord": [48.6988617345815, 2.1638124580254603], "stop_id": 5682040, "stop_desc": "231 VOIE DE LA FACULTE - 91122", "stop_name": "BURES-SUR-YVETTE RER - UNIVERSITE"}, "geometry": {"type": "Point", "coordinates": [2.1638124580254603, 48.6988617345815]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0adea4d1390aecb5c4911c38e8429318a1db6a76", "fields": {"departement": "91", "stop_lat": 48.69646353271517, "code_postal": "91471", "stop_lon": 2.1847308927011513, "coord": [48.69646353271517, 2.1847308927011513], "stop_id": 5682045, "stop_desc": "PLACE DE LA REPUBLIQUE - 91471", "stop_name": "PLACE DE LA REPUBLIQUE-ORSAY RER"}, "geometry": {"type": "Point", "coordinates": [2.1847308927011513, 48.69646353271517]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "091e383e28f0f0b3db855fc144e830fd14e932bc", "fields": {"departement": "75", "stop_lat": 48.83487001531102, "code_postal": "75114", "stop_lon": 2.3327347010432598, "coord": [48.83487001531102, 2.3327347010432598], "stop_id": 5682055, "stop_desc": "108-110 AVENUE DENFERT-ROCHEREAU - 75114", "stop_name": "DENFERT-ROCHEREAU - ARAGO"}, "geometry": {"type": "Point", "coordinates": [2.3327347010432598, 48.83487001531102]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9d69484fd474ee96cce74eae2a437c46613ebeb0", "fields": {"departement": "75", "stop_lat": 48.839256036606045, "code_postal": "75114", "stop_lon": 2.3367645211123738, "coord": [48.839256036606045, 2.3367645211123738], "stop_id": 5682056, "stop_desc": "49 AVENUE DE L'OBSERVATOIRE - 75114", "stop_name": "OBSERVATOIRE - PORT ROYAL"}, "geometry": {"type": "Point", "coordinates": [2.3367645211123738, 48.839256036606045]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f62f2d864a5ca65be26bea7665c285ad3372112f", "fields": {"departement": "75", "stop_lat": 48.857598970485036, "code_postal": "75104", "stop_lon": 2.348586823364378, "coord": [48.857598970485036, 2.348586823364378], "stop_id": 5682060, "stop_desc": "FACE 15 AVENUE VICTORIA - 75104", "stop_name": "CHATELET"}, "geometry": {"type": "Point", "coordinates": [2.348586823364378, 48.857598970485036]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0669d64858fecbaec3920ddea221b018f7873e32", "fields": {"departement": "91", "stop_lat": 48.7244458500694, "code_postal": "91377", "stop_lon": 2.2604287428627776, "coord": [48.7244458500694, 2.2604287428627776], "stop_id": 5682065, "stop_desc": "R CARNOT - 91377", "stop_name": "MASSY-PALAISEAU RER"}, "geometry": {"type": "Point", "coordinates": [2.2604287428627776, 48.7244458500694]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "48b3247ccca8e8e12312300e7f4c7ca22c8bdbfc", "fields": {"departement": "92", "stop_lat": 48.78028644067615, "code_postal": "92014", "stop_lon": 2.3231921854078097, "coord": [48.78028644067615, 2.3231921854078097], "stop_id": 5688795, "stop_desc": "69 RUE DE LA BIEVRE - 92014", "stop_name": "MARECHAL DE LATTRE"}, "geometry": {"type": "Point", "coordinates": [2.3231921854078097, 48.78028644067615]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c3a5b836cfb16c545d44f8e10b42e707b13e592a", "fields": {"departement": "94", "stop_lat": 48.77927130313195, "code_postal": "94038", "stop_lon": 2.3284419923184068, "coord": [48.77927130313195, 2.3284419923184068], "stop_id": 5688796, "stop_desc": "59 RUE DE LA COSARDE - 94038", "stop_name": "PETIT ROBINSON"}, "geometry": {"type": "Point", "coordinates": [2.3284419923184068, 48.77927130313195]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "76fb8a8a155228b09c7247a8f273a39266f6a08b", "fields": {"departement": "94", "stop_lat": 48.77827394172297, "code_postal": "94038", "stop_lon": 2.3350379495207525, "coord": [48.77827394172297, 2.3350379495207525], "stop_id": 5688802, "stop_desc": "FACE 13 RUE JEAN JAURES - 94038", "stop_name": "SOUS-PREFECTURE - EGLISE DE L'HAY-LES-ROSES"}, "geometry": {"type": "Point", "coordinates": [2.3350379495207525, 48.77827394172297]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b7ea4ea673420d6bf74dad36b75942799e0f0614", "fields": {"departement": "94", "stop_lat": 48.77882222928945, "code_postal": "94038", "stop_lon": 2.3376490697971875, "coord": [48.77882222928945, 2.3376490697971875], "stop_id": 5688804, "stop_desc": "40 RUE JEAN JAURES - 94038", "stop_name": "MAIRIE DE L'HAY-LES-ROSES"}, "geometry": {"type": "Point", "coordinates": [2.3376490697971875, 48.77882222928945]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8ab04e1dfcd09733a33b2d264d113f169dca910c", "fields": {"departement": "94", "stop_lat": 48.779846859794795, "code_postal": "94038", "stop_lon": 2.337689877550507, "coord": [48.779846859794795, 2.337689877550507], "stop_id": 5688805, "stop_desc": "11 RUE DES JARDINS - 94038", "stop_name": "MAIRIE DE L'HAY-LES-ROSES"}, "geometry": {"type": "Point", "coordinates": [2.337689877550507, 48.779846859794795]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a39afc049d5385c793835f5b01ae395b38401bcc", "fields": {"departement": "94", "stop_lat": 48.78336089320296, "code_postal": "94038", "stop_lon": 2.345184000247688, "coord": [48.78336089320296, 2.345184000247688], "stop_id": 5688808, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 94038", "stop_name": "CENTRE COMMERCIAL DE L'HAY-LES-ROSES"}, "geometry": {"type": "Point", "coordinates": [2.345184000247688, 48.78336089320296]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "30132ca7d83be8d7499ff29d54d9bc417df31b7e", "fields": {"departement": "94", "stop_lat": 48.78672176442784, "code_postal": "94076", "stop_lon": 2.351767772682114, "coord": [48.78672176442784, 2.351767772682114], "stop_id": 5688809, "stop_desc": "141 AVENUE DE LA REPUBLIQUE - 94076", "stop_name": "REPUBLIQUE-GAITE"}, "geometry": {"type": "Point", "coordinates": [2.351767772682114, 48.78672176442784]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bcdd0017000f05ccf4a86da0eaff449bf0b20717", "fields": {"departement": "94", "stop_lat": 48.78701829862947, "code_postal": "94076", "stop_lon": 2.3523119296748187, "coord": [48.78701829862947, 2.3523119296748187], "stop_id": 5688810, "stop_desc": "60 AVENUE DE LA REPUBLIQUE - 94076", "stop_name": "REPUBLIQUE-GAITE"}, "geometry": {"type": "Point", "coordinates": [2.3523119296748187, 48.78701829862947]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "af8c58f4c4795e3fa3b4cc3b9e9af748032caa92", "fields": {"departement": "94", "stop_lat": 48.78834768470263, "code_postal": "94076", "stop_lon": 2.357834808835799, "coord": [48.78834768470263, 2.357834808835799], "stop_id": 5688814, "stop_desc": "54 AVENUE DE LA REPUBLIQUE - 94076", "stop_name": "HOPITAL PAUL GUIRAUD"}, "geometry": {"type": "Point", "coordinates": [2.357834808835799, 48.78834768470263]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "06bdc10d7f67effe095cca5e9285c11df02815b0", "fields": {"departement": "94", "stop_lat": 48.790570508596694, "code_postal": "94081", "stop_lon": 2.3807699840062972, "coord": [48.790570508596694, 2.3807699840062972], "stop_id": 5688821, "stop_desc": "77 AVENUE DU MOULIN DE SAQUET - 94081", "stop_name": "CAMELINAT"}, "geometry": {"type": "Point", "coordinates": [2.3807699840062972, 48.790570508596694]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f87fc95b1c9c287a0517e6bc0558da91ec2cc31b", "fields": {"departement": "94", "stop_lat": 48.79256240229833, "code_postal": "94081", "stop_lon": 2.389287323588852, "coord": [48.79256240229833, 2.389287323588852], "stop_id": 5688825, "stop_desc": "FACE 42 AVENUE HENRI BARBUSSE - 94081", "stop_name": "HENRI DE VILMORIN"}, "geometry": {"type": "Point", "coordinates": [2.389287323588852, 48.79256240229833]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "16168bfbac0e486a989dc3d47f644ce8b777b758", "fields": {"departement": "94", "stop_lat": 48.79275872619192, "code_postal": "94081", "stop_lon": 2.392416292973718, "coord": [48.79275872619192, 2.392416292973718], "stop_id": 5688827, "stop_desc": "AVENUE HENRI BARBUSSE - 94081", "stop_name": "EXPLORADOME"}, "geometry": {"type": "Point", "coordinates": [2.392416292973718, 48.79275872619192]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d5f882344fbd32fdf0e05c43c84f9fe71bfa4359", "fields": {"departement": "94", "stop_lat": 48.79559880817505, "code_postal": "94081", "stop_lon": 2.409383628685089, "coord": [48.79559880817505, 2.409383628685089], "stop_id": 5688830, "stop_desc": "AVENUE DU PRESIDENT SALVADOR ALLENDE - 94081", "stop_name": "CHARLES HELLER"}, "geometry": {"type": "Point", "coordinates": [2.409383628685089, 48.79559880817505]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f2389f1e576cbc5b6e4a40409d476f7773302165", "fields": {"departement": "94", "stop_lat": 48.800178590053804, "code_postal": "94046", "stop_lon": 2.42835578966634, "coord": [48.800178590053804, 2.42835578966634], "stop_id": 5688839, "stop_desc": "AVENUE DE LA REPUBLIQUE - 94046", "stop_name": "MAISONS-ALFORT - ALFORTVILLE RER"}, "geometry": {"type": "Point", "coordinates": [2.42835578966634, 48.800178590053804]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b52f07648c9fa6e23fd9754eb65adb0ac17b8432", "fields": {"departement": "94", "stop_lat": 48.79489548681688, "code_postal": "94028", "stop_lon": 2.447514454495448, "coord": [48.79489548681688, 2.447514454495448], "stop_id": 5688848, "stop_desc": "70 AVENUE DU GENERAL DE GAULLE - 94028", "stop_name": "SAINT-SIMON"}, "geometry": {"type": "Point", "coordinates": [2.447514454495448, 48.79489548681688]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "198a32bf104600bea3fcd66d57bce2de5dab8dac", "fields": {"departement": "94", "stop_lat": 48.80259233185019, "code_postal": "94046", "stop_lon": 2.4334214355511814, "coord": [48.80259233185019, 2.4334214355511814], "stop_id": 5688853, "stop_desc": "FACE 34 AVENUE DE LA REPUBLIQUE - 94046", "stop_name": "REPUBLIQUE - BLUM"}, "geometry": {"type": "Point", "coordinates": [2.4334214355511814, 48.80259233185019]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "122c4e56ae00b2888c8446a255b7e21245840ce3", "fields": {"departement": "94", "stop_lat": 48.78867613628673, "code_postal": "94076", "stop_lon": 2.3746609690403804, "coord": [48.78867613628673, 2.3746609690403804], "stop_id": 5688855, "stop_desc": "77 AVENUE LOUIS ARAGON - 94076", "stop_name": "COLONEL FABIEN"}, "geometry": {"type": "Point", "coordinates": [2.3746609690403804, 48.78867613628673]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "abeb71ae9a026ba3e3546ee8eef88fa5faf0fea7", "fields": {"departement": "77", "stop_lat": 48.87818085149016, "code_postal": "77108", "stop_lon": 2.5905990707298217, "coord": [48.87818085149016, 2.5905990707298217], "stop_id": 5688857, "stop_desc": "RUE LOUIS ETERLET - 77108", "stop_name": "MAIRIE DE CHELLES"}, "geometry": {"type": "Point", "coordinates": [2.5905990707298217, 48.87818085149016]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "23c311383a8f7109f64175ecd00f049de4637e79", "fields": {"departement": "75", "stop_lat": 48.88774231401873, "code_postal": "75118", "stop_lon": 2.3497109337106092, "coord": [48.88774231401873, 2.3497109337106092], "stop_id": 5688900, "stop_desc": "54-56 BOULEVARD BARBES - 75118", "stop_name": "CHATEAU ROUGE"}, "geometry": {"type": "Point", "coordinates": [2.3497109337106092, 48.88774231401873]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7331e59001eb40f9771d0cfa99b13c2dd57d7c95", "fields": {"departement": "75", "stop_lat": 48.88087584272046, "code_postal": "75110", "stop_lon": 2.351726002486145, "coord": [48.88087584272046, 2.351726002486145], "stop_id": 5688903, "stop_desc": "129 BOULEVARD DE MAGENTA - 75110", "stop_name": "MAGENTA - MAUBEUGE - GARE DU NORD"}, "geometry": {"type": "Point", "coordinates": [2.351726002486145, 48.88087584272046]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "800d163f3c647a8df1d7170ea75795ff51968c2d", "fields": {"departement": "75", "stop_lat": 48.87617468079017, "code_postal": "75110", "stop_lon": 2.3573655408708234, "coord": [48.87617468079017, 2.3573655408708234], "stop_id": 5688907, "stop_desc": "15-17 RUE DU 8 MAI 1945 - 75110", "stop_name": "GARE DE L'EST"}, "geometry": {"type": "Point", "coordinates": [2.3573655408708234, 48.87617468079017]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c149c2b2343b2dcc647897b09b21cb35d201b199", "fields": {"departement": "75", "stop_lat": 48.874062503585236, "code_postal": "75110", "stop_lon": 2.3583048250119405, "coord": [48.874062503585236, 2.3583048250119405], "stop_id": 5688909, "stop_desc": "119 RUE DU FAUBOURG SAINT-MARTIN - 75110", "stop_name": "MAGENTA - SAINT-MARTIN"}, "geometry": {"type": "Point", "coordinates": [2.3583048250119405, 48.874062503585236]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "70e294abbd544e2fb4f5f174595f5de3aef84373", "fields": {"departement": "75", "stop_lat": 48.866358871199495, "code_postal": "75111", "stop_lon": 2.3654944643622047, "coord": [48.866358871199495, 2.3654944643622047], "stop_id": 5688915, "stop_desc": "2 BOULEVARD VOLTAIRE - 75111", "stop_name": "REPUBLIQUE - VOLTAIRE"}, "geometry": {"type": "Point", "coordinates": [2.3654944643622047, 48.866358871199495]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "edf5836b4aea17b2491dcefb4927e1ddbc7c5b80", "fields": {"departement": "75", "stop_lat": 48.86643068559869, "code_postal": "75111", "stop_lon": 2.36584869324774, "coord": [48.86643068559869, 2.36584869324774], "stop_id": 5688916, "stop_desc": "5 BOULEVARD VOLTAIRE - 75111", "stop_name": "REPUBLIQUE - VOLTAIRE"}, "geometry": {"type": "Point", "coordinates": [2.36584869324774, 48.86643068559869]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d2666ef019d01cf0d9b2e0c16d760fa86efbcec4", "fields": {"departement": "75", "stop_lat": 48.86496524748345, "code_postal": "75111", "stop_lon": 2.367850363046041, "coord": [48.86496524748345, 2.367850363046041], "stop_id": 5688917, "stop_desc": "22 BOULEVARD VOLTAIRE - 75111", "stop_name": "JEAN-PIERRE TIMBAUD"}, "geometry": {"type": "Point", "coordinates": [2.367850363046041, 48.86496524748345]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e8023f1d6e2961dcde12f647d73fca7dcfd59faf", "fields": {"departement": "75", "stop_lat": 48.86129651039134, "code_postal": "75111", "stop_lon": 2.374468167434884, "coord": [48.86129651039134, 2.374468167434884], "stop_id": 5688922, "stop_desc": "71 BOULEVARD VOLTAIRE - 75111", "stop_name": "SAINT-AMBROISE"}, "geometry": {"type": "Point", "coordinates": [2.374468167434884, 48.86129651039134]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "95aea87522d572ad11d84fdc78509179c6aa4834", "fields": {"departement": "75", "stop_lat": 48.85421930126718, "code_postal": "75111", "stop_lon": 2.3858625920621397, "coord": [48.85421930126718, 2.3858625920621397], "stop_id": 5688929, "stop_desc": "FACE 171 BOULEVARD VOLTAIRE - 75111", "stop_name": "CHARONNE"}, "geometry": {"type": "Point", "coordinates": [2.3858625920621397, 48.85421930126718]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cf49c197294d4b1fdcdda7de4dad8e37a30bb1f9", "fields": {"departement": "75", "stop_lat": 48.848004898658445, "code_postal": "75112", "stop_lon": 2.3949534903848346, "coord": [48.848004898658445, 2.3949534903848346], "stop_id": 5688935, "stop_desc": "4 PLACE DE LA NATION - 75112", "stop_name": "NATION"}, "geometry": {"type": "Point", "coordinates": [2.3949534903848346, 48.848004898658445]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c65bfd191b9bbbba8d9e6c302274b66fbfa142b6", "fields": {"departement": "75", "stop_lat": 48.84804889034139, "code_postal": "75112", "stop_lon": 2.396873657460073, "coord": [48.84804889034139, 2.396873657460073], "stop_id": 5688936, "stop_desc": "30 PLACE DE LA NATION - 75112", "stop_name": "NATION - PLACE DES ANTILLES"}, "geometry": {"type": "Point", "coordinates": [2.396873657460073, 48.84804889034139]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "db163f11db36ddd1322de6cae112a69b7e32c4d6", "fields": {"departement": "75", "stop_lat": 48.844801183409494, "code_postal": "75112", "stop_lon": 2.4029839611504027, "coord": [48.844801183409494, 2.4029839611504027], "stop_id": 5688937, "stop_desc": "56 AVENUE DE SAINT-MANDE - 75112", "stop_name": "PICPUS"}, "geometry": {"type": "Point", "coordinates": [2.4029839611504027, 48.844801183409494]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "397eeb820af9838badd65895fc8d905dd1f8fcb4", "fields": {"departement": "75", "stop_lat": 48.84473606545388, "code_postal": "75112", "stop_lon": 2.406864721018619, "coord": [48.84473606545388, 2.406864721018619], "stop_id": 5688940, "stop_desc": "67 AVENUE DE SAINT-MANDE - 75112", "stop_name": "DOCTEUR NETTER"}, "geometry": {"type": "Point", "coordinates": [2.406864721018619, 48.84473606545388]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0aedb819e81cdb3043f714dd9960cecac81c26cb", "fields": {"departement": "94", "stop_lat": 48.84379373728525, "code_postal": "94067", "stop_lon": 2.4188734254091577, "coord": [48.84379373728525, 2.4188734254091577], "stop_id": 5688943, "stop_desc": "FACE 1 AVENUE GAMBETTA - 94067", "stop_name": "MAIRIE DE SAINT-MANDE"}, "geometry": {"type": "Point", "coordinates": [2.4188734254091577, 48.84379373728525]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "df276802e76d34fd30130a105bedb3d02189ca5f", "fields": {"departement": "94", "stop_lat": 48.8478829232424, "code_postal": "94080", "stop_lon": 2.4312448404298737, "coord": [48.8478829232424, 2.4312448404298737], "stop_id": 5688949, "stop_desc": "37 AVENUE DE LA REPUBLIQUE - 94080", "stop_name": "VINCENNES RER - REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.4312448404298737, 48.8478829232424]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "48050192b66c98a32d2bd9a387c94af8e97a46d9", "fields": {"departement": "94", "stop_lat": 48.84546314968602, "code_postal": "94067", "stop_lon": 2.4221169418809496, "coord": [48.84546314968602, 2.4221169418809496], "stop_id": 5688957, "stop_desc": "19-21 AVENUE GAMBETTA - 94067", "stop_name": "AUBERT"}, "geometry": {"type": "Point", "coordinates": [2.4221169418809496, 48.84546314968602]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b5133fa7b01fb6d66b225551e1c6da67076005e0", "fields": {"departement": "75", "stop_lat": 48.83190571882839, "code_postal": "75113", "stop_lon": 2.379402446155373, "coord": [48.83190571882839, 2.379402446155373], "stop_id": 5709849, "stop_desc": "1-3 RUE NEUVE TOLBIAC - 75113", "stop_name": "PONT DE TOLBIAC"}, "geometry": {"type": "Point", "coordinates": [2.379402446155373, 48.83190571882839]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "55617f1dfd05d8e66031c3bb445ab2c1651251fc", "fields": {"departement": "75", "stop_lat": 48.829117881107805, "code_postal": "75113", "stop_lon": 2.383892435308912, "coord": [48.829117881107805, 2.383892435308912], "stop_id": 5709854, "stop_desc": "QUAI PANHARD ET LEVASSOR - 75113", "stop_name": "WATT"}, "geometry": {"type": "Point", "coordinates": [2.383892435308912, 48.829117881107805]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3649c27abc5abf820aec28c2710e2b1e57dc9a7b", "fields": {"departement": "94", "stop_lat": 48.81444772813397, "code_postal": "94041", "stop_lon": 2.4068921473134495, "coord": [48.81444772813397, 2.4068921473134495], "stop_id": 5709866, "stop_desc": "FACE 28 BOULEVARD DU COLONEL FABIEN - 94041", "stop_name": "PONT D'IVRY - RIVE GAUCHE"}, "geometry": {"type": "Point", "coordinates": [2.4068921473134495, 48.81444772813397]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0098350fece7eb355c2dc8214c213b4b11923d3a", "fields": {"departement": "94", "stop_lat": 48.81442488992834, "code_postal": "94002", "stop_lon": 2.414758141884331, "coord": [48.81442488992834, 2.414758141884331], "stop_id": 5709868, "stop_desc": "22 RUE CHARLES DE GAULLE - 94002", "stop_name": "GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.414758141884331, 48.81442488992834]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0d2c9a04d10667d2f38dff3d41d2ed9ea72ed0f4", "fields": {"departement": "94", "stop_lat": 48.81488981158628, "code_postal": "94046", "stop_lon": 2.4184197009305843, "coord": [48.81488981158628, 2.4184197009305843], "stop_id": 5709870, "stop_desc": "17 RUE EUGENE RENAULT - 94046", "stop_name": "MAISONS-ALFORT - ECOLE VETERINAIRE"}, "geometry": {"type": "Point", "coordinates": [2.4184197009305843, 48.81488981158628]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "82fc2643bb85f9e242b03960007a74fe30d6925f", "fields": {"departement": "94", "stop_lat": 48.81511443980852, "code_postal": "94046", "stop_lon": 2.4185153167345823, "coord": [48.81511443980852, 2.4185153167345823], "stop_id": 5709871, "stop_desc": "FACE 17 RUE EUGENE RENAULT - 94046", "stop_name": "MAISONS-ALFORT - ECOLE VETERINAIRE"}, "geometry": {"type": "Point", "coordinates": [2.4185153167345823, 48.81511443980852]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c6623a084c965b883171d5208b9be280009b8d8f", "fields": {"departement": "94", "stop_lat": 48.82184523642489, "code_postal": "94069", "stop_lon": 2.4199686200390875, "coord": [48.82184523642489, 2.4199686200390875], "stop_id": 5709873, "stop_desc": "50 AVENUE DU MARECHAL DE LATTRE DE TASSIGNY - 94069", "stop_name": "EDMOND NOCARD"}, "geometry": {"type": "Point", "coordinates": [2.4199686200390875, 48.82184523642489]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "516f95cec554eb3b2399456b126b240388053fb5", "fields": {"departement": "75", "stop_lat": 48.828927791160034, "code_postal": "75112", "stop_lon": 2.419571524010816, "coord": [48.828927791160034, 2.419571524010816], "stop_id": 5709876, "stop_desc": "AVENUE DE SAINT-MAURICE - 75112", "stop_name": "CASERNE DES GARDES"}, "geometry": {"type": "Point", "coordinates": [2.419571524010816, 48.828927791160034]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5e23dfe7845463c06bf39e5f8443495156ad5a6d", "fields": {"departement": "75", "stop_lat": 48.834310811082794, "code_postal": "75112", "stop_lon": 2.4203833052548616, "coord": [48.834310811082794, 2.4203833052548616], "stop_id": 5709877, "stop_desc": "AVENUE DE SAINT-MAURICE - 75112", "stop_name": "DEMI LUNE - PARC ZOOLOGIQUE"}, "geometry": {"type": "Point", "coordinates": [2.4203833052548616, 48.834310811082794]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d3e34668c56903e85459af0d0143786d84b67dfe", "fields": {"departement": "94", "stop_lat": 48.841044514864755, "code_postal": "94067", "stop_lon": 2.41745303371327, "coord": [48.841044514864755, 2.41745303371327], "stop_id": 5709881, "stop_desc": "70 AVENUE DU GENERAL DE GAULLE - 94067", "stop_name": "EGLISE DE SAINT-MANDE"}, "geometry": {"type": "Point", "coordinates": [2.41745303371327, 48.841044514864755]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7e204e0bdb2adf8caeee8f88fd96bc860b68573f", "fields": {"departement": "94", "stop_lat": 48.84508719554478, "code_postal": "94080", "stop_lon": 2.4320159489963507, "coord": [48.84508719554478, 2.4320159489963507], "stop_id": 5709889, "stop_desc": "21 AVENUE DE PARIS - 94080", "stop_name": "VIGNERONS"}, "geometry": {"type": "Point", "coordinates": [2.4320159489963507, 48.84508719554478]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "30c44f4e7ebfa9baa30cd9ee8dc232a482ad8429", "fields": {"departement": "75", "stop_lat": 48.84431419874241, "code_postal": "75112", "stop_lon": 2.442785493897529, "coord": [48.84431419874241, 2.442785493897529], "stop_id": 5709894, "stop_desc": "PISTE GARE ROUTIERE - 75112", "stop_name": "CHATEAU DE VINCENNES"}, "geometry": {"type": "Point", "coordinates": [2.442785493897529, 48.84431419874241]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9a11a8f0112ff8ecdcb117403d679e08685677ab", "fields": {"departement": "94", "stop_lat": 48.835129286689146, "code_postal": "94067", "stop_lon": 2.4195132903637364, "coord": [48.835129286689146, 2.4195132903637364], "stop_id": 5709896, "stop_desc": "132 AVENUE DU GENERAL DE GAULLE - 94067", "stop_name": "DEMI LUNE - PARC ZOOLOGIQUE"}, "geometry": {"type": "Point", "coordinates": [2.4195132903637364, 48.835129286689146]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0aa9c6cf94514d592cfa95bf3eed76d5174fda69", "fields": {"departement": "94", "stop_lat": 48.81877659985563, "code_postal": "94041", "stop_lon": 2.396200354098123, "coord": [48.81877659985563, 2.396200354098123], "stop_id": 5709902, "stop_desc": "FACE 5 RUE WESTERMEYER - 94041", "stop_name": "VAILLANT-COUTURIER - WESTERMEYER"}, "geometry": {"type": "Point", "coordinates": [2.396200354098123, 48.81877659985563]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "be68c569c439a2880bed6eb60d32ef17d6304413", "fields": {"departement": "75", "stop_lat": 48.855415256092286, "code_postal": "75101", "stop_lon": 2.3458079091124455, "coord": [48.855415256092286, 2.3458079091124455], "stop_id": 5709977, "stop_desc": "FACE 1 BOULEVARD DU PALAIS - 75101", "stop_name": "CITE - PALAIS DE JUSTICE"}, "geometry": {"type": "Point", "coordinates": [2.3458079091124455, 48.855415256092286]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "77450adb3f284263f7cf29bc2ed9043928083203", "fields": {"departement": "75", "stop_lat": 48.85902811573952, "code_postal": "75101", "stop_lon": 2.3469390263467473, "coord": [48.85902811573952, 2.3469390263467473], "stop_id": 5709978, "stop_desc": "108 RUE DE RIVOLI - 75101", "stop_name": "CHATELET"}, "geometry": {"type": "Point", "coordinates": [2.3469390263467473, 48.85902811573952]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1e2b9873e2c547917d754b2fdf30028f02b3d515", "fields": {"departement": "75", "stop_lat": 48.86330642060076, "code_postal": "75101", "stop_lon": 2.341913358368381, "coord": [48.86330642060076, 2.341913358368381], "stop_id": 5709984, "stop_desc": "15 RUE DU LOUVRE - 75101", "stop_name": "COQUILLIERE - LES HALLES"}, "geometry": {"type": "Point", "coordinates": [2.341913358368381, 48.86330642060076]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "07abf7729f99fdfc876abf10515d37928f93a3b7", "fields": {"departement": "75", "stop_lat": 48.87066702165196, "code_postal": "75102", "stop_lon": 2.342935804602398, "coord": [48.87066702165196, 2.342935804602398], "stop_id": 5709988, "stop_desc": "170 RUE MONTMARTRE - 75102", "stop_name": "GRANDS BOULEVARDS"}, "geometry": {"type": "Point", "coordinates": [2.342935804602398, 48.87066702165196]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "373b3543ef71dd490e86aac4d951345992d49a39", "fields": {"departement": "75", "stop_lat": 48.8789351848287, "code_postal": "75109", "stop_lon": 2.3455392709105833, "coord": [48.8789351848287, 2.3455392709105833], "stop_id": 5709991, "stop_desc": "34-36 RUE ROCHECHOUART - 75109", "stop_name": "MAUBEUGE - ROCHECHOUART"}, "geometry": {"type": "Point", "coordinates": [2.3455392709105833, 48.8789351848287]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ceb0aee8f3a16d16118d66f144c6b979af0da7db", "fields": {"departement": "75", "stop_lat": 48.89293732996922, "code_postal": "75118", "stop_lon": 2.344628322964137, "coord": [48.89293732996922, 2.344628322964137], "stop_id": 5709998, "stop_desc": "FACE 79 RUE DU MONT CENIS - 75118", "stop_name": "MAIRIE DU 18E - JULES JOFFRIN"}, "geometry": {"type": "Point", "coordinates": [2.344628322964137, 48.89293732996922]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e8d983f5daa97e16c35d535a6608eab6e7ad0948", "fields": {"departement": "94", "stop_lat": 48.84093158731507, "code_postal": "94015", "stop_lon": 2.5255775804370817, "coord": [48.84093158731507, 2.5255775804370817], "stop_id": 4028813, "stop_desc": "BOULEVARD PASTEUR - 94015", "stop_name": "CIMETIERE - FUNERARIUM DE BRY"}, "geometry": {"type": "Point", "coordinates": [2.5255775804370817, 48.84093158731507]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cb25ab63575390729af689f55c54f458fa6fca68", "fields": {"departement": "94", "stop_lat": 48.84078285853387, "code_postal": "94015", "stop_lon": 2.5286678698461236, "coord": [48.84078285853387, 2.5286678698461236], "stop_id": 4028815, "stop_desc": "BOULEVARD PASTEUR - 94015", "stop_name": "CHEMIN DES MOINES"}, "geometry": {"type": "Point", "coordinates": [2.5286678698461236, 48.84078285853387]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c9d4cd6789ab7c13981464239cec8e70429a42a1", "fields": {"departement": "94", "stop_lat": 48.83719879573984, "code_postal": "94015", "stop_lon": 2.527429292986725, "coord": [48.83719879573984, 2.527429292986725], "stop_id": 4028816, "stop_desc": "92 BOULEVARD PASTEUR - 94015", "stop_name": "DOCTEUR ARMAND BRILLARD"}, "geometry": {"type": "Point", "coordinates": [2.527429292986725, 48.83719879573984]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "af7c36e7166b69a2f580c5224c473bedad302a15", "fields": {"departement": "94", "stop_lat": 48.8322665273916, "code_postal": "94015", "stop_lon": 2.5317948449824925, "coord": [48.8322665273916, 2.5317948449824925], "stop_id": 4028822, "stop_desc": "BOULEVARD PASTEUR - 94015", "stop_name": "GEORGES MELIES"}, "geometry": {"type": "Point", "coordinates": [2.5317948449824925, 48.8322665273916]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2310d7143fb2cb5b5560b122ef2a905f6fcb45ff", "fields": {"departement": "94", "stop_lat": 48.826068431366515, "code_postal": "94079", "stop_lon": 2.540524210599729, "coord": [48.826068431366515, 2.540524210599729], "stop_id": 4028829, "stop_desc": "FACE 37 RUE DU GENERAL GALLIENI - 94079", "stop_name": "MAIRIE DE VILLIERS-SUR-MARNE"}, "geometry": {"type": "Point", "coordinates": [2.540524210599729, 48.826068431366515]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "01fbd0c1f26272adc15d7d3828c6c7fca7e6f2ac", "fields": {"departement": "94", "stop_lat": 48.837931792305795, "code_postal": "94015", "stop_lon": 2.518459537824707, "coord": [48.837931792305795, 2.518459537824707], "stop_id": 4028834, "stop_desc": "17 BIS AVENUE DE RIGNY - 94015", "stop_name": "AVENUE DE RIGNY"}, "geometry": {"type": "Point", "coordinates": [2.518459537824707, 48.837931792305795]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dab6e37664af342f6c5f7056ef5e0d7e588e9600", "fields": {"departement": "75", "stop_lat": 48.84420733285396, "code_postal": "75112", "stop_lon": 2.4416686940517773, "coord": [48.84420733285396, 2.4416686940517773], "stop_id": 4028836, "stop_desc": "AVENUE DE NOGENT - 75112", "stop_name": "CHATEAU DE VINCENNES"}, "geometry": {"type": "Point", "coordinates": [2.4416686940517773, 48.84420733285396]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b137f77e372e32d7c62d75caf20d81998932ab2e", "fields": {"departement": "75", "stop_lat": 48.844359905437706, "code_postal": "75112", "stop_lon": 2.441914105326876, "coord": [48.844359905437706, 2.441914105326876], "stop_id": 4028837, "stop_desc": "AVENUE DE NOGENT - 75112", "stop_name": "CHATEAU DE VINCENNES"}, "geometry": {"type": "Point", "coordinates": [2.441914105326876, 48.844359905437706]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f5c66eaea3e36634f073041d069c250f108b4124", "fields": {"departement": "75", "stop_lat": 48.838778695962546, "code_postal": "75112", "stop_lon": 2.4606240718932018, "coord": [48.838778695962546, 2.4606240718932018], "stop_id": 4028840, "stop_desc": "AV DE NOGENT - 75112", "stop_name": "PORTE JAUNE"}, "geometry": {"type": "Point", "coordinates": [2.4606240718932018, 48.838778695962546]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b37f902039c6f3ae2a53bfb0051ef97b471a31e8", "fields": {"departement": "94", "stop_lat": 48.836408146911246, "code_postal": "94052", "stop_lon": 2.482592755001368, "coord": [48.836408146911246, 2.482592755001368], "stop_id": 4028849, "stop_desc": "1 AVENUE DE LATTRE DE TASSIGNY - 94052", "stop_name": "SOUS-PREFECTURE - JULES FERRY"}, "geometry": {"type": "Point", "coordinates": [2.482592755001368, 48.836408146911246]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2523b602c29b42cd2c6d4fce15c19bd286c821b7", "fields": {"departement": "94", "stop_lat": 48.84093592361724, "code_postal": "94058", "stop_lon": 2.4981004635094584, "coord": [48.84093592361724, 2.4981004635094584], "stop_id": 4028856, "stop_desc": "44 BIS-46 AVENUE LEDRU-ROLLIN - 94058", "stop_name": "LE PARC"}, "geometry": {"type": "Point", "coordinates": [2.4981004635094584, 48.84093592361724]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ddaf5c11df7ebff5f79710794d89412b07f53fe2", "fields": {"departement": "94", "stop_lat": 48.84109791971362, "code_postal": "94058", "stop_lon": 2.4979375730411966, "coord": [48.84109791971362, 2.4979375730411966], "stop_id": 4028857, "stop_desc": "FACE 52 AVENUE LEDRU-ROLLIN - 94058", "stop_name": "LE PARC"}, "geometry": {"type": "Point", "coordinates": [2.4979375730411966, 48.84109791971362]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1fd28a3425ab7af0bb5e75bcd253a2dce018fa40", "fields": {"departement": "94", "stop_lat": 48.838646963428566, "code_postal": "94058", "stop_lon": 2.5089176247550213, "coord": [48.838646963428566, 2.5089176247550213], "stop_id": 4028861, "stop_desc": "63 AVENUE DU GENERAL DE GAULLE - 94058", "stop_name": "MONTAIGNE"}, "geometry": {"type": "Point", "coordinates": [2.5089176247550213, 48.838646963428566]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4f65a126c7a59b3c0a204ced8e2bcbe9d942dcce", "fields": {"departement": "94", "stop_lat": 48.8324244878627, "code_postal": "94058", "stop_lon": 2.5110207899145554, "coord": [48.8324244878627, 2.5110207899145554], "stop_id": 4028866, "stop_desc": "94 BOULEVARD FOCH - 94058", "stop_name": "FOCH"}, "geometry": {"type": "Point", "coordinates": [2.5110207899145554, 48.8324244878627]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "26e35ecc5a99ed5d4230879b7fa7e8674ff8b94a", "fields": {"departement": "94", "stop_lat": 48.833711015988115, "code_postal": "94058", "stop_lon": 2.5162120806998196, "coord": [48.833711015988115, 2.5162120806998196], "stop_id": 4028868, "stop_desc": "FACE127BIS BOULEVARD FOCH - 94058", "stop_name": "MARECHAL JOFFRE - PONT DE BRY"}, "geometry": {"type": "Point", "coordinates": [2.5162120806998196, 48.833711015988115]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "497a248ec1ad71269632ad21dfd0093a83051a1d", "fields": {"departement": "94", "stop_lat": 48.83684957358511, "code_postal": "94015", "stop_lon": 2.520879219789748, "coord": [48.83684957358511, 2.520879219789748], "stop_id": 4028872, "stop_desc": "32 GRANDE RUE CHARLES DE GAULLE - 94015", "stop_name": "RUE DU PRESSOIR"}, "geometry": {"type": "Point", "coordinates": [2.520879219789748, 48.83684957358511]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "70ecf1f6f22bb9173c4c92bb9f3a380c88d20eee", "fields": {"departement": "94", "stop_lat": 48.83971417428451, "code_postal": "94015", "stop_lon": 2.522455164631506, "coord": [48.83971417428451, 2.522455164631506], "stop_id": 4028873, "stop_desc": "4 BIS BOULEVARD DU GENERAL GALLIENI - 94015", "stop_name": "CHATEAU"}, "geometry": {"type": "Point", "coordinates": [2.522455164631506, 48.83971417428451]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2a486a38c1755551fcd4616973245c5be130aa52", "fields": {"departement": "94", "stop_lat": 48.844148576874794, "code_postal": "94015", "stop_lon": 2.5259296805163265, "coord": [48.844148576874794, 2.5259296805163265], "stop_id": 4028877, "stop_desc": "AVENUE ETIENNE DE SILHOUETTE - 94015", "stop_name": "BRY-SUR-MARNE RER"}, "geometry": {"type": "Point", "coordinates": [2.5259296805163265, 48.844148576874794]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bf224562c9ba69516e588bedda1f89ebd0dc0806", "fields": {"departement": "94", "stop_lat": 48.84408523258336, "code_postal": "94015", "stop_lon": 2.5262017872214524, "coord": [48.84408523258336, 2.5262017872214524], "stop_id": 4028878, "stop_desc": "AVENUE ETIENNE DE SILHOUETTE - 94015", "stop_name": "BRY-SUR-MARNE RER"}, "geometry": {"type": "Point", "coordinates": [2.5262017872214524, 48.84408523258336]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "15e21e4311f4b2afd1ab9d7db7da4fbaba72bec2", "fields": {"departement": "94", "stop_lat": 48.83719879573984, "code_postal": "94015", "stop_lon": 2.527429292986725, "coord": [48.83719879573984, 2.527429292986725], "stop_id": 4028883, "stop_desc": "92 BOULEVARD PASTEUR - 94015", "stop_name": "DOCTEUR ARMAND BRILLARD"}, "geometry": {"type": "Point", "coordinates": [2.527429292986725, 48.83719879573984]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "94ddc95e3d7386e4f3cd9f9d919b2e4802b2aa92", "fields": {"departement": "94", "stop_lat": 48.83121921645381, "code_postal": "94079", "stop_lon": 2.534676976540491, "coord": [48.83121921645381, 2.534676976540491], "stop_id": 4028891, "stop_desc": "33 ROUTE DE BRY - 94079", "stop_name": "ROUTE DE BRY - ARISTIDE BRIAND"}, "geometry": {"type": "Point", "coordinates": [2.534676976540491, 48.83121921645381]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "096c9217a42c02f19c22fe973d6c9d3da6f760ae", "fields": {"departement": "94", "stop_lat": 48.83148010474214, "code_postal": "94079", "stop_lon": 2.534528220074093, "coord": [48.83148010474214, 2.534528220074093], "stop_id": 4028892, "stop_desc": "FACE 35 ROUTE ROUTE DE BRY - 94079", "stop_name": "ROUTE DE BRY - ARISTIDE BRIAND"}, "geometry": {"type": "Point", "coordinates": [2.534528220074093, 48.83148010474214]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4072b142b0d728880e589c836f172ce105a0110f", "fields": {"departement": "94", "stop_lat": 48.82386008176018, "code_postal": "94079", "stop_lon": 2.5442179040062154, "coord": [48.82386008176018, 2.5442179040062154], "stop_id": 4028903, "stop_desc": "1 R DU CHEMIN DE FER - 94079", "stop_name": "VILLIERS-SUR-MARNE - LE PLESSIS-TREVISE RER"}, "geometry": {"type": "Point", "coordinates": [2.5442179040062154, 48.82386008176018]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "75c148039b5569e0234eced8ee4eb579c0be4f39", "fields": {"departement": "94", "stop_lat": 48.84408523258336, "code_postal": "94015", "stop_lon": 2.5262017872214524, "coord": [48.84408523258336, 2.5262017872214524], "stop_id": 4028914, "stop_desc": "AVENUE ETIENNE DE SILHOUETTE - 94015", "stop_name": "BRY-SUR-MARNE RER"}, "geometry": {"type": "Point", "coordinates": [2.5262017872214524, 48.84408523258336]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "484955657aa65e778f4693c538f3307265f41cd2", "fields": {"departement": "94", "stop_lat": 48.84045641817912, "code_postal": "94015", "stop_lon": 2.519040223418052, "coord": [48.84045641817912, 2.519040223418052], "stop_id": 4028917, "stop_desc": "FACE 48 AVENUE DE RIGNY - 94015", "stop_name": "RUE DE LA MARNE"}, "geometry": {"type": "Point", "coordinates": [2.519040223418052, 48.84045641817912]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "640b58b9e8e6d33b7b789375a65a15283ca64a34", "fields": {"departement": "94", "stop_lat": 48.83477537240173, "code_postal": "94015", "stop_lon": 2.5196193536418727, "coord": [48.83477537240173, 2.5196193536418727], "stop_id": 4028919, "stop_desc": "1 AV DE RIGNY - 94015", "stop_name": "MAIRIE DE BRY-SUR-MARNE"}, "geometry": {"type": "Point", "coordinates": [2.5196193536418727, 48.83477537240173]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "011eff1dff880d4cddf72489161bc90a4bfe39c3", "fields": {"departement": "94", "stop_lat": 48.83427753993413, "code_postal": "94058", "stop_lon": 2.516009820486316, "coord": [48.83427753993413, 2.516009820486316], "stop_id": 4028920, "stop_desc": "219 AVENUE PIERRE BROSSOLETTE - 94058", "stop_name": "MARECHAL JOFFRE - PONT DE BRY"}, "geometry": {"type": "Point", "coordinates": [2.516009820486316, 48.83427753993413]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "129a32301f29c3fa381e097b5056fa37753cc6f2", "fields": {"departement": "94", "stop_lat": 48.838691488575265, "code_postal": "94058", "stop_lon": 2.5092036961467725, "coord": [48.838691488575265, 2.5092036961467725], "stop_id": 4028922, "stop_desc": "FACE 63 AVENUE DU GENERAL DE GAULLE - 94058", "stop_name": "MONTAIGNE"}, "geometry": {"type": "Point", "coordinates": [2.5092036961467725, 48.838691488575265]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7a84ec3ac786f467db15e5d97091d8cac2213600", "fields": {"departement": "92", "stop_lat": 48.81846633711334, "code_postal": "92049", "stop_lon": 2.319643218617825, "coord": [48.81846633711334, 2.319643218617825], "stop_id": 4028974, "stop_desc": "Rue Louis Rolland - 92049", "stop_name": "Mairie de Montrouge"}, "geometry": {"type": "Point", "coordinates": [2.319643218617825, 48.81846633711334]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6eda90a33df172ee221166799d663a9ea0268ac1", "fields": {"departement": "78", "stop_lat": 48.89703299526433, "code_postal": "78551", "stop_lon": 2.095390681983472, "coord": [48.89703299526433, 2.095390681983472], "stop_id": 4035021, "stop_desc": "FACE 2 PLACE ANDRE MALRAUX - 78551", "stop_name": "SAINT-GERMAIN-EN-LAYE RER"}, "geometry": {"type": "Point", "coordinates": [2.095390681983472, 48.89703299526433]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fc8052d36bfe8ff8670d49c1f2b1560fa45363ae", "fields": {"departement": "92", "stop_lat": 48.894818652089704, "code_postal": "92050", "stop_lon": 2.193156713048079, "coord": [48.894818652089704, 2.193156713048079], "stop_id": 4035031, "stop_desc": "AVENUE HENRI MARTIN - 92050", "stop_name": "JULES QUENTIN-NANTERRE VILLE-RER"}, "geometry": {"type": "Point", "coordinates": [2.193156713048079, 48.894818652089704]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e77015193998e14776b2ed5000134ea6455dc3c6", "fields": {"departement": "75", "stop_lat": 48.87819549713169, "code_postal": "75117", "stop_lon": 2.2837598887649864, "coord": [48.87819549713169, 2.2837598887649864], "stop_id": 4035040, "stop_desc": "PLACE DE LA PORTE MAILLOT - 75117", "stop_name": "PORTE MAILLOT - PALAIS DES CONGRES"}, "geometry": {"type": "Point", "coordinates": [2.2837598887649864, 48.87819549713169]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a7867850329a44f4b4093781cc04a206f0635753", "fields": {"departement": "93", "stop_lat": 48.904385606533154, "code_postal": "93047", "stop_lon": 2.5648522841424146, "coord": [48.904385606533154, 2.5648522841424146], "stop_id": 4035480, "stop_desc": "25 BOULEVARD HARDY - 93047", "stop_name": "TUILERIE"}, "geometry": {"type": "Point", "coordinates": [2.5648522841424146, 48.904385606533154]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aba4322717bbb4dd3f70a85f38e9945b5ad1e986", "fields": {"departement": "93", "stop_lat": 48.912230461780204, "code_postal": "93014", "stop_lon": 2.550747482095315, "coord": [48.912230461780204, 2.550747482095315], "stop_id": 4035487, "stop_desc": "FACE 2 ALLEE DE COUBRON - 93014", "stop_name": "LES MARRONNIERS"}, "geometry": {"type": "Point", "coordinates": [2.550747482095315, 48.912230461780204]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8a55cb8f558f650402104779707dfd8a934cedbe", "fields": {"departement": "93", "stop_lat": 48.90925666657949, "code_postal": "93014", "stop_lon": 2.5502307700160243, "coord": [48.90925666657949, 2.5502307700160243], "stop_id": 4035490, "stop_desc": "ALLEE DE GAGNY - 93014", "stop_name": "LA LORETTE"}, "geometry": {"type": "Point", "coordinates": [2.5502307700160243, 48.90925666657949]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "585703ddbae18f143bb884494f9c966b69fcb53a", "fields": {"departement": "93", "stop_lat": 48.90532578506397, "code_postal": "93014", "stop_lon": 2.541980306142771, "coord": [48.90532578506397, 2.541980306142771], "stop_id": 4035493, "stop_desc": "BOULEVARD GAGARINE - 93014", "stop_name": "AVENUE LADRETTE"}, "geometry": {"type": "Point", "coordinates": [2.541980306142771, 48.90532578506397]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "75475062d47b723af9678c773a1359620512e305", "fields": {"departement": "93", "stop_lat": 48.90796351706181, "code_postal": "93014", "stop_lon": 2.5339605105943814, "coord": [48.90796351706181, 2.5339605105943814], "stop_id": 4035495, "stop_desc": "BOULEVARD GAGARINE - 93014", "stop_name": "COLLEGE LOUISE MICHEL"}, "geometry": {"type": "Point", "coordinates": [2.5339605105943814, 48.90796351706181]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cea4bfe139a3adaa2914c6eabeb5fe0a4ee6cfe6", "fields": {"departement": "93", "stop_lat": 48.908946509942304, "code_postal": "93046", "stop_lon": 2.5263019893975307, "coord": [48.908946509942304, 2.5263019893975307], "stop_id": 4035500, "stop_desc": "25-27 BOULEVARD MARX DORMOY - 93046", "stop_name": "SALENGRO"}, "geometry": {"type": "Point", "coordinates": [2.5263019893975307, 48.908946509942304]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "de35fb347dc39ed3ec972dd2deca0e58ea6a8233", "fields": {"departement": "93", "stop_lat": 48.90695328855752, "code_postal": "93010", "stop_lon": 2.487003347246266, "coord": [48.90695328855752, 2.487003347246266], "stop_id": 4035520, "stop_desc": "177 AVENUE GALLIENI - 93010", "stop_name": "PASTEUR - HOPITAL JEAN VERDIER"}, "geometry": {"type": "Point", "coordinates": [2.487003347246266, 48.90695328855752]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "10ad966e00da9a3b94b88ae8296e270985bee776", "fields": {"departement": "93", "stop_lat": 48.90752818929823, "code_postal": "93008", "stop_lon": 2.45522530113179, "coord": [48.90752818929823, 2.45522530113179], "stop_id": 4035531, "stop_desc": "AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "LAMARTINE"}, "geometry": {"type": "Point", "coordinates": [2.45522530113179, 48.90752818929823]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c04262b072bbd44ee7bb805ce2cfb863325264d6", "fields": {"departement": "93", "stop_lat": 48.90687831499502, "code_postal": "93008", "stop_lon": 2.448802522093501, "coord": [48.90687831499502, 2.448802522093501], "stop_id": 4035535, "stop_desc": "PISTE GARE ROUTIERE - 93008", "stop_name": "BOBIGNY - PABLO PICASSO"}, "geometry": {"type": "Point", "coordinates": [2.448802522093501, 48.90687831499502]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e6adb0218de37f1043ea6fd09725dfa303220866", "fields": {"departement": "93", "stop_lat": 48.903970163813376, "code_postal": "93008", "stop_lon": 2.444815552217041, "coord": [48.903970163813376, 2.444815552217041], "stop_id": 4035537, "stop_desc": "8 AVENUE SALVADOR ALLENDE - 93008", "stop_name": "KARL MARX"}, "geometry": {"type": "Point", "coordinates": [2.444815552217041, 48.903970163813376]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8c68a93ec8b0884d9f290fb7e6b78361b9a423a8", "fields": {"departement": "93", "stop_lat": 48.90105182503004, "code_postal": "93008", "stop_lon": 2.442042239663171, "coord": [48.90105182503004, 2.442042239663171], "stop_id": 4035538, "stop_desc": "AVENUE DU PRESIDENT SALVADOR ALLENDE - 93008", "stop_name": "JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.442042239663171, 48.90105182503004]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4aaade740ce9adbac3a28282a2764e5849709f80", "fields": {"departement": "93", "stop_lat": 48.89842841256089, "code_postal": "93008", "stop_lon": 2.4410963884166126, "coord": [48.89842841256089, 2.4410963884166126], "stop_id": 4035540, "stop_desc": "AVENUE DE METZ - 93008", "stop_name": "LA FOLIE"}, "geometry": {"type": "Point", "coordinates": [2.4410963884166126, 48.89842841256089]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dd3b73f53205f6a09339a9783e84355475d24468", "fields": {"departement": "75", "stop_lat": 48.88695086167976, "code_postal": "75119", "stop_lon": 2.386601947808809, "coord": [48.88695086167976, 2.386601947808809], "stop_id": 4035552, "stop_desc": "146 AVENUE JEAN JAURES - 75119", "stop_name": "OURCQ"}, "geometry": {"type": "Point", "coordinates": [2.386601947808809, 48.88695086167976]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7547ecad7c17305e35f9f75bdf147b004bb2efeb", "fields": {"departement": "75", "stop_lat": 48.88292996267457, "code_postal": "75119", "stop_lon": 2.3712132136426027, "coord": [48.88292996267457, 2.3712132136426027], "stop_id": 4035556, "stop_desc": "6-8 AVENUE JEAN JAURES - 75119", "stop_name": "JAURES"}, "geometry": {"type": "Point", "coordinates": [2.3712132136426027, 48.88292996267457]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6cae7ae1f5b1dc0dfc554d2356c429fead063c02", "fields": {"departement": "75", "stop_lat": 48.87628189386968, "code_postal": "75110", "stop_lon": 2.3608264014869884, "coord": [48.87628189386968, 2.3608264014869884], "stop_id": 4035563, "stop_desc": "156 RUE DU FAUBOURG SAINT-MARTIN - 75110", "stop_name": "VERDUN"}, "geometry": {"type": "Point", "coordinates": [2.3608264014869884, 48.87628189386968]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ca9ff0a347afa53fd43dfdc3c097baa8e69b6136", "fields": {"departement": "93", "stop_lat": 48.89117591319706, "code_postal": "93055", "stop_lon": 2.403001886814897, "coord": [48.89117591319706, 2.403001886814897], "stop_id": 4035564, "stop_desc": "64 AVENUE JEAN LOLIVE - 93055", "stop_name": "HOCHE - METRO"}, "geometry": {"type": "Point", "coordinates": [2.403001886814897, 48.89117591319706]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "313957e8c8b79041cb5c24e0e77e4cb628fe264f", "fields": {"departement": "93", "stop_lat": 48.89660237322337, "code_postal": "93063", "stop_lon": 2.4323009763184347, "coord": [48.89660237322337, 2.4323009763184347], "stop_id": 4035567, "stop_desc": "64 AVENUE DE METZ - 93063", "stop_name": "AVENUE DE METZ"}, "geometry": {"type": "Point", "coordinates": [2.4323009763184347, 48.89660237322337]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b897d61225eff92003e87a7776b9eb076ae14215", "fields": {"departement": "93", "stop_lat": 48.90387945312767, "code_postal": "93008", "stop_lon": 2.44574237671253, "coord": [48.90387945312767, 2.44574237671253], "stop_id": 4035568, "stop_desc": "21 AVENUE DU PRESIDENT SALVADOR ALLENDE - 93008", "stop_name": "ARCHIVES DEPARTEMENTALES"}, "geometry": {"type": "Point", "coordinates": [2.44574237671253, 48.90387945312767]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cbad6e49f97ce569611adcacec2d66f1bd2d5ad5", "fields": {"departement": "93", "stop_lat": 48.90595552801115, "code_postal": "93008", "stop_lon": 2.4456785582783622, "coord": [48.90595552801115, 2.4456785582783622], "stop_id": 4035569, "stop_desc": "AVENUE DU PRESIDENT SALVADOR ALLENDE - 93008", "stop_name": "CENTRE COMMERCIAL DE BOBIGNY"}, "geometry": {"type": "Point", "coordinates": [2.4456785582783622, 48.90595552801115]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "23d0ea794d18b464194e2ff77670df25754c77a3", "fields": {"departement": "93", "stop_lat": 48.90294012056257, "code_postal": "93047", "stop_lon": 2.564096156304684, "coord": [48.90294012056257, 2.564096156304684], "stop_id": 4035572, "stop_desc": "33 AVENUE PAUL BERT - 93047", "stop_name": "LES GAZELLES"}, "geometry": {"type": "Point", "coordinates": [2.564096156304684, 48.90294012056257]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9d1b87f1fd23d430222f17c594a39749e40b9a04", "fields": {"departement": "95", "stop_lat": 48.971513468947926, "code_postal": "95268", "stop_lon": 2.3956645213121854, "coord": [48.971513468947926, 2.3956645213121854], "stop_id": 4035671, "stop_desc": "AVENUE FRANCOIS MITTERRAND - 95268", "stop_name": "PLEIN MIDI"}, "geometry": {"type": "Point", "coordinates": [2.3956645213121854, 48.971513468947926]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d0e8660b333dc34d430752f74eab8e218f60bb12", "fields": {"departement": "93", "stop_lat": 48.9546688790513, "code_postal": "93072", "stop_lon": 2.383418780134514, "coord": [48.9546688790513, 2.383418780134514], "stop_id": 4035682, "stop_desc": "FACE 5 BOULEVARD MAXIME GORKI - 93072", "stop_name": "MAIRIE DE STAINS"}, "geometry": {"type": "Point", "coordinates": [2.383418780134514, 48.9546688790513]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c909c3297e565f33ec1606df2e38766cabe530f9", "fields": {"departement": "93", "stop_lat": 48.9548395470349, "code_postal": "93072", "stop_lon": 2.38362362162217, "coord": [48.9548395470349, 2.38362362162217], "stop_id": 4035683, "stop_desc": "BOULEVARD MAXIME GORKI - 93072", "stop_name": "MAIRIE DE STAINS"}, "geometry": {"type": "Point", "coordinates": [2.38362362162217, 48.9548395470349]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dd7409db5752dec70cc40cb2a2f5b41cf0ad1f24", "fields": {"departement": "93", "stop_lat": 48.952466555775885, "code_postal": "93072", "stop_lon": 2.384890511280149, "coord": [48.952466555775885, 2.384890511280149], "stop_id": 4035685, "stop_desc": "45 BOULEVARD MAXIME GORKI - 93072", "stop_name": "FRANCOIS BEGUE"}, "geometry": {"type": "Point", "coordinates": [2.384890511280149, 48.952466555775885]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "566cc6275f1831d299b4be0f80f48936170b6558", "fields": {"departement": "93", "stop_lat": 48.932838565426906, "code_postal": "93027", "stop_lon": 2.386918478660045, "coord": [48.932838565426906, 2.386918478660045], "stop_id": 4035692, "stop_desc": "AVENUE ROGER SALENGRO - 93027", "stop_name": "PARC DES SPORTS"}, "geometry": {"type": "Point", "coordinates": [2.386918478660045, 48.932838565426906]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7f52893986cbe793fa256d061f01ca6c217fd12a", "fields": {"departement": "93", "stop_lat": 48.929037580636226, "code_postal": "93027", "stop_lon": 2.3857827838557766, "coord": [48.929037580636226, 2.3857827838557766], "stop_id": 4035694, "stop_desc": "BOULEVARD PASTEUR - 93027", "stop_name": "SIX ROUTES - TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.3857827838557766, 48.929037580636226]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "00faefcc9d15ea9598dc154b3b68fc0bf49d8b59", "fields": {"departement": "93", "stop_lat": 48.918901673419974, "code_postal": "93001", "stop_lon": 2.3823232573658975, "coord": [48.918901673419974, 2.3823232573658975], "stop_id": 4035699, "stop_desc": "37-39 BOULEVARD ANATOLE FRANCE - 93001", "stop_name": "CREVECOEUR"}, "geometry": {"type": "Point", "coordinates": [2.3823232573658975, 48.918901673419974]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "17bc21b5b396cfd59df1913159ab6eb6c7a66ef1", "fields": {"departement": "93", "stop_lat": 48.915783567300366, "code_postal": "93001", "stop_lon": 2.3813115054676794, "coord": [48.915783567300366, 2.3813115054676794], "stop_id": 4035700, "stop_desc": "FACE 166 AVENUE VICTOR HUGO - 93001", "stop_name": "MAIRIE D'AUBERVILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.3813115054676794, 48.915783567300366]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ea885dafd8569d1a8cab8e51108d94e8788a2128", "fields": {"departement": "93", "stop_lat": 48.90644795106903, "code_postal": "93001", "stop_lon": 2.3757957518622668, "coord": [48.90644795106903, 2.3757957518622668], "stop_id": 4035707, "stop_desc": "94-96 AVENUE VICTOR HUGO - 93001", "stop_name": "GARDINOUX"}, "geometry": {"type": "Point", "coordinates": [2.3757957518622668, 48.90644795106903]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e7ddac8354cf379776cc674c93ee625b84df20d6", "fields": {"departement": "75", "stop_lat": 48.898774923524925, "code_postal": "75118", "stop_lon": 2.369192550549825, "coord": [48.898774923524925, 2.369192550549825], "stop_id": 4035711, "stop_desc": "4 BOULEVARD NEY - 75118", "stop_name": "PORTE D'AUBERVILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.369192550549825, 48.898774923524925]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0d5be3cede8145435e2edc47e4943529f9f3c893", "fields": {"departement": "75", "stop_lat": 48.89755491483727, "code_postal": "75118", "stop_lon": 2.3592957904694902, "coord": [48.89755491483727, 2.3592957904694902], "stop_id": 4035715, "stop_desc": "100 RUE DE LA CHAPELLE - 75118", "stop_name": "PORTE DE LA CHAPELLE"}, "geometry": {"type": "Point", "coordinates": [2.3592957904694902, 48.89755491483727]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "59cc474c3b715b476135b882c5e0b16cbab5e196", "fields": {"departement": "75", "stop_lat": 48.8956406844485, "code_postal": "75118", "stop_lon": 2.359131411948386, "coord": [48.8956406844485, 2.359131411948386], "stop_id": 4035716, "stop_desc": "61 RUE DE LA CHAPELLE - 75118", "stop_name": "BOUCRY"}, "geometry": {"type": "Point", "coordinates": [2.359131411948386, 48.8956406844485]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "14a525a5343bea867578047ab5ce3f2aee714c49", "fields": {"departement": "75", "stop_lat": 48.88506276042979, "code_postal": "75118", "stop_lon": 2.3591678300283867, "coord": [48.88506276042979, 2.3591678300283867], "stop_id": 4035724, "stop_desc": "5 RUE MARX DORMOY - 75118", "stop_name": "PLACE DE LA CHAPELLE"}, "geometry": {"type": "Point", "coordinates": [2.3591678300283867, 48.88506276042979]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2d57aa70c475445b71d0bb8cd75310d8208c72d2", "fields": {"departement": "75", "stop_lat": 48.880677255819144, "code_postal": "75110", "stop_lon": 2.357653442709006, "coord": [48.880677255819144, 2.357653442709006], "stop_id": 4035727, "stop_desc": "183 RUE DU FAUBOURG SAINT-DENIS - 75110", "stop_name": "GARE DU NORD"}, "geometry": {"type": "Point", "coordinates": [2.357653442709006, 48.880677255819144]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "537afbae69f64f2cca4db1cf92f2099ae4dfdb96", "fields": {"departement": "75", "stop_lat": 48.87781949763114, "code_postal": "75110", "stop_lon": 2.3564941357294393, "coord": [48.87781949763114, 2.3564941357294393], "stop_id": 4035732, "stop_desc": "140-142 RUE DU FAUBOURG SAINT-DENIS - 75110", "stop_name": "VALENCIENNES"}, "geometry": {"type": "Point", "coordinates": [2.3564941357294393, 48.87781949763114]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5ccfc8832846646f48b469f967ae6a1b85d16c62", "fields": {"departement": "75", "stop_lat": 48.89996986758614, "code_postal": "75119", "stop_lon": 2.3704473851366274, "coord": [48.89996986758614, 2.3704473851366274], "stop_id": 4035735, "stop_desc": "AVENUE DE LA PORTE D'AUBERVILLIERS - 75119", "stop_name": "SKANDERBEG"}, "geometry": {"type": "Point", "coordinates": [2.3704473851366274, 48.89996986758614]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "48cba2f18a7bb4f202db9778fa94c7d5f9ea4d15", "fields": {"departement": "93", "stop_lat": 48.93043936274061, "code_postal": "93027", "stop_lon": 2.3862069226314016, "coord": [48.93043936274061, 2.3862069226314016], "stop_id": 4035737, "stop_desc": "4 AVENUE ROGER SALENGRO - 93027", "stop_name": "SIX ROUTES - ROGER SALENGRO-TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.3862069226314016, 48.93043936274061]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "38e0489c4a584a30eba9e4e59095bce19b3d60b6", "fields": {"departement": "93", "stop_lat": 48.95433871107077, "code_postal": "93005", "stop_lon": 2.457433442997565, "coord": [48.95433871107077, 2.457433442997565], "stop_id": 4035743, "stop_desc": "RUE ROBERT BREMOND - 93005", "stop_name": "ROBERT BREMOND"}, "geometry": {"type": "Point", "coordinates": [2.457433442997565, 48.95433871107077]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "54b6e752277db22caaa0329942d7f65947137b4d", "fields": {"departement": "93", "stop_lat": 48.954338518544674, "code_postal": "93005", "stop_lon": 2.457624484216734, "coord": [48.954338518544674, 2.457624484216734], "stop_id": 4035744, "stop_desc": "RUE ROBERT BREMOND - 93005", "stop_name": "ROBERT BREMOND"}, "geometry": {"type": "Point", "coordinates": [2.457624484216734, 48.954338518544674]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "85ee35382a213ec0bba63d576db7a81783b47d4f", "fields": {"departement": "93", "stop_lat": 48.94759792571279, "code_postal": "93007", "stop_lon": 2.4581545737144146, "coord": [48.94759792571279, 2.4581545737144146], "stop_id": 4035751, "stop_desc": "AVENUE DES COSMONAUTES - 93007", "stop_name": "DIVISION LECLERC - WALLON"}, "geometry": {"type": "Point", "coordinates": [2.4581545737144146, 48.94759792571279]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8cbd67271a2809ddd2ab28d2383bdd3dee6139e0", "fields": {"departement": "93", "stop_lat": 48.94349249031491, "code_postal": "93007", "stop_lon": 2.4653075490783922, "coord": [48.94349249031491, 2.4653075490783922], "stop_id": 4035753, "stop_desc": "13 AVENUE DE LA DIVISION LECLERC - 93007", "stop_name": "LIBERATION"}, "geometry": {"type": "Point", "coordinates": [2.4653075490783922, 48.94349249031491]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "725ddb7b3b20f39c83c5fdd357c1d6dd67cbb773", "fields": {"departement": "93", "stop_lat": 48.93705588476023, "code_postal": "93007", "stop_lon": 2.458661969182226, "coord": [48.93705588476023, 2.458661969182226], "stop_id": 4035759, "stop_desc": "FACE 18 AVENUE HENRI BARBUSSE - 93007", "stop_name": "ANCIENNE MAIRIE DE LE_BLANC-MESNIL"}, "geometry": {"type": "Point", "coordinates": [2.458661969182226, 48.93705588476023]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a85dd027b02e176ac64a1f5a11afedfab1a83b74", "fields": {"departement": "93", "stop_lat": 48.92706117602465, "code_postal": "93029", "stop_lon": 2.4508508729298515, "coord": [48.92706117602465, 2.4508508729298515], "stop_id": 4035767, "stop_desc": "FACE 76 RUE ANATOLE FRANCE - 93029", "stop_name": "HENRI ROUANET"}, "geometry": {"type": "Point", "coordinates": [2.4508508729298515, 48.92706117602465]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c928421f5194eb9d0cb5e5c15950964b55090273", "fields": {"departement": "93", "stop_lat": 48.92548845120095, "code_postal": "93029", "stop_lon": 2.441000622041601, "coord": [48.92548845120095, 2.441000622041601], "stop_id": 4035771, "stop_desc": "FACE 99 RUE SADI CARNOT - 93029", "stop_name": "JEAN-PIERRE TIMBAUD"}, "geometry": {"type": "Point", "coordinates": [2.441000622041601, 48.92548845120095]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "71360374016ddaba49596b0788b3f9bde2e4ef07", "fields": {"departement": "93", "stop_lat": 48.926325728066686, "code_postal": "93029", "stop_lon": 2.4392702163160442, "coord": [48.926325728066686, 2.4392702163160442], "stop_id": 4035774, "stop_desc": "125 RUE SADI CARNOT - 93029", "stop_name": "ARISTIDE BRIAND"}, "geometry": {"type": "Point", "coordinates": [2.4392702163160442, 48.926325728066686]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cd73d40d40a91fc5f4eeaafc48dcb33984c1aa67", "fields": {"departement": "93", "stop_lat": 48.929153940203385, "code_postal": "93027", "stop_lon": 2.4194444041855228, "coord": [48.929153940203385, 2.4194444041855228], "stop_id": 4035781, "stop_desc": "FACE 168 AVENUE PAUL VAILLANT-COUTURIER - 93027", "stop_name": "AVENUE PAUL VAILLANT COUTURIER N0 176-191"}, "geometry": {"type": "Point", "coordinates": [2.4194444041855228, 48.929153940203385]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "13bc3942fd10b58182663b0fbdc502cad1ea37e1", "fields": {"departement": "93", "stop_lat": 48.91439831194438, "code_postal": "93001", "stop_lon": 2.403467689395335, "coord": [48.91439831194438, 2.403467689395335], "stop_id": 4035791, "stop_desc": "213 AVENUE JEAN JAURES - 93001", "stop_name": "FORT D'AUBERVILLIERS - METRO"}, "geometry": {"type": "Point", "coordinates": [2.403467689395335, 48.91439831194438]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f50f9f8883dbeebdbeba3ce68041c4218d97745f", "fields": {"departement": "93", "stop_lat": 48.906134844593, "code_postal": "93001", "stop_lon": 2.394568330990257, "coord": [48.906134844593, 2.394568330990257], "stop_id": 4035796, "stop_desc": "103 BIS AVENUE JEAN JAURES - 93001", "stop_name": "CONDORCET"}, "geometry": {"type": "Point", "coordinates": [2.394568330990257, 48.906134844593]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ff5116b52f8098047d4f63c57290050de7032626", "fields": {"departement": "75", "stop_lat": 48.89020802078957, "code_postal": "75119", "stop_lon": 2.3763833482577903, "coord": [48.89020802078957, 2.3763833482577903], "stop_id": 4035802, "stop_desc": "FACE 90 AVENUE DE FLANDRE - 75119", "stop_name": "CRIMEE"}, "geometry": {"type": "Point", "coordinates": [2.3763833482577903, 48.89020802078957]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6e993e85bf0553917cec42176cd42fc38e0aec93", "fields": {"departement": "93", "stop_lat": 48.9059639721162, "code_postal": "93055", "stop_lon": 2.394813537419497, "coord": [48.9059639721162, 2.394813537419497], "stop_id": 4035822, "stop_desc": "120 AVENUE JEAN JAURES - 93055", "stop_name": "CONDORCET"}, "geometry": {"type": "Point", "coordinates": [2.394813537419497, 48.9059639721162]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b66c3d5c88d21048392125a6c77101977593d211", "fields": {"departement": "93", "stop_lat": 48.90909876026409, "code_postal": "93055", "stop_lon": 2.398225496493954, "coord": [48.90909876026409, 2.398225496493954], "stop_id": 4035823, "stop_desc": "AVENUE JEAN JAURES - 93055", "stop_name": "CIMETIERE PARISIEN"}, "geometry": {"type": "Point", "coordinates": [2.398225496493954, 48.90909876026409]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "87733b4cceba000bd25167f5c191713a63002c8d", "fields": {"departement": "94", "stop_lat": 48.82758592082908, "code_postal": "94017", "stop_lon": 2.4939072681583574, "coord": [48.82758592082908, 2.4939072681583574], "stop_id": 4035930, "stop_desc": "FACE 232 BOULEVARD DE STALINGRAD - 94017", "stop_name": "PARC DU TREMBLAY"}, "geometry": {"type": "Point", "coordinates": [2.4939072681583574, 48.82758592082908]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "13cf55e772f8e47c67728de8970c6f8ae5481ea5", "fields": {"departement": "94", "stop_lat": 48.822429558442465, "code_postal": "94017", "stop_lon": 2.4919453082810836, "coord": [48.822429558442465, 2.4919453082810836], "stop_id": 4035934, "stop_desc": "75 AVENUE DU GENERAL DE GAULLE - 94017", "stop_name": "LES MARRONNIERS"}, "geometry": {"type": "Point", "coordinates": [2.4919453082810836, 48.822429558442465]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e22aa38a4aca3021916cbdd79409861f0f3efa36", "fields": {"departement": "94", "stop_lat": 48.810726707280864, "code_postal": "94068", "stop_lon": 2.4781254407727564, "coord": [48.810726707280864, 2.4781254407727564], "stop_id": 4035941, "stop_desc": "46 AVENUE DE LA LIBERATION - 94068", "stop_name": "LIBERATION - CONDE"}, "geometry": {"type": "Point", "coordinates": [2.4781254407727564, 48.810726707280864]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "97ccc4c8f4b82644cdcf4e2d90a7a7466271e66b", "fields": {"departement": "94", "stop_lat": 48.80624097434953, "code_postal": "94068", "stop_lon": 2.4710512828055955, "coord": [48.80624097434953, 2.4710512828055955], "stop_id": 4035945, "stop_desc": "RUE DU PONT DE CRETEIL - 94068", "stop_name": "SAINT-MAUR-CRETEIL RER"}, "geometry": {"type": "Point", "coordinates": [2.4710512828055955, 48.80624097434953]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3e7d1e7ea288fe174e3f9d6d04d03c904c51a3e0", "fields": {"departement": "94", "stop_lat": 48.794271448231854, "code_postal": "94028", "stop_lon": 2.460613557714741, "coord": [48.794271448231854, 2.460613557714741], "stop_id": 4035952, "stop_desc": "FACE 21 RUE DE PARIS - 94028", "stop_name": "EGLISE DE CRETEIL"}, "geometry": {"type": "Point", "coordinates": [2.460613557714741, 48.794271448231854]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "013edafcc80e086561738e4e420438bc200d72c8", "fields": {"departement": "94", "stop_lat": 48.80093266373305, "code_postal": "94028", "stop_lon": 2.4503572214194693, "coord": [48.80093266373305, 2.4503572214194693], "stop_id": 4035958, "stop_desc": "100 AVENUE DU MARECHAL DE LATTRE DE TASSIGNY - 94028", "stop_name": "VIET"}, "geometry": {"type": "Point", "coordinates": [2.4503572214194693, 48.80093266373305]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fdb6eb431c56770cc1b50d393ede9ec1d4feca69", "fields": {"departement": "94", "stop_lat": 48.804191939783315, "code_postal": "94046", "stop_lon": 2.444214244601107, "coord": [48.804191939783315, 2.444214244601107], "stop_id": 4035959, "stop_desc": "253 BIS AVENUE DU GENERAL LECLERC - 94046", "stop_name": "LES JUILLIOTTES-METRO"}, "geometry": {"type": "Point", "coordinates": [2.444214244601107, 48.804191939783315]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "38af14f77e615abb21ad07dc310f21b176027098", "fields": {"departement": "94", "stop_lat": 48.8054799076782, "code_postal": "94046", "stop_lon": 2.4411553902120193, "coord": [48.8054799076782, 2.4411553902120193], "stop_id": 4035962, "stop_desc": "86 AVENUE DU GENERAL LECLERC - 94046", "stop_name": "REPUBLIQUE - GENERAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.4411553902120193, 48.8054799076782]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "950b7a4d1c239d1f128bf00ecb891386c4d68275", "fields": {"departement": "94", "stop_lat": 48.81887613822739, "code_postal": "94018", "stop_lon": 2.411103642894185, "coord": [48.81887613822739, 2.411103642894185], "stop_id": 4035971, "stop_desc": "FACE 7 BIS RUE VICTOR HUGO - 94018", "stop_name": "VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.411103642894185, 48.81887613822739]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "93b53b4bd88c0e3f8e1b89c9e71896160cd661b5", "fields": {"departement": "94", "stop_lat": 48.82218251451605, "code_postal": "94018", "stop_lon": 2.4128505652116266, "coord": [48.82218251451605, 2.4128505652116266], "stop_id": 4035972, "stop_desc": "FACE 87 RUE DE PARIS - 94018", "stop_name": "CHARENTON ECOLES"}, "geometry": {"type": "Point", "coordinates": [2.4128505652116266, 48.82218251451605]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1376ecb31620ba6173f67e47b81b9fa37b95ad23", "fields": {"departement": "94", "stop_lat": 48.82916356574205, "code_postal": "94018", "stop_lon": 2.4015756371245263, "coord": [48.82916356574205, 2.4015756371245263], "stop_id": 4035978, "stop_desc": "183 RUE DE PARIS - 94018", "stop_name": "FELIX LANGLAIS"}, "geometry": {"type": "Point", "coordinates": [2.4015756371245263, 48.82916356574205]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c1ed01e57a3dac6df90ba12770e0f055b078ad72", "fields": {"departement": "75", "stop_lat": 48.8315739894512, "code_postal": "75112", "stop_lon": 2.398270535794567, "coord": [48.8315739894512, 2.398270535794567], "stop_id": 4035979, "stop_desc": "AVENUE DE LA PORTE DE CHARENTON - 75112", "stop_name": "PORTE DE CHARENTON"}, "geometry": {"type": "Point", "coordinates": [2.398270535794567, 48.8315739894512]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e1f73cd5ca2b0f0a291d1dfe8182b56c61c4edf6", "fields": {"departement": "75", "stop_lat": 48.83144830211143, "code_postal": "75112", "stop_lon": 2.3979981179423318, "coord": [48.83144830211143, 2.3979981179423318], "stop_id": 4035980, "stop_desc": "AVENUE DE LA PORTE DE CHARENTON - 75112", "stop_name": "PORTE DE CHARENTON"}, "geometry": {"type": "Point", "coordinates": [2.3979981179423318, 48.83144830211143]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6eb279fd10ebfa5062258ee86301fcf06d4bf04f", "fields": {"departement": "75", "stop_lat": 48.83902925371723, "code_postal": "75112", "stop_lon": 2.3886259202812146, "coord": [48.83902925371723, 2.3886259202812146], "stop_id": 4035982, "stop_desc": "17 BOULEVARD DE BERCY - 75112", "stop_name": "DUGOMMIER"}, "geometry": {"type": "Point", "coordinates": [2.3886259202812146, 48.83902925371723]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3d1916e755e3cd48a9414209ee8fc42bd307668c", "fields": {"departement": "75", "stop_lat": 48.838840824123245, "code_postal": "75112", "stop_lon": 2.3879041153117466, "coord": [48.838840824123245, 2.3879041153117466], "stop_id": 4035983, "stop_desc": "68 BOULEVARD DE BERCY - 75112", "stop_name": "DUGOMMIER"}, "geometry": {"type": "Point", "coordinates": [2.3879041153117466, 48.838840824123245]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "81d11525015696c715ac2a57f9ec7ac991b48c00", "fields": {"departement": "75", "stop_lat": 48.840002834777216, "code_postal": "75112", "stop_lon": 2.381328844496672, "coord": [48.840002834777216, 2.381328844496672], "stop_id": 4035985, "stop_desc": "42-44 BOULEVARD DE BERCY - 75112", "stop_name": "GARE DE BERCY"}, "geometry": {"type": "Point", "coordinates": [2.381328844496672, 48.840002834777216]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "479fb4a95f497c1d50bac80d639c3a89ba7e8989", "fields": {"departement": "75", "stop_lat": 48.84079481495786, "code_postal": "75112", "stop_lon": 2.378320391662055, "coord": [48.84079481495786, 2.378320391662055], "stop_id": 4035987, "stop_desc": "133-135 RUE DE BERCY - 75112", "stop_name": "MINISTERE DE L'ECONOMIE ET DES FINANCES"}, "geometry": {"type": "Point", "coordinates": [2.378320391662055, 48.84079481495786]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "59aed0cb545ed664feecbb9fee7529c5aab9fd7d", "fields": {"departement": "95", "stop_lat": 49.0098635015336, "code_postal": "95680", "stop_lon": 2.384519915866608, "coord": [49.0098635015336, 2.384519915866608], "stop_id": 5726510, "stop_desc": "4 RUE JULIEN BOURSIER - 95680", "stop_name": "ESPERANCE - JULIEN BOURSIER"}, "geometry": {"type": "Point", "coordinates": [2.384519915866608, 49.0098635015336]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4455f688ab422af4e68367d9337a31504da2f666", "fields": {"departement": "95", "stop_lat": 49.00696384251822, "code_postal": "95680", "stop_lon": 2.3979584182054436, "coord": [49.00696384251822, 2.3979584182054436], "stop_id": 5726514, "stop_desc": "FACE 7 RUE HENRI SELLIER - 95680", "stop_name": "HENRI SELLIER"}, "geometry": {"type": "Point", "coordinates": [2.3979584182054436, 49.00696384251822]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c5a8409cf32a99a3a04a249201e2e150529ad747", "fields": {"departement": "95", "stop_lat": 49.00257626307783, "code_postal": "95680", "stop_lon": 2.4022420525309895, "coord": [49.00257626307783, 2.4022420525309895], "stop_id": 5726517, "stop_desc": "AVENUE PIERRE SEMARD - 95680", "stop_name": "PIERRE SEMARD"}, "geometry": {"type": "Point", "coordinates": [2.4022420525309895, 49.00257626307783]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fbf90fcf2247892010f3b5bca3232eaecb173e22", "fields": {"departement": "93", "stop_lat": 48.9456341370802, "code_postal": "93066", "stop_lon": 2.3640642062014314, "coord": [48.9456341370802, 2.3640642062014314], "stop_id": 5726521, "stop_desc": "AV DE STALINGRAD - 93066", "stop_name": "SAINT-DENIS - UNIVERSITE"}, "geometry": {"type": "Point", "coordinates": [2.3640642062014314, 48.9456341370802]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1f622fdc6dbc10c203cc53c83835d9f77b56bcc9", "fields": {"departement": "93", "stop_lat": 48.94948912219902, "code_postal": "93059", "stop_lon": 2.365512523883428, "coord": [48.94948912219902, 2.365512523883428], "stop_id": 5726522, "stop_desc": "RUE TOUSSAINT LOUVERTURE - 93059", "stop_name": "TOUSSAINT LOUVERTURE"}, "geometry": {"type": "Point", "coordinates": [2.365512523883428, 48.94948912219902]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "559f952d1b767d0cb9a57b8565c7eef8eeedd824", "fields": {"departement": "93", "stop_lat": 48.94549050899869, "code_postal": "93066", "stop_lon": 2.363341027074593, "coord": [48.94549050899869, 2.363341027074593], "stop_id": 5726530, "stop_desc": "AVENUE DE STALINGRAD (GARE ROUTIERE) - 93066", "stop_name": "SAINT-DENIS - UNIVERSITE."}, "geometry": {"type": "Point", "coordinates": [2.363341027074593, 48.94549050899869]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0905fa98d28b2b5cb45a913b12d1b1079d93c81a", "fields": {"departement": "93", "stop_lat": 48.94453030711624, "code_postal": "93066", "stop_lon": 2.3559731976678484, "coord": [48.94453030711624, 2.3559731976678484], "stop_id": 5726531, "stop_desc": "2 AVENUE DU COLONEL FABIEN - 93066", "stop_name": "ROGER SEMAT"}, "geometry": {"type": "Point", "coordinates": [2.3559731976678484, 48.94453030711624]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ca9128331268065265050dd11bedd0074f5643f1", "fields": {"departement": "93", "stop_lat": 48.94830448312007, "code_postal": "93066", "stop_lon": 2.3575982253927537, "coord": [48.94830448312007, 2.3575982253927537], "stop_id": 5726540, "stop_desc": "28 AVENUE ROGER SEMAT - 93066", "stop_name": "GUYNEMER"}, "geometry": {"type": "Point", "coordinates": [2.3575982253927537, 48.94830448312007]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a2192d316cd467769a5cf454526e41b768c2a055", "fields": {"departement": "93", "stop_lat": 48.963608376113065, "code_postal": "93059", "stop_lon": 2.3600745767108173, "coord": [48.963608376113065, 2.3600745767108173], "stop_id": 5726547, "stop_desc": "BOULEVARD JEAN MERMOZ - 93059", "stop_name": "MAIRIE DE PIERREFITTE"}, "geometry": {"type": "Point", "coordinates": [2.3600745767108173, 48.963608376113065]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "011aa47148e7021edcbb807bbc4bfabe30cf24d1", "fields": {"departement": "95", "stop_lat": 48.97359879262448, "code_postal": "95585", "stop_lon": 2.3713273223638187, "coord": [48.97359879262448, 2.3713273223638187], "stop_id": 5726556, "stop_desc": "FACE 30 AVENUE CESAR FRANCK - 95585", "stop_name": "CAMILLE SAINT-SAENS"}, "geometry": {"type": "Point", "coordinates": [2.3713273223638187, 48.97359879262448]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ffdd6c04b5703834a85ef527b42e454ae9d055be", "fields": {"departement": "95", "stop_lat": 48.97731934616358, "code_postal": "95585", "stop_lon": 2.370892912422245, "coord": [48.97731934616358, 2.370892912422245], "stop_id": 5726560, "stop_desc": "BOULEVARD ALBERT CAMUS - 95585", "stop_name": "LES CHOLETTES"}, "geometry": {"type": "Point", "coordinates": [2.370892912422245, 48.97731934616358]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3b86fac8b82384f378dc718cea39b537e4247738", "fields": {"departement": "95", "stop_lat": 48.996475701301144, "code_postal": "95585", "stop_lon": 2.3796184973023964, "coord": [48.996475701301144, 2.3796184973023964], "stop_id": 5726569, "stop_desc": "FACE 141 RUE PIERRE BROSSOLETTE - 95585", "stop_name": "MAIRIE DE SARCELLES"}, "geometry": {"type": "Point", "coordinates": [2.3796184973023964, 48.996475701301144]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "177b87c1ed3862ea982a933ccccb72f21ed44a8f", "fields": {"departement": "95", "stop_lat": 49.006036138046824, "code_postal": "95680", "stop_lon": 2.3824538385869927, "coord": [49.006036138046824, 2.3824538385869927], "stop_id": 5726576, "stop_desc": "25 RUE DE PARIS - 95680", "stop_name": "DOCTEUR RAMPON"}, "geometry": {"type": "Point", "coordinates": [2.3824538385869927, 49.006036138046824]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7c8e6a12c8d0753e04135b5d850821c85074bd8a", "fields": {"departement": "95", "stop_lat": 49.008208055704095, "code_postal": "95680", "stop_lon": 2.3892584352347077, "coord": [49.008208055704095, 2.3892584352347077], "stop_id": 5726580, "stop_desc": "FACE 2 RUE GAMBETTA - 95680", "stop_name": "EGLISE DE VILLIERS-LE-BEL"}, "geometry": {"type": "Point", "coordinates": [2.3892584352347077, 49.008208055704095]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "65daf76f0983a4d8ae2f6d0cbdcf043945700908", "fields": {"departement": "95", "stop_lat": 49.00696384251822, "code_postal": "95680", "stop_lon": 2.3979584182054436, "coord": [49.00696384251822, 2.3979584182054436], "stop_id": 5726583, "stop_desc": "FACE 7 RUE HENRI SELLIER - 95680", "stop_name": "HENRI SELLIER"}, "geometry": {"type": "Point", "coordinates": [2.3979584182054436, 49.00696384251822]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f50ac5e69a683734dc13867d01aadf0f161db302", "fields": {"departement": "95", "stop_lat": 49.00136914941499, "code_postal": "95680", "stop_lon": 2.4074443220529553, "coord": [49.00136914941499, 2.4074443220529553], "stop_id": 5726604, "stop_desc": "AVENUE PIERRE SEMARD - 95680", "stop_name": "LOUIS PERREIN"}, "geometry": {"type": "Point", "coordinates": [2.4074443220529553, 49.00136914941499]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "488a1a660a7f6e4c968cf94d005377e269dac0a2", "fields": {"departement": "93", "stop_lat": 48.96636579066507, "code_postal": "93059", "stop_lon": 2.3668183934090736, "coord": [48.96636579066507, 2.3668183934090736], "stop_id": 5726616, "stop_desc": "47-49 BOULEVARD CHARLES DE GAULLE - 93059", "stop_name": "ETIENNE DOLET - DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.3668183934090736, 48.96636579066507]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3645f6c0a4250a3e299ff0190bfbde5b273aaca4", "fields": {"departement": "93", "stop_lat": 48.95153920764225, "code_postal": "93059", "stop_lon": 2.3603558027707487, "coord": [48.95153920764225, 2.3603558027707487], "stop_id": 5726618, "stop_desc": "26 AVENUE NUNGESSER ET COLI - 93059", "stop_name": "SAINTE-THERESE"}, "geometry": {"type": "Point", "coordinates": [2.3603558027707487, 48.95153920764225]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "683d026be487410c158c67936ab7e15d3f0a4af3", "fields": {"departement": "93", "stop_lat": 48.97307898254842, "code_postal": "93059", "stop_lon": 2.3659622311662445, "coord": [48.97307898254842, 2.3659622311662445], "stop_id": 5726650, "stop_desc": "FACE 156 BOULEVARD JEAN MERMOZ - 93059", "stop_name": "BUTTE PINSON"}, "geometry": {"type": "Point", "coordinates": [2.3659622311662445, 48.97307898254842]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b858d19b1d03df57272a57c265db10831559f278", "fields": {"departement": "93", "stop_lat": 48.963608376113065, "code_postal": "93059", "stop_lon": 2.3600745767108173, "coord": [48.963608376113065, 2.3600745767108173], "stop_id": 5726653, "stop_desc": "BOULEVARD JEAN MERMOZ - 93059", "stop_name": "MAIRIE DE PIERREFITTE"}, "geometry": {"type": "Point", "coordinates": [2.3600745767108173, 48.963608376113065]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "db9a80785beee3820b6b2b8a29b374500f4b782d", "fields": {"departement": "75", "stop_lat": 48.864034354931775, "code_postal": "75101", "stop_lon": 2.3315879074954515, "coord": [48.864034354931775, 2.3315879074954515], "stop_id": 5727632, "stop_desc": "194 RUE DE RIVOLI - 75101", "stop_name": "PYRAMIDES - TUILERIES"}, "geometry": {"type": "Point", "coordinates": [2.3315879074954515, 48.864034354931775]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2762c15f76957b20abb3f41a9a46e66cd5ac0c2d", "fields": {"departement": "75", "stop_lat": 48.866999231212986, "code_postal": "75108", "stop_lon": 2.32113887130694, "coord": [48.866999231212986, 2.32113887130694], "stop_id": 5727634, "stop_desc": "8 PLACE DE LA CONCORDE - 75108", "stop_name": "CONCORDE"}, "geometry": {"type": "Point", "coordinates": [2.32113887130694, 48.866999231212986]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "584c72c2832c7190b86510c8b63fa6f7eaab1f69", "fields": {"departement": "75", "stop_lat": 48.864598454443936, "code_postal": "75108", "stop_lon": 2.314151427866034, "coord": [48.864598454443936, 2.314151427866034], "stop_id": 5727637, "stop_desc": "0 COURS LA REINE - 75108", "stop_name": "GRAND PALAIS"}, "geometry": {"type": "Point", "coordinates": [2.314151427866034, 48.864598454443936]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d568158ec8b2cd4772931c3f6a02adbd1b1f587b", "fields": {"departement": "75", "stop_lat": 48.86493891629263, "code_postal": "75108", "stop_lon": 2.309220006683787, "coord": [48.86493891629263, 2.309220006683787], "stop_id": 5727638, "stop_desc": "8 COURS ALBERT I - 75108", "stop_name": "PALAIS DE LA DECOUVERTE"}, "geometry": {"type": "Point", "coordinates": [2.309220006683787, 48.86493891629263]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7166825960f65a3f2e0dc89cffbeaba0e882dbde", "fields": {"departement": "75", "stop_lat": 48.86481140659806, "code_postal": "75108", "stop_lon": 2.302790369694832, "coord": [48.86481140659806, 2.302790369694832], "stop_id": 5727640, "stop_desc": "PLACE DE LA REINE ASTRID - 75108", "stop_name": "ALMA - MARCEAU"}, "geometry": {"type": "Point", "coordinates": [2.302790369694832, 48.86481140659806]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "80dd70ecb313896d426f42fd686a2110067451ae", "fields": {"departement": "75", "stop_lat": 48.86081745962399, "code_postal": "75116", "stop_lon": 2.29216848013093, "coord": [48.86081745962399, 2.29216848013093], "stop_id": 5727645, "stop_desc": "AVENUE DE NEW-YORK - 75116", "stop_name": "PONT D'IENA"}, "geometry": {"type": "Point", "coordinates": [2.29216848013093, 48.86081745962399]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bb609dd1f7eb2a05aff5dee2ad250a29558c0f3d", "fields": {"departement": "75", "stop_lat": 48.853101585342735, "code_postal": "75116", "stop_lon": 2.2811981241306203, "coord": [48.853101585342735, 2.2811981241306203], "stop_id": 5727652, "stop_desc": "104 AVENUE DU PRESIDENT KENNEDY - 75116", "stop_name": "RADIO FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.2811981241306203, 48.853101585342735]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "068e812718a5d400a390a2f54ad53d9b91b4926f", "fields": {"departement": "75", "stop_lat": 48.85305683965119, "code_postal": "75116", "stop_lon": 2.2816067476926225, "coord": [48.85305683965119, 2.2816067476926225], "stop_id": 5727656, "stop_desc": "FACE 104 AVENUE DU PRESIDENT KENNEDY - 75116", "stop_name": "RADIO FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.2816067476926225, 48.85305683965119]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c08c6e8756382bb33e2a48b996cf6e69e3bb58cf", "fields": {"departement": "75", "stop_lat": 48.84884762551571, "code_postal": "75116", "stop_lon": 2.2753741876820532, "coord": [48.84884762551571, 2.2753741876820532], "stop_id": 5727665, "stop_desc": "41 AVENUE DE VERSAILLES - 75116", "stop_name": "DEGAS"}, "geometry": {"type": "Point", "coordinates": [2.2753741876820532, 48.84884762551571]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c0e2fe7c8891c189f013078b2607a5621f2a7e37", "fields": {"departement": "75", "stop_lat": 48.841337791139914, "code_postal": "75116", "stop_lon": 2.2659744207977153, "coord": [48.841337791139914, 2.2659744207977153], "stop_id": 5727672, "stop_desc": "148-150 AVENUE DE VERSAILLES - 75116", "stop_name": "VERSAILLES - EXELMANS"}, "geometry": {"type": "Point", "coordinates": [2.2659744207977153, 48.841337791139914]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0037bc02bdfa419974abc61817e85be4cd9625d5", "fields": {"departement": "75", "stop_lat": 48.838837106438454, "code_postal": "75116", "stop_lon": 2.262478687427494, "coord": [48.838837106438454, 2.262478687427494], "stop_id": 5727675, "stop_desc": "27 RUE CLAUDE TERRASSE - 75116", "stop_name": "VERSAILLES - CHARDON LAGACHE"}, "geometry": {"type": "Point", "coordinates": [2.262478687427494, 48.838837106438454]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6cccc67b31c9b658bd053b160bf37a0be8ed9cf0", "fields": {"departement": "92", "stop_lat": 48.83884709320711, "code_postal": "92012", "stop_lon": 2.25068769582237, "coord": [48.83884709320711, 2.25068769582237], "stop_id": 5727680, "stop_desc": "8 ROUTE DE LA REINE - 92012", "stop_name": "LA TOURELLE"}, "geometry": {"type": "Point", "coordinates": [2.25068769582237, 48.83884709320711]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "01028d47dd827d47afa5006fdfb6f3779eb5088e", "fields": {"departement": "92", "stop_lat": 48.839540271584404, "code_postal": "92012", "stop_lon": 2.2404884315548563, "coord": [48.839540271584404, 2.2404884315548563], "stop_id": 5727685, "stop_desc": "71-73 ROUTE DE LA REINE - 92012", "stop_name": "ROUTE DE LA REINE - JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.2404884315548563, 48.839540271584404]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "93c118fb51f34d676fe515ddaf957812911dd5a9", "fields": {"departement": "92", "stop_lat": 48.840762178118275, "code_postal": "92012", "stop_lon": 2.2295525414529043, "coord": [48.840762178118275, 2.2295525414529043], "stop_id": 5727688, "stop_desc": "156 ROUTE DE LA REINE - 92012", "stop_name": "RHIN ET DANUBE"}, "geometry": {"type": "Point", "coordinates": [2.2295525414529043, 48.840762178118275]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "65ed447da4cba2e45b51aac4269cf70eee12a6c3", "fields": {"departement": "93", "stop_lat": 48.94493868523509, "code_postal": "93073", "stop_lon": 2.5675136575173227, "coord": [48.94493868523509, 2.5675136575173227], "stop_id": 5747138, "stop_desc": "PISTE GARE ROUTIERE - 93073", "stop_name": "VERT GALANT RER"}, "geometry": {"type": "Point", "coordinates": [2.5675136575173227, 48.94493868523509]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b03d706d71804c067621f5d640250f95e7b7b871", "fields": {"departement": "93", "stop_lat": 48.93466721910867, "code_postal": "93074", "stop_lon": 2.567249732672071, "coord": [48.93466721910867, 2.567249732672071], "stop_id": 5747141, "stop_desc": "58 RUE DE MEAUX - 93074", "stop_name": "BRAZZA"}, "geometry": {"type": "Point", "coordinates": [2.567249732672071, 48.93466721910867]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "70d6b01711f02280a74eb520f5ce0fa1d59fe6b4", "fields": {"departement": "93", "stop_lat": 48.926674619066006, "code_postal": "93046", "stop_lon": 2.544492362189119, "coord": [48.926674619066006, 2.544492362189119], "stop_id": 5747149, "stop_desc": "9 AVENUE JEAN-JACQUES ROUSSEAU - 93046", "stop_name": "JEAN-JACQUES ROUSSEAU"}, "geometry": {"type": "Point", "coordinates": [2.544492362189119, 48.926674619066006]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a938608de49e231b85ff1b2f1bf38c0bb6f68304", "fields": {"departement": "93", "stop_lat": 48.912161710038724, "code_postal": "93046", "stop_lon": 2.521950603252031, "coord": [48.912161710038724, 2.521950603252031], "stop_id": 5747160, "stop_desc": "2 AVENUE ARISTIDE BRIAND - 93046", "stop_name": "CHANZY"}, "geometry": {"type": "Point", "coordinates": [2.521950603252031, 48.912161710038724]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "86fe2168271d9f5c386e687914931903b95c00de", "fields": {"departement": "93", "stop_lat": 48.91329163826983, "code_postal": "93057", "stop_lon": 2.5053744235784774, "coord": [48.91329163826983, 2.5053744235784774], "stop_id": 5747164, "stop_desc": "FACE 42 ALLEE DE MONTHYON - 93057", "stop_name": "COLONEL FABIEN"}, "geometry": {"type": "Point", "coordinates": [2.5053744235784774, 48.91329163826983]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cd5f33f369c2b2121ac2273ae5c05e4885f3d54d", "fields": {"departement": "94", "stop_lat": 48.78788118498327, "code_postal": "94081", "stop_lon": 2.3857732964043232, "coord": [48.78788118498327, 2.3857732964043232], "stop_id": 4843476, "stop_desc": "RUE EDOUARD TIL - 94081", "stop_name": "EDOUARD TIL"}, "geometry": {"type": "Point", "coordinates": [2.3857732964043232, 48.78788118498327]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "08f37f2485edba7c5c0fdebb55f4c0241d564218", "fields": {"departement": "94", "stop_lat": 48.78959849473504, "code_postal": "94081", "stop_lon": 2.3842378148512, "coord": [48.78959849473504, 2.3842378148512], "stop_id": 4843479, "stop_desc": "11 RUE EDOUARD TIL - 94081", "stop_name": "UTRILLO"}, "geometry": {"type": "Point", "coordinates": [2.3842378148512, 48.78959849473504]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4722ff6571ef125e624292cd6e0f13d3c3d479b2", "fields": {"departement": "94", "stop_lat": 48.781664336404646, "code_postal": "94081", "stop_lon": 2.3783008403850525, "coord": [48.781664336404646, 2.3783008403850525], "stop_id": 4843517, "stop_desc": "26-28 AVENUE DU COLONEL FABIEN - 94081", "stop_name": "GROUPE SCOLAIRE JEAN - JACQUES ROUSSEAU"}, "geometry": {"type": "Point", "coordinates": [2.3783008403850525, 48.781664336404646]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0da4acaa48be7a7f351efb2a0db9be8631efbc7e", "fields": {"departement": "94", "stop_lat": 48.77512254541031, "code_postal": "94081", "stop_lon": 2.3737944884119186, "coord": [48.77512254541031, 2.3737944884119186], "stop_id": 4843522, "stop_desc": "RUE PAUL ARMANGOT - 94081", "stop_name": "CAMILLE RISCH"}, "geometry": {"type": "Point", "coordinates": [2.3737944884119186, 48.77512254541031]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "753cdf4cf7fc74c3ffd5751dd8cbc17181e3368a", "fields": {"departement": "94", "stop_lat": 48.775104498112604, "code_postal": "94081", "stop_lon": 2.3740256542080003, "coord": [48.775104498112604, 2.3740256542080003], "stop_id": 4843523, "stop_desc": "115 RUE PAUL ARMANGOT - 94081", "stop_name": "CAMILLE RISCH"}, "geometry": {"type": "Point", "coordinates": [2.3740256542080003, 48.775104498112604]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f5529ab4b767557eae609229d03ea4e7bb7e5a40", "fields": {"departement": "94", "stop_lat": 48.77347837018456, "code_postal": "94081", "stop_lon": 2.371671995688123, "coord": [48.77347837018456, 2.371671995688123], "stop_id": 4843525, "stop_desc": "48 RUE DE FRANCE - 94081", "stop_name": "CITE JARDIN"}, "geometry": {"type": "Point", "coordinates": [2.371671995688123, 48.77347837018456]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fec1fa31805e59bc1addbc42c3f54e697510ee31", "fields": {"departement": "94", "stop_lat": 48.78826237543609, "code_postal": "94081", "stop_lon": 2.375653630158941, "coord": [48.78826237543609, 2.375653630158941], "stop_id": 4843528, "stop_desc": "144 AVENUE DU COLONEL FABIEN - 94081", "stop_name": "COLONEL FABIEN"}, "geometry": {"type": "Point", "coordinates": [2.375653630158941, 48.78826237543609]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1d9d5d93cbc4596bf2afd9b0da8c1859a6eaf5dc", "fields": {"departement": "94", "stop_lat": 48.80849011317633, "code_postal": "94041", "stop_lon": 2.3863232497797227, "coord": [48.80849011317633, 2.3863232497797227], "stop_id": 4843530, "stop_desc": "13 RUE ROBESPIERRE - 94041", "stop_name": "GYMNASE AUGUSTE DELAUNE"}, "geometry": {"type": "Point", "coordinates": [2.3863232497797227, 48.80849011317633]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c1ba61a3496367f35952ad5dca90c788cc13a54d", "fields": {"departement": "75", "stop_lat": 48.82978526345046, "code_postal": "75113", "stop_lon": 2.3776037993133134, "coord": [48.82978526345046, 2.3776037993133134], "stop_id": 4843803, "stop_desc": "FACE 103 AV DE FRANCE - 75113", "stop_name": "BIBLIOTHEQUE FRANCOIS MITTERRAND"}, "geometry": {"type": "Point", "coordinates": [2.3776037993133134, 48.82978526345046]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f3ab017cb361e626a9e5cd34795c1535038e244d", "fields": {"departement": "75", "stop_lat": 48.82745038137856, "code_postal": "75113", "stop_lon": 2.3715308304362543, "coord": [48.82745038137856, 2.3715308304362543], "stop_id": 4843805, "stop_desc": "103-105 RUE DE PATAY - 75113", "stop_name": "PATAY - TOLBIAC"}, "geometry": {"type": "Point", "coordinates": [2.3715308304362543, 48.82745038137856]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2eb3a308d837869e140d1a304187bbbfd5cac853", "fields": {"departement": "94", "stop_lat": 48.81010133140996, "code_postal": "94041", "stop_lon": 2.380092353192655, "coord": [48.81010133140996, 2.380092353192655], "stop_id": 4843814, "stop_desc": "100 RUE JEAN LE GALLEU - 94041", "stop_name": "JEAN LE GALLEU"}, "geometry": {"type": "Point", "coordinates": [2.380092353192655, 48.81010133140996]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "be64772c8ed764205bdc930664d72b7f09355f0d", "fields": {"departement": "94", "stop_lat": 48.80408674502772, "code_postal": "94041", "stop_lon": 2.384713541399737, "coord": [48.80408674502772, 2.384713541399737], "stop_id": 4843818, "stop_desc": "13 RUE AMEDEE HUON - 94041", "stop_name": "SOLIDARITE - AMEDEE HUON"}, "geometry": {"type": "Point", "coordinates": [2.384713541399737, 48.80408674502772]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d26f0ea303b49e135355c9013382f1c34f62fb2c", "fields": {"departement": "94", "stop_lat": 48.79498804705973, "code_postal": "94081", "stop_lon": 2.391711256127831, "coord": [48.79498804705973, 2.391711256127831], "stop_id": 4843821, "stop_desc": "49 RUE DU GENERAL DE GAULLE - 94081", "stop_name": "MALRAUX - CHARLES INFROIT"}, "geometry": {"type": "Point", "coordinates": [2.391711256127831, 48.79498804705973]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b6b612fba2aee3e478817986f4f11402a2660549", "fields": {"departement": "94", "stop_lat": 48.78819951255128, "code_postal": "94076", "stop_lon": 2.3754903577138555, "coord": [48.78819951255128, 2.3754903577138555], "stop_id": 4843828, "stop_desc": "133 AVENUE DU COLONEL FABIEN - 94076", "stop_name": "COLONEL FABIEN"}, "geometry": {"type": "Point", "coordinates": [2.3754903577138555, 48.78819951255128]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4959d6d6d65628d7d90b40598958b26331e1b9bf", "fields": {"departement": "94", "stop_lat": 48.78568219945604, "code_postal": "94081", "stop_lon": 2.37758313609836, "coord": [48.78568219945604, 2.37758313609836], "stop_id": 4843829, "stop_desc": "91-93 AVENUE DU COLONEL FABIEN - 94081", "stop_name": "EDOUARD TREMBLAY"}, "geometry": {"type": "Point", "coordinates": [2.37758313609836, 48.78568219945604]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bef696d5f6c38d101ca42de2d53ec0ec11cbf1b7", "fields": {"departement": "93", "stop_lat": 48.924504765214316, "code_postal": "93007", "stop_lon": 2.4638695302313343, "coord": [48.924504765214316, 2.4638695302313343], "stop_id": 4889473, "stop_desc": "197 AVENUE PAUL VAILLANT COUTURIER - 93007", "stop_name": "ANGELUS - FABIEN"}, "geometry": {"type": "Point", "coordinates": [2.4638695302313343, 48.924504765214316]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7ba1cbb4f02dc528183c956a90edeb2f570463b9", "fields": {"departement": "93", "stop_lat": 48.924819263917975, "code_postal": "93007", "stop_lon": 2.4639112132405034, "coord": [48.924819263917975, 2.4639112132405034], "stop_id": 4889474, "stop_desc": "200 AVENUE PAUL VAILLANT COUTURIER - 93007", "stop_name": "ANGELUS - FABIEN"}, "geometry": {"type": "Point", "coordinates": [2.4639112132405034, 48.924819263917975]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "de77829ba450467cd1998a284321d9b713a808ce", "fields": {"departement": "93", "stop_lat": 48.925939522751285, "code_postal": "93007", "stop_lon": 2.466805283664818, "coord": [48.925939522751285, 2.466805283664818], "stop_id": 4889476, "stop_desc": "158-160 AVENUE PAUL VAILLANT COUTURIER - 93007", "stop_name": "SUFFREN"}, "geometry": {"type": "Point", "coordinates": [2.466805283664818, 48.925939522751285]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9191f8ba43f7282da5979d051ebe5c552a84e958", "fields": {"departement": "93", "stop_lat": 48.92806904712401, "code_postal": "93007", "stop_lon": 2.475157626866216, "coord": [48.92806904712401, 2.475157626866216], "stop_id": 4889481, "stop_desc": "FACE 52 AVENUE PAUL VAILLANT COUTURIER - 93007", "stop_name": "QUEBEC"}, "geometry": {"type": "Point", "coordinates": [2.475157626866216, 48.92806904712401]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "027d5a244e540d3246441731d5438dd91465f21c", "fields": {"departement": "93", "stop_lat": 48.93178471941148, "code_postal": "93005", "stop_lon": 2.4866932345626394, "coord": [48.93178471941148, 2.4866932345626394], "stop_id": 4889487, "stop_desc": "R DES PETITS PONTS - 93005", "stop_name": "LA SABLIERE"}, "geometry": {"type": "Point", "coordinates": [2.4866932345626394, 48.93178471941148]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f7af683d84e32a8bd52ab6b5fb095330895fc685", "fields": {"departement": "93", "stop_lat": 48.93037928534793, "code_postal": "93005", "stop_lon": 2.4822290533249594, "coord": [48.93037928534793, 2.4822290533249594], "stop_id": 4889490, "stop_desc": "FACE 45 AVENUE CHARLES DE GAULLE - 93005", "stop_name": "ROND-POINT PIERRE SEMARD - TURGOT"}, "geometry": {"type": "Point", "coordinates": [2.4822290533249594, 48.93037928534793]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5fb5d981af056caa01808b85a60b580489f280ee", "fields": {"departement": "93", "stop_lat": 48.91383679457352, "code_postal": "93008", "stop_lon": 2.446090473069425, "coord": [48.91383679457352, 2.446090473069425], "stop_id": 4889491, "stop_desc": "FACE 151 RUE CHARLES GIDE - 93008", "stop_name": "LES LIMITES"}, "geometry": {"type": "Point", "coordinates": [2.446090473069425, 48.91383679457352]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e0276724571403cdeca19c90bfcef8c7749e67b7", "fields": {"departement": "93", "stop_lat": 48.91080764698685, "code_postal": "93008", "stop_lon": 2.4466567527966694, "coord": [48.91080764698685, 2.4466567527966694], "stop_id": 4889496, "stop_desc": "RUE PIERRE SEMARD - 93008", "stop_name": "PIERRE SEMARD - INDEPENDANCE"}, "geometry": {"type": "Point", "coordinates": [2.4466567527966694, 48.91080764698685]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4b6da77594c73564752602885a8577a17e97834c", "fields": {"departement": "93", "stop_lat": 48.91800521382787, "code_postal": "93029", "stop_lon": 2.4477764911237525, "coord": [48.91800521382787, 2.4477764911237525], "stop_id": 4889501, "stop_desc": "80-82 AVENUE HENRI BARBUSSE - 93029", "stop_name": "JANE JOYE"}, "geometry": {"type": "Point", "coordinates": [2.4477764911237525, 48.91800521382787]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "218f4c605fb605c0215e93bbf7f023666523f833", "fields": {"departement": "93", "stop_lat": 48.92144031506802, "code_postal": "93029", "stop_lon": 2.454997880913197, "coord": [48.92144031506802, 2.454997880913197], "stop_id": 4889505, "stop_desc": "168 AVENUE HENRI BARBUSSE - 93029", "stop_name": "AUGUSTE BLANQUI"}, "geometry": {"type": "Point", "coordinates": [2.454997880913197, 48.92144031506802]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2916b94c93daa632c8c3a0ff30c530712002cd9b", "fields": {"departement": "93", "stop_lat": 48.92631381258556, "code_postal": "93007", "stop_lon": 2.4696839333626395, "coord": [48.92631381258556, 2.4696839333626395], "stop_id": 4889515, "stop_desc": "FACE 124 AVENUE PAUL VAILLANT COUTURIER - 93007", "stop_name": "PIERRE MONTILLET"}, "geometry": {"type": "Point", "coordinates": [2.4696839333626395, 48.92631381258556]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "85cf736415d37f45dc3e82ae1dd81050da1b2044", "fields": {"departement": "93", "stop_lat": 48.92806904712401, "code_postal": "93007", "stop_lon": 2.475157626866216, "coord": [48.92806904712401, 2.475157626866216], "stop_id": 4889519, "stop_desc": "FACE 52 AVENUE PAUL VAILLANT COUTURIER - 93007", "stop_name": "QUEBEC"}, "geometry": {"type": "Point", "coordinates": [2.475157626866216, 48.92806904712401]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4037d6b7f58486adc883ce7543a4fbb7a253c0c5", "fields": {"departement": "93", "stop_lat": 48.90946775056652, "code_postal": "93008", "stop_lon": 2.447553768193413, "coord": [48.90946775056652, 2.447553768193413], "stop_id": 4889530, "stop_desc": "AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "PIERRE SEMARD"}, "geometry": {"type": "Point", "coordinates": [2.447553768193413, 48.90946775056652]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cb12048241f2f4d2fc9b18f9761f172b7ee95f35", "fields": {"departement": "92", "stop_lat": 48.81817044569001, "code_postal": "92049", "stop_lon": 2.3253050858161446, "coord": [48.81817044569001, 2.3253050858161446], "stop_id": 4889621, "stop_desc": "52 AVENUE ARISTIDE BRIAND - 92049", "stop_name": "GABRIEL PERI"}, "geometry": {"type": "Point", "coordinates": [2.3253050858161446, 48.81817044569001]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8efc662817a13beb5276fd44a2182e9e620ed234", "fields": {"departement": "94", "stop_lat": 48.81062089478181, "code_postal": "94003", "stop_lon": 2.3268989636631354, "coord": [48.81062089478181, 2.3268989636631354], "stop_id": 4889626, "stop_desc": "3 AVENUE ARISTIDE BRIAND - 94003", "stop_name": "VACHE NOIRE"}, "geometry": {"type": "Point", "coordinates": [2.3268989636631354, 48.81062089478181]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "37ec178d09979a6d6b95859adf478a4c68a55009", "fields": {"departement": "92", "stop_lat": 48.80504808838284, "code_postal": "92007", "stop_lon": 2.3231990862390406, "coord": [48.80504808838284, 2.3231990862390406], "stop_id": 4889628, "stop_desc": "FACE 21 AVENUE VICTOR HUGO - 92007", "stop_name": "JEAN-MARIN NAUDIN"}, "geometry": {"type": "Point", "coordinates": [2.3231990862390406, 48.80504808838284]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4b1f0a25e13f92326daee53daf8841513cddd82b", "fields": {"departement": "92", "stop_lat": 48.80222528666044, "code_postal": "92007", "stop_lon": 2.3186282891522434, "coord": [48.80222528666044, 2.3186282891522434], "stop_id": 4889629, "stop_desc": "34 AVENUE LOUIS PASTEUR - 92007", "stop_name": "MARTYRS DE CHATEAUBRIANT"}, "geometry": {"type": "Point", "coordinates": [2.3186282891522434, 48.80222528666044]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6e806a3c2bc16dbb4615f9498c2111b05d09d9d9", "fields": {"departement": "92", "stop_lat": 48.79805476479201, "code_postal": "92007", "stop_lon": 2.3176094292017297, "coord": [48.79805476479201, 2.3176094292017297], "stop_id": 4889634, "stop_desc": "12 AVENUE LOUIS PASTEUR - 92007", "stop_name": "PASTEUR - MEUNIERS"}, "geometry": {"type": "Point", "coordinates": [2.3176094292017297, 48.79805476479201]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "51cba81f3eb299584f3190daa05cae11bb59fb50", "fields": {"departement": "92", "stop_lat": 48.78971336344474, "code_postal": "92007", "stop_lon": 2.314035111158828, "coord": [48.78971336344474, 2.314035111158828], "stop_id": 4889639, "stop_desc": "AVENUE PAUL VAILLANT COUTURIER - 92007", "stop_name": "PORT GALAND"}, "geometry": {"type": "Point", "coordinates": [2.314035111158828, 48.78971336344474]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aa92b175a71366dc1f202160a71711296aabdcfb", "fields": {"departement": "92", "stop_lat": 48.789758358425495, "code_postal": "92007", "stop_lon": 2.31432074503127, "coord": [48.789758358425495, 2.31432074503127], "stop_id": 4889640, "stop_desc": "AVENUE PAUL VAILLANT-COUTURIER - 92007", "stop_name": "PORT GALAND"}, "geometry": {"type": "Point", "coordinates": [2.31432074503127, 48.789758358425495]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f4b12fff3ca8760cdd41faf31cbfeb246ca86704", "fields": {"departement": "92", "stop_lat": 48.79189352804943, "code_postal": "92032", "stop_lon": 2.2989618677980466, "coord": [48.79189352804943, 2.2989618677980466], "stop_id": 4889652, "stop_desc": "38 AVENUE DU MARECHAL FOCH - 92032", "stop_name": "COLLEGE ROMAIN ROLLAND"}, "geometry": {"type": "Point", "coordinates": [2.2989618677980466, 48.79189352804943]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0362dba84117fef9b888a0743a9fe707125806a2", "fields": {"departement": "92", "stop_lat": 48.818062641326925, "code_postal": "92049", "stop_lon": 2.3257950701996193, "coord": [48.818062641326925, 2.3257950701996193], "stop_id": 4890498, "stop_desc": "51 BIS AVENUE ARISTIDE BRIAND - 92049", "stop_name": "GABRIEL PERI"}, "geometry": {"type": "Point", "coordinates": [2.3257950701996193, 48.818062641326925]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d4542d32cab96a2e555deb5aed924819bebfa4b0", "fields": {"departement": "92", "stop_lat": 48.80103955903768, "code_postal": "92007", "stop_lon": 2.3235267038195793, "coord": [48.80103955903768, 2.3235267038195793], "stop_id": 4890504, "stop_desc": "FACE 1 AVENUE ARISTIDE BRIAND - 92007", "stop_name": "GRANGE ORY"}, "geometry": {"type": "Point", "coordinates": [2.3235267038195793, 48.80103955903768]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "749189523fa7c3d8101162def375601591c7455b", "fields": {"departement": "92", "stop_lat": 48.78957043889509, "code_postal": "92007", "stop_lon": 2.3191089155752103, "coord": [48.78957043889509, 2.3191089155752103], "stop_id": 4890508, "stop_desc": "278 AVENUE ARISTIDE BRIAND - 92007", "stop_name": "CITE JARDINS"}, "geometry": {"type": "Point", "coordinates": [2.3191089155752103, 48.78957043889509]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b1085999b2fc620f93eb9cd3632af7683159e931", "fields": {"departement": "92", "stop_lat": 48.78596594872719, "code_postal": "92014", "stop_lon": 2.3170563365355727, "coord": [48.78596594872719, 2.3170563365355727], "stop_id": 4890509, "stop_desc": "12 BOULEVARD DU MARECHAL JOFFRE - 92014", "stop_name": "PLACE DE LA RESISTANCE - CHARLES DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.3170563365355727, 48.78596594872719]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "173217fe40ac277e7044d2b68c3a293c0995c529", "fields": {"departement": "92", "stop_lat": 48.765975131381744, "code_postal": "92002", "stop_lon": 2.3096948881143153, "coord": [48.765975131381744, 2.3096948881143153], "stop_id": 4890519, "stop_desc": "25 AVENUE RAYMOND ARON - 92002", "stop_name": "NORMANDIE"}, "geometry": {"type": "Point", "coordinates": [2.3096948881143153, 48.765975131381744]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ffddbe2812618445df535f292a7c1b3f7bf1e8d7", "fields": {"departement": "92", "stop_lat": 48.75812776706284, "code_postal": "92002", "stop_lon": 2.3066539281211798, "coord": [48.75812776706284, 2.3066539281211798], "stop_id": 4890532, "stop_desc": "63 AVENUE ARISTIDE BRIAND - 92002", "stop_name": "FERNAND FENZY"}, "geometry": {"type": "Point", "coordinates": [2.3066539281211798, 48.75812776706284]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9cce168c58e23ef46250368ea5ed9ae2450b4860", "fields": {"departement": "92", "stop_lat": 48.75533998752939, "code_postal": "92002", "stop_lon": 2.301449234971448, "coord": [48.75533998752939, 2.301449234971448], "stop_id": 4890534, "stop_desc": "FACE 16 RUE VELPEAU - 92002", "stop_name": "ANTONY RER"}, "geometry": {"type": "Point", "coordinates": [2.301449234971448, 48.75533998752939]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f9a540fc892fc8aca27da1957dceeca017089e36", "fields": {"departement": "92", "stop_lat": 48.75043325524002, "code_postal": "92002", "stop_lon": 2.3042526245193016, "coord": [48.75043325524002, 2.3042526245193016], "stop_id": 4890535, "stop_desc": "46 AVENUE DE LA DIVISION LECLERC - 92002", "stop_name": "PONT D'ANTONY"}, "geometry": {"type": "Point", "coordinates": [2.3042526245193016, 48.75043325524002]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f0c3749f9e3246165de7d6d9cbc5766bc8dbd549", "fields": {"departement": "91", "stop_lat": 48.743020909897695, "code_postal": "91689", "stop_lon": 2.317467141191928, "coord": [48.743020909897695, 2.317467141191928], "stop_id": 4890541, "stop_desc": "178 ROUTE D'ANTONY-CHARLES DE GAULLE - 91689", "stop_name": "PASCAL"}, "geometry": {"type": "Point", "coordinates": [2.317467141191928, 48.743020909897695]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9bae2ad15801010b1200241f5edb24ea38908df9", "fields": {"departement": "91", "stop_lat": 48.740459841601286, "code_postal": "91689", "stop_lon": 2.321354761735861, "coord": [48.740459841601286, 2.321354761735861], "stop_id": 4890543, "stop_desc": "ROUTE D'ANTONY-CHARLES DE GAULLE - 91689", "stop_name": "FRIBOULI"}, "geometry": {"type": "Point", "coordinates": [2.321354761735861, 48.740459841601286]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bf0cddf37f2e58ca1748ce91c122dba1616cf627", "fields": {"departement": "91", "stop_lat": 48.73289236325843, "code_postal": "91689", "stop_lon": 2.3274579495191072, "coord": [48.73289236325843, 2.3274579495191072], "stop_id": 4890546, "stop_desc": "5 RUE ANDRE DOLIMIER - 91689", "stop_name": "MAIRIE DE WISSOUS"}, "geometry": {"type": "Point", "coordinates": [2.3274579495191072, 48.73289236325843]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3522f5ab29d23694bef01ec2ee17d37a56961f1a", "fields": {"departement": "91", "stop_lat": 48.725637469477626, "code_postal": "91689", "stop_lon": 2.317106938525003, "coord": [48.725637469477626, 2.317106938525003], "stop_id": 4890553, "stop_desc": "BD DE L'EUROPE - 91689", "stop_name": "MONTAVAS"}, "geometry": {"type": "Point", "coordinates": [2.317106938525003, 48.725637469477626]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d78a7e918efa7721b91f52e243b3d427a19d6a3b", "fields": {"departement": "91", "stop_lat": 48.716395966057824, "code_postal": "91161", "stop_lon": 2.3099384915087846, "coord": [48.716395966057824, 2.3099384915087846], "stop_id": 4890554, "stop_desc": "RTE DE WISSOUS - 91161", "stop_name": "VIEILLE REMISE"}, "geometry": {"type": "Point", "coordinates": [2.3099384915087846, 48.716395966057824]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "42600888d7b574882d1cd638246dffa591fd8edc", "fields": {"departement": "91", "stop_lat": 48.70280731012724, "code_postal": "91161", "stop_lon": 2.3202119811356745, "coord": [48.70280731012724, 2.3202119811356745], "stop_id": 4890563, "stop_desc": "FACE 9 AV MAZARIN - 91161", "stop_name": "PLACE DE LA LIBERATION"}, "geometry": {"type": "Point", "coordinates": [2.3202119811356745, 48.70280731012724]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "794d89b3cadc55d919f6ed01ffdcc50f0bc46937", "fields": {"departement": "91", "stop_lat": 48.69972359172762, "code_postal": "91161", "stop_lon": 2.316152861000321, "coord": [48.69972359172762, 2.316152861000321], "stop_id": 4890564, "stop_desc": "AVENUE PIERRE BROSSOLETTE - 91161", "stop_name": "DIVISION LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.316152861000321, 48.69972359172762]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1c50193056ccf96fe3c12346928365e7d2bb20a6", "fields": {"departement": "91", "stop_lat": 48.6996427594255, "code_postal": "91161", "stop_lon": 2.316519527030894, "coord": [48.6996427594255, 2.316519527030894], "stop_id": 4890565, "stop_desc": "AVENUE PIERRE BROSSOLETTE - 91161", "stop_name": "DIVISION LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.316519527030894, 48.6996427594255]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "181832d282d70118c854debf32184da8b91d3e79", "fields": {"departement": "91", "stop_lat": 48.695398352005185, "code_postal": "91161", "stop_lon": 2.307939984216112, "coord": [48.695398352005185, 2.307939984216112], "stop_id": 4890570, "stop_desc": "51 RUE DE GRAVIGNY - 91161", "stop_name": "SAINT-ELOI"}, "geometry": {"type": "Point", "coordinates": [2.307939984216112, 48.695398352005185]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ee4d577aaf255e3d7c2fdc3d66463819f4f3b2ff", "fields": {"departement": "91", "stop_lat": 48.69547017628833, "code_postal": "91161", "stop_lon": 2.307600495734536, "coord": [48.69547017628833, 2.307600495734536], "stop_id": 4890571, "stop_desc": "52 RUE DE GRAVIGNY - 91161", "stop_name": "SAINT-ELOI"}, "geometry": {"type": "Point", "coordinates": [2.307600495734536, 48.69547017628833]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "752e358bb025a7dbf764c92908766f72b5d1ac19", "fields": {"departement": "91", "stop_lat": 48.69415489177082, "code_postal": "91345", "stop_lon": 2.2974995272158125, "coord": [48.69415489177082, 2.2974995272158125], "stop_id": 4890577, "stop_desc": "1 AVENUE DU GENERAL DE GAULLE - 91345", "stop_name": "LEONTINE SOHIER"}, "geometry": {"type": "Point", "coordinates": [2.2974995272158125, 48.69415489177082]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e011063334b1978f6522d598edc6baa3485eb38f", "fields": {"departement": "91", "stop_lat": 48.69613835362166, "code_postal": "91345", "stop_lon": 2.289337575962143, "coord": [48.69613835362166, 2.289337575962143], "stop_id": 4890584, "stop_desc": "RUE DU CANAL - 91345", "stop_name": "CANAL DE L'YVETTE"}, "geometry": {"type": "Point", "coordinates": [2.289337575962143, 48.69613835362166]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2d5288734580895e859ed8c4abb7485704f10b6d", "fields": {"departement": "91", "stop_lat": 48.697317212120595, "code_postal": "91345", "stop_lon": 2.292826140253021, "coord": [48.697317212120595, 2.292826140253021], "stop_id": 4890585, "stop_desc": "2 RUE MICHEL VINCENT - 91345", "stop_name": "PLACE CHARLES STEBER"}, "geometry": {"type": "Point", "coordinates": [2.292826140253021, 48.697317212120595]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4a9328c079806565dffcfc4f9abb008db679ae6d", "fields": {"departement": "92", "stop_lat": 48.754253556672694, "code_postal": "92002", "stop_lon": 2.3054464073012886, "coord": [48.754253556672694, 2.3054464073012886], "stop_id": 4890591, "stop_desc": "16 AVENUE ARISTIDE BRIAND - 92002", "stop_name": "AUGUSTE MOUNIE"}, "geometry": {"type": "Point", "coordinates": [2.3054464073012886, 48.754253556672694]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a2fb368a41958464050c967ec9c038eabcc89eca", "fields": {"departement": "92", "stop_lat": 48.772240461974114, "code_postal": "92014", "stop_lon": 2.312669523337748, "coord": [48.772240461974114, 2.312669523337748], "stop_id": 4890592, "stop_desc": "177-175 AVENUE DE GENERAL LECLERC - 92014", "stop_name": "LES COTTAGES"}, "geometry": {"type": "Point", "coordinates": [2.312669523337748, 48.772240461974114]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a362475039387cfc8b068ebcef2cb0568b67d60c", "fields": {"departement": "94", "stop_lat": 48.7935613440926, "code_postal": "94016", "stop_lon": 2.3210256241366607, "coord": [48.7935613440926, 2.3210256241366607], "stop_id": 4890595, "stop_desc": "127 AVENUE ARISTIDE BRIAND - 94016", "stop_name": "PONT ROYAL - RER"}, "geometry": {"type": "Point", "coordinates": [2.3210256241366607, 48.7935613440926]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ceb53fe7f4985fccb64066e34474ce92488205e7", "fields": {"departement": "94", "stop_lat": 48.796922971774215, "code_postal": "94016", "stop_lon": 2.3222625783569653, "coord": [48.796922971774215, 2.3222625783569653], "stop_id": 4890596, "stop_desc": "73 AVENUE ARISTIDE BRIAND - 94016", "stop_name": "MARCEL BONNET"}, "geometry": {"type": "Point", "coordinates": [2.3222625783569653, 48.796922971774215]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "995e8b6c1838eb829c947f353b69a666bb78e548", "fields": {"departement": "75", "stop_lat": 48.85732954239605, "code_postal": "75101", "stop_lon": 2.3463121756827907, "coord": [48.85732954239605, 2.3463121756827907], "stop_id": 5709979, "stop_desc": "FACE AU 2 QUAI DE LA MEGISSERIE - 75101", "stop_name": "CHATELET"}, "geometry": {"type": "Point", "coordinates": [2.3463121756827907, 48.85732954239605]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "110ba99eb9f0ad84595c63f84e116fdc62987128", "fields": {"departement": "75", "stop_lat": 48.86336033166581, "code_postal": "75101", "stop_lon": 2.3422402882400415, "coord": [48.86336033166581, 2.3422402882400415], "stop_id": 5709983, "stop_desc": "42 RUE DU LOUVRE - 75101", "stop_name": "COQUILLIERE - LES HALLES"}, "geometry": {"type": "Point", "coordinates": [2.3422402882400415, 48.86336033166581]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e325e95b212d31144980a040e9566ab7532c8bad", "fields": {"departement": "75", "stop_lat": 48.89531883649485, "code_postal": "75118", "stop_lon": 2.3459644289430965, "coord": [48.89531883649485, 2.3459644289430965], "stop_id": 5710000, "stop_desc": "FACE 119 RUE DU MONT CENIS - 75118", "stop_name": "ALBERT KAHN"}, "geometry": {"type": "Point", "coordinates": [2.3459644289430965, 48.89531883649485]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3e710e9dd2ef38788c0c317a7faad0bb26bca54a", "fields": {"departement": "75", "stop_lat": 48.897062389876794, "code_postal": "75118", "stop_lon": 2.3452831852737237, "coord": [48.897062389876794, 2.3452831852737237], "stop_id": 5710002, "stop_desc": "80 BOULEVARD ORNANO - 75118", "stop_name": "PORTE DE CLIGNANCOURT"}, "geometry": {"type": "Point", "coordinates": [2.3452831852737237, 48.897062389876794]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2e9570e9ee15f819b1845943ea738da8baf05787", "fields": {"departement": "75", "stop_lat": 48.89726014402725, "code_postal": "75118", "stop_lon": 2.3447107228641832, "coord": [48.89726014402725, 2.3447107228641832], "stop_id": 5710003, "stop_desc": "75 BIS BOULEVARD ORNANO - 75118", "stop_name": "PORTE DE CLIGNANCOURT"}, "geometry": {"type": "Point", "coordinates": [2.3447107228641832, 48.89726014402725]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c8a906de95af0392b13a7ca8069ff75aedda6799", "fields": {"departement": "93", "stop_lat": 48.90810772312276, "code_postal": "93070", "stop_lon": 2.332987353120165, "coord": [48.90810772312276, 2.332987353120165], "stop_id": 5710013, "stop_desc": "6 BIS RUE DES ROSIERS - 93070", "stop_name": "ERNEST RENAN"}, "geometry": {"type": "Point", "coordinates": [2.332987353120165, 48.90810772312276]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "27db151ab040f7909df35f035c51c87e1e7b19a9", "fields": {"departement": "75", "stop_lat": 48.88872221061227, "code_postal": "75118", "stop_lon": 2.3465084619449734, "coord": [48.88872221061227, 2.3465084619449734], "stop_id": 5710021, "stop_desc": "25 R RAMEY - 75118", "stop_name": "CUSTINE - RAMEY"}, "geometry": {"type": "Point", "coordinates": [2.3465084619449734, 48.88872221061227]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7fbd8a573fdb1ecae8edf844bd67f4aff9414912", "fields": {"departement": "75", "stop_lat": 48.88285357862541, "code_postal": "75109", "stop_lon": 2.3462212471785504, "coord": [48.88285357862541, 2.3462212471785504], "stop_id": 5710023, "stop_desc": "21 RUE GERANDO - 75109", "stop_name": "ROCHECHOUART - CLIGNANCOURT"}, "geometry": {"type": "Point", "coordinates": [2.3462212471785504, 48.88285357862541]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "73eb666cea4b6bbc6af68fd904e5eba4a81fa8f5", "fields": {"departement": "75", "stop_lat": 48.879366713593484, "code_postal": "75109", "stop_lon": 2.3431956537728427, "coord": [48.879366713593484, 2.3431956537728427], "stop_id": 5710025, "stop_desc": "FACE 38 RUE RODIER - 75109", "stop_name": "LA TOUR D'AUVERGNE"}, "geometry": {"type": "Point", "coordinates": [2.3431956537728427, 48.879366713593484]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f17de64adc130d2db0507996ec13cc744e505454", "fields": {"departement": "75", "stop_lat": 48.87222193151079, "code_postal": "75109", "stop_lon": 2.3400476437111686, "coord": [48.87222193151079, 2.3400476437111686], "stop_id": 5710028, "stop_desc": "1 RUE DROUOT - 75109", "stop_name": "RICHELIEU - DROUOT - MAIRIE DU 9E"}, "geometry": {"type": "Point", "coordinates": [2.3400476437111686, 48.87222193151079]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9f15b123cb95fb425304b05106efd9ef80c5207e", "fields": {"departement": "75", "stop_lat": 48.87009195431089, "code_postal": "75102", "stop_lon": 2.339053002863979, "coord": [48.87009195431089, 2.339053002863979], "stop_id": 5710029, "stop_desc": "87 RUE DE RICHELIEU - 75102", "stop_name": "RICHELIEU - 4 SEPTEMBRE"}, "geometry": {"type": "Point", "coordinates": [2.339053002863979, 48.87009195431089]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "329d2dbf253b849fb44136654b45851b3c6eb9db", "fields": {"departement": "75", "stop_lat": 48.8645556407801, "code_postal": "75101", "stop_lon": 2.3425264691880536, "coord": [48.8645556407801, 2.3425264691880536], "stop_id": 5710031, "stop_desc": "19 RUE DU LOUVRE - 75101", "stop_name": "LOUVRE - ETIENNE MARCEL"}, "geometry": {"type": "Point", "coordinates": [2.3425264691880536, 48.8645556407801]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ed8643742e05c91924582d7cd3698ba29f3171c0", "fields": {"departement": "75", "stop_lat": 48.85732954239605, "code_postal": "75101", "stop_lon": 2.3463121756827907, "coord": [48.85732954239605, 2.3463121756827907], "stop_id": 5710037, "stop_desc": "FACE AU 2 QUAI DE LA MEGISSERIE - 75101", "stop_name": "CHATELET"}, "geometry": {"type": "Point", "coordinates": [2.3463121756827907, 48.85732954239605]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cb4fbed54adc223f2feff6b0a5da12fdead5df3c", "fields": {"departement": "75", "stop_lat": 48.85988210624847, "code_postal": "75101", "stop_lon": 2.344283098140992, "coord": [48.85988210624847, 2.344283098140992], "stop_id": 5710038, "stop_desc": "128 RUE DE RIVOLI - 75101", "stop_name": "RIVOLI - PONT NEUF"}, "geometry": {"type": "Point", "coordinates": [2.344283098140992, 48.85988210624847]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "274d7ed3ec7afe587e8ceac78b17754c5cf096f5", "fields": {"departement": "75", "stop_lat": 48.860511386883175, "code_postal": "75101", "stop_lon": 2.340537373296839, "coord": [48.860511386883175, 2.340537373296839], "stop_id": 5710040, "stop_desc": "FACE 6 RUE DE L'AMIRAL DE COLIGNY - 75101", "stop_name": "LOUVRE - RIVOLI"}, "geometry": {"type": "Point", "coordinates": [2.340537373296839, 48.860511386883175]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6cd75349686b26b01c3ad66980de6194324d0abd", "fields": {"departement": "75", "stop_lat": 48.87066702165196, "code_postal": "75102", "stop_lon": 2.342935804602398, "coord": [48.87066702165196, 2.342935804602398], "stop_id": 5710046, "stop_desc": "170 RUE MONTMARTRE - 75102", "stop_name": "GRANDS BOULEVARDS"}, "geometry": {"type": "Point", "coordinates": [2.342935804602398, 48.87066702165196]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "46ed31b367cd6c6c7b8b6ab9f3006e493087030f", "fields": {"departement": "75", "stop_lat": 48.88386906642537, "code_postal": "75118", "stop_lon": 2.34710719512739, "coord": [48.88386906642537, 2.34710719512739], "stop_id": 5710051, "stop_desc": "2 RUE DE CLIGNANCOURT - 75118", "stop_name": "ROCHECHOUART - CLIGNANCOURT"}, "geometry": {"type": "Point", "coordinates": [2.34710719512739, 48.88386906642537]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c8af8bedb3d86bad78fc158780a31699b83ef5ae", "fields": {"departement": "93", "stop_lat": 48.90359626348958, "code_postal": "93070", "stop_lon": 2.339776686502514, "coord": [48.90359626348958, 2.339776686502514], "stop_id": 5710066, "stop_desc": "FACE 106 RUE DES ROSIERS - 93070", "stop_name": "PAUL BERT"}, "geometry": {"type": "Point", "coordinates": [2.339776686502514, 48.90359626348958]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "40ec29acdd14ffddba824094e378a891a3fda15d", "fields": {"departement": "93", "stop_lat": 48.903074996687764, "code_postal": "93070", "stop_lon": 2.340431012313881, "coord": [48.903074996687764, 2.340431012313881], "stop_id": 5710067, "stop_desc": "120 RUE DES ROSIERS - 93070", "stop_name": "PAUL BERT"}, "geometry": {"type": "Point", "coordinates": [2.340431012313881, 48.903074996687764]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d31092a1126400ee6863a63c9c8d75bad7a1ef9b", "fields": {"departement": "93", "stop_lat": 48.90498928761583, "code_postal": "93070", "stop_lon": 2.337500073366466, "coord": [48.90498928761583, 2.337500073366466], "stop_id": 5710069, "stop_desc": "70-68 RUE DES ROSIERS - 93070", "stop_name": "EUGENE LUMEAU - LES ECOLES"}, "geometry": {"type": "Point", "coordinates": [2.337500073366466, 48.90498928761583]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "884b47eabf50e570226967d974a3ab2b7ca9980a", "fields": {"departement": "93", "stop_lat": 48.911899977070625, "code_postal": "93070", "stop_lon": 2.328078570876754, "coord": [48.911899977070625, 2.328078570876754], "stop_id": 5710074, "stop_desc": "RUE DES BATELIERS - 93070", "stop_name": "PARVIS DES BATELIERS"}, "geometry": {"type": "Point", "coordinates": [2.328078570876754, 48.911899977070625]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "120210f23147465a8d2c67d8bfbb70443b4e2152", "fields": {"departement": "75", "stop_lat": 48.879366713593484, "code_postal": "75109", "stop_lon": 2.3431956537728427, "coord": [48.879366713593484, 2.3431956537728427], "stop_id": 5710083, "stop_desc": "FACE 38 RUE RODIER - 75109", "stop_name": "LA TOUR D'AUVERGNE"}, "geometry": {"type": "Point", "coordinates": [2.3431956537728427, 48.879366713593484]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "387a1242da1a54b6e0cb7c4ebd1a6ea35fb038d9", "fields": {"departement": "75", "stop_lat": 48.87009195431089, "code_postal": "75102", "stop_lon": 2.339053002863979, "coord": [48.87009195431089, 2.339053002863979], "stop_id": 5710087, "stop_desc": "87 RUE DE RICHELIEU - 75102", "stop_name": "RICHELIEU - 4 SEPTEMBRE"}, "geometry": {"type": "Point", "coordinates": [2.339053002863979, 48.87009195431089]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4a5e9346d6682488f688505f2674cd5ced419a11", "fields": {"departement": "75", "stop_lat": 48.89952489020208, "code_postal": "75118", "stop_lon": 2.3448609939832155, "coord": [48.89952489020208, 2.3448609939832155], "stop_id": 5726229, "stop_desc": "RUE FRANCIS DE CROISSET - 75118", "stop_name": "PORTE DE CLIGNANCOURT"}, "geometry": {"type": "Point", "coordinates": [2.3448609939832155, 48.89952489020208]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8fae23a24d9bd55249080c5fe5ffeefcaf1918a3", "fields": {"departement": "93", "stop_lat": 48.90781103560969, "code_postal": "93070", "stop_lon": 2.3440032961751727, "coord": [48.90781103560969, 2.3440032961751727], "stop_id": 5726234, "stop_desc": "72 AVENUE MICHELET - 93070", "stop_name": "CIMETIERE PARISIEN"}, "geometry": {"type": "Point", "coordinates": [2.3440032961751727, 48.90781103560969]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f2370c7c6ea994e9cb3d243271bf1d29a835131e", "fields": {"departement": "93", "stop_lat": 48.919503114484755, "code_postal": "93066", "stop_lon": 2.344413918883109, "coord": [48.919503114484755, 2.344413918883109], "stop_id": 5726240, "stop_desc": "11-9 BOULEVARD ORNANO - 93066", "stop_name": "CARREFOUR PLEYEL"}, "geometry": {"type": "Point", "coordinates": [2.344413918883109, 48.919503114484755]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "47c546f76536b862849643ef6819f0c788eb5a1d", "fields": {"departement": "93", "stop_lat": 48.93203905006368, "code_postal": "93066", "stop_lon": 2.352967895274335, "coord": [48.93203905006368, 2.352967895274335], "stop_id": 5726247, "stop_desc": "32 BOULEVARD MARCEL SEMBAT - 93066", "stop_name": "PIERRE DE GEYTER"}, "geometry": {"type": "Point", "coordinates": [2.352967895274335, 48.93203905006368]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "476af74f92095300f956c840776faad500ca1e52", "fields": {"departement": "93", "stop_lat": 48.934088379381535, "code_postal": "93066", "stop_lon": 2.3502813423714684, "coord": [48.934088379381535, 2.3502813423714684], "stop_id": 5726249, "stop_desc": "8 BOULEVARD JULES GUESDE - 93066", "stop_name": "DENFERT-ROCHEREAU"}, "geometry": {"type": "Point", "coordinates": [2.3502813423714684, 48.934088379381535]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b119341a6da6e5a0ae62e3f3486667c2460842f1", "fields": {"departement": "93", "stop_lat": 48.95039021456424, "code_postal": "93072", "stop_lon": 2.3858983142439496, "coord": [48.95039021456424, 2.3858983142439496], "stop_id": 5726267, "stop_desc": "79 BOULEVARD MAXIME GORKI - 93072", "stop_name": "LE GLOBE"}, "geometry": {"type": "Point", "coordinates": [2.3858983142439496, 48.95039021456424]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ce1b119463680ce44824e2dc38504704f15564bf", "fields": {"departement": "93", "stop_lat": 48.96281925443562, "code_postal": "93072", "stop_lon": 2.384790855872679, "coord": [48.96281925443562, 2.384790855872679], "stop_id": 5726275, "stop_desc": "FACE 37 AVENUE JULES GUESDE - 93072", "stop_name": "LEO LAGRANGE"}, "geometry": {"type": "Point", "coordinates": [2.384790855872679, 48.96281925443562]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c6b51a54cd0ac3badfae8a56c97e5690eb039526", "fields": {"departement": "93", "stop_lat": 48.966136554391404, "code_postal": "93072", "stop_lon": 2.3815864043952435, "coord": [48.966136554391404, 2.3815864043952435], "stop_id": 5726281, "stop_desc": "53 RUE JEAN JAURES - 93072", "stop_name": "REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.3815864043952435, 48.966136554391404]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cd8fb2aed8fd7d672d05a872890c6abbe2524917", "fields": {"departement": "93", "stop_lat": 48.915449987328074, "code_postal": "93066", "stop_lon": 2.34437245194712, "coord": [48.915449987328074, 2.34437245194712], "stop_id": 5726290, "stop_desc": "63-65 BOULEVARD ORNANO - 93066", "stop_name": "LANDY - ORNANO"}, "geometry": {"type": "Point", "coordinates": [2.34437245194712, 48.915449987328074]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "71a69f20254c706448e3159b6dee28e031507c28", "fields": {"departement": "93", "stop_lat": 48.919503114484755, "code_postal": "93066", "stop_lon": 2.344413918883109, "coord": [48.919503114484755, 2.344413918883109], "stop_id": 5726292, "stop_desc": "11-9 BOULEVARD ORNANO - 93066", "stop_name": "CARREFOUR PLEYEL"}, "geometry": {"type": "Point", "coordinates": [2.344413918883109, 48.919503114484755]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1cf37fbf0133636719b3a4f5a73eb793126703c8", "fields": {"departement": "75", "stop_lat": 48.89952489020208, "code_postal": "75118", "stop_lon": 2.3448609939832155, "coord": [48.89952489020208, 2.3448609939832155], "stop_id": 5726313, "stop_desc": "RUE FRANCIS DE CROISSET - 75118", "stop_name": "PORTE DE CLIGNANCOURT"}, "geometry": {"type": "Point", "coordinates": [2.3448609939832155, 48.89952489020208]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b5823d19e351da86e3e57508f6a171a2714502bf", "fields": {"departement": "93", "stop_lat": 48.90557324013011, "code_postal": "93070", "stop_lon": 2.3442892971129066, "coord": [48.90557324013011, 2.3442892971129066], "stop_id": 5726314, "stop_desc": "89-91 AVENUE MICHELET - 93070", "stop_name": "MICHELET - DOCTEUR BAUER"}, "geometry": {"type": "Point", "coordinates": [2.3442892971129066, 48.90557324013011]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ebca7d9888dd0d9a0934d5032778ef053a7347d5", "fields": {"departement": "93", "stop_lat": 48.915449987328074, "code_postal": "93066", "stop_lon": 2.34437245194712, "coord": [48.915449987328074, 2.34437245194712], "stop_id": 5726317, "stop_desc": "63-65 BOULEVARD ORNANO - 93066", "stop_name": "LANDY - ORNANO"}, "geometry": {"type": "Point", "coordinates": [2.34437245194712, 48.915449987328074]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "952ca982a9ae6ee73f0fbdca548db8186061edf3", "fields": {"departement": "93", "stop_lat": 48.919503114484755, "code_postal": "93066", "stop_lon": 2.344413918883109, "coord": [48.919503114484755, 2.344413918883109], "stop_id": 5726319, "stop_desc": "11-9 BOULEVARD ORNANO - 93066", "stop_name": "CARREFOUR PLEYEL"}, "geometry": {"type": "Point", "coordinates": [2.344413918883109, 48.919503114484755]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "01259d74b8773d0c2c49aaf4bd59b091b010508b", "fields": {"departement": "93", "stop_lat": 48.93873300725637, "code_postal": "93066", "stop_lon": 2.360581998088033, "coord": [48.93873300725637, 2.360581998088033], "stop_id": 5726327, "stop_desc": "28 BD FELIX FAURE - 93066", "stop_name": "CITE LANGEVIN"}, "geometry": {"type": "Point", "coordinates": [2.360581998088033, 48.93873300725637]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "abba0db16181747882ce188718e62428630825a3", "fields": {"departement": "93", "stop_lat": 48.94853198465507, "code_postal": "93072", "stop_lon": 2.3806435168972673, "coord": [48.94853198465507, 2.3806435168972673], "stop_id": 5726332, "stop_desc": "66 AVENUE DE STALINGRAD - 93072", "stop_name": "PAUL VAILLANT-COUTURIER"}, "geometry": {"type": "Point", "coordinates": [2.3806435168972673, 48.94853198465507]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1774b94a413354a3eef8b6b2099adbafa5397dad", "fields": {"departement": "93", "stop_lat": 48.95845026441542, "code_postal": "93059", "stop_lon": 2.358844081323728, "coord": [48.95845026441542, 2.358844081323728], "stop_id": 5726497, "stop_desc": "85 AVENUE LENINE - 93059", "stop_name": "SUZANNE VALADON"}, "geometry": {"type": "Point", "coordinates": [2.358844081323728, 48.95845026441542]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "477f27546422d5c50c22aba5bb3733f7881c9fe0", "fields": {"departement": "95", "stop_lat": 48.998632157678905, "code_postal": "95585", "stop_lon": 2.3803850841361296, "coord": [48.998632157678905, 2.3803850841361296], "stop_id": 5726507, "stop_desc": "PLACE DU SOUVENIR FRANCAIS - 95585", "stop_name": "PLACE DU SOUVENIR FRANCAIS"}, "geometry": {"type": "Point", "coordinates": [2.3803850841361296, 48.998632157678905]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "64937b1a53b12db8c830c564e17d5344457b3cb8", "fields": {"departement": "95", "stop_lat": 49.008073344394354, "code_postal": "95680", "stop_lon": 2.3890670597341113, "coord": [49.008073344394354, 2.3890670597341113], "stop_id": 5726511, "stop_desc": "4 RUE GAMBETTA - 95680", "stop_name": "EGLISE DE VILLIERS-LE-BEL"}, "geometry": {"type": "Point", "coordinates": [2.3890670597341113, 49.008073344394354]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0756c696fcd45c5ebddf6bf6b68b748f2c873a9a", "fields": {"departement": "95", "stop_lat": 49.008408888844, "code_postal": "95680", "stop_lon": 2.401306837015617, "coord": [49.008408888844, 2.401306837015617], "stop_id": 5726515, "stop_desc": "RUE SIGNAC - 95680", "stop_name": "PUITS LA MARLIERE"}, "geometry": {"type": "Point", "coordinates": [2.401306837015617, 49.008408888844]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f1df6968fcf4c4d91a8c64f0d80602571d46da51", "fields": {"departement": "95", "stop_lat": 49.00539905143459, "code_postal": "95680", "stop_lon": 2.4002240243373523, "coord": [49.00539905143459, 2.4002240243373523], "stop_id": 5726516, "stop_desc": "FACE 12 AVENUE DU 8 MAI 1945 - 95680", "stop_name": "PLACE BERLIOZ"}, "geometry": {"type": "Point", "coordinates": [2.4002240243373523, 49.00539905143459]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "66aa6bab2a70e0f89f23e48c42ab83594f967a88", "fields": {"departement": "93", "stop_lat": 48.9455914628228, "code_postal": "93066", "stop_lon": 2.350652611698067, "coord": [48.9455914628228, 2.350652611698067], "stop_id": 5726532, "stop_desc": "30 AVENUE DU COLONEL FABIEN - 93066", "stop_name": "STADE AUGUSTE DELAUNE"}, "geometry": {"type": "Point", "coordinates": [2.350652611698067, 48.9455914628228]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "013610c117b38e13674d98f19e16047682b3c126", "fields": {"departement": "93", "stop_lat": 48.94561620020912, "code_postal": "93066", "stop_lon": 2.363900474685181, "coord": [48.94561620020912, 2.363900474685181], "stop_id": 5726536, "stop_desc": "AVENUE DE STALINGRAD (GARE ROUTIERE) - 93066", "stop_name": "SAINT-DENIS - UNIVERSITE"}, "geometry": {"type": "Point", "coordinates": [2.363900474685181, 48.94561620020912]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fe5c13e87d5d977be1ec0e0d6173b01e0a960858", "fields": {"departement": "93", "stop_lat": 48.94965104630664, "code_postal": "93059", "stop_lon": 2.364816738568956, "coord": [48.94965104630664, 2.364816738568956], "stop_id": 5726539, "stop_desc": "66 AVENUE EMILE ZOLA - 93059", "stop_name": "TOUSSAINT LOUVERTURE"}, "geometry": {"type": "Point", "coordinates": [2.364816738568956, 48.94965104630664]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "da92f1819718ebc6f02841fa893f8010346cbe7d", "fields": {"departement": "93", "stop_lat": 48.952555178753656, "code_postal": "93059", "stop_lon": 2.357777285486661, "coord": [48.952555178753656, 2.357777285486661], "stop_id": 5726542, "stop_desc": "AVENUE ELISEE RECLUS - 93059", "stop_name": "PETIT PIERREFITTE"}, "geometry": {"type": "Point", "coordinates": [2.357777285486661, 48.952555178753656]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0f4ce9e976ee649a1042e2a945d21c5303c41933", "fields": {"departement": "93", "stop_lat": 48.95845026441542, "code_postal": "93059", "stop_lon": 2.358844081323728, "coord": [48.95845026441542, 2.358844081323728], "stop_id": 5726544, "stop_desc": "85 AVENUE LENINE - 93059", "stop_name": "SUZANNE VALADON"}, "geometry": {"type": "Point", "coordinates": [2.358844081323728, 48.95845026441542]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8c2e77a0c8f2a420c426dc925d95957df409d049", "fields": {"departement": "93", "stop_lat": 48.96488132742599, "code_postal": "93059", "stop_lon": 2.3729321174174043, "coord": [48.96488132742599, 2.3729321174174043], "stop_id": 5726552, "stop_desc": "RUE PARMENTIER - 93059", "stop_name": "GARE DE PIERREFITTE - STAINS RER"}, "geometry": {"type": "Point", "coordinates": [2.3729321174174043, 48.96488132742599]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bc25f82aa31090448f7e172c5e993fc80904ba78", "fields": {"departement": "95", "stop_lat": 48.97653780922876, "code_postal": "95585", "stop_lon": 2.3698412254631553, "coord": [48.97653780922876, 2.3698412254631553], "stop_id": 5726558, "stop_desc": "5 BOULEVARD JACQUES COPEAU - 95585", "stop_name": "PLACE ANDRE GIDE"}, "geometry": {"type": "Point", "coordinates": [2.3698412254631553, 48.97653780922876]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6a29f553c1c9e268b855fc9882b003fcaa0f0f81", "fields": {"departement": "95", "stop_lat": 48.978695092965296, "code_postal": "95585", "stop_lon": 2.3678903135745752, "coord": [48.978695092965296, 2.3678903135745752], "stop_id": 5726562, "stop_desc": "AVENUE DE LA DIVISION LECLERC - 95585", "stop_name": "LES POIRIERS"}, "geometry": {"type": "Point", "coordinates": [2.3678903135745752, 48.978695092965296]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5ffbb8dee0195c48fbbb9b2ef9c14ab76ab57344", "fields": {"departement": "95", "stop_lat": 48.998794088785566, "code_postal": "95585", "stop_lon": 2.3798935474161667, "coord": [48.998794088785566, 2.3798935474161667], "stop_id": 5726572, "stop_desc": "1 PLACE DU SOUVENIR FRANCAIS - 95585", "stop_name": "PLACE DU SOUVENIR FRANCAIS"}, "geometry": {"type": "Point", "coordinates": [2.3798935474161667, 48.998794088785566]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0e3024a840f312ab17a2e27a2c508f39c4eae5d0", "fields": {"departement": "95", "stop_lat": 49.00265761831511, "code_postal": "95585", "stop_lon": 2.3815494199763547, "coord": [49.00265761831511, 2.3815494199763547], "stop_id": 5726573, "stop_desc": "56 AVENUE MARX DORMOY - 95585", "stop_name": "LES CHARDONNERETTES"}, "geometry": {"type": "Point", "coordinates": [2.3815494199763547, 49.00265761831511]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7ff191c9ced4731f8ab007f62b64a5b8e3608a31", "fields": {"departement": "95", "stop_lat": 49.008408888844, "code_postal": "95680", "stop_lon": 2.401306837015617, "coord": [49.008408888844, 2.401306837015617], "stop_id": 5726586, "stop_desc": "RUE SIGNAC - 95680", "stop_name": "PUITS LA MARLIERE"}, "geometry": {"type": "Point", "coordinates": [2.401306837015617, 49.008408888844]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6ccb708e1cd5fe47e725df1457ad1bf36c1067df", "fields": {"departement": "95", "stop_lat": 49.00536286775032, "code_postal": "95680", "stop_lon": 2.4006747367281758, "coord": [49.00536286775032, 2.4006747367281758], "stop_id": 5726594, "stop_desc": "FACE 22 AVENUE DU 8 MAI 1945 - 95680", "stop_name": "PLACE BERLIOZ"}, "geometry": {"type": "Point", "coordinates": [2.4006747367281758, 49.00536286775032]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dd0b6cf09a48b3c8fdfbc5ab7e88eb482d84a85e", "fields": {"departement": "95", "stop_lat": 48.99924450509074, "code_postal": "95680", "stop_lon": 2.41373762523083, "coord": [48.99924450509074, 2.41373762523083], "stop_id": 5726608, "stop_desc": "105 AVENUE PIERRE SEMARD - 95680", "stop_name": "LES CARREAUX"}, "geometry": {"type": "Point", "coordinates": [2.41373762523083, 48.99924450509074]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0cdceccc122aa900dc5ef57aa804d5b68b3c7474", "fields": {"departement": "93", "stop_lat": 48.96832287285804, "code_postal": "93059", "stop_lon": 2.3740128011987673, "coord": [48.96832287285804, 2.3740128011987673], "stop_id": 5726615, "stop_desc": "63 RUE PARMENTIER - 93059", "stop_name": "JEAN GRIGNOUX"}, "geometry": {"type": "Point", "coordinates": [2.3740128011987673, 48.96832287285804]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "29f823ae2ad3c1bfb0f38fbf52a85a63ac740462", "fields": {"departement": "93", "stop_lat": 48.956572154957065, "code_postal": "93059", "stop_lon": 2.358242856050618, "coord": [48.956572154957065, 2.358242856050618], "stop_id": 5726617, "stop_desc": "100 AVENUE LENINE - 93059", "stop_name": "JONCHEROLLES"}, "geometry": {"type": "Point", "coordinates": [2.358242856050618, 48.956572154957065]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e261ffb4dea6d5af0d8a9dc19c1353fbad79b859", "fields": {"departement": "93", "stop_lat": 48.97075150610551, "code_postal": "93059", "stop_lon": 2.365769837853891, "coord": [48.97075150610551, 2.365769837853891], "stop_id": 5726651, "stop_desc": "FACE 128 BOULEVARD JEAN MERMOZ - 93059", "stop_name": "JACQUES PREVERT"}, "geometry": {"type": "Point", "coordinates": [2.365769837853891, 48.97075150610551]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d31e12b1b129c2e1b17bdd4746dc5c78b9c671c7", "fields": {"departement": "93", "stop_lat": 48.956572154957065, "code_postal": "93059", "stop_lon": 2.358242856050618, "coord": [48.956572154957065, 2.358242856050618], "stop_id": 5726655, "stop_desc": "100 AVENUE LENINE - 93059", "stop_name": "JONCHEROLLES"}, "geometry": {"type": "Point", "coordinates": [2.358242856050618, 48.956572154957065]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a65cb2d454011ff98c837343725b1fb75b2c46a6", "fields": {"departement": "93", "stop_lat": 48.952555178753656, "code_postal": "93059", "stop_lon": 2.357777285486661, "coord": [48.952555178753656, 2.357777285486661], "stop_id": 5726656, "stop_desc": "AVENUE ELISEE RECLUS - 93059", "stop_name": "PETIT PIERREFITTE"}, "geometry": {"type": "Point", "coordinates": [2.357777285486661, 48.952555178753656]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e6850ee5b87820eba12ecda12380a33799c961b3", "fields": {"departement": "93", "stop_lat": 48.94555310405411, "code_postal": "93066", "stop_lon": 2.3647326958539416, "coord": [48.94555310405411, 2.3647326958539416], "stop_id": 5726659, "stop_desc": "AVENUE DE STALINGRAD - 93066", "stop_name": "SAINT-DENIS - UNIVERSITE"}, "geometry": {"type": "Point", "coordinates": [2.3647326958539416, 48.94555310405411]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "48e5a5a5599e77d1873b7544ed756a3fb901d8d7", "fields": {"departement": "75", "stop_lat": 48.86123038926119, "code_postal": "75101", "stop_lon": 2.3401424006485074, "coord": [48.86123038926119, 2.3401424006485074], "stop_id": 5727630, "stop_desc": "158 RUE DE RIVOLI - 75101", "stop_name": "LOUVRE - RIVOLI"}, "geometry": {"type": "Point", "coordinates": [2.3401424006485074, 48.86123038926119]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8ba2d5e8ce7714c6cfb6a0efcb77ad501e18d471", "fields": {"departement": "75", "stop_lat": 48.865038580503956, "code_postal": "75108", "stop_lon": 2.312870733940465, "coord": [48.865038580503956, 2.312870733940465], "stop_id": 5727636, "stop_desc": "COURS LA REINE - 75108", "stop_name": "GRAND PALAIS"}, "geometry": {"type": "Point", "coordinates": [2.312870733940465, 48.865038580503956]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a8652c82ba2d50deb61a78624513e209b7b65f3b", "fields": {"departement": "75", "stop_lat": 48.86453485794995, "code_postal": "75108", "stop_lon": 2.310854887364351, "coord": [48.86453485794995, 2.310854887364351], "stop_id": 5727639, "stop_desc": "CRS LA REINE - 75108", "stop_name": "PALAIS DE LA DECOUVERTE"}, "geometry": {"type": "Point", "coordinates": [2.310854887364351, 48.86453485794995]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e7b21447234ad9b735578049167f22137df611d3", "fields": {"departement": "75", "stop_lat": 48.863956993164784, "code_postal": "75108", "stop_lon": 2.300734010361357, "coord": [48.863956993164784, 2.300734010361357], "stop_id": 5727641, "stop_desc": "AVENUE DE NEW YORK - 75108", "stop_name": "ALMA - MARCEAU"}, "geometry": {"type": "Point", "coordinates": [2.300734010361357, 48.863956993164784]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4db95e3a2599ddb8ce34d49e3677ad057665a3c5", "fields": {"departement": "75", "stop_lat": 48.86119476462691, "code_postal": "75116", "stop_lon": 2.29173227021374, "coord": [48.86119476462691, 2.29173227021374], "stop_id": 5727644, "stop_desc": "AVENUE DE NEW-YORK - 75116", "stop_name": "PONT D'IENA"}, "geometry": {"type": "Point", "coordinates": [2.29173227021374, 48.86119476462691]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ef14f22b8523d87c6af0b8530f4a5f5d1d4971e2", "fields": {"departement": "75", "stop_lat": 48.858901892869675, "code_postal": "75116", "stop_lon": 2.2889828998462702, "coord": [48.858901892869675, 2.2889828998462702], "stop_id": 5727646, "stop_desc": "62 AVENUE DE NEW-YORK - 75116", "stop_name": "LE NOTRE"}, "geometry": {"type": "Point", "coordinates": [2.2889828998462702, 48.858901892869675]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2d43ca6885e671e2ecc6a58757c61a880a805c7a", "fields": {"departement": "75", "stop_lat": 48.844710909640725, "code_postal": "75116", "stop_lon": 2.2708038155294377, "coord": [48.844710909640725, 2.2708038155294377], "stop_id": 5727668, "stop_desc": "92 BIS AVENUE DE VERSAILLES - 75116", "stop_name": "WILHEM"}, "geometry": {"type": "Point", "coordinates": [2.2708038155294377, 48.844710909640725]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bb38da671c4e59ea70b6f02650a8a730bde644d9", "fields": {"departement": "75", "stop_lat": 48.83817802656563, "code_postal": "75116", "stop_lon": 2.257864060448581, "coord": [48.83817802656563, 2.257864060448581], "stop_id": 5727676, "stop_desc": "232 AVENUE DE VERSAILLES - 75116", "stop_name": "PORTE DE SAINT-CLOUD - MURAT"}, "geometry": {"type": "Point", "coordinates": [2.257864060448581, 48.83817802656563]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "91ed9e30b531221660e58e07550dca5d1ea0283f", "fields": {"departement": "75", "stop_lat": 48.83835644512189, "code_postal": "75116", "stop_lon": 2.255889566288663, "coord": [48.83835644512189, 2.255889566288663], "stop_id": 5727678, "stop_desc": "AVENUE DE LA PORTE DE SAINT-CLOUD - 75116", "stop_name": "PORTE DE SAINT-CLOUD"}, "geometry": {"type": "Point", "coordinates": [2.255889566288663, 48.83835644512189]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1bec2d44295d39628a7b90c9f1f8284479fd4e73", "fields": {"departement": "92", "stop_lat": 48.83905032018747, "code_postal": "92012", "stop_lon": 2.246017239564007, "coord": [48.83905032018747, 2.246017239564007], "stop_id": 5727683, "stop_desc": "39 ROUTE DE LA REINE - 92012", "stop_name": "VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.246017239564007, 48.83905032018747]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "85a79df60fe77a2a132a6d4f59085f2f093ad099", "fields": {"departement": "92", "stop_lat": 48.84134695499046, "code_postal": "92064", "stop_lon": 2.220632775547223, "coord": [48.84134695499046, 2.220632775547223], "stop_id": 5727693, "stop_desc": "PISTE CIRCULAIRE OUEST DE LA PLACE CLEMENCEAU - 92064", "stop_name": "LA COLLINE"}, "geometry": {"type": "Point", "coordinates": [2.220632775547223, 48.84134695499046]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fdd0ff935fc5c312d59f88f1b9f2b2f9345b6726", "fields": {"departement": "75", "stop_lat": 48.86055619281375, "code_postal": "75101", "stop_lon": 2.330771019079064, "coord": [48.86055619281375, 2.330771019079064], "stop_id": 5727698, "stop_desc": "QUAI FRANCOIS MITTERRAND - 75101", "stop_name": "PONT ROYAL"}, "geometry": {"type": "Point", "coordinates": [2.330771019079064, 48.86055619281375]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "305fa866562d3201f671ab49019735a148d25100", "fields": {"departement": "93", "stop_lat": 48.94987273282555, "code_postal": "93073", "stop_lon": 2.5765001728142645, "coord": [48.94987273282555, 2.5765001728142645], "stop_id": 5747136, "stop_desc": "AVENUE GILBERT BERGER - 93073", "stop_name": "CITE DES DOUANIERS"}, "geometry": {"type": "Point", "coordinates": [2.5765001728142645, 48.94987273282555]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b197c9adb7ba79f69d915c1a6df9187753f933ae", "fields": {"departement": "93", "stop_lat": 48.93602836595626, "code_postal": "93071", "stop_lon": 2.53485830189382, "coord": [48.93602836595626, 2.53485830189382], "stop_id": 5747142, "stop_desc": "PLACE DE LA GARE - 93071", "stop_name": "SEVRAN - LIVRY RER"}, "geometry": {"type": "Point", "coordinates": [2.53485830189382, 48.93602836595626]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "acfdde126a3aba7b963f649bbfa30149f8b0d2fe", "fields": {"departement": "93", "stop_lat": 48.93579436962566, "code_postal": "93071", "stop_lon": 2.5350620235435417, "coord": [48.93579436962566, 2.5350620235435417], "stop_id": 5747143, "stop_desc": "5 PLACE DE LA GARE - 93071", "stop_name": "SEVRAN - LIVRY RER"}, "geometry": {"type": "Point", "coordinates": [2.5350620235435417, 48.93579436962566]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e6b55264c99af73454d066807b6a216c1171641b", "fields": {"departement": "93", "stop_lat": 48.934554640105524, "code_postal": "93071", "stop_lon": 2.5347844748975574, "coord": [48.934554640105524, 2.5347844748975574], "stop_id": 5747144, "stop_desc": "8 AVENUE DE LIVRY - 93071", "stop_name": "SEVRAN - LIVRY"}, "geometry": {"type": "Point", "coordinates": [2.5347844748975574, 48.934554640105524]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "806124eebf656f67493718495a174bf849b1a54c", "fields": {"departement": "93", "stop_lat": 48.91534153263659, "code_postal": "93046", "stop_lon": 2.528657012133192, "coord": [48.91534153263659, 2.528657012133192], "stop_id": 5747157, "stop_desc": "159 AVENUE ARISTIDE BRIAND - 93046", "stop_name": "GAMBETTA"}, "geometry": {"type": "Point", "coordinates": [2.528657012133192, 48.91534153263659]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "06f0137dd19e032b955ea202c49ed0d07bef6267", "fields": {"departement": "93", "stop_lat": 48.91477031606463, "code_postal": "93057", "stop_lon": 2.4952890088316666, "coord": [48.91477031606463, 2.4952890088316666], "stop_id": 5747171, "stop_desc": "FACE 50 BOULEVARD DE PARIS - 93057", "stop_name": "LOUISE MICHEL"}, "geometry": {"type": "Point", "coordinates": [2.4952890088316666, 48.91477031606463]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "06b026c1200429b5f776babfb7740975341fa6c4", "fields": {"departement": "93", "stop_lat": 48.906169876941505, "code_postal": "93010", "stop_lon": 2.4809479623042554, "coord": [48.906169876941505, 2.4809479623042554], "stop_id": 5747178, "stop_desc": "111 AVENUE GALLIENI - 93010", "stop_name": "AUGUSTE POLISSARD"}, "geometry": {"type": "Point", "coordinates": [2.4809479623042554, 48.906169876941505]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8319616854e2f353fce6f58c09602441af887837", "fields": {"departement": "93", "stop_lat": 48.90657485833315, "code_postal": "93008", "stop_lon": 2.4559320596369205, "coord": [48.90657485833315, 2.4559320596369205], "stop_id": 5747188, "stop_desc": "302 AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "LAMARTINE"}, "geometry": {"type": "Point", "coordinates": [2.4559320596369205, 48.90657485833315]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8edc7cf7fd3be605475f75bac5c05b1b94365fe9", "fields": {"departement": "93", "stop_lat": 48.91235422836199, "code_postal": "93008", "stop_lon": 2.435397698576254, "coord": [48.91235422836199, 2.435397698576254], "stop_id": 5747196, "stop_desc": "FACE 230 AVENUE HENRI BARBUSSE - 93008", "stop_name": "ESCADRILLE NORMANDIE NIEMEN - JEAN JAURES-TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.435397698576254, 48.91235422836199]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "20d22d4f490092b5f07e60ab58db65156f516208", "fields": {"departement": "93", "stop_lat": 48.90861280077064, "code_postal": "93008", "stop_lon": 2.4275920869735432, "coord": [48.90861280077064, 2.4275920869735432], "stop_id": 5747200, "stop_desc": "53 AVENUE HENRI BARBUSSE - 93008", "stop_name": "LYCEE ALFRED COSTES"}, "geometry": {"type": "Point", "coordinates": [2.4275920869735432, 48.90861280077064]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aea6f1720760c2c891ecbc957139937c81cf5550", "fields": {"departement": "93", "stop_lat": 48.896470092374635, "code_postal": "93055", "stop_lon": 2.401645545232717, "coord": [48.896470092374635, 2.401645545232717], "stop_id": 5747212, "stop_desc": "AVENUE DU GENERAL LECLERC - 93055", "stop_name": "PANTIN RER - MAIRIE"}, "geometry": {"type": "Point", "coordinates": [2.401645545232717, 48.896470092374635]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1a4942a8b06b56a58f073d36ab2e39570f8b4e7f", "fields": {"departement": "93", "stop_lat": 48.89394469691144, "code_postal": "93055", "stop_lon": 2.401656037394683, "coord": [48.89394469691144, 2.401656037394683], "stop_id": 5747215, "stop_desc": "FACE 34 RUE HOCHE - 93055", "stop_name": "MONTGOLFIER"}, "geometry": {"type": "Point", "coordinates": [2.401656037394683, 48.89394469691144]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2b4ff5827adb461277209109fce57d6c7908c2d8", "fields": {"departement": "93", "stop_lat": 48.891454882127, "code_postal": "93055", "stop_lon": 2.4023344067333996, "coord": [48.891454882127, 2.4023344067333996], "stop_id": 5747217, "stop_desc": "3 RUE HOCHE - 93055", "stop_name": "HOCHE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.4023344067333996, 48.891454882127]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1bf13a014bdf32367ed70246d55ad11fa4b8fad7", "fields": {"departement": "75", "stop_lat": 48.88340600662427, "code_postal": "75119", "stop_lon": 2.372181052819465, "coord": [48.88340600662427, 2.372181052819465], "stop_id": 5747225, "stop_desc": "13 AVENUE JEAN JAURES - 75119", "stop_name": "JAURES"}, "geometry": {"type": "Point", "coordinates": [2.372181052819465, 48.88340600662427]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a22084eef040c6c288c6010345a97064bc03d50f", "fields": {"departement": "93", "stop_lat": 48.90369485870172, "code_postal": "93008", "stop_lon": 2.4178635488682256, "coord": [48.90369485870172, 2.4178635488682256], "stop_id": 5747234, "stop_desc": "2-6 AVENUE HENRI BARBUSSE - 93008", "stop_name": "CHEMIN DES VIGNES"}, "geometry": {"type": "Point", "coordinates": [2.4178635488682256, 48.90369485870172]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "67bee467018eadb8c8f0746c9421a85533c97946", "fields": {"departement": "93", "stop_lat": 48.905007103245715, "code_postal": "93010", "stop_lon": 2.476268671049849, "coord": [48.905007103245715, 2.476268671049849], "stop_id": 5747237, "stop_desc": "54 AVENUE GALLIENI - 93010", "stop_name": "GATINE RN3"}, "geometry": {"type": "Point", "coordinates": [2.476268671049849, 48.905007103245715]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0f8e02d4dd8f3b0db6baad1bad11e34592c64f63", "fields": {"departement": "95", "stop_lat": 48.95529108126409, "code_postal": "95018", "stop_lon": 2.216855376493315, "coord": [48.95529108126409, 2.216855376493315], "stop_id": 5747245, "stop_desc": "RUE DES ALLOBROGES - 95018", "stop_name": "COLLEGE CLAUDE MONET"}, "geometry": {"type": "Point", "coordinates": [2.216855376493315, 48.95529108126409]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "801d086610564523b59ab3a1e56a40a2422eb245", "fields": {"departement": "95", "stop_lat": 48.94663807097142, "code_postal": "95018", "stop_lon": 2.237682296333733, "coord": [48.94663807097142, 2.237682296333733], "stop_id": 5747258, "stop_desc": "BOULEVARD DU GENERAL LECLERC - 95018", "stop_name": "CHARCOT HOPITAL"}, "geometry": {"type": "Point", "coordinates": [2.237682296333733, 48.94663807097142]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "77f2b610212e8c2bfc566a4ea6282f173073d5b6", "fields": {"departement": "95", "stop_lat": 48.94696689774625, "code_postal": "95018", "stop_lon": 2.2566057295781374, "coord": [48.94696689774625, 2.2566057295781374], "stop_id": 5747270, "stop_desc": "39 BOULEVARD KARL MARX - 95018", "stop_name": "GARE D'ARGENTEUIL"}, "geometry": {"type": "Point", "coordinates": [2.2566057295781374, 48.94696689774625]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5354c5a094f802b792ea86c06d9f103314c7b48d", "fields": {"departement": "92", "stop_lat": 48.933949446550976, "code_postal": "92025", "stop_lon": 2.263473509474367, "coord": [48.933949446550976, 2.263473509474367], "stop_id": 5747275, "stop_desc": "179 AVENUE DE STALINGRAD - 92025", "stop_name": "PONT DU CHEMIN DE FER"}, "geometry": {"type": "Point", "coordinates": [2.263473509474367, 48.933949446550976]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "61079ba7b82a503514a2bc649a3984f77ebe7f71", "fields": {"departement": "92", "stop_lat": 48.93206400717952, "code_postal": "92025", "stop_lon": 2.2664497055394404, "coord": [48.93206400717952, 2.2664497055394404], "stop_id": 5747278, "stop_desc": "FACE 131 AVENUE DE STALINGRAD - 92025", "stop_name": "SOLFERINO"}, "geometry": {"type": "Point", "coordinates": [2.2664497055394404, 48.93206400717952]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "44d6a91fa84771509a46ceaee51f1e7a5006c108", "fields": {"departement": "92", "stop_lat": 48.90869960422468, "code_postal": "92004", "stop_lon": 2.269385635682005, "coord": [48.90869960422468, 2.269385635682005], "stop_id": 5747288, "stop_desc": "49 AVENUE FAIDHERBE - 92004", "stop_name": "BALZAC"}, "geometry": {"type": "Point", "coordinates": [2.269385635682005, 48.90869960422468]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c4039537f060d225267679348faf46765479c879", "fields": {"departement": "92", "stop_lat": 48.90322593405253, "code_postal": "92026", "stop_lon": 2.2684385398064264, "coord": [48.90322593405253, 2.2684385398064264], "stop_id": 5747291, "stop_desc": "49-53 BOULEVARD GEORGES CLEMENCEAU - 92026", "stop_name": "PLACE DE BELGIQUE"}, "geometry": {"type": "Point", "coordinates": [2.2684385398064264, 48.90322593405253]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9d08f34c268eea88b3877fe64234e80d2e71df21", "fields": {"departement": "75", "stop_lat": 48.884698913780774, "code_postal": "75117", "stop_lon": 2.2982800773441605, "coord": [48.884698913780774, 2.2982800773441605], "stop_id": 5747299, "stop_desc": "FACE 106 AVENUE DE VILLIERS - 75117", "stop_name": "PEREIRE - LE CHATELIER"}, "geometry": {"type": "Point", "coordinates": [2.2982800773441605, 48.884698913780774]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6b323f8532587e3ba25d4c49533dd3cb575aec03", "fields": {"departement": "75", "stop_lat": 48.885210405435075, "code_postal": "75117", "stop_lon": 2.2959629973866162, "coord": [48.885210405435075, 2.2959629973866162], "stop_id": 5747300, "stop_desc": "118 AVENUE DE VILLIERS - 75117", "stop_name": "PEREIRE - LE CHATELIER"}, "geometry": {"type": "Point", "coordinates": [2.2959629973866162, 48.885210405435075]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fb04a509651efa247b4a986f8631742f891ed811", "fields": {"departement": "93", "stop_lat": 48.90759726631874, "code_postal": "93008", "stop_lon": 2.4488177035089067, "coord": [48.90759726631874, 2.4488177035089067], "stop_id": 4117656, "stop_desc": "PISTE GARE ROUTIERE - 93008", "stop_name": "BOBIGNY - PABLO PICASSO"}, "geometry": {"type": "Point", "coordinates": [2.4488177035089067, 48.90759726631874]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9a29f64a566854d15a810ffbe5a6d8d0bd9517a2", "fields": {"departement": "93", "stop_lat": 48.90676356658909, "code_postal": "93008", "stop_lon": 2.446552780443455, "coord": [48.90676356658909, 2.446552780443455], "stop_id": 4117657, "stop_desc": "15 BOULEVARD MAURICE THOREZ - 93008", "stop_name": "MAURICE THOREZ"}, "geometry": {"type": "Point", "coordinates": [2.446552780443455, 48.90676356658909]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a86a3d82ead628c208774e948ee3d3c4d2fee524", "fields": {"departement": "93", "stop_lat": 48.91044329400517, "code_postal": "93008", "stop_lon": 2.442074869299911, "coord": [48.91044329400517, 2.442074869299911], "stop_id": 4117661, "stop_desc": "80 AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "LIEUTENANT LEBRUN"}, "geometry": {"type": "Point", "coordinates": [2.442074869299911, 48.91044329400517]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9ee78fccf975574923374316250c4369d1a1f52e", "fields": {"departement": "93", "stop_lat": 48.919684999183026, "code_postal": "93029", "stop_lon": 2.438534392398405, "coord": [48.919684999183026, 2.438534392398405], "stop_id": 4117668, "stop_desc": "35 RUE ROGER SALENGRO - 93029", "stop_name": "DANTON"}, "geometry": {"type": "Point", "coordinates": [2.438534392398405, 48.919684999183026]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f493e6f51f666af3d2c5946098b4c5281737dd33", "fields": {"departement": "93", "stop_lat": 48.921498360563156, "code_postal": "93029", "stop_lon": 2.440869895425127, "coord": [48.921498360563156, 2.440869895425127], "stop_id": 4117671, "stop_desc": "FACE 5 RUE ROGER SALENGRO - 93029", "stop_name": "GEORGES DUCERF"}, "geometry": {"type": "Point", "coordinates": [2.440869895425127, 48.921498360563156]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "042ce5260047d7234aecc089838bed75a5aef12b", "fields": {"departement": "93", "stop_lat": 48.9297095738704, "code_postal": "93029", "stop_lon": 2.4536936653731236, "coord": [48.9297095738704, 2.4536936653731236], "stop_id": 4117681, "stop_desc": "155-153 RUE ANATOLE FRANCE - 93029", "stop_name": "BREMENT"}, "geometry": {"type": "Point", "coordinates": [2.4536936653731236, 48.9297095738704]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "03f6305dbef5cf7ab9850bf87826f3d343cf5db2", "fields": {"departement": "93", "stop_lat": 48.932960982135306, "code_postal": "93029", "stop_lon": 2.455569683574768, "coord": [48.932960982135306, 2.455569683574768], "stop_id": 4117682, "stop_desc": "RUE ANATOLE FRANCE - 93029", "stop_name": "DRANCY RER"}, "geometry": {"type": "Point", "coordinates": [2.455569683574768, 48.932960982135306]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c8c0f841d4a1c6c8a78695499cd5c6726a1b3d08", "fields": {"departement": "93", "stop_lat": 48.937028715881254, "code_postal": "93007", "stop_lon": 2.4588665245586574, "coord": [48.937028715881254, 2.4588665245586574], "stop_id": 4117686, "stop_desc": "FACE 25 AVENUE HENRI BARBUSSE - 93007", "stop_name": "ANCIENNE MAIRIE DE LE_BLANC-MESNIL"}, "geometry": {"type": "Point", "coordinates": [2.4588665245586574, 48.937028715881254]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "88625c5d2e23d56171f1e23071e9b002336e2b42", "fields": {"departement": "93", "stop_lat": 48.93705588476023, "code_postal": "93007", "stop_lon": 2.458661969182226, "coord": [48.93705588476023, 2.458661969182226], "stop_id": 4117687, "stop_desc": "FACE 18 AVENUE HENRI BARBUSSE - 93007", "stop_name": "ANCIENNE MAIRIE DE LE_BLANC-MESNIL"}, "geometry": {"type": "Point", "coordinates": [2.458661969182226, 48.93705588476023]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "10b4d75cddd738e3ab581bc60a00b79a0da54f15", "fields": {"departement": "93", "stop_lat": 48.94775084226808, "code_postal": "93007", "stop_lon": 2.44878143702231, "coord": [48.94775084226808, 2.44878143702231], "stop_id": 4117700, "stop_desc": "ALLEE D'ALTRINCHAM - 93007", "stop_name": "ALTRINCHAM - LENINE"}, "geometry": {"type": "Point", "coordinates": [2.44878143702231, 48.94775084226808]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6e1c2ba498b39b305c601fee44129beda0dc8a66", "fields": {"departement": "93", "stop_lat": 48.94759792571279, "code_postal": "93007", "stop_lon": 2.4581545737144146, "coord": [48.94759792571279, 2.4581545737144146], "stop_id": 4117707, "stop_desc": "AVENUE DES COSMONAUTES - 93007", "stop_name": "DIVISION LECLERC - WALLON"}, "geometry": {"type": "Point", "coordinates": [2.4581545737144146, 48.94759792571279]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f0b2aa321f3047aac15d89a5fd884db68f880ef2", "fields": {"departement": "93", "stop_lat": 48.946742961962975, "code_postal": "93007", "stop_lon": 2.4593532342715596, "coord": [48.946742961962975, 2.4593532342715596], "stop_id": 4117708, "stop_desc": "109 AVENUE DE LA DIVISION LECLERC - 93007", "stop_name": "DIVISION LECLERC - LANGEVIN"}, "geometry": {"type": "Point", "coordinates": [2.4593532342715596, 48.946742961962975]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e65d530808501b6bd5a41390ecb40a9fb4ce2966", "fields": {"departement": "93", "stop_lat": 48.91329163826983, "code_postal": "93057", "stop_lon": 2.5053744235784774, "coord": [48.91329163826983, 2.5053744235784774], "stop_id": 4118152, "stop_desc": "FACE 42 ALLEE DE MONTHYON - 93057", "stop_name": "COLONEL FABIEN"}, "geometry": {"type": "Point", "coordinates": [2.5053744235784774, 48.91329163826983]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b14d0db2335fd254aed265e918c298193ac2008d", "fields": {"departement": "93", "stop_lat": 48.91127967872346, "code_postal": "93010", "stop_lon": 2.484098069741226, "coord": [48.91127967872346, 2.484098069741226], "stop_id": 4118165, "stop_desc": "6 AVENUE MARX DORMOY - 93010", "stop_name": "MAISON DE RETRAITE"}, "geometry": {"type": "Point", "coordinates": [2.484098069741226, 48.91127967872346]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "39d97617a1275bc6e55738de504f342c6c9ffe55", "fields": {"departement": "93", "stop_lat": 48.913127869248015, "code_postal": "93010", "stop_lon": 2.486625780970679, "coord": [48.913127869248015, 2.486625780970679], "stop_id": 4118166, "stop_desc": "VOIE PROMENADE - 93010", "stop_name": "RONSARD - VILLON"}, "geometry": {"type": "Point", "coordinates": [2.486625780970679, 48.913127869248015]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "30ca9ab71d8f8fe09350dd784f38591aaca6bbe2", "fields": {"departement": "93", "stop_lat": 48.91398334545437, "code_postal": "93057", "stop_lon": 2.492327766588215, "coord": [48.91398334545437, 2.492327766588215], "stop_id": 4118167, "stop_desc": "BOULEVARD DE PARIS - 93057", "stop_name": "LYCEE CLAUDE-NICOLAS LEDOUX"}, "geometry": {"type": "Point", "coordinates": [2.492327766588215, 48.91398334545437]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cccc0e2c07a0e43a219e758fe41d3a8ec94da69c", "fields": {"departement": "94", "stop_lat": 48.77631442599705, "code_postal": "94038", "stop_lon": 2.331243898097316, "coord": [48.77631442599705, 2.331243898097316], "stop_id": 4124817, "stop_desc": "28 AVENUE LARROUMES - 94038", "stop_name": "SOUS-PREFECTURE - ROSERAIE"}, "geometry": {"type": "Point", "coordinates": [2.331243898097316, 48.77631442599705]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2011697fb89738c9d43186dff8525c346564d967", "fields": {"departement": "94", "stop_lat": 48.77827394172297, "code_postal": "94038", "stop_lon": 2.3350379495207525, "coord": [48.77827394172297, 2.3350379495207525], "stop_id": 4124818, "stop_desc": "FACE 13 RUE JEAN JAURES - 94038", "stop_name": "SOUS-PREFECTURE - EGLISE DE L'HAY-LES-ROSES"}, "geometry": {"type": "Point", "coordinates": [2.3350379495207525, 48.77827394172297]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4822bd5126a356f4886a77faa998bb3ac2eed925", "fields": {"departement": "94", "stop_lat": 48.805731980613565, "code_postal": "94003", "stop_lon": 2.3388466699122623, "coord": [48.805731980613565, 2.3388466699122623], "stop_id": 4124827, "stop_desc": "48 AVENUE FRANCOIS VINCENT RASPAIL - 94003", "stop_name": "PAUL DOUMER"}, "geometry": {"type": "Point", "coordinates": [2.3388466699122623, 48.805731980613565]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2feff1a007944fb1ed76fa9b085a6dd7f94ad526", "fields": {"departement": "94", "stop_lat": 48.8100998700319, "code_postal": "94037", "stop_lon": 2.3438817271543786, "coord": [48.8100998700319, 2.3438817271543786], "stop_id": 4124828, "stop_desc": "113 AVENUE RASPAIL - 94037", "stop_name": "FRAYSSE"}, "geometry": {"type": "Point", "coordinates": [2.3438817271543786, 48.8100998700319]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9ff80b017d7c9868f056775303fa09eae32f8520", "fields": {"departement": "94", "stop_lat": 48.8140810065842, "code_postal": "94037", "stop_lon": 2.3494346847488, "coord": [48.8140810065842, 2.3494346847488], "stop_id": 4124831, "stop_desc": "41 AVENUE RASPAIL - 94037", "stop_name": "RASPAIL - JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.3494346847488, 48.8140810065842]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "51b256fc1e256d433a8a8d3c2c256d6278092b5e", "fields": {"departement": "75", "stop_lat": 48.8201738102942, "code_postal": "75113", "stop_lon": 2.356105280265727, "coord": [48.8201738102942, 2.356105280265727], "stop_id": 4124834, "stop_desc": "25 BOULEVARD KELLERMANN - 75113", "stop_name": "DAMESME"}, "geometry": {"type": "Point", "coordinates": [2.356105280265727, 48.8201738102942]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0e8649da3cbcf03f28c954f6a3150e890ed93fd6", "fields": {"departement": "92", "stop_lat": 48.88938573912001, "code_postal": "92050", "stop_lon": 2.2046335852696703, "coord": [48.88938573912001, 2.2046335852696703], "stop_id": 4130514, "stop_desc": "92 AVENUE FREDERIC ET IRENE JOLIOT CURIE - 92050", "stop_name": "SADI-CARNOT - JOLIOT-CURIE"}, "geometry": {"type": "Point", "coordinates": [2.2046335852696703, 48.88938573912001]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cc61408a15d4ab2aa3365c087199ad58fc5193ac", "fields": {"departement": "92", "stop_lat": 48.89284340529102, "code_postal": "92050", "stop_lon": 2.2106899287691784, "coord": [48.89284340529102, 2.2106899287691784], "stop_id": 4130516, "stop_desc": "136 AVENUE FREDERIC ET IRENE JOLIOT CURIE - 92050", "stop_name": "PALAIS DES SPORTS"}, "geometry": {"type": "Point", "coordinates": [2.2106899287691784, 48.89284340529102]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ba60849434afde5e8a62fb9fc26f61bb6c07ed1f", "fields": {"departement": "92", "stop_lat": 48.89652359969501, "code_postal": "92050", "stop_lon": 2.214947321784785, "coord": [48.89652359969501, 2.214947321784785], "stop_id": 4130518, "stop_desc": "BOULEVARD JACQUES GERMAIN SOUFFLOT - 92050", "stop_name": "PREFECTURE DES HAUTS-DE-SEINE"}, "geometry": {"type": "Point", "coordinates": [2.214947321784785, 48.89652359969501]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0dbaa1dff9dd5c01c2ad87d2c15ca54a32d2e40a", "fields": {"departement": "92", "stop_lat": 48.90435547571391, "code_postal": "92050", "stop_lon": 2.2190050030639723, "coord": [48.90435547571391, 2.2190050030639723], "stop_id": 4130521, "stop_desc": "VOIE LATERALE - 92050", "stop_name": "NOEL PONS"}, "geometry": {"type": "Point", "coordinates": [2.2190050030639723, 48.90435547571391]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "47f421f04d3833a36124680f1ae2fd63a0f9041b", "fields": {"departement": "92", "stop_lat": 48.90763002067973, "code_postal": "92050", "stop_lon": 2.2133532477195574, "coord": [48.90763002067973, 2.2133532477195574], "stop_id": 4130522, "stop_desc": "AVENUE DE LA REPUBLIQUE - 92050", "stop_name": "PONT DE ROUEN"}, "geometry": {"type": "Point", "coordinates": [2.2133532477195574, 48.90763002067973]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "662508604569baaadc1b0a6e2e55e47473f1a0a4", "fields": {"departement": "94", "stop_lat": 48.80599906838429, "code_postal": "94019", "stop_lon": 2.555576476468647, "coord": [48.80599906838429, 2.555576476468647], "stop_id": 4130585, "stop_desc": "FACE 20 RUE DU PLESSIS TREVISE - 94019", "stop_name": "COLLEGE BOILEAU"}, "geometry": {"type": "Point", "coordinates": [2.555576476468647, 48.80599906838429]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d23aa06c244032f63f6ea57d77afd3fbf01401ff", "fields": {"departement": "78", "stop_lat": 48.94398566123074, "code_postal": "78586", "stop_lon": 2.185284227399462, "coord": [48.94398566123074, 2.185284227399462], "stop_id": 4146013, "stop_desc": "FACE 130 AVENUE DU GENERAL CHARLES DE GAULLE - 78586", "stop_name": "QUATRE CHEMINS"}, "geometry": {"type": "Point", "coordinates": [2.185284227399462, 48.94398566123074]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f0ee95c753ccd5fdd8c3d95e59e5e8ee17f75bd5", "fields": {"departement": "93", "stop_lat": 49.002643994047546, "code_postal": "93073", "stop_lon": 2.5361782210719643, "coord": [49.002643994047546, 2.5361782210719643], "stop_id": 4146090, "stop_desc": "RUE DES TERRES NOIRES - 93073", "stop_name": "RUE DU CHAPITRE"}, "geometry": {"type": "Point", "coordinates": [2.5361782210719643, 49.002643994047546]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cf69677a5d3cf0071e36e77d5f4efb82a915368b", "fields": {"departement": "95", "stop_lat": 49.00218945953258, "code_postal": "95527", "stop_lon": 2.528363818569231, "coord": [49.00218945953258, 2.528363818569231], "stop_id": 4146091, "stop_desc": "RUE DES 2 CEDRES - 95527", "stop_name": "LES 2 CEDRES"}, "geometry": {"type": "Point", "coordinates": [2.528363818569231, 49.00218945953258]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c9d725863d3e2821702f5ff7b9877279571f6c56", "fields": {"departement": "95", "stop_lat": 48.998886851137584, "code_postal": "95527", "stop_lon": 2.525606434259353, "coord": [48.998886851137584, 2.525606434259353], "stop_id": 4146092, "stop_desc": "RUE DES 2 CEDRES - 95527", "stop_name": "CARGO CENTRE"}, "geometry": {"type": "Point", "coordinates": [2.525606434259353, 48.998886851137584]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8713d0e4d563da1f86ceec13baddcd09cabaf71d", "fields": {"departement": "93", "stop_lat": 48.99460337939841, "code_postal": "93073", "stop_lon": 2.523665271336363, "coord": [48.99460337939841, 2.523665271336363], "stop_id": 4146093, "stop_desc": "RUE DES BUISSONS - 93073", "stop_name": "MARGUILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.523665271336363, 48.99460337939841]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f05160f2e80174f58006aaab58365d3d39445f86", "fields": {"departement": "93", "stop_lat": 48.9939157315064, "code_postal": "93073", "stop_lon": 2.5266398659308664, "coord": [48.9939157315064, 2.5266398659308664], "stop_id": 4146094, "stop_desc": "RUE DE LA JEUNE FILLE - 93073", "stop_name": "RUE DE LA JEUNE FILLE"}, "geometry": {"type": "Point", "coordinates": [2.5266398659308664, 48.9939157315064]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "40001297aad33155a5191a8b0e469e8e49603182", "fields": {"departement": "93", "stop_lat": 48.92414475246889, "code_postal": "93007", "stop_lon": 2.4725423425858173, "coord": [48.92414475246889, 2.4725423425858173], "stop_id": 4146100, "stop_desc": "21 AVENUE JEAN BAPTISTE BUSNEL - 93007", "stop_name": "DANIELLE CASANOVA"}, "geometry": {"type": "Point", "coordinates": [2.4725423425858173, 48.92414475246889]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f66aacfdd193e0a935e8b727482002511ef695c8", "fields": {"departement": "93", "stop_lat": 48.92212592273542, "code_postal": "93007", "stop_lon": 2.469659588543364, "coord": [48.92212592273542, 2.469659588543364], "stop_id": 4146101, "stop_desc": "66 AVENUE DE SUFFREN - 93007", "stop_name": "MATHILDE EMILIE"}, "geometry": {"type": "Point", "coordinates": [2.469659588543364, 48.92212592273542]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "32a4abcaf5d3c19032ff400b9eaf724c00546f27", "fields": {"departement": "93", "stop_lat": 48.92114424225198, "code_postal": "93007", "stop_lon": 2.471538997805475, "coord": [48.92114424225198, 2.471538997805475], "stop_id": 4146102, "stop_desc": "26 AVENUE SURCOUF - 93007", "stop_name": "SURCOUF - JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.471538997805475, 48.92114424225198]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "642348b39c47e7a6b58a9868a07405944e56746c", "fields": {"departement": "93", "stop_lat": 48.90955920281512, "code_postal": "93010", "stop_lon": 2.479948443344676, "coord": [48.90955920281512, 2.479948443344676], "stop_id": 4146108, "stop_desc": "FACE 48 ROUTE D'AULNAY - 93010", "stop_name": "GUEUGNON"}, "geometry": {"type": "Point", "coordinates": [2.479948443344676, 48.90955920281512]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ec463333064c412918345e9856249351ceed372e", "fields": {"departement": "75", "stop_lat": 48.848245981367015, "code_postal": "75111", "stop_lon": 2.398126731810536, "coord": [48.848245981367015, 2.398126731810536], "stop_id": 4146116, "stop_desc": "3 AVENUE DU TRONE - 75111", "stop_name": "NATION - PLACE DES ANTILLES"}, "geometry": {"type": "Point", "coordinates": [2.398126731810536, 48.848245981367015]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cbb557dc4ffe4c2b16415e13edb9aee782f6bbbc", "fields": {"departement": "93", "stop_lat": 49.002643994047546, "code_postal": "93073", "stop_lon": 2.5361782210719643, "coord": [49.002643994047546, 2.5361782210719643], "stop_id": 4146119, "stop_desc": "RUE DES TERRES NOIRES - 93073", "stop_name": "RUE DU CHAPITRE"}, "geometry": {"type": "Point", "coordinates": [2.5361782210719643, 49.002643994047546]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f49bf41ca19420133d07157f7398e655550f9094", "fields": {"departement": "93", "stop_lat": 48.99460337939841, "code_postal": "93073", "stop_lon": 2.523665271336363, "coord": [48.99460337939841, 2.523665271336363], "stop_id": 4146122, "stop_desc": "RUE DES BUISSONS - 93073", "stop_name": "MARGUILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.523665271336363, 48.99460337939841]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7780734b8462dace887dd9d2a1156aa4e2cea6db", "fields": {"departement": "93", "stop_lat": 48.99158529799905, "code_postal": "93073", "stop_lon": 2.528488506041771, "coord": [48.99158529799905, 2.528488506041771], "stop_id": 4146124, "stop_desc": "ROUTE DU MIDI - 93073", "stop_name": "RUE DU TE"}, "geometry": {"type": "Point", "coordinates": [2.528488506041771, 48.99158529799905]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1a07603aa96a27c7c0fd6e6b0aeef8bde41e2200", "fields": {"departement": "93", "stop_lat": 48.91332218067506, "code_postal": "93010", "stop_lon": 2.4820995089248123, "coord": [48.91332218067506, 2.4820995089248123], "stop_id": 4146135, "stop_desc": "AV HENRI VARAGNAT - 93010", "stop_name": "SUZANNE BUISSON"}, "geometry": {"type": "Point", "coordinates": [2.4820995089248123, 48.91332218067506]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a7984d200c2a2b96bdabc30d5fe2ca7f7383d480", "fields": {"departement": "75", "stop_lat": 48.848245981367015, "code_postal": "75111", "stop_lon": 2.398126731810536, "coord": [48.848245981367015, 2.398126731810536], "stop_id": 4146147, "stop_desc": "3 AVENUE DU TRONE - 75111", "stop_name": "NATION - PLACE DES ANTILLES"}, "geometry": {"type": "Point", "coordinates": [2.398126731810536, 48.848245981367015]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8376446700a6ffa96ed38ea6e172d583f355bb64", "fields": {"departement": "95", "stop_lat": 48.9769523722321, "code_postal": "95585", "stop_lon": 2.391343045670867, "coord": [48.9769523722321, 2.391343045670867], "stop_id": 4146214, "stop_desc": "0 AVENUE DU GENERAL DE GAULLE - 95585", "stop_name": "GARGES-SARCELLES RER"}, "geometry": {"type": "Point", "coordinates": [2.391343045670867, 48.9769523722321]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a23a30fafe45698e1ccee60736bc280056bc4da3", "fields": {"departement": "95", "stop_lat": 48.9792035251229, "code_postal": "95585", "stop_lon": 2.3802187110346593, "coord": [48.9792035251229, 2.3802187110346593], "stop_id": 4146218, "stop_desc": "44 AVENUE PAUL VALERY - 95585", "stop_name": "PAUL VALERY"}, "geometry": {"type": "Point", "coordinates": [2.3802187110346593, 48.9792035251229]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "84f28b6f6c78f04562cdd158522e726178096651", "fields": {"departement": "93", "stop_lat": 48.96352753276374, "code_postal": "93059", "stop_lon": 2.3598834656941707, "coord": [48.96352753276374, 2.3598834656941707], "stop_id": 4146229, "stop_desc": "BOULEVARD JEAN MERMOZ - 93059", "stop_name": "MAIRIE DE PIERREFITTE"}, "geometry": {"type": "Point", "coordinates": [2.3598834656941707, 48.96352753276374]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8d4d4960fdb4ca28574ba118983759c1a8a49809", "fields": {"departement": "77", "stop_lat": 48.855221315585304, "code_postal": "77083", "stop_lon": 2.5932653613534637, "coord": [48.855221315585304, 2.5932653613534637], "stop_id": 4146253, "stop_desc": "FACE 95 AVENUE JEAN JAURES - 77083", "stop_name": "LES IRIS"}, "geometry": {"type": "Point", "coordinates": [2.5932653613534637, 48.855221315585304]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b9f485057e9e71472597556814f85ccccb6141c7", "fields": {"departement": "95", "stop_lat": 48.99428236179967, "code_postal": "95019", "stop_lon": 2.4162840271281096, "coord": [48.99428236179967, 2.4162840271281096], "stop_id": 4179571, "stop_desc": "FACE 17 RUE JEAN LAUGERE - 95019", "stop_name": "VILLIERS LE BEL - GONESSE - ARNOUVILLE RER"}, "geometry": {"type": "Point", "coordinates": [2.4162840271281096, 48.99428236179967]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "73022077eb6ef178eee8fc05b8ad3cedede40582", "fields": {"departement": "95", "stop_lat": 49.001050525252275, "code_postal": "95680", "stop_lon": 2.4141090663154183, "coord": [49.001050525252275, 2.4141090663154183], "stop_id": 4179573, "stop_desc": "24 AVENUE ALEXIS VARAGNE - 95680", "stop_name": "VOLTAIRE"}, "geometry": {"type": "Point", "coordinates": [2.4141090663154183, 49.001050525252275]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3bfbbb301168aa01f9b3ff1a19942d2416f17ee7", "fields": {"departement": "95", "stop_lat": 49.00000767628843, "code_postal": "95680", "stop_lon": 2.414776752351441, "coord": [49.00000767628843, 2.414776752351441], "stop_id": 4179577, "stop_desc": "FACE 10 R ARTHUR RIMBAUD - 95680", "stop_name": "VOLTAIRE."}, "geometry": {"type": "Point", "coordinates": [2.414776752351441, 49.00000767628843]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "51ecf59c121dffa1d8e7ef3f4f3d5a30e46b1de3", "fields": {"departement": "93", "stop_lat": 48.925303073041064, "code_postal": "93066", "stop_lon": 2.3745277950925794, "coord": [48.925303073041064, 2.3745277950925794], "stop_id": 4179707, "stop_desc": "AVENUE DU FRANC MOISIN - 93066", "stop_name": "FEDERICO GARCIA LORCA"}, "geometry": {"type": "Point", "coordinates": [2.3745277950925794, 48.925303073041064]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ffa12ac7c6f2fec48ca5e9375e70507859452e61", "fields": {"departement": "93", "stop_lat": 48.92829718528401, "code_postal": "93066", "stop_lon": 2.3694835359385626, "coord": [48.92829718528401, 2.3694835359385626], "stop_id": 4179709, "stop_desc": "AVENUE DU FRANC MOISIN - 93066", "stop_name": "RU DE MONTFORT"}, "geometry": {"type": "Point", "coordinates": [2.3694835359385626, 48.92829718528401]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "88c57634ee0e9b93d45a9cc28a56e2edf2c6f91d", "fields": {"departement": "93", "stop_lat": 48.927272017174175, "code_postal": "93066", "stop_lon": 2.3718423907969646, "coord": [48.927272017174175, 2.3718423907969646], "stop_id": 4179710, "stop_desc": "AVENUE DU FRANC MOISIN - 93066", "stop_name": "RU DE MONTFORT"}, "geometry": {"type": "Point", "coordinates": [2.3718423907969646, 48.927272017174175]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ceab67ca2da9242fc4a6b1599ded85d84f46f397", "fields": {"departement": "93", "stop_lat": 48.935893608002196, "code_postal": "93066", "stop_lon": 2.3582071924056107, "coord": [48.935893608002196, 2.3582071924056107], "stop_id": 4179719, "stop_desc": "4 PLACE DE LA LEGION D'HONNEUR - 93066", "stop_name": "LEGION D'HONNEUR"}, "geometry": {"type": "Point", "coordinates": [2.3582071924056107, 48.935893608002196]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "25bdb5db8fffb8497dd2ffcd98af7d3af2e05cdd", "fields": {"departement": "93", "stop_lat": 48.9367714389766, "code_postal": "93066", "stop_lon": 2.3708120058202735, "coord": [48.9367714389766, 2.3708120058202735], "stop_id": 4179727, "stop_desc": "79 RUE DE STRASBOURG - 93066", "stop_name": "MARVILLE"}, "geometry": {"type": "Point", "coordinates": [2.3708120058202735, 48.9367714389766]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5f62c687b1cd75595d7fbef8f2b1387a32eb2164", "fields": {"departement": "93", "stop_lat": 48.94691749775996, "code_postal": "93066", "stop_lon": 2.370955021192204, "coord": [48.94691749775996, 2.370955021192204], "stop_id": 4179730, "stop_desc": "FACE 125 RUE HENRI BARBUSSE - 93066", "stop_name": "HENRI BARBUSSE"}, "geometry": {"type": "Point", "coordinates": [2.370955021192204, 48.94691749775996]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "082671bfb01b947c7920a48aa65ebd458f1f4916", "fields": {"departement": "93", "stop_lat": 48.952466555775885, "code_postal": "93072", "stop_lon": 2.384890511280149, "coord": [48.952466555775885, 2.384890511280149], "stop_id": 4179744, "stop_desc": "45 BOULEVARD MAXIME GORKI - 93072", "stop_name": "FRANCOIS BEGUE"}, "geometry": {"type": "Point", "coordinates": [2.384890511280149, 48.952466555775885]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ea610058c86a631235f75eb223ac579ad56356f3", "fields": {"departement": "93", "stop_lat": 48.93877580048832, "code_postal": "93066", "stop_lon": 2.36973560921535, "coord": [48.93877580048832, 2.36973560921535], "stop_id": 4179747, "stop_desc": "0 AV MARCEL CACHIN - 93066", "stop_name": "MARCEL CACHIN - DESNOS"}, "geometry": {"type": "Point", "coordinates": [2.36973560921535, 48.93877580048832]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "16555f2e632b77db417a3049b01faee7b688f96b", "fields": {"departement": "93", "stop_lat": 48.926119856740286, "code_postal": "93027", "stop_lon": 2.3776788496006587, "coord": [48.926119856740286, 2.3776788496006587], "stop_id": 4179753, "stop_desc": "AVENUE DU GENERAL LECLERC - 93027", "stop_name": "GENEVE"}, "geometry": {"type": "Point", "coordinates": [2.3776788496006587, 48.926119856740286]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ea9b2fbb5b447c04eafec34b67baee2772957049", "fields": {"departement": "94", "stop_lat": 48.80599906838429, "code_postal": "94019", "stop_lon": 2.555576476468647, "coord": [48.80599906838429, 2.555576476468647], "stop_id": 4180926, "stop_desc": "FACE 20 RUE DU PLESSIS TREVISE - 94019", "stop_name": "COLLEGE BOILEAU"}, "geometry": {"type": "Point", "coordinates": [2.555576476468647, 48.80599906838429]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b8bcca3d3c41a1c1eeb021ee42c42299874ba4a4", "fields": {"departement": "94", "stop_lat": 48.80636069242165, "code_postal": "94017", "stop_lon": 2.549441253048244, "coord": [48.80636069242165, 2.549441253048244], "stop_id": 4180928, "stop_desc": "PLACE RODIN - 94017", "stop_name": "RODIN"}, "geometry": {"type": "Point", "coordinates": [2.549441253048244, 48.80636069242165]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "73a95855f5137f652f626cbcaadb5441b7961911", "fields": {"departement": "94", "stop_lat": 48.806201108282245, "code_postal": "94017", "stop_lon": 2.53240473152121, "coord": [48.806201108282245, 2.53240473152121], "stop_id": 4180935, "stop_desc": "AVENUE MARX DORMOY - 94017", "stop_name": "FORT DE CHAMPIGNY"}, "geometry": {"type": "Point", "coordinates": [2.53240473152121, 48.806201108282245]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "10b687515e34915cdbff315bd5af680c2822f0ac", "fields": {"departement": "93", "stop_lat": 48.86895507816368, "code_postal": "93006", "stop_lon": 2.423817439339642, "coord": [48.86895507816368, 2.423817439339642], "stop_id": 4199321, "stop_desc": "54 RUE LENINE - 93006", "stop_name": "PIERRE CURIE"}, "geometry": {"type": "Point", "coordinates": [2.423817439339642, 48.86895507816368]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6ac5ca6ee9126485d0838b23378a5fe5a6b78804", "fields": {"departement": "93", "stop_lat": 48.865780747382814, "code_postal": "93006", "stop_lon": 2.4262505714045215, "coord": [48.865780747382814, 2.4262505714045215], "stop_id": 4199324, "stop_desc": "FACE 6 RUE JEAN LOLIVE - 93006", "stop_name": "CHARLES DELESCLUZE"}, "geometry": {"type": "Point", "coordinates": [2.4262505714045215, 48.865780747382814]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "54db4c0b6a33b3d49372e783a1e5f3a0955df2b6", "fields": {"departement": "93", "stop_lat": 48.8655875904924, "code_postal": "93048", "stop_lon": 2.4319853000177134, "coord": [48.8655875904924, 2.4319853000177134], "stop_id": 4199330, "stop_desc": "FACE 33 RUE DES CLOS FRANCAIS - 93048", "stop_name": "CLOS FRANCAIS"}, "geometry": {"type": "Point", "coordinates": [2.4319853000177134, 48.8655875904924]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aa23301f075f8ca4ce82d1ee74de6af2e7892db9", "fields": {"departement": "93", "stop_lat": 48.862707562958086, "code_postal": "93048", "stop_lon": 2.4369655866379767, "coord": [48.862707562958086, 2.4369655866379767], "stop_id": 4199332, "stop_desc": "80-82 AVENUE DE LA RESISTANCE - 93048", "stop_name": "RABELAIS"}, "geometry": {"type": "Point", "coordinates": [2.4369655866379767, 48.862707562958086]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6491aeef3d86f4f9a2bec0f8c9bfb8c2a2a3e968", "fields": {"departement": "93", "stop_lat": 48.85962371632797, "code_postal": "93048", "stop_lon": 2.4383489897739583, "coord": [48.85962371632797, 2.4383489897739583], "stop_id": 4199338, "stop_desc": "38 BOULEVARD ROUGET DE LISLE - 93048", "stop_name": "VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.4383489897739583, 48.85962371632797]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "29b724bca135ace2051d06251722b9b37867a854", "fields": {"departement": "93", "stop_lat": 48.8613442131349, "code_postal": "93048", "stop_lon": 2.4537581016105063, "coord": [48.8613442131349, 2.4537581016105063], "stop_id": 4199344, "stop_desc": "AVENUE JEAN MOULIN - 93048", "stop_name": "NOUVEAU CIMETIERE DE MONTREUIL"}, "geometry": {"type": "Point", "coordinates": [2.4537581016105063, 48.8613442131349]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2efd397019fc06cb8a77934ffb92cfcc4e92cba0", "fields": {"departement": "93", "stop_lat": 48.861243064637435, "code_postal": "93048", "stop_lon": 2.4560735013879555, "coord": [48.861243064637435, 2.4560735013879555], "stop_id": 4199346, "stop_desc": "RUE PAUL DOUMER - 93048", "stop_name": "SAINT-JUST"}, "geometry": {"type": "Point", "coordinates": [2.4560735013879555, 48.861243064637435]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "00e50744fecf11cb5dc594aea35ef1f08fb0fe6d", "fields": {"departement": "93", "stop_lat": 48.862933870361, "code_postal": "93048", "stop_lon": 2.4636647074052225, "coord": [48.862933870361, 2.4636647074052225], "stop_id": 4199351, "stop_desc": "134 RUE DE LA NOUVELLE FRANCE - 93048", "stop_name": "NOUVELLE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.4636647074052225, 48.862933870361]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "509645ec9fa88cb9bca503cbb93f89f53cff8774", "fields": {"departement": "93", "stop_lat": 48.86661184393446, "code_postal": "93048", "stop_lon": 2.4699673837264884, "coord": [48.86661184393446, 2.4699673837264884], "stop_id": 4199354, "stop_desc": "31 BOULEVARD THEOPHILE SUEUR - 93048", "stop_name": "PARC DE MONTREAU"}, "geometry": {"type": "Point", "coordinates": [2.4699673837264884, 48.86661184393446]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "afae41a045d9638f8b06c3168ef67f300e7bdb98", "fields": {"departement": "93", "stop_lat": 48.86464315105416, "code_postal": "93048", "stop_lon": 2.4781901745428647, "coord": [48.86464315105416, 2.4781901745428647], "stop_id": 4199361, "stop_desc": "FACE 65 RUE PIERRE BROSSOLETTE - 93048", "stop_name": "LE MORILLON"}, "geometry": {"type": "Point", "coordinates": [2.4781901745428647, 48.86464315105416]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "10a853280ed6c2e85a8d48249a3a13d577ef1c57", "fields": {"departement": "94", "stop_lat": 48.85623563273947, "code_postal": "94033", "stop_lon": 2.4817630151132914, "coord": [48.85623563273947, 2.4817630151132914], "stop_id": 4199366, "stop_desc": "FACE 18 AV CHARLES GARCIA - 94033", "stop_name": "JEAN MACE"}, "geometry": {"type": "Point", "coordinates": [2.4817630151132914, 48.85623563273947]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8fbfb2466a69f9fe4b625dfba96bb0e106df1343", "fields": {"departement": "94", "stop_lat": 48.85368401035974, "code_postal": "94033", "stop_lon": 2.488347675701163, "coord": [48.85368401035974, 2.488347675701163], "stop_id": 4199370, "stop_desc": "8 AV DU VAL DE FONTENAY - 94033", "stop_name": "VAL-DE-FONTENAY RER"}, "geometry": {"type": "Point", "coordinates": [2.488347675701163, 48.85368401035974]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "70beed59703a7038d5dcbda0c657aa7bd24662bf", "fields": {"departement": "94", "stop_lat": 48.85332347355978, "code_postal": "94033", "stop_lon": 2.4819455711423513, "coord": [48.85332347355978, 2.4819455711423513], "stop_id": 4199372, "stop_desc": "AVENUE CHARLES GARCIA - 94033", "stop_name": "CHARLES GARCIA"}, "geometry": {"type": "Point", "coordinates": [2.4819455711423513, 48.85332347355978]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9392b011269aebceac918b7577434f313e4edadf", "fields": {"departement": "94", "stop_lat": 48.844202199662014, "code_postal": "94015", "stop_lon": 2.5261205119327497, "coord": [48.844202199662014, 2.5261205119327497], "stop_id": 4208517, "stop_desc": "RUE ETIENNE DE SILHOUETTE - 94015", "stop_name": "BRY-SUR-MARNE RER"}, "geometry": {"type": "Point", "coordinates": [2.5261205119327497, 48.844202199662014]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "63c65433e00ca60ee5dbc6b97598139bcaa8138c", "fields": {"departement": "93", "stop_lat": 48.846875973117605, "code_postal": "93051", "stop_lon": 2.5501108265897154, "coord": [48.846875973117605, 2.5501108265897154], "stop_id": 4208526, "stop_desc": "24 RUE JEAN VAQUIER - 93051", "stop_name": "MAIRIE DE NOISY LE GRAND - JEAN VAQUIER"}, "geometry": {"type": "Point", "coordinates": [2.5501108265897154, 48.846875973117605]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1acde98866702f648792dc6fd66a0498ce9070cd", "fields": {"departement": "93", "stop_lat": 48.84878486098396, "code_postal": "93051", "stop_lon": 2.5531418777728834, "coord": [48.84878486098396, 2.5531418777728834], "stop_id": 4208527, "stop_desc": "FACE 7 AVENUE EMILE COSSONNEAU - 93051", "stop_name": "MAIRIE DE NOISY-LE-GRAND"}, "geometry": {"type": "Point", "coordinates": [2.5531418777728834, 48.84878486098396]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f458098c3ed173d32700c8d60a39b2616f591e6f", "fields": {"departement": "93", "stop_lat": 48.856153679124525, "code_postal": "93033", "stop_lon": 2.577116582650718, "coord": [48.856153679124525, 2.577116582650718], "stop_id": 4208535, "stop_desc": "39 AVENUE ARISTIDE BRIAND - 93033", "stop_name": "LES ROSIERS"}, "geometry": {"type": "Point", "coordinates": [2.577116582650718, 48.856153679124525]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "23c0324d96351502e9ee30d4785358b5c7e4b962", "fields": {"departement": "93", "stop_lat": 48.858427897516826, "code_postal": "93033", "stop_lon": 2.5813495010157435, "coord": [48.858427897516826, 2.5813495010157435], "stop_id": 4208537, "stop_desc": "PLACE CHURCHILL - 93033", "stop_name": "PLACE CHURCHILL"}, "geometry": {"type": "Point", "coordinates": [2.5813495010157435, 48.858427897516826]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a057ba98b06213bc7c5ae67e4e60a8b7cbb2a047", "fields": {"departement": "93", "stop_lat": 48.858401939189704, "code_postal": "93033", "stop_lon": 2.5808590358130417, "coord": [48.858401939189704, 2.5808590358130417], "stop_id": 4208538, "stop_desc": "AVENUE ARISTIDE BRIAND - 93033", "stop_name": "PLACE CHURCHILL"}, "geometry": {"type": "Point", "coordinates": [2.5808590358130417, 48.858401939189704]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "39c093239f51a8cec5146c703d809a7535b90459", "fields": {"departement": "77", "stop_lat": 48.855411989118174, "code_postal": "77083", "stop_lon": 2.5838277405949586, "coord": [48.855411989118174, 2.5838277405949586], "stop_id": 4208539, "stop_desc": "37 BOULEVARD DE LA REPUBLIQUE - 77083", "stop_name": "ROND-POINT DES PYRAMIDES"}, "geometry": {"type": "Point", "coordinates": [2.5838277405949586, 48.855411989118174]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b95a1b3c29e214120432ac689933fe361bf69b4c", "fields": {"departement": "77", "stop_lat": 48.85243498342096, "code_postal": "77083", "stop_lon": 2.609567271347769, "coord": [48.85243498342096, 2.609567271347769], "stop_id": 4208549, "stop_desc": "RUE DE PARIS - 77083", "stop_name": "MAISON DE RETRAITE"}, "geometry": {"type": "Point", "coordinates": [2.609567271347769, 48.85243498342096]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d4283a3624b34484f03a8ef51a786a4ce556c22c", "fields": {"departement": "77", "stop_lat": 48.84749560903365, "code_postal": "77337", "stop_lon": 2.615710202359631, "coord": [48.84749560903365, 2.615710202359631], "stop_id": 4208557, "stop_desc": "COURS DES DEUX PARCS - 77337", "stop_name": "COMMISSARIAT"}, "geometry": {"type": "Point", "coordinates": [2.615710202359631, 48.84749560903365]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "57b79502b97e57fa4a19e0cdad71dba594c4bc74", "fields": {"departement": "77", "stop_lat": 48.84676361821815, "code_postal": "77337", "stop_lon": 2.613568309410896, "coord": [48.84676361821815, 2.613568309410896], "stop_id": 4208558, "stop_desc": "FACE AU 7 COURS DES ROCHES - 77337", "stop_name": "COLLEGE LE LUZARD"}, "geometry": {"type": "Point", "coordinates": [2.613568309410896, 48.84676361821815]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b9793a8be12e3e075a4c109269c720a605f9ea5c", "fields": {"departement": "92", "stop_lat": 48.934124747030495, "code_postal": "92078", "stop_lon": 2.328920343406484, "coord": [48.934124747030495, 2.328920343406484], "stop_id": 4016819, "stop_desc": "0 VOI PROMENADE - 92078", "stop_name": "LA NOUE"}, "geometry": {"type": "Point", "coordinates": [2.328920343406484, 48.934124747030495]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "924700f420699eb44302e1456967d4f14f0e218f", "fields": {"departement": "92", "stop_lat": 48.93970523701681, "code_postal": "92078", "stop_lon": 2.3250178444623635, "coord": [48.93970523701681, 2.3250178444623635], "stop_id": 4016826, "stop_desc": "BOULEVARD CHARLES DE GAULLE - 92078", "stop_name": "SAINT-EXUPERY"}, "geometry": {"type": "Point", "coordinates": [2.3250178444623635, 48.93970523701681]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2d3b881750f5f0042c163300a1c16900969335aa", "fields": {"departement": "92", "stop_lat": 48.941376361861714, "code_postal": "92078", "stop_lon": 2.3214294980369004, "coord": [48.941376361861714, 2.3214294980369004], "stop_id": 4016828, "stop_desc": "BOULEVARD CHARLES DE GAULLE - 92078", "stop_name": "PARC DEPARTEMENTAL"}, "geometry": {"type": "Point", "coordinates": [2.3214294980369004, 48.941376361861714]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "484709fe5c85de2acf17044aed247a905fd9851d", "fields": {"departement": "93", "stop_lat": 48.930143799022034, "code_postal": "93066", "stop_lon": 2.3408418562442415, "coord": [48.930143799022034, 2.3408418562442415], "stop_id": 4017001, "stop_desc": "6 BOULEVARD DE LA LIBERATION - 93066", "stop_name": "QUAI DE SAINT-OUEN"}, "geometry": {"type": "Point", "coordinates": [2.3408418562442415, 48.930143799022034]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4bb9c10e7e839352279b0d5f3956b21fbc44fae4", "fields": {"departement": "93", "stop_lat": 48.92458984004984, "code_postal": "93066", "stop_lon": 2.342205269430875, "coord": [48.92458984004984, 2.342205269430875], "stop_id": 4017005, "stop_desc": "FACE 75 BOULEVARD DE LA LIBERATION - 93066", "stop_name": "AMPERE"}, "geometry": {"type": "Point", "coordinates": [2.342205269430875, 48.92458984004984]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "473b95a4b4d6771406fe4bd337aa7cc3ada4eb6b", "fields": {"departement": "93", "stop_lat": 48.917319457695, "code_postal": "93066", "stop_lon": 2.3402000729046706, "coord": [48.917319457695, 2.3402000729046706], "stop_id": 4017008, "stop_desc": "228 BOULEVARD ANATOLE FRANCE - 93066", "stop_name": "LES RENOUILLERES"}, "geometry": {"type": "Point", "coordinates": [2.3402000729046706, 48.917319457695]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2c6e3d286a09d6b28909cf5bf75a0ce1cb3eca31", "fields": {"departement": "93", "stop_lat": 48.913032678779174, "code_postal": "93070", "stop_lon": 2.335304886790752, "coord": [48.913032678779174, 2.335304886790752], "stop_id": 4017012, "stop_desc": "29 BOULEVARD JEAN JAURES - 93070", "stop_name": "JAURES - DHALENNE"}, "geometry": {"type": "Point", "coordinates": [2.335304886790752, 48.913032678779174]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f63ebac0c9aff97dbec29e36a814d41b2ac96c28", "fields": {"departement": "93", "stop_lat": 48.90945563533875, "code_postal": "93070", "stop_lon": 2.3299877631253376, "coord": [48.90945563533875, 2.3299877631253376], "stop_id": 4017015, "stop_desc": "57-59 BOULEVARD VICTOR HUGO - 93070", "stop_name": "LES BATELIERS"}, "geometry": {"type": "Point", "coordinates": [2.3299877631253376, 48.90945563533875]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ca3cf7ac4bf8b0b99885859e84cd89b83aab033d", "fields": {"departement": "93", "stop_lat": 48.90764902827149, "code_postal": "93070", "stop_lon": 2.3271113437454045, "coord": [48.90764902827149, 2.3271113437454045], "stop_id": 4017017, "stop_desc": "91 BOULEVARD VICTOR HUGO - 93070", "stop_name": "CAPITAINE GLARNER"}, "geometry": {"type": "Point", "coordinates": [2.3271113437454045, 48.90764902827149]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "267315779e0f5a37b0bd6443cc3f99bac839d37f", "fields": {"departement": "93", "stop_lat": 48.90516809669935, "code_postal": "93070", "stop_lon": 2.3223403258000137, "coord": [48.90516809669935, 2.3223403258000137], "stop_id": 4017018, "stop_desc": "BOULEVARD VICTOR HUGO - 93070", "stop_name": "SAINT-OUEN RER"}, "geometry": {"type": "Point", "coordinates": [2.3223403258000137, 48.90516809669935]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cb63ebeba875c1facdc704304eb1a0eaa6b2eddb", "fields": {"departement": "92", "stop_lat": 48.903189579089386, "code_postal": "92024", "stop_lon": 2.3138752077338864, "coord": [48.903189579089386, 2.3138752077338864], "stop_id": 4017024, "stop_desc": "4 R MADAME DE SANZILLON - 92024", "stop_name": "REPUBLIQUE - FRANCOIS MITTERRAND"}, "geometry": {"type": "Point", "coordinates": [2.3138752077338864, 48.903189579089386]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "003fd6c3855d6723709b2ab61d55d525d732e66e", "fields": {"departement": "92", "stop_lat": 48.90586686297892, "code_postal": "92024", "stop_lon": 2.3098113503006648, "coord": [48.90586686297892, 2.3098113503006648], "stop_id": 4017025, "stop_desc": "80 BOULEVARD DU GENERAL LECLERC - 92024", "stop_name": "GENERAL LECLERC - VILLENEUVE-HOPITAL BEAUJON"}, "geometry": {"type": "Point", "coordinates": [2.3098113503006648, 48.90586686297892]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "66bb8dd13e9b504b5d99eaf62be6a7c354e3dc0b", "fields": {"departement": "92", "stop_lat": 48.90075212578295, "code_postal": "92024", "stop_lon": 2.3054519129764897, "coord": [48.90075212578295, 2.3054519129764897], "stop_id": 4017029, "stop_desc": "51 BOULEVARD JEAN JAURES - 92024", "stop_name": "JAURES - BARBUSSE"}, "geometry": {"type": "Point", "coordinates": [2.3054519129764897, 48.90075212578295]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5f0fd4c8ee9ffe377dc642afd8e897222500730a", "fields": {"departement": "92", "stop_lat": 48.89657982025513, "code_postal": "92044", "stop_lon": 2.297821332188748, "coord": [48.89657982025513, 2.297821332188748], "stop_id": 4017032, "stop_desc": "1 PLACE DU 8 MAI 1945 - 92044", "stop_name": "GARE DE CLICHY - LEVALLOIS"}, "geometry": {"type": "Point", "coordinates": [2.297821332188748, 48.89657982025513]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "96262c59d8e49343959abcc5b110e280b9fe40f3", "fields": {"departement": "75", "stop_lat": 48.90125945888962, "code_postal": "75118", "stop_lon": 2.343920651748825, "coord": [48.90125945888962, 2.343920651748825], "stop_id": 5710005, "stop_desc": "0 AVENUE DE LA PORTE DE CLIGNANCOURT - 75118", "stop_name": "MICHELET - ROSIERS"}, "geometry": {"type": "Point", "coordinates": [2.343920651748825, 48.90125945888962]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c8b093a57d14cb63e1995398145b4914d4f02a68", "fields": {"departement": "93", "stop_lat": 48.90498928761583, "code_postal": "93070", "stop_lon": 2.337500073366466, "coord": [48.90498928761583, 2.337500073366466], "stop_id": 5710011, "stop_desc": "70-68 RUE DES ROSIERS - 93070", "stop_name": "EUGENE LUMEAU - LES ECOLES"}, "geometry": {"type": "Point", "coordinates": [2.337500073366466, 48.90498928761583]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "18093d42b481886e537a968da346e623b62a6a0e", "fields": {"departement": "93", "stop_lat": 48.90900642715508, "code_postal": "93070", "stop_lon": 2.3329600113604876, "coord": [48.90900642715508, 2.3329600113604876], "stop_id": 5710012, "stop_desc": "37 BIS AVENUE GABRIEL PERI - 93070", "stop_name": "ERNEST RENAN"}, "geometry": {"type": "Point", "coordinates": [2.3329600113604876, 48.90900642715508]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f5c92b671d6a6df2d5c0b5964a89447b7123ae33", "fields": {"departement": "93", "stop_lat": 48.911899977070625, "code_postal": "93070", "stop_lon": 2.328078570876754, "coord": [48.911899977070625, 2.328078570876754], "stop_id": 5710016, "stop_desc": "RUE DES BATELIERS - 93070", "stop_name": "PARVIS DES BATELIERS"}, "geometry": {"type": "Point", "coordinates": [2.328078570876754, 48.911899977070625]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "51f5aa3c4f6209d5acdcf91ddb3d64959fa2c68b", "fields": {"departement": "93", "stop_lat": 48.911846045413384, "code_postal": "93070", "stop_lon": 2.327955868807036, "coord": [48.911846045413384, 2.327955868807036], "stop_id": 5710017, "stop_desc": "RUE DES BATELIERS - 93070", "stop_name": "PARVIS DES BATELIERS"}, "geometry": {"type": "Point", "coordinates": [2.327955868807036, 48.911846045413384]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "28341511edad628674ba2ccfb4ed3cf9c2ab419e", "fields": {"departement": "75", "stop_lat": 48.85861502191514, "code_postal": "75101", "stop_lon": 2.3412319053226995, "coord": [48.85861502191514, 2.3412319053226995], "stop_id": 5710032, "stop_desc": "FACE 16 QUAI DU LOUVRE - 75101", "stop_name": "PONT NEUF - QUAI DU LOUVRE"}, "geometry": {"type": "Point", "coordinates": [2.3412319053226995, 48.85861502191514]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0e8ec73c5385d7698b9e4442bc8b2a69d1b154bf", "fields": {"departement": "75", "stop_lat": 48.85902811573952, "code_postal": "75101", "stop_lon": 2.3469390263467473, "coord": [48.85902811573952, 2.3469390263467473], "stop_id": 5710036, "stop_desc": "108 RUE DE RIVOLI - 75101", "stop_name": "CHATELET"}, "geometry": {"type": "Point", "coordinates": [2.3469390263467473, 48.85902811573952]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5ae9862ee1398b5aa1ef96081361325eba055b12", "fields": {"departement": "75", "stop_lat": 48.861203399239315, "code_postal": "75101", "stop_lon": 2.3411231334321685, "coord": [48.861203399239315, 2.3411231334321685], "stop_id": 5710039, "stop_desc": "16 RUE DU LOUVRE - 75101", "stop_name": "LOUVRE - RIVOLI"}, "geometry": {"type": "Point", "coordinates": [2.3411231334321685, 48.861203399239315]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cdfd341b2dafc45f59b23fc73e9d425baaca57b2", "fields": {"departement": "75", "stop_lat": 48.876167195986696, "code_postal": "75109", "stop_lon": 2.3440673024762932, "coord": [48.876167195986696, 2.3440673024762932], "stop_id": 5710048, "stop_desc": "19-21 RUE CADET - 75109", "stop_name": "CADET"}, "geometry": {"type": "Point", "coordinates": [2.3440673024762932, 48.876167195986696]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "214f1f98c57813848accaff60fe96eafde6d69ac", "fields": {"departement": "75", "stop_lat": 48.8789351848287, "code_postal": "75109", "stop_lon": 2.3455392709105833, "coord": [48.8789351848287, 2.3455392709105833], "stop_id": 5710049, "stop_desc": "34-36 RUE ROCHECHOUART - 75109", "stop_name": "MAUBEUGE - ROCHECHOUART"}, "geometry": {"type": "Point", "coordinates": [2.3455392709105833, 48.8789351848287]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "01b770f53e083402d6d9448a254df2320e2250e7", "fields": {"departement": "75", "stop_lat": 48.891346276137476, "code_postal": "75118", "stop_lon": 2.348730495281202, "coord": [48.891346276137476, 2.348730495281202], "stop_id": 5710055, "stop_desc": "92 RUE DE CLIGNANCOURT - 75118", "stop_name": "EUGENE SUE"}, "geometry": {"type": "Point", "coordinates": [2.348730495281202, 48.891346276137476]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8ad8b878c364a14f64181614de8ff76cc729940b", "fields": {"departement": "75", "stop_lat": 48.89293732996922, "code_postal": "75118", "stop_lon": 2.344628322964137, "coord": [48.89293732996922, 2.344628322964137], "stop_id": 5710056, "stop_desc": "FACE 79 RUE DU MONT CENIS - 75118", "stop_name": "MAIRIE DU 18E - JULES JOFFRIN"}, "geometry": {"type": "Point", "coordinates": [2.344628322964137, 48.89293732996922]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c2c0dd77032a7f12c1af2ece88e2dfc065044e0a", "fields": {"departement": "75", "stop_lat": 48.89490540634031, "code_postal": "75118", "stop_lon": 2.3462505929715185, "coord": [48.89490540634031, 2.3462505929715185], "stop_id": 5710059, "stop_desc": "55 RUE HERMEL - 75118", "stop_name": "ALBERT KAHN"}, "geometry": {"type": "Point", "coordinates": [2.3462505929715185, 48.89490540634031]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8b637f08ea3dca2b3fd85707e1627b7f75e65db7", "fields": {"departement": "75", "stop_lat": 48.90125945888962, "code_postal": "75118", "stop_lon": 2.343920651748825, "coord": [48.90125945888962, 2.343920651748825], "stop_id": 5710063, "stop_desc": "0 AVENUE DE LA PORTE DE CLIGNANCOURT - 75118", "stop_name": "MICHELET - ROSIERS"}, "geometry": {"type": "Point", "coordinates": [2.343920651748825, 48.90125945888962]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "555e6ac93ac52ac0020deace7cc0aeca762ece7d", "fields": {"departement": "93", "stop_lat": 48.915727952042886, "code_postal": "93070", "stop_lon": 2.323059975011171, "coord": [48.915727952042886, 2.323059975011171], "stop_id": 5710077, "stop_desc": "RUE DES BATELIERS - 93070", "stop_name": "QUAI DE SEINE"}, "geometry": {"type": "Point", "coordinates": [2.323059975011171, 48.915727952042886]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ecd045aee1605ea8e6fefa72ef46f1eb90c4eb77", "fields": {"departement": "75", "stop_lat": 48.88872221061227, "code_postal": "75118", "stop_lon": 2.3465084619449734, "coord": [48.88872221061227, 2.3465084619449734], "stop_id": 5710079, "stop_desc": "25 R RAMEY - 75118", "stop_name": "CUSTINE - RAMEY"}, "geometry": {"type": "Point", "coordinates": [2.3465084619449734, 48.88872221061227]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3c84b9e5ba450a2886f8813f5cc110eb6107fe72", "fields": {"departement": "75", "stop_lat": 48.89952489020208, "code_postal": "75118", "stop_lon": 2.3448609939832155, "coord": [48.89952489020208, 2.3448609939832155], "stop_id": 5726230, "stop_desc": "RUE FRANCIS DE CROISSET - 75118", "stop_name": "PORTE DE CLIGNANCOURT"}, "geometry": {"type": "Point", "coordinates": [2.3448609939832155, 48.89952489020208]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "42dc94d72fd682260d1749eb8731434075b64d1a", "fields": {"departement": "93", "stop_lat": 48.90753242030172, "code_postal": "93070", "stop_lon": 2.3442895631562375, "coord": [48.90753242030172, 2.3442895631562375], "stop_id": 5726233, "stop_desc": "65 BIS AVENUE MICHELET - 93070", "stop_name": "CIMETIERE PARISIEN"}, "geometry": {"type": "Point", "coordinates": [2.3442895631562375, 48.90753242030172]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "995a4ab820dda96c7c2b102cf148c8f4b95487b4", "fields": {"departement": "93", "stop_lat": 48.917669789937065, "code_postal": "93066", "stop_lon": 2.344100033852076, "coord": [48.917669789937065, 2.344100033852076], "stop_id": 5726239, "stop_desc": "32 BOULEVARD ORNANO - 93066", "stop_name": "DOCTEUR FINOT"}, "geometry": {"type": "Point", "coordinates": [2.344100033852076, 48.917669789937065]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dfe50d5e04c88271eea52b0984d34834a1073716", "fields": {"departement": "93", "stop_lat": 48.934250176681076, "code_postal": "93066", "stop_lon": 2.349967651030712, "coord": [48.934250176681076, 2.349967651030712], "stop_id": 5726250, "stop_desc": "FACE 8 BOULEVARD JULES GUESDE - 93066", "stop_name": "DENFERT-ROCHEREAU"}, "geometry": {"type": "Point", "coordinates": [2.349967651030712, 48.934250176681076]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bfdeb710180fd22e3d54d3fcd7258063d5427377", "fields": {"departement": "93", "stop_lat": 48.93515785623141, "code_postal": "93066", "stop_lon": 2.3498996700705987, "coord": [48.93515785623141, 2.3498996700705987], "stop_id": 5726252, "stop_desc": "33 BOULEVARD JULES GUESDE - 93066", "stop_name": "EGLISE - THEATRE GERARD PHILIPE"}, "geometry": {"type": "Point", "coordinates": [2.3498996700705987, 48.93515785623141]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "550d7c947a7727c65c01e24f7145353070e54cd7", "fields": {"departement": "93", "stop_lat": 48.938751833729015, "code_postal": "93066", "stop_lon": 2.3557119161334303, "coord": [48.938751833729015, 2.3557119161334303], "stop_id": 5726254, "stop_desc": "FACE 3 PLACE DU 8 MAI 1945 - 93066", "stop_name": "MARCHE DE SAINT-DENIS-TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.3557119161334303, 48.938751833729015]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fece2d9a6f84eb4b7a4395fb1bba103f06d991d8", "fields": {"departement": "93", "stop_lat": 48.941284376402265, "code_postal": "93066", "stop_lon": 2.3647440727267015, "coord": [48.941284376402265, 2.3647440727267015], "stop_id": 5726257, "stop_desc": "AV JEAN MOULIN - 93066", "stop_name": "LYCEE PAUL ELUARD"}, "geometry": {"type": "Point", "coordinates": [2.3647440727267015, 48.941284376402265]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1f2fb31368eba54d74bf89cec867dc46ac200a4f", "fields": {"departement": "93", "stop_lat": 48.952466555775885, "code_postal": "93072", "stop_lon": 2.384890511280149, "coord": [48.952466555775885, 2.384890511280149], "stop_id": 5726269, "stop_desc": "45 BOULEVARD MAXIME GORKI - 93072", "stop_name": "FRANCOIS BEGUE"}, "geometry": {"type": "Point", "coordinates": [2.384890511280149, 48.952466555775885]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "60c91048bcad8adab04ca8cdadc4b22c3f75dc04", "fields": {"departement": "93", "stop_lat": 48.956214648833715, "code_postal": "93072", "stop_lon": 2.3832700493319843, "coord": [48.956214648833715, 2.3832700493319843], "stop_id": 5726271, "stop_desc": "FACE 5 AVENUE MARCEL CACHIN - 93072", "stop_name": "MAIRIE DE STAINS"}, "geometry": {"type": "Point", "coordinates": [2.3832700493319843, 48.956214648833715]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b2a85591118e6deab6a9a88e288a7c8e42371b49", "fields": {"departement": "93", "stop_lat": 48.9546688790513, "code_postal": "93072", "stop_lon": 2.383418780134514, "coord": [48.9546688790513, 2.383418780134514], "stop_id": 5726272, "stop_desc": "FACE 5 BOULEVARD MAXIME GORKI - 93072", "stop_name": "MAIRIE DE STAINS"}, "geometry": {"type": "Point", "coordinates": [2.383418780134514, 48.9546688790513]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a55a453ac4f3d21a5a0813ed9666860d595b84a8", "fields": {"departement": "93", "stop_lat": 48.97005388655032, "code_postal": "93072", "stop_lon": 2.383760104694745, "coord": [48.97005388655032, 2.383760104694745], "stop_id": 5726280, "stop_desc": "FACE 109 RUE JEAN JAURES - 93072", "stop_name": "LES PREVOYANTS"}, "geometry": {"type": "Point", "coordinates": [2.383760104694745, 48.97005388655032]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b4a7a6d4a9e177453db1fa84554495025f855215", "fields": {"departement": "93", "stop_lat": 48.9300705763602, "code_postal": "93066", "stop_lon": 2.355408754687434, "coord": [48.9300705763602, 2.355408754687434], "stop_id": 5726283, "stop_desc": "3 BOULEVARD MARCEL SEMBAT - 93066", "stop_name": "PORTE DE PARIS"}, "geometry": {"type": "Point", "coordinates": [2.355408754687434, 48.9300705763602]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b4e3413f72150928f166f825e005f8356e6bf973", "fields": {"departement": "93", "stop_lat": 48.93203905006368, "code_postal": "93066", "stop_lon": 2.352967895274335, "coord": [48.93203905006368, 2.352967895274335], "stop_id": 5726296, "stop_desc": "32 BOULEVARD MARCEL SEMBAT - 93066", "stop_name": "PIERRE DE GEYTER"}, "geometry": {"type": "Point", "coordinates": [2.352967895274335, 48.93203905006368]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "54eef1cc0062f8447b60c31e7e657eebd19fb56d", "fields": {"departement": "93", "stop_lat": 48.93615537294846, "code_postal": "93066", "stop_lon": 2.3501181700852487, "coord": [48.93615537294846, 2.3501181700852487], "stop_id": 5726298, "stop_desc": "32 BOULEVARD JULES GUESDE - 93066", "stop_name": "EGLISE - THEATRE GERARD PHILIPE"}, "geometry": {"type": "Point", "coordinates": [2.3501181700852487, 48.93615537294846]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dd20fcc8218cc0fc8f1ae9812ed0094c8bd33640", "fields": {"departement": "93", "stop_lat": 48.9251643028832, "code_postal": "93066", "stop_lon": 2.3510973855469373, "coord": [48.9251643028832, 2.3510973855469373], "stop_id": 5726320, "stop_desc": "143-147 RUE JULES SAULNIER - 93066", "stop_name": "LA PLAINE SAULNIER"}, "geometry": {"type": "Point", "coordinates": [2.3510973855469373, 48.9251643028832]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aa4a70afe12427055091aaed3d59439737d26cba", "fields": {"departement": "93", "stop_lat": 48.934088379381535, "code_postal": "93066", "stop_lon": 2.3502813423714684, "coord": [48.934088379381535, 2.3502813423714684], "stop_id": 5726324, "stop_desc": "8 BOULEVARD JULES GUESDE - 93066", "stop_name": "DENFERT-ROCHEREAU"}, "geometry": {"type": "Point", "coordinates": [2.3502813423714684, 48.934088379381535]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1478a6cfa3bd10312894bda8a521d6fba29ad425", "fields": {"departement": "93", "stop_lat": 48.938347562476395, "code_postal": "93066", "stop_lon": 2.3548114262058704, "coord": [48.938347562476395, 2.3548114262058704], "stop_id": 5726326, "stop_desc": "11 BOULEVARD CARNOT - 93066", "stop_name": "MARCHE DE SAINT-DENIS-TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.3548114262058704, 48.938347562476395]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "02bea85089717e550d3dfa624793b6c2eca7d8ad", "fields": {"departement": "93", "stop_lat": 48.941284376402265, "code_postal": "93066", "stop_lon": 2.3647440727267015, "coord": [48.941284376402265, 2.3647440727267015], "stop_id": 5726328, "stop_desc": "AV JEAN MOULIN - 93066", "stop_name": "LYCEE PAUL ELUARD"}, "geometry": {"type": "Point", "coordinates": [2.3647440727267015, 48.941284376402265]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a7bbb9cf2eccf7e1eda25c0bb08c3f5d9d14157f", "fields": {"departement": "93", "stop_lat": 48.95653614039444, "code_postal": "93059", "stop_lon": 2.35862494056431, "coord": [48.95653614039444, 2.35862494056431], "stop_id": 5726496, "stop_desc": "125 AVENUE LENINE - 93059", "stop_name": "JONCHEROLLES"}, "geometry": {"type": "Point", "coordinates": [2.35862494056431, 48.95653614039444]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d335a6cae06b77e5de72ccf83ef414e7484b5345", "fields": {"departement": "93", "stop_lat": 48.963186040531, "code_postal": "93059", "stop_lon": 2.3598833163763553, "coord": [48.963186040531, 2.3598833163763553], "stop_id": 5726498, "stop_desc": "4 BOULEVARD JEAN MERMOZ - 93059", "stop_name": "MAIRIE DE PIERREFITTE"}, "geometry": {"type": "Point", "coordinates": [2.3598833163763553, 48.963186040531]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6e3c75e79c093ce99797c0a6883a532eff26021e", "fields": {"departement": "93", "stop_lat": 48.973087856611166, "code_postal": "93059", "stop_lon": 2.366426362022641, "coord": [48.973087856611166, 2.366426362022641], "stop_id": 5726501, "stop_desc": "156 BOULEVARD JEAN MERMOZ - 93059", "stop_name": "BUTTE PINSON"}, "geometry": {"type": "Point", "coordinates": [2.366426362022641, 48.973087856611166]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a36587f9541989b0d0e7e5b093f103f101d537ec", "fields": {"departement": "95", "stop_lat": 49.00591027276414, "code_postal": "95680", "stop_lon": 2.382603982284786, "coord": [49.00591027276414, 2.382603982284786], "stop_id": 5726509, "stop_desc": "FACE 33 RUE DE PARIS - 95680", "stop_name": "DOCTEUR RAMPON"}, "geometry": {"type": "Point", "coordinates": [2.382603982284786, 49.00591027276414]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b86354e53b83f758e7055653fb22695366cb597d", "fields": {"departement": "95", "stop_lat": 48.99465090332859, "code_postal": "95019", "stop_lon": 2.416134369205257, "coord": [48.99465090332859, 2.416134369205257], "stop_id": 5726520, "stop_desc": "PLACE DU GENERAL LECLERC - 95019", "stop_name": "VILLIERS LE BEL - GONESSE - ARNOUVILLE RER"}, "geometry": {"type": "Point", "coordinates": [2.416134369205257, 48.99465090332859]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2caaa6f4d3c2413be069f655dc3bbd3fe5be4594", "fields": {"departement": "93", "stop_lat": 48.958133577682524, "code_postal": "93072", "stop_lon": 2.368560484011455, "coord": [48.958133577682524, 2.368560484011455], "stop_id": 5726526, "stop_desc": "AVENUE DU COLONEL ROL-TANGUY - 93072", "stop_name": "MAURICE BOKANOWSKI."}, "geometry": {"type": "Point", "coordinates": [2.368560484011455, 48.958133577682524]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f0a49f69d69fff437efdcec4d37f8420af417ddd", "fields": {"departement": "93", "stop_lat": 48.947810390559475, "code_postal": "93066", "stop_lon": 2.356520147573685, "coord": [48.947810390559475, 2.356520147573685], "stop_id": 5726534, "stop_desc": "RUE DU 19 MARS 1962 - 93066", "stop_name": "GUYNEMER"}, "geometry": {"type": "Point", "coordinates": [2.356520147573685, 48.947810390559475]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "82665ee7ef4873fabee59c278abddaa70f6101d1", "fields": {"departement": "93", "stop_lat": 48.94555310405411, "code_postal": "93066", "stop_lon": 2.3647326958539416, "coord": [48.94555310405411, 2.3647326958539416], "stop_id": 5726537, "stop_desc": "AVENUE DE STALINGRAD - 93066", "stop_name": "SAINT-DENIS - UNIVERSITE"}, "geometry": {"type": "Point", "coordinates": [2.3647326958539416, 48.94555310405411]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c0389bcb3bd79df7cf2db61a676a2e6fd1d2e806", "fields": {"departement": "93", "stop_lat": 48.9525461304963, "code_postal": "93059", "stop_lon": 2.3581320608734195, "coord": [48.9525461304963, 2.3581320608734195], "stop_id": 5726541, "stop_desc": "AVENUE ELISEE RECLUS - 93059", "stop_name": "PETIT PIERREFITTE"}, "geometry": {"type": "Point", "coordinates": [2.3581320608734195, 48.9525461304963]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "400a2f3be64caacd98da71f4e7c91e97a82977c2", "fields": {"departement": "93", "stop_lat": 48.96535124369496, "code_postal": "93059", "stop_lon": 2.362736845979033, "coord": [48.96535124369496, 2.362736845979033], "stop_id": 5726549, "stop_desc": "33 BOULEVARD JEAN MERMOZ - 93059", "stop_name": "ALCIDE D'ORBIGNY"}, "geometry": {"type": "Point", "coordinates": [2.362736845979033, 48.96535124369496]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5b12604b955764c22e2cf27f984ef469657c306a", "fields": {"departement": "93", "stop_lat": 48.96453277877218, "code_postal": "93059", "stop_lon": 2.3657527627930537, "coord": [48.96453277877218, 2.3657527627930537], "stop_id": 5726550, "stop_desc": "46 BOULEVARD PASTEUR - 93059", "stop_name": "ETIENNE DOLET - PASTEUR"}, "geometry": {"type": "Point", "coordinates": [2.3657527627930537, 48.96453277877218]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e4b469fb36dd22d16cbaf8b620375df2d3c78b19", "fields": {"departement": "93", "stop_lat": 48.97136885870135, "code_postal": "93072", "stop_lon": 2.3755028487831007, "coord": [48.97136885870135, 2.3755028487831007], "stop_id": 5726554, "stop_desc": "FACE 119 RUE PARMENTIER - 93072", "stop_name": "LES SABLONS"}, "geometry": {"type": "Point", "coordinates": [2.3755028487831007, 48.97136885870135]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9e4ebb0db8e80c0e4230da33f318113d70c21f9b", "fields": {"departement": "95", "stop_lat": 48.97379658996038, "code_postal": "95585", "stop_lon": 2.370999829814445, "coord": [48.97379658996038, 2.370999829814445], "stop_id": 5726555, "stop_desc": "PLACE CAMILLE SAINT-SAENS - 95585", "stop_name": "CAMILLE SAINT-SAENS"}, "geometry": {"type": "Point", "coordinates": [2.370999829814445, 48.97379658996038]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8f844323abdaad6aaabda0dcf9f5f3db77d5f1d2", "fields": {"departement": "95", "stop_lat": 48.98606293116861, "code_postal": "95585", "stop_lon": 2.3718680454329575, "coord": [48.98606293116861, 2.3718680454329575], "stop_id": 5726563, "stop_desc": "AVENUE DE LA DIVISION LECLERC - 95585", "stop_name": "ROUTE DE GROSLAY"}, "geometry": {"type": "Point", "coordinates": [2.3718680454329575, 48.98606293116861]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c075b79d837efabaa46135340a863ed98f3dc6ac", "fields": {"departement": "95", "stop_lat": 48.99430141931975, "code_postal": "95585", "stop_lon": 2.3784013000968525, "coord": [48.99430141931975, 2.3784013000968525], "stop_id": 5726568, "stop_desc": "103 RUE PIERRE BROSSOLETTE - 95585", "stop_name": "PLACE DE VERDUN"}, "geometry": {"type": "Point", "coordinates": [2.3784013000968525, 48.99430141931975]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dbe15f70b61dc500480f7f04c81c5160e5281ac6", "fields": {"departement": "95", "stop_lat": 49.00236116513231, "code_postal": "95585", "stop_lon": 2.381289654711447, "coord": [49.00236116513231, 2.381289654711447], "stop_id": 5726574, "stop_desc": "FACE 48 AVENUE MARX DORMOY - 95585", "stop_name": "LES CHARDONNERETTES"}, "geometry": {"type": "Point", "coordinates": [2.381289654711447, 49.00236116513231]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e72ed37fcc009fb376aa7756a6b7e5cfc059fb38", "fields": {"departement": "95", "stop_lat": 49.0098635015336, "code_postal": "95680", "stop_lon": 2.384519915866608, "coord": [49.0098635015336, 2.384519915866608], "stop_id": 5726577, "stop_desc": "4 RUE JULIEN BOURSIER - 95680", "stop_name": "ESPERANCE - JULIEN BOURSIER"}, "geometry": {"type": "Point", "coordinates": [2.384519915866608, 49.0098635015336]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "51d4fb29ed2a7271eefbc32f728cd99ae24d7fcf", "fields": {"departement": "95", "stop_lat": 49.0099712393663, "code_postal": "95680", "stop_lon": 2.384765903389561, "coord": [49.0099712393663, 2.384765903389561], "stop_id": 5726578, "stop_desc": "7 RUE JULIEN BOURSIER - 95680", "stop_name": "ESPERANCE - JULIEN BOURSIER"}, "geometry": {"type": "Point", "coordinates": [2.384765903389561, 49.0099712393663]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ab9b099b67a8e1900b67217163cd5efb6e964d34", "fields": {"departement": "95", "stop_lat": 49.00694848952079, "code_postal": "95680", "stop_lon": 2.3925628168468323, "coord": [49.00694848952079, 2.3925628168468323], "stop_id": 5726581, "stop_desc": "FACE 45 RUE GAMBETTA - 95680", "stop_name": "LES LIERRES - LOUISE MICHEL"}, "geometry": {"type": "Point", "coordinates": [2.3925628168468323, 49.00694848952079]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "26d1e00a7c3750e0426b78591542f32efd3055b7", "fields": {"departement": "75", "stop_lat": 48.853644539093, "code_postal": "75107", "stop_lon": 2.32637284104398, "coord": [48.853644539093, 2.32637284104398], "stop_id": 5138182, "stop_desc": "19 BOULEVARD RASPAIL - 75107", "stop_name": "VARENNE - RASPAIL"}, "geometry": {"type": "Point", "coordinates": [2.32637284104398, 48.853644539093]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d333b076230452b3711a1bd1489ba2ca53904052", "fields": {"departement": "75", "stop_lat": 48.84462130823025, "code_postal": "75106", "stop_lon": 2.3289347211572275, "coord": [48.84462130823025, 2.3289347211572275], "stop_id": 5138187, "stop_desc": "FACE 114 BOULEVARD RASPAIL - 75106", "stop_name": "NOTRE-DAME-DES-CHAMPS"}, "geometry": {"type": "Point", "coordinates": [2.3289347211572275, 48.84462130823025]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fed45315e554f6ec1389aa235a8032ea5311877a", "fields": {"departement": "75", "stop_lat": 48.835094687163554, "code_postal": "75114", "stop_lon": 2.332285404450967, "coord": [48.835094687163554, 2.332285404450967], "stop_id": 5138193, "stop_desc": "295 BOULEVARD RASPAIL - 75114", "stop_name": "VICTOR CONSIDERANT"}, "geometry": {"type": "Point", "coordinates": [2.332285404450967, 48.835094687163554]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2f9a9f8eb946232550936c9e3fb4e5aa88040ae3", "fields": {"departement": "75", "stop_lat": 48.82688858812294, "code_postal": "75114", "stop_lon": 2.3262695521776147, "coord": [48.82688858812294, 2.3262695521776147], "stop_id": 5138199, "stop_desc": "96 AVENUE DU GENERAL LECLERC - 75114", "stop_name": "ALESIA - GENERAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.3262695521776147, 48.82688858812294]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a4f69b797857183cda9b490d496f538778686517", "fields": {"departement": "75", "stop_lat": 48.82356309968058, "code_postal": "75114", "stop_lon": 2.3256985758622, "coord": [48.82356309968058, 2.3256985758622], "stop_id": 5138202, "stop_desc": "123 AVENUE DU GENERAL LECLERC - 75114", "stop_name": "PORTE D'ORLEANS"}, "geometry": {"type": "Point", "coordinates": [2.3256985758622, 48.82356309968058]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b15cb91dfa591eaaa59185e62a10097346296968", "fields": {"departement": "92", "stop_lat": 48.810878142529376, "code_postal": "92049", "stop_lon": 2.306990255108043, "coord": [48.810878142529376, 2.306990255108043], "stop_id": 5138213, "stop_desc": "178 AVENUE MARX DORMOY - 92049", "stop_name": "MAURICE ARNOUX"}, "geometry": {"type": "Point", "coordinates": [2.306990255108043, 48.810878142529376]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1a15bcf1e27bd3d52c9de2122a946597412d7c51", "fields": {"departement": "92", "stop_lat": 48.811937937061636, "code_postal": "92049", "stop_lon": 2.304131876817707, "coord": [48.811937937061636, 2.304131876817707], "stop_id": 5138216, "stop_desc": "AVENUE JEAN JAURES - 92049", "stop_name": "JEAN MONNET"}, "geometry": {"type": "Point", "coordinates": [2.304131876817707, 48.811937937061636]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0761da52e7b3b87bc82f76aceaa48db682dead17", "fields": {"departement": "75", "stop_lat": 48.82150449009198, "code_postal": "75114", "stop_lon": 2.3218879847732494, "coord": [48.82150449009198, 2.3218879847732494], "stop_id": 5138218, "stop_desc": "FACE 18 AV DE LA PORTE DE MONTROUGE - 75114", "stop_name": "CIMETIERE DE MONTROUGE"}, "geometry": {"type": "Point", "coordinates": [2.3218879847732494, 48.82150449009198]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b76ae165a65a93319573f8ff76124b33de2b8ab7", "fields": {"departement": "75", "stop_lat": 48.851910000570065, "code_postal": "75107", "stop_lon": 2.3268362464345342, "coord": [48.851910000570065, 2.3268362464345342], "stop_id": 5138220, "stop_desc": "39 BOULEVARD RASPAIL - 75107", "stop_name": "SEVRES - BABYLONE"}, "geometry": {"type": "Point", "coordinates": [2.3268362464345342, 48.851910000570065]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4cf71e024bfbc480ca1a6a57f60aaf7d557f726f", "fields": {"departement": "75", "stop_lat": 48.871332126753245, "code_postal": "75109", "stop_lon": 2.3325544120051322, "coord": [48.871332126753245, 2.3325544120051322], "stop_id": 5138223, "stop_desc": "8 RUE HALEVY - 75109", "stop_name": "OPERA"}, "geometry": {"type": "Point", "coordinates": [2.3325544120051322, 48.871332126753245]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "98832d430a9997f087e3e00e6374da2d075189f8", "fields": {"departement": "75", "stop_lat": 48.873821559303245, "code_postal": "75109", "stop_lon": 2.3313415947939387, "coord": [48.873821559303245, 2.3313415947939387], "stop_id": 5138224, "stop_desc": "14 R DE MOGADOR - 75109", "stop_name": "HAUSSMANN - MOGADOR"}, "geometry": {"type": "Point", "coordinates": [2.3313415947939387, 48.873821559303245]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "61aea574435d64cab444b8d802035978ae5c6f1c", "fields": {"departement": "75", "stop_lat": 48.82609741539634, "code_postal": "75113", "stop_lon": 2.350757878691308, "coord": [48.82609741539634, 2.350757878691308], "stop_id": 5150144, "stop_desc": "77 RUE BOBILLOT - 75113", "stop_name": "BOBILLOT - TOLBIAC"}, "geometry": {"type": "Point", "coordinates": [2.350757878691308, 48.82609741539634]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "656f0594f18fcc2b3ff834e17dad52aa4ec2edd7", "fields": {"departement": "92", "stop_lat": 48.93084208433091, "code_postal": "92036", "stop_lon": 2.2843465707019854, "coord": [48.93084208433091, 2.2843465707019854], "stop_id": 5150156, "stop_desc": "BOULEVARD INTERCOMMUNAL - 92036", "stop_name": "ASNIERES - GENNEVILLIERS - LES COURTILLES"}, "geometry": {"type": "Point", "coordinates": [2.2843465707019854, 48.93084208433091]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2d28c9b9e0b19a9e5f75051f68bd5f8cff5e9b7d", "fields": {"departement": "92", "stop_lat": 48.936126652714115, "code_postal": "92036", "stop_lon": 2.2674399450981904, "coord": [48.936126652714115, 2.2674399450981904], "stop_id": 5150160, "stop_desc": "62 ROUTE PRINCIPALE DU PORT - 92036", "stop_name": "DIRECTION DU PORT"}, "geometry": {"type": "Point", "coordinates": [2.2674399450981904, 48.936126652714115]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7a9f0674ed27514094a0f352afab46da45cef6e7", "fields": {"departement": "92", "stop_lat": 48.93415933708439, "code_postal": "92025", "stop_lon": 2.254634162402398, "coord": [48.93415933708439, 2.254634162402398], "stop_id": 5150162, "stop_desc": "AVENUE KLEBER - 92025", "stop_name": "VALMY"}, "geometry": {"type": "Point", "coordinates": [2.254634162402398, 48.93415933708439]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ac1979ddafb5804dbde5effa56fa89a79270220b", "fields": {"departement": "92", "stop_lat": 48.933949446550976, "code_postal": "92025", "stop_lon": 2.263473509474367, "coord": [48.933949446550976, 2.263473509474367], "stop_id": 5150166, "stop_desc": "179 AVENUE DE STALINGRAD - 92025", "stop_name": "PONT DU CHEMIN DE FER"}, "geometry": {"type": "Point", "coordinates": [2.263473509474367, 48.933949446550976]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "895c4013e1520e65cc62e2b6b9c2189a54e0be85", "fields": {"departement": "92", "stop_lat": 48.93546407839365, "code_postal": "92036", "stop_lon": 2.2717649872842665, "coord": [48.93546407839365, 2.2717649872842665], "stop_id": 5150168, "stop_desc": "ROUTE DES MERCIERES - 92036", "stop_name": "MERCIERES"}, "geometry": {"type": "Point", "coordinates": [2.2717649872842665, 48.93546407839365]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7aa775dc7ffc90361bb227472b9fdf7e72b8ee45", "fields": {"departement": "92", "stop_lat": 48.93752543173913, "code_postal": "92036", "stop_lon": 2.278214757875636, "coord": [48.93752543173913, 2.278214757875636], "stop_id": 5150170, "stop_desc": "BOULEVARD INTERCOMMUNAL - 92036", "stop_name": "PORT DE GENNEVILLIERS - CENTRE DE VIE"}, "geometry": {"type": "Point", "coordinates": [2.278214757875636, 48.93752543173913]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d1ddd8009d5c78f6d06f4aea3708888004971215", "fields": {"departement": "92", "stop_lat": 48.89565690949968, "code_postal": "92050", "stop_lon": 2.195198940382233, "coord": [48.89565690949968, 2.195198940382233], "stop_id": 5150172, "stop_desc": "23 - 25 RUE HENRI MARTIN - 92050", "stop_name": "NANTERRE - VILLE RER"}, "geometry": {"type": "Point", "coordinates": [2.195198940382233, 48.89565690949968]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9906c112808f86c1a83dd05a88a8d16803de3548", "fields": {"departement": "92", "stop_lat": 48.893923902710036, "code_postal": "92050", "stop_lon": 2.2126227396461546, "coord": [48.893923902710036, 2.2126227396461546], "stop_id": 5150179, "stop_desc": "FACE 123 AV FREDERIC ET IRENE JOLIOT CURIE - 92050", "stop_name": "JOLIOT-CURIE - COURBEVOIE"}, "geometry": {"type": "Point", "coordinates": [2.2126227396461546, 48.893923902710036]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f82670d2da56ce40607204f4bc39c9ea449c2433", "fields": {"departement": "93", "stop_lat": 48.92054457945639, "code_postal": "93066", "stop_lon": 2.354437194918939, "coord": [48.92054457945639, 2.354437194918939], "stop_id": 5150182, "stop_desc": "0 AVENUE DES FRUITIERS - 93066", "stop_name": "ZAC LANDY NORD"}, "geometry": {"type": "Point", "coordinates": [2.354437194918939, 48.92054457945639]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d29432323a1825fe4b92da6a1f8b63074a97419f", "fields": {"departement": "93", "stop_lat": 48.91806427961469, "code_postal": "93066", "stop_lon": 2.353700014019284, "coord": [48.91806427961469, 2.353700014019284], "stop_id": 5150186, "stop_desc": "15 AVENUE FRANCOIS MITTERRAND - 93066", "stop_name": "STADE DE FRANCE - SAINT-DENIS RER"}, "geometry": {"type": "Point", "coordinates": [2.353700014019284, 48.91806427961469]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "34a2bebf03f0d2f086fe62d274d2e2f4a8b16b13", "fields": {"departement": "93", "stop_lat": 48.92044450149774, "code_postal": "93066", "stop_lon": 2.361473796109187, "coord": [48.92044450149774, 2.361473796109187], "stop_id": 5150194, "stop_desc": "AVENUE DU STADE DE FRANCE - 93066", "stop_name": "AVENUE DU STADE DE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.361473796109187, 48.92044450149774]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "13eb0afa1bebff85a8489c6b2a263591773fb54e", "fields": {"departement": "93", "stop_lat": 48.945149138394804, "code_postal": "93066", "stop_lon": 2.362754189044154, "coord": [48.945149138394804, 2.362754189044154], "stop_id": 5150214, "stop_desc": "AV DE STALINGRAD - 93066", "stop_name": "SAINT-DENIS - UNIVERSITE"}, "geometry": {"type": "Point", "coordinates": [2.362754189044154, 48.945149138394804]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "89f76e8b89ca93db254978e2c089fa5d0e2db66e", "fields": {"departement": "93", "stop_lat": 48.946778170491875, "code_postal": "93079", "stop_lon": 2.3456865667023292, "coord": [48.946778170491875, 2.3456865667023292], "stop_id": 5150221, "stop_desc": "2 ROUTE DE SAINT-LEU - 93079", "stop_name": "ROBINSON - LIMITE DE SAINT-DENIS"}, "geometry": {"type": "Point", "coordinates": [2.3456865667023292, 48.946778170491875]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b11ee981f75ef80a111b83ccf787542f30c27445", "fields": {"departement": "95", "stop_lat": 48.95659185515301, "code_postal": "95427", "stop_lon": 2.331932582935581, "coord": [48.95659185515301, 2.331932582935581], "stop_id": 5150227, "stop_desc": "11 ROUTE DE SAINT-LEU - 95427", "stop_name": "SABLONS"}, "geometry": {"type": "Point", "coordinates": [2.331932582935581, 48.95659185515301]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2e344621e48628089b4164aee474516f153b9bca", "fields": {"departement": "95", "stop_lat": 48.960662444020045, "code_postal": "95197", "stop_lon": 2.326404933132443, "coord": [48.960662444020045, 2.326404933132443], "stop_id": 5150230, "stop_desc": "24-26 ROUTE DE SAINT-DENIS - 95197", "stop_name": "LES 3 COMMUNES"}, "geometry": {"type": "Point", "coordinates": [2.326404933132443, 48.960662444020045]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "51c8368bcdebea36d2686bea57e7714393a2e599", "fields": {"departement": "95", "stop_lat": 48.96061748814565, "code_postal": "95197", "stop_lon": 2.326159288046528, "coord": [48.96061748814565, 2.326159288046528], "stop_id": 5150231, "stop_desc": "FACE 26 ROUTE DE SAINT-DENIS - 95197", "stop_name": "LES 3 COMMUNES"}, "geometry": {"type": "Point", "coordinates": [2.326159288046528, 48.96061748814565]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a6d1c0559eed5d4087d9f6ddeb7b8f634bb98d18", "fields": {"departement": "95", "stop_lat": 48.96712273357037, "code_postal": "95197", "stop_lon": 2.3177499932101875, "coord": [48.96712273357037, 2.3177499932101875], "stop_id": 5150235, "stop_desc": "3 RUE DU CHATEAU - 95197", "stop_name": "PLACE DE LA BARRE"}, "geometry": {"type": "Point", "coordinates": [2.3177499932101875, 48.96712273357037]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "77c0c88c9678ad715ef3420d0d7f3d26e19df234", "fields": {"departement": "95", "stop_lat": 48.96900129780344, "code_postal": "95197", "stop_lon": 2.3201243301766588, "coord": [48.96900129780344, 2.3201243301766588], "stop_id": 5150236, "stop_desc": "FACE 31 RUE DU CHATEAU - 95197", "stop_name": "LE STADE"}, "geometry": {"type": "Point", "coordinates": [2.3201243301766588, 48.96900129780344]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cbbffa11a93a5710031c0d3e4954ebd6f2c187e3", "fields": {"departement": "95", "stop_lat": 48.971931289559954, "code_postal": "95197", "stop_lon": 2.322894402940944, "coord": [48.971931289559954, 2.322894402940944], "stop_id": 5150238, "stop_desc": "RUE DE LA BARRE - 95197", "stop_name": "MARCHE DE DEUIL-LA-BARRE"}, "geometry": {"type": "Point", "coordinates": [2.322894402940944, 48.971931289559954]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4153b38216438d5e3a8fd774dc146651c3f13aed", "fields": {"departement": "93", "stop_lat": 48.953824055600066, "code_postal": "93031", "stop_lon": 2.335385224920676, "coord": [48.953824055600066, 2.335385224920676], "stop_id": 5150243, "stop_desc": "149 ROUTE DE SAINT-LEU - 93031", "stop_name": "YSER"}, "geometry": {"type": "Point", "coordinates": [2.335385224920676, 48.953824055600066]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e98d3245e3f3f73c65ef70a86e008b66c6c9cf65", "fields": {"departement": "93", "stop_lat": 48.951945842568705, "code_postal": "93031", "stop_lon": 2.3381962011376425, "coord": [48.951945842568705, 2.3381962011376425], "stop_id": 5150244, "stop_desc": "115 ROUTE DE SAINT-LEU - 93031", "stop_name": "76 ROUTE DE SAINT-LEU"}, "geometry": {"type": "Point", "coordinates": [2.3381962011376425, 48.951945842568705]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0a647bb8e65b890b94d0fed588e8dee17b4d7725", "fields": {"departement": "93", "stop_lat": 48.960157912186006, "code_postal": "93059", "stop_lon": 2.3578212422572897, "coord": [48.960157912186006, 2.3578212422572897], "stop_id": 5150254, "stop_desc": "RUE JEAN ALLEMANE - 93059", "stop_name": "SUZANNE VALADON"}, "geometry": {"type": "Point", "coordinates": [2.3578212422572897, 48.960157912186006]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e0430b298463a2f6b5139a0f2076c571465f7a76", "fields": {"departement": "93", "stop_lat": 48.96005008163013, "code_postal": "93059", "stop_lon": 2.357766610113553, "coord": [48.96005008163013, 2.357766610113553], "stop_id": 5150255, "stop_desc": "RUE JEAN ALLEMANE - 93059", "stop_name": "SUZANNE VALADON"}, "geometry": {"type": "Point", "coordinates": [2.357766610113553, 48.96005008163013]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5d9c0101340def25782075f4b3c7ce9c9ac6787c", "fields": {"departement": "93", "stop_lat": 48.96013184082395, "code_postal": "93079", "stop_lon": 2.351775458079755, "coord": [48.96013184082395, 2.351775458079755], "stop_id": 5150256, "stop_desc": "RUE JEAN ALLEMANE - 93079", "stop_name": "COLLEGE LUCIE AUBRAC"}, "geometry": {"type": "Point", "coordinates": [2.351775458079755, 48.96013184082395]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cbc5d904550d50e6b7a41a08ac95dbabbf29505d", "fields": {"departement": "93", "stop_lat": 48.96759141378895, "code_postal": "93079", "stop_lon": 2.34444787074704, "coord": [48.96759141378895, 2.34444787074704], "stop_id": 5150265, "stop_desc": "FACE 112 RUE MAURICE GRANDCOING - 93079", "stop_name": "JEAN MISSOUT"}, "geometry": {"type": "Point", "coordinates": [2.34444787074704, 48.96759141378895]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7c6f9cbb46cb3bf8526e24798c32d1d0e2876ea0", "fields": {"departement": "95", "stop_lat": 48.974942400305544, "code_postal": "95427", "stop_lon": 2.3449949427801995, "coord": [48.974942400305544, 2.3449949427801995], "stop_id": 5150268, "stop_desc": "FACE 9 RUE DU 11 NOVEMBRE - 95427", "stop_name": "MAIRIE DE MONTMAGNY"}, "geometry": {"type": "Point", "coordinates": [2.3449949427801995, 48.974942400305544]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ebd78a36eaaf0f3664898067dae88f20305846c5", "fields": {"departement": "93", "stop_lat": 48.910544162666014, "code_postal": "93008", "stop_lon": 2.416129016905065, "coord": [48.910544162666014, 2.416129016905065], "stop_id": 5150329, "stop_desc": "RUE DE L'ILLUSTRATION - 93008", "stop_name": "CITE DU PONT DE PIERRE"}, "geometry": {"type": "Point", "coordinates": [2.416129016905065, 48.910544162666014]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2d77402c81d4bb091370059a3730eef40d241b27", "fields": {"departement": "93", "stop_lat": 48.906488254589036, "code_postal": "93008", "stop_lon": 2.4322236788904616, "coord": [48.906488254589036, 2.4322236788904616], "stop_id": 5150332, "stop_desc": "RUE DE LA REPUBLIQUE - 93008", "stop_name": "RUE DE LA GARE"}, "geometry": {"type": "Point", "coordinates": [2.4322236788904616, 48.906488254589036]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e277b967bf95e072aabadb2d3390640955459031", "fields": {"departement": "93", "stop_lat": 48.90653616722905, "code_postal": "93008", "stop_lon": 2.449483447525252, "coord": [48.90653616722905, 2.449483447525252], "stop_id": 5150335, "stop_desc": "PISTE GARE ROUTIERE - 93008", "stop_name": "BOBIGNY - PABLO PICASSO"}, "geometry": {"type": "Point", "coordinates": [2.449483447525252, 48.90653616722905]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a8e8744f9f4ad5f212986b0f98c9c0fb4eaa2608", "fields": {"departement": "93", "stop_lat": 48.91398334545437, "code_postal": "93057", "stop_lon": 2.492327766588215, "coord": [48.91398334545437, 2.492327766588215], "stop_id": 5150347, "stop_desc": "BOULEVARD DE PARIS - 93057", "stop_name": "LYCEE CLAUDE-NICOLAS LEDOUX"}, "geometry": {"type": "Point", "coordinates": [2.492327766588215, 48.91398334545437]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0d9627a0e5dcbcba629568a634422caa99d7243a", "fields": {"departement": "93", "stop_lat": 48.91477031606463, "code_postal": "93057", "stop_lon": 2.4952890088316666, "coord": [48.91477031606463, 2.4952890088316666], "stop_id": 5150348, "stop_desc": "FACE 50 BOULEVARD DE PARIS - 93057", "stop_name": "LOUISE MICHEL"}, "geometry": {"type": "Point", "coordinates": [2.4952890088316666, 48.91477031606463]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aa831a58e4fcbefbf86b1647323c32fb878678e2", "fields": {"departement": "93", "stop_lat": 48.91371257042071, "code_postal": "93055", "stop_lon": 2.4082118350408837, "coord": [48.91371257042071, 2.4082118350408837], "stop_id": 5150373, "stop_desc": "AVENUE DES COURTILLIERES - 93055", "stop_name": "DIVISION LECLERC - COURTILLIERES"}, "geometry": {"type": "Point", "coordinates": [2.4082118350408837, 48.91371257042071]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6189ea81295ea4b76ba08fdcebacbc459219bf56", "fields": {"departement": "93", "stop_lat": 48.91328474196549, "code_postal": "93008", "stop_lon": 2.416828575050586, "coord": [48.91328474196549, 2.416828575050586], "stop_id": 5150376, "stop_desc": "1 RUE BALZAC - 93008", "stop_name": "LES COURTILLIERES"}, "geometry": {"type": "Point", "coordinates": [2.416828575050586, 48.91328474196549]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4e553d9bea196cfdc829ff0df4f54e4b4b6e70e4", "fields": {"departement": "93", "stop_lat": 48.907626779012226, "code_postal": "93008", "stop_lon": 2.424154719953233, "coord": [48.907626779012226, 2.424154719953233], "stop_id": 5150381, "stop_desc": "AVENUE DE LA DIVISION LECLERC - 93008", "stop_name": "REPUBLIQUE - DIVISION LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.424154719953233, 48.907626779012226]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "92aa2806f464eb3e9ea89dbfe21da6cd5a27382b", "fields": {"departement": "93", "stop_lat": 48.906711868542196, "code_postal": "93008", "stop_lon": 2.444098679824846, "coord": [48.906711868542196, 2.444098679824846], "stop_id": 5150389, "stop_desc": "BOULEVARD LENINE - 93008", "stop_name": "HOTEL DE VILLE DE BOBIGNY"}, "geometry": {"type": "Point", "coordinates": [2.444098679824846, 48.906711868542196]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ae449573db1e1d381eac74d60c40d1222efbd996", "fields": {"departement": "94", "stop_lat": 48.80659772200204, "code_postal": "94068", "stop_lon": 2.4734878556768183, "coord": [48.80659772200204, 2.4734878556768183], "stop_id": 4035997, "stop_desc": "7 RUE DES REMISES - 94068", "stop_name": "SAINT-MAUR-CRETEIL RER - LE PARVIS"}, "geometry": {"type": "Point", "coordinates": [2.4734878556768183, 48.80659772200204]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6676a06500bf4be5dea549a624d256e0015f300b", "fields": {"departement": "94", "stop_lat": 48.823395811335416, "code_postal": "94079", "stop_lon": 2.542432954768838, "coord": [48.823395811335416, 2.542432954768838], "stop_id": 4036167, "stop_desc": "FACE 1 RUE DU CHEMIN DE FER - 94079", "stop_name": "VILLIERS-SUR-MARNE - LE PLESSIS-TREVISE RER"}, "geometry": {"type": "Point", "coordinates": [2.542432954768838, 48.823395811335416]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ce3d4e1c0b62dba28d9e81bdf4e2aec9dd173495", "fields": {"departement": "94", "stop_lat": 48.81079518388607, "code_postal": "94017", "stop_lon": 2.5202699488603515, "coord": [48.81079518388607, 2.5202699488603515], "stop_id": 4036175, "stop_desc": "FACE 30 AVENUE MARX DORMOY - 94017", "stop_name": "MARTELET"}, "geometry": {"type": "Point", "coordinates": [2.5202699488603515, 48.81079518388607]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "75a208d559dc97c08cb1f37ed15201adcde16405", "fields": {"departement": "94", "stop_lat": 48.81769756809511, "code_postal": "94017", "stop_lon": 2.4953336852507952, "coord": [48.81769756809511, 2.4953336852507952], "stop_id": 4036181, "stop_desc": "123 AVENUE ROGER SALENGRO - 94017", "stop_name": "JEAN-BAPTISTE CLEMENT"}, "geometry": {"type": "Point", "coordinates": [2.4953336852507952, 48.81769756809511]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "23640593ebbae39e2252222ffa0d3a47f9dde4cd", "fields": {"departement": "94", "stop_lat": 48.82016401887866, "code_postal": "94042", "stop_lon": 2.477974118109713, "coord": [48.82016401887866, 2.477974118109713], "stop_id": 4036184, "stop_desc": "29 AVENUE GALLIENI - 94042", "stop_name": "LES PLATANES"}, "geometry": {"type": "Point", "coordinates": [2.477974118109713, 48.82016401887866]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ec73329a30b80021882526600fff8c0477187b48", "fields": {"departement": "94", "stop_lat": 48.84379487347871, "code_postal": "94067", "stop_lon": 2.417198567449742, "coord": [48.84379487347871, 2.417198567449742], "stop_id": 4036196, "stop_desc": "2-2BIS AVENUE VICTOR HUGO - 94067", "stop_name": "MAIRIE DE SAINT-MANDE"}, "geometry": {"type": "Point", "coordinates": [2.417198567449742, 48.84379487347871]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bc6da94b9ad2af59da1108c734f1aea1dd654d9b", "fields": {"departement": "75", "stop_lat": 48.83708107071685, "code_postal": "75112", "stop_lon": 2.402633806208425, "coord": [48.83708107071685, 2.402633806208425], "stop_id": 4036200, "stop_desc": "253 TER AVENUE DAUMESNIL - 75112", "stop_name": "MICHEL BIZOT"}, "geometry": {"type": "Point", "coordinates": [2.402633806208425, 48.83708107071685]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eb240d7bce99469f15066631e5acd4365e42b9dd", "fields": {"departement": "75", "stop_lat": 48.84449658259152, "code_postal": "75112", "stop_lon": 2.38138713019064, "coord": [48.84449658259152, 2.38138713019064], "stop_id": 4036203, "stop_desc": "127 AVENUE DAUMESNIL - 75112", "stop_name": "RAMBOUILLET"}, "geometry": {"type": "Point", "coordinates": [2.38138713019064, 48.84449658259152]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fa5d8cc62a7c1d607bfda07b860ee8bbcca5833f", "fields": {"departement": "75", "stop_lat": 48.845677278703754, "code_postal": "75112", "stop_lon": 2.3712296777810264, "coord": [48.845677278703754, 2.3712296777810264], "stop_id": 4036205, "stop_desc": "15-17 BOULEVARD DIDEROT - 75112", "stop_name": "GARE DE LYON - DIDEROT"}, "geometry": {"type": "Point", "coordinates": [2.3712296777810264, 48.845677278703754]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "92ea20a161c7de7f5e9e32a676fe76ad99c5da5e", "fields": {"departement": "75", "stop_lat": 48.84427981615022, "code_postal": "75112", "stop_lon": 2.4410016129217893, "coord": [48.84427981615022, 2.4410016129217893], "stop_id": 4036220, "stop_desc": "13 AVENUE DE NOGENT - 75112", "stop_name": "CHATEAU DE VINCENNES"}, "geometry": {"type": "Point", "coordinates": [2.4410016129217893, 48.84427981615022]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e411c49550d8ecbd7b5bbb712b586b4057debc77", "fields": {"departement": "75", "stop_lat": 48.841674600518346, "code_postal": "75112", "stop_lon": 2.4496154545513202, "coord": [48.841674600518346, 2.4496154545513202], "stop_id": 4036221, "stop_desc": "AVENUE DE NOGENT - 75112", "stop_name": "TREMBLAY - PEPINIERE"}, "geometry": {"type": "Point", "coordinates": [2.4496154545513202, 48.841674600518346]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5793bc03657b85fec8eaf8ab4edbcdf4216ccf2c", "fields": {"departement": "94", "stop_lat": 48.835945431006095, "code_postal": "94052", "stop_lon": 2.4709645048297553, "coord": [48.835945431006095, 2.4709645048297553], "stop_id": 4036223, "stop_desc": "FACE 7-9 AV GEORGES CLEMENCEAU - 94052", "stop_name": "NOGENT-SUR-MARNE RER - PIERRE SEMARD"}, "geometry": {"type": "Point", "coordinates": [2.4709645048297553, 48.835945431006095]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d9f5837c04d3d35c1297fd60644938aba01ac446", "fields": {"departement": "94", "stop_lat": 48.817445659342866, "code_postal": "94017", "stop_lon": 2.4955234559960484, "coord": [48.817445659342866, 2.4955234559960484], "stop_id": 4036230, "stop_desc": "112-114 AVENUE ROGER SALENGRO - 94017", "stop_name": "JEAN-BAPTISTE CLEMENT"}, "geometry": {"type": "Point", "coordinates": [2.4955234559960484, 48.817445659342866]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bfdcf5ce3f490c07364d59ec9ae84361d55da9aa", "fields": {"departement": "94", "stop_lat": 48.81497727135156, "code_postal": "94017", "stop_lon": 2.5062399860581337, "coord": [48.81497727135156, 2.5062399860581337], "stop_id": 4036232, "stop_desc": "42 AVENUE JEAN JAURES - 94017", "stop_name": "GUITTARD"}, "geometry": {"type": "Point", "coordinates": [2.5062399860581337, 48.81497727135156]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dae86bfe9584304140ec9619ef27518804747d85", "fields": {"departement": "94", "stop_lat": 48.808618224470386, "code_postal": "94017", "stop_lon": 2.5381698136887874, "coord": [48.808618224470386, 2.5381698136887874], "stop_id": 4036239, "stop_desc": "AVENUE DU 11 NOVEMBRE 1918 - 94017", "stop_name": "LES MORDACS"}, "geometry": {"type": "Point", "coordinates": [2.5381698136887874, 48.808618224470386]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f5811ad851ba0f3d22d10b721254732adfbc532d", "fields": {"departement": "94", "stop_lat": 48.81454166615835, "code_postal": "94017", "stop_lon": 2.537879731634287, "coord": [48.81454166615835, 2.537879731634287], "stop_id": 4036241, "stop_desc": "389 AVENUE MAURICE THOREZ - 94017", "stop_name": "VOLTAIRE"}, "geometry": {"type": "Point", "coordinates": [2.537879731634287, 48.81454166615835]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6cd05de14ee7974b3c20077e657dbf24f3d8567a", "fields": {"departement": "93", "stop_lat": 48.865877356722464, "code_postal": "93032", "stop_lon": 2.5637160575162254, "coord": [48.865877356722464, 2.5637160575162254], "stop_id": 4036247, "stop_desc": "171 AVENUE PAUL VAILLANT COUTURIER - 93032", "stop_name": "POINTE DE GOURNAY"}, "geometry": {"type": "Point", "coordinates": [2.5637160575162254, 48.865877356722464]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "798b4d9ba3ffb53640724d2902307e6410579146", "fields": {"departement": "93", "stop_lat": 48.86919924698499, "code_postal": "93032", "stop_lon": 2.5559379441143, "coord": [48.86919924698499, 2.5559379441143], "stop_id": 4036248, "stop_desc": "113 AV PAUL VAILLANT COUTURIER - 93032", "stop_name": "RUE DE LA POINTE"}, "geometry": {"type": "Point", "coordinates": [2.5559379441143, 48.86919924698499]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7c50ae164837fbfd00ab7c5d25b8e5cdfe99c8a4", "fields": {"departement": "93", "stop_lat": 48.88350231020983, "code_postal": "93032", "stop_lon": 2.532818389384571, "coord": [48.88350231020983, 2.532818389384571], "stop_id": 4036254, "stop_desc": "14 AVENUE PARMENTIER - 93032", "stop_name": "JEAN JAURES - HENRI BARBUSSE"}, "geometry": {"type": "Point", "coordinates": [2.532818389384571, 48.88350231020983]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f98b105917e5bece91b273e098896d14e594d1bb", "fields": {"departement": "93", "stop_lat": 48.8851306909249, "code_postal": "93064", "stop_lon": 2.4811485622437988, "coord": [48.8851306909249, 2.4811485622437988], "stop_id": 4036264, "stop_desc": "BOULEVARD D'ALSACE LORRAINE - 93064", "stop_name": "CHEMIN DE BONDY"}, "geometry": {"type": "Point", "coordinates": [2.4811485622437988, 48.8851306909249]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c2b05111a9295d6db032b6e5ed8a68736a40bfb6", "fields": {"departement": "93", "stop_lat": 48.8881932533186, "code_postal": "93053", "stop_lon": 2.4588064524096587, "coord": [48.8881932533186, 2.4588064524096587], "stop_id": 4036269, "stop_desc": "97 RUE DE BREMENT - 93053", "stop_name": "SALENGRO - AUFFRET"}, "geometry": {"type": "Point", "coordinates": [2.4588064524096587, 48.8881932533186]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0666ec781d7b1d90016db6202faec32e0d0970a1", "fields": {"departement": "93", "stop_lat": 48.889718658513544, "code_postal": "93053", "stop_lon": 2.4521864237688176, "coord": [48.889718658513544, 2.4521864237688176], "stop_id": 4036270, "stop_desc": "FACE 11 RUE ANATOLE FRANCE - 93053", "stop_name": "JEANNE D'ARC"}, "geometry": {"type": "Point", "coordinates": [2.4521864237688176, 48.889718658513544]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "92a653fe7606fcfa10ae84518aa5b0d9418a8989", "fields": {"departement": "93", "stop_lat": 48.88642559070357, "code_postal": "93053", "stop_lon": 2.4466189175575725, "coord": [48.88642559070357, 2.4466189175575725], "stop_id": 4036272, "stop_desc": "FACE 73 RUE ANATOLE FRANCE - 93053", "stop_name": "HOCHE"}, "geometry": {"type": "Point", "coordinates": [2.4466189175575725, 48.88642559070357]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5fad57fb64f526c926d30651def5ae500e926c6f", "fields": {"departement": "93", "stop_lat": 48.878911777815574, "code_postal": "93045", "stop_lon": 2.4124018763644015, "coord": [48.878911777815574, 2.4124018763644015], "stop_id": 4036282, "stop_desc": "71 RUE DE PARIS - 93045", "stop_name": "LES BRUYERES"}, "geometry": {"type": "Point", "coordinates": [2.4124018763644015, 48.878911777815574]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "30968c8dac166b232e6270bc3cbb18b4f31a4b12", "fields": {"departement": "75", "stop_lat": 48.875460170880956, "code_postal": "75119", "stop_lon": 2.3974365569554887, "coord": [48.875460170880956, 2.3974365569554887], "stop_id": 4036284, "stop_desc": "245-247 RUE DE BELLEVILLE - 75119", "stop_name": "PELLEPORT - BELLEVILLE"}, "geometry": {"type": "Point", "coordinates": [2.3974365569554887, 48.875460170880956]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4a1205a6d16b8676eb3b40891f71f16a64c98e23", "fields": {"departement": "75", "stop_lat": 48.86989862659334, "code_postal": "75110", "stop_lon": 2.3703872629076637, "coord": [48.86989862659334, 2.3703872629076637], "stop_id": 4036288, "stop_desc": "65 RUE DU FAUBOURG DU TEMPLE - 75110", "stop_name": "GONCOURT"}, "geometry": {"type": "Point", "coordinates": [2.3703872629076637, 48.86989862659334]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6a799dba8b7b1151c7033bb9f0ba8082f767c5ad", "fields": {"departement": "75", "stop_lat": 48.85747297682197, "code_postal": "75104", "stop_lon": 2.3502484760856097, "coord": [48.85747297682197, 2.3502484760856097], "stop_id": 4036295, "stop_desc": "4-6 RUE DE LA COUTELLERIE - 75104", "stop_name": "CHATELET - HOTEL DE VILLE"}, "geometry": {"type": "Point", "coordinates": [2.3502484760856097, 48.85747297682197]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4503e2884f2bf289596fceb7847b993a1e9aba44", "fields": {"departement": "75", "stop_lat": 48.85810230439387, "code_postal": "75104", "stop_lon": 2.348178318503311, "coord": [48.85810230439387, 2.348178318503311], "stop_id": 4036296, "stop_desc": "FACE 3-7 BOULEVARD SEBASTOPOL - 75104", "stop_name": "CHATELET"}, "geometry": {"type": "Point", "coordinates": [2.348178318503311, 48.85810230439387]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ec4e424fdf13a41a82873ab5ff7cd27a95caaf67", "fields": {"departement": "75", "stop_lat": 48.86586694331711, "code_postal": "75103", "stop_lon": 2.3524574303330636, "coord": [48.86586694331711, 2.3524574303330636], "stop_id": 4036299, "stop_desc": "84 BOULEVARD DE SEBASTOPOL - 75103", "stop_name": "REAUMUR - SEBASTOPOL"}, "geometry": {"type": "Point", "coordinates": [2.3524574303330636, 48.86586694331711]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6006edeb2ef922852a67931f489f566bfd874ba2", "fields": {"departement": "75", "stop_lat": 48.86531329081279, "code_postal": "75111", "stop_lon": 2.3762828281298214, "coord": [48.86531329081279, 2.3762828281298214], "stop_id": 4036304, "stop_desc": "80 RUE OBERKAMPF - 75111", "stop_name": "PARMENTIER - REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.3762828281298214, 48.86531329081279]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0e16e550a17056ad7519046a6644cab6a9e008e6", "fields": {"departement": "75", "stop_lat": 48.87477226370445, "code_postal": "75120", "stop_lon": 2.388647712129114, "coord": [48.87477226370445, 2.388647712129114], "stop_id": 4036310, "stop_desc": "134 RUE DE BELLEVILLE - 75120", "stop_name": "JOURDAIN"}, "geometry": {"type": "Point", "coordinates": [2.388647712129114, 48.87477226370445]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "66010fe4e497eda01c159336b61abd4391378200", "fields": {"departement": "93", "stop_lat": 48.87848998242335, "code_postal": "93045", "stop_lon": 2.411433829034282, "coord": [48.87848998242335, 2.411433829034282], "stop_id": 4036314, "stop_desc": "44 R DE PARIS - 93045", "stop_name": "LES BRUYERES"}, "geometry": {"type": "Point", "coordinates": [2.411433829034282, 48.87848998242335]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2ff996d28eb54d84fbb9494721d20c076a870fe8", "fields": {"departement": "93", "stop_lat": 48.88795206366205, "code_postal": "93053", "stop_lon": 2.457361281126736, "coord": [48.88795206366205, 2.457361281126736], "stop_id": 4036322, "stop_desc": "FACE 93 RUE DE BREMENT - 93053", "stop_name": "SALENGRO - AUFFRET"}, "geometry": {"type": "Point", "coordinates": [2.457361281126736, 48.88795206366205]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c8069b85c93e3b6e9de75624ef0e07d46b523a25", "fields": {"departement": "93", "stop_lat": 48.88423567991556, "code_postal": "93064", "stop_lon": 2.4854523315455075, "coord": [48.88423567991556, 2.4854523315455075], "stop_id": 4036328, "stop_desc": "FACE 99 BOULEVARD ALSACE-LORRAINE - 93064", "stop_name": "BOIS-PERRIER NORD"}, "geometry": {"type": "Point", "coordinates": [2.4854523315455075, 48.88423567991556]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4b25139e70b74e417cdfce4f5c8e38bc1a5b1804", "fields": {"departement": "93", "stop_lat": 48.88295989291311, "code_postal": "93077", "stop_lon": 2.4989667209034665, "coord": [48.88295989291311, 2.4989667209034665], "stop_id": 4036330, "stop_desc": "FACE 106 AVENUE DE ROSNY-SOUS-BOIS - 93077", "stop_name": "CIMETIERE DE VILLEMOMBLE"}, "geometry": {"type": "Point", "coordinates": [2.4989667209034665, 48.88295989291311]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c233f18a9d647bd88fcee2bfee10b4f2ce806102", "fields": {"departement": "93", "stop_lat": 48.88443086356306, "code_postal": "93077", "stop_lon": 2.507529344691353, "coord": [48.88443086356306, 2.507529344691353], "stop_id": 4036332, "stop_desc": "1 RUE GRANDE RUE - 93077", "stop_name": "AVENUE DU RAINCY"}, "geometry": {"type": "Point", "coordinates": [2.507529344691353, 48.88443086356306]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e87a83ae27e51dd6e28a0e871521931bcd8676f5", "fields": {"departement": "93", "stop_lat": 48.882641730764206, "code_postal": "93077", "stop_lon": 2.525879007924305, "coord": [48.882641730764206, 2.525879007924305], "stop_id": 4036336, "stop_desc": "184 RUE GRANDE RUE - 93077", "stop_name": "GAGNY RER"}, "geometry": {"type": "Point", "coordinates": [2.525879007924305, 48.882641730764206]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c01c6d0d68bbc658c37214ccd6cf73c676cabfec", "fields": {"departement": "93", "stop_lat": 48.881794404760505, "code_postal": "93032", "stop_lon": 2.538412546009786, "coord": [48.881794404760505, 2.538412546009786], "stop_id": 4036338, "stop_desc": "46 AVENUE DU PRESIDENT POMPIDOU - 93032", "stop_name": "FLORIAN"}, "geometry": {"type": "Point", "coordinates": [2.538412546009786, 48.881794404760505]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "311edc0b5a200701bda74b121fc2163c13362df9", "fields": {"departement": "93", "stop_lat": 48.85962371632797, "code_postal": "93048", "stop_lon": 2.4383489897739583, "coord": [48.85962371632797, 2.4383489897739583], "stop_id": 4036618, "stop_desc": "38 BOULEVARD ROUGET DE LISLE - 93048", "stop_name": "VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.4383489897739583, 48.85962371632797]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "df3f37d9dcc8eff82a463f81439912cf8b2b96a4", "fields": {"departement": "93", "stop_lat": 48.859842396882804, "code_postal": "93006", "stop_lon": 2.4230939388017254, "coord": [48.859842396882804, 2.4230939388017254], "stop_id": 4036622, "stop_desc": "115 AVENUE DE LA REPUBLIQUE - 93006", "stop_name": "FRATERNITE"}, "geometry": {"type": "Point", "coordinates": [2.4230939388017254, 48.859842396882804]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a93073a7bfdf266c12d3f6047457fd191d589c91", "fields": {"departement": "75", "stop_lat": 48.86518711129566, "code_postal": "75120", "stop_lon": 2.398487178082869, "coord": [48.86518711129566, 2.398487178082869], "stop_id": 4036628, "stop_desc": "PLACE GAMBETTA - 75120", "stop_name": "GAMBETTA"}, "geometry": {"type": "Point", "coordinates": [2.398487178082869, 48.86518711129566]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b9f9a47e9f473b5381b738c0fc9e6fc43974a3b3", "fields": {"departement": "75", "stop_lat": 48.86404002762893, "code_postal": "75120", "stop_lon": 2.391688416422633, "coord": [48.86404002762893, 2.391688416422633], "stop_id": 4036630, "stop_desc": "35-37 AVENUE GAMBETTA - 75120", "stop_name": "MURIERS"}, "geometry": {"type": "Point", "coordinates": [2.391688416422633, 48.86404002762893]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1396943873b7f12e51c27a320567dff7cc308760", "fields": {"departement": "75", "stop_lat": 48.86309803448752, "code_postal": "75120", "stop_lon": 2.387873320719877, "coord": [48.86309803448752, 2.387873320719877], "stop_id": 4036631, "stop_desc": "7-9 PLACE AUGUSTE METIVIER - 75120", "stop_name": "AUGUSTE METIVIER"}, "geometry": {"type": "Point", "coordinates": [2.387873320719877, 48.86309803448752]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "11b1bfea3b02ace25e9193329d37ebdab9c6f265", "fields": {"departement": "75", "stop_lat": 48.85808583827969, "code_postal": "75111", "stop_lon": 2.380853874579723, "coord": [48.85808583827969, 2.380853874579723], "stop_id": 4036635, "stop_desc": "PLACE LEON BLUM - 75111", "stop_name": "VOLTAIRE - LEON BLUM"}, "geometry": {"type": "Point", "coordinates": [2.380853874579723, 48.85808583827969]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f5f348f166a144aa12e0ece51c7b92950fd1282c", "fields": {"departement": "75", "stop_lat": 48.855713972473325, "code_postal": "75111", "stop_lon": 2.3785637425146002, "coord": [48.855713972473325, 2.3785637425146002], "stop_id": 4036636, "stop_desc": "167 AVENUE LEDRU ROLLIN - 75111", "stop_name": "BASFROI"}, "geometry": {"type": "Point", "coordinates": [2.3785637425146002, 48.855713972473325]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d13fec51683d35d8c86d2bb2f4321b1f67e99dff", "fields": {"departement": "75", "stop_lat": 48.8552333745965, "code_postal": "75104", "stop_lon": 2.361361624451313, "coord": [48.8552333745965, 2.361361624451313], "stop_id": 4036645, "stop_desc": "94 RUE SAINT ANTOINE - 75104", "stop_name": "SAINT-PAUL"}, "geometry": {"type": "Point", "coordinates": [2.361361624451313, 48.8552333745965]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fc17e1f8e56602d1a166c75d024b8242b7fa9e5a", "fields": {"departement": "75", "stop_lat": 48.86862686808374, "code_postal": "75102", "stop_lon": 2.343494134664324, "coord": [48.86862686808374, 2.343494134664324], "stop_id": 4036653, "stop_desc": "140 RUE MONTMARTRE - 75102", "stop_name": "REAUMUR - MONTMARTRE"}, "geometry": {"type": "Point", "coordinates": [2.343494134664324, 48.86862686808374]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5839fb5fb38742e937653ef1dc8bf9662d46860f", "fields": {"departement": "75", "stop_lat": 48.874522126234, "code_postal": "75108", "stop_lon": 2.3254010982774833, "coord": [48.874522126234, 2.3254010982774833], "stop_id": 4036661, "stop_desc": "FACE 9 RUE DE ROME - 75108", "stop_name": "GARE SAINT-LAZARE"}, "geometry": {"type": "Point", "coordinates": [2.3254010982774833, 48.874522126234]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7faa06e6d4a85d1707a588983ebfba3f9f74de3b", "fields": {"departement": "75", "stop_lat": 48.881925978658515, "code_postal": "75117", "stop_lon": 2.314089198789622, "coord": [48.881925978658515, 2.314089198789622], "stop_id": 4036663, "stop_desc": "16 AVENUE DE VILLIERS - 75117", "stop_name": "VILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.314089198789622, 48.881925978658515]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a2cafd1b2d45b30e0aa31d41817d5f12a7cad143", "fields": {"departement": "75", "stop_lat": 48.88594618449054, "code_postal": "75117", "stop_lon": 2.2927053638286177, "coord": [48.88594618449054, 2.2927053638286177], "stop_id": 4036665, "stop_desc": "PLACE STUART MERRILL - 75117", "stop_name": "PORTE DE CHAMPERRET"}, "geometry": {"type": "Point", "coordinates": [2.2927053638286177, 48.88594618449054]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "45ff9b5eea05fdd01c6724f1a7392de218ce6f9b", "fields": {"departement": "92", "stop_lat": 48.91585586683023, "code_postal": "92004", "stop_lon": 2.294302289078872, "coord": [48.91585586683023, 2.294302289078872], "stop_id": 4036721, "stop_desc": "PISTE GARE ROUTIERE - 92004", "stop_name": "GABRIEL PERI-METRO"}, "geometry": {"type": "Point", "coordinates": [2.294302289078872, 48.91585586683023]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9406e1e9809e1034a763bce48529c304db2c5b3a", "fields": {"departement": "92", "stop_lat": 48.91585586683023, "code_postal": "92004", "stop_lon": 2.294302289078872, "coord": [48.91585586683023, 2.294302289078872], "stop_id": 4036722, "stop_desc": "PISTE GARE ROUTIERE - 92004", "stop_name": "GABRIEL PERI-METRO"}, "geometry": {"type": "Point", "coordinates": [2.294302289078872, 48.91585586683023]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "56d8cccffcccdb0cd39d367cb698cc18e63a3cb5", "fields": {"departement": "92", "stop_lat": 48.91218097424025, "code_postal": "92004", "stop_lon": 2.296568698464727, "coord": [48.91218097424025, 2.296568698464727], "stop_id": 4036724, "stop_desc": "22 BOULEVARD VOLTAIRE - 92004", "stop_name": "PLACE VOLTAIRE"}, "geometry": {"type": "Point", "coordinates": [2.296568698464727, 48.91218097424025]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "24fb004d2aae1bd7ce7957e6222adde1c77762cd", "fields": {"departement": "92", "stop_lat": 48.90722193611381, "code_postal": "92024", "stop_lon": 2.302271357586615, "coord": [48.90722193611381, 2.302271357586615], "stop_id": 4036726, "stop_desc": "136 RUE MARTRE - 92024", "stop_name": "LEON BLUM"}, "geometry": {"type": "Point", "coordinates": [2.302271357586615, 48.90722193611381]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "834f997730b2e7a58ca076a1a024458cac095421", "fields": {"departement": "75", "stop_lat": 48.891587948844105, "code_postal": "75117", "stop_lon": 2.3181327811948154, "coord": [48.891587948844105, 2.3181327811948154], "stop_id": 4036734, "stop_desc": "141 AVENUE DE CLICHY - 75117", "stop_name": "BROCHANT - CARDINET"}, "geometry": {"type": "Point", "coordinates": [2.3181327811948154, 48.891587948844105]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bc4e22504b99debd35a6d54a660f61ba81b366be", "fields": {"departement": "75", "stop_lat": 48.874522126234, "code_postal": "75108", "stop_lon": 2.3254010982774833, "coord": [48.874522126234, 2.3254010982774833], "stop_id": 4036748, "stop_desc": "FACE 9 RUE DE ROME - 75108", "stop_name": "GARE SAINT-LAZARE"}, "geometry": {"type": "Point", "coordinates": [2.3254010982774833, 48.874522126234]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a72dc789e463c36aac905c9b7f06e9202a23f5ad", "fields": {"departement": "75", "stop_lat": 48.873300053901026, "code_postal": "75109", "stop_lon": 2.327635793622974, "coord": [48.873300053901026, 2.327635793622974], "stop_id": 4036750, "stop_desc": "21 RUE AUBER - 75109", "stop_name": "HAVRE - HAUSSMANN"}, "geometry": {"type": "Point", "coordinates": [2.327635793622974, 48.873300053901026]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5bfe2277489ee2a2ce0bf998c652cd1accdc1822", "fields": {"departement": "75", "stop_lat": 48.870073925958685, "code_postal": "75102", "stop_lon": 2.333249331660691, "coord": [48.870073925958685, 2.333249331660691], "stop_id": 4036756, "stop_desc": "35 RUE DU 4 SEPTEMBRE - 75102", "stop_name": "OPERA - 4 SEPTEMBRE"}, "geometry": {"type": "Point", "coordinates": [2.333249331660691, 48.870073925958685]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2c366ec105c0e59d6c512fe0f07b5823461d854e", "fields": {"departement": "75", "stop_lat": 48.86330642060076, "code_postal": "75101", "stop_lon": 2.341913358368381, "coord": [48.86330642060076, 2.341913358368381], "stop_id": 4036762, "stop_desc": "15 RUE DU LOUVRE - 75101", "stop_name": "COQUILLIERE - LES HALLES"}, "geometry": {"type": "Point", "coordinates": [2.341913358368381, 48.86330642060076]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8ad9d557c494fca910e43e4e5c4f152c4d7b0ca8", "fields": {"departement": "75", "stop_lat": 48.85241340970007, "code_postal": "75105", "stop_lon": 2.346311317055316, "coord": [48.85241340970007, 2.346311317055316], "stop_id": 4036771, "stop_desc": "4 RUE DU PETIT PONT - 75105", "stop_name": "PETIT PONT"}, "geometry": {"type": "Point", "coordinates": [2.346311317055316, 48.85241340970007]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c87e0588ed68ca6a50fd893b4a683d6471e89f2a", "fields": {"departement": "75", "stop_lat": 48.84097177701128, "code_postal": "75105", "stop_lon": 2.3517557184666833, "coord": [48.84097177701128, 2.3517557184666833], "stop_id": 4036779, "stop_desc": "96 RUE MONGE - 75105", "stop_name": "CENSIER - DAUBENTON"}, "geometry": {"type": "Point", "coordinates": [2.3517557184666833, 48.84097177701128]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c8f5161e0b00877d42e654dfbe4a9df5a02b8705", "fields": {"departement": "75", "stop_lat": 48.84101668295286, "code_postal": "75105", "stop_lon": 2.352014435203932, "coord": [48.84101668295286, 2.352014435203932], "stop_id": 4036780, "stop_desc": "101-103 RUE MONGE - 75105", "stop_name": "CENSIER - DAUBENTON"}, "geometry": {"type": "Point", "coordinates": [2.352014435203932, 48.84101668295286]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7dbd1088c1ed02e88295517d317b7e333f07c0f5", "fields": {"departement": "75", "stop_lat": 48.81940931886217, "code_postal": "75113", "stop_lon": 2.3592353811253997, "coord": [48.81940931886217, 2.3592353811253997], "stop_id": 4036794, "stop_desc": "190 AVENUE D'ITALIE - 75113", "stop_name": "PORTE D'ITALIE"}, "geometry": {"type": "Point", "coordinates": [2.3592353811253997, 48.81940931886217]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "721288ace3be46c327cd3fe5848a1f364737f1cf", "fields": {"departement": "94", "stop_lat": 48.810501863902964, "code_postal": "94043", "stop_lon": 2.362320626590704, "coord": [48.810501863902964, 2.362320626590704], "stop_id": 4036803, "stop_desc": "75 AVENUE DE FONTAINEBLEAU - 94043", "stop_name": "LE KREMLIN-BICETRE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.362320626590704, 48.810501863902964]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e3ad741008b3775c4bf084a0730c7dd6a668d9eb", "fields": {"departement": "75", "stop_lat": 48.85258403108319, "code_postal": "75105", "stop_lon": 2.348000108567692, "coord": [48.85258403108319, 2.348000108567692], "stop_id": 4036820, "stop_desc": "QUAI DE MONTEBELLO - 75105", "stop_name": "NOTRE-DAME - QUAI DE MONTEBELLO"}, "geometry": {"type": "Point", "coordinates": [2.348000108567692, 48.85258403108319]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e854722cf21569143dc90b525e11a6899fed3215", "fields": {"departement": "75", "stop_lat": 48.85988210624847, "code_postal": "75101", "stop_lon": 2.344283098140992, "coord": [48.85988210624847, 2.344283098140992], "stop_id": 4036822, "stop_desc": "128 RUE DE RIVOLI - 75101", "stop_name": "RIVOLI - PONT NEUF"}, "geometry": {"type": "Point", "coordinates": [2.344283098140992, 48.85988210624847]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6705a955d15997e0c195290c2777052dfd976068", "fields": {"departement": "75", "stop_lat": 48.87195232806171, "code_postal": "75109", "stop_lon": 2.3392438053086133, "coord": [48.87195232806171, 2.3392438053086133], "stop_id": 4036825, "stop_desc": "2 BOULEVARD DES ITALIENS - 75109", "stop_name": "RICHELIEU - DROUOT"}, "geometry": {"type": "Point", "coordinates": [2.3392438053086133, 48.87195232806171]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6d3ccc07a3d7ea1c6dfd7f954b2345b1ebdb531c", "fields": {"departement": "75", "stop_lat": 48.87395603688644, "code_postal": "75108", "stop_lon": 2.3265729484538205, "coord": [48.87395603688644, 2.3265729484538205], "stop_id": 4036827, "stop_desc": "74-76 BOULEVARD HAUSSMANN - 75108", "stop_name": "ROME - HAUSSMANN"}, "geometry": {"type": "Point", "coordinates": [2.3265729484538205, 48.87395603688644]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0f2958794469fbcf9bcb4109393e053f1376405a", "fields": {"departement": "92", "stop_lat": 48.90449961551857, "code_postal": "92024", "stop_lon": 2.304972468676297, "coord": [48.90449961551857, 2.304972468676297], "stop_id": 4036833, "stop_desc": "102 BIS RUE MARTRE - 92024", "stop_name": "LANDY - MARTRE"}, "geometry": {"type": "Point", "coordinates": [2.304972468676297, 48.90449961551857]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "05831c4c08dd114cfda6bb279450e510350c1069", "fields": {"departement": "75", "stop_lat": 48.89480647637911, "code_postal": "75118", "stop_lon": 2.3471501651421702, "coord": [48.89480647637911, 2.3471501651421702], "stop_id": 4036851, "stop_desc": "46 BOULEVARD ORNANO - 75118", "stop_name": "SIMPLON"}, "geometry": {"type": "Point", "coordinates": [2.3471501651421702, 48.89480647637911]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "86d0f32e4bd028b2eeca11c91103e7f126f299fd", "fields": {"departement": "75", "stop_lat": 48.88774231401873, "code_postal": "75118", "stop_lon": 2.3497109337106092, "coord": [48.88774231401873, 2.3497109337106092], "stop_id": 4036855, "stop_desc": "54-56 BOULEVARD BARBES - 75118", "stop_name": "CHATEAU ROUGE"}, "geometry": {"type": "Point", "coordinates": [2.3497109337106092, 48.88774231401873]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9ba7b935c93808192e55053e60cd78c258ff843b", "fields": {"departement": "75", "stop_lat": 48.878916395001, "code_postal": "75110", "stop_lon": 2.353469578838293, "coord": [48.878916395001, 2.353469578838293], "stop_id": 4036859, "stop_desc": "103 BOULEVARD DE MAGENTA - 75110", "stop_name": "LA FAYETTE - MAGENTA - GARE DU NORD"}, "geometry": {"type": "Point", "coordinates": [2.353469578838293, 48.878916395001]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "254013a141a7c295adecbfeddb2e1229abc9b8e6", "fields": {"departement": "75", "stop_lat": 48.87615667154024, "code_postal": "75110", "stop_lon": 2.3575699124657437, "coord": [48.87615667154024, 2.3575699124657437], "stop_id": 4036861, "stop_desc": "9 RUE DU 8 MAI 1945 - 75110", "stop_name": "GARE DE L'EST"}, "geometry": {"type": "Point", "coordinates": [2.3575699124657437, 48.87615667154024]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "893ba5ddd21ca69504898b62353aca0fab51408b", "fields": {"departement": "75", "stop_lat": 48.865821809644764, "code_postal": "75103", "stop_lon": 2.353928649583883, "coord": [48.865821809644764, 2.353928649583883], "stop_id": 4036866, "stop_desc": "37-39 RUE REAUMUR - 75103", "stop_name": "REAUMUR - ARTS ET METIERS"}, "geometry": {"type": "Point", "coordinates": [2.353928649583883, 48.865821809644764]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "69566c6756c521296e99a4d2afe46b42c30c5a3f", "fields": {"departement": "75", "stop_lat": 48.84083779071601, "code_postal": "75106", "stop_lon": 2.3335919869630257, "coord": [48.84083779071601, 2.3335919869630257], "stop_id": 4036878, "stop_desc": "147 BOULEVARD DU MONTPARNASSE - 75106", "stop_name": "CAMPAGNE PREMIERE"}, "geometry": {"type": "Point", "coordinates": [2.3335919869630257, 48.84083779071601]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9cbd26c8d5156abc3f2406280d12a3aa71ec9897", "fields": {"departement": "75", "stop_lat": 48.84166445005082, "code_postal": "75114", "stop_lon": 2.329520690967109, "coord": [48.84166445005082, 2.329520690967109], "stop_id": 4036879, "stop_desc": "206 BOULEVARD RASPAIL - 75114", "stop_name": "VAVIN"}, "geometry": {"type": "Point", "coordinates": [2.329520690967109, 48.84166445005082]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "33ff30f36f961f50dfbe115e52c3d22c1ded8366", "fields": {"departement": "75", "stop_lat": 48.83521150991317, "code_postal": "75114", "stop_lon": 2.3319178021429443, "coord": [48.83521150991317, 2.3319178021429443], "stop_id": 4036883, "stop_desc": "286 BOULEVARD RASPAIL - 75114", "stop_name": "VICTOR CONSIDERANT"}, "geometry": {"type": "Point", "coordinates": [2.3319178021429443, 48.83521150991317]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "785b0c73ac25fb1c9989fbbda88b656cdba35f28", "fields": {"departement": "75", "stop_lat": 48.830474895128575, "code_postal": "75114", "stop_lon": 2.3292909331491076, "coord": [48.830474895128575, 2.3292909331491076], "stop_id": 4036887, "stop_desc": "29-31 AVENUE DU GENERAL LECLERC - 75114", "stop_name": "MOUTON - DUVERNET"}, "geometry": {"type": "Point", "coordinates": [2.3292909331491076, 48.830474895128575]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eb8ad74ed2c416b5c7433b6ce60cdedebda43ed8", "fields": {"departement": "75", "stop_lat": 48.82929741932709, "code_postal": "75114", "stop_lon": 2.3279570462264916, "coord": [48.82929741932709, 2.3279570462264916], "stop_id": 4036888, "stop_desc": "72 AVENUE DU GENERAL LECLERC - 75114", "stop_name": "ALESIA - MAINE"}, "geometry": {"type": "Point", "coordinates": [2.3279570462264916, 48.82929741932709]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "acab507d40d5ebf66b3cae0fea0e387c1d0df970", "fields": {"departement": "92", "stop_lat": 48.818062641326925, "code_postal": "92049", "stop_lon": 2.3257950701996193, "coord": [48.818062641326925, 2.3257950701996193], "stop_id": 4036895, "stop_desc": "51 BIS AVENUE ARISTIDE BRIAND - 92049", "stop_name": "GABRIEL PERI"}, "geometry": {"type": "Point", "coordinates": [2.3257950701996193, 48.818062641326925]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "495e627507c91da77f63ea60e6b5c04fbfa67fe7", "fields": {"departement": "92", "stop_lat": 48.81363167569627, "code_postal": "92049", "stop_lon": 2.3256327423030254, "coord": [48.81363167569627, 2.3256327423030254], "stop_id": 4036896, "stop_desc": "110 AVENUE ARISTIDE BRIAND - 92049", "stop_name": "LEON GAMBETTA"}, "geometry": {"type": "Point", "coordinates": [2.3256327423030254, 48.81363167569627]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7017cb481b7238b54cbc68ad7dcbd6e9411a86bd", "fields": {"departement": "92", "stop_lat": 48.78957043889509, "code_postal": "92007", "stop_lon": 2.3191089155752103, "coord": [48.78957043889509, 2.3191089155752103], "stop_id": 4036905, "stop_desc": "278 AVENUE ARISTIDE BRIAND - 92007", "stop_name": "CITE JARDINS"}, "geometry": {"type": "Point", "coordinates": [2.3191089155752103, 48.78957043889509]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "28f38b8d4e36012b0b98352ea7727f95f431a42e", "fields": {"departement": "94", "stop_lat": 48.7935613440926, "code_postal": "94016", "stop_lon": 2.3210256241366607, "coord": [48.7935613440926, 2.3210256241366607], "stop_id": 4036915, "stop_desc": "127 AVENUE ARISTIDE BRIAND - 94016", "stop_name": "PONT ROYAL - RER"}, "geometry": {"type": "Point", "coordinates": [2.3210256241366607, 48.7935613440926]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8479bf78e996f90ae2c68b257b007dd5c700de5c", "fields": {"departement": "94", "stop_lat": 48.796922971774215, "code_postal": "94016", "stop_lon": 2.3222625783569653, "coord": [48.796922971774215, 2.3222625783569653], "stop_id": 4036916, "stop_desc": "73 AVENUE ARISTIDE BRIAND - 94016", "stop_name": "MARCEL BONNET"}, "geometry": {"type": "Point", "coordinates": [2.3222625783569653, 48.796922971774215]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a12e48dcecfaf7fbf100cf75bd63b977e13c3c5a", "fields": {"departement": "94", "stop_lat": 48.80527304622148, "code_postal": "94003", "stop_lon": 2.3256346130653758, "coord": [48.80527304622148, 2.3256346130653758], "stop_id": 4036919, "stop_desc": "77-79 AVENUE ARISTIDE BRIAND - 94003", "stop_name": "CROIX D'ARCUEIL"}, "geometry": {"type": "Point", "coordinates": [2.3256346130653758, 48.80527304622148]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "46bbc1c92c73c71442176aa9a92e2adf58980252", "fields": {"departement": "75", "stop_lat": 48.846041587705, "code_postal": "75105", "stop_lon": 2.3402777279421545, "coord": [48.846041587705, 2.3402777279421545], "stop_id": 4036925, "stop_desc": "75 BOULEVARD SAINT-MICHEL - 75105", "stop_name": "LUXEMBOURG"}, "geometry": {"type": "Point", "coordinates": [2.3402777279421545, 48.846041587705]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b9f96b15ec651c14b4f3db4744b3262a08069d01", "fields": {"departement": "75", "stop_lat": 48.86069953105734, "code_postal": "75104", "stop_lon": 2.34956822574239, "coord": [48.86069953105734, 2.34956822574239], "stop_id": 4036929, "stop_desc": "28 BOULEVARD DE SEBASTOPOL - 75104", "stop_name": "LES HALLES - CENTRE GEORGES POMPIDOU"}, "geometry": {"type": "Point", "coordinates": [2.34956822574239, 48.86069953105734]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cf505680a76234c46c634b2e8f69d97489c43e5f", "fields": {"departement": "92", "stop_lat": 48.88422463646071, "code_postal": "92062", "stop_lon": 2.239273946170175, "coord": [48.88422463646071, 2.239273946170175], "stop_id": 4024172, "stop_desc": "FACE 14 RUE ANATOLE FRANCE - 92062", "stop_name": "MAIRIE - ANATOLE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.239273946170175, 48.88422463646071]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fc99be0c0af702748ea62f199586dd29e051062d", "fields": {"departement": "92", "stop_lat": 48.882606688350634, "code_postal": "92062", "stop_lon": 2.2389772115482813, "coord": [48.882606688350634, 2.2389772115482813], "stop_id": 4024173, "stop_desc": "69 RUE EUGENE EICHENBERGER - 92062", "stop_name": "MARCHE DE PUTEAUX"}, "geometry": {"type": "Point", "coordinates": [2.2389772115482813, 48.882606688350634]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4e625faa659433e430bdd47d876331a505c6142b", "fields": {"departement": "92", "stop_lat": 48.87992568956772, "code_postal": "92062", "stop_lon": 2.2356438653396578, "coord": [48.87992568956772, 2.2356438653396578], "stop_id": 4024175, "stop_desc": "FACE 4 RUE EUGENE EICHENBERGER - 92062", "stop_name": "BAS ROGERS"}, "geometry": {"type": "Point", "coordinates": [2.2356438653396578, 48.87992568956772]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1dc36b96a8c3c51fa4b05020b65f233bdfcd39a8", "fields": {"departement": "92", "stop_lat": 48.87780312487926, "code_postal": "92073", "stop_lon": 2.233822184072774, "coord": [48.87780312487926, 2.233822184072774], "stop_id": 4024177, "stop_desc": "3 RUE EMILE DUCLAUX - 92073", "stop_name": "DE PRESSENSE"}, "geometry": {"type": "Point", "coordinates": [2.233822184072774, 48.87780312487926]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5ab15d045f7a8fd6e256689679b69dadd014cd70", "fields": {"departement": "92", "stop_lat": 48.86837636340144, "code_postal": "92073", "stop_lon": 2.2249314109891505, "coord": [48.86837636340144, 2.2249314109891505], "stop_id": 4024184, "stop_desc": "38 BOULEVARD HENRI SELLIER - 92073", "stop_name": "SURESNES DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.2249314109891505, 48.86837636340144]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c21826447a7744f111495228dfba1fb96d77d040", "fields": {"departement": "92", "stop_lat": 48.89140436926403, "code_postal": "92062", "stop_lon": 2.238006481430029, "coord": [48.89140436926403, 2.238006481430029], "stop_id": 4024196, "stop_desc": "PISTE GARE ROUTIERE - 92062", "stop_name": "LA DEFENSE-METRO-RER-TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.238006481430029, 48.89140436926403]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f2367da0e81250e337b02ad2db2c72419d6a4ea5", "fields": {"departement": "92", "stop_lat": 48.87985477346892, "code_postal": "92062", "stop_lon": 2.2368022331566495, "coord": [48.87985477346892, 2.2368022331566495], "stop_id": 4024204, "stop_desc": "163 RUE JEAN JAURES - 92062", "stop_name": "BAS ROGERS"}, "geometry": {"type": "Point", "coordinates": [2.2368022331566495, 48.87985477346892]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "605ee04ef874557d1219fb607874f9fc0a6d13ce", "fields": {"departement": "92", "stop_lat": 48.87780312487926, "code_postal": "92073", "stop_lon": 2.233822184072774, "coord": [48.87780312487926, 2.233822184072774], "stop_id": 4024205, "stop_desc": "3 RUE EMILE DUCLAUX - 92073", "stop_name": "DE PRESSENSE"}, "geometry": {"type": "Point", "coordinates": [2.233822184072774, 48.87780312487926]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f42e76283a0a8c7a1fc0cb6ba3cff708405b63f8", "fields": {"departement": "92", "stop_lat": 48.869309974761926, "code_postal": "92073", "stop_lon": 2.2237986419615177, "coord": [48.869309974761926, 2.2237986419615177], "stop_id": 4024210, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 92073", "stop_name": "SURESNES DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.2237986419615177, 48.869309974761926]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "05eb282da1a856f1bf48977a20c426c53b5ee36c", "fields": {"departement": "92", "stop_lat": 48.86805906191408, "code_postal": "92073", "stop_lon": 2.222057619036776, "coord": [48.86805906191408, 2.222057619036776], "stop_id": 4024212, "stop_desc": "FACE 49 BOULEVARD HENRI SELLIER - 92073", "stop_name": "LONGCHAMP"}, "geometry": {"type": "Point", "coordinates": [2.222057619036776, 48.86805906191408]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5aab40dd621fa6f7af9685518c5f2a4ce87f72a0", "fields": {"departement": "92", "stop_lat": 48.86006972889107, "code_postal": "92073", "stop_lon": 2.213548602298387, "coord": [48.86006972889107, 2.213548602298387], "stop_id": 4024216, "stop_desc": "20 BOULEVARD LOUIS LOUCHEUR - 92073", "stop_name": "VAL D'OR"}, "geometry": {"type": "Point", "coordinates": [2.213548602298387, 48.86006972889107]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "63443be6ba6eae4a964c09a7abc2833fdb7c865e", "fields": {"departement": "92", "stop_lat": 48.86184828083935, "code_postal": "92073", "stop_lon": 2.2126317195091785, "coord": [48.86184828083935, 2.2126317195091785], "stop_id": 4024218, "stop_desc": "30 CARREFOUR DE LA CROIX DU ROY - 92073", "stop_name": "CROIX DU ROY"}, "geometry": {"type": "Point", "coordinates": [2.2126317195091785, 48.86184828083935]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4cd8644ff393e5179f3e0f92511ac1fb616ef72f", "fields": {"departement": "92", "stop_lat": 48.86274296772583, "code_postal": "92073", "stop_lon": 2.208815484664103, "coord": [48.86274296772583, 2.208815484664103], "stop_id": 4024220, "stop_desc": "7 AVENUE EDOUARD VAILLANT - 92073", "stop_name": "PLACE JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.208815484664103, 48.86274296772583]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7db30d1f7c70fe557683f5c147ef96c83c85a46e", "fields": {"departement": "92", "stop_lat": 48.777076174853896, "code_postal": "92014", "stop_lon": 2.313442392219605, "coord": [48.777076174853896, 2.313442392219605], "stop_id": 4890613, "stop_desc": "114 BOULEVARD DU MARECHAL JOFFRE - 92014", "stop_name": "PETIT CHAMBORD - LYCEE LAKANAL"}, "geometry": {"type": "Point", "coordinates": [2.313442392219605, 48.777076174853896]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ce5fa51ae6d0cea747f2a6236ed626f46eff6751", "fields": {"departement": "92", "stop_lat": 48.76239755022339, "code_postal": "92002", "stop_lon": 2.3083508399551924, "coord": [48.76239755022339, 2.3083508399551924], "stop_id": 4890617, "stop_desc": "127 AVENUE ARISTIDE BRIAND - 92002", "stop_name": "GENERAL DE GAULLE - CROIX DE BERNY"}, "geometry": {"type": "Point", "coordinates": [2.3083508399551924, 48.76239755022339]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4fe97a9ef4844d0dcb7c1dfb2cb052560518439f", "fields": {"departement": "92", "stop_lat": 48.74560900925413, "code_postal": "92002", "stop_lon": 2.3145984514916496, "coord": [48.74560900925413, 2.3145984514916496], "stop_id": 4890623, "stop_desc": "122-124 AVENUE ARMAND GUILLEBAUD - 92002", "stop_name": "LES RABATS"}, "geometry": {"type": "Point", "coordinates": [2.3145984514916496, 48.74560900925413]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "01058aef749f6d3acac1022e111b4c249584b083", "fields": {"departement": "91", "stop_lat": 48.734941371594594, "code_postal": "91689", "stop_lon": 2.32408768295942, "coord": [48.734941371594594, 2.32408768295942], "stop_id": 4890626, "stop_desc": "11 ROUTE D'ANTONY - 91689", "stop_name": "LA POSTE"}, "geometry": {"type": "Point", "coordinates": [2.32408768295942, 48.734941371594594]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b3613d014fdd3e3f321afd5708964ca7256c28f5", "fields": {"departement": "91", "stop_lat": 48.716395966057824, "code_postal": "91161", "stop_lon": 2.3099384915087846, "coord": [48.716395966057824, 2.3099384915087846], "stop_id": 4890631, "stop_desc": "RTE DE WISSOUS - 91161", "stop_name": "VIEILLE REMISE"}, "geometry": {"type": "Point", "coordinates": [2.3099384915087846, 48.716395966057824]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "88021926c0221af6c9d2badb204fa8a49a31faed", "fields": {"departement": "91", "stop_lat": 48.69657690148715, "code_postal": "91161", "stop_lon": 2.312542333307825, "coord": [48.69657690148715, 2.312542333307825], "stop_id": 4890645, "stop_desc": "28 BIS RUE PIERRE MENDES FRANCE - 91161", "stop_name": "ELISEE RECLUS"}, "geometry": {"type": "Point", "coordinates": [2.312542333307825, 48.69657690148715]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "64c155965c57fc749871cd35678fb5f73f1b689e", "fields": {"departement": "91", "stop_lat": 48.69761622788545, "code_postal": "91345", "stop_lon": 2.299764489117, "coord": [48.69761622788545, 2.299764489117], "stop_id": 4890675, "stop_desc": "AVENUE DE L'ABBE PIERRE - 91345", "stop_name": "GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.299764489117, 48.69761622788545]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "264a660ba5899446b3d8453a35bd5b72ae24f517", "fields": {"departement": "91", "stop_lat": 48.69683766498326, "code_postal": "91161", "stop_lon": 2.313003870905301, "coord": [48.69683766498326, 2.313003870905301], "stop_id": 4890680, "stop_desc": "27 BIS RUE PIERRE MENDES FRANCE - 91161", "stop_name": "ELISEE RECLUS"}, "geometry": {"type": "Point", "coordinates": [2.313003870905301, 48.69683766498326]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6e0129c8bb6c158f02691ff8791359ce85cd0177", "fields": {"departement": "91", "stop_lat": 48.731454125187724, "code_postal": "91689", "stop_lon": 2.3262353619149487, "coord": [48.731454125187724, 2.3262353619149487], "stop_id": 4890690, "stop_desc": "2 RUE DE LA DIVISION LECLERC - 91689", "stop_name": "MAIRIE DE WISSOUS"}, "geometry": {"type": "Point", "coordinates": [2.3262353619149487, 48.731454125187724]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9ebd6768106343e16ee2aafaa7568cf700a24932", "fields": {"departement": "91", "stop_lat": 48.73453761736959, "code_postal": "91689", "stop_lon": 2.335719218102518, "coord": [48.73453761736959, 2.335719218102518], "stop_id": 4890691, "stop_desc": "BOULEVARD DE L'EUROPE - 91689", "stop_name": "CUCHERON"}, "geometry": {"type": "Point", "coordinates": [2.335719218102518, 48.73453761736959]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "50415a98c73edface941693efa3f6c40e35c7f36", "fields": {"departement": "91", "stop_lat": 48.738977729476964, "code_postal": "91689", "stop_lon": 2.3321043379272886, "coord": [48.738977729476964, 2.3321043379272886], "stop_id": 4890692, "stop_desc": "27 ROUTE DE MONTJEAN - 91689", "stop_name": "MONTJEAN"}, "geometry": {"type": "Point", "coordinates": [2.3321043379272886, 48.738977729476964]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "00956129b6cbecedd301b5b229ce30d02c9baa3a", "fields": {"departement": "91", "stop_lat": 48.7434792760933, "code_postal": "91689", "stop_lon": 2.31726310983207, "coord": [48.7434792760933, 2.31726310983207], "stop_id": 4890695, "stop_desc": "56 RTE D'ANTONY CHARLES DE GAULLE - 91689", "stop_name": "PASCAL"}, "geometry": {"type": "Point", "coordinates": [2.31726310983207, 48.7434792760933]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "639d96e37e87f6d450de676f6b747c4309db6ad9", "fields": {"departement": "94", "stop_lat": 48.756660329192, "code_postal": "94073", "stop_lon": 2.397557254094344, "coord": [48.756660329192, 2.397557254094344], "stop_id": 4909847, "stop_desc": "FACE 8 RUE HELENE MULLER - 94073", "stop_name": "HELENE MULLER"}, "geometry": {"type": "Point", "coordinates": [2.397557254094344, 48.756660329192]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4809d041ce486796ae523e7da09ec0826bfe6f2a", "fields": {"departement": "94", "stop_lat": 48.76438351129038, "code_postal": "94073", "stop_lon": 2.392658086465313, "coord": [48.76438351129038, 2.392658086465313], "stop_id": 4909853, "stop_desc": "AVENUE RENE PANHARD - 94073", "stop_name": "MAIRIE DE THIAIS"}, "geometry": {"type": "Point", "coordinates": [2.392658086465313, 48.76438351129038]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "41f4a40fcdd6ffb78e5d3b0a0704a0e4f353fe7a", "fields": {"departement": "94", "stop_lat": 48.762463098390114, "code_postal": "94073", "stop_lon": 2.38569517966057, "coord": [48.762463098390114, 2.38569517966057], "stop_id": 4909858, "stop_desc": "45-47 RUE DE LA GALAISE - 94073", "stop_name": "LA GALAISE"}, "geometry": {"type": "Point", "coordinates": [2.38569517966057, 48.762463098390114]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b560ff47172a312f9125aa704e14dfd87149813d", "fields": {"departement": "92", "stop_lat": 48.93335625390836, "code_postal": "92036", "stop_lon": 2.3030584799968534, "coord": [48.93335625390836, 2.3030584799968534], "stop_id": 4913357, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 92036", "stop_name": "ROND-POINT PIERRE TIMBAUD"}, "geometry": {"type": "Point", "coordinates": [2.3030584799968534, 48.93335625390836]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5a4fbb47e19536e1d971408bd5c17e15db4cc12c", "fields": {"departement": "75", "stop_lat": 48.86497475517658, "code_postal": "75111", "stop_lon": 2.3657525342739234, "coord": [48.86497475517658, 2.3657525342739234], "stop_id": 4996986, "stop_desc": "28 BOULEVARD DU TEMPLE - 75111", "stop_name": "JEAN-PIERRE TIMBAUD"}, "geometry": {"type": "Point", "coordinates": [2.3657525342739234, 48.86497475517658]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4131c5c4ee92db43f5632854e4284308022bc7e8", "fields": {"departement": "75", "stop_lat": 48.88362477105826, "code_postal": "75110", "stop_lon": 2.3593443757229804, "coord": [48.88362477105826, 2.3593443757229804], "stop_id": 4997000, "stop_desc": "226-228 RUE DU FAUBOURG SAINT-DENIS - 75110", "stop_name": "PLACE DE LA CHAPELLE"}, "geometry": {"type": "Point", "coordinates": [2.3593443757229804, 48.88362477105826]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3889b82435a9c210919ad6dd2e022eed985365d9", "fields": {"departement": "75", "stop_lat": 48.887318475652194, "code_postal": "75118", "stop_lon": 2.3595776289196335, "coord": [48.887318475652194, 2.3595776289196335], "stop_id": 4997002, "stop_desc": "39 RUE MARX DORMOY - 75118", "stop_name": "DEPARTEMENT - MARX DORMOY"}, "geometry": {"type": "Point", "coordinates": [2.3595776289196335, 48.887318475652194]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5664ea18d8611fa53cd868d597ae074d07cc003e", "fields": {"departement": "75", "stop_lat": 48.892989410552985, "code_postal": "75118", "stop_lon": 2.3594710343482697, "coord": [48.892989410552985, 2.3594710343482697], "stop_id": 4997006, "stop_desc": "33 RUE DE LA CHAPELLE - 75118", "stop_name": "LES ROSES"}, "geometry": {"type": "Point", "coordinates": [2.3594710343482697, 48.892989410552985]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e2da80e8ba64b6a4e3f6d4247d6ba4261d9c8c98", "fields": {"departement": "75", "stop_lat": 48.894984549435996, "code_postal": "75118", "stop_lon": 2.359526410435676, "coord": [48.894984549435996, 2.359526410435676], "stop_id": 4997007, "stop_desc": "66 RUE DE LA CHAPELLE - 75118", "stop_name": "BOUCRY"}, "geometry": {"type": "Point", "coordinates": [2.359526410435676, 48.894984549435996]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a0777e1c30ed811f492437c2da3954d5a5de5762", "fields": {"departement": "75", "stop_lat": 48.88506276042979, "code_postal": "75118", "stop_lon": 2.3591678300283867, "coord": [48.88506276042979, 2.3591678300283867], "stop_id": 4997011, "stop_desc": "5 RUE MARX DORMOY - 75118", "stop_name": "PLACE DE LA CHAPELLE"}, "geometry": {"type": "Point", "coordinates": [2.3591678300283867, 48.88506276042979]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b06800c902a0828b432d870f93f4d8c948652bc8", "fields": {"departement": "75", "stop_lat": 48.86870520821781, "code_postal": "75110", "stop_lon": 2.362662099843037, "coord": [48.86870520821781, 2.362662099843037], "stop_id": 4997014, "stop_desc": "1 BIS BOULEVARD DE MAGENTA - 75110", "stop_name": "REPUBLIQUE - MAGENTA"}, "geometry": {"type": "Point", "coordinates": [2.362662099843037, 48.86870520821781]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b62dd413962b11dcccce8d4bbdc078bf6484823b", "fields": {"departement": "75", "stop_lat": 48.84489527909312, "code_postal": "75112", "stop_lon": 2.3715287402401484, "coord": [48.84489527909312, 2.3715287402401484], "stop_id": 4997022, "stop_desc": "205-207 RUE DE BERCY - 75112", "stop_name": "GARE DE LYON - VAN GOGH"}, "geometry": {"type": "Point", "coordinates": [2.3715287402401484, 48.84489527909312]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1a6b2c3cbc164bcb5975e15edcf51561a5e99ad0", "fields": {"departement": "75", "stop_lat": 48.843627486950616, "code_postal": "75112", "stop_lon": 2.3733933899705346, "coord": [48.843627486950616, 2.3733933899705346], "stop_id": 4997023, "stop_desc": "179 RUE DE BERCY - 75112", "stop_name": "GARE DE LYON."}, "geometry": {"type": "Point", "coordinates": [2.3733933899705346, 48.843627486950616]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ec981a33237d21dbc0e2c96f9d90e2077a462da2", "fields": {"departement": "92", "stop_lat": 48.9179182298342, "code_postal": "92004", "stop_lon": 2.3088095215304976, "coord": [48.9179182298342, 2.3088095215304976], "stop_id": 5009398, "stop_desc": "145 AVENUE DES GRESILLONS - 92004", "stop_name": "TOUR D'ASNIERES - LAURENT CELY"}, "geometry": {"type": "Point", "coordinates": [2.3088095215304976, 48.9179182298342]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f8d77609f52a0b7b6e5206f0b078f22d24cc306b", "fields": {"departement": "92", "stop_lat": 48.9247960072066, "code_postal": "92036", "stop_lon": 2.2893442681480756, "coord": [48.9247960072066, 2.2893442681480756], "stop_id": 5009404, "stop_desc": "60 RUE LOUIS CALMEL - 92036", "stop_name": "COUTURE D'AUXERRE"}, "geometry": {"type": "Point", "coordinates": [2.2893442681480756, 48.9247960072066]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fa17868dfe6bccf5c7ea2cd473ec3cc1acd43fc0", "fields": {"departement": "92", "stop_lat": 48.92208826674183, "code_postal": "92004", "stop_lon": 2.283100878592332, "coord": [48.92208826674183, 2.283100878592332], "stop_id": 5009406, "stop_desc": "FACE 2 VILLA ROUVEYROL - 92004", "stop_name": "ROUVEYROL"}, "geometry": {"type": "Point", "coordinates": [2.283100878592332, 48.92208826674183]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "75bc501cc44ab92f8adb87a6b9a8903523fc2888", "fields": {"departement": "92", "stop_lat": 48.92757405566248, "code_postal": "92025", "stop_lon": 2.272606929228948, "coord": [48.92757405566248, 2.272606929228948], "stop_id": 5009408, "stop_desc": "384 AVENUE D'ARGENTEUIL - 92025", "stop_name": "QUATRE ROUTES"}, "geometry": {"type": "Point", "coordinates": [2.272606929228948, 48.92757405566248]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d0d93cf3258dbde6dadef135e8a1f99a9071bc43", "fields": {"departement": "92", "stop_lat": 48.92939052181482, "code_postal": "92004", "stop_lon": 2.274691466676802, "coord": [48.92939052181482, 2.274691466676802], "stop_id": 5009410, "stop_desc": "RUE DES MOURINOUX - 92004", "stop_name": "HENRI ROBERT"}, "geometry": {"type": "Point", "coordinates": [2.274691466676802, 48.92939052181482]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "81fa4da6fb9d82cd1ed466b4e65a270c09fceb35", "fields": {"departement": "92", "stop_lat": 48.93225782669017, "code_postal": "92004", "stop_lon": 2.275629162856483, "coord": [48.93225782669017, 2.275629162856483], "stop_id": 5009411, "stop_desc": "RUE HENRI POINCARE - 92004", "stop_name": "MOURINOUX"}, "geometry": {"type": "Point", "coordinates": [2.275629162856483, 48.93225782669017]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "964deb62c2be7ae995d2f72642a1c89a746c3264", "fields": {"departement": "75", "stop_lat": 48.88774231401873, "code_postal": "75118", "stop_lon": 2.3497109337106092, "coord": [48.88774231401873, 2.3497109337106092], "stop_id": 5018148, "stop_desc": "54-56 BOULEVARD BARBES - 75118", "stop_name": "CHATEAU ROUGE"}, "geometry": {"type": "Point", "coordinates": [2.3497109337106092, 48.88774231401873]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d8ff43212547c242f665fd547dacfeb33090b815", "fields": {"departement": "75", "stop_lat": 48.89219133685987, "code_postal": "75118", "stop_lon": 2.345514131309468, "coord": [48.89219133685987, 2.345514131309468], "stop_id": 5018153, "stop_desc": "109-111 RUE ORDENER - 75118", "stop_name": "MAIRIE DU 18E - JULES JOFFRIN"}, "geometry": {"type": "Point", "coordinates": [2.345514131309468, 48.89219133685987]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "850fab19a2da818ff941b7e1ce09ffb4311829f0", "fields": {"departement": "75", "stop_lat": 48.89198405919228, "code_postal": "75117", "stop_lon": 2.3229438130824707, "coord": [48.89198405919228, 2.3229438130824707], "stop_id": 5018162, "stop_desc": "42 RUE GUY MOQUET - 75117", "stop_name": "MOINES - DAVY"}, "geometry": {"type": "Point", "coordinates": [2.3229438130824707, 48.89198405919228]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bb04b13755b7954df41fb074cbdb62390b1f31b7", "fields": {"departement": "75", "stop_lat": 48.891273377913336, "code_postal": "75117", "stop_lon": 2.3180102343336593, "coord": [48.891273377913336, 2.3180102343336593], "stop_id": 5018163, "stop_desc": "157 RUE CARDINET - 75117", "stop_name": "BROCHANT - CARDINET"}, "geometry": {"type": "Point", "coordinates": [2.3180102343336593, 48.891273377913336]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "13f0ecf2ba617b0fb7aa046faef97d39b665b76d", "fields": {"departement": "75", "stop_lat": 48.88949363293875, "code_postal": "75117", "stop_lon": 2.3163345595079257, "coord": [48.88949363293875, 2.3163345595079257], "stop_id": 5018165, "stop_desc": "FACE 150 R CARDINET - 75117", "stop_name": "PARC MARTIN LUTHER KING"}, "geometry": {"type": "Point", "coordinates": [2.3163345595079257, 48.88949363293875]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dc46f7ea51241dd429735a04d384e3a6e08dee65", "fields": {"departement": "75", "stop_lat": 48.88526778235895, "code_postal": "75117", "stop_lon": 2.307560068708634, "coord": [48.88526778235895, 2.307560068708634], "stop_id": 5018172, "stop_desc": "45 RUE JOUFFROY D'ABBANS - 75117", "stop_name": "JOUFFROY D'ABBANS - MALESHERBES"}, "geometry": {"type": "Point", "coordinates": [2.307560068708634, 48.88526778235895]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c931ca7973de9e057010c6846b35c966a26bb3ab", "fields": {"departement": "75", "stop_lat": 48.88316335598248, "code_postal": "75117", "stop_lon": 2.3023421021217216, "coord": [48.88316335598248, 2.3023421021217216], "stop_id": 5018175, "stop_desc": "66 RUE DE PRONY - 75117", "stop_name": "WAGRAM - PRONY"}, "geometry": {"type": "Point", "coordinates": [2.3023421021217216, 48.88316335598248]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f108b2935fd39ff105f752d4d350c54fbd45a88c", "fields": {"departement": "75", "stop_lat": 48.88120351193823, "code_postal": "75117", "stop_lon": 2.3002721839436022, "coord": [48.88120351193823, 2.3002721839436022], "stop_id": 5018177, "stop_desc": "89 AVENUE DE WAGRAM - 75117", "stop_name": "WAGRAM - COURCELLES"}, "geometry": {"type": "Point", "coordinates": [2.3002721839436022, 48.88120351193823]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "80d4a77b194078c2645394574590f136dc0f3bf7", "fields": {"departement": "75", "stop_lat": 48.871044532850576, "code_postal": "75109", "stop_lon": 2.3325680619632974, "coord": [48.871044532850576, 2.3325680619632974], "stop_id": 5018187, "stop_desc": "PLACE DE L'OPERA - 75109", "stop_name": "OPERA"}, "geometry": {"type": "Point", "coordinates": [2.3325680619632974, 48.871044532850576]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "42e3173260723d6a848e03462f0964c02a7f3c2a", "fields": {"departement": "75", "stop_lat": 48.87849422642491, "code_postal": "75108", "stop_lon": 2.32285215568243, "coord": [48.87849422642491, 2.32285215568243], "stop_id": 5018194, "stop_desc": "27 RUE DE VIENNE - 75108", "stop_name": "EUROPE"}, "geometry": {"type": "Point", "coordinates": [2.32285215568243, 48.87849422642491]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5f80506c798bb412e85d32ff255f552a48e6d447", "fields": {"departement": "75", "stop_lat": 48.88317671008476, "code_postal": "75117", "stop_lon": 2.3239137673269132, "coord": [48.88317671008476, 2.3239137673269132], "stop_id": 5018197, "stop_desc": "2 RUE DES BATIGNOLLES - 75117", "stop_name": "BOULEVARD DES BATIGNOLLES"}, "geometry": {"type": "Point", "coordinates": [2.3239137673269132, 48.88317671008476]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b7c89ef4b1b65d446cdcfff41d470abfd46bc3ae", "fields": {"departement": "75", "stop_lat": 48.88569208794682, "code_postal": "75117", "stop_lon": 2.3165813931328927, "coord": [48.88569208794682, 2.3165813931328927], "stop_id": 5018202, "stop_desc": "RUE DE ROME - 75117", "stop_name": "SQUARE DES BATIGNOLLES"}, "geometry": {"type": "Point", "coordinates": [2.3165813931328927, 48.88569208794682]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9728e30707afb5917f7c65f4308969037c2c6794", "fields": {"departement": "75", "stop_lat": 48.8912015220119, "code_postal": "75117", "stop_lon": 2.318269215695327, "coord": [48.8912015220119, 2.318269215695327], "stop_id": 5018205, "stop_desc": "190 RUE CARDINET - 75117", "stop_name": "BROCHANT - CARDINET"}, "geometry": {"type": "Point", "coordinates": [2.318269215695327, 48.8912015220119]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "313d1e1e9b2a628a421971507fe9ffe8934e3a6c", "fields": {"departement": "75", "stop_lat": 48.89446424778953, "code_postal": "75117", "stop_lon": 2.320857730348208, "coord": [48.89446424778953, 2.320857730348208], "stop_id": 5018207, "stop_desc": "48-50 RUE POUCHET - 75117", "stop_name": "LA JONQUIERE"}, "geometry": {"type": "Point", "coordinates": [2.320857730348208, 48.89446424778953]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "35e5008585619786f0595c388dc32a9d3b775319", "fields": {"departement": "75", "stop_lat": 48.89408672259965, "code_postal": "75117", "stop_lon": 2.3203944314007625, "coord": [48.89408672259965, 2.3203944314007625], "stop_id": 5018208, "stop_desc": "45 BIS RUE POUCHET - 75117", "stop_name": "LA JONQUIERE"}, "geometry": {"type": "Point", "coordinates": [2.3203944314007625, 48.89408672259965]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2b2ade51d1603071af03441b8f988b80cab2e046", "fields": {"departement": "92", "stop_lat": 48.90140172282209, "code_postal": "92024", "stop_lon": 2.3170249778974994, "coord": [48.90140172282209, 2.3170249778974994], "stop_id": 5018217, "stop_desc": "92-98 BOULEVARD VICTOR HUGO - 92024", "stop_name": "CLICHY - VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.3170249778974994, 48.90140172282209]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6f5f09884baa87e22797218d4956df84226d138a", "fields": {"departement": "75", "stop_lat": 48.88217010039993, "code_postal": "75108", "stop_lon": 2.3235733558862908, "coord": [48.88217010039993, 2.3235733558862908], "stop_id": 5018221, "stop_desc": "23-25 RUE CLAPEYRON - 75108", "stop_name": "BOULEVARD DES BATIGNOLLES"}, "geometry": {"type": "Point", "coordinates": [2.3235733558862908, 48.88217010039993]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "60a36daf76ff945228b854925774161be6abf454", "fields": {"departement": "75", "stop_lat": 48.87243595580059, "code_postal": "75110", "stop_lon": 2.3574049633654526, "coord": [48.87243595580059, 2.3574049633654526], "stop_id": 5018333, "stop_desc": "67-69 RUE DU FAUBOURG SAINT-MARTIN - 75110", "stop_name": "MAIRIE DU 10E"}, "geometry": {"type": "Point", "coordinates": [2.3574049633654526, 48.87243595580059]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "49d7dd2761092fb55ed26efe36d1c27ad43abe20", "fields": {"departement": "75", "stop_lat": 48.85747297682197, "code_postal": "75104", "stop_lon": 2.3502484760856097, "coord": [48.85747297682197, 2.3502484760856097], "stop_id": 5018338, "stop_desc": "4-6 RUE DE LA COUTELLERIE - 75104", "stop_name": "CHATELET - HOTEL DE VILLE"}, "geometry": {"type": "Point", "coordinates": [2.3502484760856097, 48.85747297682197]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fb587afadc409e7e37831bf87b6578c0aef43f2a", "fields": {"departement": "75", "stop_lat": 48.84353318485999, "code_postal": "75105", "stop_lon": 2.3520832346079663, "coord": [48.84353318485999, 2.3520832346079663], "stop_id": 5018346, "stop_desc": "68 RUE MONGE - 75105", "stop_name": "MONGE"}, "geometry": {"type": "Point", "coordinates": [2.3520832346079663, 48.84353318485999]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6626dde8819ab9d683aae42da48ccd3dccae1971", "fields": {"departement": "75", "stop_lat": 48.84288605707058, "code_postal": "75105", "stop_lon": 2.352287297121382, "coord": [48.84288605707058, 2.352287297121382], "stop_id": 5018347, "stop_desc": "77 BIS RUE MONGE - 75105", "stop_name": "MONGE"}, "geometry": {"type": "Point", "coordinates": [2.352287297121382, 48.84288605707058]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4500e9d7a561c255650c3e2b480171a9d7ac2f1b", "fields": {"departement": "75", "stop_lat": 48.8363880998256, "code_postal": "75113", "stop_lon": 2.351917814788917, "coord": [48.8363880998256, 2.351917814788917], "stop_id": 5018352, "stop_desc": "26 AVENUE DES GOBELINS - 75113", "stop_name": "LES GOBELINS"}, "geometry": {"type": "Point", "coordinates": [2.351917814788917, 48.8363880998256]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3c96040e3df4060a91c1b420961d17e2565d7b40", "fields": {"departement": "75", "stop_lat": 48.834248809681654, "code_postal": "75113", "stop_lon": 2.3537823601834367, "coord": [48.834248809681654, 2.3537823601834367], "stop_id": 5018354, "stop_desc": "57-63 AVENUE DES GOBELINS - 75113", "stop_name": "BANQUIER"}, "geometry": {"type": "Point", "coordinates": [2.3537823601834367, 48.834248809681654]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "67e5c0a8c8d6c77e8290f982be4297a4e51c92dd", "fields": {"departement": "75", "stop_lat": 48.82251923443529, "code_postal": "75113", "stop_lon": 2.35827030620746, "coord": [48.82251923443529, 2.35827030620746], "stop_id": 5018362, "stop_desc": "150 AVENUE D'ITALIE - 75113", "stop_name": "MAISON BLANCHE"}, "geometry": {"type": "Point", "coordinates": [2.35827030620746, 48.82251923443529]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e84c8eb2a30fc95f75d7115eff31f94ef15bbf8e", "fields": {"departement": "94", "stop_lat": 48.80408663098778, "code_postal": "94043", "stop_lon": 2.349119394220725, "coord": [48.80408663098778, 2.349119394220725], "stop_id": 5018379, "stop_desc": "96 RUE BENOIT MALON - 94043", "stop_name": "LYCEE DARIUS MILHAUD - BENOIT MALON"}, "geometry": {"type": "Point", "coordinates": [2.349119394220725, 48.80408663098778]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "62fe06952dbeb0155731fd38db82fd8350e2b8b7", "fields": {"departement": "75", "stop_lat": 48.83725093710796, "code_postal": "75105", "stop_lon": 2.3516729882807454, "coord": [48.83725093710796, 2.3516729882807454], "stop_id": 5018382, "stop_desc": "21 AVENUE DES GOBELINS - 75105", "stop_name": "LES GOBELINS"}, "geometry": {"type": "Point", "coordinates": [2.3516729882807454, 48.83725093710796]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d87478369aacc754bd62b8adc2b96632c5247e03", "fields": {"departement": "75", "stop_lat": 48.863997699201235, "code_postal": "75103", "stop_lon": 2.351407984903802, "coord": [48.863997699201235, 2.351407984903802], "stop_id": 5018388, "stop_desc": "66 BOULEVARD DE SEBASTOPOL - 75103", "stop_name": "TURBIGO - ETIENNE MARCEL"}, "geometry": {"type": "Point", "coordinates": [2.351407984903802, 48.863997699201235]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f281c6c85849fc9a0b5d215ab97a289404d5bd60", "fields": {"departement": "75", "stop_lat": 48.872337311493894, "code_postal": "75110", "stop_lon": 2.3560833742278997, "coord": [48.872337311493894, 2.3560833742278997], "stop_id": 5018391, "stop_desc": "32 BOULEVARD DE STRASBOURG - 75110", "stop_name": "CHATEAU D'EAU"}, "geometry": {"type": "Point", "coordinates": [2.3560833742278997, 48.872337311493894]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c03fe7988d55169caffa319b733c368f7d805ec9", "fields": {"departement": "75", "stop_lat": 48.874062503585236, "code_postal": "75110", "stop_lon": 2.3583048250119405, "coord": [48.874062503585236, 2.3583048250119405], "stop_id": 5018393, "stop_desc": "119 RUE DU FAUBOURG SAINT-MARTIN - 75110", "stop_name": "MAGENTA - SAINT-MARTIN"}, "geometry": {"type": "Point", "coordinates": [2.3583048250119405, 48.874062503585236]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "28b11885bd8727d82d7f46b24d8d56d19a8b6c8c", "fields": {"departement": "75", "stop_lat": 48.84353318485999, "code_postal": "75105", "stop_lon": 2.3520832346079663, "coord": [48.84353318485999, 2.3520832346079663], "stop_id": 5018405, "stop_desc": "68 RUE MONGE - 75105", "stop_name": "MONGE"}, "geometry": {"type": "Point", "coordinates": [2.3520832346079663, 48.84353318485999]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "df232edc75f0a59fb98b424b1cc2577e4e551c4e", "fields": {"departement": "75", "stop_lat": 48.83891375330678, "code_postal": "75105", "stop_lon": 2.350679522020371, "coord": [48.83891375330678, 2.350679522020371], "stop_id": 5018407, "stop_desc": "118 RUE MONGE - 75105", "stop_name": "MONGE - CLAUDE BERNARD"}, "geometry": {"type": "Point", "coordinates": [2.350679522020371, 48.83891375330678]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aaa2e5ffe462671898bb6d40fe3e2e3a908546d7", "fields": {"departement": "75", "stop_lat": 48.8363880998256, "code_postal": "75113", "stop_lon": 2.351917814788917, "coord": [48.8363880998256, 2.351917814788917], "stop_id": 5018408, "stop_desc": "26 AVENUE DES GOBELINS - 75113", "stop_name": "LES GOBELINS"}, "geometry": {"type": "Point", "coordinates": [2.351917814788917, 48.8363880998256]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a52b31706f9b7dd5e984e47a43234a7b44823a08", "fields": {"departement": "75", "stop_lat": 48.830545620330376, "code_postal": "75113", "stop_lon": 2.3557823301132745, "coord": [48.830545620330376, 2.3557823301132745], "stop_id": 5018411, "stop_desc": "6-8 AVENUE D'ITALIE - 75113", "stop_name": "CENTRE COMMERCIAL ITALIE 2"}, "geometry": {"type": "Point", "coordinates": [2.3557823301132745, 48.830545620330376]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b84e7068951d722640968cb7e9f408b7fab6aa00", "fields": {"departement": "75", "stop_lat": 48.82764247186972, "code_postal": "75113", "stop_lon": 2.356679718554963, "coord": [48.82764247186972, 2.356679718554963], "stop_id": 5018412, "stop_desc": "52 AVENUE D'ITALIE - 75113", "stop_name": "VANDREZANNE"}, "geometry": {"type": "Point", "coordinates": [2.356679718554963, 48.82764247186972]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8a8688eefe80892473b8f13a29d67e2ce04d04ef", "fields": {"departement": "75", "stop_lat": 48.81940931886217, "code_postal": "75113", "stop_lon": 2.3592353811253997, "coord": [48.81940931886217, 2.3592353811253997], "stop_id": 5018415, "stop_desc": "190 AVENUE D'ITALIE - 75113", "stop_name": "PORTE D'ITALIE"}, "geometry": {"type": "Point", "coordinates": [2.3592353811253997, 48.81940931886217]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "22cd5f7894355da9bc8eb771a246d16ba9b88e30", "fields": {"departement": "75", "stop_lat": 48.81843859863193, "code_postal": "75113", "stop_lon": 2.359493561653259, "coord": [48.81843859863193, 2.359493561653259], "stop_id": 5018416, "stop_desc": "AVENUE DE LA PORTE D'ITALIE - 75113", "stop_name": "PORTE D'ITALIE - HELENE BOUCHER"}, "geometry": {"type": "Point", "coordinates": [2.359493561653259, 48.81843859863193]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cdda2f17d1199914cbca8d4dc82cf7dd40baee8d", "fields": {"departement": "94", "stop_lat": 48.81476240384012, "code_postal": "94043", "stop_lon": 2.360621543737651, "coord": [48.81476240384012, 2.360621543737651], "stop_id": 5018417, "stop_desc": "18 AVENUE DE FONTAINEBLEAU - 94043", "stop_name": "ROGER SALENGRO - FONTAINEBLEAU"}, "geometry": {"type": "Point", "coordinates": [2.360621543737651, 48.81476240384012]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bfeb69a4d6d863f44c05142762e22b1ed9f5ef0e", "fields": {"departement": "94", "stop_lat": 48.812137822019444, "code_postal": "94043", "stop_lon": 2.361423259884513, "coord": [48.812137822019444, 2.361423259884513], "stop_id": 5018418, "stop_desc": "58 AVENUE DE FONTAINEBLEAU - 94043", "stop_name": "CONVENTION - FONTAINEBLEAU"}, "geometry": {"type": "Point", "coordinates": [2.361423259884513, 48.812137822019444]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "653f99e9b1bef8ec781c7571892e0f66c51a9a69", "fields": {"departement": "94", "stop_lat": 48.805093501623176, "code_postal": "94043", "stop_lon": 2.346452733070576, "coord": [48.805093501623176, 2.346452733070576], "stop_id": 5018420, "stop_desc": "113 AVENUE CHARLES GIDE - 94043", "stop_name": "FORT DU KREMLIN-BICETRE"}, "geometry": {"type": "Point", "coordinates": [2.346452733070576, 48.805093501623176]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "94a8149a41c11559044bd1b1b0d4e9b1e7bd6597", "fields": {"departement": "94", "stop_lat": 48.80727665850562, "code_postal": "94043", "stop_lon": 2.3543860945189143, "coord": [48.80727665850562, 2.3543860945189143], "stop_id": 5018421, "stop_desc": "25 AVENUE CHARLES GIDE - 94043", "stop_name": "BARNUFLES-LA PISCINE"}, "geometry": {"type": "Point", "coordinates": [2.3543860945189143, 48.80727665850562]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fafd1608945136e2dcc20d8a34142f33fe87d789", "fields": {"departement": "94", "stop_lat": 48.80943303655347, "code_postal": "94043", "stop_lon": 2.3586460244237313, "coord": [48.80943303655347, 2.3586460244237313], "stop_id": 5018422, "stop_desc": "1 RUE DE VERDUN - 94043", "stop_name": "HOPITAL DU KREMLIN-BICETRE"}, "geometry": {"type": "Point", "coordinates": [2.3586460244237313, 48.80943303655347]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "796b302bdcd331ad7121ada415fb3d9041611c57", "fields": {"departement": "75", "stop_lat": 48.81946318939424, "code_postal": "75113", "stop_lon": 2.3595348317669615, "coord": [48.81946318939424, 2.3595348317669615], "stop_id": 5018431, "stop_desc": "159 AVENUE D'ITALIE - 75113", "stop_name": "PORTE D'ITALIE"}, "geometry": {"type": "Point", "coordinates": [2.3595348317669615, 48.81946318939424]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9ab6fbeb31302df6b80792742af34c185b8288f7", "fields": {"departement": "92", "stop_lat": 48.821319799672125, "code_postal": "92048", "stop_lon": 2.2272109871942822, "coord": [48.821319799672125, 2.2272109871942822], "stop_id": 5018462, "stop_desc": "12 RUE MARCEL ALLEGOT - 92048", "stop_name": "11 NOVEMBRE"}, "geometry": {"type": "Point", "coordinates": [2.2272109871942822, 48.821319799672125]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2ba3680a22503afaa8b9683fff4b1e033287c439", "fields": {"departement": "92", "stop_lat": 48.81661431402316, "code_postal": "92048", "stop_lon": 2.231712137797927, "coord": [48.81661431402316, 2.231712137797927], "stop_id": 5018464, "stop_desc": "16 BOULEVARD VERD-DE-ST JULIEN - 92048", "stop_name": "JEANNE D'ARC"}, "geometry": {"type": "Point", "coordinates": [2.231712137797927, 48.81661431402316]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "228aa3410ce64d72e7e705f736595a91762016a8", "fields": {"departement": "92", "stop_lat": 48.8075402745395, "code_postal": "92048", "stop_lon": 2.2358535787928604, "coord": [48.8075402745395, 2.2358535787928604], "stop_id": 5018467, "stop_desc": "36-38 RUE DE LA REPUBLIQUE - 92048", "stop_name": "EGLISE DE MEUDON"}, "geometry": {"type": "Point", "coordinates": [2.2358535787928604, 48.8075402745395]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9198e60fb7ba687b2d556def1706abb9153ca35b", "fields": {"departement": "92", "stop_lat": 48.80783182434355, "code_postal": "92048", "stop_lon": 2.2405883554701855, "coord": [48.80783182434355, 2.2405883554701855], "stop_id": 5018469, "stop_desc": "AVENUE LOUVOIS - 92048", "stop_name": "VAL FLEURY RER"}, "geometry": {"type": "Point", "coordinates": [2.2405883554701855, 48.80783182434355]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e9ad48967f7877d0ee7d1d8db6c1bf84abcf1456", "fields": {"departement": "92", "stop_lat": 48.817005195778684, "code_postal": "92040", "stop_lon": 2.261026679177312, "coord": [48.817005195778684, 2.261026679177312], "stop_id": 5018477, "stop_desc": "57 RUE DE L'EGALITE - 92040", "stop_name": "EPINETTES"}, "geometry": {"type": "Point", "coordinates": [2.261026679177312, 48.817005195778684]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c5d98c45858698c67d3fa1547c7e6350d6f582d1", "fields": {"departement": "92", "stop_lat": 48.81495832481246, "code_postal": "92040", "stop_lon": 2.264758600292619, "coord": [48.81495832481246, 2.264758600292619], "stop_id": 5018480, "stop_desc": "62 BIS RUE EMILE DUPLOYE - 92040", "stop_name": "E. DUPLOYE"}, "geometry": {"type": "Point", "coordinates": [2.264758600292619, 48.81495832481246]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2d890f76cd171c21f945e75fa079cc44c3955466", "fields": {"departement": "92", "stop_lat": 48.81686043583961, "code_postal": "92040", "stop_lon": 2.274813495453526, "coord": [48.81686043583961, 2.274813495453526], "stop_id": 5018482, "stop_desc": "109 AVENUE DE LA PAIX - 92040", "stop_name": "GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.274813495453526, 48.81686043583961]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7dd6a1b8889d6b6d224255b47fb5332dd5671e53", "fields": {"departement": "92", "stop_lat": 48.81942176095425, "code_postal": "92040", "stop_lon": 2.274483765828633, "coord": [48.81942176095425, 2.274483765828633], "stop_id": 5018483, "stop_desc": "25 RUE GABRIEL PERI - 92040", "stop_name": "RUE DU FORT"}, "geometry": {"type": "Point", "coordinates": [2.274483765828633, 48.81942176095425]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8cbb743d4a8afb2d7c44d32266697517bd2aee7a", "fields": {"departement": "92", "stop_lat": 48.831836707153386, "code_postal": "92040", "stop_lon": 2.2804315068912797, "coord": [48.831836707153386, 2.2804315068912797], "stop_id": 5018489, "stop_desc": "FACE 2 BIS RUE JEANNE D'ARC - 92040", "stop_name": "PORTE D'ISSY"}, "geometry": {"type": "Point", "coordinates": [2.2804315068912797, 48.831836707153386]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b3bced814235c325b442fccc6c05896281157e0c", "fields": {"departement": "92", "stop_lat": 48.91887135273581, "code_postal": "92036", "stop_lon": 2.311004470539435, "coord": [48.91887135273581, 2.311004470539435], "stop_id": 5020415, "stop_desc": "185 AVENUE DES GRESILLONS - 92036", "stop_name": "PIERRE CURIE"}, "geometry": {"type": "Point", "coordinates": [2.311004470539435, 48.91887135273581]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "65b51de4441365323842b12a8c65b2f4ff50e3e2", "fields": {"departement": "92", "stop_lat": 48.91873660785316, "code_postal": "92036", "stop_lon": 2.3112772676000644, "coord": [48.91873660785316, 2.3112772676000644], "stop_id": 5020416, "stop_desc": "252-254 AVENUE DES GRESILLONS - 92036", "stop_name": "PIERRE CURIE"}, "geometry": {"type": "Point", "coordinates": [2.3112772676000644, 48.91873660785316]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6b4cddfd08616832856577600649c9a63d528582", "fields": {"departement": "92", "stop_lat": 48.92965889733615, "code_postal": "92004", "stop_lon": 2.272386097627396, "coord": [48.92965889733615, 2.272386097627396], "stop_id": 5020438, "stop_desc": "AVENUE D'ORGEMONT - 92004", "stop_name": "HENRI ROBERT"}, "geometry": {"type": "Point", "coordinates": [2.272386097627396, 48.92965889733615]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dd62d4ffbf14ba608688fc570d07722322a0727f", "fields": {"departement": "92", "stop_lat": 48.93221123047755, "code_postal": "92025", "stop_lon": 2.2724920204361956, "coord": [48.93221123047755, 2.2724920204361956], "stop_id": 5020441, "stop_desc": "FACE 97 RUE JULES MICHELET - 92025", "stop_name": "LOUISE MICHEL"}, "geometry": {"type": "Point", "coordinates": [2.2724920204361956, 48.93221123047755]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b9d8d391f3abb5ba2249a35414528ca713b27c2c", "fields": {"departement": "92", "stop_lat": 48.92983615015086, "code_postal": "92025", "stop_lon": 2.2679667211066477, "coord": [48.92983615015086, 2.2679667211066477], "stop_id": 5020445, "stop_desc": "FACE 77 AVENUE DE STALINGRAD - 92025", "stop_name": "MAIRIE DE QUARTIER - C.A.F."}, "geometry": {"type": "Point", "coordinates": [2.2679667211066477, 48.92983615015086]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ca22ee0b933f785853fadc8fa23e3b2367979970", "fields": {"departement": "92", "stop_lat": 48.93148481712028, "code_postal": "92025", "stop_lon": 2.2599579521368627, "coord": [48.93148481712028, 2.2599579521368627], "stop_id": 5020448, "stop_desc": "RUE AUGUSTE RENOIR - 92025", "stop_name": "GARE DU STADE"}, "geometry": {"type": "Point", "coordinates": [2.2599579521368627, 48.93148481712028]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cca0b2ba5279bbc96df5f178eeee8da674ed1189", "fields": {"departement": "92", "stop_lat": 48.93036223768742, "code_postal": "92025", "stop_lon": 2.26117354367713, "coord": [48.93036223768742, 2.26117354367713], "stop_id": 5020449, "stop_desc": "2-4 BOULEVARD MARCEAU - 92025", "stop_name": "GARE DU STADE"}, "geometry": {"type": "Point", "coordinates": [2.26117354367713, 48.93036223768742]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1f53ead8d6778ca1d0de477520494b49cca6a40e", "fields": {"departement": "92", "stop_lat": 48.92834803912217, "code_postal": "92025", "stop_lon": 2.2594170747775593, "coord": [48.92834803912217, 2.2594170747775593], "stop_id": 5020452, "stop_desc": "FACE 81 BOULEVARD GAMBETTA - 92025", "stop_name": "PRESIDENT KENNEDY"}, "geometry": {"type": "Point", "coordinates": [2.2594170747775593, 48.92834803912217]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "423b9bd621b5e524872d6b6bd8c1d8511ebce110", "fields": {"departement": "92", "stop_lat": 48.92413314103149, "code_postal": "92025", "stop_lon": 2.2593688575570114, "coord": [48.92413314103149, 2.2593688575570114], "stop_id": 5020453, "stop_desc": "FACE 2 AVENUE MENELOTTE - 92025", "stop_name": "GARE DE COLOMBES"}, "geometry": {"type": "Point", "coordinates": [2.2593688575570114, 48.92413314103149]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "14cef7482a7c8d7aa85eeb80f2e84b53ed502425", "fields": {"departement": "92", "stop_lat": 48.91470552564551, "code_postal": "92025", "stop_lon": 2.2462794268231154, "coord": [48.91470552564551, 2.2462794268231154], "stop_id": 5020465, "stop_desc": "RUE DES VOIES DU BOIS - 92025", "stop_name": "RUE DE L'INDUSTRIE"}, "geometry": {"type": "Point", "coordinates": [2.2462794268231154, 48.91470552564551]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "10981584ee3dda3f81524aa1279f92519c8dbcbd", "fields": {"departement": "92", "stop_lat": 48.91501032066538, "code_postal": "92025", "stop_lon": 2.257787224225047, "coord": [48.91501032066538, 2.257787224225047], "stop_id": 5020468, "stop_desc": "21-23 R DES VALLEES - 92025", "stop_name": "LES VALLEES"}, "geometry": {"type": "Point", "coordinates": [2.257787224225047, 48.91501032066538]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0eb68b0d2d3ba5910f85dfb379229285b90fbcd2", "fields": {"departement": "92", "stop_lat": 48.91530141536832, "code_postal": "92025", "stop_lon": 2.238437942679875, "coord": [48.91530141536832, 2.238437942679875], "stop_id": 5020478, "stop_desc": "FACE 67 R DES GROS GRES - 92025", "stop_name": "SQUARE MEDERIC"}, "geometry": {"type": "Point", "coordinates": [2.238437942679875, 48.91530141536832]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "01d21b2111be6b9383031ecaaa010a4d92ba6501", "fields": {"departement": "92", "stop_lat": 48.92259661277056, "code_postal": "92025", "stop_lon": 2.246961077469936, "coord": [48.92259661277056, 2.246961077469936], "stop_id": 5020485, "stop_desc": "FACE 2 RUE DU PRESIDENT SALVADOR ALLENDE - 92025", "stop_name": "CIMETIERE DE COLOMBES"}, "geometry": {"type": "Point", "coordinates": [2.246961077469936, 48.92259661277056]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1032f1e1c70c048ff2cd2a9a0d179f2ca9025b7d", "fields": {"departement": "92", "stop_lat": 48.925215693959935, "code_postal": "92025", "stop_lon": 2.2404511122245947, "coord": [48.925215693959935, 2.2404511122245947], "stop_id": 5020488, "stop_desc": "FACE 46 AVENUE DE L'EUROPE - 92025", "stop_name": "HOPITAL"}, "geometry": {"type": "Point", "coordinates": [2.2404511122245947, 48.925215693959935]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4aa967de55bf54623cd441505930deef9f3e66d1", "fields": {"departement": "92", "stop_lat": 48.927854246414185, "code_postal": "92025", "stop_lon": 2.2361090262322345, "coord": [48.927854246414185, 2.2361090262322345], "stop_id": 5020499, "stop_desc": "VOIE DU PARC - 92025", "stop_name": "TENNIS"}, "geometry": {"type": "Point", "coordinates": [2.2361090262322345, 48.927854246414185]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3e49d0b535f0c48c764d4094fda10e57e5ae447f", "fields": {"departement": "92", "stop_lat": 48.93210735542388, "code_postal": "92004", "stop_lon": 2.2802669292894837, "coord": [48.93210735542388, 2.2802669292894837], "stop_id": 5027603, "stop_desc": "41 RUE HENRI POINCARE - 92004", "stop_name": "FLEMING"}, "geometry": {"type": "Point", "coordinates": [2.2802669292894837, 48.93210735542388]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b512f73c5fc4a541b4d718e74cc652c7bdf22af2", "fields": {"departement": "78", "stop_lat": 48.77871685502776, "code_postal": "78640", "stop_lon": 2.2087512558593017, "coord": [48.77871685502776, 2.2087512558593017], "stop_id": 5067236, "stop_desc": "FACE 63 AVENUE DE L'EUROPE (CHAUSSEE NORD) - 78640", "stop_name": "EUROPE SUD"}, "geometry": {"type": "Point", "coordinates": [2.2087512558593017, 48.77871685502776]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eeed36f377576c848eb2356b06f4a68feb053e2d", "fields": {"departement": "92", "stop_lat": 48.7879586489924, "code_postal": "92048", "stop_lon": 2.228981937708429, "coord": [48.7879586489924, 2.228981937708429], "stop_id": 5067364, "stop_desc": "13-15 AVENUE DU GENERAL DE GAULLE - 92048", "stop_name": "EGLISE DE MEUDON-LA-FORET"}, "geometry": {"type": "Point", "coordinates": [2.228981937708429, 48.7879586489924]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "33f098bc8b035b03d4d6093c5fa39ba74f856b09", "fields": {"departement": "75", "stop_lat": 48.881925978658515, "code_postal": "75117", "stop_lon": 2.314089198789622, "coord": [48.881925978658515, 2.314089198789622], "stop_id": 5747307, "stop_desc": "16 AVENUE DE VILLIERS - 75117", "stop_name": "VILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.314089198789622, 48.881925978658515]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6cbafd753107c8785fc5eab987517ae707e6259c", "fields": {"departement": "92", "stop_lat": 48.899664239058524, "code_postal": "92044", "stop_lon": 2.2801526624819535, "coord": [48.899664239058524, 2.2801526624819535], "stop_id": 5747311, "stop_desc": "QUAI MICHELET - 92044", "stop_name": "PICASSO"}, "geometry": {"type": "Point", "coordinates": [2.2801526624819535, 48.899664239058524]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "85bb604ae0eeb5f671759fb0bdf0a60c3a1120f8", "fields": {"departement": "92", "stop_lat": 48.9238281198912, "code_postal": "92004", "stop_lon": 2.2756528303457335, "coord": [48.9238281198912, 2.2756528303457335], "stop_id": 5747317, "stop_desc": "FACE 307 AVENUE D'ARGENTEUIL - 92004", "stop_name": "GRAMME"}, "geometry": {"type": "Point", "coordinates": [2.2756528303457335, 48.9238281198912]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ace356c1b6731410fb8d0ec8825d01fd02cc43c9", "fields": {"departement": "95", "stop_lat": 48.95397324256516, "code_postal": "95018", "stop_lon": 2.2200788355207943, "coord": [48.95397324256516, 2.2200788355207943], "stop_id": 5747322, "stop_desc": "ALLEE GUY DE MAUPASSANT - 95018", "stop_name": "BEETHOVEN"}, "geometry": {"type": "Point", "coordinates": [2.2200788355207943, 48.95397324256516]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7304ac26ab272fe1e55255f5ee1e88b837dc089d", "fields": {"departement": "95", "stop_lat": 48.95241116551638, "code_postal": "95018", "stop_lon": 2.221733455678224, "coord": [48.95241116551638, 2.221733455678224], "stop_id": 5747323, "stop_desc": "ALLEE GUY DE MAUPASSANT - 95018", "stop_name": "BERIONNE"}, "geometry": {"type": "Point", "coordinates": [2.221733455678224, 48.95241116551638]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8cca570e8d4be418a88f7576f9cdac637e3da6ea", "fields": {"departement": "95", "stop_lat": 48.95230041126562, "code_postal": "95018", "stop_lon": 2.2281879267465583, "coord": [48.95230041126562, 2.2281879267465583], "stop_id": 5747324, "stop_desc": "RUE JEAN LURCAT - 95018", "stop_name": "JEAN LURCAT"}, "geometry": {"type": "Point", "coordinates": [2.2281879267465583, 48.95230041126562]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "93a78789c5ed0499b030496e7277603acf3ffc07", "fields": {"departement": "95", "stop_lat": 48.94827603000987, "code_postal": "95018", "stop_lon": 2.2523739798914075, "coord": [48.94827603000987, 2.2523739798914075], "stop_id": 5747333, "stop_desc": "FACE 4 BIS BOULEVARD LEON FEIX - 95018", "stop_name": "LEON FEIX"}, "geometry": {"type": "Point", "coordinates": [2.2523739798914075, 48.94827603000987]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2c03fa374c0c1c2a7b89411bc726bc0a0eacc71b", "fields": {"departement": "92", "stop_lat": 48.920135215528944, "code_postal": "92009", "stop_lon": 2.2770890872485854, "coord": [48.920135215528944, 2.2770890872485854], "stop_id": 5747342, "stop_desc": "89 AVENUE CHARLES DE GAULLE - 92009", "stop_name": "ABBE GLATZ"}, "geometry": {"type": "Point", "coordinates": [2.2770890872485854, 48.920135215528944]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "93a69f7bb5556bbc5ba56c0d47524187837f0d5c", "fields": {"departement": "92", "stop_lat": 48.906980990690805, "code_postal": "92009", "stop_lon": 2.2658159493248515, "coord": [48.906980990690805, 2.2658159493248515], "stop_id": 5747347, "stop_desc": "6 RUE DE BOIS-COLOMBES - 92009", "stop_name": "CHEVREUL"}, "geometry": {"type": "Point", "coordinates": [2.2658159493248515, 48.906980990690805]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3f346f28890eb2776e3d2382057143f9598f90eb", "fields": {"departement": "92", "stop_lat": 48.786653883884824, "code_postal": "92032", "stop_lon": 2.2999450573371436, "coord": [48.786653883884824, 2.2999450573371436], "stop_id": 5747351, "stop_desc": "84-86 AVENUE GABRIEL PERI - 92032", "stop_name": "RUE DES PARADIS"}, "geometry": {"type": "Point", "coordinates": [2.2999450573371436, 48.786653883884824]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "49419eaa3743f8eae255efe500c8b0fe5371a9ab", "fields": {"departement": "92", "stop_lat": 48.786653883884824, "code_postal": "92032", "stop_lon": 2.2999450573371436, "coord": [48.786653883884824, 2.2999450573371436], "stop_id": 5747352, "stop_desc": "84-86 AVENUE GABRIEL PERI - 92032", "stop_name": "RUE DES PARADIS"}, "geometry": {"type": "Point", "coordinates": [2.2999450573371436, 48.786653883884824]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7ea0c3ae629b105c0da4488948402bd02d7c6f94", "fields": {"departement": "92", "stop_lat": 48.786312380632396, "code_postal": "92032", "stop_lon": 2.3000677176653634, "coord": [48.786312380632396, 2.3000677176653634], "stop_id": 5747354, "stop_desc": "RUE DES PARADIS - 92032", "stop_name": "RUE DES PARADIS."}, "geometry": {"type": "Point", "coordinates": [2.3000677176653634, 48.786312380632396]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2148799d072a269830ba4a80a9c9160c25f5aa41", "fields": {"departement": "75", "stop_lat": 48.89630964834486, "code_postal": "75119", "stop_lon": 2.3783371224206427, "coord": [48.89630964834486, 2.3783371224206427], "stop_id": 5761270, "stop_desc": "105 RUE CURIAL - 75119", "stop_name": "ROSA PARKS - CURIAL"}, "geometry": {"type": "Point", "coordinates": [2.3783371224206427, 48.89630964834486]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dd0bdb934b71da497932fe49b6802c5800c109ac", "fields": {"departement": "75", "stop_lat": 48.8960954097526, "code_postal": "75119", "stop_lon": 2.373879784896177, "coord": [48.8960954097526, 2.373879784896177], "stop_id": 5761272, "stop_desc": "RUE GASTON TESSIER - 75119", "stop_name": "ROSA PARKS"}, "geometry": {"type": "Point", "coordinates": [2.373879784896177, 48.8960954097526]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a2ad5119b8a1204556768658d08286e1c39d91c8", "fields": {"departement": "75", "stop_lat": 48.89996986758614, "code_postal": "75119", "stop_lon": 2.3704473851366274, "coord": [48.89996986758614, 2.3704473851366274], "stop_id": 5761275, "stop_desc": "AVENUE DE LA PORTE D'AUBERVILLIERS - 75119", "stop_name": "SKANDERBEG"}, "geometry": {"type": "Point", "coordinates": [2.3704473851366274, 48.89996986758614]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aff4e15ca643e451639af5da576e6aaed160972a", "fields": {"departement": "75", "stop_lat": 48.901281578271934, "code_postal": "75119", "stop_lon": 2.3718795692323003, "coord": [48.901281578271934, 2.3718795692323003], "stop_id": 5761277, "stop_desc": "FACE 41-43 RUE DE LA HAIE COQ - 75119", "stop_name": "PARC DU MILLENAIRE"}, "geometry": {"type": "Point", "coordinates": [2.3718795692323003, 48.901281578271934]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a3286db78cd88eb567e4fd3d54459d4688a1db9c", "fields": {"departement": "93", "stop_lat": 48.9066308163122, "code_postal": "93066", "stop_lon": 2.3644666543734005, "coord": [48.9066308163122, 2.3644666543734005], "stop_id": 5761283, "stop_desc": "AVENUE GEORGE SAND - 93066", "stop_name": "FRONT POPULAIRE - PROUDHON"}, "geometry": {"type": "Point", "coordinates": [2.3644666543734005, 48.9066308163122]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b3fd6b997ff89d56d42d37ce99bbf1a523b79219", "fields": {"departement": "93", "stop_lat": 48.91528499578044, "code_postal": "93066", "stop_lon": 2.3658892956966664, "coord": [48.91528499578044, 2.3658892956966664], "stop_id": 5761289, "stop_desc": "15 RUE DU LANDY - 93066", "stop_name": "MURGER"}, "geometry": {"type": "Point", "coordinates": [2.3658892956966664, 48.91528499578044]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7e2f80e591dda670e8069c18d1f59c90f0e43b2a", "fields": {"departement": "93", "stop_lat": 48.92031862273414, "code_postal": "93066", "stop_lon": 2.361773748068758, "coord": [48.92031862273414, 2.361773748068758], "stop_id": 5761292, "stop_desc": "AVENUE DU STADE DE FRANCE - 93066", "stop_name": "AVENUE DU STADE DE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.361773748068758, 48.92031862273414]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "14d632f16d1b59cea7614754dbcc0b50cd77304f", "fields": {"departement": "93", "stop_lat": 48.923400592077186, "code_postal": "93066", "stop_lon": 2.364339088469392, "coord": [48.923400592077186, 2.364339088469392], "stop_id": 5761295, "stop_desc": "5 RUE JESSE OWEN - 93066", "stop_name": "JESSE OWENS"}, "geometry": {"type": "Point", "coordinates": [2.364339088469392, 48.923400592077186]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c2b2e72d823960ce010863700f09d1c03eb1add5", "fields": {"departement": "93", "stop_lat": 48.92612502424029, "code_postal": "93066", "stop_lon": 2.357289468620289, "coord": [48.92612502424029, 2.357289468620289], "stop_id": 5761298, "stop_desc": "380 AVENUE DU PRESIDENT WILSON - 93066", "stop_name": "PONT DU CANAL"}, "geometry": {"type": "Point", "coordinates": [2.357289468620289, 48.92612502424029]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b9f420fb63c43c4f48c839dcf763d2eb4559d848", "fields": {"departement": "93", "stop_lat": 48.928740296188124, "code_postal": "93066", "stop_lon": 2.3567994737664737, "coord": [48.928740296188124, 2.3567994737664737], "stop_id": 5761300, "stop_desc": "AVENUE DU PRESIDENT WILSON - 93066", "stop_name": "PORTE DE PARIS - STADE DE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.3567994737664737, 48.928740296188124]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b4025740da8755d02ae4cb05b4abcbd6023e79b3", "fields": {"departement": "93", "stop_lat": 48.905965441367094, "code_postal": "93066", "stop_lon": 2.3658841450092303, "coord": [48.905965441367094, 2.3658841450092303], "stop_id": 5761312, "stop_desc": "122 RUE DES FILLETTES - 93066", "stop_name": "GARDINOUX"}, "geometry": {"type": "Point", "coordinates": [2.3658841450092303, 48.905965441367094]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1edde38f954ff7c86d17daf6bdcc23cc86bdaa71", "fields": {"departement": "92", "stop_lat": 48.82843970923716, "code_postal": "92077", "stop_lon": 2.1948792756019553, "coord": [48.82843970923716, 2.1948792756019553], "stop_id": 5761318, "stop_desc": "67 RUE COROT - 92077", "stop_name": "JOUET LUCOT"}, "geometry": {"type": "Point", "coordinates": [2.1948792756019553, 48.82843970923716]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "83b7acc612cebe6f506e1821833ac87c36a7f392", "fields": {"departement": "92", "stop_lat": 48.82737084788263, "code_postal": "92077", "stop_lon": 2.1954403185271425, "coord": [48.82737084788263, 2.1954403185271425], "stop_id": 5761319, "stop_desc": "46 AVENUE DE BALZAC - 92077", "stop_name": "JOUET LUCOT"}, "geometry": {"type": "Point", "coordinates": [2.1954403185271425, 48.82737084788263]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "400a74dca77d1512bb45845b7ee4db20a09cc6fe", "fields": {"departement": "75", "stop_lat": 48.867039425612255, "code_postal": "75116", "stop_lon": 2.248856037918719, "coord": [48.867039425612255, 2.248856037918719], "stop_id": 5761333, "stop_desc": "ALLEE DE LONGCHAMP - 75116", "stop_name": "BAGATELLE - PRE CATELAN"}, "geometry": {"type": "Point", "coordinates": [2.248856037918719, 48.867039425612255]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f320e2311f9ab81f00e739dfdded1b9ba035cf02", "fields": {"departement": "75", "stop_lat": 48.86671571901408, "code_postal": "75116", "stop_lon": 2.2486386254976263, "coord": [48.86671571901408, 2.2486386254976263], "stop_id": 5761334, "stop_desc": "ALLEE DE LONGCHAMP - 75116", "stop_name": "BAGATELLE - PRE CATELAN"}, "geometry": {"type": "Point", "coordinates": [2.2486386254976263, 48.86671571901408]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c27933582aaf861dae34e2cfb27e436ea34eff87", "fields": {"departement": "92", "stop_lat": 48.86767710841224, "code_postal": "92073", "stop_lon": 2.226812902957634, "coord": [48.86767710841224, 2.226812902957634], "stop_id": 5761339, "stop_desc": "FACE 13 BOULEVARD HENRI SELLIER - 92073", "stop_name": "RUE DES BOURETS - PONT DE SURESNES"}, "geometry": {"type": "Point", "coordinates": [2.226812902957634, 48.86767710841224]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "900f5640bafb6b6261527c606c35e982dd60862e", "fields": {"departement": "92", "stop_lat": 48.86371353049643, "code_postal": "92073", "stop_lon": 2.2087449708660327, "coord": [48.86371353049643, 2.2087449708660327], "stop_id": 5761352, "stop_desc": "23 AVENUE JEAN JAURES - 92073", "stop_name": "PLACE JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.2087449708660327, 48.86371353049643]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1cbee45e6a367e8ea2844378ed4f014116c067e7", "fields": {"departement": "92", "stop_lat": 48.86797700986063, "code_postal": "92063", "stop_lon": 2.2037211008846818, "coord": [48.86797700986063, 2.2037211008846818], "stop_id": 5761354, "stop_desc": "FACE 54 RUE GALLIENI - 92063", "stop_name": "LES HOUTRAITS"}, "geometry": {"type": "Point", "coordinates": [2.2037211008846818, 48.86797700986063]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a9f0a3944f244a1185f3c8e7eca908c50bd632b9", "fields": {"departement": "92", "stop_lat": 48.87051991876674, "code_postal": "92063", "stop_lon": 2.2032649673400737, "coord": [48.87051991876674, 2.2032649673400737], "stop_id": 5761357, "stop_desc": "FACE 45-47 RUE GALLIENI - 92063", "stop_name": "8 MAI 1945"}, "geometry": {"type": "Point", "coordinates": [2.2032649673400737, 48.87051991876674]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ec9ff58d0bbaa258cfcc9aece6d7f5af42297626", "fields": {"departement": "92", "stop_lat": 48.87351539112045, "code_postal": "92063", "stop_lon": 2.1903002640695926, "coord": [48.87351539112045, 2.1903002640695926], "stop_id": 5761363, "stop_desc": "2 RUE DES BONS RAISINS - 92063", "stop_name": "EDMOND ROSTAND"}, "geometry": {"type": "Point", "coordinates": [2.1903002640695926, 48.87351539112045]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4464d76ee4e72beb160d0f819521b0b4d79a4c6b", "fields": {"departement": "92", "stop_lat": 48.88033043782723, "code_postal": "92063", "stop_lon": 2.1852664446552246, "coord": [48.88033043782723, 2.1852664446552246], "stop_id": 5761366, "stop_desc": "FACE 16 BOULEVARD DE L'HOPITAL STELL - 92063", "stop_name": "LE GUE"}, "geometry": {"type": "Point", "coordinates": [2.1852664446552246, 48.88033043782723]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c5bb7582ebba053eaae32d37c9bbc3818f083acb", "fields": {"departement": "92", "stop_lat": 48.879895361252146, "code_postal": "92063", "stop_lon": 2.1756339630114354, "coord": [48.879895361252146, 2.1756339630114354], "stop_id": 5761376, "stop_desc": "15 AVENUE DE LA REPUBLIQUE - 92063", "stop_name": "GENEVIEVE COUTURIER"}, "geometry": {"type": "Point", "coordinates": [2.1756339630114354, 48.879895361252146]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7656d478685ff8189547aaa42c1c6151ec8488ef", "fields": {"departement": "92", "stop_lat": 48.86489624581866, "code_postal": "92073", "stop_lon": 2.205431821442203, "coord": [48.86489624581866, 2.205431821442203], "stop_id": 5761377, "stop_desc": "AVENUE JEAN JAURES - 92073", "stop_name": "PLACE DE LA PAIX"}, "geometry": {"type": "Point", "coordinates": [2.205431821442203, 48.86489624581866]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "723ce84439af5746c1cd1c9c125f93fb8decf2aa", "fields": {"departement": "93", "stop_lat": 48.91328473597571, "code_postal": "93001", "stop_lon": 2.382495625805226, "coord": [48.91328473597571, 2.382495625805226], "stop_id": 5761410, "stop_desc": "6 AVENUE DE LA REPUBLIQUE - 93001", "stop_name": "MAIRIE D'AUBERVILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.382495625805226, 48.91328473597571]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c53314a096fdbab9502e5b780bb47d0cdc9ba1e3", "fields": {"departement": "75", "stop_lat": 48.89140734417994, "code_postal": "75118", "stop_lon": 2.361146753676379, "coord": [48.89140734417994, 2.361146753676379], "stop_id": 5761430, "stop_desc": "FACE 2 RUE DE L'EVANGILE - 75118", "stop_name": "PLACE DE TORCY"}, "geometry": {"type": "Point", "coordinates": [2.361146753676379, 48.89140734417994]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0e4f8fce86e2417ff642aedac0d755ede830f6c2", "fields": {"departement": "75", "stop_lat": 48.88982587827333, "code_postal": "75118", "stop_lon": 2.3597149972338234, "coord": [48.88982587827333, 2.3597149972338234], "stop_id": 5761432, "stop_desc": "69 RUE MARX DORMOY - 75118", "stop_name": "ORDENER - MARX DORMOY"}, "geometry": {"type": "Point", "coordinates": [2.3597149972338234, 48.88982587827333]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "54a14d61bbbe858ca013635f64176d98f028585f", "fields": {"departement": "75", "stop_lat": 48.8869140179454, "code_postal": "75118", "stop_lon": 2.3597546195871972, "coord": [48.8869140179454, 2.3597546195871972], "stop_id": 5761435, "stop_desc": "38-40 RUE MARX DORMOY - 75118", "stop_name": "DEPARTEMENT - MARX DORMOY"}, "geometry": {"type": "Point", "coordinates": [2.3597546195871972, 48.8869140179454]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d621a77717d7d052846fb00495d547ce71809dca", "fields": {"departement": "75", "stop_lat": 48.88082998036255, "code_postal": "75110", "stop_lon": 2.3579941644875797, "coord": [48.88082998036255, 2.3579941644875797], "stop_id": 5761440, "stop_desc": "184 RUE DU FAUBOURG SAINT-DENIS - 75110", "stop_name": "GARE DU NORD"}, "geometry": {"type": "Point", "coordinates": [2.3579941644875797, 48.88082998036255]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b17ef4f68886967d6a645fa129251023664f9b31", "fields": {"departement": "75", "stop_lat": 48.894909625756426, "code_postal": "75119", "stop_lon": 2.3721479152579015, "coord": [48.894909625756426, 2.3721479152579015], "stop_id": 5761963, "stop_desc": "251 RUE DE CRIMEE - 75119", "stop_name": "CRIMEE - ROSA PARKS"}, "geometry": {"type": "Point", "coordinates": [2.3721479152579015, 48.894909625756426]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1e2b425cdba24de05dcbf116735a5fd4b08f2399", "fields": {"departement": "75", "stop_lat": 48.89376772105596, "code_postal": "75119", "stop_lon": 2.3739326593460133, "coord": [48.89376772105596, 2.3739326593460133], "stop_id": 5761966, "stop_desc": "92 RUE DE L'OURCQ - 75119", "stop_name": "CRIMEE - CURIAL"}, "geometry": {"type": "Point", "coordinates": [2.3739326593460133, 48.89376772105596]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e71f9201276a302d56ea43493290e5870354734b", "fields": {"departement": "75", "stop_lat": 48.89177211247161, "code_postal": "75119", "stop_lon": 2.3753895869477755, "coord": [48.89177211247161, 2.3753895869477755], "stop_id": 5761967, "stop_desc": "207 RUE DE CRIMEE - 75119", "stop_name": "CRIMEE - ARCHEREAU"}, "geometry": {"type": "Point", "coordinates": [2.3753895869477755, 48.89177211247161]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ffa4c5330dfbec93da02bd7cc5814228ebc68179", "fields": {"departement": "75", "stop_lat": 48.888016042537274, "code_postal": "75119", "stop_lon": 2.3735469950935357, "coord": [48.888016042537274, 2.3735469950935357], "stop_id": 5761970, "stop_desc": "FACE 60 AVENUE DE FLANDRE - 75119", "stop_name": "RIQUET"}, "geometry": {"type": "Point", "coordinates": [2.3735469950935357, 48.888016042537274]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "30a0e6f01f839abae2eb9a69c9a01ad36c56388d", "fields": {"departement": "75", "stop_lat": 48.882275154336874, "code_postal": "75110", "stop_lon": 2.3664570148398627, "coord": [48.882275154336874, 2.3664570148398627], "stop_id": 5761976, "stop_desc": "239 RUE DU FAUBOURG SAINT-MARTIN - 75110", "stop_name": "CHAUDRON - SAINT MARTIN"}, "geometry": {"type": "Point", "coordinates": [2.3664570148398627, 48.882275154336874]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "224eefc2a608f6c52f0cf40823cf04e0f78d5592", "fields": {"departement": "75", "stop_lat": 48.881334194288584, "code_postal": "75110", "stop_lon": 2.351712503852361, "coord": [48.881334194288584, 2.351712503852361], "stop_id": 5761984, "stop_desc": "140-142 BOULEVARD DE MAGENTA - 75110", "stop_name": "MAGENTA - MAUBEUGE - GARE DU NORD"}, "geometry": {"type": "Point", "coordinates": [2.351712503852361, 48.881334194288584]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "49c5c8c28a8540bd00624fe6e19a5df777994b2e", "fields": {"departement": "75", "stop_lat": 48.88258429865896, "code_postal": "75118", "stop_lon": 2.337431832166389, "coord": [48.88258429865896, 2.337431832166389], "stop_id": 5761990, "stop_desc": "22 BOULEVARD DE CLICHY - 75118", "stop_name": "PIGALLE"}, "geometry": {"type": "Point", "coordinates": [2.337431832166389, 48.88258429865896]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6f09c5fff2b32094af01c0ea906a800d5b4a47e3", "fields": {"departement": "75", "stop_lat": 48.89295368222563, "code_postal": "75117", "stop_lon": 2.316251384985718, "coord": [48.89295368222563, 2.316251384985718], "stop_id": 5762002, "stop_desc": "182 AVENUE DE CLICHY - 75117", "stop_name": "BOULAY"}, "geometry": {"type": "Point", "coordinates": [2.316251384985718, 48.89295368222563]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e622ceb7ea5226b099cd88d0ab89255d96809c82", "fields": {"departement": "75", "stop_lat": 48.89288171215441, "code_postal": "75117", "stop_lon": 2.315842525078344, "coord": [48.89288171215441, 2.315842525078344], "stop_id": 5762003, "stop_desc": "177 AVENUE DE CLICHY - 75117", "stop_name": "BOULAY"}, "geometry": {"type": "Point", "coordinates": [2.315842525078344, 48.89288171215441]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "03d23711ef2ac7280380cb0ebb1a2bda1919adf3", "fields": {"departement": "92", "stop_lat": 48.89846158223141, "code_postal": "92024", "stop_lon": 2.310196942773822, "coord": [48.89846158223141, 2.310196942773822], "stop_id": 5762006, "stop_desc": "FACE 17 RUE DU 8 MAI 1945 - 92024", "stop_name": "VICTOR HUGO - 8 MAI 1945"}, "geometry": {"type": "Point", "coordinates": [2.310196942773822, 48.89846158223141]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0a9161326c69c84e993e53181b350073fd78a550", "fields": {"departement": "92", "stop_lat": 48.897014353385735, "code_postal": "92024", "stop_lon": 2.3089027796946073, "coord": [48.897014353385735, 2.3089027796946073], "stop_id": 5762019, "stop_desc": "3 BOULEVARD JEAN JAURES - 92024", "stop_name": "VICTOR HUGO - JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.3089027796946073, 48.897014353385735]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3c5467fe7f0d338763f8fc2d3da3525796234b65", "fields": {"departement": "75", "stop_lat": 48.883788451969494, "code_postal": "75109", "stop_lon": 2.331544866765384, "coord": [48.883788451969494, 2.331544866765384], "stop_id": 5762021, "stop_desc": "57 BOULEVARD DE CLICHY - 75109", "stop_name": "BLANCHE"}, "geometry": {"type": "Point", "coordinates": [2.331544866765384, 48.883788451969494]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "974fc1e3c76303c66ce435511eec4cb92ab82a06", "fields": {"departement": "75", "stop_lat": 48.88346447590784, "code_postal": "75109", "stop_lon": 2.3489331575610874, "coord": [48.88346447590784, 2.3489331575610874], "stop_id": 5762026, "stop_desc": "5 BOULEVARD DE ROCHECHOUART - 75109", "stop_name": "BARBES - ROCHECHOUART"}, "geometry": {"type": "Point", "coordinates": [2.3489331575610874, 48.88346447590784]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "db06396d3f48a9cc33e35f823f5ad385aa1db059", "fields": {"departement": "75", "stop_lat": 48.86546515452374, "code_postal": "75120", "stop_lon": 2.399577301079139, "coord": [48.86546515452374, 2.399577301079139], "stop_id": 5770763, "stop_desc": "0 R DU JAPON - 75120", "stop_name": "GAMBETTA"}, "geometry": {"type": "Point", "coordinates": [2.399577301079139, 48.86546515452374]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bb833f61f93db054b88700eda15d81106933280b", "fields": {"departement": "75", "stop_lat": 48.87361751889414, "code_postal": "75120", "stop_lon": 2.3979385272904032, "coord": [48.87361751889414, 2.3979385272904032], "stop_id": 5770770, "stop_desc": "162 RUE PELLEPORT - 75120", "stop_name": "BORREGO"}, "geometry": {"type": "Point", "coordinates": [2.3979385272904032, 48.87361751889414]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "11f6721e593660c4258ce352e96de9efac382778", "fields": {"departement": "75", "stop_lat": 48.87981383766514, "code_postal": "75119", "stop_lon": 2.389320394268579, "coord": [48.87981383766514, 2.389320394268579], "stop_id": 5770777, "stop_desc": "38-40 RUE DE CRIMEE - 75119", "stop_name": "BOTZARIS"}, "geometry": {"type": "Point", "coordinates": [2.389320394268579, 48.87981383766514]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6458cd169b87ea9c9a5fbfacec7bedb6f88c43b2", "fields": {"departement": "75", "stop_lat": 48.87931043156718, "code_postal": "75119", "stop_lon": 2.3895924100689605, "coord": [48.87931043156718, 2.3895924100689605], "stop_id": 5770778, "stop_desc": "37-39 RUE DE CRIMEE - 75119", "stop_name": "BOTZARIS"}, "geometry": {"type": "Point", "coordinates": [2.3895924100689605, 48.87931043156718]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "625dfe609a7d68ea6c03653cf8af9c4ac0acf5f5", "fields": {"departement": "75", "stop_lat": 48.88251133554586, "code_postal": "75119", "stop_lon": 2.3862025409935965, "coord": [48.88251133554586, 2.3862025409935965], "stop_id": 5770779, "stop_desc": "88 RUE DE CRIMEE - 75119", "stop_name": "MANIN"}, "geometry": {"type": "Point", "coordinates": [2.3862025409935965, 48.88251133554586]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ffc40eee5652480f155e1161050057d014a0788c", "fields": {"departement": "75", "stop_lat": 48.88440108413544, "code_postal": "75119", "stop_lon": 2.379881208324982, "coord": [48.88440108413544, 2.379881208324982], "stop_id": 5770784, "stop_desc": "37 AVENUE DE LAUMIERE - 75119", "stop_name": "LAUMIERE"}, "geometry": {"type": "Point", "coordinates": [2.379881208324982, 48.88440108413544]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9ae03975be67ba0f440e4288ac59323d3689630c", "fields": {"departement": "75", "stop_lat": 48.88590126784092, "code_postal": "75119", "stop_lon": 2.381749450930778, "coord": [48.88590126784092, 2.381749450930778], "stop_id": 5770786, "stop_desc": "119 AVENUE JEAN JAURES - 75119", "stop_name": "JEAN JAURES - LORRAINE"}, "geometry": {"type": "Point", "coordinates": [2.381749450930778, 48.88590126784092]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2c658ea08b654914a0b255c9c61a5812254a1cf8", "fields": {"departement": "75", "stop_lat": 48.8875448732045, "code_postal": "75119", "stop_lon": 2.384490137002008, "coord": [48.8875448732045, 2.384490137002008], "stop_id": 5770788, "stop_desc": "11-13 RUE DE L'OURCQ - 75119", "stop_name": "OURCQ - JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.384490137002008, 48.8875448732045]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "65961924e0a922775a82e9f5f394f1e8640057fa", "fields": {"departement": "75", "stop_lat": 48.892615791362296, "code_postal": "75119", "stop_lon": 2.378729451710416, "coord": [48.892615791362296, 2.378729451710416], "stop_id": 5770791, "stop_desc": "64 RUE DE L'OURCQ - 75119", "stop_name": "FLANDRE"}, "geometry": {"type": "Point", "coordinates": [2.378729451710416, 48.892615791362296]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "63cc6aa92a80408a857681052c8c5a86b4b23a29", "fields": {"departement": "75", "stop_lat": 48.89376772105596, "code_postal": "75119", "stop_lon": 2.3739326593460133, "coord": [48.89376772105596, 2.3739326593460133], "stop_id": 5770794, "stop_desc": "92 RUE DE L'OURCQ - 75119", "stop_name": "CRIMEE - CURIAL"}, "geometry": {"type": "Point", "coordinates": [2.3739326593460133, 48.89376772105596]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "acf35d682e88396399a071ae51603b2a576d990f", "fields": {"departement": "75", "stop_lat": 48.89553921270323, "code_postal": "75118", "stop_lon": 2.3704445472353575, "coord": [48.89553921270323, 2.3704445472353575], "stop_id": 5770798, "stop_desc": "73 RUE DE L'EVANGILE - 75118", "stop_name": "EVANGILE - AUBERVILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.3704445472353575, 48.89553921270323]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7ada9425dc06f688690da24900719c8684aab04f", "fields": {"departement": "75", "stop_lat": 48.894309094505694, "code_postal": "75118", "stop_lon": 2.3661366756905475, "coord": [48.894309094505694, 2.3661366756905475], "stop_id": 5770801, "stop_desc": "FACE 41 RUE DE L'EVANGILE - 75118", "stop_name": "TRISTAN TZARA"}, "geometry": {"type": "Point", "coordinates": [2.3661366756905475, 48.894309094505694]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "57bcb5cb5a0a35bcbfbc629389184ac88e43da76", "fields": {"departement": "75", "stop_lat": 48.89291675271591, "code_postal": "75118", "stop_lon": 2.3632327852679813, "coord": [48.89291675271591, 2.3632327852679813], "stop_id": 5770803, "stop_desc": "FACE 25 RUE DE L'EVANGILE - 75118", "stop_name": "PLACE HEBERT"}, "geometry": {"type": "Point", "coordinates": [2.3632327852679813, 48.89291675271591]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "509fbb8876c8f55a5ee4b9d9b114b4bb654690fb", "fields": {"departement": "75", "stop_lat": 48.891344398291665, "code_postal": "75118", "stop_lon": 2.3613239046694137, "coord": [48.891344398291665, 2.3613239046694137], "stop_id": 5770805, "stop_desc": "8 RUE DE L'EVANGILE - 75118", "stop_name": "PLACE DE TORCY"}, "geometry": {"type": "Point", "coordinates": [2.3613239046694137, 48.891344398291665]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "88e02e69c725f9827ea14ccb1838e80b941016d5", "fields": {"departement": "75", "stop_lat": 48.89052682710956, "code_postal": "75118", "stop_lon": 2.359987881341442, "coord": [48.89052682710956, 2.359987881341442], "stop_id": 5770807, "stop_desc": "8 RUE DE LA CHAPELLE - 75118", "stop_name": "ORDENER - MARX DORMOY"}, "geometry": {"type": "Point", "coordinates": [2.359987881341442, 48.89052682710956]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9c05ffc0cd3e63c50bcf919bee3be779e6bd683b", "fields": {"departement": "75", "stop_lat": 48.89154384321162, "code_postal": "75118", "stop_lon": 2.350202501663579, "coord": [48.89154384321162, 2.350202501663579], "stop_id": 5770810, "stop_desc": "38-40 RUE ORDENER - 75118", "stop_name": "MARCADET - POISSONNIERS"}, "geometry": {"type": "Point", "coordinates": [2.350202501663579, 48.89154384321162]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3ce2fe3fd87cc57d0af221c5d3a0fdfb548eb0dc", "fields": {"departement": "75", "stop_lat": 48.89138208141258, "code_postal": "75118", "stop_lon": 2.3501343150425686, "coord": [48.89138208141258, 2.3501343150425686], "stop_id": 5770811, "stop_desc": "69 RUE ORDENER - 75118", "stop_name": "MARCADET - POISSONNIERS"}, "geometry": {"type": "Point", "coordinates": [2.3501343150425686, 48.89138208141258]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6f61388a7cf2eae6cdd60babdc0f28010a4f0e27", "fields": {"departement": "75", "stop_lat": 48.89323410756576, "code_postal": "75118", "stop_lon": 2.3397898117574636, "coord": [48.89323410756576, 2.3397898117574636], "stop_id": 5770814, "stop_desc": "116 RUE ORDENER - 75118", "stop_name": "DUHESME - LE RUISSEAU"}, "geometry": {"type": "Point", "coordinates": [2.3397898117574636, 48.89323410756576]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4128224e8033cb1f95710619fbd28ed325f3f54b", "fields": {"departement": "75", "stop_lat": 48.89835680702863, "code_postal": "75118", "stop_lon": 2.337104740639638, "coord": [48.89835680702863, 2.337104740639638], "stop_id": 5770822, "stop_desc": "6-8 AVENUE DE LA PORTE DE MONTMARTRE - 75118", "stop_name": "PORTE DE MONTMARTRE - BOULEVARD NEY"}, "geometry": {"type": "Point", "coordinates": [2.337104740639638, 48.89835680702863]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9b849d4c6266a6fdd3e185350c73a31ecc08fc57", "fields": {"departement": "75", "stop_lat": 48.89933639671896, "code_postal": "75118", "stop_lon": 2.335986968520717, "coord": [48.89933639671896, 2.335986968520717], "stop_id": 5770825, "stop_desc": "15 AV DE LA PORTE DE MONTMARTRE - 75118", "stop_name": "RENE BINET"}, "geometry": {"type": "Point", "coordinates": [2.335986968520717, 48.89933639671896]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c2a5928bf55215e507f9c4f46967cc8ea27c1f38", "fields": {"departement": "92", "stop_lat": 48.89203464280857, "code_postal": "92062", "stop_lon": 2.239422734486871, "coord": [48.89203464280857, 2.239422734486871], "stop_id": 5775569, "stop_desc": "AVENUE PERRONET NORD - 92062", "stop_name": "LA DEFENSE-METRO-RER-TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.239422734486871, 48.89203464280857]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ff4804e29172566e0161d498f2cfc9cfe2bb9f56", "fields": {"departement": "92", "stop_lat": 48.89866091403176, "code_postal": "92026", "stop_lon": 2.2428180162516327, "coord": [48.89866091403176, 2.2428180162516327], "stop_id": 5775574, "stop_desc": "36 RUE GAULTIER - 92026", "stop_name": "NORMANDIE"}, "geometry": {"type": "Point", "coordinates": [2.2428180162516327, 48.89866091403176]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "355bae575c043bbec86629831a039b3b4f91ba2b", "fields": {"departement": "92", "stop_lat": 48.90005695128765, "code_postal": "92026", "stop_lon": 2.246727721736959, "coord": [48.90005695128765, 2.246727721736959], "stop_id": 5775577, "stop_desc": "15-15 BIS AVENUE DE LA REPUBLIQUE - 92026", "stop_name": "MARCEAU"}, "geometry": {"type": "Point", "coordinates": [2.246727721736959, 48.90005695128765]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "436b5577096d99f786e5c2ddfea264f0a1e87c6e", "fields": {"departement": "92", "stop_lat": 48.90308350750066, "code_postal": "92026", "stop_lon": 2.2563059598436737, "coord": [48.90308350750066, 2.2563059598436737], "stop_id": 5775580, "stop_desc": "128 AVENUE DE LA REPUBLIQUE - 92026", "stop_name": "REPUBLIQUE - COLOMBES"}, "geometry": {"type": "Point", "coordinates": [2.2563059598436737, 48.90308350750066]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "377de3e6f41fe58e56f306e728e9d47976ad9a19", "fields": {"departement": "92", "stop_lat": 48.906780849665886, "code_postal": "92009", "stop_lon": 2.261876202325805, "coord": [48.906780849665886, 2.261876202325805], "stop_id": 5775583, "stop_desc": "29 AVENUE DE L'EUROPE - 92009", "stop_name": "MOULIN DES BRUYERES"}, "geometry": {"type": "Point", "coordinates": [2.261876202325805, 48.906780849665886]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5a811835bc5b526b9c2107408236ee1b9243a957", "fields": {"departement": "92", "stop_lat": 48.908456845173376, "code_postal": "92004", "stop_lon": 2.269195081354599, "coord": [48.908456845173376, 2.269195081354599], "stop_id": 5775586, "stop_desc": "46 AVENUE FAIDHERBE - 92004", "stop_name": "BALZAC"}, "geometry": {"type": "Point", "coordinates": [2.269195081354599, 48.908456845173376]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b08ef96dc98599d05a838507adf09b4e72664e40", "fields": {"departement": "92", "stop_lat": 48.92129776554459, "code_postal": "92004", "stop_lon": 2.283879020641942, "coord": [48.92129776554459, 2.283879020641942], "stop_id": 5775594, "stop_desc": "FACE 45 RUE ROBERT DUPONT - 92004", "stop_name": "MENIL"}, "geometry": {"type": "Point", "coordinates": [2.283879020641942, 48.92129776554459]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "50a5d09ffda75a76c3f2c0e1b9003a7cad46aca2", "fields": {"departement": "92", "stop_lat": 48.92289870669024, "code_postal": "92036", "stop_lon": 2.2867821662369545, "coord": [48.92289870669024, 2.2867821662369545], "stop_id": 5775596, "stop_desc": "FACE 102 RUE LOUIS CALMEL - 92036", "stop_name": "LES AGNETTES"}, "geometry": {"type": "Point", "coordinates": [2.2867821662369545, 48.92289870669024]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "614a0c736ff2c3ebd861db660ab210de37595b6a", "fields": {"departement": "92", "stop_lat": 48.92675724650822, "code_postal": "92036", "stop_lon": 2.2948660675426815, "coord": [48.92675724650822, 2.2948660675426815], "stop_id": 5775600, "stop_desc": "2 BOULEVARD CAMELINAT - 92036", "stop_name": "JAURES - CAMELINAT - MAIRIE"}, "geometry": {"type": "Point", "coordinates": [2.2948660675426815, 48.92675724650822]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "31669914ec59107fa3cc997b0f2195ab142b6b96", "fields": {"departement": "92", "stop_lat": 48.9304260277182, "code_postal": "92036", "stop_lon": 2.301341835637842, "coord": [48.9304260277182, 2.301341835637842], "stop_id": 5775603, "stop_desc": "AVENUE LAURENT CELY - 92036", "stop_name": "MOULIN DE CAGE"}, "geometry": {"type": "Point", "coordinates": [2.301341835637842, 48.9304260277182]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dd3d0125faced502e8c6b9305629cff0711711a4", "fields": {"departement": "92", "stop_lat": 48.93056977674147, "code_postal": "92036", "stop_lon": 2.3012053403996093, "coord": [48.93056977674147, 2.3012053403996093], "stop_id": 5775604, "stop_desc": "73 TER BOULEVARD CAMELINAT - 92036", "stop_name": "MOULIN DE CAGE"}, "geometry": {"type": "Point", "coordinates": [2.3012053403996093, 48.93056977674147]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1a579cf7a986b7f88da2ebb527b7d86ad9ad1774", "fields": {"departement": "92", "stop_lat": 48.93147271868684, "code_postal": "92036", "stop_lon": 2.3203822603505686, "coord": [48.93147271868684, 2.3203822603505686], "stop_id": 5775611, "stop_desc": "105 AVENUE DU VIEUX CHEMIN DE SAINT-DENIS - 92036", "stop_name": "VIEUX CHEMIN DE SAINT-DENIS - CENTRE COMMERCIAL"}, "geometry": {"type": "Point", "coordinates": [2.3203822603505686, 48.93147271868684]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fdd989ac172f7ca10bde9fa42f9c4932e5940b8a", "fields": {"departement": "92", "stop_lat": 48.93355648872554, "code_postal": "92036", "stop_lon": 2.313438647773032, "coord": [48.93355648872554, 2.313438647773032], "stop_id": 5775612, "stop_desc": "RUE THOMAS EDISON - 92036", "stop_name": "PARC DES CHANTERAINES"}, "geometry": {"type": "Point", "coordinates": [2.313438647773032, 48.93355648872554]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ce017ed0cc95a9f41168deefe029b81f6a7a8012", "fields": {"departement": "92", "stop_lat": 48.90738494010711, "code_postal": "92009", "stop_lon": 2.265038285359078, "coord": [48.90738494010711, 2.265038285359078], "stop_id": 5775618, "stop_desc": "FACE 5 AVENUE DE L'EUROPE - 92009", "stop_name": "CHEVREUL"}, "geometry": {"type": "Point", "coordinates": [2.265038285359078, 48.90738494010711]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ea66c56133a249d7bc76194fb2b41369278b870d", "fields": {"departement": "93", "stop_lat": 48.92537045897252, "code_postal": "93029", "stop_lon": 2.431576392386082, "coord": [48.92537045897252, 2.431576392386082], "stop_id": 5794607, "stop_desc": "183-185 RUE DE LA REPUBLIQUE - 93029", "stop_name": "LAMARTINE - FRANCOIS RUDE"}, "geometry": {"type": "Point", "coordinates": [2.431576392386082, 48.92537045897252]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "59275c626782189ea7a8df1589190af4e3d40ee6", "fields": {"departement": "93", "stop_lat": 48.925232158060616, "code_postal": "93029", "stop_lon": 2.4358994368678024, "coord": [48.925232158060616, 2.4358994368678024], "stop_id": 5794608, "stop_desc": "125-127 RUE DE LA REPUBLIQUE - 93029", "stop_name": "CITE PIERRE SEMARD"}, "geometry": {"type": "Point", "coordinates": [2.4358994368678024, 48.925232158060616]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ee2a509cc06437d065f66b2fd8ca5809d7987d00", "fields": {"departement": "93", "stop_lat": 48.91044329400517, "code_postal": "93008", "stop_lon": 2.442074869299911, "coord": [48.91044329400517, 2.442074869299911], "stop_id": 5794617, "stop_desc": "80 AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "LIEUTENANT LEBRUN"}, "geometry": {"type": "Point", "coordinates": [2.442074869299911, 48.91044329400517]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9522a471bd4667bb6d6b9c9e660a06eba4862e20", "fields": {"departement": "93", "stop_lat": 48.90657485833315, "code_postal": "93008", "stop_lon": 2.4559320596369205, "coord": [48.90657485833315, 2.4559320596369205], "stop_id": 5794620, "stop_desc": "302 AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "LAMARTINE"}, "geometry": {"type": "Point", "coordinates": [2.4559320596369205, 48.90657485833315]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c34169130a08c0cd37b5eaaf7b6bb2f4f29e4c85", "fields": {"departement": "93", "stop_lat": 48.90555453249922, "code_postal": "93008", "stop_lon": 2.469044655471792, "coord": [48.90555453249922, 2.469044655471792], "stop_id": 5794623, "stop_desc": "FACE 439 AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "PONT DE BONDY"}, "geometry": {"type": "Point", "coordinates": [2.469044655471792, 48.90555453249922]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "55c3bd7a3dd3179fa504385988d1c1bc8fa299ff", "fields": {"departement": "93", "stop_lat": 48.9072112412486, "code_postal": "93057", "stop_lon": 2.496015790879614, "coord": [48.9072112412486, 2.496015790879614], "stop_id": 5794628, "stop_desc": "20 ALLEE DANIELLE CASANOVA - 93057", "stop_name": "LA FOURCHE"}, "geometry": {"type": "Point", "coordinates": [2.496015790879614, 48.9072112412486]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "80338d58f9b45cbe99eb50544a475fda7f89df6f", "fields": {"departement": "93", "stop_lat": 48.905938588954406, "code_postal": "93057", "stop_lon": 2.5000745546903667, "coord": [48.905938588954406, 2.5000745546903667], "stop_id": 5794629, "stop_desc": "64 AVENUE JEAN JAURES - 93057", "stop_name": "JEAN-BAPTISTE CLEMENT - JAURES"}, "geometry": {"type": "Point", "coordinates": [2.5000745546903667, 48.905938588954406]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c1861aca4e277864c7d3d371df6498a096acfd00", "fields": {"departement": "93", "stop_lat": 48.90445035565068, "code_postal": "93057", "stop_lon": 2.5039552000123417, "coord": [48.90445035565068, 2.5039552000123417], "stop_id": 5794630, "stop_desc": "FACE 119 AVENUE JEAN JAURES - 93057", "stop_name": "PIERRE BROSSOLETTE - LA BASOCHE"}, "geometry": {"type": "Point", "coordinates": [2.5039552000123417, 48.90445035565068]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ebcdfe30d1ae84747dc336db8f66c15378075e57", "fields": {"departement": "93", "stop_lat": 48.902023861813646, "code_postal": "93057", "stop_lon": 2.51024541094009, "coord": [48.902023861813646, 2.51024541094009], "stop_id": 5794632, "stop_desc": "22 AVENUE JEAN JAURES - 93057", "stop_name": "GARE DES PAVILLONS-SOUS-BOIS"}, "geometry": {"type": "Point", "coordinates": [2.51024541094009, 48.902023861813646]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "580fa2f016bc354563e2eaf5a1b966c74e0fe18e", "fields": {"departement": "93", "stop_lat": 48.906457816424556, "code_postal": "93014", "stop_lon": 2.5573085596291145, "coord": [48.906457816424556, 2.5573085596291145], "stop_id": 5794643, "stop_desc": "AVENUE JEAN MOULIN - 93014", "stop_name": "EMILE ZOLA"}, "geometry": {"type": "Point", "coordinates": [2.5573085596291145, 48.906457816424556]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "04647b69f0b2314918a6864ff04aa71acecdfac8", "fields": {"departement": "93", "stop_lat": 48.93009765487347, "code_postal": "93029", "stop_lon": 2.431475886641636, "coord": [48.93009765487347, 2.431475886641636], "stop_id": 5794647, "stop_desc": "87 AVENUE MARCEAU - 93029", "stop_name": "EDOUARD VAILLANT"}, "geometry": {"type": "Point", "coordinates": [2.431475886641636, 48.93009765487347]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "960771da8a9a08698f467a1945fb9b0b8fd2af67", "fields": {"departement": "93", "stop_lat": 48.92993519829031, "code_postal": "93029", "stop_lon": 2.432348512476636, "coord": [48.92993519829031, 2.432348512476636], "stop_id": 5794648, "stop_desc": "90 AVENUE MARCEAU - 93029", "stop_name": "EDOUARD VAILLANT"}, "geometry": {"type": "Point", "coordinates": [2.432348512476636, 48.92993519829031]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a7c6eed002e51812d60a84f0463d8c3540662f14", "fields": {"departement": "93", "stop_lat": 48.92482281223156, "code_postal": "93029", "stop_lon": 2.4416948293908285, "coord": [48.92482281223156, 2.4416948293908285], "stop_id": 5794651, "stop_desc": "89 RUE SADI CARNOT - 93029", "stop_name": "JEAN-PIERRE TIMBAUD"}, "geometry": {"type": "Point", "coordinates": [2.4416948293908285, 48.92482281223156]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0c81ef2d089d25218fff30d779ed3f217effda3d", "fields": {"departement": "92", "stop_lat": 48.89546450581845, "code_postal": "92044", "stop_lon": 2.2951642691362526, "coord": [48.89546450581845, 2.2951642691362526], "stop_id": 4017034, "stop_desc": "121 RUE ARISTIDE BRIAND - 92044", "stop_name": "TREZEL"}, "geometry": {"type": "Point", "coordinates": [2.2951642691362526, 48.89546450581845]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d5ad9891e58dd40dfad22b777c1e51ef7ce8a2e3", "fields": {"departement": "92", "stop_lat": 48.8942862056984, "code_postal": "92044", "stop_lon": 2.2924664847616247, "coord": [48.8942862056984, 2.2924664847616247], "stop_id": 4017036, "stop_desc": "99 RUE ARISTIDE BRIAND - 92044", "stop_name": "MARJOLIN"}, "geometry": {"type": "Point", "coordinates": [2.2924664847616247, 48.8942862056984]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e2f002855ef7dedda4eab8ae314ec39d6b93e5cf", "fields": {"departement": "92", "stop_lat": 48.933114711338796, "code_postal": "92036", "stop_lon": 2.30715070714464, "coord": [48.933114711338796, 2.30715070714464], "stop_id": 4017052, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 92036", "stop_name": "GENNEVILLIERS RER"}, "geometry": {"type": "Point", "coordinates": [2.30715070714464, 48.933114711338796]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b2998bf50fbd37e04351002f51ec1c2296ee20f3", "fields": {"departement": "92", "stop_lat": 48.933114711338796, "code_postal": "92036", "stop_lon": 2.30715070714464, "coord": [48.933114711338796, 2.30715070714464], "stop_id": 4017053, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 92036", "stop_name": "GENNEVILLIERS RER"}, "geometry": {"type": "Point", "coordinates": [2.30715070714464, 48.933114711338796]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b0dc4aa54361da42c9707169b38ed92c07463b6c", "fields": {"departement": "92", "stop_lat": 48.92267328820633, "code_postal": "92036", "stop_lon": 2.3131436273854105, "coord": [48.92267328820633, 2.3131436273854105], "stop_id": 4017068, "stop_desc": "FACE 222 R DES CABOEUFS - 92036", "stop_name": "OLYMPE DE GOUGES"}, "geometry": {"type": "Point", "coordinates": [2.3131436273854105, 48.92267328820633]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "189ed9085b3bed441864ee8bf823edbfe62fb4d5", "fields": {"departement": "75", "stop_lat": 48.86654928858581, "code_postal": "75108", "stop_lon": 2.3173382738845345, "coord": [48.86654928858581, 2.3173382738845345], "stop_id": 4022889, "stop_desc": "AVENUE DES CHAMPS ELYSEES - 75108", "stop_name": "CONCORDE - COURS LA REINE"}, "geometry": {"type": "Point", "coordinates": [2.3173382738845345, 48.86654928858581]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bd2b75d6059cc89a4011d651f81999aa90fd08aa", "fields": {"departement": "75", "stop_lat": 48.86803149252129, "code_postal": "75108", "stop_lon": 2.3134687431580963, "coord": [48.86803149252129, 2.3134687431580963], "stop_id": 4022890, "stop_desc": "AVENUE DES CHAMPS ELYSEES - 75108", "stop_name": "CHAMPS-ELYSEES - CLEMENCEAU"}, "geometry": {"type": "Point", "coordinates": [2.3134687431580963, 48.86803149252129]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1c4da915017acf3bf17014a617dfd4fd29e0be0c", "fields": {"departement": "75", "stop_lat": 48.8704742492725, "code_postal": "75108", "stop_lon": 2.3057157112334865, "coord": [48.8704742492725, 2.3057157112334865], "stop_id": 4022894, "stop_desc": "58-60 AVENUE DES CHAMPS ELYSEES - 75108", "stop_name": "LA BOETIE - CHAMPS-ELYSEES"}, "geometry": {"type": "Point", "coordinates": [2.3057157112334865, 48.8704742492725]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e6c8709ec9f9dad556a918f6f0a262078126d35b", "fields": {"departement": "92", "stop_lat": 48.879163952428165, "code_postal": "92051", "stop_lon": 2.2791260385417873, "coord": [48.879163952428165, 2.2791260385417873], "stop_id": 4022903, "stop_desc": "16 AVENUE CHARLES DE GAULLE - 92051", "stop_name": "MONTROSIER"}, "geometry": {"type": "Point", "coordinates": [2.2791260385417873, 48.879163952428165]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e9a3a5be494a1e0e274ba77aed64cae1e7f3b42c", "fields": {"departement": "92", "stop_lat": 48.882132893754225, "code_postal": "92051", "stop_lon": 2.2681803781483323, "coord": [48.882132893754225, 2.2681803781483323], "stop_id": 4022909, "stop_desc": "127-151 AVENUE CHARLES DE GAULLE - 92051", "stop_name": "RUE DE L'HOTEL DE VILLE"}, "geometry": {"type": "Point", "coordinates": [2.2681803781483323, 48.882132893754225]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "01bdd693abcc5e97d8796068f255c27b1bac45b7", "fields": {"departement": "92", "stop_lat": 48.89192062226174, "code_postal": "92026", "stop_lon": 2.2429120742176076, "coord": [48.89192062226174, 2.2429120742176076], "stop_id": 4022916, "stop_desc": "AVENUE ALBERT GLEIZES - 92026", "stop_name": "GAMBETTA"}, "geometry": {"type": "Point", "coordinates": [2.2429120742176076, 48.89192062226174]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3e185796ec73b0ed42d7f8d49e933857cef5d515", "fields": {"departement": "92", "stop_lat": 48.894964343330656, "code_postal": "92026", "stop_lon": 2.239280902045392, "coord": [48.894964343330656, 2.239280902045392], "stop_id": 4022921, "stop_desc": "0 AV DE LA DIVISION LECLERC - 92026", "stop_name": "CARON"}, "geometry": {"type": "Point", "coordinates": [2.239280902045392, 48.894964343330656]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dd00adfed184e54a58e08235210146ad7afb2da5", "fields": {"departement": "92", "stop_lat": 48.89727386890876, "code_postal": "92026", "stop_lon": 2.2390720737260574, "coord": [48.89727386890876, 2.2390720737260574], "stop_id": 4022925, "stop_desc": "FACE 45 AVENUE LEONARD DE VINCI - 92026", "stop_name": "LEONARD DE VINCI"}, "geometry": {"type": "Point", "coordinates": [2.2390720737260574, 48.89727386890876]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f3349e7ae61cfcc616a76a5541a245058942a2eb", "fields": {"departement": "92", "stop_lat": 48.897269856003774, "code_postal": "92026", "stop_lon": 2.2343149319810527, "coord": [48.897269856003774, 2.2343149319810527], "stop_id": 4022926, "stop_desc": "88 RUE DES ETUDIANTS - 92026", "stop_name": "RUE DES ETUDIANTS"}, "geometry": {"type": "Point", "coordinates": [2.2343149319810527, 48.897269856003774]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7eb8744f1017b0c115ce80d1f111f3c55cb0e2a1", "fields": {"departement": "92", "stop_lat": 48.90575775425841, "code_postal": "92035", "stop_lon": 2.2391377956954837, "coord": [48.90575775425841, 2.2391377956954837], "stop_id": 4022931, "stop_desc": "0 BD NATIONAL - 92035", "stop_name": "NORDMANN"}, "geometry": {"type": "Point", "coordinates": [2.2391377956954837, 48.90575775425841]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "df7942faefe0927ca5cbdc905542d2f513d21e73", "fields": {"departement": "92", "stop_lat": 48.90442755581318, "code_postal": "92035", "stop_lon": 2.2390039877341854, "coord": [48.90442755581318, 2.2390039877341854], "stop_id": 4022932, "stop_desc": "5 BD NATIONAL - 92035", "stop_name": "NORDMANN"}, "geometry": {"type": "Point", "coordinates": [2.2390039877341854, 48.90442755581318]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a33fa6de99016834c0d8867efbd2ea52edbaef95", "fields": {"departement": "75", "stop_lat": 48.87713349214627, "code_postal": "75116", "stop_lon": 2.280504490492322, "coord": [48.87713349214627, 2.280504490492322], "stop_id": 4022942, "stop_desc": "PLACE DE LA PORTE MAILLOT - 75116", "stop_name": "PALAIS DES CONGRES"}, "geometry": {"type": "Point", "coordinates": [2.280504490492322, 48.87713349214627]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "19b144d641848338cb5b0fd3052c211529c167ba", "fields": {"departement": "75", "stop_lat": 48.874146200317256, "code_postal": "75116", "stop_lon": 2.293492111443569, "coord": [48.874146200317256, 2.293492111443569], "stop_id": 4022945, "stop_desc": "1 AVENUE DE LA GRANDE ARMEE - 75116", "stop_name": "CHARLES DE GAULLE - ETOILE - GRANDE ARMEE"}, "geometry": {"type": "Point", "coordinates": [2.293492111443569, 48.874146200317256]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5dfaad115c5f6d67efa0fdcf0ab9166c8eb3125d", "fields": {"departement": "75", "stop_lat": 48.87697969338554, "code_postal": "75108", "stop_lon": 2.300915593355041, "coord": [48.87697969338554, 2.300915593355041], "stop_id": 4022963, "stop_desc": "254 RUE DU FAUBOURG SAINT-HONORE - 75108", "stop_name": "HOCHE - SAINT-HONORE"}, "geometry": {"type": "Point", "coordinates": [2.300915593355041, 48.87697969338554]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "af1634a1f269e36cf9c599c2b24c249fb69514b5", "fields": {"departement": "75", "stop_lat": 48.87677297339352, "code_postal": "75108", "stop_lon": 2.300874862043233, "coord": [48.87677297339352, 2.300874862043233], "stop_id": 4022964, "stop_desc": "201-203 RUE DU FAUBOURG SAINT HONORE - 75108", "stop_name": "HOCHE - SAINT-HONORE"}, "geometry": {"type": "Point", "coordinates": [2.300874862043233, 48.87677297339352]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1bf8a372bbbcd9db7687030af0356ec569091900", "fields": {"departement": "75", "stop_lat": 48.885085288442156, "code_postal": "75117", "stop_lon": 2.298048117860305, "coord": [48.885085288442156, 2.298048117860305], "stop_id": 4022972, "stop_desc": "4 BIS PLACE DU MARECHAL JUIN - 75117", "stop_name": "PEREIRE"}, "geometry": {"type": "Point", "coordinates": [2.298048117860305, 48.885085288442156]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ce0fdb6521193fbc0c53f96166f880c56dc6838b", "fields": {"departement": "75", "stop_lat": 48.885649560413256, "code_postal": "75117", "stop_lon": 2.2925829691367388, "coord": [48.885649560413256, 2.2925829691367388], "stop_id": 4022974, "stop_desc": "135 AVENUE DE VILLIERS - 75117", "stop_name": "PORTE DE CHAMPERRET"}, "geometry": {"type": "Point", "coordinates": [2.2925829691367388, 48.885649560413256]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "44d3aa78e7303d27c25b011c1d05f1d747050c04", "fields": {"departement": "92", "stop_lat": 48.879696696187594, "code_postal": "92051", "stop_lon": 2.253181205415918, "coord": [48.879696696187594, 2.253181205415918], "stop_id": 4023000, "stop_desc": "68 RUE DE LONGCHAMP - 92051", "stop_name": "RUE DU CENTRE"}, "geometry": {"type": "Point", "coordinates": [2.253181205415918, 48.879696696187594]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d8757f35ef624ae63b38d40bbd561a5830aaeee6", "fields": {"departement": "92", "stop_lat": 48.890513930158505, "code_postal": "92051", "stop_lon": 2.261531876761765, "coord": [48.890513930158505, 2.261531876761765], "stop_id": 4023024, "stop_desc": "36 BOULEVARD DU GENERAL LECLERC - 92051", "stop_name": "CENTRE HOSPITALIER"}, "geometry": {"type": "Point", "coordinates": [2.261531876761765, 48.890513930158505]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "508e63e2318b9ec3c33b3964bc8d29b73cada6fa", "fields": {"departement": "92", "stop_lat": 48.89484208556093, "code_postal": "92051", "stop_lon": 2.2704396750877645, "coord": [48.89484208556093, 2.2704396750877645], "stop_id": 4023025, "stop_desc": "74 BOULEVARD BOURDON - 92051", "stop_name": "CENTRE DES IMPOTS"}, "geometry": {"type": "Point", "coordinates": [2.2704396750877645, 48.89484208556093]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f920bc12bbdfa6b32c07aff98dbcb570123143af", "fields": {"departement": "75", "stop_lat": 48.86147090721628, "code_postal": "75107", "stop_lon": 2.314479734224913, "coord": [48.86147090721628, 2.314479734224913], "stop_id": 4023034, "stop_desc": "RUE ROBERT ESNAULT PELTERIE - 75107", "stop_name": "INVALIDES"}, "geometry": {"type": "Point", "coordinates": [2.314479734224913, 48.86147090721628]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "74f2342f307d341a6ddecac87e5fd5bfc69d05b7", "fields": {"departement": "75", "stop_lat": 48.86293570378157, "code_postal": "75107", "stop_lon": 2.3137162721106685, "coord": [48.86293570378157, 2.3137162721106685], "stop_id": 4023035, "stop_desc": "QUAI D'ORSAY - 75107", "stop_name": "INVALIDES."}, "geometry": {"type": "Point", "coordinates": [2.3137162721106685, 48.86293570378157]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "54584eb4366a34c5caf91e50a108adb88071dfc9", "fields": {"departement": "75", "stop_lat": 48.875048935083306, "code_postal": "75108", "stop_lon": 2.3062579263665284, "coord": [48.875048935083306, 2.3062579263665284], "stop_id": 4023044, "stop_desc": "190 BOULEVARD HAUSSMANN - 75108", "stop_name": "FRIEDLAND - HAUSSMANN"}, "geometry": {"type": "Point", "coordinates": [2.3062579263665284, 48.875048935083306]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "000880c1a0441586c5263d93560ee32c6750ce79", "fields": {"departement": "92", "stop_lat": 48.89320821199514, "code_postal": "92051", "stop_lon": 2.2737129156457394, "coord": [48.89320821199514, 2.2737129156457394], "stop_id": 4023059, "stop_desc": "70 BOULEVARD VICTOR HUGO - 92051", "stop_name": "HOPITAL AMERICAIN"}, "geometry": {"type": "Point", "coordinates": [2.2737129156457394, 48.89320821199514]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aadee66753f550fc50467623463033d380a13c9b", "fields": {"departement": "92", "stop_lat": 48.89339297784563, "code_postal": "92051", "stop_lon": 2.26666609564012, "coord": [48.89339297784563, 2.26666609564012], "stop_id": 4023061, "stop_desc": "FACE 62 BOULEVARD DU GENERAL LECLERC - 92051", "stop_name": "PONT DE LA GRANDE JATTE"}, "geometry": {"type": "Point", "coordinates": [2.26666609564012, 48.89339297784563]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "313847b6f203cc371f98689c8e19d65e27a3d48b", "fields": {"departement": "92", "stop_lat": 48.889929633289796, "code_postal": "92051", "stop_lon": 2.26132829742624, "coord": [48.889929633289796, 2.26132829742624], "stop_id": 4023062, "stop_desc": "47 BOULEVARD D'ARGENSON - 92051", "stop_name": "COLLEGE ANDRE MAUROIS"}, "geometry": {"type": "Point", "coordinates": [2.26132829742624, 48.889929633289796]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2f887f9dba71bfe9ce1c0d1c5849d586b8e67e7d", "fields": {"departement": "92", "stop_lat": 48.887828209770674, "code_postal": "92051", "stop_lon": 2.2638526134825514, "coord": [48.887828209770674, 2.2638526134825514], "stop_id": 4023063, "stop_desc": "1 BOULEVARD DU CHATEAU - 92051", "stop_name": "CHATEAU"}, "geometry": {"type": "Point", "coordinates": [2.2638526134825514, 48.887828209770674]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9a52536602c7bbc8752091b8c5036ca3d8304a0a", "fields": {"departement": "92", "stop_lat": 48.86904073037529, "code_postal": "92073", "stop_lon": 2.22419430917762, "coord": [48.86904073037529, 2.22419430917762], "stop_id": 4023065, "stop_desc": "AVENUE CHARLES DE GAULLE - 92073", "stop_name": "SURESNES-DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.22419430917762, 48.86904073037529]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3c6b4c91b49ee4b21c033b376a0dbc4f85a7ff1e", "fields": {"departement": "92", "stop_lat": 48.88122845626599, "code_postal": "92051", "stop_lon": 2.2589427639085233, "coord": [48.88122845626599, 2.2589427639085233], "stop_id": 4023078, "stop_desc": "21 AVENUE DE MADRID - 92051", "stop_name": "MAURICE BARRES"}, "geometry": {"type": "Point", "coordinates": [2.2589427639085233, 48.88122845626599]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "920ae10910c03b6e5f480cddf520ca42477d5d05", "fields": {"departement": "75", "stop_lat": 48.88598204653511, "code_postal": "75117", "stop_lon": 2.2924736600136315, "coord": [48.88598204653511, 2.2924736600136315], "stop_id": 4023095, "stop_desc": "PLACE STUART MERRILL - 75117", "stop_name": "PORTE DE CHAMPERRET-METRO"}, "geometry": {"type": "Point", "coordinates": [2.2924736600136315, 48.88598204653511]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0a5f86d27de9404a8fd036ac752109eb74625303", "fields": {"departement": "92", "stop_lat": 48.886948430903146, "code_postal": "92051", "stop_lon": 2.282347163337189, "coord": [48.886948430903146, 2.282347163337189], "stop_id": 4023099, "stop_desc": "54 BOULEVARD BINEAU - 92051", "stop_name": "VILLIERS - BINEAU"}, "geometry": {"type": "Point", "coordinates": [2.282347163337189, 48.886948430903146]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c76a2067f30b537d8331a746b1613babe14dbd98", "fields": {"departement": "92", "stop_lat": 48.88832893507193, "code_postal": "92051", "stop_lon": 2.275163512115956, "coord": [48.88832893507193, 2.275163512115956], "stop_id": 4023102, "stop_desc": "102-104 BOULEVARD BINEAU - 92051", "stop_name": "INKERMANN - BINEAU"}, "geometry": {"type": "Point", "coordinates": [2.275163512115956, 48.88832893507193]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7c51a927e6e1440a130fb944fbda31f13a494b23", "fields": {"departement": "92", "stop_lat": 48.89095063633459, "code_postal": "92051", "stop_lon": 2.270431062561649, "coord": [48.89095063633459, 2.270431062561649], "stop_id": 4023106, "stop_desc": "166 BOULEVARD BINEAU - 92051", "stop_name": "BINEAU - CHATEAU"}, "geometry": {"type": "Point", "coordinates": [2.270431062561649, 48.89095063633459]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "72ce9dc34bd39b8cfc799bc57785102e4eafbee2", "fields": {"departement": "92", "stop_lat": 48.90063271062068, "code_postal": "92026", "stop_lon": 2.2603583975265384, "coord": [48.90063271062068, 2.2603583975265384], "stop_id": 4023115, "stop_desc": "119 BOULEVARD DE VERDUN - 92026", "stop_name": "PAIX - VERDUN"}, "geometry": {"type": "Point", "coordinates": [2.2603583975265384, 48.90063271062068]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "01d6088a273a5b9e1d721d18a3ecacd875082021", "fields": {"departement": "92", "stop_lat": 48.906894877620985, "code_postal": "92035", "stop_lon": 2.245093408164089, "coord": [48.906894877620985, 2.245093408164089], "stop_id": 4023124, "stop_desc": "74 BOULEVARD DE LA REPUBLIQUE - 92035", "stop_name": "MAIRIE DE LA GARENNE-COLOMBES"}, "geometry": {"type": "Point", "coordinates": [2.245093408164089, 48.906894877620985]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f1768f8618acb851656afcb2a91a7800f1ffd4f1", "fields": {"departement": "92", "stop_lat": 48.90671067381759, "code_postal": "92035", "stop_lon": 2.2394904565351617, "coord": [48.90671067381759, 2.2394904565351617], "stop_id": 4023128, "stop_desc": "11 PL DE BELGIQUE - 92035", "stop_name": "LA GARENNE-COLOMBES - CHARLEBOURG"}, "geometry": {"type": "Point", "coordinates": [2.2394904565351617, 48.90671067381759]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "51458e2a872769af9a0f9e047e5ae2466579c13e", "fields": {"departement": "92", "stop_lat": 48.9040347333997, "code_postal": "92035", "stop_lon": 2.2315477111375905, "coord": [48.9040347333997, 2.2315477111375905], "stop_id": 4023131, "stop_desc": "AVENUE DE VERDUN 1916 - 92035", "stop_name": "COLLEGE LES CHAMPS PHILIPPE"}, "geometry": {"type": "Point", "coordinates": [2.2315477111375905, 48.9040347333997]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6e1bc06e5e5ce16d67cfea76ad481222ac4b3379", "fields": {"departement": "92", "stop_lat": 48.89125721485237, "code_postal": "92050", "stop_lon": 2.2150415249938704, "coord": [48.89125721485237, 2.2150415249938704], "stop_id": 4023147, "stop_desc": "32 AVENUE PABLO PICASSO - 92050", "stop_name": "LIBERTE"}, "geometry": {"type": "Point", "coordinates": [2.2150415249938704, 48.89125721485237]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "32703ed3945e728e6622abe3caeaf147006309c9", "fields": {"departement": "92", "stop_lat": 48.88767257385273, "code_postal": "92050", "stop_lon": 2.2077179609163813, "coord": [48.88767257385273, 2.2077179609163813], "stop_id": 4023153, "stop_desc": "FACE 2-6 AV DE LA LIBERTE - 92050", "stop_name": "CARRIERS"}, "geometry": {"type": "Point", "coordinates": [2.2077179609163813, 48.88767257385273]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6b962ad78474faa04ed45cb4102ef729fa021d04", "fields": {"departement": "92", "stop_lat": 48.88763812082074, "code_postal": "92050", "stop_lon": 2.200999307080737, "coord": [48.88763812082074, 2.200999307080737], "stop_id": 4023157, "stop_desc": "FACE 2 AVENUE FREDERIC ET IRENE JOLIOT CURIE - 92050", "stop_name": "PLACE DE LA BOULE - JOLIOT CURIE"}, "geometry": {"type": "Point", "coordinates": [2.200999307080737, 48.88763812082074]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6d6a26c3a1adaa6afed4998cb0f2d05baf47f330", "fields": {"departement": "92", "stop_lat": 48.88739562234356, "code_postal": "92050", "stop_lon": 2.201136226679893, "coord": [48.88739562234356, 2.201136226679893], "stop_id": 4023158, "stop_desc": "2 AVENUE FREDERIC ET IRENE JOLIOT CURIE - 92050", "stop_name": "PLACE DE LA BOULE - JOLIOT CURIE"}, "geometry": {"type": "Point", "coordinates": [2.201136226679893, 48.88739562234356]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "56c130cdc613bce44bd4141447d9badc18244241", "fields": {"departement": "92", "stop_lat": 48.88029959733651, "code_postal": "92063", "stop_lon": 2.1822551110716826, "coord": [48.88029959733651, 2.1822551110716826], "stop_id": 4023166, "stop_desc": "83 AVENUE PAUL DOUMER - 92063", "stop_name": "RUEIL - VILLE"}, "geometry": {"type": "Point", "coordinates": [2.1822551110716826, 48.88029959733651]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f9d98fd9e83b3e4b6a225c71b8656d0419de4a7c", "fields": {"departement": "92", "stop_lat": 48.8928732015959, "code_postal": "92050", "stop_lon": 2.2133885267383153, "coord": [48.8928732015959, 2.2133885267383153], "stop_id": 4023168, "stop_desc": "AVENUE PABLO PICASSO - 92050", "stop_name": "THEATRE DES AMANDIERS"}, "geometry": {"type": "Point", "coordinates": [2.2133885267383153, 48.8928732015959]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "94338dd7ce8b9e5086c52886e3898fa1b6cf38b9", "fields": {"departement": "92", "stop_lat": 48.90585430242931, "code_postal": "92035", "stop_lon": 2.236370101980281, "coord": [48.90585430242931, 2.236370101980281], "stop_id": 4023169, "stop_desc": "FACE 10-12 AVENUE DE VERDUN 1916 - 92035", "stop_name": "VERDUN"}, "geometry": {"type": "Point", "coordinates": [2.236370101980281, 48.90585430242931]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "167dfbe7f3cf35d6b8739f3b4f14e02f8879a907", "fields": {"departement": "92", "stop_lat": 48.88832893507193, "code_postal": "92051", "stop_lon": 2.275163512115956, "coord": [48.88832893507193, 2.275163512115956], "stop_id": 4023175, "stop_desc": "102-104 BOULEVARD BINEAU - 92051", "stop_name": "INKERMANN - BINEAU"}, "geometry": {"type": "Point", "coordinates": [2.275163512115956, 48.88832893507193]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9b0e281d108bf33dc8b5529a7a78b1ad4c58a7ed", "fields": {"departement": "92", "stop_lat": 48.88967567378652, "code_postal": "92051", "stop_lon": 2.2726405714211264, "coord": [48.88967567378652, 2.2726405714211264], "stop_id": 4023176, "stop_desc": "140 BOULEVARD BINEAU - 92051", "stop_name": "CHEZY"}, "geometry": {"type": "Point", "coordinates": [2.2726405714211264, 48.88967567378652]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "84e1612f37edcf909ddf023d02ff2328183ad4ea", "fields": {"departement": "92", "stop_lat": 48.89095063633459, "code_postal": "92051", "stop_lon": 2.270431062561649, "coord": [48.89095063633459, 2.270431062561649], "stop_id": 4023177, "stop_desc": "166 BOULEVARD BINEAU - 92051", "stop_name": "BINEAU - CHATEAU"}, "geometry": {"type": "Point", "coordinates": [2.270431062561649, 48.89095063633459]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8e5ce543cc0518b78422f6abe87d15c415fedaa5", "fields": {"departement": "92", "stop_lat": 48.906358664664815, "code_postal": "92035", "stop_lon": 2.249075253224493, "coord": [48.906358664664815, 2.249075253224493], "stop_id": 4023185, "stop_desc": "48 BOULEVARD DE LA REPUBLIQUE - 92035", "stop_name": "SOUVENIR FRANCAIS"}, "geometry": {"type": "Point", "coordinates": [2.249075253224493, 48.906358664664815]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ac368feea32e3532dac9fa62e7c8f5b63041ebcb", "fields": {"departement": "92", "stop_lat": 48.906894877620985, "code_postal": "92035", "stop_lon": 2.245093408164089, "coord": [48.906894877620985, 2.245093408164089], "stop_id": 4023186, "stop_desc": "74 BOULEVARD DE LA REPUBLIQUE - 92035", "stop_name": "MAIRIE DE LA GARENNE-COLOMBES"}, "geometry": {"type": "Point", "coordinates": [2.245093408164089, 48.906894877620985]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "da3a64fdfb57687fe96cff588431590b1d30b6ee", "fields": {"departement": "92", "stop_lat": 48.889841929441204, "code_postal": "92050", "stop_lon": 2.219705929424664, "coord": [48.889841929441204, 2.219705929424664], "stop_id": 4023197, "stop_desc": "67 AVENUE PABLO PICASSO - 92050", "stop_name": "FERNAND LEGER"}, "geometry": {"type": "Point", "coordinates": [2.219705929424664, 48.889841929441204]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "483e88648651a9fc05ece2711ac4116d9a612807", "fields": {"departement": "92", "stop_lat": 48.886962342334975, "code_postal": "92050", "stop_lon": 2.199488364504161, "coord": [48.886962342334975, 2.199488364504161], "stop_id": 4023205, "stop_desc": "PLACE DE LA BOULE - 92050", "stop_name": "PLACE DE LA BOULE - LENINE"}, "geometry": {"type": "Point", "coordinates": [2.199488364504161, 48.886962342334975]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7a431b80c64de55c176dfb6497f18618b5886c29", "fields": {"departement": "92", "stop_lat": 48.86128502730734, "code_postal": "92063", "stop_lon": 2.1708972435685348, "coord": [48.86128502730734, 2.1708972435685348], "stop_id": 4023217, "stop_desc": "RUE DE LA CHATAIGNERAIE - 92063", "stop_name": "CENTRE MADELEINE DANIELOU"}, "geometry": {"type": "Point", "coordinates": [2.1708972435685348, 48.86128502730734]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "feb55d2eba681d02566a6bff5595e11d92254020", "fields": {"departement": "75", "stop_lat": 48.88601688033029, "code_postal": "75117", "stop_lon": 2.289598157269828, "coord": [48.88601688033029, 2.289598157269828], "stop_id": 4023220, "stop_desc": "FACE 5 PLACE DE LA PORTE DE CHAMPERRET - 75117", "stop_name": "L'YSER ET LA SOMME"}, "geometry": {"type": "Point", "coordinates": [2.289598157269828, 48.88601688033029]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "70c9b761fb814278ac8aaea2e7a52b9b3b150753", "fields": {"departement": "92", "stop_lat": 48.88771020024983, "code_postal": "92051", "stop_lon": 2.2778762809004243, "coord": [48.88771020024983, 2.2778762809004243], "stop_id": 4023222, "stop_desc": "92 BOULEVARD BINEAU - 92051", "stop_name": "VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.2778762809004243, 48.88771020024983]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d4d32e4ad1772763e578b05eefebeec746ae1dcf", "fields": {"departement": "92", "stop_lat": 48.88832893507193, "code_postal": "92051", "stop_lon": 2.275163512115956, "coord": [48.88832893507193, 2.275163512115956], "stop_id": 4023223, "stop_desc": "102-104 BOULEVARD BINEAU - 92051", "stop_name": "INKERMANN - BINEAU"}, "geometry": {"type": "Point", "coordinates": [2.275163512115956, 48.88832893507193]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2f3b3285a121b9c463eb2d916b864861b09a2127", "fields": {"departement": "92", "stop_lat": 48.88967567378652, "code_postal": "92051", "stop_lon": 2.2726405714211264, "coord": [48.88967567378652, 2.2726405714211264], "stop_id": 4023224, "stop_desc": "140 BOULEVARD BINEAU - 92051", "stop_name": "CHEZY"}, "geometry": {"type": "Point", "coordinates": [2.2726405714211264, 48.88967567378652]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7fafe53ed38092c16af6cad5ae5903a71e08c280", "fields": {"departement": "92", "stop_lat": 48.89919921470704, "code_postal": "92050", "stop_lon": 2.221388617513115, "coord": [48.89919921470704, 2.221388617513115], "stop_id": 4023241, "stop_desc": "79 AVENUE FRANCOIS ARAGO - 92050", "stop_name": "LENS"}, "geometry": {"type": "Point", "coordinates": [2.221388617513115, 48.89919921470704]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4a7090d859ecc9ebbc900450c81212796f3c4e64", "fields": {"departement": "92", "stop_lat": 48.896900599106075, "code_postal": "92050", "stop_lon": 2.223561039154595, "coord": [48.896900599106075, 2.223561039154595], "stop_id": 4023242, "stop_desc": "0 BD DES BOUVETS - 92050", "stop_name": "NANTERRE-PREFECTURE-RER"}, "geometry": {"type": "Point", "coordinates": [2.223561039154595, 48.896900599106075]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8aa454d5ecc179eca4ac0dad268ce0f989e47bf8", "fields": {"departement": "92", "stop_lat": 48.88739562234356, "code_postal": "92050", "stop_lon": 2.201136226679893, "coord": [48.88739562234356, 2.201136226679893], "stop_id": 4023247, "stop_desc": "2 AVENUE FREDERIC ET IRENE JOLIOT CURIE - 92050", "stop_name": "PLACE DE LA BOULE - JOLIOT CURIE"}, "geometry": {"type": "Point", "coordinates": [2.201136226679893, 48.88739562234356]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "68ca99753979e746dbe26e7f15af87c5d7297f5b", "fields": {"departement": "92", "stop_lat": 48.8876368174999, "code_postal": "92050", "stop_lon": 2.2078952178439013, "coord": [48.8876368174999, 2.2078952178439013], "stop_id": 4023249, "stop_desc": "10 AV DE LA LIBERTE - 92050", "stop_name": "CARRIERS"}, "geometry": {"type": "Point", "coordinates": [2.2078952178439013, 48.8876368174999]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "82e8b9df6eb555c7395961d8f674fcadc7b24b30", "fields": {"departement": "92", "stop_lat": 48.8894640565701, "code_postal": "92050", "stop_lon": 2.2105346357560283, "coord": [48.8894640565701, 2.2105346357560283], "stop_id": 4023250, "stop_desc": "50 RUE DE LA LIBERTE - 92050", "stop_name": "LE CHAT PERCHE"}, "geometry": {"type": "Point", "coordinates": [2.2105346357560283, 48.8894640565701]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ac56bb3fc14861f07f78bd904e7d1bbd730c3367", "fields": {"departement": "92", "stop_lat": 48.9040347333997, "code_postal": "92035", "stop_lon": 2.2315477111375905, "coord": [48.9040347333997, 2.2315477111375905], "stop_id": 4023261, "stop_desc": "AVENUE DE VERDUN 1916 - 92035", "stop_name": "COLLEGE LES CHAMPS PHILIPPE"}, "geometry": {"type": "Point", "coordinates": [2.2315477111375905, 48.9040347333997]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "16db44873fc41d0afa308f259ab851b20b682d50", "fields": {"departement": "75", "stop_lat": 48.88582917143783, "code_postal": "75117", "stop_lon": 2.2922284919902833, "coord": [48.88582917143783, 2.2922284919902833], "stop_id": 4023265, "stop_desc": "PLACE STUART MERRILL - 75117", "stop_name": "PORTE DE CHAMPERRET"}, "geometry": {"type": "Point", "coordinates": [2.2922284919902833, 48.88582917143783]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "63b769c2f0932275dd2bf9dedaf51647a2544420", "fields": {"departement": "75", "stop_lat": 48.88601688033029, "code_postal": "75117", "stop_lon": 2.289598157269828, "coord": [48.88601688033029, 2.289598157269828], "stop_id": 4023266, "stop_desc": "FACE 5 PLACE DE LA PORTE DE CHAMPERRET - 75117", "stop_name": "L'YSER ET LA SOMME"}, "geometry": {"type": "Point", "coordinates": [2.289598157269828, 48.88601688033029]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9f97ad5bde56a09773bb203c9afa409e74a060bb", "fields": {"departement": "92", "stop_lat": 48.886948430903146, "code_postal": "92051", "stop_lon": 2.282347163337189, "coord": [48.886948430903146, 2.282347163337189], "stop_id": 4023268, "stop_desc": "54 BOULEVARD BINEAU - 92051", "stop_name": "VILLIERS - BINEAU"}, "geometry": {"type": "Point", "coordinates": [2.282347163337189, 48.886948430903146]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2b3013766918745fc4310b0556ad0e08c72a363f", "fields": {"departement": "92", "stop_lat": 48.88771020024983, "code_postal": "92051", "stop_lon": 2.2778762809004243, "coord": [48.88771020024983, 2.2778762809004243], "stop_id": 4023269, "stop_desc": "92 BOULEVARD BINEAU - 92051", "stop_name": "VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.2778762809004243, 48.88771020024983]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9798ac593c63ed39dcb67d87c99a8c531626d0bf", "fields": {"departement": "92", "stop_lat": 48.887826061073866, "code_postal": "92051", "stop_lon": 2.2759545564935877, "coord": [48.887826061073866, 2.2759545564935877], "stop_id": 4023272, "stop_desc": "99 BOULEVARD BINEAU - 92051", "stop_name": "INKERMANN - BINEAU"}, "geometry": {"type": "Point", "coordinates": [2.2759545564935877, 48.887826061073866]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8828f7227a3790b3fa5e811e223e83316791d970", "fields": {"departement": "92", "stop_lat": 48.897525098700406, "code_postal": "92026", "stop_lon": 2.263416321988581, "coord": [48.897525098700406, 2.263416321988581], "stop_id": 4023282, "stop_desc": "BOULEVARD DE VERDUN - 92026", "stop_name": "PONT BINEAU"}, "geometry": {"type": "Point", "coordinates": [2.263416321988581, 48.897525098700406]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "308ba610de56c7b5737889cee9794fa0e080c24b", "fields": {"departement": "92", "stop_lat": 48.90060601237607, "code_postal": "92026", "stop_lon": 2.2607673873457803, "coord": [48.90060601237607, 2.2607673873457803], "stop_id": 4023283, "stop_desc": "68 BOULEVARD DE VERDUN - 92026", "stop_name": "PAIX - VERDUN"}, "geometry": {"type": "Point", "coordinates": [2.2607673873457803, 48.90060601237607]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "112f940269392ee347050b3d53943507a223a2b6", "fields": {"departement": "92", "stop_lat": 48.90506065554389, "code_postal": "92026", "stop_lon": 2.256289238138161, "coord": [48.90506065554389, 2.256289238138161], "stop_id": 4023287, "stop_desc": "FACE 165 BOULEVARD DE VERDUN - 92026", "stop_name": "EUROPE"}, "geometry": {"type": "Point", "coordinates": [2.256289238138161, 48.90506065554389]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4a1bf03057fcb6aec23c7784205c146b85692ab5", "fields": {"departement": "92", "stop_lat": 48.91061372859797, "code_postal": "92035", "stop_lon": 2.2549307634920117, "coord": [48.91061372859797, 2.2549307634920117], "stop_id": 4023291, "stop_desc": "47 AVENUE DU GENERAL DE GAULLE - 92035", "stop_name": "RUE DE L'AIGLE"}, "geometry": {"type": "Point", "coordinates": [2.2549307634920117, 48.91061372859797]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9ca382f9b4096d5dca00783d326865055183b1d3", "fields": {"departement": "92", "stop_lat": 48.923229167415165, "code_postal": "92025", "stop_lon": 2.2516649569046066, "coord": [48.923229167415165, 2.2516649569046066], "stop_id": 4023300, "stop_desc": "22 AVENUE GABRIEL PERI - 92025", "stop_name": "EGLISE DE COLOMBES"}, "geometry": {"type": "Point", "coordinates": [2.2516649569046066, 48.923229167415165]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "27b550ce9e1567c77fba1459a298bad4ad3e4420", "fields": {"departement": "95", "stop_lat": 48.93554002020737, "code_postal": "95018", "stop_lon": 2.2384811667471207, "coord": [48.93554002020737, 2.2384811667471207], "stop_id": 4023309, "stop_desc": "3 PLACE DU 11 NOVEMBRE - 95018", "stop_name": "PLACE DU 11 NOVEMBRE"}, "geometry": {"type": "Point", "coordinates": [2.2384811667471207, 48.93554002020737]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "db0ffb10caf5f2759f22199f02263761d362fa99", "fields": {"departement": "95", "stop_lat": 48.94233960437305, "code_postal": "95018", "stop_lon": 2.234402680551528, "coord": [48.94233960437305, 2.234402680551528], "stop_id": 4023315, "stop_desc": "43-45 AVENUE MAURICE UTRILLO (EX MARCEL CACHIN) - 95018", "stop_name": "LES MESSIERS"}, "geometry": {"type": "Point", "coordinates": [2.234402680551528, 48.94233960437305]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0bc21102b12e22b7004d9d2a630bf9c7eb598b9f", "fields": {"departement": "95", "stop_lat": 48.95236346778784, "code_postal": "95018", "stop_lon": 2.2283515376017653, "coord": [48.95236346778784, 2.2283515376017653], "stop_id": 4023320, "stop_desc": "RUE JEAN LURCAT - 95018", "stop_name": "JEAN LURCAT"}, "geometry": {"type": "Point", "coordinates": [2.2283515376017653, 48.95236346778784]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "66b83f3d8134c4be8b068b1ab271b7fbfcbc9e95", "fields": {"departement": "95", "stop_lat": 48.95319255914466, "code_postal": "95018", "stop_lon": 2.2212677638312486, "coord": [48.95319255914466, 2.2212677638312486], "stop_id": 4023322, "stop_desc": "ALLEE GUY DE MAUPASSANT - 95018", "stop_name": "BERIONNE"}, "geometry": {"type": "Point", "coordinates": [2.2212677638312486, 48.95319255914466]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c53cd3f0058fbc1e507e3b3e18bdf8e7963b2d23", "fields": {"departement": "95", "stop_lat": 48.95529108126409, "code_postal": "95018", "stop_lon": 2.216855376493315, "coord": [48.95529108126409, 2.216855376493315], "stop_id": 4023326, "stop_desc": "RUE DES ALLOBROGES - 95018", "stop_name": "COLLEGE CLAUDE MONET"}, "geometry": {"type": "Point", "coordinates": [2.216855376493315, 48.95529108126409]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "09560948a4e03899f6684dda44dc50744e44b7c7", "fields": {"departement": "92", "stop_lat": 48.88573966888611, "code_postal": "92051", "stop_lon": 2.2583635822961057, "coord": [48.88573966888611, 2.2583635822961057], "stop_id": 4023367, "stop_desc": "AVENUE CHARLES DE GAULLE - 92051", "stop_name": "PONT DE NEUILLY-METRO"}, "geometry": {"type": "Point", "coordinates": [2.2583635822961057, 48.88573966888611]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "76a2b96ce0adcde57f9510532f30900ce61a0349", "fields": {"departement": "92", "stop_lat": 48.8904021795583, "code_postal": "92026", "stop_lon": 2.255617058386803, "coord": [48.8904021795583, 2.255617058386803], "stop_id": 4023371, "stop_desc": "1 RUE DE L'ABREUVOIR - 92026", "stop_name": "PAUL DOUMER"}, "geometry": {"type": "Point", "coordinates": [2.255617058386803, 48.8904021795583]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "85d05eb8b19cd47b68c029a22f93e6d6b8c7de1d", "fields": {"departement": "92", "stop_lat": 48.89275521853061, "code_postal": "92026", "stop_lon": 2.2533099479205396, "coord": [48.89275521853061, 2.2533099479205396], "stop_id": 4023372, "stop_desc": "4 RUE DE BEZONS - 92026", "stop_name": "VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.2533099479205396, 48.89275521853061]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e19a278416a2f6d0e2ac5f35a37e8dac21b2c723", "fields": {"departement": "92", "stop_lat": 48.90090880582363, "code_postal": "92026", "stop_lon": 2.244231622241928, "coord": [48.90090880582363, 2.244231622241928], "stop_id": 4023379, "stop_desc": "61-63 AVENUE MARCEAU - 92026", "stop_name": "PLACE DU 8 MAI 1945"}, "geometry": {"type": "Point", "coordinates": [2.244231622241928, 48.90090880582363]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b940318f141491c7912610923395050e0df7e644", "fields": {"departement": "92", "stop_lat": 48.9063508217573, "code_postal": "92035", "stop_lon": 2.239041240296181, "coord": [48.9063508217573, 2.239041240296181], "stop_id": 4023384, "stop_desc": "BD NATIONAL - 92035", "stop_name": "LA GARENNE-COLOMBES - CHARLEBOURG"}, "geometry": {"type": "Point", "coordinates": [2.239041240296181, 48.9063508217573]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3136eddb2f252b01632c763a61a7e872f44580dc", "fields": {"departement": "92", "stop_lat": 48.90970325935841, "code_postal": "92025", "stop_lon": 2.239362102904537, "coord": [48.90970325935841, 2.239362102904537], "stop_id": 4023386, "stop_desc": "FACE 34 AVENUE PIERRE BROSSOLETTE - 92025", "stop_name": "GARE DE LA GARENNE-COLOMBES"}, "geometry": {"type": "Point", "coordinates": [2.239362102904537, 48.90970325935841]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "65089f9ba6a68e89371577c6c433f6b7e4cf5d25", "fields": {"departement": "92", "stop_lat": 48.9187340254431, "code_postal": "92025", "stop_lon": 2.24938146140975, "coord": [48.9187340254431, 2.24938146140975], "stop_id": 4023391, "stop_desc": "65 RUE DES VOIE DU BOIS - 92025", "stop_name": "OSTYN"}, "geometry": {"type": "Point", "coordinates": [2.24938146140975, 48.9187340254431]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "88b8eb31e81d75a28bc94a8f2a0e08a427e06fc5", "fields": {"departement": "92", "stop_lat": 48.91830787733932, "code_postal": "92025", "stop_lon": 2.244418558652691, "coord": [48.91830787733932, 2.244418558652691], "stop_id": 4023392, "stop_desc": "144 RUE D'ESTIENNE D'ORVES - 92025", "stop_name": "OSTYN"}, "geometry": {"type": "Point", "coordinates": [2.244418558652691, 48.91830787733932]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cda14dfe1e53b5bcc854e9a6b141b5824d84578a", "fields": {"departement": "92", "stop_lat": 48.92120580995728, "code_postal": "92025", "stop_lon": 2.2498818406597088, "coord": [48.92120580995728, 2.2498818406597088], "stop_id": 4023393, "stop_desc": "29 RUE ROUGET DE L'ISLE - 92025", "stop_name": "JACQUES ELEONOR FERME"}, "geometry": {"type": "Point", "coordinates": [2.2498818406597088, 48.92120580995728]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4ff8cc4a2b20c3ab405aeecabb4d1d4382f139d9", "fields": {"departement": "92", "stop_lat": 48.92299546791915, "code_postal": "92025", "stop_lon": 2.2516107928123716, "coord": [48.92299546791915, 2.2516107928123716], "stop_id": 4023395, "stop_desc": "21 AVENUE GABRIEL PERI - 92025", "stop_name": "EGLISE DE COLOMBES"}, "geometry": {"type": "Point", "coordinates": [2.2516107928123716, 48.92299546791915]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "801d4343817ab358bbfc31205179214a6dc35ff5", "fields": {"departement": "92", "stop_lat": 48.92322901063561, "code_postal": "92025", "stop_lon": 2.251446755100315, "coord": [48.92322901063561, 2.251446755100315], "stop_id": 4023396, "stop_desc": "14 BIS RUE GABRIEL PERI - 92025", "stop_name": "EGLISE DE COLOMBES"}, "geometry": {"type": "Point", "coordinates": [2.251446755100315, 48.92322901063561]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9baa6ac0ad61b56813bd988f2a5463d3b6d51ee6", "fields": {"departement": "95", "stop_lat": 48.922984347654, "code_postal": "95063", "stop_lon": 2.2177760046771526, "coord": [48.922984347654, 2.2177760046771526], "stop_id": 4023484, "stop_desc": "0 R JULIUS ET ETHEL ROSENBERG - 95063", "stop_name": "PONT DE BEZONS"}, "geometry": {"type": "Point", "coordinates": [2.2177760046771526, 48.922984347654]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ca8728dedd2b0cf112a9f417aa6f975417169a41", "fields": {"departement": "95", "stop_lat": 48.92696288608361, "code_postal": "95063", "stop_lon": 2.2151345728058702, "coord": [48.92696288608361, 2.2151345728058702], "stop_id": 4023487, "stop_desc": "73 BIS RUE EDOUARD VAILLANT - 95063", "stop_name": "LA GRACE DE DIEU"}, "geometry": {"type": "Point", "coordinates": [2.2151345728058702, 48.92696288608361]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3c316a024d7ab3d7368ef57ab44ae79c943e72c3", "fields": {"departement": "95", "stop_lat": 48.92532257626675, "code_postal": "95063", "stop_lon": 2.210637838002561, "coord": [48.92532257626675, 2.210637838002561], "stop_id": 4023488, "stop_desc": "122 RUE EDOUARD VAILLANT - 95063", "stop_name": "HENRI BARBUSSE"}, "geometry": {"type": "Point", "coordinates": [2.210637838002561, 48.92532257626675]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cb3b6379a29d0c688d23f42fb558b25cfecb7820", "fields": {"departement": "78", "stop_lat": 48.92888245665976, "code_postal": "78311", "stop_lon": 2.188220043192367, "coord": [48.92888245665976, 2.188220043192367], "stop_id": 4023500, "stop_desc": "61-63 BOULEVARD HENRI BARBUSSE - 78311", "stop_name": "EDOUARD BRANLY"}, "geometry": {"type": "Point", "coordinates": [2.188220043192367, 48.92888245665976]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2bdba9d6a43fae3e887151ed229986500c0f117c", "fields": {"departement": "78", "stop_lat": 48.93998903483855, "code_postal": "78586", "stop_lon": 2.1671656550053164, "coord": [48.93998903483855, 2.1671656550053164], "stop_id": 4023508, "stop_desc": "100 AVENUE MAURICE BERTEAUX - 78586", "stop_name": "JEAN MERMOZ"}, "geometry": {"type": "Point", "coordinates": [2.1671656550053164, 48.93998903483855]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "af5d0b0faff8c56cf748b374986b77790bd87cbe", "fields": {"departement": "78", "stop_lat": 48.947348606132074, "code_postal": "78358", "stop_lon": 2.1488039258653866, "coord": [48.947348606132074, 2.1488039258653866], "stop_id": 4023513, "stop_desc": "56-58 RUE DE PARIS - 78358", "stop_name": "RUE DU MESNIL"}, "geometry": {"type": "Point", "coordinates": [2.1488039258653866, 48.947348606132074]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c27a326a5e729b7ff06941ef9dd69c2e7c18b072", "fields": {"departement": "95", "stop_lat": 48.92435016744195, "code_postal": "95063", "stop_lon": 2.208935473437581, "coord": [48.92435016744195, 2.208935473437581], "stop_id": 4023517, "stop_desc": "FACE 148 R EDOUARD VAILLANT - 95063", "stop_name": "EMILE ZOLA"}, "geometry": {"type": "Point", "coordinates": [2.208935473437581, 48.92435016744195]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6248d3d7c56d6b95212bc7075cec42701cec911b", "fields": {"departement": "93", "stop_lat": 48.90653616722905, "code_postal": "93008", "stop_lon": 2.449483447525252, "coord": [48.90653616722905, 2.449483447525252], "stop_id": 5150390, "stop_desc": "PISTE GARE ROUTIERE - 93008", "stop_name": "BOBIGNY - PABLO PICASSO"}, "geometry": {"type": "Point", "coordinates": [2.449483447525252, 48.90653616722905]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "364f8a93b49329926868892626752d6f1426a34d", "fields": {"departement": "93", "stop_lat": 48.90759726631874, "code_postal": "93008", "stop_lon": 2.4488177035089067, "coord": [48.90759726631874, 2.4488177035089067], "stop_id": 5150391, "stop_desc": "PISTE GARE ROUTIERE - 93008", "stop_name": "BOBIGNY - PABLO PICASSO"}, "geometry": {"type": "Point", "coordinates": [2.4488177035089067, 48.90759726631874]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4a6c3c9eb417ee4081c387743bc3420b82fafd61", "fields": {"departement": "93", "stop_lat": 48.90569029404579, "code_postal": "93008", "stop_lon": 2.459720013319434, "coord": [48.90569029404579, 2.459720013319434], "stop_id": 5150394, "stop_desc": "AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "CITE ADMINISTRATIVE"}, "geometry": {"type": "Point", "coordinates": [2.459720013319434, 48.90569029404579]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "32838ee99b3646d7e6f377e2c2f0682da8a48ec5", "fields": {"departement": "93", "stop_lat": 48.905486896676855, "code_postal": "93008", "stop_lon": 2.4651318210827156, "coord": [48.905486896676855, 2.4651318210827156], "stop_id": 5150395, "stop_desc": "412 AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "RUE DES PEUPLIERS"}, "geometry": {"type": "Point", "coordinates": [2.4651318210827156, 48.905486896676855]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d01b0fca4098cb0f6d65106bebd6873d666d83a9", "fields": {"departement": "93", "stop_lat": 48.90555453249922, "code_postal": "93008", "stop_lon": 2.469044655471792, "coord": [48.90555453249922, 2.469044655471792], "stop_id": 5150397, "stop_desc": "FACE 439 AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "PONT DE BONDY"}, "geometry": {"type": "Point", "coordinates": [2.469044655471792, 48.90555453249922]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "df8178ca543c8059b8e8cb650a2967c84a0e0282", "fields": {"departement": "93", "stop_lat": 48.91477031606463, "code_postal": "93057", "stop_lon": 2.4952890088316666, "coord": [48.91477031606463, 2.4952890088316666], "stop_id": 5150412, "stop_desc": "FACE 50 BOULEVARD DE PARIS - 93057", "stop_name": "LOUISE MICHEL"}, "geometry": {"type": "Point", "coordinates": [2.4952890088316666, 48.91477031606463]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "da72e0e8ed05f3680e01a356f167a5ab64828b37", "fields": {"departement": "93", "stop_lat": 48.91269796035546, "code_postal": "93046", "stop_lon": 2.518025667968358, "coord": [48.91269796035546, 2.518025667968358], "stop_id": 5150424, "stop_desc": "17 AVENUE VAUBAN - 93046", "stop_name": "GUTENBERG"}, "geometry": {"type": "Point", "coordinates": [2.518025667968358, 48.91269796035546]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "df6c70bd8fe0ab40da72634e26368b943cb5a2cd", "fields": {"departement": "93", "stop_lat": 48.91794686277048, "code_postal": "93046", "stop_lon": 2.523553037655228, "coord": [48.91794686277048, 2.523553037655228], "stop_id": 5150425, "stop_desc": "138 AVENUE VAUBAN - 93046", "stop_name": "GAMBETTA"}, "geometry": {"type": "Point", "coordinates": [2.523553037655228, 48.91794686277048]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "08bb0a530bf8ea7fa753d6e2b91b84c344eeb1d5", "fields": {"departement": "93", "stop_lat": 48.91825555686385, "code_postal": "93046", "stop_lon": 2.5382268639728545, "coord": [48.91825555686385, 2.5382268639728545], "stop_id": 5150433, "stop_desc": "10 AVENUE ALBERT THOMAS - 93046", "stop_name": "MAIRIE DE LIVRY-GARGAN"}, "geometry": {"type": "Point", "coordinates": [2.5382268639728545, 48.91825555686385]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "961d2d6393526a9f8f9459489e41ac09ab57b1c9", "fields": {"departement": "93", "stop_lat": 48.91419001079481, "code_postal": "93010", "stop_lon": 2.4923556557697606, "coord": [48.91419001079481, 2.4923556557697606], "stop_id": 5150436, "stop_desc": "VOIE PROMENADE - 93010", "stop_name": "LYCEE CLAUDE-NICOLAS LEDOUX"}, "geometry": {"type": "Point", "coordinates": [2.4923556557697606, 48.91419001079481]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "074b650241753561a7a9d1899a9ec55353756c2e", "fields": {"departement": "93", "stop_lat": 48.910725212870034, "code_postal": "93008", "stop_lon": 2.4742524960527454, "coord": [48.910725212870034, 2.4742524960527454], "stop_id": 5150438, "stop_desc": "CHEMIN DE GROSLAY - 93008", "stop_name": "ETIENNE DOLET"}, "geometry": {"type": "Point", "coordinates": [2.4742524960527454, 48.910725212870034]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eb5e98139831848156f6b658869e5aeaef4292a2", "fields": {"departement": "93", "stop_lat": 48.914227247147316, "code_postal": "93001", "stop_lon": 2.404026516251405, "coord": [48.914227247147316, 2.404026516251405], "stop_id": 5150444, "stop_desc": "AVENUE JEAN JAURES - 93001", "stop_name": "FORT D'AUBERVILLIERS-METRO"}, "geometry": {"type": "Point", "coordinates": [2.404026516251405, 48.914227247147316]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7453dd04d7caab31e10c39973e38247e7d761af1", "fields": {"departement": "93", "stop_lat": 48.9074650418741, "code_postal": "93008", "stop_lon": 2.424113548237613, "coord": [48.9074650418741, 2.424113548237613], "stop_id": 5150449, "stop_desc": "AVENUE DE LA DIVISION LECLERC - 93008", "stop_name": "REPUBLIQUE - DIVISION LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.424113548237613, 48.9074650418741]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "78a9f713f19575945efe1157b80f02402174eab2", "fields": {"departement": "93", "stop_lat": 48.906577135972725, "code_postal": "93008", "stop_lon": 2.4440166024805547, "coord": [48.906577135972725, 2.4440166024805547], "stop_id": 5150453, "stop_desc": "BOULEVARD LENINE - 93008", "stop_name": "HOTEL DE VILLE DE BOBIGNY"}, "geometry": {"type": "Point", "coordinates": [2.4440166024805547, 48.906577135972725]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bbdee298d44e7a1ad000d598d7bcb8cbb9b48e60", "fields": {"departement": "93", "stop_lat": 48.90653616722905, "code_postal": "93008", "stop_lon": 2.449483447525252, "coord": [48.90653616722905, 2.449483447525252], "stop_id": 5150454, "stop_desc": "PISTE GARE ROUTIERE - 93008", "stop_name": "BOBIGNY - PABLO PICASSO"}, "geometry": {"type": "Point", "coordinates": [2.449483447525252, 48.90653616722905]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9ca6c07d52be0ef21f37153f2c74776492efa034", "fields": {"departement": "93", "stop_lat": 48.90569029404579, "code_postal": "93008", "stop_lon": 2.459720013319434, "coord": [48.90569029404579, 2.459720013319434], "stop_id": 5150456, "stop_desc": "AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "CITE ADMINISTRATIVE"}, "geometry": {"type": "Point", "coordinates": [2.459720013319434, 48.90569029404579]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "afb07073e30c633d54816e97e792c01af663ef07", "fields": {"departement": "93", "stop_lat": 48.910391118821, "code_postal": "93010", "stop_lon": 2.475615038862434, "coord": [48.910391118821, 2.475615038862434], "stop_id": 5150462, "stop_desc": "RUE JEAN JACQUES ROUSSEAU - 93010", "stop_name": "ETIENNE DOLET"}, "geometry": {"type": "Point", "coordinates": [2.475615038862434, 48.910391118821]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "20948ef631c18daeabe178b23fef0f34715e6aea", "fields": {"departement": "93", "stop_lat": 48.91127967872346, "code_postal": "93010", "stop_lon": 2.484098069741226, "coord": [48.91127967872346, 2.484098069741226], "stop_id": 5150464, "stop_desc": "6 AVENUE MARX DORMOY - 93010", "stop_name": "MAISON DE RETRAITE"}, "geometry": {"type": "Point", "coordinates": [2.484098069741226, 48.91127967872346]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "65c02676686c83c7d6ec3a62b2c0d88c26144344", "fields": {"departement": "93", "stop_lat": 48.913127869248015, "code_postal": "93010", "stop_lon": 2.486625780970679, "coord": [48.913127869248015, 2.486625780970679], "stop_id": 5150465, "stop_desc": "VOIE PROMENADE - 93010", "stop_name": "RONSARD - VILLON"}, "geometry": {"type": "Point", "coordinates": [2.486625780970679, 48.913127869248015]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c19c59360a686bfa44d83ade52a2f02fd0a2bccf", "fields": {"departement": "93", "stop_lat": 48.906488254589036, "code_postal": "93008", "stop_lon": 2.4322236788904616, "coord": [48.906488254589036, 2.4322236788904616], "stop_id": 5150483, "stop_desc": "RUE DE LA REPUBLIQUE - 93008", "stop_name": "RUE DE LA GARE"}, "geometry": {"type": "Point", "coordinates": [2.4322236788904616, 48.906488254589036]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "230d38963b7d57e46e1c149f83d34808934a71b6", "fields": {"departement": "93", "stop_lat": 48.90650920647477, "code_postal": "93008", "stop_lon": 2.439490229390998, "coord": [48.90650920647477, 2.439490229390998], "stop_id": 5150486, "stop_desc": "BOULEVARD LENINE - 93008", "stop_name": "CONSERVATOIRE JEAN WIENER"}, "geometry": {"type": "Point", "coordinates": [2.439490229390998, 48.90650920647477]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6ec94c6108fe9ebf905aed5778681ec4dee6ed9e", "fields": {"departement": "93", "stop_lat": 48.906711868542196, "code_postal": "93008", "stop_lon": 2.444098679824846, "coord": [48.906711868542196, 2.444098679824846], "stop_id": 5150488, "stop_desc": "BOULEVARD LENINE - 93008", "stop_name": "HOTEL DE VILLE DE BOBIGNY"}, "geometry": {"type": "Point", "coordinates": [2.444098679824846, 48.906711868542196]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "066895c1556538e4efcad4dce02bbb224efcc59f", "fields": {"departement": "93", "stop_lat": 48.90653616722905, "code_postal": "93008", "stop_lon": 2.449483447525252, "coord": [48.90653616722905, 2.449483447525252], "stop_id": 5150489, "stop_desc": "PISTE GARE ROUTIERE - 93008", "stop_name": "BOBIGNY - PABLO PICASSO"}, "geometry": {"type": "Point", "coordinates": [2.449483447525252, 48.90653616722905]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e59faf1a5a507efafd68455bd361876834ab3722", "fields": {"departement": "93", "stop_lat": 48.90555453249922, "code_postal": "93008", "stop_lon": 2.469044655471792, "coord": [48.90555453249922, 2.469044655471792], "stop_id": 5150496, "stop_desc": "FACE 439 AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "PONT DE BONDY"}, "geometry": {"type": "Point", "coordinates": [2.469044655471792, 48.90555453249922]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9cfbc751e371b3d50651cbee78e5ec23c2f2232f", "fields": {"departement": "93", "stop_lat": 48.912236663887136, "code_postal": "93010", "stop_lon": 2.4805148428665595, "coord": [48.912236663887136, 2.4805148428665595], "stop_id": 5150500, "stop_desc": "AVENUE JEAN MOULIN - 93010", "stop_name": "ROUTE D'AULNAY - JEAN MOULIN"}, "geometry": {"type": "Point", "coordinates": [2.4805148428665595, 48.912236663887136]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a8410b4bc90caf08ff6d39d6be33e5b688997647", "fields": {"departement": "93", "stop_lat": 48.91147757762218, "code_postal": "93010", "stop_lon": 2.4839486506088377, "coord": [48.91147757762218, 2.4839486506088377], "stop_id": 5150503, "stop_desc": "FACE 6 AVENUE MARX DORMOY - 93010", "stop_name": "MAISON DE RETRAITE"}, "geometry": {"type": "Point", "coordinates": [2.4839486506088377, 48.91147757762218]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "89e9a9769c8b399d3502c29ab2d0618bdba422c3", "fields": {"departement": "93", "stop_lat": 48.913127869248015, "code_postal": "93010", "stop_lon": 2.486625780970679, "coord": [48.913127869248015, 2.486625780970679], "stop_id": 5150504, "stop_desc": "VOIE PROMENADE - 93010", "stop_name": "RONSARD - VILLON"}, "geometry": {"type": "Point", "coordinates": [2.486625780970679, 48.913127869248015]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "36beb988e1a7408bbae07f2714f75c65461a4cfd", "fields": {"departement": "93", "stop_lat": 48.9162860028772, "code_postal": "93057", "stop_lon": 2.497625358261496, "coord": [48.9162860028772, 2.497625358261496], "stop_id": 5150509, "stop_desc": "AVENUE DE ROME - 93057", "stop_name": "ROBERT SCHUMAN"}, "geometry": {"type": "Point", "coordinates": [2.497625358261496, 48.9162860028772]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "694d2463176527f827cc4984f5ac83c06351309f", "fields": {"departement": "93", "stop_lat": 48.9210236487363, "code_postal": "93046", "stop_lon": 2.538169418762132, "coord": [48.9210236487363, 2.538169418762132], "stop_id": 5150525, "stop_desc": "5 ALLEE JOSEPH NOIZE - 93046", "stop_name": "FRANCOIS VILLON"}, "geometry": {"type": "Point", "coordinates": [2.538169418762132, 48.9210236487363]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6192d6fcb94a2836e7d51530f88694484d673b9e", "fields": {"departement": "93", "stop_lat": 48.91825555686385, "code_postal": "93046", "stop_lon": 2.5382268639728545, "coord": [48.91825555686385, 2.5382268639728545], "stop_id": 5150527, "stop_desc": "10 AVENUE ALBERT THOMAS - 93046", "stop_name": "MAIRIE DE LIVRY-GARGAN"}, "geometry": {"type": "Point", "coordinates": [2.5382268639728545, 48.91825555686385]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d275a8752929c5d7af1533f9d9bbcd205547b634", "fields": {"departement": "93", "stop_lat": 48.91571716671948, "code_postal": "93057", "stop_lon": 2.499587134063073, "coord": [48.91571716671948, 2.499587134063073], "stop_id": 5150529, "stop_desc": "AVENUE DE ROME - 93057", "stop_name": "CIMETIERE DE LES_PAVILLONS-SOUS-BOIS"}, "geometry": {"type": "Point", "coordinates": [2.499587134063073, 48.91571716671948]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3c50f62b5dfba74da43faac941dca345e275a187", "fields": {"departement": "93", "stop_lat": 48.90870952071069, "code_postal": "93008", "stop_lon": 2.451083311558328, "coord": [48.90870952071069, 2.451083311558328], "stop_id": 5150534, "stop_desc": "AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "RENE CAMIER"}, "geometry": {"type": "Point", "coordinates": [2.451083311558328, 48.90870952071069]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4198f5b4eec2d35c4196476bd941854cce7643f1", "fields": {"departement": "93", "stop_lat": 48.92019055876804, "code_postal": "93046", "stop_lon": 2.5254975415618333, "coord": [48.92019055876804, 2.5254975415618333], "stop_id": 5150540, "stop_desc": "173 AVENUE VAUBAN - 93046", "stop_name": "JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.5254975415618333, 48.92019055876804]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9a2cc183a6c188428338dd695a9a9d4442529926", "fields": {"departement": "93", "stop_lat": 48.91269796035546, "code_postal": "93046", "stop_lon": 2.518025667968358, "coord": [48.91269796035546, 2.518025667968358], "stop_id": 5150542, "stop_desc": "17 AVENUE VAUBAN - 93046", "stop_name": "GUTENBERG"}, "geometry": {"type": "Point", "coordinates": [2.518025667968358, 48.91269796035546]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2bca036566f40d6521b72e052e503851b1e3925c", "fields": {"departement": "93", "stop_lat": 48.91571716671948, "code_postal": "93057", "stop_lon": 2.499587134063073, "coord": [48.91571716671948, 2.499587134063073], "stop_id": 5150546, "stop_desc": "AVENUE DE ROME - 93057", "stop_name": "CIMETIERE DE LES_PAVILLONS-SOUS-BOIS"}, "geometry": {"type": "Point", "coordinates": [2.499587134063073, 48.91571716671948]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a6cb53c1f7f6a2c94e3c593c506005cb963847f7", "fields": {"departement": "92", "stop_lat": 48.77725915879673, "code_postal": "92060", "stop_lon": 2.2458673802983076, "coord": [48.77725915879673, 2.2458673802983076], "stop_id": 5150705, "stop_desc": "AVENUE DE GALILEE - 92060", "stop_name": "GALILEE"}, "geometry": {"type": "Point", "coordinates": [2.2458673802983076, 48.77725915879673]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "375e955999f7469fe485144ab6ecc81275a4132f", "fields": {"departement": "94", "stop_lat": 48.809437524588766, "code_postal": "94017", "stop_lon": 2.54260911837556, "coord": [48.809437524588766, 2.54260911837556], "stop_id": 5150706, "stop_desc": "AVENUE DU 8 MAI 1945 - 94017", "stop_name": "COLOMBE-HARDELET"}, "geometry": {"type": "Point", "coordinates": [2.54260911837556, 48.809437524588766]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9c757be1e700f98517863e84d280b2ad5b1e448d", "fields": {"departement": "93", "stop_lat": 48.93211179274641, "code_postal": "93066", "stop_lon": 2.3439382635726806, "coord": [48.93211179274641, 2.3439382635726806], "stop_id": 5150710, "stop_desc": "RUE COIGNET - 93066", "stop_name": "GARE DE SAINT-DENIS RER"}, "geometry": {"type": "Point", "coordinates": [2.3439382635726806, 48.93211179274641]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1d425f57286e3f3952c232bf1986015904f95478", "fields": {"departement": "93", "stop_lat": 48.94210526817343, "code_postal": "93066", "stop_lon": 2.3414566018088534, "coord": [48.94210526817343, 2.3414566018088534], "stop_id": 5150714, "stop_desc": "65 RUE DE LA BRICHE - 93066", "stop_name": "LA BRICHE"}, "geometry": {"type": "Point", "coordinates": [2.3414566018088534, 48.94210526817343]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "badea9846a7889778dd3dcbd5995c7c0851a4dbd", "fields": {"departement": "93", "stop_lat": 48.94198844681463, "code_postal": "93066", "stop_lon": 2.341251953893731, "coord": [48.94198844681463, 2.341251953893731], "stop_id": 5150715, "stop_desc": "75 RUE DE LA BRICHE - 93066", "stop_name": "LA BRICHE"}, "geometry": {"type": "Point", "coordinates": [2.341251953893731, 48.94198844681463]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dcc4297f405b9fda818910f8a178eff67d2e012b", "fields": {"departement": "93", "stop_lat": 48.94778488446096, "code_postal": "93031", "stop_lon": 2.332342810947055, "coord": [48.94778488446096, 2.332342810947055], "stop_id": 5150716, "stop_desc": "30 TER BOULEVARD FOCH - 93031", "stop_name": "RUE DE L'UNION"}, "geometry": {"type": "Point", "coordinates": [2.332342810947055, 48.94778488446096]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "10175cb444f425c1993132158e114c5a49595503", "fields": {"departement": "93", "stop_lat": 48.94947425248548, "code_postal": "93031", "stop_lon": 2.329654677279837, "coord": [48.94947425248548, 2.329654677279837], "stop_id": 5150718, "stop_desc": "54 TER BOULEVARD FOCH - 93031", "stop_name": "LES MOBILES"}, "geometry": {"type": "Point", "coordinates": [2.329654677279837, 48.94947425248548]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a6f96e018b740c099d5bb201aae6ac86368f6e41", "fields": {"departement": "93", "stop_lat": 48.95497185231882, "code_postal": "93031", "stop_lon": 2.31274649544972, "coord": [48.95497185231882, 2.31274649544972], "stop_id": 5150728, "stop_desc": "AVENUE DE LATTRE DE TASSIGNY - 93031", "stop_name": "LACEPEDE"}, "geometry": {"type": "Point", "coordinates": [2.31274649544972, 48.95497185231882]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "de17da996dbcdd5efb5b90119286f7c7bb8fa4e5", "fields": {"departement": "93", "stop_lat": 48.965393060143406, "code_postal": "93031", "stop_lon": 2.2999253999120457, "coord": [48.965393060143406, 2.2999253999120457], "stop_id": 5150739, "stop_desc": "FACE 7 AVENUE GALLIENI - 93031", "stop_name": "LIMITE DES DEPARTEMENTS"}, "geometry": {"type": "Point", "coordinates": [2.2999253999120457, 48.965393060143406]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "067bcaed44d4ffbcb1109c8c82ab6aa20fe88dbf", "fields": {"departement": "91", "stop_lat": 48.67632718137082, "code_postal": "91589", "stop_lon": 2.3518727139567503, "coord": [48.67632718137082, 2.3518727139567503], "stop_id": 5150752, "stop_desc": "FACE 4 PLACE DE LA GARE - 91589", "stop_name": "SAVIGNY-SUR-ORGE RER"}, "geometry": {"type": "Point", "coordinates": [2.3518727139567503, 48.67632718137082]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b4555a96b46b9f0588ab20fb3106130043141172", "fields": {"departement": "95", "stop_lat": 48.976763931744124, "code_postal": "95268", "stop_lon": 2.390728520601148, "coord": [48.976763931744124, 2.390728520601148], "stop_id": 5150761, "stop_desc": "PISTE GARE ROUTIERE - 95268", "stop_name": "GARGES - SARCELLES RER"}, "geometry": {"type": "Point", "coordinates": [2.390728520601148, 48.976763931744124]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4f4f156309d918d8427e6380f7e5d935233eaf60", "fields": {"departement": "95", "stop_lat": 48.96284437769105, "code_postal": "95555", "stop_lon": 2.2853101637876088, "coord": [48.96284437769105, 2.2853101637876088], "stop_id": 5150768, "stop_desc": "RUE MASSENET - 95555", "stop_name": "SAINT-GRATIEN - RER"}, "geometry": {"type": "Point", "coordinates": [2.2853101637876088, 48.96284437769105]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "678b59d981a08338e126cb53d0b19096585d56b8", "fields": {"departement": "93", "stop_lat": 48.96121297521404, "code_postal": "93031", "stop_lon": 2.2959842493910503, "coord": [48.96121297521404, 2.2959842493910503], "stop_id": 5150773, "stop_desc": "95-97 AVENUE JOFFRE - 93031", "stop_name": "CYGNE D'ENGHIEN - JOFFRE"}, "geometry": {"type": "Point", "coordinates": [2.2959842493910503, 48.96121297521404]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4160e9703936d011d3a2ba523a20b3b21ee81b63", "fields": {"departement": "93", "stop_lat": 48.95459321635721, "code_postal": "93031", "stop_lon": 2.3074930089657295, "coord": [48.95459321635721, 2.3074930089657295], "stop_id": 5150777, "stop_desc": "AVENUE DU 18 JUIN 1940 - 93031", "stop_name": "GILBERT BONNEMAISON"}, "geometry": {"type": "Point", "coordinates": [2.3074930089657295, 48.95459321635721]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5153541ea70714e45d8c95ea1999df8f153b8258", "fields": {"departement": "93", "stop_lat": 48.9555365638021, "code_postal": "93031", "stop_lon": 2.306482652652806, "coord": [48.9555365638021, 2.306482652652806], "stop_id": 5150778, "stop_desc": "FACE 119 RUE DE PARIS - 93031", "stop_name": "GILBERT BONNEMAISON"}, "geometry": {"type": "Point", "coordinates": [2.306482652652806, 48.9555365638021]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "601933cb60d5b19db870425788802250dcbc60f1", "fields": {"departement": "92", "stop_lat": 48.93697316078468, "code_postal": "92078", "stop_lon": 2.324254580584753, "coord": [48.93697316078468, 2.324254580584753], "stop_id": 5150790, "stop_desc": "AVENUE DU MARECHAL LECLERC - 92078", "stop_name": "MARECHAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.324254580584753, 48.93697316078468]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a79dd244841fb0705d69af7af2b38f330deab8a8", "fields": {"departement": "92", "stop_lat": 48.94474458594041, "code_postal": "92036", "stop_lon": 2.3110732122311077, "coord": [48.94474458594041, 2.3110732122311077], "stop_id": 5150804, "stop_desc": "55 BOULEVARD DEQUEVAUVILLIERS - 92036", "stop_name": "ZI DU VAL DE SEINE"}, "geometry": {"type": "Point", "coordinates": [2.3110732122311077, 48.94474458594041]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "42ead14916cdf5b61920673e8c368c23013f22e0", "fields": {"departement": "95", "stop_lat": 48.983806869975005, "code_postal": "95252", "stop_lon": 2.2275343971398542, "coord": [48.983806869975005, 2.2275343971398542], "stop_id": 5150809, "stop_desc": "109 RUE DU GENERAL LECLERC - 95252", "stop_name": "PLACE CHARLES DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.2275343971398542, 48.983806869975005]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0c1861ab7e4f191970aa9ea6919cbd34ec9bae5d", "fields": {"departement": "95", "stop_lat": 48.980578129087725, "code_postal": "95252", "stop_lon": 2.2347362441907235, "coord": [48.980578129087725, 2.2347362441907235], "stop_id": 5150812, "stop_desc": "4 RUE DE PARIS - 95252", "stop_name": "MAISON BLEUE"}, "geometry": {"type": "Point", "coordinates": [2.2347362441907235, 48.980578129087725]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b2ac67eb5c5718f43baf788f09ac1e08279f77f9", "fields": {"departement": "95", "stop_lat": 48.97033725008463, "code_postal": "95582", "stop_lon": 2.264363480206401, "coord": [48.97033725008463, 2.264363480206401], "stop_id": 5150821, "stop_desc": "14 RUE DU MARECHAL FOCH - 95582", "stop_name": "GARE DE SANNOIS - MARECHAL FOCH"}, "geometry": {"type": "Point", "coordinates": [2.264363480206401, 48.97033725008463]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "20a929a33706eabdb6655a9e091828bf326d931d", "fields": {"departement": "95", "stop_lat": 48.96762726366958, "code_postal": "95582", "stop_lon": 2.2711783113453925, "coord": [48.96762726366958, 2.2711783113453925], "stop_id": 5150822, "stop_desc": "78 TER BOULEVARD MAURICE BERTEAUX - 95582", "stop_name": "LEON PROTAIS"}, "geometry": {"type": "Point", "coordinates": [2.2711783113453925, 48.96762726366958]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5cfa4c2e27f8125134d7a34aeb43474b22271e6f", "fields": {"departement": "95", "stop_lat": 48.96527036654493, "code_postal": "95555", "stop_lon": 2.284393265665219, "coord": [48.96527036654493, 2.284393265665219], "stop_id": 5150827, "stop_desc": "11 BOULEVARD DU MARECHAL FOCH - 95555", "stop_name": "BERTHIE ALBRECHT"}, "geometry": {"type": "Point", "coordinates": [2.284393265665219, 48.96527036654493]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a29a3f501e206bf4c2fbf8a954443146c2fa90d1", "fields": {"departement": "93", "stop_lat": 48.95823127515412, "code_postal": "93031", "stop_lon": 2.3018138297170445, "coord": [48.95823127515412, 2.3018138297170445], "stop_id": 5150833, "stop_desc": "42 AVENUE JOFFRE - 93031", "stop_name": "JOFFRE CINEMA"}, "geometry": {"type": "Point", "coordinates": [2.3018138297170445, 48.95823127515412]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c9924c63f940c1802b1d4ff8708725ba80c050e9", "fields": {"departement": "93", "stop_lat": 48.95020746179774, "code_postal": "93039", "stop_lon": 2.3065676888040505, "coord": [48.95020746179774, 2.3065676888040505], "stop_id": 5150836, "stop_desc": "AVENUE DU PONT D'EPINAY - 93039", "stop_name": "PONT D'EPINAY"}, "geometry": {"type": "Point", "coordinates": [2.3065676888040505, 48.95020746179774]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "df0d14ba3b3cf1544d59cc410e34b39a625f0202", "fields": {"departement": "92", "stop_lat": 48.94342440679763, "code_postal": "92078", "stop_lon": 2.315439620989305, "coord": [48.94342440679763, 2.315439620989305], "stop_id": 5150841, "stop_desc": "BOULEVARD CHARLES DE GAULLE - 92078", "stop_name": "COMMANDANT D'ESTIENNE D'ORVES"}, "geometry": {"type": "Point", "coordinates": [2.315439620989305, 48.94342440679763]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dcb46d8c93ccdde72d2fd4da7efa2f7dce1db84b", "fields": {"departement": "92", "stop_lat": 48.933594381715906, "code_postal": "92078", "stop_lon": 2.327106262099634, "coord": [48.933594381715906, 2.327106262099634], "stop_id": 5150852, "stop_desc": "36 RUE DU HAUT DE LA NOUE - 92078", "stop_name": "ACACIAS"}, "geometry": {"type": "Point", "coordinates": [2.327106262099634, 48.933594381715906]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4f6e1c8f13d91faef3d4e46f2836ba76ae7a6dfb", "fields": {"departement": "92", "stop_lat": 48.930970236654886, "code_postal": "92078", "stop_lon": 2.3273659298403806, "coord": [48.930970236654886, 2.3273659298403806], "stop_id": 5150854, "stop_desc": "RUE DU HAUT DE LA NOUE - 92078", "stop_name": "AMPERE"}, "geometry": {"type": "Point", "coordinates": [2.3273659298403806, 48.930970236654886]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d02b58bbf7bcb9b3125d3ce4a3c4c67f0b31d543", "fields": {"departement": "95", "stop_lat": 48.96920897201974, "code_postal": "95197", "stop_lon": 2.3295835303359436, "coord": [48.96920897201974, 2.3295835303359436], "stop_id": 5150870, "stop_desc": "RUE DE LA FONTAINE DU GUE - 95197", "stop_name": "ZONE ARTISANALE DU MOUTIER"}, "geometry": {"type": "Point", "coordinates": [2.3295835303359436, 48.96920897201974]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "43b042f3fcb2189b6824105daa6152e1072d0795", "fields": {"departement": "95", "stop_lat": 48.965173977580136, "code_postal": "95197", "stop_lon": 2.3294749390350793, "coord": [48.965173977580136, 2.3294749390350793], "stop_id": 5150873, "stop_desc": "RUE DU CAMP - 95197", "stop_name": "LA GALATHEE"}, "geometry": {"type": "Point", "coordinates": [2.3294749390350793, 48.965173977580136]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c84c08472f6d386c53e09c439d08c4397d43a89c", "fields": {"departement": "95", "stop_lat": 48.965272842741825, "code_postal": "95197", "stop_lon": 2.3296660059786505, "coord": [48.965272842741825, 2.3296660059786505], "stop_id": 5150874, "stop_desc": "RUE DU CAMP - 95197", "stop_name": "LA GALATHEE"}, "geometry": {"type": "Point", "coordinates": [2.3296660059786505, 48.965272842741825]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b50a6ed67ca159bb5d31b1865ebe8f2640fa3def", "fields": {"departement": "95", "stop_lat": 48.963727087634005, "code_postal": "95197", "stop_lon": 2.328847335065578, "coord": [48.963727087634005, 2.328847335065578], "stop_id": 5150875, "stop_desc": "RUE ABEL FAUVEAU - 95197", "stop_name": "LOUIS BRAILLE"}, "geometry": {"type": "Point", "coordinates": [2.328847335065578, 48.963727087634005]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fe01b0ba7678dadf30577519a9e4efb7b14cb86d", "fields": {"departement": "95", "stop_lat": 48.96361030571199, "code_postal": "95197", "stop_lon": 2.3295024706092122, "coord": [48.96361030571199, 2.3295024706092122], "stop_id": 5150876, "stop_desc": "RUE ABEL FAUVEAU - 95197", "stop_name": "LOUIS BRAILLE"}, "geometry": {"type": "Point", "coordinates": [2.3295024706092122, 48.96361030571199]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b9d43ebe8f423207e8b1717deca548a93adf734e", "fields": {"departement": "95", "stop_lat": 48.963500941155644, "code_postal": "95197", "stop_lon": 2.316659499502722, "coord": [48.963500941155644, 2.316659499502722], "stop_id": 5150882, "stop_desc": "43 AVENUE DU MARECHAL FOCH - 95197", "stop_name": "PROGRES"}, "geometry": {"type": "Point", "coordinates": [2.316659499502722, 48.963500941155644]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "39a4f90019d59ac172be114179920f7b8173432c", "fields": {"departement": "95", "stop_lat": 48.96325819682304, "code_postal": "95197", "stop_lon": 2.3160590766448976, "coord": [48.96325819682304, 2.3160590766448976], "stop_id": 5150883, "stop_desc": "58 AVENUE DU MARECHAL FOCH - 95197", "stop_name": "PROGRES"}, "geometry": {"type": "Point", "coordinates": [2.3160590766448976, 48.96325819682304]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2e15ab073211f0b9a732d7092b8a891e37d26caf", "fields": {"departement": "95", "stop_lat": 48.97229883037137, "code_postal": "95428", "stop_lon": 2.3166832989026287, "coord": [48.97229883037137, 2.3166832989026287], "stop_id": 5150888, "stop_desc": "54 BOULEVARD DE MONTMORENCY - 95428", "stop_name": "EUGENE LAMARRE"}, "geometry": {"type": "Point", "coordinates": [2.3166832989026287, 48.97229883037137]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c7369b7ae6fb8119763e5838cdafa0bb93db0236", "fields": {"departement": "95", "stop_lat": 48.975804827233716, "code_postal": "95197", "stop_lon": 2.32597856206853, "coord": [48.975804827233716, 2.32597856206853], "stop_id": 5150895, "stop_desc": "FACE 14 RUE CHARLES DE GAULLE - 95197", "stop_name": "EGLISE DE DEUIL-LA-BARRE"}, "geometry": {"type": "Point", "coordinates": [2.32597856206853, 48.975804827233716]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0e4872f87559df28bae39cbe2aee1d6b11e71690", "fields": {"departement": "95", "stop_lat": 48.97563448352471, "code_postal": "95197", "stop_lon": 2.3316439441869936, "coord": [48.97563448352471, 2.3316439441869936], "stop_id": 5150897, "stop_desc": "105 RUE HAUTE - 95197", "stop_name": "RUE HAUTE"}, "geometry": {"type": "Point", "coordinates": [2.3316439441869936, 48.97563448352471]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b1e3d4e8bc06e6b9c4c03bf1f5a2ed626272da4c", "fields": {"departement": "95", "stop_lat": 48.97426827627478, "code_postal": "95427", "stop_lon": 2.346824085752981, "coord": [48.97426827627478, 2.346824085752981], "stop_id": 5150899, "stop_desc": "4 AVENUE DU GENERAL DE GAULLE - 95427", "stop_name": "MAIRIE DE MONTMAGNY"}, "geometry": {"type": "Point", "coordinates": [2.346824085752981, 48.97426827627478]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c175dfa2f9acd98589f69276ab10e6d3e908d1b8", "fields": {"departement": "95", "stop_lat": 48.97216467089068, "code_postal": "95427", "stop_lon": 2.3537035579944514, "coord": [48.97216467089068, 2.3537035579944514], "stop_id": 5150903, "stop_desc": "FACE 101 RUE DE PIERREFITTE - 95427", "stop_name": "SUZANNE VALADON"}, "geometry": {"type": "Point", "coordinates": [2.3537035579944514, 48.97216467089068]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "338df89f15310ad37cb1f559cd5642d05a2acc37", "fields": {"departement": "95", "stop_lat": 48.95908010385937, "code_postal": "95197", "stop_lon": 2.320468790474309, "coord": [48.95908010385937, 2.320468790474309], "stop_id": 5150917, "stop_desc": "RUE DES PRESLES - 95197", "stop_name": "SAINT-EXUPERY"}, "geometry": {"type": "Point", "coordinates": [2.320468790474309, 48.95908010385937]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "033c850c83172fadf68826da0874ca6da825671e", "fields": {"departement": "95", "stop_lat": 48.97106926058028, "code_postal": "95197", "stop_lon": 2.330675272901551, "coord": [48.97106926058028, 2.330675272901551], "stop_id": 5150920, "stop_desc": "PLACE JEAN MOULIN - 95197", "stop_name": "PLACE JEAN MOULIN"}, "geometry": {"type": "Point", "coordinates": [2.330675272901551, 48.97106926058028]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "63c7a8c26ef16c9a4e76c2a8d04dfe08f456047b", "fields": {"departement": "92", "stop_lat": 48.89922884988634, "code_postal": "92026", "stop_lon": 2.2575115366351146, "coord": [48.89922884988634, 2.2575115366351146], "stop_id": 5151252, "stop_desc": "FACE 4 BOULEVARD ARISTIDE BRIAND - 92026", "stop_name": "STADE DE COURBEVOIE"}, "geometry": {"type": "Point", "coordinates": [2.2575115366351146, 48.89922884988634]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1729fde93cb0b783ec22c159153b5b20396fbe0c", "fields": {"departement": "92", "stop_lat": 48.89192062226174, "code_postal": "92026", "stop_lon": 2.2429120742176076, "coord": [48.89192062226174, 2.2429120742176076], "stop_id": 5151256, "stop_desc": "AVENUE ALBERT GLEIZES - 92026", "stop_name": "GAMBETTA"}, "geometry": {"type": "Point", "coordinates": [2.2429120742176076, 48.89192062226174]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e3ab7bcfc0f0da66d2b5dc78834c235204fb2b2d", "fields": {"departement": "93", "stop_lat": 48.96535124369496, "code_postal": "93059", "stop_lon": 2.362736845979033, "coord": [48.96535124369496, 2.362736845979033], "stop_id": 5151273, "stop_desc": "33 BOULEVARD JEAN MERMOZ - 93059", "stop_name": "ALCIDE D'ORBIGNY"}, "geometry": {"type": "Point", "coordinates": [2.362736845979033, 48.96535124369496]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "77c07fd9e83c65cf454594171830c2fcfcce4fa5", "fields": {"departement": "93", "stop_lat": 48.963186040531, "code_postal": "93059", "stop_lon": 2.3598833163763553, "coord": [48.963186040531, 2.3598833163763553], "stop_id": 5151275, "stop_desc": "4 BOULEVARD JEAN MERMOZ - 93059", "stop_name": "MAIRIE DE PIERREFITTE"}, "geometry": {"type": "Point", "coordinates": [2.3598833163763553, 48.963186040531]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "695fd5cdab0043f5cd6178cb07a74f0a1cdf540f", "fields": {"departement": "93", "stop_lat": 48.96415820065423, "code_postal": "93079", "stop_lon": 2.3486238059153997, "coord": [48.96415820065423, 2.3486238059153997], "stop_id": 5151278, "stop_desc": "37 AVENUE JEAN JAURES - 93079", "stop_name": "CHEMIN DES ROSES"}, "geometry": {"type": "Point", "coordinates": [2.3486238059153997, 48.96415820065423]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9ad5d570480896bd1a361c01270c150dddb55df9", "fields": {"departement": "93", "stop_lat": 48.956690805608744, "code_postal": "93079", "stop_lon": 2.3395336383450567, "coord": [48.956690805608744, 2.3395336383450567], "stop_id": 5151287, "stop_desc": "PISTE GARE ROUTIERE - 93079", "stop_name": "UNIVERSITE - PARIS 13"}, "geometry": {"type": "Point", "coordinates": [2.3395336383450567, 48.956690805608744]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6192d1508d6c5c67a89758fb783706362808dcf7", "fields": {"departement": "93", "stop_lat": 48.953659451711125, "code_postal": "93031", "stop_lon": 2.311136931439195, "coord": [48.953659451711125, 2.311136931439195], "stop_id": 5151307, "stop_desc": "FACE 32 RUE DE PARIS - 93031", "stop_name": "PLACE RENE CLAIR"}, "geometry": {"type": "Point", "coordinates": [2.311136931439195, 48.953659451711125]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b23f862128b8577505f0cf6905a07601a8d5bdb2", "fields": {"departement": "93", "stop_lat": 48.95542880742772, "code_postal": "93031", "stop_lon": 2.3068102232470666, "coord": [48.95542880742772, 2.3068102232470666], "stop_id": 5151308, "stop_desc": "FACE 115 RUE DE PARIS - 93031", "stop_name": "GILBERT BONNEMAISON"}, "geometry": {"type": "Point", "coordinates": [2.3068102232470666, 48.95542880742772]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "429472f6dcbd33393b4430e1a095aa740611e7cc", "fields": {"departement": "95", "stop_lat": 48.955207172634665, "code_postal": "95018", "stop_lon": 2.2887975704347694, "coord": [48.955207172634665, 2.2887975704347694], "stop_id": 5151316, "stop_desc": "311 RUE D'EPINAY - 95018", "stop_name": "ILE DE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.2887975704347694, 48.955207172634665]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "58105b2969ea6ea12b9fb6b1dad8aa5334a78e52", "fields": {"departement": "95", "stop_lat": 48.95069784129726, "code_postal": "95018", "stop_lon": 2.2738879585724305, "coord": [48.95069784129726, 2.2738879585724305], "stop_id": 5151324, "stop_desc": "FACE 178 RUE D'EPINAY - 95018", "stop_name": "GASTON MONMOUSSEAU"}, "geometry": {"type": "Point", "coordinates": [2.2738879585724305, 48.95069784129726]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dda2d2752cf025fcb73c376d40cc00a96b827104", "fields": {"departement": "95", "stop_lat": 48.949914127794116, "code_postal": "95018", "stop_lon": 2.2704641093667677, "coord": [48.949914127794116, 2.2704641093667677], "stop_id": 5151326, "stop_desc": "127 RUE D'EPINAY - 95018", "stop_name": "NOBLET"}, "geometry": {"type": "Point", "coordinates": [2.2704641093667677, 48.949914127794116]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "55b439155b52962202064c63777181afd65c74d9", "fields": {"departement": "95", "stop_lat": 48.94895033106815, "code_postal": "95018", "stop_lon": 2.2666176314829976, "coord": [48.94895033106815, 2.2666176314829976], "stop_id": 5151331, "stop_desc": "72 RUE D'EPINAY - 95018", "stop_name": "JULES FERRY"}, "geometry": {"type": "Point", "coordinates": [2.2666176314829976, 48.94895033106815]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b909da664841299786d7a1529a1f54c879e9e444", "fields": {"departement": "95", "stop_lat": 48.94904271688091, "code_postal": "95018", "stop_lon": 2.2564251181242088, "coord": [48.94904271688091, 2.2564251181242088], "stop_id": 5151334, "stop_desc": "11 RUE DU DOCTEUR LERAY - 95018", "stop_name": "ARISTIDE BRIAND"}, "geometry": {"type": "Point", "coordinates": [2.2564251181242088, 48.94904271688091]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "af1cf6269aea61cde64ffee9abd9a836c0b7cc5f", "fields": {"departement": "93", "stop_lat": 48.96518044221685, "code_postal": "93059", "stop_lon": 2.362996086733312, "coord": [48.96518044221685, 2.362996086733312], "stop_id": 5151341, "stop_desc": "38 BOULEVARD JEAN MERMOZ - 93059", "stop_name": "ALCIDE D'ORBIGNY"}, "geometry": {"type": "Point", "coordinates": [2.362996086733312, 48.96518044221685]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "59de41b0d24c4aab406123b11da6203ef6ed0be3", "fields": {"departement": "92", "stop_lat": 48.77966832236158, "code_postal": "92060", "stop_lon": 2.27412380591201, "coord": [48.77966832236158, 2.27412380591201], "stop_id": 5151448, "stop_desc": "AVENUE DE LA REPUBLIQUE - 92060", "stop_name": "ROBINSON"}, "geometry": {"type": "Point", "coordinates": [2.27412380591201, 48.77966832236158]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "976dd7d2d322eb6cdad8a38c4e8ec36231e6e397", "fields": {"departement": "92", "stop_lat": 48.782191967671956, "code_postal": "92060", "stop_lon": 2.2705029809301642, "coord": [48.782191967671956, 2.2705029809301642], "stop_id": 5151449, "stop_desc": "27 AVENUE DE LA REPUBLIQUE - 92060", "stop_name": "CITE BASSE"}, "geometry": {"type": "Point", "coordinates": [2.2705029809301642, 48.782191967671956]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5d88aa3fb64651a985074823e9b958a46d829ce6", "fields": {"departement": "92", "stop_lat": 48.77963362439875, "code_postal": "92060", "stop_lon": 2.2609319216029258, "coord": [48.77963362439875, 2.2609319216029258], "stop_id": 5151455, "stop_desc": "AVENUE CHARLES DE GAULLE - 92060", "stop_name": "RESISTANCE"}, "geometry": {"type": "Point", "coordinates": [2.2609319216029258, 48.77963362439875]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dfd965a99f6e2777deb30a4f9aab77455f10f0a6", "fields": {"departement": "92", "stop_lat": 48.78172665679126, "code_postal": "92060", "stop_lon": 2.2591335837638575, "coord": [48.78172665679126, 2.2591335837638575], "stop_id": 5151457, "stop_desc": "9 RUE PIERRE D'ARTAGNAN - 92060", "stop_name": "DANIEL DE FOE"}, "geometry": {"type": "Point", "coordinates": [2.2591335837638575, 48.78172665679126]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f6a289b83dd33d81f1521d5b15db195b004d0f6b", "fields": {"departement": "92", "stop_lat": 48.78513289467901, "code_postal": "92060", "stop_lon": 2.258829230564299, "coord": [48.78513289467901, 2.258829230564299], "stop_id": 5151459, "stop_desc": "42 RUE PAUL RIVET - 92060", "stop_name": "MOULIN DE LA TOUR"}, "geometry": {"type": "Point", "coordinates": [2.258829230564299, 48.78513289467901]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "afd0d7a0b9cf366f362da32edd949782fd792ea5", "fields": {"departement": "92", "stop_lat": 48.785249576251935, "code_postal": "92060", "stop_lon": 2.25858422925446, "coord": [48.785249576251935, 2.25858422925446], "stop_id": 5151460, "stop_desc": "FACE 42 RUE PAUL RIVET - 92060", "stop_name": "MOULIN DE LA TOUR"}, "geometry": {"type": "Point", "coordinates": [2.25858422925446, 48.785249576251935]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "04bd40aed0fe6076265038ab4bf4731a30952a89", "fields": {"departement": "92", "stop_lat": 48.78971897350695, "code_postal": "92023", "stop_lon": 2.262290959769518, "coord": [48.78971897350695, 2.262290959769518], "stop_id": 5151463, "stop_desc": "125 AVENUE DU GENERAL DE GAULLE - 92023", "stop_name": "SOLEIL LEVANT"}, "geometry": {"type": "Point", "coordinates": [2.262290959769518, 48.78971897350695]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0d8cabc24f721608179f5e458b84cdbb1718c740", "fields": {"departement": "92", "stop_lat": 48.800578507391165, "code_postal": "92020", "stop_lon": 2.2828194500804875, "coord": [48.800578507391165, 2.2828194500804875], "stop_id": 5151466, "stop_desc": "FACE 73 AVENUE DE VERDUN - 92020", "stop_name": "GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.2828194500804875, 48.800578507391165]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f2299bc4273305bbcaf1b61d1ddd71345faa5941", "fields": {"departement": "92", "stop_lat": 48.80183147515598, "code_postal": "92023", "stop_lon": 2.2722056615724435, "coord": [48.80183147515598, 2.2722056615724435], "stop_id": 5151469, "stop_desc": "43 RUE DE CHATILLON - 92023", "stop_name": "PIERRE CORBY"}, "geometry": {"type": "Point", "coordinates": [2.2722056615724435, 48.80183147515598]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e2791685f03c9e506af88ae14b36be2ebc8ab578", "fields": {"departement": "92", "stop_lat": 48.812824244237106, "code_postal": "92023", "stop_lon": 2.27349831431904, "coord": [48.812824244237106, 2.27349831431904], "stop_id": 5151479, "stop_desc": "8 BOULEVARD DES FRERES VIGOUROUX - 92023", "stop_name": "HEBERT - GARE"}, "geometry": {"type": "Point", "coordinates": [2.27349831431904, 48.812824244237106]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7dab45bf46badba47363a6993f1a18a319ad4c11", "fields": {"departement": "92", "stop_lat": 48.871637489328236, "code_postal": "92063", "stop_lon": 2.1835344210818635, "coord": [48.871637489328236, 2.1835344210818635], "stop_id": 4024231, "stop_desc": "17 BOULEVARD RICHELIEU - 92063", "stop_name": "ZURICH"}, "geometry": {"type": "Point", "coordinates": [2.1835344210818635, 48.871637489328236]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "87136f16056ca358f025b03e8d3b22a6b3f32b7b", "fields": {"departement": "92", "stop_lat": 48.88451764143241, "code_postal": "92063", "stop_lon": 2.1777318079494505, "coord": [48.88451764143241, 2.1777318079494505], "stop_id": 4024240, "stop_desc": "31 AVENUE VICTOR HUGO - 92063", "stop_name": "BAUDIN"}, "geometry": {"type": "Point", "coordinates": [2.1777318079494505, 48.88451764143241]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e4bbe27051ab64a7e450ca9160d5b414f729583c", "fields": {"departement": "92", "stop_lat": 48.88726872385087, "code_postal": "92063", "stop_lon": 2.1718632201600414, "coord": [48.88726872385087, 2.1718632201600414], "stop_id": 4024244, "stop_desc": "GARE ROUTIERE - 92063", "stop_name": "RUEIL-MALMAISON RER"}, "geometry": {"type": "Point", "coordinates": [2.1718632201600414, 48.88726872385087]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ca9dfb47a220fe4a50ed3350a6e5b344f78f3806", "fields": {"departement": "92", "stop_lat": 48.88033371255349, "code_postal": "92063", "stop_lon": 2.180851493712825, "coord": [48.88033371255349, 2.180851493712825], "stop_id": 4024245, "stop_desc": "1-3 RUE D'ESTIENNE D'ORVES - 92063", "stop_name": "RUEIL - VILLE"}, "geometry": {"type": "Point", "coordinates": [2.180851493712825, 48.88033371255349]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "22d8faef0200d97243a36cb98134657ce7680727", "fields": {"departement": "92", "stop_lat": 48.87079400619145, "code_postal": "92073", "stop_lon": 2.2249806690114537, "coord": [48.87079400619145, 2.2249806690114537], "stop_id": 4024248, "stop_desc": "21 RUE DU MONT VALERIEN - 92073", "stop_name": "MAIRIE DE SURESNES"}, "geometry": {"type": "Point", "coordinates": [2.2249806690114537, 48.87079400619145]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "181370de3ebe891c6babac7714f02fd022afba5f", "fields": {"departement": "92", "stop_lat": 48.87752468490553, "code_postal": "92062", "stop_lon": 2.234013498122189, "coord": [48.87752468490553, 2.234013498122189], "stop_id": 4024253, "stop_desc": "106 RUE DE VERDUN - 92062", "stop_name": "DE PRESSENSE"}, "geometry": {"type": "Point", "coordinates": [2.234013498122189, 48.87752468490553]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5bd9b9d92512e1168ceb05c5f9392305c5b71956", "fields": {"departement": "92", "stop_lat": 48.888752123592425, "code_postal": "92062", "stop_lon": 2.2367849896114063, "coord": [48.888752123592425, 2.2367849896114063], "stop_id": 4024258, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 92062", "stop_name": "LES BOUVETS"}, "geometry": {"type": "Point", "coordinates": [2.2367849896114063, 48.888752123592425]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "624233b73d9c306cca52975093354b87a0513208", "fields": {"departement": "92", "stop_lat": 48.89140436926403, "code_postal": "92062", "stop_lon": 2.238006481430029, "coord": [48.89140436926403, 2.238006481430029], "stop_id": 4024259, "stop_desc": "PISTE GARE ROUTIERE - 92062", "stop_name": "LA DEFENSE-METRO-RER-TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.238006481430029, 48.89140436926403]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7078869c900767a514f8efff97b1194d9d8cedbd", "fields": {"departement": "92", "stop_lat": 48.86274296772583, "code_postal": "92073", "stop_lon": 2.208815484664103, "coord": [48.86274296772583, 2.208815484664103], "stop_id": 4024274, "stop_desc": "7 AVENUE EDOUARD VAILLANT - 92073", "stop_name": "PLACE JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.208815484664103, 48.86274296772583]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2ac167e318e325389102ceacd5f4cf46f5aa5f64", "fields": {"departement": "92", "stop_lat": 48.86922348937091, "code_postal": "92063", "stop_lon": 2.1863480066905185, "coord": [48.86922348937091, 2.1863480066905185], "stop_id": 4024279, "stop_desc": "77 BOULEVARD RICHELIEU - 92063", "stop_name": "PLACE BESCHE"}, "geometry": {"type": "Point", "coordinates": [2.1863480066905185, 48.86922348937091]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cac75e584573d069e3df3d2cab9982d64e51889d", "fields": {"departement": "92", "stop_lat": 48.87793600364932, "code_postal": "92063", "stop_lon": 2.182303054994718, "coord": [48.87793600364932, 2.182303054994718], "stop_id": 4024283, "stop_desc": "27 RUE MAUREPAS - 92063", "stop_name": "MAIRIE DE RUEIL"}, "geometry": {"type": "Point", "coordinates": [2.182303054994718, 48.87793600364932]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e2cb2f0b26987d988357bce16b2f1f94c4fa368e", "fields": {"departement": "92", "stop_lat": 48.880673665885105, "code_postal": "92063", "stop_lon": 2.1796649666871524, "coord": [48.880673665885105, 2.1796649666871524], "stop_id": 4024284, "stop_desc": "6 AVENUE ALBERT 1ER - 92063", "stop_name": "ALBERT 1ER - RUEIL - VILLE"}, "geometry": {"type": "Point", "coordinates": [2.1796649666871524, 48.880673665885105]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9a9d743d26cd57afcf5df25e39008ff2593abdb8", "fields": {"departement": "92", "stop_lat": 48.88679588428236, "code_postal": "92062", "stop_lon": 2.252147587443668, "coord": [48.88679588428236, 2.252147587443668], "stop_id": 4024291, "stop_desc": "PISTE SOUS LE PONT DE NEUILLY - 92062", "stop_name": "RD 7 - PONT DE NEUILLY"}, "geometry": {"type": "Point", "coordinates": [2.252147587443668, 48.88679588428236]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "37b32aaf65e88f8a1840f02981fdfceb210ff86d", "fields": {"departement": "92", "stop_lat": 48.880094491854784, "code_postal": "92062", "stop_lon": 2.244255345702841, "coord": [48.880094491854784, 2.244255345702841], "stop_id": 4024297, "stop_desc": "30 QUAI DE DION BOUTON - 92062", "stop_name": "GODEFROY"}, "geometry": {"type": "Point", "coordinates": [2.244255345702841, 48.880094491854784]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cea9f61b2ed83c4fe976d503c47c426770da3aee", "fields": {"departement": "92", "stop_lat": 48.880404351725026, "code_postal": "92062", "stop_lon": 2.238422705718465, "coord": [48.880404351725026, 2.238422705718465], "stop_id": 4024301, "stop_desc": "45 BOULEVARD RICHARD WALLACE - 92062", "stop_name": "WALLACE - JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.238422705718465, 48.880404351725026]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "64e14d2903e876a1ef1089a0d60b5e5894c67c97", "fields": {"departement": "92", "stop_lat": 48.88227972996548, "code_postal": "92062", "stop_lon": 2.2349170275336028, "coord": [48.88227972996548, 2.2349170275336028], "stop_id": 4024303, "stop_desc": "92 BOULEVARD RICHARD WALLACE - 92062", "stop_name": "GARE DE PUTEAUX"}, "geometry": {"type": "Point", "coordinates": [2.2349170275336028, 48.88227972996548]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0e19cd6ba6e6ecca26816529050617582e58fb84", "fields": {"departement": "92", "stop_lat": 48.88695449882405, "code_postal": "92050", "stop_lon": 2.20855106925563, "coord": [48.88695449882405, 2.20855106925563], "stop_id": 4024316, "stop_desc": "FACE 84 RUE SADI CARNOT - 92050", "stop_name": "CLEMENCEAU - SADI CARNOT"}, "geometry": {"type": "Point", "coordinates": [2.20855106925563, 48.88695449882405]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b00b1c2f7a0b3303a94ba883f94b00c2634bece1", "fields": {"departement": "92", "stop_lat": 48.892811521137524, "code_postal": "92050", "stop_lon": 2.1982052599527306, "coord": [48.892811521137524, 2.1982052599527306], "stop_id": 4024323, "stop_desc": "23 RUE DE STALINGRAD - 92050", "stop_name": "RUE DES ANCIENNES MAIRIES"}, "geometry": {"type": "Point", "coordinates": [2.1982052599527306, 48.892811521137524]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a5dd121a4bb4456170a860a2d109a74678f3e4e2", "fields": {"departement": "92", "stop_lat": 48.89409423242805, "code_postal": "92050", "stop_lon": 2.1961164321360105, "coord": [48.89409423242805, 2.1961164321360105], "stop_id": 4024324, "stop_desc": "FACE 43 RUE DE STALINGRAD - 92050", "stop_name": "MAURICE THOREZ"}, "geometry": {"type": "Point", "coordinates": [2.1961164321360105, 48.89409423242805]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b42aed960297729804cef59f2985f8f4f9e89013", "fields": {"departement": "92", "stop_lat": 48.90185677498932, "code_postal": "92050", "stop_lon": 2.194145910328192, "coord": [48.90185677498932, 2.194145910328192], "stop_id": 4024332, "stop_desc": "FACE 88 BOULEVARD DE LA SEINE - 92050", "stop_name": "LANNES"}, "geometry": {"type": "Point", "coordinates": [2.194145910328192, 48.90185677498932]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a070e85c96fa9f1a5f9421ca3a38ed52147dc42b", "fields": {"departement": "92", "stop_lat": 48.886589576197764, "code_postal": "92062", "stop_lon": 2.252706673716969, "coord": [48.886589576197764, 2.252706673716969], "stop_id": 4024343, "stop_desc": "VOIE D'ACCES AU PONT DE NEUILLY - 92062", "stop_name": "PONT DE NEUILLY - RIVE GAUCHE"}, "geometry": {"type": "Point", "coordinates": [2.252706673716969, 48.886589576197764]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "07169ede80e17f0ba415ec2c35fa5957ab579df7", "fields": {"departement": "92", "stop_lat": 48.88947494098112, "code_postal": "92062", "stop_lon": 2.2308550817689756, "coord": [48.88947494098112, 2.2308550817689756], "stop_id": 4024350, "stop_desc": "18 R MARCELLIN BERTHELOT - 92062", "stop_name": "BERTHELOT - CARRE VERT"}, "geometry": {"type": "Point", "coordinates": [2.2308550817689756, 48.88947494098112]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a4dea2621e8806585531a7569149f5494a7ca54a", "fields": {"departement": "92", "stop_lat": 48.888515281135334, "code_postal": "92050", "stop_lon": 2.223265977075701, "coord": [48.888515281135334, 2.223265977075701], "stop_id": 4024355, "stop_desc": "FACE 103 AVENUE PABLO PICASSO - 92050", "stop_name": "LES FONTENELLES"}, "geometry": {"type": "Point", "coordinates": [2.223265977075701, 48.888515281135334]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a0a0c44ad43079bd9a842222e11753a6263eb828", "fields": {"departement": "92", "stop_lat": 48.889841929441204, "code_postal": "92050", "stop_lon": 2.219705929424664, "coord": [48.889841929441204, 2.219705929424664], "stop_id": 4024356, "stop_desc": "67 AVENUE PABLO PICASSO - 92050", "stop_name": "FERNAND LEGER"}, "geometry": {"type": "Point", "coordinates": [2.219705929424664, 48.889841929441204]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "220cb8f47e643b8f2b32b65bc83a6ed689f0b882", "fields": {"departement": "92", "stop_lat": 48.89652359969501, "code_postal": "92050", "stop_lon": 2.214947321784785, "coord": [48.89652359969501, 2.214947321784785], "stop_id": 4024363, "stop_desc": "BOULEVARD JACQUES GERMAIN SOUFFLOT - 92050", "stop_name": "PREFECTURE DES HAUTS-DE-SEINE"}, "geometry": {"type": "Point", "coordinates": [2.214947321784785, 48.89652359969501]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "062b0bcbf7154232dfeb13c8ce069316c9c0672a", "fields": {"departement": "92", "stop_lat": 48.89323312276868, "code_postal": "92050", "stop_lon": 2.205414265367749, "coord": [48.89323312276868, 2.205414265367749], "stop_id": 4024372, "stop_desc": "FACE 79 RUE DE COURBEVOIE - 92050", "stop_name": "VICTOR HUGO - MAIRIE"}, "geometry": {"type": "Point", "coordinates": [2.205414265367749, 48.89323312276868]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "99e9f30a96586208b86f0c4e60e980c42093448a", "fields": {"departement": "92", "stop_lat": 48.893000092260564, "code_postal": "92050", "stop_lon": 2.198068457146964, "coord": [48.893000092260564, 2.198068457146964], "stop_id": 4024375, "stop_desc": "22 RUE DE STALINGRAD - 92050", "stop_name": "RUE DES ANCIENNES MAIRIES"}, "geometry": {"type": "Point", "coordinates": [2.198068457146964, 48.893000092260564]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a7bb5e7953e1c5da601ada7f00a0b480c22b90e4", "fields": {"departement": "92", "stop_lat": 48.89371632476165, "code_postal": "92050", "stop_lon": 2.188362060837333, "coord": [48.89371632476165, 2.188362060837333], "stop_id": 4024381, "stop_desc": "AVENUE BENOIT FRACHON - 92050", "stop_name": "PAUL LESCOP"}, "geometry": {"type": "Point", "coordinates": [2.188362060837333, 48.89371632476165]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4f739b74252bcbe1fc75e89428a2e69e9a9cef3b", "fields": {"departement": "92", "stop_lat": 48.890076182551034, "code_postal": "92050", "stop_lon": 2.181081044191548, "coord": [48.890076182551034, 2.181081044191548], "stop_id": 4024386, "stop_desc": "152-154 BOULEVARD NATIONAL - 92050", "stop_name": "CITE DU VIEUX PONT"}, "geometry": {"type": "Point", "coordinates": [2.181081044191548, 48.890076182551034]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e8ffa81273b81fcc7f35e39b0010416fee883081", "fields": {"departement": "92", "stop_lat": 48.891258503722284, "code_postal": "92050", "stop_lon": 2.1780654204582515, "coord": [48.891258503722284, 2.1780654204582515], "stop_id": 4024388, "stop_desc": "170 BOULEVARD NATIONAL - 92050", "stop_name": "ROUTE DE CHATOU"}, "geometry": {"type": "Point", "coordinates": [2.1780654204582515, 48.891258503722284]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2306f2f1429cc6314eaa4e79c27aac0398a94559", "fields": {"departement": "92", "stop_lat": 48.83193142104501, "code_postal": "92012", "stop_lon": 2.234117825146668, "coord": [48.83193142104501, 2.234117825146668], "stop_id": 4024392, "stop_desc": "FACE 162 AVENUE DE SILLY - 92012", "stop_name": "LYCEE E.J. MAREY"}, "geometry": {"type": "Point", "coordinates": [2.234117825146668, 48.83193142104501]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "72163dcfff2254f84d5db0ff2dd39509da9e6efa", "fields": {"departement": "92", "stop_lat": 48.840151332666906, "code_postal": "92012", "stop_lon": 2.2298942043772487, "coord": [48.840151332666906, 2.2298942043772487], "stop_id": 4024398, "stop_desc": "124 AVENUE ANDRE MORIZET - 92012", "stop_name": "RHIN ET DANUBE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.2298942043772487, 48.840151332666906]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7f85eb66e2006ab12b0b7cc0f39fec09d6c92262", "fields": {"departement": "92", "stop_lat": 48.84307433201121, "code_postal": "92064", "stop_lon": 2.2134801957307677, "coord": [48.84307433201121, 2.2134801957307677], "stop_id": 4024407, "stop_desc": "6 RUE GOUNOD - 92064", "stop_name": "COLLEGE GOUNOD"}, "geometry": {"type": "Point", "coordinates": [2.2134801957307677, 48.84307433201121]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5395e7a4601e3380868cd82ae8ea922709beea24", "fields": {"departement": "92", "stop_lat": 48.842277170647066, "code_postal": "92064", "stop_lon": 2.207599831026832, "coord": [48.842277170647066, 2.207599831026832], "stop_id": 4024410, "stop_desc": "37-39 RUE GOUNOD - 92064", "stop_name": "GENERAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.207599831026832, 48.842277170647066]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6002050e9cf0e889e08a1a4055c12e3389b1320d", "fields": {"departement": "92", "stop_lat": 48.844365484224866, "code_postal": "92064", "stop_lon": 2.210576714316898, "coord": [48.844365484224866, 2.210576714316898], "stop_id": 4024411, "stop_desc": "50 BOULEVARD DE LA REPUBLIQUE - 92064", "stop_name": "MARCHE DE SAINT-CLOUD"}, "geometry": {"type": "Point", "coordinates": [2.210576714316898, 48.844365484224866]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e815f95e28e908ca46f30ab3e6d4c2227c40122e", "fields": {"departement": "92", "stop_lat": 48.8471194011412, "code_postal": "92064", "stop_lon": 2.214137807896996, "coord": [48.8471194011412, 2.214137807896996], "stop_id": 4024414, "stop_desc": "FACE 90 BOULEVARD DE LA REPUBLIQUE - 92064", "stop_name": "MONTRETOUT"}, "geometry": {"type": "Point", "coordinates": [2.214137807896996, 48.8471194011412]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8d32bca5297f70d0eeb1d27f6caad49bcc724b42", "fields": {"departement": "92", "stop_lat": 48.863798484438846, "code_postal": "92073", "stop_lon": 2.2125725447781606, "coord": [48.863798484438846, 2.2125725447781606], "stop_id": 4024424, "stop_desc": "21 BOULEVARD DU MARECHAL DE LATTRE DE TASSIGNY - 92073", "stop_name": "EDOUARD VAILLANT"}, "geometry": {"type": "Point", "coordinates": [2.2125725447781606, 48.863798484438846]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "941a7c3f88c6266d554e84a50631f113cec81459", "fields": {"departement": "92", "stop_lat": 48.86597653861773, "code_postal": "92073", "stop_lon": 2.2155778979584033, "coord": [48.86597653861773, 2.2155778979584033], "stop_id": 4024425, "stop_desc": "96 BOULEVARD DU MARECHAL DE LATTRE DE TASSIGNY - 92073", "stop_name": "LES BONS RAISINS"}, "geometry": {"type": "Point", "coordinates": [2.2155778979584033, 48.86597653861773]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bb20b23e9a38897c59b97a71ea4717f70ca1560c", "fields": {"departement": "92", "stop_lat": 48.8656072614993, "code_postal": "92073", "stop_lon": 2.214802282943633, "coord": [48.8656072614993, 2.214802282943633], "stop_id": 4024426, "stop_desc": "45 BOULEVARD DU MARECHAL DE LATTRE DE TASSIGNY - 92073", "stop_name": "LES BONS RAISINS"}, "geometry": {"type": "Point", "coordinates": [2.214802282943633, 48.8656072614993]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dada8d9ca82c7dec3f39f7e79a2408781c38ab0b", "fields": {"departement": "92", "stop_lat": 48.870311037335235, "code_postal": "92073", "stop_lon": 2.2181426089890595, "coord": [48.870311037335235, 2.2181426089890595], "stop_id": 4024427, "stop_desc": "BOULEVARD DU MARECHAL DE LATTRE DE TASSIGNY - 92073", "stop_name": "CLUSERET - HOPITAL FOCH"}, "geometry": {"type": "Point", "coordinates": [2.2181426089890595, 48.870311037335235]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "409f3166d12cad4dfd1adffa2783e0cdc47e4dfc", "fields": {"departement": "92", "stop_lat": 48.88021228978011, "code_postal": "92050", "stop_lon": 2.2069190231611215, "coord": [48.88021228978011, 2.2069190231611215], "stop_id": 4024433, "stop_desc": "195 RUE PAUL VAILLANT COUTURIER - 92050", "stop_name": "CALVAIRE - MAIRIE ANNEXE"}, "geometry": {"type": "Point", "coordinates": [2.2069190231611215, 48.88021228978011]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5d4a65ad29e003c8e8b0b64abcbfde6166d75de2", "fields": {"departement": "92", "stop_lat": 48.881468975531725, "code_postal": "92050", "stop_lon": 2.2055259449057654, "coord": [48.881468975531725, 2.2055259449057654], "stop_id": 4024435, "stop_desc": "141 RUE PAUL VAILLANT COUTURIER - 92050", "stop_name": "DANIEL BECKER"}, "geometry": {"type": "Point", "coordinates": [2.2055259449057654, 48.881468975531725]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "772e97e07543c13d2968f8eb66a867cef1d58fc9", "fields": {"departement": "92", "stop_lat": 48.88127119601993, "code_postal": "92050", "stop_lon": 2.2054719410791312, "coord": [48.88127119601993, 2.2054719410791312], "stop_id": 4024436, "stop_desc": "152 RUE PAUL VAILLANT COUTURIER - 92050", "stop_name": "DANIEL BECKER"}, "geometry": {"type": "Point", "coordinates": [2.2054719410791312, 48.88127119601993]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2e0634622abf346708a8e123c5713513643a2a23", "fields": {"departement": "92", "stop_lat": 48.88426143542383, "code_postal": "92050", "stop_lon": 2.2032158199743552, "coord": [48.88426143542383, 2.2032158199743552], "stop_id": 4024437, "stop_desc": "65-67 RUE PAUL VAILLANT COUTURIER - 92050", "stop_name": "PIERRE SERGENT"}, "geometry": {"type": "Point", "coordinates": [2.2032158199743552, 48.88426143542383]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "242df008a4af7a79824d2556045cfa488f8d763c", "fields": {"departement": "92", "stop_lat": 48.88763812082074, "code_postal": "92050", "stop_lon": 2.200999307080737, "coord": [48.88763812082074, 2.200999307080737], "stop_id": 4024440, "stop_desc": "FACE 2 AVENUE FREDERIC ET IRENE JOLIOT CURIE - 92050", "stop_name": "PLACE DE LA BOULE - JOLIOT CURIE"}, "geometry": {"type": "Point", "coordinates": [2.200999307080737, 48.88763812082074]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4cfe8078943b61726057e48a36d6df3297fbdbee", "fields": {"departement": "92", "stop_lat": 48.89677787317958, "code_postal": "92050", "stop_lon": 2.200811708271495, "coord": [48.89677787317958, 2.200811708271495], "stop_id": 4024448, "stop_desc": "FACE 48 BOULEVARD BLAISE PASCAL - 92050", "stop_name": "PAUL BERT"}, "geometry": {"type": "Point", "coordinates": [2.200811708271495, 48.89677787317958]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eafacfb2195b3d3e719e6956b816110598146c35", "fields": {"departement": "92", "stop_lat": 48.89779086071002, "code_postal": "92050", "stop_lon": 2.20654766939271, "coord": [48.89779086071002, 2.20654766939271], "stop_id": 4024450, "stop_desc": "FACE 23 BOULEVARD RASPAIL - 92050", "stop_name": "GOUNOD"}, "geometry": {"type": "Point", "coordinates": [2.20654766939271, 48.89779086071002]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8398dfbaccbc4351d08431512fc15cbbe398ba2d", "fields": {"departement": "92", "stop_lat": 48.89613064427212, "code_postal": "92050", "stop_lon": 2.2173881097217665, "coord": [48.89613064427212, 2.2173881097217665], "stop_id": 4024455, "stop_desc": "RUE PABLO NERUDA - 92050", "stop_name": "PREFECTURE DES HAUTS-DE-SEINE"}, "geometry": {"type": "Point", "coordinates": [2.2173881097217665, 48.89613064427212]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "900b53308660a28fb21a04bae5cc5bfe722547ee", "fields": {"departement": "92", "stop_lat": 48.88957744025162, "code_postal": "92050", "stop_lon": 2.199331496857924, "coord": [48.88957744025162, 2.199331496857924], "stop_id": 4024464, "stop_desc": "FACE 11-13 RUE SADI CARNOT - 92050", "stop_name": "ROCHEGUDE"}, "geometry": {"type": "Point", "coordinates": [2.199331496857924, 48.88957744025162]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e46686eed9d2cc29fda9e2bf37f6ffddae6c6aea", "fields": {"departement": "92", "stop_lat": 48.886962342334975, "code_postal": "92050", "stop_lon": 2.199488364504161, "coord": [48.886962342334975, 2.199488364504161], "stop_id": 4024466, "stop_desc": "PLACE DE LA BOULE - 92050", "stop_name": "PLACE DE LA BOULE - LENINE"}, "geometry": {"type": "Point", "coordinates": [2.199488364504161, 48.886962342334975]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "52a4b252e6255d2f61d85eadfd6887a578023dda", "fields": {"departement": "92", "stop_lat": 48.860931709827256, "code_postal": "92064", "stop_lon": 2.212770134624513, "coord": [48.860931709827256, 2.212770134624513], "stop_id": 4024467, "stop_desc": "3 BOULEVARD LOUIS LOUCHEUR - 92064", "stop_name": "CROIX DU ROY"}, "geometry": {"type": "Point", "coordinates": [2.212770134624513, 48.860931709827256]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "684012e9cc639ceac1ce917858f1926754618a2b", "fields": {"departement": "75", "stop_lat": 48.848522339614206, "code_postal": "75116", "stop_lon": 2.2573579814904194, "coord": [48.848522339614206, 2.2573579814904194], "stop_id": 4024523, "stop_desc": "PLACE DE LA PORTE D'AUTEUIL - 75116", "stop_name": "PORTE D'AUTEUIL-METRO"}, "geometry": {"type": "Point", "coordinates": [2.2573579814904194, 48.848522339614206]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "658f4859e1b6783f17cc7f32b602b0531381ee61", "fields": {"departement": "75", "stop_lat": 48.84808420456111, "code_postal": "75116", "stop_lon": 2.247880617152204, "coord": [48.84808420456111, 2.247880617152204], "stop_id": 4024527, "stop_desc": "AVENUE DE LA PORTE D'AUTEUIL - 75116", "stop_name": "SUZANNE LENGLEN"}, "geometry": {"type": "Point", "coordinates": [2.247880617152204, 48.84808420456111]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "86d8fe26c7f5d4611640aa685a51ce26178ed6b0", "fields": {"departement": "92", "stop_lat": 48.84842978520447, "code_postal": "92012", "stop_lon": 2.2415340502427488, "coord": [48.84842978520447, 2.2415340502427488], "stop_id": 4024529, "stop_desc": "FACE 19 BOULEVARD ANATOLE FRANCE - 92012", "stop_name": "GAMBETTA"}, "geometry": {"type": "Point", "coordinates": [2.2415340502427488, 48.84842978520447]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3503e1aea6f7cf522b187d5c650d41ade75463de", "fields": {"departement": "92", "stop_lat": 48.85043911146044, "code_postal": "92012", "stop_lon": 2.236831962181087, "coord": [48.85043911146044, 2.236831962181087], "stop_id": 4024532, "stop_desc": "7 BOULEVARD ANATOLE FRANCE - 92012", "stop_name": "HOPITAL AMBROISE PARE"}, "geometry": {"type": "Point", "coordinates": [2.236831962181087, 48.85043911146044]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a6b84de8f51acea8f1a671c099b7ec3e5306d5f4", "fields": {"departement": "75", "stop_lat": 48.866613757152194, "code_postal": "75116", "stop_lon": 2.2336537848323097, "coord": [48.866613757152194, 2.2336537848323097], "stop_id": 4024536, "stop_desc": "ROUTE DE L'ABBAYE - 75116", "stop_name": "ETANG DE L'ABBAYE"}, "geometry": {"type": "Point", "coordinates": [2.2336537848323097, 48.866613757152194]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "75705ec0d6c2dcc28eaf76d33a4966eb430c05d5", "fields": {"departement": "92", "stop_lat": 48.874349177674, "code_postal": "92073", "stop_lon": 2.221008160002845, "coord": [48.874349177674, 2.221008160002845], "stop_id": 4024546, "stop_desc": "60 AVENUE FRANKLIN ROOSEVELT - 92073", "stop_name": "JACQUES DECOUR"}, "geometry": {"type": "Point", "coordinates": [2.221008160002845, 48.874349177674]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3a7402b6f80eff2c1a8e1fe8da572a0370a53d36", "fields": {"departement": "92", "stop_lat": 48.86950135809105, "code_postal": "92073", "stop_lon": 2.21732705866832, "coord": [48.86950135809105, 2.21732705866832], "stop_id": 4024550, "stop_desc": "FACE 160 BOULEVARD DU MARECHAL DE LATTRE DE TASSIGNY - 92073", "stop_name": "CLUSERET - HOPITAL FOCH"}, "geometry": {"type": "Point", "coordinates": [2.21732705866832, 48.86950135809105]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fa6f4c89421df602b35691a371169c9a08dc7aa4", "fields": {"departement": "92", "stop_lat": 48.870311037335235, "code_postal": "92073", "stop_lon": 2.2181426089890595, "coord": [48.870311037335235, 2.2181426089890595], "stop_id": 4024551, "stop_desc": "BOULEVARD DU MARECHAL DE LATTRE DE TASSIGNY - 92073", "stop_name": "CLUSERET - HOPITAL FOCH"}, "geometry": {"type": "Point", "coordinates": [2.2181426089890595, 48.870311037335235]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9403e4dce9b3ae7bc77e1d97fc48fbf6f8776699", "fields": {"departement": "92", "stop_lat": 48.86366094342758, "code_postal": "92073", "stop_lon": 2.201838760326166, "coord": [48.86366094342758, 2.201838760326166], "stop_id": 4024561, "stop_desc": "PLACE DE STALINGRAD - 92073", "stop_name": "STALINGRAD"}, "geometry": {"type": "Point", "coordinates": [2.201838760326166, 48.86366094342758]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "17607eb4d99a1b03801f884c2807aff307ebee87", "fields": {"departement": "92", "stop_lat": 48.86284606766256, "code_postal": "92063", "stop_lon": 2.1966509969329566, "coord": [48.86284606766256, 2.1966509969329566], "stop_id": 4024564, "stop_desc": "83 RUE DU LIEUTENANT COLONEL DE MONTBRISON - 92063", "stop_name": "LES MAZURIERES"}, "geometry": {"type": "Point", "coordinates": [2.1966509969329566, 48.86284606766256]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8a5ca4de88de6c66985a9085c371e3362e4dd0a3", "fields": {"departement": "92", "stop_lat": 48.87588261496247, "code_postal": "92063", "stop_lon": 2.2008530750060524, "coord": [48.87588261496247, 2.2008530750060524], "stop_id": 4024575, "stop_desc": "4 RUE GALLIENI - 92063", "stop_name": "EUGENE SUE"}, "geometry": {"type": "Point", "coordinates": [2.2008530750060524, 48.87588261496247]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2ea8f4b4bc9a6c58824919883ed27681f279e34c", "fields": {"departement": "92", "stop_lat": 48.877022210574445, "code_postal": "92063", "stop_lon": 2.1992967712593696, "coord": [48.877022210574445, 2.1992967712593696], "stop_id": 4024577, "stop_desc": "114 RUE DANTON - 92063", "stop_name": "VOLTAIRE"}, "geometry": {"type": "Point", "coordinates": [2.1992967712593696, 48.877022210574445]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b457b750c7ed195abb1f4a020aeed94730d0dee6", "fields": {"departement": "92", "stop_lat": 48.877908296637465, "code_postal": "92063", "stop_lon": 2.1961741234389067, "coord": [48.877908296637465, 2.1961741234389067], "stop_id": 4024578, "stop_desc": "101 RUE DANTON - 92063", "stop_name": "FABRE D'EGLANTINE"}, "geometry": {"type": "Point", "coordinates": [2.1961741234389067, 48.877908296637465]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ab945a97490b7ec5f549718edf1998192f3349fb", "fields": {"departement": "92", "stop_lat": 48.87854163177041, "code_postal": "92063", "stop_lon": 2.1922072666456827, "coord": [48.87854163177041, 2.1922072666456827], "stop_id": 4024580, "stop_desc": "35 RUE DANTON - 92063", "stop_name": "DANTON-GAMBETTA"}, "geometry": {"type": "Point", "coordinates": [2.1922072666456827, 48.87854163177041]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "69bd9cfcbbf0caaf0d80ea5098231cd6b53d4238", "fields": {"departement": "92", "stop_lat": 48.886982848271224, "code_postal": "92063", "stop_lon": 2.1731042907097424, "coord": [48.886982848271224, 2.1731042907097424], "stop_id": 4024592, "stop_desc": "GARE ROUTIERE QUAI N 2 - 92063", "stop_name": "RUEIL-MALMAISON RER"}, "geometry": {"type": "Point", "coordinates": [2.1731042907097424, 48.886982848271224]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5f40f7016573402b6d6cf9bcca036675b73f58e7", "fields": {"departement": "92", "stop_lat": 48.862450819553345, "code_postal": "92073", "stop_lon": 2.212998056196493, "coord": [48.862450819553345, 2.212998056196493], "stop_id": 4024596, "stop_desc": "8-10 RUE DE LA POTERIE - 92073", "stop_name": "CROIX DU ROY"}, "geometry": {"type": "Point", "coordinates": [2.212998056196493, 48.862450819553345]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f2c63dba4e859bd3292b2d49ff73915dc9329d68", "fields": {"departement": "92", "stop_lat": 48.88600633832888, "code_postal": "92063", "stop_lon": 2.1753696073485793, "coord": [48.88600633832888, 2.1753696073485793], "stop_id": 4024600, "stop_desc": "85 AVENUE VICTOR HUGO - 92063", "stop_name": "COLMAR"}, "geometry": {"type": "Point", "coordinates": [2.1753696073485793, 48.88600633832888]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a72c0a496aef9630e6f181195829f42a941fc174", "fields": {"departement": "92", "stop_lat": 48.878362895415854, "code_postal": "92063", "stop_lon": 2.1930389430283737, "coord": [48.878362895415854, 2.1930389430283737], "stop_id": 4024605, "stop_desc": "58 RUE DANTON - 92063", "stop_name": "DANTON-GAMBETTA"}, "geometry": {"type": "Point", "coordinates": [2.1930389430283737, 48.878362895415854]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "46769e10ab5908da361447973e8e2814e21d73dd", "fields": {"departement": "92", "stop_lat": 48.87588261496247, "code_postal": "92063", "stop_lon": 2.2008530750060524, "coord": [48.87588261496247, 2.2008530750060524], "stop_id": 4024608, "stop_desc": "4 RUE GALLIENI - 92063", "stop_name": "EUGENE SUE"}, "geometry": {"type": "Point", "coordinates": [2.2008530750060524, 48.87588261496247]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "77d2c87b24dbe4a5116a30d6086207004236a0ae", "fields": {"departement": "92", "stop_lat": 48.867803383524226, "code_postal": "92063", "stop_lon": 2.2011876582668277, "coord": [48.867803383524226, 2.2011876582668277], "stop_id": 4024611, "stop_desc": "9 AVENUE DU MONT VALERIEN - 92063", "stop_name": "AVENUE DU MONT VALERIEN"}, "geometry": {"type": "Point", "coordinates": [2.2011876582668277, 48.867803383524226]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "373140956a53ab4b0152890521169c492c9a900d", "fields": {"departement": "92", "stop_lat": 48.8630318275118, "code_postal": "92073", "stop_lon": 2.2018404031222523, "coord": [48.8630318275118, 2.2018404031222523], "stop_id": 4024615, "stop_desc": "1 PLACE DE STALINGRAD - 92073", "stop_name": "STALINGRAD"}, "geometry": {"type": "Point", "coordinates": [2.2018404031222523, 48.8630318275118]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3e35032720541b61566923477a4385f8f818af6d", "fields": {"departement": "92", "stop_lat": 48.89155660463518, "code_postal": "92062", "stop_lon": 2.2373519836237543, "coord": [48.89155660463518, 2.2373519836237543], "stop_id": 4024670, "stop_desc": "PISTE GARE ROUTIERE - 92062", "stop_name": "LA DEFENSE-METRO-RER-TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.2373519836237543, 48.89155660463518]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3550a6cddf2b5add3f2c8196fd25aa0c8c6e0034", "fields": {"departement": "92", "stop_lat": 48.888752123592425, "code_postal": "92062", "stop_lon": 2.2367849896114063, "coord": [48.888752123592425, 2.2367849896114063], "stop_id": 4024673, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 92062", "stop_name": "LES BOUVETS"}, "geometry": {"type": "Point", "coordinates": [2.2367849896114063, 48.888752123592425]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f747fe13e781384078b87ac9a5d1e0f6b4104bfd", "fields": {"departement": "92", "stop_lat": 48.88775148188725, "code_postal": "92062", "stop_lon": 2.233216315231345, "coord": [48.88775148188725, 2.233216315231345], "stop_id": 4024674, "stop_desc": "60 AVENUE DU GENERAL DE GAULLE - 92062", "stop_name": "LES GRAVIERS"}, "geometry": {"type": "Point", "coordinates": [2.233216315231345, 48.88775148188725]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "30815e61ee321d8b025aa186357325a5e51c53c8", "fields": {"departement": "92", "stop_lat": 48.88499550741013, "code_postal": "92062", "stop_lon": 2.2266806111240127, "coord": [48.88499550741013, 2.2266806111240127], "stop_id": 4024677, "stop_desc": "AV DU GENERAL DE GAULLE - 92062", "stop_name": "LES BERGERES"}, "geometry": {"type": "Point", "coordinates": [2.2266806111240127, 48.88499550741013]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eab8493a84ea7a9dd30d0c186cbcdfcd49e9557e", "fields": {"departement": "92", "stop_lat": 48.88633906822974, "code_postal": "92050", "stop_lon": 2.212968047459183, "coord": [48.88633906822974, 2.212968047459183], "stop_id": 4024681, "stop_desc": "FACE 174 AVENUE GEORGES CLEMENCEAU - 92050", "stop_name": "FELIX FAURE"}, "geometry": {"type": "Point", "coordinates": [2.212968047459183, 48.88633906822974]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ca131d9bba7cd1ee9cf7494e4f705ca7a0fb535b", "fields": {"departement": "92", "stop_lat": 48.886856639445476, "code_postal": "92050", "stop_lon": 2.201355691235118, "coord": [48.886856639445476, 2.201355691235118], "stop_id": 4024688, "stop_desc": "10 AVENUE GEORGES CLEMENCEAU - 92050", "stop_name": "PLACE DE LA BOULE - CLEMENCEAU"}, "geometry": {"type": "Point", "coordinates": [2.201355691235118, 48.886856639445476]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9f3ada564360070151838e04b365db6e4b37e515", "fields": {"departement": "92", "stop_lat": 48.87793602977575, "code_postal": "92063", "stop_lon": 2.17555831689967, "coord": [48.87793602977575, 2.17555831689967], "stop_id": 4024698, "stop_desc": "137 AVENUE PAUL DOUMER - 92063", "stop_name": "DANIELLE CASANOVA"}, "geometry": {"type": "Point", "coordinates": [2.17555831689967, 48.87793602977575]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a37733e25f39f54a7c2a26b9deb231b45de5aa27", "fields": {"departement": "92", "stop_lat": 48.87172414683641, "code_postal": "92063", "stop_lon": 2.1616947267829887, "coord": [48.87172414683641, 2.1616947267829887], "stop_id": 4024706, "stop_desc": "221 AVENUE NAPOLEON BONAPARTE - 92063", "stop_name": "LE PARC"}, "geometry": {"type": "Point", "coordinates": [2.1616947267829887, 48.87172414683641]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "badabf4115659c1d2d16138dd490a99ff52e86e3", "fields": {"departement": "92", "stop_lat": 48.86960445119026, "code_postal": "92063", "stop_lon": 2.15656582494131, "coord": [48.86960445119026, 2.15656582494131], "stop_id": 4024707, "stop_desc": "348 AVENUE NAPOLEON BONAPARTE - 92063", "stop_name": "LA JONCHERE"}, "geometry": {"type": "Point", "coordinates": [2.15656582494131, 48.86960445119026]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8f4fffe94fc9169a6519919cc531e065c78ec0ea", "fields": {"departement": "78", "stop_lat": 48.87189562396651, "code_postal": "78092", "stop_lon": 2.123614618558702, "coord": [48.87189562396651, 2.123614618558702], "stop_id": 4024716, "stop_desc": "QU RENNEQUIN SUALEM - 78092", "stop_name": "LA MACHINE"}, "geometry": {"type": "Point", "coordinates": [2.123614618558702, 48.87189562396651]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6f3e629d0c16b553fdf35daae84b4020ab22cf7b", "fields": {"departement": "78", "stop_lat": 48.8716080062984, "code_postal": "78092", "stop_lon": 2.123602179576486, "coord": [48.8716080062984, 2.123602179576486], "stop_id": 4024717, "stop_desc": "14 QU RENNEQUIN SUALEM - 78092", "stop_name": "LA MACHINE"}, "geometry": {"type": "Point", "coordinates": [2.123602179576486, 48.8716080062984]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "85a1dded70a25612c47d9e208a4e9390a40111ac", "fields": {"departement": "78", "stop_lat": 48.875775936857664, "code_postal": "78350", "stop_lon": 2.11745366808905, "coord": [48.875775936857664, 2.11745366808905], "stop_id": 4024719, "stop_desc": "9 QUAI DE CONTI - 78350", "stop_name": "PAVILLON HALEVY"}, "geometry": {"type": "Point", "coordinates": [2.11745366808905, 48.875775936857664]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7659200baa52d9924bfaab302d5f27119226f374", "fields": {"departement": "78", "stop_lat": 48.88327837838774, "code_postal": "78502", "stop_lon": 2.106901683878272, "coord": [48.88327837838774, 2.106901683878272], "stop_id": 4024723, "stop_desc": "FACE 29 AVENUE DE SAINT-GERMAIN - 78502", "stop_name": "VAL ANDRE"}, "geometry": {"type": "Point", "coordinates": [2.106901683878272, 48.88327837838774]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b64160a587622b4a187e9f3ad22fbbe852cc74e8", "fields": {"departement": "78", "stop_lat": 48.88712781781306, "code_postal": "78481", "stop_lon": 2.0992255378051254, "coord": [48.88712781781306, 2.0992255378051254], "stop_id": 4024725, "stop_desc": "FACE 11 AVENUE DU GENERAL LECLERC - 78481", "stop_name": "L'ERMITAGE"}, "geometry": {"type": "Point", "coordinates": [2.0992255378051254, 48.88712781781306]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "df87fc08d8b8b209955724949cc2bacf8cb0ab44", "fields": {"departement": "78", "stop_lat": 48.88675939831912, "code_postal": "78481", "stop_lon": 2.099254485848873, "coord": [48.88675939831912, 2.099254485848873], "stop_id": 4024726, "stop_desc": "5 AVENUE DU GENERAL LECLERC - 78481", "stop_name": "L'ERMITAGE"}, "geometry": {"type": "Point", "coordinates": [2.099254485848873, 48.88675939831912]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "578f53b32a36d23d429e4ebfb50b5edde01bec94", "fields": {"departement": "92", "stop_lat": 48.88775148188725, "code_postal": "92062", "stop_lon": 2.233216315231345, "coord": [48.88775148188725, 2.233216315231345], "stop_id": 4024739, "stop_desc": "60 AVENUE DU GENERAL DE GAULLE - 92062", "stop_name": "LES GRAVIERS"}, "geometry": {"type": "Point", "coordinates": [2.233216315231345, 48.88775148188725]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f48a50ad0bf34c06dc858916e939526b4d163b31", "fields": {"departement": "92", "stop_lat": 48.886782393482804, "code_postal": "92050", "stop_lon": 2.199311678106991, "coord": [48.886782393482804, 2.199311678106991], "stop_id": 4024747, "stop_desc": "8 AVENUE DU MARECHAL JOFFRE - 92050", "stop_name": "PLACE DE LA BOULE - JOFFRE"}, "geometry": {"type": "Point", "coordinates": [2.199311678106991, 48.886782393482804]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "201bc8a6cb5bdc2db53f70f88cb99571dc006e43", "fields": {"departement": "92", "stop_lat": 48.874490565948555, "code_postal": "92063", "stop_lon": 2.166726547482254, "coord": [48.874490565948555, 2.166726547482254], "stop_id": 4024754, "stop_desc": "274 AVENUE NAPOLEON BONAPARTE - 92063", "stop_name": "LE CHATEAU"}, "geometry": {"type": "Point", "coordinates": [2.166726547482254, 48.874490565948555]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f70ebf46a4568045739760990ad1d15b4e41792f", "fields": {"departement": "92", "stop_lat": 48.88875088546612, "code_postal": "92062", "stop_lon": 2.2353267360720896, "coord": [48.88875088546612, 2.2353267360720896], "stop_id": 4024760, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 92062", "stop_name": "LES BOUVETS"}, "geometry": {"type": "Point", "coordinates": [2.2353267360720896, 48.88875088546612]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "64e21b88925d06fbda7073608a7feb5b39714731", "fields": {"departement": "92", "stop_lat": 48.88566422032724, "code_postal": "92050", "stop_lon": 2.2210781787603233, "coord": [48.88566422032724, 2.2210781787603233], "stop_id": 4024766, "stop_desc": "FACE 308 AVENUE GEORGES CLEMENCEAU - 92050", "stop_name": "CRAIOVA"}, "geometry": {"type": "Point", "coordinates": [2.2210781787603233, 48.88566422032724]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ed2e4d59f56aeb1a29a32ea5fdb5de880bacfb9c", "fields": {"departement": "92", "stop_lat": 48.885913770917476, "code_postal": "92050", "stop_lon": 2.2189516798227937, "coord": [48.885913770917476, 2.2189516798227937], "stop_id": 4024767, "stop_desc": "257 AVENUE GEORGES CLEMENCEAU - 92050", "stop_name": "LES FONTENELLES"}, "geometry": {"type": "Point", "coordinates": [2.2189516798227937, 48.885913770917476]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "861bfee4ecf41bb2a20666e252ea48cf30688dfa", "fields": {"departement": "78", "stop_lat": 48.86776253283614, "code_postal": "78092", "stop_lon": 2.1345301114685196, "coord": [48.86776253283614, 2.1345301114685196], "stop_id": 4024786, "stop_desc": "38-42 QUAI BOISSY D'ANGLAS - 78092", "stop_name": "LA PASSERELLE"}, "geometry": {"type": "Point", "coordinates": [2.1345301114685196, 48.86776253283614]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "669e4e143f017b10ecac28721967f4bd6e8e1ca9", "fields": {"departement": "78", "stop_lat": 48.86956829524903, "code_postal": "78092", "stop_lon": 2.156429715508443, "coord": [48.86956829524903, 2.156429715508443], "stop_id": 4024790, "stop_desc": "2 COTE DE LA JONCHERE - 78092", "stop_name": "LA JONCHERE"}, "geometry": {"type": "Point", "coordinates": [2.156429715508443, 48.86956829524903]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f51aa1aa75637d5fbe4d13a74dfdaf5a7e54a3ff", "fields": {"departement": "92", "stop_lat": 48.89649372807699, "code_postal": "92026", "stop_lon": 2.2530994333125256, "coord": [48.89649372807699, 2.2530994333125256], "stop_id": 4024796, "stop_desc": "FACE 41 RUE DE L'ALMA - 92026", "stop_name": "ALMA BAUDIN"}, "geometry": {"type": "Point", "coordinates": [2.2530994333125256, 48.89649372807699]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "20975355d69bba7ef28d2c7c3ae4cabae57c039e", "fields": {"departement": "92", "stop_lat": 48.90322593405253, "code_postal": "92026", "stop_lon": 2.2684385398064264, "coord": [48.90322593405253, 2.2684385398064264], "stop_id": 4024806, "stop_desc": "49-53 BOULEVARD GEORGES CLEMENCEAU - 92026", "stop_name": "PLACE DE BELGIQUE"}, "geometry": {"type": "Point", "coordinates": [2.2684385398064264, 48.90322593405253]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d7f7ae21d4128fc3ec835aa97682f93a9ce2a20b", "fields": {"departement": "92", "stop_lat": 48.90337876169204, "code_postal": "92026", "stop_lon": 2.2685201312486116, "coord": [48.90337876169204, 2.2685201312486116], "stop_id": 4024807, "stop_desc": "FACE 53 BOULEVARD GEORGES CLEMENCEAU - 92026", "stop_name": "PLACE DE BELGIQUE"}, "geometry": {"type": "Point", "coordinates": [2.2685201312486116, 48.90337876169204]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a0cf0203673b03455b117ee75f9090590722a1db", "fields": {"departement": "92", "stop_lat": 48.896626824820075, "code_postal": "92044", "stop_lon": 2.2806467117291467, "coord": [48.896626824820075, 2.2806467117291467], "stop_id": 4024811, "stop_desc": "RUE ANATOLE FRANCE - 92044", "stop_name": "PONT DE LEVALLOIS-METRO"}, "geometry": {"type": "Point", "coordinates": [2.2806467117291467, 48.896626824820075]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3a71a068199807ef497222e483a11f53bf040025", "fields": {"departement": "92", "stop_lat": 48.89730498221079, "code_postal": "92026", "stop_lon": 2.256587602249458, "coord": [48.89730498221079, 2.256587602249458], "stop_id": 4024818, "stop_desc": "14-16 RUE DE COLOMBES - 92026", "stop_name": "HEROLD - MAIRIE DE COURBEVOIE"}, "geometry": {"type": "Point", "coordinates": [2.256587602249458, 48.89730498221079]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c0c9f6ec46bcd6102d522e6591cc4e89c93fa367", "fields": {"departement": "92", "stop_lat": 48.78585365764058, "code_postal": "92023", "stop_lon": 2.2371744645834646, "coord": [48.78585365764058, 2.2371744645834646], "stop_id": 5067384, "stop_desc": "PLACE GEORGES POMPIDOU - 92023", "stop_name": "GEORGES POMPIDOU"}, "geometry": {"type": "Point", "coordinates": [2.2371744645834646, 48.78585365764058]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6c06824fb3d6cb789e527023d649b9cce4f58971", "fields": {"departement": "92", "stop_lat": 48.785249576251935, "code_postal": "92060", "stop_lon": 2.25858422925446, "coord": [48.785249576251935, 2.25858422925446], "stop_id": 5067453, "stop_desc": "FACE 42 RUE PAUL RIVET - 92060", "stop_name": "MOULIN DE LA TOUR"}, "geometry": {"type": "Point", "coordinates": [2.25858422925446, 48.785249576251935]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4c26a912159cec2d5fe891313d255222a2509e73", "fields": {"departement": "92", "stop_lat": 48.778905501575515, "code_postal": "92060", "stop_lon": 2.260783394313373, "coord": [48.778905501575515, 2.260783394313373], "stop_id": 5067457, "stop_desc": "FACE 9 AVENUE CHARLES DE GAULLE - 92060", "stop_name": "RESISTANCE"}, "geometry": {"type": "Point", "coordinates": [2.260783394313373, 48.778905501575515]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ec838476920c529adfebf04ae9844f4b681b7dd4", "fields": {"departement": "92", "stop_lat": 48.78301697540244, "code_postal": "92060", "stop_lon": 2.2672241255368664, "coord": [48.78301697540244, 2.2672241255368664], "stop_id": 5067461, "stop_desc": "AVENUE CHARLES DE GAULLE - 92060", "stop_name": "L'ESCALIER"}, "geometry": {"type": "Point", "coordinates": [2.2672241255368664, 48.78301697540244]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "68b1c5ed2ca5352258b9e86822ddb84b510e00af", "fields": {"departement": "92", "stop_lat": 48.78363898332207, "code_postal": "92060", "stop_lon": 2.270419515514898, "coord": [48.78363898332207, 2.270419515514898], "stop_id": 5067464, "stop_desc": "AVENUE DE LA RESISTANCE - 92060", "stop_name": "TOUR DE L'ETANG"}, "geometry": {"type": "Point", "coordinates": [2.270419515514898, 48.78363898332207]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "976ac932bcc2c0e5f7001edfca145aa59d43372f", "fields": {"departement": "92", "stop_lat": 48.78340985585742, "code_postal": "92060", "stop_lon": 2.2790971921326983, "coord": [48.78340985585742, 2.2790971921326983], "stop_id": 5067467, "stop_desc": "164 AVENUE DE LA RESISTANCE - 92060", "stop_name": "EDMOND ABOUT"}, "geometry": {"type": "Point", "coordinates": [2.2790971921326983, 48.78340985585742]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e18b13640f1d195a8bbfb2aae7b9bdb98975eef0", "fields": {"departement": "92", "stop_lat": 48.784293346664036, "code_postal": "92014", "stop_lon": 2.312582211985658, "coord": [48.784293346664036, 2.312582211985658], "stop_id": 5067477, "stop_desc": "FACE 30 RUE DE FONTENAY - 92014", "stop_name": "PIERRE LOTI"}, "geometry": {"type": "Point", "coordinates": [2.312582211985658, 48.784293346664036]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6cf45648c86cf6fb530c7d31540c3ba72b1f12df", "fields": {"departement": "92", "stop_lat": 48.785360359260764, "code_postal": "92032", "stop_lon": 2.3023806406217355, "coord": [48.785360359260764, 2.3023806406217355], "stop_id": 5067483, "stop_desc": "AVENUE JEAN PERRIN - 92032", "stop_name": "LES BLAGIS"}, "geometry": {"type": "Point", "coordinates": [2.3023806406217355, 48.785360359260764]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "53e4e64c7928f039b0a19dfb6a8e2c15e8531047", "fields": {"departement": "92", "stop_lat": 48.82966193244689, "code_postal": "92040", "stop_lon": 2.2643568943423986, "coord": [48.82966193244689, 2.2643568943423986], "stop_id": 5067571, "stop_desc": "74-78 RUE CAMILLE DESMOULINS - 92040", "stop_name": "ISSY - VAL DE SEINE RER"}, "geometry": {"type": "Point", "coordinates": [2.2643568943423986, 48.82966193244689]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6ba890c3e5af36143fd0ef0a9ff0b0251afaabcd", "fields": {"departement": "92", "stop_lat": 48.82258020876468, "code_postal": "92040", "stop_lon": 2.2820885934799837, "coord": [48.82258020876468, 2.2820885934799837], "stop_id": 5067575, "stop_desc": "FACE 23 AVENUE DU GENERAL DE GAULLE - 92040", "stop_name": "ROSIER ROUGE"}, "geometry": {"type": "Point", "coordinates": [2.2820885934799837, 48.82258020876468]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0138643a0d05136f2359e4ddddeecaaad59f83f3", "fields": {"departement": "92", "stop_lat": 48.82266122998185, "code_postal": "92040", "stop_lon": 2.2823743425008867, "coord": [48.82266122998185, 2.2823743425008867], "stop_id": 5067576, "stop_desc": "23 AVENUE DU GENERAL DE GAULLE - 92040", "stop_name": "ROSIER ROUGE"}, "geometry": {"type": "Point", "coordinates": [2.2823743425008867, 48.82266122998185]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d8083f139b23661d5127acdcb67fb1cd0acbdc6f", "fields": {"departement": "92", "stop_lat": 48.79210837916306, "code_postal": "92032", "stop_lon": 2.2755370186756583, "coord": [48.79210837916306, 2.2755370186756583], "stop_id": 5067595, "stop_desc": "AVENUE DU GENERAL LECLERC - 92032", "stop_name": "LEONIE LAPORTE"}, "geometry": {"type": "Point", "coordinates": [2.2755370186756583, 48.79210837916306]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "256081a373ad2bb0acd60678d0a2e1d2573cde91", "fields": {"departement": "92", "stop_lat": 48.79293766605311, "code_postal": "92032", "stop_lon": 2.2803516391621845, "coord": [48.79293766605311, 2.2803516391621845], "stop_id": 5067599, "stop_desc": "26 AVENUE DU GENERAL LECLERC - 92032", "stop_name": "JACQUEMIN"}, "geometry": {"type": "Point", "coordinates": [2.2803516391621845, 48.79293766605311]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f627b1ec50af0d9a53fc32a957edc2b447e80283", "fields": {"departement": "92", "stop_lat": 48.79360442716932, "code_postal": "92032", "stop_lon": 2.2839286503793415, "coord": [48.79360442716932, 2.2839286503793415], "stop_id": 5067601, "stop_desc": "FACE 1 AVENUE DU GENERAL LECLERC - 92032", "stop_name": "ANDRE SALEL"}, "geometry": {"type": "Point", "coordinates": [2.2839286503793415, 48.79360442716932]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fdc4acc49ead3ef5b5c60d54a74e9f0042ba2108", "fields": {"departement": "92", "stop_lat": 48.78824246516923, "code_postal": "92032", "stop_lon": 2.2932652482672524, "coord": [48.78824246516923, 2.2932652482672524], "stop_id": 5067605, "stop_desc": "25 AVENUE LOMBART - 92032", "stop_name": "FONTENAY-AUX-ROSES RER"}, "geometry": {"type": "Point", "coordinates": [2.2932652482672524, 48.78824246516923]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "23707af945d6752d03784a702175d03a318e75b6", "fields": {"departement": "92", "stop_lat": 48.78494400320653, "code_postal": "92032", "stop_lon": 2.2935672705861156, "coord": [48.78494400320653, 2.2935672705861156], "stop_id": 5067608, "stop_desc": "2 BIS AVENUE LOMBART - 92032", "stop_name": "GAMBETTA"}, "geometry": {"type": "Point", "coordinates": [2.2935672705861156, 48.78494400320653]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ed4d4771ef86f45decd23524ad1166e52eb722bc", "fields": {"departement": "92", "stop_lat": 48.77960179320402, "code_postal": "92014", "stop_lon": 2.313400434821077, "coord": [48.77960179320402, 2.313400434821077], "stop_id": 5067611, "stop_desc": "72 BOULEVARD DU MARECHAL JOFFRE - 92014", "stop_name": "BOURG-LA-REINE RER"}, "geometry": {"type": "Point", "coordinates": [2.313400434821077, 48.77960179320402]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b81bbc4315d25a3e71cb1bf0a523ab63d4b13b35", "fields": {"departement": "92", "stop_lat": 48.77960179320402, "code_postal": "92014", "stop_lon": 2.313400434821077, "coord": [48.77960179320402, 2.313400434821077], "stop_id": 5067612, "stop_desc": "72 BOULEVARD DU MARECHAL JOFFRE - 92014", "stop_name": "BOURG-LA-REINE RER"}, "geometry": {"type": "Point", "coordinates": [2.313400434821077, 48.77960179320402]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "484e11e6960be58aa87ce975e8a47afb2512fc02", "fields": {"departement": "92", "stop_lat": 48.78471150300271, "code_postal": "92032", "stop_lon": 2.2969269749916488, "coord": [48.78471150300271, 2.2969269749916488], "stop_id": 5067614, "stop_desc": "FACE 26 AVENUE JEAN PERRIN - 92032", "stop_name": "LEON BLUM"}, "geometry": {"type": "Point", "coordinates": [2.2969269749916488, 48.78471150300271]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "09fa742e211f1be740109cb040c9741a422dfa59", "fields": {"departement": "92", "stop_lat": 48.82593195169939, "code_postal": "92072", "stop_lon": 2.219360657621989, "coord": [48.82593195169939, 2.219360657621989], "stop_id": 5073972, "stop_desc": "2 AVENUE DE LA DIVISION LECLERC - 92072", "stop_name": "PARC DE SAINT-CLOUD"}, "geometry": {"type": "Point", "coordinates": [2.219360657621989, 48.82593195169939]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "641dcd24494de919eedf3dd7416c11794ff8a3a8", "fields": {"departement": "92", "stop_lat": 48.81183731423944, "code_postal": "92048", "stop_lon": 2.2368930295294303, "coord": [48.81183731423944, 2.2368930295294303], "stop_id": 5073978, "stop_desc": "PLACE RABELAIS - 92048", "stop_name": "RABELAIS"}, "geometry": {"type": "Point", "coordinates": [2.2368930295294303, 48.81183731423944]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "38ff638c3a0872af50ccde081d05fc5556e5bfa4", "fields": {"departement": "92", "stop_lat": 48.80768631860821, "code_postal": "92023", "stop_lon": 2.2500184692424225, "coord": [48.80768631860821, 2.2500184692424225], "stop_id": 5073986, "stop_desc": "FACE 92 AVENUE SCHNEIDER - 92023", "stop_name": "RUE DES PEUPLIERS"}, "geometry": {"type": "Point", "coordinates": [2.2500184692424225, 48.80768631860821]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "533c591f5b8a6f1c48bc85f7e1e32331423cd0ff", "fields": {"departement": "92", "stop_lat": 48.81148493414833, "code_postal": "92023", "stop_lon": 2.2582859145650356, "coord": [48.81148493414833, 2.2582859145650356], "stop_id": 5073988, "stop_desc": "90 AVENUE HENRI BARBUSSE - 92023", "stop_name": "FLEURY"}, "geometry": {"type": "Point", "coordinates": [2.2582859145650356, 48.81148493414833]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "48c4393b2ec656b3cac06de7f2f13ddcb88a7311", "fields": {"departement": "92", "stop_lat": 48.81454049932141, "code_postal": "92075", "stop_lon": 2.272747707605776, "coord": [48.81454049932141, 2.272747707605776], "stop_id": 5073994, "stop_desc": "199 AVENUE DU GENERAL DE GAULLE - 92075", "stop_name": "GARE DE CLAMART"}, "geometry": {"type": "Point", "coordinates": [2.272747707605776, 48.81454049932141]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d51ffd680cd74f9ad87486cf44dba74116c543c4", "fields": {"departement": "92", "stop_lat": 48.82457964728283, "code_postal": "92040", "stop_lon": 2.2725310542167305, "coord": [48.82457964728283, 2.2725310542167305], "stop_id": 5073998, "stop_desc": "FACE 34 RUE DIDEROT - 92040", "stop_name": "MAIRIE D'ISSY"}, "geometry": {"type": "Point", "coordinates": [2.2725310542167305, 48.82457964728283]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "975112717a95945477608305ad84b0ef3467763d", "fields": {"departement": "92", "stop_lat": 48.830667352064815, "code_postal": "92040", "stop_lon": 2.278445245919053, "coord": [48.830667352064815, 2.278445245919053], "stop_id": 5074001, "stop_desc": "23 RUE GUYNEMER - 92040", "stop_name": "SEVERINE"}, "geometry": {"type": "Point", "coordinates": [2.278445245919053, 48.830667352064815]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "88e01efdc00985fa265bfbd0c62410161d886553", "fields": {"departement": "92", "stop_lat": 48.831836707153386, "code_postal": "92040", "stop_lon": 2.2804315068912797, "coord": [48.831836707153386, 2.2804315068912797], "stop_id": 5074002, "stop_desc": "FACE 2 BIS RUE JEANNE D'ARC - 92040", "stop_name": "PORTE D'ISSY"}, "geometry": {"type": "Point", "coordinates": [2.2804315068912797, 48.831836707153386]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "487fe5eac3abe6b1e2016066e7cfcba689e0af42", "fields": {"departement": "75", "stop_lat": 48.83330919354311, "code_postal": "75115", "stop_lon": 2.2774075885147833, "coord": [48.83330919354311, 2.2774075885147833], "stop_id": 5074003, "stop_desc": "PLACE DES MARTYRS DE LA RESISTANCE DE LA PORTE DE SEVRES - 75115", "stop_name": "SUZANNE LENGLEN"}, "geometry": {"type": "Point", "coordinates": [2.2774075885147833, 48.83330919354311]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dc89bcee571bcf471ce77b727597c559701522d0", "fields": {"departement": "75", "stop_lat": 48.83573626432821, "code_postal": "75115", "stop_lon": 2.278248896047409, "coord": [48.83573626432821, 2.278248896047409], "stop_id": 5074004, "stop_desc": "1-3 AVENUE DE LA PORTE DE SEVRES - 75115", "stop_name": "BALARD"}, "geometry": {"type": "Point", "coordinates": [2.278248896047409, 48.83573626432821]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ad2d8027777901ed90d68453c5fe940c87c7bef3", "fields": {"departement": "75", "stop_lat": 48.839993251238624, "code_postal": "75115", "stop_lon": 2.2722531268653094, "coord": [48.839993251238624, 2.2722531268653094], "stop_id": 5074007, "stop_desc": "5-7 RUE LEBLANC - 75115", "stop_name": "HOPITAL EUROPEEN GEORGES POMPIDOU"}, "geometry": {"type": "Point", "coordinates": [2.2722531268653094, 48.839993251238624]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "adf0c4d76eefb917ab5a4b6afb72da711e677ee8", "fields": {"departement": "78", "stop_lat": 48.80415035042272, "code_postal": "78686", "stop_lon": 2.1772031820318833, "coord": [48.80415035042272, 2.1772031820318833], "stop_id": 5079447, "stop_desc": "FACE 50 AVENUE DU GENERAL LECLERC - 78686", "stop_name": "GRACE DE DIEU"}, "geometry": {"type": "Point", "coordinates": [2.1772031820318833, 48.80415035042272]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c1939ba06da937ccd58ec9c9a0b0982ac20c764c", "fields": {"departement": "92", "stop_lat": 48.80877507090612, "code_postal": "92022", "stop_lon": 2.1879525193180367, "coord": [48.80877507090612, 2.1879525193180367], "stop_id": 5079450, "stop_desc": "1427 AVENUE ROGER SALENGRO - 92022", "stop_name": "PUITS SANS VIN"}, "geometry": {"type": "Point", "coordinates": [2.1879525193180367, 48.80877507090612]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5ff9947d7f985c7a8cc11fc502d660de94fc132f", "fields": {"departement": "92", "stop_lat": 48.81329240286992, "code_postal": "92022", "stop_lon": 2.192375982764248, "coord": [48.81329240286992, 2.192375982764248], "stop_id": 5079452, "stop_desc": "855 AVENUE ROGER SALENGRO - 92022", "stop_name": "ATRIUM"}, "geometry": {"type": "Point", "coordinates": [2.192375982764248, 48.81329240286992]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5cb0172a786b2d5eeef51976f7c4a11a976ce613", "fields": {"departement": "92", "stop_lat": 48.82088927265677, "code_postal": "92072", "stop_lon": 2.20190952396969, "coord": [48.82088927265677, 2.20190952396969], "stop_id": 5079455, "stop_desc": "149 RUE GRANDE RUE - 92072", "stop_name": "HOPITAL JEAN ROSTAND"}, "geometry": {"type": "Point", "coordinates": [2.20190952396969, 48.82088927265677]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "47839f2c6cdc90602a737b648ff1505509706366", "fields": {"departement": "92", "stop_lat": 48.821937268907554, "code_postal": "92072", "stop_lon": 2.206765926349108, "coord": [48.821937268907554, 2.206765926349108], "stop_id": 5079456, "stop_desc": "35 AVENUE DE L'EUROPE - 92072", "stop_name": "PLACE GABRIEL PERI"}, "geometry": {"type": "Point", "coordinates": [2.206765926349108, 48.821937268907554]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5e59b25a73c5cbf493cedc3763fb7ce39de89e81", "fields": {"departement": "92", "stop_lat": 48.826516619377834, "code_postal": "92072", "stop_lon": 2.219835757126419, "coord": [48.826516619377834, 2.219835757126419], "stop_id": 5079459, "stop_desc": "25 BIS GRANDE RUE - 92072", "stop_name": "PARC DE SAINT-CLOUD"}, "geometry": {"type": "Point", "coordinates": [2.219835757126419, 48.826516619377834]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3a3a7e6b3a86aae8e552aae34d955e5475c0302b", "fields": {"departement": "92", "stop_lat": 48.82719400030173, "code_postal": "92072", "stop_lon": 2.2232373238068854, "coord": [48.82719400030173, 2.2232373238068854], "stop_id": 5079460, "stop_desc": "1 GRANDE RUE - 92072", "stop_name": "MUSEE DE SEVRES"}, "geometry": {"type": "Point", "coordinates": [2.2232373238068854, 48.82719400030173]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a431f612feec982eb1dc0fd009c2bcf49be59e32", "fields": {"departement": "92", "stop_lat": 48.81329240286992, "code_postal": "92022", "stop_lon": 2.192375982764248, "coord": [48.81329240286992, 2.192375982764248], "stop_id": 5079467, "stop_desc": "855 AVENUE ROGER SALENGRO - 92022", "stop_name": "ATRIUM"}, "geometry": {"type": "Point", "coordinates": [2.192375982764248, 48.81329240286992]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0e14664cc5c0484f67af5c8d800a55523368130d", "fields": {"departement": "92", "stop_lat": 48.821937268907554, "code_postal": "92072", "stop_lon": 2.206765926349108, "coord": [48.821937268907554, 2.206765926349108], "stop_id": 5079471, "stop_desc": "35 AVENUE DE L'EUROPE - 92072", "stop_name": "PLACE GABRIEL PERI"}, "geometry": {"type": "Point", "coordinates": [2.206765926349108, 48.821937268907554]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "82d87a56b78cabfcc3370062718569a54d9ef636", "fields": {"departement": "92", "stop_lat": 48.823217271990735, "code_postal": "92072", "stop_lon": 2.2102336043309494, "coord": [48.823217271990735, 2.2102336043309494], "stop_id": 5079472, "stop_desc": "FACE 8 AVENUE DE L'EUROPE - 92072", "stop_name": "MARCHE SAINT-ROMAIN"}, "geometry": {"type": "Point", "coordinates": [2.2102336043309494, 48.823217271990735]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "68171ae3dac0eda0d7107ac1f7386740e1fb4465", "fields": {"departement": "92", "stop_lat": 48.82904303376725, "code_postal": "92072", "stop_lon": 2.2303119593717184, "coord": [48.82904303376725, 2.2303119593717184], "stop_id": 5079476, "stop_desc": "GARE ROUTIERE - 92072", "stop_name": "PONT DE SEVRES"}, "geometry": {"type": "Point", "coordinates": [2.2303119593717184, 48.82904303376725]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "12e285ae58e513fa4a999a3e028cfa84111ea38f", "fields": {"departement": "92", "stop_lat": 48.816189030781565, "code_postal": "92022", "stop_lon": 2.1945045924659863, "coord": [48.816189030781565, 2.1945045924659863], "stop_id": 5079481, "stop_desc": "547 AVENUE ROGER SALENGRO - 92022", "stop_name": "GUILLEMINOT"}, "geometry": {"type": "Point", "coordinates": [2.1945045924659863, 48.816189030781565]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5e055a4e57505981378845e0538e1f561ce0084d", "fields": {"departement": "92", "stop_lat": 48.821937268907554, "code_postal": "92072", "stop_lon": 2.206765926349108, "coord": [48.821937268907554, 2.206765926349108], "stop_id": 5079484, "stop_desc": "35 AVENUE DE L'EUROPE - 92072", "stop_name": "PLACE GABRIEL PERI"}, "geometry": {"type": "Point", "coordinates": [2.206765926349108, 48.821937268907554]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e6104f0bd13caa26c32a93a03160de07dd4a92c7", "fields": {"departement": "92", "stop_lat": 48.898632852301176, "code_postal": "92024", "stop_lon": 2.312568673210836, "coord": [48.898632852301176, 2.312568673210836], "stop_id": 5081723, "stop_desc": "53 BOULEVARD VICTOR HUGO - 92024", "stop_name": "CURTON"}, "geometry": {"type": "Point", "coordinates": [2.312568673210836, 48.898632852301176]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e6e7ec755c5ca5acad50de1937a0ba8465e06ddd", "fields": {"departement": "92", "stop_lat": 48.901203740197225, "code_postal": "92024", "stop_lon": 2.3155119226470733, "coord": [48.901203740197225, 2.3155119226470733], "stop_id": 5081725, "stop_desc": "34 BOULEVARD DU GENERAL LECLERC - 92024", "stop_name": "GENERAL LECLERC - VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.3155119226470733, 48.901203740197225]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4918a9aabf7d4f59f4f69cbee2d46ef2225b8130", "fields": {"departement": "92", "stop_lat": 48.916426152072255, "code_postal": "92004", "stop_lon": 2.3078285610019122, "coord": [48.916426152072255, 2.3078285610019122], "stop_id": 5081736, "stop_desc": "AVENUE LAURENT CELY - 92004", "stop_name": "PIERRE BOUDOU"}, "geometry": {"type": "Point", "coordinates": [2.3078285610019122, 48.916426152072255]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "290bf96deb7e917b4390081c3aaa3f0e77bc6826", "fields": {"departement": "92", "stop_lat": 48.9304260277182, "code_postal": "92036", "stop_lon": 2.301341835637842, "coord": [48.9304260277182, 2.301341835637842], "stop_id": 5081743, "stop_desc": "AVENUE LAURENT CELY - 92036", "stop_name": "MOULIN DE CAGE"}, "geometry": {"type": "Point", "coordinates": [2.301341835637842, 48.9304260277182]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e7e492628be939b77f5f057a5d870a9895eeb4fe", "fields": {"departement": "92", "stop_lat": 48.92970721129649, "code_postal": "92036", "stop_lon": 2.301792431929514, "coord": [48.92970721129649, 2.301792431929514], "stop_id": 5081744, "stop_desc": "AVENUE LAURENT CELY - 92036", "stop_name": "MOULIN DE CAGE"}, "geometry": {"type": "Point", "coordinates": [2.301792431929514, 48.92970721129649]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6410081f1deb3be00f1f01a620525c5532b534f4", "fields": {"departement": "92", "stop_lat": 48.94222616127771, "code_postal": "92036", "stop_lon": 2.302725198731223, "coord": [48.94222616127771, 2.302725198731223], "stop_id": 5081752, "stop_desc": "97 AVENUE MARCEL PAUL - 92036", "stop_name": "CHAMPS FOURGONS"}, "geometry": {"type": "Point", "coordinates": [2.302725198731223, 48.94222616127771]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3e4adb27da676b8f76eece723b01fc3a6a1ee0dc", "fields": {"departement": "93", "stop_lat": 48.95009070059307, "code_postal": "93039", "stop_lon": 2.3068270072880397, "coord": [48.95009070059307, 2.3068270072880397], "stop_id": 5081755, "stop_desc": "AVENUE DU PONT D'EPINAY - 93039", "stop_name": "PONT D'EPINAY"}, "geometry": {"type": "Point", "coordinates": [2.3068270072880397, 48.95009070059307]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "09a8947e7e66b203de595f9a31f319476706f4b1", "fields": {"departement": "92", "stop_lat": 48.86140775640603, "code_postal": "92073", "stop_lon": 2.212496564318806, "coord": [48.86140775640603, 2.212496564318806], "stop_id": 4472523, "stop_desc": "CARREFOUR DE LA CROIX DU ROY - 92073", "stop_name": "CROIX DU ROY"}, "geometry": {"type": "Point", "coordinates": [2.212496564318806, 48.86140775640603]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "726ca66c7278263e852f1f41d18ac8a31b7657f2", "fields": {"departement": "92", "stop_lat": 48.86767710841224, "code_postal": "92073", "stop_lon": 2.226812902957634, "coord": [48.86767710841224, 2.226812902957634], "stop_id": 4472534, "stop_desc": "FACE 13 BOULEVARD HENRI SELLIER - 92073", "stop_name": "RUE DES BOURETS - PONT DE SURESNES"}, "geometry": {"type": "Point", "coordinates": [2.226812902957634, 48.86767710841224]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5257054620ec5227c1ce29f94fdc212cb0c80e2f", "fields": {"departement": "75", "stop_lat": 48.85859000836875, "code_postal": "75116", "stop_lon": 2.2753353224511224, "coord": [48.85859000836875, 2.2753353224511224], "stop_id": 4472538, "stop_desc": "96-98 AVENUE PAUL DOUMER - 75116", "stop_name": "LA MUETTE - BOULAINVILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.2753353224511224, 48.85859000836875]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c2a39011d60245e210e37ec6b67022fc2fb4d01c", "fields": {"departement": "75", "stop_lat": 48.85913933981904, "code_postal": "75116", "stop_lon": 2.2774867484852144, "coord": [48.85913933981904, 2.2774867484852144], "stop_id": 4472539, "stop_desc": "77 AVENUE PAUL DOUMER - 75116", "stop_name": "PLACE POSSOZ"}, "geometry": {"type": "Point", "coordinates": [2.2774867484852144, 48.85913933981904]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4dc93e0208e1acaa31311d3d11d4d7ce4339ea77", "fields": {"departement": "75", "stop_lat": 48.861218372452, "code_postal": "75116", "stop_lon": 2.2836684303554344, "coord": [48.861218372452, 2.2836684303554344], "stop_id": 4472542, "stop_desc": "12 AVENUE PAUL DOUMER - 75116", "stop_name": "SCHEFFER"}, "geometry": {"type": "Point", "coordinates": [2.2836684303554344, 48.861218372452]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cf80728212b52a78943f9474d9a2d57b2e8964a7", "fields": {"departement": "75", "stop_lat": 48.869382396794045, "code_postal": "75116", "stop_lon": 2.2920929155953367, "coord": [48.869382396794045, 2.2920929155953367], "stop_id": 4472545, "stop_desc": "35-37 AVENUE KLEBER - 75116", "stop_name": "KLEBER - PAUL VALERY"}, "geometry": {"type": "Point", "coordinates": [2.2920929155953367, 48.869382396794045]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "19a9cfa30185538e6c2043ae2c4bd5cddc5a5d29", "fields": {"departement": "75", "stop_lat": 48.87294217395915, "code_postal": "75116", "stop_lon": 2.294242469445494, "coord": [48.87294217395915, 2.294242469445494], "stop_id": 4472548, "stop_desc": "2 AVENUE KLEBER - 75116", "stop_name": "CHARLES DE GAULLE - ETOILE - KLEBER"}, "geometry": {"type": "Point", "coordinates": [2.294242469445494, 48.87294217395915]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3a1a00ba0d0afd1b0faffd7fc4c52e801da7aa9f", "fields": {"departement": "75", "stop_lat": 48.87401247719477, "code_postal": "75108", "stop_lon": 2.296557776569808, "coord": [48.87401247719477, 2.296557776569808], "stop_id": 4472550, "stop_desc": "AVENUE DE FRIEDLAND - 75108", "stop_name": "CHARLES DE GAULLE - ETOILE - FRIEDLAND"}, "geometry": {"type": "Point", "coordinates": [2.296557776569808, 48.87401247719477]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ba65207fa9edd6548e9d24ef38c42c22e5b89853", "fields": {"departement": "75", "stop_lat": 48.87458037356659, "code_postal": "75108", "stop_lon": 2.3018710127789976, "coord": [48.87458037356659, 2.3018710127789976], "stop_id": 4472552, "stop_desc": "FACE 19 AV DE FRIEDLAND - 75108", "stop_name": "BALZAC"}, "geometry": {"type": "Point", "coordinates": [2.3018710127789976, 48.87458037356659]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9c549b4871eb4b2cceb067e7d5a11668e694e3e2", "fields": {"departement": "75", "stop_lat": 48.87508653842288, "code_postal": "75108", "stop_lon": 2.313451881624046, "coord": [48.87508653842288, 2.313451881624046], "stop_id": 4472555, "stop_desc": "127 BOULEVARD HAUSSMANN - 75108", "stop_name": "HAUSSMANN - MIROMESNIL"}, "geometry": {"type": "Point", "coordinates": [2.313451881624046, 48.87508653842288]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6f4b87a1f51d414edd83e497739b4aed3ec72c06", "fields": {"departement": "75", "stop_lat": 48.87529316389243, "code_postal": "75108", "stop_lon": 2.3130430364059853, "coord": [48.87529316389243, 2.3130430364059853], "stop_id": 4472556, "stop_desc": "142 BOULEVARD HAUSSMANN - 75108", "stop_name": "HAUSSMANN - MIROMESNIL"}, "geometry": {"type": "Point", "coordinates": [2.3130430364059853, 48.87529316389243]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e6f0846f0283eb497499a6fab888ecc38f517743", "fields": {"departement": "75", "stop_lat": 48.874863096583965, "code_postal": "75108", "stop_lon": 2.3207958046274593, "coord": [48.874863096583965, 2.3207958046274593], "stop_id": 4472557, "stop_desc": "FACE 24 RUE DE LA PEPINIERE - 75108", "stop_name": "SAINT-AUGUSTIN"}, "geometry": {"type": "Point", "coordinates": [2.3207958046274593, 48.874863096583965]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e139f44163421b82d5adf8e3277fd56dfff9ae2c", "fields": {"departement": "92", "stop_lat": 48.82209029844962, "code_postal": "92040", "stop_lon": 2.2729697120893, "coord": [48.82209029844962, 2.2729697120893], "stop_id": 4472616, "stop_desc": "4 RUE EMILE ZOLA - 92040", "stop_name": "E. ZOLA"}, "geometry": {"type": "Point", "coordinates": [2.2729697120893, 48.82209029844962]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "33b1093cc935f30b31ab442d61e9785f2c511c17", "fields": {"departement": "92", "stop_lat": 48.81981297222934, "code_postal": "92040", "stop_lon": 2.2668886606906438, "coord": [48.81981297222934, 2.2668886606906438], "stop_id": 4472618, "stop_desc": "R DE L'EGALITE - 92040", "stop_name": "PARC HENRI BARBUSSE"}, "geometry": {"type": "Point", "coordinates": [2.2668886606906438, 48.81981297222934]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "22334d753df0fcf4664949e11356efc431ea7bd2", "fields": {"departement": "92", "stop_lat": 48.81945109952639, "code_postal": "92040", "stop_lon": 2.262996588993593, "coord": [48.81945109952639, 2.262996588993593], "stop_id": 4472619, "stop_desc": "2-4 RUE D'EREVAN - 92040", "stop_name": "DEFENSE"}, "geometry": {"type": "Point", "coordinates": [2.262996588993593, 48.81945109952639]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aab201ddd53022baaadc489969b5ee95ba88cb22", "fields": {"departement": "92", "stop_lat": 48.82435504441102, "code_postal": "92040", "stop_lon": 2.2726946740287097, "coord": [48.82435504441102, 2.2726946740287097], "stop_id": 4472628, "stop_desc": "FACE 34 RUE DIDEROT - 92040", "stop_name": "MAIRIE D'ISSY-METRO"}, "geometry": {"type": "Point", "coordinates": [2.2726946740287097, 48.82435504441102]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "183e30f0ca4671caa5872121d4a0b51512f17914", "fields": {"departement": "92", "stop_lat": 48.90442755581318, "code_postal": "92035", "stop_lon": 2.2390039877341854, "coord": [48.90442755581318, 2.2390039877341854], "stop_id": 4472648, "stop_desc": "5 BD NATIONAL - 92035", "stop_name": "NORDMANN"}, "geometry": {"type": "Point", "coordinates": [2.2390039877341854, 48.90442755581318]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ae177d2b88af3e6c50eab6e542a2887bf234eb1e", "fields": {"departement": "92", "stop_lat": 48.90024931956762, "code_postal": "92026", "stop_lon": 2.239938857466106, "coord": [48.90024931956762, 2.239938857466106], "stop_id": 4472653, "stop_desc": "FACE 99 BD DE LA MISSION MARCHAND - 92026", "stop_name": "DIEPPE"}, "geometry": {"type": "Point", "coordinates": [2.239938857466106, 48.90024931956762]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "44910df4949ca7f37c48b05f5aba33ab9ecd8144", "fields": {"departement": "92", "stop_lat": 48.8871763106982, "code_postal": "92062", "stop_lon": 2.244092729902989, "coord": [48.8871763106982, 2.244092729902989], "stop_id": 4472661, "stop_desc": "39 RUE PAUL LAFARGUE - 92062", "stop_name": "GALLIENI"}, "geometry": {"type": "Point", "coordinates": [2.244092729902989, 48.8871763106982]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9c4ab413c41ecb9576da358d10ea6de322400c92", "fields": {"departement": "92", "stop_lat": 48.882994057899715, "code_postal": "92051", "stop_lon": 2.265453822468646, "coord": [48.882994057899715, 2.265453822468646], "stop_id": 4472666, "stop_desc": "151 AVENUE CHARLES DE GAULLE - 92051", "stop_name": "LES GRAVIERS"}, "geometry": {"type": "Point", "coordinates": [2.265453822468646, 48.882994057899715]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8f232ac2fa67558808aa3df9107399cc020a0c79", "fields": {"departement": "92", "stop_lat": 48.88347044692431, "code_postal": "92051", "stop_lon": 2.265562179942118, "coord": [48.88347044692431, 2.265562179942118], "stop_id": 4472667, "stop_desc": "130 BIS AVENUE CHARLES DE GAULLE - 92051", "stop_name": "LES GRAVIERS"}, "geometry": {"type": "Point", "coordinates": [2.265562179942118, 48.88347044692431]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6d7a29080ef7a4e4928b84186402f21b4164e860", "fields": {"departement": "75", "stop_lat": 48.87677297339352, "code_postal": "75108", "stop_lon": 2.300874862043233, "coord": [48.87677297339352, 2.300874862043233], "stop_id": 4472681, "stop_desc": "201-203 RUE DU FAUBOURG SAINT HONORE - 75108", "stop_name": "HOCHE - SAINT-HONORE"}, "geometry": {"type": "Point", "coordinates": [2.300874862043233, 48.87677297339352]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dd0db3e700c27a337199dc8ae301944b413f317d", "fields": {"departement": "75", "stop_lat": 48.87441332622057, "code_postal": "75108", "stop_lon": 2.318084616089399, "coord": [48.87441332622057, 2.318084616089399], "stop_id": 4472688, "stop_desc": "10-12 RUE LA BOETIE - 75108", "stop_name": "SAINT-AUGUSTIN"}, "geometry": {"type": "Point", "coordinates": [2.318084616089399, 48.87441332622057]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4cd95391451c347460e056757a3b2c837e5f1be6", "fields": {"departement": "75", "stop_lat": 48.87395603688644, "code_postal": "75108", "stop_lon": 2.3265729484538205, "coord": [48.87395603688644, 2.3265729484538205], "stop_id": 4472691, "stop_desc": "74-76 BOULEVARD HAUSSMANN - 75108", "stop_name": "ROME - HAUSSMANN"}, "geometry": {"type": "Point", "coordinates": [2.3265729484538205, 48.87395603688644]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3e7eda9e1a740cbab6fa3786cb9b7505b3aa5e1a", "fields": {"departement": "92", "stop_lat": 48.887111564357454, "code_postal": "92026", "stop_lon": 2.2537415598241908, "coord": [48.887111564357454, 2.2537415598241908], "stop_id": 4472698, "stop_desc": "BOULEVARD DE NEUILLY (SUR PISTE) - 92026", "stop_name": "PONT DE NEUILLY - RIVE GAUCHE"}, "geometry": {"type": "Point", "coordinates": [2.2537415598241908, 48.887111564357454]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9a95a50c1c984a945ee59f20db77af2f04b04bb5", "fields": {"departement": "92", "stop_lat": 48.889975774020385, "code_postal": "92026", "stop_lon": 2.249961745288486, "coord": [48.889975774020385, 2.249961745288486], "stop_id": 4472699, "stop_desc": "BOULEVARD CIRCULAIRE (SUR PISTE) - 92026", "stop_name": "ALSACE"}, "geometry": {"type": "Point", "coordinates": [2.249961745288486, 48.889975774020385]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "67df3509f49ad8bf4c0c92fff53e4c105b16d14f", "fields": {"departement": "95", "stop_lat": 48.92477310902637, "code_postal": "95063", "stop_lon": 2.20945267132122, "coord": [48.92477310902637, 2.20945267132122], "stop_id": 4472701, "stop_desc": "136 RUE EDOUARD VAILLANT - 95063", "stop_name": "EMILE ZOLA"}, "geometry": {"type": "Point", "coordinates": [2.20945267132122, 48.92477310902637]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "54080dadab4ef0c6021719df7cf4ed32def683a7", "fields": {"departement": "95", "stop_lat": 48.969555053657814, "code_postal": "95210", "stop_lon": 2.3039627475464566, "coord": [48.969555053657814, 2.3039627475464566], "stop_id": 4472704, "stop_desc": "FACE 4 AVENUE DE CEINTURE - 95210", "stop_name": "CASINO"}, "geometry": {"type": "Point", "coordinates": [2.3039627475464566, 48.969555053657814]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5e15512d42e9814f7e18bf834cd959a9c8909c2f", "fields": {"departement": "95", "stop_lat": 48.96880955751207, "code_postal": "95210", "stop_lon": 2.305396438763414, "coord": [48.96880955751207, 2.305396438763414], "stop_id": 4472705, "stop_desc": "FACE 3 BOULEVARD COTTE - 95210", "stop_name": "CASINO"}, "geometry": {"type": "Point", "coordinates": [2.305396438763414, 48.96880955751207]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8fd4061f408426d00b7a9506d6f065fecbb5c244", "fields": {"departement": "93", "stop_lat": 48.96320837383561, "code_postal": "93031", "stop_lon": 2.29704721447519, "coord": [48.96320837383561, 2.29704721447519], "stop_id": 4472708, "stop_desc": "66 AVENUE GALLIENI - 93031", "stop_name": "RUE DE SAINT-GRATIEN"}, "geometry": {"type": "Point", "coordinates": [2.29704721447519, 48.96320837383561]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a7f7be798bc4c2c57d64a0df2fd9c332ba94e519", "fields": {"departement": "93", "stop_lat": 48.96134764702893, "code_postal": "93031", "stop_lon": 2.2956156549923223, "coord": [48.96134764702893, 2.2956156549923223], "stop_id": 4472710, "stop_desc": "95-97 AVENUE JOFFRE - 93031", "stop_name": "CYGNE D'ENGHIEN"}, "geometry": {"type": "Point", "coordinates": [2.2956156549923223, 48.96134764702893]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ea5a719e21efe9e1dfc2739a6f7b09db8024099a", "fields": {"departement": "93", "stop_lat": 48.959327361641414, "code_postal": "93031", "stop_lon": 2.300857779808279, "coord": [48.959327361641414, 2.300857779808279], "stop_id": 4472712, "stop_desc": "AVENUE DE LATTRE DE TASSIGNY - 93031", "stop_name": "JOFFRE - DE LATTRE DE TASSIGNY"}, "geometry": {"type": "Point", "coordinates": [2.300857779808279, 48.959327361641414]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fe5757e5aac5c358b48f2ca30e3bf952a6de2339", "fields": {"departement": "93", "stop_lat": 48.95955204909924, "code_postal": "93031", "stop_lon": 2.3009258577690974, "coord": [48.95955204909924, 2.3009258577690974], "stop_id": 4472713, "stop_desc": "AVENUE DE LATTRE DE TASSIGNY - 93031", "stop_name": "JOFFRE - DE LATTRE DE TASSIGNY"}, "geometry": {"type": "Point", "coordinates": [2.3009258577690974, 48.95955204909924]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e98870355741a7c50553630686f685b29bd496b1", "fields": {"departement": "93", "stop_lat": 48.95482797177079, "code_postal": "93031", "stop_lon": 2.31229624732756, "coord": [48.95482797177079, 2.31229624732756], "stop_id": 4472718, "stop_desc": "AVENUE DE LATTRE DE TASSIGNY - 93031", "stop_name": "LACEPEDE"}, "geometry": {"type": "Point", "coordinates": [2.31229624732756, 48.95482797177079]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ed7151c090e597b47f91dcc4afe55c38fc7f7283", "fields": {"departement": "93", "stop_lat": 48.95317509187038, "code_postal": "93031", "stop_lon": 2.3157630040698804, "coord": [48.95317509187038, 2.3157630040698804], "stop_id": 4472721, "stop_desc": "AVENUE DE LATTRE DE TASSIGNY - 93031", "stop_name": "GUYNEMER - RUE DE PARIS"}, "geometry": {"type": "Point", "coordinates": [2.3157630040698804, 48.95317509187038]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3875df1b757b321dd3fc4e051296beea570afcb4", "fields": {"departement": "92", "stop_lat": 48.934041738195134, "code_postal": "92036", "stop_lon": 2.313233817568237, "coord": [48.934041738195134, 2.313233817568237], "stop_id": 4472737, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 92036", "stop_name": "PARC DES CHANTERAINES"}, "geometry": {"type": "Point", "coordinates": [2.313233817568237, 48.934041738195134]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f0564215712d7d5d325933732e377732daf6207c", "fields": {"departement": "92", "stop_lat": 48.93379028926518, "code_postal": "92036", "stop_lon": 2.3141614816029348, "coord": [48.93379028926518, 2.3141614816029348], "stop_id": 4472738, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 92036", "stop_name": "PARC DES CHANTERAINES"}, "geometry": {"type": "Point", "coordinates": [2.3141614816029348, 48.93379028926518]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4305f37dc04c6c118750c09ab7f8f9fdf477c7b1", "fields": {"departement": "92", "stop_lat": 48.933555153246445, "code_postal": "92036", "stop_lon": 2.3074914596392895, "coord": [48.933555153246445, 2.3074914596392895], "stop_id": 4472739, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 92036", "stop_name": "GENNEVILLIERS RER"}, "geometry": {"type": "Point", "coordinates": [2.3074914596392895, 48.933555153246445]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5a5cbb825ad1bd4f2eee39f38adb5676c4d614a3", "fields": {"departement": "92", "stop_lat": 48.933114711338796, "code_postal": "92036", "stop_lon": 2.30715070714464, "coord": [48.933114711338796, 2.30715070714464], "stop_id": 4472740, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 92036", "stop_name": "GENNEVILLIERS RER"}, "geometry": {"type": "Point", "coordinates": [2.30715070714464, 48.933114711338796]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "53aff5cf08d551b0ea8797c5ecf2f4b144d83e4a", "fields": {"departement": "92", "stop_lat": 48.931607590506914, "code_postal": "92036", "stop_lon": 2.288137661423614, "coord": [48.931607590506914, 2.288137661423614], "stop_id": 4472744, "stop_desc": "AVENUE LUCIEN LANTERNIER - 92036", "stop_name": "LE LUTH"}, "geometry": {"type": "Point", "coordinates": [2.288137661423614, 48.931607590506914]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3ffb25b1be3867804757cc9c6699e4f96d94d8a2", "fields": {"departement": "75", "stop_lat": 48.87524105469884, "code_postal": "75108", "stop_lon": 2.3248559340121537, "coord": [48.87524105469884, 2.3248559340121537], "stop_id": 4472773, "stop_desc": "119-121 RUE SAINT LAZARE - 75108", "stop_name": "GARE SAINT-LAZARE"}, "geometry": {"type": "Point", "coordinates": [2.3248559340121537, 48.87524105469884]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4438787a6e8fd91ff0b9f26a94f316649bc514e5", "fields": {"departement": "92", "stop_lat": 48.92524363395361, "code_postal": "92036", "stop_lon": 2.2852387696877594, "coord": [48.92524363395361, 2.2852387696877594], "stop_id": 4472782, "stop_desc": "BOULEVARD PIERRE DE COUBERTIN - 92036", "stop_name": "ABBE GLATZ"}, "geometry": {"type": "Point", "coordinates": [2.2852387696877594, 48.92524363395361]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a876bee4dc9b363e0455ddc315b058ed61d45480", "fields": {"departement": "92", "stop_lat": 48.928370858133576, "code_postal": "92036", "stop_lon": 2.2847309866572316, "coord": [48.928370858133576, 2.2847309866572316], "stop_id": 4472783, "stop_desc": "BOULEVARD PIERRE DE COUBERTIN - 92036", "stop_name": "PATINOIRE"}, "geometry": {"type": "Point", "coordinates": [2.2847309866572316, 48.928370858133576]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0831d922b80d55329f4fc291c77fbad8a2e05070", "fields": {"departement": "92", "stop_lat": 48.93262785777364, "code_postal": "92036", "stop_lon": 2.3014903497756682, "coord": [48.93262785777364, 2.3014903497756682], "stop_id": 4472785, "stop_desc": "FACE 4 RUE JULES LAROSE - 92036", "stop_name": "TIMBAUD - FELICIE"}, "geometry": {"type": "Point", "coordinates": [2.3014903497756682, 48.93262785777364]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "72b730e2e8b49476875cf0bb51e0a59448ce6f63", "fields": {"departement": "77", "stop_lat": 48.874532919282075, "code_postal": "77108", "stop_lon": 2.581547949321578, "coord": [48.874532919282075, 2.581547949321578], "stop_id": 4472792, "stop_desc": "70 AVENUE DE LA RESISTANCE - 77108", "stop_name": "CHELLES - GOURNAY RER"}, "geometry": {"type": "Point", "coordinates": [2.581547949321578, 48.874532919282075]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ed6baba5b8f6e8698f183f0e42b7e916355c2151", "fields": {"departement": "93", "stop_lat": 48.865877356722464, "code_postal": "93032", "stop_lon": 2.5637160575162254, "coord": [48.865877356722464, 2.5637160575162254], "stop_id": 4472798, "stop_desc": "171 AVENUE PAUL VAILLANT COUTURIER - 93032", "stop_name": "POINTE DE GOURNAY"}, "geometry": {"type": "Point", "coordinates": [2.5637160575162254, 48.865877356722464]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "783fc74b5408ee585d99f9c12601e411b2f08794", "fields": {"departement": "93", "stop_lat": 48.881032085028075, "code_postal": "93032", "stop_lon": 2.5427428357008504, "coord": [48.881032085028075, 2.5427428357008504], "stop_id": 4472806, "stop_desc": "RUE JULES GUESDE - 93032", "stop_name": "JEAN MOULIN"}, "geometry": {"type": "Point", "coordinates": [2.5427428357008504, 48.881032085028075]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4686e6cc0173c59d93e88de1949d90755664b13d", "fields": {"departement": "93", "stop_lat": 48.88208234058181, "code_postal": "93032", "stop_lon": 2.5382092607526596, "coord": [48.88208234058181, 2.5382092607526596], "stop_id": 4472808, "stop_desc": "37 AVENUE DU PRESIDENT POMPIDOU - 93032", "stop_name": "FLORIAN"}, "geometry": {"type": "Point", "coordinates": [2.5382092607526596, 48.88208234058181]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "478a7f9c7c162a5a1dc30480c20e6cea1bb409b7", "fields": {"departement": "93", "stop_lat": 48.8826966660454, "code_postal": "93077", "stop_lon": 2.525238738981049, "coord": [48.8826966660454, 2.525238738981049], "stop_id": 4472812, "stop_desc": "FACE 180 RUE GRANDE RUE - 93077", "stop_name": "GAGNY RER"}, "geometry": {"type": "Point", "coordinates": [2.525238738981049, 48.8826966660454]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ce503f093bfd2458985e47ef8255333284a9c887", "fields": {"departement": "93", "stop_lat": 48.882641730764206, "code_postal": "93077", "stop_lon": 2.525879007924305, "coord": [48.882641730764206, 2.525879007924305], "stop_id": 4472813, "stop_desc": "184 RUE GRANDE RUE - 93077", "stop_name": "GAGNY RER"}, "geometry": {"type": "Point", "coordinates": [2.525879007924305, 48.882641730764206]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "38d54d71eb6ceb0f0bc1f16887a657efdda17024", "fields": {"departement": "93", "stop_lat": 48.92270485983442, "code_postal": "93029", "stop_lon": 2.457619155307906, "coord": [48.92270485983442, 2.457619155307906], "stop_id": 5794659, "stop_desc": "220 AVENUE HENRI BARBUSSE - 93029", "stop_name": "BARBUSSE - CROIZAT"}, "geometry": {"type": "Point", "coordinates": [2.457619155307906, 48.92270485983442]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "73c4d9cca123e4e31f86de201e37f927ba0c5879", "fields": {"departement": "93", "stop_lat": 48.90676370239889, "code_postal": "93014", "stop_lon": 2.55713262535528, "coord": [48.90676370239889, 2.55713262535528], "stop_id": 5794666, "stop_desc": "AVENUE JEAN MOULIN - 93014", "stop_name": "EMILE ZOLA"}, "geometry": {"type": "Point", "coordinates": [2.55713262535528, 48.90676370239889]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b5b95915a3e6afba84d6aae3303ce061c8a4c4d7", "fields": {"departement": "93", "stop_lat": 48.905473006780014, "code_postal": "93014", "stop_lon": 2.5502833823341953, "coord": [48.905473006780014, 2.5502833823341953], "stop_id": 5794667, "stop_desc": "BOULEVARD EMILE ZOLA - 93014", "stop_name": "COLLEGE ROMAIN ROLLAND"}, "geometry": {"type": "Point", "coordinates": [2.5502833823341953, 48.905473006780014]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "898294a295c75f6a21b587ab880f928dcb036a96", "fields": {"departement": "93", "stop_lat": 48.900976669119245, "code_postal": "93062", "stop_lon": 2.5134453875476033, "coord": [48.900976669119245, 2.5134453875476033], "stop_id": 5794676, "stop_desc": "13 AVENUE THIERS - 93062", "stop_name": "CENTRE SPORTIF - PISCINE"}, "geometry": {"type": "Point", "coordinates": [2.5134453875476033, 48.900976669119245]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1b7767ff6eef422df7e0cc722e4fa9892d071c39", "fields": {"departement": "93", "stop_lat": 48.90313270953216, "code_postal": "93057", "stop_lon": 2.5078634491475795, "coord": [48.90313270953216, 2.5078634491475795], "stop_id": 5794678, "stop_desc": "177-179 AVENUE JEAN JAURES - 93057", "stop_name": "PRESIDENT WILSON - MAIRIE"}, "geometry": {"type": "Point", "coordinates": [2.5078634491475795, 48.90313270953216]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d9cfcf51306c3e7d690617d43420599fec16e8d4", "fields": {"departement": "93", "stop_lat": 48.90416102868509, "code_postal": "93057", "stop_lon": 2.5051948388058465, "coord": [48.90416102868509, 2.5051948388058465], "stop_id": 5794679, "stop_desc": "FACE 120 AVENUE JEAN JAURES - 93057", "stop_name": "PIERRE BROSSOLETTE - LA BASOCHE"}, "geometry": {"type": "Point", "coordinates": [2.5051948388058465, 48.90416102868509]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5d7bcbb1766a693fffdb446607b69407dd7411a6", "fields": {"departement": "93", "stop_lat": 48.90752818929823, "code_postal": "93008", "stop_lon": 2.45522530113179, "coord": [48.90752818929823, 2.45522530113179], "stop_id": 5794689, "stop_desc": "AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "LAMARTINE"}, "geometry": {"type": "Point", "coordinates": [2.45522530113179, 48.90752818929823]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "977e839f6bc16cefa22e8283aceed4760d4bb379", "fields": {"departement": "93", "stop_lat": 48.90748037088362, "code_postal": "93008", "stop_lon": 2.448885619248054, "coord": [48.90748037088362, 2.448885619248054], "stop_id": 5794691, "stop_desc": "PISTE GARE ROUTIERE - 93008", "stop_name": "BOBIGNY - PABLO PICASSO"}, "geometry": {"type": "Point", "coordinates": [2.448885619248054, 48.90748037088362]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3bdf9a4b33a3a0272fd0da596e789d4baf3af8fd", "fields": {"departement": "93", "stop_lat": 48.912756874368, "code_postal": "93008", "stop_lon": 2.437525501906735, "coord": [48.912756874368, 2.437525501906735], "stop_id": 5794695, "stop_desc": "AVENUE PAUL VAILLANT-COUTURIER - 93008", "stop_name": "ESCADRILLE NORMANDIE NIEMEN - PAUL VAILLANT-COUTURIER-TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.437525501906735, 48.912756874368]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ee924126726dd8b68962a6485db6f7236f8feabd", "fields": {"departement": "93", "stop_lat": 48.91618499123219, "code_postal": "93029", "stop_lon": 2.43256871468153, "coord": [48.91618499123219, 2.43256871468153], "stop_id": 5794698, "stop_desc": "FACE 40 RUE FERNAND PENA - 93029", "stop_name": "ANDRE SIGONNEY"}, "geometry": {"type": "Point", "coordinates": [2.43256871468153, 48.91618499123219]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4e1401eaf47f373b91324548a7315348df71639e", "fields": {"departement": "77", "stop_lat": 48.84523513115238, "code_postal": "77083", "stop_lon": 2.585263641276989, "coord": [48.84523513115238, 2.585263641276989], "stop_id": 5815083, "stop_desc": "RUE NELSON MANDELA - 77083", "stop_name": "LYCEE RENE DESCARTES"}, "geometry": {"type": "Point", "coordinates": [2.585263641276989, 48.84523513115238]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f3cb571788edf5400b1eb9df6fe51ba8bedbf481", "fields": {"departement": "77", "stop_lat": 48.84523513115238, "code_postal": "77083", "stop_lon": 2.585263641276989, "coord": [48.84523513115238, 2.585263641276989], "stop_id": 5815086, "stop_desc": "RUE NELSON MANDELA - 77083", "stop_name": "LYCEE RENE DESCARTES"}, "geometry": {"type": "Point", "coordinates": [2.585263641276989, 48.84523513115238]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0186bb9007e3e5423ad6b80480eb71e0369d060a", "fields": {"departement": "91", "stop_lat": 48.712915379986754, "code_postal": "91027", "stop_lon": 2.39530617333297, "coord": [48.712915379986754, 2.39530617333297], "stop_id": 5816787, "stop_desc": "PL DU 19 MARS 1962 - 91027", "stop_name": "DELALANDE PASTEUR"}, "geometry": {"type": "Point", "coordinates": [2.39530617333297, 48.712915379986754]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c87c773c85b84e2a6bde1bdc6e29fd53a87351f4", "fields": {"departement": "91", "stop_lat": 48.702172290409386, "code_postal": "91027", "stop_lon": 2.378156639150452, "coord": [48.702172290409386, 2.378156639150452], "stop_id": 5816791, "stop_desc": "73-75 AV JULES VALLES - 91027", "stop_name": "PRESIDENT DENIS"}, "geometry": {"type": "Point", "coordinates": [2.378156639150452, 48.702172290409386]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "728a5396e07f19cb31cb106bcd0cbeebe1fc79e4", "fields": {"departement": "91", "stop_lat": 48.69882283568416, "code_postal": "91027", "stop_lon": 2.3671959171554895, "coord": [48.69882283568416, 2.3671959171554895], "stop_id": 5816794, "stop_desc": "40-42 R DE LA CONCORDE - 91027", "stop_name": "COQUELICOTS"}, "geometry": {"type": "Point", "coordinates": [2.3671959171554895, 48.69882283568416]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2a166d54780f1f4623ba5879b37910575fedf418", "fields": {"departement": "91", "stop_lat": 48.69923715878791, "code_postal": "91027", "stop_lon": 2.3636113249873714, "coord": [48.69923715878791, 2.3636113249873714], "stop_id": 5816795, "stop_desc": "76-78 R DE LA CONCORDE - 91027", "stop_name": "PROGRES"}, "geometry": {"type": "Point", "coordinates": [2.3636113249873714, 48.69923715878791]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c05fb97fb12b5d95a3d95ea69deb4833c1a88b0f", "fields": {"departement": "91", "stop_lat": 48.70334608676053, "code_postal": "91027", "stop_lon": 2.3576789573845205, "coord": [48.70334608676053, 2.3576789573845205], "stop_id": 5816798, "stop_desc": "2-4 AV CONDORCET - 91027", "stop_name": "CONDORCET"}, "geometry": {"type": "Point", "coordinates": [2.3576789573845205, 48.70334608676053]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "209630ede2a54a1598a4b934d19768ea1cebd76b", "fields": {"departement": "91", "stop_lat": 48.705361322885565, "code_postal": "91027", "stop_lon": 2.383319738124537, "coord": [48.705361322885565, 2.383319738124537], "stop_id": 5816805, "stop_desc": "190-192 AV JULES VALLES - 91027", "stop_name": "PANORAMA"}, "geometry": {"type": "Point", "coordinates": [2.383319738124537, 48.705361322885565]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "973f66c09e3d8231835116c35130c77c3aac82f6", "fields": {"departement": "91", "stop_lat": 48.70847215909083, "code_postal": "91027", "stop_lon": 2.3811630638879526, "coord": [48.70847215909083, 2.3811630638879526], "stop_id": 5816814, "stop_desc": "44 AVENUE MARCEL SEMBAT - 91027", "stop_name": "SEMBAT"}, "geometry": {"type": "Point", "coordinates": [2.3811630638879526, 48.70847215909083]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0858a7b7609dcff596c9177d3271deda456638fb", "fields": {"departement": "92", "stop_lat": 48.89880128124929, "code_postal": "92024", "stop_lon": 2.3031358073195363, "coord": [48.89880128124929, 2.3031358073195363], "stop_id": 5821501, "stop_desc": "27 RUE HENRI BARBUSSE - 92024", "stop_name": "CASTERES"}, "geometry": {"type": "Point", "coordinates": [2.3031358073195363, 48.89880128124929]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "de9c4fa58f12e1f6d3e8ed5cb602c4acd80994a9", "fields": {"departement": "92", "stop_lat": 48.81696875629348, "code_postal": "92075", "stop_lon": 2.275711605694709, "coord": [48.81696875629348, 2.275711605694709], "stop_id": 5851178, "stop_desc": "133 AVENUE DU GENERAL DE GAULLE - 92075", "stop_name": "GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.275711605694709, 48.81696875629348]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5e9f7afcd8966ad604ce2d9f5e88d9625ecdd870", "fields": {"departement": "94", "stop_lat": 48.84484956402065, "code_postal": "94080", "stop_lon": 2.436863176166916, "coord": [48.84484956402065, 2.436863176166916], "stop_id": 5922160, "stop_desc": "16 AVENUE DE PARIS - 94080", "stop_name": "AVENUE DU CHATEAU"}, "geometry": {"type": "Point", "coordinates": [2.436863176166916, 48.84484956402065]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9b20a7cf3f2b4ae271c1c403e9d2b8ed4002e82e", "fields": {"departement": "93", "stop_lat": 48.86062649827987, "code_postal": "93006", "stop_lon": 2.419989610839223, "coord": [48.86062649827987, 2.419989610839223], "stop_id": 5922169, "stop_desc": "81 AVENUE DE LA REPUBLIQUE - 93006", "stop_name": "REPUBLIQUE - ROBESPIERRE"}, "geometry": {"type": "Point", "coordinates": [2.419989610839223, 48.86062649827987]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fd517e08e11bebf2a4383e3196c7c720af44c2d2", "fields": {"departement": "93", "stop_lat": 48.86833176606974, "code_postal": "93006", "stop_lon": 2.415424513890674, "coord": [48.86833176606974, 2.415424513890674], "stop_id": 5922173, "stop_desc": "20 RUE ADELAIDE LAHAYE - 93006", "stop_name": "LA POSTE"}, "geometry": {"type": "Point", "coordinates": [2.415424513890674, 48.86833176606974]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e534767600c0e1f42ea2290006a690a6271aa84d", "fields": {"departement": "93", "stop_lat": 48.87793106673307, "code_postal": "93006", "stop_lon": 2.4269799668721013, "coord": [48.87793106673307, 2.4269799668721013], "stop_id": 5922180, "stop_desc": "210 RUE SADI CARNOT - 93006", "stop_name": "FLOREAL"}, "geometry": {"type": "Point", "coordinates": [2.4269799668721013, 48.87793106673307]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "34dc729a6360b3464465f32186d1c9d360ab867d", "fields": {"departement": "93", "stop_lat": 48.87833293344417, "code_postal": "93006", "stop_lon": 2.430318988216115, "coord": [48.87833293344417, 2.430318988216115], "stop_id": 5922181, "stop_desc": "42 RUE FLOREAL - 93006", "stop_name": "JEANNE HORNET"}, "geometry": {"type": "Point", "coordinates": [2.430318988216115, 48.87833293344417]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "871c327bc808d042f48ee3ec829e5425a1f59d7a", "fields": {"departement": "93", "stop_lat": 48.879273655054455, "code_postal": "93063", "stop_lon": 2.4340133413364473, "coord": [48.879273655054455, 2.4340133413364473], "stop_id": 5922182, "stop_desc": "149 RUE DE LA REPUBLIQUE - 93063", "stop_name": "LES NOYERS"}, "geometry": {"type": "Point", "coordinates": [2.4340133413364473, 48.879273655054455]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "954160eba81a8fbd513092f9fc4a83fd552fbc1c", "fields": {"departement": "93", "stop_lat": 48.88289931879224, "code_postal": "93063", "stop_lon": 2.440206776933691, "coord": [48.88289931879224, 2.440206776933691], "stop_id": 5922184, "stop_desc": "FACE 6 RUE DE LA REPUBLIQUE - 93063", "stop_name": "CARNOT"}, "geometry": {"type": "Point", "coordinates": [2.440206776933691, 48.88289931879224]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8908811493734842e2d22ebd1e2e9c7334de7475", "fields": {"departement": "93", "stop_lat": 48.88518669153142, "code_postal": "93063", "stop_lon": 2.4347193879788533, "coord": [48.88518669153142, 2.4347193879788533], "stop_id": 5922185, "stop_desc": "4 AVENUE PAUL VAILLANT-COUTURIER - 93063", "stop_name": "MAIRIE DE ROMAINVILLE"}, "geometry": {"type": "Point", "coordinates": [2.4347193879788533, 48.88518669153142]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ce60a967d831e18715dc044f06b16dd3f7a49a87", "fields": {"departement": "93", "stop_lat": 48.89186056606275, "code_postal": "93063", "stop_lon": 2.4279172503975497, "coord": [48.89186056606275, 2.4279172503975497], "stop_id": 5922189, "stop_desc": "137 AVENUE DU DOCTEUR VAILLANT - 93063", "stop_name": "CENTRE D'ACTIVITES"}, "geometry": {"type": "Point", "coordinates": [2.4279172503975497, 48.89186056606275]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fdf3dd18e19ae29911fb7c079e459f5c54b64afa", "fields": {"departement": "93", "stop_lat": 48.89403055824636, "code_postal": "93063", "stop_lon": 2.4341499324983342, "coord": [48.89403055824636, 2.4341499324983342], "stop_id": 5922191, "stop_desc": "115-119 AVENUE GASTON ROUSSEL - 93063", "stop_name": "LOUISE DORY"}, "geometry": {"type": "Point", "coordinates": [2.4341499324983342, 48.89403055824636]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "09e70a60312d24c052f3dc36d57ab84af20e9e9c", "fields": {"departement": "93", "stop_lat": 48.895321700838004, "code_postal": "93055", "stop_lon": 2.426492125461206, "coord": [48.895321700838004, 2.426492125461206], "stop_id": 5922193, "stop_desc": "16 ROUTE DE NOISY - 93055", "stop_name": "PANTIN - RAYMOND QUENEAU"}, "geometry": {"type": "Point", "coordinates": [2.426492125461206, 48.895321700838004]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "57e05da986bc75b1522375e69de1947085baf464", "fields": {"departement": "93", "stop_lat": 48.88901142280444, "code_postal": "93063", "stop_lon": 2.4281848391032765, "coord": [48.88901142280444, 2.4281848391032765], "stop_id": 5922199, "stop_desc": "77 AVENUE DU COLONEL FABIEN - 93063", "stop_name": "MANEYROL"}, "geometry": {"type": "Point", "coordinates": [2.4281848391032765, 48.88901142280444]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5f9597cc1d63e4cdf66148810e9dd1af0f1bfbcf", "fields": {"departement": "93", "stop_lat": 48.87598399155761, "code_postal": "93006", "stop_lon": 2.4226710333967394, "coord": [48.87598399155761, 2.4226710333967394], "stop_id": 5922208, "stop_desc": "AVENUE GAMBETTA - 93006", "stop_name": "RUE DE PANTIN"}, "geometry": {"type": "Point", "coordinates": [2.4226710333967394, 48.87598399155761]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "35af96a78b073d8d7c88e8728901465c555dba3c", "fields": {"departement": "93", "stop_lat": 48.86699095256208, "code_postal": "93006", "stop_lon": 2.41796996305945, "coord": [48.86699095256208, 2.41796996305945], "stop_id": 5922213, "stop_desc": "13 RUE SADI CARNOT - 93006", "stop_name": "CENTRE DE SANTE"}, "geometry": {"type": "Point", "coordinates": [2.41796996305945, 48.86699095256208]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1640f419c6712b822e6094daa1ce900ef2376925", "fields": {"departement": "94", "stop_lat": 48.846555235878235, "code_postal": "94080", "stop_lon": 2.428069563648107, "coord": [48.846555235878235, 2.428069563648107], "stop_id": 5922222, "stop_desc": "FACE 8 RUE VICTOR BASCH - 94080", "stop_name": "VINCENNES RER"}, "geometry": {"type": "Point", "coordinates": [2.428069563648107, 48.846555235878235]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d7e6e50442570ad86dd975095119b18a7ac97205", "fields": {"departement": "94", "stop_lat": 48.8446246823592, "code_postal": "94080", "stop_lon": 2.437094232812113, "coord": [48.8446246823592, 2.437094232812113], "stop_id": 5922224, "stop_desc": "FACE 10 AVENUE DE PARIS - 94080", "stop_name": "AVENUE DU CHATEAU"}, "geometry": {"type": "Point", "coordinates": [2.437094232812113, 48.8446246823592]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2d4e90ba9c1040427ca51f0fb2dae4b1b141a982", "fields": {"departement": "75", "stop_lat": 48.84408977596744, "code_postal": "75112", "stop_lon": 2.4424854671358247, "coord": [48.84408977596744, 2.4424854671358247], "stop_id": 5922225, "stop_desc": "PISTE GARE ROUTIERE - 75112", "stop_name": "CHATEAU DE VINCENNES"}, "geometry": {"type": "Point", "coordinates": [2.4424854671358247, 48.84408977596744]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1a2eec9c7c74f27f369d898ede3ac0aceea12ef7", "fields": {"departement": "93", "stop_lat": 48.90902713462094, "code_postal": "93001", "stop_lon": 2.39769369061661, "coord": [48.90902713462094, 2.39769369061661], "stop_id": 5944488, "stop_desc": "151 AVENUE JEAN JAURES - 93001", "stop_name": "CIMETIERE PARISIEN"}, "geometry": {"type": "Point", "coordinates": [2.39769369061661, 48.90902713462094]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "176dd577b7155d069a341efddaa1431eb5faa10f", "fields": {"departement": "93", "stop_lat": 48.905568514762734, "code_postal": "93055", "stop_lon": 2.3948676300070235, "coord": [48.905568514762734, 2.3948676300070235], "stop_id": 5944489, "stop_desc": "FACE 3 R CONDORCET - 93055", "stop_name": "CONDORCET"}, "geometry": {"type": "Point", "coordinates": [2.3948676300070235, 48.905568514762734]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "005355da05841e8bd7905b6d751f4a18ae74956f", "fields": {"departement": "93", "stop_lat": 48.90231379408555, "code_postal": "93055", "stop_lon": 2.3976858600130906, "coord": [48.90231379408555, 2.3976858600130906], "stop_id": 5944491, "stop_desc": "47 R DENIS PAPIN - 93055", "stop_name": "CARTIER BRESSON"}, "geometry": {"type": "Point", "coordinates": [2.3976858600130906, 48.90231379408555]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "47f0ba455fcc063f2648b45f2f6f8bfedc6cc9e0", "fields": {"departement": "93", "stop_lat": 48.895302679328665, "code_postal": "93055", "stop_lon": 2.399926679861778, "coord": [48.895302679328665, 2.399926679861778], "stop_id": 5944496, "stop_desc": "33 AVENUE DU GENERAL LECLERC - 93055", "stop_name": "CENTRE NATIONAL DE LA DANSE"}, "geometry": {"type": "Point", "coordinates": [2.399926679861778, 48.895302679328665]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8e7e348511c5975196db5d5682754c7a28915fc8", "fields": {"departement": "93", "stop_lat": 48.891686419646405, "code_postal": "93055", "stop_lon": 2.4061236501025007, "coord": [48.891686419646405, 2.4061236501025007], "stop_id": 5944501, "stop_desc": "92 AVENUE JEAN LOLIVE - 93055", "stop_name": "ETIENNE MARCEL"}, "geometry": {"type": "Point", "coordinates": [2.4061236501025007, 48.891686419646405]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "051b1927d8f321858196f9e810d6724b2662fdf9", "fields": {"departement": "93", "stop_lat": 48.89246667262557, "code_postal": "93055", "stop_lon": 2.40889148187052, "coord": [48.89246667262557, 2.40889148187052], "stop_id": 5944503, "stop_desc": "99 AV JEAN LOLIVE - 93055", "stop_name": "CINE 104"}, "geometry": {"type": "Point", "coordinates": [2.40889148187052, 48.89246667262557]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9f6d14229e53b7d850faf7098d1432ca9c78fe0f", "fields": {"departement": "93", "stop_lat": 48.89058768492959, "code_postal": "93055", "stop_lon": 2.4099928367937338, "coord": [48.89058768492959, 2.4099928367937338], "stop_id": 5944505, "stop_desc": "29 RUE JULES AUFFRET - 93055", "stop_name": "8 MAI 1945"}, "geometry": {"type": "Point", "coordinates": [2.4099928367937338, 48.89058768492959]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cd508ba6f83935290c6129b1a76c1cc9441fc74f", "fields": {"departement": "93", "stop_lat": 48.89093026224654, "code_postal": "93055", "stop_lon": 2.421986951157519, "coord": [48.89093026224654, 2.421986951157519], "stop_id": 5944514, "stop_desc": "AV ANATOLE FRANCE - 93055", "stop_name": "JULES JASLIN"}, "geometry": {"type": "Point", "coordinates": [2.421986951157519, 48.89093026224654]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3c714fd385a0d303fac37cab5f9690af2e9d8148", "fields": {"departement": "93", "stop_lat": 48.88341488530977, "code_postal": "93055", "stop_lon": 2.41161802978753, "coord": [48.88341488530977, 2.41161802978753], "stop_id": 5944519, "stop_desc": "77 RUE JULES AUFFRET - 93055", "stop_name": "CONVENTION"}, "geometry": {"type": "Point", "coordinates": [2.41161802978753, 48.88341488530977]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "82a9650439cc874a1c3bc51e3033f161a08aa8a0", "fields": {"departement": "93", "stop_lat": 48.88733409643871, "code_postal": "93055", "stop_lon": 2.410356231754876, "coord": [48.88733409643871, 2.410356231754876], "stop_id": 5944521, "stop_desc": "59 RUE JULES AUFFRET - 93055", "stop_name": "MONTIGNY - MAISON DE RETRAITE"}, "geometry": {"type": "Point", "coordinates": [2.410356231754876, 48.88733409643871]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eb4bd1b8fc09905bffb8292ba0802e71a7bcc285", "fields": {"departement": "93", "stop_lat": 48.90286408674964, "code_postal": "93055", "stop_lon": 2.393433235175746, "coord": [48.90286408674964, 2.393433235175746], "stop_id": 5944527, "stop_desc": "FACE 1-3 R GABRIELLE JOSSERAND - 93055", "stop_name": "QUATRE CHEMINS - LA POSTE"}, "geometry": {"type": "Point", "coordinates": [2.393433235175746, 48.90286408674964]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "852881e44ee5ef25d53e7d49d3d353509a53625a", "fields": {"departement": "93", "stop_lat": 48.91432621093042, "code_postal": "93001", "stop_lon": 2.403835749858755, "coord": [48.91432621093042, 2.403835749858755], "stop_id": 5944529, "stop_desc": "AVENUE JEAN JAURES - 93001", "stop_name": "FORT D'AUBERVILLIERS - METRO"}, "geometry": {"type": "Point", "coordinates": [2.403835749858755, 48.91432621093042]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2a235607c7220118207302608016209f3e4656e8", "fields": {"departement": "93", "stop_lat": 48.91371257042071, "code_postal": "93055", "stop_lon": 2.4082118350408837, "coord": [48.91371257042071, 2.4082118350408837], "stop_id": 5944535, "stop_desc": "AVENUE DES COURTILLIERES - 93055", "stop_name": "DIVISION LECLERC - COURTILLIERES"}, "geometry": {"type": "Point", "coordinates": [2.4082118350408837, 48.91371257042071]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7a6a29e21851e6ac728db46879a43249e576a576", "fields": {"departement": "94", "stop_lat": 48.80046006629337, "code_postal": "94046", "stop_lon": 2.4360433254631566, "coord": [48.80046006629337, 2.4360433254631566], "stop_id": 5944775, "stop_desc": "31-33 RUE VICTOR HUGO - 94046", "stop_name": "HUGO - BLUM"}, "geometry": {"type": "Point", "coordinates": [2.4360433254631566, 48.80046006629337]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aaaf81e4c4b14da23d61f9ae92b88765e25a2eee", "fields": {"departement": "94", "stop_lat": 48.77100973260041, "code_postal": "94028", "stop_lon": 2.4614149769056626, "coord": [48.77100973260041, 2.4614149769056626], "stop_id": 5944776, "stop_desc": "91-95 BOULEVARD JEAN-BAPTISTE OUDRY - 94028", "stop_name": "LA SOURCE"}, "geometry": {"type": "Point", "coordinates": [2.4614149769056626, 48.77100973260041]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b5685e6a41161e100bc1747147a4c2dc54a5f0de", "fields": {"departement": "93", "stop_lat": 48.917738008626415, "code_postal": "93029", "stop_lon": 2.434712453448304, "coord": [48.917738008626415, 2.434712453448304], "stop_id": 5976288, "stop_desc": "RUE FERNAND PENA - 93029", "stop_name": "FERNAND PENA"}, "geometry": {"type": "Point", "coordinates": [2.434712453448304, 48.917738008626415]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fde0928fadbae313867629713c6e3f5f700adaaf", "fields": {"departement": "93", "stop_lat": 48.9216835727608, "code_postal": "93029", "stop_lon": 2.4448386988498934, "coord": [48.9216835727608, 2.4448386988498934], "stop_id": 5976291, "stop_desc": "5 RUE DE LA REPUBLIQUE - 93029", "stop_name": "CHARLES GIDE"}, "geometry": {"type": "Point", "coordinates": [2.4448386988498934, 48.9216835727608]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "81caf78af4275d0787a607dd3a6b5e4b7a5a5241", "fields": {"departement": "92", "stop_lat": 48.80648956893726, "code_postal": "92020", "stop_lon": 2.2982707549064973, "coord": [48.80648956893726, 2.2982707549064973], "stop_id": 5976624, "stop_desc": "140 AVENUE DE LA REPUBLIQUE - 92020", "stop_name": "PIERRE SEMARD - CHATILLON-MONTROUGE"}, "geometry": {"type": "Point", "coordinates": [2.2982707549064973, 48.80648956893726]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5c1f24c0207e2ddfc3dce289e08ef6041ebd40be", "fields": {"departement": "92", "stop_lat": 48.791260868710474, "code_postal": "92032", "stop_lon": 2.2892906255623, "coord": [48.791260868710474, 2.2892906255623], "stop_id": 5976635, "stop_desc": "AVENUE JEANNE ET MAURICE DOLIVET - 92032", "stop_name": "THEATRE DES SOURCES"}, "geometry": {"type": "Point", "coordinates": [2.2892906255623, 48.791260868710474]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2a18a296bcdad976ae9bae1f7183a06c5f72fe98", "fields": {"departement": "92", "stop_lat": 48.78621774264672, "code_postal": "92032", "stop_lon": 2.28710541769771, "coord": [48.78621774264672, 2.28710541769771], "stop_id": 5976640, "stop_desc": "23BIS-25 AVENUE JEAN MOULIN - 92032", "stop_name": "AUGUSTIN CLAUDE"}, "geometry": {"type": "Point", "coordinates": [2.28710541769771, 48.78621774264672]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "44619e3b76fb76bd3f63a87ea346657f2edba53a", "fields": {"departement": "92", "stop_lat": 48.779356696723205, "code_postal": "92019", "stop_lon": 2.279958520425801, "coord": [48.779356696723205, 2.279958520425801], "stop_id": 5976643, "stop_desc": "AVENUE DU PLESSIS - 92019", "stop_name": "ROBINSON RER"}, "geometry": {"type": "Point", "coordinates": [2.279958520425801, 48.779356696723205]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3f0c79ff94cc3146e15813fb96e0f94c8729ca6c", "fields": {"departement": "92", "stop_lat": 48.77569758793708, "code_postal": "92019", "stop_lon": 2.277936321101258, "coord": [48.77569758793708, 2.277936321101258], "stop_id": 5976645, "stop_desc": "15-17 AVENUE ROGER SALENGRO - 92019", "stop_name": "PROFESSEUR EINSTEIN"}, "geometry": {"type": "Point", "coordinates": [2.277936321101258, 48.77569758793708]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "30bbfeab09950bb816cc019e39aab2a60480dc62", "fields": {"departement": "92", "stop_lat": 48.76784850968755, "code_postal": "92019", "stop_lon": 2.273091210688663, "coord": [48.76784850968755, 2.273091210688663], "stop_id": 5976651, "stop_desc": "FACE 104 AVENUE ROGER SALENGRO - 92019", "stop_name": "DOCTEUR LE SAVOUREUX"}, "geometry": {"type": "Point", "coordinates": [2.273091210688663, 48.76784850968755]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "510d021ae323703c4b29eb021c9c389fd6e44651", "fields": {"departement": "92", "stop_lat": 48.76668861303903, "code_postal": "92019", "stop_lon": 2.2722904474309713, "coord": [48.76668861303903, 2.2722904474309713], "stop_id": 5976652, "stop_desc": "134 AVENUE ROGER SALENGRO - 92019", "stop_name": "JULES VERNE"}, "geometry": {"type": "Point", "coordinates": [2.2722904474309713, 48.76668861303903]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e7810fb3ef9c17c7e6ef5b8162e0177dd8430c36", "fields": {"departement": "91", "stop_lat": 48.756594343963975, "code_postal": "91645", "stop_lon": 2.2711747722847595, "coord": [48.756594343963975, 2.2711747722847595], "stop_id": 5976658, "stop_desc": "AVENUE GEORGES POMPIDOU - 91645", "stop_name": "GROUPE SCOLAIRE SOPHIE BARAT"}, "geometry": {"type": "Point", "coordinates": [2.2711747722847595, 48.756594343963975]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "98b5e67ab060488e46883521594b47c2a32ab499", "fields": {"departement": "91", "stop_lat": 48.74630205931568, "code_postal": "91645", "stop_lon": 2.2697335974341466, "coord": [48.74630205931568, 2.2697335974341466], "stop_id": 5976664, "stop_desc": "BOULEVARD DU MARECHAL FOCH - 91645", "stop_name": "PARON"}, "geometry": {"type": "Point", "coordinates": [2.2697335974341466, 48.74630205931568]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "861096d1b73e639035f254a2a2c945862ed0e441", "fields": {"departement": "91", "stop_lat": 48.74282908897804, "code_postal": "91645", "stop_lon": 2.263812739611913, "coord": [48.74282908897804, 2.263812739611913], "stop_id": 5976668, "stop_desc": "FACE 27 BOULEVARD DU MARECHAL FOCH - 91645", "stop_name": "GRANDS CHENES"}, "geometry": {"type": "Point", "coordinates": [2.263812739611913, 48.74282908897804]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cb8faf839498a70b7eb21593a922da42cd21389b", "fields": {"departement": "91", "stop_lat": 48.74107627367905, "code_postal": "91645", "stop_lon": 2.250334095938015, "coord": [48.74107627367905, 2.250334095938015], "stop_id": 5976673, "stop_desc": "ROND-POINT D'AMBLAINVILLIERS - 91645", "stop_name": "CROIX BELLE AVOINE"}, "geometry": {"type": "Point", "coordinates": [2.250334095938015, 48.74107627367905]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "694f611835a0ee5ecc779faa11acb57aa2f6210f", "fields": {"departement": "91", "stop_lat": 48.740951002188496, "code_postal": "91645", "stop_lon": 2.25110892438849, "coord": [48.740951002188496, 2.25110892438849], "stop_id": 5976674, "stop_desc": "ROND-POINT D'AMBLAINVILLIERS - 91645", "stop_name": "CROIX BELLE AVOINE"}, "geometry": {"type": "Point", "coordinates": [2.25110892438849, 48.740951002188496]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a76a36e0fa3d6320c950a75b76030892db110172", "fields": {"departement": "91", "stop_lat": 48.73609528650834, "code_postal": "91312", "stop_lon": 2.237039243464884, "coord": [48.73609528650834, 2.237039243464884], "stop_id": 5976679, "stop_desc": "62 AVENUE JEAN JAURES - 91312", "stop_name": "ROND-POINT DES VALLEES"}, "geometry": {"type": "Point", "coordinates": [2.237039243464884, 48.73609528650834]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e3bf4fa2a4195c0c23dce6fcefdaa1dba976db6f", "fields": {"departement": "91", "stop_lat": 48.741577170262595, "code_postal": "91312", "stop_lon": 2.2258577165204803, "coord": [48.741577170262595, 2.2258577165204803], "stop_id": 5976683, "stop_desc": "PLACE FRANCOIS COLLET - 91312", "stop_name": "PLACE FRANCOIS COLLET"}, "geometry": {"type": "Point", "coordinates": [2.2258577165204803, 48.741577170262595]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "664efa2439850fe831b57c177f2cd63b325ddaac", "fields": {"departement": "91", "stop_lat": 48.73863570820907, "code_postal": "91645", "stop_lon": 2.244073554016609, "coord": [48.73863570820907, 2.244073554016609], "stop_id": 5976684, "stop_desc": "7 RUE DE PARIS - 91645", "stop_name": "AMBLAINVILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.244073554016609, 48.73863570820907]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e2bdaee33334ff40b707c8769236d7d6a29a4cc5", "fields": {"departement": "92", "stop_lat": 48.80622881995387, "code_postal": "92020", "stop_lon": 2.297957992282904, "coord": [48.80622881995387, 2.297957992282904], "stop_id": 5976689, "stop_desc": "AVENUE DE LA REPUBLIQUE - 92020", "stop_name": "PIERRE SEMARD"}, "geometry": {"type": "Point", "coordinates": [2.297957992282904, 48.80622881995387]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cd44300ebbf68206d800770cd5721b7cf4331253", "fields": {"departement": "92", "stop_lat": 48.80368510844796, "code_postal": "92020", "stop_lon": 2.2974700935135903, "coord": [48.80368510844796, 2.2974700935135903], "stop_id": 5976690, "stop_desc": "95 AVENUE DE LA REPUBLIQUE - 92020", "stop_name": "REPUBLIQUE - DEFORGES"}, "geometry": {"type": "Point", "coordinates": [2.2974700935135903, 48.80368510844796]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0babd000dd75f150ed9fc229f0ffe7f996bf99be", "fields": {"departement": "92", "stop_lat": 48.8020850518021, "code_postal": "92020", "stop_lon": 2.2968046352222333, "coord": [48.8020850518021, 2.2968046352222333], "stop_id": 5976693, "stop_desc": "RUE PERROTIN - 92020", "stop_name": "PERROTIN"}, "geometry": {"type": "Point", "coordinates": [2.2968046352222333, 48.8020850518021]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "37311acad4cd060684d75e971b72270c0dcc7b92", "fields": {"departement": "92", "stop_lat": 48.795721662558684, "code_postal": "92020", "stop_lon": 2.2758320153493683, "coord": [48.795721662558684, 2.2758320153493683], "stop_id": 5976706, "stop_desc": "FACE 3 AVENUE DE LA DIVISION LECLERC - 92020", "stop_name": "CENTRE BUS"}, "geometry": {"type": "Point", "coordinates": [2.2758320153493683, 48.795721662558684]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "22aa386b557f649829192475e4277eb96e9b7561", "fields": {"departement": "92", "stop_lat": 48.78513289467901, "code_postal": "92060", "stop_lon": 2.258829230564299, "coord": [48.78513289467901, 2.258829230564299], "stop_id": 5976713, "stop_desc": "42 RUE PAUL RIVET - 92060", "stop_name": "MOULIN DE LA TOUR"}, "geometry": {"type": "Point", "coordinates": [2.258829230564299, 48.78513289467901]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "37b5308453160f71cee91e4ea938c31c44d31d55", "fields": {"departement": "92", "stop_lat": 48.77392369296903, "code_postal": "92060", "stop_lon": 2.257064757298435, "coord": [48.77392369296903, 2.257064757298435], "stop_id": 5976720, "stop_desc": "9 RUE DU MOULIN FIDEL - 92060", "stop_name": "MOULIN FIDEL"}, "geometry": {"type": "Point", "coordinates": [2.257064757298435, 48.77392369296903]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ad7a0a091fb2078a09ecfa9044a3d9d5d1d10367", "fields": {"departement": "92", "stop_lat": 48.76640827315518, "code_postal": "92019", "stop_lon": 2.255009693324619, "coord": [48.76640827315518, 2.255009693324619], "stop_id": 5976727, "stop_desc": "FACE 327 AVENUE DE LA DIVISION LECLERC - 92019", "stop_name": "FRANCIS DE PRESSENSE"}, "geometry": {"type": "Point", "coordinates": [2.255009693324619, 48.76640827315518]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b8b9f13681f4d88013e2b6724b6373e4b9aae2ac", "fields": {"departement": "92", "stop_lat": 48.76294436508194, "code_postal": "92019", "stop_lon": 2.279636728058831, "coord": [48.76294436508194, 2.279636728058831], "stop_id": 5976735, "stop_desc": "130 AVENUE DE LA DIVISION LECLERC - 92019", "stop_name": "LA BRIAUDE"}, "geometry": {"type": "Point", "coordinates": [2.279636728058831, 48.76294436508194]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3c29ccc744c6aa157c1f84519a673cd0411a84b0", "fields": {"departement": "92", "stop_lat": 48.766558053543704, "code_postal": "92019", "stop_lon": 2.2806252654114942, "coord": [48.766558053543704, 2.2806252654114942], "stop_id": 5976739, "stop_desc": "16 RUE HENRI-IRENEE MARROU - 92019", "stop_name": "RUE DES VIGNES"}, "geometry": {"type": "Point", "coordinates": [2.2806252654114942, 48.766558053543704]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cbf7068415961896384e577238587fb2e2cd3f3b", "fields": {"departement": "92", "stop_lat": 48.77271498057555, "code_postal": "92019", "stop_lon": 2.2808497223291235, "coord": [48.77271498057555, 2.2808497223291235], "stop_id": 5976745, "stop_desc": "4 RUE JEAN LONGUET - 92019", "stop_name": "HELENE ROEDERER"}, "geometry": {"type": "Point", "coordinates": [2.2808497223291235, 48.77271498057555]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "80c218c402a33ba3bdc964cb75580582de1fe9da", "fields": {"departement": "92", "stop_lat": 48.776093317003124, "code_postal": "92019", "stop_lon": 2.278452631089123, "coord": [48.776093317003124, 2.278452631089123], "stop_id": 5976747, "stop_desc": "44 AVENUE EDOUARD DEPREUX - 92019", "stop_name": "EDOUARD DEPREUX - ROGER SALENGRO"}, "geometry": {"type": "Point", "coordinates": [2.278452631089123, 48.776093317003124]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "097e5af59184ca190082756e33bf7314a3026481", "fields": {"departement": "92", "stop_lat": 48.77956429702969, "code_postal": "92071", "stop_lon": 2.2818078784187574, "coord": [48.77956429702969, 2.2818078784187574], "stop_id": 5976748, "stop_desc": "2 AVENUE DE LA GARE - 92071", "stop_name": "ROBINSON RER"}, "geometry": {"type": "Point", "coordinates": [2.2818078784187574, 48.77956429702969]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5651649804a3f3dce1c21d17563fb38cc269108a", "fields": {"departement": "93", "stop_lat": 48.92996274754092, "code_postal": "93027", "stop_lon": 2.38695663893848, "coord": [48.92996274754092, 2.38695663893848], "stop_id": 5991321, "stop_desc": "AVENUE HENRI BARBUSSE - 93027", "stop_name": "6 ROUTES-TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.38695663893848, 48.92996274754092]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "89390a22a10ae59894927bde34bc0e106ab9a101", "fields": {"departement": "93", "stop_lat": 48.932242468799146, "code_postal": "93027", "stop_lon": 2.393587865911064, "coord": [48.932242468799146, 2.393587865911064], "stop_id": 5991326, "stop_desc": "77 AVENUE HENRI BARBUSSE - 93027", "stop_name": "LE CROULT"}, "geometry": {"type": "Point", "coordinates": [2.393587865911064, 48.932242468799146]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2bdf360219e912a47586ee43dcedf60a63abf0f8", "fields": {"departement": "93", "stop_lat": 48.93418620216623, "code_postal": "93013", "stop_lon": 2.4200116524432658, "coord": [48.93418620216623, 2.4200116524432658], "stop_id": 5991332, "stop_desc": "4 AVENUE JEAN JAURES - 93013", "stop_name": "ECOLE NORMALE"}, "geometry": {"type": "Point", "coordinates": [2.4200116524432658, 48.93418620216623]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "88af6ff7cb57fe1cf0bb3f907f6988bb90378d76", "fields": {"departement": "93", "stop_lat": 48.93449211359655, "code_postal": "93013", "stop_lon": 2.4194937987348304, "coord": [48.93449211359655, 2.4194937987348304], "stop_id": 5991333, "stop_desc": "RUE ANIZAN CAVILLON - 93013", "stop_name": "ECOLE NORMALE"}, "geometry": {"type": "Point", "coordinates": [2.4194937987348304, 48.93449211359655]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6022b311981975726fc0ba30c57edb2607a23585", "fields": {"departement": "93", "stop_lat": 48.932538229574945, "code_postal": "93013", "stop_lon": 2.4247421268099214, "coord": [48.932538229574945, 2.4247421268099214], "stop_id": 5991334, "stop_desc": "8 AVENUE FRANCIS DE PRESSENSE - 93013", "stop_name": "JEAN JAURES - DIVISION LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.4247421268099214, 48.932538229574945]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "38d134d67c4058f720bcf3fc6b5b82ba90e112b0", "fields": {"departement": "93", "stop_lat": 48.93101006011957, "code_postal": "93013", "stop_lon": 2.425285132274111, "coord": [48.93101006011957, 2.425285132274111], "stop_id": 5991336, "stop_desc": "22 AVENUE FRANCIS DE PRESSENSE - 93013", "stop_name": "LE BOURGET-RER"}, "geometry": {"type": "Point", "coordinates": [2.425285132274111, 48.93101006011957]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a3a6a731851d08762d6fef61acc1253ba3300083", "fields": {"departement": "93", "stop_lat": 48.93009765487347, "code_postal": "93029", "stop_lon": 2.431475886641636, "coord": [48.93009765487347, 2.431475886641636], "stop_id": 5991338, "stop_desc": "87 AVENUE MARCEAU - 93029", "stop_name": "EDOUARD VAILLANT"}, "geometry": {"type": "Point", "coordinates": [2.431475886641636, 48.93009765487347]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8d8674b44ec2da977095677bbe3ec9561c4eaf6b", "fields": {"departement": "93", "stop_lat": 48.903027559998904, "code_postal": "93053", "stop_lon": 2.4704832545385655, "coord": [48.903027559998904, 2.4704832545385655], "stop_id": 5991360, "stop_desc": "241 AVENUE DE ROSNY - 93053", "stop_name": "PONT DE BONDY - AVENUE DE ROSNY"}, "geometry": {"type": "Point", "coordinates": [2.4704832545385655, 48.903027559998904]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cba62089975482e3531b2ec5273ec4f05216bfef", "fields": {"departement": "93", "stop_lat": 48.88700361504255, "code_postal": "93053", "stop_lon": 2.4703330416642877, "coord": [48.88700361504255, 2.4703330416642877], "stop_id": 5991370, "stop_desc": "RUE DE MONTREUIL A CLAYE - 93053", "stop_name": "BREMENT"}, "geometry": {"type": "Point", "coordinates": [2.4703330416642877, 48.88700361504255]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "804af3e7d9b1e351c9705cf7c281e3aa501b5910", "fields": {"departement": "93", "stop_lat": 48.88345717021252, "code_postal": "93064", "stop_lon": 2.47514795772559, "coord": [48.88345717021252, 2.47514795772559], "stop_id": 5991372, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 93064", "stop_name": "ROSNY 2 - CENTRE COMMERCIAL"}, "geometry": {"type": "Point", "coordinates": [2.47514795772559, 48.88345717021252]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bd433b70a0326dcaf1ac575b26483204e6eb1fc0", "fields": {"departement": "93", "stop_lat": 48.87379559973046, "code_postal": "93064", "stop_lon": 2.4829019304695374, "coord": [48.87379559973046, 2.4829019304695374], "stop_id": 5991376, "stop_desc": "4 RUE DU GENERAL GALLIENI - 93064", "stop_name": "EGLISE DE ROSNY-SOUS-BOIS"}, "geometry": {"type": "Point", "coordinates": [2.4829019304695374, 48.87379559973046]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6848343417c4da610f906f8be88b534e9fa88fe0", "fields": {"departement": "93", "stop_lat": 48.87716376914187, "code_postal": "93064", "stop_lon": 2.4845873328839767, "coord": [48.87716376914187, 2.4845873328839767], "stop_id": 5991382, "stop_desc": "5 RUE ALBERT DENISEAU - 93064", "stop_name": "VAN DERHEYDEN"}, "geometry": {"type": "Point", "coordinates": [2.4845873328839767, 48.87716376914187]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a5f2729049809403e8ec34584018030f4cce61b9", "fields": {"departement": "93", "stop_lat": 48.88730743485663, "code_postal": "93053", "stop_lon": 2.4718874353184592, "coord": [48.88730743485663, 2.4718874353184592], "stop_id": 5991383, "stop_desc": "12 AVENUE DE ROSNY - 93053", "stop_name": "BREMENT - GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.4718874353184592, 48.88730743485663]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "55b22fa211256ecd875f45aef20766fe164fefc1", "fields": {"departement": "93", "stop_lat": 48.925353889653785, "code_postal": "93027", "stop_lon": 2.383406288445882, "coord": [48.925353889653785, 2.383406288445882], "stop_id": 5991388, "stop_desc": "5-7 RUE SAINT-JUST - 93027", "stop_name": "SAINT-JUST"}, "geometry": {"type": "Point", "coordinates": [2.383406288445882, 48.925353889653785]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d697581ccb2404211aaa5fb06fa6b9d8411c9211", "fields": {"departement": "92", "stop_lat": 48.811217620547396, "code_postal": "92020", "stop_lon": 2.299764105927095, "coord": [48.811217620547396, 2.299764105927095], "stop_id": 6000770, "stop_desc": "AVENUE PIERRE BROSSOLETTE - 92020", "stop_name": "CHATILLON-MONTROUGE"}, "geometry": {"type": "Point", "coordinates": [2.299764105927095, 48.811217620547396]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a378c08e9e25ee90b1ceee535c3cb549b7000e6e", "fields": {"departement": "92", "stop_lat": 48.810526188342465, "code_postal": "92020", "stop_lon": 2.301805807260924, "coord": [48.810526188342465, 2.301805807260924], "stop_id": 6000772, "stop_desc": "FACE AU 220 AV DE LA REPUBLIQUE - 92020", "stop_name": "CHATILLON - MONTROUGE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.301805807260924, 48.810526188342465]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ba5e18254f8dd80c39a0fae69698649d7c1a3fb3", "fields": {"departement": "93", "stop_lat": 48.958271866895984, "code_postal": "93079", "stop_lon": 2.349386736734088, "coord": [48.958271866895984, 2.349386736734088], "stop_id": 6000773, "stop_desc": "RUE RAYMOND BROSSE - 93079", "stop_name": "GYMNASE JESSE OWENS"}, "geometry": {"type": "Point", "coordinates": [2.349386736734088, 48.958271866895984]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5fc386d546fd977467f33d77e6060a08baf81dcc", "fields": {"departement": "92", "stop_lat": 48.73823165695556, "code_postal": "92002", "stop_lon": 2.2906305125325943, "coord": [48.73823165695556, 2.2906305125325943], "stop_id": 6041758, "stop_desc": "AVENUE DE LA FONTAINE MOUTON - 92002", "stop_name": "CENTRE COMMERCIAL DES BACONNETS"}, "geometry": {"type": "Point", "coordinates": [2.2906305125325943, 48.73823165695556]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c7960356479c846336c2a15d7098b28509e62870", "fields": {"departement": "92", "stop_lat": 48.89880615969169, "code_postal": "92050", "stop_lon": 2.1983800116982186, "coord": [48.89880615969169, 2.1983800116982186], "stop_id": 4023612, "stop_desc": "AVENUE DE LA COMMUNE DE PARIS - 92050", "stop_name": "HOCHE"}, "geometry": {"type": "Point", "coordinates": [2.1983800116982186, 48.89880615969169]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f72ec4e46f721cfd84d6e957169ac3ad9396b139", "fields": {"departement": "92", "stop_lat": 48.91042239419866, "code_postal": "92050", "stop_lon": 2.219659234743806, "coord": [48.91042239419866, 2.219659234743806], "stop_id": 4023621, "stop_desc": "354 AVENUE DE LA REPUBLIQUE - 92050", "stop_name": "LES ORMES"}, "geometry": {"type": "Point", "coordinates": [2.219659234743806, 48.91042239419866]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "23ef1659ceacf7df5a19c592b05d9b88a51941f0", "fields": {"departement": "92", "stop_lat": 48.912206021163, "code_postal": "92050", "stop_lon": 2.22399103145728, "coord": [48.912206021163, 2.22399103145728], "stop_id": 4023623, "stop_desc": "FACE 403 AVENUE DE LA REPUBLIQUE - 92050", "stop_name": "HOPITAL DE NANTERRE"}, "geometry": {"type": "Point", "coordinates": [2.22399103145728, 48.912206021163]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f84ff374fa7ae4d67acf0b8d8cda8315cd910cd3", "fields": {"departement": "92", "stop_lat": 48.91577292651904, "code_postal": "92025", "stop_lon": 2.23280551181708, "coord": [48.91577292651904, 2.23280551181708], "stop_id": 4023627, "stop_desc": "429 RUE GABRIEL PERI - 92025", "stop_name": "COLBERT"}, "geometry": {"type": "Point", "coordinates": [2.23280551181708, 48.91577292651904]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "79e7b8a93074f3ccd7b0fa6aa605aa0d2cbc75e5", "fields": {"departement": "92", "stop_lat": 48.924549861044376, "code_postal": "92025", "stop_lon": 2.264632489225063, "coord": [48.924549861044376, 2.264632489225063], "stop_id": 4023644, "stop_desc": "61 BIS AVENUE DE L'AGENT SARRE - 92025", "stop_name": "BEAUSEJOUR"}, "geometry": {"type": "Point", "coordinates": [2.264632489225063, 48.924549861044376]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5da0f0af037da2877e9297c3b78854a8fe27b3d8", "fields": {"departement": "92", "stop_lat": 48.92825985835548, "code_postal": "92004", "stop_lon": 2.2779934583711285, "coord": [48.92825985835548, 2.2779934583711285], "stop_id": 4023648, "stop_desc": "AVENUE DE LA REDOUTE - 92004", "stop_name": "FREYCINET"}, "geometry": {"type": "Point", "coordinates": [2.2779934583711285, 48.92825985835548]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f765a32de2c9d5b29535cb601cdd3470eefbde89", "fields": {"departement": "92", "stop_lat": 48.92927697817656, "code_postal": "92004", "stop_lon": 2.281306624278163, "coord": [48.92927697817656, 2.281306624278163], "stop_id": 4023650, "stop_desc": "FACE 17 AVENUE DE LA REDOUTE - 92004", "stop_name": "ABBE LEMIRE"}, "geometry": {"type": "Point", "coordinates": [2.281306624278163, 48.92927697817656]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2e63b0ac4bad10c9a952c2be3ede990a8cd429b2", "fields": {"departement": "92", "stop_lat": 48.93010476332129, "code_postal": "92004", "stop_lon": 2.2834607607114457, "coord": [48.93010476332129, 2.2834607607114457], "stop_id": 4023653, "stop_desc": "AV DE LA REDOUTE - 92004", "stop_name": "LES COURTILLES"}, "geometry": {"type": "Point", "coordinates": [2.2834607607114457, 48.93010476332129]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fb01557ef85fc7a7b30647d1cba2f95f9d284cf3", "fields": {"departement": "95", "stop_lat": 48.948437655421316, "code_postal": "95018", "stop_lon": 2.252182695114476, "coord": [48.948437655421316, 2.252182695114476], "stop_id": 4023678, "stop_desc": "2-4 BIS BOULEVARD LEON FEIX - 95018", "stop_name": "LEON FEIX"}, "geometry": {"type": "Point", "coordinates": [2.252182695114476, 48.948437655421316]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b2e8e875a770f44c4c41206606b7c851ebaa318d", "fields": {"departement": "95", "stop_lat": 48.944037490415205, "code_postal": "95018", "stop_lon": 2.244617998855466, "coord": [48.944037490415205, 2.244617998855466], "stop_id": 4023684, "stop_desc": "10 BOULEVARD GALLIENI - 95018", "stop_name": "CALAIS"}, "geometry": {"type": "Point", "coordinates": [2.244617998855466, 48.944037490415205]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b3ef39e7963cf88292b822e42b18d9c668d2a7aa", "fields": {"departement": "95", "stop_lat": 48.94258069339716, "code_postal": "95018", "stop_lon": 2.2434200453478628, "coord": [48.94258069339716, 2.2434200453478628], "stop_id": 4023687, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 95018", "stop_name": "CLEMENT ADER"}, "geometry": {"type": "Point", "coordinates": [2.2434200453478628, 48.94258069339716]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "11348e832e4f01271de8f6130d928a491ec2a651", "fields": {"departement": "95", "stop_lat": 48.938338090863965, "code_postal": "95018", "stop_lon": 2.2423773298331198, "coord": [48.938338090863965, 2.2423773298331198], "stop_id": 4023691, "stop_desc": "63 R HENRI BARBUSSE - 95018", "stop_name": "JEAN MOULIN - HENRI BARBUSSE"}, "geometry": {"type": "Point", "coordinates": [2.2423773298331198, 48.938338090863965]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "acdec578ff0bb628913a9d84c0d241385f259dbe", "fields": {"departement": "95", "stop_lat": 48.935853879178346, "code_postal": "95018", "stop_lon": 2.2376621106651746, "coord": [48.935853879178346, 2.2376621106651746], "stop_id": 4023692, "stop_desc": "144 RUE HENRI BARBUSSE - 95018", "stop_name": "PLACE DU 11 NOVEMBRE"}, "geometry": {"type": "Point", "coordinates": [2.2376621106651746, 48.935853879178346]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b9c9bf7e0ecb32074f6a588848bcf14a6dd5d49b", "fields": {"departement": "95", "stop_lat": 48.93297352796869, "code_postal": "95018", "stop_lon": 2.232347972688566, "coord": [48.93297352796869, 2.232347972688566], "stop_id": 4023694, "stop_desc": "FACE 195 RUE HENRI BARBUSSE - 95018", "stop_name": "AVENUE DU CHATEAU"}, "geometry": {"type": "Point", "coordinates": [2.232347972688566, 48.93297352796869]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "546f0916ad94a7a91af0adf1966afc47b2913013", "fields": {"departement": "95", "stop_lat": 48.9333247799194, "code_postal": "95018", "stop_lon": 2.2332202397770198, "coord": [48.9333247799194, 2.2332202397770198], "stop_id": 4023695, "stop_desc": "FACE 190 RUE HENRI BARBUSSE - 95018", "stop_name": "AVENUE DU CHATEAU"}, "geometry": {"type": "Point", "coordinates": [2.2332202397770198, 48.9333247799194]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "19bb175afe46df4ac512c09f69a52fcef33a0857", "fields": {"departement": "95", "stop_lat": 48.93091215309626, "code_postal": "95018", "stop_lon": 2.228573963573526, "coord": [48.93091215309626, 2.228573963573526], "stop_id": 4023696, "stop_desc": "206 RUE HENRI BARBUSSE - 95018", "stop_name": "GENERAL DELAMBRE"}, "geometry": {"type": "Point", "coordinates": [2.228573963573526, 48.93091215309626]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bbd12a9974c76af29830f3c63710dd4a7ca8bbc7", "fields": {"departement": "95", "stop_lat": 48.927563857834194, "code_postal": "95063", "stop_lon": 2.2230436468024224, "coord": [48.927563857834194, 2.2230436468024224], "stop_id": 4023697, "stop_desc": "44 RUE JEAN JAURES - 95063", "stop_name": "VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.2230436468024224, 48.927563857834194]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "91135272fa2bd656ab297863041b120c6e8454b0", "fields": {"departement": "95", "stop_lat": 48.92437062089968, "code_postal": "95063", "stop_lon": 2.2200776181423967, "coord": [48.92437062089968, 2.2200776181423967], "stop_id": 4023699, "stop_desc": "RUE JEAN JAURES - 95063", "stop_name": "JAURES - BRANCHARD"}, "geometry": {"type": "Point", "coordinates": [2.2200776181423967, 48.92437062089968]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "719cbffaa2c9a3fc0d4b349d795027b52cc23f24", "fields": {"departement": "95", "stop_lat": 48.923235913397576, "code_postal": "95063", "stop_lon": 2.2177072361847747, "coord": [48.923235913397576, 2.2177072361847747], "stop_id": 4023701, "stop_desc": "0 R JULIUS ET ETHEL ROSENBERG - 95063", "stop_name": "PONT DE BEZONS"}, "geometry": {"type": "Point", "coordinates": [2.2177072361847747, 48.923235913397576]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b7c1108617835f041846bf7cda74dab647ebc61d", "fields": {"departement": "95", "stop_lat": 48.927475474040314, "code_postal": "95063", "stop_lon": 2.215460694276626, "coord": [48.927475474040314, 2.215460694276626], "stop_id": 4023704, "stop_desc": "FACE 01 AVENUE GABRIEL PERI - 95063", "stop_name": "LA GRACE DE DIEU"}, "geometry": {"type": "Point", "coordinates": [2.215460694276626, 48.927475474040314]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3eb03cbc4a199f34efcd489043d8e45961a3cb5f", "fields": {"departement": "95", "stop_lat": 48.93455032243546, "code_postal": "95063", "stop_lon": 2.208951119371209, "coord": [48.93455032243546, 2.208951119371209], "stop_id": 4023707, "stop_desc": "FACE 137 AVENUE GABRIEL PERI - 95063", "stop_name": "ALBERT 1ER"}, "geometry": {"type": "Point", "coordinates": [2.208951119371209, 48.93455032243546]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "376c6898e5c1c8f6f84667375115445b199e8a7f", "fields": {"departement": "78", "stop_lat": 48.94164288591797, "code_postal": "78586", "stop_lon": 2.2025625007836407, "coord": [48.94164288591797, 2.2025625007836407], "stop_id": 4023712, "stop_desc": "191 AV GEORGES CLEMENCEAU - 78586", "stop_name": "CONDORCET"}, "geometry": {"type": "Point", "coordinates": [2.2025625007836407, 48.94164288591797]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9f7d22bbb444f5a6e751763880e94bd5ff3955d9", "fields": {"departement": "78", "stop_lat": 48.94232568134956, "code_postal": "78586", "stop_lon": 2.202383369779194, "coord": [48.94232568134956, 2.202383369779194], "stop_id": 4023714, "stop_desc": "RUE FLORIAN - 78586", "stop_name": "ROMAIN ROLLAND"}, "geometry": {"type": "Point", "coordinates": [2.202383369779194, 48.94232568134956]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e9ca46759051da79809f95b01970ba0885f0c25a", "fields": {"departement": "78", "stop_lat": 48.94245484646938, "code_postal": "78586", "stop_lon": 2.197485301961916, "coord": [48.94245484646938, 2.197485301961916], "stop_id": 4023720, "stop_desc": "R PAUL BERT - 78586", "stop_name": "BOURQUELOT"}, "geometry": {"type": "Point", "coordinates": [2.197485301961916, 48.94245484646938]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d9b9359ad06a6b8eb3dfd0d9cb62ace0482a0352", "fields": {"departement": "78", "stop_lat": 48.94251800943634, "code_postal": "78586", "stop_lon": 2.197703415018624, "coord": [48.94251800943634, 2.197703415018624], "stop_id": 4023721, "stop_desc": "R PAUL BERT - 78586", "stop_name": "BOURQUELOT"}, "geometry": {"type": "Point", "coordinates": [2.197703415018624, 48.94251800943634]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0e367872a0737caf00e90a069224cd186a2cdf2b", "fields": {"departement": "78", "stop_lat": 48.94271046698098, "code_postal": "78586", "stop_lon": 2.193282637363265, "coord": [48.94271046698098, 2.193282637363265], "stop_id": 4023722, "stop_desc": "FACE 48 AVENUE GEORGES CLEMENCEAU - 78586", "stop_name": "CLEMENCEAU"}, "geometry": {"type": "Point", "coordinates": [2.193282637363265, 48.94271046698098]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9685be40bbee5a37143374a1c684418670cc5495", "fields": {"departement": "78", "stop_lat": 48.94577653563615, "code_postal": "78586", "stop_lon": 2.173586415795281, "coord": [48.94577653563615, 2.173586415795281], "stop_id": 4023730, "stop_desc": "RUE JEAN MERMOZ - 78586", "stop_name": "EGLISE DE SARTROUVILLE"}, "geometry": {"type": "Point", "coordinates": [2.173586415795281, 48.94577653563615]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0854b7a371f7b3514373d9cb4060788da9215f52", "fields": {"departement": "78", "stop_lat": 48.93864537025909, "code_postal": "78586", "stop_lon": 2.1702530958492527, "coord": [48.93864537025909, 2.1702530958492527], "stop_id": 4023734, "stop_desc": "121 AVENUE MAURICE BERTEAUX - 78586", "stop_name": "VOLTAIRE"}, "geometry": {"type": "Point", "coordinates": [2.1702530958492527, 48.93864537025909]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "da307425a266598f0aa0c91a0cd7b740abeb6df6", "fields": {"departement": "78", "stop_lat": 48.93998903483855, "code_postal": "78586", "stop_lon": 2.1671656550053164, "coord": [48.93998903483855, 2.1671656550053164], "stop_id": 4023737, "stop_desc": "100 AVENUE MAURICE BERTEAUX - 78586", "stop_name": "JEAN MERMOZ"}, "geometry": {"type": "Point", "coordinates": [2.1671656550053164, 48.93998903483855]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4aec88222dc2c704ed34a8a557f6ac9a4655ab8d", "fields": {"departement": "95", "stop_lat": 48.941090239816965, "code_postal": "95063", "stop_lon": 2.206642999530818, "coord": [48.941090239816965, 2.206642999530818], "stop_id": 4023744, "stop_desc": "AVENUE LUCIEN SAMPAIX - 95063", "stop_name": "VAL NOTRE-DAME"}, "geometry": {"type": "Point", "coordinates": [2.206642999530818, 48.941090239816965]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e0b6a07bab07a594c14e59c694427157c315dd74", "fields": {"departement": "95", "stop_lat": 48.930192228940605, "code_postal": "95063", "stop_lon": 2.227511595910867, "coord": [48.930192228940605, 2.227511595910867], "stop_id": 4023745, "stop_desc": "FACE 2 RUE DANIELLE CASANOVA - 95063", "stop_name": "GENERAL DELAMBRE"}, "geometry": {"type": "Point", "coordinates": [2.227511595910867, 48.930192228940605]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6faffd4b7dd3e71479acd2c04f0c64e3a2b7dfe2", "fields": {"departement": "95", "stop_lat": 48.927563857834194, "code_postal": "95063", "stop_lon": 2.2230436468024224, "coord": [48.927563857834194, 2.2230436468024224], "stop_id": 4023769, "stop_desc": "44 RUE JEAN JAURES - 95063", "stop_name": "VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.2230436468024224, 48.927563857834194]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0e05ea2d9ffbc0fea9867f131dbb03c356960682", "fields": {"departement": "95", "stop_lat": 48.92762850170789, "code_postal": "95063", "stop_lon": 2.21570583272821, "coord": [48.92762850170789, 2.21570583272821], "stop_id": 4023775, "stop_desc": "8 AVENUE GABRIEL PERI - 95063", "stop_name": "LA GRACE DE DIEU"}, "geometry": {"type": "Point", "coordinates": [2.21570583272821, 48.92762850170789]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "abd879bfc87c4d01711e512687e508b7d7c2e1fa", "fields": {"departement": "95", "stop_lat": 48.93455032243546, "code_postal": "95063", "stop_lon": 2.208951119371209, "coord": [48.93455032243546, 2.208951119371209], "stop_id": 4023779, "stop_desc": "FACE 137 AVENUE GABRIEL PERI - 95063", "stop_name": "ALBERT 1ER"}, "geometry": {"type": "Point", "coordinates": [2.208951119371209, 48.93455032243546]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "40a8fb37f9efc1c25c3e743d47e3d714133065cf", "fields": {"departement": "95", "stop_lat": 48.93783756740844, "code_postal": "95063", "stop_lon": 2.2071559392532305, "coord": [48.93783756740844, 2.2071559392532305], "stop_id": 4023781, "stop_desc": "FACE 1 RUE LUCIEN SAMPAIX - 95063", "stop_name": "LA BERTHIE"}, "geometry": {"type": "Point", "coordinates": [2.2071559392532305, 48.93783756740844]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "554c725375d6ebbeb54eb9d8751571abd429f90d", "fields": {"departement": "78", "stop_lat": 48.94251800943634, "code_postal": "78586", "stop_lon": 2.197703415018624, "coord": [48.94251800943634, 2.197703415018624], "stop_id": 4023793, "stop_desc": "R PAUL BERT - 78586", "stop_name": "BOURQUELOT"}, "geometry": {"type": "Point", "coordinates": [2.197703415018624, 48.94251800943634]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "90707ac8310bf3c10c1b51907f21b69567adad3e", "fields": {"departement": "78", "stop_lat": 48.94271046698098, "code_postal": "78586", "stop_lon": 2.193282637363265, "coord": [48.94271046698098, 2.193282637363265], "stop_id": 4023794, "stop_desc": "FACE 48 AVENUE GEORGES CLEMENCEAU - 78586", "stop_name": "CLEMENCEAU"}, "geometry": {"type": "Point", "coordinates": [2.193282637363265, 48.94271046698098]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4fd7e9c046ee24d03792c44c840ca7dfd1d428ce", "fields": {"departement": "78", "stop_lat": 48.94507245396814, "code_postal": "78586", "stop_lon": 2.1779272439126975, "coord": [48.94507245396814, 2.1779272439126975], "stop_id": 4023800, "stop_desc": "FACE 40 AV DU GENERAL CHARLES DE GAULLE - 78586", "stop_name": "PICARDIE"}, "geometry": {"type": "Point", "coordinates": [2.1779272439126975, 48.94507245396814]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "304bd931a1ae7595bce862a72267aaefe0cebe73", "fields": {"departement": "78", "stop_lat": 48.94525577127578, "code_postal": "78586", "stop_lon": 2.17392914841541, "coord": [48.94525577127578, 2.17392914841541], "stop_id": 4023803, "stop_desc": "0 BD DE BEZONS - 78586", "stop_name": "EGLISE DE SARTROUVILLE"}, "geometry": {"type": "Point", "coordinates": [2.17392914841541, 48.94525577127578]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "22be00f19ed06378c2dfce715549856f201c5be3", "fields": {"departement": "78", "stop_lat": 48.942015355754535, "code_postal": "78586", "stop_lon": 2.1638984164900226, "coord": [48.942015355754535, 2.1638984164900226], "stop_id": 4023810, "stop_desc": "35 AVENUE MAURICE BERTEAUX - 78586", "stop_name": "STALINGRAD"}, "geometry": {"type": "Point", "coordinates": [2.1638984164900226, 48.942015355754535]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3c5fc28d615220c961bb036fcb7e543fb81509f5", "fields": {"departement": "78", "stop_lat": 48.94124740349812, "code_postal": "78586", "stop_lon": 2.1611179380600802, "coord": [48.94124740349812, 2.1611179380600802], "stop_id": 4023812, "stop_desc": "28 AV JEAN JAURES - 78586", "stop_name": "POSTE"}, "geometry": {"type": "Point", "coordinates": [2.1611179380600802, 48.94124740349812]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2198c5857d441b47fcab6f6802d398a97e9006c9", "fields": {"departement": "78", "stop_lat": 48.94111286342735, "code_postal": "78586", "stop_lon": 2.161295746500365, "coord": [48.94111286342735, 2.161295746500365], "stop_id": 4023813, "stop_desc": "39 AV JEAN JAURES - 78586", "stop_name": "POSTE"}, "geometry": {"type": "Point", "coordinates": [2.161295746500365, 48.94111286342735]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "70bf0103c3db0edc629e8664294b57ad84065e60", "fields": {"departement": "78", "stop_lat": 48.94618396789697, "code_postal": "78586", "stop_lon": 2.2050201937152143, "coord": [48.94618396789697, 2.2050201937152143], "stop_id": 4023827, "stop_desc": "6-8 RUE DU BERRY - 78586", "stop_name": "BERRY"}, "geometry": {"type": "Point", "coordinates": [2.2050201937152143, 48.94618396789697]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0a88928c242f431eb1582ece96b9314db0922c79", "fields": {"departement": "92", "stop_lat": 48.89160141473085, "code_postal": "92062", "stop_lon": 2.2372019748450263, "coord": [48.89160141473085, 2.2372019748450263], "stop_id": 4023963, "stop_desc": "PISTE GARE ROUTIERE - 92062", "stop_name": "LA DEFENSE-METRO-RER-TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.2372019748450263, 48.89160141473085]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4e71390d7fd173bab9e3df500566f325f030de16", "fields": {"departement": "92", "stop_lat": 48.88461955721549, "code_postal": "92062", "stop_lon": 2.2386463359117337, "coord": [48.88461955721549, 2.2386463359117337], "stop_id": 4023966, "stop_desc": "110-112 R DE LA REPUBLIQUE - 92062", "stop_name": "MAIRIE DE PUTEAUX"}, "geometry": {"type": "Point", "coordinates": [2.2386463359117337, 48.88461955721549]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e6864161ae5b821748baea717be658eb2aa8c72b", "fields": {"departement": "92", "stop_lat": 48.88463762429675, "code_postal": "92062", "stop_lon": 2.228425692075591, "coord": [48.88463762429675, 2.228425692075591], "stop_id": 4023970, "stop_desc": "198 RUE DE LA REPUBLIQUE - 92062", "stop_name": "PALISSY"}, "geometry": {"type": "Point", "coordinates": [2.228425692075591, 48.88463762429675]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1ec070b8e41457b14d31a7062e360bbedc244ecc", "fields": {"departement": "92", "stop_lat": 48.88441324201123, "code_postal": "92062", "stop_lon": 2.2287532212789096, "coord": [48.88441324201123, 2.2287532212789096], "stop_id": 4023971, "stop_desc": "167 RUE DE LA REPUBLIQUE - 92062", "stop_name": "PALISSY"}, "geometry": {"type": "Point", "coordinates": [2.2287532212789096, 48.88441324201123]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9d81a1b7c9a04742e9c89c1538c44a7737598b7c", "fields": {"departement": "92", "stop_lat": 48.88252958973367, "code_postal": "92050", "stop_lon": 2.223061108497506, "coord": [48.88252958973367, 2.223061108497506], "stop_id": 4023974, "stop_desc": "26 ROUTE DES FUSILLES DE LA RESISTANCE - 92050", "stop_name": "FELIX FAURE"}, "geometry": {"type": "Point", "coordinates": [2.223061108497506, 48.88252958973367]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ecd214c51280f36b771f3df2436ceab2b14af81c", "fields": {"departement": "92", "stop_lat": 48.876664959562326, "code_postal": "92063", "stop_lon": 2.2012461530238006, "coord": [48.876664959562326, 2.2012461530238006], "stop_id": 4023982, "stop_desc": "FACE 8 RUE EUGENE SUE - 92063", "stop_name": "EUGENE SUE"}, "geometry": {"type": "Point", "coordinates": [2.2012461530238006, 48.876664959562326]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b3ee27734b2431ad316f5c2844280478fe4b7428", "fields": {"departement": "92", "stop_lat": 48.87744385318489, "code_postal": "92063", "stop_lon": 2.1986416205603554, "coord": [48.87744385318489, 2.1986416205603554], "stop_id": 4023984, "stop_desc": "125 RUE DANTON - 92063", "stop_name": "VOLTAIRE"}, "geometry": {"type": "Point", "coordinates": [2.1986416205603554, 48.87744385318489]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4f271ae1aad4feac49f736e2bb9227134a3698bb", "fields": {"departement": "92", "stop_lat": 48.87525070883133, "code_postal": "92063", "stop_lon": 2.1909220964409992, "coord": [48.87525070883133, 2.1909220964409992], "stop_id": 4023987, "stop_desc": "39 BOULEVARD EDMOND ROSTAND - 92063", "stop_name": "RUE DES FOLIES"}, "geometry": {"type": "Point", "coordinates": [2.1909220964409992, 48.87525070883133]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "91f94a2b43e6b7e7190c4061e9f96477fba4a6f0", "fields": {"departement": "92", "stop_lat": 48.871775678404425, "code_postal": "92063", "stop_lon": 2.1934387402330136, "coord": [48.871775678404425, 2.1934387402330136], "stop_id": 4023991, "stop_desc": "FACE 45 AVENUE DU PRESIDENT POMPIDOU - 92063", "stop_name": "SAINT-EXUPERY"}, "geometry": {"type": "Point", "coordinates": [2.1934387402330136, 48.871775678404425]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3c1095f0b56c368029aeb60e5aedea33323f72e5", "fields": {"departement": "92", "stop_lat": 48.86259620059796, "code_postal": "92063", "stop_lon": 2.190671749013255, "coord": [48.86259620059796, 2.190671749013255], "stop_id": 4024005, "stop_desc": "FACE 7 RUE DU 19 JANVIER - 92063", "stop_name": "CARREY DE BELLEMARE"}, "geometry": {"type": "Point", "coordinates": [2.190671749013255, 48.86259620059796]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c24ae133e57cf19981ec07c41bce974c0ffb4271", "fields": {"departement": "92", "stop_lat": 48.86174403611013, "code_postal": "92063", "stop_lon": 2.1848169230244867, "coord": [48.86174403611013, 2.1848169230244867], "stop_id": 4024011, "stop_desc": "187 ROUTE DE L'EMPEREUR - 92063", "stop_name": "OTIS MYGATT"}, "geometry": {"type": "Point", "coordinates": [2.1848169230244867, 48.86174403611013]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ddf72591e1dc87e5e36b27bfa77077bba88a71cb", "fields": {"departement": "92", "stop_lat": 48.88243089977522, "code_postal": "92073", "stop_lon": 2.2232384756225154, "coord": [48.88243089977522, 2.2232384756225154], "stop_id": 4024017, "stop_desc": "FACE 34 ROUTE DES FUSILLES DE LA RESISTANCE - 92073", "stop_name": "FELIX FAURE"}, "geometry": {"type": "Point", "coordinates": [2.2232384756225154, 48.88243089977522]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "087cc1205c7b5912a379cd04602b89780405ec82", "fields": {"departement": "92", "stop_lat": 48.888752123592425, "code_postal": "92062", "stop_lon": 2.2367849896114063, "coord": [48.888752123592425, 2.2367849896114063], "stop_id": 4024018, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 92062", "stop_name": "LES BOUVETS"}, "geometry": {"type": "Point", "coordinates": [2.2367849896114063, 48.888752123592425]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6390a700f9606a2dd9bdac480629798c33b912ff", "fields": {"departement": "92", "stop_lat": 48.884503004736075, "code_postal": "92062", "stop_lon": 2.238987243699706, "coord": [48.884503004736075, 2.238987243699706], "stop_id": 4024024, "stop_desc": "FACE104BIS RUE DE LA REPUBLIQUE - 92062", "stop_name": "MAIRIE DE PUTEAUX"}, "geometry": {"type": "Point", "coordinates": [2.238987243699706, 48.884503004736075]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c68af8617b8262e97ec08dc9be9bbfc387b3ab8b", "fields": {"departement": "92", "stop_lat": 48.88463762429675, "code_postal": "92062", "stop_lon": 2.228425692075591, "coord": [48.88463762429675, 2.228425692075591], "stop_id": 4024027, "stop_desc": "198 RUE DE LA REPUBLIQUE - 92062", "stop_name": "PALISSY"}, "geometry": {"type": "Point", "coordinates": [2.228425692075591, 48.88463762429675]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "96f264b1ba91dc66a73a08a6c92ec69e8e5b04a5", "fields": {"departement": "92", "stop_lat": 48.88485158543995, "code_postal": "92062", "stop_lon": 2.226544642763386, "coord": [48.88485158543995, 2.226544642763386], "stop_id": 4024029, "stop_desc": "ROND-POINT DES BERGERES - 92062", "stop_name": "LES BERGERES"}, "geometry": {"type": "Point", "coordinates": [2.226544642763386, 48.88485158543995]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "34e29d2b50b2d1a23effc48251950ae9831ab4f3", "fields": {"departement": "92", "stop_lat": 48.8843757175651, "code_postal": "92062", "stop_lon": 2.227036245944437, "coord": [48.8843757175651, 2.227036245944437], "stop_id": 4024030, "stop_desc": "129 ROND-POINT DES BERGERES - 92062", "stop_name": "LES BERGERES"}, "geometry": {"type": "Point", "coordinates": [2.227036245944437, 48.8843757175651]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "47b5ea30c107e83f2da805d4f07f14f88953bfd0", "fields": {"departement": "92", "stop_lat": 48.87744385318489, "code_postal": "92063", "stop_lon": 2.1986416205603554, "coord": [48.87744385318489, 2.1986416205603554], "stop_id": 4024041, "stop_desc": "125 RUE DANTON - 92063", "stop_name": "VOLTAIRE"}, "geometry": {"type": "Point", "coordinates": [2.1986416205603554, 48.87744385318489]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f52e58723501b1281794eb5c083a16838c8f557a", "fields": {"departement": "92", "stop_lat": 48.877908296637465, "code_postal": "92063", "stop_lon": 2.1961741234389067, "coord": [48.877908296637465, 2.1961741234389067], "stop_id": 4024043, "stop_desc": "101 RUE DANTON - 92063", "stop_name": "FABRE D'EGLANTINE"}, "geometry": {"type": "Point", "coordinates": [2.1961741234389067, 48.877908296637465]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0e1d7d694b5d292fbef5304da35a437b4ec7493d", "fields": {"departement": "92", "stop_lat": 48.87303032905678, "code_postal": "92063", "stop_lon": 2.1905060055108567, "coord": [48.87303032905678, 2.1905060055108567], "stop_id": 4024046, "stop_desc": "22 AVENUE DU PRESIDENT POMPIDOU - 92063", "stop_name": "EDMOND ROSTAND"}, "geometry": {"type": "Point", "coordinates": [2.1905060055108567, 48.87303032905678]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e07702aabd8d29c9af99df117016e36f4700a4b8", "fields": {"departement": "92", "stop_lat": 48.867316519297965, "code_postal": "92063", "stop_lon": 2.199840265182229, "coord": [48.867316519297965, 2.199840265182229], "stop_id": 4024054, "stop_desc": "FACE 123 AVENUE DU PRESIDENT POMPIDOU - 92063", "stop_name": "AVENUE DU MONT VALERIEN"}, "geometry": {"type": "Point", "coordinates": [2.199840265182229, 48.867316519297965]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "258db859ce1614207a6e19c82f8b5cb71441545f", "fields": {"departement": "92", "stop_lat": 48.86256548606598, "code_postal": "92063", "stop_lon": 2.1949899115932214, "coord": [48.86256548606598, 2.1949899115932214], "stop_id": 4024060, "stop_desc": "FACE 58 AVENUE DE FOUILLEUSE - 92063", "stop_name": "FOUILLEUSE"}, "geometry": {"type": "Point", "coordinates": [2.1949899115932214, 48.86256548606598]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a0b46ef37801b53757c9a957d67f90d10c8d709c", "fields": {"departement": "92", "stop_lat": 48.86174403611013, "code_postal": "92063", "stop_lon": 2.1848169230244867, "coord": [48.86174403611013, 2.1848169230244867], "stop_id": 4024068, "stop_desc": "187 ROUTE DE L'EMPEREUR - 92063", "stop_name": "OTIS MYGATT"}, "geometry": {"type": "Point", "coordinates": [2.1848169230244867, 48.86174403611013]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2cd8281b198de4b4f0b719996b98f56b5e511768", "fields": {"departement": "92", "stop_lat": 48.86128502730734, "code_postal": "92063", "stop_lon": 2.1708972435685348, "coord": [48.86128502730734, 2.1708972435685348], "stop_id": 4024073, "stop_desc": "RUE DE LA CHATAIGNERAIE - 92063", "stop_name": "CENTRE MADELEINE DANIELOU"}, "geometry": {"type": "Point", "coordinates": [2.1708972435685348, 48.86128502730734]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "818bcac3699d0967121234635c290868a06112f7", "fields": {"departement": "92", "stop_lat": 48.8804507608198, "code_postal": "92073", "stop_lon": 2.2202041476469727, "coord": [48.8804507608198, 2.2202041476469727], "stop_id": 4024075, "stop_desc": "45 ROUTE DES FUSILLES DE LA RESISTANCE 1940-1944 - 92073", "stop_name": "LIBERTE - PLAIDEURS"}, "geometry": {"type": "Point", "coordinates": [2.2202041476469727, 48.8804507608198]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "75ac4502191bfb7d43ff7befb7fe2c7e28f68ce6", "fields": {"departement": "92", "stop_lat": 48.888752123592425, "code_postal": "92062", "stop_lon": 2.2367849896114063, "coord": [48.888752123592425, 2.2367849896114063], "stop_id": 4024077, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 92062", "stop_name": "LES BOUVETS"}, "geometry": {"type": "Point", "coordinates": [2.2367849896114063, 48.888752123592425]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c1a54a1496df690df4921a6a121eee38bf701249", "fields": {"departement": "92", "stop_lat": 48.90330277598378, "code_postal": "92050", "stop_lon": 2.1933785023252614, "coord": [48.90330277598378, 2.1933785023252614], "stop_id": 4024079, "stop_desc": "R KLEBER - 92050", "stop_name": "BOULEVARD DE LA SEINE"}, "geometry": {"type": "Point", "coordinates": [2.1933785023252614, 48.90330277598378]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "662ca5db8589abc31d6f4238033692e247c1ba38", "fields": {"departement": "92", "stop_lat": 48.90185677498932, "code_postal": "92050", "stop_lon": 2.194145910328192, "coord": [48.90185677498932, 2.194145910328192], "stop_id": 4024080, "stop_desc": "FACE 88 BOULEVARD DE LA SEINE - 92050", "stop_name": "LANNES"}, "geometry": {"type": "Point", "coordinates": [2.194145910328192, 48.90185677498932]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e1d4a2395324445888ba4fad9bea646d3d8e146f", "fields": {"departement": "92", "stop_lat": 48.897239356740116, "code_postal": "92050", "stop_lon": 2.1957943579139774, "coord": [48.897239356740116, 2.1957943579139774], "stop_id": 4024084, "stop_desc": "6 BOULEVARD DE LA SEINE - 92050", "stop_name": "GENERAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.1957943579139774, 48.897239356740116]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d31df1e7b7e188931e964efc3e495fc737a1751f", "fields": {"departement": "92", "stop_lat": 48.88808864627775, "code_postal": "92050", "stop_lon": 2.194320208603867, "coord": [48.88808864627775, 2.194320208603867], "stop_id": 4024092, "stop_desc": "41 AVENUE LENINE - 92050", "stop_name": "FOCH"}, "geometry": {"type": "Point", "coordinates": [2.194320208603867, 48.88808864627775]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "789518bd1560c5ae3d0183cacd6edd2a196b8239", "fields": {"departement": "92", "stop_lat": 48.87051991876674, "code_postal": "92063", "stop_lon": 2.2032649673400737, "coord": [48.87051991876674, 2.2032649673400737], "stop_id": 4024102, "stop_desc": "FACE 45-47 RUE GALLIENI - 92063", "stop_name": "8 MAI 1945"}, "geometry": {"type": "Point", "coordinates": [2.2032649673400737, 48.87051991876674]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f2085f69f270bf7d1f4c72692f9f9c0cb31269b3", "fields": {"departement": "92", "stop_lat": 48.88463762429675, "code_postal": "92062", "stop_lon": 2.228425692075591, "coord": [48.88463762429675, 2.228425692075591], "stop_id": 4024117, "stop_desc": "198 RUE DE LA REPUBLIQUE - 92062", "stop_name": "PALISSY"}, "geometry": {"type": "Point", "coordinates": [2.228425692075591, 48.88463762429675]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "312bfc820f68575c7c40e34011b834f0662eef08", "fields": {"departement": "92", "stop_lat": 48.88485158543995, "code_postal": "92062", "stop_lon": 2.226544642763386, "coord": [48.88485158543995, 2.226544642763386], "stop_id": 4024119, "stop_desc": "ROND-POINT DES BERGERES - 92062", "stop_name": "LES BERGERES"}, "geometry": {"type": "Point", "coordinates": [2.226544642763386, 48.88485158543995]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2514bf5d73cf3128aab40ebb5d1224318eb9890d", "fields": {"departement": "92", "stop_lat": 48.88252958973367, "code_postal": "92050", "stop_lon": 2.223061108497506, "coord": [48.88252958973367, 2.223061108497506], "stop_id": 4024121, "stop_desc": "26 ROUTE DES FUSILLES DE LA RESISTANCE - 92050", "stop_name": "FELIX FAURE"}, "geometry": {"type": "Point", "coordinates": [2.223061108497506, 48.88252958973367]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "129deb73eef938b77f4096ecd022a50c01346315", "fields": {"departement": "92", "stop_lat": 48.878125341421985, "code_postal": "92050", "stop_lon": 2.205193796553508, "coord": [48.878125341421985, 2.205193796553508], "stop_id": 4024127, "stop_desc": "116 RUE DE GARCHES - 92050", "stop_name": "LES CHAILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.205193796553508, 48.878125341421985]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e85e51fd23b9afbdad6bc1ebd41c69f68365e04f", "fields": {"departement": "92", "stop_lat": 48.87525070883133, "code_postal": "92063", "stop_lon": 2.1909220964409992, "coord": [48.87525070883133, 2.1909220964409992], "stop_id": 4024134, "stop_desc": "39 BOULEVARD EDMOND ROSTAND - 92063", "stop_name": "RUE DES FOLIES"}, "geometry": {"type": "Point", "coordinates": [2.1909220964409992, 48.87525070883133]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "862ea429dfe586afb15f15417b79afbe57530f80", "fields": {"departement": "92", "stop_lat": 48.87233180255828, "code_postal": "92063", "stop_lon": 2.1925379967787646, "coord": [48.87233180255828, 2.1925379967787646], "stop_id": 4024139, "stop_desc": "31 AVENUE DU PRESIDENT POMPIDOU - 92063", "stop_name": "SAINT-EXUPERY"}, "geometry": {"type": "Point", "coordinates": [2.1925379967787646, 48.87233180255828]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ae342b364a2edea22fb11b5975b09ce6a5c3f2d5", "fields": {"departement": "92", "stop_lat": 48.86064558670998, "code_postal": "92063", "stop_lon": 2.190391217473671, "coord": [48.86064558670998, 2.190391217473671], "stop_id": 4024154, "stop_desc": "56 RUE DU 19 JANVIER - 92063", "stop_name": "DUMOURIEZ"}, "geometry": {"type": "Point", "coordinates": [2.190391217473671, 48.86064558670998]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b381643d55ffe2c42e1315e588889caa79490d78", "fields": {"departement": "92", "stop_lat": 48.8611850815715, "code_postal": "92063", "stop_lon": 2.1905940095910346, "coord": [48.8611850815715, 2.1905940095910346], "stop_id": 4024155, "stop_desc": "FACE 44 RUE DU 19 JANVIER - 92063", "stop_name": "DUMOURIEZ"}, "geometry": {"type": "Point", "coordinates": [2.1905940095910346, 48.8611850815715]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "382d1128361b35ea3cbbf44fe9d20a366eeab374", "fields": {"departement": "92", "stop_lat": 48.861904935438034, "code_postal": "92063", "stop_lon": 2.1841353741025102, "coord": [48.861904935438034, 2.1841353741025102], "stop_id": 4024159, "stop_desc": "FACE 187BI ROUTE DE L'EMPEREUR - 92063", "stop_name": "OTIS MYGATT"}, "geometry": {"type": "Point", "coordinates": [2.1841353741025102, 48.861904935438034]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a08018cbf8753fed639768e287a917790295b18d", "fields": {"departement": "92", "stop_lat": 48.86458658354024, "code_postal": "92063", "stop_lon": 2.179850077344955, "coord": [48.86458658354024, 2.179850077344955], "stop_id": 4024160, "stop_desc": "FACE 144 RTE DE L'EMPEREUR - 92063", "stop_name": "LYCEE DE RUEIL"}, "geometry": {"type": "Point", "coordinates": [2.179850077344955, 48.86458658354024]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "74cd5f79e76107b1521c0f7aed74de37e1c553de", "fields": {"departement": "92", "stop_lat": 48.8804507608198, "code_postal": "92073", "stop_lon": 2.2202041476469727, "coord": [48.8804507608198, 2.2202041476469727], "stop_id": 4024165, "stop_desc": "45 ROUTE DES FUSILLES DE LA RESISTANCE 1940-1944 - 92073", "stop_name": "LIBERTE - PLAIDEURS"}, "geometry": {"type": "Point", "coordinates": [2.2202041476469727, 48.8804507608198]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "76aaeba7ae68f8dd5fc62146e4f10f6e01585c18", "fields": {"departement": "92", "stop_lat": 48.88243089977522, "code_postal": "92073", "stop_lon": 2.2232384756225154, "coord": [48.88243089977522, 2.2232384756225154], "stop_id": 4024166, "stop_desc": "FACE 34 ROUTE DES FUSILLES DE LA RESISTANCE - 92073", "stop_name": "FELIX FAURE"}, "geometry": {"type": "Point", "coordinates": [2.2232384756225154, 48.88243089977522]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b3c5a3b8ef3b91f229eb4958b35370cc59810409", "fields": {"departement": "92", "stop_lat": 48.89237515329883, "code_postal": "92062", "stop_lon": 2.2382090651018816, "coord": [48.89237515329883, 2.2382090651018816], "stop_id": 4024168, "stop_desc": "0 NR - 92062", "stop_name": "LA DEFENSE-METRO-RER-TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.2382090651018816, 48.89237515329883]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "953ffe2c33a42f1edfc68acaa2cfd2f802c4fbdf", "fields": {"departement": "92", "stop_lat": 48.872963754497334, "code_postal": "92073", "stop_lon": 2.229090543089881, "coord": [48.872963754497334, 2.229090543089881], "stop_id": 4024179, "stop_desc": "FACE 38 RUE DE VERDUN - 92073", "stop_name": "JEAN MACE"}, "geometry": {"type": "Point", "coordinates": [2.229090543089881, 48.872963754497334]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "be08ea86f37c85a438bd1099a8790938b369126d", "fields": {"departement": "92", "stop_lat": 48.88662437941958, "code_postal": "92062", "stop_lon": 2.239460201963728, "coord": [48.88662437941958, 2.239460201963728], "stop_id": 4024198, "stop_desc": "3 AVENUE JEAN MOULIN - 92062", "stop_name": "BOIELDIEU"}, "geometry": {"type": "Point", "coordinates": [2.239460201963728, 48.88662437941958]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ba3f2223c75e0cc234b48126b2030ddb5572fe41", "fields": {"departement": "92", "stop_lat": 48.872963754497334, "code_postal": "92073", "stop_lon": 2.229090543089881, "coord": [48.872963754497334, 2.229090543089881], "stop_id": 4024207, "stop_desc": "FACE 38 RUE DE VERDUN - 92073", "stop_name": "JEAN MACE"}, "geometry": {"type": "Point", "coordinates": [2.229090543089881, 48.872963754497334]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "425d588818871e6f607e897fa72d93feecc93c31", "fields": {"departement": "92", "stop_lat": 48.86676403817079, "code_postal": "92073", "stop_lon": 2.2211886377715, "coord": [48.86676403817079, 2.2211886377715], "stop_id": 4024213, "stop_desc": "57 BOULEVARD HENRI SELLIER - 92073", "stop_name": "LONGCHAMP"}, "geometry": {"type": "Point", "coordinates": [2.2211886377715, 48.86676403817079]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a3de8bed4dbf94bddaa7061df5b966b30160286b", "fields": {"departement": "92", "stop_lat": 48.862806940257784, "code_postal": "92073", "stop_lon": 2.2185003886282835, "coord": [48.862806940257784, 2.2185003886282835], "stop_id": 4024215, "stop_desc": "BOULEVARD HENRI SELLIER - 92073", "stop_name": "GARIBALDI"}, "geometry": {"type": "Point", "coordinates": [2.2185003886282835, 48.862806940257784]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3d5c813620cacfd3da6d89611e59898286e161e2", "fields": {"departement": "92", "stop_lat": 48.86316108003911, "code_postal": "92073", "stop_lon": 2.2048913585176986, "coord": [48.86316108003911, 2.2048913585176986], "stop_id": 4024222, "stop_desc": "2 AVENUE G.STRESEMANN - 92073", "stop_name": "STRESEMANN"}, "geometry": {"type": "Point", "coordinates": [2.2048913585176986, 48.86316108003911]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8477ed88bef7a9bf21642edb9bca26fb28e0e751", "fields": {"departement": "92", "stop_lat": 48.88391135478196, "code_postal": "92063", "stop_lon": 2.1746675301348812, "coord": [48.88391135478196, 2.1746675301348812], "stop_id": 4024239, "stop_desc": "72 AVENUE ALBERT 1ER - 92063", "stop_name": "BAUDIN"}, "geometry": {"type": "Point", "coordinates": [2.1746675301348812, 48.88391135478196]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5ec88aac8d1ab5c86e5d8bd38807839b6f1d66c6", "fields": {"departement": "92", "stop_lat": 48.887224146943645, "code_postal": "92063", "stop_lon": 2.172122297771493, "coord": [48.887224146943645, 2.172122297771493], "stop_id": 4024243, "stop_desc": "GARE ROUTIERE QUAI N 4 - 92063", "stop_name": "RUEIL-MALMAISON RER"}, "geometry": {"type": "Point", "coordinates": [2.172122297771493, 48.887224146943645]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7aca212cf39cfb64afe844ca91124dce39a2c0ed", "fields": {"departement": "92", "stop_lat": 48.87148208951172, "code_postal": "92073", "stop_lon": 2.2304696602894847, "coord": [48.87148208951172, 2.2304696602894847], "stop_id": 4024250, "stop_desc": "20 RUE LEDRU ROLLIN - 92073", "stop_name": "PAGES"}, "geometry": {"type": "Point", "coordinates": [2.2304696602894847, 48.87148208951172]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6dc504fcec30f94bcad9f5c091780cce282f65ef", "fields": {"departement": "92", "stop_lat": 48.88143643740651, "code_postal": "92062", "stop_lon": 2.2366901551534535, "coord": [48.88143643740651, 2.2366901551534535], "stop_id": 4024255, "stop_desc": "72 BOULEVARD RICHARD WALLACE - 92062", "stop_name": "WALLACE - EUGENE EICHENBERGER"}, "geometry": {"type": "Point", "coordinates": [2.2366901551534535, 48.88143643740651]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dda0fcba2a9840c7bd9b88cf5b9e2f0bed7a9480", "fields": {"departement": "92", "stop_lat": 48.88662437941958, "code_postal": "92062", "stop_lon": 2.239460201963728, "coord": [48.88662437941958, 2.239460201963728], "stop_id": 4024260, "stop_desc": "3 AVENUE JEAN MOULIN - 92062", "stop_name": "BOIELDIEU"}, "geometry": {"type": "Point", "coordinates": [2.239460201963728, 48.88662437941958]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "34d665bf24da0dd44ca763ee404db69379655083", "fields": {"departement": "92", "stop_lat": 48.87780312487926, "code_postal": "92073", "stop_lon": 2.233822184072774, "coord": [48.87780312487926, 2.233822184072774], "stop_id": 4024264, "stop_desc": "3 RUE EMILE DUCLAUX - 92073", "stop_name": "DE PRESSENSE"}, "geometry": {"type": "Point", "coordinates": [2.233822184072774, 48.87780312487926]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c05ebd6a026c90c0ee3ca2b46c55f96575582cd8", "fields": {"departement": "92", "stop_lat": 48.872963754497334, "code_postal": "92073", "stop_lon": 2.229090543089881, "coord": [48.872963754497334, 2.229090543089881], "stop_id": 4024266, "stop_desc": "FACE 38 RUE DE VERDUN - 92073", "stop_name": "JEAN MACE"}, "geometry": {"type": "Point", "coordinates": [2.229090543089881, 48.872963754497334]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a702c8b07c72c06e99037c1eaeb6443b25490e40", "fields": {"departement": "75", "stop_lat": 48.833116819786746, "code_postal": "75115", "stop_lon": 2.289224709950392, "coord": [48.833116819786746, 2.289224709950392], "stop_id": 5151498, "stop_desc": "403 BIS RUE DE VAUGIRARD - 75115", "stop_name": "PORTE DE VERSAILLES"}, "geometry": {"type": "Point", "coordinates": [2.289224709950392, 48.833116819786746]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c2cefccd1c8159790f5786a0503c2174cd934584", "fields": {"departement": "75", "stop_lat": 48.84068693742022, "code_postal": "75115", "stop_lon": 2.2961073600849584, "coord": [48.84068693742022, 2.2961073600849584], "stop_id": 5151503, "stop_desc": "188 RUE LECOURBE - 75115", "stop_name": "ABBE GROULT"}, "geometry": {"type": "Point", "coordinates": [2.2961073600849584, 48.84068693742022]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ec161c09320c944d0921f4f6f97663fae971c187", "fields": {"departement": "75", "stop_lat": 48.841942125801296, "code_postal": "75115", "stop_lon": 2.320424992926051, "coord": [48.841942125801296, 2.320424992926051], "stop_id": 5151512, "stop_desc": "PLACE RAOUL DAUTRY - 75115", "stop_name": "GARE MONTPARNASSE."}, "geometry": {"type": "Point", "coordinates": [2.320424992926051, 48.841942125801296]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6a475b2da20d9adae4a041ad40509b031c5854d2", "fields": {"departement": "75", "stop_lat": 48.83914826598913, "code_postal": "75115", "stop_lon": 2.2911933772060062, "coord": [48.83914826598913, 2.2911933772060062], "stop_id": 5151518, "stop_desc": "250 RUE LECOURBE - 75115", "stop_name": "CONVENTION - LECOURBE"}, "geometry": {"type": "Point", "coordinates": [2.2911933772060062, 48.83914826598913]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "94efd0a5e1603d1255ac8838eecaecb6a2990125", "fields": {"departement": "93", "stop_lat": 48.93188630881095, "code_postal": "93066", "stop_lon": 2.352695050904004, "coord": [48.93188630881095, 2.352695050904004], "stop_id": 5156520, "stop_desc": "21 BOULEVARD MARCEL SEMBAT - 93066", "stop_name": "PIERRE DE GEYTER"}, "geometry": {"type": "Point", "coordinates": [2.352695050904004, 48.93188630881095]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cb2109543f9be6784fe04966afc52200f5b959c2", "fields": {"departement": "93", "stop_lat": 48.93203905006368, "code_postal": "93066", "stop_lon": 2.352967895274335, "coord": [48.93203905006368, 2.352967895274335], "stop_id": 5157025, "stop_desc": "32 BOULEVARD MARCEL SEMBAT - 93066", "stop_name": "PIERRE DE GEYTER"}, "geometry": {"type": "Point", "coordinates": [2.352967895274335, 48.93203905006368]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "00f48dae84185d8fcab0c7000bfe822d786b0058", "fields": {"departement": "93", "stop_lat": 48.9601696583724, "code_postal": "93031", "stop_lon": 2.293555851867299, "coord": [48.9601696583724, 2.293555851867299], "stop_id": 5157995, "stop_desc": "RUE DE MARSEILLE - 93031", "stop_name": "DUNKERQUE"}, "geometry": {"type": "Point", "coordinates": [2.293555851867299, 48.9601696583724]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1b293b071485ff2300bb06875845f990e0c1c6bc", "fields": {"departement": "93", "stop_lat": 48.95647624951043, "code_postal": "93031", "stop_lon": 2.2938728368327754, "coord": [48.95647624951043, 2.2938728368327754], "stop_id": 5157996, "stop_desc": "FACE 8 RUE DE MARSEILLE - 93031", "stop_name": "RUE DE MARSEILLE"}, "geometry": {"type": "Point", "coordinates": [2.2938728368327754, 48.95647624951043]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5a5f36ccd1396df96f88a5cebe6d06ffc973de41", "fields": {"departement": "93", "stop_lat": 48.9515132665837, "code_postal": "93031", "stop_lon": 2.320211987730745, "coord": [48.9515132665837, 2.320211987730745], "stop_id": 5158008, "stop_desc": "FACE 16 AVENUE DE LA REPUBLIQUE - 93031", "stop_name": "LES BEATUS"}, "geometry": {"type": "Point", "coordinates": [2.320211987730745, 48.9515132665837]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cad412546c1ca854d61ad5ff9201c699b4ce2c92", "fields": {"departement": "93", "stop_lat": 48.95312270561949, "code_postal": "93031", "stop_lon": 2.327470862167839, "coord": [48.95312270561949, 2.327470862167839], "stop_id": 5158012, "stop_desc": "FACE 35 AVENUE DE LA MARNE - 93031", "stop_name": "AVENUE DE LA MARNE - COMMANDANT LOUIS BOUCHET"}, "geometry": {"type": "Point", "coordinates": [2.327470862167839, 48.95312270561949]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7d3ecd874bbc33c5bc2d05f742a277cae3dcf86d", "fields": {"departement": "93", "stop_lat": 48.95816434930164, "code_postal": "93031", "stop_lon": 2.328875532262177, "coord": [48.95816434930164, 2.328875532262177], "stop_id": 5158016, "stop_desc": "ROUTE DE SAINT-LEU - 93031", "stop_name": "GARE D'EPINAY-VILLETANEUSE"}, "geometry": {"type": "Point", "coordinates": [2.328875532262177, 48.95816434930164]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "98458338f4d1338f9af494285321c9e4d81759bd", "fields": {"departement": "93", "stop_lat": 48.951945842568705, "code_postal": "93031", "stop_lon": 2.3381962011376425, "coord": [48.951945842568705, 2.3381962011376425], "stop_id": 5158020, "stop_desc": "115 ROUTE DE SAINT-LEU - 93031", "stop_name": "76 ROUTE DE SAINT-LEU"}, "geometry": {"type": "Point", "coordinates": [2.3381962011376425, 48.951945842568705]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "558632996cee2dd0c4f89eda78d85dc86767c2d4", "fields": {"departement": "93", "stop_lat": 48.94680530699761, "code_postal": "93066", "stop_lon": 2.3426439966802417, "coord": [48.94680530699761, 2.3426439966802417], "stop_id": 5158023, "stop_desc": "RUE DU FORT DE LA BRICHE - 93066", "stop_name": "BLUMENTHAL"}, "geometry": {"type": "Point", "coordinates": [2.3426439966802417, 48.94680530699761]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5696a4f5e639e58ef946b1d2a15e2684624cd4ae", "fields": {"departement": "93", "stop_lat": 48.942060323743696, "code_postal": "93066", "stop_lon": 2.3417430923647196, "coord": [48.942060323743696, 2.3417430923647196], "stop_id": 5158026, "stop_desc": "RUE DU FORT DE LA BRICHE - 93066", "stop_name": "LA BRICHE"}, "geometry": {"type": "Point", "coordinates": [2.3417430923647196, 48.942060323743696]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f089962489cc0b94daa27348472f262eeee03f6d", "fields": {"departement": "92", "stop_lat": 48.93478905920124, "code_postal": "92078", "stop_lon": 2.321758887065925, "coord": [48.93478905920124, 2.321758887065925], "stop_id": 5158035, "stop_desc": "AVENUE DE VERDUN - 92078", "stop_name": "CHEMIN DES RENIERS"}, "geometry": {"type": "Point", "coordinates": [2.321758887065925, 48.93478905920124]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a2342207c122d16ac24dfa6720e695c50db41303", "fields": {"departement": "92", "stop_lat": 48.93379028926518, "code_postal": "92036", "stop_lon": 2.3141614816029348, "coord": [48.93379028926518, 2.3141614816029348], "stop_id": 5158037, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 92036", "stop_name": "PARC DES CHANTERAINES"}, "geometry": {"type": "Point", "coordinates": [2.3141614816029348, 48.93379028926518]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b88f586dd4194681fc1de6af27fe19bff9f2ac4f", "fields": {"departement": "92", "stop_lat": 48.929952376682074, "code_postal": "92036", "stop_lon": 2.2843338402497513, "coord": [48.929952376682074, 2.2843338402497513], "stop_id": 5158045, "stop_desc": "BOULEVARD PIERRE DE COUBERTIN - 92036", "stop_name": "LES COURTILLES"}, "geometry": {"type": "Point", "coordinates": [2.2843338402497513, 48.929952376682074]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "01964ec298884db78642a9704d57855c4db0a921", "fields": {"departement": "92", "stop_lat": 48.92317699378374, "code_postal": "92036", "stop_lon": 2.28605910172606, "coord": [48.92317699378374, 2.28605910172606], "stop_id": 5158049, "stop_desc": "BOULEVARD PIERRE DE COUBERTIN - 92036", "stop_name": "LES AGNETTES-METRO"}, "geometry": {"type": "Point", "coordinates": [2.28605910172606, 48.92317699378374]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c108591337d7cd853ccb73cb31adc10b9fc26d3e", "fields": {"departement": "92", "stop_lat": 48.91218097424025, "code_postal": "92004", "stop_lon": 2.296568698464727, "coord": [48.91218097424025, 2.296568698464727], "stop_id": 5158056, "stop_desc": "22 BOULEVARD VOLTAIRE - 92004", "stop_name": "PLACE VOLTAIRE"}, "geometry": {"type": "Point", "coordinates": [2.296568698464727, 48.91218097424025]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c982cacd4f04765ddb299c5ac4aee4b35a05e182", "fields": {"departement": "92", "stop_lat": 48.906403689038, "code_postal": "92024", "stop_lon": 2.3008540579028622, "coord": [48.906403689038, 2.3008540579028622], "stop_id": 5158057, "stop_desc": "136 BOULEVARD JEAN JAURES - 92024", "stop_name": "LEON BLUM"}, "geometry": {"type": "Point", "coordinates": [2.3008540579028622, 48.906403689038]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "729525512ef2f312b0f4fda7b527e4c9a09a8a28", "fields": {"departement": "92", "stop_lat": 48.90722193611381, "code_postal": "92024", "stop_lon": 2.302271357586615, "coord": [48.90722193611381, 2.302271357586615], "stop_id": 5158058, "stop_desc": "136 RUE MARTRE - 92024", "stop_name": "LEON BLUM"}, "geometry": {"type": "Point", "coordinates": [2.302271357586615, 48.90722193611381]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0eaa4d77424ca6a05f593f3146afbabe188f0ef7", "fields": {"departement": "75", "stop_lat": 48.8947234218669, "code_postal": "75117", "stop_lon": 2.3124478642572925, "coord": [48.8947234218669, 2.3124478642572925], "stop_id": 5158063, "stop_desc": "1 AVENUE DE LA PORTE DE CLICHY - 75117", "stop_name": "PORTE DE CLICHY"}, "geometry": {"type": "Point", "coordinates": [2.3124478642572925, 48.8947234218669]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b1c411d1194a4ef3cfd22eb8075bb665288aef07", "fields": {"departement": "75", "stop_lat": 48.89288171215441, "code_postal": "75117", "stop_lon": 2.315842525078344, "coord": [48.89288171215441, 2.315842525078344], "stop_id": 5158065, "stop_desc": "177 AVENUE DE CLICHY - 75117", "stop_name": "BOULAY"}, "geometry": {"type": "Point", "coordinates": [2.315842525078344, 48.89288171215441]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "502753194a2baea0a8d78425f99b92265a133899", "fields": {"departement": "75", "stop_lat": 48.88590006808008, "code_postal": "75118", "stop_lon": 2.326134397795573, "coord": [48.88590006808008, 2.326134397795573], "stop_id": 5158073, "stop_desc": "31 AVENUE DE CLICHY - 75118", "stop_name": "GANNERON"}, "geometry": {"type": "Point", "coordinates": [2.326134397795573, 48.88590006808008]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "728f9ec65cb0d1f3587a4f7f0a4ca5dfb7566230", "fields": {"departement": "75", "stop_lat": 48.881199633166666, "code_postal": "75108", "stop_lon": 2.3250044012022726, "coord": [48.881199633166666, 2.3250044012022726], "stop_id": 5158077, "stop_desc": "11 BIS-13 RUE DE SAINT-PETERSBOURG - 75108", "stop_name": "BUCAREST"}, "geometry": {"type": "Point", "coordinates": [2.3250044012022726, 48.881199633166666]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7364d33ffefc7d239ef8e2ead141e1bb53a3ff90", "fields": {"departement": "75", "stop_lat": 48.87849422642491, "code_postal": "75108", "stop_lon": 2.32285215568243, "coord": [48.87849422642491, 2.32285215568243], "stop_id": 5158079, "stop_desc": "27 RUE DE VIENNE - 75108", "stop_name": "EUROPE"}, "geometry": {"type": "Point", "coordinates": [2.32285215568243, 48.87849422642491]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "91d3f9842a31c06fae671dc7f40b9971f3a3a750", "fields": {"departement": "75", "stop_lat": 48.875007327021954, "code_postal": "75108", "stop_lon": 2.324310992446456, "coord": [48.875007327021954, 2.324310992446456], "stop_id": 5158083, "stop_desc": "119-121 RUE SAINT-LAZARE - 75108", "stop_name": "GARE SAINT-LAZARE."}, "geometry": {"type": "Point", "coordinates": [2.324310992446456, 48.875007327021954]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "31eb577c682b804aa48d2aa9ae56a45c74c2742d", "fields": {"departement": "92", "stop_lat": 48.89846158223141, "code_postal": "92024", "stop_lon": 2.310196942773822, "coord": [48.89846158223141, 2.310196942773822], "stop_id": 5158085, "stop_desc": "FACE 17 RUE DU 8 MAI 1945 - 92024", "stop_name": "VICTOR HUGO - 8 MAI 1945"}, "geometry": {"type": "Point", "coordinates": [2.310196942773822, 48.89846158223141]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "256cdc412c5e9b12f6b94811f9a5e9a8226a157c", "fields": {"departement": "92", "stop_lat": 48.9343845303861, "code_postal": "92036", "stop_lon": 2.32085873121065, "coord": [48.9343845303861, 2.32085873121065], "stop_id": 5158091, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 92036", "stop_name": "CHEMIN DES RENIERS"}, "geometry": {"type": "Point", "coordinates": [2.32085873121065, 48.9343845303861]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fe3d5b993407f113acb3bab6d1f87091ac3f5c86", "fields": {"departement": "93", "stop_lat": 48.9544351422254, "code_postal": "93079", "stop_lon": 2.3348530149930027, "coord": [48.9544351422254, 2.3348530149930027], "stop_id": 5158093, "stop_desc": "FACE 163 ROUTE DE SAINT-LEU - 93079", "stop_name": "YSER"}, "geometry": {"type": "Point", "coordinates": [2.3348530149930027, 48.9544351422254]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "81211b2884775d006caeb2e61a30ab6e0d9a51bf", "fields": {"departement": "92", "stop_lat": 48.814197239609086, "code_postal": "92049", "stop_lon": 2.3201345899553067, "coord": [48.814197239609086, 2.3201345899553067], "stop_id": 5161414, "stop_desc": "106 RUE HENRI GINOUX - 92049", "stop_name": "VERDIER"}, "geometry": {"type": "Point", "coordinates": [2.3201345899553067, 48.814197239609086]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b0c7f9e359bbbae043c2ecdda608c8cfa1139ba4", "fields": {"departement": "92", "stop_lat": 48.811401784060536, "code_postal": "92049", "stop_lon": 2.318380048565067, "coord": [48.811401784060536, 2.318380048565067], "stop_id": 5161415, "stop_desc": "FACE 153 AVENUE HENRI GINOUX - 92049", "stop_name": "BOILEAU"}, "geometry": {"type": "Point", "coordinates": [2.318380048565067, 48.811401784060536]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "444f7f7f78516f9e907582d9f44045bf2730915a", "fields": {"departement": "92", "stop_lat": 48.80038974079882, "code_postal": "92007", "stop_lon": 2.3084521412256045, "coord": [48.80038974079882, 2.3084521412256045], "stop_id": 5161422, "stop_desc": "FACE 92 AVENUE HENRI RAVERA - 92007", "stop_name": "RUE DE L'EGALITE"}, "geometry": {"type": "Point", "coordinates": [2.3084521412256045, 48.80038974079882]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d812d69b5ffa90e1ef9ca7c86527a10707debcb2", "fields": {"departement": "92", "stop_lat": 48.79562430002158, "code_postal": "92007", "stop_lon": 2.30153029328367, "coord": [48.79562430002158, 2.30153029328367], "stop_id": 5161428, "stop_desc": "3 R DE LA REPUBLIQUE - 92007", "stop_name": "DAMPIERRE"}, "geometry": {"type": "Point", "coordinates": [2.30153029328367, 48.79562430002158]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1b694f9ccdaef235aed913043fe317443963435c", "fields": {"departement": "92", "stop_lat": 48.79327698926829, "code_postal": "92032", "stop_lon": 2.296920323672569, "coord": [48.79327698926829, 2.296920323672569], "stop_id": 5161430, "stop_desc": "FACE 47 RUE MARX DORMOY - 92032", "stop_name": "SENTIER DES LILAS"}, "geometry": {"type": "Point", "coordinates": [2.296920323672569, 48.79327698926829]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "655fcaa464b1306da7030feb4c4eb6fe0c040204", "fields": {"departement": "92", "stop_lat": 48.78824246516923, "code_postal": "92032", "stop_lon": 2.2932652482672524, "coord": [48.78824246516923, 2.2932652482672524], "stop_id": 5161433, "stop_desc": "25 AVENUE LOMBART - 92032", "stop_name": "FONTENAY-AUX-ROSES RER"}, "geometry": {"type": "Point", "coordinates": [2.2932652482672524, 48.78824246516923]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f86c413e920763e168c4cc0d69b368ad532f67a6", "fields": {"departement": "92", "stop_lat": 48.784934915038406, "code_postal": "92032", "stop_lon": 2.2932952520481065, "coord": [48.784934915038406, 2.2932952520481065], "stop_id": 5161435, "stop_desc": "7 AVENUE LOMBART - 92032", "stop_name": "GAMBETTA"}, "geometry": {"type": "Point", "coordinates": [2.2932952520481065, 48.784934915038406]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "908f5fbef2f44d512d1b78e9d38fafca90456769", "fields": {"departement": "92", "stop_lat": 48.78494400320653, "code_postal": "92032", "stop_lon": 2.2935672705861156, "coord": [48.78494400320653, 2.2935672705861156], "stop_id": 5161436, "stop_desc": "2 BIS AVENUE LOMBART - 92032", "stop_name": "GAMBETTA"}, "geometry": {"type": "Point", "coordinates": [2.2935672705861156, 48.78494400320653]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a6ab0a4945e7de6dc163e2672334f08407f465d8", "fields": {"departement": "92", "stop_lat": 48.78145652946844, "code_postal": "92071", "stop_lon": 2.2931757920895075, "coord": [48.78145652946844, 2.2931757920895075], "stop_id": 5161437, "stop_desc": "25 RUE DE FONTENAY - 92071", "stop_name": "RUE DU LYCEE"}, "geometry": {"type": "Point", "coordinates": [2.2931757920895075, 48.78145652946844]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1098dee7e9b2ee915d0152706f3665e7e64323ab", "fields": {"departement": "92", "stop_lat": 48.77901994462124, "code_postal": "92071", "stop_lon": 2.2909610986263127, "coord": [48.77901994462124, 2.2909610986263127], "stop_id": 5161439, "stop_desc": "110 RUE HOUDAN - 92071", "stop_name": "FONTENAY - HOUDAN"}, "geometry": {"type": "Point", "coordinates": [2.2909610986263127, 48.77901994462124]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4951fc78c4a2268fbb20fb716427868628f536fe", "fields": {"departement": "92", "stop_lat": 48.80383802353411, "code_postal": "92020", "stop_lon": 2.2978373453843948, "coord": [48.80383802353411, 2.2978373453843948], "stop_id": 5161460, "stop_desc": "FACE 91 AVENUE DE LA REPUBLIQUE - 92020", "stop_name": "REPUBLIQUE - DEFORGES"}, "geometry": {"type": "Point", "coordinates": [2.2978373453843948, 48.80383802353411]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "498ad6ea18cfde6055b1dc9c3f16d10cdea35e47", "fields": {"departement": "92", "stop_lat": 48.788959603982086, "code_postal": "92032", "stop_lon": 2.2884085971458927, "coord": [48.788959603982086, 2.2884085971458927], "stop_id": 5161469, "stop_desc": "3 AVENUE JEAN MOULIN - 92032", "stop_name": "BOULEVARD DE LA REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.2884085971458927, 48.788959603982086]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7baf105fcfdfcdf58f40bddf0ae6fdf1b9b46c15", "fields": {"departement": "92", "stop_lat": 48.78378902648166, "code_postal": "92032", "stop_lon": 2.282633030295862, "coord": [48.78378902648166, 2.282633030295862], "stop_id": 5161473, "stop_desc": "FACE 84 AVENUE JEAN MOULIN - 92032", "stop_name": "CARREFOUR DES MOUILLEBOEUFS"}, "geometry": {"type": "Point", "coordinates": [2.282633030295862, 48.78378902648166]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "91f6cfaca677cf48d6ca59b8f2a38c066f5e90be", "fields": {"departement": "92", "stop_lat": 48.76782133944119, "code_postal": "92019", "stop_lon": 2.272710532959813, "coord": [48.76782133944119, 2.272710532959813], "stop_id": 5161481, "stop_desc": "FACE 131 AVENUE ROGER SALENGRO - 92019", "stop_name": "DOCTEUR LE SAVOUREUX"}, "geometry": {"type": "Point", "coordinates": [2.272710532959813, 48.76782133944119]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0b44488d1ae840c72573379a26d931061dad16fb", "fields": {"departement": "92", "stop_lat": 48.762157789083936, "code_postal": "92019", "stop_lon": 2.270800623222475, "coord": [48.762157789083936, 2.270800623222475], "stop_id": 5161487, "stop_desc": "RUE JEAN-BAPTISTE CLEMENT - 92019", "stop_name": "FACULTE DE PHARMACIE"}, "geometry": {"type": "Point", "coordinates": [2.270800623222475, 48.762157789083936]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4896cfa93ce8584101660d13143081743cab9d45", "fields": {"departement": "91", "stop_lat": 48.74958399229917, "code_postal": "91645", "stop_lon": 2.271944840017176, "coord": [48.74958399229917, 2.271944840017176], "stop_id": 5161492, "stop_desc": "BOULEVARD DU MARECHAL FOCH - 91645", "stop_name": "LE CLOS"}, "geometry": {"type": "Point", "coordinates": [2.271944840017176, 48.74958399229917]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f57d186667dea3557a33b1f0873d2c9f687d916c", "fields": {"departement": "91", "stop_lat": 48.74985373505479, "code_postal": "91645", "stop_lon": 2.2721211987921035, "coord": [48.74985373505479, 2.2721211987921035], "stop_id": 5161493, "stop_desc": "BOULEVARD DU MARECHAL FOCH - 91645", "stop_name": "LE CLOS"}, "geometry": {"type": "Point", "coordinates": [2.2721211987921035, 48.74985373505479]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "14be0beffa5257c3971316122696e0c16bb19e3c", "fields": {"departement": "91", "stop_lat": 48.743945027466765, "code_postal": "91645", "stop_lon": 2.266107972275051, "coord": [48.743945027466765, 2.266107972275051], "stop_id": 5161496, "stop_desc": "BOULEVARD DU MARECHAL FOCH - 91645", "stop_name": "FOCH - LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.266107972275051, 48.743945027466765]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "571ddb67304fe1c1d6569dced78700feb9343dd6", "fields": {"departement": "91", "stop_lat": 48.7405950939472, "code_postal": "91645", "stop_lon": 2.256260015531992, "coord": [48.7405950939472, 2.256260015531992], "stop_id": 5161500, "stop_desc": "174 RUE D'ESTIENNE D'ORVES - 91645", "stop_name": "MOULIN DE GRAIS"}, "geometry": {"type": "Point", "coordinates": [2.256260015531992, 48.7405950939472]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f2618be7186f4119fe5900b95045fb2a6104886e", "fields": {"departement": "91", "stop_lat": 48.740951002188496, "code_postal": "91645", "stop_lon": 2.25110892438849, "coord": [48.740951002188496, 2.25110892438849], "stop_id": 5161505, "stop_desc": "ROND-POINT D'AMBLAINVILLIERS - 91645", "stop_name": "CROIX BELLE AVOINE"}, "geometry": {"type": "Point", "coordinates": [2.25110892438849, 48.740951002188496]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b0b22d0247376b2950dd52ff83b8d7e3b4bfbe4b", "fields": {"departement": "91", "stop_lat": 48.73953746754802, "code_postal": "91645", "stop_lon": 2.24789056992582, "coord": [48.73953746754802, 2.24789056992582], "stop_id": 5161506, "stop_desc": "16-16 BIS RUE DE PARIS - 91645", "stop_name": "CROIX PASQUIER"}, "geometry": {"type": "Point", "coordinates": [2.24789056992582, 48.73953746754802]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "74302ee6dab20afb84f954f69e736825303ba427", "fields": {"departement": "91", "stop_lat": 48.73970899646605, "code_postal": "91645", "stop_lon": 2.2488958968010944, "coord": [48.73970899646605, 2.2488958968010944], "stop_id": 5161507, "stop_desc": "FACE 12 RUE DE PARIS - 91645", "stop_name": "CROIX PASQUIER"}, "geometry": {"type": "Point", "coordinates": [2.2488958968010944, 48.73970899646605]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "570c3561f071a88a29efbea8b021868a2fbd056e", "fields": {"departement": "91", "stop_lat": 48.73609528650834, "code_postal": "91312", "stop_lon": 2.237039243464884, "coord": [48.73609528650834, 2.237039243464884], "stop_id": 5161510, "stop_desc": "62 AVENUE JEAN JAURES - 91312", "stop_name": "ROND-POINT DES VALLEES"}, "geometry": {"type": "Point", "coordinates": [2.237039243464884, 48.73609528650834]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "585a72a24bf1a8c66fd701527f814ee2ae47665d", "fields": {"departement": "91", "stop_lat": 48.74003560331959, "code_postal": "91312", "stop_lon": 2.2306717284297677, "coord": [48.74003560331959, 2.2306717284297677], "stop_id": 5161516, "stop_desc": "2 AVENUE DE LA DIVISION LECLERC - 91312", "stop_name": "IGNY RER"}, "geometry": {"type": "Point", "coordinates": [2.2306717284297677, 48.74003560331959]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "08ec29988725001d387430bfe795c97723d6941b", "fields": {"departement": "92", "stop_lat": 48.78002209425372, "code_postal": "92071", "stop_lon": 2.280556187562754, "coord": [48.78002209425372, 2.280556187562754], "stop_id": 5161519, "stop_desc": "FACE 3 AVENUE DU PLESSIS - 92071", "stop_name": "ROBINSON RER"}, "geometry": {"type": "Point", "coordinates": [2.280556187562754, 48.78002209425372]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0107f1758ff20144fc5811ae382c333fa22eb240", "fields": {"departement": "94", "stop_lat": 48.799853818134736, "code_postal": "94003", "stop_lon": 2.3429824748040686, "coord": [48.799853818134736, 2.3429824748040686], "stop_id": 5161530, "stop_desc": "74 AVENUE PAUL VAILLANT COUTURIER - 94003", "stop_name": "QUATRE CHEMINS"}, "geometry": {"type": "Point", "coordinates": [2.3429824748040686, 48.799853818134736]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a7d30bf0faafc79b0d29a58ccdf1770c5e27782d", "fields": {"departement": "94", "stop_lat": 48.787422420393476, "code_postal": "94076", "stop_lon": 2.354760399438226, "coord": [48.787422420393476, 2.354760399438226], "stop_id": 5161540, "stop_desc": "127 AVENUE DE LA REPUBLIQUE - 94076", "stop_name": "VERDUN - REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.354760399438226, 48.787422420393476]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cf798e093e285d9ab0e75df93ee44b18f1fa7f8e", "fields": {"departement": "92", "stop_lat": 48.84012111806171, "code_postal": "92033", "stop_lon": 2.1855884768436504, "coord": [48.84012111806171, 2.1855884768436504], "stop_id": 5207674, "stop_desc": "1 AVENUE FOCH - 92033", "stop_name": "JOFFRE"}, "geometry": {"type": "Point", "coordinates": [2.1855884768436504, 48.84012111806171]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3ace14f744d32fba46b24e8e53b1fea54e52a80e", "fields": {"departement": "75", "stop_lat": 48.82323941968463, "code_postal": "75114", "stop_lon": 2.324487238165042, "coord": [48.82323941968463, 2.324487238165042], "stop_id": 5221740, "stop_desc": "132 BD BRUNE - 75114", "stop_name": "PORTE D'ORLEANS"}, "geometry": {"type": "Point", "coordinates": [2.324487238165042, 48.82323941968463]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "12c305bc5704e01917dcc4abcc92e62dece40165", "fields": {"departement": "92", "stop_lat": 48.80832006340144, "code_postal": "92020", "stop_lon": 2.289955237180157, "coord": [48.80832006340144, 2.289955237180157], "stop_id": 5221753, "stop_desc": "FACE 55 R MARCELIN BERTHELOT - 92020", "stop_name": "JEAN MERMOZ"}, "geometry": {"type": "Point", "coordinates": [2.289955237180157, 48.80832006340144]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6bee0b21595dcb3c130ff5c109e75d3fc3f7f20a", "fields": {"departement": "92", "stop_lat": 48.808283580337466, "code_postal": "92020", "stop_lon": 2.288635350032826, "coord": [48.808283580337466, 2.288635350032826], "stop_id": 5221754, "stop_desc": "35 AV CLEMENT PERRIERE - 92020", "stop_name": "STADE DE CHATILLON"}, "geometry": {"type": "Point", "coordinates": [2.288635350032826, 48.808283580337466]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c246884f56f0f6969569e3acbf0df8687b188f25", "fields": {"departement": "92", "stop_lat": 48.79959122387618, "code_postal": "92020", "stop_lon": 2.285922459098015, "coord": [48.79959122387618, 2.285922459098015], "stop_id": 5221760, "stop_desc": "FACE 1 TER RUE D'ESTIENNE D'ORVES - 92020", "stop_name": "D'ESTIENNE D'ORVES - DIVISION LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.285922459098015, 48.79959122387618]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3c57d374e82968ae8f8ca38d85e0db0493ba51da", "fields": {"departement": "92", "stop_lat": 48.79783894278399, "code_postal": "92020", "stop_lon": 2.286740472674869, "coord": [48.79783894278399, 2.286740472674869], "stop_id": 5221762, "stop_desc": "32 BIS RUE FONTENAY - 92020", "stop_name": "PIERRELAIS"}, "geometry": {"type": "Point", "coordinates": [2.286740472674869, 48.79783894278399]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "817e6711608ee0593bcd513732c5f143560ff8cd", "fields": {"departement": "92", "stop_lat": 48.766266284732275, "code_postal": "92019", "stop_lon": 2.272494921821088, "coord": [48.766266284732275, 2.272494921821088], "stop_id": 5221786, "stop_desc": "FACE 136 AVENUE ROGER SALENGRO - 92019", "stop_name": "JULES VERNE"}, "geometry": {"type": "Point", "coordinates": [2.272494921821088, 48.766266284732275]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "72a339003c917a7500e5435c062edb42d804efc8", "fields": {"departement": "92", "stop_lat": 48.76432452376771, "code_postal": "92019", "stop_lon": 2.271885525552727, "coord": [48.76432452376771, 2.271885525552727], "stop_id": 5221787, "stop_desc": "AVENUE ROGER SALENGRO - 92019", "stop_name": "PRESIDENT ALLENDE"}, "geometry": {"type": "Point", "coordinates": [2.271885525552727, 48.76432452376771]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aab3410d9eb9752b3e9a9433a13d72ec20004e2e", "fields": {"departement": "92", "stop_lat": 48.78002209425372, "code_postal": "92071", "stop_lon": 2.280556187562754, "coord": [48.78002209425372, 2.280556187562754], "stop_id": 5221791, "stop_desc": "FACE 3 AVENUE DU PLESSIS - 92071", "stop_name": "ROBINSON RER"}, "geometry": {"type": "Point", "coordinates": [2.280556187562754, 48.78002209425372]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a6325e9384a0487b79f94a5f0b121ea84def77bb", "fields": {"departement": "92", "stop_lat": 48.79153843504976, "code_postal": "92032", "stop_lon": 2.2867329978586195, "coord": [48.79153843504976, 2.2867329978586195], "stop_id": 5221793, "stop_desc": "FACE 75 RUE BOUCICAUT - 92032", "stop_name": "MAIRIE DE FONTENAY-AUX-ROSES"}, "geometry": {"type": "Point", "coordinates": [2.2867329978586195, 48.79153843504976]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "98dfe808215001daede4c152a21f328779db4eb6", "fields": {"departement": "92", "stop_lat": 48.796274445962815, "code_postal": "92032", "stop_lon": 2.285327149411923, "coord": [48.796274445962815, 2.285327149411923], "stop_id": 5221794, "stop_desc": "148 RUE BOUCICAUT - 92032", "stop_name": "LE PLATEAU"}, "geometry": {"type": "Point", "coordinates": [2.285327149411923, 48.796274445962815]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c3faf74087437b8f80b1da6c340c52d42bd9d228", "fields": {"departement": "92", "stop_lat": 48.82193457809965, "code_postal": "92049", "stop_lon": 2.3137893102917633, "coord": [48.82193457809965, 2.3137893102917633], "stop_id": 5221799, "stop_desc": "33 AVENUE PIERRE BROSSOLETTE - 92049", "stop_name": "DEPINOY"}, "geometry": {"type": "Point", "coordinates": [2.3137893102917633, 48.82193457809965]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "30640129ac9de2b518bf89e162f227b6d432f3a3", "fields": {"departement": "75", "stop_lat": 48.82042539819488, "code_postal": "75113", "stop_lon": 2.356527300495637, "coord": [48.82042539819488, 2.356527300495637], "stop_id": 5221802, "stop_desc": "22 BOULEVARD KELLERMANN - 75113", "stop_name": "DAMESME"}, "geometry": {"type": "Point", "coordinates": [2.356527300495637, 48.82042539819488]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0339681d568c9962646fff2a331cf2784d2da773", "fields": {"departement": "94", "stop_lat": 48.81567175666497, "code_postal": "94037", "stop_lon": 2.350183572948421, "coord": [48.81567175666497, 2.350183572948421], "stop_id": 5221805, "stop_desc": "FACE 35 RUE CHARLES FREROT - 94037", "stop_name": "MAIRIE DE GENTILLY"}, "geometry": {"type": "Point", "coordinates": [2.350183572948421, 48.81567175666497]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "69436a9ea29869a919269881a64f159fd90fda2c", "fields": {"departement": "91", "stop_lat": 48.69524149849297, "code_postal": "91326", "stop_lon": 2.3799163125470466, "coord": [48.69524149849297, 2.3799163125470466], "stop_id": 5221908, "stop_desc": "FACE 60 AVENUE DU 18 AVRIL 1944 - 91326", "stop_name": "LYCEE JEAN MONNET"}, "geometry": {"type": "Point", "coordinates": [2.3799163125470466, 48.69524149849297]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a77cde3fa8113e6a5867bfb7d41cbadb47d43429", "fields": {"departement": "91", "stop_lat": 48.695412134272416, "code_postal": "91326", "stop_lon": 2.3803237896699936, "coord": [48.695412134272416, 2.3803237896699936], "stop_id": 5221909, "stop_desc": "60 AVENUE DU 18 AVRIL 1944 - 91326", "stop_name": "LYCEE JEAN MONNET"}, "geometry": {"type": "Point", "coordinates": [2.3803237896699936, 48.695412134272416]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5bb795fd3e29810fc1b4a4bd6279f88dde21a516", "fields": {"departement": "77", "stop_lat": 48.84526195661666, "code_postal": "77468", "stop_lon": 2.653594940647414, "coord": [48.84526195661666, 2.653594940647414], "stop_id": 5231531, "stop_desc": "FACE 28 AVENUE DE LINGENFELD - 77468", "stop_name": "RIVES DE MAUBUEE"}, "geometry": {"type": "Point", "coordinates": [2.653594940647414, 48.84526195661666]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b084863ab73771991819c546e3a095cb7deb7798", "fields": {"departement": "77", "stop_lat": 48.84706316156763, "code_postal": "77468", "stop_lon": 2.652203301096435, "coord": [48.84706316156763, 2.652203301096435], "stop_id": 5231532, "stop_desc": "AVENUE DE LINGENFELD - 77468", "stop_name": "JACQUES PREVERT"}, "geometry": {"type": "Point", "coordinates": [2.652203301096435, 48.84706316156763]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1de6a79bb80e871102d2c2e2a13820e015adb5dc", "fields": {"departement": "77", "stop_lat": 48.85605629151337, "code_postal": "77083", "stop_lon": 2.5894558747316916, "coord": [48.85605629151337, 2.5894558747316916], "stop_id": 5231547, "stop_desc": "2 BOULEVARD DE LA REPUBLIQUE - 77083", "stop_name": "C.S.T.B. MATTEOTTI"}, "geometry": {"type": "Point", "coordinates": [2.5894558747316916, 48.85605629151337]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5db620c4951b830c800307e79fb619405a773bfb", "fields": {"departement": "93", "stop_lat": 48.85558974422964, "code_postal": "93033", "stop_lon": 2.575983523003637, "coord": [48.85558974422964, 2.575983523003637], "stop_id": 5231550, "stop_desc": "FACE 47 AVENUE ARISTIDE BRIAND - 93033", "stop_name": "LES ROSIERS"}, "geometry": {"type": "Point", "coordinates": [2.575983523003637, 48.85558974422964]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "074173ab4f0262577b769094c0a333e1a1f6c0d6", "fields": {"departement": "93", "stop_lat": 48.84093807040479, "code_postal": "93051", "stop_lon": 2.5535040902030213, "coord": [48.84093807040479, 2.5535040902030213], "stop_id": 5231557, "stop_desc": "PISTE GARE ROUTIERE - 93051", "stop_name": "NOISY-LE-GRAND - MONT D'EST RER"}, "geometry": {"type": "Point", "coordinates": [2.5535040902030213, 48.84093807040479]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "713f4aa07b60b5ef8c38072458679c30ef64fe0f", "fields": {"departement": "93", "stop_lat": 48.85059519865477, "code_postal": "93051", "stop_lon": 2.5354180326589923, "coord": [48.85059519865477, 2.5354180326589923], "stop_id": 5231559, "stop_desc": "FACE 33 ROUTE DE NEUILLY - 93051", "stop_name": "RENE NAVIER"}, "geometry": {"type": "Point", "coordinates": [2.5354180326589923, 48.85059519865477]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f343dc07fcb4c91af5bff81c6efaa97ac7f5e75e", "fields": {"departement": "93", "stop_lat": 48.85513417080288, "code_postal": "93050", "stop_lon": 2.5241173569868938, "coord": [48.85513417080288, 2.5241173569868938], "stop_id": 5231562, "stop_desc": "27 BOULEVARD DU MARECHAL FOCH - 93050", "stop_name": "VILLEBOIS - MAREUIL"}, "geometry": {"type": "Point", "coordinates": [2.5241173569868938, 48.85513417080288]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8abab88961641849038be89c0dd7e304d7d42efc", "fields": {"departement": "93", "stop_lat": 48.854634780445664, "code_postal": "93050", "stop_lon": 2.5216095472047004, "coord": [48.854634780445664, 2.5216095472047004], "stop_id": 5231563, "stop_desc": "11 TER BOULEVARD DU MARECHAL FOCH - 93050", "stop_name": "HELENE BOUCHER"}, "geometry": {"type": "Point", "coordinates": [2.5216095472047004, 48.854634780445664]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "632780d3470e39c00ffe64a2f9f78e7d6c1aa179", "fields": {"departement": "94", "stop_lat": 48.850726191890054, "code_postal": "94058", "stop_lon": 2.5025841007304725, "coord": [48.850726191890054, 2.5025841007304725], "stop_id": 5231567, "stop_desc": "89 BOULEVARD ALSACE-LORRAINE - 94058", "stop_name": "JULES FERRY"}, "geometry": {"type": "Point", "coordinates": [2.5025841007304725, 48.850726191890054]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "678ef51d4d70c979d4af6231d2c18f14cc9d9bdd", "fields": {"departement": "94", "stop_lat": 48.855351310287475, "code_postal": "94033", "stop_lon": 2.48466156778649, "coord": [48.855351310287475, 2.48466156778649], "stop_id": 5231572, "stop_desc": "23 AV DES OLYMPIADES - 94033", "stop_name": "PABLO PICASSO"}, "geometry": {"type": "Point", "coordinates": [2.48466156778649, 48.855351310287475]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2f1f0e2a1cd45901c4be1ff619f2da6f69eb38e5", "fields": {"departement": "93", "stop_lat": 48.85870595359013, "code_postal": "93048", "stop_lon": 2.4285130814056224, "coord": [48.85870595359013, 2.4285130814056224], "stop_id": 5231592, "stop_desc": "FACE 105 BOULEVARD CHANZY - 93048", "stop_name": "SORINS"}, "geometry": {"type": "Point", "coordinates": [2.4285130814056224, 48.85870595359013]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "200f2563052c19e31b376ca6ce53f779dcf3c73c", "fields": {"departement": "75", "stop_lat": 48.86478889391968, "code_postal": "75120", "stop_lon": 2.403663165101848, "coord": [48.86478889391968, 2.403663165101848], "stop_id": 5231597, "stop_desc": "3 RUE BELGRAND - 75120", "stop_name": "PELLEPORT"}, "geometry": {"type": "Point", "coordinates": [2.403663165101848, 48.86478889391968]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e691d8595ac9d887e76bc583f06a023d016a16d5", "fields": {"departement": "75", "stop_lat": 48.855713972473325, "code_postal": "75111", "stop_lon": 2.3785637425146002, "coord": [48.855713972473325, 2.3785637425146002], "stop_id": 5231607, "stop_desc": "167 AVENUE LEDRU ROLLIN - 75111", "stop_name": "BASFROI"}, "geometry": {"type": "Point", "coordinates": [2.3785637425146002, 48.855713972473325]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6a0a3cf5fb2a3b0fd807423e205e62c7bbb33a23", "fields": {"departement": "75", "stop_lat": 48.86455178820427, "code_postal": "75120", "stop_lon": 2.409561271654804, "coord": [48.86455178820427, 2.409561271654804], "stop_id": 5231626, "stop_desc": "2 AVENUE DE LA PORTE DE BAGNOLET - 75120", "stop_name": "PORTE DE BAGNOLET"}, "geometry": {"type": "Point", "coordinates": [2.409561271654804, 48.86455178820427]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ed30b028b0f7cd47ad7d076d5217de46f9b7a10f", "fields": {"departement": "75", "stop_lat": 48.86488327520136, "code_postal": "75120", "stop_lon": 2.41126451915231, "coord": [48.86488327520136, 2.41126451915231], "stop_id": 5231627, "stop_desc": "7 AVENUE CARTELLIER - 75120", "stop_name": "ECHANGEUR DE BAGNOLET"}, "geometry": {"type": "Point", "coordinates": [2.41126451915231, 48.86488327520136]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3882c49e8ffb1fbc46fb50c8d8b3332903141060", "fields": {"departement": "93", "stop_lat": 48.86019450396544, "code_postal": "93006", "stop_lon": 2.420847047944098, "coord": [48.86019450396544, 2.420847047944098], "stop_id": 5231629, "stop_desc": "82 AVENUE DE LA REPUBLIQUE - 93006", "stop_name": "REPUBLIQUE - ROBESPIERRE"}, "geometry": {"type": "Point", "coordinates": [2.420847047944098, 48.86019450396544]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9167a65f6db5b699af3097c1650090c6d350bfcb", "fields": {"departement": "93", "stop_lat": 48.85868970531647, "code_postal": "93048", "stop_lon": 2.437543550108734, "coord": [48.85868970531647, 2.437543550108734], "stop_id": 5231633, "stop_desc": "55 BOULEVARD ROUGET DE LISLE - 93048", "stop_name": "CROIX DE CHAVAUX - ROUGET DE LISLE"}, "geometry": {"type": "Point", "coordinates": [2.437543550108734, 48.85868970531647]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4d5e5464a2bea3fc44dab0be153d8f75f66ddcce", "fields": {"departement": "93", "stop_lat": 48.864264631089206, "code_postal": "93048", "stop_lon": 2.4790745846172895, "coord": [48.864264631089206, 2.4790745846172895], "stop_id": 5231645, "stop_desc": "61 RUE PIERRE BROSSOLETTE - 93048", "stop_name": "LE MORILLON"}, "geometry": {"type": "Point", "coordinates": [2.4790745846172895, 48.864264631089206]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f8d409256b932cb407e482a8e3169bbb36eb7baf", "fields": {"departement": "94", "stop_lat": 48.85228075608887, "code_postal": "94033", "stop_lon": 2.489296917423076, "coord": [48.85228075608887, 2.489296917423076], "stop_id": 5231652, "stop_desc": "AVENUE LOUISON BOBET - 94033", "stop_name": "VAL DE FONTENAY RER - LOUISON BOBET"}, "geometry": {"type": "Point", "coordinates": [2.489296917423076, 48.85228075608887]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fd4cda8c453fce608dd3940c8a69f20ec643edcb", "fields": {"departement": "93", "stop_lat": 48.85503415309562, "code_postal": "93050", "stop_lon": 2.5248524619630364, "coord": [48.85503415309562, 2.5248524619630364], "stop_id": 5231659, "stop_desc": "26 BOULEVARD DU MARECHAL FOCH - 93050", "stop_name": "VILLEBOIS - MAREUIL"}, "geometry": {"type": "Point", "coordinates": [2.5248524619630364, 48.85503415309562]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bd5acc4068894456bc06456a231bb7767c14c19f", "fields": {"departement": "93", "stop_lat": 48.853661095724256, "code_postal": "93051", "stop_lon": 2.5741496475069026, "coord": [48.853661095724256, 2.5741496475069026], "stop_id": 5231670, "stop_desc": "80 ROUTE DE GOURNAY - 93051", "stop_name": "LES PREVOYANTS"}, "geometry": {"type": "Point", "coordinates": [2.5741496475069026, 48.853661095724256]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "00509a27d8bec674a2165fd033b8191e784df75c", "fields": {"departement": "93", "stop_lat": 48.856153679124525, "code_postal": "93033", "stop_lon": 2.577116582650718, "coord": [48.856153679124525, 2.577116582650718], "stop_id": 5231671, "stop_desc": "39 AVENUE ARISTIDE BRIAND - 93033", "stop_name": "LES ROSIERS"}, "geometry": {"type": "Point", "coordinates": [2.577116582650718, 48.856153679124525]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "faafd0dafd15a568321adaa1d361063d8d562bfc", "fields": {"departement": "77", "stop_lat": 48.85089483954968, "code_postal": "77337", "stop_lon": 2.6262148431505064, "coord": [48.85089483954968, 2.6262148431505064], "stop_id": 5231680, "stop_desc": "192 COURS DE L'ARCHE GUEDON - 77337", "stop_name": "JULES FERRY"}, "geometry": {"type": "Point", "coordinates": [2.6262148431505064, 48.85089483954968]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "da77e30cb3d147fe2c39c805eea5ca948a0bb0e9", "fields": {"departement": "77", "stop_lat": 48.84937386327594, "code_postal": "77468", "stop_lon": 2.6414861033950703, "coord": [48.84937386327594, 2.6414861033950703], "stop_id": 5231684, "stop_desc": "103 RUE DE PARIS - 77468", "stop_name": "BEL AIR"}, "geometry": {"type": "Point", "coordinates": [2.6414861033950703, 48.84937386327594]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bd407b99fc0a2d290deabd4d10be4b5f0103d31c", "fields": {"departement": "77", "stop_lat": 48.849963254010994, "code_postal": "77468", "stop_lon": 2.6464466804422355, "coord": [48.849963254010994, 2.6464466804422355], "stop_id": 5231685, "stop_desc": "71 TER RUE DE PARIS - 77468", "stop_name": "LES TILLEULS"}, "geometry": {"type": "Point", "coordinates": [2.6464466804422355, 48.849963254010994]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c3fc199c5ee354aa17f64847d3233f5b6bd57202", "fields": {"departement": "77", "stop_lat": 48.83924806864605, "code_postal": "77468", "stop_lon": 2.6573978872932438, "coord": [48.83924806864605, 2.6573978872932438], "stop_id": 5231692, "stop_desc": "AVENUE JEAN MOULIN - 77468", "stop_name": "CITES UNIES"}, "geometry": {"type": "Point", "coordinates": [2.6573978872932438, 48.83924806864605]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6d8368e015aa5fb1dc8c81624c08bf98fcd0463e", "fields": {"departement": "91", "stop_lat": 48.73953746754802, "code_postal": "91645", "stop_lon": 2.24789056992582, "coord": [48.73953746754802, 2.24789056992582], "stop_id": 5231697, "stop_desc": "16-16 BIS RUE DE PARIS - 91645", "stop_name": "CROIX PASQUIER"}, "geometry": {"type": "Point", "coordinates": [2.24789056992582, 48.73953746754802]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d95960ed745273beb9a19df73e7a8e3566d8fcb3", "fields": {"departement": "92", "stop_lat": 48.895287505785355, "code_postal": "92026", "stop_lon": 2.2503889671181168, "coord": [48.895287505785355, 2.2503889671181168], "stop_id": 4024823, "stop_desc": "FACE 5 RUE BAUDIN - 92026", "stop_name": "PLACE CHARRAS"}, "geometry": {"type": "Point", "coordinates": [2.2503889671181168, 48.895287505785355]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e4f1a592d17c14450ce436f87d3dfbceda169ac1", "fields": {"departement": "92", "stop_lat": 48.899274049222974, "code_postal": "92026", "stop_lon": 2.2579067754612288, "coord": [48.899274049222974, 2.2579067754612288], "stop_id": 4024829, "stop_desc": "22 BOULEVARD ARISTIDE BRIAND - 92026", "stop_name": "STADE DE COURBEVOIE"}, "geometry": {"type": "Point", "coordinates": [2.2579067754612288, 48.899274049222974]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0d962b239e46874c5a0323aca58f5c7c5dfdcdaf", "fields": {"departement": "92", "stop_lat": 48.89922884988634, "code_postal": "92026", "stop_lon": 2.2575115366351146, "coord": [48.89922884988634, 2.2575115366351146], "stop_id": 4024830, "stop_desc": "FACE 4 BOULEVARD ARISTIDE BRIAND - 92026", "stop_name": "STADE DE COURBEVOIE"}, "geometry": {"type": "Point", "coordinates": [2.2575115366351146, 48.89922884988634]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7f2eb41d1d9f91c5e326ec9cab6d8a42c2854fcd", "fields": {"departement": "92", "stop_lat": 48.90579805610391, "code_postal": "92035", "stop_lon": 2.256969737857217, "coord": [48.90579805610391, 2.256969737857217], "stop_id": 4024841, "stop_desc": "AVENUE DE L'EUROPE - 92035", "stop_name": "EUROPE"}, "geometry": {"type": "Point", "coordinates": [2.256969737857217, 48.90579805610391]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e05f15d46581bf4d5c8241d09d0917c181ab3726", "fields": {"departement": "92", "stop_lat": 48.89229448372368, "code_postal": "92062", "stop_lon": 2.238468179604673, "coord": [48.89229448372368, 2.238468179604673], "stop_id": 4024843, "stop_desc": "PISTE GARE ROUTIERE - 92062", "stop_name": "LA DEFENSE-METRO-RER-TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.238468179604673, 48.89229448372368]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e887d65ed0eeb2ee883848fbfd9a33ee53f4b01e", "fields": {"departement": "92", "stop_lat": 48.89160141473085, "code_postal": "92062", "stop_lon": 2.2372019748450263, "coord": [48.89160141473085, 2.2372019748450263], "stop_id": 4024844, "stop_desc": "PISTE GARE ROUTIERE - 92062", "stop_name": "LA DEFENSE-METRO-RER-TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.2372019748450263, 48.89160141473085]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "62b9606083b60fc6f6d0d92ffe77e8b0c7594225", "fields": {"departement": "92", "stop_lat": 48.88252958973367, "code_postal": "92050", "stop_lon": 2.223061108497506, "coord": [48.88252958973367, 2.223061108497506], "stop_id": 4024851, "stop_desc": "26 ROUTE DES FUSILLES DE LA RESISTANCE - 92050", "stop_name": "FELIX FAURE"}, "geometry": {"type": "Point", "coordinates": [2.223061108497506, 48.88252958973367]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "332aa3f6971217dd90f19f6d8feaef9b9ec15c02", "fields": {"departement": "92", "stop_lat": 48.86597653861773, "code_postal": "92073", "stop_lon": 2.2155778979584033, "coord": [48.86597653861773, 2.2155778979584033], "stop_id": 4024858, "stop_desc": "96 BOULEVARD DU MARECHAL DE LATTRE DE TASSIGNY - 92073", "stop_name": "LES BONS RAISINS"}, "geometry": {"type": "Point", "coordinates": [2.2155778979584033, 48.86597653861773]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f7502c73d083c3c3a04af8c45e1f3c0da4821123", "fields": {"departement": "92", "stop_lat": 48.85078007536108, "code_postal": "92064", "stop_lon": 2.216839218343171, "coord": [48.85078007536108, 2.216839218343171], "stop_id": 4024865, "stop_desc": "1 RUE DU MONT VALERIEN - 92064", "stop_name": "PONT DES TROIS PIERROTS"}, "geometry": {"type": "Point", "coordinates": [2.216839218343171, 48.85078007536108]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "11adde05f3f5a1dde5c38bebd5f90255b38ec65c", "fields": {"departement": "92", "stop_lat": 48.8491988932974, "code_postal": "92033", "stop_lon": 2.2007462057202085, "coord": [48.8491988932974, 2.2007462057202085], "stop_id": 4024873, "stop_desc": "14 RUE DU 19 JANVIER - 92033", "stop_name": "FOCH-19 JANVIER"}, "geometry": {"type": "Point", "coordinates": [2.2007462057202085, 48.8491988932974]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5288ac039578355fe9845b24cef714367365b921", "fields": {"departement": "92", "stop_lat": 48.84913573103808, "code_postal": "92033", "stop_lon": 2.200528481362456, "coord": [48.84913573103808, 2.200528481362456], "stop_id": 4024874, "stop_desc": "3 RUE DU 19 JANVIER - 92033", "stop_name": "FOCH-19 JANVIER"}, "geometry": {"type": "Point", "coordinates": [2.200528481362456, 48.84913573103808]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9af4826b312bafca1664960e3293eac6f21743ce", "fields": {"departement": "92", "stop_lat": 48.851148415476345, "code_postal": "92033", "stop_lon": 2.192488148607808, "coord": [48.851148415476345, 2.192488148607808], "stop_id": 4024878, "stop_desc": "FACE 50 RUE DU 19 JANVIER - 92033", "stop_name": "LA VERBOISE"}, "geometry": {"type": "Point", "coordinates": [2.192488148607808, 48.851148415476345]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bb244ba6c08db98404c090de9e239c278ea35152", "fields": {"departement": "92", "stop_lat": 48.85066121222601, "code_postal": "92033", "stop_lon": 2.1909506105788665, "coord": [48.85066121222601, 2.1909506105788665], "stop_id": 4024880, "stop_desc": "1 RUE DES QUATRE VENTS - 92033", "stop_name": "REGNAULT"}, "geometry": {"type": "Point", "coordinates": [2.1909506105788665, 48.85066121222601]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "43a35d123ac4da89e78edd14dfea4acbcee0ce59", "fields": {"departement": "92", "stop_lat": 48.84688963969009, "code_postal": "92033", "stop_lon": 2.1935622042648704, "coord": [48.84688963969009, 2.1935622042648704], "stop_id": 4024883, "stop_desc": "FACE 42 RUE DE SURESNES - 92033", "stop_name": "SYLVAIN VIGNERAS"}, "geometry": {"type": "Point", "coordinates": [2.1935622042648704, 48.84688963969009]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5c4e9c69319496b79d7791b7ce6c1479d97966d3", "fields": {"departement": "92", "stop_lat": 48.84679081017055, "code_postal": "92033", "stop_lon": 2.1935897131149305, "coord": [48.84679081017055, 2.1935897131149305], "stop_id": 4024884, "stop_desc": "42 RUE DE SURESNES - 92033", "stop_name": "SYLVAIN VIGNERAS"}, "geometry": {"type": "Point", "coordinates": [2.1935897131149305, 48.84679081017055]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "67f06f7831c9a46a2a20c2621cfba67f0fccf5d3", "fields": {"departement": "92", "stop_lat": 48.843951477465524, "code_postal": "92033", "stop_lon": 2.18689810879668, "coord": [48.843951477465524, 2.18689810879668], "stop_id": 4024888, "stop_desc": "16 AVENUE DU MARECHAL LECLERC - 92033", "stop_name": "CHARLES DEVOS"}, "geometry": {"type": "Point", "coordinates": [2.18689810879668, 48.843951477465524]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e44f916e9d2b0234f3f27026b6ce6e5b88d3638d", "fields": {"departement": "92", "stop_lat": 48.838547281937004, "code_postal": "92033", "stop_lon": 2.171351380628767, "coord": [48.838547281937004, 2.171351380628767], "stop_id": 4024893, "stop_desc": "104 BOULEVARD RAYMOND POINCARE - 92033", "stop_name": "HOPITAL DE GARCHES"}, "geometry": {"type": "Point", "coordinates": [2.171351380628767, 48.838547281937004]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2877ecfbacb37f46cc4cd0cbc32b8da12b77b52c", "fields": {"departement": "92", "stop_lat": 48.83806397867539, "code_postal": "92047", "stop_lon": 2.1794540076298587, "coord": [48.83806397867539, 2.1794540076298587], "stop_id": 4024896, "stop_desc": "FACE 76 BOULEVARD RAYMOND POINCARE - 92047", "stop_name": "PASTEUR"}, "geometry": {"type": "Point", "coordinates": [2.1794540076298587, 48.83806397867539]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4ffaac54bbc1771b528dbaa86ccb8344bf132cf4", "fields": {"departement": "92", "stop_lat": 48.90898951923673, "code_postal": "92050", "stop_lon": 2.215735927151765, "coord": [48.90898951923673, 2.215735927151765], "stop_id": 4024915, "stop_desc": "RUE DU 1ER MAI - 92050", "stop_name": "LES SAULES"}, "geometry": {"type": "Point", "coordinates": [2.215735927151765, 48.90898951923673]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7b33be2d5c9a2c9537b7d8d5ad89c6fd26eed62a", "fields": {"departement": "92", "stop_lat": 48.90837683468435, "code_postal": "92050", "stop_lon": 2.2142103866451737, "coord": [48.90837683468435, 2.2142103866451737], "stop_id": 4024917, "stop_desc": "301 AVENUE DE LA REPUBLIQUE - 92050", "stop_name": "LES PAQUERETTES"}, "geometry": {"type": "Point", "coordinates": [2.2142103866451737, 48.90837683468435]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7aa6c8acf239b978170b54b5003967bfeb92c242", "fields": {"departement": "92", "stop_lat": 48.90684398241169, "code_postal": "92050", "stop_lon": 2.218085890949149, "coord": [48.90684398241169, 2.218085890949149], "stop_id": 4024919, "stop_desc": "RUE DU 11 NOVEMBRE - 92050", "stop_name": "DEQUEANT"}, "geometry": {"type": "Point", "coordinates": [2.218085890949149, 48.90684398241169]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8a040c031beb70af02fa995e6ee72cc4a787a9a1", "fields": {"departement": "92", "stop_lat": 48.90654257167447, "code_postal": "92050", "stop_lon": 2.2223128897779527, "coord": [48.90654257167447, 2.2223128897779527], "stop_id": 4024921, "stop_desc": "RUE DU 11 NOVEMBRE - 92050", "stop_name": "PONT DES FONDRIERES"}, "geometry": {"type": "Point", "coordinates": [2.2223128897779527, 48.90654257167447]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "001ad0f201d4f2d004cef8b3f43e95a833179d18", "fields": {"departement": "92", "stop_lat": 48.906739944643384, "code_postal": "92050", "stop_lon": 2.221957986244887, "coord": [48.906739944643384, 2.221957986244887], "stop_id": 4024922, "stop_desc": "RUE DU 11 NOVEMBRE - 92050", "stop_name": "PONT DES FONDRIERES"}, "geometry": {"type": "Point", "coordinates": [2.221957986244887, 48.906739944643384]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a6fd4306624693d0ee7f4624beb1cde97b91d200", "fields": {"departement": "92", "stop_lat": 48.904374499734764, "code_postal": "92050", "stop_lon": 2.2200683081841626, "coord": [48.904374499734764, 2.2200683081841626], "stop_id": 4024924, "stop_desc": "14 RUE NOEL PONS - 92050", "stop_name": "NOEL PONS"}, "geometry": {"type": "Point", "coordinates": [2.2200683081841626, 48.904374499734764]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a5910be8f1215760cadf135b88676b8df0456d5d", "fields": {"departement": "92", "stop_lat": 48.89893064237258, "code_postal": "92050", "stop_lon": 2.2134830976924333, "coord": [48.89893064237258, 2.2134830976924333], "stop_id": 4024927, "stop_desc": "BOULEVARD JULES MANSARD - 92050", "stop_name": "SOUFFLOT"}, "geometry": {"type": "Point", "coordinates": [2.2134830976924333, 48.89893064237258]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "581ed6294c758d36dc33c974ee6185d650f0077b", "fields": {"departement": "92", "stop_lat": 48.89925827822141, "code_postal": "92050", "stop_lon": 2.208861294335981, "coord": [48.89925827822141, 2.208861294335981], "stop_id": 4024930, "stop_desc": "RUE PASCAL - 92050", "stop_name": "PASCAL"}, "geometry": {"type": "Point", "coordinates": [2.208861294335981, 48.89925827822141]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "21b929c5510dded76a44759eec962f2b6444ec34", "fields": {"departement": "92", "stop_lat": 48.895409163496645, "code_postal": "92050", "stop_lon": 2.1909878497568465, "coord": [48.895409163496645, 2.1909878497568465], "stop_id": 4024935, "stop_desc": "FACE 27 AVENUE JULES QUENTIN - 92050", "stop_name": "JULES QUENTIN"}, "geometry": {"type": "Point", "coordinates": [2.1909878497568465, 48.895409163496645]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "25fcd4b770fe9aa4b5b7e249ab8d07dfc4dc546c", "fields": {"departement": "92", "stop_lat": 48.89613484894457, "code_postal": "92050", "stop_lon": 2.1891456821111297, "coord": [48.89613484894457, 2.1891456821111297], "stop_id": 4024937, "stop_desc": "AVENUE JULES QUENTIN - 92050", "stop_name": "ERNEST RENAN"}, "geometry": {"type": "Point", "coordinates": [2.1891456821111297, 48.89613484894457]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2c02811df575668d2096e96757cfc161a486e743", "fields": {"departement": "92", "stop_lat": 48.894346610551864, "code_postal": "92050", "stop_lon": 2.1822403594759394, "coord": [48.894346610551864, 2.1822403594759394], "stop_id": 4024942, "stop_desc": "RUE DES FONDRIERES - 92050", "stop_name": "LES GUILLERAIES"}, "geometry": {"type": "Point", "coordinates": [2.1822403594759394, 48.894346610551864]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d76c501a5b7a144850655fc6296d4b009379363c", "fields": {"departement": "92", "stop_lat": 48.89369567820926, "code_postal": "92050", "stop_lon": 2.1726605027032497, "coord": [48.89369567820926, 2.1726605027032497], "stop_id": 4024945, "stop_desc": "RUE PAUL HEROULT - 92050", "stop_name": "LAVOISIER"}, "geometry": {"type": "Point", "coordinates": [2.1726605027032497, 48.89369567820926]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7eb52fbf523c18e74039499ffd402d6381e0d48f", "fields": {"departement": "92", "stop_lat": 48.893190963423706, "code_postal": "92063", "stop_lon": 2.1716262448822765, "coord": [48.893190963423706, 2.1716262448822765], "stop_id": 4024947, "stop_desc": "16 RUE SAINTE-CLAIRE DEVILLE - 92063", "stop_name": "SAINTE-CLAIRE DEVILLE"}, "geometry": {"type": "Point", "coordinates": [2.1716262448822765, 48.893190963423706]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4f5bf6d43a73e20c4057d5dfb424a1359080af69", "fields": {"departement": "92", "stop_lat": 48.89302176215461, "code_postal": "92050", "stop_lon": 2.179395715050497, "coord": [48.89302176215461, 2.179395715050497], "stop_id": 4024974, "stop_desc": "5-51 RUE DU PORT - 92050", "stop_name": "PARC DE L'ILE"}, "geometry": {"type": "Point", "coordinates": [2.179395715050497, 48.89302176215461]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8a5e641debbd1ad7bb3d36e91faaf97a4f89bbff", "fields": {"departement": "92", "stop_lat": 48.895867989680625, "code_postal": "92050", "stop_lon": 2.1842122235125045, "coord": [48.895867989680625, 2.1842122235125045], "stop_id": 4024976, "stop_desc": "FACE 26 RUE DES AGGLOMERES - 92050", "stop_name": "PAUL LESCOP"}, "geometry": {"type": "Point", "coordinates": [2.1842122235125045, 48.895867989680625]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c266b80cf375b75af7299b49d86d48d1f586736c", "fields": {"departement": "92", "stop_lat": 48.83666228931888, "code_postal": "92012", "stop_lon": 2.227845576982093, "coord": [48.83666228931888, 2.227845576982093], "stop_id": 4024987, "stop_desc": "FACE 33 R DE SEVRES - 92012", "stop_name": "STADE DE BOULOGNE-BILLANCOURT"}, "geometry": {"type": "Point", "coordinates": [2.227845576982093, 48.83666228931888]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2b53c64ddc8efe496f58502a8da99ea681b25e93", "fields": {"departement": "92", "stop_lat": 48.84007830872952, "code_postal": "92012", "stop_lon": 2.2286553198822943, "coord": [48.84007830872952, 2.2286553198822943], "stop_id": 4024988, "stop_desc": "FACE 2 R DE SEVRES - 92012", "stop_name": "RHIN ET DANUBE - METRO"}, "geometry": {"type": "Point", "coordinates": [2.2286553198822943, 48.84007830872952]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e726e27728a9614c315aebfb3c5c7593e89da3da", "fields": {"departement": "92", "stop_lat": 48.844740924073406, "code_postal": "92064", "stop_lon": 2.217288980279421, "coord": [48.844740924073406, 2.217288980279421], "stop_id": 4024995, "stop_desc": "FACE 37 RUE DAILLY - 92064", "stop_name": "GARE DE SAINT-CLOUD"}, "geometry": {"type": "Point", "coordinates": [2.217288980279421, 48.844740924073406]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d546cf10f27fcbba0c8ada010ea5b9df4ed235a2", "fields": {"departement": "92", "stop_lat": 48.84233860796021, "code_postal": "92064", "stop_lon": 2.206251656368983, "coord": [48.84233860796021, 2.206251656368983], "stop_id": 4024999, "stop_desc": "6 R PASTEUR - 92064", "stop_name": "GENERAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.206251656368983, 48.84233860796021]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cf86041e959d07a4a09d71817b117d1be7fe3d2b", "fields": {"departement": "92", "stop_lat": 48.84235862061446, "code_postal": "92064", "stop_lon": 2.208117049908656, "coord": [48.84235862061446, 2.208117049908656], "stop_id": 4025000, "stop_desc": "35 R GOUNOD - 92064", "stop_name": "GENERAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.208117049908656, 48.84235862061446]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1499e63cb851852461e16e939c58d8974e54816a", "fields": {"departement": "92", "stop_lat": 48.8415505611676, "code_postal": "92064", "stop_lon": 2.2007935624528256, "coord": [48.8415505611676, 2.2007935624528256], "stop_id": 4025004, "stop_desc": "3 R PASTEUR - 92064", "stop_name": "PORTE JAUNE - PASTEUR"}, "geometry": {"type": "Point", "coordinates": [2.2007935624528256, 48.8415505611676]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6cc0c41403f760306cb7b2c5b959577ec00eb1dc", "fields": {"departement": "92", "stop_lat": 48.84700276320427, "code_postal": "92064", "stop_lon": 2.1980012293398192, "coord": [48.84700276320427, 2.1980012293398192], "stop_id": 4025007, "stop_desc": "FACE 37 R DE LA PORTE JAUNE - 92064", "stop_name": "TAHERE"}, "geometry": {"type": "Point", "coordinates": [2.1980012293398192, 48.84700276320427]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3e55db9ccca1c4a92f240141bf25d053a19d3a0c", "fields": {"departement": "92", "stop_lat": 48.85779164506045, "code_postal": "92063", "stop_lon": 2.193722685576675, "coord": [48.85779164506045, 2.193722685576675], "stop_id": 4025012, "stop_desc": "FACE 194 R DU LIEUTENANT COLONEL DE MONTBRISON - 92063", "stop_name": "EGLISE DE BUZENVAL"}, "geometry": {"type": "Point", "coordinates": [2.193722685576675, 48.85779164506045]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "abfee4b606366c37b5a443b1eaa40ca9addf47f2", "fields": {"departement": "92", "stop_lat": 48.85943958827298, "code_postal": "92063", "stop_lon": 2.181976934229898, "coord": [48.85943958827298, 2.181976934229898], "stop_id": 4025017, "stop_desc": "FACE 105 AV DE LA CHATAIGNERAIE - 92063", "stop_name": "COLLEGE PASSY - BUZENVAL"}, "geometry": {"type": "Point", "coordinates": [2.181976934229898, 48.85943958827298]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d8f01520b169d531a39547656298b6780483d1a7", "fields": {"departement": "92", "stop_lat": 48.867313875534556, "code_postal": "92063", "stop_lon": 2.1762044728666226, "coord": [48.867313875534556, 2.1762044728666226], "stop_id": 4025025, "stop_desc": "FACE 58-60 RTE DE L'EMPEREUR - 92063", "stop_name": "GENERAL DE MIRIBEL"}, "geometry": {"type": "Point", "coordinates": [2.1762044728666226, 48.867313875534556]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d3c9d5d2ad29bb1b16e22c91ff0f14ca6a07c433", "fields": {"departement": "92", "stop_lat": 48.876609766047764, "code_postal": "92063", "stop_lon": 2.185318228544712, "coord": [48.876609766047764, 2.185318228544712], "stop_id": 4025036, "stop_desc": "FACE 32 RUE DE LA LIBERATION - 92063", "stop_name": "HOPITAL STELL"}, "geometry": {"type": "Point", "coordinates": [2.185318228544712, 48.876609766047764]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8b9ca1bb8938266bfad7b9cbee8f29be09650f45", "fields": {"departement": "92", "stop_lat": 48.887143714957126, "code_postal": "92063", "stop_lon": 2.1724496297667937, "coord": [48.887143714957126, 2.1724496297667937], "stop_id": 4025045, "stop_desc": "0 AV DE COLMAR - 92063", "stop_name": "RUEIL-MALMAISON RER"}, "geometry": {"type": "Point", "coordinates": [2.1724496297667937, 48.887143714957126]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "98f49d187aaa00986bf855f8a1e2b5714849f012", "fields": {"departement": "92", "stop_lat": 48.85800477492691, "code_postal": "92063", "stop_lon": 2.1844329192069574, "coord": [48.85800477492691, 2.1844329192069574], "stop_id": 4025048, "stop_desc": "FACE 68 R DU MARQUIS DE CORIOLIS - 92063", "stop_name": "LE CHAMPTIER"}, "geometry": {"type": "Point", "coordinates": [2.1844329192069574, 48.85800477492691]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "585449e0f5cd3ab05ce451fb839dc73de9ba6d49", "fields": {"departement": "92", "stop_lat": 48.842420119674976, "code_postal": "92033", "stop_lon": 2.198857746647919, "coord": [48.842420119674976, 2.198857746647919], "stop_id": 4025055, "stop_desc": "R DE LA PORTE JAUNE - 92033", "stop_name": "GRANDE RUE"}, "geometry": {"type": "Point", "coordinates": [2.198857746647919, 48.842420119674976]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "14e234c64e053348522c7358332c6a6a8f41dd0d", "fields": {"departement": "92", "stop_lat": 48.85943958827298, "code_postal": "92063", "stop_lon": 2.181976934229898, "coord": [48.85943958827298, 2.181976934229898], "stop_id": 4025074, "stop_desc": "FACE 105 AV DE LA CHATAIGNERAIE - 92063", "stop_name": "COLLEGE PASSY - BUZENVAL"}, "geometry": {"type": "Point", "coordinates": [2.181976934229898, 48.85943958827298]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7a94adde0310d9e17e655b64520eea84e6701f86", "fields": {"departement": "92", "stop_lat": 48.87595412606231, "code_postal": "92062", "stop_lon": 2.2366054129695985, "coord": [48.87595412606231, 2.2366054129695985], "stop_id": 4025079, "stop_desc": "R FRANCIS DE PRESSENSE - 92062", "stop_name": "CONSERVATOIRE-PRESSENSE"}, "geometry": {"type": "Point", "coordinates": [2.2366054129695985, 48.87595412606231]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "61da6963c766d3c0788a7cc3c34d7d0414a18642", "fields": {"departement": "92", "stop_lat": 48.87855933518828, "code_postal": "92062", "stop_lon": 2.235305896379359, "coord": [48.87855933518828, 2.235305896379359], "stop_id": 4025082, "stop_desc": "140 RUE DE VERDUN - 92062", "stop_name": "RESIDENCE VERDUN"}, "geometry": {"type": "Point", "coordinates": [2.235305896379359, 48.87855933518828]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8b0dc1a3d24f27a09dbc0a0cebca2abe803d1477", "fields": {"departement": "92", "stop_lat": 48.8804395058624, "code_postal": "92062", "stop_lon": 2.2374687924688517, "coord": [48.8804395058624, 2.2374687924688517], "stop_id": 4025085, "stop_desc": "133 R JEAN JAURES - 92062", "stop_name": "WALLACE - JAURES"}, "geometry": {"type": "Point", "coordinates": [2.2374687924688517, 48.8804395058624]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "85606276b277816aef3b35ccb56eb8027383984a", "fields": {"departement": "92", "stop_lat": 48.88371676955176, "code_postal": "92062", "stop_lon": 2.233851265998093, "coord": [48.88371676955176, 2.233851265998093], "stop_id": 4025089, "stop_desc": "RUE DE LA REPUBLIQUE - 92062", "stop_name": "GARE DE PUTEAUX"}, "geometry": {"type": "Point", "coordinates": [2.233851265998093, 48.88371676955176]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "772700446372899645499fcc1905470ff1865e5d", "fields": {"departement": "92", "stop_lat": 48.884503004736075, "code_postal": "92062", "stop_lon": 2.238987243699706, "coord": [48.884503004736075, 2.238987243699706], "stop_id": 4025104, "stop_desc": "FACE104BIS RUE DE LA REPUBLIQUE - 92062", "stop_name": "MAIRIE DE PUTEAUX"}, "geometry": {"type": "Point", "coordinates": [2.238987243699706, 48.884503004736075]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "852c95c2e836cc09cd17cd38e31af28b79b988d6", "fields": {"departement": "92", "stop_lat": 48.88659626860713, "code_postal": "92062", "stop_lon": 2.2495313409976747, "coord": [48.88659626860713, 2.2495313409976747], "stop_id": 4025108, "stop_desc": "5-7 RUE BELLINI - 92062", "stop_name": "ESPLANADE DE LA DEFENSE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.2495313409976747, 48.88659626860713]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f8765a5be5f432b4c52028a8b91b08b0bad41d8e", "fields": {"departement": "92", "stop_lat": 48.88097822577583, "code_postal": "92062", "stop_lon": 2.2368545622460583, "coord": [48.88097822577583, 2.2368545622460583], "stop_id": 4025112, "stop_desc": "29 R EUGENE EICHENBERGER - 92062", "stop_name": "WALLACE - JAURES"}, "geometry": {"type": "Point", "coordinates": [2.2368545622460583, 48.88097822577583]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "818bba14816993b15143dd3ca1446707847892d3", "fields": {"departement": "92", "stop_lat": 48.88284929871456, "code_postal": "92062", "stop_lon": 2.2389222435582257, "coord": [48.88284929871456, 2.2389222435582257], "stop_id": 4025122, "stop_desc": "FACE 5 R CHANTE COQ - 92062", "stop_name": "MARCHE DE PUTEAUX"}, "geometry": {"type": "Point", "coordinates": [2.2389222435582257, 48.88284929871456]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "72840b1201f43dd98f626bae3ad87d7fed7155b7", "fields": {"departement": "92", "stop_lat": 48.89225832527781, "code_postal": "92050", "stop_lon": 2.227932658046209, "coord": [48.89225832527781, 2.227932658046209], "stop_id": 4025132, "stop_desc": "BD DES BOUVETS - 92050", "stop_name": "CIMETIERE NOUVEAU"}, "geometry": {"type": "Point", "coordinates": [2.227932658046209, 48.89225832527781]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a2c26e057a17dc2a3960f78620857c6ed797cb4f", "fields": {"departement": "92", "stop_lat": 48.88297823050571, "code_postal": "92062", "stop_lon": 2.2320403424676556, "coord": [48.88297823050571, 2.2320403424676556], "stop_id": 4025136, "stop_desc": "33-35 RUE CARTAULT - 92062", "stop_name": "OFFENBACH"}, "geometry": {"type": "Point", "coordinates": [2.2320403424676556, 48.88297823050571]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2b70bd13aa9e8e13ac67b589ff7ccb7180fdf954", "fields": {"departement": "92", "stop_lat": 48.88336972653603, "code_postal": "92062", "stop_lon": 2.227665233716108, "coord": [48.88336972653603, 2.227665233716108], "stop_id": 4025138, "stop_desc": "FACE 49 RUE BERNARD PALISSY - 92062", "stop_name": "GUTENBERG"}, "geometry": {"type": "Point", "coordinates": [2.227665233716108, 48.88336972653603]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "430a192a72a7c1a40d9d7943fa3d498aca0a1c9f", "fields": {"departement": "92", "stop_lat": 48.88611165762972, "code_postal": "92062", "stop_lon": 2.2504861115803076, "coord": [48.88611165762972, 2.2504861115803076], "stop_id": 4025142, "stop_desc": "2-4 RUE BELLINI - 92062", "stop_name": "BELLINI"}, "geometry": {"type": "Point", "coordinates": [2.2504861115803076, 48.88611165762972]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f3f6e16308d3fbf801b4961290f9fd64b87a7017", "fields": {"departement": "92", "stop_lat": 48.88097822577583, "code_postal": "92062", "stop_lon": 2.2368545622460583, "coord": [48.88097822577583, 2.2368545622460583], "stop_id": 4025147, "stop_desc": "29 R EUGENE EICHENBERGER - 92062", "stop_name": "WALLACE - JAURES"}, "geometry": {"type": "Point", "coordinates": [2.2368545622460583, 48.88097822577583]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cd6a9daf50886bda7f596f06b9a33da7ce0afdc5", "fields": {"departement": "92", "stop_lat": 48.88060207123808, "code_postal": "92062", "stop_lon": 2.2384223287696106, "coord": [48.88060207123808, 2.2384223287696106], "stop_id": 4025152, "stop_desc": "60 BIS BOULEVARD RICHARD WALLACE - 92062", "stop_name": "WALLACE - JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.2384223287696106, 48.88060207123808]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "63a0cd0772ccd9cd26b6c2225aff67c5170a21f9", "fields": {"departement": "92", "stop_lat": 48.88297823050571, "code_postal": "92062", "stop_lon": 2.2320403424676556, "coord": [48.88297823050571, 2.2320403424676556], "stop_id": 4025156, "stop_desc": "33-35 RUE CARTAULT - 92062", "stop_name": "OFFENBACH"}, "geometry": {"type": "Point", "coordinates": [2.2320403424676556, 48.88297823050571]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cf72bc9b182640983fd8a64342b8ce86bce588c0", "fields": {"departement": "92", "stop_lat": 48.881681136378475, "code_postal": "92062", "stop_lon": 2.22877256644245, "coord": [48.881681136378475, 2.22877256644245], "stop_id": 4025157, "stop_desc": "29 RUE CARTAULT - 92062", "stop_name": "CARTAULT - PALISSY"}, "geometry": {"type": "Point", "coordinates": [2.22877256644245, 48.881681136378475]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "352f02755a9705b6dca023720d5ab5f0084ec51f", "fields": {"departement": "92", "stop_lat": 48.88731991777116, "code_postal": "92062", "stop_lon": 2.2330127586935045, "coord": [48.88731991777116, 2.2330127586935045], "stop_id": 4025167, "stop_desc": "65-69 AVENUE DU GENERAL DE GAULLE - 92062", "stop_name": "LES GRAVIERS"}, "geometry": {"type": "Point", "coordinates": [2.2330127586935045, 48.88731991777116]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "339a7fe48874bde48de0a2af9f93181df3ff97df", "fields": {"departement": "92", "stop_lat": 48.882311047983265, "code_postal": "92062", "stop_lon": 2.240122428809682, "coord": [48.882311047983265, 2.240122428809682], "stop_id": 4025171, "stop_desc": "39 RUE GODEFROY - 92062", "stop_name": "COLLIN"}, "geometry": {"type": "Point", "coordinates": [2.240122428809682, 48.882311047983265]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "800b0bdd2517c32bb6d0fc517998c23e8895dd5f", "fields": {"departement": "92", "stop_lat": 48.881681136378475, "code_postal": "92062", "stop_lon": 2.22877256644245, "coord": [48.881681136378475, 2.22877256644245], "stop_id": 4025182, "stop_desc": "29 RUE CARTAULT - 92062", "stop_name": "CARTAULT - PALISSY"}, "geometry": {"type": "Point", "coordinates": [2.22877256644245, 48.881681136378475]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c08f8138be4a68b60f16b5607e6a8017dddca3e6", "fields": {"departement": "92", "stop_lat": 48.884503004736075, "code_postal": "92062", "stop_lon": 2.238987243699706, "coord": [48.884503004736075, 2.238987243699706], "stop_id": 4025185, "stop_desc": "FACE104BIS RUE DE LA REPUBLIQUE - 92062", "stop_name": "MAIRIE DE PUTEAUX"}, "geometry": {"type": "Point", "coordinates": [2.238987243699706, 48.884503004736075]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0430292889e04ae756e61a7a977317a91eb86645", "fields": {"departement": "92", "stop_lat": 48.88267095834993, "code_postal": "92062", "stop_lon": 2.240639578928195, "coord": [48.88267095834993, 2.240639578928195], "stop_id": 4025186, "stop_desc": "RUE JEAN JAURES - 92062", "stop_name": "ROQUE DE FILLOL"}, "geometry": {"type": "Point", "coordinates": [2.240639578928195, 48.88267095834993]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9eda96c4c334f03df6af8fb899c7fb1617588aba", "fields": {"departement": "92", "stop_lat": 48.88659626860713, "code_postal": "92062", "stop_lon": 2.2495313409976747, "coord": [48.88659626860713, 2.2495313409976747], "stop_id": 4025189, "stop_desc": "5-7 RUE BELLINI - 92062", "stop_name": "ESPLANADE DE LA DEFENSE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.2495313409976747, 48.88659626860713]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "55735d85a4c67a2df742b0f45740fab565563e32", "fields": {"departement": "92", "stop_lat": 48.882606688350634, "code_postal": "92062", "stop_lon": 2.2389772115482813, "coord": [48.882606688350634, 2.2389772115482813], "stop_id": 4025194, "stop_desc": "69 RUE EUGENE EICHENBERGER - 92062", "stop_name": "MARCHE DE PUTEAUX"}, "geometry": {"type": "Point", "coordinates": [2.2389772115482813, 48.882606688350634]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b0f48a8c5c16fd49d912ba97fd5b855a2df48798", "fields": {"departement": "92", "stop_lat": 48.875604206849836, "code_postal": "92062", "stop_lon": 2.2373009725892907, "coord": [48.875604206849836, 2.2373009725892907], "stop_id": 4025198, "stop_desc": "2 BIS R FRANCIS DE PRESSENSE - 92062", "stop_name": "CONSERVATOIRE-PRESSENSE"}, "geometry": {"type": "Point", "coordinates": [2.2373009725892907, 48.875604206849836]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "947c8fffdecffbd58d231cbbdc35e8a7e1a84f83", "fields": {"departement": "92", "stop_lat": 48.89787377975509, "code_postal": "92050", "stop_lon": 2.1927392886770676, "coord": [48.89787377975509, 2.1927392886770676], "stop_id": 4025232, "stop_desc": "R DE ZILINA - 92050", "stop_name": "ZILINA"}, "geometry": {"type": "Point", "coordinates": [2.1927392886770676, 48.89787377975509]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3be8d8c06f1d12043b81501bfbfe14541a53c54d", "fields": {"departement": "92", "stop_lat": 48.89782928976627, "code_postal": "92050", "stop_lon": 2.193107448648696, "coord": [48.89782928976627, 2.193107448648696], "stop_id": 4025233, "stop_desc": "R DE ZILINA - 92050", "stop_name": "ZILINA"}, "geometry": {"type": "Point", "coordinates": [2.193107448648696, 48.89782928976627]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5268e41ddd0c3f622ba893dc7274978c93bbbd8f", "fields": {"departement": "92", "stop_lat": 48.89430751833291, "code_postal": "92050", "stop_lon": 2.194098606496554, "coord": [48.89430751833291, 2.194098606496554], "stop_id": 4025235, "stop_desc": "31 RUE DE STALINGRAD - 92050", "stop_name": "JULES QUENTIN"}, "geometry": {"type": "Point", "coordinates": [2.194098606496554, 48.89430751833291]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dd05126c06a06262be3c7ce0c7f9223fce65712f", "fields": {"departement": "92", "stop_lat": 48.89428070416549, "code_postal": "92050", "stop_lon": 2.1942213507951274, "coord": [48.89428070416549, 2.1942213507951274], "stop_id": 4025237, "stop_desc": "49-51 R DE STALINGRAD - 92050", "stop_name": "STALINGRAD"}, "geometry": {"type": "Point", "coordinates": [2.1942213507951274, 48.89428070416549]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "90575e0574df278affccb8abb0e9eab5afec7111", "fields": {"departement": "92", "stop_lat": 48.886962342334975, "code_postal": "92050", "stop_lon": 2.199488364504161, "coord": [48.886962342334975, 2.199488364504161], "stop_id": 4025243, "stop_desc": "PLACE DE LA BOULE - 92050", "stop_name": "PLACE DE LA BOULE - LENINE"}, "geometry": {"type": "Point", "coordinates": [2.199488364504161, 48.886962342334975]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6b94a78977b09330fbac2fab2a10fb0a4afcb8fd", "fields": {"departement": "92", "stop_lat": 48.880046515332474, "code_postal": "92050", "stop_lon": 2.2033084758163977, "coord": [48.880046515332474, 2.2033084758163977], "stop_id": 4025248, "stop_desc": "71 R DES CHAILLIERS - 92050", "stop_name": "CAMILLE DESMOULINS"}, "geometry": {"type": "Point", "coordinates": [2.2033084758163977, 48.880046515332474]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e0a63175f36ec1437b1fba9b9dac366204f24057", "fields": {"departement": "92", "stop_lat": 48.883116502284224, "code_postal": "92050", "stop_lon": 2.2081381587657183, "coord": [48.883116502284224, 2.2081381587657183], "stop_id": 4025277, "stop_desc": "97-99 R DE LA SOURCE - 92050", "stop_name": "LES DAMADES"}, "geometry": {"type": "Point", "coordinates": [2.2081381587657183, 48.883116502284224]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2f3a979dbbd7f3acc439b9f6b656753c83763dcb", "fields": {"departement": "92", "stop_lat": 48.897851749188334, "code_postal": "92050", "stop_lon": 2.2130631147976536, "coord": [48.897851749188334, 2.2130631147976536], "stop_id": 4025283, "stop_desc": "BOULEVARD JULES MANSARD - 92050", "stop_name": "SOUFFLOT"}, "geometry": {"type": "Point", "coordinates": [2.2130631147976536, 48.897851749188334]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "286a7bbefd28361e22e2a03bc0e0ae859643153b", "fields": {"departement": "92", "stop_lat": 48.89925827822141, "code_postal": "92050", "stop_lon": 2.208861294335981, "coord": [48.89925827822141, 2.208861294335981], "stop_id": 4025285, "stop_desc": "RUE PASCAL - 92050", "stop_name": "PASCAL"}, "geometry": {"type": "Point", "coordinates": [2.208861294335981, 48.89925827822141]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8cbfcdc24b7e36caec0d206196117f8a8dcd23d3", "fields": {"departement": "92", "stop_lat": 48.89736833154283, "code_postal": "92050", "stop_lon": 2.206426057598736, "coord": [48.89736833154283, 2.206426057598736], "stop_id": 4025286, "stop_desc": "15 BD RASPAIL - 92050", "stop_name": "GOUNOD"}, "geometry": {"type": "Point", "coordinates": [2.206426057598736, 48.89736833154283]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6d04cef7cd02fdb6e1cf03b652a3f07c01299370", "fields": {"departement": "92", "stop_lat": 48.89779086071002, "code_postal": "92050", "stop_lon": 2.20654766939271, "coord": [48.89779086071002, 2.20654766939271], "stop_id": 4025287, "stop_desc": "FACE 23 BOULEVARD RASPAIL - 92050", "stop_name": "GOUNOD"}, "geometry": {"type": "Point", "coordinates": [2.20654766939271, 48.89779086071002]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3b691a0d1b72688506755844ca7cc34779e373af", "fields": {"departement": "92", "stop_lat": 48.88898344841831, "code_postal": "92050", "stop_lon": 2.198610760035315, "coord": [48.88898344841831, 2.198610760035315], "stop_id": 4025294, "stop_desc": "1 R GAMBETTA - 92050", "stop_name": "GABRIEL PERI"}, "geometry": {"type": "Point", "coordinates": [2.198610760035315, 48.88898344841831]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8d9e431d5518a55991f2d4255c527b19ed198da3", "fields": {"departement": "92", "stop_lat": 48.89430751833291, "code_postal": "92050", "stop_lon": 2.194098606496554, "coord": [48.89430751833291, 2.194098606496554], "stop_id": 4025300, "stop_desc": "31 RUE DE STALINGRAD - 92050", "stop_name": "JULES QUENTIN"}, "geometry": {"type": "Point", "coordinates": [2.194098606496554, 48.89430751833291]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e537449ec9dcc6d0edffa71f44fcb9c27adce168", "fields": {"departement": "92", "stop_lat": 48.87584788739596, "code_postal": "92063", "stop_lon": 2.179965764284838, "coord": [48.87584788739596, 2.179965764284838], "stop_id": 4025316, "stop_desc": "FACE 4 R JEAN LE COZ - 92063", "stop_name": "EGLISE DE RUEIL"}, "geometry": {"type": "Point", "coordinates": [2.179965764284838, 48.87584788739596]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "263181f5a2b8f6eab6a228a2147413642ead9601", "fields": {"departement": "92", "stop_lat": 48.86602589854308, "code_postal": "92063", "stop_lon": 2.1677215893747652, "coord": [48.86602589854308, 2.1677215893747652], "stop_id": 4025326, "stop_desc": "FACE 22 AV DE VERSAILLES - 92063", "stop_name": "BRETAGNE."}, "geometry": {"type": "Point", "coordinates": [2.1677215893747652, 48.86602589854308]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ead87105b37a3b1b7fa746701419b123ab3f7645", "fields": {"departement": "92", "stop_lat": 48.87818488190759, "code_postal": "92063", "stop_lon": 2.1801903124346387, "coord": [48.87818488190759, 2.1801903124346387], "stop_id": 4025329, "stop_desc": "8 BOULEVARD DU MARECHAL FOCH - 92063", "stop_name": "MAIRIE DE RUEIL"}, "geometry": {"type": "Point", "coordinates": [2.1801903124346387, 48.87818488190759]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5c6c219a48f7a5c813791e0fbec5f387eeb8c2e4", "fields": {"departement": "92", "stop_lat": 48.874126741811956, "code_postal": "92063", "stop_lon": 2.183349919170164, "coord": [48.874126741811956, 2.183349919170164], "stop_id": 4025333, "stop_desc": "FACE 42 BOULEVARD DE SOLFERINO - 92063", "stop_name": "PLACE RICHELIEU"}, "geometry": {"type": "Point", "coordinates": [2.183349919170164, 48.874126741811956]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e3acaf8165c6696b9e5bec55d8ac812f204957e5", "fields": {"departement": "92", "stop_lat": 48.86613852478309, "code_postal": "92063", "stop_lon": 2.1845451745589246, "coord": [48.86613852478309, 2.1845451745589246], "stop_id": 4025338, "stop_desc": "30 AV DE BUZENVAL - 92063", "stop_name": "FOND LOUVET"}, "geometry": {"type": "Point", "coordinates": [2.1845451745589246, 48.86613852478309]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "40937710992ed3c4d256af43bee40cd83caa8b7a", "fields": {"departement": "92", "stop_lat": 48.86236706288304, "code_postal": "92063", "stop_lon": 2.194404725521763, "coord": [48.86236706288304, 2.194404725521763], "stop_id": 4025343, "stop_desc": "54 AV DE FOUILLEUSE - 92063", "stop_name": "FOUILLEUSE"}, "geometry": {"type": "Point", "coordinates": [2.194404725521763, 48.86236706288304]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f0a1981294808de1002254aae0b0b116fd52853e", "fields": {"departement": "92", "stop_lat": 48.86256548606598, "code_postal": "92063", "stop_lon": 2.1949899115932214, "coord": [48.86256548606598, 2.1949899115932214], "stop_id": 4025344, "stop_desc": "FACE 58 AVENUE DE FOUILLEUSE - 92063", "stop_name": "FOUILLEUSE"}, "geometry": {"type": "Point", "coordinates": [2.1949899115932214, 48.86256548606598]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "19d8b06c3ac55d0ab492f7b4d2c84f34ea23be99", "fields": {"departement": "92", "stop_lat": 48.859922983515276, "code_postal": "92063", "stop_lon": 2.1948200875092536, "coord": [48.859922983515276, 2.1948200875092536], "stop_id": 4025345, "stop_desc": "134 R DU LIEUTENANT COLONEL DE MONTBRISON - 92063", "stop_name": "DUMOURIEZ"}, "geometry": {"type": "Point", "coordinates": [2.1948200875092536, 48.859922983515276]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f45e40abc40748f2ef564cb32291a94ddb568bf1", "fields": {"departement": "92", "stop_lat": 48.877927016390224, "code_postal": "92063", "stop_lon": 2.1823030818566864, "coord": [48.877927016390224, 2.1823030818566864], "stop_id": 4025352, "stop_desc": "27 RUE MAUREPAS - 92063", "stop_name": "MAIRIE DE RUEIL."}, "geometry": {"type": "Point", "coordinates": [2.1823030818566864, 48.877927016390224]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cb92e5e9f0427973d8d26046b9a21cdce8050298", "fields": {"departement": "92", "stop_lat": 48.88864621542606, "code_postal": "92050", "stop_lon": 2.22874436019326, "coord": [48.88864621542606, 2.22874436019326], "stop_id": 4025361, "stop_desc": "133 AVENUE PABLO PICASSO - 92050", "stop_name": "LES ROSIERS"}, "geometry": {"type": "Point", "coordinates": [2.22874436019326, 48.88864621542606]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d2d8eb709ed385d98ae1d144f9084a0133f338ee", "fields": {"departement": "92", "stop_lat": 48.88675976589596, "code_postal": "92050", "stop_lon": 2.2201626445631053, "coord": [48.88675976589596, 2.2201626445631053], "stop_id": 4025365, "stop_desc": "R DE WATFORD - 92050", "stop_name": "CRAIOVA"}, "geometry": {"type": "Point", "coordinates": [2.2201626445631053, 48.88675976589596]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b2f4cc2c637eee32e1b584c0398f968a69aeb38e", "fields": {"departement": "92", "stop_lat": 48.886560525870884, "code_postal": "92050", "stop_lon": 2.2099148465989353, "coord": [48.886560525870884, 2.2099148465989353], "stop_id": 4025368, "stop_desc": "0 AV GEORGES CLEMENCEAU - 92050", "stop_name": "CHAMPS PIERREUX"}, "geometry": {"type": "Point", "coordinates": [2.2099148465989353, 48.886560525870884]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ace8dfc3770112992d26f2dcee8a917985501bb5", "fields": {"departement": "94", "stop_lat": 48.81113225531142, "code_postal": "94017", "stop_lon": 2.539676447681396, "coord": [48.81113225531142, 2.539676447681396], "stop_id": 3743457, "stop_desc": "R DU BOIS L'ABBE - 94017", "stop_name": "RUE DU BOIS L'ABBE - LOUISE COLLET"}, "geometry": {"type": "Point", "coordinates": [2.539676447681396, 48.81113225531142]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1129aa76af92f7b2be04afd4b1506755e1376d5f", "fields": {"departement": "93", "stop_lat": 48.92310268555558, "code_postal": "93001", "stop_lon": 2.3696985050555512, "coord": [48.92310268555558, 2.3696985050555512], "stop_id": 3741094, "stop_desc": "AVENUE FRANCIS DE PRESSENSE - 93001", "stop_name": "BERGERIES - FRANC MOISIN"}, "geometry": {"type": "Point", "coordinates": [2.3696985050555512, 48.92310268555558]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6360569e006fb8e9bf39b8a4f1d96b762bca7d0e", "fields": {"departement": "93", "stop_lat": 48.902947209373025, "code_postal": "93066", "stop_lon": 2.359148129193326, "coord": [48.902947209373025, 2.359148129193326], "stop_id": 3741071, "stop_desc": "46-48 AVENUE DU PRESIDENT WILSON - 93066", "stop_name": "PONT HAINGUERLOT"}, "geometry": {"type": "Point", "coordinates": [2.359148129193326, 48.902947209373025]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "05134b5c2a4c024a4fad429063602f6bcef9055a", "fields": {"departement": "93", "stop_lat": 48.88407582329434, "code_postal": "93077", "stop_lon": 2.510676096876497, "coord": [48.88407582329434, 2.510676096876497], "stop_id": 4472818, "stop_desc": "PLACE EMILE DUCATE - 93077", "stop_name": "CHATEAU DE VILLEMOMBLE"}, "geometry": {"type": "Point", "coordinates": [2.510676096876497, 48.88407582329434]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "63f064030af904a6e99d43acd2eed0b967f335ff", "fields": {"departement": "93", "stop_lat": 48.884699099389856, "code_postal": "93077", "stop_lon": 2.502120102414242, "coord": [48.884699099389856, 2.502120102414242], "stop_id": 4472823, "stop_desc": "65-67 AV DE ROSNY - 93077", "stop_name": "MEISSONIER"}, "geometry": {"type": "Point", "coordinates": [2.502120102414242, 48.884699099389856]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b2fd03b1386f79f7f5aa538c95ced46954de9256", "fields": {"departement": "93", "stop_lat": 48.88295989291311, "code_postal": "93077", "stop_lon": 2.4989667209034665, "coord": [48.88295989291311, 2.4989667209034665], "stop_id": 4472825, "stop_desc": "FACE 106 AVENUE DE ROSNY-SOUS-BOIS - 93077", "stop_name": "CIMETIERE DE VILLEMOMBLE"}, "geometry": {"type": "Point", "coordinates": [2.4989667209034665, 48.88295989291311]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cbe7a9d69b6c8e116e524947ec4e1a2c4b9fa7b3", "fields": {"departement": "93", "stop_lat": 48.88626138520519, "code_postal": "93064", "stop_lon": 2.474978254992678, "coord": [48.88626138520519, 2.474978254992678], "stop_id": 4472833, "stop_desc": "AVENUE DE GAGNY - 93064", "stop_name": "ROSNY 2 NORD"}, "geometry": {"type": "Point", "coordinates": [2.474978254992678, 48.88626138520519]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a640e365f396fdac1088541e3ab838cb01583df4", "fields": {"departement": "93", "stop_lat": 48.88709700508149, "code_postal": "93053", "stop_lon": 2.467144298225522, "coord": [48.88709700508149, 2.467144298225522], "stop_id": 4472836, "stop_desc": "236 RUE DE BREMENT - 93053", "stop_name": "BREMENT"}, "geometry": {"type": "Point", "coordinates": [2.467144298225522, 48.88709700508149]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b69dec3aa92b4922c4c6d17fb47a0e7cdf469110", "fields": {"departement": "93", "stop_lat": 48.88638007778591, "code_postal": "93053", "stop_lon": 2.4472457067252935, "coord": [48.88638007778591, 2.4472457067252935], "stop_id": 4472844, "stop_desc": "RUE ANATOLE FRANCE - 93053", "stop_name": "HOCHE"}, "geometry": {"type": "Point", "coordinates": [2.4472457067252935, 48.88638007778591]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "072a87de51cfad84ce36e488cf03bff16b53e39e", "fields": {"departement": "93", "stop_lat": 48.885834489371526, "code_postal": "93053", "stop_lon": 2.4443554563596304, "coord": [48.885834489371526, 2.4443554563596304], "stop_id": 4472845, "stop_desc": "FACE 121 RUE ANATOLE FRANCE - 93053", "stop_name": "RUE DU PARC"}, "geometry": {"type": "Point", "coordinates": [2.4443554563596304, 48.885834489371526]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ab65096249f62471b3ee0b112c2c12b1f1dd747e", "fields": {"departement": "93", "stop_lat": 48.88289931879224, "code_postal": "93063", "stop_lon": 2.440206776933691, "coord": [48.88289931879224, 2.440206776933691], "stop_id": 4472847, "stop_desc": "FACE 6 RUE DE LA REPUBLIQUE - 93063", "stop_name": "CARNOT"}, "geometry": {"type": "Point", "coordinates": [2.440206776933691, 48.88289931879224]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3eb96706d1c85ac796828e0f27732cae6f340067", "fields": {"departement": "93", "stop_lat": 48.88021901272251, "code_postal": "93045", "stop_lon": 2.4198164856309488, "coord": [48.88021901272251, 2.4198164856309488], "stop_id": 4472853, "stop_desc": "33 BOULEVARD DE LA LIBERTE - 93045", "stop_name": "MARECHAL JUIN"}, "geometry": {"type": "Point", "coordinates": [2.4198164856309488, 48.88021901272251]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d367838431bec7f8defa204222a6084c6527e096", "fields": {"departement": "75", "stop_lat": 48.870844523505404, "code_postal": "75110", "stop_lon": 2.361069158580319, "coord": [48.870844523505404, 2.361069158580319], "stop_id": 4472868, "stop_desc": "8 PLACE JACQUES BONSERGENT - 75110", "stop_name": "JACQUES BONSERGENT"}, "geometry": {"type": "Point", "coordinates": [2.361069158580319, 48.870844523505404]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aee2e0b17d86f216c80a8351d55605c32aa499dc", "fields": {"departement": "75", "stop_lat": 48.871114258986275, "code_postal": "75110", "stop_lon": 2.3604834541826505, "coord": [48.871114258986275, 2.3604834541826505], "stop_id": 4472869, "stop_desc": "27-29 BOULEVARD DE MAGENTA - 75110", "stop_name": "JACQUES BONSERGENT"}, "geometry": {"type": "Point", "coordinates": [2.3604834541826505, 48.871114258986275]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d463d10f4632472e8010d5386524e161b933df01", "fields": {"departement": "75", "stop_lat": 48.866682718988855, "code_postal": "75103", "stop_lon": 2.3641868567643844, "coord": [48.866682718988855, 2.3641868567643844], "stop_id": 4472872, "stop_desc": "9 PLACE DE LA REPUBLIQUE - 75103", "stop_name": "REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.3641868567643844, 48.866682718988855]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9b5f168a89da6e21fda9cec61c2d820ecfd04613", "fields": {"departement": "75", "stop_lat": 48.87477226370445, "code_postal": "75120", "stop_lon": 2.388647712129114, "coord": [48.87477226370445, 2.388647712129114], "stop_id": 4472879, "stop_desc": "134 RUE DE BELLEVILLE - 75120", "stop_name": "JOURDAIN"}, "geometry": {"type": "Point", "coordinates": [2.388647712129114, 48.87477226370445]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "43fb9674d2906668b8ca08d9a28fb7732776c6c2", "fields": {"departement": "75", "stop_lat": 48.875548837113016, "code_postal": "75120", "stop_lon": 2.39978017411952, "coord": [48.875548837113016, 2.39978017411952], "stop_id": 4472881, "stop_desc": "RUE DE BELLEVILLE - 75120", "stop_name": "PELLEPORT - BELLEVILLE"}, "geometry": {"type": "Point", "coordinates": [2.39978017411952, 48.875548837113016]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "99a38b4e5478ff94b67ca14c10d1e86ba11d72ef", "fields": {"departement": "93", "stop_lat": 48.88094305908556, "code_postal": "93045", "stop_lon": 2.4252954936046307, "coord": [48.88094305908556, 2.4252954936046307], "stop_id": 4472882, "stop_desc": "48 BOULEVARD DU GENERAL LECLERC - 93045", "stop_name": "JOSEPH DEPINAY"}, "geometry": {"type": "Point", "coordinates": [2.4252954936046307, 48.88094305908556]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9422d85a7d88f049f12088afb5f16cc51c919041", "fields": {"departement": "93", "stop_lat": 48.881676627413, "code_postal": "93063", "stop_lon": 2.4297662965308153, "coord": [48.881676627413, 2.4297662965308153], "stop_id": 4472883, "stop_desc": "FACE 108 AVENUE DE VERDUN - 93063", "stop_name": "LIBERTE"}, "geometry": {"type": "Point", "coordinates": [2.4297662965308153, 48.881676627413]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b1ce7bc993badcd0bf96a10dfd193b95644fd2ec", "fields": {"departement": "93", "stop_lat": 48.86580631178091, "code_postal": "93050", "stop_lon": 2.5632662022566857, "coord": [48.86580631178091, 2.5632662022566857], "stop_id": 4472887, "stop_desc": "152 AVENUE PAUL VAILLANT COUTURIER - 93050", "stop_name": "POINTE DE GOURNAY"}, "geometry": {"type": "Point", "coordinates": [2.5632662022566857, 48.86580631178091]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ce50bf6c3fa1e383fff8e1ba0e7ab04168c1e0ad", "fields": {"departement": "91", "stop_lat": 48.70569154817685, "code_postal": "91161", "stop_lon": 2.31389606291992, "coord": [48.70569154817685, 2.31389606291992], "stop_id": 4472893, "stop_desc": "AVENUE MAZARIN - 91161", "stop_name": "COLLEGE DE CHILLY-MAZARIN"}, "geometry": {"type": "Point", "coordinates": [2.31389606291992, 48.70569154817685]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7d73a9cacefc32b5c38532908c8e1c131201d8c8", "fields": {"departement": "91", "stop_lat": 48.72334548650861, "code_postal": "91377", "stop_lon": 2.286962268814599, "coord": [48.72334548650861, 2.286962268814599], "stop_id": 4472900, "stop_desc": "AVENUE DE L'EUROPE - 91377", "stop_name": "LA BONDE"}, "geometry": {"type": "Point", "coordinates": [2.286962268814599, 48.72334548650861]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0ba7d979ef1d0299f6394400ea45c70d1d09da40", "fields": {"departement": "91", "stop_lat": 48.72261757097308, "code_postal": "91377", "stop_lon": 2.2873025979956845, "coord": [48.72261757097308, 2.2873025979956845], "stop_id": 4472901, "stop_desc": "AVENUE DU MARECHAL DE LATTRE DE TASSIGNY - 91377", "stop_name": "LA BONDE"}, "geometry": {"type": "Point", "coordinates": [2.2873025979956845, 48.72261757097308]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0c796a0ac8f2e37d3096d4b9dd4e032c0edaf0de", "fields": {"departement": "91", "stop_lat": 48.729353668825254, "code_postal": "91377", "stop_lon": 2.2762229087458588, "coord": [48.729353668825254, 2.2762229087458588], "stop_id": 4472907, "stop_desc": "3 RUE FUSTEL DE COULANGES - 91377", "stop_name": "GABRIEL PERI"}, "geometry": {"type": "Point", "coordinates": [2.2762229087458588, 48.729353668825254]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fd59b679f38013309b79fb3b4bfcd127a6e95cbc", "fields": {"departement": "91", "stop_lat": 48.727847083549705, "code_postal": "91377", "stop_lon": 2.2833711116416517, "coord": [48.727847083549705, 2.2833711116416517], "stop_id": 4472910, "stop_desc": "21 AVENUE NATIONALE - 91377", "stop_name": "AUSTRALIE"}, "geometry": {"type": "Point", "coordinates": [2.2833711116416517, 48.727847083549705]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8b2942d26aaf5d94dc3e1f7342d164ab1d13a15a", "fields": {"departement": "91", "stop_lat": 48.733178849525345, "code_postal": "91377", "stop_lon": 2.287224513071842, "coord": [48.733178849525345, 2.287224513071842], "stop_id": 4472917, "stop_desc": "RUE DES CANADIENS - 91377", "stop_name": "AVENUE SAINT-MARC"}, "geometry": {"type": "Point", "coordinates": [2.287224513071842, 48.733178849525345]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "35490f5dddce2f781e1a9fb36f9038f9bb71b9d7", "fields": {"departement": "91", "stop_lat": 48.73361104650575, "code_postal": "91377", "stop_lon": 2.289058461406938, "coord": [48.73361104650575, 2.289058461406938], "stop_id": 4472919, "stop_desc": "RUE DES CANADIENS - 91377", "stop_name": "PLACE DE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.289058461406938, 48.73361104650575]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "36d9c8321ccf30c558e922cc27b29964d848d841", "fields": {"departement": "91", "stop_lat": 48.73880089439907, "code_postal": "91377", "stop_lon": 2.2989602054010803, "coord": [48.73880089439907, 2.2989602054010803], "stop_id": 4472924, "stop_desc": "FACE 64 AVENUE DU PRESIDENT KENNEDY - 91377", "stop_name": "SAUSSAYE - MIRABEAU"}, "geometry": {"type": "Point", "coordinates": [2.2989602054010803, 48.73880089439907]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b5c935d1947c3dc4e84c04e775d8e05e70a6f70c", "fields": {"departement": "92", "stop_lat": 48.760366045536514, "code_postal": "92002", "stop_lon": 2.3075770618196296, "coord": [48.760366045536514, 2.3075770618196296], "stop_id": 4472935, "stop_desc": "105 AVENUE ARISTIDE BRIAND - 92002", "stop_name": "MORTEAUX"}, "geometry": {"type": "Point", "coordinates": [2.3075770618196296, 48.760366045536514]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "04d844b4ade064c9820b0207ac215e28d10cbaf9", "fields": {"departement": "92", "stop_lat": 48.77713929852077, "code_postal": "92014", "stop_lon": 2.3145031060719545, "coord": [48.77713929852077, 2.3145031060719545], "stop_id": 4472943, "stop_desc": "131 AVENUE DU GENERAL LECLERC - 92014", "stop_name": "PETIT CHAMBORD - LYCEE LAKANAL"}, "geometry": {"type": "Point", "coordinates": [2.3145031060719545, 48.77713929852077]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8d11f92e5ef433505647d6059ce705c5e3561521", "fields": {"departement": "92", "stop_lat": 48.777076174853896, "code_postal": "92014", "stop_lon": 2.313442392219605, "coord": [48.777076174853896, 2.313442392219605], "stop_id": 4472944, "stop_desc": "114 BOULEVARD DU MARECHAL JOFFRE - 92014", "stop_name": "PETIT CHAMBORD - LYCEE LAKANAL"}, "geometry": {"type": "Point", "coordinates": [2.313442392219605, 48.777076174853896]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a87d5b943573b9099cf318fa5f59df62283ca2e9", "fields": {"departement": "94", "stop_lat": 48.77630541298781, "code_postal": "94038", "stop_lon": 2.330767932472282, "coord": [48.77630541298781, 2.330767932472282], "stop_id": 4472951, "stop_desc": "30 AVENUE LARROUMES - 94038", "stop_name": "SOUS-PREFECTURE - ROSERAIE"}, "geometry": {"type": "Point", "coordinates": [2.330767932472282, 48.77630541298781]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "29879abe1136b2cc3733c63fca370243187c2b6c", "fields": {"departement": "94", "stop_lat": 48.79403877145943, "code_postal": "94016", "stop_lon": 2.3342754705788455, "coord": [48.79403877145943, 2.3342754705788455], "stop_id": 4472960, "stop_desc": "9 RUE CAMILLE DESMOULINS - 94016", "stop_name": "MAIRIE DE CACHAN"}, "geometry": {"type": "Point", "coordinates": [2.3342754705788455, 48.79403877145943]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e0cebf522273cab61b8e8980a75b8c4f0b741b69", "fields": {"departement": "94", "stop_lat": 48.80061786069688, "code_postal": "94003", "stop_lon": 2.3334179522173053, "coord": [48.80061786069688, 2.3334179522173053], "stop_id": 4472964, "stop_desc": "FACE 7 AVENUE DE LA CONVENTION - 94003", "stop_name": "CITE JARDINS"}, "geometry": {"type": "Point", "coordinates": [2.3334179522173053, 48.80061786069688]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6cf75a9497bb84a8535b83e27b2634e1b171d428", "fields": {"departement": "94", "stop_lat": 48.80202900814903, "code_postal": "94003", "stop_lon": 2.338220690104766, "coord": [48.80202900814903, 2.338220690104766], "stop_id": 4472968, "stop_desc": "FACE 1 RUE AUGUSTE DELAUNE - 94003", "stop_name": "AUGUSTE DELAUNE"}, "geometry": {"type": "Point", "coordinates": [2.338220690104766, 48.80202900814903]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "02a0332df454262565df6453ee2d0b82b2e7380e", "fields": {"departement": "94", "stop_lat": 48.80784404743202, "code_postal": "94003", "stop_lon": 2.3330228065226883, "coord": [48.80784404743202, 2.3330228065226883], "stop_id": 4472972, "stop_desc": "AVENUE LAPLACE - 94003", "stop_name": "LAPLACE RER"}, "geometry": {"type": "Point", "coordinates": [2.3330228065226883, 48.80784404743202]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "762503adf22624144c78b85b762b8bb99ff39891", "fields": {"departement": "75", "stop_lat": 48.82735598995444, "code_postal": "75114", "stop_lon": 2.326759500564941, "coord": [48.82735598995444, 2.326759500564941], "stop_id": 4472980, "stop_desc": "83-85 AVENUE DU GENERAL LECLERC - 75114", "stop_name": "ALESIA - GENERAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.326759500564941, 48.82735598995444]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7047f9fc71ca44b1d3e5a1a339721e816a3c5e80", "fields": {"departement": "94", "stop_lat": 48.80980304722781, "code_postal": "94003", "stop_lon": 2.3273617927425523, "coord": [48.80980304722781, 2.3273617927425523], "stop_id": 4473001, "stop_desc": "AV LAPLACE - 94003", "stop_name": "VACHE NOIRE - CENTRE COMMERCIAL"}, "geometry": {"type": "Point", "coordinates": [2.3273617927425523, 48.80980304722781]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8b224a5a217b1a9b6fb7248dfe7b260758257b86", "fields": {"departement": "92", "stop_lat": 48.754019754575175, "code_postal": "92002", "stop_lon": 2.305038753866696, "coord": [48.754019754575175, 2.305038753866696], "stop_id": 4473006, "stop_desc": "AVENUE ARISTIDE BRIAND - 92002", "stop_name": "AUGUSTE MOUNIE"}, "geometry": {"type": "Point", "coordinates": [2.305038753866696, 48.754019754575175]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c7fe9dcd9e81998e070a87b28d644321bc5b9caf", "fields": {"departement": "92", "stop_lat": 48.830667352064815, "code_postal": "92040", "stop_lon": 2.278445245919053, "coord": [48.830667352064815, 2.278445245919053], "stop_id": 4473013, "stop_desc": "23 RUE GUYNEMER - 92040", "stop_name": "SEVERINE"}, "geometry": {"type": "Point", "coordinates": [2.278445245919053, 48.830667352064815]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e98b145706e6223c2b803db123149dc2638c0b56", "fields": {"departement": "92", "stop_lat": 48.831836707153386, "code_postal": "92040", "stop_lon": 2.2804315068912797, "coord": [48.831836707153386, 2.2804315068912797], "stop_id": 4473014, "stop_desc": "FACE 2 BIS RUE JEANNE D'ARC - 92040", "stop_name": "PORTE D'ISSY"}, "geometry": {"type": "Point", "coordinates": [2.2804315068912797, 48.831836707153386]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "629071db046f0acadd16cdf6003f3cc2c5698d1e", "fields": {"departement": "75", "stop_lat": 48.838369035834674, "code_postal": "75115", "stop_lon": 2.2987641849521716, "coord": [48.838369035834674, 2.2987641849521716], "stop_id": 4473019, "stop_desc": "315 RUE DE VAUGIRARD - 75115", "stop_name": "ABBE GROULT"}, "geometry": {"type": "Point", "coordinates": [2.2987641849521716, 48.838369035834674]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "785248a2761b4a546a8e3f8933f8ae63b13f4668", "fields": {"departement": "75", "stop_lat": 48.83959225019507, "code_postal": "75115", "stop_lon": 2.301677023842893, "coord": [48.83959225019507, 2.301677023842893], "stop_id": 4473021, "stop_desc": "FACE 252 RUE DE VAUGIRARD - 75115", "stop_name": "VAUGIRARD - FAVORITES"}, "geometry": {"type": "Point", "coordinates": [2.301677023842893, 48.83959225019507]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d61721b0fc0ea684144bb054c2d572b8caf4df95", "fields": {"departement": "75", "stop_lat": 48.84187918982126, "code_postal": "75115", "stop_lon": 2.3202616185071085, "coord": [48.84187918982126, 2.3202616185071085], "stop_id": 4473027, "stop_desc": "PLACE RAOUL DAUTRY - 75115", "stop_name": "GARE MONTPARNASSE"}, "geometry": {"type": "Point", "coordinates": [2.3202616185071085, 48.84187918982126]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ad4d2e36338c51b2901cc40ee05f17565f383682", "fields": {"departement": "75", "stop_lat": 48.84195996643212, "code_postal": "75115", "stop_lon": 2.3194990816420824, "coord": [48.84195996643212, 2.3194990816420824], "stop_id": 4473028, "stop_desc": "8-10 BOULEVARD DE VAUGIRARD - 75115", "stop_name": "GARE MONTPARNASSE"}, "geometry": {"type": "Point", "coordinates": [2.3194990816420824, 48.84195996643212]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "55233a804ce5c9fd273f32133b80baa3e0170d9e", "fields": {"departement": "75", "stop_lat": 48.841942125801296, "code_postal": "75115", "stop_lon": 2.320424992926051, "coord": [48.841942125801296, 2.320424992926051], "stop_id": 4473029, "stop_desc": "PLACE RAOUL DAUTRY - 75115", "stop_name": "GARE MONTPARNASSE."}, "geometry": {"type": "Point", "coordinates": [2.320424992926051, 48.841942125801296]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cb906abae7ba180cca3ca10a81a9c641398b89a0", "fields": {"departement": "75", "stop_lat": 48.8418655148874, "code_postal": "75115", "stop_lon": 2.2997691922702015, "coord": [48.8418655148874, 2.2997691922702015], "stop_id": 4473034, "stop_desc": "148 RUE LECOURBE - 75115", "stop_name": "MAIRIE DU 15E"}, "geometry": {"type": "Point", "coordinates": [2.2997691922702015, 48.8418655148874]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "96bd80ca11907f7a8f7de8050ffddf7fc689f8c4", "fields": {"departement": "75", "stop_lat": 48.836357751338085, "code_postal": "75115", "stop_lon": 2.2810256065344885, "coord": [48.836357751338085, 2.2810256065344885], "stop_id": 4473038, "stop_desc": "103-105 RUE LEBLANC - 75115", "stop_name": "BALARD - LECOURBE"}, "geometry": {"type": "Point", "coordinates": [2.2810256065344885, 48.836357751338085]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7fec75931ba04466a7d1bb3768bc14a515aaac9b", "fields": {"departement": "92", "stop_lat": 48.901251906231444, "code_postal": "92050", "stop_lon": 2.2159994460417605, "coord": [48.901251906231444, 2.2159994460417605], "stop_id": 4473043, "stop_desc": "BOULEVARD DES PROVINCES FRANCAISES - 92050", "stop_name": "NANTERRE - UNIVERSITE RER"}, "geometry": {"type": "Point", "coordinates": [2.2159994460417605, 48.901251906231444]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a3b1d0857fa4bf630b79626163df4487c6829ddd", "fields": {"departement": "92", "stop_lat": 48.895056889425156, "code_postal": "92050", "stop_lon": 2.222161171082742, "coord": [48.895056889425156, 2.222161171082742], "stop_id": 4473050, "stop_desc": "70 RUE SALVADOR ALLENDE - 92050", "stop_name": "ESPLANADE CHARLES DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.222161171082742, 48.895056889425156]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "be069a3eefbfb40b68ddad6a78367e436870c0eb", "fields": {"departement": "92", "stop_lat": 48.886782393482804, "code_postal": "92050", "stop_lon": 2.199311678106991, "coord": [48.886782393482804, 2.199311678106991], "stop_id": 4473061, "stop_desc": "8 AVENUE DU MARECHAL JOFFRE - 92050", "stop_name": "PLACE DE LA BOULE - JOFFRE"}, "geometry": {"type": "Point", "coordinates": [2.199311678106991, 48.886782393482804]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d7f999511ac7424e033d79d722640e9f2d6f0c3c", "fields": {"departement": "92", "stop_lat": 48.87935136602782, "code_postal": "92063", "stop_lon": 2.1856917243126706, "coord": [48.87935136602782, 2.1856917243126706], "stop_id": 4473067, "stop_desc": "22 BIS BOULEVARD DE L'HOPITAL STELL - 92063", "stop_name": "LE GUE"}, "geometry": {"type": "Point", "coordinates": [2.1856917243126706, 48.87935136602782]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "edfc06aa9d4d761e941eb794efc0f567de76d42d", "fields": {"departement": "92", "stop_lat": 48.87613345804333, "code_postal": "92063", "stop_lon": 2.185333249683665, "coord": [48.87613345804333, 2.185333249683665], "stop_id": 4473069, "stop_desc": "BOULEVARD SOLFERINO - 92063", "stop_name": "HOPITAL STELL"}, "geometry": {"type": "Point", "coordinates": [2.185333249683665, 48.87613345804333]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "17ec4c4a1774f1da316d560f4cc75b47bb67303b", "fields": {"departement": "92", "stop_lat": 48.86786647303717, "code_postal": "92063", "stop_lon": 2.19368117495212, "coord": [48.86786647303717, 2.19368117495212], "stop_id": 4473077, "stop_desc": "66 AVENUE DU 18 JUIN 1940 - 92063", "stop_name": "DUNANT"}, "geometry": {"type": "Point", "coordinates": [2.19368117495212, 48.86786647303717]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "114268dec877074a3656314d0e04bcf5307e12f2", "fields": {"departement": "92", "stop_lat": 48.86140775640603, "code_postal": "92073", "stop_lon": 2.212496564318806, "coord": [48.86140775640603, 2.212496564318806], "stop_id": 4473084, "stop_desc": "CARREFOUR DE LA CROIX DU ROY - 92073", "stop_name": "CROIX DU ROY"}, "geometry": {"type": "Point", "coordinates": [2.212496564318806, 48.86140775640603]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4d02782880c5ddd2b169192af54c7dd812c774e4", "fields": {"departement": "75", "stop_lat": 48.87697969338554, "code_postal": "75108", "stop_lon": 2.300915593355041, "coord": [48.87697969338554, 2.300915593355041], "stop_id": 4473107, "stop_desc": "254 RUE DU FAUBOURG SAINT-HONORE - 75108", "stop_name": "HOCHE - SAINT-HONORE"}, "geometry": {"type": "Point", "coordinates": [2.300915593355041, 48.87697969338554]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ad5eb6763293bb0c4ad30fb4534a979fc9aa7b30", "fields": {"departement": "75", "stop_lat": 48.87493294387232, "code_postal": "75108", "stop_lon": 2.3096914749426154, "coord": [48.87493294387232, 2.3096914749426154], "stop_id": 4473110, "stop_desc": "153 BOULEVARD HAUSSMANN - 75108", "stop_name": "HAUSSMANN - COURCELLES"}, "geometry": {"type": "Point", "coordinates": [2.3096914749426154, 48.87493294387232]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0c38266d906962a7b7effe6a0365e80ea860e516", "fields": {"departement": "75", "stop_lat": 48.87533099926682, "code_postal": "75108", "stop_lon": 2.3255644136186038, "coord": [48.87533099926682, 2.3255644136186038], "stop_id": 4473116, "stop_desc": "117 RUE SAINT LAZARE - 75108", "stop_name": "GARE SAINT-LAZARE"}, "geometry": {"type": "Point", "coordinates": [2.3255644136186038, 48.87533099926682]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9ac74b6a7b5ef2c88e58f269102ba3103acd3d58", "fields": {"departement": "91", "stop_lat": 48.69776837904325, "code_postal": "91272", "stop_lon": 2.1372971793392, "coord": [48.69776837904325, 2.1372971793392], "stop_id": 4473129, "stop_desc": "ROUTE DE BELLEVILLE - 91272", "stop_name": "GIF-SUR-YVETTE RER"}, "geometry": {"type": "Point", "coordinates": [2.1372971793392, 48.69776837904325]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ef86b6a855c6ed779906c80ce2f729cacba0e429", "fields": {"departement": "91", "stop_lat": 48.697866818081394, "code_postal": "91272", "stop_lon": 2.137038807836006, "coord": [48.697866818081394, 2.137038807836006], "stop_id": 4473130, "stop_desc": "ROUTE DE BELLEVILLE - 91272", "stop_name": "GIF-SUR-YVETTE RER"}, "geometry": {"type": "Point", "coordinates": [2.137038807836006, 48.697866818081394]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6335afcc07fe32d4817fbabe6a87b49b789f175c", "fields": {"departement": "91", "stop_lat": 48.69987783983225, "code_postal": "91661", "stop_lon": 2.2145948835441547, "coord": [48.69987783983225, 2.2145948835441547], "stop_id": 4473134, "stop_desc": "40 RUE DU GENERAL DE GAULLE - 91661", "stop_name": "LES SUISSES - LOZERE RER"}, "geometry": {"type": "Point", "coordinates": [2.2145948835441547, 48.69987783983225]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "89b3cc9775b822ac69820f54282eb261855d65eb", "fields": {"departement": "91", "stop_lat": 48.7065337226987, "code_postal": "91477", "stop_lon": 2.2385765006887657, "coord": [48.7065337226987, 2.2385765006887657], "stop_id": 4473136, "stop_desc": "1 AVENUE DU GENERAL LECLERC - 91477", "stop_name": "PALAISEAU-VILLEBON RER"}, "geometry": {"type": "Point", "coordinates": [2.2385765006887657, 48.7065337226987]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7f3e77950e294c5770143064b68c9a80d008c71a", "fields": {"departement": "75", "stop_lat": 48.83487001531102, "code_postal": "75114", "stop_lon": 2.3327347010432598, "coord": [48.83487001531102, 2.3327347010432598], "stop_id": 4473143, "stop_desc": "108-110 AVENUE DENFERT-ROCHEREAU - 75114", "stop_name": "DENFERT-ROCHEREAU - ARAGO"}, "geometry": {"type": "Point", "coordinates": [2.3327347010432598, 48.83487001531102]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "31bf328a516fdce4ff00765795f4937c4f382c84", "fields": {"departement": "91", "stop_lat": 48.7244458500694, "code_postal": "91377", "stop_lon": 2.2604287428627776, "coord": [48.7244458500694, 2.2604287428627776], "stop_id": 4473154, "stop_desc": "R CARNOT - 91377", "stop_name": "MASSY-PALAISEAU RER"}, "geometry": {"type": "Point", "coordinates": [2.2604287428627776, 48.7244458500694]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1714c1e761ce5a73aa0d7c01c9cc0233a312dd53", "fields": {"departement": "91", "stop_lat": 48.6989211696682, "code_postal": "91471", "stop_lon": 2.1876838764816937, "coord": [48.6989211696682, 2.1876838764816937], "stop_id": 4473155, "stop_desc": "PLACE DU GENERAL LECLERC - 91471", "stop_name": "MAIRIE-HOPITAL-ORSAY RER"}, "geometry": {"type": "Point", "coordinates": [2.1876838764816937, 48.6989211696682]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "517a4a46cf807dfb2fd706667e3b130757f466a1", "fields": {"departement": "75", "stop_lat": 48.87819549713169, "code_postal": "75117", "stop_lon": 2.2837598887649864, "coord": [48.87819549713169, 2.2837598887649864], "stop_id": 4473170, "stop_desc": "PLACE DE LA PORTE MAILLOT - 75117", "stop_name": "PORTE MAILLOT - PALAIS DES CONGRES"}, "geometry": {"type": "Point", "coordinates": [2.2837598887649864, 48.87819549713169]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f19dc556e8e8b1c9c2204dd9975211329bfd1ce9", "fields": {"departement": "75", "stop_lat": 48.878707984696156, "code_postal": "75117", "stop_lon": 2.284236266860388, "coord": [48.878707984696156, 2.284236266860388], "stop_id": 4473171, "stop_desc": "FACE 93 BOULEVARD GOUVION-SAINT-CYR - 75117", "stop_name": "PORTE MAILLOT - PALAIS DES CONGRES"}, "geometry": {"type": "Point", "coordinates": [2.284236266860388, 48.878707984696156]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "357fb4afba8580439f59eed0e9d3f0458635652f", "fields": {"departement": "75", "stop_lat": 48.87841558644444, "code_postal": "75117", "stop_lon": 2.2946603292390058, "coord": [48.87841558644444, 2.2946603292390058], "stop_id": 4473177, "stop_desc": "29-31 AV DES TERNES - 75117", "stop_name": "TERNES - MAC MAHON"}, "geometry": {"type": "Point", "coordinates": [2.2946603292390058, 48.87841558644444]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bfe319534e05f1bac3ecd771b052d4859db086fe", "fields": {"departement": "75", "stop_lat": 48.87697969338554, "code_postal": "75108", "stop_lon": 2.300915593355041, "coord": [48.87697969338554, 2.300915593355041], "stop_id": 4473181, "stop_desc": "254 RUE DU FAUBOURG SAINT-HONORE - 75108", "stop_name": "HOCHE - SAINT-HONORE"}, "geometry": {"type": "Point", "coordinates": [2.300915593355041, 48.87697969338554]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "78501aa049e0dddd39463a248554bb05237abd2c", "fields": {"departement": "75", "stop_lat": 48.875048935083306, "code_postal": "75108", "stop_lon": 2.3062579263665284, "coord": [48.875048935083306, 2.3062579263665284], "stop_id": 4473183, "stop_desc": "190 BOULEVARD HAUSSMANN - 75108", "stop_name": "FRIEDLAND - HAUSSMANN"}, "geometry": {"type": "Point", "coordinates": [2.3062579263665284, 48.875048935083306]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4708c3b9b5196dbe3e3fcef2532598e6515e780e", "fields": {"departement": "75", "stop_lat": 48.87536697356267, "code_postal": "75108", "stop_lon": 2.325823281094452, "coord": [48.87536697356267, 2.325823281094452], "stop_id": 4473190, "stop_desc": "111 R SAINT-LAZARE - 75108", "stop_name": "GARE SAINT-LAZARE"}, "geometry": {"type": "Point", "coordinates": [2.325823281094452, 48.87536697356267]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f7909dfe5acbde7bd40c14b1b71dcb90a3ef7c9b", "fields": {"departement": "93", "stop_lat": 48.88978148059762, "code_postal": "93055", "stop_lon": 2.4197363164846046, "coord": [48.88978148059762, 2.4197363164846046], "stop_id": 4473210, "stop_desc": "63 RUE BENJAMIN DELESSERT - 93055", "stop_name": "CECILE FAGUET"}, "geometry": {"type": "Point", "coordinates": [2.4197363164846046, 48.88978148059762]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e76e2e80faaabfe40d7cce1c2b4ec75edcead3d4", "fields": {"departement": "75", "stop_lat": 48.83946421233197, "code_postal": "75115", "stop_lon": 2.274541211540746, "coord": [48.83946421233197, 2.274541211540746], "stop_id": 4473281, "stop_desc": "31 RUE LEBLANC - 75115", "stop_name": "RUE LEBLANC"}, "geometry": {"type": "Point", "coordinates": [2.274541211540746, 48.83946421233197]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "61f39520de433ebe33285f8933536ebb17a834d5", "fields": {"departement": "75", "stop_lat": 48.83573626432821, "code_postal": "75115", "stop_lon": 2.278248896047409, "coord": [48.83573626432821, 2.278248896047409], "stop_id": 4473284, "stop_desc": "1-3 AVENUE DE LA PORTE DE SEVRES - 75115", "stop_name": "BALARD"}, "geometry": {"type": "Point", "coordinates": [2.278248896047409, 48.83573626432821]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b032470169e86c7a25d973cc540bb959d4e71d50", "fields": {"departement": "92", "stop_lat": 48.82483196157134, "code_postal": "92040", "stop_lon": 2.2737557986340695, "coord": [48.82483196157134, 2.2737557986340695], "stop_id": 4473290, "stop_desc": "FACE 19 RUE KLEBER - 92040", "stop_name": "MAIRIE D'ISSY-METRO"}, "geometry": {"type": "Point", "coordinates": [2.2737557986340695, 48.82483196157134]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3bdd4404f90c7d0aa83fa13310de233f7e26627e", "fields": {"departement": "92", "stop_lat": 48.82435504441102, "code_postal": "92040", "stop_lon": 2.2726946740287097, "coord": [48.82435504441102, 2.2726946740287097], "stop_id": 4473291, "stop_desc": "FACE 34 RUE DIDEROT - 92040", "stop_name": "MAIRIE D'ISSY-METRO"}, "geometry": {"type": "Point", "coordinates": [2.2726946740287097, 48.82435504441102]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2eb483678657dc3eb952318ff10e59a1eb07216d", "fields": {"departement": "92", "stop_lat": 48.8193227451855, "code_postal": "92040", "stop_lon": 2.2741980687988135, "coord": [48.8193227451855, 2.2741980687988135], "stop_id": 4473294, "stop_desc": "FACE 27 RUE GABRIEL PERI - 92040", "stop_name": "RUE DU FORT"}, "geometry": {"type": "Point", "coordinates": [2.2741980687988135, 48.8193227451855]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c281ea38c80daa20b332c9298c0a1439bf90f8bd", "fields": {"departement": "92", "stop_lat": 48.81741219606798, "code_postal": "92040", "stop_lon": 2.2651226382831755, "coord": [48.81741219606798, 2.2651226382831755], "stop_id": 4473301, "stop_desc": "FACE-16 RUE RABELAIS - 92040", "stop_name": "VERDI"}, "geometry": {"type": "Point", "coordinates": [2.2651226382831755, 48.81741219606798]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "299580ce60fb59f4f680bd2e3c417a4e790f62d4", "fields": {"departement": "92", "stop_lat": 48.81725930585249, "code_postal": "92040", "stop_lon": 2.2649595333518677, "coord": [48.81725930585249, 2.2649595333518677], "stop_id": 4473302, "stop_desc": "34 RUE RABELAIS - 92040", "stop_name": "VERDI"}, "geometry": {"type": "Point", "coordinates": [2.2649595333518677, 48.81725930585249]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0f5298781a395dbda5edafe4e774a6103528e6cb", "fields": {"departement": "92", "stop_lat": 48.81924553941387, "code_postal": "92040", "stop_lon": 2.2648751050171123, "coord": [48.81924553941387, 2.2648751050171123], "stop_id": 4473304, "stop_desc": "11 RUE DE L'EGALITE - 92040", "stop_name": "DEFENSE - EGALITE"}, "geometry": {"type": "Point", "coordinates": [2.2648751050171123, 48.81924553941387]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0f9a09dd385a331e06cdabbd387bacc33ea9a5fc", "fields": {"departement": "92", "stop_lat": 48.816851975637036, "code_postal": "92040", "stop_lon": 2.260360030025392, "coord": [48.816851975637036, 2.260360030025392], "stop_id": 4473305, "stop_desc": "58 RUE DE L'EGALITE - 92040", "stop_name": "EPINETTES"}, "geometry": {"type": "Point", "coordinates": [2.260360030025392, 48.816851975637036]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3d0891acc02f6156585540d752a77c39d578adb0", "fields": {"departement": "92", "stop_lat": 48.808376802438694, "code_postal": "92048", "stop_lon": 2.2478945456893578, "coord": [48.808376802438694, 2.2478945456893578], "stop_id": 4473314, "stop_desc": "FACE 69 RUE DE BELGIQUE - 92048", "stop_name": "ORPHELINAT"}, "geometry": {"type": "Point", "coordinates": [2.2478945456893578, 48.808376802438694]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b4339656e91b321e2284d055759a50708e07e541", "fields": {"departement": "92", "stop_lat": 48.81007452345811, "code_postal": "92048", "stop_lon": 2.2466124805574057, "coord": [48.81007452345811, 2.2466124805574057], "stop_id": 4473316, "stop_desc": "1 BIS RUE HENRI BARBUSSE - 92048", "stop_name": "PAUL BERT"}, "geometry": {"type": "Point", "coordinates": [2.2466124805574057, 48.81007452345811]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "96a6e419e59a2a49e1a24e88ada63f8db98449f5", "fields": {"departement": "92", "stop_lat": 48.81183731423944, "code_postal": "92048", "stop_lon": 2.2368930295294303, "coord": [48.81183731423944, 2.2368930295294303], "stop_id": 4473324, "stop_desc": "PLACE RABELAIS - 92048", "stop_name": "RABELAIS"}, "geometry": {"type": "Point", "coordinates": [2.2368930295294303, 48.81183731423944]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9d65fa652d3d853aea5b0c6a4d5249dec078497b", "fields": {"departement": "92", "stop_lat": 48.82795039915451, "code_postal": "92072", "stop_lon": 2.2247466599919257, "coord": [48.82795039915451, 2.2247466599919257], "stop_id": 4473338, "stop_desc": "ALLEE DU PONT DE SEVRES - 92072", "stop_name": "MUSEE DE SEVRES"}, "geometry": {"type": "Point", "coordinates": [2.2247466599919257, 48.82795039915451]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "09dc9b839aa31c24663de70df3f52bb66bc356be", "fields": {"departement": "92", "stop_lat": 48.80768631860821, "code_postal": "92023", "stop_lon": 2.2500184692424225, "coord": [48.80768631860821, 2.2500184692424225], "stop_id": 4473342, "stop_desc": "FACE 92 AVENUE SCHNEIDER - 92023", "stop_name": "RUE DES PEUPLIERS"}, "geometry": {"type": "Point", "coordinates": [2.2500184692424225, 48.80768631860821]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "976be5cd27b480fa369593d8a546d2f0ae90be89", "fields": {"departement": "92", "stop_lat": 48.830667352064815, "code_postal": "92040", "stop_lon": 2.278445245919053, "coord": [48.830667352064815, 2.278445245919053], "stop_id": 4473346, "stop_desc": "23 RUE GUYNEMER - 92040", "stop_name": "SEVERINE"}, "geometry": {"type": "Point", "coordinates": [2.278445245919053, 48.830667352064815]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ff86075e157ae108514145a3ba2db800959cc838", "fields": {"departement": "75", "stop_lat": 48.83799070116469, "code_postal": "75115", "stop_lon": 2.2754007513995216, "coord": [48.83799070116469, 2.2754007513995216], "stop_id": 4473354, "stop_desc": "56 RUE LEBLANC - 75115", "stop_name": "LEBLANC - DELBARRE"}, "geometry": {"type": "Point", "coordinates": [2.2754007513995216, 48.83799070116469]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8a1404c3b414e36b5654f28380ea314c32135575", "fields": {"departement": "92", "stop_lat": 48.8193227451855, "code_postal": "92040", "stop_lon": 2.2741980687988135, "coord": [48.8193227451855, 2.2741980687988135], "stop_id": 4473366, "stop_desc": "FACE 27 RUE GABRIEL PERI - 92040", "stop_name": "RUE DU FORT"}, "geometry": {"type": "Point", "coordinates": [2.2741980687988135, 48.8193227451855]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9d6e7ebd8c81bea94ceafa640ed291963ab8d9f3", "fields": {"departement": "92", "stop_lat": 48.814539964205004, "code_postal": "92040", "stop_lon": 2.271767855315436, "coord": [48.814539964205004, 2.271767855315436], "stop_id": 4473370, "stop_desc": "56 RUE BARBES - 92040", "stop_name": "GARE DE CLAMART"}, "geometry": {"type": "Point", "coordinates": [2.271767855315436, 48.814539964205004]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8e7f0bb92332875ff1291425c9722d6c079ed0f5", "fields": {"departement": "92", "stop_lat": 48.81926294003921, "code_postal": "92040", "stop_lon": 2.2639359694747725, "coord": [48.81926294003921, 2.2639359694747725], "stop_id": 4473375, "stop_desc": "4-6 RUE DE L'EGALITE - 92040", "stop_name": "DEFENSE - EGALITE"}, "geometry": {"type": "Point", "coordinates": [2.2639359694747725, 48.81926294003921]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c8bca1119e4ece8b41d18bdfe9bb1bdce1a2b8d0", "fields": {"departement": "92", "stop_lat": 48.817005195778684, "code_postal": "92040", "stop_lon": 2.261026679177312, "coord": [48.817005195778684, 2.261026679177312], "stop_id": 4473378, "stop_desc": "57 RUE DE L'EGALITE - 92040", "stop_name": "EPINETTES"}, "geometry": {"type": "Point", "coordinates": [2.261026679177312, 48.817005195778684]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "94b4eea0e3989334775db89f8fcc6e78207e329c", "fields": {"departement": "92", "stop_lat": 48.809782617140044, "code_postal": "92048", "stop_lon": 2.2529950603475055, "coord": [48.809782617140044, 2.2529950603475055], "stop_id": 4473383, "stop_desc": "142 RUE DE FLEURY - 92048", "stop_name": "RIVOLI"}, "geometry": {"type": "Point", "coordinates": [2.2529950603475055, 48.809782617140044]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "125a612dbab86546a15c37ea5536cd10a6a63aaa", "fields": {"departement": "92", "stop_lat": 48.80603235450887, "code_postal": "92048", "stop_lon": 2.238264935486497, "coord": [48.80603235450887, 2.238264935486497], "stop_id": 4473391, "stop_desc": "2 R ROUDIER - 92048", "stop_name": "VICTOR HUGO"}, "geometry": {"type": "Point", "coordinates": [2.238264935486497, 48.80603235450887]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "26b1c21beef3df0a4c248b164b267404ce451fd8", "fields": {"departement": "92", "stop_lat": 48.802705635954034, "code_postal": "92048", "stop_lon": 2.2368018328672603, "coord": [48.802705635954034, 2.2368018328672603], "stop_id": 4473393, "stop_desc": "RUE DES VERTUGADINS - 92048", "stop_name": "LYCEE RABELAIS"}, "geometry": {"type": "Point", "coordinates": [2.2368018328672603, 48.802705635954034]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8f139ebca961dd684e09af91b4a7a33ff7b3032f", "fields": {"departement": "92", "stop_lat": 48.80632874757596, "code_postal": "92048", "stop_lon": 2.2380194457597375, "coord": [48.80632874757596, 2.2380194457597375], "stop_id": 4473394, "stop_desc": "1 AVENUE VICTOR HUGO - 92048", "stop_name": "VICTOR HUGO."}, "geometry": {"type": "Point", "coordinates": [2.2380194457597375, 48.80632874757596]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ed70d57c6e2b837f523ad5f4c9d6ca8b62fc428e", "fields": {"departement": "92", "stop_lat": 48.81108232012079, "code_postal": "92048", "stop_lon": 2.236867272802698, "coord": [48.81108232012079, 2.236867272802698], "stop_id": 4473397, "stop_desc": "PLACE RABELAIS - 92048", "stop_name": "RABELAIS"}, "geometry": {"type": "Point", "coordinates": [2.236867272802698, 48.81108232012079]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d7660b6cb4b8c1e3c3d55931596146f559c92fe8", "fields": {"departement": "92", "stop_lat": 48.81640815008475, "code_postal": "92048", "stop_lon": 2.2323385970316534, "coord": [48.81640815008475, 2.2323385970316534], "stop_id": 4473401, "stop_desc": "17 BIS BOULEVARD VERD DE SAINT JULIEN - 92048", "stop_name": "JEANNE D'ARC"}, "geometry": {"type": "Point", "coordinates": [2.2323385970316534, 48.81640815008475]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "43ff8ea976c9ab8959905532b2e61eedc775fdee", "fields": {"departement": "92", "stop_lat": 48.818697289035434, "code_postal": "92048", "stop_lon": 2.229285292630867, "coord": [48.818697289035434, 2.229285292630867], "stop_id": 4473404, "stop_desc": "32 AVENUE DU GENERAL GALLIENI - 92048", "stop_name": "GARE DE BELLEVUE"}, "geometry": {"type": "Point", "coordinates": [2.229285292630867, 48.818697289035434]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "94a09c9dc8e631923202e3f102a3346ff3ce4616", "fields": {"departement": "92", "stop_lat": 48.823129847513385, "code_postal": "92072", "stop_lon": 2.221449556511516, "coord": [48.823129847513385, 2.221449556511516], "stop_id": 4473407, "stop_desc": "FACE 28 AVENUE DE LA DIVISION LECLERC - 92072", "stop_name": "BRIMBORION - DIVISION LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.221449556511516, 48.823129847513385]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "085bc438e5bed098cf428f4e02290ac3467b9028", "fields": {"departement": "92", "stop_lat": 48.829339588647336, "code_postal": "92072", "stop_lon": 2.2302705093554778, "coord": [48.829339588647336, 2.2302705093554778], "stop_id": 4473413, "stop_desc": "GARE ROUTIERE - 92072", "stop_name": "PONT DE SEVRES-METRO"}, "geometry": {"type": "Point", "coordinates": [2.2302705093554778, 48.829339588647336]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "05200391448bb5785800bb922a46b701ff8f5f62", "fields": {"departement": "75", "stop_lat": 48.8369676365704, "code_postal": "75115", "stop_lon": 2.2783972601736324, "coord": [48.8369676365704, 2.2783972601736324], "stop_id": 4473424, "stop_desc": "85 RUE LEBLANC - 75115", "stop_name": "PLACE BALARD"}, "geometry": {"type": "Point", "coordinates": [2.2783972601736324, 48.8369676365704]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "57e6ba92a5849a1bce4b020fbc16713f922f29d9", "fields": {"departement": "92", "stop_lat": 48.82998578596049, "code_postal": "92040", "stop_lon": 2.2648465117520153, "coord": [48.82998578596049, 2.2648465117520153], "stop_id": 4473547, "stop_desc": "FACE 23 RUE CAMILLE DESMOULINS - 92040", "stop_name": "ISSY-VAL DE SEINE RER"}, "geometry": {"type": "Point", "coordinates": [2.2648465117520153, 48.82998578596049]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bae816960cee50a3b0ca3d058462da8b04310164", "fields": {"departement": "91", "stop_lat": 48.73361104650575, "code_postal": "91377", "stop_lon": 2.289058461406938, "coord": [48.73361104650575, 2.289058461406938], "stop_id": 6041762, "stop_desc": "RUE DES CANADIENS - 91377", "stop_name": "PLACE DE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.289058461406938, 48.73361104650575]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0c8c1dd19e16fd2db67a2533e14d0f76089d8034", "fields": {"departement": "91", "stop_lat": 48.73370125203245, "code_postal": "91377", "stop_lon": 2.2898600642683493, "coord": [48.73370125203245, 2.2898600642683493], "stop_id": 6041763, "stop_desc": "RUE DES CANADIENS - 91377", "stop_name": "PLACE DE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.2898600642683493, 48.73370125203245]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c735ce9af257e94a067ba543e980127a0615c310", "fields": {"departement": "91", "stop_lat": 48.733178849525345, "code_postal": "91377", "stop_lon": 2.287224513071842, "coord": [48.733178849525345, 2.287224513071842], "stop_id": 6041764, "stop_desc": "RUE DES CANADIENS - 91377", "stop_name": "AVENUE SAINT-MARC"}, "geometry": {"type": "Point", "coordinates": [2.287224513071842, 48.733178849525345]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "228e859c65b71d132c7fed119fa0544a07d6b82e", "fields": {"departement": "91", "stop_lat": 48.732252260868215, "code_postal": "91377", "stop_lon": 2.2853775008007173, "coord": [48.732252260868215, 2.2853775008007173], "stop_id": 6041767, "stop_desc": "RUE DE LISBONNE - 91377", "stop_name": "HELENE BOUCHER"}, "geometry": {"type": "Point", "coordinates": [2.2853775008007173, 48.732252260868215]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e920dca4df4e160474d4ecbb8b36273f02948047", "fields": {"departement": "91", "stop_lat": 48.73039127111717, "code_postal": "91377", "stop_lon": 2.2844554385925244, "coord": [48.73039127111717, 2.2844554385925244], "stop_id": 6041768, "stop_desc": "FACE 11 RUE DE ROME - 91377", "stop_name": "MOSCOU - ROME"}, "geometry": {"type": "Point", "coordinates": [2.2844554385925244, 48.73039127111717]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "32dcfdfcb810133d90196dfd0caf64a314420d47", "fields": {"departement": "91", "stop_lat": 48.727847083549705, "code_postal": "91377", "stop_lon": 2.2833711116416517, "coord": [48.727847083549705, 2.2833711116416517], "stop_id": 6041771, "stop_desc": "21 AVENUE NATIONALE - 91377", "stop_name": "AUSTRALIE"}, "geometry": {"type": "Point", "coordinates": [2.2833711116416517, 48.727847083549705]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7686e1594eb0e27a059a883076e4339444a8516c", "fields": {"departement": "91", "stop_lat": 48.72928165027463, "code_postal": "91377", "stop_lon": 2.2760056052258806, "coord": [48.72928165027463, 2.2760056052258806], "stop_id": 6041775, "stop_desc": "FACE 3 RUE FUSTEL DE COULANGES - 91377", "stop_name": "GABRIEL PERI"}, "geometry": {"type": "Point", "coordinates": [2.2760056052258806, 48.72928165027463]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cd4bda1afb1e423ee2c22a4e577e222042a82054", "fields": {"departement": "91", "stop_lat": 48.73270985771628, "code_postal": "91377", "stop_lon": 2.266408686362832, "coord": [48.73270985771628, 2.266408686362832], "stop_id": 6041781, "stop_desc": "AVENUE DES MARTYRS DE SOWETO - 91377", "stop_name": "LYCEE FUSTEL DE COULANGES"}, "geometry": {"type": "Point", "coordinates": [2.266408686362832, 48.73270985771628]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "02d5901bbaf1724226bfc2ab4f2500cd8aabf777", "fields": {"departement": "91", "stop_lat": 48.731074747216944, "code_postal": "91377", "stop_lon": 2.253747621435715, "coord": [48.731074747216944, 2.253747621435715], "stop_id": 6041801, "stop_desc": "RUE DE VERSAILLES - 91377", "stop_name": "LYCEE DE VILGENIS."}, "geometry": {"type": "Point", "coordinates": [2.253747621435715, 48.731074747216944]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "895d0802e8758d6f65757cb989d8642934327c80", "fields": {"departement": "91", "stop_lat": 48.7313722996687, "code_postal": "91377", "stop_lon": 2.2429859989018994, "coord": [48.7313722996687, 2.2429859989018994], "stop_id": 6041802, "stop_desc": "32 RUE DE VILGENIS - 91377", "stop_name": "PARC DE VILGENIS"}, "geometry": {"type": "Point", "coordinates": [2.2429859989018994, 48.7313722996687]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "050defa2a992c0de3f33cf733b6ff6ec688b85f7", "fields": {"departement": "91", "stop_lat": 48.73122857276707, "code_postal": "91377", "stop_lon": 2.243094957614942, "coord": [48.73122857276707, 2.243094957614942], "stop_id": 6041803, "stop_desc": "32 RUE DE VILGENIS - 91377", "stop_name": "PARC DE VILGENIS"}, "geometry": {"type": "Point", "coordinates": [2.243094957614942, 48.73122857276707]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4a5b0b10bfc68e7e9937d6717e5546f86e037c07", "fields": {"departement": "91", "stop_lat": 48.72708315354548, "code_postal": "91377", "stop_lon": 2.240860743457244, "coord": [48.72708315354548, 2.240860743457244], "stop_id": 6041810, "stop_desc": "FACE 42 RUE DE L'EFFORT MUTUEL - 91377", "stop_name": "PARC DE L'EFFORT MUTUEL"}, "geometry": {"type": "Point", "coordinates": [2.240860743457244, 48.72708315354548]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "74c6afc39e1345121fb93e35064bbe4435276ab2", "fields": {"departement": "91", "stop_lat": 48.72763626921586, "code_postal": "91377", "stop_lon": 2.2358599488136015, "coord": [48.72763626921586, 2.2358599488136015], "stop_id": 6041811, "stop_desc": "FACE 57 RUE DE L'EFFORT MUTUEL - 91377", "stop_name": "MARCHE DU PILEU"}, "geometry": {"type": "Point", "coordinates": [2.2358599488136015, 48.72763626921586]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b149098a93ef6b74d42a2fde3299e02010a1bac4", "fields": {"departement": "91", "stop_lat": 48.72944584700603, "code_postal": "91477", "stop_lon": 2.2289814974657833, "coord": [48.72944584700603, 2.2289814974657833], "stop_id": 6041814, "stop_desc": "30 RUE DE LA CAMPAGNARDE - 91477", "stop_name": "YVETTE"}, "geometry": {"type": "Point", "coordinates": [2.2289814974657833, 48.72944584700603]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c7bd9ed62cfc9a876b2e409c2ce6037f8872f1d5", "fields": {"departement": "91", "stop_lat": 48.732303847279525, "code_postal": "91312", "stop_lon": 2.228663032373085, "coord": [48.732303847279525, 2.228663032373085], "stop_id": 6041815, "stop_desc": "AVENUE IRENE ET FREDERIC JOLIOT CURIE - 91312", "stop_name": "LE GYMNASE"}, "geometry": {"type": "Point", "coordinates": [2.228663032373085, 48.732303847279525]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4c9982f4b6a0ecbab04d184368b4eb8d29ab9ba2", "fields": {"departement": "91", "stop_lat": 48.73220944494621, "code_postal": "91312", "stop_lon": 2.2238260697567935, "coord": [48.73220944494621, 2.2238260697567935], "stop_id": 6041817, "stop_desc": "11 RUE JULES FERRY - 91312", "stop_name": "JULES FERRY - REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.2238260697567935, 48.73220944494621]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ee4841b3596555b44ae430cdd7d2ec4d3ed9aafe", "fields": {"departement": "91", "stop_lat": 48.735515819321705, "code_postal": "91635", "stop_lon": 2.2134916773157154, "coord": [48.735515819321705, 2.2134916773157154], "stop_id": 6041824, "stop_desc": "GRANDE RUE DU 8 MAI 1945 - 91635", "stop_name": "LES CASTORS"}, "geometry": {"type": "Point", "coordinates": [2.2134916773157154, 48.735515819321705]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3b0305d951fb38fe148b3b50b061dbb53c97a825", "fields": {"departement": "91", "stop_lat": 48.73595985867458, "code_postal": "91635", "stop_lon": 2.217010044496703, "coord": [48.73595985867458, 2.217010044496703], "stop_id": 6041831, "stop_desc": "99 GRANDE RUE DU 8 MAI 1945 - 91635", "stop_name": "BOUTON D'OR"}, "geometry": {"type": "Point", "coordinates": [2.217010044496703, 48.73595985867458]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8af0be6e144c45ad7351b38f636a6a3cf6b9d415", "fields": {"departement": "91", "stop_lat": 48.72998443350052, "code_postal": "91312", "stop_lon": 2.238477650027668, "coord": [48.72998443350052, 2.238477650027668], "stop_id": 6041834, "stop_desc": "RUE DE LA VIEILLE VIGNE - 91312", "stop_name": "RUE DU PILEU"}, "geometry": {"type": "Point", "coordinates": [2.238477650027668, 48.72998443350052]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "79139db2267769aee8ac47e0e7f27ee20563ca75", "fields": {"departement": "91", "stop_lat": 48.72629142033059, "code_postal": "91689", "stop_lon": 2.306781349233639, "coord": [48.72629142033059, 2.306781349233639], "stop_id": 6041841, "stop_desc": "AVENUE CHARLES LINDBERGH - 91689", "stop_name": "PLACE DE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.306781349233639, 48.72629142033059]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "43f4381e0f747037644ffb3cbbca74ddac2a45ee", "fields": {"departement": "91", "stop_lat": 48.7176142603044, "code_postal": "91377", "stop_lon": 2.2956885480301032, "coord": [48.7176142603044, 2.2956885480301032], "stop_id": 6041846, "stop_desc": "66 RUE DES CHAMPARTS - 91377", "stop_name": "Z.A.C. DU PEROU"}, "geometry": {"type": "Point", "coordinates": [2.2956885480301032, 48.7176142603044]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b3c1c2de6f243ce2a0f2b38a42048d4d52538cbc", "fields": {"departement": "91", "stop_lat": 48.71646381338601, "code_postal": "91377", "stop_lon": 2.2958932184222367, "coord": [48.71646381338601, 2.2958932184222367], "stop_id": 6041847, "stop_desc": "AVENUE DU MARECHAL DE LATTRE DE TASSIGNY - 91377", "stop_name": "RUE DES FLEURS"}, "geometry": {"type": "Point", "coordinates": [2.2958932184222367, 48.71646381338601]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "85c51d4d260253a38ec888af2e7a5b16c6a2fbcc", "fields": {"departement": "91", "stop_lat": 48.71498184738707, "code_postal": "91161", "stop_lon": 2.299262984602106, "coord": [48.71498184738707, 2.299262984602106], "stop_id": 6041850, "stop_desc": "FACE 101 ROUTE DE MASSY - 91161", "stop_name": "ROUTE DE MASSY - LES CHAMPARTS"}, "geometry": {"type": "Point", "coordinates": [2.299262984602106, 48.71498184738707]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0f51b5a9c624a104a18642b3c7aa446a33818ea2", "fields": {"departement": "91", "stop_lat": 48.70274441181845, "code_postal": "91161", "stop_lon": 2.320361379742285, "coord": [48.70274441181845, 2.320361379742285], "stop_id": 6041858, "stop_desc": "FACE 5 AVENUE MAZARIN - 91161", "stop_name": "PLACE DE LA LIBERATION"}, "geometry": {"type": "Point", "coordinates": [2.320361379742285, 48.70274441181845]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1dda17cbd5e26712cb717369c9786e8a36f3d96c", "fields": {"departement": "91", "stop_lat": 48.70040805678423, "code_postal": "91432", "stop_lon": 2.3259431930276775, "coord": [48.70040805678423, 2.3259431930276775], "stop_id": 6041859, "stop_desc": "20 AVENUE GABRIEL PERI - 91432", "stop_name": "L'AVENIR"}, "geometry": {"type": "Point", "coordinates": [2.3259431930276775, 48.70040805678423]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d0b03fe10af477116536eac0c4536689cb63a739", "fields": {"departement": "91", "stop_lat": 48.697425064642374, "code_postal": "91345", "stop_lon": 2.2927988913003228, "coord": [48.697425064642374, 2.2927988913003228], "stop_id": 6041871, "stop_desc": "FACE 6 RUE MICHEL VINCENT - 91345", "stop_name": "PLACE CHARLES STEBER"}, "geometry": {"type": "Point", "coordinates": [2.2927988913003228, 48.697425064642374]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c970aba670fe8d7bb6feebb814c2c0ebdc4b38b2", "fields": {"departement": "91", "stop_lat": 48.694029119668265, "code_postal": "91345", "stop_lon": 2.2977032864842424, "coord": [48.694029119668265, 2.2977032864842424], "stop_id": 6041879, "stop_desc": "2 AVENUE DU GENERAL DE GAULLE - 91345", "stop_name": "LEONTINE SOHIER"}, "geometry": {"type": "Point", "coordinates": [2.2977032864842424, 48.694029119668265]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7aae5aef98ab1ae74a82f0687bb3d7399c853e05", "fields": {"departement": "91", "stop_lat": 48.69415489177082, "code_postal": "91345", "stop_lon": 2.2974995272158125, "coord": [48.69415489177082, 2.2974995272158125], "stop_id": 6041880, "stop_desc": "1 AVENUE DU GENERAL DE GAULLE - 91345", "stop_name": "LEONTINE SOHIER"}, "geometry": {"type": "Point", "coordinates": [2.2974995272158125, 48.69415489177082]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fd0ed160d4c8c42014625904bdf8b286833d44d7", "fields": {"departement": "91", "stop_lat": 48.69877681712549, "code_postal": "91161", "stop_lon": 2.3033077155877164, "coord": [48.69877681712549, 2.3033077155877164], "stop_id": 6041883, "stop_desc": "AVENUE PIERRE BROSSOLETTE - 91161", "stop_name": "RUE DE CHILLY"}, "geometry": {"type": "Point", "coordinates": [2.3033077155877164, 48.69877681712549]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cf268b4255c3a2b2166b5841bc640996dd1adffe", "fields": {"departement": "91", "stop_lat": 48.695398352005185, "code_postal": "91161", "stop_lon": 2.307939984216112, "coord": [48.695398352005185, 2.307939984216112], "stop_id": 6041888, "stop_desc": "51 RUE DE GRAVIGNY - 91161", "stop_name": "SAINT-ELOI"}, "geometry": {"type": "Point", "coordinates": [2.307939984216112, 48.695398352005185]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b1632e1795a8535618c3055e1cbfe448d592d1fc", "fields": {"departement": "91", "stop_lat": 48.69683766498326, "code_postal": "91161", "stop_lon": 2.313003870905301, "coord": [48.69683766498326, 2.313003870905301], "stop_id": 6041891, "stop_desc": "27 BIS RUE PIERRE MENDES FRANCE - 91161", "stop_name": "ELISEE RECLUS"}, "geometry": {"type": "Point", "coordinates": [2.313003870905301, 48.69683766498326]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "474bfe41b9739e1082f830b9a270380bf20136ed", "fields": {"departement": "91", "stop_lat": 48.6996427594255, "code_postal": "91161", "stop_lon": 2.316519527030894, "coord": [48.6996427594255, 2.316519527030894], "stop_id": 6041893, "stop_desc": "AVENUE PIERRE BROSSOLETTE - 91161", "stop_name": "DIVISION LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.316519527030894, 48.6996427594255]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ce043ca1afbab78c5a9da787e3a396067d75a359", "fields": {"departement": "91", "stop_lat": 48.69877681712549, "code_postal": "91161", "stop_lon": 2.3033077155877164, "coord": [48.69877681712549, 2.3033077155877164], "stop_id": 6041901, "stop_desc": "AVENUE PIERRE BROSSOLETTE - 91161", "stop_name": "RUE DE CHILLY"}, "geometry": {"type": "Point", "coordinates": [2.3033077155877164, 48.69877681712549]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "266d1d307d25e3a7333ce6dd4b514ec03075fb2f", "fields": {"departement": "91", "stop_lat": 48.69969462982099, "code_postal": "91161", "stop_lon": 2.3069327160654125, "coord": [48.69969462982099, 2.3069327160654125], "stop_id": 6041902, "stop_desc": "47 RUE HENRI BARBUSSE - 91161", "stop_name": "CHILLY-MAZARIN RER"}, "geometry": {"type": "Point", "coordinates": [2.3069327160654125, 48.69969462982099]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c641381214f9fda036237beda884f8065c83ea1f", "fields": {"departement": "92", "stop_lat": 48.81059766892361, "code_postal": "92020", "stop_lon": 2.300417739172848, "coord": [48.81059766892361, 2.300417739172848], "stop_id": 6046776, "stop_desc": "FACE 8 RUE DE L'AVENIR - 92020", "stop_name": "CHATILLON - MONTROUGE"}, "geometry": {"type": "Point", "coordinates": [2.300417739172848, 48.81059766892361]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cf4191ad01f09ae63f50df83c0f854216118ea09", "fields": {"departement": "92", "stop_lat": 48.80409546132373, "code_postal": "92020", "stop_lon": 2.2891154933259297, "coord": [48.80409546132373, 2.2891154933259297], "stop_id": 6046780, "stop_desc": "AVENUE DE PARIS - 92020", "stop_name": "CENTRE DE CHATILLON"}, "geometry": {"type": "Point", "coordinates": [2.2891154933259297, 48.80409546132373]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bb389bb6e9149a1fb495f32d7f3f2ba1034cc78a", "fields": {"departement": "92", "stop_lat": 48.78679318485264, "code_postal": "92023", "stop_lon": 2.2551542374058697, "coord": [48.78679318485264, 2.2551542374058697], "stop_id": 6046788, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 92023", "stop_name": "HOPITAL BECLERE"}, "geometry": {"type": "Point", "coordinates": [2.2551542374058697, 48.78679318485264]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4746509cba3bffab9a01e4af787066a5385bdc15", "fields": {"departement": "78", "stop_lat": 48.80561258547728, "code_postal": "78686", "stop_lon": 2.168680846519102, "coord": [48.80561258547728, 2.168680846519102], "stop_id": 6046815, "stop_desc": "PLACE DE LA BATAILLE DE STALINGRAD - 78686", "stop_name": "VIROFLAY - RIVE DROITE"}, "geometry": {"type": "Point", "coordinates": [2.168680846519102, 48.80561258547728]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "71b7b355f9506d63503d740994bc35ce803c48ee", "fields": {"departement": "75", "stop_lat": 48.81884297364722, "code_postal": "75113", "stop_lon": 2.359874820335962, "coord": [48.81884297364722, 2.359874820335962], "stop_id": 6075080, "stop_desc": "FACE 164 BOULEVARD MASSENA - 75113", "stop_name": "PORTE D'ITALIE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.359874820335962, 48.81884297364722]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a1db2874eb0051eaf52d834cdfee99084fac30f9", "fields": {"departement": "94", "stop_lat": 48.79067620604572, "code_postal": "94076", "stop_lon": 2.3536460658781135, "coord": [48.79067620604572, 2.3536460658781135], "stop_id": 6075098, "stop_desc": "RUE DE VERDUN - 94076", "stop_name": "VERDUN - HAUTES BRUYERES"}, "geometry": {"type": "Point", "coordinates": [2.3536460658781135, 48.79067620604572]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "93e84c34a34cb5e9d3c720f861c8ac86435fade9", "fields": {"departement": "94", "stop_lat": 48.78411489536589, "code_postal": "94076", "stop_lon": 2.35450086375768, "coord": [48.78411489536589, 2.35450086375768], "stop_id": 6075102, "stop_desc": "68 RUE DE CHEVILLY - 94076", "stop_name": "LES LOZAITS"}, "geometry": {"type": "Point", "coordinates": [2.35450086375768, 48.78411489536589]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a86c84109106a0b1801108ac2454dbe7b581fa68", "fields": {"departement": "92", "stop_lat": 48.748187353181756, "code_postal": "92002", "stop_lon": 2.308684941942609, "coord": [48.748187353181756, 2.308684941942609], "stop_id": 6085262, "stop_desc": "47 AVENUE ARMAND GUILLEBAUD - 92002", "stop_name": "DESCARTES"}, "geometry": {"type": "Point", "coordinates": [2.308684941942609, 48.748187353181756]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "91185f5c711e1fda6b8c8c478621dca5307d69e0", "fields": {"departement": "92", "stop_lat": 48.748187353181756, "code_postal": "92002", "stop_lon": 2.308684941942609, "coord": [48.748187353181756, 2.308684941942609], "stop_id": 6085320, "stop_desc": "47 AVENUE ARMAND GUILLEBAUD - 92002", "stop_name": "DESCARTES"}, "geometry": {"type": "Point", "coordinates": [2.308684941942609, 48.748187353181756]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "35ef78e03cc10d0f8c8dc560b5b7d7b114f65db9", "fields": {"departement": "75", "stop_lat": 48.864766333887154, "code_postal": "75120", "stop_lon": 2.3952309635940914, "coord": [48.864766333887154, 2.3952309635940914], "stop_id": 6095573, "stop_desc": "AVENUE GAMBETTA - 75120", "stop_name": "MARTIN NADAUD"}, "geometry": {"type": "Point", "coordinates": [2.3952309635940914, 48.864766333887154]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9df50de11fd24d759cf467994315c5dcd8b0a0e8", "fields": {"departement": "93", "stop_lat": 48.95816434930164, "code_postal": "93031", "stop_lon": 2.328875532262177, "coord": [48.95816434930164, 2.328875532262177], "stop_id": 6095575, "stop_desc": "ROUTE DE SAINT-LEU - 93031", "stop_name": "GARE D'EPINAY-VILLETANEUSE"}, "geometry": {"type": "Point", "coordinates": [2.328875532262177, 48.95816434930164]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "54be40cc3ab19c795b1d9da124a818541eeb3169", "fields": {"departement": "75", "stop_lat": 48.85702356778014, "code_postal": "75104", "stop_lon": 2.3505888687775256, "coord": [48.85702356778014, 2.3505888687775256], "stop_id": 6114731, "stop_desc": "2-4 AVENUE VICTORIA - 75104", "stop_name": "HOTEL DE VILLE"}, "geometry": {"type": "Point", "coordinates": [2.3505888687775256, 48.85702356778014]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "202768d8e90e9cb46559bc12eb93fbfcb672cb4e", "fields": {"departement": "75", "stop_lat": 48.894409250689, "code_postal": "75117", "stop_lon": 2.3143425898614485, "coord": [48.894409250689, 2.3143425898614485], "stop_id": 6131929, "stop_desc": "123 BOULEVARD BESSIERES - 75117", "stop_name": "PORTE DE CLICHY"}, "geometry": {"type": "Point", "coordinates": [2.3143425898614485, 48.894409250689]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8500644f998a47dee590deffc3423ea3f6bef1dc", "fields": {"departement": "75", "stop_lat": 48.887277052890184, "code_postal": "75117", "stop_lon": 2.2947893290138164, "coord": [48.887277052890184, 2.2947893290138164], "stop_id": 6131942, "stop_desc": "189 RUE DE COURCELLES - 75117", "stop_name": "PORTE DE COURCELLES"}, "geometry": {"type": "Point", "coordinates": [2.2947893290138164, 48.887277052890184]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "05b374b448c0f54fa766dfe9bfe9fb7d4d0178a9", "fields": {"departement": "75", "stop_lat": 48.89115417103819, "code_postal": "75117", "stop_lon": 2.306657170286277, "coord": [48.89115417103819, 2.306657170286277], "stop_id": 6131947, "stop_desc": "FACE 76 BOULEVARD BERTHIER - 75117", "stop_name": "LES HAUTS DE MALESHERBES"}, "geometry": {"type": "Point", "coordinates": [2.306657170286277, 48.89115417103819]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "45c73c720eb7800b6c87acc41939223df36f6fdc", "fields": {"departement": "75", "stop_lat": 48.898247184525296, "code_postal": "75118", "stop_lon": 2.357837562899376, "coord": [48.898247184525296, 2.357837562899376], "stop_id": 6131949, "stop_desc": "BOULEVARD NEY - 75118", "stop_name": "PORTE DE LA CHAPELLE"}, "geometry": {"type": "Point", "coordinates": [2.357837562899376, 48.898247184525296]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e8c65c6eb15a8a5742a7e45d56398f3475260e95", "fields": {"departement": "75", "stop_lat": 48.883949638361095, "code_postal": "75117", "stop_lon": 2.289150357249773, "coord": [48.883949638361095, 2.289150357249773], "stop_id": 6131951, "stop_desc": "FACE 24 BOULEVARD GOUVION-SAINT-CYR - 75117", "stop_name": "PORTE DE VILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.289150357249773, 48.883949638361095]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e7952a9c62e732930e24c67c5e7d005131f35ce9", "fields": {"departement": "75", "stop_lat": 48.898479490665245, "code_postal": "75118", "stop_lon": 2.36459868486789, "coord": [48.898479490665245, 2.36459868486789], "stop_id": 6131964, "stop_desc": "7 BOULEVARD NEY - 75118", "stop_name": "EMILE BERTIN"}, "geometry": {"type": "Point", "coordinates": [2.36459868486789, 48.898479490665245]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7d07b404bf887752079d3be532c0a4bd89c2d899", "fields": {"departement": "75", "stop_lat": 48.89867744051649, "code_postal": "75118", "stop_lon": 2.363562821127319, "coord": [48.89867744051649, 2.363562821127319], "stop_id": 6131965, "stop_desc": "50 BOULEVARD NEY - 75118", "stop_name": "EMILE BERTIN"}, "geometry": {"type": "Point", "coordinates": [2.363562821127319, 48.89867744051649]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "35fd10813282c2cec853af4d12c3717cd2282c56", "fields": {"departement": "75", "stop_lat": 48.89996986758614, "code_postal": "75119", "stop_lon": 2.3704473851366274, "coord": [48.89996986758614, 2.3704473851366274], "stop_id": 6131966, "stop_desc": "AVENUE DE LA PORTE D'AUBERVILLIERS - 75119", "stop_name": "SKANDERBEG"}, "geometry": {"type": "Point", "coordinates": [2.3704473851366274, 48.89996986758614]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "54500932ea6e560000cf6fb029db3603a3fb3f59", "fields": {"departement": "75", "stop_lat": 48.878707984696156, "code_postal": "75117", "stop_lon": 2.284236266860388, "coord": [48.878707984696156, 2.284236266860388], "stop_id": 6131968, "stop_desc": "FACE 93 BOULEVARD GOUVION-SAINT-CYR - 75117", "stop_name": "PORTE MAILLOT - PALAIS DES CONGRES"}, "geometry": {"type": "Point", "coordinates": [2.284236266860388, 48.878707984696156]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ddf7c4cb7848aa86a5ab11bf34b4e7c35c0a4f91", "fields": {"departement": "94", "stop_lat": 48.78850494351641, "code_postal": "94081", "stop_lon": 2.3759802633642253, "coord": [48.78850494351641, 2.3759802633642253], "stop_id": 6143544, "stop_desc": "133 AVENUE DU MOULIN DE SAQUET - 94081", "stop_name": "COLONEL FABIEN"}, "geometry": {"type": "Point", "coordinates": [2.3759802633642253, 48.78850494351641]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "883227c85159eb850110af11390fb324577d8cfc", "fields": {"departement": "94", "stop_lat": 48.79202047251417, "code_postal": "94081", "stop_lon": 2.3950409198816547, "coord": [48.79202047251417, 2.3950409198816547], "stop_id": 6143550, "stop_desc": "157 AVENUE PAUL VAILLANT-COUTURIER - 94081", "stop_name": "EGLISE DE VITRY"}, "geometry": {"type": "Point", "coordinates": [2.3950409198816547, 48.79202047251417]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7612ccdbde63b272dd756565220d022ba7652cb5", "fields": {"departement": "94", "stop_lat": 48.79826451434789, "code_postal": "94081", "stop_lon": 2.400040831580739, "coord": [48.79826451434789, 2.400040831580739], "stop_id": 6143552, "stop_desc": "45 AVENUE PAUL VAILLANT-COUTURIER - 94081", "stop_name": "GABRIEL PERI"}, "geometry": {"type": "Point", "coordinates": [2.400040831580739, 48.79826451434789]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1d2586ba178a12b8dbf99594847e452163eb3908", "fields": {"departement": "94", "stop_lat": 48.82143491113748, "code_postal": "94018", "stop_lon": 2.415367488845544, "coord": [48.82143491113748, 2.415367488845544], "stop_id": 6143564, "stop_desc": "4 RUE ALFRED SAVOURE - 94018", "stop_name": "CHARENTON-ECOLES"}, "geometry": {"type": "Point", "coordinates": [2.415367488845544, 48.82143491113748]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9354db0b86f0bf100289eabbb828c9d6f05d1a5e", "fields": {"departement": "94", "stop_lat": 48.818362545546485, "code_postal": "94041", "stop_lon": 2.3974384002716493, "coord": [48.818362545546485, 2.3974384002716493], "stop_id": 6143570, "stop_desc": "50 BOULEVARD PAUL VAILLANT-COUTURIER - 94041", "stop_name": "VAILLANT-COUTURIER - LENINE"}, "geometry": {"type": "Point", "coordinates": [2.3974384002716493, 48.818362545546485]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4656e400217d72fac1b52eca04640d1182a1221b", "fields": {"departement": "94", "stop_lat": 48.7983005517985, "code_postal": "94081", "stop_lon": 2.399877617408329, "coord": [48.7983005517985, 2.399877617408329], "stop_id": 6143577, "stop_desc": "30 AVENUE PAUL VAILLANT-COUTURIER - 94081", "stop_name": "GABRIEL PERI"}, "geometry": {"type": "Point", "coordinates": [2.399877617408329, 48.7983005517985]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "870608f90294500ffbe737491ae36adc03843254", "fields": {"departement": "94", "stop_lat": 48.790610719207514, "code_postal": "94081", "stop_lon": 2.392196366578341, "coord": [48.790610719207514, 2.392196366578341], "stop_id": 6143580, "stop_desc": "10 AVENUE DE L'ABBE ROGER DERRY - 94081", "stop_name": "AUDIGEOIS"}, "geometry": {"type": "Point", "coordinates": [2.392196366578341, 48.790610719207514]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d715e3f71c7514232e570825b77531715ebf4d02", "fields": {"departement": "94", "stop_lat": 48.79209689981996, "code_postal": "94081", "stop_lon": 2.3848250122745944, "coord": [48.79209689981996, 2.3848250122745944], "stop_id": 6143583, "stop_desc": "FACE 11-13 AVENUE DU MOULIN DE SAQUET - 94081", "stop_name": "MUSEE MAC-VAL"}, "geometry": {"type": "Point", "coordinates": [2.3848250122745944, 48.79209689981996]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "25e1e714e17e09fdcea1cb484dce42e14a2bb7b8", "fields": {"departement": "94", "stop_lat": 48.78785123708828, "code_postal": "94076", "stop_lon": 2.3676825118887823, "coord": [48.78785123708828, 2.3676825118887823], "stop_id": 6143586, "stop_desc": "PISTE GARE ROUTIERE - 94076", "stop_name": "VILLEJUIF - LOUIS ARAGON"}, "geometry": {"type": "Point", "coordinates": [2.3676825118887823, 48.78785123708828]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "828afc95b808683a982d92d7b0f7a4f79265dbb4", "fields": {"departement": "94", "stop_lat": 48.821606439542855, "code_postal": "94018", "stop_lon": 2.4141972075539684, "coord": [48.821606439542855, 2.4141972075539684], "stop_id": 6143587, "stop_desc": "RUE DE LA REPUBLIQUE - 94018", "stop_name": "CHARENTON-ECOLES"}, "geometry": {"type": "Point", "coordinates": [2.4141972075539684, 48.821606439542855]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6e46b580e4d49727a48efc5ff5e38478f3115a1a", "fields": {"departement": "94", "stop_lat": 48.82248640945558, "code_postal": "94018", "stop_lon": 2.4003151356284196, "coord": [48.82248640945558, 2.4003151356284196], "stop_id": 6143591, "stop_desc": "7 RUE DE L'ARCADE - 94018", "stop_name": "PONT NELSON MANDELA - RIVES DE BERCY"}, "geometry": {"type": "Point", "coordinates": [2.4003151356284196, 48.82248640945558]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "88663bbbe3c7f537f7f7ed7bf318358b6de991a8", "fields": {"departement": "94", "stop_lat": 48.818362545546485, "code_postal": "94041", "stop_lon": 2.3974384002716493, "coord": [48.818362545546485, 2.3974384002716493], "stop_id": 6143592, "stop_desc": "50 BOULEVARD PAUL VAILLANT-COUTURIER - 94041", "stop_name": "VAILLANT-COUTURIER - LENINE"}, "geometry": {"type": "Point", "coordinates": [2.3974384002716493, 48.818362545546485]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b886d7a7b566e374f06105463a524b207229f96f", "fields": {"departement": "94", "stop_lat": 48.79045958793866, "code_postal": "94081", "stop_lon": 2.3884690512328666, "coord": [48.79045958793866, 2.3884690512328666], "stop_id": 6143604, "stop_desc": "17 AVENUE MAXIMILIEN ROBESPIERRE - 94081", "stop_name": "HOTEL DE VILLE DE VITRY"}, "geometry": {"type": "Point", "coordinates": [2.3884690512328666, 48.79045958793866]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "44908a24c545e2c1fa2f676418c9ba5d58b392a0", "fields": {"departement": "92", "stop_lat": 48.80405009867618, "code_postal": "92007", "stop_lon": 2.3205461249730983, "coord": [48.80405009867618, 2.3205461249730983], "stop_id": 6161492, "stop_desc": "FACE 8 AVENUE VICTOR HUGO - 92007", "stop_name": "GUSTAVE COURBET"}, "geometry": {"type": "Point", "coordinates": [2.3205461249730983, 48.80405009867618]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a03cb7fe2bac72dfcc9bbf8b38eb95164654f25f", "fields": {"departement": "92", "stop_lat": 48.862932246409954, "code_postal": "92073", "stop_lon": 2.2179824740747285, "coord": [48.862932246409954, 2.2179824740747285], "stop_id": 4024271, "stop_desc": "124 BOULEVARD HENRI SELLIER - 92073", "stop_name": "GARIBALDI"}, "geometry": {"type": "Point", "coordinates": [2.2179824740747285, 48.862932246409954]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9f6526da55d434c87fcc5d7b142851f2e9fb1746", "fields": {"departement": "92", "stop_lat": 48.86006972889107, "code_postal": "92073", "stop_lon": 2.213548602298387, "coord": [48.86006972889107, 2.213548602298387], "stop_id": 4024272, "stop_desc": "20 BOULEVARD LOUIS LOUCHEUR - 92073", "stop_name": "VAL D'OR"}, "geometry": {"type": "Point", "coordinates": [2.213548602298387, 48.86006972889107]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b65877fced45b88b7d8e51d53a0f1a83eeeca5e7", "fields": {"departement": "92", "stop_lat": 48.86184828083935, "code_postal": "92073", "stop_lon": 2.2126317195091785, "coord": [48.86184828083935, 2.2126317195091785], "stop_id": 4024273, "stop_desc": "30 CARREFOUR DE LA CROIX DU ROY - 92073", "stop_name": "CROIX DU ROY"}, "geometry": {"type": "Point", "coordinates": [2.2126317195091785, 48.86184828083935]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ec0c3c9057b5125df606d39fdbe1a5f6886da38b", "fields": {"departement": "92", "stop_lat": 48.86316108003911, "code_postal": "92073", "stop_lon": 2.2048913585176986, "coord": [48.86316108003911, 2.2048913585176986], "stop_id": 4024275, "stop_desc": "2 AVENUE G.STRESEMANN - 92073", "stop_name": "STRESEMANN"}, "geometry": {"type": "Point", "coordinates": [2.2048913585176986, 48.86316108003911]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9f8cdbc205a9fa6b6d14e2ddb55f12acc7df92e7", "fields": {"departement": "92", "stop_lat": 48.86495981904738, "code_postal": "92063", "stop_lon": 2.2060310416999966, "coord": [48.86495981904738, 2.2060310416999966], "stop_id": 4024276, "stop_desc": "183 AVENUE JEAN JAURES - 92063", "stop_name": "PLACE DE LA PAIX"}, "geometry": {"type": "Point", "coordinates": [2.2060310416999966, 48.86495981904738]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a4852aee6dc46eb55b6a8a368d06ae906d678805", "fields": {"departement": "92", "stop_lat": 48.88180419562212, "code_postal": "92062", "stop_lon": 2.2470185050349207, "coord": [48.88180419562212, 2.2470185050349207], "stop_id": 4024296, "stop_desc": "FACE 37 QUAI DE DION BOUTON - 92062", "stop_name": "SQUARE LEON BLUM"}, "geometry": {"type": "Point", "coordinates": [2.2470185050349207, 48.88180419562212]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0b87244652730235a69f37552e7c9f3920e792d9", "fields": {"departement": "92", "stop_lat": 48.87877176305051, "code_postal": "92062", "stop_lon": 2.242227454203728, "coord": [48.87877176305051, 2.242227454203728], "stop_id": 4024298, "stop_desc": "6 BOULEVARD RICHARD WALLACE - 92062", "stop_name": "HOPITAL - PONT DE PUTEAUX"}, "geometry": {"type": "Point", "coordinates": [2.242227454203728, 48.87877176305051]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "89a10871de30141282e9271b67bab6400b4011f3", "fields": {"departement": "92", "stop_lat": 48.87866366555721, "code_postal": "92062", "stop_lon": 2.2419142564861145, "coord": [48.87866366555721, 2.2419142564861145], "stop_id": 4024299, "stop_desc": "FACE 6 BOULEVARD RICHARD WALLACE - 92062", "stop_name": "HOPITAL - PONT DE PUTEAUX"}, "geometry": {"type": "Point", "coordinates": [2.2419142564861145, 48.87866366555721]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "917899ed09888062f42e96bd128ab13523fbb7e0", "fields": {"departement": "92", "stop_lat": 48.88143643740651, "code_postal": "92062", "stop_lon": 2.2366901551534535, "coord": [48.88143643740651, 2.2366901551534535], "stop_id": 4024302, "stop_desc": "72 BOULEVARD RICHARD WALLACE - 92062", "stop_name": "WALLACE - EUGENE EICHENBERGER"}, "geometry": {"type": "Point", "coordinates": [2.2366901551534535, 48.88143643740651]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "76571eb1eecb24f3ae9e592a35487616cb9f64f6", "fields": {"departement": "92", "stop_lat": 48.878234244641455, "code_postal": "92073", "stop_lon": 2.2236564792468743, "coord": [48.878234244641455, 2.2236564792468743], "stop_id": 4024308, "stop_desc": "RUE VOLTAIRE - 92073", "stop_name": "LYCEE PAUL LANGEVIN"}, "geometry": {"type": "Point", "coordinates": [2.2236564792468743, 48.878234244641455]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f764c159496fe3ad544b3ff5d32081ff3f230e17", "fields": {"departement": "92", "stop_lat": 48.88982481623273, "code_postal": "92050", "stop_lon": 2.203474009456126, "coord": [48.88982481623273, 2.203474009456126], "stop_id": 4024319, "stop_desc": "19 RUE DES VENETS - 92050", "stop_name": "LES VENETS"}, "geometry": {"type": "Point", "coordinates": [2.203474009456126, 48.88982481623273]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "23db589045074df6f0644e91d24471b757ca3bb6", "fields": {"departement": "92", "stop_lat": 48.903608533761805, "code_postal": "92050", "stop_lon": 2.193541243083144, "coord": [48.903608533761805, 2.193541243083144], "stop_id": 4024334, "stop_desc": "FACE 116 BD DE LA SEINE - 92050", "stop_name": "BOULEVARD DE LA SEINE"}, "geometry": {"type": "Point", "coordinates": [2.193541243083144, 48.903608533761805]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c326cb309d1d853e73c3009705a64667c5489dc5", "fields": {"departement": "92", "stop_lat": 48.894928935419784, "code_postal": "92050", "stop_lon": 2.195187305623287, "coord": [48.894928935419784, 2.195187305623287], "stop_id": 4024337, "stop_desc": "FACE 58-60 BOULEVARD DU COUCHANT - 92050", "stop_name": "NANTERRE - VILLE RER"}, "geometry": {"type": "Point", "coordinates": [2.195187305623287, 48.894928935419784]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b66f5d972ed532037b02e9da03fb5e8620590184", "fields": {"departement": "92", "stop_lat": 48.879326265106386, "code_postal": "92073", "stop_lon": 2.2191029736105428, "coord": [48.879326265106386, 2.2191029736105428], "stop_id": 4024341, "stop_desc": "2 RUE DE LA LIBERTE - 92073", "stop_name": "LIBERTE - PLAIDEURS"}, "geometry": {"type": "Point", "coordinates": [2.2191029736105428, 48.879326265106386]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cbef9c6bda3f53160464cadfbcd528332e9134c9", "fields": {"departement": "92", "stop_lat": 48.87985477346892, "code_postal": "92062", "stop_lon": 2.2368022331566495, "coord": [48.87985477346892, 2.2368022331566495], "stop_id": 4024342, "stop_desc": "163 RUE JEAN JAURES - 92062", "stop_name": "BAS ROGERS"}, "geometry": {"type": "Point", "coordinates": [2.2368022331566495, 48.87985477346892]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "652b57ab13e15b29ef3e6d48acdf83e6d439211d", "fields": {"departement": "92", "stop_lat": 48.88731991777116, "code_postal": "92062", "stop_lon": 2.2330127586935045, "coord": [48.88731991777116, 2.2330127586935045], "stop_id": 4024349, "stop_desc": "65-69 AVENUE DU GENERAL DE GAULLE - 92062", "stop_name": "LES GRAVIERS"}, "geometry": {"type": "Point", "coordinates": [2.2330127586935045, 48.88731991777116]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bf6e1e37025e3a37a114aa8aefd0ee2170f1418b", "fields": {"departement": "92", "stop_lat": 48.88961718272862, "code_postal": "92050", "stop_lon": 2.2196382951797005, "coord": [48.88961718272862, 2.2196382951797005], "stop_id": 4024357, "stop_desc": "74 AVENUE PABLO PICASSO - 92050", "stop_name": "FERNAND LEGER"}, "geometry": {"type": "Point", "coordinates": [2.2196382951797005, 48.88961718272862]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ea6dc8fe2194c21db0c53efc93828e94246d5fd0", "fields": {"departement": "92", "stop_lat": 48.89144597329983, "code_postal": "92050", "stop_lon": 2.215068338443355, "coord": [48.89144597329983, 2.215068338443355], "stop_id": 4024358, "stop_desc": "29-35 AV PABLO PICASSO - 92050", "stop_name": "LIBERTE"}, "geometry": {"type": "Point", "coordinates": [2.215068338443355, 48.89144597329983]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fcb14397d2c7632e325226c2c4b89a837e00e8fa", "fields": {"departement": "92", "stop_lat": 48.89125721485237, "code_postal": "92050", "stop_lon": 2.2150415249938704, "coord": [48.89125721485237, 2.2150415249938704], "stop_id": 4024359, "stop_desc": "32 AVENUE PABLO PICASSO - 92050", "stop_name": "LIBERTE"}, "geometry": {"type": "Point", "coordinates": [2.2150415249938704, 48.89125721485237]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "85b030e209f4854f94475d240fa67990d8744495", "fields": {"departement": "92", "stop_lat": 48.8928732015959, "code_postal": "92050", "stop_lon": 2.2133885267383153, "coord": [48.8928732015959, 2.2133885267383153], "stop_id": 4024360, "stop_desc": "AVENUE PABLO PICASSO - 92050", "stop_name": "THEATRE DES AMANDIERS"}, "geometry": {"type": "Point", "coordinates": [2.2133885267383153, 48.8928732015959]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cb549baa4c20b89c2ed0da79ea6a8601e4c90b5d", "fields": {"departement": "92", "stop_lat": 48.893813253325476, "code_postal": "92050", "stop_lon": 2.2018144960241917, "coord": [48.893813253325476, 2.2018144960241917], "stop_id": 4024371, "stop_desc": "FACE 72 RUE RAYMOND BARBET - 92050", "stop_name": "VICTOR HUGO - MAIRIE"}, "geometry": {"type": "Point", "coordinates": [2.2018144960241917, 48.893813253325476]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "65301abeec71adb4d973a911ee8430c2ddb60adc", "fields": {"departement": "92", "stop_lat": 48.83838286162291, "code_postal": "92012", "stop_lon": 2.2322260852802414, "coord": [48.83838286162291, 2.2322260852802414], "stop_id": 4024396, "stop_desc": "41 AVENUE DE SILLY - 92012", "stop_name": "ANDRE MORIZET"}, "geometry": {"type": "Point", "coordinates": [2.2322260852802414, 48.83838286162291]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "064e111c9bd1827228af30d60f65fbcf3b381950", "fields": {"departement": "92", "stop_lat": 48.8385085311614, "code_postal": "92012", "stop_lon": 2.2320488311658444, "coord": [48.8385085311614, 2.2320488311658444], "stop_id": 4024397, "stop_desc": "38 RUE DE SILLY - 92012", "stop_name": "ANDRE MORIZET"}, "geometry": {"type": "Point", "coordinates": [2.2320488311658444, 48.8385085311614]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c0ef3b6998f49cc939b22bd97f72905a70e2f3ba", "fields": {"departement": "92", "stop_lat": 48.84109238684097, "code_postal": "92012", "stop_lon": 2.2270056560618907, "coord": [48.84109238684097, 2.2270056560618907], "stop_id": 4024400, "stop_desc": "12-14 AV DU MARECHAL DE LATTRE DE TASSIGNY - 92012", "stop_name": "PONT DE SAINT-CLOUD - ALBERT KAHN"}, "geometry": {"type": "Point", "coordinates": [2.2270056560618907, 48.84109238684097]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b96d06c6bed73c86c6e4da30a0f9a8593cfd8db6", "fields": {"departement": "92", "stop_lat": 48.84589347263887, "code_postal": "92064", "stop_lon": 2.2194378491382247, "coord": [48.84589347263887, 2.2194378491382247], "stop_id": 4024404, "stop_desc": "27 RUE DAILLY - 92064", "stop_name": "CHEVRILLON"}, "geometry": {"type": "Point", "coordinates": [2.2194378491382247, 48.84589347263887]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ba22814ff933e8c7e36d0ccefc2dc8df5ba55c50", "fields": {"departement": "92", "stop_lat": 48.85330087874515, "code_postal": "92064", "stop_lon": 2.2122981557045462, "coord": [48.85330087874515, 2.2122981557045462], "stop_id": 4024418, "stop_desc": "FACE 148 BOULEVARD DE LA REPUBLIQUE - 92064", "stop_name": "MARIE BONAPARTE"}, "geometry": {"type": "Point", "coordinates": [2.2122981557045462, 48.85330087874515]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2db52777f1c215647b775b3eaa65809fc407e068", "fields": {"departement": "92", "stop_lat": 48.857424860288084, "code_postal": "92064", "stop_lon": 2.2111032506904253, "coord": [48.857424860288084, 2.2111032506904253], "stop_id": 4024419, "stop_desc": "222 BOULEVARD DE LA REPUBLIQUE - 92064", "stop_name": "LA BERANGERE"}, "geometry": {"type": "Point", "coordinates": [2.2111032506904253, 48.857424860288084]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "144b4188893960e044fcc6449ed085bae9b57da3", "fields": {"departement": "92", "stop_lat": 48.85746942179296, "code_postal": "92064", "stop_lon": 2.2107490132983845, "coord": [48.85746942179296, 2.2107490132983845], "stop_id": 4024420, "stop_desc": "187 BOULEVARD DE LA REPUBLIQUE - 92064", "stop_name": "LA BERANGERE"}, "geometry": {"type": "Point", "coordinates": [2.2107490132983845, 48.85746942179296]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "15d485b2fbd39caf3c6f7287764ab761b1ddb11c", "fields": {"departement": "92", "stop_lat": 48.86006972889107, "code_postal": "92073", "stop_lon": 2.213548602298387, "coord": [48.86006972889107, 2.213548602298387], "stop_id": 4024421, "stop_desc": "20 BOULEVARD LOUIS LOUCHEUR - 92073", "stop_name": "VAL D'OR"}, "geometry": {"type": "Point", "coordinates": [2.213548602298387, 48.86006972889107]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e8e4578d391f03113c71e37e23d1f62b07c8c89f", "fields": {"departement": "92", "stop_lat": 48.86426679339795, "code_postal": "92073", "stop_lon": 2.2134977237108133, "coord": [48.86426679339795, 2.2134977237108133], "stop_id": 4024423, "stop_desc": "62 BOULEVARD DU MARECHAL DE LATTRE DE TASSIGNY - 92073", "stop_name": "EDOUARD VAILLANT"}, "geometry": {"type": "Point", "coordinates": [2.2134977237108133, 48.86426679339795]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7c1ac49241a7dbca4980f820ab5e9cbdae2cfdae", "fields": {"departement": "92", "stop_lat": 48.87467854081284, "code_postal": "92073", "stop_lon": 2.2178055782523347, "coord": [48.87467854081284, 2.2178055782523347], "stop_id": 4024429, "stop_desc": "BOULEVARD DE WASHINGTON - 92073", "stop_name": "MONT VALERIEN"}, "geometry": {"type": "Point", "coordinates": [2.2178055782523347, 48.87467854081284]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3f8b4cf2aa78b85815982b7c4d5ab36ace600832", "fields": {"departement": "92", "stop_lat": 48.8967246279869, "code_postal": "92050", "stop_lon": 2.2182182061917946, "coord": [48.8967246279869, 2.2182182061917946], "stop_id": 4024460, "stop_desc": "R PABLO NERUDA - 92050", "stop_name": "MARCEL PAUL"}, "geometry": {"type": "Point", "coordinates": [2.2182182061917946, 48.8967246279869]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a011cec629c6850735b059ecac405abb487c90b6", "fields": {"departement": "92", "stop_lat": 48.89412144881431, "code_postal": "92050", "stop_lon": 2.212458704841192, "coord": [48.89412144881431, 2.212458704841192], "stop_id": 4024461, "stop_desc": "137 AV FREDERIC ET IRENE JOLIOT CURIE - 92050", "stop_name": "JOLIOT-CURIE - COURBEVOIE"}, "geometry": {"type": "Point", "coordinates": [2.212458704841192, 48.89412144881431]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "63147da9c1c58ef5df3401151b7dc8a80b295fce", "fields": {"departement": "92", "stop_lat": 48.88906914182084, "code_postal": "92050", "stop_lon": 2.202808155962186, "coord": [48.88906914182084, 2.202808155962186], "stop_id": 4024465, "stop_desc": "4 RUE DE LA COTE - 92050", "stop_name": "SADI CARNOT - JOLIOT-CURIE"}, "geometry": {"type": "Point", "coordinates": [2.202808155962186, 48.88906914182084]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "82540fb8b686a83dd5e1e0ead290a600defb91a8", "fields": {"departement": "92", "stop_lat": 48.84134695499046, "code_postal": "92064", "stop_lon": 2.220632775547223, "coord": [48.84134695499046, 2.220632775547223], "stop_id": 4024469, "stop_desc": "PISTE CIRCULAIRE OUEST DE LA PLACE CLEMENCEAU - 92064", "stop_name": "LA COLLINE"}, "geometry": {"type": "Point", "coordinates": [2.220632775547223, 48.84134695499046]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2952c7bdb330fb1773768a9a5e57ccbbca15645d", "fields": {"departement": "92", "stop_lat": 48.84846549397577, "code_postal": "92012", "stop_lon": 2.241234388908183, "coord": [48.84846549397577, 2.241234388908183], "stop_id": 4024530, "stop_desc": "19 BOULEVARD ANATOLE FRANCE - 92012", "stop_name": "GAMBETTA"}, "geometry": {"type": "Point", "coordinates": [2.241234388908183, 48.84846549397577]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d864969c65c6b2a43299af600db2633c95fd0432", "fields": {"departement": "75", "stop_lat": 48.86190018410889, "code_postal": "75116", "stop_lon": 2.2289501606070985, "coord": [48.86190018410889, 2.2289501606070985], "stop_id": 4024535, "stop_desc": "ALLEE DU BORD DE L'EAU - 75116", "stop_name": "HIPPODROME DE LONGCHAMP"}, "geometry": {"type": "Point", "coordinates": [2.2289501606070985, 48.86190018410889]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6379536936ce41f1ad3bf2436fea7a09b199a1ba", "fields": {"departement": "75", "stop_lat": 48.865311004088845, "code_postal": "75116", "stop_lon": 2.2341331715569654, "coord": [48.865311004088845, 2.2341331715569654], "stop_id": 4024537, "stop_desc": "ROUTE DE SURESNES - 75116", "stop_name": "LES MOULINS - CAMPING"}, "geometry": {"type": "Point", "coordinates": [2.2341331715569654, 48.865311004088845]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "04bcb240ecd1f0ece461baf70afae7e898b49c46", "fields": {"departement": "92", "stop_lat": 48.86767710841224, "code_postal": "92073", "stop_lon": 2.226812902957634, "coord": [48.86767710841224, 2.226812902957634], "stop_id": 4024538, "stop_desc": "FACE 13 BOULEVARD HENRI SELLIER - 92073", "stop_name": "RUE DES BOURETS - PONT DE SURESNES"}, "geometry": {"type": "Point", "coordinates": [2.226812902957634, 48.86767710841224]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a37b6f568157a018b2667c7ceca0a21d1d6d434d", "fields": {"departement": "92", "stop_lat": 48.869309974761926, "code_postal": "92073", "stop_lon": 2.2237986419615177, "coord": [48.869309974761926, 2.2237986419615177], "stop_id": 4024541, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 92073", "stop_name": "SURESNES DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.2237986419615177, 48.869309974761926]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9413eccf310d1404859387d3b1a5e20962edef14", "fields": {"departement": "92", "stop_lat": 48.872093696824585, "code_postal": "92073", "stop_lon": 2.2213538214986417, "coord": [48.872093696824585, 2.2213538214986417], "stop_id": 4024544, "stop_desc": "AVENUE FRANKLIN ROOSEVELT - 92073", "stop_name": "GARE DU MONT VALERIEN - HOPITAL FOCH"}, "geometry": {"type": "Point", "coordinates": [2.2213538214986417, 48.872093696824585]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ebf6361a04170487b800f32ec3429a5653823566", "fields": {"departement": "92", "stop_lat": 48.874357618684996, "code_postal": "92073", "stop_lon": 2.2204495250847147, "coord": [48.874357618684996, 2.2204495250847147], "stop_id": 4024547, "stop_desc": "AV FRANKLIN ROOSEVELT - 92073", "stop_name": "JACQUES DECOUR"}, "geometry": {"type": "Point", "coordinates": [2.2204495250847147, 48.874357618684996]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c43afb88e6d92ece7aa9816a6f79f5193aa3aac4", "fields": {"departement": "92", "stop_lat": 48.863798484438846, "code_postal": "92073", "stop_lon": 2.2125725447781606, "coord": [48.863798484438846, 2.2125725447781606], "stop_id": 4024554, "stop_desc": "21 BOULEVARD DU MARECHAL DE LATTRE DE TASSIGNY - 92073", "stop_name": "EDOUARD VAILLANT"}, "geometry": {"type": "Point", "coordinates": [2.2125725447781606, 48.863798484438846]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "39f0fead845fa73c9cf0f234cc11b45ed2e4c873", "fields": {"departement": "92", "stop_lat": 48.8635343842633, "code_postal": "92073", "stop_lon": 2.2093039143430833, "coord": [48.8635343842633, 2.2093039143430833], "stop_id": 4024556, "stop_desc": "AVENUE JEAN JAURES - 92073", "stop_name": "PLACE JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.2093039143430833, 48.8635343842633]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "617dcb03d7c27ed0011e5151e902d9e7c2e06e25", "fields": {"departement": "92", "stop_lat": 48.86495981904738, "code_postal": "92063", "stop_lon": 2.2060310416999966, "coord": [48.86495981904738, 2.2060310416999966], "stop_id": 4024558, "stop_desc": "183 AVENUE JEAN JAURES - 92063", "stop_name": "PLACE DE LA PAIX"}, "geometry": {"type": "Point", "coordinates": [2.2060310416999966, 48.86495981904738]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1244b6243ecf2af0eb52f3e783d65202b2db100a", "fields": {"departement": "92", "stop_lat": 48.86530961517471, "code_postal": "92063", "stop_lon": 2.1975025289849834, "coord": [48.86530961517471, 2.1975025289849834], "stop_id": 4024566, "stop_desc": "29 RUE DU LIEUTENANT COLONEL DE MONTBRISON - 92063", "stop_name": "VICTORIEN SARDOU"}, "geometry": {"type": "Point", "coordinates": [2.1975025289849834, 48.86530961517471]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fe00cdc4832cc663543c2c68cb9975e6e04b9b82", "fields": {"departement": "92", "stop_lat": 48.86548918638805, "code_postal": "92063", "stop_lon": 2.197352198011936, "coord": [48.86548918638805, 2.197352198011936], "stop_id": 4024567, "stop_desc": "30 RUE DU LIEUTENANT COLONEL DE MONTBRISON - 92063", "stop_name": "VICTORIEN SARDOU"}, "geometry": {"type": "Point", "coordinates": [2.197352198011936, 48.86548918638805]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f6c7475c952f93a341f49ebb51b8c63cf49ae7a9", "fields": {"departement": "92", "stop_lat": 48.86740720764922, "code_postal": "92063", "stop_lon": 2.2005484187598436, "coord": [48.86740720764922, 2.2005484187598436], "stop_id": 4024568, "stop_desc": "14 AVENUE DU MONT VALERIEN - 92063", "stop_name": "AVENUE DU MONT VALERIEN"}, "geometry": {"type": "Point", "coordinates": [2.2005484187598436, 48.86740720764922]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b5705ab49832cbf4c80b21d7d7ecfcd5993421e6", "fields": {"departement": "92", "stop_lat": 48.87299018255442, "code_postal": "92063", "stop_lon": 2.2021550049608285, "coord": [48.87299018255442, 2.2021550049608285], "stop_id": 4024572, "stop_desc": "25 RUE GALLIENI - 92063", "stop_name": "LES GERANIUMS"}, "geometry": {"type": "Point", "coordinates": [2.2021550049608285, 48.87299018255442]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "99cc570a01cfc82ff9889f967af8a04c6cafb921", "fields": {"departement": "92", "stop_lat": 48.87313363911074, "code_postal": "92063", "stop_lon": 2.201854892950592, "coord": [48.87313363911074, 2.201854892950592], "stop_id": 4024573, "stop_desc": "FACE 25 RUE GALLIENI - 92063", "stop_name": "LES GERANIUMS"}, "geometry": {"type": "Point", "coordinates": [2.201854892950592, 48.87313363911074]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5ef6e06c92ad0c686459092b4780ae1a9b50e68e", "fields": {"departement": "92", "stop_lat": 48.87744385318489, "code_postal": "92063", "stop_lon": 2.1986416205603554, "coord": [48.87744385318489, 2.1986416205603554], "stop_id": 4024576, "stop_desc": "125 RUE DANTON - 92063", "stop_name": "VOLTAIRE"}, "geometry": {"type": "Point", "coordinates": [2.1986416205603554, 48.87744385318489]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "acf75def7bde8ebe05d6ed32bb7b2109379cdb8a", "fields": {"departement": "92", "stop_lat": 48.878362895415854, "code_postal": "92063", "stop_lon": 2.1930389430283737, "coord": [48.878362895415854, 2.1930389430283737], "stop_id": 4024581, "stop_desc": "58 RUE DANTON - 92063", "stop_name": "DANTON-GAMBETTA"}, "geometry": {"type": "Point", "coordinates": [2.1930389430283737, 48.878362895415854]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "54f5a0da58ff96409f2f382c3a527ea0c38e472b", "fields": {"departement": "92", "stop_lat": 48.88033043782723, "code_postal": "92063", "stop_lon": 2.1852664446552246, "coord": [48.88033043782723, 2.1852664446552246], "stop_id": 4024584, "stop_desc": "FACE 16 BOULEVARD DE L'HOPITAL STELL - 92063", "stop_name": "LE GUE"}, "geometry": {"type": "Point", "coordinates": [2.1852664446552246, 48.88033043782723]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d25ea2a843bb23973c8c79edbf731802cfe612cb", "fields": {"departement": "92", "stop_lat": 48.88168609780237, "code_postal": "92063", "stop_lon": 2.1841587058389282, "coord": [48.88168609780237, 2.1841587058389282], "stop_id": 4024586, "stop_desc": "AVENUE DU MARECHAL JUIN - 92063", "stop_name": "BROSSOLETTE"}, "geometry": {"type": "Point", "coordinates": [2.1841587058389282, 48.88168609780237]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a3ebc4b28869aa960aec1c72f1b64f3a92502b08", "fields": {"departement": "92", "stop_lat": 48.88157784797817, "code_postal": "92063", "stop_lon": 2.1838456116907827, "coord": [48.88157784797817, 2.1838456116907827], "stop_id": 4024587, "stop_desc": "AVENUE DU MARECHAL JUIN - 92063", "stop_name": "BROSSOLETTE"}, "geometry": {"type": "Point", "coordinates": [2.1838456116907827, 48.88157784797817]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ed9e752d5dc68407f4f3bc14e3c8c0381622644c", "fields": {"departement": "75", "stop_lat": 48.8647536105073, "code_postal": "75116", "stop_lon": 2.2339299461805946, "coord": [48.8647536105073, 2.2339299461805946], "stop_id": 4024597, "stop_desc": "ROUTE DES MOULINS - 75116", "stop_name": "LES MOULINS-CAMPING"}, "geometry": {"type": "Point", "coordinates": [2.2339299461805946, 48.8647536105073]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b5b0a5826a5c2f02637ab8e1a80f47a18c45a6ab", "fields": {"departement": "92", "stop_lat": 48.88157784797817, "code_postal": "92063", "stop_lon": 2.1838456116907827, "coord": [48.88157784797817, 2.1838456116907827], "stop_id": 4024602, "stop_desc": "AVENUE DU MARECHAL JUIN - 92063", "stop_name": "BROSSOLETTE"}, "geometry": {"type": "Point", "coordinates": [2.1838456116907827, 48.88157784797817]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a893224ece9d7d436d1c3184b1dabb81cded7545", "fields": {"departement": "92", "stop_lat": 48.86548918638805, "code_postal": "92063", "stop_lon": 2.197352198011936, "coord": [48.86548918638805, 2.197352198011936], "stop_id": 4024612, "stop_desc": "30 RUE DU LIEUTENANT COLONEL DE MONTBRISON - 92063", "stop_name": "VICTORIEN SARDOU"}, "geometry": {"type": "Point", "coordinates": [2.197352198011936, 48.86548918638805]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4e6ea67097356cc919a4e98c54f1ffac32c9cc5e", "fields": {"departement": "92", "stop_lat": 48.86316108003911, "code_postal": "92073", "stop_lon": 2.2048913585176986, "coord": [48.86316108003911, 2.2048913585176986], "stop_id": 4024616, "stop_desc": "2 AVENUE G.STRESEMANN - 92073", "stop_name": "STRESEMANN"}, "geometry": {"type": "Point", "coordinates": [2.2048913585176986, 48.86316108003911]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c58f0089ce4d3dc85141bd0bbe5379e473c3665e", "fields": {"departement": "92", "stop_lat": 48.86458230488067, "code_postal": "92073", "stop_lon": 2.205991130357099, "coord": [48.86458230488067, 2.205991130357099], "stop_id": 4024617, "stop_desc": "PL DE LA PAIX - 92073", "stop_name": "PLACE DE LA PAIX"}, "geometry": {"type": "Point", "coordinates": [2.205991130357099, 48.86458230488067]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "72e8b3164002fd9f61daf75a3a2e9546863ed345", "fields": {"departement": "92", "stop_lat": 48.88628184978007, "code_postal": "92050", "stop_lon": 2.2098473916330406, "coord": [48.88628184978007, 2.2098473916330406], "stop_id": 4024684, "stop_desc": "128 AVENUE GEORGES CLEMENCEAU - 92050", "stop_name": "CLEMENCEAU - SADI CARNOT"}, "geometry": {"type": "Point", "coordinates": [2.2098473916330406, 48.88628184978007]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f680ec061b6f955f54f197866c4e4a6e7e7ea65b", "fields": {"departement": "92", "stop_lat": 48.886671501742555, "code_postal": "92050", "stop_lon": 2.2045451337846096, "coord": [48.886671501742555, 2.2045451337846096], "stop_id": 4024686, "stop_desc": "FACE AU 103 AVENUE GEORGES CLEMENCEAU - 92050", "stop_name": "LA SOURCE"}, "geometry": {"type": "Point", "coordinates": [2.2045451337846096, 48.886671501742555]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a3d00fa62df81bc212a4108948a25eca22ec0bb3", "fields": {"departement": "92", "stop_lat": 48.88037172553721, "code_postal": "92063", "stop_lon": 2.1824320382519415, "coord": [48.88037172553721, 2.1824320382519415], "stop_id": 4024696, "stop_desc": "81 AVENUE PAUL DOUMER - 92063", "stop_name": "RUEIL - VILLE"}, "geometry": {"type": "Point", "coordinates": [2.1824320382519415, 48.88037172553721]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "83ec907c163fc03445b1519e29aeceeebc7192af", "fields": {"departement": "92", "stop_lat": 48.8743834000785, "code_postal": "92063", "stop_lon": 2.167203768103976, "coord": [48.8743834000785, 2.167203768103976], "stop_id": 4024702, "stop_desc": "FACE 268 AVENUE NAPOLEON BONAPARTE - 92063", "stop_name": "LE CHATEAU"}, "geometry": {"type": "Point", "coordinates": [2.167203768103976, 48.8743834000785]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9027d22809d2af0a465ddffc4a108341664b6ad3", "fields": {"departement": "92", "stop_lat": 48.873220515074514, "code_postal": "92063", "stop_lon": 2.164755172401504, "coord": [48.873220515074514, 2.164755172401504], "stop_id": 4024704, "stop_desc": "205 AVENUE NAPOLEON BONAPARTE - 92063", "stop_name": "ECOLE LA MALMAISON"}, "geometry": {"type": "Point", "coordinates": [2.164755172401504, 48.873220515074514]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "04bc7519b225d1d35e6625b3190837606953a46c", "fields": {"departement": "92", "stop_lat": 48.87182244443962, "code_postal": "92063", "stop_lon": 2.1613129182202226, "coord": [48.87182244443962, 2.1613129182202226], "stop_id": 4024705, "stop_desc": "298 AVENUE NAPOLEON BONAPARTE - 92063", "stop_name": "LE PARC"}, "geometry": {"type": "Point", "coordinates": [2.1613129182202226, 48.87182244443962]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "376efd58a00055f0c727fb19a4127bbaab1aabde", "fields": {"departement": "78", "stop_lat": 48.86815959967836, "code_postal": "78092", "stop_lon": 2.1463943482744297, "coord": [48.86815959967836, 2.1463943482744297], "stop_id": 4024710, "stop_desc": "FACE 16 RUE YVAN TOURGUENIEV - 78092", "stop_name": "LA CHAUSSEE - MUSEE TOURGUENIEV"}, "geometry": {"type": "Point", "coordinates": [2.1463943482744297, 48.86815959967836]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f73c5fb66113073e9706237a6f0821bb1a6e837b", "fields": {"departement": "78", "stop_lat": 48.86793504752743, "code_postal": "78092", "stop_lon": 2.146476913515293, "coord": [48.86793504752743, 2.146476913515293], "stop_id": 4024711, "stop_desc": "16 RUE YVAN TOURGUENIEV - 78092", "stop_name": "LA CHAUSSEE - MUSEE TOURGUENIEV"}, "geometry": {"type": "Point", "coordinates": [2.146476913515293, 48.86793504752743]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ed28a2abeee4050bb0ade2d94b1f892c46dc39e6", "fields": {"departement": "78", "stop_lat": 48.88012066298908, "code_postal": "78502", "stop_lon": 2.109927135949582, "coord": [48.88012066298908, 2.109927135949582], "stop_id": 4024721, "stop_desc": "18 AVENUE DE SAINT-GERMAIN - 78502", "stop_name": "JAURES"}, "geometry": {"type": "Point", "coordinates": [2.109927135949582, 48.88012066298908]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7bae78438c8c4934053b870e5b82e5b5516d6cbf", "fields": {"departement": "78", "stop_lat": 48.88305322404613, "code_postal": "78502", "stop_lon": 2.106657396453177, "coord": [48.88305322404613, 2.106657396453177], "stop_id": 4024724, "stop_desc": "29 ROUTE DE SAINT-GERMAIN - 78502", "stop_name": "VAL ANDRE"}, "geometry": {"type": "Point", "coordinates": [2.106657396453177, 48.88305322404613]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d7397c13287e1683a5016ec59d51fa557edb353a", "fields": {"departement": "78", "stop_lat": 48.89390376925413, "code_postal": "78481", "stop_lon": 2.099017227099798, "coord": [48.89390376925413, 2.099017227099798], "stop_id": 4024728, "stop_desc": "68 AVENUE DU GENERAL LECLERC - 78481", "stop_name": "GIRAUD TEULON"}, "geometry": {"type": "Point", "coordinates": [2.099017227099798, 48.89390376925413]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f65601d32835f5aeb256466c4375a8c461e0656c", "fields": {"departement": "92", "stop_lat": 48.88402421063552, "code_postal": "92050", "stop_lon": 2.192491726617203, "coord": [48.88402421063552, 2.192491726617203], "stop_id": 4024736, "stop_desc": "73 AVENUE DU MARECHAL JOFFRE - 92050", "stop_name": "BOULEVARD NATIONAL"}, "geometry": {"type": "Point", "coordinates": [2.192491726617203, 48.88402421063552]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1e77841b73ce3836910c4bf3bbbc5ad9b31024ff", "fields": {"departement": "92", "stop_lat": 48.88875088546612, "code_postal": "92062", "stop_lon": 2.2353267360720896, "coord": [48.88875088546612, 2.2353267360720896], "stop_id": 4024738, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 92062", "stop_name": "LES BOUVETS"}, "geometry": {"type": "Point", "coordinates": [2.2353267360720896, 48.88875088546612]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "550ed21dacdb3c9df1b471c0fbf3b887037e3b2f", "fields": {"departement": "92", "stop_lat": 48.886684248614685, "code_postal": "92050", "stop_lon": 2.2079657352696955, "coord": [48.886684248614685, 2.2079657352696955], "stop_id": 4024744, "stop_desc": "119 AVENUE GEORGES CLEMENCEAU - 92050", "stop_name": "CLEMENCEAU - SADI CARNOT"}, "geometry": {"type": "Point", "coordinates": [2.2079657352696955, 48.886684248614685]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b7027476f95a65e107c11bafcf6490d47100a1cb", "fields": {"departement": "92", "stop_lat": 48.88703095931309, "code_postal": "92050", "stop_lon": 2.2045169572232255, "coord": [48.88703095931309, 2.2045169572232255], "stop_id": 4024745, "stop_desc": "FACE 48 AVENUE GEORGES CLEMENCEAU - 92050", "stop_name": "LA SOURCE"}, "geometry": {"type": "Point", "coordinates": [2.2045169572232255, 48.88703095931309]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d2a8c865247d720541bded2cefb24f85cf738a38", "fields": {"departement": "92", "stop_lat": 48.89151199940274, "code_postal": "92062", "stop_lon": 2.2377473188944625, "coord": [48.89151199940274, 2.2377473188944625], "stop_id": 4024758, "stop_desc": "GARE ROUTIERE - 92062", "stop_name": "LA DEFENSE-METRO-RER-TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.2377473188944625, 48.89151199940274]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ad0e12c35f15b811dd53a6c393ee9935020328a0", "fields": {"departement": "92", "stop_lat": 48.886684248614685, "code_postal": "92050", "stop_lon": 2.2079657352696955, "coord": [48.886684248614685, 2.2079657352696955], "stop_id": 4024771, "stop_desc": "119 AVENUE GEORGES CLEMENCEAU - 92050", "stop_name": "CLEMENCEAU - SADI CARNOT"}, "geometry": {"type": "Point", "coordinates": [2.2079657352696955, 48.886684248614685]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "26cf2e76c6af4c4aabf05a9818e0ada90de12b04", "fields": {"departement": "78", "stop_lat": 48.89703299526433, "code_postal": "78551", "stop_lon": 2.095390681983472, "coord": [48.89703299526433, 2.095390681983472], "stop_id": 4024777, "stop_desc": "FACE 2 PLACE ANDRE MALRAUX - 78551", "stop_name": "SAINT-GERMAIN-EN-LAYE RER"}, "geometry": {"type": "Point", "coordinates": [2.095390681983472, 48.89703299526433]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "61fff7585dc99e220868d12c5905ffe62fc52b47", "fields": {"departement": "78", "stop_lat": 48.87919658725736, "code_postal": "78502", "stop_lon": 2.1107760059262253, "coord": [48.87919658725736, 2.1107760059262253], "stop_id": 4024782, "stop_desc": "AVENUE SIMON VOUET - 78502", "stop_name": "JAURES"}, "geometry": {"type": "Point", "coordinates": [2.1107760059262253, 48.87919658725736]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "946ed7ab05a691f0b2ff0790b4e0c0f6b556e2d6", "fields": {"departement": "92", "stop_lat": 48.89490027911459, "code_postal": "92026", "stop_lon": 2.2493264625537774, "coord": [48.89490027911459, 2.2493264625537774], "stop_id": 4024795, "stop_desc": "6 PLACE CHARRAS - 92026", "stop_name": "PLACE CHARRAS"}, "geometry": {"type": "Point", "coordinates": [2.2493264625537774, 48.89490027911459]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9f5e9622569192620834ab73713b7a2e1369d25f", "fields": {"departement": "92", "stop_lat": 48.89922884988634, "code_postal": "92026", "stop_lon": 2.2575115366351146, "coord": [48.89922884988634, 2.2575115366351146], "stop_id": 4024801, "stop_desc": "FACE 4 BOULEVARD ARISTIDE BRIAND - 92026", "stop_name": "STADE DE COURBEVOIE"}, "geometry": {"type": "Point", "coordinates": [2.2575115366351146, 48.89922884988634]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bfd2be574929d12448cbda905d0b06a3f8af1579", "fields": {"departement": "92", "stop_lat": 48.89736347692711, "code_postal": "92044", "stop_lon": 2.2800325202686906, "coord": [48.89736347692711, 2.2800325202686906], "stop_id": 4024810, "stop_desc": "RUE ANATOLE FRANCE - 92044", "stop_name": "PONT DE LEVALLOIS-METRO"}, "geometry": {"type": "Point", "coordinates": [2.2800325202686906, 48.89736347692711]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b1a7862e6e01bbc267bfd2165b8356198d4fec03", "fields": {"departement": "92", "stop_lat": 48.89638495152772, "code_postal": "92026", "stop_lon": 2.251791075763871, "coord": [48.89638495152772, 2.251791075763871], "stop_id": 4024826, "stop_desc": "RUE BAUDIN - 92026", "stop_name": "ALMA BAUDIN"}, "geometry": {"type": "Point", "coordinates": [2.251791075763871, 48.89638495152772]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "238bd2c031fcc6c400cac1b58ae16abafbb0a9d6", "fields": {"departement": "92", "stop_lat": 48.89730498221079, "code_postal": "92026", "stop_lon": 2.256587602249458, "coord": [48.89730498221079, 2.256587602249458], "stop_id": 4024827, "stop_desc": "14-16 RUE DE COLOMBES - 92026", "stop_name": "HEROLD - MAIRIE DE COURBEVOIE"}, "geometry": {"type": "Point", "coordinates": [2.256587602249458, 48.89730498221079]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fcd7886e3834c6664e3809599343f35a53bca211", "fields": {"departement": "92", "stop_lat": 48.902456168621285, "code_postal": "92026", "stop_lon": 2.25893794686687, "coord": [48.902456168621285, 2.25893794686687], "stop_id": 4024833, "stop_desc": "155 BOULEVARD DE VERDUN - 92026", "stop_name": "VERDUN - RUE LATERALE"}, "geometry": {"type": "Point", "coordinates": [2.25893794686687, 48.902456168621285]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ead1f54a4f649810f77b969f7c70e464a12229c5", "fields": {"departement": "92", "stop_lat": 48.89192062226174, "code_postal": "92026", "stop_lon": 2.2429120742176076, "coord": [48.89192062226174, 2.2429120742176076], "stop_id": 4024842, "stop_desc": "AVENUE ALBERT GLEIZES - 92026", "stop_name": "GAMBETTA"}, "geometry": {"type": "Point", "coordinates": [2.2429120742176076, 48.89192062226174]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5987be1294566da0231cb76a43d3fb5a7fff1316", "fields": {"departement": "92", "stop_lat": 48.88485158543995, "code_postal": "92062", "stop_lon": 2.226544642763386, "coord": [48.88485158543995, 2.226544642763386], "stop_id": 4024849, "stop_desc": "ROND-POINT DES BERGERES - 92062", "stop_name": "LES BERGERES"}, "geometry": {"type": "Point", "coordinates": [2.226544642763386, 48.88485158543995]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cb5f8f367eb7ec76dcfc3b1af733715145f6f028", "fields": {"departement": "92", "stop_lat": 48.863798484438846, "code_postal": "92073", "stop_lon": 2.2125725447781606, "coord": [48.863798484438846, 2.2125725447781606], "stop_id": 4024859, "stop_desc": "21 BOULEVARD DU MARECHAL DE LATTRE DE TASSIGNY - 92073", "stop_name": "EDOUARD VAILLANT"}, "geometry": {"type": "Point", "coordinates": [2.2125725447781606, 48.863798484438846]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7665db23d4a3ba33e3af0000a935dca536d9a7ae", "fields": {"departement": "92", "stop_lat": 48.85347506625669, "code_postal": "92064", "stop_lon": 2.215607225121465, "coord": [48.85347506625669, 2.215607225121465], "stop_id": 4024863, "stop_desc": "19 RUE DU MONT VALERIEN - 92064", "stop_name": "MARIE BONAPARTE"}, "geometry": {"type": "Point", "coordinates": [2.215607225121465, 48.85347506625669]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "59e70a49b9d7d1516547ff7c025bfa86b25385f2", "fields": {"departement": "92", "stop_lat": 48.8457913597342, "code_postal": "92064", "stop_lon": 2.216197168830745, "coord": [48.8457913597342, 2.216197168830745], "stop_id": 4024866, "stop_desc": "6 RUE COUTUREAU - 92064", "stop_name": "GARE DE SAINT-CLOUD"}, "geometry": {"type": "Point", "coordinates": [2.216197168830745, 48.8457913597342]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "452548dcba24b1b3749e536d95d22c35fe03defb", "fields": {"departement": "92", "stop_lat": 48.84806176275269, "code_postal": "92064", "stop_lon": 2.204534968348681, "coord": [48.84806176275269, 2.204534968348681], "stop_id": 4024871, "stop_desc": "FACE 113 AVENUE DU MARECHAL FOCH - 92064", "stop_name": "CIMETIERE DE SAINT-CLOUD"}, "geometry": {"type": "Point", "coordinates": [2.204534968348681, 48.84806176275269]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3b64963049acd74314085f134fbbe326743ec2c8", "fields": {"departement": "92", "stop_lat": 48.84512885770151, "code_postal": "92033", "stop_lon": 2.186908313463886, "coord": [48.84512885770151, 2.186908313463886], "stop_id": 4024886, "stop_desc": "FACE 13 RUE DE SURESNES - 92033", "stop_name": "PISCINE"}, "geometry": {"type": "Point", "coordinates": [2.186908313463886, 48.84512885770151]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9e77db71ee3c93f49b20c49c9402653921268feb", "fields": {"departement": "92", "stop_lat": 48.84280932265978, "code_postal": "92033", "stop_lon": 2.186315909292744, "coord": [48.84280932265978, 2.186315909292744], "stop_id": 4024889, "stop_desc": "23 AVENUE DU MARECHAL FOCH - 92033", "stop_name": "MAIRIE DE GARCHES"}, "geometry": {"type": "Point", "coordinates": [2.186315909292744, 48.84280932265978]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5161af82b14b4c7fa6559ead7d8e7aadf51001af", "fields": {"departement": "92", "stop_lat": 48.838351489157375, "code_postal": "92047", "stop_lon": 2.186315262557498, "coord": [48.838351489157375, 2.186315262557498], "stop_id": 4024897, "stop_desc": "FACE 2 BOULEVARD RAYMOND POINCARE - 92047", "stop_name": "GARE DE GARCHES - MARNES LA COQUETTE"}, "geometry": {"type": "Point", "coordinates": [2.186315262557498, 48.838351489157375]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8d5724a3b6d8177957e19a75ca5879b20dfcb0ca", "fields": {"departement": "92", "stop_lat": 48.83983391534245, "code_postal": "92033", "stop_lon": 2.1859024780704224, "coord": [48.83983391534245, 2.1859024780704224], "stop_id": 4024898, "stop_desc": "32 AVENUE JOFFRE - 92033", "stop_name": "JOFFRE"}, "geometry": {"type": "Point", "coordinates": [2.1859024780704224, 48.83983391534245]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "389513308291ff92ff6122c62d253ed3062faf17", "fields": {"departement": "92", "stop_lat": 48.8804507608198, "code_postal": "92073", "stop_lon": 2.2202041476469727, "coord": [48.8804507608198, 2.2202041476469727], "stop_id": 4024903, "stop_desc": "45 ROUTE DES FUSILLES DE LA RESISTANCE 1940-1944 - 92073", "stop_name": "LIBERTE - PLAIDEURS"}, "geometry": {"type": "Point", "coordinates": [2.2202041476469727, 48.8804507608198]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bff305328fd89295a457d2650e6417343af36a66", "fields": {"departement": "92", "stop_lat": 48.916200566507484, "code_postal": "92050", "stop_lon": 2.2191688654086295, "coord": [48.916200566507484, 2.2191688654086295], "stop_id": 4024909, "stop_desc": "33 RUE DES HAUTES PATURES - 92050", "stop_name": "PERIPARC"}, "geometry": {"type": "Point", "coordinates": [2.2191688654086295, 48.916200566507484]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "122af559e0419e64b9209b2614d53b84b74396ff", "fields": {"departement": "92", "stop_lat": 48.91347411135591, "code_postal": "92050", "stop_lon": 2.2157935831047615, "coord": [48.91347411135591, 2.2157935831047615], "stop_id": 4024912, "stop_desc": "FACE 11 RUE DES HAUTES PATURES - 92050", "stop_name": "RUE DES HAUTES PATURES N0 11"}, "geometry": {"type": "Point", "coordinates": [2.2157935831047615, 48.91347411135591]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a560ffdb60e79d5b1fa858a524cb3e071dcfff2c", "fields": {"departement": "92", "stop_lat": 48.90813404380376, "code_postal": "92050", "stop_lon": 2.214074626600196, "coord": [48.90813404380376, 2.214074626600196], "stop_id": 4024918, "stop_desc": "FACE 303 AVENUE DE LA REPUBLIQUE - 92050", "stop_name": "LES PAQUERETTES"}, "geometry": {"type": "Point", "coordinates": [2.214074626600196, 48.90813404380376]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cf6ada595b67cef400c12a9554fd9a2116f596bc", "fields": {"departement": "92", "stop_lat": 48.904554107073814, "code_postal": "92050", "stop_lon": 2.219931574769915, "coord": [48.904554107073814, 2.219931574769915], "stop_id": 4024923, "stop_desc": "FACE 14 RUE NOEL PONS - 92050", "stop_name": "NOEL PONS"}, "geometry": {"type": "Point", "coordinates": [2.219931574769915, 48.904554107073814]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4e3e08ec5f1014b65676f7afaad32ac760f6d0e2", "fields": {"departement": "91", "stop_lat": 48.7405950939472, "code_postal": "91645", "stop_lon": 2.256260015531992, "coord": [48.7405950939472, 2.256260015531992], "stop_id": 5231703, "stop_desc": "174 RUE D'ESTIENNE D'ORVES - 91645", "stop_name": "MOULIN DE GRAIS"}, "geometry": {"type": "Point", "coordinates": [2.256260015531992, 48.7405950939472]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a241831bcf04ee8367b014df3089ba2f28cf1406", "fields": {"departement": "92", "stop_lat": 48.75764035501477, "code_postal": "92002", "stop_lon": 2.2775762951547307, "coord": [48.75764035501477, 2.2775762951547307], "stop_id": 5231714, "stop_desc": "237 AVENUE DU BOIS DE VERRIERES - 92002", "stop_name": "LES GODETS"}, "geometry": {"type": "Point", "coordinates": [2.2775762951547307, 48.75764035501477]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6e6b195811998b085bc7f627d4482f948020cf24", "fields": {"departement": "92", "stop_lat": 48.7556040482806, "code_postal": "92002", "stop_lon": 2.2861698100143, "coord": [48.7556040482806, 2.2861698100143], "stop_id": 5231719, "stop_desc": "FACE 133 AVENUE DU BOIS DE VERRIERES - 92002", "stop_name": "JULIEN PERIN"}, "geometry": {"type": "Point", "coordinates": [2.2861698100143, 48.7556040482806]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "633e863f3ce1f18d6f1d4254e24f17d30cc9791c", "fields": {"departement": "92", "stop_lat": 48.75433883602628, "code_postal": "92002", "stop_lon": 2.29136369501317, "coord": [48.75433883602628, 2.29136369501317], "stop_id": 5231720, "stop_desc": "AVENUE DU BOIS DE VERRIERES - 92002", "stop_name": "FRANCOIS MOLE"}, "geometry": {"type": "Point", "coordinates": [2.29136369501317, 48.75433883602628]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a087927aedb7d6850a2e6bf081bcd48a475bbe65", "fields": {"departement": "92", "stop_lat": 48.755050861485685, "code_postal": "92002", "stop_lon": 2.296759680994518, "coord": [48.755050861485685, 2.296759680994518], "stop_id": 5231723, "stop_desc": "34 RUE MAURICE LABROUSSE - 92002", "stop_name": "THEATRE-MAIRIE"}, "geometry": {"type": "Point", "coordinates": [2.296759680994518, 48.755050861485685]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fa9ce3c8fadc5188c0ed4f4f25ae839fbc9c8fb3", "fields": {"departement": "92", "stop_lat": 48.754872582833805, "code_postal": "92002", "stop_lon": 2.3013815897668075, "coord": [48.754872582833805, 2.3013815897668075], "stop_id": 5231724, "stop_desc": "FACE 11 BD PIERRE BROSSOLETTE - 92002", "stop_name": "ANTONY RER"}, "geometry": {"type": "Point", "coordinates": [2.3013815897668075, 48.754872582833805]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ad64923f90f63a7798a81cb6f035e10d3104be1b", "fields": {"departement": "92", "stop_lat": 48.75451292849927, "code_postal": "92002", "stop_lon": 2.300960444258561, "coord": [48.75451292849927, 2.300960444258561], "stop_id": 5231725, "stop_desc": "FACE 20 R VELPEAU - 92002", "stop_name": "ANTONY RER"}, "geometry": {"type": "Point", "coordinates": [2.300960444258561, 48.75451292849927]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bd896912b584bce96e3523d8ad13373673780915", "fields": {"departement": "91", "stop_lat": 48.74608343692979, "code_postal": "91645", "stop_lon": 2.2648002954070896, "coord": [48.74608343692979, 2.2648002954070896], "stop_id": 5231728, "stop_desc": "1 AVENUE GENERAL LECLERC - 91645", "stop_name": "D'ESTIENNE D'ORVES - GENERAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.2648002954070896, 48.74608343692979]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8a9f5d0678d711e958f91ab1e6b71be584d3f8a2", "fields": {"departement": "92", "stop_lat": 48.89476489991657, "code_postal": "92050", "stop_lon": 2.2270141509442976, "coord": [48.89476489991657, 2.2270141509442976], "stop_id": 5231841, "stop_desc": "34 BD DE PESARO - 92050", "stop_name": "LES TERRASSES"}, "geometry": {"type": "Point", "coordinates": [2.2270141509442976, 48.89476489991657]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b2bfeaa970b63604e5a747ad697a8da3197058e5", "fields": {"departement": "92", "stop_lat": 48.742035863985336, "code_postal": "92002", "stop_lon": 2.2965387875231467, "coord": [48.742035863985336, 2.2965387875231467], "stop_id": 5244885, "stop_desc": "FACE 3 RUE DE MASSY - 92002", "stop_name": "RUE DE MASSY-MIRABEAU"}, "geometry": {"type": "Point", "coordinates": [2.2965387875231467, 48.742035863985336]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a26d6d0d6794485b64377ab77c2441e35f4f21a9", "fields": {"departement": "92", "stop_lat": 48.73972316332122, "code_postal": "92002", "stop_lon": 2.2892566374363725, "coord": [48.73972316332122, 2.2892566374363725], "stop_id": 5244886, "stop_desc": "RUE DE MASSY - 92002", "stop_name": "LES BACONNETS-RER"}, "geometry": {"type": "Point", "coordinates": [2.2892566374363725, 48.73972316332122]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4fd3c7a7d8d1fb50b44ff8dc79e13be49e4a1283", "fields": {"departement": "92", "stop_lat": 48.740212913242345, "code_postal": "92002", "stop_lon": 2.301731445240281, "coord": [48.740212913242345, 2.301731445240281], "stop_id": 5244893, "stop_desc": "FACE 16 AVENUE DU PRESIDENT KENNEDY - 92002", "stop_name": "PETIT MASSY"}, "geometry": {"type": "Point", "coordinates": [2.301731445240281, 48.740212913242345]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5ecff6f07cf0d0a64cb4f46ee7ea5b2dd92cd2f3", "fields": {"departement": "92", "stop_lat": 48.74533920425225, "code_postal": "92002", "stop_lon": 2.3137831122735153, "coord": [48.74533920425225, 2.3137831122735153], "stop_id": 5244896, "stop_desc": "5 RUE DES RABATS - 92002", "stop_name": "LES RABATS - ARMAND GUILLEBAUD"}, "geometry": {"type": "Point", "coordinates": [2.3137831122735153, 48.74533920425225]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "19706385ad09bb0e9bb61901dcf2070e4068e06e", "fields": {"departement": "92", "stop_lat": 48.74352305216486, "code_postal": "92002", "stop_lon": 2.311242513972398, "coord": [48.74352305216486, 2.311242513972398], "stop_id": 5244900, "stop_desc": "70 RUE DES RABATS - 92002", "stop_name": "AUBEPINE"}, "geometry": {"type": "Point", "coordinates": [2.311242513972398, 48.74352305216486]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3b70dc881f2ebc7cbcfea6c12b04b638ad34c6d2", "fields": {"departement": "92", "stop_lat": 48.742035863985336, "code_postal": "92002", "stop_lon": 2.2965387875231467, "coord": [48.742035863985336, 2.2965387875231467], "stop_id": 5244904, "stop_desc": "FACE 3 RUE DE MASSY - 92002", "stop_name": "RUE DE MASSY-MIRABEAU"}, "geometry": {"type": "Point", "coordinates": [2.2965387875231467, 48.742035863985336]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cec6484cc96cc0cde3cb10b4ad2f65b48da90e5f", "fields": {"departement": "92", "stop_lat": 48.73830337021351, "code_postal": "92002", "stop_lon": 2.2901412402935093, "coord": [48.73830337021351, 2.2901412402935093], "stop_id": 5244906, "stop_desc": "FACE 18 RUE DE LA MEDITERRANEE - 92002", "stop_name": "CENTRE COMMERCIAL DES BACONNETS"}, "geometry": {"type": "Point", "coordinates": [2.2901412402935093, 48.73830337021351]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8cb0e6d8952dda0b2f654ef32452207151ed5144", "fields": {"departement": "92", "stop_lat": 48.938632104573415, "code_postal": "92036", "stop_lon": 2.2808872655868906, "coord": [48.938632104573415, 2.2808872655868906], "stop_id": 5244919, "stop_desc": "ROUTE PRINCIPALE DU PORT - 92036", "stop_name": "BASSIN N0 2"}, "geometry": {"type": "Point", "coordinates": [2.2808872655868906, 48.938632104573415]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "186cd88970cbebee0fc7a6e00564564d04c94ae2", "fields": {"departement": "92", "stop_lat": 48.94108199634376, "code_postal": "92036", "stop_lon": 2.2940085161142836, "coord": [48.94108199634376, 2.2940085161142836], "stop_id": 5244924, "stop_desc": "ROUTE PRINCIPALE DU PORT - 92036", "stop_name": "DARSE N0 5"}, "geometry": {"type": "Point", "coordinates": [2.2940085161142836, 48.94108199634376]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "996af55569d4bf5e4cad07823e057c8cefedfbf2", "fields": {"departement": "92", "stop_lat": 48.94430863599829, "code_postal": "92036", "stop_lon": 2.295069988612095, "coord": [48.94430863599829, 2.295069988612095], "stop_id": 5244927, "stop_desc": "ROUTE DU BASSIN NUMERO 6 - 92036", "stop_name": "BASSIN N0 5"}, "geometry": {"type": "Point", "coordinates": [2.295069988612095, 48.94430863599829]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "97e66b9d939efc65a43961436f376c023232e191", "fields": {"departement": "92", "stop_lat": 48.94832048428063, "code_postal": "92036", "stop_lon": 2.282213851657548, "coord": [48.94832048428063, 2.282213851657548], "stop_id": 5244934, "stop_desc": "FACE 39 RTE DU BASSIN NUMERO 6 - 92036", "stop_name": "ROND-POINT SEINE"}, "geometry": {"type": "Point", "coordinates": [2.282213851657548, 48.94832048428063]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2d79477fb411973f4bdd001de0600971438c150c", "fields": {"departement": "92", "stop_lat": 48.94759789901477, "code_postal": "92036", "stop_lon": 2.2953674772990853, "coord": [48.94759789901477, 2.2953674772990853], "stop_id": 5244935, "stop_desc": "23 RTE DU BASSIN NUMERO 6 - 92036", "stop_name": "BASSIN N0 6"}, "geometry": {"type": "Point", "coordinates": [2.2953674772990853, 48.94759789901477]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fd095bc9273f3b7669ed3a830fc77abb94109240", "fields": {"departement": "92", "stop_lat": 48.9374526254832, "code_postal": "92036", "stop_lon": 2.2764005385463992, "coord": [48.9374526254832, 2.2764005385463992], "stop_id": 5244941, "stop_desc": "ROUTE PRINCIPALE DU PORT - 92036", "stop_name": "CENTRE DE VIE"}, "geometry": {"type": "Point", "coordinates": [2.2764005385463992, 48.9374526254832]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bbcf496c4370d7a03279d70880872437ce502e1e", "fields": {"departement": "92", "stop_lat": 48.93892783859855, "code_postal": "92036", "stop_lon": 2.279154440214823, "coord": [48.93892783859855, 2.279154440214823], "stop_id": 5244942, "stop_desc": "0 RTE PRINCIPALE DU PORT - 92036", "stop_name": "DEBARCADERE"}, "geometry": {"type": "Point", "coordinates": [2.279154440214823, 48.93892783859855]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "991c56cf5080be76111218256459a74cd4786026", "fields": {"departement": "92", "stop_lat": 48.93892783859855, "code_postal": "92036", "stop_lon": 2.279154440214823, "coord": [48.93892783859855, 2.279154440214823], "stop_id": 5244943, "stop_desc": "0 RTE PRINCIPALE DU PORT - 92036", "stop_name": "DEBARCADERE"}, "geometry": {"type": "Point", "coordinates": [2.279154440214823, 48.93892783859855]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "34dfc20c47053d68c8772bd26c573c7f643c2467", "fields": {"departement": "92", "stop_lat": 48.94299631080269, "code_postal": "92036", "stop_lon": 2.2741293126156603, "coord": [48.94299631080269, 2.2741293126156603], "stop_id": 5244944, "stop_desc": "12 RTE DU MOLE 2 ET 3 - 92036", "stop_name": "OSCARO"}, "geometry": {"type": "Point", "coordinates": [2.2741293126156603, 48.94299631080269]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e95bea22de91d73e1506cc55041804f309c8c92f", "fields": {"departement": "92", "stop_lat": 48.93956954489779, "code_postal": "92036", "stop_lon": 2.287188815748167, "coord": [48.93956954489779, 2.287188815748167], "stop_id": 5244948, "stop_desc": "ROUTE PRINCIPALE DU PORT - 92036", "stop_name": "MOLE CENTRAL"}, "geometry": {"type": "Point", "coordinates": [2.287188815748167, 48.93956954489779]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8dbf4c7b2039ed9e6f5b9e1b5d9a9e516a1a8330", "fields": {"departement": "92", "stop_lat": 48.94733982923478, "code_postal": "92036", "stop_lon": 2.279881774405817, "coord": [48.94733982923478, 2.279881774405817], "stop_id": 5244951, "stop_desc": "0 RTE DE LA SEINE - 92036", "stop_name": "CORUS"}, "geometry": {"type": "Point", "coordinates": [2.279881774405817, 48.94733982923478]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3ec078f35a388983708aa52caf15a3f560c7cd9b", "fields": {"departement": "92", "stop_lat": 48.94108199634376, "code_postal": "92036", "stop_lon": 2.2940085161142836, "coord": [48.94108199634376, 2.2940085161142836], "stop_id": 5244952, "stop_desc": "ROUTE PRINCIPALE DU PORT - 92036", "stop_name": "DARSE N0 5"}, "geometry": {"type": "Point", "coordinates": [2.2940085161142836, 48.94108199634376]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ac37654f23d8f961b90036827cf3ac674470a0ee", "fields": {"departement": "92", "stop_lat": 48.94635817395166, "code_postal": "92036", "stop_lon": 2.2966646333099496, "coord": [48.94635817395166, 2.2966646333099496], "stop_id": 5244963, "stop_desc": "23 CHEMIN DES PETITS MARAIS - 92036", "stop_name": "CHEMIN DES PETITS MARAIS"}, "geometry": {"type": "Point", "coordinates": [2.2966646333099496, 48.94635817395166]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6a7394bfb1108229856f2deb7505608e9d1e2546", "fields": {"departement": "92", "stop_lat": 48.93350110162918, "code_postal": "92036", "stop_lon": 2.3069731582744093, "coord": [48.93350110162918, 2.3069731582744093], "stop_id": 5244966, "stop_desc": "0 AV DU GENERAL DE GAULLE - 92036", "stop_name": "GENNEVILLIERS RER"}, "geometry": {"type": "Point", "coordinates": [2.3069731582744093, 48.93350110162918]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "841aea0d383f26dccc1ca28604cb5b0968b6d927", "fields": {"departement": "92", "stop_lat": 48.936126652714115, "code_postal": "92036", "stop_lon": 2.2674399450981904, "coord": [48.936126652714115, 2.2674399450981904], "stop_id": 5244970, "stop_desc": "62 ROUTE PRINCIPALE DU PORT - 92036", "stop_name": "DIRECTION DU PORT"}, "geometry": {"type": "Point", "coordinates": [2.2674399450981904, 48.936126652714115]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e05594470b0504eb47ad42d57c103601da0eca60", "fields": {"departement": "92", "stop_lat": 48.936126652714115, "code_postal": "92036", "stop_lon": 2.2674399450981904, "coord": [48.936126652714115, 2.2674399450981904], "stop_id": 5244971, "stop_desc": "62 ROUTE PRINCIPALE DU PORT - 92036", "stop_name": "DIRECTION DU PORT"}, "geometry": {"type": "Point", "coordinates": [2.2674399450981904, 48.936126652714115]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a50a160f4c874536666cf1b8ba387b41c8f9a2bb", "fields": {"departement": "92", "stop_lat": 48.9374526254832, "code_postal": "92036", "stop_lon": 2.2764005385463992, "coord": [48.9374526254832, 2.2764005385463992], "stop_id": 5244976, "stop_desc": "ROUTE PRINCIPALE DU PORT - 92036", "stop_name": "CENTRE DE VIE"}, "geometry": {"type": "Point", "coordinates": [2.2764005385463992, 48.9374526254832]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a919c354fe42731a7e72436922187503dd02711b", "fields": {"departement": "92", "stop_lat": 48.938632104573415, "code_postal": "92036", "stop_lon": 2.2808872655868906, "coord": [48.938632104573415, 2.2808872655868906], "stop_id": 5244985, "stop_desc": "ROUTE PRINCIPALE DU PORT - 92036", "stop_name": "BASSIN N0 2"}, "geometry": {"type": "Point", "coordinates": [2.2808872655868906, 48.938632104573415]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ec7db914a39081c1b2895e9fce76070bb880a824", "fields": {"departement": "92", "stop_lat": 48.94139654436982, "code_postal": "92036", "stop_lon": 2.2940355382058546, "coord": [48.94139654436982, 2.2940355382058546], "stop_id": 5244989, "stop_desc": "ROUTE PRINCIPALE DU PORT - 92036", "stop_name": "DARSE N0 5"}, "geometry": {"type": "Point", "coordinates": [2.2940355382058546, 48.94139654436982]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4b3f08bcfc314d758eeb7b61ecba9c5b9af718d2", "fields": {"departement": "92", "stop_lat": 48.944838932927986, "code_postal": "92036", "stop_lon": 2.2952878495686044, "coord": [48.944838932927986, 2.2952878495686044], "stop_id": 5244990, "stop_desc": "ROUTE DU BASSIN NUMERO 6 - 92036", "stop_name": "BASSIN N0 5"}, "geometry": {"type": "Point", "coordinates": [2.2952878495686044, 48.944838932927986]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "62ef98ef849635291d1660bf131a972c20835c81", "fields": {"departement": "92", "stop_lat": 48.94649287294931, "code_postal": "92036", "stop_lon": 2.296364365181311, "coord": [48.94649287294931, 2.296364365181311], "stop_id": 5244993, "stop_desc": "FACE 23 CHEMIN DES PETITS MARAIS - 92036", "stop_name": "CHEMIN DES PETITS MARAIS"}, "geometry": {"type": "Point", "coordinates": [2.296364365181311, 48.94649287294931]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6adb6330e05788e63dc3df9dc758b04cc94ab27c", "fields": {"departement": "92", "stop_lat": 48.94648393285926, "code_postal": "92036", "stop_lon": 2.2965008097284803, "coord": [48.94648393285926, 2.2965008097284803], "stop_id": 5244994, "stop_desc": "FACE 23 CHEMIN DES PETITS MARAIS - 92036", "stop_name": "CHEMIN DES PETITS MARAIS."}, "geometry": {"type": "Point", "coordinates": [2.2965008097284803, 48.94648393285926]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "08dfbc554e52419c4e191667bbcf47d11d49842c", "fields": {"departement": "92", "stop_lat": 48.936343454650824, "code_postal": "92036", "stop_lon": 2.2693766861609816, "coord": [48.936343454650824, 2.2693766861609816], "stop_id": 5245001, "stop_desc": "0 RTE PRINCIPALE DU PORT - 92036", "stop_name": "QUAI DES ENTREPRENEURS"}, "geometry": {"type": "Point", "coordinates": [2.2693766861609816, 48.936343454650824]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "22fa9cca98e1ead51e39fbc7f8d5b562d5dccc71", "fields": {"departement": "92", "stop_lat": 48.93779637657669, "code_postal": "92036", "stop_lon": 2.2643820060671325, "coord": [48.93779637657669, 2.2643820060671325], "stop_id": 5245004, "stop_desc": "0 RTE OUEST DU MOLE NUMERO 1 - 92036", "stop_name": "CFM"}, "geometry": {"type": "Point", "coordinates": [2.2643820060671325, 48.93779637657669]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "736eb65cb870e4aaaa683937076ef556bf2a0361", "fields": {"departement": "92", "stop_lat": 48.757537734352205, "code_postal": "92019", "stop_lon": 2.2705210539804392, "coord": [48.757537734352205, 2.2705210539804392], "stop_id": 5250524, "stop_desc": "ROND-POINT DES GRILLONS - 92019", "stop_name": "SOPHIE BARAT"}, "geometry": {"type": "Point", "coordinates": [2.2705210539804392, 48.757537734352205]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5fac23da83083e86ab4fe6ba78663cf1b6ab601f", "fields": {"departement": "92", "stop_lat": 48.762346781670225, "code_postal": "92019", "stop_lon": 2.2712354343075263, "coord": [48.762346781670225, 2.2712354343075263], "stop_id": 5250555, "stop_desc": "RUE JEAN-BAPTISTE CLEMENT - 92019", "stop_name": "FACULTE DE PHARMACIE"}, "geometry": {"type": "Point", "coordinates": [2.2712354343075263, 48.762346781670225]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "61774cc5c712586a148c542f57f626a4790a84ce", "fields": {"departement": "94", "stop_lat": 48.77023771987624, "code_postal": "94038", "stop_lon": 2.32222948518755, "coord": [48.77023771987624, 2.32222948518755], "stop_id": 5250603, "stop_desc": "FACE AU 115 AVENUE FLOQUET - 94038", "stop_name": "RUE GENEVIEVE"}, "geometry": {"type": "Point", "coordinates": [2.32222948518755, 48.77023771987624]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "242d13f99d1ba7afbf959d0a37823131c3f8e181", "fields": {"departement": "77", "stop_lat": 48.87831111822657, "code_postal": "77108", "stop_lon": 2.6128916504041766, "coord": [48.87831111822657, 2.6128916504041766], "stop_id": 5250728, "stop_desc": "AV GENDARME CASTERMANT - 77108", "stop_name": "TERRE CIEL"}, "geometry": {"type": "Point", "coordinates": [2.6128916504041766, 48.87831111822657]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3d42fdaacd9234e3a5f59814f91240b4cf172ee7", "fields": {"departement": "75", "stop_lat": 48.87056938133284, "code_postal": "75116", "stop_lon": 2.258727258568006, "coord": [48.87056938133284, 2.258727258568006], "stop_id": 5251754, "stop_desc": "ALLEE DE LONGCHAMP - 75116", "stop_name": "ROUTE DES LACS"}, "geometry": {"type": "Point", "coordinates": [2.258727258568006, 48.87056938133284]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5fbe2708acdfe5957d02af09a9cab7f371811331", "fields": {"departement": "92", "stop_lat": 48.85982860172332, "code_postal": "92073", "stop_lon": 2.215033862640823, "coord": [48.85982860172332, 2.215033862640823], "stop_id": 5251771, "stop_desc": "171 BOULEVARD HENRI SELLIER - 92073", "stop_name": "VAL D'OR"}, "geometry": {"type": "Point", "coordinates": [2.215033862640823, 48.85982860172332]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2ce38f6c01cf8322cba802409b0920c84a386226", "fields": {"departement": "92", "stop_lat": 48.87203330081155, "code_postal": "92063", "stop_lon": 2.198478970961869, "coord": [48.87203330081155, 2.198478970961869], "stop_id": 5251782, "stop_desc": "78 RUE DES BONS RAISINS - 92063", "stop_name": "RUE DE LA PAIX"}, "geometry": {"type": "Point", "coordinates": [2.198478970961869, 48.87203330081155]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "47172f6e4e221de1b3fb13fddb42caff1c50911a", "fields": {"departement": "92", "stop_lat": 48.87351539112045, "code_postal": "92063", "stop_lon": 2.1903002640695926, "coord": [48.87351539112045, 2.1903002640695926], "stop_id": 5251786, "stop_desc": "2 RUE DES BONS RAISINS - 92063", "stop_name": "EDMOND ROSTAND"}, "geometry": {"type": "Point", "coordinates": [2.1903002640695926, 48.87351539112045]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1c43c95ac1b0b5fc5e485be8a2e38ba5f8fc54ae", "fields": {"departement": "92", "stop_lat": 48.88720741536253, "code_postal": "92063", "stop_lon": 2.173021810486152, "coord": [48.88720741536253, 2.173021810486152], "stop_id": 5251796, "stop_desc": "PISTE GARE ROUTIERE - 92063", "stop_name": "RUEIL-MALMAISON RER"}, "geometry": {"type": "Point", "coordinates": [2.173021810486152, 48.88720741536253]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cb5fa4e3410fd3e3a933113aca1565c815939d5c", "fields": {"departement": "92", "stop_lat": 48.879895361252146, "code_postal": "92063", "stop_lon": 2.1756339630114354, "coord": [48.879895361252146, 2.1756339630114354], "stop_id": 5251798, "stop_desc": "15 AVENUE DE LA REPUBLIQUE - 92063", "stop_name": "GENEVIEVE COUTURIER"}, "geometry": {"type": "Point", "coordinates": [2.1756339630114354, 48.879895361252146]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "18b39287ad0ed0d4de1b3dbaeb3b9f3a4c3e2dc6", "fields": {"departement": "92", "stop_lat": 48.92531739125098, "code_postal": "92078", "stop_lon": 2.3264123370895655, "coord": [48.92531739125098, 2.3264123370895655], "stop_id": 5276846, "stop_desc": "22 BOULEVARD GALLIENI - 92078", "stop_name": "BONGARDE"}, "geometry": {"type": "Point", "coordinates": [2.3264123370895655, 48.92531739125098]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "07d8b09979f4defaced814db8ef68863d3eef143", "fields": {"departement": "93", "stop_lat": 48.88281796156739, "code_postal": "93063", "stop_lon": 2.4407516953930397, "coord": [48.88281796156739, 2.4407516953930397], "stop_id": 5289075, "stop_desc": "10 BOULEVARD HENRI BARBUSSE - 93063", "stop_name": "CARNOT"}, "geometry": {"type": "Point", "coordinates": [2.4407516953930397, 48.88281796156739]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d8db57f12b1ef552b63935b7f2074ca083b3849a", "fields": {"departement": "93", "stop_lat": 48.87636861120778, "code_postal": "93006", "stop_lon": 2.4251923480377013, "coord": [48.87636861120778, 2.4251923480377013], "stop_id": 5289079, "stop_desc": "FACE 214 AVENUE PASTEUR - 93006", "stop_name": "CIMETIERE DE BAGNOLET"}, "geometry": {"type": "Point", "coordinates": [2.4251923480377013, 48.87636861120778]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6437a44660d4f92f194dbc7a7b66aadbe8caa31e", "fields": {"departement": "93", "stop_lat": 48.88021901272251, "code_postal": "93045", "stop_lon": 2.4198164856309488, "coord": [48.88021901272251, 2.4198164856309488], "stop_id": 5289081, "stop_desc": "33 BOULEVARD DE LA LIBERTE - 93045", "stop_name": "MARECHAL JUIN"}, "geometry": {"type": "Point", "coordinates": [2.4198164856309488, 48.88021901272251]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7aef8c8cb22c59b0aa7ff1d36ec470a3138bb87a", "fields": {"departement": "95", "stop_lat": 48.97990273196045, "code_postal": "95219", "stop_lon": 2.2708622769275495, "coord": [48.97990273196045, 2.2708622769275495], "stop_id": 5081780, "stop_desc": "RUE DE L'ARRIVEE - 95219", "stop_name": "ERMONT-EAUBONNE RER"}, "geometry": {"type": "Point", "coordinates": [2.2708622769275495, 48.97990273196045]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ac594f72e4ef7b50866d559f0eb333cbd4788ee2", "fields": {"departement": "92", "stop_lat": 48.8078720768513, "code_postal": "92023", "stop_lon": 2.2586315930716143, "coord": [48.8078720768513, 2.2586315930716143], "stop_id": 5091894, "stop_desc": "33 AVENUE HENRI BARBUSSE - 92023", "stop_name": "D'ESTIENNE D'ORVES"}, "geometry": {"type": "Point", "coordinates": [2.2586315930716143, 48.8078720768513]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "27e482f6a7be29d1c7b849920400e00fee3973e5", "fields": {"departement": "92", "stop_lat": 48.80594889671298, "code_postal": "92023", "stop_lon": 2.258947462289062, "coord": [48.80594889671298, 2.258947462289062], "stop_id": 5091895, "stop_desc": "FACE 8 AVENUE HENRI BARBUSSE - 92023", "stop_name": "MARQUIS"}, "geometry": {"type": "Point", "coordinates": [2.258947462289062, 48.80594889671298]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d11222acf6f0f3c51ea83b3de102265049662709", "fields": {"departement": "92", "stop_lat": 48.8013746355089, "code_postal": "92023", "stop_lon": 2.259770698100961, "coord": [48.8013746355089, 2.259770698100961], "stop_id": 5091897, "stop_desc": "FACE 30 RUE DE MEUDON - 92023", "stop_name": "POSTE"}, "geometry": {"type": "Point", "coordinates": [2.259770698100961, 48.8013746355089]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f3f614e7d5df93a4e97e56ba847b41b6722ff182", "fields": {"departement": "92", "stop_lat": 48.78988368983829, "code_postal": "92023", "stop_lon": 2.253231383781296, "coord": [48.78988368983829, 2.253231383781296], "stop_id": 5091905, "stop_desc": "ROUTE DE LA PORTE DE TRIVAUX - 92023", "stop_name": "JARDIN PARISIEN - HOPITAL ANTOINE BECLERE"}, "geometry": {"type": "Point", "coordinates": [2.253231383781296, 48.78988368983829]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3541bd3609db4ab34298dd7cc4ab64d04739ea97", "fields": {"departement": "92", "stop_lat": 48.778832804813426, "code_postal": "92023", "stop_lon": 2.2357056214787194, "coord": [48.778832804813426, 2.2357056214787194], "stop_id": 5091914, "stop_desc": "489 AVENUE DU GENERAL DE GAULLE - 92023", "stop_name": "CHARLES DEBRY"}, "geometry": {"type": "Point", "coordinates": [2.2357056214787194, 48.778832804813426]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d69e84508a856c2da095e4a2fd6edc0a432e6af3", "fields": {"departement": "92", "stop_lat": 48.7804899173756, "code_postal": "92023", "stop_lon": 2.2396736268642754, "coord": [48.7804899173756, 2.2396736268642754], "stop_id": 5091915, "stop_desc": "AVENUE DU GENERAL DE GAULLE - 92023", "stop_name": "PAVE BLANC"}, "geometry": {"type": "Point", "coordinates": [2.2396736268642754, 48.7804899173756]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "185eccca6d6fd2abe7e07066fcb586a4adadec44", "fields": {"departement": "92", "stop_lat": 48.79426934167928, "code_postal": "92023", "stop_lon": 2.266351914731897, "coord": [48.79426934167928, 2.266351914731897], "stop_id": 5091923, "stop_desc": "97 BIS AVENUE JEAN BAPTISTE CLEMENT - 92023", "stop_name": "CIMETIERE DE CLAMART"}, "geometry": {"type": "Point", "coordinates": [2.266351914731897, 48.79426934167928]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3b549974345744f2db021d647329a2ba4eff2113", "fields": {"departement": "92", "stop_lat": 48.79792816615365, "code_postal": "92023", "stop_lon": 2.2676393668758803, "coord": [48.79792816615365, 2.2676393668758803], "stop_id": 5091924, "stop_desc": "31 AVENUE JEAN BAPTISTE CLEMENT - 92023", "stop_name": "PLESSIS PIQUET"}, "geometry": {"type": "Point", "coordinates": [2.2676393668758803, 48.79792816615365]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e6e09934fcae5a4fb47e5ab86a1d707a03512b63", "fields": {"departement": "92", "stop_lat": 48.80171076912714, "code_postal": "92023", "stop_lon": 2.2654845936995978, "coord": [48.80171076912714, 2.2654845936995978], "stop_id": 5091925, "stop_desc": "FACE 28 RUE PIERRE ET MARIE CURIE - 92023", "stop_name": "MARCHE DE CLAMART"}, "geometry": {"type": "Point", "coordinates": [2.2654845936995978, 48.80171076912714]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "787c706c2521d6b76b0df4fffc6602cf57d5be7d", "fields": {"departement": "92", "stop_lat": 48.80369208247647, "code_postal": "92023", "stop_lon": 2.2576310619523223, "coord": [48.80369208247647, 2.2576310619523223], "stop_id": 5091929, "stop_desc": "PLACE DU GARDE - 92023", "stop_name": "PLACE DU GARDE"}, "geometry": {"type": "Point", "coordinates": [2.2576310619523223, 48.80369208247647]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c4151838c7ffd6aa6e86d3f01a3a3da7e61c3569", "fields": {"departement": "92", "stop_lat": 48.82489491147646, "code_postal": "92040", "stop_lon": 2.273823780534123, "coord": [48.82489491147646, 2.273823780534123], "stop_id": 5091945, "stop_desc": "FACE 29 RUE KLEBER - 92040", "stop_name": "MAIRIE D'ISSY"}, "geometry": {"type": "Point", "coordinates": [2.273823780534123, 48.82489491147646]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3aefaf33f9558960eaba2f6e34cb9304a575354f", "fields": {"departement": "92", "stop_lat": 48.82119170609725, "code_postal": "92040", "stop_lon": 2.273297484562795, "coord": [48.82119170609725, 2.273297484562795], "stop_id": 5091947, "stop_desc": "2 RUE PIERRE BROSSOLETTE - 92040", "stop_name": "MUSEE"}, "geometry": {"type": "Point", "coordinates": [2.273297484562795, 48.82119170609725]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "712015bdfc09dc42242a1a9d2efb9326147d1e6f", "fields": {"departement": "92", "stop_lat": 48.81981297222934, "code_postal": "92040", "stop_lon": 2.2668886606906438, "coord": [48.81981297222934, 2.2668886606906438], "stop_id": 5091948, "stop_desc": "R DE L'EGALITE - 92040", "stop_name": "PARC HENRI BARBUSSE"}, "geometry": {"type": "Point", "coordinates": [2.2668886606906438, 48.81981297222934]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "21c7edd905560759d5864da6b63fd5bfd4b86bc8", "fields": {"departement": "92", "stop_lat": 48.816851975637036, "code_postal": "92040", "stop_lon": 2.260360030025392, "coord": [48.816851975637036, 2.260360030025392], "stop_id": 5091952, "stop_desc": "58 RUE DE L'EGALITE - 92040", "stop_name": "EPINETTES"}, "geometry": {"type": "Point", "coordinates": [2.260360030025392, 48.816851975637036]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "58b0adc903391e674bc2f914c7dcacb7dab32ae9", "fields": {"departement": "92", "stop_lat": 48.80333187356058, "code_postal": "92023", "stop_lon": 2.2565975482128477, "coord": [48.80333187356058, 2.2565975482128477], "stop_id": 5091958, "stop_desc": "PLACE DU GARDE - 92023", "stop_name": "PLACE DU GARDE"}, "geometry": {"type": "Point", "coordinates": [2.2565975482128477, 48.80333187356058]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5e82a3d5fcdd0eeeff87388adbf73cd3c6e2ebf8", "fields": {"departement": "92", "stop_lat": 48.77662285651918, "code_postal": "92060", "stop_lon": 2.248302745641102, "coord": [48.77662285651918, 2.248302745641102], "stop_id": 5091966, "stop_desc": "2 AVENUE DESCARTES - 92060", "stop_name": "LANGEVIN"}, "geometry": {"type": "Point", "coordinates": [2.248302745641102, 48.77662285651918]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ea0c838e5f3943ab28f69572cc350f835a2ea738", "fields": {"departement": "92", "stop_lat": 48.77809909200062, "code_postal": "92023", "stop_lon": 2.239650918882756, "coord": [48.77809909200062, 2.239650918882756], "stop_id": 5091970, "stop_desc": "6 AVENUE REAUMUR - 92023", "stop_name": "REAUMUR"}, "geometry": {"type": "Point", "coordinates": [2.239650918882756, 48.77809909200062]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "95e2ef9eb4ea4187a2815c7715258c95dbf0ea34", "fields": {"departement": "92", "stop_lat": 48.821397315912996, "code_postal": "92040", "stop_lon": 2.2712692120316698, "coord": [48.821397315912996, 2.2712692120316698], "stop_id": 5091977, "stop_desc": "5 RUE MAXIMILIEN ROBESPIERRE - 92040", "stop_name": "ROBESPIERRE"}, "geometry": {"type": "Point", "coordinates": [2.2712692120316698, 48.821397315912996]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "876fdbb473bdb750ded23034f538078cdfef2daa", "fields": {"departement": "93", "stop_lat": 48.91492881365628, "code_postal": "93070", "stop_lon": 2.331473257971161, "coord": [48.91492881365628, 2.331473257971161], "stop_id": 5091989, "stop_desc": "FACE 49-51 RUE ALBERT DHALENNE - 93070", "stop_name": "SOUBISE"}, "geometry": {"type": "Point", "coordinates": [2.331473257971161, 48.91492881365628]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8366fcd3222f68efdb7612ef24489c6ec803cedd", "fields": {"departement": "93", "stop_lat": 48.92189369501151, "code_postal": "93039", "stop_lon": 2.330967901709753, "coord": [48.92189369501151, 2.330967901709753], "stop_id": 5091995, "stop_desc": "QUAI DU CHATELIER - 93039", "stop_name": "CENTRE COMMERCIAL DE L'ILE-SAINT-DENIS"}, "geometry": {"type": "Point", "coordinates": [2.330967901709753, 48.92189369501151]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "46e867b959ff455f7e8176316689418fd226aceb", "fields": {"departement": "93", "stop_lat": 48.924607856881956, "code_postal": "93039", "stop_lon": 2.333476961367818, "coord": [48.924607856881956, 2.333476961367818], "stop_id": 5091997, "stop_desc": "9 QUAI DU CHATELIER - 93039", "stop_name": "QUAI DU CHATELIER N0 9"}, "geometry": {"type": "Point", "coordinates": [2.333476961367818, 48.924607856881956]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b25f3dae1d2e875d1c64d917ce73b73c3cb5ce6c", "fields": {"departement": "93", "stop_lat": 48.92858912020143, "code_postal": "93039", "stop_lon": 2.337227404939033, "coord": [48.92858912020143, 2.337227404939033], "stop_id": 5091999, "stop_desc": "15 QUAI DU CHATELIER - 93039", "stop_name": "QUAI DU CHATELIER N0 15"}, "geometry": {"type": "Point", "coordinates": [2.337227404939033, 48.92858912020143]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5abe6bf549665ad2824b90e80bcc2a99eee3c4ff", "fields": {"departement": "93", "stop_lat": 48.935167457674055, "code_postal": "93039", "stop_lon": 2.340896767380014, "coord": [48.935167457674055, 2.340896767380014], "stop_id": 5092003, "stop_desc": "QUAI DE SEINE - 93039", "stop_name": "MAIRIE DE L'ILE SAINT-DENIS"}, "geometry": {"type": "Point", "coordinates": [2.340896767380014, 48.935167457674055]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4a482a05b907f5c408c7508e24c12b57a2998e9a", "fields": {"departement": "93", "stop_lat": 48.942258117223666, "code_postal": "93039", "stop_lon": 2.337609391641493, "coord": [48.942258117223666, 2.337609391641493], "stop_id": 5092006, "stop_desc": "QUAI DE LA MARINE - 93039", "stop_name": "RUE BERTHELOT"}, "geometry": {"type": "Point", "coordinates": [2.337609391641493, 48.942258117223666]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2229c341258e56ee2bfa4fff014289ecfb83add6", "fields": {"departement": "93", "stop_lat": 48.95469036853042, "code_postal": "93031", "stop_lon": 2.3013113553940445, "coord": [48.95469036853042, 2.3013113553940445], "stop_id": 5092016, "stop_desc": "R DU 8 MAI 1945 - 93031", "stop_name": "EPINAY-SUR-SEINE - GARE"}, "geometry": {"type": "Point", "coordinates": [2.3013113553940445, 48.95469036853042]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a40de53db49590476e2ff300e0fd2533de686a60", "fields": {"departement": "92", "stop_lat": 48.78597387635517, "code_postal": "92048", "stop_lon": 2.2211107529453513, "coord": [48.78597387635517, 2.2211107529453513], "stop_id": 5121004, "stop_desc": "AVENUE MORANE SAULNIER - 92048", "stop_name": "AERODROME MORANE"}, "geometry": {"type": "Point", "coordinates": [2.2211107529453513, 48.78597387635517]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "69587dfda560574241f8cfbbcc4ea52b182d999d", "fields": {"departement": "78", "stop_lat": 48.78398992326475, "code_postal": "78640", "stop_lon": 2.20611320210119, "coord": [48.78398992326475, 2.20611320210119], "stop_id": 5121012, "stop_desc": "RUE GRANGE DAME ROSE - 78640", "stop_name": "LA CHEMINEE"}, "geometry": {"type": "Point", "coordinates": [2.20611320210119, 48.78398992326475]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ab0605aabb92d8f811fec03090a764d27dc11dc7", "fields": {"departement": "78", "stop_lat": 48.784600762759624, "code_postal": "78640", "stop_lon": 2.2142043959264335, "coord": [48.784600762759624, 2.2142043959264335], "stop_id": 5121015, "stop_desc": "RUE MARCEL DASSAULT - 78640", "stop_name": "DEWOITINE"}, "geometry": {"type": "Point", "coordinates": [2.2142043959264335, 48.784600762759624]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b5ecab9958f75293a75c16d95e87e323275bfbf7", "fields": {"departement": "78", "stop_lat": 48.784847683593604, "code_postal": "78640", "stop_lon": 2.2183794100939678, "coord": [48.784847683593604, 2.2183794100939678], "stop_id": 5121022, "stop_desc": "GARE ROUTIERE - 78640", "stop_name": "VELIZY 2"}, "geometry": {"type": "Point", "coordinates": [2.2183794100939678, 48.784847683593604]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fd7bfc63ddf2bc296f4f4ba9c123752cfaf1eb09", "fields": {"departement": "78", "stop_lat": 48.78165577303442, "code_postal": "78640", "stop_lon": 2.226465389834906, "coord": [48.78165577303442, 2.226465389834906], "stop_id": 5121024, "stop_desc": "RUE DU PETIT CLAMART - 78640", "stop_name": "AVENUE DE LA SYGRIE"}, "geometry": {"type": "Point", "coordinates": [2.226465389834906, 48.78165577303442]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1b963fca4ac433cf30432ccea6f2d0c23e78cf74", "fields": {"departement": "92", "stop_lat": 48.76481537199997, "code_postal": "92019", "stop_lon": 2.265807475737512, "coord": [48.76481537199997, 2.265807475737512], "stop_id": 5121038, "stop_desc": "FACE 299 AVENUE DE LA DIVISION LECLERC - 92019", "stop_name": "GENERAL DUVAL"}, "geometry": {"type": "Point", "coordinates": [2.265807475737512, 48.76481537199997]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cc98c83fcf57176c535921d0e0b8506123c3c686", "fields": {"departement": "92", "stop_lat": 48.76294436508194, "code_postal": "92019", "stop_lon": 2.279636728058831, "coord": [48.76294436508194, 2.279636728058831], "stop_id": 5121042, "stop_desc": "130 AVENUE DE LA DIVISION LECLERC - 92019", "stop_name": "LA BRIAUDE"}, "geometry": {"type": "Point", "coordinates": [2.279636728058831, 48.76294436508194]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9836eaa682f6799d61e050b81cc23034013067fe", "fields": {"departement": "92", "stop_lat": 48.76231677777415, "code_postal": "92019", "stop_lon": 2.2829954852498937, "coord": [48.76231677777415, 2.2829954852498937], "stop_id": 5121043, "stop_desc": "85 AVENUE DE LA DIVISION LECLERC - 92019", "stop_name": "CARREFOUR DU 19 MARS 1962"}, "geometry": {"type": "Point", "coordinates": [2.2829954852498937, 48.76231677777415]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f8e02bc8b370b6541b5aaa73afa50eea3c071f31", "fields": {"departement": "92", "stop_lat": 48.78223995246046, "code_postal": "92048", "stop_lon": 2.2264233419911954, "coord": [48.78223995246046, 2.2264233419911954], "stop_id": 5121053, "stop_desc": "0 RUE DU PETIT CLAMART - 92048", "stop_name": "AVENUE DE LA SYGRIE"}, "geometry": {"type": "Point", "coordinates": [2.2264233419911954, 48.78223995246046]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dbb8eb6faad485df05dd7f9889d99ee5ca76ab6c", "fields": {"departement": "78", "stop_lat": 48.785539944843165, "code_postal": "78640", "stop_lon": 2.218568246425504, "coord": [48.785539944843165, 2.218568246425504], "stop_id": 5121055, "stop_desc": "19-21 AVENUE MORANE SAULNIER - 78640", "stop_name": "VELIZY 2."}, "geometry": {"type": "Point", "coordinates": [2.218568246425504, 48.785539944843165]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dbb831d065367483aba796041a890f21d7b2c865", "fields": {"departement": "92", "stop_lat": 48.787585335210935, "code_postal": "92048", "stop_lon": 2.233675410556486, "coord": [48.787585335210935, 2.233675410556486], "stop_id": 5121307, "stop_desc": "FACE 5-7 AVENUE DU MARECHAL DE LATTRE DE TASSIGNY - 92048", "stop_name": "ESPACE CULTUREL - ROBERT DOISNEAU"}, "geometry": {"type": "Point", "coordinates": [2.233675410556486, 48.787585335210935]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f3b7ef95b839601b82edf137b2edf5a89a7e918f", "fields": {"departement": "92", "stop_lat": 48.787405564917776, "code_postal": "92048", "stop_lon": 2.2336621671073633, "coord": [48.787405564917776, 2.2336621671073633], "stop_id": 5121308, "stop_desc": "AVENUE DU MARECHAL DE LATTRE DE TASSIGNY - 92048", "stop_name": "ESPACE CULTUREL - ROBERT DOISNEAU"}, "geometry": {"type": "Point", "coordinates": [2.2336621671073633, 48.787405564917776]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f0a611b41fc03427a52ad31ee2b7cba4c62a0e31", "fields": {"departement": "92", "stop_lat": 48.78618865721884, "code_postal": "92048", "stop_lon": 2.2296793115262967, "coord": [48.78618865721884, 2.2296793115262967], "stop_id": 5121309, "stop_desc": "16 AVENUE DU MARECHAL DE LATTRE DE TASSIGNY - 92048", "stop_name": "LE LAC"}, "geometry": {"type": "Point", "coordinates": [2.2296793115262967, 48.78618865721884]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9fba702c49c158f8f428f4a9df8faf08e8f937da", "fields": {"departement": "92", "stop_lat": 48.78725665822654, "code_postal": "92048", "stop_lon": 2.2279632565302556, "coord": [48.78725665822654, 2.2279632565302556], "stop_id": 5121312, "stop_desc": "17 AVENUE DE CELLE - 92048", "stop_name": "EGLISE - AVENUE DE CELLE"}, "geometry": {"type": "Point", "coordinates": [2.2279632565302556, 48.78725665822654]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "426030c7e0b590dff9230913cbddf252ddec74f2", "fields": {"departement": "92", "stop_lat": 48.798927673593, "code_postal": "92048", "stop_lon": 2.2332310308419236, "coord": [48.798927673593, 2.2332310308419236], "stop_id": 5121317, "stop_desc": "AVENUE DE TRIVAUX - 92048", "stop_name": "CIMETIERE DE TRIVAUX"}, "geometry": {"type": "Point", "coordinates": [2.2332310308419236, 48.798927673593]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9fbab409d617df31913a40527238e7495e952abc", "fields": {"departement": "92", "stop_lat": 48.79875659480729, "code_postal": "92048", "stop_lon": 2.2328776451445167, "coord": [48.79875659480729, 2.2328776451445167], "stop_id": 5121318, "stop_desc": "10 AVENUE DE TRIVAUX - 92048", "stop_name": "CIMETIERE DE TRIVAUX"}, "geometry": {"type": "Point", "coordinates": [2.2328776451445167, 48.79875659480729]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "35e00d153a6ed61bf49ae5122c9b4a4821320895", "fields": {"departement": "92", "stop_lat": 48.80331430157631, "code_postal": "92048", "stop_lon": 2.2338753366470674, "coord": [48.80331430157631, 2.2338753366470674], "stop_id": 5121320, "stop_desc": "8 AVENUE DE TRIVAUX - 92048", "stop_name": "TRIVAUX - VERTUGADINS - LYCEE"}, "geometry": {"type": "Point", "coordinates": [2.2338753366470674, 48.80331430157631]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d576f0be5c7b4be81917c46af6a0ac29a69cefc5", "fields": {"departement": "92", "stop_lat": 48.80800792839804, "code_postal": "92048", "stop_lon": 2.2361928494598557, "coord": [48.80800792839804, 2.2361928494598557], "stop_id": 5121321, "stop_desc": "49-51 AVENUE DE LA REPUBLIQUE - 92048", "stop_name": "EGLISE DE MEUDON"}, "geometry": {"type": "Point", "coordinates": [2.2361928494598557, 48.80800792839804]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "72e81b6d06e70ee650175ce1359957a0db900e8b", "fields": {"departement": "92", "stop_lat": 48.8075402745395, "code_postal": "92048", "stop_lon": 2.2358535787928604, "coord": [48.8075402745395, 2.2358535787928604], "stop_id": 5121322, "stop_desc": "36-38 RUE DE LA REPUBLIQUE - 92048", "stop_name": "EGLISE DE MEUDON"}, "geometry": {"type": "Point", "coordinates": [2.2358535787928604, 48.8075402745395]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4daa589e7f8c4d91892b3cfa98de9887ec1cfa7a", "fields": {"departement": "92", "stop_lat": 48.81640815008475, "code_postal": "92048", "stop_lon": 2.2323385970316534, "coord": [48.81640815008475, 2.2323385970316534], "stop_id": 5121327, "stop_desc": "17 BIS BOULEVARD VERD DE SAINT JULIEN - 92048", "stop_name": "JEANNE D'ARC"}, "geometry": {"type": "Point", "coordinates": [2.2323385970316534, 48.81640815008475]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a0881695dbb71a9374aee3139023c3291a678653", "fields": {"departement": "94", "stop_lat": 48.81403046676577, "code_postal": "94017", "stop_lon": 2.5575835585876816, "coord": [48.81403046676577, 2.5575835585876816], "stop_id": 3743448, "stop_desc": "PLACE DE LA RESISTANCE - 94017", "stop_name": "PLACE DE LA RESISTANCE"}, "geometry": {"type": "Point", "coordinates": [2.5575835585876816, 48.81403046676577]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "06612caa51454a099de2e95fd1d6c40d55d62aa6", "fields": {"departement": "75", "stop_lat": 48.89864269023687, "code_postal": "75118", "stop_lon": 2.357415154320095, "coord": [48.89864269023687, 2.357415154320095], "stop_id": 3741070, "stop_desc": "60 BOULEVARD NEY - 75118", "stop_name": "PORTE DE LA CHAPELLE"}, "geometry": {"type": "Point", "coordinates": [2.357415154320095, 48.89864269023687]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7c0caa9e5647b30a93a57476a42ea63d4d3bc852", "fields": {"departement": "94", "stop_lat": 48.81034580258984, "code_postal": "94017", "stop_lon": 2.542313335117928, "coord": [48.81034580258984, 2.542313335117928], "stop_id": 3743455, "stop_desc": "59 R DU BOIS L'ABBE - 94017", "stop_name": "COLOMBE - HARDELET"}, "geometry": {"type": "Point", "coordinates": [2.542313335117928, 48.81034580258984]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "47b0aeb2fbbabcda4d88c6592f0f6d7340caaa91", "fields": {"departement": "94", "stop_lat": 48.81156828189472, "code_postal": "94017", "stop_lon": 2.552415548105238, "coord": [48.81156828189472, 2.552415548105238], "stop_id": 3743451, "stop_desc": "33-35 RUE DU PLESSIS TREVISE - 94017", "stop_name": "CHATEAUDUN"}, "geometry": {"type": "Point", "coordinates": [2.552415548105238, 48.81156828189472]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "30872a3e389da4fa89a3dfed821d12ac4afbc9ac", "fields": {"departement": "94", "stop_lat": 48.81150662059484, "code_postal": "94017", "stop_lon": 2.5517212682018378, "coord": [48.81150662059484, 2.5517212682018378], "stop_id": 3743452, "stop_desc": "38 RUE DU PLESSIS TREVISE - 94017", "stop_name": "CHATEAUDUN"}, "geometry": {"type": "Point", "coordinates": [2.5517212682018378, 48.81150662059484]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "50d29af84eafb471fa6a00da0ad404847c241940", "fields": {"departement": "94", "stop_lat": 48.808496295953304, "code_postal": "94017", "stop_lon": 2.524765932868587, "coord": [48.808496295953304, 2.524765932868587], "stop_id": 3743466, "stop_desc": "59 AVENUE MARX DORMOY - 94017", "stop_name": "LA CASCADE"}, "geometry": {"type": "Point", "coordinates": [2.524765932868587, 48.808496295953304]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8ec886bc4ac9efd715b48590b0d4817c2b7c404e", "fields": {"departement": "93", "stop_lat": 48.92623412112914, "code_postal": "93027", "stop_lon": 2.38464816857512, "coord": [48.92623412112914, 2.38464816857512], "stop_id": 3741092, "stop_desc": "FACE 66 BOULEVARD PASTEUR - 93027", "stop_name": "MICHELET"}, "geometry": {"type": "Point", "coordinates": [2.38464816857512, 48.92623412112914]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e0cb65f97fce62d96ed282668b5b26b30d8d0bf4", "fields": {"departement": "75", "stop_lat": 48.88362477105826, "code_postal": "75110", "stop_lon": 2.3593443757229804, "coord": [48.88362477105826, 2.3593443757229804], "stop_id": 3741056, "stop_desc": "226-228 RUE DU FAUBOURG SAINT-DENIS - 75110", "stop_name": "PLACE DE LA CHAPELLE"}, "geometry": {"type": "Point", "coordinates": [2.3593443757229804, 48.88362477105826]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bc8a8fe4948bb86a99eeb5f8c7ac7e1174414122", "fields": {"departement": "95", "stop_lat": 48.97356093396896, "code_postal": "95268", "stop_lon": 2.3986017741043617, "coord": [48.97356093396896, 2.3986017741043617], "stop_id": 3740997, "stop_desc": "AVENUE FRANCOIS MITTERRAND - 95268", "stop_name": "DE GAULLE - MITTERRAND"}, "geometry": {"type": "Point", "coordinates": [2.3986017741043617, 48.97356093396896]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f3b70cd65558694f46404c0d751775fe91b011cf", "fields": {"departement": "75", "stop_lat": 48.88269019810708, "code_postal": "75110", "stop_lon": 2.3587988991979594, "coord": [48.88269019810708, 2.3587988991979594], "stop_id": 3741055, "stop_desc": "197 RUE DU FAUBOURG SAINT-DENIS - 75110", "stop_name": "CAIL - DEMARQUAY"}, "geometry": {"type": "Point", "coordinates": [2.3587988991979594, 48.88269019810708]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e73149526418c7b0bbdad55e572a673845a3ddf7", "fields": {"departement": "75", "stop_lat": 48.89815807207283, "code_postal": "75118", "stop_lon": 2.3528349419067323, "coord": [48.89815807207283, 2.3528349419067323], "stop_id": 3741067, "stop_desc": "FACE 78 BOULEVARD NEY - 75118", "stop_name": "PORTE DES POISSONNIERS"}, "geometry": {"type": "Point", "coordinates": [2.3528349419067323, 48.89815807207283]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "49f29a8a1963b036c66dde35f323fb48cac9156b", "fields": {"departement": "75", "stop_lat": 48.89157962456742, "code_postal": "75118", "stop_lon": 2.351660844963556, "coord": [48.89157962456742, 2.351660844963556], "stop_id": 3741064, "stop_desc": "71 R DES POISSONNIERS - 75118", "stop_name": "MARCADET - POISSONNIERS"}, "geometry": {"type": "Point", "coordinates": [2.351660844963556, 48.89157962456742]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0ec08570d8e3005ce353191d6d2dfeabd8121481", "fields": {"departement": "93", "stop_lat": 48.960420869630234, "code_postal": "93072", "stop_lon": 2.3820728157965996, "coord": [48.960420869630234, 2.3820728157965996], "stop_id": 3740985, "stop_desc": "FACE 47 AVENUE MARCEL CACHIN - 93072", "stop_name": "LES PAROUZETS"}, "geometry": {"type": "Point", "coordinates": [2.3820728157965996, 48.960420869630234]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "beb74b0e37d474fb7683b07cc1edcb7e9e45019b", "fields": {"departement": "93", "stop_lat": 48.946274104207006, "code_postal": "93072", "stop_lon": 2.386331044930748, "coord": [48.946274104207006, 2.386331044930748], "stop_id": 3740978, "stop_desc": "FACE 191 BOULEVARD MAXIME GORKI - 93072", "stop_name": "CROIX BLANCHE"}, "geometry": {"type": "Point", "coordinates": [2.386331044930748, 48.946274104207006]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bc3b5240afe204e8fa5c3d399393dbaf108e5a45", "fields": {"departement": "75", "stop_lat": 48.89825617870553, "code_postal": "75118", "stop_lon": 2.3577966733239846, "coord": [48.89825617870553, 2.3577966733239846], "stop_id": 3741069, "stop_desc": "BOULEVARD NEY - 75118", "stop_name": "PORTE DE LA CHAPELLE"}, "geometry": {"type": "Point", "coordinates": [2.3577966733239846, 48.89825617870553]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "91eb14413c93e736d14c8ebc09e0332951ad9ac5", "fields": {"departement": "93", "stop_lat": 48.94922196627469, "code_postal": "93072", "stop_lon": 2.3858289941299575, "coord": [48.94922196627469, 2.3858289941299575], "stop_id": 3740980, "stop_desc": "FACE 99 BOULEVARD MAXIME GORKI - 93072", "stop_name": "LE GLOBE"}, "geometry": {"type": "Point", "coordinates": [2.3858289941299575, 48.94922196627469]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bdaa70b554827342d4e8ad38c1427856d0fe5c41", "fields": {"departement": "93", "stop_lat": 48.96450714684167, "code_postal": "93072", "stop_lon": 2.388641283610825, "coord": [48.96450714684167, 2.388641283610825], "stop_id": 3740990, "stop_desc": "93 AVENUE JULES GUESDE - 93072", "stop_name": "L'AVENIR"}, "geometry": {"type": "Point", "coordinates": [2.388641283610825, 48.96450714684167]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c8d29043572ad0276586644ea5dc57f2c8a2cec2", "fields": {"departement": "75", "stop_lat": 48.86771333366998, "code_postal": "75108", "stop_lon": 2.2995189159459297, "coord": [48.86771333366998, 2.2995189159459297], "stop_id": 3740526, "stop_desc": "35 AVENUE PIERRE 1ER DE SERBIE - 75108", "stop_name": "MARCEAU - PIERRE 1ER DE SERBIE - PLACE DE BEYROUTH"}, "geometry": {"type": "Point", "coordinates": [2.2995189159459297, 48.86771333366998]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "518a6ee468306880229ea9029f71252623427ee7", "fields": {"departement": "75", "stop_lat": 48.84936585821649, "code_postal": "75105", "stop_lon": 2.353746322738603, "coord": [48.84936585821649, 2.353746322738603], "stop_id": 3748050, "stop_desc": "15 BOULEVARD SAINT GERMAIN - 75105", "stop_name": "SAINT-GERMAIN - CARDINAL LEMOINE"}, "geometry": {"type": "Point", "coordinates": [2.353746322738603, 48.84936585821649]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d98e499d9efd3d5c050eecc1c8fde367856ce3f9", "fields": {"departement": "75", "stop_lat": 48.85154193352731, "code_postal": "75106", "stop_lon": 2.3401963360554157, "coord": [48.85154193352731, 2.3401963360554157], "stop_id": 3748045, "stop_desc": "FACE 25 RUE DE L'ECOLE DE MEDECINE - 75106", "stop_name": "SAINT-GERMAIN - ODEON"}, "geometry": {"type": "Point", "coordinates": [2.3401963360554157, 48.85154193352731]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ec92ede1b80f8a026dab74a9b3a85b5dfb92b280", "fields": {"departement": "75", "stop_lat": 48.85124258397393, "code_postal": "75104", "stop_lon": 2.363075725075009, "coord": [48.85124258397393, 2.363075725075009], "stop_id": 3748053, "stop_desc": "12 BOULEVARD HENRI IV - 75104", "stop_name": "SULLY - MORLAND"}, "geometry": {"type": "Point", "coordinates": [2.363075725075009, 48.85124258397393]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fa5e1ec5f5a72b8dc3325274b4d7b2d69a52ed9a", "fields": {"departement": "75", "stop_lat": 48.85271034035536, "code_postal": "75106", "stop_lon": 2.337377252975595, "coord": [48.85271034035536, 2.337377252975595], "stop_id": 3748043, "stop_desc": "119 BOULEVARD SAINT GERMAIN - 75106", "stop_name": "SEINE - BUCI"}, "geometry": {"type": "Point", "coordinates": [2.337377252975595, 48.85271034035536]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "582a797b45aa802e8aa74bc52ea632731fcb22f4", "fields": {"departement": "75", "stop_lat": 48.84765930770116, "code_postal": "75112", "stop_lon": 2.4028105519305467, "coord": [48.84765930770116, 2.4028105519305467], "stop_id": 3748068, "stop_desc": "44 COURS DE VINCENNES - 75112", "stop_name": "MARSOULAN"}, "geometry": {"type": "Point", "coordinates": [2.4028105519305467, 48.84765930770116]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9e6ac897b7aab698e0b99bb654bcbde86bde283c", "fields": {"departement": "75", "stop_lat": 48.848004898658445, "code_postal": "75112", "stop_lon": 2.3949534903848346, "coord": [48.848004898658445, 2.3949534903848346], "stop_id": 3748066, "stop_desc": "4 PLACE DE LA NATION - 75112", "stop_name": "NATION"}, "geometry": {"type": "Point", "coordinates": [2.3949534903848346, 48.848004898658445]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1b4f7216a27485bf8b80951f23744b1520588d8f", "fields": {"departement": "75", "stop_lat": 48.85059796516235, "code_postal": "75105", "stop_lon": 2.345984155428729, "coord": [48.85059796516235, 2.345984155428729], "stop_id": 3748048, "stop_desc": "63 BD SAINT-GERMAIN - 75105", "stop_name": "DANTE"}, "geometry": {"type": "Point", "coordinates": [2.345984155428729, 48.85059796516235]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "81132c5db716fa51ae81247eae722b92e3cf4cd6", "fields": {"departement": "91", "stop_lat": 48.695370053417975, "code_postal": "91326", "stop_lon": 2.371538856451079, "coord": [48.695370053417975, 2.371538856451079], "stop_id": 3732182, "stop_desc": "40 BIS AVENUE DE LA COUR DE FRANCE - 91326", "stop_name": "OBSERVATOIRE CAMILLE FLAMMARION"}, "geometry": {"type": "Point", "coordinates": [2.371538856451079, 48.695370053417975]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "adfb825a43504e77dfc228b893f0c565925ef60c", "fields": {"departement": "91", "stop_lat": 48.68797556126162, "code_postal": "91589", "stop_lon": 2.358080202731522, "coord": [48.68797556126162, 2.358080202731522], "stop_id": 3732172, "stop_desc": "FACE 209 BOULEVARD ARISTIDE BRIAND - 91589", "stop_name": "ARISTIDE BRIAND - CHAMPAGNE"}, "geometry": {"type": "Point", "coordinates": [2.358080202731522, 48.68797556126162]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "47d5010723d6edb0670aa4ab50f6bf42b31609ed", "fields": {"departement": "91", "stop_lat": 48.67584190149792, "code_postal": "91589", "stop_lon": 2.3509496272348955, "coord": [48.67584190149792, 2.3509496272348955], "stop_id": 3732165, "stop_desc": "4 RUE CHAMBERLIN - 91589", "stop_name": "GARE DE SAVIGNY-SUR-ORGE RER"}, "geometry": {"type": "Point", "coordinates": [2.3509496272348955, 48.67584190149792]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a8095789f3eb7edff0349fbc9ab854f01eeaa54b", "fields": {"departement": "91", "stop_lat": 48.669856074950665, "code_postal": "91216", "stop_lon": 2.3317854623021534, "coord": [48.669856074950665, 2.3317854623021534], "stop_id": 3732159, "stop_desc": "PLACE STALINGRAD - 91216", "stop_name": "GARE D'EPINAY-SUR-ORGE RER"}, "geometry": {"type": "Point", "coordinates": [2.3317854623021534, 48.669856074950665]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dd924ee46747d7b941d38a532917febf75acb4d1", "fields": {"departement": "91", "stop_lat": 48.67269658436055, "code_postal": "91589", "stop_lon": 2.3409326784132385, "coord": [48.67269658436055, 2.3409326784132385], "stop_id": 3732162, "stop_desc": "FACE 5 AV HENRI OUZILLEAU - 91589", "stop_name": "COLLEGE JEAN MERMOZ"}, "geometry": {"type": "Point", "coordinates": [2.3409326784132385, 48.67269658436055]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "673622849b47a44485386158abe766d43a569e01", "fields": {"departement": "91", "stop_lat": 48.692258585581776, "code_postal": "91326", "stop_lon": 2.3761394374852545, "coord": [48.692258585581776, 2.3761394374852545], "stop_id": 3732204, "stop_desc": "60 AVENUE D'ESTIENNE D'ORVES - 91326", "stop_name": "MARCHE DE JUVISY"}, "geometry": {"type": "Point", "coordinates": [2.3761394374852545, 48.692258585581776]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "199445352457b2b2b87be8b092e5bad98786d2c0", "fields": {"departement": "91", "stop_lat": 48.69769829702339, "code_postal": "91027", "stop_lon": 2.3708207301238646, "coord": [48.69769829702339, 2.3708207301238646], "stop_id": 3732209, "stop_desc": "4-6 ROUTE DE MONTLHERY - 91027", "stop_name": "PYRAMIDE DE JUVISY"}, "geometry": {"type": "Point", "coordinates": [2.3708207301238646, 48.69769829702339]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0dddbd13ae161107d670e10822ca74030d1a191c", "fields": {"departement": "91", "stop_lat": 48.68576575323934, "code_postal": "91589", "stop_lon": 2.347381912310779, "coord": [48.68576575323934, 2.347381912310779], "stop_id": 3732214, "stop_desc": "87-89 BD ARISTIDE BRIAND - 91589", "stop_name": "LES PEUPLIERS"}, "geometry": {"type": "Point", "coordinates": [2.347381912310779, 48.68576575323934]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "449664bef54138f04b22a0ac2254112031e9b125", "fields": {"departement": "91", "stop_lat": 48.69064764216272, "code_postal": "91326", "stop_lon": 2.381786125631908, "coord": [48.69064764216272, 2.381786125631908], "stop_id": 3732203, "stop_desc": "FACE 41 RUE DES GAULOIS - 91326", "stop_name": "JUVISY RER"}, "geometry": {"type": "Point", "coordinates": [2.381786125631908, 48.69064764216272]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "996d3b2f0233ca987bbfccd7f29a4535e55b3272", "fields": {"departement": "91", "stop_lat": 48.69324782302952, "code_postal": "91326", "stop_lon": 2.3746059371922, "coord": [48.69324782302952, 2.3746059371922], "stop_id": 3732206, "stop_desc": "36 AVENUE RASPAIL - 91326", "stop_name": "PARC DES GROTTES"}, "geometry": {"type": "Point", "coordinates": [2.3746059371922, 48.69324782302952]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aeed759405dadab4ff4bac85a132083313189010", "fields": {"departement": "75", "stop_lat": 48.86293695169323, "code_postal": "75103", "stop_lon": 2.3532738771926867, "coord": [48.86293695169323, 2.3532738771926867], "stop_id": 3747827, "stop_desc": "12 RUE DU GRENIER SAINT-LAZARE - 75103", "stop_name": "GRENIER SAINT-LAZARE - QUARTIER DE L'HORLOGE"}, "geometry": {"type": "Point", "coordinates": [2.3532738771926867, 48.86293695169323]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f292aad4a68aa731f5de8514a17ba56d3641bc20", "fields": {"departement": "75", "stop_lat": 48.86286512108666, "code_postal": "75103", "stop_lon": 2.3527562286421273, "coord": [48.86286512108666, 2.3527562286421273], "stop_id": 3747826, "stop_desc": "15 R DU GRENIER SAINT-LAZARE - 75103", "stop_name": "GRENIER SAINT-LAZARE - QUARTIER DE L'HORLOGE"}, "geometry": {"type": "Point", "coordinates": [2.3527562286421273, 48.86286512108666]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "327bfb152169a3c8f02ddd3a6bd996055c439bfa", "fields": {"departement": "75", "stop_lat": 48.841030074958574, "code_postal": "75112", "stop_lon": 2.4120202195413376, "coord": [48.841030074958574, 2.4120202195413376], "stop_id": 3747866, "stop_desc": "FACE 17-19 AVENUE EMILE LAURENT - 75112", "stop_name": "PORTE DE MONTEMPOIVRE"}, "geometry": {"type": "Point", "coordinates": [2.4120202195413376, 48.841030074958574]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9be9ee380d4edabe119b04c7560d47175698a31a", "fields": {"departement": "75", "stop_lat": 48.86917525585135, "code_postal": "75102", "stop_lon": 2.3381810732063615, "coord": [48.86917525585135, 2.3381810732063615], "stop_id": 3747819, "stop_desc": "7 RUE DU 4 SEPTEMBRE - 75102", "stop_name": "RICHELIEU - 4 SEPTEMBRE"}, "geometry": {"type": "Point", "coordinates": [2.3381810732063615, 48.86917525585135]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2db66c716e6f2604d35d8993fd01d1dcd9673759", "fields": {"departement": "75", "stop_lat": 48.86396208953466, "code_postal": "75101", "stop_lon": 2.3481795530423706, "coord": [48.86396208953466, 2.3481795530423706], "stop_id": 3747824, "stop_desc": "19 RUE ETIENNE MARCEL - 75101", "stop_name": "TURBIGO - ETIENNE MARCEL"}, "geometry": {"type": "Point", "coordinates": [2.3481795530423706, 48.86396208953466]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8542befd6331a52445d47531edb6989cc0d3350b", "fields": {"departement": "75", "stop_lat": 48.84566745364979, "code_postal": "75112", "stop_lon": 2.3963670828124224, "coord": [48.84566745364979, 2.3963670828124224], "stop_id": 3747857, "stop_desc": "5 BIS AV DE SAINT-MANDE - 75112", "stop_name": "FABRE D'EGLANTINE"}, "geometry": {"type": "Point", "coordinates": [2.3963670828124224, 48.84566745364979]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "31620729e653587e8208afd70debc9c72ec01c1d", "fields": {"departement": "75", "stop_lat": 48.86099558876234, "code_postal": "75104", "stop_lon": 2.353899855200271, "coord": [48.86099558876234, 2.353899855200271], "stop_id": 3747828, "stop_desc": "35 RUE RAMBUTEAU - 75104", "stop_name": "CENTRE GEORGES POMPIDOU"}, "geometry": {"type": "Point", "coordinates": [2.353899855200271, 48.86099558876234]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "146c1c7c1f82a79b4458bd3af2b61b21905ee8d7", "fields": {"departement": "75", "stop_lat": 48.83977915980164, "code_postal": "75112", "stop_lon": 2.3992332840055406, "coord": [48.83977915980164, 2.3992332840055406], "stop_id": 3747853, "stop_desc": "69 BOULEVARD DE REUILLY - 75112", "stop_name": "PICPUS - REUILLY"}, "geometry": {"type": "Point", "coordinates": [2.3992332840055406, 48.83977915980164]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0393bb76680590895a06ff2749574807337bcc7f", "fields": {"departement": "75", "stop_lat": 48.84644830763424, "code_postal": "75112", "stop_lon": 2.3773307944168156, "coord": [48.84644830763424, 2.3773307944168156], "stop_id": 3747839, "stop_desc": "69 AVENUE DAUMESNIL - 75112", "stop_name": "DAUMESNIL - DIDEROT"}, "geometry": {"type": "Point", "coordinates": [2.3773307944168156, 48.84644830763424]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "920f2807cffce9339bc980a62be280936cc23b94", "fields": {"departement": "75", "stop_lat": 48.84252123408826, "code_postal": "75112", "stop_lon": 2.3975345089240827, "coord": [48.84252123408826, 2.3975345089240827], "stop_id": 3747855, "stop_desc": "70 RUE DE PICPUS - 75112", "stop_name": "HOPITAL ROTHSCHILD"}, "geometry": {"type": "Point", "coordinates": [2.3975345089240827, 48.84252123408826]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e1769b37ad696a39d51e05c55022afe91abccc1b", "fields": {"departement": "91", "stop_lat": 48.685064978818346, "code_postal": "91589", "stop_lon": 2.3325576517803883, "coord": [48.685064978818346, 2.3325576517803883], "stop_id": 3732216, "stop_desc": "21 AVENUE DU MARECHAL DE LATTRE DE TASSIGNY - 91589", "stop_name": "COLLEGE LES GATINES"}, "geometry": {"type": "Point", "coordinates": [2.3325576517803883, 48.685064978818346]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e7de0cf3741c6528c2f919741cc5499d29f07a2b", "fields": {"departement": "75", "stop_lat": 48.88087584272046, "code_postal": "75110", "stop_lon": 2.351726002486145, "coord": [48.88087584272046, 2.351726002486145], "stop_id": 3740299, "stop_desc": "129 BOULEVARD DE MAGENTA - 75110", "stop_name": "MAGENTA - MAUBEUGE - GARE DU NORD"}, "geometry": {"type": "Point", "coordinates": [2.351726002486145, 48.88087584272046]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "723cd53998247da148c8ce2de89e2a1b0635b37c", "fields": {"departement": "75", "stop_lat": 48.87487493330798, "code_postal": "75117", "stop_lon": 2.2956169812679326, "coord": [48.87487493330798, 2.2956169812679326], "stop_id": 3740315, "stop_desc": "AVENUE DE WAGRAM - 75117", "stop_name": "CHARLES DE GAULLE - ETOILE - WAGRAM"}, "geometry": {"type": "Point", "coordinates": [2.2956169812679326, 48.87487493330798]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "af4b2e07d9fc4d04bc4e507b1749df038b048f30", "fields": {"departement": "75", "stop_lat": 48.880748437414184, "code_postal": "75108", "stop_lon": 2.3130268622025185, "coord": [48.880748437414184, 2.3130268622025185], "stop_id": 3740329, "stop_desc": "31 BOULEVARD DE COURCELLES - 75108", "stop_name": "MALESHERBES - COURCELLES"}, "geometry": {"type": "Point", "coordinates": [2.3130268622025185, 48.880748437414184]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9061674159d63eb501cf7960be55cd3f2e615de4", "fields": {"departement": "75", "stop_lat": 48.87323478976855, "code_postal": "75108", "stop_lon": 2.311695174941694, "coord": [48.87323478976855, 2.311695174941694], "stop_id": 3740521, "stop_desc": "64 BIS RUE LA BOETIE - 75108", "stop_name": "SAINT-PHILIPPE-DU-ROULE"}, "geometry": {"type": "Point", "coordinates": [2.311695174941694, 48.87323478976855]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "40d095eb98427d6d27e1d938f9657058f21d78bf", "fields": {"departement": "75", "stop_lat": 48.876257176334846, "code_postal": "75109", "stop_lon": 2.3326902182697107, "coord": [48.876257176334846, 2.3326902182697107], "stop_id": 3740514, "stop_desc": "59 RUE DE CHATEAUDUN - 75109", "stop_name": "TRINITE"}, "geometry": {"type": "Point", "coordinates": [2.3326902182697107, 48.876257176334846]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4c0e9e87fd0ae5f43d0f752da3f34f058bb6db1b", "fields": {"departement": "75", "stop_lat": 48.87634698925498, "code_postal": "75109", "stop_lon": 2.331327681532409, "coord": [48.87634698925498, 2.331327681532409], "stop_id": 3740513, "stop_desc": "PLACE D'ESTIENNE D'ORVES - 75109", "stop_name": "TRINITE"}, "geometry": {"type": "Point", "coordinates": [2.331327681532409, 48.87634698925498]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "376fb1d0907329a392760450d9733b22166b1e82", "fields": {"departement": "75", "stop_lat": 48.864096307085475, "code_postal": "75116", "stop_lon": 2.288242472786513, "coord": [48.864096307085475, 2.288242472786513], "stop_id": 3740322, "stop_desc": "93 AVENUE KLEBER - 75116", "stop_name": "TROCADERO"}, "geometry": {"type": "Point", "coordinates": [2.288242472786513, 48.864096307085475]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d27f99766fa3a84454d7e7d6cab348cd31ce4cfb", "fields": {"departement": "91", "stop_lat": 48.6740359505754, "code_postal": "91589", "stop_lon": 2.3388290621585237, "coord": [48.6740359505754, 2.3388290621585237], "stop_id": 3732223, "stop_desc": "AV HENRI OUZILLEAU - 91589", "stop_name": "UTRILLO"}, "geometry": {"type": "Point", "coordinates": [2.3388290621585237, 48.6740359505754]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "903104d095d85a5b4f7e79b9822fc37b28b379b3", "fields": {"departement": "75", "stop_lat": 48.87659858503417, "code_postal": "75109", "stop_lon": 2.344080984529833, "coord": [48.87659858503417, 2.344080984529833], "stop_id": 3740507, "stop_desc": "6 RUE LAMARTINE - 75109", "stop_name": "CADET"}, "geometry": {"type": "Point", "coordinates": [2.344080984529833, 48.87659858503417]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "818733503f8f996c494848d4fa16694f0f61e062", "fields": {"departement": "75", "stop_lat": 48.86817760577774, "code_postal": "75102", "stop_lon": 2.3335219409225676, "coord": [48.86817760577774, 2.3335219409225676], "stop_id": 3747881, "stop_desc": "30-32 AVENUE DE L'OPERA - 75102", "stop_name": "PETITS CHAMPS - DANIELLE CASANOVA"}, "geometry": {"type": "Point", "coordinates": [2.3335219409225676, 48.86817760577774]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "adc6142b42356e4139391f50306d64b16ce80edd", "fields": {"departement": "75", "stop_lat": 48.875489129057435, "code_postal": "75110", "stop_lon": 2.3689465790102533, "coord": [48.875489129057435, 2.3689465790102533], "stop_id": 3747916, "stop_desc": "27 RUE JULIETTE DODU - 75110", "stop_name": "GRANGE AUX BELLES - JULIETTE DODU"}, "geometry": {"type": "Point", "coordinates": [2.3689465790102533, 48.875489129057435]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "75e52d5f50f051206d339d31466aa99e0038eca8", "fields": {"departement": "75", "stop_lat": 48.878384730659775, "code_postal": "75110", "stop_lon": 2.361753913742779, "coord": [48.878384730659775, 2.361753913742779], "stop_id": 3747913, "stop_desc": "FACE 186 RUE DU FAUBOURG SAINT-MARTIN - 75110", "stop_name": "CHATEAU LANDON"}, "geometry": {"type": "Point", "coordinates": [2.361753913742779, 48.878384730659775]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "36878b89198158070d211f86ccc95df1f1e42ba6", "fields": {"departement": "75", "stop_lat": 48.86472949410977, "code_postal": "75111", "stop_lon": 2.3750972540746553, "coord": [48.86472949410977, 2.3750972540746553], "stop_id": 3747924, "stop_desc": "86-88 AVENUE PARMENTIER - 75111", "stop_name": "PARMENTIER - REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.3750972540746553, 48.86472949410977]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "55e0a006ac242a69b12563f030139365de00465a", "fields": {"departement": "75", "stop_lat": 48.857721488469195, "code_postal": "75103", "stop_lon": 2.3675191999928353, "coord": [48.857721488469195, 2.3675191999928353], "stop_id": 3747871, "stop_desc": "2 RUE SAINT GILLES - 75103", "stop_name": "TOURNELLES - SAINT-GILLES"}, "geometry": {"type": "Point", "coordinates": [2.3675191999928353, 48.857721488469195]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "11dc9c69d1dcdff4a42027309dbdbdede317f7c2", "fields": {"departement": "75", "stop_lat": 48.8640699076453, "code_postal": "75102", "stop_lon": 2.348506505263284, "coord": [48.8640699076453, 2.348506505263284], "stop_id": 3747876, "stop_desc": "16 RUE ETIENNE MARCEL - 75102", "stop_name": "TURBIGO - ETIENNE MARCEL"}, "geometry": {"type": "Point", "coordinates": [2.348506505263284, 48.8640699076453]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "72b9c322da4ec5ba2d78a3b341dac53b889751eb", "fields": {"departement": "75", "stop_lat": 48.86212264088009, "code_postal": "75111", "stop_lon": 2.3766754518164968, "coord": [48.86212264088009, 2.3766754518164968], "stop_id": 3747925, "stop_desc": "37 AVENUE PARMENTIER - 75111", "stop_name": "SAINT-AMBROISE"}, "geometry": {"type": "Point", "coordinates": [2.3766754518164968, 48.86212264088009]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e0579a03ebd02c607fb316eb4bcb1e564502e0d2", "fields": {"departement": "75", "stop_lat": 48.87628189386968, "code_postal": "75110", "stop_lon": 2.3608264014869884, "coord": [48.87628189386968, 2.3608264014869884], "stop_id": 3747910, "stop_desc": "156 RUE DU FAUBOURG SAINT-MARTIN - 75110", "stop_name": "VERDUN"}, "geometry": {"type": "Point", "coordinates": [2.3608264014869884, 48.87628189386968]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "207e46d091197ac734f00cbb23ce75ffd0614f72", "fields": {"departement": "75", "stop_lat": 48.86046829447628, "code_postal": "75111", "stop_lon": 2.378635635277166, "coord": [48.86046829447628, 2.378635635277166], "stop_id": 3747928, "stop_desc": "28 AVENUE PARMENTIER - 75111", "stop_name": "CHEMIN VERT"}, "geometry": {"type": "Point", "coordinates": [2.378635635277166, 48.86046829447628]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ea9156b96cf03a5ac70c158394d3c2d0f85c4f89", "fields": {"departement": "75", "stop_lat": 48.86595774226206, "code_postal": "75102", "stop_lon": 2.340524095682321, "coord": [48.86595774226206, 2.340524095682321], "stop_id": 3747879, "stop_desc": "2 RUE DE LA FEUILLADE - 75102", "stop_name": "VICTOIRES"}, "geometry": {"type": "Point", "coordinates": [2.340524095682321, 48.86595774226206]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "108c024b6e50645e07554dae2f51d58294c02dcb", "fields": {"departement": "75", "stop_lat": 48.83504779323609, "code_postal": "75112", "stop_lon": 2.4203844860123476, "coord": [48.83504779323609, 2.4203844860123476], "stop_id": 3747954, "stop_desc": "FACE 47 AVENUE DAUMESNIL - 75112", "stop_name": "SAINT-MANDE - DEMI LUNE - PARC ZOOLOGIQUE"}, "geometry": {"type": "Point", "coordinates": [2.4203844860123476, 48.83504779323609]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0f8b354f21958c1a4952d6c618b1eab942f62990", "fields": {"departement": "94", "stop_lat": 48.835164850056, "code_postal": "94067", "stop_lon": 2.4200715404837774, "coord": [48.835164850056, 2.4200715404837774], "stop_id": 3747961, "stop_desc": "47 AVENUE DAUMESNIL - 94067", "stop_name": "SAINT-MANDE - DEMI LUNE - PARC ZOOLOGIQUE"}, "geometry": {"type": "Point", "coordinates": [2.4200715404837774, 48.835164850056]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ca0b24a3ff747c820db965f162a1be87538fa9ab", "fields": {"departement": "75", "stop_lat": 48.87781949763114, "code_postal": "75110", "stop_lon": 2.3564941357294393, "coord": [48.87781949763114, 2.3564941357294393], "stop_id": 3747969, "stop_desc": "140-142 RUE DU FAUBOURG SAINT-DENIS - 75110", "stop_name": "VALENCIENNES"}, "geometry": {"type": "Point", "coordinates": [2.3564941357294393, 48.87781949763114]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ad871a12b8b912c269c399a15ab9e0e08975f8ca", "fields": {"departement": "75", "stop_lat": 48.84153453856694, "code_postal": "75112", "stop_lon": 2.3935846791791637, "coord": [48.84153453856694, 2.3935846791791637], "stop_id": 3747941, "stop_desc": "117 RUE DE REUILLY - 75112", "stop_name": "RUE DE LA GARE DE REUILLY"}, "geometry": {"type": "Point", "coordinates": [2.3935846791791637, 48.84153453856694]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7438524e5b7553c9d11a12ba29b5769c94c10179", "fields": {"departement": "75", "stop_lat": 48.83559544862544, "code_postal": "75112", "stop_lon": 2.407328968416312, "coord": [48.83559544862544, 2.407328968416312], "stop_id": 3747963, "stop_desc": "1 PLACE EDOUARD RENARD - 75112", "stop_name": "PLACE EDOUARD RENARD"}, "geometry": {"type": "Point", "coordinates": [2.407328968416312, 48.83559544862544]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d570ec252a77eb82e76ceca877ead166f386b6cf", "fields": {"departement": "94", "stop_lat": 48.83389375748938, "code_postal": "94067", "stop_lon": 2.4123094477396916, "coord": [48.83389375748938, 2.4123094477396916], "stop_id": 3747962, "stop_desc": "5 AVENUE DAUMESNIL - 94067", "stop_name": "PARC ZOOLOGIQUE"}, "geometry": {"type": "Point", "coordinates": [2.4123094477396916, 48.83389375748938]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e33697d374dd652e5272ce15e5a371670357b91d", "fields": {"departement": "75", "stop_lat": 48.852881366237064, "code_postal": "75111", "stop_lon": 2.38283789208868, "coord": [48.852881366237064, 2.38283789208868], "stop_id": 3747932, "stop_desc": "41 R FAIDHERBE - 75111", "stop_name": "CHARONNE - CHANZY"}, "geometry": {"type": "Point", "coordinates": [2.38283789208868, 48.852881366237064]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "61a8e6ee1b0bd9bd552f005f3e578c19e02ceb93", "fields": {"departement": "75", "stop_lat": 48.83825113999452, "code_postal": "75112", "stop_lon": 2.399490149089778, "coord": [48.83825113999452, 2.399490149089778], "stop_id": 3747945, "stop_desc": "221 AVENUE DAUMESNIL - 75112", "stop_name": "SIDI BRAHIM"}, "geometry": {"type": "Point", "coordinates": [2.399490149089778, 48.83825113999452]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "90d240c5b898f64975ac18dfe17ff478cb8af6b3", "fields": {"departement": "75", "stop_lat": 48.84136965468415, "code_postal": "75112", "stop_lon": 2.4389125278259525, "coord": [48.84136965468415, 2.4389125278259525], "stop_id": 3747957, "stop_desc": "COURS DES MARECHAUX - 75112", "stop_name": "PARC FLORAL"}, "geometry": {"type": "Point", "coordinates": [2.4389125278259525, 48.84136965468415]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "67d10a0a55c9ee495c35edde80e6c0de7c26d7d9", "fields": {"departement": "75", "stop_lat": 48.870392784817895, "code_postal": "75110", "stop_lon": 2.370905280239328, "coord": [48.870392784817895, 2.370905280239328], "stop_id": 3747965, "stop_desc": "154 AVENUE PARMENTIER - 75110", "stop_name": "GONCOURT"}, "geometry": {"type": "Point", "coordinates": [2.370905280239328, 48.870392784817895]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7bd451d7d98b5593bbb6962a9a35ff9446500875", "fields": {"departement": "94", "stop_lat": 48.79963823044856, "code_postal": "94019", "stop_lon": 2.544080540001482, "coord": [48.79963823044856, 2.544080540001482], "stop_id": 3743493, "stop_desc": "67 ROUTE DE LA LIBERATION - 94019", "stop_name": "RUE DES FUSILLES DE CHATEAUBRIANT"}, "geometry": {"type": "Point", "coordinates": [2.544080540001482, 48.79963823044856]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "57076e5735432331069a6f4f31cd5d57983b0d8b", "fields": {"departement": "94", "stop_lat": 48.817445659342866, "code_postal": "94017", "stop_lon": 2.4955234559960484, "coord": [48.817445659342866, 2.4955234559960484], "stop_id": 3743479, "stop_desc": "112-114 AVENUE ROGER SALENGRO - 94017", "stop_name": "JEAN-BAPTISTE CLEMENT"}, "geometry": {"type": "Point", "coordinates": [2.4955234559960484, 48.817445659342866]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "14b676d384a2ec397099550dc40c0085191ce5b3", "fields": {"departement": "94", "stop_lat": 48.8009974528633, "code_postal": "94019", "stop_lon": 2.5480315676302205, "coord": [48.8009974528633, 2.5480315676302205], "stop_id": 3743491, "stop_desc": "35 RUE DU PLESSIS TREVISE - 94019", "stop_name": "GROUPE SCOLAIRE ROUSSEAU"}, "geometry": {"type": "Point", "coordinates": [2.5480315676302205, 48.8009974528633]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9fd1dd06f1824f1153b03a02a54df5590a50da03", "fields": {"departement": "94", "stop_lat": 48.806027291317086, "code_postal": "94019", "stop_lon": 2.534254613211186, "coord": [48.806027291317086, 2.534254613211186], "stop_id": 3743481, "stop_desc": "FACE 2 AVENUE MAURICE THOREZ - 94019", "stop_name": "FORT DE CHAMPIGNY"}, "geometry": {"type": "Point", "coordinates": [2.534254613211186, 48.806027291317086]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1a2ecc707643026f7b100b9e7ed7c96c18bc0289", "fields": {"departement": "94", "stop_lat": 48.8053443321774, "code_postal": "94019", "stop_lon": 2.554825354314781, "coord": [48.8053443321774, 2.554825354314781], "stop_id": 3743518, "stop_desc": "ROUTE DU PLESSIS TREVISE - 94019", "stop_name": "COLLEGE BOILEAU"}, "geometry": {"type": "Point", "coordinates": [2.554825354314781, 48.8053443321774]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "203a5275216a0e72a86d7eb4808f8de1d9950be3", "fields": {"departement": "94", "stop_lat": 48.812500911822575, "code_postal": "94017", "stop_lon": 2.5156354416957813, "coord": [48.812500911822575, 2.5156354416957813], "stop_id": 3743469, "stop_desc": "1 AVENUE MARX DORMOY - 94017", "stop_name": "RUE DU MONUMENT"}, "geometry": {"type": "Point", "coordinates": [2.5156354416957813, 48.812500911822575]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e846bbe197f7f7c4f6c865ac85bddce4d675dd4c", "fields": {"departement": "94", "stop_lat": 48.808496295953304, "code_postal": "94017", "stop_lon": 2.524765932868587, "coord": [48.808496295953304, 2.524765932868587], "stop_id": 3743500, "stop_desc": "59 AVENUE MARX DORMOY - 94017", "stop_name": "LA CASCADE"}, "geometry": {"type": "Point", "coordinates": [2.524765932868587, 48.808496295953304]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ed6e8417abaa671d61b953f6b1113907035f19f7", "fields": {"departement": "94", "stop_lat": 48.81497727135156, "code_postal": "94017", "stop_lon": 2.5062399860581337, "coord": [48.81497727135156, 2.5062399860581337], "stop_id": 3743476, "stop_desc": "42 AVENUE JEAN JAURES - 94017", "stop_name": "GUITTARD"}, "geometry": {"type": "Point", "coordinates": [2.5062399860581337, 48.81497727135156]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e14cf0cdd1991018df99a35984f30b3eca064a2a", "fields": {"departement": "94", "stop_lat": 48.80327671942918, "code_postal": "94019", "stop_lon": 2.5500817450343187, "coord": [48.80327671942918, 2.5500817450343187], "stop_id": 3743490, "stop_desc": "AVENUE BOILEAU - 94019", "stop_name": "RABELAIS"}, "geometry": {"type": "Point", "coordinates": [2.5500817450343187, 48.80327671942918]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4a0bac840a45f556cef222c9f0f3a29cbfb59522", "fields": {"departement": "94", "stop_lat": 48.8064148949998, "code_postal": "94017", "stop_lon": 2.5542719544018957, "coord": [48.8064148949998, 2.5542719544018957], "stop_id": 3743485, "stop_desc": "AVENUE BOILEAU - 94017", "stop_name": "HOUDON"}, "geometry": {"type": "Point", "coordinates": [2.5542719544018957, 48.8064148949998]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c637de74abeb8cbddd38ca170ebaf58caf8acfd9", "fields": {"departement": "75", "stop_lat": 48.868738512749765, "code_postal": "75108", "stop_lon": 2.3015344168684257, "coord": [48.868738512749765, 2.3015344168684257], "stop_id": 3740524, "stop_desc": "FACE 46 RUE PIERRE CHARRON - 75108", "stop_name": "PIERRE CHARRON - FRANCOIS 1ER"}, "geometry": {"type": "Point", "coordinates": [2.3015344168684257, 48.868738512749765]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7f266fb93e0828c3f062ed0b1ac4f3e13b076bba", "fields": {"departement": "75", "stop_lat": 48.8684599009924, "code_postal": "75108", "stop_lon": 2.3015209855762686, "coord": [48.8684599009924, 2.3015209855762686], "stop_id": 3740525, "stop_desc": "48 RUE PIERRE CHARRON - 75108", "stop_name": "PIERRE CHARRON - FRANCOIS 1ER"}, "geometry": {"type": "Point", "coordinates": [2.3015209855762686, 48.8684599009924]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "41fc105bab1e24a436bc5e54636c9b44851ec1ed", "fields": {"departement": "75", "stop_lat": 48.87447561220089, "code_postal": "75108", "stop_lon": 2.314528521056996, "coord": [48.87447561220089, 2.314528521056996], "stop_id": 3740558, "stop_desc": "10-12 AVENUE PERCIER - 75108", "stop_name": "HAUSSMANN - MIROMESNIL"}, "geometry": {"type": "Point", "coordinates": [2.314528521056996, 48.87447561220089]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1b9238d0aebb4e6e5f888f1cbfa6eb85c2ea9f30", "fields": {"departement": "75", "stop_lat": 48.87794593694368, "code_postal": "75110", "stop_lon": 2.3521884586483655, "coord": [48.87794593694368, 2.3521884586483655], "stop_id": 3740560, "stop_desc": "130 RUE LA FAYETTE - 75110", "stop_name": "PLACE FRANZ LISZT"}, "geometry": {"type": "Point", "coordinates": [2.3521884586483655, 48.87794593694368]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8e5ac00966b7462c47236b80169fc6f29bea2d27", "fields": {"departement": "75", "stop_lat": 48.84739026175083, "code_postal": "75116", "stop_lon": 2.2578771972845697, "coord": [48.84739026175083, 2.2578771972845697], "stop_id": 3740548, "stop_desc": "PLACE PORTE D'AUTEUIL - 75116", "stop_name": "PORTE D'AUTEUIL"}, "geometry": {"type": "Point", "coordinates": [2.2578771972845697, 48.84739026175083]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b7713124f189dc7b0d961c27c358e61ef80f1261", "fields": {"departement": "75", "stop_lat": 48.865276148868965, "code_postal": "75116", "stop_lon": 2.2947392336920487, "coord": [48.865276148868965, 2.2947392336920487], "stop_id": 3740527, "stop_desc": "1 AVENUE PIERRE 1ER DE SERBIE - 75116", "stop_name": "IENA"}, "geometry": {"type": "Point", "coordinates": [2.2947392336920487, 48.865276148868965]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "22716e48b43010c331f7683cec898de1c945c003", "fields": {"departement": "75", "stop_lat": 48.848352867836674, "code_postal": "75116", "stop_lon": 2.25930560819641, "coord": [48.848352867836674, 2.25930560819641], "stop_id": 3740549, "stop_desc": "BOULEVARD SUCHET - 75116", "stop_name": "GARE D'AUTEUIL"}, "geometry": {"type": "Point", "coordinates": [2.25930560819641, 48.848352867836674]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "092e682963d03464e2ba94794433c2d9b783a7e2", "fields": {"departement": "75", "stop_lat": 48.859633993882, "code_postal": "75116", "stop_lon": 2.278180844388691, "coord": [48.859633993882, 2.278180844388691], "stop_id": 3740537, "stop_desc": "78 AV PAUL DOUMER - 75116", "stop_name": "PLACE POSSOZ"}, "geometry": {"type": "Point", "coordinates": [2.278180844388691, 48.859633993882]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2148399e71ca452f104b5f6c992fd761c1067a20", "fields": {"departement": "75", "stop_lat": 48.85899911682669, "code_postal": "75116", "stop_lon": 2.2675301527042517, "coord": [48.85899911682669, 2.2675301527042517], "stop_id": 3740550, "stop_desc": "1 RUE LOUIS BOILLY - 75116", "stop_name": "LOUIS BOILLY"}, "geometry": {"type": "Point", "coordinates": [2.2675301527042517, 48.85899911682669]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "49e66b27edc6791999fbb1d1be81159d28c05ae0", "fields": {"departement": "75", "stop_lat": 48.861218372452, "code_postal": "75116", "stop_lon": 2.2836684303554344, "coord": [48.861218372452, 2.2836684303554344], "stop_id": 3740534, "stop_desc": "12 AVENUE PAUL DOUMER - 75116", "stop_name": "SCHEFFER"}, "geometry": {"type": "Point", "coordinates": [2.2836684303554344, 48.861218372452]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "754e06a3e903b54507a85d6eeca8a1e7684384b9", "fields": {"departement": "75", "stop_lat": 48.847078787112714, "code_postal": "75120", "stop_lon": 2.411851908753727, "coord": [48.847078787112714, 2.411851908753727], "stop_id": 3748081, "stop_desc": "5 AVENUE DE LA PORTE DE VINCENNES - 75120", "stop_name": "PORTE DE VINCENNES"}, "geometry": {"type": "Point", "coordinates": [2.411851908753727, 48.847078787112714]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "24c4a5be0dfb0cb90c435cdc95f73b2611e85b06", "fields": {"departement": "75", "stop_lat": 48.84840468548921, "code_postal": "75105", "stop_lon": 2.349728722188171, "coord": [48.84840468548921, 2.349728722188171], "stop_id": 3748096, "stop_desc": "12 RUE DES ECOLES - 75105", "stop_name": "MONGE - MUTUALITE"}, "geometry": {"type": "Point", "coordinates": [2.349728722188171, 48.84840468548921]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "73e233115102db8cbe2cf8a9a661b21b81514f5e", "fields": {"departement": "92", "stop_lat": 48.88381571699573, "code_postal": "92051", "stop_lon": 2.272102785565041, "coord": [48.88381571699573, 2.272102785565041], "stop_id": 3749714, "stop_desc": "FACE 103 AVENUE ACHILLE PERETTI OU DU ROULE - 92051", "stop_name": "EGLISE SAINT-PIERRE"}, "geometry": {"type": "Point", "coordinates": [2.272102785565041, 48.88381571699573]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a850968b1e849673a5239f845943fa31e423f98d", "fields": {"departement": "75", "stop_lat": 48.877134298853896, "code_postal": "75120", "stop_lon": 2.4091564305240936, "coord": [48.877134298853896, 2.4091564305240936], "stop_id": 3749740, "stop_desc": "GARE ROUTIERE SUR DALLE DU BD PERIPHERIQUE - 75120", "stop_name": "PORTE DES LILAS"}, "geometry": {"type": "Point", "coordinates": [2.4091564305240936, 48.877134298853896]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ac9532d9dd4fd46ed326efeb0538e68369d5990a", "fields": {"departement": "92", "stop_lat": 48.884523379198406, "code_postal": "92051", "stop_lon": 2.2679727810671557, "coord": [48.884523379198406, 2.2679727810671557], "stop_id": 3749717, "stop_desc": "137-145 AVENUE ACHILLE PERETTI OU DU ROULE - 92051", "stop_name": "SAINTE-FOY"}, "geometry": {"type": "Point", "coordinates": [2.2679727810671557, 48.884523379198406]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d380ff14be2dfbc6230fa24cf8263cad7978ee27", "fields": {"departement": "92", "stop_lat": 48.81184495378081, "code_postal": "92046", "stop_lon": 2.294401959261595, "coord": [48.81184495378081, 2.294401959261595], "stop_id": 4473570, "stop_desc": "21 BOULEVARD DE STALINGRAD - 92046", "stop_name": "ROND-POINT GAGARINE"}, "geometry": {"type": "Point", "coordinates": [2.294401959261595, 48.81184495378081]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e3ff30216c8b1d96767c28e400e0b1eeafeade35", "fields": {"departement": "94", "stop_lat": 48.80956891048209, "code_postal": "94003", "stop_lon": 2.3228984916637154, "coord": [48.80956891048209, 2.3228984916637154], "stop_id": 4473580, "stop_desc": "23 BIS AVENUE MARX DORMOY - 94003", "stop_name": "AVENUE ET FORT DE MONTROUGE"}, "geometry": {"type": "Point", "coordinates": [2.3228984916637154, 48.80956891048209]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c85f768da531484a8f8d75cb1a9d5bfb5a8140b5", "fields": {"departement": "94", "stop_lat": 48.810000787175966, "code_postal": "94003", "stop_lon": 2.327470618063137, "coord": [48.810000787175966, 2.327470618063137], "stop_id": 4473583, "stop_desc": "74 AV LAPLACE - 94003", "stop_name": "VACHE NOIRE - CENTRE COMMERCIAL"}, "geometry": {"type": "Point", "coordinates": [2.327470618063137, 48.810000787175966]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d891b55c3f3d94bd6de67bb68727ff78ccc5b969", "fields": {"departement": "94", "stop_lat": 48.808562977830384, "code_postal": "94003", "stop_lon": 2.3309408008390324, "coord": [48.808562977830384, 2.3309408008390324], "stop_id": 4473584, "stop_desc": "FACE 50 AVENUE LAPLACE - 94003", "stop_name": "LENINE"}, "geometry": {"type": "Point", "coordinates": [2.3309408008390324, 48.808562977830384]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d436249e4aa77fc1c4f43f82bc6b3eb8ff900dc2", "fields": {"departement": "94", "stop_lat": 48.80320641374882, "code_postal": "94003", "stop_lon": 2.3381118633136007, "coord": [48.80320641374882, 2.3381118633136007], "stop_id": 4473589, "stop_desc": "10 AV PAUL VAILLANT COUTURIER - 94003", "stop_name": "MAISON DU GRAND CEDRE"}, "geometry": {"type": "Point", "coordinates": [2.3381118633136007, 48.80320641374882]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d4af209b6a17d9bc5c8f767f76cbb4f484cf7400", "fields": {"departement": "94", "stop_lat": 48.81000746744217, "code_postal": "94043", "stop_lon": 2.3626469768954603, "coord": [48.81000746744217, 2.3626469768954603], "stop_id": 4473599, "stop_desc": "3 RUE EDMOND MICHELET - 94043", "stop_name": "LE KREMLIN-BICETRE-METRO"}, "geometry": {"type": "Point", "coordinates": [2.3626469768954603, 48.81000746744217]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fd6e012306bc40710a247468e5215e7fe901942b", "fields": {"departement": "94", "stop_lat": 48.811402915146694, "code_postal": "94041", "stop_lon": 2.384434457204656, "coord": [48.811402915146694, 2.384434457204656], "stop_id": 4473608, "stop_desc": "FACE 100 AVENUE GEORGES GOSNAT - 94041", "stop_name": "MAIRIE D'IVRY-METRO"}, "geometry": {"type": "Point", "coordinates": [2.384434457204656, 48.811402915146694]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9030d27acb5d874c6fe4d5fb34380ad16ae20d75", "fields": {"departement": "94", "stop_lat": 48.812687002283674, "code_postal": "94041", "stop_lon": 2.387279817790889, "coord": [48.812687002283674, 2.387279817790889], "stop_id": 4473610, "stop_desc": "RUE GEORGES GOSNAT - 94041", "stop_name": "HOTEL DE VILLE D'IVRY"}, "geometry": {"type": "Point", "coordinates": [2.387279817790889, 48.812687002283674]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "425255a52d557261328659d2294528f3191bc617", "fields": {"departement": "94", "stop_lat": 48.812247216815784, "code_postal": "94041", "stop_lon": 2.3857960711744384, "coord": [48.812247216815784, 2.3857960711744384], "stop_id": 4473611, "stop_desc": "82 AVENUE GEORGES GOSNAT - 94041", "stop_name": "HOTEL DE VILLE D'IVRY"}, "geometry": {"type": "Point", "coordinates": [2.3857960711744384, 48.812247216815784]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "25cc20764fadcacfe4ded2c370379920a85aeada", "fields": {"departement": "92", "stop_lat": 48.809659111657126, "code_postal": "92049", "stop_lon": 2.325892179402072, "coord": [48.809659111657126, 2.325892179402072], "stop_id": 4473621, "stop_desc": "AVENUE MARX DORMOY - 92049", "stop_name": "PRIEUR DE LA COTE D'OR"}, "geometry": {"type": "Point", "coordinates": [2.325892179402072, 48.809659111657126]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b504f26710fd69aa4e1257f4a4fb2aa679a88696", "fields": {"departement": "92", "stop_lat": 48.827185492025485, "code_postal": "92040", "stop_lon": 2.271479650647873, "coord": [48.827185492025485, 2.271479650647873], "stop_id": 4473630, "stop_desc": "8 RUE MARCEAU - 92040", "stop_name": "MARCEAU"}, "geometry": {"type": "Point", "coordinates": [2.271479650647873, 48.827185492025485]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aafdb9cec908f524068253a20627311bbbd1bfb5", "fields": {"departement": "92", "stop_lat": 48.82189276006719, "code_postal": "92040", "stop_lon": 2.2733238426711146, "coord": [48.82189276006719, 2.2733238426711146], "stop_id": 4473632, "stop_desc": "24-26 RUE AUGUSTE GERVAIS - 92040", "stop_name": "MUSEE"}, "geometry": {"type": "Point", "coordinates": [2.2733238426711146, 48.82189276006719]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f9d407f2973d817f1c85957250ca4b019ef1a069", "fields": {"departement": "94", "stop_lat": 48.80980304722781, "code_postal": "94003", "stop_lon": 2.3273617927425523, "coord": [48.80980304722781, 2.3273617927425523], "stop_id": 4473649, "stop_desc": "AV LAPLACE - 94003", "stop_name": "VACHE NOIRE - CENTRE COMMERCIAL"}, "geometry": {"type": "Point", "coordinates": [2.3273617927425523, 48.80980304722781]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7c5e76017080edbf6b312ecebea14d9011a6e59a", "fields": {"departement": "94", "stop_lat": 48.808562977830384, "code_postal": "94003", "stop_lon": 2.3309408008390324, "coord": [48.808562977830384, 2.3309408008390324], "stop_id": 4473650, "stop_desc": "FACE 50 AVENUE LAPLACE - 94003", "stop_name": "LENINE"}, "geometry": {"type": "Point", "coordinates": [2.3309408008390324, 48.808562977830384]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eac6a100631dc8677ea48002819aa7ddcece8242", "fields": {"departement": "94", "stop_lat": 48.80320641374882, "code_postal": "94003", "stop_lon": 2.3381118633136007, "coord": [48.80320641374882, 2.3381118633136007], "stop_id": 4473653, "stop_desc": "10 AV PAUL VAILLANT COUTURIER - 94003", "stop_name": "MAISON DU GRAND CEDRE"}, "geometry": {"type": "Point", "coordinates": [2.3381118633136007, 48.80320641374882]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "20468cfe8f9fa07b356461610af635a60a6b68e3", "fields": {"departement": "94", "stop_lat": 48.80943303655347, "code_postal": "94043", "stop_lon": 2.3586460244237313, "coord": [48.80943303655347, 2.3586460244237313], "stop_id": 4473657, "stop_desc": "1 RUE DE VERDUN - 94043", "stop_name": "HOPITAL DU KREMLIN-BICETRE"}, "geometry": {"type": "Point", "coordinates": [2.3586460244237313, 48.80943303655347]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1c15079e23d145aad7edb33c85e37e32e12e682b", "fields": {"departement": "94", "stop_lat": 48.812701913757074, "code_postal": "94041", "stop_lon": 2.3703099274559416, "coord": [48.812701913757074, 2.3703099274559416], "stop_id": 4473659, "stop_desc": "40 AVENUE DE VERDUN - 94041", "stop_name": "CIMETIERE PARISIEN - PLACE DU GENERAL DE GAULLE"}, "geometry": {"type": "Point", "coordinates": [2.3703099274559416, 48.812701913757074]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3404a9f8eb40a4a235e40f8259bb9d9ccb80914c", "fields": {"departement": "94", "stop_lat": 48.808395797344296, "code_postal": "94041", "stop_lon": 2.3736546193882346, "coord": [48.808395797344296, 2.3736546193882346], "stop_id": 4473660, "stop_desc": "78 AVENUE DE VERDUN - 94041", "stop_name": "CARNOT"}, "geometry": {"type": "Point", "coordinates": [2.3736546193882346, 48.808395797344296]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "296f9dd744986aeeab7ec5178a0bca4016541493", "fields": {"departement": "92", "stop_lat": 48.8457913597342, "code_postal": "92064", "stop_lon": 2.216197168830745, "coord": [48.8457913597342, 2.216197168830745], "stop_id": 4532988, "stop_desc": "6 RUE COUTUREAU - 92064", "stop_name": "GARE DE SAINT-CLOUD"}, "geometry": {"type": "Point", "coordinates": [2.216197168830745, 48.8457913597342]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "953d942b252f859eb50a6e342a93dcaca9a494a2", "fields": {"departement": "92", "stop_lat": 48.84730682245384, "code_postal": "92064", "stop_lon": 2.212870919101262, "coord": [48.84730682245384, 2.212870919101262], "stop_id": 4532989, "stop_desc": "2 BIS AVENUE DU MARECHAL FOCH - 92064", "stop_name": "MONTRETOUT"}, "geometry": {"type": "Point", "coordinates": [2.212870919101262, 48.84730682245384]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c084c2aa98c416fc3334dbe9656153fe2618b393", "fields": {"departement": "92", "stop_lat": 48.855949945408625, "code_postal": "92063", "stop_lon": 2.194327060177352, "coord": [48.855949945408625, 2.194327060177352], "stop_id": 4532997, "stop_desc": "52 BIS R DU COLONEL DE ROCHEBRUNE - 92063", "stop_name": "EGLISE DE BUZENVAL"}, "geometry": {"type": "Point", "coordinates": [2.194327060177352, 48.855949945408625]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7624d892476ce894ff44bca9e9f35c0f0ac7bffb", "fields": {"departement": "92", "stop_lat": 48.84939309337443, "code_postal": "92064", "stop_lon": 2.2139962291543736, "coord": [48.84939309337443, 2.2139962291543736], "stop_id": 4533004, "stop_desc": "FACE 6 R DE BUZENVAL - 92064", "stop_name": "LYCEE DE SAINT-CLOUD"}, "geometry": {"type": "Point", "coordinates": [2.2139962291543736, 48.84939309337443]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bec25ac15c085f913ca09981989b42778e672691", "fields": {"departement": "92", "stop_lat": 48.857379576568434, "code_postal": "92064", "stop_lon": 2.210776473092148, "coord": [48.857379576568434, 2.210776473092148], "stop_id": 4533011, "stop_desc": "187 BOULEVARD DE LA REPUBLIQUE - 92064", "stop_name": "LA BERENGERE"}, "geometry": {"type": "Point", "coordinates": [2.210776473092148, 48.857379576568434]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d863a9f9c50014364ce5d050f4d19ae5a3c62212", "fields": {"departement": "92", "stop_lat": 48.84880894968146, "code_postal": "92064", "stop_lon": 2.214038471384302, "coord": [48.84880894968146, 2.214038471384302], "stop_id": 4533016, "stop_desc": "114 BOULEVARD DE LA REPUBLIQUE - 92064", "stop_name": "LYCEE DE SAINT-CLOUD"}, "geometry": {"type": "Point", "coordinates": [2.214038471384302, 48.84880894968146]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3e549f9e63c2fa8c513750ea916961ae14e348b2", "fields": {"departement": "92", "stop_lat": 48.846939862303266, "code_postal": "92064", "stop_lon": 2.214342497712777, "coord": [48.846939862303266, 2.214342497712777], "stop_id": 4533019, "stop_desc": "92 BOULEVARD DE LA REPUBLIQUE - 92064", "stop_name": "MONTRETOUT"}, "geometry": {"type": "Point", "coordinates": [2.214342497712777, 48.846939862303266]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "07a6157e44a351a697c24ad28d0529e90b11f7c2", "fields": {"departement": "92", "stop_lat": 48.844365484224866, "code_postal": "92064", "stop_lon": 2.210576714316898, "coord": [48.844365484224866, 2.210576714316898], "stop_id": 4533021, "stop_desc": "50 BOULEVARD DE LA REPUBLIQUE - 92064", "stop_name": "MARCHE DE SAINT-CLOUD"}, "geometry": {"type": "Point", "coordinates": [2.210576714316898, 48.844365484224866]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7d901f58795f23c0a9ef35e046110032dab8e62a", "fields": {"departement": "92", "stop_lat": 48.838597862271754, "code_postal": "92064", "stop_lon": 2.2045183311382797, "coord": [48.838597862271754, 2.2045183311382797], "stop_id": 4533024, "stop_desc": "AV DU GENERAL LECLERC - 92064", "stop_name": "PARC DU PRE SAINT-JEAN"}, "geometry": {"type": "Point", "coordinates": [2.2045183311382797, 48.838597862271754]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4dcaaa5f307761a28a00108fd928bec4017aeb41", "fields": {"departement": "92", "stop_lat": 48.828488798035146, "code_postal": "92077", "stop_lon": 2.1908906066149876, "coord": [48.828488798035146, 2.1908906066149876], "stop_id": 4533027, "stop_desc": "33 RUE DE SAINT-CLOUD - 92077", "stop_name": "COROT"}, "geometry": {"type": "Point", "coordinates": [2.1908906066149876, 48.828488798035146]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "44b708fdc905b8c0708dd28843f84baf247cf227", "fields": {"departement": "92", "stop_lat": 48.82830884465067, "code_postal": "92077", "stop_lon": 2.1907277617769156, "coord": [48.82830884465067, 2.1907277617769156], "stop_id": 4533028, "stop_desc": "22 R DE SAINT-CLOUD - 92077", "stop_name": "COROT"}, "geometry": {"type": "Point", "coordinates": [2.1907277617769156, 48.82830884465067]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cb93ae6bb64cfaefde6c50637c9ce2aec7d5e58e", "fields": {"departement": "92", "stop_lat": 48.821844319080064, "code_postal": "92077", "stop_lon": 2.181762749464267, "coord": [48.821844319080064, 2.181762749464267], "stop_id": 4533033, "stop_desc": "67 R DE VERSAILLES - 92077", "stop_name": "LES ETANGS"}, "geometry": {"type": "Point", "coordinates": [2.181762749464267, 48.821844319080064]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f09c49469d779ea931f566131bc52fc4c22ba802", "fields": {"departement": "92", "stop_lat": 48.81745092553067, "code_postal": "92077", "stop_lon": 2.163429823162754, "coord": [48.81745092553067, 2.163429823162754], "stop_id": 4533042, "stop_desc": "235-237 RUE DE VERSAILLES - 92077", "stop_name": "PORTE VERTE"}, "geometry": {"type": "Point", "coordinates": [2.163429823162754, 48.81745092553067]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2cd739c1def177033b1c127d61933a4c987360a3", "fields": {"departement": "93", "stop_lat": 48.883008234161885, "code_postal": "93064", "stop_lon": 2.4747788328505353, "coord": [48.883008234161885, 2.4747788328505353], "stop_id": 4557267, "stop_desc": "99 AVENUE DU GENERAL DE GAULLE - 93064", "stop_name": "ROSNY 2 - CENTRE COMMERCIAL"}, "geometry": {"type": "Point", "coordinates": [2.4747788328505353, 48.883008234161885]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fb20bc4265fc29b741685d1c2e53078c06a5b2de", "fields": {"departement": "93", "stop_lat": 48.86016161917201, "code_postal": "93049", "stop_lon": 2.503594897486891, "coord": [48.86016161917201, 2.503594897486891], "stop_id": 4557283, "stop_desc": "14 BIS AVENUE GEORGES CLEMENCEAU - 93049", "stop_name": "BOUREAU - GUERINIERE"}, "geometry": {"type": "Point", "coordinates": [2.503594897486891, 48.86016161917201]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "105a0c07ecd8f64a0041bfe3038f246edd08335b", "fields": {"departement": "94", "stop_lat": 48.85146032958376, "code_postal": "94058", "stop_lon": 2.4980922431947783, "coord": [48.85146032958376, 2.4980922431947783], "stop_id": 4557288, "stop_desc": "38 RUE LAMARTINE - 94058", "stop_name": "MARECHAL LYAUTEY"}, "geometry": {"type": "Point", "coordinates": [2.4980922431947783, 48.85146032958376]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "77bd0c3bfe757c22eb4d512fe9e05cd6be079a45", "fields": {"departement": "94", "stop_lat": 48.85228075608887, "code_postal": "94033", "stop_lon": 2.489296917423076, "coord": [48.85228075608887, 2.489296917423076], "stop_id": 4557293, "stop_desc": "AVENUE LOUISON BOBET - 94033", "stop_name": "VAL DE FONTENAY RER - LOUISON BOBET"}, "geometry": {"type": "Point", "coordinates": [2.489296917423076, 48.85228075608887]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "829085bf637047c5d153933f18e9852dfa285a03", "fields": {"departement": "94", "stop_lat": 48.85339768655697, "code_postal": "94033", "stop_lon": 2.4873390145395913, "coord": [48.85339768655697, 2.4873390145395913], "stop_id": 4557294, "stop_desc": "9 AVENUE DU VAL DE FONTENAY - 94033", "stop_name": "VAL DE FONTENAY RER"}, "geometry": {"type": "Point", "coordinates": [2.4873390145395913, 48.85339768655697]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c2831cdaf5340e385baf90c5302fc05b9dc45e96", "fields": {"departement": "94", "stop_lat": 48.84926400554539, "code_postal": "94033", "stop_lon": 2.486891271761358, "coord": [48.84926400554539, 2.486891271761358], "stop_id": 4557298, "stop_desc": "2 RUE ROGER SALENGRO - 94033", "stop_name": "LE BOIS CADET"}, "geometry": {"type": "Point", "coordinates": [2.486891271761358, 48.84926400554539]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5f1c563609ea54884f232e4c82d8f4f826bf43cf", "fields": {"departement": "94", "stop_lat": 48.846263223504465, "code_postal": "94058", "stop_lon": 2.499805541229823, "coord": [48.846263223504465, 2.499805541229823], "stop_id": 4557305, "stop_desc": "176 AVENUE DU GENERAL DE GAULLE - 94058", "stop_name": "VICTOR BASCH"}, "geometry": {"type": "Point", "coordinates": [2.499805541229823, 48.846263223504465]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "605e2dadc5b517e1f51bdfe2a640217edf5a1f4a", "fields": {"departement": "94", "stop_lat": 48.84109791971362, "code_postal": "94058", "stop_lon": 2.4979375730411966, "coord": [48.84109791971362, 2.4979375730411966], "stop_id": 4557308, "stop_desc": "FACE 52 AVENUE LEDRU-ROLLIN - 94058", "stop_name": "LE PARC"}, "geometry": {"type": "Point", "coordinates": [2.4979375730411966, 48.84109791971362]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d8ca77163a4070c16471b5b720df6fbd3519dc4d", "fields": {"departement": "94", "stop_lat": 48.834542735337955, "code_postal": "94052", "stop_lon": 2.4936151418879726, "coord": [48.834542735337955, 2.4936151418879726], "stop_id": 4557313, "stop_desc": "54 BOULEVARD ALBERT 1ER - 94052", "stop_name": "VIADUC"}, "geometry": {"type": "Point", "coordinates": [2.4936151418879726, 48.834542735337955]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1cac238f5dd46b10b0ada5d08374af607246d986", "fields": {"departement": "94", "stop_lat": 48.82153061123755, "code_postal": "94017", "stop_lon": 2.498843367931249, "coord": [48.82153061123755, 2.498843367931249], "stop_id": 4557318, "stop_desc": "FACE 156 BD STALINGRAD - 94017", "stop_name": "ARISTIDE BRIAND"}, "geometry": {"type": "Point", "coordinates": [2.498843367931249, 48.82153061123755]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f518159532e99080abe566aa0ef9d0db9e7f8c7c", "fields": {"departement": "94", "stop_lat": 48.82329843194109, "code_postal": "94017", "stop_lon": 2.507274323448212, "coord": [48.82329843194109, 2.507274323448212], "stop_id": 4557322, "stop_desc": "RUE GERMINAL - 94017", "stop_name": "IRENE JOLIOT CURIE"}, "geometry": {"type": "Point", "coordinates": [2.507274323448212, 48.82329843194109]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d26ac139b39fa84647ec1d1f40d3dfe8e7ed14bf", "fields": {"departement": "94", "stop_lat": 48.81588598409138, "code_postal": "94017", "stop_lon": 2.5118092094724576, "coord": [48.81588598409138, 2.5118092094724576], "stop_id": 4557329, "stop_desc": "AVENUE DE LA REPUBLIQUE - 94017", "stop_name": "REPUBLIQUE - STALINGRAD"}, "geometry": {"type": "Point", "coordinates": [2.5118092094724576, 48.81588598409138]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "49d1879cf68bf4b0c78f274c79290e07ff120775", "fields": {"departement": "93", "stop_lat": 48.90764902827149, "code_postal": "93070", "stop_lon": 2.3271113437454045, "coord": [48.90764902827149, 2.3271113437454045], "stop_id": 4574152, "stop_desc": "91 BOULEVARD VICTOR HUGO - 93070", "stop_name": "CAPITAINE GLARNER"}, "geometry": {"type": "Point", "coordinates": [2.3271113437454045, 48.90764902827149]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1bb212a9cdf62e3c1c4a375305d7446c3b2c0f01", "fields": {"departement": "93", "stop_lat": 48.90945563533875, "code_postal": "93070", "stop_lon": 2.3299877631253376, "coord": [48.90945563533875, 2.3299877631253376], "stop_id": 4574154, "stop_desc": "57-59 BOULEVARD VICTOR HUGO - 93070", "stop_name": "LES BATELIERS"}, "geometry": {"type": "Point", "coordinates": [2.3299877631253376, 48.90945563533875]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cacb02ba9b932ab3607caea893db999b66cf9b4b", "fields": {"departement": "93", "stop_lat": 48.914964898762996, "code_postal": "93070", "stop_lon": 2.3381000804017873, "coord": [48.914964898762996, 2.3381000804017873], "stop_id": 4574159, "stop_desc": "76 RUE DU LANDY - 93070", "stop_name": "LANDY - JAURES"}, "geometry": {"type": "Point", "coordinates": [2.3381000804017873, 48.914964898762996]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d561a488f7b2d2a85b4d57cf0caebfb14c09e149", "fields": {"departement": "93", "stop_lat": 48.91411099802808, "code_postal": "93066", "stop_lon": 2.342995110662038, "coord": [48.91411099802808, 2.342995110662038], "stop_id": 4574161, "stop_desc": "122 R DU LANDY - 93066", "stop_name": "LANDY - ORNANO"}, "geometry": {"type": "Point", "coordinates": [2.342995110662038, 48.91411099802808]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "87078908ef678146025d1e43cea3198629df06a8", "fields": {"departement": "93", "stop_lat": 48.91460496652382, "code_postal": "93066", "stop_lon": 2.3476720907060686, "coord": [48.91460496652382, 2.3476720907060686], "stop_id": 4574164, "stop_desc": "150 R DU LANDY - 93066", "stop_name": "LANDY - PLEYEL"}, "geometry": {"type": "Point", "coordinates": [2.3476720907060686, 48.91460496652382]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "50ca9ea715aa57658fc13fbb0534ef17da453fc1", "fields": {"departement": "93", "stop_lat": 48.9155480488809, "code_postal": "93066", "stop_lon": 2.3527583588299725, "coord": [48.9155480488809, 2.3527583588299725], "stop_id": 4574165, "stop_desc": "7 R DES CHEMINOTS - 93066", "stop_name": "LANDY - CHEMINOTS"}, "geometry": {"type": "Point", "coordinates": [2.3527583588299725, 48.9155480488809]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d354905d0597666a3d2d04f4d62674db7a71d4f0", "fields": {"departement": "93", "stop_lat": 48.915637938262854, "code_postal": "93066", "stop_lon": 2.3526083938828766, "coord": [48.915637938262854, 2.3526083938828766], "stop_id": 4574166, "stop_desc": "FACE 4 R DES CHEMINOTS - 93066", "stop_name": "LANDY - CHEMINOTS"}, "geometry": {"type": "Point", "coordinates": [2.3526083938828766, 48.915637938262854]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "965038fc6a187783dfc24f3abe6f4ca5ae8ee2a2", "fields": {"departement": "93", "stop_lat": 48.91806440565538, "code_postal": "93066", "stop_lon": 2.3527591120111278, "coord": [48.91806440565538, 2.3527591120111278], "stop_id": 4574167, "stop_desc": "11 AV FRANCOIS MITTERRAND - 93066", "stop_name": "STADE DE FRANCE - SAINT-DENIS-RER"}, "geometry": {"type": "Point", "coordinates": [2.3527591120111278, 48.91806440565538]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b00f6392e69a5e162acf9a64b4ae1ccad087d9fc", "fields": {"departement": "93", "stop_lat": 48.91537356682731, "code_postal": "93001", "stop_lon": 2.370866321888482, "coord": [48.91537356682731, 2.370866321888482], "stop_id": 4574178, "stop_desc": "36 RUE DU LANDY - 93001", "stop_name": "CANAL"}, "geometry": {"type": "Point", "coordinates": [2.370866321888482, 48.91537356682731]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2f36f854745f8507d7c4de348434c959d5ae2acf", "fields": {"departement": "93", "stop_lat": 48.918720103113905, "code_postal": "93001", "stop_lon": 2.386932214896267, "coord": [48.918720103113905, 2.386932214896267], "stop_id": 4574187, "stop_desc": "27 RUE DU COMMANDANT L'HERMINIER - 93001", "stop_name": "HEMET"}, "geometry": {"type": "Point", "coordinates": [2.386932214896267, 48.918720103113905]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f5c889249d9ddfee07140401cb96ccdc0fb7d117", "fields": {"departement": "93", "stop_lat": 48.91564949215748, "code_postal": "93001", "stop_lon": 2.399787668480733, "coord": [48.91564949215748, 2.399787668480733], "stop_id": 4574191, "stop_desc": "161 RUE DANIELLE CASANOVA - 93001", "stop_name": "BALZAC"}, "geometry": {"type": "Point", "coordinates": [2.399787668480733, 48.91564949215748]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ddf8d9d174d211c98bb05b1eb2ea8eac1e1c0547", "fields": {"departement": "92", "stop_lat": 48.89937497841858, "code_postal": "92050", "stop_lon": 2.2087383229403086, "coord": [48.89937497841858, 2.2087383229403086], "stop_id": 4024929, "stop_desc": "3 BOULEVARD BLAISE PASCAL - 92050", "stop_name": "PASCAL"}, "geometry": {"type": "Point", "coordinates": [2.2087383229403086, 48.89937497841858]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fbcb483f499b0c9ee89537f0a109c9432cbf9e3b", "fields": {"departement": "92", "stop_lat": 48.894473025592475, "code_postal": "92050", "stop_lon": 2.1759156236892245, "coord": [48.894473025592475, 2.1759156236892245], "stop_id": 4024946, "stop_desc": "53 RUE DU PORT - 92050", "stop_name": "LAVOISIER"}, "geometry": {"type": "Point", "coordinates": [2.1759156236892245, 48.894473025592475]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fa4f38d71a22486cc3940be873238cff08f9d1ff", "fields": {"departement": "92", "stop_lat": 48.88763585185931, "code_postal": "92063", "stop_lon": 2.170894440388964, "coord": [48.88763585185931, 2.170894440388964], "stop_id": 4024953, "stop_desc": "3 R DES 2 GARES - 92063", "stop_name": "RUEIL-MALMAISON RER"}, "geometry": {"type": "Point", "coordinates": [2.170894440388964, 48.88763585185931]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "79802a79aaaf0e1039bfb5ac36bff5298990b893", "fields": {"departement": "92", "stop_lat": 48.89300215761871, "code_postal": "92063", "stop_lon": 2.1715723294829754, "coord": [48.89300215761871, 2.1715723294829754], "stop_id": 4024972, "stop_desc": "FACE 16 RUE SAINTE-CLAIRE DEVILLE - 92063", "stop_name": "SAINTE-CLAIRE DEVILLE"}, "geometry": {"type": "Point", "coordinates": [2.1715723294829754, 48.89300215761871]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b7ce461e13822fbabe9eaef1d2f08f9f6f64db05", "fields": {"departement": "92", "stop_lat": 48.83131672932788, "code_postal": "92012", "stop_lon": 2.2301166848680256, "coord": [48.83131672932788, 2.2301166848680256], "stop_id": 4024983, "stop_desc": "82 R DE SEVRES - 92012", "stop_name": "SOUS PREFECTURE"}, "geometry": {"type": "Point", "coordinates": [2.2301166848680256, 48.83131672932788]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "15c19df52cb69d96852f5b2e2d8f2277d01d4871", "fields": {"departement": "92", "stop_lat": 48.84109238684097, "code_postal": "92012", "stop_lon": 2.2270056560618907, "coord": [48.84109238684097, 2.2270056560618907], "stop_id": 4024990, "stop_desc": "12-14 AV DU MARECHAL DE LATTRE DE TASSIGNY - 92012", "stop_name": "PONT DE SAINT-CLOUD - ALBERT KAHN"}, "geometry": {"type": "Point", "coordinates": [2.2270056560618907, 48.84109238684097]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "84b5c585a3b981c3a86203a0f692cce5e332a09f", "fields": {"departement": "92", "stop_lat": 48.84462436049425, "code_postal": "92064", "stop_lon": 2.2175615892703924, "coord": [48.84462436049425, 2.2175615892703924], "stop_id": 4024996, "stop_desc": "37 RUE DAILLY - 92064", "stop_name": "GARE DE SAINT-CLOUD"}, "geometry": {"type": "Point", "coordinates": [2.2175615892703924, 48.84462436049425]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "443a1d40ba588053cb369e046660cf004d389526", "fields": {"departement": "92", "stop_lat": 48.841966048974, "code_postal": "92064", "stop_lon": 2.2026034346525516, "coord": [48.841966048974, 2.2026034346525516], "stop_id": 4025001, "stop_desc": "26 BIS R PASTEUR - 92064", "stop_name": "LELEGARD"}, "geometry": {"type": "Point", "coordinates": [2.2026034346525516, 48.841966048974]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e40e6a14501a9ecbe4ce09260d00b72ee09e7612", "fields": {"departement": "92", "stop_lat": 48.849154656764874, "code_postal": "92064", "stop_lon": 2.2013591395963967, "coord": [48.849154656764874, 2.2013591395963967], "stop_id": 4025008, "stop_desc": "FACE 161 R DE LA PORTE JAUNE - 92064", "stop_name": "FOCH - 19 JANVIER"}, "geometry": {"type": "Point", "coordinates": [2.2013591395963967, 48.849154656764874]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "24d77541b4a19ebd5a28e27812e972f4b57b05a9", "fields": {"departement": "92", "stop_lat": 48.851280200084524, "code_postal": "92064", "stop_lon": 2.205357475507049, "coord": [48.851280200084524, 2.205357475507049], "stop_id": 4025009, "stop_desc": "FACE 107 R DE BUZENVAL - 92064", "stop_name": "CHAMP DE COURSES"}, "geometry": {"type": "Point", "coordinates": [2.205357475507049, 48.851280200084524]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3349195c7a21c0f470af8651aca78d391e5b8075", "fields": {"departement": "92", "stop_lat": 48.8532349785962, "code_postal": "92064", "stop_lon": 2.2013620683801602, "coord": [48.8532349785962, 2.2013620683801602], "stop_id": 4025010, "stop_desc": "FACE 153 R DE BUZENVAL - 92064", "stop_name": "LABORATOIRE DEBAT"}, "geometry": {"type": "Point", "coordinates": [2.2013620683801602, 48.8532349785962]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d4616518736d953a2b233d633e3837d08d72cb35", "fields": {"departement": "92", "stop_lat": 48.85899141863995, "code_postal": "92063", "stop_lon": 2.1900008999297196, "coord": [48.85899141863995, 2.1900008999297196], "stop_id": 4025014, "stop_desc": "AV DU MARECHAL LECLERC DE HAUTECLOQUE - 92063", "stop_name": "HENRI REGNAULT"}, "geometry": {"type": "Point", "coordinates": [2.1900008999297196, 48.85899141863995]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "810634f7d444976bb59b2b3e8dca412c832d290b", "fields": {"departement": "92", "stop_lat": 48.86463998170797, "code_postal": "92063", "stop_lon": 2.1728072168837236, "coord": [48.86463998170797, 2.1728072168837236], "stop_id": 4025022, "stop_desc": "35 R DU GENERAL DE MIRIBEL - 92063", "stop_name": "BRETAGNE"}, "geometry": {"type": "Point", "coordinates": [2.1728072168837236, 48.86463998170797]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a36a714918a46cae2d1dd02b2f3844d27a60fd3a", "fields": {"departement": "92", "stop_lat": 48.86541179387059, "code_postal": "92063", "stop_lon": 2.1786215526585515, "coord": [48.86541179387059, 2.1786215526585515], "stop_id": 4025027, "stop_desc": "FACE 72 RTE DE L'EMPEREUR - 92063", "stop_name": "COLLEGE JULES VERNE"}, "geometry": {"type": "Point", "coordinates": [2.1786215526585515, 48.86541179387059]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7519e8214a39abb6c2dab635de6a6191fe135c3f", "fields": {"departement": "92", "stop_lat": 48.86898883284859, "code_postal": "92063", "stop_lon": 2.1855721569743554, "coord": [48.86898883284859, 2.1855721569743554], "stop_id": 4025031, "stop_desc": "FACE 5 R JEAN BOURGUIGNON - 92063", "stop_name": "PLACE BESCHE"}, "geometry": {"type": "Point", "coordinates": [2.1855721569743554, 48.86898883284859]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7e502dbdac9e6a27901f8954904a48fc41aa8d78", "fields": {"departement": "92", "stop_lat": 48.87137676953357, "code_postal": "92063", "stop_lon": 2.1834670740107733, "coord": [48.87137676953357, 2.1834670740107733], "stop_id": 4025033, "stop_desc": "FACE 27-29 BOULEVARD RICHELIEU - 92063", "stop_name": "ZURICH"}, "geometry": {"type": "Point", "coordinates": [2.1834670740107733, 48.87137676953357]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "def1d50cd3884bc1aae15781d77affdef542a5f3", "fields": {"departement": "92", "stop_lat": 48.873226156400705, "code_postal": "92063", "stop_lon": 2.181922020584739, "coord": [48.873226156400705, 2.181922020584739], "stop_id": 4025035, "stop_desc": "FACE 1 PLACE RICHELIEU - 92063", "stop_name": "PLACE RICHELIEU"}, "geometry": {"type": "Point", "coordinates": [2.181922020584739, 48.873226156400705]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d2ef7346ec42c72be84e23aee58552e9de8aae0c", "fields": {"departement": "92", "stop_lat": 48.88451764143241, "code_postal": "92063", "stop_lon": 2.1777318079494505, "coord": [48.88451764143241, 2.1777318079494505], "stop_id": 4025041, "stop_desc": "31 AVENUE VICTOR HUGO - 92063", "stop_name": "BAUDIN"}, "geometry": {"type": "Point", "coordinates": [2.1777318079494505, 48.88451764143241]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9d02c184c6ba4412e9854deadd88a025f44ee6c7", "fields": {"departement": "92", "stop_lat": 48.88600633832888, "code_postal": "92063", "stop_lon": 2.1753696073485793, "coord": [48.88600633832888, 2.1753696073485793], "stop_id": 4025043, "stop_desc": "85 AVENUE VICTOR HUGO - 92063", "stop_name": "COLMAR"}, "geometry": {"type": "Point", "coordinates": [2.1753696073485793, 48.88600633832888]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e6d182b06dc7a22f86157429c0a601871878b477", "fields": {"departement": "92", "stop_lat": 48.854543577223495, "code_postal": "92033", "stop_lon": 2.1982669949087064, "coord": [48.854543577223495, 2.1982669949087064], "stop_id": 4025049, "stop_desc": "FACE 103 R DU COLONEL DE ROCHEBRUNE - 92033", "stop_name": "LES SUISSES"}, "geometry": {"type": "Point", "coordinates": [2.1982669949087064, 48.854543577223495]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "75eaf828f1ed7f08b62855355f0c8e4852282554", "fields": {"departement": "92", "stop_lat": 48.85121672877696, "code_postal": "92033", "stop_lon": 2.2048537447796033, "coord": [48.85121672877696, 2.2048537447796033], "stop_id": 4025051, "stop_desc": "FACE 178 R DE LA PORTE JAUNE - 92033", "stop_name": "CHAMP DE COURSES"}, "geometry": {"type": "Point", "coordinates": [2.2048537447796033, 48.85121672877696]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "af523bde9b118bd7ffae1daa718a0f75fc41db8f", "fields": {"departement": "92", "stop_lat": 48.84698442158507, "code_postal": "92033", "stop_lon": 2.197688073843417, "coord": [48.84698442158507, 2.197688073843417], "stop_id": 4025053, "stop_desc": "37 R DE LA PORTE JAUNE - 92033", "stop_name": "TAHERE"}, "geometry": {"type": "Point", "coordinates": [2.197688073843417, 48.84698442158507]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "37700c49b3c3058ef5789b3421e84fff9be46b71", "fields": {"departement": "92", "stop_lat": 48.84134695499046, "code_postal": "92064", "stop_lon": 2.220632775547223, "coord": [48.84134695499046, 2.220632775547223], "stop_id": 4025056, "stop_desc": "PISTE CIRCULAIRE OUEST DE LA PLACE CLEMENCEAU - 92064", "stop_name": "LA COLLINE"}, "geometry": {"type": "Point", "coordinates": [2.220632775547223, 48.84134695499046]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0b2da6b3bc66d9013658f20373a82cb346b6f44a", "fields": {"departement": "92", "stop_lat": 48.87818488190759, "code_postal": "92063", "stop_lon": 2.1801903124346387, "coord": [48.87818488190759, 2.1801903124346387], "stop_id": 4025063, "stop_desc": "8 BOULEVARD DU MARECHAL FOCH - 92063", "stop_name": "MAIRIE DE RUEIL"}, "geometry": {"type": "Point", "coordinates": [2.1801903124346387, 48.87818488190759]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9a60e3242ca10c84a02fd03ec2bc2fef2dba982c", "fields": {"departement": "92", "stop_lat": 48.86898883284859, "code_postal": "92063", "stop_lon": 2.1855721569743554, "coord": [48.86898883284859, 2.1855721569743554], "stop_id": 4025067, "stop_desc": "FACE 5 R JEAN BOURGUIGNON - 92063", "stop_name": "PLACE BESCHE"}, "geometry": {"type": "Point", "coordinates": [2.1855721569743554, 48.86898883284859]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d9f8020c7c55de0fc648c2fa57044f0f924c65b5", "fields": {"departement": "92", "stop_lat": 48.86028779317763, "code_postal": "92063", "stop_lon": 2.1777382337042517, "coord": [48.86028779317763, 2.1777382337042517], "stop_id": 4025073, "stop_desc": "48 AV DE LA CHATAIGNERAIE - 92063", "stop_name": "PISCINE BUZENVAL"}, "geometry": {"type": "Point", "coordinates": [2.1777382337042517, 48.86028779317763]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c58e3bfda4dda89902c770343be3a3283b9fb7f9", "fields": {"departement": "92", "stop_lat": 48.85800477492691, "code_postal": "92063", "stop_lon": 2.1844329192069574, "coord": [48.85800477492691, 2.1844329192069574], "stop_id": 4025075, "stop_desc": "FACE 68 R DU MARQUIS DE CORIOLIS - 92063", "stop_name": "LE CHAMPTIER"}, "geometry": {"type": "Point", "coordinates": [2.1844329192069574, 48.85800477492691]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fe3ad3e1bf89a3b99e6a57c614d2dd2d62602f23", "fields": {"departement": "92", "stop_lat": 48.87985477346892, "code_postal": "92062", "stop_lon": 2.2368022331566495, "coord": [48.87985477346892, 2.2368022331566495], "stop_id": 4025083, "stop_desc": "163 RUE JEAN JAURES - 92062", "stop_name": "BAS ROGERS"}, "geometry": {"type": "Point", "coordinates": [2.2368022331566495, 48.87985477346892]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a87086ce247894a91e68e64c398e7b672aeb9d06", "fields": {"departement": "92", "stop_lat": 48.88284929871456, "code_postal": "92062", "stop_lon": 2.2389222435582257, "coord": [48.88284929871456, 2.2389222435582257], "stop_id": 4025086, "stop_desc": "FACE 5 R CHANTE COQ - 92062", "stop_name": "MARCHE DE PUTEAUX"}, "geometry": {"type": "Point", "coordinates": [2.2389222435582257, 48.88284929871456]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d55a86f5cadece3dd1afcbd6b89b0095806ab41f", "fields": {"departement": "92", "stop_lat": 48.88463762429675, "code_postal": "92062", "stop_lon": 2.228425692075591, "coord": [48.88463762429675, 2.228425692075591], "stop_id": 4025091, "stop_desc": "198 RUE DE LA REPUBLIQUE - 92062", "stop_name": "PALISSY"}, "geometry": {"type": "Point", "coordinates": [2.228425692075591, 48.88463762429675]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d0f8668d987ea30dd22bb91663e1a8f789dca501", "fields": {"departement": "92", "stop_lat": 48.88830746642792, "code_postal": "92062", "stop_lon": 2.231825097915858, "coord": [48.88830746642792, 2.231825097915858], "stop_id": 4025098, "stop_desc": "FACE 4 RUE MARCELIN BERTHELOT - 92062", "stop_name": "PERGOLA"}, "geometry": {"type": "Point", "coordinates": [2.231825097915858, 48.88830746642792]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6d2cd9a845e25645120ee9af2c7cf29eac875cff", "fields": {"departement": "92", "stop_lat": 48.88336972653603, "code_postal": "92062", "stop_lon": 2.227665233716108, "coord": [48.88336972653603, 2.227665233716108], "stop_id": 4025103, "stop_desc": "FACE 49 RUE BERNARD PALISSY - 92062", "stop_name": "GUTENBERG"}, "geometry": {"type": "Point", "coordinates": [2.227665233716108, 48.88336972653603]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3500cf603d96b9659bb8e4cd7840f90816e5d39e", "fields": {"departement": "92", "stop_lat": 48.87796073829657, "code_postal": "92062", "stop_lon": 2.239544673463894, "coord": [48.87796073829657, 2.239544673463894], "stop_id": 4025113, "stop_desc": "5 R PARMENTIER - 92062", "stop_name": "VOLTAIRE"}, "geometry": {"type": "Point", "coordinates": [2.239544673463894, 48.87796073829657]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "efcec90711c0f642652d0a5116bac7e8061d953b", "fields": {"departement": "92", "stop_lat": 48.88830746642792, "code_postal": "92062", "stop_lon": 2.231825097915858, "coord": [48.88830746642792, 2.231825097915858], "stop_id": 4025133, "stop_desc": "FACE 4 RUE MARCELIN BERTHELOT - 92062", "stop_name": "PERGOLA"}, "geometry": {"type": "Point", "coordinates": [2.231825097915858, 48.88830746642792]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "01beb03c43bb1b7ba9638996b16647e4a84f12dd", "fields": {"departement": "92", "stop_lat": 48.884503004736075, "code_postal": "92062", "stop_lon": 2.238987243699706, "coord": [48.884503004736075, 2.238987243699706], "stop_id": 4025139, "stop_desc": "FACE104BIS RUE DE LA REPUBLIQUE - 92062", "stop_name": "MAIRIE DE PUTEAUX"}, "geometry": {"type": "Point", "coordinates": [2.238987243699706, 48.884503004736075]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e137c012ed01d47f2dc9e241db968769388784f2", "fields": {"departement": "92", "stop_lat": 48.8784594456576, "code_postal": "92062", "stop_lon": 2.245075829970116, "coord": [48.8784594456576, 2.245075829970116], "stop_id": 4025149, "stop_desc": "ALLEE GEORGES HASSAUX - 92062", "stop_name": "ILE DE PUTEAUX"}, "geometry": {"type": "Point", "coordinates": [2.245075829970116, 48.8784594456576]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8834bfc1fdebeb0789610d2aff42be5f531d6e39", "fields": {"departement": "92", "stop_lat": 48.87877176305051, "code_postal": "92062", "stop_lon": 2.242227454203728, "coord": [48.87877176305051, 2.242227454203728], "stop_id": 4025151, "stop_desc": "6 BOULEVARD RICHARD WALLACE - 92062", "stop_name": "HOPITAL - PONT DE PUTEAUX"}, "geometry": {"type": "Point", "coordinates": [2.242227454203728, 48.87877176305051]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d356da284f429857a8edf74b151c960a8cf9156d", "fields": {"departement": "92", "stop_lat": 48.88309070776672, "code_postal": "92062", "stop_lon": 2.2374228077459213, "coord": [48.88309070776672, 2.2374228077459213], "stop_id": 4025154, "stop_desc": "30 RUE LUCIEN VOILIN - 92062", "stop_name": "MAIRIE - EGLISE"}, "geometry": {"type": "Point", "coordinates": [2.2374228077459213, 48.88309070776672]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a901df3f6921e9af1a7aa116dab4d0f985960cbe", "fields": {"departement": "92", "stop_lat": 48.883969094999905, "code_postal": "92062", "stop_lon": 2.2346411462534888, "coord": [48.883969094999905, 2.2346411462534888], "stop_id": 4025155, "stop_desc": "FACE145BIS RUE DE LA REPUBLIQUE - 92062", "stop_name": "GARE DE PUTEAUX"}, "geometry": {"type": "Point", "coordinates": [2.2346411462534888, 48.883969094999905]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e29bf4777e179e8bfccc767189a25fc20ee9f7c2", "fields": {"departement": "92", "stop_lat": 48.88463762429675, "code_postal": "92062", "stop_lon": 2.228425692075591, "coord": [48.88463762429675, 2.228425692075591], "stop_id": 4025159, "stop_desc": "198 RUE DE LA REPUBLIQUE - 92062", "stop_name": "PALISSY"}, "geometry": {"type": "Point", "coordinates": [2.228425692075591, 48.88463762429675]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b59aff286158f11fa7f91eed37c9e51d713531c5", "fields": {"departement": "92", "stop_lat": 48.889178388225055, "code_postal": "92062", "stop_lon": 2.230882947886533, "coord": [48.889178388225055, 2.230882947886533], "stop_id": 4025163, "stop_desc": "FACE 16 R MARCELLIN BERTHELOT - 92062", "stop_name": "BERTHELOT - CARRE VERT"}, "geometry": {"type": "Point", "coordinates": [2.230882947886533, 48.889178388225055]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2dfb7ef19c362b96e19102ad04a822466b1418d9", "fields": {"departement": "92", "stop_lat": 48.87789950761872, "code_postal": "92062", "stop_lon": 2.2416158962574335, "coord": [48.87789950761872, 2.2416158962574335], "stop_id": 4025173, "stop_desc": "QUAI DE DION BOUTON (OUEST) - 92062", "stop_name": "PONT DE PUTEAUX"}, "geometry": {"type": "Point", "coordinates": [2.2416158962574335, 48.87789950761872]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "055abaa21b65a3a24f863a800a24b4a77f025325", "fields": {"departement": "92", "stop_lat": 48.872622711966116, "code_postal": "92062", "stop_lon": 2.2400724573462627, "coord": [48.872622711966116, 2.2400724573462627], "stop_id": 4025175, "stop_desc": "ALLEE DE L'ECLUSE - 92062", "stop_name": "ECOLE DES SPORTS"}, "geometry": {"type": "Point", "coordinates": [2.2400724573462627, 48.872622711966116]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "af0c8966cb274209d1ffbf939b3ada84d63765a3", "fields": {"departement": "92", "stop_lat": 48.886400305331634, "code_postal": "92062", "stop_lon": 2.229730273795458, "coord": [48.886400305331634, 2.229730273795458], "stop_id": 4025179, "stop_desc": "86 AVENUE DU PRESIDENT WILSON - 92062", "stop_name": "EDGAR QUINET"}, "geometry": {"type": "Point", "coordinates": [2.229730273795458, 48.886400305331634]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5d4b711434edc8cad3defc7c6806464352a6046c", "fields": {"departement": "92", "stop_lat": 48.88336972653603, "code_postal": "92062", "stop_lon": 2.227665233716108, "coord": [48.88336972653603, 2.227665233716108], "stop_id": 4025183, "stop_desc": "FACE 49 RUE BERNARD PALISSY - 92062", "stop_name": "GUTENBERG"}, "geometry": {"type": "Point", "coordinates": [2.227665233716108, 48.88336972653603]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e84e56d42df43fdb2a61e422a3c06b99f12819dc", "fields": {"departement": "92", "stop_lat": 48.88371676955176, "code_postal": "92062", "stop_lon": 2.233851265998093, "coord": [48.88371676955176, 2.233851265998093], "stop_id": 4025184, "stop_desc": "RUE DE LA REPUBLIQUE - 92062", "stop_name": "GARE DE PUTEAUX"}, "geometry": {"type": "Point", "coordinates": [2.233851265998093, 48.88371676955176]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d38ddd0916ff3ae25932b8e5abde180dae151749", "fields": {"departement": "92", "stop_lat": 48.884058815418165, "code_postal": "92062", "stop_lon": 2.2454746925662836, "coord": [48.884058815418165, 2.2454746925662836], "stop_id": 4025187, "stop_desc": "FACE 52 RUE JEAN JAURES - 92062", "stop_name": "ARAGO - JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.2454746925662836, 48.884058815418165]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "29fac0f9ee61532595804f37b2646b7b1166ab52", "fields": {"departement": "92", "stop_lat": 48.88611165762972, "code_postal": "92062", "stop_lon": 2.2504861115803076, "coord": [48.88611165762972, 2.2504861115803076], "stop_id": 4025188, "stop_desc": "2-4 RUE BELLINI - 92062", "stop_name": "BELLINI"}, "geometry": {"type": "Point", "coordinates": [2.2504861115803076, 48.88611165762972]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0b2c5879f38dfe8704bd915c1fa563f9a3fae12c", "fields": {"departement": "92", "stop_lat": 48.88558764307915, "code_postal": "92062", "stop_lon": 2.246780247316581, "coord": [48.88558764307915, 2.246780247316581], "stop_id": 4025190, "stop_desc": "14 RUE PAUL LAFARGUE - 92062", "stop_name": "PAUL LAFARGUE"}, "geometry": {"type": "Point", "coordinates": [2.246780247316581, 48.88558764307915]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "40b7e3a4997d618d59f7558a5bac1f091a2bb72a", "fields": {"departement": "92", "stop_lat": 48.87796073829657, "code_postal": "92062", "stop_lon": 2.239544673463894, "coord": [48.87796073829657, 2.239544673463894], "stop_id": 4025197, "stop_desc": "5 R PARMENTIER - 92062", "stop_name": "VOLTAIRE"}, "geometry": {"type": "Point", "coordinates": [2.239544673463894, 48.87796073829657]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "37ddbf986b23cd1c13d7b856362f3e7975c77b79", "fields": {"departement": "92", "stop_lat": 48.895193589340884, "code_postal": "92050", "stop_lon": 2.1910838700502313, "coord": [48.895193589340884, 2.1910838700502313], "stop_id": 4025234, "stop_desc": "29 AV JULES QUENTIN - 92050", "stop_name": "BENOIT FRACHON"}, "geometry": {"type": "Point", "coordinates": [2.1910838700502313, 48.895193589340884]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "52988c7a7c48b7a81135393d6dabe2e7992af63e", "fields": {"departement": "92", "stop_lat": 48.895409163496645, "code_postal": "92050", "stop_lon": 2.1909878497568465, "coord": [48.895409163496645, 2.1909878497568465], "stop_id": 4025236, "stop_desc": "FACE 27 AVENUE JULES QUENTIN - 92050", "stop_name": "JULES QUENTIN"}, "geometry": {"type": "Point", "coordinates": [2.1909878497568465, 48.895409163496645]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b7e1ac0ccbef930f7f5adb994a8971d68dd90983", "fields": {"departement": "92", "stop_lat": 48.87808078212805, "code_postal": "92050", "stop_lon": 2.205534554136397, "coord": [48.87808078212805, 2.205534554136397], "stop_id": 4025249, "stop_desc": "77 RUE DE GARCHES - 92050", "stop_name": "LES CHAILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.205534554136397, 48.87808078212805]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1809c172f2c0f162098fce961128a44ec46df540", "fields": {"departement": "92", "stop_lat": 48.88898344841831, "code_postal": "92050", "stop_lon": 2.198610760035315, "coord": [48.88898344841831, 2.198610760035315], "stop_id": 4025257, "stop_desc": "1 R GAMBETTA - 92050", "stop_name": "GABRIEL PERI"}, "geometry": {"type": "Point", "coordinates": [2.198610760035315, 48.88898344841831]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "20866150dc48d13952ad2f1d5cc360dfcb9ed8a5", "fields": {"departement": "92", "stop_lat": 48.89074069504687, "code_postal": "92050", "stop_lon": 2.195007978600612, "coord": [48.89074069504687, 2.195007978600612], "stop_id": 4025258, "stop_desc": "4 R MAURICE THOREZ - 92050", "stop_name": "EGLISE DE NANTERRE"}, "geometry": {"type": "Point", "coordinates": [2.195007978600612, 48.89074069504687]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0a19554e0004eedfd4f513bc01ab64623baad671", "fields": {"departement": "92", "stop_lat": 48.89937497841858, "code_postal": "92050", "stop_lon": 2.2087383229403086, "coord": [48.89937497841858, 2.2087383229403086], "stop_id": 4025284, "stop_desc": "3 BOULEVARD BLAISE PASCAL - 92050", "stop_name": "PASCAL"}, "geometry": {"type": "Point", "coordinates": [2.2087383229403086, 48.89937497841858]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "96d90a3776de3d3757b480003a7888c82d1c9d86", "fields": {"departement": "92", "stop_lat": 48.8927961782605, "code_postal": "92050", "stop_lon": 2.208550192098636, "coord": [48.8927961782605, 2.208550192098636], "stop_id": 4025289, "stop_desc": "FACE 85 ALL GEORGES POLITZER - 92050", "stop_name": "POLITZER"}, "geometry": {"type": "Point", "coordinates": [2.208550192098636, 48.8927961782605]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c235edf8dcfc9f3ebbda68b6a7ba5c9aaaa6d760", "fields": {"departement": "92", "stop_lat": 48.89471164228751, "code_postal": "92050", "stop_lon": 2.209663106182034, "coord": [48.89471164228751, 2.209663106182034], "stop_id": 4025296, "stop_desc": "BOULEVARD HONORE DE BALZAC - 92050", "stop_name": "BALZAC - ZOLA"}, "geometry": {"type": "Point", "coordinates": [2.209663106182034, 48.89471164228751]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fd6d3d11d65d2a879fc6ab70131ca2a51e8312ae", "fields": {"departement": "92", "stop_lat": 48.899308650262405, "code_postal": "92050", "stop_lon": 2.190227118923417, "coord": [48.899308650262405, 2.190227118923417], "stop_id": 4025297, "stop_desc": "BD DU GENERAL LECLERC - 92050", "stop_name": "CHEMIN DE L'ILE"}, "geometry": {"type": "Point", "coordinates": [2.190227118923417, 48.899308650262405]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fa07a45db4b37b2ef56616bbf7675c9523e4a0bc", "fields": {"departement": "92", "stop_lat": 48.895193589340884, "code_postal": "92050", "stop_lon": 2.1910838700502313, "coord": [48.895193589340884, 2.1910838700502313], "stop_id": 4025299, "stop_desc": "29 AV JULES QUENTIN - 92050", "stop_name": "BENOIT FRACHON"}, "geometry": {"type": "Point", "coordinates": [2.1910838700502313, 48.895193589340884]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6a72d7b1262e44f6a1d2431393bf83e489aad0bc", "fields": {"departement": "92", "stop_lat": 48.88898344841831, "code_postal": "92050", "stop_lon": 2.198610760035315, "coord": [48.88898344841831, 2.198610760035315], "stop_id": 4025305, "stop_desc": "1 R GAMBETTA - 92050", "stop_name": "GABRIEL PERI"}, "geometry": {"type": "Point", "coordinates": [2.198610760035315, 48.88898344841831]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e20de5d5a1076f5415b090866f435ff822d2821b", "fields": {"departement": "92", "stop_lat": 48.886856639445476, "code_postal": "92050", "stop_lon": 2.201355691235118, "coord": [48.886856639445476, 2.201355691235118], "stop_id": 4025307, "stop_desc": "10 AVENUE GEORGES CLEMENCEAU - 92050", "stop_name": "PLACE DE LA BOULE - CLEMENCEAU"}, "geometry": {"type": "Point", "coordinates": [2.201355691235118, 48.886856639445476]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dd61aba2453d65d9f5925f767891a8e573e5e9ff", "fields": {"departement": "92", "stop_lat": 48.88301777132864, "code_postal": "92050", "stop_lon": 2.2168460952034277, "coord": [48.88301777132864, 2.2168460952034277], "stop_id": 4025312, "stop_desc": "113 RUE DE SURESNES - 92050", "stop_name": "VERDUN"}, "geometry": {"type": "Point", "coordinates": [2.2168460952034277, 48.88301777132864]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d5449ce6969e215d1bf226f4d0d6755e7df40d1b", "fields": {"departement": "92", "stop_lat": 48.873520450830206, "code_postal": "92063", "stop_lon": 2.180177193646357, "coord": [48.873520450830206, 2.180177193646357], "stop_id": 4025317, "stop_desc": "4 R MASSENA - 92063", "stop_name": "PLACE RICHELIEU"}, "geometry": {"type": "Point", "coordinates": [2.180177193646357, 48.873520450830206]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "31b574dacb30d52dd2f58e6f96a1471edde8e2ef", "fields": {"departement": "92", "stop_lat": 48.86907011801131, "code_postal": "92063", "stop_lon": 2.1723435943572422, "coord": [48.86907011801131, 2.1723435943572422], "stop_id": 4025319, "stop_desc": "FACE 3 AV DE VERSAILLES - 92063", "stop_name": "TUCK STELL"}, "geometry": {"type": "Point", "coordinates": [2.1723435943572422, 48.86907011801131]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9a96dacbf2c33636d39d50c1f598e7f7c82a286a", "fields": {"departement": "92", "stop_lat": 48.8639739947258, "code_postal": "92063", "stop_lon": 2.1657803416691546, "coord": [48.8639739947258, 2.1657803416691546], "stop_id": 4025321, "stop_desc": "38 AV DE VERSAILLES - 92063", "stop_name": "BOIS SAINT-PERE"}, "geometry": {"type": "Point", "coordinates": [2.1657803416691546, 48.8639739947258]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9d6e1f4346304a9336ca76a79ae44c21dd543a28", "fields": {"departement": "92", "stop_lat": 48.873226156400705, "code_postal": "92063", "stop_lon": 2.181922020584739, "coord": [48.873226156400705, 2.181922020584739], "stop_id": 4025332, "stop_desc": "FACE 1 PLACE RICHELIEU - 92063", "stop_name": "PLACE RICHELIEU"}, "geometry": {"type": "Point", "coordinates": [2.181922020584739, 48.873226156400705]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ac0a2e9c1dcce2cd707248e181c3fef7a3acf978", "fields": {"departement": "92", "stop_lat": 48.871637489328236, "code_postal": "92063", "stop_lon": 2.1835344210818635, "coord": [48.871637489328236, 2.1835344210818635], "stop_id": 4025335, "stop_desc": "17 BOULEVARD RICHELIEU - 92063", "stop_name": "ZURICH"}, "geometry": {"type": "Point", "coordinates": [2.1835344210818635, 48.871637489328236]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3db6e7db982bb54efde824816e9307b3898d97b8", "fields": {"departement": "92", "stop_lat": 48.86922348937091, "code_postal": "92063", "stop_lon": 2.1863480066905185, "coord": [48.86922348937091, 2.1863480066905185], "stop_id": 4025337, "stop_desc": "77 BOULEVARD RICHELIEU - 92063", "stop_name": "PLACE BESCHE"}, "geometry": {"type": "Point", "coordinates": [2.1863480066905185, 48.86922348937091]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5f9c89baac22da2206bf253e43ccf59794cc30c6", "fields": {"departement": "92", "stop_lat": 48.864829952607025, "code_postal": "92063", "stop_lon": 2.187368841576411, "coord": [48.864829952607025, 2.187368841576411], "stop_id": 4025339, "stop_desc": "FACE 2 R PAUL BOURGET - 92063", "stop_name": "PRIMEVERES"}, "geometry": {"type": "Point", "coordinates": [2.187368841576411, 48.864829952607025]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "15c08659c565f37a4d7c1cb782149eb49b465b97", "fields": {"departement": "92", "stop_lat": 48.865360326450805, "code_postal": "92063", "stop_lon": 2.18746266554247, "coord": [48.865360326450805, 2.18746266554247], "stop_id": 4025340, "stop_desc": "37 R DU GENERAL CARREY DE BELLEMARE - 92063", "stop_name": "PRIMEVERES"}, "geometry": {"type": "Point", "coordinates": [2.18746266554247, 48.865360326450805]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a69259987f2c7593e59685fbda5c618c37be0e3f", "fields": {"departement": "92", "stop_lat": 48.863431808013424, "code_postal": "92063", "stop_lon": 2.190492302113868, "coord": [48.863431808013424, 2.190492302113868], "stop_id": 4025341, "stop_desc": "78 R DU GENERAL CARREY DE BELLEMARE - 92063", "stop_name": "19 JANVIER"}, "geometry": {"type": "Point", "coordinates": [2.190492302113868, 48.863431808013424]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ab773c121342b1f97715e0042486474848b1ceef", "fields": {"departement": "92", "stop_lat": 48.858448299232506, "code_postal": "92063", "stop_lon": 2.194197589561049, "coord": [48.858448299232506, 2.194197589561049], "stop_id": 4025349, "stop_desc": "153 BIS R DU LIEUTENANT COLONEL DE MONTBRISON - 92063", "stop_name": "EGLISE DE BUZENVAL"}, "geometry": {"type": "Point", "coordinates": [2.194197589561049, 48.858448299232506]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "88fee2c2b5be9b11cbf1849a44f457f0e2788a3d", "fields": {"departement": "92", "stop_lat": 48.89476489991657, "code_postal": "92050", "stop_lon": 2.2270141509442976, "coord": [48.89476489991657, 2.2270141509442976], "stop_id": 4025356, "stop_desc": "34 BD DE PESARO - 92050", "stop_name": "LES TERRASSES"}, "geometry": {"type": "Point", "coordinates": [2.2270141509442976, 48.89476489991657]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4e54ba4fe2000fc5e6f614d0187506a9169b79de", "fields": {"departement": "92", "stop_lat": 48.8949267944631, "code_postal": "92050", "stop_lon": 2.227150108430016, "coord": [48.8949267944631, 2.227150108430016], "stop_id": 4025357, "stop_desc": "FACE 34 BD DE PESARO - 92050", "stop_name": "LES TERRASSES"}, "geometry": {"type": "Point", "coordinates": [2.227150108430016, 48.8949267944631]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c20ade21778a021c09b34879fc6ade0bf8fa73d0", "fields": {"departement": "92", "stop_lat": 48.891549532062704, "code_postal": "92050", "stop_lon": 2.2292425657006434, "coord": [48.891549532062704, 2.2292425657006434], "stop_id": 4025360, "stop_desc": "BD DES BOUVETS - 92050", "stop_name": "MAXIME GORKI"}, "geometry": {"type": "Point", "coordinates": [2.2292425657006434, 48.891549532062704]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2bcdfcd48a2b99b877f313786db7a982eb55fdca", "fields": {"departement": "92", "stop_lat": 48.888547529891284, "code_postal": "92050", "stop_lon": 2.2289353659104347, "coord": [48.888547529891284, 2.2289353659104347], "stop_id": 4025362, "stop_desc": "AVENUE PABLO PICASSO - 92050", "stop_name": "LES ROSIERS"}, "geometry": {"type": "Point", "coordinates": [2.2289353659104347, 48.888547529891284]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "41a0701ba5921fdb73b881d65d17792a8204de06", "fields": {"departement": "92", "stop_lat": 48.88733203207136, "code_postal": "92050", "stop_lon": 2.2172312906653735, "coord": [48.88733203207136, 2.2172312906653735], "stop_id": 4025367, "stop_desc": "0 RUE DES ECOLES - 92050", "stop_name": "RUE DES ECOLES"}, "geometry": {"type": "Point", "coordinates": [2.2172312906653735, 48.88733203207136]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9cb59756aab3294259db8e9bd40d9db64081299d", "fields": {"departement": "75", "stop_lat": 48.88449829296056, "code_postal": "75118", "stop_lon": 2.328982831569093, "coord": [48.88449829296056, 2.328982831569093], "stop_id": 3749936, "stop_desc": "132-134 BOULEVARD DE CLICHY - 75118", "stop_name": "PLACE DE CLICHY - CAULAINCOURT"}, "geometry": {"type": "Point", "coordinates": [2.328982831569093, 48.88449829296056]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "69be47abf096271f1c6b57a7c797c1bdb33acba8", "fields": {"departement": "92", "stop_lat": 48.896544086329115, "code_postal": "92044", "stop_lon": 2.2984756281855954, "coord": [48.896544086329115, 2.2984756281855954], "stop_id": 3749977, "stop_desc": "6 PLACE DU 8 MAI 1945 - 92044", "stop_name": "GARE DE CLICHY - LEVALLOIS"}, "geometry": {"type": "Point", "coordinates": [2.2984756281855954, 48.896544086329115]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "334632ff1a59a84fb3345eecff5852fff7dc966e", "fields": {"departement": "75", "stop_lat": 48.87323478976855, "code_postal": "75108", "stop_lon": 2.311695174941694, "coord": [48.87323478976855, 2.311695174941694], "stop_id": 3749939, "stop_desc": "64 BIS RUE LA BOETIE - 75108", "stop_name": "SAINT-PHILIPPE-DU-ROULE"}, "geometry": {"type": "Point", "coordinates": [2.311695174941694, 48.87323478976855]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a81848bd41530ed95a0b3ac803aee8a6375031f9", "fields": {"departement": "75", "stop_lat": 48.87445277569274, "code_postal": "75108", "stop_lon": 2.2963258094953476, "coord": [48.87445277569274, 2.2963258094953476], "stop_id": 3749983, "stop_desc": "66 AV HOCHE - 75108", "stop_name": "CHARLES DE GAULLE - ETOILE"}, "geometry": {"type": "Point", "coordinates": [2.2963258094953476, 48.87445277569274]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c58f94dbbd73bdcedd9139cf3bae6928d1fb04c9", "fields": {"departement": "75", "stop_lat": 48.87447561220089, "code_postal": "75108", "stop_lon": 2.314528521056996, "coord": [48.87447561220089, 2.314528521056996], "stop_id": 3749912, "stop_desc": "10-12 AVENUE PERCIER - 75108", "stop_name": "HAUSSMANN - MIROMESNIL"}, "geometry": {"type": "Point", "coordinates": [2.314528521056996, 48.87447561220089]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cde6aa9f1f2ac8c5cf85696d3442777a045c0a0b", "fields": {"departement": "75", "stop_lat": 48.83914826598913, "code_postal": "75115", "stop_lon": 2.2911933772060062, "coord": [48.83914826598913, 2.2911933772060062], "stop_id": 3749943, "stop_desc": "250 RUE LECOURBE - 75115", "stop_name": "CONVENTION - LECOURBE"}, "geometry": {"type": "Point", "coordinates": [2.2911933772060062, 48.83914826598913]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "58d79996003621eed2bf31d29b2bd8665535540c", "fields": {"departement": "75", "stop_lat": 48.83369098928551, "code_postal": "75115", "stop_lon": 2.286719185989927, "coord": [48.83369098928551, 2.286719185989927], "stop_id": 3749946, "stop_desc": "46 RUE DU HAMEAU - 75115", "stop_name": "BOULEVARD VICTOR"}, "geometry": {"type": "Point", "coordinates": [2.286719185989927, 48.83369098928551]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "547f88edfa7a505767b752c4766bdd27e42ee2cc", "fields": {"departement": "75", "stop_lat": 48.89916470019487, "code_postal": "75117", "stop_lon": 2.322219371934637, "coord": [48.89916470019487, 2.322219371934637], "stop_id": 3749990, "stop_desc": "4 RUE EMILE BOREL - 75117", "stop_name": "BOIS LE PRETRE"}, "geometry": {"type": "Point", "coordinates": [2.322219371934637, 48.89916470019487]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "72f892d5e022281e1aa19a69f32bb8e54d47252b", "fields": {"departement": "92", "stop_lat": 48.904807571152716, "code_postal": "92024", "stop_lon": 2.315551308762608, "coord": [48.904807571152716, 2.315551308762608], "stop_id": 3749986, "stop_desc": "31 RUE GEORGES BOISSEAU - 92024", "stop_name": "CITROEN"}, "geometry": {"type": "Point", "coordinates": [2.315551308762608, 48.904807571152716]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "126b2462077c0f4a163e253a32fe281b1acd5a58", "fields": {"departement": "92", "stop_lat": 48.90487707648954, "code_postal": "92024", "stop_lon": 2.3049858663019815, "coord": [48.90487707648954, 2.3049858663019815], "stop_id": 3749974, "stop_desc": "13 RUE DU LANDY - 92024", "stop_name": "LANDY - MARTRE"}, "geometry": {"type": "Point", "coordinates": [2.3049858663019815, 48.90487707648954]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4d8e92559a3e9653d94ca47ca9da0f1871e868eb", "fields": {"departement": "75", "stop_lat": 48.89893777107976, "code_postal": "75118", "stop_lon": 2.3648715512788416, "coord": [48.89893777107976, 2.3648715512788416], "stop_id": 3750046, "stop_desc": "FACE 56 RUE CHARLES HERMITE - 75118", "stop_name": "CHARLES HERMITE - NEY"}, "geometry": {"type": "Point", "coordinates": [2.3648715512788416, 48.89893777107976]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8d6122f30ea99cc2c8886a2ca97beac9bad22aa6", "fields": {"departement": "75", "stop_lat": 48.89870522659742, "code_postal": "75118", "stop_lon": 2.3595143784436736, "coord": [48.89870522659742, 2.3595143784436736], "stop_id": 3750043, "stop_desc": "FACE 29 BOULEVARD NEY - 75118", "stop_name": "PORTE DE LA CHAPELLE"}, "geometry": {"type": "Point", "coordinates": [2.3595143784436736, 48.89870522659742]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a0a0a41a02e10e7ddee0a78f08ffcf61c99028c7", "fields": {"departement": "75", "stop_lat": 48.89357480566102, "code_postal": "75117", "stop_lon": 2.3230933018542417, "coord": [48.89357480566102, 2.3230933018542417], "stop_id": 3750017, "stop_desc": "46 R DE LA JONQUIERE - 75117", "stop_name": "COLLEGE MALLARME"}, "geometry": {"type": "Point", "coordinates": [2.3230933018542417, 48.89357480566102]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0ce1da6d44d50785f199ca13eee97c1f165e85ce", "fields": {"departement": "75", "stop_lat": 48.88775159206704, "code_postal": "75118", "stop_lon": 2.3279874475502766, "coord": [48.88775159206704, 2.3279874475502766], "stop_id": 3750001, "stop_desc": "21 R GANNERON - 75118", "stop_name": "LYCEE AUGUSTE RENOIR"}, "geometry": {"type": "Point", "coordinates": [2.3279874475502766, 48.88775159206704]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "290a36a2e23cc456ad0786bc868385ecdf9325d0", "fields": {"departement": "75", "stop_lat": 48.898895729239, "code_postal": "75117", "stop_lon": 2.3287215405795925, "coord": [48.898895729239, 2.3287215405795925], "stop_id": 3750021, "stop_desc": "1 R ANDRE BRECHET - 75117", "stop_name": "HOPITAL BICHAT."}, "geometry": {"type": "Point", "coordinates": [2.3287215405795925, 48.898895729239]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "30b00944063a9d0266a8a809648e873782d288a9", "fields": {"departement": "75", "stop_lat": 48.89318875699754, "code_postal": "75117", "stop_lon": 2.326991506160168, "coord": [48.89318875699754, 2.326991506160168], "stop_id": 3750016, "stop_desc": "4 R DE LA JONQUIERE - 75117", "stop_name": "GUY MOQUET"}, "geometry": {"type": "Point", "coordinates": [2.326991506160168, 48.89318875699754]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cb17111385bb955dcf15b157698ebe71e3e03d8d", "fields": {"departement": "75", "stop_lat": 48.898827844059255, "code_postal": "75119", "stop_lon": 2.3727366953007993, "coord": [48.898827844059255, 2.3727366953007993], "stop_id": 3750024, "stop_desc": "206 BOULEVARD MACDONALD - 75119", "stop_name": "MACDONALD"}, "geometry": {"type": "Point", "coordinates": [2.3727366953007993, 48.898827844059255]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3f6650e31a3d4026760b34e05c6b2c8d92817eed", "fields": {"departement": "75", "stop_lat": 48.89867744051649, "code_postal": "75118", "stop_lon": 2.363562821127319, "coord": [48.89867744051649, 2.363562821127319], "stop_id": 3750042, "stop_desc": "50 BOULEVARD NEY - 75118", "stop_name": "EMILE BERTIN"}, "geometry": {"type": "Point", "coordinates": [2.363562821127319, 48.89867744051649]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d793f4c7a0aa0db9b3bc7694f928cc3b51c9e32a", "fields": {"departement": "75", "stop_lat": 48.88594382796112, "code_postal": "75117", "stop_lon": 2.3171536608139696, "coord": [48.88594382796112, 2.3171536608139696], "stop_id": 3750005, "stop_desc": "55-57 R LEGENDRE - 75117", "stop_name": "LEGENDRE"}, "geometry": {"type": "Point", "coordinates": [2.3171536608139696, 48.88594382796112]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c2883c6b4f91726227ca61700d2a746b485321f6", "fields": {"departement": "75", "stop_lat": 48.88557510946387, "code_postal": "75117", "stop_lon": 2.315763776916056, "coord": [48.88557510946387, 2.315763776916056], "stop_id": 3750009, "stop_desc": "39-41 R DULONG - 75117", "stop_name": "LEGENDRE."}, "geometry": {"type": "Point", "coordinates": [2.315763776916056, 48.88557510946387]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "955423df11cec70048981251818a44068fe5f036", "fields": {"departement": "75", "stop_lat": 48.868255219738884, "code_postal": "75108", "stop_lon": 2.309081982141067, "coord": [48.868255219738884, 2.309081982141067], "stop_id": 3749908, "stop_desc": "58-60 AVENUE MONTAIGNE - 75108", "stop_name": "ROND-POINT DES CHAMPS-ELYSEES"}, "geometry": {"type": "Point", "coordinates": [2.309081982141067, 48.868255219738884]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b4e9de519c94b5a2db7e193b4f9a344244f5cf71", "fields": {"departement": "94", "stop_lat": 48.8000245336086, "code_postal": "94003", "stop_lon": 2.344002888128499, "coord": [48.8000245336086, 2.344002888128499], "stop_id": 3755003, "stop_desc": "AVENUE GABRIEL PERI - 94003", "stop_name": "QUATRE CHEMINS - PAULINE KERGOMARD"}, "geometry": {"type": "Point", "coordinates": [2.344002888128499, 48.8000245336086]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "14455fa5e65807ac17fda2d8f8381956f298d709", "fields": {"departement": "92", "stop_lat": 48.82995252831363, "code_postal": "92012", "stop_lon": 2.232270374122613, "coord": [48.82995252831363, 2.232270374122613], "stop_id": 5121339, "stop_desc": "FACE 122 AVENUE DU GENERAL LECLERC - 92012", "stop_name": "PONT DE SEVRES-METRO"}, "geometry": {"type": "Point", "coordinates": [2.232270374122613, 48.82995252831363]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b192748ac885b33c6826b9f6c809c402309a5af8", "fields": {"departement": "75", "stop_lat": 48.84049189771527, "code_postal": "75116", "stop_lon": 2.264219134778155, "coord": [48.84049189771527, 2.264219134778155], "stop_id": 5121351, "stop_desc": "158 AVENUE DE VERSAILLES - 75116", "stop_name": "VERSAILLES - EXELMANS"}, "geometry": {"type": "Point", "coordinates": [2.264219134778155, 48.84049189771527]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "666a99919f8074942827e88a53b059f0674a19a9", "fields": {"departement": "75", "stop_lat": 48.84463919141917, "code_postal": "75116", "stop_lon": 2.271130714553106, "coord": [48.84463919141917, 2.271130714553106], "stop_id": 5121354, "stop_desc": "101 AVENUE DE VERSAILLES - 75116", "stop_name": "WILHEM"}, "geometry": {"type": "Point", "coordinates": [2.271130714553106, 48.84463919141917]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ee19bccbbd6daf7ad9c68b6d31945fe9d0acf218", "fields": {"departement": "75", "stop_lat": 48.84701297358328, "code_postal": "75116", "stop_lon": 2.273102239033009, "coord": [48.84701297358328, 2.273102239033009], "stop_id": 5121357, "stop_desc": "64 AVENUE DE VERSAILLES - 75116", "stop_name": "PONT MIRABEAU"}, "geometry": {"type": "Point", "coordinates": [2.273102239033009, 48.84701297358328]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "060855f5e5db3e406d7c084f67e2c3a37fb95dce", "fields": {"departement": "75", "stop_lat": 48.84646235147793, "code_postal": "75115", "stop_lon": 2.2868293018523236, "coord": [48.84646235147793, 2.2868293018523236], "stop_id": 5121363, "stop_desc": "76 AVENUE EMILE ZOLA - 75115", "stop_name": "CHARLES MICHELS"}, "geometry": {"type": "Point", "coordinates": [2.2868293018523236, 48.84646235147793]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "06d8cb051d100ed0fb93591c3e412b42460c32a0", "fields": {"departement": "75", "stop_lat": 48.847018927050215, "code_postal": "75115", "stop_lon": 2.2853172086036198, "coord": [48.847018927050215, 2.2853172086036198], "stop_id": 5121364, "stop_desc": "45 RUE LINOIS - 75115", "stop_name": "CHARLES MICHELS"}, "geometry": {"type": "Point", "coordinates": [2.2853172086036198, 48.847018927050215]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b46e542d6473dd3359760ea1df4f2aae43dfcccd", "fields": {"departement": "75", "stop_lat": 48.84109667094733, "code_postal": "75115", "stop_lon": 2.316463002196349, "coord": [48.84109667094733, 2.316463002196349], "stop_id": 5121371, "stop_desc": "44 BOULEVARD DE VAUGIRARD - 75115", "stop_name": "ARMORIQUE - MUSEE POSTAL"}, "geometry": {"type": "Point", "coordinates": [2.316463002196349, 48.84109667094733]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "bc1c8eaa25b2c25f8674431537e5da537025bd3f", "fields": {"departement": "75", "stop_lat": 48.8419870845697, "code_postal": "75115", "stop_lon": 2.320574757251473, "coord": [48.8419870845697, 2.320574757251473], "stop_id": 5121372, "stop_desc": "PLACE RAOUL DAUTRY - 75115", "stop_name": "GARE MONTPARNASSE"}, "geometry": {"type": "Point", "coordinates": [2.320574757251473, 48.8419870845697]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "214a67a0a21bdfc752470af8cb223ffbef4d7f24", "fields": {"departement": "75", "stop_lat": 48.843217014382596, "code_postal": "75115", "stop_lon": 2.3127039743389797, "coord": [48.843217014382596, 2.3127039743389797], "stop_id": 5121375, "stop_desc": "31 BOULEVARD PASTEUR - 75115", "stop_name": "PASTEUR - LYCEE BUFFON"}, "geometry": {"type": "Point", "coordinates": [2.3127039743389797, 48.843217014382596]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5df8f50dda89e0c1a232f908d59457a1b380d79e", "fields": {"departement": "92", "stop_lat": 48.83043815923514, "code_postal": "92012", "stop_lon": 2.2326097227781334, "coord": [48.83043815923514, 2.2326097227781334], "stop_id": 5121380, "stop_desc": "122 AVENUE DU GENERAL LECLERC - 92012", "stop_name": "PONT DE SEVRES"}, "geometry": {"type": "Point", "coordinates": [2.2326097227781334, 48.83043815923514]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b7e3abb255efe234b26b09f6629268daa9971a7c", "fields": {"departement": "75", "stop_lat": 48.833844836440434, "code_postal": "75114", "stop_lon": 2.324539085536249, "coord": [48.833844836440434, 2.324539085536249], "stop_id": 5121393, "stop_desc": "147 AVENUE DU MAINE - 75114", "stop_name": "CHATEAU - MAIRIE DU 14E"}, "geometry": {"type": "Point", "coordinates": [2.324539085536249, 48.833844836440434]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3bf8ad18e09f3b4fbeb9260c0194152f0cba62ac", "fields": {"departement": "75", "stop_lat": 48.82688858812294, "code_postal": "75114", "stop_lon": 2.3262695521776147, "coord": [48.82688858812294, 2.3262695521776147], "stop_id": 5121398, "stop_desc": "96 AVENUE DU GENERAL LECLERC - 75114", "stop_name": "ALESIA - GENERAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.3262695521776147, 48.82688858812294]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5b1e3f9e301dbf2cea0078b5d49cbf800c2b5ca6", "fields": {"departement": "75", "stop_lat": 48.82273618498334, "code_postal": "75114", "stop_lon": 2.325208756264251, "coord": [48.82273618498334, 2.325208756264251], "stop_id": 5121402, "stop_desc": "4 PLACE DU 25 AOUT 1944 - 75114", "stop_name": "PORTE D'ORLEANS-METRO"}, "geometry": {"type": "Point", "coordinates": [2.325208756264251, 48.82273618498334]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8e5a6250b949d508e8639269cbba6707b36b82f7", "fields": {"departement": "92", "stop_lat": 48.81354611827791, "code_postal": "92046", "stop_lon": 2.301953441925509, "coord": [48.81354611827791, 2.301953441925509], "stop_id": 5121409, "stop_desc": "192 AVENUE PIERRE BROSSOLETTE - 92046", "stop_name": "ETIENNE DOLET"}, "geometry": {"type": "Point", "coordinates": [2.301953441925509, 48.81354611827791]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5d52593673e5e4238034e72816645ff6420c1fc6", "fields": {"departement": "92", "stop_lat": 48.811217620547396, "code_postal": "92020", "stop_lon": 2.299764105927095, "coord": [48.811217620547396, 2.299764105927095], "stop_id": 5121410, "stop_desc": "AVENUE PIERRE BROSSOLETTE - 92020", "stop_name": "CHATILLON-MONTROUGE"}, "geometry": {"type": "Point", "coordinates": [2.299764105927095, 48.811217620547396]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "db4f3dfc6c2741446eb0065200d61fea08ade2dd", "fields": {"departement": "92", "stop_lat": 48.806910224236276, "code_postal": "92020", "stop_lon": 2.2931950034092514, "coord": [48.806910224236276, 2.2931950034092514], "stop_id": 5121412, "stop_desc": "63 AVENUE DE PARIS - 92020", "stop_name": "VAUBAN"}, "geometry": {"type": "Point", "coordinates": [2.2931950034092514, 48.806910224236276]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4c9486f24e17be0809f69241eaa364ea905b7778", "fields": {"departement": "92", "stop_lat": 48.78688321416388, "code_postal": "92023", "stop_lon": 2.2553717242870306, "coord": [48.78688321416388, 2.2553717242870306], "stop_id": 5121421, "stop_desc": "231 AV DU GENERAL DE GAULLE - 92023", "stop_name": "HOPITAL ANTOINE BECLERE"}, "geometry": {"type": "Point", "coordinates": [2.2553717242870306, 48.78688321416388]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "75199ea754b7027861915518f4bb08a377f487df", "fields": {"departement": "78", "stop_lat": 48.783800976501404, "code_postal": "78640", "stop_lon": 2.2143423009137058, "coord": [48.783800976501404, 2.2143423009137058], "stop_id": 5121433, "stop_desc": "15-17 AVENUE MORANE SAULNIER - 78640", "stop_name": "DEWOITINE"}, "geometry": {"type": "Point", "coordinates": [2.2143423009137058, 48.783800976501404]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c445b0d11adabe9cb7de1a076fc78f58c6dff449", "fields": {"departement": "78", "stop_lat": 48.78125240027626, "code_postal": "78640", "stop_lon": 2.209615406272064, "coord": [48.78125240027626, 2.209615406272064], "stop_id": 5121436, "stop_desc": "4 AVENUE MORANE SAULNIER - 78640", "stop_name": "INOVEL PARC NORD"}, "geometry": {"type": "Point", "coordinates": [2.209615406272064, 48.78125240027626]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3c902642e2232eefbf6b33ace3d78ecb177aa135", "fields": {"departement": "78", "stop_lat": 48.779955887323084, "code_postal": "78640", "stop_lon": 2.191992961419774, "coord": [48.779955887323084, 2.191992961419774], "stop_id": 5121440, "stop_desc": "0 AV DE L'EUROPE - 78640", "stop_name": "MAIRIE DE VELIZY"}, "geometry": {"type": "Point", "coordinates": [2.191992961419774, 48.779955887323084]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "41e7e03ff114a517b20a60224ea8509efe99eae6", "fields": {"departement": "78", "stop_lat": 48.781640199492635, "code_postal": "78640", "stop_lon": 2.1806318593860197, "coord": [48.781640199492635, 2.1806318593860197], "stop_id": 5121442, "stop_desc": "AVENUE LOUIS BREGUET - 78640", "stop_name": "L'ONDE"}, "geometry": {"type": "Point", "coordinates": [2.1806318593860197, 48.781640199492635]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2eba320b8f18dd42903036623c85fd7062ac621b", "fields": {"departement": "92", "stop_lat": 48.78551534747869, "code_postal": "92023", "stop_lon": 2.2410923396775755, "coord": [48.78551534747869, 2.2410923396775755], "stop_id": 5121446, "stop_desc": "RUE DE LA PORTE DE TRIVAUX - 92023", "stop_name": "ILE DE FRANCE"}, "geometry": {"type": "Point", "coordinates": [2.2410923396775755, 48.78551534747869]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5441404c799bfb9c3697cb2dd2470087d2ba4027", "fields": {"departement": "92", "stop_lat": 48.813375447567154, "code_postal": "92049", "stop_lon": 2.302280168230667, "coord": [48.813375447567154, 2.302280168230667], "stop_id": 5121451, "stop_desc": "189 AVENUE PIERRE BROSSOLETTE - 92049", "stop_name": "ETIENNE DOLET"}, "geometry": {"type": "Point", "coordinates": [2.302280168230667, 48.813375447567154]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "04dc857bf408e206ae96ed49585078250ec6b806", "fields": {"departement": "92", "stop_lat": 48.89719279330585, "code_postal": "92044", "stop_lon": 2.2801826472342235, "coord": [48.89719279330585, 2.2801826472342235], "stop_id": 5121460, "stop_desc": "147-145 RUE ANATOLE FRANCE - 92044", "stop_name": "PONT DE LEVALLOIS - BECON"}, "geometry": {"type": "Point", "coordinates": [2.2801826472342235, 48.89719279330585]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6b64ba9b323b791adc7baef05c743cee8cef079f", "fields": {"departement": "92", "stop_lat": 48.90058284926766, "code_postal": "92044", "stop_lon": 2.2843229394556124, "coord": [48.90058284926766, 2.2843229394556124], "stop_id": 5121465, "stop_desc": "50 QUAI MICHELET - 92044", "stop_name": "RIVAY - QUAI MICHELET"}, "geometry": {"type": "Point", "coordinates": [2.2843229394556124, 48.90058284926766]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7203ca6a1a094596c0b11a4f61d571fd177309df", "fields": {"departement": "92", "stop_lat": 48.90984029641744, "code_postal": "92004", "stop_lon": 2.2860586463160337, "coord": [48.90984029641744, 2.2860586463160337], "stop_id": 5121471, "stop_desc": "7 AVENUE D'ARGENTEUIL - 92004", "stop_name": "GALLIENI"}, "geometry": {"type": "Point", "coordinates": [2.2860586463160337, 48.90984029641744]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8cc2510f9b6661ea823d2217e822a48438fa6a19", "fields": {"departement": "92", "stop_lat": 48.92129776554459, "code_postal": "92004", "stop_lon": 2.283879020641942, "coord": [48.92129776554459, 2.283879020641942], "stop_id": 5121478, "stop_desc": "FACE 45 RUE ROBERT DUPONT - 92004", "stop_name": "MENIL"}, "geometry": {"type": "Point", "coordinates": [2.283879020641942, 48.92129776554459]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8c0d81d95fe0b411b335c45365e95296b9742c91", "fields": {"departement": "92", "stop_lat": 48.92087488546375, "code_postal": "92004", "stop_lon": 2.282788496058093, "coord": [48.92087488546375, 2.282788496058093], "stop_id": 5121479, "stop_desc": "23 RUE ROBERT DUPONT - 92004", "stop_name": "MENIL"}, "geometry": {"type": "Point", "coordinates": [2.282788496058093, 48.92087488546375]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d580d78970ae4de947952c9b64bff0e69f3d0183", "fields": {"departement": "92", "stop_lat": 48.938632104573415, "code_postal": "92036", "stop_lon": 2.2808872655868906, "coord": [48.938632104573415, 2.2808872655868906], "stop_id": 5121488, "stop_desc": "ROUTE PRINCIPALE DU PORT - 92036", "stop_name": "BASSIN N0 2"}, "geometry": {"type": "Point", "coordinates": [2.2808872655868906, 48.938632104573415]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9991354e4c4e11e3b247511b1828a8dd96574972", "fields": {"departement": "92", "stop_lat": 48.93956954489779, "code_postal": "92036", "stop_lon": 2.287188815748167, "coord": [48.93956954489779, 2.287188815748167], "stop_id": 5121489, "stop_desc": "ROUTE PRINCIPALE DU PORT - 92036", "stop_name": "MOLE CENTRAL"}, "geometry": {"type": "Point", "coordinates": [2.287188815748167, 48.93956954489779]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "da8238bc28660189db34596e25c9840655ceb33a", "fields": {"departement": "92", "stop_lat": 48.94139654436982, "code_postal": "92036", "stop_lon": 2.2940355382058546, "coord": [48.94139654436982, 2.2940355382058546], "stop_id": 5121492, "stop_desc": "ROUTE PRINCIPALE DU PORT - 92036", "stop_name": "DARSE N0 5"}, "geometry": {"type": "Point", "coordinates": [2.2940355382058546, 48.94139654436982]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ecc8e73886640423dac66577e059d1e11d0892e1", "fields": {"departement": "92", "stop_lat": 48.94649287294931, "code_postal": "92036", "stop_lon": 2.296364365181311, "coord": [48.94649287294931, 2.296364365181311], "stop_id": 5121496, "stop_desc": "FACE 23 CHEMIN DES PETITS MARAIS - 92036", "stop_name": "CHEMIN DES PETITS MARAIS"}, "geometry": {"type": "Point", "coordinates": [2.296364365181311, 48.94649287294931]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dd70d9fa5ded102acc30bf3ccdf53f353301238e", "fields": {"departement": "92", "stop_lat": 48.94662128647738, "code_postal": "92036", "stop_lon": 2.304823410121321, "coord": [48.94662128647738, 2.304823410121321], "stop_id": 5121497, "stop_desc": "FACE 139 AVENUE MARCEL PAUL - 92036", "stop_name": "DEQUEVAUVILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.304823410121321, 48.94662128647738]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2c584dcb989b87cd07cec74cac58d6c501a0ef4e", "fields": {"departement": "93", "stop_lat": 48.96113911237869, "code_postal": "93031", "stop_lon": 2.2906344442776145, "coord": [48.96113911237869, 2.2906344442776145], "stop_id": 5121511, "stop_desc": "RUE DE LILLE - 93031", "stop_name": "GROS BUISSON"}, "geometry": {"type": "Point", "coordinates": [2.2906344442776145, 48.96113911237869]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "34f0647492abfb2c16b777dd54d4ca07fe19782a", "fields": {"departement": "92", "stop_lat": 48.93063524040443, "code_postal": "92004", "stop_lon": 2.28401943223593, "coord": [48.93063524040443, 2.28401943223593], "stop_id": 5121515, "stop_desc": "BOULEVARD INTERCOMMUNAL - 92004", "stop_name": "ASNIERES - GENNEVILLIERS - LES COURTILLES"}, "geometry": {"type": "Point", "coordinates": [2.28401943223593, 48.93063524040443]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "308da64df0e9a550f5494b7db845aab4cd7e6ec4", "fields": {"departement": "92", "stop_lat": 48.828682026182086, "code_postal": "92012", "stop_lon": 2.2505685247786626, "coord": [48.828682026182086, 2.2505685247786626], "stop_id": 5121567, "stop_desc": "FACE 34 AVENUE PIERRE GRENIER - 92012", "stop_name": "RUE DE SEINE"}, "geometry": {"type": "Point", "coordinates": [2.2505685247786626, 48.828682026182086]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2b1bbad55776e9359f45f3907a91c352207cbfbe", "fields": {"departement": "92", "stop_lat": 48.817410195921894, "code_postal": "92048", "stop_lon": 2.2488316819487673, "coord": [48.817410195921894, 2.2488316819487673], "stop_id": 5121577, "stop_desc": "3 BIS RUE DE PARIS - 92048", "stop_name": "CARREFOUR DE LA FERME"}, "geometry": {"type": "Point", "coordinates": [2.2488316819487673, 48.817410195921894]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0ea5b88d25485f781efeac3e63f2624b1c624ca4", "fields": {"departement": "92", "stop_lat": 48.81268038919311, "code_postal": "92048", "stop_lon": 2.2458458496605767, "coord": [48.81268038919311, 2.2458458496605767], "stop_id": 5121578, "stop_desc": "2-4 AVENUE JEAN JAURES - 92048", "stop_name": "VIADUC"}, "geometry": {"type": "Point", "coordinates": [2.2458458496605767, 48.81268038919311]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ecea3d33aaa1578fdc6a6bc974641fb773135591", "fields": {"departement": "92", "stop_lat": 48.80331430157631, "code_postal": "92048", "stop_lon": 2.2338753366470674, "coord": [48.80331430157631, 2.2338753366470674], "stop_id": 5121586, "stop_desc": "8 AVENUE DE TRIVAUX - 92048", "stop_name": "TRIVAUX - VERTUGADINS - LYCEE"}, "geometry": {"type": "Point", "coordinates": [2.2338753366470674, 48.80331430157631]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ddb2f3a91166915e66697f9edec84286b8c06819", "fields": {"departement": "92", "stop_lat": 48.78618865721884, "code_postal": "92048", "stop_lon": 2.2296793115262967, "coord": [48.78618865721884, 2.2296793115262967], "stop_id": 5121596, "stop_desc": "16 AVENUE DU MARECHAL DE LATTRE DE TASSIGNY - 92048", "stop_name": "LE LAC"}, "geometry": {"type": "Point", "coordinates": [2.2296793115262967, 48.78618865721884]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d908c132d90c5f36b3ba8bd8f87d5944a1cde38e", "fields": {"departement": "92", "stop_lat": 48.78499898712389, "code_postal": "92023", "stop_lon": 2.2362104166240977, "coord": [48.78499898712389, 2.2362104166240977], "stop_id": 5121600, "stop_desc": "RUE DE LA PORTE DE TRIVAUX - 92023", "stop_name": "GEORGES POMPIDOU"}, "geometry": {"type": "Point", "coordinates": [2.2362104166240977, 48.78499898712389]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c2e69bad5ba83d7c136d5106abf5bd62a3d988c6", "fields": {"departement": "92", "stop_lat": 48.82875366827444, "code_postal": "92012", "stop_lon": 2.238684429716348, "coord": [48.82875366827444, 2.238684429716348], "stop_id": 5121615, "stop_desc": "47 CRS EMILE ZOLA - 92012", "stop_name": "EMILE ZOLA"}, "geometry": {"type": "Point", "coordinates": [2.238684429716348, 48.82875366827444]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "07b892dde03993d65f141466e8dda3f3cd4c52e9", "fields": {"departement": "92", "stop_lat": 48.82692273104491, "code_postal": "92012", "stop_lon": 2.2418051290317815, "coord": [48.82692273104491, 2.2418051290317815], "stop_id": 5121616, "stop_desc": "6 PLACE JULES GUESDE - 92012", "stop_name": "PLACE JULES GUESDE"}, "geometry": {"type": "Point", "coordinates": [2.2418051290317815, 48.82692273104491]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "353f32bc68706ae0955c794fe87659af781f524a", "fields": {"departement": "92", "stop_lat": 48.823001273630844, "code_postal": "92040", "stop_lon": 2.249815780704851, "coord": [48.823001273630844, 2.249815780704851], "stop_id": 5121620, "stop_desc": "FACE 16 BOULEVARD DES ILES - 92040", "stop_name": "ILE SAINT-GERMAIN"}, "geometry": {"type": "Point", "coordinates": [2.249815780704851, 48.823001273630844]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8bef964adf5800dc663d574b86bcd8f3a7b8a4f9", "fields": {"departement": "92", "stop_lat": 48.82167109764111, "code_postal": "92040", "stop_lon": 2.2498180216492933, "coord": [48.82167109764111, 2.2498180216492933], "stop_id": 5121621, "stop_desc": "PLACE DE LA RESISTANCE - 92040", "stop_name": "LES MOULINEAUX"}, "geometry": {"type": "Point", "coordinates": [2.2498180216492933, 48.82167109764111]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3b5a57fc1eddd8cb054a7fbe297e07eca9441cdf", "fields": {"departement": "92", "stop_lat": 48.81896462500979, "code_postal": "92048", "stop_lon": 2.2369336892810137, "coord": [48.81896462500979, 2.2369336892810137], "stop_id": 5121627, "stop_desc": "18 ROUTE DES GARDES - 92048", "stop_name": "MEUDON SUR SEINE-TRAMWAY"}, "geometry": {"type": "Point", "coordinates": [2.2369336892810137, 48.81896462500979]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1866adaabc440002737e09c02c6e7b27e9cedbe8", "fields": {"departement": "92", "stop_lat": 48.81640815008475, "code_postal": "92048", "stop_lon": 2.2323385970316534, "coord": [48.81640815008475, 2.2323385970316534], "stop_id": 5121632, "stop_desc": "17 BIS BOULEVARD VERD DE SAINT JULIEN - 92048", "stop_name": "JEANNE D'ARC"}, "geometry": {"type": "Point", "coordinates": [2.2323385970316534, 48.81640815008475]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "db6934a6ece647c247fcffa44830b016cb4b3127", "fields": {"departement": "92", "stop_lat": 48.78756642646553, "code_postal": "92048", "stop_lon": 2.2228482489959354, "coord": [48.78756642646553, 2.2228482489959354], "stop_id": 5121654, "stop_desc": "38 AVENUE COLONEL MARCEL MORANE - 92048", "stop_name": "AERODROME MORANE"}, "geometry": {"type": "Point", "coordinates": [2.2228482489959354, 48.78756642646553]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a8427f20a61d933f0c7d041774444f69a350f90b", "fields": {"departement": "92", "stop_lat": 48.78728175533117, "code_postal": "92048", "stop_lon": 2.225950117356297, "coord": [48.78728175533117, 2.225950117356297], "stop_id": 5121656, "stop_desc": "FACE 43 AVENUE DU GENERAL DE GAULLE - 92048", "stop_name": "ROSERAIE"}, "geometry": {"type": "Point", "coordinates": [2.225950117356297, 48.78728175533117]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "968205ff10709651727cd29eca81ee9f8267be01", "fields": {"departement": "92", "stop_lat": 48.78481065530936, "code_postal": "92023", "stop_lon": 2.2367004292831227, "coord": [48.78481065530936, 2.2367004292831227], "stop_id": 5121664, "stop_desc": "PLACE GEORGES POMPIDOU - 92023", "stop_name": "GEORGES POMPIDOU"}, "geometry": {"type": "Point", "coordinates": [2.2367004292831227, 48.78481065530936]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f03cbcdc7a9875b523fbd138a5c8c54faef2a8b2", "fields": {"departement": "92", "stop_lat": 48.82956904799564, "code_postal": "92012", "stop_lon": 2.235715243309229, "coord": [48.82956904799564, 2.235715243309229], "stop_id": 5121670, "stop_desc": "1099 RUE YVES KERMEN - 92012", "stop_name": "GENERAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.235715243309229, 48.82956904799564]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c646c439f63ea3ee844d654dc92c4d0eb39cef62", "fields": {"departement": "92", "stop_lat": 48.82875366827444, "code_postal": "92012", "stop_lon": 2.238684429716348, "coord": [48.82875366827444, 2.238684429716348], "stop_id": 5121677, "stop_desc": "47 CRS EMILE ZOLA - 92012", "stop_name": "EMILE ZOLA"}, "geometry": {"type": "Point", "coordinates": [2.238684429716348, 48.82875366827444]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e564e58cae41a850babc29fbf0f5d760b3b937d8", "fields": {"departement": "92", "stop_lat": 48.82720176152352, "code_postal": "92012", "stop_lon": 2.2423218868188237, "coord": [48.82720176152352, 2.2423218868188237], "stop_id": 5121679, "stop_desc": "36 RUE YVES KERMEN - 92012", "stop_name": "PLACE JULES GUESDE"}, "geometry": {"type": "Point", "coordinates": [2.2423218868188237, 48.82720176152352]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "53cc560af21a187108dc6a80481a0dc87f586794", "fields": {"departement": "92", "stop_lat": 48.825354349659136, "code_postal": "92012", "stop_lon": 2.24753862744889, "coord": [48.825354349659136, 2.24753862744889], "stop_id": 5121680, "stop_desc": "3 RUE YVES KERMEN - 92012", "stop_name": "PONT DE BILLANCOURT"}, "geometry": {"type": "Point", "coordinates": [2.24753862744889, 48.825354349659136]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c51704c2091a9a95ea051c451fd0052ffd0fe4d8", "fields": {"departement": "92", "stop_lat": 48.822991904898494, "code_postal": "92040", "stop_lon": 2.2492985675114356, "coord": [48.822991904898494, 2.2492985675114356], "stop_id": 5121681, "stop_desc": "FACE 12-14 BOULEVARD DES ILES - 92040", "stop_name": "ILE SAINT-GERMAIN"}, "geometry": {"type": "Point", "coordinates": [2.2492985675114356, 48.822991904898494]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "37d9159c2cfabf98a548412e43969f069ba71e93", "fields": {"departement": "92", "stop_lat": 48.82168067250145, "code_postal": "92040", "stop_lon": 2.250621051266338, "coord": [48.82168067250145, 2.250621051266338], "stop_id": 5121684, "stop_desc": "PLACE DE LA RESISTANCE - 92040", "stop_name": "LES MOULINEAUX"}, "geometry": {"type": "Point", "coordinates": [2.250621051266338, 48.82168067250145]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c95866b116b0c56784da88a5aba904e1b3bf5ea4", "fields": {"departement": "92", "stop_lat": 48.818264411263996, "code_postal": "92040", "stop_lon": 2.2493474086296885, "coord": [48.818264411263996, 2.2493474086296885], "stop_id": 5121685, "stop_desc": "FACE 37 RUE JEAN PIERRE TIMBAUD - 92040", "stop_name": "PAUL BESNARD"}, "geometry": {"type": "Point", "coordinates": [2.2493474086296885, 48.818264411263996]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "01afe8fde2d3c478517cd5bcf9dfe13a13675ab8", "fields": {"departement": "92", "stop_lat": 48.818566538438866, "code_postal": "92048", "stop_lon": 2.2447875037770855, "coord": [48.818566538438866, 2.2447875037770855], "stop_id": 5121687, "stop_desc": "169 AVENUE DE VERDUN - 92048", "stop_name": "GROUPE SCOLAIRE BROSSOLETTE"}, "geometry": {"type": "Point", "coordinates": [2.2447875037770855, 48.818566538438866]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ae2b379f014b1a0289aebe2f42ca1aab33178242", "fields": {"departement": "92", "stop_lat": 48.80331430157631, "code_postal": "92048", "stop_lon": 2.2338753366470674, "coord": [48.80331430157631, 2.2338753366470674], "stop_id": 5121701, "stop_desc": "8 AVENUE DE TRIVAUX - 92048", "stop_name": "TRIVAUX - VERTUGADINS - LYCEE"}, "geometry": {"type": "Point", "coordinates": [2.2338753366470674, 48.80331430157631]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "813534b0319c7207a7fd6fc718185e60a4b2c216", "fields": {"departement": "92", "stop_lat": 48.79875659480729, "code_postal": "92048", "stop_lon": 2.2328776451445167, "coord": [48.79875659480729, 2.2328776451445167], "stop_id": 5121703, "stop_desc": "10 AVENUE DE TRIVAUX - 92048", "stop_name": "CIMETIERE DE TRIVAUX"}, "geometry": {"type": "Point", "coordinates": [2.2328776451445167, 48.79875659480729]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "773165163adf2f8695f10e11dd0bb10c77e232ba", "fields": {"departement": "92", "stop_lat": 48.78905975534039, "code_postal": "92048", "stop_lon": 2.2341349515820745, "coord": [48.78905975534039, 2.2341349515820745], "stop_id": 5121705, "stop_desc": "FACE 2 AVENUE ROBERT SCHUMAN - 92048", "stop_name": "TAPIS VERT"}, "geometry": {"type": "Point", "coordinates": [2.2341349515820745, 48.78905975534039]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d8f20da6d7bce1f52932612555b2c203d5410cc1", "fields": {"departement": "92", "stop_lat": 48.78728175533117, "code_postal": "92048", "stop_lon": 2.225950117356297, "coord": [48.78728175533117, 2.225950117356297], "stop_id": 5121716, "stop_desc": "FACE 43 AVENUE DU GENERAL DE GAULLE - 92048", "stop_name": "ROSERAIE"}, "geometry": {"type": "Point", "coordinates": [2.225950117356297, 48.78728175533117]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b2ccbc596e24c0f9a66176fe4b906d0cac63dc3e", "fields": {"departement": "92", "stop_lat": 48.78618865721884, "code_postal": "92048", "stop_lon": 2.2296793115262967, "coord": [48.78618865721884, 2.2296793115262967], "stop_id": 5121720, "stop_desc": "16 AVENUE DU MARECHAL DE LATTRE DE TASSIGNY - 92048", "stop_name": "LE LAC"}, "geometry": {"type": "Point", "coordinates": [2.2296793115262967, 48.78618865721884]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d38bf6b0589c340aadb416883e06541e054ee74c", "fields": {"departement": "92", "stop_lat": 48.81796908100965, "code_postal": "92040", "stop_lon": 2.2510763751899763, "coord": [48.81796908100965, 2.2510763751899763], "stop_id": 5121725, "stop_desc": "143 AVENUE DE VERDUN - 92040", "stop_name": "VERDUN - JEAN PIERRE TIMBAUD"}, "geometry": {"type": "Point", "coordinates": [2.2510763751899763, 48.81796908100965]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "58f1c7be25872211d5154a606791b4dcd9aa48da", "fields": {"departement": "92", "stop_lat": 48.82439043938498, "code_postal": "92012", "stop_lon": 2.244627399270202, "coord": [48.82439043938498, 2.244627399270202], "stop_id": 5121727, "stop_desc": "6 R NATIONALE - 92012", "stop_name": "TRAVERSIERE"}, "geometry": {"type": "Point", "coordinates": [2.244627399270202, 48.82439043938498]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b5ae484cc1b12ae0c5ae8a37b1b23279b036b184", "fields": {"departement": "92", "stop_lat": 48.814281577410114, "code_postal": "92046", "stop_lon": 2.2971081384927188, "coord": [48.814281577410114, 2.2971081384927188], "stop_id": 5121768, "stop_desc": "116 BOULEVARD CAMELINAT - 92046", "stop_name": "RUE ETIENNE DOLET"}, "geometry": {"type": "Point", "coordinates": [2.2971081384927188, 48.814281577410114]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6d508224133d972e89b8f13ad87dba651add094d", "fields": {"departement": "92", "stop_lat": 48.811684996836185, "code_postal": "92046", "stop_lon": 2.299804593355584, "coord": [48.811684996836185, 2.299804593355584], "stop_id": 5121770, "stop_desc": "176 BOULEVARD CAMELINAT - 92046", "stop_name": "MAISON BLANCHE"}, "geometry": {"type": "Point", "coordinates": [2.299804593355584, 48.811684996836185]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "983188af0c8226653e1bbfd38ac0d7680a35ab5a", "fields": {"departement": "92", "stop_lat": 48.79493221737135, "code_postal": "92007", "stop_lon": 2.3014763536654668, "coord": [48.79493221737135, 2.3014763536654668], "stop_id": 5121778, "stop_desc": "8 RUE SALVADOR ALLENDE - 92007", "stop_name": "DAMPIERRE"}, "geometry": {"type": "Point", "coordinates": [2.3014763536654668, 48.79493221737135]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8690e3046e39f1c759c6d0facfd5332b1ce24ae8", "fields": {"departement": "92", "stop_lat": 48.794807815364386, "code_postal": "92007", "stop_lon": 2.3065915035689617, "coord": [48.794807815364386, 2.3065915035689617], "stop_id": 5121781, "stop_desc": "RUE DES MATHURINS - 92007", "stop_name": "MATHURINS"}, "geometry": {"type": "Point", "coordinates": [2.3065915035689617, 48.794807815364386]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5e74de68edcac753014bd072a993e2759f03f0a1", "fields": {"departement": "92", "stop_lat": 48.79301008993938, "code_postal": "92007", "stop_lon": 2.306021221215337, "coord": [48.79301008993938, 2.306021221215337], "stop_id": 5121782, "stop_desc": "17 R DE LA PORTE D'EN BAS - 92007", "stop_name": "PORTE-D'EN-BAS"}, "geometry": {"type": "Point", "coordinates": [2.306021221215337, 48.79301008993938]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "813ffc66b3f126f385b1441484a9fbd9389f6e5e", "fields": {"departement": "92", "stop_lat": 48.79315406581024, "code_postal": "92007", "stop_lon": 2.306674100744055, "coord": [48.79315406581024, 2.306674100744055], "stop_id": 5121783, "stop_desc": "5 R DES MATHURINS - 92007", "stop_name": "PORTE-D'EN-BAS"}, "geometry": {"type": "Point", "coordinates": [2.306674100744055, 48.79315406581024]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a6a44968fb198af893f3b19bf2ec5c498e0651b2", "fields": {"departement": "92", "stop_lat": 48.79199401064662, "code_postal": "92007", "stop_lon": 2.3043622471258183, "coord": [48.79199401064662, 2.3043622471258183], "stop_id": 5121785, "stop_desc": "0 R PABLO NERUDA - 92007", "stop_name": "SENTIER DES BRUGNAUTS"}, "geometry": {"type": "Point", "coordinates": [2.3043622471258183, 48.79199401064662]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9d1ff163f084482e5a94fc4a225fb1e354cd07ba", "fields": {"departement": "92", "stop_lat": 48.7858208813898, "code_postal": "92007", "stop_lon": 2.3106500677792785, "coord": [48.7858208813898, 2.3106500677792785], "stop_id": 5121803, "stop_desc": "4 AVENUE DE MONTROUGE - 92007", "stop_name": "LES BAS COQUARTS"}, "geometry": {"type": "Point", "coordinates": [2.3106500677792785, 48.7858208813898]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a449675589a68833b4bc864e17ffccd0602081d5", "fields": {"departement": "92", "stop_lat": 48.78498452219128, "code_postal": "92007", "stop_lon": 2.3085830953806896, "coord": [48.78498452219128, 2.3085830953806896], "stop_id": 5121804, "stop_desc": "52 AVENUE DE BOURG LA REINE - 92007", "stop_name": "CLEMENCEAU"}, "geometry": {"type": "Point", "coordinates": [2.3085830953806896, 48.78498452219128]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a38815302ddc1a44003520932f03672ddfd8bd5e", "fields": {"departement": "92", "stop_lat": 48.785369711332365, "code_postal": "92007", "stop_lon": 2.303645566602403, "coord": [48.785369711332365, 2.303645566602403], "stop_id": 5121805, "stop_desc": "100 AVENUE DE BOURG LA REINE - 92007", "stop_name": "LES BLAGIS"}, "geometry": {"type": "Point", "coordinates": [2.303645566602403, 48.785369711332365]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2613e450ada44cdf6e6f0ec60f113068f85b3395", "fields": {"departement": "92", "stop_lat": 48.771852349882124, "code_postal": "92060", "stop_lon": 2.2512072640009664, "coord": [48.771852349882124, 2.2512072640009664], "stop_id": 5121823, "stop_desc": "VOIE DU LOUP PENDU - 92060", "stop_name": "SEVERINE"}, "geometry": {"type": "Point", "coordinates": [2.2512072640009664, 48.771852349882124]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "45a82d36a4186d172eedbf6a79061bf7b6abd6d8", "fields": {"departement": "92", "stop_lat": 48.78279205159083, "code_postal": "92060", "stop_lon": 2.266843607748729, "coord": [48.78279205159083, 2.266843607748729], "stop_id": 5121828, "stop_desc": "RUE LUCIEN ARRUFAT - 92060", "stop_name": "L'ESCALIER"}, "geometry": {"type": "Point", "coordinates": [2.266843607748729, 48.78279205159083]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "653d02910939a3883eb5a5090d2f1d2e0d0f45f9", "fields": {"departement": "92", "stop_lat": 48.77942031113781, "code_postal": "92071", "stop_lon": 2.2814272358456726, "coord": [48.77942031113781, 2.2814272358456726], "stop_id": 5121832, "stop_desc": "FACE 4 AVENUE DE LA GARE - 92071", "stop_name": "ROBINSON RER."}, "geometry": {"type": "Point", "coordinates": [2.2814272358456726, 48.77942031113781]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "12901f3ac8e8671e30f8f5f69cb93e1bab02eb32", "fields": {"departement": "92", "stop_lat": 48.77679984747266, "code_postal": "92060", "stop_lon": 2.257046718411991, "coord": [48.77679984747266, 2.257046718411991], "stop_id": 5121839, "stop_desc": "86 AVENUE CHARLES DE GAULLE - 92060", "stop_name": "CITE JARDINS - PLACE DES ALLIES"}, "geometry": {"type": "Point", "coordinates": [2.257046718411991, 48.77679984747266]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "328fb03c4fd3281dbdc82d013cfccd7767f41903", "fields": {"departement": "92", "stop_lat": 48.774154829806925, "code_postal": "92060", "stop_lon": 2.2533656107197997, "coord": [48.774154829806925, 2.2533656107197997], "stop_id": 5121840, "stop_desc": "20 AVENUE LEON BLUM - 92060", "stop_name": "LEON BLUM"}, "geometry": {"type": "Point", "coordinates": [2.2533656107197997, 48.774154829806925]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d8c20ed5f2f360c48fb69aac62e22899f3b792c0", "fields": {"departement": "92", "stop_lat": 48.82103385059169, "code_postal": "92072", "stop_lon": 2.2195487236772755, "coord": [48.82103385059169, 2.2195487236772755], "stop_id": 5121855, "stop_desc": "RUE DES BRUYERES - 92072", "stop_name": "GARE DE SEVRES - RIVE GAUCHE"}, "geometry": {"type": "Point", "coordinates": [2.2195487236772755, 48.82103385059169]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "be62e06ed9e8098d31a8cb17fd869e23d265e797", "fields": {"departement": "92", "stop_lat": 48.823129847513385, "code_postal": "92072", "stop_lon": 2.221449556511516, "coord": [48.823129847513385, 2.221449556511516], "stop_id": 5121856, "stop_desc": "FACE 28 AVENUE DE LA DIVISION LECLERC - 92072", "stop_name": "BRIMBORION - DIVISION LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.221449556511516, 48.823129847513385]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1edc51f99a4a918d7fbf09e98e12cc866a198f52", "fields": {"departement": "91", "stop_lat": 48.72503602399836, "code_postal": "91377", "stop_lon": 2.255835922477194, "coord": [48.72503602399836, 2.255835922477194], "stop_id": 5121931, "stop_desc": "PISTE GARE ROUTIERE - 91377", "stop_name": "MASSY-PALAISEAU RER"}, "geometry": {"type": "Point", "coordinates": [2.255835922477194, 48.72503602399836]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "be9dc0139e4d9f34cdd67b06142cea2d60d3c617", "fields": {"departement": "91", "stop_lat": 48.74282908897804, "code_postal": "91645", "stop_lon": 2.263812739611913, "coord": [48.74282908897804, 2.263812739611913], "stop_id": 5121947, "stop_desc": "FACE 27 BOULEVARD DU MARECHAL FOCH - 91645", "stop_name": "GRANDS CHENES"}, "geometry": {"type": "Point", "coordinates": [2.263812739611913, 48.74282908897804]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ec3a4dab8d238fc791c40e31cc17cf2f08caefeb", "fields": {"departement": "91", "stop_lat": 48.74439504485675, "code_postal": "91645", "stop_lon": 2.267126659210256, "coord": [48.74439504485675, 2.267126659210256], "stop_id": 5121948, "stop_desc": "42 BOULEVARD DU MARECHAL FOCH - 91645", "stop_name": "FOCH - LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.267126659210256, 48.74439504485675]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "acb807a943d58f3e51e2084f9ae7fc489fa712e7", "fields": {"departement": "91", "stop_lat": 48.743945027466765, "code_postal": "91645", "stop_lon": 2.266107972275051, "coord": [48.743945027466765, 2.266107972275051], "stop_id": 5121949, "stop_desc": "BOULEVARD DU MARECHAL FOCH - 91645", "stop_name": "FOCH - LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.266107972275051, 48.743945027466765]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8eb714fc85162a6467be79e71de4655dfd0ba259", "fields": {"departement": "91", "stop_lat": 48.74630205931568, "code_postal": "91645", "stop_lon": 2.2697335974341466, "coord": [48.74630205931568, 2.2697335974341466], "stop_id": 5121950, "stop_desc": "BOULEVARD DU MARECHAL FOCH - 91645", "stop_name": "PARON"}, "geometry": {"type": "Point", "coordinates": [2.2697335974341466, 48.74630205931568]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "13ab5e37cc695cfa433ef52671c799363bd0b18e", "fields": {"departement": "91", "stop_lat": 48.75199312360041, "code_postal": "91645", "stop_lon": 2.2724855204515526, "coord": [48.75199312360041, 2.2724855204515526], "stop_id": 5121954, "stop_desc": "CARREFOUR DE L'EUROPE - 91645", "stop_name": "LES ANTES"}, "geometry": {"type": "Point", "coordinates": [2.2724855204515526, 48.75199312360041]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "acb9833994be806b21b7fcea2394c95aa1c71e70", "fields": {"departement": "92", "stop_lat": 48.75801370668038, "code_postal": "92019", "stop_lon": 2.2698135409649574, "coord": [48.75801370668038, 2.2698135409649574], "stop_id": 5121956, "stop_desc": "FACE 5 RUE JEAN-BAPTISTE CLEMENT - 92019", "stop_name": "GROUPE SCOLAIRE SOPHIE BARAT"}, "geometry": {"type": "Point", "coordinates": [2.2698135409649574, 48.75801370668038]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "18d9ed8c856e4c06beeb4e08d9316b63a20742b8", "fields": {"departement": "92", "stop_lat": 48.76668861303903, "code_postal": "92019", "stop_lon": 2.2722904474309713, "coord": [48.76668861303903, 2.2722904474309713], "stop_id": 5121962, "stop_desc": "134 AVENUE ROGER SALENGRO - 92019", "stop_name": "JULES VERNE"}, "geometry": {"type": "Point", "coordinates": [2.2722904474309713, 48.76668861303903]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cc26f750d23e7f55d6328d6473f56595cc68b498", "fields": {"departement": "92", "stop_lat": 48.77004221401073, "code_postal": "92019", "stop_lon": 2.2742442816575563, "coord": [48.77004221401073, 2.2742442816575563], "stop_id": 5121965, "stop_desc": "89 AVENUE ROGER SALENGRO - 92019", "stop_name": "JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.2742442816575563, 48.77004221401073]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "817151b36be6838ec47989e0b0150f19ca766f0b", "fields": {"departement": "92", "stop_lat": 48.76994317207525, "code_postal": "92019", "stop_lon": 2.2739180644920944, "coord": [48.76994317207525, 2.2739180644920944], "stop_id": 5121966, "stop_desc": "88 AVENUE ROGER SALENGRO - 92019", "stop_name": "JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.2739180644920944, 48.76994317207525]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1cc237c2c52247f2f6a5ac6b4e3629b565f6484a", "fields": {"departement": "92", "stop_lat": 48.77302725091217, "code_postal": "92019", "stop_lon": 2.276171604837392, "coord": [48.77302725091217, 2.276171604837392], "stop_id": 5121967, "stop_desc": "FACE 36 AVENUE ROGER SALENGRO - 92019", "stop_name": "MARC SANGNIER"}, "geometry": {"type": "Point", "coordinates": [2.276171604837392, 48.77302725091217]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "50c8dedd8d6c0b97f9b9fd795fb7b9d52357040b", "fields": {"departement": "92", "stop_lat": 48.788959603982086, "code_postal": "92032", "stop_lon": 2.2884085971458927, "coord": [48.788959603982086, 2.2884085971458927], "stop_id": 5121976, "stop_desc": "3 AVENUE JEAN MOULIN - 92032", "stop_name": "BOULEVARD DE LA REPUBLIQUE"}, "geometry": {"type": "Point", "coordinates": [2.2884085971458927, 48.788959603982086]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aeec7c0c48113339a885ad6485238597b2c843c7", "fields": {"departement": "92", "stop_lat": 48.791260868710474, "code_postal": "92032", "stop_lon": 2.2892906255623, "coord": [48.791260868710474, 2.2892906255623], "stop_id": 5121979, "stop_desc": "AVENUE JEANNE ET MAURICE DOLIVET - 92032", "stop_name": "THEATRE DES SOURCES"}, "geometry": {"type": "Point", "coordinates": [2.2892906255623, 48.791260868710474]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5ba3765f224caa7fd83cfab304ad58a40c4dc1e8", "fields": {"departement": "92", "stop_lat": 48.80110443712414, "code_postal": "92020", "stop_lon": 2.2941251068474418, "coord": [48.80110443712414, 2.2941251068474418], "stop_id": 5121983, "stop_desc": "FACE 57 AVENUE DE LA REPUBLIQUE - 92020", "stop_name": "REPUBLIQUE - LIBERTE"}, "geometry": {"type": "Point", "coordinates": [2.2941251068474418, 48.80110443712414]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "df071f5251b8bec92ffea6feeb96f6f96232054d", "fields": {"departement": "92", "stop_lat": 48.80648956893726, "code_postal": "92020", "stop_lon": 2.2982707549064973, "coord": [48.80648956893726, 2.2982707549064973], "stop_id": 5121986, "stop_desc": "140 AVENUE DE LA REPUBLIQUE - 92020", "stop_name": "PIERRE SEMARD - CHATILLON-MONTROUGE"}, "geometry": {"type": "Point", "coordinates": [2.2982707549064973, 48.80648956893726]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "770737e729213c1e5416f37886c59217638913b1", "fields": {"departement": "92", "stop_lat": 48.815009431633264, "code_postal": "92046", "stop_lon": 2.296658472343413, "coord": [48.815009431633264, 2.296658472343413], "stop_id": 5121989, "stop_desc": "FACE 102 BOULEVARD CAMELINAT - 92046", "stop_name": "RUE ETIENNE DOLET"}, "geometry": {"type": "Point", "coordinates": [2.296658472343413, 48.815009431633264]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b91c5bd4143b5216a1475f7690bc0f875a397014", "fields": {"departement": "75", "stop_lat": 48.82530272173102, "code_postal": "75114", "stop_lon": 2.30435474951014, "coord": [48.82530272173102, 2.30435474951014], "stop_id": 5121993, "stop_desc": "AVENUE DE LA PORTE DE VANVES - 75114", "stop_name": "PONT DE LA VALLEE"}, "geometry": {"type": "Point", "coordinates": [2.30435474951014, 48.82530272173102]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "591df353477fade23b273eb3cdcd15dea9965a73", "fields": {"departement": "75", "stop_lat": 48.827531793610724, "code_postal": "75114", "stop_lon": 2.3048433854233843, "coord": [48.827531793610724, 2.3048433854233843], "stop_id": 5121995, "stop_desc": "0 PLACE DE LA PORTE DE VANVES - 75114", "stop_name": "PORTE DE VANVES"}, "geometry": {"type": "Point", "coordinates": [2.3048433854233843, 48.827531793610724]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "54d42785ca288511b9de69efbe2f50e18776bc79", "fields": {"departement": "75", "stop_lat": 48.88269019810708, "code_postal": "75110", "stop_lon": 2.3587988991979594, "coord": [48.88269019810708, 2.3587988991979594], "stop_id": 3749765, "stop_desc": "197 RUE DU FAUBOURG SAINT-DENIS - 75110", "stop_name": "CAIL - DEMARQUAY"}, "geometry": {"type": "Point", "coordinates": [2.3587988991979594, 48.88269019810708]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "aced8c44bb337a89760869884d4828ec0ebc3e4e", "fields": {"departement": "75", "stop_lat": 48.880677255819144, "code_postal": "75110", "stop_lon": 2.357653442709006, "coord": [48.880677255819144, 2.357653442709006], "stop_id": 3749767, "stop_desc": "183 RUE DU FAUBOURG SAINT-DENIS - 75110", "stop_name": "GARE DU NORD"}, "geometry": {"type": "Point", "coordinates": [2.357653442709006, 48.880677255819144]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1ace324f96e543db618021882a035835cc6771be", "fields": {"departement": "75", "stop_lat": 48.88275804381038, "code_postal": "75119", "stop_lon": 2.3750695349111295, "coord": [48.88275804381038, 2.3750695349111295], "stop_id": 3749759, "stop_desc": "FACE 58 RUE ARMAND CARREL - 75119", "stop_name": "RUE DE MEAUX"}, "geometry": {"type": "Point", "coordinates": [2.3750695349111295, 48.88275804381038]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f067717170ea06765c1bee76033d6e1c84731165", "fields": {"departement": "92", "stop_lat": 48.879696696187594, "code_postal": "92051", "stop_lon": 2.253181205415918, "coord": [48.879696696187594, 2.253181205415918], "stop_id": 3749726, "stop_desc": "68 RUE DE LONGCHAMP - 92051", "stop_name": "RUE DU CENTRE"}, "geometry": {"type": "Point", "coordinates": [2.253181205415918, 48.879696696187594]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "68d15fbd12039bf8f7ccaea8a30e2777f013d656", "fields": {"departement": "75", "stop_lat": 48.88024435952211, "code_postal": "75119", "stop_lon": 2.4083840441132685, "coord": [48.88024435952211, 2.4083840441132685], "stop_id": 3749743, "stop_desc": "24 AVENUE RENE FONCK - 75119", "stop_name": "JEAN JAURES"}, "geometry": {"type": "Point", "coordinates": [2.4083840441132685, 48.88024435952211]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "278c8e142c02138e74e557f62134b52cf042b9ec", "fields": {"departement": "75", "stop_lat": 48.87931043156718, "code_postal": "75119", "stop_lon": 2.3895924100689605, "coord": [48.87931043156718, 2.3895924100689605], "stop_id": 3749753, "stop_desc": "37-39 RUE DE CRIMEE - 75119", "stop_name": "BOTZARIS"}, "geometry": {"type": "Point", "coordinates": [2.3895924100689605, 48.87931043156718]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1283af7cb9d728d45eff98d357af60aa44327c6d", "fields": {"departement": "75", "stop_lat": 48.868848352216375, "code_postal": "75108", "stop_lon": 2.3089454267019436, "coord": [48.868848352216375, 2.3089454267019436], "stop_id": 3749909, "stop_desc": "ROND-POINT DES CHAMPS ELYSEES - 75108", "stop_name": "ROND-POINT DES CHAMPS-ELYSEES"}, "geometry": {"type": "Point", "coordinates": [2.3089454267019436, 48.868848352216375]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c3799bd25e67d1c254ec82c5c5d539039b02c1d7", "fields": {"departement": "75", "stop_lat": 48.86731087606469, "code_postal": "75108", "stop_lon": 2.306371535143338, "coord": [48.86731087606469, 2.306371535143338], "stop_id": 3749907, "stop_desc": "35-37 AVENUE MONTAIGNE - 75108", "stop_name": "MONTAIGNE - FRANCOIS 1ER"}, "geometry": {"type": "Point", "coordinates": [2.306371535143338, 48.86731087606469]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4368e4e4bb6de2ca1414c4679c4164535fb2282d", "fields": {"departement": "75", "stop_lat": 48.874863096583965, "code_postal": "75108", "stop_lon": 2.3207958046274593, "coord": [48.874863096583965, 2.3207958046274593], "stop_id": 3749913, "stop_desc": "FACE 24 RUE DE LA PEPINIERE - 75108", "stop_name": "SAINT-AUGUSTIN"}, "geometry": {"type": "Point", "coordinates": [2.3207958046274593, 48.874863096583965]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e4ae54109a08467f6a70842f61a2faa181248341", "fields": {"departement": "75", "stop_lat": 48.867131293216886, "code_postal": "75108", "stop_lon": 2.30701191687767, "coord": [48.867131293216886, 2.30701191687767], "stop_id": 3749906, "stop_desc": "36 AVENUE MONTAIGNE - 75108", "stop_name": "MONTAIGNE - FRANCOIS 1ER"}, "geometry": {"type": "Point", "coordinates": [2.30701191687767, 48.867131293216886]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "617aa59e961271e9d4e2ccfd121f15825e4fa613", "fields": {"departement": "75", "stop_lat": 48.881199633166666, "code_postal": "75108", "stop_lon": 2.3250044012022726, "coord": [48.881199633166666, 2.3250044012022726], "stop_id": 3749920, "stop_desc": "11 BIS-13 RUE DE SAINT-PETERSBOURG - 75108", "stop_name": "BUCAREST"}, "geometry": {"type": "Point", "coordinates": [2.3250044012022726, 48.881199633166666]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ad706be63e713fd167746df2ebb888fc466ca7ae", "fields": {"departement": "75", "stop_lat": 48.86207006010493, "code_postal": "75107", "stop_lon": 2.302124736083145, "coord": [48.86207006010493, 2.302124736083145], "stop_id": 3749902, "stop_desc": "1 PLACE DE LA RESISTANCE - 75107", "stop_name": "BOSQUET - RAPP"}, "geometry": {"type": "Point", "coordinates": [2.302124736083145, 48.86207006010493]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4bf0feef24e081bfddedfbc7d40da9a6ddd2d0d6", "fields": {"departement": "75", "stop_lat": 48.856876049163155, "code_postal": "75107", "stop_lon": 2.3046343661421838, "coord": [48.856876049163155, 2.3046343661421838], "stop_id": 3749898, "stop_desc": "51 AVENUE BOSQUET - 75107", "stop_name": "BOSQUET - GRENELLE"}, "geometry": {"type": "Point", "coordinates": [2.3046343661421838, 48.856876049163155]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a51cad1e19dd4e347d44dadcfafca2211b3dbd5f", "fields": {"departement": "75", "stop_lat": 48.845361087769916, "code_postal": "75115", "stop_lon": 2.297982819679423, "coord": [48.845361087769916, 2.297982819679423], "stop_id": 3749890, "stop_desc": "51-53 RUE DE LA CROIX-NIVERT - 75115", "stop_name": "FONDARY"}, "geometry": {"type": "Point", "coordinates": [2.297982819679423, 48.845361087769916]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6f32003d718c425381c5c34add2f1b90cc1d2d9e", "fields": {"departement": "75", "stop_lat": 48.84182036529942, "code_postal": "75115", "stop_lon": 2.2991020300187515, "coord": [48.84182036529942, 2.2991020300187515], "stop_id": 3749887, "stop_desc": "FACE 2 RUE PETEL - 75115", "stop_name": "MAIRIE DU 15E"}, "geometry": {"type": "Point", "coordinates": [2.2991020300187515, 48.84182036529942]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6b44a441c4819964e01e715a8082f15c2901b2d3", "fields": {"departement": "92", "stop_lat": 48.90330711424439, "code_postal": "92024", "stop_lon": 2.317787647206466, "coord": [48.90330711424439, 2.317787647206466], "stop_id": 3749962, "stop_desc": "FACE 5 BIS-5 TER RUE GEORGES BOISSEAU - 92024", "stop_name": "GEORGES BOISSEAU"}, "geometry": {"type": "Point", "coordinates": [2.317787647206466, 48.90330711424439]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9762c221b0f48460c35b6b2fa26531e32466d18e", "fields": {"departement": "75", "stop_lat": 48.88280850473842, "code_postal": "75108", "stop_lon": 2.3266120054743964, "coord": [48.88280850473842, 2.3266120054743964], "stop_id": 3749921, "stop_desc": "FACE 45 RUE DE SAINT PETERSBOURG - 75108", "stop_name": "PLACE DE CLICHY"}, "geometry": {"type": "Point", "coordinates": [2.3266120054743964, 48.88280850473842]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "042a1dbf00ef6240927ee8b58d36fbf438e6a81e", "fields": {"departement": "92", "stop_lat": 48.903019640999084, "code_postal": "92024", "stop_lon": 2.3184966349241547, "coord": [48.903019640999084, 2.3184966349241547], "stop_id": 3749960, "stop_desc": "2 RUE GEORGES BOISSEAU - 92024", "stop_name": "VICTOR HUGO - SANZILLON"}, "geometry": {"type": "Point", "coordinates": [2.3184966349241547, 48.903019640999084]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4a9037c8f8ff3a6aaabcac43669c1b7ccc07e720", "fields": {"departement": "92", "stop_lat": 48.90880632553284, "code_postal": "92024", "stop_lon": 2.3130137422792876, "coord": [48.90880632553284, 2.3130137422792876], "stop_id": 3749965, "stop_desc": "90 RUE DU GENERAL ROGUET - 92024", "stop_name": "CIMETIERE DE CLICHY"}, "geometry": {"type": "Point", "coordinates": [2.3130137422792876, 48.90880632553284]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "35cee382f0c5cdbf71a963594b58f4a0583ed8dd", "fields": {"departement": "75", "stop_lat": 48.87411645667242, "code_postal": "75108", "stop_lon": 2.3163680133309223, "coord": [48.87411645667242, 2.3163680133309223], "stop_id": 3749938, "stop_desc": "20 BIS RUE LA BOETIE - 75108", "stop_name": "LA BOETIE - MIROMESNIL"}, "geometry": {"type": "Point", "coordinates": [2.3163680133309223, 48.87411645667242]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e3932eabf312dc13bde08c74157d4789dc8b5404", "fields": {"departement": "75", "stop_lat": 48.89894976781214, "code_postal": "75118", "stop_lon": 2.343974879515095, "coord": [48.89894976781214, 2.343974879515095], "stop_id": 3749947, "stop_desc": "FACE 81 BD ORNANO - 75118", "stop_name": "PORTE DE CLIGNANCOURT"}, "geometry": {"type": "Point", "coordinates": [2.343974879515095, 48.89894976781214]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ac53e0cc591a62d0643489bb4083889693788c3c", "fields": {"departement": "75", "stop_lat": 48.88763505445235, "code_postal": "75118", "stop_lon": 2.33334337286179, "coord": [48.88763505445235, 2.33334337286179], "stop_id": 3749925, "stop_desc": "11 RUE CAULAINCOURT - 75118", "stop_name": "DAMREMONT - CAULAINCOURT"}, "geometry": {"type": "Point", "coordinates": [2.33334337286179, 48.88763505445235]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "900e015f4a73ae4ca013fc029d14a71fe63c9749", "fields": {"departement": "92", "stop_lat": 48.90992896434792, "code_postal": "92024", "stop_lon": 2.3096046868542586, "coord": [48.90992896434792, 2.3096046868542586], "stop_id": 3749969, "stop_desc": "19 AVENUE CLAUDE DEBUSSY - 92024", "stop_name": "CLAUDE DEBUSSY"}, "geometry": {"type": "Point", "coordinates": [2.3096046868542586, 48.90992896434792]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cac2e79772458452c1a2c7f404436677d96ef3c2", "fields": {"departement": "92", "stop_lat": 48.91005546878827, "code_postal": "92024", "stop_lon": 2.3127404747579794, "coord": [48.91005546878827, 2.3127404747579794], "stop_id": 3749968, "stop_desc": "RUE DU GENERAL ROGUET - 92024", "stop_name": "RUE PIERRE"}, "geometry": {"type": "Point", "coordinates": [2.3127404747579794, 48.91005546878827]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6b6bedb2c10a59caaa7d0dc3d9a14cc15b7836eb", "fields": {"departement": "93", "stop_lat": 48.90100735825607, "code_postal": "93070", "stop_lon": 2.3248225059092067, "coord": [48.90100735825607, 2.3248225059092067], "stop_id": 3749954, "stop_desc": "10 RUE FRUCTIDOR - 93070", "stop_name": "COLISEE"}, "geometry": {"type": "Point", "coordinates": [2.3248225059092067, 48.90100735825607]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "de1f3454c78895e784b4719d5d29e5732b6d4fde", "fields": {"departement": "75", "stop_lat": 48.890721839724435, "code_postal": "75117", "stop_lon": 2.3031683839959776, "coord": [48.890721839724435, 2.3031683839959776], "stop_id": 3749979, "stop_desc": "22 AVENUE DE LA PORTE D'ASNIERES - 75117", "stop_name": "PORTE D'ASNIERES"}, "geometry": {"type": "Point", "coordinates": [2.3031683839959776, 48.890721839724435]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "080962f005a22fdf32bc7d983e69bee17df03927", "fields": {"departement": "75", "stop_lat": 48.88929740282315, "code_postal": "75118", "stop_lon": 2.3281507155096497, "coord": [48.88929740282315, 2.3281507155096497], "stop_id": 3750000, "stop_desc": "59-61 R GANNERON - 75118", "stop_name": "VILLA SAINT-MICHEL"}, "geometry": {"type": "Point", "coordinates": [2.3281507155096497, 48.88929740282315]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1f947ee5b2f393c1c7278d766adbd8d811bc47a6", "fields": {"departement": "75", "stop_lat": 48.88717441776452, "code_postal": "75117", "stop_lon": 2.3135689841028446, "coord": [48.88717441776452, 2.3135689841028446], "stop_id": 3750008, "stop_desc": "3-5 RUE JOUFFROY D'ABBANS - 75117", "stop_name": "PONT CARDINET"}, "geometry": {"type": "Point", "coordinates": [2.3135689841028446, 48.88717441776452]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "274ca705c84342a7d73c22351a9cacb7fe467137", "fields": {"departement": "75", "stop_lat": 48.89858095750269, "code_postal": "75117", "stop_lon": 2.326036258935306, "coord": [48.89858095750269, 2.326036258935306], "stop_id": 3750020, "stop_desc": "22 R FREDERIC BRUNET - 75117", "stop_name": "FREDERIC BRUNET"}, "geometry": {"type": "Point", "coordinates": [2.326036258935306, 48.89858095750269]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fc3b0b65242cd359196692e745b87ff93ea293e6", "fields": {"departement": "75", "stop_lat": 48.89272652768681, "code_postal": "75118", "stop_lon": 2.369366007863408, "coord": [48.89272652768681, 2.369366007863408], "stop_id": 3750028, "stop_desc": "FACE 140 RUE D'AUBERVILLIERS - 75118", "stop_name": "RADIGUET"}, "geometry": {"type": "Point", "coordinates": [2.369366007863408, 48.89272652768681]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3e384dd79004cabd803eb1366155b129717209c0", "fields": {"departement": "75", "stop_lat": 48.88412784155336, "code_postal": "75117", "stop_lon": 2.3140337054896127, "coord": [48.88412784155336, 2.3140337054896127], "stop_id": 3750006, "stop_desc": "25 R LEGENDRE - 75117", "stop_name": "PLACE DE LEVIS"}, "geometry": {"type": "Point", "coordinates": [2.3140337054896127, 48.88412784155336]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1f134f836ed8f5157d7bc50e9f8845de80bad43d", "fields": {"departement": "92", "stop_lat": 48.90449961551857, "code_postal": "92024", "stop_lon": 2.304972468676297, "coord": [48.90449961551857, 2.304972468676297], "stop_id": 3749975, "stop_desc": "102 BIS RUE MARTRE - 92024", "stop_name": "LANDY - MARTRE"}, "geometry": {"type": "Point", "coordinates": [2.304972468676297, 48.90449961551857]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d40032c38587af63d146efcc246f26b016d298c9", "fields": {"departement": "75", "stop_lat": 48.884326477576124, "code_postal": "75117", "stop_lon": 2.319348297127023, "coord": [48.884326477576124, 2.319348297127023], "stop_id": 3750010, "stop_desc": "79 R LA CONDAMINE - 75117", "stop_name": "LA CONDAMINE"}, "geometry": {"type": "Point", "coordinates": [2.319348297127023, 48.884326477576124]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0101decc3bac1aa5c07c40c80a920e7134b8b124", "fields": {"departement": "92", "stop_lat": 48.907438204202705, "code_postal": "92024", "stop_lon": 2.304302597963457, "coord": [48.907438204202705, 2.304302597963457], "stop_id": 3749985, "stop_desc": "26 RUE GABRIEL PERI - 92024", "stop_name": "BATELIERS"}, "geometry": {"type": "Point", "coordinates": [2.304302597963457, 48.907438204202705]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f2f4ac353698f5baa92ad0acfe73b7a68af3a022", "fields": {"departement": "75", "stop_lat": 48.89104063356595, "code_postal": "75117", "stop_lon": 2.3249884462548565, "coord": [48.89104063356595, 2.3249884462548565], "stop_id": 3750015, "stop_desc": "13-15 R DAVY - 75117", "stop_name": "DAVY"}, "geometry": {"type": "Point", "coordinates": [2.3249884462548565, 48.89104063356595]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "73ee6df449ca4a8233b70401abe0a315c6056d91", "fields": {"departement": "75", "stop_lat": 48.899664028389076, "code_postal": "75119", "stop_lon": 2.3714286515001928, "coord": [48.899664028389076, 2.3714286515001928], "stop_id": 3750048, "stop_desc": "85/87 RUE EMILE BOLLAERT - 75119", "stop_name": "PORTE D'AUBERVILLIERS - OBERLE."}, "geometry": {"type": "Point", "coordinates": [2.3714286515001928, 48.899664028389076]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7dd3ee9933dcf40a7c6f638d7c6c612214085e52", "fields": {"departement": "75", "stop_lat": 48.89745787204729, "code_postal": "75118", "stop_lon": 2.329975814491889, "coord": [48.89745787204729, 2.329975814491889], "stop_id": 3749952, "stop_desc": "151 BOULEVARD NEY - 75118", "stop_name": "PORTE DE SAINT-OUEN - HOPITAL BICHAT"}, "geometry": {"type": "Point", "coordinates": [2.329975814491889, 48.89745787204729]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6f07e4f4bf49ace42624b67a5ccfd66d83f7c515", "fields": {"departement": "75", "stop_lat": 48.82250292790447, "code_postal": "75114", "stop_lon": 2.3305852155803812, "coord": [48.82250292790447, 2.3305852155803812], "stop_id": 3754208, "stop_desc": "FACE 160 RUE DE LA TOMBE-ISSOIRE - 75114", "stop_name": "MONTSOURIS - TOMBE ISSOIRE"}, "geometry": {"type": "Point", "coordinates": [2.3305852155803812, 48.82250292790447]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "c5992697f30b7b75b7d62a5ef5b541fd57a3a6e5", "fields": {"departement": "75", "stop_lat": 48.884567463040085, "code_postal": "75118", "stop_lon": 2.364059875108995, "coord": [48.884567463040085, 2.364059875108995], "stop_id": 3750031, "stop_desc": "6-8 BOULEVARD DE LA CHAPELLE - 75118", "stop_name": "CHAPELLE - CAILLIE"}, "geometry": {"type": "Point", "coordinates": [2.364059875108995, 48.884567463040085]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "211c02bb337534bde36bb6c39543ea60f9c072ea", "fields": {"departement": "75", "stop_lat": 48.89508958584366, "code_postal": "75119", "stop_lon": 2.3713983744770486, "coord": [48.89508958584366, 2.3713983744770486], "stop_id": 3750040, "stop_desc": "198 RUE D'AUBERVILLIERS - 75119", "stop_name": "EVANGILE - AUBERVILLIERS"}, "geometry": {"type": "Point", "coordinates": [2.3713983744770486, 48.89508958584366]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "193c89533017425494ea05d08ce50fda9a61dd89", "fields": {"departement": "75", "stop_lat": 48.89830074187603, "code_postal": "75118", "stop_lon": 2.35985498121694, "coord": [48.89830074187603, 2.35985498121694], "stop_id": 3750045, "stop_desc": "27 BOULEVARD NEY - 75118", "stop_name": "PORTE DE LA CHAPELLE."}, "geometry": {"type": "Point", "coordinates": [2.35985498121694, 48.89830074187603]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "47d045aeacd95619d05979d09995096ae2891b16", "fields": {"departement": "75", "stop_lat": 48.88988690377794, "code_postal": "75118", "stop_lon": 2.36813765209292, "coord": [48.88988690377794, 2.36813765209292], "stop_id": 3750029, "stop_desc": "FACE 92 RUE D'AUBERVILLIERS - 75118", "stop_name": "RIQUET"}, "geometry": {"type": "Point", "coordinates": [2.36813765209292, 48.88988690377794]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d1314319f5c10a6aa65d7604d22dc0ab3fd3c966", "fields": {"departement": "75", "stop_lat": 48.88880976628742, "code_postal": "75118", "stop_lon": 2.3625084127470477, "coord": [48.88880976628742, 2.3625084127470477], "stop_id": 3750034, "stop_desc": "FACE 37 RUE PAJOL - 75118", "stop_name": "PAJOL"}, "geometry": {"type": "Point", "coordinates": [2.3625084127470477, 48.88880976628742]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "34bef2b3af1983284beb561cfcabaf8f91db6254", "fields": {"departement": "94", "stop_lat": 48.80669368515831, "code_postal": "94003", "stop_lon": 2.336941718396992, "coord": [48.80669368515831, 2.336941718396992], "stop_id": 3755009, "stop_desc": "9-11 AVENUE PAUL DOUMER - 94003", "stop_name": "HOTEL DE VILLE D'ARCUEIL"}, "geometry": {"type": "Point", "coordinates": [2.336941718396992, 48.80669368515831]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "261cfc78e966fc675d421524753a47b6f60987a4", "fields": {"departement": "94", "stop_lat": 48.80842803505071, "code_postal": "94037", "stop_lon": 2.3456096613594855, "coord": [48.80842803505071, 2.3456096613594855], "stop_id": 3754325, "stop_desc": "R JEAN LOUIS - 94037", "stop_name": "GABRIEL PERI - SOLEIL LEVANT."}, "geometry": {"type": "Point", "coordinates": [2.3456096613594855, 48.80842803505071]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "da2accb2f42671756a58b4b1c694daeb75b294d4", "fields": {"departement": "94", "stop_lat": 48.80720498540677, "code_postal": "94043", "stop_lon": 2.352712392424016, "coord": [48.80720498540677, 2.352712392424016], "stop_id": 3754329, "stop_desc": "50 AVENUE CHARLES GIDE - 94043", "stop_name": "BARNUFLES-LA PISCINE"}, "geometry": {"type": "Point", "coordinates": [2.352712392424016, 48.80720498540677]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "186328bdd72e4071bcb974761139bde01c0dea82", "fields": {"departement": "94", "stop_lat": 48.80624429579577, "code_postal": "94003", "stop_lon": 2.3373091071086356, "coord": [48.80624429579577, 2.3373091071086356], "stop_id": 3755012, "stop_desc": "10 AV PAUL DOUMER - 94003", "stop_name": "HOTEL DE VILLE - CENTRE"}, "geometry": {"type": "Point", "coordinates": [2.3373091071086356, 48.80624429579577]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ef9b3d1b1fe50d18c5fcf704d8d98e4474994d08", "fields": {"departement": "94", "stop_lat": 48.80322418145762, "code_postal": "94003", "stop_lon": 2.3301659022563097, "coord": [48.80322418145762, 2.3301659022563097], "stop_id": 3755018, "stop_desc": "3 R DU 8 MAI 1945 - 94003", "stop_name": "CENTRE DE SANTE"}, "geometry": {"type": "Point", "coordinates": [2.3301659022563097, 48.80322418145762]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "36c69d1bf6f49f0a8e5b87b98e452e48b1c0233e", "fields": {"departement": "94", "stop_lat": 48.81086400701395, "code_postal": "94003", "stop_lon": 2.338615489800433, "coord": [48.81086400701395, 2.338615489800433], "stop_id": 3754319, "stop_desc": "111 AVENUE JEAN JAURES - 94003", "stop_name": "BENOIT MALON"}, "geometry": {"type": "Point", "coordinates": [2.338615489800433, 48.81086400701395]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7a0da62cb7248b2d87180068fe34d0d4f93ba3a4", "fields": {"departement": "92", "stop_lat": 48.88365379005657, "code_postal": "92051", "stop_lon": 2.271816817600282, "coord": [48.88365379005657, 2.271816817600282], "stop_id": 3749715, "stop_desc": "99 AVENUE ACHILLE PERETTI OU DU ROULE - 92051", "stop_name": "EGLISE SAINT-PIERRE"}, "geometry": {"type": "Point", "coordinates": [2.271816817600282, 48.88365379005657]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fed2b21319b8b19a59130a7c7d2e47a861cc82e6", "fields": {"departement": "75", "stop_lat": 48.88240505655071, "code_postal": "75119", "stop_lon": 2.382223390760729, "coord": [48.88240505655071, 2.382223390760729], "stop_id": 3749756, "stop_desc": "5 PLACE ARMAND CARREL - 75119", "stop_name": "ARMAND CARREL - MAIRIE DU 19E"}, "geometry": {"type": "Point", "coordinates": [2.382223390760729, 48.88240505655071]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9747f9aae8f54ed4b99ba02e7059300da1eb555d", "fields": {"departement": "75", "stop_lat": 48.87747547065222, "code_postal": "75119", "stop_lon": 2.393024205754592, "coord": [48.87747547065222, 2.393024205754592], "stop_id": 3749750, "stop_desc": "3 RUE LOUISE THULIEZ - 75119", "stop_name": "PLACE DES FETES"}, "geometry": {"type": "Point", "coordinates": [2.393024205754592, 48.87747547065222]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "347a06e720526c774355c770ad28c19b84e59fbb", "fields": {"departement": "92", "stop_lat": 48.881336186697695, "code_postal": "92051", "stop_lon": 2.2587654552815812, "coord": [48.881336186697695, 2.2587654552815812], "stop_id": 3749722, "stop_desc": "44 AVENUE DE MADRID - 92051", "stop_name": "MAURICE BARRES"}, "geometry": {"type": "Point", "coordinates": [2.2587654552815812, 48.881336186697695]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7c2fd1b5a97e442f34c5a47d6ae74796f3f99bac", "fields": {"departement": "75", "stop_lat": 48.877545158770765, "code_postal": "75108", "stop_lon": 2.298585218601294, "coord": [48.877545158770765, 2.298585218601294], "stop_id": 3749734, "stop_desc": "237 RUE DU FAUBOURG SAINT-HONORE - 75108", "stop_name": "TERNES"}, "geometry": {"type": "Point", "coordinates": [2.298585218601294, 48.877545158770765]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b661cc6212e88f90648a397b5ad2fb6b1c09ad8c", "fields": {"departement": "75", "stop_lat": 48.88150542455222, "code_postal": "75119", "stop_lon": 2.403439300751772, "coord": [48.88150542455222, 2.403439300751772], "stop_id": 3749746, "stop_desc": "RUE ALEXANDER FLEMING - 75119", "stop_name": "LES MARRONNIERS"}, "geometry": {"type": "Point", "coordinates": [2.403439300751772, 48.88150542455222]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "dd42d322de5ea2de5bde1da8b4c5d1d3c105f73b", "fields": {"departement": "75", "stop_lat": 48.87981383766514, "code_postal": "75119", "stop_lon": 2.389320394268579, "coord": [48.87981383766514, 2.389320394268579], "stop_id": 3749752, "stop_desc": "38-40 RUE DE CRIMEE - 75119", "stop_name": "BOTZARIS"}, "geometry": {"type": "Point", "coordinates": [2.389320394268579, 48.87981383766514]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "57fb0b6e725c8dcc92acef33fc91bb28e3ae0d8c", "fields": {"departement": "75", "stop_lat": 48.88340600662427, "code_postal": "75119", "stop_lon": 2.372181052819465, "coord": [48.88340600662427, 2.372181052819465], "stop_id": 3749760, "stop_desc": "13 AVENUE JEAN JAURES - 75119", "stop_name": "JAURES"}, "geometry": {"type": "Point", "coordinates": [2.372181052819465, 48.88340600662427]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8897a7c64bac3b75b5126c8174cf2f27cdae7584", "fields": {"departement": "75", "stop_lat": 48.88251133554586, "code_postal": "75119", "stop_lon": 2.3862025409935965, "coord": [48.88251133554586, 2.3862025409935965], "stop_id": 3749754, "stop_desc": "88 RUE DE CRIMEE - 75119", "stop_name": "MANIN"}, "geometry": {"type": "Point", "coordinates": [2.3862025409935965, 48.88251133554586]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "41266b19dafb53b279faa0bc7c8b5199685a623a", "fields": {"departement": "75", "stop_lat": 48.87561905816125, "code_postal": "75109", "stop_lon": 2.342323218012916, "coord": [48.87561905816125, 2.342323218012916], "stop_id": 3749735, "stop_desc": "1 RUE DE CHATEAUDUN - 75109", "stop_name": "CADET"}, "geometry": {"type": "Point", "coordinates": [2.342323218012916, 48.87561905816125]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ce7d1a491934d482bc539ea51751251673cc3adf", "fields": {"departement": "75", "stop_lat": 48.83433085153598, "code_postal": "75115", "stop_lon": 2.2910070539330327, "coord": [48.83433085153598, 2.2910070539330327], "stop_id": 3749878, "stop_desc": "FACE 366 TER R DE VAUGIRARD - 75115", "stop_name": "VAUGIRARD - CROIX-NIVERT"}, "geometry": {"type": "Point", "coordinates": [2.2910070539330327, 48.83433085153598]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "396a3657dc2a4ac7cb43929e8e5381699878121d", "fields": {"departement": "75", "stop_lat": 48.837352823094804, "code_postal": "75115", "stop_lon": 2.2968996770026644, "coord": [48.837352823094804, 2.2968996770026644], "stop_id": 3749880, "stop_desc": "333-335 R DE VAUGIRARD - 75115", "stop_name": "CONVENTION - VAUGIRARD"}, "geometry": {"type": "Point", "coordinates": [2.2968996770026644, 48.837352823094804]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b5b079b318801beb261548a978d6ae2934173a5e", "fields": {"departement": "75", "stop_lat": 48.88414479711692, "code_postal": "75110", "stop_lon": 2.3652179803326856, "coord": [48.88414479711692, 2.3652179803326856], "stop_id": 3749793, "stop_desc": "169 BOULEVARD DE LA VILLETTE - 75110", "stop_name": "CHATEAU LANDON"}, "geometry": {"type": "Point", "coordinates": [2.3652179803326856, 48.88414479711692]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "278638683a55c013b8b62e70b9070d8bdd854d3e", "fields": {"departement": "75", "stop_lat": 48.86565205893974, "code_postal": "75102", "stop_lon": 2.3433847968096146, "coord": [48.86565205893974, 2.3433847968096146], "stop_id": 3749783, "stop_desc": "54 RUE DU LOUVRE - 75102", "stop_name": "LOUVRE - ETIENNE MARCEL"}, "geometry": {"type": "Point", "coordinates": [2.3433847968096146, 48.86565205893974]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5b4dc1d9414ccf4cff8a4611d6c0741e298d5054", "fields": {"departement": "75", "stop_lat": 48.85656139533593, "code_postal": "75107", "stop_lon": 2.3042940617474543, "coord": [48.85656139533593, 2.3042940617474543], "stop_id": 3749899, "stop_desc": "40 AVENUE BOSQUET - 75107", "stop_name": "BOSQUET - GRENELLE"}, "geometry": {"type": "Point", "coordinates": [2.3042940617474543, 48.85656139533593]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5d773bf245f0f3428112277b9ac939d1758c1d37", "fields": {"departement": "75", "stop_lat": 48.8540900317312, "code_postal": "75107", "stop_lon": 2.3049629848699142, "coord": [48.8540900317312, 2.3049629848699142], "stop_id": 3749897, "stop_desc": "FACE 3 PLACE JOFFRE - 75107", "stop_name": "ECOLE MILITAIRE"}, "geometry": {"type": "Point", "coordinates": [2.3049629848699142, 48.8540900317312]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fc41e98678ad5d88ea783ee6b7af535f0280de00", "fields": {"departement": "75", "stop_lat": 48.86513479707833, "code_postal": "75108", "stop_lon": 2.3022588833746376, "coord": [48.86513479707833, 2.3022588833746376], "stop_id": 3749905, "stop_desc": "3 AVENUE MONTAIGNE - 75108", "stop_name": "ALMA - MARCEAU"}, "geometry": {"type": "Point", "coordinates": [2.3022588833746376, 48.86513479707833]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "9bfcc0137c1fe2b44365bbe26e6603c54b9c7133", "fields": {"departement": "75", "stop_lat": 48.84706084976498, "code_postal": "75115", "stop_lon": 2.3015493434379115, "coord": [48.84706084976498, 2.3015493434379115], "stop_id": 3749892, "stop_desc": "FACE 5 RUE DE CAMBRONNE - 75115", "stop_name": "CAMBRONNE"}, "geometry": {"type": "Point", "coordinates": [2.3015493434379115, 48.84706084976498]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d7f5833cb6fc4a08212302109c3ff4eeb177c137", "fields": {"departement": "75", "stop_lat": 48.84373438260969, "code_postal": "75115", "stop_lon": 2.298092984850313, "coord": [48.84373438260969, 2.298092984850313], "stop_id": 3749889, "stop_desc": "45 RUE MADEMOISELLE - 75115", "stop_name": "PECLET"}, "geometry": {"type": "Point", "coordinates": [2.298092984850313, 48.84373438260969]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5182bb57d0ce0cbc3376e5a9ca27214650df7fb8", "fields": {"departement": "75", "stop_lat": 48.83344999682683, "code_postal": "75114", "stop_lon": 2.3333474557640264, "coord": [48.83344999682683, 2.3333474557640264], "stop_id": 3754199, "stop_desc": "4 PLACE DENFERT ROCHEREAU - 75114", "stop_name": "DENFERT-ROCHEREAU-METRO-RER"}, "geometry": {"type": "Point", "coordinates": [2.3333474557640264, 48.83344999682683]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "83df4d7ece6cf98ea6df2a3dafd3ddcd7ddecfa8", "fields": {"departement": "75", "stop_lat": 48.827760490839886, "code_postal": "75114", "stop_lon": 2.3274264328101633, "coord": [48.827760490839886, 2.3274264328101633], "stop_id": 3754275, "stop_desc": "81 RUE D'ALESIA - 75114", "stop_name": "ALESIA - GENERAL LECLERC."}, "geometry": {"type": "Point", "coordinates": [2.3274264328101633, 48.827760490839886]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8604b96bb5c02c8cb6697013891fe3a14ad3e5b6", "fields": {"departement": "75", "stop_lat": 48.82592735408744, "code_postal": "75114", "stop_lon": 2.3410932785585543, "coord": [48.82592735408744, 2.3410932785585543], "stop_id": 3754269, "stop_desc": "6-8 AVENUE REILLE - 75114", "stop_name": "GLACIERE - TOLBIAC"}, "geometry": {"type": "Point", "coordinates": [2.3410932785585543, 48.82592735408744]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8a0d3f39d27795caa59f484e67e2b3e42ba23bc5", "fields": {"departement": "75", "stop_lat": 48.82420178267284, "code_postal": "75114", "stop_lon": 2.3365060423892263, "coord": [48.82420178267284, 2.3365060423892263], "stop_id": 3754281, "stop_desc": "FACE 48 AVENUE REILLE - 75114", "stop_name": "PARC MONTSOURIS."}, "geometry": {"type": "Point", "coordinates": [2.3365060423892263, 48.82420178267284]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "372891586e9c367b7d2099b5fef6a7c431012ca4", "fields": {"departement": "75", "stop_lat": 48.82506428913193, "code_postal": "75114", "stop_lon": 2.328638395662345, "coord": [48.82506428913193, 2.328638395662345], "stop_id": 3754273, "stop_desc": "2 RUE PRISSE D'AVENNES - 75114", "stop_name": "PRISSE D'AVENNES"}, "geometry": {"type": "Point", "coordinates": [2.328638395662345, 48.82506428913193]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e3c86a683115a683353539b50bfda9cf4c917c62", "fields": {"departement": "75", "stop_lat": 48.822412895608316, "code_postal": "75113", "stop_lon": 2.3462788585353054, "coord": [48.822412895608316, 2.3462788585353054], "stop_id": 3754287, "stop_desc": "14 PLACE DE RUNGIS - 75113", "stop_name": "PLACE DE RUNGIS"}, "geometry": {"type": "Point", "coordinates": [2.3462788585353054, 48.822412895608316]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f787f0cdb2e8108ac6ca8603b5ecd67c53499385", "fields": {"departement": "75", "stop_lat": 48.82471407697593, "code_postal": "75114", "stop_lon": 2.3383436188658933, "coord": [48.82471407697593, 2.3383436188658933], "stop_id": 3754282, "stop_desc": "RUE DE LA SIBELLE - 75114", "stop_name": "LA SIBELLE."}, "geometry": {"type": "Point", "coordinates": [2.3383436188658933, 48.82471407697593]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "8ecd084c3ea848b1d7cc538e3ff37770d62eca5c", "fields": {"departement": "75", "stop_lat": 48.82395876771843, "code_postal": "75114", "stop_lon": 2.3281213408631105, "coord": [48.82395876771843, 2.3281213408631105], "stop_id": 3754279, "stop_desc": "39 RUE PAUL FORT - 75114", "stop_name": "PAUL FORT"}, "geometry": {"type": "Point", "coordinates": [2.3281213408631105, 48.82395876771843]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5cb09b49e3dc99b66713612c70bd0c2dce599a1d", "fields": {"departement": "75", "stop_lat": 48.82207964799048, "code_postal": "75113", "stop_lon": 2.3530298771463114, "coord": [48.82207964799048, 2.3530298771463114], "stop_id": 3754289, "stop_desc": "15 RUE TUFFIER - 75113", "stop_name": "PEUPLIERS"}, "geometry": {"type": "Point", "coordinates": [2.3530298771463114, 48.82207964799048]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f59b8bd86637d0352b9037a00a0e1a1c660cdec7", "fields": {"departement": "75", "stop_lat": 48.82462382709473, "code_postal": "75113", "stop_lon": 2.3467420411592963, "coord": [48.82462382709473, 2.3467420411592963], "stop_id": 3754266, "stop_desc": "67 RUE BARRAULT - 75113", "stop_name": "BARRAULT"}, "geometry": {"type": "Point", "coordinates": [2.3467420411592963, 48.82462382709473]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "634cdb0481afdb7f35f4666ee2fe60cbe30b4cbd", "fields": {"departement": "75", "stop_lat": 48.8337900204571, "code_postal": "75114", "stop_lon": 2.3179226398850683, "coord": [48.8337900204571, 2.3179226398850683], "stop_id": 5121998, "stop_desc": "73-75 RUE RAYMOND LOSSERAND - 75114", "stop_name": "PERNETY"}, "geometry": {"type": "Point", "coordinates": [2.3179226398850683, 48.8337900204571]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a2507ff41f56f7e92e9bb8c1b2da2db88a516f71", "fields": {"departement": "75", "stop_lat": 48.83505668548812, "code_postal": "75114", "stop_lon": 2.3146002431999695, "coord": [48.83505668548812, 2.3146002431999695], "stop_id": 5121999, "stop_desc": "FACE 81 RUE VERCINGETORIX - 75114", "stop_name": "PERNETY"}, "geometry": {"type": "Point", "coordinates": [2.3146002431999695, 48.83505668548812]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a2155e63e96d0630d60346d52dcf5782beee1177", "fields": {"departement": "75", "stop_lat": 48.838184773438094, "code_postal": "75115", "stop_lon": 2.3168726270050803, "coord": [48.838184773438094, 2.3168726270050803], "stop_id": 5122003, "stop_desc": "10 PLACE DES 5 MARTYRS DU LYCEE BUFFON - 75115", "stop_name": "MONTPARNASSE 2 - GARE TGV"}, "geometry": {"type": "Point", "coordinates": [2.3168726270050803, 48.838184773438094]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "30ff25606883e9c3a5b9d84a7c28dc280f231888", "fields": {"departement": "75", "stop_lat": 48.84109667094733, "code_postal": "75115", "stop_lon": 2.316463002196349, "coord": [48.84109667094733, 2.316463002196349], "stop_id": 5122005, "stop_desc": "44 BOULEVARD DE VAUGIRARD - 75115", "stop_name": "ARMORIQUE - MUSEE POSTAL"}, "geometry": {"type": "Point", "coordinates": [2.316463002196349, 48.84109667094733]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f1d17ea4f79ba87dd62d95c669f70424bb9a8ab5", "fields": {"departement": "75", "stop_lat": 48.82252946284516, "code_postal": "75114", "stop_lon": 2.325154359598891, "coord": [48.82252946284516, 2.325154359598891], "stop_id": 5122015, "stop_desc": "4 PLACE DU 25 AOUT 1944 - 75114", "stop_name": "PORTE D'ORLEANS"}, "geometry": {"type": "Point", "coordinates": [2.325154359598891, 48.82252946284516]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5e1115c7afac81e2f40f9d8f6d19049568e14ce9", "fields": {"departement": "92", "stop_lat": 48.81609960993273, "code_postal": "92046", "stop_lon": 2.3054085119085057, "coord": [48.81609960993273, 2.3054085119085057], "stop_id": 5122022, "stop_desc": "132-134 AVENUE PIERRE BROSSOLETTE - 92046", "stop_name": "AUGUSTIN DUMONT"}, "geometry": {"type": "Point", "coordinates": [2.3054085119085057, 48.81609960993273]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4995585d1c5fa0baf402a156de8aafcceb01fade", "fields": {"departement": "92", "stop_lat": 48.81354611827791, "code_postal": "92046", "stop_lon": 2.301953441925509, "coord": [48.81354611827791, 2.301953441925509], "stop_id": 5122023, "stop_desc": "192 AVENUE PIERRE BROSSOLETTE - 92046", "stop_name": "ETIENNE DOLET"}, "geometry": {"type": "Point", "coordinates": [2.301953441925509, 48.81354611827791]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "16ac1c333639f3b74789e1dabb0d87479c66eb9a", "fields": {"departement": "92", "stop_lat": 48.809392030314854, "code_postal": "92020", "stop_lon": 2.2964995723194335, "coord": [48.809392030314854, 2.2964995723194335], "stop_id": 5122027, "stop_desc": "20 R MARCELIN BERTHELOT - 92020", "stop_name": "MARCELIN BERTHELOT"}, "geometry": {"type": "Point", "coordinates": [2.2964995723194335, 48.809392030314854]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "79b098871fd6c3e48a74804116cd99424c2f1e8d", "fields": {"departement": "92", "stop_lat": 48.808283580337466, "code_postal": "92020", "stop_lon": 2.288635350032826, "coord": [48.808283580337466, 2.288635350032826], "stop_id": 5122030, "stop_desc": "35 AV CLEMENT PERRIERE - 92020", "stop_name": "STADE DE CHATILLON"}, "geometry": {"type": "Point", "coordinates": [2.288635350032826, 48.808283580337466]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2151f22f8a126eb8c4c63b9a30bf55c85e2e1d0c", "fields": {"departement": "92", "stop_lat": 48.80604461268822, "code_postal": "92020", "stop_lon": 2.286229036011326, "coord": [48.80604461268822, 2.286229036011326], "stop_id": 5122032, "stop_desc": "FACE 44 BOULEVARD DE VANVES - 92020", "stop_name": "FELIX FAURE"}, "geometry": {"type": "Point", "coordinates": [2.286229036011326, 48.80604461268822]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "46087f30ac15c10e40efca54ac58e688a5c82ab3", "fields": {"departement": "92", "stop_lat": 48.79797396181116, "code_postal": "92020", "stop_lon": 2.2872165067124657, "coord": [48.79797396181116, 2.2872165067124657], "stop_id": 5122039, "stop_desc": "FACE 26 RUE DE FONTENAY - 92020", "stop_name": "PIERRELAIS"}, "geometry": {"type": "Point", "coordinates": [2.2872165067124657, 48.79797396181116]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "ef37bb4cf796afb3ee8ec58ac837ddb4f0bda4c7", "fields": {"departement": "92", "stop_lat": 48.793200099997385, "code_postal": "92032", "stop_lon": 2.284214738526938, "coord": [48.793200099997385, 2.284214738526938], "stop_id": 5122041, "stop_desc": "6 RUE LEDRU ROLLIN - 92032", "stop_name": "ANDRE SALEL"}, "geometry": {"type": "Point", "coordinates": [2.284214738526938, 48.793200099997385]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2a79863bf5d721b36654861ec215b88e55758e79", "fields": {"departement": "92", "stop_lat": 48.79383837894482, "code_postal": "92032", "stop_lon": 2.28452697039672, "coord": [48.79383837894482, 2.28452697039672], "stop_id": 5122042, "stop_desc": "118 RUE BOUCICAUT - 92032", "stop_name": "ANDRE SALEL"}, "geometry": {"type": "Point", "coordinates": [2.28452697039672, 48.79383837894482]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "e7f737e7d91cb6fa43ed445bf1ddba60ce8b1291", "fields": {"departement": "92", "stop_lat": 48.78306061174014, "code_postal": "92032", "stop_lon": 2.2817905454624388, "coord": [48.78306061174014, 2.2817905454624388], "stop_id": 5122050, "stop_desc": "33 AVENUE JULES GUESDES - 92032", "stop_name": "CARREFOUR DES MOUILLEBOEUFS"}, "geometry": {"type": "Point", "coordinates": [2.2817905454624388, 48.78306061174014]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "63efd6e95c59024d40e87108fca9e5e8a722c5bf", "fields": {"departement": "92", "stop_lat": 48.77569758793708, "code_postal": "92019", "stop_lon": 2.277936321101258, "coord": [48.77569758793708, 2.277936321101258], "stop_id": 5122054, "stop_desc": "15-17 AVENUE ROGER SALENGRO - 92019", "stop_name": "PROFESSEUR EINSTEIN"}, "geometry": {"type": "Point", "coordinates": [2.277936321101258, 48.77569758793708]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f6c5c3ac5c515f6bbe9364a48bf83541939344e3", "fields": {"departement": "92", "stop_lat": 48.76668861303903, "code_postal": "92019", "stop_lon": 2.2722904474309713, "coord": [48.76668861303903, 2.2722904474309713], "stop_id": 5122061, "stop_desc": "134 AVENUE ROGER SALENGRO - 92019", "stop_name": "JULES VERNE"}, "geometry": {"type": "Point", "coordinates": [2.2722904474309713, 48.76668861303903]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0ada73013ef6464015ad7fa2374d70279780e0ec", "fields": {"departement": "92", "stop_lat": 48.776711452918306, "code_postal": "92060", "stop_lon": 2.2466026986059076, "coord": [48.776711452918306, 2.2466026986059076], "stop_id": 5122149, "stop_desc": "7 AVENUE DESCARTES - 92060", "stop_name": "GALILEE"}, "geometry": {"type": "Point", "coordinates": [2.2466026986059076, 48.776711452918306]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "09b24295e15a733799f0b947addc8931a78dde5e", "fields": {"departement": "92", "stop_lat": 48.77662285651918, "code_postal": "92060", "stop_lon": 2.248302745641102, "coord": [48.77662285651918, 2.248302745641102], "stop_id": 5122152, "stop_desc": "2 AVENUE DESCARTES - 92060", "stop_name": "LANGEVIN"}, "geometry": {"type": "Point", "coordinates": [2.248302745641102, 48.77662285651918]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "df71fa8a0862b3e9d5d4bcc7197b234d22774df8", "fields": {"departement": "92", "stop_lat": 48.77970846611399, "code_postal": "92060", "stop_lon": 2.252023847268724, "coord": [48.77970846611399, 2.252023847268724], "stop_id": 5122153, "stop_desc": "AVENUE PAUL LANGEVIN - 92060", "stop_name": "PARC DES SPORTS"}, "geometry": {"type": "Point", "coordinates": [2.252023847268724, 48.77970846611399]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f28823eaf2636c250834b7433fa46d69fb16bef7", "fields": {"departement": "92", "stop_lat": 48.77871896376598, "code_postal": "92060", "stop_lon": 2.2508830970288525, "coord": [48.77871896376598, 2.2508830970288525], "stop_id": 5122154, "stop_desc": "AVENUE PAUL LANGEVIN - 92060", "stop_name": "PARC DES SPORTS"}, "geometry": {"type": "Point", "coordinates": [2.2508830970288525, 48.77871896376598]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "79a7afee4275dcd02f1b8d49d457e071b2b0ea62", "fields": {"departement": "92", "stop_lat": 48.78177857238986, "code_postal": "92060", "stop_lon": 2.256127797967894, "coord": [48.78177857238986, 2.256127797967894], "stop_id": 5122158, "stop_desc": "FACE 2 RUE DU CARREAU - 92060", "stop_name": "LE HAMEAU"}, "geometry": {"type": "Point", "coordinates": [2.256127797967894, 48.78177857238986]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "4094130ec8bde9f618c2a3edaa817a64481f7aa5", "fields": {"departement": "92", "stop_lat": 48.780377550915816, "code_postal": "92060", "stop_lon": 2.257762000534636, "coord": [48.780377550915816, 2.257762000534636], "stop_id": 5122160, "stop_desc": "FACE 10-12 AVENUE ARISTIDE BRIAND - 92060", "stop_name": "LA POSTE"}, "geometry": {"type": "Point", "coordinates": [2.257762000534636, 48.780377550915816]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "cd0172e254e9c93be0a06368d6c535ba8828346d", "fields": {"departement": "92", "stop_lat": 48.78320064519593, "code_postal": "92060", "stop_lon": 2.2742147187596604, "coord": [48.78320064519593, 2.2742147187596604], "stop_id": 5122170, "stop_desc": "FACE 138 AVENUE DE LA RESISTANCE - 92060", "stop_name": "HOPITAL MARIE LANNELONGUE"}, "geometry": {"type": "Point", "coordinates": [2.2742147187596604, 48.78320064519593]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6e720322d63c240e02f0426acfc85d0ecd927f28", "fields": {"departement": "92", "stop_lat": 48.78340985585742, "code_postal": "92060", "stop_lon": 2.2790971921326983, "coord": [48.78340985585742, 2.2790971921326983], "stop_id": 5122171, "stop_desc": "164 AVENUE DE LA RESISTANCE - 92060", "stop_name": "EDMOND ABOUT"}, "geometry": {"type": "Point", "coordinates": [2.2790971921326983, 48.78340985585742]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3b157e07305495d3778ce9f71034b21d06dbe63e", "fields": {"departement": "92", "stop_lat": 48.78306061174014, "code_postal": "92032", "stop_lon": 2.2817905454624388, "coord": [48.78306061174014, 2.2817905454624388], "stop_id": 5122173, "stop_desc": "33 AVENUE JULES GUESDES - 92032", "stop_name": "CARREFOUR DES MOUILLEBOEUFS"}, "geometry": {"type": "Point", "coordinates": [2.2817905454624388, 48.78306061174014]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5025499a97a8e96ac1acde729de6aa9b1c120fdf", "fields": {"departement": "92", "stop_lat": 48.78365354917881, "code_postal": "92032", "stop_lon": 2.2812186713823306, "coord": [48.78365354917881, 2.2812186713823306], "stop_id": 5122174, "stop_desc": "181 AVENUE DE LA RESISTANCE - 92032", "stop_name": "CARREFOUR DES MOUILLEBOEUFS"}, "geometry": {"type": "Point", "coordinates": [2.2812186713823306, 48.78365354917881]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "00297cd788b4f281fe181235f29f76e17539d5e3", "fields": {"departement": "92", "stop_lat": 48.77909754800662, "code_postal": "92071", "stop_lon": 2.283168354791031, "coord": [48.77909754800662, 2.283168354791031], "stop_id": 5122178, "stop_desc": "FACE 131 RUE HOUDAN - 92071", "stop_name": "CIMETIERE DE SCEAUX"}, "geometry": {"type": "Point", "coordinates": [2.283168354791031, 48.77909754800662]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d25706dac2f63a7f1f25e21026028e2967e501b8", "fields": {"departement": "92", "stop_lat": 48.75913832651803, "code_postal": "92002", "stop_lon": 2.290897241897779, "coord": [48.75913832651803, 2.290897241897779], "stop_id": 5122189, "stop_desc": "106 RUE DE CHATENAY - 92002", "stop_name": "CIMETIERE D'ANTONY"}, "geometry": {"type": "Point", "coordinates": [2.290897241897779, 48.75913832651803]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "83aa213bf782e793ce342767403fa7901c6d48b0", "fields": {"departement": "92", "stop_lat": 48.754872582833805, "code_postal": "92002", "stop_lon": 2.3013815897668075, "coord": [48.754872582833805, 2.3013815897668075], "stop_id": 5122192, "stop_desc": "FACE 11 BD PIERRE BROSSOLETTE - 92002", "stop_name": "ANTONY RER"}, "geometry": {"type": "Point", "coordinates": [2.3013815897668075, 48.754872582833805]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "02a448e2be2524cd0caa46fa12596f30dc3c1763", "fields": {"departement": "92", "stop_lat": 48.76218548316953, "code_postal": "92002", "stop_lon": 2.2913703610095117, "coord": [48.76218548316953, 2.2913703610095117], "stop_id": 5122194, "stop_desc": "AVENUE SULLY PRUDHOMME - 92002", "stop_name": "CARREFOUR DE L'EUROPE"}, "geometry": {"type": "Point", "coordinates": [2.2913703610095117, 48.76218548316953]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "261179d126b48ad14d6438e1cf198247ef635221", "fields": {"departement": "92", "stop_lat": 48.76686779466376, "code_postal": "92071", "stop_lon": 2.2901289375107514, "coord": [48.76686779466376, 2.2901289375107514], "stop_id": 5122195, "stop_desc": "AVENUE SULLY PRUDHOMME - 92071", "stop_name": "GRANDE VOIE DES VIGNES - ECOLE CENTRALE"}, "geometry": {"type": "Point", "coordinates": [2.2901289375107514, 48.76686779466376]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "2da5005f36923d851ce29f825c9479988699b76b", "fields": {"departement": "92", "stop_lat": 48.770704375803106, "code_postal": "92071", "stop_lon": 2.2869028302355896, "coord": [48.770704375803106, 2.2869028302355896], "stop_id": 5122196, "stop_desc": "AVENUE SULLY PRUDHOMME - 92071", "stop_name": "CROIX BLANCHE"}, "geometry": {"type": "Point", "coordinates": [2.2869028302355896, 48.770704375803106]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "5e952b4d8f226631095c7dd15f32f2665951768b", "fields": {"departement": "92", "stop_lat": 48.819462162874615, "code_postal": "92046", "stop_lon": 2.310033969847727, "coord": [48.819462162874615, 2.310033969847727], "stop_id": 5137970, "stop_desc": "62 AVENUE PIERRE BROSSOLETTE - 92046", "stop_name": "PIERRE BROSSOLETTE - GABRIEL PERI"}, "geometry": {"type": "Point", "coordinates": [2.310033969847727, 48.819462162874615]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "93f05d30df984d740159fb31998f0c234a86c765", "fields": {"departement": "92", "stop_lat": 48.80074445842078, "code_postal": "92020", "stop_lon": 2.292860098958497, "coord": [48.80074445842078, 2.292860098958497], "stop_id": 5137978, "stop_desc": "FACE 32 AVENUE DE LA REPUBLIQUE - 92020", "stop_name": "REPUBLIQUE - LIBERTE"}, "geometry": {"type": "Point", "coordinates": [2.292860098958497, 48.80074445842078]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "997d3374c6ffe0de550a2ef2ddb7ca929eca09f3", "fields": {"departement": "92", "stop_lat": 48.80054369744074, "code_postal": "92007", "stop_lon": 2.313744555069455, "coord": [48.80054369744074, 2.313744555069455], "stop_id": 5137984, "stop_desc": "AVENUE HENRI BARBUSSE - 92007", "stop_name": "JEAN LONGUET"}, "geometry": {"type": "Point", "coordinates": [2.313744555069455, 48.80054369744074]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "72b59fe73cfe2ab6aeeb54cb5ad354d6ad275097", "fields": {"departement": "92", "stop_lat": 48.80013099330203, "code_postal": "92007", "stop_lon": 2.3178263283554, "coord": [48.80013099330203, 2.3178263283554], "stop_id": 5137986, "stop_desc": "21 AVENUE LOUIS PASTEUR - 92007", "stop_name": "COSSON - LONGUET"}, "geometry": {"type": "Point", "coordinates": [2.3178263283554, 48.80013099330203]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "a8ea7d9a8a8804d1a1b6b09faf728d7f5f5df547", "fields": {"departement": "92", "stop_lat": 48.79560993300324, "code_postal": "92007", "stop_lon": 2.3168213160147517, "coord": [48.79560993300324, 2.3168213160147517], "stop_id": 5137988, "stop_desc": "2 AVENUE PAUL VAILLANT COUTURIER - 92007", "stop_name": "ALBERT PETIT"}, "geometry": {"type": "Point", "coordinates": [2.3168213160147517, 48.79560993300324]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fe507b2153bbef9a17ac1e6a5ad5c294b174a79e", "fields": {"departement": "92", "stop_lat": 48.784293346664036, "code_postal": "92014", "stop_lon": 2.312582211985658, "coord": [48.784293346664036, 2.312582211985658], "stop_id": 5137993, "stop_desc": "FACE 30 RUE DE FONTENAY - 92014", "stop_name": "PIERRE LOTI"}, "geometry": {"type": "Point", "coordinates": [2.312582211985658, 48.784293346664036]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "037e68510ab9a0251e95e859ae6c0783f3251121", "fields": {"departement": "92", "stop_lat": 48.78280200717305, "code_postal": "92014", "stop_lon": 2.3160103090786923, "coord": [48.78280200717305, 2.3160103090786923], "stop_id": 5137997, "stop_desc": "6 RUE DU 8 MAI 1945 - 92014", "stop_name": "RUE DU 8 MAI 1945"}, "geometry": {"type": "Point", "coordinates": [2.3160103090786923, 48.78280200717305]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "7b8dcca4cb06819a671a250a52bca967c2e1bbf0", "fields": {"departement": "92", "stop_lat": 48.79805476479201, "code_postal": "92007", "stop_lon": 2.3176094292017297, "coord": [48.79805476479201, 2.3176094292017297], "stop_id": 5138003, "stop_desc": "12 AVENUE LOUIS PASTEUR - 92007", "stop_name": "PASTEUR - MEUNIERS"}, "geometry": {"type": "Point", "coordinates": [2.3176094292017297, 48.79805476479201]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1f2f58cab387ad290ac9c692e528f6ca81aacc50", "fields": {"departement": "92", "stop_lat": 48.80003217773791, "code_postal": "92007", "stop_lon": 2.3181392863544255, "coord": [48.80003217773791, 2.3181392863544255], "stop_id": 5138004, "stop_desc": "20 AVENUE LOUIS PASTEUR - 92007", "stop_name": "COSSON - LONGUET"}, "geometry": {"type": "Point", "coordinates": [2.3181392863544255, 48.80003217773791]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "425eca964288b55ba56faf8ebdc062e9895a6e55", "fields": {"departement": "92", "stop_lat": 48.80226128862525, "code_postal": "92007", "stop_lon": 2.3189548165473455, "coord": [48.80226128862525, 2.3189548165473455], "stop_id": 5138005, "stop_desc": "FACE AU 34 AVENUE LOUIS PASTEUR - 92007", "stop_name": "MARTYRS DE CHATEAUBRIANT"}, "geometry": {"type": "Point", "coordinates": [2.3189548165473455, 48.80226128862525]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1490fb87ec438809446745f5108baf9a616e032f", "fields": {"departement": "92", "stop_lat": 48.80086729167758, "code_postal": "92007", "stop_lon": 2.313907674335829, "coord": [48.80086729167758, 2.313907674335829], "stop_id": 5138006, "stop_desc": "AVENUE HENRI BARBUSSE - 92007", "stop_name": "JEAN LONGUET"}, "geometry": {"type": "Point", "coordinates": [2.313907674335829, 48.80086729167758]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "25b5422483f1afa64cf77be100e7b977ecac8eee", "fields": {"departement": "92", "stop_lat": 48.79974609834914, "code_postal": "92020", "stop_lon": 2.2909970416208396, "coord": [48.79974609834914, 2.2909970416208396], "stop_id": 5138011, "stop_desc": "FACE 1 AVENUE DE LA REPUBLIQUE - 92020", "stop_name": "MAIRIE DE CHATILLON"}, "geometry": {"type": "Point", "coordinates": [2.2909970416208396, 48.79974609834914]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1df92a04d6464f99423c0521b469cb6fff1fe50b", "fields": {"departement": "92", "stop_lat": 48.81550629521654, "code_postal": "92049", "stop_lon": 2.3049461590607536, "coord": [48.81550629521654, 2.3049461590607536], "stop_id": 5138018, "stop_desc": "135-137 AVENUE PIERRE BROSSOLETTE - 92049", "stop_name": "AUGUSTIN DUMONT"}, "geometry": {"type": "Point", "coordinates": [2.3049461590607536, 48.81550629521654]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0052ce6829e3c223d17498187bcb2360020a6e3a", "fields": {"departement": "92", "stop_lat": 48.818086708432794, "code_postal": "92049", "stop_lon": 2.308605641659359, "coord": [48.818086708432794, 2.308605641659359], "stop_id": 5138019, "stop_desc": "105 AV PIERRE BROSSOLETTE - 92049", "stop_name": "12 FEVRIER 1934"}, "geometry": {"type": "Point", "coordinates": [2.308605641659359, 48.818086708432794]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "df08ef0070c6fa64678d787758d0fe06c9cf626a", "fields": {"departement": "92", "stop_lat": 48.81918355343179, "code_postal": "92049", "stop_lon": 2.310074946801479, "coord": [48.81918355343179, 2.310074946801479], "stop_id": 5138020, "stop_desc": "85 AVENUE PIERRE BROSSOLETTE - 92049", "stop_name": "PIERRE BROSSOLETTE - GABRIEL PERI"}, "geometry": {"type": "Point", "coordinates": [2.310074946801479, 48.81918355343179]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "eb8024ac29537a0475c132849306b887dbf64ba7", "fields": {"departement": "75", "stop_lat": 48.88313213989916, "code_postal": "75109", "stop_lon": 2.327729358929872, "coord": [48.88313213989916, 2.327729358929872], "stop_id": 5138025, "stop_desc": "86 RUE DE CLICHY - 75109", "stop_name": "PLACE DE CLICHY"}, "geometry": {"type": "Point", "coordinates": [2.327729358929872, 48.88313213989916]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "12fd084aa24fbacfe3170fb65c6e1090ad16982b", "fields": {"departement": "75", "stop_lat": 48.87975316678592, "code_postal": "75109", "stop_lon": 2.3313272921851587, "coord": [48.87975316678592, 2.3313272921851587], "stop_id": 5138028, "stop_desc": "29 RUE BLANCHE - 75109", "stop_name": "MONCEY"}, "geometry": {"type": "Point", "coordinates": [2.3313272921851587, 48.87975316678592]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d4e9595814900fb03caa708fcc9ef2b6a0d18ea3", "fields": {"departement": "75", "stop_lat": 48.858893562960745, "code_postal": "75107", "stop_lon": 2.331574848358332, "coord": [48.858893562960745, 2.331574848358332], "stop_id": 5138036, "stop_desc": "FACE 13 QUAI VOLTAIRE - 75107", "stop_name": "PONT DU CARROUSEL - QUAI VOLTAIRE"}, "geometry": {"type": "Point", "coordinates": [2.331574848358332, 48.858893562960745]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "f28b7e1eebe4492d53129aecf5ff8644d3953ca2", "fields": {"departement": "75", "stop_lat": 48.855468910858235, "code_postal": "75107", "stop_lon": 2.3255280305074826, "coord": [48.855468910858235, 2.3255280305074826], "stop_id": 5138040, "stop_desc": "2 BOULEVARD RASPAIL - 75107", "stop_name": "RUE DU BAC - RENE CHAR"}, "geometry": {"type": "Point", "coordinates": [2.3255280305074826, 48.855468910858235]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "3c839790e977e5468830af8e8b24e3f47c1d1cc6", "fields": {"departement": "75", "stop_lat": 48.84490888358271, "code_postal": "75106", "stop_lon": 2.3285806322371982, "coord": [48.84490888358271, 2.3285806322371982], "stop_id": 5138044, "stop_desc": "110-112 BOULEVARD RASPAIL - 75106", "stop_name": "NOTRE-DAME-DES-CHAMPS"}, "geometry": {"type": "Point", "coordinates": [2.3285806322371982, 48.84490888358271]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "0724eb9b0b503f99e961b4a701d1ff108953e9ed", "fields": {"departement": "75", "stop_lat": 48.82688858812294, "code_postal": "75114", "stop_lon": 2.3262695521776147, "coord": [48.82688858812294, 2.3262695521776147], "stop_id": 5138051, "stop_desc": "96 AVENUE DU GENERAL LECLERC - 75114", "stop_name": "ALESIA - GENERAL LECLERC"}, "geometry": {"type": "Point", "coordinates": [2.3262695521776147, 48.82688858812294]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6fe04624e679e45eeee67782c0d19cc739440e3b", "fields": {"departement": "92", "stop_lat": 48.81735110896811, "code_postal": "92049", "stop_lon": 2.315138752600882, "coord": [48.81735110896811, 2.315138752600882], "stop_id": 5138056, "stop_desc": "12 PLACE DES ETATS-UNIS - 92049", "stop_name": "PLACE DES ETATS-UNIS"}, "geometry": {"type": "Point", "coordinates": [2.315138752600882, 48.81735110896811]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "d61e858c22efd0847c5c3d994115a14a3166bbe7", "fields": {"departement": "75", "stop_lat": 48.88298861040912, "code_postal": "75109", "stop_lon": 2.332035528074624, "coord": [48.88298861040912, 2.332035528074624], "stop_id": 5138161, "stop_desc": "77 RUE BLANCHE - 75109", "stop_name": "BLANCHE"}, "geometry": {"type": "Point", "coordinates": [2.332035528074624, 48.88298861040912]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "b5d9992876917c75d066d31e7e65c301425dcd49", "fields": {"departement": "75", "stop_lat": 48.86960655910574, "code_postal": "75102", "stop_lon": 2.332554568380394, "coord": [48.86960655910574, 2.332554568380394], "stop_id": 5138168, "stop_desc": "49 AVENUE DE L'OPERA - 75102", "stop_name": "OPERA - 4 SEPTEMBRE"}, "geometry": {"type": "Point", "coordinates": [2.332554568380394, 48.86960655910574]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "fdca3111521f415ee8292321e771f4efaf2ab6b1", "fields": {"departement": "75", "stop_lat": 48.861139933597755, "code_postal": "75107", "stop_lon": 2.325131730835768, "coord": [48.861139933597755, 2.325131730835768], "stop_id": 5138177, "stop_desc": "QUAI ANATOLE FRANCE - 75107", "stop_name": "MUSEE D'ORSAY"}, "geometry": {"type": "Point", "coordinates": [2.325131730835768, 48.861139933597755]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "6191a096f57e36ed7915479f3aa28eb7e3608ec3", "fields": {"departement": "75", "stop_lat": 48.85625089437896, "code_postal": "75107", "stop_lon": 2.326331434253565, "coord": [48.85625089437896, 2.326331434253565], "stop_id": 5138180, "stop_desc": "45 RUE DU BAC - 75107", "stop_name": "RUE DU BAC - RENE CHAR"}, "geometry": {"type": "Point", "coordinates": [2.326331434253565, 48.85625089437896]}, "record_timestamp": "2016-08-05T10:05:25+02:00"},{"datasetid": "positions-geographiques-des-stations-du-reseau-ratp", "recordid": "1d9ca19aa568e946b591048040e35eb814fef417", "fields": {"departement": "75", "stop_lat": 48.85386019995564, "code_postal": "75107", "stop_lon": 2.3259642143692596, "coord": [48.85386019995564, 2.3259642143692596], "stop_id": 5138181, "stop_desc": "22 BOULEVARD RASPAIL - 75107", "stop_name": "VARENNE - RASPAIL"}, "geometry": {"type": "Point", "coordinates": [2.3259642143692596, 48.85386019995564]}, "record_timestamp": "2016-08-05T10:05:25+02:00"}] \ No newline at end of file diff --git a/flatisfy/data_files/stops_fr-idf.txt b/flatisfy/data_files/stops_fr-idf.txt new file mode 100644 index 0000000..7e5f003 --- /dev/null +++ b/flatisfy/data_files/stops_fr-idf.txt @@ -0,0 +1,59362 @@ +stop_id,visible,stop_name,stop_lat,stop_lon,zone_id,location_type,parent_station,stop_timezone,equipment_id,contributor_id,geometry_id +OIF:SA:10:10,1,"Avenue de l'Essonne",48.647208,2.414269,,1,,Europe/Paris,,OIF, +OIF:SA:10:100,1,"Clinique",48.637689,2.426617,,1,,Europe/Paris,,OIF, +OIF:SA:10:1002,1,"Maison de l'Enfance",48.599101,2.429519,,1,,Europe/Paris,,OIF, +OIF:SA:10:1004,1,"Complexe Sportif",48.601991,2.423384,,1,,Europe/Paris,,OIF, +OIF:SA:10:1005,1,"Léonard de Vinci",48.603823,2.412496,,1,,Europe/Paris,,OIF, +OIF:SA:10:1006,1,"Ferme des Folies",48.607721,2.410794,,1,,Europe/Paris,,OIF, +OIF:SA:10:1007,1,"Clément Ader",48.622047,2.355017,,1,,Europe/Paris,,OIF, +OIF:SA:10:101,1,"Collège Paul Éluard",48.636482,2.343951,,1,,Europe/Paris,,OIF, +OIF:SA:10:1015,1,"Mairie",48.598012,2.425085,,1,,Europe/Paris,,OIF, +OIF:SA:10:1016,1,"Sacré Cœur",48.649881,2.409362,,1,,Europe/Paris,,OIF, +OIF:SA:10:106,1,"Les Coccinelles",48.614363,2.368356,,1,,Europe/Paris,,OIF, +OIF:SA:10:110,1,"Clos aux Pois",48.600188,2.436331,,1,,Europe/Paris,,OIF, +OIF:SA:10:111,1,"Collège Paul Fort",48.618818,2.411759,,1,,Europe/Paris,,OIF, +OIF:SA:10:1144,1,"Les Miroirs",48.631448,2.428869,,1,,Europe/Paris,,OIF, +OIF:SA:10:1145,1,"Agora",48.628089,2.428524,,1,,Europe/Paris,,OIF, +OIF:SA:10:115,1,"Les Closeaux Saint-Spire",48.622548,2.373833,,1,,Europe/Paris,,OIF, +OIF:SA:10:1152,1,"Marché",48.652636,2.357488,,1,,Europe/Paris,,OIF, +OIF:SA:10:1159,1,"Rue des Clos",48.613292,2.375614,,1,,Europe/Paris,,OIF, +OIF:SA:10:1165,1,"Exona",48.606598,2.447445,,1,,Europe/Paris,,OIF, +OIF:SA:10:1166,1,"Marques Avenue",48.609071,2.449148,,1,,Europe/Paris,,OIF, +OIF:SA:10:117,1,"Chemin du Vexin",48.610879,2.414703,,1,,Europe/Paris,,OIF, +OIF:SA:10:1171,1,"Terminal David Douillet",48.563151,2.491631,,1,,Europe/Paris,,OIF, +OIF:SA:10:1172,1,"Éperon",48.644656,2.345173,,1,,Europe/Paris,,OIF, +OIF:SA:10:1173,1,"Bois Clairs",48.643112,2.341765,,1,,Europe/Paris,,OIF, +OIF:SA:10:1174,1,"Guy Môquet",48.641114,2.337414,,1,,Europe/Paris,,OIF, +OIF:SA:10:1175,1,"Aristide Briand",48.634199,2.330443,,1,,Europe/Paris,,OIF, +OIF:SA:10:1176,1,"Coquelicots",48.631264,2.328334,,1,,Europe/Paris,,OIF, +OIF:SA:10:1177,1,"La Tour",48.634023,2.322855,,1,,Europe/Paris,,OIF, +OIF:SA:10:1185,1,"Résidence",48.639058,2.361631,,1,,Europe/Paris,,OIF, +OIF:SA:10:1186,1,"La Greffière",48.64136,2.365475,,1,,Europe/Paris,,OIF, +OIF:SA:10:1187,1,"Jeunes Détenus",48.640963,2.370873,,1,,Europe/Paris,,OIF, +OIF:SA:10:1188,1,"Maison d'Arrêt des Hommes",48.640547,2.374841,,1,,Europe/Paris,,OIF, +OIF:SA:10:1189,1,"Maison d'Arrêt des Femmes",48.640313,2.380377,,1,,Europe/Paris,,OIF, +OIF:SA:10:119,1,"Chemin Vert / Piscine",48.613197,2.415133,,1,,Europe/Paris,,OIF, +OIF:SA:10:1190,1,"Condorcet",48.644479,2.381418,,1,,Europe/Paris,,OIF, +OIF:SA:10:1191,1,"René Clair",48.645961,2.384261,,1,,Europe/Paris,,OIF, +OIF:SA:10:1192,1,"Jean-Jacques Rousseau",48.648066,2.38062,,1,,Europe/Paris,,OIF, +OIF:SA:10:1193,1,"Parc des Sports",48.646404,2.376319,,1,,Europe/Paris,,OIF, +OIF:SA:10:1194,1,"Piscine",48.648045,2.37533,,1,,Europe/Paris,,OIF, +OIF:SA:10:1207,1,"Mairie",48.566159,2.48454,,1,,Europe/Paris,,OIF, +OIF:SA:10:1208,1,"L'Ermitage",48.591945,2.4775,,1,,Europe/Paris,,OIF, +OIF:SA:10:1217,1,"Petits Bois",48.633634,2.438348,,1,,Europe/Paris,,OIF, +OIF:SA:10:1221,1,"Rond-Point Hôpital",48.622056,2.456104,,1,,Europe/Paris,,OIF, +OIF:SA:10:1223,1,"Hôpital Sud Francilien",48.619727,2.454421,,1,,Europe/Paris,,OIF, +OIF:SA:10:1225,1,"Le Grippet",48.623785,2.458817,,1,,Europe/Paris,,OIF, +OIF:SA:10:1227,1,"Louis Bourdet",48.618747,2.393632,,1,,Europe/Paris,,OIF, +OIF:SA:10:1228,1,"Cimetière",48.620282,2.397559,,1,,Europe/Paris,,OIF, +OIF:SA:10:1230,1,"Les Merisiers",48.656132,2.348499,,1,,Europe/Paris,,OIF, +OIF:SA:10:1234,1,"Bois Guillaume",48.638867,2.426205,,1,,Europe/Paris,,OIF, +OIF:SA:10:1235,1,"Route de Mennecy",48.64269,2.42278,,1,,Europe/Paris,,OIF, +OIF:SA:10:1238,1,"Bois Bailleul",48.610992,2.398422,,1,,Europe/Paris,,OIF, +OIF:SA:10:1240,1,"Mairie",48.61731,2.408056,,1,,Europe/Paris,,OIF, +OIF:SA:10:1241,1,"Dédale",48.65037,2.372428,,1,,Europe/Paris,,OIF, +OIF:SA:10:1242,1,"Jean Vilar",48.650304,2.375252,,1,,Europe/Paris,,OIF, +OIF:SA:10:1245,1,"Zone Industrielle les Brateaux",48.588023,2.443625,,1,,Europe/Paris,,OIF, +OIF:SA:10:1246,1,"Pyrénées",48.603592,2.433762,,1,,Europe/Paris,,OIF, +OIF:SA:10:1258,1,"Henri Dunant",48.595328,2.479529,,1,,Europe/Paris,,OIF, +OIF:SA:10:126,1,"Dauphiné",48.610667,2.427587,,1,,Europe/Paris,,OIF, +OIF:SA:10:1263,1,"Petits Champs",48.62158,2.345644,,1,,Europe/Paris,,OIF, +OIF:SA:10:1264,1,"ZI des Ciroliers",48.623667,2.363169,,1,,Europe/Paris,,OIF, +OIF:SA:10:1284,1,"ZI Croix Blanche",48.623844,2.342546,,1,,Europe/Paris,,OIF, +OIF:SA:10:1285,1,"Jean Moulin",48.660403,2.367897,,1,,Europe/Paris,,OIF, +OIF:SA:10:1286,1,"Fauvettes",48.644985,2.411607,,1,,Europe/Paris,,OIF, +OIF:SA:10:1287,1,"Rue du Temple",48.642419,2.410545,,1,,Europe/Paris,,OIF, +OIF:SA:10:1288,1,"Le Damier",48.651081,2.382011,,1,,Europe/Paris,,OIF, +OIF:SA:10:129,1,"Les Demoiselles",48.611619,2.383809,,1,,Europe/Paris,,OIF, +OIF:SA:10:1294,1,"Galignani",48.645785,2.451418,,1,,Europe/Paris,,OIF, +OIF:SA:10:1296,1,"Les Tourelles",48.62358,2.461542,,1,,Europe/Paris,,OIF, +OIF:SA:10:1297,1,"Beauvoir",48.628533,2.457411,,1,,Europe/Paris,,OIF, +OIF:SA:10:1300,1,"La Demi Lune",48.57632,2.475395,,1,,Europe/Paris,,OIF, +OIF:SA:10:1301,1,"Cavignon",48.579973,2.476137,,1,,Europe/Paris,,OIF, +OIF:SA:10:1302,1,"Rue du Chêne",48.582624,2.476462,,1,,Europe/Paris,,OIF, +OIF:SA:10:1303,1,"Pressoir Prompt",48.585847,2.476837,,1,,Europe/Paris,,OIF, +OIF:SA:10:1310,1,"Edouard Branly",48.619062,2.40155,,1,,Europe/Paris,,OIF, +OIF:SA:10:1312,1,"Donjon (Marché)",48.640083,2.33481,,1,,Europe/Paris,,OIF, +OIF:SA:10:1314,1,"Jules Vallès",48.635552,2.429672,,1,,Europe/Paris,,OIF, +OIF:SA:10:1316,1,"Jean Mermoz",48.627369,2.40832,,1,,Europe/Paris,,OIF, +OIF:SA:10:132,1,"Jean Marie Djibaou",48.61795,2.430677,,1,,Europe/Paris,,OIF, +OIF:SA:10:1320,1,"La Serpente",48.654876,2.378615,,1,,Europe/Paris,,OIF, +OIF:SA:10:1321,1,"Les Solstices",48.656285,2.373053,,1,,Europe/Paris,,OIF, +OIF:SA:10:1322,1,"Avenue Jean Mermoz",48.657696,2.371172,,1,,Europe/Paris,,OIF, +OIF:SA:10:1324,1,"Guérinière",48.663267,2.343191,,1,,Europe/Paris,,OIF, +OIF:SA:10:1330,1,"Collège Paul Éluard",48.622286,2.442997,,1,,Europe/Paris,,OIF, +OIF:SA:10:1331,1,"Institut de Biologie",48.625242,2.440128,,1,,Europe/Paris,,OIF, +OIF:SA:10:1332,1,"Sabatier",48.624759,2.431673,,1,,Europe/Paris,,OIF, +OIF:SA:10:1333,1,"Évry-Courcouronnes Centre",48.625089,2.428467,,1,,Europe/Paris,,OIF, +OIF:SA:10:1334,1,"Blaise Pascal - les Passages",48.627191,2.430586,,1,,Europe/Paris,,OIF, +OIF:SA:10:1335,1,"Les Arènes",48.629285,2.43101,,1,,Europe/Paris,,OIF, +OIF:SA:10:1336,1,"Facteur Cheval",48.631744,2.431258,,1,,Europe/Paris,,OIF, +OIF:SA:10:134,1,"Dame du Lac",48.613256,2.422081,,1,,Europe/Paris,,OIF, +OIF:SA:10:1344,1,"Avenue Auguste Plat",48.64597,2.405988,,1,,Europe/Paris,,OIF, +OIF:SA:10:1345,1,"Grand-Bourg",48.648695,2.43409,,1,,Europe/Paris,,OIF, +OIF:SA:10:1352,1,"Rue du Département",48.59977,2.471595,,1,,Europe/Paris,,OIF, +OIF:SA:10:1353,1,"RN7 - Lisses",48.611076,2.462006,,1,,Europe/Paris,,OIF, +OIF:SA:10:1354,1,"Tarterêts",48.614131,2.45855,,1,,Europe/Paris,,OIF, +OIF:SA:10:1356,1,"Toussaint Louverture",48.652174,2.391572,,1,,Europe/Paris,,OIF, +OIF:SA:10:1357,1,"Ferme Neuve",48.652798,2.385597,,1,,Europe/Paris,,OIF, +OIF:SA:10:1358,1,"La Treille",48.652382,2.370283,,1,,Europe/Paris,,OIF, +OIF:SA:10:1359,1,"La Treille - RD445",48.652483,2.370124,,1,,Europe/Paris,,OIF, +OIF:SA:10:1367,1,"Le Lac",48.617032,2.414061,,1,,Europe/Paris,,OIF, +OIF:SA:10:1371,1,"La Garenne",48.623533,2.403637,,1,,Europe/Paris,,OIF, +OIF:SA:10:1372,1,"Marché",48.63844,2.332714,,1,,Europe/Paris,,OIF, +OIF:SA:10:1376,1,"Zone d'Activités du Bois de l'Epine",48.630525,2.397666,,1,,Europe/Paris,,OIF, +OIF:SA:10:1380,1,"J.Guesde",48.630844,2.405945,,1,,Europe/Paris,,OIF, +OIF:SA:10:1383,1,"Charles Robin",48.613161,2.466973,,1,,Europe/Paris,,OIF, +OIF:SA:10:1384,1,"Montagne des Glaises",48.61298,2.463719,,1,,Europe/Paris,,OIF, +OIF:SA:10:143,1,"Edmond Bonté",48.656925,2.410155,,1,,Europe/Paris,,OIF, +OIF:SA:10:159,1,"Église",48.564342,2.50086,,1,,Europe/Paris,,OIF, +OIF:SA:10:161,1,"Zone Industrielle l'Églantier",48.599744,2.434683,,1,,Europe/Paris,,OIF, +OIF:SA:10:167,1,"L'Écoute S'Il Pleut",48.62965,2.40313,,1,,Europe/Paris,,OIF, +OIF:SA:10:169,1,"Les Estudines",48.621032,2.427436,,1,,Europe/Paris,,OIF, +OIF:SA:10:171,1,"Eurocontrol",48.600974,2.34647,,1,,Europe/Paris,,OIF, +OIF:SA:10:172,1,"Faisanderie",48.610659,2.389549,,1,,Europe/Paris,,OIF, +OIF:SA:10:176,1,"Foyer Club",48.634281,2.449178,,1,,Europe/Paris,,OIF, +OIF:SA:10:178,1,"La Fontaine",48.654626,2.410552,,1,,Europe/Paris,,OIF, +OIF:SA:10:18,1,"Aguado",48.631058,2.442059,,1,,Europe/Paris,,OIF, +OIF:SA:10:182,1,"Ferme de Place",48.603402,2.423874,,1,,Europe/Paris,,OIF, +OIF:SA:10:188,1,"Gaspéri",48.615899,2.427149,,1,,Europe/Paris,,OIF, +OIF:SA:10:190,1,"Champs Elysées Gd Bourg",48.643506,2.431334,,1,,Europe/Paris,,OIF, +OIF:SA:10:198,1,"Gustave Courbet",48.615805,2.4697,,1,,Europe/Paris,,OIF, +OIF:SA:10:20,1,"Avenue du Lac",48.619966,2.422051,,1,,Europe/Paris,,OIF, +OIF:SA:10:200,1,"Gabrielle d'Estrées",48.568076,2.481441,,1,,Europe/Paris,,OIF, +OIF:SA:10:201,1,"Gerville",48.642329,2.455171,,1,,Europe/Paris,,OIF, +OIF:SA:10:207,1,"Général de Gaulle",48.609331,2.378025,,1,,Europe/Paris,,OIF, +OIF:SA:10:209,1,"Général de Gaulle",48.617235,2.465994,,1,,Europe/Paris,,OIF, +OIF:SA:10:211,1,"Gabriel Jaillard",48.611852,2.367135,,1,,Europe/Paris,,OIF, +OIF:SA:10:215,1,"Golf",48.561787,2.505355,,1,,Europe/Paris,,OIF, +OIF:SA:10:22,1,"Arnaud Massy",48.60495,2.372409,,1,,Europe/Paris,,OIF, +OIF:SA:10:223,1,"George Sand",48.648648,2.411775,,1,,Europe/Paris,,OIF, +OIF:SA:10:224,1,"Tuileries",48.650388,2.394107,,1,,Europe/Paris,,OIF, +OIF:SA:10:228,1,"Gutenberg",48.641296,2.429065,,1,,Europe/Paris,,OIF, +OIF:SA:10:230,1,"Grand Vaux",48.672456,2.333309,,1,,Europe/Paris,,OIF, +OIF:SA:10:233,1,"Le Haricot",48.651187,2.39656,,1,,Europe/Paris,,OIF, +OIF:SA:10:235,1,"Les Hauts Cornuts",48.602402,2.443085,,1,,Europe/Paris,,OIF, +OIF:SA:10:237,1,"Hippodrome",48.625728,2.392453,,1,,Europe/Paris,,OIF, +OIF:SA:10:239,1,"La Guiche",48.564013,2.513989,,1,,Europe/Paris,,OIF, +OIF:SA:10:240,1,"Hôpital Henri Manhès",48.628635,2.360826,,1,,Europe/Paris,,OIF, +OIF:SA:10:242,1,"Hameaux de la Roche",48.648688,2.418856,,1,,Europe/Paris,,OIF, +OIF:SA:10:243,1,"Mairie",48.614537,2.381094,,1,,Europe/Paris,,OIF, +OIF:SA:10:245,1,"Imprimerie Nationale",48.603049,2.371493,,1,,Europe/Paris,,OIF, +OIF:SA:10:246,1,"Parc de Tréville",48.59538,2.368908,,1,,Europe/Paris,,OIF, +OIF:SA:10:247,1,"Joliot Curie",48.63235,2.397905,,1,,Europe/Paris,,OIF, +OIF:SA:10:249,1,"Joliot Curie",48.64286,2.347156,,1,,Europe/Paris,,OIF, +OIF:SA:10:26,1,"Aunettes",48.614186,2.433795,,1,,Europe/Paris,,OIF, +OIF:SA:10:264,1,"Jean Pierre Timbaud",48.662103,2.359919,,1,,Europe/Paris,,OIF, +OIF:SA:10:265,1,"Jean Renoir",48.629656,2.422718,,1,,Europe/Paris,,OIF, +OIF:SA:10:267,1,"Jean Rostand",48.62399,2.432295,,1,,Europe/Paris,,OIF, +OIF:SA:10:27,1,"Aubépine",48.593583,2.433046,,1,,Europe/Paris,,OIF, +OIF:SA:10:274,1,"Libellules 2",48.568289,2.509873,,1,,Europe/Paris,,OIF, +OIF:SA:10:280,1,"Léon Cassé",48.603855,2.468163,,1,,Europe/Paris,,OIF, +OIF:SA:10:281,1,"Lisière des Deux Parcs",48.624215,2.437441,,1,,Europe/Paris,,OIF, +OIF:SA:10:283,1,"Lycée d'Enseignement Professionnel les Aunettes",48.638426,2.413754,,1,,Europe/Paris,,OIF, +OIF:SA:10:288,1,"Lycée Georges Brassens",48.627075,2.420185,,1,,Europe/Paris,,OIF, +OIF:SA:10:29,1,"Bel Air",48.59639,2.435511,,1,,Europe/Paris,,OIF, +OIF:SA:10:290,1,"Les Galants Courts",48.632106,2.433815,,1,,Europe/Paris,,OIF, +OIF:SA:10:294,1,"Les Lilas",48.650743,2.445192,,1,,Europe/Paris,,OIF, +OIF:SA:10:297,1,"La Mare aux Moules",48.620597,2.375425,,1,,Europe/Paris,,OIF, +OIF:SA:10:299,1,"Les Longaines",48.605369,2.447767,,1,,Europe/Paris,,OIF, +OIF:SA:10:3,1,"Les Griottes",48.565754,2.515824,,1,,Europe/Paris,,OIF, +OIF:SA:10:301,1,"Lycée Parc des Loges",48.635948,2.424953,,1,,Europe/Paris,,OIF, +OIF:SA:10:305,1,"Louis Tostain",48.636337,2.332209,,1,,Europe/Paris,,OIF, +OIF:SA:10:307,1,"Le Lunain",48.613138,2.409412,,1,,Europe/Paris,,OIF, +OIF:SA:10:314,1,"Mairie Annexe",48.635865,2.446774,,1,,Europe/Paris,,OIF, +OIF:SA:10:316,1,"Mairie",48.630314,2.361152,,1,,Europe/Paris,,OIF, +OIF:SA:10:318,1,"Mairie",48.655205,2.386193,,1,,Europe/Paris,,OIF, +OIF:SA:10:320,1,"Les Malines",48.604123,2.422046,,1,,Europe/Paris,,OIF, +OIF:SA:10:322,1,"Mairie",48.660851,2.345284,,1,,Europe/Paris,,OIF, +OIF:SA:10:324,1,"La Mare à Pilatre",48.643326,2.404286,,1,,Europe/Paris,,OIF, +OIF:SA:10:328,1,"Mairie",48.647396,2.448562,,1,,Europe/Paris,,OIF, +OIF:SA:10:33,1,"Barbusse Cassin",48.653966,2.346884,,1,,Europe/Paris,,OIF, +OIF:SA:10:331,1,"Maurice Genevoix",48.636959,2.428684,,1,,Europe/Paris,,OIF, +OIF:SA:10:333,1,"Marchais Guesdon",48.632786,2.412328,,1,,Europe/Paris,,OIF, +OIF:SA:10:335,1,"Maisons du Golf",48.610377,2.386479,,1,,Europe/Paris,,OIF, +OIF:SA:10:343,1,"Marinière / Lycée Technologique François Truffaut",48.618821,2.389748,,1,,Europe/Paris,,OIF, +OIF:SA:10:345,1,"Montconseil",48.595613,2.475108,,1,,Europe/Paris,,OIF, +OIF:SA:10:348,1,"Monseigneur Roméro",48.623072,2.427751,,1,,Europe/Paris,,OIF, +OIF:SA:10:35,1,"Bois Chaland",48.605869,2.430405,,1,,Europe/Paris,,OIF, +OIF:SA:10:350,1,"Nouveaux Champs",48.639185,2.433232,,1,,Europe/Paris,,OIF, +OIF:SA:10:352,1,"Notre-Dame République",48.644078,2.453221,,1,,Europe/Paris,,OIF, +OIF:SA:10:355,1,"Nowy Targ",48.633199,2.443019,,1,,Europe/Paris,,OIF, +OIF:SA:10:357,1,"Orme à Martin",48.630773,2.412868,,1,,Europe/Paris,,OIF, +OIF:SA:10:361,1,"Les Osiers",48.628156,2.406619,,1,,Europe/Paris,,OIF, +OIF:SA:10:363,1,"Patios",48.647571,2.368947,,1,,Europe/Paris,,OIF, +OIF:SA:10:364,1,"Patton / Mousseau",48.63081,2.450127,,1,,Europe/Paris,,OIF, +OIF:SA:10:366,1,"Le Parc",48.638597,2.437632,,1,,Europe/Paris,,OIF, +OIF:SA:10:368,1,"Pasteur",48.626312,2.449117,,1,,Europe/Paris,,OIF, +OIF:SA:10:371,1,"Pasteur",48.611555,2.382722,,1,,Europe/Paris,,OIF, +OIF:SA:10:372,1,"Place des Aunettes",48.618196,2.432739,,1,,Europe/Paris,,OIF, +OIF:SA:10:374,1,"Les Petits Bois",48.608062,2.373832,,1,,Europe/Paris,,OIF, +OIF:SA:10:380,1,"Place du Couvent Mairie",48.648904,2.450614,,1,,Europe/Paris,,OIF, +OIF:SA:10:381,1,"Place de la Commune",48.621691,2.440209,,1,,Europe/Paris,,OIF, +OIF:SA:10:385,1,"Les Peupliers",48.609617,2.418625,,1,,Europe/Paris,,OIF, +OIF:SA:10:387,1,"Place Henri IV",48.657834,2.359462,,1,,Europe/Paris,,OIF, +OIF:SA:10:39,1,"Bois des Coudraies",48.638941,2.459302,,1,,Europe/Paris,,OIF, +OIF:SA:10:391,1,"Piscine",48.634501,2.343787,,1,,Europe/Paris,,OIF, +OIF:SA:10:393,1,"Place Jean Malézieux",48.618327,2.442141,,1,,Europe/Paris,,OIF, +OIF:SA:10:395,1,"Parc des Loges",48.632971,2.424365,,1,,Europe/Paris,,OIF, +OIF:SA:10:397,1,"Pierre Marcillé",48.609943,2.38072,,1,,Europe/Paris,,OIF, +OIF:SA:10:399,1,"Petite Montagne Sud",48.611358,2.423776,,1,,Europe/Paris,,OIF, +OIF:SA:10:403,1,"Mendès France",48.639024,2.345613,,1,,Europe/Paris,,OIF, +OIF:SA:10:405,1,"Petite Montagne",48.614781,2.425364,,1,,Europe/Paris,,OIF, +OIF:SA:10:407,1,"Place Marcel Sembat",48.654689,2.352162,,1,,Europe/Paris,,OIF, +OIF:SA:10:409,1,"Pablo Neruda",48.653416,2.39213,,1,,Europe/Paris,,OIF, +OIF:SA:10:411,1,"Pomponne",48.640179,2.399359,,1,,Europe/Paris,,OIF, +OIF:SA:10:416,1,"Préfecture",48.62926,2.436778,,1,,Europe/Paris,,OIF, +OIF:SA:10:422,1,"Les Quinconges",48.620196,2.38019,,1,,Europe/Paris,,OIF, +OIF:SA:10:426,1,"Rue d'Antin",48.636721,2.439161,,1,,Europe/Paris,,OIF, +OIF:SA:10:428,1,"Ratisbonne",48.640402,2.434767,,1,,Europe/Paris,,OIF, +OIF:SA:10:430,1,"Le Ravin",48.647399,2.371707,,1,,Europe/Paris,,OIF, +OIF:SA:10:432,1,"Rue des Carrières",48.652851,2.450189,,1,,Europe/Paris,,OIF, +OIF:SA:10:442,1,"Rue de l'Egalité",48.665849,2.341506,,1,,Europe/Paris,,OIF, +OIF:SA:10:444,1,"Les Remises",48.619803,2.385118,,1,,Europe/Paris,,OIF, +OIF:SA:10:451,1,"La Rivière",48.666952,2.332992,,1,,Europe/Paris,,OIF, +OIF:SA:10:452,1,"Rue Jean de la Fontaine",48.65407,2.453488,,1,,Europe/Paris,,OIF, +OIF:SA:10:454,1,"Rue des Meillottes",48.654024,2.445782,,1,,Europe/Paris,,OIF, +OIF:SA:10:455,1,"Rue de Morsang",48.665742,2.337787,,1,,Europe/Paris,,OIF, +OIF:SA:10:459,1,"Rosenberg",48.632606,2.43227,,1,,Europe/Paris,,OIF, +OIF:SA:10:46,1,"Bonhomme en Pierre",48.628614,2.453119,,1,,Europe/Paris,,OIF, +OIF:SA:10:461,1,"Rossini",48.635211,2.444088,,1,,Europe/Paris,,OIF, +OIF:SA:10:463,1,"Rond-Point de Fleury",48.634703,2.359802,,1,,Europe/Paris,,OIF, +OIF:SA:10:465,1,"Rue du Puits",48.568499,2.48049,,1,,Europe/Paris,,OIF, +OIF:SA:10:471,1,"Salvador Allende",48.648605,2.408003,,1,,Europe/Paris,,OIF, +OIF:SA:10:473,1,"Sacré-Cœur",48.650325,2.410631,,1,,Europe/Paris,,OIF, +OIF:SA:10:474,1,"Saint-Exupéry",48.629511,2.447251,,1,,Europe/Paris,,OIF, +OIF:SA:10:480,1,"Saint-Hubert",48.641186,2.346,,1,,Europe/Paris,,OIF, +OIF:SA:10:482,1,"Square Jean Lurçat",48.657678,2.349524,,1,,Europe/Paris,,OIF, +OIF:SA:10:484,1,"Rue Berlioz",48.635237,2.320302,,1,,Europe/Paris,,OIF, +OIF:SA:10:486,1,"Les Meillottes",48.65213,2.456753,,1,,Europe/Paris,,OIF, +OIF:SA:10:490,1,"Strathkelvin",48.619664,2.462861,,1,,Europe/Paris,,OIF, +OIF:SA:10:494,1,"Temps des Cerises / SNECMA",48.618718,2.446955,,1,,Europe/Paris,,OIF, +OIF:SA:10:496,1,"Thorigny",48.620233,2.406121,,1,,Europe/Paris,,OIF, +OIF:SA:10:50,1,"Les Bocages",48.611698,2.404306,,1,,Europe/Paris,,OIF, +OIF:SA:10:500,1,"Les 3 Parts",48.608995,2.370066,,1,,Europe/Paris,,OIF, +OIF:SA:10:502,1,"La Tremblaie",48.607233,2.358239,,1,,Europe/Paris,,OIF, +OIF:SA:10:504,1,"La Vanne",48.613765,2.405888,,1,,Europe/Paris,,OIF, +OIF:SA:10:506,1,"Voie de Compiègne",48.661775,2.362914,,1,,Europe/Paris,,OIF, +OIF:SA:10:508,1,"Les Vergers",48.610864,2.40213,,1,,Europe/Paris,,OIF, +OIF:SA:10:512,1,"Mairie",48.58868,2.452603,,1,,Europe/Paris,,OIF, +OIF:SA:10:514,1,"Yerres / Louise Michel",48.615372,2.43432,,1,,Europe/Paris,,OIF, +OIF:SA:10:517,1,"ZI B0RDES Nord",48.606382,2.362842,,1,,Europe/Paris,,OIF, +OIF:SA:10:519,1,"ZI Bordes Sud",48.602551,2.367538,,1,,Europe/Paris,,OIF, +OIF:SA:10:521,1,"ZI Gustave Madiot",48.604557,2.365098,,1,,Europe/Paris,,OIF, +OIF:SA:10:526,1,"8 Mai 1945",48.611049,2.453188,,1,,Europe/Paris,,OIF, +OIF:SA:10:53,1,"Beau Rivage",48.566517,2.498164,,1,,Europe/Paris,,OIF, +OIF:SA:10:534,1,"Cimetière",48.615708,2.473349,,1,,Europe/Paris,,OIF, +OIF:SA:10:536,1,"Lycée Robert Doisneau",48.613154,2.458782,,1,,Europe/Paris,,OIF, +OIF:SA:10:540,1,"Félicien Rops",48.611382,2.477235,,1,,Europe/Paris,,OIF, +OIF:SA:10:542,1,"Henri Matisse",48.615067,2.462362,,1,,Europe/Paris,,OIF, +OIF:SA:10:544,1,"Léon Blum",48.616413,2.464331,,1,,Europe/Paris,,OIF, +OIF:SA:10:545,1,"Louis Drevet",48.600296,2.475513,,1,,Europe/Paris,,OIF, +OIF:SA:10:547,1,"MJC Aristide Briand",48.609705,2.474589,,1,,Europe/Paris,,OIF, +OIF:SA:10:549,1,"Parc Chantemerle",48.607897,2.471379,,1,,Europe/Paris,,OIF, +OIF:SA:10:551,1,"Parking Crété",48.612863,2.479844,,1,,Europe/Paris,,OIF, +OIF:SA:10:553,1,"Gauguin",48.618799,2.460256,,1,,Europe/Paris,,OIF, +OIF:SA:10:554,1,"Pablo Picasso",48.614521,2.460273,,1,,Europe/Paris,,OIF, +OIF:SA:10:555,1,"Salvador Allende",48.597747,2.47657,,1,,Europe/Paris,,OIF, +OIF:SA:10:557,1,"Sous Préfecture",48.61424,2.475879,,1,,Europe/Paris,,OIF, +OIF:SA:10:559,1,"Square",48.594527,2.477656,,1,,Europe/Paris,,OIF, +OIF:SA:10:561,1,"Les Tours",48.596274,2.477064,,1,,Europe/Paris,,OIF, +OIF:SA:10:572,1,"Cottage",48.601099,2.472811,,1,,Europe/Paris,,OIF, +OIF:SA:10:574,1,"Centre Commercial Art de Vivre",48.606938,2.469221,,1,,Europe/Paris,,OIF, +OIF:SA:10:577,1,"Libellules 1",48.567852,2.507711,,1,,Europe/Paris,,OIF, +OIF:SA:10:58,1,"Collège Albert Camus",48.651827,2.40165,,1,,Europe/Paris,,OIF, +OIF:SA:10:580,1,"Rue de Strasbourg",48.639146,2.412209,,1,,Europe/Paris,,OIF, +OIF:SA:10:582,1,"Mairie",48.654021,2.415581,,1,,Europe/Paris,,OIF, +OIF:SA:10:583,1,"Rue Gambetta",48.657466,2.411136,,1,,Europe/Paris,,OIF, +OIF:SA:10:584,1,"Cimetière",48.659176,2.407828,,1,,Europe/Paris,,OIF, +OIF:SA:10:585,1,"Notre-Dame Rue du Clos",48.657595,2.405967,,1,,Europe/Paris,,OIF, +OIF:SA:10:586,1,"Avenue du Parc",48.653426,2.402651,,1,,Europe/Paris,,OIF, +OIF:SA:10:588,1,"Route de Grigny",48.651206,2.40315,,1,,Europe/Paris,,OIF, +OIF:SA:10:589,1,"Rue des Perdrix",48.649282,2.402985,,1,,Europe/Paris,,OIF, +OIF:SA:10:590,1,"Maternelle Picasso",48.64692,2.400174,,1,,Europe/Paris,,OIF, +OIF:SA:10:593,1,"Centre Commercial du Moulin à Vent",48.648858,2.407081,,1,,Europe/Paris,,OIF, +OIF:SA:10:594,1,"Vieux Cédre",48.646971,2.431537,,1,,Europe/Paris,,OIF, +OIF:SA:10:596,1,"Chemin du Trousseau",48.645621,2.433379,,1,,Europe/Paris,,OIF, +OIF:SA:10:597,1,"Ikea",48.594213,2.438129,,1,,Europe/Paris,,OIF, +OIF:SA:10:599,1,"Petits Champs",48.592513,2.439169,,1,,Europe/Paris,,OIF, +OIF:SA:10:6,1,"Allée Clémenceau",48.633173,2.441887,,1,,Europe/Paris,,OIF, +OIF:SA:10:605,1,"Grand Veneur",48.648092,2.453841,,1,,Europe/Paris,,OIF, +OIF:SA:10:606,1,"Rue de l'Ermitage",48.650192,2.457359,,1,,Europe/Paris,,OIF, +OIF:SA:10:609,1,"Collège Léopold Sédar Senghor",48.615457,2.458906,,1,,Europe/Paris,,OIF, +OIF:SA:10:614,1,"Labyrinthe",48.650467,2.378384,,1,,Europe/Paris,,OIF, +OIF:SA:10:65,1,"La Croix Blanche",48.615913,2.377417,,1,,Europe/Paris,,OIF, +OIF:SA:10:67,1,"Centre Commercial des Aunettes",48.647677,2.418,,1,,Europe/Paris,,OIF, +OIF:SA:10:69,1,"Centre Commercial Ferme du Temple",48.644012,2.408248,,1,,Europe/Paris,,OIF, +OIF:SA:10:71,1,"Champtier du Coq",48.635576,2.43884,,1,,Europe/Paris,,OIF, +OIF:SA:10:72,1,"Centre Commercial",48.585046,2.446672,,1,,Europe/Paris,,OIF, +OIF:SA:10:76,1,"Collège",48.650931,2.466667,,1,,Europe/Paris,,OIF, +OIF:SA:10:78,1,"Cga",48.603851,2.351774,,1,,Europe/Paris,,OIF, +OIF:SA:10:80,1,"Camille Guérin",48.638125,2.420447,,1,,Europe/Paris,,OIF, +OIF:SA:10:82,1,"Chemin de Halage",48.567224,2.503341,,1,,Europe/Paris,,OIF, +OIF:SA:10:84,1,"Champagne",48.606874,2.420403,,1,,Europe/Paris,,OIF, +OIF:SA:10:88,1,"Cimetière",48.659058,2.347021,,1,,Europe/Paris,,OIF, +OIF:SA:10:90,1,"Cimetière",48.591495,2.456031,,1,,Europe/Paris,,OIF, +OIF:SA:10:91,1,"Chemin de la Joute",48.611482,2.419814,,1,,Europe/Paris,,OIF, +OIF:SA:11:1,1,"Pierre Lizart",48.98867,2.406771,,1,,Europe/Paris,,OIF, +OIF:SA:11:10,1,"Boieldieu",48.986565,2.403382,,1,,Europe/Paris,,OIF, +OIF:SA:11:100,1,"Gay Lussac",48.982363,2.465198,,1,,Europe/Paris,,OIF, +OIF:SA:11:102,1,"La Madeleine",48.986303,2.437442,,1,,Europe/Paris,,OIF, +OIF:SA:11:104,1,"Mairie Annexe la Fauconnière",49.001281,2.423861,,1,,Europe/Paris,,OIF, +OIF:SA:11:106,1,"Mairie de Gonesse",48.986534,2.450131,,1,,Europe/Paris,,OIF, +OIF:SA:11:108,1,"La Malmaison",48.98202,2.456176,,1,,Europe/Paris,,OIF, +OIF:SA:11:11,1,"Mairie Annexe / Collège Jean Moulin",48.980732,2.423565,,1,,Europe/Paris,,OIF, +OIF:SA:11:110,1,"Les Marronniers",48.995793,2.421337,,1,,Europe/Paris,,OIF, +OIF:SA:11:112,1,"Maurice Meyer",49.000028,2.42883,,1,,Europe/Paris,,OIF, +OIF:SA:11:114,1,"École Louise Michel",48.997371,2.430143,,1,,Europe/Paris,,OIF, +OIF:SA:11:116,1,"Les Mines",48.984469,2.472254,,1,,Europe/Paris,,OIF, +OIF:SA:11:118,1,"Myosotis",48.995986,2.426604,,1,,Europe/Paris,,OIF, +OIF:SA:11:120,1,"Saint-Nicolas",48.985348,2.446778,,1,,Europe/Paris,,OIF, +OIF:SA:11:122,1,"Triangle de Gonesse",48.983713,2.467407,,1,,Europe/Paris,,OIF, +OIF:SA:11:124,1,"Place des Marronniers",48.998919,2.427394,,1,,Europe/Paris,,OIF, +OIF:SA:11:128,1,"Raymond Poincaré",49.004742,2.422125,,1,,Europe/Paris,,OIF, +OIF:SA:11:13,1,"Les Châtaigniers",48.986106,2.411635,,1,,Europe/Paris,,OIF, +OIF:SA:11:131,1,"Place des Roses",48.996402,2.427915,,1,,Europe/Paris,,OIF, +OIF:SA:11:135,1,"Place Sangnier",49.001493,2.420627,,1,,Europe/Paris,,OIF, +OIF:SA:11:137,1,"Eugène Scribe",49.003503,2.420566,,1,,Europe/Paris,,OIF, +OIF:SA:11:138,1,"Souvenir Français",48.993369,2.454219,,1,,Europe/Paris,,OIF, +OIF:SA:11:140,1,"Square des Sports",49.003048,2.427342,,1,,Europe/Paris,,OIF, +OIF:SA:11:143,1,"Place de Lattre de Tassigny",49.000908,2.419794,,1,,Europe/Paris,,OIF, +OIF:SA:11:144,1,"Place Gaston Tessier",49.00415,2.424177,,1,,Europe/Paris,,OIF, +OIF:SA:11:147,1,"Tour de Contrôle",49.009291,2.546748,,1,,Europe/Paris,,OIF, +OIF:SA:11:148,1,"Charles de Gaulle",48.99958,2.511698,,1,,Europe/Paris,,OIF, +OIF:SA:11:15,1,"Cimetière",48.983063,2.420212,,1,,Europe/Paris,,OIF, +OIF:SA:11:165,1,"Centre Commercial O'Parinor",48.955489,2.478992,,1,,Europe/Paris,,OIF, +OIF:SA:11:17,1,"Pierre Curie",48.98589,2.420337,,1,,Europe/Paris,,OIF, +OIF:SA:11:183,1,"ZAC les Tulipes Sud",48.962351,2.455486,,1,,Europe/Paris,,OIF, +OIF:SA:11:19,1,"Jean Jaurès",48.987796,2.419395,,1,,Europe/Paris,,OIF, +OIF:SA:11:191,1,"Église Saint-Eloi",48.999977,2.513994,,1,,Europe/Paris,,OIF, +OIF:SA:11:197,1,"Rond-Point de Bonneuil",48.981414,2.443549,,1,,Europe/Paris,,OIF, +OIF:SA:11:200,1,"Ferme Saint-Simon",48.962663,2.453446,,1,,Europe/Paris,,OIF, +OIF:SA:11:203,1,"21ème Siècle",48.96536,2.459195,,1,,Europe/Paris,,OIF, +OIF:SA:11:205,1,"ZAC les Tulipes Nord",48.967637,2.46218,,1,,Europe/Paris,,OIF, +OIF:SA:11:209,1,"Zone Industrielle de la Fontaine Cypierre",48.985452,2.459767,,1,,Europe/Paris,,OIF, +OIF:SA:11:21,1,"Lycée Professionnel",48.985345,2.406896,,1,,Europe/Paris,,OIF, +OIF:SA:11:210,1,"Mairie de Bonneuil",48.974567,2.431652,,1,,Europe/Paris,,OIF, +OIF:SA:11:213,1,"Gonesse Hôpital",48.993756,2.451127,,1,,Europe/Paris,,OIF, +OIF:SA:11:219,1,"Salle des Fêtes",48.992941,2.443436,,1,,Europe/Paris,,OIF, +OIF:SA:11:225,1,"Route de Gonesse",48.951949,2.485594,,1,,Europe/Paris,,OIF, +OIF:SA:11:227,1,"Cité Emmaüs",48.949031,2.489205,,1,,Europe/Paris,,OIF, +OIF:SA:11:229,1,"Croix Rouge",48.947311,2.492133,,1,,Europe/Paris,,OIF, +OIF:SA:11:23,1,"Roger Dehasque",48.98296,2.426076,,1,,Europe/Paris,,OIF, +OIF:SA:11:231,1,"Francisco Ferrer",48.944243,2.495506,,1,,Europe/Paris,,OIF, +OIF:SA:11:233,1,"Marceau",48.941754,2.495432,,1,,Europe/Paris,,OIF, +OIF:SA:11:235,1,"L'Herminier",48.938052,2.494974,,1,,Europe/Paris,,OIF, +OIF:SA:11:237,1,"Jean Charcot / Anatole France",48.936006,2.494323,,1,,Europe/Paris,,OIF, +OIF:SA:11:239,1,"Mairie",48.933603,2.499391,,1,,Europe/Paris,,OIF, +OIF:SA:11:242,1,"Rond-Point du 14 Juillet",48.991374,2.431762,,1,,Europe/Paris,,OIF, +OIF:SA:11:248,1,"Paris Nord 2 - Zone Commerciale",48.975404,2.497877,,1,,Europe/Paris,,OIF, +OIF:SA:11:250,1,"Paris Nord 2 - Bois de la Pie",48.979975,2.509557,,1,,Europe/Paris,,OIF, +OIF:SA:11:257,1,"Margulliers",48.994606,2.523822,,1,,Europe/Paris,,OIF, +OIF:SA:11:259,1,"Aéroville",48.991091,2.524166,,1,,Europe/Paris,,OIF, +OIF:SA:11:27,1,"Place Gabriel Péri",48.985397,2.419655,,1,,Europe/Paris,,OIF, +OIF:SA:11:29,1,"La Poste",48.989593,2.418379,,1,,Europe/Paris,,OIF, +OIF:SA:11:3,1,"Antin",48.991027,2.410393,,1,,Europe/Paris,,OIF, +OIF:SA:11:31,1,"Les Quinconces",48.976284,2.424208,,1,,Europe/Paris,,OIF, +OIF:SA:11:37,1,"Charles Vaillant",48.986211,2.416134,,1,,Europe/Paris,,OIF, +OIF:SA:11:44,1,"Ampère",48.979927,2.45991,,1,,Europe/Paris,,OIF, +OIF:SA:11:46,1,"Berthelot",48.980474,2.454142,,1,,Europe/Paris,,OIF, +OIF:SA:11:49,1,"Pierre Salvi",48.99184,2.432759,,1,,Europe/Paris,,OIF, +OIF:SA:11:5,1,"Henri Barbusse",48.986003,2.415608,,1,,Europe/Paris,,OIF, +OIF:SA:11:51,1,"Arsonval",48.992303,2.455367,,1,,Europe/Paris,,OIF, +OIF:SA:11:53,1,"Aubépines",48.994452,2.423545,,1,,Europe/Paris,,OIF, +OIF:SA:11:55,1,"Hector Berlioz",48.992315,2.428723,,1,,Europe/Paris,,OIF, +OIF:SA:11:57,1,"Zone Industrielle",48.983771,2.459481,,1,,Europe/Paris,,OIF, +OIF:SA:11:59,1,"Saint-Blin / Lycée René Cassin",48.985161,2.43247,,1,,Europe/Paris,,OIF, +OIF:SA:11:63,1,"Aristide Briand / Général Durand",49.000731,2.426277,,1,,Europe/Paris,,OIF, +OIF:SA:11:65,1,"Pierre Brossolette",48.996074,2.422643,,1,,Europe/Paris,,OIF, +OIF:SA:11:67,1,"Centre d'Apprentissage",48.990679,2.437376,,1,,Europe/Paris,,OIF, +OIF:SA:11:69,1,"Villa des Châtaigniers",48.993258,2.432102,,1,,Europe/Paris,,OIF, +OIF:SA:11:7,1,"Léon Blum",48.982316,2.428398,,1,,Europe/Paris,,OIF, +OIF:SA:11:71,1,"Chauvart",48.985188,2.457778,,1,,Europe/Paris,,OIF, +OIF:SA:11:76,1,"Cressonnières",48.9888,2.458615,,1,,Europe/Paris,,OIF, +OIF:SA:11:78,1,"Chemin d'Ecouen",49.000835,2.431256,,1,,Europe/Paris,,OIF, +OIF:SA:11:84,1,"Fontaine Saint-Nicolas",48.984178,2.452273,,1,,Europe/Paris,,OIF, +OIF:SA:11:91,1,"Square la Garenne",48.999483,2.42381,,1,,Europe/Paris,,OIF, +OIF:SA:11:92,1,"Guy de Maupassant",48.988715,2.435438,,1,,Europe/Paris,,OIF, +OIF:SA:11:98,1,"Place Jean Jaurès",48.984652,2.43989,,1,,Europe/Paris,,OIF, +OIF:SA:12:3001,1,"Marais d'Air",48.374621,2.935442,,1,,Europe/Paris,,OIF, +OIF:SA:12:3003,1,"Allasseur",48.3883,2.949394,,1,,Europe/Paris,,OIF, +OIF:SA:12:3007,1,"Bas Clos",48.384976,2.905811,,1,,Europe/Paris,,OIF, +OIF:SA:12:3009,1,"Petit Passeur",48.376809,2.88776,,1,,Europe/Paris,,OIF, +OIF:SA:12:3010,1,"Collège Paul Éluard",48.401524,2.968594,,1,,Europe/Paris,,OIF, +OIF:SA:12:3013,1,"Bord de l'Yonne",48.361184,3.081972,,1,,Europe/Paris,,OIF, +OIF:SA:12:3015,1,"Les Bordes",48.367626,2.98545,,1,,Europe/Paris,,OIF, +OIF:SA:12:3017,1,"Collège Pierre",48.386903,2.95188,,1,,Europe/Paris,,OIF, +OIF:SA:12:3019,1,"ZA Confluent",48.392978,2.974316,,1,,Europe/Paris,,OIF, +OIF:SA:12:3021,1,"Collège Elsa Triolet",48.372648,2.934354,,1,,Europe/Paris,,OIF, +OIF:SA:12:3025,1,"Croix Chute",48.416076,3.005932,,1,,Europe/Paris,,OIF, +OIF:SA:12:3027,1,"CFA",48.398299,2.978053,,1,,Europe/Paris,,OIF, +OIF:SA:12:3029,1,"Cimetière",48.395699,2.966694,,1,,Europe/Paris,,OIF, +OIF:SA:12:3030,1,"Lycée André Malraux",48.395215,2.959047,,1,,Europe/Paris,,OIF, +OIF:SA:12:3033,1,"Château",48.365397,3.055788,,1,,Europe/Paris,,OIF, +OIF:SA:12:3035,1,"Châtelet",48.38364,2.943948,,1,,Europe/Paris,,OIF, +OIF:SA:12:3037,1,"Cimetière",48.386319,3.041008,,1,,Europe/Paris,,OIF, +OIF:SA:12:3040,1,"Square Dropsy",48.382574,2.790088,,1,,Europe/Paris,,OIF, +OIF:SA:12:3042,1,"Clos Dion",48.394791,2.954776,,1,,Europe/Paris,,OIF, +OIF:SA:12:3043,1,"Croix de la Mission",48.385185,3.023644,,1,,Europe/Paris,,OIF, +OIF:SA:12:3050,1,"Bois Prieur",48.382469,2.78454,,1,,Europe/Paris,,OIF, +OIF:SA:12:3051,1,"Les Courreaux",48.412222,2.936919,,1,,Europe/Paris,,OIF, +OIF:SA:12:3053,1,"Couture",48.363603,2.977959,,1,,Europe/Paris,,OIF, +OIF:SA:12:3055,1,"Croix de Six",48.370065,2.957453,,1,,Europe/Paris,,OIF, +OIF:SA:12:3058,1,"Grande Garenne",48.374796,2.943298,,1,,Europe/Paris,,OIF, +OIF:SA:12:3061,1,"Église",48.364686,2.985447,,1,,Europe/Paris,,OIF, +OIF:SA:12:3063,1,"Église",48.348306,2.975317,,1,,Europe/Paris,,OIF, +OIF:SA:12:3065,1,"Mairie",48.38652,3.034815,,1,,Europe/Paris,,OIF, +OIF:SA:12:3067,1,"Église",48.387225,2.95825,,1,,Europe/Paris,,OIF, +OIF:SA:12:3070,1,"École",48.345367,3.019905,,1,,Europe/Paris,,OIF, +OIF:SA:12:3071,1,"Église",48.374745,2.925909,,1,,Europe/Paris,,OIF, +OIF:SA:12:3073,1,"École Esmans",48.349619,2.973478,,1,,Europe/Paris,,OIF, +OIF:SA:12:3075,1,"Église",48.351294,3.134102,,1,,Europe/Paris,,OIF, +OIF:SA:12:3078,1,"La Faïencerie",48.384356,2.95414,,1,,Europe/Paris,,OIF, +OIF:SA:12:3080,1,"Château",48.343682,3.023673,,1,,Europe/Paris,,OIF, +OIF:SA:12:3081,1,"Bourg",48.418056,2.959207,,1,,Europe/Paris,,OIF, +OIF:SA:12:3087,1,"Gardeloup",48.415914,2.985828,,1,,Europe/Paris,,OIF, +OIF:SA:12:3091,1,"Grand Buisson",48.418054,3.004282,,1,,Europe/Paris,,OIF, +OIF:SA:12:3093,1,"Grandes Berges",48.394047,2.952573,,1,,Europe/Paris,,OIF, +OIF:SA:12:3095,1,"Grand Fossard",48.360262,2.969034,,1,,Europe/Paris,,OIF, +OIF:SA:12:3105,1,"Lycée Professionnel F. Tristan",48.377911,2.945161,,1,,Europe/Paris,,OIF, +OIF:SA:12:3107,1,"Lycée Professionnel Gustave Eiffel",48.372967,2.927857,,1,,Europe/Paris,,OIF, +OIF:SA:12:3111,1,"La Morelle",48.425027,2.981623,,1,,Europe/Paris,,OIF, +OIF:SA:12:3113,1,"Mairie",48.344012,3.020218,,1,,Europe/Paris,,OIF, +OIF:SA:12:3115,1,"La Roche",48.387794,2.886033,,1,,Europe/Paris,,OIF, +OIF:SA:12:3117,1,"Bourg",48.424158,2.996539,,1,,Europe/Paris,,OIF, +OIF:SA:12:3120,1,"Moulin de Nanchon",48.386664,2.841241,,1,,Europe/Paris,,OIF, +OIF:SA:12:3123,1,"Léo Lagrange",48.378964,2.950061,,1,,Europe/Paris,,OIF, +OIF:SA:12:3125,1,"Lepesme",48.382211,2.953797,,1,,Europe/Paris,,OIF, +OIF:SA:12:3127,1,"Rue de la Libération",48.383643,2.914604,,1,,Europe/Paris,,OIF, +OIF:SA:12:3135,1,"Zone Industrielle Clomarts",48.385728,2.966736,,1,,Europe/Paris,,OIF, +OIF:SA:12:3141,1,"Mairie",48.375865,2.92939,,1,,Europe/Paris,,OIF, +OIF:SA:12:3143,1,"Maison Rouge",48.373399,2.920044,,1,,Europe/Paris,,OIF, +OIF:SA:12:3145,1,"Maulny 2",48.434702,2.99603,,1,,Europe/Paris,,OIF, +OIF:SA:12:3153,1,"Place des Érables",48.359499,3.088909,,1,,Europe/Paris,,OIF, +OIF:SA:12:3155,1,"Marie Louise",48.391998,2.954169,,1,,Europe/Paris,,OIF, +OIF:SA:12:3158,1,"Molière",48.396891,2.955476,,1,,Europe/Paris,,OIF, +OIF:SA:12:3159,1,"Château",48.385163,2.952692,,1,,Europe/Paris,,OIF, +OIF:SA:12:3161,1,"Montgelard",48.379936,2.882259,,1,,Europe/Paris,,OIF, +OIF:SA:12:3163,1,"Montmachoux",48.320324,2.991147,,1,,Europe/Paris,,OIF, +OIF:SA:12:3165,1,"Nanon",48.415368,2.980545,,1,,Europe/Paris,,OIF, +OIF:SA:12:3169,1,"Clinique",48.387192,2.951649,,1,,Europe/Paris,,OIF, +OIF:SA:12:3170,1,"Route de Champagne",48.406489,2.791233,,1,,Europe/Paris,,OIF, +OIF:SA:12:3171,1,"Parc de la Gramine",48.396992,2.956773,,1,,Europe/Paris,,OIF, +OIF:SA:12:3173,1,"Pajol",48.39868,2.965758,,1,,Europe/Paris,,OIF, +OIF:SA:12:3176,1,"Petites Maisons",48.414456,2.94047,,1,,Europe/Paris,,OIF, +OIF:SA:12:3177,1,"Piscine",48.402084,2.967217,,1,,Europe/Paris,,OIF, +OIF:SA:12:3183,1,"Poterie",48.388541,2.955033,,1,,Europe/Paris,,OIF, +OIF:SA:12:3187,1,"Petit Buisson",48.416429,2.99272,,1,,Europe/Paris,,OIF, +OIF:SA:12:3191,1,"Petit Fossard",48.362115,2.957062,,1,,Europe/Paris,,OIF, +OIF:SA:12:3193,1,"Quai de Seine",48.389402,2.957945,,1,,Europe/Paris,,OIF, +OIF:SA:12:3195,1,"Route de Cannes",48.37449,2.958106,,1,,Europe/Paris,,OIF, +OIF:SA:12:3197,1,"Rue des Chesnois",48.395348,2.956578,,1,,Europe/Paris,,OIF, +OIF:SA:12:3201,1,"Rue des Dames",48.386987,2.94782,,1,,Europe/Paris,,OIF, +OIF:SA:12:3203,1,"Rue Désiré Thoisson",48.365288,2.979794,,1,,Europe/Paris,,OIF, +OIF:SA:12:3205,1,"Rue du Port",48.365213,2.974599,,1,,Europe/Paris,,OIF, +OIF:SA:12:3207,1,"Rue de Provins",48.390061,2.961625,,1,,Europe/Paris,,OIF, +OIF:SA:12:3209,1,"École de Police",48.358908,2.984951,,1,,Europe/Paris,,OIF, +OIF:SA:12:3211,1,"Rue de Varennes",48.384136,2.947996,,1,,Europe/Paris,,OIF, +OIF:SA:12:3216,1,"Rustic",48.386161,2.954512,,1,,Europe/Paris,,OIF, +OIF:SA:12:3217,1,"Sept Grés",48.389363,2.934997,,1,,Europe/Paris,,OIF, +OIF:SA:12:3220,1,"Le Montoir",48.395265,2.853591,,1,,Europe/Paris,,OIF, +OIF:SA:12:3221,1,"Tavers",48.376546,2.874599,,1,,Europe/Paris,,OIF, +OIF:SA:12:3227,1,"Saint-Donain",48.380562,3.017665,,1,,Europe/Paris,,OIF, +OIF:SA:12:3233,1,"Saint-Germain",48.399117,2.996831,,1,,Europe/Paris,,OIF, +OIF:SA:12:3235,1,"Saint-Maurice",48.388277,2.960747,,1,,Europe/Paris,,OIF, +OIF:SA:12:3237,1,"Saint-Nicolas",48.389861,2.958747,,1,,Europe/Paris,,OIF, +OIF:SA:12:3241,1,"Centre Commercial",48.400879,2.990284,,1,,Europe/Paris,,OIF, +OIF:SA:12:3243,1,"Saint-Pierre Moulin",48.399108,2.987103,,1,,Europe/Paris,,OIF, +OIF:SA:12:3245,1,"Mûriers",48.399203,2.983728,,1,,Europe/Paris,,OIF, +OIF:SA:12:3251,1,"Tréchy",48.403097,3.020186,,1,,Europe/Paris,,OIF, +OIF:SA:12:3253,1,"De Gaulle",48.381292,2.949393,,1,,Europe/Paris,,OIF, +OIF:SA:12:3261,1,"ZAC Sucrerie",48.376253,2.957,,1,,Europe/Paris,,OIF, +OIF:SA:12:3263,1,"Zone Artisanale",48.384933,2.92568,,1,,Europe/Paris,,OIF, +OIF:SA:12:3273,1,"Place de la Division Leclerc",48.372085,2.821466,,1,,Europe/Paris,,OIF, +OIF:SA:12:3276,1,"Rue Grande",48.383444,2.811138,,1,,Europe/Paris,,OIF, +OIF:SA:12:3277,1,"École Maternelle",48.386171,2.813943,,1,,Europe/Paris,,OIF, +OIF:SA:12:3282,1,"Église",48.389274,2.807991,,1,,Europe/Paris,,OIF, +OIF:SA:12:3285,1,"Mairie",48.394489,2.804481,,1,,Europe/Paris,,OIF, +OIF:SA:12:3291,1,"L'Ouche aux Oiseaux",48.399308,2.799366,,1,,Europe/Paris,,OIF, +OIF:SA:12:3295,1,"Monument",48.401245,2.798897,,1,,Europe/Paris,,OIF, +OIF:SA:12:3301,1,"Mairie",48.409354,2.78467,,1,,Europe/Paris,,OIF, +OIF:SA:12:3303,1,"Chantoiseau",48.405629,2.77917,,1,,Europe/Paris,,OIF, +OIF:SA:12:3305,1,"By",48.396619,2.783418,,1,,Europe/Paris,,OIF, +OIF:SA:12:3307,1,"Champs de Mars",48.374633,2.816822,,1,,Europe/Paris,,OIF, +OIF:SA:12:3311,1,"Grinsson",48.377649,2.788392,,1,,Europe/Paris,,OIF, +OIF:SA:12:3313,1,"Porte Nadon",48.377964,2.782328,,1,,Europe/Paris,,OIF, +OIF:SA:12:3315,1,"Stade",48.403383,2.686565,,1,,Europe/Paris,,OIF, +OIF:SA:12:3323,1,"François 1er",48.412365,2.696666,,1,,Europe/Paris,,OIF, +OIF:SA:12:3327,1,"Cour des Adieux",48.40233,2.696799,,1,,Europe/Paris,,OIF, +OIF:SA:12:3335,1,"Rudignon",48.335166,2.942024,,1,,Europe/Paris,,OIF, +OIF:SA:12:3337,1,"Noisy",48.335811,2.931911,,1,,Europe/Paris,,OIF, +OIF:SA:12:3341,1,"École",48.310967,2.923247,,1,,Europe/Paris,,OIF, +OIF:SA:12:3345,1,"Villemaréchal",48.26723,2.86894,,1,,Europe/Paris,,OIF, +OIF:SA:12:3347,1,"Saint-Ange",48.265867,2.900028,,1,,Europe/Paris,,OIF, +OIF:SA:12:3351,1,"Mairie",48.315483,2.902388,,1,,Europe/Paris,,OIF, +OIF:SA:12:3353,1,"Place Berne Bellecourt",48.176783,2.871704,,1,,Europe/Paris,,OIF, +OIF:SA:12:3355,1,"Bichereau",48.307775,2.943473,,1,,Europe/Paris,,OIF, +OIF:SA:12:3357,1,"Mairie",48.294573,2.941736,,1,,Europe/Paris,,OIF, +OIF:SA:12:3365,1,"Le Bouloy",48.255817,3.017642,,1,,Europe/Paris,,OIF, +OIF:SA:12:3367,1,"Lichiot",48.286743,2.959246,,1,,Europe/Paris,,OIF, +OIF:SA:12:3371,1,"Monument",48.281103,2.967964,,1,,Europe/Paris,,OIF, +OIF:SA:12:3373,1,"Mairie",48.25351,2.943869,,1,,Europe/Paris,,OIF, +OIF:SA:12:3375,1,"Villeflambeau",48.252561,2.927498,,1,,Europe/Paris,,OIF, +OIF:SA:12:3377,1,"Mairie",48.237273,2.901458,,1,,Europe/Paris,,OIF, +OIF:SA:12:3381,1,"Villenouette",48.233714,2.919108,,1,,Europe/Paris,,OIF, +OIF:SA:12:3383,1,"Mairie",48.226864,2.937132,,1,,Europe/Paris,,OIF, +OIF:SA:12:3385,1,"Église",48.206997,2.94087,,1,,Europe/Paris,,OIF, +OIF:SA:12:3387,1,"Passy",48.203037,2.909746,,1,,Europe/Paris,,OIF, +OIF:SA:12:3391,1,"Les Bordes",48.183953,2.895917,,1,,Europe/Paris,,OIF, +OIF:SA:12:3393,1,"La Ville Saint-Jacques",48.342503,2.894635,,1,,Europe/Paris,,OIF, +OIF:SA:12:3397,1,"Centre",48.327874,2.847595,,1,,Europe/Paris,,OIF, +OIF:SA:12:3403,1,"Rebours",48.312444,2.813547,,1,,Europe/Paris,,OIF, +OIF:SA:12:3417,1,"Centre Commercial du Bréau",48.364205,2.953707,,1,,Europe/Paris,,OIF, +OIF:SA:12:3431,1,"Les Rosiers",48.39437,2.947454,,1,,Europe/Paris,,OIF, +OIF:SA:12:3445,1,"La Celle",48.391241,2.837812,,1,,Europe/Paris,,OIF, +OIF:SA:12:3451,1,"Heurtebise",48.426044,2.991146,,1,,Europe/Paris,,OIF, +OIF:SA:12:3453,1,"Launoy",48.266646,3.004574,,1,,Europe/Paris,,OIF, +OIF:SA:12:3455,1,"Bréau / Cinéma",48.362464,2.950509,,1,,Europe/Paris,,OIF, +OIF:SA:12:3457,1,"Collège Fernand Gregh",48.398317,2.807609,,1,,Europe/Paris,,OIF, +OIF:SA:12:3483,1,"Charmois",48.36081,2.826421,,1,,Europe/Paris,,OIF, +OIF:SA:12:3487,1,"Carrefour Cateline",48.355282,2.822848,,1,,Europe/Paris,,OIF, +OIF:SA:12:3491,1,"Petit Jardin",48.369799,2.826903,,1,,Europe/Paris,,OIF, +OIF:SA:12:3493,1,"Ravanne",48.364107,2.827147,,1,,Europe/Paris,,OIF, +OIF:SA:12:3497,1,"Villette",48.351217,2.813105,,1,,Europe/Paris,,OIF, +OIF:SA:12:3502,1,"Mairie",48.35368,2.818962,,1,,Europe/Paris,,OIF, +OIF:SA:12:3515,1,"Collège Sisley",48.367323,2.815773,,1,,Europe/Paris,,OIF, +OIF:SA:12:3521,1,"Piscine du Grand Jardin",48.374115,2.820317,,1,,Europe/Paris,,OIF, +OIF:SA:12:3531,1,"Rue du Port",48.389335,2.847192,,1,,Europe/Paris,,OIF, +OIF:SA:12:3533,1,"Cité",48.388241,2.820907,,1,,Europe/Paris,,OIF, +OIF:SA:12:3535,1,"Rue des Trop Chères",48.390575,2.811999,,1,,Europe/Paris,,OIF, +OIF:SA:12:3538,1,"École Benoit Plassard",48.386674,2.81064,,1,,Europe/Paris,,OIF, +OIF:SA:12:3551,1,"Rue du 4 Septembre",48.407254,2.789032,,1,,Europe/Paris,,OIF, +OIF:SA:12:3561,1,"Route de Bougogne",48.38559,2.781178,,1,,Europe/Paris,,OIF, +OIF:SA:12:3563,1,"8 Mai 1945",48.376746,2.799492,,1,,Europe/Paris,,OIF, +OIF:SA:12:3571,1,"Cité Montezin",48.381496,2.788543,,1,,Europe/Paris,,OIF, +OIF:SA:12:3573,1,"Léon Richet",48.383433,2.788806,,1,,Europe/Paris,,OIF, +OIF:SA:12:3575,1,"Libération",48.387705,2.783592,,1,,Europe/Paris,,OIF, +OIF:SA:12:3583,1,"Basse Roche",48.389553,2.879133,,1,,Europe/Paris,,OIF, +OIF:SA:12:3591,1,"Le Chesnoy",48.387591,2.859486,,1,,Europe/Paris,,OIF, +OIF:SA:12:3593,1,"Poste / EDF",48.387519,2.865715,,1,,Europe/Paris,,OIF, +OIF:SA:12:3595,1,"Marangis",48.400024,2.871971,,1,,Europe/Paris,,OIF, +OIF:SA:12:3603,1,"La Thurelle",48.400039,2.833538,,1,,Europe/Paris,,OIF, +OIF:SA:12:3613,1,"Pilliers",48.326297,2.86379,,1,,Europe/Paris,,OIF, +OIF:SA:12:3615,1,"La Roche",48.325214,2.848732,,1,,Europe/Paris,,OIF, +OIF:SA:12:3637,1,"Place du 11 Novembre",48.378672,2.792425,,1,,Europe/Paris,,OIF, +OIF:SA:12:3645,1,"Le Puits",48.426191,2.988986,,1,,Europe/Paris,,OIF, +OIF:SA:12:3651,1,"Lycée Uruguay",48.40999,2.736048,,1,,Europe/Paris,,OIF, +OIF:SA:12:3655,1,"Rue de la Garenne",48.387545,2.900764,,1,,Europe/Paris,,OIF, +OIF:SA:12:3657,1,"Bois des Chevrons",48.195949,2.90059,,1,,Europe/Paris,,OIF, +OIF:SA:12:3661,1,"Grand Creilly",48.252775,2.897256,,1,,Europe/Paris,,OIF, +OIF:SA:12:3667,1,"Avenue de Fontainebleau",48.374279,2.808774,,1,,Europe/Paris,,OIF, +OIF:SA:12:3671,1,"Rue des Sablons",48.344947,3.016447,,1,,Europe/Paris,,OIF, +OIF:SA:12:3673,1,"Parédes",48.399485,2.958058,,1,,Europe/Paris,,OIF, +OIF:SA:12:3675,1,"Liberté",48.399453,2.952921,,1,,Europe/Paris,,OIF, +OIF:SA:12:3681,1,"Hameau Saint-Jean",48.401014,2.968898,,1,,Europe/Paris,,OIF, +OIF:SA:12:3702,1,"Mairie",48.281919,2.992378,,1,,Europe/Paris,,OIF, +OIF:SA:12:3725,1,"Église",48.299387,2.938949,,1,,Europe/Paris,,OIF, +OIF:SA:12:3741,1,"Mairie",48.384676,2.956465,,1,,Europe/Paris,,OIF, +OIF:SA:12:3891,1,"Salle des Fêtes",48.387412,2.900405,,1,,Europe/Paris,,OIF, +OIF:SA:12:3905,1,"Chemin des Ânes",48.424202,3.0038,,1,,Europe/Paris,,OIF, +OIF:SA:12:3915,1,"Pont",48.389547,2.808324,,1,,Europe/Paris,,OIF, +OIF:SA:12:3917,1,"Place Greffuhle / Georges Clémenceau",48.410515,2.785941,,1,,Europe/Paris,,OIF, +OIF:SA:12:3921,1,"Les Coudraies",48.387028,2.860776,,1,,Europe/Paris,,OIF, +OIF:SA:12:3923,1,"École",48.253246,2.945354,,1,,Europe/Paris,,OIF, +OIF:SA:12:3935,1,"Place Schneider",48.397158,2.798777,,1,,Europe/Paris,,OIF, +OIF:SA:12:3937,1,"Route de Fontainebleau",48.302469,2.824132,,1,,Europe/Paris,,OIF, +OIF:SA:12:3975,1,"Route de Fontainebleau",48.374207,2.808578,,1,,Europe/Paris,,OIF, +OIF:SA:12:3977,1,"Grande Plaine",48.361371,2.991444,,1,,Europe/Paris,,OIF, +OIF:SA:12:3982,1,"Casanova",48.372614,2.941951,,1,,Europe/Paris,,OIF, +OIF:SA:12:3985,1,"Marais du Saule",48.37121,2.940518,,1,,Europe/Paris,,OIF, +OIF:SA:12:3992,1,"Route Chevinois",48.339331,3.028114,,1,,Europe/Paris,,OIF, +OIF:SA:12:4003,1,"Nelson Mandela",48.372671,2.941223,,1,,Europe/Paris,,OIF, +OIF:SA:12:4006,1,"Fresnes Montma",48.329221,3.000737,,1,,Europe/Paris,,OIF, +OIF:SA:12:4014,1,"Collège",48.236518,2.905171,,1,,Europe/Paris,,OIF, +OIF:SA:12:4021,1,"Zone d'Activités Tournesols",48.358689,2.983828,,1,,Europe/Paris,,OIF, +OIF:SA:12:4023,1,"Clos Mellot",48.433636,2.9993,,1,,Europe/Paris,,OIF, +OIF:SA:12:4031,1,"Bois de Châtillon",48.406577,3.018578,,1,,Europe/Paris,,OIF, +OIF:SA:12:4034,1,"Nodet",48.381153,2.954467,,1,,Europe/Paris,,OIF, +OIF:SA:12:4040,1,"Jean Paul II",48.38654,2.957648,,1,,Europe/Paris,,OIF, +OIF:SA:12:4050,1,"Hameau de Chevinois",48.337025,3.031974,,1,,Europe/Paris,,OIF, +OIF:SA:12:4982,1,"Église Saint-François",48.391008,2.80256,,1,,Europe/Paris,,OIF, +OIF:SA:12:4984,1,"La Madeleine",48.368702,2.835549,,1,,Europe/Paris,,OIF, +OIF:SA:12:4986,1,"Avenue de Sens",48.370194,2.829113,,1,,Europe/Paris,,OIF, +OIF:SA:12:4987,1,"Frédéric Mistral",48.390804,2.803607,,1,,Europe/Paris,,OIF, +OIF:SA:12:4992,1,"Rue de Moret",48.405257,2.777234,,1,,Europe/Paris,,OIF, +OIF:SA:12:4994,1,"Halage",48.357105,3.108099,,1,,Europe/Paris,,OIF, +OIF:SA:12:4999,1,"Rue des Fosses",48.373403,2.814601,,1,,Europe/Paris,,OIF, +OIF:SA:12:5000,1,"Place Samois",48.373812,2.814141,,1,,Europe/Paris,,OIF, +OIF:SA:12:5002,1,"ZAE des Renardiers",48.368345,2.840255,,1,,Europe/Paris,,OIF, +OIF:SA:12:5003,1,"Volta Site EDF",48.374661,2.841152,,1,,Europe/Paris,,OIF, +OIF:SA:12:5004,1,"Gare de Saint-Mammès - Port de la Celle",48.38269,2.811961,,1,,Europe/Paris,,OIF, +OIF:SA:12:5006,1,"Pierre de Coubertin",48.398072,2.805002,,1,,Europe/Paris,,OIF, +OIF:SA:12:5014,1,"Chemin des Moules",48.384269,2.895734,,1,,Europe/Paris,,OIF, +OIF:SA:12:5050,1,"Croix de Saint-Roch",48.363176,2.988619,,1,,Europe/Paris,,OIF, +OIF:SA:12:5051,1,"Bray",48.370766,2.986703,,1,,Europe/Paris,,OIF, +OIF:SA:12:5052,1,"Merlange",48.410931,2.975622,,1,,Europe/Paris,,OIF, +OIF:SA:13:1,1,"Aristide Briand",48.702739,2.545099,,1,,Europe/Paris,,OIF, +OIF:SA:13:100,1,"Hôpital",48.694343,2.606368,,1,,Europe/Paris,,OIF, +OIF:SA:13:101,1,"Église",48.725327,2.572361,,1,,Europe/Paris,,OIF, +OIF:SA:13:102,1,"Train des Roses",48.698105,2.614576,,1,,Europe/Paris,,OIF, +OIF:SA:13:104,1,"Erik Satie",48.682376,2.60612,,1,,Europe/Paris,,OIF, +OIF:SA:13:105,1,"Les Étards",48.657099,2.750968,,1,,Europe/Paris,,OIF, +OIF:SA:13:108,1,"Rue Foreau",48.727412,2.535762,,1,,Europe/Paris,,OIF, +OIF:SA:13:11,1,"Armainvilliers",48.746342,2.603988,,1,,Europe/Paris,,OIF, +OIF:SA:13:110,1,"Place des Fêtes",48.691198,2.60694,,1,,Europe/Paris,,OIF, +OIF:SA:13:119,1,"Georges Clémenceau",48.697945,2.605352,,1,,Europe/Paris,,OIF, +OIF:SA:13:12,1,"Avenue de Choisy",48.774686,2.48148,,1,,Europe/Paris,,OIF, +OIF:SA:13:123,1,"Rendez Vous Château",48.693407,2.610702,,1,,Europe/Paris,,OIF, +OIF:SA:13:124,1,"Gros Chêne",48.733831,2.520769,,1,,Europe/Paris,,OIF, +OIF:SA:13:126,1,"Graviers",48.71916,2.572449,,1,,Europe/Paris,,OIF, +OIF:SA:13:127,1,"Gros Bois",48.729648,2.54183,,1,,Europe/Paris,,OIF, +OIF:SA:13:129,1,"Les Sablons",48.63331,2.804572,,1,,Europe/Paris,,OIF, +OIF:SA:13:130,1,"Gymnase",48.68693,2.601945,,1,,Europe/Paris,,OIF, +OIF:SA:13:134,1,"Les Hameaux",48.840089,2.621413,,1,,Europe/Paris,,OIF, +OIF:SA:13:1347,1,"Deux Biches",48.78004,2.475833,,1,,Europe/Paris,,OIF, +OIF:SA:13:1349,1,"Colonel Fabien",48.771049,2.484554,,1,,Europe/Paris,,OIF, +OIF:SA:13:1351,1,"Regard",48.776723,2.479262,,1,,Europe/Paris,,OIF, +OIF:SA:13:1353,1,"Z.I Charles de Gaulle",48.701596,2.622012,,1,,Europe/Paris,,OIF, +OIF:SA:13:14,1,"Avenue du Parc",48.738198,2.553469,,1,,Europe/Paris,,OIF, +OIF:SA:13:145,1,"Mairie",48.725582,2.570555,,1,,Europe/Paris,,OIF, +OIF:SA:13:146,1,"Mairie",48.715987,2.587987,,1,,Europe/Paris,,OIF, +OIF:SA:13:148,1,"Mairie",48.658216,2.716737,,1,,Europe/Paris,,OIF, +OIF:SA:13:150,1,"Mairie",48.722065,2.534548,,1,,Europe/Paris,,OIF, +OIF:SA:13:152,1,"Hyvernaux",48.732111,2.603276,,1,,Europe/Paris,,OIF, +OIF:SA:13:154,1,"Jules Ferry",48.68857,2.611104,,1,,Europe/Paris,,OIF, +OIF:SA:13:155,1,"Juliette Savar",48.780099,2.466478,,1,,Europe/Paris,,OIF, +OIF:SA:13:161,1,"Maréchal Joffre",48.677963,2.663951,,1,,Europe/Paris,,OIF, +OIF:SA:13:163,1,"La Burelle",48.656408,2.703273,,1,,Europe/Paris,,OIF, +OIF:SA:13:165,1,"La Côte",48.661451,2.698944,,1,,Europe/Paris,,OIF, +OIF:SA:13:169,1,"Le Pont",48.655845,2.70018,,1,,Europe/Paris,,OIF, +OIF:SA:13:171,1,"Lycée Jacques Prévert",48.655402,2.564198,,1,,Europe/Paris,,OIF, +OIF:SA:13:172,1,"Collège les Hyverneaux",48.747632,2.623234,,1,,Europe/Paris,,OIF, +OIF:SA:13:175,1,"Libération",48.719959,2.566346,,1,,Europe/Paris,,OIF, +OIF:SA:13:179,1,"Lycée Agricole RD 319",48.681762,2.643891,,1,,Europe/Paris,,OIF, +OIF:SA:13:182,1,"Parking Lycée Blaise Pascal",48.698277,2.595349,,1,,Europe/Paris,,OIF, +OIF:SA:13:184,1,"Maison Pour Tous",48.689712,2.611042,,1,,Europe/Paris,,OIF, +OIF:SA:13:185,1,"Le Marais",48.72153,2.571194,,1,,Europe/Paris,,OIF, +OIF:SA:13:188,1,"Moulin Massin",48.686648,2.621982,,1,,Europe/Paris,,OIF, +OIF:SA:13:191,1,"Millet",48.687756,2.624635,,1,,Europe/Paris,,OIF, +OIF:SA:13:194,1,"Moulin Fleuri",48.693786,2.601939,,1,,Europe/Paris,,OIF, +OIF:SA:13:197,1,"Les Myosotis",48.690733,2.615512,,1,,Europe/Paris,,OIF, +OIF:SA:13:20,1,"Gambetta",48.692353,2.612274,,1,,Europe/Paris,,OIF, +OIF:SA:13:200,1,"Maison de la Nature",48.696962,2.570773,,1,,Europe/Paris,,OIF, +OIF:SA:13:204,1,"Nogent sur Avon",48.644493,2.780398,,1,,Europe/Paris,,OIF, +OIF:SA:13:207,1,"Rue des Orfèvres",48.735276,2.548918,,1,,Europe/Paris,,OIF, +OIF:SA:13:209,1,"Ozouer",48.658458,2.771928,,1,,Europe/Paris,,OIF, +OIF:SA:13:212,1,"Paul Casalis",48.780989,2.473663,,1,,Europe/Paris,,OIF, +OIF:SA:13:214,1,"Pierre Guérin",48.712924,2.582892,,1,,Europe/Paris,,OIF, +OIF:SA:13:218,1,"Centre Commercial",48.737679,2.605017,,1,,Europe/Paris,,OIF, +OIF:SA:13:220,1,"Parc des Sports",48.688527,2.607456,,1,,Europe/Paris,,OIF, +OIF:SA:13:222,1,"École Pasteur",48.692838,2.617644,,1,,Europe/Paris,,OIF, +OIF:SA:13:223,1,"Pavé de Paris",48.744432,2.611702,,1,,Europe/Paris,,OIF, +OIF:SA:13:226,1,"Stade Lucien Destal",48.686028,2.612387,,1,,Europe/Paris,,OIF, +OIF:SA:13:23,1,"Belle Image",48.731143,2.545471,,1,,Europe/Paris,,OIF, +OIF:SA:13:230,1,"Rue de Pontault",48.748178,2.617433,,1,,Europe/Paris,,OIF, +OIF:SA:13:232,1,"Les Portes de Brie",48.685917,2.625141,,1,,Europe/Paris,,OIF, +OIF:SA:13:236,1,"Pré Fézard",48.731155,2.568332,,1,,Europe/Paris,,OIF, +OIF:SA:13:241,1,"Petit Grisy",48.678994,2.658056,,1,,Europe/Paris,,OIF, +OIF:SA:13:244,1,"Poste",48.692882,2.608533,,1,,Europe/Paris,,OIF, +OIF:SA:13:245,1,"Poste",48.715941,2.58545,,1,,Europe/Paris,,OIF, +OIF:SA:13:247,1,"Radio",48.713949,2.540037,,1,,Europe/Paris,,OIF, +OIF:SA:13:251,1,"Réveillon Écoles",48.733287,2.597728,,1,,Europe/Paris,,OIF, +OIF:SA:13:254,1,"Réveillon Plr",48.735251,2.595103,,1,,Europe/Paris,,OIF, +OIF:SA:13:255,1,"Romaine Vimont",48.756023,2.634023,,1,,Europe/Paris,,OIF, +OIF:SA:13:258,1,"Rond-Point des Bois",48.742808,2.556451,,1,,Europe/Paris,,OIF, +OIF:SA:13:260,1,"Rond-Point du Château",48.745072,2.613947,,1,,Europe/Paris,,OIF, +OIF:SA:13:264,1,"RN Santeny",48.716554,2.572394,,1,,Europe/Paris,,OIF, +OIF:SA:13:266,1,"RN",48.711999,2.580375,,1,,Europe/Paris,,OIF, +OIF:SA:13:269,1,"Place des Minimes",48.689646,2.608078,,1,,Europe/Paris,,OIF, +OIF:SA:13:27,1,"Bois d'Auteuil",48.716987,2.545812,,1,,Europe/Paris,,OIF, +OIF:SA:13:271,1,"Saussaye",48.736316,2.564978,,1,,Europe/Paris,,OIF, +OIF:SA:13:273,1,"Stade",48.741655,2.603686,,1,,Europe/Paris,,OIF, +OIF:SA:13:275,1,"Saint-Jacques",48.663947,2.56888,,1,,Europe/Paris,,OIF, +OIF:SA:13:278,1,"Tournelles de Pamphou",48.689924,2.623765,,1,,Europe/Paris,,OIF, +OIF:SA:13:282,1,"Tournebride",48.731021,2.524315,,1,,Europe/Paris,,OIF, +OIF:SA:13:284,1,"Tournelles / RD 319",48.688007,2.618023,,1,,Europe/Paris,,OIF, +OIF:SA:13:287,1,"Trianon",48.727794,2.530342,,1,,Europe/Paris,,OIF, +OIF:SA:13:291,1,"Victor Hugo",48.679995,2.609577,,1,,Europe/Paris,,OIF, +OIF:SA:13:297,1,"Village",48.68377,2.666352,,1,,Europe/Paris,,OIF, +OIF:SA:13:299,1,"Village",48.723811,2.573176,,1,,Europe/Paris,,OIF, +OIF:SA:13:300,1,"Villemeneux",48.677419,2.594428,,1,,Europe/Paris,,OIF, +OIF:SA:13:304,1,"Yverny",48.695959,2.603247,,1,,Europe/Paris,,OIF, +OIF:SA:13:31,1,"Lycée Blaise Pascal R.D. 319",48.701952,2.598267,,1,,Europe/Paris,,OIF, +OIF:SA:13:310,1,"ZI Galilée",48.701143,2.603074,,1,,Europe/Paris,,OIF, +OIF:SA:13:313,1,"CES Georges Brassens",48.692038,2.60375,,1,,Europe/Paris,,OIF, +OIF:SA:13:319,1,"Rue de Verdun",48.696679,2.614446,,1,,Europe/Paris,,OIF, +OIF:SA:13:326,1,"Haie Griselle",48.757857,2.502239,,1,,Europe/Paris,,OIF, +OIF:SA:13:327,1,"Z.I Pierre Marchande",48.704152,2.608891,,1,,Europe/Paris,,OIF, +OIF:SA:13:330,1,"Z.I Tubœuf Centre",48.703978,2.618268,,1,,Europe/Paris,,OIF, +OIF:SA:13:333,1,"Z.I Borde",48.702834,2.623177,,1,,Europe/Paris,,OIF, +OIF:SA:13:335,1,"Lycée Guillaume Budé",48.744353,2.511081,,1,,Europe/Paris,,OIF, +OIF:SA:13:338,1,"Lycée de Sucy",48.759189,2.526877,,1,,Europe/Paris,,OIF, +OIF:SA:13:35,1,"Z.I. Villemenon",48.700848,2.607358,,1,,Europe/Paris,,OIF, +OIF:SA:13:37,1,"La Butte aux Bergers",48.740592,2.561613,,1,,Europe/Paris,,OIF, +OIF:SA:13:386,1,"Bougainville (Lycée Agricole)",48.679666,2.646241,,1,,Europe/Paris,,OIF, +OIF:SA:13:387,1,"Grottes",48.713277,2.533351,,1,,Europe/Paris,,OIF, +OIF:SA:13:388,1,"Pigeonnier",48.709368,2.529513,,1,,Europe/Paris,,OIF, +OIF:SA:13:39,1,"Claude Bernard",48.689228,2.620548,,1,,Europe/Paris,,OIF, +OIF:SA:13:392,1,"Mardelles",48.711738,2.525875,,1,,Europe/Paris,,OIF, +OIF:SA:13:394,1,"Branly",48.705762,2.530851,,1,,Europe/Paris,,OIF, +OIF:SA:13:395,1,"Cimetière",48.697727,2.545907,,1,,Europe/Paris,,OIF, +OIF:SA:13:396,1,"Rue de l'Yerres",48.702385,2.536547,,1,,Europe/Paris,,OIF, +OIF:SA:13:397,1,"Roses",48.699774,2.542235,,1,,Europe/Paris,,OIF, +OIF:SA:13:408,1,"Closeaux",48.710257,2.524546,,1,,Europe/Paris,,OIF, +OIF:SA:13:410,1,"La Chasse",48.713796,2.537374,,1,,Europe/Paris,,OIF, +OIF:SA:13:413,1,"Orangerie",48.711838,2.530833,,1,,Europe/Paris,,OIF, +OIF:SA:13:414,1,"Pablo Picasso",48.657281,2.562694,,1,,Europe/Paris,,OIF, +OIF:SA:13:416,1,"Collège Simone Veil",48.705241,2.545397,,1,,Europe/Paris,,OIF, +OIF:SA:13:418,1,"Petit Bicêtre",48.691478,2.613097,,1,,Europe/Paris,,OIF, +OIF:SA:13:43,1,"Centre Commercial",48.72884,2.577295,,1,,Europe/Paris,,OIF, +OIF:SA:13:433,1,"Lycée René Cassin",48.841178,2.616092,,1,,Europe/Paris,,OIF, +OIF:SA:13:438,1,"Clos Santenois",48.73539,2.560157,,1,,Europe/Paris,,OIF, +OIF:SA:13:45,1,"Cèdres Bleus",48.690759,2.624312,,1,,Europe/Paris,,OIF, +OIF:SA:13:456,1,"Gustave Eiffel",48.70284,2.600811,,1,,Europe/Paris,,OIF, +OIF:SA:13:457,1,"Parking Hyper U",48.703977,2.598814,,1,,Europe/Paris,,OIF, +OIF:SA:13:459,1,"Beau / Mendès France",48.692132,2.601519,,1,,Europe/Paris,,OIF, +OIF:SA:13:46,1,"Lady Sylvia",48.699457,2.549017,,1,,Europe/Paris,,OIF, +OIF:SA:13:461,1,"Folle Avoine",48.691334,2.599103,,1,,Europe/Paris,,OIF, +OIF:SA:13:463,1,"Chemin de Varennes",48.690401,2.598861,,1,,Europe/Paris,,OIF, +OIF:SA:13:465,1,"Château d'Eau",48.690133,2.599742,,1,,Europe/Paris,,OIF, +OIF:SA:13:468,1,"Mairie",48.695005,2.611518,,1,,Europe/Paris,,OIF, +OIF:SA:13:469,1,"Verdun / Pasteur",48.695872,2.613668,,1,,Europe/Paris,,OIF, +OIF:SA:13:470,1,"Centre Commercial Pasteur",48.692656,2.617842,,1,,Europe/Paris,,OIF, +OIF:SA:13:471,1,"Résidence du Parc",48.691021,2.616263,,1,,Europe/Paris,,OIF, +OIF:SA:13:475,1,"Centre Commercial des Quatre Vents",48.696619,2.607331,,1,,Europe/Paris,,OIF, +OIF:SA:13:480,1,"Grand Noyer",48.685226,2.603457,,1,,Europe/Paris,,OIF, +OIF:SA:13:481,1,"Berlioz",48.684283,2.606941,,1,,Europe/Paris,,OIF, +OIF:SA:13:484,1,"Chopin",48.684675,2.608558,,1,,Europe/Paris,,OIF, +OIF:SA:13:485,1,"Chaperons 3",48.684163,2.615859,,1,,Europe/Paris,,OIF, +OIF:SA:13:486,1,"Les Grands Moulins",48.686511,2.619048,,1,,Europe/Paris,,OIF, +OIF:SA:13:489,1,"Val Clos",48.689133,2.616456,,1,,Europe/Paris,,OIF, +OIF:SA:13:49,1,"Collège Arthur Chaussy",48.689056,2.602058,,1,,Europe/Paris,,OIF, +OIF:SA:13:492,1,"La Fontaine",48.69008,2.611017,,1,,Europe/Paris,,OIF, +OIF:SA:13:493,1,"Trancart",48.688068,2.614346,,1,,Europe/Paris,,OIF, +OIF:SA:13:5,1,"Ambroise Paré",48.690501,2.627087,,1,,Europe/Paris,,OIF, +OIF:SA:13:507,1,"Chemin du Pâtis",48.716974,2.589873,,1,,Europe/Paris,,OIF, +OIF:SA:13:51,1,"CES Georges Brassens",48.738307,2.56466,,1,,Europe/Paris,,OIF, +OIF:SA:13:517,1,"Avenue du Parc",48.690144,2.614588,,1,,Europe/Paris,,OIF, +OIF:SA:13:521,1,"Place de Verdun",48.696801,2.614556,,1,,Europe/Paris,,OIF, +OIF:SA:13:53,1,"Collège la Guinette",48.721419,2.539546,,1,,Europe/Paris,,OIF, +OIF:SA:13:545,1,"Les Chênes",48.69148,2.618375,,1,,Europe/Paris,,OIF, +OIF:SA:13:554,1,"Forcilles",48.723011,2.616448,,1,,Europe/Paris,,OIF, +OIF:SA:13:56,1,"La Champagne",48.693965,2.556953,,1,,Europe/Paris,,OIF, +OIF:SA:13:560,1,"Clos Didier",48.685515,2.609252,,1,,Europe/Paris,,OIF, +OIF:SA:13:57,1,"Champs au Maigre",48.65726,2.710658,,1,,Europe/Paris,,OIF, +OIF:SA:13:59,1,"Chaperons 2",48.685514,2.615106,,1,,Europe/Paris,,OIF, +OIF:SA:13:60,1,"Mairie",48.664426,2.564625,,1,,Europe/Paris,,OIF, +OIF:SA:13:62,1,"Place Charlotte",48.741864,2.606595,,1,,Europe/Paris,,OIF, +OIF:SA:13:64,1,"Châtaigniers",48.691909,2.62087,,1,,Europe/Paris,,OIF, +OIF:SA:13:655,1,"Cimetière",48.724889,2.527463,,1,,Europe/Paris,,OIF, +OIF:SA:13:659,1,"Préfecture du Val de Marne",48.783893,2.452175,,1,,Europe/Paris,,OIF, +OIF:SA:13:660,1,"Centre Commercial Régional",48.779289,2.455114,,1,,Europe/Paris,,OIF, +OIF:SA:13:664,1,"Europarc",48.766771,2.470843,,1,,Europe/Paris,,OIF, +OIF:SA:13:666,1,"Stade de Bonneuil",48.765632,2.48155,,1,,Europe/Paris,,OIF, +OIF:SA:13:668,1,"Messidor/Libertés",48.768637,2.48673,,1,,Europe/Paris,,OIF, +OIF:SA:13:67,1,"Avenue du Châtelet",48.745826,2.595396,,1,,Europe/Paris,,OIF, +OIF:SA:13:671,1,"Jean-Baptiste Oudry",48.77545,2.458844,,1,,Europe/Paris,,OIF, +OIF:SA:13:672,1,"Z. A. de l'Ormois",48.696501,2.560281,,1,,Europe/Paris,,OIF, +OIF:SA:13:676,1,"CC Bonneuil",48.765152,2.491515,,1,,Europe/Paris,,OIF, +OIF:SA:13:7,1,"La Plaine",48.697382,2.551955,,1,,Europe/Paris,,OIF, +OIF:SA:13:73,1,"Chemin Vert",48.711915,2.538752,,1,,Europe/Paris,,OIF, +OIF:SA:13:75,1,"Clématites",48.69175,2.623299,,1,,Europe/Paris,,OIF, +OIF:SA:13:80,1,"Clos Saint-Yon",48.753661,2.627821,,1,,Europe/Paris,,OIF, +OIF:SA:13:83,1,"Coubert RN",48.670124,2.695849,,1,,Europe/Paris,,OIF, +OIF:SA:13:87,1,"Croix Rouge",48.706772,2.543669,,1,,Europe/Paris,,OIF, +OIF:SA:13:89,1,"Lt Dagorno",48.7263,2.531267,,1,,Europe/Paris,,OIF, +OIF:SA:13:91,1,"Dr Laënnec",48.688768,2.626202,,1,,Europe/Paris,,OIF, +OIF:SA:13:92,1,"Dr Roux",48.687143,2.621686,,1,,Europe/Paris,,OIF, +OIF:SA:13:97,1,"Église",48.636759,2.797453,,1,,Europe/Paris,,OIF, +OIF:SA:13:99,1,"Église",48.695441,2.55137,,1,,Europe/Paris,,OIF, +OIF:SA:14:10146,1,"Route d'Estouches",48.315021,2.086301,,1,,Europe/Paris,,OIF, +OIF:SA:14:10156,1,"Mairie",48.318619,2.087072,,1,,Europe/Paris,,OIF, +OIF:SA:14:10471,1,"Le Mesnil",48.403459,2.141055,,1,,Europe/Paris,,OIF, +OIF:SA:14:11130,1,"Rue de Paris",48.295317,2.201547,,1,,Europe/Paris,,OIF, +OIF:SA:14:14788,1,"Rue des Martyrs",48.452358,2.747289,,1,,Europe/Paris,,OIF, +OIF:SA:14:14845,1,"Mairie",48.330467,2.117603,,1,,Europe/Paris,,OIF, +OIF:SA:14:14923,1,"CFA",48.408001,2.142092,,1,,Europe/Paris,,OIF, +OIF:SA:14:14925,1,"Bouzonville Bourg",48.204978,2.229199,,1,,Europe/Paris,,OIF, +OIF:SA:14:14927,1,"Boigny D49",48.327665,2.112073,,1,,Europe/Paris,,OIF, +OIF:SA:14:14928,1,"Vallée Colleau",48.322772,2.099725,,1,,Europe/Paris,,OIF, +OIF:SA:14:14931,1,"Marie Curie",48.188714,2.247937,,1,,Europe/Paris,,OIF, +OIF:SA:14:14933,1,"Théatre",48.433565,2.155804,,1,,Europe/Paris,,OIF, +OIF:SA:14:14945,1,"Albert Bartholomé",48.828099,2.297742,,1,,Europe/Paris,,OIF, +OIF:SA:14:14948,1,"Fizeau",48.830402,2.30422,,1,,Europe/Paris,,OIF, +OIF:SA:14:14949,1,"Collège Modigliani",48.831777,2.306234,,1,,Europe/Paris,,OIF, +OIF:SA:14:14950,1,"Labrouste Vouillé",48.834151,2.308356,,1,,Europe/Paris,,OIF, +OIF:SA:14:14951,1,"Paul Barruel",48.83717,2.306067,,1,,Europe/Paris,,OIF, +OIF:SA:14:14952,1,"Bargue",48.838599,2.306774,,1,,Europe/Paris,,OIF, +OIF:SA:14:14953,1,"Procession",48.838033,2.308102,,1,,Europe/Paris,,OIF, +OIF:SA:14:14954,1,"Alleray",48.836948,2.306598,,1,,Europe/Paris,,OIF, +OIF:SA:14:14955,1,"Place d'Alleray",48.836513,2.305019,,1,,Europe/Paris,,OIF, +OIF:SA:14:14956,1,"Médiathèque Yourcenar",48.837276,2.301302,,1,,Europe/Paris,,OIF, +OIF:SA:14:14959,1,"Mairie du 15ème",48.840673,2.300619,,1,,Europe/Paris,,OIF, +OIF:SA:14:14960,1,"Square Saint-Lambert",48.841778,2.297895,,1,,Europe/Paris,,OIF, +OIF:SA:14:14962,1,"Rue des Entrepreneurs",48.842694,2.295307,,1,,Europe/Paris,,OIF, +OIF:SA:14:14964,1,"Javel (Avenue Félix Faure)",48.84263,2.291617,,1,,Europe/Paris,,OIF, +OIF:SA:14:14965,1,"Croix Nivert",48.840976,2.291414,,1,,Europe/Paris,,OIF, +OIF:SA:14:14966,1,"Lecourbe",48.838604,2.294534,,1,,Europe/Paris,,OIF, +OIF:SA:14:14969,1,"Morillons",48.832881,2.300556,,1,,Europe/Paris,,OIF, +OIF:SA:14:14970,1,"Maison des Associations",48.832807,2.294022,,1,,Europe/Paris,,OIF, +OIF:SA:14:14971,1,"Petite Ceinture",48.831683,2.29292,,1,,Europe/Paris,,OIF, +OIF:SA:14:14978,1,"Tour Eiffel",48.85608,2.293171,,1,,Europe/Paris,,OIF, +OIF:SA:14:14980,1,"La Brunette",48.455922,2.74235,,1,,Europe/Paris,,OIF, +OIF:SA:14:14982,1,"ZAC Saint-Fiacre",48.423918,2.73961,,1,,Europe/Paris,,OIF, +OIF:SA:14:14984,1,"Rosa Bonheur",48.416494,2.71953,,1,,Europe/Paris,,OIF, +OIF:SA:14:14986,1,"Lorraine",48.412695,2.710826,,1,,Europe/Paris,,OIF, +OIF:SA:14:14988,1,"Château de Fontainebleau",48.403318,2.698817,,1,,Europe/Paris,,OIF, +OIF:SA:14:14990,1,"Chemin des Ranges",48.462511,2.742543,,1,,Europe/Paris,,OIF, +OIF:SA:14:14991,1,"Rue Fouquet",48.44914,2.749649,,1,,Europe/Paris,,OIF, +OIF:SA:14:2150,1,"Place de l'Étape",48.408321,2.703896,,1,,Europe/Paris,,OIF, +OIF:SA:14:2156,1,"Hôpital Verdun",48.411974,2.696585,,1,,Europe/Paris,,OIF, +OIF:SA:14:2163,1,"Lucien Cézard",48.408676,2.704086,,1,,Europe/Paris,,OIF, +OIF:SA:14:2179,1,"Saint-Aspais",48.406066,2.689741,,1,,Europe/Paris,,OIF, +OIF:SA:14:2181,1,"Sous Préfecture",48.404324,2.690478,,1,,Europe/Paris,,OIF, +OIF:SA:14:291,1,"Lolainville",48.22632,2.22962,,1,,Europe/Paris,,OIF, +OIF:SA:14:293,1,"Grande Rue",48.261092,2.213101,,1,,Europe/Paris,,OIF, +OIF:SA:14:299,1,"D24",48.298547,2.159085,,1,,Europe/Paris,,OIF, +OIF:SA:14:303,1,"Collège Denis Poisson",48.166972,2.248336,,1,,Europe/Paris,,OIF, +OIF:SA:14:305,1,"Gare de Pithiviers",48.173415,2.242236,,1,,Europe/Paris,,OIF, +OIF:SA:14:307,1,"Lycée Duhamel du Monceau",48.181071,2.254397,,1,,Europe/Paris,,OIF, +OIF:SA:14:309,1,"Mail",48.17203,2.253752,,1,,Europe/Paris,,OIF, +OIF:SA:14:311,1,"Saint-Eloi",48.181672,2.251794,,1,,Europe/Paris,,OIF, +OIF:SA:14:313,1,"Bouzonville / D921",48.205503,2.238634,,1,,Europe/Paris,,OIF, +OIF:SA:14:4788,1,"Boulvard Briand Barbeau",48.444472,2.746423,,1,,Europe/Paris,,OIF, +OIF:SA:14:4791,1,"Chemin de l'Orée",48.446821,2.74836,,1,,Europe/Paris,,OIF, +OIF:SA:14:4796,1,"Les Plâtreries",48.436835,2.744958,,1,,Europe/Paris,,OIF, +OIF:SA:14:4798,1,"Les Sources",48.448335,2.753521,,1,,Europe/Paris,,OIF, +OIF:SA:14:4800,1,"Place la République",48.451528,2.751898,,1,,Europe/Paris,,OIF, +OIF:SA:14:4803,1,"Rue des Turlures",48.449365,2.744482,,1,,Europe/Paris,,OIF, +OIF:SA:14:4805,1,"Rue du Bas Samois",48.445198,2.746895,,1,,Europe/Paris,,OIF, +OIF:SA:14:516,1,"Laffemas",48.42595,2.743029,,1,,Europe/Paris,,OIF, +OIF:SA:14:8530,1,"Bierreville",48.369108,2.150224,,1,,Europe/Paris,,OIF, +OIF:SA:14:9243,1,"Bourg",48.300175,2.134419,,1,,Europe/Paris,,OIF, +OIF:SA:14:9297,1,"Centre Hospitalier",48.421187,2.151126,,1,,Europe/Paris,,OIF, +OIF:SA:14:9352,1,"Rotonde",48.433358,2.155276,,1,,Europe/Paris,,OIF, +OIF:SA:14:9366,1,"Salle des Fêtes",48.428994,2.158579,,1,,Europe/Paris,,OIF, +OIF:SA:15:10,1,"Ermitage Castors",48.889836,2.103537,,1,,Europe/Paris,,OIF, +OIF:SA:15:100,1,"Route de Versailles",48.876024,2.104348,,1,,Europe/Paris,,OIF, +OIF:SA:15:101,1,"La Source",48.876844,2.105203,,1,,Europe/Paris,,OIF, +OIF:SA:15:102,1,"Marly Soleil",48.87533,2.102989,,1,,Europe/Paris,,OIF, +OIF:SA:15:104,1,"Ancienne Mairie",48.879453,2.108707,,1,,Europe/Paris,,OIF, +OIF:SA:15:106,1,"Val André",48.883206,2.106764,,1,,Europe/Paris,,OIF, +OIF:SA:15:108,1,"Ermitage",48.887058,2.098016,,1,,Europe/Paris,,OIF, +OIF:SA:15:11,1,"Ermitage Pont",48.888253,2.102494,,1,,Europe/Paris,,OIF, +OIF:SA:15:111,1,"Les Écuyers",48.899045,2.090654,,1,,Europe/Paris,,OIF, +OIF:SA:15:113,1,"Jehan Alain",48.900741,2.08781,,1,,Europe/Paris,,OIF, +OIF:SA:15:115,1,"Mermoz",48.902191,2.084607,,1,,Europe/Paris,,OIF, +OIF:SA:15:117,1,"Square Forest",48.901778,2.077814,,1,,Europe/Paris,,OIF, +OIF:SA:15:119,1,"Christiane Frahier",48.902538,2.074777,,1,,Europe/Paris,,OIF, +OIF:SA:15:12,1,"Les Lampes",48.884299,2.100141,,1,,Europe/Paris,,OIF, +OIF:SA:15:121,1,"Grande Ceinture SNCF",48.901395,2.071981,,1,,Europe/Paris,,OIF, +OIF:SA:15:124,1,"École Normale",48.901023,2.068221,,1,,Europe/Paris,,OIF, +OIF:SA:15:125,1,"Pereire",48.901032,2.066159,,1,,Europe/Paris,,OIF, +OIF:SA:15:126,1,"Chemin Neuf",48.902735,2.050735,,1,,Europe/Paris,,OIF, +OIF:SA:15:128,1,"Georges Thill",48.901556,2.048185,,1,,Europe/Paris,,OIF, +OIF:SA:15:13,1,"Square Saint-Germain",48.883221,2.098756,,1,,Europe/Paris,,OIF, +OIF:SA:15:130,1,"Châtaigneraie",48.903512,2.045121,,1,,Europe/Paris,,OIF, +OIF:SA:15:132,1,"Croix Blanche",48.904555,2.041509,,1,,Europe/Paris,,OIF, +OIF:SA:15:133,1,"Place de la Mairie",48.905171,2.039856,,1,,Europe/Paris,,OIF, +OIF:SA:15:134,1,"André Derain",48.907242,2.038188,,1,,Europe/Paris,,OIF, +OIF:SA:15:139,1,"Abreuvoir",48.90348,2.020289,,1,,Europe/Paris,,OIF, +OIF:SA:15:14,1,"Les Marronniers",48.881907,2.097699,,1,,Europe/Paris,,OIF, +OIF:SA:15:140,1,"Route de Feucherolles",48.907139,2.02238,,1,,Europe/Paris,,OIF, +OIF:SA:15:141,1,"Collège André Derain",48.910718,2.030253,,1,,Europe/Paris,,OIF, +OIF:SA:15:142,1,"Complexe Sportif",48.909068,2.031578,,1,,Europe/Paris,,OIF, +OIF:SA:15:143,1,"Marie Curie",48.896516,2.070248,,1,,Europe/Paris,,OIF, +OIF:SA:15:145,1,"Gounod",48.894718,2.066011,,1,,Europe/Paris,,OIF, +OIF:SA:15:146,1,"Verdi",48.894831,2.066206,,1,,Europe/Paris,,OIF, +OIF:SA:15:148,1,"Lycée Léonard de Vinci",48.892163,2.064691,,1,,Europe/Paris,,OIF, +OIF:SA:15:15,1,"Square des Aubades",48.881296,2.097607,,1,,Europe/Paris,,OIF, +OIF:SA:15:151,1,"Hôpital Marché",48.897863,2.086107,,1,,Europe/Paris,,OIF, +OIF:SA:15:157,1,"Pontel",48.887758,2.083488,,1,,Europe/Paris,,OIF, +OIF:SA:15:159,1,"4 Chemins",48.887776,2.079434,,1,,Europe/Paris,,OIF, +OIF:SA:15:16,1,"Square des Sablons",48.879772,2.097225,,1,,Europe/Paris,,OIF, +OIF:SA:15:162,1,"Croix Rouge",48.886737,2.07011,,1,,Europe/Paris,,OIF, +OIF:SA:15:164,1,"Victor Hugo",48.886521,2.063703,,1,,Europe/Paris,,OIF, +OIF:SA:15:166,1,"Mairie",48.890413,2.064514,,1,,Europe/Paris,,OIF, +OIF:SA:15:169,1,"Val Fleuri",48.892512,2.060284,,1,,Europe/Paris,,OIF, +OIF:SA:15:172,1,"Guillemotte",48.892738,2.05708,,1,,Europe/Paris,,OIF, +OIF:SA:15:173,1,"Clos Badère",48.890375,2.053584,,1,,Europe/Paris,,OIF, +OIF:SA:15:174,1,"Allée des Epines",48.871656,2.099736,,1,,Europe/Paris,,OIF, +OIF:SA:15:176,1,"Bois de la Ferme",48.906765,2.032471,,1,,Europe/Paris,,OIF, +OIF:SA:15:178,1,"Vert Galant",48.906229,2.04244,,1,,Europe/Paris,,OIF, +OIF:SA:15:179,1,"Écuyers",48.905771,2.046315,,1,,Europe/Paris,,OIF, +OIF:SA:15:180,1,"Village d'Hennemont",48.898422,2.062659,,1,,Europe/Paris,,OIF, +OIF:SA:15:181,1,"Vieille Butte",48.898696,2.06642,,1,,Europe/Paris,,OIF, +OIF:SA:15:182,1,"Croix de Fer",48.89918,2.070173,,1,,Europe/Paris,,OIF, +OIF:SA:15:184,1,"Centre Administratif",48.899926,2.084458,,1,,Europe/Paris,,OIF, +OIF:SA:15:19,1,"Ramon Saint-Thibault",48.87755,2.096915,,1,,Europe/Paris,,OIF, +OIF:SA:15:190,1,"Ourches Hôpital",48.898921,2.0808,,1,,Europe/Paris,,OIF, +OIF:SA:15:192,1,"Gallieni",48.896933,2.080005,,1,,Europe/Paris,,OIF, +OIF:SA:15:196,1,"Caraman",48.895469,2.078384,,1,,Europe/Paris,,OIF, +OIF:SA:15:198,1,"Boufflers",48.896907,2.076339,,1,,Europe/Paris,,OIF, +OIF:SA:15:2,1,"République",48.897906,2.115623,,1,,Europe/Paris,,OIF, +OIF:SA:15:200,1,"Sablons J. Vilar",48.876432,2.096709,,1,,Europe/Paris,,OIF, +OIF:SA:15:201,1,"Rue Saint-Louis",48.895161,2.095449,,1,,Europe/Paris,,OIF, +OIF:SA:15:202,1,"Schnapper",48.887588,2.093605,,1,,Europe/Paris,,OIF, +OIF:SA:15:204,1,"Sainte-Radegonde",48.889733,2.08815,,1,,Europe/Paris,,OIF, +OIF:SA:15:207,1,"Fourqueux",48.890125,2.080155,,1,,Europe/Paris,,OIF, +OIF:SA:15:208,1,"Sous Préfecture",48.893053,2.079391,,1,,Europe/Paris,,OIF, +OIF:SA:15:21,1,"J. Witold",48.875926,2.095547,,1,,Europe/Paris,,OIF, +OIF:SA:15:210,1,"Nicot (Institut Notre-Dame)",48.89445,2.076194,,1,,Europe/Paris,,OIF, +OIF:SA:15:214,1,"Taillevent",48.890706,2.068281,,1,,Europe/Paris,,OIF, +OIF:SA:15:22,1,"Les Pins Clos Courché",48.874535,2.094525,,1,,Europe/Paris,,OIF, +OIF:SA:15:220,1,"Place Sainte-Catherine",48.893701,2.084283,,1,,Europe/Paris,,OIF, +OIF:SA:15:222,1,"Centre Commercial",48.893705,2.067373,,1,,Europe/Paris,,OIF, +OIF:SA:15:224,1,"Joffre",48.894761,2.090075,,1,,Europe/Paris,,OIF, +OIF:SA:15:225,1,"Rue de la Salle",48.89713,2.09279,,1,,Europe/Paris,,OIF, +OIF:SA:15:226,1,"Debussy",48.891593,2.096469,,1,,Europe/Paris,,OIF, +OIF:SA:15:228,1,"Diderot",48.891444,2.089737,,1,,Europe/Paris,,OIF, +OIF:SA:15:229,1,"Jaurès",48.895162,2.082079,,1,,Europe/Paris,,OIF, +OIF:SA:15:231,1,"3 Quignons",48.89178,2.062694,,1,,Europe/Paris,,OIF, +OIF:SA:15:232,1,"Clos Baron",48.8885,2.068497,,1,,Europe/Paris,,OIF, +OIF:SA:15:239,1,"Les Vignes Benettes",48.880716,2.095443,,1,,Europe/Paris,,OIF, +OIF:SA:15:240,1,"Mairie",48.897695,2.106891,,1,,Europe/Paris,,OIF, +OIF:SA:15:242,1,"Viaduc",48.871041,2.102095,,1,,Europe/Paris,,OIF, +OIF:SA:15:243,1,"Poissy Technoparc",48.949738,2.060661,,1,,Europe/Paris,,OIF, +OIF:SA:15:249,1,"Le Cep - Hôtel de Ville",48.928901,2.041367,,1,,Europe/Paris,,OIF, +OIF:SA:15:25,1,"Route de Croissy",48.896815,2.115214,,1,,Europe/Paris,,OIF, +OIF:SA:15:251,1,"Centre des Impôts",48.920229,2.038865,,1,,Europe/Paris,,OIF, +OIF:SA:15:253,1,"Francis Pédron",48.908654,2.038282,,1,,Europe/Paris,,OIF, +OIF:SA:15:256,1,"Plains Champs",48.872288,2.110351,,1,,Europe/Paris,,OIF, +OIF:SA:15:258,1,"Voisins",48.866505,2.112987,,1,,Europe/Paris,,OIF, +OIF:SA:15:260,1,"Village",48.862598,2.110929,,1,,Europe/Paris,,OIF, +OIF:SA:15:262,1,"Grille Royale",48.855579,2.107219,,1,,Europe/Paris,,OIF, +OIF:SA:15:263,1,"Villevert",48.846948,2.109345,,1,,Europe/Paris,,OIF, +OIF:SA:15:266,1,"Mairie",48.836725,2.112847,,1,,Europe/Paris,,OIF, +OIF:SA:15:267,1,"Parly 2",48.828816,2.113252,,1,,Europe/Paris,,OIF, +OIF:SA:15:269,1,"Porte Saint-Antoine",48.823519,2.114586,,1,,Europe/Paris,,OIF, +OIF:SA:15:271,1,"Pré Catelan",48.81831,2.120443,,1,,Europe/Paris,,OIF, +OIF:SA:15:273,1,"Place de la Loi",48.815011,2.128821,,1,,Europe/Paris,,OIF, +OIF:SA:15:275,1,"Berthier",48.811688,2.12675,,1,,Europe/Paris,,OIF, +OIF:SA:15:277,1,"Réservoirs",48.809077,2.125232,,1,,Europe/Paris,,OIF, +OIF:SA:15:279,1,"Place Hoche",48.806094,2.127351,,1,,Europe/Paris,,OIF, +OIF:SA:15:288,1,"Professeur Roux",48.885638,2.093696,,1,,Europe/Paris,,OIF, +OIF:SA:15:29,1,"Verdun",48.894747,2.114787,,1,,Europe/Paris,,OIF, +OIF:SA:15:290,1,"Rue Nouvelle",48.883177,2.090287,,1,,Europe/Paris,,OIF, +OIF:SA:15:292,1,"Bas Roi",48.878373,2.083708,,1,,Europe/Paris,,OIF, +OIF:SA:15:294,1,"Sabotte",48.876043,2.080613,,1,,Europe/Paris,,OIF, +OIF:SA:15:296,1,"Mairie",48.870521,2.072888,,1,,Europe/Paris,,OIF, +OIF:SA:15:298,1,"Prés Jummelles",48.86873,2.065452,,1,,Europe/Paris,,OIF, +OIF:SA:15:3,1,"Jean Jaurès",48.897881,2.110837,,1,,Europe/Paris,,OIF, +OIF:SA:15:30,1,"Liberté",48.892367,2.115547,,1,,Europe/Paris,,OIF, +OIF:SA:15:300,1,"La Doucerie",48.868901,2.061902,,1,,Europe/Paris,,OIF, +OIF:SA:15:302,1,"Lt Chassagne",48.869773,2.058035,,1,,Europe/Paris,,OIF, +OIF:SA:15:304,1,"Avenue des Chênes",48.869469,2.054897,,1,,Europe/Paris,,OIF, +OIF:SA:15:306,1,"Petit Parc Bignon",48.869154,2.0528,,1,,Europe/Paris,,OIF, +OIF:SA:15:307,1,"Pré de l'Isle",48.867863,2.069755,,1,,Europe/Paris,,OIF, +OIF:SA:15:33,1,"Hameau Sisley - Collège P et M Curie",48.889643,2.115177,,1,,Europe/Paris,,OIF, +OIF:SA:15:34,1,"Pt. Wilson",48.893413,2.112961,,1,,Europe/Paris,,OIF, +OIF:SA:15:348,1,"Notre-Dame",48.926152,2.036897,,1,,Europe/Paris,,OIF, +OIF:SA:15:35,1,"Pont du Pecq",48.897911,2.106612,,1,,Europe/Paris,,OIF, +OIF:SA:15:351,1,"Lycée International",48.898083,2.062154,,1,,Europe/Paris,,OIF, +OIF:SA:15:354,1,"Pavillon Sully",48.896279,2.101555,,1,,Europe/Paris,,OIF, +OIF:SA:15:356,1,"Noyer Garenne",48.872189,2.087767,,1,,Europe/Paris,,OIF, +OIF:SA:15:358,1,"Cirsée - Buisson",48.891555,2.113737,,1,,Europe/Paris,,OIF, +OIF:SA:15:368,1,"Place des Rotondes",48.828524,2.117943,,1,,Europe/Paris,,OIF, +OIF:SA:15:37,1,"Place Royale",48.895011,2.097758,,1,,Europe/Paris,,OIF, +OIF:SA:15:370,1,"Collège Louis Lumière",48.868365,2.099315,,1,,Europe/Paris,,OIF, +OIF:SA:15:379,1,"Jasmin",48.825884,2.121806,,1,,Europe/Paris,,OIF, +OIF:SA:15:381,1,"Joyenval",48.902752,2.032381,,1,,Europe/Paris,,OIF, +OIF:SA:15:385,1,"Les Meuniers",48.901058,2.023748,,1,,Europe/Paris,,OIF, +OIF:SA:15:386,1,"La Muette",48.83182,2.116561,,1,,Europe/Paris,,OIF, +OIF:SA:15:388,1,"Passy",48.833572,2.118555,,1,,Europe/Paris,,OIF, +OIF:SA:15:394,1,"Place Simart",48.819221,2.126848,,1,,Europe/Paris,,OIF, +OIF:SA:15:396,1,"Giraud Teulon",48.893587,2.099158,,1,,Europe/Paris,,OIF, +OIF:SA:15:40,1,"Alexandre Bertrand",48.88942,2.099168,,1,,Europe/Paris,,OIF, +OIF:SA:15:400,1,"Cimetière",48.863872,2.081845,,1,,Europe/Paris,,OIF, +OIF:SA:15:401,1,"Mansart",48.866806,2.096448,,1,,Europe/Paris,,OIF, +OIF:SA:15:409,1,"Glaxo",48.871388,2.105118,,1,,Europe/Paris,,OIF, +OIF:SA:15:415,1,"Rue de Seine",48.902885,2.114697,,1,,Europe/Paris,,OIF, +OIF:SA:15:416,1,"Jacques Cartier",48.899579,2.113772,,1,,Europe/Paris,,OIF, +OIF:SA:15:417,1,"J. Alain",48.895987,2.114754,,1,,Europe/Paris,,OIF, +OIF:SA:15:418,1,"Félix Eboué",48.893847,2.109584,,1,,Europe/Paris,,OIF, +OIF:SA:15:435,1,"Louis Pelin",48.835329,2.120109,,1,,Europe/Paris,,OIF, +OIF:SA:15:437,1,"Clos des Epines",48.874765,2.099245,,1,,Europe/Paris,,OIF, +OIF:SA:15:439,1,"Aligre",48.895577,2.111946,,1,,Europe/Paris,,OIF, +OIF:SA:15:443,1,"Gaudines",48.892331,2.071809,,1,,Europe/Paris,,OIF, +OIF:SA:15:445,1,"Réservoir",48.89413,2.062354,,1,,Europe/Paris,,OIF, +OIF:SA:15:447,1,"Thiers",48.898117,2.093308,,1,,Europe/Paris,,OIF, +OIF:SA:15:45,1,"Square de Monté Cristo",48.883948,2.102889,,1,,Europe/Paris,,OIF, +OIF:SA:15:450,1,"Gambetta",48.896318,2.098536,,1,,Europe/Paris,,OIF, +OIF:SA:15:453,1,"Planche",48.885559,2.090351,,1,,Europe/Paris,,OIF, +OIF:SA:15:455,1,"Rue de Port Marly",48.884086,2.086372,,1,,Europe/Paris,,OIF, +OIF:SA:15:457,1,"Verger",48.882455,2.082257,,1,,Europe/Paris,,OIF, +OIF:SA:15:461,1,"Les Closeaux",48.886583,2.077617,,1,,Europe/Paris,,OIF, +OIF:SA:15:462,1,"Lavoir",48.884311,2.074262,,1,,Europe/Paris,,OIF, +OIF:SA:15:463,1,"Couture",48.885413,2.072512,,1,,Europe/Paris,,OIF, +OIF:SA:15:464,1,"Georges Sand",48.883238,2.068408,,1,,Europe/Paris,,OIF, +OIF:SA:15:465,1,"Poney Club",48.889526,2.063456,,1,,Europe/Paris,,OIF, +OIF:SA:15:469,1,"Basses Auges",48.884831,2.065797,,1,,Europe/Paris,,OIF, +OIF:SA:15:47,1,"Square de Versailles",48.880312,2.104656,,1,,Europe/Paris,,OIF, +OIF:SA:15:470,1,"Mairie",48.88229,2.076971,,1,,Europe/Paris,,OIF, +OIF:SA:15:476,1,"Bergette",48.897528,2.080725,,1,,Europe/Paris,,OIF, +OIF:SA:15:477,1,"République",48.89811,2.092659,,1,,Europe/Paris,,OIF, +OIF:SA:15:49,1,"Le Verger Saint-Exupéry",48.879231,2.101002,,1,,Europe/Paris,,OIF, +OIF:SA:15:535,1,"Renaissance",48.911917,2.036705,,1,,Europe/Paris,,OIF, +OIF:SA:15:55,1,"Mairie",48.868307,2.096672,,1,,Europe/Paris,,OIF, +OIF:SA:15:552,1,"Jean Moulin",48.917493,2.039533,,1,,Europe/Paris,,OIF, +OIF:SA:15:554,1,"Cimetière",48.926874,2.040425,,1,,Europe/Paris,,OIF, +OIF:SA:15:57,1,"Les Ombrages",48.869146,2.089475,,1,,Europe/Paris,,OIF, +OIF:SA:15:58,1,"Piscine",48.871751,2.09325,,1,,Europe/Paris,,OIF, +OIF:SA:15:6,1,"Brossolette",48.895211,2.105809,,1,,Europe/Paris,,OIF, +OIF:SA:15:62,1,"Bellevue",48.872941,2.086269,,1,,Europe/Paris,,OIF, +OIF:SA:15:63,1,"Gaillon",48.874326,2.082311,,1,,Europe/Paris,,OIF, +OIF:SA:15:64,1,"Les Poteries",48.873727,2.084058,,1,,Europe/Paris,,OIF, +OIF:SA:15:65,1,"La Sabotte",48.876934,2.083443,,1,,Europe/Paris,,OIF, +OIF:SA:15:66,1,"Les Bas Picards",48.877612,2.084979,,1,,Europe/Paris,,OIF, +OIF:SA:15:67,1,"Mareil Montval",48.876071,2.087235,,1,,Europe/Paris,,OIF, +OIF:SA:15:68,1,"Le Galion",48.876779,2.094916,,1,,Europe/Paris,,OIF, +OIF:SA:15:75,1,"Les Glaises",48.876616,2.090175,,1,,Europe/Paris,,OIF, +OIF:SA:15:8,1,"Jean Moulin",48.891703,2.104332,,1,,Europe/Paris,,OIF, +OIF:SA:15:805,1,"Place des Victoires",48.898508,2.089526,,1,,Europe/Paris,,OIF, +OIF:SA:15:81,1,"Vauillons",48.868111,2.101877,,1,,Europe/Paris,,OIF, +OIF:SA:15:83,1,"Abreuvoir",48.867297,2.100302,,1,,Europe/Paris,,OIF, +OIF:SA:15:84,1,"Valcort",48.876865,2.088689,,1,,Europe/Paris,,OIF, +OIF:SA:15:86,1,"La Linière",48.877914,2.08788,,1,,Europe/Paris,,OIF, +OIF:SA:15:87,1,"Les Alizés",48.879592,2.090774,,1,,Europe/Paris,,OIF, +OIF:SA:15:88,1,"La Frégate",48.879102,2.09282,,1,,Europe/Paris,,OIF, +OIF:SA:15:91,1,"Europe",48.878584,2.103342,,1,,Europe/Paris,,OIF, +OIF:SA:15:92,1,"Bas des Ormes",48.875226,2.100755,,1,,Europe/Paris,,OIF, +OIF:SA:15:93,1,"Saint-Fiacre",48.872829,2.10176,,1,,Europe/Paris,,OIF, +OIF:SA:15:98,1,"Bois Joly",48.87341,2.104687,,1,,Europe/Paris,,OIF, +OIF:SA:15:99,1,"Corbellerie",48.87426,2.102912,,1,,Europe/Paris,,OIF, +OIF:SA:16:19001,1,"André Derain",48.900738,2.152365,,1,,Europe/Paris,,OIF, +OIF:SA:16:19004,1,"Aristide Briand",48.905767,2.146757,,1,,Europe/Paris,,OIF, +OIF:SA:16:19005,1,"Arsenal",48.922022,2.175847,,1,,Europe/Paris,,OIF, +OIF:SA:16:19006,1,"Augier",48.872364,2.137697,,1,,Europe/Paris,,OIF, +OIF:SA:16:19008,1,"Belloy",48.901789,2.132478,,1,,Europe/Paris,,OIF, +OIF:SA:16:19010,1,"Bercail",48.905798,2.171004,,1,,Europe/Paris,,OIF, +OIF:SA:16:19011,1,"Salengro / Péri",48.909772,2.119085,,1,,Europe/Paris,,OIF, +OIF:SA:16:19013,1,"Berges",48.911969,2.12134,,1,,Europe/Paris,,OIF, +OIF:SA:16:19015,1,"Berthelot",48.895299,2.159874,,1,,Europe/Paris,,OIF, +OIF:SA:16:19016,1,"Poste",48.862924,2.139599,,1,,Europe/Paris,,OIF, +OIF:SA:16:19018,1,"Buzenval",48.916139,2.178234,,1,,Europe/Paris,,OIF, +OIF:SA:16:19019,1,"Carrières Bellevue",48.8994,2.161789,,1,,Europe/Paris,,OIF, +OIF:SA:16:19021,1,"Carnot",48.909741,2.179226,,1,,Europe/Paris,,OIF, +OIF:SA:16:19023,1,"Centre Commercial Carrefour",48.929661,2.143963,,1,,Europe/Paris,,OIF, +OIF:SA:16:19025,1,"Collège Pablo Picasso",48.910585,2.142083,,1,,Europe/Paris,,OIF, +OIF:SA:16:19027,1,"Collège Auguste Renoir",48.90261,2.159985,,1,,Europe/Paris,,OIF, +OIF:SA:16:19029,1,"Charmettes",48.902822,2.136187,,1,,Europe/Paris,,OIF, +OIF:SA:16:19031,1,"Champs Roger",48.907184,2.155094,,1,,Europe/Paris,,OIF, +OIF:SA:16:19032,1,"Châtelet",48.893929,2.157241,,1,,Europe/Paris,,OIF, +OIF:SA:16:19034,1,"Chemin de Fer Martin",48.85775,2.1346,,1,,Europe/Paris,,OIF, +OIF:SA:16:19037,1,"Chemin de Ronde",48.876089,2.129678,,1,,Europe/Paris,,OIF, +OIF:SA:16:19038,1,"Cimetière Branly",48.894212,2.148612,,1,,Europe/Paris,,OIF, +OIF:SA:16:19040,1,"Cimetière",48.911864,2.146571,,1,,Europe/Paris,,OIF, +OIF:SA:16:19042,1,"Claude Monet",48.855597,2.129378,,1,,Europe/Paris,,OIF, +OIF:SA:16:19043,1,"Collège des Amandiers",48.91226,2.195512,,1,,Europe/Paris,,OIF, +OIF:SA:16:19045,1,"Comsip",48.905386,2.115557,,1,,Europe/Paris,,OIF, +OIF:SA:16:19047,1,"Cormiers Ricard",48.898264,2.146519,,1,,Europe/Paris,,OIF, +OIF:SA:16:19050,1,"Cormeilles",48.909727,2.129039,,1,,Europe/Paris,,OIF, +OIF:SA:16:19053,1,"Crèche",48.881056,2.132901,,1,,Europe/Paris,,OIF, +OIF:SA:16:19054,1,"Cultures Lorraine",48.882604,2.124105,,1,,Europe/Paris,,OIF, +OIF:SA:16:19056,1,"Pierre Curie / Pages",48.909714,2.134615,,1,,Europe/Paris,,OIF, +OIF:SA:16:19058,1,"Claude Debussy",48.898035,2.1508,,1,,Europe/Paris,,OIF, +OIF:SA:16:19059,1,"Docteur Rochefort",48.89085,2.160025,,1,,Europe/Paris,,OIF, +OIF:SA:16:19060,1,"Place du Docteur Roux",48.900544,2.147735,,1,,Europe/Paris,,OIF, +OIF:SA:16:19062,1,"Église Notre-Dame",48.889028,2.159618,,1,,Europe/Paris,,OIF, +OIF:SA:16:19064,1,"Église",48.908336,2.148854,,1,,Europe/Paris,,OIF, +OIF:SA:16:19066,1,"Europe",48.905019,2.157223,,1,,Europe/Paris,,OIF, +OIF:SA:16:19067,1,"Ferdinand Buisson",48.927726,2.140928,,1,,Europe/Paris,,OIF, +OIF:SA:16:19069,1,"La Feuilleraie",48.860049,2.139256,,1,,Europe/Paris,,OIF, +OIF:SA:16:19072,1,"Gabillons",48.87941,2.131994,,1,,Europe/Paris,,OIF, +OIF:SA:16:19073,1,"Gambetta",48.897273,2.164025,,1,,Europe/Paris,,OIF, +OIF:SA:16:19074,1,"Gandillet",48.917222,2.181576,,1,,Europe/Paris,,OIF, +OIF:SA:16:19089,1,"Général Leclerc",48.909732,2.176726,,1,,Europe/Paris,,OIF, +OIF:SA:16:19091,1,"Grande Rue",48.912008,2.177188,,1,,Europe/Paris,,OIF, +OIF:SA:16:19093,1,"Grande Terre",48.848705,2.132409,,1,,Europe/Paris,,OIF, +OIF:SA:16:19095,1,"Les Gressets",48.851394,2.13092,,1,,Europe/Paris,,OIF, +OIF:SA:16:19097,1,"Guibert",48.844704,2.132829,,1,,Europe/Paris,,OIF, +OIF:SA:16:19099,1,"Hameau de Palfour",48.907399,2.116437,,1,,Europe/Paris,,OIF, +OIF:SA:16:19101,1,"Mairie",48.894295,2.13513,,1,,Europe/Paris,,OIF, +OIF:SA:16:19103,1,"Les Ibis",48.8958,2.125441,,1,,Europe/Paris,,OIF, +OIF:SA:16:19105,1,"Île Verte",48.895933,2.163334,,1,,Europe/Paris,,OIF, +OIF:SA:16:19108,1,"Inserm",48.879211,2.126381,,1,,Europe/Paris,,OIF, +OIF:SA:16:19111,1,"Jardins Sportifs",48.910018,2.184945,,1,,Europe/Paris,,OIF, +OIF:SA:16:19113,1,"Jaurès / Renoir",48.901428,2.162927,,1,,Europe/Paris,,OIF, +OIF:SA:16:19115,1,"Jean Macé",48.911785,2.153171,,1,,Europe/Paris,,OIF, +OIF:SA:16:19116,1,"Jean Jaurès / Chatou",48.900974,2.162956,,1,,Europe/Paris,,OIF, +OIF:SA:16:19120,1,"Jules Ferry",48.904313,2.1424,,1,,Europe/Paris,,OIF, +OIF:SA:16:19124,1,"Landes Sabinettes",48.898895,2.143422,,1,,Europe/Paris,,OIF, +OIF:SA:16:19126,1,"Landes Stade",48.900771,2.141991,,1,,Europe/Paris,,OIF, +OIF:SA:16:19128,1,"Landes Vésinet",48.902992,2.139781,,1,,Europe/Paris,,OIF, +OIF:SA:16:19130,1,"La Tour",48.912602,2.14997,,1,,Europe/Paris,,OIF, +OIF:SA:16:19131,1,"Général Leclerc",48.90893,2.152424,,1,,Europe/Paris,,OIF, +OIF:SA:16:19132,1,"Leclerc / République",48.896517,2.152982,,1,,Europe/Paris,,OIF, +OIF:SA:16:19133,1,"Lycée Evariste Galois",48.928351,2.16418,,1,,Europe/Paris,,OIF, +OIF:SA:16:19134,1,"Lycée les Pierres Vives",48.914772,2.171323,,1,,Europe/Paris,,OIF, +OIF:SA:16:19136,1,"Maurice de Vlaminck",48.902497,2.151871,,1,,Europe/Paris,,OIF, +OIF:SA:16:19138,1,"Maisons République",48.899037,2.15342,,1,,Europe/Paris,,OIF, +OIF:SA:16:19140,1,"Mairie",48.847116,2.136232,,1,,Europe/Paris,,OIF, +OIF:SA:16:19142,1,"Marolles Bouvets",48.900689,2.15824,,1,,Europe/Paris,,OIF, +OIF:SA:16:19144,1,"Mairie",48.88927,2.158048,,1,,Europe/Paris,,OIF, +OIF:SA:16:19145,1,"Maréchal",48.907147,2.174783,,1,,Europe/Paris,,OIF, +OIF:SA:16:19147,1,"Maurice Berteaux",48.887563,2.155103,,1,,Europe/Paris,,OIF, +OIF:SA:16:19148,1,"Maurice Hardouin",48.895902,2.157405,,1,,Europe/Paris,,OIF, +OIF:SA:16:19150,1,"Maupassant",48.90304,2.156167,,1,,Europe/Paris,,OIF, +OIF:SA:16:19152,1,"Mayoly",48.90611,2.159932,,1,,Europe/Paris,,OIF, +OIF:SA:16:19153,1,"Merlettes Champs",48.90375,2.120931,,1,,Europe/Paris,,OIF, +OIF:SA:16:19155,1,"Merlettes Roosevelt",48.905313,2.122983,,1,,Europe/Paris,,OIF, +OIF:SA:16:19157,1,"Merlettes Stade",48.906623,2.124484,,1,,Europe/Paris,,OIF, +OIF:SA:16:19161,1,"Monceau",48.904447,2.168196,,1,,Europe/Paris,,OIF, +OIF:SA:16:19163,1,"Claude Monet",48.899218,2.154292,,1,,Europe/Paris,,OIF, +OIF:SA:16:19165,1,"Montgolfier",48.931852,2.147323,,1,,Europe/Paris,,OIF, +OIF:SA:16:19167,1,"Le Montoir",48.909288,2.159585,,1,,Europe/Paris,,OIF, +OIF:SA:16:19169,1,"Les Moulins",48.875717,2.140716,,1,,Europe/Paris,,OIF, +OIF:SA:16:19171,1,"Patte d'Oie",48.878435,2.143035,,1,,Europe/Paris,,OIF, +OIF:SA:16:19173,1,"Émile Pathé",48.894975,2.151152,,1,,Europe/Paris,,OIF, +OIF:SA:16:19175,1,"Pâtures",48.914874,2.197282,,1,,Europe/Paris,,OIF, +OIF:SA:16:19177,1,"Paul Bert",48.890383,2.154153,,1,,Europe/Paris,,OIF, +OIF:SA:16:19181,1,"Péri Borde",48.921114,2.131911,,1,,Europe/Paris,,OIF, +OIF:SA:16:19183,1,"Petit Bois",48.915503,2.173799,,1,,Europe/Paris,,OIF, +OIF:SA:16:19189,1,"Pont de Bougival",48.867488,2.137154,,1,,Europe/Paris,,OIF, +OIF:SA:16:19193,1,"Les Portiques",48.901354,2.145794,,1,,Europe/Paris,,OIF, +OIF:SA:16:19194,1,"Pré d'Orient",48.847331,2.130487,,1,,Europe/Paris,,OIF, +OIF:SA:16:19196,1,"Princesse / Croissy",48.884242,2.132281,,1,,Europe/Paris,,OIF, +OIF:SA:16:19198,1,"Princesse / Roosevelt",48.886397,2.134508,,1,,Europe/Paris,,OIF, +OIF:SA:16:19200,1,"Poste",48.890603,2.156755,,1,,Europe/Paris,,OIF, +OIF:SA:16:19204,1,"République / Pathé",48.893286,2.151267,,1,,Europe/Paris,,OIF, +OIF:SA:16:19209,1,"Église Réveil Matin",48.917524,2.175486,,1,,Europe/Paris,,OIF, +OIF:SA:16:19210,1,"Ribot Barbier",48.902065,2.150131,,1,,Europe/Paris,,OIF, +OIF:SA:16:19212,1,"La Roseraie",48.879847,2.149414,,1,,Europe/Paris,,OIF, +OIF:SA:16:19214,1,"Rond-Point Royal",48.897616,2.136012,,1,,Europe/Paris,,OIF, +OIF:SA:16:19217,1,"Rue du Port",48.889782,2.160915,,1,,Europe/Paris,,OIF, +OIF:SA:16:19220,1,"Sablons / Darcis",48.910075,2.138029,,1,,Europe/Paris,,OIF, +OIF:SA:16:19222,1,"Salle des Fêtes",48.911097,2.183046,,1,,Europe/Paris,,OIF, +OIF:SA:16:19224,1,"Salengro / Merlettes",48.907801,2.12604,,1,,Europe/Paris,,OIF, +OIF:SA:16:19228,1,"Sarrail Foch",48.889028,2.15567,,1,,Europe/Paris,,OIF, +OIF:SA:16:19230,1,"Opri",48.877008,2.130737,,1,,Europe/Paris,,OIF, +OIF:SA:16:19231,1,"Sécurité Sociale",48.893774,2.15887,,1,,Europe/Paris,,OIF, +OIF:SA:16:19232,1,"Square de la Drionne",48.858107,2.138576,,1,,Europe/Paris,,OIF, +OIF:SA:16:19235,1,"Saint-Honorine",48.911445,2.157276,,1,,Europe/Paris,,OIF, +OIF:SA:16:19236,1,"Strasbourg",48.934588,2.152595,,1,,Europe/Paris,,OIF, +OIF:SA:16:19240,1,"Terres Blanches",48.908722,2.132222,,1,,Europe/Paris,,OIF, +OIF:SA:16:19242,1,"Théophile Roussel",48.922388,2.133024,,1,,Europe/Paris,,OIF, +OIF:SA:16:19244,1,"Transformateur",48.900337,2.163558,,1,,Europe/Paris,,OIF, +OIF:SA:16:19246,1,"Verdun",48.881132,2.143652,,1,,Europe/Paris,,OIF, +OIF:SA:16:19248,1,"Verdun / École Princesse",48.884465,2.129671,,1,,Europe/Paris,,OIF, +OIF:SA:16:19249,1,"Verdun / Regnault",48.884478,2.126673,,1,,Europe/Paris,,OIF, +OIF:SA:16:19251,1,"Victor Hugo",48.910834,2.151872,,1,,Europe/Paris,,OIF, +OIF:SA:16:19253,1,"ZI Est",48.912066,2.198185,,1,,Europe/Paris,,OIF, +OIF:SA:16:19255,1,"Meute",48.906573,2.128956,,1,,Europe/Paris,,OIF, +OIF:SA:16:19260,1,"Konica Jvc",48.910741,2.164327,,1,,Europe/Paris,,OIF, +OIF:SA:16:19272,1,"Maison Fournaise",48.889394,2.162627,,1,,Europe/Paris,,OIF, +OIF:SA:16:19277,1,"EDF",48.892267,2.165704,,1,,Europe/Paris,,OIF, +OIF:SA:16:19289,1,"Maréchal Juin",48.911356,2.179951,,1,,Europe/Paris,,OIF, +OIF:SA:16:19293,1,"Jules Ferry",48.847507,2.128416,,1,,Europe/Paris,,OIF, +OIF:SA:16:19300,1,"Montbuisson",48.863531,2.122917,,1,,Europe/Paris,,OIF, +OIF:SA:16:19308,1,"La Machine",48.864929,2.115671,,1,,Europe/Paris,,OIF, +OIF:SA:16:19314,1,"Les Murgets",48.859487,2.128559,,1,,Europe/Paris,,OIF, +OIF:SA:16:19323,1,"3 Forets",48.856369,2.128667,,1,,Europe/Paris,,OIF, +OIF:SA:16:19326,1,"Tournebride",48.854127,2.142275,,1,,Europe/Paris,,OIF, +OIF:SA:16:19329,1,"Sablons",48.856875,2.145023,,1,,Europe/Paris,,OIF, +OIF:SA:16:19331,1,"Elysée 2",48.859406,2.149631,,1,,Europe/Paris,,OIF, +OIF:SA:16:19333,1,"Rousseau",48.861536,2.151553,,1,,Europe/Paris,,OIF, +OIF:SA:16:19334,1,"Saint-François",48.853316,2.146629,,1,,Europe/Paris,,OIF, +OIF:SA:16:19337,1,"Place Berthet",48.849239,2.149954,,1,,Europe/Paris,,OIF, +OIF:SA:16:19342,1,"Lycée Alain",48.891727,2.122153,,1,,Europe/Paris,,OIF, +OIF:SA:16:19344,1,"Allée de la Gare",48.889002,2.125905,,1,,Europe/Paris,,OIF, +OIF:SA:16:19348,1,"Passy Buzenval",48.859527,2.18183,,1,,Europe/Paris,,OIF, +OIF:SA:16:19349,1,"Madeleine Danielou",48.861883,2.171671,,1,,Europe/Paris,,OIF, +OIF:SA:16:19351,1,"Carrefour de la Croix",48.882695,2.13748,,1,,Europe/Paris,,OIF, +OIF:SA:16:19355,1,"Belgique/Belloy",48.905005,2.126699,,1,,Europe/Paris,,OIF, +OIF:SA:16:19357,1,"Acacias",48.904848,2.132214,,1,,Europe/Paris,,OIF, +OIF:SA:16:19362,1,"Commissariat",48.892286,2.144265,,1,,Europe/Paris,,OIF, +OIF:SA:16:19364,1,"Butard",48.845526,2.147795,,1,,Europe/Paris,,OIF, +OIF:SA:16:19366,1,"Castille",48.829545,2.130953,,1,,Europe/Paris,,OIF, +OIF:SA:16:19368,1,"Pasteur",48.819984,2.132352,,1,,Europe/Paris,,OIF, +OIF:SA:16:19372,1,"Croissy Aligre",48.896793,2.115385,,1,,Europe/Paris,,OIF, +OIF:SA:16:19388,1,"Les Plains Champs",48.87214,2.110313,,1,,Europe/Paris,,OIF, +OIF:SA:16:19391,1,"Marly Soleil",48.87533,2.102989,,1,,Europe/Paris,,OIF, +OIF:SA:16:19395,1,"Saint-Fiacre",48.872829,2.10176,,1,,Europe/Paris,,OIF, +OIF:SA:16:19414,1,"Feuillancourt",48.890358,2.088113,,1,,Europe/Paris,,OIF, +OIF:SA:16:19417,1,"Prieuré",48.892926,2.085129,,1,,Europe/Paris,,OIF, +OIF:SA:16:19422,1,"Lycée Léonard de Vinci (Collège des Hauts Grillets)",48.891991,2.064506,,1,,Europe/Paris,,OIF, +OIF:SA:16:19429,1,"E Thiebaut",48.891592,2.129248,,1,,Europe/Paris,,OIF, +OIF:SA:16:19432,1,"Chapelle",48.878041,2.152575,,1,,Europe/Paris,,OIF, +OIF:SA:16:19435,1,"La Défense / Terminal Jules Verne",48.891399,2.242386,,1,,Europe/Paris,,OIF, +OIF:SA:16:19437,1,"Colombia",48.933921,2.256208,,1,,Europe/Paris,,OIF, +OIF:SA:16:19439,1,"Jaurès",48.934759,2.259562,,1,,Europe/Paris,,OIF, +OIF:SA:16:19440,1,"Stalingrad",48.93511,2.259193,,1,,Europe/Paris,,OIF, +OIF:SA:16:19441,1,"Valmy",48.934524,2.256807,,1,,Europe/Paris,,OIF, +OIF:SA:16:19442,1,"Kléber",48.934091,2.254557,,1,,Europe/Paris,,OIF, +OIF:SA:16:19443,1,"Séguin",48.933694,2.252621,,1,,Europe/Paris,,OIF, +OIF:SA:16:19460,1,"Le Bourg",48.851475,2.14155,,1,,Europe/Paris,,OIF, +OIF:SA:16:19491,1,"3BUTTES",48.909657,2.187298,,1,,Europe/Paris,,OIF, +OIF:SA:16:19493,1,"Montesson Poste",48.906119,2.150607,,1,,Europe/Paris,,OIF, +OIF:SA:16:19495,1,"Berteaux Carrières",48.914224,2.184619,,1,,Europe/Paris,,OIF, +OIF:SA:16:19506,1,"Martyrs",48.93617,2.186725,,1,,Europe/Paris,,OIF, +OIF:SA:16:19508,1,"Écoles",48.934476,2.186179,,1,,Europe/Paris,,OIF, +OIF:SA:16:19513,1,"Cimetière",48.932316,2.185207,,1,,Europe/Paris,,OIF, +OIF:SA:16:19515,1,"Camille Pelletan",48.930009,2.185123,,1,,Europe/Paris,,OIF, +OIF:SA:16:19517,1,"Les Blanches",48.926454,2.193011,,1,,Europe/Paris,,OIF, +OIF:SA:16:19519,1,"Ernest Renan",48.923917,2.196435,,1,,Europe/Paris,,OIF, +OIF:SA:16:19520,1,"La Fontaine",48.920575,2.197334,,1,,Europe/Paris,,OIF, +OIF:SA:16:19522,1,"Jean Jaurès",48.919954,2.192498,,1,,Europe/Paris,,OIF, +OIF:SA:16:19525,1,"Colombier",48.915972,2.194919,,1,,Europe/Paris,,OIF, +OIF:SA:17:1273,1,"Rueil Ville",48.880412,2.181268,,1,,Europe/Paris,,OIF, +OIF:SA:17:1274,1,"Danielle Casanova",48.878327,2.176334,,1,,Europe/Paris,,OIF, +OIF:SA:17:1275,1,"Bois Préau",48.876697,2.173598,,1,,Europe/Paris,,OIF, +OIF:SA:17:1276,1,"Château",48.87472,2.167533,,1,,Europe/Paris,,OIF, +OIF:SA:17:1277,1,"École de Malmaison",48.87298,2.163963,,1,,Europe/Paris,,OIF, +OIF:SA:17:1278,1,"Le Parc",48.871835,2.161586,,1,,Europe/Paris,,OIF, +OIF:SA:17:1279,1,"Jonchère",48.869487,2.157523,,1,,Europe/Paris,,OIF, +OIF:SA:17:1280,1,"Chemin des Vignes",48.863338,2.152825,,1,,Europe/Paris,,OIF, +OIF:SA:17:1282,1,"Elysée",48.859255,2.148344,,1,,Europe/Paris,,OIF, +OIF:SA:17:1285,1,"Vinde-Berthet",48.849865,2.14959,,1,,Europe/Paris,,OIF, +OIF:SA:17:1286,1,"Étang Sec",48.848823,2.152434,,1,,Europe/Paris,,OIF, +OIF:SA:17:1290,1,"Avenue Hogg",48.85141,2.146078,,1,,Europe/Paris,,OIF, +OIF:SA:17:1291,1,"Place de l'Église",48.852566,2.14369,,1,,Europe/Paris,,OIF, +OIF:SA:17:1293,1,"Bourg",48.853965,2.14215,,1,,Europe/Paris,,OIF, +OIF:SA:17:1295,1,"Corneille",48.846569,2.136945,,1,,Europe/Paris,,OIF, +OIF:SA:17:1298,1,"Victor Hugo",48.843849,2.128458,,1,,Europe/Paris,,OIF, +OIF:SA:17:1299,1,"Orangerie",48.842163,2.127975,,1,,Europe/Paris,,OIF, +OIF:SA:17:1300,1,"Bendern",48.84151,2.124676,,1,,Europe/Paris,,OIF, +OIF:SA:17:1301,1,"Grande Promenade",48.84133,2.119659,,1,,Europe/Paris,,OIF, +OIF:SA:17:1302,1,"Dunant",48.840012,2.121182,,1,,Europe/Paris,,OIF, +OIF:SA:17:1303,1,"Hirsch Saut du Loup",48.839332,2.125467,,1,,Europe/Paris,,OIF, +OIF:SA:17:1304,1,"Puits d'Angle",48.838529,2.12968,,1,,Europe/Paris,,OIF, +OIF:SA:17:1310,1,"Grande Terrasse",48.841392,2.131032,,1,,Europe/Paris,,OIF, +OIF:SA:17:1311,1,"Sources",48.843196,2.130354,,1,,Europe/Paris,,OIF, +OIF:SA:17:1333,1,"Louis Pasteur",48.849287,2.144956,,1,,Europe/Paris,,OIF, +OIF:SA:17:1334,1,"Place Amade",48.847772,2.14729,,1,,Europe/Paris,,OIF, +OIF:SA:17:1337,1,"Gambetta",48.848002,2.241337,,1,,Europe/Paris,,OIF, +OIF:SA:17:1338,1,"Église",48.845814,2.236872,,1,,Europe/Paris,,OIF, +OIF:SA:17:1339,1,"Escudier",48.84285,2.231326,,1,,Europe/Paris,,OIF, +OIF:SA:17:1342,1,"Chevrillon",48.846059,2.219516,,1,,Europe/Paris,,OIF, +OIF:SA:17:1344,1,"Collège Gounod",48.842979,2.213508,,1,,Europe/Paris,,OIF, +OIF:SA:17:1345,1,"Général Leclerc",48.84237,2.207322,,1,,Europe/Paris,,OIF, +OIF:SA:17:1346,1,"Lelégard",48.841853,2.20258,,1,,Europe/Paris,,OIF, +OIF:SA:17:1347,1,"Porte Jaune",48.841634,2.200137,,1,,Europe/Paris,,OIF, +OIF:SA:17:1348,1,"Gustave Lambert",48.840575,2.193971,,1,,Europe/Paris,,OIF, +OIF:SA:17:1349,1,"Toulon",48.841263,2.190341,,1,,Europe/Paris,,OIF, +OIF:SA:17:1350,1,"Mairie",48.842417,2.186341,,1,,Europe/Paris,,OIF, +OIF:SA:17:1351,1,"Joffre",48.839855,2.185838,,1,,Europe/Paris,,OIF, +OIF:SA:17:1353,1,"Pasteur",48.838178,2.179552,,1,,Europe/Paris,,OIF, +OIF:SA:17:1354,1,"Hôpital",48.838373,2.171236,,1,,Europe/Paris,,OIF, +OIF:SA:17:1355,1,"Stade de la Marche",48.837728,2.161949,,1,,Europe/Paris,,OIF, +OIF:SA:17:1356,1,"Fer Rouge",48.837595,2.155619,,1,,Europe/Paris,,OIF, +OIF:SA:17:1358,1,"Route des Puits",48.836933,2.145496,,1,,Europe/Paris,,OIF, +OIF:SA:17:1359,1,"Place de Verdun",48.836371,2.140172,,1,,Europe/Paris,,OIF, +OIF:SA:17:1360,1,"Jules Verne",48.835453,2.132871,,1,,Europe/Paris,,OIF, +OIF:SA:17:1361,1,"Bel Air",48.836148,2.129565,,1,,Europe/Paris,,OIF, +OIF:SA:17:1378,1,"Frédéric Clément",48.839185,2.188617,,1,,Europe/Paris,,OIF, +OIF:SA:17:1388,1,"Pont de Saint-Cloud / Rive Gauche",48.841082,2.222067,,1,,Europe/Paris,,OIF, +OIF:SA:17:1402,1,"Legeay de Lesser",48.826111,2.195298,,1,,Europe/Paris,,OIF, +OIF:SA:17:1403,1,"Église",48.826759,2.188777,,1,,Europe/Paris,,OIF, +OIF:SA:17:1405,1,"Mairie",48.83029,2.177344,,1,,Europe/Paris,,OIF, +OIF:SA:17:1420,1,"Sevres Ville d'Avray Gare SNCF Rive Droite",48.826299,2.200551,,1,,Europe/Paris,,OIF, +OIF:SA:17:1421,1,"Pré Verdy",48.825794,2.20431,,1,,Europe/Paris,,OIF, +OIF:SA:17:1422,1,"Square de la Forge",48.82424,2.208016,,1,,Europe/Paris,,OIF, +OIF:SA:17:1423,1,"Place du Théâtre / Marche Saint-Romain",48.823649,2.211223,,1,,Europe/Paris,,OIF, +OIF:SA:17:1444,1,"Saint-Cucufa",48.862411,2.171524,,1,,Europe/Paris,,OIF, +OIF:SA:17:1460,1,"Mairie",48.878064,2.181288,,1,,Europe/Paris,,OIF, +OIF:SA:17:1461,1,"Église",48.876118,2.180223,,1,,Europe/Paris,,OIF, +OIF:SA:17:1462,1,"Richelieu",48.873212,2.182198,,1,,Europe/Paris,,OIF, +OIF:SA:17:1486,1,"Porte des Hauts de Seine",48.814628,2.157645,,1,,Europe/Paris,,OIF, +OIF:SA:17:1487,1,"Porte Verte",48.817434,2.163144,,1,,Europe/Paris,,OIF, +OIF:SA:17:1488,1,"Fausses Reposes",48.818408,2.165986,,1,,Europe/Paris,,OIF, +OIF:SA:17:1489,1,"Les Peupliers",48.8195,2.169177,,1,,Europe/Paris,,OIF, +OIF:SA:17:1490,1,"Les Sapins Bleus",48.821126,2.175224,,1,,Europe/Paris,,OIF, +OIF:SA:17:1491,1,"Les Étangs",48.821814,2.18205,,1,,Europe/Paris,,OIF, +OIF:SA:17:1492,1,"Jean Rostand",48.824722,2.186492,,1,,Europe/Paris,,OIF, +OIF:SA:17:1493,1,"Musset",48.823994,2.187599,,1,,Europe/Paris,,OIF, +OIF:SA:17:1494,1,"La Ronce",48.822573,2.190251,,1,,Europe/Paris,,OIF, +OIF:SA:17:1495,1,"Cote d'Argent",48.823897,2.196624,,1,,Europe/Paris,,OIF, +OIF:SA:17:1496,1,"Desvallières",48.825175,2.197961,,1,,Europe/Paris,,OIF, +OIF:SA:17:1498,1,"Albert Dammouse",48.819953,2.214151,,1,,Europe/Paris,,OIF, +OIF:SA:17:1499,1,"Stade des Fontaines",48.817222,2.215451,,1,,Europe/Paris,,OIF, +OIF:SA:17:1500,1,"Wolfenbuttel",48.814129,2.213811,,1,,Europe/Paris,,OIF, +OIF:SA:17:1501,1,"Docteur Roux",48.811727,2.211585,,1,,Europe/Paris,,OIF, +OIF:SA:17:1502,1,"Verrières",48.810825,2.209111,,1,,Europe/Paris,,OIF, +OIF:SA:17:1503,1,"Hauts de Sevres",48.80946,2.206141,,1,,Europe/Paris,,OIF, +OIF:SA:17:1504,1,"Pave des Gardes",48.808585,2.195019,,1,,Europe/Paris,,OIF, +OIF:SA:17:1505,1,"De Gaulle",48.810621,2.191992,,1,,Europe/Paris,,OIF, +OIF:SA:17:1506,1,"Mairie",48.809418,2.188839,,1,,Europe/Paris,,OIF, +OIF:SA:17:1509,1,"Résistance",48.809597,2.186293,,1,,Europe/Paris,,OIF, +OIF:SA:17:1510,1,"Puits Sans Vin",48.808189,2.18782,,1,,Europe/Paris,,OIF, +OIF:SA:17:1514,1,"Les Postillons les Bruyères",48.812007,2.212877,,1,,Europe/Paris,,OIF, +OIF:SA:17:1515,1,"Cimetière",48.81436,2.211606,,1,,Europe/Paris,,OIF, +OIF:SA:17:1516,1,"Châtaigneraie",48.818185,2.208358,,1,,Europe/Paris,,OIF, +OIF:SA:17:1517,1,"Ermitage",48.819483,2.211376,,1,,Europe/Paris,,OIF, +OIF:SA:17:1519,1,"Les Binelles",48.822271,2.222149,,1,,Europe/Paris,,OIF, +OIF:SA:17:1520,1,"Brimborion / Division Leclerc",48.823067,2.221462,,1,,Europe/Paris,,OIF, +OIF:SA:17:1521,1,"Carrier Belleuse",48.824692,2.21625,,1,,Europe/Paris,,OIF, +OIF:SA:17:1522,1,"Ernest Chapelet",48.826407,2.215266,,1,,Europe/Paris,,OIF, +OIF:SA:17:1523,1,"Lycée",48.826169,2.211128,,1,,Europe/Paris,,OIF, +OIF:SA:17:1524,1,"La Louve",48.827083,2.208063,,1,,Europe/Paris,,OIF, +OIF:SA:17:1525,1,"Fontanelles",48.827872,2.205938,,1,,Europe/Paris,,OIF, +OIF:SA:17:1541,1,"La Bérangère",48.856687,2.211259,,1,,Europe/Paris,,OIF, +OIF:SA:17:1542,1,"Marie Bonaparte",48.852712,2.213279,,1,,Europe/Paris,,OIF, +OIF:SA:17:1543,1,"Lycée Alexandre Dumas",48.849393,2.213867,,1,,Europe/Paris,,OIF, +OIF:SA:17:1545,1,"Montretout",48.84701,2.213956,,1,,Europe/Paris,,OIF, +OIF:SA:17:1574,1,"Église",48.847696,2.208244,,1,,Europe/Paris,,OIF, +OIF:SA:17:1575,1,"Cimetière",48.847969,2.204828,,1,,Europe/Paris,,OIF, +OIF:SA:17:1583,1,"Croix Rouge",48.861949,2.117951,,1,,Europe/Paris,,OIF, +OIF:SA:17:1584,1,"Église",48.860937,2.115061,,1,,Europe/Paris,,OIF, +OIF:SA:17:1585,1,"Mairie",48.861812,2.112183,,1,,Europe/Paris,,OIF, +OIF:SA:17:1587,1,"Val de Seine",48.866498,2.111489,,1,,Europe/Paris,,OIF, +OIF:SA:17:1588,1,"Clairefontaine",48.866145,2.107744,,1,,Europe/Paris,,OIF, +OIF:SA:17:1589,1,"Plainchamps",48.891247,2.200323,,1,,Europe/Paris,,OIF, +OIF:SA:17:1590,1,"Place de la Boule",48.887333,2.200491,,1,,Europe/Paris,,OIF, +OIF:SA:17:1591,1,"Boulevard National",48.884127,2.192532,,1,,Europe/Paris,,OIF, +OIF:SA:17:1597,1,"Hôpital Stell",48.876343,2.185851,,1,,Europe/Paris,,OIF, +OIF:SA:17:1602,1,"Piscine",48.845741,2.188752,,1,,Europe/Paris,,OIF, +OIF:SA:17:1614,1,"Pré au Bois",48.84661,2.169576,,1,,Europe/Paris,,OIF, +OIF:SA:17:1615,1,"Suresnes",48.847364,2.181935,,1,,Europe/Paris,,OIF, +OIF:SA:17:1616,1,"Marquis de Mores",48.851777,2.192783,,1,,Europe/Paris,,OIF, +OIF:SA:17:1622,1,"Pompidou",48.874885,2.232897,,1,,Europe/Paris,,OIF, +OIF:SA:17:1623,1,"Jean Macé",48.872963,2.22917,,1,,Europe/Paris,,OIF, +OIF:SA:17:1624,1,"Henri IV",48.870341,2.227497,,1,,Europe/Paris,,OIF, +OIF:SA:17:1625,1,"Général de Gaulle",48.869685,2.224229,,1,,Europe/Paris,,OIF, +OIF:SA:17:1627,1,"Garibaldi",48.862682,2.217684,,1,,Europe/Paris,,OIF, +OIF:SA:17:1633,1,"Mairie",48.870776,2.224603,,1,,Europe/Paris,,OIF, +OIF:SA:17:1634,1,"Pages",48.871634,2.23061,,1,,Europe/Paris,,OIF, +OIF:SA:17:1635,1,"Commandant Rivière",48.873987,2.233739,,1,,Europe/Paris,,OIF, +OIF:SA:18:10013,1,"Gandillet",48.917241,2.181339,,1,,Europe/Paris,,OIF, +OIF:SA:18:10021,1,"Pasteur",48.918918,2.188851,,1,,Europe/Paris,,OIF, +OIF:SA:18:10029,1,"Daubigny",48.913582,2.201593,,1,,Europe/Paris,,OIF, +OIF:SA:18:10031,1,"Salvador Allende",48.915813,2.207341,,1,,Europe/Paris,,OIF, +OIF:SA:18:10035,1,"Marcel Paul",48.917812,2.2117,,1,,Europe/Paris,,OIF, +OIF:SA:18:10039,1,"Germinal",48.920587,2.20945,,1,,Europe/Paris,,OIF, +OIF:SA:18:10041,1,"Louis Rameau",48.920711,2.213123,,1,,Europe/Paris,,OIF, +OIF:SA:18:1017,1,"Les Perriers",48.951985,2.186862,,1,,Europe/Paris,,OIF, +OIF:SA:18:1020,1,"La Berthie",48.937679,2.206963,,1,,Europe/Paris,,OIF, +OIF:SA:18:104,1,"Charles de Gaulle/Barbusse",48.940493,2.245041,,1,,Europe/Paris,,OIF, +OIF:SA:18:106,1,"Jean Poulmarch",48.952308,2.213606,,1,,Europe/Paris,,OIF, +OIF:SA:18:108,1,"Marceau Guillot",48.954958,2.242181,,1,,Europe/Paris,,OIF, +OIF:SA:18:11,1,"Hôtel de Ville",48.946743,2.249355,,1,,Europe/Paris,,OIF, +OIF:SA:18:112,1,"Héloïse",48.939587,2.248391,,1,,Europe/Paris,,OIF, +OIF:SA:18:114,1,"Hôpital Victor Dupouy",48.945909,2.238791,,1,,Europe/Paris,,OIF, +OIF:SA:18:116,1,"Collège A.Camus",48.941212,2.214052,,1,,Europe/Paris,,OIF, +OIF:SA:18:12,1,"Aristide Briand",48.948959,2.256328,,1,,Europe/Paris,,OIF, +OIF:SA:18:122,1,"École Lapierre",48.960621,2.246034,,1,,Europe/Paris,,OIF, +OIF:SA:18:123,1,"Fernand Léger",48.950254,2.226553,,1,,Europe/Paris,,OIF, +OIF:SA:18:125,1,"Square Aquitaine",48.944965,2.231673,,1,,Europe/Paris,,OIF, +OIF:SA:18:127,1,"Liserons",48.941483,2.209423,,1,,Europe/Paris,,OIF, +OIF:SA:18:129,1,"Jaurès / Leclerc",48.939495,2.228363,,1,,Europe/Paris,,OIF, +OIF:SA:18:131,1,"Anatole Lucas",48.95571,2.244643,,1,,Europe/Paris,,OIF, +OIF:SA:18:133,1,"Espace Nelson Mandela",48.937651,2.227514,,1,,Europe/Paris,,OIF, +OIF:SA:18:135,1,"Marjolaine",48.942641,2.216684,,1,,Europe/Paris,,OIF, +OIF:SA:18:136,1,"Marché des Côteaux",48.960766,2.233886,,1,,Europe/Paris,,OIF, +OIF:SA:18:138,1,"Montigny",48.946958,2.211012,,1,,Europe/Paris,,OIF, +OIF:SA:18:14,1,"Clément Ader",48.942517,2.243343,,1,,Europe/Paris,,OIF, +OIF:SA:18:140,1,"Morinval",48.960063,2.248893,,1,,Europe/Paris,,OIF, +OIF:SA:18:142,1,"Jean Moulin",48.940199,2.238095,,1,,Europe/Paris,,OIF, +OIF:SA:18:144,1,"Nobleterre",48.958616,2.254368,,1,,Europe/Paris,,OIF, +OIF:SA:18:145,1,"Rue du Nord",48.956591,2.256115,,1,,Europe/Paris,,OIF, +OIF:SA:18:147,1,"Stalingrad",48.952113,2.267085,,1,,Europe/Paris,,OIF, +OIF:SA:18:150,1,"Passemay",48.960229,2.226129,,1,,Europe/Paris,,OIF, +OIF:SA:18:151,1,"Place Chauvelot",48.957295,2.287347,,1,,Europe/Paris,,OIF, +OIF:SA:18:153,1,"Paul Vaillant Couturier",48.944107,2.251008,,1,,Europe/Paris,,OIF, +OIF:SA:18:155,1,"Place Léopold Hirsch",48.94356,2.228607,,1,,Europe/Paris,,OIF, +OIF:SA:18:157,1,"Piscine / Collège Ariane",48.960906,2.254982,,1,,Europe/Paris,,OIF, +OIF:SA:18:159,1,"Petit Marly",48.938117,2.246017,,1,,Europe/Paris,,OIF, +OIF:SA:18:16,1,"Jean Allemane",48.950431,2.253683,,1,,Europe/Paris,,OIF, +OIF:SA:18:161,1,"Fosse aux Loups",48.950655,2.208593,,1,,Europe/Paris,,OIF, +OIF:SA:18:163,1,"Place François Rabelais",48.946652,2.232912,,1,,Europe/Paris,,OIF, +OIF:SA:18:165,1,"Lycée Jean Jaurès",48.940309,2.22551,,1,,Europe/Paris,,OIF, +OIF:SA:18:167,1,"Prudhon",48.943706,2.241704,,1,,Europe/Paris,,OIF, +OIF:SA:18:169,1,"Pyrénées",48.964664,2.236874,,1,,Europe/Paris,,OIF, +OIF:SA:18:170,1,"Saint-Quentin",48.955895,2.250647,,1,,Europe/Paris,,OIF, +OIF:SA:18:174,1,"Rue de la Bérionne",48.950856,2.221776,,1,,Europe/Paris,,OIF, +OIF:SA:18:176,1,"René Briand",48.959381,2.244377,,1,,Europe/Paris,,OIF, +OIF:SA:18:177,1,"Reichsteiner",48.947682,2.243913,,1,,Europe/Paris,,OIF, +OIF:SA:18:179,1,"Résedas",48.942692,2.213574,,1,,Europe/Paris,,OIF, +OIF:SA:18:18,1,"Érables",48.946196,2.217161,,1,,Europe/Paris,,OIF, +OIF:SA:18:180,1,"Rethondes",48.94443,2.226101,,1,,Europe/Paris,,OIF, +OIF:SA:18:183,1,"Rosières",48.965861,2.233746,,1,,Europe/Paris,,OIF, +OIF:SA:18:185,1,"Petite Ruelle",48.963329,2.236645,,1,,Europe/Paris,,OIF, +OIF:SA:18:187,1,"Moulin Sarrazin",48.94252,2.229613,,1,,Europe/Paris,,OIF, +OIF:SA:18:189,1,"Alouettes",48.940863,2.217849,,1,,Europe/Paris,,OIF, +OIF:SA:18:19133,1,"Collège Colette - Lycée Evariste Galois",48.928526,2.164136,,1,,Europe/Paris,,OIF, +OIF:SA:18:192,1,"Temple",48.948607,2.245447,,1,,Europe/Paris,,OIF, +OIF:SA:18:194,1,"Gandon Téxier",48.94185,2.24167,,1,,Europe/Paris,,OIF, +OIF:SA:18:19481,1,"Zola",48.9243,2.208776,,1,,Europe/Paris,,OIF, +OIF:SA:18:19485,1,"Salonique",48.952249,2.208912,,1,,Europe/Paris,,OIF, +OIF:SA:18:19486,1,"L'Angoumois",48.955895,2.206515,,1,,Europe/Paris,,OIF, +OIF:SA:18:19487,1,"Chemin Vert",48.957489,2.209527,,1,,Europe/Paris,,OIF, +OIF:SA:18:19488,1,"J Vercruysse",48.955038,2.212071,,1,,Europe/Paris,,OIF, +OIF:SA:18:19490,1,"Douce Fève",48.963232,2.228251,,1,,Europe/Paris,,OIF, +OIF:SA:18:19491,1,"Robespierre",48.96059,2.228031,,1,,Europe/Paris,,OIF, +OIF:SA:18:19492,1,"Brigadières",48.932803,2.219463,,1,,Europe/Paris,,OIF, +OIF:SA:18:19495,1,"Colmar",48.927102,2.177373,,1,,Europe/Paris,,OIF, +OIF:SA:18:19496,1,"Diderot",48.923914,2.17906,,1,,Europe/Paris,,OIF, +OIF:SA:18:19499,1,"Henri Barbusse",48.93892,2.191524,,1,,Europe/Paris,,OIF, +OIF:SA:18:19501,1,"Cloviers",48.955183,2.254988,,1,,Europe/Paris,,OIF, +OIF:SA:18:19503,1,"C Michels",48.948817,2.209493,,1,,Europe/Paris,,OIF, +OIF:SA:18:19506,1,"Robert Schumann",48.948264,2.193913,,1,,Europe/Paris,,OIF, +OIF:SA:18:19508,1,"Sureaux",48.948166,2.206261,,1,,Europe/Paris,,OIF, +OIF:SA:18:19509,1,"Sureaux",48.948182,2.206008,,1,,Europe/Paris,,OIF, +OIF:SA:18:19512,1,"Grâce de Dieu",48.927501,2.215689,,1,,Europe/Paris,,OIF, +OIF:SA:18:19514,1,"Henri Barbusse",48.925553,2.211305,,1,,Europe/Paris,,OIF, +OIF:SA:18:19527,1,"La Rivière",48.914603,2.20398,,1,,Europe/Paris,,OIF, +OIF:SA:18:19539,1,"Lycée de Carrières",48.914802,2.171356,,1,,Europe/Paris,,OIF, +OIF:SA:18:19547,1,"Antonin Georges Belin",48.946103,2.247226,,1,,Europe/Paris,,OIF, +OIF:SA:18:19556,1,"Trembleaux",48.952517,2.183771,,1,,Europe/Paris,,OIF, +OIF:SA:18:19558,1,"Marguerite",48.939714,2.216588,,1,,Europe/Paris,,OIF, +OIF:SA:18:19559,1,"Gibet",48.938079,2.217023,,1,,Europe/Paris,,OIF, +OIF:SA:18:19560,1,"Justice",48.934726,2.215896,,1,,Europe/Paris,,OIF, +OIF:SA:18:19561,1,"Albert 1er",48.933978,2.208411,,1,,Europe/Paris,,OIF, +OIF:SA:18:19563,1,"Val Notre-Dame",48.941702,2.20706,,1,,Europe/Paris,,OIF, +OIF:SA:18:19564,1,"Le Prunet",48.943186,2.209937,,1,,Europe/Paris,,OIF, +OIF:SA:18:19565,1,"4 Chemins",48.943972,2.185031,,1,,Europe/Paris,,OIF, +OIF:SA:18:19575,1,"Avenue du Marais",48.931788,2.234367,,1,,Europe/Paris,,OIF, +OIF:SA:18:19578,1,"Calmette",48.92258,2.204402,,1,,Europe/Paris,,OIF, +OIF:SA:18:19593,1,"Rond-Point du Cormier",48.959216,2.202537,,1,,Europe/Paris,,OIF, +OIF:SA:18:19597,1,"Place des Arts",48.95829,2.197428,,1,,Europe/Paris,,OIF, +OIF:SA:18:19599,1,"Collège Louis Hayet",48.958898,2.191048,,1,,Europe/Paris,,OIF, +OIF:SA:18:196,1,"Jean Pierre Timbaud",48.947601,2.215704,,1,,Europe/Paris,,OIF, +OIF:SA:18:19600,1,"Les Écrivains",48.959522,2.188958,,1,,Europe/Paris,,OIF, +OIF:SA:18:19602,1,"Allée des Fauvettes",48.961732,2.190246,,1,,Europe/Paris,,OIF, +OIF:SA:18:19604,1,"Edouard Imbs",48.963945,2.191639,,1,,Europe/Paris,,OIF, +OIF:SA:18:19608,1,"Les Coudrées",48.951598,2.202347,,1,,Europe/Paris,,OIF, +OIF:SA:18:19609,1,"Les Bruyères",48.955212,2.202151,,1,,Europe/Paris,,OIF, +OIF:SA:18:19616,1,"Val d'Or",48.974122,2.189244,,1,,Europe/Paris,,OIF, +OIF:SA:18:19634,1,"Île de France",48.955175,2.289001,,1,,Europe/Paris,,OIF, +OIF:SA:18:19641,1,"Le Moulin",48.969452,2.234325,,1,,Europe/Paris,,OIF, +OIF:SA:18:19643,1,"Champagne / Roussillon",48.962095,2.24557,,1,,Europe/Paris,,OIF, +OIF:SA:18:19669,1,"Dunkerque",48.960528,2.293464,,1,,Europe/Paris,,OIF, +OIF:SA:18:19676,1,"Aristide Briand",48.97044,2.193554,,1,,Europe/Paris,,OIF, +OIF:SA:18:19683,1,"Général Delambre",48.930689,2.228288,,1,,Europe/Paris,,OIF, +OIF:SA:18:19687,1,"Jean Borderel",48.942748,2.252802,,1,,Europe/Paris,,OIF, +OIF:SA:18:198,1,"Troupeau",48.946054,2.223874,,1,,Europe/Paris,,OIF, +OIF:SA:18:20,1,"Balsamines",48.958747,2.255477,,1,,Europe/Paris,,OIF, +OIF:SA:18:200,1,"Henri Vasseur",48.950521,2.263309,,1,,Europe/Paris,,OIF, +OIF:SA:18:202,1,"Vaucelle",48.954051,2.271908,,1,,Europe/Paris,,OIF, +OIF:SA:18:204,1,"Victoire",48.946401,2.220121,,1,,Europe/Paris,,OIF, +OIF:SA:18:206,1,"Les Champioux",48.940587,2.222213,,1,,Europe/Paris,,OIF, +OIF:SA:18:21,1,"Beethoven",48.954211,2.220039,,1,,Europe/Paris,,OIF, +OIF:SA:18:210,1,"Violettes",48.945262,2.213513,,1,,Europe/Paris,,OIF, +OIF:SA:18:211,1,"Grande Voie",48.959763,2.238549,,1,,Europe/Paris,,OIF, +OIF:SA:18:219,1,"Anjou",48.930803,2.20752,,1,,Europe/Paris,,OIF, +OIF:SA:18:224,1,"J S Bach",48.934648,2.218834,,1,,Europe/Paris,,OIF, +OIF:SA:18:2241,1,"4 Septembre",48.920274,2.185944,,1,,Europe/Paris,,OIF, +OIF:SA:18:232,1,"Joliot Curie",48.933067,2.205085,,1,,Europe/Paris,,OIF, +OIF:SA:18:236,1,"Paul Éluard",48.931534,2.208663,,1,,Europe/Paris,,OIF, +OIF:SA:18:237,1,"Colonel Fabien",48.93317,2.215193,,1,,Europe/Paris,,OIF, +OIF:SA:18:239,1,"Victor Hugo",48.927599,2.223215,,1,,Europe/Paris,,OIF, +OIF:SA:18:242,1,"Lilas",48.930451,2.218488,,1,,Europe/Paris,,OIF, +OIF:SA:18:245,1,"Parmentier",48.931612,2.214466,,1,,Europe/Paris,,OIF, +OIF:SA:18:248,1,"P. Potdevin",48.935368,2.203713,,1,,Europe/Paris,,OIF, +OIF:SA:18:250,1,"Francis de Préssensé",48.930264,2.221727,,1,,Europe/Paris,,OIF, +OIF:SA:18:252,1,"Docteur Rouquès",48.92785,2.21083,,1,,Europe/Paris,,OIF, +OIF:SA:18:253,1,"Sacco et Vanzetti",48.936657,2.205083,,1,,Europe/Paris,,OIF, +OIF:SA:18:257,1,"Edouard Vaillant",48.927566,2.213251,,1,,Europe/Paris,,OIF, +OIF:SA:18:29,1,"Bérionne",48.952794,2.22155,,1,,Europe/Paris,,OIF, +OIF:SA:18:31,1,"Pont Blanc",48.95328,2.254237,,1,,Europe/Paris,,OIF, +OIF:SA:18:35,1,"Bretagne",48.945907,2.234179,,1,,Europe/Paris,,OIF, +OIF:SA:18:365,1,"Limite des Départements",48.965518,2.300272,,1,,Europe/Paris,,OIF, +OIF:SA:18:368,1,"Casino",48.969124,2.304833,,1,,Europe/Paris,,OIF, +OIF:SA:18:37,1,"Maurice Utrillo",48.939831,2.23436,,1,,Europe/Paris,,OIF, +OIF:SA:18:388,1,"Mairie",48.969961,2.308882,,1,,Europe/Paris,,OIF, +OIF:SA:18:39,1,"Calais",48.944158,2.244987,,1,,Europe/Paris,,OIF, +OIF:SA:18:403,1,"Rue de Saint-Gratien",48.96348,2.297535,,1,,Europe/Paris,,OIF, +OIF:SA:18:423,1,"Chanzy",48.929741,2.181532,,1,,Europe/Paris,,OIF, +OIF:SA:18:426,1,"Concorde",48.924248,2.173604,,1,,Europe/Paris,,OIF, +OIF:SA:18:427,1,"Condorcet",48.930709,2.176325,,1,,Europe/Paris,,OIF, +OIF:SA:18:43,1,"Martyrs de Chateaubriant",48.952848,2.218236,,1,,Europe/Paris,,OIF, +OIF:SA:18:436,1,"Victor Hugo",48.925693,2.175105,,1,,Europe/Paris,,OIF, +OIF:SA:18:437,1,"Kennedy",48.922555,2.177796,,1,,Europe/Paris,,OIF, +OIF:SA:18:438,1,"Lavoisier",48.929472,2.175565,,1,,Europe/Paris,,OIF, +OIF:SA:18:441,1,"Marine",48.921967,2.174961,,1,,Europe/Paris,,OIF, +OIF:SA:18:443,1,"La Paix - la Passerelle",48.927576,2.172182,,1,,Europe/Paris,,OIF, +OIF:SA:18:445,1,"Pont",48.923352,2.178975,,1,,Europe/Paris,,OIF, +OIF:SA:18:446,1,"Solférino",48.927716,2.172761,,1,,Europe/Paris,,OIF, +OIF:SA:18:45,1,"Champguérin",48.956588,2.282715,,1,,Europe/Paris,,OIF, +OIF:SA:18:47,1,"Chanteloup",48.949274,2.217502,,1,,Europe/Paris,,OIF, +OIF:SA:18:50,1,"Charcot",48.946779,2.237532,,1,,Europe/Paris,,OIF, +OIF:SA:18:52,1,"Châtaigniers",48.960819,2.252258,,1,,Europe/Paris,,OIF, +OIF:SA:18:54,1,"Clémenceau",48.958277,2.239398,,1,,Europe/Paris,,OIF, +OIF:SA:18:567,1,"Joffre",48.96899,2.23531,,1,,Europe/Paris,,OIF, +OIF:SA:18:570,1,"Romain Rolland",48.968943,2.23314,,1,,Europe/Paris,,OIF, +OIF:SA:18:58,1,"Collège Claude Monet",48.955419,2.221695,,1,,Europe/Paris,,OIF, +OIF:SA:18:60,1,"Route de Cormeilles",48.956189,2.231395,,1,,Europe/Paris,,OIF, +OIF:SA:18:62,1,"Pierre de Coubertin",48.956136,2.227188,,1,,Europe/Paris,,OIF, +OIF:SA:18:636,1,"MJC",48.944595,2.159773,,1,,Europe/Paris,,OIF, +OIF:SA:18:638,1,"Aboukir",48.925794,2.158297,,1,,Europe/Paris,,OIF, +OIF:SA:18:64,1,"Rue de Coudray",48.954559,2.230621,,1,,Europe/Paris,,OIF, +OIF:SA:18:640,1,"Alphonse Allais",48.941229,2.185417,,1,,Europe/Paris,,OIF, +OIF:SA:18:642,1,"Barian",48.938348,2.200222,,1,,Europe/Paris,,OIF, +OIF:SA:18:644,1,"Baudin",48.942092,2.17984,,1,,Europe/Paris,,OIF, +OIF:SA:18:645,1,"Claude Bernard",48.927706,2.156694,,1,,Europe/Paris,,OIF, +OIF:SA:18:647,1,"Berry",48.946132,2.204868,,1,,Europe/Paris,,OIF, +OIF:SA:18:649,1,"Boulevard de Bezons",48.939507,2.190445,,1,,Europe/Paris,,OIF, +OIF:SA:18:651,1,"Bordin",48.947148,2.164234,,1,,Europe/Paris,,OIF, +OIF:SA:18:656,1,"Centre Commercial",48.948854,2.198434,,1,,Europe/Paris,,OIF, +OIF:SA:18:658,1,"Rue de Chatou",48.943114,2.189934,,1,,Europe/Paris,,OIF, +OIF:SA:18:66,1,"Courlis",48.945149,2.216713,,1,,Europe/Paris,,OIF, +OIF:SA:18:662,1,"Clémenceau",48.942557,2.192313,,1,,Europe/Paris,,OIF, +OIF:SA:18:668,1,"Condorcet",48.941637,2.202202,,1,,Europe/Paris,,OIF, +OIF:SA:18:669,1,"Convention",48.934052,2.166991,,1,,Europe/Paris,,OIF, +OIF:SA:18:671,1,"Courteline",48.937522,2.179337,,1,,Europe/Paris,,OIF, +OIF:SA:18:675,1,"Joliot Curie",48.942639,2.181828,,1,,Europe/Paris,,OIF, +OIF:SA:18:677,1,"Martial Déchard",48.947588,2.170978,,1,,Europe/Paris,,OIF, +OIF:SA:18:680,1,"Église",48.94548,2.1738,,1,,Europe/Paris,,OIF, +OIF:SA:18:682,1,"Saint-Exupéry",48.944667,2.194627,,1,,Europe/Paris,,OIF, +OIF:SA:18:684,1,"Flaubert",48.946702,2.194678,,1,,Europe/Paris,,OIF, +OIF:SA:18:687,1,"Florian",48.942153,2.197763,,1,,Europe/Paris,,OIF, +OIF:SA:18:688,1,"Franklin",48.932345,2.156796,,1,,Europe/Paris,,OIF, +OIF:SA:18:69,1,"Ambroise Croizat",48.951412,2.21635,,1,,Europe/Paris,,OIF, +OIF:SA:18:690,1,"Fresnel",48.931505,2.170979,,1,,Europe/Paris,,OIF, +OIF:SA:18:698,1,"Charles de Gaulle",48.944757,2.181422,,1,,Europe/Paris,,OIF, +OIF:SA:18:700,1,"Grétry",48.941686,2.18284,,1,,Europe/Paris,,OIF, +OIF:SA:18:701,1,"Cité des Indes",48.946198,2.201784,,1,,Europe/Paris,,OIF, +OIF:SA:18:703,1,"Jouhaux",48.949317,2.193453,,1,,Europe/Paris,,OIF, +OIF:SA:18:705,1,"Lamartine",48.934864,2.162426,,1,,Europe/Paris,,OIF, +OIF:SA:18:71,1,"Pierre Curie",48.952317,2.243598,,1,,Europe/Paris,,OIF, +OIF:SA:18:710,1,"Masures",48.942995,2.164159,,1,,Europe/Paris,,OIF, +OIF:SA:18:712,1,"Rue Guy de Maupassant",48.948763,2.167653,,1,,Europe/Paris,,OIF, +OIF:SA:18:716,1,"Jolis Monts",48.939314,2.180795,,1,,Europe/Paris,,OIF, +OIF:SA:18:717,1,"Neruda",48.946308,2.188597,,1,,Europe/Paris,,OIF, +OIF:SA:18:719,1,"Mont Olivet",48.946677,2.172846,,1,,Europe/Paris,,OIF, +OIF:SA:18:721,1,"Parmentier",48.930547,2.163648,,1,,Europe/Paris,,OIF, +OIF:SA:18:723,1,"Pavillons",48.928407,2.16126,,1,,Europe/Paris,,OIF, +OIF:SA:18:725,1,"Paul Bert",48.942435,2.19465,,1,,Europe/Paris,,OIF, +OIF:SA:18:729,1,"Gabriel Péri",48.940443,2.178941,,1,,Europe/Paris,,OIF, +OIF:SA:18:732,1,"Picardie",48.945005,2.177801,,1,,Europe/Paris,,OIF, +OIF:SA:18:734,1,"Pierson",48.938153,2.188907,,1,,Europe/Paris,,OIF, +OIF:SA:18:736,1,"La Plaine",48.929421,2.169265,,1,,Europe/Paris,,OIF, +OIF:SA:18:738,1,"Plateau",48.936028,2.201272,,1,,Europe/Paris,,OIF, +OIF:SA:18:740,1,"Poste",48.941055,2.161058,,1,,Europe/Paris,,OIF, +OIF:SA:18:742,1,"Calmette Guérin",48.94951,2.188775,,1,,Europe/Paris,,OIF, +OIF:SA:18:744,1,"Renoir",48.937359,2.19751,,1,,Europe/Paris,,OIF, +OIF:SA:18:746,1,"Roosevelt",48.944861,2.171322,,1,,Europe/Paris,,OIF, +OIF:SA:18:747,1,"Docteur Roux",48.946224,2.168281,,1,,Europe/Paris,,OIF, +OIF:SA:18:748,1,"Rudolph",48.933548,2.172893,,1,,Europe/Paris,,OIF, +OIF:SA:18:752,1,"Suger",48.944089,2.167596,,1,,Europe/Paris,,OIF, +OIF:SA:18:753,1,"Temple",48.943941,2.165844,,1,,Europe/Paris,,OIF, +OIF:SA:18:755,1,"Théâtre",48.940891,2.193642,,1,,Europe/Paris,,OIF, +OIF:SA:18:759,1,"Turgot",48.932163,2.165286,,1,,Europe/Paris,,OIF, +OIF:SA:18:760,1,"Edouard Vaillant",48.94236,2.172682,,1,,Europe/Paris,,OIF, +OIF:SA:18:762,1,"Mairie",48.942308,2.156384,,1,,Europe/Paris,,OIF, +OIF:SA:18:765,1,"Voltaire",48.93839,2.170964,,1,,Europe/Paris,,OIF, +OIF:SA:18:766,1,"Baratier",48.939755,2.229726,,1,,Europe/Paris,,OIF, +OIF:SA:18:776,1,"Milhaud",48.937759,2.170042,,1,,Europe/Paris,,OIF, +OIF:SA:18:78,1,"Marseillaise",48.934211,2.225755,,1,,Europe/Paris,,OIF, +OIF:SA:18:800,1,"Jean Lurçat",48.952171,2.228501,,1,,Europe/Paris,,OIF, +OIF:SA:18:803,1,"Romain Rolland",48.942305,2.202019,,1,,Europe/Paris,,OIF, +OIF:SA:18:81,1,"Craonne",48.960554,2.231571,,1,,Europe/Paris,,OIF, +OIF:SA:18:84,1,"Ernestine",48.94753,2.240683,,1,,Europe/Paris,,OIF, +OIF:SA:18:86,1,"Fanouillets",48.959683,2.2512,,1,,Europe/Paris,,OIF, +OIF:SA:18:87,1,"Léon Feix",48.948427,2.252449,,1,,Europe/Paris,,OIF, +OIF:SA:18:89,1,"Félifeu",48.953438,2.237451,,1,,Europe/Paris,,OIF, +OIF:SA:18:91,1,"Salle Jean Vilar",48.941407,2.251508,,1,,Europe/Paris,,OIF, +OIF:SA:20:1,1,"Gare Place Romagné",48.997569,2.098801,,1,,Europe/Paris,,OIF, +OIF:SA:20:100,1,"Eudoxie",48.991655,2.076094,,1,,Europe/Paris,,OIF, +OIF:SA:20:101,1,"Pont Rive Droite",48.991737,2.08275,,1,,Europe/Paris,,OIF, +OIF:SA:20:102,1,"Pont Eiffel",48.992445,2.075673,,1,,Europe/Paris,,OIF, +OIF:SA:20:104,1,"Van Gogh",48.998383,2.079071,,1,,Europe/Paris,,OIF, +OIF:SA:20:1056,1,"Joffre",48.992803,2.087777,,1,,Europe/Paris,,OIF, +OIF:SA:20:1057,1,"Mairie",48.994089,2.094893,,1,,Europe/Paris,,OIF, +OIF:SA:20:1059,1,"Cité des Tilleuls",48.942063,2.126723,,1,,Europe/Paris,,OIF, +OIF:SA:20:106,1,"Gabriel Péri",49.001391,2.075785,,1,,Europe/Paris,,OIF, +OIF:SA:20:1060,1,"Centre Social",48.960008,2.062878,,1,,Europe/Paris,,OIF, +OIF:SA:20:1062,1,"Mozart",48.96243,2.058137,,1,,Europe/Paris,,OIF, +OIF:SA:20:1063,1,"Les Maraîchers",48.964523,2.059476,,1,,Europe/Paris,,OIF, +OIF:SA:20:1064,1,"Les Souches",48.965904,2.060384,,1,,Europe/Paris,,OIF, +OIF:SA:20:1065,1,"Les Cottages",48.956238,2.071966,,1,,Europe/Paris,,OIF, +OIF:SA:20:107,1,"Résidence Seine et Oise",49.002683,2.080818,,1,,Europe/Paris,,OIF, +OIF:SA:20:108,1,"Sextant",49.005893,2.077934,,1,,Europe/Paris,,OIF, +OIF:SA:20:11,1,"Piscine Simone Weil",49.005254,2.088079,,1,,Europe/Paris,,OIF, +OIF:SA:20:110,1,"Thomson",49.007077,2.082812,,1,,Europe/Paris,,OIF, +OIF:SA:20:112,1,"Boutries Pont",49.006098,2.085193,,1,,Europe/Paris,,OIF, +OIF:SA:20:116,1,"Champs Gaillard",49.004551,2.091074,,1,,Europe/Paris,,OIF, +OIF:SA:20:118,1,"Maréchal Juin",49.00559,2.096089,,1,,Europe/Paris,,OIF, +OIF:SA:20:120,1,"Hautes Roches",49.006917,2.103548,,1,,Europe/Paris,,OIF, +OIF:SA:20:122,1,"Desvignes",49.007048,2.111135,,1,,Europe/Paris,,OIF, +OIF:SA:20:125,1,"Place de la Liberté",49.005337,2.116348,,1,,Europe/Paris,,OIF, +OIF:SA:20:127,1,"Berlioz",49.002395,2.119522,,1,,Europe/Paris,,OIF, +OIF:SA:20:129,1,"Culs Baillets",49.000699,2.118395,,1,,Europe/Paris,,OIF, +OIF:SA:20:131,1,"Dhéret",49.00004,2.116349,,1,,Europe/Paris,,OIF, +OIF:SA:20:133,1,"Collège des Hautes Rayes",48.99756,2.116776,,1,,Europe/Paris,,OIF, +OIF:SA:20:134,1,"Bois d'Aulne",49.012089,2.118087,,1,,Europe/Paris,,OIF, +OIF:SA:20:136,1,"Cimetière",49.006729,2.099581,,1,,Europe/Paris,,OIF, +OIF:SA:20:14,1,"Boutries Frères Damme",49.005146,2.085792,,1,,Europe/Paris,,OIF, +OIF:SA:20:140,1,"Allée des Bois",49.011186,2.129259,,1,,Europe/Paris,,OIF, +OIF:SA:20:142,1,"Allée de l'Escapade",49.013828,2.127011,,1,,Europe/Paris,,OIF, +OIF:SA:20:144,1,"Buttes Blanches",49.015373,2.125171,,1,,Europe/Paris,,OIF, +OIF:SA:20:146,1,"Jean Broutin",49.004978,2.102368,,1,,Europe/Paris,,OIF, +OIF:SA:20:148,1,"George Viard",49.001928,2.100661,,1,,Europe/Paris,,OIF, +OIF:SA:20:149,1,"Ballastière",48.978887,2.082545,,1,,Europe/Paris,,OIF, +OIF:SA:20:15,1,"Allende",49.002942,2.084362,,1,,Europe/Paris,,OIF, +OIF:SA:20:151,1,"Lycée Louise Weiss",48.970982,2.074228,,1,,Europe/Paris,,OIF, +OIF:SA:20:159,1,"Les Routiers",48.95552,2.066293,,1,,Europe/Paris,,OIF, +OIF:SA:20:165,1,"Rond-Point Technoparc",48.94942,2.061406,,1,,Europe/Paris,,OIF, +OIF:SA:20:168,1,"Avenue de Pontoise",48.936578,2.055663,,1,,Europe/Paris,,OIF, +OIF:SA:20:17,1,"Internat Montaigne",48.999675,2.08209,,1,,Europe/Paris,,OIF, +OIF:SA:20:170,1,"Quartier de Noailles",48.933502,2.050633,,1,,Europe/Paris,,OIF, +OIF:SA:20:178,1,"Lycée le Corbusier",48.923528,2.027827,,1,,Europe/Paris,,OIF, +OIF:SA:20:179,1,"Hôpital",48.917941,2.023489,,1,,Europe/Paris,,OIF, +OIF:SA:20:180,1,"Commissariat",48.927069,2.044145,,1,,Europe/Paris,,OIF, +OIF:SA:20:182,1,"Fernand Lefebvre",48.925287,2.05051,,1,,Europe/Paris,,OIF, +OIF:SA:20:183,1,"Les Terrasses",48.923481,2.054296,,1,,Europe/Paris,,OIF, +OIF:SA:20:185,1,"Golf",48.919669,2.060003,,1,,Europe/Paris,,OIF, +OIF:SA:20:187,1,"RD 190 / RN 184",48.909774,2.075088,,1,,Europe/Paris,,OIF, +OIF:SA:20:189,1,"Place Vauban",48.903832,2.083647,,1,,Europe/Paris,,OIF, +OIF:SA:20:193,1,"Stade",48.954811,2.072445,,1,,Europe/Paris,,OIF, +OIF:SA:20:194,1,"Légion d'Honneur",48.925373,2.082305,,1,,Europe/Paris,,OIF, +OIF:SA:20:198,1,"Lycée Technique",48.891883,2.064329,,1,,Europe/Paris,,OIF, +OIF:SA:20:199,1,"Collège des Hauts Grillets",48.89236,2.06479,,1,,Europe/Paris,,OIF, +OIF:SA:20:200,1,"École Notre-Dame",48.894308,2.075507,,1,,Europe/Paris,,OIF, +OIF:SA:20:212,1,"Mairie",48.946305,2.145646,,1,,Europe/Paris,,OIF, +OIF:SA:20:214,1,"Grille du Parc",48.947962,2.147605,,1,,Europe/Paris,,OIF, +OIF:SA:20:216,1,"Château",48.947988,2.151745,,1,,Europe/Paris,,OIF, +OIF:SA:20:220,1,"Wagram",48.951969,2.152503,,1,,Europe/Paris,,OIF, +OIF:SA:20:222,1,"Cours de l'Ermitage",48.954305,2.155653,,1,,Europe/Paris,,OIF, +OIF:SA:20:226,1,"Royal",48.947443,2.154688,,1,,Europe/Paris,,OIF, +OIF:SA:20:227,1,"Talma",48.949768,2.159333,,1,,Europe/Paris,,OIF, +OIF:SA:20:228,1,"Sully",48.952289,2.162531,,1,,Europe/Paris,,OIF, +OIF:SA:20:229,1,"Les Trois Chênes",48.953987,2.161911,,1,,Europe/Paris,,OIF, +OIF:SA:20:230,1,"Lesage",48.954837,2.159397,,1,,Europe/Paris,,OIF, +OIF:SA:20:231,1,"Place Charlemagne",48.955482,2.164035,,1,,Europe/Paris,,OIF, +OIF:SA:20:233,1,"Place Montaigne",48.958182,2.166933,,1,,Europe/Paris,,OIF, +OIF:SA:20:238,1,"Square le Kain",48.960159,2.166708,,1,,Europe/Paris,,OIF, +OIF:SA:20:239,1,"Mademoiselle Mars",48.960513,2.163431,,1,,Europe/Paris,,OIF, +OIF:SA:20:240,1,"Place Colbert",48.957901,2.159441,,1,,Europe/Paris,,OIF, +OIF:SA:20:241,1,"Place Napoléon",48.960221,2.154043,,1,,Europe/Paris,,OIF, +OIF:SA:20:243,1,"Parc des Sports",48.957924,2.151008,,1,,Europe/Paris,,OIF, +OIF:SA:20:245,1,"Benjamin Constant",48.95597,2.153812,,1,,Europe/Paris,,OIF, +OIF:SA:20:247,1,"Rue de Lorraine",48.95004,2.143654,,1,,Europe/Paris,,OIF, +OIF:SA:20:248,1,"Cocteau",48.951846,2.137657,,1,,Europe/Paris,,OIF, +OIF:SA:20:250,1,"Cimetière",48.950298,2.136094,,1,,Europe/Paris,,OIF, +OIF:SA:20:252,1,"Clos Fleuri",48.947669,2.133443,,1,,Europe/Paris,,OIF, +OIF:SA:20:254,1,"Saint-Nicolas",48.946399,2.137064,,1,,Europe/Paris,,OIF, +OIF:SA:20:256,1,"Club des Anciens",48.945991,2.140108,,1,,Europe/Paris,,OIF, +OIF:SA:20:258,1,"Rue des Loges",48.944144,2.137598,,1,,Europe/Paris,,OIF, +OIF:SA:20:260,1,"Rue du Tir",48.943904,2.133608,,1,,Europe/Paris,,OIF, +OIF:SA:20:262,1,"Rue de Romilly",48.943502,2.130042,,1,,Europe/Paris,,OIF, +OIF:SA:20:267,1,"Cité Grands Champs",48.940753,2.122625,,1,,Europe/Paris,,OIF, +OIF:SA:20:268,1,"Cité des Peupliers",48.940147,2.125588,,1,,Europe/Paris,,OIF, +OIF:SA:20:270,1,"Jean Jaurès",48.93915,2.131458,,1,,Europe/Paris,,OIF, +OIF:SA:20:272,1,"Croix Bosset",48.937398,2.133902,,1,,Europe/Paris,,OIF, +OIF:SA:20:274,1,"Rue du Repos",48.936411,2.129784,,1,,Europe/Paris,,OIF, +OIF:SA:20:276,1,"Marronniers",48.935563,2.12519,,1,,Europe/Paris,,OIF, +OIF:SA:20:278,1,"Pointe Sulle",48.931277,2.123346,,1,,Europe/Paris,,OIF, +OIF:SA:20:28,1,"École de la Batellerie",48.990341,2.085809,,1,,Europe/Paris,,OIF, +OIF:SA:20:280,1,"Mairie",48.927618,2.122638,,1,,Europe/Paris,,OIF, +OIF:SA:20:282,1,"Buisson Richard",48.925704,2.120348,,1,,Europe/Paris,,OIF, +OIF:SA:20:284,1,"Cheverrures",48.92447,2.11843,,1,,Europe/Paris,,OIF, +OIF:SA:20:286,1,"Strasbourg Curie",48.921839,2.115182,,1,,Europe/Paris,,OIF, +OIF:SA:20:288,1,"Strasbourg Paymal",48.922125,2.114083,,1,,Europe/Paris,,OIF, +OIF:SA:20:290,1,"Belloy Parc",48.918755,2.114404,,1,,Europe/Paris,,OIF, +OIF:SA:20:292,1,"Grille Royale",48.916384,2.112608,,1,,Europe/Paris,,OIF, +OIF:SA:20:293,1,"Hôpital des Courses",48.950583,2.151252,,1,,Europe/Paris,,OIF, +OIF:SA:20:30,1,"Place Fouillère",48.991357,2.090434,,1,,Europe/Paris,,OIF, +OIF:SA:20:309,1,"Château du Val",48.920876,2.10937,,1,,Europe/Paris,,OIF, +OIF:SA:20:32,1,"Rene Albert",48.991601,2.095396,,1,,Europe/Paris,,OIF, +OIF:SA:20:321,1,"Jules Verne",48.967246,2.07163,,1,,Europe/Paris,,OIF, +OIF:SA:20:323,1,"Foyer des Jeunes",48.965046,2.068236,,1,,Europe/Paris,,OIF, +OIF:SA:20:327,1,"Marcel Pagnol",48.966163,2.065446,,1,,Europe/Paris,,OIF, +OIF:SA:20:329,1,"Jean Jaurès",48.962167,2.064907,,1,,Europe/Paris,,OIF, +OIF:SA:20:333,1,"Pinson Rousseau",48.957585,2.063192,,1,,Europe/Paris,,OIF, +OIF:SA:20:335,1,"Grange Saint-Louis",48.955651,2.062478,,1,,Europe/Paris,,OIF, +OIF:SA:20:337,1,"Rocourt",48.953847,2.063484,,1,,Europe/Paris,,OIF, +OIF:SA:20:339,1,"Chêne Feuillu",48.951544,2.062425,,1,,Europe/Paris,,OIF, +OIF:SA:20:34,1,"Clos de Rome",48.991689,2.100967,,1,,Europe/Paris,,OIF, +OIF:SA:20:341,1,"Constituante",48.950855,2.0638,,1,,Europe/Paris,,OIF, +OIF:SA:20:343,1,"Mairie Annexe",48.951998,2.064627,,1,,Europe/Paris,,OIF, +OIF:SA:20:346,1,"Quatorze Juillet",48.950344,2.068265,,1,,Europe/Paris,,OIF, +OIF:SA:20:348,1,"Olympe de Gouges",48.949702,2.070438,,1,,Europe/Paris,,OIF, +OIF:SA:20:350,1,"Les Sources",48.953136,2.072958,,1,,Europe/Paris,,OIF, +OIF:SA:20:353,1,"Croix Rompue",48.953183,2.06417,,1,,Europe/Paris,,OIF, +OIF:SA:20:356,1,"Jean Vingt Trois",48.958312,2.070721,,1,,Europe/Paris,,OIF, +OIF:SA:20:357,1,"L'Orée du Bois",48.95331,2.068454,,1,,Europe/Paris,,OIF, +OIF:SA:20:36,1,"Fosse du Moulin",48.991912,2.104817,,1,,Europe/Paris,,OIF, +OIF:SA:20:360,1,"Pierre Semard",48.954482,2.066306,,1,,Europe/Paris,,OIF, +OIF:SA:20:362,1,"Joliot Curie",48.958709,2.067716,,1,,Europe/Paris,,OIF, +OIF:SA:20:363,1,"Mairie",48.960594,2.068601,,1,,Europe/Paris,,OIF, +OIF:SA:20:364,1,"Poste",48.962437,2.070822,,1,,Europe/Paris,,OIF, +OIF:SA:20:366,1,"Lefebvre",48.964902,2.073963,,1,,Europe/Paris,,OIF, +OIF:SA:20:370,1,"Toussain Louverture",48.968345,2.068574,,1,,Europe/Paris,,OIF, +OIF:SA:20:372,1,"Pierre et Marie Curie",48.969835,2.071986,,1,,Europe/Paris,,OIF, +OIF:SA:20:374,1,"Beauséjour",48.940195,2.135164,,1,,Europe/Paris,,OIF, +OIF:SA:20:377,1,"Lycée Charles de Gaulle",48.947174,2.063475,,1,,Europe/Paris,,OIF, +OIF:SA:20:38,1,"La Noue",48.991541,2.110595,,1,,Europe/Paris,,OIF, +OIF:SA:20:381,1,"Charles Edouard Jeanneret",48.945099,2.064001,,1,,Europe/Paris,,OIF, +OIF:SA:20:382,1,"Hélistation",48.946683,2.066988,,1,,Europe/Paris,,OIF, +OIF:SA:20:383,1,"Chambre de Commerce et d'Industrie",48.947933,2.065153,,1,,Europe/Paris,,OIF, +OIF:SA:20:41,1,"Relais Sainte-Honorine",48.991936,2.115059,,1,,Europe/Paris,,OIF, +OIF:SA:20:43,1,"Sente des Laveuses Bas",48.992202,2.118267,,1,,Europe/Paris,,OIF, +OIF:SA:20:45,1,"Sente des Laveuses Haut",48.993138,2.116181,,1,,Europe/Paris,,OIF, +OIF:SA:20:451,1,"Sarrail",49.003973,2.111689,,1,,Europe/Paris,,OIF, +OIF:SA:20:465,1,"Frépillon",49.058041,2.209292,,1,,Europe/Paris,,OIF, +OIF:SA:20:468,1,"Mériel Villiers Adam",49.070243,2.221154,,1,,Europe/Paris,,OIF, +OIF:SA:20:47,1,"Les Coteaux",48.993302,2.112964,,1,,Europe/Paris,,OIF, +OIF:SA:20:470,1,"Rond-Point",49.060518,2.338669,,1,,Europe/Paris,,OIF, +OIF:SA:20:471,1,"Rond-Point",49.019729,2.455666,,1,,Europe/Paris,,OIF, +OIF:SA:20:474,1,"Rond-Point de l'Europe",49.018992,2.465098,,1,,Europe/Paris,,OIF, +OIF:SA:20:476,1,"Rond-Point du Thillay",49.013499,2.471294,,1,,Europe/Paris,,OIF, +OIF:SA:20:478,1,"Route de l'Arpenteur",49.006148,2.506464,,1,,Europe/Paris,,OIF, +OIF:SA:20:480,1,"Entretien Nord",49.011778,2.516126,,1,,Europe/Paris,,OIF, +OIF:SA:20:482,1,"Zone Technique",49.011284,2.532901,,1,,Europe/Paris,,OIF, +OIF:SA:20:484,1,"Gare RER Roissy Pôle",49.010576,2.559781,,1,,Europe/Paris,,OIF, +OIF:SA:20:487,1,"Procession",48.939254,2.136887,,1,,Europe/Paris,,OIF, +OIF:SA:20:49,1,"Marcel Pagnol",48.99331,2.109864,,1,,Europe/Paris,,OIF, +OIF:SA:20:491,1,"République",48.941611,2.138474,,1,,Europe/Paris,,OIF, +OIF:SA:20:53,1,"Gaillon",48.999002,2.116415,,1,,Europe/Paris,,OIF, +OIF:SA:20:62,1,"Centre Commercial Paul Brard",48.997629,2.107892,,1,,Europe/Paris,,OIF, +OIF:SA:20:634,1,"Hautil",49.003456,2.076929,,1,,Europe/Paris,,OIF, +OIF:SA:20:638,1,"Champs du Four",48.998952,2.111246,,1,,Europe/Paris,,OIF, +OIF:SA:20:64,1,"Place Coutisson",48.996319,2.097621,,1,,Europe/Paris,,OIF, +OIF:SA:20:642,1,"Centre Ville / Jean Jaurès",48.995514,2.095071,,1,,Europe/Paris,,OIF, +OIF:SA:20:644,1,"Les Impressionnistes",49.002731,2.091103,,1,,Europe/Paris,,OIF, +OIF:SA:20:646,1,"Kennedy",48.914879,2.088116,,1,,Europe/Paris,,OIF, +OIF:SA:20:650,1,"Foch Constanti",48.930977,2.052942,,1,,Europe/Paris,,OIF, +OIF:SA:20:658,1,"Pompiers",48.999726,2.148303,,1,,Europe/Paris,,OIF, +OIF:SA:20:66,1,"L.T.T.",48.998884,2.105576,,1,,Europe/Paris,,OIF, +OIF:SA:20:69,1,"Verdun",48.996442,2.094145,,1,,Europe/Paris,,OIF, +OIF:SA:20:7,1,"Aristide Briand",49.000862,2.091112,,1,,Europe/Paris,,OIF, +OIF:SA:20:70,1,"Gendarmerie",48.999474,2.093707,,1,,Europe/Paris,,OIF, +OIF:SA:20:702,1,"Norton",49.013068,2.090166,,1,,Europe/Paris,,OIF, +OIF:SA:20:708,1,"Passerelle",48.989492,2.081689,,1,,Europe/Paris,,OIF, +OIF:SA:20:710,1,"Cotes Reverses",48.99785,2.112992,,1,,Europe/Paris,,OIF, +OIF:SA:20:713,1,"Plateau du Moulin",48.995461,2.111377,,1,,Europe/Paris,,OIF, +OIF:SA:20:72,1,"Les Anglais",49.003379,2.093811,,1,,Europe/Paris,,OIF, +OIF:SA:20:74,1,"Croix Blanche",49.00558,2.093535,,1,,Europe/Paris,,OIF, +OIF:SA:20:76,1,"Bois Meresse",49.00926,2.093292,,1,,Europe/Paris,,OIF, +OIF:SA:20:78,1,"Les Ambassadeurs",49.012301,2.092424,,1,,Europe/Paris,,OIF, +OIF:SA:20:85,1,"Clément Plein Air",49.001349,2.110327,,1,,Europe/Paris,,OIF, +OIF:SA:20:86,1,"Clément Salengro",49.000492,2.108555,,1,,Europe/Paris,,OIF, +OIF:SA:20:87,1,"La Minette",49.002951,2.106783,,1,,Europe/Paris,,OIF, +OIF:SA:20:92,1,"Les Limousines",49.008069,2.115543,,1,,Europe/Paris,,OIF, +OIF:SA:20:94,1,"Chemin Vert",49.007718,2.122932,,1,,Europe/Paris,,OIF, +OIF:SA:20:96,1,"Soleil Levant",49.008746,2.125234,,1,,Europe/Paris,,OIF, +OIF:SA:21:1,1,"Laboulaye",48.818294,2.136945,,1,,Europe/Paris,,OIF, +OIF:SA:21:10,1,"Grand Sentier",49.008947,1.926009,,1,,Europe/Paris,,OIF, +OIF:SA:21:100,1,"Croix Verte",48.862895,1.871561,,1,,Europe/Paris,,OIF, +OIF:SA:21:1001,1,"Les 3 Fontaines",48.836524,2.111631,,1,,Europe/Paris,,OIF, +OIF:SA:21:1002,1,"La Fontaine",48.864547,2.026544,,1,,Europe/Paris,,OIF, +OIF:SA:21:1003,1,"P.le Faucheux",48.983557,1.915416,,1,,Europe/Paris,,OIF, +OIF:SA:21:1004,1,"Champ du Caillou",48.854241,1.977764,,1,,Europe/Paris,,OIF, +OIF:SA:21:1005,1,"Place de l'Église",49.008104,1.894357,,1,,Europe/Paris,,OIF, +OIF:SA:21:1007,1,"Maison des Associations",48.98633,1.919367,,1,,Europe/Paris,,OIF, +OIF:SA:21:101,1,"Mairie",48.85666,1.875682,,1,,Europe/Paris,,OIF, +OIF:SA:21:1010,1,"Chemin de Flins",48.984118,1.901375,,1,,Europe/Paris,,OIF, +OIF:SA:21:102,1,"Église",49.125778,1.814583,,1,,Europe/Paris,,OIF, +OIF:SA:21:1026,1,"Rouillard",48.99905,1.917085,,1,,Europe/Paris,,OIF, +OIF:SA:21:1032,1,"Centre Commercial Parly 2",48.828267,2.117148,,1,,Europe/Paris,,OIF, +OIF:SA:21:105,1,"Moque / Panier",48.839523,1.879331,,1,,Europe/Paris,,OIF, +OIF:SA:21:110,1,"Place Rouget",48.994843,1.91008,,1,,Europe/Paris,,OIF, +OIF:SA:21:113,1,"Le Balto",48.964921,1.897936,,1,,Europe/Paris,,OIF, +OIF:SA:21:115,1,"Ferme Rouge",48.959743,1.904651,,1,,Europe/Paris,,OIF, +OIF:SA:21:117,1,"Église",48.929421,1.757283,,1,,Europe/Paris,,OIF, +OIF:SA:21:118,1,"La Beauce",48.961566,1.896961,,1,,Europe/Paris,,OIF, +OIF:SA:21:12,1,"Collège Henri IV",49.013442,1.922587,,1,,Europe/Paris,,OIF, +OIF:SA:21:120,1,"Cigale",48.968525,1.905246,,1,,Europe/Paris,,OIF, +OIF:SA:21:122,1,"Pré Seigneur",48.965111,1.904653,,1,,Europe/Paris,,OIF, +OIF:SA:21:1236,1,"Les Bleuets",48.969434,1.87525,,1,,Europe/Paris,,OIF, +OIF:SA:21:1237,1,"Côte de Paris",48.963387,1.875495,,1,,Europe/Paris,,OIF, +OIF:SA:21:1239,1,"Port-Maron - Orpéa",48.995732,1.98432,,1,,Europe/Paris,,OIF, +OIF:SA:21:124,1,"Bel Air",48.928983,1.859379,,1,,Europe/Paris,,OIF, +OIF:SA:21:1241,1,"Pré Saint-Nom Sud",48.857519,2.021221,,1,,Europe/Paris,,OIF, +OIF:SA:21:126,1,"Beulle",48.921289,1.875387,,1,,Europe/Paris,,OIF, +OIF:SA:21:128,1,"Fauvettes",48.924838,1.868471,,1,,Europe/Paris,,OIF, +OIF:SA:21:130,1,"Fontaine à la Guerre",48.933314,1.868848,,1,,Europe/Paris,,OIF, +OIF:SA:21:132,1,"Mairie",48.928539,1.864919,,1,,Europe/Paris,,OIF, +OIF:SA:21:134,1,"Manoir",48.925858,1.865814,,1,,Europe/Paris,,OIF, +OIF:SA:21:136,1,"Rue de Maule",48.927847,1.868246,,1,,Europe/Paris,,OIF, +OIF:SA:21:138,1,"Muguets",48.927111,1.862806,,1,,Europe/Paris,,OIF, +OIF:SA:21:14,1,"Île de France",49.010888,1.911783,,1,,Europe/Paris,,OIF, +OIF:SA:21:140,1,"Rue de la Pompe",48.938621,1.86289,,1,,Europe/Paris,,OIF, +OIF:SA:21:142,1,"Sainte-Colombe",48.943863,1.864533,,1,,Europe/Paris,,OIF, +OIF:SA:21:144,1,"Transformateur",48.922997,1.872733,,1,,Europe/Paris,,OIF, +OIF:SA:21:148,1,"Thun Saint-Louis",49.008357,1.930626,,1,,Europe/Paris,,OIF, +OIF:SA:21:15,1,"Les Ibis",49.011736,1.914697,,1,,Europe/Paris,,OIF, +OIF:SA:21:157,1,"Route de Brézolles",48.965132,1.938995,,1,,Europe/Paris,,OIF, +OIF:SA:21:159,1,"Mairie",48.96729,1.933673,,1,,Europe/Paris,,OIF, +OIF:SA:21:16,1,"Les Tulipes",49.011075,1.919127,,1,,Europe/Paris,,OIF, +OIF:SA:21:160,1,"D43",48.964562,1.923542,,1,,Europe/Paris,,OIF, +OIF:SA:21:162,1,"Chardronville",49.045803,1.951102,,1,,Europe/Paris,,OIF, +OIF:SA:21:164,1,"Rue de la Garenne",48.964006,1.931925,,1,,Europe/Paris,,OIF, +OIF:SA:21:165,1,"Centre",48.853009,1.986419,,1,,Europe/Paris,,OIF, +OIF:SA:21:166,1,"Sucrerie",48.855887,1.977329,,1,,Europe/Paris,,OIF, +OIF:SA:21:167,1,"Vallon",48.853232,1.99221,,1,,Europe/Paris,,OIF, +OIF:SA:21:168,1,"Église",49.04064,1.941562,,1,,Europe/Paris,,OIF, +OIF:SA:21:170,1,"Rue des Aulnes",49.043705,1.943177,,1,,Europe/Paris,,OIF, +OIF:SA:21:174,1,"Chemin aux Bœufs",48.883994,1.920511,,1,,Europe/Paris,,OIF, +OIF:SA:21:175,1,"Croix Marie",48.893451,1.924379,,1,,Europe/Paris,,OIF, +OIF:SA:21:176,1,"Ferme Neuve",48.877445,1.944701,,1,,Europe/Paris,,OIF, +OIF:SA:21:178,1,"Carrefour 307",48.886328,1.923248,,1,,Europe/Paris,,OIF, +OIF:SA:21:18,1,"Les Marguerites",49.009793,1.912527,,1,,Europe/Paris,,OIF, +OIF:SA:21:182,1,"Lycée Pierre Corneille",48.846797,2.13669,,1,,Europe/Paris,,OIF, +OIF:SA:21:186,1,"Village",48.865912,1.948522,,1,,Europe/Paris,,OIF, +OIF:SA:21:189,1,"Annexe Mairie (Gare SNCF)",48.962615,1.808652,,1,,Europe/Paris,,OIF, +OIF:SA:21:190,1,"Avenue d'Épône",48.968675,1.833721,,1,,Europe/Paris,,OIF, +OIF:SA:21:191,1,"Boulevard de Bruxelles",48.97035,1.838051,,1,,Europe/Paris,,OIF, +OIF:SA:21:192,1,"Boulevard de Mantes",48.970613,1.841986,,1,,Europe/Paris,,OIF, +OIF:SA:21:193,1,"Boulevard de la Paix",48.96985,1.835959,,1,,Europe/Paris,,OIF, +OIF:SA:21:195,1,"La Bergerie",48.97392,1.838806,,1,,Europe/Paris,,OIF, +OIF:SA:21:196,1,"Bout du Monde",48.968365,1.829808,,1,,Europe/Paris,,OIF, +OIF:SA:21:197,1,"Les Dolmens",48.970288,1.832814,,1,,Europe/Paris,,OIF, +OIF:SA:21:198,1,"Mairie / École",48.97323,1.836903,,1,,Europe/Paris,,OIF, +OIF:SA:21:2,1,"Café du Stade",49.008972,1.904907,,1,,Europe/Paris,,OIF, +OIF:SA:21:200,1,"Place Louvain",48.976264,1.844969,,1,,Europe/Paris,,OIF, +OIF:SA:21:201,1,"Place du Marche",48.971523,1.845913,,1,,Europe/Paris,,OIF, +OIF:SA:21:202,1,"Place du Maréchal Juin",48.971523,1.836939,,1,,Europe/Paris,,OIF, +OIF:SA:21:204,1,"Reine Astrid",48.976529,1.849733,,1,,Europe/Paris,,OIF, +OIF:SA:21:205,1,"Allée de Pinceloup",48.943916,1.808411,,1,,Europe/Paris,,OIF, +OIF:SA:21:206,1,"Avenue de la Gare",48.958035,1.807645,,1,,Europe/Paris,,OIF, +OIF:SA:21:208,1,"Carrefour Saint-Martin",48.953729,1.819453,,1,,Europe/Paris,,OIF, +OIF:SA:21:21,1,"Renoir",49.012181,1.926145,,1,,Europe/Paris,,OIF, +OIF:SA:21:210,1,"Le Château",48.953354,1.812996,,1,,Europe/Paris,,OIF, +OIF:SA:21:212,1,"Chemin Neuf",48.952498,1.816294,,1,,Europe/Paris,,OIF, +OIF:SA:21:213,1,"Émile Sergent",48.956739,1.817009,,1,,Europe/Paris,,OIF, +OIF:SA:21:215,1,"Le Fourneau",48.942496,1.809086,,1,,Europe/Paris,,OIF, +OIF:SA:21:217,1,"La Falaise",48.956364,1.821545,,1,,Europe/Paris,,OIF, +OIF:SA:21:219,1,"Les Biches",48.952633,1.811814,,1,,Europe/Paris,,OIF, +OIF:SA:21:22,1,"Rue des Carrières",49.008078,1.908158,,1,,Europe/Paris,,OIF, +OIF:SA:21:220,1,"Mairie",48.957356,1.811539,,1,,Europe/Paris,,OIF, +OIF:SA:21:222,1,"Moulin à Vent",48.945485,1.809962,,1,,Europe/Paris,,OIF, +OIF:SA:21:224,1,"Poteau",48.956683,1.830072,,1,,Europe/Paris,,OIF, +OIF:SA:21:226,1,"La Chamoiserie",48.971808,1.918705,,1,,Europe/Paris,,OIF, +OIF:SA:21:227,1,"Fontaines",48.951919,1.915689,,1,,Europe/Paris,,OIF, +OIF:SA:21:228,1,"Rue des Louvettes",48.954188,1.917284,,1,,Europe/Paris,,OIF, +OIF:SA:21:229,1,"Collège Léonard de Vinci",48.954967,1.919173,,1,,Europe/Paris,,OIF, +OIF:SA:21:23,1,"Rue de la Ferme",49.012456,1.918507,,1,,Europe/Paris,,OIF, +OIF:SA:21:230,1,"Parc",48.94674,1.927104,,1,,Europe/Paris,,OIF, +OIF:SA:21:232,1,"Sablons",48.953921,1.920598,,1,,Europe/Paris,,OIF, +OIF:SA:21:234,1,"Monuments aux Morts",48.951763,1.913642,,1,,Europe/Paris,,OIF, +OIF:SA:21:235,1,"République",48.94853,1.92246,,1,,Europe/Paris,,OIF, +OIF:SA:21:236,1,"Porte du May",48.956661,1.922678,,1,,Europe/Paris,,OIF, +OIF:SA:21:239,1,"Val Fleuri",48.953655,1.922865,,1,,Europe/Paris,,OIF, +OIF:SA:21:240,1,"Saint-Antoine",48.951086,1.921665,,1,,Europe/Paris,,OIF, +OIF:SA:21:241,1,"Victor Hugo",48.950099,1.917944,,1,,Europe/Paris,,OIF, +OIF:SA:21:243,1,"ZI RD 43",48.950911,1.92786,,1,,Europe/Paris,,OIF, +OIF:SA:21:245,1,"ZI du Petit Parc Esat",48.947338,1.932985,,1,,Europe/Paris,,OIF, +OIF:SA:21:246,1,"Clinique (Cardiologie)",49.009831,1.933728,,1,,Europe/Paris,,OIF, +OIF:SA:21:248,1,"Colombier",49.015995,1.944535,,1,,Europe/Paris,,OIF, +OIF:SA:21:250,1,"Le Lavoir",49.014032,1.949065,,1,,Europe/Paris,,OIF, +OIF:SA:21:254,1,"Clairbois",48.882078,1.981594,,1,,Europe/Paris,,OIF, +OIF:SA:21:256,1,"Les Cottages",48.867595,1.97104,,1,,Europe/Paris,,OIF, +OIF:SA:21:258,1,"Grasse Village",48.865855,1.975451,,1,,Europe/Paris,,OIF, +OIF:SA:21:260,1,"Collège J. Monnet",48.866707,1.978848,,1,,Europe/Paris,,OIF, +OIF:SA:21:261,1,"Mairie",48.87422,1.973984,,1,,Europe/Paris,,OIF, +OIF:SA:21:264,1,"Place des Fêtes",48.877165,1.979003,,1,,Europe/Paris,,OIF, +OIF:SA:21:266,1,"Pré des Coulons",48.870662,1.971911,,1,,Europe/Paris,,OIF, +OIF:SA:21:269,1,"Bois Bodin / Centre Commercial",48.96322,1.861066,,1,,Europe/Paris,,OIF, +OIF:SA:21:272,1,"Lavoir",48.962776,1.874284,,1,,Europe/Paris,,OIF, +OIF:SA:21:274,1,"Mairie",48.964594,1.870131,,1,,Europe/Paris,,OIF, +OIF:SA:21:276,1,"Poste",48.963863,1.874286,,1,,Europe/Paris,,OIF, +OIF:SA:21:278,1,"Rue de Meulan",48.966595,1.871622,,1,,Europe/Paris,,OIF, +OIF:SA:21:280,1,"Rue des Mureaux",48.965507,1.876052,,1,,Europe/Paris,,OIF, +OIF:SA:21:282,1,"Rue de Valence",48.96811,1.873421,,1,,Europe/Paris,,OIF, +OIF:SA:21:285,1,"Rue du Bourg",49.065202,1.869924,,1,,Europe/Paris,,OIF, +OIF:SA:21:287,1,"Mairie",49.096231,1.857783,,1,,Europe/Paris,,OIF, +OIF:SA:21:289,1,"Abribus",49.018738,1.890872,,1,,Europe/Paris,,OIF, +OIF:SA:21:290,1,"Mairie",49.023996,1.892175,,1,,Europe/Paris,,OIF, +OIF:SA:21:291,1,"Gaillonnet",49.024495,1.873929,,1,,Europe/Paris,,OIF, +OIF:SA:21:293,1,"Chapeau Demoiselle",48.921283,1.768875,,1,,Europe/Paris,,OIF, +OIF:SA:21:295,1,"Croisement",48.924099,1.777098,,1,,Europe/Paris,,OIF, +OIF:SA:21:297,1,"Place",48.920045,1.766075,,1,,Europe/Paris,,OIF, +OIF:SA:21:298,1,"Grand Mesnil",49.055854,1.959491,,1,,Europe/Paris,,OIF, +OIF:SA:21:300,1,"Abribus",49.107213,1.848526,,1,,Europe/Paris,,OIF, +OIF:SA:21:302,1,"Cacao Barry",49.005118,1.901646,,1,,Europe/Paris,,OIF, +OIF:SA:21:304,1,"Centre Commercial",49.01018,1.899154,,1,,Europe/Paris,,OIF, +OIF:SA:21:306,1,"Chantereine",49.001844,1.889619,,1,,Europe/Paris,,OIF, +OIF:SA:21:308,1,"Château",49.006281,1.893562,,1,,Europe/Paris,,OIF, +OIF:SA:21:310,1,"Église",49.007691,1.893773,,1,,Europe/Paris,,OIF, +OIF:SA:21:313,1,"Guillaume de Beaumont",49.007173,1.897387,,1,,Europe/Paris,,OIF, +OIF:SA:21:314,1,"Lieutenant Martin",49.007606,1.896757,,1,,Europe/Paris,,OIF, +OIF:SA:21:315,1,"Mairie",49.005615,1.897179,,1,,Europe/Paris,,OIF, +OIF:SA:21:32,1,"Cauchoiserie Allée des Roses",48.917452,1.869154,,1,,Europe/Paris,,OIF, +OIF:SA:21:321,1,"Rue des Saules",49.005668,1.900327,,1,,Europe/Paris,,OIF, +OIF:SA:21:323,1,"Rue de Verdun",49.011125,1.898986,,1,,Europe/Paris,,OIF, +OIF:SA:21:325,1,"Rue Vincent",49.008261,1.897003,,1,,Europe/Paris,,OIF, +OIF:SA:21:326,1,"Salle Polyvalente",49.004755,1.889331,,1,,Europe/Paris,,OIF, +OIF:SA:21:330,1,"Village",48.906834,1.884982,,1,,Europe/Paris,,OIF, +OIF:SA:21:331,1,"Grande Rue",48.914258,1.786217,,1,,Europe/Paris,,OIF, +OIF:SA:21:332,1,"Mairie",48.910692,1.787734,,1,,Europe/Paris,,OIF, +OIF:SA:21:334,1,"Kléber",48.820085,2.132434,,1,,Europe/Paris,,OIF, +OIF:SA:21:339,1,"Hôpital André Mignot",48.830069,2.127444,,1,,Europe/Paris,,OIF, +OIF:SA:21:344,1,"Debasseux",48.816833,2.135105,,1,,Europe/Paris,,OIF, +OIF:SA:21:350,1,"Église",49.062341,1.93151,,1,,Europe/Paris,,OIF, +OIF:SA:21:352,1,"Aubette",49.059796,1.931062,,1,,Europe/Paris,,OIF, +OIF:SA:21:358,1,"Chavoye",48.894082,1.874571,,1,,Europe/Paris,,OIF, +OIF:SA:21:36,1,"Les Moussets",48.911073,1.855548,,1,,Europe/Paris,,OIF, +OIF:SA:21:362,1,"La Chardonnière",48.892146,1.880987,,1,,Europe/Paris,,OIF, +OIF:SA:21:368,1,"Maurice Cayen",48.895381,1.869073,,1,,Europe/Paris,,OIF, +OIF:SA:21:37,1,"Paul Barré",48.912534,1.853222,,1,,Europe/Paris,,OIF, +OIF:SA:21:372,1,"Las Acacias",49.012445,1.921157,,1,,Europe/Paris,,OIF, +OIF:SA:21:373,1,"Les Alouettes",49.011501,1.921065,,1,,Europe/Paris,,OIF, +OIF:SA:21:375,1,"Les Annonciades",49.006338,1.91186,,1,,Europe/Paris,,OIF, +OIF:SA:21:377,1,"Belvédère",49.009285,1.917832,,1,,Europe/Paris,,OIF, +OIF:SA:21:378,1,"Poste",49.004605,1.909601,,1,,Europe/Paris,,OIF, +OIF:SA:21:379,1,"Mairie",48.945514,1.835599,,1,,Europe/Paris,,OIF, +OIF:SA:21:381,1,"Centre Commercial",48.842016,2.069326,,1,,Europe/Paris,,OIF, +OIF:SA:21:382,1,"Cardinal de Retz",48.846458,2.059455,,1,,Europe/Paris,,OIF, +OIF:SA:21:384,1,"Forêt de Cruye",48.852873,2.053775,,1,,Europe/Paris,,OIF, +OIF:SA:21:385,1,"Gaillarderie",48.841666,2.071438,,1,,Europe/Paris,,OIF, +OIF:SA:21:388,1,"Hameau Fleuri",48.845153,2.058206,,1,,Europe/Paris,,OIF, +OIF:SA:21:39,1,"Cauchoiserie Pain Perdu",48.909846,1.85799,,1,,Europe/Paris,,OIF, +OIF:SA:21:390,1,"Mairie",48.84405,2.064674,,1,,Europe/Paris,,OIF, +OIF:SA:21:392,1,"Prés de Renneuil",48.849076,2.055333,,1,,Europe/Paris,,OIF, +OIF:SA:21:394,1,"Collège la Quintinie",48.837489,2.069698,,1,,Europe/Paris,,OIF, +OIF:SA:21:395,1,"Tuilerie",48.851572,2.048447,,1,,Europe/Paris,,OIF, +OIF:SA:21:397,1,"Rond-Point des Chênes",48.850886,2.061598,,1,,Europe/Paris,,OIF, +OIF:SA:21:398,1,"Tuilerie Bignon",48.852632,2.043025,,1,,Europe/Paris,,OIF, +OIF:SA:21:4,1,"Centre Commercial",49.011513,1.916878,,1,,Europe/Paris,,OIF, +OIF:SA:21:40,1,"Mairie",48.913824,1.919373,,1,,Europe/Paris,,OIF, +OIF:SA:21:400,1,"Frédéric Chartier",48.920313,1.969992,,1,,Europe/Paris,,OIF, +OIF:SA:21:402,1,"Art de Vivre",48.925338,1.99176,,1,,Europe/Paris,,OIF, +OIF:SA:21:403,1,"Novotel / Cd 113",48.924049,1.994946,,1,,Europe/Paris,,OIF, +OIF:SA:21:404,1,"Conforama",48.926619,1.986957,,1,,Europe/Paris,,OIF, +OIF:SA:21:406,1,"Cauchoiserie Rue Pasteur",48.915734,1.873642,,1,,Europe/Paris,,OIF, +OIF:SA:21:408,1,"Pré Rollet",48.917544,1.850872,,1,,Europe/Paris,,OIF, +OIF:SA:21:410,1,"Cauchoiserie Rue des Bois",48.913024,1.870979,,1,,Europe/Paris,,OIF, +OIF:SA:21:412,1,"Cauchoiserie Route d'Herbeville",48.912136,1.867165,,1,,Europe/Paris,,OIF, +OIF:SA:21:42,1,"Route d'Orgeval",48.913203,1.922461,,1,,Europe/Paris,,OIF, +OIF:SA:21:426,1,"Lavoir",48.886666,1.86225,,1,,Europe/Paris,,OIF, +OIF:SA:21:428,1,"Village",48.882729,1.858382,,1,,Europe/Paris,,OIF, +OIF:SA:21:430,1,"Auberge",48.935927,1.949898,,1,,Europe/Paris,,OIF, +OIF:SA:21:437,1,"Saint-Vigor Axa",48.866539,2.092139,,1,,Europe/Paris,,OIF, +OIF:SA:21:439,1,"Aérospatiale",48.998862,1.921036,,1,,Europe/Paris,,OIF, +OIF:SA:21:44,1,"Rue de Crespières",48.912119,1.918531,,1,,Europe/Paris,,OIF, +OIF:SA:21:444,1,"Centre Commercial Bouginont",48.986054,1.912051,,1,,Europe/Paris,,OIF, +OIF:SA:21:445,1,"Becquerel",48.98052,1.895015,,1,,Europe/Paris,,OIF, +OIF:SA:21:448,1,"Bizet",48.975753,1.915801,,1,,Europe/Paris,,OIF, +OIF:SA:21:450,1,"Bougimonts",48.986705,1.91356,,1,,Europe/Paris,,OIF, +OIF:SA:21:453,1,"Les Bosquets",48.988221,1.897187,,1,,Europe/Paris,,OIF, +OIF:SA:21:457,1,"Chappe",48.979162,1.89249,,1,,Europe/Paris,,OIF, +OIF:SA:21:459,1,"Chopin",48.977264,1.921099,,1,,Europe/Paris,,OIF, +OIF:SA:21:46,1,"Route de Maule",48.913775,1.914083,,1,,Europe/Paris,,OIF, +OIF:SA:21:461,1,"Cité Aubert",48.990996,1.909409,,1,,Europe/Paris,,OIF, +OIF:SA:21:463,1,"Clemenceau",48.993314,1.90297,,1,,Europe/Paris,,OIF, +OIF:SA:21:465,1,"Médiathèque",48.989179,1.913125,,1,,Europe/Paris,,OIF, +OIF:SA:21:468,1,"Coquetiers",48.992175,1.921372,,1,,Europe/Paris,,OIF, +OIF:SA:21:470,1,"Comtesse RD43",48.974132,1.917048,,1,,Europe/Paris,,OIF, +OIF:SA:21:471,1,"Centre Commercial Espace",48.979714,1.913076,,1,,Europe/Paris,,OIF, +OIF:SA:21:475,1,"Croix Verte",48.98976,1.923811,,1,,Europe/Paris,,OIF, +OIF:SA:21:477,1,"Denis Papin",48.977748,1.88955,,1,,Europe/Paris,,OIF, +OIF:SA:21:479,1,"Descartes",48.982043,1.89286,,1,,Europe/Paris,,OIF, +OIF:SA:21:481,1,"Jean Jaurès",48.99117,1.909501,,1,,Europe/Paris,,OIF, +OIF:SA:21:483,1,"Émile Zola",48.980537,1.911468,,1,,Europe/Paris,,OIF, +OIF:SA:21:487,1,"Avenue Foch Perclairs",48.990595,1.900368,,1,,Europe/Paris,,OIF, +OIF:SA:21:488,1,"Gros Murs",48.994711,1.906383,,1,,Europe/Paris,,OIF, +OIF:SA:21:490,1,"Lycée François Villon",48.973,1.923024,,1,,Europe/Paris,,OIF, +OIF:SA:21:491,1,"Gambetta",48.991005,1.914846,,1,,Europe/Paris,,OIF, +OIF:SA:21:507,1,"Avenue Foch Rodin",48.992186,1.902836,,1,,Europe/Paris,,OIF, +OIF:SA:21:508,1,"Centre Hospitalier",48.987104,1.93292,,1,,Europe/Paris,,OIF, +OIF:SA:21:509,1,"Place Henri Sellier",48.986875,1.924716,,1,,Europe/Paris,,OIF, +OIF:SA:21:511,1,"Hauts du Grand Ouest",48.980111,1.90778,,1,,Europe/Paris,,OIF, +OIF:SA:21:512,1,"Paul Éluard",48.978965,1.907925,,1,,Europe/Paris,,OIF, +OIF:SA:21:514,1,"Jean Mermoz",48.989294,1.894328,,1,,Europe/Paris,,OIF, +OIF:SA:21:52,1,"D 191",48.929384,1.847025,,1,,Europe/Paris,,OIF, +OIF:SA:21:522,1,"Léon Fourcil",48.974706,1.912491,,1,,Europe/Paris,,OIF, +OIF:SA:21:523,1,"Levassor",48.979985,1.889246,,1,,Europe/Paris,,OIF, +OIF:SA:21:525,1,"Maryse Bastié",48.979577,1.917263,,1,,Europe/Paris,,OIF, +OIF:SA:21:530,1,"Molière",48.982321,1.916047,,1,,Europe/Paris,,OIF, +OIF:SA:21:533,1,"Nouveau Cimetière",48.99266,1.896121,,1,,Europe/Paris,,OIF, +OIF:SA:21:537,1,"Paul Curien",48.992999,1.898576,,1,,Europe/Paris,,OIF, +OIF:SA:21:54,1,"Andelu",48.880319,1.828054,,1,,Europe/Paris,,OIF, +OIF:SA:21:541,1,"Pablo Picasso",48.990175,1.897732,,1,,Europe/Paris,,OIF, +OIF:SA:21:543,1,"Porche République",48.986466,1.921134,,1,,Europe/Paris,,OIF, +OIF:SA:21:545,1,"Pointe à Moser",48.995003,1.93196,,1,,Europe/Paris,,OIF, +OIF:SA:21:551,1,"Route de Verneuil",48.995935,1.930567,,1,,Europe/Paris,,OIF, +OIF:SA:21:556,1,"Stendhal",48.980623,1.908156,,1,,Europe/Paris,,OIF, +OIF:SA:21:559,1,"Tuilerie",48.985787,1.902414,,1,,Europe/Paris,,OIF, +OIF:SA:21:56,1,"8 Mai 1945",48.959357,1.851109,,1,,Europe/Paris,,OIF, +OIF:SA:21:561,1,"Lycée Vaucanson",48.981414,1.923797,,1,,Europe/Paris,,OIF, +OIF:SA:21:564,1,"Alfred Lasson",49.002748,1.877847,,1,,Europe/Paris,,OIF, +OIF:SA:21:566,1,"École",49.001632,1.883091,,1,,Europe/Paris,,OIF, +OIF:SA:21:568,1,"Parking Erambert",49.001101,1.877623,,1,,Europe/Paris,,OIF, +OIF:SA:21:570,1,"Hautes Groux",49.004773,1.876651,,1,,Europe/Paris,,OIF, +OIF:SA:21:572,1,"La Jachère",49.004698,1.882765,,1,,Europe/Paris,,OIF, +OIF:SA:21:574,1,"Mairie",48.999465,1.881836,,1,,Europe/Paris,,OIF, +OIF:SA:21:576,1,"Place du Tilleul",49.001261,1.885499,,1,,Europe/Paris,,OIF, +OIF:SA:21:578,1,"Stade",49.004592,1.886631,,1,,Europe/Paris,,OIF, +OIF:SA:21:58,1,"Acacias",48.953278,1.8564,,1,,Europe/Paris,,OIF, +OIF:SA:21:580,1,"Bois de l'Aulne",48.942645,1.794175,,1,,Europe/Paris,,OIF, +OIF:SA:21:582,1,"Brouillard",48.926226,1.787294,,1,,Europe/Paris,,OIF, +OIF:SA:21:584,1,"Canada",48.929398,1.790331,,1,,Europe/Paris,,OIF, +OIF:SA:21:586,1,"Place Cdt Grimblot",48.960756,1.794987,,1,,Europe/Paris,,OIF, +OIF:SA:21:587,1,"Chauffour",48.95428,1.798429,,1,,Europe/Paris,,OIF, +OIF:SA:21:589,1,"Chemin de l'Epine",48.95002,1.793941,,1,,Europe/Paris,,OIF, +OIF:SA:21:591,1,"Fontaine",48.96092,1.789269,,1,,Europe/Paris,,OIF, +OIF:SA:21:592,1,"La Villeneuve",48.947624,1.793741,,1,,Europe/Paris,,OIF, +OIF:SA:21:594,1,"Libération",48.959674,1.800773,,1,,Europe/Paris,,OIF, +OIF:SA:21:596,1,"Liserettes",48.952298,1.795577,,1,,Europe/Paris,,OIF, +OIF:SA:21:6,1,"Ferme",48.851058,1.988224,,1,,Europe/Paris,,OIF, +OIF:SA:21:60,1,"Cimetière",48.963793,1.851265,,1,,Europe/Paris,,OIF, +OIF:SA:21:600,1,"Toys'R'Us",48.927175,1.985851,,1,,Europe/Paris,,OIF, +OIF:SA:21:601,1,"Pasteur",48.927504,1.981198,,1,,Europe/Paris,,OIF, +OIF:SA:21:603,1,"Rond-Point Gendarmerie",48.924118,1.974788,,1,,Europe/Paris,,OIF, +OIF:SA:21:608,1,"Champ Gaillard",48.921427,2.021683,,1,,Europe/Paris,,OIF, +OIF:SA:21:610,1,"Rhin et Danube",48.922277,2.027748,,1,,Europe/Paris,,OIF, +OIF:SA:21:613,1,"École Notre-Dame",48.926295,2.037678,,1,,Europe/Paris,,OIF, +OIF:SA:21:615,1,"Gare de Canrobert",49.046576,2.093281,,1,,Europe/Paris,,OIF, +OIF:SA:21:616,1,"Lycée Pissaro",49.057475,2.091138,,1,,Europe/Paris,,OIF, +OIF:SA:21:617,1,"Poste",49.051636,2.098962,,1,,Europe/Paris,,OIF, +OIF:SA:21:618,1,"Peugeot",48.93981,2.050655,,1,,Europe/Paris,,OIF, +OIF:SA:21:62,1,"Clinique du Montgardé",48.957281,1.848267,,1,,Europe/Paris,,OIF, +OIF:SA:21:622,1,"Lavoir",48.834439,2.044056,,1,,Europe/Paris,,OIF, +OIF:SA:21:623,1,"INRIA",48.836876,2.103772,,1,,Europe/Paris,,OIF, +OIF:SA:21:627,1,"Place du Rueil",49.047679,1.877052,,1,,Europe/Paris,,OIF, +OIF:SA:21:629,1,"Lavoir",49.041478,1.973056,,1,,Europe/Paris,,OIF, +OIF:SA:21:631,1,"Saillancourt Place Segpa",49.048968,1.952586,,1,,Europe/Paris,,OIF, +OIF:SA:21:633,1,"Vaux Persan",49.05134,1.952427,,1,,Europe/Paris,,OIF, +OIF:SA:21:635,1,"Rue de l'Aulnaie",49.047237,1.873777,,1,,Europe/Paris,,OIF, +OIF:SA:21:637,1,"Place de la Fontaine",49.035564,1.866825,,1,,Europe/Paris,,OIF, +OIF:SA:21:641,1,"Rue Normande",49.043268,1.873401,,1,,Europe/Paris,,OIF, +OIF:SA:21:643,1,"Alexandre Bertrand",48.889392,2.098878,,1,,Europe/Paris,,OIF, +OIF:SA:21:647,1,"Galliéni",48.896504,2.080465,,1,,Europe/Paris,,OIF, +OIF:SA:21:651,1,"Place Lamant",48.896984,2.084912,,1,,Europe/Paris,,OIF, +OIF:SA:21:659,1,"Carrefour 307",48.855854,2.018812,,1,,Europe/Paris,,OIF, +OIF:SA:21:66,1,"D113",48.961636,1.8557,,1,,Europe/Paris,,OIF, +OIF:SA:21:662,1,"Hameau Saint-Martin",48.86189,2.014159,,1,,Europe/Paris,,OIF, +OIF:SA:21:663,1,"Castor / Cerisaie",48.866659,2.021267,,1,,Europe/Paris,,OIF, +OIF:SA:21:664,1,"Clos Salibert",48.854959,2.022476,,1,,Europe/Paris,,OIF, +OIF:SA:21:666,1,"Église",48.857514,2.018813,,1,,Europe/Paris,,OIF, +OIF:SA:21:667,1,"Grands Champs",48.857859,2.012351,,1,,Europe/Paris,,OIF, +OIF:SA:21:669,1,"Bretèche",48.863649,2.029426,,1,,Europe/Paris,,OIF, +OIF:SA:21:671,1,"Mairie",48.859942,2.020896,,1,,Europe/Paris,,OIF, +OIF:SA:21:672,1,"Orée de Saint-Nom",48.858751,2.015654,,1,,Europe/Paris,,OIF, +OIF:SA:21:673,1,"Valmartin",48.871198,2.008925,,1,,Europe/Paris,,OIF, +OIF:SA:21:674,1,"Vermondie",48.869087,2.008655,,1,,Europe/Paris,,OIF, +OIF:SA:21:68,1,"Centre Commercial d'Acosta",48.954371,1.860471,,1,,Europe/Paris,,OIF, +OIF:SA:21:689,1,"École",49.02525,1.921388,,1,,Europe/Paris,,OIF, +OIF:SA:21:691,1,"Pont aux Bois",49.08587,1.898461,,1,,Europe/Paris,,OIF, +OIF:SA:21:693,1,"Curatorium",49.008718,1.931051,,1,,Europe/Paris,,OIF, +OIF:SA:21:696,1,"Boulevard Thiers",49.006563,1.921677,,1,,Europe/Paris,,OIF, +OIF:SA:21:7,1,"Cote du Pavillon",49.009586,1.90795,,1,,Europe/Paris,,OIF, +OIF:SA:21:700,1,"Gare Europe",48.804807,2.12988,,1,,Europe/Paris,,OIF, +OIF:SA:21:703,1,"Pré Catalan",48.818513,2.119971,,1,,Europe/Paris,,OIF, +OIF:SA:21:706,1,"École Gendarmerie",49.07847,1.922352,,1,,Europe/Paris,,OIF, +OIF:SA:21:708,1,"Place d'Amboise",49.076478,1.927406,,1,,Europe/Paris,,OIF, +OIF:SA:21:71,1,"Division Leclerc",48.956307,1.858179,,1,,Europe/Paris,,OIF, +OIF:SA:21:710,1,"Villette",49.03118,1.934379,,1,,Europe/Paris,,OIF, +OIF:SA:21:716,1,"Lycée Sonia Delaunay",48.830229,1.993841,,1,,Europe/Paris,,OIF, +OIF:SA:21:717,1,"La Villeneuve Saint-Martin",49.068857,1.964894,,1,,Europe/Paris,,OIF, +OIF:SA:21:719,1,"Notre-Dame - Chemin Vert",48.983822,1.973686,,1,,Europe/Paris,,OIF, +OIF:SA:21:723,1,"Lycée Viollet le Duc",48.814155,1.873247,,1,,Europe/Paris,,OIF, +OIF:SA:21:725,1,"Champeaux",49.008363,1.955712,,1,,Europe/Paris,,OIF, +OIF:SA:21:727,1,"Cimetière",49.01071,1.958895,,1,,Europe/Paris,,OIF, +OIF:SA:21:73,1,"Gaston Jouillerat",48.961405,1.854058,,1,,Europe/Paris,,OIF, +OIF:SA:21:731,1,"Lion Vert",48.999097,1.978425,,1,,Europe/Paris,,OIF, +OIF:SA:21:733,1,"Mairie",49.005534,1.964418,,1,,Europe/Paris,,OIF, +OIF:SA:21:735,1,"Le Temple",49.002841,1.971616,,1,,Europe/Paris,,OIF, +OIF:SA:21:737,1,"Église",49.103068,1.835864,,1,,Europe/Paris,,OIF, +OIF:SA:21:742,1,"Mairie",49.024107,1.919979,,1,,Europe/Paris,,OIF, +OIF:SA:21:744,1,"Collège",49.013443,1.903097,,1,,Europe/Paris,,OIF, +OIF:SA:21:748,1,"Presles",48.96364,1.892828,,1,,Europe/Paris,,OIF, +OIF:SA:21:75,1,"Mairie",48.958575,1.855356,,1,,Europe/Paris,,OIF, +OIF:SA:21:750,1,"Église",48.965903,1.895499,,1,,Europe/Paris,,OIF, +OIF:SA:21:760,1,"Demarine",48.851709,2.0504,,1,,Europe/Paris,,OIF, +OIF:SA:21:761,1,"Orée de Marly",48.841729,2.071277,,1,,Europe/Paris,,OIF, +OIF:SA:21:764,1,"Cimetière",48.847954,2.062191,,1,,Europe/Paris,,OIF, +OIF:SA:21:768,1,"Ferme de Gally",48.818219,2.080443,,1,,Europe/Paris,,OIF, +OIF:SA:21:769,1,"Guy-Môquet",48.813417,2.078146,,1,,Europe/Paris,,OIF, +OIF:SA:21:770,1,"Aérodrome",48.805214,2.074064,,1,,Europe/Paris,,OIF, +OIF:SA:21:771,1,"Docteur Vaillant",48.802566,2.07207,,1,,Europe/Paris,,OIF, +OIF:SA:21:772,1,"République",48.7997,2.070224,,1,,Europe/Paris,,OIF, +OIF:SA:21:773,1,"École Saint-Exupéry",48.796114,2.048078,,1,,Europe/Paris,,OIF, +OIF:SA:21:777,1,"Collège",49.087373,1.923157,,1,,Europe/Paris,,OIF, +OIF:SA:21:785,1,"Avenue du 1er Dragon",49.042944,2.090632,,1,,Europe/Paris,,OIF, +OIF:SA:21:788,1,"Guittel Lecoq",48.864041,2.030155,,1,,Europe/Paris,,OIF, +OIF:SA:21:797,1,"Frédéric Mistral",48.97541,1.9117,,1,,Europe/Paris,,OIF, +OIF:SA:21:798,1,"Ionesco",48.97642,1.909946,,1,,Europe/Paris,,OIF, +OIF:SA:21:8,1,"Gambetta",49.005499,1.914659,,1,,Europe/Paris,,OIF, +OIF:SA:21:800,1,"Comtesse Route de Bouafle",48.974548,1.915391,,1,,Europe/Paris,,OIF, +OIF:SA:21:806,1,"Chevreloup",48.836137,2.095203,,1,,Europe/Paris,,OIF, +OIF:SA:21:807,1,"Trois Quignons",48.891629,2.063055,,1,,Europe/Paris,,OIF, +OIF:SA:21:822,1,"Vigne Blanche",48.981756,1.912314,,1,,Europe/Paris,,OIF, +OIF:SA:21:836,1,"Mairie",49.137762,1.908938,,1,,Europe/Paris,,OIF, +OIF:SA:21:838,1,"Place de la Mare",49.124695,1.891944,,1,,Europe/Paris,,OIF, +OIF:SA:21:84,1,"Lycée Van Gogh",48.953103,1.854831,,1,,Europe/Paris,,OIF, +OIF:SA:21:842,1,"Courcelles",49.081028,2.005112,,1,,Europe/Paris,,OIF, +OIF:SA:21:846,1,"Route de Commeny",49.113022,1.908451,,1,,Europe/Paris,,OIF, +OIF:SA:21:85,1,"Grande Rue",49.082762,1.870524,,1,,Europe/Paris,,OIF, +OIF:SA:21:850,1,"Les Closeaux",49.110464,1.963585,,1,,Europe/Paris,,OIF, +OIF:SA:21:854,1,"Stade",49.10511,1.965128,,1,,Europe/Paris,,OIF, +OIF:SA:21:858,1,"Mairie",49.101254,1.967011,,1,,Europe/Paris,,OIF, +OIF:SA:21:862,1,"Transformateur",49.091218,1.981446,,1,,Europe/Paris,,OIF, +OIF:SA:21:866,1,"Centre Équestre",49.111383,1.932307,,1,,Europe/Paris,,OIF, +OIF:SA:21:87,1,"Mairie",49.08674,1.873483,,1,,Europe/Paris,,OIF, +OIF:SA:21:870,1,"Le Trapil",49.082208,1.931248,,1,,Europe/Paris,,OIF, +OIF:SA:21:874,1,"Église",49.07662,1.927111,,1,,Europe/Paris,,OIF, +OIF:SA:21:882,1,"Fresque",48.953306,1.861158,,1,,Europe/Paris,,OIF, +OIF:SA:21:885,1,"Goudval",48.86922,2.016826,,1,,Europe/Paris,,OIF, +OIF:SA:21:887,1,"Chemin des Closeaux",48.906799,1.876371,,1,,Europe/Paris,,OIF, +OIF:SA:21:89,1,"Rue du Château",49.084722,1.87641,,1,,Europe/Paris,,OIF, +OIF:SA:21:890,1,"Place Hubeaut",49.078361,2.003165,,1,,Europe/Paris,,OIF, +OIF:SA:21:893,1,"Les Explorateurs",49.052634,2.008748,,1,,Europe/Paris,,OIF, +OIF:SA:21:91,1,"Allée du Tillet",48.839907,2.083041,,1,,Europe/Paris,,OIF, +OIF:SA:21:93,1,"Grille de Maintenon",48.838675,2.086073,,1,,Europe/Paris,,OIF, +OIF:SA:21:96,1,"Mairie",48.840368,2.079195,,1,,Europe/Paris,,OIF, +OIF:SA:21:964,1,"Cherbourg",49.009343,1.948627,,1,,Europe/Paris,,OIF, +OIF:SA:21:968,1,"Pléiades",48.97564,1.911993,,1,,Europe/Paris,,OIF, +OIF:SA:21:973,1,"La Chêneraie",48.987029,1.927531,,1,,Europe/Paris,,OIF, +OIF:SA:21:976,1,"Foch",48.985648,1.894077,,1,,Europe/Paris,,OIF, +OIF:SA:21:981,1,"Pieu",48.987728,1.903585,,1,,Europe/Paris,,OIF, +OIF:SA:21:988,1,"Maison des Associations",49.010691,1.914723,,1,,Europe/Paris,,OIF, +OIF:SA:21:99,1,"La Maladrerie",48.873471,1.880297,,1,,Europe/Paris,,OIF, +OIF:SA:21:992,1,"Mairie",49.07745,1.926921,,1,,Europe/Paris,,OIF, +OIF:SA:21:996,1,"Albert Thomas",48.983828,1.922008,,1,,Europe/Paris,,OIF, +OIF:SA:21:998,1,"Victor Hugo",49.074818,2.028212,,1,,Europe/Paris,,OIF, +OIF:SA:22:100,1,"Bois de Maurepas",48.769853,1.941894,,1,,Europe/Paris,,OIF, +OIF:SA:22:102,1,"Le Bois Joli",48.774759,1.939692,,1,,Europe/Paris,,OIF, +OIF:SA:22:104,1,"André Malraux",48.778084,1.946915,,1,,Europe/Paris,,OIF, +OIF:SA:22:10490,1,"Rue de la Vesgre",48.788708,1.610381,,1,,Europe/Paris,,OIF, +OIF:SA:22:10491,1,"Ferme Benoist",48.791969,1.618266,,1,,Europe/Paris,,OIF, +OIF:SA:22:10492,1,"Pas du Lac",48.793404,2.044234,,1,,Europe/Paris,,OIF, +OIF:SA:22:10493,1,"Fort de Saint-Cyr",48.792889,2.036241,,1,,Europe/Paris,,OIF, +OIF:SA:22:10494,1,"Rue de la Gare",48.797052,1.795481,,1,,Europe/Paris,,OIF, +OIF:SA:22:10500,1,"Mocsouris",48.78968,1.634404,,1,,Europe/Paris,,OIF, +OIF:SA:22:10502,1,"Chantereine",48.77888,1.812981,,1,,Europe/Paris,,OIF, +OIF:SA:22:106,1,"France Miniature",48.778064,1.958023,,1,,Europe/Paris,,OIF, +OIF:SA:22:108,1,"Les Templiers",48.772664,1.974465,,1,,Europe/Paris,,OIF, +OIF:SA:22:11,1,"Mézières sur Seine Libération",48.959655,1.800753,,1,,Europe/Paris,,OIF, +OIF:SA:22:112,1,"Nouvelle Amsterdam",48.766092,1.955904,,1,,Europe/Paris,,OIF, +OIF:SA:22:114,1,"Maurepas Lycée des 7 Mares",48.764616,1.943631,,1,,Europe/Paris,,OIF, +OIF:SA:22:116,1,"Maurepas Centre Commercial",48.760718,1.946053,,1,,Europe/Paris,,OIF, +OIF:SA:22:119,1,"Avenue de Maurepas",48.750499,1.923053,,1,,Europe/Paris,,OIF, +OIF:SA:22:121,1,"Les Cognassiers",48.748737,1.921593,,1,,Europe/Paris,,OIF, +OIF:SA:22:123,1,"La Prévenderie",48.747458,1.920196,,1,,Europe/Paris,,OIF, +OIF:SA:22:125,1,"Pierre Percée",48.815344,1.863256,,1,,Europe/Paris,,OIF, +OIF:SA:22:126,1,"Cressay",48.827554,1.86893,,1,,Europe/Paris,,OIF, +OIF:SA:22:136,1,"Abri Bus N191",48.92967,1.846804,,1,,Europe/Paris,,OIF, +OIF:SA:22:140,1,"Allée des Sycomores",48.776339,1.81275,,1,,Europe/Paris,,OIF, +OIF:SA:22:141,1,"Montfort l'Amaury Collège Maurice Ravel",48.774842,1.815526,,1,,Europe/Paris,,OIF, +OIF:SA:22:143,1,"Notre-Dame du Bel Air",48.777644,1.798852,,1,,Europe/Paris,,OIF, +OIF:SA:22:144,1,"Montfort l'Amaury Guinandes",48.782905,1.820967,,1,,Europe/Paris,,OIF, +OIF:SA:22:146,1,"Poirier d'Encre",48.784786,1.824179,,1,,Europe/Paris,,OIF, +OIF:SA:22:148,1,"Mairie",48.787725,1.819877,,1,,Europe/Paris,,OIF, +OIF:SA:22:150,1,"Parc Boulogne",48.789209,1.813504,,1,,Europe/Paris,,OIF, +OIF:SA:22:152,1,"Marronniers",48.795695,1.796643,,1,,Europe/Paris,,OIF, +OIF:SA:22:154,1,"Hortensia",48.797685,1.790695,,1,,Europe/Paris,,OIF, +OIF:SA:22:156,1,"Lycée Jean Monnet",48.802733,1.782212,,1,,Europe/Paris,,OIF, +OIF:SA:22:158,1,"Vicq la Bardelle",48.816044,1.817881,,1,,Europe/Paris,,OIF, +OIF:SA:22:160,1,"Vicq Croix Ferron",48.813118,1.836691,,1,,Europe/Paris,,OIF, +OIF:SA:22:162,1,"Rond-Point",48.839444,1.82306,,1,,Europe/Paris,,OIF, +OIF:SA:22:163,1,"Centre-Village",48.841032,1.818183,,1,,Europe/Paris,,OIF, +OIF:SA:22:165,1,"Auteuil Rue des Vignes",48.843132,1.815343,,1,,Europe/Paris,,OIF, +OIF:SA:22:167,1,"Lavoir",48.848268,1.804162,,1,,Europe/Paris,,OIF, +OIF:SA:22:169,1,"Autouillet Haut Village",48.852369,1.802734,,1,,Europe/Paris,,OIF, +OIF:SA:22:171,1,"Flexanville Ferranville",48.862852,1.746428,,1,,Europe/Paris,,OIF, +OIF:SA:22:173,1,"Flexanville Tessé",48.858559,1.741567,,1,,Europe/Paris,,OIF, +OIF:SA:22:175,1,"Flexanville Église",48.853556,1.736878,,1,,Europe/Paris,,OIF, +OIF:SA:22:177,1,"Hargeville Arrêt des Cars",48.890458,1.740191,,1,,Europe/Paris,,OIF, +OIF:SA:22:179,1,"Mairie",48.978296,1.714301,,1,,Europe/Paris,,OIF, +OIF:SA:22:181,1,"Saint-Étienne",48.974162,1.712612,,1,,Europe/Paris,,OIF, +OIF:SA:22:183,1,"Moulin des Rades",48.971669,1.712663,,1,,Europe/Paris,,OIF, +OIF:SA:22:185,1,"Brasseuil",48.949683,1.698423,,1,,Europe/Paris,,OIF, +OIF:SA:22:187,1,"Auffreville",48.955635,1.707247,,1,,Europe/Paris,,OIF, +OIF:SA:22:189,1,"Église",48.940127,1.691242,,1,,Europe/Paris,,OIF, +OIF:SA:22:193,1,"Villette Rue Saint-Martin",48.921648,1.691752,,1,,Europe/Paris,,OIF, +OIF:SA:22:195,1,"Rosay",48.914072,1.679438,,1,,Europe/Paris,,OIF, +OIF:SA:22:197,1,"Septeuil Poteau",48.89986,1.67482,,1,,Europe/Paris,,OIF, +OIF:SA:22:199,1,"Septeuil Rue de Mantes",48.897764,1.677062,,1,,Europe/Paris,,OIF, +OIF:SA:22:201,1,"Septeuil Place de Verdun",48.893443,1.680586,,1,,Europe/Paris,,OIF, +OIF:SA:22:210,1,"Square Coty",48.805691,1.765979,,1,,Europe/Paris,,OIF, +OIF:SA:22:212,1,"Gendarmerie",48.80477,1.76324,,1,,Europe/Paris,,OIF, +OIF:SA:22:214,1,"La Butte",48.802643,1.750202,,1,,Europe/Paris,,OIF, +OIF:SA:22:216,1,"Millemont Place Richard",48.808762,1.7452,,1,,Europe/Paris,,OIF, +OIF:SA:22:220,1,"Bazainville Place Saint-Louis",48.8028,1.669916,,1,,Europe/Paris,,OIF, +OIF:SA:22:222,1,"Tilleuls",48.804773,1.673136,,1,,Europe/Paris,,OIF, +OIF:SA:22:224,1,"Bazainville Châtaigniers",48.806033,1.672596,,1,,Europe/Paris,,OIF, +OIF:SA:22:226,1,"Loup Ravissant",48.807108,1.670378,,1,,Europe/Paris,,OIF, +OIF:SA:22:228,1,"Le Gassé",48.815647,1.666403,,1,,Europe/Paris,,OIF, +OIF:SA:22:229,1,"La Pommeraie",48.813577,1.659679,,1,,Europe/Paris,,OIF, +OIF:SA:22:230,1,"Bazainville Guignonville",48.811552,1.654412,,1,,Europe/Paris,,OIF, +OIF:SA:22:231,1,"Croix de Saulx",48.816916,1.637029,,1,,Europe/Paris,,OIF, +OIF:SA:22:233,1,"Salle des Fêtes",48.821508,1.636933,,1,,Europe/Paris,,OIF, +OIF:SA:22:235,1,"Place du Château",48.822745,1.636447,,1,,Europe/Paris,,OIF, +OIF:SA:22:237,1,"Route de Tacoignières",48.825573,1.643406,,1,,Europe/Paris,,OIF, +OIF:SA:22:239,1,"Rue de la Gare (Monument)",48.832987,1.669255,,1,,Europe/Paris,,OIF, +OIF:SA:22:242,1,"Bas Fonceaux (Café)",48.83622,1.673591,,1,,Europe/Paris,,OIF, +OIF:SA:22:245,1,"Rue des Brices",48.838484,1.666931,,1,,Europe/Paris,,OIF, +OIF:SA:22:247,1,"Chemin des Bois",48.840357,1.663578,,1,,Europe/Paris,,OIF, +OIF:SA:22:249,1,"Prunay le Temple Place de la Libération",48.861922,1.67303,,1,,Europe/Paris,,OIF, +OIF:SA:22:251,1,"Prunay le Temple Rue G.Pompidou",48.863102,1.6679,,1,,Europe/Paris,,OIF, +OIF:SA:22:252,1,"Orvilliers Église",48.858859,1.644124,,1,,Europe/Paris,,OIF, +OIF:SA:22:256,1,"Orvilliers Chemin de la Cure",48.861094,1.640492,,1,,Europe/Paris,,OIF, +OIF:SA:22:257,1,"Civry la Foret Grand'Cour",48.867975,1.620236,,1,,Europe/Paris,,OIF, +OIF:SA:22:259,1,"Civry la Foret Mairie",48.866655,1.613817,,1,,Europe/Paris,,OIF, +OIF:SA:22:261,1,"Civry la Foret Mare",48.86368,1.607136,,1,,Europe/Paris,,OIF, +OIF:SA:22:263,1,"Civry la Foret la Picotière",48.862209,1.600285,,1,,Europe/Paris,,OIF, +OIF:SA:22:265,1,"Vallée des Fosses",48.808997,1.677851,,1,,Europe/Paris,,OIF, +OIF:SA:22:270,1,"Gambais le Boulay Place",48.782774,1.659605,,1,,Europe/Paris,,OIF, +OIF:SA:22:275,1,"Le Lièvre",48.79495,1.643441,,1,,Europe/Paris,,OIF, +OIF:SA:22:277,1,"Place du Moulin",48.792782,1.620282,,1,,Europe/Paris,,OIF, +OIF:SA:22:280,1,"La Folie",48.787749,1.618134,,1,,Europe/Paris,,OIF, +OIF:SA:22:281,1,"Les Alouettes",48.788279,1.612944,,1,,Europe/Paris,,OIF, +OIF:SA:22:282,1,"Collège François Mauriac",48.79043,1.607555,,1,,Europe/Paris,,OIF, +OIF:SA:22:284,1,"Les Remparts",48.792939,1.601187,,1,,Europe/Paris,,OIF, +OIF:SA:22:286,1,"République",48.794368,1.602534,,1,,Europe/Paris,,OIF, +OIF:SA:22:288,1,"Brunel",48.823928,1.605947,,1,,Europe/Paris,,OIF, +OIF:SA:22:292,1,"Place de l'Orme",48.835496,1.609623,,1,,Europe/Paris,,OIF, +OIF:SA:22:294,1,"Rue du Môle",48.837997,1.607913,,1,,Europe/Paris,,OIF, +OIF:SA:22:296,1,"Bonneville Château",48.848639,1.599191,,1,,Europe/Paris,,OIF, +OIF:SA:22:298,1,"Boissets Rue de Bonneville",48.859748,1.588421,,1,,Europe/Paris,,OIF, +OIF:SA:22:300,1,"Boissets Rond-Point",48.860685,1.583776,,1,,Europe/Paris,,OIF, +OIF:SA:22:301,1,"Église",48.881927,1.575409,,1,,Europe/Paris,,OIF, +OIF:SA:22:303,1,"Tilly Millerus",48.874119,1.563633,,1,,Europe/Paris,,OIF, +OIF:SA:22:304,1,"Mairie",48.831427,1.608666,,1,,Europe/Paris,,OIF, +OIF:SA:22:305,1,"ZAC la Prévôté",48.789622,1.586815,,1,,Europe/Paris,,OIF, +OIF:SA:22:306,1,"Saint-Mathieu",48.798684,1.594915,,1,,Europe/Paris,,OIF, +OIF:SA:22:308,1,"Pommeraie",48.794015,1.609559,,1,,Europe/Paris,,OIF, +OIF:SA:22:31,1,"Jouars Pontchartrain Collège Saint-Simon",48.804551,1.889194,,1,,Europe/Paris,,OIF, +OIF:SA:22:310,1,"Place Sully",48.815179,1.864248,,1,,Europe/Paris,,OIF, +OIF:SA:22:314,1,"Le Pontel",48.809972,1.88004,,1,,Europe/Paris,,OIF, +OIF:SA:22:316,1,"Jouars Pontchartrain Place Foch",48.802463,1.900593,,1,,Europe/Paris,,OIF, +OIF:SA:22:319,1,"Orgerus Allée des Champs",48.835144,1.70466,,1,,Europe/Paris,,OIF, +OIF:SA:22:32,1,"Collège François Rabelais",48.85548,1.90498,,1,,Europe/Paris,,OIF, +OIF:SA:22:321,1,"Pont de Galluis",48.802335,1.796187,,1,,Europe/Paris,,OIF, +OIF:SA:22:323,1,"1 Route Nationale",48.804959,1.774757,,1,,Europe/Paris,,OIF, +OIF:SA:22:325,1,"Place du Marché",48.805422,1.77003,,1,,Europe/Paris,,OIF, +OIF:SA:22:327,1,"Coty Rue de la Gare",48.8087,1.76747,,1,,Europe/Paris,,OIF, +OIF:SA:22:33,1,"Renouveau",48.851919,1.879282,,1,,Europe/Paris,,OIF, +OIF:SA:22:331,1,"Trou Chevalier",48.814775,1.760884,,1,,Europe/Paris,,OIF, +OIF:SA:22:333,1,"Louis Siou",48.81972,1.758345,,1,,Europe/Paris,,OIF, +OIF:SA:22:335,1,"Montguichet",48.821727,1.758024,,1,,Europe/Paris,,OIF, +OIF:SA:22:336,1,"Rue de la Piquette",48.823909,1.757496,,1,,Europe/Paris,,OIF, +OIF:SA:22:337,1,"Mairie",48.82247,1.755484,,1,,Europe/Paris,,OIF, +OIF:SA:22:339,1,"Croix Rouge",48.820173,1.750773,,1,,Europe/Paris,,OIF, +OIF:SA:22:340,1,"Général Leclerc",48.820815,1.75525,,1,,Europe/Paris,,OIF, +OIF:SA:22:341,1,"Louis Bellan",48.822154,1.760796,,1,,Europe/Paris,,OIF, +OIF:SA:22:343,1,"Le Breuil",48.824271,1.781646,,1,,Europe/Paris,,OIF, +OIF:SA:22:345,1,"Boissy Sans Avoir Église",48.820298,1.794231,,1,,Europe/Paris,,OIF, +OIF:SA:22:347,1,"Boissy Sans Avoir Mairie",48.81953,1.797213,,1,,Europe/Paris,,OIF, +OIF:SA:22:349,1,"Route de la Gare",48.81219,1.762444,,1,,Europe/Paris,,OIF, +OIF:SA:22:351,1,"Noël Benoit",48.822207,1.751267,,1,,Europe/Paris,,OIF, +OIF:SA:22:353,1,"Béhoust Mairie",48.830535,1.72155,,1,,Europe/Paris,,OIF, +OIF:SA:22:357,1,"Orgerus le Moutier",48.828525,1.7021,,1,,Europe/Paris,,OIF, +OIF:SA:22:360,1,"Orgerus Pré de la Jument",48.830482,1.702573,,1,,Europe/Paris,,OIF, +OIF:SA:22:362,1,"Orgerus Allée du Gué",48.834203,1.702541,,1,,Europe/Paris,,OIF, +OIF:SA:22:364,1,"Orgerus Place des Halles",48.83848,1.70063,,1,,Europe/Paris,,OIF, +OIF:SA:22:366,1,"Orgerus Place de la Liberté",48.841373,1.697987,,1,,Europe/Paris,,OIF, +OIF:SA:22:368,1,"Orgerus Pré du Bourg",48.842714,1.699877,,1,,Europe/Paris,,OIF, +OIF:SA:22:370,1,"Osmoy Pré Clos (Lotissement)",48.860923,1.714276,,1,,Europe/Paris,,OIF, +OIF:SA:22:372,1,"Osmoy Mairie",48.865649,1.716637,,1,,Europe/Paris,,OIF, +OIF:SA:22:375,1,"Saint-Martin des Champs Prieuré",48.881964,1.717062,,1,,Europe/Paris,,OIF, +OIF:SA:22:377,1,"Saint-Léonard",48.892278,1.721675,,1,,Europe/Paris,,OIF, +OIF:SA:22:378,1,"Septeuil Saint-Corentin (Haut)",48.8904,1.68701,,1,,Europe/Paris,,OIF, +OIF:SA:22:380,1,"Septeuil Mairie (Place)",48.892006,1.679085,,1,,Europe/Paris,,OIF, +OIF:SA:22:381,1,"Septeuil les Bilheux",48.899963,1.671581,,1,,Europe/Paris,,OIF, +OIF:SA:22:382,1,"Courgent Prétatier",48.890372,1.661755,,1,,Europe/Paris,,OIF, +OIF:SA:22:383,1,"Mulcent Mairie",48.879001,1.652065,,1,,Europe/Paris,,OIF, +OIF:SA:22:384,1,"Montchauvet Côte Lainée",48.893398,1.634878,,1,,Europe/Paris,,OIF, +OIF:SA:22:385,1,"Dammartin en Serve Mairie",48.902888,1.618928,,1,,Europe/Paris,,OIF, +OIF:SA:22:387,1,"Prunay le Temple Rolanderie",48.852886,1.679663,,1,,Europe/Paris,,OIF, +OIF:SA:22:388,1,"Septeuil Wandrille",48.878217,1.683743,,1,,Europe/Paris,,OIF, +OIF:SA:22:389,1,"Gambais Bel Air",48.77733,1.664824,,1,,Europe/Paris,,OIF, +OIF:SA:22:391,1,"Gambais Préjoli",48.77473,1.669998,,1,,Europe/Paris,,OIF, +OIF:SA:22:393,1,"Gambais Poule Faisane",48.773315,1.672512,,1,,Europe/Paris,,OIF, +OIF:SA:22:395,1,"Bourdonne Église",48.756523,1.663476,,1,,Europe/Paris,,OIF, +OIF:SA:22:398,1,"Condé sur Vesgre Église",48.742381,1.661233,,1,,Europe/Paris,,OIF, +OIF:SA:22:399,1,"Condé sur Vesgre Rue de la Vesgre",48.740619,1.661168,,1,,Europe/Paris,,OIF, +OIF:SA:22:401,1,"Église",48.722707,1.653059,,1,,Europe/Paris,,OIF, +OIF:SA:22:405,1,"Condé sur Vesgre École",48.741078,1.661291,,1,,Europe/Paris,,OIF, +OIF:SA:22:409,1,"Thionville sur Opton",48.775649,1.604566,,1,,Europe/Paris,,OIF, +OIF:SA:22:411,1,"Dannemarie Mairie",48.762033,1.607138,,1,,Europe/Paris,,OIF, +OIF:SA:22:416,1,"Ferme de la Cour",48.868965,1.799729,,1,,Europe/Paris,,OIF, +OIF:SA:22:42,1,"La Couperie",48.856928,1.849351,,1,,Europe/Paris,,OIF, +OIF:SA:22:44,1,"Carrefour de Montfort",48.858281,1.824725,,1,,Europe/Paris,,OIF, +OIF:SA:22:46,1,"Jean Barbé (Mairie)",48.859896,1.819002,,1,,Europe/Paris,,OIF, +OIF:SA:22:48,1,"Rue d'Autouillet",48.861436,1.815622,,1,,Europe/Paris,,OIF, +OIF:SA:22:488,1,"Jouars Pontchartrain Cheval Blanc",48.799876,1.907207,,1,,Europe/Paris,,OIF, +OIF:SA:22:490,1,"Jouars Pontchartrain Gendarmerie",48.804609,1.895153,,1,,Europe/Paris,,OIF, +OIF:SA:22:495,1,"Maladrerie",48.784231,1.807352,,1,,Europe/Paris,,OIF, +OIF:SA:22:497,1,"Le Pavé",48.797204,1.670491,,1,,Europe/Paris,,OIF, +OIF:SA:22:50,1,"Puit Perdu - Rue des Champs",48.862662,1.814268,,1,,Europe/Paris,,OIF, +OIF:SA:22:500,1,"Saint-Roch",48.783018,1.821136,,1,,Europe/Paris,,OIF, +OIF:SA:22:503,1,"Calmette",48.983709,1.715626,,1,,Europe/Paris,,OIF, +OIF:SA:22:508,1,"Flins sur Seine Centre Commercial",48.963513,1.862917,,1,,Europe/Paris,,OIF, +OIF:SA:22:52,1,"La Mare",48.878915,1.821469,,1,,Europe/Paris,,OIF, +OIF:SA:22:528,1,"Saulx Marchais la Coudraie",48.843908,1.836074,,1,,Europe/Paris,,OIF, +OIF:SA:22:530,1,"Béhoust Route du Moutier",48.827544,1.714731,,1,,Europe/Paris,,OIF, +OIF:SA:22:54,1,"Les Vignettes",48.869368,1.79949,,1,,Europe/Paris,,OIF, +OIF:SA:22:58,1,"Villarceaux",48.872303,1.783005,,1,,Europe/Paris,,OIF, +OIF:SA:22:59,1,"Goupillières Carrefour de Jumeauville",48.881067,1.764249,,1,,Europe/Paris,,OIF, +OIF:SA:22:604,1,"Marché",48.774769,1.808319,,1,,Europe/Paris,,OIF, +OIF:SA:22:61,1,"Goupillières Église",48.879018,1.760504,,1,,Europe/Paris,,OIF, +OIF:SA:22:63,1,"Goupillières Vallée Penaut",48.875965,1.76004,,1,,Europe/Paris,,OIF, +OIF:SA:22:65,1,"Ferme de l'Orme",48.837709,1.848633,,1,,Europe/Paris,,OIF, +OIF:SA:22:66,1,"Saulx Marchais Basse Pissotte",48.830767,1.839087,,1,,Europe/Paris,,OIF, +OIF:SA:22:68,1,"Saulx Marchais Centre",48.838372,1.83512,,1,,Europe/Paris,,OIF, +OIF:SA:22:70,1,"Mairie",48.865216,1.79467,,1,,Europe/Paris,,OIF, +OIF:SA:22:72,1,"Porte Saint-Martin",48.865646,1.788368,,1,,Europe/Paris,,OIF, +OIF:SA:22:74,1,"Villiers le Mahieu Mairie",48.86035,1.772535,,1,,Europe/Paris,,OIF, +OIF:SA:22:76,1,"Villiers le Mahieu Croix Rouge",48.857091,1.776997,,1,,Europe/Paris,,OIF, +OIF:SA:22:78,1,"Villiers le Mahieu Boulaincourt",48.84957,1.776506,,1,,Europe/Paris,,OIF, +OIF:SA:22:79,1,"Mareil le Guyon Cheval Mort",48.780723,1.843681,,1,,Europe/Paris,,OIF, +OIF:SA:22:81,1,"Église",48.778688,1.859409,,1,,Europe/Paris,,OIF, +OIF:SA:22:83,1,"Le Tremblay sur Mauldre Église",48.778023,1.876482,,1,,Europe/Paris,,OIF, +OIF:SA:22:85,1,"Jouars Pontchartrain les Mousseaux",48.780176,1.892981,,1,,Europe/Paris,,OIF, +OIF:SA:22:87,1,"Maurepas les Louveries",48.765363,1.908852,,1,,Europe/Paris,,OIF, +OIF:SA:22:88,1,"Maurepas la Grand'Mare",48.767474,1.920012,,1,,Europe/Paris,,OIF, +OIF:SA:22:90,1,"Maurepas Armorique",48.765031,1.929386,,1,,Europe/Paris,,OIF, +OIF:SA:22:92,1,"Maurepas Bretagne",48.764478,1.934794,,1,,Europe/Paris,,OIF, +OIF:SA:22:94,1,"Maurepas les Pyramides",48.763605,1.947758,,1,,Europe/Paris,,OIF, +OIF:SA:22:96,1,"Franche Comté / Bourgogne",48.767054,1.951159,,1,,Europe/Paris,,OIF, +OIF:SA:22:9631,1,"Bois Renoult",48.770612,1.797232,,1,,Europe/Paris,,OIF, +OIF:SA:22:9648,1,"Arbouville",48.636076,1.818158,,1,,Europe/Paris,,OIF, +OIF:SA:22:9650,1,"Buissonnet",48.638496,1.773057,,1,,Europe/Paris,,OIF, +OIF:SA:22:9652,1,"Volaille",48.643572,1.743797,,1,,Europe/Paris,,OIF, +OIF:SA:22:9654,1,"Bois Dieu",48.647494,1.720787,,1,,Europe/Paris,,OIF, +OIF:SA:22:9656,1,"Raizeux les Chaises",48.650275,1.692655,,1,,Europe/Paris,,OIF, +OIF:SA:22:9658,1,"Béchereau",48.653467,1.681232,,1,,Europe/Paris,,OIF, +OIF:SA:22:9660,1,"La Villeneuve",48.658586,1.673359,,1,,Europe/Paris,,OIF, +OIF:SA:22:9662,1,"Boissières École Soredab",48.678239,1.649103,,1,,Europe/Paris,,OIF, +OIF:SA:22:9664,1,"Café",48.680213,1.652328,,1,,Europe/Paris,,OIF, +OIF:SA:22:9666,1,"Libération",48.813196,1.861078,,1,,Europe/Paris,,OIF, +OIF:SA:22:9668,1,"Jean Moulin",48.796124,1.970809,,1,,Europe/Paris,,OIF, +OIF:SA:22:9670,1,"De Lattre de Tassigny",48.797648,1.974777,,1,,Europe/Paris,,OIF, +OIF:SA:22:9672,1,"Pissaloup",48.795515,1.981706,,1,,Europe/Paris,,OIF, +OIF:SA:22:9674,1,"Vignes",48.787796,1.604572,,1,,Europe/Paris,,OIF, +OIF:SA:22:98,1,"Maurepas les 7 Mares",48.769111,1.948152,,1,,Europe/Paris,,OIF, +OIF:SA:23:10,1,"Église",49.072067,1.777023,,1,,Europe/Paris,,OIF, +OIF:SA:23:100,1,"Stade Mazières",48.948701,2.042246,,1,,Europe/Paris,,OIF, +OIF:SA:23:1002,1,"Roseland",48.995248,1.872353,,1,,Europe/Paris,,OIF, +OIF:SA:23:1006,1,"Frères Tissier",48.94237,2.026689,,1,,Europe/Paris,,OIF, +OIF:SA:23:1007,1,"Château d'Eau",48.944631,2.035787,,1,,Europe/Paris,,OIF, +OIF:SA:23:1016,1,"Les Ouches",48.978044,2.032065,,1,,Europe/Paris,,OIF, +OIF:SA:23:102,1,"Vieille Ferme",48.940434,2.011646,,1,,Europe/Paris,,OIF, +OIF:SA:23:1027,1,"Église",48.928757,1.936031,,1,,Europe/Paris,,OIF, +OIF:SA:23:1032,1,"Moulin des Roches",49.036465,1.851655,,1,,Europe/Paris,,OIF, +OIF:SA:23:1035,1,"La Poste",48.982273,2.00214,,1,,Europe/Paris,,OIF, +OIF:SA:23:1044,1,"Les Chatelaînes",48.976482,2.015113,,1,,Europe/Paris,,OIF, +OIF:SA:23:1046,1,"Frères Leiris",48.994323,2.019945,,1,,Europe/Paris,,OIF, +OIF:SA:23:1051,1,"Maison des Arts",48.990409,1.737672,,1,,Europe/Paris,,OIF, +OIF:SA:23:106,1,"Rond-Point du Haut de Gency",49.048,2.045456,,1,,Europe/Paris,,OIF, +OIF:SA:23:1065,1,"Salle des Fêtes",48.802483,1.96669,,1,,Europe/Paris,,OIF, +OIF:SA:23:1066,1,"La Chapelle",48.882867,1.984889,,1,,Europe/Paris,,OIF, +OIF:SA:23:107,1,"Rue du Chemin de Fer",49.04805,2.036656,,1,,Europe/Paris,,OIF, +OIF:SA:23:109,1,"Rond-Point du Golf",49.039978,2.015756,,1,,Europe/Paris,,OIF, +OIF:SA:23:1095,1,"Reine Blanche",48.939265,2.031625,,1,,Europe/Paris,,OIF, +OIF:SA:23:1097,1,"Senette",48.936938,2.035411,,1,,Europe/Paris,,OIF, +OIF:SA:23:1098,1,"Stade Bretagne",48.936823,2.022241,,1,,Europe/Paris,,OIF, +OIF:SA:23:1102,1,"Sainte-Anne",48.932508,2.056102,,1,,Europe/Paris,,OIF, +OIF:SA:23:1103,1,"Foch / Justice",48.929447,2.049939,,1,,Europe/Paris,,OIF, +OIF:SA:23:111,1,"La Belle Heaumiere",49.049527,2.023776,,1,,Europe/Paris,,OIF, +OIF:SA:23:1129,1,"Saint-Exupéry",48.939447,2.060272,,1,,Europe/Paris,,OIF, +OIF:SA:23:113,1,"Martelet",49.045903,2.039597,,1,,Europe/Paris,,OIF, +OIF:SA:23:1130,1,"La Coudraie",48.918538,2.013638,,1,,Europe/Paris,,OIF, +OIF:SA:23:1135,1,"Europe",48.804569,2.130521,,1,,Europe/Paris,,OIF, +OIF:SA:23:1145,1,"Maryse Bastié",48.928368,2.055244,,1,,Europe/Paris,,OIF, +OIF:SA:23:1147,1,"Tennis",48.855672,2.019301,,1,,Europe/Paris,,OIF, +OIF:SA:23:1148,1,"Julia",48.999241,2.060718,,1,,Europe/Paris,,OIF, +OIF:SA:23:115,1,"Musaraigne",49.049103,2.030033,,1,,Europe/Paris,,OIF, +OIF:SA:23:1200,1,"Les Fleurs",48.945201,2.024755,,1,,Europe/Paris,,OIF, +OIF:SA:23:1203,1,"Château Vanderbilt",48.943731,2.02138,,1,,Europe/Paris,,OIF, +OIF:SA:23:1205,1,"Saint-Louis",48.942541,2.017977,,1,,Europe/Paris,,OIF, +OIF:SA:23:1207,1,"Port Saint-Louis",48.942261,2.012637,,1,,Europe/Paris,,OIF, +OIF:SA:23:1208,1,"Les Oiseaux - Parc du Peuple de l'Herbe",48.939071,2.012841,,1,,Europe/Paris,,OIF, +OIF:SA:23:121,1,"Hautes Garennes",48.966696,2.033122,,1,,Europe/Paris,,OIF, +OIF:SA:23:1210,1,"Galiotte",48.936892,2.033467,,1,,Europe/Paris,,OIF, +OIF:SA:23:1212,1,"Maurice Evrard",48.940131,2.022473,,1,,Europe/Paris,,OIF, +OIF:SA:23:1214,1,"Flora Tristan",48.938445,2.020566,,1,,Europe/Paris,,OIF, +OIF:SA:23:1216,1,"Saint-Honoré",48.937609,2.017284,,1,,Europe/Paris,,OIF, +OIF:SA:23:1217,1,"Les Oiseaux",48.938678,2.013635,,1,,Europe/Paris,,OIF, +OIF:SA:23:1218,1,"Maison des Insectes - Parc du Peuple de l'Herbe",48.937861,2.013749,,1,,Europe/Paris,,OIF, +OIF:SA:23:1220,1,"Parc Provence",48.936653,2.015994,,1,,Europe/Paris,,OIF, +OIF:SA:23:1222,1,"Fabrique 21",48.94861,2.025089,,1,,Europe/Paris,,OIF, +OIF:SA:23:1225,1,"Chemin Vert",48.958666,2.03654,,1,,Europe/Paris,,OIF, +OIF:SA:23:1229,1,"Roland le Nestour",48.940668,2.059727,,1,,Europe/Paris,,OIF, +OIF:SA:23:123,1,"Mairie",48.977358,2.031039,,1,,Europe/Paris,,OIF, +OIF:SA:23:1230,1,"Piscine Saint-Exupéry",48.939275,2.057777,,1,,Europe/Paris,,OIF, +OIF:SA:23:1233,1,"Rue de la Marne",48.934837,2.062561,,1,,Europe/Paris,,OIF, +OIF:SA:23:1235,1,"Foch Flament",48.933896,2.057738,,1,,Europe/Paris,,OIF, +OIF:SA:23:1236,1,"La Bruyère",48.927483,2.053462,,1,,Europe/Paris,,OIF, +OIF:SA:23:1237,1,"Rue du Stade",48.937837,2.055841,,1,,Europe/Paris,,OIF, +OIF:SA:23:1238,1,"Parvis Gare",48.932459,2.041391,,1,,Europe/Paris,,OIF, +OIF:SA:23:126,1,"Les Ormes",48.855629,1.995221,,1,,Europe/Paris,,OIF, +OIF:SA:23:13,1,"Berteaux",48.967918,2.043918,,1,,Europe/Paris,,OIF, +OIF:SA:23:131,1,"La Plaine",48.974535,2.032086,,1,,Europe/Paris,,OIF, +OIF:SA:23:134,1,"Sécurité Sociale",48.971511,2.03223,,1,,Europe/Paris,,OIF, +OIF:SA:23:140,1,"Rue Chaude",48.908639,2.04304,,1,,Europe/Paris,,OIF, +OIF:SA:23:149,1,"Jules Ferry",48.823243,1.984531,,1,,Europe/Paris,,OIF, +OIF:SA:23:15,1,"Les Charvaux",48.991264,2.054287,,1,,Europe/Paris,,OIF, +OIF:SA:23:152,1,"Toit et Joie",48.82573,1.986893,,1,,Europe/Paris,,OIF, +OIF:SA:23:154,1,"République",48.822159,1.988343,,1,,Europe/Paris,,OIF, +OIF:SA:23:156,1,"Docteur Roux",48.828011,1.991618,,1,,Europe/Paris,,OIF, +OIF:SA:23:158,1,"Docteur Vaillant",48.826348,1.996043,,1,,Europe/Paris,,OIF, +OIF:SA:23:16,1,"Cd 55",48.988559,2.054224,,1,,Europe/Paris,,OIF, +OIF:SA:23:165,1,"Relais du Nord",49.055165,1.767106,,1,,Europe/Paris,,OIF, +OIF:SA:23:18,1,"Désavis",48.980248,2.055221,,1,,Europe/Paris,,OIF, +OIF:SA:23:2,1,"Rue de Feucherolles",48.906909,2.022102,,1,,Europe/Paris,,OIF, +OIF:SA:23:20,1,"Flore",48.965036,2.044637,,1,,Europe/Paris,,OIF, +OIF:SA:23:206,1,"Gabriel Péri",48.975133,1.805422,,1,,Europe/Paris,,OIF, +OIF:SA:23:208,1,"Moulin à Vent",48.98807,1.812635,,1,,Europe/Paris,,OIF, +OIF:SA:23:210,1,"Jean Jaurès",48.974745,1.803132,,1,,Europe/Paris,,OIF, +OIF:SA:23:214,1,"L'Escale",49.002221,1.894691,,1,,Europe/Paris,,OIF, +OIF:SA:23:218,1,"Grilles du Château",48.987843,1.798099,,1,,Europe/Paris,,OIF, +OIF:SA:23:22,1,"Foch",48.987243,2.064216,,1,,Europe/Paris,,OIF, +OIF:SA:23:220,1,"Frileuse",48.983327,1.788175,,1,,Europe/Paris,,OIF, +OIF:SA:23:222,1,"Lavoir",48.987841,1.791684,,1,,Europe/Paris,,OIF, +OIF:SA:23:224,1,"Château",49.046061,1.851913,,1,,Europe/Paris,,OIF, +OIF:SA:23:227,1,"Damply",49.039137,1.833795,,1,,Europe/Paris,,OIF, +OIF:SA:23:228,1,"Mairie",49.045919,1.853842,,1,,Europe/Paris,,OIF, +OIF:SA:23:230,1,"Mairie de Montalet le Bois",49.053375,1.815811,,1,,Europe/Paris,,OIF, +OIF:SA:23:232,1,"Le Noyer",49.010987,2.031321,,1,,Europe/Paris,,OIF, +OIF:SA:23:234,1,"Rond-Point Croix de Saint-Jacques",49.011177,2.053967,,1,,Europe/Paris,,OIF, +OIF:SA:23:236,1,"Les Jouannes",49.010867,2.046943,,1,,Europe/Paris,,OIF, +OIF:SA:23:238,1,"Stade",49.01036,2.03945,,1,,Europe/Paris,,OIF, +OIF:SA:23:240,1,"Rue des Vignes",49.006497,2.056902,,1,,Europe/Paris,,OIF, +OIF:SA:23:242,1,"La Carpe Qui Tête",48.989967,1.847759,,1,,Europe/Paris,,OIF, +OIF:SA:23:244,1,"Les Tilleuls",48.992003,1.86017,,1,,Europe/Paris,,OIF, +OIF:SA:23:246,1,"3 Cornets",48.989681,1.842033,,1,,Europe/Paris,,OIF, +OIF:SA:23:248,1,"École",49.059238,1.814228,,1,,Europe/Paris,,OIF, +OIF:SA:23:250,1,"Basses Meunières",48.992956,1.743982,,1,,Europe/Paris,,OIF, +OIF:SA:23:252,1,"Bois aux Moines",49.004839,1.732762,,1,,Europe/Paris,,OIF, +OIF:SA:23:253,1,"Bas Caillois",48.995027,1.742976,,1,,Europe/Paris,,OIF, +OIF:SA:23:255,1,"Hauts Célestins",49.003626,1.734569,,1,,Europe/Paris,,OIF, +OIF:SA:23:256,1,"Croms",48.999414,1.741955,,1,,Europe/Paris,,OIF, +OIF:SA:23:258,1,"Edouard Fosse",49.004736,1.737322,,1,,Europe/Paris,,OIF, +OIF:SA:23:26,1,"Foch / Galliéni",48.98965,2.065828,,1,,Europe/Paris,,OIF, +OIF:SA:23:260,1,"Fosses Rouges",49.005927,1.733436,,1,,Europe/Paris,,OIF, +OIF:SA:23:263,1,"Hauts de Limay",49.004461,1.738254,,1,,Europe/Paris,,OIF, +OIF:SA:23:264,1,"Centre Commercial",48.991123,1.754356,,1,,Europe/Paris,,OIF, +OIF:SA:23:266,1,"Jean Macé",48.996188,1.741078,,1,,Europe/Paris,,OIF, +OIF:SA:23:268,1,"Mairie",48.992868,1.73436,,1,,Europe/Paris,,OIF, +OIF:SA:23:270,1,"Pont de Limay",48.993492,1.726415,,1,,Europe/Paris,,OIF, +OIF:SA:23:272,1,"Le Port Autonome",48.981221,1.753269,,1,,Europe/Paris,,OIF, +OIF:SA:23:274,1,"Pôle Lafarge",48.988893,1.747713,,1,,Europe/Paris,,OIF, +OIF:SA:23:275,1,"Résidence Wilson",48.988611,1.740332,,1,,Europe/Paris,,OIF, +OIF:SA:23:28,1,"Les Garennes",48.967603,2.045196,,1,,Europe/Paris,,OIF, +OIF:SA:23:285,1,"Maurecourt Ancienne Gare",48.99759,2.065756,,1,,Europe/Paris,,OIF, +OIF:SA:23:287,1,"Berteaux",48.996904,2.064513,,1,,Europe/Paris,,OIF, +OIF:SA:23:288,1,"Rue de Choisy",48.997331,2.066614,,1,,Europe/Paris,,OIF, +OIF:SA:23:289,1,"Clos du Roy",48.993947,2.066331,,1,,Europe/Paris,,OIF, +OIF:SA:23:291,1,"Grand Choisy",49.001769,2.065744,,1,,Europe/Paris,,OIF, +OIF:SA:23:294,1,"Viaduc",48.990996,2.066681,,1,,Europe/Paris,,OIF, +OIF:SA:23:30,1,"Rue de l'Hautil",48.983874,2.056854,,1,,Europe/Paris,,OIF, +OIF:SA:23:31,1,"Leclerc",48.976175,2.054206,,1,,Europe/Paris,,OIF, +OIF:SA:23:313,1,"Henri IV",49.013485,1.922761,,1,,Europe/Paris,,OIF, +OIF:SA:23:319,1,"Le Beau Site",48.999655,1.887426,,1,,Europe/Paris,,OIF, +OIF:SA:23:32,1,"Mairie",48.981277,2.060704,,1,,Europe/Paris,,OIF, +OIF:SA:23:321,1,"Les Sources",48.996127,1.875892,,1,,Europe/Paris,,OIF, +OIF:SA:23:324,1,"Bénainvilliers Grande Rue",48.926375,1.94277,,1,,Europe/Paris,,OIF, +OIF:SA:23:326,1,"Cendrière",48.926742,1.938335,,1,,Europe/Paris,,OIF, +OIF:SA:23:328,1,"Château",48.941549,1.963559,,1,,Europe/Paris,,OIF, +OIF:SA:23:330,1,"Croix Paquet",48.926069,1.946823,,1,,Europe/Paris,,OIF, +OIF:SA:23:336,1,"Vallée Maria",48.935436,1.948226,,1,,Europe/Paris,,OIF, +OIF:SA:23:338,1,"Épinettes",48.940342,1.958278,,1,,Europe/Paris,,OIF, +OIF:SA:23:339,1,"Rue du Moulle",48.930017,1.939234,,1,,Europe/Paris,,OIF, +OIF:SA:23:345,1,"Chamoiserie",48.972091,1.918376,,1,,Europe/Paris,,OIF, +OIF:SA:23:346,1,"Comtesse",48.974271,1.917103,,1,,Europe/Paris,,OIF, +OIF:SA:23:355,1,"Novotel",48.924107,1.994899,,1,,Europe/Paris,,OIF, +OIF:SA:23:356,1,"Novotel (Pont à 13)",48.925215,1.99723,,1,,Europe/Paris,,OIF, +OIF:SA:23:357,1,"La Chapelle",48.91841,1.989502,,1,,Europe/Paris,,OIF, +OIF:SA:23:36,1,"Jean Monnet",48.975761,2.053771,,1,,Europe/Paris,,OIF, +OIF:SA:23:360,1,"Auberge Sans Nom",48.923702,1.974976,,1,,Europe/Paris,,OIF, +OIF:SA:23:362,1,"Les Briochets",48.923368,1.995705,,1,,Europe/Paris,,OIF, +OIF:SA:23:367,1,"Église",48.919629,1.976454,,1,,Europe/Paris,,OIF, +OIF:SA:23:369,1,"40 sous",48.929731,1.977478,,1,,Europe/Paris,,OIF, +OIF:SA:23:37,1,"Foch / Pasteur",48.987496,2.063969,,1,,Europe/Paris,,OIF, +OIF:SA:23:370,1,"Maison Blanche",48.930603,1.974519,,1,,Europe/Paris,,OIF, +OIF:SA:23:372,1,"Maurer",48.916954,1.970796,,1,,Europe/Paris,,OIF, +OIF:SA:23:374,1,"Mdi",48.928974,1.979584,,1,,Europe/Paris,,OIF, +OIF:SA:23:375,1,"Orme Gauthier",48.918394,1.968652,,1,,Europe/Paris,,OIF, +OIF:SA:23:377,1,"Pasteur / Cd 113",48.927851,1.982858,,1,,Europe/Paris,,OIF, +OIF:SA:23:378,1,"Poiriers",48.92224,1.970742,,1,,Europe/Paris,,OIF, +OIF:SA:23:383,1,"Tressancourt",48.918598,1.984114,,1,,Europe/Paris,,OIF, +OIF:SA:23:387,1,"Ferme de Montamets",48.923659,1.963197,,1,,Europe/Paris,,OIF, +OIF:SA:23:39,1,"Place du 8 Mai",48.978493,2.057709,,1,,Europe/Paris,,OIF, +OIF:SA:23:391,1,"8 Mai 1945 / Hôpital Charcot",48.824418,1.945022,,1,,Europe/Paris,,OIF, +OIF:SA:23:393,1,"La Bataille",48.803082,1.975364,,1,,Europe/Paris,,OIF, +OIF:SA:23:397,1,"Pablo Picasso",48.803296,1.964203,,1,,Europe/Paris,,OIF, +OIF:SA:23:399,1,"René Bazin",48.820394,1.944395,,1,,Europe/Paris,,OIF, +OIF:SA:23:401,1,"Abel Guyet",48.828151,1.945446,,1,,Europe/Paris,,OIF, +OIF:SA:23:403,1,"Jonchère",48.815304,1.945567,,1,,Europe/Paris,,OIF, +OIF:SA:23:405,1,"Marché",48.818357,1.944053,,1,,Europe/Paris,,OIF, +OIF:SA:23:407,1,"Pressoir",48.805439,1.954009,,1,,Europe/Paris,,OIF, +OIF:SA:23:408,1,"Zone Industrielle les Gâtines",48.800942,1.981843,,1,,Europe/Paris,,OIF, +OIF:SA:23:409,1,"Ernest Lavisse",48.926419,2.052173,,1,,Europe/Paris,,OIF, +OIF:SA:23:41,1,"Ponceau",48.971345,2.046868,,1,,Europe/Paris,,OIF, +OIF:SA:23:412,1,"Bussy",48.922261,2.037253,,1,,Europe/Paris,,OIF, +OIF:SA:23:414,1,"Blanche de Castille",48.925236,2.033535,,1,,Europe/Paris,,OIF, +OIF:SA:23:420,1,"Marcel Cerdan",48.918018,2.026387,,1,,Europe/Paris,,OIF, +OIF:SA:23:422,1,"Grands Champs",48.918995,2.02583,,1,,Europe/Paris,,OIF, +OIF:SA:23:424,1,"Château Maurice Clerc",48.919952,2.01787,,1,,Europe/Paris,,OIF, +OIF:SA:23:43,1,"Quercy",48.991583,2.052333,,1,,Europe/Paris,,OIF, +OIF:SA:23:431,1,"Corneille",48.920302,2.035231,,1,,Europe/Paris,,OIF, +OIF:SA:23:434,1,"La Part Dieu",48.922314,2.024143,,1,,Europe/Paris,,OIF, +OIF:SA:23:443,1,"Victor Hugo",48.92882,2.045271,,1,,Europe/Paris,,OIF, +OIF:SA:23:45,1,"Valois Robaresses",48.98945,2.057919,,1,,Europe/Paris,,OIF, +OIF:SA:23:450,1,"La Maladrerie",48.915053,2.024266,,1,,Europe/Paris,,OIF, +OIF:SA:23:458,1,"Villa Savoye",48.924459,2.030137,,1,,Europe/Paris,,OIF, +OIF:SA:23:460,1,"Rue au Pain",48.930504,2.039342,,1,,Europe/Paris,,OIF, +OIF:SA:23:461,1,"Péguy",48.926274,2.049902,,1,,Europe/Paris,,OIF, +OIF:SA:23:463,1,"Perret",48.933769,2.049643,,1,,Europe/Paris,,OIF, +OIF:SA:23:466,1,"Rond-Point",48.949564,2.061255,,1,,Europe/Paris,,OIF, +OIF:SA:23:468,1,"Racine",48.921378,2.027892,,1,,Europe/Paris,,OIF, +OIF:SA:23:47,1,"Vermandois",48.988752,2.052348,,1,,Europe/Paris,,OIF, +OIF:SA:23:471,1,"Ronsard",48.920609,2.031094,,1,,Europe/Paris,,OIF, +OIF:SA:23:475,1,"Centre de Secours",48.914725,2.022852,,1,,Europe/Paris,,OIF, +OIF:SA:23:477,1,"Square Diez",48.933473,2.051609,,1,,Europe/Paris,,OIF, +OIF:SA:23:479,1,"La Terrasse",48.923933,2.05357,,1,,Europe/Paris,,OIF, +OIF:SA:23:480,1,"Ursulines",48.928131,2.041475,,1,,Europe/Paris,,OIF, +OIF:SA:23:481,1,"Montaigne",48.922127,2.024744,,1,,Europe/Paris,,OIF, +OIF:SA:23:482,1,"Centrale",48.974753,1.768843,,1,,Europe/Paris,,OIF, +OIF:SA:23:484,1,"Mairie",48.972311,1.776978,,1,,Europe/Paris,,OIF, +OIF:SA:23:486,1,"Cité Tibaldi",48.973925,1.780818,,1,,Europe/Paris,,OIF, +OIF:SA:23:497,1,"Guitel Lecoq",48.864219,2.030535,,1,,Europe/Paris,,OIF, +OIF:SA:23:502,1,"Grande Pièce",48.860814,2.029438,,1,,Europe/Paris,,OIF, +OIF:SA:23:504,1,"Square des Tilleuls",48.859288,2.026784,,1,,Europe/Paris,,OIF, +OIF:SA:23:506,1,"Buisson Sainte-Anne",48.860512,2.015389,,1,,Europe/Paris,,OIF, +OIF:SA:23:510,1,"Vergers de la Ranchère",48.851733,2.017793,,1,,Europe/Paris,,OIF, +OIF:SA:23:516,1,"Centre Commercial",48.860069,2.02129,,1,,Europe/Paris,,OIF, +OIF:SA:23:522,1,"Maison des Associations",48.861289,2.025512,,1,,Europe/Paris,,OIF, +OIF:SA:23:524,1,"Pré Saint-Nom Nord",48.858555,2.024697,,1,,Europe/Paris,,OIF, +OIF:SA:23:5272,1,"Ferme de 40 sous",48.915868,2.016682,,1,,Europe/Paris,,OIF, +OIF:SA:23:5273,1,"La Bidonnière",48.912211,2.010364,,1,,Europe/Paris,,OIF, +OIF:SA:23:5274,1,"Parc de Bèthemont",48.912364,2.000778,,1,,Europe/Paris,,OIF, +OIF:SA:23:5275,1,"Chapelle-Bois Fleuri",48.918219,1.992681,,1,,Europe/Paris,,OIF, +OIF:SA:23:5276,1,"Médiathèque",48.931937,2.040985,,1,,Europe/Paris,,OIF, +OIF:SA:23:5278,1,"Frères Rose",48.931186,2.042394,,1,,Europe/Paris,,OIF, +OIF:SA:23:528,1,"2 Croix",48.860979,2.018689,,1,,Europe/Paris,,OIF, +OIF:SA:23:538,1,"L'Ermitage",48.887015,2.097165,,1,,Europe/Paris,,OIF, +OIF:SA:23:547,1,"RD190/RN184",48.909774,2.075023,,1,,Europe/Paris,,OIF, +OIF:SA:23:553,1,"Grande Ceinture",48.901427,2.071845,,1,,Europe/Paris,,OIF, +OIF:SA:23:562,1,"374 Rue Paul Doumer",48.990898,1.991023,,1,,Europe/Paris,,OIF, +OIF:SA:23:564,1,"402 Rue Paul Doumer",48.993196,1.987914,,1,,Europe/Paris,,OIF, +OIF:SA:23:566,1,"Jean Sébastien Bach",48.982304,2.016946,,1,,Europe/Paris,,OIF, +OIF:SA:23:568,1,"Le Banc",48.971264,2.008565,,1,,Europe/Paris,,OIF, +OIF:SA:23:570,1,"Bartok",48.982582,2.013149,,1,,Europe/Paris,,OIF, +OIF:SA:23:574,1,"Cheverchemont",48.990041,2.004991,,1,,Europe/Paris,,OIF, +OIF:SA:23:576,1,"La Chapelle",49.001614,2.012784,,1,,Europe/Paris,,OIF, +OIF:SA:23:578,1,"Cimetière",48.985506,2.003238,,1,,Europe/Paris,,OIF, +OIF:SA:23:58,1,"3 Cèdres",48.945226,2.027504,,1,,Europe/Paris,,OIF, +OIF:SA:23:580,1,"Cosec",48.975318,2.016409,,1,,Europe/Paris,,OIF, +OIF:SA:23:582,1,"La Dauphinoise",48.997088,2.017258,,1,,Europe/Paris,,OIF, +OIF:SA:23:584,1,"Ferme Joyeuse",48.986578,2.02557,,1,,Europe/Paris,,OIF, +OIF:SA:23:586,1,"Forêt",48.978257,2.0159,,1,,Europe/Paris,,OIF, +OIF:SA:23:588,1,"Les Garennes",48.969456,2.012876,,1,,Europe/Paris,,OIF, +OIF:SA:23:590,1,"Général Leclerc / l'Arche",48.986458,2.009513,,1,,Europe/Paris,,OIF, +OIF:SA:23:592,1,"Le Garage",48.969304,2.009977,,1,,Europe/Paris,,OIF, +OIF:SA:23:594,1,"Hublins",48.982797,2.011543,,1,,Europe/Paris,,OIF, +OIF:SA:23:596,1,"Impasse du Saule",48.988202,2.003262,,1,,Europe/Paris,,OIF, +OIF:SA:23:597,1,"Jardins Nouveaux",48.988022,2.007708,,1,,Europe/Paris,,OIF, +OIF:SA:23:60,1,"Les 3 Tours",48.941416,2.03224,,1,,Europe/Paris,,OIF, +OIF:SA:23:600,1,"Lieutenant Lecomte",48.97708,2.009856,,1,,Europe/Paris,,OIF, +OIF:SA:23:603,1,"Place des Marronniers",48.983888,2.00443,,1,,Europe/Paris,,OIF, +OIF:SA:23:605,1,"Chemin du Moulin",48.977993,2.013823,,1,,Europe/Paris,,OIF, +OIF:SA:23:607,1,"Rue du Pavillon",48.97629,2.006192,,1,,Europe/Paris,,OIF, +OIF:SA:23:609,1,"Petites Terres",48.987677,2.00489,,1,,Europe/Paris,,OIF, +OIF:SA:23:610,1,"Les Bouveries",48.956794,2.018987,,1,,Europe/Paris,,OIF, +OIF:SA:23:614,1,"Le Routier",48.986865,1.996418,,1,,Europe/Paris,,OIF, +OIF:SA:23:616,1,"Place des Saussaies",48.979767,2.017536,,1,,Europe/Paris,,OIF, +OIF:SA:23:618,1,"Senet",48.979456,2.004008,,1,,Europe/Paris,,OIF, +OIF:SA:23:62,1,"Ancienne Mairie",48.946066,2.038025,,1,,Europe/Paris,,OIF, +OIF:SA:23:620,1,"Boris Vian",49.035864,2.017143,,1,,Europe/Paris,,OIF, +OIF:SA:23:622,1,"La Croix Lieu",49.030114,2.022337,,1,,Europe/Paris,,OIF, +OIF:SA:23:626,1,"La Marnière",49.024073,2.0224,,1,,Europe/Paris,,OIF, +OIF:SA:23:63,1,"Apollinaire",48.936969,2.019743,,1,,Europe/Paris,,OIF, +OIF:SA:23:638,1,"Port Maron - Orpéa",48.995822,1.984229,,1,,Europe/Paris,,OIF, +OIF:SA:23:647,1,"Haie Bergerie",48.82752,1.99901,,1,,Europe/Paris,,OIF, +OIF:SA:23:65,1,"Centre Commercial",48.940609,2.019885,,1,,Europe/Paris,,OIF, +OIF:SA:23:657,1,"Fontaine aux Dames",48.832806,2.009033,,1,,Europe/Paris,,OIF, +OIF:SA:23:66,1,"Champfleury",48.950897,2.041927,,1,,Europe/Paris,,OIF, +OIF:SA:23:670,1,"Mairie",48.830572,2.004844,,1,,Europe/Paris,,OIF, +OIF:SA:23:681,1,"Mimoun",48.830296,2.001054,,1,,Europe/Paris,,OIF, +OIF:SA:23:693,1,"Village",48.833921,2.011421,,1,,Europe/Paris,,OIF, +OIF:SA:23:7,1,"Place du Château",48.902086,2.018403,,1,,Europe/Paris,,OIF, +OIF:SA:23:70,1,"La Chapelle",48.939165,2.017711,,1,,Europe/Paris,,OIF, +OIF:SA:23:71,1,"Cimetière",48.949536,2.038517,,1,,Europe/Paris,,OIF, +OIF:SA:23:74,1,"Claude Monet",48.946615,2.036651,,1,,Europe/Paris,,OIF, +OIF:SA:23:76,1,"Les Côteaux",48.94186,2.037933,,1,,Europe/Paris,,OIF, +OIF:SA:23:78,1,"EDF",48.940559,2.033548,,1,,Europe/Paris,,OIF, +OIF:SA:23:79,1,"Église",48.948247,2.0404,,1,,Europe/Paris,,OIF, +OIF:SA:23:80,1,"Esplanade",48.943073,2.028956,,1,,Europe/Paris,,OIF, +OIF:SA:23:807,1,"Le Golf",48.853395,2.036639,,1,,Europe/Paris,,OIF, +OIF:SA:23:82,1,"La Fourche",48.956484,2.042673,,1,,Europe/Paris,,OIF, +OIF:SA:23:837,1,"Val Joyeux",48.817796,2.00171,,1,,Europe/Paris,,OIF, +OIF:SA:23:84,1,"Groupe Scolaire Provence",48.938897,2.014861,,1,,Europe/Paris,,OIF, +OIF:SA:23:842,1,"Grignon RD 119",48.843021,1.944493,,1,,Europe/Paris,,OIF, +OIF:SA:23:849,1,"Voltaire",48.819828,1.91368,,1,,Europe/Paris,,OIF, +OIF:SA:23:851,1,"Chatron",48.821393,1.904762,,1,,Europe/Paris,,OIF, +OIF:SA:23:86,1,"Sainte-Honorine",48.946041,2.040495,,1,,Europe/Paris,,OIF, +OIF:SA:23:866,1,"Ida Nudel",48.825563,1.964324,,1,,Europe/Paris,,OIF, +OIF:SA:23:867,1,"Mairie",49.035053,1.867003,,1,,Europe/Paris,,OIF, +OIF:SA:23:870,1,"Rue des Grands Champs",48.926765,2.046538,,1,,Europe/Paris,,OIF, +OIF:SA:23:871,1,"Orée du Bois",48.926137,2.054302,,1,,Europe/Paris,,OIF, +OIF:SA:23:873,1,"Grande Ceinture",48.926634,2.051653,,1,,Europe/Paris,,OIF, +OIF:SA:23:875,1,"Simonet",48.934102,2.059196,,1,,Europe/Paris,,OIF, +OIF:SA:23:88,1,"Île de la Dérivation",48.951559,2.044297,,1,,Europe/Paris,,OIF, +OIF:SA:23:886,1,"Boulevard Robespierre",48.934622,2.056984,,1,,Europe/Paris,,OIF, +OIF:SA:23:893,1,"Laurence Caroline",48.931737,2.047451,,1,,Europe/Paris,,OIF, +OIF:SA:23:90,1,"Le Parc",48.942433,2.033578,,1,,Europe/Paris,,OIF, +OIF:SA:23:900,1,"Four à Chaux",48.928055,1.974366,,1,,Europe/Paris,,OIF, +OIF:SA:23:907,1,"Le Lac",48.948681,2.06403,,1,,Europe/Paris,,OIF, +OIF:SA:23:909,1,"Nocquet",49.038274,1.841913,,1,,Europe/Paris,,OIF, +OIF:SA:23:911,1,"Giraud Teulon",48.892453,2.099436,,1,,Europe/Paris,,OIF, +OIF:SA:23:918,1,"Rond-Point des Gâtines",48.801635,1.965752,,1,,Europe/Paris,,OIF, +OIF:SA:23:92,1,"Pont Neuf",48.939516,2.036828,,1,,Europe/Paris,,OIF, +OIF:SA:23:933,1,"La Bussie",49.032291,2.020824,,1,,Europe/Paris,,OIF, +OIF:SA:23:939,1,"Rond-Point du Chêne",49.046727,2.023376,,1,,Europe/Paris,,OIF, +OIF:SA:23:941,1,"Les Vallanchards",49.020986,2.02181,,1,,Europe/Paris,,OIF, +OIF:SA:23:943,1,"Mairie",48.833354,1.898874,,1,,Europe/Paris,,OIF, +OIF:SA:23:945,1,"Voltaire",48.918302,2.026144,,1,,Europe/Paris,,OIF, +OIF:SA:23:946,1,"Chemin de Bichaille",48.932691,1.942746,,1,,Europe/Paris,,OIF, +OIF:SA:23:951,1,"Avenue de la Maladrerie",48.920274,2.031198,,1,,Europe/Paris,,OIF, +OIF:SA:23:959,1,"Le Tremblay",48.939969,1.973566,,1,,Europe/Paris,,OIF, +OIF:SA:23:96,1,"Ronceray",48.953698,2.042395,,1,,Europe/Paris,,OIF, +OIF:SA:23:962,1,"Les Feugères",48.940531,1.969361,,1,,Europe/Paris,,OIF, +OIF:SA:23:965,1,"Foyer",48.976592,1.763915,,1,,Europe/Paris,,OIF, +OIF:SA:23:968,1,"Relais Jeunesse",48.92881,2.020216,,1,,Europe/Paris,,OIF, +OIF:SA:23:970,1,"Pont de l'Île",48.929251,2.027306,,1,,Europe/Paris,,OIF, +OIF:SA:23:972,1,"Piscine",48.929587,2.032228,,1,,Europe/Paris,,OIF, +OIF:SA:23:974,1,"Émile Zola",48.931195,2.035226,,1,,Europe/Paris,,OIF, +OIF:SA:23:98,1,"Salles des Fêtes",48.951841,2.038572,,1,,Europe/Paris,,OIF, +OIF:SA:23:992,1,"Salle des Fêtes",48.974514,2.036325,,1,,Europe/Paris,,OIF, +OIF:SA:23:994,1,"Verlaine",48.972592,2.035032,,1,,Europe/Paris,,OIF, +OIF:SA:24:10193,1,"Coquetière",48.672321,2.079771,,1,,Europe/Paris,,OIF, +OIF:SA:24:10194,1,"Église",48.672321,2.067543,,1,,Europe/Paris,,OIF, +OIF:SA:24:10196,1,"Janvrerie",48.675643,2.0711,,1,,Europe/Paris,,OIF, +OIF:SA:24:10198,1,"Lavoir",48.671133,2.064842,,1,,Europe/Paris,,OIF, +OIF:SA:24:10200,1,"Les Alouettes",48.669132,2.054803,,1,,Europe/Paris,,OIF, +OIF:SA:24:10202,1,"Rue de Cernay",48.670619,2.060257,,1,,Europe/Paris,,OIF, +OIF:SA:24:10432,1,"Rond-Point la Roche",48.600517,2.233277,,1,,Europe/Paris,,OIF, +OIF:SA:24:10649,1,"Les Pommiers",48.643946,2.059009,,1,,Europe/Paris,,OIF, +OIF:SA:24:10651,1,"Les Sorbiers",48.644778,2.053524,,1,,Europe/Paris,,OIF, +OIF:SA:24:10653,1,"Mairie",48.646429,2.048442,,1,,Europe/Paris,,OIF, +OIF:SA:24:10764,1,"Mairie",48.715672,2.139866,,1,,Europe/Paris,,OIF, +OIF:SA:24:10769,1,"Saint-Aubin",48.713592,2.145058,,1,,Europe/Paris,,OIF, +OIF:SA:24:11466,1,"Billehou",48.718843,2.120979,,1,,Europe/Paris,,OIF, +OIF:SA:24:11468,1,"Chapeau Gendarme",48.722888,2.123231,,1,,Europe/Paris,,OIF, +OIF:SA:24:11470,1,"École de Villiers",48.726885,2.121577,,1,,Europe/Paris,,OIF, +OIF:SA:24:11472,1,"Place de la Mairie de Villiers",48.725966,2.125813,,1,,Europe/Paris,,OIF, +OIF:SA:24:11474,1,"Rond-Point de Villiers",48.729218,2.127111,,1,,Europe/Paris,,OIF, +OIF:SA:24:11678,1,"Centre Commercial Ulis 2",48.677911,2.169407,,1,,Europe/Paris,,OIF, +OIF:SA:24:11707,1,"Lycée de l'Essouriau",48.676744,2.16533,,1,,Europe/Paris,,OIF, +OIF:SA:24:14715,1,"Mulleron",48.634537,2.158523,,1,,Europe/Paris,,OIF, +OIF:SA:24:14718,1,"La Maugerie",48.596198,2.173833,,1,,Europe/Paris,,OIF, +OIF:SA:24:14720,1,"Belleville 2",48.6922,2.117906,,1,,Europe/Paris,,OIF, +OIF:SA:24:14724,1,"Collège Sainte-Thérèse",48.738671,1.960237,,1,,Europe/Paris,,OIF, +OIF:SA:24:14729,1,"La Touche",48.582366,2.146233,,1,,Europe/Paris,,OIF, +OIF:SA:24:14731,1,"Petite Butte",48.603376,2.094472,,1,,Europe/Paris,,OIF, +OIF:SA:24:14732,1,"La Mare aux Puits",48.635158,2.064169,,1,,Europe/Paris,,OIF, +OIF:SA:24:14733,1,"Les Arcades",48.644978,2.063914,,1,,Europe/Paris,,OIF, +OIF:SA:24:14735,1,"Moutiers",48.610172,1.972061,,1,,Europe/Paris,,OIF, +OIF:SA:24:14736,1,"Les Carneaux",48.621901,1.99261,,1,,Europe/Paris,,OIF, +OIF:SA:24:14737,1,"Les Orantes",48.631651,2.015393,,1,,Europe/Paris,,OIF, +OIF:SA:24:14738,1,"Arbouville",48.637619,1.817554,,1,,Europe/Paris,,OIF, +OIF:SA:24:14742,1,"La Brosse",48.659623,2.139889,,1,,Europe/Paris,,OIF, +OIF:SA:24:14745,1,"Machery",48.602785,2.085949,,1,,Europe/Paris,,OIF, +OIF:SA:24:14749,1,"Hôtel",48.693853,2.063439,,1,,Europe/Paris,,OIF, +OIF:SA:24:14758,1,"Grand Mesnil",48.69559,2.174661,,1,,Europe/Paris,,OIF, +OIF:SA:24:14759,1,"Pont Pierre",48.703486,2.036235,,1,,Europe/Paris,,OIF, +OIF:SA:24:14760,1,"Vallée",48.712295,2.068015,,1,,Europe/Paris,,OIF, +OIF:SA:24:14761,1,"Petite Hogue",48.657558,1.900338,,1,,Europe/Paris,,OIF, +OIF:SA:24:14763,1,"Trou Rouge",48.696688,2.021182,,1,,Europe/Paris,,OIF, +OIF:SA:24:14768,1,"Berchevilliers",48.588358,2.112299,,1,,Europe/Paris,,OIF, +OIF:SA:24:14770,1,"Orée du Bois",48.584159,2.118909,,1,,Europe/Paris,,OIF, +OIF:SA:24:14772,1,"Stade",48.582754,2.121771,,1,,Europe/Paris,,OIF, +OIF:SA:24:14774,1,"La Soulodière",48.589872,2.150925,,1,,Europe/Paris,,OIF, +OIF:SA:24:14776,1,"Fontaine aux Cossons",48.591675,2.111063,,1,,Europe/Paris,,OIF, +OIF:SA:24:14778,1,"La Belle Étoile",48.578656,2.141401,,1,,Europe/Paris,,OIF, +OIF:SA:24:14782,1,"Farman",48.761286,2.123488,,1,,Europe/Paris,,OIF, +OIF:SA:24:14784,1,"Place",48.687158,2.018729,,1,,Europe/Paris,,OIF, +OIF:SA:24:14788,1,"Technocentre le Gradient",48.763761,2.086624,,1,,Europe/Paris,,OIF, +OIF:SA:24:14790,1,"Courcelle 11 Novembre",48.703596,2.107279,,1,,Europe/Paris,,OIF, +OIF:SA:24:14792,1,"Fernand Léger",48.701761,2.100205,,1,,Europe/Paris,,OIF, +OIF:SA:24:14794,1,"Damiette",48.698047,2.122824,,1,,Europe/Paris,,OIF, +OIF:SA:24:14798,1,"La Glacière",48.58474,1.983678,,1,,Europe/Paris,,OIF, +OIF:SA:24:14800,1,"Roland Garros",48.763193,2.117498,,1,,Europe/Paris,,OIF, +OIF:SA:24:14804,1,"Malmousse",48.70518,2.095145,,1,,Europe/Paris,,OIF, +OIF:SA:24:14806,1,"Air et Soleil",48.704754,2.097618,,1,,Europe/Paris,,OIF, +OIF:SA:24:14808,1,"Les Ormes",48.594345,2.184846,,1,,Europe/Paris,,OIF, +OIF:SA:24:14810,1,"Les Buttes",48.587151,2.149593,,1,,Europe/Paris,,OIF, +OIF:SA:24:14813,1,"Rue de Courson",48.584615,2.127497,,1,,Europe/Paris,,OIF, +OIF:SA:24:14815,1,"Place",48.581128,2.123359,,1,,Europe/Paris,,OIF, +OIF:SA:24:14819,1,"Launay Courson",48.598448,2.119208,,1,,Europe/Paris,,OIF, +OIF:SA:24:14821,1,"Bajolet",48.606043,2.070597,,1,,Europe/Paris,,OIF, +OIF:SA:24:14829,1,"Les Chenaux",48.587146,2.149593,,1,,Europe/Paris,,OIF, +OIF:SA:24:14831,1,"Le Coudray",48.606829,2.136284,,1,,Europe/Paris,,OIF, +OIF:SA:24:14837,1,"Quincampoix",48.61818,2.170008,,1,,Europe/Paris,,OIF, +OIF:SA:24:14839,1,"Mairie",48.603676,2.12208,,1,,Europe/Paris,,OIF, +OIF:SA:24:14841,1,"Place Arpenty",48.586389,2.162726,,1,,Europe/Paris,,OIF, +OIF:SA:24:14843,1,"Villevert",48.632913,2.037301,,1,,Europe/Paris,,OIF, +OIF:SA:24:14845,1,"Le Cormier",48.629573,2.057723,,1,,Europe/Paris,,OIF, +OIF:SA:24:14847,1,"Les Pâquerettes",48.647552,2.046482,,1,,Europe/Paris,,OIF, +OIF:SA:24:14851,1,"Les Pavillons",48.638225,2.070778,,1,,Europe/Paris,,OIF, +OIF:SA:24:14853,1,"Roussigny - Clos Tavin",48.647244,2.109196,,1,,Europe/Paris,,OIF, +OIF:SA:24:14856,1,"Roussigny - Abreuvoir",48.64861,2.106538,,1,,Europe/Paris,,OIF, +OIF:SA:24:14858,1,"Croix Valentin",48.672177,2.071167,,1,,Europe/Paris,,OIF, +OIF:SA:24:14860,1,"Ardillières",48.630079,2.115767,,1,,Europe/Paris,,OIF, +OIF:SA:24:14870,1,"La Bâte",48.591662,2.015335,,1,,Europe/Paris,,OIF, +OIF:SA:24:14872,1,"Bourgneuf",48.600321,2.004521,,1,,Europe/Paris,,OIF, +OIF:SA:24:14880,1,"La Folie Rigault",48.689126,2.108592,,1,,Europe/Paris,,OIF, +OIF:SA:24:14882,1,"La Vacheresse",48.679467,2.124964,,1,,Europe/Paris,,OIF, +OIF:SA:24:14884,1,"La Feuillarde",48.676599,2.114823,,1,,Europe/Paris,,OIF, +OIF:SA:24:14896,1,"Gare Autoroutière",48.616284,2.127345,,1,,Europe/Paris,,OIF, +OIF:SA:24:14898,1,"Courcelle",48.703834,2.100495,,1,,Europe/Paris,,OIF, +OIF:SA:24:14903,1,"Bois de Montmarre",48.646407,2.152439,,1,,Europe/Paris,,OIF, +OIF:SA:24:14906,1,"Clos Moissons",48.626561,2.126447,,1,,Europe/Paris,,OIF, +OIF:SA:24:14907,1,"Petit Bertin",48.673336,2.137326,,1,,Europe/Paris,,OIF, +OIF:SA:24:14908,1,"Prés Mouchards",48.685583,2.126948,,1,,Europe/Paris,,OIF, +OIF:SA:24:14911,1,"Grange Martin",48.704583,2.116279,,1,,Europe/Paris,,OIF, +OIF:SA:24:14914,1,"Vaugondran",48.696316,2.105519,,1,,Europe/Paris,,OIF, +OIF:SA:24:14917,1,"Centre",48.594082,2.064167,,1,,Europe/Paris,,OIF, +OIF:SA:24:14922,1,"Europe Sud",48.779472,2.206427,,1,,Europe/Paris,,OIF, +OIF:SA:24:14928,1,"Provence",48.782389,2.173343,,1,,Europe/Paris,,OIF, +OIF:SA:24:14931,1,"Arcades",48.774703,2.133485,,1,,Europe/Paris,,OIF, +OIF:SA:24:14932,1,"Fort de Buc",48.769208,2.11291,,1,,Europe/Paris,,OIF, +OIF:SA:24:14933,1,"Pommeraie",48.770695,2.105874,,1,,Europe/Paris,,OIF, +OIF:SA:24:14934,1,"40 Arpents",48.768878,2.07454,,1,,Europe/Paris,,OIF, +OIF:SA:24:14935,1,"Université Vauban-d'Alembert",48.778852,2.0447,,1,,Europe/Paris,,OIF, +OIF:SA:24:14936,1,"Hameau de Troux",48.775886,2.046584,,1,,Europe/Paris,,OIF, +OIF:SA:24:14937,1,"Place Étienne Marcel",48.780313,2.042774,,1,,Europe/Paris,,OIF, +OIF:SA:24:14939,1,"Centre Commerciale Sqy Ouest",48.7835,2.040409,,1,,Europe/Paris,,OIF, +OIF:SA:24:14941,1,"Le Mail",48.788531,2.222299,,1,,Europe/Paris,,OIF, +OIF:SA:24:14942,1,"Pont de Billancourt",48.825628,2.248046,,1,,Europe/Paris,,OIF, +OIF:SA:24:14944,1,"Porte Est",48.694279,2.063043,,1,,Europe/Paris,,OIF, +OIF:SA:24:14960,1,"Mlk / Lfa",48.770507,2.12143,,1,,Europe/Paris,,OIF, +OIF:SA:24:14966,1,"Le Breuil",48.698414,2.026542,,1,,Europe/Paris,,OIF, +OIF:SA:24:14968,1,"Centre",48.745796,2.114153,,1,,Europe/Paris,,OIF, +OIF:SA:24:14975,1,"Rue de Bange",48.814351,2.136123,,1,,Europe/Paris,,OIF, +OIF:SA:24:14983,1,"Place des Francine",48.797063,2.131245,,1,,Europe/Paris,,OIF, +OIF:SA:24:14989,1,"Pottier",48.825907,2.125675,,1,,Europe/Paris,,OIF, +OIF:SA:24:14997,1,"Hauts de Chevreuse Place",48.712624,2.056896,,1,,Europe/Paris,,OIF, +OIF:SA:24:15043,1,"Alouetterie",48.599394,2.066911,,1,,Europe/Paris,,OIF, +OIF:SA:24:15047,1,"Robinson",48.779995,2.273601,,1,,Europe/Paris,,OIF, +OIF:SA:24:15049,1,"Bois Brûlé",48.782419,2.265053,,1,,Europe/Paris,,OIF, +OIF:SA:24:15051,1,"Place du Garde",48.803439,2.257148,,1,,Europe/Paris,,OIF, +OIF:SA:24:15059,1,"Place Victor Hugo",48.772084,2.164061,,1,,Europe/Paris,,OIF, +OIF:SA:24:15061,1,"Ferme",48.769813,2.24895,,1,,Europe/Paris,,OIF, +OIF:SA:24:15063,1,"Francis de Pressensé",48.766435,2.255005,,1,,Europe/Paris,,OIF, +OIF:SA:24:15065,1,"Butte Rouge",48.76539,2.260936,,1,,Europe/Paris,,OIF, +OIF:SA:24:15067,1,"Faculté de Pharmacie",48.762038,2.270979,,1,,Europe/Paris,,OIF, +OIF:SA:24:15069,1,"Les Antes",48.751331,2.27218,,1,,Europe/Paris,,OIF, +OIF:SA:24:15071,1,"Paron",48.746118,2.269392,,1,,Europe/Paris,,OIF, +OIF:SA:24:15073,1,"Carnot",48.74128,2.265079,,1,,Europe/Paris,,OIF, +OIF:SA:24:15075,1,"Charles de Gaulle",48.734632,2.270278,,1,,Europe/Paris,,OIF, +OIF:SA:24:15077,1,"Président Allende",48.730429,2.257047,,1,,Europe/Paris,,OIF, +OIF:SA:24:15081,1,"Carrefour de l'Éléphant",48.72042,2.251649,,1,,Europe/Paris,,OIF, +OIF:SA:24:15083,1,"Marché du Pileu",48.728354,2.236885,,1,,Europe/Paris,,OIF, +OIF:SA:24:15088,1,"Vieille Terrière",48.622969,2.130882,,1,,Europe/Paris,,OIF, +OIF:SA:24:15092,1,"Raoult Dautry",48.72392,2.156283,,1,,Europe/Paris,,OIF, +OIF:SA:24:15093,1,"Fond Fanet",48.709453,2.127306,,1,,Europe/Paris,,OIF, +OIF:SA:24:15094,1,"Les Moulins",48.698344,2.125532,,1,,Europe/Paris,,OIF, +OIF:SA:24:15098,1,"Louveterie",48.745984,1.963731,,1,,Europe/Paris,,OIF, +OIF:SA:24:15099,1,"Stade des Noés",48.747844,1.961856,,1,,Europe/Paris,,OIF, +OIF:SA:24:15101,1,"Cité Orly Parc",48.756257,1.949237,,1,,Europe/Paris,,OIF, +OIF:SA:24:15103,1,"Général Leclerc",48.755295,1.954726,,1,,Europe/Paris,,OIF, +OIF:SA:24:15105,1,"Rue de la Plaine",48.749959,1.959897,,1,,Europe/Paris,,OIF, +OIF:SA:24:15108,1,"Rue des Champs",48.753636,1.9545,,1,,Europe/Paris,,OIF, +OIF:SA:24:15110,1,"Petit-Robinson",48.780326,2.170262,,1,,Europe/Paris,,OIF, +OIF:SA:24:15111,1,"Cimetière",48.673453,2.140644,,1,,Europe/Paris,,OIF, +OIF:SA:24:15113,1,"Fauvettes",48.673437,2.144295,,1,,Europe/Paris,,OIF, +OIF:SA:24:15115,1,"Rochers",48.673048,2.148212,,1,,Europe/Paris,,OIF, +OIF:SA:24:15118,1,"Mesnil-Centre",48.742385,1.963859,,1,,Europe/Paris,,OIF, +OIF:SA:24:15119,1,"Mare Chevalier",48.743972,2.116947,,1,,Europe/Paris,,OIF, +OIF:SA:24:15121,1,"La Perruche",48.73986,2.096213,,1,,Europe/Paris,,OIF, +OIF:SA:24:15129,1,"Pont Saint-Martin",48.792835,2.128622,,1,,Europe/Paris,,OIF, +OIF:SA:24:15131,1,"Place Simone Weil",48.71197,2.033816,,1,,Europe/Paris,,OIF, +OIF:SA:24:15132,1,"Chemin de Broderne",48.614037,1.980709,,1,,Europe/Paris,,OIF, +OIF:SA:24:15133,1,"Petit Plessis",48.569945,1.960787,,1,,Europe/Paris,,OIF, +OIF:SA:24:15135,1,"Reculet",48.568913,1.972822,,1,,Europe/Paris,,OIF, +OIF:SA:24:15137,1,"Bouc Étourdi",48.556048,2.00373,,1,,Europe/Paris,,OIF, +OIF:SA:24:15139,1,"Péage de Longvilliers",48.56577,1.987452,,1,,Europe/Paris,,OIF, +OIF:SA:24:15141,1,"Ferme de Noncienne",48.629957,2.018916,,1,,Europe/Paris,,OIF, +OIF:SA:24:15143,1,"Rue des Noyers",48.669437,2.167754,,1,,Europe/Paris,,OIF, +OIF:SA:24:15145,1,"Rue du Château de Saint-Jean",48.664699,2.167084,,1,,Europe/Paris,,OIF, +OIF:SA:24:15146,1,"Hameau de la Gâtine",48.671449,2.183735,,1,,Europe/Paris,,OIF, +OIF:SA:24:15148,1,"Villeziers la Mare",48.673325,2.171161,,1,,Europe/Paris,,OIF, +OIF:SA:24:15150,1,"Hameau de Grivery",48.671629,2.154874,,1,,Europe/Paris,,OIF, +OIF:SA:24:15152,1,"Collège des Goussons",48.68749,2.115713,,1,,Europe/Paris,,OIF, +OIF:SA:24:15154,1,"Mairie",48.579252,1.991006,,1,,Europe/Paris,,OIF, +OIF:SA:24:15156,1,"École",48.583481,1.986324,,1,,Europe/Paris,,OIF, +OIF:SA:24:15158,1,"Petits Chaillots",48.595812,1.993423,,1,,Europe/Paris,,OIF, +OIF:SA:24:15160,1,"Gué d'Aulnes",48.607621,1.996897,,1,,Europe/Paris,,OIF, +OIF:SA:24:15162,1,"Rond-Point des Écoles",48.67146,2.12387,,1,,Europe/Paris,,OIF, +OIF:SA:24:15164,1,"Mauregard",48.679778,2.094957,,1,,Europe/Paris,,OIF, +OIF:SA:24:15166,1,"Trou Salé",48.749946,2.119919,,1,,Europe/Paris,,OIF, +OIF:SA:24:15167,1,"Launay-Maréchaux",48.614829,2.108182,,1,,Europe/Paris,,OIF, +OIF:SA:24:15168,1,"L'Orme Gras",48.602126,2.126151,,1,,Europe/Paris,,OIF, +OIF:SA:24:15177,1,"Côte de la Gruerie",48.692563,2.10762,,1,,Europe/Paris,,OIF, +OIF:SA:24:15178,1,"Buccolines",48.770448,2.112885,,1,,Europe/Paris,,OIF, +OIF:SA:24:15179,1,"Château - Massotte",48.771202,2.124317,,1,,Europe/Paris,,OIF, +OIF:SA:24:15181,1,"Zone Industrielle Nord",48.768832,2.124691,,1,,Europe/Paris,,OIF, +OIF:SA:24:15182,1,"Mairie",48.801493,2.131334,,1,,Europe/Paris,,OIF, +OIF:SA:24:15184,1,"Blériot - Jean Casale",48.769206,2.129112,,1,,Europe/Paris,,OIF, +OIF:SA:24:15186,1,"ZA du Bois des Roches",48.741479,2.086313,,1,,Europe/Paris,,OIF, +OIF:SA:24:15188,1,"Geneviève Aubé",48.744259,2.083334,,1,,Europe/Paris,,OIF, +OIF:SA:24:15190,1,"Rue du Lavoir",48.632444,2.060555,,1,,Europe/Paris,,OIF, +OIF:SA:24:15195,1,"Lycée Émilie de Breteuil",48.78144,2.040578,,1,,Europe/Paris,,OIF, +OIF:SA:24:15199,1,"D'Alembert",48.773738,2.045907,,1,,Europe/Paris,,OIF, +OIF:SA:24:15200,1,"Jean Monnet",48.769423,2.061499,,1,,Europe/Paris,,OIF, +OIF:SA:24:15201,1,"Le Corbusier",48.764983,2.068736,,1,,Europe/Paris,,OIF, +OIF:SA:24:15202,1,"Jules Michelet",48.766776,2.071127,,1,,Europe/Paris,,OIF, +OIF:SA:24:15204,1,"Dampierre",48.771115,2.080495,,1,,Europe/Paris,,OIF, +OIF:SA:24:15205,1,"La Minière",48.774747,2.09175,,1,,Europe/Paris,,OIF, +OIF:SA:24:15207,1,"Baratage",48.686019,2.151114,,1,,Europe/Paris,,OIF, +OIF:SA:24:15209,1,"Cimetière",48.573791,1.946488,,1,,Europe/Paris,,OIF, +OIF:SA:24:15210,1,"Domaine des Aulnes",48.618078,1.999296,,1,,Europe/Paris,,OIF, +OIF:SA:24:15211,1,"Bel Air - Parc d'Activités",48.611911,2.166996,,1,,Europe/Paris,,OIF, +OIF:SA:24:15213,1,"Rue des Vignes",48.620299,2.150294,,1,,Europe/Paris,,OIF, +OIF:SA:24:15218,1,"Domaine de Marivaux",48.63484,2.165764,,1,,Europe/Paris,,OIF, +OIF:SA:24:15224,1,"Monument",48.764621,2.142012,,1,,Europe/Paris,,OIF, +OIF:SA:24:15225,1,"Église",48.764825,2.140251,,1,,Europe/Paris,,OIF, +OIF:SA:24:15227,1,"La Garenne",48.763907,2.13678,,1,,Europe/Paris,,OIF, +OIF:SA:24:15228,1,"Zone d'Activités",48.762601,2.134957,,1,,Europe/Paris,,OIF, +OIF:SA:24:15229,1,"Porte des Loges",48.760776,2.13251,,1,,Europe/Paris,,OIF, +OIF:SA:24:15230,1,"La Logeraie",48.766252,2.136302,,1,,Europe/Paris,,OIF, +OIF:SA:24:15231,1,"Central PTT",48.76209,2.137682,,1,,Europe/Paris,,OIF, +OIF:SA:24:15235,1,"Christ",48.72989,2.162334,,1,,Europe/Paris,,OIF, +OIF:SA:24:15236,1,"Village",48.725598,2.049041,,1,,Europe/Paris,,OIF, +OIF:SA:24:15237,1,"La Brosse",48.728229,2.001009,,1,,Europe/Paris,,OIF, +OIF:SA:24:15238,1,"Collège Saint-François d'Assise",48.766714,2.021123,,1,,Europe/Paris,,OIF, +OIF:SA:24:15239,1,"Lycée Descartes",48.764544,2.037887,,1,,Europe/Paris,,OIF, +OIF:SA:24:15240,1,"Port Royal",48.737399,2.016926,,1,,Europe/Paris,,OIF, +OIF:SA:24:15241,1,"Place",48.731193,2.022141,,1,,Europe/Paris,,OIF, +OIF:SA:24:15244,1,"Saint-Nicolas",48.677253,2.133782,,1,,Europe/Paris,,OIF, +OIF:SA:24:15246,1,"Lavoir",48.669651,2.119609,,1,,Europe/Paris,,OIF, +OIF:SA:24:15255,1,"Mérantais",48.75158,2.067755,,1,,Europe/Paris,,OIF, +OIF:SA:24:15263,1,"Cité des Cadres",48.786848,2.105472,,1,,Europe/Paris,,OIF, +OIF:SA:24:15264,1,"La Ferté",48.683298,2.014171,,1,,Europe/Paris,,OIF, +OIF:SA:24:15265,1,"Herbouvilliers",48.680106,2.032258,,1,,Europe/Paris,,OIF, +OIF:SA:24:15268,1,"Collège de Vivonne",48.648107,1.848457,,1,,Europe/Paris,,OIF, +OIF:SA:24:15288,1,"Allée du Côteau",48.706557,2.076614,,1,,Europe/Paris,,OIF, +OIF:SA:24:15291,1,"Insurrection Jean Bleuzen",48.820655,2.291568,,1,,Europe/Paris,,OIF, +OIF:SA:24:15292,1,"Verdun",48.822067,2.29403,,1,,Europe/Paris,,OIF, +OIF:SA:24:15293,1,"Métro - Plateau de Vanves",48.823515,2.296901,,1,,Europe/Paris,,OIF, +OIF:SA:24:15294,1,"Carrefour / Albert Legris",48.825381,2.292579,,1,,Europe/Paris,,OIF, +OIF:SA:24:15295,1,"Yol-Martin",48.825705,2.288637,,1,,Europe/Paris,,OIF, +OIF:SA:24:15296,1,"Baudouin",48.827429,2.284633,,1,,Europe/Paris,,OIF, +OIF:SA:24:15297,1,"Espace Murillo Lycée Michelet",48.823673,2.287917,,1,,Europe/Paris,,OIF, +OIF:SA:24:15298,1,"L'Ode",48.822533,2.289811,,1,,Europe/Paris,,OIF, +OIF:SA:24:15299,1,"Insurrection Cimetière",48.821149,2.291078,,1,,Europe/Paris,,OIF, +OIF:SA:24:15300,1,"Centre Administratif",48.820969,2.289131,,1,,Europe/Paris,,OIF, +OIF:SA:24:15301,1,"République",48.820934,2.285506,,1,,Europe/Paris,,OIF, +OIF:SA:24:15302,1,"Valentine Jacquet",48.820552,2.282653,,1,,Europe/Paris,,OIF, +OIF:SA:24:15303,1,"Jean-Baptiste Potin",48.819509,2.280531,,1,,Europe/Paris,,OIF, +OIF:SA:24:15304,1,"Mansart",48.817584,2.277212,,1,,Europe/Paris,,OIF, +OIF:SA:24:15305,1,"Général de Gaulle",48.819934,2.278309,,1,,Europe/Paris,,OIF, +OIF:SA:24:15306,1,"Clos Montholon",48.815409,2.27697,,1,,Europe/Paris,,OIF, +OIF:SA:24:15308,1,"Aristide Briand",48.818074,2.288113,,1,,Europe/Paris,,OIF, +OIF:SA:24:15309,1,"Diderot",48.818694,2.286643,,1,,Europe/Paris,,OIF, +OIF:SA:24:15310,1,"Rue du Châtillon",48.818055,2.284466,,1,,Europe/Paris,,OIF, +OIF:SA:24:15311,1,"Baudelaire",48.817038,2.281772,,1,,Europe/Paris,,OIF, +OIF:SA:24:15312,1,"Stade",48.8163,2.279972,,1,,Europe/Paris,,OIF, +OIF:SA:24:15313,1,"Résidence Danton",48.824629,2.295839,,1,,Europe/Paris,,OIF, +OIF:SA:24:15317,1,"Abbaye",48.6965,2.129745,,1,,Europe/Paris,,OIF, +OIF:SA:24:15319,1,"Petits Ponts",48.707327,2.037691,,1,,Europe/Paris,,OIF, +OIF:SA:24:15321,1,"Donnerie",48.588995,2.159356,,1,,Europe/Paris,,OIF, +OIF:SA:24:15322,1,"Cabane de la Galotterie",48.594004,2.155003,,1,,Europe/Paris,,OIF, +OIF:SA:24:15325,1,"Route de Villevert",48.631392,2.041738,,1,,Europe/Paris,,OIF, +OIF:SA:24:15327,1,"Technocentre 60 Arpents",48.76312,2.084075,,1,,Europe/Paris,,OIF, +OIF:SA:24:15334,1,"Mare du Vivier CEA",48.718494,2.150947,,1,,Europe/Paris,,OIF, +OIF:SA:24:15342,1,"Chaumusson",48.652264,2.074281,,1,,Europe/Paris,,OIF, +OIF:SA:24:15344,1,"Gruerie",48.696513,2.106224,,1,,Europe/Paris,,OIF, +OIF:SA:24:15351,1,"Croix Blanche",48.760962,2.124867,,1,,Europe/Paris,,OIF, +OIF:SA:24:15354,1,"Morane Saulnier",48.767115,2.117916,,1,,Europe/Paris,,OIF, +OIF:SA:24:15355,1,"Calmette",48.768256,2.119122,,1,,Europe/Paris,,OIF, +OIF:SA:24:15357,1,"Le Parc",48.629467,2.071942,,1,,Europe/Paris,,OIF, +OIF:SA:24:15359,1,"Ponts et Chaussées",48.793013,2.119444,,1,,Europe/Paris,,OIF, +OIF:SA:24:15361,1,"Clément Ader",48.78559,2.104138,,1,,Europe/Paris,,OIF, +OIF:SA:24:15363,1,"Satory / Giat Industries",48.784221,2.10294,,1,,Europe/Paris,,OIF, +OIF:SA:24:15365,1,"Les Marronniers",48.784787,2.09917,,1,,Europe/Paris,,OIF, +OIF:SA:24:15367,1,"Parc d'Activités",48.785379,2.095288,,1,,Europe/Paris,,OIF, +OIF:SA:24:15369,1,"Satory Inrets",48.785907,2.092157,,1,,Europe/Paris,,OIF, +OIF:SA:24:15371,1,"Collège des 3 Moulins",48.614892,2.025942,,1,,Europe/Paris,,OIF, +OIF:SA:24:5478,1,"Grande Hogue",48.658681,1.91254,,1,,Europe/Paris,,OIF, +OIF:SA:24:5482,1,"Les Brûlins",48.672286,1.890577,,1,,Europe/Paris,,OIF, +OIF:SA:24:5489,1,"Saint-Benoist",48.675204,1.912907,,1,,Europe/Paris,,OIF, +OIF:SA:24:5631,1,"Capucins",48.619041,2.031314,,1,,Europe/Paris,,OIF, +OIF:SA:24:5633,1,"Château",48.622151,2.024968,,1,,Europe/Paris,,OIF, +OIF:SA:24:5637,1,"Croix Boisée",48.622649,2.027401,,1,,Europe/Paris,,OIF, +OIF:SA:24:5699,1,"Audemars",48.765704,2.118752,,1,,Europe/Paris,,OIF, +OIF:SA:24:5709,1,"Cerf Volant",48.786645,2.132979,,1,,Europe/Paris,,OIF, +OIF:SA:24:5713,1,"Château",48.770627,2.124836,,1,,Europe/Paris,,OIF, +OIF:SA:24:5715,1,"Fourny",48.764234,2.123061,,1,,Europe/Paris,,OIF, +OIF:SA:24:5717,1,"Genevrière",48.781398,2.131796,,1,,Europe/Paris,,OIF, +OIF:SA:24:5719,1,"Haut Pré",48.770934,2.106002,,1,,Europe/Paris,,OIF, +OIF:SA:24:5725,1,"Massotte",48.771379,2.123188,,1,,Europe/Paris,,OIF, +OIF:SA:24:5734,1,"Sente du Haras",48.784485,2.132563,,1,,Europe/Paris,,OIF, +OIF:SA:24:5736,1,"Tabuteau",48.762777,2.122775,,1,,Europe/Paris,,OIF, +OIF:SA:24:5738,1,"Ville",48.776178,2.130022,,1,,Europe/Paris,,OIF, +OIF:SA:24:5772,1,"Clairière",48.622108,2.007598,,1,,Europe/Paris,,OIF, +OIF:SA:24:5776,1,"École",48.620924,2.0009,,1,,Europe/Paris,,OIF, +OIF:SA:24:5778,1,"Garenne",48.627968,1.998315,,1,,Europe/Paris,,OIF, +OIF:SA:24:5781,1,"Hpr",48.636328,2.008061,,1,,Europe/Paris,,OIF, +OIF:SA:24:5783,1,"Longchêne Place",48.638483,2.002173,,1,,Europe/Paris,,OIF, +OIF:SA:24:5785,1,"Place du Presbytère",48.62236,1.997146,,1,,Europe/Paris,,OIF, +OIF:SA:24:5803,1,"Les Cottages",48.674732,1.97956,,1,,Europe/Paris,,OIF, +OIF:SA:24:5805,1,"Place",48.673596,1.972673,,1,,Europe/Paris,,OIF, +OIF:SA:24:5807,1,"Saint-Robert",48.668219,1.943858,,1,,Europe/Paris,,OIF, +OIF:SA:24:5833,1,"Le Thuit",48.732856,2.104361,,1,,Europe/Paris,,OIF, +OIF:SA:24:5835,1,"Place",48.736677,2.091216,,1,,Europe/Paris,,OIF, +OIF:SA:24:5839,1,"Route de Chevreuse",48.731847,2.091916,,1,,Europe/Paris,,OIF, +OIF:SA:24:5841,1,"Trinité",48.733386,2.093036,,1,,Europe/Paris,,OIF, +OIF:SA:24:5867,1,"Butte des Vignes",48.707534,2.048435,,1,,Europe/Paris,,OIF, +OIF:SA:24:5869,1,"Centre",48.707481,2.039519,,1,,Europe/Paris,,OIF, +OIF:SA:24:5871,1,"Chemin des Regains",48.704579,2.038259,,1,,Europe/Paris,,OIF, +OIF:SA:24:5873,1,"Chardonnettes",48.704612,2.029853,,1,,Europe/Paris,,OIF, +OIF:SA:24:5875,1,"Cimetière",48.706036,2.033145,,1,,Europe/Paris,,OIF, +OIF:SA:24:5877,1,"Collège P. de Coubertin",48.703704,2.044274,,1,,Europe/Paris,,OIF, +OIF:SA:24:5879,1,"Diderot",48.714898,2.062568,,1,,Europe/Paris,,OIF, +OIF:SA:24:5881,1,"Garage",48.706533,2.035919,,1,,Europe/Paris,,OIF, +OIF:SA:24:5883,1,"Hauts de Chevreuse",48.707956,2.061342,,1,,Europe/Paris,,OIF, +OIF:SA:24:5886,1,"La Tuilerie",48.709968,2.036755,,1,,Europe/Paris,,OIF, +OIF:SA:24:5888,1,"Le Moulin",48.706909,2.051834,,1,,Europe/Paris,,OIF, +OIF:SA:24:5890,1,"Les Côteaux",48.711943,2.063337,,1,,Europe/Paris,,OIF, +OIF:SA:24:5893,1,"Les Tourelles",48.716335,2.062044,,1,,Europe/Paris,,OIF, +OIF:SA:24:5894,1,"Mairie",48.707537,2.044048,,1,,Europe/Paris,,OIF, +OIF:SA:24:5898,1,"Saint-Lubin",48.706493,2.056528,,1,,Europe/Paris,,OIF, +OIF:SA:24:5900,1,"Trottigny",48.718209,2.012236,,1,,Europe/Paris,,OIF, +OIF:SA:24:5910,1,"Scierie",48.690713,2.015578,,1,,Europe/Paris,,OIF, +OIF:SA:24:5912,1,"Bel Air",48.68352,2.001782,,1,,Europe/Paris,,OIF, +OIF:SA:24:6004,1,"Château",48.706505,1.988094,,1,,Europe/Paris,,OIF, +OIF:SA:24:6006,1,"Écoles",48.702285,1.981977,,1,,Europe/Paris,,OIF, +OIF:SA:24:6008,1,"Fourcherolles",48.698304,1.979214,,1,,Europe/Paris,,OIF, +OIF:SA:24:6010,1,"Maincourt",48.715292,1.964637,,1,,Europe/Paris,,OIF, +OIF:SA:24:6012,1,"Moulin des Roches",48.711772,1.975746,,1,,Europe/Paris,,OIF, +OIF:SA:24:6099,1,"Collège les Molières",48.722138,1.898177,,1,,Europe/Paris,,OIF, +OIF:SA:24:6107,1,"Marché",48.718767,1.894035,,1,,Europe/Paris,,OIF, +OIF:SA:24:6109,1,"Plateau",48.728026,1.904065,,1,,Europe/Paris,,OIF, +OIF:SA:24:6336,1,"Frères Perret",48.770615,2.08405,,1,,Europe/Paris,,OIF, +OIF:SA:24:6342,1,"Golf National",48.75581,2.071654,,1,,Europe/Paris,,OIF, +OIF:SA:24:6408,1,"Technocentre l'Étang",48.757909,2.087844,,1,,Europe/Paris,,OIF, +OIF:SA:24:6409,1,"Technocentre Trou Berger",48.758518,2.076,,1,,Europe/Paris,,OIF, +OIF:SA:24:6413,1,"Villaroy Sud",48.7554,2.075822,,1,,Europe/Paris,,OIF, +OIF:SA:24:6560,1,"Four à Briques",48.721141,1.902995,,1,,Europe/Paris,,OIF, +OIF:SA:24:6562,1,"La Gripière",48.726185,1.914474,,1,,Europe/Paris,,OIF, +OIF:SA:24:6564,1,"La Source",48.720816,1.908758,,1,,Europe/Paris,,OIF, +OIF:SA:24:6566,1,"Les Charmes",48.725344,1.911967,,1,,Europe/Paris,,OIF, +OIF:SA:24:6568,1,"Mairie",48.721362,1.948598,,1,,Europe/Paris,,OIF, +OIF:SA:24:6570,1,"Malpou",48.728564,1.908653,,1,,Europe/Paris,,OIF, +OIF:SA:24:6572,1,"Sabot d'Argent",48.721244,1.911654,,1,,Europe/Paris,,OIF, +OIF:SA:24:6574,1,"Yvette École",48.721894,1.925003,,1,,Europe/Paris,,OIF, +OIF:SA:24:6760,1,"Boulangerie",48.724379,2.092542,,1,,Europe/Paris,,OIF, +OIF:SA:24:6778,1,"Joseph Lemarchand",48.721444,2.096611,,1,,Europe/Paris,,OIF, +OIF:SA:24:6782,1,"Le Buisson",48.718558,2.10183,,1,,Europe/Paris,,OIF, +OIF:SA:24:6784,1,"Les 25 Arpents",48.719566,2.090432,,1,,Europe/Paris,,OIF, +OIF:SA:24:6806,1,"Victor Hugo",48.721204,2.0972,,1,,Europe/Paris,,OIF, +OIF:SA:24:7166,1,"Place du Mesnil",48.742714,1.96178,,1,,Europe/Paris,,OIF, +OIF:SA:24:7172,1,"Le Mousseau",48.739721,1.969722,,1,,Europe/Paris,,OIF, +OIF:SA:24:7564,1,"Collège Racinay",48.63486,1.823421,,1,,Europe/Paris,,OIF, +OIF:SA:24:7570,1,"Giroderie",48.644523,1.84629,,1,,Europe/Paris,,OIF, +OIF:SA:24:7572,1,"Jean Monnet",48.643829,1.840668,,1,,Europe/Paris,,OIF, +OIF:SA:24:7574,1,"Le Terrier",48.649993,1.869327,,1,,Europe/Paris,,OIF, +OIF:SA:24:7579,1,"Vieil Orme",48.645565,1.858623,,1,,Europe/Paris,,OIF, +OIF:SA:24:7643,1,"Poste",48.572267,1.938169,,1,,Europe/Paris,,OIF, +OIF:SA:24:7644,1,"Leclerc",48.571727,1.939399,,1,,Europe/Paris,,OIF, +OIF:SA:24:7646,1,"Mairie",48.572734,1.941902,,1,,Europe/Paris,,OIF, +OIF:SA:24:7680,1,"Haute Beauce",48.706997,1.996586,,1,,Europe/Paris,,OIF, +OIF:SA:24:7682,1,"Les Sablons",48.703433,2.014188,,1,,Europe/Paris,,OIF, +OIF:SA:24:7684,1,"Mesnil Sevin",48.718371,1.994684,,1,,Europe/Paris,,OIF, +OIF:SA:24:7717,1,"Beauplan",48.715025,2.085577,,1,,Europe/Paris,,OIF, +OIF:SA:24:7719,1,"Cabane",48.71837,2.087147,,1,,Europe/Paris,,OIF, +OIF:SA:24:7727,1,"Costic",48.690675,2.063259,,1,,Europe/Paris,,OIF, +OIF:SA:24:7729,1,"Écoles",48.710179,2.068182,,1,,Europe/Paris,,OIF, +OIF:SA:24:7735,1,"Lamartine",48.715454,2.067734,,1,,Europe/Paris,,OIF, +OIF:SA:24:7737,1,"Les Carrières",48.689287,2.057578,,1,,Europe/Paris,,OIF, +OIF:SA:24:7741,1,"Les Prés",48.707624,2.075641,,1,,Europe/Paris,,OIF, +OIF:SA:24:7743,1,"Les Tourelles",48.716372,2.062302,,1,,Europe/Paris,,OIF, +OIF:SA:24:7747,1,"Place du 14 Juillet",48.705885,2.071586,,1,,Europe/Paris,,OIF, +OIF:SA:24:7749,1,"Port Royal",48.716609,2.065968,,1,,Europe/Paris,,OIF, +OIF:SA:24:7751,1,"Porte Nord",48.694196,2.061842,,1,,Europe/Paris,,OIF, +OIF:SA:24:7763,1,"Skf",48.707316,2.068468,,1,,Europe/Paris,,OIF, +OIF:SA:24:7796,1,"Garnes",48.690627,1.974563,,1,,Europe/Paris,,OIF, +OIF:SA:24:7798,1,"Place",48.688185,1.97999,,1,,Europe/Paris,,OIF, +OIF:SA:24:8203,1,"Le Clos",48.671735,1.874404,,1,,Europe/Paris,,OIF, +OIF:SA:24:8205,1,"Mairie",48.669702,1.875216,,1,,Europe/Paris,,OIF, +OIF:SA:24:8207,1,"Place",48.666328,1.876848,,1,,Europe/Paris,,OIF, +OIF:SA:24:8425,1,"LEP Paul Belmondo",48.596572,2.246031,,1,,Europe/Paris,,OIF, +OIF:SA:24:8427,1,"Lycée René Cassin",48.580538,2.246253,,1,,Europe/Paris,,OIF, +OIF:SA:24:8431,1,"Porte d'Étampes",48.586982,2.245923,,1,,Europe/Paris,,OIF, +OIF:SA:24:8558,1,"Gare",48.669578,2.051245,,1,,Europe/Paris,,OIF, +OIF:SA:24:8560,1,"Mairie",48.678254,2.050145,,1,,Europe/Paris,,OIF, +OIF:SA:24:8562,1,"Montabé",48.687667,2.064246,,1,,Europe/Paris,,OIF, +OIF:SA:24:8683,1,"Chante Coq",48.641125,2.129989,,1,,Europe/Paris,,OIF, +OIF:SA:24:8685,1,"Collège Jean Monnet",48.620582,2.125624,,1,,Europe/Paris,,OIF, +OIF:SA:24:8687,1,"Le Carmel",48.648767,2.12068,,1,,Europe/Paris,,OIF, +OIF:SA:24:8689,1,"Place",48.624064,2.12502,,1,,Europe/Paris,,OIF, +OIF:SA:24:8760,1,"Rmt",48.60282,2.2157,,1,,Europe/Paris,,OIF, +OIF:SA:24:8784,1,"Gardey",48.691797,2.159382,,1,,Europe/Paris,,OIF, +OIF:SA:24:8797,1,"La Croix",48.694303,2.163959,,1,,Europe/Paris,,OIF, +OIF:SA:24:8799,1,"Les Fauvettes",48.687631,2.153219,,1,,Europe/Paris,,OIF, +OIF:SA:24:8963,1,"Mairie",48.592824,2.145342,,1,,Europe/Paris,,OIF, +OIF:SA:24:9532,1,"Bel Air",48.613013,2.165924,,1,,Europe/Paris,,OIF, +OIF:SA:24:9534,1,"Bligny Cmc",48.622315,2.148979,,1,,Europe/Paris,,OIF, +OIF:SA:24:9538,1,"La Charmoise",48.594458,2.154967,,1,,Europe/Paris,,OIF, +OIF:SA:24:9540,1,"La Roncière",48.599358,2.15861,,1,,Europe/Paris,,OIF, +OIF:SA:24:9544,1,"Madrid",48.619328,2.150176,,1,,Europe/Paris,,OIF, +OIF:SA:24:9546,1,"Place",48.619045,2.156034,,1,,Europe/Paris,,OIF, +OIF:SA:24:9550,1,"Soucy",48.607608,2.167547,,1,,Europe/Paris,,OIF, +OIF:SA:24:9561,1,"Adelaïau",48.6274,2.104096,,1,,Europe/Paris,,OIF, +OIF:SA:24:9563,1,"Bois d'Ardeau",48.606409,2.081354,,1,,Europe/Paris,,OIF, +OIF:SA:24:9565,1,"Centre d'Accueil",48.629629,2.092601,,1,,Europe/Paris,,OIF, +OIF:SA:24:9567,1,"Chardonnet",48.6257,2.072985,,1,,Europe/Paris,,OIF, +OIF:SA:24:9569,1,"Malassis",48.629715,2.047287,,1,,Europe/Paris,,OIF, +OIF:SA:24:9571,1,"Place",48.62856,2.097413,,1,,Europe/Paris,,OIF, +OIF:SA:24:9573,1,"Rombarde",48.63255,2.099307,,1,,Europe/Paris,,OIF, +OIF:SA:24:9575,1,"Rond-Point du Golf",48.629573,2.081257,,1,,Europe/Paris,,OIF, +OIF:SA:24:9583,1,"Belleville 1",48.69389,2.118198,,1,,Europe/Paris,,OIF, +OIF:SA:24:9584,1,"Bois Carré",48.68696,2.127798,,1,,Europe/Paris,,OIF, +OIF:SA:24:9586,1,"Collège Juliette Adam",48.701062,2.124903,,1,,Europe/Paris,,OIF, +OIF:SA:24:9590,1,"Croix de Fer",48.704872,2.12651,,1,,Europe/Paris,,OIF, +OIF:SA:24:9592,1,"Madrid",48.698982,2.101352,,1,,Europe/Paris,,OIF, +OIF:SA:24:9594,1,"Feuillarde",48.67967,2.106007,,1,,Europe/Paris,,OIF, +OIF:SA:24:9598,1,"Goïarderie",48.684872,2.107172,,1,,Europe/Paris,,OIF, +OIF:SA:24:9604,1,"Lavoir",48.679193,2.112599,,1,,Europe/Paris,,OIF, +OIF:SA:24:9609,1,"Marché Gousson",48.688008,2.116301,,1,,Europe/Paris,,OIF, +OIF:SA:24:9611,1,"Maupertuis",48.686826,2.120827,,1,,Europe/Paris,,OIF, +OIF:SA:24:9613,1,"Moc Souris",48.690217,2.119808,,1,,Europe/Paris,,OIF, +OIF:SA:24:9617,1,"Neuveries",48.683863,2.117602,,1,,Europe/Paris,,OIF, +OIF:SA:24:9619,1,"Plaine",48.690257,2.124702,,1,,Europe/Paris,,OIF, +OIF:SA:24:9621,1,"Pommeraie",48.687173,2.111995,,1,,Europe/Paris,,OIF, +OIF:SA:24:9623,1,"Quinconces",48.707351,2.122969,,1,,Europe/Paris,,OIF, +OIF:SA:24:9629,1,"Mairie",48.671632,2.124412,,1,,Europe/Paris,,OIF, +OIF:SA:24:9631,1,"Rond-Point Saint-Nicolas",48.676279,2.132014,,1,,Europe/Paris,,OIF, +OIF:SA:24:9633,1,"Route de Janvry",48.670949,2.126668,,1,,Europe/Paris,,OIF, +OIF:SA:24:9637,1,"Justice",48.683389,2.147733,,1,,Europe/Paris,,OIF, +OIF:SA:24:9641,1,"Saint-Clair",48.672196,2.152205,,1,,Europe/Paris,,OIF, +OIF:SA:24:9643,1,"Sans Soucis",48.68098,2.1424,,1,,Europe/Paris,,OIF, +OIF:SA:24:9784,1,"Place",48.647856,2.15335,,1,,Europe/Paris,,OIF, +OIF:SA:24:9868,1,"Chambord",48.647388,2.070331,,1,,Europe/Paris,,OIF, +OIF:SA:24:9872,1,"Collège Michel Vignaud",48.643405,2.08239,,1,,Europe/Paris,,OIF, +OIF:SA:24:9876,1,"Gare",48.644537,2.067517,,1,,Europe/Paris,,OIF, +OIF:SA:24:9878,1,"Haut du Parc",48.641902,2.090101,,1,,Europe/Paris,,OIF, +OIF:SA:24:9882,1,"Les Fleurs",48.640194,2.073006,,1,,Europe/Paris,,OIF, +OIF:SA:24:9884,1,"Les Moines",48.642984,2.074748,,1,,Europe/Paris,,OIF, +OIF:SA:24:9886,1,"Lycée Jules Verne",48.643285,2.089301,,1,,Europe/Paris,,OIF, +OIF:SA:24:9888,1,"Monument",48.645152,2.07462,,1,,Europe/Paris,,OIF, +OIF:SA:24:9892,1,"Tdf",48.658055,2.081131,,1,,Europe/Paris,,OIF, +OIF:SA:25:1,1,"Cutesson",48.623643,1.822031,,1,,Europe/Paris,,OIF, +OIF:SA:25:10,1,"Bel Air",48.632144,1.829677,,1,,Europe/Paris,,OIF, +OIF:SA:25:100,1,"Ravel",48.655736,1.854163,,1,,Europe/Paris,,OIF, +OIF:SA:25:1000,1,"Rue de Dourdan",48.51621,1.8429,,1,,Europe/Paris,,OIF, +OIF:SA:25:1004,1,"Marceau",48.462497,1.773306,,1,,Europe/Paris,,OIF, +OIF:SA:25:1005,1,"Église",48.462231,1.774441,,1,,Europe/Paris,,OIF, +OIF:SA:25:1006,1,"Rue de Verdun",48.648268,1.536755,,1,,Europe/Paris,,OIF, +OIF:SA:25:101,1,"Mairie",48.708014,1.813624,,1,,Europe/Paris,,OIF, +OIF:SA:25:1010,1,"Billardière",48.602433,1.64831,,1,,Europe/Paris,,OIF, +OIF:SA:25:1012,1,"Poirier de Sauge",48.601825,1.664811,,1,,Europe/Paris,,OIF, +OIF:SA:25:10120,1,"Bergerie Nationale",48.646632,1.800171,,1,,Europe/Paris,,OIF, +OIF:SA:25:10122,1,"Étang de la Tour",48.64693,1.862857,,1,,Europe/Paris,,OIF, +OIF:SA:25:10124,1,"Mansart",48.648443,1.866127,,1,,Europe/Paris,,OIF, +OIF:SA:25:10126,1,"Le Cerrsy",48.651039,1.872444,,1,,Europe/Paris,,OIF, +OIF:SA:25:10128,1,"Providence",48.649491,1.817919,,1,,Europe/Paris,,OIF, +OIF:SA:25:1014,1,"Terres Rouges",48.679664,1.637066,,1,,Europe/Paris,,OIF, +OIF:SA:25:1016,1,"Marc Séguin",48.76086,1.971932,,1,,Europe/Paris,,OIF, +OIF:SA:25:1018,1,"Albert Einstein",48.764918,1.993788,,1,,Europe/Paris,,OIF, +OIF:SA:25:102,1,"La Mare",48.717318,1.820158,,1,,Europe/Paris,,OIF, +OIF:SA:25:10200,1,"Bourgneuf",48.600343,2.004514,,1,,Europe/Paris,,OIF, +OIF:SA:25:10201,1,"La Gâtine",48.683912,1.615507,,1,,Europe/Paris,,OIF, +OIF:SA:25:10202,1,"Petites Yvelines",48.7297,1.824505,,1,,Europe/Paris,,OIF, +OIF:SA:25:10203,1,"Piscine",48.465169,1.777602,,1,,Europe/Paris,,OIF, +OIF:SA:25:10204,1,"Obville",48.483724,1.902927,,1,,Europe/Paris,,OIF, +OIF:SA:25:10206,1,"Guéherville",48.534013,1.87786,,1,,Europe/Paris,,OIF, +OIF:SA:25:10207,1,"Champarts",48.518814,1.83824,,1,,Europe/Paris,,OIF, +OIF:SA:25:10211,1,"Mairie",48.699508,1.88716,,1,,Europe/Paris,,OIF, +OIF:SA:25:10212,1,"Parc Activité Nord",48.530419,1.834104,,1,,Europe/Paris,,OIF, +OIF:SA:25:10215,1,"Route du Perray",48.697481,1.88313,,1,,Europe/Paris,,OIF, +OIF:SA:25:10217,1,"Mairie",48.441689,1.808018,,1,,Europe/Paris,,OIF, +OIF:SA:25:10219,1,"Chênes",48.711872,1.816502,,1,,Europe/Paris,,OIF, +OIF:SA:25:1022,1,"Les Ateliers",48.61603,2.027922,,1,,Europe/Paris,,OIF, +OIF:SA:25:10224,1,"Chatignonville",48.46799,1.930902,,1,,Europe/Paris,,OIF, +OIF:SA:25:10225,1,"Hospice",48.460787,1.767848,,1,,Europe/Paris,,OIF, +OIF:SA:25:10227,1,"Hattonville",48.474349,1.889173,,1,,Europe/Paris,,OIF, +OIF:SA:25:10230,1,"Église",48.756765,1.663463,,1,,Europe/Paris,,OIF, +OIF:SA:25:10231,1,"Pont d'Auneau",48.748275,1.925623,,1,,Europe/Paris,,OIF, +OIF:SA:25:10232,1,"Le Haut",48.593347,2.063744,,1,,Europe/Paris,,OIF, +OIF:SA:25:10237,1,"Montjoie",48.617786,1.915344,,1,,Europe/Paris,,OIF, +OIF:SA:25:10239,1,"Route du Val",48.588331,2.058904,,1,,Europe/Paris,,OIF, +OIF:SA:25:1024,1,"Cours Vertes",48.630982,1.68613,,1,,Europe/Paris,,OIF, +OIF:SA:25:10242,1,"Vallée Godard",48.683999,1.640682,,1,,Europe/Paris,,OIF, +OIF:SA:25:10245,1,"Église",48.651791,1.542676,,1,,Europe/Paris,,OIF, +OIF:SA:25:10246,1,"Libération",48.512203,1.833569,,1,,Europe/Paris,,OIF, +OIF:SA:25:10247,1,"Centre",48.515032,1.836304,,1,,Europe/Paris,,OIF, +OIF:SA:25:10250,1,"Allainville aux Bois",48.458676,1.896913,,1,,Europe/Paris,,OIF, +OIF:SA:25:10251,1,"Le Mesle",48.715032,1.687073,,1,,Europe/Paris,,OIF, +OIF:SA:25:10252,1,"Mainguérin",48.53727,1.847197,,1,,Europe/Paris,,OIF, +OIF:SA:25:10258,1,"Croix",48.619173,1.904741,,1,,Europe/Paris,,OIF, +OIF:SA:25:1026,1,"Beauvais",48.57301,1.760542,,1,,Europe/Paris,,OIF, +OIF:SA:25:10261,1,"Église",48.68347,1.643507,,1,,Europe/Paris,,OIF, +OIF:SA:25:10269,1,"Prieuré",48.493998,1.872909,,1,,Europe/Paris,,OIF, +OIF:SA:25:10270,1,"Gros Lieu",48.489022,1.92509,,1,,Europe/Paris,,OIF, +OIF:SA:25:10272,1,"Pierre Trouvé",48.516858,1.830804,,1,,Europe/Paris,,OIF, +OIF:SA:25:10276,1,"Église",48.636495,1.954107,,1,,Europe/Paris,,OIF, +OIF:SA:25:10277,1,"Mauzaise",48.683513,1.63329,,1,,Europe/Paris,,OIF, +OIF:SA:25:10279,1,"Le Bas",48.592483,2.069807,,1,,Europe/Paris,,OIF, +OIF:SA:25:10284,1,"Le Hallier",48.738721,1.670616,,1,,Europe/Paris,,OIF, +OIF:SA:25:10285,1,"Briis Place",48.624131,2.125006,,1,,Europe/Paris,,OIF, +OIF:SA:25:10289,1,"Bretonville",48.496635,1.858027,,1,,Europe/Paris,,OIF, +OIF:SA:25:10290,1,"Bréau",48.499453,1.893703,,1,,Europe/Paris,,OIF, +OIF:SA:25:10298,1,"La Jaunière",48.72114,1.669052,,1,,Europe/Paris,,OIF, +OIF:SA:25:10299,1,"La Paix",48.518768,1.833035,,1,,Europe/Paris,,OIF, +OIF:SA:25:10300,1,"Centre",48.612618,1.908753,,1,,Europe/Paris,,OIF, +OIF:SA:25:10301,1,"Le Matz",48.707977,1.799519,,1,,Europe/Paris,,OIF, +OIF:SA:25:10310,1,"La Mare",48.537777,1.870776,,1,,Europe/Paris,,OIF, +OIF:SA:25:10317,1,"Moulin",48.60986,1.917722,,1,,Europe/Paris,,OIF, +OIF:SA:25:10319,1,"Villeneuve",48.632693,1.943711,,1,,Europe/Paris,,OIF, +OIF:SA:25:10320,1,"Bois des Gaulles",48.640289,1.956981,,1,,Europe/Paris,,OIF, +OIF:SA:25:10324,1,"Passerelle SNCF",48.534262,2.009672,,1,,Europe/Paris,,OIF, +OIF:SA:25:10332,1,"Z.I. de Vaubenard",48.538322,2.019752,,1,,Europe/Paris,,OIF, +OIF:SA:25:10334,1,"Gradient 1 et 2",48.763677,2.086674,,1,,Europe/Paris,,OIF, +OIF:SA:25:10336,1,"Ménainville",48.553464,1.840939,,1,,Europe/Paris,,OIF, +OIF:SA:25:10342,1,"Marais",48.652752,1.819869,,1,,Europe/Paris,,OIF, +OIF:SA:25:10350,1,"Bullion Ronqueux",48.641031,1.986797,,1,,Europe/Paris,,OIF, +OIF:SA:25:10354,1,"Ablis École",48.517722,1.832725,,1,,Europe/Paris,,OIF, +OIF:SA:25:1038,1,"Mairie",48.500164,1.961532,,1,,Europe/Paris,,OIF, +OIF:SA:25:1039,1,"4 Routes",48.495865,1.963124,,1,,Europe/Paris,,OIF, +OIF:SA:25:1042,1,"Foyer",48.498256,1.96157,,1,,Europe/Paris,,OIF, +OIF:SA:25:1043,1,"Pignon Blanc",48.498921,1.96587,,1,,Europe/Paris,,OIF, +OIF:SA:25:10436,1,"Condé École",48.740989,1.661404,,1,,Europe/Paris,,OIF, +OIF:SA:25:10441,1,"Bois des Nöes",48.707877,1.601957,,1,,Europe/Paris,,OIF, +OIF:SA:25:10445,1,"Saint-Lubin",48.646258,1.823315,,1,,Europe/Paris,,OIF, +OIF:SA:25:10446,1,"Sous-Préfecture",48.643675,1.824337,,1,,Europe/Paris,,OIF, +OIF:SA:25:10447,1,"Paul Demange",48.651295,1.846858,,1,,Europe/Paris,,OIF, +OIF:SA:25:10449,1,"Conservatoire",48.65085,1.817893,,1,,Europe/Paris,,OIF, +OIF:SA:25:1045,1,"Les Montceaux",48.501554,1.960285,,1,,Europe/Paris,,OIF, +OIF:SA:25:10450,1,"Château",48.64817,1.816434,,1,,Europe/Paris,,OIF, +OIF:SA:25:10452,1,"Angennes",48.650146,1.823944,,1,,Europe/Paris,,OIF, +OIF:SA:25:10454,1,"Foch",48.648587,1.826931,,1,,Europe/Paris,,OIF, +OIF:SA:25:10455,1,"L'Épinette",48.70775,1.622408,,1,,Europe/Paris,,OIF, +OIF:SA:25:10457,1,"Dreyfus",48.647547,1.828808,,1,,Europe/Paris,,OIF, +OIF:SA:25:10459,1,"Vernes",48.652215,1.821605,,1,,Europe/Paris,,OIF, +OIF:SA:25:10460,1,"Rue de Boinville",48.512664,1.840686,,1,,Europe/Paris,,OIF, +OIF:SA:25:10464,1,"3 Seigneurs",48.645205,1.855052,,1,,Europe/Paris,,OIF, +OIF:SA:25:10467,1,"Europe",48.648684,1.855714,,1,,Europe/Paris,,OIF, +OIF:SA:25:10468,1,"Lac",48.648467,1.859446,,1,,Europe/Paris,,OIF, +OIF:SA:25:10495,1,"Rougemont",48.506043,1.913274,,1,,Europe/Paris,,OIF, +OIF:SA:25:10496,1,"F. Isambert",48.441948,1.797304,,1,,Europe/Paris,,OIF, +OIF:SA:25:105,1,"Vincent Scotto",48.649214,1.851556,,1,,Europe/Paris,,OIF, +OIF:SA:25:10506,1,"Vallon",48.679999,1.643499,,1,,Europe/Paris,,OIF, +OIF:SA:25:10508,1,"Église",48.702627,1.885307,,1,,Europe/Paris,,OIF, +OIF:SA:25:10509,1,"De Gaulle",48.714608,1.895983,,1,,Europe/Paris,,OIF, +OIF:SA:25:10511,1,"Pompidou",48.72377,1.896524,,1,,Europe/Paris,,OIF, +OIF:SA:25:10513,1,"Marais",48.73877,1.912331,,1,,Europe/Paris,,OIF, +OIF:SA:25:10515,1,"Broderies",48.742121,1.91713,,1,,Europe/Paris,,OIF, +OIF:SA:25:10519,1,"Les Fontaines",48.749265,1.927086,,1,,Europe/Paris,,OIF, +OIF:SA:25:10521,1,"Pont de Chevreuse",48.753315,1.93493,,1,,Europe/Paris,,OIF, +OIF:SA:25:10525,1,"Enrico Fermi",48.762282,1.981345,,1,,Europe/Paris,,OIF, +OIF:SA:25:10527,1,"Kepler",48.764,1.98533,,1,,Europe/Paris,,OIF, +OIF:SA:25:10529,1,"Copernic",48.766357,1.99121,,1,,Europe/Paris,,OIF, +OIF:SA:25:10531,1,"Hennequin",48.768394,1.99633,,1,,Europe/Paris,,OIF, +OIF:SA:25:10533,1,"Hôtel d'Agglomération",48.770773,2.005987,,1,,Europe/Paris,,OIF, +OIF:SA:25:10551,1,"Poupinel",48.569492,1.933328,,1,,Europe/Paris,,OIF, +OIF:SA:25:1058,1,"Église",48.500785,1.95791,,1,,Europe/Paris,,OIF, +OIF:SA:25:1061,1,"Poule Faisane",48.773227,1.672395,,1,,Europe/Paris,,OIF, +OIF:SA:25:1062,1,"Mairie",48.578171,1.779624,,1,,Europe/Paris,,OIF, +OIF:SA:25:1063,1,"Avenue",48.548856,1.789593,,1,,Europe/Paris,,OIF, +OIF:SA:25:10663,1,"Sainte-Thérèse",48.64756,1.822594,,1,,Europe/Paris,,OIF, +OIF:SA:25:10665,1,"République",48.645248,1.823011,,1,,Europe/Paris,,OIF, +OIF:SA:25:1069,1,"La Colonie",48.723845,1.704065,,1,,Europe/Paris,,OIF, +OIF:SA:25:1071,1,"Grange du Bois",48.735899,1.832409,,1,,Europe/Paris,,OIF, +OIF:SA:25:10717,1,"Grande Rue",48.790248,1.852131,,1,,Europe/Paris,,OIF, +OIF:SA:25:10721,1,"Chep",48.770176,1.878358,,1,,Europe/Paris,,OIF, +OIF:SA:25:1073,1,"Croix Rouge",48.70093,1.809196,,1,,Europe/Paris,,OIF, +OIF:SA:25:109,1,"Hôtel des Impôts",48.648542,1.823819,,1,,Europe/Paris,,OIF, +OIF:SA:25:110,1,"Pasteur",48.649659,1.825346,,1,,Europe/Paris,,OIF, +OIF:SA:25:113,1,"P. et M. Curie",48.652203,1.827149,,1,,Europe/Paris,,OIF, +OIF:SA:25:119,1,"Clos Batant",48.650659,1.855819,,1,,Europe/Paris,,OIF, +OIF:SA:25:12,1,"Bon Vieux Temps",48.645897,1.8212,,1,,Europe/Paris,,OIF, +OIF:SA:25:120,1,"Église",48.622428,1.99717,,1,,Europe/Paris,,OIF, +OIF:SA:25:122,1,"Grange Colombe",48.654968,1.846028,,1,,Europe/Paris,,OIF, +OIF:SA:25:124,1,"Grenonvilliers",48.653993,1.838002,,1,,Europe/Paris,,OIF, +OIF:SA:25:125,1,"Uzès",48.651693,1.837965,,1,,Europe/Paris,,OIF, +OIF:SA:25:126,1,"Vdo",48.650644,1.834353,,1,,Europe/Paris,,OIF, +OIF:SA:25:129,1,"Clairefontaine",48.650241,1.830837,,1,,Europe/Paris,,OIF, +OIF:SA:25:130,1,"Château",48.642762,1.966429,,1,,Europe/Paris,,OIF, +OIF:SA:25:133,1,"Telecom",48.647011,1.830646,,1,,Europe/Paris,,OIF, +OIF:SA:25:139,1,"Mairie",48.645491,1.819173,,1,,Europe/Paris,,OIF, +OIF:SA:25:14,1,"Clairbois",48.65942,1.860133,,1,,Europe/Paris,,OIF, +OIF:SA:25:140,1,"Sainte-Bernadette",48.643676,1.836897,,1,,Europe/Paris,,OIF, +OIF:SA:25:144,1,"Roi de Rome",48.644795,1.822507,,1,,Europe/Paris,,OIF, +OIF:SA:25:147,1,"Maurice Dechy",48.649884,1.820368,,1,,Europe/Paris,,OIF, +OIF:SA:25:152,1,"Paul Doumer",48.644953,1.825333,,1,,Europe/Paris,,OIF, +OIF:SA:25:153,1,"Humbert",48.643989,1.826903,,1,,Europe/Paris,,OIF, +OIF:SA:25:154,1,"Sécurité Sociale",48.643234,1.828999,,1,,Europe/Paris,,OIF, +OIF:SA:25:155,1,"Poste",48.742373,1.661328,,1,,Europe/Paris,,OIF, +OIF:SA:25:156,1,"Groussay",48.654497,1.820735,,1,,Europe/Paris,,OIF, +OIF:SA:25:157,1,"Petit Parc",48.642518,1.830667,,1,,Europe/Paris,,OIF, +OIF:SA:25:160,1,"La Roncière",48.599401,2.158665,,1,,Europe/Paris,,OIF, +OIF:SA:25:162,1,"Soulodière",48.58974,2.151006,,1,,Europe/Paris,,OIF, +OIF:SA:25:164,1,"Mairie",48.761168,1.607939,,1,,Europe/Paris,,OIF, +OIF:SA:25:166,1,"Collège Émile Auvray",48.52781,2.020617,,1,,Europe/Paris,,OIF, +OIF:SA:25:168,1,"La Forêt",48.534652,1.995514,,1,,Europe/Paris,,OIF, +OIF:SA:25:17,1,"Constellation",48.639714,1.830303,,1,,Europe/Paris,,OIF, +OIF:SA:25:172,1,"Hôpital",48.534044,2.002234,,1,,Europe/Paris,,OIF, +OIF:SA:25:176,1,"Rouillon",48.554458,2.000317,,1,,Europe/Paris,,OIF, +OIF:SA:25:178,1,"Semont",48.54759,1.994305,,1,,Europe/Paris,,OIF, +OIF:SA:25:182,1,"Centre",48.590793,1.731055,,1,,Europe/Paris,,OIF, +OIF:SA:25:184,1,"Chaleine",48.595328,1.716298,,1,,Europe/Paris,,OIF, +OIF:SA:25:192,1,"Moreau Voisin",48.592061,1.724061,,1,,Europe/Paris,,OIF, +OIF:SA:25:194,1,"Montlieu",48.601465,1.754545,,1,,Europe/Paris,,OIF, +OIF:SA:25:196,1,"Petit Bel Air",48.58851,1.743979,,1,,Europe/Paris,,OIF, +OIF:SA:25:198,1,"Sauvage",48.585158,1.741099,,1,,Europe/Paris,,OIF, +OIF:SA:25:20,1,"Drouette",48.629973,1.82761,,1,,Europe/Paris,,OIF, +OIF:SA:25:200,1,"Rue de Saint-Hilarion",48.593883,1.729739,,1,,Europe/Paris,,OIF, +OIF:SA:25:204,1,"Sycomores",48.607239,1.678968,,1,,Europe/Paris,,OIF, +OIF:SA:25:210,1,"Mairie",48.687794,1.579414,,1,,Europe/Paris,,OIF, +OIF:SA:25:212,1,"Mesnil Condit",48.684661,1.599979,,1,,Europe/Paris,,OIF, +OIF:SA:25:216,1,"Centre",48.619019,2.156102,,1,,Europe/Paris,,OIF, +OIF:SA:25:218,1,"Galloterie",48.595023,2.153538,,1,,Europe/Paris,,OIF, +OIF:SA:25:22,1,"Dubuc",48.64633,1.826143,,1,,Europe/Paris,,OIF, +OIF:SA:25:23,1,"Eiffel",48.625874,1.824558,,1,,Europe/Paris,,OIF, +OIF:SA:25:232,1,"Église",48.62847,2.09763,,1,,Europe/Paris,,OIF, +OIF:SA:25:234,1,"Golf",48.629552,2.081861,,1,,Europe/Paris,,OIF, +OIF:SA:25:236,1,"Mairie",48.782228,1.761723,,1,,Europe/Paris,,OIF, +OIF:SA:25:242,1,"La Troche",48.782251,1.747071,,1,,Europe/Paris,,OIF, +OIF:SA:25:244,1,"Le Boulay",48.782612,1.659468,,1,,Europe/Paris,,OIF, +OIF:SA:25:246,1,"2 Rue de l'Étang",48.790259,1.696151,,1,,Europe/Paris,,OIF, +OIF:SA:25:249,1,"Bel Air",48.777515,1.664447,,1,,Europe/Paris,,OIF, +OIF:SA:25:251,1,"Gambaiseuil",48.75678,1.733368,,1,,Europe/Paris,,OIF, +OIF:SA:25:255,1,"Guérinoterie",48.776288,1.68833,,1,,Europe/Paris,,OIF, +OIF:SA:25:257,1,"Perdreauville",48.790732,1.676528,,1,,Europe/Paris,,OIF, +OIF:SA:25:260,1,"Pré Joli",48.774758,1.669905,,1,,Europe/Paris,,OIF, +OIF:SA:25:262,1,"Saint-Côme",48.770172,1.638842,,1,,Europe/Paris,,OIF, +OIF:SA:25:264,1,"Vieille Tuilerie",48.794586,1.680233,,1,,Europe/Paris,,OIF, +OIF:SA:25:266,1,"12 Arpents",48.627535,1.772618,,1,,Europe/Paris,,OIF, +OIF:SA:25:268,1,"Batonceau",48.621248,1.770029,,1,,Europe/Paris,,OIF, +OIF:SA:25:27,1,"Passage Fleuri",48.644397,1.825166,,1,,Europe/Paris,,OIF, +OIF:SA:25:277,1,"Mairie",48.636017,1.775032,,1,,Europe/Paris,,OIF, +OIF:SA:25:28,1,"Gambetta",48.644396,1.829625,,1,,Europe/Paris,,OIF, +OIF:SA:25:281,1,"Petit Parc",48.632865,1.772022,,1,,Europe/Paris,,OIF, +OIF:SA:25:285,1,"Le Breuil",48.73185,1.638411,,1,,Europe/Paris,,OIF, +OIF:SA:25:287,1,"Château",48.708279,1.617779,,1,,Europe/Paris,,OIF, +OIF:SA:25:289,1,"Curé",48.711785,1.598159,,1,,Europe/Paris,,OIF, +OIF:SA:25:29,1,"Gazeran",48.624173,1.826424,,1,,Europe/Paris,,OIF, +OIF:SA:25:295,1,"Mairie",48.699029,1.595795,,1,,Europe/Paris,,OIF, +OIF:SA:25:297,1,"Étang la Ville",48.774213,1.791313,,1,,Europe/Paris,,OIF, +OIF:SA:25:299,1,"Haisettes",48.771303,1.743604,,1,,Europe/Paris,,OIF, +OIF:SA:25:301,1,"Chêne Rogneux",48.774155,1.767184,,1,,Europe/Paris,,OIF, +OIF:SA:25:303,1,"La Surie",48.783635,1.768193,,1,,Europe/Paris,,OIF, +OIF:SA:25:305,1,"60 Arpents",48.76363,2.085133,,1,,Europe/Paris,,OIF, +OIF:SA:25:307,1,"L'Étang",48.757834,2.087804,,1,,Europe/Paris,,OIF, +OIF:SA:25:308,1,"Trou Berger",48.758417,2.076081,,1,,Europe/Paris,,OIF, +OIF:SA:25:310,1,"Mairie",48.600394,1.642628,,1,,Europe/Paris,,OIF, +OIF:SA:25:314,1,"La Hauteville",48.70413,1.617592,,1,,Europe/Paris,,OIF, +OIF:SA:25:316,1,"Amblaincourt",48.634377,1.679717,,1,,Europe/Paris,,OIF, +OIF:SA:25:318,1,"Béchereau",48.650748,1.688686,,1,,Europe/Paris,,OIF, +OIF:SA:25:322,1,"Église",48.637249,1.675319,,1,,Europe/Paris,,OIF, +OIF:SA:25:324,1,"Guipérreux",48.658671,1.695034,,1,,Europe/Paris,,OIF, +OIF:SA:25:328,1,"L'Orme",48.645413,1.683674,,1,,Europe/Paris,,OIF, +OIF:SA:25:33,1,"Grand Mail",48.653454,1.859181,,1,,Europe/Paris,,OIF, +OIF:SA:25:345,1,"Barantonnerie",48.69187,1.846881,,1,,Europe/Paris,,OIF, +OIF:SA:25:347,1,"Champ de Foire",48.697033,1.856372,,1,,Europe/Paris,,OIF, +OIF:SA:25:349,1,"Chemin Neuf",48.685119,1.846018,,1,,Europe/Paris,,OIF, +OIF:SA:25:351,1,"ZI Chemin Vert",48.703654,1.859387,,1,,Europe/Paris,,OIF, +OIF:SA:25:356,1,"Fer Ouvré",48.699702,1.859649,,1,,Europe/Paris,,OIF, +OIF:SA:25:359,1,"Gerbière",48.693816,1.846477,,1,,Europe/Paris,,OIF, +OIF:SA:25:36,1,"Saint-Hubert",48.636783,1.831965,,1,,Europe/Paris,,OIF, +OIF:SA:25:361,1,"Grand Amiral",48.689272,1.851562,,1,,Europe/Paris,,OIF, +OIF:SA:25:363,1,"Halpherie",48.702085,1.856057,,1,,Europe/Paris,,OIF, +OIF:SA:25:365,1,"Joute aux Cerfs",48.690346,1.844273,,1,,Europe/Paris,,OIF, +OIF:SA:25:369,1,"Pont Marquant",48.691034,1.851864,,1,,Europe/Paris,,OIF, +OIF:SA:25:37,1,"Jonquilles",48.646721,1.855565,,1,,Europe/Paris,,OIF, +OIF:SA:25:373,1,"ASPTT",48.70105,1.855013,,1,,Europe/Paris,,OIF, +OIF:SA:25:375,1,"Roseau",48.694575,1.832051,,1,,Europe/Paris,,OIF, +OIF:SA:25:377,1,"Rotoir",48.689052,1.839573,,1,,Europe/Paris,,OIF, +OIF:SA:25:379,1,"Gare Souterrain",48.693393,1.856927,,1,,Europe/Paris,,OIF, +OIF:SA:25:38,1,"Kennedy",48.649302,1.840963,,1,,Europe/Paris,,OIF, +OIF:SA:25:381,1,"Saint-Jacques",48.682304,1.842687,,1,,Europe/Paris,,OIF, +OIF:SA:25:383,1,"La Touche",48.696868,1.838697,,1,,Europe/Paris,,OIF, +OIF:SA:25:385,1,"Le Val",48.565518,2.061389,,1,,Europe/Paris,,OIF, +OIF:SA:25:387,1,"Marais",48.575824,2.100482,,1,,Europe/Paris,,OIF, +OIF:SA:25:389,1,"Bout du Vau",48.566425,2.069822,,1,,Europe/Paris,,OIF, +OIF:SA:25:4,1,"Métairie",48.62167,1.825156,,1,,Europe/Paris,,OIF, +OIF:SA:25:401,1,"Collège Vignaud",48.643303,2.082675,,1,,Europe/Paris,,OIF, +OIF:SA:25:403,1,"La Bâte",48.5917,2.015369,,1,,Europe/Paris,,OIF, +OIF:SA:25:409,1,"Plessis Mornay",48.565751,1.987458,,1,,Europe/Paris,,OIF, +OIF:SA:25:41,1,"Place des Fêtes",48.701143,1.884476,,1,,Europe/Paris,,OIF, +OIF:SA:25:413,1,"Village",48.579258,1.991,,1,,Europe/Paris,,OIF, +OIF:SA:25:418,1,"Cheval Mort",48.780684,1.84472,,1,,Europe/Paris,,OIF, +OIF:SA:25:421,1,"Place",48.789948,1.851803,,1,,Europe/Paris,,OIF, +OIF:SA:25:429,1,"Parc Boulogne",48.78922,1.813436,,1,,Europe/Paris,,OIF, +OIF:SA:25:43,1,"Lenôtre",48.63807,1.82713,,1,,Europe/Paris,,OIF, +OIF:SA:25:435,1,"L'Aunay",48.653472,1.628739,,1,,Europe/Paris,,OIF, +OIF:SA:25:437,1,"Berthière",48.664307,1.632516,,1,,Europe/Paris,,OIF, +OIF:SA:25:439,1,"Croix Rouge",48.667185,1.641606,,1,,Europe/Paris,,OIF, +OIF:SA:25:441,1,"Église",48.668814,1.644458,,1,,Europe/Paris,,OIF, +OIF:SA:25:443,1,"Les Pâtis",48.665868,1.623721,,1,,Europe/Paris,,OIF, +OIF:SA:25:445,1,"Le Poteau",48.663452,1.624975,,1,,Europe/Paris,,OIF, +OIF:SA:25:447,1,"Renardière",48.665374,1.637587,,1,,Europe/Paris,,OIF, +OIF:SA:25:449,1,"Vacheresse",48.662791,1.616668,,1,,Europe/Paris,,OIF, +OIF:SA:25:451,1,"Le Val",48.65532,1.630979,,1,,Europe/Paris,,OIF, +OIF:SA:25:453,1,"Place de l'Église",48.742717,1.96164,,1,,Europe/Paris,,OIF, +OIF:SA:25:455,1,"Porte Henry IV",48.744059,1.949878,,1,,Europe/Paris,,OIF, +OIF:SA:25:459,1,"L'Aunay Bertin",48.766475,1.823666,,1,,Europe/Paris,,OIF, +OIF:SA:25:46,1,"La Louvière",48.643969,1.839994,,1,,Europe/Paris,,OIF, +OIF:SA:25:461,1,"Chapelle",48.763312,1.826736,,1,,Europe/Paris,,OIF, +OIF:SA:25:463,1,"Place",48.756944,1.836139,,1,,Europe/Paris,,OIF, +OIF:SA:25:467,1,"Notre-Dame du Bel Air",48.777557,1.798694,,1,,Europe/Paris,,OIF, +OIF:SA:25:471,1,"Egremont",48.778964,1.80218,,1,,Europe/Paris,,OIF, +OIF:SA:25:475,1,"Général de Gaulle",48.781073,1.81118,,1,,Europe/Paris,,OIF, +OIF:SA:25:48,1,"Les Vergers",48.638575,1.83441,,1,,Europe/Paris,,OIF, +OIF:SA:25:485,1,"Collège Maurice Ravel",48.774745,1.815334,,1,,Europe/Paris,,OIF, +OIF:SA:25:494,1,"Etoile",48.648117,1.534373,,1,,Europe/Paris,,OIF, +OIF:SA:25:496,1,"Haut de Nogent",48.642131,1.521123,,1,,Europe/Paris,,OIF, +OIF:SA:25:498,1,"Mairie",48.648123,1.53043,,1,,Europe/Paris,,OIF, +OIF:SA:25:50,1,"Maréchal Juin",48.633791,1.829119,,1,,Europe/Paris,,OIF, +OIF:SA:25:500,1,"Centre",48.587641,1.811216,,1,,Europe/Paris,,OIF, +OIF:SA:25:502,1,"L'Epinaye",48.583214,1.822682,,1,,Europe/Paris,,OIF, +OIF:SA:25:503,1,"Guillemets",48.607429,1.80541,,1,,Europe/Paris,,OIF, +OIF:SA:25:505,1,"Rôtis",48.597779,1.80199,,1,,Europe/Paris,,OIF, +OIF:SA:25:507,1,"Cerqueuse",48.562348,1.789827,,1,,Europe/Paris,,OIF, +OIF:SA:25:509,1,"Les Coudraies",48.577977,1.784108,,1,,Europe/Paris,,OIF, +OIF:SA:25:511,1,"Haute Maison",48.567339,1.769241,,1,,Europe/Paris,,OIF, +OIF:SA:25:517,1,"Poyers",48.579331,1.767416,,1,,Europe/Paris,,OIF, +OIF:SA:25:519,1,"Brasserie",48.479086,1.848608,,1,,Europe/Paris,,OIF, +OIF:SA:25:523,1,"Église",48.478197,1.834664,,1,,Europe/Paris,,OIF, +OIF:SA:25:525,1,"Paray Gare",48.479136,1.85038,,1,,Europe/Paris,,OIF, +OIF:SA:25:528,1,"Lenainville",48.448926,1.848337,,1,,Europe/Paris,,OIF, +OIF:SA:25:530,1,"Paray Douaville",48.463596,1.877044,,1,,Europe/Paris,,OIF, +OIF:SA:25:532,1,"Villiers les Oudets",48.45175,1.874553,,1,,Europe/Paris,,OIF, +OIF:SA:25:536,1,"Cerisaie",48.676663,1.765297,,1,,Europe/Paris,,OIF, +OIF:SA:25:538,1,"Cimetière",48.680999,1.757211,,1,,Europe/Paris,,OIF, +OIF:SA:25:54,1,"Mège Mouries",48.622824,1.828046,,1,,Europe/Paris,,OIF, +OIF:SA:25:540,1,"Feuillettes",48.684183,1.762852,,1,,Europe/Paris,,OIF, +OIF:SA:25:542,1,"Mairie",48.676108,1.753518,,1,,Europe/Paris,,OIF, +OIF:SA:25:544,1,"Petit Paris",48.693502,1.770475,,1,,Europe/Paris,,OIF, +OIF:SA:25:552,1,"Mairie",48.553199,1.911475,,1,,Europe/Paris,,OIF, +OIF:SA:25:554,1,"Vallée Brun",48.555741,1.90786,,1,,Europe/Paris,,OIF, +OIF:SA:25:560,1,"Craches",48.556165,1.807404,,1,,Europe/Paris,,OIF, +OIF:SA:25:562,1,"École",48.529007,1.794969,,1,,Europe/Paris,,OIF, +OIF:SA:25:564,1,"Gourville",48.514072,1.791863,,1,,Europe/Paris,,OIF, +OIF:SA:25:566,1,"Marchais Parfond",48.540028,1.788955,,1,,Europe/Paris,,OIF, +OIF:SA:25:568,1,"Telecom",48.553935,1.790404,,1,,Europe/Paris,,OIF, +OIF:SA:25:570,1,"Les Chaises",48.650267,1.692432,,1,,Europe/Paris,,OIF, +OIF:SA:25:574,1,"Mairie",48.623941,1.682743,,1,,Europe/Paris,,OIF, +OIF:SA:25:6,1,"Alouette",48.650646,1.842952,,1,,Europe/Paris,,OIF, +OIF:SA:25:60,1,"Marine",48.634729,1.818198,,1,,Europe/Paris,,OIF, +OIF:SA:25:61,1,"Muguet",48.647319,1.841756,,1,,Europe/Paris,,OIF, +OIF:SA:25:63,1,"Parc",48.642087,1.825701,,1,,Europe/Paris,,OIF, +OIF:SA:25:65,1,"Pierre Fite",48.640782,1.821251,,1,,Europe/Paris,,OIF, +OIF:SA:25:66,1,"Pompidou",48.636618,1.829037,,1,,Europe/Paris,,OIF, +OIF:SA:25:67,1,"Poste",48.647448,1.82449,,1,,Europe/Paris,,OIF, +OIF:SA:25:671,1,"École",48.583476,1.986338,,1,,Europe/Paris,,OIF, +OIF:SA:25:673,1,"La Garenne",48.590802,1.991231,,1,,Europe/Paris,,OIF, +OIF:SA:25:675,1,"Foisnard",48.567975,2.031306,,1,,Europe/Paris,,OIF, +OIF:SA:25:677,1,"Les Loges",48.563621,2.049117,,1,,Europe/Paris,,OIF, +OIF:SA:25:679,1,"Pont Rué",48.565347,2.038805,,1,,Europe/Paris,,OIF, +OIF:SA:25:681,1,"Saint-Antoine",48.61505,1.701603,,1,,Europe/Paris,,OIF, +OIF:SA:25:683,1,"Route d'Epernon",48.612486,1.686037,,1,,Europe/Paris,,OIF, +OIF:SA:25:685,1,"Fosseuil",48.61898,1.700144,,1,,Europe/Paris,,OIF, +OIF:SA:25:687,1,"Grand Goulet",48.616097,1.717007,,1,,Europe/Paris,,OIF, +OIF:SA:25:689,1,"Mairie",48.620222,1.732997,,1,,Europe/Paris,,OIF, +OIF:SA:25:691,1,"Petit Goulet",48.615981,1.725705,,1,,Europe/Paris,,OIF, +OIF:SA:25:693,1,"Séry",48.614499,1.690562,,1,,Europe/Paris,,OIF, +OIF:SA:25:695,1,"Château Blanc",48.727941,1.766837,,1,,Europe/Paris,,OIF, +OIF:SA:25:697,1,"Gros Billot",48.722195,1.766782,,1,,Europe/Paris,,OIF, +OIF:SA:25:699,1,"Mairie",48.53098,1.961015,,1,,Europe/Paris,,OIF, +OIF:SA:25:70,1,"Prunelliers",48.658281,1.856375,,1,,Europe/Paris,,OIF, +OIF:SA:25:701,1,"Delandre",48.529259,1.954856,,1,,Europe/Paris,,OIF, +OIF:SA:25:703,1,"Denisy",48.542432,1.938749,,1,,Europe/Paris,,OIF, +OIF:SA:25:707,1,"Ville Lebrun",48.527831,1.970891,,1,,Europe/Paris,,OIF, +OIF:SA:25:709,1,"Ardenay",48.5128,1.926124,,1,,Europe/Paris,,OIF, +OIF:SA:25:711,1,"Boissière",48.511298,1.930185,,1,,Europe/Paris,,OIF, +OIF:SA:25:713,1,"Château",48.50711,1.916411,,1,,Europe/Paris,,OIF, +OIF:SA:25:715,1,"Église",48.509988,1.927889,,1,,Europe/Paris,,OIF, +OIF:SA:25:717,1,"Haut Bout",48.525273,1.91862,,1,,Europe/Paris,,OIF, +OIF:SA:25:719,1,"Moulin de Ville",48.517654,1.944696,,1,,Europe/Paris,,OIF, +OIF:SA:25:721,1,"La Puce",48.522034,1.947084,,1,,Europe/Paris,,OIF, +OIF:SA:25:723,1,"Belle Etoile",48.578061,2.141155,,1,,Europe/Paris,,OIF, +OIF:SA:25:727,1,"Centre",48.581151,2.123291,,1,,Europe/Paris,,OIF, +OIF:SA:25:73,1,"Racinay",48.636847,1.825771,,1,,Europe/Paris,,OIF, +OIF:SA:25:733,1,"Boutareine",48.570013,1.902982,,1,,Europe/Paris,,OIF, +OIF:SA:25:735,1,"Clos de l'Étang",48.573189,1.881159,,1,,Europe/Paris,,OIF, +OIF:SA:25:739,1,"Greffiers 1",48.615356,1.839664,,1,,Europe/Paris,,OIF, +OIF:SA:25:741,1,"Greffiers 2",48.613284,1.842273,,1,,Europe/Paris,,OIF, +OIF:SA:25:743,1,"La Hunière",48.599398,1.864612,,1,,Europe/Paris,,OIF, +OIF:SA:25:745,1,"Mairie",48.576186,1.87738,,1,,Europe/Paris,,OIF, +OIF:SA:25:748,1,"Charlaine",48.756815,1.877121,,1,,Europe/Paris,,OIF, +OIF:SA:25:749,1,"Église",48.756639,1.881964,,1,,Europe/Paris,,OIF, +OIF:SA:25:75,1,"Rouget de Lisle",48.65185,1.860458,,1,,Europe/Paris,,OIF, +OIF:SA:25:752,1,"La Mare",48.754453,1.870721,,1,,Europe/Paris,,OIF, +OIF:SA:25:753,1,"La Vierge",48.760338,1.884044,,1,,Europe/Paris,,OIF, +OIF:SA:25:755,1,"Collège Brassens",48.576125,1.946755,,1,,Europe/Paris,,OIF, +OIF:SA:25:757,1,"Bréau",48.567086,1.929283,,1,,Europe/Paris,,OIF, +OIF:SA:25:759,1,"Chaudière",48.569867,1.927642,,1,,Europe/Paris,,OIF, +OIF:SA:25:764,1,"Croix Verte",48.578926,1.945759,,1,,Europe/Paris,,OIF, +OIF:SA:25:766,1,"Dejean",48.576626,1.948268,,1,,Europe/Paris,,OIF, +OIF:SA:25:767,1,"Grands Meurgers",48.571114,1.916198,,1,,Europe/Paris,,OIF, +OIF:SA:25:769,1,"La Mare",48.571191,1.922111,,1,,Europe/Paris,,OIF, +OIF:SA:25:777,1,"Martinière",48.578083,1.943422,,1,,Europe/Paris,,OIF, +OIF:SA:25:778,1,"Muette",48.566815,1.931921,,1,,Europe/Paris,,OIF, +OIF:SA:25:780,1,"Petits Meurgers",48.5708,1.911355,,1,,Europe/Paris,,OIF, +OIF:SA:25:782,1,"Pontbrilland",48.564425,1.933387,,1,,Europe/Paris,,OIF, +OIF:SA:25:787,1,"Zone Industrielle",48.561826,1.931653,,1,,Europe/Paris,,OIF, +OIF:SA:25:788,1,"Château",48.778017,1.876629,,1,,Europe/Paris,,OIF, +OIF:SA:25:790,1,"Verbuisson",48.772216,1.875634,,1,,Europe/Paris,,OIF, +OIF:SA:25:794,1,"École",48.602389,2.120622,,1,,Europe/Paris,,OIF, +OIF:SA:25:812,1,"L'Abbé",48.566504,1.831523,,1,,Europe/Paris,,OIF, +OIF:SA:25:823,1,"Collège",48.720408,1.897934,,1,,Europe/Paris,,OIF, +OIF:SA:25:828,1,"Fleurs",48.639926,2.072877,,1,,Europe/Paris,,OIF, +OIF:SA:25:83,1,"Tivoli",48.640722,1.826121,,1,,Europe/Paris,,OIF, +OIF:SA:25:830,1,"Carrières",48.69476,1.867237,,1,,Europe/Paris,,OIF, +OIF:SA:25:84,1,"Trianon",48.640387,1.834005,,1,,Europe/Paris,,OIF, +OIF:SA:25:846,1,"Moulin à Vent",48.493726,1.86909,,1,,Europe/Paris,,OIF, +OIF:SA:25:850,1,"La Garenne",48.641543,1.691182,,1,,Europe/Paris,,OIF, +OIF:SA:25:858,1,"Le Poirier",48.686565,1.590677,,1,,Europe/Paris,,OIF, +OIF:SA:25:88,1,"Les Vignes",48.654016,1.855683,,1,,Europe/Paris,,OIF, +OIF:SA:25:92,1,"ZA du Bel Air",48.623914,1.828686,,1,,Europe/Paris,,OIF, +OIF:SA:25:94,1,"ZI du Pâtis",48.652761,1.851533,,1,,Europe/Paris,,OIF, +OIF:SA:25:96,1,"Bascan",48.64102,1.82426,,1,,Europe/Paris,,OIF, +OIF:SA:25:97,1,"Leclerc",48.63924,1.818147,,1,,Europe/Paris,,OIF, +OIF:SA:25:98,1,"Faure",48.642946,1.826766,,1,,Europe/Paris,,OIF, +OIF:SA:26:18001,1,"Turelle",48.527938,2.371993,,1,,Europe/Paris,,OIF, +OIF:SA:26:18002,1,"Pierre Curie",48.525017,2.376708,,1,,Europe/Paris,,OIF, +OIF:SA:26:18003,1,"École Croix Boissée",48.529205,2.385648,,1,,Europe/Paris,,OIF, +OIF:SA:26:18006,1,"Glycines",48.531331,2.378047,,1,,Europe/Paris,,OIF, +OIF:SA:26:18007,1,"Mairie",48.525023,2.385485,,1,,Europe/Paris,,OIF, +OIF:SA:26:18028,1,"11 Novembre",48.607794,2.305006,,1,,Europe/Paris,,OIF, +OIF:SA:26:18029,1,"Les Ardrets",48.60275,2.308784,,1,,Europe/Paris,,OIF, +OIF:SA:26:18031,1,"80 Vingts Arpents",48.604966,2.314368,,1,,Europe/Paris,,OIF, +OIF:SA:26:18033,1,"Gayot Babin",48.599917,2.294742,,1,,Europe/Paris,,OIF, +OIF:SA:26:18034,1,"Maryse Bastié",48.604196,2.311971,,1,,Europe/Paris,,OIF, +OIF:SA:26:18036,1,"Ligne Blanche",48.585913,2.294026,,1,,Europe/Paris,,OIF, +OIF:SA:26:18037,1,"Léon Blum",48.616038,2.302365,,1,,Europe/Paris,,OIF, +OIF:SA:26:18038,1,"Branly",48.603471,2.305869,,1,,Europe/Paris,,OIF, +OIF:SA:26:18043,1,"Ba 217",48.603914,2.321944,,1,,Europe/Paris,,OIF, +OIF:SA:26:18044,1,"Bois de Chatres",48.599062,2.28441,,1,,Europe/Paris,,OIF, +OIF:SA:26:18045,1,"Cossigny",48.601016,2.305047,,1,,Europe/Paris,,OIF, +OIF:SA:26:18047,1,"Revol",48.601972,2.298872,,1,,Europe/Paris,,OIF, +OIF:SA:26:18048,1,"Ferme Mn",48.58802,2.301089,,1,,Europe/Paris,,OIF, +OIF:SA:26:18051,1,"Les Halliers",48.611692,2.303734,,1,,Europe/Paris,,OIF, +OIF:SA:26:18052,1,"Victor Hugo",48.608109,2.307079,,1,,Europe/Paris,,OIF, +OIF:SA:26:18054,1,"Bois Joli",48.597523,2.286431,,1,,Europe/Paris,,OIF, +OIF:SA:26:18055,1,"La Fontaine",48.615639,2.305333,,1,,Europe/Paris,,OIF, +OIF:SA:26:18057,1,"Z.I Languedoc",48.590762,2.301666,,1,,Europe/Paris,,OIF, +OIF:SA:26:18059,1,"Lanson",48.600986,2.297387,,1,,Europe/Paris,,OIF, +OIF:SA:26:18060,1,"Z.I Limousin",48.59381,2.302634,,1,,Europe/Paris,,OIF, +OIF:SA:26:18062,1,"Louise Michel",48.620792,2.311949,,1,,Europe/Paris,,OIF, +OIF:SA:26:18064,1,"Brèche aux Loups",48.597598,2.282413,,1,,Europe/Paris,,OIF, +OIF:SA:26:18065,1,"Lucien Clause",48.606054,2.300382,,1,,Europe/Paris,,OIF, +OIF:SA:26:18066,1,"Lycée",48.608608,2.313736,,1,,Europe/Paris,,OIF, +OIF:SA:26:18068,1,"Mairie",48.611119,2.305813,,1,,Europe/Paris,,OIF, +OIF:SA:26:18069,1,"La Marinière",48.6085,2.316018,,1,,Europe/Paris,,OIF, +OIF:SA:26:18071,1,"Centre Commercial Maison Neuve",48.586928,2.304227,,1,,Europe/Paris,,OIF, +OIF:SA:26:18073,1,"Moinerie Centre Commercial",48.598206,2.304259,,1,,Europe/Paris,,OIF, +OIF:SA:26:18075,1,"Pmi",48.605518,2.305557,,1,,Europe/Paris,,OIF, +OIF:SA:26:18076,1,"Poitou",48.587279,2.296172,,1,,Europe/Paris,,OIF, +OIF:SA:26:18077,1,"Rosière",48.622244,2.313736,,1,,Europe/Paris,,OIF, +OIF:SA:26:18079,1,"Sablière",48.619246,2.309928,,1,,Europe/Paris,,OIF, +OIF:SA:26:18081,1,"Maurice Boyau",48.604999,2.30535,,1,,Europe/Paris,,OIF, +OIF:SA:26:18082,1,"Les Vendanges",48.598427,2.29022,,1,,Europe/Paris,,OIF, +OIF:SA:26:18083,1,"Bois de Vetille",48.606576,2.317318,,1,,Europe/Paris,,OIF, +OIF:SA:26:18085,1,"Van de Wallé",48.600364,2.289604,,1,,Europe/Paris,,OIF, +OIF:SA:26:18086,1,"Langevin Wallon",48.60148,2.293514,,1,,Europe/Paris,,OIF, +OIF:SA:26:18092,1,"Bouquin",48.559921,2.31874,,1,,Europe/Paris,,OIF, +OIF:SA:26:18094,1,"Croix Boissée",48.568236,2.327139,,1,,Europe/Paris,,OIF, +OIF:SA:26:18096,1,"Mairie",48.565754,2.325817,,1,,Europe/Paris,,OIF, +OIF:SA:26:18098,1,"Bois Minard",48.563919,2.321964,,1,,Europe/Paris,,OIF, +OIF:SA:26:18100,1,"Sentier Mulets",48.567427,2.328298,,1,,Europe/Paris,,OIF, +OIF:SA:26:18110,1,"Z.I Cochets",48.580187,2.293146,,1,,Europe/Paris,,OIF, +OIF:SA:26:18118,1,"Vieux Lavoir",48.559874,2.309826,,1,,Europe/Paris,,OIF, +OIF:SA:26:18123,1,"Route d'Evry",48.559252,2.314698,,1,,Europe/Paris,,OIF, +OIF:SA:26:18129,1,"Techniparc",48.62317,2.31516,,1,,Europe/Paris,,OIF, +OIF:SA:26:18130,1,"Condorcet",48.622932,2.316936,,1,,Europe/Paris,,OIF, +OIF:SA:26:18131,1,"Chemin de Brétigny",48.622603,2.319887,,1,,Europe/Paris,,OIF, +OIF:SA:26:18132,1,"Les Biches",48.614098,2.32884,,1,,Europe/Paris,,OIF, +OIF:SA:26:18133,1,"Les Castors",48.609983,2.325243,,1,,Europe/Paris,,OIF, +OIF:SA:26:18135,1,"Thales",48.602701,2.355258,,1,,Europe/Paris,,OIF, +OIF:SA:26:18137,1,"Rue des Chamois",48.614553,2.325044,,1,,Europe/Paris,,OIF, +OIF:SA:26:18140,1,"Gymnase",48.610288,2.323268,,1,,Europe/Paris,,OIF, +OIF:SA:26:18142,1,"Mairie(Église)",48.612233,2.326692,,1,,Europe/Paris,,OIF, +OIF:SA:26:18143,1,"Mairie",48.612085,2.32504,,1,,Europe/Paris,,OIF, +OIF:SA:26:18144,1,"Clos Méline",48.614558,2.32225,,1,,Europe/Paris,,OIF, +OIF:SA:26:18145,1,"Mozart",48.609337,2.321196,,1,,Europe/Paris,,OIF, +OIF:SA:26:18147,1,"La Rogère",48.61591,2.329749,,1,,Europe/Paris,,OIF, +OIF:SA:26:18148,1,"Les Roses",48.611978,2.32156,,1,,Europe/Paris,,OIF, +OIF:SA:26:18149,1,"Berthault",48.56749,2.355059,,1,,Europe/Paris,,OIF, +OIF:SA:26:18151,1,"Guichet",48.578284,2.361117,,1,,Europe/Paris,,OIF, +OIF:SA:26:18153,1,"Marquants",48.573204,2.358526,,1,,Europe/Paris,,OIF, +OIF:SA:26:18169,1,"Mairie",48.551229,2.366649,,1,,Europe/Paris,,OIF, +OIF:SA:26:18171,1,"Marcel Charon",48.554358,2.367307,,1,,Europe/Paris,,OIF, +OIF:SA:26:18172,1,"Pasteur",48.546592,2.366507,,1,,Europe/Paris,,OIF, +OIF:SA:26:18174,1,"Tounebride",48.539519,2.365615,,1,,Europe/Paris,,OIF, +OIF:SA:26:18189,1,"Presle",48.581447,2.299078,,1,,Europe/Paris,,OIF, +OIF:SA:26:18193,1,"Coquelicots",48.571096,2.35336,,1,,Europe/Paris,,OIF, +OIF:SA:26:18195,1,"Noues",48.576342,2.356962,,1,,Europe/Paris,,OIF, +OIF:SA:26:18197,1,"Botteaux",48.574651,2.353408,,1,,Europe/Paris,,OIF, +OIF:SA:26:18199,1,"Château d'Eau",48.559229,2.292397,,1,,Europe/Paris,,OIF, +OIF:SA:26:18201,1,"Clozeaux",48.556436,2.293312,,1,,Europe/Paris,,OIF, +OIF:SA:26:18203,1,"Pins",48.557892,2.29766,,1,,Europe/Paris,,OIF, +OIF:SA:26:18205,1,"Jardins",48.559919,2.294191,,1,,Europe/Paris,,OIF, +OIF:SA:26:18207,1,"Centre",48.561337,2.293905,,1,,Europe/Paris,,OIF, +OIF:SA:26:18215,1,"Mille Club",48.521027,2.382279,,1,,Europe/Paris,,OIF, +OIF:SA:26:18233,1,"Haut de Vigne",48.553833,2.362972,,1,,Europe/Paris,,OIF, +OIF:SA:26:18235,1,"Gymnase",48.555476,2.368985,,1,,Europe/Paris,,OIF, +OIF:SA:26:18240,1,"Vallée",48.522146,2.383698,,1,,Europe/Paris,,OIF, +OIF:SA:26:18243,1,"Grand Noyer",48.616717,2.371386,,1,,Europe/Paris,,OIF, +OIF:SA:26:18247,1,"D'Alembert",48.621439,2.322924,,1,,Europe/Paris,,OIF, +OIF:SA:26:18251,1,"La Ferme",48.620866,2.329606,,1,,Europe/Paris,,OIF, +OIF:SA:26:18255,1,"Zone d'Activités le Parc",48.618392,2.329778,,1,,Europe/Paris,,OIF, +OIF:SA:26:18257,1,"Léonard de Vinci",48.619795,2.331233,,1,,Europe/Paris,,OIF, +OIF:SA:26:18265,1,"Carrère d'Encausse",48.603531,2.295809,,1,,Europe/Paris,,OIF, +OIF:SA:27:1,1,"Foch 11 Novembre",48.529847,2.683251,,1,,Europe/Paris,,OIF, +OIF:SA:27:10,1,"3 Horloges",48.550207,2.657377,,1,,Europe/Paris,,OIF, +OIF:SA:27:100,1,"H. Daumier",48.523952,2.657742,,1,,Europe/Paris,,OIF, +OIF:SA:27:101,1,"Delaroue",48.531065,2.643742,,1,,Europe/Paris,,OIF, +OIF:SA:27:102,1,"Despatys Préfecture",48.543116,2.658344,,1,,Europe/Paris,,OIF, +OIF:SA:27:103,1,"Diaz",48.522012,2.660313,,1,,Europe/Paris,,OIF, +OIF:SA:27:105,1,"Ecluse",48.529989,2.651388,,1,,Europe/Paris,,OIF, +OIF:SA:27:106,1,"École de Gendarmerie",48.544754,2.652555,,1,,Europe/Paris,,OIF, +OIF:SA:27:108,1,"École Matisse",48.520773,2.65847,,1,,Europe/Paris,,OIF, +OIF:SA:27:11,1,"Trois Rodes",48.525876,2.695162,,1,,Europe/Paris,,OIF, +OIF:SA:27:110,1,"École Van Gogh",48.518784,2.659927,,1,,Europe/Paris,,OIF, +OIF:SA:27:112,1,"Saint-Just Einstein",48.534312,2.683897,,1,,Europe/Paris,,OIF, +OIF:SA:27:114,1,"Fabien",48.526787,2.648648,,1,,Europe/Paris,,OIF, +OIF:SA:27:115,1,"Farcy",48.515714,2.624605,,1,,Europe/Paris,,OIF, +OIF:SA:27:117,1,"Fenez",48.541695,2.636089,,1,,Europe/Paris,,OIF, +OIF:SA:27:119,1,"Ferme",48.533773,2.675081,,1,,Europe/Paris,,OIF, +OIF:SA:27:120,1,"Ferme",48.534956,2.625009,,1,,Europe/Paris,,OIF, +OIF:SA:27:122,1,"Foch",48.516996,2.637992,,1,,Europe/Paris,,OIF, +OIF:SA:27:124,1,"Jean de la Fontaine",48.509342,2.632481,,1,,Europe/Paris,,OIF, +OIF:SA:27:126,1,"Lycée B. Franklin",48.51077,2.663567,,1,,Europe/Paris,,OIF, +OIF:SA:27:128,1,"Hôpital Gaillardon",48.539301,2.670737,,1,,Europe/Paris,,OIF, +OIF:SA:27:129,1,"Gambetta",48.537631,2.661103,,1,,Europe/Paris,,OIF, +OIF:SA:27:13,1,"Acacias",48.530825,2.679411,,1,,Europe/Paris,,OIF, +OIF:SA:27:143,1,"Giono",48.537633,2.622695,,1,,Europe/Paris,,OIF, +OIF:SA:27:145,1,"Gmf",48.54612,2.621496,,1,,Europe/Paris,,OIF, +OIF:SA:27:146,1,"Lycée Georges Sand",48.549192,2.63665,,1,,Europe/Paris,,OIF, +OIF:SA:27:147,1,"Guinottes",48.526197,2.674164,,1,,Europe/Paris,,OIF, +OIF:SA:27:148,1,"Hôpital",48.539768,2.673168,,1,,Europe/Paris,,OIF, +OIF:SA:27:150,1,"Hôpital Intérieur",48.537212,2.667954,,1,,Europe/Paris,,OIF, +OIF:SA:27:153,1,"Mairie",48.514595,2.634575,,1,,Europe/Paris,,OIF, +OIF:SA:27:155,1,"Croix Saint-Jacques",48.521622,2.648058,,1,,Europe/Paris,,OIF, +OIF:SA:27:157,1,"Jean Jaurès",48.52621,2.645924,,1,,Europe/Paris,,OIF, +OIF:SA:27:159,1,"Javal",48.518211,2.673831,,1,,Europe/Paris,,OIF, +OIF:SA:27:16,1,"Lycée Jacques Amyot",48.545515,2.658978,,1,,Europe/Paris,,OIF, +OIF:SA:27:160,1,"Résistance",48.521458,2.63713,,1,,Europe/Paris,,OIF, +OIF:SA:27:162,1,"Lycée Joliot Curie",48.519249,2.645997,,1,,Europe/Paris,,OIF, +OIF:SA:27:164,1,"Juin Clemenceau",48.538419,2.679651,,1,,Europe/Paris,,OIF, +OIF:SA:27:165,1,"Saint-Just Pascal",48.533925,2.690036,,1,,Europe/Paris,,OIF, +OIF:SA:27:167,1,"Justice",48.505947,2.609623,,1,,Europe/Paris,,OIF, +OIF:SA:27:169,1,"La Foret",48.500123,2.634115,,1,,Europe/Paris,,OIF, +OIF:SA:27:17,1,"Archives",48.514584,2.619964,,1,,Europe/Paris,,OIF, +OIF:SA:27:170,1,"Cité Lallemand",48.508653,2.633665,,1,,Europe/Paris,,OIF, +OIF:SA:27:172,1,"Lavoisier",48.549795,2.667259,,1,,Europe/Paris,,OIF, +OIF:SA:27:174,1,"Lebon",48.526272,2.663134,,1,,Europe/Paris,,OIF, +OIF:SA:27:175,1,"Liberté",48.507379,2.615764,,1,,Europe/Paris,,OIF, +OIF:SA:27:177,1,"Docteur Roux",48.542074,2.670566,,1,,Europe/Paris,,OIF, +OIF:SA:27:178,1,"Fief du Pré",48.509956,2.682714,,1,,Europe/Paris,,OIF, +OIF:SA:27:182,1,"Route de Livry",48.517216,2.684457,,1,,Europe/Paris,,OIF, +OIF:SA:27:183,1,"Saint-Louis",48.5415,2.659729,,1,,Europe/Paris,,OIF, +OIF:SA:27:184,1,"Rue aux Loups",48.525473,2.593267,,1,,Europe/Paris,,OIF, +OIF:SA:27:186,1,"Lyve",48.534558,2.628923,,1,,Europe/Paris,,OIF, +OIF:SA:27:187,1,"Mail Gaillardon",48.539108,2.66442,,1,,Europe/Paris,,OIF, +OIF:SA:27:191,1,"Fontaine Saint-Marc",48.52927,2.692033,,1,,Europe/Paris,,OIF, +OIF:SA:27:193,1,"Marche Couvert",48.515213,2.636334,,1,,Europe/Paris,,OIF, +OIF:SA:27:194,1,"Clos Saint-Martin",48.522319,2.6921,,1,,Europe/Paris,,OIF, +OIF:SA:27:196,1,"Maternité",48.538674,2.670792,,1,,Europe/Paris,,OIF, +OIF:SA:27:198,1,"Avenue de Meaux",48.546162,2.66273,,1,,Europe/Paris,,OIF, +OIF:SA:27:200,1,"Lavoir",48.536404,2.633494,,1,,Europe/Paris,,OIF, +OIF:SA:27:203,1,"Michelet",48.546902,2.657878,,1,,Europe/Paris,,OIF, +OIF:SA:27:204,1,"Claude Monet",48.519496,2.661315,,1,,Europe/Paris,,OIF, +OIF:SA:27:206,1,"Rue de Seine",48.518048,2.661286,,1,,Europe/Paris,,OIF, +OIF:SA:27:208,1,"Moisant",48.516166,2.629825,,1,,Europe/Paris,,OIF, +OIF:SA:27:210,1,"Molière",48.544113,2.626494,,1,,Europe/Paris,,OIF, +OIF:SA:27:212,1,"Montagne du Mée",48.539562,2.640435,,1,,Europe/Paris,,OIF, +OIF:SA:27:214,1,"Montaigu",48.551112,2.653922,,1,,Europe/Paris,,OIF, +OIF:SA:27:216,1,"Albert Moreau",48.528974,2.651071,,1,,Europe/Paris,,OIF, +OIF:SA:27:218,1,"Jean Moulin",48.543477,2.670305,,1,,Europe/Paris,,OIF, +OIF:SA:27:219,1,"Moustier",48.532954,2.675995,,1,,Europe/Paris,,OIF, +OIF:SA:27:22,1,"Auvert",48.519338,2.640255,,1,,Europe/Paris,,OIF, +OIF:SA:27:221,1,"Place Mouton",48.510774,2.690475,,1,,Europe/Paris,,OIF, +OIF:SA:27:222,1,"Collège Nazareth",48.568628,2.662057,,1,,Europe/Paris,,OIF, +OIF:SA:27:223,1,"Notre-Dame",48.535948,2.660101,,1,,Europe/Paris,,OIF, +OIF:SA:27:224,1,"Foch Niepce",48.536267,2.68407,,1,,Europe/Paris,,OIF, +OIF:SA:27:225,1,"Val de Noue",48.525534,2.6913,,1,,Europe/Paris,,OIF, +OIF:SA:27:226,1,"Belle Ombre",48.533477,2.647863,,1,,Europe/Paris,,OIF, +OIF:SA:27:228,1,"Porte de Paris",48.539726,2.657871,,1,,Europe/Paris,,OIF, +OIF:SA:27:229,1,"Quai Pasteur",48.538387,2.656034,,1,,Europe/Paris,,OIF, +OIF:SA:27:23,1,"Bancel",48.541288,2.661334,,1,,Europe/Paris,,OIF, +OIF:SA:27:231,1,"Lucien Boutet",48.522798,2.645267,,1,,Europe/Paris,,OIF, +OIF:SA:27:234,1,"Plein Ciel",48.548445,2.64463,,1,,Europe/Paris,,OIF, +OIF:SA:27:236,1,"Péguy",48.500768,2.635737,,1,,Europe/Paris,,OIF, +OIF:SA:27:237,1,"Pierre Percée",48.546713,2.637447,,1,,Europe/Paris,,OIF, +OIF:SA:27:239,1,"Gabriel Péri",48.504657,2.633382,,1,,Europe/Paris,,OIF, +OIF:SA:27:24,1,"Barthou",48.508976,2.62575,,1,,Europe/Paris,,OIF, +OIF:SA:27:241,1,"Pigeons",48.524399,2.674295,,1,,Europe/Paris,,OIF, +OIF:SA:27:243,1,"Vaux Pleins Vents",48.518197,2.683091,,1,,Europe/Paris,,OIF, +OIF:SA:27:246,1,"Politzer",48.522012,2.642045,,1,,Europe/Paris,,OIF, +OIF:SA:27:249,1,"Pompiers",48.554502,2.631211,,1,,Europe/Paris,,OIF, +OIF:SA:27:250,1,"Pouillot Gatinais",48.532943,2.646019,,1,,Europe/Paris,,OIF, +OIF:SA:27:251,1,"Praslin Université",48.536937,2.658469,,1,,Europe/Paris,,OIF, +OIF:SA:27:252,1,"Préfecture Briand",48.541764,2.65235,,1,,Europe/Paris,,OIF, +OIF:SA:27:256,1,"Prieur",48.512967,2.617581,,1,,Europe/Paris,,OIF, +OIF:SA:27:257,1,"Mare à Quenette",48.520045,2.689639,,1,,Europe/Paris,,OIF, +OIF:SA:27:259,1,"Pré Rigot",48.545936,2.624835,,1,,Europe/Paris,,OIF, +OIF:SA:27:26,1,"Baste Seine",48.520384,2.674367,,1,,Europe/Paris,,OIF, +OIF:SA:27:260,1,"Rocheton Stade",48.506375,2.661295,,1,,Europe/Paris,,OIF, +OIF:SA:27:261,1,"Place Chapu",48.532227,2.658183,,1,,Europe/Paris,,OIF, +OIF:SA:27:262,1,"Quai Rossignol",48.5349,2.657171,,1,,Europe/Paris,,OIF, +OIF:SA:27:263,1,"Rue du Port",48.519627,2.674574,,1,,Europe/Paris,,OIF, +OIF:SA:27:265,1,"Route de Voisenon",48.547661,2.663137,,1,,Europe/Paris,,OIF, +OIF:SA:27:267,1,"Rue des Mézereaux",48.54942,2.671168,,1,,Europe/Paris,,OIF, +OIF:SA:27:269,1,"R.Schuman",48.550618,2.63736,,1,,Europe/Paris,,OIF, +OIF:SA:27:27,1,"Saint-Liesne",48.540352,2.668562,,1,,Europe/Paris,,OIF, +OIF:SA:27:270,1,"Seine Grisonnières",48.523618,2.678116,,1,,Europe/Paris,,OIF, +OIF:SA:27:271,1,"Siegfried",48.548912,2.643925,,1,,Europe/Paris,,OIF, +OIF:SA:27:273,1,"Sorbiers",48.543111,2.633967,,1,,Europe/Paris,,OIF, +OIF:SA:27:276,1,"Saint-Exupéry",48.551147,2.650577,,1,,Europe/Paris,,OIF, +OIF:SA:27:278,1,"Place Saint-Jean",48.539196,2.662594,,1,,Europe/Paris,,OIF, +OIF:SA:27:280,1,"Terres Blanches",48.521359,2.683662,,1,,Europe/Paris,,OIF, +OIF:SA:27:281,1,"Tessan",48.509677,2.613941,,1,,Europe/Paris,,OIF, +OIF:SA:27:283,1,"Gare Thiers",48.528392,2.654099,,1,,Europe/Paris,,OIF, +OIF:SA:27:284,1,"Elsa Triolet",48.544051,2.63554,,1,,Europe/Paris,,OIF, +OIF:SA:27:287,1,"U.R.S.S.A.F",48.552086,2.674114,,1,,Europe/Paris,,OIF, +OIF:SA:27:288,1,"ZAC des Uzelles",48.533089,2.616039,,1,,Europe/Paris,,OIF, +OIF:SA:27:29,1,"Beauregard",48.550584,2.647529,,1,,Europe/Paris,,OIF, +OIF:SA:27:290,1,"Vaux Garenne",48.514766,2.683867,,1,,Europe/Paris,,OIF, +OIF:SA:27:292,1,"Paul Valéry",48.543486,2.675027,,1,,Europe/Paris,,OIF, +OIF:SA:27:293,1,"Vercors",48.539584,2.636842,,1,,Europe/Paris,,OIF, +OIF:SA:27:295,1,"Vernin",48.50985,2.604865,,1,,Europe/Paris,,OIF, +OIF:SA:27:296,1,"Vignes",48.509005,2.663302,,1,,Europe/Paris,,OIF, +OIF:SA:27:297,1,"Vilaubois",48.517201,2.642982,,1,,Europe/Paris,,OIF, +OIF:SA:27:299,1,"Vosves École",48.512474,2.594403,,1,,Europe/Paris,,OIF, +OIF:SA:27:30,1,"Berthelot",48.51453,2.640261,,1,,Europe/Paris,,OIF, +OIF:SA:27:301,1,"Château du Jard",48.570968,2.661448,,1,,Europe/Paris,,OIF, +OIF:SA:27:302,1,"Le Moulin",48.568562,2.665207,,1,,Europe/Paris,,OIF, +OIF:SA:27:304,1,"Le Plateau",48.573987,2.663704,,1,,Europe/Paris,,OIF, +OIF:SA:27:305,1,"Fernand Léger",48.513886,2.592751,,1,,Europe/Paris,,OIF, +OIF:SA:27:306,1,"Henri Wallon",48.524425,2.643769,,1,,Europe/Paris,,OIF, +OIF:SA:27:308,1,"Route de Montereau",48.540314,2.677151,,1,,Europe/Paris,,OIF, +OIF:SA:27:31,1,"Bir Hakeim",48.547137,2.639611,,1,,Europe/Paris,,OIF, +OIF:SA:27:315,1,"Saint-Just Clemenceau",48.534086,2.676763,,1,,Europe/Paris,,OIF, +OIF:SA:27:319,1,"Mont aux Lièvres",48.522082,2.603975,,1,,Europe/Paris,,OIF, +OIF:SA:27:321,1,"Place de Verdun",48.520349,2.611261,,1,,Europe/Paris,,OIF, +OIF:SA:27:323,1,"Les Uzelles",48.528362,2.62301,,1,,Europe/Paris,,OIF, +OIF:SA:27:33,1,"Le Bœuf",48.503163,2.635856,,1,,Europe/Paris,,OIF, +OIF:SA:27:331,1,"Henri Guy",48.561342,2.679917,,1,,Europe/Paris,,OIF, +OIF:SA:27:333,1,"Bertagnes",48.55831,2.68009,,1,,Europe/Paris,,OIF, +OIF:SA:27:335,1,"Groupe Scolaire C. Fabrici",48.553557,2.678362,,1,,Europe/Paris,,OIF, +OIF:SA:27:338,1,"Place",48.503436,2.56333,,1,,Europe/Paris,,OIF, +OIF:SA:27:339,1,"Petit Clos",48.506498,2.565487,,1,,Europe/Paris,,OIF, +OIF:SA:27:34,1,"Église",48.52676,2.587881,,1,,Europe/Paris,,OIF, +OIF:SA:27:341,1,"Rue de Faronville",48.501818,2.565515,,1,,Europe/Paris,,OIF, +OIF:SA:27:342,1,"Valbois",48.522199,2.570681,,1,,Europe/Paris,,OIF, +OIF:SA:27:343,1,"Donjon",48.526831,2.571504,,1,,Europe/Paris,,OIF, +OIF:SA:27:345,1,"Pré de l'Étang",48.530678,2.564873,,1,,Europe/Paris,,OIF, +OIF:SA:27:346,1,"Rives de Seine",48.529886,2.557966,,1,,Europe/Paris,,OIF, +OIF:SA:27:347,1,"Bel Air",48.5284,2.570957,,1,,Europe/Paris,,OIF, +OIF:SA:27:348,1,"Croix Blanche",48.543838,2.64081,,1,,Europe/Paris,,OIF, +OIF:SA:27:350,1,"La Chesnaie",48.552446,2.557745,,1,,Europe/Paris,,OIF, +OIF:SA:27:351,1,"Station Service",48.553297,2.547662,,1,,Europe/Paris,,OIF, +OIF:SA:27:352,1,"Montesson",48.558495,2.547884,,1,,Europe/Paris,,OIF, +OIF:SA:27:353,1,"E. Paladilhe",48.560234,2.550541,,1,,Europe/Paris,,OIF, +OIF:SA:27:354,1,"Église",48.557739,2.551291,,1,,Europe/Paris,,OIF, +OIF:SA:27:355,1,"Jobert",48.557322,2.555703,,1,,Europe/Paris,,OIF, +OIF:SA:27:356,1,"Chemin de la Justice",48.555599,2.565663,,1,,Europe/Paris,,OIF, +OIF:SA:27:358,1,"Maison Médicale",48.545147,2.647432,,1,,Europe/Paris,,OIF, +OIF:SA:27:36,1,"Bouillants",48.511495,2.632728,,1,,Europe/Paris,,OIF, +OIF:SA:27:360,1,"CES Jean de la Fonta",48.543954,2.624848,,1,,Europe/Paris,,OIF, +OIF:SA:27:362,1,"Le Larré",48.529825,2.579767,,1,,Europe/Paris,,OIF, +OIF:SA:27:364,1,"Haut de Beaulieu",48.533151,2.573198,,1,,Europe/Paris,,OIF, +OIF:SA:27:366,1,"Base de Loisirs",48.536172,2.561584,,1,,Europe/Paris,,OIF, +OIF:SA:27:37,1,"Branly",48.551129,2.661984,,1,,Europe/Paris,,OIF, +OIF:SA:27:370,1,"Saint-Assise",48.541074,2.551552,,1,,Europe/Paris,,OIF, +OIF:SA:27:372,1,"Saint-Leu",48.554377,2.583973,,1,,Europe/Paris,,OIF, +OIF:SA:27:374,1,"Collège du Grand Parc",48.559183,2.594898,,1,,Europe/Paris,,OIF, +OIF:SA:27:378,1,"Rue de la Noue",48.525671,2.678986,,1,,Europe/Paris,,OIF, +OIF:SA:27:379,1,"Rue des Vignes",48.518972,2.678927,,1,,Europe/Paris,,OIF, +OIF:SA:27:383,1,"Quai Joffre",48.532148,2.66498,,1,,Europe/Paris,,OIF, +OIF:SA:27:39,1,"Bréau",48.542662,2.629997,,1,,Europe/Paris,,OIF, +OIF:SA:27:391,1,"Europe",48.556351,2.639397,,1,,Europe/Paris,,OIF, +OIF:SA:27:4,1,"14 Juillet",48.531028,2.67275,,1,,Europe/Paris,,OIF, +OIF:SA:27:405,1,"Montereau",48.591398,2.669094,,1,,Europe/Paris,,OIF, +OIF:SA:27:407,1,"École J. Auriol",48.595404,2.681446,,1,,Europe/Paris,,OIF, +OIF:SA:27:408,1,"Aubigny",48.597038,2.685968,,1,,Europe/Paris,,OIF, +OIF:SA:27:409,1,"École E. Piot",48.581902,2.708714,,1,,Europe/Paris,,OIF, +OIF:SA:27:41,1,"Gendarmerie Briand",48.544926,2.650476,,1,,Europe/Paris,,OIF, +OIF:SA:27:410,1,"RN36",48.58285,2.714097,,1,,Europe/Paris,,OIF, +OIF:SA:27:42,1,"Pierre Brossolette",48.545066,2.676259,,1,,Europe/Paris,,OIF, +OIF:SA:27:424,1,"Espace Saint-Exupéry",48.566403,2.678589,,1,,Europe/Paris,,OIF, +OIF:SA:27:43,1,"Calmette",48.5498,2.645578,,1,,Europe/Paris,,OIF, +OIF:SA:27:432,1,"Grouette",48.52471,2.696836,,1,,Europe/Paris,,OIF, +OIF:SA:27:440,1,"Carré Trait d'Union",48.615093,2.54479,,1,,Europe/Paris,,OIF, +OIF:SA:27:442,1,"Nicolas Guiard",48.601102,2.561737,,1,,Europe/Paris,,OIF, +OIF:SA:27:444,1,"Boissenard - la Haie",48.586305,2.59404,,1,,Europe/Paris,,OIF, +OIF:SA:27:447,1,"École Jean Rostand",48.568643,2.619754,,1,,Europe/Paris,,OIF, +OIF:SA:27:449,1,"Sénart Citoyenneté",48.621259,2.540892,,1,,Europe/Paris,,OIF, +OIF:SA:27:45,1,"Carmes",48.548334,2.670801,,1,,Europe/Paris,,OIF, +OIF:SA:27:451,1,"Nandy Roseraie",48.586848,2.56615,,1,,Europe/Paris,,OIF, +OIF:SA:27:453,1,"Olaf Palme",48.584008,2.580616,,1,,Europe/Paris,,OIF, +OIF:SA:27:458,1,"Claude Bernard",48.522971,2.666977,,1,,Europe/Paris,,OIF, +OIF:SA:27:459,1,"Patton",48.551596,2.644675,,1,,Europe/Paris,,OIF, +OIF:SA:27:460,1,"Camping",48.525586,2.669254,,1,,Europe/Paris,,OIF, +OIF:SA:27:461,1,"E. Trelat",48.552335,2.681123,,1,,Europe/Paris,,OIF, +OIF:SA:27:462,1,"Les Ponceaux",48.558018,2.685774,,1,,Europe/Paris,,OIF, +OIF:SA:27:463,1,"Plaine du Moulin à Vent",48.581332,2.605158,,1,,Europe/Paris,,OIF, +OIF:SA:27:466,1,"Cartonnerie",48.517259,2.624777,,1,,Europe/Paris,,OIF, +OIF:SA:27:47,1,"Carnot",48.510702,2.636592,,1,,Europe/Paris,,OIF, +OIF:SA:27:471,1,"Curie Foch",48.531529,2.685795,,1,,Europe/Paris,,OIF, +OIF:SA:27:473,1,"Curie Pascal",48.531315,2.690168,,1,,Europe/Paris,,OIF, +OIF:SA:27:479,1,"Centre Commercial",48.554984,2.634382,,1,,Europe/Paris,,OIF, +OIF:SA:27:48,1,"René Cassin",48.550419,2.672154,,1,,Europe/Paris,,OIF, +OIF:SA:27:5,1,"18 Juin",48.541403,2.6408,,1,,Europe/Paris,,OIF, +OIF:SA:27:50,1,"Champ de Foire",48.55668,2.637425,,1,,Europe/Paris,,OIF, +OIF:SA:27:51,1,"Centre Commercial de l'Almont",48.542749,2.678565,,1,,Europe/Paris,,OIF, +OIF:SA:27:518,1,"H.Berlioz",48.518616,2.638126,,1,,Europe/Paris,,OIF, +OIF:SA:27:520,1,"Centre Commercial de Rubelles",48.553579,2.671426,,1,,Europe/Paris,,OIF, +OIF:SA:27:53,1,"Centre Commercial des Mézereaux",48.549462,2.668726,,1,,Europe/Paris,,OIF, +OIF:SA:27:55,1,"Meunier",48.554032,2.673825,,1,,Europe/Paris,,OIF, +OIF:SA:27:57,1,"Centre Administratif",48.515491,2.633336,,1,,Europe/Paris,,OIF, +OIF:SA:27:59,1,"Mare aux Champs",48.529981,2.678444,,1,,Europe/Paris,,OIF, +OIF:SA:27:60,1,"Chamlys",48.50836,2.60833,,1,,Europe/Paris,,OIF, +OIF:SA:27:602,1,"Thiers Pouillot",48.531047,2.655444,,1,,Europe/Paris,,OIF, +OIF:SA:27:62,1,"Charmettes",48.539514,2.646321,,1,,Europe/Paris,,OIF, +OIF:SA:27:620,1,"François Villon",48.517432,2.62793,,1,,Europe/Paris,,OIF, +OIF:SA:27:623,1,"Konrad Adenauer",48.563537,2.631113,,1,,Europe/Paris,,OIF, +OIF:SA:27:625,1,"Centre Commercial Villiers en Bières",48.501063,2.58146,,1,,Europe/Paris,,OIF, +OIF:SA:27:627,1,"Avenue de Fontainebleau",48.528858,2.547598,,1,,Europe/Paris,,OIF, +OIF:SA:27:629,1,"Mairie Beaufils",48.530827,2.544608,,1,,Europe/Paris,,OIF, +OIF:SA:27:631,1,"ZA Bruxelles",48.535277,2.519631,,1,,Europe/Paris,,OIF, +OIF:SA:27:633,1,"Grands Cèdres",48.527393,2.515277,,1,,Europe/Paris,,OIF, +OIF:SA:27:634,1,"Hôtel de Ville Florélites",48.534401,2.526085,,1,,Europe/Paris,,OIF, +OIF:SA:27:638,1,"Saussaie",48.534882,2.536864,,1,,Europe/Paris,,OIF, +OIF:SA:27:64,1,"Chaussy",48.532748,2.650469,,1,,Europe/Paris,,OIF, +OIF:SA:27:640,1,"ZA Strasbourg",48.532729,2.515615,,1,,Europe/Paris,,OIF, +OIF:SA:27:642,1,"Croix Blanche",48.520327,2.569107,,1,,Europe/Paris,,OIF, +OIF:SA:27:644,1,"Les Terrasses",48.52395,2.559555,,1,,Europe/Paris,,OIF, +OIF:SA:27:646,1,"Bas Pringy",48.527579,2.551179,,1,,Europe/Paris,,OIF, +OIF:SA:27:648,1,"L'Orme Brisé",48.520715,2.566023,,1,,Europe/Paris,,OIF, +OIF:SA:27:65,1,"Résidence du Château",48.535376,2.674934,,1,,Europe/Paris,,OIF, +OIF:SA:27:650,1,"Jean Ferrat",48.529446,2.55319,,1,,Europe/Paris,,OIF, +OIF:SA:27:67,1,"Les Chaumières",48.56998,2.667783,,1,,Europe/Paris,,OIF, +OIF:SA:27:70,1,"Nouveau Cimetière",48.510679,2.603784,,1,,Europe/Paris,,OIF, +OIF:SA:27:72,1,"Cité Administrative",48.533623,2.654943,,1,,Europe/Paris,,OIF, +OIF:SA:27:75,1,"J.Cocteau",48.515077,2.661536,,1,,Europe/Paris,,OIF, +OIF:SA:27:78,1,"Copernic",48.51811,2.634238,,1,,Europe/Paris,,OIF, +OIF:SA:27:80,1,"Avenue de Corbeil",48.547507,2.648224,,1,,Europe/Paris,,OIF, +OIF:SA:27:82,1,"Cosec",48.5474,2.675126,,1,,Europe/Paris,,OIF, +OIF:SA:27:85,1,"Coubertin",48.519979,2.633966,,1,,Europe/Paris,,OIF, +OIF:SA:27:88,1,"Courtille",48.536692,2.659355,,1,,Europe/Paris,,OIF, +OIF:SA:27:89,1,"Crespy",48.51987,2.685771,,1,,Europe/Paris,,OIF, +OIF:SA:27:92,1,"Castor",48.548785,2.658759,,1,,Europe/Paris,,OIF, +OIF:SA:27:94,1,"Centre Culturel",48.542474,2.660548,,1,,Europe/Paris,,OIF, +OIF:SA:27:97,1,"Curie",48.515242,2.639067,,1,,Europe/Paris,,OIF, +OIF:SA:28:1,1,"Les Plantes",48.433552,2.579306,,1,,Europe/Paris,,OIF, +OIF:SA:28:10,1,"3 Poiriers",48.450877,2.603915,,1,,Europe/Paris,,OIF, +OIF:SA:28:100,1,"Collège International",48.410212,2.692814,,1,,Europe/Paris,,OIF, +OIF:SA:28:101,1,"Capitaine Freedy",48.569619,2.538376,,1,,Europe/Paris,,OIF, +OIF:SA:28:104,1,"Georges Méliès",48.730574,2.667618,,1,,Europe/Paris,,OIF, +OIF:SA:28:119,1,"Grégy Centre",48.666389,2.621298,,1,,Europe/Paris,,OIF, +OIF:SA:28:121,1,"La Guiche",48.570342,2.530915,,1,,Europe/Paris,,OIF, +OIF:SA:28:122,1,"Grandes Haies",48.497195,2.550297,,1,,Europe/Paris,,OIF, +OIF:SA:28:123,1,"Place des 3 Horloges",48.549946,2.6572,,1,,Europe/Paris,,OIF, +OIF:SA:28:135,1,"Jonville",48.521972,2.539667,,1,,Europe/Paris,,OIF, +OIF:SA:28:155,1,"Mairie",48.476405,2.555506,,1,,Europe/Paris,,OIF, +OIF:SA:28:157,1,"Mairie",48.498274,2.543011,,1,,Europe/Paris,,OIF, +OIF:SA:28:158,1,"Mairie",48.448094,2.548982,,1,,Europe/Paris,,OIF, +OIF:SA:28:160,1,"Mairie",48.465775,2.607473,,1,,Europe/Paris,,OIF, +OIF:SA:28:162,1,"Maisonneraie",48.51992,2.551405,,1,,Europe/Paris,,OIF, +OIF:SA:28:163,1,"RN7 - Mamans",48.527083,2.552301,,1,,Europe/Paris,,OIF, +OIF:SA:28:164,1,"Mairie",48.459971,2.529992,,1,,Europe/Paris,,OIF, +OIF:SA:28:170,1,"École Maternelle",48.524316,2.551288,,1,,Europe/Paris,,OIF, +OIF:SA:28:177,1,"Monceau",48.482924,2.520563,,1,,Europe/Paris,,OIF, +OIF:SA:28:179,1,"Montgermont",48.516147,2.544732,,1,,Europe/Paris,,OIF, +OIF:SA:28:180,1,"Montlouis",48.519014,2.554838,,1,,Europe/Paris,,OIF, +OIF:SA:28:185,1,"RN7",48.46823,2.605364,,1,,Europe/Paris,,OIF, +OIF:SA:28:19,1,"Bleuets",48.725825,2.665315,,1,,Europe/Paris,,OIF, +OIF:SA:28:190,1,"Orangerie",48.530357,2.525237,,1,,Europe/Paris,,OIF, +OIF:SA:28:195,1,"Blaise Pascal",48.702064,2.598274,,1,,Europe/Paris,,OIF, +OIF:SA:28:198,1,"Pièce de l'Étang",48.529897,2.534433,,1,,Europe/Paris,,OIF, +OIF:SA:28:20,1,"Brinville",48.504228,2.533524,,1,,Europe/Paris,,OIF, +OIF:SA:28:203,1,"Place",48.414468,2.564511,,1,,Europe/Paris,,OIF, +OIF:SA:28:205,1,"Place",48.494141,2.598273,,1,,Europe/Paris,,OIF, +OIF:SA:28:209,1,"Planches",48.486047,2.535146,,1,,Europe/Paris,,OIF, +OIF:SA:28:211,1,"Place",48.459177,2.537254,,1,,Europe/Paris,,OIF, +OIF:SA:28:215,1,"Plessis",48.655343,2.635215,,1,,Europe/Paris,,OIF, +OIF:SA:28:217,1,"Rue du Port RN7",48.527769,2.550815,,1,,Europe/Paris,,OIF, +OIF:SA:28:220,1,"Place Praslin",48.536901,2.658489,,1,,Europe/Paris,,OIF, +OIF:SA:28:223,1,"Puits Beau",48.557141,2.528361,,1,,Europe/Paris,,OIF, +OIF:SA:28:23,1,"Caporal Petit",48.525981,2.511898,,1,,Europe/Paris,,OIF, +OIF:SA:28:230,1,"La Rionnerie",48.478573,2.505431,,1,,Europe/Paris,,OIF, +OIF:SA:28:232,1,"Rives de Seine",48.529463,2.553332,,1,,Europe/Paris,,OIF, +OIF:SA:28:237,1,"Pâtis",48.456872,2.539198,,1,,Europe/Paris,,OIF, +OIF:SA:28:239,1,"Sablons",48.481345,2.548224,,1,,Europe/Paris,,OIF, +OIF:SA:28:242,1,"Salvaterra",48.46895,2.610754,,1,,Europe/Paris,,OIF, +OIF:SA:28:248,1,"Salle des Fetes",48.523402,2.559431,,1,,Europe/Paris,,OIF, +OIF:SA:28:252,1,"Stade",48.518049,2.559137,,1,,Europe/Paris,,OIF, +OIF:SA:28:256,1,"Temploux",48.553791,2.526345,,1,,Europe/Paris,,OIF, +OIF:SA:28:260,1,"Place",48.54219,2.526309,,1,,Europe/Paris,,OIF, +OIF:SA:28:273,1,"Verdiers",48.524004,2.554778,,1,,Europe/Paris,,OIF, +OIF:SA:28:276,1,"Village",48.519168,2.561598,,1,,Europe/Paris,,OIF, +OIF:SA:28:281,1,"Collège F Villon",48.524563,2.543751,,1,,Europe/Paris,,OIF, +OIF:SA:28:282,1,"Zone Industrielle",48.520462,2.568959,,1,,Europe/Paris,,OIF, +OIF:SA:28:290,1,"Baticop",48.534485,2.531966,,1,,Europe/Paris,,OIF, +OIF:SA:28:292,1,"Fay",48.475364,2.627682,,1,,Europe/Paris,,OIF, +OIF:SA:28:293,1,"Angélus",48.445855,2.606383,,1,,Europe/Paris,,OIF, +OIF:SA:28:294,1,"Cimetière",48.449025,2.619319,,1,,Europe/Paris,,OIF, +OIF:SA:28:295,1,"Miss Greenough",48.445958,2.612302,,1,,Europe/Paris,,OIF, +OIF:SA:28:296,1,"Grande Rue",48.446023,2.601397,,1,,Europe/Paris,,OIF, +OIF:SA:28:297,1,"Plante Rabot",48.442873,2.598983,,1,,Europe/Paris,,OIF, +OIF:SA:28:298,1,"Brulys",48.437529,2.592471,,1,,Europe/Paris,,OIF, +OIF:SA:28:3,1,"Loricard",48.451107,2.548305,,1,,Europe/Paris,,OIF, +OIF:SA:28:300,1,"Les Bouleaux",48.413106,2.741822,,1,,Europe/Paris,,OIF, +OIF:SA:28:302,1,"Piscine",48.5269,2.544179,,1,,Europe/Paris,,OIF, +OIF:SA:28:303,1,"Domaine de Montgermont",48.507164,2.535794,,1,,Europe/Paris,,OIF, +OIF:SA:28:304,1,"Terre aux Moines",48.494526,2.544727,,1,,Europe/Paris,,OIF, +OIF:SA:28:305,1,"Foret",48.442876,2.558034,,1,,Europe/Paris,,OIF, +OIF:SA:28:306,1,"Intersection Barbizon-Arbonne",48.431345,2.58576,,1,,Europe/Paris,,OIF, +OIF:SA:28:308,1,"Chardonnières",48.419987,2.569613,,1,,Europe/Paris,,OIF, +OIF:SA:28:309,1,"La Fourche",48.407983,2.688171,,1,,Europe/Paris,,OIF, +OIF:SA:28:31,1,"Champagne",48.562507,2.528773,,1,,Europe/Paris,,OIF, +OIF:SA:28:311,1,"Collège la Vallée",48.413655,2.732663,,1,,Europe/Paris,,OIF, +OIF:SA:28:312,1,"Les Terrasses",48.419796,2.735182,,1,,Europe/Paris,,OIF, +OIF:SA:28:313,1,"Les Chênes",48.411332,2.740215,,1,,Europe/Paris,,OIF, +OIF:SA:28:314,1,"Mairie RN7",48.530629,2.542726,,1,,Europe/Paris,,OIF, +OIF:SA:28:316,1,"La Foret",48.429758,2.589995,,1,,Europe/Paris,,OIF, +OIF:SA:28:317,1,"Marchepied",48.420985,2.565127,,1,,Europe/Paris,,OIF, +OIF:SA:28:318,1,"Mairie",48.47486,2.496448,,1,,Europe/Paris,,OIF, +OIF:SA:28:319,1,"Bois Beaudoin",48.460891,2.525372,,1,,Europe/Paris,,OIF, +OIF:SA:28:334,1,"Olivieri",48.529574,2.551797,,1,,Europe/Paris,,OIF, +OIF:SA:28:335,1,"Collège de Perthes",48.472471,2.555983,,1,,Europe/Paris,,OIF, +OIF:SA:28:336,1,"Marcel Pagnol",48.727732,2.661703,,1,,Europe/Paris,,OIF, +OIF:SA:28:34,1,"Château",48.652703,2.633205,,1,,Europe/Paris,,OIF, +OIF:SA:28:342,1,"Les Pâtis",48.408313,2.562897,,1,,Europe/Paris,,OIF, +OIF:SA:28:36,1,"Château",48.445019,2.55153,,1,,Europe/Paris,,OIF, +OIF:SA:28:377,1,"Émile Filée",48.525083,2.542074,,1,,Europe/Paris,,OIF, +OIF:SA:28:381,1,"Couperin",48.51851,2.550357,,1,,Europe/Paris,,OIF, +OIF:SA:28:40,1,"Château",48.46525,2.520474,,1,,Europe/Paris,,OIF, +OIF:SA:28:46,1,"La Chesnaie",48.564577,2.543151,,1,,Europe/Paris,,OIF, +OIF:SA:28:55,1,"Centre Commercial",48.501556,2.582483,,1,,Europe/Paris,,OIF, +OIF:SA:28:58,1,"Cornebiche",48.403405,2.560759,,1,,Europe/Paris,,OIF, +OIF:SA:28:59,1,"Cossigny",48.71199,2.681721,,1,,Europe/Paris,,OIF, +OIF:SA:28:595,1,"RN7 la Poste",48.46456,2.607364,,1,,Europe/Paris,,OIF, +OIF:SA:28:6,1,"Agora",48.52715,2.550014,,1,,Europe/Paris,,OIF, +OIF:SA:28:60,1,"Stade de la Faisanderie",48.403525,2.686355,,1,,Europe/Paris,,OIF, +OIF:SA:28:605,1,"E. Einstein",48.523231,2.544436,,1,,Europe/Paris,,OIF, +OIF:SA:28:606,1,"F.Jacob",48.522118,2.543971,,1,,Europe/Paris,,OIF, +OIF:SA:28:607,1,"M.Currie",48.520944,2.541503,,1,,Europe/Paris,,OIF, +OIF:SA:28:608,1,"Ancienne Gare",48.697439,2.614294,,1,,Europe/Paris,,OIF, +OIF:SA:28:61,1,"Coveco",48.523176,2.560269,,1,,Europe/Paris,,OIF, +OIF:SA:28:611,1,"Charles Pathé Zone d'Activités",48.72233,2.653257,,1,,Europe/Paris,,OIF, +OIF:SA:28:639,1,"Mairie Saint-Germain",48.474428,2.509413,,1,,Europe/Paris,,OIF, +OIF:SA:28:640,1,"Sorbiers",48.448265,2.548759,,1,,Europe/Paris,,OIF, +OIF:SA:28:641,1,"Église",48.47376,2.49635,,1,,Europe/Paris,,OIF, +OIF:SA:28:642,1,"Les Ruelles",48.47917,2.555646,,1,,Europe/Paris,,OIF, +OIF:SA:28:65,1,"Cyclopes",48.531671,2.53517,,1,,Europe/Paris,,OIF, +OIF:SA:28:72,1,"École",48.437199,2.56744,,1,,Europe/Paris,,OIF, +OIF:SA:28:74,1,"École",48.474695,2.507703,,1,,Europe/Paris,,OIF, +OIF:SA:28:85,1,"Etrelles",48.494276,2.54386,,1,,Europe/Paris,,OIF, +OIF:SA:28:86,1,"Faisanderie",48.566569,2.529466,,1,,Europe/Paris,,OIF, +OIF:SA:28:87,1,"Fauvette",48.536665,2.532509,,1,,Europe/Paris,,OIF, +OIF:SA:28:89,1,"Fercot",48.557279,2.531828,,1,,Europe/Paris,,OIF, +OIF:SA:28:91,1,"Ferté Alais",48.500435,2.562823,,1,,Europe/Paris,,OIF, +OIF:SA:28:92,1,"Florélites",48.534768,2.526573,,1,,Europe/Paris,,OIF, +OIF:SA:28:96,1,"Fontaine",48.657996,2.631752,,1,,Europe/Paris,,OIF, +OIF:SA:28:98,1,"Forges",48.440515,2.561213,,1,,Europe/Paris,,OIF, +OIF:SA:29:10,1,"Monument aux Morts",48.665402,2.561654,,1,,Europe/Paris,,OIF, +OIF:SA:29:100,1,"Porte de Paris",48.635935,2.545326,,1,,Europe/Paris,,OIF, +OIF:SA:29:105,1,"Les Canaux - Carre Sénart",48.614356,2.545348,,1,,Europe/Paris,,OIF, +OIF:SA:29:107,1,"Le Petit Prince",48.637464,2.55208,,1,,Europe/Paris,,OIF, +OIF:SA:29:108,1,"Saule de la Chasse",48.637471,2.548194,,1,,Europe/Paris,,OIF, +OIF:SA:29:109,1,"Iqbal Masih",48.634441,2.553722,,1,,Europe/Paris,,OIF, +OIF:SA:29:110,1,"Centre de Secours",48.627404,2.575958,,1,,Europe/Paris,,OIF, +OIF:SA:29:112,1,"Tilleuls",48.626119,2.580387,,1,,Europe/Paris,,OIF, +OIF:SA:29:114,1,"Lugny",48.624242,2.581605,,1,,Europe/Paris,,OIF, +OIF:SA:29:116,1,"Les Marronniers",48.621992,2.582842,,1,,Europe/Paris,,OIF, +OIF:SA:29:118,1,"La Ferme",48.621636,2.585762,,1,,Europe/Paris,,OIF, +OIF:SA:29:120,1,"Le Lac",48.621826,2.589464,,1,,Europe/Paris,,OIF, +OIF:SA:29:121,1,"Place de la Fontaine",48.622159,2.593276,,1,,Europe/Paris,,OIF, +OIF:SA:29:124,1,"Changis",48.623419,2.602855,,1,,Europe/Paris,,OIF, +OIF:SA:29:125,1,"Maulois",48.624651,2.602617,,1,,Europe/Paris,,OIF, +OIF:SA:29:126,1,"Saint-Michel",48.625204,2.600505,,1,,Europe/Paris,,OIF, +OIF:SA:29:127,1,"Noyer Perrot",48.62381,2.598633,,1,,Europe/Paris,,OIF, +OIF:SA:29:129,1,"Gymnase",48.624625,2.596122,,1,,Europe/Paris,,OIF, +OIF:SA:29:137,1,"Cité du Parc",48.627425,2.585457,,1,,Europe/Paris,,OIF, +OIF:SA:29:139,1,"Moissy Centre",48.627407,2.589715,,1,,Europe/Paris,,OIF, +OIF:SA:29:141,1,"Moissy Mairie",48.627515,2.593906,,1,,Europe/Paris,,OIF, +OIF:SA:29:143,1,"Gué de Ville",48.628313,2.600921,,1,,Europe/Paris,,OIF, +OIF:SA:29:145,1,"Les Grès",48.628189,2.604344,,1,,Europe/Paris,,OIF, +OIF:SA:29:146,1,"Collège la Boétie",48.630076,2.59242,,1,,Europe/Paris,,OIF, +OIF:SA:29:147,1,"Rouget de Lisle",48.630532,2.589371,,1,,Europe/Paris,,OIF, +OIF:SA:29:148,1,"Condorcet",48.632462,2.586519,,1,,Europe/Paris,,OIF, +OIF:SA:29:149,1,"Jeau de Paume",48.633202,2.589276,,1,,Europe/Paris,,OIF, +OIF:SA:29:15,1,"Boissière",48.66272,2.572674,,1,,Europe/Paris,,OIF, +OIF:SA:29:150,1,"La Constitution",48.63385,2.592873,,1,,Europe/Paris,,OIF, +OIF:SA:29:151,1,"Parc Omnisports",48.631744,2.594218,,1,,Europe/Paris,,OIF, +OIF:SA:29:152,1,"Naples",48.631482,2.584026,,1,,Europe/Paris,,OIF, +OIF:SA:29:154,1,"Busteni",48.631962,2.580326,,1,,Europe/Paris,,OIF, +OIF:SA:29:156,1,"Florence",48.628994,2.583526,,1,,Europe/Paris,,OIF, +OIF:SA:29:158,1,"Europe",48.629004,2.580448,,1,,Europe/Paris,,OIF, +OIF:SA:29:160,1,"Lycée Mare Carre",48.627394,2.578969,,1,,Europe/Paris,,OIF, +OIF:SA:29:162,1,"Château d'Eau B. Delessert",48.624108,2.565719,,1,,Europe/Paris,,OIF, +OIF:SA:29:164,1,"Château d'Eau B. Pascal",48.621569,2.56785,,1,,Europe/Paris,,OIF, +OIF:SA:29:167,1,"Centre Aéronautique",48.604831,2.65321,,1,,Europe/Paris,,OIF, +OIF:SA:29:168,1,"SNECMA Montereau",48.613546,2.653222,,1,,Europe/Paris,,OIF, +OIF:SA:29:169,1,"Réau Église",48.610378,2.622932,,1,,Europe/Paris,,OIF, +OIF:SA:29:17,1,"Marrache",48.661879,2.579645,,1,,Europe/Paris,,OIF, +OIF:SA:29:180,1,"Mairie",48.595295,2.580563,,1,,Europe/Paris,,OIF, +OIF:SA:29:184,1,"Lycée P. Mendès France",48.596788,2.575763,,1,,Europe/Paris,,OIF, +OIF:SA:29:19,1,"J. B. Clément",48.659871,2.578869,,1,,Europe/Paris,,OIF, +OIF:SA:29:190,1,"Paul Verlaine",48.600922,2.578493,,1,,Europe/Paris,,OIF, +OIF:SA:29:191,1,"Boileau",48.599141,2.578993,,1,,Europe/Paris,,OIF, +OIF:SA:29:192,1,"Stade Nautique",48.595638,2.573122,,1,,Europe/Paris,,OIF, +OIF:SA:29:194,1,"Les Îles",48.5957,2.566828,,1,,Europe/Paris,,OIF, +OIF:SA:29:196,1,"Garonne",48.59787,2.566952,,1,,Europe/Paris,,OIF, +OIF:SA:29:198,1,"Chanteraine",48.599916,2.566704,,1,,Europe/Paris,,OIF, +OIF:SA:29:200,1,"Miroir d'Eau",48.603266,2.568162,,1,,Europe/Paris,,OIF, +OIF:SA:29:2002,1,"Université",48.627374,2.561951,,1,,Europe/Paris,,OIF, +OIF:SA:29:2004,1,"Château de la Barrière",48.627342,2.556156,,1,,Europe/Paris,,OIF, +OIF:SA:29:2006,1,"Carre Canal",48.618466,2.542688,,1,,Europe/Paris,,OIF, +OIF:SA:29:2010,1,"Carre des Arts",48.613773,2.53858,,1,,Europe/Paris,,OIF, +OIF:SA:29:2012,1,"Carre Allée Royal",48.614545,2.532965,,1,,Europe/Paris,,OIF, +OIF:SA:29:2014,1,"La Clef de Saint-Pierre",48.614272,2.516212,,1,,Europe/Paris,,OIF, +OIF:SA:29:2016,1,"Le Fresne",48.615453,2.509048,,1,,Europe/Paris,,OIF, +OIF:SA:29:2018,1,"Tour Maury",48.619027,2.510169,,1,,Europe/Paris,,OIF, +OIF:SA:29:202,1,"La Grange",48.605802,2.565273,,1,,Europe/Paris,,OIF, +OIF:SA:29:2020,1,"Les Pres Hauts",48.624818,2.514581,,1,,Europe/Paris,,OIF, +OIF:SA:29:2022,1,"Pointe Ringale",48.629079,2.492496,,1,,Europe/Paris,,OIF, +OIF:SA:29:2024,1,"Zola / Courbet",48.615494,2.469846,,1,,Europe/Paris,,OIF, +OIF:SA:29:204,1,"Les Ormes",48.60656,2.561298,,1,,Europe/Paris,,OIF, +OIF:SA:29:206,1,"Foret de France",48.604946,2.554453,,1,,Europe/Paris,,OIF, +OIF:SA:29:208,1,"Aubépine",48.604611,2.548562,,1,,Europe/Paris,,OIF, +OIF:SA:29:21,1,"Serpentine",48.658504,2.579358,,1,,Europe/Paris,,OIF, +OIF:SA:29:210,1,"La Chesnaie",48.60328,2.54613,,1,,Europe/Paris,,OIF, +OIF:SA:29:212,1,"Réveil Matin",48.60137,2.545865,,1,,Europe/Paris,,OIF, +OIF:SA:29:214,1,"Collège H. Wallon",48.60072,2.555221,,1,,Europe/Paris,,OIF, +OIF:SA:29:216,1,"Les Régalles",48.602904,2.557894,,1,,Europe/Paris,,OIF, +OIF:SA:29:220,1,"Jean Moulin",48.588984,2.580369,,1,,Europe/Paris,,OIF, +OIF:SA:29:221,1,"Résistance",48.588659,2.581099,,1,,Europe/Paris,,OIF, +OIF:SA:29:224,1,"Le Clocher",48.585876,2.58154,,1,,Europe/Paris,,OIF, +OIF:SA:29:226,1,"Collège la Grange du Bois",48.585457,2.582222,,1,,Europe/Paris,,OIF, +OIF:SA:29:228,1,"Victor Schoelcher",48.586412,2.585214,,1,,Europe/Paris,,OIF, +OIF:SA:29:23,1,"Folle Avoine",48.656579,2.579878,,1,,Europe/Paris,,OIF, +OIF:SA:29:230,1,"Droits de l'Homme",48.587644,2.585281,,1,,Europe/Paris,,OIF, +OIF:SA:29:232,1,"Rene Cassin",48.589948,2.583984,,1,,Europe/Paris,,OIF, +OIF:SA:29:234,1,"Jules Vallès",48.593893,2.582363,,1,,Europe/Paris,,OIF, +OIF:SA:29:236,1,"Villebouvet M.D.P.H.",48.595005,2.587674,,1,,Europe/Paris,,OIF, +OIF:SA:29:241,1,"Z.I Savigny Routoires",48.589863,2.591965,,1,,Europe/Paris,,OIF, +OIF:SA:29:248,1,"Centre Commercial Boissénart",48.586275,2.596791,,1,,Europe/Paris,,OIF, +OIF:SA:29:249,1,"Savigny Cimetière",48.578324,2.584132,,1,,Europe/Paris,,OIF, +OIF:SA:29:25,1,"Collège Cités Unies",48.654532,2.576734,,1,,Europe/Paris,,OIF, +OIF:SA:29:251,1,"Place de l'Église",48.575665,2.58351,,1,,Europe/Paris,,OIF, +OIF:SA:29:252,1,"Sidonie Talabot",48.574759,2.5865,,1,,Europe/Paris,,OIF, +OIF:SA:29:254,1,"Fontaine Ronde",48.573307,2.588836,,1,,Europe/Paris,,OIF, +OIF:SA:29:256,1,"Champlatreux",48.571025,2.588392,,1,,Europe/Paris,,OIF, +OIF:SA:29:258,1,"Écomusée",48.574563,2.583451,,1,,Europe/Paris,,OIF, +OIF:SA:29:259,1,"Noisement",48.567398,2.56394,,1,,Europe/Paris,,OIF, +OIF:SA:29:260,1,"Médiathèque",48.581473,2.582901,,1,,Europe/Paris,,OIF, +OIF:SA:29:262,1,"Tournesol",48.588554,2.575556,,1,,Europe/Paris,,OIF, +OIF:SA:29:264,1,"Les Englantiers",48.587553,2.572632,,1,,Europe/Paris,,OIF, +OIF:SA:29:266,1,"Turquoises",48.583191,2.575938,,1,,Europe/Paris,,OIF, +OIF:SA:29:267,1,"Sablons",48.583835,2.572974,,1,,Europe/Paris,,OIF, +OIF:SA:29:268,1,"Faisanderie",48.585093,2.570866,,1,,Europe/Paris,,OIF, +OIF:SA:29:269,1,"Collège R. Buron",48.587882,2.569639,,1,,Europe/Paris,,OIF, +OIF:SA:29:27,1,"Orée du Bois",48.653613,2.573257,,1,,Europe/Paris,,OIF, +OIF:SA:29:271,1,"Pivoines",48.587693,2.567382,,1,,Europe/Paris,,OIF, +OIF:SA:29:273,1,"Villemur",48.585688,2.565686,,1,,Europe/Paris,,OIF, +OIF:SA:29:275,1,"Vénerie",48.58507,2.562059,,1,,Europe/Paris,,OIF, +OIF:SA:29:277,1,"Nandy Mairie",48.581295,2.563797,,1,,Europe/Paris,,OIF, +OIF:SA:29:278,1,"Résidence des Tilleuls",48.578795,2.564694,,1,,Europe/Paris,,OIF, +OIF:SA:29:279,1,"Pavillon Royal",48.580145,2.559104,,1,,Europe/Paris,,OIF, +OIF:SA:29:281,1,"Champignons",48.583115,2.556915,,1,,Europe/Paris,,OIF, +OIF:SA:29:283,1,"Clairière",48.584392,2.559156,,1,,Europe/Paris,,OIF, +OIF:SA:29:285,1,"Rue de Quiers",48.567062,2.606123,,1,,Europe/Paris,,OIF, +OIF:SA:29:287,1,"Gros Caillou",48.566936,2.602214,,1,,Europe/Paris,,OIF, +OIF:SA:29:296,1,"Cesson Mairie",48.563128,2.60254,,1,,Europe/Paris,,OIF, +OIF:SA:29:298,1,"Route de Saint-Leu",48.562587,2.60312,,1,,Europe/Paris,,OIF, +OIF:SA:29:30,1,"Route de Moissy",48.653423,2.569505,,1,,Europe/Paris,,OIF, +OIF:SA:29:302,1,"Les Néfliers",48.556656,2.598397,,1,,Europe/Paris,,OIF, +OIF:SA:29:303,1,"Jasmin",48.552027,2.598063,,1,,Europe/Paris,,OIF, +OIF:SA:29:304,1,"Aubépine",48.548522,2.597409,,1,,Europe/Paris,,OIF, +OIF:SA:29:305,1,"Bergeronnettes",48.548449,2.594078,,1,,Europe/Paris,,OIF, +OIF:SA:29:306,1,"Les Petits Bois",48.551233,2.594985,,1,,Europe/Paris,,OIF, +OIF:SA:29:307,1,"Les Chênes",48.555049,2.593216,,1,,Europe/Paris,,OIF, +OIF:SA:29:308,1,"Bréviande",48.561946,2.610301,,1,,Europe/Paris,,OIF, +OIF:SA:29:310,1,"La Futaie",48.558318,2.612429,,1,,Europe/Paris,,OIF, +OIF:SA:29:312,1,"Les Roches",48.563122,2.613179,,1,,Europe/Paris,,OIF, +OIF:SA:29:314,1,"Vert Saint-Denis Église",48.565152,2.613596,,1,,Europe/Paris,,OIF, +OIF:SA:29:316,1,"Croix Saint-Pierre",48.566221,2.619703,,1,,Europe/Paris,,OIF, +OIF:SA:29:318,1,"Arenas de San Pedro",48.565547,2.621542,,1,,Europe/Paris,,OIF, +OIF:SA:29:320,1,"Vallée de Bailly",48.56318,2.620757,,1,,Europe/Paris,,OIF, +OIF:SA:29:322,1,"Bois Vert",48.563101,2.623634,,1,,Europe/Paris,,OIF, +OIF:SA:29:324,1,"Anjou",48.564187,2.626295,,1,,Europe/Paris,,OIF, +OIF:SA:29:326,1,"Jean Monnet Épinet",48.566885,2.631274,,1,,Europe/Paris,,OIF, +OIF:SA:29:333,1,"Pouilly le Fort",48.584234,2.629841,,1,,Europe/Paris,,OIF, +OIF:SA:29:335,1,"Hautes Billes",48.57138,2.620239,,1,,Europe/Paris,,OIF, +OIF:SA:29:337,1,"Buttes aux Fèves",48.569646,2.61792,,1,,Europe/Paris,,OIF, +OIF:SA:29:339,1,"Les Haies Fleuries",48.568976,2.614036,,1,,Europe/Paris,,OIF, +OIF:SA:29:341,1,"Collège J. Vilard",48.568295,2.611073,,1,,Europe/Paris,,OIF, +OIF:SA:29:343,1,"Lycée S. Delaunay",48.569162,2.609527,,1,,Europe/Paris,,OIF, +OIF:SA:29:344,1,"Clos Guinault",48.61599,2.504215,,1,,Europe/Paris,,OIF, +OIF:SA:29:346,1,"Suzanne Lenglen",48.610975,2.506663,,1,,Europe/Paris,,OIF, +OIF:SA:29:348,1,"Groupe Scolaire Manuréva",48.609095,2.507429,,1,,Europe/Paris,,OIF, +OIF:SA:29:349,1,"Collège C. Claudel",48.613898,2.505767,,1,,Europe/Paris,,OIF, +OIF:SA:29:350,1,"Château",48.613153,2.501535,,1,,Europe/Paris,,OIF, +OIF:SA:29:352,1,"Simone Signoret",48.613197,2.49754,,1,,Europe/Paris,,OIF, +OIF:SA:29:354,1,"Mairie",48.612594,2.494175,,1,,Europe/Paris,,OIF, +OIF:SA:29:356,1,"Rue Hertz",48.615234,2.491815,,1,,Europe/Paris,,OIF, +OIF:SA:29:358,1,"Général de Gaulle",48.61731,2.498844,,1,,Europe/Paris,,OIF, +OIF:SA:29:36,1,"La Coupole",48.659935,2.565178,,1,,Europe/Paris,,OIF, +OIF:SA:29:360,1,"Mare à Tissier",48.628647,2.516311,,1,,Europe/Paris,,OIF, +OIF:SA:29:368,1,"Mairie",48.63965,2.508119,,1,,Europe/Paris,,OIF, +OIF:SA:29:370,1,"Les Vignes",48.641343,2.503035,,1,,Europe/Paris,,OIF, +OIF:SA:29:372,1,"Le Clos",48.643385,2.50509,,1,,Europe/Paris,,OIF, +OIF:SA:29:374,1,"Le Petit Sénart",48.654537,2.511947,,1,,Europe/Paris,,OIF, +OIF:SA:29:375,1,"Justice",48.642323,2.508061,,1,,Europe/Paris,,OIF, +OIF:SA:29:376,1,"Clos du Roi",48.641849,2.540229,,1,,Europe/Paris,,OIF, +OIF:SA:29:378,1,"ZAE Robert Schuman",48.643051,2.542011,,1,,Europe/Paris,,OIF, +OIF:SA:29:38,1,"Place de la Libération",48.659385,2.568188,,1,,Europe/Paris,,OIF, +OIF:SA:29:380,1,"Rochefort",48.61794,2.48966,,1,,Europe/Paris,,OIF, +OIF:SA:29:382,1,"Centre Commercial",48.619499,2.492187,,1,,Europe/Paris,,OIF, +OIF:SA:29:384,1,"Champ Clair",48.618113,2.496372,,1,,Europe/Paris,,OIF, +OIF:SA:29:386,1,"Collège Voisenon",48.567808,2.661626,,1,,Europe/Paris,,OIF, +OIF:SA:29:395,1,"Despatys",48.542809,2.657822,,1,,Europe/Paris,,OIF, +OIF:SA:29:40,1,"Tour d'Aleron",48.65993,2.572322,,1,,Europe/Paris,,OIF, +OIF:SA:29:406,1,"SNECMA / Gare Routière",48.61324,2.446537,,1,,Europe/Paris,,OIF, +OIF:SA:29:410,1,"ZI les Tarterets",48.619754,2.46739,,1,,Europe/Paris,,OIF, +OIF:SA:29:412,1,"Temps des Cerises",48.618691,2.447179,,1,,Europe/Paris,,OIF, +OIF:SA:29:417,1,"École des Mines",48.611024,2.441516,,1,,Europe/Paris,,OIF, +OIF:SA:29:42,1,"Abreuvoir",48.659896,2.57585,,1,,Europe/Paris,,OIF, +OIF:SA:29:421,1,"8 Mai 1945",48.727639,2.274471,,1,,Europe/Paris,,OIF, +OIF:SA:29:423,1,"Avenue de l'Europe / Centre Commercial",48.726951,2.277323,,1,,Europe/Paris,,OIF, +OIF:SA:29:427,1,"Rue du Val d'Or",48.859286,2.216733,,1,,Europe/Paris,,OIF, +OIF:SA:29:429,1,"Marché",48.844429,2.210209,,1,,Europe/Paris,,OIF, +OIF:SA:29:44,1,"Batelière",48.664331,2.566928,,1,,Europe/Paris,,OIF, +OIF:SA:29:45,1,"Collège les Aulnes",48.660452,2.562358,,1,,Europe/Paris,,OIF, +OIF:SA:29:455,1,"Michel Ange / Varize",48.840658,2.258416,,1,,Europe/Paris,,OIF, +OIF:SA:29:456,1,"Versailles / Exelmans",48.840769,2.265073,,1,,Europe/Paris,,OIF, +OIF:SA:29:46,1,"Paloisel",48.661142,2.563406,,1,,Europe/Paris,,OIF, +OIF:SA:29:49,1,"Jules Ferry",48.662434,2.562306,,1,,Europe/Paris,,OIF, +OIF:SA:29:496,1,"Charles de Gaulle",48.699323,2.2984,,1,,Europe/Paris,,OIF, +OIF:SA:29:497,1,"Place Charles Steber",48.697669,2.29364,,1,,Europe/Paris,,OIF, +OIF:SA:29:498,1,"Rue des Chèvres",48.604721,2.49668,,1,,Europe/Paris,,OIF, +OIF:SA:29:50,1,"Brandons",48.664867,2.559114,,1,,Europe/Paris,,OIF, +OIF:SA:29:500,1,"Réservoir",48.601081,2.497948,,1,,Europe/Paris,,OIF, +OIF:SA:29:502,1,"Église",48.599653,2.49257,,1,,Europe/Paris,,OIF, +OIF:SA:29:503,1,"Mairie",48.596331,2.492866,,1,,Europe/Paris,,OIF, +OIF:SA:29:504,1,"Port aux Sablons",48.591862,2.491112,,1,,Europe/Paris,,OIF, +OIF:SA:29:505,1,"Route de Morsang",48.586751,2.489023,,1,,Europe/Paris,,OIF, +OIF:SA:29:507,1,"Hameau de Seine",48.583278,2.488974,,1,,Europe/Paris,,OIF, +OIF:SA:29:509,1,"Rue du Stade",48.591024,2.49455,,1,,Europe/Paris,,OIF, +OIF:SA:29:51,1,"Gambetta",48.661317,2.556595,,1,,Europe/Paris,,OIF, +OIF:SA:29:510,1,"Place de la Résistance",48.590153,2.497549,,1,,Europe/Paris,,OIF, +OIF:SA:29:511,1,"Villededon",48.591459,2.500534,,1,,Europe/Paris,,OIF, +OIF:SA:29:512,1,"Les Brosses",48.596552,2.499751,,1,,Europe/Paris,,OIF, +OIF:SA:29:513,1,"Compagnie des Eaux",48.574967,2.49062,,1,,Europe/Paris,,OIF, +OIF:SA:29:515,1,"Mairie",48.571133,2.493353,,1,,Europe/Paris,,OIF, +OIF:SA:29:53,1,"Lycée Galilée",48.658119,2.558013,,1,,Europe/Paris,,OIF, +OIF:SA:29:533,1,"Moulin à Vent",48.628385,2.552449,,1,,Europe/Paris,,OIF, +OIF:SA:29:534,1,"Rougeau",48.601396,2.570404,,1,,Europe/Paris,,OIF, +OIF:SA:29:536,1,"Cévennes",48.604743,2.564258,,1,,Europe/Paris,,OIF, +OIF:SA:29:54,1,"Ormeau / Réaumur",48.655116,2.5607,,1,,Europe/Paris,,OIF, +OIF:SA:29:540,1,"Collège des Maillettes",48.623214,2.589769,,1,,Europe/Paris,,OIF, +OIF:SA:29:545,1,"Haiettes E. Triolet",48.603451,2.577007,,1,,Europe/Paris,,OIF, +OIF:SA:29:547,1,"Sciences et Techniques",48.605584,2.573134,,1,,Europe/Paris,,OIF, +OIF:SA:29:549,1,"Berthelot",48.604913,2.569328,,1,,Europe/Paris,,OIF, +OIF:SA:29:557,1,"Jardins de la Merridienne",48.635044,2.558213,,1,,Europe/Paris,,OIF, +OIF:SA:29:56,1,"Ormeau / Monge",48.653407,2.561412,,1,,Europe/Paris,,OIF, +OIF:SA:29:560,1,"Athènes",48.632532,2.576355,,1,,Europe/Paris,,OIF, +OIF:SA:29:564,1,"Chanteloup Manet",48.641205,2.579494,,1,,Europe/Paris,,OIF, +OIF:SA:29:565,1,"Porte de Moissy",48.629001,2.57781,,1,,Europe/Paris,,OIF, +OIF:SA:29:570,1,"ZAC de la Couture",48.668715,2.554072,,1,,Europe/Paris,,OIF, +OIF:SA:29:572,1,"Varennes",48.666664,2.552425,,1,,Europe/Paris,,OIF, +OIF:SA:29:574,1,"Hottinger",48.665318,2.548558,,1,,Europe/Paris,,OIF, +OIF:SA:29:575,1,"Anatole France",48.66143,2.546385,,1,,Europe/Paris,,OIF, +OIF:SA:29:576,1,"Molière",48.664452,2.545217,,1,,Europe/Paris,,OIF, +OIF:SA:29:577,1,"Victor Hugo",48.666681,2.545755,,1,,Europe/Paris,,OIF, +OIF:SA:29:578,1,"Rosso",48.630281,2.575727,,1,,Europe/Paris,,OIF, +OIF:SA:29:58,1,"Ormeau Salle des Fetes",48.652035,2.562057,,1,,Europe/Paris,,OIF, +OIF:SA:29:580,1,"Château d'Eau C.Bernard",48.617877,2.570885,,1,,Europe/Paris,,OIF, +OIF:SA:29:581,1,"Louise Michel",48.662529,2.55985,,1,,Europe/Paris,,OIF, +OIF:SA:29:582,1,"Carre Citoyenneté",48.618496,2.542633,,1,,Europe/Paris,,OIF, +OIF:SA:29:585,1,"Montdauphin",48.56875,2.599108,,1,,Europe/Paris,,OIF, +OIF:SA:29:587,1,"Rose des Vents",48.571826,2.602273,,1,,Europe/Paris,,OIF, +OIF:SA:29:589,1,"Alizés",48.571432,2.605529,,1,,Europe/Paris,,OIF, +OIF:SA:29:59,1,"Parisud Maurice Faure",48.648467,2.554228,,1,,Europe/Paris,,OIF, +OIF:SA:29:595,1,"Lachenal",48.609728,2.511271,,1,,Europe/Paris,,OIF, +OIF:SA:29:597,1,"Fernand Sastre",48.60696,2.510597,,1,,Europe/Paris,,OIF, +OIF:SA:29:599,1,"Pépinière",48.646857,2.510878,,1,,Europe/Paris,,OIF, +OIF:SA:29:6,1,"Marché",48.666248,2.552453,,1,,Europe/Paris,,OIF, +OIF:SA:29:602,1,"Olof Palme",48.584013,2.580725,,1,,Europe/Paris,,OIF, +OIF:SA:29:607,1,"Quatre Chemins",48.627263,2.556424,,1,,Europe/Paris,,OIF, +OIF:SA:29:61,1,"Parisud Borne Blanche",48.653061,2.551724,,1,,Europe/Paris,,OIF, +OIF:SA:29:614,1,"Fosses Neufs",48.635462,2.506692,,1,,Europe/Paris,,OIF, +OIF:SA:29:615,1,"Chanteloup Matisse",48.641892,2.581844,,1,,Europe/Paris,,OIF, +OIF:SA:29:616,1,"Cézanne",48.64196,2.579376,,1,,Europe/Paris,,OIF, +OIF:SA:29:618,1,"Boissénart / Commerce",48.585738,2.6017,,1,,Europe/Paris,,OIF, +OIF:SA:29:620,1,"Boissénart / Maisonément",48.584848,2.605896,,1,,Europe/Paris,,OIF, +OIF:SA:29:622,1,"Tramontane",48.576514,2.602209,,1,,Europe/Paris,,OIF, +OIF:SA:29:626,1,"Aérodrome de Villaroche",48.614551,2.664047,,1,,Europe/Paris,,OIF, +OIF:SA:29:628,1,"Villaroche Nord",48.617335,2.66502,,1,,Europe/Paris,,OIF, +OIF:SA:29:629,1,"Montgolfière",48.574473,2.602253,,1,,Europe/Paris,,OIF, +OIF:SA:29:63,1,"Parisud Distripôle",48.648671,2.548579,,1,,Europe/Paris,,OIF, +OIF:SA:29:634,1,"Olympe de Gouges",48.631455,2.561907,,1,,Europe/Paris,,OIF, +OIF:SA:29:637,1,"Combs Cimetière",48.664671,2.576795,,1,,Europe/Paris,,OIF, +OIF:SA:29:639,1,"La Plaine",48.574369,2.608531,,1,,Europe/Paris,,OIF, +OIF:SA:29:642,1,"Haut du Breuil",48.663784,2.579912,,1,,Europe/Paris,,OIF, +OIF:SA:29:644,1,"Victor Hugo",48.605958,2.504149,,1,,Europe/Paris,,OIF, +OIF:SA:29:646,1,"Chanteloup Renoir",48.641196,2.579494,,1,,Europe/Paris,,OIF, +OIF:SA:29:648,1,"Centre Pénitentiaire",48.601093,2.593111,,1,,Europe/Paris,,OIF, +OIF:SA:29:651,1,"Ormeau Malraux",48.648275,2.565575,,1,,Europe/Paris,,OIF, +OIF:SA:29:653,1,"Z.I Savigny Industrie",48.596918,2.588673,,1,,Europe/Paris,,OIF, +OIF:SA:29:661,1,"Jean Monnet Anna Lindh",48.57018,2.632749,,1,,Europe/Paris,,OIF, +OIF:SA:29:663,1,"Rond-Point de L'Hôpital",48.618805,2.46391,,1,,Europe/Paris,,OIF, +OIF:SA:29:666,1,"Écopôle Rio",48.635333,2.576076,,1,,Europe/Paris,,OIF, +OIF:SA:29:668,1,"Levant M. Brès",48.616655,2.56589,,1,,Europe/Paris,,OIF, +OIF:SA:29:669,1,"Levant M. Perey",48.620178,2.561811,,1,,Europe/Paris,,OIF, +OIF:SA:29:8,1,"Place de l'An 2000",48.66594,2.557673,,1,,Europe/Paris,,OIF, +OIF:SA:29:82,1,"Grands Champs",48.627597,2.550757,,1,,Europe/Paris,,OIF, +OIF:SA:29:84,1,"Collège Saint-Louis",48.629346,2.547503,,1,,Europe/Paris,,OIF, +OIF:SA:29:86,1,"Place des Chartreux",48.631526,2.544915,,1,,Europe/Paris,,OIF, +OIF:SA:29:88,1,"Jules Ferry",48.632212,2.548437,,1,,Europe/Paris,,OIF, +OIF:SA:29:89,1,"Place du Colombier",48.633213,2.551913,,1,,Europe/Paris,,OIF, +OIF:SA:29:90,1,"Collège de la Pyramide",48.635717,2.548655,,1,,Europe/Paris,,OIF, +OIF:SA:29:9030,1,"Collège la Tuilerie",48.618884,2.492903,,1,,Europe/Paris,,OIF, +OIF:SA:29:9036,1,"Parc Église",48.633123,2.554462,,1,,Europe/Paris,,OIF, +OIF:SA:29:9040,1,"Bois du Bray",48.630046,2.558118,,1,,Europe/Paris,,OIF, +OIF:SA:29:9044,1,"Cœur de Bourg",48.638212,2.510207,,1,,Europe/Paris,,OIF, +OIF:SA:29:9052,1,"Château du Jard",48.570928,2.661402,,1,,Europe/Paris,,OIF, +OIF:SA:29:9056,1,"Arvigny",48.618319,2.581163,,1,,Europe/Paris,,OIF, +OIF:SA:29:92,1,"Pépinière",48.638845,2.543751,,1,,Europe/Paris,,OIF, +OIF:SA:29:94,1,"Parisud Espagne",48.642925,2.547077,,1,,Europe/Paris,,OIF, +OIF:SA:29:96,1,"Parisud Italie",48.642794,2.552414,,1,,Europe/Paris,,OIF, +OIF:SA:29:98,1,"Parisud J. Monnet",48.643479,2.556574,,1,,Europe/Paris,,OIF, +OIF:SA:2:1,1,"Voluceau",48.837105,2.104999,,1,,Europe/Paris,,OIF, +OIF:SA:2:10,1,"La Muette",48.831806,2.116499,,1,,Europe/Paris,,OIF, +OIF:SA:2:100,1,"Poste de Garches",48.844241,2.18558,,1,,Europe/Paris,,OIF, +OIF:SA:2:1000,1,"Échangeur",48.77964,2.168913,,1,,Europe/Paris,,OIF, +OIF:SA:2:1001,1,"Pasteur / Curie",48.757288,2.177912,,1,,Europe/Paris,,OIF, +OIF:SA:2:1003,1,"Ampère Curie",48.756855,2.174708,,1,,Europe/Paris,,OIF, +OIF:SA:2:1005,1,"RD 446 HEC",48.756658,2.172194,,1,,Europe/Paris,,OIF, +OIF:SA:2:1007,1,"RD 446 Petit Viltain",48.750183,2.166098,,1,,Europe/Paris,,OIF, +OIF:SA:2:1015,1,"Razel",48.734617,2.165143,,1,,Europe/Paris,,OIF, +OIF:SA:2:1017,1,"Mairie de Saclay",48.730909,2.173906,,1,,Europe/Paris,,OIF, +OIF:SA:2:1019,1,"Martinière",48.729029,2.175287,,1,,Europe/Paris,,OIF, +OIF:SA:2:102,1,"Stand de Tir",48.802403,2.11392,,1,,Europe/Paris,,OIF, +OIF:SA:2:1025,1,"INRA Château",48.765244,2.176565,,1,,Europe/Paris,,OIF, +OIF:SA:2:1028,1,"INRA Grand Laboratoire",48.765484,2.181574,,1,,Europe/Paris,,OIF, +OIF:SA:2:1029,1,"INRA Accueil",48.763972,2.173306,,1,,Europe/Paris,,OIF, +OIF:SA:2:1030,1,"INRA Biotechnologie",48.764689,2.185377,,1,,Europe/Paris,,OIF, +OIF:SA:2:1031,1,"INRA Zone Sud",48.763026,2.185096,,1,,Europe/Paris,,OIF, +OIF:SA:2:1033,1,"Les Loges Église",48.764798,2.140264,,1,,Europe/Paris,,OIF, +OIF:SA:2:1034,1,"Les Haies",48.762546,2.142652,,1,,Europe/Paris,,OIF, +OIF:SA:2:1035,1,"Les Loges Zone d'Activités",48.762601,2.134957,,1,,Europe/Paris,,OIF, +OIF:SA:2:1036,1,"Midori",48.763402,2.147013,,1,,Europe/Paris,,OIF, +OIF:SA:2:1037,1,"Beuvron",48.765352,2.1691,,1,,Europe/Paris,,OIF, +OIF:SA:2:1039,1,"Bauvinon",48.768885,2.172311,,1,,Europe/Paris,,OIF, +OIF:SA:2:1041,1,"Abel Nicolle le Vallon",48.771545,2.172381,,1,,Europe/Paris,,OIF, +OIF:SA:2:1045,1,"Les Metz / la Mare",48.771576,2.167027,,1,,Europe/Paris,,OIF, +OIF:SA:2:1047,1,"Les Metz / Hoche",48.77479,2.167472,,1,,Europe/Paris,,OIF, +OIF:SA:2:1049,1,"Les Metz / Clair Bois",48.777087,2.167675,,1,,Europe/Paris,,OIF, +OIF:SA:2:1052,1,"Petit Robinson",48.779832,2.170644,,1,,Europe/Paris,,OIF, +OIF:SA:2:1055,1,"Collège Saint-Exupéry",48.783313,2.175825,,1,,Europe/Paris,,OIF, +OIF:SA:2:106,1,"La Ménagerie",48.802534,2.09484,,1,,Europe/Paris,,OIF, +OIF:SA:2:1060,1,"Pointe Ouest",48.778131,2.178884,,1,,Europe/Paris,,OIF, +OIF:SA:2:1065,1,"Técomah",48.763762,2.158799,,1,,Europe/Paris,,OIF, +OIF:SA:2:1067,1,"Campus HEC",48.755456,2.170124,,1,,Europe/Paris,,OIF, +OIF:SA:2:1069,1,"Buc Collège Martin Luther King",48.770612,2.121233,,1,,Europe/Paris,,OIF, +OIF:SA:2:1071,1,"Bel Air",48.835065,2.129358,,1,,Europe/Paris,,OIF, +OIF:SA:2:1081,1,"Cisterciens",48.79034,2.147996,,1,,Europe/Paris,,OIF, +OIF:SA:2:1087,1,"Place Laboulaye",48.819038,2.138773,,1,,Europe/Paris,,OIF, +OIF:SA:2:109,1,"Dépôt Phébus",48.801576,2.104638,,1,,Europe/Paris,,OIF, +OIF:SA:2:1105,1,"Picardie",48.814479,2.15721,,1,,Europe/Paris,,OIF, +OIF:SA:2:1109,1,"Centre Commercial Parly 2 - les Comtesses",48.826984,2.119807,,1,,Europe/Paris,,OIF, +OIF:SA:2:111,1,"Avenue des Puits",48.83689,2.145648,,1,,Europe/Paris,,OIF, +OIF:SA:2:1110,1,"Parc de Clagny",48.81297,2.140871,,1,,Europe/Paris,,OIF, +OIF:SA:2:1112,1,"Université",48.810979,2.150624,,1,,Europe/Paris,,OIF, +OIF:SA:2:1113,1,"Vergennes",48.800064,2.137458,,1,,Europe/Paris,,OIF, +OIF:SA:2:1114,1,"Côte de Picardie",48.809747,2.150091,,1,,Europe/Paris,,OIF, +OIF:SA:2:1118,1,"Pradier",48.829559,2.193968,,1,,Europe/Paris,,OIF, +OIF:SA:2:1119,1,"Notre-Dame",48.807524,2.128459,,1,,Europe/Paris,,OIF, +OIF:SA:2:1121,1,"Collège Jean Philippe Rameau",48.802986,2.145585,,1,,Europe/Paris,,OIF, +OIF:SA:2:1131,1,"Pierre Corneille",48.84647,2.137109,,1,,Europe/Paris,,OIF, +OIF:SA:2:115,1,"Villepreux",48.840767,2.146624,,1,,Europe/Paris,,OIF, +OIF:SA:2:116,1,"Foch",48.840923,2.152748,,1,,Europe/Paris,,OIF, +OIF:SA:2:1164,1,"CRC",48.76229,2.169327,,1,,Europe/Paris,,OIF, +OIF:SA:2:118,1,"Jean Oberlé",48.840384,2.149713,,1,,Europe/Paris,,OIF, +OIF:SA:2:119,1,"Place du Général Leclerc",48.844316,2.152729,,1,,Europe/Paris,,OIF, +OIF:SA:2:1201,1,"Les Arcades",48.803871,2.170649,,1,,Europe/Paris,,OIF, +OIF:SA:2:1206,1,"Newton",48.792728,2.046747,,1,,Europe/Paris,,OIF, +OIF:SA:2:1208,1,"Hélène Andrée",48.809053,2.152806,,1,,Europe/Paris,,OIF, +OIF:SA:2:121,1,"Rond-Point de l'Etoile",48.847453,2.153068,,1,,Europe/Paris,,OIF, +OIF:SA:2:1220,1,"Palais des Congrès",48.80144,2.125853,,1,,Europe/Paris,,OIF, +OIF:SA:2:123,1,"Lycée Toulouse Lautrec",48.846847,2.156254,,1,,Europe/Paris,,OIF, +OIF:SA:2:1261,1,"Marché des Deux Frères",48.817154,2.127872,,1,,Europe/Paris,,OIF, +OIF:SA:2:1262,1,"Président Doumer",48.80296,2.165832,,1,,Europe/Paris,,OIF, +OIF:SA:2:1264,1,"Square Lamôme",48.794994,2.156363,,1,,Europe/Paris,,OIF, +OIF:SA:2:127,1,"R. Poincaré",48.843598,2.175288,,1,,Europe/Paris,,OIF, +OIF:SA:2:129,1,"Collège Stade",48.8357,2.146027,,1,,Europe/Paris,,OIF, +OIF:SA:2:131,1,"Collège les Lauriers",48.834151,2.150035,,1,,Europe/Paris,,OIF, +OIF:SA:2:135,1,"Bergson",48.841238,2.181143,,1,,Europe/Paris,,OIF, +OIF:SA:2:138,1,"Soult",48.784349,2.113518,,1,,Europe/Paris,,OIF, +OIF:SA:2:14,1,"Charles Péguy",48.827982,2.121348,,1,,Europe/Paris,,OIF, +OIF:SA:2:140,1,"Caserne des Matelots",48.800815,2.104073,,1,,Europe/Paris,,OIF, +OIF:SA:2:1468,1,"Division Leclerc",48.800509,2.073469,,1,,Europe/Paris,,OIF, +OIF:SA:2:1474,1,"Satory",48.785321,2.123933,,1,,Europe/Paris,,OIF, +OIF:SA:2:1479,1,"Edouard Branly (Pierre Edouard RATP)",48.800735,2.161856,,1,,Europe/Paris,,OIF, +OIF:SA:2:149,1,"Chasse Royale Napoléon III",48.834179,2.14478,,1,,Europe/Paris,,OIF, +OIF:SA:2:151,1,"Martin Luther King",48.826244,2.137377,,1,,Europe/Paris,,OIF, +OIF:SA:2:153,1,"Sainte-Claire",48.823628,2.139511,,1,,Europe/Paris,,OIF, +OIF:SA:2:155,1,"Montespan",48.822386,2.138848,,1,,Europe/Paris,,OIF, +OIF:SA:2:157,1,"Résidence Sans Souci",48.824138,2.143932,,1,,Europe/Paris,,OIF, +OIF:SA:2:158,1,"Progrès",48.824484,2.141168,,1,,Europe/Paris,,OIF, +OIF:SA:2:159,1,"Villa Champ Lagarde",48.800846,2.144121,,1,,Europe/Paris,,OIF, +OIF:SA:2:16,1,"Bagatelle",48.828911,2.125769,,1,,Europe/Paris,,OIF, +OIF:SA:2:160,1,"Normandie",48.821688,2.140648,,1,,Europe/Paris,,OIF, +OIF:SA:2:161,1,"Place de la Brèche",48.825044,2.142687,,1,,Europe/Paris,,OIF, +OIF:SA:2:163,1,"Rond-Point de la Chapelle",48.821826,2.142274,,1,,Europe/Paris,,OIF, +OIF:SA:2:165,1,"Place de la Paix",48.820269,2.141245,,1,,Europe/Paris,,OIF, +OIF:SA:2:167,1,"Maréchal Haig",48.819756,2.145505,,1,,Europe/Paris,,OIF, +OIF:SA:2:169,1,"Jean Jaurès",48.816406,2.145302,,1,,Europe/Paris,,OIF, +OIF:SA:2:171,1,"Pershing",48.818194,2.150276,,1,,Europe/Paris,,OIF, +OIF:SA:2:173,1,"Lemercier",48.815649,2.146454,,1,,Europe/Paris,,OIF, +OIF:SA:2:176,1,"Pershing / Lemercier",48.814764,2.149615,,1,,Europe/Paris,,OIF, +OIF:SA:2:177,1,"Gauthier de Clagny",48.813091,2.154673,,1,,Europe/Paris,,OIF, +OIF:SA:2:179,1,"La Bruyère",48.813633,2.144904,,1,,Europe/Paris,,OIF, +OIF:SA:2:181,1,"Richard Mique",48.812323,2.143643,,1,,Europe/Paris,,OIF, +OIF:SA:2:185,1,"Solférino",48.811199,2.142919,,1,,Europe/Paris,,OIF, +OIF:SA:2:193,1,"La Maye",48.817134,2.136602,,1,,Europe/Paris,,OIF, +OIF:SA:2:195,1,"Provence",48.808372,2.14046,,1,,Europe/Paris,,OIF, +OIF:SA:2:197,1,"États Unis / Université",48.808084,2.144081,,1,,Europe/Paris,,OIF, +OIF:SA:2:199,1,"République / Lesseps",48.806934,2.14716,,1,,Europe/Paris,,OIF, +OIF:SA:2:2,1,"Auguste Brunot",48.837799,2.108046,,1,,Europe/Paris,,OIF, +OIF:SA:2:20,1,"Hôtel de Ville du Chesnay",48.826116,2.125998,,1,,Europe/Paris,,OIF, +OIF:SA:2:203,1,"Antoine Richard",48.808467,2.151958,,1,,Europe/Paris,,OIF, +OIF:SA:2:207,1,"Jules Massenet",48.809324,2.154003,,1,,Europe/Paris,,OIF, +OIF:SA:2:209,1,"Stade de Jussieu",48.80965,2.155573,,1,,Europe/Paris,,OIF, +OIF:SA:2:215,1,"Émile Cousin",48.808755,2.158005,,1,,Europe/Paris,,OIF, +OIF:SA:2:217,1,"Petits Bois",48.808016,2.159689,,1,,Europe/Paris,,OIF, +OIF:SA:2:219,1,"Grand Siècle",48.803911,2.15511,,1,,Europe/Paris,,OIF, +OIF:SA:2:22,1,"Petit Beauregard",48.83567,2.123216,,1,,Europe/Paris,,OIF, +OIF:SA:2:221,1,"Vauban",48.802211,2.151837,,1,,Europe/Paris,,OIF, +OIF:SA:2:223,1,"Saint-Charles",48.802018,2.148672,,1,,Europe/Paris,,OIF, +OIF:SA:2:225,1,"Saint-Symphorien",48.805043,2.146412,,1,,Europe/Paris,,OIF, +OIF:SA:2:229,1,"Montreuil",48.804923,2.144711,,1,,Europe/Paris,,OIF, +OIF:SA:2:231,1,"Artois",48.803871,2.144171,,1,,Europe/Paris,,OIF, +OIF:SA:2:233,1,"Alexandre 1er",48.805645,2.14103,,1,,Europe/Paris,,OIF, +OIF:SA:2:235,1,"Lycée Hoche",48.805351,2.136791,,1,,Europe/Paris,,OIF, +OIF:SA:2:237,1,"Prés aux Bois",48.802128,2.159192,,1,,Europe/Paris,,OIF, +OIF:SA:2:239,1,"Résidence la Forêt",48.814959,2.150621,,1,,Europe/Paris,,OIF, +OIF:SA:2:240,1,"Boulevard de Jardy",48.83315,2.153374,,1,,Europe/Paris,,OIF, +OIF:SA:2:241,1,"Jules Verne",48.835458,2.133684,,1,,Europe/Paris,,OIF, +OIF:SA:2:246,1,"Fourrière Municipale",48.79758,2.102149,,1,,Europe/Paris,,OIF, +OIF:SA:2:247,1,"Dépôt de Versailles",48.80088,2.109529,,1,,Europe/Paris,,OIF, +OIF:SA:2:248,1,"L'Orangerie",48.800664,2.120761,,1,,Europe/Paris,,OIF, +OIF:SA:2:254,1,"Tournelles",48.798099,2.127088,,1,,Europe/Paris,,OIF, +OIF:SA:2:256,1,"Noailles",48.799126,2.133685,,1,,Europe/Paris,,OIF, +OIF:SA:2:264,1,"Bourdonnais",48.795971,2.12561,,1,,Europe/Paris,,OIF, +OIF:SA:2:266,1,"Evêché",48.794517,2.12465,,1,,Europe/Paris,,OIF, +OIF:SA:2:269,1,"Borgnis / Desbordes",48.794915,2.123479,,1,,Europe/Paris,,OIF, +OIF:SA:2:270,1,"Lycée Jules Ferry",48.794963,2.121496,,1,,Europe/Paris,,OIF, +OIF:SA:2:278,1,"Martinière",48.784577,2.117305,,1,,Europe/Paris,,OIF, +OIF:SA:2:28,1,"Les Lycées",48.829581,2.131089,,1,,Europe/Paris,,OIF, +OIF:SA:2:282,1,"Guichard",48.782834,2.120434,,1,,Europe/Paris,,OIF, +OIF:SA:2:30,1,"Lycée Jean Moulin",48.829063,2.133078,,1,,Europe/Paris,,OIF, +OIF:SA:2:306,1,"Providence",48.79505,2.14015,,1,,Europe/Paris,,OIF, +OIF:SA:2:308,1,"Ploix",48.793349,2.143169,,1,,Europe/Paris,,OIF, +OIF:SA:2:310,1,"Albert Sarrault",48.791642,2.146114,,1,,Europe/Paris,,OIF, +OIF:SA:2:314,1,"Lamartine",48.791743,2.150378,,1,,Europe/Paris,,OIF, +OIF:SA:2:316,1,"Moines",48.793563,2.153473,,1,,Europe/Paris,,OIF, +OIF:SA:2:318,1,"Porchefontaine",48.798204,2.161494,,1,,Europe/Paris,,OIF, +OIF:SA:2:32,1,"Odéon - LEP Jean Moulin",48.826714,2.128493,,1,,Europe/Paris,,OIF, +OIF:SA:2:320,1,"Coypel / Champ Lagarde",48.800022,2.141512,,1,,Europe/Paris,,OIF, +OIF:SA:2:323,1,"CPAM Avenue de Paris",48.798098,2.147743,,1,,Europe/Paris,,OIF, +OIF:SA:2:324,1,"Conseil Général",48.800371,2.149147,,1,,Europe/Paris,,OIF, +OIF:SA:2:34,1,"Acacias",48.824963,2.12912,,1,,Europe/Paris,,OIF, +OIF:SA:2:36,1,"Allées du Roy",48.823715,2.117725,,1,,Europe/Paris,,OIF, +OIF:SA:2:38,1,"Stade Michaux",48.820638,2.118534,,1,,Europe/Paris,,OIF, +OIF:SA:2:382,1,"Général Eblé",48.788775,2.117539,,1,,Europe/Paris,,OIF, +OIF:SA:2:399,1,"Centre d'Alimentation de Satory",48.785489,2.110031,,1,,Europe/Paris,,OIF, +OIF:SA:2:414,1,"Gabriel Péri",48.807995,2.166894,,1,,Europe/Paris,,OIF, +OIF:SA:2:415,1,"Zone d'Activités",48.806605,2.163041,,1,,Europe/Paris,,OIF, +OIF:SA:2:417,1,"Chaleil",48.806598,2.161061,,1,,Europe/Paris,,OIF, +OIF:SA:2:42,1,"Redingote",48.822236,2.127262,,1,,Europe/Paris,,OIF, +OIF:SA:2:421,1,"Zone Technique",48.786399,2.106824,,1,,Europe/Paris,,OIF, +OIF:SA:2:425,1,"Rue de Satory",48.799613,2.124564,,1,,Europe/Paris,,OIF, +OIF:SA:2:434,1,"Musée Lambinet",48.809162,2.130435,,1,,Europe/Paris,,OIF, +OIF:SA:2:44,1,"Corneille",48.823003,2.131503,,1,,Europe/Paris,,OIF, +OIF:SA:2:444,1,"Place Louis XIV",48.799313,2.15964,,1,,Europe/Paris,,OIF, +OIF:SA:2:448,1,"Stade de Porchefontaine",48.79388,2.15807,,1,,Europe/Paris,,OIF, +OIF:SA:2:46,1,"Rue des Sports",48.818971,2.121045,,1,,Europe/Paris,,OIF, +OIF:SA:2:471,1,"Allée de Jardy",48.821967,2.146166,,1,,Europe/Paris,,OIF, +OIF:SA:2:475,1,"Haras de Jardy",48.825332,2.151224,,1,,Europe/Paris,,OIF, +OIF:SA:2:477,1,"Résidence les Lauriers",48.834418,2.1542,,1,,Europe/Paris,,OIF, +OIF:SA:2:479,1,"Domaine de la Marche",48.836816,2.155608,,1,,Europe/Paris,,OIF, +OIF:SA:2:484,1,"Alexis Fourcault",48.805249,2.151935,,1,,Europe/Paris,,OIF, +OIF:SA:2:487,1,"Général Mangin",48.813385,2.139107,,1,,Europe/Paris,,OIF, +OIF:SA:2:489,1,"Jean Houdon",48.813566,2.136691,,1,,Europe/Paris,,OIF, +OIF:SA:2:490,1,"Lycée Franco-Allemand",48.770388,2.121513,,1,,Europe/Paris,,OIF, +OIF:SA:2:493,1,"INRA Route de Saint-Cyr",48.801828,2.08715,,1,,Europe/Paris,,OIF, +OIF:SA:2:495,1,"Camping International",48.793938,2.160832,,1,,Europe/Paris,,OIF, +OIF:SA:2:50,1,"La Celle",48.81756,2.125719,,1,,Europe/Paris,,OIF, +OIF:SA:2:505,1,"Edouard Branly",48.80123,2.162453,,1,,Europe/Paris,,OIF, +OIF:SA:2:507,1,"République / États-Unis",48.807467,2.144498,,1,,Europe/Paris,,OIF, +OIF:SA:2:512,1,"Hôpital A. Mignot - les Chênes d'Or",48.830763,2.128375,,1,,Europe/Paris,,OIF, +OIF:SA:2:514,1,"Blériot",48.769201,2.129112,,1,,Europe/Paris,,OIF, +OIF:SA:2:518,1,"Jean Mermoz",48.798535,2.143762,,1,,Europe/Paris,,OIF, +OIF:SA:2:52,1,"Saint-Antoine de Padoue",48.818166,2.130746,,1,,Europe/Paris,,OIF, +OIF:SA:2:524,1,"Saint-Exupéry",48.79615,2.048282,,1,,Europe/Paris,,OIF, +OIF:SA:2:528,1,"Château de la Maye",48.81649,2.141355,,1,,Europe/Paris,,OIF, +OIF:SA:2:532,1,"Place du Marché Notre-Dame",48.8072,2.131667,,1,,Europe/Paris,,OIF, +OIF:SA:2:536,1,"Satory / Parc d'Activités",48.784704,2.096233,,1,,Europe/Paris,,OIF, +OIF:SA:2:566,1,"Claude Debussy",48.808722,2.154304,,1,,Europe/Paris,,OIF, +OIF:SA:2:587,1,"Résidence le Nôtre",48.842057,2.165965,,1,,Europe/Paris,,OIF, +OIF:SA:2:590,1,"Rond-Point du Souvenir Français",48.840186,2.164337,,1,,Europe/Paris,,OIF, +OIF:SA:2:600,1,"Maréchal Moncey",48.7845,2.122304,,1,,Europe/Paris,,OIF, +OIF:SA:2:602,1,"Delpal",48.786955,2.117914,,1,,Europe/Paris,,OIF, +OIF:SA:2:617,1,"Jayat",48.78855,2.125001,,1,,Europe/Paris,,OIF, +OIF:SA:2:621,1,"Les Docks",48.783297,2.117624,,1,,Europe/Paris,,OIF, +OIF:SA:2:691,1,"Victor Duret",48.846447,2.168851,,1,,Europe/Paris,,OIF, +OIF:SA:2:72,1,"De Bange",48.814355,2.136123,,1,,Europe/Paris,,OIF, +OIF:SA:2:74,1,"Beauvau Rémilly",48.811399,2.134903,,1,,Europe/Paris,,OIF, +OIF:SA:2:8,1,"Passy",48.833491,2.118446,,1,,Europe/Paris,,OIF, +OIF:SA:2:911,1,"Château",48.80298,2.127334,,1,,Europe/Paris,,OIF, +OIF:SA:2:92,1,"Préfecture",48.802844,2.130029,,1,,Europe/Paris,,OIF, +OIF:SA:2:931,1,"ZAC Cerf Volant",48.786461,2.132933,,1,,Europe/Paris,,OIF, +OIF:SA:2:94,1,"Préfecture / Mairie",48.801855,2.12945,,1,,Europe/Paris,,OIF, +OIF:SA:2:959,1,"Pont Colbert",48.787909,2.15012,,1,,Europe/Paris,,OIF, +OIF:SA:2:963,1,"Trois Canards",48.769277,2.150112,,1,,Europe/Paris,,OIF, +OIF:SA:2:965,1,"Musée de Jouy",48.768792,2.153697,,1,,Europe/Paris,,OIF, +OIF:SA:2:967,1,"Sainte-Suzanne",48.767236,2.158584,,1,,Europe/Paris,,OIF, +OIF:SA:2:969,1,"Les Tilleuls",48.765209,2.161364,,1,,Europe/Paris,,OIF, +OIF:SA:2:973,1,"Place de la Marne",48.764945,2.167052,,1,,Europe/Paris,,OIF, +OIF:SA:2:975,1,"Montcel",48.76482,2.169476,,1,,Europe/Paris,,OIF, +OIF:SA:2:977,1,"Pétineau",48.763822,2.172001,,1,,Europe/Paris,,OIF, +OIF:SA:2:979,1,"Gymnase Val d'Enfer",48.763161,2.175062,,1,,Europe/Paris,,OIF, +OIF:SA:2:981,1,"Anatole France",48.761497,2.180621,,1,,Europe/Paris,,OIF, +OIF:SA:2:983,1,"Clos Normand",48.758183,2.186218,,1,,Europe/Paris,,OIF, +OIF:SA:2:987,1,"Pré Fleuri",48.750782,2.210298,,1,,Europe/Paris,,OIF, +OIF:SA:2:989,1,"Bellevue",48.738625,2.228137,,1,,Europe/Paris,,OIF, +OIF:SA:2:99,1,"Mairie de Garches",48.842328,2.186362,,1,,Europe/Paris,,OIF, +OIF:SA:2:991,1,"Parc de Diane",48.754497,2.189641,,1,,Europe/Paris,,OIF, +OIF:SA:2:993,1,"Ronsard",48.753509,2.186476,,1,,Europe/Paris,,OIF, +OIF:SA:2:995,1,"Val d'Albian / Villeras",48.755258,2.180279,,1,,Europe/Paris,,OIF, +OIF:SA:2:997,1,"Val d'Albian / Écoles",48.752695,2.182238,,1,,Europe/Paris,,OIF, +OIF:SA:30:1,1,"Mairie",48.188435,2.547784,,1,,Europe/Paris,,OIF, +OIF:SA:30:10,1,"Rue de l'Ecluse",48.237277,2.703378,,1,,Europe/Paris,,OIF, +OIF:SA:30:100,1,"Château d'Eau",48.244815,2.607787,,1,,Europe/Paris,,OIF, +OIF:SA:30:102,1,"Butteau",48.153088,2.661697,,1,,Europe/Paris,,OIF, +OIF:SA:30:104,1,"Chenouteau",48.172104,2.651054,,1,,Europe/Paris,,OIF, +OIF:SA:30:106,1,"Église",48.253181,2.945737,,1,,Europe/Paris,,OIF, +OIF:SA:30:109,1,"Église",48.244713,2.61343,,1,,Europe/Paris,,OIF, +OIF:SA:30:111,1,"Mairie",48.165235,2.658748,,1,,Europe/Paris,,OIF, +OIF:SA:30:112,1,"Trémainville",48.155876,2.632478,,1,,Europe/Paris,,OIF, +OIF:SA:30:119,1,"Verteau",48.245937,2.600631,,1,,Europe/Paris,,OIF, +OIF:SA:30:121,1,"La Boulinière",48.273421,2.741061,,1,,Europe/Paris,,OIF, +OIF:SA:30:123,1,"Château",48.271383,2.737516,,1,,Europe/Paris,,OIF, +OIF:SA:30:124,1,"Le Clos",48.273058,2.739361,,1,,Europe/Paris,,OIF, +OIF:SA:30:125,1,"Liberté",48.271858,2.734045,,1,,Europe/Paris,,OIF, +OIF:SA:30:127,1,"Petit Châtelet",48.270245,2.726888,,1,,Europe/Paris,,OIF, +OIF:SA:30:1296,1,"Collège Vasco",48.279434,2.674307,,1,,Europe/Paris,,OIF, +OIF:SA:30:1301,1,"Diant Mairie",48.281837,2.991422,,1,,Europe/Paris,,OIF, +OIF:SA:30:1329,1,"Ormesson",48.243199,2.652579,,1,,Europe/Paris,,OIF, +OIF:SA:30:1330,1,"Puiselet",48.264653,2.649878,,1,,Europe/Paris,,OIF, +OIF:SA:30:1332,1,"Grand Ceriseaux",48.184965,2.772658,,1,,Europe/Paris,,OIF, +OIF:SA:30:1333,1,"Seineboué",48.143328,2.496078,,1,,Europe/Paris,,OIF, +OIF:SA:30:1334,1,"Baronville",48.143028,2.487982,,1,,Europe/Paris,,OIF, +OIF:SA:30:1335,1,"Centre Beaumont",48.136012,2.475281,,1,,Europe/Paris,,OIF, +OIF:SA:30:1336,1,"Route de Charnoy",48.185281,2.529164,,1,,Europe/Paris,,OIF, +OIF:SA:30:1337,1,"Laveaux",48.226855,2.659166,,1,,Europe/Paris,,OIF, +OIF:SA:30:1338,1,"Mocpoix",48.159072,2.728112,,1,,Europe/Paris,,OIF, +OIF:SA:30:1339,1,"Carougie - Praseaux",48.192981,2.534482,,1,,Europe/Paris,,OIF, +OIF:SA:30:1341,1,"Montfort",48.143153,2.695184,,1,,Europe/Paris,,OIF, +OIF:SA:30:1342,1,"Plantagenet",48.145695,2.696075,,1,,Europe/Paris,,OIF, +OIF:SA:30:1343,1,"Abbaye",48.150108,2.708562,,1,,Europe/Paris,,OIF, +OIF:SA:30:1344,1,"Charle de Gaulle",48.143274,2.698383,,1,,Europe/Paris,,OIF, +OIF:SA:30:1345,1,"Foyer Rural",48.148809,2.696661,,1,,Europe/Paris,,OIF, +OIF:SA:30:1346,1,"Varennes sur Seine",48.364137,2.953821,,1,,Europe/Paris,,OIF, +OIF:SA:30:1348,1,"LEP",48.373285,2.927391,,1,,Europe/Paris,,OIF, +OIF:SA:30:135,1,"Église Poste",48.142183,2.778275,,1,,Europe/Paris,,OIF, +OIF:SA:30:1352,1,"Montereau",48.381779,2.954321,,1,,Europe/Paris,,OIF, +OIF:SA:30:137,1,"Saint-Severain",48.140673,2.786216,,1,,Europe/Paris,,OIF, +OIF:SA:30:138,1,"Charmois",48.361098,2.826302,,1,,Europe/Paris,,OIF, +OIF:SA:30:14,1,"Fromonceau",48.240707,2.702056,,1,,Europe/Paris,,OIF, +OIF:SA:30:140,1,"Petit Jardin",48.369628,2.827023,,1,,Europe/Paris,,OIF, +OIF:SA:30:142,1,"La Madeleine",48.368858,2.834693,,1,,Europe/Paris,,OIF, +OIF:SA:30:144,1,"Carrefour Cateline",48.354798,2.821984,,1,,Europe/Paris,,OIF, +OIF:SA:30:146,1,"Ravanne",48.363098,2.826516,,1,,Europe/Paris,,OIF, +OIF:SA:30:148,1,"Avenue de Sens",48.370363,2.828534,,1,,Europe/Paris,,OIF, +OIF:SA:30:150,1,"Villette",48.351147,2.81296,,1,,Europe/Paris,,OIF, +OIF:SA:30:154,1,"Route de Chevry",48.170432,2.872248,,1,,Europe/Paris,,OIF, +OIF:SA:30:156,1,"Rue Edmond Hubert",48.177249,2.864937,,1,,Europe/Paris,,OIF, +OIF:SA:30:158,1,"Croix du Gué",48.334402,2.78626,,1,,Europe/Paris,,OIF, +OIF:SA:30:16,1,"La Garenne",48.240345,2.699785,,1,,Europe/Paris,,OIF, +OIF:SA:30:160,1,"Ecluse",48.334004,2.780775,,1,,Europe/Paris,,OIF, +OIF:SA:30:162,1,"Les Merisiers",48.336274,2.790362,,1,,Europe/Paris,,OIF, +OIF:SA:30:164,1,"Petit Bagneaux",48.23197,2.688467,,1,,Europe/Paris,,OIF, +OIF:SA:30:165,1,"Le Carrouge",48.229763,2.669042,,1,,Europe/Paris,,OIF, +OIF:SA:30:167,1,"Église",48.23193,2.684741,,1,,Europe/Paris,,OIF, +OIF:SA:30:170,1,"Mairie",48.230693,2.674,,1,,Europe/Paris,,OIF, +OIF:SA:30:183,1,"Les 4 Routes",48.31977,2.685402,,1,,Europe/Paris,,OIF, +OIF:SA:30:185,1,"Auberge",48.312798,2.683148,,1,,Europe/Paris,,OIF, +OIF:SA:30:186,1,"Centre",48.318069,2.693118,,1,,Europe/Paris,,OIF, +OIF:SA:30:188,1,"Les Fours",48.314937,2.683648,,1,,Europe/Paris,,OIF, +OIF:SA:30:190,1,"Hulay",48.304166,2.680369,,1,,Europe/Paris,,OIF, +OIF:SA:30:192,1,"Groupe Scolaire",48.316879,2.68815,,1,,Europe/Paris,,OIF, +OIF:SA:30:194,1,"Lycée Professionnel Fontaineroux",48.439108,2.801068,,1,,Europe/Paris,,OIF, +OIF:SA:30:196,1,"Mairie",48.202843,2.545939,,1,,Europe/Paris,,OIF, +OIF:SA:30:197,1,"Place du Courtil",48.203723,2.546601,,1,,Europe/Paris,,OIF, +OIF:SA:30:198,1,"Cugny",48.318586,2.76961,,1,,Europe/Paris,,OIF, +OIF:SA:30:20,1,"Glandelles",48.215703,2.714361,,1,,Europe/Paris,,OIF, +OIF:SA:30:200,1,"Les Genevrières",48.318121,2.742329,,1,,Europe/Paris,,OIF, +OIF:SA:30:202,1,"Gratereau",48.326664,2.772144,,1,,Europe/Paris,,OIF, +OIF:SA:30:204,1,"Mairie",48.320893,2.746772,,1,,Europe/Paris,,OIF, +OIF:SA:30:206,1,"La Garenne",48.201243,2.703134,,1,,Europe/Paris,,OIF, +OIF:SA:30:208,1,"Rue du Gatinais",48.210023,2.702037,,1,,Europe/Paris,,OIF, +OIF:SA:30:210,1,"La Groue",48.207966,2.702723,,1,,Europe/Paris,,OIF, +OIF:SA:30:214,1,"Église",48.277847,2.802532,,1,,Europe/Paris,,OIF, +OIF:SA:30:216,1,"Mairie",48.273324,2.811664,,1,,Europe/Paris,,OIF, +OIF:SA:30:218,1,"Scierie",48.273988,2.820775,,1,,Europe/Paris,,OIF, +OIF:SA:30:22,1,"La Glandeliere",48.204783,2.719703,,1,,Europe/Paris,,OIF, +OIF:SA:30:224,1,"Préaux Église",48.223237,2.875054,,1,,Europe/Paris,,OIF, +OIF:SA:30:229,1,"Église",48.188094,2.625446,,1,,Europe/Paris,,OIF, +OIF:SA:30:233,1,"Église",48.350455,2.851212,,1,,Europe/Paris,,OIF, +OIF:SA:30:235,1,"Les Garennes",48.339842,2.730251,,1,,Europe/Paris,,OIF, +OIF:SA:30:237,1,"Roger Genty",48.340707,2.767507,,1,,Europe/Paris,,OIF, +OIF:SA:30:239,1,"Mairie",48.336046,2.743317,,1,,Europe/Paris,,OIF, +OIF:SA:30:24,1,"Mairie",48.231349,2.705618,,1,,Europe/Paris,,OIF, +OIF:SA:30:243,1,"Centre",48.306978,2.707666,,1,,Europe/Paris,,OIF, +OIF:SA:30:245,1,"Le Château",48.299289,2.699493,,1,,Europe/Paris,,OIF, +OIF:SA:30:247,1,"Église",48.143305,2.609542,,1,,Europe/Paris,,OIF, +OIF:SA:30:249,1,"Flora Tristan",48.377684,2.94546,,1,,Europe/Paris,,OIF, +OIF:SA:30:250,1,"Le Nid",48.339139,2.735425,,1,,Europe/Paris,,OIF, +OIF:SA:30:254,1,"André Malraux",48.394551,2.955788,,1,,Europe/Paris,,OIF, +OIF:SA:30:256,1,"La Chênière",48.304859,2.703945,,1,,Europe/Paris,,OIF, +OIF:SA:30:260,1,"Église",48.291443,2.696924,,1,,Europe/Paris,,OIF, +OIF:SA:30:264,1,"Cité Timbert",48.308819,2.711345,,1,,Europe/Paris,,OIF, +OIF:SA:30:267,1,"La Valotte",48.296642,2.697851,,1,,Europe/Paris,,OIF, +OIF:SA:30:269,1,"Aimée Lepercq",48.335181,2.750322,,1,,Europe/Paris,,OIF, +OIF:SA:30:271,1,"Place Parodi",48.342931,2.772641,,1,,Europe/Paris,,OIF, +OIF:SA:30:276,1,"Rogeries",48.371617,2.810578,,1,,Europe/Paris,,OIF, +OIF:SA:30:278,1,"Place Külsheim",48.370008,2.815525,,1,,Europe/Paris,,OIF, +OIF:SA:30:279,1,"Pont. National",48.3737,2.808391,,1,,Europe/Paris,,OIF, +OIF:SA:30:284,1,"Le Bouloy",48.239854,2.827871,,1,,Europe/Paris,,OIF, +OIF:SA:30:286,1,"Charles de Gaulle",48.257009,2.811557,,1,,Europe/Paris,,OIF, +OIF:SA:30:288,1,"Mairie",48.256539,2.817666,,1,,Europe/Paris,,OIF, +OIF:SA:30:290,1,"Le Prieure",48.254028,2.821581,,1,,Europe/Paris,,OIF, +OIF:SA:30:294,1,"Beauregard",48.256268,2.705867,,1,,Europe/Paris,,OIF, +OIF:SA:30:296,1,"Les Chaudins",48.263033,2.707867,,1,,Europe/Paris,,OIF, +OIF:SA:30:3,1,"Place",48.216576,2.606268,,1,,Europe/Paris,,OIF, +OIF:SA:30:30,1,"Jean Gele",48.219923,2.713375,,1,,Europe/Paris,,OIF, +OIF:SA:30:302,1,"Les Doyers",48.255574,2.702294,,1,,Europe/Paris,,OIF, +OIF:SA:30:304,1,"Église",48.267198,2.695894,,1,,Europe/Paris,,OIF, +OIF:SA:30:308,1,"Rue d'Égreville",48.265441,2.715298,,1,,Europe/Paris,,OIF, +OIF:SA:30:31,1,"Petit Bagneaux",48.231932,2.688496,,1,,Europe/Paris,,OIF, +OIF:SA:30:32,1,"Pierre le Sault",48.238616,2.709276,,1,,Europe/Paris,,OIF, +OIF:SA:30:320,1,"Hôpital",48.261612,2.703521,,1,,Europe/Paris,,OIF, +OIF:SA:30:322,1,"Inter Sud",48.253555,2.702314,,1,,Europe/Paris,,OIF, +OIF:SA:30:323,1,"Jean Moulin",48.268325,2.710477,,1,,Europe/Paris,,OIF, +OIF:SA:30:329,1,"Avenue de Lyon",48.257981,2.701027,,1,,Europe/Paris,,OIF, +OIF:SA:30:334,1,"Montgagnant",48.264705,2.702388,,1,,Europe/Paris,,OIF, +OIF:SA:30:338,1,"Route de Moret",48.273144,2.699085,,1,,Europe/Paris,,OIF, +OIF:SA:30:34,1,"Portonville",48.226203,2.712074,,1,,Europe/Paris,,OIF, +OIF:SA:30:344,1,"Pasteur",48.266963,2.691451,,1,,Europe/Paris,,OIF, +OIF:SA:30:35,1,"Les Praillons",48.235122,2.7009,,1,,Europe/Paris,,OIF, +OIF:SA:30:350,1,"Perthuis",48.263602,2.699684,,1,,Europe/Paris,,OIF, +OIF:SA:30:352,1,"Poste",48.266014,2.698953,,1,,Europe/Paris,,OIF, +OIF:SA:30:354,1,"Rocher Vert",48.260771,2.702276,,1,,Europe/Paris,,OIF, +OIF:SA:30:356,1,"Cité Scolaire",48.261361,2.713201,,1,,Europe/Paris,,OIF, +OIF:SA:30:358,1,"Avenue Roux",48.273508,2.690061,,1,,Europe/Paris,,OIF, +OIF:SA:30:361,1,"Mont Saint-Martin",48.271549,2.704655,,1,,Europe/Paris,,OIF, +OIF:SA:30:366,1,"Stalingrad",48.264627,2.709622,,1,,Europe/Paris,,OIF, +OIF:SA:30:368,1,"Victor Hugo",48.26668,2.692978,,1,,Europe/Paris,,OIF, +OIF:SA:30:372,1,"Carrefour le Landy",48.293931,2.778233,,1,,Europe/Paris,,OIF, +OIF:SA:30:374,1,"Centre",48.28374,2.792447,,1,,Europe/Paris,,OIF, +OIF:SA:30:376,1,"Mairie",48.286059,2.787799,,1,,Europe/Paris,,OIF, +OIF:SA:30:378,1,"Les Serres",48.287049,2.786427,,1,,Europe/Paris,,OIF, +OIF:SA:30:380,1,"Rue de la Source",48.297403,2.773034,,1,,Europe/Paris,,OIF, +OIF:SA:30:382,1,"Centre",48.217358,2.561321,,1,,Europe/Paris,,OIF, +OIF:SA:30:387,1,"Transformateur Centre",48.24321,2.652631,,1,,Europe/Paris,,OIF, +OIF:SA:30:389,1,"La Vallée",48.246884,2.654147,,1,,Europe/Paris,,OIF, +OIF:SA:30:391,1,"Gros Ormes",48.242842,2.866546,,1,,Europe/Paris,,OIF, +OIF:SA:30:393,1,"Tesnières",48.249449,2.852772,,1,,Europe/Paris,,OIF, +OIF:SA:30:395,1,"Rue de Bagneaux",48.244582,2.699283,,1,,Europe/Paris,,OIF, +OIF:SA:30:397,1,"Le Grand Bois",48.270732,2.664393,,1,,Europe/Paris,,OIF, +OIF:SA:30:40,1,"Blaise Montesquiou",48.338586,2.69907,,1,,Europe/Paris,,OIF, +OIF:SA:30:401,1,"Canal",48.250599,2.695649,,1,,Europe/Paris,,OIF, +OIF:SA:30:405,1,"Carnot",48.275004,2.684576,,1,,Europe/Paris,,OIF, +OIF:SA:30:408,1,"Chemin Noir",48.244291,2.69741,,1,,Europe/Paris,,OIF, +OIF:SA:30:414,1,"Les Colombes",48.270361,2.682774,,1,,Europe/Paris,,OIF, +OIF:SA:30:416,1,"Centre Commercial",48.271364,2.677723,,1,,Europe/Paris,,OIF, +OIF:SA:30:418,1,"La Demie Lieue",48.278739,2.683287,,1,,Europe/Paris,,OIF, +OIF:SA:30:42,1,"Mairie",48.340579,2.708619,,1,,Europe/Paris,,OIF, +OIF:SA:30:422,1,"Place de l'Europe",48.263245,2.6807,,1,,Europe/Paris,,OIF, +OIF:SA:30:430,1,"Grands Taillis",48.274729,2.670667,,1,,Europe/Paris,,OIF, +OIF:SA:30:434,1,"Guinebert",48.279728,2.677246,,1,,Europe/Paris,,OIF, +OIF:SA:30:436,1,"Longs Réages",48.276688,2.671178,,1,,Europe/Paris,,OIF, +OIF:SA:30:44,1,"Pave du Roy",48.341664,2.692233,,1,,Europe/Paris,,OIF, +OIF:SA:30:442,1,"Maison de Retraite",48.260702,2.69392,,1,,Europe/Paris,,OIF, +OIF:SA:30:444,1,"Les Mazes",48.273973,2.674373,,1,,Europe/Paris,,OIF, +OIF:SA:30:446,1,"Mont Blanc",48.269073,2.672658,,1,,Europe/Paris,,OIF, +OIF:SA:30:448,1,"Moulin Rouge",48.277268,2.689528,,1,,Europe/Paris,,OIF, +OIF:SA:30:449,1,"Chaintreauville Place",48.250124,2.692307,,1,,Europe/Paris,,OIF, +OIF:SA:30:451,1,"Place Saint-Pierre",48.262551,2.693576,,1,,Europe/Paris,,OIF, +OIF:SA:30:454,1,"Rue des Pyrénées",48.264194,2.679077,,1,,Europe/Paris,,OIF, +OIF:SA:30:459,1,"Les Sources",48.261869,2.690198,,1,,Europe/Paris,,OIF, +OIF:SA:30:46,1,"Poste",48.340408,2.718503,,1,,Europe/Paris,,OIF, +OIF:SA:30:461,1,"Pierres Percées",48.246599,2.695211,,1,,Europe/Paris,,OIF, +OIF:SA:30:463,1,"Rosiers",48.22383,2.780435,,1,,Europe/Paris,,OIF, +OIF:SA:30:465,1,"Jean Gele",48.220732,2.713367,,1,,Europe/Paris,,OIF, +OIF:SA:30:466,1,"Ferme Saint-Louis",48.248639,2.770454,,1,,Europe/Paris,,OIF, +OIF:SA:30:470,1,"Rue de la Montagne",48.226828,2.713465,,1,,Europe/Paris,,OIF, +OIF:SA:30:472,1,"Portonville",48.227012,2.712201,,1,,Europe/Paris,,OIF, +OIF:SA:30:475,1,"Centre",48.212572,2.823687,,1,,Europe/Paris,,OIF, +OIF:SA:30:477,1,"Bouchereau",48.221613,2.79583,,1,,Europe/Paris,,OIF, +OIF:SA:30:479,1,"Centre",48.265943,2.899955,,1,,Europe/Paris,,OIF, +OIF:SA:30:481,1,"Cité Bellevue",48.188076,2.739839,,1,,Europe/Paris,,OIF, +OIF:SA:30:482,1,"Bezigny",48.182872,2.704612,,1,,Europe/Paris,,OIF, +OIF:SA:30:484,1,"Rue de Chaintreaux",48.188342,2.753826,,1,,Europe/Paris,,OIF, +OIF:SA:30:485,1,"Collège Foyer",48.178231,2.734238,,1,,Europe/Paris,,OIF, +OIF:SA:30:486,1,"Le Coudray",48.200846,2.739399,,1,,Europe/Paris,,OIF, +OIF:SA:30:487,1,"La Croisière",48.164768,2.756872,,1,,Europe/Paris,,OIF, +OIF:SA:30:495,1,"Lesthumiere",48.190593,2.726734,,1,,Europe/Paris,,OIF, +OIF:SA:30:497,1,"Mairie",48.183289,2.735782,,1,,Europe/Paris,,OIF, +OIF:SA:30:50,1,"Square Thibault",48.346863,2.71598,,1,,Europe/Paris,,OIF, +OIF:SA:30:500,1,"Rue en Pente",48.185707,2.750094,,1,,Europe/Paris,,OIF, +OIF:SA:30:501,1,"Rue des Pins",48.184522,2.740036,,1,,Europe/Paris,,OIF, +OIF:SA:30:502,1,"Place de la République",48.182294,2.731956,,1,,Europe/Paris,,OIF, +OIF:SA:30:503,1,"Le Roulis",48.175828,2.744209,,1,,Europe/Paris,,OIF, +OIF:SA:30:505,1,"Sucrerie",48.180117,2.724135,,1,,Europe/Paris,,OIF, +OIF:SA:30:507,1,"Les Trous Blancs",48.18996,2.755989,,1,,Europe/Paris,,OIF, +OIF:SA:30:519,1,"Pont National",48.373721,2.808517,,1,,Europe/Paris,,OIF, +OIF:SA:30:52,1,"Corbeval",48.206776,2.69196,,1,,Europe/Paris,,OIF, +OIF:SA:30:523,1,"Cimetière",48.303694,2.826548,,1,,Europe/Paris,,OIF, +OIF:SA:30:525,1,"École",48.300434,2.825514,,1,,Europe/Paris,,OIF, +OIF:SA:30:527,1,"Mairie",48.207114,2.940844,,1,,Europe/Paris,,OIF, +OIF:SA:30:529,1,"La Fontaine",48.274057,2.852328,,1,,Europe/Paris,,OIF, +OIF:SA:30:533,1,"La Fondoire",48.329324,2.854222,,1,,Europe/Paris,,OIF, +OIF:SA:30:537,1,"Villemaréchal Mairie",48.267055,2.870864,,1,,Europe/Paris,,OIF, +OIF:SA:30:54,1,"La Cuilliere",48.206632,2.686067,,1,,Europe/Paris,,OIF, +OIF:SA:30:546,1,"Vaucornèille",48.273457,2.962081,,1,,Europe/Paris,,OIF, +OIF:SA:30:56,1,"Mairie",48.195171,2.65797,,1,,Europe/Paris,,OIF, +OIF:SA:30:562,1,"Bois de Dormelles",48.304588,2.89004,,1,,Europe/Paris,,OIF, +OIF:SA:30:564,1,"Bois Huard",48.291845,2.888465,,1,,Europe/Paris,,OIF, +OIF:SA:30:566,1,"Challeau",48.318699,2.879711,,1,,Europe/Paris,,OIF, +OIF:SA:30:568,1,"Église",48.316385,2.901045,,1,,Europe/Paris,,OIF, +OIF:SA:30:570,1,"Les Hôpitaux",48.322607,2.898945,,1,,Europe/Paris,,OIF, +OIF:SA:30:572,1,"Place Saint-Gervais",48.318613,2.89949,,1,,Europe/Paris,,OIF, +OIF:SA:30:577,1,"Sapinière",48.363808,2.840146,,1,,Europe/Paris,,OIF, +OIF:SA:30:58,1,"Quenonville",48.204282,2.668692,,1,,Europe/Paris,,OIF, +OIF:SA:30:582,1,"Georges Clemenceau",48.370026,2.815415,,1,,Europe/Paris,,OIF, +OIF:SA:30:6,1,"Jacques Durant (CES la Vallée)",48.413671,2.73391,,1,,Europe/Paris,,OIF, +OIF:SA:30:60,1,"Thiersanville",48.184142,2.675893,,1,,Europe/Paris,,OIF, +OIF:SA:30:62,1,"Aristide Briand",48.152468,2.832833,,1,,Europe/Paris,,OIF, +OIF:SA:30:64,1,"Les Canivelles",48.146613,2.809022,,1,,Europe/Paris,,OIF, +OIF:SA:30:66,1,"Les Peites Bordes",48.157726,2.826915,,1,,Europe/Paris,,OIF, +OIF:SA:30:663,1,"Église",48.342374,2.894242,,1,,Europe/Paris,,OIF, +OIF:SA:30:667,1,"Boisroux",48.283303,2.866921,,1,,Europe/Paris,,OIF, +OIF:SA:30:669,1,"Le Silo",48.271293,2.872159,,1,,Europe/Paris,,OIF, +OIF:SA:30:671,1,"Le Coudray",48.306053,2.801354,,1,,Europe/Paris,,OIF, +OIF:SA:30:677,1,"Le Luat",48.307986,2.785278,,1,,Europe/Paris,,OIF, +OIF:SA:30:681,1,"Monthmery",48.287882,2.859139,,1,,Europe/Paris,,OIF, +OIF:SA:30:684,1,"Villeron",48.318567,2.784442,,1,,Europe/Paris,,OIF, +OIF:SA:30:687,1,"Les Greves",48.279573,2.680962,,1,,Europe/Paris,,OIF, +OIF:SA:30:688,1,"Prairies",48.282146,2.680642,,1,,Europe/Paris,,OIF, +OIF:SA:30:689,1,"Rue du Château",48.281237,2.677727,,1,,Europe/Paris,,OIF, +OIF:SA:30:69,1,"Bruzelles",48.155774,2.695076,,1,,Europe/Paris,,OIF, +OIF:SA:30:694,1,"L'Étang Sec",48.309567,2.714868,,1,,Europe/Paris,,OIF, +OIF:SA:30:697,1,"Carrefour de l'Europe",48.266869,2.714473,,1,,Europe/Paris,,OIF, +OIF:SA:30:705,1,"Rond-Point Bois Minard",48.279475,2.698729,,1,,Europe/Paris,,OIF, +OIF:SA:30:709,1,"Les Blés d'Or",48.2754,2.705052,,1,,Europe/Paris,,OIF, +OIF:SA:30:71,1,"Chancepoix",48.174184,2.70315,,1,,Europe/Paris,,OIF, +OIF:SA:30:711,1,"Place Verdun",48.148357,2.696174,,1,,Europe/Paris,,OIF, +OIF:SA:30:712,1,"Office du Tourisme",48.186473,2.731517,,1,,Europe/Paris,,OIF, +OIF:SA:30:714,1,"Rue des Guichettes",48.273536,2.706069,,1,,Europe/Paris,,OIF, +OIF:SA:30:720,1,"Jean Cocteau",48.187958,2.736349,,1,,Europe/Paris,,OIF, +OIF:SA:30:722,1,"Joliot Curie",48.189047,2.734858,,1,,Europe/Paris,,OIF, +OIF:SA:30:725,1,"Maison de Retraite",48.180419,2.743901,,1,,Europe/Paris,,OIF, +OIF:SA:30:726,1,"Route d'Egreville",48.180436,2.748197,,1,,Europe/Paris,,OIF, +OIF:SA:30:727,1,"Grès Saint-Martin",48.17596,2.746267,,1,,Europe/Paris,,OIF, +OIF:SA:30:728,1,"Montauban",48.178169,2.748395,,1,,Europe/Paris,,OIF, +OIF:SA:30:729,1,"Petit Ceriseaux",48.181438,2.770793,,1,,Europe/Paris,,OIF, +OIF:SA:30:73,1,"Pont de Dordives",48.147069,2.751725,,1,,Europe/Paris,,OIF, +OIF:SA:30:732,1,"École",48.25559,3.017195,,1,,Europe/Paris,,OIF, +OIF:SA:30:737,1,"Villechasson",48.247309,2.976343,,1,,Europe/Paris,,OIF, +OIF:SA:30:739,1,"Église",48.224903,2.743506,,1,,Europe/Paris,,OIF, +OIF:SA:30:742,1,"La Mie Voie",48.169123,2.716567,,1,,Europe/Paris,,OIF, +OIF:SA:30:743,1,"Néronville Centre",48.147955,2.739505,,1,,Europe/Paris,,OIF, +OIF:SA:30:745,1,"Les Gauthiers",48.146648,2.709269,,1,,Europe/Paris,,OIF, +OIF:SA:30:75,1,"Église",48.233653,2.626234,,1,,Europe/Paris,,OIF, +OIF:SA:30:750,1,"Rue Larchant",48.267987,2.678018,,1,,Europe/Paris,,OIF, +OIF:SA:30:753,1,"Rue de la Vallée",48.215281,2.715024,,1,,Europe/Paris,,OIF, +OIF:SA:30:755,1,"Route de Fontainebleau",48.374184,2.808706,,1,,Europe/Paris,,OIF, +OIF:SA:30:782,1,"Fontaine Seche",48.26627,2.685777,,1,,Europe/Paris,,OIF, +OIF:SA:30:784,1,"Carrefour Market",48.269787,2.675928,,1,,Europe/Paris,,OIF, +OIF:SA:30:786,1,"Pierre et Marie Curie",48.268233,2.706921,,1,,Europe/Paris,,OIF, +OIF:SA:30:788,1,"Piscine Égreville",48.173188,2.872256,,1,,Europe/Paris,,OIF, +OIF:SA:30:79,1,"Heurtebise",48.149734,2.729481,,1,,Europe/Paris,,OIF, +OIF:SA:30:81,1,"Centre",48.183833,2.821854,,1,,Europe/Paris,,OIF, +OIF:SA:30:83,1,"Église",48.199347,2.821096,,1,,Europe/Paris,,OIF, +OIF:SA:30:838,1,"Salle des Fêtes",48.281774,2.698139,,1,,Europe/Paris,,OIF, +OIF:SA:30:842,1,"Bois des Horcées",48.27862,2.701768,,1,,Europe/Paris,,OIF, +OIF:SA:30:85,1,"Le Puy",48.205799,2.781003,,1,,Europe/Paris,,OIF, +OIF:SA:30:862,1,"Avenue du Général de Gaulle",48.266962,2.707929,,1,,Europe/Paris,,OIF, +OIF:SA:30:87,1,"Lagerville",48.178937,2.8304,,1,,Europe/Paris,,OIF, +OIF:SA:30:89,1,"Place du Marche",48.149863,2.703413,,1,,Europe/Paris,,OIF, +OIF:SA:30:90,1,"Mézinville",48.157144,2.664625,,1,,Europe/Paris,,OIF, +OIF:SA:30:901,1,"Mairie École",48.315449,2.902602,,1,,Europe/Paris,,OIF, +OIF:SA:30:908,1,"Le Perray",48.130963,2.518385,,1,,Europe/Paris,,OIF, +OIF:SA:30:909,1,"Villeneuve",48.133981,2.520263,,1,,Europe/Paris,,OIF, +OIF:SA:30:913,1,"Salle Poly. Beaumont",48.139079,2.478449,,1,,Europe/Paris,,OIF, +OIF:SA:30:94,1,"Rue des Écoles",48.149901,2.746279,,1,,Europe/Paris,,OIF, +OIF:SA:30:98,1,"République",48.148118,2.701073,,1,,Europe/Paris,,OIF, +OIF:SA:31:10,1,"Les Carrosses",48.414831,2.718114,,1,,Europe/Paris,,OIF, +OIF:SA:31:100,1,"Châtelet Mairie",48.504843,2.794903,,1,,Europe/Paris,,OIF, +OIF:SA:31:107,1,"Pignons Blancs",48.502834,2.784286,,1,,Europe/Paris,,OIF, +OIF:SA:31:109,1,"République",48.491596,2.696256,,1,,Europe/Paris,,OIF, +OIF:SA:31:111,1,"Foch",48.485214,2.710405,,1,,Europe/Paris,,OIF, +OIF:SA:31:115,1,"Mairie",48.487958,2.70089,,1,,Europe/Paris,,OIF, +OIF:SA:31:117,1,"Rue du Pas du Vau",48.485066,2.700099,,1,,Europe/Paris,,OIF, +OIF:SA:31:118,1,"Maison de Retraite",48.498287,2.781264,,1,,Europe/Paris,,OIF, +OIF:SA:31:120,1,"Traveteau",48.503898,2.824461,,1,,Europe/Paris,,OIF, +OIF:SA:31:121,1,"Quai de la Vallée 1",48.48783,2.744423,,1,,Europe/Paris,,OIF, +OIF:SA:31:122,1,"Quai de la Vallée 2",48.487099,2.730684,,1,,Europe/Paris,,OIF, +OIF:SA:31:14,1,"Charité",48.400844,2.718626,,1,,Europe/Paris,,OIF, +OIF:SA:31:144,1,"Salle Polyvalente",48.504265,2.85951,,1,,Europe/Paris,,OIF, +OIF:SA:31:17,1,"Les Cigognes",48.415527,2.739822,,1,,Europe/Paris,,OIF, +OIF:SA:31:183,1,"Féricy Mairie",48.45804,2.800717,,1,,Europe/Paris,,OIF, +OIF:SA:31:187,1,"Mairie",48.486827,2.757378,,1,,Europe/Paris,,OIF, +OIF:SA:31:189,1,"Plateau",48.492727,2.765318,,1,,Europe/Paris,,OIF, +OIF:SA:31:19,1,"Deportes",48.409508,2.722477,,1,,Europe/Paris,,OIF, +OIF:SA:31:192,1,"Mairie",48.404995,2.701438,,1,,Europe/Paris,,OIF, +OIF:SA:31:195,1,"Alexis Durand",48.401899,2.691826,,1,,Europe/Paris,,OIF, +OIF:SA:31:196,1,"Bibliothèque",48.401311,2.693091,,1,,Europe/Paris,,OIF, +OIF:SA:31:197,1,"Palais de Justice",48.410266,2.704731,,1,,Europe/Paris,,OIF, +OIF:SA:31:200,1,"Lariboisiere",48.399867,2.712138,,1,,Europe/Paris,,OIF, +OIF:SA:31:203,1,"Le Bréau",48.399268,2.711263,,1,,Europe/Paris,,OIF, +OIF:SA:31:204,1,"Crevât Jaurès",48.414967,2.699288,,1,,Europe/Paris,,OIF, +OIF:SA:31:205,1,"Église Saint-Louis",48.405806,2.701952,,1,,Europe/Paris,,OIF, +OIF:SA:31:206,1,"Étape",48.407976,2.703784,,1,,Europe/Paris,,OIF, +OIF:SA:31:210,1,"Route Louise",48.412652,2.6978,,1,,Europe/Paris,,OIF, +OIF:SA:31:212,1,"Gare Routière François 1er",48.409365,2.693578,,1,,Europe/Paris,,OIF, +OIF:SA:31:215,1,"Les Lilas",48.400009,2.689504,,1,,Europe/Paris,,OIF, +OIF:SA:31:218,1,"Les Maréchaux",48.41346,2.705166,,1,,Europe/Paris,,OIF, +OIF:SA:31:220,1,"Paul Jozon",48.413017,2.706014,,1,,Europe/Paris,,OIF, +OIF:SA:31:230,1,"Paroisse",48.409248,2.696534,,1,,Europe/Paris,,OIF, +OIF:SA:31:231,1,"Fontaineroux",48.437372,2.802272,,1,,Europe/Paris,,OIF, +OIF:SA:31:232,1,"Croix de Fer",48.443381,2.785554,,1,,Europe/Paris,,OIF, +OIF:SA:31:233,1,"Place de Gaulle",48.446552,2.761906,,1,,Europe/Paris,,OIF, +OIF:SA:31:235,1,"Rue des Fosses",48.448756,2.766491,,1,,Europe/Paris,,OIF, +OIF:SA:31:239,1,"Lavoir",48.448557,2.769314,,1,,Europe/Paris,,OIF, +OIF:SA:31:24,1,"Clos Gambetta",48.403279,2.727413,,1,,Europe/Paris,,OIF, +OIF:SA:31:240,1,"Les Latteux",48.44495,2.778439,,1,,Europe/Paris,,OIF, +OIF:SA:31:242,1,"Les Mornois",48.444109,2.777324,,1,,Europe/Paris,,OIF, +OIF:SA:31:243,1,"Le Puits",48.447059,2.774464,,1,,Europe/Paris,,OIF, +OIF:SA:31:26,1,"Haut Changis",48.418111,2.72951,,1,,Europe/Paris,,OIF, +OIF:SA:31:264,1,"Vaux Garennes",48.510852,2.688967,,1,,Europe/Paris,,OIF, +OIF:SA:31:265,1,"Hameau de Villiers",48.45839,2.830768,,1,,Europe/Paris,,OIF, +OIF:SA:31:266,1,"Salle des Fetes",48.455552,2.827916,,1,,Europe/Paris,,OIF, +OIF:SA:31:273,1,"Résidence du Château",48.53782,2.674002,,1,,Europe/Paris,,OIF, +OIF:SA:31:28,1,"Jacques Durand",48.41327,2.735908,,1,,Europe/Paris,,OIF, +OIF:SA:31:3,1,"Place Carnot",48.407228,2.721245,,1,,Europe/Paris,,OIF, +OIF:SA:31:30,1,"Laffemas",48.427384,2.742905,,1,,Europe/Paris,,OIF, +OIF:SA:31:304,1,"Voltaire",48.399246,2.951251,,1,,Europe/Paris,,OIF, +OIF:SA:31:31,1,"Mairie Église",48.404927,2.721181,,1,,Europe/Paris,,OIF, +OIF:SA:31:32,1,"Les Maraîchers",48.413005,2.725177,,1,,Europe/Paris,,OIF, +OIF:SA:31:321,1,"Chapendu",48.463459,2.857318,,1,,Europe/Paris,,OIF, +OIF:SA:31:323,1,"Pamfou République",48.460402,2.870392,,1,,Europe/Paris,,OIF, +OIF:SA:31:324,1,"Le Relais",48.460052,2.874315,,1,,Europe/Paris,,OIF, +OIF:SA:31:33,1,"Viaduc Moinerie",48.410218,2.72523,,1,,Europe/Paris,,OIF, +OIF:SA:31:338,1,"Le Bac",48.427343,2.750997,,1,,Europe/Paris,,OIF, +OIF:SA:31:34,1,"Montceau",48.411998,2.725169,,1,,Europe/Paris,,OIF, +OIF:SA:31:340,1,"Château d'Eau",48.424907,2.761014,,1,,Europe/Paris,,OIF, +OIF:SA:31:342,1,"Les Commerces",48.423709,2.751474,,1,,Europe/Paris,,OIF, +OIF:SA:31:344,1,"Croix Saint-Jacques",48.422193,2.759357,,1,,Europe/Paris,,OIF, +OIF:SA:31:346,1,"Rue Grande",48.423109,2.755745,,1,,Europe/Paris,,OIF, +OIF:SA:31:348,1,"Marjolaine",48.429248,2.751221,,1,,Europe/Paris,,OIF, +OIF:SA:31:350,1,"ZI Bois Gasseau",48.425202,2.766257,,1,,Europe/Paris,,OIF, +OIF:SA:31:354,1,"Sivry Mairie",48.527691,2.754953,,1,,Europe/Paris,,OIF, +OIF:SA:31:36,1,"Orloff",48.413421,2.713363,,1,,Europe/Paris,,OIF, +OIF:SA:31:37,1,"Plateau de la Gare",48.41644,2.723703,,1,,Europe/Paris,,OIF, +OIF:SA:31:373,1,"Église",48.442511,2.890884,,1,,Europe/Paris,,OIF, +OIF:SA:31:382,1,"Vaux le Pénil Mairie",48.525917,2.68329,,1,,Europe/Paris,,OIF, +OIF:SA:31:384,1,"Plein Vents",48.517053,2.683597,,1,,Europe/Paris,,OIF, +OIF:SA:31:39,1,"Rosa Bonheur",48.415547,2.72057,,1,,Europe/Paris,,OIF, +OIF:SA:31:4,1,"Caserne",48.40262,2.718524,,1,,Europe/Paris,,OIF, +OIF:SA:31:401,1,"Acacias",48.43989,2.755818,,1,,Europe/Paris,,OIF, +OIF:SA:31:403,1,"Aulnette",48.433993,2.765458,,1,,Europe/Paris,,OIF, +OIF:SA:31:404,1,"Basse Varenne",48.436572,2.754697,,1,,Europe/Paris,,OIF, +OIF:SA:31:406,1,"Saint-Fiacre",48.433563,2.760077,,1,,Europe/Paris,,OIF, +OIF:SA:31:407,1,"Gros Saule",48.434746,2.761114,,1,,Europe/Paris,,OIF, +OIF:SA:31:408,1,"Lavoir aux Chapeaux",48.431652,2.75917,,1,,Europe/Paris,,OIF, +OIF:SA:31:409,1,"Vulaines Mairie Vers Lavoir",48.430941,2.764312,,1,,Europe/Paris,,OIF, +OIF:SA:31:41,1,"Lavoir Daubenton",48.40809,2.725761,,1,,Europe/Paris,,OIF, +OIF:SA:31:410,1,"Moulin à Vent Route de Machault",48.432243,2.767038,,1,,Europe/Paris,,OIF, +OIF:SA:31:411,1,"Les Pres",48.428972,2.755393,,1,,Europe/Paris,,OIF, +OIF:SA:31:413,1,"Valrose",48.432808,2.751276,,1,,Europe/Paris,,OIF, +OIF:SA:31:415,1,"Les Coudreaux",48.418616,2.753933,,1,,Europe/Paris,,OIF, +OIF:SA:31:417,1,"Les Rues",48.425802,2.75576,,1,,Europe/Paris,,OIF, +OIF:SA:31:419,1,"Collège Lucien Cézard",48.410075,2.706668,,1,,Europe/Paris,,OIF, +OIF:SA:31:42,1,"Terrasses",48.419814,2.735141,,1,,Europe/Paris,,OIF, +OIF:SA:31:420,1,"Clos Pensées",48.489425,2.735225,,1,,Europe/Paris,,OIF, +OIF:SA:31:423,1,"Le Montoir 1",48.39803,2.855405,,1,,Europe/Paris,,OIF, +OIF:SA:31:424,1,"Le Montoir 2",48.395089,2.853486,,1,,Europe/Paris,,OIF, +OIF:SA:31:435,1,"Sivry",48.529242,2.751041,,1,,Europe/Paris,,OIF, +OIF:SA:31:439,1,"Victor Hugo / Porte de Paris",48.539651,2.657836,,1,,Europe/Paris,,OIF, +OIF:SA:31:444,1,"Route de Nangis",48.541339,2.678844,,1,,Europe/Paris,,OIF, +OIF:SA:31:445,1,"Belle Allée",48.527118,2.75147,,1,,Europe/Paris,,OIF, +OIF:SA:31:447,1,"Corning",48.420389,2.736422,,1,,Europe/Paris,,OIF, +OIF:SA:31:45,1,"Viaduc Tabac",48.41223,2.7259,,1,,Europe/Paris,,OIF, +OIF:SA:31:451,1,"Le Mur Blanc",48.441235,2.793048,,1,,Europe/Paris,,OIF, +OIF:SA:31:453,1,"La Source",48.42914,2.760096,,1,,Europe/Paris,,OIF, +OIF:SA:31:458,1,"Vulaines Mairie Cote Place",48.430869,2.764392,,1,,Europe/Paris,,OIF, +OIF:SA:31:459,1,"Moulin à Vent la Brosse",48.43263,2.767082,,1,,Europe/Paris,,OIF, +OIF:SA:31:461,1,"Avenue de Surville",48.394629,2.953059,,1,,Europe/Paris,,OIF, +OIF:SA:31:47,1,"Avenue du 23 Août",48.481471,2.670852,,1,,Europe/Paris,,OIF, +OIF:SA:31:48,1,"Carnot Fosse",48.477098,2.705466,,1,,Europe/Paris,,OIF, +OIF:SA:31:49,1,"Rue aux Loups",48.481691,2.675695,,1,,Europe/Paris,,OIF, +OIF:SA:31:50,1,"Clos de la Mulatière",48.479651,2.695092,,1,,Europe/Paris,,OIF, +OIF:SA:31:525,1,"Aristide Briand",48.409981,2.706519,,1,,Europe/Paris,,OIF, +OIF:SA:31:53,1,"Collège Denecourt",48.478036,2.701389,,1,,Europe/Paris,,OIF, +OIF:SA:31:536,1,"La Châtelaine",48.416132,2.725632,,1,,Europe/Paris,,OIF, +OIF:SA:31:540,1,"Foch",48.416452,2.707206,,1,,Europe/Paris,,OIF, +OIF:SA:31:542,1,"La Plaine",48.412944,2.699105,,1,,Europe/Paris,,OIF, +OIF:SA:31:544,1,"Thiers",48.415518,2.71115,,1,,Europe/Paris,,OIF, +OIF:SA:31:55,1,"École Église",48.472007,2.700252,,1,,Europe/Paris,,OIF, +OIF:SA:31:551,1,"Rocher d'Avon",48.401572,2.721433,,1,,Europe/Paris,,OIF, +OIF:SA:31:578,1,"Quai Saint-Martin",48.486576,2.75338,,1,,Europe/Paris,,OIF, +OIF:SA:31:59,1,"Castellani Frot",48.479244,2.706265,,1,,Europe/Paris,,OIF, +OIF:SA:31:610,1,"Saint-Honoré",48.405138,2.696911,,1,,Europe/Paris,,OIF, +OIF:SA:31:611,1,"Saint-Merry",48.405928,2.694445,,1,,Europe/Paris,,OIF, +OIF:SA:31:612,1,"Dunant",48.407391,2.68923,,1,,Europe/Paris,,OIF, +OIF:SA:31:617,1,"Jean Fontenelle",48.40352,2.725174,,1,,Europe/Paris,,OIF, +OIF:SA:31:618,1,"Souvenir",48.402652,2.725296,,1,,Europe/Paris,,OIF, +OIF:SA:31:62,1,"Rue de la Presche",48.462315,2.699062,,1,,Europe/Paris,,OIF, +OIF:SA:31:620,1,"Les Héronnières",48.399771,2.711172,,1,,Europe/Paris,,OIF, +OIF:SA:31:627,1,"Le Prieure",48.418854,2.736977,,1,,Europe/Paris,,OIF, +OIF:SA:31:634,1,"Abreuvoir",48.422181,2.749896,,1,,Europe/Paris,,OIF, +OIF:SA:31:635,1,"Mallarmé",48.429244,2.748344,,1,,Europe/Paris,,OIF, +OIF:SA:31:64,1,"Place Platet",48.478838,2.682843,,1,,Europe/Paris,,OIF, +OIF:SA:31:67,1,"République",48.468983,2.707125,,1,,Europe/Paris,,OIF, +OIF:SA:31:679,1,"Espinard",48.435939,2.803514,,1,,Europe/Paris,,OIF, +OIF:SA:31:685,1,"Montmélian",48.422176,2.756649,,1,,Europe/Paris,,OIF, +OIF:SA:31:686,1,"Route de la Borde",48.504006,2.85503,,1,,Europe/Paris,,OIF, +OIF:SA:31:688,1,"Mini Centrale",48.484977,2.704061,,1,,Europe/Paris,,OIF, +OIF:SA:31:694,1,"Grands Champs",48.499279,2.800319,,1,,Europe/Paris,,OIF, +OIF:SA:31:7,1,"Maison Dans la Vallée",48.410213,2.726682,,1,,Europe/Paris,,OIF, +OIF:SA:31:71,1,"Stade",48.469812,2.695085,,1,,Europe/Paris,,OIF, +OIF:SA:31:710,1,"Quai de la Vallée 3",48.487447,2.736718,,1,,Europe/Paris,,OIF, +OIF:SA:31:714,1,"Leclerc",48.480021,2.694872,,1,,Europe/Paris,,OIF, +OIF:SA:31:716,1,"Cnsd",48.397701,2.725833,,1,,Europe/Paris,,OIF, +OIF:SA:31:724,1,"Dona Mencia",48.482181,2.695562,,1,,Europe/Paris,,OIF, +OIF:SA:31:728,1,"ZI Paul Séramy",48.425662,2.769577,,1,,Europe/Paris,,OIF, +OIF:SA:31:76,1,"Centre Commercial",48.503206,2.790458,,1,,Europe/Paris,,OIF, +OIF:SA:31:77,1,"Collège Rosa Bonheur",48.501618,2.78832,,1,,Europe/Paris,,OIF, +OIF:SA:31:8,1,"Bezout",48.415844,2.739176,,1,,Europe/Paris,,OIF, +OIF:SA:31:81,1,"École",48.489478,2.70792,,1,,Europe/Paris,,OIF, +OIF:SA:31:85,1,"Gendarmerie",48.506304,2.790282,,1,,Europe/Paris,,OIF, +OIF:SA:31:91,1,"Carrefour Market",48.482396,2.695672,,1,,Europe/Paris,,OIF, +OIF:SA:31:93,1,"Joffre",48.486929,2.693364,,1,,Europe/Paris,,OIF, +OIF:SA:31:95,1,"Quai Maréchal Leclerc",48.486257,2.717418,,1,,Europe/Paris,,OIF, +OIF:SA:31:97,1,"Temps Perdu",48.49237,2.685346,,1,,Europe/Paris,,OIF, +OIF:SA:32:45005,1,"Achaland",48.762704,2.479238,,1,,Europe/Paris,,OIF, +OIF:SA:32:45009,1,"Cimetière",48.769845,2.483398,,1,,Europe/Paris,,OIF, +OIF:SA:32:45011,1,"République",48.767187,2.479651,,1,,Europe/Paris,,OIF, +OIF:SA:32:45013,1,"Georges Bizet",48.683477,2.537705,,1,,Europe/Paris,,OIF, +OIF:SA:32:45015,1,"Centre Commercial",48.683766,2.533945,,1,,Europe/Paris,,OIF, +OIF:SA:32:45017,1,"Folie",48.692076,2.533875,,1,,Europe/Paris,,OIF, +OIF:SA:32:45021,1,"Mairie",48.689143,2.529913,,1,,Europe/Paris,,OIF, +OIF:SA:32:45023,1,"Menhir",48.69117,2.529941,,1,,Europe/Paris,,OIF, +OIF:SA:32:45025,1,"Nérac",48.68586,2.528903,,1,,Europe/Paris,,OIF, +OIF:SA:32:45027,1,"Justice",48.696751,2.536364,,1,,Europe/Paris,,OIF, +OIF:SA:32:45029,1,"Piscine des Sénarts",48.690532,2.525588,,1,,Europe/Paris,,OIF, +OIF:SA:32:45031,1,"Thibaudières",48.687445,2.535005,,1,,Europe/Paris,,OIF, +OIF:SA:32:45033,1,"Châtaigneraie",48.686735,2.492802,,1,,Europe/Paris,,OIF, +OIF:SA:32:45038,1,"Glaises",48.699722,2.493764,,1,,Europe/Paris,,OIF, +OIF:SA:32:45040,1,"Godeaux",48.692006,2.497183,,1,,Europe/Paris,,OIF, +OIF:SA:32:45041,1,"Hautes Mardelles",48.708381,2.522812,,1,,Europe/Paris,,OIF, +OIF:SA:32:45043,1,"Joffre",48.700492,2.489238,,1,,Europe/Paris,,OIF, +OIF:SA:32:45045,1,"Lilas",48.684037,2.494145,,1,,Europe/Paris,,OIF, +OIF:SA:32:45046,1,"Marceau",48.693366,2.48826,,1,,Europe/Paris,,OIF, +OIF:SA:32:45048,1,"Nungesser",48.703957,2.512416,,1,,Europe/Paris,,OIF, +OIF:SA:32:45049,1,"Place des Fêtes",48.684257,2.497539,,1,,Europe/Paris,,OIF, +OIF:SA:32:45050,1,"Petit Château",48.696548,2.498161,,1,,Europe/Paris,,OIF, +OIF:SA:32:45052,1,"Piscine",48.701395,2.493036,,1,,Europe/Paris,,OIF, +OIF:SA:32:45054,1,"Plateau",48.706403,2.517585,,1,,Europe/Paris,,OIF, +OIF:SA:32:45055,1,"Pont Perronet",48.695284,2.502624,,1,,Europe/Paris,,OIF, +OIF:SA:32:45057,1,"Portalis",48.689719,2.499742,,1,,Europe/Paris,,OIF, +OIF:SA:32:45060,1,"Avenue du Parc",48.687078,2.498688,,1,,Europe/Paris,,OIF, +OIF:SA:32:45061,1,"Rue de Montgeron",48.689653,2.495234,,1,,Europe/Paris,,OIF, +OIF:SA:32:45063,1,"Sablière",48.707154,2.525695,,1,,Europe/Paris,,OIF, +OIF:SA:32:45064,1,"Trésorerie",48.700686,2.505792,,1,,Europe/Paris,,OIF, +OIF:SA:32:45065,1,"Saint-Pierre Fourier",48.692696,2.491489,,1,,Europe/Paris,,OIF, +OIF:SA:32:45067,1,"Saint-Hilaire",48.702422,2.511066,,1,,Europe/Paris,,OIF, +OIF:SA:32:45068,1,"Lycée François Joseph Talma",48.6945,2.503371,,1,,Europe/Paris,,OIF, +OIF:SA:32:45070,1,"Val Fleuri",48.707733,2.517943,,1,,Europe/Paris,,OIF, +OIF:SA:32:45073,1,"Yvonne / Madeleine",48.706839,2.514476,,1,,Europe/Paris,,OIF, +OIF:SA:32:45078,1,"Stade",48.671004,2.555727,,1,,Europe/Paris,,OIF, +OIF:SA:32:45082,1,"Carrefour Pompadour",48.774043,2.439575,,1,,Europe/Paris,,OIF, +OIF:SA:32:45087,1,"La Haye aux Moines",48.785224,2.448757,,1,,Europe/Paris,,OIF, +OIF:SA:32:45092,1,"Lycée du Lac",48.779698,2.443849,,1,,Europe/Paris,,OIF, +OIF:SA:32:45102,1,"Saint-Simon",48.793563,2.446857,,1,,Europe/Paris,,OIF, +OIF:SA:32:45106,1,"Beauséjour",48.719048,2.472068,,1,,Europe/Paris,,OIF, +OIF:SA:32:45107,1,"Boileau",48.715338,2.459269,,1,,Europe/Paris,,OIF, +OIF:SA:32:45109,1,"Carquelins",48.718247,2.464622,,1,,Europe/Paris,,OIF, +OIF:SA:32:45110,1,"Désiré Bois",48.718884,2.474091,,1,,Europe/Paris,,OIF, +OIF:SA:32:45111,1,"Georges Bizet",48.720436,2.468227,,1,,Europe/Paris,,OIF, +OIF:SA:32:45112,1,"Guette",48.719411,2.468455,,1,,Europe/Paris,,OIF, +OIF:SA:32:45113,1,"Jardins Familiaux",48.724338,2.471436,,1,,Europe/Paris,,OIF, +OIF:SA:32:45115,1,"Peupliers",48.713268,2.464351,,1,,Europe/Paris,,OIF, +OIF:SA:32:45117,1,"Pinsons",48.716061,2.466355,,1,,Europe/Paris,,OIF, +OIF:SA:32:45118,1,"Plaine Haute",48.723732,2.462849,,1,,Europe/Paris,,OIF, +OIF:SA:32:45120,1,"Place du 8 Mai 1945",48.716203,2.459115,,1,,Europe/Paris,,OIF, +OIF:SA:32:45121,1,"Remonteru",48.718831,2.455977,,1,,Europe/Paris,,OIF, +OIF:SA:32:45123,1,"Salvador Allende",48.7203,2.472974,,1,,Europe/Paris,,OIF, +OIF:SA:32:45125,1,"Vingt Arpents",48.722104,2.467695,,1,,Europe/Paris,,OIF, +OIF:SA:32:45127,1,"Boisselet",48.696757,2.518468,,1,,Europe/Paris,,OIF, +OIF:SA:32:45129,1,"Croix Rochopt",48.695409,2.521192,,1,,Europe/Paris,,OIF, +OIF:SA:32:45131,1,"Espérance",48.693966,2.509511,,1,,Europe/Paris,,OIF, +OIF:SA:32:45133,1,"Mairie",48.69522,2.515387,,1,,Europe/Paris,,OIF, +OIF:SA:32:45136,1,"Jean Cocteau",48.699766,2.525628,,1,,Europe/Paris,,OIF, +OIF:SA:32:45137,1,"La Plaine",48.696231,2.524549,,1,,Europe/Paris,,OIF, +OIF:SA:32:45139,1,"Victor Hugo",48.6977,2.524405,,1,,Europe/Paris,,OIF, +OIF:SA:32:45141,1,"Haut Gagny",48.742131,2.489319,,1,,Europe/Paris,,OIF, +OIF:SA:32:45143,1,"Albert Garry",48.755283,2.48424,,1,,Europe/Paris,,OIF, +OIF:SA:32:45145,1,"Allary",48.750877,2.499193,,1,,Europe/Paris,,OIF, +OIF:SA:32:45147,1,"Alexandre Brun",48.746245,2.480817,,1,,Europe/Paris,,OIF, +OIF:SA:32:45149,1,"Ballastière",48.759782,2.480242,,1,,Europe/Paris,,OIF, +OIF:SA:32:45151,1,"Émile Combes",48.741375,2.477722,,1,,Europe/Paris,,OIF, +OIF:SA:32:45155,1,"Eugène Colleau",48.751378,2.491324,,1,,Europe/Paris,,OIF, +OIF:SA:32:45157,1,"Mairie",48.749681,2.481173,,1,,Europe/Paris,,OIF, +OIF:SA:32:45159,1,"Jarry Guérin",48.749284,2.476414,,1,,Europe/Paris,,OIF, +OIF:SA:32:45163,1,"Le Naoures",48.751565,2.486225,,1,,Europe/Paris,,OIF, +OIF:SA:32:45165,1,"Parc de Limeil",48.741565,2.482339,,1,,Europe/Paris,,OIF, +OIF:SA:32:45167,1,"Louis Pasteur",48.744147,2.476299,,1,,Europe/Paris,,OIF, +OIF:SA:32:45169,1,"Sablière",48.751071,2.495795,,1,,Europe/Paris,,OIF, +OIF:SA:32:45171,1,"Stade",48.746086,2.509113,,1,,Europe/Paris,,OIF, +OIF:SA:32:45173,1,"Tertre",48.743068,2.501452,,1,,Europe/Paris,,OIF, +OIF:SA:32:45177,1,"Charles de Gaulle",48.700235,2.541062,,1,,Europe/Paris,,OIF, +OIF:SA:32:45181,1,"Prince Wagram",48.706642,2.541841,,1,,Europe/Paris,,OIF, +OIF:SA:32:45185,1,"Robert de Dreux",48.703011,2.54197,,1,,Europe/Paris,,OIF, +OIF:SA:32:45189,1,"Ami Louis",48.698258,2.470982,,1,,Europe/Paris,,OIF, +OIF:SA:32:45190,1,"Cimetière",48.712955,2.449152,,1,,Europe/Paris,,OIF, +OIF:SA:32:45192,1,"Commissariat",48.70237,2.463754,,1,,Europe/Paris,,OIF, +OIF:SA:32:45194,1,"Croix au Coq",48.703121,2.453985,,1,,Europe/Paris,,OIF, +OIF:SA:32:45195,1,"Dumay Delille",48.697874,2.465407,,1,,Europe/Paris,,OIF, +OIF:SA:32:45198,1,"La Forêt",48.696238,2.456027,,1,,Europe/Paris,,OIF, +OIF:SA:32:45199,1,"Gallieni",48.716054,2.4467,,1,,Europe/Paris,,OIF, +OIF:SA:32:45203,1,"Mairie",48.704433,2.460106,,1,,Europe/Paris,,OIF, +OIF:SA:32:45206,1,"Jean Moulin",48.696335,2.453569,,1,,Europe/Paris,,OIF, +OIF:SA:32:45207,1,"Lycée",48.704966,2.45341,,1,,Europe/Paris,,OIF, +OIF:SA:32:45208,1,"Marguerite",48.698533,2.46219,,1,,Europe/Paris,,OIF, +OIF:SA:32:45209,1,"Pavillon Flore",48.700796,2.466656,,1,,Europe/Paris,,OIF, +OIF:SA:32:45211,1,"Réveil Matin",48.71882,2.444512,,1,,Europe/Paris,,OIF, +OIF:SA:32:45213,1,"Saint-Joseph",48.699687,2.468469,,1,,Europe/Paris,,OIF, +OIF:SA:32:45215,1,"Croix Saint-Marc",48.699616,2.453495,,1,,Europe/Paris,,OIF, +OIF:SA:32:45218,1,"Les Pierreux",48.690193,2.557057,,1,,Europe/Paris,,OIF, +OIF:SA:32:45222,1,"Ancienne Poste",48.748055,2.466625,,1,,Europe/Paris,,OIF, +OIF:SA:32:45224,1,"Acti Park",48.749109,2.455496,,1,,Europe/Paris,,OIF, +OIF:SA:32:45226,1,"Bois Cerdon",48.727182,2.472646,,1,,Europe/Paris,,OIF, +OIF:SA:32:45228,1,"Cimetière",48.734993,2.472177,,1,,Europe/Paris,,OIF, +OIF:SA:32:45230,1,"Couperin",48.747896,2.459672,,1,,Europe/Paris,,OIF, +OIF:SA:32:45232,1,"Gabriel Péri",48.748769,2.470657,,1,,Europe/Paris,,OIF, +OIF:SA:32:45234,1,"Hôtel de Ville de Valenton",48.74509,2.469519,,1,,Europe/Paris,,OIF, +OIF:SA:32:45236,1,"Joliot Curie",48.741165,2.474497,,1,,Europe/Paris,,OIF, +OIF:SA:32:45238,1,"Lutèce",48.747618,2.462696,,1,,Europe/Paris,,OIF, +OIF:SA:32:45240,1,"Paillis",48.742255,2.472529,,1,,Europe/Paris,,OIF, +OIF:SA:32:45242,1,"Stade Auguste Delaune",48.750576,2.462091,,1,,Europe/Paris,,OIF, +OIF:SA:32:45244,1,"Pompadour",48.764761,2.441827,,1,,Europe/Paris,,OIF, +OIF:SA:32:45246,1,"Bel Air",48.68397,2.558544,,1,,Europe/Paris,,OIF, +OIF:SA:32:45247,1,"Boieldieu",48.685986,2.558453,,1,,Europe/Paris,,OIF, +OIF:SA:32:45249,1,"Croix de Jarcy",48.682475,2.555361,,1,,Europe/Paris,,OIF, +OIF:SA:32:45250,1,"Jean Clauzel",48.682234,2.559243,,1,,Europe/Paris,,OIF, +OIF:SA:32:45251,1,"Libération",48.677225,2.558047,,1,,Europe/Paris,,OIF, +OIF:SA:32:45254,1,"Allée Verte",48.731063,2.514396,,1,,Europe/Paris,,OIF, +OIF:SA:32:45256,1,"Bouleaux",48.724843,2.520271,,1,,Europe/Paris,,OIF, +OIF:SA:32:45258,1,"Château",48.714507,2.536874,,1,,Europe/Paris,,OIF, +OIF:SA:32:45259,1,"Chemin de Fer",48.732333,2.512512,,1,,Europe/Paris,,OIF, +OIF:SA:32:45263,1,"Edouard Branly",48.705942,2.530702,,1,,Europe/Paris,,OIF, +OIF:SA:32:45265,1,"Etoile",48.720828,2.524285,,1,,Europe/Paris,,OIF, +OIF:SA:32:45272,1,"Henri Dunant",48.707996,2.527709,,1,,Europe/Paris,,OIF, +OIF:SA:32:45273,1,"Justice",48.72636,2.521689,,1,,Europe/Paris,,OIF, +OIF:SA:32:45275,1,"Merles",48.722213,2.524147,,1,,Europe/Paris,,OIF, +OIF:SA:32:45279,1,"Renard",48.728794,2.523138,,1,,Europe/Paris,,OIF, +OIF:SA:32:45281,1,"Salle Polyvalente",48.721217,2.528246,,1,,Europe/Paris,,OIF, +OIF:SA:32:45288,1,"Alexandre Dumas",48.740583,2.446779,,1,,Europe/Paris,,OIF, +OIF:SA:32:45290,1,"D'Alembert",48.737958,2.446841,,1,,Europe/Paris,,OIF, +OIF:SA:32:45292,1,"Beauregard",48.72774,2.449999,,1,,Europe/Paris,,OIF, +OIF:SA:32:45294,1,"B Palissy",48.742372,2.446579,,1,,Europe/Paris,,OIF, +OIF:SA:32:45296,1,"Hector Berlioz",48.746156,2.446696,,1,,Europe/Paris,,OIF, +OIF:SA:32:45298,1,"Bois Matar",48.733736,2.462554,,1,,Europe/Paris,,OIF, +OIF:SA:32:45300,1,"Polyclinique",48.72109,2.451468,,1,,Europe/Paris,,OIF, +OIF:SA:32:45304,1,"Centre Hospitalier",48.7214,2.453889,,1,,Europe/Paris,,OIF, +OIF:SA:32:45306,1,"Cimetière",48.725379,2.452215,,1,,Europe/Paris,,OIF, +OIF:SA:32:45308,1,"Cité SNCF",48.735311,2.465194,,1,,Europe/Paris,,OIF, +OIF:SA:32:45310,1,"Cité Sellier",48.752905,2.448232,,1,,Europe/Paris,,OIF, +OIF:SA:32:45312,1,"Edouard Branly",48.750375,2.448077,,1,,Europe/Paris,,OIF, +OIF:SA:32:45314,1,"Edouard Vaillant",48.736728,2.454673,,1,,Europe/Paris,,OIF, +OIF:SA:32:45316,1,"Émile Zola",48.73491,2.453425,,1,,Europe/Paris,,OIF, +OIF:SA:32:45318,1,"Garibaldi",48.728424,2.454314,,1,,Europe/Paris,,OIF, +OIF:SA:32:45321,1,"Berthelot",48.737733,2.452582,,1,,Europe/Paris,,OIF, +OIF:SA:32:45322,1,"Les Graviers",48.752935,2.453969,,1,,Europe/Paris,,OIF, +OIF:SA:32:45326,1,"Hbm",48.740623,2.452466,,1,,Europe/Paris,,OIF, +OIF:SA:32:45328,1,"Hélène Boucher",48.749675,2.450665,,1,,Europe/Paris,,OIF, +OIF:SA:32:45330,1,"Henri Janin",48.73307,2.450078,,1,,Europe/Paris,,OIF, +OIF:SA:32:45332,1,"Jules Ferry",48.740447,2.457243,,1,,Europe/Paris,,OIF, +OIF:SA:32:45334,1,"Justice",48.731246,2.458634,,1,,Europe/Paris,,OIF, +OIF:SA:32:45336,1,"Louis Armand",48.759938,2.443081,,1,,Europe/Paris,,OIF, +OIF:SA:32:45338,1,"Massenet",48.744667,2.452373,,1,,Europe/Paris,,OIF, +OIF:SA:32:45340,1,"Marc Séguin",48.74735,2.452875,,1,,Europe/Paris,,OIF, +OIF:SA:32:45342,1,"Mairie Annexe",48.748656,2.435222,,1,,Europe/Paris,,OIF, +OIF:SA:32:45344,1,"Paul Bert",48.753833,2.429574,,1,,Europe/Paris,,OIF, +OIF:SA:32:45346,1,"Pont Dyerres Conservatoire",48.724633,2.44699,,1,,Europe/Paris,,OIF, +OIF:SA:32:45350,1,"Rû de Gironde",48.737113,2.469404,,1,,Europe/Paris,,OIF, +OIF:SA:32:45352,1,"Tourelles",48.74417,2.459344,,1,,Europe/Paris,,OIF, +OIF:SA:32:45354,1,"Amélie",48.751725,2.432139,,1,,Europe/Paris,,OIF, +OIF:SA:32:45356,1,"Abbaye",48.709001,2.498831,,1,,Europe/Paris,,OIF, +OIF:SA:32:45358,1,"Les Arcades",48.722278,2.498268,,1,,Europe/Paris,,OIF, +OIF:SA:32:45359,1,"Belvédère",48.704341,2.487728,,1,,Europe/Paris,,OIF, +OIF:SA:32:45361,1,"Gros Bois",48.730455,2.509048,,1,,Europe/Paris,,OIF, +OIF:SA:32:45362,1,"Bout du Monde",48.716895,2.506877,,1,,Europe/Paris,,OIF, +OIF:SA:32:45364,1,"Pierre Brossolette",48.700561,2.481097,,1,,Europe/Paris,,OIF, +OIF:SA:32:45366,1,"Brun",48.699924,2.476614,,1,,Europe/Paris,,OIF, +OIF:SA:32:45368,1,"Bulottes",48.714928,2.474957,,1,,Europe/Paris,,OIF, +OIF:SA:32:45370,1,"Camaldules",48.716953,2.500696,,1,,Europe/Paris,,OIF, +OIF:SA:32:45371,1,"Canotiers",48.708341,2.494938,,1,,Europe/Paris,,OIF, +OIF:SA:32:45373,1,"Centre Éducatif et Culturel",48.715233,2.490076,,1,,Europe/Paris,,OIF, +OIF:SA:32:45375,1,"Cimetière",48.718735,2.492239,,1,,Europe/Paris,,OIF, +OIF:SA:32:45376,1,"Corneille",48.695499,2.478952,,1,,Europe/Paris,,OIF, +OIF:SA:32:45381,1,"Germaine",48.699498,2.486533,,1,,Europe/Paris,,OIF, +OIF:SA:32:45382,1,"Glaïeuls",48.717323,2.50933,,1,,Europe/Paris,,OIF, +OIF:SA:32:45384,1,"Grange au Bois",48.710771,2.485587,,1,,Europe/Paris,,OIF, +OIF:SA:32:45385,1,"Grands Godeaux",48.708862,2.488475,,1,,Europe/Paris,,OIF, +OIF:SA:32:45386,1,"Guillaume Budé",48.697135,2.485671,,1,,Europe/Paris,,OIF, +OIF:SA:32:45387,1,"Henri Barbusse",48.711199,2.48842,,1,,Europe/Paris,,OIF, +OIF:SA:32:45388,1,"Mairie",48.716841,2.486909,,1,,Europe/Paris,,OIF, +OIF:SA:32:45390,1,"Hôpital Prive du Val d'Yerres",48.712361,2.496329,,1,,Europe/Paris,,OIF, +OIF:SA:32:45392,1,"Jean Jaurès",48.696125,2.480847,,1,,Europe/Paris,,OIF, +OIF:SA:32:45393,1,"Kéranna",48.714391,2.501327,,1,,Europe/Paris,,OIF, +OIF:SA:32:45395,1,"Lesthumière",48.715951,2.479524,,1,,Europe/Paris,,OIF, +OIF:SA:32:45397,1,"Longaine",48.713154,2.469506,,1,,Europe/Paris,,OIF, +OIF:SA:32:45399,1,"Lycée Professionnel / Piscine",48.712801,2.479352,,1,,Europe/Paris,,OIF, +OIF:SA:32:45401,1,"Paul Doumer",48.71632,2.503296,,1,,Europe/Paris,,OIF, +OIF:SA:32:45404,1,"Place Gambetta",48.70158,2.486104,,1,,Europe/Paris,,OIF, +OIF:SA:32:45407,1,"Poste",48.716149,2.49033,,1,,Europe/Paris,,OIF, +OIF:SA:32:45408,1,"Préventorium",48.715022,2.493315,,1,,Europe/Paris,,OIF, +OIF:SA:32:45409,1,"Pré des Roches",48.709951,2.490977,,1,,Europe/Paris,,OIF, +OIF:SA:32:45411,1,"Rue du Parc",48.717955,2.513496,,1,,Europe/Paris,,OIF, +OIF:SA:32:45413,1,"Réservoirs",48.722451,2.509259,,1,,Europe/Paris,,OIF, +OIF:SA:32:45414,1,"Relais Forestier",48.696348,2.475037,,1,,Europe/Paris,,OIF, +OIF:SA:32:45417,1,"Royale",48.721642,2.499849,,1,,Europe/Paris,,OIF, +OIF:SA:32:45419,1,"Rond-Point Pasteur",48.694637,2.482491,,1,,Europe/Paris,,OIF, +OIF:SA:32:45423,1,"Rue des Dames",48.728357,2.509129,,1,,Europe/Paris,,OIF, +OIF:SA:32:45424,1,"Rue de la Grange",48.718492,2.495804,,1,,Europe/Paris,,OIF, +OIF:SA:32:45425,1,"Rue Thésée",48.722126,2.503674,,1,,Europe/Paris,,OIF, +OIF:SA:32:45426,1,"Sablière",48.718513,2.500151,,1,,Europe/Paris,,OIF, +OIF:SA:32:45427,1,"Sécurité Sociale",48.710854,2.480182,,1,,Europe/Paris,,OIF, +OIF:SA:32:45433,1,"Institut Saint-Pierre",48.69452,2.492262,,1,,Europe/Paris,,OIF, +OIF:SA:32:45439,1,"Collège Pasteur",48.701914,2.494837,,1,,Europe/Paris,,OIF, +OIF:SA:32:45444,1,"Bureau",48.744151,2.464978,,1,,Europe/Paris,,OIF, +OIF:SA:32:45450,1,"Mairie",48.678655,2.559777,,1,,Europe/Paris,,OIF, +OIF:SA:32:45463,1,"Collège Dunoyer de Segonzac",48.679788,2.528772,,1,,Europe/Paris,,OIF, +OIF:SA:32:45465,1,"Collège Georges Pompidou",48.692497,2.44668,,1,,Europe/Paris,,OIF, +OIF:SA:32:45466,1,"Avenue Lucie",48.695726,2.468938,,1,,Europe/Paris,,OIF, +OIF:SA:32:45470,1,"Chalandray",48.707007,2.476043,,1,,Europe/Paris,,OIF, +OIF:SA:32:45472,1,"Rue de la Tour",48.707681,2.468819,,1,,Europe/Paris,,OIF, +OIF:SA:32:45504,1,"Usine Renault",48.756073,2.42689,,1,,Europe/Paris,,OIF, +OIF:SA:32:45506,1,"Auberge de la Jeunesse",48.759525,2.422627,,1,,Europe/Paris,,OIF, +OIF:SA:32:45509,1,"Théophile Ducloux",48.762092,2.419525,,1,,Europe/Paris,,OIF, +OIF:SA:32:45511,1,"Fusillés",48.764894,2.416107,,1,,Europe/Paris,,OIF, +OIF:SA:32:45514,1,"Pont Trans Val de Marne",48.766292,2.41478,,1,,Europe/Paris,,OIF, +OIF:SA:32:45518,1,"Cimetière",48.704707,2.509879,,1,,Europe/Paris,,OIF, +OIF:SA:32:45527,1,"Poste",48.696572,2.50381,,1,,Europe/Paris,,OIF, +OIF:SA:32:45530,1,"Chemin Vert",48.6772,2.528546,,1,,Europe/Paris,,OIF, +OIF:SA:32:45531,1,"Jean Jaurès",48.672918,2.530267,,1,,Europe/Paris,,OIF, +OIF:SA:32:45532,1,"Pierre Brosselette",48.670913,2.530938,,1,,Europe/Paris,,OIF, +OIF:SA:32:45534,1,"Henri Chasles",48.66899,2.535939,,1,,Europe/Paris,,OIF, +OIF:SA:32:45535,1,"Henri Janin",48.669478,2.539442,,1,,Europe/Paris,,OIF, +OIF:SA:32:45537,1,"Mairie",48.671717,2.539315,,1,,Europe/Paris,,OIF, +OIF:SA:32:45538,1,"Marché",48.673782,2.535265,,1,,Europe/Paris,,OIF, +OIF:SA:32:45540,1,"Fontaine Cornaille",48.678374,2.535717,,1,,Europe/Paris,,OIF, +OIF:SA:32:45569,1,"Clos des Peintres",48.707057,2.479302,,1,,Europe/Paris,,OIF, +OIF:SA:32:45577,1,"Coquerel",48.723989,2.457938,,1,,Europe/Paris,,OIF, +OIF:SA:32:45582,1,"Coquerel",48.723943,2.458169,,1,,Europe/Paris,,OIF, +OIF:SA:32:45583,1,"Albert Camus",48.706642,2.519908,,1,,Europe/Paris,,OIF, +OIF:SA:32:45592,1,"Treillageurs",48.725977,2.509841,,1,,Europe/Paris,,OIF, +OIF:SA:32:45597,1,"Sablière / HLM",48.72209,2.510399,,1,,Europe/Paris,,OIF, +OIF:SA:32:45616,1,"Rue Thibault",48.70342,2.538882,,1,,Europe/Paris,,OIF, +OIF:SA:32:45633,1,"Polyclinique",48.720768,2.451824,,1,,Europe/Paris,,OIF, +OIF:SA:32:45643,1,"Taillis",48.698285,2.47917,,1,,Europe/Paris,,OIF, +OIF:SA:32:45675,1,"Mai",48.717175,2.526791,,1,,Europe/Paris,,OIF, +OIF:SA:32:45677,1,"Plantes",48.720585,2.524467,,1,,Europe/Paris,,OIF, +OIF:SA:32:45681,1,"Cavaillès",48.728647,2.525149,,1,,Europe/Paris,,OIF, +OIF:SA:32:45703,1,"Descartes",48.739928,2.490346,,1,,Europe/Paris,,OIF, +OIF:SA:32:45877,1,"Lycée / Collège",48.679833,2.528745,,1,,Europe/Paris,,OIF, +OIF:SA:32:45881,1,"Marx Dormoy",48.668641,2.529233,,1,,Europe/Paris,,OIF, +OIF:SA:32:45921,1,"ZA Perdrix",48.709482,2.557499,,1,,Europe/Paris,,OIF, +OIF:SA:32:45998,1,"Route de la Grange",48.733228,2.515613,,1,,Europe/Paris,,OIF, +OIF:SA:32:46025,1,"Bois Cerdon",48.726481,2.472481,,1,,Europe/Paris,,OIF, +OIF:SA:32:46030,1,"Cerisiers",48.703027,2.545677,,1,,Europe/Paris,,OIF, +OIF:SA:32:46032,1,"Château d'Eau",48.703492,2.549624,,1,,Europe/Paris,,OIF, +OIF:SA:32:46034,1,"Rosebrie",48.705647,2.553123,,1,,Europe/Paris,,OIF, +OIF:SA:32:46039,1,"Moulin Neuf",48.690054,2.536216,,1,,Europe/Paris,,OIF, +OIF:SA:32:46042,1,"Croix Rouge",48.694038,2.543387,,1,,Europe/Paris,,OIF, +OIF:SA:32:46045,1,"Bel Air",48.695308,2.546576,,1,,Europe/Paris,,OIF, +OIF:SA:32:46049,1,"Centre",48.695217,2.550052,,1,,Europe/Paris,,OIF, +OIF:SA:32:46059,1,"Picuré",48.7185,2.48277,,1,,Europe/Paris,,OIF, +OIF:SA:32:46207,1,"Collège Korczak",48.743693,2.504151,,1,,Europe/Paris,,OIF, +OIF:SA:32:46213,1,"Centre Commercial Boissy II",48.752999,2.503577,,1,,Europe/Paris,,OIF, +OIF:SA:32:46304,1,"Grand Mat",48.739152,2.444058,,1,,Europe/Paris,,OIF, +OIF:SA:32:46312,1,"Émile",48.697652,2.474443,,1,,Europe/Paris,,OIF, +OIF:SA:32:46330,1,"Jean XXIII",48.704108,2.500928,,1,,Europe/Paris,,OIF, +OIF:SA:32:46332,1,"Rue de Villecresnes",48.707337,2.499308,,1,,Europe/Paris,,OIF, +OIF:SA:32:46333,1,"Rue du Réveillon B",48.705441,2.499085,,1,,Europe/Paris,,OIF, +OIF:SA:32:46334,1,"Latéral",48.703262,2.501536,,1,,Europe/Paris,,OIF, +OIF:SA:32:46338,1,"Ferme de L'Hôpital",48.761411,2.449059,,1,,Europe/Paris,,OIF, +OIF:SA:32:46340,1,"École Jean Jaurès",48.765354,2.447681,,1,,Europe/Paris,,OIF, +OIF:SA:32:46342,1,"Val Pompadour",48.768952,2.44657,,1,,Europe/Paris,,OIF, +OIF:SA:32:46346,1,"Clos de la Régale",48.690492,2.439671,,1,,Europe/Paris,,OIF, +OIF:SA:32:46359,1,"Mélanie Bolis",48.714118,2.538421,,1,,Europe/Paris,,OIF, +OIF:SA:32:46362,1,"Basse Quinte",48.77526,2.443507,,1,,Europe/Paris,,OIF, +OIF:SA:32:46364,1,"Plage Bleue",48.753503,2.460991,,1,,Europe/Paris,,OIF, +OIF:SA:32:46366,1,"Temps Durables",48.750894,2.467733,,1,,Europe/Paris,,OIF, +OIF:SA:32:46369,1,"Les 3 Chênes",48.707266,2.502133,,1,,Europe/Paris,,OIF, +OIF:SA:32:46371,1,"Faisans",48.707457,2.507152,,1,,Europe/Paris,,OIF, +OIF:SA:32:46373,1,"Chasseurs",48.707907,2.512674,,1,,Europe/Paris,,OIF, +OIF:SA:32:46376,1,"Picardie",48.709642,2.518642,,1,,Europe/Paris,,OIF, +OIF:SA:32:46378,1,"Flandres",48.711968,2.520103,,1,,Europe/Paris,,OIF, +OIF:SA:32:46380,1,"Aquitaine",48.709859,2.523688,,1,,Europe/Paris,,OIF, +OIF:SA:32:46382,1,"Franche Comté",48.707768,2.523932,,1,,Europe/Paris,,OIF, +OIF:SA:32:46383,1,"Piscine",48.71112,2.450438,,1,,Europe/Paris,,OIF, +OIF:SA:32:46390,1,"Justice",48.694671,2.450429,,1,,Europe/Paris,,OIF, +OIF:SA:32:46392,1,"Avenue de Sénart",48.699729,2.457542,,1,,Europe/Paris,,OIF, +OIF:SA:34:1753,1,"Place",49.202042,2.119956,,1,,Europe/Paris,,OIF, +OIF:SA:34:1755,1,"Bas",49.207505,2.122519,,1,,Europe/Paris,,OIF, +OIF:SA:34:1757,1,"D927",49.180588,2.124917,,1,,Europe/Paris,,OIF, +OIF:SA:34:1759,1,"Université",49.041414,2.073553,,1,,Europe/Paris,,OIF, +OIF:SA:34:1764,1,"Faurecia",49.21905,2.130119,,1,,Europe/Paris,,OIF, +OIF:SA:34:1765,1,"Caserne des Pompiers",49.218906,2.129395,,1,,Europe/Paris,,OIF, +OIF:SA:34:1767,1,"Gare SNCF",49.232396,2.133046,,1,,Europe/Paris,,OIF, +OIF:SA:34:1769,1,"Centre",49.137801,2.113121,,1,,Europe/Paris,,OIF, +OIF:SA:35:1001,1,"Les Châtaigniers",48.750582,2.539364,,1,,Europe/Paris,,OIF, +OIF:SA:35:1003,1,"Les 2 Communes",48.780813,2.52041,,1,,Europe/Paris,,OIF, +OIF:SA:35:1004,1,"Place du 8 Mai 1945",48.792352,2.532522,,1,,Europe/Paris,,OIF, +OIF:SA:35:1005,1,"Albert Dru",48.763855,2.52576,,1,,Europe/Paris,,OIF, +OIF:SA:35:1008,1,"Amboile Centre",48.785937,2.530979,,1,,Europe/Paris,,OIF, +OIF:SA:35:1010,1,"Sévigné",48.786621,2.530569,,1,,Europe/Paris,,OIF, +OIF:SA:35:1011,1,"Argonne",48.764466,2.51292,,1,,Europe/Paris,,OIF, +OIF:SA:35:1013,1,"A. Baron",48.780407,2.512117,,1,,Europe/Paris,,OIF, +OIF:SA:35:1015,1,"Beauséjour-Moulin à Vent",48.765575,2.533549,,1,,Europe/Paris,,OIF, +OIF:SA:35:1016,1,"Berthelot",48.768773,2.542468,,1,,Europe/Paris,,OIF, +OIF:SA:35:1020,1,"Les Bosquets",48.765975,2.536059,,1,,Europe/Paris,,OIF, +OIF:SA:35:1022,1,"Boulards",48.764297,2.517596,,1,,Europe/Paris,,OIF, +OIF:SA:35:1024,1,"Léon Bresset",48.776261,2.549916,,1,,Europe/Paris,,OIF, +OIF:SA:35:1025,1,"Chemin de Brie",48.769283,2.546209,,1,,Europe/Paris,,OIF, +OIF:SA:35:1026,1,"Chemin de Brie",48.757972,2.540963,,1,,Europe/Paris,,OIF, +OIF:SA:35:1028,1,"Pierre Brossolette",48.777821,2.544339,,1,,Europe/Paris,,OIF, +OIF:SA:35:1030,1,"Pierre Brossolette",48.766595,2.508943,,1,,Europe/Paris,,OIF, +OIF:SA:35:1032,1,"École des Bruyères",48.75931,2.549635,,1,,Europe/Paris,,OIF, +OIF:SA:35:1033,1,"Clément Ader",48.802455,2.552833,,1,,Europe/Paris,,OIF, +OIF:SA:35:1034,1,"Les Cantoux",48.790831,2.549343,,1,,Europe/Paris,,OIF, +OIF:SA:35:1035,1,"Danielle Casanova",48.789587,2.549277,,1,,Europe/Paris,,OIF, +OIF:SA:35:1037,1,"RN 4 - Pince Vent",48.792197,2.554817,,1,,Europe/Paris,,OIF, +OIF:SA:35:1038,1,"Centre Culturel",48.775268,2.520205,,1,,Europe/Paris,,OIF, +OIF:SA:35:1041,1,"Pointe aux Cerfs",48.755774,2.538549,,1,,Europe/Paris,,OIF, +OIF:SA:35:1043,1,"Chapellerie",48.771212,2.532755,,1,,Europe/Paris,,OIF, +OIF:SA:35:1047,1,"Château d'Ormesson",48.78495,2.538431,,1,,Europe/Paris,,OIF, +OIF:SA:35:1050,1,"Les Châtelets",48.780917,2.516702,,1,,Europe/Paris,,OIF, +OIF:SA:35:1052,1,"Chaumoncel",48.76893,2.523711,,1,,Europe/Paris,,OIF, +OIF:SA:35:1056,1,"Chemin de Touillon",48.779354,2.522463,,1,,Europe/Paris,,OIF, +OIF:SA:35:1057,1,"Cité Verte / Grand Val",48.774078,2.517807,,1,,Europe/Paris,,OIF, +OIF:SA:35:1059,1,"Clauteaux",48.766175,2.515237,,1,,Europe/Paris,,OIF, +OIF:SA:35:1061,1,"Le Closeau",48.755065,2.529812,,1,,Europe/Paris,,OIF, +OIF:SA:35:1063,1,"Clos de Pacy",48.772451,2.519243,,1,,Europe/Paris,,OIF, +OIF:SA:35:1065,1,"Clos de Ville",48.763286,2.523412,,1,,Europe/Paris,,OIF, +OIF:SA:35:1067,1,"Combernoux",48.752969,2.539136,,1,,Europe/Paris,,OIF, +OIF:SA:35:1069,1,"Centre Administratif",48.771574,2.525549,,1,,Europe/Paris,,OIF, +OIF:SA:35:1071,1,"Condorcet",48.774742,2.549495,,1,,Europe/Paris,,OIF, +OIF:SA:35:1072,1,"Parc Corot",48.799021,2.532479,,1,,Europe/Paris,,OIF, +OIF:SA:35:1073,1,"Les Côteaux",48.78111,2.524024,,1,,Europe/Paris,,OIF, +OIF:SA:35:1076,1,"Pierre Curie",48.772548,2.545352,,1,,Europe/Paris,,OIF, +OIF:SA:35:1078,1,"Dauphine-Al. de la Chasse",48.756719,2.537743,,1,,Europe/Paris,,OIF, +OIF:SA:35:1080,1,"Général de Gaulle",48.788495,2.536017,,1,,Europe/Paris,,OIF, +OIF:SA:35:1082,1,"Place F. Doudot",48.769082,2.512473,,1,,Europe/Paris,,OIF, +OIF:SA:35:1086,1,"Henry Dunant",48.752462,2.52741,,1,,Europe/Paris,,OIF, +OIF:SA:35:1089,1,"Fontaine de Villiers",48.766601,2.54078,,1,,Europe/Paris,,OIF, +OIF:SA:35:1091,1,"Lys d'Or",48.767531,2.530015,,1,,Europe/Paris,,OIF, +OIF:SA:35:1093,1,"École Fosse Rouge",48.775726,2.528495,,1,,Europe/Paris,,OIF, +OIF:SA:35:1095,1,"Place Gambetta",48.778108,2.514462,,1,,Europe/Paris,,OIF, +OIF:SA:35:1096,1,"La Garenne",48.777285,2.5397,,1,,Europe/Paris,,OIF, +OIF:SA:35:1098,1,"Place Cauchy",48.774644,2.510779,,1,,Europe/Paris,,OIF, +OIF:SA:35:1100,1,"Georges Brassens",48.758147,2.494057,,1,,Europe/Paris,,OIF, +OIF:SA:35:1101,1,"Avenue Georges",48.801625,2.539762,,1,,Europe/Paris,,OIF, +OIF:SA:35:1102,1,"Géricault",48.776215,2.52373,,1,,Europe/Paris,,OIF, +OIF:SA:35:1104,1,"Gabriel Péri",48.762476,2.526923,,1,,Europe/Paris,,OIF, +OIF:SA:35:1107,1,"Hautes Varennes",48.7604,2.495858,,1,,Europe/Paris,,OIF, +OIF:SA:35:1108,1,"Mairie",48.748299,2.512552,,1,,Europe/Paris,,OIF, +OIF:SA:35:1112,1,"Mairie",48.794996,2.533393,,1,,Europe/Paris,,OIF, +OIF:SA:35:1113,1,"Centre Culturel",48.778709,2.548015,,1,,Europe/Paris,,OIF, +OIF:SA:35:1114,1,"Hôtel de Ville",48.771227,2.523447,,1,,Europe/Paris,,OIF, +OIF:SA:35:1116,1,"Jean Jaurès",48.775108,2.547079,,1,,Europe/Paris,,OIF, +OIF:SA:35:1120,1,"Jules Ferry",48.782908,2.532768,,1,,Europe/Paris,,OIF, +OIF:SA:35:1122,1,"Les Tourelles",48.782779,2.533356,,1,,Europe/Paris,,OIF, +OIF:SA:35:1124,1,"J.J. Rousseau",48.776094,2.514408,,1,,Europe/Paris,,OIF, +OIF:SA:35:1126,1,"Jean Moulin",48.775202,2.514405,,1,,Europe/Paris,,OIF, +OIF:SA:35:1128,1,"De Lattre de Tassigny",48.769304,2.536609,,1,,Europe/Paris,,OIF, +OIF:SA:35:1130,1,"Leclerc / Poste",48.796459,2.531308,,1,,Europe/Paris,,OIF, +OIF:SA:35:1131,1,"Route de Lésigny",48.760918,2.549601,,1,,Europe/Paris,,OIF, +OIF:SA:35:1133,1,"La Garennière",48.764156,2.535407,,1,,Europe/Paris,,OIF, +OIF:SA:35:1137,1,"Lycée Champlain",48.79862,2.556259,,1,,Europe/Paris,,OIF, +OIF:SA:35:1140,1,"Rue de Marolles",48.751126,2.534025,,1,,Europe/Paris,,OIF, +OIF:SA:35:1142,1,"Moutier Médiathèque",48.770599,2.519569,,1,,Europe/Paris,,OIF, +OIF:SA:35:1144,1,"Claude Monet",48.771983,2.549524,,1,,Europe/Paris,,OIF, +OIF:SA:35:1145,1,"Les Monrois",48.774103,2.529312,,1,,Europe/Paris,,OIF, +OIF:SA:35:1147,1,"Moulin de Touillon",48.776502,2.526777,,1,,Europe/Paris,,OIF, +OIF:SA:35:1150,1,"Moulin à Vent",48.76401,2.528751,,1,,Europe/Paris,,OIF, +OIF:SA:35:1152,1,"Notre-Dame Rue Royale",48.755688,2.535112,,1,,Europe/Paris,,OIF, +OIF:SA:35:1156,1,"Avenue Fort",48.771654,2.528881,,1,,Europe/Paris,,OIF, +OIF:SA:35:1158,1,"Rue de Noiseau",48.773277,2.530073,,1,,Europe/Paris,,OIF, +OIF:SA:35:1160,1,"Les Noyers",48.777573,2.511564,,1,,Europe/Paris,,OIF, +OIF:SA:35:1162,1,"Parc de Sucy",48.761617,2.533548,,1,,Europe/Paris,,OIF, +OIF:SA:35:1165,1,"La Patte d'Oie",48.759413,2.557031,,1,,Europe/Paris,,OIF, +OIF:SA:35:1168,1,"Pince-Vent",48.793341,2.55827,,1,,Europe/Paris,,OIF, +OIF:SA:35:1169,1,"Avenue du Piple",48.763422,2.516594,,1,,Europe/Paris,,OIF, +OIF:SA:35:1171,1,"Piscine",48.798813,2.558933,,1,,Europe/Paris,,OIF, +OIF:SA:35:1172,1,"Piscine",48.76929,2.534427,,1,,Europe/Paris,,OIF, +OIF:SA:35:1174,1,"Poste / Mairie",48.785961,2.540795,,1,,Europe/Paris,,OIF, +OIF:SA:35:1176,1,"Poste",48.77896,2.556398,,1,,Europe/Paris,,OIF, +OIF:SA:35:1177,1,"Jacques Prévert",48.769971,2.548632,,1,,Europe/Paris,,OIF, +OIF:SA:35:1178,1,"Procession",48.765787,2.528057,,1,,Europe/Paris,,OIF, +OIF:SA:35:1180,1,"Le Progrès",48.751331,2.517905,,1,,Europe/Paris,,OIF, +OIF:SA:35:1182,1,"Route de la Queue en Brie",48.762974,2.535429,,1,,Europe/Paris,,OIF, +OIF:SA:35:1185,1,"Léon Révillon",48.745439,2.512006,,1,,Europe/Paris,,OIF, +OIF:SA:35:1187,1,"Sonnettes",48.7968,2.548814,,1,,Europe/Paris,,OIF, +OIF:SA:35:1188,1,"Rond-Point",48.762103,2.529655,,1,,Europe/Paris,,OIF, +OIF:SA:35:1190,1,"Roosevelt",48.760021,2.546171,,1,,Europe/Paris,,OIF, +OIF:SA:35:1192,1,"Gaston Roulleau",48.753416,2.498652,,1,,Europe/Paris,,OIF, +OIF:SA:35:1193,1,"Rue Royale Route de Marolles",48.75852,2.553697,,1,,Europe/Paris,,OIF, +OIF:SA:35:1194,1,"Sablière",48.756318,2.496743,,1,,Europe/Paris,,OIF, +OIF:SA:35:1196,1,"Pôle Culturel",48.787568,2.544569,,1,,Europe/Paris,,OIF, +OIF:SA:35:1198,1,"Place Sainte-Bernadette",48.767221,2.532583,,1,,Europe/Paris,,OIF, +OIF:SA:35:1200,1,"Saint-Exupéry",48.791654,2.554223,,1,,Europe/Paris,,OIF, +OIF:SA:35:1204,1,"Émile Templier",48.779281,2.516846,,1,,Europe/Paris,,OIF, +OIF:SA:35:1205,1,"Les Tilleuls",48.759064,2.5305,,1,,Europe/Paris,,OIF, +OIF:SA:35:1207,1,"Victor Hugo",48.77871,2.520006,,1,,Europe/Paris,,OIF, +OIF:SA:35:1209,1,"Winston Churchill",48.765418,2.525092,,1,,Europe/Paris,,OIF, +OIF:SA:35:1217,1,"Le Fort",48.76958,2.530478,,1,,Europe/Paris,,OIF, +OIF:SA:35:1218,1,"Les Berges",48.783697,2.514984,,1,,Europe/Paris,,OIF, +OIF:SA:35:1219,1,"Stade",48.745826,2.508637,,1,,Europe/Paris,,OIF, +OIF:SA:35:1221,1,"Procession",48.7471,2.506867,,1,,Europe/Paris,,OIF, +OIF:SA:35:1223,1,"Louise Chenu - Henri Legros",48.749844,2.505503,,1,,Europe/Paris,,OIF, +OIF:SA:35:1229,1,"Centre Aéré",48.757343,2.53275,,1,,Europe/Paris,,OIF, +OIF:SA:35:1231,1,"Rond-Point du Piple",48.763989,2.513333,,1,,Europe/Paris,,OIF, +OIF:SA:35:1235,1,"Voltaire",48.782924,2.526515,,1,,Europe/Paris,,OIF, +OIF:SA:35:1236,1,"Maréchal Gallieni",48.781646,2.530693,,1,,Europe/Paris,,OIF, +OIF:SA:35:1238,1,"J. J.Rousseau",48.801931,2.549307,,1,,Europe/Paris,,OIF, +OIF:SA:35:1239,1,"Moulin Vert",48.804619,2.524186,,1,,Europe/Paris,,OIF, +OIF:SA:35:1240,1,"Lido",48.80191,2.524489,,1,,Europe/Paris,,OIF, +OIF:SA:35:1241,1,"Écu de France",48.797635,2.524664,,1,,Europe/Paris,,OIF, +OIF:SA:35:1242,1,"Clodoche",48.792367,2.523226,,1,,Europe/Paris,,OIF, +OIF:SA:35:1243,1,"Pont de Chennevières",48.790091,2.522765,,1,,Europe/Paris,,OIF, +OIF:SA:35:1248,1,"L'Ami Jules",48.756293,2.526608,,1,,Europe/Paris,,OIF, +OIF:SA:35:1252,1,"Marché du Bois Clary",48.753168,2.521907,,1,,Europe/Paris,,OIF, +OIF:SA:35:1256,1,"CES A. Dunois",48.751174,2.517632,,1,,Europe/Paris,,OIF, +OIF:SA:35:1260,1,"ZA 8 Mai 1945",48.758959,2.503358,,1,,Europe/Paris,,OIF, +OIF:SA:35:1262,1,"ZA Haie Griselle",48.760339,2.501475,,1,,Europe/Paris,,OIF, +OIF:SA:35:1264,1,"ZA les Champs",48.761953,2.499307,,1,,Europe/Paris,,OIF, +OIF:SA:35:1266,1,"Ateliers RATP de Sucy",48.765124,2.50256,,1,,Europe/Paris,,OIF, +OIF:SA:35:1271,1,"ZAC de la Sablière",48.766801,2.506329,,1,,Europe/Paris,,OIF, +OIF:SA:35:1274,1,"Charles de Gaulle",48.758202,2.499454,,1,,Europe/Paris,,OIF, +OIF:SA:35:1284,1,"Église",48.785032,2.578712,,1,,Europe/Paris,,OIF, +OIF:SA:35:1309,1,"Maréchal Leclerc",48.78615,2.538442,,1,,Europe/Paris,,OIF, +OIF:SA:35:1312,1,"Varennes",48.767338,2.505276,,1,,Europe/Paris,,OIF, +OIF:SA:35:1314,1,"Louis Thébault",48.765258,2.500711,,1,,Europe/Paris,,OIF, +OIF:SA:35:1316,1,"Marronniers",48.766678,2.493967,,1,,Europe/Paris,,OIF, +OIF:SA:35:1318,1,"Petits Carreaux",48.772089,2.49514,,1,,Europe/Paris,,OIF, +OIF:SA:35:1320,1,"Fief Cordelier",48.774017,2.495047,,1,,Europe/Paris,,OIF, +OIF:SA:35:1322,1,"Darde Sud",48.775648,2.491729,,1,,Europe/Paris,,OIF, +OIF:SA:35:1324,1,"Port de Bonneuil",48.779488,2.492436,,1,,Europe/Paris,,OIF, +OIF:SA:35:1326,1,"Moulin Bateau",48.781831,2.494415,,1,,Europe/Paris,,OIF, +OIF:SA:35:1328,1,"Darde Nord",48.782401,2.496031,,1,,Europe/Paris,,OIF, +OIF:SA:35:1330,1,"Île du Moulin Bateau",48.782789,2.499688,,1,,Europe/Paris,,OIF, +OIF:SA:35:1332,1,"Brétigny",48.783131,2.502998,,1,,Europe/Paris,,OIF, +OIF:SA:35:1334,1,"Morbras Triage",48.780454,2.505203,,1,,Europe/Paris,,OIF, +OIF:SA:35:1335,1,"Bureau du Port",48.782731,2.491966,,1,,Europe/Paris,,OIF, +OIF:SA:35:1337,1,"Le Havre",48.783843,2.48352,,1,,Europe/Paris,,OIF, +OIF:SA:35:1338,1,"Île Barbière",48.783094,2.487273,,1,,Europe/Paris,,OIF, +OIF:SA:35:50150,1,"Anjou",48.791824,2.580183,,1,,Europe/Paris,,OIF, +OIF:SA:35:50290,1,"Bellevue",48.802372,2.613307,,1,,Europe/Paris,,OIF, +OIF:SA:35:51750,1,"Gournay",48.789468,2.584718,,1,,Europe/Paris,,OIF, +OIF:SA:35:51910,1,"Mairie",48.789762,2.573211,,1,,Europe/Paris,,OIF, +OIF:SA:35:52400,1,"Les Bordes",48.791493,2.572791,,1,,Europe/Paris,,OIF, +OIF:SA:35:53260,1,"Pierre Lais",48.792395,2.591091,,1,,Europe/Paris,,OIF, +OIF:SA:35:53640,1,"Cinéma Apollo",48.803354,2.611248,,1,,Europe/Paris,,OIF, +OIF:SA:35:54410,1,"Mairie",48.800988,2.606945,,1,,Europe/Paris,,OIF, +OIF:SA:35:54430,1,"Médiathèque François Mitterrand",48.801843,2.610274,,1,,Europe/Paris,,OIF, +OIF:SA:35:578,1,"RN 4",48.781797,2.569095,,1,,Europe/Paris,,OIF, +OIF:SA:35:579,1,"Libération",48.782838,2.57613,,1,,Europe/Paris,,OIF, +OIF:SA:35:581,1,"Paul Valéry",48.787659,2.576364,,1,,Europe/Paris,,OIF, +OIF:SA:35:58800,1,"Clinique la Francilienne",48.800063,2.605247,,1,,Europe/Paris,,OIF, +OIF:SA:35:63740,1,"Les Roses",48.798251,2.601972,,1,,Europe/Paris,,OIF, +OIF:SA:35:63750,1,"Pierre de Coubertin",48.791871,2.576996,,1,,Europe/Paris,,OIF, +OIF:SA:35:63753,1,"Marché",48.804747,2.617701,,1,,Europe/Paris,,OIF, +OIF:SA:36:1001,1,"Charles Alby",48.80981,2.179407,,1,,Europe/Paris,,OIF, +OIF:SA:36:1003,1,"Boudet",48.815792,2.19063,,1,,Europe/Paris,,OIF, +OIF:SA:36:1004,1,"Bouquet",48.815287,2.196525,,1,,Europe/Paris,,OIF, +OIF:SA:36:1010,1,"Côteau",48.814973,2.189734,,1,,Europe/Paris,,OIF, +OIF:SA:36:1012,1,"Dauphine",48.816283,2.19497,,1,,Europe/Paris,,OIF, +OIF:SA:36:1013,1,"Fontaine Henri IV",48.810582,2.192632,,1,,Europe/Paris,,OIF, +OIF:SA:36:1014,1,"Jules Ferry",48.797424,2.192963,,1,,Europe/Paris,,OIF, +OIF:SA:36:1015,1,"Jean Jaurès",48.797483,2.190056,,1,,Europe/Paris,,OIF, +OIF:SA:36:1016,1,"Collège Jean Moulin",48.811178,2.183989,,1,,Europe/Paris,,OIF, +OIF:SA:36:1017,1,"Jonquille",48.81576,2.193339,,1,,Europe/Paris,,OIF, +OIF:SA:36:1018,1,"Père Komitas",48.807765,2.182679,,1,,Europe/Paris,,OIF, +OIF:SA:36:1019,1,"Lac",48.813191,2.195033,,1,,Europe/Paris,,OIF, +OIF:SA:36:1020,1,"Mare Adam",48.801894,2.188166,,1,,Europe/Paris,,OIF, +OIF:SA:36:1021,1,"Alexis Maneyrol",48.799932,2.193301,,1,,Europe/Paris,,OIF, +OIF:SA:36:1022,1,"Michelet",48.799451,2.197425,,1,,Europe/Paris,,OIF, +OIF:SA:36:1025,1,"Petits Bois",48.811424,2.183076,,1,,Europe/Paris,,OIF, +OIF:SA:36:1026,1,"Passerelle",48.814907,2.194389,,1,,Europe/Paris,,OIF, +OIF:SA:36:1029,1,"Paul Vaillant Couturier",48.809881,2.185571,,1,,Europe/Paris,,OIF, +OIF:SA:36:1031,1,"Sainte-Bernadette",48.800529,2.189204,,1,,Europe/Paris,,OIF, +OIF:SA:36:1032,1,"Stade - Gare RER C",48.799033,2.185589,,1,,Europe/Paris,,OIF, +OIF:SA:36:1033,1,"Saint-Paul",48.801889,2.188091,,1,,Europe/Paris,,OIF, +OIF:SA:36:1034,1,"Ursine",48.797527,2.196532,,1,,Europe/Paris,,OIF, +OIF:SA:36:2033,1,"Rû de Gally",48.815725,2.077536,,1,,Europe/Paris,,OIF, +OIF:SA:36:2034,1,"Santos Dumont",48.812929,2.078077,,1,,Europe/Paris,,OIF, +OIF:SA:36:2041,1,"Le Clos Saint-Cyr",48.80445,2.071697,,1,,Europe/Paris,,OIF, +OIF:SA:36:2044,1,"Charles Renard",48.806025,2.066338,,1,,Europe/Paris,,OIF, +OIF:SA:36:2046,1,"Cimetière",48.805129,2.06357,,1,,Europe/Paris,,OIF, +OIF:SA:36:2048,1,"Fontaine Saint-Martin",48.806726,2.060429,,1,,Europe/Paris,,OIF, +OIF:SA:36:2049,1,"Samuel de Champlain",48.806875,2.060104,,1,,Europe/Paris,,OIF, +OIF:SA:36:2050,1,"Jean Pierre Timbaud",48.809028,2.056423,,1,,Europe/Paris,,OIF, +OIF:SA:36:2052,1,"Aérostation Maritime",48.809342,2.055217,,1,,Europe/Paris,,OIF, +OIF:SA:36:2054,1,"Jean Macé",48.806419,2.055004,,1,,Europe/Paris,,OIF, +OIF:SA:36:2056,1,"Gérard Philippe",48.804255,2.053047,,1,,Europe/Paris,,OIF, +OIF:SA:36:2058,1,"Alfred Dreyfus",48.80232,2.056051,,1,,Europe/Paris,,OIF, +OIF:SA:36:2060,1,"Maison de l'Enfance",48.803152,2.055958,,1,,Europe/Paris,,OIF, +OIF:SA:36:2062,1,"Paul Flé",48.804531,2.057096,,1,,Europe/Paris,,OIF, +OIF:SA:36:2063,1,"Romain Rolland",48.806078,2.056303,,1,,Europe/Paris,,OIF, +OIF:SA:36:2064,1,"Lycée Jean Perrin",48.8031,2.058972,,1,,Europe/Paris,,OIF, +OIF:SA:36:2066,1,"Les P'Tits Pilotes",48.802836,2.059998,,1,,Europe/Paris,,OIF, +OIF:SA:36:2067,1,"Joliot Curie",48.800876,2.058909,,1,,Europe/Paris,,OIF, +OIF:SA:36:2069,1,"Gabriel Péri",48.801544,2.062116,,1,,Europe/Paris,,OIF, +OIF:SA:36:2071,1,"Parc de l'Abbaye",48.802558,2.061471,,1,,Europe/Paris,,OIF, +OIF:SA:36:2073,1,"Lycée Mansart",48.805138,2.064012,,1,,Europe/Paris,,OIF, +OIF:SA:36:2075,1,"Victor Hugo",48.799678,2.061766,,1,,Europe/Paris,,OIF, +OIF:SA:36:2077,1,"Yves Farge",48.802078,2.063903,,1,,Europe/Paris,,OIF, +OIF:SA:36:2078,1,"Jean Jaurès",48.800505,2.063802,,1,,Europe/Paris,,OIF, +OIF:SA:36:2079,1,"Église",48.799276,2.06472,,1,,Europe/Paris,,OIF, +OIF:SA:36:2080,1,"Mairie",48.800165,2.065651,,1,,Europe/Paris,,OIF, +OIF:SA:36:2087,1,"Émile Zola",48.798193,2.064719,,1,,Europe/Paris,,OIF, +OIF:SA:36:2090,1,"Les Deux Ponts",48.797507,2.059018,,1,,Europe/Paris,,OIF, +OIF:SA:36:2092,1,"Cité Croizat",48.796802,2.056006,,1,,Europe/Paris,,OIF, +OIF:SA:36:2093,1,"Les Cottages",48.795818,2.059902,,1,,Europe/Paris,,OIF, +OIF:SA:36:2094,1,"Rue Henri Barbusse",48.79519,2.064595,,1,,Europe/Paris,,OIF, +OIF:SA:36:2097,1,"Union",48.794477,2.067289,,1,,Europe/Paris,,OIF, +OIF:SA:36:2101,1,"Le Bois Robert",48.792764,2.066945,,1,,Europe/Paris,,OIF, +OIF:SA:36:2103,1,"École Bizet",48.794286,2.071004,,1,,Europe/Paris,,OIF, +OIF:SA:36:2105,1,"Francisco Ferrer",48.792099,2.070743,,1,,Europe/Paris,,OIF, +OIF:SA:36:2107,1,"Rue du Plateau",48.794055,2.069273,,1,,Europe/Paris,,OIF, +OIF:SA:36:2109,1,"Henri Wallon",48.794749,2.072056,,1,,Europe/Paris,,OIF, +OIF:SA:36:2110,1,"Bel Air",48.796309,2.072565,,1,,Europe/Paris,,OIF, +OIF:SA:36:2111,1,"Paul Vaillant Couturier",48.797317,2.072961,,1,,Europe/Paris,,OIF, +OIF:SA:36:2116,1,"La Poste",48.798501,2.067826,,1,,Europe/Paris,,OIF, +OIF:SA:36:2120,1,"Centre Aquatique",48.795603,2.062291,,1,,Europe/Paris,,OIF, +OIF:SA:36:2121,1,"Droits de l'Homme",48.785371,2.058917,,1,,Europe/Paris,,OIF, +OIF:SA:36:2123,1,"Centre Sportif",48.794438,2.063912,,1,,Europe/Paris,,OIF, +OIF:SA:36:2125,1,"Jean-Baptiste Lully",48.805648,2.069442,,1,,Europe/Paris,,OIF, +OIF:SA:3:1,1,"Bouletterie",48.530183,2.493071,,1,,Europe/Paris,,OIF, +OIF:SA:3:100,1,"Cols Verts",48.546483,2.42734,,1,,Europe/Paris,,OIF, +OIF:SA:3:1001,1,"Piscine",48.603498,2.485104,,1,,Europe/Paris,,OIF, +OIF:SA:3:1002,1,"Bas Coudray",48.605566,2.484961,,1,,Europe/Paris,,OIF, +OIF:SA:3:1003,1,"Chevallier",48.607247,2.485291,,1,,Europe/Paris,,OIF, +OIF:SA:3:1004,1,"Villoison",48.609059,2.487926,,1,,Europe/Paris,,OIF, +OIF:SA:3:1005,1,"Vieux Corbeil",48.611534,2.485832,,1,,Europe/Paris,,OIF, +OIF:SA:3:1006,1,"Saint-Guénault",48.61401,2.482491,,1,,Europe/Paris,,OIF, +OIF:SA:3:1007,1,"République",48.614305,2.47974,,1,,Europe/Paris,,OIF, +OIF:SA:3:1009,1,"Carnot",48.610133,2.476881,,1,,Europe/Paris,,OIF, +OIF:SA:3:101,1,"Eaux de la Vanne",48.575198,2.441065,,1,,Europe/Paris,,OIF, +OIF:SA:3:1010,1,"Médiathèque",48.606426,2.472805,,1,,Europe/Paris,,OIF, +OIF:SA:3:1011,1,"Palais des Sports",48.605152,2.469928,,1,,Europe/Paris,,OIF, +OIF:SA:3:1012,1,"Chantemerle",48.605425,2.46757,,1,,Europe/Paris,,OIF, +OIF:SA:3:1014,1,"Conservatoire",48.60421,2.464118,,1,,Europe/Paris,,OIF, +OIF:SA:3:1015,1,"Angoulême",48.601083,2.463575,,1,,Europe/Paris,,OIF, +OIF:SA:3:1016,1,"Rue de Paris",48.602582,2.469014,,1,,Europe/Paris,,OIF, +OIF:SA:3:1017,1,"Louis Robert",48.602533,2.472849,,1,,Europe/Paris,,OIF, +OIF:SA:3:1018,1,"Lamartine",48.602844,2.476184,,1,,Europe/Paris,,OIF, +OIF:SA:3:1019,1,"Castors",48.602293,2.478284,,1,,Europe/Paris,,OIF, +OIF:SA:3:1020,1,"René Pierre",48.600439,2.479796,,1,,Europe/Paris,,OIF, +OIF:SA:3:1021,1,"Maison de Retraite",48.602976,2.481925,,1,,Europe/Paris,,OIF, +OIF:SA:3:1025,1,"ZA les Haies Blanches",48.567344,2.465098,,1,,Europe/Paris,,OIF, +OIF:SA:3:1031,1,"Cassadamont",48.59622,2.478979,,1,,Europe/Paris,,OIF, +OIF:SA:3:1032,1,"Belvédère",48.599297,2.480213,,1,,Europe/Paris,,OIF, +OIF:SA:3:1033,1,"Stade",48.606777,2.483419,,1,,Europe/Paris,,OIF, +OIF:SA:3:1034,1,"Champlouis",48.609032,2.480389,,1,,Europe/Paris,,OIF, +OIF:SA:3:1036,1,"Parking Crêté",48.612863,2.479844,,1,,Europe/Paris,,OIF, +OIF:SA:3:1043,1,"Collège Senghor",48.615457,2.458906,,1,,Europe/Paris,,OIF, +OIF:SA:3:1048,1,"La Demi-Lune",48.576775,2.475776,,1,,Europe/Paris,,OIF, +OIF:SA:3:1049,1,"Centre de Formation",48.611051,2.44153,,1,,Europe/Paris,,OIF, +OIF:SA:3:1050,1,"SNECMA",48.61278,2.447458,,1,,Europe/Paris,,OIF, +OIF:SA:3:1065,1,"Edouard Petit",48.608088,2.481024,,1,,Europe/Paris,,OIF, +OIF:SA:3:107,1,"Gendarmerie",48.563778,2.429083,,1,,Europe/Paris,,OIF, +OIF:SA:3:1081,1,"Mairie",48.613418,2.481079,,1,,Europe/Paris,,OIF, +OIF:SA:3:1082,1,"Pont Patton",48.613818,2.484937,,1,,Europe/Paris,,OIF, +OIF:SA:3:1083,1,"Quai Riquiez",48.611316,2.488574,,1,,Europe/Paris,,OIF, +OIF:SA:3:1084,1,"Saintry Entrée",48.607273,2.492496,,1,,Europe/Paris,,OIF, +OIF:SA:3:1085,1,"Ruelle aux Sabots",48.602272,2.491864,,1,,Europe/Paris,,OIF, +OIF:SA:3:1086,1,"Rue de l'Église",48.599713,2.492595,,1,,Europe/Paris,,OIF, +OIF:SA:3:1105,1,"Rue R. Brunot",48.588794,2.471831,,1,,Europe/Paris,,OIF, +OIF:SA:3:1106,1,"Rue des Caillettes",48.593184,2.469525,,1,,Europe/Paris,,OIF, +OIF:SA:3:1107,1,"Papeterie",48.594655,2.468336,,1,,Europe/Paris,,OIF, +OIF:SA:3:1108,1,"La Nacelle",48.598601,2.464572,,1,,Europe/Paris,,OIF, +OIF:SA:3:111,1,"Jeannotte",48.567594,2.444456,,1,,Europe/Paris,,OIF, +OIF:SA:3:1113,1,"MJC",48.609705,2.474589,,1,,Europe/Paris,,OIF, +OIF:SA:3:1126,1,"Allée de l'Essonne",48.602869,2.461675,,1,,Europe/Paris,,OIF, +OIF:SA:3:1127,1,"CES la Nacelle",48.595931,2.460235,,1,,Europe/Paris,,OIF, +OIF:SA:3:1129,1,"Gabriel Péri",48.59035,2.459145,,1,,Europe/Paris,,OIF, +OIF:SA:3:1130,1,"Église",48.588828,2.456872,,1,,Europe/Paris,,OIF, +OIF:SA:3:1131,1,"Rue des Mésanges",48.585126,2.45979,,1,,Europe/Paris,,OIF, +OIF:SA:3:1132,1,"Pavillons des Linottes",48.583543,2.460911,,1,,Europe/Paris,,OIF, +OIF:SA:3:1133,1,"Gymnase",48.58491,2.456172,,1,,Europe/Paris,,OIF, +OIF:SA:3:1134,1,"Chemin des Prés",48.587376,2.453359,,1,,Europe/Paris,,OIF, +OIF:SA:3:1135,1,"Collège",48.59035,2.449443,,1,,Europe/Paris,,OIF, +OIF:SA:3:1136,1,"KFC",48.59079,2.441137,,1,,Europe/Paris,,OIF, +OIF:SA:3:1137,1,"Les Brateaux",48.58792,2.44357,,1,,Europe/Paris,,OIF, +OIF:SA:3:1148,1,"Rue du 14 Juillet",48.615623,2.4832,,1,,Europe/Paris,,OIF, +OIF:SA:3:1149,1,"La Fontaine",48.630935,2.468692,,1,,Europe/Paris,,OIF, +OIF:SA:3:115,1,"Lycée Marie Laurencin",48.563961,2.438815,,1,,Europe/Paris,,OIF, +OIF:SA:3:1150,1,"Lycées",48.634318,2.46508,,1,,Europe/Paris,,OIF, +OIF:SA:3:116,1,"Piscine",48.553825,2.418375,,1,,Europe/Paris,,OIF, +OIF:SA:3:1176,1,"Résidence la Nacelle",48.596535,2.466654,,1,,Europe/Paris,,OIF, +OIF:SA:3:1179,1,"Château",48.573128,2.408124,,1,,Europe/Paris,,OIF, +OIF:SA:3:118,1,"Porcelaine",48.547663,2.424722,,1,,Europe/Paris,,OIF, +OIF:SA:3:1180,1,"Croix Boissée",48.572073,2.360549,,1,,Europe/Paris,,OIF, +OIF:SA:3:1181,1,"Place de la Mairie",48.551283,2.366728,,1,,Europe/Paris,,OIF, +OIF:SA:3:1183,1,"Place Duquesne",48.539719,2.361178,,1,,Europe/Paris,,OIF, +OIF:SA:3:1191,1,"Salvador Allendé",48.597747,2.47657,,1,,Europe/Paris,,OIF, +OIF:SA:3:120,1,"La Poste",48.563189,2.431757,,1,,Europe/Paris,,OIF, +OIF:SA:3:125,1,"Rond-Point de Verville",48.551408,2.422657,,1,,Europe/Paris,,OIF, +OIF:SA:3:127,1,"Sangliers",48.546915,2.432723,,1,,Europe/Paris,,OIF, +OIF:SA:3:129,1,"Stade",48.564137,2.43503,,1,,Europe/Paris,,OIF, +OIF:SA:3:132,1,"Tournenfils",48.57135,2.449284,,1,,Europe/Paris,,OIF, +OIF:SA:3:133,1,"Les Vanneaux",48.547631,2.43617,,1,,Europe/Paris,,OIF, +OIF:SA:3:137,1,"ZAC Montvrain",48.565299,2.447005,,1,,Europe/Paris,,OIF, +OIF:SA:3:140,1,"Mairie de Morsang",48.571162,2.4936,,1,,Europe/Paris,,OIF, +OIF:SA:3:141,1,"Château",48.507043,2.493793,,1,,Europe/Paris,,OIF, +OIF:SA:3:144,1,"Église",48.576308,2.446161,,1,,Europe/Paris,,OIF, +OIF:SA:3:148,1,"Moques Tonneaux",48.572601,2.454477,,1,,Europe/Paris,,OIF, +OIF:SA:3:15,1,"Hôpital Georges Clemenceau",48.523106,2.432273,,1,,Europe/Paris,,OIF, +OIF:SA:3:150,1,"Roissy Haut",48.569571,2.458696,,1,,Europe/Paris,,OIF, +OIF:SA:3:152,1,"Les Rochers",48.57372,2.459025,,1,,Europe/Paris,,OIF, +OIF:SA:3:154,1,"Val d'Ormoy",48.574904,2.452674,,1,,Europe/Paris,,OIF, +OIF:SA:3:161,1,"Mairie de Saintry",48.59663,2.492715,,1,,Europe/Paris,,OIF, +OIF:SA:3:178,1,"ZAC des Haies Blanches",48.567344,2.465098,,1,,Europe/Paris,,OIF, +OIF:SA:3:180,1,"Aqueduc",48.532014,2.438719,,1,,Europe/Paris,,OIF, +OIF:SA:3:182,1,"Esat",48.538075,2.441045,,1,,Europe/Paris,,OIF, +OIF:SA:3:183,1,"Rond-Point des Cèdres",48.534046,2.443216,,1,,Europe/Paris,,OIF, +OIF:SA:3:185,1,"Collège Olympe de Gouges",48.518472,2.447136,,1,,Europe/Paris,,OIF, +OIF:SA:3:186,1,"Place Adeline",48.496777,2.467082,,1,,Europe/Paris,,OIF, +OIF:SA:3:187,1,"Stade",48.517801,2.444076,,1,,Europe/Paris,,OIF, +OIF:SA:3:190,1,"Fontenay - Grande Rue",48.54915,2.405038,,1,,Europe/Paris,,OIF, +OIF:SA:3:191,1,"Champs Fleuris",48.555345,2.436579,,1,,Europe/Paris,,OIF, +OIF:SA:3:192,1,"Chevannes-Seigneurie",48.550853,2.437627,,1,,Europe/Paris,,OIF, +OIF:SA:3:196,1,"Créapôle 2",48.567371,2.44793,,1,,Europe/Paris,,OIF, +OIF:SA:3:198,1,"Verville Seigneurie",48.553312,2.431286,,1,,Europe/Paris,,OIF, +OIF:SA:3:200,1,"Supermarché",48.565556,2.451394,,1,,Europe/Paris,,OIF, +OIF:SA:3:202,1,"Belle Etoile",48.570229,2.45614,,1,,Europe/Paris,,OIF, +OIF:SA:3:205,1,"Jardins d'Ormoy",48.574624,2.448989,,1,,Europe/Paris,,OIF, +OIF:SA:3:207,1,"C.Cial Saule Saint-Jacques",48.571142,2.465676,,1,,Europe/Paris,,OIF, +OIF:SA:3:209,1,"Cinéma",48.562214,2.448854,,1,,Europe/Paris,,OIF, +OIF:SA:3:28,1,"Lycée R.Doisneau",48.613821,2.458387,,1,,Europe/Paris,,OIF, +OIF:SA:3:3,1,"La Mare",48.527734,2.492766,,1,,Europe/Paris,,OIF, +OIF:SA:3:43,1,"La Bigotte",48.513133,2.451069,,1,,Europe/Paris,,OIF, +OIF:SA:3:46,1,"Ferrante",48.497701,2.46933,,1,,Europe/Paris,,OIF, +OIF:SA:3:47,1,"IME",48.511375,2.460211,,1,,Europe/Paris,,OIF, +OIF:SA:3:49,1,"Louteville Pavillons",48.509166,2.466971,,1,,Europe/Paris,,OIF, +OIF:SA:3:51,1,"Mairie",48.515387,2.444789,,1,,Europe/Paris,,OIF, +OIF:SA:3:54,1,"La Martinière",48.575251,2.412604,,1,,Europe/Paris,,OIF, +OIF:SA:3:55,1,"Lycée Hôtelier",48.63426,2.465161,,1,,Europe/Paris,,OIF, +OIF:SA:3:58,1,"Lycée Notre-Dame de Sion",48.641584,2.434077,,1,,Europe/Paris,,OIF, +OIF:SA:3:59,1,"Lycée Baudelaire",48.637665,2.434172,,1,,Europe/Paris,,OIF, +OIF:SA:3:66,1,"Stade",48.551307,2.409201,,1,,Europe/Paris,,OIF, +OIF:SA:3:80,1,"Acacias",48.568361,2.441417,,1,,Europe/Paris,,OIF, +OIF:SA:3:82,1,"Bel Air",48.569438,2.438202,,1,,Europe/Paris,,OIF, +OIF:SA:3:85,1,"Buisson Houdard",48.570344,2.445092,,1,,Europe/Paris,,OIF, +OIF:SA:3:86,1,"Centre Commercial",48.553961,2.429344,,1,,Europe/Paris,,OIF, +OIF:SA:3:88,1,"Les Cèdres",48.560478,2.434698,,1,,Europe/Paris,,OIF, +OIF:SA:3:90,1,"Collège Villeroy",48.56519,2.427664,,1,,Europe/Paris,,OIF, +OIF:SA:3:91,1,"Les Chatries",48.566512,2.426637,,1,,Europe/Paris,,OIF, +OIF:SA:3:95,1,"Clos Manoir",48.574041,2.438008,,1,,Europe/Paris,,OIF, +OIF:SA:40:10,1,"Marché-Touleuses",49.030615,2.082183,,1,,Europe/Paris,,OIF, +OIF:SA:40:100,1,"Les Grouettes",49.032081,2.068639,,1,,Europe/Paris,,OIF, +OIF:SA:40:103,1,"La Constellation",49.05117,2.031511,,1,,Europe/Paris,,OIF, +OIF:SA:40:104,1,"Chemin du Soleil",49.051852,2.028226,,1,,Europe/Paris,,OIF, +OIF:SA:40:105,1,"Le Bontemps",49.052539,2.022869,,1,,Europe/Paris,,OIF, +OIF:SA:40:106,1,"Le Hazay",49.053034,2.017896,,1,,Europe/Paris,,OIF, +OIF:SA:40:108,1,"Les Grès",49.04929,2.004262,,1,,Europe/Paris,,OIF, +OIF:SA:40:11,1,"Les Touleuses",49.030753,2.079641,,1,,Europe/Paris,,OIF, +OIF:SA:40:110,1,"Rond-Point du Miroir",49.045003,2.005609,,1,,Europe/Paris,,OIF, +OIF:SA:40:111,1,"Les Coudraies",49.042129,2.004821,,1,,Europe/Paris,,OIF, +OIF:SA:40:112,1,"Place C. Girard",49.035247,2.000389,,1,,Europe/Paris,,OIF, +OIF:SA:40:113,1,"Square du 19 Mars 1962",49.027818,1.984052,,1,,Europe/Paris,,OIF, +OIF:SA:40:114,1,"Croix du Jubilé",49.026735,1.981176,,1,,Europe/Paris,,OIF, +OIF:SA:40:12,1,"Chât. Saint-Sylvère",49.030808,2.076005,,1,,Europe/Paris,,OIF, +OIF:SA:40:13,1,"Conseil Départe.",49.031825,2.074374,,1,,Europe/Paris,,OIF, +OIF:SA:40:131,1,"Mondétour",49.047514,2.030924,,1,,Europe/Paris,,OIF, +OIF:SA:40:132,1,"Lycée Saint-Christ.",49.044927,2.031056,,1,,Europe/Paris,,OIF, +OIF:SA:40:133,1,"Avenue du Terroir",49.047614,2.017424,,1,,Europe/Paris,,OIF, +OIF:SA:40:136,1,"Auguste Blanqui",49.030961,2.015053,,1,,Europe/Paris,,OIF, +OIF:SA:40:137,1,"Le Boulingrin",49.026554,2.01698,,1,,Europe/Paris,,OIF, +OIF:SA:40:138,1,"Simone Signoret",49.024134,2.019482,,1,,Europe/Paris,,OIF, +OIF:SA:40:14,1,"Les Plants",49.0336,2.080959,,1,,Europe/Paris,,OIF, +OIF:SA:40:140,1,"Mendès France",49.023099,2.027309,,1,,Europe/Paris,,OIF, +OIF:SA:40:141,1,"Georges Brassens",49.020414,2.026398,,1,,Europe/Paris,,OIF, +OIF:SA:40:142,1,"Rue des Valanchards",49.020954,2.022382,,1,,Europe/Paris,,OIF, +OIF:SA:40:143,1,"La Siaule",49.02095,2.016878,,1,,Europe/Paris,,OIF, +OIF:SA:40:144,1,"Parc Saint-Christ.",49.042215,2.030265,,1,,Europe/Paris,,OIF, +OIF:SA:40:158,1,"Marcouville",49.049564,2.080796,,1,,Europe/Paris,,OIF, +OIF:SA:40:159,1,"Croix Saint-Siméon",49.063815,2.088987,,1,,Europe/Paris,,OIF, +OIF:SA:40:16,1,"Plat. Saint-Martin",49.043812,2.084722,,1,,Europe/Paris,,OIF, +OIF:SA:40:160,1,"Avenue de Normandie",49.061346,2.090305,,1,,Europe/Paris,,OIF, +OIF:SA:40:161,1,"Place de la Paix",49.058496,2.089245,,1,,Europe/Paris,,OIF, +OIF:SA:40:162,1,"Boblingen",49.061674,2.087947,,1,,Europe/Paris,,OIF, +OIF:SA:40:163,1,"Alsace Bretagne",49.062953,2.0915,,1,,Europe/Paris,,OIF, +OIF:SA:40:164,1,"Hôpital René Dubos",49.063441,2.094134,,1,,Europe/Paris,,OIF, +OIF:SA:40:165,1,"Les Beurriers",49.058011,2.098456,,1,,Europe/Paris,,OIF, +OIF:SA:40:166,1,"Mai. de Retraite",49.060384,2.096661,,1,,Europe/Paris,,OIF, +OIF:SA:40:167,1,"Hôpital-Admin.",49.061201,2.093881,,1,,Europe/Paris,,OIF, +OIF:SA:40:177,1,"Paul Cézanne",49.058698,2.095869,,1,,Europe/Paris,,OIF, +OIF:SA:40:179,1,"Place Notre-Dame",49.049306,2.092973,,1,,Europe/Paris,,OIF, +OIF:SA:40:18,1,"Les Croizettes",49.045767,1.999186,,1,,Europe/Paris,,OIF, +OIF:SA:40:180,1,"Les Lavandières",49.049636,2.089363,,1,,Europe/Paris,,OIF, +OIF:SA:40:181,1,"E. de Martimprey",49.049469,2.084879,,1,,Europe/Paris,,OIF, +OIF:SA:40:182,1,"M.L de Tassigny",49.048378,2.083299,,1,,Europe/Paris,,OIF, +OIF:SA:40:183,1,"Ampère",49.048319,2.078508,,1,,Europe/Paris,,OIF, +OIF:SA:40:185,1,"Falaise",49.050472,2.074867,,1,,Europe/Paris,,OIF, +OIF:SA:40:186,1,"Beaux Soleils",49.052061,2.072179,,1,,Europe/Paris,,OIF, +OIF:SA:40:187,1,"Avenue des Arpents",49.052343,2.069628,,1,,Europe/Paris,,OIF, +OIF:SA:40:188,1,"Jules César",49.052843,2.064328,,1,,Europe/Paris,,OIF, +OIF:SA:40:189,1,"J.C/G.de Gaulle",49.05397,2.063219,,1,,Europe/Paris,,OIF, +OIF:SA:40:190,1,"Rue de Gency",49.055121,2.060398,,1,,Europe/Paris,,OIF, +OIF:SA:40:191,1,"La Ravinière",49.057108,2.066181,,1,,Europe/Paris,,OIF, +OIF:SA:40:192,1,"Les Pâtis",49.059511,2.068613,,1,,Europe/Paris,,OIF, +OIF:SA:40:20,1,"Fief à Cavan",49.047555,2.008825,,1,,Europe/Paris,,OIF, +OIF:SA:40:208,1,"Sq. des Artistes",49.061248,2.065774,,1,,Europe/Paris,,OIF, +OIF:SA:40:210,1,"Le Vauvarois",49.061909,2.050605,,1,,Europe/Paris,,OIF, +OIF:SA:40:211,1,"La Bruyère",49.058719,2.048483,,1,,Europe/Paris,,OIF, +OIF:SA:40:212,1,"Plai. des Sports",49.054482,2.046722,,1,,Europe/Paris,,OIF, +OIF:SA:40:213,1,"Petit Albi",49.054094,2.044236,,1,,Europe/Paris,,OIF, +OIF:SA:40:214,1,"Les Genottes",49.054916,2.040342,,1,,Europe/Paris,,OIF, +OIF:SA:40:215,1,"Les Cascades",49.055506,2.035772,,1,,Europe/Paris,,OIF, +OIF:SA:40:216,1,"P. de l'Horloge",49.054811,2.032542,,1,,Europe/Paris,,OIF, +OIF:SA:40:23,1,"Marjoberts",49.041173,2.073793,,1,,Europe/Paris,,OIF, +OIF:SA:40:232,1,"Avenue 1er Dragon",49.04253,2.090463,,1,,Europe/Paris,,OIF, +OIF:SA:40:233,1,"Lycée Kastler",49.035256,2.086192,,1,,Europe/Paris,,OIF, +OIF:SA:40:234,1,"Chemin Dupuis",49.03667,2.071055,,1,,Europe/Paris,,OIF, +OIF:SA:40:235,1,"La Croix Petit",49.036624,2.068671,,1,,Europe/Paris,,OIF, +OIF:SA:40:236,1,"Le Ponceau",49.038254,2.068115,,1,,Europe/Paris,,OIF, +OIF:SA:40:237,1,"Les Chênes",49.040409,2.069314,,1,,Europe/Paris,,OIF, +OIF:SA:40:238,1,"Linandes Vertes",49.042414,2.068128,,1,,Europe/Paris,,OIF, +OIF:SA:40:239,1,"Le Collège",49.0434,2.062758,,1,,Europe/Paris,,OIF, +OIF:SA:40:24,1,"Cité Artisanale",49.044358,2.07049,,1,,Europe/Paris,,OIF, +OIF:SA:40:240,1,"Clos Couturier",49.043699,2.05804,,1,,Europe/Paris,,OIF, +OIF:SA:40:241,1,"La Justice",49.044451,2.055076,,1,,Europe/Paris,,OIF, +OIF:SA:40:242,1,"La Sébille",49.047342,2.051907,,1,,Europe/Paris,,OIF, +OIF:SA:40:245,1,"Moulin à Vent",49.054,2.026476,,1,,Europe/Paris,,OIF, +OIF:SA:40:246,1,"Puiseux",49.05484,2.017837,,1,,Europe/Paris,,OIF, +OIF:SA:40:247,1,"Jules Verne",49.054193,2.014662,,1,,Europe/Paris,,OIF, +OIF:SA:40:25,1,"Linandes Oranges",49.046614,2.065522,,1,,Europe/Paris,,OIF, +OIF:SA:40:26,1,"Les Heuruelles",49.047233,2.055546,,1,,Europe/Paris,,OIF, +OIF:SA:40:264,1,"Les Dames Gilles",49.029863,2.033441,,1,,Europe/Paris,,OIF, +OIF:SA:40:265,1,"Les Doucerons",49.026707,2.036404,,1,,Europe/Paris,,OIF, +OIF:SA:40:266,1,"Le Lavoir",49.022289,2.041055,,1,,Europe/Paris,,OIF, +OIF:SA:40:267,1,"La Vallée",49.019427,2.043203,,1,,Europe/Paris,,OIF, +OIF:SA:40:268,1,"Église",49.016,2.04728,,1,,Europe/Paris,,OIF, +OIF:SA:40:269,1,"Croix Saint-Jacques",49.012143,2.053077,,1,,Europe/Paris,,OIF, +OIF:SA:40:277,1,"Brûloir-Hautil",49.03026,2.070043,,1,,Europe/Paris,,OIF, +OIF:SA:40:278,1,"Île-de-Loisirs",49.022576,2.055804,,1,,Europe/Paris,,OIF, +OIF:SA:40:279,1,"Le Stade",49.018287,2.052678,,1,,Europe/Paris,,OIF, +OIF:SA:40:280,1,"Le Pont",49.014643,2.058378,,1,,Europe/Paris,,OIF, +OIF:SA:40:282,1,"Vignes Blanches",49.011186,2.05021,,1,,Europe/Paris,,OIF, +OIF:SA:40:284,1,"Les Éguérets",49.012011,2.043432,,1,,Europe/Paris,,OIF, +OIF:SA:40:285,1,"Cornouillers",49.013962,2.041248,,1,,Europe/Paris,,OIF, +OIF:SA:40:286,1,"Le Temps Perdu",49.01225,2.034564,,1,,Europe/Paris,,OIF, +OIF:SA:40:288,1,"Les Tremblays",49.01343,2.027594,,1,,Europe/Paris,,OIF, +OIF:SA:40:290,1,"Les Toupets",49.024352,2.029141,,1,,Europe/Paris,,OIF, +OIF:SA:40:291,1,"Henri Guillaumet",49.008216,2.044844,,1,,Europe/Paris,,OIF, +OIF:SA:40:292,1,"Les Bruzacques",49.006299,2.044716,,1,,Europe/Paris,,OIF, +OIF:SA:40:293,1,"Souhaits",49.006118,2.040692,,1,,Europe/Paris,,OIF, +OIF:SA:40:294,1,"La Hayette",49.005873,2.03726,,1,,Europe/Paris,,OIF, +OIF:SA:40:295,1,"Denis Papin",49.007365,2.033245,,1,,Europe/Paris,,OIF, +OIF:SA:40:296,1,"Les Merisiers",49.010428,2.028931,,1,,Europe/Paris,,OIF, +OIF:SA:40:297,1,"Gabriel Faure",49.0093,2.025481,,1,,Europe/Paris,,OIF, +OIF:SA:40:298,1,"Écancourt",49.006421,2.017391,,1,,Europe/Paris,,OIF, +OIF:SA:40:299,1,"Les Forbœufs",49.0083,2.035115,,1,,Europe/Paris,,OIF, +OIF:SA:40:30,1,"Rond-Point du Tilleul",49.042806,2.032797,,1,,Europe/Paris,,OIF, +OIF:SA:40:300,1,"Théâtre de Jouy",49.010383,2.039757,,1,,Europe/Paris,,OIF, +OIF:SA:40:31,1,"Rond-Point du Cèdre",49.043422,2.029281,,1,,Europe/Paris,,OIF, +OIF:SA:40:32,1,"Avenue de l'Embellie",49.044969,2.026435,,1,,Europe/Paris,,OIF, +OIF:SA:40:323,1,"Avenue de l'Est",49.031572,2.088636,,1,,Europe/Paris,,OIF, +OIF:SA:40:324,1,"Ecluse",49.027032,2.097811,,1,,Europe/Paris,,OIF, +OIF:SA:40:325,1,"La Danne",49.024909,2.102121,,1,,Europe/Paris,,OIF, +OIF:SA:40:326,1,"Ch. de Gaulle",49.023952,2.106956,,1,,Europe/Paris,,OIF, +OIF:SA:40:327,1,"Route de Pierrelaye",49.022125,2.109737,,1,,Europe/Paris,,OIF, +OIF:SA:40:328,1,"Les Dix Arpents",49.0198,2.108689,,1,,Europe/Paris,,OIF, +OIF:SA:40:329,1,"Le Grillon",49.018935,2.112306,,1,,Europe/Paris,,OIF, +OIF:SA:40:330,1,"Roger Salengro",49.016576,2.109857,,1,,Europe/Paris,,OIF, +OIF:SA:40:331,1,"Parc Urbain",49.017269,2.106077,,1,,Europe/Paris,,OIF, +OIF:SA:40:332,1,"Les Rayes",49.018501,2.103755,,1,,Europe/Paris,,OIF, +OIF:SA:40:333,1,"La Challe",49.018117,2.100662,,1,,Europe/Paris,,OIF, +OIF:SA:40:334,1,"Pincevents",49.017755,2.097139,,1,,Europe/Paris,,OIF, +OIF:SA:40:337,1,"Al. du sous-Bois",49.027958,2.105885,,1,,Europe/Paris,,OIF, +OIF:SA:40:338,1,"Le Gros Chêne",49.025796,2.110309,,1,,Europe/Paris,,OIF, +OIF:SA:40:339,1,"F. Châtelain",49.02461,2.112339,,1,,Europe/Paris,,OIF, +OIF:SA:40:34,1,"Les Essarts",49.043992,2.018888,,1,,Europe/Paris,,OIF, +OIF:SA:40:341,1,"Miramène",49.030281,2.098762,,1,,Europe/Paris,,OIF, +OIF:SA:40:342,1,"Art-de-Vivre",49.032066,2.101589,,1,,Europe/Paris,,OIF, +OIF:SA:40:357,1,"Les Larris",49.032736,2.088856,,1,,Europe/Paris,,OIF, +OIF:SA:40:358,1,"Palette",49.033668,2.087587,,1,,Europe/Paris,,OIF, +OIF:SA:40:359,1,"Oise-Hautil",49.034419,2.083538,,1,,Europe/Paris,,OIF, +OIF:SA:40:36,1,"L'Orangerie",49.044697,2.010491,,1,,Europe/Paris,,OIF, +OIF:SA:40:367,1,"Jules César",49.036588,2.112407,,1,,Europe/Paris,,OIF, +OIF:SA:40:368,1,"Dauphiné",49.034293,2.11047,,1,,Europe/Paris,,OIF, +OIF:SA:40:369,1,"Aquitaine",49.034614,2.106758,,1,,Europe/Paris,,OIF, +OIF:SA:40:370,1,"Rue du Parc",49.037562,2.104571,,1,,Europe/Paris,,OIF, +OIF:SA:40:371,1,"Verdun",49.04042,2.104798,,1,,Europe/Paris,,OIF, +OIF:SA:40:372,1,"Mairie",49.045095,2.107575,,1,,Europe/Paris,,OIF, +OIF:SA:40:373,1,"La Poste",49.046506,2.106083,,1,,Europe/Paris,,OIF, +OIF:SA:40:374,1,"Pradine",49.048697,2.109921,,1,,Europe/Paris,,OIF, +OIF:SA:40:375,1,"Epluches",49.052608,2.115865,,1,,Europe/Paris,,OIF, +OIF:SA:40:376,1,"Henri Becquerel",49.056148,2.123117,,1,,Europe/Paris,,OIF, +OIF:SA:40:377,1,"La Chapelle",49.059723,2.127546,,1,,Europe/Paris,,OIF, +OIF:SA:40:378,1,"Le Clos Borgne",49.063951,2.135208,,1,,Europe/Paris,,OIF, +OIF:SA:40:379,1,"La Tréate",49.062832,2.143512,,1,,Europe/Paris,,OIF, +OIF:SA:40:38,1,"Fief à Cavan",49.047183,2.007802,,1,,Europe/Paris,,OIF, +OIF:SA:40:380,1,"Fond de Vaux",49.05702,2.145583,,1,,Europe/Paris,,OIF, +OIF:SA:40:381,1,"Res. de Vaux",49.058031,2.158715,,1,,Europe/Paris,,OIF, +OIF:SA:40:382,1,"Bonneville",49.058897,2.163534,,1,,Europe/Paris,,OIF, +OIF:SA:40:383,1,"Les Roches",49.059985,2.16803,,1,,Europe/Paris,,OIF, +OIF:SA:40:384,1,"Rue Molière",49.061689,2.175077,,1,,Europe/Paris,,OIF, +OIF:SA:40:385,1,"Thérèse Lethias",49.062983,2.181883,,1,,Europe/Paris,,OIF, +OIF:SA:40:386,1,"Mairie",49.063454,2.186487,,1,,Europe/Paris,,OIF, +OIF:SA:40:387,1,"Camille Plaquet",49.058575,2.18901,,1,,Europe/Paris,,OIF, +OIF:SA:40:410,1,"M. Luther King",49.054107,2.124773,,1,,Europe/Paris,,OIF, +OIF:SA:40:411,1,"Avenue du Château",49.053524,2.130388,,1,,Europe/Paris,,OIF, +OIF:SA:40:412,1,"Vert Galant",49.0515,2.132966,,1,,Europe/Paris,,OIF, +OIF:SA:40:417,1,"Clos du Roi",49.041912,2.111947,,1,,Europe/Paris,,OIF, +OIF:SA:40:418,1,"M. de l'Hospital",49.040008,2.115256,,1,,Europe/Paris,,OIF, +OIF:SA:40:419,1,"Lycée Edmond Rostand",49.038419,2.117988,,1,,Europe/Paris,,OIF, +OIF:SA:40:420,1,"Louis Delage",49.035637,2.122683,,1,,Europe/Paris,,OIF, +OIF:SA:40:422,1,"Marcel Dassault",49.040447,2.134643,,1,,Europe/Paris,,OIF, +OIF:SA:40:423,1,"Les Bourseaux",49.047517,2.125661,,1,,Europe/Paris,,OIF, +OIF:SA:40:424,1,"Rue Saint-Hilaire",49.050331,2.126231,,1,,Europe/Paris,,OIF, +OIF:SA:40:425,1,"Guivernone",49.052165,2.126975,,1,,Europe/Paris,,OIF, +OIF:SA:40:426,1,"Antoine Balard",49.052807,2.136926,,1,,Europe/Paris,,OIF, +OIF:SA:40:427,1,"Avenue des Gros Chevaux",49.053952,2.140767,,1,,Europe/Paris,,OIF, +OIF:SA:40:428,1,"Les Sablons",49.055381,2.136465,,1,,Europe/Paris,,OIF, +OIF:SA:40:429,1,"Lycée Jean Perrin",49.058231,2.13165,,1,,Europe/Paris,,OIF, +OIF:SA:40:430,1,"Stade Christian Léon",49.072572,2.070631,,1,,Europe/Paris,,OIF, +OIF:SA:40:431,1,"Lyc.Cli.Saint-Marie",49.074566,2.07216,,1,,Europe/Paris,,OIF, +OIF:SA:40:432,1,"Oseraie",49.07708,2.076091,,1,,Europe/Paris,,OIF, +OIF:SA:40:433,1,"Demi Lieue",49.071553,2.081339,,1,,Europe/Paris,,OIF, +OIF:SA:40:453,1,"Avenue de la Mare",49.0417,2.136842,,1,,Europe/Paris,,OIF, +OIF:SA:40:454,1,"Compas",49.040848,2.14041,,1,,Europe/Paris,,OIF, +OIF:SA:40:455,1,"Palmer",49.039222,2.143409,,1,,Europe/Paris,,OIF, +OIF:SA:40:456,1,"Béthunes Sud",49.037689,2.148664,,1,,Europe/Paris,,OIF, +OIF:SA:40:457,1,"Aurore",49.03972,2.152039,,1,,Europe/Paris,,OIF, +OIF:SA:40:458,1,"Hautes Bornes",49.042879,2.15496,,1,,Europe/Paris,,OIF, +OIF:SA:40:459,1,"Bois du Fief",49.046279,2.148366,,1,,Europe/Paris,,OIF, +OIF:SA:40:460,1,"Artois",49.045671,2.144513,,1,,Europe/Paris,,OIF, +OIF:SA:40:461,1,"Bretagne",49.047597,2.143617,,1,,Europe/Paris,,OIF, +OIF:SA:40:462,1,"Bourgogne",49.047571,2.141259,,1,,Europe/Paris,,OIF, +OIF:SA:40:463,1,"Languedoc",49.045591,2.139804,,1,,Europe/Paris,,OIF, +OIF:SA:40:464,1,"Les Béthunes",49.046367,2.136202,,1,,Europe/Paris,,OIF, +OIF:SA:40:465,1,"Equerre",49.043484,2.134447,,1,,Europe/Paris,,OIF, +OIF:SA:40:481,1,"Picardie",49.043689,2.138889,,1,,Europe/Paris,,OIF, +OIF:SA:40:489,1,"William Thornley",49.063185,2.067828,,1,,Europe/Paris,,OIF, +OIF:SA:40:490,1,"Fond de Chars",49.06612,2.074439,,1,,Europe/Paris,,OIF, +OIF:SA:40:491,1,"Fleurance Muguet",49.069609,2.079707,,1,,Europe/Paris,,OIF, +OIF:SA:40:492,1,"Lycée",49.074382,2.07398,,1,,Europe/Paris,,OIF, +OIF:SA:40:493,1,"Clini. Sainte-Marie",49.073836,2.077183,,1,,Europe/Paris,,OIF, +OIF:SA:40:499,1,"Hôtel Dieu",49.047622,2.100124,,1,,Europe/Paris,,OIF, +OIF:SA:40:500,1,"Quai du Pothuis",49.050287,2.102915,,1,,Europe/Paris,,OIF, +OIF:SA:40:501,1,"Cité Judiciaire",49.051668,2.098909,,1,,Europe/Paris,,OIF, +OIF:SA:40:502,1,"La Citadelle",49.052936,2.095055,,1,,Europe/Paris,,OIF, +OIF:SA:40:503,1,"Cimetière Ponto.",49.054594,2.092661,,1,,Europe/Paris,,OIF, +OIF:SA:40:504,1,"Lycée Camille Pissarro",49.057619,2.091054,,1,,Europe/Paris,,OIF, +OIF:SA:40:506,1,"Ch. Bouticourt",49.05949,2.092228,,1,,Europe/Paris,,OIF, +OIF:SA:40:508,1,"Nobel",49.056494,2.085912,,1,,Europe/Paris,,OIF, +OIF:SA:40:509,1,"Les Louvrais",49.059782,2.085554,,1,,Europe/Paris,,OIF, +OIF:SA:40:511,1,"Réservoir",49.072153,2.070059,,1,,Europe/Paris,,OIF, +OIF:SA:40:512,1,"Voltigeurs",49.068514,2.068122,,1,,Europe/Paris,,OIF, +OIF:SA:40:513,1,"Montgeroult",49.065703,2.066605,,1,,Europe/Paris,,OIF, +OIF:SA:40:514,1,"Chât. de Grouchy",49.064077,2.065048,,1,,Europe/Paris,,OIF, +OIF:SA:40:515,1,"Le Verger",49.050436,2.044031,,1,,Europe/Paris,,OIF, +OIF:SA:40:516,1,"Centau. Martelet",49.050725,2.040981,,1,,Europe/Paris,,OIF, +OIF:SA:40:519,1,"La Belle Heaumière",49.049429,2.024214,,1,,Europe/Paris,,OIF, +OIF:SA:40:520,1,"Hérons",49.049876,2.018155,,1,,Europe/Paris,,OIF, +OIF:SA:40:521,1,"Jean Jaurès",49.070533,2.074875,,1,,Europe/Paris,,OIF, +OIF:SA:40:522,1,"Maison d'Arrêt",49.070767,2.091874,,1,,Europe/Paris,,OIF, +OIF:SA:40:54,1,"Université des Chênes",49.039507,2.076016,,1,,Europe/Paris,,OIF, +OIF:SA:40:554,1,"Mairie",49.013426,2.062643,,1,,Europe/Paris,,OIF, +OIF:SA:40:555,1,"Les Trembles",49.014962,2.070245,,1,,Europe/Paris,,OIF, +OIF:SA:40:556,1,"Gay Lussac",49.015851,2.076012,,1,,Europe/Paris,,OIF, +OIF:SA:40:558,1,"L'Ourcq-la Marne",49.020135,2.103413,,1,,Europe/Paris,,OIF, +OIF:SA:40:559,1,"Les Beaux Vents",49.020663,2.106649,,1,,Europe/Paris,,OIF, +OIF:SA:40:561,1,"Les Bellevues",49.027465,2.117414,,1,,Europe/Paris,,OIF, +OIF:SA:40:562,1,"Le Gros Murger",49.025576,2.119588,,1,,Europe/Paris,,OIF, +OIF:SA:40:563,1,"Les Tilleuls",49.023351,2.119229,,1,,Europe/Paris,,OIF, +OIF:SA:40:564,1,"La Patelle",49.024522,2.125707,,1,,Europe/Paris,,OIF, +OIF:SA:40:565,1,"L'Olivier",49.027696,2.124144,,1,,Europe/Paris,,OIF, +OIF:SA:40:566,1,"La Chaufferie",49.029613,2.120938,,1,,Europe/Paris,,OIF, +OIF:SA:40:58,1,"Paradis",49.033113,2.065744,,1,,Europe/Paris,,OIF, +OIF:SA:40:59,1,"Le Port",49.032572,2.063054,,1,,Europe/Paris,,OIF, +OIF:SA:40:61,1,"Place de la Libéra.",49.0362,2.06216,,1,,Europe/Paris,,OIF, +OIF:SA:40:62,1,"Sentier",49.039392,2.060913,,1,,Europe/Paris,,OIF, +OIF:SA:40:63,1,"Menandon",49.041887,2.057804,,1,,Europe/Paris,,OIF, +OIF:SA:40:64,1,"Gency",49.04231,2.044734,,1,,Europe/Paris,,OIF, +OIF:SA:40:65,1,"Maison Vallerand",49.034812,2.032407,,1,,Europe/Paris,,OIF, +OIF:SA:40:67,1,"Colucci Gandhi",49.028864,2.017198,,1,,Europe/Paris,,OIF, +OIF:SA:40:68,1,"Grande Rue",49.026126,2.006136,,1,,Europe/Paris,,OIF, +OIF:SA:40:69,1,"Montrouge",49.023762,2.000238,,1,,Europe/Paris,,OIF, +OIF:SA:40:70,1,"Saint-Martin",49.031592,1.998028,,1,,Europe/Paris,,OIF, +OIF:SA:40:71,1,"La Jachère",49.029359,1.991811,,1,,Europe/Paris,,OIF, +OIF:SA:40:72,1,"Les Gros Saules",49.028035,1.987986,,1,,Europe/Paris,,OIF, +OIF:SA:40:73,1,"Pasteur",49.026109,1.982998,,1,,Europe/Paris,,OIF, +OIF:SA:40:74,1,"Bas-Rucourt",49.025056,1.976979,,1,,Europe/Paris,,OIF, +OIF:SA:40:75,1,"Haut-Rucourt",49.026764,1.974234,,1,,Europe/Paris,,OIF, +OIF:SA:40:76,1,"Rangée",49.02794,1.976176,,1,,Europe/Paris,,OIF, +OIF:SA:40:77,1,"Grande Pièce",49.027044,1.97917,,1,,Europe/Paris,,OIF, +OIF:SA:40:78,1,"La Taillette",49.029432,1.978343,,1,,Europe/Paris,,OIF, +OIF:SA:40:79,1,"Lozier",49.032074,2.063385,,1,,Europe/Paris,,OIF, +OIF:SA:40:8,1,"Les Bocages",49.028573,2.085555,,1,,Europe/Paris,,OIF, +OIF:SA:40:80,1,"Le Grand Hunier",49.031736,2.060858,,1,,Europe/Paris,,OIF, +OIF:SA:40:9,1,"École Maradas",49.030367,2.084098,,1,,Europe/Paris,,OIF, +OIF:SA:41:5818,1,"Village",48.76401,1.917714,,1,,Europe/Paris,,OIF, +OIF:SA:41:5819,1,"Hypermarché",48.762594,1.921336,,1,,Europe/Paris,,OIF, +OIF:SA:41:5822,1,"Gutenberg",48.757992,1.92647,,1,,Europe/Paris,,OIF, +OIF:SA:41:5823,1,"Marie Curie",48.757053,1.929258,,1,,Europe/Paris,,OIF, +OIF:SA:41:5824,1,"Béarn",48.761178,1.93571,,1,,Europe/Paris,,OIF, +OIF:SA:41:5825,1,"Les Gâtines",48.763095,1.937626,,1,,Europe/Paris,,OIF, +OIF:SA:41:5826,1,"Normandie",48.766269,1.941494,,1,,Europe/Paris,,OIF, +OIF:SA:41:5827,1,"Lycée des 7 Mares",48.76454,1.943897,,1,,Europe/Paris,,OIF, +OIF:SA:41:5829,1,"Franche-Comté Bourgogne",48.766252,1.950464,,1,,Europe/Paris,,OIF, +OIF:SA:41:5832,1,"Les Réaux",48.768552,1.96452,,1,,Europe/Paris,,OIF, +OIF:SA:41:5835,1,"Youri Gagarine",48.773887,1.980746,,1,,Europe/Paris,,OIF, +OIF:SA:41:5837,1,"Le Stade",48.773347,1.988914,,1,,Europe/Paris,,OIF, +OIF:SA:41:5840,1,"Hôtel de Ville",48.776376,2.000509,,1,,Europe/Paris,,OIF, +OIF:SA:41:5841,1,"République P.V.Couturier",48.77703,2.004492,,1,,Europe/Paris,,OIF, +OIF:SA:41:5842,1,"La Fourche",48.778633,2.008797,,1,,Europe/Paris,,OIF, +OIF:SA:41:5843,1,"Cité Million",48.779603,2.011742,,1,,Europe/Paris,,OIF, +OIF:SA:41:5844,1,"Jean Maréchal",48.778054,2.038299,,1,,Europe/Paris,,OIF, +OIF:SA:41:5845,1,"Place Claudel",48.779162,2.040808,,1,,Europe/Paris,,OIF, +OIF:SA:41:5846,1,"Place Etienne Marcel",48.780558,2.042864,,1,,Europe/Paris,,OIF, +OIF:SA:41:5847,1,"Fulgence Bienvenue",48.782183,2.04513,,1,,Europe/Paris,,OIF, +OIF:SA:41:5849,1,"Denton",48.78904,2.042813,,1,,Europe/Paris,,OIF, +OIF:SA:41:5851,1,"Saint-Exupéry",48.796073,2.048371,,1,,Europe/Paris,,OIF, +OIF:SA:41:5859,1,"Allée des Yvelines",48.774683,1.999337,,1,,Europe/Paris,,OIF, +OIF:SA:41:5906,1,"INRA",48.80183,2.087221,,1,,Europe/Paris,,OIF, +OIF:SA:41:5919,1,"Les Élancourtines",48.777154,1.946249,,1,,Europe/Paris,,OIF, +OIF:SA:41:5920,1,"Parc de Coudrays",48.774361,1.945706,,1,,Europe/Paris,,OIF, +OIF:SA:41:5922,1,"La Villeparc",48.772706,1.939742,,1,,Europe/Paris,,OIF, +OIF:SA:41:5925,1,"Les Villageoises",48.767539,2.032553,,1,,Europe/Paris,,OIF, +OIF:SA:41:5926,1,"Mare aux Carats/Mairie",48.769689,2.03403,,1,,Europe/Paris,,OIF, +OIF:SA:41:5927,1,"Le Hameau",48.773828,2.036338,,1,,Europe/Paris,,OIF, +OIF:SA:41:5932,1,"Gaudi",48.766242,2.07575,,1,,Europe/Paris,,OIF, +OIF:SA:41:5949,1,"Jean Goujon",48.766227,2.017992,,1,,Europe/Paris,,OIF, +OIF:SA:41:5958,1,"Technocentre / 60 Arpents",48.763128,2.084223,,1,,Europe/Paris,,OIF, +OIF:SA:41:5959,1,"Le Gradiant",48.763641,2.086742,,1,,Europe/Paris,,OIF, +OIF:SA:41:5961,1,"Trou du Berger",48.758576,2.075877,,1,,Europe/Paris,,OIF, +OIF:SA:41:5965,1,"Jean Jaurès",48.774532,1.996931,,1,,Europe/Paris,,OIF, +OIF:SA:41:5967,1,"Les Nouveaux Horizons",48.768916,1.953171,,1,,Europe/Paris,,OIF, +OIF:SA:41:5968,1,"Allée de la Garonne",48.771885,1.953883,,1,,Europe/Paris,,OIF, +OIF:SA:41:5970,1,"Bretagne",48.764352,1.934687,,1,,Europe/Paris,,OIF, +OIF:SA:41:5971,1,"Cornouaille",48.76366,1.932149,,1,,Europe/Paris,,OIF, +OIF:SA:41:5972,1,"Armorique",48.765102,1.929147,,1,,Europe/Paris,,OIF, +OIF:SA:41:5973,1,"Îles Glénan",48.767276,1.926349,,1,,Europe/Paris,,OIF, +OIF:SA:41:5974,1,"La Croix Blanche",48.767622,1.921132,,1,,Europe/Paris,,OIF, +OIF:SA:41:5975,1,"La Grand Mare",48.765782,1.917884,,1,,Europe/Paris,,OIF, +OIF:SA:41:5976,1,"Le Clos Breton",48.764947,1.916932,,1,,Europe/Paris,,OIF, +OIF:SA:41:5990,1,"Gare Routière/Technocentre Tcsp",48.76141,2.077195,,1,,Europe/Paris,,OIF, +OIF:SA:41:5996,1,"Chapelle de la Villedieu",48.766838,1.965138,,1,,Europe/Paris,,OIF, +OIF:SA:41:5997,1,"Bois de l'Étang",48.760133,1.966715,,1,,Europe/Paris,,OIF, +OIF:SA:41:5998,1,"Émile Dureuil",48.759122,1.960952,,1,,Europe/Paris,,OIF, +OIF:SA:41:5999,1,"Mairie",48.757393,1.957239,,1,,Europe/Paris,,OIF, +OIF:SA:41:6003,1,"Georges Lapierre",48.751367,1.946443,,1,,Europe/Paris,,OIF, +OIF:SA:41:6004,1,"Hôpital",48.748813,1.949949,,1,,Europe/Paris,,OIF, +OIF:SA:41:6005,1,"Château d'Eau",48.747303,1.951387,,1,,Europe/Paris,,OIF, +OIF:SA:41:6007,1,"Avenue de Dampierre",48.7427,1.953969,,1,,Europe/Paris,,OIF, +OIF:SA:41:6008,1,"Émile Fontanier",48.742927,1.958955,,1,,Europe/Paris,,OIF, +OIF:SA:41:6011,1,"Groupe Scolaire Champmesnil",48.745155,1.95565,,1,,Europe/Paris,,OIF, +OIF:SA:41:6029,1,"Pierre Stassinet",48.78262,1.959278,,1,,Europe/Paris,,OIF, +OIF:SA:41:6030,1,"La Ferme",48.779242,1.958283,,1,,Europe/Paris,,OIF, +OIF:SA:41:6031,1,"Rue Ocre",48.776408,1.954625,,1,,Europe/Paris,,OIF, +OIF:SA:41:6032,1,"Les 4 Arbres",48.774203,1.953648,,1,,Europe/Paris,,OIF, +OIF:SA:41:6033,1,"Centre Commercial",48.761033,1.945272,,1,,Europe/Paris,,OIF, +OIF:SA:41:6040,1,"Mairie",48.746938,1.917927,,1,,Europe/Paris,,OIF, +OIF:SA:41:6041,1,"Les Écoles",48.750242,1.918138,,1,,Europe/Paris,,OIF, +OIF:SA:41:6048,1,"Les Côtes",48.781106,1.966443,,1,,Europe/Paris,,OIF, +OIF:SA:41:6057,1,"Diderot",48.796636,1.979372,,1,,Europe/Paris,,OIF, +OIF:SA:41:6059,1,"Mail de l'Europe",48.79349,1.971681,,1,,Europe/Paris,,OIF, +OIF:SA:41:6060,1,"Gay Lussac",48.792171,1.975053,,1,,Europe/Paris,,OIF, +OIF:SA:41:6061,1,"La Revanche",48.790648,1.974,,1,,Europe/Paris,,OIF, +OIF:SA:41:6068,1,"Les 7 Mares",48.769442,1.94749,,1,,Europe/Paris,,OIF, +OIF:SA:41:6072,1,"Lycée Emilie de Breteuil",48.780908,2.040154,,1,,Europe/Paris,,OIF, +OIF:SA:41:6074,1,"Paul Fort",48.772725,2.040206,,1,,Europe/Paris,,OIF, +OIF:SA:41:6075,1,"Bergson",48.771579,2.044081,,1,,Europe/Paris,,OIF, +OIF:SA:41:6076,1,"Les Arcades du Lac",48.769881,2.042269,,1,,Europe/Paris,,OIF, +OIF:SA:41:6077,1,"Sourderie / Mairie",48.769181,2.039308,,1,,Europe/Paris,,OIF, +OIF:SA:41:6078,1,"La Remise",48.767011,2.039531,,1,,Europe/Paris,,OIF, +OIF:SA:41:6081,1,"Le Clos",48.768654,2.028141,,1,,Europe/Paris,,OIF, +OIF:SA:41:6083,1,"Le Manet",48.76871,2.024014,,1,,Europe/Paris,,OIF, +OIF:SA:41:6084,1,"Carnac",48.769189,2.018076,,1,,Europe/Paris,,OIF, +OIF:SA:41:6085,1,"Le Buisson de la Couldre",48.771633,2.014362,,1,,Europe/Paris,,OIF, +OIF:SA:41:6086,1,"Observatoire",48.77275,2.010527,,1,,Europe/Paris,,OIF, +OIF:SA:41:6088,1,"Niepce",48.794574,2.047359,,1,,Europe/Paris,,OIF, +OIF:SA:41:6108,1,"Méliès - Croix Bonnet",48.801126,2.007233,,1,,Europe/Paris,,OIF, +OIF:SA:41:6109,1,"René Clair",48.801549,2.004394,,1,,Europe/Paris,,OIF, +OIF:SA:41:6110,1,"Jacques Tati",48.803663,2.0052,,1,,Europe/Paris,,OIF, +OIF:SA:41:6111,1,"Erich Von Stroheim",48.806016,2.011781,,1,,Europe/Paris,,OIF, +OIF:SA:41:6112,1,"Arletty",48.803638,2.011367,,1,,Europe/Paris,,OIF, +OIF:SA:41:6113,1,"Fritz Lang",48.800992,2.011714,,1,,Europe/Paris,,OIF, +OIF:SA:41:6114,1,"Croix Blanche",48.798386,2.016886,,1,,Europe/Paris,,OIF, +OIF:SA:41:6115,1,"Paul Vaillant Couturier",48.799771,2.020789,,1,,Europe/Paris,,OIF, +OIF:SA:41:6116,1,"Église",48.802105,2.017686,,1,,Europe/Paris,,OIF, +OIF:SA:41:6118,1,"Mairie",48.800915,2.030354,,1,,Europe/Paris,,OIF, +OIF:SA:41:6119,1,"Chemin Vert",48.798627,2.031813,,1,,Europe/Paris,,OIF, +OIF:SA:41:6120,1,"Vieil Étang",48.794164,2.037825,,1,,Europe/Paris,,OIF, +OIF:SA:41:6121,1,"André Malraux",48.778926,2.036254,,1,,Europe/Paris,,OIF, +OIF:SA:41:6122,1,"Les Blés d'Or",48.7802,2.033798,,1,,Europe/Paris,,OIF, +OIF:SA:41:6123,1,"Le Verger Saint-Martin",48.776763,2.030602,,1,,Europe/Paris,,OIF, +OIF:SA:41:6124,1,"Les Quatre Pavés",48.775028,2.027104,,1,,Europe/Paris,,OIF, +OIF:SA:41:6125,1,"Les Trois Peuples",48.776741,2.022069,,1,,Europe/Paris,,OIF, +OIF:SA:41:6126,1,"Les Bosquets",48.775663,2.019056,,1,,Europe/Paris,,OIF, +OIF:SA:41:6127,1,"Chambre de Commerce et de l'Industrie",48.77496,2.016694,,1,,Europe/Paris,,OIF, +OIF:SA:41:6128,1,"La Mare Savin",48.771791,1.998656,,1,,Europe/Paris,,OIF, +OIF:SA:41:6129,1,"Émile Clapeyron",48.770449,1.996006,,1,,Europe/Paris,,OIF, +OIF:SA:41:6131,1,"Papin",48.76649,1.997582,,1,,Europe/Paris,,OIF, +OIF:SA:41:6135,1,"Fermi",48.762235,1.981125,,1,,Europe/Paris,,OIF, +OIF:SA:41:6157,1,"Le Puits",48.801129,2.024516,,1,,Europe/Paris,,OIF, +OIF:SA:41:6158,1,"Frères Lumière",48.765314,1.999833,,1,,Europe/Paris,,OIF, +OIF:SA:41:6159,1,"Eugène Flachat",48.760225,1.99143,,1,,Europe/Paris,,OIF, +OIF:SA:41:6160,1,"Circuit Automobile",48.757772,1.983814,,1,,Europe/Paris,,OIF, +OIF:SA:41:6169,1,"Square de Ré",48.763076,1.938789,,1,,Europe/Paris,,OIF, +OIF:SA:41:6170,1,"Square de la Marche",48.761503,1.941466,,1,,Europe/Paris,,OIF, +OIF:SA:41:6176,1,"Georges Politzer",48.768312,1.990683,,1,,Europe/Paris,,OIF, +OIF:SA:41:6181,1,"Castiglione Del Lago",48.77842,1.990779,,1,,Europe/Paris,,OIF, +OIF:SA:41:6183,1,"Paul Verlaine",48.783537,1.987147,,1,,Europe/Paris,,OIF, +OIF:SA:41:6184,1,"Jean Cocteau",48.785577,1.983903,,1,,Europe/Paris,,OIF, +OIF:SA:41:6185,1,"Albert Camus",48.786288,1.97979,,1,,Europe/Paris,,OIF, +OIF:SA:41:6186,1,"Victor Jara",48.785221,1.977662,,1,,Europe/Paris,,OIF, +OIF:SA:41:6187,1,"Jean Lurçat",48.782626,1.975623,,1,,Europe/Paris,,OIF, +OIF:SA:41:6188,1,"Paul Gauguin",48.780213,1.975555,,1,,Europe/Paris,,OIF, +OIF:SA:41:6189,1,"Clément Marot",48.777601,1.976926,,1,,Europe/Paris,,OIF, +OIF:SA:41:6205,1,"Centre Commercial les Merisiers",48.77621,1.987945,,1,,Europe/Paris,,OIF, +OIF:SA:41:6206,1,"Les Merisiers",48.77674,1.985112,,1,,Europe/Paris,,OIF, +OIF:SA:41:6207,1,"Jean Baptiste Clément",48.779033,1.985348,,1,,Europe/Paris,,OIF, +OIF:SA:41:6208,1,"Van Gogh",48.780014,1.981153,,1,,Europe/Paris,,OIF, +OIF:SA:41:6209,1,"Berlioz / Beethoven",48.782009,1.979731,,1,,Europe/Paris,,OIF, +OIF:SA:41:6211,1,"Jean Rostand",48.784757,1.972769,,1,,Europe/Paris,,OIF, +OIF:SA:41:6212,1,"Avenue le Verrier",48.787904,1.973277,,1,,Europe/Paris,,OIF, +OIF:SA:41:6213,1,"Marcel Cerdan",48.792237,1.965824,,1,,Europe/Paris,,OIF, +OIF:SA:41:6214,1,"La Mare aux Saules",48.792801,1.962761,,1,,Europe/Paris,,OIF, +OIF:SA:41:6216,1,"Les Grands Jardins",48.803128,1.971242,,1,,Europe/Paris,,OIF, +OIF:SA:41:6218,1,"Pierre Curie",48.801717,1.979419,,1,,Europe/Paris,,OIF, +OIF:SA:41:6236,1,"Erik Satie",48.763992,2.031146,,1,,Europe/Paris,,OIF, +OIF:SA:41:6237,1,"Camille Saint-Saëns",48.763101,2.028718,,1,,Europe/Paris,,OIF, +OIF:SA:41:6238,1,"Chemin de Ronde",48.759547,2.029181,,1,,Europe/Paris,,OIF, +OIF:SA:41:6239,1,"Avenue du Lycée",48.758466,2.035067,,1,,Europe/Paris,,OIF, +OIF:SA:41:6240,1,"Plan de l'Église",48.758267,2.038297,,1,,Europe/Paris,,OIF, +OIF:SA:41:6241,1,"Simone Weil",48.758283,2.044768,,1,,Europe/Paris,,OIF, +OIF:SA:41:6242,1,"Les Pépinières",48.760201,2.048197,,1,,Europe/Paris,,OIF, +OIF:SA:41:6243,1,"Voisins Centre",48.760207,2.050446,,1,,Europe/Paris,,OIF, +OIF:SA:41:6244,1,"Jean Racine",48.758827,2.052391,,1,,Europe/Paris,,OIF, +OIF:SA:41:6245,1,"Tilleuls",48.758789,2.05528,,1,,Europe/Paris,,OIF, +OIF:SA:41:6246,1,"Parc de Port Royal",48.755232,2.056081,,1,,Europe/Paris,,OIF, +OIF:SA:41:6247,1,"La Bretonnière",48.754617,2.060271,,1,,Europe/Paris,,OIF, +OIF:SA:41:6249,1,"Institut Franco Japonais",48.791381,2.035318,,1,,Europe/Paris,,OIF, +OIF:SA:41:6268,1,"Mairie",48.724621,2.083663,,1,,Europe/Paris,,OIF, +OIF:SA:41:6269,1,"Van Gogh",48.72221,2.084782,,1,,Europe/Paris,,OIF, +OIF:SA:41:6273,1,"Place 14 Juillet",48.705786,2.07143,,1,,Europe/Paris,,OIF, +OIF:SA:41:6279,1,"Centre Commercial",48.716076,2.084954,,1,,Europe/Paris,,OIF, +OIF:SA:41:6280,1,"Chèvrefeuille",48.716823,2.081045,,1,,Europe/Paris,,OIF, +OIF:SA:41:6281,1,"Chemin de la Chapelle",48.717612,2.078114,,1,,Europe/Paris,,OIF, +OIF:SA:41:6282,1,"Mendès France",48.719411,2.076597,,1,,Europe/Paris,,OIF, +OIF:SA:41:6283,1,"Fraternité",48.721565,2.079412,,1,,Europe/Paris,,OIF, +OIF:SA:41:6284,1,"Saint-Exupéry Petit Prince",48.721878,2.080694,,1,,Europe/Paris,,OIF, +OIF:SA:41:6295,1,"Collège Hélène Boucher",48.760708,2.045998,,1,,Europe/Paris,,OIF, +OIF:SA:41:6296,1,"Buloyer",48.745518,2.028157,,1,,Europe/Paris,,OIF, +OIF:SA:41:6297,1,"Romainville",48.740385,2.042123,,1,,Europe/Paris,,OIF, +OIF:SA:41:6298,1,"Magny Village",48.741416,2.0578,,1,,Europe/Paris,,OIF, +OIF:SA:41:6299,1,"Villeneuve",48.733858,2.071837,,1,,Europe/Paris,,OIF, +OIF:SA:41:6304,1,"Collège Champollion",48.763983,2.043614,,1,,Europe/Paris,,OIF, +OIF:SA:41:6308,1,"Hélène Boucher",48.758377,2.051993,,1,,Europe/Paris,,OIF, +OIF:SA:41:6309,1,"Blaise Pascal",48.757184,2.049389,,1,,Europe/Paris,,OIF, +OIF:SA:41:6310,1,"Chamfleury",48.755134,2.042655,,1,,Europe/Paris,,OIF, +OIF:SA:41:6311,1,"La Chapelle Lacoste",48.72473,2.086108,,1,,Europe/Paris,,OIF, +OIF:SA:41:6312,1,"Hodebourg",48.723371,2.089558,,1,,Europe/Paris,,OIF, +OIF:SA:41:6316,1,"Les 25 Arpents",48.719689,2.088937,,1,,Europe/Paris,,OIF, +OIF:SA:41:6327,1,"Les Portiques",48.763451,2.063569,,1,,Europe/Paris,,OIF, +OIF:SA:41:6328,1,"Grande Île",48.762446,2.057616,,1,,Europe/Paris,,OIF, +OIF:SA:41:6329,1,"Le Lac",48.762855,2.050772,,1,,Europe/Paris,,OIF, +OIF:SA:41:6330,1,"Avenue de la Pyramide",48.762358,2.044357,,1,,Europe/Paris,,OIF, +OIF:SA:41:6338,1,"Les Roussières",48.774405,2.050919,,1,,Europe/Paris,,OIF, +OIF:SA:41:6339,1,"Maurice Ravel",48.773865,2.056252,,1,,Europe/Paris,,OIF, +OIF:SA:41:6340,1,"Bois de la Garenne",48.772043,2.061443,,1,,Europe/Paris,,OIF, +OIF:SA:41:6341,1,"Le Village",48.770959,2.064794,,1,,Europe/Paris,,OIF, +OIF:SA:41:6343,1,"Haussmann",48.768303,2.077025,,1,,Europe/Paris,,OIF, +OIF:SA:41:6344,1,"La Noël",48.770222,2.072861,,1,,Europe/Paris,,OIF, +OIF:SA:41:6345,1,"Mairie",48.771341,2.070537,,1,,Europe/Paris,,OIF, +OIF:SA:41:6346,1,"Monument aux Morts",48.772566,2.068124,,1,,Europe/Paris,,OIF, +OIF:SA:41:6347,1,"Paul Éluard",48.773993,2.064891,,1,,Europe/Paris,,OIF, +OIF:SA:41:6348,1,"Bouviers",48.781319,2.06529,,1,,Europe/Paris,,OIF, +OIF:SA:41:6349,1,"Gérard Philipe",48.775503,2.064825,,1,,Europe/Paris,,OIF, +OIF:SA:41:6350,1,"Bois de la Grille",48.776949,2.070437,,1,,Europe/Paris,,OIF, +OIF:SA:41:6351,1,"Le Château",48.774685,2.074824,,1,,Europe/Paris,,OIF, +OIF:SA:41:6352,1,"Mendès France",48.772328,2.079361,,1,,Europe/Paris,,OIF, +OIF:SA:41:6371,1,"Michel Ange",48.760941,2.03474,,1,,Europe/Paris,,OIF, +OIF:SA:41:6374,1,"Solitude",48.748423,2.073441,,1,,Europe/Paris,,OIF, +OIF:SA:41:6377,1,"Mozart",48.776496,2.058251,,1,,Europe/Paris,,OIF, +OIF:SA:41:6378,1,"Les Genêts",48.774953,2.055533,,1,,Europe/Paris,,OIF, +OIF:SA:41:6379,1,"Robert Surcouf",48.765722,2.058234,,1,,Europe/Paris,,OIF, +OIF:SA:41:6380,1,"Jean Bart",48.766767,2.05572,,1,,Europe/Paris,,OIF, +OIF:SA:41:6381,1,"Rue des Cottages",48.768314,2.05202,,1,,Europe/Paris,,OIF, +OIF:SA:41:6382,1,"La de Bougainville",48.770025,2.04789,,1,,Europe/Paris,,OIF, +OIF:SA:41:6392,1,"Le Val Saint-Quentin",48.760719,2.060949,,1,,Europe/Paris,,OIF, +OIF:SA:41:6394,1,"Le Val d'Or",48.778644,2.096203,,1,,Europe/Paris,,OIF, +OIF:SA:41:6397,1,"Saint-Louis",48.795784,2.121904,,1,,Europe/Paris,,OIF, +OIF:SA:41:6398,1,"Anjou",48.797023,2.126028,,1,,Europe/Paris,,OIF, +OIF:SA:41:6423,1,"Europe",48.764791,2.06,,1,,Europe/Paris,,OIF, +OIF:SA:41:6426,1,"Collège Alberto Giacometti",48.777299,2.043559,,1,,Europe/Paris,,OIF, +OIF:SA:41:6431,1,"Guynemer",48.756658,2.068492,,1,,Europe/Paris,,OIF, +OIF:SA:41:6432,1,"Caudron",48.759764,2.064778,,1,,Europe/Paris,,OIF, +OIF:SA:41:6440,1,"Plaine de Neauphle",48.785404,1.987005,,1,,Europe/Paris,,OIF, +OIF:SA:41:6442,1,"Jean d'Alembert",48.791557,1.977455,,1,,Europe/Paris,,OIF, +OIF:SA:41:6443,1,"Blaise Pascal",48.792394,1.980949,,1,,Europe/Paris,,OIF, +OIF:SA:41:6458,1,"Les Sangliers",48.783787,2.065822,,1,,Europe/Paris,,OIF, +OIF:SA:41:6459,1,"Challenger",48.784627,2.065327,,1,,Europe/Paris,,OIF, +OIF:SA:41:6460,1,"La Batterie",48.784342,2.060616,,1,,Europe/Paris,,OIF, +OIF:SA:41:6461,1,"Rond-Point des Saules",48.784982,2.058831,,1,,Europe/Paris,,OIF, +OIF:SA:41:6462,1,"Claude Monet",48.7837,2.056243,,1,,Europe/Paris,,OIF, +OIF:SA:41:6463,1,"Henri Matisse",48.7824,2.054805,,1,,Europe/Paris,,OIF, +OIF:SA:41:6464,1,"Mail des Saules",48.783796,2.052407,,1,,Europe/Paris,,OIF, +OIF:SA:41:6466,1,"Les Chênes",48.789198,2.052483,,1,,Europe/Paris,,OIF, +OIF:SA:41:6467,1,"Les Quadrants",48.789421,2.049639,,1,,Europe/Paris,,OIF, +OIF:SA:41:6478,1,"Bois Robert",48.788526,2.059023,,1,,Europe/Paris,,OIF, +OIF:SA:41:6480,1,"Normandie-Niemen",48.794563,1.976676,,1,,Europe/Paris,,OIF, +OIF:SA:41:6483,1,"Charles Debry",48.77877,2.235378,,1,,Europe/Paris,,OIF, +OIF:SA:41:6487,1,"Division Leclerc",48.794086,2.272952,,1,,Europe/Paris,,OIF, +OIF:SA:41:6491,1,"Gabriel Péri",48.818503,2.319566,,1,,Europe/Paris,,OIF, +OIF:SA:41:6504,1,"Terrier Blanc",48.797657,2.05563,,1,,Europe/Paris,,OIF, +OIF:SA:41:6507,1,"Collège Sainte-Thérèse",48.736784,1.957709,,1,,Europe/Paris,,OIF, +OIF:SA:41:6529,1,"Mare Caillon",48.763316,2.035712,,1,,Europe/Paris,,OIF, +OIF:SA:41:6539,1,"Université Vauban d'Alembert",48.778875,2.044788,,1,,Europe/Paris,,OIF, +OIF:SA:41:6543,1,"Gustave Eiffel",48.787347,2.054568,,1,,Europe/Paris,,OIF, +OIF:SA:41:6547,1,"Prague",48.795454,1.968077,,1,,Europe/Paris,,OIF, +OIF:SA:41:6550,1,"Rond-Point du Petit Clamart",48.777638,2.232352,,1,,Europe/Paris,,OIF, +OIF:SA:41:6552,1,"Ferme des Roses",48.745041,1.942794,,1,,Europe/Paris,,OIF, +OIF:SA:41:6553,1,"Rond-Point de Chasse",48.74195,1.940534,,1,,Europe/Paris,,OIF, +OIF:SA:41:6554,1,"Avenue de Noailles",48.741359,1.94376,,1,,Europe/Paris,,OIF, +OIF:SA:41:6557,1,"Place Henri IV",48.73963,1.948155,,1,,Europe/Paris,,OIF, +OIF:SA:41:6558,1,"Rue de Pommeret",48.739768,1.952116,,1,,Europe/Paris,,OIF, +OIF:SA:41:6559,1,"Cours de l'Europe",48.741976,1.956482,,1,,Europe/Paris,,OIF, +OIF:SA:41:6576,1,"Maréchal Joffre",48.738764,1.959998,,1,,Europe/Paris,,OIF, +OIF:SA:41:6579,1,"Stade du Bout des Clos",48.764722,1.911686,,1,,Europe/Paris,,OIF, +OIF:SA:41:6580,1,"Les Louveries",48.765381,1.908961,,1,,Europe/Paris,,OIF, +OIF:SA:41:6582,1,"Pasteur",48.762676,1.912817,,1,,Europe/Paris,,OIF, +OIF:SA:41:6583,1,"ZA Pariwest",48.761131,1.916732,,1,,Europe/Paris,,OIF, +OIF:SA:41:6586,1,"Les Bruyères",48.76634,1.905595,,1,,Europe/Paris,,OIF, +OIF:SA:41:6587,1,"Les Mousseaux",48.780476,1.892656,,1,,Europe/Paris,,OIF, +OIF:SA:41:6588,1,"Parc aux Loups",48.777162,1.900731,,1,,Europe/Paris,,OIF, +OIF:SA:41:6589,1,"Villeneuve",48.776214,1.907063,,1,,Europe/Paris,,OIF, +OIF:SA:41:6590,1,"Cimetière",48.774475,1.915835,,1,,Europe/Paris,,OIF, +OIF:SA:41:6591,1,"Église",48.772344,1.920761,,1,,Europe/Paris,,OIF, +OIF:SA:41:6592,1,"Place des Buttes",48.769366,1.919888,,1,,Europe/Paris,,OIF, +OIF:SA:41:6595,1,"Parc d'Activités de Gomberville",48.727408,2.081896,,1,,Europe/Paris,,OIF, +OIF:SA:41:6608,1,"Collège Philippe de Champaigne",48.744696,1.950095,,1,,Europe/Paris,,OIF, +OIF:SA:41:6610,1,"Collège Alexandre Dumas",48.770391,1.945096,,1,,Europe/Paris,,OIF, +OIF:SA:41:6616,1,"Lavoisier",48.759051,1.923349,,1,,Europe/Paris,,OIF, +OIF:SA:41:6617,1,"Rond-Point Schwartz",48.760463,1.919898,,1,,Europe/Paris,,OIF, +OIF:SA:41:6620,1,"Hôtel d'Agglomération",48.770989,2.007472,,1,,Europe/Paris,,OIF, +OIF:SA:41:6629,1,"Pythagore",48.759896,1.98176,,1,,Europe/Paris,,OIF, +OIF:SA:41:6630,1,"Galilée",48.765342,1.984544,,1,,Europe/Paris,,OIF, +OIF:SA:41:6635,1,"Jean Macé",48.771367,2.00099,,1,,Europe/Paris,,OIF, +OIF:SA:41:6637,1,"Vélodrome",48.789191,2.036521,,1,,Europe/Paris,,OIF, +OIF:SA:41:6642,1,"Université Leclerc",48.7871,2.050522,,1,,Europe/Paris,,OIF, +OIF:SA:41:6646,1,"Georges Sand",48.779839,1.990497,,1,,Europe/Paris,,OIF, +OIF:SA:41:6648,1,"Villaroy",48.766033,2.078729,,1,,Europe/Paris,,OIF, +OIF:SA:41:6649,1,"E. Viollet-le-Duc",48.763685,2.067001,,1,,Europe/Paris,,OIF, +OIF:SA:41:6652,1,"Île de Loisirs - Centre Équestre",48.780526,2.002876,,1,,Europe/Paris,,OIF, +OIF:SA:41:6653,1,"Île de Loisirs - Golf",48.783563,1.992819,,1,,Europe/Paris,,OIF, +OIF:SA:42:5472,1,"Château",48.702156,1.890422,,1,,Europe/Paris,,OIF, +OIF:SA:42:5474,1,"Croix Saint-Jacques",48.698235,1.895921,,1,,Europe/Paris,,OIF, +OIF:SA:42:5480,1,"Hameau",48.700506,1.895148,,1,,Europe/Paris,,OIF, +OIF:SA:42:5490,1,"Route de Saint-Benoist",48.676923,1.910979,,1,,Europe/Paris,,OIF, +OIF:SA:42:6097,1,"Centre",48.715135,1.892803,,1,,Europe/Paris,,OIF, +OIF:SA:42:6111,1,"Rue d'Auffargis",48.712828,1.89105,,1,,Europe/Paris,,OIF, +OIF:SA:42:8209,1,"École",48.698817,1.885922,,1,,Europe/Paris,,OIF, +OIF:SA:42:8211,1,"Le Stade",48.692971,1.880182,,1,,Europe/Paris,,OIF, +OIF:SA:42:8216,1,"Les Fauvettes",48.693362,1.86415,,1,,Europe/Paris,,OIF, +OIF:SA:42:8229,1,"Route du Perray / Stade",48.696276,1.881789,,1,,Europe/Paris,,OIF, +OIF:SA:43:10,1,"Centre Aéré",48.665676,2.432311,,1,,Europe/Paris,,OIF, +OIF:SA:43:100,1,"Oberkirch",48.682889,2.408071,,1,,Europe/Paris,,OIF, +OIF:SA:43:101,1,"Orée de Sénart",48.686155,2.418167,,1,,Europe/Paris,,OIF, +OIF:SA:43:105,1,"Pavillon Bleu",48.693692,2.413405,,1,,Europe/Paris,,OIF, +OIF:SA:43:108,1,"Payen",48.678806,2.41155,,1,,Europe/Paris,,OIF, +OIF:SA:43:11,1,"Charles Mory - Aqua Sénart",48.683568,2.432099,,1,,Europe/Paris,,OIF, +OIF:SA:43:110,1,"Paul Lafargue",48.690003,2.414719,,1,,Europe/Paris,,OIF, +OIF:SA:43:112,1,"Plateau",48.695907,2.418164,,1,,Europe/Paris,,OIF, +OIF:SA:43:114,1,"Sables de Rouvres",48.69135,2.428875,,1,,Europe/Paris,,OIF, +OIF:SA:43:115,1,"Château des Sables",48.691919,2.426582,,1,,Europe/Paris,,OIF, +OIF:SA:43:117,1,"Châtillon",48.684127,2.396174,,1,,Europe/Paris,,OIF, +OIF:SA:43:118,1,"Villiers Garçons",48.680654,2.409357,,1,,Europe/Paris,,OIF, +OIF:SA:43:129,1,"André Malraux",48.695921,2.44534,,1,,Europe/Paris,,OIF, +OIF:SA:43:13,1,"Marcellin Berthelot",48.686843,2.415814,,1,,Europe/Paris,,OIF, +OIF:SA:43:130,1,"Athénée les Vignes",48.704198,2.446322,,1,,Europe/Paris,,OIF, +OIF:SA:43:132,1,"Avenue du Parc",48.709676,2.437519,,1,,Europe/Paris,,OIF, +OIF:SA:43:137,1,"Galliéni",48.715086,2.443343,,1,,Europe/Paris,,OIF, +OIF:SA:43:143,1,"Maurice Garin",48.719622,2.441654,,1,,Europe/Paris,,OIF, +OIF:SA:43:144,1,"Glacière",48.70672,2.440476,,1,,Europe/Paris,,OIF, +OIF:SA:43:15,1,"Beaumont",48.683919,2.397857,,1,,Europe/Paris,,OIF, +OIF:SA:43:150,1,"Prairie de l'Oly",48.703413,2.441775,,1,,Europe/Paris,,OIF, +OIF:SA:43:157,1,"Les Narcisses",48.700929,2.443545,,1,,Europe/Paris,,OIF, +OIF:SA:43:16,1,"Brossolette Jeunon",48.689159,2.4224,,1,,Europe/Paris,,OIF, +OIF:SA:43:160,1,"Prairie de l'Oly (Rue de Rouvres)",48.703557,2.44006,,1,,Europe/Paris,,OIF, +OIF:SA:43:162,1,"Scierie",48.709861,2.441689,,1,,Europe/Paris,,OIF, +OIF:SA:43:164,1,"Saint-Joseph",48.69982,2.468134,,1,,Europe/Paris,,OIF, +OIF:SA:43:166,1,"Valdoly",48.714162,2.440896,,1,,Europe/Paris,,OIF, +OIF:SA:43:167,1,"Place du 14 Juillet",48.704897,2.421763,,1,,Europe/Paris,,OIF, +OIF:SA:43:169,1,"Place Anatole France",48.697103,2.431649,,1,,Europe/Paris,,OIF, +OIF:SA:43:173,1,"André Pardoux",48.699943,2.42959,,1,,Europe/Paris,,OIF, +OIF:SA:43:175,1,"Rue des Arts",48.710713,2.432624,,1,,Europe/Paris,,OIF, +OIF:SA:43:177,1,"Bac d'Ablon",48.713347,2.432942,,1,,Europe/Paris,,OIF, +OIF:SA:43:179,1,"Bleuets",48.693387,2.444289,,1,,Europe/Paris,,OIF, +OIF:SA:43:182,1,"Dispensaire",48.706528,2.421901,,1,,Europe/Paris,,OIF, +OIF:SA:43:184,1,"Marx Dormoy",48.708966,2.432129,,1,,Europe/Paris,,OIF, +OIF:SA:43:188,1,"Églantines",48.696672,2.415388,,1,,Europe/Paris,,OIF, +OIF:SA:43:19,1,"Beauséjour",48.684857,2.391498,,1,,Europe/Paris,,OIF, +OIF:SA:43:190,1,"Église",48.706921,2.425678,,1,,Europe/Paris,,OIF, +OIF:SA:43:192,1,"Rue de la Gaité",48.699218,2.420097,,1,,Europe/Paris,,OIF, +OIF:SA:43:195,1,"Gros Buisson",48.696724,2.425382,,1,,Europe/Paris,,OIF, +OIF:SA:43:197,1,"Gaston Grinbaum",48.692335,2.433894,,1,,Europe/Paris,,OIF, +OIF:SA:43:199,1,"Alfred Gros",48.7009,2.42433,,1,,Europe/Paris,,OIF, +OIF:SA:43:201,1,"Camille Guillaume",48.690677,2.43924,,1,,Europe/Paris,,OIF, +OIF:SA:43:203,1,"Gymnase Maurice Baquet",48.690929,2.438786,,1,,Europe/Paris,,OIF, +OIF:SA:43:204,1,"Hortensias",48.698218,2.439669,,1,,Europe/Paris,,OIF, +OIF:SA:43:205,1,"Victor Hugo",48.707553,2.428021,,1,,Europe/Paris,,OIF, +OIF:SA:43:207,1,"Les Iris",48.697791,2.428337,,1,,Europe/Paris,,OIF, +OIF:SA:43:209,1,"Henri Janin",48.696888,2.43414,,1,,Europe/Paris,,OIF, +OIF:SA:43:21,1,"Bergeries Saint-Hubert",48.687015,2.432927,,1,,Europe/Paris,,OIF, +OIF:SA:43:211,1,"Jean Jaurès",48.696603,2.435993,,1,,Europe/Paris,,OIF, +OIF:SA:43:213,1,"Jacques Jeunon",48.707977,2.436904,,1,,Europe/Paris,,OIF, +OIF:SA:43:215,1,"Lafayette",48.703186,2.437112,,1,,Europe/Paris,,OIF, +OIF:SA:43:217,1,"Prairie de l'Oly",48.702766,2.439895,,1,,Europe/Paris,,OIF, +OIF:SA:43:218,1,"Mairie / Arbre de la Liberté",48.699848,2.418672,,1,,Europe/Paris,,OIF, +OIF:SA:43:22,1,"Belvédère",48.676844,2.420787,,1,,Europe/Paris,,OIF, +OIF:SA:43:220,1,"Mairie",48.70002,2.416731,,1,,Europe/Paris,,OIF, +OIF:SA:43:222,1,"Guy Moquet",48.698438,2.425612,,1,,Europe/Paris,,OIF, +OIF:SA:43:226,1,"Pasteur",48.704902,2.426645,,1,,Europe/Paris,,OIF, +OIF:SA:43:228,1,"Piscine",48.703915,2.424796,,1,,Europe/Paris,,OIF, +OIF:SA:43:230,1,"Paul Langevin",48.705613,2.4197,,1,,Europe/Paris,,OIF, +OIF:SA:43:236,1,"Port de Vigneux",48.703415,2.413578,,1,,Europe/Paris,,OIF, +OIF:SA:43:238,1,"Poste",48.703374,2.426758,,1,,Europe/Paris,,OIF, +OIF:SA:43:24,1,"Centre Administratif Cour Chapuis",48.68509,2.408569,,1,,Europe/Paris,,OIF, +OIF:SA:43:240,1,"Salvador Allende",48.693925,2.430236,,1,,Europe/Paris,,OIF, +OIF:SA:43:245,1,"Toit et Joie",48.700769,2.421807,,1,,Europe/Paris,,OIF, +OIF:SA:43:247,1,"Le Petit et Vergeat",48.695834,2.442176,,1,,Europe/Paris,,OIF, +OIF:SA:43:248,1,"Jules Verne",48.703251,2.434614,,1,,Europe/Paris,,OIF, +OIF:SA:43:250,1,"Henri Wallon",48.68956,2.436163,,1,,Europe/Paris,,OIF, +OIF:SA:43:259,1,"Rue du Repos",48.710885,2.442051,,1,,Europe/Paris,,OIF, +OIF:SA:43:26,1,"Louis Camatte",48.664105,2.430014,,1,,Europe/Paris,,OIF, +OIF:SA:43:261,1,"Sellier",48.70521,2.459375,,1,,Europe/Paris,,OIF, +OIF:SA:43:266,1,"Lycée Marcel Pagnol",48.697472,2.381199,,1,,Europe/Paris,,OIF, +OIF:SA:43:28,1,"Port aux Cerises",48.690338,2.411176,,1,,Europe/Paris,,OIF, +OIF:SA:43:30,1,"CES Delacroix",48.675905,2.406901,,1,,Europe/Paris,,OIF, +OIF:SA:43:32,1,"Parc de Champrosay",48.662015,2.426588,,1,,Europe/Paris,,OIF, +OIF:SA:43:36,1,"Parc du Château",48.692463,2.41993,,1,,Europe/Paris,,OIF, +OIF:SA:43:40,1,"Chemin Vert",48.692274,2.43128,,1,,Europe/Paris,,OIF, +OIF:SA:43:41,1,"Cité Brossolette",48.679811,2.413007,,1,,Europe/Paris,,OIF, +OIF:SA:43:43,1,"Citadelle",48.683805,2.421769,,1,,Europe/Paris,,OIF, +OIF:SA:43:45,1,"La Coulette",48.667816,2.416298,,1,,Europe/Paris,,OIF, +OIF:SA:43:47,1,"Croix de Sénart",48.678155,2.423457,,1,,Europe/Paris,,OIF, +OIF:SA:43:49,1,"Danton",48.675048,2.411674,,1,,Europe/Paris,,OIF, +OIF:SA:43:54,1,"Ermitage",48.668109,2.435871,,1,,Europe/Paris,,OIF, +OIF:SA:43:56,1,"Ferdinand Buisson",48.680424,2.402407,,1,,Europe/Paris,,OIF, +OIF:SA:43:58,1,"Fruchart",48.687297,2.392247,,1,,Europe/Paris,,OIF, +OIF:SA:43:60,1,"Gendarmerie",48.677853,2.410582,,1,,Europe/Paris,,OIF, +OIF:SA:43:62,1,"Gibraltar",48.688246,2.391271,,1,,Europe/Paris,,OIF, +OIF:SA:43:64,1,"Gymnase",48.678086,2.404522,,1,,Europe/Paris,,OIF, +OIF:SA:43:66,1,"HLM Pont de Ris",48.663954,2.421696,,1,,Europe/Paris,,OIF, +OIF:SA:43:68,1,"Hôpital Dupuytren",48.674903,2.413849,,1,,Europe/Paris,,OIF, +OIF:SA:43:7,1,"Place du 19 Mars 62",48.684012,2.41524,,1,,Europe/Paris,,OIF, +OIF:SA:43:70,1,"Hôpital Joffre",48.665759,2.429712,,1,,Europe/Paris,,OIF, +OIF:SA:43:72,1,"Hôtel de la Forêt",48.671447,2.413701,,1,,Europe/Paris,,OIF, +OIF:SA:43:74,1,"Hôtel de Ville - Château de Villiers",48.682279,2.405891,,1,,Europe/Paris,,OIF, +OIF:SA:43:76,1,"Paris Jardins",48.687317,2.398173,,1,,Europe/Paris,,OIF, +OIF:SA:43:78,1,"Jean Jaurès",48.692424,2.418063,,1,,Europe/Paris,,OIF, +OIF:SA:43:80,1,"Jonquilles",48.676005,2.41856,,1,,Europe/Paris,,OIF, +OIF:SA:43:82,1,"LEP Nadar",48.682089,2.432945,,1,,Europe/Paris,,OIF, +OIF:SA:43:83,1,"Lilas",48.68392,2.395386,,1,,Europe/Paris,,OIF, +OIF:SA:43:85,1,"Marcel Linard",48.692682,2.415355,,1,,Europe/Paris,,OIF, +OIF:SA:43:87,1,"Port aux Malades",48.673615,2.411573,,1,,Europe/Paris,,OIF, +OIF:SA:43:89,1,"Marais",48.681021,2.427313,,1,,Europe/Paris,,OIF, +OIF:SA:43:93,1,"Marché",48.686072,2.409202,,1,,Europe/Paris,,OIF, +OIF:SA:43:95,1,"Mazières",48.680695,2.399971,,1,,Europe/Paris,,OIF, +OIF:SA:44:100,1,"Jean Monnet",48.933018,2.429393,,1,,Europe/Paris,,OIF, +OIF:SA:44:102,1,"Zone d'Activité",48.932773,2.433164,,1,,Europe/Paris,,OIF, +OIF:SA:44:104,1,"Actipôle",48.933358,2.442209,,1,,Europe/Paris,,OIF, +OIF:SA:44:107,1,"Jacques Joly",48.93398,2.445675,,1,,Europe/Paris,,OIF, +OIF:SA:44:110,1,"Camille Saint-Saëns",48.936127,2.445939,,1,,Europe/Paris,,OIF, +OIF:SA:44:112,1,"Victor Hugo",48.937274,2.449242,,1,,Europe/Paris,,OIF, +OIF:SA:44:114,1,"Division Leclerc",48.935322,2.45183,,1,,Europe/Paris,,OIF, +OIF:SA:44:115,1,"Louis Pasteur",48.934188,2.45296,,1,,Europe/Paris,,OIF, +OIF:SA:44:131,1,"Cottage",48.936055,2.451068,,1,,Europe/Paris,,OIF, +OIF:SA:44:14,1,"ZA Péripole",48.856332,2.492209,,1,,Europe/Paris,,OIF, +OIF:SA:44:16,1,"Les Abbesses",48.876582,2.564512,,1,,Europe/Paris,,OIF, +OIF:SA:44:18,1,"Cimetière de l'Est",48.876557,2.560806,,1,,Europe/Paris,,OIF, +OIF:SA:44:2,1,"Sablières",48.931594,2.486481,,1,,Europe/Paris,,OIF, +OIF:SA:44:20,1,"Sainte-Clotilde",48.876424,2.567148,,1,,Europe/Paris,,OIF, +OIF:SA:44:21,1,"Guynemer",48.878048,2.568627,,1,,Europe/Paris,,OIF, +OIF:SA:44:22,1,"Paul de Kock",48.8765,2.569683,,1,,Europe/Paris,,OIF, +OIF:SA:44:24,1,"Pépinière",48.878449,2.56559,,1,,Europe/Paris,,OIF, +OIF:SA:44:25,1,"Pont Saint-Pierre",48.876742,2.557203,,1,,Europe/Paris,,OIF, +OIF:SA:44:4,1,"Pierre Sémard / Turgot",48.930722,2.483034,,1,,Europe/Paris,,OIF, +OIF:SA:44:99,1,"Jean Jaurès / Division Leclerc",48.93289,2.424155,,1,,Europe/Paris,,OIF, +OIF:SA:46:10000,1,"Mairie",48.642587,2.292584,,1,,Europe/Paris,,OIF, +OIF:SA:46:10001,1,"Fontaine Mansart",48.658652,2.28521,,1,,Europe/Paris,,OIF, +OIF:SA:46:10002,1,"Nord France",48.64749,2.280744,,1,,Europe/Paris,,OIF, +OIF:SA:46:10004,1,"Paradis",48.644363,2.283318,,1,,Europe/Paris,,OIF, +OIF:SA:46:10007,1,"Rue de Paris",48.643278,2.289606,,1,,Europe/Paris,,OIF, +OIF:SA:46:10018,1,"Auteuil",48.646597,2.220909,,1,,Europe/Paris,,OIF, +OIF:SA:46:10020,1,"Bel Ébat",48.655279,2.210449,,1,,Europe/Paris,,OIF, +OIF:SA:46:10024,1,"Étang Neuf",48.637918,2.240174,,1,,Europe/Paris,,OIF, +OIF:SA:46:10026,1,"La Folie Bessin",48.667639,2.198619,,1,,Europe/Paris,,OIF, +OIF:SA:46:10028,1,"Les Fonceaux",48.645785,2.236985,,1,,Europe/Paris,,OIF, +OIF:SA:46:10031,1,"Fontaine de Jouvence",48.664119,2.21458,,1,,Europe/Paris,,OIF, +OIF:SA:46:10033,1,"Le Fromage Mou",48.639415,2.253151,,1,,Europe/Paris,,OIF, +OIF:SA:46:10035,1,"Gambetta",48.636291,2.229836,,1,,Europe/Paris,,OIF, +OIF:SA:46:10037,1,"La Guillère",48.640818,2.236425,,1,,Europe/Paris,,OIF, +OIF:SA:46:10041,1,"Laboratoires",48.647155,2.236399,,1,,Europe/Paris,,OIF, +OIF:SA:46:10043,1,"Le Gué",48.650098,2.216037,,1,,Europe/Paris,,OIF, +OIF:SA:46:10045,1,"Le Houssaye",48.639898,2.243541,,1,,Europe/Paris,,OIF, +OIF:SA:46:10047,1,"Le Mesnil",48.637772,2.218799,,1,,Europe/Paris,,OIF, +OIF:SA:46:10049,1,"Mairie",48.642498,2.23067,,1,,Europe/Paris,,OIF, +OIF:SA:46:10051,1,"Le Mesnil Forget",48.644753,2.244434,,1,,Europe/Paris,,OIF, +OIF:SA:46:10056,1,"Poteau Blanc",48.660815,2.205761,,1,,Europe/Paris,,OIF, +OIF:SA:46:10059,1,"Zone Industrielle Fonds des Prés",48.639606,2.209938,,1,,Europe/Paris,,OIF, +OIF:SA:46:10135,1,"Église",48.529828,2.19376,,1,,Europe/Paris,,OIF, +OIF:SA:46:10148,1,"Cimetière",48.314878,2.08217,,1,,Europe/Paris,,OIF, +OIF:SA:46:10158,1,"Montreau",48.305117,2.054692,,1,,Europe/Paris,,OIF, +OIF:SA:46:10160,1,"Aubray",48.407728,1.979228,,1,,Europe/Paris,,OIF, +OIF:SA:46:10164,1,"Château d'Eau",48.41372,2.002213,,1,,Europe/Paris,,OIF, +OIF:SA:46:10166,1,"Garenne",48.415734,2.003679,,1,,Europe/Paris,,OIF, +OIF:SA:46:10168,1,"Les Vignes",48.415213,2.010347,,1,,Europe/Paris,,OIF, +OIF:SA:46:10208,1,"Poste",48.346596,2.04448,,1,,Europe/Paris,,OIF, +OIF:SA:46:10268,1,"Le Moulin à Vent",48.644356,2.249562,,1,,Europe/Paris,,OIF, +OIF:SA:46:10270,1,"Paul Fort",48.648675,2.254608,,1,,Europe/Paris,,OIF, +OIF:SA:46:10272,1,"Place de l'Europe",48.64076,2.268232,,1,,Europe/Paris,,OIF, +OIF:SA:46:10274,1,"Place de la Paix",48.640919,2.272579,,1,,Europe/Paris,,OIF, +OIF:SA:46:10278,1,"La Poste",48.638952,2.274033,,1,,Europe/Paris,,OIF, +OIF:SA:46:10280,1,"Pont Belles Dames",48.650416,2.272248,,1,,Europe/Paris,,OIF, +OIF:SA:46:10282,1,"Rue de Paris",48.643614,2.269575,,1,,Europe/Paris,,OIF, +OIF:SA:46:10284,1,"Tourangelle",48.645828,2.258933,,1,,Europe/Paris,,OIF, +OIF:SA:46:10286,1,"Bertrand Faure",48.449491,2.187986,,1,,Europe/Paris,,OIF, +OIF:SA:46:10288,1,"Ferme de Champigny",48.46642,2.192352,,1,,Europe/Paris,,OIF, +OIF:SA:46:10290,1,"Cimetière",48.441363,2.180558,,1,,Europe/Paris,,OIF, +OIF:SA:46:10292,1,"Cité",48.446448,2.184326,,1,,Europe/Paris,,OIF, +OIF:SA:46:10298,1,"Impasse des Prés",48.464203,2.191094,,1,,Europe/Paris,,OIF, +OIF:SA:46:10302,1,"Les Acacias",48.443482,2.181727,,1,,Europe/Paris,,OIF, +OIF:SA:46:10304,1,"Les Blandards",48.439851,2.179366,,1,,Europe/Paris,,OIF, +OIF:SA:46:10306,1,"La Martinière",48.477969,2.196715,,1,,Europe/Paris,,OIF, +OIF:SA:46:10307,1,"Les Monceaux",48.458322,2.193996,,1,,Europe/Paris,,OIF, +OIF:SA:46:10309,1,"Les Rouas",48.436471,2.179775,,1,,Europe/Paris,,OIF, +OIF:SA:46:10311,1,"Mairie",48.447078,2.181669,,1,,Europe/Paris,,OIF, +OIF:SA:46:10313,1,"Maison de Retraite",48.440657,2.176763,,1,,Europe/Paris,,OIF, +OIF:SA:46:10315,1,"Notre-Dame des Prés",48.45117,2.18959,,1,,Europe/Paris,,OIF, +OIF:SA:46:10317,1,"Rue des Ponts",48.44937,2.178074,,1,,Europe/Paris,,OIF, +OIF:SA:46:10319,1,"Villemartin",48.461544,2.189588,,1,,Europe/Paris,,OIF, +OIF:SA:46:10321,1,"Zone Industrielle les Rochettes",48.452849,2.171347,,1,,Europe/Paris,,OIF, +OIF:SA:46:10325,1,"Beauséjour",48.653917,2.340775,,1,,Europe/Paris,,OIF, +OIF:SA:46:10331,1,"Danielle Casanova",48.657484,2.357359,,1,,Europe/Paris,,OIF, +OIF:SA:46:10334,1,"Docteur Roux",48.663074,2.358019,,1,,Europe/Paris,,OIF, +OIF:SA:46:10336,1,"Etoile Bleue",48.654598,2.364053,,1,,Europe/Paris,,OIF, +OIF:SA:46:10345,1,"Jean Morlet",48.668999,2.354996,,1,,Europe/Paris,,OIF, +OIF:SA:46:10349,1,"Lucien Sampaix",48.655758,2.355486,,1,,Europe/Paris,,OIF, +OIF:SA:46:10352,1,"La Gribelette",48.646037,2.353244,,1,,Europe/Paris,,OIF, +OIF:SA:46:10359,1,"Les Bouleaux",48.648881,2.360401,,1,,Europe/Paris,,OIF, +OIF:SA:46:10360,1,"Les Fouilles",48.646494,2.357952,,1,,Europe/Paris,,OIF, +OIF:SA:46:10362,1,"Les Jonquilles",48.645593,2.34674,,1,,Europe/Paris,,OIF, +OIF:SA:46:10364,1,"Les Pervenches",48.647597,2.347778,,1,,Europe/Paris,,OIF, +OIF:SA:46:10366,1,"Les Tourelles",48.666576,2.353909,,1,,Europe/Paris,,OIF, +OIF:SA:46:10367,1,"Libération",48.649329,2.355392,,1,,Europe/Paris,,OIF, +OIF:SA:46:10379,1,"Paul Langevin",48.653098,2.353491,,1,,Europe/Paris,,OIF, +OIF:SA:46:10380,1,"Pierre Mendès France",48.650945,2.351469,,1,,Europe/Paris,,OIF, +OIF:SA:46:10381,1,"Le Pavillon du Garde",48.649298,2.361568,,1,,Europe/Paris,,OIF, +OIF:SA:46:10385,1,"Robespierre",48.652923,2.347901,,1,,Europe/Paris,,OIF, +OIF:SA:46:10386,1,"Square de la Paix",48.659229,2.346485,,1,,Europe/Paris,,OIF, +OIF:SA:46:10400,1,"Stade",48.580907,2.256646,,1,,Europe/Paris,,OIF, +OIF:SA:46:10404,1,"Villarceaux",48.668264,2.236426,,1,,Europe/Paris,,OIF, +OIF:SA:46:10406,1,"Les Clozeaux",48.660791,2.236359,,1,,Europe/Paris,,OIF, +OIF:SA:46:10408,1,"Les Hameaux",48.663196,2.236606,,1,,Europe/Paris,,OIF, +OIF:SA:46:10410,1,"Jules Verne",48.658172,2.243705,,1,,Europe/Paris,,OIF, +OIF:SA:46:10412,1,"La Saulaie",48.661205,2.231175,,1,,Europe/Paris,,OIF, +OIF:SA:46:10414,1,"Lunezy",48.664088,2.25033,,1,,Europe/Paris,,OIF, +OIF:SA:46:10419,1,"Pylandries",48.662135,2.241852,,1,,Europe/Paris,,OIF, +OIF:SA:46:10420,1,"Saint-Pierre",48.651822,2.25014,,1,,Europe/Paris,,OIF, +OIF:SA:46:10422,1,"Versailles",48.660517,2.241882,,1,,Europe/Paris,,OIF, +OIF:SA:46:10588,1,"Ambroise Croizat",48.713036,2.257284,,1,,Europe/Paris,,OIF, +OIF:SA:46:10597,1,"Cosmonautes / Flaubert",48.717144,2.260438,,1,,Europe/Paris,,OIF, +OIF:SA:46:10599,1,"Cosmonautes / Stalingrad",48.714634,2.258735,,1,,Europe/Paris,,OIF, +OIF:SA:46:10630,1,"Léon Blum",48.710141,2.256895,,1,,Europe/Paris,,OIF, +OIF:SA:46:10657,1,"Ancienne Gare",48.442244,2.007571,,1,,Europe/Paris,,OIF, +OIF:SA:46:10659,1,"Mare",48.445091,2.00331,,1,,Europe/Paris,,OIF, +OIF:SA:46:10673,1,"Château d'Eau",48.350992,1.988153,,1,,Europe/Paris,,OIF, +OIF:SA:46:10696,1,"Le Bréau",48.46743,1.981403,,1,,Europe/Paris,,OIF, +OIF:SA:46:10698,1,"Mairie",48.47068,2.001201,,1,,Europe/Paris,,OIF, +OIF:SA:46:10700,1,"Beaurepaire",48.524361,2.033567,,1,,Europe/Paris,,OIF, +OIF:SA:46:10702,1,"Buttes Rouges",48.530311,2.029573,,1,,Europe/Paris,,OIF, +OIF:SA:46:10704,1,"Colas",48.53228,2.053235,,1,,Europe/Paris,,OIF, +OIF:SA:46:10706,1,"Église",48.530859,2.043579,,1,,Europe/Paris,,OIF, +OIF:SA:46:10708,1,"Mesnil Grand",48.533747,2.06365,,1,,Europe/Paris,,OIF, +OIF:SA:46:10710,1,"La Bruyère",48.525976,2.067717,,1,,Europe/Paris,,OIF, +OIF:SA:46:10712,1,"Marchais",48.517216,2.056463,,1,,Europe/Paris,,OIF, +OIF:SA:46:10773,1,"Baville",48.55882,2.130478,,1,,Europe/Paris,,OIF, +OIF:SA:46:10783,1,"Tuilerie",48.566276,2.135399,,1,,Europe/Paris,,OIF, +OIF:SA:46:10785,1,"Mairie",48.553857,2.124682,,1,,Europe/Paris,,OIF, +OIF:SA:46:10789,1,"Église",48.42978,1.967149,,1,,Europe/Paris,,OIF, +OIF:SA:46:10791,1,"Guillerville",48.416764,1.953546,,1,,Europe/Paris,,OIF, +OIF:SA:46:10793,1,"Guillerville / la Gare",48.423165,1.962117,,1,,Europe/Paris,,OIF, +OIF:SA:46:10796,1,"Paponville",48.432781,1.952348,,1,,Europe/Paris,,OIF, +OIF:SA:46:10800,1,"Allée de l'Orge",48.646352,2.301849,,1,,Europe/Paris,,OIF, +OIF:SA:46:10804,1,"Aristide Briand",48.633842,2.330246,,1,,Europe/Paris,,OIF, +OIF:SA:46:10824,1,"Normandie Niemen",48.637296,2.331745,,1,,Europe/Paris,,OIF, +OIF:SA:46:10842,1,"Henri Sellier",48.63548,2.327459,,1,,Europe/Paris,,OIF, +OIF:SA:46:10846,1,"Jean Rostand",48.649761,2.305863,,1,,Europe/Paris,,OIF, +OIF:SA:46:10876,1,"Place Hausen",48.629747,2.333208,,1,,Europe/Paris,,OIF, +OIF:SA:46:10896,1,"Croix Blanche",48.624145,2.341604,,1,,Europe/Paris,,OIF, +OIF:SA:46:10898,1,"Chanteloup",48.604045,2.256759,,1,,Europe/Paris,,OIF, +OIF:SA:46:10900,1,"Cité",48.596962,2.280433,,1,,Europe/Paris,,OIF, +OIF:SA:46:10902,1,"Jules Vallès",48.596549,2.280311,,1,,Europe/Paris,,OIF, +OIF:SA:46:10904,1,"Louis Babin",48.595779,2.255674,,1,,Europe/Paris,,OIF, +OIF:SA:46:10906,1,"La Grande Folie",48.605868,2.249993,,1,,Europe/Paris,,OIF, +OIF:SA:46:10908,1,"La Petite Folie",48.600494,2.246607,,1,,Europe/Paris,,OIF, +OIF:SA:46:10910,1,"Le Parc",48.594567,2.264072,,1,,Europe/Paris,,OIF, +OIF:SA:46:10912,1,"Cendrennes",48.599236,2.279183,,1,,Europe/Paris,,OIF, +OIF:SA:46:10914,1,"Paul Langevin",48.595282,2.272818,,1,,Europe/Paris,,OIF, +OIF:SA:46:10916,1,"Pré Barallon",48.593577,2.262393,,1,,Europe/Paris,,OIF, +OIF:SA:46:10922,1,"Tuileries",48.606993,2.255637,,1,,Europe/Paris,,OIF, +OIF:SA:46:10966,1,"Les Cours",48.43026,2.090985,,1,,Europe/Paris,,OIF, +OIF:SA:46:10968,1,"Mairie",48.433383,2.075447,,1,,Europe/Paris,,OIF, +OIF:SA:46:10975,1,"Église",48.581151,2.123291,,1,,Europe/Paris,,OIF, +OIF:SA:46:10977,1,"Gloriette",48.581858,2.121635,,1,,Europe/Paris,,OIF, +OIF:SA:46:10983,1,"Rue Bizet",48.631852,2.322191,,1,,Europe/Paris,,OIF, +OIF:SA:46:10984,1,"Boëldieu",48.630715,2.319384,,1,,Europe/Paris,,OIF, +OIF:SA:46:10989,1,"Cimetière",48.629409,2.305736,,1,,Europe/Paris,,OIF, +OIF:SA:46:10993,1,"Cottage",48.638724,2.318649,,1,,Europe/Paris,,OIF, +OIF:SA:46:10999,1,"Hôtel de Ville",48.629817,2.302372,,1,,Europe/Paris,,OIF, +OIF:SA:46:11001,1,"Jacques Brel",48.629954,2.313736,,1,,Europe/Paris,,OIF, +OIF:SA:46:11007,1,"Launay",48.634527,2.302749,,1,,Europe/Paris,,OIF, +OIF:SA:46:11009,1,"Les Genêts",48.630827,2.316713,,1,,Europe/Paris,,OIF, +OIF:SA:46:11010,1,"Marché",48.638202,2.313129,,1,,Europe/Paris,,OIF, +OIF:SA:46:11013,1,"Montatons",48.627725,2.312103,,1,,Europe/Paris,,OIF, +OIF:SA:46:11014,1,"Noue Rousseau",48.628058,2.312578,,1,,Europe/Paris,,OIF, +OIF:SA:46:11016,1,"Rosières",48.629797,2.311302,,1,,Europe/Paris,,OIF, +OIF:SA:46:11020,1,"Gounod",48.634958,2.324957,,1,,Europe/Paris,,OIF, +OIF:SA:46:11025,1,"Tiphoines",48.629232,2.299742,,1,,Europe/Paris,,OIF, +OIF:SA:46:11027,1,"Vallée de l'Orge",48.63423,2.299332,,1,,Europe/Paris,,OIF, +OIF:SA:46:11029,1,"Verdun",48.637447,2.315578,,1,,Europe/Paris,,OIF, +OIF:SA:46:11069,1,"Place",48.541468,2.178539,,1,,Europe/Paris,,OIF, +OIF:SA:46:11081,1,"Feugères",48.554081,2.179191,,1,,Europe/Paris,,OIF, +OIF:SA:46:11085,1,"La Cordelle",48.563149,2.191407,,1,,Europe/Paris,,OIF, +OIF:SA:46:11087,1,"Haut Fuyeau",48.555044,2.179757,,1,,Europe/Paris,,OIF, +OIF:SA:46:11091,1,"Mairie",48.560757,2.183762,,1,,Europe/Paris,,OIF, +OIF:SA:46:11095,1,"Pont Guérin",48.564146,2.183183,,1,,Europe/Paris,,OIF, +OIF:SA:46:11097,1,"Buhoterie",48.688012,2.264667,,1,,Europe/Paris,,OIF, +OIF:SA:46:11099,1,"Collège Pablo Picasso",48.690363,2.280028,,1,,Europe/Paris,,OIF, +OIF:SA:46:11101,1,"Grande Fontaine",48.689403,2.261312,,1,,Europe/Paris,,OIF, +OIF:SA:46:11103,1,"L'Arpajonnais",48.690698,2.270447,,1,,Europe/Paris,,OIF, +OIF:SA:46:11105,1,"Église",48.693057,2.269548,,1,,Europe/Paris,,OIF, +OIF:SA:46:11111,1,"Les Dévodes",48.696428,2.26991,,1,,Europe/Paris,,OIF, +OIF:SA:46:11113,1,"Louis Aragon",48.689151,2.277224,,1,,Europe/Paris,,OIF, +OIF:SA:46:11114,1,"Mairie",48.691041,2.264296,,1,,Europe/Paris,,OIF, +OIF:SA:46:11116,1,"Monthuchet",48.687546,2.275033,,1,,Europe/Paris,,OIF, +OIF:SA:46:11118,1,"Place Adam",48.688802,2.279152,,1,,Europe/Paris,,OIF, +OIF:SA:46:11120,1,"Place Marty",48.68623,2.277281,,1,,Europe/Paris,,OIF, +OIF:SA:46:11121,1,"Pont Neuf",48.693706,2.281672,,1,,Europe/Paris,,OIF, +OIF:SA:46:11123,1,"Rue du Rocher",48.690702,2.269008,,1,,Europe/Paris,,OIF, +OIF:SA:46:11127,1,"Lucien Midol",48.672895,2.353382,,1,,Europe/Paris,,OIF, +OIF:SA:46:11128,1,"Blancheface",48.529734,2.096899,,1,,Europe/Paris,,OIF, +OIF:SA:46:11134,1,"La Charpenterie",48.53854,2.090949,,1,,Europe/Paris,,OIF, +OIF:SA:46:11136,1,"Le Mesnil",48.533258,2.101627,,1,,Europe/Paris,,OIF, +OIF:SA:46:11138,1,"Mairie",48.536721,2.080914,,1,,Europe/Paris,,OIF, +OIF:SA:46:11140,1,"Mondétour",48.520526,2.074524,,1,,Europe/Paris,,OIF, +OIF:SA:46:11143,1,"Montflix",48.512872,2.107699,,1,,Europe/Paris,,OIF, +OIF:SA:46:11144,1,"Rue des Sources",48.538654,2.100127,,1,,Europe/Paris,,OIF, +OIF:SA:46:11163,1,"La Briche",48.535608,2.172932,,1,,Europe/Paris,,OIF, +OIF:SA:46:11165,1,"Les Émondants",48.519491,2.16142,,1,,Europe/Paris,,OIF, +OIF:SA:46:11167,1,"Vallée",48.528198,2.150265,,1,,Europe/Paris,,OIF, +OIF:SA:46:11169,1,"Congerville",48.387383,1.988518,,1,,Europe/Paris,,OIF, +OIF:SA:46:11173,1,"Thionville",48.377572,1.994063,,1,,Europe/Paris,,OIF, +OIF:SA:46:11334,1,"École Île de France",48.702044,2.25874,,1,,Europe/Paris,,OIF, +OIF:SA:46:11338,1,"Centre Commercial Villebon 2",48.704554,2.255541,,1,,Europe/Paris,,OIF, +OIF:SA:46:11340,1,"La Prairie",48.699886,2.265893,,1,,Europe/Paris,,OIF, +OIF:SA:46:11368,1,"Bois Fourgon",48.512193,2.136914,,1,,Europe/Paris,,OIF, +OIF:SA:46:11370,1,"Cimetière",48.512494,2.126609,,1,,Europe/Paris,,OIF, +OIF:SA:46:11372,1,"Fourchainville",48.50135,2.123719,,1,,Europe/Paris,,OIF, +OIF:SA:46:11376,1,"Saudreville",48.498673,2.132299,,1,,Europe/Paris,,OIF, +OIF:SA:46:11380,1,"Bas Rochers",48.653865,2.268038,,1,,Europe/Paris,,OIF, +OIF:SA:46:11382,1,"Beaulieu",48.658064,2.269383,,1,,Europe/Paris,,OIF, +OIF:SA:46:11385,1,"Gouny",48.664626,2.270433,,1,,Europe/Paris,,OIF, +OIF:SA:46:11387,1,"Grand Noyer",48.66193,2.271556,,1,,Europe/Paris,,OIF, +OIF:SA:46:11389,1,"La Grange aux Cercles",48.660373,2.276137,,1,,Europe/Paris,,OIF, +OIF:SA:46:11391,1,"Grenouillère",48.655376,2.268674,,1,,Europe/Paris,,OIF, +OIF:SA:46:11399,1,"Les Joncs Marins",48.665233,2.278128,,1,,Europe/Paris,,OIF, +OIF:SA:46:11403,1,"Mairie",48.660877,2.268328,,1,,Europe/Paris,,OIF, +OIF:SA:46:11405,1,"Mésanges",48.664604,2.256089,,1,,Europe/Paris,,OIF, +OIF:SA:46:11408,1,"Plateau",48.664614,2.263933,,1,,Europe/Paris,,OIF, +OIF:SA:46:11410,1,"Presbytère",48.664769,2.267529,,1,,Europe/Paris,,OIF, +OIF:SA:46:11412,1,"Ruisseau Blanc",48.667061,2.254667,,1,,Europe/Paris,,OIF, +OIF:SA:46:11414,1,"Saint-Fiacre",48.652241,2.272518,,1,,Europe/Paris,,OIF, +OIF:SA:46:11416,1,"Voie des Postes",48.661384,2.275247,,1,,Europe/Paris,,OIF, +OIF:SA:46:11417,1,"Zone d'Activité des Graviers",48.650829,2.271095,,1,,Europe/Paris,,OIF, +OIF:SA:46:11422,1,"Château d'Eau",48.685887,2.209291,,1,,Europe/Paris,,OIF, +OIF:SA:46:11424,1,"Chemin Vert",48.678551,2.239888,,1,,Europe/Paris,,OIF, +OIF:SA:46:11426,1,"EDF",48.679659,2.231531,,1,,Europe/Paris,,OIF, +OIF:SA:46:11430,1,"Fretay",48.671857,2.213116,,1,,Europe/Paris,,OIF, +OIF:SA:46:11432,1,"La Brûlerie",48.685381,2.218155,,1,,Europe/Paris,,OIF, +OIF:SA:46:11434,1,"La Poitevine",48.674975,2.220906,,1,,Europe/Paris,,OIF, +OIF:SA:46:11436,1,"Le Rocher",48.675922,2.239126,,1,,Europe/Paris,,OIF, +OIF:SA:46:11477,1,"Carrefour Méderic / Péri",48.659284,2.306661,,1,,Europe/Paris,,OIF, +OIF:SA:46:11480,1,"Garreneau",48.655318,2.299045,,1,,Europe/Paris,,OIF, +OIF:SA:46:11485,1,"Résidence",48.660463,2.303508,,1,,Europe/Paris,,OIF, +OIF:SA:46:11487,1,"Zone d'Activité Pointe à l'Abbé",48.664045,2.295551,,1,,Europe/Paris,,OIF, +OIF:SA:46:11493,1,"Bretagne",48.671431,2.365243,,1,,Europe/Paris,,OIF, +OIF:SA:46:11495,1,"Café des Sports",48.677395,2.371558,,1,,Europe/Paris,,OIF, +OIF:SA:46:11497,1,"Château",48.669923,2.377287,,1,,Europe/Paris,,OIF, +OIF:SA:46:11499,1,"Lt Col. Bizeul",48.67089,2.360683,,1,,Europe/Paris,,OIF, +OIF:SA:46:11501,1,"Docteur Roux",48.663757,2.359757,,1,,Europe/Paris,,OIF, +OIF:SA:46:11503,1,"Du Bellay",48.674552,2.365279,,1,,Europe/Paris,,OIF, +OIF:SA:46:11515,1,"Husson",48.67657,2.379613,,1,,Europe/Paris,,OIF, +OIF:SA:46:11519,1,"La Forêt",48.656276,2.371964,,1,,Europe/Paris,,OIF, +OIF:SA:46:11522,1,"Le Billoir",48.666637,2.36387,,1,,Europe/Paris,,OIF, +OIF:SA:46:11524,1,"Poirier Picquet",48.663857,2.375321,,1,,Europe/Paris,,OIF, +OIF:SA:46:11528,1,"Les Patios",48.645958,2.36548,,1,,Europe/Paris,,OIF, +OIF:SA:46:11530,1,"Les Sablons",48.669514,2.364502,,1,,Europe/Paris,,OIF, +OIF:SA:46:11532,1,"Mairie",48.671776,2.375422,,1,,Europe/Paris,,OIF, +OIF:SA:46:11535,1,"Molière",48.667816,2.359921,,1,,Europe/Paris,,OIF, +OIF:SA:46:11543,1,"Calypso",48.68086,2.379114,,1,,Europe/Paris,,OIF, +OIF:SA:46:11545,1,"Petit Montmartre",48.675135,2.367512,,1,,Europe/Paris,,OIF, +OIF:SA:46:11547,1,"François Mitterrand",48.658777,2.367394,,1,,Europe/Paris,,OIF, +OIF:SA:46:11551,1,"Provence",48.668561,2.361652,,1,,Europe/Paris,,OIF, +OIF:SA:46:11555,1,"Stalingrad",48.675817,2.373633,,1,,Europe/Paris,,OIF, +OIF:SA:46:11557,1,"Victor Schoelcher",48.648843,2.367774,,1,,Europe/Paris,,OIF, +OIF:SA:46:11703,1,"Les Thomas",48.679661,2.162861,,1,,Europe/Paris,,OIF, +OIF:SA:46:11723,1,"La Queue d'Oiseau",48.678654,2.191281,,1,,Europe/Paris,,OIF, +OIF:SA:46:14417,1,"Château",48.673647,2.289877,,1,,Europe/Paris,,OIF, +OIF:SA:46:14421,1,"Gutenberg",48.708366,2.256517,,1,,Europe/Paris,,OIF, +OIF:SA:46:14469,1,"Clos de Launay",48.680648,2.23231,,1,,Europe/Paris,,OIF, +OIF:SA:46:14471,1,"Trévoix",48.585674,2.22118,,1,,Europe/Paris,,OIF, +OIF:SA:46:14473,1,"Orangerie",48.591824,2.218171,,1,,Europe/Paris,,OIF, +OIF:SA:46:14475,1,"La Chapelle",48.589606,2.221151,,1,,Europe/Paris,,OIF, +OIF:SA:46:14479,1,"Vernet",48.590404,2.227674,,1,,Europe/Paris,,OIF, +OIF:SA:46:14491,1,"République",48.588979,2.218395,,1,,Europe/Paris,,OIF, +OIF:SA:46:14497,1,"Cerfeuille",48.593974,2.234456,,1,,Europe/Paris,,OIF, +OIF:SA:46:14499,1,"Mare des Champs",48.605744,2.238648,,1,,Europe/Paris,,OIF, +OIF:SA:46:14501,1,"Collège Jean Moulin",48.580457,2.249846,,1,,Europe/Paris,,OIF, +OIF:SA:46:14503,1,"Collège Albert Camus",48.580864,2.253598,,1,,Europe/Paris,,OIF, +OIF:SA:46:14505,1,"Rond-Point de la Roche",48.600792,2.234795,,1,,Europe/Paris,,OIF, +OIF:SA:46:14507,1,"Le Perray",48.657607,2.290658,,1,,Europe/Paris,,OIF, +OIF:SA:46:14512,1,"La Huchette",48.493742,2.185771,,1,,Europe/Paris,,OIF, +OIF:SA:46:14516,1,"Collège de la Fontaine aux Bergers",48.594702,2.2249,,1,,Europe/Paris,,OIF, +OIF:SA:46:14519,1,"Collège Louise Weiss",48.661396,2.24528,,1,,Europe/Paris,,OIF, +OIF:SA:46:14522,1,"Église",48.529799,2.225405,,1,,Europe/Paris,,OIF, +OIF:SA:46:14526,1,"Saut du Loup",48.595463,2.188674,,1,,Europe/Paris,,OIF, +OIF:SA:46:14528,1,"Jean de la Fontaine",48.445498,2.179897,,1,,Europe/Paris,,OIF, +OIF:SA:46:14530,1,"Courtabœuf 7",48.682542,2.215046,,1,,Europe/Paris,,OIF, +OIF:SA:46:14536,1,"Rue de la Libération",48.591646,2.187994,,1,,Europe/Paris,,OIF, +OIF:SA:46:14537,1,"Avenue du 8 Mai 1945",48.437639,2.162687,,1,,Europe/Paris,,OIF, +OIF:SA:46:14538,1,"Montfaucon",48.439962,2.162159,,1,,Europe/Paris,,OIF, +OIF:SA:46:14548,1,"Roses",48.631147,2.329148,,1,,Europe/Paris,,OIF, +OIF:SA:46:14550,1,"L'Envol",48.673987,2.376109,,1,,Europe/Paris,,OIF, +OIF:SA:46:14555,1,"Jean Baptiste Lebas",48.659994,2.364816,,1,,Europe/Paris,,OIF, +OIF:SA:46:14566,1,"Noyers",48.654277,2.245618,,1,,Europe/Paris,,OIF, +OIF:SA:46:14568,1,"République",48.696317,2.184536,,1,,Europe/Paris,,OIF, +OIF:SA:46:14569,1,"Mairie",48.682877,2.236921,,1,,Europe/Paris,,OIF, +OIF:SA:46:14576,1,"Monge",48.678009,2.360116,,1,,Europe/Paris,,OIF, +OIF:SA:46:14578,1,"Moulin à Vent",48.490217,2.178383,,1,,Europe/Paris,,OIF, +OIF:SA:46:14579,1,"Ulli",48.488906,2.172896,,1,,Europe/Paris,,OIF, +OIF:SA:46:14580,1,"Vallée Barbot",48.487373,2.169371,,1,,Europe/Paris,,OIF, +OIF:SA:46:14581,1,"Frères Kennedy",48.486739,2.172849,,1,,Europe/Paris,,OIF, +OIF:SA:46:14583,1,"Roussay / Kennedy",48.487733,2.176443,,1,,Europe/Paris,,OIF, +OIF:SA:46:14584,1,"Acacias",48.486309,2.180369,,1,,Europe/Paris,,OIF, +OIF:SA:46:14585,1,"Tassigny",48.485713,2.184942,,1,,Europe/Paris,,OIF, +OIF:SA:46:14586,1,"Musset",48.488228,2.183636,,1,,Europe/Paris,,OIF, +OIF:SA:46:14588,1,"Garderie",48.488392,2.18887,,1,,Europe/Paris,,OIF, +OIF:SA:46:14597,1,"Château",48.664271,2.35365,,1,,Europe/Paris,,OIF, +OIF:SA:46:14601,1,"Beaulieu",48.68209,2.285308,,1,,Europe/Paris,,OIF, +OIF:SA:46:14602,1,"Mairie",48.676391,2.29092,,1,,Europe/Paris,,OIF, +OIF:SA:46:14608,1,"J. Hébert",48.632132,2.289738,,1,,Europe/Paris,,OIF, +OIF:SA:46:14609,1,"Turaude",48.664804,2.260208,,1,,Europe/Paris,,OIF, +OIF:SA:46:14611,1,"Place de la Libération",48.658348,2.301641,,1,,Europe/Paris,,OIF, +OIF:SA:46:14617,1,"Montlhéry",48.685046,2.188066,,1,,Europe/Paris,,OIF, +OIF:SA:46:14622,1,"Carrières",48.658493,2.264952,,1,,Europe/Paris,,OIF, +OIF:SA:46:14623,1,"Cocatrix",48.500742,2.198101,,1,,Europe/Paris,,OIF, +OIF:SA:46:14624,1,"Les Acacias",48.509367,2.209443,,1,,Europe/Paris,,OIF, +OIF:SA:46:14625,1,"Centre",48.513727,2.218457,,1,,Europe/Paris,,OIF, +OIF:SA:46:14626,1,"Château",48.516162,2.226043,,1,,Europe/Paris,,OIF, +OIF:SA:46:14627,1,"Janville",48.508513,2.227236,,1,,Europe/Paris,,OIF, +OIF:SA:46:14629,1,"Chagrenon",48.497889,2.223719,,1,,Europe/Paris,,OIF, +OIF:SA:46:14630,1,"Cimetière",48.495727,2.222069,,1,,Europe/Paris,,OIF, +OIF:SA:46:14631,1,"Rue Fontaine",48.493286,2.219924,,1,,Europe/Paris,,OIF, +OIF:SA:46:14632,1,"Église",48.492298,2.217974,,1,,Europe/Paris,,OIF, +OIF:SA:46:14633,1,"Chanteloup",48.4875,2.211678,,1,,Europe/Paris,,OIF, +OIF:SA:46:14634,1,"Ruelle aux Anglais",48.485999,2.208945,,1,,Europe/Paris,,OIF, +OIF:SA:46:14635,1,"Bon Coin",48.484271,2.205958,,1,,Europe/Paris,,OIF, +OIF:SA:46:14636,1,"Moulin",48.503177,2.222458,,1,,Europe/Paris,,OIF, +OIF:SA:46:14686,1,"Bois de la Pucelle",48.427585,2.052755,,1,,Europe/Paris,,OIF, +OIF:SA:46:14693,1,"Chemin Creux",48.439735,2.157769,,1,,Europe/Paris,,OIF, +OIF:SA:46:14697,1,"HLM Bas",48.43412,2.142032,,1,,Europe/Paris,,OIF, +OIF:SA:46:14698,1,"HLM Haut",48.435389,2.14122,,1,,Europe/Paris,,OIF, +OIF:SA:46:14699,1,"Cottages",48.438482,2.144099,,1,,Europe/Paris,,OIF, +OIF:SA:46:14700,1,"Fleurettes",48.435181,2.146003,,1,,Europe/Paris,,OIF, +OIF:SA:46:14704,1,"Vallée Collin",48.440701,2.150798,,1,,Europe/Paris,,OIF, +OIF:SA:46:14712,1,"Les Croubis",48.476125,2.196023,,1,,Europe/Paris,,OIF, +OIF:SA:46:14719,1,"Buisson / Rondeau",48.567762,2.165334,,1,,Europe/Paris,,OIF, +OIF:SA:46:14721,1,"Bassin Fosse",48.570525,2.167601,,1,,Europe/Paris,,OIF, +OIF:SA:46:14723,1,"Graviers",48.572228,2.170345,,1,,Europe/Paris,,OIF, +OIF:SA:46:14724,1,"Volumier",48.575849,2.175644,,1,,Europe/Paris,,OIF, +OIF:SA:46:14725,1,"Terres Soles",48.575032,2.176689,,1,,Europe/Paris,,OIF, +OIF:SA:46:14727,1,"Badaudière",48.572772,2.17419,,1,,Europe/Paris,,OIF, +OIF:SA:46:14728,1,"Route d'Arpajon",48.570721,2.179628,,1,,Europe/Paris,,OIF, +OIF:SA:46:14730,1,"Fosse Ronde",48.571723,2.176171,,1,,Europe/Paris,,OIF, +OIF:SA:46:14732,1,"Croix de Vernailles",48.445974,2.167024,,1,,Europe/Paris,,OIF, +OIF:SA:46:14733,1,"Emmaüs Haut",48.449928,2.168626,,1,,Europe/Paris,,OIF, +OIF:SA:46:14734,1,"Jean de la Fontaine",48.441642,2.164532,,1,,Europe/Paris,,OIF, +OIF:SA:46:14735,1,"Marie Curie",48.431013,2.158627,,1,,Europe/Paris,,OIF, +OIF:SA:46:14736,1,"École les Près",48.433296,2.165221,,1,,Europe/Paris,,OIF, +OIF:SA:46:14738,1,"Rue Lucien Claude",48.606076,2.300402,,1,,Europe/Paris,,OIF, +OIF:SA:46:14739,1,"Les Pichots",48.639268,2.261602,,1,,Europe/Paris,,OIF, +OIF:SA:46:14750,1,"Verville",48.596257,2.173751,,1,,Europe/Paris,,OIF, +OIF:SA:46:14754,1,"Route de Torfou",48.516287,2.207721,,1,,Europe/Paris,,OIF, +OIF:SA:46:14756,1,"Belambra",48.521908,2.015244,,1,,Europe/Paris,,OIF, +OIF:SA:46:14758,1,"Résidence la Rocade",48.687051,2.29385,,1,,Europe/Paris,,OIF, +OIF:SA:46:14767,1,"Cimetière",48.580933,2.218169,,1,,Europe/Paris,,OIF, +OIF:SA:46:14768,1,"Le Parc",48.658348,2.30449,,1,,Europe/Paris,,OIF, +OIF:SA:46:14770,1,"Télégraphe / le Rocher",48.671488,2.276552,,1,,Europe/Paris,,OIF, +OIF:SA:46:14771,1,"Les 2 Puits",48.670882,2.270309,,1,,Europe/Paris,,OIF, +OIF:SA:46:14773,1,"Sadi Carnot",48.671865,2.260686,,1,,Europe/Paris,,OIF, +OIF:SA:46:14775,1,"La Digue",48.673589,2.256476,,1,,Europe/Paris,,OIF, +OIF:SA:46:14777,1,"Paul Doumer",48.674782,2.253597,,1,,Europe/Paris,,OIF, +OIF:SA:46:14779,1,"Fernand Arnoult",48.673483,2.260656,,1,,Europe/Paris,,OIF, +OIF:SA:46:14781,1,"Belvédère",48.672491,2.269574,,1,,Europe/Paris,,OIF, +OIF:SA:46:14783,1,"La Creusière",48.673086,2.272885,,1,,Europe/Paris,,OIF, +OIF:SA:46:14785,1,"Lunézy",48.674014,2.27756,,1,,Europe/Paris,,OIF, +OIF:SA:46:14787,1,"George Sand",48.601872,2.2849,,1,,Europe/Paris,,OIF, +OIF:SA:46:14789,1,"Collège Blaise Pascal",48.660249,2.328262,,1,,Europe/Paris,,OIF, +OIF:SA:46:14792,1,"Pasteur",48.685756,2.380578,,1,,Europe/Paris,,OIF, +OIF:SA:46:14794,1,"Butte aux Grès",48.600397,2.24004,,1,,Europe/Paris,,OIF, +OIF:SA:46:14796,1,"Les Violettes",48.604537,2.2356,,1,,Europe/Paris,,OIF, +OIF:SA:46:14797,1,"Grande Rue",48.603979,2.234138,,1,,Europe/Paris,,OIF, +OIF:SA:46:14798,1,"Marie Curie",48.60571,2.246747,,1,,Europe/Paris,,OIF, +OIF:SA:46:14800,1,"Les Folies",48.60851,2.246234,,1,,Europe/Paris,,OIF, +OIF:SA:46:14801,1,"Belles Vues",48.599244,2.242455,,1,,Europe/Paris,,OIF, +OIF:SA:46:14803,1,"Les Marsandes",48.567136,2.229524,,1,,Europe/Paris,,OIF, +OIF:SA:46:14804,1,"La Voie Creuse",48.574991,2.236945,,1,,Europe/Paris,,OIF, +OIF:SA:46:14806,1,"Longue Mare",48.579506,2.240608,,1,,Europe/Paris,,OIF, +OIF:SA:46:14808,1,"Hôpital",48.583199,2.243446,,1,,Europe/Paris,,OIF, +OIF:SA:46:14812,1,"Le Moulin",48.660521,2.376554,,1,,Europe/Paris,,OIF, +OIF:SA:46:14815,1,"Esclangon",48.674984,2.377718,,1,,Europe/Paris,,OIF, +OIF:SA:46:14817,1,"Belle Vue",48.504083,2.20303,,1,,Europe/Paris,,OIF, +OIF:SA:46:14818,1,"Président Kennedy",48.662834,2.369316,,1,,Europe/Paris,,OIF, +OIF:SA:46:14820,1,"Amédée Gordini",48.661327,2.372768,,1,,Europe/Paris,,OIF, +OIF:SA:46:14862,1,"Grange Cavée",48.474112,1.998934,,1,,Europe/Paris,,OIF, +OIF:SA:46:14869,1,"Gaillard",48.657536,2.273814,,1,,Europe/Paris,,OIF, +OIF:SA:46:14870,1,"Rochefontaine",48.541606,2.174071,,1,,Europe/Paris,,OIF, +OIF:SA:46:14871,1,"Arpenty",48.586258,2.16274,,1,,Europe/Paris,,OIF, +OIF:SA:46:14873,1,"Les Froulans",48.562097,2.247249,,1,,Europe/Paris,,OIF, +OIF:SA:46:14875,1,"Traversière",48.466754,2.192946,,1,,Europe/Paris,,OIF, +OIF:SA:46:14876,1,"Les Berges du Rouillon",48.668292,2.285309,,1,,Europe/Paris,,OIF, +OIF:SA:46:14879,1,"Maison Rouge",48.653159,2.296299,,1,,Europe/Paris,,OIF, +OIF:SA:46:14882,1,"Camping",48.65513,2.303706,,1,,Europe/Paris,,OIF, +OIF:SA:46:14883,1,"Les Rios",48.655659,2.29992,,1,,Europe/Paris,,OIF, +OIF:SA:46:14885,1,"Molilières",48.659549,2.292495,,1,,Europe/Paris,,OIF, +OIF:SA:46:14886,1,"Brinvilliers",48.662419,2.299291,,1,,Europe/Paris,,OIF, +OIF:SA:46:14891,1,"Les Clos",48.663414,2.273101,,1,,Europe/Paris,,OIF, +OIF:SA:46:14892,1,"Gaizon",48.660543,2.266116,,1,,Europe/Paris,,OIF, +OIF:SA:46:14894,1,"Bout du Monde",48.578949,2.192135,,1,,Europe/Paris,,OIF, +OIF:SA:46:14896,1,"Montauban",48.578649,2.185789,,1,,Europe/Paris,,OIF, +OIF:SA:46:14898,1,"Les Sources",48.577697,2.176133,,1,,Europe/Paris,,OIF, +OIF:SA:46:14903,1,"Les Solstices",48.656316,2.373009,,1,,Europe/Paris,,OIF, +OIF:SA:46:14908,1,"Château d'Eau",48.626653,2.26315,,1,,Europe/Paris,,OIF, +OIF:SA:46:14914,1,"Lycée Nelson Mandela",48.433968,2.137969,,1,,Europe/Paris,,OIF, +OIF:SA:46:14916,1,"Mort Rû",48.652752,2.289815,,1,,Europe/Paris,,OIF, +OIF:SA:46:14917,1,"Verdun",48.654568,2.290518,,1,,Europe/Paris,,OIF, +OIF:SA:46:14918,1,"Mascadées",48.651234,2.291295,,1,,Europe/Paris,,OIF, +OIF:SA:46:14919,1,"La Sablière",48.455658,2.146929,,1,,Europe/Paris,,OIF, +OIF:SA:46:14920,1,"Parking",48.456244,2.142466,,1,,Europe/Paris,,OIF, +OIF:SA:46:14922,1,"Maison de Retraite",48.493707,2.179955,,1,,Europe/Paris,,OIF, +OIF:SA:46:14932,1,"Jean Raynal",48.664356,2.35264,,1,,Europe/Paris,,OIF, +OIF:SA:46:14934,1,"J. Ferrat",48.6331,2.284584,,1,,Europe/Paris,,OIF, +OIF:SA:46:14935,1,"Hautes Fleurances",48.631104,2.283894,,1,,Europe/Paris,,OIF, +OIF:SA:46:14938,1,"Villiers le Plan",48.692714,2.246569,,1,,Europe/Paris,,OIF, +OIF:SA:46:14939,1,"Fontaine de Fer",48.690495,2.254264,,1,,Europe/Paris,,OIF, +OIF:SA:46:14941,1,"Les Arcades",48.689822,2.288681,,1,,Europe/Paris,,OIF, +OIF:SA:46:14943,1,"Foyer Avril",48.69177,2.297869,,1,,Europe/Paris,,OIF, +OIF:SA:46:14945,1,"Clinique de l'Yvette",48.689345,2.301215,,1,,Europe/Paris,,OIF, +OIF:SA:46:14947,1,"Docteur Cathelin",48.687822,2.288556,,1,,Europe/Paris,,OIF, +OIF:SA:46:14948,1,"Balizy",48.682997,2.310453,,1,,Europe/Paris,,OIF, +OIF:SA:46:14951,1,"Pré Haut",48.690506,2.257753,,1,,Europe/Paris,,OIF, +OIF:SA:46:14964,1,"L'Orme à Moineaux",48.66867,2.19633,,1,,Europe/Paris,,OIF, +OIF:SA:46:14966,1,"Le Moulin",48.694184,2.275419,,1,,Europe/Paris,,OIF, +OIF:SA:46:14968,1,"Docteur Fichez",48.642745,2.363667,,1,,Europe/Paris,,OIF, +OIF:SA:46:14970,1,"Les Ruelles",48.583561,2.23554,,1,,Europe/Paris,,OIF, +OIF:SA:46:14977,1,"Esat",48.499295,2.223914,,1,,Europe/Paris,,OIF, +OIF:SA:46:14978,1,"Morionville",48.594804,2.193988,,1,,Europe/Paris,,OIF, +OIF:SA:46:14979,1,"Coquerive Haut",48.433004,2.17526,,1,,Europe/Paris,,OIF, +OIF:SA:46:14985,1,"Sycomores",48.64768,2.364638,,1,,Europe/Paris,,OIF, +OIF:SA:46:14987,1,"Résidence Fontanges",48.686805,2.291131,,1,,Europe/Paris,,OIF, +OIF:SA:46:14989,1,"Le Lavoir",48.69175,2.249388,,1,,Europe/Paris,,OIF, +OIF:SA:46:14990,1,"Carrère d'Encausse",48.602659,2.295824,,1,,Europe/Paris,,OIF, +OIF:SA:46:14993,1,"Rue du Parc",48.561173,2.236436,,1,,Europe/Paris,,OIF, +OIF:SA:46:14996,1,"Résidence de Guinette",48.438422,2.154456,,1,,Europe/Paris,,OIF, +OIF:SA:46:14997,1,"Simone de Beauvoir",48.43714,2.153909,,1,,Europe/Paris,,OIF, +OIF:SA:46:15004,1,"Gaston Beau Gare",48.438458,2.160212,,1,,Europe/Paris,,OIF, +OIF:SA:46:8397,1,"Brigeollet",48.305964,1.996396,,1,,Europe/Paris,,OIF, +OIF:SA:46:8401,1,"Crédit Agricole",48.315917,1.997188,,1,,Europe/Paris,,OIF, +OIF:SA:46:8405,1,"Salle des Fêtes",48.311422,2.000317,,1,,Europe/Paris,,OIF, +OIF:SA:46:8409,1,"Carrefour Mouton",48.587416,2.250755,,1,,Europe/Paris,,OIF, +OIF:SA:46:8421,1,"La Montagne",48.596664,2.246037,,1,,Europe/Paris,,OIF, +OIF:SA:46:8423,1,"Poste",48.590407,2.244802,,1,,Europe/Paris,,OIF, +OIF:SA:46:8425,1,"La Montagne (LEP Belmondo)",48.596788,2.246173,,1,,Europe/Paris,,OIF, +OIF:SA:46:8433,1,"Porte de Paris",48.592752,2.245821,,1,,Europe/Paris,,OIF, +OIF:SA:46:8441,1,"Belle Etoile",48.706087,2.371094,,1,,Europe/Paris,,OIF, +OIF:SA:46:8443,1,"Église",48.450237,1.956883,,1,,Europe/Paris,,OIF, +OIF:SA:46:8458,1,"Rond-Point CD148/CD17",48.483862,2.20509,,1,,Europe/Paris,,OIF, +OIF:SA:46:8477,1,"Petit Ballainvilliers",48.673322,2.281123,,1,,Europe/Paris,,OIF, +OIF:SA:46:8479,1,"Rue du Parc",48.674198,2.297735,,1,,Europe/Paris,,OIF, +OIF:SA:46:8537,1,"Le Rotoir",48.495249,2.084187,,1,,Europe/Paris,,OIF, +OIF:SA:46:8538,1,"Place de l'Église",48.478646,2.088777,,1,,Europe/Paris,,OIF, +OIF:SA:46:8540,1,"Venant",48.505605,2.092599,,1,,Europe/Paris,,OIF, +OIF:SA:46:8542,1,"Bas de Torfou",48.547619,2.21634,,1,,Europe/Paris,,OIF, +OIF:SA:46:8544,1,"Facteur Cheval",48.562401,2.21339,,1,,Europe/Paris,,OIF, +OIF:SA:46:8548,1,"Mairie",48.558747,2.208943,,1,,Europe/Paris,,OIF, +OIF:SA:46:8552,1,"Salvador Allende",48.548744,2.211418,,1,,Europe/Paris,,OIF, +OIF:SA:46:8554,1,"Saint-Lubin",48.553257,2.211638,,1,,Europe/Paris,,OIF, +OIF:SA:46:8556,1,"Village",48.556394,2.211644,,1,,Europe/Paris,,OIF, +OIF:SA:46:8604,1,"Tilleul",48.45307,2.057131,,1,,Europe/Paris,,OIF, +OIF:SA:46:8632,1,"Bois Badeau",48.604177,2.282715,,1,,Europe/Paris,,OIF, +OIF:SA:46:8634,1,"Côte Valorge",48.609426,2.281104,,1,,Europe/Paris,,OIF, +OIF:SA:46:8658,1,"La Boissière",48.57629,2.154171,,1,,Europe/Paris,,OIF, +OIF:SA:46:8660,1,"République",48.576114,2.172561,,1,,Europe/Paris,,OIF, +OIF:SA:46:8663,1,"Savalerie",48.575101,2.167674,,1,,Europe/Paris,,OIF, +OIF:SA:46:8669,1,"La Pointe",48.55774,2.148656,,1,,Europe/Paris,,OIF, +OIF:SA:46:8672,1,"Mairie",48.558518,2.154558,,1,,Europe/Paris,,OIF, +OIF:SA:46:8675,1,"Faurécia",48.455905,2.149888,,1,,Europe/Paris,,OIF, +OIF:SA:46:8676,1,"Mairie",48.457604,2.138846,,1,,Europe/Paris,,OIF, +OIF:SA:46:8678,1,"Mapac",48.455865,2.152942,,1,,Europe/Paris,,OIF, +OIF:SA:46:8768,1,"Val de la Rémarde",48.588789,2.189452,,1,,Europe/Paris,,OIF, +OIF:SA:46:8770,1,"Zone Industrielle",48.583171,2.193099,,1,,Europe/Paris,,OIF, +OIF:SA:46:8827,1,"Beaumont",48.408792,2.042148,,1,,Europe/Paris,,OIF, +OIF:SA:46:8830,1,"Château",48.426189,2.068905,,1,,Europe/Paris,,OIF, +OIF:SA:46:8832,1,"Creux Chemin",48.413298,2.046633,,1,,Europe/Paris,,OIF, +OIF:SA:46:8834,1,"Départementale 82",48.433847,2.067832,,1,,Europe/Paris,,OIF, +OIF:SA:46:8836,1,"La Gitonnière",48.419086,2.064497,,1,,Europe/Paris,,OIF, +OIF:SA:46:8838,1,"Le Vau",48.414221,2.052598,,1,,Europe/Paris,,OIF, +OIF:SA:46:8840,1,"Les Boutards",48.438089,2.0635,,1,,Europe/Paris,,OIF, +OIF:SA:46:8843,1,"Les Morandières",48.420418,2.061505,,1,,Europe/Paris,,OIF, +OIF:SA:46:8844,1,"Longuetoise",48.42778,2.089105,,1,,Europe/Paris,,OIF, +OIF:SA:46:8846,1,"Rue des Sablons",48.425607,2.069772,,1,,Europe/Paris,,OIF, +OIF:SA:46:8848,1,"Sablons",48.421366,2.067187,,1,,Europe/Paris,,OIF, +OIF:SA:46:8850,1,"Voie Neuve",48.418122,2.052441,,1,,Europe/Paris,,OIF, +OIF:SA:46:8855,1,"Monument aux Morts",48.386354,2.020704,,1,,Europe/Paris,,OIF, +OIF:SA:46:8857,1,"Moulineux",48.393785,2.025884,,1,,Europe/Paris,,OIF, +OIF:SA:46:8869,1,"Grande Rue",48.503473,2.168758,,1,,Europe/Paris,,OIF, +OIF:SA:46:8879,1,"Petit Chilly",48.709555,2.297542,,1,,Europe/Paris,,OIF, +OIF:SA:46:8881,1,"Les Champarts",48.715968,2.298525,,1,,Europe/Paris,,OIF, +OIF:SA:46:9015,1,"Champs de Courses",48.534599,1.99737,,1,,Europe/Paris,,OIF, +OIF:SA:46:9044,1,"Jubé de la Pérelle",48.527904,2.012067,,1,,Europe/Paris,,OIF, +OIF:SA:46:9188,1,"Ancienne Mairie",48.580202,2.224227,,1,,Europe/Paris,,OIF, +OIF:SA:46:9190,1,"Cd 19",48.579884,2.220583,,1,,Europe/Paris,,OIF, +OIF:SA:46:9196,1,"Intermarché",48.582059,2.230347,,1,,Europe/Paris,,OIF, +OIF:SA:46:9198,1,"Villelouvette",48.575306,2.201628,,1,,Europe/Paris,,OIF, +OIF:SA:46:9230,1,"Les Templiers",48.67285,2.316932,,1,,Europe/Paris,,OIF, +OIF:SA:46:9246,1,"Avenue des Grenots",48.45196,2.150726,,1,,Europe/Paris,,OIF, +OIF:SA:46:9249,1,"Barthélémy Durand",48.443479,2.154297,,1,,Europe/Paris,,OIF, +OIF:SA:46:9250,1,"Base de Loisirs",48.42709,2.154975,,1,,Europe/Paris,,OIF, +OIF:SA:46:9253,1,"Belles Croix",48.423916,2.134846,,1,,Europe/Paris,,OIF, +OIF:SA:46:9257,1,"Chasseurs",48.432632,2.176294,,1,,Europe/Paris,,OIF, +OIF:SA:46:9260,1,"Clinique",48.427855,2.149218,,1,,Europe/Paris,,OIF, +OIF:SA:46:9262,1,"Clos Albert",48.42356,2.126757,,1,,Europe/Paris,,OIF, +OIF:SA:46:9264,1,"Collège de Guinette",48.4371,2.145793,,1,,Europe/Paris,,OIF, +OIF:SA:46:9266,1,"Commissariat",48.437508,2.164191,,1,,Europe/Paris,,OIF, +OIF:SA:46:9275,1,"Emmaüs Bas",48.449201,2.171429,,1,,Europe/Paris,,OIF, +OIF:SA:46:9289,1,"Hameau de Bretagne",48.433597,2.177892,,1,,Europe/Paris,,OIF, +OIF:SA:46:9291,1,"Haut Pavé",48.430236,2.148297,,1,,Europe/Paris,,OIF, +OIF:SA:46:9293,1,"Hélène Boucher",48.427623,2.142296,,1,,Europe/Paris,,OIF, +OIF:SA:46:9299,1,"Intermarché",48.441754,2.170173,,1,,Europe/Paris,,OIF, +OIF:SA:46:9307,1,"Juineteau",48.433267,2.16718,,1,,Europe/Paris,,OIF, +OIF:SA:46:9312,1,"Le Chesnay",48.457138,2.107382,,1,,Europe/Paris,,OIF, +OIF:SA:46:9318,1,"Meuniers",48.439667,2.148605,,1,,Europe/Paris,,OIF, +OIF:SA:46:9320,1,"Les Augustines",48.428156,2.170722,,1,,Europe/Paris,,OIF, +OIF:SA:46:9321,1,"Les Bosquets",48.429079,2.131632,,1,,Europe/Paris,,OIF, +OIF:SA:46:9327,1,"Lory",48.454293,2.162517,,1,,Europe/Paris,,OIF, +OIF:SA:46:9331,1,"Lycée Geoffroy Saint-Hilaire",48.435406,2.148824,,1,,Europe/Paris,,OIF, +OIF:SA:46:9335,1,"Notre-Dame",48.435087,2.163591,,1,,Europe/Paris,,OIF, +OIF:SA:46:9337,1,"Noyers Patins",48.437742,2.142292,,1,,Europe/Paris,,OIF, +OIF:SA:46:9338,1,"Orly Parc",48.420318,2.147421,,1,,Europe/Paris,,OIF, +OIF:SA:46:9339,1,"Perception",48.431442,2.156986,,1,,Europe/Paris,,OIF, +OIF:SA:46:9341,1,"Petit Saint-Marc",48.423482,2.147248,,1,,Europe/Paris,,OIF, +OIF:SA:46:9342,1,"Pierrefitte",48.429282,2.105039,,1,,Europe/Paris,,OIF, +OIF:SA:46:9344,1,"Pont de Chauffour",48.428863,2.1389,,1,,Europe/Paris,,OIF, +OIF:SA:46:9348,1,"Religieuses",48.431606,2.150839,,1,,Europe/Paris,,OIF, +OIF:SA:46:9354,1,"Rue Reverseleux",48.424617,2.137424,,1,,Europe/Paris,,OIF, +OIF:SA:46:9356,1,"Rue Van Loo",48.439431,2.168153,,1,,Europe/Paris,,OIF, +OIF:SA:46:9359,1,"Sablons",48.430012,2.172986,,1,,Europe/Paris,,OIF, +OIF:SA:46:9362,1,"Saint-Pierre",48.433377,2.182,,1,,Europe/Paris,,OIF, +OIF:SA:46:9364,1,"Saint-Michel",48.444669,2.170437,,1,,Europe/Paris,,OIF, +OIF:SA:46:9368,1,"Services Techniques",48.423979,2.142924,,1,,Europe/Paris,,OIF, +OIF:SA:46:9369,1,"Sous Préfecture",48.436361,2.16486,,1,,Europe/Paris,,OIF, +OIF:SA:46:9373,1,"Sybilles",48.431725,2.170569,,1,,Europe/Paris,,OIF, +OIF:SA:46:9375,1,"Théâtre",48.433948,2.156181,,1,,Europe/Paris,,OIF, +OIF:SA:46:9377,1,"Tour Penchée",48.426385,2.138315,,1,,Europe/Paris,,OIF, +OIF:SA:46:9380,1,"Valnay",48.428335,2.117586,,1,,Europe/Paris,,OIF, +OIF:SA:46:9382,1,"Zone Industrielle Bas",48.454371,2.160969,,1,,Europe/Paris,,OIF, +OIF:SA:46:9384,1,"Zone Industrielle Coquerive",48.433814,2.172299,,1,,Europe/Paris,,OIF, +OIF:SA:46:9386,1,"Zone Industrielle Haut",48.451183,2.16,,1,,Europe/Paris,,OIF, +OIF:SA:46:9414,1,"Centre Commercial",48.488462,2.188473,,1,,Europe/Paris,,OIF, +OIF:SA:46:9415,1,"Collège le Roussay",48.487867,2.177777,,1,,Europe/Paris,,OIF, +OIF:SA:46:9430,1,"Pont Royal",48.48509,2.192052,,1,,Europe/Paris,,OIF, +OIF:SA:46:9647,1,"Église",48.504186,2.020758,,1,,Europe/Paris,,OIF, +OIF:SA:46:9649,1,"Mairie",48.502056,2.019367,,1,,Europe/Paris,,OIF, +OIF:SA:46:9651,1,"Blancs Manteaux",48.65879,2.379632,,1,,Europe/Paris,,OIF, +OIF:SA:46:9800,1,"Pyramide de Juvisy",48.698028,2.371904,,1,,Europe/Paris,,OIF, +OIF:SA:46:9848,1,"Aristide Briand",48.612273,2.267334,,1,,Europe/Paris,,OIF, +OIF:SA:46:9850,1,"Chemin Royal",48.613993,2.257937,,1,,Europe/Paris,,OIF, +OIF:SA:46:9852,1,"Église",48.620088,2.266666,,1,,Europe/Paris,,OIF, +OIF:SA:46:9854,1,"Place des Ffi",48.615191,2.261907,,1,,Europe/Paris,,OIF, +OIF:SA:46:9856,1,"Gare",48.615541,2.268604,,1,,Europe/Paris,,OIF, +OIF:SA:46:9858,1,"La Ferme",48.610684,2.256648,,1,,Europe/Paris,,OIF, +OIF:SA:46:9860,1,"Pierre Curie",48.615899,2.259303,,1,,Europe/Paris,,OIF, +OIF:SA:46:9862,1,"Paul Fort",48.616888,2.265708,,1,,Europe/Paris,,OIF, +OIF:SA:46:9864,1,"Petit Paris",48.613344,2.277941,,1,,Europe/Paris,,OIF, +OIF:SA:46:9896,1,"L'Arpajonnais",48.631754,2.270875,,1,,Europe/Paris,,OIF, +OIF:SA:46:9915,1,"L'Aubette",48.633505,2.268025,,1,,Europe/Paris,,OIF, +OIF:SA:46:9918,1,"Le Jubilé",48.616311,2.256469,,1,,Europe/Paris,,OIF, +OIF:SA:46:9921,1,"Mairie",48.631285,2.267044,,1,,Europe/Paris,,OIF, +OIF:SA:46:9926,1,"Petits Prés",48.630811,2.272598,,1,,Europe/Paris,,OIF, +OIF:SA:46:9927,1,"Pinsons",48.630495,2.277176,,1,,Europe/Paris,,OIF, +OIF:SA:46:9935,1,"Unm / Utac",48.623319,2.251415,,1,,Europe/Paris,,OIF, +OIF:SA:46:9961,1,"École d'Infirmières",48.693996,2.287245,,1,,Europe/Paris,,OIF, +OIF:SA:46:9966,1,"Hôpital",48.691701,2.290078,,1,,Europe/Paris,,OIF, +OIF:SA:46:9968,1,"Les Côteaux",48.690143,2.294604,,1,,Europe/Paris,,OIF, +OIF:SA:46:9970,1,"Pasteur",48.69066,2.293853,,1,,Europe/Paris,,OIF, +OIF:SA:46:9976,1,"Théâtre",48.695753,2.298927,,1,,Europe/Paris,,OIF, +OIF:SA:46:9978,1,"Bizet",48.652109,2.277951,,1,,Europe/Paris,,OIF, +OIF:SA:46:9981,1,"Linas",48.629558,2.284045,,1,,Europe/Paris,,OIF, +OIF:SA:46:9982,1,"Croix Rouge Fer",48.649552,2.287735,,1,,Europe/Paris,,OIF, +OIF:SA:46:9984,1,"Docteur Darier",48.64409,2.296679,,1,,Europe/Paris,,OIF, +OIF:SA:46:9987,1,"Gaudrons",48.64991,2.284771,,1,,Europe/Paris,,OIF, +OIF:SA:46:9988,1,"Guiperreux",48.634779,2.288671,,1,,Europe/Paris,,OIF, +OIF:SA:46:9991,1,"La Source",48.652087,2.288174,,1,,Europe/Paris,,OIF, +OIF:SA:46:9992,1,"Le Mesnil",48.651684,2.282659,,1,,Europe/Paris,,OIF, +OIF:SA:46:9995,1,"Les Echassons",48.655301,2.280139,,1,,Europe/Paris,,OIF, +OIF:SA:46:9997,1,"Leuville",48.628662,2.28867,,1,,Europe/Paris,,OIF, +OIF:SA:47:10,1,"Mairie",48.979886,3.239431,,1,,Europe/Paris,,OIF, +OIF:SA:47:11,1,"Bourneville",49.155226,3.110996,,1,,Europe/Paris,,OIF, +OIF:SA:47:13,1,"Gare SNCF",49.17941,3.121434,,1,,Europe/Paris,,OIF, +OIF:SA:47:1355,1,"Église",48.969804,3.237467,,1,,Europe/Paris,,OIF, +OIF:SA:47:1362,1,"Rue des Meulières",48.964619,3.236176,,1,,Europe/Paris,,OIF, +OIF:SA:47:1365,1,"Villaré / Château d'Eau",48.95673,3.238836,,1,,Europe/Paris,,OIF, +OIF:SA:47:14199,1,"L'Épinoche",48.881679,3.363116,,1,,Europe/Paris,,OIF, +OIF:SA:47:1427,1,"Centre",49.020996,3.103363,,1,,Europe/Paris,,OIF, +OIF:SA:47:1429,1,"Crépoil",49.014341,3.077812,,1,,Europe/Paris,,OIF, +OIF:SA:47:1435,1,"Place",49.02083,3.097718,,1,,Europe/Paris,,OIF, +OIF:SA:47:14415,1,"Bout la Paille",48.853797,2.886904,,1,,Europe/Paris,,OIF, +OIF:SA:47:14426,1,"Boulevard des Artisans",48.849045,2.828939,,1,,Europe/Paris,,OIF, +OIF:SA:47:14448,1,"Bordes Rouges",48.93606,2.887594,,1,,Europe/Paris,,OIF, +OIF:SA:47:14450,1,"Fauvettes",48.949176,2.880011,,1,,Europe/Paris,,OIF, +OIF:SA:47:14454,1,"Bas d'Orgemont",48.955231,2.870529,,1,,Europe/Paris,,OIF, +OIF:SA:47:14455,1,"Louise",48.952191,2.87107,,1,,Europe/Paris,,OIF, +OIF:SA:47:14456,1,"Sucrerie",48.946042,2.866484,,1,,Europe/Paris,,OIF, +OIF:SA:47:14457,1,"Marronniers",48.93986,2.861121,,1,,Europe/Paris,,OIF, +OIF:SA:47:14458,1,"Fayotte",48.976873,2.874056,,1,,Europe/Paris,,OIF, +OIF:SA:47:14459,1,"Corbie",48.905304,2.802734,,1,,Europe/Paris,,OIF, +OIF:SA:47:14462,1,"Le Vautron",48.870286,3.289702,,1,,Europe/Paris,,OIF, +OIF:SA:47:14464,1,"Le Plessier",48.863075,3.286747,,1,,Europe/Paris,,OIF, +OIF:SA:47:14466,1,"Torchamps / Centre",48.992846,3.114329,,1,,Europe/Paris,,OIF, +OIF:SA:47:14468,1,"Villemeneux Centre",49.000904,3.093108,,1,,Europe/Paris,,OIF, +OIF:SA:47:14470,1,"Pavillons",48.96606,2.933133,,1,,Europe/Paris,,OIF, +OIF:SA:47:14478,1,"Cimetière",48.931281,2.862357,,1,,Europe/Paris,,OIF, +OIF:SA:47:14479,1,"Collège",48.927354,2.884098,,1,,Europe/Paris,,OIF, +OIF:SA:47:14481,1,"Centre",48.921233,2.970543,,1,,Europe/Paris,,OIF, +OIF:SA:47:14486,1,"Place de l'Europe",48.850103,2.820047,,1,,Europe/Paris,,OIF, +OIF:SA:47:14493,1,"Mairie",49.136194,3.077022,,1,,Europe/Paris,,OIF, +OIF:SA:47:14494,1,"Poste",49.137966,3.078198,,1,,Europe/Paris,,OIF, +OIF:SA:47:14500,1,"Mairie",48.895517,2.952192,,1,,Europe/Paris,,OIF, +OIF:SA:47:14502,1,"Avenue des Marronniers",48.890781,2.927367,,1,,Europe/Paris,,OIF, +OIF:SA:47:14504,1,"Rue Courtier",48.89568,2.949498,,1,,Europe/Paris,,OIF, +OIF:SA:47:14506,1,"Montpichet / D33E N16",48.878424,2.896397,,1,,Europe/Paris,,OIF, +OIF:SA:47:14508,1,"Montpichet / D33E N76",48.878005,2.88898,,1,,Europe/Paris,,OIF, +OIF:SA:47:14511,1,"École",48.878891,2.90592,,1,,Europe/Paris,,OIF, +OIF:SA:47:14513,1,"Champagne",48.878317,2.851328,,1,,Europe/Paris,,OIF, +OIF:SA:47:14518,1,"CFA",48.959402,2.904226,,1,,Europe/Paris,,OIF, +OIF:SA:47:14519,1,"Grosse Pierre Intérieure",48.962651,2.89853,,1,,Europe/Paris,,OIF, +OIF:SA:47:14522,1,"La Noue Brayer",48.935905,3.269932,,1,,Europe/Paris,,OIF, +OIF:SA:47:14523,1,"Le Maille",49.176046,3.126001,,1,,Europe/Paris,,OIF, +OIF:SA:47:14526,1,"Vincelles",48.924911,2.914364,,1,,Europe/Paris,,OIF, +OIF:SA:47:14527,1,"Coubras",48.926527,2.909185,,1,,Europe/Paris,,OIF, +OIF:SA:47:14530,1,"Place de l'Église / École",49.064259,3.158496,,1,,Europe/Paris,,OIF, +OIF:SA:47:14551,1,"Marché",48.945797,3.125446,,1,,Europe/Paris,,OIF, +OIF:SA:47:14554,1,"Jean Renoir",49.00061,2.956963,,1,,Europe/Paris,,OIF, +OIF:SA:47:14561,1,"Place de Courcelles",48.939578,3.146313,,1,,Europe/Paris,,OIF, +OIF:SA:47:14567,1,"Centre / Église",48.920378,2.929648,,1,,Europe/Paris,,OIF, +OIF:SA:47:14569,1,"École",48.921609,2.975041,,1,,Europe/Paris,,OIF, +OIF:SA:47:14571,1,"Place du Breuil",48.921125,2.951674,,1,,Europe/Paris,,OIF, +OIF:SA:47:14572,1,"École / Mairie",48.923122,2.954808,,1,,Europe/Paris,,OIF, +OIF:SA:47:14575,1,"Allée Renoir",48.897773,2.774191,,1,,Europe/Paris,,OIF, +OIF:SA:47:14576,1,"Gare SNCF",49.135575,3.076849,,1,,Europe/Paris,,OIF, +OIF:SA:47:14579,1,"Dhuis",48.960616,3.236086,,1,,Europe/Paris,,OIF, +OIF:SA:47:14581,1,"Saunnières",48.968347,3.233401,,1,,Europe/Paris,,OIF, +OIF:SA:47:14583,1,"Prés Macquais",48.94784,3.075994,,1,,Europe/Paris,,OIF, +OIF:SA:47:14585,1,"Beau Rivage",48.952485,3.011672,,1,,Europe/Paris,,OIF, +OIF:SA:47:14589,1,"Camping",48.853844,2.929609,,1,,Europe/Paris,,OIF, +OIF:SA:47:14592,1,"Paul Barennes",48.951964,2.896974,,1,,Europe/Paris,,OIF, +OIF:SA:47:14594,1,"Bêla Bartok",48.947385,2.915904,,1,,Europe/Paris,,OIF, +OIF:SA:47:14596,1,"Rue S. Bernhardt",48.94961,2.919408,,1,,Europe/Paris,,OIF, +OIF:SA:47:14598,1,"La Cave aux Hérons",48.955373,2.922618,,1,,Europe/Paris,,OIF, +OIF:SA:47:14599,1,"Rue Graham Bell",48.955621,2.931423,,1,,Europe/Paris,,OIF, +OIF:SA:47:14601,1,"Louis Fournier",48.952573,2.93001,,1,,Europe/Paris,,OIF, +OIF:SA:47:14603,1,"Les Platanes",48.950463,2.928676,,1,,Europe/Paris,,OIF, +OIF:SA:47:14605,1,"Charles Tellier",48.951822,2.930152,,1,,Europe/Paris,,OIF, +OIF:SA:47:14606,1,"Centre Commercial Baudelaire",48.954401,2.91545,,1,,Europe/Paris,,OIF, +OIF:SA:47:14607,1,"Poste Allende",48.957585,2.882542,,1,,Europe/Paris,,OIF, +OIF:SA:47:14608,1,"Chemin Noir / Intermarché",49.026429,3.022661,,1,,Europe/Paris,,OIF, +OIF:SA:47:14609,1,"Murs Blancs",48.913456,2.830576,,1,,Europe/Paris,,OIF, +OIF:SA:47:14611,1,"Bois du Chêne",48.91218,2.821742,,1,,Europe/Paris,,OIF, +OIF:SA:47:14614,1,"Les Brûlis",49.05951,3.108598,,1,,Europe/Paris,,OIF, +OIF:SA:47:14621,1,"Rue de Picardie",48.861877,2.880104,,1,,Europe/Paris,,OIF, +OIF:SA:47:14623,1,"Chemin Blanc",48.865243,2.870181,,1,,Europe/Paris,,OIF, +OIF:SA:47:14627,1,"Pisseloup",49.003745,3.200221,,1,,Europe/Paris,,OIF, +OIF:SA:47:14629,1,"Prison",48.963071,2.863703,,1,,Europe/Paris,,OIF, +OIF:SA:47:14630,1,"Camping",49.003088,2.940683,,1,,Europe/Paris,,OIF, +OIF:SA:47:14635,1,"Zone Industrielle",49.139476,3.088142,,1,,Europe/Paris,,OIF, +OIF:SA:47:14638,1,"Avenue de la Brie",48.928473,2.863283,,1,,Europe/Paris,,OIF, +OIF:SA:47:14640,1,"Mozart",48.927132,2.865656,,1,,Europe/Paris,,OIF, +OIF:SA:47:14642,1,"Petits Clos",48.92531,2.867138,,1,,Europe/Paris,,OIF, +OIF:SA:47:14645,1,"Les Vendangeuses",48.923498,2.862387,,1,,Europe/Paris,,OIF, +OIF:SA:47:14648,1,"Poste",48.976557,3.281621,,1,,Europe/Paris,,OIF, +OIF:SA:47:14654,1,"Colverts",48.943127,3.124928,,1,,Europe/Paris,,OIF, +OIF:SA:47:14657,1,"Sainte-Beuve",48.947675,3.126962,,1,,Europe/Paris,,OIF, +OIF:SA:47:14658,1,"Village de la Noue",48.949268,3.143271,,1,,Europe/Paris,,OIF, +OIF:SA:47:14659,1,"Place des Bouleaux",48.946993,3.142172,,1,,Europe/Paris,,OIF, +OIF:SA:47:14661,1,"Théâtre",48.945355,3.130481,,1,,Europe/Paris,,OIF, +OIF:SA:47:14663,1,"Petit Venteuil",48.93978,3.136985,,1,,Europe/Paris,,OIF, +OIF:SA:47:14665,1,"Les Bellouettes",48.939939,3.143399,,1,,Europe/Paris,,OIF, +OIF:SA:47:14667,1,"Mairie",48.922489,3.236392,,1,,Europe/Paris,,OIF, +OIF:SA:47:14669,1,"Les Cabarets",48.925637,3.237852,,1,,Europe/Paris,,OIF, +OIF:SA:47:14671,1,"Route de Saâcy",48.925937,3.242181,,1,,Europe/Paris,,OIF, +OIF:SA:47:14673,1,"Pasteur",48.941981,3.126984,,1,,Europe/Paris,,OIF, +OIF:SA:47:14678,1,"Claude Monet",49.025047,3.025471,,1,,Europe/Paris,,OIF, +OIF:SA:47:14679,1,"Pont SNCF",48.973929,3.212167,,1,,Europe/Paris,,OIF, +OIF:SA:47:14681,1,"Le Pont",48.965877,3.203411,,1,,Europe/Paris,,OIF, +OIF:SA:47:14683,1,"Gambetta",48.963111,3.212325,,1,,Europe/Paris,,OIF, +OIF:SA:47:14687,1,"Petit Morin",48.94336,3.122704,,1,,Europe/Paris,,OIF, +OIF:SA:47:14689,1,"Cimetière",48.952736,3.13013,,1,,Europe/Paris,,OIF, +OIF:SA:47:14691,1,"Savarbousier",48.936559,3.132726,,1,,Europe/Paris,,OIF, +OIF:SA:47:14693,1,"Fanny Marc",48.937534,3.137496,,1,,Europe/Paris,,OIF, +OIF:SA:47:14695,1,"École",48.952407,3.019142,,1,,Europe/Paris,,OIF, +OIF:SA:47:14697,1,"Pierre Marx",48.949585,3.121471,,1,,Europe/Paris,,OIF, +OIF:SA:47:14700,1,"Casimir Périer",48.894745,2.83583,,1,,Europe/Paris,,OIF, +OIF:SA:47:14702,1,"Georges Pompidou",48.897266,2.829202,,1,,Europe/Paris,,OIF, +OIF:SA:47:14704,1,"Eid",48.883459,2.815477,,1,,Europe/Paris,,OIF, +OIF:SA:47:14706,1,"La Dimeresse",48.897726,2.86049,,1,,Europe/Paris,,OIF, +OIF:SA:47:14708,1,"Sente du Toit",48.861741,2.872447,,1,,Europe/Paris,,OIF, +OIF:SA:47:14710,1,"Bas de Villiers",48.860249,2.883254,,1,,Europe/Paris,,OIF, +OIF:SA:47:14716,1,"Nongloire",49.060627,2.892628,,1,,Europe/Paris,,OIF, +OIF:SA:47:14718,1,"Rue de Crécy (Hall)",48.877646,2.86804,,1,,Europe/Paris,,OIF, +OIF:SA:47:14720,1,"Chivres",48.981134,3.046077,,1,,Europe/Paris,,OIF, +OIF:SA:47:14721,1,"Rue des Vignes",48.961965,3.148246,,1,,Europe/Paris,,OIF, +OIF:SA:47:14723,1,"Stade",48.950812,3.136882,,1,,Europe/Paris,,OIF, +OIF:SA:47:14725,1,"Artois",48.951806,2.909533,,1,,Europe/Paris,,OIF, +OIF:SA:47:14726,1,"La Briqueterie",48.971382,2.920138,,1,,Europe/Paris,,OIF, +OIF:SA:47:14728,1,"Rochelles",48.971328,2.916424,,1,,Europe/Paris,,OIF, +OIF:SA:47:14730,1,"Claudel",48.947427,2.900554,,1,,Europe/Paris,,OIF, +OIF:SA:47:14731,1,"Charcot",48.946686,2.906113,,1,,Europe/Paris,,OIF, +OIF:SA:47:14732,1,"Truffaut",48.852994,2.846235,,1,,Europe/Paris,,OIF, +OIF:SA:47:14734,1,"L'Orme Rond",48.853713,2.816534,,1,,Europe/Paris,,OIF, +OIF:SA:47:14736,1,"La Trettoire",48.873755,3.251414,,1,,Europe/Paris,,OIF, +OIF:SA:47:14738,1,"Gibraltar",48.889099,3.218477,,1,,Europe/Paris,,OIF, +OIF:SA:47:14740,1,"Champlion",48.887324,3.232287,,1,,Europe/Paris,,OIF, +OIF:SA:47:14742,1,"Launoy",48.879752,3.242679,,1,,Europe/Paris,,OIF, +OIF:SA:47:14744,1,"Grange de Vaux",48.991575,3.168765,,1,,Europe/Paris,,OIF, +OIF:SA:47:14746,1,"Lavoir de Vaux",48.990256,3.167207,,1,,Europe/Paris,,OIF, +OIF:SA:47:14748,1,"Tennis",48.988447,3.165731,,1,,Europe/Paris,,OIF, +OIF:SA:47:14750,1,"Mairie",48.973876,3.151115,,1,,Europe/Paris,,OIF, +OIF:SA:47:14752,1,"Madeleine",48.971499,3.149167,,1,,Europe/Paris,,OIF, +OIF:SA:47:14754,1,"Mairie",48.993137,3.172252,,1,,Europe/Paris,,OIF, +OIF:SA:47:14760,1,"Route de Beauval",49.030139,3.010205,,1,,Europe/Paris,,OIF, +OIF:SA:47:14767,1,"Rue du Chef de Ville",49.034769,2.930126,,1,,Europe/Paris,,OIF, +OIF:SA:47:14769,1,"École Sainte-Thérèse",48.883372,2.861871,,1,,Europe/Paris,,OIF, +OIF:SA:47:14771,1,"Souterrain",48.863088,2.884537,,1,,Europe/Paris,,OIF, +OIF:SA:47:14773,1,"Château d'Eau",49.07408,3.023977,,1,,Europe/Paris,,OIF, +OIF:SA:47:14779,1,"Les Grands Montgoins",48.895142,3.167456,,1,,Europe/Paris,,OIF, +OIF:SA:47:14781,1,"Stade",48.861099,3.323565,,1,,Europe/Paris,,OIF, +OIF:SA:47:14783,1,"Doucy",48.838488,3.329004,,1,,Europe/Paris,,OIF, +OIF:SA:47:14785,1,"Mairie",48.816067,3.360819,,1,,Europe/Paris,,OIF, +OIF:SA:47:14787,1,"Les Trois Maisons",48.817695,3.369538,,1,,Europe/Paris,,OIF, +OIF:SA:47:14789,1,"Thiercelieux",48.82546,3.403698,,1,,Europe/Paris,,OIF, +OIF:SA:47:14791,1,"Primefosse",48.828404,3.416433,,1,,Europe/Paris,,OIF, +OIF:SA:47:14793,1,"Mairie",48.829475,3.439576,,1,,Europe/Paris,,OIF, +OIF:SA:47:14795,1,"Les Boblins",48.843916,3.428198,,1,,Europe/Paris,,OIF, +OIF:SA:47:14797,1,"Le Tilleul",48.850624,3.426644,,1,,Europe/Paris,,OIF, +OIF:SA:47:14799,1,"Bois Retz",48.847226,3.414172,,1,,Europe/Paris,,OIF, +OIF:SA:47:14801,1,"Laulinoue",48.840145,3.397688,,1,,Europe/Paris,,OIF, +OIF:SA:47:14803,1,"Petit Villiers",48.915519,3.262174,,1,,Europe/Paris,,OIF, +OIF:SA:47:14805,1,"Les Bruyères",48.918982,2.911925,,1,,Europe/Paris,,OIF, +OIF:SA:47:14807,1,"Agouries",48.955088,3.129101,,1,,Europe/Paris,,OIF, +OIF:SA:47:14808,1,"Cœur de Pigeon",48.889676,2.813838,,1,,Europe/Paris,,OIF, +OIF:SA:47:14810,1,"Pomme d'Api",48.892418,2.815908,,1,,Europe/Paris,,OIF, +OIF:SA:47:14812,1,"Marais",48.897491,2.791753,,1,,Europe/Paris,,OIF, +OIF:SA:47:14815,1,"Cimetière",48.821701,2.903854,,1,,Europe/Paris,,OIF, +OIF:SA:47:14819,1,"Route de Jablines",48.903077,2.771359,,1,,Europe/Paris,,OIF, +OIF:SA:47:14822,1,"Église",49.000388,2.931617,,1,,Europe/Paris,,OIF, +OIF:SA:47:14825,1,"Hameau de Sarcy",48.878032,2.930997,,1,,Europe/Paris,,OIF, +OIF:SA:47:14827,1,"Musée",48.973034,2.90368,,1,,Europe/Paris,,OIF, +OIF:SA:47:14830,1,"Belvédère",48.972807,2.902107,,1,,Europe/Paris,,OIF, +OIF:SA:47:14831,1,"Hauts de Chantereine",48.973034,2.903625,,1,,Europe/Paris,,OIF, +OIF:SA:47:14832,1,"Camsp",48.879345,2.788459,,1,,Europe/Paris,,OIF, +OIF:SA:47:14834,1,"Champ Madame",48.899427,2.869013,,1,,Europe/Paris,,OIF, +OIF:SA:47:14835,1,"Mareuil",48.899763,2.858111,,1,,Europe/Paris,,OIF, +OIF:SA:47:14837,1,"Avocette",48.963951,3.138382,,1,,Europe/Paris,,OIF, +OIF:SA:47:14838,1,"Albatros",48.968018,3.140301,,1,,Europe/Paris,,OIF, +OIF:SA:47:14839,1,"Ibis Rouge",48.969103,3.139308,,1,,Europe/Paris,,OIF, +OIF:SA:47:14840,1,"Les Vignes",48.98191,3.022419,,1,,Europe/Paris,,OIF, +OIF:SA:47:14842,1,"Rue de la Vallée",49.063406,3.155002,,1,,Europe/Paris,,OIF, +OIF:SA:47:14844,1,"Rue de Meaux",48.902217,2.87821,,1,,Europe/Paris,,OIF, +OIF:SA:47:14847,1,"Boissières",48.985707,3.164226,,1,,Europe/Paris,,OIF, +OIF:SA:47:14851,1,"Brunoy",49.035899,2.919718,,1,,Europe/Paris,,OIF, +OIF:SA:47:14855,1,"Vasset",49.106007,3.123931,,1,,Europe/Paris,,OIF, +OIF:SA:47:14874,1,"Les Madeleines",48.941086,2.875424,,1,,Europe/Paris,,OIF, +OIF:SA:47:14885,1,"Prairie",48.89691,2.814075,,1,,Europe/Paris,,OIF, +OIF:SA:47:14888,1,"Le Lauconnois",49.040634,2.97023,,1,,Europe/Paris,,OIF, +OIF:SA:47:14891,1,"Le Potager",48.966758,3.144506,,1,,Europe/Paris,,OIF, +OIF:SA:47:14892,1,"Chaton Place",49.031052,3.107489,,1,,Europe/Paris,,OIF, +OIF:SA:47:14893,1,"École",49.099135,3.044509,,1,,Europe/Paris,,OIF, +OIF:SA:47:14895,1,"Octroi",48.95742,2.894806,,1,,Europe/Paris,,OIF, +OIF:SA:47:14896,1,"Gironnette",48.944639,2.89802,,1,,Europe/Paris,,OIF, +OIF:SA:47:14898,1,"Les Prairiales / Parc Frot",48.966192,2.87316,,1,,Europe/Paris,,OIF, +OIF:SA:47:14899,1,"Mairie",48.928746,2.897131,,1,,Europe/Paris,,OIF, +OIF:SA:47:14900,1,"Les Sablons/Clinique Saint-Faron",48.940484,2.873296,,1,,Europe/Paris,,OIF, +OIF:SA:47:14901,1,"Croix l'Evêque",48.968286,2.948802,,1,,Europe/Paris,,OIF, +OIF:SA:47:14906,1,"Mairie",49.003997,2.927572,,1,,Europe/Paris,,OIF, +OIF:SA:47:14908,1,"Pavillons",49.007565,2.934227,,1,,Europe/Paris,,OIF, +OIF:SA:47:14909,1,"Route Nationale",49.035399,2.933578,,1,,Europe/Paris,,OIF, +OIF:SA:47:14910,1,"Croix Verte",49.030912,2.933205,,1,,Europe/Paris,,OIF, +OIF:SA:47:14913,1,"Le Gué à Tresmes",49.020236,2.9632,,1,,Europe/Paris,,OIF, +OIF:SA:47:14916,1,"Brinches",48.935719,2.963129,,1,,Europe/Paris,,OIF, +OIF:SA:47:14920,1,"Vaux",49.100872,3.132666,,1,,Europe/Paris,,OIF, +OIF:SA:47:14921,1,"Hervilliers",49.091732,3.130205,,1,,Europe/Paris,,OIF, +OIF:SA:47:14923,1,"Boulevard du 8 Mai 1945",48.949656,3.131004,,1,,Europe/Paris,,OIF, +OIF:SA:47:14926,1,"Certigny",49.071078,3.103274,,1,,Europe/Paris,,OIF, +OIF:SA:47:14939,1,"Les Groseilliers",48.92733,3.288859,,1,,Europe/Paris,,OIF, +OIF:SA:47:14943,1,"Carnot / Mendès France",48.953489,2.869221,,1,,Europe/Paris,,OIF, +OIF:SA:47:14944,1,"Carnot / Bel Air",48.951299,2.86739,,1,,Europe/Paris,,OIF, +OIF:SA:47:14945,1,"Carnot / Parmentier",48.948543,2.865745,,1,,Europe/Paris,,OIF, +OIF:SA:47:14947,1,"Parc",48.94372,2.864073,,1,,Europe/Paris,,OIF, +OIF:SA:47:14948,1,"Union Commerciale",48.949654,2.869598,,1,,Europe/Paris,,OIF, +OIF:SA:47:14950,1,"Les Cottages",48.93764,2.85706,,1,,Europe/Paris,,OIF, +OIF:SA:47:14951,1,"Les Patios / Intérieurs",48.953904,2.865793,,1,,Europe/Paris,,OIF, +OIF:SA:47:14991,1,"Beauval",49.039354,2.979056,,1,,Europe/Paris,,OIF, +OIF:SA:47:14996,1,"Vergers du Roy",48.974252,2.900758,,1,,Europe/Paris,,OIF, +OIF:SA:47:14997,1,"Rue du Mont",48.880873,2.908804,,1,,Europe/Paris,,OIF, +OIF:SA:47:14998,1,"Montpichet - République",48.87727,2.904812,,1,,Europe/Paris,,OIF, +OIF:SA:47:14999,1,"Montbarbin / Sinoël",48.865335,2.885528,,1,,Europe/Paris,,OIF, +OIF:SA:47:15000,1,"Montbarbin / Fresne",48.86452,2.886814,,1,,Europe/Paris,,OIF, +OIF:SA:47:15001,1,"Rue de Crécy",48.867337,2.903171,,1,,Europe/Paris,,OIF, +OIF:SA:47:15003,1,"Pont de Serbonne",48.84625,2.913011,,1,,Europe/Paris,,OIF, +OIF:SA:47:15005,1,"Les Fortes Terres",48.938897,2.875544,,1,,Europe/Paris,,OIF, +OIF:SA:47:15007,1,"Les Buttes aux Lièvres",48.940137,2.877447,,1,,Europe/Paris,,OIF, +OIF:SA:47:15009,1,"Sortie / D20",48.81467,2.921541,,1,,Europe/Paris,,OIF, +OIF:SA:47:15013,1,"Boulangerie",48.818989,2.918146,,1,,Europe/Paris,,OIF, +OIF:SA:47:15015,1,"Église",49.03983,2.807369,,1,,Europe/Paris,,OIF, +OIF:SA:47:15019,1,"Vide Arpents",48.963506,2.904039,,1,,Europe/Paris,,OIF, +OIF:SA:47:15022,1,"Foch Turgot",48.88585,2.83402,,1,,Europe/Paris,,OIF, +OIF:SA:47:15024,1,"Foch Galliéni",48.888437,2.830045,,1,,Europe/Paris,,OIF, +OIF:SA:47:15026,1,"Collège",48.883164,2.845516,,1,,Europe/Paris,,OIF, +OIF:SA:47:15027,1,"Église",48.881676,3.001218,,1,,Europe/Paris,,OIF, +OIF:SA:47:15029,1,"Mairie",48.883179,2.86174,,1,,Europe/Paris,,OIF, +OIF:SA:47:15031,1,"Jean Renoir",48.975636,2.871381,,1,,Europe/Paris,,OIF, +OIF:SA:47:15032,1,"René Descartes",48.975296,2.860852,,1,,Europe/Paris,,OIF, +OIF:SA:47:15033,1,"Condorcet",48.975041,2.861655,,1,,Europe/Paris,,OIF, +OIF:SA:47:15034,1,"Hôtel Santa Fe",48.871124,2.795261,,1,,Europe/Paris,,OIF, +OIF:SA:47:15035,1,"Hôtel Séquoia Lodge",48.870344,2.7943,,1,,Europe/Paris,,OIF, +OIF:SA:47:15036,1,"Parking Nord",48.879045,2.781609,,1,,Europe/Paris,,OIF, +OIF:SA:47:15040,1,"ZAC du Centre",48.866936,2.811926,,1,,Europe/Paris,,OIF, +OIF:SA:47:15042,1,"La Boiserie",48.862404,2.818106,,1,,Europe/Paris,,OIF, +OIF:SA:47:15049,1,"Fontaine Fleurie",48.894707,2.798441,,1,,Europe/Paris,,OIF, +OIF:SA:47:15050,1,"Aulnoy",48.896361,2.79836,,1,,Europe/Paris,,OIF, +OIF:SA:47:15053,1,"Suzanne Aubry",48.892512,2.794333,,1,,Europe/Paris,,OIF, +OIF:SA:47:15054,1,"Base de Loisirs",48.920829,2.734742,,1,,Europe/Paris,,OIF, +OIF:SA:47:15057,1,"Mairie",48.91758,2.762069,,1,,Europe/Paris,,OIF, +OIF:SA:47:15059,1,"Les Saisons de Meaux - RD 5",48.956999,2.862823,,1,,Europe/Paris,,OIF, +OIF:SA:47:15060,1,"P.A.P.M. Sud",48.948938,2.862795,,1,,Europe/Paris,,OIF, +OIF:SA:47:15061,1,"Institut des Métiers",48.95265,2.86385,,1,,Europe/Paris,,OIF, +OIF:SA:47:15063,1,"Rue des Prés",48.94168,2.803785,,1,,Europe/Paris,,OIF, +OIF:SA:47:15066,1,"L'Ange Gardien",48.97793,3.143083,,1,,Europe/Paris,,OIF, +OIF:SA:47:15068,1,"Touarte",48.895565,2.79378,,1,,Europe/Paris,,OIF, +OIF:SA:47:15069,1,"Cité Technique",48.95563,2.864583,,1,,Europe/Paris,,OIF, +OIF:SA:47:15071,1,"Les Saisons de Meaux",48.958492,2.862756,,1,,Europe/Paris,,OIF, +OIF:SA:47:15072,1,"Pyramide",49.022062,3.034901,,1,,Europe/Paris,,OIF, +OIF:SA:47:1527,1,"Claires Fontaines",48.898386,2.846224,,1,,Europe/Paris,,OIF, +OIF:SA:47:1529,1,"Les Grandes Pièces",48.896452,2.840153,,1,,Europe/Paris,,OIF, +OIF:SA:47:1534,1,"Village",48.897912,2.830571,,1,,Europe/Paris,,OIF, +OIF:SA:47:1535,1,"Église",49.005126,2.97405,,1,,Europe/Paris,,OIF, +OIF:SA:47:1539,1,"Mairie",49.006881,2.97425,,1,,Europe/Paris,,OIF, +OIF:SA:47:1541,1,"Place du Perchet",49.008624,2.97602,,1,,Europe/Paris,,OIF, +OIF:SA:47:1547,1,"Villers les Rigault / Rue des Buttes",49.00243,2.996268,,1,,Europe/Paris,,OIF, +OIF:SA:47:1549,1,"Villers les Rigault / Rue du Grand Voyeux",49.001085,2.999091,,1,,Europe/Paris,,OIF, +OIF:SA:47:1558,1,"Résidence des Pommiers",48.887586,2.856973,,1,,Europe/Paris,,OIF, +OIF:SA:47:1560,1,"Centre",49.070395,3.12533,,1,,Europe/Paris,,OIF, +OIF:SA:47:1572,1,"Mairie",48.891124,2.932343,,1,,Europe/Paris,,OIF, +OIF:SA:47:1651,1,"École Francis et Odette Teisseyre",48.897904,2.789677,,1,,Europe/Paris,,OIF, +OIF:SA:47:1655,1,"Mairie",48.891346,2.793504,,1,,Europe/Paris,,OIF, +OIF:SA:47:1659,1,"Molveaux",48.90218,2.795897,,1,,Europe/Paris,,OIF, +OIF:SA:47:1661,1,"Oustal",48.903706,2.802311,,1,,Europe/Paris,,OIF, +OIF:SA:47:1665,1,"Pierres",48.901128,2.792725,,1,,Europe/Paris,,OIF, +OIF:SA:47:1669,1,"Tamaris",48.893285,2.796438,,1,,Europe/Paris,,OIF, +OIF:SA:47:1732,1,"Du Chêne",48.85975,2.852015,,1,,Europe/Paris,,OIF, +OIF:SA:47:1734,1,"Mairie",48.862824,2.854007,,1,,Europe/Paris,,OIF, +OIF:SA:47:1738,1,"Rond-Point des 4 Vents",48.856953,2.85875,,1,,Europe/Paris,,OIF, +OIF:SA:47:1740,1,"Dainville",48.859914,2.863922,,1,,Europe/Paris,,OIF, +OIF:SA:47:1742,1,"Route de Melun / D436",48.862313,2.855889,,1,,Europe/Paris,,OIF, +OIF:SA:47:1744,1,"Collège Montplaisir",48.858687,2.914259,,1,,Europe/Paris,,OIF, +OIF:SA:47:1752,1,"La Chapelle / Château",48.858365,2.925943,,1,,Europe/Paris,,OIF, +OIF:SA:47:1756,1,"Montbarbin",48.861202,2.906203,,1,,Europe/Paris,,OIF, +OIF:SA:47:1764,1,"Bonne Etoile",48.971229,2.870079,,1,,Europe/Paris,,OIF, +OIF:SA:47:1765,1,"Bourg",48.97889,2.877299,,1,,Europe/Paris,,OIF, +OIF:SA:47:1766,1,"Centre Commercial",48.975882,2.865701,,1,,Europe/Paris,,OIF, +OIF:SA:47:1768,1,"Chaillouët",48.976298,2.861886,,1,,Europe/Paris,,OIF, +OIF:SA:47:1769,1,"Collège George Sand",48.97956,2.87412,,1,,Europe/Paris,,OIF, +OIF:SA:47:1771,1,"Les Vignes",48.977544,2.872711,,1,,Europe/Paris,,OIF, +OIF:SA:47:1774,1,"Place Rostand",48.976414,2.870146,,1,,Europe/Paris,,OIF, +OIF:SA:47:1795,1,"Rue de la Commanderie",49.085521,3.076459,,1,,Europe/Paris,,OIF, +OIF:SA:47:1797,1,"Collège Champivert",49.090689,3.069788,,1,,Europe/Paris,,OIF, +OIF:SA:47:1798,1,"Avenue de Coulombs",49.087823,3.078394,,1,,Europe/Paris,,OIF, +OIF:SA:47:1800,1,"Cimetière",49.089421,3.079409,,1,,Europe/Paris,,OIF, +OIF:SA:47:1805,1,"Fussy",49.079179,3.075356,,1,,Europe/Paris,,OIF, +OIF:SA:47:1808,1,"Gesvres / D94",49.088993,3.05823,,1,,Europe/Paris,,OIF, +OIF:SA:47:1810,1,"La Chaussée",49.108643,3.094352,,1,,Europe/Paris,,OIF, +OIF:SA:47:1812,1,"Mairie",49.091263,3.075789,,1,,Europe/Paris,,OIF, +OIF:SA:47:1849,1,"Chambardy",49.03209,3.160656,,1,,Europe/Paris,,OIF, +OIF:SA:47:1852,1,"Mairie / Centre",49.039524,3.159722,,1,,Europe/Paris,,OIF, +OIF:SA:47:1888,1,"Douy",49.067174,2.881833,,1,,Europe/Paris,,OIF, +OIF:SA:47:1894,1,"La Ramée",49.056582,2.870283,,1,,Europe/Paris,,OIF, +OIF:SA:47:1929,1,"Avenue Joffre",48.895618,2.817914,,1,,Europe/Paris,,OIF, +OIF:SA:47:1931,1,"Beaux Regards",48.908076,2.806413,,1,,Europe/Paris,,OIF, +OIF:SA:47:1933,1,"Champs Forts / Cézanne",48.88852,2.808369,,1,,Europe/Paris,,OIF, +OIF:SA:47:1935,1,"Champs Forts / Montaigne",48.892887,2.809928,,1,,Europe/Paris,,OIF, +OIF:SA:47:1937,1,"Champs Forts / Péguy",48.890371,2.810785,,1,,Europe/Paris,,OIF, +OIF:SA:47:1943,1,"Collège Louis Braille",48.896766,2.804989,,1,,Europe/Paris,,OIF, +OIF:SA:47:1947,1,"Le Morin",48.909183,2.814945,,1,,Europe/Paris,,OIF, +OIF:SA:47:1949,1,"Mairie",48.901148,2.812812,,1,,Europe/Paris,,OIF, +OIF:SA:47:1953,1,"Place de l'Europe",48.900547,2.812629,,1,,Europe/Paris,,OIF, +OIF:SA:47:1967,1,"Rue Maréchal",49.033769,2.931557,,1,,Europe/Paris,,OIF, +OIF:SA:47:2061,1,"Angle Glaize / Roussel",48.959529,3.120817,,1,,Europe/Paris,,OIF, +OIF:SA:47:2069,1,"Bécart",48.961943,3.132881,,1,,Europe/Paris,,OIF, +OIF:SA:47:2073,1,"Collège la Rochefoucauld",48.942301,3.136246,,1,,Europe/Paris,,OIF, +OIF:SA:47:2077,1,"Collège la Plaine des Glacis",48.937603,3.129168,,1,,Europe/Paris,,OIF, +OIF:SA:47:2086,1,"Favières",48.964221,3.130879,,1,,Europe/Paris,,OIF, +OIF:SA:47:2092,1,"La Pièce aux Écus",48.940947,3.13452,,1,,Europe/Paris,,OIF, +OIF:SA:47:2094,1,"École Fauvet",48.960823,3.124214,,1,,Europe/Paris,,OIF, +OIF:SA:47:2098,1,"Les Bondons",48.949511,3.147205,,1,,Europe/Paris,,OIF, +OIF:SA:47:2100,1,"Les Côtes",48.950445,3.141441,,1,,Europe/Paris,,OIF, +OIF:SA:47:2116,1,"Morintru du Haut",48.958004,3.111356,,1,,Europe/Paris,,OIF, +OIF:SA:47:2120,1,"Quai Planson",48.948695,3.132312,,1,,Europe/Paris,,OIF, +OIF:SA:47:2122,1,"Résidence de la Plaine",48.960582,3.119236,,1,,Europe/Paris,,OIF, +OIF:SA:47:2125,1,"Résidence des Moulins",48.949836,3.135079,,1,,Europe/Paris,,OIF, +OIF:SA:47:2131,1,"Montmirail",48.941425,3.13083,,1,,Europe/Paris,,OIF, +OIF:SA:47:2135,1,"Zone Industrielle Intermarché",48.944417,3.11876,,1,,Europe/Paris,,OIF, +OIF:SA:47:2262,1,"Brinches",48.937464,2.962905,,1,,Europe/Paris,,OIF, +OIF:SA:47:2264,1,"Centre",48.937532,2.937416,,1,,Europe/Paris,,OIF, +OIF:SA:47:2266,1,"Les Côteaux",48.940165,2.937528,,1,,Europe/Paris,,OIF, +OIF:SA:47:2282,1,"Allée des Noyers",48.997318,2.954001,,1,,Europe/Paris,,OIF, +OIF:SA:47:2283,1,"Château",48.992872,2.941302,,1,,Europe/Paris,,OIF, +OIF:SA:47:2284,1,"Mairie",48.993653,2.945763,,1,,Europe/Paris,,OIF, +OIF:SA:47:2286,1,"Résidence de la Marne",48.993747,2.956389,,1,,Europe/Paris,,OIF, +OIF:SA:47:2288,1,"Route de Trilport",48.989899,2.942769,,1,,Europe/Paris,,OIF, +OIF:SA:47:2290,1,"Croisement",49.055349,3.162312,,1,,Europe/Paris,,OIF, +OIF:SA:47:2496,1,"Centre",48.900509,3.307735,,1,,Europe/Paris,,OIF, +OIF:SA:47:2500,1,"Replonges",48.907594,3.329966,,1,,Europe/Paris,,OIF, +OIF:SA:47:2519,1,"Briquetterie",49.003801,3.0148,,1,,Europe/Paris,,OIF, +OIF:SA:47:2521,1,"Centre",48.998966,3.004446,,1,,Europe/Paris,,OIF, +OIF:SA:47:2529,1,"Mairie",48.911368,2.826909,,1,,Europe/Paris,,OIF, +OIF:SA:47:2533,1,"Rue Pât des Vignes",48.912723,2.816334,,1,,Europe/Paris,,OIF, +OIF:SA:47:2535,1,"Tourneville",48.914977,2.814555,,1,,Europe/Paris,,OIF, +OIF:SA:47:2542,1,"De Gaulle",48.91834,2.760592,,1,,Europe/Paris,,OIF, +OIF:SA:47:2543,1,"École Jacques Yves Coustaud",48.918166,2.762724,,1,,Europe/Paris,,OIF, +OIF:SA:47:2550,1,"Mairie / D3",48.991774,3.055195,,1,,Europe/Paris,,OIF, +OIF:SA:47:2578,1,"Courcelles sous Jouarre",48.937449,3.146812,,1,,Europe/Paris,,OIF, +OIF:SA:47:2586,1,"Gouffre du Biercy",48.91857,3.157338,,1,,Europe/Paris,,OIF, +OIF:SA:47:2596,1,"Vanry",48.931432,3.150708,,1,,Europe/Paris,,OIF, +OIF:SA:47:2747,1,"Avenue Charles de Gaulle",48.903653,2.778303,,1,,Europe/Paris,,OIF, +OIF:SA:47:2749,1,"École Marcel Pagnol",48.909608,2.782956,,1,,Europe/Paris,,OIF, +OIF:SA:47:2751,1,"François de la Chapelle",48.905799,2.793168,,1,,Europe/Paris,,OIF, +OIF:SA:47:2753,1,"Mairie",48.908533,2.78023,,1,,Europe/Paris,,OIF, +OIF:SA:47:2843,1,"Centre (Saint-Albert)",49.024619,3.023375,,1,,Europe/Paris,,OIF, +OIF:SA:47:2850,1,"Collège Camille Saint-Saëns",49.029955,3.014966,,1,,Europe/Paris,,OIF, +OIF:SA:47:2852,1,"Échampeu",49.035215,3.027042,,1,,Europe/Paris,,OIF, +OIF:SA:47:2854,1,"Guillaume Apollinaire",49.030753,3.022322,,1,,Europe/Paris,,OIF, +OIF:SA:47:2860,1,"Mairie",49.025111,3.026784,,1,,Europe/Paris,,OIF, +OIF:SA:47:2862,1,"Maladrerie",49.019081,3.029873,,1,,Europe/Paris,,OIF, +OIF:SA:47:2865,1,"École Maternelle (Bellevue)",49.029939,3.018635,,1,,Europe/Paris,,OIF, +OIF:SA:47:2872,1,"Place Harouard",49.025133,3.019829,,1,,Europe/Paris,,OIF, +OIF:SA:47:2874,1,"Résidence le Menton",49.029435,3.013121,,1,,Europe/Paris,,OIF, +OIF:SA:47:2876,1,"Route d'Ocquerre",49.029715,3.037901,,1,,Europe/Paris,,OIF, +OIF:SA:47:2938,1,"D402",48.973047,3.177894,,1,,Europe/Paris,,OIF, +OIF:SA:47:2940,1,"Courtaron / Centre",48.97569,3.170817,,1,,Europe/Paris,,OIF, +OIF:SA:47:2944,1,"Mairie",48.972229,3.18745,,1,,Europe/Paris,,OIF, +OIF:SA:47:2948,1,"La Mare Houleuse",48.860767,2.809499,,1,,Europe/Paris,,OIF, +OIF:SA:47:2976,1,"Église",49.036358,2.877414,,1,,Europe/Paris,,OIF, +OIF:SA:47:2984,1,"Carnot",48.925119,2.859498,,1,,Europe/Paris,,OIF, +OIF:SA:47:2988,1,"Le Clos Godet",48.941891,2.876128,,1,,Europe/Paris,,OIF, +OIF:SA:47:2993,1,"Les Lignères",48.912312,2.853383,,1,,Europe/Paris,,OIF, +OIF:SA:47:2995,1,"Les Nolongues",48.923194,2.856792,,1,,Europe/Paris,,OIF, +OIF:SA:47:2998,1,"Les Vignolles",48.91743,2.854505,,1,,Europe/Paris,,OIF, +OIF:SA:47:3000,1,"Les Voutes",48.936608,2.869982,,1,,Europe/Paris,,OIF, +OIF:SA:47:3003,1,"Mairie",48.927043,2.859341,,1,,Europe/Paris,,OIF, +OIF:SA:47:3005,1,"Pasteur Marguerite",48.92931,2.860877,,1,,Europe/Paris,,OIF, +OIF:SA:47:3007,1,"Raspail",48.924589,2.863448,,1,,Europe/Paris,,OIF, +OIF:SA:47:3037,1,"Château d'Eau",49.017318,3.03013,,1,,Europe/Paris,,OIF, +OIF:SA:47:3039,1,"Lotissements de Condé",49.014682,3.033086,,1,,Europe/Paris,,OIF, +OIF:SA:47:3042,1,"Pavillons",49.017641,3.025598,,1,,Europe/Paris,,OIF, +OIF:SA:47:3055,1,"Ancien Calvaire",49.072102,3.027391,,1,,Europe/Paris,,OIF, +OIF:SA:47:3057,1,"École Primaire",49.073927,3.027224,,1,,Europe/Paris,,OIF, +OIF:SA:47:3059,1,"Mairie",49.073943,3.028325,,1,,Europe/Paris,,OIF, +OIF:SA:47:3061,1,"Marnoue la Poterie",49.05724,3.055325,,1,,Europe/Paris,,OIF, +OIF:SA:47:3063,1,"Poste",49.071428,3.020242,,1,,Europe/Paris,,OIF, +OIF:SA:47:3065,1,"Vernelle",49.052264,3.045221,,1,,Europe/Paris,,OIF, +OIF:SA:47:3067,1,"Adam de la Halle",48.954441,2.907283,,1,,Europe/Paris,,OIF, +OIF:SA:47:3068,1,"Ampère",48.959632,2.910786,,1,,Europe/Paris,,OIF, +OIF:SA:47:3070,1,"Anjou",48.951882,2.903025,,1,,Europe/Paris,,OIF, +OIF:SA:47:3072,1,"Avenue de la Victoire / Zone Industrielle",48.956829,2.915102,,1,,Europe/Paris,,OIF, +OIF:SA:47:3076,1,"Avenue de Meaux",48.966737,2.921751,,1,,Europe/Paris,,OIF, +OIF:SA:47:3078,1,"Jean Vilar / Avenue Foch",48.955475,2.893866,,1,,Europe/Paris,,OIF, +OIF:SA:47:3079,1,"Jean Vilar / 11 Novembre 1918",48.953724,2.893397,,1,,Europe/Paris,,OIF, +OIF:SA:47:3081,1,"Bâtiment F",48.946087,2.902511,,1,,Europe/Paris,,OIF, +OIF:SA:47:3085,1,"Bazin",48.951036,2.916361,,1,,Europe/Paris,,OIF, +OIF:SA:47:3089,1,"Beauséjour",48.969052,2.878725,,1,,Europe/Paris,,OIF, +OIF:SA:47:3094,1,"Berry",48.952222,2.921825,,1,,Europe/Paris,,OIF, +OIF:SA:47:3097,1,"Bonneuil (Bon Dieu Jaune)",48.960364,2.891749,,1,,Europe/Paris,,OIF, +OIF:SA:47:3103,1,"Cité Administrative",48.955838,2.889176,,1,,Europe/Paris,,OIF, +OIF:SA:47:3106,1,"Collège Beaumarchais",48.948053,2.910679,,1,,Europe/Paris,,OIF, +OIF:SA:47:3108,1,"Collège Dunant",48.946465,2.896669,,1,,Europe/Paris,,OIF, +OIF:SA:47:3110,1,"Collège Parc Frot",48.964916,2.873167,,1,,Europe/Paris,,OIF, +OIF:SA:47:3112,1,"Châage",48.96961,2.882382,,1,,Europe/Paris,,OIF, +OIF:SA:47:3114,1,"Champs de Foire",48.953067,2.885858,,1,,Europe/Paris,,OIF, +OIF:SA:47:3116,1,"Chappe",48.951402,2.899895,,1,,Europe/Paris,,OIF, +OIF:SA:47:3118,1,"Chemin de Velours",48.965297,2.876379,,1,,Europe/Paris,,OIF, +OIF:SA:47:3120,1,"Chenonceaux",48.951575,2.905164,,1,,Europe/Paris,,OIF, +OIF:SA:47:3123,1,"Concorde",48.948584,2.910384,,1,,Europe/Paris,,OIF, +OIF:SA:47:3124,1,"Coquelicots",48.957062,2.920925,,1,,Europe/Paris,,OIF, +OIF:SA:47:3126,1,"Cornillon",48.952238,2.879606,,1,,Europe/Paris,,OIF, +OIF:SA:47:3128,1,"Cornouailles",48.951557,2.90893,,1,,Europe/Paris,,OIF, +OIF:SA:47:3130,1,"Lycée Professionnel Pierre de Coubertin",48.95772,2.864427,,1,,Europe/Paris,,OIF, +OIF:SA:47:3132,1,"Daguerre",48.963418,2.915735,,1,,Europe/Paris,,OIF, +OIF:SA:47:3134,1,"Descartes",48.959484,2.906929,,1,,Europe/Paris,,OIF, +OIF:SA:47:3136,1,"Docteur Dufraigne",48.953307,2.890445,,1,,Europe/Paris,,OIF, +OIF:SA:47:3137,1,"Ecluse Saint-Lazare",48.954896,2.902157,,1,,Europe/Paris,,OIF, +OIF:SA:47:3141,1,"Gambetta",48.96284,2.885088,,1,,Europe/Paris,,OIF, +OIF:SA:47:3151,1,"Grosse Pierre",48.962356,2.897284,,1,,Europe/Paris,,OIF, +OIF:SA:47:3155,1,"Henri IV / Cinéma",48.959147,2.882838,,1,,Europe/Paris,,OIF, +OIF:SA:47:3157,1,"Henri IV / Jardin",48.959585,2.88332,,1,,Europe/Paris,,OIF, +OIF:SA:47:3163,1,"Hôpital",48.967212,2.884083,,1,,Europe/Paris,,OIF, +OIF:SA:47:3164,1,"8 Mai 1945 (J.Vilar)",48.953505,2.894214,,1,,Europe/Paris,,OIF, +OIF:SA:47:3167,1,"Bouvin",48.952723,2.911331,,1,,Europe/Paris,,OIF, +OIF:SA:47:3169,1,"Boulevard Jean Rose",48.962066,2.879434,,1,,Europe/Paris,,OIF, +OIF:SA:47:317,1,"Place",49.103054,2.95432,,1,,Europe/Paris,,OIF, +OIF:SA:47:3171,1,"Jean Vilar",48.955155,2.893993,,1,,Europe/Paris,,OIF, +OIF:SA:47:3172,1,"La Corniche",48.967684,2.900454,,1,,Europe/Paris,,OIF, +OIF:SA:47:3176,1,"La Marne",48.959726,2.913633,,1,,Europe/Paris,,OIF, +OIF:SA:47:3187,1,"Lotissements",48.957146,2.925634,,1,,Europe/Paris,,OIF, +OIF:SA:47:319,1,"Bourg",49.152049,2.984784,,1,,Europe/Paris,,OIF, +OIF:SA:47:3192,1,"Marché",48.955288,2.879126,,1,,Europe/Paris,,OIF, +OIF:SA:47:3194,1,"Médiathèque",48.954718,2.87917,,1,,Europe/Paris,,OIF, +OIF:SA:47:3198,1,"Marronniers",48.95641,2.88794,,1,,Europe/Paris,,OIF, +OIF:SA:47:3202,1,"Moissan",48.958843,2.874742,,1,,Europe/Paris,,OIF, +OIF:SA:47:3205,1,"Newton",48.965537,2.907733,,1,,Europe/Paris,,OIF, +OIF:SA:47:3207,1,"Niepce",48.959792,2.916664,,1,,Europe/Paris,,OIF, +OIF:SA:47:321,1,"Église",49.158106,2.953856,,1,,Europe/Paris,,OIF, +OIF:SA:47:3211,1,"Orgemont",48.95607,2.869855,,1,,Europe/Paris,,OIF, +OIF:SA:47:3215,1,"Pierris",48.950415,2.893894,,1,,Europe/Paris,,OIF, +OIF:SA:47:3217,1,"Pinteville",48.962029,2.875601,,1,,Europe/Paris,,OIF, +OIF:SA:47:3223,1,"Poste Marne",48.956895,2.882132,,1,,Europe/Paris,,OIF, +OIF:SA:47:3227,1,"Rond-Point",48.951033,2.911298,,1,,Europe/Paris,,OIF, +OIF:SA:47:3229,1,"Route de Poincy",48.957443,2.93648,,1,,Europe/Paris,,OIF, +OIF:SA:47:3231,1,"Lugol",48.963234,2.88138,,1,,Europe/Paris,,OIF, +OIF:SA:47:3233,1,"Sablons Bouillants",48.957824,2.9044,,1,,Europe/Paris,,OIF, +OIF:SA:47:3236,1,"Saint-Jean Bosco",48.949658,2.894213,,1,,Europe/Paris,,OIF, +OIF:SA:47:3237,1,"Vieux Moulin",48.958035,2.878432,,1,,Europe/Paris,,OIF, +OIF:SA:47:3240,1,"Zone Artisanale",48.957317,2.932064,,1,,Europe/Paris,,OIF, +OIF:SA:47:3242,1,"Zone Industrielle",48.956642,2.904483,,1,,Europe/Paris,,OIF, +OIF:SA:47:329,1,"Place",49.112697,2.919079,,1,,Europe/Paris,,OIF, +OIF:SA:47:331,1,"Bourg",49.129901,3.00488,,1,,Europe/Paris,,OIF, +OIF:SA:47:3315,1,"16 Route de Saint-Aulde",48.980953,3.199117,,1,,Europe/Paris,,OIF, +OIF:SA:47:3317,1,"50 Rue de Courcelles",48.97573,3.197371,,1,,Europe/Paris,,OIF, +OIF:SA:47:3319,1,"85 Route de Saint-Aulde",48.989291,3.197481,,1,,Europe/Paris,,OIF, +OIF:SA:47:3323,1,"Hameaux de Courcelles",48.984652,3.199568,,1,,Europe/Paris,,OIF, +OIF:SA:47:3325,1,"La Brussette",48.971755,3.194643,,1,,Europe/Paris,,OIF, +OIF:SA:47:3327,1,"Calvaire",48.965226,3.200309,,1,,Europe/Paris,,OIF, +OIF:SA:47:3425,1,"Mairie",48.942334,2.986607,,1,,Europe/Paris,,OIF, +OIF:SA:47:3587,1,"N34",48.88463,2.831303,,1,,Europe/Paris,,OIF, +OIF:SA:47:3764,1,"Château",48.932846,2.89021,,1,,Europe/Paris,,OIF, +OIF:SA:47:3768,1,"Collot",48.919852,2.908525,,1,,Europe/Paris,,OIF, +OIF:SA:47:377,1,"Beauval / D936",49.109194,3.046878,,1,,Europe/Paris,,OIF, +OIF:SA:47:3770,1,"Clos Benoît",48.92573,2.899929,,1,,Europe/Paris,,OIF, +OIF:SA:47:3775,1,"Gallieni",48.926005,2.905043,,1,,Europe/Paris,,OIF, +OIF:SA:47:3777,1,"La Croix",48.942336,2.884134,,1,,Europe/Paris,,OIF, +OIF:SA:47:3779,1,"La Hayette",48.94278,2.879488,,1,,Europe/Paris,,OIF, +OIF:SA:47:378,1,"Mairie",49.115411,3.06209,,1,,Europe/Paris,,OIF, +OIF:SA:47:3781,1,"La Roseraie",48.922586,2.906346,,1,,Europe/Paris,,OIF, +OIF:SA:47:3784,1,"Marcel Pagnol",48.939903,2.8855,,1,,Europe/Paris,,OIF, +OIF:SA:47:3786,1,"Oblin",48.927397,2.894233,,1,,Europe/Paris,,OIF, +OIF:SA:47:3787,1,"Saint-Pères",48.945657,2.880489,,1,,Europe/Paris,,OIF, +OIF:SA:47:3789,1,"École",48.979154,3.222625,,1,,Europe/Paris,,OIF, +OIF:SA:47:3791,1,"Jeu de Boules",48.976704,3.217852,,1,,Europe/Paris,,OIF, +OIF:SA:47:382,1,"Centre",49.108589,2.933021,,1,,Europe/Paris,,OIF, +OIF:SA:47:3845,1,"CFA",49.023039,3.036936,,1,,Europe/Paris,,OIF, +OIF:SA:47:3849,1,"La Trousse",49.022283,3.065717,,1,,Europe/Paris,,OIF, +OIF:SA:47:3851,1,"Mairie / École",49.038044,3.057041,,1,,Europe/Paris,,OIF, +OIF:SA:47:3854,1,"Marnoue les Moines",49.056532,3.066159,,1,,Europe/Paris,,OIF, +OIF:SA:47:386,1,"Mairie",49.103071,2.954348,,1,,Europe/Paris,,OIF, +OIF:SA:47:3860,1,"Mairie",48.904584,3.229088,,1,,Europe/Paris,,OIF, +OIF:SA:47:388,1,"Bourg",49.111737,3.024595,,1,,Europe/Paris,,OIF, +OIF:SA:47:4002,1,"Courtesoupe",48.897516,3.058987,,1,,Europe/Paris,,OIF, +OIF:SA:47:4006,1,"Montebise",48.909114,3.057492,,1,,Europe/Paris,,OIF, +OIF:SA:47:4008,1,"Place Saint-Claude",48.899205,3.039132,,1,,Europe/Paris,,OIF, +OIF:SA:47:4021,1,"Centre Bourg",49.057785,2.989289,,1,,Europe/Paris,,OIF, +OIF:SA:47:4033,1,"Mairie",48.968703,2.934754,,1,,Europe/Paris,,OIF, +OIF:SA:47:4255,1,"La Chaussée",49.044997,2.902036,,1,,Europe/Paris,,OIF, +OIF:SA:47:4257,1,"Mairie / Centre",49.065595,2.916641,,1,,Europe/Paris,,OIF, +OIF:SA:47:4269,1,"Braunston",48.900588,2.868752,,1,,Europe/Paris,,OIF, +OIF:SA:47:4271,1,"Demi Lune",48.897282,2.863259,,1,,Europe/Paris,,OIF, +OIF:SA:47:4273,1,"Feux",48.900516,2.871717,,1,,Europe/Paris,,OIF, +OIF:SA:47:4275,1,"Les Roises",48.900082,2.856111,,1,,Europe/Paris,,OIF, +OIF:SA:47:4277,1,"Mairie",48.899175,2.87327,,1,,Europe/Paris,,OIF, +OIF:SA:47:4279,1,"Place Curie",48.897412,2.877544,,1,,Europe/Paris,,OIF, +OIF:SA:47:4285,1,"René Benoît",48.900401,2.862173,,1,,Europe/Paris,,OIF, +OIF:SA:47:4287,1,"Rue de Crécy",48.897744,2.880521,,1,,Europe/Paris,,OIF, +OIF:SA:47:4291,1,"Rue Philo",48.897767,2.886274,,1,,Europe/Paris,,OIF, +OIF:SA:47:4293,1,"Segy",48.895268,2.898099,,1,,Europe/Paris,,OIF, +OIF:SA:47:4299,1,"ZAC",48.905577,2.882416,,1,,Europe/Paris,,OIF, +OIF:SA:47:4339,1,"Mairie",48.958756,3.143644,,1,,Europe/Paris,,OIF, +OIF:SA:47:4448,1,"Église",48.961315,3.208501,,1,,Europe/Paris,,OIF, +OIF:SA:47:4454,1,"Rond-Point / Centre",48.962119,3.211026,,1,,Europe/Paris,,OIF, +OIF:SA:47:4456,1,"Stade",48.964,3.217329,,1,,Europe/Paris,,OIF, +OIF:SA:47:4458,1,"Bois Frémy",48.886045,3.275157,,1,,Europe/Paris,,OIF, +OIF:SA:47:4460,1,"Mairie",48.875602,3.295952,,1,,Europe/Paris,,OIF, +OIF:SA:47:4488,1,"Caumont",48.996306,3.194934,,1,,Europe/Paris,,OIF, +OIF:SA:47:4490,1,"Chamoust",49.005054,3.170935,,1,,Europe/Paris,,OIF, +OIF:SA:47:4492,1,"Croix Barrée",48.995808,3.181555,,1,,Europe/Paris,,OIF, +OIF:SA:47:4494,1,"École",48.994572,3.176543,,1,,Europe/Paris,,OIF, +OIF:SA:47:4496,1,"Les Davids",49.000883,3.161409,,1,,Europe/Paris,,OIF, +OIF:SA:47:4500,1,"Moitiébard",48.997108,3.188357,,1,,Europe/Paris,,OIF, +OIF:SA:47:4505,1,"Marais",48.999375,3.20053,,1,,Europe/Paris,,OIF, +OIF:SA:47:4531,1,"Champtortet",48.921188,3.194072,,1,,Europe/Paris,,OIF, +OIF:SA:47:4533,1,"Courcelles la Roue",48.907017,3.157919,,1,,Europe/Paris,,OIF, +OIF:SA:47:4535,1,"Église",48.906388,3.183936,,1,,Europe/Paris,,OIF, +OIF:SA:47:4537,1,"Le Chemin",48.904894,3.192732,,1,,Europe/Paris,,OIF, +OIF:SA:47:4541,1,"Montapeine",48.930744,3.201753,,1,,Europe/Paris,,OIF, +OIF:SA:47:4543,1,"Monthomé",48.919973,3.186081,,1,,Europe/Paris,,OIF, +OIF:SA:47:4545,1,"Moras",48.933803,3.176881,,1,,Europe/Paris,,OIF, +OIF:SA:47:4547,1,"Route d'Archet",48.907249,3.178176,,1,,Europe/Paris,,OIF, +OIF:SA:47:4549,1,"Vorpillères",48.931031,3.177348,,1,,Europe/Paris,,OIF, +OIF:SA:47:4603,1,"Résidence Grand Morin",48.884405,2.840132,,1,,Europe/Paris,,OIF, +OIF:SA:47:4610,1,"Église",48.951572,3.017371,,1,,Europe/Paris,,OIF, +OIF:SA:47:4685,1,"Busserolles",48.905796,3.208951,,1,,Europe/Paris,,OIF, +OIF:SA:47:4687,1,"L'Hermitière",48.914852,3.192154,,1,,Europe/Paris,,OIF, +OIF:SA:47:4689,1,"Les Hameaux",48.909417,3.212755,,1,,Europe/Paris,,OIF, +OIF:SA:47:4691,1,"Place",48.90339,3.196348,,1,,Europe/Paris,,OIF, +OIF:SA:47:470,1,"Centre",48.977614,3.021782,,1,,Europe/Paris,,OIF, +OIF:SA:47:472,1,"Château du Vignois",48.987395,3.024192,,1,,Europe/Paris,,OIF, +OIF:SA:47:4746,1,"Collège Nicolas Tronchon",49.038484,2.813851,,1,,Europe/Paris,,OIF, +OIF:SA:47:4782,1,"Rue de Metz",48.947447,3.081351,,1,,Europe/Paris,,OIF, +OIF:SA:47:4784,1,"Perreuse",48.947195,3.089213,,1,,Europe/Paris,,OIF, +OIF:SA:47:4811,1,"Mairie / École",48.885244,2.960959,,1,,Europe/Paris,,OIF, +OIF:SA:47:4828,1,"Zone Industrielle Haute Borne",48.944284,3.115074,,1,,Europe/Paris,,OIF, +OIF:SA:47:4830,1,"Zone Industrielle Sept-Sorts",48.945611,3.103012,,1,,Europe/Paris,,OIF, +OIF:SA:47:4854,1,"Mairie",48.927544,3.068421,,1,,Europe/Paris,,OIF, +OIF:SA:47:4903,1,"Mairie",49.000101,3.046794,,1,,Europe/Paris,,OIF, +OIF:SA:47:4905,1,"Rutel / Centre",48.995439,3.08465,,1,,Europe/Paris,,OIF, +OIF:SA:47:4966,1,"Centre",48.824561,2.902051,,1,,Europe/Paris,,OIF, +OIF:SA:47:4970,1,"Lavoir",48.829599,2.901381,,1,,Europe/Paris,,OIF, +OIF:SA:47:5080,1,"Tennis",48.93945,2.807516,,1,,Europe/Paris,,OIF, +OIF:SA:47:5082,1,"Collège le Bois de l'Enclume",48.951335,2.943054,,1,,Europe/Paris,,OIF, +OIF:SA:47:5084,1,"Église",48.957747,2.946569,,1,,Europe/Paris,,OIF, +OIF:SA:47:5086,1,"La Charmoye",48.963434,2.953781,,1,,Europe/Paris,,OIF, +OIF:SA:47:5088,1,"Langelot",48.96529,2.949544,,1,,Europe/Paris,,OIF, +OIF:SA:47:5091,1,"Parc",48.957779,2.949872,,1,,Europe/Paris,,OIF, +OIF:SA:47:5092,1,"Poste",48.956758,2.949259,,1,,Europe/Paris,,OIF, +OIF:SA:47:5093,1,"Saint-Fiacre",48.958755,2.950552,,1,,Europe/Paris,,OIF, +OIF:SA:47:5095,1,"Place Carrefour Orme",49.042182,2.962013,,1,,Europe/Paris,,OIF, +OIF:SA:47:5097,1,"Rue du Jeu d'Arc",49.041757,2.966888,,1,,Europe/Paris,,OIF, +OIF:SA:47:5109,1,"Château",48.953745,3.074332,,1,,Europe/Paris,,OIF, +OIF:SA:47:5111,1,"Mairie",48.954121,3.07098,,1,,Europe/Paris,,OIF, +OIF:SA:47:5113,1,"Pavillons",48.955892,3.066515,,1,,Europe/Paris,,OIF, +OIF:SA:47:5116,1,"Salle des Fêtes",48.95477,3.070662,,1,,Europe/Paris,,OIF, +OIF:SA:47:5205,1,"Église / Centre",49.046623,3.09252,,1,,Europe/Paris,,OIF, +OIF:SA:47:5208,1,"Rademont",49.038944,3.080953,,1,,Europe/Paris,,OIF, +OIF:SA:47:5216,1,"Mairie",48.875038,3.367658,,1,,Europe/Paris,,OIF, +OIF:SA:47:5218,1,"Pont",48.875399,3.363394,,1,,Europe/Paris,,OIF, +OIF:SA:47:5244,1,"Château / Cfdj",48.929212,2.809026,,1,,Europe/Paris,,OIF, +OIF:SA:47:5246,1,"Église",48.930731,2.808903,,1,,Europe/Paris,,OIF, +OIF:SA:47:5295,1,"Collège les Creusottes",48.862856,3.334483,,1,,Europe/Paris,,OIF, +OIF:SA:47:5299,1,"Église",48.861803,3.3414,,1,,Europe/Paris,,OIF, +OIF:SA:47:5301,1,"Le Fourcheret",48.861022,3.320853,,1,,Europe/Paris,,OIF, +OIF:SA:47:5309,1,"Garage Communal",48.866069,3.346387,,1,,Europe/Paris,,OIF, +OIF:SA:47:5322,1,"Église",48.941684,2.863199,,1,,Europe/Paris,,OIF, +OIF:SA:47:5324,1,"Les Patios",48.954764,2.864437,,1,,Europe/Paris,,OIF, +OIF:SA:47:5325,1,"Rue Bouchard",48.94227,2.860736,,1,,Europe/Paris,,OIF, +OIF:SA:47:5326,1,"Rue de Lagny",48.940105,2.858517,,1,,Europe/Paris,,OIF, +OIF:SA:47:536,1,"École les Girandoles",48.84584,2.817711,,1,,Europe/Paris,,OIF, +OIF:SA:47:5381,1,"Église",48.859382,2.880214,,1,,Europe/Paris,,OIF, +OIF:SA:47:5383,1,"Passage à Niveau",48.8629,2.883268,,1,,Europe/Paris,,OIF, +OIF:SA:47:5403,1,"Centre",49.078455,2.962952,,1,,Europe/Paris,,OIF, +OIF:SA:47:5405,1,"Église",49.077535,2.962694,,1,,Europe/Paris,,OIF, +OIF:SA:47:5407,1,"Manœuvre",49.068349,2.957892,,1,,Europe/Paris,,OIF, +OIF:SA:47:5419,1,"Rue Bout d'en Haut",48.850902,2.890959,,1,,Europe/Paris,,OIF, +OIF:SA:47:5422,1,"Rue du Château d'Eau",48.846597,2.900623,,1,,Europe/Paris,,OIF, +OIF:SA:47:5423,1,"Mairie",48.850701,2.898461,,1,,Europe/Paris,,OIF, +OIF:SA:47:543,1,"Mairie",48.846714,2.823207,,1,,Europe/Paris,,OIF, +OIF:SA:47:5430,1,"Rue de l'Orme",48.849678,2.89337,,1,,Europe/Paris,,OIF, +OIF:SA:47:5431,1,"Rue du Lutin",48.851062,2.898969,,1,,Europe/Paris,,OIF, +OIF:SA:47:5432,1,"Rue du Tertre",48.847886,2.903524,,1,,Europe/Paris,,OIF, +OIF:SA:47:554,1,"Église",49.01735,2.881799,,1,,Europe/Paris,,OIF, +OIF:SA:47:556,1,"École",48.924957,3.277591,,1,,Europe/Paris,,OIF, +OIF:SA:47:558,1,"La Belle Idée",48.92113,3.268186,,1,,Europe/Paris,,OIF, +OIF:SA:47:596,1,"Place",48.856902,3.317506,,1,,Europe/Paris,,OIF, +OIF:SA:47:674,1,"Méline / Centre",48.89451,3.259345,,1,,Europe/Paris,,OIF, +OIF:SA:47:675,1,"Coton",48.89079,3.251053,,1,,Europe/Paris,,OIF, +OIF:SA:47:689,1,"Carrefour Sarcy",48.876903,2.911989,,1,,Europe/Paris,,OIF, +OIF:SA:47:690,1,"Chemin de Rebais",48.874402,2.902983,,1,,Europe/Paris,,OIF, +OIF:SA:47:698,1,"Férolles",48.866608,2.918332,,1,,Europe/Paris,,OIF, +OIF:SA:47:699,1,"Mairie",48.881442,2.906269,,1,,Europe/Paris,,OIF, +OIF:SA:47:713,1,"École / Mairie",48.91961,2.928746,,1,,Europe/Paris,,OIF, +OIF:SA:47:720,1,"La Cantine",48.913531,2.924047,,1,,Europe/Paris,,OIF, +OIF:SA:47:723,1,"Magny Saint-Loup",48.90713,2.913406,,1,,Europe/Paris,,OIF, +OIF:SA:47:729,1,"Prévilliers",48.917654,2.943363,,1,,Europe/Paris,,OIF, +OIF:SA:47:927,1,"Mairie",48.997809,2.893366,,1,,Europe/Paris,,OIF, +OIF:SA:47:931,1,"Domaine Tanqueux",48.967474,3.136976,,1,,Europe/Paris,,OIF, +OIF:SA:47:935,1,"Erea",48.981023,3.143418,,1,,Europe/Paris,,OIF, +OIF:SA:47:944,1,"Le Rouget",48.999953,3.143665,,1,,Europe/Paris,,OIF, +OIF:SA:47:947,1,"Rouge Bourse",48.985191,3.133699,,1,,Europe/Paris,,OIF, +OIF:SA:47:975,1,"Église",48.958375,3.014171,,1,,Europe/Paris,,OIF, +OIF:SA:47:978,1,"Poste",48.957078,3.020193,,1,,Europe/Paris,,OIF, +OIF:SA:48:5000,1,"Lycée de la Tour des Dames",48.677765,2.968866,,1,,Europe/Paris,,OIF, +OIF:SA:48:5001,1,"Argentières",48.652126,2.866559,,1,,Europe/Paris,,OIF, +OIF:SA:48:5003,1,"Fleuriste",48.795252,2.704677,,1,,Europe/Paris,,OIF, +OIF:SA:48:5005,1,"Grille du Château",48.646661,2.859917,,1,,Europe/Paris,,OIF, +OIF:SA:48:5007,1,"N4 / Bernay Vilbert",48.684093,2.936927,,1,,Europe/Paris,,OIF, +OIF:SA:48:5015,1,"Lycée Blaise Pascal",48.700882,2.597363,,1,,Europe/Paris,,OIF, +OIF:SA:48:5023,1,"Ferme Caminha",48.804447,2.601485,,1,,Europe/Paris,,OIF, +OIF:SA:48:5031,1,"Jondelles",48.790679,2.670396,,1,,Europe/Paris,,OIF, +OIF:SA:48:5051,1,"Le Limodin",48.747436,2.851914,,1,,Europe/Paris,,OIF, +OIF:SA:48:5053,1,"Maison des Associations",48.741294,2.841151,,1,,Europe/Paris,,OIF, +OIF:SA:48:5057,1,"Villas Patrice",48.710736,2.804129,,1,,Europe/Paris,,OIF, +OIF:SA:48:5061,1,"Mairie",48.711422,2.808963,,1,,Europe/Paris,,OIF, +OIF:SA:48:5063,1,"Arcy",48.663518,2.868969,,1,,Europe/Paris,,OIF, +OIF:SA:48:5065,1,"Église",48.666339,2.842501,,1,,Europe/Paris,,OIF, +OIF:SA:48:5067,1,"Forest Ferme",48.672044,2.818439,,1,,Europe/Paris,,OIF, +OIF:SA:48:5070,1,"Campus",48.756969,2.699543,,1,,Europe/Paris,,OIF, +OIF:SA:48:5071,1,"Haras",48.653903,2.849916,,1,,Europe/Paris,,OIF, +OIF:SA:48:5073,1,"Maurevert",48.659025,2.823718,,1,,Europe/Paris,,OIF, +OIF:SA:48:5075,1,"Maréchal Foch",48.790972,2.666827,,1,,Europe/Paris,,OIF, +OIF:SA:48:5077,1,"Usine Barbara",48.665422,2.851971,,1,,Europe/Paris,,OIF, +OIF:SA:48:5080,1,"Collège Vermay",48.743593,2.752113,,1,,Europe/Paris,,OIF, +OIF:SA:48:5090,1,"Lycée Clément Ader",48.74313,2.748399,,1,,Europe/Paris,,OIF, +OIF:SA:48:5092,1,"Jean Gabin",48.728383,2.666694,,1,,Europe/Paris,,OIF, +OIF:SA:48:5093,1,"RN19",48.670026,2.696045,,1,,Europe/Paris,,OIF, +OIF:SA:48:5095,1,"Église",48.64732,2.961017,,1,,Europe/Paris,,OIF, +OIF:SA:48:5097,1,"Beauregard",48.75327,2.89751,,1,,Europe/Paris,,OIF, +OIF:SA:48:5100,1,"Collège Hutinel",48.739303,2.747649,,1,,Europe/Paris,,OIF, +OIF:SA:48:5101,1,"Gros Bois",48.753583,2.906288,,1,,Europe/Paris,,OIF, +OIF:SA:48:5103,1,"Place Saint-Jean",48.753606,2.907213,,1,,Europe/Paris,,OIF, +OIF:SA:48:5110,1,"Église",48.655025,2.868952,,1,,Europe/Paris,,OIF, +OIF:SA:48:5113,1,"Marquis",48.654172,2.635316,,1,,Europe/Paris,,OIF, +OIF:SA:48:5120,1,"Collège Gérard Philipe",48.76554,2.67676,,1,,Europe/Paris,,OIF, +OIF:SA:48:5129,1,"Lycée Lino Ventura",48.759238,2.692526,,1,,Europe/Paris,,OIF, +OIF:SA:48:5133,1,"Attilly",48.727741,2.64131,,1,,Europe/Paris,,OIF, +OIF:SA:48:5137,1,"Mairie",48.732628,2.628077,,1,,Europe/Paris,,OIF, +OIF:SA:48:5141,1,"Réveillon",48.73099,2.628937,,1,,Europe/Paris,,OIF, +OIF:SA:48:5143,1,"Les Bordes",48.705534,2.875093,,1,,Europe/Paris,,OIF, +OIF:SA:48:5145,1,"Louis Blanc",48.800733,2.62931,,1,,Europe/Paris,,OIF, +OIF:SA:48:5151,1,"Boulevard Hardy",48.708683,2.860817,,1,,Europe/Paris,,OIF, +OIF:SA:48:5153,1,"Rue Berthaux",48.710797,2.857528,,1,,Europe/Paris,,OIF, +OIF:SA:48:5155,1,"Lafayette",48.703555,2.870876,,1,,Europe/Paris,,OIF, +OIF:SA:48:5157,1,"Mairie",48.706724,2.867208,,1,,Europe/Paris,,OIF, +OIF:SA:48:5160,1,"Ancienne Gare",48.670897,2.846942,,1,,Europe/Paris,,OIF, +OIF:SA:48:5161,1,"Michelet",48.705039,2.877678,,1,,Europe/Paris,,OIF, +OIF:SA:48:5164,1,"Chemin des Bois",48.728441,2.884613,,1,,Europe/Paris,,OIF, +OIF:SA:48:5167,1,"Piscine",48.711299,2.870776,,1,,Europe/Paris,,OIF, +OIF:SA:48:5171,1,"Croix Saint-Pierre",48.715405,2.869249,,1,,Europe/Paris,,OIF, +OIF:SA:48:5173,1,"Zone Industrielle",48.703334,2.883914,,1,,Europe/Paris,,OIF, +OIF:SA:48:5175,1,"Denis Papin",48.800076,2.632993,,1,,Europe/Paris,,OIF, +OIF:SA:48:5180,1,"Collège Mallarmé",48.702305,2.871966,,1,,Europe/Paris,,OIF, +OIF:SA:48:5181,1,"Champagne",48.739061,2.744915,,1,,Europe/Paris,,OIF, +OIF:SA:48:5183,1,"Cité des Troênes",48.739179,2.72994,,1,,Europe/Paris,,OIF, +OIF:SA:48:5185,1,"Clément Ader",48.738317,2.717146,,1,,Europe/Paris,,OIF, +OIF:SA:48:5187,1,"Église",48.739802,2.73905,,1,,Europe/Paris,,OIF, +OIF:SA:48:5190,1,"Collège Laurencin",48.767318,2.667608,,1,,Europe/Paris,,OIF, +OIF:SA:48:5191,1,"Fresnes",48.738045,2.722288,,1,,Europe/Paris,,OIF, +OIF:SA:48:5193,1,"HLM",48.736026,2.737418,,1,,Europe/Paris,,OIF, +OIF:SA:48:5195,1,"Monument",48.742763,2.734758,,1,,Europe/Paris,,OIF, +OIF:SA:48:5197,1,"Ombrages",48.737498,2.713431,,1,,Europe/Paris,,OIF, +OIF:SA:48:5200,1,"Lycée Charles le Chauve",48.798454,2.648739,,1,,Europe/Paris,,OIF, +OIF:SA:48:5203,1,"Pierre Curie",48.737594,2.72681,,1,,Europe/Paris,,OIF, +OIF:SA:48:5205,1,"Maison Rouge",48.73278,2.728343,,1,,Europe/Paris,,OIF, +OIF:SA:48:5207,1,"Singe Vert",48.741435,2.731283,,1,,Europe/Paris,,OIF, +OIF:SA:48:5215,1,"Stade Laumonde",48.736172,2.717599,,1,,Europe/Paris,,OIF, +OIF:SA:48:5217,1,"Victor Hugo",48.739637,2.723197,,1,,Europe/Paris,,OIF, +OIF:SA:48:5220,1,"Collège Charles Péguy",48.646853,2.830299,,1,,Europe/Paris,,OIF, +OIF:SA:48:5221,1,"Zone Industrielle",48.73095,2.739335,,1,,Europe/Paris,,OIF, +OIF:SA:48:5237,1,"Place Augereau",48.754002,2.874803,,1,,Europe/Paris,,OIF, +OIF:SA:48:5242,1,"Chantepie",48.760354,2.871803,,1,,Europe/Paris,,OIF, +OIF:SA:48:5244,1,"Bussière",48.756309,2.873909,,1,,Europe/Paris,,OIF, +OIF:SA:48:5246,1,"La Gonière",48.757508,2.865126,,1,,Europe/Paris,,OIF, +OIF:SA:48:5247,1,"La Houssiette",48.748917,2.8756,,1,,Europe/Paris,,OIF, +OIF:SA:48:5251,1,"Monument",48.754187,2.877952,,1,,Europe/Paris,,OIF, +OIF:SA:48:5253,1,"Vieux Moulin",48.747483,2.870828,,1,,Europe/Paris,,OIF, +OIF:SA:48:5275,1,"Réveillon",48.731976,2.603249,,1,,Europe/Paris,,OIF, +OIF:SA:48:5280,1,"La Férandière",48.797579,2.705037,,1,,Europe/Paris,,OIF, +OIF:SA:48:5281,1,"Curie",48.743731,2.621344,,1,,Europe/Paris,,OIF, +OIF:SA:48:5290,1,"Collège Garlande",48.799277,2.638084,,1,,Europe/Paris,,OIF, +OIF:SA:48:5291,1,"Village de Lésigny",48.74641,2.617594,,1,,Europe/Paris,,OIF, +OIF:SA:48:5293,1,"Balancerie",48.708195,2.762777,,1,,Europe/Paris,,OIF, +OIF:SA:48:5295,1,"Briqueterie",48.698443,2.767525,,1,,Europe/Paris,,OIF, +OIF:SA:48:5297,1,"École",48.700305,2.774343,,1,,Europe/Paris,,OIF, +OIF:SA:48:5301,1,"Église",48.700657,2.776519,,1,,Europe/Paris,,OIF, +OIF:SA:48:5303,1,"Étangs",48.703886,2.781965,,1,,Europe/Paris,,OIF, +OIF:SA:48:5306,1,"Poincaré",48.7398,2.762398,,1,,Europe/Paris,,OIF, +OIF:SA:48:5308,1,"Caron",48.728247,2.870562,,1,,Europe/Paris,,OIF, +OIF:SA:48:5310,1,"Église",48.78231,2.601011,,1,,Europe/Paris,,OIF, +OIF:SA:48:5312,1,"Mairie",48.728542,2.879415,,1,,Europe/Paris,,OIF, +OIF:SA:48:5320,1,"Forestière",48.799958,2.644265,,1,,Europe/Paris,,OIF, +OIF:SA:48:5321,1,"Centre de Cure",48.762875,2.822803,,1,,Europe/Paris,,OIF, +OIF:SA:48:5323,1,"Stade",48.769702,2.830257,,1,,Europe/Paris,,OIF, +OIF:SA:48:5325,1,"Salle Fetes",48.77137,2.828967,,1,,Europe/Paris,,OIF, +OIF:SA:48:5331,1,"Varin",48.7967,2.63708,,1,,Europe/Paris,,OIF, +OIF:SA:48:5335,1,"Anatole France",48.771448,2.685107,,1,,Europe/Paris,,OIF, +OIF:SA:48:5337,1,"Anouilh",48.762747,2.695769,,1,,Europe/Paris,,OIF, +OIF:SA:48:5340,1,"Commerces",48.790893,2.662915,,1,,Europe/Paris,,OIF, +OIF:SA:48:5341,1,"Antenne",48.759522,2.667143,,1,,Europe/Paris,,OIF, +OIF:SA:48:5343,1,"Béatrice",48.763636,2.674416,,1,,Europe/Paris,,OIF, +OIF:SA:48:5345,1,"Beaudelet",48.766913,2.691175,,1,,Europe/Paris,,OIF, +OIF:SA:48:5347,1,"Wolfgang Amadeus Mozart",48.757994,2.691964,,1,,Europe/Paris,,OIF, +OIF:SA:48:5351,1,"La Brèche aux Loups",48.764734,2.68029,,1,,Europe/Paris,,OIF, +OIF:SA:48:5353,1,"Aristide Briand",48.768134,2.673276,,1,,Europe/Paris,,OIF, +OIF:SA:48:5355,1,"Camélias",48.758515,2.673805,,1,,Europe/Paris,,OIF, +OIF:SA:48:5357,1,"Campanules",48.758977,2.670627,,1,,Europe/Paris,,OIF, +OIF:SA:48:5361,1,"Bois Briard",48.797188,2.641554,,1,,Europe/Paris,,OIF, +OIF:SA:48:5363,1,"Pierrerie",48.794678,2.644056,,1,,Europe/Paris,,OIF, +OIF:SA:48:5367,1,"Val des Dames",48.740564,2.752055,,1,,Europe/Paris,,OIF, +OIF:SA:48:5370,1,"République",48.786466,2.660017,,1,,Europe/Paris,,OIF, +OIF:SA:48:5371,1,"Cognet",48.770392,2.677227,,1,,Europe/Paris,,OIF, +OIF:SA:48:5375,1,"Coste et Bellonte",48.756473,2.691287,,1,,Europe/Paris,,OIF, +OIF:SA:48:5377,1,"Église",48.762653,2.66753,,1,,Europe/Paris,,OIF, +OIF:SA:48:5380,1,"Prieuré",48.787764,2.661726,,1,,Europe/Paris,,OIF, +OIF:SA:48:5381,1,"Albert Einstein",48.76142,2.687175,,1,,Europe/Paris,,OIF, +OIF:SA:48:5383,1,"Gendarmerie",48.776549,2.678716,,1,,Europe/Paris,,OIF, +OIF:SA:48:5385,1,"Gruet",48.772458,2.675888,,1,,Europe/Paris,,OIF, +OIF:SA:48:5387,1,"HLM",48.778383,2.679952,,1,,Europe/Paris,,OIF, +OIF:SA:48:5390,1,"Ancel de Garlande",48.788526,2.662696,,1,,Europe/Paris,,OIF, +OIF:SA:48:5391,1,"Intermarché",48.757633,2.700077,,1,,Europe/Paris,,OIF, +OIF:SA:48:5393,1,"Jean Jaurès",48.769285,2.671271,,1,,Europe/Paris,,OIF, +OIF:SA:48:5395,1,"Kessel",48.761479,2.69727,,1,,Europe/Paris,,OIF, +OIF:SA:48:5397,1,"La Ferme",48.761898,2.664385,,1,,Europe/Paris,,OIF, +OIF:SA:48:5401,1,"La Ferrière",48.760775,2.678544,,1,,Europe/Paris,,OIF, +OIF:SA:48:5403,1,"Lavoisier",48.770345,2.681021,,1,,Europe/Paris,,OIF, +OIF:SA:48:5405,1,"Leclerc",48.764706,2.67288,,1,,Europe/Paris,,OIF, +OIF:SA:48:5411,1,"Leconte de Lisle",48.757121,2.696927,,1,,Europe/Paris,,OIF, +OIF:SA:48:5416,1,"Louis Armand",48.765,2.689102,,1,,Europe/Paris,,OIF, +OIF:SA:48:5417,1,"Mairie",48.762171,2.672775,,1,,Europe/Paris,,OIF, +OIF:SA:48:5421,1,"Marceau",48.778102,2.681025,,1,,Europe/Paris,,OIF, +OIF:SA:48:5423,1,"Margotins",48.775441,2.67794,,1,,Europe/Paris,,OIF, +OIF:SA:48:5431,1,"Poirier Rouge",48.773923,2.685491,,1,,Europe/Paris,,OIF, +OIF:SA:48:5435,1,"Pyramide",48.760127,2.698681,,1,,Europe/Paris,,OIF, +OIF:SA:48:5437,1,"Rue de Chevry",48.759147,2.672613,,1,,Europe/Paris,,OIF, +OIF:SA:48:5441,1,"Schuman",48.761375,2.6871,,1,,Europe/Paris,,OIF, +OIF:SA:48:5443,1,"Sécurité Sociale",48.773146,2.678931,,1,,Europe/Paris,,OIF, +OIF:SA:48:5447,1,"Stade",48.76227,2.679227,,1,,Europe/Paris,,OIF, +OIF:SA:48:5450,1,"Leduc",48.715681,2.581975,,1,,Europe/Paris,,OIF, +OIF:SA:48:5451,1,"Tulipes",48.756991,2.675454,,1,,Europe/Paris,,OIF, +OIF:SA:48:5455,1,"Jules Verne",48.755036,2.693956,,1,,Europe/Paris,,OIF, +OIF:SA:48:5457,1,"ZAC Poirier",48.770301,2.667939,,1,,Europe/Paris,,OIF, +OIF:SA:48:5460,1,"Châtelet",48.745359,2.590949,,1,,Europe/Paris,,OIF, +OIF:SA:48:5461,1,"Zone Industrielle Chevalier",48.767188,2.684997,,1,,Europe/Paris,,OIF, +OIF:SA:48:5463,1,"Bleuets",48.797371,2.608693,,1,,Europe/Paris,,OIF, +OIF:SA:48:5465,1,"Bouquet",48.798464,2.605151,,1,,Europe/Paris,,OIF, +OIF:SA:48:5467,1,"Cimetière",48.78593,2.601472,,1,,Europe/Paris,,OIF, +OIF:SA:48:5470,1,"Clos Prieur",48.747577,2.636329,,1,,Europe/Paris,,OIF, +OIF:SA:48:5473,1,"Etoile",48.792723,2.604275,,1,,Europe/Paris,,OIF, +OIF:SA:48:5477,1,"Libération",48.780568,2.605327,,1,,Europe/Paris,,OIF, +OIF:SA:48:5480,1,"Clos la Vigne",48.753765,2.646982,,1,,Europe/Paris,,OIF, +OIF:SA:48:5481,1,"Lycée Claudel",48.789725,2.615301,,1,,Europe/Paris,,OIF, +OIF:SA:48:5483,1,"Place du Muguet",48.807391,2.605119,,1,,Europe/Paris,,OIF, +OIF:SA:48:5485,1,"Bartholome",48.794854,2.636738,,1,,Europe/Paris,,OIF, +OIF:SA:48:5487,1,"Salle des Fêtes Jacques Brel",48.795658,2.61184,,1,,Europe/Paris,,OIF, +OIF:SA:48:5491,1,"École du Grand Étang",48.792485,2.638582,,1,,Europe/Paris,,OIF, +OIF:SA:48:5493,1,"Stade Lucien Morane",48.801972,2.604962,,1,,Europe/Paris,,OIF, +OIF:SA:48:5495,1,"Auteuil",48.721519,2.738651,,1,,Europe/Paris,,OIF, +OIF:SA:48:5497,1,"La Brosse",48.710968,2.752464,,1,,Europe/Paris,,OIF, +OIF:SA:48:5501,1,"Fontaines",48.705784,2.751777,,1,,Europe/Paris,,OIF, +OIF:SA:48:5503,1,"Marsange 1",48.713963,2.740181,,1,,Europe/Paris,,OIF, +OIF:SA:48:5507,1,"Marsange 2",48.714739,2.738075,,1,,Europe/Paris,,OIF, +OIF:SA:48:5511,1,"Place",48.715874,2.74129,,1,,Europe/Paris,,OIF, +OIF:SA:48:5513,1,"Croix Rouge",48.70045,2.746534,,1,,Europe/Paris,,OIF, +OIF:SA:48:5523,1,"Rue de l'Avenue",48.731877,2.626395,,1,,Europe/Paris,,OIF, +OIF:SA:48:5525,1,"Delacroix",48.795716,2.664265,,1,,Europe/Paris,,OIF, +OIF:SA:48:5535,1,"Manoir",48.790484,2.672625,,1,,Europe/Paris,,OIF, +OIF:SA:48:5543,1,"Wattripont",48.789778,2.648217,,1,,Europe/Paris,,OIF, +OIF:SA:48:5545,1,"Lavoir",48.683226,2.95426,,1,,Europe/Paris,,OIF, +OIF:SA:48:5547,1,"Morbras",48.791634,2.641311,,1,,Europe/Paris,,OIF, +OIF:SA:48:5551,1,"Maladrerie",48.684297,2.963585,,1,,Europe/Paris,,OIF, +OIF:SA:48:5553,1,"Saint-Nicolas",48.681484,2.959068,,1,,Europe/Paris,,OIF, +OIF:SA:48:5557,1,"Croix Blanche",48.718372,2.606976,,1,,Europe/Paris,,OIF, +OIF:SA:48:5563,1,"Pied de Coq",48.715809,2.593535,,1,,Europe/Paris,,OIF, +OIF:SA:48:5565,1,"La Jarrie",48.718898,2.600831,,1,,Europe/Paris,,OIF, +OIF:SA:48:5570,1,"ZA Pontillault",48.797803,2.62711,,1,,Europe/Paris,,OIF, +OIF:SA:48:5573,1,"Église",48.653781,2.698405,,1,,Europe/Paris,,OIF, +OIF:SA:48:5575,1,"Hardillières",48.651259,2.690217,,1,,Europe/Paris,,OIF, +OIF:SA:48:5581,1,"Cimetière Allemand",48.657273,2.710797,,1,,Europe/Paris,,OIF, +OIF:SA:48:5585,1,"Mendès France",48.798025,2.633716,,1,,Europe/Paris,,OIF, +OIF:SA:48:5593,1,"Bourgognerie",48.735136,2.769405,,1,,Europe/Paris,,OIF, +OIF:SA:48:5595,1,"Mendès France 2",48.799998,2.633972,,1,,Europe/Paris,,OIF, +OIF:SA:48:5601,1,"Combreux",48.729369,2.764751,,1,,Europe/Paris,,OIF, +OIF:SA:48:5603,1,"Cottages",48.740309,2.776841,,1,,Europe/Paris,,OIF, +OIF:SA:48:5605,1,"De Gaulle",48.746132,2.762354,,1,,Europe/Paris,,OIF, +OIF:SA:48:5612,1,"Foyer Rural",48.740454,2.765379,,1,,Europe/Paris,,OIF, +OIF:SA:48:5617,1,"Maréchal Foch",48.740009,2.772965,,1,,Europe/Paris,,OIF, +OIF:SA:48:5621,1,"Origny",48.7429,2.76018,,1,,Europe/Paris,,OIF, +OIF:SA:48:5623,1,"Penthièvre",48.742544,2.772912,,1,,Europe/Paris,,OIF, +OIF:SA:48:5625,1,"Petite Motte / Closeau",48.735828,2.780418,,1,,Europe/Paris,,OIF, +OIF:SA:48:5627,1,"Plume Vert",48.75854,2.677462,,1,,Europe/Paris,,OIF, +OIF:SA:48:5631,1,"Pompiers",48.742191,2.779419,,1,,Europe/Paris,,OIF, +OIF:SA:48:5633,1,"Pont",48.74445,2.776414,,1,,Europe/Paris,,OIF, +OIF:SA:48:5635,1,"Poste",48.738754,2.768198,,1,,Europe/Paris,,OIF, +OIF:SA:48:5637,1,"Psr",48.742599,2.769997,,1,,Europe/Paris,,OIF, +OIF:SA:48:5641,1,"Paul Cézanne",48.797088,2.655567,,1,,Europe/Paris,,OIF, +OIF:SA:48:5643,1,"Ville",48.741647,2.792719,,1,,Europe/Paris,,OIF, +OIF:SA:48:5646,1,"Sécurité Sociale",48.738428,2.773829,,1,,Europe/Paris,,OIF, +OIF:SA:48:5647,1,"Pinsonnière",48.798077,2.660355,,1,,Europe/Paris,,OIF, +OIF:SA:48:5651,1,"Fragonnard",48.796938,2.662715,,1,,Europe/Paris,,OIF, +OIF:SA:48:5657,1,"Renardière",48.794218,2.661528,,1,,Europe/Paris,,OIF, +OIF:SA:48:5661,1,"Rue de Ville",48.741336,2.774974,,1,,Europe/Paris,,OIF, +OIF:SA:48:5664,1,"Zone Industrielle Eiffel",48.737623,2.77514,,1,,Europe/Paris,,OIF, +OIF:SA:48:5667,1,"Petit Pont",48.794008,2.654446,,1,,Europe/Paris,,OIF, +OIF:SA:48:5683,1,"Parc des Sources",48.792391,2.652464,,1,,Europe/Paris,,OIF, +OIF:SA:48:5685,1,"Sapins",48.789553,2.656323,,1,,Europe/Paris,,OIF, +OIF:SA:48:5691,1,"Mairie",48.644397,2.835189,,1,,Europe/Paris,,OIF, +OIF:SA:48:5697,1,"Grande Haie",48.78524,2.609412,,1,,Europe/Paris,,OIF, +OIF:SA:48:5721,1,"Masséna",48.800176,2.61881,,1,,Europe/Paris,,OIF, +OIF:SA:48:5735,1,"Danton",48.760878,2.678626,,1,,Europe/Paris,,OIF, +OIF:SA:48:5737,1,"Belle Croix",48.758382,2.693041,,1,,Europe/Paris,,OIF, +OIF:SA:48:5741,1,"Haras",48.65562,2.848855,,1,,Europe/Paris,,OIF, +OIF:SA:48:5901,1,"Guérin",48.713605,2.583629,,1,,Europe/Paris,,OIF, +OIF:SA:48:5909,1,"Centre Loisirs",48.670993,2.692265,,1,,Europe/Paris,,OIF, +OIF:SA:48:5911,1,"Meliès",48.725382,2.663142,,1,,Europe/Paris,,OIF, +OIF:SA:48:5917,1,"Hameau du Retal",48.686771,2.778485,,1,,Europe/Paris,,OIF, +OIF:SA:48:5941,1,"Troisième Avenue",48.784879,2.656614,,1,,Europe/Paris,,OIF, +OIF:SA:48:5943,1,"Deuxième Avenue",48.78648,2.656393,,1,,Europe/Paris,,OIF, +OIF:SA:48:5971,1,"Renardière / Delacroix",48.794252,2.662338,,1,,Europe/Paris,,OIF, +OIF:SA:48:5973,1,"Village de Flore",48.791806,2.66437,,1,,Europe/Paris,,OIF, +OIF:SA:48:5975,1,"Emery / Dantzig",48.80807,2.611171,,1,,Europe/Paris,,OIF, +OIF:SA:48:5977,1,"Plessis / Dantzig",48.809807,2.605819,,1,,Europe/Paris,,OIF, +OIF:SA:48:5980,1,"Campus Sainte-Thérèse Ouest",48.765311,2.665147,,1,,Europe/Paris,,OIF, +OIF:SA:48:5981,1,"Creutzer / Dantzig",48.81054,2.60189,,1,,Europe/Paris,,OIF, +OIF:SA:48:5983,1,"Capucines",48.794279,2.604538,,1,,Europe/Paris,,OIF, +OIF:SA:48:5985,1,"Espace Roger Boisramé",48.790958,2.604021,,1,,Europe/Paris,,OIF, +OIF:SA:48:5988,1,"Rue du Four",48.783493,2.598882,,1,,Europe/Paris,,OIF, +OIF:SA:48:5995,1,"Pré Saint-Martin",48.794088,2.611302,,1,,Europe/Paris,,OIF, +OIF:SA:48:5997,1,"Jean Monnet",48.797222,2.649262,,1,,Europe/Paris,,OIF, +OIF:SA:48:6083,1,"L'Orme au Charron",48.797221,2.614991,,1,,Europe/Paris,,OIF, +OIF:SA:48:6095,1,"Péri",48.776015,2.683234,,1,,Europe/Paris,,OIF, +OIF:SA:48:6215,1,"Petite Motte",48.736441,2.780008,,1,,Europe/Paris,,OIF, +OIF:SA:48:6220,1,"Petit Parc",48.736154,2.630624,,1,,Europe/Paris,,OIF, +OIF:SA:48:6251,1,"Utec",48.809816,2.613889,,1,,Europe/Paris,,OIF, +OIF:SA:48:6269,1,"Les 4 Chênes",48.777263,2.589011,,1,,Europe/Paris,,OIF, +OIF:SA:48:6283,1,"ZA",48.783147,2.657589,,1,,Europe/Paris,,OIF, +OIF:SA:48:7031,1,"Grands Champs",48.801233,2.639605,,1,,Europe/Paris,,OIF, +OIF:SA:48:7035,1,"Parc Centre Commercial",48.737061,2.60604,,1,,Europe/Paris,,OIF, +OIF:SA:48:7037,1,"Parc Stade",48.743069,2.600683,,1,,Europe/Paris,,OIF, +OIF:SA:48:7041,1,"Parc Charlotte",48.741873,2.606738,,1,,Europe/Paris,,OIF, +OIF:SA:48:7043,1,"Le Pavé",48.777351,2.598059,,1,,Europe/Paris,,OIF, +OIF:SA:48:7045,1,"Centre Commercial",48.777807,2.606082,,1,,Europe/Paris,,OIF, +OIF:SA:48:7047,1,"Nautil",48.783669,2.625616,,1,,Europe/Paris,,OIF, +OIF:SA:48:7050,1,"La Borde",48.73097,2.633177,,1,,Europe/Paris,,OIF, +OIF:SA:48:7051,1,"Poste",48.792478,2.645084,,1,,Europe/Paris,,OIF, +OIF:SA:48:7065,1,"Les Hantes",48.781057,2.595657,,1,,Europe/Paris,,OIF, +OIF:SA:48:7067,1,"Les Alouettes",48.779227,2.588001,,1,,Europe/Paris,,OIF, +OIF:SA:48:7071,1,"Les Merles",48.780718,2.590358,,1,,Europe/Paris,,OIF, +OIF:SA:48:7076,1,"Bois Saint-Martin",48.807476,2.603582,,1,,Europe/Paris,,OIF, +OIF:SA:48:7083,1,"Collège Jean Moulin",48.787711,2.597679,,1,,Europe/Paris,,OIF, +OIF:SA:48:7087,1,"Résidence des Tilleuls",48.798374,2.616807,,1,,Europe/Paris,,OIF, +OIF:SA:48:7091,1,"Collège Condorcet",48.802023,2.620752,,1,,Europe/Paris,,OIF, +OIF:SA:48:7111,1,"La Pépinière",48.788852,2.613613,,1,,Europe/Paris,,OIF, +OIF:SA:48:7113,1,"Berchères",48.784331,2.607707,,1,,Europe/Paris,,OIF, +OIF:SA:48:7115,1,"Château Candalle",48.783797,2.603664,,1,,Europe/Paris,,OIF, +OIF:SA:48:7121,1,"Verveines",48.790615,2.597048,,1,,Europe/Paris,,OIF, +OIF:SA:48:7123,1,"Place du 8 Mai 1945",48.793481,2.599674,,1,,Europe/Paris,,OIF, +OIF:SA:48:7125,1,"Lucien Rémy",48.795754,2.602025,,1,,Europe/Paris,,OIF, +OIF:SA:48:7133,1,"Parc Hi Han",48.804125,2.633003,,1,,Europe/Paris,,OIF, +OIF:SA:48:7135,1,"Stade Bessuard",48.797531,2.652808,,1,,Europe/Paris,,OIF, +OIF:SA:48:7137,1,"Pierre Rollet",48.789071,2.604399,,1,,Europe/Paris,,OIF, +OIF:SA:48:7141,1,"Square Amalia Rodrigues",48.806314,2.616421,,1,,Europe/Paris,,OIF, +OIF:SA:48:7143,1,"Maurice André",48.710808,2.740347,,1,,Europe/Paris,,OIF, +OIF:SA:48:7176,1,"Arcy 3",48.663379,2.868988,,1,,Europe/Paris,,OIF, +OIF:SA:48:7221,1,"Prés des Aulnes",48.800964,2.626447,,1,,Europe/Paris,,OIF, +OIF:SA:48:7225,1,"Crapart Nacu",48.780625,2.600921,,1,,Europe/Paris,,OIF, +OIF:SA:48:7283,1,"Tessan",48.762633,2.690119,,1,,Europe/Paris,,OIF, +OIF:SA:48:7295,1,"Carré Sénart",48.614464,2.545287,,1,,Europe/Paris,,OIF, +OIF:SA:48:7307,1,"Centre Commercial 2000",48.800097,2.60751,,1,,Europe/Paris,,OIF, +OIF:SA:48:7312,1,"Le Calvaire",48.753817,2.865347,,1,,Europe/Paris,,OIF, +OIF:SA:48:7313,1,"Conforama",48.727527,2.82093,,1,,Europe/Paris,,OIF, +OIF:SA:48:7315,1,"Castorama",48.72638,2.82219,,1,,Europe/Paris,,OIF, +OIF:SA:48:7317,1,"Ikea",48.725745,2.835437,,1,,Europe/Paris,,OIF, +OIF:SA:48:7357,1,"A Vigny",48.740842,2.728472,,1,,Europe/Paris,,OIF, +OIF:SA:48:7383,1,"Kipling",48.742913,2.760283,,1,,Europe/Paris,,OIF, +OIF:SA:48:7385,1,"Lully",48.743002,2.760419,,1,,Europe/Paris,,OIF, +OIF:SA:48:7387,1,"Schumann",48.792433,2.645057,,1,,Europe/Paris,,OIF, +OIF:SA:49:49010,1,"Puit Sucré",48.568247,2.294835,,1,,Europe/Paris,,OIF, +OIF:SA:49:49020,1,"Clos Neuf",48.56636,2.297938,,1,,Europe/Paris,,OIF, +OIF:SA:49:49030,1,"Château",48.565023,2.303736,,1,,Europe/Paris,,OIF, +OIF:SA:49:49040,1,"Saint-Exupéry",48.564197,2.307705,,1,,Europe/Paris,,OIF, +OIF:SA:49:49050,1,"Mésanges",48.563236,2.310251,,1,,Europe/Paris,,OIF, +OIF:SA:49:49060,1,"Pinsons",48.561357,2.309386,,1,,Europe/Paris,,OIF, +OIF:SA:49:49070,1,"Capucines",48.562084,2.306406,,1,,Europe/Paris,,OIF, +OIF:SA:49:49080,1,"Église",48.561212,2.305526,,1,,Europe/Paris,,OIF, +OIF:SA:49:49090,1,"Crèches",48.550971,2.27707,,1,,Europe/Paris,,OIF, +OIF:SA:49:49100,1,"Comices",48.547959,2.275693,,1,,Europe/Paris,,OIF, +OIF:SA:49:49110,1,"Calvaire",48.55005,2.274521,,1,,Europe/Paris,,OIF, +OIF:SA:49:49590,1,"Mairie de Marolles",48.562513,2.298144,,1,,Europe/Paris,,OIF, +OIF:SA:49:49760,1,"Hôpital",48.421527,2.150321,,1,,Europe/Paris,,OIF, +OIF:SA:49:49970,1,"Chemin des Femmes",48.727475,2.264154,,1,,Europe/Paris,,OIF, +OIF:SA:49:49980,1,"Mairie",48.729731,2.270326,,1,,Europe/Paris,,OIF, +OIF:SA:49:50020,1,"20 Rue Panserot",48.51587,2.241591,,1,,Europe/Paris,,OIF, +OIF:SA:49:50040,1,"46 Rue Panserot",48.516551,2.244343,,1,,Europe/Paris,,OIF, +OIF:SA:49:50090,1,"Augustin Fresnel",48.623133,2.351264,,1,,Europe/Paris,,OIF, +OIF:SA:49:50100,1,"Abbé Boursier",48.644135,2.313866,,1,,Europe/Paris,,OIF, +OIF:SA:49:50110,1,"Abbéville la Rivière",48.346296,2.166476,,1,,Europe/Paris,,OIF, +OIF:SA:49:50120,1,"Centre Commercial",48.789693,2.54217,,1,,Europe/Paris,,OIF, +OIF:SA:49:50180,1,"Arrancourt",48.341883,2.161764,,1,,Europe/Paris,,OIF, +OIF:SA:49:50190,1,"Aubin",48.510639,2.356104,,1,,Europe/Paris,,OIF, +OIF:SA:49:50210,1,"Avenue du Bois",48.65855,2.32985,,1,,Europe/Paris,,OIF, +OIF:SA:49:50240,1,"Les Jonquilles",48.645629,2.346625,,1,,Europe/Paris,,OIF, +OIF:SA:49:50320,1,"Bois des Friches",48.795404,2.565136,,1,,Europe/Paris,,OIF, +OIF:SA:49:50330,1,"Boissy la Rivière",48.374684,2.154428,,1,,Europe/Paris,,OIF, +OIF:SA:49:50400,1,"Calvaire",48.661247,2.340983,,1,,Europe/Paris,,OIF, +OIF:SA:49:50420,1,"Carrefour Berger",48.516891,2.268476,,1,,Europe/Paris,,OIF, +OIF:SA:49:50431,1,"Carrefour Duclos",48.637076,2.334532,,1,,Europe/Paris,,OIF, +OIF:SA:49:50450,1,"Pince Vent",48.792562,2.556383,,1,,Europe/Paris,,OIF, +OIF:SA:49:50490,1,"Cimetière",48.52851,2.385907,,1,,Europe/Paris,,OIF, +OIF:SA:49:50510,1,"Centre",48.471401,2.285239,,1,,Europe/Paris,,OIF, +OIF:SA:49:50520,1,"Centre",48.521409,2.300394,,1,,Europe/Paris,,OIF, +OIF:SA:49:50530,1,"Centre",48.462377,2.321346,,1,,Europe/Paris,,OIF, +OIF:SA:49:50540,1,"Centre",48.547036,2.398956,,1,,Europe/Paris,,OIF, +OIF:SA:49:50550,1,"Centre",48.346578,2.044507,,1,,Europe/Paris,,OIF, +OIF:SA:49:50670,1,"Les Champarts",48.716292,2.298498,,1,,Europe/Paris,,OIF, +OIF:SA:49:50690,1,"Chanval",48.363817,2.089508,,1,,Europe/Paris,,OIF, +OIF:SA:49:50710,1,"Charbonneau",48.558755,2.285986,,1,,Europe/Paris,,OIF, +OIF:SA:49:50730,1,"Charlie Chaplin",48.640234,2.355555,,1,,Europe/Paris,,OIF, +OIF:SA:49:50740,1,"Château",48.509792,2.235541,,1,,Europe/Paris,,OIF, +OIF:SA:49:50760,1,"Ormesson/Marne Maréchal Leclerc",48.785992,2.538585,,1,,Europe/Paris,,OIF, +OIF:SA:49:50770,1,"Château de Frémigny",48.519737,2.301999,,1,,Europe/Paris,,OIF, +OIF:SA:49:50820,1,"Chevauchée",48.680715,2.314209,,1,,Europe/Paris,,OIF, +OIF:SA:49:50832,1,"Chèvrefeuilles",48.651072,2.335528,,1,,Europe/Paris,,OIF, +OIF:SA:49:50840,1,"Beaulieu",48.682598,2.284731,,1,,Europe/Paris,,OIF, +OIF:SA:49:50850,1,"Christophe Colomb",48.648493,2.307549,,1,,Europe/Paris,,OIF, +OIF:SA:49:50870,1,"Hôtel de Ville de Ch.",48.794975,2.533463,,1,,Europe/Paris,,OIF, +OIF:SA:49:50980,1,"Collège le Saussay",48.528669,2.370701,,1,,Europe/Paris,,OIF, +OIF:SA:49:50990,1,"Collège R. Doisneau",48.525194,2.352482,,1,,Europe/Paris,,OIF, +OIF:SA:49:51010,1,"Commissariat",48.631004,2.338288,,1,,Europe/Paris,,OIF, +OIF:SA:49:51100,1,"Croix de Fer",48.518501,2.288677,,1,,Europe/Paris,,OIF, +OIF:SA:49:51111,1,"Ormesson/Marne Danielle Casanova",48.789588,2.549424,,1,,Europe/Paris,,OIF, +OIF:SA:49:51120,1,"Danielle Casanova",48.64841,2.322756,,1,,Europe/Paris,,OIF, +OIF:SA:49:51130,1,"Demi Lune",48.657912,2.339565,,1,,Europe/Paris,,OIF, +OIF:SA:49:51150,1,"Dispensaire",48.659755,2.336756,,1,,Europe/Paris,,OIF, +OIF:SA:49:51162,1,"Donjon",48.640006,2.334464,,1,,Europe/Paris,,OIF, +OIF:SA:49:51170,1,"Dos D'Âne",48.512169,2.251353,,1,,Europe/Paris,,OIF, +OIF:SA:49:51190,1,"Eugène Jacquet",48.6518,2.330115,,1,,Europe/Paris,,OIF, +OIF:SA:49:51200,1,"École",48.549646,2.270153,,1,,Europe/Paris,,OIF, +OIF:SA:49:51260,1,"Église / Place de Selves",48.475247,2.328684,,1,,Europe/Paris,,OIF, +OIF:SA:49:51270,1,"Église",48.521744,2.266853,,1,,Europe/Paris,,OIF, +OIF:SA:49:51280,1,"Église",48.314782,2.088101,,1,,Europe/Paris,,OIF, +OIF:SA:49:51290,1,"Église",48.515054,2.342232,,1,,Europe/Paris,,OIF, +OIF:SA:49:51310,1,"Église",48.693356,2.293471,,1,,Europe/Paris,,OIF, +OIF:SA:49:51330,1,"Église",48.541969,2.333954,,1,,Europe/Paris,,OIF, +OIF:SA:49:51340,1,"Église",48.634649,2.333854,,1,,Europe/Paris,,OIF, +OIF:SA:49:51350,1,"Émile Zola",48.64846,2.340744,,1,,Europe/Paris,,OIF, +OIF:SA:49:51360,1,"Engelthal",48.679713,2.315954,,1,,Europe/Paris,,OIF, +OIF:SA:49:51380,1,"Estouches",48.302616,2.134275,,1,,Europe/Paris,,OIF, +OIF:SA:49:51400,1,"Etoile Stalingrad",48.645458,2.334575,,1,,Europe/Paris,,OIF, +OIF:SA:49:51420,1,"Ferdinand Buisson",48.643867,2.338777,,1,,Europe/Paris,,OIF, +OIF:SA:49:51450,1,"Fontaine la Rivière",48.35681,2.154112,,1,,Europe/Paris,,OIF, +OIF:SA:49:51460,1,"Fontenette",48.328166,2.173169,,1,,Europe/Paris,,OIF, +OIF:SA:49:51471,1,"Fosse aux Leux",48.620995,2.336078,,1,,Europe/Paris,,OIF, +OIF:SA:49:51490,1,"Rue des Fusilles de Châteaubriand",48.799857,2.543496,,1,,Europe/Paris,,OIF, +OIF:SA:49:51510,1,"Gabriel Péri",48.676167,2.318066,,1,,Europe/Paris,,OIF, +OIF:SA:49:51540,1,"Gare de Méréville",48.316999,2.103404,,1,,Europe/Paris,,OIF, +OIF:SA:49:51710,1,"Gendarmerie",48.519141,2.252181,,1,,Europe/Paris,,OIF, +OIF:SA:49:51720,1,"Gendarmerie",48.642115,2.366855,,1,,Europe/Paris,,OIF, +OIF:SA:49:51740,1,"Gillevoisin",48.510004,2.230507,,1,,Europe/Paris,,OIF, +OIF:SA:49:51770,1,"Grandes Roches",48.516224,2.294349,,1,,Europe/Paris,,OIF, +OIF:SA:49:51790,1,"Graviers",48.555162,2.282367,,1,,Europe/Paris,,OIF, +OIF:SA:49:51800,1,"Graviers",48.5162,2.27069,,1,,Europe/Paris,,OIF, +OIF:SA:49:51820,1,"Guy Môquet",48.666811,2.332047,,1,,Europe/Paris,,OIF, +OIF:SA:49:51830,1,"Henri Rouart",48.782669,2.578266,,1,,Europe/Paris,,OIF, +OIF:SA:49:51860,1,"HLM",48.512506,2.245365,,1,,Europe/Paris,,OIF, +OIF:SA:49:51890,1,"Hôtel de Ville",48.672222,2.324426,,1,,Europe/Paris,,OIF, +OIF:SA:49:51900,1,"Mairie",48.482052,2.348392,,1,,Europe/Paris,,OIF, +OIF:SA:49:51910,1,"Hôtel de Ville de la Queue en Brie",48.789718,2.573653,,1,,Europe/Paris,,OIF, +OIF:SA:49:51920,1,"Mairie",48.640415,2.327363,,1,,Europe/Paris,,OIF, +OIF:SA:49:51950,1,"Jean de la Fontaine",48.569218,2.265739,,1,,Europe/Paris,,OIF, +OIF:SA:49:51990,1,"Jardin Public",48.649722,2.319018,,1,,Europe/Paris,,OIF, +OIF:SA:49:52061,1,"Lucien Sampaix",48.623556,2.334437,,1,,Europe/Paris,,OIF, +OIF:SA:49:52070,1,"La Boissière",48.526478,2.298266,,1,,Europe/Paris,,OIF, +OIF:SA:49:52080,1,"La Croix Boissée",48.511105,2.344326,,1,,Europe/Paris,,OIF, +OIF:SA:49:52090,1,"La Ferme",48.479526,2.333944,,1,,Europe/Paris,,OIF, +OIF:SA:49:52120,1,"La Grenouillère",48.539407,2.340587,,1,,Europe/Paris,,OIF, +OIF:SA:49:52180,1,"Lafayette",48.648173,2.335949,,1,,Europe/Paris,,OIF, +OIF:SA:49:52190,1,"Lavoir",48.488307,2.188829,,1,,Europe/Paris,,OIF, +OIF:SA:49:52210,1,"Le Bouchet",48.533009,2.361269,,1,,Europe/Paris,,OIF, +OIF:SA:49:52220,1,"Le Breuil",48.666477,2.316455,,1,,Europe/Paris,,OIF, +OIF:SA:49:52230,1,"Le Canal",48.639668,2.351093,,1,,Europe/Paris,,OIF, +OIF:SA:49:52240,1,"Le Domaine",48.533177,2.34527,,1,,Europe/Paris,,OIF, +OIF:SA:49:52250,1,"Fort de Champigny",48.805814,2.533545,,1,,Europe/Paris,,OIF, +OIF:SA:49:52300,1,"Le Parc",48.53894,2.339572,,1,,Europe/Paris,,OIF, +OIF:SA:49:52340,1,"Lycée Montmirault",48.483814,2.332666,,1,,Europe/Paris,,OIF, +OIF:SA:49:52370,1,"Les Aulnes",48.662079,2.334178,,1,,Europe/Paris,,OIF, +OIF:SA:49:52390,1,"Les Bédouins",48.507741,2.346166,,1,,Europe/Paris,,OIF, +OIF:SA:49:52450,1,"Les Feux",48.55093,2.277152,,1,,Europe/Paris,,OIF, +OIF:SA:49:52460,1,"Les Fleurs",48.535037,2.35059,,1,,Europe/Paris,,OIF, +OIF:SA:49:52470,1,"Les Gardes",48.661413,2.335765,,1,,Europe/Paris,,OIF, +OIF:SA:49:52490,1,"Les Laurentes",48.667825,2.317838,,1,,Europe/Paris,,OIF, +OIF:SA:49:52510,1,"Les Murets",48.785755,2.581327,,1,,Europe/Paris,,OIF, +OIF:SA:49:52520,1,"Les Murs",48.500013,2.352143,,1,,Europe/Paris,,OIF, +OIF:SA:49:52540,1,"Les Plantes",48.522915,2.34941,,1,,Europe/Paris,,OIF, +OIF:SA:49:52560,1,"Les Rêts",48.787383,2.526477,,1,,Europe/Paris,,OIF, +OIF:SA:49:52570,1,"Les Roches",48.515163,2.264642,,1,,Europe/Paris,,OIF, +OIF:SA:49:52580,1,"Les Sapins",48.789966,2.529452,,1,,Europe/Paris,,OIF, +OIF:SA:49:52620,1,"Les Violettes",48.791144,2.569803,,1,,Europe/Paris,,OIF, +OIF:SA:49:52690,1,"Longue Raie",48.535397,2.354448,,1,,Europe/Paris,,OIF, +OIF:SA:49:52750,1,"Lycée Albert Einstein",48.636385,2.348979,,1,,Europe/Paris,,OIF, +OIF:SA:49:52780,1,"Maréchal de Lattre Detassigny",48.652442,2.321283,,1,,Europe/Paris,,OIF, +OIF:SA:49:52800,1,"Mairie Champigny",48.813186,2.512378,,1,,Europe/Paris,,OIF, +OIF:SA:49:52810,1,"Mairie",48.551081,2.265033,,1,,Europe/Paris,,OIF, +OIF:SA:49:52820,1,"Mairie",48.469476,2.282348,,1,,Europe/Paris,,OIF, +OIF:SA:49:52840,1,"Mairie",48.569961,2.269504,,1,,Europe/Paris,,OIF, +OIF:SA:49:52850,1,"Mairie",48.513991,2.259556,,1,,Europe/Paris,,OIF, +OIF:SA:49:52880,1,"Mairie",48.662344,2.329808,,1,,Europe/Paris,,OIF, +OIF:SA:49:52890,1,"Maison de Retraite le Verger",48.477728,2.331537,,1,,Europe/Paris,,OIF, +OIF:SA:49:52910,1,"Mare au Chanvre",48.629238,2.3402,,1,,Europe/Paris,,OIF, +OIF:SA:49:52912,1,"Rue de Liers",48.628505,2.339448,,1,,Europe/Paris,,OIF, +OIF:SA:49:52920,1,"Mauregard",48.678212,2.318588,,1,,Europe/Paris,,OIF, +OIF:SA:49:52940,1,"Mesnil Racoin",48.455317,2.257927,,1,,Europe/Paris,,OIF, +OIF:SA:49:52960,1,"Mondésir",48.371463,2.080566,,1,,Europe/Paris,,OIF, +OIF:SA:49:52980,1,"Morigny",48.446403,2.184266,,1,,Europe/Paris,,OIF, +OIF:SA:49:52990,1,"Moulin à Vent",48.482048,2.327933,,1,,Europe/Paris,,OIF, +OIF:SA:49:53000,1,"Chennevières/Marne Moulin à Vent",48.784227,2.524344,,1,,Europe/Paris,,OIF, +OIF:SA:49:53010,1,"Moulin à Vent",48.562811,2.289449,,1,,Europe/Paris,,OIF, +OIF:SA:49:53030,1,"Moulin de la Brière",48.530103,2.340282,,1,,Europe/Paris,,OIF, +OIF:SA:49:53040,1,"Moulin du Gué",48.489037,2.34715,,1,,Europe/Paris,,OIF, +OIF:SA:49:53090,1,"Mutualité",48.534263,2.375056,,1,,Europe/Paris,,OIF, +OIF:SA:49:53210,1,"Petit Mesnil",48.518332,2.282845,,1,,Europe/Paris,,OIF, +OIF:SA:49:53230,1,"Petit Saint-Vrain",48.53978,2.323483,,1,,Europe/Paris,,OIF, +OIF:SA:49:53320,1,"École",48.477548,2.326764,,1,,Europe/Paris,,OIF, +OIF:SA:49:53330,1,"Place des Monseaux",48.672504,2.328368,,1,,Europe/Paris,,OIF, +OIF:SA:49:53340,1,"Place d'Orgeval",48.656564,2.335304,,1,,Europe/Paris,,OIF, +OIF:SA:49:53350,1,"Place du 08 Mai 1945",48.791889,2.532432,,1,,Europe/Paris,,OIF, +OIF:SA:49:53360,1,"Place du 8 Mai 1945 / Lycée Robert Doisneau",48.613884,2.458414,,1,,Europe/Paris,,OIF, +OIF:SA:49:53380,1,"Place Stalingrad",48.655377,2.331003,,1,,Europe/Paris,,OIF, +OIF:SA:49:53410,1,"Place du Carrouge",48.349447,1.991684,,1,,Europe/Paris,,OIF, +OIF:SA:49:53420,1,"Place du Général Leclerc",48.311147,2.000272,,1,,Europe/Paris,,OIF, +OIF:SA:49:53450,1,"Rue du Monument",48.812478,2.515913,,1,,Europe/Paris,,OIF, +OIF:SA:49:53460,1,"Pont Cylindre",48.650498,2.309379,,1,,Europe/Paris,,OIF, +OIF:SA:49:53490,1,"Pont de Villiers",48.485814,2.344803,,1,,Europe/Paris,,OIF, +OIF:SA:49:53550,1,"Ormesson/Marne Poste Mairie",48.786136,2.541265,,1,,Europe/Paris,,OIF, +OIF:SA:49:53570,1,"Poste",48.360133,2.125317,,1,,Europe/Paris,,OIF, +OIF:SA:49:53580,1,"Petit Caporal",48.780042,2.579539,,1,,Europe/Paris,,OIF, +OIF:SA:49:53590,1,"Québec",48.526701,2.291668,,1,,Europe/Paris,,OIF, +OIF:SA:49:53600,1,"Relais Cocatrix",48.499982,2.19744,,1,,Europe/Paris,,OIF, +OIF:SA:49:53610,1,"Remise Neuve",48.625012,2.3466,,1,,Europe/Paris,,OIF, +OIF:SA:49:53620,1,"Renault",48.522816,2.287733,,1,,Europe/Paris,,OIF, +OIF:SA:49:53630,1,"René Clair",48.641731,2.351798,,1,,Europe/Paris,,OIF, +OIF:SA:49:53670,1,"Résidence de France",48.796413,2.530605,,1,,Europe/Paris,,OIF, +OIF:SA:49:53720,1,"Rond-Point",48.520066,2.272295,,1,,Europe/Paris,,OIF, +OIF:SA:49:53770,1,"Route de Bouray",48.512168,2.334936,,1,,Europe/Paris,,OIF, +OIF:SA:49:53780,1,"Route de Monnerville",48.348199,1.996999,,1,,Europe/Paris,,OIF, +OIF:SA:49:53790,1,"Rue à Trait",48.811649,2.514288,,1,,Europe/Paris,,OIF, +OIF:SA:49:53800,1,"Rue Ampère",48.52737,2.383747,,1,,Europe/Paris,,OIF, +OIF:SA:49:53840,1,"Avenue du Général Leclerc",48.52962,2.376285,,1,,Europe/Paris,,OIF, +OIF:SA:49:53850,1,"Ruelle",48.549061,2.404056,,1,,Europe/Paris,,OIF, +OIF:SA:49:53880,1,"Salle des Fêtes",48.695596,2.298887,,1,,Europe/Paris,,OIF, +OIF:SA:49:53900,1,"Salvador Allende",48.645872,2.307116,,1,,Europe/Paris,,OIF, +OIF:SA:49:53910,1,"Séquigny",48.643462,2.324365,,1,,Europe/Paris,,OIF, +OIF:SA:49:53930,1,"Les Sonnettes",48.795679,2.550125,,1,,Europe/Paris,,OIF, +OIF:SA:49:53940,1,"Saint-Caprais",48.540594,2.33834,,1,,Europe/Paris,,OIF, +OIF:SA:49:53950,1,"Saint-Cyr la Rivière",48.348499,2.151821,,1,,Europe/Paris,,OIF, +OIF:SA:49:53960,1,"Saint-Eutrope",48.61614,2.256449,,1,,Europe/Paris,,OIF, +OIF:SA:49:53971,1,"Saint-Exupéry",-22.790443,115.440422,,1,,Europe/Paris,,OIF, +OIF:SA:49:53981,1,"Ormesson/Marne Saint-Exupéry",48.791067,2.553425,,1,,Europe/Paris,,OIF, +OIF:SA:49:54000,1,"Saint-Laurent",48.665724,2.337781,,1,,Europe/Paris,,OIF, +OIF:SA:49:54020,1,"Saint-Siméon",48.798702,2.533811,,1,,Europe/Paris,,OIF, +OIF:SA:49:54030,1,"Stade",48.515885,2.300405,,1,,Europe/Paris,,OIF, +OIF:SA:49:54040,1,"Ormesson/Marne Pôle Culturel",48.787635,2.54478,,1,,Europe/Paris,,OIF, +OIF:SA:49:54050,1,"Stade",48.668796,2.319385,,1,,Europe/Paris,,OIF, +OIF:SA:49:54100,1,"Terrasse",48.35776,2.12302,,1,,Europe/Paris,,OIF, +OIF:SA:49:54110,1,"Terrasses",48.675422,2.323387,,1,,Europe/Paris,,OIF, +OIF:SA:49:54130,1,"Tilleuls",48.518624,2.294131,,1,,Europe/Paris,,OIF, +OIF:SA:49:54140,1,"Transfo Savigny",48.652159,2.325136,,1,,Europe/Paris,,OIF, +OIF:SA:49:54160,1,"Victor Hugo",48.64664,2.329756,,1,,Europe/Paris,,OIF, +OIF:SA:49:54170,1,"Vieux Logis",48.664267,2.328933,,1,,Europe/Paris,,OIF, +OIF:SA:49:54180,1,"Villeneuve",48.475237,2.248648,,1,,Europe/Paris,,OIF, +OIF:SA:49:54190,1,"Viry Grigny",48.647116,2.343586,,1,,Europe/Paris,,OIF, +OIF:SA:49:54210,1,"ZAC",48.525428,2.347901,,1,,Europe/Paris,,OIF, +OIF:SA:49:54260,1,"Zone Industrielle la Croix Blanche",48.624207,2.341463,,1,,Europe/Paris,,OIF, +OIF:SA:49:54270,1,"Zone Industrielle",48.56828,2.276766,,1,,Europe/Paris,,OIF, +OIF:SA:49:54280,1,"Ormoy la Rivière",48.401902,2.150762,,1,,Europe/Paris,,OIF, +OIF:SA:49:54290,1,"Ancienne Gare",48.378167,2.145353,,1,,Europe/Paris,,OIF, +OIF:SA:49:54430,1,"Médiathèque F.Mitterrand",48.80039,2.609097,,1,,Europe/Paris,,OIF, +OIF:SA:49:54680,1,"Hôtel de Ville",48.521666,2.263192,,1,,Europe/Paris,,OIF, +OIF:SA:49:54690,1,"Place Saint-Gombert",48.512915,2.339205,,1,,Europe/Paris,,OIF, +OIF:SA:49:58430,1,"Collège G. Tillon",48.524333,2.293991,,1,,Europe/Paris,,OIF, +OIF:SA:49:59010,1,"L'Epine",48.536243,2.343112,,1,,Europe/Paris,,OIF, +OIF:SA:49:59510,1,"Claire Joie",48.64806,2.30314,,1,,Europe/Paris,,OIF, +OIF:SA:49:59630,1,"Lotissement",48.541798,2.327869,,1,,Europe/Paris,,OIF, +OIF:SA:49:60380,1,"Montaquoy",48.473102,2.326373,,1,,Europe/Paris,,OIF, +OIF:SA:49:60390,1,"Mairie",48.45833,2.323668,,1,,Europe/Paris,,OIF, +OIF:SA:49:60400,1,"Marché",48.810938,2.510261,,1,,Europe/Paris,,OIF, +OIF:SA:49:60410,1,"D'Huison",48.46008,2.330015,,1,,Europe/Paris,,OIF, +OIF:SA:49:60420,1,"Pierres Rangées",48.476733,2.357741,,1,,Europe/Paris,,OIF, +OIF:SA:49:60430,1,"Caporal Chef Sellier",48.476008,2.361844,,1,,Europe/Paris,,OIF, +OIF:SA:49:60440,1,"La Garenne",48.476124,2.365772,,1,,Europe/Paris,,OIF, +OIF:SA:49:60442,1,"La Cascade",48.809183,2.523472,,1,,Europe/Paris,,OIF, +OIF:SA:49:60450,1,"Musée de la Résistance",48.806704,2.526738,,1,,Europe/Paris,,OIF, +OIF:SA:49:60460,1,"La Tuilerie",48.727216,2.270745,,1,,Europe/Paris,,OIF, +OIF:SA:49:60490,1,"Saint-Germain",48.512236,2.335329,,1,,Europe/Paris,,OIF, +OIF:SA:49:60500,1,"Stade",48.510011,2.344719,,1,,Europe/Paris,,OIF, +OIF:SA:49:63400,1,"Mairie / Marché",48.813572,2.509715,,1,,Europe/Paris,,OIF, +OIF:SA:49:63572,1,"Léo Lagrange",48.629318,2.343048,,1,,Europe/Paris,,OIF, +OIF:SA:49:63580,1,"Carnot",48.644575,2.312441,,1,,Europe/Paris,,OIF, +OIF:SA:49:63630,1,"Martelet",48.811118,2.519202,,1,,Europe/Paris,,OIF, +OIF:SA:49:63650,1,"Rue des Fleurs",48.716927,2.295438,,1,,Europe/Paris,,OIF, +OIF:SA:49:63680,1,"Colonel Fabien",48.647148,2.327565,,1,,Europe/Paris,,OIF, +OIF:SA:49:63700,1,"Cimetière Russe",48.6321,2.343103,,1,,Europe/Paris,,OIF, +OIF:SA:49:63710,1,"Plessis",48.621556,2.342329,,1,,Europe/Paris,,OIF, +OIF:SA:49:63730,1,"CC Cial les 4 Chênes",48.776816,2.587948,,1,,Europe/Paris,,OIF, +OIF:SA:49:63860,1,"Stop Cerny",48.490772,2.351336,,1,,Europe/Paris,,OIF, +OIF:SA:49:63890,1,"Collège André Maurois",48.67952,2.32082,,1,,Europe/Paris,,OIF, +OIF:SA:49:63900,1,"Henri Dunant",48.680887,2.322557,,1,,Europe/Paris,,OIF, +OIF:SA:49:63910,1,"Molière - Silléry",48.679682,2.324648,,1,,Europe/Paris,,OIF, +OIF:SA:49:63920,1,"Rue d'Athis",48.677498,2.325707,,1,,Europe/Paris,,OIF, +OIF:SA:49:63930,1,"Hauts Graviers",48.67455,2.330241,,1,,Europe/Paris,,OIF, +OIF:SA:49:63950,1,"Rue du Parc",48.674675,2.318759,,1,,Europe/Paris,,OIF, +OIF:SA:49:63960,1,"Domaine du Parc",48.67311,2.312896,,1,,Europe/Paris,,OIF, +OIF:SA:49:63970,1,"Colonel Manhès",48.673471,2.322315,,1,,Europe/Paris,,OIF, +OIF:SA:49:63990,1,"Pont Rubeau",48.676024,2.327676,,1,,Europe/Paris,,OIF, +OIF:SA:49:64000,1,"Chemin Vert",48.673256,2.333431,,1,,Europe/Paris,,OIF, +OIF:SA:49:64390,1,"La Bonde",48.723065,2.287034,,1,,Europe/Paris,,OIF, +OIF:SA:49:64400,1,"Les Roulles",48.667465,2.312872,,1,,Europe/Paris,,OIF, +OIF:SA:49:64440,1,"Verger",48.548544,2.277696,,1,,Europe/Paris,,OIF, +OIF:SA:49:64460,1,"Lavoir",48.56083,2.245436,,1,,Europe/Paris,,OIF, +OIF:SA:49:64480,1,"Piffrets",48.561821,2.248671,,1,,Europe/Paris,,OIF, +OIF:SA:49:65360,1,"Gendarmerie",48.478302,2.35426,,1,,Europe/Paris,,OIF, +OIF:SA:49:65400,1,"Église",48.456215,2.341298,,1,,Europe/Paris,,OIF, +OIF:SA:4:1,1,"Brossolette",48.72885,2.42403,,1,,Europe/Paris,,OIF, +OIF:SA:4:10,1,"Reine Astrid",48.727613,2.418709,,1,,Europe/Paris,,OIF, +OIF:SA:4:100,1,"Passerelle",48.782267,2.417123,,1,,Europe/Paris,,OIF, +OIF:SA:4:102,1,"Pont de Vitry",48.796154,2.415835,,1,,Europe/Paris,,OIF, +OIF:SA:4:104,1,"Rue Tortue",48.788409,2.41199,,1,,Europe/Paris,,OIF, +OIF:SA:4:106,1,"Abbé Grégoire",48.73996,2.417342,,1,,Europe/Paris,,OIF, +OIF:SA:4:107,1,"Place Amédée Soupault",48.734659,2.418073,,1,,Europe/Paris,,OIF, +OIF:SA:4:11,1,"Sacré Cœur",48.724249,2.415606,,1,,Europe/Paris,,OIF, +OIF:SA:4:110,1,"Général de Gaulle",48.735636,2.424218,,1,,Europe/Paris,,OIF, +OIF:SA:4:112,1,"Écoles",48.732637,2.441986,,1,,Europe/Paris,,OIF, +OIF:SA:4:114,1,"EDF",48.729494,2.438861,,1,,Europe/Paris,,OIF, +OIF:SA:4:116,1,"Ernest Renan",48.730317,2.413781,,1,,Europe/Paris,,OIF, +OIF:SA:4:117,1,"Rue Foch",48.731678,2.408824,,1,,Europe/Paris,,OIF, +OIF:SA:4:118,1,"Gallieni",48.742644,2.42213,,1,,Europe/Paris,,OIF, +OIF:SA:4:119,1,"Gambetta",48.72699,2.42938,,1,,Europe/Paris,,OIF, +OIF:SA:4:124,1,"G. du Vair",48.737288,2.406046,,1,,Europe/Paris,,OIF, +OIF:SA:4:125,1,"Henri Dunant",48.734543,2.411681,,1,,Europe/Paris,,OIF, +OIF:SA:4:126,1,"Hôtels",48.728711,2.434777,,1,,Europe/Paris,,OIF, +OIF:SA:4:128,1,"Honoré Oursel",48.729969,2.439997,,1,,Europe/Paris,,OIF, +OIF:SA:4:13,1,"Tamaris le Parc",48.722799,2.413614,,1,,Europe/Paris,,OIF, +OIF:SA:4:130,1,"Jeanne d'Arc",48.73262,2.424478,,1,,Europe/Paris,,OIF, +OIF:SA:4:131,1,"Foyer Jean Rostand",48.735213,2.404576,,1,,Europe/Paris,,OIF, +OIF:SA:4:132,1,"La Fresnaie",48.737667,2.441459,,1,,Europe/Paris,,OIF, +OIF:SA:4:134,1,"Louis Jarrige",48.739734,2.418538,,1,,Europe/Paris,,OIF, +OIF:SA:4:135,1,"Lycée Brassens",48.72996,2.427436,,1,,Europe/Paris,,OIF, +OIF:SA:4:138,1,"Mairie",48.733332,2.408364,,1,,Europe/Paris,,OIF, +OIF:SA:4:139,1,"Marché",48.736541,2.421264,,1,,Europe/Paris,,OIF, +OIF:SA:4:140,1,"Mariniers",48.728332,2.437032,,1,,Europe/Paris,,OIF, +OIF:SA:4:142,1,"Place Molière",48.732116,2.412711,,1,,Europe/Paris,,OIF, +OIF:SA:4:145,1,"Nikos Belloyanis",48.743042,2.417837,,1,,Europe/Paris,,OIF, +OIF:SA:4:146,1,"École Painlevé",48.738308,2.41378,,1,,Europe/Paris,,OIF, +OIF:SA:4:147,1,"Plaine Basse",48.735262,2.44155,,1,,Europe/Paris,,OIF, +OIF:SA:4:149,1,"Parc en Seine",48.742907,2.435551,,1,,Europe/Paris,,OIF, +OIF:SA:4:15,1,"Clos de Brétigny",48.71408,2.398185,,1,,Europe/Paris,,OIF, +OIF:SA:4:151,1,"Pierre Currie",48.732295,2.39911,,1,,Europe/Paris,,OIF, +OIF:SA:4:154,1,"Les Pierrières",48.726517,2.410651,,1,,Europe/Paris,,OIF, +OIF:SA:4:155,1,"Poincaré",48.733944,2.42107,,1,,Europe/Paris,,OIF, +OIF:SA:4:156,1,"Paul Painlevé",48.736912,2.411943,,1,,Europe/Paris,,OIF, +OIF:SA:4:158,1,"Place de la République",48.73142,2.418409,,1,,Europe/Paris,,OIF, +OIF:SA:4:16,1,"Parc Central",48.716507,2.389052,,1,,Europe/Paris,,OIF, +OIF:SA:4:160,1,"Raymond Ml",48.736422,2.411344,,1,,Europe/Paris,,OIF, +OIF:SA:4:161,1,"Raoul Delattre",48.727553,2.436743,,1,,Europe/Paris,,OIF, +OIF:SA:4:164,1,"République",48.73399,2.405729,,1,,Europe/Paris,,OIF, +OIF:SA:4:165,1,"Service Enfance",48.73175,2.408797,,1,,Europe/Paris,,OIF, +OIF:SA:4:166,1,"Saint-Martin",48.739135,2.407258,,1,,Europe/Paris,,OIF, +OIF:SA:4:168,1,"Serge Voyer",48.732383,2.416026,,1,,Europe/Paris,,OIF, +OIF:SA:4:169,1,"Val d'Ablon",48.727939,2.433852,,1,,Europe/Paris,,OIF, +OIF:SA:4:171,1,"Victor Hugo",48.732542,2.421149,,1,,Europe/Paris,,OIF, +OIF:SA:4:172,1,"Weddingen",48.728633,2.431013,,1,,Europe/Paris,,OIF, +OIF:SA:4:18,1,"Clos Nollet",48.712005,2.391601,,1,,Europe/Paris,,OIF, +OIF:SA:4:189,1,"Clemenceau",48.767378,2.410355,,1,,Europe/Paris,,OIF, +OIF:SA:4:19,1,"Dagobert",48.719293,2.402371,,1,,Europe/Paris,,OIF, +OIF:SA:4:22,1,"Delalande / Pasteur",48.713115,2.395673,,1,,Europe/Paris,,OIF, +OIF:SA:4:24,1,"Dgac",48.716653,2.393542,,1,,Europe/Paris,,OIF, +OIF:SA:4:26,1,"Maison de l'Environnement",48.71416,2.381057,,1,,Europe/Paris,,OIF, +OIF:SA:4:28,1,"Europe",48.721812,2.410556,,1,,Europe/Paris,,OIF, +OIF:SA:4:29,1,"Place de Mons",48.715679,2.400876,,1,,Europe/Paris,,OIF, +OIF:SA:4:3,1,"Château",48.723501,2.41119,,1,,Europe/Paris,,OIF, +OIF:SA:4:30,1,"Rue du Musée",48.716848,2.398555,,1,,Europe/Paris,,OIF, +OIF:SA:4:32,1,"N. Dentressangle",48.698257,2.395287,,1,,Europe/Paris,,OIF, +OIF:SA:4:34,1,"Plaine Basse",48.705845,2.400192,,1,,Europe/Paris,,OIF, +OIF:SA:4:38,1,"Rue d'Ablon",48.718574,2.407321,,1,,Europe/Paris,,OIF, +OIF:SA:4:40,1,"Sanders",48.694349,2.390985,,1,,Europe/Paris,,OIF, +OIF:SA:4:42,1,"Saint-Charles",48.709953,2.39109,,1,,Europe/Paris,,OIF, +OIF:SA:4:43,1,"Zone d'Activités les Guyards",48.721523,2.405274,,1,,Europe/Paris,,OIF, +OIF:SA:4:45,1,"8 Mai 1945",48.768738,2.408892,,1,,Europe/Paris,,OIF, +OIF:SA:4:47,1,"Général Leclerc",48.762145,2.406484,,1,,Europe/Paris,,OIF, +OIF:SA:4:52,1,"Rouget de Lisle",48.764355,2.405307,,1,,Europe/Paris,,OIF, +OIF:SA:4:53,1,"Docteur Roux",48.771347,2.407478,,1,,Europe/Paris,,OIF, +OIF:SA:4:60,1,"Jean Jaurès",48.749944,2.406321,,1,,Europe/Paris,,OIF, +OIF:SA:4:62,1,"Noyer Grenot",48.748867,2.403268,,1,,Europe/Paris,,OIF, +OIF:SA:4:64,1,"Paul Lafargue",48.745236,2.40166,,1,,Europe/Paris,,OIF, +OIF:SA:4:66,1,"J. J. Rousseau",48.7432,2.401943,,1,,Europe/Paris,,OIF, +OIF:SA:4:68,1,"La Source",48.746091,2.399833,,1,,Europe/Paris,,OIF, +OIF:SA:4:70,1,"Victoire",48.74637,2.407268,,1,,Europe/Paris,,OIF, +OIF:SA:4:74,1,"Cité des Vergers",48.757456,2.402069,,1,,Europe/Paris,,OIF, +OIF:SA:4:76,1,"E. Levasseur",48.754958,2.39007,,1,,Europe/Paris,,OIF, +OIF:SA:4:77,1,"Guy Moquet",48.760066,2.403602,,1,,Europe/Paris,,OIF, +OIF:SA:4:79,1,"Institut Grignon",48.752654,2.396606,,1,,Europe/Paris,,OIF, +OIF:SA:4:80,1,"Lycée",48.75749,2.404306,,1,,Europe/Paris,,OIF, +OIF:SA:4:82,1,"Marmontel",48.755235,2.393924,,1,,Europe/Paris,,OIF, +OIF:SA:4:84,1,"Pavé Grignon",48.756357,2.398343,,1,,Europe/Paris,,OIF, +OIF:SA:4:86,1,"Spinoza",48.755355,2.404881,,1,,Europe/Paris,,OIF, +OIF:SA:4:88,1,"Stade A. Mimoun",48.752752,2.398951,,1,,Europe/Paris,,OIF, +OIF:SA:4:91,1,"Centre Commercial Pont de Vitry",48.795263,2.41717,,1,,Europe/Paris,,OIF, +OIF:SA:4:92,1,"Rue des Fusillés",48.787713,2.417478,,1,,Europe/Paris,,OIF, +OIF:SA:4:94,1,"Charles Heller",48.795731,2.40962,,1,,Europe/Paris,,OIF, +OIF:SA:4:96,1,"Eugène Hénaff",48.792113,2.410588,,1,,Europe/Paris,,OIF, +OIF:SA:4:98,1,"Jules Guesde",48.778287,2.414294,,1,,Europe/Paris,,OIF, +OIF:SA:50:14396,1,"Mortemai",48.849418,1.898741,,1,,Europe/Paris,,OIF, +OIF:SA:50:14479,1,"Centre",48.944729,1.716631,,1,,Europe/Paris,,OIF, +OIF:SA:50:14481,1,"Église",48.910974,1.732647,,1,,Europe/Paris,,OIF, +OIF:SA:50:14483,1,"Centre",48.89061,1.740053,,1,,Europe/Paris,,OIF, +OIF:SA:50:14487,1,"Rue des Vignes",48.842895,1.815631,,1,,Europe/Paris,,OIF, +OIF:SA:50:14489,1,"Centre",48.840934,1.818531,,1,,Europe/Paris,,OIF, +OIF:SA:50:14491,1,"Rond-Point / Route de Marcq",48.839502,1.823011,,1,,Europe/Paris,,OIF, +OIF:SA:50:14495,1,"Maison des Bois",48.796663,1.943517,,1,,Europe/Paris,,OIF, +OIF:SA:50:14499,1,"Pierre Brossolette",48.820196,1.952798,,1,,Europe/Paris,,OIF, +OIF:SA:50:14501,1,"Commissariat",48.818537,1.962249,,1,,Europe/Paris,,OIF, +OIF:SA:50:14503,1,"Europe",48.818472,1.965822,,1,,Europe/Paris,,OIF, +OIF:SA:50:14516,1,"Ebisoires",48.830071,1.954556,,1,,Europe/Paris,,OIF, +OIF:SA:50:14518,1,"Collège Guillaume Apollinaire",48.819738,1.941695,,1,,Europe/Paris,,OIF, +OIF:SA:50:14522,1,"Avenue du Général de Gaulle",48.823105,1.960154,,1,,Europe/Paris,,OIF, +OIF:SA:50:14529,1,"Val de Mauldre",48.769914,1.894986,,1,,Europe/Paris,,OIF, +OIF:SA:50:14540,1,"Domaine de la Vallée",48.971476,1.717026,,1,,Europe/Paris,,OIF, +OIF:SA:50:14542,1,"Mateau",48.974919,1.717716,,1,,Europe/Paris,,OIF, +OIF:SA:50:14545,1,"Usine Peugeot",48.938629,2.050687,,1,,Europe/Paris,,OIF, +OIF:SA:50:14567,1,"8 Mai 1945",48.824786,1.94441,,1,,Europe/Paris,,OIF, +OIF:SA:50:14572,1,"Grignon / Village",48.845582,1.94301,,1,,Europe/Paris,,OIF, +OIF:SA:50:14573,1,"Château de Grignon / Campus",48.847754,1.939548,,1,,Europe/Paris,,OIF, +OIF:SA:50:14574,1,"Bio Climatologie",48.840049,1.947,,1,,Europe/Paris,,OIF, +OIF:SA:50:14575,1,"Marie Guérin",48.829887,1.983819,,1,,Europe/Paris,,OIF, +OIF:SA:50:14577,1,"Graviers",48.81301,2.035151,,1,,Europe/Paris,,OIF, +OIF:SA:50:14584,1,"Cimetière des Clayes",48.821256,1.97239,,1,,Europe/Paris,,OIF, +OIF:SA:50:14586,1,"Collège Rameau",48.803074,2.145684,,1,,Europe/Paris,,OIF, +OIF:SA:50:14587,1,"Saint-Symphorien",48.805083,2.146418,,1,,Europe/Paris,,OIF, +OIF:SA:50:14589,1,"Reine Gare Rive Droite",48.808781,2.135179,,1,,Europe/Paris,,OIF, +OIF:SA:50:14612,1,"L'Aunay / Bertin",48.766297,1.823613,,1,,Europe/Paris,,OIF, +OIF:SA:50:14613,1,"Mazas",48.771702,1.815911,,1,,Europe/Paris,,OIF, +OIF:SA:50:14614,1,"Chateluis",48.772499,1.813143,,1,,Europe/Paris,,OIF, +OIF:SA:50:14617,1,"Saint-Blaise",48.783891,1.812144,,1,,Europe/Paris,,OIF, +OIF:SA:50:14619,1,"Bois de Mareil",48.778695,1.85424,,1,,Europe/Paris,,OIF, +OIF:SA:50:14620,1,"Aft / Iftim / Chep",48.770478,1.877759,,1,,Europe/Paris,,OIF, +OIF:SA:50:14622,1,"Le Paradou",48.782876,1.893991,,1,,Europe/Paris,,OIF, +OIF:SA:50:14624,1,"Pont Censier",48.788704,1.910986,,1,,Europe/Paris,,OIF, +OIF:SA:50:14626,1,"Hameau du Launay",48.786884,1.943659,,1,,Europe/Paris,,OIF, +OIF:SA:50:14628,1,"Église du Village",48.783663,1.959379,,1,,Europe/Paris,,OIF, +OIF:SA:50:14632,1,"Collège Youri Gagarine",48.774039,1.980324,,1,,Europe/Paris,,OIF, +OIF:SA:50:14647,1,"Paul Éluard",48.814926,2.050335,,1,,Europe/Paris,,OIF, +OIF:SA:50:14648,1,"Buffon",48.812031,2.04997,,1,,Europe/Paris,,OIF, +OIF:SA:50:14649,1,"Lurçat",48.810803,2.049466,,1,,Europe/Paris,,OIF, +OIF:SA:50:14650,1,"Ravel",48.807386,2.047274,,1,,Europe/Paris,,OIF, +OIF:SA:50:14651,1,"Anatole France",48.80807,2.0438,,1,,Europe/Paris,,OIF, +OIF:SA:50:14656,1,"Louis Jouvet",48.806036,2.015074,,1,,Europe/Paris,,OIF, +OIF:SA:50:14658,1,"Hoche",48.805234,2.01765,,1,,Europe/Paris,,OIF, +OIF:SA:50:14660,1,"Vallée Penaut",48.876203,1.760126,,1,,Europe/Paris,,OIF, +OIF:SA:50:14661,1,"Place Bieuville",48.881114,1.764664,,1,,Europe/Paris,,OIF, +OIF:SA:50:14663,1,"Ergal Chambord",48.786081,1.928105,,1,,Europe/Paris,,OIF, +OIF:SA:50:14665,1,"Lamartine",48.810195,2.041706,,1,,Europe/Paris,,OIF, +OIF:SA:50:14669,1,"Villeroy",48.834127,1.900483,,1,,Europe/Paris,,OIF, +OIF:SA:50:14670,1,"Thiverval / Calvaire",48.848081,1.916844,,1,,Europe/Paris,,OIF, +OIF:SA:50:14671,1,"Mille Feuilles",48.823845,1.954132,,1,,Europe/Paris,,OIF, +OIF:SA:50:14672,1,"Centre / Jonchère",48.815265,1.945526,,1,,Europe/Paris,,OIF, +OIF:SA:50:14674,1,"La Coudraie",48.843764,1.836048,,1,,Europe/Paris,,OIF, +OIF:SA:50:14675,1,"Rue de Maule",48.866319,1.7971,,1,,Europe/Paris,,OIF, +OIF:SA:50:14677,1,"Château d'Eau",48.796587,1.947939,,1,,Europe/Paris,,OIF, +OIF:SA:50:14678,1,"Le Mail",48.819657,1.956967,,1,,Europe/Paris,,OIF, +OIF:SA:50:14679,1,"Grignon Arrivée",48.83151,1.943988,,1,,Europe/Paris,,OIF, +OIF:SA:50:14680,1,"Pacaudière",48.810449,1.882638,,1,,Europe/Paris,,OIF, +OIF:SA:50:14681,1,"Gendarmerie",48.804898,1.894422,,1,,Europe/Paris,,OIF, +OIF:SA:50:14682,1,"Clos Marquet",48.914446,1.732238,,1,,Europe/Paris,,OIF, +OIF:SA:50:14704,1,"Pont Barrât",48.861132,1.87368,,1,,Europe/Paris,,OIF, +OIF:SA:50:14705,1,"La Bruyère",48.820736,1.908062,,1,,Europe/Paris,,OIF, +OIF:SA:50:14707,1,"Le Gué",48.759365,1.869844,,1,,Europe/Paris,,OIF, +OIF:SA:50:14708,1,"Mauldrette",48.767099,1.894384,,1,,Europe/Paris,,OIF, +OIF:SA:50:14710,1,"Ferme de la Richarderie",48.792663,1.919932,,1,,Europe/Paris,,OIF, +OIF:SA:50:14713,1,"Cheval Mort",48.780249,1.84629,,1,,Europe/Paris,,OIF, +OIF:SA:50:14720,1,"Cheval Blanc",48.798918,1.909609,,1,,Europe/Paris,,OIF, +OIF:SA:50:14721,1,"Mairie",48.801386,1.903419,,1,,Europe/Paris,,OIF, +OIF:SA:50:14729,1,"Coquelicots",48.830042,1.989141,,1,,Europe/Paris,,OIF, +OIF:SA:50:14735,1,"Jean Jaurès",48.799359,2.041149,,1,,Europe/Paris,,OIF, +OIF:SA:50:14739,1,"Gorges Méliès / Croix Bonnet",48.801596,2.006904,,1,,Europe/Paris,,OIF, +OIF:SA:50:14743,1,"Laënnec",48.799539,2.018794,,1,,Europe/Paris,,OIF, +OIF:SA:50:14745,1,"Square de Camargue",48.823099,2.000213,,1,,Europe/Paris,,OIF, +OIF:SA:50:14746,1,"Collège Léon Blum",48.830941,1.998569,,1,,Europe/Paris,,OIF, +OIF:SA:50:14749,1,"École Gérard Philipe",48.833797,2.010599,,1,,Europe/Paris,,OIF, +OIF:SA:50:14750,1,"École Jules Gillet",48.833733,2.010409,,1,,Europe/Paris,,OIF, +OIF:SA:50:14758,1,"Reinette",48.811097,2.046763,,1,,Europe/Paris,,OIF, +OIF:SA:50:14787,1,"Église",48.777931,1.876717,,1,,Europe/Paris,,OIF, +OIF:SA:50:14788,1,"Lycée Jean Vilar",48.823667,1.95755,,1,,Europe/Paris,,OIF, +OIF:SA:50:14821,1,"Jardins du Cœur",48.834504,2.017967,,1,,Europe/Paris,,OIF, +OIF:SA:50:14834,1,"Place Mancest",48.814249,1.903744,,1,,Europe/Paris,,OIF, +OIF:SA:50:14839,1,"Marcellin Berthelot",48.830591,1.951482,,1,,Europe/Paris,,OIF, +OIF:SA:50:14842,1,"Moissons-Fenaisons",48.82106,1.930143,,1,,Europe/Paris,,OIF, +OIF:SA:50:14845,1,"Bretéchelle",48.816875,1.967004,,1,,Europe/Paris,,OIF, +OIF:SA:50:14849,1,"Parmentier",48.819732,1.967964,,1,,Europe/Paris,,OIF, +OIF:SA:50:14851,1,"Chennevières",48.794007,1.908561,,1,,Europe/Paris,,OIF, +OIF:SA:50:14855,1,"Rosiers",48.81688,1.898179,,1,,Europe/Paris,,OIF, +OIF:SA:50:14858,1,"Côte à Soûlas",48.842717,1.938436,,1,,Europe/Paris,,OIF, +OIF:SA:50:14870,1,"César Franck",48.810145,2.054233,,1,,Europe/Paris,,OIF, +OIF:SA:50:14874,1,"Demènerie",48.811405,2.040474,,1,,Europe/Paris,,OIF, +OIF:SA:50:14875,1,"Le Levant",48.808545,2.050642,,1,,Europe/Paris,,OIF, +OIF:SA:50:14876,1,"Olivier Messiaen",48.807284,2.049628,,1,,Europe/Paris,,OIF, +OIF:SA:50:14879,1,"La Cavée",48.834817,2.012376,,1,,Europe/Paris,,OIF, +OIF:SA:50:14892,1,"Ferme de Gally",48.817587,2.080092,,1,,Europe/Paris,,OIF, +OIF:SA:50:14900,1,"Alpha Park",48.827522,1.971468,,1,,Europe/Paris,,OIF, +OIF:SA:50:14901,1,"Place Gourmande",48.828387,1.975294,,1,,Europe/Paris,,OIF, +OIF:SA:50:14903,1,"Vallée des Entrepreneurs",48.827578,1.976552,,1,,Europe/Paris,,OIF, +OIF:SA:50:14905,1,"Vignes",48.824115,1.984866,,1,,Europe/Paris,,OIF, +OIF:SA:50:14907,1,"Parc Saint-Cyr",48.806946,2.051066,,1,,Europe/Paris,,OIF, +OIF:SA:50:14909,1,"Henri Barbusse",48.827335,1.959102,,1,,Europe/Paris,,OIF, +OIF:SA:50:14911,1,"Les Quadrants",48.78892,2.048656,,1,,Europe/Paris,,OIF, +OIF:SA:50:14920,1,"Châtaigneraie",48.80698,1.947269,,1,,Europe/Paris,,OIF, +OIF:SA:50:5528,1,"Berry",48.850943,1.895759,,1,,Europe/Paris,,OIF, +OIF:SA:50:5530,1,"Blanc Soleil",48.858721,1.90787,,1,,Europe/Paris,,OIF, +OIF:SA:50:5532,1,"Centre Commercial du Val des 4 Pignons",48.856299,1.905418,,1,,Europe/Paris,,OIF, +OIF:SA:50:5544,1,"Maréchal Leclerc",48.850946,1.898885,,1,,Europe/Paris,,OIF, +OIF:SA:50:5546,1,"De Gaulle",48.850358,1.899189,,1,,Europe/Paris,,OIF, +OIF:SA:50:5548,1,"Acacias",48.848952,1.886005,,1,,Europe/Paris,,OIF, +OIF:SA:50:5550,1,"Les Chênes",48.847394,1.884091,,1,,Europe/Paris,,OIF, +OIF:SA:50:5552,1,"Les Écoles",48.85694,1.902437,,1,,Europe/Paris,,OIF, +OIF:SA:50:5554,1,"Marronniers",48.843669,1.885404,,1,,Europe/Paris,,OIF, +OIF:SA:50:5556,1,"Les Saules",48.845942,1.887529,,1,,Europe/Paris,,OIF, +OIF:SA:50:5568,1,"Navarre",48.853257,1.899103,,1,,Europe/Paris,,OIF, +OIF:SA:50:5570,1,"Estendard",48.851451,1.877989,,1,,Europe/Paris,,OIF, +OIF:SA:50:5593,1,"Centre Commercial",48.799848,2.037527,,1,,Europe/Paris,,OIF, +OIF:SA:50:5605,1,"Falaize / Paix",48.804292,2.037045,,1,,Europe/Paris,,OIF, +OIF:SA:50:5608,1,"Hirbec",48.804965,2.034762,,1,,Europe/Paris,,OIF, +OIF:SA:50:5623,1,"Perdreau",48.803601,2.018613,,1,,Europe/Paris,,OIF, +OIF:SA:50:5625,1,"Place de la République",48.801575,2.039714,,1,,Europe/Paris,,OIF, +OIF:SA:50:5629,1,"Turpault",48.801823,2.032719,,1,,Europe/Paris,,OIF, +OIF:SA:50:5919,1,"Avre",48.825016,1.973425,,1,,Europe/Paris,,OIF, +OIF:SA:50:5923,1,"Charbonnier",48.820881,1.994633,,1,,Europe/Paris,,OIF, +OIF:SA:50:5931,1,"Croix Blanche",48.828207,1.991896,,1,,Europe/Paris,,OIF, +OIF:SA:50:5941,1,"Grainetier",48.821021,1.988718,,1,,Europe/Paris,,OIF, +OIF:SA:50:5943,1,"Gros Caillou",48.826292,1.979535,,1,,Europe/Paris,,OIF, +OIF:SA:50:5947,1,"Jean Jaurès",48.827726,1.982377,,1,,Europe/Paris,,OIF, +OIF:SA:50:5951,1,"L'Enclos",48.821492,1.97769,,1,,Europe/Paris,,OIF, +OIF:SA:50:5953,1,"Les Dames",48.825976,1.972906,,1,,Europe/Paris,,OIF, +OIF:SA:50:5955,1,"Massenet",48.826599,1.987265,,1,,Europe/Paris,,OIF, +OIF:SA:50:5957,1,"Place Mandela",48.822416,1.972845,,1,,Europe/Paris,,OIF, +OIF:SA:50:5959,1,"Pointe à l'Ange",48.829265,1.993911,,1,,Europe/Paris,,OIF, +OIF:SA:50:5961,1,"Pont de Biais",48.820027,1.999192,,1,,Europe/Paris,,OIF, +OIF:SA:50:5967,1,"Moulin",48.822031,1.980762,,1,,Europe/Paris,,OIF, +OIF:SA:50:6024,1,"Bruxelles / la Clé Saint-Pierre",48.789968,1.972277,,1,,Europe/Paris,,OIF, +OIF:SA:50:6029,1,"Collège la Clé Saint-Pierre",48.79235,1.969342,,1,,Europe/Paris,,OIF, +OIF:SA:50:6157,1,"Zola",48.808303,2.047085,,1,,Europe/Paris,,OIF, +OIF:SA:50:6162,1,"Mairie",48.811195,2.044626,,1,,Europe/Paris,,OIF, +OIF:SA:50:6164,1,"Jules Guesde",48.816427,2.046597,,1,,Europe/Paris,,OIF, +OIF:SA:50:6166,1,"La Râtelle",48.816129,2.049838,,1,,Europe/Paris,,OIF, +OIF:SA:50:6168,1,"Montaigne",48.813518,2.051567,,1,,Europe/Paris,,OIF, +OIF:SA:50:6173,1,"Pompidou",48.809434,2.042813,,1,,Europe/Paris,,OIF, +OIF:SA:50:6174,1,"4 Arpents",48.814662,2.045369,,1,,Europe/Paris,,OIF, +OIF:SA:50:6176,1,"Schweitzer",48.811435,2.050932,,1,,Europe/Paris,,OIF, +OIF:SA:50:6178,1,"Victor Hugo",48.813653,2.044245,,1,,Europe/Paris,,OIF, +OIF:SA:50:6488,1,"Ergal / Centre",48.784249,1.927147,,1,,Europe/Paris,,OIF, +OIF:SA:50:6494,1,"Ergal / Rond-Point",48.785413,1.932565,,1,,Europe/Paris,,OIF, +OIF:SA:50:6499,1,"Église de Jouars",48.7889,1.899463,,1,,Europe/Paris,,OIF, +OIF:SA:50:6505,1,"La Dauberie",48.775572,1.893775,,1,,Europe/Paris,,OIF, +OIF:SA:50:6507,1,"Gouttière",48.808526,1.900842,,1,,Europe/Paris,,OIF, +OIF:SA:50:6511,1,"Place Foch",48.803007,1.900752,,1,,Europe/Paris,,OIF, +OIF:SA:50:6513,1,"Rue Andin",48.803861,1.897023,,1,,Europe/Paris,,OIF, +OIF:SA:50:6515,1,"Collège Saint-Simon",48.804681,1.889206,,1,,Europe/Paris,,OIF, +OIF:SA:50:6521,1,"Richarderie",48.787552,1.918177,,1,,Europe/Paris,,OIF, +OIF:SA:50:6523,1,"Saint-Louis",48.804854,1.901784,,1,,Europe/Paris,,OIF, +OIF:SA:50:7192,1,"Château des Mesnuls",48.756981,1.836341,,1,,Europe/Paris,,OIF, +OIF:SA:50:7251,1,"Sycomores",48.776627,1.812836,,1,,Europe/Paris,,OIF, +OIF:SA:50:7369,1,"3 Communes",48.811996,1.89607,,1,,Europe/Paris,,OIF, +OIF:SA:50:7371,1,"3 Marchés",48.815079,1.900882,,1,,Europe/Paris,,OIF, +OIF:SA:50:7375,1,"Rosiers",48.817747,1.898679,,1,,Europe/Paris,,OIF, +OIF:SA:50:7382,1,"Villancy",48.808363,1.909028,,1,,Europe/Paris,,OIF, +OIF:SA:50:7412,1,"Bartholomé",48.820458,1.924894,,1,,Europe/Paris,,OIF, +OIF:SA:50:7418,1,"Centre Commercial Brigitte",48.827624,1.949241,,1,,Europe/Paris,,OIF, +OIF:SA:50:7427,1,"Collège Blaise Pascal",48.825238,1.952774,,1,,Europe/Paris,,OIF, +OIF:SA:50:7431,1,"Decaux",48.799156,1.948886,,1,,Europe/Paris,,OIF, +OIF:SA:50:7435,1,"Église / Mairie",48.816935,1.947766,,1,,Europe/Paris,,OIF, +OIF:SA:50:7437,1,"François Mitterrand",48.81887,1.959742,,1,,Europe/Paris,,OIF, +OIF:SA:50:7443,1,"Grand Plaisir",48.829924,1.959451,,1,,Europe/Paris,,OIF, +OIF:SA:50:7451,1,"Jean Jacques Rousseau",48.813947,1.946353,,1,,Europe/Paris,,OIF, +OIF:SA:50:7453,1,"Léon Blum",48.823078,1.963135,,1,,Europe/Paris,,OIF, +OIF:SA:50:7459,1,"La Chaîne",48.805887,1.953925,,1,,Europe/Paris,,OIF, +OIF:SA:50:7463,1,"Lamartine",48.81847,1.917866,,1,,Europe/Paris,,OIF, +OIF:SA:50:7465,1,"Le Buisson",48.805932,1.959762,,1,,Europe/Paris,,OIF, +OIF:SA:50:7467,1,"Le Clos",48.820505,1.933414,,1,,Europe/Paris,,OIF, +OIF:SA:50:7477,1,"Marie Hillion",48.828601,1.943622,,1,,Europe/Paris,,OIF, +OIF:SA:50:7480,1,"Mansart",48.823649,1.940944,,1,,Europe/Paris,,OIF, +OIF:SA:50:7482,1,"Mare aux Saules",48.792793,1.962966,,1,,Europe/Paris,,OIF, +OIF:SA:50:7484,1,"Michel Ange",48.821354,1.926799,,1,,Europe/Paris,,OIF, +OIF:SA:50:7508,1,"Sainte-Apolline",48.796933,1.954035,,1,,Europe/Paris,,OIF, +OIF:SA:50:7510,1,"Boissière",48.81988,1.92155,,1,,Europe/Paris,,OIF, +OIF:SA:50:7512,1,"Valibout",48.821798,1.952044,,1,,Europe/Paris,,OIF, +OIF:SA:50:7686,1,"Chatron",48.821791,1.902901,,1,,Europe/Paris,,OIF, +OIF:SA:50:7794,1,"Mairie",48.838521,1.8352,,1,,Europe/Paris,,OIF, +OIF:SA:50:7806,1,"Grignon RD 119",48.844719,1.945835,,1,,Europe/Paris,,OIF, +OIF:SA:50:7808,1,"Rond-Point de Grignon",48.842821,1.944685,,1,,Europe/Paris,,OIF, +OIF:SA:50:7812,1,"Thiverval / Église",48.849555,1.916982,,1,,Europe/Paris,,OIF, +OIF:SA:50:7834,1,"Base de Loisirs / Golf",48.78347,1.993323,,1,,Europe/Paris,,OIF, +OIF:SA:50:7915,1,"Piscine à Vagues",48.780585,2.002801,,1,,Europe/Paris,,OIF, +OIF:SA:50:7929,1,"Pissaloup",48.795587,1.981583,,1,,Europe/Paris,,OIF, +OIF:SA:50:8174,1,"Matelots",48.803322,2.106069,,1,,Europe/Paris,,OIF, +OIF:SA:50:8223,1,"Anjou",48.829963,2.002428,,1,,Europe/Paris,,OIF, +OIF:SA:50:8228,1,"Dunant",48.82484,1.99754,,1,,Europe/Paris,,OIF, +OIF:SA:50:8230,1,"Grand Parc",48.832966,2.00601,,1,,Europe/Paris,,OIF, +OIF:SA:50:8234,1,"Le Square",48.827152,2.001507,,1,,Europe/Paris,,OIF, +OIF:SA:50:8238,1,"Piscine",48.830456,2.003691,,1,,Europe/Paris,,OIF, +OIF:SA:50:8244,1,"Prieuré",48.832923,2.008365,,1,,Europe/Paris,,OIF, +OIF:SA:50:8246,1,"Pyrénées",48.824229,1.999253,,1,,Europe/Paris,,OIF, +OIF:SA:50:8248,1,"Saintonge",48.830131,1.998295,,1,,Europe/Paris,,OIF, +OIF:SA:50:8257,1,"Châtaigneraie",48.81336,1.883436,,1,,Europe/Paris,,OIF, +OIF:SA:50:8273,1,"Mairie",48.819519,1.891337,,1,,Europe/Paris,,OIF, +OIF:SA:50:8279,1,"Vierge",48.818118,1.885613,,1,,Europe/Paris,,OIF, +OIF:SA:51:10,1,"Boulevard Victor Bordier",48.992717,2.198098,,1,,Europe/Paris,,OIF, +OIF:SA:51:100,1,"Place Charles de Gaulle",48.983988,2.227614,,1,,Europe/Paris,,OIF, +OIF:SA:51:101,1,"Bucherets",48.981308,2.233101,,1,,Europe/Paris,,OIF, +OIF:SA:51:102,1,"Cadet de Vaux",48.985234,2.2365,,1,,Europe/Paris,,OIF, +OIF:SA:51:104,1,"Orme Saint-Edme",48.988331,2.237552,,1,,Europe/Paris,,OIF, +OIF:SA:51:105,1,"Mare des Noues",48.991288,2.238721,,1,,Europe/Paris,,OIF, +OIF:SA:51:108,1,"Mairie",48.984882,2.229667,,1,,Europe/Paris,,OIF, +OIF:SA:51:109,1,"Marais",48.989062,2.220912,,1,,Europe/Paris,,OIF, +OIF:SA:51:110,1,"Marche de Franconville",48.985788,2.22817,,1,,Europe/Paris,,OIF, +OIF:SA:51:114,1,"Jeanne d'Arc",48.989043,2.229535,,1,,Europe/Paris,,OIF, +OIF:SA:51:117,1,"Rue Michelet",48.993667,2.152859,,1,,Europe/Paris,,OIF, +OIF:SA:51:119,1,"Les Naquettes",48.995997,2.151287,,1,,Europe/Paris,,OIF, +OIF:SA:51:12,1,"Ikéa",48.987583,2.212033,,1,,Europe/Paris,,OIF, +OIF:SA:51:121,1,"Croix Macaire",48.998927,2.151912,,1,,Europe/Paris,,OIF, +OIF:SA:51:123,1,"Bol d'Air",49.004667,2.128322,,1,,Europe/Paris,,OIF, +OIF:SA:51:125,1,"Boulevard de l'Émissaire",49.007262,2.127164,,1,,Europe/Paris,,OIF, +OIF:SA:51:133,1,"Les Chênes",48.999842,2.153828,,1,,Europe/Paris,,OIF, +OIF:SA:51:135,1,"Rue de Pontoise",48.997362,2.162693,,1,,Europe/Paris,,OIF, +OIF:SA:51:137,1,"Rue Jean Leclaire",48.994393,2.163782,,1,,Europe/Paris,,OIF, +OIF:SA:51:14,1,"La Source",48.986563,2.220658,,1,,Europe/Paris,,OIF, +OIF:SA:51:141,1,"Les Pierges",48.993223,2.150157,,1,,Europe/Paris,,OIF, +OIF:SA:51:143,1,"Bournouviers",48.993986,2.141762,,1,,Europe/Paris,,OIF, +OIF:SA:51:145,1,"Foch",48.991703,2.147836,,1,,Europe/Paris,,OIF, +OIF:SA:51:147,1,"Général Leclerc",48.988608,2.156318,,1,,Europe/Paris,,OIF, +OIF:SA:51:149,1,"Lycée Montesquieu / Collège Duhamel",48.999722,2.147153,,1,,Europe/Paris,,OIF, +OIF:SA:51:151,1,"Chardonnerets",48.999275,2.159334,,1,,Europe/Paris,,OIF, +OIF:SA:51:153,1,"Collège Jean Vilar",48.995678,2.154232,,1,,Europe/Paris,,OIF, +OIF:SA:51:155,1,"Alexandre Ribot",48.97386,2.252487,,1,,Europe/Paris,,OIF, +OIF:SA:51:157,1,"Boulevard Gambetta",48.975008,2.249325,,1,,Europe/Paris,,OIF, +OIF:SA:51:159,1,"De Lattre",48.980701,2.237983,,1,,Europe/Paris,,OIF, +OIF:SA:51:165,1,"Place du Marché",49.010242,2.195422,,1,,Europe/Paris,,OIF, +OIF:SA:51:166,1,"Carrefour Delcroix",49.01227,2.192766,,1,,Europe/Paris,,OIF, +OIF:SA:51:169,1,"Cité Cadoux",49.014216,2.182528,,1,,Europe/Paris,,OIF, +OIF:SA:51:17,1,"Église",48.983331,2.229254,,1,,Europe/Paris,,OIF, +OIF:SA:51:170,1,"Zone Industrielle",49.015693,2.178056,,1,,Europe/Paris,,OIF, +OIF:SA:51:171,1,"Rue Denis Papin",49.017957,2.178022,,1,,Europe/Paris,,OIF, +OIF:SA:51:172,1,"Résidence du Stade",49.018726,2.181599,,1,,Europe/Paris,,OIF, +OIF:SA:51:173,1,"Rue Curnonsky",49.017313,2.187423,,1,,Europe/Paris,,OIF, +OIF:SA:51:174,1,"Rond-Point de la Chasse",49.015782,2.191363,,1,,Europe/Paris,,OIF, +OIF:SA:51:175,1,"Avenue des Marronniers",49.018077,2.194239,,1,,Europe/Paris,,OIF, +OIF:SA:51:176,1,"Barrachin",49.02154,2.189707,,1,,Europe/Paris,,OIF, +OIF:SA:51:177,1,"Rue de Saint-Prix",49.02076,2.198658,,1,,Europe/Paris,,OIF, +OIF:SA:51:178,1,"Rue Nungesser et Coli",49.019701,2.199795,,1,,Europe/Paris,,OIF, +OIF:SA:51:179,1,"Cité Jardin",49.016391,2.197058,,1,,Europe/Paris,,OIF, +OIF:SA:51:18,1,"Clos Bertin",48.9831,2.231473,,1,,Europe/Paris,,OIF, +OIF:SA:51:180,1,"Rue Anatole France",49.013458,2.194703,,1,,Europe/Paris,,OIF, +OIF:SA:51:181,1,"Résidence Jules César",49.009928,2.19545,,1,,Europe/Paris,,OIF, +OIF:SA:51:184,1,"Pauline Kergomard",49.027223,2.217472,,1,,Europe/Paris,,OIF, +OIF:SA:51:185,1,"Docteur Roux",49.024992,2.214491,,1,,Europe/Paris,,OIF, +OIF:SA:51:186,1,"Portes de Taverny",49.015555,2.222977,,1,,Europe/Paris,,OIF, +OIF:SA:51:187,1,"Les Coutures",49.021087,2.219235,,1,,Europe/Paris,,OIF, +OIF:SA:51:189,1,"Rue Pierre de Coubertin",49.019225,2.216862,,1,,Europe/Paris,,OIF, +OIF:SA:51:19,1,"Maison Bleue",48.980182,2.235295,,1,,Europe/Paris,,OIF, +OIF:SA:51:191,1,"Croix Rouge",49.018893,2.2129,,1,,Europe/Paris,,OIF, +OIF:SA:51:193,1,"Place de Verdun",49.016396,2.209545,,1,,Europe/Paris,,OIF, +OIF:SA:51:195,1,"Sainte-Honorine",49.013215,2.205721,,1,,Europe/Paris,,OIF, +OIF:SA:51:197,1,"Rue des Écoles",49.010073,2.209035,,1,,Europe/Paris,,OIF, +OIF:SA:51:199,1,"Les Primevères",49.00778,2.207128,,1,,Europe/Paris,,OIF, +OIF:SA:51:201,1,"Rue Xavier Bichat",49.023282,2.221034,,1,,Europe/Paris,,OIF, +OIF:SA:51:202,1,"Les Marronniers",48.980157,2.254613,,1,,Europe/Paris,,OIF, +OIF:SA:51:204,1,"La Tour",48.996261,2.255114,,1,,Europe/Paris,,OIF, +OIF:SA:51:206,1,"Claude Debussy",48.99598,2.251741,,1,,Europe/Paris,,OIF, +OIF:SA:51:208,1,"Les Espérances",48.991223,2.247488,,1,,Europe/Paris,,OIF, +OIF:SA:51:209,1,"L'Orme / Saint-Edme",48.989723,2.248112,,1,,Europe/Paris,,OIF, +OIF:SA:51:21,1,"Collège Jean Moulin",48.978037,2.242221,,1,,Europe/Paris,,OIF, +OIF:SA:51:211,1,"Président Georges Pompidou",48.988326,2.248702,,1,,Europe/Paris,,OIF, +OIF:SA:51:213,1,"Les Carreaux",48.983858,2.246545,,1,,Europe/Paris,,OIF, +OIF:SA:51:215,1,"La Commanderie",48.981082,2.248298,,1,,Europe/Paris,,OIF, +OIF:SA:51:217,1,"Lycée Van Gogh",48.982679,2.256064,,1,,Europe/Paris,,OIF, +OIF:SA:51:223,1,"Clinique Claude Bernard",48.981421,2.264483,,1,,Europe/Paris,,OIF, +OIF:SA:51:227,1,"Le Foirail",48.988934,2.250373,,1,,Europe/Paris,,OIF, +OIF:SA:51:228,1,"Square du 8 Mai 1945",48.989674,2.254837,,1,,Europe/Paris,,OIF, +OIF:SA:51:229,1,"Mairie",48.991109,2.257662,,1,,Europe/Paris,,OIF, +OIF:SA:51:233,1,"Saint-Exupéry",48.994361,2.250139,,1,,Europe/Paris,,OIF, +OIF:SA:51:235,1,"Thibault Chabrand / Aristide Briand",48.976141,2.197767,,1,,Europe/Paris,,OIF, +OIF:SA:51:236,1,"Lycée Professionnel le Corbusier",48.97852,2.199304,,1,,Europe/Paris,,OIF, +OIF:SA:51:239,1,"Louis Gonse / Commandant Kieffer",48.977378,2.206904,,1,,Europe/Paris,,OIF, +OIF:SA:51:240,1,"Jacques Daguerre",48.972712,2.204698,,1,,Europe/Paris,,OIF, +OIF:SA:51:241,1,"Lamartine",48.970559,2.204608,,1,,Europe/Paris,,OIF, +OIF:SA:51:242,1,"République",48.968117,2.206265,,1,,Europe/Paris,,OIF, +OIF:SA:51:245,1,"Le Village",49.003886,2.353016,,1,,Europe/Paris,,OIF, +OIF:SA:51:247,1,"Zone Industrielle les Perruches",49.006888,2.348803,,1,,Europe/Paris,,OIF, +OIF:SA:51:249,1,"Mairie",49.012509,2.342957,,1,,Europe/Paris,,OIF, +OIF:SA:51:25,1,"Mairie",48.971709,2.257606,,1,,Europe/Paris,,OIF, +OIF:SA:51:250,1,"Rue des Marais",49.003679,2.355966,,1,,Europe/Paris,,OIF, +OIF:SA:51:252,1,"Rue Pasteur / Rue des Écoles",49.000646,2.357345,,1,,Europe/Paris,,OIF, +OIF:SA:51:254,1,"Rue de Beaudemont",48.999504,2.360588,,1,,Europe/Paris,,OIF, +OIF:SA:51:256,1,"Mothe Hugo",49.000446,2.365519,,1,,Europe/Paris,,OIF, +OIF:SA:51:258,1,"Rue de la Plante aux Flamands",48.997575,2.367306,,1,,Europe/Paris,,OIF, +OIF:SA:51:260,1,"Boulevard des Ambassadeurs",48.995545,2.170832,,1,,Europe/Paris,,OIF, +OIF:SA:51:262,1,"Chemin des Châtaigniers",48.997141,2.175252,,1,,Europe/Paris,,OIF, +OIF:SA:51:264,1,"Rue du 18 Juin",48.989577,2.25733,,1,,Europe/Paris,,OIF, +OIF:SA:51:266,1,"Rue du Stand",48.996071,2.253216,,1,,Europe/Paris,,OIF, +OIF:SA:51:269,1,"Collège Landowska",49.011424,2.236074,,1,,Europe/Paris,,OIF, +OIF:SA:51:270,1,"Résidence les Diablots",49.008046,2.242145,,1,,Europe/Paris,,OIF, +OIF:SA:51:272,1,"Rue de Verdun",49.003885,2.2419,,1,,Europe/Paris,,OIF, +OIF:SA:51:274,1,"Clinique Saint-Nicolas",48.999597,2.239805,,1,,Europe/Paris,,OIF, +OIF:SA:51:276,1,"Rue Charles de Gaulle",49.000609,2.235651,,1,,Europe/Paris,,OIF, +OIF:SA:51:280,1,"Avenue des Tilleuls",49.015533,2.238047,,1,,Europe/Paris,,OIF, +OIF:SA:51:281,1,"Zone Industrielle",49.001708,2.176815,,1,,Europe/Paris,,OIF, +OIF:SA:51:283,1,"Avenue de la Libération",49.00407,2.189586,,1,,Europe/Paris,,OIF, +OIF:SA:51:286,1,"Avenue Salvador Allende",49.01144,2.214359,,1,,Europe/Paris,,OIF, +OIF:SA:51:288,1,"Les Sarments",49.021335,2.224556,,1,,Europe/Paris,,OIF, +OIF:SA:51:290,1,"Résidence des Gaudins",49.030552,2.217464,,1,,Europe/Paris,,OIF, +OIF:SA:51:295,1,"Brosses et Malais",49.043337,2.206267,,1,,Europe/Paris,,OIF, +OIF:SA:51:299,1,"Sognolles",49.051483,2.198207,,1,,Europe/Paris,,OIF, +OIF:SA:51:30,1,"Mazagran",48.962682,2.260012,,1,,Europe/Paris,,OIF, +OIF:SA:51:307,1,"Lycée Jean Monnet",48.99129,2.215684,,1,,Europe/Paris,,OIF, +OIF:SA:51:309,1,"Quai des Marques",48.988397,2.208099,,1,,Europe/Paris,,OIF, +OIF:SA:51:310,1,"Mairie",49.054304,2.267993,,1,,Europe/Paris,,OIF, +OIF:SA:51:311,1,"Mairie",49.054549,2.254133,,1,,Europe/Paris,,OIF, +OIF:SA:51:315,1,"Lycée Louis Jouvet",49.019527,2.20893,,1,,Europe/Paris,,OIF, +OIF:SA:51:317,1,"Les Beauchamps",49.020215,2.201543,,1,,Europe/Paris,,OIF, +OIF:SA:51:319,1,"Carrefour des Chênes",49.023233,2.189012,,1,,Europe/Paris,,OIF, +OIF:SA:51:321,1,"Rue Condorcet",49.02855,2.190343,,1,,Europe/Paris,,OIF, +OIF:SA:51:323,1,"Rue du Chêne Bocquet",49.021375,2.194558,,1,,Europe/Paris,,OIF, +OIF:SA:51:325,1,"Champs Guillaume",48.963392,2.196567,,1,,Europe/Paris,,OIF, +OIF:SA:51:327,1,"Jean Bart",48.961376,2.197766,,1,,Europe/Paris,,OIF, +OIF:SA:51:329,1,"Square Rodin",48.959673,2.197552,,1,,Europe/Paris,,OIF, +OIF:SA:51:335,1,"Alsace",48.965223,2.190699,,1,,Europe/Paris,,OIF, +OIF:SA:51:337,1,"Côte Saint-Rémy / Champs Druets",48.971488,2.184389,,1,,Europe/Paris,,OIF, +OIF:SA:51:338,1,"Professeur Calmette",48.969133,2.184123,,1,,Europe/Paris,,OIF, +OIF:SA:51:339,1,"Maupassant / Charcot",48.965539,2.185062,,1,,Europe/Paris,,OIF, +OIF:SA:51:343,1,"Fauvettes",48.961789,2.190191,,1,,Europe/Paris,,OIF, +OIF:SA:51:345,1,"Cimetière (Parc des Bois-Rochefort)",48.95413,2.184768,,1,,Europe/Paris,,OIF, +OIF:SA:51:349,1,"Rue de la Garenne",48.949255,2.180886,,1,,Europe/Paris,,OIF, +OIF:SA:51:351,1,"Vendanges",48.946413,2.17629,,1,,Europe/Paris,,OIF, +OIF:SA:51:361,1,"Maison des Jeunes et de la Culture",48.944561,2.159658,,1,,Europe/Paris,,OIF, +OIF:SA:51:368,1,"Porte Ouest",49.021992,2.144239,,1,,Europe/Paris,,OIF, +OIF:SA:51:37,1,"Piscine",49.00923,2.239274,,1,,Europe/Paris,,OIF, +OIF:SA:51:372,1,"Patte d'Oie",49.003035,2.177828,,1,,Europe/Paris,,OIF, +OIF:SA:51:374,1,"Rue René Cassin",48.998284,2.186686,,1,,Europe/Paris,,OIF, +OIF:SA:51:376,1,"Montédour",48.993135,2.218677,,1,,Europe/Paris,,OIF, +OIF:SA:51:378,1,"La Garancière",48.990882,2.226846,,1,,Europe/Paris,,OIF, +OIF:SA:51:380,1,"Bel Air",48.986693,2.235364,,1,,Europe/Paris,,OIF, +OIF:SA:51:382,1,"Rue Marcel Pagnol",48.980573,2.245356,,1,,Europe/Paris,,OIF, +OIF:SA:51:384,1,"Conservatoire de Musique",49.017666,2.226559,,1,,Europe/Paris,,OIF, +OIF:SA:51:386,1,"Les Aubines",48.968571,2.240081,,1,,Europe/Paris,,OIF, +OIF:SA:51:388,1,"Rue Touzelin",48.971279,2.25139,,1,,Europe/Paris,,OIF, +OIF:SA:51:39,1,"Rue du Puits / Mi Ville",48.968597,2.256359,,1,,Europe/Paris,,OIF, +OIF:SA:51:390,1,"Rue Félix et Roger Pozzi",48.967871,2.253452,,1,,Europe/Paris,,OIF, +OIF:SA:51:392,1,"Stade Delaune",48.975741,2.256115,,1,,Europe/Paris,,OIF, +OIF:SA:51:394,1,"Les Cancelles",49.013177,2.230831,,1,,Europe/Paris,,OIF, +OIF:SA:51:396,1,"Avenue Janine",49.011501,2.130822,,1,,Europe/Paris,,OIF, +OIF:SA:51:398,1,"Les Courlains",49.015222,2.136559,,1,,Europe/Paris,,OIF, +OIF:SA:51:400,1,"Route de Conflans",49.021176,2.142575,,1,,Europe/Paris,,OIF, +OIF:SA:51:406,1,"Les Cordes",48.983724,2.181803,,1,,Europe/Paris,,OIF, +OIF:SA:51:408,1,"Centre Commercial",49.072002,2.197035,,1,,Europe/Paris,,OIF, +OIF:SA:51:41,1,"Rue des Piretins / Hôtel de Ville",48.97145,2.25589,,1,,Europe/Paris,,OIF, +OIF:SA:51:410,1,"La Poste",49.075799,2.202327,,1,,Europe/Paris,,OIF, +OIF:SA:51:412,1,"Faisanderie",49.075138,2.21005,,1,,Europe/Paris,,OIF, +OIF:SA:51:414,1,"Massenet",49.07269,2.215568,,1,,Europe/Paris,,OIF, +OIF:SA:51:416,1,"Collège Cécile Sorel",49.07072,2.218921,,1,,Europe/Paris,,OIF, +OIF:SA:51:418,1,"Bord Haut",49.067518,2.228531,,1,,Europe/Paris,,OIF, +OIF:SA:51:420,1,"La Charbonnière",49.067773,2.232381,,1,,Europe/Paris,,OIF, +OIF:SA:51:422,1,"Mairie",49.064573,2.234935,,1,,Europe/Paris,,OIF, +OIF:SA:51:424,1,"Honoré de Balzac",49.061295,2.23625,,1,,Europe/Paris,,OIF, +OIF:SA:51:428,1,"Château d'Eau",49.055265,2.134729,,1,,Europe/Paris,,OIF, +OIF:SA:51:43,1,"Chaussée Jules César",49.0052,2.208777,,1,,Europe/Paris,,OIF, +OIF:SA:51:430,1,"Haute Borne",49.045602,2.155094,,1,,Europe/Paris,,OIF, +OIF:SA:51:432,1,"Résidence de Vaux",49.058071,2.158851,,1,,Europe/Paris,,OIF, +OIF:SA:51:440,1,"Thérèse Léthias",49.063373,2.184548,,1,,Europe/Paris,,OIF, +OIF:SA:51:442,1,"Avenue Marcel Perrin",49.061877,2.188361,,1,,Europe/Paris,,OIF, +OIF:SA:51:446,1,"Rue du Bac",49.068062,2.194532,,1,,Europe/Paris,,OIF, +OIF:SA:51:449,1,"Hôtel des Impôts",49.006132,2.2485,,1,,Europe/Paris,,OIF, +OIF:SA:51:450,1,"Mlc",49.008235,2.247978,,1,,Europe/Paris,,OIF, +OIF:SA:51:451,1,"Croix du Jubilé",49.01282,2.250846,,1,,Europe/Paris,,OIF, +OIF:SA:51:453,1,"Côte Rôtie",48.996929,2.225135,,1,,Europe/Paris,,OIF, +OIF:SA:51:454,1,"Pont Buissonnier",48.998883,2.219845,,1,,Europe/Paris,,OIF, +OIF:SA:51:455,1,"Collège Marcel Pagnol",49.034667,2.117985,,1,,Europe/Paris,,OIF, +OIF:SA:51:456,1,"Square de l'Europe",48.992954,2.222331,,1,,Europe/Paris,,OIF, +OIF:SA:51:457,1,"La Tuile",48.986454,2.181863,,1,,Europe/Paris,,OIF, +OIF:SA:51:460,1,"Mairie",49.078844,2.205041,,1,,Europe/Paris,,OIF, +OIF:SA:51:467,1,"Haut Rucourt",49.02667,1.974344,,1,,Europe/Paris,,OIF, +OIF:SA:51:468,1,"Bas Rucourt",49.025015,1.976979,,1,,Europe/Paris,,OIF, +OIF:SA:51:469,1,"Route de Vaux",49.013424,1.952688,,1,,Europe/Paris,,OIF, +OIF:SA:51:47,1,"Stade",48.99996,2.218969,,1,,Europe/Paris,,OIF, +OIF:SA:51:479,1,"Rue des Vignes Blanches",49.00779,2.050577,,1,,Europe/Paris,,OIF, +OIF:SA:51:480,1,"Rue du Boilé",49.010871,2.050218,,1,,Europe/Paris,,OIF, +OIF:SA:51:491,1,"Pont",48.97896,2.003359,,1,,Europe/Paris,,OIF, +OIF:SA:51:493,1,"École Notre-Dame",48.984203,1.974228,,1,,Europe/Paris,,OIF, +OIF:SA:51:496,1,"Le Colombier",49.015666,1.944597,,1,,Europe/Paris,,OIF, +OIF:SA:51:5,1,"Simone Eiffes",48.998358,2.195536,,1,,Europe/Paris,,OIF, +OIF:SA:51:50,1,"Centre Commercial Carrefour",48.964405,2.256966,,1,,Europe/Paris,,OIF, +OIF:SA:51:500,1,"Les Valanchards",49.021022,2.021892,,1,,Europe/Paris,,OIF, +OIF:SA:51:502,1,"Carnot",48.970212,2.199763,,1,,Europe/Paris,,OIF, +OIF:SA:51:505,1,"Noyer de l'Image",48.966223,2.208727,,1,,Europe/Paris,,OIF, +OIF:SA:51:506,1,"Pasteur",48.974624,2.265618,,1,,Europe/Paris,,OIF, +OIF:SA:51:508,1,"Rue de Soisy",48.97781,2.271269,,1,,Europe/Paris,,OIF, +OIF:SA:51:510,1,"Mairie",49.001464,2.2882,,1,,Europe/Paris,,OIF, +OIF:SA:51:512,1,"Collège Notre-Dame de Bury",49.002568,2.284613,,1,,Europe/Paris,,OIF, +OIF:SA:51:514,1,"Collège Augustin Bosc",49.007732,2.269855,,1,,Europe/Paris,,OIF, +OIF:SA:51:516,1,"Gérard Donzelle",49.009773,2.263169,,1,,Europe/Paris,,OIF, +OIF:SA:51:518,1,"Rue d'Ermont / Mairie",49.006896,2.261824,,1,,Europe/Paris,,OIF, +OIF:SA:51:52,1,"Boulevard Gabriel Péri",48.966709,2.262074,,1,,Europe/Paris,,OIF, +OIF:SA:51:520,1,"Rue de Paris / RD 928",49.006535,2.258335,,1,,Europe/Paris,,OIF, +OIF:SA:51:524,1,"Boulevard Georges Clémenceau",48.986842,2.171529,,1,,Europe/Paris,,OIF, +OIF:SA:51:527,1,"Boulevard Joffre / Avenue de la Platrière",48.99376,2.17699,,1,,Europe/Paris,,OIF, +OIF:SA:51:529,1,"Émile Glay",48.990167,2.184552,,1,,Europe/Paris,,OIF, +OIF:SA:51:532,1,"Chemin Vert",48.960142,2.20331,,1,,Europe/Paris,,OIF, +OIF:SA:51:533,1,"Collège Camille Claudel",48.991115,2.1884,,1,,Europe/Paris,,OIF, +OIF:SA:51:536,1,"Viaduc",48.98239,2.178964,,1,,Europe/Paris,,OIF, +OIF:SA:51:538,1,"Quai de Seine",48.98028,2.173168,,1,,Europe/Paris,,OIF, +OIF:SA:51:54,1,"Rue de la République",49.001433,2.204706,,1,,Europe/Paris,,OIF, +OIF:SA:51:540,1,"Mairie",48.973412,2.178486,,1,,Europe/Paris,,OIF, +OIF:SA:51:542,1,"Base de Loisirs",48.96381,2.181955,,1,,Europe/Paris,,OIF, +OIF:SA:51:545,1,"Aristide Briand",48.975174,2.179109,,1,,Europe/Paris,,OIF, +OIF:SA:51:547,1,"Cimetière",48.972943,2.183716,,1,,Europe/Paris,,OIF, +OIF:SA:51:549,1,"Centre Commercial Carrefour",49.00673,2.350838,,1,,Europe/Paris,,OIF, +OIF:SA:51:550,1,"Boulevard de la Gare",48.99624,2.357131,,1,,Europe/Paris,,OIF, +OIF:SA:51:552,1,"Église",49.001041,2.354968,,1,,Europe/Paris,,OIF, +OIF:SA:51:554,1,"Coq Hardi",49.003201,2.198692,,1,,Europe/Paris,,OIF, +OIF:SA:51:556,1,"Place de la Libération",48.999265,2.259029,,1,,Europe/Paris,,OIF, +OIF:SA:51:557,1,"Mairie",49.025848,2.226193,,1,,Europe/Paris,,OIF, +OIF:SA:51:558,1,"Le Moulin",49.011297,2.245486,,1,,Europe/Paris,,OIF, +OIF:SA:51:560,1,"Rue du Général Leclerc",49.004105,2.260264,,1,,Europe/Paris,,OIF, +OIF:SA:51:561,1,"La Roche",49.004236,2.010295,,1,,Europe/Paris,,OIF, +OIF:SA:51:563,1,"Parc aux Etoiles",49.001537,2.01079,,1,,Europe/Paris,,OIF, +OIF:SA:51:565,1,"Chapelle",49.001507,2.012955,,1,,Europe/Paris,,OIF, +OIF:SA:51:567,1,"Auberge Dauphinoise",48.996734,2.01752,,1,,Europe/Paris,,OIF, +OIF:SA:51:568,1,"Rue de Sannois",48.979165,2.256185,,1,,Europe/Paris,,OIF, +OIF:SA:51:570,1,"Rue de Verdun",48.964698,2.187698,,1,,Europe/Paris,,OIF, +OIF:SA:51:572,1,"Les Coteaux",49.016693,1.998207,,1,,Europe/Paris,,OIF, +OIF:SA:51:574,1,"Renoir",48.996911,2.207695,,1,,Europe/Paris,,OIF, +OIF:SA:51:577,1,"Centre Commercial Carrefour",48.995442,2.199921,,1,,Europe/Paris,,OIF, +OIF:SA:51:58,1,"Piscine",48.994299,2.206035,,1,,Europe/Paris,,OIF, +OIF:SA:51:582,1,"Place des Sept Fontaines",49.027432,2.211021,,1,,Europe/Paris,,OIF, +OIF:SA:51:585,1,"Rue de Paris",49.009642,2.255332,,1,,Europe/Paris,,OIF, +OIF:SA:51:593,1,"Libération",49.053568,2.194879,,1,,Europe/Paris,,OIF, +OIF:SA:51:595,1,"Maurice Berteaux",48.989134,2.23086,,1,,Europe/Paris,,OIF, +OIF:SA:51:60,1,"Les Bruyères",48.994429,2.202266,,1,,Europe/Paris,,OIF, +OIF:SA:51:606,1,"Place Jean Gabin",49.077333,2.203855,,1,,Europe/Paris,,OIF, +OIF:SA:51:607,1,"Place Jean Moulin",49.073828,2.216284,,1,,Europe/Paris,,OIF, +OIF:SA:51:609,1,"Le Val Hébert",49.015416,1.947577,,1,,Europe/Paris,,OIF, +OIF:SA:51:613,1,"Parking Gare",48.980722,2.267958,,1,,Europe/Paris,,OIF, +OIF:SA:51:62,1,"Centre Commercial Edouard Leclerc",48.990942,2.205914,,1,,Europe/Paris,,OIF, +OIF:SA:51:621,1,"Pierre Sémard",49.010716,2.197183,,1,,Europe/Paris,,OIF, +OIF:SA:51:626,1,"Collège Marcel Pagnol",49.066969,2.323202,,1,,Europe/Paris,,OIF, +OIF:SA:51:628,1,"Église",49.071419,2.309976,,1,,Europe/Paris,,OIF, +OIF:SA:51:630,1,"L'Orme aux Roses",49.075923,2.320902,,1,,Europe/Paris,,OIF, +OIF:SA:51:631,1,"Le Poirier Rouget",49.084808,2.313512,,1,,Europe/Paris,,OIF, +OIF:SA:51:632,1,"Fougères",49.078141,2.311545,,1,,Europe/Paris,,OIF, +OIF:SA:51:633,1,"Abribus",49.076455,2.307901,,1,,Europe/Paris,,OIF, +OIF:SA:51:635,1,"Centre",49.076864,2.307066,,1,,Europe/Paris,,OIF, +OIF:SA:51:637,1,"Harlay",49.089629,2.284074,,1,,Europe/Paris,,OIF, +OIF:SA:51:639,1,"Mairie",49.089648,2.277609,,1,,Europe/Paris,,OIF, +OIF:SA:51:64,1,"La Source",48.989815,2.191169,,1,,Europe/Paris,,OIF, +OIF:SA:51:641,1,"Paris / Madeleine",49.108501,2.232531,,1,,Europe/Paris,,OIF, +OIF:SA:51:646,1,"Carrefour de Paris",49.110739,2.224765,,1,,Europe/Paris,,OIF, +OIF:SA:51:648,1,"Poste",49.111949,2.219972,,1,,Europe/Paris,,OIF, +OIF:SA:51:650,1,"Collège",49.11545,2.216501,,1,,Europe/Paris,,OIF, +OIF:SA:51:652,1,"Faisanderie",49.117122,2.217982,,1,,Europe/Paris,,OIF, +OIF:SA:51:654,1,"Garenne",49.119112,2.22689,,1,,Europe/Paris,,OIF, +OIF:SA:51:656,1,"Chasseurs",49.11934,2.231003,,1,,Europe/Paris,,OIF, +OIF:SA:51:657,1,"Poste Annexe",49.010532,2.238493,,1,,Europe/Paris,,OIF, +OIF:SA:51:658,1,"Rue Michelet",49.013513,2.240728,,1,,Europe/Paris,,OIF, +OIF:SA:51:66,1,"Église",48.986622,2.188884,,1,,Europe/Paris,,OIF, +OIF:SA:51:661,1,"Jean Jaurès",49.011009,2.234066,,1,,Europe/Paris,,OIF, +OIF:SA:51:662,1,"Rue Morard",49.113877,2.23111,,1,,Europe/Paris,,OIF, +OIF:SA:51:663,1,"Place du Tillé",49.112517,2.22754,,1,,Europe/Paris,,OIF, +OIF:SA:51:664,1,"Madeleine / Louvet",49.110716,2.233033,,1,,Europe/Paris,,OIF, +OIF:SA:51:665,1,"Albert Alline",49.002345,2.232772,,1,,Europe/Paris,,OIF, +OIF:SA:51:667,1,"Avenue des Pommiers Saulniers",48.9971,2.225558,,1,,Europe/Paris,,OIF, +OIF:SA:51:668,1,"Rue Émile Zola",48.99951,2.227042,,1,,Europe/Paris,,OIF, +OIF:SA:51:669,1,"ZAC des Colonnes",49.001275,2.221998,,1,,Europe/Paris,,OIF, +OIF:SA:51:670,1,"Chaussée Jules César",48.997144,2.23479,,1,,Europe/Paris,,OIF, +OIF:SA:51:672,1,"Chemin des Gendarmes",49.024837,2.212729,,1,,Europe/Paris,,OIF, +OIF:SA:51:674,1,"Esplanade",49.023127,2.20987,,1,,Europe/Paris,,OIF, +OIF:SA:51:678,1,"Collège Montesquieu",49.01436,2.182473,,1,,Europe/Paris,,OIF, +OIF:SA:51:68,1,"Rue Massenet",48.980124,2.191599,,1,,Europe/Paris,,OIF, +OIF:SA:51:680,1,"Rue d'Herblay",49.021542,2.216043,,1,,Europe/Paris,,OIF, +OIF:SA:51:682,1,"Pierre Curie",49.019313,2.211328,,1,,Europe/Paris,,OIF, +OIF:SA:51:684,1,"Voltaire",49.01956,2.20632,,1,,Europe/Paris,,OIF, +OIF:SA:51:686,1,"Rue Constantin Pecqueur",49.027596,2.193208,,1,,Europe/Paris,,OIF, +OIF:SA:51:690,1,"Les Châtaigniers",49.024692,2.188413,,1,,Europe/Paris,,OIF, +OIF:SA:51:692,1,"Bibliothèque Municipale",48.988349,2.190163,,1,,Europe/Paris,,OIF, +OIF:SA:51:694,1,"Fortuné Charlot",48.990473,2.181957,,1,,Europe/Paris,,OIF, +OIF:SA:51:696,1,"Centre de Loisirs",49.000517,2.193762,,1,,Europe/Paris,,OIF, +OIF:SA:51:698,1,"Hameau du Moulin / Clos des Charmilles",49.003214,2.36552,,1,,Europe/Paris,,OIF, +OIF:SA:51:7,1,"Rue du Général de Gaulle / D14",48.993172,2.194016,,1,,Europe/Paris,,OIF, +OIF:SA:51:700,1,"Eugène Sue",49.005142,2.363794,,1,,Europe/Paris,,OIF, +OIF:SA:51:702,1,"Grand Parc",49.004981,2.359498,,1,,Europe/Paris,,OIF, +OIF:SA:51:704,1,"Rhin et Danube",49.00597,2.355974,,1,,Europe/Paris,,OIF, +OIF:SA:51:706,1,"Zone Commerciale des Perruches",49.008644,2.351194,,1,,Europe/Paris,,OIF, +OIF:SA:51:707,1,"Cimetière",49.00469,2.353904,,1,,Europe/Paris,,OIF, +OIF:SA:51:709,1,"École Léon Rouvrais",49.002206,2.349546,,1,,Europe/Paris,,OIF, +OIF:SA:51:71,1,"Carrefour L. Mourier",48.976687,2.196025,,1,,Europe/Paris,,OIF, +OIF:SA:51:711,1,"Fontaine Saint-Martin",49.000386,2.348754,,1,,Europe/Paris,,OIF, +OIF:SA:51:714,1,"Rougemonts / Liberté",48.994384,2.335581,,1,,Europe/Paris,,OIF, +OIF:SA:51:715,1,"Rougemonts / Fraternité",48.996118,2.336755,,1,,Europe/Paris,,OIF, +OIF:SA:51:716,1,"Rougemonts / Egalité",48.996487,2.332235,,1,,Europe/Paris,,OIF, +OIF:SA:51:717,1,"Le Clos",48.996782,2.3513,,1,,Europe/Paris,,OIF, +OIF:SA:51:718,1,"Mont de Veine",48.999406,2.350317,,1,,Europe/Paris,,OIF, +OIF:SA:51:719,1,"Lamartine / Hameau de Vaux",49.061886,2.150333,,1,,Europe/Paris,,OIF, +OIF:SA:51:721,1,"Planchette",48.997439,2.347449,,1,,Europe/Paris,,OIF, +OIF:SA:51:746,1,"Chaufferie",48.996588,2.226106,,1,,Europe/Paris,,OIF, +OIF:SA:51:78,1,"F. Carton / A. Briand",48.974891,2.197116,,1,,Europe/Paris,,OIF, +OIF:SA:51:79,1,"Collège de l'Epine",48.993144,2.218698,,1,,Europe/Paris,,OIF, +OIF:SA:51:804,1,"Paul Bert",49.011634,2.194653,,1,,Europe/Paris,,OIF, +OIF:SA:51:806,1,"Robert Capa",48.95631,2.199458,,1,,Europe/Paris,,OIF, +OIF:SA:51:809,1,"Thomas Edison",48.956846,2.197369,,1,,Europe/Paris,,OIF, +OIF:SA:51:81,1,"Rhin et Danube",48.991859,2.22374,,1,,Europe/Paris,,OIF, +OIF:SA:51:810,1,"Philibert Delorme",49.080298,2.317289,,1,,Europe/Paris,,OIF, +OIF:SA:51:823,1,"J.B. Poquelin",49.0026,2.126145,,1,,Europe/Paris,,OIF, +OIF:SA:51:825,1,"Illustre Théâtre",48.999913,2.125699,,1,,Europe/Paris,,OIF, +OIF:SA:51:826,1,"Comédie Française",48.999413,2.122518,,1,,Europe/Paris,,OIF, +OIF:SA:51:827,1,"Alouettes",48.993343,2.136077,,1,,Europe/Paris,,OIF, +OIF:SA:51:828,1,"Place de la Libération",48.991252,2.166756,,1,,Europe/Paris,,OIF, +OIF:SA:51:829,1,"Espace André Malraux",48.991108,2.173051,,1,,Europe/Paris,,OIF, +OIF:SA:51:830,1,"Comble",48.993198,2.176582,,1,,Europe/Paris,,OIF, +OIF:SA:51:831,1,"Jean Moulin",48.994571,2.175062,,1,,Europe/Paris,,OIF, +OIF:SA:51:832,1,"Chemin du Parc",48.997161,2.163964,,1,,Europe/Paris,,OIF, +OIF:SA:51:833,1,"Route de Pierrelaye",49.002635,2.158168,,1,,Europe/Paris,,OIF, +OIF:SA:51:836,1,"Cimetière",48.996412,2.161331,,1,,Europe/Paris,,OIF, +OIF:SA:51:837,1,"Bibliothèque",48.993248,2.167282,,1,,Europe/Paris,,OIF, +OIF:SA:51:838,1,"Rue de Cormeilles",48.988319,2.164075,,1,,Europe/Paris,,OIF, +OIF:SA:51:839,1,"Gaillon",48.991019,2.149141,,1,,Europe/Paris,,OIF, +OIF:SA:51:842,1,"Chemin des Perriers",48.993226,2.152383,,1,,Europe/Paris,,OIF, +OIF:SA:51:843,1,"Chennevières",48.995645,2.15964,,1,,Europe/Paris,,OIF, +OIF:SA:51:844,1,"Jean Forget",49.080388,2.314458,,1,,Europe/Paris,,OIF, +OIF:SA:51:854,1,"Avenue de la Chesnaie",49.000527,2.154993,,1,,Europe/Paris,,OIF, +OIF:SA:51:855,1,"Rue de Paris",48.992669,2.171039,,1,,Europe/Paris,,OIF, +OIF:SA:51:863,1,"Rue Charles Fourier",48.965026,2.19906,,1,,Europe/Paris,,OIF, +OIF:SA:51:864,1,"Victor Hugo",48.996282,2.195999,,1,,Europe/Paris,,OIF, +OIF:SA:51:866,1,"Mare aux Fées",48.994547,2.224348,,1,,Europe/Paris,,OIF, +OIF:SA:51:867,1,"Stade Raoul Dautry",48.980571,2.261815,,1,,Europe/Paris,,OIF, +OIF:SA:51:870,1,"Centre Sapeurs Pompiers",48.995934,2.346875,,1,,Europe/Paris,,OIF, +OIF:SA:51:872,1,"Les Petites Vignes",49.012192,2.161509,,1,,Europe/Paris,,OIF, +OIF:SA:51:873,1,"Les Petites Vignes",49.012084,2.161182,,1,,Europe/Paris,,OIF, +OIF:SA:51:874,1,"Beauregards",48.99036,2.00505,,1,,Europe/Paris,,OIF, +OIF:SA:51:880,1,"Station",48.988406,2.231039,,1,,Europe/Paris,,OIF, +OIF:SA:51:881,1,"Montfrais",48.977148,2.228291,,1,,Europe/Paris,,OIF, +OIF:SA:51:885,1,"Les Maréeux",49.003442,2.198022,,1,,Europe/Paris,,OIF, +OIF:SA:51:887,1,"Epinémerie",49.000816,2.149979,,1,,Europe/Paris,,OIF, +OIF:SA:51:889,1,"Port aux Vins",48.987792,2.166726,,1,,Europe/Paris,,OIF, +OIF:SA:51:892,1,"Centre Commercial le Grand Val",49.12585,2.246598,,1,,Europe/Paris,,OIF, +OIF:SA:51:896,1,"Les Genêts",48.999746,2.207203,,1,,Europe/Paris,,OIF, +OIF:SA:51:898,1,"Jules Ferry",48.969576,2.20087,,1,,Europe/Paris,,OIF, +OIF:SA:51:899,1,"Les Ecouardes",49.02723,2.198894,,1,,Europe/Paris,,OIF, +OIF:SA:51:901,1,"Les Lignières",49.028813,2.208586,,1,,Europe/Paris,,OIF, +OIF:SA:51:903,1,"9ème Avenue",49.03277,2.215853,,1,,Europe/Paris,,OIF, +OIF:SA:51:910,1,"Boulevard des Eaux",48.963445,2.203247,,1,,Europe/Paris,,OIF, +OIF:SA:51:912,1,"Les Feuillets",48.965658,2.205357,,1,,Europe/Paris,,OIF, +OIF:SA:51:914,1,"Épinettes",48.969251,2.207628,,1,,Europe/Paris,,OIF, +OIF:SA:51:915,1,"Ibis",48.971543,2.208632,,1,,Europe/Paris,,OIF, +OIF:SA:51:916,1,"Emy-les-Prés",48.973482,2.20647,,1,,Europe/Paris,,OIF, +OIF:SA:51:917,1,"Grands Bains",49.00053,2.142407,,1,,Europe/Paris,,OIF, +OIF:SA:51:919,1,"Alexandre Dumas",48.9978,2.146405,,1,,Europe/Paris,,OIF, +OIF:SA:51:92,1,"Yvonne de Gaulle",48.997759,2.219083,,1,,Europe/Paris,,OIF, +OIF:SA:51:921,1,"Clos Saint-Pierre",49.02037,2.147053,,1,,Europe/Paris,,OIF, +OIF:SA:51:923,1,"Jean Gosselin",48.969843,2.234339,,1,,Europe/Paris,,OIF, +OIF:SA:51:924,1,"Rue d'Argenteuil",48.989197,2.168852,,1,,Europe/Paris,,OIF, +OIF:SA:51:925,1,"Courtes Terres",48.987755,2.172079,,1,,Europe/Paris,,OIF, +OIF:SA:51:926,1,"Croix de Bois",49.000556,2.162409,,1,,Europe/Paris,,OIF, +OIF:SA:51:927,1,"Orme Macaire",48.998179,2.153417,,1,,Europe/Paris,,OIF, +OIF:SA:51:928,1,"Centre de Loisirs",48.99507,2.147829,,1,,Europe/Paris,,OIF, +OIF:SA:51:929,1,"Sainte-Honorine",48.993535,2.154867,,1,,Europe/Paris,,OIF, +OIF:SA:51:930,1,"Val",48.987046,2.156979,,1,,Europe/Paris,,OIF, +OIF:SA:51:932,1,"Quai du Génie",48.990946,2.142641,,1,,Europe/Paris,,OIF, +OIF:SA:51:935,1,"Les Lions",48.990161,2.146508,,1,,Europe/Paris,,OIF, +OIF:SA:51:936,1,"La Poste",48.971426,2.196565,,1,,Europe/Paris,,OIF, +OIF:SA:51:937,1,"Paul Leboucher",48.974984,2.192351,,1,,Europe/Paris,,OIF, +OIF:SA:51:939,1,"Allée des Sources",48.977447,2.192126,,1,,Europe/Paris,,OIF, +OIF:SA:51:94,1,"Les Bruyères",48.993821,2.21703,,1,,Europe/Paris,,OIF, +OIF:SA:51:940,1,"Émile Zola",48.977542,2.189532,,1,,Europe/Paris,,OIF, +OIF:SA:51:941,1,"Jules Massenet",48.976288,2.185644,,1,,Europe/Paris,,OIF, +OIF:SA:51:942,1,"Pierre Curie",48.975639,2.183967,,1,,Europe/Paris,,OIF, +OIF:SA:51:943,1,"Hautes Ruelles",48.974596,2.183643,,1,,Europe/Paris,,OIF, +OIF:SA:51:944,1,"Rue de la Frette",48.972677,2.187075,,1,,Europe/Paris,,OIF, +OIF:SA:51:945,1,"Clemenceau",48.972493,2.190624,,1,,Europe/Paris,,OIF, +OIF:SA:51:947,1,"Gaston Frémont",48.983622,2.201133,,1,,Europe/Paris,,OIF, +OIF:SA:51:949,1,"Mairie / Marché",48.975559,2.199735,,1,,Europe/Paris,,OIF, +OIF:SA:51:95,1,"Epine Guyon",48.995978,2.220371,,1,,Europe/Paris,,OIF, +OIF:SA:51:959,1,"Lycée Julie-Victoire Daubié (Gare du Val d'Argenteuil)",48.952849,2.234687,,1,,Europe/Paris,,OIF, +OIF:SA:51:967,1,"Église Notre-Dame",49.012825,2.191289,,1,,Europe/Paris,,OIF, +OIF:SA:51:968,1,"Victor Basch",49.013622,2.189033,,1,,Europe/Paris,,OIF, +OIF:SA:51:97,1,"Piscine",48.991499,2.223133,,1,,Europe/Paris,,OIF, +OIF:SA:51:970,1,"Collège Isabelle Autissier",49.000937,2.140083,,1,,Europe/Paris,,OIF, +OIF:SA:51:975,1,"Lycée / Collège Voie des Sports",49.013954,2.21201,,1,,Europe/Paris,,OIF, +OIF:SA:51:990,1,"Chemin Neuf",48.980016,2.234558,,1,,Europe/Paris,,OIF, +OIF:SA:51:992,1,"Cimetière (les Moussets)",48.977596,2.217532,,1,,Europe/Paris,,OIF, +OIF:SA:52:1043,1,"Mairie",48.774265,3.390036,,1,,Europe/Paris,,OIF, +OIF:SA:52:1045,1,"Moutils",48.765613,3.373231,,1,,Europe/Paris,,OIF, +OIF:SA:52:1055,1,"École",48.745301,3.269854,,1,,Europe/Paris,,OIF, +OIF:SA:52:1079,1,"Place de la Mairie",48.817583,3.184086,,1,,Europe/Paris,,OIF, +OIF:SA:52:1088,1,"Les Corvelles",48.815551,3.174723,,1,,Europe/Paris,,OIF, +OIF:SA:52:1090,1,"Les Limons",48.821713,3.18855,,1,,Europe/Paris,,OIF, +OIF:SA:52:1096,1,"Pot d'Étaing / D66",48.811329,3.181044,,1,,Europe/Paris,,OIF, +OIF:SA:52:1273,1,"Église",48.615779,3.194768,,1,,Europe/Paris,,OIF, +OIF:SA:52:1320,1,"Lavoir",48.735052,3.194998,,1,,Europe/Paris,,OIF, +OIF:SA:52:1336,1,"Champbonnois",48.778924,3.227738,,1,,Europe/Paris,,OIF, +OIF:SA:52:1338,1,"Cofféry",48.749848,3.206789,,1,,Europe/Paris,,OIF, +OIF:SA:52:1344,1,"La Bochetière",48.752326,3.241399,,1,,Europe/Paris,,OIF, +OIF:SA:52:1346,1,"La Tuilerie",48.755702,3.213141,,1,,Europe/Paris,,OIF, +OIF:SA:52:1350,1,"Les Queurses",48.755055,3.235391,,1,,Europe/Paris,,OIF, +OIF:SA:52:1352,1,"Place de Payenne",48.759648,3.222785,,1,,Europe/Paris,,OIF, +OIF:SA:52:1425,1,"Mairie",48.607726,3.016527,,1,,Europe/Paris,,OIF, +OIF:SA:52:14523,1,"Stop D111",48.781386,3.161788,,1,,Europe/Paris,,OIF, +OIF:SA:52:14524,1,"Suscy sous Yèbles",48.616839,2.764076,,1,,Europe/Paris,,OIF, +OIF:SA:52:14535,1,"Paradis",48.758336,3.026281,,1,,Europe/Paris,,OIF, +OIF:SA:52:14580,1,"Parrichets / Écoles",48.80485,3.064223,,1,,Europe/Paris,,OIF, +OIF:SA:52:14587,1,"Rue Saint-Martin",48.607147,2.969845,,1,,Europe/Paris,,OIF, +OIF:SA:52:14592,1,"Granvillé",48.630496,2.918783,,1,,Europe/Paris,,OIF, +OIF:SA:52:14618,1,"Genouilly",48.614254,2.746349,,1,,Europe/Paris,,OIF, +OIF:SA:52:14626,1,"Mairie",48.67169,2.696681,,1,,Europe/Paris,,OIF, +OIF:SA:52:14634,1,"Aubepierre / Église",48.631068,2.886457,,1,,Europe/Paris,,OIF, +OIF:SA:52:14636,1,"Gerbault",48.763651,3.386327,,1,,Europe/Paris,,OIF, +OIF:SA:52:14638,1,"Gare de Jouy sur Morin le Marais",48.791206,3.272209,,1,,Europe/Paris,,OIF, +OIF:SA:52:14640,1,"Mairie",48.794196,3.272692,,1,,Europe/Paris,,OIF, +OIF:SA:52:14644,1,"Église",48.792453,3.232991,,1,,Europe/Paris,,OIF, +OIF:SA:52:14645,1,"Rue de la Croix",48.760444,3.266829,,1,,Europe/Paris,,OIF, +OIF:SA:52:14651,1,"Rue de la Chapelle",48.741203,3.128003,,1,,Europe/Paris,,OIF, +OIF:SA:52:14665,1,"Lumigny / Stade",48.733621,2.951142,,1,,Europe/Paris,,OIF, +OIF:SA:52:14666,1,"Mairie",48.656222,3.078618,,1,,Europe/Paris,,OIF, +OIF:SA:52:14669,1,"Mesnil",48.782004,3.0299,,1,,Europe/Paris,,OIF, +OIF:SA:52:14671,1,"Courbon Cour aux Bertons",48.789698,2.957566,,1,,Europe/Paris,,OIF, +OIF:SA:52:14673,1,"Mairie",48.814625,2.82942,,1,,Europe/Paris,,OIF, +OIF:SA:52:14674,1,"Tresmes",48.812493,2.991745,,1,,Europe/Paris,,OIF, +OIF:SA:52:14675,1,"Tresmes Charnois",48.815393,2.994667,,1,,Europe/Paris,,OIF, +OIF:SA:52:14677,1,"La Garenne",48.759451,3.057279,,1,,Europe/Paris,,OIF, +OIF:SA:52:14680,1,"Maternelle / Primaire",48.848644,3.233525,,1,,Europe/Paris,,OIF, +OIF:SA:52:14681,1,"Courte Soupe",48.776595,3.165064,,1,,Europe/Paris,,OIF, +OIF:SA:52:14683,1,"Courfruit",48.647648,2.915005,,1,,Europe/Paris,,OIF, +OIF:SA:52:14688,1,"La Halle",48.782971,3.306017,,1,,Europe/Paris,,OIF, +OIF:SA:52:14693,1,"Les Pleux / D 222",48.841537,3.190407,,1,,Europe/Paris,,OIF, +OIF:SA:52:14695,1,"Champ la Dame / D222",48.837638,3.179382,,1,,Europe/Paris,,OIF, +OIF:SA:52:14697,1,"Marcel Clavier",48.808962,3.085884,,1,,Europe/Paris,,OIF, +OIF:SA:52:14710,1,"Champauger / Chambreton",48.821993,3.127104,,1,,Europe/Paris,,OIF, +OIF:SA:52:14712,1,"Bas Mesnil",48.844494,3.114408,,1,,Europe/Paris,,OIF, +OIF:SA:52:14714,1,"Bagneaux",48.605994,2.896663,,1,,Europe/Paris,,OIF, +OIF:SA:52:14717,1,"Montblu / Chemin",48.826088,3.068073,,1,,Europe/Paris,,OIF, +OIF:SA:52:14723,1,"Rigny",48.727582,2.974562,,1,,Europe/Paris,,OIF, +OIF:SA:52:14734,1,"Callagum",48.789871,3.122818,,1,,Europe/Paris,,OIF, +OIF:SA:52:14736,1,"Rouilly le Haut",48.8318,2.975101,,1,,Europe/Paris,,OIF, +OIF:SA:52:14738,1,"Verdun",48.816269,3.085206,,1,,Europe/Paris,,OIF, +OIF:SA:52:14739,1,"École",48.798557,2.99327,,1,,Europe/Paris,,OIF, +OIF:SA:52:14741,1,"Le Pontcet",48.797206,3.01143,,1,,Europe/Paris,,OIF, +OIF:SA:52:14743,1,"École",48.815286,2.990467,,1,,Europe/Paris,,OIF, +OIF:SA:52:14745,1,"Maisonfleur",48.7992,3.004462,,1,,Europe/Paris,,OIF, +OIF:SA:52:14747,1,"Lotissement la Ferme",48.815678,3.018407,,1,,Europe/Paris,,OIF, +OIF:SA:52:14749,1,"Le Mesnil",48.820203,2.98633,,1,,Europe/Paris,,OIF, +OIF:SA:52:14751,1,"Carrefour / Route de Meaux",48.818401,3.010446,,1,,Europe/Paris,,OIF, +OIF:SA:52:14762,1,"Busserolles",48.90617,3.209503,,1,,Europe/Paris,,OIF, +OIF:SA:52:14766,1,"Camping",48.720677,3.034041,,1,,Europe/Paris,,OIF, +OIF:SA:52:14768,1,"Rue Bertheaux",48.710995,2.857292,,1,,Europe/Paris,,OIF, +OIF:SA:52:14774,1,"Avenue de Rebais",48.786301,3.302312,,1,,Europe/Paris,,OIF, +OIF:SA:52:14786,1,"Lady / Lavoir",48.5833,2.894658,,1,,Europe/Paris,,OIF, +OIF:SA:52:14788,1,"La Louveterie",48.763755,3.021709,,1,,Europe/Paris,,OIF, +OIF:SA:52:14791,1,"Montbrieux / Fontaine",48.827526,2.950327,,1,,Europe/Paris,,OIF, +OIF:SA:52:14792,1,"Villiers",48.770457,3.097737,,1,,Europe/Paris,,OIF, +OIF:SA:52:14794,1,"Les Parrichets",48.777694,3.098856,,1,,Europe/Paris,,OIF, +OIF:SA:52:14796,1,"Le Puit / Rouville",48.784887,3.095833,,1,,Europe/Paris,,OIF, +OIF:SA:52:14798,1,"Les Pleux",48.922742,3.127277,,1,,Europe/Paris,,OIF, +OIF:SA:52:14800,1,"Zone Artisanale Croix de Mission",48.927514,3.123804,,1,,Europe/Paris,,OIF, +OIF:SA:52:14804,1,"Le Grand Lud",48.830217,2.935507,,1,,Europe/Paris,,OIF, +OIF:SA:52:14826,1,"Place de l'Église",48.758925,3.219714,,1,,Europe/Paris,,OIF, +OIF:SA:52:14828,1,"Champ Bardin",48.822231,3.383775,,1,,Europe/Paris,,OIF, +OIF:SA:52:14832,1,"La Croix Camus",48.714838,3.156521,,1,,Europe/Paris,,OIF, +OIF:SA:52:14834,1,"Place Henri Guy",48.561518,2.679945,,1,,Europe/Paris,,OIF, +OIF:SA:52:14842,1,"Moulin de Chassefaim",48.702704,3.222073,,1,,Europe/Paris,,OIF, +OIF:SA:52:14844,1,"Coubertin",48.709271,2.870131,,1,,Europe/Paris,,OIF, +OIF:SA:52:14848,1,"Chaudbuisson",48.791422,2.94129,,1,,Europe/Paris,,OIF, +OIF:SA:52:14850,1,"Boulivillers",48.863899,3.22661,,1,,Europe/Paris,,OIF, +OIF:SA:52:14852,1,"Ferme du Balleau",48.916056,3.091754,,1,,Europe/Paris,,OIF, +OIF:SA:52:14854,1,"Changeard",48.650276,2.961222,,1,,Europe/Paris,,OIF, +OIF:SA:52:14856,1,"Saint-Victor",48.65931,2.771223,,1,,Europe/Paris,,OIF, +OIF:SA:52:14860,1,"Zone Industrielle / Rue de l'Orgeval",48.801854,3.096244,,1,,Europe/Paris,,OIF, +OIF:SA:52:14864,1,"Rue Martial Cordier",48.813217,3.078181,,1,,Europe/Paris,,OIF, +OIF:SA:52:14867,1,"Avenue des Lorinettes",48.82014,3.089979,,1,,Europe/Paris,,OIF, +OIF:SA:52:14869,1,"Collège Hippolyte Rémy",48.809172,3.090445,,1,,Europe/Paris,,OIF, +OIF:SA:52:14880,1,"Avenue Gastellier",48.821321,3.085871,,1,,Europe/Paris,,OIF, +OIF:SA:52:14882,1,"Avenue Rebais / Rue Verte",48.814449,3.097347,,1,,Europe/Paris,,OIF, +OIF:SA:52:14883,1,"Petits Aulnoys",48.809179,3.112273,,1,,Europe/Paris,,OIF, +OIF:SA:52:14884,1,"Pontmoulin",48.812625,3.111141,,1,,Europe/Paris,,OIF, +OIF:SA:52:14886,1,"Cimetière",48.814906,3.102362,,1,,Europe/Paris,,OIF, +OIF:SA:52:14887,1,"Theil / Lavoir",48.823141,3.10279,,1,,Europe/Paris,,OIF, +OIF:SA:52:14889,1,"Theil / Place",48.827749,3.10471,,1,,Europe/Paris,,OIF, +OIF:SA:52:14892,1,"Monument",48.809848,3.082902,,1,,Europe/Paris,,OIF, +OIF:SA:52:14895,1,"Parc de Félins",48.714077,2.960127,,1,,Europe/Paris,,OIF, +OIF:SA:52:14897,1,"D 75",48.678152,3.24254,,1,,Europe/Paris,,OIF, +OIF:SA:52:14913,1,"Baloquerie",48.768765,3.342692,,1,,Europe/Paris,,OIF, +OIF:SA:52:14922,1,"Les Jardins de Boussois",48.828944,3.032453,,1,,Europe/Paris,,OIF, +OIF:SA:52:14924,1,"Général de Gaulle",48.738751,3.196887,,1,,Europe/Paris,,OIF, +OIF:SA:52:14927,1,"Zone Industrielle le Hainault",48.946245,3.110669,,1,,Europe/Paris,,OIF, +OIF:SA:52:14929,1,"Chaudron",48.796696,3.342974,,1,,Europe/Paris,,OIF, +OIF:SA:52:14933,1,"Église",48.735389,3.195629,,1,,Europe/Paris,,OIF, +OIF:SA:52:14940,1,"Rue des Joncs",48.804853,3.084743,,1,,Europe/Paris,,OIF, +OIF:SA:52:14941,1,"Avenue Robert Elvert",48.803369,3.082612,,1,,Europe/Paris,,OIF, +OIF:SA:52:14944,1,"Vaux Résidence",48.808368,3.075315,,1,,Europe/Paris,,OIF, +OIF:SA:52:14945,1,"Centre Commercial",48.806392,3.077246,,1,,Europe/Paris,,OIF, +OIF:SA:52:14946,1,"Rue Verte",48.818711,3.097056,,1,,Europe/Paris,,OIF, +OIF:SA:52:14947,1,"Hautevue",48.817425,3.095084,,1,,Europe/Paris,,OIF, +OIF:SA:52:14948,1,"De Lattre de Tassigny",48.8157,3.089907,,1,,Europe/Paris,,OIF, +OIF:SA:52:14949,1,"République",48.815623,3.085871,,1,,Europe/Paris,,OIF, +OIF:SA:52:14950,1,"Pôle Emploi - Rue du Jariel",48.80691,3.10121,,1,,Europe/Paris,,OIF, +OIF:SA:52:14952,1,"Centre de Remise en Forme",48.808011,3.10124,,1,,Europe/Paris,,OIF, +OIF:SA:52:14954,1,"Centre Imagerie Médicale",48.808902,3.097443,,1,,Europe/Paris,,OIF, +OIF:SA:52:14956,1,"Station de Covoiturage",48.734401,2.985258,,1,,Europe/Paris,,OIF, +OIF:SA:52:14957,1,"Pôle Emploi",48.805625,3.101157,,1,,Europe/Paris,,OIF, +OIF:SA:52:14959,1,"Zone Industrielle / Boulevard de la Marne",48.803626,3.090392,,1,,Europe/Paris,,OIF, +OIF:SA:52:14961,1,"Avenue de Strasbourg",48.80143,3.086646,,1,,Europe/Paris,,OIF, +OIF:SA:52:14962,1,"Rue de Meaux",48.861879,2.991361,,1,,Europe/Paris,,OIF, +OIF:SA:52:14967,1,"Victoire",48.82165,3.091375,,1,,Europe/Paris,,OIF, +OIF:SA:52:14968,1,"Commanderie",48.824106,3.095372,,1,,Europe/Paris,,OIF, +OIF:SA:52:14969,1,"ZA Rue de l'Aubetin",48.804178,3.094088,,1,,Europe/Paris,,OIF, +OIF:SA:52:14971,1,"Alliés / Gallieni",48.822251,3.094467,,1,,Europe/Paris,,OIF, +OIF:SA:52:14973,1,"Rue du Général Leclerc",48.811842,3.078154,,1,,Europe/Paris,,OIF, +OIF:SA:52:1550,1,"Centre de Réadaptation",48.679327,2.716369,,1,,Europe/Paris,,OIF, +OIF:SA:52:1552,1,"Maison Médicale",48.6753,2.699373,,1,,Europe/Paris,,OIF, +OIF:SA:52:1570,1,"Grande Rue",48.891241,2.927836,,1,,Europe/Paris,,OIF, +OIF:SA:52:1580,1,"Berthereau",48.811152,3.084228,,1,,Europe/Paris,,OIF, +OIF:SA:52:1582,1,"Calvaire",48.820473,3.099784,,1,,Europe/Paris,,OIF, +OIF:SA:52:1588,1,"Collège Madame Lafayette",48.815262,3.087383,,1,,Europe/Paris,,OIF, +OIF:SA:52:1590,1,"Charot / École Maternelle",48.821087,3.096539,,1,,Europe/Paris,,OIF, +OIF:SA:52:1592,1,"Cité Scolaire",48.823509,3.09162,,1,,Europe/Paris,,OIF, +OIF:SA:52:1598,1,"Gambetta",48.813757,3.086715,,1,,Europe/Paris,,OIF, +OIF:SA:52:1606,1,"Hôpital",48.826571,3.097722,,1,,Europe/Paris,,OIF, +OIF:SA:52:1612,1,"Theil / Centre Commercial",48.820721,3.094751,,1,,Europe/Paris,,OIF, +OIF:SA:52:1615,1,"Lycée Jules Ferry",48.82422,3.090024,,1,,Europe/Paris,,OIF, +OIF:SA:52:1617,1,"Montanglaust",48.825717,3.087909,,1,,Europe/Paris,,OIF, +OIF:SA:52:1620,1,"Notre-Dame des Vignes",48.821704,3.088572,,1,,Europe/Paris,,OIF, +OIF:SA:52:1624,1,"Place Saint-Denis",48.813053,3.084228,,1,,Europe/Paris,,OIF, +OIF:SA:52:1640,1,"Victor Hugo",48.814843,3.081906,,1,,Europe/Paris,,OIF, +OIF:SA:52:1679,1,"D49A / D201",48.647987,2.958176,,1,,Europe/Paris,,OIF, +OIF:SA:52:1684,1,"Fleury / Bourg",48.635042,2.971808,,1,,Europe/Paris,,OIF, +OIF:SA:52:1686,1,"Fleury / Sablons",48.633114,2.970862,,1,,Europe/Paris,,OIF, +OIF:SA:52:1688,1,"Grand Bréau",48.653753,2.945261,,1,,Europe/Paris,,OIF, +OIF:SA:52:1690,1,"Grange Bléneau",48.661727,2.952912,,1,,Europe/Paris,,OIF, +OIF:SA:52:1692,1,"Le Lavoir",48.647019,2.962053,,1,,Europe/Paris,,OIF, +OIF:SA:52:1694,1,"Église",48.676908,2.746545,,1,,Europe/Paris,,OIF, +OIF:SA:52:1703,1,"La Pierre Couvée",48.651457,2.901715,,1,,Europe/Paris,,OIF, +OIF:SA:52:1707,1,"Ferme du Paradis",48.646568,2.900233,,1,,Europe/Paris,,OIF, +OIF:SA:52:1783,1,"École",48.59545,2.740835,,1,,Europe/Paris,,OIF, +OIF:SA:52:1785,1,"Les Bordes",48.59032,2.731858,,1,,Europe/Paris,,OIF, +OIF:SA:52:1824,1,"La Malgagne",48.709975,3.163018,,1,,Europe/Paris,,OIF, +OIF:SA:52:1826,1,"Mairie",48.717588,3.170794,,1,,Europe/Paris,,OIF, +OIF:SA:52:1868,1,"Mairie",48.865626,3.164095,,1,,Europe/Paris,,OIF, +OIF:SA:52:1870,1,"Bois Baudry Centre",48.889109,3.216541,,1,,Europe/Paris,,OIF, +OIF:SA:52:1872,1,"Butheil",48.872263,3.183992,,1,,Europe/Paris,,OIF, +OIF:SA:52:1874,1,"Grand Saussoy",48.877012,3.196067,,1,,Europe/Paris,,OIF, +OIF:SA:52:1876,1,"Croupet",48.860863,3.153006,,1,,Europe/Paris,,OIF, +OIF:SA:52:1878,1,"Les Chaises",48.8771,3.167297,,1,,Europe/Paris,,OIF, +OIF:SA:52:1880,1,"Les Neuillis",48.886266,3.203464,,1,,Europe/Paris,,OIF, +OIF:SA:52:1882,1,"Mauroy",48.885003,3.171335,,1,,Europe/Paris,,OIF, +OIF:SA:52:1884,1,"Petit Saussoy",48.875012,3.19057,,1,,Europe/Paris,,OIF, +OIF:SA:52:1991,1,"Collège Louise Michel",48.802063,2.986634,,1,,Europe/Paris,,OIF, +OIF:SA:52:1995,1,"HLM",48.801644,2.986901,,1,,Europe/Paris,,OIF, +OIF:SA:52:1997,1,"Les Bordes",48.779245,3.009483,,1,,Europe/Paris,,OIF, +OIF:SA:52:1999,1,"Monument",48.802321,2.994434,,1,,Europe/Paris,,OIF, +OIF:SA:52:2001,1,"Place",48.799351,2.996818,,1,,Europe/Paris,,OIF, +OIF:SA:52:2051,1,"Collège Jean Campin",48.785601,3.303183,,1,,Europe/Paris,,OIF, +OIF:SA:52:2055,1,"Rue d'Orient",48.782472,3.30881,,1,,Europe/Paris,,OIF, +OIF:SA:52:2057,1,"Promenades",48.780447,3.303966,,1,,Europe/Paris,,OIF, +OIF:SA:52:2211,1,"Chaubuisson",48.701018,2.905183,,1,,Europe/Paris,,OIF, +OIF:SA:52:2252,1,"Abri",48.584745,2.776942,,1,,Europe/Paris,,OIF, +OIF:SA:52:2256,1,"Mairie",48.704445,3.198078,,1,,Europe/Paris,,OIF, +OIF:SA:52:2278,1,"8 Grande Rue",48.629272,3.02146,,1,,Europe/Paris,,OIF, +OIF:SA:52:2280,1,"Mairie",48.62785,3.020292,,1,,Europe/Paris,,OIF, +OIF:SA:52:2294,1,"Mairie",48.842804,3.029194,,1,,Europe/Paris,,OIF, +OIF:SA:52:2296,1,"Corbeville",48.84544,3.021725,,1,,Europe/Paris,,OIF, +OIF:SA:52:2298,1,"Francheville",48.855407,3.042717,,1,,Europe/Paris,,OIF, +OIF:SA:52:2300,1,"Malmaison",48.870927,3.04145,,1,,Europe/Paris,,OIF, +OIF:SA:52:2302,1,"Réthorée / Épineuse",48.863185,3.04362,,1,,Europe/Paris,,OIF, +OIF:SA:52:2336,1,"Mairie Annexe",48.579868,2.990026,,1,,Europe/Paris,,OIF, +OIF:SA:52:2344,1,"Groupe Scolaire",48.583449,2.968173,,1,,Europe/Paris,,OIF, +OIF:SA:52:2410,1,"Pommeraie",48.825472,2.955632,,1,,Europe/Paris,,OIF, +OIF:SA:52:2412,1,"Le Charnoy",48.834215,2.96106,,1,,Europe/Paris,,OIF, +OIF:SA:52:2416,1,"Le Charnoy / Lotissement",48.832479,2.957111,,1,,Europe/Paris,,OIF, +OIF:SA:52:2420,1,"Courtry / Château d'Eau",48.805016,2.945775,,1,,Europe/Paris,,OIF, +OIF:SA:52:2424,1,"Gennevray",48.809947,2.950868,,1,,Europe/Paris,,OIF, +OIF:SA:52:2429,1,"Montbrieux",48.825189,2.947734,,1,,Europe/Paris,,OIF, +OIF:SA:52:2433,1,"Monthérand",48.83046,2.929111,,1,,Europe/Paris,,OIF, +OIF:SA:52:2435,1,"Rouilly le Bas",48.827339,2.968893,,1,,Europe/Paris,,OIF, +OIF:SA:52:2437,1,"Saint-Blandin",48.835693,2.988035,,1,,Europe/Paris,,OIF, +OIF:SA:52:2439,1,"Tennis",48.822151,2.958192,,1,,Europe/Paris,,OIF, +OIF:SA:52:2473,1,"Bourg",48.765892,2.966881,,1,,Europe/Paris,,OIF, +OIF:SA:52:2475,1,"Les Tournelles",48.776331,2.950913,,1,,Europe/Paris,,OIF, +OIF:SA:52:2572,1,"Bicêtre",48.923371,3.123816,,1,,Europe/Paris,,OIF, +OIF:SA:52:2576,1,"Les Corbiers",48.928969,3.103277,,1,,Europe/Paris,,OIF, +OIF:SA:52:2580,1,"Fontaine Rougeau / Hôpital",48.928738,3.127007,,1,,Europe/Paris,,OIF, +OIF:SA:52:2582,1,"Fringale",48.895317,3.099522,,1,,Europe/Paris,,OIF, +OIF:SA:52:2584,1,"Glairet",48.915211,3.119601,,1,,Europe/Paris,,OIF, +OIF:SA:52:2592,1,"Place",48.926261,3.129813,,1,,Europe/Paris,,OIF, +OIF:SA:52:2594,1,"Romeny",48.916017,3.147022,,1,,Europe/Paris,,OIF, +OIF:SA:52:2624,1,"La Chair aux Gens",48.794528,3.283513,,1,,Europe/Paris,,OIF, +OIF:SA:52:2626,1,"Le Hardroit",48.804304,3.27946,,1,,Europe/Paris,,OIF, +OIF:SA:52:2628,1,"Le Jariel",48.807273,3.297129,,1,,Europe/Paris,,OIF, +OIF:SA:52:2630,1,"Montigny",48.792718,3.291765,,1,,Europe/Paris,,OIF, +OIF:SA:52:2632,1,"Pinebart",48.818097,3.29799,,1,,Europe/Paris,,OIF, +OIF:SA:52:2636,1,"Voigny",48.805677,3.263189,,1,,Europe/Paris,,OIF, +OIF:SA:52:2741,1,"Centre",48.762467,3.345024,,1,,Europe/Paris,,OIF, +OIF:SA:52:2788,1,"Michenon",48.733614,3.271118,,1,,Europe/Paris,,OIF, +OIF:SA:52:2823,1,"Mairie",48.626856,2.664436,,1,,Europe/Paris,,OIF, +OIF:SA:52:2824,1,"Fourches",48.625681,2.68106,,1,,Europe/Paris,,OIF, +OIF:SA:52:2827,1,"Église",48.625991,2.694493,,1,,Europe/Paris,,OIF, +OIF:SA:52:2913,1,"Champlet",48.728171,2.951533,,1,,Europe/Paris,,OIF, +OIF:SA:52:2915,1,"Église",48.736997,2.951814,,1,,Europe/Paris,,OIF, +OIF:SA:52:2925,1,"Nesles / Château d'Eau",48.701915,2.963512,,1,,Europe/Paris,,OIF, +OIF:SA:52:2927,1,"Nesles / École",48.701603,2.968968,,1,,Europe/Paris,,OIF, +OIF:SA:52:2929,1,"Ormeaux / École",48.718564,2.989116,,1,,Europe/Paris,,OIF, +OIF:SA:52:2956,1,"Place",48.549774,2.700679,,1,,Europe/Paris,,OIF, +OIF:SA:52:2958,1,"Place des Lilas",48.866652,2.992205,,1,,Europe/Paris,,OIF, +OIF:SA:52:2960,1,"Salle des Fêtes",48.86271,2.991453,,1,,Europe/Paris,,OIF, +OIF:SA:52:3019,1,"Square du Marchais",48.728471,2.884919,,1,,Europe/Paris,,OIF, +OIF:SA:52:3026,1,"Ranchien",48.767485,3.150771,,1,,Europe/Paris,,OIF, +OIF:SA:52:3048,1,"D402",48.768632,3.039287,,1,,Europe/Paris,,OIF, +OIF:SA:52:3050,1,"Église",48.767898,3.038829,,1,,Europe/Paris,,OIF, +OIF:SA:52:3052,1,"Mairie",48.769145,3.036962,,1,,Europe/Paris,,OIF, +OIF:SA:52:3248,1,"Place",48.789013,3.421814,,1,,Europe/Paris,,OIF, +OIF:SA:52:3250,1,"Gare",48.784075,3.41727,,1,,Europe/Paris,,OIF, +OIF:SA:52:3252,1,"Les Mongets",48.789213,3.39974,,1,,Europe/Paris,,OIF, +OIF:SA:52:3294,1,"Route de Nangis",48.541362,2.678672,,1,,Europe/Paris,,OIF, +OIF:SA:52:3347,1,"École",48.563074,2.73694,,1,,Europe/Paris,,OIF, +OIF:SA:52:3349,1,"Petit Moisenay",48.565417,2.748281,,1,,Europe/Paris,,OIF, +OIF:SA:52:3438,1,"Les Boblins",48.843317,3.428356,,1,,Europe/Paris,,OIF, +OIF:SA:52:3598,1,"Collège Nicolas Fouquet",48.609276,2.881041,,1,,Europe/Paris,,OIF, +OIF:SA:52:3600,1,"Mairie / RN 19",48.606682,2.890774,,1,,Europe/Paris,,OIF, +OIF:SA:52:3606,1,"ZA et de Commerces",48.611276,2.887908,,1,,Europe/Paris,,OIF, +OIF:SA:52:3608,1,"Jean Jaurès",48.605161,2.896878,,1,,Europe/Paris,,OIF, +OIF:SA:52:3610,1,"Lady",48.583225,2.894332,,1,,Europe/Paris,,OIF, +OIF:SA:52:3612,1,"Mairie",48.60669,2.890096,,1,,Europe/Paris,,OIF, +OIF:SA:52:3617,1,"Rouvray",48.596521,2.860952,,1,,Europe/Paris,,OIF, +OIF:SA:52:3619,1,"Boulangerie",48.789683,2.915981,,1,,Europe/Paris,,OIF, +OIF:SA:52:3623,1,"Place",48.789633,2.916974,,1,,Europe/Paris,,OIF, +OIF:SA:52:3633,1,"Belle Croix",48.814222,3.071894,,1,,Europe/Paris,,OIF, +OIF:SA:52:3637,1,"Belle Idée",48.822513,3.043814,,1,,Europe/Paris,,OIF, +OIF:SA:52:3641,1,"Bois Guyot",48.821977,3.04704,,1,,Europe/Paris,,OIF, +OIF:SA:52:3645,1,"Boussois / Lavoir",48.831135,3.034967,,1,,Europe/Paris,,OIF, +OIF:SA:52:3651,1,"Collège George Sand",48.821796,3.035168,,1,,Europe/Paris,,OIF, +OIF:SA:52:3653,1,"Courrois / Lavoir",48.80576,3.054186,,1,,Europe/Paris,,OIF, +OIF:SA:52:3655,1,"Chicotets",48.827097,3.036982,,1,,Europe/Paris,,OIF, +OIF:SA:52:3667,1,"Craboche",48.823059,3.05627,,1,,Europe/Paris,,OIF, +OIF:SA:52:3669,1,"Mitheuil / Lavoir",48.821559,3.060476,,1,,Europe/Paris,,OIF, +OIF:SA:52:3671,1,"Mitheuil / D934",48.818465,3.052681,,1,,Europe/Paris,,OIF, +OIF:SA:52:3675,1,"Montblu / Château",48.827166,3.072513,,1,,Europe/Paris,,OIF, +OIF:SA:52:3684,1,"Parrichets / Lavoir",48.803761,3.063616,,1,,Europe/Paris,,OIF, +OIF:SA:52:3686,1,"Place de la Mairie",48.821584,3.037479,,1,,Europe/Paris,,OIF, +OIF:SA:52:3692,1,"Villeperdue",48.816195,3.041428,,1,,Europe/Paris,,OIF, +OIF:SA:52:3694,1,"Voisins / Lavoir",48.828991,3.030555,,1,,Europe/Paris,,OIF, +OIF:SA:52:3698,1,"Voisins",48.82875,3.027849,,1,,Europe/Paris,,OIF, +OIF:SA:52:3736,1,"Maréchal Foch",48.560404,3.013371,,1,,Europe/Paris,,OIF, +OIF:SA:52:3744,1,"Lycée Henri Becquerel",48.550794,3.00785,,1,,Europe/Paris,,OIF, +OIF:SA:52:3746,1,"Monument aux Morts",48.558289,3.013838,,1,,Europe/Paris,,OIF, +OIF:SA:52:3748,1,"Collège René Barthélémy",48.551927,3.015617,,1,,Europe/Paris,,OIF, +OIF:SA:52:3758,1,"Valmy / Tyvoli",48.554916,3.018764,,1,,Europe/Paris,,OIF, +OIF:SA:52:3980,1,"Mélenfroy",48.648878,3.056909,,1,,Europe/Paris,,OIF, +OIF:SA:52:3982,1,"Mirvaux",48.640997,3.094204,,1,,Europe/Paris,,OIF, +OIF:SA:52:3994,1,"Les Grés",48.739926,2.984138,,1,,Europe/Paris,,OIF, +OIF:SA:52:3996,1,"Mairie",48.735704,2.994271,,1,,Europe/Paris,,OIF, +OIF:SA:52:4000,1,"Station Service",48.734675,2.988612,,1,,Europe/Paris,,OIF, +OIF:SA:52:4004,1,"Les Houis",48.891619,3.038828,,1,,Europe/Paris,,OIF, +OIF:SA:52:4017,1,"Mairie",48.715312,3.032305,,1,,Europe/Paris,,OIF, +OIF:SA:52:4045,1,"Charnois",48.822028,2.996786,,1,,Europe/Paris,,OIF, +OIF:SA:52:4049,1,"La Villeneuve",48.822852,2.984328,,1,,Europe/Paris,,OIF, +OIF:SA:52:4051,1,"Lavanderie",48.804803,3.015855,,1,,Europe/Paris,,OIF, +OIF:SA:52:4053,1,"Bisset / Centre",48.807542,3.020899,,1,,Europe/Paris,,OIF, +OIF:SA:52:4055,1,"Cascade",48.796343,3.015378,,1,,Europe/Paris,,OIF, +OIF:SA:52:4059,1,"Église",48.816517,3.015444,,1,,Europe/Paris,,OIF, +OIF:SA:52:4263,1,"La Fermeté",48.621018,2.94878,,1,,Europe/Paris,,OIF, +OIF:SA:52:4265,1,"Les Loges",48.620798,2.967926,,1,,Europe/Paris,,OIF, +OIF:SA:52:428,1,"Fontaine Ramée",48.726592,3.164838,,1,,Europe/Paris,,OIF, +OIF:SA:52:430,1,"Planche",48.731869,3.155057,,1,,Europe/Paris,,OIF, +OIF:SA:52:4318,1,"Général de Gaulle",48.847142,3.228828,,1,,Europe/Paris,,OIF, +OIF:SA:52:432,1,"Montbauchet",48.73992,3.13842,,1,,Europe/Paris,,OIF, +OIF:SA:52:4320,1,"Collège Jacques Prévert",48.84969,3.238964,,1,,Europe/Paris,,OIF, +OIF:SA:52:4322,1,"Promenade du Nord",48.848096,3.233516,,1,,Europe/Paris,,OIF, +OIF:SA:52:4324,1,"Giblois / Curie",48.84909,3.22923,,1,,Europe/Paris,,OIF, +OIF:SA:52:4326,1,"La Boyère",48.868878,3.23628,,1,,Europe/Paris,,OIF, +OIF:SA:52:4328,1,"Mairie",48.846157,3.231916,,1,,Europe/Paris,,OIF, +OIF:SA:52:434,1,"Fontenelle",48.750911,3.136062,,1,,Europe/Paris,,OIF, +OIF:SA:52:436,1,"Sillos / D209",48.740649,3.109015,,1,,Europe/Paris,,OIF, +OIF:SA:52:438,1,"La Tuilerie",48.740111,3.117175,,1,,Europe/Paris,,OIF, +OIF:SA:52:4418,1,"Collège les Remparts",48.683904,2.960458,,1,,Europe/Paris,,OIF, +OIF:SA:52:4436,1,"Stade",48.680788,2.963333,,1,,Europe/Paris,,OIF, +OIF:SA:52:4438,1,"Groupe Scolaire",48.552682,2.678038,,1,,Europe/Paris,,OIF, +OIF:SA:52:4466,1,"Barny",48.792894,3.024406,,1,,Europe/Paris,,OIF, +OIF:SA:52:4468,1,"Boulangerie",48.788539,3.029824,,1,,Europe/Paris,,OIF, +OIF:SA:52:4470,1,"Vieilles Vignes",48.79592,3.024052,,1,,Europe/Paris,,OIF, +OIF:SA:52:4472,1,"Entrée",48.779438,3.03296,,1,,Europe/Paris,,OIF, +OIF:SA:52:4476,1,"Bisset Entrée",48.802658,3.020705,,1,,Europe/Paris,,OIF, +OIF:SA:52:4478,1,"Mairie",48.786296,3.029828,,1,,Europe/Paris,,OIF, +OIF:SA:52:4482,1,"Rue de Brie",48.768789,3.017003,,1,,Europe/Paris,,OIF, +OIF:SA:52:450,1,"Le Truizy",48.615112,2.801514,,1,,Europe/Paris,,OIF, +OIF:SA:52:4510,1,"Lotissement",48.812925,3.358164,,1,,Europe/Paris,,OIF, +OIF:SA:52:452,1,"Salle des Fêtes",48.612032,2.814209,,1,,Europe/Paris,,OIF, +OIF:SA:52:4539,1,"Les Montgoins",48.894147,3.167004,,1,,Europe/Paris,,OIF, +OIF:SA:52:4551,1,"Champtareine",48.84725,3.208266,,1,,Europe/Paris,,OIF, +OIF:SA:52:4553,1,"Place de l'Église",48.835807,3.210219,,1,,Europe/Paris,,OIF, +OIF:SA:52:4556,1,"Le Menillot",48.829741,3.200886,,1,,Europe/Paris,,OIF, +OIF:SA:52:4558,1,"Mazagrand",48.843149,3.194955,,1,,Europe/Paris,,OIF, +OIF:SA:52:4587,1,"École",48.582038,2.709142,,1,,Europe/Paris,,OIF, +OIF:SA:52:4591,1,"Village",48.85202,3.145587,,1,,Europe/Paris,,OIF, +OIF:SA:52:4595,1,"Malemboust",48.84666,3.150066,,1,,Europe/Paris,,OIF, +OIF:SA:52:4625,1,"Mairie",48.83899,3.254212,,1,,Europe/Paris,,OIF, +OIF:SA:52:4626,1,"Champcormolin",48.826481,3.287043,,1,,Europe/Paris,,OIF, +OIF:SA:52:4628,1,"Châteaurenard",48.834284,3.278479,,1,,Europe/Paris,,OIF, +OIF:SA:52:4630,1,"Grand Marché",48.851672,3.274362,,1,,Europe/Paris,,OIF, +OIF:SA:52:4632,1,"Petit Marché",48.851027,3.268419,,1,,Europe/Paris,,OIF, +OIF:SA:52:4649,1,"Fontenelle",48.731122,3.333328,,1,,Europe/Paris,,OIF, +OIF:SA:52:4651,1,"Saint-Mars Mairie",48.741464,3.320343,,1,,Europe/Paris,,OIF, +OIF:SA:52:4654,1,"Vieux Maisons / Mairie",48.730593,3.340098,,1,,Europe/Paris,,OIF, +OIF:SA:52:4656,1,"Villiers Templon",48.734837,3.306982,,1,,Europe/Paris,,OIF, +OIF:SA:52:4660,1,"Coupigny",48.790474,3.343194,,1,,Europe/Paris,,OIF, +OIF:SA:52:4662,1,"Lotissement",48.778864,3.326675,,1,,Europe/Paris,,OIF, +OIF:SA:52:4664,1,"Place de l'Église",48.778042,3.335785,,1,,Europe/Paris,,OIF, +OIF:SA:52:4673,1,"Église",48.578031,2.826913,,1,,Europe/Paris,,OIF, +OIF:SA:52:468,1,"Grands Saules",48.652024,2.866294,,1,,Europe/Paris,,OIF, +OIF:SA:52:4704,1,"Barlonges",48.801686,3.223081,,1,,Europe/Paris,,OIF, +OIF:SA:52:4706,1,"Les Ormeaux",48.812529,3.24234,,1,,Europe/Paris,,OIF, +OIF:SA:52:4710,1,"Montmogis",48.81893,3.24401,,1,,Europe/Paris,,OIF, +OIF:SA:52:4712,1,"Moulin du Pont",48.805163,3.235224,,1,,Europe/Paris,,OIF, +OIF:SA:52:4714,1,"Boulangerie",48.758422,3.051263,,1,,Europe/Paris,,OIF, +OIF:SA:52:4718,1,"Glatigny",48.750456,3.050086,,1,,Europe/Paris,,OIF, +OIF:SA:52:4721,1,"Le Tertre",48.751117,3.035618,,1,,Europe/Paris,,OIF, +OIF:SA:52:4725,1,"Mairie",48.759606,3.046446,,1,,Europe/Paris,,OIF, +OIF:SA:52:4727,1,"Maison Meunier",48.749194,3.06621,,1,,Europe/Paris,,OIF, +OIF:SA:52:4729,1,"Mémillon",48.74995,3.041482,,1,,Europe/Paris,,OIF, +OIF:SA:52:474,1,"Bonfruit",48.643052,2.911698,,1,,Europe/Paris,,OIF, +OIF:SA:52:4740,1,"La Vacherie",48.806041,3.203016,,1,,Europe/Paris,,OIF, +OIF:SA:52:4744,1,"Les Bordes / RN34",48.789162,3.208339,,1,,Europe/Paris,,OIF, +OIF:SA:52:478,1,"Pecqueux",48.626764,2.859175,,1,,Europe/Paris,,OIF, +OIF:SA:52:480,1,"Aubepierre / École",48.631618,2.887968,,1,,Europe/Paris,,OIF, +OIF:SA:52:4809,1,"Mairie",48.885865,2.961702,,1,,Europe/Paris,,OIF, +OIF:SA:52:482,1,"Bagneaux",48.601249,2.939321,,1,,Europe/Paris,,OIF, +OIF:SA:52:4824,1,"Mairie",48.937561,3.102586,,1,,Europe/Paris,,OIF, +OIF:SA:52:4826,1,"Bois de Foy",48.937084,3.106937,,1,,Europe/Paris,,OIF, +OIF:SA:52:484,1,"Bisseaux",48.596659,2.919718,,1,,Europe/Paris,,OIF, +OIF:SA:52:486,1,"La Noue",48.620179,2.912729,,1,,Europe/Paris,,OIF, +OIF:SA:52:4862,1,"Barneau",48.640711,2.713564,,1,,Europe/Paris,,OIF, +OIF:SA:52:488,1,"Mairie",48.61103,2.910319,,1,,Europe/Paris,,OIF, +OIF:SA:52:490,1,"Yvernailles",48.618854,2.919385,,1,,Europe/Paris,,OIF, +OIF:SA:52:4994,1,"Le Tau",48.730043,3.03418,,1,,Europe/Paris,,OIF, +OIF:SA:52:4996,1,"Courmereau",48.731191,3.026811,,1,,Europe/Paris,,OIF, +OIF:SA:52:4998,1,"Mairie",48.735345,3.011884,,1,,Europe/Paris,,OIF, +OIF:SA:52:501,1,"La Roche",48.845836,3.08007,,1,,Europe/Paris,,OIF, +OIF:SA:52:503,1,"Village",48.840731,3.095765,,1,,Europe/Paris,,OIF, +OIF:SA:52:505,1,"Villers",48.851192,3.075918,,1,,Europe/Paris,,OIF, +OIF:SA:52:5065,1,"Mairie",48.873921,3.25143,,1,,Europe/Paris,,OIF, +OIF:SA:52:5187,1,"Place de la Mairie",48.68866,3.080486,,1,,Europe/Paris,,OIF, +OIF:SA:52:5214,1,"Brice",48.875403,3.363442,,1,,Europe/Paris,,OIF, +OIF:SA:52:5223,1,"L'Étang",48.628917,2.826637,,1,,Europe/Paris,,OIF, +OIF:SA:52:5228,1,"Pont",48.643663,2.83018,,1,,Europe/Paris,,OIF, +OIF:SA:52:5232,1,"Le Petit Jard",48.570641,2.651018,,1,,Europe/Paris,,OIF, +OIF:SA:52:5293,1,"Champ Charron",48.862922,3.332911,,1,,Europe/Paris,,OIF, +OIF:SA:52:5303,1,"Fourcheret / Œuf Coque",48.861165,3.320924,,1,,Europe/Paris,,OIF, +OIF:SA:52:5312,1,"Fourcheret / Stade",48.861559,3.325433,,1,,Europe/Paris,,OIF, +OIF:SA:52:5409,1,"Saint-Mathurin",48.691117,3.002811,,1,,Europe/Paris,,OIF, +OIF:SA:52:5411,1,"Puit Fleury",48.692015,3.006964,,1,,Europe/Paris,,OIF, +OIF:SA:52:5413,1,"Villeneuve Hurée",48.702053,3.00985,,1,,Europe/Paris,,OIF, +OIF:SA:52:5453,1,"Nogent sur Avon",48.644689,2.779796,,1,,Europe/Paris,,OIF, +OIF:SA:52:5455,1,"Église",48.63802,2.770869,,1,,Europe/Paris,,OIF, +OIF:SA:52:584,1,"Autheil",48.746504,3.085412,,1,,Europe/Paris,,OIF, +OIF:SA:52:586,1,"Église",48.762922,3.087477,,1,,Europe/Paris,,OIF, +OIF:SA:52:588,1,"La Touche",48.761943,3.119386,,1,,Europe/Paris,,OIF, +OIF:SA:52:590,1,"Pressoucy",48.746547,3.079948,,1,,Europe/Paris,,OIF, +OIF:SA:52:600,1,"Grand Doucy",48.839168,3.328833,,1,,Europe/Paris,,OIF, +OIF:SA:52:612,1,"Mairie",48.675246,2.938081,,1,,Europe/Paris,,OIF, +OIF:SA:52:615,1,"Pompierre",48.655191,2.923006,,1,,Europe/Paris,,OIF, +OIF:SA:52:622,1,"Segrès / D211",48.663394,2.935562,,1,,Europe/Paris,,OIF, +OIF:SA:52:623,1,"Vilbert / Mairie",48.68312,2.922886,,1,,Europe/Paris,,OIF, +OIF:SA:52:629,1,"Place",48.701642,3.244521,,1,,Europe/Paris,,OIF, +OIF:SA:52:635,1,"Château de Blandy",48.566729,2.780853,,1,,Europe/Paris,,OIF, +OIF:SA:52:647,1,"Champauger / D222",48.818199,3.123331,,1,,Europe/Paris,,OIF, +OIF:SA:52:651,1,"Les Brosses",48.829749,3.157098,,1,,Europe/Paris,,OIF, +OIF:SA:52:655,1,"Les Jumelles",48.816271,3.125363,,1,,Europe/Paris,,OIF, +OIF:SA:52:657,1,"Lotissement",48.824613,3.137197,,1,,Europe/Paris,,OIF, +OIF:SA:52:661,1,"Place",48.820996,3.136474,,1,,Europe/Paris,,OIF, +OIF:SA:52:665,1,"Centre / D222",48.823065,3.138228,,1,,Europe/Paris,,OIF, +OIF:SA:52:669,1,"Sainte-Marie",48.816462,3.133682,,1,,Europe/Paris,,OIF, +OIF:SA:52:677,1,"Vallée",48.890892,3.251205,,1,,Europe/Paris,,OIF, +OIF:SA:52:679,1,"Méline",48.894768,3.259609,,1,,Europe/Paris,,OIF, +OIF:SA:52:681,1,"Mairie",48.57258,2.858283,,1,,Europe/Paris,,OIF, +OIF:SA:52:715,1,"La Cantine / D228",48.912253,2.920754,,1,,Europe/Paris,,OIF, +OIF:SA:52:745,1,"Auberge",48.562321,2.878664,,1,,Europe/Paris,,OIF, +OIF:SA:52:773,1,"Salle des Fêtes",48.68934,2.608311,,1,,Europe/Paris,,OIF, +OIF:SA:52:873,1,"La Celle en Bas / Mairie",48.806268,2.965963,,1,,Europe/Paris,,OIF, +OIF:SA:52:875,1,"La Celle en Haut / Centre",48.802708,2.970396,,1,,Europe/Paris,,OIF, +OIF:SA:52:885,1,"Chailloy",48.794166,3.124409,,1,,Europe/Paris,,OIF, +OIF:SA:52:887,1,"École",48.790244,3.124152,,1,,Europe/Paris,,OIF, +OIF:SA:52:889,1,"Les Sables",48.802084,3.126454,,1,,Europe/Paris,,OIF, +OIF:SA:52:893,1,"Martroy",48.811419,3.132496,,1,,Europe/Paris,,OIF, +OIF:SA:52:968,1,"Mairie",48.620641,2.731777,,1,,Europe/Paris,,OIF, +OIF:SA:52:970,1,"Place",48.584464,2.806263,,1,,Europe/Paris,,OIF, +OIF:SA:52:992,1,"Château d'Eau",48.54967,2.893059,,1,,Europe/Paris,,OIF, +OIF:SA:52:994,1,"Rue Grande",48.54945,2.898303,,1,,Europe/Paris,,OIF, +OIF:SA:52:998,1,"Les Marronniers",48.652545,2.988886,,1,,Europe/Paris,,OIF, +OIF:SA:53:2047,1,"Bosquets",48.956356,2.602759,,1,,Europe/Paris,,OIF, +OIF:SA:53:2051,1,"Bourg",48.91495,2.657451,,1,,Europe/Paris,,OIF, +OIF:SA:53:2054,1,"Noue Brossard",48.885498,2.578091,,1,,Europe/Paris,,OIF, +OIF:SA:53:2057,1,"Zone d'Activité",48.947346,2.669829,,1,,Europe/Paris,,OIF, +OIF:SA:53:2075,1,"Collège Maria Callas",48.910994,2.603617,,1,,Europe/Paris,,OIF, +OIF:SA:53:2078,1,"Collège de l'Europe",48.889385,2.598329,,1,,Europe/Paris,,OIF, +OIF:SA:53:2083,1,"Collège Goscinny",48.870084,2.646901,,1,,Europe/Paris,,OIF, +OIF:SA:53:2085,1,"Caminades",48.890836,2.618874,,1,,Europe/Paris,,OIF, +OIF:SA:53:2091,1,"Carrez",48.977908,2.626452,,1,,Europe/Paris,,OIF, +OIF:SA:53:2093,1,"Cassini",48.901886,2.597204,,1,,Europe/Paris,,OIF, +OIF:SA:53:2095,1,"Cavoy",48.916971,2.599366,,1,,Europe/Paris,,OIF, +OIF:SA:53:2097,1,"Claude Bernard",48.902784,2.593385,,1,,Europe/Paris,,OIF, +OIF:SA:53:2101,1,"Centre Commercial Terre Ciel",48.878592,2.614138,,1,,Europe/Paris,,OIF, +OIF:SA:53:2103,1,"Mont Chalats",48.885888,2.605703,,1,,Europe/Paris,,OIF, +OIF:SA:53:2106,1,"Chantereine",48.900009,2.614562,,1,,Europe/Paris,,OIF, +OIF:SA:53:2111,1,"Chappe",48.899371,2.602665,,1,,Europe/Paris,,OIF, +OIF:SA:53:2113,1,"Chasse",48.891412,2.609009,,1,,Europe/Paris,,OIF, +OIF:SA:53:2115,1,"Le Chat / Zone Industrielle",48.908951,2.600826,,1,,Europe/Paris,,OIF, +OIF:SA:53:2117,1,"Paul Vaillant Couturier",48.983578,2.615203,,1,,Europe/Paris,,OIF, +OIF:SA:53:2118,1,"Debussy",48.912878,2.601111,,1,,Europe/Paris,,OIF, +OIF:SA:53:2121,1,"Cheminots",48.884711,2.617151,,1,,Europe/Paris,,OIF, +OIF:SA:53:2124,1,"Chênes",48.949651,2.603137,,1,,Europe/Paris,,OIF, +OIF:SA:53:2125,1,"Nouveau Cimetière",48.883483,2.602093,,1,,Europe/Paris,,OIF, +OIF:SA:53:2133,1,"Cité Scolaire",48.883142,2.609654,,1,,Europe/Paris,,OIF, +OIF:SA:53:2135,1,"Clinique Chantereine",48.884264,2.629113,,1,,Europe/Paris,,OIF, +OIF:SA:53:2137,1,"Les Clos",48.90333,2.610367,,1,,Europe/Paris,,OIF, +OIF:SA:53:2145,1,"Deux Communes",48.869262,2.620902,,1,,Europe/Paris,,OIF, +OIF:SA:53:2147,1,"Parc Corbrion",48.980536,2.614796,,1,,Europe/Paris,,OIF, +OIF:SA:53:2152,1,"Collège Delambre",48.903151,2.594014,,1,,Europe/Paris,,OIF, +OIF:SA:53:2155,1,"Couronne",48.939236,2.609233,,1,,Europe/Paris,,OIF, +OIF:SA:53:2157,1,"Stade",48.915168,2.604014,,1,,Europe/Paris,,OIF, +OIF:SA:53:2162,1,"Cressonnières",48.882812,2.585873,,1,,Europe/Paris,,OIF, +OIF:SA:53:2171,1,"Carrefour des Déportés",48.879719,2.595912,,1,,Europe/Paris,,OIF, +OIF:SA:53:2174,1,"Digoy",48.875543,2.576218,,1,,Europe/Paris,,OIF, +OIF:SA:53:2175,1,"Dispensaire",48.877223,2.601423,,1,,Europe/Paris,,OIF, +OIF:SA:53:2177,1,"Rue Duchesne",48.875831,2.590011,,1,,Europe/Paris,,OIF, +OIF:SA:53:2181,1,"Cité EDF",48.868151,2.644866,,1,,Europe/Paris,,OIF, +OIF:SA:53:2183,1,"Église",48.91844,2.603458,,1,,Europe/Paris,,OIF, +OIF:SA:53:2185,1,"Frédéric Levé",48.910708,2.657602,,1,,Europe/Paris,,OIF, +OIF:SA:53:2187,1,"Jules Ferry",48.872267,2.578499,,1,,Europe/Paris,,OIF, +OIF:SA:53:2193,1,"Aimé Fluttaz",48.912045,2.597603,,1,,Europe/Paris,,OIF, +OIF:SA:53:2195,1,"Maréchal Foch / Platanes",48.887018,2.625674,,1,,Europe/Paris,,OIF, +OIF:SA:53:2197,1,"Cité Forestière",48.903817,2.597964,,1,,Europe/Paris,,OIF, +OIF:SA:53:2202,1,"Friedland",48.882127,2.573796,,1,,Europe/Paris,,OIF, +OIF:SA:53:2213,1,"Corps de Garde",48.869305,2.61608,,1,,Europe/Paris,,OIF, +OIF:SA:53:2217,1,"Gasnier Guy",48.874615,2.581855,,1,,Europe/Paris,,OIF, +OIF:SA:53:2225,1,"Guette",48.890021,2.604048,,1,,Europe/Paris,,OIF, +OIF:SA:53:2227,1,"Gymnase",48.868831,2.631765,,1,,Europe/Paris,,OIF, +OIF:SA:53:2231,1,"Place Henrion",48.897954,2.6171,,1,,Europe/Paris,,OIF, +OIF:SA:53:2235,1,"Jean Jaurès",48.879341,2.624273,,1,,Europe/Paris,,OIF, +OIF:SA:53:2237,1,"Jehan de Chelles",48.888473,2.613014,,1,,Europe/Paris,,OIF, +OIF:SA:53:2241,1,"Jean Moulin",48.982526,2.620809,,1,,Europe/Paris,,OIF, +OIF:SA:53:2243,1,"Kléber",48.950525,2.604967,,1,,Europe/Paris,,OIF, +OIF:SA:53:2245,1,"Paul de Kock",48.913122,2.594227,,1,,Europe/Paris,,OIF, +OIF:SA:53:2251,1,"La Mare",48.902451,2.673242,,1,,Europe/Paris,,OIF, +OIF:SA:53:2254,1,"Lamartine",48.914657,2.593007,,1,,Europe/Paris,,OIF, +OIF:SA:53:2255,1,"Lavoisier",48.901233,2.589765,,1,,Europe/Paris,,OIF, +OIF:SA:53:2257,1,"Lavoir",48.918378,2.65949,,1,,Europe/Paris,,OIF, +OIF:SA:53:2263,1,"Général Leclerc",48.877442,2.625798,,1,,Europe/Paris,,OIF, +OIF:SA:53:2265,1,"Le Rû",48.869792,2.607295,,1,,Europe/Paris,,OIF, +OIF:SA:53:2267,1,"Levasseur",48.903584,2.603368,,1,,Europe/Paris,,OIF, +OIF:SA:53:2271,1,"Lilas",48.886788,2.618736,,1,,Europe/Paris,,OIF, +OIF:SA:53:2273,1,"Lindau",48.883392,2.606705,,1,,Europe/Paris,,OIF, +OIF:SA:53:2275,1,"Mairie",48.881945,2.630388,,1,,Europe/Paris,,OIF, +OIF:SA:53:2277,1,"Mairie",48.877997,2.591452,,1,,Europe/Paris,,OIF, +OIF:SA:53:2281,1,"Mairie",48.945467,2.688753,,1,,Europe/Paris,,OIF, +OIF:SA:53:2283,1,"Mairie",48.917562,2.602206,,1,,Europe/Paris,,OIF, +OIF:SA:53:2291,1,"Mairie",48.914796,2.664759,,1,,Europe/Paris,,OIF, +OIF:SA:53:2293,1,"Mairie",48.940111,2.617392,,1,,Europe/Paris,,OIF, +OIF:SA:53:2294,1,"Bois Madame",48.886188,2.583436,,1,,Europe/Paris,,OIF, +OIF:SA:53:2295,1,"Madeleine",48.888729,2.607364,,1,,Europe/Paris,,OIF, +OIF:SA:53:2297,1,"Marcel Paul",48.872807,2.646475,,1,,Europe/Paris,,OIF, +OIF:SA:53:2302,1,"Marché",48.909683,2.594878,,1,,Europe/Paris,,OIF, +OIF:SA:53:2303,1,"Marronnier",48.911312,2.666973,,1,,Europe/Paris,,OIF, +OIF:SA:53:2307,1,"Pierre Martin",48.869535,2.599637,,1,,Europe/Paris,,OIF, +OIF:SA:53:2311,1,"Les Martyrs",48.870739,2.576407,,1,,Europe/Paris,,OIF, +OIF:SA:53:2313,1,"Mauperthuis",48.938349,2.675907,,1,,Europe/Paris,,OIF, +OIF:SA:53:2317,1,"Mendès France",48.885811,2.623446,,1,,Europe/Paris,,OIF, +OIF:SA:53:2323,1,"Michelet",48.896195,2.619925,,1,,Europe/Paris,,OIF, +OIF:SA:53:2327,1,"Martyrs de Chateaubriant",48.960204,2.602076,,1,,Europe/Paris,,OIF, +OIF:SA:53:2335,1,"Mairie",48.984192,2.61908,,1,,Europe/Paris,,OIF, +OIF:SA:53:2345,1,"Môquet",48.975507,2.632593,,1,,Europe/Paris,,OIF, +OIF:SA:53:2348,1,"Moulin",48.93127,2.602856,,1,,Europe/Paris,,OIF, +OIF:SA:53:2351,1,"Vieux Moulin",48.8699,2.590068,,1,,Europe/Paris,,OIF, +OIF:SA:53:2353,1,"Moulin à Vent",48.980065,2.623854,,1,,Europe/Paris,,OIF, +OIF:SA:53:2355,1,"Parc de l'Aulnay",48.872513,2.645342,,1,,Europe/Paris,,OIF, +OIF:SA:53:2357,1,"Denis Papin",48.905116,2.593608,,1,,Europe/Paris,,OIF, +OIF:SA:53:2362,1,"Parc de la Mairie",48.982419,2.618247,,1,,Europe/Paris,,OIF, +OIF:SA:53:2365,1,"Passerelle",48.877003,2.630701,,1,,Europe/Paris,,OIF, +OIF:SA:53:2367,1,"Pasteur",48.906138,2.594703,,1,,Europe/Paris,,OIF, +OIF:SA:53:2371,1,"Pêcheurs",48.86675,2.637379,,1,,Europe/Paris,,OIF, +OIF:SA:53:2376,1,"Peupliers",48.886385,2.627483,,1,,Europe/Paris,,OIF, +OIF:SA:53:2377,1,"Piscine",48.876067,2.641875,,1,,Europe/Paris,,OIF, +OIF:SA:53:2382,1,"La Plaine",48.942175,2.611418,,1,,Europe/Paris,,OIF, +OIF:SA:53:2383,1,"Les Plantes",48.904841,2.666713,,1,,Europe/Paris,,OIF, +OIF:SA:53:2385,1,"Poitou",48.91731,2.650654,,1,,Europe/Paris,,OIF, +OIF:SA:53:2387,1,"Pomponne",48.877041,2.633446,,1,,Europe/Paris,,OIF, +OIF:SA:53:2393,1,"Grande Prairie",48.869791,2.578562,,1,,Europe/Paris,,OIF, +OIF:SA:53:2395,1,"République",48.881804,2.626517,,1,,Europe/Paris,,OIF, +OIF:SA:53:2401,1,"N34",48.879145,2.618476,,1,,Europe/Paris,,OIF, +OIF:SA:53:2403,1,"Terres Rouges",48.889373,2.602341,,1,,Europe/Paris,,OIF, +OIF:SA:53:2405,1,"Docteur Roux",48.887492,2.615503,,1,,Europe/Paris,,OIF, +OIF:SA:53:2407,1,"Rond-Point Nord",48.884694,2.62038,,1,,Europe/Paris,,OIF, +OIF:SA:53:2413,1,"Rue de Villeparisis",48.982498,2.613414,,1,,Europe/Paris,,OIF, +OIF:SA:53:2417,1,"Docteur Schweitzer",48.88031,2.627068,,1,,Europe/Paris,,OIF, +OIF:SA:53:2421,1,"Rond-Point des Sciences",48.904074,2.588105,,1,,Europe/Paris,,OIF, +OIF:SA:53:2426,1,"Sources",48.88478,2.573018,,1,,Europe/Paris,,OIF, +OIF:SA:53:2433,1,"Sylvie",48.870093,2.584892,,1,,Europe/Paris,,OIF, +OIF:SA:53:2435,1,"Trentaine",48.869022,2.601944,,1,,Europe/Paris,,OIF, +OIF:SA:53:2443,1,"Val Fleuri",48.881629,2.591682,,1,,Europe/Paris,,OIF, +OIF:SA:53:2445,1,"Verdun",48.943853,2.686103,,1,,Europe/Paris,,OIF, +OIF:SA:53:2447,1,"Vergers",48.877915,2.608325,,1,,Europe/Paris,,OIF, +OIF:SA:53:2451,1,"Anatole France",48.946701,2.609611,,1,,Europe/Paris,,OIF, +OIF:SA:53:2453,1,"Balzac",48.939261,2.611789,,1,,Europe/Paris,,OIF, +OIF:SA:53:2455,1,"Bois Fleuri / Lilas",48.933252,2.636016,,1,,Europe/Paris,,OIF, +OIF:SA:53:2457,1,"Cèdres",48.938893,2.605678,,1,,Europe/Paris,,OIF, +OIF:SA:53:2462,1,"Poste",48.945323,2.607996,,1,,Europe/Paris,,OIF, +OIF:SA:53:2465,1,"Aulnoy",48.875579,2.5937,,1,,Europe/Paris,,OIF, +OIF:SA:53:2467,1,"Haute Borne",48.88346,2.613907,,1,,Europe/Paris,,OIF, +OIF:SA:53:2471,1,"Maurice Bacquet",48.882301,2.615979,,1,,Europe/Paris,,OIF, +OIF:SA:53:2473,1,"Félix Buchin",48.875726,2.596235,,1,,Europe/Paris,,OIF, +OIF:SA:53:2476,1,"Collège Corot",48.90411,2.593003,,1,,Europe/Paris,,OIF, +OIF:SA:53:2478,1,"Austerlitz",48.878178,2.575508,,1,,Europe/Paris,,OIF, +OIF:SA:53:2481,1,"Buffon",48.942923,2.61348,,1,,Europe/Paris,,OIF, +OIF:SA:53:2502,1,"ZAC de la Tuilerie",48.889186,2.595498,,1,,Europe/Paris,,OIF, +OIF:SA:53:2503,1,"François Trinquand",48.876946,2.597379,,1,,Europe/Paris,,OIF, +OIF:SA:53:2516,1,"Lilas",48.961709,2.60308,,1,,Europe/Paris,,OIF, +OIF:SA:53:2521,1,"Goulet",48.916697,2.595145,,1,,Europe/Paris,,OIF, +OIF:SA:53:2523,1,"Lumière",48.880036,2.614162,,1,,Europe/Paris,,OIF, +OIF:SA:53:2531,1,"Base Olympique",48.866246,2.642301,,1,,Europe/Paris,,OIF, +OIF:SA:53:2536,1,"Abbesses",48.874966,2.58157,,1,,Europe/Paris,,OIF, +OIF:SA:53:2537,1,"Belle Île",48.870343,2.59601,,1,,Europe/Paris,,OIF, +OIF:SA:53:2541,1,"Bisy",48.91705,2.652146,,1,,Europe/Paris,,OIF, +OIF:SA:53:2543,1,"Centre d'Accueil",48.938513,2.602067,,1,,Europe/Paris,,OIF, +OIF:SA:53:2545,1,"3 Tilleuls",48.940257,2.678637,,1,,Europe/Paris,,OIF, +OIF:SA:53:2548,1,"4 Routes",48.886083,2.585961,,1,,Europe/Paris,,OIF, +OIF:SA:53:2553,1,"Paul Algis",48.869712,2.626075,,1,,Europe/Paris,,OIF, +OIF:SA:53:2555,1,"Arcades",48.881664,2.619192,,1,,Europe/Paris,,OIF, +OIF:SA:53:2557,1,"11 Arpents",48.906733,2.600098,,1,,Europe/Paris,,OIF, +OIF:SA:53:2561,1,"Henri Barbusse",48.879382,2.635333,,1,,Europe/Paris,,OIF, +OIF:SA:53:2563,1,"Collège Beau Soleil",48.887348,2.621335,,1,,Europe/Paris,,OIF, +OIF:SA:53:2565,1,"Adolphe Besson",48.874118,2.587602,,1,,Europe/Paris,,OIF, +OIF:SA:53:2567,1,"Bickart",48.884512,2.588654,,1,,Europe/Paris,,OIF, +OIF:SA:53:2568,1,"Centre Commercial",48.94563,2.666581,,1,,Europe/Paris,,OIF, +OIF:SA:53:2571,1,"Bordeaux",48.901016,2.672115,,1,,Europe/Paris,,OIF, +OIF:SA:53:2573,1,"Cimetière",48.917486,2.613776,,1,,Europe/Paris,,OIF, +OIF:SA:53:2575,1,"Mirabilis",48.907737,2.66924,,1,,Europe/Paris,,OIF, +OIF:SA:53:2578,1,"Poste",48.879304,2.587478,,1,,Europe/Paris,,OIF, +OIF:SA:53:2591,1,"Carnot",48.88171,2.633405,,1,,Europe/Paris,,OIF, +OIF:SA:53:2597,1,"Cheminots",48.974792,2.638234,,1,,Europe/Paris,,OIF, +OIF:SA:53:2599,1,"République",48.936742,2.619322,,1,,Europe/Paris,,OIF, +OIF:SA:53:2605,1,"Place Molière",48.893127,2.617557,,1,,Europe/Paris,,OIF, +OIF:SA:53:2607,1,"Louis Pasteur",48.9423,2.682604,,1,,Europe/Paris,,OIF, +OIF:SA:53:2615,1,"Centre Postal",48.89021,2.593718,,1,,Europe/Paris,,OIF, +OIF:SA:53:2617,1,"Becquerel",48.88913,2.594735,,1,,Europe/Paris,,OIF, +OIF:SA:53:2620,1,"Foyer Flamant",48.898737,2.590604,,1,,Europe/Paris,,OIF, +OIF:SA:53:2622,1,"Skate Park",48.887063,2.586043,,1,,Europe/Paris,,OIF, +OIF:SA:53:2625,1,"Centre",48.939313,2.614938,,1,,Europe/Paris,,OIF, +OIF:SA:53:2627,1,"Aristide Briand",48.949073,2.607163,,1,,Europe/Paris,,OIF, +OIF:SA:53:2629,1,"Gaston Bachelard",48.883401,2.612544,,1,,Europe/Paris,,OIF, +OIF:SA:53:2634,1,"Maison de l'Emploi",48.873875,2.589917,,1,,Europe/Paris,,OIF, +OIF:SA:53:2637,1,"République",48.869781,2.64117,,1,,Europe/Paris,,OIF, +OIF:SA:54:10009,1,"Boulevard des Alliés",48.393981,2.378302,,1,,Europe/Paris,,OIF, +OIF:SA:54:10013,1,"Courty",48.399923,2.381094,,1,,Europe/Paris,,OIF, +OIF:SA:54:10016,1,"Marché",48.391342,2.377787,,1,,Europe/Paris,,OIF, +OIF:SA:54:1002,1,"Mairie",48.317023,2.57049,,1,,Europe/Paris,,OIF, +OIF:SA:54:1004,1,"Butteaux",48.314607,2.564481,,1,,Europe/Paris,,OIF, +OIF:SA:54:10061,1,"Marolles en Beauce",48.374346,2.200581,,1,,Europe/Paris,,OIF, +OIF:SA:54:1008,1,"Château d'Eau",48.320098,2.577292,,1,,Europe/Paris,,OIF, +OIF:SA:54:1014,1,"École",48.317529,2.569266,,1,,Europe/Paris,,OIF, +OIF:SA:54:1016,1,"Bessonville",48.321321,2.594162,,1,,Europe/Paris,,OIF, +OIF:SA:54:10170,1,"Mespuits",48.356282,2.271815,,1,,Europe/Paris,,OIF, +OIF:SA:54:10174,1,"Gare Routière",48.402849,2.473808,,1,,Europe/Paris,,OIF, +OIF:SA:54:10176,1,"HLM",48.410711,2.466077,,1,,Europe/Paris,,OIF, +OIF:SA:54:10178,1,"Colombier",48.403675,2.470786,,1,,Europe/Paris,,OIF, +OIF:SA:54:10180,1,"Porte du Roy",48.399191,2.456078,,1,,Europe/Paris,,OIF, +OIF:SA:54:10183,1,"Église",48.42423,2.456156,,1,,Europe/Paris,,OIF, +OIF:SA:54:10185,1,"Le Lavoir",48.423827,2.459113,,1,,Europe/Paris,,OIF, +OIF:SA:54:10189,1,"Le Puits",48.428463,2.457334,,1,,Europe/Paris,,OIF, +OIF:SA:54:10191,1,"Scierie",48.437318,2.453193,,1,,Europe/Paris,,OIF, +OIF:SA:54:1020,1,"Marronniers",48.317342,2.570512,,1,,Europe/Paris,,OIF, +OIF:SA:54:10300,1,"La Montagne",48.408468,2.214995,,1,,Europe/Paris,,OIF, +OIF:SA:54:10449,1,"Grande Rue",48.383398,2.474149,,1,,Europe/Paris,,OIF, +OIF:SA:54:10451,1,"Mairie",48.382085,2.474563,,1,,Europe/Paris,,OIF, +OIF:SA:54:10455,1,"Saint-Pierre",48.385313,2.474025,,1,,Europe/Paris,,OIF, +OIF:SA:54:10465,1,"D'Huilet",48.402265,2.141944,,1,,Europe/Paris,,OIF, +OIF:SA:54:10469,1,"Mesnil Girault",48.404467,2.149619,,1,,Europe/Paris,,OIF, +OIF:SA:54:10586,1,"Orveau",48.448475,2.292019,,1,,Europe/Paris,,OIF, +OIF:SA:54:10662,1,"Mairie",48.357169,2.377672,,1,,Europe/Paris,,OIF, +OIF:SA:54:10664,1,"Abribus",48.407979,2.266424,,1,,Europe/Paris,,OIF, +OIF:SA:54:10667,1,"Mairie",48.404434,2.26256,,1,,Europe/Paris,,OIF, +OIF:SA:54:10669,1,"Petit Marais",48.402635,2.261118,,1,,Europe/Paris,,OIF, +OIF:SA:54:10716,1,"Bois Champbault",48.357533,2.235983,,1,,Europe/Paris,,OIF, +OIF:SA:54:10718,1,"Roinvilliers",48.356665,2.241219,,1,,Europe/Paris,,OIF, +OIF:SA:54:10720,1,"Ezerville",48.341104,2.232562,,1,,Europe/Paris,,OIF, +OIF:SA:54:11191,1,"Grand Frenneville",48.413005,2.295709,,1,,Europe/Paris,,OIF, +OIF:SA:54:11194,1,"La Lieue",48.391871,2.303042,,1,,Europe/Paris,,OIF, +OIF:SA:54:11196,1,"La Main Ferme",48.398038,2.30372,,1,,Europe/Paris,,OIF, +OIF:SA:54:11197,1,"Le Poty",48.385969,2.304665,,1,,Europe/Paris,,OIF, +OIF:SA:54:11200,1,"Maison Rouge",48.401571,2.300916,,1,,Europe/Paris,,OIF, +OIF:SA:54:11202,1,"Porte Frenneville",48.406953,2.304092,,1,,Europe/Paris,,OIF, +OIF:SA:54:11223,1,"Mairie",48.434641,2.359528,,1,,Europe/Paris,,OIF, +OIF:SA:54:11227,1,"Transformateur",48.433525,2.362574,,1,,Europe/Paris,,OIF, +OIF:SA:54:14217,1,"Rousset/Audigers",48.427138,2.405182,,1,,Europe/Paris,,OIF, +OIF:SA:54:14220,1,"Jarcy",48.425327,2.386762,,1,,Europe/Paris,,OIF, +OIF:SA:54:14221,1,"Marchais",48.447306,2.393087,,1,,Europe/Paris,,OIF, +OIF:SA:54:14225,1,"Pasloup",48.444965,2.363627,,1,,Europe/Paris,,OIF, +OIF:SA:54:14392,1,"Rue des Barreaux",48.435026,2.36706,,1,,Europe/Paris,,OIF, +OIF:SA:54:14396,1,"Bois Minard",48.331373,2.427743,,1,,Europe/Paris,,OIF, +OIF:SA:54:14397,1,"Bois Dormant",48.390936,2.495841,,1,,Europe/Paris,,OIF, +OIF:SA:54:14398,1,"Chemin de la Saussaie",48.388309,2.503189,,1,,Europe/Paris,,OIF, +OIF:SA:54:14399,1,"Chambergeot",48.396513,2.479252,,1,,Europe/Paris,,OIF, +OIF:SA:54:14400,1,"Chesnay",48.395327,2.496718,,1,,Europe/Paris,,OIF, +OIF:SA:54:14401,1,"Croix Saint-Jérôme",48.390752,2.502232,,1,,Europe/Paris,,OIF, +OIF:SA:54:14402,1,"Grandes Vallées",48.387898,2.501791,,1,,Europe/Paris,,OIF, +OIF:SA:54:14406,1,"Chemin Papillon",48.428431,2.251361,,1,,Europe/Paris,,OIF, +OIF:SA:54:14409,1,"Bonvilliers Grande Place",48.422726,2.224012,,1,,Europe/Paris,,OIF, +OIF:SA:54:14415,1,"Mairie",48.315956,2.417128,,1,,Europe/Paris,,OIF, +OIF:SA:54:14417,1,"Villetard",48.305399,2.420488,,1,,Europe/Paris,,OIF, +OIF:SA:54:14435,1,"Petit Gironville",48.370275,2.384787,,1,,Europe/Paris,,OIF, +OIF:SA:54:14437,1,"Rue des Sablons",48.420657,2.375446,,1,,Europe/Paris,,OIF, +OIF:SA:54:14439,1,"Rue du Clos Saint-Gervais",48.41576,2.378906,,1,,Europe/Paris,,OIF, +OIF:SA:54:14445,1,"Cimetière",48.397152,2.454373,,1,,Europe/Paris,,OIF, +OIF:SA:54:14447,1,"Château Gaillard",48.346,2.325844,,1,,Europe/Paris,,OIF, +OIF:SA:54:14457,1,"Collège",48.514115,2.44898,,1,,Europe/Paris,,OIF, +OIF:SA:54:14460,1,"Arbre Sec",48.401302,2.692956,,1,,Europe/Paris,,OIF, +OIF:SA:54:14462,1,"Plaine du Mée",48.393274,2.495544,,1,,Europe/Paris,,OIF, +OIF:SA:54:14464,1,"Villionne",48.322851,2.571804,,1,,Europe/Paris,,OIF, +OIF:SA:54:14466,1,"Les Canches",48.361571,2.564976,,1,,Europe/Paris,,OIF, +OIF:SA:54:14467,1,"La Mare aux Ormes",48.355905,2.565936,,1,,Europe/Paris,,OIF, +OIF:SA:54:14469,1,"Gare Routière",48.319064,2.570371,,1,,Europe/Paris,,OIF, +OIF:SA:54:14474,1,"Mairie",48.25722,2.50317,,1,,Europe/Paris,,OIF, +OIF:SA:54:14480,1,"Place",48.34322,2.603393,,1,,Europe/Paris,,OIF, +OIF:SA:54:14484,1,"Ronceveaux Vielle Ligne",48.272146,2.435472,,1,,Europe/Paris,,OIF, +OIF:SA:54:14485,1,"Roncevaux Place",48.281344,2.42544,,1,,Europe/Paris,,OIF, +OIF:SA:54:14494,1,"Les Rabiers",48.344747,2.379125,,1,,Europe/Paris,,OIF, +OIF:SA:54:14496,1,"ZAE du Chênet",48.396356,2.418615,,1,,Europe/Paris,,OIF, +OIF:SA:54:14506,1,"Clercy",48.458898,2.348854,,1,,Europe/Paris,,OIF, +OIF:SA:54:14507,1,"Saint-Jacques",48.400333,2.46915,,1,,Europe/Paris,,OIF, +OIF:SA:54:14509,1,"Châteauvert",48.464105,2.47726,,1,,Europe/Paris,,OIF, +OIF:SA:54:14513,1,"Place de l'Ancienne Gare",48.483025,2.494715,,1,,Europe/Paris,,OIF, +OIF:SA:54:14515,1,"CAT",48.538449,2.440653,,1,,Europe/Paris,,OIF, +OIF:SA:54:14517,1,"Gare Routière",48.62479,2.425558,,1,,Europe/Paris,,OIF, +OIF:SA:54:14519,1,"Cimetière",48.433159,2.450171,,1,,Europe/Paris,,OIF, +OIF:SA:54:14521,1,"Rue du Clos Noyer",48.402216,2.378511,,1,,Europe/Paris,,OIF, +OIF:SA:54:14523,1,"Lycée Professionnel Charles Baudelaire",48.637864,2.436019,,1,,Europe/Paris,,OIF, +OIF:SA:54:14524,1,"Guignonville",48.404345,2.143867,,1,,Europe/Paris,,OIF, +OIF:SA:54:14527,1,"Gare Routière",48.26678,2.688137,,1,,Europe/Paris,,OIF, +OIF:SA:54:14529,1,"Mairie",48.387057,2.491685,,1,,Europe/Paris,,OIF, +OIF:SA:54:14530,1,"Provenchères",48.440681,2.365503,,1,,Europe/Paris,,OIF, +OIF:SA:54:14533,1,"Saint-Spire",48.610204,2.485313,,1,,Europe/Paris,,OIF, +OIF:SA:54:2152,1,"Faisanderie",48.409397,2.693497,,1,,Europe/Paris,,OIF, +OIF:SA:54:2272,1,"Garentreville",48.23643,2.551349,,1,,Europe/Paris,,OIF, +OIF:SA:54:2441,1,"Village",48.259787,2.557867,,1,,Europe/Paris,,OIF, +OIF:SA:54:2447,1,"Le Buisson",48.256747,2.555882,,1,,Europe/Paris,,OIF, +OIF:SA:54:2724,1,"Larchant",48.284611,2.595605,,1,,Europe/Paris,,OIF, +OIF:SA:54:3823,1,"Auvers",48.383599,2.489232,,1,,Europe/Paris,,OIF, +OIF:SA:54:3830,1,"Église",48.383956,2.494699,,1,,Europe/Paris,,OIF, +OIF:SA:54:3833,1,"Porche des Écoles",48.381029,2.498267,,1,,Europe/Paris,,OIF, +OIF:SA:54:422,1,"Église",48.354691,2.570409,,1,,Europe/Paris,,OIF, +OIF:SA:54:424,1,"Meun",48.345864,2.564766,,1,,Europe/Paris,,OIF, +OIF:SA:54:4335,1,"Place",48.343891,2.640358,,1,,Europe/Paris,,OIF, +OIF:SA:54:440,1,"Amponville",48.277026,2.528031,,1,,Europe/Paris,,OIF, +OIF:SA:54:444,1,"Jacqueville",48.278462,2.527369,,1,,Europe/Paris,,OIF, +OIF:SA:54:4442,1,"Rumont",48.265424,2.497507,,1,,Europe/Paris,,OIF, +OIF:SA:54:446,1,"La Roche aux Sages",48.278814,2.529236,,1,,Europe/Paris,,OIF, +OIF:SA:54:5060,1,"Tousson",48.346549,2.457563,,1,,Europe/Paris,,OIF, +OIF:SA:54:5062,1,"Ferme",48.346884,2.455757,,1,,Europe/Paris,,OIF, +OIF:SA:54:5104,1,"Poste",48.343949,2.605184,,1,,Europe/Paris,,OIF, +OIF:SA:54:5176,1,"Bourg",48.35506,2.519157,,1,,Europe/Paris,,OIF, +OIF:SA:54:5373,1,"Centre",48.31793,2.650365,,1,,Europe/Paris,,OIF, +OIF:SA:54:5375,1,"Lotissement",48.323437,2.648551,,1,,Europe/Paris,,OIF, +OIF:SA:54:641,1,"Boissy aux Cailles",48.319892,2.501442,,1,,Europe/Paris,,OIF, +OIF:SA:54:643,1,"Mainbervilliers",48.305898,2.473002,,1,,Europe/Paris,,OIF, +OIF:SA:54:645,1,"Marlanval",48.307401,2.509192,,1,,Europe/Paris,,OIF, +OIF:SA:54:685,1,"Mairie",48.260074,2.442659,,1,,Europe/Paris,,OIF, +OIF:SA:54:687,1,"Saint-Denis",48.258868,2.438799,,1,,Europe/Paris,,OIF, +OIF:SA:54:790,1,"Avrilmont",48.237479,2.524145,,1,,Europe/Paris,,OIF, +OIF:SA:54:792,1,"Burcy",48.239047,2.522313,,1,,Europe/Paris,,OIF, +OIF:SA:54:8445,1,"Tabac",48.528309,2.492978,,1,,Europe/Paris,,OIF, +OIF:SA:54:845,1,"Base de Loisirs",48.293971,2.431848,,1,,Europe/Paris,,OIF, +OIF:SA:54:849,1,"Herbeauvilliers",48.282109,2.475358,,1,,Europe/Paris,,OIF, +OIF:SA:54:851,1,"Mairie",48.286811,2.430313,,1,,Europe/Paris,,OIF, +OIF:SA:54:8518,1,"Blandy",48.312324,2.255998,,1,,Europe/Paris,,OIF, +OIF:SA:54:8520,1,"Église",48.335287,2.372315,,1,,Europe/Paris,,OIF, +OIF:SA:54:8524,1,"Bois Herpin",48.369791,2.235217,,1,,Europe/Paris,,OIF, +OIF:SA:54:8606,1,"Audigers",48.422454,2.389096,,1,,Europe/Paris,,OIF, +OIF:SA:54:8622,1,"Tilleul",48.428552,2.383104,,1,,Europe/Paris,,OIF, +OIF:SA:54:8628,1,"Place de l'Église",48.431642,2.285001,,1,,Europe/Paris,,OIF, +OIF:SA:54:8630,1,"Poste",48.431178,2.272898,,1,,Europe/Paris,,OIF, +OIF:SA:54:8691,1,"Brouy",48.316672,2.278893,,1,,Europe/Paris,,OIF, +OIF:SA:54:8693,1,"Fénneville",48.328004,2.288535,,1,,Europe/Paris,,OIF, +OIF:SA:54:8774,1,"Mairie",48.360482,2.387941,,1,,Europe/Paris,,OIF, +OIF:SA:54:8776,1,"Stade",48.367841,2.388637,,1,,Europe/Paris,,OIF, +OIF:SA:54:8867,1,"Mairie",48.343145,2.324132,,1,,Europe/Paris,,OIF, +OIF:SA:54:8943,1,"Château",48.440705,2.476346,,1,,Europe/Paris,,OIF, +OIF:SA:54:8945,1,"Place",48.43955,2.475931,,1,,Europe/Paris,,OIF, +OIF:SA:54:8961,1,"Mairie",48.417599,2.378064,,1,,Europe/Paris,,OIF, +OIF:SA:54:8992,1,"Église",48.455093,2.480446,,1,,Europe/Paris,,OIF, +OIF:SA:54:8994,1,"Grande Rue",48.445387,2.469994,,1,,Europe/Paris,,OIF, +OIF:SA:54:8996,1,"Les Bons Amis",48.450049,2.473033,,1,,Europe/Paris,,OIF, +OIF:SA:54:9304,1,"Jeanne d'Arc",48.43831,2.154977,,1,,Europe/Paris,,OIF, +OIF:SA:54:9309,1,"LEP Mandela",48.439658,2.148892,,1,,Europe/Paris,,OIF, +OIF:SA:54:9461,1,"Grand Bourg",48.643151,2.436596,,1,,Europe/Paris,,OIF, +OIF:SA:54:9489,1,"SNECMA",48.621502,2.44989,,1,,Europe/Paris,,OIF, +OIF:SA:54:9558,1,"La Forêt Sainte-Croix",48.383326,2.229138,,1,,Europe/Paris,,OIF, +OIF:SA:54:9627,1,"Route de Maisse",48.370744,2.380334,,1,,Europe/Paris,,OIF, +OIF:SA:54:9692,1,"Collège Léonard de Vinci",48.463959,2.350551,,1,,Europe/Paris,,OIF, +OIF:SA:54:9696,1,"Jouy",48.457989,2.355301,,1,,Europe/Paris,,OIF, +OIF:SA:55:103,1,"Les Fortes Terres",48.938709,2.687447,,1,,Europe/Paris,,OIF, +OIF:SA:55:105,1,"Les Petits Bois",48.940322,2.682649,,1,,Europe/Paris,,OIF, +OIF:SA:55:107,1,"Les Pommiers",48.946563,2.682861,,1,,Europe/Paris,,OIF, +OIF:SA:55:109,1,"Collège les Tilleuls",48.940222,2.67861,,1,,Europe/Paris,,OIF, +OIF:SA:55:111,1,"Libération",48.922038,2.542885,,1,,Europe/Paris,,OIF, +OIF:SA:55:124,1,"Mairie",48.918698,2.537542,,1,,Europe/Paris,,OIF, +OIF:SA:55:132,1,"Pont de Bondy",48.904093,2.471322,,1,,Europe/Paris,,OIF, +OIF:SA:55:14,1,"Henri IV",48.936055,2.578183,,1,,Europe/Paris,,OIF, +OIF:SA:55:145,1,"Passerelle N3",48.941649,2.639644,,1,,Europe/Paris,,OIF, +OIF:SA:55:151,1,"Pasteur / Hôpital Jean Verdier",48.906968,2.487937,,1,,Europe/Paris,,OIF, +OIF:SA:55:153,1,"Poste",48.971544,2.764058,,1,,Europe/Paris,,OIF, +OIF:SA:55:155,1,"Poste",48.967333,2.695953,,1,,Europe/Paris,,OIF, +OIF:SA:55:157,1,"Poudrerie",48.933482,2.55373,,1,,Europe/Paris,,OIF, +OIF:SA:55:16,1,"Centre",48.945436,2.776586,,1,,Europe/Paris,,OIF, +OIF:SA:55:162,1,"Schuman",48.926163,2.545309,,1,,Europe/Paris,,OIF, +OIF:SA:55:164,1,"Souilly / Centre",48.950305,2.673921,,1,,Europe/Paris,,OIF, +OIF:SA:55:169,1,"Charles de Gaulle",48.916583,2.532,,1,,Europe/Paris,,OIF, +OIF:SA:55:180,1,"Centre",48.940672,2.741477,,1,,Europe/Paris,,OIF, +OIF:SA:55:182,1,"Zone Industrielle",48.947552,2.67013,,1,,Europe/Paris,,OIF, +OIF:SA:55:186,1,"Avenue des Lilas",48.933777,2.637216,,1,,Europe/Paris,,OIF, +OIF:SA:55:190,1,"Mairie Annexe",48.93848,2.639617,,1,,Europe/Paris,,OIF, +OIF:SA:55:191,1,"Brazza",48.934541,2.565838,,1,,Europe/Paris,,OIF, +OIF:SA:55:195,1,"Résidence Jean Monnet",48.929469,2.552312,,1,,Europe/Paris,,OIF, +OIF:SA:55:197,1,"Fourche",48.90797,2.494722,,1,,Europe/Paris,,OIF, +OIF:SA:55:217,1,"Zone d'Activité",48.969414,2.757707,,1,,Europe/Paris,,OIF, +OIF:SA:55:219,1,"La Distillerie",48.941558,2.727841,,1,,Europe/Paris,,OIF, +OIF:SA:55:221,1,"Le Parc",48.933062,2.775137,,1,,Europe/Paris,,OIF, +OIF:SA:55:225,1,"Collège Langevin / Lycée Balzac",48.973383,2.650851,,1,,Europe/Paris,,OIF, +OIF:SA:55:226,1,"Cimetière",48.940048,2.743887,,1,,Europe/Paris,,OIF, +OIF:SA:55:24,1,"Centre",48.930595,2.775184,,1,,Europe/Paris,,OIF, +OIF:SA:55:26,1,"Centre",48.983574,2.696803,,1,,Europe/Paris,,OIF, +OIF:SA:55:28,1,"Centre",48.942727,2.803733,,1,,Europe/Paris,,OIF, +OIF:SA:55:34,1,"Chanzy",48.912532,2.522412,,1,,Europe/Paris,,OIF, +OIF:SA:55:36,1,"Château",48.965652,2.671605,,1,,Europe/Paris,,OIF, +OIF:SA:55:4,1,"Saint-Hubert",48.937667,2.593442,,1,,Europe/Paris,,OIF, +OIF:SA:55:40,1,"Cimetière",48.946188,2.695711,,1,,Europe/Paris,,OIF, +OIF:SA:55:44,1,"Cité Technique",48.955646,2.864985,,1,,Europe/Paris,,OIF, +OIF:SA:55:50,1,"Closerie",48.939987,2.667803,,1,,Europe/Paris,,OIF, +OIF:SA:55:56,1,"Deux Départements",48.938102,2.598266,,1,,Europe/Paris,,OIF, +OIF:SA:55:6,1,"Gymnase Aubertin",48.940483,2.621064,,1,,Europe/Paris,,OIF, +OIF:SA:55:60,1,"Église",48.909299,2.503796,,1,,Europe/Paris,,OIF, +OIF:SA:55:62,1,"Église",48.944891,2.690667,,1,,Europe/Paris,,OIF, +OIF:SA:55:63,1,"Établissements Scolaires",48.971911,2.648228,,1,,Europe/Paris,,OIF, +OIF:SA:55:65,1,"Victor Hugo / Jean Moulin",48.910487,2.511562,,1,,Europe/Paris,,OIF, +OIF:SA:55:78,1,"Gare Routière",48.972421,2.760018,,1,,Europe/Paris,,OIF, +OIF:SA:55:83,1,"Alsace",48.936961,2.586733,,1,,Europe/Paris,,OIF, +OIF:SA:55:87,1,"Jean Jaurès",48.944678,2.682016,,1,,Europe/Paris,,OIF, +OIF:SA:55:95,1,"La Gabrielle",48.941991,2.689693,,1,,Europe/Paris,,OIF, +OIF:SA:55:97,1,"La Rosse",48.95412,2.667505,,1,,Europe/Paris,,OIF, +OIF:SA:56:10578,1,"Rond-Point de Mondétour",48.684302,2.187391,,1,,Europe/Paris,,OIF, +OIF:SA:56:10682,1,"Charles de Gaulle",48.67162,2.537672,,1,,Europe/Paris,,OIF, +OIF:SA:56:10736,1,"CEA / Porte Nord",48.730131,2.148955,,1,,Europe/Paris,,OIF, +OIF:SA:56:10743,1,"Christ / N306",48.729842,2.162673,,1,,Europe/Paris,,OIF, +OIF:SA:56:10920,1,"Salvador Allende",48.592538,2.261357,,1,,Europe/Paris,,OIF, +OIF:SA:56:11364,1,"Norvège",48.691774,2.215793,,1,,Europe/Paris,,OIF, +OIF:SA:56:11366,1,"Québec 25",48.691417,2.218252,,1,,Europe/Paris,,OIF, +OIF:SA:56:11474,1,"Rond-Point - Maison Foujita",48.729241,2.127165,,1,,Europe/Paris,,OIF, +OIF:SA:56:11662,1,"Atlantique 1",48.683435,2.199446,,1,,Europe/Paris,,OIF, +OIF:SA:56:11664,1,"Atlantique 2",48.681437,2.199098,,1,,Europe/Paris,,OIF, +OIF:SA:56:11668,1,"Baltique",48.686948,2.20596,,1,,Europe/Paris,,OIF, +OIF:SA:56:11709,1,"Mairie",48.682502,2.170677,,1,,Europe/Paris,,OIF, +OIF:SA:56:11713,1,"Pacifique",48.684199,2.194034,,1,,Europe/Paris,,OIF, +OIF:SA:56:11715,1,"Parana",48.680625,2.196501,,1,,Europe/Paris,,OIF, +OIF:SA:56:11721,1,"Québec 5",48.688198,2.20891,,1,,Europe/Paris,,OIF, +OIF:SA:56:11730,1,"Tropique",48.684394,2.198999,,1,,Europe/Paris,,OIF, +OIF:SA:56:11735,1,"D'Alembert",48.773835,2.045653,,1,,Europe/Paris,,OIF, +OIF:SA:56:11739,1,"École Polytechnique / Laboratoire",48.712737,2.204961,,1,,Europe/Paris,,OIF, +OIF:SA:56:11740,1,"École Polytechnique / Lozère",48.709871,2.210228,,1,,Europe/Paris,,OIF, +OIF:SA:56:11743,1,"Camille Claudel",48.719577,2.231939,,1,,Europe/Paris,,OIF, +OIF:SA:56:11748,1,"Canada",48.687763,2.197181,,1,,Europe/Paris,,OIF, +OIF:SA:56:11749,1,"Gendarmerie",48.441214,2.14917,,1,,Europe/Paris,,OIF, +OIF:SA:56:11768,1,"Chemin Vert",48.693075,2.430447,,1,,Europe/Paris,,OIF, +OIF:SA:56:11802,1,"Rond-Point",48.684085,2.188679,,1,,Europe/Paris,,OIF, +OIF:SA:56:11804,1,"Ensta - les Joncherettes",48.710163,2.218842,,1,,Europe/Paris,,OIF, +OIF:SA:56:11811,1,"Vieille Remise",48.715807,2.309915,,1,,Europe/Paris,,OIF, +OIF:SA:56:11813,1,"ZI de Montavas",48.725528,2.316615,,1,,Europe/Paris,,OIF, +OIF:SA:56:11825,1,"Université Paris Saclay",48.712445,2.172408,,1,,Europe/Paris,,OIF, +OIF:SA:56:11857,1,"Bruneau",48.689496,2.206413,,1,,Europe/Paris,,OIF, +OIF:SA:56:11859,1,"Palaiseau Ville",48.721955,2.248888,,1,,Europe/Paris,,OIF, +OIF:SA:56:11861,1,"La Vallée",48.724381,2.241358,,1,,Europe/Paris,,OIF, +OIF:SA:56:11863,1,"Toronto",48.744758,2.358678,,1,,Europe/Paris,,OIF, +OIF:SA:56:11865,1,"Centre Omnisport",48.733763,2.334901,,1,,Europe/Paris,,OIF, +OIF:SA:56:11867,1,"Ter@Tec",48.597853,2.203535,,1,,Europe/Paris,,OIF, +OIF:SA:56:11871,1,"Résidence la Vallée",48.626376,2.474003,,1,,Europe/Paris,,OIF, +OIF:SA:56:11883,1,"Fresnel Vauve",48.715265,2.202873,,1,,Europe/Paris,,OIF, +OIF:SA:56:11885,1,"Campus",48.715044,2.197848,,1,,Europe/Paris,,OIF, +OIF:SA:56:11887,1,"Université Paris-Saclay",48.711891,2.171582,,1,,Europe/Paris,,OIF, +OIF:SA:56:11889,1,"Moulon",48.711937,2.166284,,1,,Europe/Paris,,OIF, +OIF:SA:56:11891,1,"Joliot Curie",48.711015,2.162376,,1,,Europe/Paris,,OIF, +OIF:SA:56:11893,1,"Orme des Merisiers",48.711787,2.149827,,1,,Europe/Paris,,OIF, +OIF:SA:56:11895,1,"Saint-Aubin",48.714438,2.146696,,1,,Europe/Paris,,OIF, +OIF:SA:56:11897,1,"Mare du Vivier",48.718732,2.151102,,1,,Europe/Paris,,OIF, +OIF:SA:56:11901,1,"Corbeville",48.713566,2.190986,,1,,Europe/Paris,,OIF, +OIF:SA:56:5837,1,"Rond-Point",48.74031,2.096483,,1,,Europe/Paris,,OIF, +OIF:SA:56:6404,1,"Technocentre / Gare Routière",48.76141,2.077318,,1,,Europe/Paris,,OIF, +OIF:SA:56:6705,1,"Plessis / Mornay",48.565721,1.987506,,1,,Europe/Paris,,OIF, +OIF:SA:56:9051,1,"Lycée",48.534486,1.99671,,1,,Europe/Paris,,OIF, +OIF:SA:56:9397,1,"Lycée Professionnel / École Normale",48.634622,2.464643,,1,,Europe/Paris,,OIF, +OIF:SA:56:9445,1,"Cité Administrative",48.629258,2.436339,,1,,Europe/Paris,,OIF, +OIF:SA:56:9556,1,"Église",48.479507,2.042825,,1,,Europe/Paris,,OIF, +OIF:SA:57:10,1,"Guyonnerie",48.701034,2.156794,,1,,Europe/Paris,,OIF, +OIF:SA:57:100,1,"Centre",48.686953,2.145086,,1,,Europe/Paris,,OIF, +OIF:SA:57:1000,1,"Orgeval",48.697765,2.203197,,1,,Europe/Paris,,OIF, +OIF:SA:57:1010,1,"Cimetière",48.698826,2.20595,,1,,Europe/Paris,,OIF, +OIF:SA:57:1020,1,"Ruisseau",48.698902,2.199527,,1,,Europe/Paris,,OIF, +OIF:SA:57:1030,1,"Résidence Saint-Laurent",48.698766,2.190647,,1,,Europe/Paris,,OIF, +OIF:SA:57:1040,1,"Charles de Gaulle",48.70119,2.188827,,1,,Europe/Paris,,OIF, +OIF:SA:57:1050,1,"Racine",48.703163,2.191782,,1,,Europe/Paris,,OIF, +OIF:SA:57:1070,1,"École du Guichet",48.705589,2.195408,,1,,Europe/Paris,,OIF, +OIF:SA:57:1080,1,"Fournier",48.703941,2.195888,,1,,Europe/Paris,,OIF, +OIF:SA:57:1100,1,"Aristide Briand / Résidence d'Orsay",48.707089,2.197659,,1,,Europe/Paris,,OIF, +OIF:SA:57:111,1,"Ruisseau",48.688774,2.148297,,1,,Europe/Paris,,OIF, +OIF:SA:57:1110,1,"Châteaufort",48.708124,2.198878,,1,,Europe/Paris,,OIF, +OIF:SA:57:1122,1,"Martinière",48.70928,2.195779,,1,,Europe/Paris,,OIF, +OIF:SA:57:1130,1,"Couturier",48.709618,2.193469,,1,,Europe/Paris,,OIF, +OIF:SA:57:1140,1,"Corniche",48.708939,2.196459,,1,,Europe/Paris,,OIF, +OIF:SA:57:1150,1,"Buisson",48.707868,2.195701,,1,,Europe/Paris,,OIF, +OIF:SA:57:1160,1,"Mûriers",48.711987,2.1828,,1,,Europe/Paris,,OIF, +OIF:SA:57:1171,1,"Plan",48.71137,2.185097,,1,,Europe/Paris,,OIF, +OIF:SA:57:1180,1,"Versailles",48.709004,2.187237,,1,,Europe/Paris,,OIF, +OIF:SA:57:120,1,"Clos de Bures",48.690534,2.150483,,1,,Europe/Paris,,OIF, +OIF:SA:57:1230,1,"Château",48.701422,2.180122,,1,,Europe/Paris,,OIF, +OIF:SA:57:1240,1,"Bibliothèque",48.703185,2.17755,,1,,Europe/Paris,,OIF, +OIF:SA:57:1250,1,"Georges Poitou",48.703522,2.174507,,1,,Europe/Paris,,OIF, +OIF:SA:57:1260,1,"Verger",48.702078,2.173263,,1,,Europe/Paris,,OIF, +OIF:SA:57:1270,1,"Amphi",48.701799,2.167044,,1,,Europe/Paris,,OIF, +OIF:SA:57:1280,1,"L'Isles",48.699567,2.164818,,1,,Europe/Paris,,OIF, +OIF:SA:57:1290,1,"Jean Monnet",48.699301,2.167548,,1,,Europe/Paris,,OIF, +OIF:SA:57:130,1,"Jules Verne",48.69193,2.151748,,1,,Europe/Paris,,OIF, +OIF:SA:57:1300,1,"Launay",48.702785,2.181157,,1,,Europe/Paris,,OIF, +OIF:SA:57:1310,1,"Bois des Rames",48.706919,2.180785,,1,,Europe/Paris,,OIF, +OIF:SA:57:1340,1,"Océanie 1",48.677877,2.199067,,1,,Europe/Paris,,OIF, +OIF:SA:57:1350,1,"Océanie 3",48.684205,2.207046,,1,,Europe/Paris,,OIF, +OIF:SA:57:1360,1,"Miniparc",48.678924,2.194612,,1,,Europe/Paris,,OIF, +OIF:SA:57:1370,1,"Terre de Feu",48.677343,2.195974,,1,,Europe/Paris,,OIF, +OIF:SA:57:1390,1,"IUT Pôle d'Ingénierie",48.712436,2.172381,,1,,Europe/Paris,,OIF, +OIF:SA:57:140,1,"Voltaire",48.69344,2.149007,,1,,Europe/Paris,,OIF, +OIF:SA:57:1422,1,"Joliot Curie",48.711015,2.162349,,1,,Europe/Paris,,OIF, +OIF:SA:57:1460,1,"Avenue des Ulis",48.683918,2.161496,,1,,Europe/Paris,,OIF, +OIF:SA:57:1471,1,"Rond-Point Corbeville",48.714104,2.173177,,1,,Europe/Paris,,OIF, +OIF:SA:57:1490,1,"De Broglie",48.707893,2.176028,,1,,Europe/Paris,,OIF, +OIF:SA:57:150,1,"Briand",48.696339,2.146097,,1,,Europe/Paris,,OIF, +OIF:SA:57:1560,1,"Raoul Dautry - CEA Porte Est",48.723824,2.156335,,1,,Europe/Paris,,OIF, +OIF:SA:57:1590,1,"Mairie",48.730784,2.174117,,1,,Europe/Paris,,OIF, +OIF:SA:57:1610,1,"Val d'Albian",48.756667,2.172214,,1,,Europe/Paris,,OIF, +OIF:SA:57:1620,1,"Ampère / Curie",48.756828,2.174864,,1,,Europe/Paris,,OIF, +OIF:SA:57:1640,1,"Cepr",48.749383,2.172699,,1,,Europe/Paris,,OIF, +OIF:SA:57:1650,1,"Gymnase de Saclay",48.755082,2.179464,,1,,Europe/Paris,,OIF, +OIF:SA:57:1700,1,"Petit Viltain",48.750187,2.166125,,1,,Europe/Paris,,OIF, +OIF:SA:57:1710,1,"8 Mai 1945",48.695602,2.170262,,1,,Europe/Paris,,OIF, +OIF:SA:57:190,1,"Y",48.684124,2.20277,,1,,Europe/Paris,,OIF, +OIF:SA:57:1960,1,"Grands Champs - Favreuse",48.733025,2.201781,,1,,Europe/Paris,,OIF, +OIF:SA:57:1992,1,"Fresnel",48.716276,2.202633,,1,,Europe/Paris,,OIF, +OIF:SA:57:220,1,"Atlantique 2",48.681419,2.199132,,1,,Europe/Paris,,OIF, +OIF:SA:57:2222,1,"Université Paris Saclay",48.711878,2.171548,,1,,Europe/Paris,,OIF, +OIF:SA:57:2232,1,"Mare du Vivier - CEA Porte Sud",48.718701,2.151062,,1,,Europe/Paris,,OIF, +OIF:SA:57:2480,1,"Place des Causeuses",48.717014,2.234865,,1,,Europe/Paris,,OIF, +OIF:SA:57:2490,1,"Galliéni / les Graviers",48.72328,2.247759,,1,,Europe/Paris,,OIF, +OIF:SA:57:250,1,"Croisement",48.68954,2.210943,,1,,Europe/Paris,,OIF, +OIF:SA:57:2520,1,"Charles de Gaulle",48.699503,2.210586,,1,,Europe/Paris,,OIF, +OIF:SA:57:2530,1,"Place des Suisses",48.699966,2.21476,,1,,Europe/Paris,,OIF, +OIF:SA:57:2540,1,"Les Casseaux",48.700349,2.220463,,1,,Europe/Paris,,OIF, +OIF:SA:57:2550,1,"Résidence du Parc / Mairie",48.698782,2.225911,,1,,Europe/Paris,,OIF, +OIF:SA:57:2560,1,"MJC Boby Lapointe",48.698422,2.23131,,1,,Europe/Paris,,OIF, +OIF:SA:57:2570,1,"Les Foulons",48.698682,2.23522,,1,,Europe/Paris,,OIF, +OIF:SA:57:2580,1,"Écoles la Roche",48.699952,2.24329,,1,,Europe/Paris,,OIF, +OIF:SA:57:2590,1,"Rue du Viaduc",48.700973,2.245414,,1,,Europe/Paris,,OIF, +OIF:SA:57:2600,1,"Henri Dunant",48.703111,2.243033,,1,,Europe/Paris,,OIF, +OIF:SA:57:2610,1,"Villiers le Lavoir",48.69175,2.249401,,1,,Europe/Paris,,OIF, +OIF:SA:57:2640,1,"Pont Cascades",48.696642,2.212514,,1,,Europe/Paris,,OIF, +OIF:SA:57:2651,1,"Village",48.700123,2.256937,,1,,Europe/Paris,,OIF, +OIF:SA:57:2660,1,"Collège Jules Verne",48.699572,2.229916,,1,,Europe/Paris,,OIF, +OIF:SA:57:2680,1,"Millet",48.693524,2.212644,,1,,Europe/Paris,,OIF, +OIF:SA:57:2690,1,"Rond-Point de Montreux",48.69378,2.217165,,1,,Europe/Paris,,OIF, +OIF:SA:57:2700,1,"Butte Sainte-Catherine",48.693949,2.207293,,1,,Europe/Paris,,OIF, +OIF:SA:57:2710,1,"Rue de l'Avenir",48.697302,2.207597,,1,,Europe/Paris,,OIF, +OIF:SA:57:2720,1,"Les Chênes",48.705204,2.24692,,1,,Europe/Paris,,OIF, +OIF:SA:57:2730,1,"Grand Dôme",48.689621,2.229176,,1,,Europe/Paris,,OIF, +OIF:SA:57:2740,1,"Schweitzer",48.703405,2.245036,,1,,Europe/Paris,,OIF, +OIF:SA:57:280,1,"Lfb",48.684694,2.194488,,1,,Europe/Paris,,OIF, +OIF:SA:57:290,1,"Parana",48.680607,2.196481,,1,,Europe/Paris,,OIF, +OIF:SA:57:300,1,"Pacifique",48.684195,2.193994,,1,,Europe/Paris,,OIF, +OIF:SA:57:310,1,"Sterne",48.689489,2.214391,,1,,Europe/Paris,,OIF, +OIF:SA:57:320,1,"Québec",48.688162,2.208882,,1,,Europe/Paris,,OIF, +OIF:SA:57:330,1,"Laponie",48.688551,2.202806,,1,,Europe/Paris,,OIF, +OIF:SA:57:3320,1,"Groupe Scolaire J. Macé",48.704216,2.217657,,1,,Europe/Paris,,OIF, +OIF:SA:57:3330,1,"Bois de Fourcherolles",48.703667,2.225629,,1,,Europe/Paris,,OIF, +OIF:SA:57:3340,1,"Marceau - les Chandeliers",48.703895,2.22954,,1,,Europe/Paris,,OIF, +OIF:SA:57:3350,1,"Collège Charles Péguy",48.705154,2.235744,,1,,Europe/Paris,,OIF, +OIF:SA:57:3360,1,"Place de la Victoire - Centre Ville",48.711274,2.244649,,1,,Europe/Paris,,OIF, +OIF:SA:57:3380,1,"Ruchères",48.731454,2.233061,,1,,Europe/Paris,,OIF, +OIF:SA:57:3390,1,"Quatre Septembre",48.735435,2.228632,,1,,Europe/Paris,,OIF, +OIF:SA:57:3400,1,"Résidence de l'Yvette",48.69887,2.19506,,1,,Europe/Paris,,OIF, +OIF:SA:57:3410,1,"Lycée B Pascal",48.696811,2.187122,,1,,Europe/Paris,,OIF, +OIF:SA:57:3420,1,"Stade de Rugby",48.702069,2.209921,,1,,Europe/Paris,,OIF, +OIF:SA:57:3430,1,"Pierre Longue",48.698291,2.246091,,1,,Europe/Paris,,OIF, +OIF:SA:57:350,1,"Canada",48.687542,2.196679,,1,,Europe/Paris,,OIF, +OIF:SA:57:360,1,"Canada 1",48.686177,2.194287,,1,,Europe/Paris,,OIF, +OIF:SA:57:380,1,"Ferme",48.684753,2.184089,,1,,Europe/Paris,,OIF, +OIF:SA:57:390,1,"Bathes",48.685456,2.178148,,1,,Europe/Paris,,OIF, +OIF:SA:57:410,1,"Barceleau",48.686581,2.175993,,1,,Europe/Paris,,OIF, +OIF:SA:57:430,1,"Champagne",48.686761,2.172795,,1,,Europe/Paris,,OIF, +OIF:SA:57:440,1,"Île de France",48.686069,2.169973,,1,,Europe/Paris,,OIF, +OIF:SA:57:450,1,"Passerelle Automne",48.683889,2.169689,,1,,Europe/Paris,,OIF, +OIF:SA:57:460,1,"Hautes Plaines",48.682703,2.167127,,1,,Europe/Paris,,OIF, +OIF:SA:57:550,1,"Beaumontel",48.685601,2.160099,,1,,Europe/Paris,,OIF, +OIF:SA:57:570,1,"Bourgogne",48.683727,2.176382,,1,,Europe/Paris,,OIF, +OIF:SA:57:580,1,"Bois Persan",48.688727,2.199156,,1,,Europe/Paris,,OIF, +OIF:SA:57:60,1,"La Justice",48.683384,2.147713,,1,,Europe/Paris,,OIF, +OIF:SA:57:610,1,"Joffre",48.692596,2.180522,,1,,Europe/Paris,,OIF, +OIF:SA:57:61500,1,"IUT / Maison de l'Ingénieur",48.709321,2.171882,,1,,Europe/Paris,,OIF, +OIF:SA:57:620,1,"Mairie",48.698501,2.18745,,1,,Europe/Paris,,OIF, +OIF:SA:57:640,1,"Escaliers des Ulis",48.689783,2.181447,,1,,Europe/Paris,,OIF, +OIF:SA:57:650,1,"Monthléry",48.685396,2.187786,,1,,Europe/Paris,,OIF, +OIF:SA:57:660,1,"Les Amonts",48.683449,2.163527,,1,,Europe/Paris,,OIF, +OIF:SA:57:670,1,"Montjay",48.683667,2.159142,,1,,Europe/Paris,,OIF, +OIF:SA:57:680,1,"Ihes",48.693816,2.166235,,1,,Europe/Paris,,OIF, +OIF:SA:57:690,1,"Tournemire",48.687045,2.167581,,1,,Europe/Paris,,OIF, +OIF:SA:57:70,1,"Rue Neuve",48.682633,2.142143,,1,,Europe/Paris,,OIF, +OIF:SA:57:710,1,"Grand Mesnil",48.695368,2.173358,,1,,Europe/Paris,,OIF, +OIF:SA:57:730,1,"Stade",48.681503,2.173524,,1,,Europe/Paris,,OIF, +OIF:SA:57:740,1,"Cévennes",48.678687,2.174775,,1,,Europe/Paris,,OIF, +OIF:SA:57:750,1,"Centre Commercial Ulis 2 - Aubrac",48.676714,2.174761,,1,,Europe/Paris,,OIF, +OIF:SA:57:760,1,"Bures Cimetière",48.690901,2.161079,,1,,Europe/Paris,,OIF, +OIF:SA:57:770,1,"École de Mondétour",48.685178,2.185893,,1,,Europe/Paris,,OIF, +OIF:SA:57:780,1,"Bleuets",48.681141,2.185091,,1,,Europe/Paris,,OIF, +OIF:SA:57:790,1,"Cottage",48.678956,2.184405,,1,,Europe/Paris,,OIF, +OIF:SA:57:80,1,"Victor Hugo",48.684564,2.143941,,1,,Europe/Paris,,OIF, +OIF:SA:57:800,1,"Coquelicots",48.677328,2.183921,,1,,Europe/Paris,,OIF, +OIF:SA:57:8030,1,"Lycée Fustel de Coulanges",48.732493,2.265778,,1,,Europe/Paris,,OIF, +OIF:SA:57:8050,1,"Lycée de Vilgénis",48.731433,2.254323,,1,,Europe/Paris,,OIF, +OIF:SA:57:8060,1,"Parc de Vilgénis",48.731245,2.243268,,1,,Europe/Paris,,OIF, +OIF:SA:57:8070,1,"Rond-Point du Pileu",48.730166,2.241134,,1,,Europe/Paris,,OIF, +OIF:SA:57:810,1,"Square",48.676992,2.181044,,1,,Europe/Paris,,OIF, +OIF:SA:57:8111,1,"La Vieille Vigne",48.728687,2.236771,,1,,Europe/Paris,,OIF, +OIF:SA:57:8121,1,"Rue du Pileu",48.730014,2.238589,,1,,Europe/Paris,,OIF, +OIF:SA:57:8150,1,"Igny Entreprises",48.730566,2.238561,,1,,Europe/Paris,,OIF, +OIF:SA:57:8161,1,"Gymnase",48.732357,2.22926,,1,,Europe/Paris,,OIF, +OIF:SA:57:8170,1,"Jules Ferry - République",48.732147,2.22388,,1,,Europe/Paris,,OIF, +OIF:SA:57:8180,1,"La Ferme",48.733286,2.221235,,1,,Europe/Paris,,OIF, +OIF:SA:57:8190,1,"Albert Sarrault",48.736979,2.221801,,1,,Europe/Paris,,OIF, +OIF:SA:57:820,1,"Pinson",48.677844,2.179372,,1,,Europe/Paris,,OIF, +OIF:SA:57:8200,1,"Bouton d'Or",48.736227,2.217293,,1,,Europe/Paris,,OIF, +OIF:SA:57:8210,1,"Les Castors",48.735636,2.213634,,1,,Europe/Paris,,OIF, +OIF:SA:57:8220,1,"Mairie de Vauhallan",48.734053,2.204795,,1,,Europe/Paris,,OIF, +OIF:SA:57:8240,1,"Mairie",48.741253,2.226874,,1,,Europe/Paris,,OIF, +OIF:SA:57:8250,1,"Docteur Schweitzer",48.746106,2.221556,,1,,Europe/Paris,,OIF, +OIF:SA:57:8260,1,"Église",48.742118,2.224936,,1,,Europe/Paris,,OIF, +OIF:SA:57:8270,1,"4 Routes",48.750716,2.212065,,1,,Europe/Paris,,OIF, +OIF:SA:57:8290,1,"Mairie",48.755169,2.215749,,1,,Europe/Paris,,OIF, +OIF:SA:57:830,1,"Estérel",48.67904,2.179681,,1,,Europe/Paris,,OIF, +OIF:SA:57:840,1,"Cure d'Air",48.68101,2.180693,,1,,Europe/Paris,,OIF, +OIF:SA:57:8410,1,"Cholette",48.761955,2.224036,,1,,Europe/Paris,,OIF, +OIF:SA:57:8420,1,"Abbaye",48.764443,2.227246,,1,,Europe/Paris,,OIF, +OIF:SA:57:8430,1,"Porte Jaune",48.766215,2.229153,,1,,Europe/Paris,,OIF, +OIF:SA:57:8440,1,"Rond-Point du Petit Clamart",48.77779,2.229636,,1,,Europe/Paris,,OIF, +OIF:SA:57:8450,1,"Avenue de la Sygrie",48.781906,2.22638,,1,,Europe/Paris,,OIF, +OIF:SA:57:8460,1,"De Lattre de Tassigny",48.785537,2.224397,,1,,Europe/Paris,,OIF, +OIF:SA:57:850,1,"Marché de Mondétour",48.682676,2.183091,,1,,Europe/Paris,,OIF, +OIF:SA:57:8500,1,"Collège Émile Zola",48.738258,2.220459,,1,,Europe/Paris,,OIF, +OIF:SA:57:8540,1,"Cottage",48.757829,2.219151,,1,,Europe/Paris,,OIF, +OIF:SA:57:860,1,"Bellevue",48.685391,2.183612,,1,,Europe/Paris,,OIF, +OIF:SA:57:8670,1,"Bellevue - Kennedy",48.738177,2.22985,,1,,Europe/Paris,,OIF, +OIF:SA:57:8680,1,"Abbaye - Cimetière",48.73245,2.196045,,1,,Europe/Paris,,OIF, +OIF:SA:57:870,1,"Bois du Roi",48.686387,2.182041,,1,,Europe/Paris,,OIF, +OIF:SA:57:880,1,"Chênes",48.687975,2.180007,,1,,Europe/Paris,,OIF, +OIF:SA:57:890,1,"Boissière",48.689708,2.178447,,1,,Europe/Paris,,OIF, +OIF:SA:57:90,1,"Source",48.686186,2.143134,,1,,Europe/Paris,,OIF, +OIF:SA:57:900,1,"Acacias",48.691498,2.179725,,1,,Europe/Paris,,OIF, +OIF:SA:57:9010,1,"Clos du Pileu",48.725216,2.230026,,1,,Europe/Paris,,OIF, +OIF:SA:57:9020,1,"Estienne d'Orves",48.724846,2.223329,,1,,Europe/Paris,,OIF, +OIF:SA:57:9030,1,"Rond-Point Camille Claudel",48.71844,2.231982,,1,,Europe/Paris,,OIF, +OIF:SA:57:9040,1,"La Hunière / Ardenay",48.714971,2.237416,,1,,Europe/Paris,,OIF, +OIF:SA:57:9050,1,"La Hunière / Onera",48.711911,2.232593,,1,,Europe/Paris,,OIF, +OIF:SA:57:9060,1,"La Hunière / Joncherettes",48.709873,2.230363,,1,,Europe/Paris,,OIF, +OIF:SA:57:9070,1,"La Hunière / Concorde",48.709396,2.225047,,1,,Europe/Paris,,OIF, +OIF:SA:57:9080,1,"Parc d'Ardenay",48.717414,2.240121,,1,,Europe/Paris,,OIF, +OIF:SA:57:9090,1,"La Pie Voleuse - Église",48.713599,2.241588,,1,,Europe/Paris,,OIF, +OIF:SA:57:910,1,"Curie",48.691638,2.176982,,1,,Europe/Paris,,OIF, +OIF:SA:57:9120,1,"Maurice Berteaux / les Larris",48.718899,2.242516,,1,,Europe/Paris,,OIF, +OIF:SA:57:9140,1,"César Franck",48.717899,2.240039,,1,,Europe/Paris,,OIF, +OIF:SA:57:9150,1,"Lycée C Claudel",48.718955,2.234698,,1,,Europe/Paris,,OIF, +OIF:SA:57:9160,1,"Quartier de la Mesure",48.720708,2.24635,,1,,Europe/Paris,,OIF, +OIF:SA:57:9180,1,"La Butte à la Reine - Cimetière de Palaiseau",48.711742,2.239656,,1,,Europe/Paris,,OIF, +OIF:SA:57:920,1,"Avenue de Bures",48.693376,2.176026,,1,,Europe/Paris,,OIF, +OIF:SA:57:9210,1,"Parc Chabrol",48.709726,2.243028,,1,,Europe/Paris,,OIF, +OIF:SA:57:9220,1,"Poste",48.713082,2.24637,,1,,Europe/Paris,,OIF, +OIF:SA:57:9240,1,"Groupe Scolaire Vaillant - sous Préfecture",48.71661,2.253339,,1,,Europe/Paris,,OIF, +OIF:SA:57:9290,1,"Jean Jaurès",48.721104,2.259377,,1,,Europe/Paris,,OIF, +OIF:SA:57:930,1,"Dimancherie",48.69504,2.176387,,1,,Europe/Paris,,OIF, +OIF:SA:57:9320,1,"Émile Baudot",48.72045,2.26198,,1,,Europe/Paris,,OIF, +OIF:SA:57:9340,1,"Fourcherolles",48.70346,2.220768,,1,,Europe/Paris,,OIF, +OIF:SA:57:940,1,"Chartres",48.695569,2.179359,,1,,Europe/Paris,,OIF, +OIF:SA:57:9470,1,"Raymond Aron",48.728844,2.259936,,1,,Europe/Paris,,OIF, +OIF:SA:57:960,1,"Conservatoire d'Orsay",48.696509,2.190273,,1,,Europe/Paris,,OIF, +OIF:SA:57:980,1,"Bois de la Grille Noire",48.696354,2.195325,,1,,Europe/Paris,,OIF, +OIF:SA:57:990,1,"Parrat",48.696745,2.199791,,1,,Europe/Paris,,OIF, +OIF:SA:58:1068,1,"Zone Industrielle / D43",48.950839,1.927834,,1,,Europe/Paris,,OIF, +OIF:SA:58:1088,1,"Les Côteaux",48.940841,1.990293,,1,,Europe/Paris,,OIF, +OIF:SA:58:1089,1,"Rue Mirgon",48.941142,1.985584,,1,,Europe/Paris,,OIF, +OIF:SA:58:1090,1,"Clémenterie",48.940589,1.978071,,1,,Europe/Paris,,OIF, +OIF:SA:58:1091,1,"Lavoir",48.941056,1.981001,,1,,Europe/Paris,,OIF, +OIF:SA:58:1092,1,"Pré Seigneur",48.938856,1.984481,,1,,Europe/Paris,,OIF, +OIF:SA:58:1093,1,"Golf",48.937307,1.989416,,1,,Europe/Paris,,OIF, +OIF:SA:58:1094,1,"Les Groux",48.93189,1.997903,,1,,Europe/Paris,,OIF, +OIF:SA:58:1096,1,"Côte Saint-Jean",48.934465,1.994898,,1,,Europe/Paris,,OIF, +OIF:SA:58:1098,1,"Croisée des Chemins",48.928509,1.999023,,1,,Europe/Paris,,OIF, +OIF:SA:58:1102,1,"Général de Gaulle",48.929933,2.000302,,1,,Europe/Paris,,OIF, +OIF:SA:58:1104,1,"Clémenceau",48.935125,1.999498,,1,,Europe/Paris,,OIF, +OIF:SA:58:1106,1,"Maternelle",48.943432,1.986578,,1,,Europe/Paris,,OIF, +OIF:SA:58:1108,1,"Ancienne École de Breteuil",48.946216,1.984233,,1,,Europe/Paris,,OIF, +OIF:SA:58:1110,1,"Chemin du Raidillon",48.94648,1.987008,,1,,Europe/Paris,,OIF, +OIF:SA:58:1112,1,"Les Guérandes",48.94907,1.989051,,1,,Europe/Paris,,OIF, +OIF:SA:58:1114,1,"Pierre Curie",48.950764,1.995309,,1,,Europe/Paris,,OIF, +OIF:SA:58:1116,1,"Chemin des Glaises",48.952603,1.991203,,1,,Europe/Paris,,OIF, +OIF:SA:58:1118,1,"Villa Louise",48.945612,1.996032,,1,,Europe/Paris,,OIF, +OIF:SA:58:1119,1,"Gare de Mantes la Jolie - Gare Routière",48.98774,1.704672,,1,,Europe/Paris,,OIF, +OIF:SA:58:1128,1,"Centre Commercial / Bois Bodin",48.963196,1.861091,,1,,Europe/Paris,,OIF, +OIF:SA:58:1134,1,"Marjobert / Chauffours",49.040199,2.075128,,1,,Europe/Paris,,OIF, +OIF:SA:58:1161,1,"Europe",48.97649,1.980498,,1,,Europe/Paris,,OIF, +OIF:SA:58:1164,1,"Crèche",48.936147,1.992357,,1,,Europe/Paris,,OIF, +OIF:SA:58:1220,1,"Liszt",48.893041,2.067672,,1,,Europe/Paris,,OIF, +OIF:SA:58:1221,1,"Rue de l'Étang",48.978587,1.973962,,1,,Europe/Paris,,OIF, +OIF:SA:58:1223,1,"Épinettes",48.969406,1.975724,,1,,Europe/Paris,,OIF, +OIF:SA:58:126,1,"Commissariat",48.976861,1.982891,,1,,Europe/Paris,,OIF, +OIF:SA:58:127,1,"Montaigne",48.972492,1.976225,,1,,Europe/Paris,,OIF, +OIF:SA:58:128,1,"Collège Émile Zola",48.970866,1.972196,,1,,Europe/Paris,,OIF, +OIF:SA:58:129,1,"Les Aulnes",48.971772,1.974633,,1,,Europe/Paris,,OIF, +OIF:SA:58:131,1,"Rond-Point",48.971392,1.976683,,1,,Europe/Paris,,OIF, +OIF:SA:58:133,1,"Groupe Scolaire",48.97193,1.979103,,1,,Europe/Paris,,OIF, +OIF:SA:58:135,1,"École de Musique",48.972605,1.98103,,1,,Europe/Paris,,OIF, +OIF:SA:58:138,1,"Pressoir",48.974051,1.980685,,1,,Europe/Paris,,OIF, +OIF:SA:58:142,1,"Le Parc",48.977773,1.985916,,1,,Europe/Paris,,OIF, +OIF:SA:58:146,1,"Noyer",48.974341,1.975489,,1,,Europe/Paris,,OIF, +OIF:SA:58:147,1,"Coteaux",48.974564,1.973549,,1,,Europe/Paris,,OIF, +OIF:SA:58:148,1,"Maternelle Kosma",48.974228,1.970951,,1,,Europe/Paris,,OIF, +OIF:SA:58:149,1,"Fours à Chaux",48.974299,1.96938,,1,,Europe/Paris,,OIF, +OIF:SA:58:150,1,"Les Ormes",48.973964,1.96827,,1,,Europe/Paris,,OIF, +OIF:SA:58:151,1,"Rond-Point Zola",48.97466,1.965391,,1,,Europe/Paris,,OIF, +OIF:SA:58:153,1,"Lutins",48.975684,1.966804,,1,,Europe/Paris,,OIF, +OIF:SA:58:155,1,"Passereaux",48.977616,1.969691,,1,,Europe/Paris,,OIF, +OIF:SA:58:156,1,"Rue du Hameau",48.978169,1.974192,,1,,Europe/Paris,,OIF, +OIF:SA:58:157,1,"Pierre Curie",48.977284,1.969748,,1,,Europe/Paris,,OIF, +OIF:SA:58:24,1,"Abbé Masure",48.980943,1.972985,,1,,Europe/Paris,,OIF, +OIF:SA:58:25,1,"Bazincourt",48.980234,1.966096,,1,,Europe/Paris,,OIF, +OIF:SA:58:269,1,"Château",48.955407,1.994282,,1,,Europe/Paris,,OIF, +OIF:SA:58:27,1,"Chanteclair",48.984347,1.97092,,1,,Europe/Paris,,OIF, +OIF:SA:58:273,1,"M. Giraux",48.94592,1.995287,,1,,Europe/Paris,,OIF, +OIF:SA:58:30,1,"Rome - d'Esparbes",48.976995,1.963361,,1,,Europe/Paris,,OIF, +OIF:SA:58:346,1,"Les Sablons",48.954009,1.920528,,1,,Europe/Paris,,OIF, +OIF:SA:58:36,1,"La Garenne",48.984306,1.967916,,1,,Europe/Paris,,OIF, +OIF:SA:58:38,1,"Grande Rue",48.980816,1.975512,,1,,Europe/Paris,,OIF, +OIF:SA:58:39,1,"Koenig",48.978245,1.978411,,1,,Europe/Paris,,OIF, +OIF:SA:58:402,1,"Nautis",48.930481,2.003613,,1,,Europe/Paris,,OIF, +OIF:SA:58:404,1,"Place Verte",48.93834,1.995616,,1,,Europe/Paris,,OIF, +OIF:SA:58:406,1,"La Forge",48.943627,1.995015,,1,,Europe/Paris,,OIF, +OIF:SA:58:408,1,"Clos Normand",48.960274,1.994441,,1,,Europe/Paris,,OIF, +OIF:SA:58:41,1,"Mairie",48.979245,1.974704,,1,,Europe/Paris,,OIF, +OIF:SA:58:410,1,"Les Bouvettes",48.964592,1.992754,,1,,Europe/Paris,,OIF, +OIF:SA:58:412,1,"Vallée Goujon",48.966864,1.990658,,1,,Europe/Paris,,OIF, +OIF:SA:58:414,1,"Plaine Ouest",48.969304,1.989181,,1,,Europe/Paris,,OIF, +OIF:SA:58:416,1,"Girardin",48.970846,1.987942,,1,,Europe/Paris,,OIF, +OIF:SA:58:418,1,"Jean Jaurès",48.974711,1.986872,,1,,Europe/Paris,,OIF, +OIF:SA:58:42,1,"Manoir",48.978643,1.973595,,1,,Europe/Paris,,OIF, +OIF:SA:58:420,1,"Saint-Exupéry",48.975883,1.985048,,1,,Europe/Paris,,OIF, +OIF:SA:58:422,1,"La Galette",48.984913,1.963741,,1,,Europe/Paris,,OIF, +OIF:SA:58:424,1,"Les Clairières",48.989017,1.950145,,1,,Europe/Paris,,OIF, +OIF:SA:58:43,1,"Maternelle Dolto",48.978066,1.963995,,1,,Europe/Paris,,OIF, +OIF:SA:58:46,1,"Parc Noir",48.982732,1.973293,,1,,Europe/Paris,,OIF, +OIF:SA:58:479,1,"Les Fonceaux",48.986557,2.053303,,1,,Europe/Paris,,OIF, +OIF:SA:58:48,1,"Tocqueville",48.975245,1.964261,,1,,Europe/Paris,,OIF, +OIF:SA:58:483,1,"Brézolles",48.95658,1.955825,,1,,Europe/Paris,,OIF, +OIF:SA:58:485,1,"Agrippa d'Aubigné",48.956021,1.968104,,1,,Europe/Paris,,OIF, +OIF:SA:58:487,1,"Flamant",48.952028,1.967157,,1,,Europe/Paris,,OIF, +OIF:SA:58:49,1,"Collège Jean Zay",48.97894,1.961777,,1,,Europe/Paris,,OIF, +OIF:SA:58:490,1,"Bourdillon",48.970044,1.985729,,1,,Europe/Paris,,OIF, +OIF:SA:58:491,1,"Philippe de Beaumanoir",48.953662,1.966538,,1,,Europe/Paris,,OIF, +OIF:SA:58:494,1,"Briand Chapet",48.970787,1.980121,,1,,Europe/Paris,,OIF, +OIF:SA:58:496,1,"Gloriettes",48.968346,1.981189,,1,,Europe/Paris,,OIF, +OIF:SA:58:500,1,"Fontaine aux Gendarmes",48.944702,1.962271,,1,,Europe/Paris,,OIF, +OIF:SA:58:503,1,"Charles d'Orléans",48.951727,1.964355,,1,,Europe/Paris,,OIF, +OIF:SA:58:548,1,"Stade",48.976141,2.040356,,1,,Europe/Paris,,OIF, +OIF:SA:58:559,1,"Jean Mermoz",48.978445,1.994348,,1,,Europe/Paris,,OIF, +OIF:SA:58:570,1,"Lycée Léonard de Vinci",48.891829,2.06422,,1,,Europe/Paris,,OIF, +OIF:SA:58:626,1,"Cimetière",48.975158,2.026472,,1,,Europe/Paris,,OIF, +OIF:SA:58:628,1,"Le Parc",48.975385,2.03275,,1,,Europe/Paris,,OIF, +OIF:SA:58:640,1,"Rond-Point Saint-Jacques",49.011267,2.053932,,1,,Europe/Paris,,OIF, +OIF:SA:58:69,1,"Cottages",48.988032,1.955307,,1,,Europe/Paris,,OIF, +OIF:SA:58:70,1,"Les Pins",48.987115,1.949756,,1,,Europe/Paris,,OIF, +OIF:SA:58:706,1,"La Chamoiserie",48.972091,1.918376,,1,,Europe/Paris,,OIF, +OIF:SA:58:71,1,"Les Cerfs",48.986989,1.952283,,1,,Europe/Paris,,OIF, +OIF:SA:58:72,1,"Sport CD154",48.985956,1.958094,,1,,Europe/Paris,,OIF, +OIF:SA:58:74,1,"Rainford",48.987304,1.966775,,1,,Europe/Paris,,OIF, +OIF:SA:58:75,1,"Aulnay / Mallo",48.989076,1.964475,,1,,Europe/Paris,,OIF, +OIF:SA:58:76,1,"Gros Chêne",48.990295,1.961838,,1,,Europe/Paris,,OIF, +OIF:SA:58:896,1,"Monuments",48.951738,1.913669,,1,,Europe/Paris,,OIF, +OIF:SA:58:956,1,"Centre Commercial",48.985746,1.968678,,1,,Europe/Paris,,OIF, +OIF:SA:58:959,1,"Clos Hamelet",48.97518,1.979742,,1,,Europe/Paris,,OIF, +OIF:SA:58:980,1,"Bazincourt",48.970634,1.947026,,1,,Europe/Paris,,OIF, +OIF:SA:58:983,1,"Chemin Vert",48.966175,1.943866,,1,,Europe/Paris,,OIF, +OIF:SA:58:984,1,"Clos Saint-Denis",48.969973,1.940111,,1,,Europe/Paris,,OIF, +OIF:SA:58:996,1,"Merisiers",48.974422,1.965564,,1,,Europe/Paris,,OIF, +OIF:SA:58:997,1,"Piscine",48.972997,1.960783,,1,,Europe/Paris,,OIF, +OIF:SA:59000,1,"Pont de Bondy",48.904134,2.469873,,1,,Europe/Paris,,OIF, +OIF:SA:59002,1,"Petit Noisy",48.900164,2.465186,,1,,Europe/Paris,,OIF, +OIF:SA:59006,1,"Jean Rostand",48.907892,2.453805,,1,,Europe/Paris,,OIF, +OIF:SA:59008,1,"Auguste Delaune",48.906205,2.460981,,1,,Europe/Paris,,OIF, +OIF:SA:59010,1,"Parc de Saint-Cloud",48.842315,2.2216,,1,,Europe/Paris,,OIF, +OIF:SA:59014,1,"Hôpital Avicenne",48.915806,2.425724,,1,,Europe/Paris,,OIF, +OIF:SA:59015,1,"Maurice Lachâtre",48.918955,2.414259,,1,,Europe/Paris,,OIF, +OIF:SA:59017,1,"Les Moulineaux",48.821708,2.251249,,1,,Europe/Paris,,OIF, +OIF:SA:59021,1,"Meudon sur Seine",48.818997,2.239559,,1,,Europe/Paris,,OIF, +OIF:SA:59025,1,"Brimborion",48.822046,2.231555,,1,,Europe/Paris,,OIF, +OIF:SA:59037,1,"Les Milons",48.850259,2.219695,,1,,Europe/Paris,,OIF, +OIF:SA:59041,1,"Les Coteaux",48.856865,2.22148,,1,,Europe/Paris,,OIF, +OIF:SA:59045,1,"Musée de Sevres",48.828174,2.2248,,1,,Europe/Paris,,OIF, +OIF:SA:59049,1,"Belvédère",48.876081,2.226238,,1,,Europe/Paris,,OIF, +OIF:SA:59053,1,"Suresnes / Longchamp",48.86847,2.222674,,1,,Europe/Paris,,OIF, +OIF:SA:59060,1,"Brancion",48.828602,2.3007,,1,,Europe/Paris,,OIF, +OIF:SA:59062,1,"Didot",48.826479,2.313816,,1,,Europe/Paris,,OIF, +OIF:SA:59063,1,"Jean Moulin",48.824432,2.318261,,1,,Europe/Paris,,OIF, +OIF:SA:59064,1,"Poterne des Peupliers",48.820861,2.351702,,1,,Europe/Paris,,OIF, +OIF:SA:59070,1,"Hôtel de Ville de Bobigny",48.906614,2.443862,,1,,Europe/Paris,,OIF, +OIF:SA:59072,1,"Libération",48.90666,2.439091,,1,,Europe/Paris,,OIF, +OIF:SA:59074,1,"La Ferme",48.909677,2.437478,,1,,Europe/Paris,,OIF, +OIF:SA:59076,1,"Escadrille Normandie / Niemen",48.912791,2.436211,,1,,Europe/Paris,,OIF, +OIF:SA:59078,1,"Gaston Roulaud",48.915239,2.431613,,1,,Europe/Paris,,OIF, +OIF:SA:59080,1,"Drancy Avenir",48.918392,2.418207,,1,,Europe/Paris,,OIF, +OIF:SA:59084,1,"Danton",48.92269,2.406661,,1,,Europe/Paris,,OIF, +OIF:SA:59086,1,"Stade Géo André",48.924382,2.402054,,1,,Europe/Paris,,OIF, +OIF:SA:59088,1,"La Courneuve Hôtel de Ville",48.926602,2.392535,,1,,Europe/Paris,,OIF, +OIF:SA:59090,1,"Six Routes / Tramway",48.92949,2.385455,,1,,Europe/Paris,,OIF, +OIF:SA:59092,1,"Cosmonautes",48.931753,2.378207,,1,,Europe/Paris,,OIF, +OIF:SA:59096,1,"Hôpital Delafontaine",48.932804,2.367929,,1,,Europe/Paris,,OIF, +OIF:SA:59098,1,"Cimetière de Saint-Denis",48.936239,2.364215,,1,,Europe/Paris,,OIF, +OIF:SA:59101,1,"Marche de Saint-Denis",48.938785,2.355738,,1,,Europe/Paris,,OIF, +OIF:SA:59103,1,"Théâtre Gérard Philipe",48.937241,2.350192,,1,,Europe/Paris,,OIF, +OIF:SA:59108,1,"Montsouris",48.822054,2.333401,,1,,Europe/Paris,,OIF, +OIF:SA:59109,1,"Cité Universitaire",48.82075,2.339396,,1,,Europe/Paris,,OIF, +OIF:SA:59112,1,"Georges Brassens",48.829932,2.295355,,1,,Europe/Paris,,OIF, +OIF:SA:59120,1,"Stade Charléty / Porte de Gentilly",48.820219,2.344339,,1,,Europe/Paris,,OIF, +OIF:SA:59128,1,"Porte d'Issy",48.831798,2.28084,,1,,Europe/Paris,,OIF, +OIF:SA:59130,1,"Suzanne Lenglen",48.83346,2.276547,,1,,Europe/Paris,,OIF, +OIF:SA:59132,1,"Henri Farman",48.834873,2.271597,,1,,Europe/Paris,,OIF, +OIF:SA:59134,1,"Issy Val de Seine",48.829417,2.263587,,1,,Europe/Paris,,OIF, +OIF:SA:59136,1,"Jacques Henri Lartigue",48.823715,2.261443,,1,,Europe/Paris,,OIF, +OIF:SA:59143,1,"Desnouettes",48.834783,2.284711,,1,,Europe/Paris,,OIF, +OIF:SA:59204,1,"Créteil Préfecture",48.779877,2.459947,,1,,Europe/Paris,,OIF, +OIF:SA:59205,1,"Bir Hakeim",48.855385,2.289408,,1,,Europe/Paris,,OIF, +OIF:SA:59206,1,"Funiculaire Gare Basse",48.884699,2.342629,,1,,Europe/Paris,,OIF, +OIF:SA:59207,1,"La Muette",48.858209,2.274482,,1,,Europe/Paris,,OIF, +OIF:SA:59208,1,"Les Halles",48.862015,2.346495,,1,,Europe/Paris,,OIF, +OIF:SA:59209,1,"Opéra",48.871084,2.3324,,1,,Europe/Paris,,OIF, +OIF:SA:59213,1,"Porte Dauphine / Maréchal de Lattre de Tassigny",48.871097,2.274875,,1,,Europe/Paris,,OIF, +OIF:SA:59218,1,"La Chapelle",48.884483,2.359993,,1,,Europe/Paris,,OIF, +OIF:SA:59219,1,"Pereire",48.884734,2.297128,,1,,Europe/Paris,,OIF, +OIF:SA:59225,1,"Saint-Paul",48.854981,2.361821,,1,,Europe/Paris,,OIF, +OIF:SA:59226,1,"Tuileries",48.864783,2.329113,,1,,Europe/Paris,,OIF, +OIF:SA:59227,1,"Reuilly / Diderot",48.847159,2.386885,,1,,Europe/Paris,,OIF, +OIF:SA:59228,1,"Porte de Vincennes",48.846417,2.408712,,1,,Europe/Paris,,OIF, +OIF:SA:59231,1,"Louvre / Rivoli",48.860944,2.340728,,1,,Europe/Paris,,OIF, +OIF:SA:59232,1,"Franklin D. Roosevelt",48.869081,2.309984,,1,,Europe/Paris,,OIF, +OIF:SA:59234,1,"George V",48.871944,2.300856,,1,,Europe/Paris,,OIF, +OIF:SA:59235,1,"Concorde",48.866368,2.321074,,1,,Europe/Paris,,OIF, +OIF:SA:59237,1,"Argentine",48.875694,2.289154,,1,,Europe/Paris,,OIF, +OIF:SA:59238,1,"Bastille",48.85313,2.369237,,1,,Europe/Paris,,OIF, +OIF:SA:59250,1,"Les Sablons",48.881225,2.271947,,1,,Europe/Paris,,OIF, +OIF:SA:59251,1,"Raspail",48.838814,2.330714,,1,,Europe/Paris,,OIF, +OIF:SA:59252,1,"Marcadet / Poissonniers",48.891457,2.350093,,1,,Europe/Paris,,OIF, +OIF:SA:59253,1,"Strasbourg Saint-Denis",48.869191,2.354435,,1,,Europe/Paris,,OIF, +OIF:SA:59254,1,"Vavin",48.841941,2.329229,,1,,Europe/Paris,,OIF, +OIF:SA:59256,1,"Saint-Placide",48.846762,2.328463,,1,,Europe/Paris,,OIF, +OIF:SA:59257,1,"Saint-Sulpice",48.851465,2.331493,,1,,Europe/Paris,,OIF, +OIF:SA:59258,1,"Porte de Clignancourt",48.898504,2.344613,,1,,Europe/Paris,,OIF, +OIF:SA:59260,1,"Mouton / Duvernet",48.83166,2.330191,,1,,Europe/Paris,,OIF, +OIF:SA:59261,1,"Etienne Marcel",48.863837,2.349063,,1,,Europe/Paris,,OIF, +OIF:SA:59263,1,"Odéon",48.85223,2.338684,,1,,Europe/Paris,,OIF, +OIF:SA:59275,1,"Place d'Italie",48.830674,2.355297,,1,,Europe/Paris,,OIF, +OIF:SA:59277,1,"Place Monge",48.843527,2.353256,,1,,Europe/Paris,,OIF, +OIF:SA:59279,1,"Stalingrad",48.884202,2.368299,,1,,Europe/Paris,,OIF, +OIF:SA:59281,1,"Sully-Morland",48.850892,2.361374,,1,,Europe/Paris,,OIF, +OIF:SA:59283,1,"Italie / Tolbiac",48.825949,2.356968,,1,,Europe/Paris,,OIF, +OIF:SA:59285,1,"Riquet",48.888893,2.37168,,1,,Europe/Paris,,OIF, +OIF:SA:59287,1,"Porte d'Ivry",48.821642,2.370306,,1,,Europe/Paris,,OIF, +OIF:SA:59288,1,"Porte de la Villette",48.897704,2.386475,,1,,Europe/Paris,,OIF, +OIF:SA:59290,1,"Pyramides",48.8668,2.334338,,1,,Europe/Paris,,OIF, +OIF:SA:59292,1,"Le Peletier",48.874966,2.340175,,1,,Europe/Paris,,OIF, +OIF:SA:59294,1,"Les Gobelins",48.836684,2.35181,,1,,Europe/Paris,,OIF, +OIF:SA:59296,1,"Louis Blanc",48.880865,2.365856,,1,,Europe/Paris,,OIF, +OIF:SA:59298,1,"Maison Blanche",48.822488,2.357962,,1,,Europe/Paris,,OIF, +OIF:SA:59300,1,"Jussieu",48.846048,2.354595,,1,,Europe/Paris,,OIF, +OIF:SA:59302,1,"Corentin Cariou",48.894615,2.382135,,1,,Europe/Paris,,OIF, +OIF:SA:59304,1,"Cadet",48.876057,2.344427,,1,,Europe/Paris,,OIF, +OIF:SA:59306,1,"Censier Daubenton",48.840864,2.35186,,1,,Europe/Paris,,OIF, +OIF:SA:59316,1,"Fort d'Aubervilliers",48.914453,2.404017,,1,,Europe/Paris,,OIF, +OIF:SA:59318,1,"Aubervilliers / Pantin",48.903687,2.392266,,1,,Europe/Paris,,OIF, +OIF:SA:59320,1,"La Courneuve 8 Mai 1945",48.920741,2.410672,,1,,Europe/Paris,,OIF, +OIF:SA:59322,1,"Mairie d'Ivry",48.811613,2.384853,,1,,Europe/Paris,,OIF, +OIF:SA:59323,1,"Villejuif - Louis Aragon",48.787499,2.367534,,1,,Europe/Paris,,OIF, +OIF:SA:59324,1,"Funiculaire Gare Haute",48.88558,2.342561,,1,,Europe/Paris,,OIF, +OIF:SA:59325,1,"Gambetta",48.865154,2.398524,,1,,Europe/Paris,,OIF, +OIF:SA:59326,1,"Saint-Fargeau",48.871864,2.40442,,1,,Europe/Paris,,OIF, +OIF:SA:59327,1,"Porte des Lilas",48.876939,2.407634,,1,,Europe/Paris,,OIF, +OIF:SA:59328,1,"Pelleport",48.86722,2.402312,,1,,Europe/Paris,,OIF, +OIF:SA:59331,1,"Danube",48.881766,2.394171,,1,,Europe/Paris,,OIF, +OIF:SA:59332,1,"Botzaris",48.879436,2.389634,,1,,Europe/Paris,,OIF, +OIF:SA:59333,1,"Buttes Chaumont",48.877807,2.38123,,1,,Europe/Paris,,OIF, +OIF:SA:59334,1,"Bolivar",48.879508,2.374119,,1,,Europe/Paris,,OIF, +OIF:SA:59335,1,"Saint-Marcel",48.839215,2.360986,,1,,Europe/Paris,,OIF, +OIF:SA:59336,1,"Richard Lenoir",48.85867,2.374192,,1,,Europe/Paris,,OIF, +OIF:SA:59337,1,"Ourcq",48.887308,2.385994,,1,,Europe/Paris,,OIF, +OIF:SA:59338,1,"Oberkampf",48.86502,2.366899,,1,,Europe/Paris,,OIF, +OIF:SA:59339,1,"Campo Formio",48.835286,2.358376,,1,,Europe/Paris,,OIF, +OIF:SA:59340,1,"Jacques Bonsergent",48.870913,2.360706,,1,,Europe/Paris,,OIF, +OIF:SA:59342,1,"Bobigny / Pablo Picasso",48.90704,2.449374,,1,,Europe/Paris,,OIF, +OIF:SA:59343,1,"Bobigny - Pantin - Raymond Queneau",48.895399,2.425557,,1,,Europe/Paris,,OIF, +OIF:SA:59344,1,"Église",48.893402,2.412554,,1,,Europe/Paris,,OIF, +OIF:SA:59345,1,"Hoche",48.891451,2.402865,,1,,Europe/Paris,,OIF, +OIF:SA:59346,1,"La Motte Picquet / Grenelle",48.848972,2.298031,,1,,Europe/Paris,,OIF, +OIF:SA:59349,1,"Duroc",48.846992,2.316329,,1,,Europe/Paris,,OIF, +OIF:SA:59353,1,"Mabillon",48.852722,2.334304,,1,,Europe/Paris,,OIF, +OIF:SA:59357,1,"Maubert - Mutualité",48.849689,2.349048,,1,,Europe/Paris,,OIF, +OIF:SA:59360,1,"Michel Ange-Auteuil",48.848288,2.264733,,1,,Europe/Paris,,OIF, +OIF:SA:59362,1,"Sèvres-Babylone",48.851283,2.326773,,1,,Europe/Paris,,OIF, +OIF:SA:59365,1,"Vaneau",48.84876,2.321306,,1,,Europe/Paris,,OIF, +OIF:SA:59368,1,"Segur",48.846868,2.307287,,1,,Europe/Paris,,OIF, +OIF:SA:59371,1,"Michel Ange-Molitor",48.845188,2.262156,,1,,Europe/Paris,,OIF, +OIF:SA:59374,1,"Mirabeau",48.847009,2.273225,,1,,Europe/Paris,,OIF, +OIF:SA:59377,1,"Cluny / la Sorbonne",48.850498,2.344058,,1,,Europe/Paris,,OIF, +OIF:SA:59380,1,"Cardinal Lemoine",48.846579,2.351523,,1,,Europe/Paris,,OIF, +OIF:SA:59383,1,"Chardon / Lagache",48.844918,2.266621,,1,,Europe/Paris,,OIF, +OIF:SA:59386,1,"Charles Michels",48.846423,2.286297,,1,,Europe/Paris,,OIF, +OIF:SA:59389,1,"Avenue Émile Zola",48.84693,2.294545,,1,,Europe/Paris,,OIF, +OIF:SA:59398,1,"Boulogne - Jean Jaurès",48.841964,2.238806,,1,,Europe/Paris,,OIF, +OIF:SA:59400,1,"Boulogne / Pont de Saint-Cloud",48.840753,2.228655,,1,,Europe/Paris,,OIF, +OIF:SA:59402,1,"Pyrénées",48.873896,2.38526,,1,,Europe/Paris,,OIF, +OIF:SA:59403,1,"Rambuteau",48.861771,2.35334,,1,,Europe/Paris,,OIF, +OIF:SA:59404,1,"Télégraphe",48.875513,2.39865,,1,,Europe/Paris,,OIF, +OIF:SA:59405,1,"Jourdain",48.87441,2.389105,,1,,Europe/Paris,,OIF, +OIF:SA:59406,1,"Belleville",48.872182,2.377118,,1,,Europe/Paris,,OIF, +OIF:SA:59408,1,"Mairie des Lilas",48.87987,2.416793,,1,,Europe/Paris,,OIF, +OIF:SA:59410,1,"Bercy",48.839848,2.380359,,1,,Europe/Paris,,OIF, +OIF:SA:59411,1,"Cour Saint-Émilion",48.833523,2.386284,,1,,Europe/Paris,,OIF, +OIF:SA:59412,1,"Madeleine",48.869738,2.324595,,1,,Europe/Paris,,OIF, +OIF:SA:59415,1,"Villiers",48.881498,2.316152,,1,,Europe/Paris,,OIF, +OIF:SA:59416,1,"Ternes",48.878465,2.296983,,1,,Europe/Paris,,OIF, +OIF:SA:59417,1,"Victor Hugo",48.869859,2.285389,,1,,Europe/Paris,,OIF, +OIF:SA:59418,1,"Rome",48.882708,2.320659,,1,,Europe/Paris,,OIF, +OIF:SA:59419,1,"Philippe Auguste",48.858381,2.389754,,1,,Europe/Paris,,OIF, +OIF:SA:59420,1,"Pigalle",48.882291,2.337317,,1,,Europe/Paris,,OIF, +OIF:SA:59421,1,"Place de Clichy",48.883416,2.327555,,1,,Europe/Paris,,OIF, +OIF:SA:59422,1,"Monceau",48.880505,2.309285,,1,,Europe/Paris,,OIF, +OIF:SA:59423,1,"Colonel Fabien",48.878149,2.370738,,1,,Europe/Paris,,OIF, +OIF:SA:59424,1,"Courcelles",48.879239,2.303423,,1,,Europe/Paris,,OIF, +OIF:SA:59425,1,"Alexandre Dumas",48.856306,2.393833,,1,,Europe/Paris,,OIF, +OIF:SA:59426,1,"Anvers",48.882869,2.344169,,1,,Europe/Paris,,OIF, +OIF:SA:59427,1,"Avron",48.851256,2.398576,,1,,Europe/Paris,,OIF, +OIF:SA:59428,1,"Blanche",48.883287,2.33239,,1,,Europe/Paris,,OIF, +OIF:SA:59429,1,"Couronnes",48.86902,2.380619,,1,,Europe/Paris,,OIF, +OIF:SA:59434,1,"Parmentier",48.865228,2.374633,,1,,Europe/Paris,,OIF, +OIF:SA:59435,1,"Porte de Bagnolet",48.864137,2.409245,,1,,Europe/Paris,,OIF, +OIF:SA:59436,1,"Porte de Champerret",48.88622,2.293422,,1,,Europe/Paris,,OIF, +OIF:SA:59437,1,"Quatre Septembre",48.869225,2.337897,,1,,Europe/Paris,,OIF, +OIF:SA:59438,1,"Temple",48.866174,2.361198,,1,,Europe/Paris,,OIF, +OIF:SA:59439,1,"Wagram",48.884287,2.30584,,1,,Europe/Paris,,OIF, +OIF:SA:59440,1,"Sentier",48.86738,2.347095,,1,,Europe/Paris,,OIF, +OIF:SA:59441,1,"Malesherbes",48.882908,2.310224,,1,,Europe/Paris,,OIF, +OIF:SA:59442,1,"Havre Caumartin",48.873422,2.327738,,1,,Europe/Paris,,OIF, +OIF:SA:59443,1,"Europe",48.878803,2.32259,,1,,Europe/Paris,,OIF, +OIF:SA:59444,1,"Bourse",48.868687,2.340811,,1,,Europe/Paris,,OIF, +OIF:SA:59446,1,"Louise Michel",48.889273,2.288073,,1,,Europe/Paris,,OIF, +OIF:SA:59447,1,"Anatole France",48.891898,2.285049,,1,,Europe/Paris,,OIF, +OIF:SA:59448,1,"Gallieni",48.863304,2.416698,,1,,Europe/Paris,,OIF, +OIF:SA:59449,1,"Saint-Jacques",48.832994,2.336701,,1,,Europe/Paris,,OIF, +OIF:SA:59450,1,"Quai de la Gare",48.837109,2.373159,,1,,Europe/Paris,,OIF, +OIF:SA:59451,1,"Passy",48.857216,2.28542,,1,,Europe/Paris,,OIF, +OIF:SA:59452,1,"Pasteur",48.842151,2.31267,,1,,Europe/Paris,,OIF, +OIF:SA:59453,1,"Picpus",48.845215,2.402023,,1,,Europe/Paris,,OIF, +OIF:SA:59454,1,"Nationale",48.832845,2.362286,,1,,Europe/Paris,,OIF, +OIF:SA:59455,1,"Dupleix",48.851201,2.292476,,1,,Europe/Paris,,OIF, +OIF:SA:59456,1,"Edgar Quinet",48.840571,2.326421,,1,,Europe/Paris,,OIF, +OIF:SA:59457,1,"Chevaleret",48.834968,2.36811,,1,,Europe/Paris,,OIF, +OIF:SA:59458,1,"Corvisart",48.828661,2.351943,,1,,Europe/Paris,,OIF, +OIF:SA:59459,1,"Cambronne",48.847682,2.300834,,1,,Europe/Paris,,OIF, +OIF:SA:59460,1,"Bel Air",48.840803,2.400284,,1,,Europe/Paris,,OIF, +OIF:SA:59461,1,"Dugommier",48.838918,2.388645,,1,,Europe/Paris,,OIF, +OIF:SA:59463,1,"Richelieu-Drouot",48.871973,2.339677,,1,,Europe/Paris,,OIF, +OIF:SA:59464,1,"Grands Boulevards (Rue Montmartre)",48.871168,2.343077,,1,,Europe/Paris,,OIF, +OIF:SA:59465,1,"Porte de Charenton",48.83197,2.39853,,1,,Europe/Paris,,OIF, +OIF:SA:59466,1,"Michel Bizot",48.836946,2.402839,,1,,Europe/Paris,,OIF, +OIF:SA:59467,1,"Montgallet",48.844253,2.390316,,1,,Europe/Paris,,OIF, +OIF:SA:59468,1,"Ledru / Rollin",48.851201,2.376631,,1,,Europe/Paris,,OIF, +OIF:SA:59470,1,"École Militaire",48.85435,2.305789,,1,,Europe/Paris,,OIF, +OIF:SA:59471,1,"Faidherbe / Chaligny",48.849258,2.383952,,1,,Europe/Paris,,OIF, +OIF:SA:59472,1,"Filles du Calvaire",48.862603,2.366868,,1,,Europe/Paris,,OIF, +OIF:SA:59473,1,"Chemin Vert",48.858558,2.372362,,1,,Europe/Paris,,OIF, +OIF:SA:59474,1,"Commerce",48.843302,2.291122,,1,,Europe/Paris,,OIF, +OIF:SA:59475,1,"Bonne Nouvelle",48.870643,2.3483,,1,,Europe/Paris,,OIF, +OIF:SA:59476,1,"Boucicaut",48.841028,2.287942,,1,,Europe/Paris,,OIF, +OIF:SA:59477,1,"Balard",48.836451,2.27859,,1,,Europe/Paris,,OIF, +OIF:SA:59478,1,"Lourmel",48.838258,2.282625,,1,,Europe/Paris,,OIF, +OIF:SA:59482,1,"Charenton / Écoles",48.821496,2.414045,,1,,Europe/Paris,,OIF, +OIF:SA:59483,1,"Maisons Alfort les Juilliottes",48.804062,2.443466,,1,,Europe/Paris,,OIF, +OIF:SA:59484,1,"Maisons Alfort / Stade",48.808811,2.436498,,1,,Europe/Paris,,OIF, +OIF:SA:59485,1,"Rue de la Pompe",48.86396,2.277502,,1,,Europe/Paris,,OIF, +OIF:SA:59486,1,"Boulets / Montreuil",48.852198,2.389421,,1,,Europe/Paris,,OIF, +OIF:SA:59488,1,"Saint-Ambroise",48.861687,2.37513,,1,,Europe/Paris,,OIF, +OIF:SA:59489,1,"Saint-Augustin",48.874605,2.320026,,1,,Europe/Paris,,OIF, +OIF:SA:59490,1,"Saint-Philippe du Roule",48.872945,2.310572,,1,,Europe/Paris,,OIF, +OIF:SA:59491,1,"Porte de Montreuil",48.853545,2.410775,,1,,Europe/Paris,,OIF, +OIF:SA:59492,1,"Porte de Saint-Cloud",48.838132,2.256275,,1,,Europe/Paris,,OIF, +OIF:SA:59493,1,"Ranelagh",48.856454,2.269994,,1,,Europe/Paris,,OIF, +OIF:SA:59494,1,"Miromesnil",48.873933,2.31463,,1,,Europe/Paris,,OIF, +OIF:SA:59495,1,"Jasmin",48.85219,2.267952,,1,,Europe/Paris,,OIF, +OIF:SA:59496,1,"Exelmans",48.843175,2.260332,,1,,Europe/Paris,,OIF, +OIF:SA:59498,1,"Buzenval",48.852466,2.401052,,1,,Europe/Paris,,OIF, +OIF:SA:59499,1,"Charonne",48.854554,2.385694,,1,,Europe/Paris,,OIF, +OIF:SA:59500,1,"Alma / Marceau",48.864759,2.301698,,1,,Europe/Paris,,OIF, +OIF:SA:59501,1,"Maraîchers",48.852632,2.405955,,1,,Europe/Paris,,OIF, +OIF:SA:59504,1,"Billancourt",48.83204,2.238228,,1,,Europe/Paris,,OIF, +OIF:SA:59505,1,"Marcel Sembat",48.834158,2.243297,,1,,Europe/Paris,,OIF, +OIF:SA:59506,1,"Croix de Chavaux",48.858299,2.436491,,1,,Europe/Paris,,OIF, +OIF:SA:59507,1,"Mairie de Montreuil",48.862297,2.44167,,1,,Europe/Paris,,OIF, +OIF:SA:59508,1,"Robespierre",48.855693,2.423156,,1,,Europe/Paris,,OIF, +OIF:SA:59509,1,"Volontaires",48.84148,2.308182,,1,,Europe/Paris,,OIF, +OIF:SA:59510,1,"Rennes",48.848332,2.328372,,1,,Europe/Paris,,OIF, +OIF:SA:59511,1,"Rue du Bac",48.856084,2.325655,,1,,Europe/Paris,,OIF, +OIF:SA:59512,1,"Saint-Georges",48.878465,2.337605,,1,,Europe/Paris,,OIF, +OIF:SA:59513,1,"Porte de la Chapelle",48.898125,2.35889,,1,,Europe/Paris,,OIF, +OIF:SA:59514,1,"Porte de Versailles",48.832724,2.288029,,1,,Europe/Paris,,OIF, +OIF:SA:59515,1,"Notre-Dame de Lorette",48.875593,2.338529,,1,,Europe/Paris,,OIF, +OIF:SA:59516,1,"Notre-Dame des Champs",48.845171,2.329743,,1,,Europe/Paris,,OIF, +OIF:SA:59517,1,"Marx Dormoy",48.890642,2.360223,,1,,Europe/Paris,,OIF, +OIF:SA:59518,1,"Jules Joffrin",48.892692,2.344874,,1,,Europe/Paris,,OIF, +OIF:SA:59519,1,"Lamarck / Caulaincourt",48.889649,2.339692,,1,,Europe/Paris,,OIF, +OIF:SA:59520,1,"Convention",48.837142,2.29699,,1,,Europe/Paris,,OIF, +OIF:SA:59521,1,"Abbesses",48.884543,2.338373,,1,,Europe/Paris,,OIF, +OIF:SA:59522,1,"Mairie d'Issy",48.824257,2.273411,,1,,Europe/Paris,,OIF, +OIF:SA:59523,1,"Corentin Celton",48.826933,2.278399,,1,,Europe/Paris,,OIF, +OIF:SA:59524,1,"Saint-Francois Xavier",48.851343,2.314263,,1,,Europe/Paris,,OIF, +OIF:SA:59526,1,"Porte de Saint-Ouen",48.898197,2.329408,,1,,Europe/Paris,,OIF, +OIF:SA:59527,1,"Porte de Vanves",48.82752,2.305188,,1,,Europe/Paris,,OIF, +OIF:SA:59529,1,"Plaisance",48.833326,2.314262,,1,,Europe/Paris,,OIF, +OIF:SA:59531,1,"Varenne",48.857769,2.317228,,1,,Europe/Paris,,OIF, +OIF:SA:59533,1,"La Fourche",48.887187,2.325746,,1,,Europe/Paris,,OIF, +OIF:SA:59535,1,"Brochant",48.891105,2.319232,,1,,Europe/Paris,,OIF, +OIF:SA:59536,1,"Malakoff / Plateau de Vanves",48.823158,2.298323,,1,,Europe/Paris,,OIF, +OIF:SA:59538,1,"Malakoff / Rue Etienne Dolet",48.814906,2.297394,,1,,Europe/Paris,,OIF, +OIF:SA:59540,1,"Saint-Denis Université",48.946159,2.364337,,1,,Europe/Paris,,OIF, +OIF:SA:59541,1,"Basilique de Saint-Denis",48.936877,2.359828,,1,,Europe/Paris,,OIF, +OIF:SA:59542,1,"Saint-Denis / Porte de Paris",48.929911,2.35666,,1,,Europe/Paris,,OIF, +OIF:SA:59543,1,"Garibaldi",48.906932,2.332195,,1,,Europe/Paris,,OIF, +OIF:SA:59544,1,"Carrefour Pleyel",48.919722,2.343658,,1,,Europe/Paris,,OIF, +OIF:SA:59545,1,"Mairie de Saint-Ouen",48.91175,2.333554,,1,,Europe/Paris,,OIF, +OIF:SA:59548,1,"Javel / André Citroën",48.845861,2.277596,,1,,Europe/Paris,,OIF, +OIF:SA:59551,1,"Porte de Pantin",48.889037,2.394875,,1,,Europe/Paris,,OIF, +OIF:SA:59552,1,"Olympiades",48.826571,2.367506,,1,,Europe/Paris,,OIF, +OIF:SA:59556,1,"Pierre et Marie Curie",48.815614,2.376981,,1,,Europe/Paris,,OIF, +OIF:SA:59557,1,"République",48.867359,2.363927,,1,,Europe/Paris,,OIF, +OIF:SA:59558,1,"Saint-Sébastien Froissart",48.860165,2.365929,,1,,Europe/Paris,,OIF, +OIF:SA:59559,1,"Porte Dorée",48.835535,2.406626,,1,,Europe/Paris,,OIF, +OIF:SA:59560,1,"Félix Faure",48.842817,2.288893,,1,,Europe/Paris,,OIF, +OIF:SA:59561,1,"Daumesnil",48.839423,2.395555,,1,,Europe/Paris,,OIF, +OIF:SA:59562,1,"Liberté",48.825964,2.405928,,1,,Europe/Paris,,OIF, +OIF:SA:59563,1,"Créteil l'Echat / Hôpital Henri Mondor",48.796058,2.449386,,1,,Europe/Paris,,OIF, +OIF:SA:59564,1,"Créteil Université",48.788972,2.449989,,1,,Europe/Paris,,OIF, +OIF:SA:59565,1,"École Vétérinaire de Maisons Alfort",48.814605,2.421842,,1,,Europe/Paris,,OIF, +OIF:SA:59566,1,"Châtelet",48.858063,2.347817,,1,,Europe/Paris,,OIF, +OIF:SA:59568,1,"Chaussée d'Antin / la Fayette",48.873101,2.333054,,1,,Europe/Paris,,OIF, +OIF:SA:59570,1,"Crimée",48.89124,2.376822,,1,,Europe/Paris,,OIF, +OIF:SA:59572,1,"Château Landon",48.88018,2.362725,,1,,Europe/Paris,,OIF, +OIF:SA:59574,1,"Poissonnière",48.877781,2.350213,,1,,Europe/Paris,,OIF, +OIF:SA:59576,1,"Pont Marie",48.853056,2.356812,,1,,Europe/Paris,,OIF, +OIF:SA:59578,1,"Le Kremlin Bicêtre",48.810844,2.361822,,1,,Europe/Paris,,OIF, +OIF:SA:59579,1,"Villejuif / Paul Vaillant Couturier / Hôpital Paul Brousse",48.796011,2.368487,,1,,Europe/Paris,,OIF, +OIF:SA:59580,1,"Villejuif / Léo Lagrange",48.804007,2.365098,,1,,Europe/Paris,,OIF, +OIF:SA:59582,1,"Asnières Gennevilliers les Courtilles",48.930342,2.283362,,1,,Europe/Paris,,OIF, +OIF:SA:59583,1,"Mairie de Clichy",48.903642,2.305231,,1,,Europe/Paris,,OIF, +OIF:SA:59584,1,"Père Lachaise",48.862524,2.387813,,1,,Europe/Paris,,OIF, +OIF:SA:59586,1,"Réaumur / Sébastopol",48.86615,2.352537,,1,,Europe/Paris,,OIF, +OIF:SA:59588,1,"Arts et Métiers",48.865487,2.356495,,1,,Europe/Paris,,OIF, +OIF:SA:59589,1,"Pont de Levallois - Bécon",48.897144,2.280472,,1,,Europe/Paris,,OIF, +OIF:SA:59590,1,"Hôtel de Ville",48.857324,2.350884,,1,,Europe/Paris,,OIF, +OIF:SA:59591,1,"Palais Royal Musée du Louvre",48.863158,2.336117,,1,,Europe/Paris,,OIF, +OIF:SA:59592,1,"Champs Elysées Clemenceau",48.867749,2.313767,,1,,Europe/Paris,,OIF, +OIF:SA:59593,1,"Esplanade de la Défense",48.887143,2.249607,,1,,Europe/Paris,,OIF, +OIF:SA:59595,1,"Château de Vincennes",48.844186,2.441157,,1,,Europe/Paris,,OIF, +OIF:SA:59596,1,"Bérault",48.84553,2.427674,,1,,Europe/Paris,,OIF, +OIF:SA:59597,1,"Les Agnettes",48.922632,2.285531,,1,,Europe/Paris,,OIF, +OIF:SA:59599,1,"Solférino",48.858624,2.322941,,1,,Europe/Paris,,OIF, +OIF:SA:59600,1,"Trinité d'Estienne d'Orves",48.876272,2.331619,,1,,Europe/Paris,,OIF, +OIF:SA:59601,1,"Vaugirard (Adolphe Chérioux)",48.839271,2.300831,,1,,Europe/Paris,,OIF, +OIF:SA:59602,1,"Falguière",48.843535,2.316325,,1,,Europe/Paris,,OIF, +OIF:SA:59603,1,"Assemblée Nationale",48.861816,2.320222,,1,,Europe/Paris,,OIF, +OIF:SA:59604,1,"Pernéty",48.833764,2.317754,,1,,Europe/Paris,,OIF, +OIF:SA:59606,1,"Liège",48.880127,2.327617,,1,,Europe/Paris,,OIF, +OIF:SA:59608,1,"Guy-Môquet",48.893108,2.327853,,1,,Europe/Paris,,OIF, +OIF:SA:59609,1,"Gaite",48.838079,2.322383,,1,,Europe/Paris,,OIF, +OIF:SA:59613,1,"Gabriel Péri Asnières Gennevilliers",48.916111,2.294587,,1,,Europe/Paris,,OIF, +OIF:SA:59614,1,"Châtillon Montrouge",48.81076,2.300466,,1,,Europe/Paris,,OIF, +OIF:SA:59616,1,"Voltaire / Léon Blum",48.858073,2.380384,,1,,Europe/Paris,,OIF, +OIF:SA:59617,1,"Trocadéro",48.863307,2.287218,,1,,Europe/Paris,,OIF, +OIF:SA:59619,1,"Iéna",48.864674,2.294375,,1,,Europe/Paris,,OIF, +OIF:SA:59621,1,"Pont de Sèvres",48.829572,2.230622,,1,,Europe/Paris,,OIF, +OIF:SA:59622,1,"Simplon",48.895109,2.346614,,1,,Europe/Paris,,OIF, +OIF:SA:59623,1,"Saint-Germain des Prés",48.853619,2.333495,,1,,Europe/Paris,,OIF, +OIF:SA:59624,1,"Porte d'Orléans",48.822567,2.325665,,1,,Europe/Paris,,OIF, +OIF:SA:59628,1,"Cité",48.855484,2.346058,,1,,Europe/Paris,,OIF, +OIF:SA:59629,1,"Château Rouge",48.887341,2.348767,,1,,Europe/Paris,,OIF, +OIF:SA:59630,1,"Château d'Eau",48.872412,2.356534,,1,,Europe/Paris,,OIF, +OIF:SA:59631,1,"Alésia",48.828022,2.32688,,1,,Europe/Paris,,OIF, +OIF:SA:59632,1,"Barbes / Rochechouart",48.883783,2.349465,,1,,Europe/Paris,,OIF, +OIF:SA:59633,1,"Quai de la Rapée",48.845537,2.368221,,1,,Europe/Paris,,OIF, +OIF:SA:59635,1,"Jaurès",48.882711,2.370652,,1,,Europe/Paris,,OIF, +OIF:SA:59636,1,"Laumière",48.884622,2.37971,,1,,Europe/Paris,,OIF, +OIF:SA:59637,1,"Bréguet / Sabin",48.855598,2.371337,,1,,Europe/Paris,,OIF, +OIF:SA:59638,1,"Place des Fêtes",48.876422,2.393964,,1,,Europe/Paris,,OIF, +OIF:SA:59640,1,"Goncourt / Hôpital Saint-Louis",48.86998,2.370828,,1,,Europe/Paris,,OIF, +OIF:SA:59645,1,"Pré Saint-Gervais",48.879764,2.398782,,1,,Europe/Paris,,OIF, +OIF:SA:59648,1,"Sèvres / Lecourbe",48.8449,2.310556,,1,,Europe/Paris,,OIF, +OIF:SA:59650,1,"Kléber",48.871309,2.293349,,1,,Europe/Paris,,OIF, +OIF:SA:59651,1,"Glacière",48.830899,2.343759,,1,,Europe/Paris,,OIF, +OIF:SA:59652,1,"Boissière",48.866928,2.290048,,1,,Europe/Paris,,OIF, +OIF:SA:59655,1,"Ménilmontant",48.866351,2.383849,,1,,Europe/Paris,,OIF, +OIF:SA:59658,1,"La Tour-Maubourg",48.857314,2.309654,,1,,Europe/Paris,,OIF, +OIF:SA:59661,1,"Pont de Neuilly",48.885444,2.25981,,1,,Europe/Paris,,OIF, +OIF:SA:59662,1,"Saint-Mandé",48.846108,2.418593,,1,,Europe/Paris,,OIF, +OIF:SA:59663,1,"Porte de Choisy",48.819737,2.364178,,1,,Europe/Paris,,OIF, +OIF:SA:59664,1,"Pont Neuf / Quai du Louvre",48.858259,2.341909,,1,,Europe/Paris,,OIF, +OIF:SA:59666,1,"Porte d'Italie",48.818719,2.359839,,1,,Europe/Paris,,OIF, +OIF:SA:59667,1,"Église d'Auteuil",48.847742,2.269758,,1,,Europe/Paris,,OIF, +OIF:SA:59668,1,"Porte d'Auteuil",48.847587,2.258444,,1,,Europe/Paris,,OIF, +OIF:SA:59670,1,"Rue Saint-Maur",48.864092,2.380919,,1,,Europe/Paris,,OIF, +OIF:SA:59673,1,"Aéroport Orly Ouest",48.728485,2.360024,,1,,Europe/Paris,,OIF, +OIF:SA:59675,1,"Aéroport Orly Sud",48.728923,2.369364,,1,,Europe/Paris,,OIF, +OIF:SA:59677,1,"Parc Pr",49.008968,2.544809,,1,,Europe/Paris,,OIF, +OIF:SA:59681,1,"Parc Px",49.010048,2.570632,,1,,Europe/Paris,,OIF, +OIF:SA:59685,1,"Aéroport CDG Terminal 1",49.01438,2.541911,,1,,Europe/Paris,,OIF, +OIF:SA:59686,1,"Créteil Pointe du Lac",48.768894,2.464086,,1,,Europe/Paris,,OIF, +OIF:SA:59687,1,"L'Île Saint-Denis",48.935587,2.340202,,1,,Europe/Paris,,OIF, +OIF:SA:59689,1,"Mairie",48.935616,2.333406,,1,,Europe/Paris,,OIF, +OIF:SA:59691,1,"La Noue",48.934254,2.326681,,1,,Europe/Paris,,OIF, +OIF:SA:59693,1,"Chemin des Reniers",48.932883,2.321246,,1,,Europe/Paris,,OIF, +OIF:SA:59695,1,"Parc des Chanteraines",48.93378,2.31333,,1,,Europe/Paris,,OIF, +OIF:SA:59699,1,"Timbaud / Félicie",48.931691,2.304231,,1,,Europe/Paris,,OIF, +OIF:SA:59701,1,"Le Village",48.933436,2.294111,,1,,Europe/Paris,,OIF, +OIF:SA:59703,1,"Le Luth",48.932189,2.288619,,1,,Europe/Paris,,OIF, +OIF:SA:59708,1,"Faubourg de l'Arche",48.896745,2.24066,,1,,Europe/Paris,,OIF, +OIF:SA:59710,1,"Les Fauvelles",48.902211,2.239249,,1,,Europe/Paris,,OIF, +OIF:SA:59712,1,"Charlebourg",48.906819,2.238786,,1,,Europe/Paris,,OIF, +OIF:SA:59714,1,"Jacqueline Auriol",48.910499,2.23499,,1,,Europe/Paris,,OIF, +OIF:SA:59716,1,"Victor Basch",48.914268,2.230793,,1,,Europe/Paris,,OIF, +OIF:SA:59718,1,"Parc Pierre Lagravère",48.921353,2.229705,,1,,Europe/Paris,,OIF, +OIF:SA:59720,1,"Pont de Bezons",48.923297,2.218329,,1,,Europe/Paris,,OIF, +OIF:SA:59722,1,"Maryse Bastié",48.82382,2.375481,,1,,Europe/Paris,,OIF, +OIF:SA:59724,1,"Avenue de France",48.826508,2.381018,,1,,Europe/Paris,,OIF, +OIF:SA:59726,1,"Baron le Roy",48.830588,2.391454,,1,,Europe/Paris,,OIF, +OIF:SA:59732,1,"Montempoivre",48.840106,2.408954,,1,,Europe/Paris,,OIF, +OIF:SA:59734,1,"Alexandra David-Neel",48.843089,2.41054,,1,,Europe/Paris,,OIF, +OIF:SA:59742,1,"Marie de Miribel",48.858825,2.409668,,1,,Europe/Paris,,OIF, +OIF:SA:59746,1,"Séverine",48.867431,2.408971,,1,,Europe/Paris,,OIF, +OIF:SA:59748,1,"Adrienne Bolland",48.872172,2.408617,,1,,Europe/Paris,,OIF, +OIF:SA:59752,1,"Hôpital Robert Debré",48.879223,2.401057,,1,,Europe/Paris,,OIF, +OIF:SA:59754,1,"Butte du Chapeau Rouge",48.88498,2.395872,,1,,Europe/Paris,,OIF, +OIF:SA:59756,1,"Porte de Pantin / Parc de la Villette",48.888732,2.394152,,1,,Europe/Paris,,OIF, +OIF:SA:59758,1,"Delphine Seyrig",48.894418,2.40013,,1,,Europe/Paris,,OIF, +OIF:SA:59760,1,"Ella Fitzgerald / Grands Moulins de Pantin",48.897424,2.395116,,1,,Europe/Paris,,OIF, +OIF:SA:59764,1,"Canal Saint-Denis",48.898873,2.380355,,1,,Europe/Paris,,OIF, +OIF:SA:59768,1,"Porte d'Aubervilliers",48.899006,2.369857,,1,,Europe/Paris,,OIF, +OIF:SA:59770,1,"Colette Besson",48.898637,2.364217,,1,,Europe/Paris,,OIF, +OIF:SA:59774,1,"Front Populaire",48.906552,2.367924,,1,,Europe/Paris,,OIF, +OIF:SA:59776,1,"Mairie de Montrouge",48.818452,2.320179,,1,,Europe/Paris,,OIF, +OIF:SA:59779,1,"Baudelaire",48.942296,2.356769,,1,,Europe/Paris,,OIF, +OIF:SA:59781,1,"Roger Semât",48.944368,2.356997,,1,,Europe/Paris,,OIF, +OIF:SA:59783,1,"Guynemer",48.948198,2.357423,,1,,Europe/Paris,,OIF, +OIF:SA:59785,1,"Petit Pierrefitte",48.952275,2.357923,,1,,Europe/Paris,,OIF, +OIF:SA:59787,1,"Joncherolles",48.955908,2.358364,,1,,Europe/Paris,,OIF, +OIF:SA:59789,1,"Suzanne Valadon",48.959232,2.358416,,1,,Europe/Paris,,OIF, +OIF:SA:59791,1,"Mairie de Pierrefitte",48.963513,2.36023,,1,,Europe/Paris,,OIF, +OIF:SA:59793,1,"Alcide d'Orbigny",48.964883,2.362771,,1,,Europe/Paris,,OIF, +OIF:SA:59795,1,"Jacques Prévert",48.970853,2.366001,,1,,Europe/Paris,,OIF, +OIF:SA:59797,1,"Butte Pinson",48.973494,2.365973,,1,,Europe/Paris,,OIF, +OIF:SA:59799,1,"Les Cholettes",48.977399,2.371394,,1,,Europe/Paris,,OIF, +OIF:SA:59801,1,"Les Flanades",48.977234,2.377794,,1,,Europe/Paris,,OIF, +OIF:SA:59803,1,"Paul Valéry",48.979453,2.379422,,1,,Europe/Paris,,OIF, +OIF:SA:59805,1,"Les Lochères",48.978461,2.385277,,1,,Europe/Paris,,OIF, +OIF:SA:59809,1,"Villejuif-Louis Aragon",48.787846,2.367431,,1,,Europe/Paris,,OIF, +OIF:SA:59811,1,"Lamartine",48.78308,2.365641,,1,,Europe/Paris,,OIF, +OIF:SA:59813,1,"Domaine Chérioux",48.778905,2.367315,,1,,Europe/Paris,,OIF, +OIF:SA:59815,1,"Moulin Vert",48.772503,2.370643,,1,,Europe/Paris,,OIF, +OIF:SA:59817,1,"Bretagne",48.768541,2.367598,,1,,Europe/Paris,,OIF, +OIF:SA:59819,1,"Auguste Perret (Cimetière Parisien)",48.763712,2.367523,,1,,Europe/Paris,,OIF, +OIF:SA:59821,1,"Porte de Thiais (Marche International)",48.759551,2.366348,,1,,Europe/Paris,,OIF, +OIF:SA:59823,1,"La Belle Epine",48.755871,2.368642,,1,,Europe/Paris,,OIF, +OIF:SA:59825,1,"Place de la Logistique (Plateforme Sogaris)",48.752941,2.361876,,1,,Europe/Paris,,OIF, +OIF:SA:59827,1,"Porte de Rungis",48.752432,2.354624,,1,,Europe/Paris,,OIF, +OIF:SA:59829,1,"Saarinen (Parc Silic Nord)",48.750049,2.354603,,1,,Europe/Paris,,OIF, +OIF:SA:59831,1,"Robert Schuman (Parc Silic Centre)",48.746447,2.353256,,1,,Europe/Paris,,OIF, +OIF:SA:59835,1,"Hélène Boucher (Orlytech)",48.740663,2.359723,,1,,Europe/Paris,,OIF, +OIF:SA:59837,1,"Caroline Aigle (Orlyfret)",48.738248,2.369787,,1,,Europe/Paris,,OIF, +OIF:SA:59839,1,"Cœur d'Orly",48.734243,2.371032,,1,,Europe/Paris,,OIF, +OIF:SA:59844,1,"Porte de l'Essonne",48.714083,2.371865,,1,,Europe/Paris,,OIF, +OIF:SA:59848,1,"Vauban",48.80677,2.294016,,1,,Europe/Paris,,OIF, +OIF:SA:59850,1,"Centre de Châtillon",48.803886,2.289173,,1,,Europe/Paris,,OIF, +OIF:SA:59852,1,"Parc André Malraux",48.800578,2.283155,,1,,Europe/Paris,,OIF, +OIF:SA:59854,1,"Division Leclerc",48.794826,2.272627,,1,,Europe/Paris,,OIF, +OIF:SA:59856,1,"Soleil Levant",48.790853,2.263444,,1,,Europe/Paris,,OIF, +OIF:SA:59858,1,"Hôpital Béclère",48.786942,2.25506,,1,,Europe/Paris,,OIF, +OIF:SA:59860,1,"Mail de la Plaine",48.7841,2.24627,,1,,Europe/Paris,,OIF, +OIF:SA:59862,1,"Pavé Blanc",48.780627,2.239572,,1,,Europe/Paris,,OIF, +OIF:SA:59864,1,"Georges Pompidou",48.785209,2.238524,,1,,Europe/Paris,,OIF, +OIF:SA:59866,1,"Georges Millandy",48.783554,2.230875,,1,,Europe/Paris,,OIF, +OIF:SA:59868,1,"Meudon-la-Forêt",48.783926,2.2259,,1,,Europe/Paris,,OIF, +OIF:SA:59870,1,"Vélizy 2",48.784877,2.218919,,1,,Europe/Paris,,OIF, +OIF:SA:59872,1,"Dewoitine",48.783661,2.21474,,1,,Europe/Paris,,OIF, +OIF:SA:59874,1,"Inovel Parc Nord",48.781042,2.20845,,1,,Europe/Paris,,OIF, +OIF:SA:59876,1,"Louvois",48.77999,2.197347,,1,,Europe/Paris,,OIF, +OIF:SA:59878,1,"Mairie de Vélizy",48.780986,2.191285,,1,,Europe/Paris,,OIF, +OIF:SA:59880,1,"L'Onde",48.781861,2.180218,,1,,Europe/Paris,,OIF, +OIF:SA:59882,1,"Robert Wagner",48.785116,2.178954,,1,,Europe/Paris,,OIF, +OIF:SA:59886,1,"Pierre de Geyter",48.931663,2.352428,,1,,Europe/Paris,,OIF, +OIF:SA:59890,1,"Paul Éluard",48.939758,2.345091,,1,,Europe/Paris,,OIF, +OIF:SA:59892,1,"Delaunay / Belleville",48.945776,2.348691,,1,,Europe/Paris,,OIF, +OIF:SA:59894,1,"César",48.949522,2.342404,,1,,Europe/Paris,,OIF, +OIF:SA:59896,1,"Jean Vilar",48.952794,2.34338,,1,,Europe/Paris,,OIF, +OIF:SA:59898,1,"Pablo Neruda",48.956456,2.344083,,1,,Europe/Paris,,OIF, +OIF:SA:59900,1,"Villetaneuse - Université",48.959972,2.341935,,1,,Europe/Paris,,OIF, +OIF:SA:59902,1,"Cité Blumenthal",48.947842,2.339054,,1,,Europe/Paris,,OIF, +OIF:SA:59904,1,"Les Mobiles",48.949055,2.330272,,1,,Europe/Paris,,OIF, +OIF:SA:59906,1,"Les Béatus",48.952036,2.321102,,1,,Europe/Paris,,OIF, +OIF:SA:59908,1,"Rose Bertin",48.953571,2.314795,,1,,Europe/Paris,,OIF, +OIF:SA:59910,1,"Lacépède",48.956004,2.311339,,1,,Europe/Paris,,OIF, +OIF:SA:59912,1,"Gilbert Bonnemaison",48.955242,2.308389,,1,,Europe/Paris,,OIF, +OIF:SA:59916,1,"Épinay - Orgemont",48.955719,2.294145,,1,,Europe/Paris,,OIF, +OIF:SA:59:2224147,1,"Aéroport CDG Terminal 2 A",49.002943,2.561674,,1,,Europe/Paris,,OIF, +OIF:SA:59:2224149,1,"Terminal 2E",49.003729,2.577904,,1,,Europe/Paris,,OIF, +OIF:SA:59:2224150,1,"Terminal 2F",49.004997,2.577555,,1,,Europe/Paris,,OIF, +OIF:SA:59:2224152,1,"Aéroport CDG Terminal 2 B",49.004138,2.562089,,1,,Europe/Paris,,OIF, +OIF:SA:59:3442419,1,"Pont Neuf / Quai des Grands Augustins",48.855856,2.34012,,1,,Europe/Paris,,OIF, +OIF:SA:59:3442426,1,"Musée du Luxembourg",48.848653,2.332582,,1,,Europe/Paris,,OIF, +OIF:SA:59:3442442,1,"Rue Benard",48.831142,2.324013,,1,,Europe/Paris,,OIF, +OIF:SA:59:3442443,1,"Alésia / les Plantes",48.829776,2.322925,,1,,Europe/Paris,,OIF, +OIF:SA:59:3442444,1,"Hop. Notre-Dame de Bon Secours / A. Chantin",48.827322,2.320611,,1,,Europe/Paris,,OIF, +OIF:SA:59:3442447,1,"Porte Didot / Lycée Raspail",48.825226,2.311002,,1,,Europe/Paris,,OIF, +OIF:SA:59:3442450,1,"Pont de la Vallée",48.825517,2.302869,,1,,Europe/Paris,,OIF, +OIF:SA:59:3442456,1,"Lycée Michelet",48.82353,2.288367,,1,,Europe/Paris,,OIF, +OIF:SA:59:3442458,1,"Colonel Monteil",48.826413,2.310402,,1,,Europe/Paris,,OIF, +OIF:SA:59:3442461,1,"Alésia / Didot",48.830707,2.318995,,1,,Europe/Paris,,OIF, +OIF:SA:59:3442463,1,"Château",48.833919,2.321862,,1,,Europe/Paris,,OIF, +OIF:SA:59:3442468,1,"Saint-André des Arts",48.853765,2.338622,,1,,Europe/Paris,,OIF, +OIF:SA:59:3442546,1,"Gabrielle de Guerchy",48.819117,2.32305,,1,,Europe/Paris,,OIF, +OIF:SA:59:3442549,1,"Radiguey",48.819349,2.314714,,1,,Europe/Paris,,OIF, +OIF:SA:59:3442551,1,"Pierre Brossolette / Gabriel Péri",48.819738,2.310519,,1,,Europe/Paris,,OIF, +OIF:SA:59:3442554,1,"Pierre Larousse / Carrefour du 8 Mai 1945",48.819449,2.305556,,1,,Europe/Paris,,OIF, +OIF:SA:59:3442561,1,"Mairie / Centre Administratif",48.821049,2.288737,,1,,Europe/Paris,,OIF, +OIF:SA:59:3442563,1,"Place du Maréchal de Lattre de Tassigny",48.822301,2.284911,,1,,Europe/Paris,,OIF, +OIF:SA:59:3442569,1,"Victor Hugo",48.827689,2.273247,,1,,Europe/Paris,,OIF, +OIF:SA:59:3442571,1,"Place du Président Robert Schuman",48.828193,2.267458,,1,,Europe/Paris,,OIF, +OIF:SA:59:3442575,1,"Quai du Point du Jour",48.831121,2.257137,,1,,Europe/Paris,,OIF, +OIF:SA:59:3442577,1,"Rue du Point du Jour",48.830979,2.250757,,1,,Europe/Paris,,OIF, +OIF:SA:59:3442579,1,"Danjou",48.832822,2.247748,,1,,Europe/Paris,,OIF, +OIF:SA:59:3442583,1,"Mairie",48.835835,2.239111,,1,,Europe/Paris,,OIF, +OIF:SA:59:3442585,1,"Ancienne Mairie",48.839085,2.234322,,1,,Europe/Paris,,OIF, +OIF:SA:59:3442596,1,"Cimetière de Montrouge",48.820914,2.321178,,1,,Europe/Paris,,OIF, +OIF:SA:59:3446769,1,"Raymond Queneau / Route de Noisy",48.895387,2.426709,,1,,Europe/Paris,,OIF, +OIF:SA:59:3446771,1,"Louise Dory",48.893898,2.434476,,1,,Europe/Paris,,OIF, +OIF:SA:59:3446773,1,"Paul de Kock",48.893031,2.438917,,1,,Europe/Paris,,OIF, +OIF:SA:59:3446775,1,"Rue du Parc / Vaillant-Couturier",48.892211,2.444814,,1,,Europe/Paris,,OIF, +OIF:SA:59:3446780,1,"Jeanne d'Arc",48.889981,2.45267,,1,,Europe/Paris,,OIF, +OIF:SA:59:3446785,1,"Brement / Général de Gaulle",48.887099,2.469651,,1,,Europe/Paris,,OIF, +OIF:SA:59:3446787,1,"Rosny 2 Nord",48.886049,2.476337,,1,,Europe/Paris,,OIF, +OIF:SA:59:3446793,1,"Jean de Mailly / Hoffmann",48.877986,2.48604,,1,,Europe/Paris,,OIF, +OIF:SA:59:3446795,1,"Kellermann",48.879252,2.49114,,1,,Europe/Paris,,OIF, +OIF:SA:59:3446797,1,"Cimetière",48.883105,2.498111,,1,,Europe/Paris,,OIF, +OIF:SA:59:3446799,1,"11 Novembre",48.880964,2.494688,,1,,Europe/Paris,,OIF, +OIF:SA:59:3446800,1,"Échangeur de Rosny",48.886689,2.472682,,1,,Europe/Paris,,OIF, +OIF:SA:59:3616867,1,"Clemenceau",48.843887,2.530653,,1,,Europe/Paris,,OIF, +OIF:SA:59:3616869,1,"François de Troy",48.841765,2.533525,,1,,Europe/Paris,,OIF, +OIF:SA:59:3616875,1,"Europe",48.834461,2.530289,,1,,Europe/Paris,,OIF, +OIF:SA:59:3616876,1,"Les Hauts de Bry",48.835681,2.533611,,1,,Europe/Paris,,OIF, +OIF:SA:59:3616884,1,"Lamartine",48.842602,2.532984,,1,,Europe/Paris,,OIF, +OIF:SA:59:3616892,1,"Chemin de Bondy",48.885075,2.480841,,1,,Europe/Paris,,OIF, +OIF:SA:59:3616900,1,"Meissonier",48.885334,2.501515,,1,,Europe/Paris,,OIF, +OIF:SA:59:3616902,1,"Avenue du Raincy",48.885682,2.507833,,1,,Europe/Paris,,OIF, +OIF:SA:59:3616908,1,"Boulevard André",48.881897,2.520909,,1,,Europe/Paris,,OIF, +OIF:SA:59:3616912,1,"Jean Jaurès / Henri Barbusse",48.883951,2.532063,,1,,Europe/Paris,,OIF, +OIF:SA:59:3616914,1,"Charles de Gaulle",48.884561,2.534914,,1,,Europe/Paris,,OIF, +OIF:SA:59:3616916,1,"Florian",48.88194,2.538331,,1,,Europe/Paris,,OIF, +OIF:SA:59:3616918,1,"Jean Moulin",48.880877,2.542824,,1,,Europe/Paris,,OIF, +OIF:SA:59:3616920,1,"Montguichet / Aréna",48.879099,2.546823,,1,,Europe/Paris,,OIF, +OIF:SA:59:3616924,1,"Émile Cossonneau",48.874853,2.551465,,1,,Europe/Paris,,OIF, +OIF:SA:59:3616930,1,"Léon Bry",48.88584,2.533529,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619132,1,"Rue Legrand",48.824051,2.302495,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619134,1,"Victor Hugo",48.822217,2.305364,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619137,1,"Gabriel Péri / André Coin",48.819229,2.299797,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619141,1,"Hoche",48.815738,2.290899,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619145,1,"Henri Barbusse / Védrines",48.810778,2.285185,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619147,1,"Colonel Fabien",48.811806,2.280716,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619150,1,"Lazare / Carnot",48.809127,2.273432,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619152,1,"Marie Doffe",48.80464,2.274193,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619154,1,"Voie Verte",48.802301,2.271161,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619155,1,"Marché",48.801563,2.265737,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619166,1,"Le Parc",48.813106,2.292881,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619291,1,"Lycée Saint-Exupéry",48.782142,2.458768,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619296,1,"René Arcos",48.777767,2.46656,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619298,1,"Emouleuses",48.777434,2.472859,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619306,1,"Écoles",48.773982,2.485048,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619308,1,"Mairie",48.773654,2.487368,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619318,1,"La Fosse Rouge",48.775356,2.523775,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619320,1,"Place Degas",48.77406,2.525239,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619326,1,"Noiseau / le Morbras",48.776871,2.534558,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619327,1,"Rue de l'Ancien Moulin",48.778767,2.535258,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619329,1,"Olivier d'Ormesson",48.784039,2.53736,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619335,1,"Noiseau / Amboile",48.790232,2.531861,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619337,1,"8 Mai 1945",48.791997,2.532514,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619343,1,"Zone Industrielle",48.799239,2.542201,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619347,1,"Champlain / Pagnol",48.798782,2.5536,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619349,1,"Clément Ader / les Bordes",48.802815,2.552623,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619351,1,"Rabelais",48.803337,2.550095,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619353,1,"Claude Bernard",48.804404,2.546514,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619355,1,"Rodin",48.806178,2.549317,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619359,1,"Vétérans",48.808425,2.552041,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619361,1,"Fauvettes",48.808888,2.549281,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619363,1,"Colombe / Hardelet",48.8099,2.542392,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619364,1,"Les Mordacs",48.808845,2.537973,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619366,1,"11 Novembre 1918",48.811202,2.536607,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619370,1,"Docteur Bring",48.817927,2.538924,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619375,1,"Le Morbras",48.776782,2.534367,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619376,1,"Roland Cauchy",48.774822,2.511731,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619394,1,"Verdun",48.820103,2.47391,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619396,1,"Jougla",48.823029,2.473618,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619398,1,"Mozart",48.825388,2.47404,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619400,1,"Polangis",48.827548,2.475475,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619402,1,"Camping International",48.829694,2.477339,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619417,1,"Jean-Baptiste Clément",48.817325,2.496713,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619418,1,"Place de Champigny",48.816623,2.500229,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619420,1,"Guittard",48.815019,2.506518,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619424,1,"Mairie",48.813375,2.512477,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619428,1,"Polyclinique",48.81064,2.5172,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619430,1,"Jeanne Vacher",48.809156,2.520358,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619442,1,"Aristide Briand / le Plant",48.818301,2.492034,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619453,1,"République / Stalingrad",48.816337,2.511844,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619455,1,"République / Alexandre Fourny",48.819629,2.511538,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619457,1,"Cité Jardins",48.821318,2.510626,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619463,1,"Les Marais",48.827019,2.517747,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619465,1,"Les Armoiries",48.827266,2.529584,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619476,1,"Carrefour de la Résistance",48.820301,2.467613,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619479,1,"Dagoty",48.816811,2.476685,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619482,1,"Charles Floquet / Diderot",48.815007,2.481497,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619483,1,"Verdun / Charles Floquet",48.817374,2.482763,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619484,1,"Jacques Decour",48.816652,2.484816,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619485,1,"Bel Air",48.815857,2.488706,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619486,1,"Diane",48.813809,2.494409,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619488,1,"Verdun / la Plage",48.813692,2.501438,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619489,1,"Diderot / la Plage",48.812838,2.501176,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619491,1,"Les Pavillons Fleuris",48.813305,2.488032,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619640,1,"Général de Gaulle / Stalingrad",48.824087,2.495788,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619642,1,"André Ohresser",48.824627,2.499873,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619652,1,"Guy Moquet",48.819321,2.514671,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619654,1,"Fourny Égalité",48.818834,2.518766,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619655,1,"Benoit Frachon",48.818735,2.522189,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619657,1,"Zone Industrielle",48.819115,2.526328,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619659,1,"Centre Commercial",48.820045,2.531966,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619661,1,"Rue de Bernaü",48.816755,2.533393,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619663,1,"Lycée Marx Dormoy",48.817351,2.535978,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619665,1,"Bernaü Dolet",48.817733,2.538252,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619669,1,"Égalité",48.818979,2.518454,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619682,1,"Joffre",48.803629,2.507964,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619684,1,"Carpeaux",48.802054,2.506537,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619686,1,"Stade A. Marin",48.79994,2.504673,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619688,1,"Jean Moulin",48.797831,2.502687,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619690,1,"Rue de la Ferme",48.79575,2.499571,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619692,1,"Boulevard de la Marne",48.793429,2.497938,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619694,1,"Mûriers",48.78928,2.495375,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619696,1,"Raspail / Pont de Bonneuil",48.785406,2.495248,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619702,1,"Aviation",48.775306,2.489947,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619704,1,"Rhin et Danube",48.772832,2.490375,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619707,1,"Verdun",48.769016,2.481787,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619711,1,"Docteur Roux",48.769835,2.476633,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619713,1,"Sully",48.768275,2.473257,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619715,1,"Nelson Paillou",48.768498,2.471286,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619717,1,"Attripes",48.768456,2.46826,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619728,1,"Mairie",48.777624,2.455558,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619735,1,"Croix des Mèches",48.785329,2.453022,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619747,1,"Pierre Curie",48.810241,2.424038,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619748,1,"Professeur Cadiot",48.80637,2.42697,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619751,1,"Mairie",48.801203,2.431526,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619752,1,"Général Gallieni",48.797269,2.433349,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619754,1,"Belfort",48.793772,2.434261,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619758,1,"Petites Haies",48.787779,2.437487,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619760,1,"Montaigut",48.789961,2.444374,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619773,1,"Casalis / Savar",48.780114,2.466025,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619775,1,"Gaité / RN19",48.781015,2.473739,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619777,1,"Hugo / Blum",48.8004,2.435668,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619778,1,"République / Blum",48.8029,2.434031,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619779,1,"11 Novembre 1918",48.805157,2.432003,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619783,1,"Port à l'Anglais",48.804502,2.405054,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619784,1,"Port à l'Anglais / Jules Guesde",48.804437,2.408503,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619785,1,"Waldeck Rousseau / Jules Guesde",48.802116,2.411085,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619786,1,"Salvador Allende / Edith Cavell",48.796543,2.412438,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619791,1,"Paul Vaillant Couturier-Kennedy",48.802519,2.420991,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619792,1,"Mairie",48.804618,2.420198,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619834,1,"Etienne Dolet / Émile Zola",48.799286,2.422954,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619835,1,"Edith Cavell / Waldeck Rousseau",48.801577,2.410213,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619836,1,"Pasteur Charles Fourier",48.802676,2.406065,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619839,1,"Frères Lumière",48.817983,2.460519,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619841,1,"Les Canadiens",48.816667,2.45614,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619843,1,"Écoles de Gravelle",48.815684,2.459295,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619845,1,"John Fitzgerald Kennedy",48.814512,2.462151,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619847,1,"Pont de Maisons Alfort",48.809359,2.453933,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619852,1,"Mayenne",48.806736,2.464112,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619854,1,"Halage",48.805076,2.466019,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619856,1,"Chéret / Laferrière",48.802533,2.460367,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619858,1,"Collège Plaisance",48.800825,2.457118,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619860,1,"Henri Mondor / Laferrière",48.799392,2.454298,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619866,1,"Saint-Simon",48.794287,2.447083,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619883,1,"Jean Mermoz",48.775988,2.468538,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619885,1,"Mont Mesly",48.774226,2.468241,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619887,1,"Docteur Ramon",48.773794,2.464976,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619888,1,"Clos Vougeot",48.771769,2.467793,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619890,1,"Coteaux du Sud",48.770582,2.468265,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619892,1,"Lycée Gutenberg",48.769607,2.471588,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619907,1,"Jouet",48.804052,2.436906,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619909,1,"République / Général Leclerc",48.80548,2.440821,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619917,1,"René Coty",48.81027,2.443454,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619919,1,"Rue de Lille",48.807463,2.446717,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619921,1,"Rue de Marseille",48.808525,2.450685,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619925,1,"Planètes",48.808553,2.457133,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619927,1,"Louis Fliche",48.807646,2.462352,,1,,Europe/Paris,,OIF, +OIF:SA:59:3619935,1,"Collège de Stael",48.799693,2.442367,,1,,Europe/Paris,,OIF, +OIF:SA:59:3620233,1,"Carrefour de la Résistance",48.757065,2.388296,,1,,Europe/Paris,,OIF, +OIF:SA:59:3620236,1,"Georges Halgoult",48.760667,2.399348,,1,,Europe/Paris,,OIF, +OIF:SA:59:3620239,1,"René Panhard",48.763039,2.401299,,1,,Europe/Paris,,OIF, +OIF:SA:59:3620256,1,"Faculté des Sports",48.76827,2.457035,,1,,Europe/Paris,,OIF, +OIF:SA:59:3639720,1,"Les Aérostiers",48.831717,2.584144,,1,,Europe/Paris,,OIF, +OIF:SA:59:3639722,1,"Les 2 Lacs",48.830886,2.588183,,1,,Europe/Paris,,OIF, +OIF:SA:59:3639724,1,"Malnoue / Bois des Souches",48.830625,2.590612,,1,,Europe/Paris,,OIF, +OIF:SA:59:3639726,1,"Malnoue - Place Auguste Legemble",48.827065,2.595393,,1,,Europe/Paris,,OIF, +OIF:SA:59:3639728,1,"Malnoue / Ancien Monastère",48.829489,2.598645,,1,,Europe/Paris,,OIF, +OIF:SA:59:3639730,1,"Malnoue / Avenue de l'Europe",48.830077,2.604985,,1,,Europe/Paris,,OIF, +OIF:SA:59:3639732,1,"Malnoue / Stade Dominique Rocheteau",48.82618,2.611083,,1,,Europe/Paris,,OIF, +OIF:SA:59:3639734,1,"Cimetière",48.817666,2.616013,,1,,Europe/Paris,,OIF, +OIF:SA:59:3663573,1,"Lyon",48.809786,2.451872,,1,,Europe/Paris,,OIF, +OIF:SA:59:3663576,1,"Danielle Casanova",48.805323,2.456958,,1,,Europe/Paris,,OIF, +OIF:SA:59:3663578,1,"Hôpital Intercommunal",48.798479,2.465113,,1,,Europe/Paris,,OIF, +OIF:SA:59:3663583,1,"Cimetière / Rabelais",48.806359,2.479487,,1,,Europe/Paris,,OIF, +OIF:SA:59:3663585,1,"Mairie",48.803103,2.485328,,1,,Europe/Paris,,OIF, +OIF:SA:59:3663586,1,"Quatre Septembre",48.800107,2.484184,,1,,Europe/Paris,,OIF, +OIF:SA:59:3663587,1,"Boulevard de Créteil",48.797734,2.483919,,1,,Europe/Paris,,OIF, +OIF:SA:59:3663588,1,"Garibaldi",48.795572,2.483987,,1,,Europe/Paris,,OIF, +OIF:SA:59:3663589,1,"Adamville",48.793683,2.486551,,1,,Europe/Paris,,OIF, +OIF:SA:59:3663590,1,"Vassal",48.793382,2.478383,,1,,Europe/Paris,,OIF, +OIF:SA:59:3663591,1,"Rue des Coteaux",48.791535,2.474216,,1,,Europe/Paris,,OIF, +OIF:SA:59:3663592,1,"Villette",48.788827,2.476861,,1,,Europe/Paris,,OIF, +OIF:SA:59:3663593,1,"La Pie",48.78839,2.481036,,1,,Europe/Paris,,OIF, +OIF:SA:59:3663595,1,"Paul Bert",48.815435,2.425843,,1,,Europe/Paris,,OIF, +OIF:SA:59:3663596,1,"Les 7 Arbres",48.815394,2.432035,,1,,Europe/Paris,,OIF, +OIF:SA:59:3663597,1,"Moulin Brule",48.815525,2.4372,,1,,Europe/Paris,,OIF, +OIF:SA:59:3663598,1,"Passerelle de Charentonneau",48.815056,2.443759,,1,,Europe/Paris,,OIF, +OIF:SA:59:3663599,1,"Concorde",48.811753,2.443589,,1,,Europe/Paris,,OIF, +OIF:SA:59:3663601,1,"Rue de Vincennes",48.809775,2.448041,,1,,Europe/Paris,,OIF, +OIF:SA:59:3663612,1,"Square Beaurepaire",48.790408,2.476906,,1,,Europe/Paris,,OIF, +OIF:SA:59:3663613,1,"Bourbaki",48.791939,2.481943,,1,,Europe/Paris,,OIF, +OIF:SA:59:3663615,1,"Inkermann",48.797054,2.488352,,1,,Europe/Paris,,OIF, +OIF:SA:59:3663616,1,"Bibliothèque Municipale",48.799481,2.488454,,1,,Europe/Paris,,OIF, +OIF:SA:59:3663655,1,"Rue des Remises",48.804193,2.471723,,1,,Europe/Paris,,OIF, +OIF:SA:59:3663657,1,"Libération / Rabelais",48.807177,2.475475,,1,,Europe/Paris,,OIF, +OIF:SA:59:3663699,1,"Pont de Créteil",48.800299,2.471735,,1,,Europe/Paris,,OIF, +OIF:SA:59:3663702,1,"Danielle Casanova",48.80581,2.455721,,1,,Europe/Paris,,OIF, +OIF:SA:59:3664131,1,"Église Sainte-Geneviève",48.973184,2.390631,,1,,Europe/Paris,,OIF, +OIF:SA:59:3664132,1,"Guy Moquet",48.972099,2.39325,,1,,Europe/Paris,,OIF, +OIF:SA:59:3664141,1,"Les Doucettes",48.964799,2.395042,,1,,Europe/Paris,,OIF, +OIF:SA:59:3664373,1,"Bobigny / Benoit Frachon",48.904142,2.430916,,1,,Europe/Paris,,OIF, +OIF:SA:59:3664375,1,"Eugène Hénaff",48.902392,2.427696,,1,,Europe/Paris,,OIF, +OIF:SA:59:3664377,1,"Les Vignes",48.903351,2.42476,,1,,Europe/Paris,,OIF, +OIF:SA:59:3664380,1,"Henri Gautier",48.906174,2.423136,,1,,Europe/Paris,,OIF, +OIF:SA:59:3664381,1,"Lycée André Sabatier",48.907045,2.429661,,1,,Europe/Paris,,OIF, +OIF:SA:59:3664383,1,"Rue de la Gare",48.906612,2.432939,,1,,Europe/Paris,,OIF, +OIF:SA:59:3664400,1,"Place du 19 Mars 1962",48.919932,2.451097,,1,,Europe/Paris,,OIF, +OIF:SA:59:3664404,1,"Barbusse / Croizat",48.922681,2.457216,,1,,Europe/Paris,,OIF, +OIF:SA:59:3664407,1,"Daniel Féry",48.923536,2.460437,,1,,Europe/Paris,,OIF, +OIF:SA:59:3664410,1,"Suffren",48.925816,2.466845,,1,,Europe/Paris,,OIF, +OIF:SA:59:3664412,1,"Pierre Montillet",48.926402,2.469527,,1,,Europe/Paris,,OIF, +OIF:SA:59:3664414,1,"Danielle Casanova / Paul Vaillant Couturier",48.927019,2.472474,,1,,Europe/Paris,,OIF, +OIF:SA:59:3664421,1,"La Sablière",48.931608,2.486187,,1,,Europe/Paris,,OIF, +OIF:SA:59:3664425,1,"Rond-Point Pierre Semard - Turgot",48.930808,2.483171,,1,,Europe/Paris,,OIF, +OIF:SA:59:3664426,1,"Les Limites",48.913839,2.44611,,1,,Europe/Paris,,OIF, +OIF:SA:59:3664428,1,"République",48.9076,2.426792,,1,,Europe/Paris,,OIF, +OIF:SA:59:3666571,1,"Musée de l'Air et de l'Espace",48.947763,2.438445,,1,,Europe/Paris,,OIF, +OIF:SA:59:3666588,1,"André Citroën / Visiteurs",48.960704,2.488773,,1,,Europe/Paris,,OIF, +OIF:SA:59:3666595,1,"227 Avenue des Nations",48.9813,2.518996,,1,,Europe/Paris,,OIF, +OIF:SA:59:3666598,1,"58 Avenue de la Pyramide",48.983482,2.517078,,1,,Europe/Paris,,OIF, +OIF:SA:59:3666602,1,"Fret 7",48.988702,2.545745,,1,,Europe/Paris,,OIF, +OIF:SA:59:3666603,1,"Rue du Té",48.991165,2.526186,,1,,Europe/Paris,,OIF, +OIF:SA:59:3666604,1,"Rue de la Jeune Fille",48.993977,2.526674,,1,,Europe/Paris,,OIF, +OIF:SA:59:3666606,1,"Cargo Centre",48.998611,2.525957,,1,,Europe/Paris,,OIF, +OIF:SA:59:3666608,1,"Rue du Chapitre",49.00254,2.535709,,1,,Europe/Paris,,OIF, +OIF:SA:59:3666609,1,"Rue des Vignes",49.004614,2.548137,,1,,Europe/Paris,,OIF, +OIF:SA:59:3666614,1,"351 Avenue du Bois de la Pie",48.991333,2.516054,,1,,Europe/Paris,,OIF, +OIF:SA:59:3666615,1,"291 Avenue du Bois de la Pie",48.986521,2.516352,,1,,Europe/Paris,,OIF, +OIF:SA:59:3666644,1,"Rue des Marguilliers",48.994548,2.523768,,1,,Europe/Paris,,OIF, +OIF:SA:59:3666650,1,"Les 2 Cèdres",49.001971,2.528302,,1,,Europe/Paris,,OIF, +OIF:SA:59:3666665,1,"Nations",48.972948,2.51085,,1,,Europe/Paris,,OIF, +OIF:SA:59:3666666,1,"André Citroën / Centre de Production",48.964812,2.495289,,1,,Europe/Paris,,OIF, +OIF:SA:59:3666685,1,"Maurice Audin",48.948854,2.451128,,1,,Europe/Paris,,OIF, +OIF:SA:59:3666699,1,"Rue de la Belle Borne",48.989567,2.528037,,1,,Europe/Paris,,OIF, +OIF:SA:59:3666715,1,"Gendarmerie",49.015082,2.529354,,1,,Europe/Paris,,OIF, +OIF:SA:59:3666716,1,"Rue des Deux Sœurs",49.01229,2.521482,,1,,Europe/Paris,,OIF, +OIF:SA:59:3666718,1,"Entretien Sud",49.007147,2.51154,,1,,Europe/Paris,,OIF, +OIF:SA:59:3666746,1,"Garonor-Porte Sud Extérieur",48.956371,2.461709,,1,,Europe/Paris,,OIF, +OIF:SA:59:3666779,1,"Lénine",48.949802,2.439609,,1,,Europe/Paris,,OIF, +OIF:SA:59:3666784,1,"Robert Bremond",48.954341,2.457549,,1,,Europe/Paris,,OIF, +OIF:SA:59:3666786,1,"Garonor",48.956569,2.465431,,1,,Europe/Paris,,OIF, +OIF:SA:59:3666793,1,"Parc des Nations",48.989576,2.516317,,1,,Europe/Paris,,OIF, +OIF:SA:59:3672106,1,"Pyrénées Docteur Netter",48.847309,2.406642,,1,,Europe/Paris,,OIF, +OIF:SA:59:3672114,1,"Échangeur de Bagnolet",48.864994,2.411113,,1,,Europe/Paris,,OIF, +OIF:SA:59:3672115,1,"Poste",48.867938,2.416063,,1,,Europe/Paris,,OIF, +OIF:SA:59:3672129,1,"Jardins de la Noue",48.919183,2.475648,,1,,Europe/Paris,,OIF, +OIF:SA:59:3672130,1,"Surcouf / Jean Jaurès",48.921102,2.47162,,1,,Europe/Paris,,OIF, +OIF:SA:59:3672132,1,"Danielle Casanova",48.92392,2.473127,,1,,Europe/Paris,,OIF, +OIF:SA:59:3672134,1,"Les 4 Tours",48.925412,2.474308,,1,,Europe/Paris,,OIF, +OIF:SA:59:3672175,1,"Rue de Paris",48.853932,2.415327,,1,,Europe/Paris,,OIF, +OIF:SA:59:3672177,1,"Edouard Vaillant",48.858336,2.414673,,1,,Europe/Paris,,OIF, +OIF:SA:59:3672240,1,"Erignac",48.851204,2.415826,,1,,Europe/Paris,,OIF, +OIF:SA:59:3673589,1,"Daumesnil / Ledru Rollin",48.848645,2.372973,,1,,Europe/Paris,,OIF, +OIF:SA:59:3673592,1,"Charonne / Keller",48.853378,2.37746,,1,,Europe/Paris,,OIF, +OIF:SA:59:3673593,1,"Basfroi",48.855487,2.378596,,1,,Europe/Paris,,OIF, +OIF:SA:59:3673597,1,"Saint-Maur / Servan",48.858761,2.384973,,1,,Europe/Paris,,OIF, +OIF:SA:59:3673601,1,"Mûriers",48.863935,2.391639,,1,,Europe/Paris,,OIF, +OIF:SA:59:3673610,1,"Piscine des Tourelles",48.874663,2.405596,,1,,Europe/Paris,,OIF, +OIF:SA:59:3673614,1,"Rene Fonck",48.87866,2.409048,,1,,Europe/Paris,,OIF, +OIF:SA:59:3673616,1,"Jean Jaurès / Belvédère",48.880714,2.408383,,1,,Europe/Paris,,OIF, +OIF:SA:59:3673618,1,"Place Séverine",48.882363,2.408726,,1,,Europe/Paris,,OIF, +OIF:SA:59:3673620,1,"Jean Jaurès",48.883611,2.408344,,1,,Europe/Paris,,OIF, +OIF:SA:59:3673622,1,"Cimetière",48.887401,2.408277,,1,,Europe/Paris,,OIF, +OIF:SA:59:3673624,1,"Paul Bert / Cimetière",48.888978,2.410169,,1,,Europe/Paris,,OIF, +OIF:SA:59:3673627,1,"Charles Auray",48.889657,2.417266,,1,,Europe/Paris,,OIF, +OIF:SA:59:3673628,1,"Manufacture des Tabacs",48.893111,2.417362,,1,,Europe/Paris,,OIF, +OIF:SA:59:3673632,1,"Candale / Stade de la Seigneurie",48.88923,2.415216,,1,,Europe/Paris,,OIF, +OIF:SA:59:3673636,1,"Saint-Maur - Servan",48.858941,2.384892,,1,,Europe/Paris,,OIF, +OIF:SA:59:3677653,1,"Lycée Jean Moulin",48.836183,2.656311,,1,,Europe/Paris,,OIF, +OIF:SA:59:3677657,1,"Camille Saint-Saëns",48.836421,2.649702,,1,,Europe/Paris,,OIF, +OIF:SA:59:3677659,1,"Médiathèque du Segrais",48.838512,2.649095,,1,,Europe/Paris,,OIF, +OIF:SA:59:3677661,1,"Rue de Maubuée",48.840557,2.648876,,1,,Europe/Paris,,OIF, +OIF:SA:59:3677664,1,"Baudelaire",48.843652,2.644197,,1,,Europe/Paris,,OIF, +OIF:SA:59:3677666,1,"La Tour d'Auvergne",48.841101,2.638449,,1,,Europe/Paris,,OIF, +OIF:SA:59:3677668,1,"Lycée Émily Brontë",48.839369,2.639124,,1,,Europe/Paris,,OIF, +OIF:SA:59:3677670,1,"Segrais - Gabriel",48.835151,2.63866,,1,,Europe/Paris,,OIF, +OIF:SA:59:3677672,1,"Les Campanules",48.833531,2.634253,,1,,Europe/Paris,,OIF, +OIF:SA:59:3677682,1,"Le Verger",48.844114,2.626879,,1,,Europe/Paris,,OIF, +OIF:SA:59:3677684,1,"Ferme du Buisson",48.844113,2.621527,,1,,Europe/Paris,,OIF, +OIF:SA:59:3677690,1,"Commissariat",48.84754,2.615901,,1,,Europe/Paris,,OIF, +OIF:SA:59:3677692,1,"Les 4 Pavés",48.851615,2.621097,,1,,Europe/Paris,,OIF, +OIF:SA:59:3677694,1,"Chocolaterie",48.856096,2.624331,,1,,Europe/Paris,,OIF, +OIF:SA:59:3677696,1,"Mairie",48.854516,2.627182,,1,,Europe/Paris,,OIF, +OIF:SA:59:3677698,1,"Jules Ferry",48.851034,2.626832,,1,,Europe/Paris,,OIF, +OIF:SA:59:3677712,1,"Le Canal",48.866483,2.642323,,1,,Europe/Paris,,OIF, +OIF:SA:59:3677720,1,"Centre Commercial Chelles 2",48.87837,2.61371,,1,,Europe/Paris,,OIF, +OIF:SA:59:3677722,1,"Rû de Maubuée",48.840693,2.6487,,1,,Europe/Paris,,OIF, +OIF:SA:59:3678808,1,"Terminal 2 / Route de Service",49.003416,2.558548,,1,,Europe/Paris,,OIF, +OIF:SA:59:3681410,1,"Le Parc",48.809877,2.621159,,1,,Europe/Paris,,OIF, +OIF:SA:59:3681412,1,"Mairie",48.811527,2.622056,,1,,Europe/Paris,,OIF, +OIF:SA:59:3681414,1,"Rue d'Emery",48.814041,2.621349,,1,,Europe/Paris,,OIF, +OIF:SA:59:3681416,1,"Beaubourg",48.817078,2.628803,,1,,Europe/Paris,,OIF, +OIF:SA:59:3681418,1,"Les Mines",48.818898,2.632781,,1,,Europe/Paris,,OIF, +OIF:SA:59:3681420,1,"Ambroise Croizat",48.817171,2.635105,,1,,Europe/Paris,,OIF, +OIF:SA:59:3681422,1,"Cours du Buisson",48.815312,2.637952,,1,,Europe/Paris,,OIF, +OIF:SA:59:3681424,1,"Les Vieilles Vignes",48.817649,2.641511,,1,,Europe/Paris,,OIF, +OIF:SA:59:3681426,1,"Caravelle",48.820321,2.643814,,1,,Europe/Paris,,OIF, +OIF:SA:59:3681428,1,"Croissy-Beaubourg - Z.I. Pariest",48.827766,2.637535,,1,,Europe/Paris,,OIF, +OIF:SA:59:3681430,1,"Léon Jouhaux",48.826433,2.640079,,1,,Europe/Paris,,OIF, +OIF:SA:59:3681432,1,"La Mare à Blondeau",48.82587,2.637142,,1,,Europe/Paris,,OIF, +OIF:SA:59:3681434,1,"Table d'Orientation",48.82273,2.640411,,1,,Europe/Paris,,OIF, +OIF:SA:59:3681436,1,"Henri Barbusse",48.827456,2.644223,,1,,Europe/Paris,,OIF, +OIF:SA:59:3681438,1,"Lions de Beaubourg",48.826815,2.64731,,1,,Europe/Paris,,OIF, +OIF:SA:59:3681440,1,"Les Platanes",48.829596,2.649042,,1,,Europe/Paris,,OIF, +OIF:SA:59:3681442,1,"Étang de Croissy",48.830755,2.657707,,1,,Europe/Paris,,OIF, +OIF:SA:59:3681443,1,"Anne Frank",48.834777,2.659447,,1,,Europe/Paris,,OIF, +OIF:SA:59:3681471,1,"La Mogotte",48.850398,2.637398,,1,,Europe/Paris,,OIF, +OIF:SA:59:3681473,1,"La Fosse Rouge",48.854554,2.637274,,1,,Europe/Paris,,OIF, +OIF:SA:59:3681475,1,"La Maltournée",48.854856,2.640334,,1,,Europe/Paris,,OIF, +OIF:SA:59:3681477,1,"Les Cantines",48.858024,2.645637,,1,,Europe/Paris,,OIF, +OIF:SA:59:3681508,1,"Église",48.863344,2.575856,,1,,Europe/Paris,,OIF, +OIF:SA:59:3681509,1,"Pont de Gournay",48.866243,2.57544,,1,,Europe/Paris,,OIF, +OIF:SA:59:3681511,1,"Avenue des Martyrs",48.87082,2.57653,,1,,Europe/Paris,,OIF, +OIF:SA:59:3681512,1,"Parmentier - Jules Ferry",48.872411,2.578752,,1,,Europe/Paris,,OIF, +OIF:SA:59:3681518,1,"Rue du Port",48.868368,2.573443,,1,,Europe/Paris,,OIF, +OIF:SA:59:3681522,1,"Place Churchill",48.858653,2.582093,,1,,Europe/Paris,,OIF, +OIF:SA:59:3681625,1,"Flandres - Dunkerque 1940",48.850488,2.582116,,1,,Europe/Paris,,OIF, +OIF:SA:59:3681626,1,"Général de Gaulle",48.850293,2.585015,,1,,Europe/Paris,,OIF, +OIF:SA:59:3681650,1,"Place Roosevelt",48.86158,2.579212,,1,,Europe/Paris,,OIF, +OIF:SA:59:3681653,1,"Claude Bernard",48.854486,2.578123,,1,,Europe/Paris,,OIF, +OIF:SA:59:3681669,1,"Place Pablo Picasso",48.841199,2.605684,,1,,Europe/Paris,,OIF, +OIF:SA:59:3681790,1,"Bourgain / Général Gallieni",48.822207,2.267484,,1,,Europe/Paris,,OIF, +OIF:SA:59:3681794,1,"Paul Bert",48.819697,2.256454,,1,,Europe/Paris,,OIF, +OIF:SA:59:3681796,1,"Chemin des Vignes",48.818132,2.254772,,1,,Europe/Paris,,OIF, +OIF:SA:59:3681807,1,"Dôme",48.830775,2.24511,,1,,Europe/Paris,,OIF, +OIF:SA:59:3681811,1,"Gallieni",48.835871,2.235863,,1,,Europe/Paris,,OIF, +OIF:SA:59:3681813,1,"Route de la Reine / Jean Jaurès",48.839783,2.239943,,1,,Europe/Paris,,OIF, +OIF:SA:59:3681819,1,"Église de Boulogne Billancourt",48.845877,2.237015,,1,,Europe/Paris,,OIF, +OIF:SA:59:3681821,1,"Hôpital Ambroise Paré",48.84976,2.237215,,1,,Europe/Paris,,OIF, +OIF:SA:59:3681825,1,"Rue des Pins",48.846545,2.246689,,1,,Europe/Paris,,OIF, +OIF:SA:59:3681827,1,"Stade Roland Garros",48.845627,2.250245,,1,,Europe/Paris,,OIF, +OIF:SA:59:3681862,1,"Ferber / Gallieni",48.824957,2.267008,,1,,Europe/Paris,,OIF, +OIF:SA:59:3681863,1,"Médiathèque",48.825992,2.26992,,1,,Europe/Paris,,OIF, +OIF:SA:59:3681975,1,"Jules Guesde",48.813876,2.286511,,1,,Europe/Paris,,OIF, +OIF:SA:59:3681977,1,"Cimetière Intercommunal",48.786828,2.245904,,1,,Europe/Paris,,OIF, +OIF:SA:59:3681978,1,"Mairie",48.820565,2.301685,,1,,Europe/Paris,,OIF, +OIF:SA:59:3681985,1,"Cimetière Communal",48.81482,2.286361,,1,,Europe/Paris,,OIF, +OIF:SA:59:3682007,1,"Ambroise Croizat",48.815766,2.293505,,1,,Europe/Paris,,OIF, +OIF:SA:59:3682010,1,"Pierre Brossolette / Etienne Dolet",48.813405,2.301835,,1,,Europe/Paris,,OIF, +OIF:SA:59:3682011,1,"Maurice Thorez",48.816452,2.300187,,1,,Europe/Paris,,OIF, +OIF:SA:59:3682022,1,"Pierre Brossolette",48.894435,2.419756,,1,,Europe/Paris,,OIF, +OIF:SA:59:3682025,1,"Avenue de Metz",48.896605,2.43232,,1,,Europe/Paris,,OIF, +OIF:SA:59:3682026,1,"La Folie",48.898259,2.442574,,1,,Europe/Paris,,OIF, +OIF:SA:59:3682027,1,"Rue de Paris N0 105",48.899807,2.449788,,1,,Europe/Paris,,OIF, +OIF:SA:59:3682028,1,"Rue de Paris N0 155",48.900996,2.456062,,1,,Europe/Paris,,OIF, +OIF:SA:59:3682029,1,"Usine de la Madeleine",48.902414,2.46271,,1,,Europe/Paris,,OIF, +OIF:SA:59:3682045,1,"Gambetta",48.915546,2.524821,,1,,Europe/Paris,,OIF, +OIF:SA:59:3682051,1,"Place de la Libération",48.922213,2.543206,,1,,Europe/Paris,,OIF, +OIF:SA:59:3682053,1,"Jean Jacques Rousseau",48.926272,2.544839,,1,,Europe/Paris,,OIF, +OIF:SA:59:3682055,1,"Maurouard",48.929464,2.541046,,1,,Europe/Paris,,OIF, +OIF:SA:59:3682057,1,"Louis Ménard",48.932436,2.537641,,1,,Europe/Paris,,OIF, +OIF:SA:59:3682060,1,"Sevran - Livry",48.934476,2.534914,,1,,Europe/Paris,,OIF, +OIF:SA:59:3682061,1,"Mère Thérèsa",48.937676,2.531492,,1,,Europe/Paris,,OIF, +OIF:SA:59:3682062,1,"Gaston Bussière",48.937802,2.529623,,1,,Europe/Paris,,OIF, +OIF:SA:59:3682064,1,"Cimetière",48.939578,2.524384,,1,,Europe/Paris,,OIF, +OIF:SA:59:3682066,1,"Chemin de Savigny",48.942192,2.520386,,1,,Europe/Paris,,OIF, +OIF:SA:59:3682068,1,"Collège Evariste Gallois",48.945119,2.519471,,1,,Europe/Paris,,OIF, +OIF:SA:59:3682072,1,"Butte Montceleux",48.947135,2.531844,,1,,Europe/Paris,,OIF, +OIF:SA:59:3682077,1,"Sevran - Avenue Ronsard",48.948,2.535852,,1,,Europe/Paris,,OIF, +OIF:SA:59:3682078,1,"Pierre Curie",48.944173,2.517596,,1,,Europe/Paris,,OIF, +OIF:SA:59:3682081,1,"Rue de Paris N0 155",48.901311,2.456212,,1,,Europe/Paris,,OIF, +OIF:SA:59:3682082,1,"Rue de Paris N0 105",48.900184,2.450198,,1,,Europe/Paris,,OIF, +OIF:SA:59:3682083,1,"La Folie / Jean Jaurès",48.898914,2.443325,,1,,Europe/Paris,,OIF, +OIF:SA:59:3682084,1,"La Folie",48.898722,2.441614,,1,,Europe/Paris,,OIF, +OIF:SA:59:3682174,1,"La Fourche",48.907742,2.495256,,1,,Europe/Paris,,OIF, +OIF:SA:59:3682187,1,"Mairie",48.911829,2.54923,,1,,Europe/Paris,,OIF, +OIF:SA:59:3682203,1,"Les Genettes",48.909756,2.538269,,1,,Europe/Paris,,OIF, +OIF:SA:59:3682204,1,"Roger Salengro",48.909637,2.526891,,1,,Europe/Paris,,OIF, +OIF:SA:59:3682221,1,"Chanzy - Église Saint-Michel",48.912167,2.522939,,1,,Europe/Paris,,OIF, +OIF:SA:59:3682226,1,"Les Genettes",48.908853,2.538801,,1,,Europe/Paris,,OIF, +OIF:SA:59:3682227,1,"Avenue du Coteau - École Normale",48.912736,2.540223,,1,,Europe/Paris,,OIF, +OIF:SA:59:3682241,1,"Mairie",48.901289,2.570653,,1,,Europe/Paris,,OIF, +OIF:SA:59:3682243,1,"Jean Mermoz",48.901436,2.571553,,1,,Europe/Paris,,OIF, +OIF:SA:59:3682244,1,"Collège Pablo Picasso",48.899784,2.57509,,1,,Europe/Paris,,OIF, +OIF:SA:59:3682253,1,"Hôpital",48.899028,2.57383,,1,,Europe/Paris,,OIF, +OIF:SA:59:3682257,1,"Les Bosquets",48.90424,2.560382,,1,,Europe/Paris,,OIF, +OIF:SA:59:3682259,1,"La Pelouse",48.909783,2.55356,,1,,Europe/Paris,,OIF, +OIF:SA:59:3682260,1,"Les Marronniers",48.912072,2.551242,,1,,Europe/Paris,,OIF, +OIF:SA:59:3682284,1,"La Mare à la Veuve",48.89012,2.481509,,1,,Europe/Paris,,OIF, +OIF:SA:59:3682285,1,"Place Mendès France",48.889398,2.483933,,1,,Europe/Paris,,OIF, +OIF:SA:59:3682286,1,"Metz - Etienne Dolet",48.890673,2.477858,,1,,Europe/Paris,,OIF, +OIF:SA:59:3682290,1,"La Sablière",48.891399,2.490399,,1,,Europe/Paris,,OIF, +OIF:SA:59:3682291,1,"Philosophie",48.890108,2.494702,,1,,Europe/Paris,,OIF, +OIF:SA:59:3682293,1,"Franklin - Sablière",48.89468,2.500223,,1,,Europe/Paris,,OIF, +OIF:SA:59:3682316,1,"Anatole France - Blanqui",48.895408,2.499789,,1,,Europe/Paris,,OIF, +OIF:SA:59:3682317,1,"Gare des Coquetiers",48.893254,2.498037,,1,,Europe/Paris,,OIF, +OIF:SA:59:3682319,1,"Alouettes",48.893907,2.496785,,1,,Europe/Paris,,OIF, +OIF:SA:59:3682321,1,"Corneille",48.894565,2.492092,,1,,Europe/Paris,,OIF, +OIF:SA:59:3682325,1,"Vaillant - Solidarité",48.895549,2.484905,,1,,Europe/Paris,,OIF, +OIF:SA:59:3682330,1,"Blanqui / Carnot",48.900219,2.481774,,1,,Europe/Paris,,OIF, +OIF:SA:59:3682336,1,"Ambroise Paré",48.910509,2.476467,,1,,Europe/Paris,,OIF, +OIF:SA:59:3682337,1,"Suzanne Buisson",48.913848,2.480707,,1,,Europe/Paris,,OIF, +OIF:SA:59:3682338,1,"Jouhaux / Blum",48.917794,2.479259,,1,,Europe/Paris,,OIF, +OIF:SA:59:3682341,1,"Benhamou - Promenade",48.912306,2.484857,,1,,Europe/Paris,,OIF, +OIF:SA:59:3682343,1,"Bois de Bondy",48.913529,2.491351,,1,,Europe/Paris,,OIF, +OIF:SA:59:3682345,1,"Léo Lagrange",48.906369,2.488916,,1,,Europe/Paris,,OIF, +OIF:SA:59:3682346,1,"Le Saule Blanc",48.90348,2.492098,,1,,Europe/Paris,,OIF, +OIF:SA:59:3682347,1,"Henri Sellier",48.902149,2.493185,,1,,Europe/Paris,,OIF, +OIF:SA:59:3682348,1,"Professeur Vaillant",48.900198,2.491252,,1,,Europe/Paris,,OIF, +OIF:SA:59:3682349,1,"Blanqui - Bernstein",48.898298,2.489343,,1,,Europe/Paris,,OIF, +OIF:SA:59:3682350,1,"Blanqui - Furci",48.899086,2.484097,,1,,Europe/Paris,,OIF, +OIF:SA:59:3682351,1,"Église",48.902947,2.479816,,1,,Europe/Paris,,OIF, +OIF:SA:59:3682352,1,"Le Mainguy",48.900246,2.47633,,1,,Europe/Paris,,OIF, +OIF:SA:59:3682353,1,"Fraternité",48.898889,2.476313,,1,,Europe/Paris,,OIF, +OIF:SA:59:3682354,1,"Salengro",48.897019,2.477126,,1,,Europe/Paris,,OIF, +OIF:SA:59:3682356,1,"Dolet / Belfort",48.891635,2.477574,,1,,Europe/Paris,,OIF, +OIF:SA:59:3682638,1,"Verdun",48.846859,2.532326,,1,,Europe/Paris,,OIF, +OIF:SA:59:3682676,1,"Les Provinces",48.845021,2.62008,,1,,Europe/Paris,,OIF, +OIF:SA:59:3682682,1,"La Remise aux Fraises",48.850577,2.630047,,1,,Europe/Paris,,OIF, +OIF:SA:59:3682811,1,"Centre Bus",48.853556,2.516995,,1,,Europe/Paris,,OIF, +OIF:SA:59:3682813,1,"Hélène Boucher",48.854466,2.521452,,1,,Europe/Paris,,OIF, +OIF:SA:59:3682815,1,"Villebois / Mareuil",48.85656,2.524459,,1,,Europe/Paris,,OIF, +OIF:SA:59:3682817,1,"Maréchal Foch / Général de Gaulle",48.855671,2.527061,,1,,Europe/Paris,,OIF, +OIF:SA:59:3682819,1,"Place de la Résistance",48.85708,2.531265,,1,,Europe/Paris,,OIF, +OIF:SA:59:3682826,1,"Léon Blum",48.866417,2.528869,,1,,Europe/Paris,,OIF, +OIF:SA:59:3682838,1,"Paul Doumer",48.858436,2.520499,,1,,Europe/Paris,,OIF, +OIF:SA:59:3682840,1,"Les Chanoux - Lycée Cugnot",48.865152,2.520438,,1,,Europe/Paris,,OIF, +OIF:SA:59:3682842,1,"Rue des Frères Lumières / N 67",48.867829,2.522371,,1,,Europe/Paris,,OIF, +OIF:SA:59:3682844,1,"Rue des Frères Lumières / N 15",48.870359,2.525377,,1,,Europe/Paris,,OIF, +OIF:SA:59:3682846,1,"Rue Louis Ampère / N 48",48.869044,2.521504,,1,,Europe/Paris,,OIF, +OIF:SA:59:3682848,1,"Rue Louis Ampère / N 88",48.867503,2.518337,,1,,Europe/Paris,,OIF, +OIF:SA:59:3682856,1,"Île de France",48.867567,2.533156,,1,,Europe/Paris,,OIF, +OIF:SA:59:3682859,1,"Rue des Pommiers",48.869257,2.536749,,1,,Europe/Paris,,OIF, +OIF:SA:59:3682860,1,"Cité des Bouleaux",48.871722,2.53399,,1,,Europe/Paris,,OIF, +OIF:SA:59:3682873,1,"Rond-Point du Général Leclerc",48.848645,2.495962,,1,,Europe/Paris,,OIF, +OIF:SA:59:3682878,1,"Jules Ferry",48.850763,2.503428,,1,,Europe/Paris,,OIF, +OIF:SA:59:3682880,1,"Jouleau",48.851807,2.508375,,1,,Europe/Paris,,OIF, +OIF:SA:59:3682893,1,"Louis Pasteur",48.858346,2.534609,,1,,Europe/Paris,,OIF, +OIF:SA:59:3682895,1,"Blancheville",48.860767,2.54053,,1,,Europe/Paris,,OIF, +OIF:SA:59:3682899,1,"Maison Blanche",48.863977,2.549976,,1,,Europe/Paris,,OIF, +OIF:SA:59:3682901,1,"L'Avenir",48.86479,2.555156,,1,,Europe/Paris,,OIF, +OIF:SA:59:3682903,1,"Pointe de Gournay",48.865688,2.56362,,1,,Europe/Paris,,OIF, +OIF:SA:59:3682913,1,"Chilpéric / Adolphe Besson",48.874061,2.58796,,1,,Europe/Paris,,OIF, +OIF:SA:59:3682925,1,"Général Faidherbe",48.837109,2.476644,,1,,Europe/Paris,,OIF, +OIF:SA:59:3682927,1,"Paul Bert",48.8402,2.481193,,1,,Europe/Paris,,OIF, +OIF:SA:59:3682929,1,"Anquetil",48.84299,2.485374,,1,,Europe/Paris,,OIF, +OIF:SA:59:3682931,1,"Rue de Plaisance - Lycée Louis Armand",48.846071,2.490612,,1,,Europe/Paris,,OIF, +OIF:SA:59:3682982,1,"Rue de Chelléen",48.877879,2.608359,,1,,Europe/Paris,,OIF, +OIF:SA:59:3682989,1,"Place du Général Leclerc",48.835712,2.475,,1,,Europe/Paris,,OIF, +OIF:SA:59:3683015,1,"François Mauriac",48.855637,2.520203,,1,,Europe/Paris,,OIF, +OIF:SA:59:3683020,1,"11 Novembre 1918",48.866078,2.524442,,1,,Europe/Paris,,OIF, +OIF:SA:59:3683030,1,"Fénelon",48.873603,2.539518,,1,,Europe/Paris,,OIF, +OIF:SA:59:3683032,1,"Place des Fêtes",48.87538,2.543217,,1,,Europe/Paris,,OIF, +OIF:SA:59:3683034,1,"Le Lac",48.872566,2.546633,,1,,Europe/Paris,,OIF, +OIF:SA:59:3683036,1,"Hippolyte Pina",48.873208,2.549578,,1,,Europe/Paris,,OIF, +OIF:SA:59:3683044,1,"Rue de la Bergerie",48.875859,2.556831,,1,,Europe/Paris,,OIF, +OIF:SA:59:3683045,1,"Les Marronniers",48.872524,2.559957,,1,,Europe/Paris,,OIF, +OIF:SA:59:3683047,1,"Boulevard des Pêcheurs",48.871906,2.563422,,1,,Europe/Paris,,OIF, +OIF:SA:59:3683049,1,"Roger Salengro",48.872003,2.566924,,1,,Europe/Paris,,OIF, +OIF:SA:59:3683051,1,"Rue de l'Horloge",48.874859,2.558407,,1,,Europe/Paris,,OIF, +OIF:SA:59:3683053,1,"François Mauriac",48.855691,2.520026,,1,,Europe/Paris,,OIF, +OIF:SA:59:3685691,1,"Les Rigollots",48.849792,2.456575,,1,,Europe/Paris,,OIF, +OIF:SA:59:3685692,1,"André Laurent",48.852822,2.45766,,1,,Europe/Paris,,OIF, +OIF:SA:59:3685694,1,"Danton",48.854024,2.460074,,1,,Europe/Paris,,OIF, +OIF:SA:59:3685696,1,"André Tessier",48.852762,2.46782,,1,,Europe/Paris,,OIF, +OIF:SA:59:3685698,1,"Verdun",48.85399,2.470578,,1,,Europe/Paris,,OIF, +OIF:SA:59:3685700,1,"Danielle Casanova",48.853256,2.476088,,1,,Europe/Paris,,OIF, +OIF:SA:59:3685702,1,"Charles Garcia",48.852922,2.481388,,1,,Europe/Paris,,OIF, +OIF:SA:59:3685715,1,"Jules Guesde",48.862331,2.482086,,1,,Europe/Paris,,OIF, +OIF:SA:59:3685725,1,"Van Der Heyden",48.877323,2.484256,,1,,Europe/Paris,,OIF, +OIF:SA:59:3685729,1,"Jules Guesde",48.862843,2.482169,,1,,Europe/Paris,,OIF, +OIF:SA:59:3685770,1,"Diderot",48.865214,2.483497,,1,,Europe/Paris,,OIF, +OIF:SA:59:3685781,1,"Nanteuil ZI - Jules Ferry",48.876259,2.476252,,1,,Europe/Paris,,OIF, +OIF:SA:59:3685786,1,"Les Rigollots",48.849391,2.45578,,1,,Europe/Paris,,OIF, +OIF:SA:59:3685787,1,"Clément Vienot",48.847652,2.451704,,1,,Europe/Paris,,OIF, +OIF:SA:59:3685790,1,"Avenue du Château",48.844759,2.437168,,1,,Europe/Paris,,OIF, +OIF:SA:59:3685794,1,"Mairie",48.847963,2.439891,,1,,Europe/Paris,,OIF, +OIF:SA:59:3685796,1,"Libération",48.847823,2.446318,,1,,Europe/Paris,,OIF, +OIF:SA:59:3685799,1,"Pasteur",48.848511,2.45462,,1,,Europe/Paris,,OIF, +OIF:SA:59:3685867,1,"Diderot / Silvestri",48.850554,2.442892,,1,,Europe/Paris,,OIF, +OIF:SA:59:3685869,1,"Desgranges / Solidarité",48.852454,2.443264,,1,,Europe/Paris,,OIF, +OIF:SA:59:3685871,1,"Les Parapluies",48.852698,2.449008,,1,,Europe/Paris,,OIF, +OIF:SA:59:3685873,1,"Hector Malot",48.851831,2.451121,,1,,Europe/Paris,,OIF, +OIF:SA:59:3685877,1,"Pierre Dulac",48.848909,2.461124,,1,,Europe/Paris,,OIF, +OIF:SA:59:3685879,1,"Émile Roux",48.847377,2.464967,,1,,Europe/Paris,,OIF, +OIF:SA:59:3685882,1,"Rue de Joinville",48.842589,2.471546,,1,,Europe/Paris,,OIF, +OIF:SA:59:3685883,1,"Ancienne Mairie",48.846094,2.471773,,1,,Europe/Paris,,OIF, +OIF:SA:59:3685885,1,"Parc",48.848396,2.474012,,1,,Europe/Paris,,OIF, +OIF:SA:59:3685887,1,"Hôtel de Ville de Fontenay",48.848879,2.476546,,1,,Europe/Paris,,OIF, +OIF:SA:59:3685888,1,"Montesquieu",48.848872,2.481912,,1,,Europe/Paris,,OIF, +OIF:SA:59:3685890,1,"Hoche",48.847384,2.485918,,1,,Europe/Paris,,OIF, +OIF:SA:59:3685892,1,"Le Bois Cadet",48.848861,2.487339,,1,,Europe/Paris,,OIF, +OIF:SA:59:3685894,1,"Place du Général de Gaulle",48.851823,2.486741,,1,,Europe/Paris,,OIF, +OIF:SA:59:3685898,1,"Mairie",48.849781,2.476998,,1,,Europe/Paris,,OIF, +OIF:SA:59:3685899,1,"Mauconseil",48.847041,2.468575,,1,,Europe/Paris,,OIF, +OIF:SA:59:3685900,1,"Roublot",48.849546,2.46248,,1,,Europe/Paris,,OIF, +OIF:SA:59:3685921,1,"Wilson / Gabriel Péri",48.85747,2.440118,,1,,Europe/Paris,,OIF, +OIF:SA:59:3685923,1,"Jeanne d'Arc",48.856407,2.44494,,1,,Europe/Paris,,OIF, +OIF:SA:59:3685925,1,"Les Parapluies",48.853398,2.448176,,1,,Europe/Paris,,OIF, +OIF:SA:59:3685926,1,"Les Beaumonts",48.853798,2.453052,,1,,Europe/Paris,,OIF, +OIF:SA:59:3685930,1,"Védrines",48.856072,2.461638,,1,,Europe/Paris,,OIF, +OIF:SA:59:3685931,1,"Ernest Renan",48.856695,2.466999,,1,,Europe/Paris,,OIF, +OIF:SA:59:3685933,1,"Grands Pêchers",48.859545,2.466686,,1,,Europe/Paris,,OIF, +OIF:SA:59:3685935,1,"Vallée de la Seine",48.861257,2.470559,,1,,Europe/Paris,,OIF, +OIF:SA:59:3685936,1,"La Paix",48.860673,2.474119,,1,,Europe/Paris,,OIF, +OIF:SA:59:3685938,1,"Juliette Dodu",48.861119,2.477144,,1,,Europe/Paris,,OIF, +OIF:SA:59:3685940,1,"Cimetière de Vincennes",48.861024,2.481033,,1,,Europe/Paris,,OIF, +OIF:SA:59:3685943,1,"Les 10 000 Rosiers",48.861999,2.492144,,1,,Europe/Paris,,OIF, +OIF:SA:59:3685944,1,"Eugène Sue",48.862174,2.498949,,1,,Europe/Paris,,OIF, +OIF:SA:59:3685945,1,"Boureau / Guérinière",48.861008,2.502092,,1,,Europe/Paris,,OIF, +OIF:SA:59:3685947,1,"Georges Clémenceau",48.861057,2.504149,,1,,Europe/Paris,,OIF, +OIF:SA:59:3685949,1,"Square Jean Mermoz",48.861111,2.508743,,1,,Europe/Paris,,OIF, +OIF:SA:59:3685951,1,"Allée Marie",48.859827,2.515655,,1,,Europe/Paris,,OIF, +OIF:SA:59:3685953,1,"Aristide Briand - Louis Armand",48.859133,2.51967,,1,,Europe/Paris,,OIF, +OIF:SA:59:3685961,1,"Place de la Résistance",48.857388,2.532358,,1,,Europe/Paris,,OIF, +OIF:SA:59:3685967,1,"Roussillon",48.866364,2.533843,,1,,Europe/Paris,,OIF, +OIF:SA:59:3685968,1,"Place des Victoires",48.863624,2.535481,,1,,Europe/Paris,,OIF, +OIF:SA:59:3685969,1,"Simone Bigot",48.860742,2.53673,,1,,Europe/Paris,,OIF, +OIF:SA:59:3685970,1,"Pasteur",48.85831,2.534214,,1,,Europe/Paris,,OIF, +OIF:SA:59:3685971,1,"Carnot",48.862978,2.503011,,1,,Europe/Paris,,OIF, +OIF:SA:59:3685972,1,"Eugène Sue",48.862481,2.498228,,1,,Europe/Paris,,OIF, +OIF:SA:59:3685973,1,"Jean Jaurès",48.860983,2.489219,,1,,Europe/Paris,,OIF, +OIF:SA:59:3685974,1,"Védrines",48.856162,2.461012,,1,,Europe/Paris,,OIF, +OIF:SA:59:3686058,1,"Tremblay / Pépinière",48.84221,2.449373,,1,,Europe/Paris,,OIF, +OIF:SA:59:3686059,1,"Charmes - Pépinière",48.845868,2.451298,,1,,Europe/Paris,,OIF, +OIF:SA:59:3686061,1,"Rue des Pommiers",48.846335,2.456467,,1,,Europe/Paris,,OIF, +OIF:SA:59:3686063,1,"Porte Jaune",48.838862,2.460759,,1,,Europe/Paris,,OIF, +OIF:SA:59:3686069,1,"Viaduc",48.835233,2.493133,,1,,Europe/Paris,,OIF, +OIF:SA:59:3686073,1,"Mairie",48.840413,2.506914,,1,,Europe/Paris,,OIF, +OIF:SA:59:3686074,1,"Montaigne",48.838468,2.509352,,1,,Europe/Paris,,OIF, +OIF:SA:59:3686075,1,"Place Beaufranchet",48.836165,2.511366,,1,,Europe/Paris,,OIF, +OIF:SA:59:3686076,1,"Guy-Môquet",48.834456,2.510362,,1,,Europe/Paris,,OIF, +OIF:SA:59:3686077,1,"Foch",48.832426,2.51104,,1,,Europe/Paris,,OIF, +OIF:SA:59:3686078,1,"Résidence des Îles",48.832747,2.513192,,1,,Europe/Paris,,OIF, +OIF:SA:59:3686079,1,"Maréchal Joffre / Pont de Bry",48.834031,2.516101,,1,,Europe/Paris,,OIF, +OIF:SA:59:3686303,1,"Général de Gaulle",48.814378,2.414597,,1,,Europe/Paris,,OIF, +OIF:SA:59:3686305,1,"Rue de Seine",48.810139,2.415601,,1,,Europe/Paris,,OIF, +OIF:SA:59:3686307,1,"Union",48.807371,2.416454,,1,,Europe/Paris,,OIF, +OIF:SA:59:3686309,1,"Salvador Allende",48.805322,2.415117,,1,,Europe/Paris,,OIF, +OIF:SA:59:3686318,1,"Flore",48.797822,2.427683,,1,,Europe/Paris,,OIF, +OIF:SA:59:3686320,1,"Carnot",48.795141,2.42538,,1,,Europe/Paris,,OIF, +OIF:SA:59:3686322,1,"Roses",48.793069,2.425553,,1,,Europe/Paris,,OIF, +OIF:SA:59:3686324,1,"Place du Petit Pont",48.790143,2.42584,,1,,Europe/Paris,,OIF, +OIF:SA:59:3686326,1,"Goujons",48.786818,2.425767,,1,,Europe/Paris,,OIF, +OIF:SA:59:3686328,1,"Cimetière",48.783958,2.427992,,1,,Europe/Paris,,OIF, +OIF:SA:59:3686330,1,"Val de Seine",48.781517,2.428716,,1,,Europe/Paris,,OIF, +OIF:SA:59:3686332,1,"Digue / Révolution",48.780205,2.421845,,1,,Europe/Paris,,OIF, +OIF:SA:59:3686334,1,"Cokerie",48.777993,2.417585,,1,,Europe/Paris,,OIF, +OIF:SA:59:3686336,1,"Mésanges",48.774435,2.415581,,1,,Europe/Paris,,OIF, +OIF:SA:59:3686338,1,"La Folie",48.771973,2.413959,,1,,Europe/Paris,,OIF, +OIF:SA:59:3686340,1,"Jean Vilar",48.770064,2.413541,,1,,Europe/Paris,,OIF, +OIF:SA:59:3686342,1,"Pont de Choisy",48.767256,2.41404,,1,,Europe/Paris,,OIF, +OIF:SA:59:3686358,1,"Grands Champs",48.767159,2.381095,,1,,Europe/Paris,,OIF, +OIF:SA:59:3686360,1,"Paul Langevin",48.768056,2.373577,,1,,Europe/Paris,,OIF, +OIF:SA:59:3686426,1,"Stade",48.778998,2.426257,,1,,Europe/Paris,,OIF, +OIF:SA:59:3686459,1,"Joseph Franceschi",48.80626,2.423351,,1,,Europe/Paris,,OIF, +OIF:SA:59:3686460,1,"Square Bourdarias",48.809435,2.421056,,1,,Europe/Paris,,OIF, +OIF:SA:59:3686542,1,"Ernest Renan",48.812328,2.427654,,1,,Europe/Paris,,OIF, +OIF:SA:59:3686559,1,"D'Estienne d'Orves",48.791319,2.462251,,1,,Europe/Paris,,OIF, +OIF:SA:59:3686561,1,"Gabriel Péri",48.789108,2.466102,,1,,Europe/Paris,,OIF, +OIF:SA:59:3686563,1,"Rue du Barrage",48.785626,2.470085,,1,,Europe/Paris,,OIF, +OIF:SA:59:3686565,1,"Edmond Fouinât",48.782593,2.473233,,1,,Europe/Paris,,OIF, +OIF:SA:59:3686575,1,"Montaigne",48.771864,2.486048,,1,,Europe/Paris,,OIF, +OIF:SA:59:3686580,1,"Iufm",48.766176,2.485026,,1,,Europe/Paris,,OIF, +OIF:SA:59:3686582,1,"Place des Libertés",48.765298,2.485941,,1,,Europe/Paris,,OIF, +OIF:SA:59:3686584,1,"Bicentenaire",48.764545,2.487883,,1,,Europe/Paris,,OIF, +OIF:SA:59:3686592,1,"Maronniers",48.766762,2.493919,,1,,Europe/Paris,,OIF, +OIF:SA:59:3686598,1,"Ateliers RATP",48.764984,2.502874,,1,,Europe/Paris,,OIF, +OIF:SA:59:3686730,1,"Voisin-République",48.813142,2.46608,,1,,Europe/Paris,,OIF, +OIF:SA:59:3686996,1,"Château",48.791869,2.456804,,1,,Europe/Paris,,OIF, +OIF:SA:59:3687001,1,"Docteur Tourasse",48.799456,2.472128,,1,,Europe/Paris,,OIF, +OIF:SA:59:3687002,1,"Beaujeu",48.797384,2.477585,,1,,Europe/Paris,,OIF, +OIF:SA:59:3687004,1,"Théâtre",48.798217,2.485491,,1,,Europe/Paris,,OIF, +OIF:SA:59:3687013,1,"Marinville",48.809208,2.476059,,1,,Europe/Paris,,OIF, +OIF:SA:59:3687015,1,"Libération / Condé",48.811005,2.477785,,1,,Europe/Paris,,OIF, +OIF:SA:59:3687032,1,"42ème de Ligne",48.819388,2.482374,,1,,Europe/Paris,,OIF, +OIF:SA:59:3687033,1,"Charles Floquet / Denis Diderot",48.815138,2.481273,,1,,Europe/Paris,,OIF, +OIF:SA:59:3687072,1,"Chemin Vert / Parmentier",48.860049,2.377592,,1,,Europe/Paris,,OIF, +OIF:SA:59:3687077,1,"Pasteur / Wagner",48.855697,2.368511,,1,,Europe/Paris,,OIF, +OIF:SA:59:3687084,1,"Rue Vieille du Temple / Mairie du 4ème",48.856311,2.356804,,1,,Europe/Paris,,OIF, +OIF:SA:59:3687092,1,"Musée du Louvre",48.861159,2.334025,,1,,Europe/Paris,,OIF, +OIF:SA:59:3687093,1,"Pont du Carrousel / Quai Voltaire",48.858384,2.33276,,1,,Europe/Paris,,OIF, +OIF:SA:59:3687101,1,"Grenelle / Bellechasse",48.856613,2.32082,,1,,Europe/Paris,,OIF, +OIF:SA:59:3687107,1,"Saint-Pierre du Gros Caillou",48.858574,2.306109,,1,,Europe/Paris,,OIF, +OIF:SA:59:3687109,1,"Bosquet / Grenelle",48.856825,2.304294,,1,,Europe/Paris,,OIF, +OIF:SA:59:3687110,1,"Champ de Mars / la Bourdonnais",48.856245,2.302358,,1,,Europe/Paris,,OIF, +OIF:SA:59:3687111,1,"Rapp / la Bourdonnais",48.857309,2.299742,,1,,Europe/Paris,,OIF, +OIF:SA:59:3687115,1,"Bosquet / Saint-Dominique",48.858817,2.30363,,1,,Europe/Paris,,OIF, +OIF:SA:59:3687116,1,"La Tour Maubourg / Saint-Dominique",48.859954,2.310272,,1,,Europe/Paris,,OIF, +OIF:SA:59:3687121,1,"Église Saint-Gervais",48.855848,2.355034,,1,,Europe/Paris,,OIF, +OIF:SA:59:3687125,1,"Commandant Lamy",48.855861,2.375505,,1,,Europe/Paris,,OIF, +OIF:SA:59:3687249,1,"Birague",48.85382,2.365179,,1,,Europe/Paris,,OIF, +OIF:SA:59:3687254,1,"La Boule Blanche",48.851952,2.373513,,1,,Europe/Paris,,OIF, +OIF:SA:59:3687259,1,"Faidherbe",48.85399,2.382327,,1,,Europe/Paris,,OIF, +OIF:SA:59:3687263,1,"Charonne / Philippe Auguste",48.855667,2.390725,,1,,Europe/Paris,,OIF, +OIF:SA:59:3687266,1,"La Réunion",48.857447,2.399049,,1,,Europe/Paris,,OIF, +OIF:SA:59:3687268,1,"Pyrénées / Bagnolet",48.859287,2.402378,,1,,Europe/Paris,,OIF, +OIF:SA:59:3687281,1,"Église",48.86998,2.420657,,1,,Europe/Paris,,OIF, +OIF:SA:59:3687285,1,"Descartes",48.868978,2.426139,,1,,Europe/Paris,,OIF, +OIF:SA:59:3687287,1,"Les Malassis",48.871621,2.425745,,1,,Europe/Paris,,OIF, +OIF:SA:59:3687289,1,"Stalingrad",48.872347,2.42827,,1,,Europe/Paris,,OIF, +OIF:SA:59:3687291,1,"Girardot",48.87477,2.426743,,1,,Europe/Paris,,OIF, +OIF:SA:59:3687432,1,"Rue du Pont Louis Philippe",48.855479,2.357567,,1,,Europe/Paris,,OIF, +OIF:SA:59:3687435,1,"Place des Vosges",48.856604,2.364514,,1,,Europe/Paris,,OIF, +OIF:SA:59:3687439,1,"Bretagne",48.862084,2.365402,,1,,Europe/Paris,,OIF, +OIF:SA:59:3687442,1,"Oberkampf / Richard Lenoir",48.863568,2.370234,,1,,Europe/Paris,,OIF, +OIF:SA:59:3687444,1,"Saint-Maur / Jean Aicard",48.866115,2.379708,,1,,Europe/Paris,,OIF, +OIF:SA:59:3687446,1,"Julien Lacroix",48.868004,2.386868,,1,,Europe/Paris,,OIF, +OIF:SA:59:3687448,1,"Henri Chevreau",48.868573,2.389294,,1,,Europe/Paris,,OIF, +OIF:SA:59:3687450,1,"Pyrénées / Ménilmontant",48.869838,2.394247,,1,,Europe/Paris,,OIF, +OIF:SA:59:3687452,1,"Ménilmontant / Pelleport",48.870775,2.399194,,1,,Europe/Paris,,OIF, +OIF:SA:59:3687462,1,"Belleville / Ménilmontant",48.867345,2.383101,,1,,Europe/Paris,,OIF, +OIF:SA:59:3687464,1,"Maison des Métallos",48.867769,2.37753,,1,,Europe/Paris,,OIF, +OIF:SA:59:3687466,1,"Jean Pierre Timbaud / Richard Lenoir",48.865731,2.369654,,1,,Europe/Paris,,OIF, +OIF:SA:59:3687661,1,"Chassagnole",48.876424,2.413705,,1,,Europe/Paris,,OIF, +OIF:SA:59:3687663,1,"Rue de Noisy le Sec",48.875963,2.418167,,1,,Europe/Paris,,OIF, +OIF:SA:59:3687664,1,"Rue de Pantin",48.876122,2.422227,,1,,Europe/Paris,,OIF, +OIF:SA:59:3687672,1,"Les Rigondes",48.871631,2.430374,,1,,Europe/Paris,,OIF, +OIF:SA:59:3687674,1,"Général de Gaulle",48.868874,2.4331,,1,,Europe/Paris,,OIF, +OIF:SA:59:3687676,1,"Hoche",48.86501,2.438038,,1,,Europe/Paris,,OIF, +OIF:SA:59:3687681,1,"Victor Hugo",48.860474,2.439534,,1,,Europe/Paris,,OIF, +OIF:SA:59:3687687,1,"Colmet / Lépinay",48.854844,2.439353,,1,,Europe/Paris,,OIF, +OIF:SA:59:3687689,1,"Solidarité",48.85275,2.438641,,1,,Europe/Paris,,OIF, +OIF:SA:59:3687699,1,"Solidarité",48.853361,2.43901,,1,,Europe/Paris,,OIF, +OIF:SA:59:3687700,1,"Rue de Noisy le Sec",48.876116,2.416995,,1,,Europe/Paris,,OIF, +OIF:SA:59:3687724,1,"Lycée Jean Jaurès",48.863391,2.44943,,1,,Europe/Paris,,OIF, +OIF:SA:59:3687725,1,"Danton",48.864942,2.453472,,1,,Europe/Paris,,OIF, +OIF:SA:59:3687726,1,"Edouard Branly",48.868051,2.457139,,1,,Europe/Paris,,OIF, +OIF:SA:59:3687727,1,"Nouvelle France",48.865813,2.462462,,1,,Europe/Paris,,OIF, +OIF:SA:59:3687728,1,"Acacias",48.869819,2.465036,,1,,Europe/Paris,,OIF, +OIF:SA:59:3687729,1,"Fort de Rosny",48.87112,2.470116,,1,,Europe/Paris,,OIF, +OIF:SA:59:3687730,1,"Grand Verger",48.872744,2.477639,,1,,Europe/Paris,,OIF, +OIF:SA:59:3687731,1,"Église",48.874062,2.482591,,1,,Europe/Paris,,OIF, +OIF:SA:59:3687739,1,"Château de Villemomble (Descente)",48.884294,2.510492,,1,,Europe/Paris,,OIF, +OIF:SA:59:3688528,1,"Descartes",48.858267,2.476061,,1,,Europe/Paris,,OIF, +OIF:SA:59:3688534,1,"Ernest Renan",48.857306,2.467334,,1,,Europe/Paris,,OIF, +OIF:SA:59:3688542,1,"Saint-Exupéry",48.869193,2.470736,,1,,Europe/Paris,,OIF, +OIF:SA:59:3688543,1,"Fort de Rosny",48.870882,2.47102,,1,,Europe/Paris,,OIF, +OIF:SA:59:3688546,1,"Salvador Allende",48.876705,2.463323,,1,,Europe/Paris,,OIF, +OIF:SA:59:3688548,1,"La Boissière",48.877804,2.457003,,1,,Europe/Paris,,OIF, +OIF:SA:59:3688552,1,"Frères Lumière",48.882906,2.454964,,1,,Europe/Paris,,OIF, +OIF:SA:59:3688558,1,"Chaâlons",48.891176,2.448509,,1,,Europe/Paris,,OIF, +OIF:SA:59:3688565,1,"Louise Michel",48.902327,2.440551,,1,,Europe/Paris,,OIF, +OIF:SA:59:3688573,1,"Hôtel de Ville de Bobigny",48.906636,2.446449,,1,,Europe/Paris,,OIF, +OIF:SA:59:3688575,1,"3 Communes",48.878235,2.449578,,1,,Europe/Paris,,OIF, +OIF:SA:59:3688576,1,"Hôpital André Grégoire",48.877763,2.454219,,1,,Europe/Paris,,OIF, +OIF:SA:59:3689894,1,"Place François Mitterrand",48.865533,2.443594,,1,,Europe/Paris,,OIF, +OIF:SA:59:3689896,1,"Victor Beausse",48.867869,2.441851,,1,,Europe/Paris,,OIF, +OIF:SA:59:3689898,1,"Berlioz",48.871839,2.439761,,1,,Europe/Paris,,OIF, +OIF:SA:59:3689900,1,"Alexandre Dumas",48.875653,2.440947,,1,,Europe/Paris,,OIF, +OIF:SA:59:3689902,1,"Sente des Mares",48.879665,2.441214,,1,,Europe/Paris,,OIF, +OIF:SA:59:3689906,1,"Rue du Parc",48.885451,2.443556,,1,,Europe/Paris,,OIF, +OIF:SA:59:3689908,1,"Jura",48.889408,2.445956,,1,,Europe/Paris,,OIF, +OIF:SA:59:3689912,1,"Avenue de Bobigny",48.895099,2.443549,,1,,Europe/Paris,,OIF, +OIF:SA:59:3689915,1,"Jean Jaurès",48.900978,2.442286,,1,,Europe/Paris,,OIF, +OIF:SA:59:3689917,1,"Archives Départementales",48.903316,2.445761,,1,,Europe/Paris,,OIF, +OIF:SA:59:3689922,1,"Karl Marx",48.903973,2.444835,,1,,Europe/Paris,,OIF, +OIF:SA:59:3690053,1,"Indre",48.86325,2.404266,,1,,Europe/Paris,,OIF, +OIF:SA:59:3690055,1,"Pelleport / Bagnolet",48.862053,2.406076,,1,,Europe/Paris,,OIF, +OIF:SA:59:3690057,1,"Église Saint-Germain de Charonne",48.859911,2.403444,,1,,Europe/Paris,,OIF, +OIF:SA:59:3690058,1,"Albert Marquet",48.857686,2.404586,,1,,Europe/Paris,,OIF, +OIF:SA:59:3690060,1,"Orteaux / Maraîchers",48.856018,2.406027,,1,,Europe/Paris,,OIF, +OIF:SA:59:3690064,1,"Schubert / Paganini",48.851602,2.411741,,1,,Europe/Paris,,OIF, +OIF:SA:59:3690069,1,"Square Sarah Bernhardt",48.848946,2.404683,,1,,Europe/Paris,,OIF, +OIF:SA:59:3690070,1,"Plaine",48.849828,2.402369,,1,,Europe/Paris,,OIF, +OIF:SA:59:3690074,1,"Place de la Réunion",48.855607,2.402077,,1,,Europe/Paris,,OIF, +OIF:SA:59:3690075,1,"Orteaux / Vitruve",48.856874,2.402868,,1,,Europe/Paris,,OIF, +OIF:SA:59:3690076,1,"Place des Grès",48.858526,2.405418,,1,,Europe/Paris,,OIF, +OIF:SA:59:3690077,1,"Vitruve / Balkans",48.859747,2.407326,,1,,Europe/Paris,,OIF, +OIF:SA:59:3690078,1,"Debrousse / Centre de Santé",48.861267,2.406456,,1,,Europe/Paris,,OIF, +OIF:SA:59:3690336,1,"Gambetta / André Laurent",48.853614,2.457206,,1,,Europe/Paris,,OIF, +OIF:SA:59:3690337,1,"Edouard Maury",48.855105,2.45819,,1,,Europe/Paris,,OIF, +OIF:SA:59:3690338,1,"Eugène Héricourt",48.853419,2.462803,,1,,Europe/Paris,,OIF, +OIF:SA:59:3690341,1,"Église Saint-Germain",48.847432,2.471994,,1,,Europe/Paris,,OIF, +OIF:SA:59:3690345,1,"Médiathèque Louis Aragon",48.850727,2.475407,,1,,Europe/Paris,,OIF, +OIF:SA:59:3690346,1,"Place Michelet",48.852331,2.472109,,1,,Europe/Paris,,OIF, +OIF:SA:59:3690350,1,"Émile Zola",48.856713,2.471106,,1,,Europe/Paris,,OIF, +OIF:SA:59:3690352,1,"Victor Hugo",48.858993,2.473652,,1,,Europe/Paris,,OIF, +OIF:SA:59:3690354,1,"Jean Moulin / Cimetière de Vincennes",48.859259,2.480265,,1,,Europe/Paris,,OIF, +OIF:SA:59:3690356,1,"Foyer Aimée Matteraz",48.85648,2.474258,,1,,Europe/Paris,,OIF, +OIF:SA:59:3690359,1,"Charles Garcia / Collège Jean Macé",48.855933,2.481448,,1,,Europe/Paris,,OIF, +OIF:SA:59:3690362,1,"Jean Zay",48.857478,2.485797,,1,,Europe/Paris,,OIF, +OIF:SA:59:3690363,1,"Pablo Picasso",48.855268,2.48624,,1,,Europe/Paris,,OIF, +OIF:SA:59:3690369,1,"Louis Auroux",48.854208,2.494484,,1,,Europe/Paris,,OIF, +OIF:SA:59:3690372,1,"Les Alouettes",48.858126,2.495395,,1,,Europe/Paris,,OIF, +OIF:SA:59:3690374,1,"De Lattre de Tassigny",48.856171,2.492052,,1,,Europe/Paris,,OIF, +OIF:SA:59:3690375,1,"Saint-Germain",48.851286,2.473938,,1,,Europe/Paris,,OIF, +OIF:SA:59:3690376,1,"Cimetière",48.848198,2.478042,,1,,Europe/Paris,,OIF, +OIF:SA:59:3690377,1,"Maison du Citoyen",48.846582,2.476513,,1,,Europe/Paris,,OIF, +OIF:SA:59:3690378,1,"Molière",48.846325,2.473366,,1,,Europe/Paris,,OIF, +OIF:SA:59:3690380,1,"Maurice Couderchet",48.845701,2.46932,,1,,Europe/Paris,,OIF, +OIF:SA:59:3690383,1,"Jean-Jacques Rousseau",48.84618,2.457924,,1,,Europe/Paris,,OIF, +OIF:SA:59:3690384,1,"Georges le Tiec",48.852982,2.450599,,1,,Europe/Paris,,OIF, +OIF:SA:59:3690395,1,"Gambetta",48.850948,2.462497,,1,,Europe/Paris,,OIF, +OIF:SA:59:3690396,1,"Charles Bassée",48.848776,2.46798,,1,,Europe/Paris,,OIF, +OIF:SA:59:3690411,1,"Jean Macé / Martin Luther King",48.85671,2.477493,,1,,Europe/Paris,,OIF, +OIF:SA:59:3690424,1,"La Prairie",48.856183,2.496547,,1,,Europe/Paris,,OIF, +OIF:SA:59:3690440,1,"Bois Galon",48.859127,2.492769,,1,,Europe/Paris,,OIF, +OIF:SA:59:3690461,1,"Mallier / Gaucher",48.845548,2.461204,,1,,Europe/Paris,,OIF, +OIF:SA:59:3708133,1,"Sous Préfecture / Jules Ferry",48.836687,2.482518,,1,,Europe/Paris,,OIF, +OIF:SA:59:3708134,1,"Marché",48.83787,2.486619,,1,,Europe/Paris,,OIF, +OIF:SA:59:3708135,1,"Mairie de Nogent-sur-Marne",48.838246,2.491522,,1,,Europe/Paris,,OIF, +OIF:SA:59:3708137,1,"Les Parclairs",48.83522,2.499178,,1,,Europe/Paris,,OIF, +OIF:SA:59:3708138,1,"Alma",48.834912,2.504173,,1,,Europe/Paris,,OIF, +OIF:SA:59:3708140,1,"Mail Meyer",48.834355,2.513218,,1,,Europe/Paris,,OIF, +OIF:SA:59:3715235,1,"3 Communes",48.874028,2.529315,,1,,Europe/Paris,,OIF, +OIF:SA:59:3715236,1,"Lycée Georges Clémenceau",48.876866,2.52502,,1,,Europe/Paris,,OIF, +OIF:SA:59:3716889,1,"Saint-Germain / Cardinal Lemoine",48.849346,2.354378,,1,,Europe/Paris,,OIF, +OIF:SA:59:3716890,1,"Université Paris VI",48.84886,2.357993,,1,,Europe/Paris,,OIF, +OIF:SA:59:3716891,1,"Cuvier",48.847022,2.360716,,1,,Europe/Paris,,OIF, +OIF:SA:59:3716898,1,"Dijon / Lachambeaudie",48.835685,2.386068,,1,,Europe/Paris,,OIF, +OIF:SA:59:3716900,1,"Terroirs de France",48.831747,2.388063,,1,,Europe/Paris,,OIF, +OIF:SA:59:3716901,1,"Parc de Bercy",48.824864,2.394497,,1,,Europe/Paris,,OIF, +OIF:SA:59:3716902,1,"Port aux Lions",48.822162,2.398476,,1,,Europe/Paris,,OIF, +OIF:SA:59:3716903,1,"Pont Nelson Mandela",48.820785,2.402006,,1,,Europe/Paris,,OIF, +OIF:SA:59:3716905,1,"Les Berges de Charenton",48.819182,2.407632,,1,,Europe/Paris,,OIF, +OIF:SA:59:3716914,1,"Victor Hugo",48.818937,2.411061,,1,,Europe/Paris,,OIF, +OIF:SA:59:3716922,1,"Lachambeaudie",48.835923,2.385851,,1,,Europe/Paris,,OIF, +OIF:SA:59:3716931,1,"Pont de la Tournelle / Cardinal Lemoine",48.849827,2.355794,,1,,Europe/Paris,,OIF, +OIF:SA:59:3716932,1,"Pont de l'Archevêché",48.851103,2.351655,,1,,Europe/Paris,,OIF, +OIF:SA:59:3716951,1,"Pont de Charenton",48.81827,2.420091,,1,,Europe/Paris,,OIF, +OIF:SA:59:3718002,1,"Place de la Résistance",48.814032,2.557603,,1,,Europe/Paris,,OIF, +OIF:SA:59:3718004,1,"Paul Venzac",48.81136,2.556388,,1,,Europe/Paris,,OIF, +OIF:SA:59:3718006,1,"Châteaudun",48.811539,2.552088,,1,,Europe/Paris,,OIF, +OIF:SA:59:3718008,1,"Rond-Point du Château",48.810396,2.545279,,1,,Europe/Paris,,OIF, +OIF:SA:59:3718012,1,"Rue du Bois l'Abbé Louise Collet",48.811012,2.539968,,1,,Europe/Paris,,OIF, +OIF:SA:59:3718018,1,"Le Fort",48.806203,2.532424,,1,,Europe/Paris,,OIF, +OIF:SA:59:3718034,1,"Place de Verdun",48.805181,2.585045,,1,,Europe/Paris,,OIF, +OIF:SA:59:3718036,1,"Avenue Bertrand",48.8063,2.581784,,1,,Europe/Paris,,OIF, +OIF:SA:59:3718038,1,"Avenue Ardouin",48.806296,2.575028,,1,,Europe/Paris,,OIF, +OIF:SA:59:3718040,1,"Collège Albert Camus / ZA de Ponroy",48.805096,2.572642,,1,,Europe/Paris,,OIF, +OIF:SA:59:3718042,1,"Centre Commercial",48.795173,2.561155,,1,,Europe/Paris,,OIF, +OIF:SA:59:3718048,1,"Jean Mermoz",48.802867,2.553964,,1,,Europe/Paris,,OIF, +OIF:SA:59:3718050,1,"Jean de la Fontaine",48.805522,2.559023,,1,,Europe/Paris,,OIF, +OIF:SA:59:3718055,1,"Houdon",48.806664,2.554136,,1,,Europe/Paris,,OIF, +OIF:SA:59:3718082,1,"Fort de Champigny",48.805773,2.533947,,1,,Europe/Paris,,OIF, +OIF:SA:59:3718101,1,"Bois l'Abbé",48.806838,2.557192,,1,,Europe/Paris,,OIF, +OIF:SA:59:3729699,1,"Depinoy",48.821749,2.313032,,1,,Europe/Paris,,OIF, +OIF:SA:59:3729702,1,"Pierre Brossolette / Augustin Dumont",48.817568,2.307481,,1,,Europe/Paris,,OIF, +OIF:SA:59:3729703,1,"Joliot Curie",48.815445,2.300949,,1,,Europe/Paris,,OIF, +OIF:SA:59:3729706,1,"Augustin Dumont",48.817005,2.30365,,1,,Europe/Paris,,OIF, +OIF:SA:59:3730049,1,"Le Clos la Garenne",48.757765,2.327886,,1,,Europe/Paris,,OIF, +OIF:SA:59:3730051,1,"Montjean",48.754368,2.326887,,1,,Europe/Paris,,OIF, +OIF:SA:59:3730053,1,"Parc de Médicis",48.753431,2.336644,,1,,Europe/Paris,,OIF, +OIF:SA:59:3730065,1,"Belle Epine",48.756452,2.374092,,1,,Europe/Paris,,OIF, +OIF:SA:59:3730067,1,"Les Alouettes",48.75277,2.377528,,1,,Europe/Paris,,OIF, +OIF:SA:59:3730071,1,"Victor Basch",48.758332,2.392847,,1,,Europe/Paris,,OIF, +OIF:SA:59:3730080,1,"Pasteur",48.767661,2.416882,,1,,Europe/Paris,,OIF, +OIF:SA:59:3730082,1,"Marcellin Berthelot",48.768863,2.420929,,1,,Europe/Paris,,OIF, +OIF:SA:59:3730345,1,"Division Leclerc / Camille Desmoulins",48.79029,2.331442,,1,,Europe/Paris,,OIF, +OIF:SA:59:3730347,1,"La Plaine",48.78674,2.330739,,1,,Europe/Paris,,OIF, +OIF:SA:59:3730350,1,"Strasbourg",48.783831,2.328255,,1,,Europe/Paris,,OIF, +OIF:SA:59:3730351,1,"Petit Robinson",48.779274,2.328304,,1,,Europe/Paris,,OIF, +OIF:SA:59:3730353,1,"Barbusse / Larroumès",48.775508,2.326088,,1,,Europe/Paris,,OIF, +OIF:SA:59:3730358,1,"Commandant l'Herminier",48.771634,2.323321,,1,,Europe/Paris,,OIF, +OIF:SA:59:3730360,1,"Rue Geneviève",48.769652,2.321792,,1,,Europe/Paris,,OIF, +OIF:SA:59:3730361,1,"Marc Sangnier",48.767404,2.31927,,1,,Europe/Paris,,OIF, +OIF:SA:59:3730363,1,"Maison d'Arrêt",48.76504,2.318394,,1,,Europe/Paris,,OIF, +OIF:SA:59:3730365,1,"Carrefour de la Déportation",48.761634,2.318355,,1,,Europe/Paris,,OIF, +OIF:SA:59:3730367,1,"Tuilerie",48.759607,2.31945,,1,,Europe/Paris,,OIF, +OIF:SA:59:3730374,1,"Charcot / Émile Zola",48.761064,2.327208,,1,,Europe/Paris,,OIF, +OIF:SA:59:3730632,1,"Place Auguste Delaune",48.783765,2.362197,,1,,Europe/Paris,,OIF, +OIF:SA:59:3730636,1,"Gustave Charpentier",48.778814,2.359719,,1,,Europe/Paris,,OIF, +OIF:SA:59:3730638,1,"Poitou",48.776032,2.357467,,1,,Europe/Paris,,OIF, +OIF:SA:59:3730641,1,"Rue de Bicetre",48.776159,2.353456,,1,,Europe/Paris,,OIF, +OIF:SA:59:3730643,1,"Jules Ferry-Ferrer",48.778033,2.347989,,1,,Europe/Paris,,OIF, +OIF:SA:59:3730644,1,"Henri Thiard / Léon Jouhaux",48.778678,2.34076,,1,,Europe/Paris,,OIF, +OIF:SA:59:3730646,1,"Tournelles",48.775854,2.339958,,1,,Europe/Paris,,OIF, +OIF:SA:59:3730653,1,"Stade de la Paix",48.763887,2.331821,,1,,Europe/Paris,,OIF, +OIF:SA:59:3730655,1,"Gallieni",48.761235,2.330094,,1,,Europe/Paris,,OIF, +OIF:SA:59:3730661,1,"La Tour aux Chartiers",48.753401,2.319343,,1,,Europe/Paris,,OIF, +OIF:SA:59:3730663,1,"Parc des Sports",48.752029,2.316156,,1,,Europe/Paris,,OIF, +OIF:SA:59:3730670,1,"Lycée les Fleurs",48.749952,2.3093,,1,,Europe/Paris,,OIF, +OIF:SA:59:3730673,1,"Camélias / Dauvin",48.766727,2.3342,,1,,Europe/Paris,,OIF, +OIF:SA:59:3731628,1,"Petits Ponts",48.890345,2.399422,,1,,Europe/Paris,,OIF, +OIF:SA:59:3731646,1,"Lycée Alfred Costes",48.90866,2.427966,,1,,Europe/Paris,,OIF, +OIF:SA:59:3731648,1,"Gare / Grande Ceinture",48.910181,2.431207,,1,,Europe/Paris,,OIF, +OIF:SA:59:3731654,1,"Paul Belwo",48.914613,2.44046,,1,,Europe/Paris,,OIF, +OIF:SA:59:3731657,1,"Charles Gide",48.918544,2.444614,,1,,Europe/Paris,,OIF, +OIF:SA:59:3731662,1,"Auguste Blanqui",48.92121,2.454594,,1,,Europe/Paris,,OIF, +OIF:SA:59:3731664,1,"Edouard Liévin",48.919997,2.458594,,1,,Europe/Paris,,OIF, +OIF:SA:59:3731666,1,"Jules Auffret",48.919239,2.46166,,1,,Europe/Paris,,OIF, +OIF:SA:59:3731668,1,"Marcel Cachin",48.918093,2.466049,,1,,Europe/Paris,,OIF, +OIF:SA:59:3731670,1,"Argonne / Bois de Groslay",48.917871,2.467896,,1,,Europe/Paris,,OIF, +OIF:SA:59:3731672,1,"Surcouf / Lejeune",48.920454,2.472409,,1,,Europe/Paris,,OIF, +OIF:SA:59:3731678,1,"Chemin des Vignes",48.903419,2.416819,,1,,Europe/Paris,,OIF, +OIF:SA:59:3731679,1,"Petits Ponts",48.890453,2.399,,1,,Europe/Paris,,OIF, +OIF:SA:59:3731680,1,"Porte de Pantin / Parc de la Villette",48.888963,2.395563,,1,,Europe/Paris,,OIF, +OIF:SA:59:3740301,1,"Rochechouart / Clignancourt",48.883313,2.346417,,1,,Europe/Paris,,OIF, +OIF:SA:59:3740303,1,"Rochechouart / Martyrs",48.881862,2.34018,,1,,Europe/Paris,,OIF, +OIF:SA:59:3740308,1,"Turin / Batignolles",48.882928,2.324593,,1,,Europe/Paris,,OIF, +OIF:SA:59:3740311,1,"Malesherbes / Courcelles",48.880718,2.312671,,1,,Europe/Paris,,OIF, +OIF:SA:59:3740503,1,"Faubourg Saint-Denis",48.874524,2.354877,,1,,Europe/Paris,,OIF, +OIF:SA:59:3740504,1,"Hauteville",48.875477,2.35034,,1,,Europe/Paris,,OIF, +OIF:SA:59:3740522,1,"La Boétie / Champs Elysées",48.870501,2.305666,,1,,Europe/Paris,,OIF, +OIF:SA:59:3740524,1,"Pierre Charron / François 1er",48.868751,2.301825,,1,,Europe/Paris,,OIF, +OIF:SA:59:3740526,1,"Marceau / Pierre 1er de Serbie / Place de Beyrouth",48.867397,2.299156,,1,,Europe/Paris,,OIF, +OIF:SA:59:3740529,1,"Albert de Mun",48.863934,2.290781,,1,,Europe/Paris,,OIF, +OIF:SA:59:3740535,1,"Scheffer",48.860877,2.284613,,1,,Europe/Paris,,OIF, +OIF:SA:59:3740541,1,"Porte de Passy",48.857353,2.264831,,1,,Europe/Paris,,OIF, +OIF:SA:59:3740543,1,"Raffet",48.853153,2.261958,,1,,Europe/Paris,,OIF, +OIF:SA:59:3740545,1,"Alfred Capus",48.850302,2.260151,,1,,Europe/Paris,,OIF, +OIF:SA:59:3740550,1,"Louis Boilly",48.859002,2.267548,,1,,Europe/Paris,,OIF, +OIF:SA:59:3740552,1,"Place de Passy",48.857857,2.277751,,1,,Europe/Paris,,OIF, +OIF:SA:59:3740553,1,"Jean Bologne",48.857742,2.280285,,1,,Europe/Paris,,OIF, +OIF:SA:59:3740988,1,"Léo Lagrange",48.962575,2.38421,,1,,Europe/Paris,,OIF, +OIF:SA:59:3740991,1,"Pierre Semard",48.967301,2.391739,,1,,Europe/Paris,,OIF, +OIF:SA:59:3740993,1,"Bellevue",48.96906,2.393204,,1,,Europe/Paris,,OIF, +OIF:SA:59:3740995,1,"Plein Midi",48.971521,2.395541,,1,,Europe/Paris,,OIF, +OIF:SA:59:3741057,1,"Saint-Bruno",48.88618,2.356577,,1,,Europe/Paris,,OIF, +OIF:SA:59:3741059,1,"Doudeauville",48.888531,2.356067,,1,,Europe/Paris,,OIF, +OIF:SA:59:3741061,1,"Pont Marcadet",48.890321,2.355327,,1,,Europe/Paris,,OIF, +OIF:SA:59:3741065,1,"Championnet",48.894786,2.352887,,1,,Europe/Paris,,OIF, +OIF:SA:59:3741067,1,"Porte des Poissonniers",48.898107,2.35229,,1,,Europe/Paris,,OIF, +OIF:SA:59:3741071,1,"Pont Hainguerlot",48.902397,2.358731,,1,,Europe/Paris,,OIF, +OIF:SA:59:3741073,1,"Proudhon",48.905938,2.358466,,1,,Europe/Paris,,OIF, +OIF:SA:59:3741075,1,"Église",48.908495,2.358263,,1,,Europe/Paris,,OIF, +OIF:SA:59:3741077,1,"Encyclopédie / Métallurgie",48.909807,2.360063,,1,,Europe/Paris,,OIF, +OIF:SA:59:3741079,1,"Maraîchers",48.913999,2.362996,,1,,Europe/Paris,,OIF, +OIF:SA:59:3741083,1,"Bergeries / Francs Moisins",48.923272,2.36967,,1,,Europe/Paris,,OIF, +OIF:SA:59:3741084,1,"Collège Frederico Garcia Lorca",48.925072,2.373851,,1,,Europe/Paris,,OIF, +OIF:SA:59:3741094,1,"Bergeries / Francs Moisins",48.923488,2.369261,,1,,Europe/Paris,,OIF, +OIF:SA:59:3743492,1,"Groupe Scolaire Rousseau",48.800797,2.54805,,1,,Europe/Paris,,OIF, +OIF:SA:59:3743518,1,"Collège Boilleau",48.805673,2.555221,,1,,Europe/Paris,,OIF, +OIF:SA:59:3747821,1,"Mairie du 2ème",48.866401,2.340025,,1,,Europe/Paris,,OIF, +OIF:SA:59:3747822,1,"Victoires",48.86574,2.341142,,1,,Europe/Paris,,OIF, +OIF:SA:59:3747823,1,"Etienne Marcel / Montmartre",48.865035,2.34373,,1,,Europe/Paris,,OIF, +OIF:SA:59:3747825,1,"Sébastopol / Etienne Marcel",48.863093,2.351794,,1,,Europe/Paris,,OIF, +OIF:SA:59:3747829,1,"Archives / Rambuteau",48.859901,2.356595,,1,,Europe/Paris,,OIF, +OIF:SA:59:3747830,1,"Rue Vieille du Temple",48.859497,2.359441,,1,,Europe/Paris,,OIF, +OIF:SA:59:3747831,1,"Payenne",48.857105,2.36198,,1,,Europe/Paris,,OIF, +OIF:SA:59:3747836,1,"Lyon / Ledru Rollin",48.848794,2.371618,,1,,Europe/Paris,,OIF, +OIF:SA:59:3747838,1,"Daumesnil / Diderot",48.846208,2.377336,,1,,Europe/Paris,,OIF, +OIF:SA:59:3747840,1,"Rambouillet",48.844481,2.381195,,1,,Europe/Paris,,OIF, +OIF:SA:59:3747842,1,"Charles Bossut",48.843186,2.383849,,1,,Europe/Paris,,OIF, +OIF:SA:59:3747844,1,"Mairie du 12ème",48.841396,2.387885,,1,,Europe/Paris,,OIF, +OIF:SA:59:3747846,1,"Dubrunfaut",48.840675,2.390873,,1,,Europe/Paris,,OIF, +OIF:SA:59:3747856,1,"Fabre d'Églantine",48.845553,2.396182,,1,,Europe/Paris,,OIF, +OIF:SA:59:3747865,1,"Porte de Montempoivre",48.841032,2.412039,,1,,Europe/Paris,,OIF, +OIF:SA:59:3747872,1,"Turenne / Saint-Gilles",48.858273,2.364201,,1,,Europe/Paris,,OIF, +OIF:SA:59:3747874,1,"Archives / Haudriettes",48.861393,2.358788,,1,,Europe/Paris,,OIF, +OIF:SA:59:3747878,1,"Louvre / Etienne Marcel",48.865176,2.343108,,1,,Europe/Paris,,OIF, +OIF:SA:59:3747880,1,"Bibliothèque Nationale",48.866572,2.3379,,1,,Europe/Paris,,OIF, +OIF:SA:59:3747916,1,"Grange aux Belles / Juliette Dodu",48.875492,2.368965,,1,,Europe/Paris,,OIF, +OIF:SA:59:3747917,1,"Hôpital Saint-Louis",48.872809,2.369924,,1,,Europe/Paris,,OIF, +OIF:SA:59:3747919,1,"Alibert",48.871277,2.36788,,1,,Europe/Paris,,OIF, +OIF:SA:59:3747921,1,"Fontaine au Roi",48.867699,2.372768,,1,,Europe/Paris,,OIF, +OIF:SA:59:3747931,1,"Gymnase Japy",48.856198,2.382251,,1,,Europe/Paris,,OIF, +OIF:SA:59:3747932,1,"Charonne / Chanzy",48.853621,2.382612,,1,,Europe/Paris,,OIF, +OIF:SA:59:3747940,1,"Rue de la Gare de Reuilly",48.841488,2.393576,,1,,Europe/Paris,,OIF, +OIF:SA:59:3747944,1,"Sidi Brahim",48.838204,2.399318,,1,,Europe/Paris,,OIF, +OIF:SA:59:3747950,1,"Parc Zoologique",48.833634,2.414847,,1,,Europe/Paris,,OIF, +OIF:SA:59:3747952,1,"Alphand",48.83419,2.416985,,1,,Europe/Paris,,OIF, +OIF:SA:59:3747954,1,"Saint-Mandé / Demi Lune / Parc Zoologique",48.83505,2.420404,,1,,Europe/Paris,,OIF, +OIF:SA:59:3747955,1,"Tourelle / Daumesnil",48.839375,2.429935,,1,,Europe/Paris,,OIF, +OIF:SA:59:3747957,1,"Parc Floral",48.84055,2.438617,,1,,Europe/Paris,,OIF, +OIF:SA:59:3747961,1,"Demi Lune - Parc Zoologique",48.835314,2.420349,,1,,Europe/Paris,,OIF, +OIF:SA:59:3747962,1,"Parc Zoologique",48.833896,2.412328,,1,,Europe/Paris,,OIF, +OIF:SA:59:3747964,1,"Godefroy / Cavaignac",48.854673,2.381633,,1,,Europe/Paris,,OIF, +OIF:SA:59:3747966,1,"Sambre et Meuse",48.87568,2.370451,,1,,Europe/Paris,,OIF, +OIF:SA:59:3748055,1,"La Cerisaie",48.852354,2.366377,,1,,Europe/Paris,,OIF, +OIF:SA:59:3748064,1,"Claude Tillier",48.849354,2.389465,,1,,Europe/Paris,,OIF, +OIF:SA:59:3748065,1,"Chevreul",48.848835,2.392835,,1,,Europe/Paris,,OIF, +OIF:SA:59:3748068,1,"Marsoulan",48.84777,2.40283,,1,,Europe/Paris,,OIF, +OIF:SA:59:3748073,1,"Mairie",48.843471,2.417881,,1,,Europe/Paris,,OIF, +OIF:SA:59:3748075,1,"Église de Saint-Mandé",48.839905,2.417538,,1,,Europe/Paris,,OIF, +OIF:SA:59:3748077,1,"Jean Mermoz",48.83822,2.41772,,1,,Europe/Paris,,OIF, +OIF:SA:59:3748095,1,"Institut du Monde Arabe",48.849049,2.35561,,1,,Europe/Paris,,OIF, +OIF:SA:59:3749640,1,"Marcadet",48.890145,2.345669,,1,,Europe/Paris,,OIF, +OIF:SA:59:3749641,1,"Custine / Ramey",48.888887,2.34618,,1,,Europe/Paris,,OIF, +OIF:SA:59:3749642,1,"Custine / Mont Cenis",48.88984,2.343318,,1,,Europe/Paris,,OIF, +OIF:SA:59:3749646,1,"Lamarck / Mont Cenis",48.889103,2.34267,,1,,Europe/Paris,,OIF, +OIF:SA:59:3749647,1,"Lamarck / Becquerel",48.888366,2.344019,,1,,Europe/Paris,,OIF, +OIF:SA:59:3749648,1,"Chevalier de la Barre",48.887161,2.344428,,1,,Europe/Paris,,OIF, +OIF:SA:59:3749649,1,"Utrillo",48.886236,2.343869,,1,,Europe/Paris,,OIF, +OIF:SA:59:3749650,1,"Funiculaire",48.885903,2.342888,,1,,Europe/Paris,,OIF, +OIF:SA:59:3749651,1,"Place du Tertre / Norvins",48.886676,2.340401,,1,,Europe/Paris,,OIF, +OIF:SA:59:3749653,1,"Mont Cenis / Cortot",48.887386,2.341566,,1,,Europe/Paris,,OIF, +OIF:SA:59:3749654,1,"Saules Cortot",48.8878,2.339945,,1,,Europe/Paris,,OIF, +OIF:SA:59:3749655,1,"Abreuvoir / Girardon",48.888393,2.337941,,1,,Europe/Paris,,OIF, +OIF:SA:59:3749657,1,"Gabrielle",48.886524,2.338595,,1,,Europe/Paris,,OIF, +OIF:SA:59:3749658,1,"Drevet",48.885589,2.340558,,1,,Europe/Paris,,OIF, +OIF:SA:59:3749659,1,"Chappe",48.885005,2.341621,,1,,Europe/Paris,,OIF, +OIF:SA:59:3749660,1,"Yvonne le Tac",48.884106,2.340898,,1,,Europe/Paris,,OIF, +OIF:SA:59:3749665,1,"Martyrs",48.882461,2.339794,,1,,Europe/Paris,,OIF, +OIF:SA:59:3749666,1,"Orsel",48.883387,2.339862,,1,,Europe/Paris,,OIF, +OIF:SA:59:3749667,1,"Durantin Burq",48.886245,2.336497,,1,,Europe/Paris,,OIF, +OIF:SA:59:3749668,1,"Tholoze",48.885948,2.334725,,1,,Europe/Paris,,OIF, +OIF:SA:59:3749669,1,"Tourlaque",48.887225,2.334057,,1,,Europe/Paris,,OIF, +OIF:SA:59:3749670,1,"N0 88 Rue Lepic",48.887297,2.336401,,1,,Europe/Paris,,OIF, +OIF:SA:59:3749671,1,"Moulin de la Galette",48.887288,2.337348,,1,,Europe/Paris,,OIF, +OIF:SA:59:3749672,1,"Les Vignes",48.888078,2.339767,,1,,Europe/Paris,,OIF, +OIF:SA:59:3749696,1,"Haussmann / Courcelles",48.874978,2.30877,,1,,Europe/Paris,,OIF, +OIF:SA:59:3749698,1,"Friedland / Haussmann",48.874883,2.305917,,1,,Europe/Paris,,OIF, +OIF:SA:59:3749705,1,"Église Saint-Ferdinand",48.879424,2.290835,,1,,Europe/Paris,,OIF, +OIF:SA:59:3749707,1,"Pereire / Porte Maillot",48.880038,2.288109,,1,,Europe/Paris,,OIF, +OIF:SA:59:3749709,1,"Général Koenig / Palais des Congrès",48.88103,2.285094,,1,,Europe/Paris,,OIF, +OIF:SA:59:3749711,1,"Montrosier / Parmentier",48.88181,2.280913,,1,,Europe/Paris,,OIF, +OIF:SA:59:3749712,1,"Chartres",48.882613,2.276837,,1,,Europe/Paris,,OIF, +OIF:SA:59:3749714,1,"Église Saint-Pierre",48.883699,2.271994,,1,,Europe/Paris,,OIF, +OIF:SA:59:3749716,1,"Sainte-Foy",48.88467,2.267834,,1,,Europe/Paris,,OIF, +OIF:SA:59:3749724,1,"Rue du Bois de Boulogne",48.881027,2.255057,,1,,Europe/Paris,,OIF, +OIF:SA:59:3749729,1,"Bagatelle",48.876967,2.249174,,1,,Europe/Paris,,OIF, +OIF:SA:59:3749733,1,"Montrosier - Parmentier",48.881819,2.279768,,1,,Europe/Paris,,OIF, +OIF:SA:59:3749743,1,"Jean Jaurès",48.880292,2.407845,,1,,Europe/Paris,,OIF, +OIF:SA:59:3749745,1,"Les Marronniers",48.881526,2.403527,,1,,Europe/Paris,,OIF, +OIF:SA:59:3749754,1,"Manin",48.882505,2.386113,,1,,Europe/Paris,,OIF, +OIF:SA:59:3749756,1,"Armand Carrel / Mairie du XIX",48.882421,2.382447,,1,,Europe/Paris,,OIF, +OIF:SA:59:3749758,1,"Rue de Meaux",48.882819,2.375041,,1,,Europe/Paris,,OIF, +OIF:SA:59:3749763,1,"Chapelle / Caillié",48.88457,2.364079,,1,,Europe/Paris,,OIF, +OIF:SA:59:3749772,1,"Paradis",48.875891,2.348173,,1,,Europe/Paris,,OIF, +OIF:SA:59:3749773,1,"Petites Écuries",48.873797,2.347819,,1,,Europe/Paris,,OIF, +OIF:SA:59:3749782,1,"Coquillère",48.86437,2.340297,,1,,Europe/Paris,,OIF, +OIF:SA:59:3749784,1,"Réaumur / Montmartre",48.868239,2.343513,,1,,Europe/Paris,,OIF, +OIF:SA:59:3749786,1,"Provence / Faubourg Montmartre",48.874067,2.342444,,1,,Europe/Paris,,OIF, +OIF:SA:59:3749792,1,"Philippe de Girard",48.884202,2.361885,,1,,Europe/Paris,,OIF, +OIF:SA:59:3749795,1,"Louise Thuliez",48.878123,2.396628,,1,,Europe/Paris,,OIF, +OIF:SA:59:3749884,1,"Cambronne / Vaugirard",48.840366,2.304359,,1,,Europe/Paris,,OIF, +OIF:SA:59:3749886,1,"Cambronne / Lecourbe",48.842609,2.302388,,1,,Europe/Paris,,OIF, +OIF:SA:59:3749887,1,"Mairie du 15ème",48.841907,2.299219,,1,,Europe/Paris,,OIF, +OIF:SA:59:3749889,1,"Péclet",48.843315,2.298241,,1,,Europe/Paris,,OIF, +OIF:SA:59:3749890,1,"Fondary",48.845364,2.298001,,1,,Europe/Paris,,OIF, +OIF:SA:59:3749895,1,"Joffre / Suffren",48.851477,2.301347,,1,,Europe/Paris,,OIF, +OIF:SA:59:3749902,1,"Pont de l'Alma",48.8622,2.301879,,1,,Europe/Paris,,OIF, +OIF:SA:59:3749906,1,"Montaigne / François 1er",48.866999,2.306274,,1,,Europe/Paris,,OIF, +OIF:SA:59:3749920,1,"Bucarest",48.88081,2.324655,,1,,Europe/Paris,,OIF, +OIF:SA:59:3749923,1,"Clichy / Caulaincourt",48.885104,2.330521,,1,,Europe/Paris,,OIF, +OIF:SA:59:3749924,1,"Damrémont / Caulaincourt",48.887285,2.332946,,1,,Europe/Paris,,OIF, +OIF:SA:59:3749926,1,"Square Caulaincourt",48.889525,2.335726,,1,,Europe/Paris,,OIF, +OIF:SA:59:3749941,1,"Général de Bollardiere",48.850964,2.300475,,1,,Europe/Paris,,OIF, +OIF:SA:59:3749942,1,"Miollis",48.845123,2.301991,,1,,Europe/Paris,,OIF, +OIF:SA:59:3749943,1,"Convention / Lecourbe",48.839182,2.291806,,1,,Europe/Paris,,OIF, +OIF:SA:59:3749944,1,"Duranton",48.83827,2.288877,,1,,Europe/Paris,,OIF, +OIF:SA:59:3749945,1,"Hameau",48.835529,2.28922,,1,,Europe/Paris,,OIF, +OIF:SA:59:3749946,1,"Boulevard Victor",48.833694,2.286737,,1,,Europe/Paris,,OIF, +OIF:SA:59:3749949,1,"Porte de Montmartre",48.899354,2.33503,,1,,Europe/Paris,,OIF, +OIF:SA:59:3749953,1,"Toulouse-Lautrec",48.90102,2.329026,,1,,Europe/Paris,,OIF, +OIF:SA:59:3749954,1,"Colisée",48.90101,2.324841,,1,,Europe/Paris,,OIF, +OIF:SA:59:3749955,1,"Touzet / Gaillard",48.901221,2.321944,,1,,Europe/Paris,,OIF, +OIF:SA:59:3749961,1,"Georges Boisseau",48.903548,2.317581,,1,,Europe/Paris,,OIF, +OIF:SA:59:3749963,1,"Fondation Roguet",48.906774,2.313381,,1,,Europe/Paris,,OIF, +OIF:SA:59:3749965,1,"Cimetière",48.908472,2.312917,,1,,Europe/Paris,,OIF, +OIF:SA:59:3749967,1,"Rue Pierre",48.910234,2.312923,,1,,Europe/Paris,,OIF, +OIF:SA:59:3749970,1,"Claude Debussy",48.909914,2.309869,,1,,Europe/Paris,,OIF, +OIF:SA:59:3749973,1,"Villeneuve / Général Leclerc",48.905843,2.308794,,1,,Europe/Paris,,OIF, +OIF:SA:59:3749986,1,"Citroën",48.904811,2.31557,,1,,Europe/Paris,,OIF, +OIF:SA:59:3749990,1,"Bois le Prêtre",48.899165,2.321556,,1,,Europe/Paris,,OIF, +OIF:SA:59:3749993,1,"Hôpital Bichat",48.898903,2.328856,,1,,Europe/Paris,,OIF, +OIF:SA:59:3749995,1,"Firmin Gemier",48.895385,2.330663,,1,,Europe/Paris,,OIF, +OIF:SA:59:3749998,1,"Coysevox",48.892473,2.330077,,1,,Europe/Paris,,OIF, +OIF:SA:59:3749999,1,"Hôpital Bretonneau",48.891287,2.330813,,1,,Europe/Paris,,OIF, +OIF:SA:59:3750000,1,"Villa Saint-Michel",48.889291,2.32821,,1,,Europe/Paris,,OIF, +OIF:SA:59:3750001,1,"Lycée Auguste Renoir",48.887755,2.328006,,1,,Europe/Paris,,OIF, +OIF:SA:59:3750002,1,"Ganneron / Dames",48.885517,2.325812,,1,,Europe/Paris,,OIF, +OIF:SA:59:3750004,1,"Lobligeois",48.886163,2.319025,,1,,Europe/Paris,,OIF, +OIF:SA:59:3750006,1,"Place de Levis",48.884131,2.314052,,1,,Europe/Paris,,OIF, +OIF:SA:59:3750007,1,"Tocqueville",48.887269,2.309186,,1,,Europe/Paris,,OIF, +OIF:SA:59:3750009,1,"Legendre",48.885578,2.315782,,1,,Europe/Paris,,OIF, +OIF:SA:59:3750011,1,"Truffaut",48.885543,2.321492,,1,,Europe/Paris,,OIF, +OIF:SA:59:3750012,1,"Nollet",48.887511,2.320511,,1,,Europe/Paris,,OIF, +OIF:SA:59:3750013,1,"Marche des Batignolles",48.889191,2.318398,,1,,Europe/Paris,,OIF, +OIF:SA:59:3750015,1,"Davy",48.890529,2.326011,,1,,Europe/Paris,,OIF, +OIF:SA:59:3750017,1,"Collège Mallarmé",48.893578,2.323112,,1,,Europe/Paris,,OIF, +OIF:SA:59:3750018,1,"Lantiez",48.895357,2.324215,,1,,Europe/Paris,,OIF, +OIF:SA:59:3750019,1,"Porte Pouchet",48.897263,2.323363,,1,,Europe/Paris,,OIF, +OIF:SA:59:3750020,1,"Frédéric Brunet",48.898584,2.326055,,1,,Europe/Paris,,OIF, +OIF:SA:59:3750023,1,"Duchesne / Bollaert",48.899603,2.373983,,1,,Europe/Paris,,OIF, +OIF:SA:59:3750028,1,"Radiguet",48.892729,2.369385,,1,,Europe/Paris,,OIF, +OIF:SA:59:3750030,1,"Maroc",48.887059,2.366847,,1,,Europe/Paris,,OIF, +OIF:SA:59:3750033,1,"Pajol - Département",48.886836,2.361368,,1,,Europe/Paris,,OIF, +OIF:SA:59:3750034,1,"Pajol",48.888813,2.362527,,1,,Europe/Paris,,OIF, +OIF:SA:59:3750035,1,"Pajol - Riquet",48.889846,2.363727,,1,,Europe/Paris,,OIF, +OIF:SA:59:3750037,1,"Curial / Archereau",48.889565,2.371509,,1,,Europe/Paris,,OIF, +OIF:SA:59:3750038,1,"Mathis",48.891434,2.372355,,1,,Europe/Paris,,OIF, +OIF:SA:59:3750039,1,"Curial / Crimée",48.893357,2.373243,,1,,Europe/Paris,,OIF, +OIF:SA:59:3750044,1,"Abeille",48.901574,2.36207,,1,,Europe/Paris,,OIF, +OIF:SA:59:3754201,1,"Dareau / Saint-Jacques",48.832123,2.33892,,1,,Europe/Paris,,OIF, +OIF:SA:59:3754202,1,"Glacière / Tolbiac",48.826405,2.34152,,1,,Europe/Paris,,OIF, +OIF:SA:59:3754209,1,"Parc Montsouris",48.824507,2.337745,,1,,Europe/Paris,,OIF, +OIF:SA:59:3754210,1,"Alésia / René Coty",48.827454,2.334973,,1,,Europe/Paris,,OIF, +OIF:SA:59:3754263,1,"Place de l'Abbé Georges Henocque",48.824015,2.353798,,1,,Europe/Paris,,OIF, +OIF:SA:59:3754264,1,"Bobillot",48.823889,2.348312,,1,,Europe/Paris,,OIF, +OIF:SA:59:3754265,1,"Rungis",48.822865,2.347386,,1,,Europe/Paris,,OIF, +OIF:SA:59:3754266,1,"Barrault",48.824627,2.34676,,1,,Europe/Paris,,OIF, +OIF:SA:59:3754267,1,"Vergniaud / Tolbiac",48.826074,2.34495,,1,,Europe/Paris,,OIF, +OIF:SA:59:3754270,1,"La Sibelle",48.824645,2.338512,,1,,Europe/Paris,,OIF, +OIF:SA:59:3754272,1,"Place Jules Henaffe",48.823813,2.331522,,1,,Europe/Paris,,OIF, +OIF:SA:59:3754276,1,"La Tombe Issoire",48.827818,2.331685,,1,,Europe/Paris,,OIF, +OIF:SA:59:3754277,1,"Douanier Rousseau",48.826038,2.33142,,1,,Europe/Paris,,OIF, +OIF:SA:59:3754278,1,"Père Corentin",48.825418,2.329596,,1,,Europe/Paris,,OIF, +OIF:SA:59:3754283,1,"Thomas Francine",48.82646,2.33858,,1,,Europe/Paris,,OIF, +OIF:SA:59:3754285,1,"Boussingault",48.825472,2.342786,,1,,Europe/Paris,,OIF, +OIF:SA:59:3754286,1,"Vergniaud",48.82519,2.345486,,1,,Europe/Paris,,OIF, +OIF:SA:59:3754287,1,"Place de Rungis",48.822416,2.346297,,1,,Europe/Paris,,OIF, +OIF:SA:59:3754318,1,"Fraysse",48.809986,2.342832,,1,,Europe/Paris,,OIF, +OIF:SA:59:3754319,1,"Benoit Malon",48.810867,2.338083,,1,,Europe/Paris,,OIF, +OIF:SA:59:3754326,1,"Général Leclerc / Thomas",48.810245,2.357957,,1,,Europe/Paris,,OIF, +OIF:SA:59:3754328,1,"Hôpital du Kremlin Bicêtre",48.809364,2.358385,,1,,Europe/Paris,,OIF, +OIF:SA:59:3754329,1,"Barnufles / Piscine",48.807243,2.353568,,1,,Europe/Paris,,OIF, +OIF:SA:59:3754330,1,"Benoit Malon - Martinets",48.805302,2.350485,,1,,Europe/Paris,,OIF, +OIF:SA:59:3754331,1,"Lycée Darius Milhaud / Benoit Malon",48.804089,2.349138,,1,,Europe/Paris,,OIF, +OIF:SA:59:3754332,1,"Léo Lagrange",48.802535,2.346756,,1,,Europe/Paris,,OIF, +OIF:SA:59:3754333,1,"Lycée Darius Milhaud / Charles Gide",48.805114,2.346015,,1,,Europe/Paris,,OIF, +OIF:SA:59:3754334,1,"Marcel Sembat - Collège Albert Cron",48.807702,2.349792,,1,,Europe/Paris,,OIF, +OIF:SA:59:3754335,1,"Bensérade - C.H.U. de Bicetre",48.810569,2.350364,,1,,Europe/Paris,,OIF, +OIF:SA:59:3754336,1,"Convention / Jean Jaurès",48.812308,2.353801,,1,,Europe/Paris,,OIF, +OIF:SA:59:3754337,1,"Mairie",48.812297,2.357513,,1,,Europe/Paris,,OIF, +OIF:SA:59:3754338,1,"Général Leclerc - 14 Juillet",48.813965,2.359333,,1,,Europe/Paris,,OIF, +OIF:SA:59:3755000,1,"Hôtel de Ville - Centre",48.806287,2.33728,,1,,Europe/Paris,,OIF, +OIF:SA:59:3755002,1,"Colonel Fabien",48.798643,2.340967,,1,,Europe/Paris,,OIF, +OIF:SA:59:3755003,1,"Quatre Chemins / Pauline Kergomard",48.800027,2.344021,,1,,Europe/Paris,,OIF, +OIF:SA:59:3755004,1,"Ricardo / le Plateau",48.802616,2.343954,,1,,Europe/Paris,,OIF, +OIF:SA:59:3755005,1,"Ricardo",48.802517,2.343328,,1,,Europe/Paris,,OIF, +OIF:SA:59:3755006,1,"4 Chemins",48.799997,2.343717,,1,,Europe/Paris,,OIF, +OIF:SA:59:3755007,1,"Colonnel Fabien",48.800018,2.338661,,1,,Europe/Paris,,OIF, +OIF:SA:59:3755008,1,"Maison du Grand Cèdre",48.802993,2.338289,,1,,Europe/Paris,,OIF, +OIF:SA:59:3755010,1,"Henri Barbusse",48.808898,2.338552,,1,,Europe/Paris,,OIF, +OIF:SA:59:3755013,1,"Maison des Gardes",48.802706,2.334307,,1,,Europe/Paris,,OIF, +OIF:SA:59:3755014,1,"Bibliothèque",48.804944,2.334402,,1,,Europe/Paris,,OIF, +OIF:SA:59:3755015,1,"Poste",48.80427,2.333055,,1,,Europe/Paris,,OIF, +OIF:SA:59:3755016,1,"Émile Raspail",48.800782,2.331586,,1,,Europe/Paris,,OIF, +OIF:SA:59:3755018,1,"Centre de Santé",48.803227,2.330184,,1,,Europe/Paris,,OIF, +OIF:SA:59:3755019,1,"Croix d'Arcueil",48.804943,2.327245,,1,,Europe/Paris,,OIF, +OIF:SA:59:3755022,1,"Chaperon Vert",48.810945,2.335776,,1,,Europe/Paris,,OIF, +OIF:SA:59:3757185,1,"Butte Chaumont",48.71073,2.264771,,1,,Europe/Paris,,OIF, +OIF:SA:59:3757187,1,"La Fontaine",48.70921,2.269398,,1,,Europe/Paris,,OIF, +OIF:SA:59:3757189,1,"Mairie",48.707652,2.273542,,1,,Europe/Paris,,OIF, +OIF:SA:59:3757191,1,"Petit Champlan",48.703872,2.280704,,1,,Europe/Paris,,OIF, +OIF:SA:59:3757193,1,"Route de Versailles N0 21-30",48.700001,2.288916,,1,,Europe/Paris,,OIF, +OIF:SA:59:3757201,1,"Barbusse / Baudot",48.720486,2.261905,,1,,Europe/Paris,,OIF, +OIF:SA:59:3757206,1,"Barbusse / Baudot",48.720459,2.261756,,1,,Europe/Paris,,OIF, +OIF:SA:59:3757211,1,"Pierre Curie",48.713213,2.260394,,1,,Europe/Paris,,OIF, +OIF:SA:59:3757225,1,"Canal de l'Yvette",48.696199,2.289449,,1,,Europe/Paris,,OIF, +OIF:SA:59:3757237,1,"La Rocade / Lycée",48.688269,2.295512,,1,,Europe/Paris,,OIF, +OIF:SA:59:3763984,1,"Carnot / Aristide Briand",48.79875,2.322634,,1,,Europe/Paris,,OIF, +OIF:SA:59:3763988,1,"Place de la Résistance / Charles de Gaulle",48.786334,2.317564,,1,,Europe/Paris,,OIF, +OIF:SA:59:3763989,1,"Rue du 8 Mai 1945",48.782787,2.315925,,1,,Europe/Paris,,OIF, +OIF:SA:59:3764017,1,"Place de France",48.733801,2.29002,,1,,Europe/Paris,,OIF, +OIF:SA:59:3764019,1,"Opéra / Théâtre",48.731749,2.290783,,1,,Europe/Paris,,OIF, +OIF:SA:59:3764026,1,"Cité Jardins",48.78996,2.31963,,1,,Europe/Paris,,OIF, +OIF:SA:59:3764028,1,"Marcel Bonnet",48.796917,2.322321,,1,,Europe/Paris,,OIF, +OIF:SA:59:3764089,1,"Marché",48.75235,2.302135,,1,,Europe/Paris,,OIF, +OIF:SA:59:3764098,1,"Collège la Fontaine",48.770311,2.316224,,1,,Europe/Paris,,OIF, +OIF:SA:59:3764104,1,"Les Ruelles",48.728538,2.253714,,1,,Europe/Paris,,OIF, +OIF:SA:59:3764110,1,"Georges Mandel",48.734383,2.257394,,1,,Europe/Paris,,OIF, +OIF:SA:59:3764112,1,"Boulevard du 1er Mai",48.73369,2.262531,,1,,Europe/Paris,,OIF, +OIF:SA:59:3764114,1,"Émile Zola",48.736647,2.262982,,1,,Europe/Paris,,OIF, +OIF:SA:59:3764128,1,"Rue des Grillons",48.756816,2.276412,,1,,Europe/Paris,,OIF, +OIF:SA:59:3764129,1,"Les Godets",48.75761,2.277852,,1,,Europe/Paris,,OIF, +OIF:SA:59:3764131,1,"Marcel Maillard",48.756578,2.281608,,1,,Europe/Paris,,OIF, +OIF:SA:59:3764133,1,"Julien Périn",48.75545,2.286714,,1,,Europe/Paris,,OIF, +OIF:SA:59:3764135,1,"François Molé",48.754348,2.291724,,1,,Europe/Paris,,OIF, +OIF:SA:59:3764141,1,"Rue des Grillons",48.755943,2.275448,,1,,Europe/Paris,,OIF, +OIF:SA:59:3764143,1,"D'Estienne d'Orves / Général Leclerc",48.746086,2.264817,,1,,Europe/Paris,,OIF, +OIF:SA:59:3764144,1,"Vallée de la Bièvre",48.73781,2.267615,,1,,Europe/Paris,,OIF, +OIF:SA:59:3764436,1,"Dareau / René Coty",48.830446,2.333829,,1,,Europe/Paris,,OIF, +OIF:SA:59:3764440,1,"Froidevaux / Gassendi",48.836189,2.327103,,1,,Europe/Paris,,OIF, +OIF:SA:59:3764448,1,"Armorique / Pasteur",48.840093,2.314739,,1,,Europe/Paris,,OIF, +OIF:SA:59:3764450,1,"Institut Pasteur",48.839466,2.310609,,1,,Europe/Paris,,OIF, +OIF:SA:59:3764455,1,"Alleray / la Quintinie",48.837115,2.302636,,1,,Europe/Paris,,OIF, +OIF:SA:59:3764467,1,"Émile Zola / Javel",48.846301,2.281319,,1,,Europe/Paris,,OIF, +OIF:SA:59:3764471,1,"Cauchy",48.84265,2.277326,,1,,Europe/Paris,,OIF, +OIF:SA:59:3764473,1,"Parc André Citroën",48.840265,2.277996,,1,,Europe/Paris,,OIF, +OIF:SA:59:3764477,1,"Rue Leblanc",48.839458,2.274423,,1,,Europe/Paris,,OIF, +OIF:SA:59:3764496,1,"Navarin",48.879716,2.338684,,1,,Europe/Paris,,OIF, +OIF:SA:59:3764514,1,"Pont Louis Philippe",48.854455,2.354407,,1,,Europe/Paris,,OIF, +OIF:SA:59:3764522,1,"Saint-Marcel - Jeanne d'Arc",48.838161,2.356512,,1,,Europe/Paris,,OIF, +OIF:SA:59:3764541,1,"Saint-Marcel / Jeanne d'Arc",48.838502,2.3566,,1,,Europe/Paris,,OIF, +OIF:SA:59:3764542,1,"Buffon / la Mosquée",48.841365,2.3559,,1,,Europe/Paris,,OIF, +OIF:SA:59:3764549,1,"Coquillière / les Halles",48.863336,2.342095,,1,,Europe/Paris,,OIF, +OIF:SA:59:3764622,1,"Auguste Comte",48.843966,2.338655,,1,,Europe/Paris,,OIF, +OIF:SA:59:3764623,1,"Val de Grâce",48.842018,2.33792,,1,,Europe/Paris,,OIF, +OIF:SA:59:3764625,1,"Hôpital Saint-Vincent de Paul",48.8373,2.335292,,1,,Europe/Paris,,OIF, +OIF:SA:59:3764642,1,"Cluny la Sorbonne",48.850071,2.342571,,1,,Europe/Paris,,OIF, +OIF:SA:59:3764700,1,"Mairie du 14ème",48.832113,2.325123,,1,,Europe/Paris,,OIF, +OIF:SA:59:3764702,1,"Château / Mairie du XIV",48.833668,2.324476,,1,,Europe/Paris,,OIF, +OIF:SA:59:3764704,1,"Losserand / Maine",48.836181,2.323336,,1,,Europe/Paris,,OIF, +OIF:SA:59:3764712,1,"Maine / Vaugirard",48.84598,2.318495,,1,,Europe/Paris,,OIF, +OIF:SA:59:3764714,1,"Breteuil",48.848561,2.31153,,1,,Europe/Paris,,OIF, +OIF:SA:59:3764715,1,"El Salvador",48.850904,2.311432,,1,,Europe/Paris,,OIF, +OIF:SA:59:3764719,1,"Duquesne / Lowendal",48.852653,2.308446,,1,,Europe/Paris,,OIF, +OIF:SA:59:3764727,1,"Pont des Invalides / Place de Finlande",48.862433,2.310782,,1,,Europe/Paris,,OIF, +OIF:SA:59:3764729,1,"Palais de la Découverte",48.864987,2.310154,,1,,Europe/Paris,,OIF, +OIF:SA:59:3764763,1,"Fontenoy / Unesco",48.851083,2.307026,,1,,Europe/Paris,,OIF, +OIF:SA:59:3764776,1,"Rue Cler",48.855577,2.307282,,1,,Europe/Paris,,OIF, +OIF:SA:59:3764818,1,"Saint-Jacques / Gay Lussac",48.843865,2.342271,,1,,Europe/Paris,,OIF, +OIF:SA:59:3764820,1,"Feuillantines",48.841667,2.343373,,1,,Europe/Paris,,OIF, +OIF:SA:59:3764822,1,"Berthollet / Vauquelin",48.840133,2.346033,,1,,Europe/Paris,,OIF, +OIF:SA:59:3764824,1,"Port Royal / Berthollet",48.83751,2.345306,,1,,Europe/Paris,,OIF, +OIF:SA:59:3764825,1,"Glacière / Arago",48.834998,2.345142,,1,,Europe/Paris,,OIF, +OIF:SA:59:3764838,1,"Amiral Mouchez / Charbonnel",48.822371,2.341969,,1,,Europe/Paris,,OIF, +OIF:SA:59:3764965,1,"Armorique / Musée Postal",48.840938,2.316454,,1,,Europe/Paris,,OIF, +OIF:SA:59:3764969,1,"Campagne Première",48.840656,2.333713,,1,,Europe/Paris,,OIF, +OIF:SA:59:3764997,1,"Place de Catalogne",48.83888,2.320009,,1,,Europe/Paris,,OIF, +OIF:SA:59:3765161,1,"Jouffroy / Tocqueville",48.886237,2.309193,,1,,Europe/Paris,,OIF, +OIF:SA:59:3765163,1,"Pereire / Tocqueville",48.887625,2.306814,,1,,Europe/Paris,,OIF, +OIF:SA:59:3765165,1,"Juliette Lamber",48.888317,2.304408,,1,,Europe/Paris,,OIF, +OIF:SA:59:3765171,1,"Victor Hugo - Jean Jaurès",48.895181,2.297282,,1,,Europe/Paris,,OIF, +OIF:SA:59:3765175,1,"Marjolin",48.893552,2.292376,,1,,Europe/Paris,,OIF, +OIF:SA:59:3765177,1,"Aristide Briand",48.89354,2.290641,,1,,Europe/Paris,,OIF, +OIF:SA:59:3765180,1,"Vaillant-Couturier",48.895887,2.287597,,1,,Europe/Paris,,OIF, +OIF:SA:59:3765181,1,"Baudin",48.897423,2.285871,,1,,Europe/Paris,,OIF, +OIF:SA:59:3765182,1,"Place Marie-Jeanne Bassot",48.897467,2.28305,,1,,Europe/Paris,,OIF, +OIF:SA:59:3765187,1,"Anatole France - Paul Vaillant-Couturier",48.895409,2.282316,,1,,Europe/Paris,,OIF, +OIF:SA:59:3765188,1,"Parc de la Planchette",48.896327,2.285722,,1,,Europe/Paris,,OIF, +OIF:SA:59:3765189,1,"Rouquier - Rivay",48.892554,2.290933,,1,,Europe/Paris,,OIF, +OIF:SA:59:3765202,1,"Monge / Mutualité",48.848407,2.349747,,1,,Europe/Paris,,OIF, +OIF:SA:59:3765203,1,"Collège de France",48.849325,2.346234,,1,,Europe/Paris,,OIF, +OIF:SA:59:3765211,1,"Varenne / Raspail",48.853755,2.326187,,1,,Europe/Paris,,OIF, +OIF:SA:59:3765224,1,"Jean Nicot / Église Américaine",48.862483,2.305848,,1,,Europe/Paris,,OIF, +OIF:SA:59:3765237,1,"Sablons / Cortambert",48.863616,2.281784,,1,,Europe/Paris,,OIF, +OIF:SA:59:3765243,1,"Octave Feuillet",48.863097,2.269586,,1,,Europe/Paris,,OIF, +OIF:SA:59:3765245,1,"Porte de la Muette",48.863032,2.26856,,1,,Europe/Paris,,OIF, +OIF:SA:59:3765248,1,"Saint-Guillaume",48.854627,2.329496,,1,,Europe/Paris,,OIF, +OIF:SA:59:3765259,1,"Parc de Choisy",48.827681,2.358754,,1,,Europe/Paris,,OIF, +OIF:SA:59:3765260,1,"Choisy / Tolbiac",48.826287,2.361115,,1,,Europe/Paris,,OIF, +OIF:SA:59:3765261,1,"Tolbiac / Baudricourt",48.826758,2.364661,,1,,Europe/Paris,,OIF, +OIF:SA:59:3765263,1,"Patay / Tolbiac",48.82772,2.371206,,1,,Europe/Paris,,OIF, +OIF:SA:59:3765265,1,"Pont de Tolbiac",48.831953,2.379183,,1,,Europe/Paris,,OIF, +OIF:SA:59:3765266,1,"Parc de Bercy",48.83383,2.382717,,1,,Europe/Paris,,OIF, +OIF:SA:59:3765268,1,"Charenton / Wattignies",48.83738,2.390676,,1,,Europe/Paris,,OIF, +OIF:SA:59:3765273,1,"Hôpital Trousseau",48.842138,2.405035,,1,,Europe/Paris,,OIF, +OIF:SA:59:3765276,1,"La Plaine",48.850724,2.406374,,1,,Europe/Paris,,OIF, +OIF:SA:59:3765278,1,"Orteaux",48.856271,2.404897,,1,,Europe/Paris,,OIF, +OIF:SA:59:3765280,1,"Ramus",48.86167,2.400225,,1,,Europe/Paris,,OIF, +OIF:SA:59:3765417,1,"Panthéon",48.846817,2.346125,,1,,Europe/Paris,,OIF, +OIF:SA:59:3765419,1,"Mairie du Ve / Panthéon",48.846637,2.344068,,1,,Europe/Paris,,OIF, +OIF:SA:59:3765423,1,"Sénat",48.849313,2.336738,,1,,Europe/Paris,,OIF, +OIF:SA:59:3765445,1,"Anjou / Chauveau Lagarde",48.872381,2.321619,,1,,Europe/Paris,,OIF, +OIF:SA:59:3765451,1,"Ruysdaël - Parc Monceau",48.877255,2.310329,,1,,Europe/Paris,,OIF, +OIF:SA:59:3765453,1,"Murillo",48.877838,2.305614,,1,,Europe/Paris,,OIF, +OIF:SA:59:3765456,1,"Wagram / Courcelles",48.881546,2.300369,,1,,Europe/Paris,,OIF, +OIF:SA:59:3781626,1,"Barbès / Ory",48.817257,2.32893,,1,,Europe/Paris,,OIF, +OIF:SA:59:3781628,1,"Chaperon Vert / Lénine",48.816583,2.335436,,1,,Europe/Paris,,OIF, +OIF:SA:59:3781631,1,"Mairie",48.815367,2.349304,,1,,Europe/Paris,,OIF, +OIF:SA:59:3781633,1,"Raspail / Jean Jaurès",48.813931,2.350288,,1,,Europe/Paris,,OIF, +OIF:SA:59:3781640,1,"Roger Salengro / Fontainebleau",48.814744,2.361044,,1,,Europe/Paris,,OIF, +OIF:SA:59:3781641,1,"Verdun / Marques",48.817505,2.367936,,1,,Europe/Paris,,OIF, +OIF:SA:59:3781642,1,"Jules Ferry",48.81735,2.372625,,1,,Europe/Paris,,OIF, +OIF:SA:59:3781661,1,"Pont d'Ivry / Rive Gauche",48.814549,2.40702,,1,,Europe/Paris,,OIF, +OIF:SA:59:3781669,1,"Chinagora",48.814626,2.4123,,1,,Europe/Paris,,OIF, +OIF:SA:59:3781670,1,"Paul Vaillant Couturier / Westermeyer",48.819035,2.396512,,1,,Europe/Paris,,OIF, +OIF:SA:59:3781671,1,"Jean-Jacques Rousseau",48.81781,2.393537,,1,,Europe/Paris,,OIF, +OIF:SA:59:3781672,1,"Hôpital Jean Rostand",48.812922,2.37929,,1,,Europe/Paris,,OIF, +OIF:SA:59:3781673,1,"Maurice Thorez-Barbes",48.818455,2.374306,,1,,Europe/Paris,,OIF, +OIF:SA:59:3781674,1,"Verdun / Châteaudun",48.816408,2.36721,,1,,Europe/Paris,,OIF, +OIF:SA:59:3781675,1,"Avenue du Docteur Lacroix / Mairie",48.81393,2.357877,,1,,Europe/Paris,,OIF, +OIF:SA:59:3781676,1,"Henri Gautherot",48.815414,2.345058,,1,,Europe/Paris,,OIF, +OIF:SA:59:3781678,1,"Chaperon Vert - Lénine",48.816817,2.334129,,1,,Europe/Paris,,OIF, +OIF:SA:59:3785918,1,"Saint-Just",48.809143,2.388731,,1,,Europe/Paris,,OIF, +OIF:SA:59:3785920,1,"Parmentier",48.80694,2.392008,,1,,Europe/Paris,,OIF, +OIF:SA:59:3785922,1,"Hôpital Charles Foix",48.805456,2.393836,,1,,Europe/Paris,,OIF, +OIF:SA:59:3785923,1,"Félix Faure",48.802564,2.397344,,1,,Europe/Paris,,OIF, +OIF:SA:59:3785930,1,"Jean Jaurès",48.794083,2.400605,,1,,Europe/Paris,,OIF, +OIF:SA:59:3785932,1,"Danielle Casanova",48.789507,2.402695,,1,,Europe/Paris,,OIF, +OIF:SA:59:3785934,1,"Paul Froment",48.78641,2.40231,,1,,Europe/Paris,,OIF, +OIF:SA:59:3785940,1,"Anselme Rondenay",48.780415,2.403567,,1,,Europe/Paris,,OIF, +OIF:SA:59:3785942,1,"Cité Balzac",48.778221,2.405121,,1,,Europe/Paris,,OIF, +OIF:SA:59:3785944,1,"Descartes",48.777617,2.408629,,1,,Europe/Paris,,OIF, +OIF:SA:59:3785946,1,"Léon Geffroy",48.775814,2.409103,,1,,Europe/Paris,,OIF, +OIF:SA:59:3785955,1,"Pont de Choisy / Piscine",48.76622,2.414895,,1,,Europe/Paris,,OIF, +OIF:SA:59:3785962,1,"Usine Renault",48.756127,2.426734,,1,,Europe/Paris,,OIF, +OIF:SA:59:3785976,1,"Félix Faure",48.802259,2.397479,,1,,Europe/Paris,,OIF, +OIF:SA:59:3786064,1,"Hautes Bruyères",48.793475,2.344088,,1,,Europe/Paris,,OIF, +OIF:SA:59:3786065,1,"Lunain",48.789098,2.343408,,1,,Europe/Paris,,OIF, +OIF:SA:59:3786066,1,"Convention - Jaurès",48.812088,2.351752,,1,,Europe/Paris,,OIF, +OIF:SA:59:3786067,1,"Bensérade - C.H.U. de Bicetre",48.810875,2.349969,,1,,Europe/Paris,,OIF, +OIF:SA:59:3786068,1,"Cité des Hbm",48.807954,2.347098,,1,,Europe/Paris,,OIF, +OIF:SA:59:3786072,1,"Colonel Fabien",48.79761,2.343055,,1,,Europe/Paris,,OIF, +OIF:SA:59:3786073,1,"Hautes Bruyères",48.793232,2.343843,,1,,Europe/Paris,,OIF, +OIF:SA:59:3786074,1,"Lunain",48.788226,2.342836,,1,,Europe/Paris,,OIF, +OIF:SA:59:3786075,1,"Belvédère",48.784397,2.341435,,1,,Europe/Paris,,OIF, +OIF:SA:59:3786077,1,"Eugène Varlin",48.781216,2.341407,,1,,Europe/Paris,,OIF, +OIF:SA:59:3786078,1,"De Gaulle / Gounod / Tabanou",48.780483,2.341312,,1,,Europe/Paris,,OIF, +OIF:SA:59:3786089,1,"Allée du Plateau",48.763069,2.333731,,1,,Europe/Paris,,OIF, +OIF:SA:59:3786091,1,"La Fresnaie",48.759936,2.331692,,1,,Europe/Paris,,OIF, +OIF:SA:59:3786093,1,"Rond-Point Roosevelt",48.758112,2.329802,,1,,Europe/Paris,,OIF, +OIF:SA:59:3786099,1,"Pierre Brossolette",48.814927,2.360028,,1,,Europe/Paris,,OIF, +OIF:SA:59:3786104,1,"Cité des H.B.M.",48.807936,2.347778,,1,,Europe/Paris,,OIF, +OIF:SA:59:3786105,1,"Trois Communes",48.805195,2.345178,,1,,Europe/Paris,,OIF, +OIF:SA:59:3786114,1,"Trois Communes",48.805429,2.344689,,1,,Europe/Paris,,OIF, +OIF:SA:59:3786128,1,"Jean Mermoz / Général de Gaulle",48.772731,2.339498,,1,,Europe/Paris,,OIF, +OIF:SA:59:3786130,1,"Croix du Sud / Centre de Pneumologie",48.769922,2.337728,,1,,Europe/Paris,,OIF, +OIF:SA:59:3786132,1,"Louis Blériot / Cimetière Intercommunal",48.767855,2.336504,,1,,Europe/Paris,,OIF, +OIF:SA:59:3786294,1,"Centre Ville",48.794936,2.334375,,1,,Europe/Paris,,OIF, +OIF:SA:59:3786297,1,"Les Lumières",48.796423,2.325369,,1,,Europe/Paris,,OIF, +OIF:SA:59:3786298,1,"Paul Bert",48.793026,2.330009,,1,,Europe/Paris,,OIF, +OIF:SA:59:3786299,1,"Jean Jaurès",48.791713,2.327778,,1,,Europe/Paris,,OIF, +OIF:SA:59:3786301,1,"Aristide Briand",48.790373,2.321208,,1,,Europe/Paris,,OIF, +OIF:SA:59:3786302,1,"Cité Jardins / Victor Hugo",48.789502,2.322759,,1,,Europe/Paris,,OIF, +OIF:SA:59:3786303,1,"Cité Jardins / Pierre Curie",48.788046,2.322079,,1,,Europe/Paris,,OIF, +OIF:SA:59:3786304,1,"Piscine",48.786006,2.327412,,1,,Europe/Paris,,OIF, +OIF:SA:59:3786305,1,"Place Edouard Herriot",48.78588,2.329833,,1,,Europe/Paris,,OIF, +OIF:SA:59:3786307,1,"RPA le Moulin",48.790159,2.335885,,1,,Europe/Paris,,OIF, +OIF:SA:59:3786326,1,"Blum / Saussaies",48.787008,2.337286,,1,,Europe/Paris,,OIF, +OIF:SA:59:3786327,1,"Le Coteau / Courbet",48.786168,2.341285,,1,,Europe/Paris,,OIF, +OIF:SA:59:3786328,1,"Le Coteau / Lunain",48.788766,2.340265,,1,,Europe/Paris,,OIF, +OIF:SA:59:3786329,1,"Le Coteau / Pléiade",48.789431,2.33949,,1,,Europe/Paris,,OIF, +OIF:SA:59:3786330,1,"Le Coteau / Panorama",48.792963,2.342225,,1,,Europe/Paris,,OIF, +OIF:SA:59:3786331,1,"Le Coteau / Défait",48.796953,2.341191,,1,,Europe/Paris,,OIF, +OIF:SA:59:3786332,1,"La Citadelle",48.797996,2.338144,,1,,Europe/Paris,,OIF, +OIF:SA:59:3786333,1,"Saint-Joseph",48.798499,2.334117,,1,,Europe/Paris,,OIF, +OIF:SA:59:3807581,1,"Jacob",48.85607,2.332901,,1,,Europe/Paris,,OIF, +OIF:SA:59:3807587,1,"Bac / Saint-Placide",48.849738,2.322933,,1,,Europe/Paris,,OIF, +OIF:SA:59:3807595,1,"Abbé Groult",48.839531,2.297454,,1,,Europe/Paris,,OIF, +OIF:SA:59:3807599,1,"Lycée Louis Armand",48.83727,2.284365,,1,,Europe/Paris,,OIF, +OIF:SA:59:3807602,1,"Louis Armand",48.832333,2.278475,,1,,Europe/Paris,,OIF, +OIF:SA:59:3807604,1,"Frères Voisin",48.828686,2.273619,,1,,Europe/Paris,,OIF, +OIF:SA:59:3807612,1,"Vaugirard / Croix Nivert",48.834334,2.291025,,1,,Europe/Paris,,OIF, +OIF:SA:59:3807613,1,"Hôpital de Vaugirard",48.835584,2.293134,,1,,Europe/Paris,,OIF, +OIF:SA:59:3811225,1,"Magenta / Maubeuge",48.880393,2.351554,,1,,Europe/Paris,,OIF, +OIF:SA:59:3811226,1,"Condorcet",48.879333,2.348065,,1,,Europe/Paris,,OIF, +OIF:SA:59:3811227,1,"Maubeuge / Rochechouart",48.878592,2.345067,,1,,Europe/Paris,,OIF, +OIF:SA:59:3811233,1,"Capucines / Caumartin",48.87018,2.329535,,1,,Europe/Paris,,OIF, +OIF:SA:59:3811252,1,"Monttessuy",48.858881,2.298236,,1,,Europe/Paris,,OIF, +OIF:SA:59:3811256,1,"Champ de Mars / Suffren",48.854872,2.295907,,1,,Europe/Paris,,OIF, +OIF:SA:59:3811258,1,"Desaix",48.8532,2.293419,,1,,Europe/Paris,,OIF, +OIF:SA:59:3811262,1,"Rue Rouelle",48.849774,2.289929,,1,,Europe/Paris,,OIF, +OIF:SA:59:3811264,1,"Théâtre",48.84856,2.288902,,1,,Europe/Paris,,OIF, +OIF:SA:59:3811268,1,"Convention - Boucicaut",48.842721,2.284066,,1,,Europe/Paris,,OIF, +OIF:SA:59:3811273,1,"Balard / Lecourbe",48.836361,2.281044,,1,,Europe/Paris,,OIF, +OIF:SA:59:3811281,1,"Saint-Charles / Balard",48.838715,2.27874,,1,,Europe/Paris,,OIF, +OIF:SA:59:3811282,1,"Rond-Point Saint-Charles",48.841826,2.281446,,1,,Europe/Paris,,OIF, +OIF:SA:59:3811283,1,"Docteur Finlay",48.851841,2.290152,,1,,Europe/Paris,,OIF, +OIF:SA:59:3812936,1,"Volontaires / Lecourbe",48.843965,2.306921,,1,,Europe/Paris,,OIF, +OIF:SA:59:3812948,1,"Pont de Grenelle / Place Fernand Forest",48.848962,2.282167,,1,,Europe/Paris,,OIF, +OIF:SA:59:3812950,1,"Pont de Grenelle / Maurice Bourdet",48.850996,2.278944,,1,,Europe/Paris,,OIF, +OIF:SA:59:3812955,1,"Place du Docteur Hayem / Radio France",48.852662,2.275837,,1,,Europe/Paris,,OIF, +OIF:SA:59:3812971,1,"Guynemer / Vavin",48.844669,2.332947,,1,,Europe/Paris,,OIF, +OIF:SA:59:3812973,1,"Bréa / Notre-Dame des Champs",48.843797,2.330233,,1,,Europe/Paris,,OIF, +OIF:SA:59:3812980,1,"Oudinot",48.849368,2.315157,,1,,Europe/Paris,,OIF, +OIF:SA:59:3812990,1,"Général Détrie",48.85321,2.297886,,1,,Europe/Paris,,OIF, +OIF:SA:59:3812995,1,"Varsovie",48.86118,2.291437,,1,,Europe/Paris,,OIF, +OIF:SA:59:3812999,1,"Lübeck",48.865768,2.2924,,1,,Europe/Paris,,OIF, +OIF:SA:59:3813003,1,"Lauriston",48.869232,2.289359,,1,,Europe/Paris,,OIF, +OIF:SA:59:3813006,1,"Foch",48.871787,2.284813,,1,,Europe/Paris,,OIF, +OIF:SA:59:3813008,1,"Alphand",48.874289,2.284164,,1,,Europe/Paris,,OIF, +OIF:SA:59:3813013,1,"Parmentier",48.880461,2.279245,,1,,Europe/Paris,,OIF, +OIF:SA:59:3813021,1,"Château",48.888059,2.263907,,1,,Europe/Paris,,OIF, +OIF:SA:59:3813023,1,"La Saussaye - d'Argenson",48.888892,2.26297,,1,,Europe/Paris,,OIF, +OIF:SA:59:3813024,1,"Perronet",48.889742,2.265592,,1,,Europe/Paris,,OIF, +OIF:SA:59:3813026,1,"Bineau / la Saussaye",48.892502,2.269102,,1,,Europe/Paris,,OIF, +OIF:SA:59:3813027,1,"Hôpital Américain",48.892942,2.273759,,1,,Europe/Paris,,OIF, +OIF:SA:59:3813029,1,"Bineau - Château",48.890684,2.270291,,1,,Europe/Paris,,OIF, +OIF:SA:59:3813031,1,"Rue de l'Église",48.885387,2.264174,,1,,Europe/Paris,,OIF, +OIF:SA:59:3813036,1,"Général Détrie",48.852626,2.298459,,1,,Europe/Paris,,OIF, +OIF:SA:59:3813095,1,"Nicolaï",48.835753,2.393604,,1,,Europe/Paris,,OIF, +OIF:SA:59:3813099,1,"Porte de Reuilly",48.83424,2.400348,,1,,Europe/Paris,,OIF, +OIF:SA:59:3813101,1,"Wattignies / Gravelle",48.835567,2.397518,,1,,Europe/Paris,,OIF, +OIF:SA:59:3813109,1,"Bac / Babylone",48.85176,2.324158,,1,,Europe/Paris,,OIF, +OIF:SA:59:3813110,1,"Vaneau - Babylone",48.851777,2.318615,,1,,Europe/Paris,,OIF, +OIF:SA:59:3813124,1,"Vauban / Hôtel des Invalides",48.853511,2.312139,,1,,Europe/Paris,,OIF, +OIF:SA:59:3813136,1,"Bassano",48.870349,2.297812,,1,,Europe/Paris,,OIF, +OIF:SA:59:3813142,1,"Pierre Demours",48.881273,2.295542,,1,,Europe/Paris,,OIF, +OIF:SA:59:3813161,1,"Versailles / Chardon Lagache",48.839196,2.261965,,1,,Europe/Paris,,OIF, +OIF:SA:59:3813167,1,"Lycée Claude Bernard",48.841869,2.256092,,1,,Europe/Paris,,OIF, +OIF:SA:59:3813169,1,"Porte Molitor",48.84526,2.25656,,1,,Europe/Paris,,OIF, +OIF:SA:59:3813179,1,"Ernest Hébert",48.860723,2.266824,,1,,Europe/Paris,,OIF, +OIF:SA:59:3813185,1,"Longchamp",48.868739,2.273414,,1,,Europe/Paris,,OIF, +OIF:SA:59:3813189,1,"Marbeau",48.875168,2.279428,,1,,Europe/Paris,,OIF, +OIF:SA:59:3813191,1,"Porte Maillot / Malakoff",48.876369,2.282302,,1,,Europe/Paris,,OIF, +OIF:SA:59:3813195,1,"Porte Maillot / Pershing",48.880518,2.283946,,1,,Europe/Paris,,OIF, +OIF:SA:59:3813198,1,"Porte de Villiers",48.883643,2.288447,,1,,Europe/Paris,,OIF, +OIF:SA:59:3864893,1,"Verdun - Hautes Bruyères",48.790984,2.353705,,1,,Europe/Paris,,OIF, +OIF:SA:59:3864898,1,"Les Lozaits",48.784516,2.354741,,1,,Europe/Paris,,OIF, +OIF:SA:59:3864901,1,"Les Dahlias",48.777462,2.354823,,1,,Europe/Paris,,OIF, +OIF:SA:59:3864905,1,"Mairie",48.776689,2.341461,,1,,Europe/Paris,,OIF, +OIF:SA:59:3864906,1,"Lycée Pauline Roland",48.772857,2.340169,,1,,Europe/Paris,,OIF, +OIF:SA:59:3864913,1,"Parc des Sports",48.76377,2.339196,,1,,Europe/Paris,,OIF, +OIF:SA:59:3864915,1,"Marche de Rungis - Entrée E1",48.760512,2.341535,,1,,Europe/Paris,,OIF, +OIF:SA:59:3864917,1,"Le Delta",48.758404,2.344134,,1,,Europe/Paris,,OIF, +OIF:SA:59:3864920,1,"Les Closeaux",48.755649,2.34655,,1,,Europe/Paris,,OIF, +OIF:SA:59:3864921,1,"Les Antes",48.752534,2.345435,,1,,Europe/Paris,,OIF, +OIF:SA:59:3864923,1,"Place Louis XIII",48.750476,2.347338,,1,,Europe/Paris,,OIF, +OIF:SA:59:3864925,1,"Mairie",48.747644,2.349179,,1,,Europe/Paris,,OIF, +OIF:SA:59:3864934,1,"Général de Gaulle",48.7491,2.35096,,1,,Europe/Paris,,OIF, +OIF:SA:59:3864935,1,"Mairie",48.770543,2.348418,,1,,Europe/Paris,,OIF, +OIF:SA:59:3864936,1,"Les Coquettes",48.803423,2.358526,,1,,Europe/Paris,,OIF, +OIF:SA:59:3864937,1,"Chastenet de Géry",48.806155,2.357996,,1,,Europe/Paris,,OIF, +OIF:SA:59:3877769,1,"Pont de Neuilly / Rive Gauche",48.887154,2.253641,,1,,Europe/Paris,,OIF, +OIF:SA:59:3877772,1,"Soljénitsyne",48.884029,2.248886,,1,,Europe/Paris,,OIF, +OIF:SA:59:3877775,1,"Paul Lafargue",48.885604,2.246546,,1,,Europe/Paris,,OIF, +OIF:SA:59:3877777,1,"Rousselle",48.886128,2.243492,,1,,Europe/Paris,,OIF, +OIF:SA:59:3877784,1,"Craïova",48.886072,2.221003,,1,,Europe/Paris,,OIF, +OIF:SA:59:3877785,1,"Les Fontenelles",48.887171,2.221191,,1,,Europe/Paris,,OIF, +OIF:SA:59:3877792,1,"La Source",48.886751,2.205139,,1,,Europe/Paris,,OIF, +OIF:SA:59:3877797,1,"Maréchal Foch",48.888212,2.192695,,1,,Europe/Paris,,OIF, +OIF:SA:59:3877799,1,"Les Goulvents",48.887842,2.188212,,1,,Europe/Paris,,OIF, +OIF:SA:59:3877801,1,"Rue du Mans",48.888197,2.184688,,1,,Europe/Paris,,OIF, +OIF:SA:59:3877802,1,"Cité du Vieux Pont",48.890026,2.181105,,1,,Europe/Paris,,OIF, +OIF:SA:59:3877803,1,"Pereire",48.889718,2.179178,,1,,Europe/Paris,,OIF, +OIF:SA:59:3877806,1,"D'Estienne d'Orves",48.887283,2.179621,,1,,Europe/Paris,,OIF, +OIF:SA:59:3877807,1,"Rue du Mans",48.887415,2.184064,,1,,Europe/Paris,,OIF, +OIF:SA:59:3887749,1,"Bibliothèque Nationale de France",48.834526,2.373413,,1,,Europe/Paris,,OIF, +OIF:SA:59:3887755,1,"Cité de la Mode et du Design",48.840477,2.368842,,1,,Europe/Paris,,OIF, +OIF:SA:59:3887758,1,"Buffon / Jardin des Plantes",48.842115,2.359386,,1,,Europe/Paris,,OIF, +OIF:SA:59:3887764,1,"Lycée Henri IV",48.846183,2.348916,,1,,Europe/Paris,,OIF, +OIF:SA:59:3887790,1,"Brancion / Vouillé",48.834687,2.305092,,1,,Europe/Paris,,OIF, +OIF:SA:59:3887792,1,"Brancion / Morillons",48.832271,2.302612,,1,,Europe/Paris,,OIF, +OIF:SA:59:3887793,1,"Morillons / Dantzig",48.83311,2.298643,,1,,Europe/Paris,,OIF, +OIF:SA:59:3887797,1,"Théâtre de la Plaine / Guillaumat",48.828183,2.293215,,1,,Europe/Paris,,OIF, +OIF:SA:59:3887801,1,"Avenue Marcel Martinie",48.823374,2.292675,,1,,Europe/Paris,,OIF, +OIF:SA:59:3887808,1,"Place Charles Vallin",48.835335,2.30256,,1,,Europe/Paris,,OIF, +OIF:SA:59:3893364,1,"Monge / Claude Bernard",48.838811,2.350511,,1,,Europe/Paris,,OIF, +OIF:SA:59:3893367,1,"Banquier",48.834216,2.353651,,1,,Europe/Paris,,OIF, +OIF:SA:59:3893372,1,"Les Alpes",48.831797,2.359402,,1,,Europe/Paris,,OIF, +OIF:SA:59:3893376,1,"Clisson",48.831171,2.366501,,1,,Europe/Paris,,OIF, +OIF:SA:59:3893378,1,"Jeanne d'Arc / Église de la Gare",48.829193,2.369168,,1,,Europe/Paris,,OIF, +OIF:SA:59:3893382,1,"Oudiné",48.82632,2.373427,,1,,Europe/Paris,,OIF, +OIF:SA:59:3893388,1,"Claude Régaud",48.821709,2.373206,,1,,Europe/Paris,,OIF, +OIF:SA:59:3893391,1,"Masséna / Darmesteter",48.823237,2.374895,,1,,Europe/Paris,,OIF, +OIF:SA:59:3893397,1,"Pont des Arts / Quai de Conti",48.857692,2.337464,,1,,Europe/Paris,,OIF, +OIF:SA:59:3893400,1,"Petits Champs / Danielle Casanova",48.868181,2.33354,,1,,Europe/Paris,,OIF, +OIF:SA:59:3893430,1,"Michelet",48.842503,2.334693,,1,,Europe/Paris,,OIF, +OIF:SA:59:3893439,1,"Pascal",48.835528,2.34792,,1,,Europe/Paris,,OIF, +OIF:SA:59:3893449,1,"Institut Dentaire",48.830287,2.35917,,1,,Europe/Paris,,OIF, +OIF:SA:59:3893451,1,"Lycée Claude Monet",48.827208,2.362933,,1,,Europe/Paris,,OIF, +OIF:SA:59:3893458,1,"Marcel Duchamp",48.824946,2.369833,,1,,Europe/Paris,,OIF, +OIF:SA:59:3908815,1,"Mairie",48.914294,2.381745,,1,,Europe/Paris,,OIF, +OIF:SA:59:3908817,1,"Heurtault",48.917196,2.37748,,1,,Europe/Paris,,OIF, +OIF:SA:59:3908819,1,"Canal",48.915309,2.370838,,1,,Europe/Paris,,OIF, +OIF:SA:59:3908824,1,"Saint-Gobain",48.912646,2.366302,,1,,Europe/Paris,,OIF, +OIF:SA:59:3909005,1,"Bellevue - Vildé",48.789022,2.280306,,1,,Europe/Paris,,OIF, +OIF:SA:59:3909007,1,"Abbé Grandjean",48.787073,2.283484,,1,,Europe/Paris,,OIF, +OIF:SA:59:3909008,1,"Pierre Bonnard",48.78416,2.281657,,1,,Europe/Paris,,OIF, +OIF:SA:59:3909015,1,"Les Blagis",48.785453,2.302344,,1,,Europe/Paris,,OIF, +OIF:SA:59:3909017,1,"École de la Roue",48.788867,2.2989,,1,,Europe/Paris,,OIF, +OIF:SA:59:3909018,1,"Centre Commercial Scarron",48.791788,2.29732,,1,,Europe/Paris,,OIF, +OIF:SA:59:3909022,1,"Cms Centre Municipal de Santé",48.789124,2.287868,,1,,Europe/Paris,,OIF, +OIF:SA:59:3909023,1,"Carnot / Jean Jaurès",48.790741,2.284788,,1,,Europe/Paris,,OIF, +OIF:SA:59:3909025,1,"André Salel",48.793661,2.28414,,1,,Europe/Paris,,OIF, +OIF:SA:59:3909026,1,"Pervenches",48.794873,2.280544,,1,,Europe/Paris,,OIF, +OIF:SA:59:3909027,1,"Jean Monnet",48.793236,2.277757,,1,,Europe/Paris,,OIF, +OIF:SA:59:3909028,1,"Stade du Panorama",48.791355,2.273261,,1,,Europe/Paris,,OIF, +OIF:SA:59:3909032,1,"Centre d'Arts Plastiques - Albert Chanot",48.812608,2.266263,,1,,Europe/Paris,,OIF, +OIF:SA:59:3909033,1,"Gymnase Condorcet",48.81164,2.263427,,1,,Europe/Paris,,OIF, +OIF:SA:59:3909035,1,"Pont d'Amour / Hôpital Percy",48.812657,2.258431,,1,,Europe/Paris,,OIF, +OIF:SA:59:3909037,1,"Fleury",48.810919,2.257864,,1,,Europe/Paris,,OIF, +OIF:SA:59:3909039,1,"Vallée du Bois / Lily",48.808844,2.255436,,1,,Europe/Paris,,OIF, +OIF:SA:59:3909042,1,"Vallée du Bois",48.806737,2.254755,,1,,Europe/Paris,,OIF, +OIF:SA:59:3909051,1,"Place Hunebelle",48.800456,2.261141,,1,,Europe/Paris,,OIF, +OIF:SA:59:3909052,1,"Mairie",48.799762,2.263215,,1,,Europe/Paris,,OIF, +OIF:SA:59:3909053,1,"Rue de Bièvres",48.799062,2.265247,,1,,Europe/Paris,,OIF, +OIF:SA:59:3909054,1,"Plessis / Piquet",48.798165,2.267691,,1,,Europe/Paris,,OIF, +OIF:SA:59:3909055,1,"Pierre Corby / Fontenay",48.799361,2.268934,,1,,Europe/Paris,,OIF, +OIF:SA:59:3909056,1,"Rue de Fontenay",48.798049,2.270051,,1,,Europe/Paris,,OIF, +OIF:SA:59:3909057,1,"Gymnase du Fort",48.796712,2.274243,,1,,Europe/Paris,,OIF, +OIF:SA:59:3909058,1,"Division Leclerc",48.794352,2.272307,,1,,Europe/Paris,,OIF, +OIF:SA:59:3909059,1,"Cimetière",48.794242,2.267478,,1,,Europe/Paris,,OIF, +OIF:SA:59:3909064,1,"Gymnase du Jardin Parisien",48.792497,2.259033,,1,,Europe/Paris,,OIF, +OIF:SA:59:3909066,1,"Rue du Parc",48.792279,2.255762,,1,,Europe/Paris,,OIF, +OIF:SA:59:3909068,1,"Jardin Parisien / Hôpital Antoine Béclère",48.790226,2.25319,,1,,Europe/Paris,,OIF, +OIF:SA:59:3909070,1,"Champagne",48.78752,2.249757,,1,,Europe/Paris,,OIF, +OIF:SA:59:3909074,1,"Cité de la Plaine",48.784577,2.244131,,1,,Europe/Paris,,OIF, +OIF:SA:59:3909077,1,"République",48.782421,2.234192,,1,,Europe/Paris,,OIF, +OIF:SA:59:3909079,1,"Maison de Quartier",48.78064,2.232884,,1,,Europe/Paris,,OIF, +OIF:SA:59:3909081,1,"Gaite",48.778833,2.232636,,1,,Europe/Paris,,OIF, +OIF:SA:59:3909082,1,"Maison de Quartier / André Charre",48.777815,2.230108,,1,,Europe/Paris,,OIF, +OIF:SA:59:3909084,1,"Pasteur",48.779964,2.230403,,1,,Europe/Paris,,OIF, +OIF:SA:59:3909089,1,"Eugène Beaujard",48.789266,2.252026,,1,,Europe/Paris,,OIF, +OIF:SA:59:3909091,1,"Savoie",48.798412,2.275166,,1,,Europe/Paris,,OIF, +OIF:SA:59:3909092,1,"Paul Padé",48.799237,2.271342,,1,,Europe/Paris,,OIF, +OIF:SA:59:3909093,1,"Pierre Corby",48.801184,2.2709,,1,,Europe/Paris,,OIF, +OIF:SA:59:3909094,1,"Saint-Christophe",48.799306,2.266376,,1,,Europe/Paris,,OIF, +OIF:SA:59:3909095,1,"Jean Georget",48.80844,2.25707,,1,,Europe/Paris,,OIF, +OIF:SA:59:3909096,1,"Rue des Tricots",48.811197,2.266605,,1,,Europe/Paris,,OIF, +OIF:SA:59:3909097,1,"Fleury / Tricots",48.813553,2.269392,,1,,Europe/Paris,,OIF, +OIF:SA:59:3909099,1,"Léonie Laporte",48.792048,2.275473,,1,,Europe/Paris,,OIF, +OIF:SA:59:3909100,1,"Tennis - Général Leclerc",48.791664,2.279248,,1,,Europe/Paris,,OIF, +OIF:SA:59:3909109,1,"Potiers",48.785882,2.294509,,1,,Europe/Paris,,OIF, +OIF:SA:59:3909115,1,"Georges Bailly",48.792587,2.294572,,1,,Europe/Paris,,OIF, +OIF:SA:59:3909117,1,"Théatre des Sources",48.791084,2.289322,,1,,Europe/Paris,,OIF, +OIF:SA:59:3909812,1,"La Boursidière",48.774579,2.239661,,1,,Europe/Paris,,OIF, +OIF:SA:59:3909814,1,"Descartes / Galilée",48.777016,2.245699,,1,,Europe/Paris,,OIF, +OIF:SA:59:3909816,1,"Descartes / Langevin",48.776514,2.248776,,1,,Europe/Paris,,OIF, +OIF:SA:59:3909819,1,"Cité Jardins / Place des Alliés",48.776848,2.257499,,1,,Europe/Paris,,OIF, +OIF:SA:59:3909820,1,"Résistance",48.779124,2.26079,,1,,Europe/Paris,,OIF, +OIF:SA:59:3922305,1,"Ledru Rollin / Général de Gaulle",48.843025,2.502902,,1,,Europe/Paris,,OIF, +OIF:SA:59:3922314,1,"Rue du Pressoir",48.836851,2.520899,,1,,Europe/Paris,,OIF, +OIF:SA:59:3926179,1,"Labrouste / Vouillé",48.834088,2.308329,,1,,Europe/Paris,,OIF, +OIF:SA:59:3926225,1,"Place Jacques Froment",48.890945,2.331413,,1,,Europe/Paris,,OIF, +OIF:SA:59:3926227,1,"Damrémont / Lamarck",48.89055,2.333934,,1,,Europe/Paris,,OIF, +OIF:SA:59:3926228,1,"Damrémont / Marcadet",48.891885,2.334943,,1,,Europe/Paris,,OIF, +OIF:SA:59:3926231,1,"Damrémont / Ordener",48.893554,2.336677,,1,,Europe/Paris,,OIF, +OIF:SA:59:3926251,1,"Morillons / Brancion",48.831695,2.302613,,1,,Europe/Paris,,OIF, +OIF:SA:59:3926253,1,"Bartholome",48.827003,2.300669,,1,,Europe/Paris,,OIF, +OIF:SA:59:3926261,1,"Elsa Triolet / Erignac",48.851168,2.416085,,1,,Europe/Paris,,OIF, +OIF:SA:59:3926263,1,"Progrès / Armand Carrel",48.85166,2.41866,,1,,Europe/Paris,,OIF, +OIF:SA:59:3926264,1,"Progrès / Émile Zola",48.851865,2.421861,,1,,Europe/Paris,,OIF, +OIF:SA:59:3926265,1,"Cuvier",48.851207,2.424461,,1,,Europe/Paris,,OIF, +OIF:SA:59:3926266,1,"Les Laitières",48.849503,2.425888,,1,,Europe/Paris,,OIF, +OIF:SA:59:3926270,1,"Cuvier / Émile Zola",48.851046,2.422635,,1,,Europe/Paris,,OIF, +OIF:SA:59:3926271,1,"Valmy - Arnaud Carrel",48.850771,2.417746,,1,,Europe/Paris,,OIF, +OIF:SA:59:3926274,1,"Serpollet",48.860594,2.410998,,1,,Europe/Paris,,OIF, +OIF:SA:59:3926276,1,"Stade Déjérine",48.857071,2.411545,,1,,Europe/Paris,,OIF, +OIF:SA:59:3926290,1,"Pierre Bourdan",48.847798,2.39088,,1,,Europe/Paris,,OIF, +OIF:SA:59:3926313,1,"Bobillot / Tolbiac",48.825665,2.350444,,1,,Europe/Paris,,OIF, +OIF:SA:59:3926314,1,"Abbé Georges Henocque",48.823821,2.353301,,1,,Europe/Paris,,OIF, +OIF:SA:59:3926321,1,"Cité Verte",48.812763,2.344281,,1,,Europe/Paris,,OIF, +OIF:SA:59:3926322,1,"Rue d'Arcueil",48.811019,2.341968,,1,,Europe/Paris,,OIF, +OIF:SA:59:3926336,1,"Moulin des Pres / Tolbiac",48.826145,2.353635,,1,,Europe/Paris,,OIF, +OIF:SA:59:3926390,1,"La Verrerie",48.857619,2.354462,,1,,Europe/Paris,,OIF, +OIF:SA:59:3926393,1,"Square du Temple / Mairie du 3ème / Carreau du Temple",48.864062,2.360744,,1,,Europe/Paris,,OIF, +OIF:SA:59:3926398,1,"Jules Ferry",48.869048,2.36764,,1,,Europe/Paris,,OIF, +OIF:SA:59:3926402,1,"Avenue Richerand",48.872212,2.366184,,1,,Europe/Paris,,OIF, +OIF:SA:59:3926410,1,"Secrétan / Buttes Chaumont",48.878832,2.377947,,1,,Europe/Paris,,OIF, +OIF:SA:59:3926412,1,"Jean Ménans / Buttes Chaumont",48.880216,2.379454,,1,,Europe/Paris,,OIF, +OIF:SA:59:3926416,1,"D'Hautpoul",48.883097,2.387966,,1,,Europe/Paris,,OIF, +OIF:SA:59:3926424,1,"Général Cochet",48.886118,2.394654,,1,,Europe/Paris,,OIF, +OIF:SA:59:3926428,1,"Marseillaise / Cheminets",48.886274,2.398156,,1,,Europe/Paris,,OIF, +OIF:SA:59:3926430,1,"Porte de Pantin / Marseillaise",48.889213,2.397949,,1,,Europe/Paris,,OIF, +OIF:SA:59:3970585,1,"Gabriel Péri / Soleil Levant",48.808494,2.345716,,1,,Europe/Paris,,OIF, +OIF:SA:59:3970588,1,"Raspail / Calmus",48.814659,2.351685,,1,,Europe/Paris,,OIF, +OIF:SA:59:3970591,1,"Division Leclerc / Médiathèque",48.81438,2.347276,,1,,Europe/Paris,,OIF, +OIF:SA:59:3970595,1,"Chaperon Vert / Marcel Cachin",48.812853,2.333081,,1,,Europe/Paris,,OIF, +OIF:SA:59:3970600,1,"Gautherot / Carrefour Mazagran",48.815612,2.343996,,1,,Europe/Paris,,OIF, +OIF:SA:59:3970601,1,"Val de Marne",48.816519,2.348215,,1,,Europe/Paris,,OIF, +OIF:SA:59:3970602,1,"Verdun / Victor Hugo",48.816622,2.352924,,1,,Europe/Paris,,OIF, +OIF:SA:59:3970604,1,"Jean Jaurès / Saint-Eloi",48.813526,2.350201,,1,,Europe/Paris,,OIF, +OIF:SA:59:3970605,1,"Allende - Reine Blanche",48.812403,2.347806,,1,,Europe/Paris,,OIF, +OIF:SA:59:3970606,1,"Fondation Vallée",48.810462,2.347846,,1,,Europe/Paris,,OIF, +OIF:SA:59:3972557,1,"Crèvecœur",48.919992,2.382957,,1,,Europe/Paris,,OIF, +OIF:SA:59:3972565,1,"Parc des Sports",48.932797,2.386754,,1,,Europe/Paris,,OIF, +OIF:SA:59:3972567,1,"Cité Floréal",48.941477,2.387778,,1,,Europe/Paris,,OIF, +OIF:SA:59:3972571,1,"Le Globe",48.94957,2.385818,,1,,Europe/Paris,,OIF, +OIF:SA:59:3972578,1,"Jean Jaurès / Aristide Briand",48.962591,2.379637,,1,,Europe/Paris,,OIF, +OIF:SA:59:4000527,1,"La Montjoie",48.911322,2.358046,,1,,Europe/Paris,,OIF, +OIF:SA:59:4000529,1,"Pont de Soissons",48.914584,2.357815,,1,,Europe/Paris,,OIF, +OIF:SA:59:4000537,1,"Cornillon Sud",48.920745,2.357286,,1,,Europe/Paris,,OIF, +OIF:SA:59:4000540,1,"Pont du Canal",48.926191,2.357124,,1,,Europe/Paris,,OIF, +OIF:SA:59:4000552,1,"Marville / Hôpital Delafontaine",48.937367,2.372905,,1,,Europe/Paris,,OIF, +OIF:SA:59:4000554,1,"Romain Rolland",48.938255,2.376998,,1,,Europe/Paris,,OIF, +OIF:SA:59:4000556,1,"La Courtille",48.940207,2.384332,,1,,Europe/Paris,,OIF, +OIF:SA:59:4000558,1,"Cité Floréal",48.942416,2.385087,,1,,Europe/Paris,,OIF, +OIF:SA:59:4000560,1,"Chemin Vert",48.944877,2.381581,,1,,Europe/Paris,,OIF, +OIF:SA:59:4000562,1,"Croix Blanche",48.946549,2.386156,,1,,Europe/Paris,,OIF, +OIF:SA:59:4000564,1,"Monmousseau - Renelle",48.948163,2.388296,,1,,Europe/Paris,,OIF, +OIF:SA:59:4000566,1,"3 Rivières",48.949788,2.391798,,1,,Europe/Paris,,OIF, +OIF:SA:59:4000568,1,"Moulin Neuf",48.951504,2.39301,,1,,Europe/Paris,,OIF, +OIF:SA:59:4008220,1,"Balzac",48.874507,2.302019,,1,,Europe/Paris,,OIF, +OIF:SA:59:4008226,1,"Victor Hugo / Paul Valéry",48.871254,2.289139,,1,,Europe/Paris,,OIF, +OIF:SA:59:4008230,1,"Bugeaud",48.86993,2.28252,,1,,Europe/Paris,,OIF, +OIF:SA:59:4008231,1,"Place Jean Monnet",48.867624,2.281058,,1,,Europe/Paris,,OIF, +OIF:SA:59:4008233,1,"Lycée Janson Da Sailly",48.865736,2.279507,,1,,Europe/Paris,,OIF, +OIF:SA:59:4008237,1,"Nicolo / Jean Richepin",48.861249,2.275452,,1,,Europe/Paris,,OIF, +OIF:SA:59:4008242,1,"Assomption / Radio France",48.853156,2.275687,,1,,Europe/Paris,,OIF, +OIF:SA:59:4008243,1,"Léopold II",48.850988,2.271822,,1,,Europe/Paris,,OIF, +OIF:SA:59:4008244,1,"George Sand / la Fontaine",48.849795,2.268316,,1,,Europe/Paris,,OIF, +OIF:SA:59:4008254,1,"La Tourelle",48.841619,2.251228,,1,,Europe/Paris,,OIF, +OIF:SA:59:4008256,1,"Denfert Rochereau",48.843521,2.246694,,1,,Europe/Paris,,OIF, +OIF:SA:59:4008258,1,"Rue de l'Est",48.842885,2.243407,,1,,Europe/Paris,,OIF, +OIF:SA:59:4008261,1,"Rue de Billancourt",48.841633,2.235342,,1,,Europe/Paris,,OIF, +OIF:SA:59:4008263,1,"Rue de Silly",48.841401,2.231645,,1,,Europe/Paris,,OIF, +OIF:SA:59:4008274,1,"Perrichont",48.849707,2.27166,,1,,Europe/Paris,,OIF, +OIF:SA:59:4008275,1,"La Fontaine / Radio France",48.852094,2.273618,,1,,Europe/Paris,,OIF, +OIF:SA:59:4008276,1,"Rodin",48.853531,2.27047,,1,,Europe/Paris,,OIF, +OIF:SA:59:4008278,1,"Beauvau",48.87119,2.315924,,1,,Europe/Paris,,OIF, +OIF:SA:59:4008279,1,"D'Aguesseau",48.869491,2.319181,,1,,Europe/Paris,,OIF, +OIF:SA:59:4008280,1,"Boissy d'Anglas",48.8688,2.32147,,1,,Europe/Paris,,OIF, +OIF:SA:59:4008852,1,"Kléber / Paul Valéry",48.869453,2.291948,,1,,Europe/Paris,,OIF, +OIF:SA:59:4008859,1,"La Tour",48.860268,2.281086,,1,,Europe/Paris,,OIF, +OIF:SA:59:4008861,1,"Place Possoz",48.859336,2.277634,,1,,Europe/Paris,,OIF, +OIF:SA:59:4008867,1,"Théophile Gautier - Rue Gros",48.851061,2.274858,,1,,Europe/Paris,,OIF, +OIF:SA:59:4008880,1,"Victorien Sardou",48.843149,2.269414,,1,,Europe/Paris,,OIF, +OIF:SA:59:4008881,1,"Wilhem",48.844678,2.270985,,1,,Europe/Paris,,OIF, +OIF:SA:59:4008917,1,"Sécurité Sociale",48.809477,2.186416,,1,,Europe/Paris,,OIF, +OIF:SA:59:4008932,1,"Marivel",48.818389,2.197571,,1,,Europe/Paris,,OIF, +OIF:SA:59:4008934,1,"Guilleminot",48.815873,2.194046,,1,,Europe/Paris,,OIF, +OIF:SA:59:4008938,1,"Cours Général de Gaulle",48.810679,2.1914,,1,,Europe/Paris,,OIF, +OIF:SA:59:4008948,1,"Parc de Saint-Cloud",48.826349,2.219291,,1,,Europe/Paris,,OIF, +OIF:SA:59:4008950,1,"Mairie",48.82473,2.213861,,1,,Europe/Paris,,OIF, +OIF:SA:59:4008952,1,"Marché Saint-Romain",48.823162,2.209795,,1,,Europe/Paris,,OIF, +OIF:SA:59:4008954,1,"Place Gabriel Péri",48.822085,2.206878,,1,,Europe/Paris,,OIF, +OIF:SA:59:4008968,1,"Pointe de Chaville",48.805722,2.184366,,1,,Europe/Paris,,OIF, +OIF:SA:59:4008970,1,"Les Fleurs",48.804724,2.179967,,1,,Europe/Paris,,OIF, +OIF:SA:59:4009042,1,"Les Bruyères",48.878602,2.411933,,1,,Europe/Paris,,OIF, +OIF:SA:59:4009045,1,"Mairie",48.882434,2.402915,,1,,Europe/Paris,,OIF, +OIF:SA:59:4009046,1,"D'Estienne d'Orves",48.886657,2.403976,,1,,Europe/Paris,,OIF, +OIF:SA:59:4009047,1,"Franklin",48.888095,2.403835,,1,,Europe/Paris,,OIF, +OIF:SA:59:4009056,1,"Hôpital la Roseraie",48.906008,2.389825,,1,,Europe/Paris,,OIF, +OIF:SA:59:4009057,1,"Rue des Cités",48.91011,2.388007,,1,,Europe/Paris,,OIF, +OIF:SA:59:4009058,1,"André Karman",48.910793,2.385103,,1,,Europe/Paris,,OIF, +OIF:SA:59:4009062,1,"Pont du Chemin de Fer",48.921828,2.37479,,1,,Europe/Paris,,OIF, +OIF:SA:59:4009064,1,"Rue du Progrès",48.925807,2.366964,,1,,Europe/Paris,,OIF, +OIF:SA:59:4009065,1,"Charles Gros",48.927097,2.364865,,1,,Europe/Paris,,OIF, +OIF:SA:59:4009080,1,"Schaeffer",48.916614,2.379988,,1,,Europe/Paris,,OIF, +OIF:SA:59:4009093,1,"Franklin",48.888194,2.403644,,1,,Europe/Paris,,OIF, +OIF:SA:59:4009096,1,"Les Marronniers",48.881499,2.404153,,1,,Europe/Paris,,OIF, +OIF:SA:59:4009098,1,"Faidherbe / Belvédère",48.879031,2.411767,,1,,Europe/Paris,,OIF, +OIF:SA:59:4009102,1,"Capucins / Bel Air",48.814125,2.228849,,1,,Europe/Paris,,OIF, +OIF:SA:59:4009104,1,"Châtelet / Bel Air",48.81521,2.225309,,1,,Europe/Paris,,OIF, +OIF:SA:59:4009105,1,"Gardes / Bel Air",48.815523,2.224151,,1,,Europe/Paris,,OIF, +OIF:SA:59:4009108,1,"11 Novembre",48.821548,2.227051,,1,,Europe/Paris,,OIF, +OIF:SA:59:4009113,1,"Trivaux / Vertugadins",48.803201,2.234668,,1,,Europe/Paris,,OIF, +OIF:SA:59:4009114,1,"Lycée François Rabelais",48.80792,2.237049,,1,,Europe/Paris,,OIF, +OIF:SA:59:4009120,1,"Rivoli",48.810104,2.251372,,1,,Europe/Paris,,OIF, +OIF:SA:59:4009121,1,"Petite Fontaine",48.811313,2.252357,,1,,Europe/Paris,,OIF, +OIF:SA:59:4009122,1,"Borne Sud",48.812553,2.251429,,1,,Europe/Paris,,OIF, +OIF:SA:59:4009124,1,"Vignes / Belgique",48.810716,2.247527,,1,,Europe/Paris,,OIF, +OIF:SA:59:4009125,1,"Viaduc",48.812832,2.246115,,1,,Europe/Paris,,OIF, +OIF:SA:59:4009126,1,"Paris / Bourgogne",48.810567,2.240152,,1,,Europe/Paris,,OIF, +OIF:SA:59:4009128,1,"Église",48.807036,2.236161,,1,,Europe/Paris,,OIF, +OIF:SA:59:4009129,1,"Maison Rouge / Nouvelle Poste",48.808964,2.236276,,1,,Europe/Paris,,OIF, +OIF:SA:59:4009134,1,"Jules Gérard",48.817357,2.245746,,1,,Europe/Paris,,OIF, +OIF:SA:59:4009135,1,"Carrefour de la Ferme",48.817452,2.248432,,1,,Europe/Paris,,OIF, +OIF:SA:59:4009141,1,"Gardes / Capucins",48.816344,2.227266,,1,,Europe/Paris,,OIF, +OIF:SA:59:4009143,1,"Collège / Bel Air",48.814373,2.224793,,1,,Europe/Paris,,OIF, +OIF:SA:59:4009146,1,"Hameau",48.815494,2.221511,,1,,Europe/Paris,,OIF, +OIF:SA:59:4009147,1,"Tour",48.817831,2.222037,,1,,Europe/Paris,,OIF, +OIF:SA:59:4009150,1,"Jeanne d'Arc",48.816514,2.232043,,1,,Europe/Paris,,OIF, +OIF:SA:59:4009151,1,"Stalingrad",48.81467,2.234469,,1,,Europe/Paris,,OIF, +OIF:SA:59:4009153,1,"Observatoire",48.809697,2.232138,,1,,Europe/Paris,,OIF, +OIF:SA:59:4009154,1,"Terre Neuve",48.808404,2.233243,,1,,Europe/Paris,,OIF, +OIF:SA:59:4009166,1,"Paul Bert",48.810489,2.247255,,1,,Europe/Paris,,OIF, +OIF:SA:59:4009170,1,"Maison Rouge / Rue de Paris",48.809236,2.238943,,1,,Europe/Paris,,OIF, +OIF:SA:59:4009174,1,"Claude Dalsème",48.81329,2.24046,,1,,Europe/Paris,,OIF, +OIF:SA:59:4009176,1,"Sorrières",48.816322,2.243761,,1,,Europe/Paris,,OIF, +OIF:SA:59:4009179,1,"Groupe Scolaire Pierre Brossolette",48.818691,2.244675,,1,,Europe/Paris,,OIF, +OIF:SA:59:4009224,1,"Place de l'Église",48.822967,2.276137,,1,,Europe/Paris,,OIF, +OIF:SA:59:4009225,1,"Place d'Alembert",48.822023,2.276676,,1,,Europe/Paris,,OIF, +OIF:SA:59:4009226,1,"Abbé Derry",48.822348,2.279616,,1,,Europe/Paris,,OIF, +OIF:SA:59:4009227,1,"Marcel Burgun / Carnot",48.821819,2.280705,,1,,Europe/Paris,,OIF, +OIF:SA:59:4009228,1,"Jules Guesde",48.819854,2.279319,,1,,Europe/Paris,,OIF, +OIF:SA:59:4009235,1,"Renan Foucher / Lepelletier",48.829171,2.281991,,1,,Europe/Paris,,OIF, +OIF:SA:59:4009236,1,"Maurice Hartmann",48.827473,2.283313,,1,,Europe/Paris,,OIF, +OIF:SA:59:4009237,1,"Collège Henri Matisse",48.828155,2.281052,,1,,Europe/Paris,,OIF, +OIF:SA:59:4009256,1,"Cresson / Gallieni",48.822998,2.268073,,1,,Europe/Paris,,OIF, +OIF:SA:59:4009257,1,"Capitaine Ferber",48.825981,2.266109,,1,,Europe/Paris,,OIF, +OIF:SA:59:4009260,1,"Rue de la Gare",48.822388,2.255646,,1,,Europe/Paris,,OIF, +OIF:SA:59:4009262,1,"Bas Meudon",48.823067,2.248703,,1,,Europe/Paris,,OIF, +OIF:SA:59:4009263,1,"Stade Île Saint-Germain",48.822336,2.245547,,1,,Europe/Paris,,OIF, +OIF:SA:59:4009264,1,"Sainte-Eudoxie",48.821085,2.242773,,1,,Europe/Paris,,OIF, +OIF:SA:59:4009265,1,"Allée des Moulineaux",48.821816,2.246827,,1,,Europe/Paris,,OIF, +OIF:SA:59:4009266,1,"Pierre Poli",48.822303,2.248855,,1,,Europe/Paris,,OIF, +OIF:SA:59:4009267,1,"Les Trois Moulins",48.821272,2.253348,,1,,Europe/Paris,,OIF, +OIF:SA:59:4009268,1,"Collège Victor Hugo",48.821957,2.255443,,1,,Europe/Paris,,OIF, +OIF:SA:59:4009271,1,"Gallieni",48.823285,2.267024,,1,,Europe/Paris,,OIF, +OIF:SA:59:4009534,1,"Hippodrome",48.795955,2.563798,,1,,Europe/Paris,,OIF, +OIF:SA:59:4009535,1,"Hippodrome",48.795793,2.563865,,1,,Europe/Paris,,OIF, +OIF:SA:59:4009645,1,"Lisbonne - Mairie du 8ème",48.877602,2.316501,,1,,Europe/Paris,,OIF, +OIF:SA:59:4009651,1,"Jouffroy - Malesherbes",48.885172,2.307272,,1,,Europe/Paris,,OIF, +OIF:SA:59:4009653,1,"Wagram / Pereire",48.887014,2.305261,,1,,Europe/Paris,,OIF, +OIF:SA:59:4009659,1,"Reims / Hôtel des Impôts",48.891991,2.300324,,1,,Europe/Paris,,OIF, +OIF:SA:59:4009660,1,"Curnonsky",48.889968,2.296673,,1,,Europe/Paris,,OIF, +OIF:SA:59:4009661,1,"Louison Bobet",48.891559,2.296058,,1,,Europe/Paris,,OIF, +OIF:SA:59:4015688,1,"Place Voltaire",48.912677,2.295913,,1,,Europe/Paris,,OIF, +OIF:SA:59:4015695,1,"Guillemin",48.917981,2.284358,,1,,Europe/Paris,,OIF, +OIF:SA:59:4015696,1,"Bourguignons",48.918873,2.280929,,1,,Europe/Paris,,OIF, +OIF:SA:59:4015720,1,"Gramme",48.923337,2.275685,,1,,Europe/Paris,,OIF, +OIF:SA:59:4015729,1,"Alma",48.916908,2.287877,,1,,Europe/Paris,,OIF, +OIF:SA:59:4015735,1,"Jean Jaurès",48.920957,2.278838,,1,,Europe/Paris,,OIF, +OIF:SA:59:4015751,1,"Petit Gennevilliers",48.936529,2.257777,,1,,Europe/Paris,,OIF, +OIF:SA:59:4015755,1,"Louis Melotte",48.915966,2.290612,,1,,Europe/Paris,,OIF, +OIF:SA:59:4015758,1,"Henri Martin",48.836276,2.252105,,1,,Europe/Paris,,OIF, +OIF:SA:59:4015760,1,"Rene Descartes",48.83497,2.247778,,1,,Europe/Paris,,OIF, +OIF:SA:59:4015773,1,"Feudon",48.846283,2.22354,,1,,Europe/Paris,,OIF, +OIF:SA:59:4015775,1,"Parc de Béarn",48.849182,2.223956,,1,,Europe/Paris,,OIF, +OIF:SA:59:4015777,1,"L'Aqueduc",48.852857,2.222838,,1,,Europe/Paris,,OIF, +OIF:SA:59:4015781,1,"Rue du Val d'Or",48.859925,2.217725,,1,,Europe/Paris,,OIF, +OIF:SA:59:4015782,1,"Clavel",48.86226,2.225664,,1,,Europe/Paris,,OIF, +OIF:SA:59:4015784,1,"Pont de Suresnes",48.867401,2.228552,,1,,Europe/Paris,,OIF, +OIF:SA:59:4015786,1,"Nieuport",48.869792,2.231083,,1,,Europe/Paris,,OIF, +OIF:SA:59:4015788,1,"Pompidou",48.875044,2.234568,,1,,Europe/Paris,,OIF, +OIF:SA:59:4015789,1,"Pont de Puteaux",48.8782,2.242396,,1,,Europe/Paris,,OIF, +OIF:SA:59:4015795,1,"RD 7 / Pont de Neuilly",48.887429,2.253459,,1,,Europe/Paris,,OIF, +OIF:SA:59:4015798,1,"Victor Hugo",48.892387,2.253756,,1,,Europe/Paris,,OIF, +OIF:SA:59:4015800,1,"Mairie",48.895596,2.256438,,1,,Europe/Paris,,OIF, +OIF:SA:59:4015802,1,"La Montagne",48.896451,2.258577,,1,,Europe/Paris,,OIF, +OIF:SA:59:4015804,1,"Pont Bineau",48.897783,2.263768,,1,,Europe/Paris,,OIF, +OIF:SA:59:4015806,1,"Franklin",48.900219,2.269129,,1,,Europe/Paris,,OIF, +OIF:SA:59:4015808,1,"Place Mermoz",48.902592,2.274671,,1,,Europe/Paris,,OIF, +OIF:SA:59:4015810,1,"Haussman",48.904012,2.277917,,1,,Europe/Paris,,OIF, +OIF:SA:59:4015814,1,"Gallieni",48.909731,2.286275,,1,,Europe/Paris,,OIF, +OIF:SA:59:4015816,1,"Mairie",48.910348,2.289315,,1,,Europe/Paris,,OIF, +OIF:SA:59:4015818,1,"Place des Victoires / Marché",48.910884,2.291789,,1,,Europe/Paris,,OIF, +OIF:SA:59:4015824,1,"D7 / Pont de Neuilly",48.887159,2.25222,,1,,Europe/Paris,,OIF, +OIF:SA:59:4015826,1,"Godefroy",48.880098,2.244273,,1,,Europe/Paris,,OIF, +OIF:SA:59:4015882,1,"Gabriel Péri / Henri Barbusse",48.917864,2.295669,,1,,Europe/Paris,,OIF, +OIF:SA:59:4015883,1,"Basly",48.919985,2.295245,,1,,Europe/Paris,,OIF, +OIF:SA:59:4015885,1,"8 Mai 1945",48.921463,2.294971,,1,,Europe/Paris,,OIF, +OIF:SA:59:4015887,1,"Mairie",48.924455,2.29458,,1,,Europe/Paris,,OIF, +OIF:SA:59:4015889,1,"Camélinat / Jaurés",48.927767,2.294863,,1,,Europe/Paris,,OIF, +OIF:SA:59:4015891,1,"Deslandes",48.93054,2.295059,,1,,Europe/Paris,,OIF, +OIF:SA:59:4015895,1,"Villebois / Mareuil",48.934902,2.291945,,1,,Europe/Paris,,OIF, +OIF:SA:59:4015905,1,"Fleming",48.931998,2.280272,,1,,Europe/Paris,,OIF, +OIF:SA:59:4015907,1,"Mourinoux",48.932239,2.275743,,1,,Europe/Paris,,OIF, +OIF:SA:59:4015914,1,"Président Kennedy",48.92871,2.258514,,1,,Europe/Paris,,OIF, +OIF:SA:59:4015916,1,"Valmy / Gambetta",48.927593,2.254567,,1,,Europe/Paris,,OIF, +OIF:SA:59:4015918,1,"Cité des Musiciens",48.928036,2.251102,,1,,Europe/Paris,,OIF, +OIF:SA:59:4015921,1,"Audra",48.927263,2.24696,,1,,Europe/Paris,,OIF, +OIF:SA:59:4015924,1,"Europe",48.924871,2.239447,,1,,Europe/Paris,,OIF, +OIF:SA:59:4015926,1,"Stalingrad / Jean Jacques Rousseau",48.932417,2.264872,,1,,Europe/Paris,,OIF, +OIF:SA:59:4016021,1,"Hôpital Beaujon",48.908676,2.307361,,1,,Europe/Paris,,OIF, +OIF:SA:59:4016030,1,"Danielle Casanova",48.904592,2.302346,,1,,Europe/Paris,,OIF, +OIF:SA:59:4016032,1,"Bateliers",48.907441,2.304321,,1,,Europe/Paris,,OIF, +OIF:SA:59:4016033,1,"Berges de Seine",48.911244,2.308934,,1,,Europe/Paris,,OIF, +OIF:SA:59:4016041,1,"Léon Blum",48.906973,2.301472,,1,,Europe/Paris,,OIF, +OIF:SA:59:4016045,1,"République",48.919572,2.298041,,1,,Europe/Paris,,OIF, +OIF:SA:59:4016047,1,"Rue Brenu",48.922956,2.299947,,1,,Europe/Paris,,OIF, +OIF:SA:59:4016049,1,"Sévines",48.926457,2.300102,,1,,Europe/Paris,,OIF, +OIF:SA:59:4016051,1,"Caserne des Pompiers",48.929611,2.300925,,1,,Europe/Paris,,OIF, +OIF:SA:59:4016058,1,"Iftim",48.941315,2.29563,,1,,Europe/Paris,,OIF, +OIF:SA:59:4016060,1,"Darse 5",48.941304,2.294082,,1,,Europe/Paris,,OIF, +OIF:SA:59:4016062,1,"Môle Central",48.939633,2.286412,,1,,Europe/Paris,,OIF, +OIF:SA:59:4016065,1,"Bassin 2",48.938447,2.280401,,1,,Europe/Paris,,OIF, +OIF:SA:59:4016074,1,"Petit Gennevilliers",48.937553,2.258317,,1,,Europe/Paris,,OIF, +OIF:SA:59:4016093,1,"Théâtre Rutebeuf - Hôpital Gouin",48.901808,2.308428,,1,,Europe/Paris,,OIF, +OIF:SA:59:4016094,1,"Jaurès / Barbusse",48.90027,2.305652,,1,,Europe/Paris,,OIF, +OIF:SA:59:4016095,1,"Émile Roux",48.898204,2.308839,,1,,Europe/Paris,,OIF, +OIF:SA:59:4016096,1,"Victor Hugo",48.898555,2.310379,,1,,Europe/Paris,,OIF, +OIF:SA:59:4016097,1,"Dispensaire",48.899652,2.314277,,1,,Europe/Paris,,OIF, +OIF:SA:59:4016098,1,"Maison du Peuple",48.90064,2.314413,,1,,Europe/Paris,,OIF, +OIF:SA:59:4016101,1,"Général Roguet",48.906896,2.317778,,1,,Europe/Paris,,OIF, +OIF:SA:59:4016107,1,"Quartier Nord",48.908232,2.302971,,1,,Europe/Paris,,OIF, +OIF:SA:59:4016108,1,"Gabriel Péri",48.906273,2.302168,,1,,Europe/Paris,,OIF, +OIF:SA:59:4016115,1,"Fournier",48.904281,2.299027,,1,,Europe/Paris,,OIF, +OIF:SA:59:4016116,1,"Piscine",48.90282,2.297303,,1,,Europe/Paris,,OIF, +OIF:SA:59:4016117,1,"Pasteur",48.90185,2.299281,,1,,Europe/Paris,,OIF, +OIF:SA:59:4016118,1,"Neuilly - Castérès",48.900485,2.301722,,1,,Europe/Paris,,OIF, +OIF:SA:59:4016119,1,"Castères",48.898782,2.303093,,1,,Europe/Paris,,OIF, +OIF:SA:59:4016120,1,"Cimetière Sud",48.897322,2.303237,,1,,Europe/Paris,,OIF, +OIF:SA:59:4016121,1,"Cailloux",48.896361,2.306155,,1,,Europe/Paris,,OIF, +OIF:SA:59:4016125,1,"Rue Petit",48.901453,2.294237,,1,,Europe/Paris,,OIF, +OIF:SA:59:4016126,1,"Rue des Chasses",48.901142,2.292118,,1,,Europe/Paris,,OIF, +OIF:SA:59:4016128,1,"Rue du Port",48.905835,2.297656,,1,,Europe/Paris,,OIF, +OIF:SA:59:4016282,1,"Pigalle - Chaptal",48.880736,2.33493,,1,,Europe/Paris,,OIF, +OIF:SA:59:4016305,1,"République / François Mitterrand",48.903287,2.313212,,1,,Europe/Paris,,OIF, +OIF:SA:59:4016306,1,"Général Leclerc / Villeneuve / Hôpital Beaujon",48.905497,2.310103,,1,,Europe/Paris,,OIF, +OIF:SA:59:4016316,1,"La Bruyère",48.879747,2.332463,,1,,Europe/Paris,,OIF, +OIF:SA:59:4016338,1,"Haussmann / Mogador",48.874049,2.331374,,1,,Europe/Paris,,OIF, +OIF:SA:59:4016346,1,"Navier",48.895741,2.32646,,1,,Europe/Paris,,OIF, +OIF:SA:59:4016538,1,"Camille Flammarion",48.897815,2.339563,,1,,Europe/Paris,,OIF, +OIF:SA:59:4016542,1,"Gérard de Nerval",48.900732,2.335351,,1,,Europe/Paris,,OIF, +OIF:SA:59:4016544,1,"Kléber",48.903024,2.334015,,1,,Europe/Paris,,OIF, +OIF:SA:59:4016556,1,"Boulevard Marcel Paul",48.919612,2.328024,,1,,Europe/Paris,,OIF, +OIF:SA:59:4016567,1,"Boulevard Galliéni / Écoles",48.932466,2.332465,,1,,Europe/Paris,,OIF, +OIF:SA:59:4016573,1,"Mathilde Milliard",48.938523,2.332683,,1,,Europe/Paris,,OIF, +OIF:SA:59:4016575,1,"Jean Moulin",48.940086,2.331346,,1,,Europe/Paris,,OIF, +OIF:SA:59:4016577,1,"Place Paul Herbe",48.940353,2.327277,,1,,Europe/Paris,,OIF, +OIF:SA:59:4016579,1,"Piscine",48.941937,2.324456,,1,,Europe/Paris,,OIF, +OIF:SA:59:4016582,1,"Parc Départemental",48.941212,2.322012,,1,,Europe/Paris,,OIF, +OIF:SA:59:4016587,1,"Debain",48.902691,2.349788,,1,,Europe/Paris,,OIF, +OIF:SA:59:4016589,1,"Place Debain",48.902871,2.348466,,1,,Europe/Paris,,OIF, +OIF:SA:59:4016591,1,"Michelet / Docteur Bauer",48.905098,2.344499,,1,,Europe/Paris,,OIF, +OIF:SA:59:4016597,1,"Jaurès / Dhalenne",48.913211,2.335337,,1,,Europe/Paris,,OIF, +OIF:SA:59:4016600,1,"Clinique du Landy",48.916693,2.334246,,1,,Europe/Paris,,OIF, +OIF:SA:59:4016601,1,"Saint-Denis Rousseau",48.918257,2.332978,,1,,Europe/Paris,,OIF, +OIF:SA:59:4016604,1,"Stade Pablo Neruda",48.916972,2.336169,,1,,Europe/Paris,,OIF, +OIF:SA:59:4016605,1,"Landy / Jean Jaurès",48.915013,2.337758,,1,,Europe/Paris,,OIF, +OIF:SA:59:4016613,1,"Pasteur",48.901146,2.329789,,1,,Europe/Paris,,OIF, +OIF:SA:59:4016614,1,"Payret",48.902188,2.326559,,1,,Europe/Paris,,OIF, +OIF:SA:59:4016618,1,"Bourdarias",48.901819,2.348084,,1,,Europe/Paris,,OIF, +OIF:SA:59:4016752,1,"Lycée Louis Pasteur",48.885411,2.274177,,1,,Europe/Paris,,OIF, +OIF:SA:59:4016754,1,"Inkermann / Bineau",48.888072,2.275584,,1,,Europe/Paris,,OIF, +OIF:SA:59:4016757,1,"Voltaire / Villiers",48.890141,2.279932,,1,,Europe/Paris,,OIF, +OIF:SA:59:4016760,1,"Mairie",48.892931,2.28832,,1,,Europe/Paris,,OIF, +OIF:SA:59:4016765,1,"Trezel",48.894929,2.295463,,1,,Europe/Paris,,OIF, +OIF:SA:59:4016767,1,"Jean Jaurès - Victor Hugo",48.896111,2.296334,,1,,Europe/Paris,,OIF, +OIF:SA:59:4016770,1,"Collange",48.898909,2.292045,,1,,Europe/Paris,,OIF, +OIF:SA:59:4016792,1,"Hôpital du Perpétuel Secours",48.891749,2.278149,,1,,Europe/Paris,,OIF, +OIF:SA:59:4016801,1,"Marché de Gennevilliers",48.914567,2.300799,,1,,Europe/Paris,,OIF, +OIF:SA:59:4016802,1,"Cité Jardins",48.915943,2.304111,,1,,Europe/Paris,,OIF, +OIF:SA:59:4016804,1,"Tour d'Asnières / Laurent Cély",48.917868,2.30893,,1,,Europe/Paris,,OIF, +OIF:SA:59:4016805,1,"Pierre Curie",48.91874,2.311296,,1,,Europe/Paris,,OIF, +OIF:SA:59:4016809,1,"4 Chemins",48.923352,2.321369,,1,,Europe/Paris,,OIF, +OIF:SA:59:4016812,1,"Lycée Charles Petiet",48.927222,2.330113,,1,,Europe/Paris,,OIF, +OIF:SA:59:4016814,1,"Maurice Ravel",48.930079,2.332056,,1,,Europe/Paris,,OIF, +OIF:SA:59:4016816,1,"Pointet",48.932807,2.329969,,1,,Europe/Paris,,OIF, +OIF:SA:59:4016820,1,"Gérard Philipe",48.937723,2.328448,,1,,Europe/Paris,,OIF, +OIF:SA:59:4016821,1,"Stade",48.938316,2.328134,,1,,Europe/Paris,,OIF, +OIF:SA:59:4016825,1,"Antoine de Saint-Exupéry",48.939821,2.325289,,1,,Europe/Paris,,OIF, +OIF:SA:59:4016835,1,"Pierre Curie",48.918875,2.311023,,1,,Europe/Paris,,OIF, +OIF:SA:59:4016837,1,"Grésillons / Félix Eboue",48.917292,2.307151,,1,,Europe/Paris,,OIF, +OIF:SA:59:4016838,1,"Cité Jardins",48.916042,2.303893,,1,,Europe/Paris,,OIF, +OIF:SA:59:4016839,1,"Marché",48.91445,2.300185,,1,,Europe/Paris,,OIF, +OIF:SA:59:4016840,1,"Place Voltaire",48.912948,2.296587,,1,,Europe/Paris,,OIF, +OIF:SA:59:4016999,1,"Place Jean Poulmarch",48.932897,2.342498,,1,,Europe/Paris,,OIF, +OIF:SA:59:4017001,1,"Quai de Saint-Ouen",48.929769,2.341502,,1,,Europe/Paris,,OIF, +OIF:SA:59:4017003,1,"Jules Genovesi",48.926251,2.34187,,1,,Europe/Paris,,OIF, +OIF:SA:59:4017005,1,"Ampère",48.924696,2.342354,,1,,Europe/Paris,,OIF, +OIF:SA:59:4017014,1,"Les Bateliers",48.909504,2.32987,,1,,Europe/Paris,,OIF, +OIF:SA:59:4017016,1,"Capitaine Glarner",48.907782,2.327069,,1,,Europe/Paris,,OIF, +OIF:SA:59:4017030,1,"Chance - Milly",48.898189,2.301901,,1,,Europe/Paris,,OIF, +OIF:SA:59:4017050,1,"Landy / Jean Jaurès",48.915498,2.338337,,1,,Europe/Paris,,OIF, +OIF:SA:59:4017056,1,"Fosse Blanc",48.925214,2.307835,,1,,Europe/Paris,,OIF, +OIF:SA:59:4017058,1,"Olympe de Gouges",48.922344,2.313851,,1,,Europe/Paris,,OIF, +OIF:SA:59:4017061,1,"Louis Armand",48.9163,2.31069,,1,,Europe/Paris,,OIF, +OIF:SA:59:4017063,1,"River Plaza",48.913976,2.306362,,1,,Europe/Paris,,OIF, +OIF:SA:59:4022904,1,"Marché",48.880019,2.275532,,1,,Europe/Paris,,OIF, +OIF:SA:59:4022908,1,"Rue de L'Hôtel de Ville",48.882527,2.267762,,1,,Europe/Paris,,OIF, +OIF:SA:59:4022910,1,"Les Graviers",48.883236,2.265526,,1,,Europe/Paris,,OIF, +OIF:SA:59:4022924,1,"Léonard de Vinci",48.89702,2.237802,,1,,Europe/Paris,,OIF, +OIF:SA:59:4022926,1,"Rue des Étudiants",48.896901,2.234456,,1,,Europe/Paris,,OIF, +OIF:SA:59:4022928,1,"Puvis de Chavannes",48.899036,2.235427,,1,,Europe/Paris,,OIF, +OIF:SA:59:4022935,1,"Les Fauvelles",48.901912,2.239245,,1,,Europe/Paris,,OIF, +OIF:SA:59:4022976,1,"L'Yser et la Somme",48.885921,2.289637,,1,,Europe/Paris,,OIF, +OIF:SA:59:4022978,1,"Villiers / Bineau",48.886804,2.283047,,1,,Europe/Paris,,OIF, +OIF:SA:59:4022980,1,"Louis Rouquier",48.888614,2.281437,,1,,Europe/Paris,,OIF, +OIF:SA:59:4022983,1,"Place de la Libération",48.893114,2.276089,,1,,Europe/Paris,,OIF, +OIF:SA:59:4022987,1,"Villiers",48.895948,2.272821,,1,,Europe/Paris,,OIF, +OIF:SA:59:4022989,1,"Pont de la Grande Jatte",48.893217,2.266828,,1,,Europe/Paris,,OIF, +OIF:SA:59:4022991,1,"Collège André Maurois",48.889933,2.261346,,1,,Europe/Paris,,OIF, +OIF:SA:59:4022996,1,"Maurice Barres",48.881286,2.258872,,1,,Europe/Paris,,OIF, +OIF:SA:59:4023000,1,"Rue du Centre",48.879467,2.253458,,1,,Europe/Paris,,OIF, +OIF:SA:59:4023024,1,"Centre Hospitalier",48.890517,2.26155,,1,,Europe/Paris,,OIF, +OIF:SA:59:4023025,1,"Centre des Impôts",48.894845,2.270458,,1,,Europe/Paris,,OIF, +OIF:SA:59:4023026,1,"Hôpital du Perpétuel Secours",48.891578,2.277999,,1,,Europe/Paris,,OIF, +OIF:SA:59:4023027,1,"Voltaire - Villiers",48.890024,2.279623,,1,,Europe/Paris,,OIF, +OIF:SA:59:4023028,1,"Louis Rouquier",48.888066,2.281669,,1,,Europe/Paris,,OIF, +OIF:SA:59:4023193,1,"Les Rosiers",48.8886,2.228858,,1,,Europe/Paris,,OIF, +OIF:SA:59:4023197,1,"Fernand Léger",48.889733,2.21969,,1,,Europe/Paris,,OIF, +OIF:SA:59:4023199,1,"Liberté",48.891355,2.215073,,1,,Europe/Paris,,OIF, +OIF:SA:59:4023211,1,"Eugène Sue",48.876262,2.201173,,1,,Europe/Paris,,OIF, +OIF:SA:59:4023215,1,"Collège Passy Buzenval",48.8595,2.182207,,1,,Europe/Paris,,OIF, +OIF:SA:59:4023289,1,"Jean Bonal",48.908182,2.255471,,1,,Europe/Paris,,OIF, +OIF:SA:59:4023291,1,"Rue de l'Aigle",48.910653,2.254785,,1,,Europe/Paris,,OIF, +OIF:SA:59:4023293,1,"Pont de la Puce",48.912814,2.253636,,1,,Europe/Paris,,OIF, +OIF:SA:59:4023295,1,"Félix Faure",48.915032,2.253138,,1,,Europe/Paris,,OIF, +OIF:SA:59:4023297,1,"Prague",48.918789,2.252652,,1,,Europe/Paris,,OIF, +OIF:SA:59:4023299,1,"Mairie",48.922794,2.253761,,1,,Europe/Paris,,OIF, +OIF:SA:59:4023300,1,"Église",48.923027,2.251247,,1,,Europe/Paris,,OIF, +OIF:SA:59:4023304,1,"Robert Schuman",48.928572,2.246621,,1,,Europe/Paris,,OIF, +OIF:SA:59:4023306,1,"Les Saules",48.92996,2.245807,,1,,Europe/Paris,,OIF, +OIF:SA:59:4023308,1,"Place du 11 Novembre",48.935899,2.238366,,1,,Europe/Paris,,OIF, +OIF:SA:59:4023310,1,"Ferdinand Berthoud",48.937708,2.236538,,1,,Europe/Paris,,OIF, +OIF:SA:59:4023314,1,"Les Messiers",48.942307,2.234551,,1,,Europe/Paris,,OIF, +OIF:SA:59:4023370,1,"Paul Doumer",48.890549,2.255628,,1,,Europe/Paris,,OIF, +OIF:SA:59:4023374,1,"Place Charras",48.895154,2.249923,,1,,Europe/Paris,,OIF, +OIF:SA:59:4023378,1,"Place du 8 Mai 1945",48.900688,2.244639,,1,,Europe/Paris,,OIF, +OIF:SA:59:4023380,1,"Rhin et Danube",48.902955,2.242412,,1,,Europe/Paris,,OIF, +OIF:SA:59:4023382,1,"Nordmann",48.904959,2.239365,,1,,Europe/Paris,,OIF, +OIF:SA:59:4023388,1,"Rue du Commerce",48.911861,2.241128,,1,,Europe/Paris,,OIF, +OIF:SA:59:4023390,1,"Rue de l'Industrie",48.914192,2.245821,,1,,Europe/Paris,,OIF, +OIF:SA:59:4023391,1,"Ostyn",48.91821,2.246728,,1,,Europe/Paris,,OIF, +OIF:SA:59:4023393,1,"Jacques Eléonor Ferme",48.921357,2.249088,,1,,Europe/Paris,,OIF, +OIF:SA:59:4023406,1,"Gros Grès",48.916441,2.242654,,1,,Europe/Paris,,OIF, +OIF:SA:59:4023493,1,"Yser",48.924337,2.202059,,1,,Europe/Paris,,OIF, +OIF:SA:59:4023495,1,"Paul Bert / Joseph Bara",48.924844,2.197421,,1,,Europe/Paris,,OIF, +OIF:SA:59:4023499,1,"Edouard Branly",48.928842,2.188538,,1,,Europe/Paris,,OIF, +OIF:SA:59:4023503,1,"Général Négrier",48.933687,2.179344,,1,,Europe/Paris,,OIF, +OIF:SA:59:4023507,1,"Jean Mermoz",48.940083,2.167279,,1,,Europe/Paris,,OIF, +OIF:SA:59:4023509,1,"Stalingrad",48.941831,2.164067,,1,,Europe/Paris,,OIF, +OIF:SA:59:4023513,1,"Rue du Mesnil",48.947083,2.14913,,1,,Europe/Paris,,OIF, +OIF:SA:59:4023611,1,"Hoche",48.898878,2.199256,,1,,Europe/Paris,,OIF, +OIF:SA:59:4023613,1,"Jean Baillet",48.903057,2.205898,,1,,Europe/Paris,,OIF, +OIF:SA:59:4023615,1,"Université Paris X",48.905015,2.212741,,1,,Europe/Paris,,OIF, +OIF:SA:59:4023617,1,"Pont de Rouen",48.908119,2.213431,,1,,Europe/Paris,,OIF, +OIF:SA:59:4023619,1,"Les Saules",48.909818,2.216429,,1,,Europe/Paris,,OIF, +OIF:SA:59:4023621,1,"Les Ormes",48.910403,2.219418,,1,,Europe/Paris,,OIF, +OIF:SA:59:4023623,1,"Hôpital",48.912245,2.223838,,1,,Europe/Paris,,OIF, +OIF:SA:59:4023630,1,"Écoles du Petit Colombes",48.917717,2.237599,,1,,Europe/Paris,,OIF, +OIF:SA:59:4023632,1,"Egalité",48.921778,2.241908,,1,,Europe/Paris,,OIF, +OIF:SA:59:4023634,1,"Cimetière",48.922535,2.24729,,1,,Europe/Paris,,OIF, +OIF:SA:59:4023643,1,"Beauséjour",48.924387,2.264283,,1,,Europe/Paris,,OIF, +OIF:SA:59:4023645,1,"Gramme",48.925117,2.267957,,1,,Europe/Paris,,OIF, +OIF:SA:59:4023647,1,"4 Routes",48.92747,2.27388,,1,,Europe/Paris,,OIF, +OIF:SA:59:4023649,1,"Freycinet",48.928151,2.277303,,1,,Europe/Paris,,OIF, +OIF:SA:59:4023654,1,"4 Routes / la Redoute",48.927291,2.274153,,1,,Europe/Paris,,OIF, +OIF:SA:59:4023655,1,"Les Grands Prés",48.909513,2.214376,,1,,Europe/Paris,,OIF, +OIF:SA:59:4023682,1,"Belin",48.946171,2.247341,,1,,Europe/Paris,,OIF, +OIF:SA:59:4023689,1,"Charles de Gaulle - Henri Barbusse",48.940415,2.245086,,1,,Europe/Paris,,OIF, +OIF:SA:59:4023690,1,"Jean Moulin / Henri Barbusse",48.938535,2.242641,,1,,Europe/Paris,,OIF, +OIF:SA:59:4023694,1,"Avenue du Château",48.933153,2.232802,,1,,Europe/Paris,,OIF, +OIF:SA:59:4023700,1,"Jaurès Branchard",48.924334,2.22015,,1,,Europe/Paris,,OIF, +OIF:SA:59:4023705,1,"Place des Droits de l'Homme",48.931133,2.212087,,1,,Europe/Paris,,OIF, +OIF:SA:59:4023718,1,"Péguy",48.945413,2.198894,,1,,Europe/Paris,,OIF, +OIF:SA:59:4023720,1,"Bourquelot",48.94249,2.197612,,1,,Europe/Paris,,OIF, +OIF:SA:59:4023744,1,"Val Notre-Dame",48.941094,2.206661,,1,,Europe/Paris,,OIF, +OIF:SA:59:4023745,1,"Général Delambre",48.930196,2.22753,,1,,Europe/Paris,,OIF, +OIF:SA:59:4023748,1,"Labriere",48.94581,2.254409,,1,,Europe/Paris,,OIF, +OIF:SA:59:4023775,1,"La Grâce de Dieu",48.927286,2.215346,,1,,Europe/Paris,,OIF, +OIF:SA:59:4023818,1,"Mairie",48.946687,2.249384,,1,,Europe/Paris,,OIF, +OIF:SA:59:4023966,1,"Mairie",48.884565,2.238835,,1,,Europe/Paris,,OIF, +OIF:SA:59:4023975,1,"Liberté / Plaideurs",48.879781,2.218375,,1,,Europe/Paris,,OIF, +OIF:SA:59:4023976,1,"Romain Rolland",48.879871,2.216081,,1,,Europe/Paris,,OIF, +OIF:SA:59:4023978,1,"Plaideurs / Paul Vaillant Couturier",48.878683,2.210265,,1,,Europe/Paris,,OIF, +OIF:SA:59:4023980,1,"Les Chailliers",48.878147,2.205202,,1,,Europe/Paris,,OIF, +OIF:SA:59:4023987,1,"Rue des Folies",48.875097,2.190872,,1,,Europe/Paris,,OIF, +OIF:SA:59:4023989,1,"Edmond Rostand",48.873411,2.190136,,1,,Europe/Paris,,OIF, +OIF:SA:59:4023992,1,"Saint-Exupéry",48.872057,2.193006,,1,,Europe/Paris,,OIF, +OIF:SA:59:4023999,1,"Victorien Sardou",48.865403,2.197445,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024001,1,"Les Mazurières",48.862944,2.196634,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024003,1,"Fouilleuse",48.86247,2.194715,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024005,1,"Carrey de Bellemare",48.86255,2.190771,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024008,1,"Dumouriez",48.860346,2.19265,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024009,1,"Henri Régnault",48.85871,2.189933,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024011,1,"Otis Mygatt",48.861828,2.184493,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024013,1,"Lycée",48.865926,2.1808,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024017,1,"Félix Faure",48.882484,2.223168,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024084,1,"Général Leclerc",48.897373,2.195839,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024095,1,"Place de la Boule / Lénine",48.887209,2.199451,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024112,1,"Boieldieu",48.88755,2.238461,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024118,1,"Palissy",48.884529,2.228607,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024119,1,"Les Bergères",48.885117,2.227489,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024144,1,"Avenue du Mont Valérien",48.867644,2.200378,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024205,1,"De Pressensé",48.877564,2.233704,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024218,1,"Croix du Roy",48.861861,2.212599,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024221,1,"Place Jean Jaurès",48.863221,2.209138,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024225,1,"Lieutenant Colonel de Montbrison",48.867341,2.198182,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024227,1,"Dunant",48.868022,2.193037,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024230,1,"Place Besche",48.868993,2.186308,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024253,1,"De Pressensé",48.877528,2.234031,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024255,1,"Wallace / Eugène Eichenberger",48.88144,2.236708,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024267,1,"Honore d'Estienne d'Orves",48.872673,2.227283,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024268,1,"Mairie / Carnot",48.871561,2.225024,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024295,1,"Square Léon Blum",48.881843,2.246716,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024299,1,"Hôpital / Pont de Puteaux",48.878721,2.242089,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024301,1,"Wallace / Jean Jaurès",48.88061,2.23781,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024304,1,"Victor Hugo",48.879908,2.231581,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024307,1,"Capitaine Ferber",48.879036,2.226922,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024308,1,"Lycée Paul Langevin",48.877707,2.22296,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024313,1,"Verdun",48.882644,2.217283,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024314,1,"Les Alouettes",48.884483,2.213896,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024316,1,"Georges Clémenceau / Sadi Carnot",48.886485,2.209078,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024318,1,"Sadi Carnot / Joliot Curie",48.889204,2.204534,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024329,1,"Voltaire",48.899655,2.195042,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024331,1,"Lannes",48.901973,2.194218,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024333,1,"Boulevard de la Seine",48.903408,2.193455,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024340,1,"Carriers",48.887556,2.207586,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024341,1,"Liberté / Plaideurs",48.879892,2.219671,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024343,1,"Pont de Neuilly / Rive Gauche",48.88697,2.252227,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024348,1,"Les Graviers",48.887699,2.233313,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024365,1,"Soufflot",48.898348,2.213567,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024369,1,"Gounod",48.897522,2.205782,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024371,1,"Victor Hugo - Mairie",48.893527,2.203632,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024381,1,"Paul Lescop",48.894656,2.186002,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024383,1,"Pont de Biais",48.892608,2.18319,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024384,1,"Rue du Port",48.892397,2.179483,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024385,1,"Route de Chatou",48.891244,2.177919,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024392,1,"Lycée Etienne Jules Marey",48.832083,2.233978,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024394,1,"Silly / Gallieni",48.835713,2.232467,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024396,1,"André Morizet",48.838552,2.232128,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024423,1,"Edouard Vaillant",48.864036,2.213053,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024425,1,"Les Bons Raisins",48.865795,2.215208,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024427,1,"Cluseret / Hôpital Foch",48.869842,2.217684,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024429,1,"Mont Valérien",48.873338,2.215955,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024467,1,"Croix du Roy",48.860944,2.212828,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024525,1,"Fleuriste Municipal",48.847982,2.251732,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024527,1,"Lenglen",48.847998,2.248184,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024533,1,"Passerelle de l'Avre",48.853723,2.226465,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024534,1,"Hippodrome de Longchamp",48.861625,2.228982,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024536,1,"Étang de l'Abbaye",48.867138,2.233112,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024537,1,"Les Moulins / Camping",48.865042,2.234188,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024538,1,"Rue des Bourets / Pont de Suresnes",48.86768,2.226197,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024546,1,"Jacques Decour",48.874467,2.220994,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024559,1,"Stresemann",48.863025,2.204644,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024561,1,"Stalingrad",48.863337,2.201918,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024563,1,"Grotius",48.861561,2.201589,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024572,1,"Les Géraniums",48.873066,2.202022,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024576,1,"Voltaire",48.877163,2.198873,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024578,1,"Fabre d'Églantine",48.877795,2.19601,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024580,1,"Danton / Gambetta",48.878549,2.193233,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024582,1,"Lienard",48.878931,2.187679,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024584,1,"Le Gué",48.879845,2.185496,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024586,1,"Brossolette",48.881636,2.18404,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024588,1,"Baudin",48.884325,2.176864,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024594,1,"Maistrasse",48.861586,2.199955,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024598,1,"Passerelle de l'Avre",48.852645,2.226849,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024617,1,"Place de la Paix",48.864743,2.205729,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024802,1,"Paix / Verdun",48.900531,2.26069,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024804,1,"Ulbach",48.901681,2.264212,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024819,1,"Stade de Gennevilliers",48.899008,2.257939,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024822,1,"Carnot",48.893204,2.247453,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024825,1,"Alma Baudin",48.896474,2.252661,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024827,1,"Hérold - Mairie de Courbevoie",48.897277,2.256306,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024829,1,"Stade Jean Blot",48.899318,2.257843,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024835,1,"Europe",48.904992,2.256542,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024839,1,"Les Bruyères",48.905932,2.264336,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024841,1,"Europe",48.90572,2.256715,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024873,1,"Foch / 19 Janvier",48.849166,2.200809,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024875,1,"Les Cliquets",48.849896,2.198372,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024877,1,"La Verboise",48.85121,2.192505,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024879,1,"Régnault",48.850481,2.191064,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024881,1,"4 Vents",48.84809,2.195054,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024883,1,"Sylvain Vigneras",48.846844,2.193593,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024887,1,"Charles Devos",48.844102,2.186234,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024896,1,"Pasteur",48.838067,2.179471,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024907,1,"Hautes Patures",48.918169,2.220723,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024909,1,"Periparc",48.916285,2.21948,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024911,1,"Rue des Hautes Patures / N 11",48.914112,2.216458,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024913,1,"Les Peupliers",48.91274,2.215281,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024917,1,"Les Pâquerettes",48.908732,2.215332,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024919,1,"Dequéant",48.906947,2.218117,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024921,1,"Pont des Fondrières",48.906645,2.222153,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024923,1,"Noël Pons",48.904941,2.221066,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024929,1,"Pascal",48.89932,2.208818,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024937,1,"Ernest Renan",48.895914,2.189457,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024941,1,"Les Guilleraies",48.894503,2.182285,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024943,1,"Parc de l'Île",48.893389,2.178778,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024945,1,"Lavoisier",48.894924,2.174337,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024947,1,"Sainte-Claire / Deville",48.893145,2.171521,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024949,1,"Claude Monet",48.890628,2.167802,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024982,1,"Sous Préfecture",48.831334,2.230229,,1,,Europe/Paris,,OIF, +OIF:SA:59:4024986,1,"Stade de Boulogne Billancourt",48.836675,2.227931,,1,,Europe/Paris,,OIF, +OIF:SA:59:4025003,1,"Porte Jaune / Pasteur",48.841616,2.2003,,1,,Europe/Paris,,OIF, +OIF:SA:59:4025005,1,"Grande Rue",48.843287,2.199186,,1,,Europe/Paris,,OIF, +OIF:SA:59:4025006,1,"Les Croissants",48.845119,2.19835,,1,,Europe/Paris,,OIF, +OIF:SA:59:4025007,1,"Tahère",48.847006,2.198018,,1,,Europe/Paris,,OIF, +OIF:SA:59:4025011,1,"Les Suisses",48.8547,2.198298,,1,,Europe/Paris,,OIF, +OIF:SA:59:4025012,1,"Église de Buzenval",48.856728,2.19353,,1,,Europe/Paris,,OIF, +OIF:SA:59:4025018,1,"Piscine Buzenval",48.860354,2.177694,,1,,Europe/Paris,,OIF, +OIF:SA:59:4025022,1,"Bretagne",48.865676,2.170516,,1,,Europe/Paris,,OIF, +OIF:SA:59:4025024,1,"Général de Miribel",48.867375,2.175826,,1,,Europe/Paris,,OIF, +OIF:SA:59:4025026,1,"Collège Jules Verne",48.865209,2.178748,,1,,Europe/Paris,,OIF, +OIF:SA:59:4025032,1,"Zurich",48.871336,2.183634,,1,,Europe/Paris,,OIF, +OIF:SA:59:4025034,1,"Place Richelieu",48.873342,2.18214,,1,,Europe/Paris,,OIF, +OIF:SA:59:4025039,1,"Albert 1er - Rueil - Ville",48.880677,2.179682,,1,,Europe/Paris,,OIF, +OIF:SA:59:4025042,1,"Colmar",48.88619,2.175332,,1,,Europe/Paris,,OIF, +OIF:SA:59:4025048,1,"Le Champtier",48.858008,2.18445,,1,,Europe/Paris,,OIF, +OIF:SA:59:4025051,1,"Champ de Courses",48.85122,2.204871,,1,,Europe/Paris,,OIF, +OIF:SA:59:4025053,1,"Tahère",48.846988,2.197705,,1,,Europe/Paris,,OIF, +OIF:SA:59:4025054,1,"Les Croissants",48.84502,2.198146,,1,,Europe/Paris,,OIF, +OIF:SA:59:4025055,1,"Grande Rue",48.842424,2.198875,,1,,Europe/Paris,,OIF, +OIF:SA:59:4025231,1,"Chemin de l'Île",48.899501,2.190449,,1,,Europe/Paris,,OIF, +OIF:SA:59:4025233,1,"Zilina",48.897846,2.192914,,1,,Europe/Paris,,OIF, +OIF:SA:59:4025234,1,"Benoit Frachon",48.895197,2.191101,,1,,Europe/Paris,,OIF, +OIF:SA:59:4025240,1,"Thomas Lemaître",48.890074,2.190244,,1,,Europe/Paris,,OIF, +OIF:SA:59:4025245,1,"Saint-Cloud",48.882654,2.201268,,1,,Europe/Paris,,OIF, +OIF:SA:59:4025254,1,"Cimetière / Parc du Mont Valérien",48.876254,2.208241,,1,,Europe/Paris,,OIF, +OIF:SA:59:4025256,1,"Gambetta",48.88773,2.199926,,1,,Europe/Paris,,OIF, +OIF:SA:59:4025313,1,"Collège la Malmaison",48.873482,2.168954,,1,,Europe/Paris,,OIF, +OIF:SA:59:4025314,1,"Place Osiris",48.87465,2.169073,,1,,Europe/Paris,,OIF, +OIF:SA:59:4025318,1,"George Sand",48.87182,2.176167,,1,,Europe/Paris,,OIF, +OIF:SA:59:4025319,1,"Tuck Stell",48.869065,2.172483,,1,,Europe/Paris,,OIF, +OIF:SA:59:4025321,1,"Bois Saint-Père",48.864041,2.165934,,1,,Europe/Paris,,OIF, +OIF:SA:59:4025322,1,"Bergerie",48.863317,2.162925,,1,,Europe/Paris,,OIF, +OIF:SA:59:4025323,1,"Les Pince-Vins",48.862,2.159116,,1,,Europe/Paris,,OIF, +OIF:SA:59:4025338,1,"Fond Louvet",48.866142,2.184562,,1,,Europe/Paris,,OIF, +OIF:SA:59:4025339,1,"Primevères",48.865099,2.187433,,1,,Europe/Paris,,OIF, +OIF:SA:59:4025341,1,"19 Janvier",48.86357,2.190489,,1,,Europe/Paris,,OIF, +OIF:SA:59:4025348,1,"Place de Buzenval",48.857395,2.190132,,1,,Europe/Paris,,OIF, +OIF:SA:59:4025353,1,"Droits de l'Homme",48.895621,2.216139,,1,,Europe/Paris,,OIF, +OIF:SA:59:4025356,1,"Les Terrasses",48.894849,2.2271,,1,,Europe/Paris,,OIF, +OIF:SA:59:4025359,1,"Maxime Gorki",48.891252,2.2292,,1,,Europe/Paris,,OIF, +OIF:SA:59:4025363,1,"Watford",48.8859,2.224523,,1,,Europe/Paris,,OIF, +OIF:SA:59:4025367,1,"Rue des Écoles",48.887336,2.217249,,1,,Europe/Paris,,OIF, +OIF:SA:59:4025371,1,"Luaps",48.880669,2.210369,,1,,Europe/Paris,,OIF, +OIF:SA:59:4025372,1,"Les Damades",48.88312,2.208156,,1,,Europe/Paris,,OIF, +OIF:SA:59:4025378,1,"Place de la Boule / Gambetta",48.887371,2.199941,,1,,Europe/Paris,,OIF, +OIF:SA:59:4025384,1,"Pasteur",48.885325,2.219707,,1,,Europe/Paris,,OIF, +OIF:SA:59:4028833,1,"Rue de la Marne",48.840458,2.51906,,1,,Europe/Paris,,OIF, +OIF:SA:59:4028834,1,"Avenue de Rigny",48.837934,2.518479,,1,,Europe/Paris,,OIF, +OIF:SA:59:4028846,1,"Rue de Beauté",48.836521,2.479699,,1,,Europe/Paris,,OIF, +OIF:SA:59:4028850,1,"Rue du Port",48.835949,2.488445,,1,,Europe/Paris,,OIF, +OIF:SA:59:4028885,1,"2 Décembre 1870",48.833712,2.525353,,1,,Europe/Paris,,OIF, +OIF:SA:59:4028887,1,"Hôpital Saint-Camille",48.833162,2.527452,,1,,Europe/Paris,,OIF, +OIF:SA:59:4028889,1,"Georges Méliès",48.832525,2.531428,,1,,Europe/Paris,,OIF, +OIF:SA:59:4028891,1,"Route de Bry / Aristide Briand",48.831351,2.534622,,1,,Europe/Paris,,OIF, +OIF:SA:59:4028895,1,"Mairie",48.826183,2.540408,,1,,Europe/Paris,,OIF, +OIF:SA:59:4028905,1,"Église",48.827245,2.542019,,1,,Europe/Paris,,OIF, +OIF:SA:59:4035479,1,"Maison des Jeunes",48.902746,2.568178,,1,,Europe/Paris,,OIF, +OIF:SA:59:4035480,1,"Tuilerie",48.90443,2.565035,,1,,Europe/Paris,,OIF, +OIF:SA:59:4035483,1,"Émile Zola",48.90673,2.556904,,1,,Europe/Paris,,OIF, +OIF:SA:59:4035489,1,"La Lorette",48.909436,2.549707,,1,,Europe/Paris,,OIF, +OIF:SA:59:4035503,1,"Allée des Bosquets",48.901704,2.519602,,1,,Europe/Paris,,OIF, +OIF:SA:59:4035511,1,"Président Wilson / Mairie",48.903018,2.507883,,1,,Europe/Paris,,OIF, +OIF:SA:59:4035513,1,"Pierre Brossolette / la Basoche",48.904308,2.504595,,1,,Europe/Paris,,OIF, +OIF:SA:59:4035515,1,"Jean-Baptiste Clément - Jaurès",48.905837,2.500612,,1,,Europe/Paris,,OIF, +OIF:SA:59:4035517,1,"Pavillons de Garde",48.907789,2.495847,,1,,Europe/Paris,,OIF, +OIF:SA:59:4035526,1,"Pont de Bondy",48.906051,2.469447,,1,,Europe/Paris,,OIF, +OIF:SA:59:4035542,1,"Avenue de Metz",48.896874,2.43228,,1,,Europe/Paris,,OIF, +OIF:SA:59:4035572,1,"Les Gazelles",48.902929,2.564158,,1,,Europe/Paris,,OIF, +OIF:SA:59:4035573,1,"Paul Bert",48.90027,2.567218,,1,,Europe/Paris,,OIF, +OIF:SA:59:4035676,1,"L'Avenir",48.96442,2.388654,,1,,Europe/Paris,,OIF, +OIF:SA:59:4035699,1,"Crèvecœur",48.918904,2.382342,,1,,Europe/Paris,,OIF, +OIF:SA:59:4035710,1,"Skanderbeg",48.900009,2.370671,,1,,Europe/Paris,,OIF, +OIF:SA:59:4035716,1,"Boucry",48.895315,2.359348,,1,,Europe/Paris,,OIF, +OIF:SA:59:4035718,1,"Les Roses",48.892835,2.359687,,1,,Europe/Paris,,OIF, +OIF:SA:59:4035722,1,"Département / Marx Dormoy",48.887119,2.359685,,1,,Europe/Paris,,OIF, +OIF:SA:59:4035749,1,"Cimetière",48.950127,2.457246,,1,,Europe/Paris,,OIF, +OIF:SA:59:4035750,1,"Cosmonautes",48.949318,2.455529,,1,,Europe/Paris,,OIF, +OIF:SA:59:4035781,1,"176 / 191 Avenue Paul Vaillant Couturier",48.927549,2.417981,,1,,Europe/Paris,,OIF, +OIF:SA:59:4035806,1,"Maroc / Flandre",48.885903,2.371077,,1,,Europe/Paris,,OIF, +OIF:SA:59:4035826,1,"Mairie",48.923222,2.446004,,1,,Europe/Paris,,OIF, +OIF:SA:59:4035827,1,"Rond-Point de la Division Leclerc",48.947618,2.458529,,1,,Europe/Paris,,OIF, +OIF:SA:59:4035934,1,"Les Marronniers",48.822395,2.49223,,1,,Europe/Paris,,OIF, +OIF:SA:59:4035936,1,"La Fourchette",48.820009,2.485343,,1,,Europe/Paris,,OIF, +OIF:SA:59:4035944,1,"Croix Souris",48.809571,2.471102,,1,,Europe/Paris,,OIF, +OIF:SA:59:4035958,1,"Viet",48.800935,2.450376,,1,,Europe/Paris,,OIF, +OIF:SA:59:4035967,1,"8 Mai 1945",48.810433,2.432115,,1,,Europe/Paris,,OIF, +OIF:SA:59:4035973,1,"Théâtre de Charenton",48.823498,2.410612,,1,,Europe/Paris,,OIF, +OIF:SA:59:4035977,1,"Félix Langlais",48.829076,2.401969,,1,,Europe/Paris,,OIF, +OIF:SA:59:4035993,1,"Charenton / Jardiniers",48.833376,2.395106,,1,,Europe/Paris,,OIF, +OIF:SA:59:4035995,1,"Pont de Charenton",48.81775,2.418674,,1,,Europe/Paris,,OIF, +OIF:SA:59:4036000,1,"42ème de Ligne",48.81919,2.482523,,1,,Europe/Paris,,OIF, +OIF:SA:59:4036001,1,"Pierre Brossolette",48.82962,2.49332,,1,,Europe/Paris,,OIF, +OIF:SA:59:4036169,1,"Voltaire",48.814732,2.537887,,1,,Europe/Paris,,OIF, +OIF:SA:59:4036184,1,"Les Platanes",48.820062,2.478429,,1,,Europe/Paris,,OIF, +OIF:SA:59:4036195,1,"Aubert",48.845636,2.423055,,1,,Europe/Paris,,OIF, +OIF:SA:59:4036622,1,"Fraternité",48.859845,2.423113,,1,,Europe/Paris,,OIF, +OIF:SA:59:4036623,1,"République / Robespierre",48.860413,2.420437,,1,,Europe/Paris,,OIF, +OIF:SA:59:4036788,1,"Vandrezanne",48.82791,2.356773,,1,,Europe/Paris,,OIF, +OIF:SA:59:4036808,1,"Dispensaire Danielle Casanova",48.798738,2.366306,,1,,Europe/Paris,,OIF, +OIF:SA:59:4036819,1,"Lagrange",48.851823,2.34795,,1,,Europe/Paris,,OIF, +OIF:SA:59:4036917,1,"Carnot / Aristide Briand",48.799559,2.323532,,1,,Europe/Paris,,OIF, +OIF:SA:59:4037167,1,"Aubert",48.846103,2.422859,,1,,Europe/Paris,,OIF, +OIF:SA:59:4037719,1,"Émile Zola",48.924565,2.209212,,1,,Europe/Paris,,OIF, +OIF:SA:59:4037740,1,"Dieppe",48.899934,2.239848,,1,,Europe/Paris,,OIF, +OIF:SA:59:4037800,1,"Gambetta",48.891924,2.24293,,1,,Europe/Paris,,OIF, +OIF:SA:59:4109752,1,"Bellevue",48.846161,2.507137,,1,,Europe/Paris,,OIF, +OIF:SA:59:4109754,1,"Bords de Marne",48.849115,2.508768,,1,,Europe/Paris,,OIF, +OIF:SA:59:4109765,1,"Georges Pompidou",48.864165,2.516846,,1,,Europe/Paris,,OIF, +OIF:SA:59:4109767,1,"Marcel Dassault",48.865494,2.515402,,1,,Europe/Paris,,OIF, +OIF:SA:59:4109769,1,"Alexander Fleming",48.864815,2.512695,,1,,Europe/Paris,,OIF, +OIF:SA:59:4109771,1,"Kennedy / Renouillères",48.865401,2.511655,,1,,Europe/Paris,,OIF, +OIF:SA:59:4109773,1,"Rue des Hersiers",48.866716,2.509344,,1,,Europe/Paris,,OIF, +OIF:SA:59:4109775,1,"Etienne Dolet",48.867445,2.505818,,1,,Europe/Paris,,OIF, +OIF:SA:59:4109777,1,"Bel Air",48.86989,2.505526,,1,,Europe/Paris,,OIF, +OIF:SA:59:4109779,1,"Avenue de Rosny",48.872246,2.507727,,1,,Europe/Paris,,OIF, +OIF:SA:59:4109781,1,"Plateau d'Avron / Place de Stalingrad",48.872956,2.510584,,1,,Europe/Paris,,OIF, +OIF:SA:59:4109783,1,"Parmentier",48.876146,2.507917,,1,,Europe/Paris,,OIF, +OIF:SA:59:4109784,1,"Marcel Douret",48.879701,2.510777,,1,,Europe/Paris,,OIF, +OIF:SA:59:4109785,1,"Hoche",48.881559,2.512064,,1,,Europe/Paris,,OIF, +OIF:SA:59:4109788,1,"Général Leclerc",48.886286,2.509797,,1,,Europe/Paris,,OIF, +OIF:SA:59:4109794,1,"Marius Gonin",48.891547,2.506796,,1,,Europe/Paris,,OIF, +OIF:SA:59:4109799,1,"Charles Hildevert",48.893996,2.506899,,1,,Europe/Paris,,OIF, +OIF:SA:59:4109802,1,"Caves d'Avron",48.874639,2.51204,,1,,Europe/Paris,,OIF, +OIF:SA:59:4109803,1,"Mairie",48.860179,2.505808,,1,,Europe/Paris,,OIF, +OIF:SA:59:4109804,1,"Jean Jaurès / Victor Hugo",48.85883,2.506307,,1,,Europe/Paris,,OIF, +OIF:SA:59:4109805,1,"La Maltournée",48.85144,2.510913,,1,,Europe/Paris,,OIF, +OIF:SA:59:4109806,1,"Hôtel des Coignard",48.838335,2.488336,,1,,Europe/Paris,,OIF, +OIF:SA:59:4109810,1,"Château de Villemomble",48.884013,2.510546,,1,,Europe/Paris,,OIF, +OIF:SA:59:4109811,1,"Marceau",48.882509,2.514234,,1,,Europe/Paris,,OIF, +OIF:SA:59:4109812,1,"Lucien Berneux",48.877734,2.515703,,1,,Europe/Paris,,OIF, +OIF:SA:59:4109823,1,"Cimetière de Neuilly Plaisance",48.863183,2.513425,,1,,Europe/Paris,,OIF, +OIF:SA:59:4109827,1,"Faidherbe / Église",48.856929,2.509216,,1,,Europe/Paris,,OIF, +OIF:SA:59:4109832,1,"Docteur Charcot",48.8824,2.199273,,1,,Europe/Paris,,OIF, +OIF:SA:59:4109834,1,"Les Gibets",48.880464,2.19613,,1,,Europe/Paris,,OIF, +OIF:SA:59:4109842,1,"Le Brix",48.874771,2.196459,,1,,Europe/Paris,,OIF, +OIF:SA:59:4109845,1,"Les Godardes",48.872809,2.194893,,1,,Europe/Paris,,OIF, +OIF:SA:59:4109846,1,"La Paix",48.870529,2.196089,,1,,Europe/Paris,,OIF, +OIF:SA:59:4109848,1,"Racine",48.86912,2.198041,,1,,Europe/Paris,,OIF, +OIF:SA:59:4109850,1,"La Chapelle",48.870407,2.199815,,1,,Europe/Paris,,OIF, +OIF:SA:59:4109852,1,"Place du 8 Mai 1945",48.871252,2.204003,,1,,Europe/Paris,,OIF, +OIF:SA:59:4109854,1,"Buffon",48.869951,2.209442,,1,,Europe/Paris,,OIF, +OIF:SA:59:4109856,1,"Avenue des Landes",48.868225,2.213533,,1,,Europe/Paris,,OIF, +OIF:SA:59:4109857,1,"Washington",48.870201,2.217404,,1,,Europe/Paris,,OIF, +OIF:SA:59:4109865,1,"École Jules Ferry",48.883356,2.202268,,1,,Europe/Paris,,OIF, +OIF:SA:59:4117664,1,"Escadrille Normandie / Niemen",48.913792,2.435365,,1,,Europe/Paris,,OIF, +OIF:SA:59:4117666,1,"Chavez / Nieuport",48.917115,2.436169,,1,,Europe/Paris,,OIF, +OIF:SA:59:4117668,1,"Danton",48.919629,2.438267,,1,,Europe/Paris,,OIF, +OIF:SA:59:4117670,1,"Georges Ducerf",48.921204,2.440752,,1,,Europe/Paris,,OIF, +OIF:SA:59:4117676,1,"Cimetière",48.924798,2.447633,,1,,Europe/Paris,,OIF, +OIF:SA:59:4117678,1,"Henri Rouanet",48.927185,2.45115,,1,,Europe/Paris,,OIF, +OIF:SA:59:4117680,1,"Brément",48.93017,2.454478,,1,,Europe/Paris,,OIF, +OIF:SA:59:4117697,1,"Altrincham",48.948313,2.451234,,1,,Europe/Paris,,OIF, +OIF:SA:59:4117699,1,"Altrincham / Lénine",48.947767,2.448525,,1,,Europe/Paris,,OIF, +OIF:SA:59:4117701,1,"Église Saint-Charles",48.946211,2.445223,,1,,Europe/Paris,,OIF, +OIF:SA:59:4117702,1,"Louis Blériot",48.946808,2.440708,,1,,Europe/Paris,,OIF, +OIF:SA:59:4118161,1,"Lille",48.90785,2.472049,,1,,Europe/Paris,,OIF, +OIF:SA:59:4118169,1,"Robert Schuman",48.916296,2.497236,,1,,Europe/Paris,,OIF, +OIF:SA:59:4124820,1,"Carrefour des Poulets",48.785862,2.332607,,1,,Europe/Paris,,OIF, +OIF:SA:59:4124823,1,"Mairie",48.79465,2.334178,,1,,Europe/Paris,,OIF, +OIF:SA:59:4124824,1,"Cousin de Méricourt",48.797556,2.333477,,1,,Europe/Paris,,OIF, +OIF:SA:59:4124829,1,"Bout du Rang / Picasso",48.811756,2.346078,,1,,Europe/Paris,,OIF, +OIF:SA:59:4124830,1,"Reine Blanche",48.813643,2.347861,,1,,Europe/Paris,,OIF, +OIF:SA:59:4124832,1,"Verdun",48.816887,2.353482,,1,,Europe/Paris,,OIF, +OIF:SA:59:4124834,1,"Damesme",48.820302,2.356335,,1,,Europe/Paris,,OIF, +OIF:SA:59:4146013,1,"Quatre Chemins",48.944007,2.185166,,1,,Europe/Paris,,OIF, +OIF:SA:59:4179705,1,"Langevin / Wallon",48.927182,2.380363,,1,,Europe/Paris,,OIF, +OIF:SA:59:4179706,1,"Genève",48.925907,2.376525,,1,,Europe/Paris,,OIF, +OIF:SA:59:4179709,1,"Rue de Montfort",48.927788,2.370682,,1,,Europe/Paris,,OIF, +OIF:SA:59:4179711,1,"Lycée Suger",48.929074,2.366202,,1,,Europe/Paris,,OIF, +OIF:SA:59:4179713,1,"Parc de la Légion d'Honneur",48.931402,2.364312,,1,,Europe/Paris,,OIF, +OIF:SA:59:4179718,1,"Place Lanne",48.932581,2.357488,,1,,Europe/Paris,,OIF, +OIF:SA:59:4179724,1,"Avenue Saint-Rémy",48.935831,2.368382,,1,,Europe/Paris,,OIF, +OIF:SA:59:4179726,1,"Marville",48.937224,2.371391,,1,,Europe/Paris,,OIF, +OIF:SA:59:4179728,1,"Clovis Hugues",48.941694,2.372076,,1,,Europe/Paris,,OIF, +OIF:SA:59:4179730,1,"Henri Barbusse",48.946855,2.371104,,1,,Europe/Paris,,OIF, +OIF:SA:59:4179736,1,"Émile Zola",48.952717,2.369961,,1,,Europe/Paris,,OIF, +OIF:SA:59:4179738,1,"Charles Péguy",48.953453,2.37499,,1,,Europe/Paris,,OIF, +OIF:SA:59:4179740,1,"Nelson Mandela",48.951215,2.375575,,1,,Europe/Paris,,OIF, +OIF:SA:59:4179742,1,"Marcel Pointet",48.951669,2.381808,,1,,Europe/Paris,,OIF, +OIF:SA:59:4179744,1,"François Bègue",48.952132,2.38491,,1,,Europe/Paris,,OIF, +OIF:SA:59:4179745,1,"Mairie",48.955463,2.383156,,1,,Europe/Paris,,OIF, +OIF:SA:59:4179747,1,"Marcel Cachin / Desnos",48.93935,2.369189,,1,,Europe/Paris,,OIF, +OIF:SA:59:4179749,1,"Gabriel Péri / Franklin",48.934738,2.35577,,1,,Europe/Paris,,OIF, +OIF:SA:59:4179753,1,"Genève",48.926123,2.377698,,1,,Europe/Paris,,OIF, +OIF:SA:59:4180934,1,"Collège Molière",48.803507,2.53753,,1,,Europe/Paris,,OIF, +OIF:SA:59:4199317,1,"Mairie",48.868834,2.416757,,1,,Europe/Paris,,OIF, +OIF:SA:59:4199321,1,"Pierre Curie",48.868975,2.42413,,1,,Europe/Paris,,OIF, +OIF:SA:59:4199323,1,"Charles Delescluze",48.865702,2.426174,,1,,Europe/Paris,,OIF, +OIF:SA:59:4199325,1,"La Noue",48.866042,2.427932,,1,,Europe/Paris,,OIF, +OIF:SA:59:4199327,1,"Delpeche",48.864118,2.429911,,1,,Europe/Paris,,OIF, +OIF:SA:59:4199329,1,"Clos Français",48.865558,2.432107,,1,,Europe/Paris,,OIF, +OIF:SA:59:4199331,1,"Rabelais",48.862858,2.436754,,1,,Europe/Paris,,OIF, +OIF:SA:59:4199340,1,"Eugène Varlin",48.860867,2.447728,,1,,Europe/Paris,,OIF, +OIF:SA:59:4199342,1,"Collège Jean Moulin",48.859899,2.449804,,1,,Europe/Paris,,OIF, +OIF:SA:59:4199344,1,"Nouveau Cimetière de Montreuil",48.861253,2.453266,,1,,Europe/Paris,,OIF, +OIF:SA:59:4199346,1,"Saint-Just",48.861223,2.456202,,1,,Europe/Paris,,OIF, +OIF:SA:59:4199348,1,"Lenain de Tillemont",48.860707,2.459803,,1,,Europe/Paris,,OIF, +OIF:SA:59:4199352,1,"Les Ruffins",48.863912,2.467235,,1,,Europe/Paris,,OIF, +OIF:SA:59:4199354,1,"Parc de Montreau",48.866313,2.469571,,1,,Europe/Paris,,OIF, +OIF:SA:59:4199356,1,"Babeuf",48.866954,2.474858,,1,,Europe/Paris,,OIF, +OIF:SA:59:4199358,1,"Charles Delavacquerie",48.866215,2.477185,,1,,Europe/Paris,,OIF, +OIF:SA:59:4199360,1,"Le Morillon",48.864456,2.478652,,1,,Europe/Paris,,OIF, +OIF:SA:59:4199364,1,"La Fontaine",48.857883,2.481317,,1,,Europe/Paris,,OIF, +OIF:SA:59:4199366,1,"Jean Macé",48.856242,2.481946,,1,,Europe/Paris,,OIF, +OIF:SA:59:4199375,1,"Louise Michel",48.867773,2.470725,,1,,Europe/Paris,,OIF, +OIF:SA:59:4199378,1,"Marie Anne Colombier",48.870759,2.417382,,1,,Europe/Paris,,OIF, +OIF:SA:59:4208523,1,"Route de Neuilly",48.847603,2.539417,,1,,Europe/Paris,,OIF, +OIF:SA:59:4208525,1,"Pasteur",48.847078,2.548579,,1,,Europe/Paris,,OIF, +OIF:SA:59:4208536,1,"Les Rosiers",48.855874,2.57657,,1,,Europe/Paris,,OIF, +OIF:SA:59:4208538,1,"Place Winston Churchill",48.858546,2.581616,,1,,Europe/Paris,,OIF, +OIF:SA:59:4208551,1,"Les 2 Parcs",48.85213,2.613808,,1,,Europe/Paris,,OIF, +OIF:SA:59:4208552,1,"Le Carré du Faon",48.850764,2.613937,,1,,Europe/Paris,,OIF, +OIF:SA:59:4208554,1,"Square de Diane",48.849487,2.616034,,1,,Europe/Paris,,OIF, +OIF:SA:59:4208580,1,"Ferme du Couvent",48.852795,2.65514,,1,,Europe/Paris,,OIF, +OIF:SA:59:4208582,1,"Le Clos",48.855349,2.656313,,1,,Europe/Paris,,OIF, +OIF:SA:59:4208584,1,"Les Bondrolles",48.851632,2.658428,,1,,Europe/Paris,,OIF, +OIF:SA:59:4208598,1,"Les 2 Parcs",48.852292,2.614,,1,,Europe/Paris,,OIF, +OIF:SA:59:4208600,1,"Chemin de la Baronnerie",48.848411,2.541762,,1,,Europe/Paris,,OIF, +OIF:SA:59:4208610,1,"Pesaro",48.893339,2.226681,,1,,Europe/Paris,,OIF, +OIF:SA:59:4208620,1,"Champs Pierreux",48.886564,2.209932,,1,,Europe/Paris,,OIF, +OIF:SA:59:4208621,1,"Suresnes",48.88355,2.215677,,1,,Europe/Paris,,OIF, +OIF:SA:59:4208622,1,"Paul Bertin",48.881868,2.214005,,1,,Europe/Paris,,OIF, +OIF:SA:59:4208625,1,"Libération",48.884961,2.206639,,1,,Europe/Paris,,OIF, +OIF:SA:59:4208632,1,"Plainchamp-Rochet",48.89138,2.200476,,1,,Europe/Paris,,OIF, +OIF:SA:59:4208637,1,"Les Chènevreux",48.885537,2.207278,,1,,Europe/Paris,,OIF, +OIF:SA:59:4208638,1,"Daniel Becker",48.881801,2.20686,,1,,Europe/Paris,,OIF, +OIF:SA:59:4208639,1,"Les Louvetiers",48.881337,2.213148,,1,,Europe/Paris,,OIF, +OIF:SA:59:4208642,1,"Aime Césaire",48.893277,2.227512,,1,,Europe/Paris,,OIF, +OIF:SA:59:4211734,1,"Les Lochères",48.977109,2.390598,,1,,Europe/Paris,,OIF, +OIF:SA:59:4211742,1,"Raoul Dufy",48.973088,2.375752,,1,,Europe/Paris,,OIF, +OIF:SA:59:4211761,1,"Lycée Paul Éluard",48.941554,2.364916,,1,,Europe/Paris,,OIF, +OIF:SA:59:4211762,1,"Cité Langevin",48.938848,2.360703,,1,,Europe/Paris,,OIF, +OIF:SA:59:4211767,1,"Denfert Rochereau",48.934172,2.350144,,1,,Europe/Paris,,OIF, +OIF:SA:59:4211771,1,"Ambroise Croizat",48.927162,2.352208,,1,,Europe/Paris,,OIF, +OIF:SA:59:4211774,1,"Les Renouillères",48.917331,2.340417,,1,,Europe/Paris,,OIF, +OIF:SA:59:4211810,1,"La Plaine Saulnier",48.925383,2.352132,,1,,Europe/Paris,,OIF, +OIF:SA:59:4230051,1,"Sous-Préfecture",48.989291,2.376252,,1,,Europe/Paris,,OIF, +OIF:SA:59:4230053,1,"My Place",48.986195,2.374924,,1,,Europe/Paris,,OIF, +OIF:SA:59:4230055,1,"Raymond Rochon",48.982705,2.371558,,1,,Europe/Paris,,OIF, +OIF:SA:59:4230057,1,"Collège Chantereine",48.982476,2.373544,,1,,Europe/Paris,,OIF, +OIF:SA:59:4230059,1,"Louis Lebrun",48.9804,2.372833,,1,,Europe/Paris,,OIF, +OIF:SA:59:4230069,1,"Suzanne Valadon",48.972808,2.381639,,1,,Europe/Paris,,OIF, +OIF:SA:59:4230071,1,"Maurice Ravel",48.975849,2.382686,,1,,Europe/Paris,,OIF, +OIF:SA:59:4238635,1,"Bois d'Ecouen",49.012478,2.367985,,1,,Europe/Paris,,OIF, +OIF:SA:59:4238637,1,"Avenue du Rond-Point",49.00856,2.368433,,1,,Europe/Paris,,OIF, +OIF:SA:59:4238638,1,"Bel Air / Gosserots",49.006187,2.372352,,1,,Europe/Paris,,OIF, +OIF:SA:59:4238640,1,"Champ de Chartres",49.004805,2.373476,,1,,Europe/Paris,,OIF, +OIF:SA:59:4238642,1,"École Jules Ferry",49.002546,2.374662,,1,,Europe/Paris,,OIF, +OIF:SA:59:4238644,1,"Rue des Fauvettes",49.001122,2.375237,,1,,Europe/Paris,,OIF, +OIF:SA:59:4238646,1,"Maison de Retraite",48.998054,2.373732,,1,,Europe/Paris,,OIF, +OIF:SA:59:4238648,1,"Galvani - Voltaire",48.996041,2.370884,,1,,Europe/Paris,,OIF, +OIF:SA:59:4238682,1,"Léo Lagrange",48.956367,2.416089,,1,,Europe/Paris,,OIF, +OIF:SA:59:4238684,1,"Gabriel Péri",48.954484,2.416318,,1,,Europe/Paris,,OIF, +OIF:SA:59:4238691,1,"Cimetière du Bourget",48.939093,2.424111,,1,,Europe/Paris,,OIF, +OIF:SA:59:4238701,1,"Chemin des Coutures",49.008461,2.370113,,1,,Europe/Paris,,OIF, +OIF:SA:59:4238704,1,"Carnot",48.993228,2.373005,,1,,Europe/Paris,,OIF, +OIF:SA:59:4238706,1,"Théodore Bullier",48.991287,2.373878,,1,,Europe/Paris,,OIF, +OIF:SA:59:4238708,1,"Mozart / Malesherbes",48.987771,2.378873,,1,,Europe/Paris,,OIF, +OIF:SA:59:4238710,1,"Piscine",48.983763,2.380102,,1,,Europe/Paris,,OIF, +OIF:SA:59:4238720,1,"Jean Baptiste Corot / Lamartine",48.975832,2.395993,,1,,Europe/Paris,,OIF, +OIF:SA:59:4238722,1,"Charles de Gaulle / François Mitterrand",48.974248,2.398445,,1,,Europe/Paris,,OIF, +OIF:SA:59:4238724,1,"Mairie",48.971657,2.398599,,1,,Europe/Paris,,OIF, +OIF:SA:59:4238726,1,"Les Mûriers",48.970372,2.40248,,1,,Europe/Paris,,OIF, +OIF:SA:59:4238728,1,"Lino Ventura",48.967988,2.407064,,1,,Europe/Paris,,OIF, +OIF:SA:59:4238730,1,"Place du 19 Mars 1962",48.966085,2.409757,,1,,Europe/Paris,,OIF, +OIF:SA:59:4238732,1,"Declemy",48.962704,2.413205,,1,,Europe/Paris,,OIF, +OIF:SA:59:4238743,1,"La Comète",48.941162,2.421598,,1,,Europe/Paris,,OIF, +OIF:SA:59:4274243,1,"Victor Hugo",48.921811,2.263189,,1,,Europe/Paris,,OIF, +OIF:SA:59:4274245,1,"Cuny",48.92,2.269157,,1,,Europe/Paris,,OIF, +OIF:SA:59:4274247,1,"Amiral Courbet",48.918298,2.272351,,1,,Europe/Paris,,OIF, +OIF:SA:59:4274254,1,"Cloarec - Piscine",48.913086,2.265389,,1,,Europe/Paris,,OIF, +OIF:SA:59:4274256,1,"Joigneaux - Camus",48.910435,2.2648,,1,,Europe/Paris,,OIF, +OIF:SA:59:4274259,1,"Moulin des Bruyères",48.906691,2.261476,,1,,Europe/Paris,,OIF, +OIF:SA:59:4274261,1,"Michel Ricard",48.905475,2.2657,,1,,Europe/Paris,,OIF, +OIF:SA:59:4274270,1,"Chevreul",48.907717,2.266167,,1,,Europe/Paris,,OIF, +OIF:SA:59:4274272,1,"Cayron - Chefson",48.917047,2.277752,,1,,Europe/Paris,,OIF, +OIF:SA:59:4274279,1,"Anatole Sigonneau / Centre d'Affaires",48.952634,2.462102,,1,,Europe/Paris,,OIF, +OIF:SA:59:4274281,1,"Descartes / Renault",48.950488,2.464164,,1,,Europe/Paris,,OIF, +OIF:SA:59:4274286,1,"Maria Valtat",48.945528,2.445222,,1,,Europe/Paris,,OIF, +OIF:SA:59:4274291,1,"Division Leclerc / Wallon",48.947601,2.458174,,1,,Europe/Paris,,OIF, +OIF:SA:59:4274292,1,"Division Leclerc / Langevin",48.946746,2.459373,,1,,Europe/Paris,,OIF, +OIF:SA:59:4274293,1,"Libération",48.943653,2.465205,,1,,Europe/Paris,,OIF, +OIF:SA:59:4274295,1,"Audran",48.940408,2.462755,,1,,Europe/Paris,,OIF, +OIF:SA:59:4274297,1,"Mairie",48.938642,2.46109,,1,,Europe/Paris,,OIF, +OIF:SA:59:4274299,1,"Ancienne Mairie",48.937076,2.458825,,1,,Europe/Paris,,OIF, +OIF:SA:59:4274307,1,"Madelon",48.92692,2.459844,,1,,Europe/Paris,,OIF, +OIF:SA:59:4274308,1,"Cité des Coquelicots",48.92513,2.461286,,1,,Europe/Paris,,OIF, +OIF:SA:59:4274309,1,"Lycée Eugène Delacroix",48.923623,2.458814,,1,,Europe/Paris,,OIF, +OIF:SA:59:4274310,1,"Stade Charles Sage",48.926089,2.459563,,1,,Europe/Paris,,OIF, +OIF:SA:59:4274312,1,"Haussonville",48.927209,2.45889,,1,,Europe/Paris,,OIF, +OIF:SA:59:4274313,1,"Émile Desprez",48.929495,2.458609,,1,,Europe/Paris,,OIF, +OIF:SA:59:4274392,1,"Yvonne / Madeleine",48.75522,2.31313,,1,,Europe/Paris,,OIF, +OIF:SA:59:4274393,1,"8 Mai 1945",48.752811,2.313172,,1,,Europe/Paris,,OIF, +OIF:SA:59:4274397,1,"Centre Administratif",48.756048,2.321422,,1,,Europe/Paris,,OIF, +OIF:SA:59:4274398,1,"Albert Roper",48.753986,2.325242,,1,,Europe/Paris,,OIF, +OIF:SA:59:4274399,1,"Clos la Garenne",48.755487,2.327709,,1,,Europe/Paris,,OIF, +OIF:SA:59:4274400,1,"Cimetière de Fresnes",48.758817,2.334268,,1,,Europe/Paris,,OIF, +OIF:SA:59:4274403,1,"Avara - Gymnase Vallée aux Renards",48.765589,2.323486,,1,,Europe/Paris,,OIF, +OIF:SA:59:4274414,1,"Tennis",48.782042,2.343651,,1,,Europe/Paris,,OIF, +OIF:SA:59:4274415,1,"Centre Commercial",48.783966,2.345529,,1,,Europe/Paris,,OIF, +OIF:SA:59:4274418,1,"Stade l'Hayette",48.775863,2.343311,,1,,Europe/Paris,,OIF, +OIF:SA:59:4274419,1,"Chevilly - Dahlias",48.774663,2.348634,,1,,Europe/Paris,,OIF, +OIF:SA:59:4274422,1,"Rue de Lallier",48.774698,2.354978,,1,,Europe/Paris,,OIF, +OIF:SA:59:4274423,1,"Rue Paul Hochart",48.777115,2.360908,,1,,Europe/Paris,,OIF, +OIF:SA:59:4274424,1,"Domaine Chérioux",48.779294,2.367174,,1,,Europe/Paris,,OIF, +OIF:SA:59:4293177,1,"Ambroise Croizat",48.800529,2.355758,,1,,Europe/Paris,,OIF, +OIF:SA:59:4293179,1,"Place du 8 Mai 1945",48.798157,2.354966,,1,,Europe/Paris,,OIF, +OIF:SA:59:4293181,1,"Verdun / Grosménil",48.795235,2.355159,,1,,Europe/Paris,,OIF, +OIF:SA:59:4293197,1,"Docteur Durand",48.807316,2.33051,,1,,Europe/Paris,,OIF, +OIF:SA:59:4293208,1,"Place Jacques Carat - Théâtre",48.792846,2.336157,,1,,Europe/Paris,,OIF, +OIF:SA:59:4293210,1,"Blum / Belgrand",48.789983,2.336804,,1,,Europe/Paris,,OIF, +OIF:SA:59:4293214,1,"Blum / Frette",48.784654,2.338456,,1,,Europe/Paris,,OIF, +OIF:SA:59:4293216,1,"Rue du 11 Novembre 1918",48.781917,2.337518,,1,,Europe/Paris,,OIF, +OIF:SA:59:4293220,1,"Quartier de la Gare",48.802777,2.324633,,1,,Europe/Paris,,OIF, +OIF:SA:59:4293222,1,"Jean Jaurès",48.810184,2.330646,,1,,Europe/Paris,,OIF, +OIF:SA:59:4293247,1,"Piscine",48.808259,2.356092,,1,,Europe/Paris,,OIF, +OIF:SA:59:4296818,1,"Les Gibets",48.879813,2.200206,,1,,Europe/Paris,,OIF, +OIF:SA:59:4314742,1,"Cimetière",48.719515,2.269962,,1,,Europe/Paris,,OIF, +OIF:SA:59:4314744,1,"Galvani Sud",48.722639,2.271045,,1,,Europe/Paris,,OIF, +OIF:SA:59:4314747,1,"Galvani Nord",48.724198,2.268998,,1,,Europe/Paris,,OIF, +OIF:SA:59:4314752,1,"Gabriel Péri",48.72932,2.276131,,1,,Europe/Paris,,OIF, +OIF:SA:59:4314754,1,"Jean Mermoz",48.728113,2.279373,,1,,Europe/Paris,,OIF, +OIF:SA:59:4314756,1,"Australie",48.727868,2.283246,,1,,Europe/Paris,,OIF, +OIF:SA:59:4314758,1,"Moscou / Rome",48.729886,2.28503,,1,,Europe/Paris,,OIF, +OIF:SA:59:4314760,1,"Hélène Boucher",48.731864,2.284634,,1,,Europe/Paris,,OIF, +OIF:SA:59:4314762,1,"Avenue Saint-Marc",48.733065,2.287024,,1,,Europe/Paris,,OIF, +OIF:SA:59:4314768,1,"Ampère Nord",48.721933,2.263153,,1,,Europe/Paris,,OIF, +OIF:SA:59:4314772,1,"Ampère Sud",48.719401,2.266349,,1,,Europe/Paris,,OIF, +OIF:SA:59:4314798,1,"Biarritz",48.734856,2.294116,,1,,Europe/Paris,,OIF, +OIF:SA:59:4314800,1,"Périgord",48.736192,2.297804,,1,,Europe/Paris,,OIF, +OIF:SA:59:4314802,1,"Saussaye / Mirabeau",48.738804,2.298978,,1,,Europe/Paris,,OIF, +OIF:SA:59:4314803,1,"Petit Massy",48.740216,2.301749,,1,,Europe/Paris,,OIF, +OIF:SA:59:4314804,1,"Léon Jouhaux",48.736171,2.302546,,1,,Europe/Paris,,OIF, +OIF:SA:59:4314806,1,"Lycée Monod",48.735015,2.308258,,1,,Europe/Paris,,OIF, +OIF:SA:59:4314808,1,"Antonypôle",48.733947,2.313728,,1,,Europe/Paris,,OIF, +OIF:SA:59:4314810,1,"Villemilan",48.733047,2.318093,,1,,Europe/Paris,,OIF, +OIF:SA:59:4314812,1,"Docteur Ténine",48.73176,2.324833,,1,,Europe/Paris,,OIF, +OIF:SA:59:4314814,1,"Mairie",48.731511,2.326837,,1,,Europe/Paris,,OIF, +OIF:SA:59:4314815,1,"Poste",48.734928,2.324319,,1,,Europe/Paris,,OIF, +OIF:SA:59:4314816,1,"Jumelages",48.736472,2.328195,,1,,Europe/Paris,,OIF, +OIF:SA:59:4314817,1,"Montjean",48.739001,2.33224,,1,,Europe/Paris,,OIF, +OIF:SA:59:4314819,1,"Cucheron",48.734154,2.335325,,1,,Europe/Paris,,OIF, +OIF:SA:59:4314823,1,"Les Solets",48.743442,2.355022,,1,,Europe/Paris,,OIF, +OIF:SA:59:4314831,1,"Les Avernaises",48.744222,2.363435,,1,,Europe/Paris,,OIF, +OIF:SA:59:4314836,1,"Les Alouettes / Pont d'Espagne",48.752565,2.373953,,1,,Europe/Paris,,OIF, +OIF:SA:59:4314838,1,"La Belle Epine",48.755405,2.368927,,1,,Europe/Paris,,OIF, +OIF:SA:59:4314840,1,"Belle Epine Nord",48.758552,2.370484,,1,,Europe/Paris,,OIF, +OIF:SA:59:4314843,1,"Porte de Thiais (Marche International)",48.75933,2.369404,,1,,Europe/Paris,,OIF, +OIF:SA:59:4314846,1,"Marche de Rungis",48.763478,2.357777,,1,,Europe/Paris,,OIF, +OIF:SA:59:4314848,1,"Gare de Pont de Rungis",48.747218,2.369063,,1,,Europe/Paris,,OIF, +OIF:SA:59:4314850,1,"Mouchez",48.733088,2.327197,,1,,Europe/Paris,,OIF, +OIF:SA:59:4314851,1,"Petit Massy",48.741082,2.302305,,1,,Europe/Paris,,OIF, +OIF:SA:59:4314852,1,"Saussaye / Mirabeau",48.73892,2.298814,,1,,Europe/Paris,,OIF, +OIF:SA:59:4364024,1,"Les Marnaudes",48.883044,2.491676,,1,,Europe/Paris,,OIF, +OIF:SA:59:4364040,1,"Avenue Lucie",48.879738,2.527578,,1,,Europe/Paris,,OIF, +OIF:SA:59:4373696,1,"Lycée",48.706109,2.32676,,1,,Europe/Paris,,OIF, +OIF:SA:59:4373698,1,"Gabriel Fontaine",48.707029,2.328775,,1,,Europe/Paris,,OIF, +OIF:SA:59:4373702,1,"Place Lucien Boilleau",48.705136,2.335457,,1,,Europe/Paris,,OIF, +OIF:SA:59:4373704,1,"Rue de Savigny",48.700824,2.335371,,1,,Europe/Paris,,OIF, +OIF:SA:59:4373706,1,"Eiffel / Lesseps",48.70011,2.338379,,1,,Europe/Paris,,OIF, +OIF:SA:59:4373708,1,"Docteur Schweitzer",48.697858,2.337788,,1,,Europe/Paris,,OIF, +OIF:SA:59:4373710,1,"Le Montoir",48.695908,2.337007,,1,,Europe/Paris,,OIF, +OIF:SA:59:4373712,1,"Commissariat de Savigny-sur-Orge",48.692748,2.337761,,1,,Europe/Paris,,OIF, +OIF:SA:59:4373713,1,"Réservoir",48.689939,2.339559,,1,,Europe/Paris,,OIF, +OIF:SA:59:4373715,1,"Glycines",48.68655,2.341412,,1,,Europe/Paris,,OIF, +OIF:SA:59:4373717,1,"Allemane - Boileau",48.684357,2.342288,,1,,Europe/Paris,,OIF, +OIF:SA:59:4373719,1,"Briand / Salengro",48.680645,2.343034,,1,,Europe/Paris,,OIF, +OIF:SA:59:4373721,1,"Centre Administratif",48.679202,2.345538,,1,,Europe/Paris,,OIF, +OIF:SA:59:4373725,1,"Chateaubriand",48.67756,2.356424,,1,,Europe/Paris,,OIF, +OIF:SA:59:4373727,1,"Pres Saint-Martin",48.680071,2.364488,,1,,Europe/Paris,,OIF, +OIF:SA:59:4377615,1,"Les Fleurs",48.70534,2.354652,,1,,Europe/Paris,,OIF, +OIF:SA:59:4377617,1,"Boulevard des Belges",48.701372,2.352596,,1,,Europe/Paris,,OIF, +OIF:SA:59:4377619,1,"Cimetière du Plateau",48.696941,2.349411,,1,,Europe/Paris,,OIF, +OIF:SA:59:4377625,1,"Les Bleuets",48.68916,2.354806,,1,,Europe/Paris,,OIF, +OIF:SA:59:4377627,1,"Aristide Briand / Champagne",48.688279,2.357962,,1,,Europe/Paris,,OIF, +OIF:SA:59:4377629,1,"Montagne Pavée",48.682894,2.360077,,1,,Europe/Paris,,OIF, +OIF:SA:59:4377631,1,"Rue des Artistes",48.680392,2.35521,,1,,Europe/Paris,,OIF, +OIF:SA:59:4377637,1,"Salengro / Dunant",48.681139,2.341901,,1,,Europe/Paris,,OIF, +OIF:SA:59:4377639,1,"Marguerites / Salvador Allende",48.683517,2.337523,,1,,Europe/Paris,,OIF, +OIF:SA:59:4377641,1,"Collège les Gâtines",48.685126,2.332846,,1,,Europe/Paris,,OIF, +OIF:SA:59:4377643,1,"Meuniers",48.687207,2.331149,,1,,Europe/Paris,,OIF, +OIF:SA:59:4377645,1,"Père Coindreau",48.689732,2.332432,,1,,Europe/Paris,,OIF, +OIF:SA:59:4377647,1,"ZAC les Gâtines / Capitaine Jean d'Hers",48.691732,2.334183,,1,,Europe/Paris,,OIF, +OIF:SA:59:4377723,1,"Auguste Mounié",48.754,2.305379,,1,,Europe/Paris,,OIF, +OIF:SA:59:4377724,1,"Pont d'Antony",48.750584,2.304669,,1,,Europe/Paris,,OIF, +OIF:SA:59:4377727,1,"Pasteur",48.757794,2.31646,,1,,Europe/Paris,,OIF, +OIF:SA:59:4377734,1,"Cerisaie",48.753065,2.328634,,1,,Europe/Paris,,OIF, +OIF:SA:59:4377738,1,"Voie des Laitières",48.751272,2.338509,,1,,Europe/Paris,,OIF, +OIF:SA:59:4377740,1,"Ormeteau",48.748705,2.342553,,1,,Europe/Paris,,OIF, +OIF:SA:59:4377742,1,"La Grange",48.748943,2.346094,,1,,Europe/Paris,,OIF, +OIF:SA:59:4377749,1,"Rue d'Arcueil",48.746722,2.356633,,1,,Europe/Paris,,OIF, +OIF:SA:59:4377751,1,"Lindbergh",48.74482,2.359759,,1,,Europe/Paris,,OIF, +OIF:SA:59:4377758,1,"Rue des Quinze Arpents",48.746135,2.382944,,1,,Europe/Paris,,OIF, +OIF:SA:59:4377760,1,"Rue du Puits Dixme",48.74735,2.388757,,1,,Europe/Paris,,OIF, +OIF:SA:59:4377762,1,"Rue des Oliviers",48.75118,2.388333,,1,,Europe/Paris,,OIF, +OIF:SA:59:4377764,1,"Centre Bus de Thiais",48.753693,2.386677,,1,,Europe/Paris,,OIF, +OIF:SA:59:4377766,1,"Rue du Bas Marin",48.754431,2.383653,,1,,Europe/Paris,,OIF, +OIF:SA:59:4377780,1,"Lucien Grelinger",48.749999,2.347208,,1,,Europe/Paris,,OIF, +OIF:SA:59:4377976,1,"Foyer Émile Roux",48.756874,2.318023,,1,,Europe/Paris,,OIF, +OIF:SA:59:4377985,1,"Thibaudes",48.749882,2.32351,,1,,Europe/Paris,,OIF, +OIF:SA:59:4377987,1,"Maison de Retraite",48.752835,2.323727,,1,,Europe/Paris,,OIF, +OIF:SA:59:4377998,1,"Poste Annexe",48.764767,2.327538,,1,,Europe/Paris,,OIF, +OIF:SA:59:4378001,1,"Arepa",48.768749,2.324376,,1,,Europe/Paris,,OIF, +OIF:SA:59:4378005,1,"Collège Ronsard",48.773144,2.324014,,1,,Europe/Paris,,OIF, +OIF:SA:59:4378032,1,"Les Coquelicots",48.775435,2.353093,,1,,Europe/Paris,,OIF, +OIF:SA:59:4378040,1,"Rue Paul Hochart",48.777564,2.361915,,1,,Europe/Paris,,OIF, +OIF:SA:59:4378042,1,"Sous Préfecture",48.777728,2.333383,,1,,Europe/Paris,,OIF, +OIF:SA:59:4378043,1,"Marche Nord",48.762844,2.330774,,1,,Europe/Paris,,OIF, +OIF:SA:59:4378044,1,"Ferme de Cottinville",48.755231,2.326968,,1,,Europe/Paris,,OIF, +OIF:SA:59:4378051,1,"Mairie",48.79251,2.36384,,1,,Europe/Paris,,OIF, +OIF:SA:59:4378052,1,"Edouard Vaillant - Cimetière",48.793141,2.355338,,1,,Europe/Paris,,OIF, +OIF:SA:59:4378055,1,"Groupe Hospitalier Paul Brousse",48.794749,2.361846,,1,,Europe/Paris,,OIF, +OIF:SA:59:4378056,1,"Guy Moquet",48.797527,2.358088,,1,,Europe/Paris,,OIF, +OIF:SA:59:4378059,1,"Rue des Guipons",48.805049,2.361847,,1,,Europe/Paris,,OIF, +OIF:SA:59:4378060,1,"Dauphin - RN7",48.805812,2.364446,,1,,Europe/Paris,,OIF, +OIF:SA:59:4378063,1,"Émile Zola",48.803024,2.370608,,1,,Europe/Paris,,OIF, +OIF:SA:59:4378064,1,"Beaumarchais",48.798989,2.369884,,1,,Europe/Paris,,OIF, +OIF:SA:59:4378067,1,"Guynemer / Place des Fusillés",48.792699,2.366511,,1,,Europe/Paris,,OIF, +OIF:SA:59:4378072,1,"Auguste Delaune - Stade Nautique",48.78453,2.360449,,1,,Europe/Paris,,OIF, +OIF:SA:59:4378076,1,"Youri Gargarine",48.780945,2.355456,,1,,Europe/Paris,,OIF, +OIF:SA:59:4378095,1,"Le Delta",48.758718,2.346462,,1,,Europe/Paris,,OIF, +OIF:SA:59:4378097,1,"Carrefour de l'Europe",48.753756,2.348161,,1,,Europe/Paris,,OIF, +OIF:SA:59:4378100,1,"Concarneau",48.754843,2.353082,,1,,Europe/Paris,,OIF, +OIF:SA:59:4378101,1,"Marché de Rungis / Pondorly",48.758439,2.349181,,1,,Europe/Paris,,OIF, +OIF:SA:59:4378102,1,"Viaduc",48.761181,2.349196,,1,,Europe/Paris,,OIF, +OIF:SA:59:4378103,1,"Agen",48.763176,2.349264,,1,,Europe/Paris,,OIF, +OIF:SA:59:4378104,1,"Châteaurenard",48.764695,2.35265,,1,,Europe/Paris,,OIF, +OIF:SA:59:4378111,1,"Porte de l'Haÿ Lyonnais",48.76092,2.343431,,1,,Europe/Paris,,OIF, +OIF:SA:59:4378271,1,"Berny / Raymond Aron",48.763385,2.30966,,1,,Europe/Paris,,OIF, +OIF:SA:59:4378273,1,"Docteur Ténine",48.760614,2.319048,,1,,Europe/Paris,,OIF, +OIF:SA:59:4378275,1,"Le Petit Fresnes",48.759253,2.32327,,1,,Europe/Paris,,OIF, +OIF:SA:59:4378312,1,"Parc Interdépartemental des Sports",48.770594,2.426507,,1,,Europe/Paris,,OIF, +OIF:SA:59:4378316,1,"Base de Loisirs",48.779702,2.443802,,1,,Europe/Paris,,OIF, +OIF:SA:59:4378324,1,"Église",48.793882,2.460788,,1,,Europe/Paris,,OIF, +OIF:SA:59:4378365,1,"Lurçat - Luisette",48.784145,2.371385,,1,,Europe/Paris,,OIF, +OIF:SA:59:4378366,1,"Edouard Tremblay",48.783771,2.37507,,1,,Europe/Paris,,OIF, +OIF:SA:59:4378367,1,"Grimau / Voie Verte",48.779975,2.374097,,1,,Europe/Paris,,OIF, +OIF:SA:59:4378368,1,"Paul Armangot",48.777331,2.376582,,1,,Europe/Paris,,OIF, +OIF:SA:59:4378369,1,"Camille Risch",48.775116,2.373928,,1,,Europe/Paris,,OIF, +OIF:SA:59:4378371,1,"Piscine",48.769347,2.382164,,1,,Europe/Paris,,OIF, +OIF:SA:59:4378372,1,"Louis Duperrey",48.76655,2.386078,,1,,Europe/Paris,,OIF, +OIF:SA:59:4378373,1,"Perreux",48.766054,2.389877,,1,,Europe/Paris,,OIF, +OIF:SA:59:4378374,1,"Mairie",48.764174,2.393349,,1,,Europe/Paris,,OIF, +OIF:SA:59:4378375,1,"Panhard / Hugo",48.763694,2.397248,,1,,Europe/Paris,,OIF, +OIF:SA:59:4378376,1,"Rene Panhard",48.762404,2.401933,,1,,Europe/Paris,,OIF, +OIF:SA:59:4378381,1,"Crèche Jean Eiffel",48.75552,2.414539,,1,,Europe/Paris,,OIF, +OIF:SA:59:4390967,1,"Cimetière Communal",48.771958,2.343963,,1,,Europe/Paris,,OIF, +OIF:SA:59:4390970,1,"Église",48.770972,2.354521,,1,,Europe/Paris,,OIF, +OIF:SA:59:4390971,1,"Cité des Sorbiers",48.771889,2.358547,,1,,Europe/Paris,,OIF, +OIF:SA:59:4390972,1,"Jacques Brel",48.770409,2.363536,,1,,Europe/Paris,,OIF, +OIF:SA:59:4394963,1,"Cité des Tilleuls",48.693094,2.346016,,1,,Europe/Paris,,OIF, +OIF:SA:59:4394986,1,"Place de la République",48.690675,2.35129,,1,,Europe/Paris,,OIF, +OIF:SA:59:4423348,1,"Rue de Lallier",48.775156,2.35419,,1,,Europe/Paris,,OIF, +OIF:SA:59:4423355,1,"Camélias / Dauvin",48.766934,2.334091,,1,,Europe/Paris,,OIF, +OIF:SA:59:4423358,1,"Émile Zola",48.758787,2.324208,,1,,Europe/Paris,,OIF, +OIF:SA:59:4423359,1,"Mairie",48.755868,2.321984,,1,,Europe/Paris,,OIF, +OIF:SA:59:4458754,1,"Père Brottier / Charles Infroit",48.806186,2.246256,,1,,Europe/Paris,,OIF, +OIF:SA:59:4458755,1,"Rue des Peupliers",48.807689,2.250036,,1,,Europe/Paris,,OIF, +OIF:SA:59:4458756,1,"Hôpital Sainte-Émilie",48.80757,2.251982,,1,,Europe/Paris,,OIF, +OIF:SA:59:4458758,1,"Marquis",48.805348,2.259143,,1,,Europe/Paris,,OIF, +OIF:SA:59:4458759,1,"Trosy",48.803042,2.262419,,1,,Europe/Paris,,OIF, +OIF:SA:59:4458767,1,"Chartres - Blanchard",48.795768,2.291522,,1,,Europe/Paris,,OIF, +OIF:SA:59:4458768,1,"Liberté",48.79821,2.294309,,1,,Europe/Paris,,OIF, +OIF:SA:59:4458769,1,"Dampierre",48.79542,2.300942,,1,,Europe/Paris,,OIF, +OIF:SA:59:4458770,1,"Rosenberg",48.797248,2.302428,,1,,Europe/Paris,,OIF, +OIF:SA:59:4458771,1,"Rue des Olivettes",48.797474,2.30688,,1,,Europe/Paris,,OIF, +OIF:SA:59:4458772,1,"Les Iris",48.797976,2.31292,,1,,Europe/Paris,,OIF, +OIF:SA:59:4458773,1,"Louis Pasteur / Meuniers",48.79801,2.31731,,1,,Europe/Paris,,OIF, +OIF:SA:59:4458774,1,"Verdun - Pasteur",48.801887,2.319939,,1,,Europe/Paris,,OIF, +OIF:SA:59:4458775,1,"Grange Ory",48.801483,2.323708,,1,,Europe/Paris,,OIF, +OIF:SA:59:4458778,1,"Wilson / Provigny",48.796841,2.331096,,1,,Europe/Paris,,OIF, +OIF:SA:59:4458786,1,"Institut Gustave Roussy",48.794846,2.351646,,1,,Europe/Paris,,OIF, +OIF:SA:59:4458790,1,"Guynemer / Maxime Gorki",48.79312,2.369268,,1,,Europe/Paris,,OIF, +OIF:SA:59:4458812,1,"Rue Froide",48.797672,2.300472,,1,,Europe/Paris,,OIF, +OIF:SA:59:4458814,1,"Chartres - Blanchard",48.796325,2.29231,,1,,Europe/Paris,,OIF, +OIF:SA:59:4459277,1,"Fraternité",48.859413,2.424011,,1,,Europe/Paris,,OIF, +OIF:SA:59:4459278,1,"Sorins",48.858632,2.428171,,1,,Europe/Paris,,OIF, +OIF:SA:59:4459279,1,"Marché",48.858449,2.432904,,1,,Europe/Paris,,OIF, +OIF:SA:59:4471747,1,"Centre de Bus de Vitry",48.803274,2.37752,,1,,Europe/Paris,,OIF, +OIF:SA:59:4471748,1,"Malassis",48.801494,2.378947,,1,,Europe/Paris,,OIF, +OIF:SA:59:4471749,1,"La Civette",48.798392,2.38185,,1,,Europe/Paris,,OIF, +OIF:SA:59:4471750,1,"Charles Infroit",48.794814,2.384526,,1,,Europe/Paris,,OIF, +OIF:SA:59:4471751,1,"Moulin de Saquet / Pelletan",48.792483,2.385908,,1,,Europe/Paris,,OIF, +OIF:SA:59:4471753,1,"Camille Groult",48.786254,2.391551,,1,,Europe/Paris,,OIF, +OIF:SA:59:4471754,1,"Constant Coquelin",48.782936,2.39392,,1,,Europe/Paris,,OIF, +OIF:SA:59:4471755,1,"Les Platrières",48.777929,2.396682,,1,,Europe/Paris,,OIF, +OIF:SA:59:4471769,1,"Parc Méliès",48.744805,2.392207,,1,,Europe/Paris,,OIF, +OIF:SA:59:4471770,1,"Cimetière Paysager",48.745293,2.387627,,1,,Europe/Paris,,OIF, +OIF:SA:59:4471782,1,"Pont de Rungis",48.744274,2.364626,,1,,Europe/Paris,,OIF, +OIF:SA:59:4471783,1,"Hangar 6",48.743561,2.364841,,1,,Europe/Paris,,OIF, +OIF:SA:59:4471784,1,"Caroline Aigle (Orlyfret)",48.736836,2.369682,,1,,Europe/Paris,,OIF, +OIF:SA:59:4471792,1,"Senia",48.751128,2.369256,,1,,Europe/Paris,,OIF, +OIF:SA:59:4471795,1,"Auguste Perret (Cimetière Parisien)",48.764201,2.368944,,1,,Europe/Paris,,OIF, +OIF:SA:59:4471825,1,"Malassis",48.801035,2.379954,,1,,Europe/Paris,,OIF, +OIF:SA:59:4471826,1,"Centre de Bus de Vitry",48.804074,2.377494,,1,,Europe/Paris,,OIF, +OIF:SA:59:4472661,1,"Galliéni",48.88718,2.244111,,1,,Europe/Paris,,OIF, +OIF:SA:59:4472697,1,"Montrosier",48.879167,2.279144,,1,,Europe/Paris,,OIF, +OIF:SA:59:4472712,1,"Joffre / de Lattre de Tassigny",48.959443,2.300911,,1,,Europe/Paris,,OIF, +OIF:SA:59:4472714,1,"Place Fitzelin",48.959547,2.303872,,1,,Europe/Paris,,OIF, +OIF:SA:59:4472724,1,"Sablons",48.956317,2.331965,,1,,Europe/Paris,,OIF, +OIF:SA:59:4472725,1,"Yser",48.953827,2.335404,,1,,Europe/Paris,,OIF, +OIF:SA:59:4472726,1,"Route de Saint-Leu",48.952007,2.338283,,1,,Europe/Paris,,OIF, +OIF:SA:59:4472728,1,"César",48.949062,2.34238,,1,,Europe/Paris,,OIF, +OIF:SA:59:4472779,1,"Barbusse / Martre",48.901151,2.307965,,1,,Europe/Paris,,OIF, +OIF:SA:59:4472790,1,"Sablons",48.956595,2.331952,,1,,Europe/Paris,,OIF, +OIF:SA:59:4472927,1,"Blanche de Castille",48.744737,2.303261,,1,,Europe/Paris,,OIF, +OIF:SA:59:4472932,1,"Fernand Fenzy",48.758171,2.306869,,1,,Europe/Paris,,OIF, +OIF:SA:59:4472934,1,"Morteaux",48.760256,2.307717,,1,,Europe/Paris,,OIF, +OIF:SA:59:4472936,1,"Général de Gaulle / Croix de Berny",48.762973,2.3085,,1,,Europe/Paris,,OIF, +OIF:SA:59:4472974,1,"Léon Gambetta",48.8135,2.325896,,1,,Europe/Paris,,OIF, +OIF:SA:59:4473005,1,"Les Cottages",48.774472,2.313108,,1,,Europe/Paris,,OIF, +OIF:SA:59:4473064,1,"Boulevard National",48.883883,2.191433,,1,,Europe/Paris,,OIF, +OIF:SA:59:4473065,1,"Gabriel Péri",48.882571,2.188112,,1,,Europe/Paris,,OIF, +OIF:SA:59:4473106,1,"Hoche / Saint-Honoré",48.876543,2.301134,,1,,Europe/Paris,,OIF, +OIF:SA:59:4473134,1,"Gare de Lozère",48.699966,2.214618,,1,,Europe/Paris,,OIF, +OIF:SA:59:4473160,1,"Mairie / Gare du Vésinet le Pecq",48.89421,2.133735,,1,,Europe/Paris,,OIF, +OIF:SA:59:4473162,1,"Mairie Chatou - Croissy RER",48.889351,2.157877,,1,,Europe/Paris,,OIF, +OIF:SA:59:4473210,1,"Cécile Faguet",48.889784,2.419756,,1,,Europe/Paris,,OIF, +OIF:SA:59:4473354,1,"Leblanc / Delbarre",48.837994,2.275419,,1,,Europe/Paris,,OIF, +OIF:SA:59:4473358,1,"Colonel Pierre Avia",48.829815,2.275469,,1,,Europe/Paris,,OIF, +OIF:SA:59:4473372,1,"Émile Duployé",48.815011,2.265001,,1,,Europe/Paris,,OIF, +OIF:SA:59:4473373,1,"Verdi",48.817339,2.265059,,1,,Europe/Paris,,OIF, +OIF:SA:59:4473379,1,"Hôpital Percy",48.814696,2.257666,,1,,Europe/Paris,,OIF, +OIF:SA:59:4473384,1,"Rue des Peupliers",48.807824,2.24975,,1,,Europe/Paris,,OIF, +OIF:SA:59:4473385,1,"Orphelinat",48.808358,2.248007,,1,,Europe/Paris,,OIF, +OIF:SA:59:4473391,1,"Victor Hugo",48.806267,2.238214,,1,,Europe/Paris,,OIF, +OIF:SA:59:4473418,1,"Rivoli",48.809687,2.253122,,1,,Europe/Paris,,OIF, +OIF:SA:59:4473420,1,"Maison de Retraite",48.828377,2.274994,,1,,Europe/Paris,,OIF, +OIF:SA:59:4473421,1,"Séverine",48.83067,2.278463,,1,,Europe/Paris,,OIF, +OIF:SA:59:4473551,1,"Marceau",48.827319,2.27149,,1,,Europe/Paris,,OIF, +OIF:SA:59:4473556,1,"Rue du Fort",48.819375,2.274359,,1,,Europe/Paris,,OIF, +OIF:SA:59:4473558,1,"Général de Gaulle",48.816796,2.274722,,1,,Europe/Paris,,OIF, +OIF:SA:59:4473560,1,"Clos Montholon",48.81423,2.278376,,1,,Europe/Paris,,OIF, +OIF:SA:59:4473562,1,"Louis Girard",48.815029,2.282951,,1,,Europe/Paris,,OIF, +OIF:SA:59:4473564,1,"Rond-Point Henri Barbusse",48.813944,2.287369,,1,,Europe/Paris,,OIF, +OIF:SA:59:4473569,1,"Jean Mermoz",48.808791,2.291674,,1,,Europe/Paris,,OIF, +OIF:SA:59:4473570,1,"Rond-Point Gagarine",48.811938,2.294393,,1,,Europe/Paris,,OIF, +OIF:SA:59:4473578,1,"Cimetière de Bagneux",48.810136,2.313255,,1,,Europe/Paris,,OIF, +OIF:SA:59:4473579,1,"Avenue Henri Ginoux",48.809778,2.318127,,1,,Europe/Paris,,OIF, +OIF:SA:59:4473592,1,"Malleret / Joinville",48.802243,2.339674,,1,,Europe/Paris,,OIF, +OIF:SA:59:4473600,1,"Cimetière Parisien / Place du Général de Gaulle",48.812904,2.370159,,1,,Europe/Paris,,OIF, +OIF:SA:59:4473602,1,"Carnot",48.80886,2.37351,,1,,Europe/Paris,,OIF, +OIF:SA:59:4473604,1,"Verdun-Barbusse",48.808249,2.375762,,1,,Europe/Paris,,OIF, +OIF:SA:59:4473607,1,"Jean le Galleu",48.810284,2.3799,,1,,Europe/Paris,,OIF, +OIF:SA:59:4473617,1,"Insurrection d'Août 1944",48.81455,2.397623,,1,,Europe/Paris,,OIF, +OIF:SA:59:4473618,1,"Gambetta",48.81475,2.40145,,1,,Europe/Paris,,OIF, +OIF:SA:59:4473621,1,"Prieur de la Côte d'Or",48.809707,2.325597,,1,,Europe/Paris,,OIF, +OIF:SA:59:4473622,1,"Avenue et Fort de Montrouge",48.809711,2.322631,,1,,Europe/Paris,,OIF, +OIF:SA:59:4473623,1,"Avenue Henri Ginoux",48.810065,2.318235,,1,,Europe/Paris,,OIF, +OIF:SA:59:4473625,1,"Maurice Arnoux",48.810845,2.307321,,1,,Europe/Paris,,OIF, +OIF:SA:59:4473644,1,"Maurice Arnoux",48.810634,2.307247,,1,,Europe/Paris,,OIF, +OIF:SA:59:4473648,1,"Prieur de la Côte d'Or",48.809464,2.325638,,1,,Europe/Paris,,OIF, +OIF:SA:59:4480118,1,"Bretagne",48.769024,2.368465,,1,,Europe/Paris,,OIF, +OIF:SA:59:4532992,1,"Foch / 19 Janvier",48.849158,2.201376,,1,,Europe/Paris,,OIF, +OIF:SA:59:4532993,1,"Champ de Courses",48.851383,2.205831,,1,,Europe/Paris,,OIF, +OIF:SA:59:4532994,1,"Laboratoire Débat",48.853238,2.201379,,1,,Europe/Paris,,OIF, +OIF:SA:59:4533000,1,"Les Suisses",48.854547,2.198284,,1,,Europe/Paris,,OIF, +OIF:SA:59:4533001,1,"Laboratoire Débat",48.853086,2.201284,,1,,Europe/Paris,,OIF, +OIF:SA:59:4533003,1,"Bucourt",48.849178,2.211195,,1,,Europe/Paris,,OIF, +OIF:SA:59:4533007,1,"Avenue de Suresnes",48.859802,2.220507,,1,,Europe/Paris,,OIF, +OIF:SA:59:4533024,1,"Parc du Pré Saint-Jean",48.838502,2.204563,,1,,Europe/Paris,,OIF, +OIF:SA:59:4533027,1,"Corot",48.828402,2.190826,,1,,Europe/Paris,,OIF, +OIF:SA:59:4533043,1,"Porte des Hauts-de-Seine",48.814623,2.157461,,1,,Europe/Paris,,OIF, +OIF:SA:59:4533051,1,"Pradier",48.829431,2.194022,,1,,Europe/Paris,,OIF, +OIF:SA:59:4614226,1,"Mairie",48.834512,2.519529,,1,,Europe/Paris,,OIF, +OIF:SA:59:4614229,1,"Château",48.839856,2.522278,,1,,Europe/Paris,,OIF, +OIF:SA:59:4614231,1,"Place Carnot",48.84256,2.523064,,1,,Europe/Paris,,OIF, +OIF:SA:59:4614235,1,"Cimetière / Funérarium",48.84087,2.525747,,1,,Europe/Paris,,OIF, +OIF:SA:59:4614237,1,"Chemin des Moines",48.840555,2.528809,,1,,Europe/Paris,,OIF, +OIF:SA:59:4614239,1,"Docteur Armand Brillard",48.836998,2.527394,,1,,Europe/Paris,,OIF, +OIF:SA:59:4614245,1,"Molière",48.836195,2.532347,,1,,Europe/Paris,,OIF, +OIF:SA:59:4614247,1,"La Fontaine",48.838065,2.534981,,1,,Europe/Paris,,OIF, +OIF:SA:59:4614249,1,"Hôpital Prive de Marne la Vallée",48.83893,2.539069,,1,,Europe/Paris,,OIF, +OIF:SA:59:4614251,1,"Le Théâtre",48.842006,2.542901,,1,,Europe/Paris,,OIF, +OIF:SA:59:4614277,1,"La Dame Blanche",48.818825,2.558576,,1,,Europe/Paris,,OIF, +OIF:SA:59:4614280,1,"Michel Bony",48.813684,2.565672,,1,,Europe/Paris,,OIF, +OIF:SA:59:4614281,1,"Maurice Berteaux - Général Leclerc",48.810195,2.569222,,1,,Europe/Paris,,OIF, +OIF:SA:59:4614283,1,"Mairie",48.809513,2.573254,,1,,Europe/Paris,,OIF, +OIF:SA:59:4614285,1,"Jean Kiffer",48.806422,2.576934,,1,,Europe/Paris,,OIF, +OIF:SA:59:4614291,1,"Gonzalve",48.804049,2.588114,,1,,Europe/Paris,,OIF, +OIF:SA:59:4614293,1,"Village Anglais",48.805669,2.597429,,1,,Europe/Paris,,OIF, +OIF:SA:59:4614295,1,"Bois la Croix",48.804705,2.600493,,1,,Europe/Paris,,OIF, +OIF:SA:59:4614300,1,"Les Bleuets",48.797438,2.608585,,1,,Europe/Paris,,OIF, +OIF:SA:59:4614319,1,"Maurice Berteaux - Tramway",48.81436,2.565063,,1,,Europe/Paris,,OIF, +OIF:SA:59:4614320,1,"Georges Courteline",48.815965,2.562348,,1,,Europe/Paris,,OIF, +OIF:SA:59:4614321,1,"Les Mousquetaires",48.820343,2.556936,,1,,Europe/Paris,,OIF, +OIF:SA:59:4614327,1,"Square des Allobroges",48.832872,2.544229,,1,,Europe/Paris,,OIF, +OIF:SA:59:4614332,1,"Les Mousquetaires",48.821118,2.555605,,1,,Europe/Paris,,OIF, +OIF:SA:59:4614343,1,"Hôtel de Ville",48.789671,2.573429,,1,,Europe/Paris,,OIF, +OIF:SA:59:4614344,1,"Saint-Jean / les Bordes",48.792299,2.573951,,1,,Europe/Paris,,OIF, +OIF:SA:59:4614346,1,"Plessis - Saint-Antoine",48.80082,2.575901,,1,,Europe/Paris,,OIF, +OIF:SA:59:4614348,1,"Ardouin - Saint-Pierre",48.807055,2.575426,,1,,Europe/Paris,,OIF, +OIF:SA:59:4614351,1,"Georges Foureau",48.812423,2.567163,,1,,Europe/Paris,,OIF, +OIF:SA:59:4614360,1,"Courts Sillons",48.827184,2.546361,,1,,Europe/Paris,,OIF, +OIF:SA:59:4614362,1,"Les Stades",48.828884,2.553072,,1,,Europe/Paris,,OIF, +OIF:SA:59:4614363,1,"Collège les Prunais",48.830454,2.549206,,1,,Europe/Paris,,OIF, +OIF:SA:59:4614370,1,"Moulin à Vent",48.834185,2.54658,,1,,Europe/Paris,,OIF, +OIF:SA:59:4614376,1,"République",48.828232,2.542799,,1,,Europe/Paris,,OIF, +OIF:SA:59:4614382,1,"Georges Courteline",48.815334,2.563012,,1,,Europe/Paris,,OIF, +OIF:SA:59:4614393,1,"Hôpital de la Queue en Brie",48.785603,2.580605,,1,,Europe/Paris,,OIF, +OIF:SA:59:4614399,1,"Maurice Berteaux",48.811425,2.46929,,1,,Europe/Paris,,OIF, +OIF:SA:59:4614401,1,"Place d'Armes",48.812365,2.473522,,1,,Europe/Paris,,OIF, +OIF:SA:59:4614405,1,"Bourgogne",48.810023,2.482048,,1,,Europe/Paris,,OIF, +OIF:SA:59:4614407,1,"Cimetière de Saint-Maur des Fosses",48.809034,2.485801,,1,,Europe/Paris,,OIF, +OIF:SA:59:4614409,1,"Neptune",48.807809,2.491669,,1,,Europe/Paris,,OIF, +OIF:SA:59:4614411,1,"Anatole France / Pierre Brosselette",48.807174,2.496185,,1,,Europe/Paris,,OIF, +OIF:SA:59:4614413,1,"Les Marronniers",48.805748,2.496902,,1,,Europe/Paris,,OIF, +OIF:SA:59:4614415,1,"Les Tilleuls",48.806295,2.500822,,1,,Europe/Paris,,OIF, +OIF:SA:59:4614417,1,"Général Leclerc",48.807187,2.505717,,1,,Europe/Paris,,OIF, +OIF:SA:59:4614427,1,"Beau Site",48.812376,2.518852,,1,,Europe/Paris,,OIF, +OIF:SA:59:4614429,1,"Les Glaisières",48.812261,2.521145,,1,,Europe/Paris,,OIF, +OIF:SA:59:4614431,1,"Le Plateau",48.812607,2.526678,,1,,Europe/Paris,,OIF, +OIF:SA:59:4614433,1,"Sonia Delaunay",48.814318,2.527256,,1,,Europe/Paris,,OIF, +OIF:SA:59:4614435,1,"Parc Départemental",48.817058,2.528328,,1,,Europe/Paris,,OIF, +OIF:SA:59:4614441,1,"Luats-Amitie",48.821743,2.532238,,1,,Europe/Paris,,OIF, +OIF:SA:59:4614443,1,"Henri Dunant",48.823743,2.535002,,1,,Europe/Paris,,OIF, +OIF:SA:59:4614448,1,"Aristide Briand-General de Gaulle",48.827695,2.536215,,1,,Europe/Paris,,OIF, +OIF:SA:59:4614452,1,"Place de Flore",48.833773,2.537613,,1,,Europe/Paris,,OIF, +OIF:SA:59:4614454,1,"Les Trois Musiciens",48.834689,2.540823,,1,,Europe/Paris,,OIF, +OIF:SA:59:4614458,1,"Moulin à Vent",48.835045,2.547911,,1,,Europe/Paris,,OIF, +OIF:SA:59:4614459,1,"Cimetière",48.839275,2.549473,,1,,Europe/Paris,,OIF, +OIF:SA:59:4614468,1,"Victor Hugo",48.827756,2.574337,,1,,Europe/Paris,,OIF, +OIF:SA:59:4614470,1,"Les Richardets - Centre",48.82937,2.567089,,1,,Europe/Paris,,OIF, +OIF:SA:59:4614472,1,"Place du Combat",48.829646,2.563843,,1,,Europe/Paris,,OIF, +OIF:SA:59:4614474,1,"Cité des Hêtres",48.830487,2.558599,,1,,Europe/Paris,,OIF, +OIF:SA:59:4614476,1,"Le Fort",48.832032,2.556741,,1,,Europe/Paris,,OIF, +OIF:SA:59:4614478,1,"Paul Belmondo",48.832895,2.551748,,1,,Europe/Paris,,OIF, +OIF:SA:59:4614491,1,"Mairie",48.84897,2.552632,,1,,Europe/Paris,,OIF, +OIF:SA:59:4614492,1,"Carrefour de Malnoue",48.848769,2.557906,,1,,Europe/Paris,,OIF, +OIF:SA:59:4614494,1,"Rouget de Lisle",48.845496,2.563225,,1,,Europe/Paris,,OIF, +OIF:SA:59:4614496,1,"La Haute Maison",48.842545,2.567651,,1,,Europe/Paris,,OIF, +OIF:SA:59:4614498,1,"Les Hauts Châteaux",48.842703,2.572714,,1,,Europe/Paris,,OIF, +OIF:SA:59:4614512,1,"Pointe de Gournay",48.849333,2.565235,,1,,Europe/Paris,,OIF, +OIF:SA:59:4614514,1,"Charles Pranard",48.847806,2.570337,,1,,Europe/Paris,,OIF, +OIF:SA:59:4614516,1,"Les Cormiers",48.845736,2.571934,,1,,Europe/Paris,,OIF, +OIF:SA:59:4614518,1,"Les Hauts Bâtons",48.847453,2.576368,,1,,Europe/Paris,,OIF, +OIF:SA:59:4614520,1,"Les Hauts Roseaux",48.844616,2.576879,,1,,Europe/Paris,,OIF, +OIF:SA:59:4614525,1,"La Butte Verte",48.839438,2.573131,,1,,Europe/Paris,,OIF, +OIF:SA:59:4614527,1,"Le Closeau",48.837066,2.572692,,1,,Europe/Paris,,OIF, +OIF:SA:59:4614529,1,"La Butte aux Cailles",48.837229,2.577522,,1,,Europe/Paris,,OIF, +OIF:SA:59:4614531,1,"Rue du Ballon",48.833248,2.578413,,1,,Europe/Paris,,OIF, +OIF:SA:59:4614533,1,"Rue des Aérostiers",48.831669,2.581543,,1,,Europe/Paris,,OIF, +OIF:SA:59:4614543,1,"Gabriel Péri",48.831797,2.566712,,1,,Europe/Paris,,OIF, +OIF:SA:59:4614545,1,"Rue de la Chapelle",48.833956,2.565993,,1,,Europe/Paris,,OIF, +OIF:SA:59:4614547,1,"Etienne Dolet",48.838837,2.560922,,1,,Europe/Paris,,OIF, +OIF:SA:59:4614549,1,"Victor Basch",48.840477,2.558628,,1,,Europe/Paris,,OIF, +OIF:SA:59:4614551,1,"Noisy-le-Grand-Mont d'Est RER",48.840932,2.553143,,1,,Europe/Paris,,OIF, +OIF:SA:59:4614568,1,"Épi d'Or",48.86042,2.530538,,1,,Europe/Paris,,OIF, +OIF:SA:59:4614570,1,"Cimetière",48.863071,2.530125,,1,,Europe/Paris,,OIF, +OIF:SA:59:4614584,1,"Avenue Lucie",48.87958,2.52507,,1,,Europe/Paris,,OIF, +OIF:SA:59:4614587,1,"Pottier",48.88401,2.516835,,1,,Europe/Paris,,OIF, +OIF:SA:59:4614589,1,"Gustave Rodet",48.886026,2.51242,,1,,Europe/Paris,,OIF, +OIF:SA:59:4614593,1,"François Coppée",48.887537,2.505065,,1,,Europe/Paris,,OIF, +OIF:SA:59:4614595,1,"Masséna",48.88864,2.500558,,1,,Europe/Paris,,OIF, +OIF:SA:59:4614596,1,"Les Marnaudes",48.889096,2.495483,,1,,Europe/Paris,,OIF, +OIF:SA:59:4614598,1,"8 Mai 1945",48.88626,2.492505,,1,,Europe/Paris,,OIF, +OIF:SA:59:4614634,1,"Mairie de Noisy le Grand / Jean Vaquier",48.846878,2.550131,,1,,Europe/Paris,,OIF, +OIF:SA:59:4614639,1,"Église de Noisy-le-Grand",48.849436,2.546927,,1,,Europe/Paris,,OIF, +OIF:SA:59:4614641,1,"René Navier",48.85021,2.535811,,1,,Europe/Paris,,OIF, +OIF:SA:59:4614646,1,"République",48.845167,2.549402,,1,,Europe/Paris,,OIF, +OIF:SA:59:4614648,1,"Espace Michel Simon",48.846191,2.55245,,1,,Europe/Paris,,OIF, +OIF:SA:59:4614689,1,"Denis Papin",48.887536,2.48957,,1,,Europe/Paris,,OIF, +OIF:SA:59:4614720,1,"8 Mai 1945",48.885223,2.495014,,1,,Europe/Paris,,OIF, +OIF:SA:59:4658182,1,"Michelet / Parc des Expositions",48.943148,2.433675,,1,,Europe/Paris,,OIF, +OIF:SA:59:4658183,1,"Diderot",48.944809,2.435124,,1,,Europe/Paris,,OIF, +OIF:SA:59:4658186,1,"Chemin Notre-Dame",48.95308,2.442427,,1,,Europe/Paris,,OIF, +OIF:SA:59:4658187,1,"Pont Yblon / Santos Dumont",48.954485,2.443494,,1,,Europe/Paris,,OIF, +OIF:SA:59:4658189,1,"Colonel Fabien",48.955895,2.444786,,1,,Europe/Paris,,OIF, +OIF:SA:59:4658191,1,"Manouchian",48.955632,2.447365,,1,,Europe/Paris,,OIF, +OIF:SA:59:4658193,1,"ZA du Pont Yblon",48.95421,2.4499,,1,,Europe/Paris,,OIF, +OIF:SA:59:4658208,1,"Magenta",48.901296,2.389729,,1,,Europe/Paris,,OIF, +OIF:SA:59:4658210,1,"Condorcet",48.905769,2.39486,,1,,Europe/Paris,,OIF, +OIF:SA:59:4658211,1,"Cimetière Parisien",48.904213,2.408477,,1,,Europe/Paris,,OIF, +OIF:SA:59:4658217,1,"Edouard Vaillant / Jean Jaurès",48.918442,2.408292,,1,,Europe/Paris,,OIF, +OIF:SA:59:4658220,1,"Rateau",48.925156,2.415369,,1,,Europe/Paris,,OIF, +OIF:SA:59:4658226,1,"Anizan Cavillon / Mairie",48.934396,2.425382,,1,,Europe/Paris,,OIF, +OIF:SA:59:4658228,1,"Pierre Curie",48.93668,2.427603,,1,,Europe/Paris,,OIF, +OIF:SA:59:4658230,1,"Église",48.939264,2.430018,,1,,Europe/Paris,,OIF, +OIF:SA:59:4658241,1,"Ferme Saint-Simon",48.962519,2.453794,,1,,Europe/Paris,,OIF, +OIF:SA:59:4658243,1,"Route des Parcs",48.964334,2.457886,,1,,Europe/Paris,,OIF, +OIF:SA:59:4658249,1,"Chemin Notre-Dame",48.953053,2.442031,,1,,Europe/Paris,,OIF, +OIF:SA:59:4658250,1,"Lénine",48.95017,2.439473,,1,,Europe/Paris,,OIF, +OIF:SA:59:4658251,1,"Musée de l'Air et de l'Espace",48.947171,2.43678,,1,,Europe/Paris,,OIF, +OIF:SA:59:4658253,1,"Michelet / Parc des Expositions",48.943211,2.433156,,1,,Europe/Paris,,OIF, +OIF:SA:59:4658257,1,"Condorcet",48.906137,2.394587,,1,,Europe/Paris,,OIF, +OIF:SA:59:4658259,1,"Magenta",48.902356,2.390398,,1,,Europe/Paris,,OIF, +OIF:SA:59:4677620,1,"Wilson / Courcelles",48.89038,2.292093,,1,,Europe/Paris,,OIF, +OIF:SA:59:4677623,1,"Jules Guesde",48.896872,2.2896,,1,,Europe/Paris,,OIF, +OIF:SA:59:4677630,1,"Quai de Clichy",48.902853,2.288892,,1,,Europe/Paris,,OIF, +OIF:SA:59:4677635,1,"Comète",48.912512,2.284493,,1,,Europe/Paris,,OIF, +OIF:SA:59:4677637,1,"Rue des Champs",48.9155,2.28271,,1,,Europe/Paris,,OIF, +OIF:SA:59:4677644,1,"Robert Lavergne",48.928224,2.272324,,1,,Europe/Paris,,OIF, +OIF:SA:59:4677646,1,"Henri Robert",48.929528,2.273557,,1,,Europe/Paris,,OIF, +OIF:SA:59:4677647,1,"Asnières-18 Juin 1940",48.931058,2.277818,,1,,Europe/Paris,,OIF, +OIF:SA:59:4677653,1,"Jean Jaurès",48.920894,2.27847,,1,,Europe/Paris,,OIF, +OIF:SA:59:4677655,1,"Eiffel",48.891279,2.294368,,1,,Europe/Paris,,OIF, +OIF:SA:59:4677656,1,"Wilson / Courcelles",48.889203,2.292871,,1,,Europe/Paris,,OIF, +OIF:SA:59:4677701,1,"3 Communes",48.773667,2.399295,,1,,Europe/Paris,,OIF, +OIF:SA:59:4677702,1,"Docteur Roux",48.770421,2.401413,,1,,Europe/Paris,,OIF, +OIF:SA:59:4677703,1,"Verdun / Hoche",48.767166,2.403516,,1,,Europe/Paris,,OIF, +OIF:SA:59:4677706,1,"Waldeck Rousseau",48.761129,2.4076,,1,,Europe/Paris,,OIF, +OIF:SA:59:4677710,1,"Lamartine",48.756057,2.410917,,1,,Europe/Paris,,OIF, +OIF:SA:59:4677712,1,"Robert Peary",48.753895,2.412328,,1,,Europe/Paris,,OIF, +OIF:SA:59:4677730,1,"Thiais Pont de Rungis",48.746274,2.369905,,1,,Europe/Paris,,OIF, +OIF:SA:59:4677740,1,"Verdun / Hoche",48.767957,2.403327,,1,,Europe/Paris,,OIF, +OIF:SA:59:4677742,1,"3 Communes",48.773928,2.399404,,1,,Europe/Paris,,OIF, +OIF:SA:59:4677753,1,"La Briqueterie",48.807167,2.374931,,1,,Europe/Paris,,OIF, +OIF:SA:59:4677778,1,"Parmentier",48.758512,2.409303,,1,,Europe/Paris,,OIF, +OIF:SA:59:4677784,1,"Jean Mermoz",48.75068,2.413716,,1,,Europe/Paris,,OIF, +OIF:SA:59:4677788,1,"Marcel Cachin / Voie des Saules",48.745604,2.410936,,1,,Europe/Paris,,OIF, +OIF:SA:59:4687324,1,"Pierre de Coubertin",48.834769,2.256049,,1,,Europe/Paris,,OIF, +OIF:SA:59:4687326,1,"Abel Gance",48.834349,2.258602,,1,,Europe/Paris,,OIF, +OIF:SA:59:4687328,1,"Voie Lactée",48.833698,2.26072,,1,,Europe/Paris,,OIF, +OIF:SA:59:4687354,1,"Pierre Louvrier",48.806416,2.268482,,1,,Europe/Paris,,OIF, +OIF:SA:59:4687356,1,"Gabriel Péri",48.804087,2.266587,,1,,Europe/Paris,,OIF, +OIF:SA:59:4687358,1,"Centre Culturel Jean Arp",48.802603,2.264793,,1,,Europe/Paris,,OIF, +OIF:SA:59:4687367,1,"Jardin Parisien / Coquelicots",48.790929,2.259022,,1,,Europe/Paris,,OIF, +OIF:SA:59:4687378,1,"Le Jour Se Leve",48.8343,2.26008,,1,,Europe/Paris,,OIF, +OIF:SA:59:4695639,1,"Les Chardonnerettes",49.00243,2.381268,,1,,Europe/Paris,,OIF, +OIF:SA:59:4695645,1,"Avenue du Nid",49.002141,2.37646,,1,,Europe/Paris,,OIF, +OIF:SA:59:4695647,1,"Place du Souvenir Français",48.998719,2.380072,,1,,Europe/Paris,,OIF, +OIF:SA:59:4695649,1,"Lycée Jean-Jacques Rousseau",48.994175,2.382705,,1,,Europe/Paris,,OIF, +OIF:SA:59:4695676,1,"Marcelin Berthelot - Victor Hugo.",48.996927,2.381837,,1,,Europe/Paris,,OIF, +OIF:SA:59:4723854,1,"Galilée",48.794219,2.477399,,1,,Europe/Paris,,OIF, +OIF:SA:59:4723856,1,"Arromanches",48.791376,2.479262,,1,,Europe/Paris,,OIF, +OIF:SA:59:4723858,1,"Jean Jaurès",48.786346,2.4839,,1,,Europe/Paris,,OIF, +OIF:SA:59:4723859,1,"Docteur Roux / Chambre des Métiers",48.78737,2.488657,,1,,Europe/Paris,,OIF, +OIF:SA:59:4723861,1,"Corneilles",48.786674,2.491593,,1,,Europe/Paris,,OIF, +OIF:SA:59:4723863,1,"Alma",48.786746,2.49449,,1,,Europe/Paris,,OIF, +OIF:SA:59:4723865,1,"Sorbiers",48.786934,2.498462,,1,,Europe/Paris,,OIF, +OIF:SA:59:4723867,1,"Falonnières",48.787059,2.502265,,1,,Europe/Paris,,OIF, +OIF:SA:59:4723868,1,"Place de Molènes",48.789103,2.502713,,1,,Europe/Paris,,OIF, +OIF:SA:59:4723870,1,"Avenue de Bonneuil",48.793602,2.505758,,1,,Europe/Paris,,OIF, +OIF:SA:59:4723872,1,"Voltaire",48.79053,2.507669,,1,,Europe/Paris,,OIF, +OIF:SA:59:4723874,1,"Église de la Varenne",48.790164,2.5123,,1,,Europe/Paris,,OIF, +OIF:SA:59:4723877,1,"Capitaine Charton",48.796944,2.515907,,1,,Europe/Paris,,OIF, +OIF:SA:59:4723879,1,"Charles Péguy",48.800728,2.518669,,1,,Europe/Paris,,OIF, +OIF:SA:59:4723881,1,"Thiers",48.80334,2.518038,,1,,Europe/Paris,,OIF, +OIF:SA:59:4723883,1,"Gustave Goublier",48.805634,2.517189,,1,,Europe/Paris,,OIF, +OIF:SA:59:4723887,1,"Alexandre Dumas",48.806872,2.512356,,1,,Europe/Paris,,OIF, +OIF:SA:59:4723889,1,"Arago",48.790518,2.510016,,1,,Europe/Paris,,OIF, +OIF:SA:59:4723890,1,"Guynemer",48.789884,2.486454,,1,,Europe/Paris,,OIF, +OIF:SA:59:4726952,1,"Saint-Claude",48.859773,2.367716,,1,,Europe/Paris,,OIF, +OIF:SA:59:4726956,1,"Lancry-Saint-Martin",48.868412,2.35997,,1,,Europe/Paris,,OIF, +OIF:SA:59:4726962,1,"Choiseul",48.871434,2.336238,,1,,Europe/Paris,,OIF, +OIF:SA:59:4758951,1,"Landy / Ornano",48.914587,2.343782,,1,,Europe/Paris,,OIF, +OIF:SA:59:4758953,1,"Landy / Pleyel",48.914594,2.348045,,1,,Europe/Paris,,OIF, +OIF:SA:59:4758955,1,"Landy / Cheminots",48.915596,2.352702,,1,,Europe/Paris,,OIF, +OIF:SA:59:4758959,1,"Avenue des Fruitiers",48.918148,2.354639,,1,,Europe/Paris,,OIF, +OIF:SA:59:4758961,1,"Wilson / de Pressensé",48.918309,2.358444,,1,,Europe/Paris,,OIF, +OIF:SA:59:4758965,1,"Murger",48.915409,2.365186,,1,,Europe/Paris,,OIF, +OIF:SA:59:4758974,1,"Square Lucien Brun",48.915407,2.386253,,1,,Europe/Paris,,OIF, +OIF:SA:59:4758976,1,"Hemet",48.918862,2.387238,,1,,Europe/Paris,,OIF, +OIF:SA:59:4758979,1,"Casanova / Pont Blanc",48.918497,2.39366,,1,,Europe/Paris,,OIF, +OIF:SA:59:4758980,1,"Balzac",48.915513,2.399991,,1,,Europe/Paris,,OIF, +OIF:SA:59:4758984,1,"Hélène Cochennec",48.916727,2.406394,,1,,Europe/Paris,,OIF, +OIF:SA:59:4758989,1,"Edouard Vaillant / Jean Jaurès",48.917787,2.407159,,1,,Europe/Paris,,OIF, +OIF:SA:59:4758994,1,"Curton",48.898703,2.312512,,1,,Europe/Paris,,OIF, +OIF:SA:59:4758995,1,"Victor Hugo / Jean Jaurès",48.897422,2.310157,,1,,Europe/Paris,,OIF, +OIF:SA:59:4766795,1,"Alsace",48.893555,2.299403,,1,,Europe/Paris,,OIF, +OIF:SA:59:4770081,1,"Route de Massy / les Champarts",48.713834,2.30104,,1,,Europe/Paris,,OIF, +OIF:SA:59:4770149,1,"Cité Jardins",48.801358,2.333545,,1,,Europe/Paris,,OIF, +OIF:SA:59:4770151,1,"Robespierre",48.801879,2.335205,,1,,Europe/Paris,,OIF, +OIF:SA:59:4770152,1,"Auguste Delaune",48.801987,2.338293,,1,,Europe/Paris,,OIF, +OIF:SA:59:4798804,1,"Le Parc",48.841287,2.498768,,1,,Europe/Paris,,OIF, +OIF:SA:59:4798812,1,"Alexandre 1er",48.858341,2.508417,,1,,Europe/Paris,,OIF, +OIF:SA:59:4834517,1,"Pré Verdy",48.82583,2.205085,,1,,Europe/Paris,,OIF, +OIF:SA:59:4834520,1,"Parc de Lesser",48.826138,2.194787,,1,,Europe/Paris,,OIF, +OIF:SA:59:4834524,1,"Château de Ville d'Avray",48.827855,2.184151,,1,,Europe/Paris,,OIF, +OIF:SA:59:4834551,1,"Place de Verdun",48.836248,2.140334,,1,,Europe/Paris,,OIF, +OIF:SA:59:4834552,1,"Route des Puits",48.836797,2.146377,,1,,Europe/Paris,,OIF, +OIF:SA:59:4834553,1,"Stade de la Marche",48.837539,2.161541,,1,,Europe/Paris,,OIF, +OIF:SA:59:4834554,1,"Rue de Versailles",48.829423,2.174352,,1,,Europe/Paris,,OIF, +OIF:SA:59:4834555,1,"Cimetière de Ville-d'Avray",48.827808,2.175963,,1,,Europe/Paris,,OIF, +OIF:SA:59:4834556,1,"Matignon",48.827705,2.179652,,1,,Europe/Paris,,OIF, +OIF:SA:59:4834573,1,"Petit Chambord",48.776288,2.313053,,1,,Europe/Paris,,OIF, +OIF:SA:59:4834574,1,"Condorcet / Mairie",48.779252,2.315982,,1,,Europe/Paris,,OIF, +OIF:SA:59:4834576,1,"Galois",48.777218,2.322436,,1,,Europe/Paris,,OIF, +OIF:SA:59:4834580,1,"Sous Préfecture / Roseraie",48.776313,2.331024,,1,,Europe/Paris,,OIF, +OIF:SA:59:4834582,1,"Sous Préfecture / Église",48.77833,2.334974,,1,,Europe/Paris,,OIF, +OIF:SA:59:4834605,1,"Rue de la Bresse",48.758356,2.361172,,1,,Europe/Paris,,OIF, +OIF:SA:59:4834606,1,"Trois Marches",48.761512,2.356197,,1,,Europe/Paris,,OIF, +OIF:SA:59:4834607,1,"Marée",48.759535,2.351588,,1,,Europe/Paris,,OIF, +OIF:SA:59:4834613,1,"Rue de la Bresse",48.758204,2.361253,,1,,Europe/Paris,,OIF, +OIF:SA:59:4834623,1,"Lycée Lakanal",48.777527,2.307,,1,,Europe/Paris,,OIF, +OIF:SA:59:4834630,1,"Fontenay / Houdan",48.778734,2.291352,,1,,Europe/Paris,,OIF, +OIF:SA:59:4834632,1,"Église",48.778553,2.296752,,1,,Europe/Paris,,OIF, +OIF:SA:59:4834634,1,"Parc de Sceaux",48.778375,2.302498,,1,,Europe/Paris,,OIF, +OIF:SA:59:4834636,1,"Lycée Lakanal",48.777413,2.307386,,1,,Europe/Paris,,OIF, +OIF:SA:59:4834674,1,"Cimetière Communal",48.772155,2.34399,,1,,Europe/Paris,,OIF, +OIF:SA:59:4834679,1,"Petit Chambord",48.776791,2.313556,,1,,Europe/Paris,,OIF, +OIF:SA:59:4843416,1,"Rue des Jardins",48.820229,2.379718,,1,,Europe/Paris,,OIF, +OIF:SA:59:4843418,1,"Louis Bertrand",48.817343,2.38173,,1,,Europe/Paris,,OIF, +OIF:SA:59:4843420,1,"Ledru Rollin",48.815491,2.383252,,1,,Europe/Paris,,OIF, +OIF:SA:59:4843442,1,"Voltaire",48.812829,2.385863,,1,,Europe/Paris,,OIF, +OIF:SA:59:4843460,1,"Fort d'Ivry",48.805184,2.388659,,1,,Europe/Paris,,OIF, +OIF:SA:59:4843463,1,"Place de la Liberté",48.800322,2.386708,,1,,Europe/Paris,,OIF, +OIF:SA:59:4843465,1,"Lavoisier - Carrières",48.798999,2.391333,,1,,Europe/Paris,,OIF, +OIF:SA:59:4843467,1,"Malraux / Charles Infroit",48.795112,2.391757,,1,,Europe/Paris,,OIF, +OIF:SA:59:4843469,1,"Exploradôme",48.793076,2.392582,,1,,Europe/Paris,,OIF, +OIF:SA:59:4843477,1,"Edouard Til",48.787856,2.386213,,1,,Europe/Paris,,OIF, +OIF:SA:59:4843479,1,"Utrillo",48.789902,2.384338,,1,,Europe/Paris,,OIF, +OIF:SA:59:4843513,1,"Colonel Fabien",48.788445,2.37574,,1,,Europe/Paris,,OIF, +OIF:SA:59:4843517,1,"Groupe Scolaire Jean - Jacques Rousseau",48.782695,2.380442,,1,,Europe/Paris,,OIF, +OIF:SA:59:4843528,1,"Colonel Fabien",48.788386,2.375835,,1,,Europe/Paris,,OIF, +OIF:SA:59:4843529,1,"Solidarité / Amédée Huon",48.803883,2.384433,,1,,Europe/Paris,,OIF, +OIF:SA:59:4843530,1,"Gymnase Auguste Delaune",48.808493,2.386342,,1,,Europe/Paris,,OIF, +OIF:SA:59:4843815,1,"Lucien Selva",48.807946,2.383035,,1,,Europe/Paris,,OIF, +OIF:SA:59:4843816,1,"Maurice Coutant",48.80621,2.386353,,1,,Europe/Paris,,OIF, +OIF:SA:59:4843818,1,"Solidarité - Amédée Huon",48.804089,2.384732,,1,,Europe/Paris,,OIF, +OIF:SA:59:4889460,1,"Pierre Semard / Indépendance",48.910774,2.446601,,1,,Europe/Paris,,OIF, +OIF:SA:59:4889462,1,"Les Limites",48.914333,2.446288,,1,,Europe/Paris,,OIF, +OIF:SA:59:4889473,1,"Angélus Fabien",48.924665,2.46391,,1,,Europe/Paris,,OIF, +OIF:SA:59:4889481,1,"Québec",48.92826,2.475451,,1,,Europe/Paris,,OIF, +OIF:SA:59:4889483,1,"Rond-Point Pierre Sémard / Paul Vaillant",48.929246,2.479463,,1,,Europe/Paris,,OIF, +OIF:SA:59:4889501,1,"Jane Joye",48.918165,2.447871,,1,,Europe/Paris,,OIF, +OIF:SA:59:4889626,1,"Vache Noire",48.809631,2.32655,,1,,Europe/Paris,,OIF, +OIF:SA:59:4889627,1,"Jean-Marin Naudin",48.805556,2.318376,,1,,Europe/Paris,,OIF, +OIF:SA:59:4889629,1,"Martyrs de Châteaubriant",48.802012,2.318721,,1,,Europe/Paris,,OIF, +OIF:SA:59:4889644,1,"Les Blagis / Gabriel Péri",48.785867,2.302969,,1,,Europe/Paris,,OIF, +OIF:SA:59:4889645,1,"Rue des Brugnauts",48.78841,2.301349,,1,,Europe/Paris,,OIF, +OIF:SA:59:4889646,1,"Collège Romain Rolland",48.791771,2.299333,,1,,Europe/Paris,,OIF, +OIF:SA:59:4889652,1,"Collège Romain Rolland",48.791896,2.29898,,1,,Europe/Paris,,OIF, +OIF:SA:59:4889653,1,"Rue des Brugnauts",48.788589,2.300995,,1,,Europe/Paris,,OIF, +OIF:SA:59:4889656,1,"Les Bas Coquarts",48.785599,2.310811,,1,,Europe/Paris,,OIF, +OIF:SA:59:4890514,1,"Petit Chambord / Lycée Lakanal",48.77711,2.313991,,1,,Europe/Paris,,OIF, +OIF:SA:59:4890539,1,"Les Rabats",48.745579,2.314482,,1,,Europe/Paris,,OIF, +OIF:SA:59:4890542,1,"Pascal",48.743253,2.317383,,1,,Europe/Paris,,OIF, +OIF:SA:59:4890552,1,"Montavas",48.725685,2.316948,,1,,Europe/Paris,,OIF, +OIF:SA:59:4890563,1,"Place de la Libération",48.702474,2.32032,,1,,Europe/Paris,,OIF, +OIF:SA:59:4890564,1,"Division Leclerc",48.699686,2.316353,,1,,Europe/Paris,,OIF, +OIF:SA:59:4890566,1,"Elisée Reclus",48.69671,2.31279,,1,,Europe/Paris,,OIF, +OIF:SA:59:4890568,1,"Grand Jardin",48.694503,2.31087,,1,,Europe/Paris,,OIF, +OIF:SA:59:4890570,1,"Saint-Eloi",48.695437,2.307787,,1,,Europe/Paris,,OIF, +OIF:SA:59:4890573,1,"Rue de Chilly",48.699215,2.304024,,1,,Europe/Paris,,OIF, +OIF:SA:59:4890598,1,"Grange Ory",48.801663,2.324211,,1,,Europe/Paris,,OIF, +OIF:SA:59:4890604,1,"Croix d'Arcueil",48.805743,2.32534,,1,,Europe/Paris,,OIF, +OIF:SA:59:4890607,1,"Marcel Bonnet",48.795739,2.321451,,1,,Europe/Paris,,OIF, +OIF:SA:59:4890609,1,"Cité Jardins",48.789573,2.319127,,1,,Europe/Paris,,OIF, +OIF:SA:59:4890625,1,"Fribouli",48.739761,2.322167,,1,,Europe/Paris,,OIF, +OIF:SA:59:4890629,1,"Victor Baloche",48.72725,2.323536,,1,,Europe/Paris,,OIF, +OIF:SA:59:4890689,1,"Mondétour",48.729371,2.32643,,1,,Europe/Paris,,OIF, +OIF:SA:59:4909843,1,"Ferme de Grignon",48.754606,2.394882,,1,,Europe/Paris,,OIF, +OIF:SA:59:4909846,1,"Hélène Muller",48.756618,2.397677,,1,,Europe/Paris,,OIF, +OIF:SA:59:4909848,1,"Victor Hugo",48.760567,2.398389,,1,,Europe/Paris,,OIF, +OIF:SA:59:4909858,1,"La Galaise",48.762465,2.385713,,1,,Europe/Paris,,OIF, +OIF:SA:59:4996992,1,"Strasbourg / Magenta",48.873508,2.358718,,1,,Europe/Paris,,OIF, +OIF:SA:59:4997014,1,"République / Magenta",48.869014,2.362449,,1,,Europe/Paris,,OIF, +OIF:SA:59:5009395,1,"Asnières - Bords de Seine",48.917878,2.31476,,1,,Europe/Paris,,OIF, +OIF:SA:59:5009399,1,"Georges Corète",48.918429,2.306128,,1,,Europe/Paris,,OIF, +OIF:SA:59:5009400,1,"Lycée Galilée",48.920324,2.303236,,1,,Europe/Paris,,OIF, +OIF:SA:59:5009401,1,"Barbusse",48.921896,2.299907,,1,,Europe/Paris,,OIF, +OIF:SA:59:5009402,1,"Debussy / Chandon",48.923283,2.29709,,1,,Europe/Paris,,OIF, +OIF:SA:59:5009403,1,"Jaurès / Camelinat / Mairie",48.926769,2.294482,,1,,Europe/Paris,,OIF, +OIF:SA:59:5009404,1,"Couture d'Auxerre",48.924813,2.289751,,1,,Europe/Paris,,OIF, +OIF:SA:59:5009406,1,"Rouveyrol",48.922092,2.283119,,1,,Europe/Paris,,OIF, +OIF:SA:59:5009407,1,"Abbé Lemire",48.927184,2.280383,,1,,Europe/Paris,,OIF, +OIF:SA:59:5018158,1,"Vauvenargues",48.894041,2.332537,,1,,Europe/Paris,,OIF, +OIF:SA:59:5018161,1,"Moines / Davy",48.892153,2.323528,,1,,Europe/Paris,,OIF, +OIF:SA:59:5018169,1,"Jouffroy d'Abbans / Tocqueville",48.886013,2.309731,,1,,Europe/Paris,,OIF, +OIF:SA:59:5018175,1,"Wagram / Prony",48.883095,2.302381,,1,,Europe/Paris,,OIF, +OIF:SA:59:5018197,1,"Boulevard des Batignolles",48.88318,2.323932,,1,,Europe/Paris,,OIF, +OIF:SA:59:5018201,1,"Square des Batignolles",48.886572,2.317145,,1,,Europe/Paris,,OIF, +OIF:SA:59:5018207,1,"La Jonquière",48.894279,2.320645,,1,,Europe/Paris,,OIF, +OIF:SA:59:5018214,1,"Floréal",48.899931,2.318585,,1,,Europe/Paris,,OIF, +OIF:SA:59:5018215,1,"Général Leclerc / Victor Hugo",48.900835,2.315931,,1,,Europe/Paris,,OIF, +OIF:SA:59:5018216,1,"Clichy - Victor Hugo",48.901405,2.317044,,1,,Europe/Paris,,OIF, +OIF:SA:59:5018218,1,"Victor Hugo / Morel",48.901809,2.317739,,1,,Europe/Paris,,OIF, +OIF:SA:59:5018219,1,"Floréal",48.899922,2.318925,,1,,Europe/Paris,,OIF, +OIF:SA:59:5018332,1,"Magenta / Saint-Martin",48.874443,2.358528,,1,,Europe/Paris,,OIF, +OIF:SA:59:5018380,1,"Fort du Kremlin Bicetre",48.805096,2.346471,,1,,Europe/Paris,,OIF, +OIF:SA:59:5018387,1,"Les Halles / Centre Georges Pompidou",48.860702,2.349587,,1,,Europe/Paris,,OIF, +OIF:SA:59:5018388,1,"Turbigo / Etienne Marcel",48.864,2.351427,,1,,Europe/Paris,,OIF, +OIF:SA:59:5020440,1,"Louise Michel",48.932336,2.271856,,1,,Europe/Paris,,OIF, +OIF:SA:59:5020442,1,"Solférino",48.931765,2.266983,,1,,Europe/Paris,,OIF, +OIF:SA:59:5020444,1,"Mairie / Caisse d'Allocation Familiale",48.930428,2.26748,,1,,Europe/Paris,,OIF, +OIF:SA:59:5020446,1,"Marche Marceau",48.929398,2.26549,,1,,Europe/Paris,,OIF, +OIF:SA:59:5020450,1,"Collège Jean Baptiste Clément",48.931451,2.258203,,1,,Europe/Paris,,OIF, +OIF:SA:59:5020458,1,"Général Leclerc",48.924267,2.2528,,1,,Europe/Paris,,OIF, +OIF:SA:59:5020459,1,"Fraternité",48.926029,2.252967,,1,,Europe/Paris,,OIF, +OIF:SA:59:5020461,1,"4 Routes / Zola",48.927184,2.27624,,1,,Europe/Paris,,OIF, +OIF:SA:59:5020464,1,"Olympe de Gouges",48.918157,2.318414,,1,,Europe/Paris,,OIF, +OIF:SA:59:5020466,1,"Jean Wiener",48.91498,2.248547,,1,,Europe/Paris,,OIF, +OIF:SA:59:5020469,1,"Monts Clairs",48.91771,2.258579,,1,,Europe/Paris,,OIF, +OIF:SA:59:5020470,1,"Litolff",48.917344,2.261306,,1,,Europe/Paris,,OIF, +OIF:SA:59:5020471,1,"Maréchal Joffre",48.919761,2.261207,,1,,Europe/Paris,,OIF, +OIF:SA:59:5020478,1,"Square Médéric",48.915305,2.238456,,1,,Europe/Paris,,OIF, +OIF:SA:59:5020479,1,"Chatou",48.913373,2.239005,,1,,Europe/Paris,,OIF, +OIF:SA:59:5020480,1,"Général Crémer",48.913177,2.240996,,1,,Europe/Paris,,OIF, +OIF:SA:59:5020488,1,"Hôpital Louis Mourier",48.924377,2.238357,,1,,Europe/Paris,,OIF, +OIF:SA:59:5020498,1,"Tennis",48.927382,2.236401,,1,,Europe/Paris,,OIF, +OIF:SA:59:5020500,1,"Piscine - Patinoire",48.926409,2.234234,,1,,Europe/Paris,,OIF, +OIF:SA:59:5067249,1,"Liaison Inovel Sud",48.778598,2.214756,,1,,Europe/Paris,,OIF, +OIF:SA:59:5067329,1,"Roseraie",48.786997,2.225308,,1,,Europe/Paris,,OIF, +OIF:SA:59:5067364,1,"Église de Meudon-la-Forêt",48.788016,2.228829,,1,,Europe/Paris,,OIF, +OIF:SA:59:5067453,1,"Moulin de la Tour",48.785194,2.258724,,1,,Europe/Paris,,OIF, +OIF:SA:59:5067455,1,"Daniel Defoe",48.780945,2.25886,,1,,Europe/Paris,,OIF, +OIF:SA:59:5067466,1,"Hôpital Marie Lannelongue",48.783114,2.27428,,1,,Europe/Paris,,OIF, +OIF:SA:59:5067469,1,"Carrefour des Mouillebœufs",48.783491,2.282165,,1,,Europe/Paris,,OIF, +OIF:SA:59:5067471,1,"Augustin Claude",48.784866,2.288076,,1,,Europe/Paris,,OIF, +OIF:SA:59:5067473,1,"Avenue Lombart",48.784237,2.294361,,1,,Europe/Paris,,OIF, +OIF:SA:59:5067475,1,"Blagis",48.785193,2.303691,,1,,Europe/Paris,,OIF, +OIF:SA:59:5067476,1,"Clémenceau",48.784835,2.308587,,1,,Europe/Paris,,OIF, +OIF:SA:59:5067482,1,"Clémenceau",48.784987,2.308601,,1,,Europe/Paris,,OIF, +OIF:SA:59:5067575,1,"Rosier Rouge",48.822624,2.282249,,1,,Europe/Paris,,OIF, +OIF:SA:59:5067583,1,"Félix Faure",48.805926,2.286533,,1,,Europe/Paris,,OIF, +OIF:SA:59:5067598,1,"Jacquemin",48.7929,2.280546,,1,,Europe/Paris,,OIF, +OIF:SA:59:5067604,1,"Château Sainte-Barbe",48.790183,2.292148,,1,,Europe/Paris,,OIF, +OIF:SA:59:5067609,1,"Léon Blum",48.784647,2.297754,,1,,Europe/Paris,,OIF, +OIF:SA:59:5067614,1,"Léon Blum",48.784665,2.296788,,1,,Europe/Paris,,OIF, +OIF:SA:59:5067615,1,"Mairie de Fontenay-aux-Roses",48.791541,2.286751,,1,,Europe/Paris,,OIF, +OIF:SA:59:5067618,1,"Hébert",48.811409,2.276444,,1,,Europe/Paris,,OIF, +OIF:SA:59:5081729,1,"Villeneuve",48.905812,2.312925,,1,,Europe/Paris,,OIF, +OIF:SA:59:5081733,1,"Quai de Clichy (Pont de Gennevilliers)",48.91182,2.311845,,1,,Europe/Paris,,OIF, +OIF:SA:59:5081735,1,"Pierre Boudou",48.916704,2.308324,,1,,Europe/Paris,,OIF, +OIF:SA:59:5081737,1,"Grésillons / Laurent Cély",48.918195,2.307498,,1,,Europe/Paris,,OIF, +OIF:SA:59:5081739,1,"Paul Vaillant Couturier",48.92192,2.305989,,1,,Europe/Paris,,OIF, +OIF:SA:59:5081741,1,"Parc des Sévines",48.927473,2.303183,,1,,Europe/Paris,,OIF, +OIF:SA:59:5081751,1,"Les Champs Fourgons",48.942701,2.303051,,1,,Europe/Paris,,OIF, +OIF:SA:59:5081754,1,"Dequevauvilliers",48.946112,2.304235,,1,,Europe/Paris,,OIF, +OIF:SA:59:5081765,1,"Gros Buisson",48.961111,2.29053,,1,,Europe/Paris,,OIF, +OIF:SA:59:5081771,1,"Forum",48.968785,2.285378,,1,,Europe/Paris,,OIF, +OIF:SA:59:5081773,1,"Cité Jean Moulin",48.971958,2.279163,,1,,Europe/Paris,,OIF, +OIF:SA:59:5081775,1,"Stade Michel Hidalgo",48.974756,2.273475,,1,,Europe/Paris,,OIF, +OIF:SA:59:5091948,1,"Parc Henri Barbusse",48.819699,2.266952,,1,,Europe/Paris,,OIF, +OIF:SA:59:5091950,1,"Défense / Égalité",48.819118,2.263825,,1,,Europe/Paris,,OIF, +OIF:SA:59:5091952,1,"Épinettes",48.817356,2.260976,,1,,Europe/Paris,,OIF, +OIF:SA:59:5091969,1,"Pavé Blanc",48.779856,2.240617,,1,,Europe/Paris,,OIF, +OIF:SA:59:5091970,1,"Réaumur / Descartes",48.777751,2.23956,,1,,Europe/Paris,,OIF, +OIF:SA:59:5091973,1,"Réaumur / Descartes",48.777665,2.239864,,1,,Europe/Paris,,OIF, +OIF:SA:59:5091975,1,"Newton / Galilée",48.778772,2.246127,,1,,Europe/Paris,,OIF, +OIF:SA:59:5091977,1,"Robespierre",48.821406,2.271187,,1,,Europe/Paris,,OIF, +OIF:SA:59:5091978,1,"André Chénier",48.822407,2.271258,,1,,Europe/Paris,,OIF, +OIF:SA:59:5091979,1,"Gallieni - Camille Desmoulins",48.831095,2.266585,,1,,Europe/Paris,,OIF, +OIF:SA:59:5091994,1,"Centre Commercial",48.922032,2.331178,,1,,Europe/Paris,,OIF, +OIF:SA:59:5091996,1,"Quai du Chatelier N0 9",48.924368,2.333373,,1,,Europe/Paris,,OIF, +OIF:SA:59:5091998,1,"Quai du Chatelier N0 15",48.928399,2.337164,,1,,Europe/Paris,,OIF, +OIF:SA:59:5092000,1,"Rue de l'Ortebout",48.931908,2.340172,,1,,Europe/Paris,,OIF, +OIF:SA:59:5092004,1,"Rene et Isa Lefèvre",48.938505,2.339927,,1,,Europe/Paris,,OIF, +OIF:SA:59:5092006,1,"Rue Berthelot",48.942149,2.337622,,1,,Europe/Paris,,OIF, +OIF:SA:59:5092008,1,"Cimetière de l'Île Saint-Denis",48.943591,2.335862,,1,,Europe/Paris,,OIF, +OIF:SA:59:5092010,1,"Collège Sisley",48.946296,2.327573,,1,,Europe/Paris,,OIF, +OIF:SA:59:5092012,1,"Parc de l'Île Saint-Denis",48.949619,2.312911,,1,,Europe/Paris,,OIF, +OIF:SA:59:5121004,1,"Vélizy 2",48.787089,2.221129,,1,,Europe/Paris,,OIF, +OIF:SA:59:5121007,1,"Dassault",48.785863,2.210893,,1,,Europe/Paris,,OIF, +OIF:SA:59:5121008,1,"Le Bois",48.78644,2.208208,,1,,Europe/Paris,,OIF, +OIF:SA:59:5121012,1,"La Cheminée",48.783993,2.20613,,1,,Europe/Paris,,OIF, +OIF:SA:59:5121023,1,"Meudon-la-Forêt",48.783383,2.225037,,1,,Europe/Paris,,OIF, +OIF:SA:59:5121024,1,"Avenue de la Sygrie",48.781659,2.226482,,1,,Europe/Paris,,OIF, +OIF:SA:59:5121029,1,"Ferme de Malabry",48.77005,2.248517,,1,,Europe/Paris,,OIF, +OIF:SA:59:5121035,1,"Butte Rouge / Cité Jardins",48.765469,2.260154,,1,,Europe/Paris,,OIF, +OIF:SA:59:5121037,1,"Général Duval",48.764752,2.26545,,1,,Europe/Paris,,OIF, +OIF:SA:59:5121043,1,"Carrefour du 19 Mars 1962",48.762489,2.282498,,1,,Europe/Paris,,OIF, +OIF:SA:59:5121045,1,"Carrefour de l'Europe",48.761694,2.291422,,1,,Europe/Paris,,OIF, +OIF:SA:59:5121046,1,"Parc de Sceaux / sous Préfecture",48.761868,2.29996,,1,,Europe/Paris,,OIF, +OIF:SA:59:5121050,1,"Carrefour de l'Europe",48.761869,2.29064,,1,,Europe/Paris,,OIF, +OIF:SA:59:5121051,1,"Président Allende",48.764183,2.271593,,1,,Europe/Paris,,OIF, +OIF:SA:59:5121052,1,"Avenue Galilée",48.772686,2.244111,,1,,Europe/Paris,,OIF, +OIF:SA:59:5121307,1,"Espace Culturel / Robert Doisneau",48.787499,2.233686,,1,,Europe/Paris,,OIF, +OIF:SA:59:5121310,1,"Le Lac",48.786043,2.229629,,1,,Europe/Paris,,OIF, +OIF:SA:59:5121407,1,"12 Février 1934",48.817505,2.307386,,1,,Europe/Paris,,OIF, +OIF:SA:59:5121493,1,"Bassin 5",48.944456,2.295152,,1,,Europe/Paris,,OIF, +OIF:SA:59:5121495,1,"Chemin des Petits Marais",48.946362,2.298355,,1,,Europe/Paris,,OIF, +OIF:SA:59:5121499,1,"Pont d'Epinay",48.950152,2.306716,,1,,Europe/Paris,,OIF, +OIF:SA:59:5121563,1,"Les Peupliers",48.834305,2.254593,,1,,Europe/Paris,,OIF, +OIF:SA:59:5121568,1,"Rue de Seine",48.828312,2.250437,,1,,Europe/Paris,,OIF, +OIF:SA:59:5121580,1,"Saint-Germain / Jean Jaurès",48.809846,2.242847,,1,,Europe/Paris,,OIF, +OIF:SA:59:5121602,1,"D'Alembert / Vertugadins / Lycée",48.802727,2.237513,,1,,Europe/Paris,,OIF, +OIF:SA:59:5121604,1,"Verdun - Jean-Pierre Timbaud",48.81781,2.250386,,1,,Europe/Paris,,OIF, +OIF:SA:59:5121605,1,"Verdun / Docteur Lombard",48.818782,2.251705,,1,,Europe/Paris,,OIF, +OIF:SA:59:5121770,1,"Châtillon Montrouge",48.811769,2.299925,,1,,Europe/Paris,,OIF, +OIF:SA:59:5121774,1,"Pluchet",48.799492,2.300709,,1,,Europe/Paris,,OIF, +OIF:SA:59:5121780,1,"Mathurins",48.794896,2.306133,,1,,Europe/Paris,,OIF, +OIF:SA:59:5121782,1,"Porte d'en Bas",48.793085,2.306366,,1,,Europe/Paris,,OIF, +OIF:SA:59:5121784,1,"Sentier des Brugnauts",48.792087,2.304237,,1,,Europe/Paris,,OIF, +OIF:SA:59:5121786,1,"Fontaine - Gueffier",48.789835,2.304001,,1,,Europe/Paris,,OIF, +OIF:SA:59:5121788,1,"Cuverons",48.787516,2.304301,,1,,Europe/Paris,,OIF, +OIF:SA:59:5121793,1,"Frères Lumière",48.788462,2.310313,,1,,Europe/Paris,,OIF, +OIF:SA:59:5121796,1,"Port Galand",48.789608,2.314325,,1,,Europe/Paris,,OIF, +OIF:SA:59:5121798,1,"Albert Petit",48.795861,2.317216,,1,,Europe/Paris,,OIF, +OIF:SA:59:5121805,1,"Les Blagis",48.785373,2.303663,,1,,Europe/Paris,,OIF, +OIF:SA:59:5121813,1,"Les Capucins",48.817088,2.216424,,1,,Europe/Paris,,OIF, +OIF:SA:59:5121814,1,"Rond-Point des Bruyères",48.812903,2.214454,,1,,Europe/Paris,,OIF, +OIF:SA:59:5121815,1,"Docteur Roux",48.811691,2.212048,,1,,Europe/Paris,,OIF, +OIF:SA:59:5121822,1,"Cyrano de Bergerac",48.769173,2.250624,,1,,Europe/Paris,,OIF, +OIF:SA:59:5121823,1,"Séverine",48.771855,2.251224,,1,,Europe/Paris,,OIF, +OIF:SA:59:5121824,1,"Léon Blum",48.774135,2.253546,,1,,Europe/Paris,,OIF, +OIF:SA:59:5121828,1,"L'Escalier",48.782909,2.266661,,1,,Europe/Paris,,OIF, +OIF:SA:59:5121835,1,"Cité Basse",48.782125,2.270419,,1,,Europe/Paris,,OIF, +OIF:SA:59:5121841,1,"Séverine",48.77199,2.251147,,1,,Europe/Paris,,OIF, +OIF:SA:59:5121852,1,"Ermitage de Villebon",48.794235,2.218987,,1,,Europe/Paris,,OIF, +OIF:SA:59:5121944,1,"Vallée de la Bièvre",48.738331,2.267464,,1,,Europe/Paris,,OIF, +OIF:SA:59:5122010,1,"République - Liberté",48.801202,2.294143,,1,,Europe/Paris,,OIF, +OIF:SA:59:5122047,1,"Pasteur",48.785723,2.278854,,1,,Europe/Paris,,OIF, +OIF:SA:59:5122049,1,"Edmond About",48.783857,2.277224,,1,,Europe/Paris,,OIF, +OIF:SA:59:5122071,1,"Lycée Polyvalent",48.767408,2.254006,,1,,Europe/Paris,,OIF, +OIF:SA:59:5122076,1,"Le Plateau",48.796277,2.285345,,1,,Europe/Paris,,OIF, +OIF:SA:59:5122080,1,"Pierre Brossolette / Gabriel Péri",48.819186,2.310093,,1,,Europe/Paris,,OIF, +OIF:SA:59:5122153,1,"Parc des Sports",48.779217,2.251471,,1,,Europe/Paris,,OIF, +OIF:SA:59:5122155,1,"Parc Technologique",48.781968,2.252996,,1,,Europe/Paris,,OIF, +OIF:SA:59:5122157,1,"Le Hameau",48.781566,2.255955,,1,,Europe/Paris,,OIF, +OIF:SA:59:5122159,1,"Poste",48.780291,2.2578,,1,,Europe/Paris,,OIF, +OIF:SA:59:5122163,1,"Cœur de Ville",48.781589,2.263741,,1,,Europe/Paris,,OIF, +OIF:SA:59:5122167,1,"Tour de l'Étang",48.783516,2.270988,,1,,Europe/Paris,,OIF, +OIF:SA:59:5122179,1,"Mairie",48.778812,2.288259,,1,,Europe/Paris,,OIF, +OIF:SA:59:5122183,1,"IUT",48.775539,2.288568,,1,,Europe/Paris,,OIF, +OIF:SA:59:5122185,1,"Croix Blanche",48.770572,2.28654,,1,,Europe/Paris,,OIF, +OIF:SA:59:5122186,1,"Grande Voie des Vignes / École Centrale",48.766232,2.290229,,1,,Europe/Paris,,OIF, +OIF:SA:59:5122188,1,"Cimetière",48.75911,2.290786,,1,,Europe/Paris,,OIF, +OIF:SA:59:5122195,1,"Grande Voie des Vignes / École Centrale",48.766871,2.290146,,1,,Europe/Paris,,OIF, +OIF:SA:59:5122196,1,"Croix Blanche",48.770518,2.286875,,1,,Europe/Paris,,OIF, +OIF:SA:59:5137984,1,"Jean Longuet",48.800708,2.313844,,1,,Europe/Paris,,OIF, +OIF:SA:59:5137986,1,"Cosson / Longuet",48.800084,2.318001,,1,,Europe/Paris,,OIF, +OIF:SA:59:5137989,1,"Les Blains",48.792925,2.315766,,1,,Europe/Paris,,OIF, +OIF:SA:59:5137992,1,"Les Bas Coquarts",48.785824,2.310668,,1,,Europe/Paris,,OIF, +OIF:SA:59:5137993,1,"Pierre Loti",48.784296,2.3126,,1,,Europe/Paris,,OIF, +OIF:SA:59:5138011,1,"Mairie",48.799848,2.291042,,1,,Europe/Paris,,OIF, +OIF:SA:59:5138017,1,"Etienne Dolet",48.813378,2.302298,,1,,Europe/Paris,,OIF, +OIF:SA:59:5138018,1,"Augustin Dumont",48.816552,2.306474,,1,,Europe/Paris,,OIF, +OIF:SA:59:5138019,1,"12 Février 1934",48.81809,2.308624,,1,,Europe/Paris,,OIF, +OIF:SA:59:5138021,1,"Depinoy",48.821937,2.313807,,1,,Europe/Paris,,OIF, +OIF:SA:59:5138057,1,"Jean Jaurès",48.815298,2.311052,,1,,Europe/Paris,,OIF, +OIF:SA:59:5138058,1,"Jules Guesde",48.812823,2.307803,,1,,Europe/Paris,,OIF, +OIF:SA:59:5138163,1,"Moncey",48.879756,2.331346,,1,,Europe/Paris,,OIF, +OIF:SA:59:5138214,1,"Châtillon - Montrouge - Métro",48.811078,2.304749,,1,,Europe/Paris,,OIF, +OIF:SA:59:5138216,1,"Jean Monnet",48.811941,2.30415,,1,,Europe/Paris,,OIF, +OIF:SA:59:5138221,1,"Pyramides / Saint-Honoré",48.864055,2.332465,,1,,Europe/Paris,,OIF, +OIF:SA:59:5150174,1,"Joliot Curie / Courbevoie",48.893778,2.212491,,1,,Europe/Paris,,OIF, +OIF:SA:59:5150246,1,"Foch / Leclerc",48.744254,2.266538,,1,,Europe/Paris,,OIF, +OIF:SA:59:5150445,1,"Division Leclerc / Courtillières",48.913679,2.408354,,1,,Europe/Paris,,OIF, +OIF:SA:59:5150446,1,"Place du Marché",48.914059,2.411354,,1,,Europe/Paris,,OIF, +OIF:SA:59:5150460,1,"Avenue Marcelle",48.909378,2.467595,,1,,Europe/Paris,,OIF, +OIF:SA:59:5150462,1,"Etienne Dolet",48.910511,2.475058,,1,,Europe/Paris,,OIF, +OIF:SA:59:5150464,1,"Maison de Retraite",48.911439,2.48418,,1,,Europe/Paris,,OIF, +OIF:SA:59:5150465,1,"Ronsard / Villon",48.913434,2.488068,,1,,Europe/Paris,,OIF, +OIF:SA:59:5150713,1,"Rue du Port",48.936604,2.342676,,1,,Europe/Paris,,OIF, +OIF:SA:59:5150714,1,"La Briche",48.942383,2.340793,,1,,Europe/Paris,,OIF, +OIF:SA:59:5150720,1,"Avenue de la Marne - Commandant Louis Bouchet",48.952775,2.327353,,1,,Europe/Paris,,OIF, +OIF:SA:59:5150765,1,"Cstb - Mattéoti",48.855963,2.589939,,1,,Europe/Paris,,OIF, +OIF:SA:59:5150773,1,"Cygne d'Enghien - Joffre",48.961383,2.295935,,1,,Europe/Paris,,OIF, +OIF:SA:59:5150787,1,"Zone Industrielle Nord",48.942848,2.317839,,1,,Europe/Paris,,OIF, +OIF:SA:59:5150800,1,"Henri Colin",48.925994,2.322483,,1,,Europe/Paris,,OIF, +OIF:SA:59:5150808,1,"Clos Milons",48.986046,2.224708,,1,,Europe/Paris,,OIF, +OIF:SA:59:5150814,1,"Gambetta",48.974963,2.249434,,1,,Europe/Paris,,OIF, +OIF:SA:59:5150822,1,"Léon Protais",48.967676,2.271272,,1,,Europe/Paris,,OIF, +OIF:SA:59:5150832,1,"Joffre Cinéma",48.958131,2.301778,,1,,Europe/Paris,,OIF, +OIF:SA:59:5150840,1,"ZI du Val de Seine",48.944523,2.31127,,1,,Europe/Paris,,OIF, +OIF:SA:59:5150841,1,"Commandant d'Estienne d'Orves",48.943598,2.315145,,1,,Europe/Paris,,OIF, +OIF:SA:59:5150860,1,"Bongarde",48.925244,2.326308,,1,,Europe/Paris,,OIF, +OIF:SA:59:5150861,1,"ZI du Val de Seine",48.944748,2.311092,,1,,Europe/Paris,,OIF, +OIF:SA:59:5151247,1,"Georges Pompidou",48.896476,2.278171,,1,,Europe/Paris,,OIF, +OIF:SA:59:5151289,1,"Jean-Baptiste Clément - Université",48.955431,2.338509,,1,,Europe/Paris,,OIF, +OIF:SA:59:5151462,1,"La Cavée",48.787891,2.25855,,1,,Europe/Paris,,OIF, +OIF:SA:59:5151467,1,"Jeanne d'Arc",48.801137,2.278598,,1,,Europe/Paris,,OIF, +OIF:SA:59:5151485,1,"Rue de Châtillon",48.817861,2.283833,,1,,Europe/Paris,,OIF, +OIF:SA:59:5157986,1,"Établissement Thermal",48.969186,2.304699,,1,,Europe/Paris,,OIF, +OIF:SA:59:5158023,1,"Cité Blumenthal",48.946786,2.34284,,1,,Europe/Paris,,OIF, +OIF:SA:59:5158051,1,"Gillet",48.920274,2.288712,,1,,Europe/Paris,,OIF, +OIF:SA:59:5158085,1,"Victor Hugo / 8 Mai 1945",48.898465,2.310215,,1,,Europe/Paris,,OIF, +OIF:SA:59:5158091,1,"Chemin des Reniers",48.934271,2.319514,,1,,Europe/Paris,,OIF, +OIF:SA:59:5158092,1,"Jean-Baptiste Clément - Carnot",48.953144,2.337315,,1,,Europe/Paris,,OIF, +OIF:SA:59:5158093,1,"Yser",48.954438,2.334872,,1,,Europe/Paris,,OIF, +OIF:SA:59:5161414,1,"Madeleine Verdier",48.814452,2.320112,,1,,Europe/Paris,,OIF, +OIF:SA:59:5161415,1,"Boileau",48.811822,2.317173,,1,,Europe/Paris,,OIF, +OIF:SA:59:5161417,1,"Cimetière Parisien",48.809715,2.317011,,1,,Europe/Paris,,OIF, +OIF:SA:59:5161420,1,"Pasteur",48.801962,2.310728,,1,,Europe/Paris,,OIF, +OIF:SA:59:5161422,1,"Rue de l'Egalité",48.800429,2.308715,,1,,Europe/Paris,,OIF, +OIF:SA:59:5161424,1,"Mairie",48.798581,2.304437,,1,,Europe/Paris,,OIF, +OIF:SA:59:5161429,1,"Sentier des Lilas",48.793163,2.296387,,1,,Europe/Paris,,OIF, +OIF:SA:59:5161435,1,"Gambetta",48.784942,2.293449,,1,,Europe/Paris,,OIF, +OIF:SA:59:5161437,1,"Rue du Lycée",48.781582,2.293338,,1,,Europe/Paris,,OIF, +OIF:SA:59:5161464,1,"Cimetière de Fontenay aux Roses",48.794581,2.291434,,1,,Europe/Paris,,OIF, +OIF:SA:59:5161475,1,"Professeur Einstein",48.775633,2.277763,,1,,Europe/Paris,,OIF, +OIF:SA:59:5161480,1,"Jean Jaurès",48.769996,2.274099,,1,,Europe/Paris,,OIF, +OIF:SA:59:5161508,1,"Amblainvilliers",48.737066,2.244841,,1,,Europe/Paris,,OIF, +OIF:SA:59:5161510,1,"Rond-Point des Vallées",48.736278,2.236954,,1,,Europe/Paris,,OIF, +OIF:SA:59:5161511,1,"Kennedy / Bellevue",48.73815,2.229918,,1,,Europe/Paris,,OIF, +OIF:SA:59:5161518,1,"Groupe Scolaire Sophie Barat",48.758017,2.269831,,1,,Europe/Paris,,OIF, +OIF:SA:59:5161521,1,"Vache Noire / Centre Commercial",48.809905,2.327434,,1,,Europe/Paris,,OIF, +OIF:SA:59:5161523,1,"Lénine",48.808566,2.330959,,1,,Europe/Paris,,OIF, +OIF:SA:59:5161532,1,"Belvédère",48.797632,2.348232,,1,,Europe/Paris,,OIF, +OIF:SA:59:5161540,1,"Verdun / République",48.787445,2.354513,,1,,Europe/Paris,,OIF, +OIF:SA:59:5161542,1,"Hôpital Paul Guiraud",48.788373,2.35854,,1,,Europe/Paris,,OIF, +OIF:SA:59:5161544,1,"Auguste Delaune",48.788493,2.361743,,1,,Europe/Paris,,OIF, +OIF:SA:59:5221750,1,"Marcelin Berthelot",48.80948,2.296483,,1,,Europe/Paris,,OIF, +OIF:SA:59:5221754,1,"Stade de Châtillon",48.808192,2.288578,,1,,Europe/Paris,,OIF, +OIF:SA:59:5221762,1,"Pierrelais",48.797909,2.286996,,1,,Europe/Paris,,OIF, +OIF:SA:59:5221764,1,"Le Plateau",48.796385,2.285141,,1,,Europe/Paris,,OIF, +OIF:SA:59:5221792,1,"Pasteur",48.785686,2.278487,,1,,Europe/Paris,,OIF, +OIF:SA:59:5231529,1,"Cités Unies",48.839211,2.657602,,1,,Europe/Paris,,OIF, +OIF:SA:59:5231530,1,"Salvador Allende",48.842631,2.655887,,1,,Europe/Paris,,OIF, +OIF:SA:59:5231531,1,"Rives de Maubuée",48.844921,2.653804,,1,,Europe/Paris,,OIF, +OIF:SA:59:5231532,1,"Jacques Prévert",48.846815,2.652335,,1,,Europe/Paris,,OIF, +OIF:SA:59:5231533,1,"Rue des Épinettes",48.848462,2.656584,,1,,Europe/Paris,,OIF, +OIF:SA:59:5231534,1,"La Mare aux Marchais",48.850682,2.657421,,1,,Europe/Paris,,OIF, +OIF:SA:59:5231535,1,"Mairie",48.850799,2.65207,,1,,Europe/Paris,,OIF, +OIF:SA:59:5231536,1,"Les Tilleuls",48.850247,2.647695,,1,,Europe/Paris,,OIF, +OIF:SA:59:5231537,1,"Bel Air",48.849495,2.641235,,1,,Europe/Paris,,OIF, +OIF:SA:59:5231539,1,"Cité Scolaire",48.850213,2.633681,,1,,Europe/Paris,,OIF, +OIF:SA:59:5231543,1,"Maison de Retraite",48.852513,2.609466,,1,,Europe/Paris,,OIF, +OIF:SA:59:5231544,1,"Mairie",48.852005,2.601212,,1,,Europe/Paris,,OIF, +OIF:SA:59:5231546,1,"Les Iris",48.855327,2.593184,,1,,Europe/Paris,,OIF, +OIF:SA:59:5231548,1,"Rond-Point des Pyramides",48.855531,2.583152,,1,,Europe/Paris,,OIF, +OIF:SA:59:5231551,1,"Les Prévoyants",48.853048,2.573588,,1,,Europe/Paris,,OIF, +OIF:SA:59:5231569,1,"Croix d'Eau",48.850198,2.495847,,1,,Europe/Paris,,OIF, +OIF:SA:59:5231575,1,"Cimetière de Vincennes",48.859951,2.480812,,1,,Europe/Paris,,OIF, +OIF:SA:59:5231587,1,"Centre Administratif",48.860825,2.443901,,1,,Europe/Paris,,OIF, +OIF:SA:59:5231603,1,"Folie Regnault / Chemin Vert",48.861709,2.385425,,1,,Europe/Paris,,OIF, +OIF:SA:59:5231604,1,"Roquette / Père Lachaise",48.859659,2.386568,,1,,Europe/Paris,,OIF, +OIF:SA:59:5231653,1,"Avron",48.849915,2.499285,,1,,Europe/Paris,,OIF, +OIF:SA:59:5231694,1,"Amblainvilliers",48.738639,2.24409,,1,,Europe/Paris,,OIF, +OIF:SA:59:5231705,1,"Grands Chênes",48.742724,2.263142,,1,,Europe/Paris,,OIF, +OIF:SA:59:5231722,1,"Théâtre Mairie",48.75491,2.296804,,1,,Europe/Paris,,OIF, +OIF:SA:59:5244890,1,"Centre Sportif Lionel Terray",48.735002,2.287566,,1,,Europe/Paris,,OIF, +OIF:SA:59:5244894,1,"Collège des Rabats",48.739331,2.305507,,1,,Europe/Paris,,OIF, +OIF:SA:59:5244895,1,"Aubépine",48.743404,2.311148,,1,,Europe/Paris,,OIF, +OIF:SA:59:5244896,1,"Les Rabats / Armand Guillebaud",48.745396,2.313753,,1,,Europe/Paris,,OIF, +OIF:SA:59:5244897,1,"Descartes",48.748037,2.309008,,1,,Europe/Paris,,OIF, +OIF:SA:59:5244903,1,"Baconnets / Mirabeau",48.740385,2.298392,,1,,Europe/Paris,,OIF, +OIF:SA:59:5244906,1,"Centre Commercial des Baconnets",48.738084,2.290544,,1,,Europe/Paris,,OIF, +OIF:SA:59:5244907,1,"Mont Blanc",48.737622,2.28755,,1,,Europe/Paris,,OIF, +OIF:SA:59:5244908,1,"Centre Commercial / Noyer Dore",48.735625,2.284698,,1,,Europe/Paris,,OIF, +OIF:SA:59:5244910,1,"Kennedy / Bourgogne",48.736275,2.292253,,1,,Europe/Paris,,OIF, +OIF:SA:59:5250524,1,"Sophie Barat",48.757527,2.270362,,1,,Europe/Paris,,OIF, +OIF:SA:59:5251750,1,"Jardin d'Acclimatation",48.876062,2.270128,,1,,Europe/Paris,,OIF, +OIF:SA:59:5251752,1,"Route de la Muette",48.872576,2.264587,,1,,Europe/Paris,,OIF, +OIF:SA:59:5251754,1,"Route des Lacs",48.870667,2.259263,,1,,Europe/Paris,,OIF, +OIF:SA:59:5251756,1,"Bagatelle / Pré Catelan",48.866881,2.248765,,1,,Europe/Paris,,OIF, +OIF:SA:59:5251758,1,"Carrefour de Longchamp",48.864242,2.241386,,1,,Europe/Paris,,OIF, +OIF:SA:59:5251777,1,"Les Houtraits",48.867518,2.203706,,1,,Europe/Paris,,OIF, +OIF:SA:59:5251781,1,"Rue de la Paix",48.87214,2.198176,,1,,Europe/Paris,,OIF, +OIF:SA:59:5276847,1,"Bongarde",48.925258,2.325736,,1,,Europe/Paris,,OIF, +OIF:SA:59:5298004,1,"Léonard de Vinci",48.721513,2.267134,,1,,Europe/Paris,,OIF, +OIF:SA:59:5315278,1,"Notre-Dame du Calvaire",48.808114,2.284353,,1,,Europe/Paris,,OIF, +OIF:SA:59:5315280,1,"Piscine",48.810019,2.28248,,1,,Europe/Paris,,OIF, +OIF:SA:59:5315282,1,"Prévoyants",48.808571,2.281155,,1,,Europe/Paris,,OIF, +OIF:SA:59:5315283,1,"Béranger - Petite Enfance",48.806225,2.281198,,1,,Europe/Paris,,OIF, +OIF:SA:59:5315285,1,"École Marcel Doret",48.80477,2.282683,,1,,Europe/Paris,,OIF, +OIF:SA:59:5315286,1,"Collège George Sand",48.805878,2.279029,,1,,Europe/Paris,,OIF, +OIF:SA:59:5315288,1,"Lasègue",48.803239,2.27761,,1,,Europe/Paris,,OIF, +OIF:SA:59:5315292,1,"Jean Pierre Timbaud",48.802803,2.28559,,1,,Europe/Paris,,OIF, +OIF:SA:59:5315300,1,"Liberté",48.80019,2.293382,,1,,Europe/Paris,,OIF, +OIF:SA:59:5315304,1,"Paul Éluard",48.798455,2.292336,,1,,Europe/Paris,,OIF, +OIF:SA:59:5315305,1,"Bagneux",48.798941,2.29443,,1,,Europe/Paris,,OIF, +OIF:SA:59:5315309,1,"Malakoff",48.811033,2.280105,,1,,Europe/Paris,,OIF, +OIF:SA:59:5325157,1,"Pont Nelson Mandela / Rive Droite",48.822784,2.402825,,1,,Europe/Paris,,OIF, +OIF:SA:59:5325158,1,"Archevêché",48.823556,2.404412,,1,,Europe/Paris,,OIF, +OIF:SA:59:5325165,1,"Pont Nelson Mandela / Rives de Bercy",48.822489,2.400334,,1,,Europe/Paris,,OIF, +OIF:SA:59:5355346,1,"Place Auguste Baron",48.901117,2.386239,,1,,Europe/Paris,,OIF, +OIF:SA:59:5355348,1,"Karman / Félix Faure",48.903222,2.383576,,1,,Europe/Paris,,OIF, +OIF:SA:59:5355350,1,"Félix Faure / Rue des Écoles",48.906584,2.380068,,1,,Europe/Paris,,OIF, +OIF:SA:59:5355352,1,"Victor Hugo / Félix Faure",48.908247,2.377998,,1,,Europe/Paris,,OIF, +OIF:SA:59:5355354,1,"Quai Lucien Lefranc",48.907511,2.376197,,1,,Europe/Paris,,OIF, +OIF:SA:59:5355355,1,"Centre Bus Aubervilliers",48.910177,2.372668,,1,,Europe/Paris,,OIF, +OIF:SA:59:5355357,1,"18 Rue du Pilier",48.90825,2.368924,,1,,Europe/Paris,,OIF, +OIF:SA:59:5355364,1,"La Montjoie / Germaine Tillion",48.910902,2.365974,,1,,Europe/Paris,,OIF, +OIF:SA:59:5355380,1,"Rue Pleyel",48.917453,2.345789,,1,,Europe/Paris,,OIF, +OIF:SA:59:5355384,1,"Rue Ampère",48.922854,2.340478,,1,,Europe/Paris,,OIF, +OIF:SA:59:5355386,1,"Rue Nicolau",48.920333,2.33606,,1,,Europe/Paris,,OIF, +OIF:SA:59:5355389,1,"Quai de Seine",48.918082,2.332412,,1,,Europe/Paris,,OIF, +OIF:SA:59:5355394,1,"Rue de la Haie Coq",48.905256,2.373146,,1,,Europe/Paris,,OIF, +OIF:SA:59:5370692,1,"Rue de Paradis",48.786872,2.299854,,1,,Europe/Paris,,OIF, +OIF:SA:59:5370694,1,"Avenue Lombart",48.784246,2.293137,,1,,Europe/Paris,,OIF, +OIF:SA:59:5370700,1,"Les Ormeaux",48.789401,2.284726,,1,,Europe/Paris,,OIF, +OIF:SA:59:5419727,1,"Place de la Boule / Joliot Curie",48.887676,2.201426,,1,,Europe/Paris,,OIF, +OIF:SA:59:5423691,1,"Moulin Fidèle",48.773819,2.257123,,1,,Europe/Paris,,OIF, +OIF:SA:59:5423692,1,"Maximilien Robespierre",48.771902,2.253883,,1,,Europe/Paris,,OIF, +OIF:SA:59:5423702,1,"Les Vallées",48.763594,2.274018,,1,,Europe/Paris,,OIF, +OIF:SA:59:5423704,1,"La Briaude",48.762886,2.279467,,1,,Europe/Paris,,OIF, +OIF:SA:59:5423708,1,"Rue des Vignes",48.766121,2.281112,,1,,Europe/Paris,,OIF, +OIF:SA:59:5423712,1,"Pres Hauts",48.770731,2.280563,,1,,Europe/Paris,,OIF, +OIF:SA:59:5423714,1,"Hélène Roederer",48.772895,2.280971,,1,,Europe/Paris,,OIF, +OIF:SA:59:5423726,1,"Pierrelais - Blanchard",48.794823,2.288938,,1,,Europe/Paris,,OIF, +OIF:SA:59:5478215,1,"Mairie",48.767185,2.279656,,1,,Europe/Paris,,OIF, +OIF:SA:59:5478358,1,"Avenue des Piliers",48.792989,2.510296,,1,,Europe/Paris,,OIF, +OIF:SA:59:5478378,1,"Verdun",48.822234,2.420083,,1,,Europe/Paris,,OIF, +OIF:SA:59:5478379,1,"Hôpital National de Saint-Maurice",48.821944,2.423241,,1,,Europe/Paris,,OIF, +OIF:SA:59:5478380,1,"Épinettes",48.82003,2.423238,,1,,Europe/Paris,,OIF, +OIF:SA:59:5478381,1,"Val d'Osne",48.818357,2.424283,,1,,Europe/Paris,,OIF, +OIF:SA:59:5478382,1,"Mairie",48.817911,2.426181,,1,,Europe/Paris,,OIF, +OIF:SA:59:5478384,1,"Hôpital Esquirol",48.818002,2.43008,,1,,Europe/Paris,,OIF, +OIF:SA:59:5478386,1,"Passerelle de Saint-Maurice",48.818099,2.433258,,1,,Europe/Paris,,OIF, +OIF:SA:59:5478388,1,"Maréchal Leclerc",48.818183,2.44007,,1,,Europe/Paris,,OIF, +OIF:SA:59:5478390,1,"Passerelle de Charentonneau",48.817892,2.443772,,1,,Europe/Paris,,OIF, +OIF:SA:59:5478392,1,"CFA - Andrieu",48.817934,2.447113,,1,,Europe/Paris,,OIF, +OIF:SA:59:5478394,1,"Roseraie",48.817552,2.45159,,1,,Europe/Paris,,OIF, +OIF:SA:59:5478398,1,"Place de l'Ecluse",48.814779,2.456122,,1,,Europe/Paris,,OIF, +OIF:SA:59:5478408,1,"Stade Léo Lagrange",48.836822,2.44121,,1,,Europe/Paris,,OIF, +OIF:SA:59:5478410,1,"Plaine de la Faluère",48.834523,2.444207,,1,,Europe/Paris,,OIF, +OIF:SA:59:5478412,1,"Cartoucherie",48.834627,2.449068,,1,,Europe/Paris,,OIF, +OIF:SA:59:5478414,1,"Champ de Manœuvre / Tremblay",48.835544,2.452875,,1,,Europe/Paris,,OIF, +OIF:SA:59:5478416,1,"Insep",48.832831,2.456545,,1,,Europe/Paris,,OIF, +OIF:SA:59:5478418,1,"Mortemart",48.829613,2.461418,,1,,Europe/Paris,,OIF, +OIF:SA:59:5478420,1,"Carrefour de Beauté",48.827394,2.464271,,1,,Europe/Paris,,OIF, +OIF:SA:59:5478424,1,"Eugène Voisin - Marche",48.816948,2.466818,,1,,Europe/Paris,,OIF, +OIF:SA:59:5478426,1,"République",48.814825,2.467894,,1,,Europe/Paris,,OIF, +OIF:SA:59:5478436,1,"Chemin Vert",48.80094,2.47107,,1,,Europe/Paris,,OIF, +OIF:SA:59:5478445,1,"Docteur Roux",48.793783,2.491675,,1,,Europe/Paris,,OIF, +OIF:SA:59:5478447,1,"Place Rimini",48.793851,2.494947,,1,,Europe/Paris,,OIF, +OIF:SA:59:5478449,1,"Delerue",48.795704,2.497109,,1,,Europe/Paris,,OIF, +OIF:SA:59:5478450,1,"Edgar Quinet",48.797867,2.499333,,1,,Europe/Paris,,OIF, +OIF:SA:59:5478452,1,"Place Jean Moulin",48.797723,2.502761,,1,,Europe/Paris,,OIF, +OIF:SA:59:5478456,1,"École Michelet",48.794786,2.510492,,1,,Europe/Paris,,OIF, +OIF:SA:59:5478459,1,"Avenue Victoria",48.796874,2.495929,,1,,Europe/Paris,,OIF, +OIF:SA:59:5545778,1,"Chevalier de la Barre",48.821278,2.277603,,1,,Europe/Paris,,OIF, +OIF:SA:59:5549465,1,"Victor Hugo / Gallieni",48.837562,2.246065,,1,,Europe/Paris,,OIF, +OIF:SA:59:5549468,1,"Avenue Victor Hugo / Reine",48.839252,2.247069,,1,,Europe/Paris,,OIF, +OIF:SA:59:5549472,1,"Rond-Point André Malraux",48.840699,2.247543,,1,,Europe/Paris,,OIF, +OIF:SA:59:5549475,1,"Place Denfert Rochereau",48.843691,2.246122,,1,,Europe/Paris,,OIF, +OIF:SA:59:5549476,1,"Denfert Rochereau / Porte de Boulogne",48.847239,2.242861,,1,,Europe/Paris,,OIF, +OIF:SA:59:5549477,1,"Alsace Lorraine / Porte de Boulogne",48.849187,2.240161,,1,,Europe/Paris,,OIF, +OIF:SA:59:5549479,1,"Parchamp",48.846856,2.236748,,1,,Europe/Paris,,OIF, +OIF:SA:59:5549517,1,"Gallieni / Belle Feuille",48.836885,2.242853,,1,,Europe/Paris,,OIF, +OIF:SA:59:5549518,1,"Gallieni / Thiers",48.837473,2.247658,,1,,Europe/Paris,,OIF, +OIF:SA:59:5549519,1,"Thiers / Vaillant",48.836386,2.248708,,1,,Europe/Paris,,OIF, +OIF:SA:59:5549520,1,"Thiers / Maison du Combattant",48.834203,2.250318,,1,,Europe/Paris,,OIF, +OIF:SA:59:5549551,1,"Parc de Boulogne / Edmond de Rothschild",48.847411,2.233165,,1,,Europe/Paris,,OIF, +OIF:SA:59:5549552,1,"Dispensaire Saint-Denis",48.846385,2.232622,,1,,Europe/Paris,,OIF, +OIF:SA:59:5549553,1,"Saint-Denis / Anna Jacquin",48.844605,2.231605,,1,,Europe/Paris,,OIF, +OIF:SA:59:5549554,1,"Saint-Denis / Jean Baptiste Clément",48.842753,2.230764,,1,,Europe/Paris,,OIF, +OIF:SA:59:5549555,1,"Rue de Silly / Rue de Paris",48.841037,2.23134,,1,,Europe/Paris,,OIF, +OIF:SA:59:5549556,1,"Silly / Morizet",48.839509,2.231751,,1,,Europe/Paris,,OIF, +OIF:SA:59:5549558,1,"Gallieni / Billancourt",48.836116,2.236796,,1,,Europe/Paris,,OIF, +OIF:SA:59:5549561,1,"Traversière",48.824394,2.244645,,1,,Europe/Paris,,OIF, +OIF:SA:59:5549562,1,"Place Jules Guesde",48.827318,2.24169,,1,,Europe/Paris,,OIF, +OIF:SA:59:5549563,1,"Place Bir Hakeim",48.829989,2.239612,,1,,Europe/Paris,,OIF, +OIF:SA:59:5549564,1,"Castéja",48.829699,2.237094,,1,,Europe/Paris,,OIF, +OIF:SA:59:5549568,1,"Pyramide",48.8344,2.237575,,1,,Europe/Paris,,OIF, +OIF:SA:59:5604540,1,"Centre Médical de Santé",48.82092,2.304988,,1,,Europe/Paris,,OIF, +OIF:SA:59:5605602,1,"Maison de Quartier / Courtillières",48.913729,2.407379,,1,,Europe/Paris,,OIF, +OIF:SA:59:5605604,1,"Division Leclerc / Stendhal",48.911484,2.412325,,1,,Europe/Paris,,OIF, +OIF:SA:59:5605610,1,"IUT Paris 13",48.914541,2.41715,,1,,Europe/Paris,,OIF, +OIF:SA:59:5605614,1,"Place de l'Amitié",48.921624,2.421293,,1,,Europe/Paris,,OIF, +OIF:SA:59:5605618,1,"Hôpital Avicenne",48.915726,2.42551,,1,,Europe/Paris,,OIF, +OIF:SA:59:5605620,1,"Diderot / Bize",48.917511,2.429713,,1,,Europe/Paris,,OIF, +OIF:SA:59:5605621,1,"Gutenberg / Diderot",48.920244,2.428927,,1,,Europe/Paris,,OIF, +OIF:SA:59:5605622,1,"Gutenberg / Guynemer",48.92151,2.429652,,1,,Europe/Paris,,OIF, +OIF:SA:59:5605623,1,"Gutenberg / Danton",48.923109,2.431183,,1,,Europe/Paris,,OIF, +OIF:SA:59:5605624,1,"Gutenberg / Ferry",48.924626,2.43289,,1,,Europe/Paris,,OIF, +OIF:SA:59:5605625,1,"Cité Pierre Semard",48.92537,2.435803,,1,,Europe/Paris,,OIF, +OIF:SA:59:5605626,1,"Centre Culturel",48.926324,2.438621,,1,,Europe/Paris,,OIF, +OIF:SA:59:5605646,1,"Faidherbe / Ferry",48.924507,2.436013,,1,,Europe/Paris,,OIF, +OIF:SA:59:5605647,1,"Faidherbe / Danton",48.921445,2.432789,,1,,Europe/Paris,,OIF, +OIF:SA:59:5605648,1,"Faidherbe / Bize",48.917393,2.430927,,1,,Europe/Paris,,OIF, +OIF:SA:59:5657290,1,"Atlas",48.876348,2.376167,,1,,Europe/Paris,,OIF, +OIF:SA:59:5657292,1,"Botzaris / Buttes Chaumont",48.876153,2.3805,,1,,Europe/Paris,,OIF, +OIF:SA:59:5657297,1,"L'Ermitage",48.871992,2.391791,,1,,Europe/Paris,,OIF, +OIF:SA:59:5657320,1,"Villiers de l'Isle-Adam",48.867761,2.396384,,1,,Europe/Paris,,OIF, +OIF:SA:59:5673010,1,"Ctm",48.755049,2.419554,,1,,Europe/Paris,,OIF, +OIF:SA:59:5673011,1,"Prairie",48.754196,2.41939,,1,,Europe/Paris,,OIF, +OIF:SA:59:5673012,1,"Charles Jules Vaillant",48.758599,2.413626,,1,,Europe/Paris,,OIF, +OIF:SA:59:5673014,1,"Église Saint-Martin",48.752382,2.416084,,1,,Europe/Paris,,OIF, +OIF:SA:59:5673016,1,"Briand / Pelloutier",48.754678,2.410446,,1,,Europe/Paris,,OIF, +OIF:SA:59:5673017,1,"Rue du Four",48.754149,2.407292,,1,,Europe/Paris,,OIF, +OIF:SA:59:5673018,1,"Spinoza",48.755382,2.40501,,1,,Europe/Paris,,OIF, +OIF:SA:59:5673019,1,"De Lattre de Tassigny",48.757612,2.404415,,1,,Europe/Paris,,OIF, +OIF:SA:59:5673020,1,"Rue Yves Léger",48.760342,2.407463,,1,,Europe/Paris,,OIF, +OIF:SA:59:5673021,1,"Mairie de Choisy-le-Roi",48.762724,2.4068,,1,,Europe/Paris,,OIF, +OIF:SA:59:5673023,1,"Auguste Franchot",48.767022,2.404359,,1,,Europe/Paris,,OIF, +OIF:SA:59:5673024,1,"Émile Zola",48.767812,2.406236,,1,,Europe/Paris,,OIF, +OIF:SA:59:5673025,1,"Cimetière",48.772749,2.402259,,1,,Europe/Paris,,OIF, +OIF:SA:59:5673026,1,"Conservatoire",48.771013,2.403902,,1,,Europe/Paris,,OIF, +OIF:SA:59:5673027,1,"Anciennes Cristalleries",48.77004,2.407681,,1,,Europe/Paris,,OIF, +OIF:SA:59:5673031,1,"Hugo / Mirabeau",48.767705,2.418786,,1,,Europe/Paris,,OIF, +OIF:SA:59:5673032,1,"Lycée Mirabeau",48.764315,2.421092,,1,,Europe/Paris,,OIF, +OIF:SA:59:5673034,1,"Parc Paysager des Gondoles",48.762883,2.424788,,1,,Europe/Paris,,OIF, +OIF:SA:59:5673035,1,"Stade Jean Bouin",48.766623,2.424223,,1,,Europe/Paris,,OIF, +OIF:SA:59:5673036,1,"Rue Pompadour",48.768727,2.422799,,1,,Europe/Paris,,OIF, +OIF:SA:59:5673037,1,"Collège Jules Vallès",48.772054,2.420805,,1,,Europe/Paris,,OIF, +OIF:SA:59:5675599,1,"Rue de Brévannes - Chere Année",48.763044,2.511222,,1,,Europe/Paris,,OIF, +OIF:SA:59:5675609,1,"Griffons",48.771557,2.45998,,1,,Europe/Paris,,OIF, +OIF:SA:59:5675610,1,"Billotte / Falkirk",48.772817,2.45797,,1,,Europe/Paris,,OIF, +OIF:SA:59:5675611,1,"Port",48.774494,2.457009,,1,,Europe/Paris,,OIF, +OIF:SA:59:5675613,1,"John Kennedy",48.777809,2.463204,,1,,Europe/Paris,,OIF, +OIF:SA:59:5675616,1,"Henri Cardinaud",48.782423,2.464358,,1,,Europe/Paris,,OIF, +OIF:SA:59:5675617,1,"Orme au Chat",48.785171,2.462882,,1,,Europe/Paris,,OIF, +OIF:SA:59:5675618,1,"Hôpital Chenevier",48.788709,2.461633,,1,,Europe/Paris,,OIF, +OIF:SA:59:5675619,1,"Bretagne",48.791114,2.460632,,1,,Europe/Paris,,OIF, +OIF:SA:59:5675621,1,"Général Gallieni",48.79682,2.457197,,1,,Europe/Paris,,OIF, +OIF:SA:59:5675675,1,"La Source",48.770809,2.461304,,1,,Europe/Paris,,OIF, +OIF:SA:59:5688792,1,"Institut Notre-Dame",48.781434,2.318388,,1,,Europe/Paris,,OIF, +OIF:SA:59:5688794,1,"Maréchal de Lattre",48.780177,2.323305,,1,,Europe/Paris,,OIF, +OIF:SA:59:5688798,1,"Commissariat de l'Haÿ-les-Roses",48.777306,2.33084,,1,,Europe/Paris,,OIF, +OIF:SA:59:5688809,1,"République / Gaité",48.786873,2.352058,,1,,Europe/Paris,,OIF, +OIF:SA:59:5688825,1,"Henri de Vilmorin",48.792623,2.388741,,1,,Europe/Paris,,OIF, +OIF:SA:59:5688844,1,"Hector Berlioz",48.797295,2.440362,,1,,Europe/Paris,,OIF, +OIF:SA:59:5688846,1,"Collège Guyard",48.794909,2.444745,,1,,Europe/Paris,,OIF, +OIF:SA:59:5688851,1,"Hôpital Henri Mondor",48.798656,2.450582,,1,,Europe/Paris,,OIF, +OIF:SA:59:5688856,1,"La Tournelle",48.780515,2.340102,,1,,Europe/Paris,,OIF, +OIF:SA:59:5709851,1,"Thomas Mann",48.830649,2.381796,,1,,Europe/Paris,,OIF, +OIF:SA:59:5709853,1,"Watt",48.828909,2.383986,,1,,Europe/Paris,,OIF, +OIF:SA:59:5709855,1,"Bruneseau",48.824831,2.389141,,1,,Europe/Paris,,OIF, +OIF:SA:59:5709857,1,"Victor Hugo",48.822771,2.392127,,1,,Europe/Paris,,OIF, +OIF:SA:59:5709859,1,"Jules Vanzuppe",48.82024,2.395459,,1,,Europe/Paris,,OIF, +OIF:SA:59:5709873,1,"Edmone Nocard",48.821847,2.419988,,1,,Europe/Paris,,OIF, +OIF:SA:59:5709874,1,"Avenue de Gravelle",48.823672,2.420113,,1,,Europe/Paris,,OIF, +OIF:SA:59:5709875,1,"Caserne des Gardes",48.828341,2.41959,,1,,Europe/Paris,,OIF, +OIF:SA:59:5709877,1,"Demi Lune / Parc Zoologique",48.834313,2.420402,,1,,Europe/Paris,,OIF, +OIF:SA:59:5709897,1,"Avenue de Gravelle",48.823465,2.419663,,1,,Europe/Paris,,OIF, +OIF:SA:59:5710010,1,"Eugène Lumeau / les Écoles",48.90528,2.337192,,1,,Europe/Paris,,OIF, +OIF:SA:59:5710016,1,"Parvis des Bateliers",48.912433,2.327422,,1,,Europe/Paris,,OIF, +OIF:SA:59:5710019,1,"Les Docks",48.91525,2.324163,,1,,Europe/Paris,,OIF, +OIF:SA:59:5710024,1,"Trudaine",48.881086,2.344155,,1,,Europe/Paris,,OIF, +OIF:SA:59:5710050,1,"Condorcet / Trudaine",48.880313,2.346376,,1,,Europe/Paris,,OIF, +OIF:SA:59:5710054,1,"Labat",48.889291,2.348285,,1,,Europe/Paris,,OIF, +OIF:SA:59:5710064,1,"Marche aux Puces",48.902148,2.342488,,1,,Europe/Paris,,OIF, +OIF:SA:59:5710066,1,"Paul Bert",48.903339,2.340123,,1,,Europe/Paris,,OIF, +OIF:SA:59:5710083,1,"La Tour d'Auvergne",48.87937,2.343214,,1,,Europe/Paris,,OIF, +OIF:SA:59:5726234,1,"Cimetière Parisien",48.907675,2.344165,,1,,Europe/Paris,,OIF, +OIF:SA:59:5726236,1,"Godillot",48.909614,2.341984,,1,,Europe/Paris,,OIF, +OIF:SA:59:5726239,1,"Docteur Finot",48.917102,2.344269,,1,,Europe/Paris,,OIF, +OIF:SA:59:5726263,1,"Clos Hanot",48.947656,2.375327,,1,,Europe/Paris,,OIF, +OIF:SA:59:5726265,1,"Paul Vaillant Couturier",48.94878,2.381209,,1,,Europe/Paris,,OIF, +OIF:SA:59:5726273,1,"Les Parouzets",48.960262,2.38199,,1,,Europe/Paris,,OIF, +OIF:SA:59:5726279,1,"Rond-Point de la Lutèce",48.968662,2.389088,,1,,Europe/Paris,,OIF, +OIF:SA:59:5726280,1,"Les Prévoyants",48.969819,2.383793,,1,,Europe/Paris,,OIF, +OIF:SA:59:5726281,1,"République",48.966189,2.381715,,1,,Europe/Paris,,OIF, +OIF:SA:59:5726284,1,"Landy - Ornano",48.913719,2.344091,,1,,Europe/Paris,,OIF, +OIF:SA:59:5727632,1,"Pyramides / Tuileries",48.864037,2.331606,,1,,Europe/Paris,,OIF, +OIF:SA:59:5727633,1,"Castiglione",48.86552,2.326961,,1,,Europe/Paris,,OIF, +OIF:SA:59:5727635,1,"Cours la Reine - Chevaux de Marly",48.865123,2.317602,,1,,Europe/Paris,,OIF, +OIF:SA:59:5727642,1,"Musée d'Art Moderne / Palais de Tokyo",48.863195,2.296142,,1,,Europe/Paris,,OIF, +OIF:SA:59:5727644,1,"Pont d'Iéna",48.861009,2.291969,,1,,Europe/Paris,,OIF, +OIF:SA:59:5727646,1,"Le Notre",48.858905,2.289001,,1,,Europe/Paris,,OIF, +OIF:SA:59:5727649,1,"Lamballe / Ankara",48.854306,2.283326,,1,,Europe/Paris,,OIF, +OIF:SA:59:5727659,1,"Radio France / Pont de Grenelle",48.85154,2.278835,,1,,Europe/Paris,,OIF, +OIF:SA:59:5727664,1,"Degas",48.848878,2.275215,,1,,Europe/Paris,,OIF, +OIF:SA:59:5727676,1,"Porte de Saint-Cloud / Murat",48.837694,2.258594,,1,,Europe/Paris,,OIF, +OIF:SA:59:5727682,1,"Victor Hugo",48.839139,2.246212,,1,,Europe/Paris,,OIF, +OIF:SA:59:5727696,1,"Concorde / Quai des Tuileries",48.863785,2.320845,,1,,Europe/Paris,,OIF, +OIF:SA:59:5727698,1,"Pont Royal",48.860559,2.33079,,1,,Europe/Paris,,OIF, +OIF:SA:59:5727699,1,"Quai François Mitterrand",48.859876,2.333868,,1,,Europe/Paris,,OIF, +OIF:SA:59:5727700,1,"Pont des Arts",48.859049,2.338513,,1,,Europe/Paris,,OIF, +OIF:SA:59:5747134,1,"Lavoisier",48.952719,2.588808,,1,,Europe/Paris,,OIF, +OIF:SA:59:5747136,1,"Cité des Douaniers",48.949802,2.576512,,1,,Europe/Paris,,OIF, +OIF:SA:59:5747172,1,"Lycée Claude Nicolas Ledoux",48.914102,2.492484,,1,,Europe/Paris,,OIF, +OIF:SA:59:5747173,1,"Villageoise",48.911278,2.491099,,1,,Europe/Paris,,OIF, +OIF:SA:59:5747174,1,"Hôpital Jean Verdier",48.908749,2.490185,,1,,Europe/Paris,,OIF, +OIF:SA:59:5747176,1,"Pasteur / Hôpital Jean Verdier",48.906772,2.486777,,1,,Europe/Paris,,OIF, +OIF:SA:59:5747178,1,"Auguste Pollissard",48.906375,2.480614,,1,,Europe/Paris,,OIF, +OIF:SA:59:5747207,1,"Diderot",48.9,2.409896,,1,,Europe/Paris,,OIF, +OIF:SA:59:5747234,1,"Chemin des Vignes",48.903697,2.417883,,1,,Europe/Paris,,OIF, +OIF:SA:59:5747237,1,"Gâtine RN3",48.905009,2.476288,,1,,Europe/Paris,,OIF, +OIF:SA:59:5747238,1,"Villageoise",48.911749,2.491305,,1,,Europe/Paris,,OIF, +OIF:SA:59:5747240,1,"Victor Hugo / Jean Moulin",48.910586,2.513362,,1,,Europe/Paris,,OIF, +OIF:SA:59:5747242,1,"Maison de Quartier",48.786144,2.298562,,1,,Europe/Paris,,OIF, +OIF:SA:59:5747258,1,"Charcot Hôpital",48.946763,2.237639,,1,,Europe/Paris,,OIF, +OIF:SA:59:5747262,1,"Rechsteiner",48.947676,2.24377,,1,,Europe/Paris,,OIF, +OIF:SA:59:5747272,1,"Borderel - Heloise",48.942736,2.254311,,1,,Europe/Paris,,OIF, +OIF:SA:59:5747275,1,"Pont du Chemin de Fer",48.934227,2.263294,,1,,Europe/Paris,,OIF, +OIF:SA:59:5747279,1,"Les Champarons",48.929121,2.26845,,1,,Europe/Paris,,OIF, +OIF:SA:59:5747286,1,"Chanzy",48.909563,2.272055,,1,,Europe/Paris,,OIF, +OIF:SA:59:5747288,1,"Balzac",48.908582,2.269309,,1,,Europe/Paris,,OIF, +OIF:SA:59:5747290,1,"Chevreul",48.907186,2.265445,,1,,Europe/Paris,,OIF, +OIF:SA:59:5747317,1,"Gramme",48.923832,2.275671,,1,,Europe/Paris,,OIF, +OIF:SA:59:5747340,1,"4 Routes",48.925871,2.273828,,1,,Europe/Paris,,OIF, +OIF:SA:59:5747351,1,"Rue des Paradis",48.786657,2.299963,,1,,Europe/Paris,,OIF, +OIF:SA:59:5747353,1,"Rue des Paradis.",48.786315,2.300086,,1,,Europe/Paris,,OIF, +OIF:SA:59:5761270,1,"Rosa Parks - Curial",48.896142,2.378574,,1,,Europe/Paris,,OIF, +OIF:SA:59:5761276,1,"Parc du Millénaire",48.901335,2.371394,,1,,Europe/Paris,,OIF, +OIF:SA:59:5761278,1,"Magasins Généraux",48.90275,2.368955,,1,,Europe/Paris,,OIF, +OIF:SA:59:5761279,1,"Net Squ@Re",48.903146,2.366079,,1,,Europe/Paris,,OIF, +OIF:SA:59:5761280,1,"Net Square",48.903029,2.366024,,1,,Europe/Paris,,OIF, +OIF:SA:59:5761281,1,"Modes et Médias",48.904566,2.366039,,1,,Europe/Paris,,OIF, +OIF:SA:59:5761284,1,"Métallurgie",48.909029,2.365087,,1,,Europe/Paris,,OIF, +OIF:SA:59:5761294,1,"Jesse Owens",48.923484,2.364481,,1,,Europe/Paris,,OIF, +OIF:SA:59:5761296,1,"Delaunay / Rimet",48.926194,2.362641,,1,,Europe/Paris,,OIF, +OIF:SA:59:5761309,1,"Saint-Gobain",48.912376,2.366098,,1,,Europe/Paris,,OIF, +OIF:SA:59:5761310,1,"La Montjoie / Germaine Tillion",48.910911,2.365851,,1,,Europe/Paris,,OIF, +OIF:SA:59:5761313,1,"Modes et Médias",48.904539,2.365875,,1,,Europe/Paris,,OIF, +OIF:SA:59:5761318,1,"Jouet Lucot",48.827909,2.195177,,1,,Europe/Paris,,OIF, +OIF:SA:59:5761320,1,"Mairie",48.828024,2.189997,,1,,Europe/Paris,,OIF, +OIF:SA:59:5761323,1,"Monastère",48.825822,2.183007,,1,,Europe/Paris,,OIF, +OIF:SA:59:5761329,1,"Fondation L. Vuitton",48.876103,2.263117,,1,,Europe/Paris,,OIF, +OIF:SA:59:5761331,1,"Porte de Madrid",48.873873,2.255375,,1,,Europe/Paris,,OIF, +OIF:SA:59:5761356,1,"8 Mai 1945",48.870492,2.203371,,1,,Europe/Paris,,OIF, +OIF:SA:59:5761375,1,"Les Martinets",48.883075,2.171349,,1,,Europe/Paris,,OIF, +OIF:SA:59:5761376,1,"Geneviève Couturier",48.879809,2.175774,,1,,Europe/Paris,,OIF, +OIF:SA:59:5761413,1,"Villebois / Mareuil",48.910966,2.379227,,1,,Europe/Paris,,OIF, +OIF:SA:59:5761415,1,"Félix Faure / Victor Hugo",48.909416,2.378435,,1,,Europe/Paris,,OIF, +OIF:SA:59:5761449,1,"Parc du Millénaire",48.902677,2.371422,,1,,Europe/Paris,,OIF, +OIF:SA:59:5770770,1,"Borrégo",48.87362,2.397958,,1,,Europe/Paris,,OIF, +OIF:SA:59:5770785,1,"Jaurès / Lorraine",48.885908,2.382211,,1,,Europe/Paris,,OIF, +OIF:SA:59:5770789,1,"Canal de l'Ourcq",48.89028,2.38259,,1,,Europe/Paris,,OIF, +OIF:SA:59:5770791,1,"Flandre",48.892358,2.379082,,1,,Europe/Paris,,OIF, +OIF:SA:59:5770794,1,"Crimée / Curial",48.893649,2.37372,,1,,Europe/Paris,,OIF, +OIF:SA:59:5770800,1,"Tristan Tzara",48.894388,2.366183,,1,,Europe/Paris,,OIF, +OIF:SA:59:5770802,1,"Place Hébert",48.892955,2.363177,,1,,Europe/Paris,,OIF, +OIF:SA:59:5770814,1,"Duhesme le Ruisseau",48.893071,2.340354,,1,,Europe/Paris,,OIF, +OIF:SA:59:5770818,1,"Damrémont / Championnet",48.895349,2.337587,,1,,Europe/Paris,,OIF, +OIF:SA:59:5770820,1,"Poteau / Belliard",48.896747,2.338228,,1,,Europe/Paris,,OIF, +OIF:SA:59:5770822,1,"Porte de Montmartre / Boulevard Ney",48.898207,2.337076,,1,,Europe/Paris,,OIF, +OIF:SA:59:5770824,1,"Rene Binet",48.899366,2.336149,,1,,Europe/Paris,,OIF, +OIF:SA:59:5770828,1,"Crimée / Archereau",48.891775,2.375409,,1,,Europe/Paris,,OIF, +OIF:SA:59:5775576,1,"Marceau",48.899899,2.246521,,1,,Europe/Paris,,OIF, +OIF:SA:59:5775578,1,"D'Estienne d'Orves",48.901551,2.25146,,1,,Europe/Paris,,OIF, +OIF:SA:59:5775580,1,"République - Colombes",48.903208,2.256167,,1,,Europe/Paris,,OIF, +OIF:SA:59:5775591,1,"Cayron / Chefson",48.916706,2.277657,,1,,Europe/Paris,,OIF, +OIF:SA:59:5775601,1,"Deslandes - Cabœufs",48.928654,2.299514,,1,,Europe/Paris,,OIF, +OIF:SA:59:5775610,1,"Vieux Chemin de Saint-Denis - Centre Commercial",48.931422,2.320203,,1,,Europe/Paris,,OIF, +OIF:SA:59:5775615,1,"Abbé Glatz",48.920139,2.277107,,1,,Europe/Paris,,OIF, +OIF:SA:59:5794239,1,"Rue des Trois Pavillons",48.911533,2.315199,,1,,Europe/Paris,,OIF, +OIF:SA:59:5794605,1,"Gare du Bourget",48.929489,2.425466,,1,,Europe/Paris,,OIF, +OIF:SA:59:5794606,1,"République / Vinson",48.926298,2.426831,,1,,Europe/Paris,,OIF, +OIF:SA:59:5794607,1,"Lamartine / François Rude",48.925459,2.431473,,1,,Europe/Paris,,OIF, +OIF:SA:59:5794609,1,"Jean-Pierre Timbaud",48.924333,2.440039,,1,,Europe/Paris,,OIF, +OIF:SA:59:5794612,1,"Fernand Péna",48.917969,2.435026,,1,,Europe/Paris,,OIF, +OIF:SA:59:5794614,1,"Gaston Roulaud",48.914328,2.431126,,1,,Europe/Paris,,OIF, +OIF:SA:59:5794617,1,"Lieutenant Lebrun",48.91085,2.442061,,1,,Europe/Paris,,OIF, +OIF:SA:59:5794618,1,"Pierre Semard",48.909871,2.446722,,1,,Europe/Paris,,OIF, +OIF:SA:59:5794633,1,"Centre Sportif - Piscine",48.900875,2.513513,,1,,Europe/Paris,,OIF, +OIF:SA:59:5794634,1,"Rond-Point Thiers",48.89922,2.51743,,1,,Europe/Paris,,OIF, +OIF:SA:59:5794635,1,"Gare de Gargan",48.907982,2.517811,,1,,Europe/Paris,,OIF, +OIF:SA:59:5794636,1,"République / Marx Dormoy",48.906157,2.523869,,1,,Europe/Paris,,OIF, +OIF:SA:59:5794638,1,"Jean Baptiste Clément",48.90888,2.531298,,1,,Europe/Paris,,OIF, +OIF:SA:59:5794639,1,"Collège Louise Michel",48.907876,2.533892,,1,,Europe/Paris,,OIF, +OIF:SA:59:5794640,1,"Avenue Ladrette",48.905157,2.542266,,1,,Europe/Paris,,OIF, +OIF:SA:59:5794641,1,"Gagarine",48.904873,2.547211,,1,,Europe/Paris,,OIF, +OIF:SA:59:5794642,1,"Collège Romain Rolland",48.905662,2.551242,,1,,Europe/Paris,,OIF, +OIF:SA:59:5816770,1,"Noyer / Renard",48.704579,2.363143,,1,,Europe/Paris,,OIF, +OIF:SA:59:5816772,1,"Condorcet",48.703348,2.357696,,1,,Europe/Paris,,OIF, +OIF:SA:59:5816773,1,"Les Oiseaux",48.701092,2.358551,,1,,Europe/Paris,,OIF, +OIF:SA:59:5816777,1,"Pasteur",48.705742,2.367251,,1,,Europe/Paris,,OIF, +OIF:SA:59:5816779,1,"Belle Etoile / la Pompe",48.706032,2.372276,,1,,Europe/Paris,,OIF, +OIF:SA:59:5816781,1,"Albert Sarrault",48.708516,2.382868,,1,,Europe/Paris,,OIF, +OIF:SA:59:5816783,1,"Cimetière",48.71093,2.388721,,1,,Europe/Paris,,OIF, +OIF:SA:59:5816789,1,"Place Henri Deudon",48.709196,2.386757,,1,,Europe/Paris,,OIF, +OIF:SA:59:5816790,1,"Panorama",48.705485,2.383405,,1,,Europe/Paris,,OIF, +OIF:SA:59:5816791,1,"Président Denis",48.702084,2.378242,,1,,Europe/Paris,,OIF, +OIF:SA:59:5816792,1,"3 Ormes",48.70031,2.376211,,1,,Europe/Paris,,OIF, +OIF:SA:59:5816794,1,"Coquelicots",48.698825,2.367213,,1,,Europe/Paris,,OIF, +OIF:SA:59:5816795,1,"Progrès",48.699239,2.363629,,1,,Europe/Paris,,OIF, +OIF:SA:59:5816800,1,"Normann",48.700182,2.366304,,1,,Europe/Paris,,OIF, +OIF:SA:59:5816801,1,"Mutualité",48.699849,2.369305,,1,,Europe/Paris,,OIF, +OIF:SA:59:5816806,1,"Poste",48.706468,2.386231,,1,,Europe/Paris,,OIF, +OIF:SA:59:5816814,1,"Marcel Sembat",48.708474,2.381181,,1,,Europe/Paris,,OIF, +OIF:SA:59:5821505,1,"Van Gogh",48.904014,2.294181,,1,,Europe/Paris,,OIF, +OIF:SA:59:5922166,1,"Raspail / République",48.852951,2.423721,,1,,Europe/Paris,,OIF, +OIF:SA:59:5922168,1,"Victor Hugo",48.858327,2.421503,,1,,Europe/Paris,,OIF, +OIF:SA:59:5922172,1,"Centre de Santé",48.867245,2.417894,,1,,Europe/Paris,,OIF, +OIF:SA:59:5922176,1,"Gambetta / René Alazard",48.873162,2.41992,,1,,Europe/Paris,,OIF, +OIF:SA:59:5922177,1,"René Alazard / Sadi Carnot",48.872752,2.421799,,1,,Europe/Paris,,OIF, +OIF:SA:59:5922179,1,"Cimetière",48.876124,2.425334,,1,,Europe/Paris,,OIF, +OIF:SA:59:5922180,1,"Floréal",48.877951,2.426924,,1,,Europe/Paris,,OIF, +OIF:SA:59:5922182,1,"Les Noyers",48.879075,2.433147,,1,,Europe/Paris,,OIF, +OIF:SA:59:5922183,1,"Gabriel Husson",48.880388,2.436528,,1,,Europe/Paris,,OIF, +OIF:SA:59:5922184,1,"Carnot",48.883528,2.440523,,1,,Europe/Paris,,OIF, +OIF:SA:59:5922185,1,"Mairie",48.885122,2.434868,,1,,Europe/Paris,,OIF, +OIF:SA:59:5922186,1,"Vassou / Lénine",48.884886,2.431406,,1,,Europe/Paris,,OIF, +OIF:SA:59:5922187,1,"Maneyrol",48.888964,2.428259,,1,,Europe/Paris,,OIF, +OIF:SA:59:5922188,1,"Bretagnes",48.890812,2.426674,,1,,Europe/Paris,,OIF, +OIF:SA:59:5922189,1,"Centre d'Activités",48.891926,2.428305,,1,,Europe/Paris,,OIF, +OIF:SA:59:5922190,1,"Chantaloups",48.891803,2.435371,,1,,Europe/Paris,,OIF, +OIF:SA:59:5922196,1,"Trou Vassou",48.891158,2.432965,,1,,Europe/Paris,,OIF, +OIF:SA:59:5922200,1,"Fort",48.885712,2.427483,,1,,Europe/Paris,,OIF, +OIF:SA:59:5922216,1,"Lieutenant Thomas",48.858501,2.417036,,1,,Europe/Paris,,OIF, +OIF:SA:59:5922217,1,"Etienne Marcel",48.85637,2.418109,,1,,Europe/Paris,,OIF, +OIF:SA:59:5944486,1,"Rechossière",48.911163,2.400224,,1,,Europe/Paris,,OIF, +OIF:SA:59:5944488,1,"Cimetière Parisien",48.90903,2.397713,,1,,Europe/Paris,,OIF, +OIF:SA:59:5944491,1,"Cartier Bresson",48.902316,2.397705,,1,,Europe/Paris,,OIF, +OIF:SA:59:5944501,1,"Etienne Marcel",48.891689,2.406143,,1,,Europe/Paris,,OIF, +OIF:SA:59:5944502,1,"Ciné 104",48.892379,2.409149,,1,,Europe/Paris,,OIF, +OIF:SA:59:5944506,1,"Paul Bert - Cimetière",48.888937,2.410051,,1,,Europe/Paris,,OIF, +OIF:SA:59:5944507,1,"Montigny - Maison de Retraite",48.887265,2.410062,,1,,Europe/Paris,,OIF, +OIF:SA:59:5944508,1,"Maison de Quartier / Pommiers",48.885377,2.411436,,1,,Europe/Paris,,OIF, +OIF:SA:59:5944509,1,"Pommiers / Cimetière",48.887512,2.416992,,1,,Europe/Paris,,OIF, +OIF:SA:59:5944513,1,"Jules Jaslin",48.890897,2.422067,,1,,Europe/Paris,,OIF, +OIF:SA:59:5944517,1,"Parc Henri Barbusse",48.885321,2.414038,,1,,Europe/Paris,,OIF, +OIF:SA:59:5944518,1,"Rue Marcelle",48.883425,2.414022,,1,,Europe/Paris,,OIF, +OIF:SA:59:5976292,1,"Collège Liberté",48.91362,2.450364,,1,,Europe/Paris,,OIF, +OIF:SA:59:5976624,1,"Pierre Semard - Châtillon-Montrouge",48.806493,2.298289,,1,,Europe/Paris,,OIF, +OIF:SA:59:5976626,1,"Pierre Semard",48.806232,2.297976,,1,,Europe/Paris,,OIF, +OIF:SA:59:5976627,1,"République / Deforges",48.803765,2.297672,,1,,Europe/Paris,,OIF, +OIF:SA:59:5976629,1,"Perrotin",48.800443,2.29596,,1,,Europe/Paris,,OIF, +OIF:SA:59:5976637,1,"Boulevard de la République",48.788747,2.288161,,1,,Europe/Paris,,OIF, +OIF:SA:59:5976646,1,"Marc Sangnier",48.772773,2.276484,,1,,Europe/Paris,,OIF, +OIF:SA:59:5976650,1,"Docteur le Savoureux",48.767838,2.272918,,1,,Europe/Paris,,OIF, +OIF:SA:59:5976652,1,"Jules Verne",48.767122,2.271189,,1,,Europe/Paris,,OIF, +OIF:SA:59:5976658,1,"Groupe Scolaire Sophie Barat",48.756597,2.271192,,1,,Europe/Paris,,OIF, +OIF:SA:59:5976661,1,"Le Clos",48.749722,2.27205,,1,,Europe/Paris,,OIF, +OIF:SA:59:5976669,1,"Moulin de Grais",48.740567,2.256909,,1,,Europe/Paris,,OIF, +OIF:SA:59:5976671,1,"Riantes Cités",48.74061,2.253926,,1,,Europe/Paris,,OIF, +OIF:SA:59:5976673,1,"Croix Belle Avoine",48.741016,2.250738,,1,,Europe/Paris,,OIF, +OIF:SA:59:5976675,1,"Croix Pasquier",48.739626,2.24841,,1,,Europe/Paris,,OIF, +OIF:SA:59:5976682,1,"Place François Collet",48.74158,2.225874,,1,,Europe/Paris,,OIF, +OIF:SA:59:5976697,1,"Pierrelais - Blanchard",48.794903,2.287877,,1,,Europe/Paris,,OIF, +OIF:SA:59:5976698,1,"Pierrelais - Fontenay",48.797914,2.287758,,1,,Europe/Paris,,OIF, +OIF:SA:59:5976700,1,"D'Estienne d'Orves / Division Leclerc",48.799657,2.286035,,1,,Europe/Paris,,OIF, +OIF:SA:59:5976704,1,"Les Sablons",48.797516,2.281895,,1,,Europe/Paris,,OIF, +OIF:SA:59:5976706,1,"Centre Bus",48.795725,2.27585,,1,,Europe/Paris,,OIF, +OIF:SA:59:5976709,1,"Louis Pergaud",48.789483,2.26911,,1,,Europe/Paris,,OIF, +OIF:SA:59:5976710,1,"Soleil Levant",48.788381,2.264337,,1,,Europe/Paris,,OIF, +OIF:SA:59:5976711,1,"Rue Gabrielle",48.786547,2.25928,,1,,Europe/Paris,,OIF, +OIF:SA:59:5976746,1,"Edouard Depreux / Roger Salengro",48.776132,2.278701,,1,,Europe/Paris,,OIF, +OIF:SA:59:5976747,1,"Edouard Depreux - Roger Salengro",48.776096,2.27847,,1,,Europe/Paris,,OIF, +OIF:SA:59:5976755,1,"Centre Bus",48.795383,2.275469,,1,,Europe/Paris,,OIF, +OIF:SA:59:5991320,1,"Rue de l'Union",48.928278,2.382992,,1,,Europe/Paris,,OIF, +OIF:SA:59:5991323,1,"Paul Verlaine",48.931757,2.391104,,1,,Europe/Paris,,OIF, +OIF:SA:59:5991325,1,"Le Croult",48.932105,2.395094,,1,,Europe/Paris,,OIF, +OIF:SA:59:5991327,1,"Jean Mermoz / Henri Barbusse",48.93189,2.399162,,1,,Europe/Paris,,OIF, +OIF:SA:59:5991329,1,"Passage à Niveau / Jean Mermoz",48.932356,2.405733,,1,,Europe/Paris,,OIF, +OIF:SA:59:5991331,1,"Verdun",48.932755,2.413986,,1,,Europe/Paris,,OIF, +OIF:SA:59:5991332,1,"École Normale",48.934342,2.419554,,1,,Europe/Paris,,OIF, +OIF:SA:59:5991338,1,"Edouard Vaillant",48.930019,2.431932,,1,,Europe/Paris,,OIF, +OIF:SA:59:5991340,1,"Aristide Briand",48.926783,2.438854,,1,,Europe/Paris,,OIF, +OIF:SA:59:5991348,1,"Square de la Libération",48.918586,2.453988,,1,,Europe/Paris,,OIF, +OIF:SA:59:5991350,1,"Balzac",48.916393,2.458142,,1,,Europe/Paris,,OIF, +OIF:SA:59:5991352,1,"Avenue du Bois d'Amour",48.914301,2.461464,,1,,Europe/Paris,,OIF, +OIF:SA:59:5991354,1,"Chemin du Tonneau",48.911673,2.464969,,1,,Europe/Paris,,OIF, +OIF:SA:59:5991361,1,"Baudin",48.898563,2.470791,,1,,Europe/Paris,,OIF, +OIF:SA:59:5991362,1,"Alsace Lorraine",48.897602,2.465909,,1,,Europe/Paris,,OIF, +OIF:SA:59:5991366,1,"11 Novembre 1918",48.892321,2.466925,,1,,Europe/Paris,,OIF, +OIF:SA:59:5991368,1,"Les Carrouges",48.889477,2.470734,,1,,Europe/Paris,,OIF, +OIF:SA:59:5991371,1,"Rosny 2 / Centre Commercial",48.884369,2.473875,,1,,Europe/Paris,,OIF, +OIF:SA:59:5991373,1,"Léon Blum",48.879448,2.477964,,1,,Europe/Paris,,OIF, +OIF:SA:59:5991374,1,"Gabriel Péri / Général de Gaulle",48.877673,2.479563,,1,,Europe/Paris,,OIF, +OIF:SA:59:5991378,1,"Copernic",48.872788,2.485357,,1,,Europe/Paris,,OIF, +OIF:SA:59:5991381,1,"Gardebled",48.874929,2.484015,,1,,Europe/Paris,,OIF, +OIF:SA:59:5991384,1,"Baudin",48.898797,2.475308,,1,,Europe/Paris,,OIF, +OIF:SA:59:5991387,1,"Verdun",48.93281,2.411627,,1,,Europe/Paris,,OIF, +OIF:SA:59:5991388,1,"Saint-Just",48.925357,2.383425,,1,,Europe/Paris,,OIF, +OIF:SA:59:6041759,1,"Président John Fitzgerald Kennedy",48.735853,2.291886,,1,,Europe/Paris,,OIF, +OIF:SA:59:6041760,1,"Bourgogne",48.734379,2.292316,,1,,Europe/Paris,,OIF, +OIF:SA:59:6041797,1,"Clos de Villaine",48.729633,2.257259,,1,,Europe/Paris,,OIF, +OIF:SA:59:6041805,1,"Centre Commercial",48.729058,2.244916,,1,,Europe/Paris,,OIF, +OIF:SA:59:6041807,1,"Clos Berthelot",48.726411,2.246116,,1,,Europe/Paris,,OIF, +OIF:SA:59:6041809,1,"Parc de l'Effort Mutuel",48.727167,2.240674,,1,,Europe/Paris,,OIF, +OIF:SA:59:6041813,1,"Cent Marches",48.727689,2.231189,,1,,Europe/Paris,,OIF, +OIF:SA:59:6041814,1,"Yvette",48.729449,2.228998,,1,,Europe/Paris,,OIF, +OIF:SA:59:6041827,1,"Grands Champs / Favreuse",48.733061,2.201964,,1,,Europe/Paris,,OIF, +OIF:SA:59:6041831,1,"Bouton d'Or",48.735963,2.217027,,1,,Europe/Paris,,OIF, +OIF:SA:59:6041837,1,"Président John Fitzgerald Kennedy",48.736473,2.291709,,1,,Europe/Paris,,OIF, +OIF:SA:59:6041840,1,"Les Frères Voisin",48.722823,2.302623,,1,,Europe/Paris,,OIF, +OIF:SA:59:6041841,1,"Place de France",48.726775,2.306836,,1,,Europe/Paris,,OIF, +OIF:SA:59:6041843,1,"Concorde",48.721418,2.303799,,1,,Europe/Paris,,OIF, +OIF:SA:59:6041845,1,"Z.A.C. du Pérou",48.718665,2.29762,,1,,Europe/Paris,,OIF, +OIF:SA:59:6041879,1,"Léontine Sohier",48.694094,2.297618,,1,,Europe/Paris,,OIF, +OIF:SA:59:6041881,1,"Général de Gaulle",48.697505,2.29946,,1,,Europe/Paris,,OIF, +OIF:SA:59:6041911,1,"Square Henri Legrand",48.933254,2.549041,,1,,Europe/Paris,,OIF, +OIF:SA:59:6049847,1,"Square / Condorcet",48.706999,2.32782,,1,,Europe/Paris,,OIF, +OIF:SA:59:6075090,1,"Chastenet de Géry",48.805589,2.358227,,1,,Europe/Paris,,OIF, +OIF:SA:59:6075091,1,"Les Coquettes",48.803486,2.358403,,1,,Europe/Paris,,OIF, +OIF:SA:59:6075110,1,"Centre Culturel / André Malraux",48.770708,2.350367,,1,,Europe/Paris,,OIF, +OIF:SA:59:6075111,1,"Mairie de Chevilly-Larue - Théâtre",48.770178,2.350462,,1,,Europe/Paris,,OIF, +OIF:SA:59:6143543,1,"Rue de la Commune",48.788473,2.36985,,1,,Europe/Paris,,OIF, +OIF:SA:59:6143545,1,"Camélinat",48.790497,2.380496,,1,,Europe/Paris,,OIF, +OIF:SA:59:6143547,1,"Mairie",48.790183,2.388413,,1,,Europe/Paris,,OIF, +OIF:SA:59:6143548,1,"Hôtel de Ville de Vitry - R. Derry",48.789522,2.389486,,1,,Europe/Paris,,OIF, +OIF:SA:59:6143549,1,"Audigeois",48.790546,2.392337,,1,,Europe/Paris,,OIF, +OIF:SA:59:6143550,1,"Église",48.792261,2.395094,,1,,Europe/Paris,,OIF, +OIF:SA:59:6143551,1,"Paul Vaillant-Couturier",48.795518,2.397669,,1,,Europe/Paris,,OIF, +OIF:SA:59:6143555,1,"Rue de la Baignade",48.808448,2.404127,,1,,Europe/Paris,,OIF, +OIF:SA:59:6143556,1,"Maurice Gunsbourg",48.811648,2.403049,,1,,Europe/Paris,,OIF, +OIF:SA:59:6143559,1,"Paul Vaillant Couturier / Lénine",48.817861,2.398232,,1,,Europe/Paris,,OIF, +OIF:SA:59:6143596,1,"Rue de la Baignade",48.8087,2.403869,,1,,Europe/Paris,,OIF, +OIF:SA:59:6161492,1,"Gustave Courbet",48.803963,2.320653,,1,,Europe/Paris,,OIF, +OIF:SA:59:6187504,1,"17 Octobre 1961",48.898066,2.21672,,1,,Europe/Paris,,OIF, +OIF:SA:59:6187515,1,"Théâtre des Amandiers",48.892877,2.213406,,1,,Europe/Paris,,OIF, +OIF:SA:59:6187518,1,"Les Champs Pierreux",48.889453,2.213694,,1,,Europe/Paris,,OIF, +OIF:SA:59:6187520,1,"Le Chat Perché",48.88967,2.210811,,1,,Europe/Paris,,OIF, +OIF:SA:59:6187528,1,"Place de la Boule / Maréchal Joffre",48.8868,2.199956,,1,,Europe/Paris,,OIF, +OIF:SA:59:6187541,1,"Le Château",48.87458,2.167261,,1,,Europe/Paris,,OIF, +OIF:SA:59:6187547,1,"Jonchère",48.869767,2.15742,,1,,Europe/Paris,,OIF, +OIF:SA:59:6187549,1,"Maison Rouge",48.868171,2.151316,,1,,Europe/Paris,,OIF, +OIF:SA:59:6187550,1,"Maison Rouge",48.868519,2.149421,,1,,Europe/Paris,,OIF, +OIF:SA:59:6187551,1,"La Chaussée - Musée Tourgueniev",48.868051,2.146453,,1,,Europe/Paris,,OIF, +OIF:SA:59:6187555,1,"La Passerelle",48.868253,2.132972,,1,,Europe/Paris,,OIF, +OIF:SA:59:6187557,1,"La Machine",48.871742,2.123639,,1,,Europe/Paris,,OIF, +OIF:SA:59:6187559,1,"Pavillon Halévy",48.874959,2.118598,,1,,Europe/Paris,,OIF, +OIF:SA:59:6187561,1,"Bas Prunay",48.876802,2.116349,,1,,Europe/Paris,,OIF, +OIF:SA:59:6187562,1,"Bas Prunay",48.877359,2.116129,,1,,Europe/Paris,,OIF, +OIF:SA:59:6187563,1,"Jaurès",48.879662,2.110368,,1,,Europe/Paris,,OIF, +OIF:SA:59:6187654,1,"Veuve Lacroix",48.902912,2.228187,,1,,Europe/Paris,,OIF, +OIF:SA:59:6187656,1,"Arras",48.901332,2.225369,,1,,Europe/Paris,,OIF, +OIF:SA:59:6187660,1,"Dumont d'Urville / Belgique",48.907371,2.240898,,1,,Europe/Paris,,OIF, +OIF:SA:59:6187662,1,"Île de la Jatte",48.894394,2.266792,,1,,Europe/Paris,,OIF, +OIF:SA:59:6187666,1,"Mairie de la Garenne-Colombes",48.906831,2.244866,,1,,Europe/Paris,,OIF, +OIF:SA:59:6187668,1,"Préfecture des Hauts de Seine",48.896729,2.216573,,1,,Europe/Paris,,OIF, +OIF:SA:59:6187670,1,"Victor Hugo",48.887503,2.278494,,1,,Europe/Paris,,OIF, +OIF:SA:59:6187674,1,"Chézy",48.889445,2.27285,,1,,Europe/Paris,,OIF, +OIF:SA:59:6187680,1,"Souvenir Français",48.906254,2.249243,,1,,Europe/Paris,,OIF, +OIF:SA:59:6187685,1,"Plaisance",48.905763,2.253109,,1,,Europe/Paris,,OIF, +OIF:SA:59:6187687,1,"Bonnin",48.905164,2.233935,,1,,Europe/Paris,,OIF, +OIF:SA:59:6187688,1,"Lens",48.899109,2.221488,,1,,Europe/Paris,,OIF, +OIF:SA:59:6187692,1,"Verdun / Rue Latérale",48.902343,2.258888,,1,,Europe/Paris,,OIF, +OIF:SA:59:6187694,1,"Villiers / Bineau",48.886952,2.282365,,1,,Europe/Paris,,OIF, +OIF:SA:59:6187697,1,"Collège les Champs Philippe",48.904353,2.23211,,1,,Europe/Paris,,OIF, +OIF:SA:59:6187702,1,"Verdun",48.905858,2.236388,,1,,Europe/Paris,,OIF, +OIF:SA:59:6195717,1,"Place de la Boule / Georges Clémenceau",48.887062,2.201345,,1,,Europe/Paris,,OIF, +OIF:SA:59:6195723,1,"Félix Faure",48.886132,2.213695,,1,,Europe/Paris,,OIF, +OIF:SA:59:6195727,1,"Sainte-Geneviève",48.885285,2.195647,,1,,Europe/Paris,,OIF, +OIF:SA:59:6195742,1,"Les Bouvets",48.888694,2.235897,,1,,Europe/Paris,,OIF, +OIF:SA:59:6195753,1,"Les Bergères - Marché",48.885088,2.225581,,1,,Europe/Paris,,OIF, +OIF:SA:59:6195756,1,"Parc des Grottes",48.69325,2.374623,,1,,Europe/Paris,,OIF, +OIF:SA:59:6195757,1,"Raspail",48.693825,2.375914,,1,,Europe/Paris,,OIF, +OIF:SA:59:6195761,1,"Marché",48.691619,2.377953,,1,,Europe/Paris,,OIF, +OIF:SA:59:6195765,1,"Utrillo",48.673962,2.338805,,1,,Europe/Paris,,OIF, +OIF:SA:59:6195768,1,"Gounod",48.683588,2.344853,,1,,Europe/Paris,,OIF, +OIF:SA:59:6195771,1,"Collège Jean Mermoz",48.673013,2.340597,,1,,Europe/Paris,,OIF, +OIF:SA:59:6195778,1,"Tourterelles",48.691321,2.36264,,1,,Europe/Paris,,OIF, +OIF:SA:59:6195781,1,"Toulouse Lautrec",48.675948,2.338582,,1,,Europe/Paris,,OIF, +OIF:SA:59:6195784,1,"Billoir",48.673049,2.345001,,1,,Europe/Paris,,OIF, +OIF:SA:59:6195792,1,"Les Peupliers",48.685647,2.347175,,1,,Europe/Paris,,OIF, +OIF:SA:59:6195796,1,"Terrasse",48.69493,2.376824,,1,,Europe/Paris,,OIF, +OIF:SA:59:6195805,1,"Cimetière de Juvisy-sur-Orge",48.694385,2.366369,,1,,Europe/Paris,,OIF, +OIF:SA:59:6195806,1,"Botherel",48.695928,2.375549,,1,,Europe/Paris,,OIF, +OIF:SA:59:6195809,1,"Martinière",48.674622,2.346813,,1,,Europe/Paris,,OIF, +OIF:SA:59:6195811,1,"Marché",48.686895,2.3534,,1,,Europe/Paris,,OIF, +OIF:SA:59:6195817,1,"Thiers",48.693988,2.372805,,1,,Europe/Paris,,OIF, +OIF:SA:59:6195818,1,"Cimetière de Savigny-sur-Orge",48.693918,2.365608,,1,,Europe/Paris,,OIF, +OIF:SA:59:6217334,1,"Anatole France",48.901159,2.209829,,1,,Europe/Paris,,OIF, +OIF:SA:59:6251705,1,"L'Avenir",48.700406,2.325614,,1,,Europe/Paris,,OIF, +OIF:SA:59:6251707,1,"Pierre Loti",48.701939,2.327739,,1,,Europe/Paris,,OIF, +OIF:SA:59:6251709,1,"Pierre Brossolette",48.704316,2.330129,,1,,Europe/Paris,,OIF, +OIF:SA:59:6251713,1,"Mairie",48.706069,2.333157,,1,,Europe/Paris,,OIF, +OIF:SA:59:6251715,1,"Le Stade",48.705202,2.339418,,1,,Europe/Paris,,OIF, +OIF:SA:59:6251717,1,"Rue de la Paix",48.705395,2.346649,,1,,Europe/Paris,,OIF, +OIF:SA:59:6251721,1,"Froides Bouillies",48.70554,2.363904,,1,,Europe/Paris,,OIF, +OIF:SA:59:6251729,1,"Centre Administratif",48.705929,2.385993,,1,,Europe/Paris,,OIF, +OIF:SA:59:6251731,1,"Coubertin",48.704573,2.391363,,1,,Europe/Paris,,OIF, +OIF:SA:59:6251734,1,"Cité Mozart",48.702023,2.387252,,1,,Europe/Paris,,OIF, +OIF:SA:59:6251736,1,"Docteur Guérin",48.699849,2.383679,,1,,Europe/Paris,,OIF, +OIF:SA:59:6251737,1,"Lycées Pagnol et Monnet",48.697715,2.381491,,1,,Europe/Paris,,OIF, +OIF:SA:59:6251744,1,"Froides Bouillies",48.705765,2.362206,,1,,Europe/Paris,,OIF, +OIF:SA:59:6251787,1,"Jean Jaurès",48.795251,2.366318,,1,,Europe/Paris,,OIF, +OIF:SA:59:6251797,1,"Moulin Vert",48.772098,2.367556,,1,,Europe/Paris,,OIF, +OIF:SA:59:6251820,1,"Senia",48.751011,2.368766,,1,,Europe/Paris,,OIF, +OIF:SA:59:6251834,1,"Marx Dormoy",48.70357,2.371684,,1,,Europe/Paris,,OIF, +OIF:SA:59:6251836,1,"Marché des Gravilliers",48.700833,2.371838,,1,,Europe/Paris,,OIF, +OIF:SA:59:6251849,1,"Aristide Briand",48.709197,2.371593,,1,,Europe/Paris,,OIF, +OIF:SA:59:6251856,1,"Le Cor de Chasse / Belle Epine",48.760044,2.36869,,1,,Europe/Paris,,OIF, +OIF:SA:59:6251860,1,"Domaine Chérioux",48.777958,2.367627,,1,,Europe/Paris,,OIF, +OIF:SA:59:6251887,1,"Pyramide",48.697529,2.371571,,1,,Europe/Paris,,OIF, +OIF:SA:59:6251888,1,"Observatoire / Camille Flammarion",48.695237,2.371305,,1,,Europe/Paris,,OIF, +OIF:SA:59:6251896,1,"Hôpital",48.690832,2.374459,,1,,Europe/Paris,,OIF, +OIF:SA:59:6251901,1,"Centre Sportif",48.712978,2.366896,,1,,Europe/Paris,,OIF, +OIF:SA:59:6251903,1,"Henri Barbusse",48.712956,2.364743,,1,,Europe/Paris,,OIF, +OIF:SA:59:6251905,1,"Mairie",48.712273,2.363608,,1,,Europe/Paris,,OIF, +OIF:SA:59:6251906,1,"Maxime Vedy",48.70955,2.359349,,1,,Europe/Paris,,OIF, +OIF:SA:59:6251908,1,"Gabriel Péri",48.706057,2.362804,,1,,Europe/Paris,,OIF, +OIF:SA:59:6251912,1,"Plein Midi",48.702219,2.362347,,1,,Europe/Paris,,OIF, +OIF:SA:59:6251914,1,"Buisson",48.699644,2.361877,,1,,Europe/Paris,,OIF, +OIF:SA:59:6251915,1,"Saint-Saëns - les Oiseaux",48.700184,2.358401,,1,,Europe/Paris,,OIF, +OIF:SA:59:6251916,1,"Guynemer",48.697724,2.358622,,1,,Europe/Paris,,OIF, +OIF:SA:59:6251918,1,"Palombes",48.697875,2.35472,,1,,Europe/Paris,,OIF, +OIF:SA:59:6251919,1,"Debussy / Champagne",48.695313,2.355684,,1,,Europe/Paris,,OIF, +OIF:SA:59:6251921,1,"Square Cheveaux",48.694746,2.358107,,1,,Europe/Paris,,OIF, +OIF:SA:59:6251923,1,"Poste",48.694422,2.361793,,1,,Europe/Paris,,OIF, +OIF:SA:59:6251924,1,"École Jean Jaurès",48.693413,2.368663,,1,,Europe/Paris,,OIF, +OIF:SA:59:6251928,1,"Piver",48.688927,2.371695,,1,,Europe/Paris,,OIF, +OIF:SA:59:6251933,1,"Place Henri Barbusse",48.695653,2.364374,,1,,Europe/Paris,,OIF, +OIF:SA:59:6251934,1,"Violettes",48.697918,2.361523,,1,,Europe/Paris,,OIF, +OIF:SA:59:6251936,1,"Palombes",48.69747,2.354666,,1,,Europe/Paris,,OIF, +OIF:SA:59:6251937,1,"Saint-Saëns",48.69987,2.357668,,1,,Europe/Paris,,OIF, +OIF:SA:59:6251938,1,"Jardiniers",48.699465,2.360125,,1,,Europe/Paris,,OIF, +OIF:SA:59:6251947,1,"La Plaine",48.70746,2.377805,,1,,Europe/Paris,,OIF, +OIF:SA:59:6251960,1,"Caron",48.719161,2.410179,,1,,Europe/Paris,,OIF, +OIF:SA:59:6251961,1,"Gunsbourg",48.719541,2.412706,,1,,Europe/Paris,,OIF, +OIF:SA:59:6251962,1,"Caron / Gunsbourg",48.718455,2.41068,,1,,Europe/Paris,,OIF, +OIF:SA:59:6251967,1,"Provence",48.709333,2.399727,,1,,Europe/Paris,,OIF, +OIF:SA:59:6251969,1,"Edouard Vaillant",48.707892,2.397559,,1,,Europe/Paris,,OIF, +OIF:SA:59:6251971,1,"Cottage",48.705622,2.393218,,1,,Europe/Paris,,OIF, +OIF:SA:59:6251993,1,"Centre Commercial / Rigolet",48.71112,2.371064,,1,,Europe/Paris,,OIF, +OIF:SA:59:6252010,1,"Château d'Ablon",48.723407,2.411163,,1,,Europe/Paris,,OIF, +OIF:SA:59:6252037,1,"Lycée Jean Monnet",48.695329,2.380138,,1,,Europe/Paris,,OIF, +OIF:SA:59:6252061,1,"Place de l'Église",48.708462,2.389384,,1,,Europe/Paris,,OIF, +OIF:SA:59:6263448,1,"Général Leclerc",48.829887,2.235453,,1,,Europe/Paris,,OIF, +OIF:SA:59:6263459,1,"Île Saint-Germain",48.823202,2.249493,,1,,Europe/Paris,,OIF, +OIF:SA:59:6263463,1,"Paul Besnard",48.818492,2.249392,,1,,Europe/Paris,,OIF, +OIF:SA:59:6263485,1,"Square Médéric",48.789524,2.231682,,1,,Europe/Paris,,OIF, +OIF:SA:59:6263487,1,"Acacias",48.790365,2.227348,,1,,Europe/Paris,,OIF, +OIF:SA:59:6263492,1,"Lycée de Villebon",48.794255,2.220756,,1,,Europe/Paris,,OIF, +OIF:SA:59:6263503,1,"Centre Millandy",48.785597,2.232649,,1,,Europe/Paris,,OIF, +OIF:SA:59:6263520,1,"Amaury Duval",48.81749,2.325147,,1,,Europe/Paris,,OIF, +OIF:SA:59:6263521,1,"Barbès",48.81678,2.328644,,1,,Europe/Paris,,OIF, +OIF:SA:59:6263522,1,"Vanne",48.81252,2.327652,,1,,Europe/Paris,,OIF, +OIF:SA:59:6263523,1,"Maurice Genevoix",48.811163,2.324372,,1,,Europe/Paris,,OIF, +OIF:SA:59:6263524,1,"Jules Ferry",48.812313,2.322821,,1,,Europe/Paris,,OIF, +OIF:SA:59:6263525,1,"Buffalo",48.812933,2.320942,,1,,Europe/Paris,,OIF, +OIF:SA:59:6263527,1,"Verdier - République",48.815521,2.317852,,1,,Europe/Paris,,OIF, +OIF:SA:59:6263530,1,"Place des États Unis",48.81766,2.316205,,1,,Europe/Paris,,OIF, +OIF:SA:59:6263532,1,"Molière",48.812796,2.309511,,1,,Europe/Paris,,OIF, +OIF:SA:59:6263533,1,"Georges Messier",48.811071,2.314642,,1,,Europe/Paris,,OIF, +OIF:SA:59:6263534,1,"Cimetière de Bagneux",48.810424,2.311785,,1,,Europe/Paris,,OIF, +OIF:SA:59:6263535,1,"Châtillon - Montrouge - Métro",48.811078,2.304872,,1,,Europe/Paris,,OIF, +OIF:SA:59:6263565,1,"Collège Cesaria Évora",48.867958,2.457212,,1,,Europe/Paris,,OIF, +OIF:SA:59:6263568,1,"Rue Stdenis",48.870706,2.459364,,1,,Europe/Paris,,OIF, +OIF:SA:59:6263570,1,"Rue des Roches",48.873436,2.461564,,1,,Europe/Paris,,OIF, +OIF:SA:59:6263574,1,"Etienne Dolet",48.87635,2.4673,,1,,Europe/Paris,,OIF, +OIF:SA:59:6263577,1,"Saussaie Beauclair / Domus",48.882047,2.468786,,1,,Europe/Paris,,OIF, +OIF:SA:59:6263584,1,"Rosny 2 Sud",48.881334,2.486145,,1,,Europe/Paris,,OIF, +OIF:SA:59:6263586,1,"Alsace Lorraine",48.883139,2.48767,,1,,Europe/Paris,,OIF, +OIF:SA:59:6309076,1,"Cimetière Nouveau",48.892262,2.22795,,1,,Europe/Paris,,OIF, +OIF:SA:59:6309078,1,"Pergola",48.888311,2.231843,,1,,Europe/Paris,,OIF, +OIF:SA:59:6309083,1,"Gutenberg",48.883373,2.227683,,1,,Europe/Paris,,OIF, +OIF:SA:59:6309093,1,"Centre Medico Social / Françoise Dolto",48.885001,2.239154,,1,,Europe/Paris,,OIF, +OIF:SA:59:6309094,1,"Marché",48.882731,2.238968,,1,,Europe/Paris,,OIF, +OIF:SA:59:6309096,1,"Bas Rogers",48.879894,2.236241,,1,,Europe/Paris,,OIF, +OIF:SA:59:6309097,1,"Voltaire",48.877964,2.239563,,1,,Europe/Paris,,OIF, +OIF:SA:59:6309098,1,"Conservatoire / Pressensé",48.875783,2.236971,,1,,Europe/Paris,,OIF, +OIF:SA:59:6309101,1,"Volta",48.87618,2.233503,,1,,Europe/Paris,,OIF, +OIF:SA:59:6309102,1,"Résidence Verdun",48.878563,2.235324,,1,,Europe/Paris,,OIF, +OIF:SA:59:6309113,1,"Jules Verne / Palais de la Jeunesse",48.8885,2.231815,,1,,Europe/Paris,,OIF, +OIF:SA:59:6309119,1,"Edgar Quinet",48.886404,2.229748,,1,,Europe/Paris,,OIF, +OIF:SA:59:6309125,1,"Roque de Fillol",48.882674,2.240657,,1,,Europe/Paris,,OIF, +OIF:SA:59:6309126,1,"Arago / Jean Jaurès",48.884062,2.245493,,1,,Europe/Paris,,OIF, +OIF:SA:59:6309164,1,"Wallace Voilin",48.881718,2.236108,,1,,Europe/Paris,,OIF, +OIF:SA:59:6309165,1,"Mairie / Église",48.883094,2.237441,,1,,Europe/Paris,,OIF, +OIF:SA:59:6309168,1,"Cartault / Palissy",48.881712,2.229076,,1,,Europe/Paris,,OIF, +OIF:SA:59:6309171,1,"Charles Lorilleux",48.886333,2.230947,,1,,Europe/Paris,,OIF, +OIF:SA:59:6309177,1,"Berthelot / Carré Vert",48.88933,2.230887,,1,,Europe/Paris,,OIF, +OIF:SA:59:6327989,1,"Diderot",48.944896,2.43487,,1,,Europe/Paris,,OIF, +OIF:SA:59:6401774,1,"Jean Moulin",48.818075,2.509849,,1,,Europe/Paris,,OIF, +OIF:SA:59:6401775,1,"Irène Joliot Curie",48.821958,2.506609,,1,,Europe/Paris,,OIF, +OIF:SA:59:6401776,1,"Gabriel Péri / Henri Barbusse",48.820055,2.501539,,1,,Europe/Paris,,OIF, +OIF:SA:59:6401777,1,"Aristide Briand",48.82205,2.498388,,1,,Europe/Paris,,OIF, +OIF:SA:59:6401787,1,"Lycée Louis Armand",48.847915,2.489501,,1,,Europe/Paris,,OIF, +OIF:SA:59:6401797,1,"Victor Hugo",48.858892,2.506866,,1,,Europe/Paris,,OIF, +OIF:SA:59:6401800,1,"Les 2 Communes",48.864492,2.499623,,1,,Europe/Paris,,OIF, +OIF:SA:59:6401826,1,"Commissariat",48.874939,2.486542,,1,,Europe/Paris,,OIF, +OIF:SA:59:6401829,1,"Pascal",48.864409,2.487949,,1,,Europe/Paris,,OIF, +OIF:SA:59:6401831,1,"Missak Manouchian",48.863553,2.496487,,1,,Europe/Paris,,OIF, +OIF:SA:59:6401832,1,"Rue du Rhin",48.866957,2.49801,,1,,Europe/Paris,,OIF, +OIF:SA:59:6401834,1,"Strasbourg",48.867016,2.500449,,1,,Europe/Paris,,OIF, +OIF:SA:59:6401836,1,"Les 2 Communes",48.862777,2.498733,,1,,Europe/Paris,,OIF, +OIF:SA:59:6401839,1,"Danielle Casanova",48.857991,2.50181,,1,,Europe/Paris,,OIF, +OIF:SA:59:6401840,1,"Les Joncs Marins",48.854501,2.500845,,1,,Europe/Paris,,OIF, +OIF:SA:59:6401842,1,"Maréchal Lyautey",48.85192,2.498631,,1,,Europe/Paris,,OIF, +OIF:SA:59:6401856,1,"Raymond Poincaré",48.850101,2.494308,,1,,Europe/Paris,,OIF, +OIF:SA:59:6401859,1,"Victor Basch",48.846382,2.499512,,1,,Europe/Paris,,OIF, +OIF:SA:59:6401879,1,"Louis Loucheur",48.823405,2.509227,,1,,Europe/Paris,,OIF, +OIF:SA:59:6401894,1,"Lamartine / Marie",48.855355,2.503776,,1,,Europe/Paris,,OIF, +OIF:SA:59:6401895,1,"Danielle Casanova",48.857151,2.504613,,1,,Europe/Paris,,OIF, +OIF:SA:59:6401899,1,"Paul Bert",48.86707,2.494087,,1,,Europe/Paris,,OIF, +OIF:SA:59:6408748,1,"Émile Zola",48.822093,2.272987,,1,,Europe/Paris,,OIF, +OIF:SA:59:6408751,1,"Défense",48.819454,2.263014,,1,,Europe/Paris,,OIF, +OIF:SA:59:6408754,1,"Général Guichard",48.815951,2.266816,,1,,Europe/Paris,,OIF, +OIF:SA:59:6408771,1,"Belvédère",48.818199,2.26861,,1,,Europe/Paris,,OIF, +OIF:SA:59:6408772,1,"Avenue de la Paix",48.818561,2.271917,,1,,Europe/Paris,,OIF, +OIF:SA:59:6423468,1,"République / Voltaire",48.866397,2.36569,,1,,Europe/Paris,,OIF, +OIF:SA:59:6423511,1,"Mont-Cenis",48.897865,2.346788,,1,,Europe/Paris,,OIF, +OIF:SA:59:6423890,1,"Pointe Môle 1",48.941583,2.264327,,1,,Europe/Paris,,OIF, +OIF:SA:59:6423891,1,"Môle 1-2",48.937042,2.27436,,1,,Europe/Paris,,OIF, +OIF:SA:59:6423892,1,"Centre de Vie - Charbonnier",48.937654,2.27736,,1,,Europe/Paris,,OIF, +OIF:SA:59:6423893,1,"Entrée Môle 2-3",48.939588,2.280141,,1,,Europe/Paris,,OIF, +OIF:SA:59:6423898,1,"Pointe Môle Central",48.943687,2.281637,,1,,Europe/Paris,,OIF, +OIF:SA:59:6423901,1,"Quai des Entrepreneurs",48.936347,2.269395,,1,,Europe/Paris,,OIF, +OIF:SA:59:6423902,1,"Direction du Port",48.936157,2.267192,,1,,Europe/Paris,,OIF, +OIF:SA:59:6423913,1,"Cœur Bassin 6",48.949271,2.289709,,1,,Europe/Paris,,OIF, +OIF:SA:59:6423914,1,"Pointe Bassin 6",48.948477,2.283024,,1,,Europe/Paris,,OIF, +OIF:SA:59:6423915,1,"Bassin 6",48.949228,2.295126,,1,,Europe/Paris,,OIF, +OIF:SA:59:6423918,1,"Cœur Route de la Seine",48.946068,2.282617,,1,,Europe/Paris,,OIF, +OIF:SA:59:6423919,1,"Impasse de la Seine",48.946478,2.273994,,1,,Europe/Paris,,OIF, +OIF:SA:59:6423922,1,"Centre de Vie",48.937187,2.277001,,1,,Europe/Paris,,OIF, +OIF:SA:59:6423923,1,"Mercières",48.935714,2.272315,,1,,Europe/Paris,,OIF, +OIF:SA:59:6423930,1,"Cœur Môle 1",48.93833,2.263868,,1,,Europe/Paris,,OIF, +OIF:SA:59:6423935,1,"Pointe Môle 2-3",48.941483,2.277274,,1,,Europe/Paris,,OIF, +OIF:SA:59:6423936,1,"Cœur Môle 2-3",48.943431,2.273301,,1,,Europe/Paris,,OIF, +OIF:SA:59:6423938,1,"Cœur Môle Central",48.941118,2.286183,,1,,Europe/Paris,,OIF, +OIF:SA:59:6423942,1,"Port de Gennevilliers / Centre de Vie",48.937535,2.278415,,1,,Europe/Paris,,OIF, +OIF:SA:59:6446067,1,"Bout du Rang",48.811666,2.346214,,1,,Europe/Paris,,OIF, +OIF:SA:59:6446068,1,"Fraysse / Val de Bièvre",48.810076,2.343601,,1,,Europe/Paris,,OIF, +OIF:SA:59:6446069,1,"Paul Doumer",48.805775,2.338783,,1,,Europe/Paris,,OIF, +OIF:SA:59:6446070,1,"Louis Frebault",48.804485,2.336164,,1,,Europe/Paris,,OIF, +OIF:SA:59:6446101,1,"Rue des Jardins",48.780613,2.335008,,1,,Europe/Paris,,OIF, +OIF:SA:59:6446107,1,"Leclerc - Chalais",48.774142,2.331507,,1,,Europe/Paris,,OIF, +OIF:SA:59:6446109,1,"Bergère",48.771059,2.333846,,1,,Europe/Paris,,OIF, +OIF:SA:59:6446110,1,"Charles Perrault",48.76705,2.330828,,1,,Europe/Paris,,OIF, +OIF:SA:59:6446111,1,"Charcot",48.76501,2.329536,,1,,Europe/Paris,,OIF, +OIF:SA:59:6446118,1,"Les Anémones",48.754933,2.317949,,1,,Europe/Paris,,OIF, +OIF:SA:59:6446120,1,"Verdun",48.75415,2.313083,,1,,Europe/Paris,,OIF, +OIF:SA:59:6446122,1,"Peupleraie",48.756928,2.315434,,1,,Europe/Paris,,OIF, +OIF:SA:59:6446127,1,"Chalais - Thérèse",48.766331,2.327973,,1,,Europe/Paris,,OIF, +OIF:SA:59:6446128,1,"Blondeaux / Écoles",48.77069,2.329019,,1,,Europe/Paris,,OIF, +OIF:SA:59:6449026,1,"Pablo Picasso",48.899515,2.280362,,1,,Europe/Paris,,OIF, +OIF:SA:59:6449028,1,"Rivay - Quai Michelet",48.900586,2.284341,,1,,Europe/Paris,,OIF, +OIF:SA:59:6449045,1,"Abbé Glatz",48.925247,2.285257,,1,,Europe/Paris,,OIF, +OIF:SA:59:6449046,1,"Patinoire",48.928374,2.28475,,1,,Europe/Paris,,OIF, +OIF:SA:59:6449062,1,"Ormeteau",48.943291,2.30539,,1,,Europe/Paris,,OIF, +OIF:SA:59:6449064,1,"ZAC des Louvresses",48.94117,2.305555,,1,,Europe/Paris,,OIF, +OIF:SA:59:6449067,1,"Patinoire",48.927988,2.284463,,1,,Europe/Paris,,OIF, +OIF:SA:59:6449068,1,"Abbé Glatz",48.924977,2.285067,,1,,Europe/Paris,,OIF, +OIF:SA:59:6456031,1,"François Hanriot",48.901325,2.218021,,1,,Europe/Paris,,OIF, +OIF:SA:59:6456033,1,"Défense Ouest",48.908557,2.230029,,1,,Europe/Paris,,OIF, +OIF:SA:59:6456043,1,"Valmy / Gambetta / Stade",48.92829,2.254075,,1,,Europe/Paris,,OIF, +OIF:SA:59:6456044,1,"Boulevard d'Achères",48.932267,2.255351,,1,,Europe/Paris,,OIF, +OIF:SA:59:6456069,1,"Défense Ouest",48.908683,2.229811,,1,,Europe/Paris,,OIF, +OIF:SA:59:6456095,1,"Les Renouillers",48.925332,2.247275,,1,,Europe/Paris,,OIF, +OIF:SA:59:6456099,1,"Tour d'Auvergne",48.92644,2.243924,,1,,Europe/Paris,,OIF, +OIF:SA:59:6456105,1,"Rue de Seine",48.921315,2.23074,,1,,Europe/Paris,,OIF, +OIF:SA:59:6456107,1,"Zone Industrielle",48.91964,2.227095,,1,,Europe/Paris,,OIF, +OIF:SA:59:6456134,1,"Palais des Sports",48.892671,2.210136,,1,,Europe/Paris,,OIF, +OIF:SA:59:6456136,1,"Mairie",48.890803,2.206862,,1,,Europe/Paris,,OIF, +OIF:SA:59:6563549,1,"Choisy Sud",48.754767,2.411942,,1,,Europe/Paris,,OIF, +OIF:SA:59:6563566,1,"Division Leclerc",48.784672,2.367386,,1,,Europe/Paris,,OIF, +OIF:SA:59:6575227,1,"Joseph Dépinay",48.881945,2.42317,,1,,Europe/Paris,,OIF, +OIF:SA:59:6575234,1,"Hélène",48.88833,2.450526,,1,,Europe/Paris,,OIF, +OIF:SA:59:6575238,1,"Salengro / Auffret",48.887969,2.457272,,1,,Europe/Paris,,OIF, +OIF:SA:59:6575243,1,"Denis Papin",48.898845,2.463738,,1,,Europe/Paris,,OIF, +OIF:SA:59:6575247,1,"Nouvelle Piscine",48.902296,2.467529,,1,,Europe/Paris,,OIF, +OIF:SA:59:6575251,1,"Lycée Pagnol / Renoir",48.904163,2.473832,,1,,Europe/Paris,,OIF, +OIF:SA:59:6575255,1,"Cimetière - Hôtel de Ville",48.902089,2.483376,,1,,Europe/Paris,,OIF, +OIF:SA:59:6575257,1,"Pierre Brossolette",48.901662,2.487321,,1,,Europe/Paris,,OIF, +OIF:SA:59:6575261,1,"Marcel Sembat",48.899696,2.496122,,1,,Europe/Paris,,OIF, +OIF:SA:59:6575263,1,"Albert Thomas",48.899483,2.50081,,1,,Europe/Paris,,OIF, +OIF:SA:59:6575265,1,"Brackley",48.899885,2.505419,,1,,Europe/Paris,,OIF, +OIF:SA:59:6575269,1,"Virginie",48.90264,2.502143,,1,,Europe/Paris,,OIF, +OIF:SA:59:6575274,1,"Carnot",48.884618,2.44057,,1,,Europe/Paris,,OIF, +OIF:SA:59:6578281,1,"Rue de la Ferme",48.836081,2.630383,,1,,Europe/Paris,,OIF, +OIF:SA:59:6578288,1,"Pelloutier",48.826639,2.633465,,1,,Europe/Paris,,OIF, +OIF:SA:59:6578303,1,"Tour de Contrôle",48.824491,2.622359,,1,,Europe/Paris,,OIF, +OIF:SA:59:6578304,1,"Aérodrome de Lognes",48.824034,2.618055,,1,,Europe/Paris,,OIF, +OIF:SA:59:6578310,1,"Maison Rouge",48.832688,2.62949,,1,,Europe/Paris,,OIF, +OIF:SA:59:6578312,1,"La Madeleine",48.828113,2.62958,,1,,Europe/Paris,,OIF, +OIF:SA:59:6578314,1,"Chambre de Commerce et d'Industrie",48.825795,2.629383,,1,,Europe/Paris,,OIF, +OIF:SA:59:6578324,1,"Gabriel Péri",48.889647,2.197877,,1,,Europe/Paris,,OIF, +OIF:SA:59:6578332,1,"Garches",48.87798,2.208639,,1,,Europe/Paris,,OIF, +OIF:SA:59:6578336,1,"Camille Desmoulins",48.880059,2.203183,,1,,Europe/Paris,,OIF, +OIF:SA:59:6578344,1,"Ombraies",48.88402,2.201204,,1,,Europe/Paris,,OIF, +OIF:SA:59:6578353,1,"Politzer",48.892746,2.209031,,1,,Europe/Paris,,OIF, +OIF:SA:59:6578354,1,"Hôtel de Ville - Cité Administrative",48.892357,2.205863,,1,,Europe/Paris,,OIF, +OIF:SA:59:6578356,1,"Rue des Amandiers",48.89151,2.203869,,1,,Europe/Paris,,OIF, +OIF:SA:59:6578366,1,"Jean-Baptiste Lebon",48.891507,2.193947,,1,,Europe/Paris,,OIF, +OIF:SA:59:6578367,1,"Place des Marronniers",48.891603,2.191861,,1,,Europe/Paris,,OIF, +OIF:SA:59:6578368,1,"Place Foch",48.888748,2.193586,,1,,Europe/Paris,,OIF, +OIF:SA:59:6578383,1,"Église de Nanterre",48.890771,2.195039,,1,,Europe/Paris,,OIF, +OIF:SA:59:6578384,1,"Parc des Anciennes Mairies",48.891887,2.195718,,1,,Europe/Paris,,OIF, +OIF:SA:59:6591432,1,"Gagarine",48.883173,2.426559,,1,,Europe/Paris,,OIF, +OIF:SA:59:6591534,1,"Pixérécourt",48.875212,2.395684,,1,,Europe/Paris,,OIF, +OIF:SA:59:6591537,1,"Paul de Kock.",48.880907,2.419928,,1,,Europe/Paris,,OIF, +OIF:SA:59:6591566,1,"Hoche",48.886405,2.446952,,1,,Europe/Paris,,OIF, +OIF:SA:59:6591568,1,"Square Stéphenson",48.887922,2.462485,,1,,Europe/Paris,,OIF, +OIF:SA:59:6591579,1,"Rue de Neuilly",48.882791,2.514977,,1,,Europe/Paris,,OIF, +OIF:SA:59:6591712,1,"Rue de la Pointe",48.869292,2.555693,,1,,Europe/Paris,,OIF, +OIF:SA:59:6591793,1,"Échangeur de Rosny",48.886518,2.472396,,1,,Europe/Paris,,OIF, +OIF:SA:59:6591831,1,"Jalencloud",48.879636,2.42211,,1,,Europe/Paris,,OIF, +OIF:SA:59:6595278,1,"Strasbourg",48.783337,2.327929,,1,,Europe/Paris,,OIF, +OIF:SA:59:6613820,1,"Les Hauts de Malesherbes",48.891369,2.306682,,1,,Europe/Paris,,OIF, +OIF:SA:59:6613824,1,"Lycée Honore de Balzac",48.895774,2.317441,,1,,Europe/Paris,,OIF, +OIF:SA:59:6613828,1,"Louis Loucheur",48.897546,2.325012,,1,,Europe/Paris,,OIF, +OIF:SA:59:6613832,1,"Faculté Xavier Bichat",48.897695,2.332646,,1,,Europe/Paris,,OIF, +OIF:SA:59:6640094,1,"Sablons",48.882304,2.423259,,1,,Europe/Paris,,OIF, +OIF:SA:59:6640101,1,"Romainville - Carnot",48.883579,2.441393,,1,,Europe/Paris,,OIF, +OIF:SA:59:6640103,1,"Fort de Noisy",48.882192,2.444871,,1,,Europe/Paris,,OIF, +OIF:SA:59:6640107,1,"Rue de Romainville",48.876652,2.449459,,1,,Europe/Paris,,OIF, +OIF:SA:59:6640109,1,"Fernand Lamaze",48.877009,2.452082,,1,,Europe/Paris,,OIF, +OIF:SA:59:6640114,1,"Saint-Denis",48.873556,2.45405,,1,,Europe/Paris,,OIF, +OIF:SA:59:6640116,1,"Paul Signac / Carrefour du 8 Mai 1945",48.870283,2.450521,,1,,Europe/Paris,,OIF, +OIF:SA:59:6640118,1,"Sept Chemins",48.868139,2.446811,,1,,Europe/Paris,,OIF, +OIF:SA:59:6640124,1,"Rue de Romainville",48.877006,2.44963,,1,,Europe/Paris,,OIF, +OIF:SA:59:6640125,1,"Fort de Romainville",48.885861,2.426618,,1,,Europe/Paris,,OIF, +OIF:SA:59:6640127,1,"Louise Michel",48.876428,2.432304,,1,,Europe/Paris,,OIF, +OIF:SA:59:6640129,1,"Vert Bois",48.87234,2.436738,,1,,Europe/Paris,,OIF, +OIF:SA:59:6640131,1,"Oseraies",48.871773,2.442983,,1,,Europe/Paris,,OIF, +OIF:SA:59:6640132,1,"Mirabeau",48.874878,2.448099,,1,,Europe/Paris,,OIF, +OIF:SA:59:6640139,1,"Ruelle Boissière",48.879677,2.465905,,1,,Europe/Paris,,OIF, +OIF:SA:59:6640141,1,"Nanteuil",48.878138,2.475678,,1,,Europe/Paris,,OIF, +OIF:SA:59:6640145,1,"Elsa Triolet",48.884914,2.464051,,1,,Europe/Paris,,OIF, +OIF:SA:59:6640147,1,"Nouveau Cimetière",48.883575,2.459565,,1,,Europe/Paris,,OIF, +OIF:SA:59:6640149,1,"École Boissière",48.880794,2.457272,,1,,Europe/Paris,,OIF, +OIF:SA:59:6640151,1,"Place Saint-Martin",48.880632,2.455415,,1,,Europe/Paris,,OIF, +OIF:SA:59:6640157,1,"École Paul Langevin",48.885222,2.457933,,1,,Europe/Paris,,OIF, +OIF:SA:59:6640161,1,"Marceau",48.890981,2.459705,,1,,Europe/Paris,,OIF, +OIF:SA:59:6640162,1,"Gambetta",48.893253,2.461155,,1,,Europe/Paris,,OIF, +OIF:SA:59:6640165,1,"Stjean",48.893626,2.457108,,1,,Europe/Paris,,OIF, +OIF:SA:59:6640166,1,"Marché des Découvertes",48.891453,2.454472,,1,,Europe/Paris,,OIF, +OIF:SA:59:6640168,1,"Hôpital André Grégoire",48.878486,2.453339,,1,,Europe/Paris,,OIF, +OIF:SA:59:6640169,1,"3 Communes",48.878714,2.450192,,1,,Europe/Paris,,OIF, +OIF:SA:59:6640170,1,"Mirabeau",48.874842,2.447786,,1,,Europe/Paris,,OIF, +OIF:SA:59:6640171,1,"Oseraies",48.8719,2.441839,,1,,Europe/Paris,,OIF, +OIF:SA:59:6673033,1,"Petit Chemin du Pont Blanc",48.920981,2.392388,,1,,Europe/Paris,,OIF, +OIF:SA:59:6673049,1,"Louis Bordes",48.953116,2.390355,,1,,Europe/Paris,,OIF, +OIF:SA:59:6673051,1,"Avenue de Stalingrad / N 215",48.955723,2.394342,,1,,Europe/Paris,,OIF, +OIF:SA:59:6673056,1,"Croix Buard",48.965848,2.408514,,1,,Europe/Paris,,OIF, +OIF:SA:59:6673058,1,"Verdun",48.967974,2.410957,,1,,Europe/Paris,,OIF, +OIF:SA:59:6673060,1,"Carnot",48.971059,2.414548,,1,,Europe/Paris,,OIF, +OIF:SA:59:6673062,1,"Collège Pablo Picasso",48.973009,2.417496,,1,,Europe/Paris,,OIF, +OIF:SA:59:6673064,1,"Rond-Point du Christ",48.97598,2.422166,,1,,Europe/Paris,,OIF, +OIF:SA:59:6673066,1,"Mairie",48.979781,2.423715,,1,,Europe/Paris,,OIF, +OIF:SA:59:6673070,1,"Lycée René Cassin",48.982832,2.434074,,1,,Europe/Paris,,OIF, +OIF:SA:59:6673072,1,"Chemin du Moulin d'Etif",48.983701,2.437628,,1,,Europe/Paris,,OIF, +OIF:SA:59:6673074,1,"Jean Jaurès",48.983768,2.44082,,1,,Europe/Paris,,OIF, +OIF:SA:59:6673076,1,"La Fontaine Cypierre",48.984984,2.459347,,1,,Europe/Paris,,OIF, +OIF:SA:59:6673090,1,"Mairie / Place de la Liberté",48.682506,2.170738,,1,,Europe/Paris,,OIF, +OIF:SA:59:6673115,1,"Mairie-Hopital-Orsay RER",48.698924,2.1877,,1,,Europe/Paris,,OIF, +OIF:SA:59:6682456,1,"Convention",48.883417,2.411637,,1,,Europe/Paris,,OIF, +OIF:SA:59:6682457,1,"Les Pommiers",48.885404,2.410925,,1,,Europe/Paris,,OIF, +OIF:SA:59:6682459,1,"Montigny / Maison de Retraite",48.887125,2.410314,,1,,Europe/Paris,,OIF, +OIF:SA:59:6682462,1,"8 Mai 1945",48.890568,2.40993,,1,,Europe/Paris,,OIF, +OIF:SA:59:6682466,1,"Louis Nadot",48.896136,2.409447,,1,,Europe/Paris,,OIF, +OIF:SA:59:6682468,1,"Delizy",48.898016,2.40581,,1,,Europe/Paris,,OIF, +OIF:SA:59:6682476,1,"La Pérouse",48.901464,2.394139,,1,,Europe/Paris,,OIF, +OIF:SA:59:6682484,1,"Paul Bert",48.909128,2.389403,,1,,Europe/Paris,,OIF, +OIF:SA:59:6682486,1,"Les Roses",48.911765,2.39143,,1,,Europe/Paris,,OIF, +OIF:SA:59:6682487,1,"Maison de Retraite",48.914694,2.391843,,1,,Europe/Paris,,OIF, +OIF:SA:59:6682489,1,"Cimetière / Pont Blanc",48.916954,2.392895,,1,,Europe/Paris,,OIF, +OIF:SA:59:6682503,1,"Chabrol",48.930038,2.396203,,1,,Europe/Paris,,OIF, +OIF:SA:59:6682506,1,"Cité Waldeck-Rochet",48.933423,2.400899,,1,,Europe/Paris,,OIF, +OIF:SA:59:6682508,1,"Cimetière",48.937659,2.404526,,1,,Europe/Paris,,OIF, +OIF:SA:59:6682510,1,"Centre des Essences",48.941758,2.410214,,1,,Europe/Paris,,OIF, +OIF:SA:59:6682514,1,"Albert Chardavoine",48.949533,2.414946,,1,,Europe/Paris,,OIF, +OIF:SA:59:6682516,1,"Place du 16 Août 1943",48.951805,2.41673,,1,,Europe/Paris,,OIF, +OIF:SA:59:6682527,1,"Convention",48.88295,2.411255,,1,,Europe/Paris,,OIF, +OIF:SA:59:6682534,1,"Centre Ville",48.954394,2.415369,,1,,Europe/Paris,,OIF, +OIF:SA:59:6682535,1,"Cité du Moulin",48.955941,2.413448,,1,,Europe/Paris,,OIF, +OIF:SA:59:6682555,1,"Nouvelle France",48.912899,2.388514,,1,,Europe/Paris,,OIF, +OIF:SA:59:6682565,1,"Cheval Blanc",48.895433,2.412704,,1,,Europe/Paris,,OIF, +OIF:SA:59:6682581,1,"Rond-Point du Petit Clamart / D906",48.777543,2.232196,,1,,Europe/Paris,,OIF, +OIF:SA:59:6682585,1,"Picardie",48.785399,2.244014,,1,,Europe/Paris,,OIF, +OIF:SA:59:6682596,1,"Poste",48.801468,2.259774,,1,,Europe/Paris,,OIF, +OIF:SA:59:6682599,1,"D'Estienne d'Orves",48.808576,2.258682,,1,,Europe/Paris,,OIF, +OIF:SA:59:6682604,1,"Place John Fitzgerald Kennedy",48.820987,2.263897,,1,,Europe/Paris,,OIF, +OIF:SA:59:6682654,1,"Cité du 1er Mai",48.891445,2.471025,,1,,Europe/Paris,,OIF, +OIF:SA:59:6682656,1,"David Léder",48.893333,2.474206,,1,,Europe/Paris,,OIF, +OIF:SA:59:6682660,1,"Edouard Vaillant / Carnot",48.896651,2.480062,,1,,Europe/Paris,,OIF, +OIF:SA:59:6682666,1,"Paul Renaud",48.910483,2.479923,,1,,Europe/Paris,,OIF, +OIF:SA:59:6682667,1,"Route d'Aulnay / Jean Moulin",48.912181,2.480993,,1,,Europe/Paris,,OIF, +OIF:SA:59:6682686,1,"Foch / Gallieni",48.927975,2.465303,,1,,Europe/Paris,,OIF, +OIF:SA:59:6682687,1,"Joffre / Madelon",48.928459,2.461614,,1,,Europe/Paris,,OIF, +OIF:SA:59:6682691,1,"Joffre",48.930748,2.455905,,1,,Europe/Paris,,OIF, +OIF:SA:59:6682695,1,"Roger Salomon",48.935492,2.456946,,1,,Europe/Paris,,OIF, +OIF:SA:59:6682701,1,"Église Notre-Dame",48.936614,2.465051,,1,,Europe/Paris,,OIF, +OIF:SA:59:6682703,1,"République / Paladhile",48.936028,2.46833,,1,,Europe/Paris,,OIF, +OIF:SA:59:6682705,1,"Calmette",48.939583,2.471873,,1,,Europe/Paris,,OIF, +OIF:SA:59:6682707,1,"Place de la Libération",48.943177,2.466259,,1,,Europe/Paris,,OIF, +OIF:SA:59:6682709,1,"Lycées",48.943591,2.468152,,1,,Europe/Paris,,OIF, +OIF:SA:59:6682710,1,"Foch / Marne",48.927029,2.467414,,1,,Europe/Paris,,OIF, +OIF:SA:59:6682711,1,"Mathilde Emilie",48.922128,2.469679,,1,,Europe/Paris,,OIF, +OIF:SA:59:6682713,1,"Gueugnon",48.909562,2.479968,,1,,Europe/Paris,,OIF, +OIF:SA:59:6682714,1,"Blanqui / Salengro",48.90081,2.478608,,1,,Europe/Paris,,OIF, +OIF:SA:59:6683005,1,"Maison de Quartier Edmond Michelet",48.946678,2.536175,,1,,Europe/Paris,,OIF, +OIF:SA:59:6686067,1,"Avenue Ronsard",48.948276,2.537368,,1,,Europe/Paris,,OIF, +OIF:SA:59:6687891,1,"Route du Port",48.940064,2.303236,,1,,Europe/Paris,,OIF, +OIF:SA:59:6687892,1,"Les Barbanniers",48.936451,2.303832,,1,,Europe/Paris,,OIF, +OIF:SA:59:6687896,1,"Avenue du Vieux Chemin de Saint-Denis",48.93205,2.31236,,1,,Europe/Paris,,OIF, +OIF:SA:59:6687898,1,"115 / 116 Avenue Louis Roche",48.927139,2.314074,,1,,Europe/Paris,,OIF, +OIF:SA:59:6687899,1,"Rue des Noëls",48.925495,2.317212,,1,,Europe/Paris,,OIF, +OIF:SA:59:6687901,1,"Quai des Grésillons",48.921712,2.324277,,1,,Europe/Paris,,OIF, +OIF:SA:59:6687904,1,"Soubise",48.9149,2.331724,,1,,Europe/Paris,,OIF, +OIF:SA:59:6687905,1,"Jean Jaurès - Mairie",48.912568,2.335017,,1,,Europe/Paris,,OIF, +OIF:SA:59:6687906,1,"Rue de l'Union",48.910807,2.337396,,1,,Europe/Paris,,OIF, +OIF:SA:59:6741220,1,"Aulnes",48.944815,2.377999,,1,,Europe/Paris,,OIF, +OIF:SA:59:6741233,1,"Delaunay / Belleville",48.94684,2.345426,,1,,Europe/Paris,,OIF, +OIF:SA:59:6741243,1,"Les 3 Communes",48.960639,2.326287,,1,,Europe/Paris,,OIF, +OIF:SA:59:6741245,1,"Maréchal Foch",48.965168,2.319942,,1,,Europe/Paris,,OIF, +OIF:SA:59:6741253,1,"Marché des Mortefontaines",48.9722,2.32133,,1,,Europe/Paris,,OIF, +OIF:SA:59:6741256,1,"Clos Hanot",48.947476,2.37489,,1,,Europe/Paris,,OIF, +OIF:SA:59:6741270,1,"Église de Pierrefitte",48.966262,2.361173,,1,,Europe/Paris,,OIF, +OIF:SA:59:6741271,1,"Général Gallieni - République",48.968275,2.362403,,1,,Europe/Paris,,OIF, +OIF:SA:59:6741273,1,"Cimetière de Pierrefitte",48.970715,2.363946,,1,,Europe/Paris,,OIF, +OIF:SA:59:6741277,1,"Les Poiriers",48.978559,2.368162,,1,,Europe/Paris,,OIF, +OIF:SA:59:6741280,1,"Chantepie",48.985855,2.371628,,1,,Europe/Paris,,OIF, +OIF:SA:59:6741296,1,"Crous",48.841766,2.584038,,1,,Europe/Paris,,OIF, +OIF:SA:59:6741298,1,"Alfred Nobel",48.838591,2.585082,,1,,Europe/Paris,,OIF, +OIF:SA:59:6741300,1,"Espace Descartes",48.835964,2.586125,,1,,Europe/Paris,,OIF, +OIF:SA:59:6741302,1,"Einstein - Galilée",48.835247,2.591921,,1,,Europe/Paris,,OIF, +OIF:SA:59:6741304,1,"Bois de l'Étang - Université",48.83808,2.593038,,1,,Europe/Paris,,OIF, +OIF:SA:59:6741306,1,"Bibliothèque",48.840653,2.591573,,1,,Europe/Paris,,OIF, +OIF:SA:59:6741308,1,"Frères Lumière - I.F.U.",48.837947,2.58787,,1,,Europe/Paris,,OIF, +OIF:SA:59:6741312,1,"Montgolfière",48.831336,2.575055,,1,,Europe/Paris,,OIF, +OIF:SA:59:6741318,1,"Collège des Yvris",48.82582,2.584769,,1,,Europe/Paris,,OIF, +OIF:SA:59:6741328,1,"Les Vignes de Bailly",48.839849,2.601781,,1,,Europe/Paris,,OIF, +OIF:SA:59:6741332,1,"Fontaine aux Coulons",48.845074,2.604402,,1,,Europe/Paris,,OIF, +OIF:SA:59:6741334,1,"Rue de Malnoue",48.848456,2.601137,,1,,Europe/Paris,,OIF, +OIF:SA:59:6741338,1,"Pointe de Champs",48.854581,2.597089,,1,,Europe/Paris,,OIF, +OIF:SA:59:6741340,1,"Les Pinsons",48.858475,2.594024,,1,,Europe/Paris,,OIF, +OIF:SA:59:6741342,1,"Albert Berthelot",48.859295,2.588811,,1,,Europe/Paris,,OIF, +OIF:SA:59:6741344,1,"Vallaud / Jean Jaurès",48.857642,2.586201,,1,,Europe/Paris,,OIF, +OIF:SA:59:6741348,1,"Collège Armand Lanoux",48.852577,2.584298,,1,,Europe/Paris,,OIF, +OIF:SA:59:6741352,1,"Bois de Grâce",48.84831,2.58553,,1,,Europe/Paris,,OIF, +OIF:SA:59:6741354,1,"Lycée Rene Descartes",48.845165,2.585399,,1,,Europe/Paris,,OIF, +OIF:SA:59:6741356,1,"Ampère",48.844826,2.583025,,1,,Europe/Paris,,OIF, +OIF:SA:59:6741380,1,"Xavier Bichat",48.851197,2.578278,,1,,Europe/Paris,,OIF, +OIF:SA:59:6741406,1,"Galilée - Pascal",48.84079,2.595087,,1,,Europe/Paris,,OIF, +OIF:SA:59:6741414,1,"Guy de Maupassant",48.846932,2.609287,,1,,Europe/Paris,,OIF, +OIF:SA:59:6741416,1,"Collège du Luzard",48.846779,2.61365,,1,,Europe/Paris,,OIF, +OIF:SA:59:6741420,1,"Les Totems",48.841069,2.618637,,1,,Europe/Paris,,OIF, +OIF:SA:59:6741424,1,"Le Village",48.838732,2.628026,,1,,Europe/Paris,,OIF, +OIF:SA:59:6741428,1,"Toussaint Louverture",48.949573,2.365184,,1,,Europe/Paris,,OIF, +OIF:SA:59:6741430,1,"Lycée",48.952668,2.368672,,1,,Europe/Paris,,OIF, +OIF:SA:59:6741432,1,"Pierre Curie - Clinique de l'Estrée",48.956115,2.367801,,1,,Europe/Paris,,OIF, +OIF:SA:59:6741437,1,"Jean Grignoux",48.968784,2.374415,,1,,Europe/Paris,,OIF, +OIF:SA:59:6741438,1,"Les Sablons",48.972558,2.375814,,1,,Europe/Paris,,OIF, +OIF:SA:59:6741439,1,"Camille Saint-Saëns",48.973701,2.371183,,1,,Europe/Paris,,OIF, +OIF:SA:59:6741453,1,"Mairie",48.996317,2.379454,,1,,Europe/Paris,,OIF, +OIF:SA:59:6741459,1,"Docteur Rampon",49.005976,2.382549,,1,,Europe/Paris,,OIF, +OIF:SA:59:6741461,1,"Espérance / Julien Boursier",49.009921,2.384663,,1,,Europe/Paris,,OIF, +OIF:SA:59:6741463,1,"Église",49.008085,2.389515,,1,,Europe/Paris,,OIF, +OIF:SA:59:6741465,1,"Les Lierres / Louise Michel",49.006952,2.392583,,1,,Europe/Paris,,OIF, +OIF:SA:59:6741467,1,"Avenue Henri Sellier",49.00783,2.398109,,1,,Europe/Paris,,OIF, +OIF:SA:59:6741469,1,"Puits la Marlière",49.008484,2.401272,,1,,Europe/Paris,,OIF, +OIF:SA:59:6741472,1,"Place Berlioz",49.005384,2.400469,,1,,Europe/Paris,,OIF, +OIF:SA:59:6741481,1,"Les Lierres / Hérivaux",49.00731,2.395247,,1,,Europe/Paris,,OIF, +OIF:SA:59:6741482,1,"L'Espérance",49.009584,2.383768,,1,,Europe/Paris,,OIF, +OIF:SA:59:6741483,1,"Les Sablons",48.972244,2.375646,,1,,Europe/Paris,,OIF, +OIF:SA:59:6741484,1,"Jean Grignoux",48.968326,2.374032,,1,,Europe/Paris,,OIF, +OIF:SA:59:6741486,1,"Etienne Dolet Pasteur",48.964626,2.365595,,1,,Europe/Paris,,OIF, +OIF:SA:59:6741488,1,"Pierre Curie/ Clinique de l'Estrée",48.95607,2.367623,,1,,Europe/Paris,,OIF, +OIF:SA:59:6741624,1,"Victor Hugo",49.006033,2.396816,,1,,Europe/Paris,,OIF, +OIF:SA:59:6741628,1,"Hôpital Charles Richet",49.002856,2.401972,,1,,Europe/Paris,,OIF, +OIF:SA:59:6741630,1,"Les Carreaux",48.9992,2.413884,,1,,Europe/Paris,,OIF, +OIF:SA:59:6741651,1,"Collège Lucie Aubrac",48.96013,2.352388,,1,,Europe/Paris,,OIF, +OIF:SA:59:6741653,1,"Gymnase Jesse Owens",48.958176,2.349474,,1,,Europe/Paris,,OIF, +OIF:SA:59:6741661,1,"Cité Grandcoing",48.965415,2.344398,,1,,Europe/Paris,,OIF, +OIF:SA:59:6741663,1,"Jean Missout",48.967415,2.34459,,1,,Europe/Paris,,OIF, +OIF:SA:59:6741665,1,"Robert Foulon",48.971481,2.347669,,1,,Europe/Paris,,OIF, +OIF:SA:59:6741670,1,"Rue Haute",48.975458,2.332127,,1,,Europe/Paris,,OIF, +OIF:SA:59:6741672,1,"Église",48.97579,2.326455,,1,,Europe/Paris,,OIF, +OIF:SA:59:6741674,1,"Poste",48.973993,2.323609,,1,,Europe/Paris,,OIF, +OIF:SA:59:6741677,1,"Stade",48.969234,2.320212,,1,,Europe/Paris,,OIF, +OIF:SA:59:6741681,1,"Les Coutures",48.969992,2.313277,,1,,Europe/Paris,,OIF, +OIF:SA:59:6741685,1,"Marché",48.972016,2.322982,,1,,Europe/Paris,,OIF, +OIF:SA:59:6742120,1,"Zone Artisanale du Moutier",48.969212,2.329603,,1,,Europe/Paris,,OIF, +OIF:SA:59:6742122,1,"Gallieni - Jonas",48.966031,2.327624,,1,,Europe/Paris,,OIF, +OIF:SA:59:6742124,1,"La Galathée",48.965227,2.32959,,1,,Europe/Paris,,OIF, +OIF:SA:59:6742126,1,"Louis Braille",48.963672,2.329194,,1,,Europe/Paris,,OIF, +OIF:SA:59:6742128,1,"Abel Fauveau",48.961776,2.326847,,1,,Europe/Paris,,OIF, +OIF:SA:59:6742131,1,"Flammarion",48.960827,2.322371,,1,,Europe/Paris,,OIF, +OIF:SA:59:6742132,1,"Chopin",48.962076,2.318631,,1,,Europe/Paris,,OIF, +OIF:SA:59:6742133,1,"Progrès",48.963383,2.316378,,1,,Europe/Paris,,OIF, +OIF:SA:59:6742137,1,"18 Juin 1940",48.969876,2.319856,,1,,Europe/Paris,,OIF, +OIF:SA:59:6742139,1,"Eugène Lamarre",48.971974,2.3166,,1,,Europe/Paris,,OIF, +OIF:SA:59:6742141,1,"Cimetière",48.975362,2.318285,,1,,Europe/Paris,,OIF, +OIF:SA:59:6742143,1,"Mathieu Chazotte",48.975255,2.321602,,1,,Europe/Paris,,OIF, +OIF:SA:59:6742150,1,"Mairie de Montmagny",48.974609,2.345929,,1,,Europe/Paris,,OIF, +OIF:SA:59:6742152,1,"Carrières / Bel Air",48.97357,2.350706,,1,,Europe/Paris,,OIF, +OIF:SA:59:6742154,1,"Suzanne Valadon",48.970132,2.355804,,1,,Europe/Paris,,OIF, +OIF:SA:59:6742156,1,"Rue de la République",48.968046,2.360881,,1,,Europe/Paris,,OIF, +OIF:SA:59:6742158,1,"Alcide d'Orbigny - de Gaullle",48.967124,2.36404,,1,,Europe/Paris,,OIF, +OIF:SA:59:6742166,1,"Alexandre Dumas",48.961167,2.31496,,1,,Europe/Paris,,OIF, +OIF:SA:59:6742167,1,"Les Presles",48.959694,2.317499,,1,,Europe/Paris,,OIF, +OIF:SA:59:6742168,1,"Saint-Exupéry",48.959083,2.320488,,1,,Europe/Paris,,OIF, +OIF:SA:59:6742170,1,"Village Artisanal",48.96923,2.330108,,1,,Europe/Paris,,OIF, +OIF:SA:59:6742171,1,"Place Jean Moulin",48.971073,2.330694,,1,,Europe/Paris,,OIF, +OIF:SA:59:6742261,1,"École Jean Jaurès",48.979132,2.387658,,1,,Europe/Paris,,OIF, +OIF:SA:59:6742264,1,"Haut du Roy",48.984576,2.390521,,1,,Europe/Paris,,OIF, +OIF:SA:59:6742265,1,"Les Perreux",48.988587,2.390074,,1,,Europe/Paris,,OIF, +OIF:SA:59:6742269,1,"Marcelin Berthelot / Victor Hugo",48.997013,2.381878,,1,,Europe/Paris,,OIF, +OIF:SA:59:6742279,1,"Rue de Paris",49.016683,2.38335,,1,,Europe/Paris,,OIF, +OIF:SA:59:6742281,1,"Général Leclerc",49.01853,2.382368,,1,,Europe/Paris,,OIF, +OIF:SA:59:6742283,1,"Route d'Ezanville",49.021245,2.37959,,1,,Europe/Paris,,OIF, +OIF:SA:59:6742284,1,"Rue de la Libération N0 20",49.022703,2.373716,,1,,Europe/Paris,,OIF, +OIF:SA:59:6742286,1,"Maréchal Foch",49.026524,2.366941,,1,,Europe/Paris,,OIF, +OIF:SA:59:6742289,1,"Place de la Libération",49.025937,2.359111,,1,,Europe/Paris,,OIF, +OIF:SA:59:6742291,1,"Place de la République",49.028656,2.356454,,1,,Europe/Paris,,OIF, +OIF:SA:59:6742293,1,"Mairie",49.031414,2.361541,,1,,Europe/Paris,,OIF, +OIF:SA:59:6742294,1,"Reims - Domont",49.032331,2.357808,,1,,Europe/Paris,,OIF, +OIF:SA:59:6742296,1,"Fleming",49.032844,2.353312,,1,,Europe/Paris,,OIF, +OIF:SA:59:6742298,1,"Les Bourguignons",49.034219,2.348632,,1,,Europe/Paris,,OIF, +OIF:SA:59:6742299,1,"Piscine",49.034076,2.343418,,1,,Europe/Paris,,OIF, +OIF:SA:59:6742301,1,"La Justice",49.037289,2.340705,,1,,Europe/Paris,,OIF, +OIF:SA:59:6742303,1,"Centre Commercial de Moisselles",49.041647,2.33871,,1,,Europe/Paris,,OIF, +OIF:SA:59:6742305,1,"Église",49.047777,2.336718,,1,,Europe/Paris,,OIF, +OIF:SA:59:6742307,1,"C.H.S.",49.051388,2.338505,,1,,Europe/Paris,,OIF, +OIF:SA:59:6742309,1,"Mairie",49.057898,2.345417,,1,,Europe/Paris,,OIF, +OIF:SA:59:6742311,1,"Rû de Vaux",49.033168,2.349,,1,,Europe/Paris,,OIF, +OIF:SA:59:6742312,1,"Maréchal Foch",49.026659,2.367269,,1,,Europe/Paris,,OIF, +OIF:SA:59:6742316,1,"Voltaire",49.000532,2.414463,,1,,Europe/Paris,,OIF, +OIF:SA:59:6742317,1,"Les Fleurs",49.003318,2.414392,,1,,Europe/Paris,,OIF, +OIF:SA:59:6742318,1,"Square Charles Perrault",49.004592,2.417003,,1,,Europe/Paris,,OIF, +OIF:SA:59:6742319,1,"Rue Scribe",49.001978,2.416042,,1,,Europe/Paris,,OIF, +OIF:SA:59:6742322,1,"Marche de Saint-Brice",49.000233,2.354988,,1,,Europe/Paris,,OIF, +OIF:SA:59:6742326,1,"Rue de la Marlière",48.995801,2.361583,,1,,Europe/Paris,,OIF, +OIF:SA:59:6742330,1,"Petits Clos",48.99136,2.369597,,1,,Europe/Paris,,OIF, +OIF:SA:59:6742333,1,"Place de Verdun",48.994341,2.378598,,1,,Europe/Paris,,OIF, +OIF:SA:59:6742336,1,"Lycée de la Tourelle",48.993337,2.38294,,1,,Europe/Paris,,OIF, +OIF:SA:59:6742341,1,"Mont de Gif",48.984765,2.399843,,1,,Europe/Paris,,OIF, +OIF:SA:59:6742343,1,"Lutetia Nova",48.984933,2.40469,,1,,Europe/Paris,,OIF, +OIF:SA:59:6742349,1,"Le Stade",48.991904,2.416921,,1,,Europe/Paris,,OIF, +OIF:SA:59:6742353,1,"Les Marronniers",48.995321,2.419569,,1,,Europe/Paris,,OIF, +OIF:SA:59:6742357,1,"Petits Clos - Rosiers",48.99154,2.36957,,1,,Europe/Paris,,OIF, +OIF:SA:59:6742360,1,"Jean Moulin",48.957283,2.393171,,1,,Europe/Paris,,OIF, +OIF:SA:59:6742361,1,"Limite des Départements",48.959685,2.399041,,1,,Europe/Paris,,OIF, +OIF:SA:59:6742363,1,"Antoine Demusois",48.963058,2.403375,,1,,Europe/Paris,,OIF, +OIF:SA:59:6742364,1,"Morillons - Varlin",48.963722,2.400971,,1,,Europe/Paris,,OIF, +OIF:SA:59:6742366,1,"Gaillards",48.96341,2.397422,,1,,Europe/Paris,,OIF, +OIF:SA:59:6742372,1,"Maternelle Effel",48.969093,2.399182,,1,,Europe/Paris,,OIF, +OIF:SA:59:6742376,1,"Victor Baltard",48.972194,2.396599,,1,,Europe/Paris,,OIF, +OIF:SA:59:6742390,1,"Rue du Fer à Cheval",48.991407,2.389521,,1,,Europe/Paris,,OIF, +OIF:SA:59:6742392,1,"Parc Industriel Centre",48.994443,2.391859,,1,,Europe/Paris,,OIF, +OIF:SA:59:6742394,1,"Rue d'Ableval - Parc Industriel",48.996308,2.391902,,1,,Europe/Paris,,OIF, +OIF:SA:59:6742396,1,"Parc Industriel Nord",48.996488,2.390092,,1,,Europe/Paris,,OIF, +OIF:SA:59:6742398,1,"Tissonvilliers",48.999153,2.389528,,1,,Europe/Paris,,OIF, +OIF:SA:59:6742400,1,"Avenue des Érables",49.00194,2.38695,,1,,Europe/Paris,,OIF, +OIF:SA:59:6742402,1,"La Cerisaie",49.005132,2.388733,,1,,Europe/Paris,,OIF, +OIF:SA:59:6742404,1,"Place de la Tolinette",49.004265,2.39191,,1,,Europe/Paris,,OIF, +OIF:SA:59:6742406,1,"Jean Bullant",49.003954,2.396531,,1,,Europe/Paris,,OIF, +OIF:SA:59:6742408,1,"Poste",49.004531,2.398733,,1,,Europe/Paris,,OIF, +OIF:SA:59:6742412,1,"Stade",49.001656,2.406085,,1,,Europe/Paris,,OIF, +OIF:SA:59:6742418,1,"Limite des Départements",48.959419,2.398495,,1,,Europe/Paris,,OIF, +OIF:SA:59:6742438,1,"Mairie Château",49.018577,2.378946,,1,,Europe/Paris,,OIF, +OIF:SA:59:6748587,1,"ZAC Landy Nord",48.920548,2.354456,,1,,Europe/Paris,,OIF, +OIF:SA:59:6748592,1,"Landy / Fruitiers",48.915331,2.354223,,1,,Europe/Paris,,OIF, +OIF:SA:59:6748594,1,"Landy / Pont de Soissons",48.915442,2.36014,,1,,Europe/Paris,,OIF, +OIF:SA:59:6748598,1,"Avenue du Stade de France",48.920384,2.361643,,1,,Europe/Paris,,OIF, +OIF:SA:59:6756007,1,"Clément Perriere",48.807692,2.285551,,1,,Europe/Paris,,OIF, +OIF:SA:59:6783399,1,"Gaston Noreux",48.963721,2.35284,,1,,Europe/Paris,,OIF, +OIF:SA:59:6783401,1,"Chemin des Roses",48.964085,2.348827,,1,,Europe/Paris,,OIF, +OIF:SA:59:6783403,1,"Jean Jaurès - Salengro",48.964485,2.344985,,1,,Europe/Paris,,OIF, +OIF:SA:59:6783404,1,"Église",48.963331,2.343968,,1,,Europe/Paris,,OIF, +OIF:SA:59:6783406,1,"Edouard Vaillant",48.961376,2.345613,,1,,Europe/Paris,,OIF, +OIF:SA:59:6783410,1,"Université - Paris 13",48.956528,2.339089,,1,,Europe/Paris,,OIF, +OIF:SA:59:6783431,1,"Place Rene Clair",48.953649,2.311285,,1,,Europe/Paris,,OIF, +OIF:SA:59:6783443,1,"Saint-Ferdinand",48.954922,2.286742,,1,,Europe/Paris,,OIF, +OIF:SA:59:6783445,1,"Commandant Doué",48.954264,2.28211,,1,,Europe/Paris,,OIF, +OIF:SA:59:6783447,1,"Belvédère",48.951962,2.278237,,1,,Europe/Paris,,OIF, +OIF:SA:59:6783449,1,"Gaston Monmousseau",48.950675,2.274125,,1,,Europe/Paris,,OIF, +OIF:SA:59:6783451,1,"Noblet",48.949886,2.270571,,1,,Europe/Paris,,OIF, +OIF:SA:59:6783453,1,"Béringier",48.949315,2.268662,,1,,Europe/Paris,,OIF, +OIF:SA:59:6783455,1,"Jules Ferry",48.949026,2.266172,,1,,Europe/Paris,,OIF, +OIF:SA:59:6810173,1,"École des Sports - Île de Puteaux",48.87439,2.24243,,1,,Europe/Paris,,OIF, +OIF:SA:59:6810175,1,"Île de Puteaux",48.878463,2.245094,,1,,Europe/Paris,,OIF, +OIF:SA:59:6810199,1,"Montaigne",48.885828,2.239043,,1,,Europe/Paris,,OIF, +OIF:SA:59:6810200,1,"Mairie / Anatole France",48.884228,2.239292,,1,,Europe/Paris,,OIF, +OIF:SA:59:6810201,1,"Collin",48.882315,2.24014,,1,,Europe/Paris,,OIF, +OIF:SA:59:6810202,1,"Godefroy / Quai de Dion Bouton",48.880098,2.244178,,1,,Europe/Paris,,OIF, +OIF:SA:59:6810204,1,"Parc Départemental",48.876737,2.244743,,1,,Europe/Paris,,OIF, +OIF:SA:59:6830733,1,"Place du Vel d'Hiv",48.874962,2.415372,,1,,Europe/Paris,,OIF, +OIF:SA:59:6830734,1,"Les Primevères",48.876725,2.4144,,1,,Europe/Paris,,OIF, +OIF:SA:59:6830736,1,"Commissariat",48.882139,2.414974,,1,,Europe/Paris,,OIF, +OIF:SA:59:6830737,1,"Rue Marcelle",48.884168,2.417743,,1,,Europe/Paris,,OIF, +OIF:SA:59:6830738,1,"Rue du Président Schuman",48.885927,2.421126,,1,,Europe/Paris,,OIF, +OIF:SA:59:6830739,1,"Centre de Santé Bernard Lafay",48.883942,2.420659,,1,,Europe/Paris,,OIF, +OIF:SA:59:6830740,1,"Hortensias",48.882279,2.421038,,1,,Europe/Paris,,OIF, +OIF:SA:59:6830745,1,"Gagarine",48.882796,2.426054,,1,,Europe/Paris,,OIF, +OIF:SA:59:6830746,1,"Floréal",48.88,2.42733,,1,,Europe/Paris,,OIF, +OIF:SA:59:6830747,1,"Croix de l'Épinette",48.878709,2.423649,,1,,Europe/Paris,,OIF, +OIF:SA:59:6830748,1,"Sentes-Croix de l'Épinette",48.880497,2.423679,,1,,Europe/Paris,,OIF, +OIF:SA:59:6830749,1,"Rue du Centre",48.878092,2.419369,,1,,Europe/Paris,,OIF, +OIF:SA:59:6830750,1,"Passage Ronsard",48.877285,2.415852,,1,,Europe/Paris,,OIF, +OIF:SA:59:6830817,1,"Collège Henri Wallon",48.967278,2.398198,,1,,Europe/Paris,,OIF, +OIF:SA:59:6861947,1,"Cimetière de Wissous",48.707505,2.311121,,1,,Europe/Paris,,OIF, +OIF:SA:59:6861949,1,"Collège",48.705869,2.313791,,1,,Europe/Paris,,OIF, +OIF:SA:59:6861951,1,"Beauregard",48.704562,2.316358,,1,,Europe/Paris,,OIF, +OIF:SA:59:6869561,1,"République / Division Leclerc",48.907548,2.424153,,1,,Europe/Paris,,OIF, +OIF:SA:59:6869584,1,"Place de l'Europe",48.909468,2.471453,,1,,Europe/Paris,,OIF, +OIF:SA:59:6869590,1,"Rabelais",48.917628,2.484818,,1,,Europe/Paris,,OIF, +OIF:SA:59:6869596,1,"Robespierre / Edouard Vaillant",48.910582,2.468,,1,,Europe/Paris,,OIF, +OIF:SA:59:6869685,1,"Louise Michel",48.914795,2.495186,,1,,Europe/Paris,,OIF, +OIF:SA:59:6869688,1,"ZI de la Poudrette",48.914899,2.50137,,1,,Europe/Paris,,OIF, +OIF:SA:59:6869690,1,"Colonel Fabien",48.913221,2.505844,,1,,Europe/Paris,,OIF, +OIF:SA:59:6869692,1,"Victor Hugo / Jules Guesde",48.910773,2.511774,,1,,Europe/Paris,,OIF, +OIF:SA:59:6869695,1,"Gutenberg",48.912956,2.518428,,1,,Europe/Paris,,OIF, +OIF:SA:59:6869699,1,"Jean Jaurès",48.920515,2.526228,,1,,Europe/Paris,,OIF, +OIF:SA:59:6869701,1,"Collèges",48.922155,2.531785,,1,,Europe/Paris,,OIF, +OIF:SA:59:6869703,1,"François Villon",48.92095,2.538203,,1,,Europe/Paris,,OIF, +OIF:SA:59:6869707,1,"Cimetière",48.91572,2.499607,,1,,Europe/Paris,,OIF, +OIF:SA:59:6869708,1,"Lycée Claude Nicolas Ledoux",48.914038,2.49158,,1,,Europe/Paris,,OIF, +OIF:SA:59:6869719,1,"Les Courtillières",48.913332,2.416889,,1,,Europe/Paris,,OIF, +OIF:SA:59:6869720,1,"Cité du Pont de Pierre",48.910389,2.416128,,1,,Europe/Paris,,OIF, +OIF:SA:59:6869789,1,"Rue des Peupliers",48.905703,2.464992,,1,,Europe/Paris,,OIF, +OIF:SA:59:6869806,1,"Etienne Dolet",48.910728,2.474272,,1,,Europe/Paris,,OIF, +OIF:SA:59:6951514,1,"Les Paréchaux",48.879117,2.222296,,1,,Europe/Paris,,OIF, +OIF:SA:59:6951515,1,"Les Chênes",48.88017,2.22322,,1,,Europe/Paris,,OIF, +OIF:SA:59:6951516,1,"Danton / Cimetière Voltaire",48.880721,2.226367,,1,,Europe/Paris,,OIF, +OIF:SA:59:6951517,1,"Salengro / Cimetière Voltaire",48.879762,2.228985,,1,,Europe/Paris,,OIF, +OIF:SA:59:6951519,1,"Lycée Paul Langevin.",48.87822,2.223729,,1,,Europe/Paris,,OIF, +OIF:SA:59:6951523,1,"Mairie de Suresnes.",48.870761,2.224624,,1,,Europe/Paris,,OIF, +OIF:SA:59:6951524,1,"Mairie / Desbassayns",48.869998,2.225055,,1,,Europe/Paris,,OIF, +OIF:SA:59:6951526,1,"Place de Stalingrad",48.863817,2.201488,,1,,Europe/Paris,,OIF, +OIF:SA:59:6951527,1,"Emmanuel Kant",48.861303,2.20366,,1,,Europe/Paris,,OIF, +OIF:SA:59:6951528,1,"Masaryk",48.86217,2.207581,,1,,Europe/Paris,,OIF, +OIF:SA:59:6951530,1,"Place de la Paix",48.865044,2.205585,,1,,Europe/Paris,,OIF, +OIF:SA:59:6951531,1,"Place de Stalingrad.",48.863925,2.201542,,1,,Europe/Paris,,OIF, +OIF:SA:59:6951536,1,"Rouget de l'Isle / Ratrait",48.876824,2.230613,,1,,Europe/Paris,,OIF, +OIF:SA:59:6951537,1,"Rouget de l'Isle / Bas Rogers",48.879577,2.233264,,1,,Europe/Paris,,OIF, +OIF:SA:59:6951538,1,"93, Rue Gambetta",48.878549,2.230282,,1,,Europe/Paris,,OIF, +OIF:SA:59:6951540,1,"Carnot",48.87309,2.225974,,1,,Europe/Paris,,OIF, +OIF:SA:59:6951545,1,"Jean-Jacques Rousseau",48.864727,2.22072,,1,,Europe/Paris,,OIF, +OIF:SA:59:6951546,1,"Fernand Forest",48.862075,2.219637,,1,,Europe/Paris,,OIF, +OIF:SA:59:6951547,1,"Rue des Couvaloux",48.861201,2.21765,,1,,Europe/Paris,,OIF, +OIF:SA:59:6951548,1,"République / Val d'Or",48.860207,2.22167,,1,,Europe/Paris,,OIF, +OIF:SA:59:6951549,1,"Monge",48.861708,2.222103,,1,,Europe/Paris,,OIF, +OIF:SA:59:6951550,1,"Place de la République",48.863642,2.222943,,1,,Europe/Paris,,OIF, +OIF:SA:59:6951551,1,"Eugène Sue",48.865755,2.224137,,1,,Europe/Paris,,OIF, +OIF:SA:59:6961981,1,"Voltaire - Montreuil",48.85093,2.391612,,1,,Europe/Paris,,OIF, +OIF:SA:59:7013398,1,"Rene Coty",48.82735,2.335742,,1,,Europe/Paris,,OIF, +OIF:SA:59:7013406,1,"Les Plantes",48.829358,2.322564,,1,,Europe/Paris,,OIF, +OIF:SA:59:7013414,1,"Labrouste",48.833845,2.308207,,1,,Europe/Paris,,OIF, +OIF:SA:59:7013428,1,"Convention / Saint-Charles",48.843606,2.282397,,1,,Europe/Paris,,OIF, +OIF:SA:59:7013437,1,"Jouvenet",48.842949,2.264656,,1,,Europe/Paris,,OIF, +OIF:SA:59:7013442,1,"Porte de Saint-Cloud / Michel Ange",48.838756,2.257581,,1,,Europe/Paris,,OIF, +OIF:SA:59:7058154,1,"Juste Héras",48.950454,2.443728,,1,,Europe/Paris,,OIF, +OIF:SA:59:7069306,1,"Calvaire / Mairie Annexe",48.879655,2.207756,,1,,Europe/Paris,,OIF, +OIF:SA:59:7069310,1,"Pierre Sergent",48.883991,2.203302,,1,,Europe/Paris,,OIF, +OIF:SA:59:7069314,1,"Les Venets",48.889828,2.203492,,1,,Europe/Paris,,OIF, +OIF:SA:59:7069317,1,"Rue des Anciennes Mairies",48.89291,2.198154,,1,,Europe/Paris,,OIF, +OIF:SA:59:7069320,1,"Paul Bert",48.896814,2.201225,,1,,Europe/Paris,,OIF, +OIF:SA:59:7069324,1,"Berthelot",48.895891,2.208042,,1,,Europe/Paris,,OIF, +OIF:SA:59:7069325,1,"Honoré de Balzac / Émile Zola",48.894545,2.209995,,1,,Europe/Paris,,OIF, +OIF:SA:59:7069329,1,"Marcel Paul - Préfecture",48.896233,2.21761,,1,,Europe/Paris,,OIF, +OIF:SA:59:7069333,1,"Marcel Paul",48.896728,2.218236,,1,,Europe/Paris,,OIF, +OIF:SA:59:7069337,1,"Rochegude",48.889581,2.199349,,1,,Europe/Paris,,OIF, +OIF:SA:59:7069353,1,"Émile Zola",48.827791,2.238547,,1,,Europe/Paris,,OIF, +OIF:SA:59:7069378,1,"Trivaux / Vertugadins / Lycée",48.803488,2.23409,,1,,Europe/Paris,,OIF, +OIF:SA:59:7069380,1,"Cimetière de Trivaux",48.799677,2.233546,,1,,Europe/Paris,,OIF, +OIF:SA:59:7069382,1,"Tapis Vert",48.788946,2.234173,,1,,Europe/Paris,,OIF, +OIF:SA:59:7069388,1,"Centre Commercial du Moulin",48.789988,2.223812,,1,,Europe/Paris,,OIF, +OIF:SA:59:7069396,1,"Église / Avenue de Celle",48.787291,2.228042,,1,,Europe/Paris,,OIF, +OIF:SA:59:7069417,1,"Rue Henri Farman",48.833178,2.27004,,1,,Europe/Paris,,OIF, +OIF:SA:59:7069423,1,"Esplanade du Foncet",48.82702,2.26039,,1,,Europe/Paris,,OIF, +OIF:SA:59:7069425,1,"Passerelle de l'Europe",48.824848,2.257405,,1,,Europe/Paris,,OIF, +OIF:SA:59:7069427,1,"Médiathèque des Chartreux",48.82289,2.253658,,1,,Europe/Paris,,OIF, +OIF:SA:59:7069433,1,"Pierre Lefaucheux",48.824598,2.241282,,1,,Europe/Paris,,OIF, +OIF:SA:59:7069435,1,"Parc de Billancourt",48.826307,2.237175,,1,,Europe/Paris,,OIF, +OIF:SA:59:7069437,1,"Cours de l'Île Séguin",48.827954,2.235048,,1,,Europe/Paris,,OIF, +OIF:SA:59:7069439,1,"Yves Kermen",48.829819,2.235582,,1,,Europe/Paris,,OIF, +OIF:SA:59:7069445,1,"Square des Frères Farman",48.836355,2.232336,,1,,Europe/Paris,,OIF, +OIF:SA:59:7069455,1,"Église de Boulogne",48.845778,2.236804,,1,,Europe/Paris,,OIF, +OIF:SA:5:40001,1,"Grand Rue / Mairie",49.134544,2.356802,,1,,Europe/Paris,,OIF, +OIF:SA:5:40003,1,"La Croix Boissiée",49.134029,2.360294,,1,,Europe/Paris,,OIF, +OIF:SA:5:40005,1,"Saint-Laurent",49.135421,2.351852,,1,,Europe/Paris,,OIF, +OIF:SA:5:40009,1,"Mairie",49.097963,2.466232,,1,,Europe/Paris,,OIF, +OIF:SA:5:40011,1,"Place du Souvenir",49.088259,2.371815,,1,,Europe/Paris,,OIF, +OIF:SA:5:40013,1,"Tabac",49.090086,2.369051,,1,,Europe/Paris,,OIF, +OIF:SA:5:40015,1,"Afpa",49.184777,2.304488,,1,,Europe/Paris,,OIF, +OIF:SA:5:40017,1,"Bel Air",49.15863,2.289832,,1,,Europe/Paris,,OIF, +OIF:SA:5:40019,1,"La Bouville",49.160686,2.296441,,1,,Europe/Paris,,OIF, +OIF:SA:5:40021,1,"Mairie",49.161092,2.301818,,1,,Europe/Paris,,OIF, +OIF:SA:5:40023,1,"Peupleraie",49.15971,2.308313,,1,,Europe/Paris,,OIF, +OIF:SA:5:40027,1,"Petits Pavés",49.056645,2.250779,,1,,Europe/Paris,,OIF, +OIF:SA:5:40028,1,"Place de la Pompe",49.053905,2.252288,,1,,Europe/Paris,,OIF, +OIF:SA:5:40029,1,"Carrefour Bouffémont",49.058322,2.295789,,1,,Europe/Paris,,OIF, +OIF:SA:5:40030,1,"École H Boiscommun",49.064578,2.299921,,1,,Europe/Paris,,OIF, +OIF:SA:5:40032,1,"École les Clottins",49.065687,2.31672,,1,,Europe/Paris,,OIF, +OIF:SA:5:40033,1,"Église",49.063167,2.298726,,1,,Europe/Paris,,OIF, +OIF:SA:5:40035,1,"Le Néflier",49.060448,2.297586,,1,,Europe/Paris,,OIF, +OIF:SA:5:40036,1,"ZAE Ponts de Baillet",49.064008,2.323394,,1,,Europe/Paris,,OIF, +OIF:SA:5:40039,1,"Blum Senlis",49.144351,2.295871,,1,,Europe/Paris,,OIF, +OIF:SA:5:40040,1,"Boyenval",49.143112,2.300474,,1,,Europe/Paris,,OIF, +OIF:SA:5:40044,1,"Gendarmerie/Collège",49.137773,2.282963,,1,,Europe/Paris,,OIF, +OIF:SA:5:40046,1,"Daubigny",49.144182,2.304048,,1,,Europe/Paris,,OIF, +OIF:SA:5:40048,1,"Duquesnel",49.139662,2.278976,,1,,Europe/Paris,,OIF, +OIF:SA:5:40050,1,"Les Logettes",49.140325,2.296628,,1,,Europe/Paris,,OIF, +OIF:SA:5:40052,1,"Lycée Evariste Gallois",49.145451,2.295069,,1,,Europe/Paris,,OIF, +OIF:SA:5:40053,1,"Mairie",49.141934,2.284718,,1,,Europe/Paris,,OIF, +OIF:SA:5:40057,1,"Hôpital les Oliviers",49.145864,2.311443,,1,,Europe/Paris,,OIF, +OIF:SA:5:40061,1,"Piscine",49.145585,2.287235,,1,,Europe/Paris,,OIF, +OIF:SA:5:40063,1,"Roussel",49.138953,2.291048,,1,,Europe/Paris,,OIF, +OIF:SA:5:40065,1,"Sécurité Sociale",49.141121,2.285055,,1,,Europe/Paris,,OIF, +OIF:SA:5:40067,1,"Rue de Senlis",49.14481,2.298487,,1,,Europe/Paris,,OIF, +OIF:SA:5:40069,1,"Souvenir",49.14709,2.29202,,1,,Europe/Paris,,OIF, +OIF:SA:5:40071,1,"Tilleuls",49.142689,2.296626,,1,,Europe/Paris,,OIF, +OIF:SA:5:40073,1,"Vang Gogh",49.145431,2.302363,,1,,Europe/Paris,,OIF, +OIF:SA:5:40075,1,"Verdun",49.143185,2.303213,,1,,Europe/Paris,,OIF, +OIF:SA:5:40088,1,"Bienvenue",49.158905,2.336186,,1,,Europe/Paris,,OIF, +OIF:SA:5:40090,1,"Rue de Boran",49.159933,2.338597,,1,,Europe/Paris,,OIF, +OIF:SA:5:40091,1,"Centre Commercial",49.157808,2.32426,,1,,Europe/Paris,,OIF, +OIF:SA:5:40092,1,"Croix Dorée",49.157628,2.321199,,1,,Europe/Paris,,OIF, +OIF:SA:5:40095,1,"Centre Ville",49.156631,2.328535,,1,,Europe/Paris,,OIF, +OIF:SA:5:40098,1,"Mairie",49.157539,2.330014,,1,,Europe/Paris,,OIF, +OIF:SA:5:40103,1,"Paul Verlaine",49.157705,2.33335,,1,,Europe/Paris,,OIF, +OIF:SA:5:40107,1,"Mairie",49.066419,2.457188,,1,,Europe/Paris,,OIF, +OIF:SA:5:40111,1,"Beau Soleil",49.13212,2.224034,,1,,Europe/Paris,,OIF, +OIF:SA:5:40114,1,"École du Centre",49.137161,2.239799,,1,,Europe/Paris,,OIF, +OIF:SA:5:40116,1,"Rue de Jouy",49.137045,2.225092,,1,,Europe/Paris,,OIF, +OIF:SA:5:40117,1,"Mairie",49.133996,2.231274,,1,,Europe/Paris,,OIF, +OIF:SA:5:40130,1,"Le Gué",49.079258,2.443221,,1,,Europe/Paris,,OIF, +OIF:SA:5:40132,1,"Carrefour",49.097039,2.447325,,1,,Europe/Paris,,OIF, +OIF:SA:5:40136,1,"Grands Champs",49.130328,2.265965,,1,,Europe/Paris,,OIF, +OIF:SA:5:40138,1,"Les Lilas",49.131346,2.269263,,1,,Europe/Paris,,OIF, +OIF:SA:5:40140,1,"Près de Mours",49.133297,2.27141,,1,,Europe/Paris,,OIF, +OIF:SA:5:40147,1,"Église",49.07057,2.309203,,1,,Europe/Paris,,OIF, +OIF:SA:5:40149,1,"Maison d'Arcole",49.06917,2.299849,,1,,Europe/Paris,,OIF, +OIF:SA:5:40152,1,"Sente de la Fontaine",49.070074,2.305552,,1,,Europe/Paris,,OIF, +OIF:SA:5:40156,1,"Les Bourdinières",49.141154,2.328421,,1,,Europe/Paris,,OIF, +OIF:SA:5:40158,1,"Valdempierre",49.139236,2.332739,,1,,Europe/Paris,,OIF, +OIF:SA:5:40160,1,"Avenue de Paris",49.128095,2.292188,,1,,Europe/Paris,,OIF, +OIF:SA:5:40162,1,"Mairie",49.129522,2.289544,,1,,Europe/Paris,,OIF, +OIF:SA:5:40166,1,"CAT",49.143299,2.273521,,1,,Europe/Paris,,OIF, +OIF:SA:5:40167,1,"Jean Catelas",49.157542,2.286552,,1,,Europe/Paris,,OIF, +OIF:SA:5:40169,1,"Centre Commercial",49.144866,2.281278,,1,,Europe/Paris,,OIF, +OIF:SA:5:40171,1,"Collège Georges Brassens",49.154306,2.27411,,1,,Europe/Paris,,OIF, +OIF:SA:5:40174,1,"Colonel Fabien",49.155498,2.278396,,1,,Europe/Paris,,OIF, +OIF:SA:5:40178,1,"Foyer",49.157248,2.282655,,1,,Europe/Paris,,OIF, +OIF:SA:5:40180,1,"Mairie",49.151593,2.276531,,1,,Europe/Paris,,OIF, +OIF:SA:5:40182,1,"Paul Éluard",49.149381,2.272267,,1,,Europe/Paris,,OIF, +OIF:SA:5:40192,1,"Stade",49.147405,2.294232,,1,,Europe/Paris,,OIF, +OIF:SA:5:40193,1,"La Soie",49.147003,2.270612,,1,,Europe/Paris,,OIF, +OIF:SA:5:40196,1,"ZAE Chemin Vert",49.154852,2.290123,,1,,Europe/Paris,,OIF, +OIF:SA:5:40222,1,"Zone Industrielle",49.142753,2.255094,,1,,Europe/Paris,,OIF, +OIF:SA:5:40224,1,"Émile Zola",49.145711,2.258102,,1,,Europe/Paris,,OIF, +OIF:SA:5:40226,1,"Les Tilleuls",49.096373,2.453092,,1,,Europe/Paris,,OIF, +OIF:SA:5:40227,1,"Mairie Annexe",49.068042,2.476947,,1,,Europe/Paris,,OIF, +OIF:SA:5:40233,1,"Centre Médical",49.105217,2.337152,,1,,Europe/Paris,,OIF, +OIF:SA:5:40237,1,"Lacroix",49.1066,2.350927,,1,,Europe/Paris,,OIF, +OIF:SA:5:40239,1,"Mairie",49.108487,2.34795,,1,,Europe/Paris,,OIF, +OIF:SA:5:40241,1,"Prés de Carnelle",49.104763,2.341723,,1,,Europe/Paris,,OIF, +OIF:SA:5:40244,1,"Roger Salengro",49.104741,2.34487,,1,,Europe/Paris,,OIF, +OIF:SA:5:40245,1,"La Tour",49.1094,2.343879,,1,,Europe/Paris,,OIF, +OIF:SA:5:40251,1,"Beau Jay",49.078722,2.353074,,1,,Europe/Paris,,OIF, +OIF:SA:5:40254,1,"Église",49.076569,2.356964,,1,,Europe/Paris,,OIF, +OIF:SA:5:40269,1,"Mairie",49.072298,2.389911,,1,,Europe/Paris,,OIF, +OIF:SA:5:40273,1,"Collège Blaise Pascal",49.124528,2.367923,,1,,Europe/Paris,,OIF, +OIF:SA:5:40278,1,"Fréchot",49.130028,2.369986,,1,,Europe/Paris,,OIF, +OIF:SA:5:40295,1,"Les Fontenelles",49.106483,2.352521,,1,,Europe/Paris,,OIF, +OIF:SA:5:40296,1,"Centre Ville",49.026172,2.32376,,1,,Europe/Paris,,OIF, +OIF:SA:5:40302,1,"Gendarmerie",49.067687,2.317116,,1,,Europe/Paris,,OIF, +OIF:SA:5:40329,1,"La Halle",49.113436,2.422195,,1,,Europe/Paris,,OIF, +OIF:SA:5:40341,1,"Saint-Laurent",49.143915,2.295625,,1,,Europe/Paris,,OIF, +OIF:SA:5:40391,1,"Stade Travaux",49.147495,2.295116,,1,,Europe/Paris,,OIF, +OIF:SA:5:40392,1,"Les Menhirs",49.13794,2.247912,,1,,Europe/Paris,,OIF, +OIF:SA:5:40394,1,"Gantiers",49.111238,2.422582,,1,,Europe/Paris,,OIF, +OIF:SA:5:40396,1,"Market",49.1186,2.425633,,1,,Europe/Paris,,OIF, +OIF:SA:5:40398,1,"Place de la République",49.150168,2.274841,,1,,Europe/Paris,,OIF, +OIF:SA:5:40400,1,"Oise",49.149101,2.288759,,1,,Europe/Paris,,OIF, +OIF:SA:5:40402,1,"Parc Robespierre",49.149967,2.268259,,1,,Europe/Paris,,OIF, +OIF:SA:5:40404,1,"Etienne Dolet",49.153114,2.271591,,1,,Europe/Paris,,OIF, +OIF:SA:5:40406,1,"Vieux Pont",49.146292,2.285193,,1,,Europe/Paris,,OIF, +OIF:SA:5:40408,1,"Félix Millet",49.1581,2.262186,,1,,Europe/Paris,,OIF, +OIF:SA:5:40410,1,"Lucien Royer",49.155057,2.268211,,1,,Europe/Paris,,OIF, +OIF:SA:5:40412,1,"Thorez",49.151267,2.270682,,1,,Europe/Paris,,OIF, +OIF:SA:5:40414,1,"Jacques Touati",49.151492,2.291873,,1,,Europe/Paris,,OIF, +OIF:SA:60:1,1,"La Berchère",49.009784,2.310486,,1,,Europe/Paris,,OIF, +OIF:SA:60:10,1,"Mairie",49.004397,2.297895,,1,,Europe/Paris,,OIF, +OIF:SA:60:1019,1,"Bouquinvilles",48.977088,2.276728,,1,,Europe/Paris,,OIF, +OIF:SA:60:1029,1,"Zone Industrielle des Cures",48.997904,2.296386,,1,,Europe/Paris,,OIF, +OIF:SA:60:1052,1,"Centre Commercial",48.959006,2.313173,,1,,Europe/Paris,,OIF, +OIF:SA:60:1054,1,"Alexandre Dumas",48.961132,2.315212,,1,,Europe/Paris,,OIF, +OIF:SA:60:1056,1,"Les Econdeaux",48.961113,2.313336,,1,,Europe/Paris,,OIF, +OIF:SA:60:1060,1,"Poiriers",48.967568,2.339087,,1,,Europe/Paris,,OIF, +OIF:SA:60:11,1,"Parc des Sources",49.001269,2.310975,,1,,Europe/Paris,,OIF, +OIF:SA:60:118,1,"Casanova",48.961841,2.275053,,1,,Europe/Paris,,OIF, +OIF:SA:60:120,1,"Jolival",48.962445,2.270494,,1,,Europe/Paris,,OIF, +OIF:SA:60:172,1,"Route de Saint-Gratien",48.960931,2.27979,,1,,Europe/Paris,,OIF, +OIF:SA:60:2002,1,"Collège Copernic",48.978615,2.350379,,1,,Europe/Paris,,OIF, +OIF:SA:60:2006,1,"République",48.985152,2.357784,,1,,Europe/Paris,,OIF, +OIF:SA:60:2008,1,"Rue de Sarcelles",48.984252,2.365956,,1,,Europe/Paris,,OIF, +OIF:SA:60:2014,1,"Place de la Barre",48.967146,2.317356,,1,,Europe/Paris,,OIF, +OIF:SA:60:2020,1,"Ormesson",48.960291,2.307118,,1,,Europe/Paris,,OIF, +OIF:SA:60:2022,1,"Limite des Départements",48.965568,2.300344,,1,,Europe/Paris,,OIF, +OIF:SA:60:2029,1,"Les Coutures",48.969925,2.313357,,1,,Europe/Paris,,OIF, +OIF:SA:60:2035,1,"Pont Tln",48.959752,2.328762,,1,,Europe/Paris,,OIF, +OIF:SA:60:2039,1,"Jean Jaurès - Henri Wallon",48.957049,2.320996,,1,,Europe/Paris,,OIF, +OIF:SA:60:2055,1,"Nungesser et Coli",48.965299,2.293643,,1,,Europe/Paris,,OIF, +OIF:SA:60:2063,1,"Général de Gaulle",48.968878,2.286129,,1,,Europe/Paris,,OIF, +OIF:SA:60:2076,1,"Mozart Malesherbe",48.987997,2.378668,,1,,Europe/Paris,,OIF, +OIF:SA:60:2087,1,"Alouettes",48.97846,2.281748,,1,,Europe/Paris,,OIF, +OIF:SA:60:2102,1,"Clos Giffier",48.995939,2.306368,,1,,Europe/Paris,,OIF, +OIF:SA:60:2104,1,"Espace Nautique la Vague",48.997196,2.303539,,1,,Europe/Paris,,OIF, +OIF:SA:60:2106,1,"E.Dobler",48.991339,2.29771,,1,,Europe/Paris,,OIF, +OIF:SA:60:2109,1,"Le Boisquillon",48.990977,2.299521,,1,,Europe/Paris,,OIF, +OIF:SA:60:2110,1,"Les Noëls",48.981481,2.295686,,1,,Europe/Paris,,OIF, +OIF:SA:60:2111,1,"Dr Schweitzer",48.995163,2.302486,,1,,Europe/Paris,,OIF, +OIF:SA:60:213,1,"Volembert",48.958543,2.259472,,1,,Europe/Paris,,OIF, +OIF:SA:60:27,1,"Bellevue",48.960397,2.264225,,1,,Europe/Paris,,OIF, +OIF:SA:60:270,1,"Croix Blanche",49.016762,2.313044,,1,,Europe/Paris,,OIF, +OIF:SA:60:277,1,"Cimetière",49.022834,2.323692,,1,,Europe/Paris,,OIF, +OIF:SA:60:280,1,"Clinique",49.024964,2.325912,,1,,Europe/Paris,,OIF, +OIF:SA:60:3,1,"Château Gaillard",49.003999,2.304711,,1,,Europe/Paris,,OIF, +OIF:SA:60:307,1,"Lycée",49.031461,2.342167,,1,,Europe/Paris,,OIF, +OIF:SA:60:309,1,"Mairie",49.027709,2.327258,,1,,Europe/Paris,,OIF, +OIF:SA:60:314,1,"Monument",49.029327,2.329683,,1,,Europe/Paris,,OIF, +OIF:SA:60:322,1,"Poste",49.030962,2.334814,,1,,Europe/Paris,,OIF, +OIF:SA:60:326,1,"Robinson",49.018425,2.315878,,1,,Europe/Paris,,OIF, +OIF:SA:60:334,1,"Bois Jacques",48.992292,2.285074,,1,,Europe/Paris,,OIF, +OIF:SA:60:336,1,"Mairie",48.99109,2.278541,,1,,Europe/Paris,,OIF, +OIF:SA:60:338,1,"Jeanne d'Arc",48.989587,2.275634,,1,,Europe/Paris,,OIF, +OIF:SA:60:340,1,"Chaussée Jules César",48.985259,2.272718,,1,,Europe/Paris,,OIF, +OIF:SA:60:342,1,"Mont d'Eaubonne",48.99139,2.287813,,1,,Europe/Paris,,OIF, +OIF:SA:60:344,1,"La Sablière",48.987443,2.273664,,1,,Europe/Paris,,OIF, +OIF:SA:60:346,1,"Tilleuls",48.992901,2.280854,,1,,Europe/Paris,,OIF, +OIF:SA:60:348,1,"Bois Bleu",49.030517,2.371836,,1,,Europe/Paris,,OIF, +OIF:SA:60:350,1,"Collège J. Bullant",49.028815,2.369422,,1,,Europe/Paris,,OIF, +OIF:SA:60:354,1,"Écouen Maillol",49.02493,2.37876,,1,,Europe/Paris,,OIF, +OIF:SA:60:355,1,"Monet",49.028746,2.373666,,1,,Europe/Paris,,OIF, +OIF:SA:60:357,1,"P. Serres",49.026958,2.374942,,1,,Europe/Paris,,OIF, +OIF:SA:60:359,1,"Amélie",48.978763,2.300808,,1,,Europe/Paris,,OIF, +OIF:SA:60:362,1,"Beauséjour",48.975628,2.300831,,1,,Europe/Paris,,OIF, +OIF:SA:60:367,1,"Avenue Carlier",48.978231,2.304945,,1,,Europe/Paris,,OIF, +OIF:SA:60:370,1,"Collège Georges Pompidou",48.965047,2.303944,,1,,Europe/Paris,,OIF, +OIF:SA:60:372,1,"Creche",48.978683,2.298276,,1,,Europe/Paris,,OIF, +OIF:SA:60:374,1,"Descartes",48.980264,2.298316,,1,,Europe/Paris,,OIF, +OIF:SA:60:380,1,"Général Leclerc",48.982172,2.300601,,1,,Europe/Paris,,OIF, +OIF:SA:60:384,1,"Kellermann",48.981341,2.292826,,1,,Europe/Paris,,OIF, +OIF:SA:60:386,1,"Lycée d'Enghien",48.974076,2.294839,,1,,Europe/Paris,,OIF, +OIF:SA:60:392,1,"Piscine",48.974692,2.311569,,1,,Europe/Paris,,OIF, +OIF:SA:60:394,1,"Coussaye-Soupirs",48.962936,2.306927,,1,,Europe/Paris,,OIF, +OIF:SA:60:399,1,"Robespierre",48.958381,2.310246,,1,,Europe/Paris,,OIF, +OIF:SA:60:401,1,"Les Saules",48.961881,2.311275,,1,,Europe/Paris,,OIF, +OIF:SA:60:409,1,"Piscine Cdfas",48.97841,2.279054,,1,,Europe/Paris,,OIF, +OIF:SA:60:411,1,"Église",49.029158,2.363635,,1,,Europe/Paris,,OIF, +OIF:SA:60:413,1,"Paul Fort",49.033977,2.349581,,1,,Europe/Paris,,OIF, +OIF:SA:60:417,1,"National 1",49.034076,2.343363,,1,,Europe/Paris,,OIF, +OIF:SA:60:419,1,"Les Oiseaux",49.032978,2.355383,,1,,Europe/Paris,,OIF, +OIF:SA:60:471,1,"Les Emplés",48.999354,2.293446,,1,,Europe/Paris,,OIF, +OIF:SA:60:474,1,"Rue Legendre",48.997125,2.290403,,1,,Europe/Paris,,OIF, +OIF:SA:60:476,1,"Magnolias",49.001328,2.295364,,1,,Europe/Paris,,OIF, +OIF:SA:60:479,1,"Champeaux",49.004308,2.318056,,1,,Europe/Paris,,OIF, +OIF:SA:60:481,1,"Chemin Vert",49.001019,2.320017,,1,,Europe/Paris,,OIF, +OIF:SA:60:483,1,"La Chênée",49.007282,2.314892,,1,,Europe/Paris,,OIF, +OIF:SA:60:485,1,"Notre-Dame",48.985819,2.324016,,1,,Europe/Paris,,OIF, +OIF:SA:60:486,1,"Ermitage",48.992793,2.329934,,1,,Europe/Paris,,OIF, +OIF:SA:60:488,1,"Chemin de l'Escalade",48.997156,2.32572,,1,,Europe/Paris,,OIF, +OIF:SA:60:490,1,"Jules Ferry",48.977091,2.313499,,1,,Europe/Paris,,OIF, +OIF:SA:60:492,1,"Fontaine Renée",48.993619,2.318736,,1,,Europe/Paris,,OIF, +OIF:SA:60:494,1,"Gambetta",48.980363,2.313934,,1,,Europe/Paris,,OIF, +OIF:SA:60:496,1,"Rue des Granges",48.982458,2.323354,,1,,Europe/Paris,,OIF, +OIF:SA:60:498,1,"Rue de Groslay",48.985042,2.328515,,1,,Europe/Paris,,OIF, +OIF:SA:60:5,1,"Clinique des Orchidées",49.005913,2.301889,,1,,Europe/Paris,,OIF, +OIF:SA:60:500,1,"Ehpad Simone Veil",48.986915,2.318717,,1,,Europe/Paris,,OIF, +OIF:SA:60:501,1,"Laboureur",48.989859,2.324936,,1,,Europe/Paris,,OIF, +OIF:SA:60:503,1,"Collège Lebrun",48.988236,2.324193,,1,,Europe/Paris,,OIF, +OIF:SA:60:504,1,"Place Levanneur",48.988317,2.318744,,1,,Europe/Paris,,OIF, +OIF:SA:60:505,1,"Loges",48.976704,2.31068,,1,,Europe/Paris,,OIF, +OIF:SA:60:507,1,"Luxembourg",48.984174,2.318473,,1,,Europe/Paris,,OIF, +OIF:SA:60:508,1,"Mairie",48.990294,2.320478,,1,,Europe/Paris,,OIF, +OIF:SA:60:509,1,"La Mare aux Champeaux",48.996293,2.329899,,1,,Europe/Paris,,OIF, +OIF:SA:60:511,1,"Monuments aux Morts",48.998205,2.322606,,1,,Europe/Paris,,OIF, +OIF:SA:60:514,1,"L'Orangerie",48.982902,2.3165,,1,,Europe/Paris,,OIF, +OIF:SA:60:516,1,"Les Peupliers",49.005939,2.316197,,1,,Europe/Paris,,OIF, +OIF:SA:60:518,1,"Rue de Pontoise",48.992207,2.313137,,1,,Europe/Paris,,OIF, +OIF:SA:60:520,1,"Porte Rouge",48.979932,2.31743,,1,,Europe/Paris,,OIF, +OIF:SA:60:522,1,"Gymnase des Gallérands",48.987414,2.32833,,1,,Europe/Paris,,OIF, +OIF:SA:60:524,1,"Rey de Foresta",48.990599,2.320918,,1,,Europe/Paris,,OIF, +OIF:SA:60:528,1,"Roosevelt",48.99331,2.320076,,1,,Europe/Paris,,OIF, +OIF:SA:60:531,1,"Les Rougemonts",48.994092,2.33485,,1,,Europe/Paris,,OIF, +OIF:SA:60:533,1,"Lycée J.J. Rousseau",48.991051,2.319241,,1,,Europe/Paris,,OIF, +OIF:SA:60:534,1,"Saint-Valéry",48.984704,2.321859,,1,,Europe/Paris,,OIF, +OIF:SA:60:535,1,"Verdun",48.994918,2.324963,,1,,Europe/Paris,,OIF, +OIF:SA:60:537,1,"08 Mai 45",48.963314,2.334653,,1,,Europe/Paris,,OIF, +OIF:SA:60:539,1,"Berteaux",48.97551,2.347399,,1,,Europe/Paris,,OIF, +OIF:SA:60:541,1,"Carnot",48.972978,2.342816,,1,,Europe/Paris,,OIF, +OIF:SA:60:542,1,"Chapelle Saint-Therese",48.961484,2.332154,,1,,Europe/Paris,,OIF, +OIF:SA:60:550,1,"Jonction",48.972969,2.345724,,1,,Europe/Paris,,OIF, +OIF:SA:60:551,1,"Mairie",48.974649,2.345642,,1,,Europe/Paris,,OIF, +OIF:SA:60:552,1,"Missout",48.969109,2.341144,,1,,Europe/Paris,,OIF, +OIF:SA:60:557,1,"Stade",48.970974,2.344222,,1,,Europe/Paris,,OIF, +OIF:SA:60:573,1,"Bleury",49.000661,2.304986,,1,,Europe/Paris,,OIF, +OIF:SA:60:575,1,"Bonne Auberge",48.986242,2.29614,,1,,Europe/Paris,,OIF, +OIF:SA:60:579,1,"Carnot",48.988397,2.296774,,1,,Europe/Paris,,OIF, +OIF:SA:60:583,1,"Cimetière",48.99381,2.294263,,1,,Europe/Paris,,OIF, +OIF:SA:60:586,1,"Clos Renaud",48.990517,2.296038,,1,,Europe/Paris,,OIF, +OIF:SA:60:590,1,"Centre Commercial",48.991239,2.292156,,1,,Europe/Paris,,OIF, +OIF:SA:60:596,1,"Le Bois Gazet",48.997387,2.309823,,1,,Europe/Paris,,OIF, +OIF:SA:60:598,1,"Gendarmerie",48.983485,2.293978,,1,,Europe/Paris,,OIF, +OIF:SA:60:600,1,"Gymnase",48.993881,2.305912,,1,,Europe/Paris,,OIF, +OIF:SA:60:602,1,"Hôtel de Ville",48.987463,2.300802,,1,,Europe/Paris,,OIF, +OIF:SA:60:606,1,"Marche",48.987674,2.29887,,1,,Europe/Paris,,OIF, +OIF:SA:60:608,1,"Chemin de Margency",48.995324,2.309155,,1,,Europe/Paris,,OIF, +OIF:SA:60:616,1,"Pave Saint-Paul",48.9931,2.309811,,1,,Europe/Paris,,OIF, +OIF:SA:60:618,1,"Général de Gaulle",48.984551,2.29935,,1,,Europe/Paris,,OIF, +OIF:SA:60:620,1,"Lucie Raviol",48.989509,2.304392,,1,,Europe/Paris,,OIF, +OIF:SA:60:621,1,"Jardin Renard",48.991767,2.29841,,1,,Europe/Paris,,OIF, +OIF:SA:60:627,1,"La Station",48.989199,2.305601,,1,,Europe/Paris,,OIF, +OIF:SA:60:629,1,"Saint-Paul",48.992956,2.309777,,1,,Europe/Paris,,OIF, +OIF:SA:60:632,1,"Avenue Mathilde",48.974911,2.29262,,1,,Europe/Paris,,OIF, +OIF:SA:60:634,1,"Les Tourelles",48.989882,2.291515,,1,,Europe/Paris,,OIF, +OIF:SA:60:7,1,"Le Colombier",49.002351,2.306542,,1,,Europe/Paris,,OIF, +OIF:SA:60:766,1,"Alliance",48.977076,2.291581,,1,,Europe/Paris,,OIF, +OIF:SA:60:768,1,"Artois",48.959971,2.282145,,1,,Europe/Paris,,OIF, +OIF:SA:60:770,1,"Alliance Bussys",48.976844,2.284687,,1,,Europe/Paris,,OIF, +OIF:SA:60:772,1,"Carnot",48.972658,2.289332,,1,,Europe/Paris,,OIF, +OIF:SA:60:774,1,"Cressonnières",48.976127,2.289015,,1,,Europe/Paris,,OIF, +OIF:SA:60:776,1,"Paul Doumer",48.970927,2.286631,,1,,Europe/Paris,,OIF, +OIF:SA:60:780,1,"Mairie",48.970176,2.28455,,1,,Europe/Paris,,OIF, +OIF:SA:60:782,1,"Berthie Albrecht",48.965916,2.283674,,1,,Europe/Paris,,OIF, +OIF:SA:60:784,1,"J. Sarrailh",48.960746,2.287753,,1,,Europe/Paris,,OIF, +OIF:SA:61:10,1,"Plessis la Tour",48.612126,3.405637,,1,,Europe/Paris,,OIF, +OIF:SA:61:101,1,"Vulaines",48.560489,3.217628,,1,,Europe/Paris,,OIF, +OIF:SA:61:102,1,"Maulny",48.507842,3.392591,,1,,Europe/Paris,,OIF, +OIF:SA:61:105,1,"Mairie",48.588097,3.108923,,1,,Europe/Paris,,OIF, +OIF:SA:61:106,1,"Place",48.607385,3.016347,,1,,Europe/Paris,,OIF, +OIF:SA:61:108,1,"Le Corbier",48.688268,3.124414,,1,,Europe/Paris,,OIF, +OIF:SA:61:109,1,"Villars les Demoiselles",48.682922,3.142769,,1,,Europe/Paris,,OIF, +OIF:SA:61:11,1,"Saint-Martin",48.58517,3.43745,,1,,Europe/Paris,,OIF, +OIF:SA:61:110,1,"Villechevret",48.679256,3.139902,,1,,Europe/Paris,,OIF, +OIF:SA:61:111,1,"École Maternelle",48.594075,3.075775,,1,,Europe/Paris,,OIF, +OIF:SA:61:112,1,"Église",48.59327,3.075879,,1,,Europe/Paris,,OIF, +OIF:SA:61:113,1,"La Charmoye",48.593294,3.066996,,1,,Europe/Paris,,OIF, +OIF:SA:61:114,1,"Le Sceau",48.605267,3.042731,,1,,Europe/Paris,,OIF, +OIF:SA:61:116,1,"La Psauve",48.575571,3.039396,,1,,Europe/Paris,,OIF, +OIF:SA:61:117,1,"Lycée H. Becquerel",48.550279,3.007613,,1,,Europe/Paris,,OIF, +OIF:SA:61:118,1,"CES Barthélémy Quai 1",48.551597,3.016039,,1,,Europe/Paris,,OIF, +OIF:SA:61:119,1,"Église",48.599451,3.105473,,1,,Europe/Paris,,OIF, +OIF:SA:61:12,1,"Cerneux",48.693438,3.345166,,1,,Europe/Paris,,OIF, +OIF:SA:61:120,1,"Les Guilverts",48.609419,3.125541,,1,,Europe/Paris,,OIF, +OIF:SA:61:121,1,"Le Plessis Hainault",48.618285,3.114964,,1,,Europe/Paris,,OIF, +OIF:SA:61:122,1,"Mairie",48.612714,3.116609,,1,,Europe/Paris,,OIF, +OIF:SA:61:123,1,"Rue du Parc",48.581255,3.138108,,1,,Europe/Paris,,OIF, +OIF:SA:61:124,1,"Corberon",48.582334,3.161618,,1,,Europe/Paris,,OIF, +OIF:SA:61:126,1,"Les Montils",48.508355,2.946798,,1,,Europe/Paris,,OIF, +OIF:SA:61:127,1,"Place de l'Église",48.511995,2.970865,,1,,Europe/Paris,,OIF, +OIF:SA:61:128,1,"Square Dupeyron",48.509245,2.967429,,1,,Europe/Paris,,OIF, +OIF:SA:61:129,1,"Rond-Point",48.47019,2.993896,,1,,Europe/Paris,,OIF, +OIF:SA:61:13,1,"Le Chanoy",48.698993,3.351514,,1,,Europe/Paris,,OIF, +OIF:SA:61:131,1,"Libération",48.463288,2.945589,,1,,Europe/Paris,,OIF, +OIF:SA:61:132,1,"Lycée Fontaineroux",48.439103,2.800387,,1,,Europe/Paris,,OIF, +OIF:SA:61:135,1,"Le Jarrier",48.556074,2.934458,,1,,Europe/Paris,,OIF, +OIF:SA:61:14,1,"Bourg",48.541923,3.459772,,1,,Europe/Paris,,OIF, +OIF:SA:61:140,1,"Collège P. Éluard",48.400311,2.96999,,1,,Europe/Paris,,OIF, +OIF:SA:61:142,1,"Surville",48.394512,2.954773,,1,,Europe/Paris,,OIF, +OIF:SA:61:147,1,"Lotissement",48.555554,2.922542,,1,,Europe/Paris,,OIF, +OIF:SA:61:148,1,"Mairie",48.558051,2.915521,,1,,Europe/Paris,,OIF, +OIF:SA:61:15,1,"Fouchères",48.551807,3.470243,,1,,Europe/Paris,,OIF, +OIF:SA:61:150,1,"Lycée G.Eiffel",48.373298,2.927587,,1,,Europe/Paris,,OIF, +OIF:SA:61:153,1,"Le Plessis",48.417158,3.07397,,1,,Europe/Paris,,OIF, +OIF:SA:61:154,1,"Châtenay",48.419493,3.09637,,1,,Europe/Paris,,OIF, +OIF:SA:61:156,1,"Mairie",48.409632,3.056639,,1,,Europe/Paris,,OIF, +OIF:SA:61:157,1,"Ravin de Rumini",48.471874,2.998331,,1,,Europe/Paris,,OIF, +OIF:SA:61:158,1,"Haussonville",48.477056,3.131235,,1,,Europe/Paris,,OIF, +OIF:SA:61:159,1,"Collège du Montois",48.478375,3.141438,,1,,Europe/Paris,,OIF, +OIF:SA:61:16,1,"Les Chaises",48.548757,3.453439,,1,,Europe/Paris,,OIF, +OIF:SA:61:160,1,"Echou",48.451016,2.917139,,1,,Europe/Paris,,OIF, +OIF:SA:61:164,1,"Chalautre la Reposte",48.480656,3.092182,,1,,Europe/Paris,,OIF, +OIF:SA:61:165,1,"EDF",48.472835,3.084342,,1,,Europe/Paris,,OIF, +OIF:SA:61:167,1,"Église",48.527184,3.177638,,1,,Europe/Paris,,OIF, +OIF:SA:61:169,1,"Viaduc",48.52152,3.243847,,1,,Europe/Paris,,OIF, +OIF:SA:61:17,1,"Puits Froux",48.558718,3.433831,,1,,Europe/Paris,,OIF, +OIF:SA:61:173,1,"Le Villé",48.486313,3.14814,,1,,Europe/Paris,,OIF, +OIF:SA:61:177,1,"Orvilliers",48.440521,3.046727,,1,,Europe/Paris,,OIF, +OIF:SA:61:179,1,"Liberté",48.479861,3.197289,,1,,Europe/Paris,,OIF, +OIF:SA:61:18,1,"Église",48.670049,3.282715,,1,,Europe/Paris,,OIF, +OIF:SA:61:181,1,"Centre",48.539533,3.283354,,1,,Europe/Paris,,OIF, +OIF:SA:61:184,1,"Saint-Loup de Naud",48.535495,3.212928,,1,,Europe/Paris,,OIF, +OIF:SA:61:185,1,"Courton le Bas",48.533232,3.2229,,1,,Europe/Paris,,OIF, +OIF:SA:61:186,1,"Courton le Haut",48.534136,3.232899,,1,,Europe/Paris,,OIF, +OIF:SA:61:188,1,"Place du Général de Gaulle",48.529208,3.253618,,1,,Europe/Paris,,OIF, +OIF:SA:61:189,1,"Bibliothèque",48.420505,3.020718,,1,,Europe/Paris,,OIF, +OIF:SA:61:19,1,"Courchamp",48.634943,3.288519,,1,,Europe/Paris,,OIF, +OIF:SA:61:190,1,"Rue Grande",48.510424,3.196663,,1,,Europe/Paris,,OIF, +OIF:SA:61:191,1,"Carrouges",48.50779,3.196613,,1,,Europe/Paris,,OIF, +OIF:SA:61:192,1,"Mairie",48.509702,3.200778,,1,,Europe/Paris,,OIF, +OIF:SA:61:193,1,"Place",48.477762,3.181596,,1,,Europe/Paris,,OIF, +OIF:SA:61:194,1,"École",48.510825,3.16628,,1,,Europe/Paris,,OIF, +OIF:SA:61:195,1,"Thénisy",48.483726,3.179968,,1,,Europe/Paris,,OIF, +OIF:SA:61:196,1,"Les Frelons",48.498551,3.230638,,1,,Europe/Paris,,OIF, +OIF:SA:61:197,1,"Place de l'Église",48.444286,2.891146,,1,,Europe/Paris,,OIF, +OIF:SA:61:198,1,"Poste",48.486617,3.043534,,1,,Europe/Paris,,OIF, +OIF:SA:61:199,1,"Valjouan",48.504069,3.043912,,1,,Europe/Paris,,OIF, +OIF:SA:61:2,1,"Coeffrin",48.649133,3.357678,,1,,Europe/Paris,,OIF, +OIF:SA:61:202,1,"Mairie",48.427103,3.121277,,1,,Europe/Paris,,OIF, +OIF:SA:61:205,1,"Volangis",48.445617,3.185204,,1,,Europe/Paris,,OIF, +OIF:SA:61:209,1,"Ateliers Municipaux",48.555378,3.297929,,1,,Europe/Paris,,OIF, +OIF:SA:61:21,1,"Rue de la Gare",48.580199,3.386854,,1,,Europe/Paris,,OIF, +OIF:SA:61:210,1,"Avenue de la Voulzie",48.550563,3.295172,,1,,Europe/Paris,,OIF, +OIF:SA:61:211,1,"Bellevues",48.552447,3.303359,,1,,Europe/Paris,,OIF, +OIF:SA:61:213,1,"Porte de Jouy",48.564984,3.283897,,1,,Europe/Paris,,OIF, +OIF:SA:61:218,1,"Fontaine aux Écus",48.543172,3.293141,,1,,Europe/Paris,,OIF, +OIF:SA:61:22,1,"Cormeron",48.587515,3.368159,,1,,Europe/Paris,,OIF, +OIF:SA:61:221,1,"Général de Gaulle",48.559313,3.284322,,1,,Europe/Paris,,OIF, +OIF:SA:61:222,1,"Hôpital L. Binet",48.546354,3.303138,,1,,Europe/Paris,,OIF, +OIF:SA:61:224,1,"Maison de Quartier",48.54688,3.29371,,1,,Europe/Paris,,OIF, +OIF:SA:61:226,1,"Marcel Mougenot",48.571426,3.291167,,1,,Europe/Paris,,OIF, +OIF:SA:61:227,1,"Dromigny",48.553895,3.293378,,1,,Europe/Paris,,OIF, +OIF:SA:61:23,1,"École",48.576733,3.387333,,1,,Europe/Paris,,OIF, +OIF:SA:61:231,1,"Place H.Balzac",48.559489,3.298627,,1,,Europe/Paris,,OIF, +OIF:SA:61:232,1,"Rue Saint-Jean",48.561638,3.284134,,1,,Europe/Paris,,OIF, +OIF:SA:61:233,1,"Pré Botin",48.54462,3.291908,,1,,Europe/Paris,,OIF, +OIF:SA:61:234,1,"Prés de la Comtesse",48.545746,3.295016,,1,,Europe/Paris,,OIF, +OIF:SA:61:235,1,"Route de Bray",48.556277,3.287829,,1,,Europe/Paris,,OIF, +OIF:SA:61:236,1,"Les Sablons",48.558369,3.287149,,1,,Europe/Paris,,OIF, +OIF:SA:61:237,1,"Félix Bourquelot",48.561188,3.304198,,1,,Europe/Paris,,OIF, +OIF:SA:61:238,1,"Terrier Rouge",48.541776,3.291206,,1,,Europe/Paris,,OIF, +OIF:SA:61:240,1,"Warnery",48.567037,3.293585,,1,,Europe/Paris,,OIF, +OIF:SA:61:241,1,"ZAC des Bordes",48.5542,3.300155,,1,,Europe/Paris,,OIF, +OIF:SA:61:247,1,"Lycée Tour des Dames",48.677866,2.968469,,1,,Europe/Paris,,OIF, +OIF:SA:61:248,1,"Saint-Nicolas",48.681485,2.959011,,1,,Europe/Paris,,OIF, +OIF:SA:61:249,1,"Le Crayon",48.425768,3.016133,,1,,Europe/Paris,,OIF, +OIF:SA:61:25,1,"Pigy",48.554541,3.409827,,1,,Europe/Paris,,OIF, +OIF:SA:61:250,1,"Le Rôty",48.425347,3.008097,,1,,Europe/Paris,,OIF, +OIF:SA:61:251,1,"Les Repentailles",48.42037,3.027638,,1,,Europe/Paris,,OIF, +OIF:SA:61:252,1,"Les Tuileries",48.417416,3.010635,,1,,Europe/Paris,,OIF, +OIF:SA:61:253,1,"Stop Route de Provins",48.423401,3.021201,,1,,Europe/Paris,,OIF, +OIF:SA:61:26,1,"Plessis / Pigy",48.562597,3.399848,,1,,Europe/Paris,,OIF, +OIF:SA:61:268,1,"Saint-Augustin",48.557946,3.152281,,1,,Europe/Paris,,OIF, +OIF:SA:61:27,1,"Richebourg",48.570242,3.370039,,1,,Europe/Paris,,OIF, +OIF:SA:61:271,1,"Église",48.536845,3.348442,,1,,Europe/Paris,,OIF, +OIF:SA:61:274,1,"Roger Frisson",48.555126,3.178123,,1,,Europe/Paris,,OIF, +OIF:SA:61:275,1,"Landoy",48.539336,3.166557,,1,,Europe/Paris,,OIF, +OIF:SA:61:276,1,"Leudon",48.537566,3.143068,,1,,Europe/Paris,,OIF, +OIF:SA:61:278,1,"Place de la Mairie",48.735404,3.011776,,1,,Europe/Paris,,OIF, +OIF:SA:61:28,1,"Corberon",48.675533,3.329358,,1,,Europe/Paris,,OIF, +OIF:SA:61:288,1,"Glatigny",48.542792,2.951046,,1,,Europe/Paris,,OIF, +OIF:SA:61:289,1,"Lotissement",48.553268,2.950425,,1,,Europe/Paris,,OIF, +OIF:SA:61:29,1,"Les Marêts",48.66784,3.315647,,1,,Europe/Paris,,OIF, +OIF:SA:61:296,1,"Mairie RN 19",48.606473,2.891205,,1,,Europe/Paris,,OIF, +OIF:SA:61:3,1,"Ecoublay",48.657494,3.341817,,1,,Europe/Paris,,OIF, +OIF:SA:61:30,1,"Marêchère",48.662157,3.312602,,1,,Europe/Paris,,OIF, +OIF:SA:61:306,1,"Bourg",48.549861,3.068913,,1,,Europe/Paris,,OIF, +OIF:SA:61:307,1,"Beauguichet",48.540154,3.0998,,1,,Europe/Paris,,OIF, +OIF:SA:61:309,1,"Cernuise",48.541345,3.107466,,1,,Europe/Paris,,OIF, +OIF:SA:61:311,1,"Montépot",48.544438,3.082153,,1,,Europe/Paris,,OIF, +OIF:SA:61:312,1,"Rogenvilliers",48.527644,3.047277,,1,,Europe/Paris,,OIF, +OIF:SA:61:316,1,"Pressoir",48.555743,3.106718,,1,,Europe/Paris,,OIF, +OIF:SA:61:317,1,"Les Vergers",48.552694,3.113782,,1,,Europe/Paris,,OIF, +OIF:SA:61:318,1,"Châtillon",48.541256,2.807746,,1,,Europe/Paris,,OIF, +OIF:SA:61:319,1,"La Borde Mairie",48.529771,2.835139,,1,,Europe/Paris,,OIF, +OIF:SA:61:32,1,"Ecury",48.611332,3.471612,,1,,Europe/Paris,,OIF, +OIF:SA:61:321,1,"Rue de la Poste",48.549451,2.898073,,1,,Europe/Paris,,OIF, +OIF:SA:61:33,1,"Fontaine Montaiguillon",48.616439,3.515356,,1,,Europe/Paris,,OIF, +OIF:SA:61:336,1,"Gendarmerie",48.553229,3.007218,,1,,Europe/Paris,,OIF, +OIF:SA:61:337,1,"Piscine",48.552203,3.015438,,1,,Europe/Paris,,OIF, +OIF:SA:61:338,1,"Victor Hugo",48.556873,3.009953,,1,,Europe/Paris,,OIF, +OIF:SA:61:340,1,"Courtry",48.543832,2.769894,,1,,Europe/Paris,,OIF, +OIF:SA:61:341,1,"Saint-Just / Clémenceau",48.534192,2.677383,,1,,Europe/Paris,,OIF, +OIF:SA:61:35,1,"Louan",48.625438,3.479527,,1,,Europe/Paris,,OIF, +OIF:SA:61:36,1,"Villegruis",48.603299,3.467906,,1,,Europe/Paris,,OIF, +OIF:SA:61:37,1,"Bourg",48.694274,3.438184,,1,,Europe/Paris,,OIF, +OIF:SA:61:38,1,"Lotissement",48.695734,3.444543,,1,,Europe/Paris,,OIF, +OIF:SA:61:383,1,"Place de l'Escargot",48.528409,3.314081,,1,,Europe/Paris,,OIF, +OIF:SA:61:386,1,"Abri Centre",48.498099,3.417691,,1,,Europe/Paris,,OIF, +OIF:SA:61:387,1,"École Voulzie",48.547836,3.293321,,1,,Europe/Paris,,OIF, +OIF:SA:61:388,1,"École des Coudoux",48.569299,3.29064,,1,,Europe/Paris,,OIF, +OIF:SA:61:39,1,"Gare Routière",48.560863,3.299551,,1,,Europe/Paris,,OIF, +OIF:SA:61:391,1,"Puits Godier",48.506424,3.288071,,1,,Europe/Paris,,OIF, +OIF:SA:61:394,1,"Bescherelles",48.492555,3.110209,,1,,Europe/Paris,,OIF, +OIF:SA:61:397,1,"Carrefour Gratteloup",48.439937,3.111734,,1,,Europe/Paris,,OIF, +OIF:SA:61:4,1,"Gondelot",48.673186,3.344407,,1,,Europe/Paris,,OIF, +OIF:SA:61:42,1,"Collège Jules Verne",48.544746,3.289649,,1,,Europe/Paris,,OIF, +OIF:SA:61:43,1,"Lycée les Pannevelles",48.546983,3.304205,,1,,Europe/Paris,,OIF, +OIF:SA:61:44,1,"Collège Marie Curie",48.547421,3.297917,,1,,Europe/Paris,,OIF, +OIF:SA:61:45,1,"Ville Haute",48.561311,3.280206,,1,,Europe/Paris,,OIF, +OIF:SA:61:46,1,"Rupéreux",48.636475,3.327563,,1,,Europe/Paris,,OIF, +OIF:SA:61:470,1,"Blunay",48.503187,3.386327,,1,,Europe/Paris,,OIF, +OIF:SA:61:471,1,"Les Hauts de Rougements",48.53635,3.290633,,1,,Europe/Paris,,OIF, +OIF:SA:61:472,1,"Café Pressoir",48.51173,3.294459,,1,,Europe/Paris,,OIF, +OIF:SA:61:473,1,"Salle Polyvalente",48.558758,2.915359,,1,,Europe/Paris,,OIF, +OIF:SA:61:475,1,"Stade",48.556142,2.95184,,1,,Europe/Paris,,OIF, +OIF:SA:61:479,1,"RD 619",48.560182,3.219078,,1,,Europe/Paris,,OIF, +OIF:SA:61:482,1,"Servigny",48.467916,3.193002,,1,,Europe/Paris,,OIF, +OIF:SA:61:49,1,"Sancy les Provins",48.696407,3.391298,,1,,Europe/Paris,,OIF, +OIF:SA:61:490,1,"Place du 29ème Dragon",48.565538,3.300459,,1,,Europe/Paris,,OIF, +OIF:SA:61:491,1,"Borne Blanche",48.409795,3.245664,,1,,Europe/Paris,,OIF, +OIF:SA:61:492,1,"Delort",48.559848,3.306449,,1,,Europe/Paris,,OIF, +OIF:SA:61:493,1,"Tassigny",48.558399,3.307708,,1,,Europe/Paris,,OIF, +OIF:SA:61:494,1,"Paraclet",48.554442,3.286847,,1,,Europe/Paris,,OIF, +OIF:SA:61:496,1,"Vimpelles",48.43996,3.167864,,1,,Europe/Paris,,OIF, +OIF:SA:61:5,1,"Bourg",48.679287,3.357917,,1,,Europe/Paris,,OIF, +OIF:SA:61:50,1,"Abribus",48.736217,3.42765,,1,,Europe/Paris,,OIF, +OIF:SA:61:51,1,"Brantilly",48.670821,3.391492,,1,,Europe/Paris,,OIF, +OIF:SA:61:518,1,"Chanteloup",48.623072,3.420921,,1,,Europe/Paris,,OIF, +OIF:SA:61:52,1,"Champcouelle",48.668541,3.405758,,1,,Europe/Paris,,OIF, +OIF:SA:61:520,1,"La Fontaine",48.691383,3.079792,,1,,Europe/Paris,,OIF, +OIF:SA:61:53,1,"Les Tournelles",48.647604,3.408218,,1,,Europe/Paris,,OIF, +OIF:SA:61:54,1,"Bourg",48.649645,3.406197,,1,,Europe/Paris,,OIF, +OIF:SA:61:55,1,"Lotissement",48.644862,3.404654,,1,,Europe/Paris,,OIF, +OIF:SA:61:555,1,"Place du Châtel",48.562189,3.288289,,1,,Europe/Paris,,OIF, +OIF:SA:61:569,1,"Port Montain",48.460495,3.337278,,1,,Europe/Paris,,OIF, +OIF:SA:61:570,1,"Foyer",48.482373,3.293728,,1,,Europe/Paris,,OIF, +OIF:SA:61:572,1,"Théâtre",48.492661,3.502235,,1,,Europe/Paris,,OIF, +OIF:SA:61:58,1,"Voulton",48.616782,3.332998,,1,,Europe/Paris,,OIF, +OIF:SA:61:59,1,"Gimbrois",48.612793,3.315928,,1,,Europe/Paris,,OIF, +OIF:SA:61:590,1,"Clinique",48.562375,3.315164,,1,,Europe/Paris,,OIF, +OIF:SA:61:592,1,"Lotissement",48.567123,3.318219,,1,,Europe/Paris,,OIF, +OIF:SA:61:593,1,"École",48.566643,3.322965,,1,,Europe/Paris,,OIF, +OIF:SA:61:594,1,"Table Ronde",48.56294,3.294397,,1,,Europe/Paris,,OIF, +OIF:SA:61:595,1,"Cutrelles",48.460347,3.162612,,1,,Europe/Paris,,OIF, +OIF:SA:61:596,1,"Saint-Augustin",48.478898,3.123934,,1,,Europe/Paris,,OIF, +OIF:SA:61:6,1,"Beauchéry",48.615487,3.403706,,1,,Europe/Paris,,OIF, +OIF:SA:61:603,1,"Les Roses",48.505377,3.144844,,1,,Europe/Paris,,OIF, +OIF:SA:61:604,1,"Les Bordes",48.628625,3.210772,,1,,Europe/Paris,,OIF, +OIF:SA:61:61,1,"Saint-Martin des Champs",48.597692,3.334022,,1,,Europe/Paris,,OIF, +OIF:SA:61:616,1,"Église",48.482659,3.346026,,1,,Europe/Paris,,OIF, +OIF:SA:61:62,1,"Bannost",48.664994,3.175699,,1,,Europe/Paris,,OIF, +OIF:SA:61:620,1,"Gare Flamboin",48.473507,3.295016,,1,,Europe/Paris,,OIF, +OIF:SA:61:625,1,"Stèle",48.537093,3.353597,,1,,Europe/Paris,,OIF, +OIF:SA:61:631,1,"École",48.75972,3.222827,,1,,Europe/Paris,,OIF, +OIF:SA:61:633,1,"Les Loges de Bailly",48.585482,3.01247,,1,,Europe/Paris,,OIF, +OIF:SA:61:635,1,"Place des Buttes",48.414623,3.237055,,1,,Europe/Paris,,OIF, +OIF:SA:61:636,1,"Courtevroust",48.574713,3.141705,,1,,Europe/Paris,,OIF, +OIF:SA:61:637,1,"Belleville",48.539808,3.11975,,1,,Europe/Paris,,OIF, +OIF:SA:61:638,1,"Marais",48.558887,3.29756,,1,,Europe/Paris,,OIF, +OIF:SA:61:64,1,"Fortail",48.699129,3.268611,,1,,Europe/Paris,,OIF, +OIF:SA:61:641,1,"Leudon",48.537561,3.143088,,1,,Europe/Paris,,OIF, +OIF:SA:61:642,1,"Ferme Hennepont",48.541255,3.297269,,1,,Europe/Paris,,OIF, +OIF:SA:61:645,1,"Meigneux",48.511637,3.106141,,1,,Europe/Paris,,OIF, +OIF:SA:61:647,1,"Villegagnon",48.665029,3.175733,,1,,Europe/Paris,,OIF, +OIF:SA:61:648,1,"Pavé du Roy",48.559151,3.152225,,1,,Europe/Paris,,OIF, +OIF:SA:61:649,1,"Haut",48.487456,3.292653,,1,,Europe/Paris,,OIF, +OIF:SA:61:65,1,"Bezalles",48.67815,3.242899,,1,,Europe/Paris,,OIF, +OIF:SA:61:650,1,"Mairie",48.592459,3.17342,,1,,Europe/Paris,,OIF, +OIF:SA:61:651,1,"Église",48.582683,3.192198,,1,,Europe/Paris,,OIF, +OIF:SA:61:652,1,"Maisoncelles",48.714653,3.425466,,1,,Europe/Paris,,OIF, +OIF:SA:61:654,1,"Fontains",48.526599,3.00201,,1,,Europe/Paris,,OIF, +OIF:SA:61:656,1,"Libération",48.561842,3.309377,,1,,Europe/Paris,,OIF, +OIF:SA:61:658,1,"CES Barthélémy Quai 3",48.551598,3.015863,,1,,Europe/Paris,,OIF, +OIF:SA:61:659,1,"Maximilien Michelin",48.558696,3.293317,,1,,Europe/Paris,,OIF, +OIF:SA:61:66,1,"Beauregard",48.66184,3.246761,,1,,Europe/Paris,,OIF, +OIF:SA:61:661,1,"La Queue aux Bois",48.592942,3.473136,,1,,Europe/Paris,,OIF, +OIF:SA:61:662,1,"Moulin à Vent",48.619591,3.413187,,1,,Europe/Paris,,OIF, +OIF:SA:61:663,1,"Désiré Laurent",48.563962,3.300267,,1,,Europe/Paris,,OIF, +OIF:SA:61:665,1,"Tacot",48.555614,3.005231,,1,,Europe/Paris,,OIF, +OIF:SA:61:666,1,"ZAC des Roches",48.554626,3.003539,,1,,Europe/Paris,,OIF, +OIF:SA:61:667,1,"Mairie",48.554729,3.013859,,1,,Europe/Paris,,OIF, +OIF:SA:61:668,1,"Centre Municipal Aragon",48.557886,3.013643,,1,,Europe/Paris,,OIF, +OIF:SA:61:669,1,"Fontaines",48.55841,3.010751,,1,,Europe/Paris,,OIF, +OIF:SA:61:67,1,"Mairie",48.684334,3.226363,,1,,Europe/Paris,,OIF, +OIF:SA:61:670,1,"Maison de Retraite",48.557162,3.016836,,1,,Europe/Paris,,OIF, +OIF:SA:61:671,1,"Verdun",48.557772,3.02392,,1,,Europe/Paris,,OIF, +OIF:SA:61:672,1,"République",48.554628,3.015808,,1,,Europe/Paris,,OIF, +OIF:SA:61:673,1,"Jean Bouin",48.550369,3.018569,,1,,Europe/Paris,,OIF, +OIF:SA:61:674,1,"Saint-Exupéry",48.550955,3.019836,,1,,Europe/Paris,,OIF, +OIF:SA:61:675,1,"Estienne d'Orves",48.552932,3.022976,,1,,Europe/Paris,,OIF, +OIF:SA:61:676,1,"Cimetière",48.554442,3.024607,,1,,Europe/Paris,,OIF, +OIF:SA:61:677,1,"ZA Moulin Saint-Antoine",48.556458,3.024282,,1,,Europe/Paris,,OIF, +OIF:SA:61:678,1,"Zone Industrielle Commune de Paris",48.559185,3.032958,,1,,Europe/Paris,,OIF, +OIF:SA:61:679,1,"Zone Industrielle René Cassin",48.561009,3.034635,,1,,Europe/Paris,,OIF, +OIF:SA:61:680,1,"Général de Gaulle",48.560498,3.016636,,1,,Europe/Paris,,OIF, +OIF:SA:61:681,1,"Place du 8 Mai 1945",48.517976,3.243542,,1,,Europe/Paris,,OIF, +OIF:SA:61:682,1,"Val Bréon - Conforama",48.726293,2.824689,,1,,Europe/Paris,,OIF, +OIF:SA:61:683,1,"Val Bréon - Cempac",48.726272,2.829702,,1,,Europe/Paris,,OIF, +OIF:SA:61:684,1,"Val Bréon - Ikéa",48.725494,2.839599,,1,,Europe/Paris,,OIF, +OIF:SA:61:689,1,"Centre",48.452502,3.062149,,1,,Europe/Paris,,OIF, +OIF:SA:61:690,1,"Église",48.452516,3.061379,,1,,Europe/Paris,,OIF, +OIF:SA:61:7,1,"Bonsac",48.599613,3.431032,,1,,Europe/Paris,,OIF, +OIF:SA:61:70,1,"Combles",48.623058,3.215953,,1,,Europe/Paris,,OIF, +OIF:SA:61:704,1,"École",48.731189,3.560721,,1,,Europe/Paris,,OIF, +OIF:SA:61:705,1,"Boôlot",48.610393,3.364789,,1,,Europe/Paris,,OIF, +OIF:SA:61:706,1,"Quartier de Lattre",48.533183,3.372175,,1,,Europe/Paris,,OIF, +OIF:SA:61:707,1,"La Poste",48.537007,3.354158,,1,,Europe/Paris,,OIF, +OIF:SA:61:708,1,"Place",48.468086,3.180608,,1,,Europe/Paris,,OIF, +OIF:SA:61:710,1,"Le Mez de la Madeleine",48.544186,3.263928,,1,,Europe/Paris,,OIF, +OIF:SA:61:711,1,"CES Barthélémy Quai 4",48.551698,3.015729,,1,,Europe/Paris,,OIF, +OIF:SA:61:712,1,"Avenue des États Unis",48.780945,3.303191,,1,,Europe/Paris,,OIF, +OIF:SA:61:715,1,"Gendarmerie",48.473719,3.134092,,1,,Europe/Paris,,OIF, +OIF:SA:61:719,1,"Collège",48.551977,3.015665,,1,,Europe/Paris,,OIF, +OIF:SA:61:721,1,"Couperdrix",48.660283,3.34472,,1,,Europe/Paris,,OIF, +OIF:SA:61:722,1,"Puits Jolly",48.562311,3.453316,,1,,Europe/Paris,,OIF, +OIF:SA:61:723,1,"La Queue aux Bois",48.600704,3.434634,,1,,Europe/Paris,,OIF, +OIF:SA:61:726,1,"École",48.63144,2.887769,,1,,Europe/Paris,,OIF, +OIF:SA:61:728,1,"CES Barthélémy Quai 2",48.551597,3.015944,,1,,Europe/Paris,,OIF, +OIF:SA:61:729,1,"La Bouloye",48.534385,3.044425,,1,,Europe/Paris,,OIF, +OIF:SA:61:73,1,"Les Chapelles Hautes",48.642709,3.171182,,1,,Europe/Paris,,OIF, +OIF:SA:61:731,1,"Église",48.470141,3.090191,,1,,Europe/Paris,,OIF, +OIF:SA:61:737,1,"Les Chaises",48.483288,3.357307,,1,,Europe/Paris,,OIF, +OIF:SA:61:75,1,"Parc",48.612345,3.197186,,1,,Europe/Paris,,OIF, +OIF:SA:61:78,1,"D204",48.696012,3.29147,,1,,Europe/Paris,,OIF, +OIF:SA:61:785,1,"Église",48.664869,3.129835,,1,,Europe/Paris,,OIF, +OIF:SA:61:79,1,"Le Chanoy",48.574544,3.192667,,1,,Europe/Paris,,OIF, +OIF:SA:61:8,1,"Chennetron",48.587601,3.4258,,1,,Europe/Paris,,OIF, +OIF:SA:61:81,1,"Mare du Plessis",48.596453,3.172467,,1,,Europe/Paris,,OIF, +OIF:SA:61:813,1,"La Pistolette",48.581941,3.425438,,1,,Europe/Paris,,OIF, +OIF:SA:61:84,1,"Le Petit Paris",48.645262,3.12061,,1,,Europe/Paris,,OIF, +OIF:SA:61:85,1,"Les Orbies",48.64011,3.116687,,1,,Europe/Paris,,OIF, +OIF:SA:61:867,1,"Mortery",48.599084,3.260005,,1,,Europe/Paris,,OIF, +OIF:SA:61:868,1,"Grand Fleigny",48.576548,3.288707,,1,,Europe/Paris,,OIF, +OIF:SA:61:869,1,"Moulin des Prés",48.583189,3.282812,,1,,Europe/Paris,,OIF, +OIF:SA:61:870,1,"Rouilllot",48.588902,3.285592,,1,,Europe/Paris,,OIF, +OIF:SA:61:871,1,"Salle des Fêtes",48.584021,3.288423,,1,,Europe/Paris,,OIF, +OIF:SA:61:872,1,"Abribus",48.621453,3.255669,,1,,Europe/Paris,,OIF, +OIF:SA:61:873,1,"Villars",48.628221,3.245916,,1,,Europe/Paris,,OIF, +OIF:SA:61:89,1,"Marolles",48.584899,3.244693,,1,,Europe/Paris,,OIF, +OIF:SA:61:906,1,"Bailly-Carrois Place",48.581153,2.989313,,1,,Europe/Paris,,OIF, +OIF:SA:62:30010,1,"Abreuvoir",48.746108,2.270852,,1,,Europe/Paris,,OIF, +OIF:SA:62:30020,1,"Anatole France",48.776431,2.274261,,1,,Europe/Paris,,OIF, +OIF:SA:62:30030,1,"André Malraux",48.736218,2.311535,,1,,Europe/Paris,,OIF, +OIF:SA:62:30040,1,"Anne Frank",48.743037,2.287722,,1,,Europe/Paris,,OIF, +OIF:SA:62:30070,1,"Arago",48.736164,2.310421,,1,,Europe/Paris,,OIF, +OIF:SA:62:30080,1,"Arboretum",48.773412,2.267785,,1,,Europe/Paris,,OIF, +OIF:SA:62:30090,1,"Aristide Briand",48.786391,2.31887,,1,,Europe/Paris,,OIF, +OIF:SA:62:30100,1,"Armand Guillebaud",48.749501,2.305317,,1,,Europe/Paris,,OIF, +OIF:SA:62:30140,1,"Belvédère",48.766236,2.261411,,1,,Europe/Paris,,OIF, +OIF:SA:62:30162,1,"Blaise Pascal",48.742898,2.317933,,1,,Europe/Paris,,OIF, +OIF:SA:62:30180,1,"Bois de la Garenne",48.786036,2.261178,,1,,Europe/Paris,,OIF, +OIF:SA:62:30201,1,"Bon Puits",48.736194,2.327434,,1,,Europe/Paris,,OIF, +OIF:SA:62:30220,1,"Bourrelier / Crèche",48.747721,2.274183,,1,,Europe/Paris,,OIF, +OIF:SA:62:30240,1,"Bua",48.749948,2.275108,,1,,Europe/Paris,,OIF, +OIF:SA:62:30260,1,"Camberwell",48.778735,2.291727,,1,,Europe/Paris,,OIF, +OIF:SA:62:30290,1,"Carreau / Garnier",48.779651,2.255258,,1,,Europe/Paris,,OIF, +OIF:SA:62:30330,1,"Cauchy",48.775364,2.288289,,1,,Europe/Paris,,OIF, +OIF:SA:62:30380,1,"Champagne",48.735664,2.305251,,1,,Europe/Paris,,OIF, +OIF:SA:62:30390,1,"Château",48.7745,2.314821,,1,,Europe/Paris,,OIF, +OIF:SA:62:30400,1,"Château d'Eau",48.773289,2.250733,,1,,Europe/Paris,,OIF, +OIF:SA:62:30420,1,"Chateaubriand",48.774846,2.269156,,1,,Europe/Paris,,OIF, +OIF:SA:62:30430,1,"Étang Colbert",48.785661,2.272903,,1,,Europe/Paris,,OIF, +OIF:SA:62:30440,1,"Chemin Potier",48.738775,2.293617,,1,,Europe/Paris,,OIF, +OIF:SA:62:30450,1,"Chéneaux",48.776972,2.286615,,1,,Europe/Paris,,OIF, +OIF:SA:62:30480,1,"Cimetière Nouveau",48.762554,2.267527,,1,,Europe/Paris,,OIF, +OIF:SA:62:30500,1,"Clos de Massy",48.739064,2.277329,,1,,Europe/Paris,,OIF, +OIF:SA:62:30510,1,"Colbert",48.778745,2.294012,,1,,Europe/Paris,,OIF, +OIF:SA:62:30520,1,"Jean Moulin",48.743402,2.256205,,1,,Europe/Paris,,OIF, +OIF:SA:62:30530,1,"Léonard de Vinci",48.764414,2.252732,,1,,Europe/Paris,,OIF, +OIF:SA:62:30540,1,"Collège Romain Rolland",48.78233,2.256967,,1,,Europe/Paris,,OIF, +OIF:SA:62:30550,1,"Thomas Masaryk",48.763347,2.263101,,1,,Europe/Paris,,OIF, +OIF:SA:62:30590,1,"Coulée Verte",48.7709,2.285146,,1,,Europe/Paris,,OIF, +OIF:SA:62:30640,1,"Desgranges",48.781473,2.28268,,1,,Europe/Paris,,OIF, +OIF:SA:62:30650,1,"Diderot",48.751006,2.289277,,1,,Europe/Paris,,OIF, +OIF:SA:62:30660,1,"Docteur Berger",48.77622,2.295374,,1,,Europe/Paris,,OIF, +OIF:SA:62:30670,1,"Docteur Lequeux",48.775029,2.282755,,1,,Europe/Paris,,OIF, +OIF:SA:62:30680,1,"Docteur Roux",48.7846,2.30331,,1,,Europe/Paris,,OIF, +OIF:SA:62:30710,1,"Édith Piaf",48.767218,2.266481,,1,,Europe/Paris,,OIF, +OIF:SA:62:30720,1,"Édouard Depreux",48.77589,2.278756,,1,,Europe/Paris,,OIF, +OIF:SA:62:30730,1,"Église / Mairie",48.753247,2.296792,,1,,Europe/Paris,,OIF, +OIF:SA:62:30740,1,"Émile Seitz",48.741678,2.307863,,1,,Europe/Paris,,OIF, +OIF:SA:62:30760,1,"Eugène Sinet",48.772859,2.275428,,1,,Europe/Paris,,OIF, +OIF:SA:62:30790,1,"Fontaine Grelot",48.774024,2.317922,,1,,Europe/Paris,,OIF, +OIF:SA:62:30810,1,"Fontenay",48.783482,2.293396,,1,,Europe/Paris,,OIF, +OIF:SA:62:30840,1,"Fernand Fourcade",48.77614,2.260152,,1,,Europe/Paris,,OIF, +OIF:SA:62:30870,1,"François Sommer",48.731138,2.304201,,1,,Europe/Paris,,OIF, +OIF:SA:62:30881,1,"François Sommer",48.73014,2.303617,,1,,Europe/Paris,,OIF, +OIF:SA:62:30890,1,"Frères Lumière",48.738689,2.308368,,1,,Europe/Paris,,OIF, +OIF:SA:62:30900,1,"Frères Wright",48.765635,2.251072,,1,,Europe/Paris,,OIF, +OIF:SA:62:30920,1,"Général de Gaulle",48.768359,2.282674,,1,,Europe/Paris,,OIF, +OIF:SA:62:30930,1,"George Sand",48.775113,2.271719,,1,,Europe/Paris,,OIF, +OIF:SA:62:30940,1,"Georges Besse 1",48.731855,2.313107,,1,,Europe/Paris,,OIF, +OIF:SA:62:30970,1,"Godets / la Noisette",48.750951,2.277594,,1,,Europe/Paris,,OIF, +OIF:SA:62:30980,1,"Grand Marché",48.776605,2.25735,,1,,Europe/Paris,,OIF, +OIF:SA:62:30990,1,"Voie des Vignes",48.76665,2.290167,,1,,Europe/Paris,,OIF, +OIF:SA:62:31020,1,"Hautes Bièvres",48.75027,2.291589,,1,,Europe/Paris,,OIF, +OIF:SA:62:31040,1,"Henri Sellier",48.764191,2.254677,,1,,Europe/Paris,,OIF, +OIF:SA:62:31060,1,"Hexagone",48.754249,2.266933,,1,,Europe/Paris,,OIF, +OIF:SA:62:31100,1,"Jacqueline",48.774444,2.281423,,1,,Europe/Paris,,OIF, +OIF:SA:62:31110,1,"Jean Allemane",48.764189,2.26535,,1,,Europe/Paris,,OIF, +OIF:SA:62:31130,1,"Jean Jaurès",48.781248,2.305815,,1,,Europe/Paris,,OIF, +OIF:SA:62:31140,1,"Jean Longuet",48.771217,2.280461,,1,,Europe/Paris,,OIF, +OIF:SA:62:31150,1,"Joseph Delon",48.747693,2.298427,,1,,Europe/Paris,,OIF, +OIF:SA:62:31180,1,"Kennedy",48.736581,2.291655,,1,,Europe/Paris,,OIF, +OIF:SA:62:31200,1,"La Côte",48.786527,2.26974,,1,,Europe/Paris,,OIF, +OIF:SA:62:31260,1,"Lamartine",48.761714,2.260574,,1,,Europe/Paris,,OIF, +OIF:SA:62:31270,1,"Le Breuil",48.74122,2.283538,,1,,Europe/Paris,,OIF, +OIF:SA:62:31280,1,"Le Colombier",48.753595,2.270339,,1,,Europe/Paris,,OIF, +OIF:SA:62:31300,1,"Le Paradis",48.749333,2.287022,,1,,Europe/Paris,,OIF, +OIF:SA:62:31370,1,"Léonie",48.740412,2.29721,,1,,Europe/Paris,,OIF, +OIF:SA:62:31380,1,"Les Ailantes / Blagis",48.783252,2.304875,,1,,Europe/Paris,,OIF, +OIF:SA:62:31400,1,"Les Aulnes",48.782123,2.301401,,1,,Europe/Paris,,OIF, +OIF:SA:62:31430,1,"Les Cerisiers",48.787505,2.268133,,1,,Europe/Paris,,OIF, +OIF:SA:62:31440,1,"Les Coccinelles",48.769918,2.272209,,1,,Europe/Paris,,OIF, +OIF:SA:62:31450,1,"Les Fées",48.787079,2.261047,,1,,Europe/Paris,,OIF, +OIF:SA:62:31460,1,"Les Fleurs",48.749835,2.308647,,1,,Europe/Paris,,OIF, +OIF:SA:62:31500,1,"Les Musiciens",48.783895,2.306827,,1,,Europe/Paris,,OIF, +OIF:SA:62:31540,1,"Les Sculpteurs",48.775626,2.251252,,1,,Europe/Paris,,OIF, +OIF:SA:62:31550,1,"Les Suisses",48.786358,2.265578,,1,,Europe/Paris,,OIF, +OIF:SA:62:31560,1,"Les Terrasses",48.777709,2.27636,,1,,Europe/Paris,,OIF, +OIF:SA:62:31570,1,"Les Tilleuls",48.788388,2.270621,,1,,Europe/Paris,,OIF, +OIF:SA:62:31580,1,"Loup Pendu",48.777196,2.253609,,1,,Europe/Paris,,OIF, +OIF:SA:62:31590,1,"Lycée Descartes",48.748051,2.309083,,1,,Europe/Paris,,OIF, +OIF:SA:62:31600,1,"Lycée Jean Jaurès",48.767364,2.254903,,1,,Europe/Paris,,OIF, +OIF:SA:62:31690,1,"Marc Sangnier",48.784904,2.301079,,1,,Europe/Paris,,OIF, +OIF:SA:62:31740,1,"Marne",48.781696,2.302224,,1,,Europe/Paris,,OIF, +OIF:SA:62:31750,1,"Massenet",48.783001,2.309173,,1,,Europe/Paris,,OIF, +OIF:SA:62:31770,1,"Maurice Ravel",48.738438,2.311181,,1,,Europe/Paris,,OIF, +OIF:SA:62:31780,1,"Mer Caspienne",48.738361,2.291816,,1,,Europe/Paris,,OIF, +OIF:SA:62:31820,1,"Montgolfier",48.768295,2.250469,,1,,Europe/Paris,,OIF, +OIF:SA:62:31850,1,"Mozart",48.780691,2.307175,,1,,Europe/Paris,,OIF, +OIF:SA:62:31860,1,"Nations Unies",48.732986,2.306564,,1,,Europe/Paris,,OIF, +OIF:SA:62:31870,1,"Noyer Doré",48.735949,2.284589,,1,,Europe/Paris,,OIF, +OIF:SA:62:31900,1,"Parc Heller",48.748051,2.294785,,1,,Europe/Paris,,OIF, +OIF:SA:62:31920,1,"Paul Bert",48.745872,2.295969,,1,,Europe/Paris,,OIF, +OIF:SA:62:31930,1,"Paul Couderc",48.775168,2.294314,,1,,Europe/Paris,,OIF, +OIF:SA:62:31940,1,"Paul de Rutté",48.761513,2.255973,,1,,Europe/Paris,,OIF, +OIF:SA:62:31950,1,"Pépinières",48.781197,2.287876,,1,,Europe/Paris,,OIF, +OIF:SA:62:31970,1,"Pierre Curie",48.776081,2.283515,,1,,Europe/Paris,,OIF, +OIF:SA:62:31980,1,"Pierre Langlade",48.775884,2.318846,,1,,Europe/Paris,,OIF, +OIF:SA:62:32010,1,"Moulin Fidel",48.775554,2.258127,,1,,Europe/Paris,,OIF, +OIF:SA:62:32060,1,"4 Chemins",48.778721,2.280004,,1,,Europe/Paris,,OIF, +OIF:SA:62:32090,1,"Charles Pasqua",48.778746,2.260257,,1,,Europe/Paris,,OIF, +OIF:SA:62:32100,1,"Robert Hertz",48.762447,2.253755,,1,,Europe/Paris,,OIF, +OIF:SA:62:32180,1,"Antoine de Saint-Exupéry",48.766328,2.252321,,1,,Europe/Paris,,OIF, +OIF:SA:62:32200,1,"Sources",48.751608,2.289032,,1,,Europe/Paris,,OIF, +OIF:SA:62:32210,1,"Square Collegno",48.751036,2.295781,,1,,Europe/Paris,,OIF, +OIF:SA:62:32250,1,"Georges Suant",48.747315,2.285183,,1,,Europe/Paris,,OIF, +OIF:SA:62:32260,1,"Thorelle",48.783192,2.323264,,1,,Europe/Paris,,OIF, +OIF:SA:62:32270,1,"Tournelles",48.769967,2.280707,,1,,Europe/Paris,,OIF, +OIF:SA:62:32280,1,"Vergers",48.785718,2.324406,,1,,Europe/Paris,,OIF, +OIF:SA:62:32320,1,"Villa Flamande",48.775525,2.321172,,1,,Europe/Paris,,OIF, +OIF:SA:62:32360,1,"Voie de Châtenay",48.756564,2.268861,,1,,Europe/Paris,,OIF, +OIF:SA:62:32370,1,"Voie du Bois",48.754371,2.269061,,1,,Europe/Paris,,OIF, +OIF:SA:62:32381,1,"ZAC du Moulin",48.729223,2.302544,,1,,Europe/Paris,,OIF, +OIF:SA:62:32394,1,"Zone Industrielle Enna",48.734708,2.309892,,1,,Europe/Paris,,OIF, +OIF:SA:62:32400,1,"Petits Ruisseaux",48.74815,2.282756,,1,,Europe/Paris,,OIF, +OIF:SA:62:32610,1,"Europe",48.762076,2.291096,,1,,Europe/Paris,,OIF, +OIF:SA:62:32660,1,"Panorama",48.782815,2.321781,,1,,Europe/Paris,,OIF, +OIF:SA:62:32670,1,"Jeanne Garnerin",48.728479,2.308278,,1,,Europe/Paris,,OIF, +OIF:SA:62:32700,1,"Frères Voisin",48.722805,2.302684,,1,,Europe/Paris,,OIF, +OIF:SA:62:32720,1,"Saint-Eloi",48.739906,2.330301,,1,,Europe/Paris,,OIF, +OIF:SA:62:32730,1,"Villa Saint-Cyr",48.778015,2.320736,,1,,Europe/Paris,,OIF, +OIF:SA:62:32750,1,"Verrières Mairie",48.746924,2.267222,,1,,Europe/Paris,,OIF, +OIF:SA:62:32790,1,"Chrétienté",48.774232,2.289569,,1,,Europe/Paris,,OIF, +OIF:SA:62:32800,1,"Sous Préfecture",48.761688,2.29894,,1,,Europe/Paris,,OIF, +OIF:SA:62:32840,1,"Adolphe Pajeaud",48.740284,2.280372,,1,,Europe/Paris,,OIF, +OIF:SA:62:32850,1,"Collège Henri Georges Adam",48.739223,2.305398,,1,,Europe/Paris,,OIF, +OIF:SA:62:32890,1,"Georges Besse 2",48.730106,2.310091,,1,,Europe/Paris,,OIF, +OIF:SA:62:32910,1,"Bel Air",48.730086,2.301511,,1,,Europe/Paris,,OIF, +OIF:SA:62:32940,1,"Mairie de Wissous",48.731942,2.327842,,1,,Europe/Paris,,OIF, +OIF:SA:62:32950,1,"Les Imbergères",48.776525,2.293823,,1,,Europe/Paris,,OIF, +OIF:SA:62:33020,1,"Les Morins",48.740641,2.311914,,1,,Europe/Paris,,OIF, +OIF:SA:62:34001,1,"Mésanges",48.781912,2.280082,,1,,Europe/Paris,,OIF, +OIF:SA:62:34031,1,"Les Roses",48.788997,2.267424,,1,,Europe/Paris,,OIF, +OIF:SA:62:34061,1,"Paul Jaudé",48.782629,2.2746,,1,,Europe/Paris,,OIF, +OIF:SA:62:34071,1,"Gustave Robin",48.779997,2.278126,,1,,Europe/Paris,,OIF, +OIF:SA:62:34090,1,"Boris Vildé",48.785982,2.275603,,1,,Europe/Paris,,OIF, +OIF:SA:62:35010,1,"Progrès",48.790366,2.271625,,1,,Europe/Paris,,OIF, +OIF:SA:62:35020,1,"Arthur Ranc",48.784669,2.274747,,1,,Europe/Paris,,OIF, +OIF:SA:62:35030,1,"Méditerrannée",48.738252,2.290063,,1,,Europe/Paris,,OIF, +OIF:SA:62:35050,1,"Rue des Champs",48.754585,2.29395,,1,,Europe/Paris,,OIF, +OIF:SA:62:35060,1,"Colonel Fabien",48.752911,2.287563,,1,,Europe/Paris,,OIF, +OIF:SA:62:35070,1,"Léon Blum",48.759653,2.301403,,1,,Europe/Paris,,OIF, +OIF:SA:62:35080,1,"Augusta Antony RER",48.756888,2.299508,,1,,Europe/Paris,,OIF, +OIF:SA:62:35090,1,"Roger Salengro",48.770441,2.275512,,1,,Europe/Paris,,OIF, +OIF:SA:62:36010,1,"Espace Vasarely",48.750255,2.300362,,1,,Europe/Paris,,OIF, +OIF:SA:62:37170,1,"Victor Vernadat",48.778263,2.263304,,1,,Europe/Paris,,OIF, +OIF:SA:62:37180,1,"Maison des Arts",48.778077,2.254152,,1,,Europe/Paris,,OIF, +OIF:SA:62:37190,1,"Cité Jardin - Place des Alliés",48.77638,2.257119,,1,,Europe/Paris,,OIF, +OIF:SA:63:1,1,"Mairie",48.411794,3.391827,,1,,Europe/Paris,,OIF, +OIF:SA:63:10,1,"Mairie / École",48.410535,3.355547,,1,,Europe/Paris,,OIF, +OIF:SA:63:101,1,"Mairie",48.483199,3.250775,,1,,Europe/Paris,,OIF, +OIF:SA:63:103,1,"Tachy",48.497914,3.249342,,1,,Europe/Paris,,OIF, +OIF:SA:63:105,1,"Les Praillons",48.504075,3.250728,,1,,Europe/Paris,,OIF, +OIF:SA:63:121,1,"Flamboin 3 Chemins",48.476534,3.294213,,1,,Europe/Paris,,OIF, +OIF:SA:63:123,1,"Flamboin Bas",48.473563,3.294781,,1,,Europe/Paris,,OIF, +OIF:SA:63:129,1,"Toury",48.481961,3.365189,,1,,Europe/Paris,,OIF, +OIF:SA:63:13,1,"Bas",48.400521,3.338994,,1,,Europe/Paris,,OIF, +OIF:SA:63:147,1,"Compigny",48.365706,3.275272,,1,,Europe/Paris,,OIF, +OIF:SA:63:15,1,"Briotte",48.399777,3.33559,,1,,Europe/Paris,,OIF, +OIF:SA:63:17,1,"Mairie",48.406352,3.310018,,1,,Europe/Paris,,OIF, +OIF:SA:63:171,1,"La Goujonne",48.427912,3.222236,,1,,Europe/Paris,,OIF, +OIF:SA:63:175,1,"Ecluse",48.393308,3.107256,,1,,Europe/Paris,,OIF, +OIF:SA:63:19,1,"Villiers sur Terre",48.394377,3.297226,,1,,Europe/Paris,,OIF, +OIF:SA:63:201,1,"Rue des Tilleuls",48.421123,3.23723,,1,,Europe/Paris,,OIF, +OIF:SA:63:203,1,"Camping",48.464981,3.316754,,1,,Europe/Paris,,OIF, +OIF:SA:63:21,1,"Mairie",48.383723,3.254255,,1,,Europe/Paris,,OIF, +OIF:SA:63:211,1,"Melun Route de Nangis",48.541331,2.678397,,1,,Europe/Paris,,OIF, +OIF:SA:63:219,1,"Villages Nature",48.831451,2.801146,,1,,Europe/Paris,,OIF, +OIF:SA:63:221,1,"Provins Lycée les Pannevelles",48.547243,3.304359,,1,,Europe/Paris,,OIF, +OIF:SA:63:23,1,"Cimetière",48.387449,3.252647,,1,,Europe/Paris,,OIF, +OIF:SA:63:25,1,"Avigny",48.399594,3.226537,,1,,Europe/Paris,,OIF, +OIF:SA:63:27,1,"Mairie",48.38835,3.089911,,1,,Europe/Paris,,OIF, +OIF:SA:63:29,1,"Église",48.398616,3.120485,,1,,Europe/Paris,,OIF, +OIF:SA:63:3,1,"Vernoy",48.420728,3.333316,,1,,Europe/Paris,,OIF, +OIF:SA:63:31,1,"Mairie",48.398162,3.147103,,1,,Europe/Paris,,OIF, +OIF:SA:63:33,1,"Église",48.398357,3.188279,,1,,Europe/Paris,,OIF, +OIF:SA:63:35,1,"Café",48.397839,3.190883,,1,,Europe/Paris,,OIF, +OIF:SA:63:39,1,"Saint-Fiacre",48.41461,3.226995,,1,,Europe/Paris,,OIF, +OIF:SA:63:41,1,"École",48.410656,3.228555,,1,,Europe/Paris,,OIF, +OIF:SA:63:43,1,"Cimetière",48.411034,3.235591,,1,,Europe/Paris,,OIF, +OIF:SA:63:47,1,"Collège Jean Rostand",48.411271,3.242719,,1,,Europe/Paris,,OIF, +OIF:SA:63:49,1,"Place Mérot",48.420136,3.383459,,1,,Europe/Paris,,OIF, +OIF:SA:63:5,1,"Mairie",48.425237,3.348599,,1,,Europe/Paris,,OIF, +OIF:SA:63:51,1,"Corps de Garde",48.455873,3.376098,,1,,Europe/Paris,,OIF, +OIF:SA:63:53,1,"Place du Calvaire",48.452403,3.350234,,1,,Europe/Paris,,OIF, +OIF:SA:63:55,1,"4 Chemins",48.448784,3.353394,,1,,Europe/Paris,,OIF, +OIF:SA:63:59,1,"Ouinotte",48.442939,3.329739,,1,,Europe/Paris,,OIF, +OIF:SA:63:61,1,"Mairie / École",48.437724,3.317385,,1,,Europe/Paris,,OIF, +OIF:SA:63:67,1,"Boulodrome",48.415148,3.274681,,1,,Europe/Paris,,OIF, +OIF:SA:63:73,1,"Vieux Pont",48.42006,3.238576,,1,,Europe/Paris,,OIF, +OIF:SA:63:75,1,"Mairie",48.420598,3.244143,,1,,Europe/Paris,,OIF, +OIF:SA:63:77,1,"Grand Peugny",48.428613,3.25921,,1,,Europe/Paris,,OIF, +OIF:SA:63:79,1,"Petit Peugny",48.432936,3.250816,,1,,Europe/Paris,,OIF, +OIF:SA:63:81,1,"Neuvry",48.433705,3.281532,,1,,Europe/Paris,,OIF, +OIF:SA:63:83,1,"Silo",48.425293,3.2279,,1,,Europe/Paris,,OIF, +OIF:SA:63:85,1,"Saint-Sauveur",48.437755,3.207946,,1,,Europe/Paris,,OIF, +OIF:SA:63:87,1,"Couture",48.459735,3.212002,,1,,Europe/Paris,,OIF, +OIF:SA:63:89,1,"Moulin Ocle",48.466631,3.229909,,1,,Europe/Paris,,OIF, +OIF:SA:63:91,1,"Place",48.463574,3.227552,,1,,Europe/Paris,,OIF, +OIF:SA:63:95,1,"Boulangerie",48.465872,3.251067,,1,,Europe/Paris,,OIF, +OIF:SA:63:97,1,"Le Verger",48.46814,3.253054,,1,,Europe/Paris,,OIF, +OIF:SA:63:99,1,"Meunier",48.478353,3.251887,,1,,Europe/Paris,,OIF, +OIF:SA:65:1063,1,"Hôpital",49.000543,2.269216,,1,,Europe/Paris,,OIF, +OIF:SA:65:1064,1,"Voltaire",48.993532,2.281331,,1,,Europe/Paris,,OIF, +OIF:SA:65:1066,1,"Paul Nicolas",48.995182,2.283482,,1,,Europe/Paris,,OIF, +OIF:SA:65:1068,1,"Collège Chénier",48.995481,2.287557,,1,,Europe/Paris,,OIF, +OIF:SA:65:107,1,"Carrefour Bury",49.003663,2.281266,,1,,Europe/Paris,,OIF, +OIF:SA:65:1073,1,"Rue d'Enghien",48.988453,2.280453,,1,,Europe/Paris,,OIF, +OIF:SA:65:1075,1,"Jules Ferry",48.984376,2.28207,,1,,Europe/Paris,,OIF, +OIF:SA:65:1077,1,"République",48.982686,2.284318,,1,,Europe/Paris,,OIF, +OIF:SA:65:1078,1,"Edouard Vaillant",48.981037,2.283185,,1,,Europe/Paris,,OIF, +OIF:SA:65:1079,1,"Samson Davilliers",48.986046,2.280129,,1,,Europe/Paris,,OIF, +OIF:SA:65:109,1,"Château de la Chasse",49.023073,2.295519,,1,,Europe/Paris,,OIF, +OIF:SA:65:11,1,"Mairie",49.006788,2.261824,,1,,Europe/Paris,,OIF, +OIF:SA:65:111,1,"Chemin de la Procession Saint-Marc",49.012272,2.281332,,1,,Europe/Paris,,OIF, +OIF:SA:65:113,1,"Clos des Bottes",49.014595,2.285867,,1,,Europe/Paris,,OIF, +OIF:SA:65:114,1,"La Picarde",49.015947,2.288563,,1,,Europe/Paris,,OIF, +OIF:SA:65:116,1,"Victor Hugo",49.003607,2.261494,,1,,Europe/Paris,,OIF, +OIF:SA:65:1163,1,"Centre Médical",49.045849,2.297284,,1,,Europe/Paris,,OIF, +OIF:SA:65:1165,1,"Église",49.043685,2.296321,,1,,Europe/Paris,,OIF, +OIF:SA:65:1167,1,"Mairie",49.043095,2.298515,,1,,Europe/Paris,,OIF, +OIF:SA:65:1169,1,"Berthelot / Mitterrand",49.042726,2.303192,,1,,Europe/Paris,,OIF, +OIF:SA:65:1171,1,"Cordonnier",49.041557,2.306958,,1,,Europe/Paris,,OIF, +OIF:SA:65:1173,1,"10 Arpents",49.040497,2.309677,,1,,Europe/Paris,,OIF, +OIF:SA:65:1175,1,"Bibliothèque",49.041956,2.317466,,1,,Europe/Paris,,OIF, +OIF:SA:65:1177,1,"Poste",49.045374,2.319629,,1,,Europe/Paris,,OIF, +OIF:SA:65:1181,1,"Collège",49.04107,2.311107,,1,,Europe/Paris,,OIF, +OIF:SA:65:122,1,"Chemin de Viarmes",49.050381,2.335935,,1,,Europe/Paris,,OIF, +OIF:SA:65:126,1,"Beau Site",49.005143,2.267659,,1,,Europe/Paris,,OIF, +OIF:SA:65:131,1,"Fontaine Renée",48.993619,2.318736,,1,,Europe/Paris,,OIF, +OIF:SA:65:135,1,"Rue de Saint-Prix",49.004885,2.272495,,1,,Europe/Paris,,OIF, +OIF:SA:65:137,1,"Jean Jacques Rousseau",48.998226,2.280834,,1,,Europe/Paris,,OIF, +OIF:SA:65:138,1,"Hector Carlin",48.999971,2.259417,,1,,Europe/Paris,,OIF, +OIF:SA:65:141,1,"Les Chalets",48.998808,2.285867,,1,,Europe/Paris,,OIF, +OIF:SA:65:16,1,"Marche",48.99053,2.259329,,1,,Europe/Paris,,OIF, +OIF:SA:65:2,1,"Léon Cordier",49.015337,2.266628,,1,,Europe/Paris,,OIF, +OIF:SA:65:20,1,"Clairière",49.038172,2.311597,,1,,Europe/Paris,,OIF, +OIF:SA:65:26,1,"Rue de la République",49.043233,2.302433,,1,,Europe/Paris,,OIF, +OIF:SA:65:28,1,"Trait d'Union",49.044874,2.309948,,1,,Europe/Paris,,OIF, +OIF:SA:65:3090,1,"Gare du Gros Noyer",48.99696,2.25921,,1,,Europe/Paris,,OIF, +OIF:SA:65:3105,1,"Mairie",49.048076,2.336174,,1,,Europe/Paris,,OIF, +OIF:SA:65:3164,1,"Mont Eaubonne",48.991377,2.287758,,1,,Europe/Paris,,OIF, +OIF:SA:65:344,1,"La Sablière",48.987555,2.273657,,1,,Europe/Paris,,OIF, +OIF:SA:65:35,1,"Chemin du Lavoir",49.028674,2.318812,,1,,Europe/Paris,,OIF, +OIF:SA:65:36,1,"Les Fougères",49.033499,2.314423,,1,,Europe/Paris,,OIF, +OIF:SA:65:38,1,"Place de la République",49.025046,2.324295,,1,,Europe/Paris,,OIF, +OIF:SA:65:4,1,"Reinebourg",49.013263,2.268776,,1,,Europe/Paris,,OIF, +OIF:SA:65:40,1,"Les Cailloux",48.997614,2.269725,,1,,Europe/Paris,,OIF, +OIF:SA:65:42,1,"Chaussée Jules César",48.985223,2.272738,,1,,Europe/Paris,,OIF, +OIF:SA:65:49,1,"Grille Dorée",48.998979,2.277761,,1,,Europe/Paris,,OIF, +OIF:SA:65:5,1,"Ribordy",49.012229,2.268845,,1,,Europe/Paris,,OIF, +OIF:SA:65:63,1,"Mairie Montlignon",49.008749,2.284739,,1,,Europe/Paris,,OIF, +OIF:SA:65:66,1,"Place du Souvenir",49.006279,2.283257,,1,,Europe/Paris,,OIF, +OIF:SA:65:68,1,"Route des Parquets",49.016936,2.281135,,1,,Europe/Paris,,OIF, +OIF:SA:65:69,1,"Rue de Saint-Prix",49.010089,2.285172,,1,,Europe/Paris,,OIF, +OIF:SA:65:7,1,"Rue de l'Yser",49.012155,2.264016,,1,,Europe/Paris,,OIF, +OIF:SA:65:72,1,"Rue des Briquetteries",49.013928,2.286521,,1,,Europe/Paris,,OIF, +OIF:SA:65:73,1,"Rue du Cimetière",49.009566,2.280078,,1,,Europe/Paris,,OIF, +OIF:SA:65:74,1,"Mairie Lycée",48.991049,2.319317,,1,,Europe/Paris,,OIF, +OIF:SA:65:77,1,"Schweitzer",48.995093,2.303044,,1,,Europe/Paris,,OIF, +OIF:SA:65:79,1,"Place Aristide Briand",48.991554,2.274871,,1,,Europe/Paris,,OIF, +OIF:SA:65:81,1,"Place Charles de Gaulle",48.995037,2.275225,,1,,Europe/Paris,,OIF, +OIF:SA:65:85,1,"RPA Dangien",48.992684,2.28646,,1,,Europe/Paris,,OIF, +OIF:SA:65:888,1,"Pompiers",48.999184,2.273124,,1,,Europe/Paris,,OIF, +OIF:SA:65:92,1,"Collège Bury",49.002747,2.283759,,1,,Europe/Paris,,OIF, +OIF:SA:65:94,1,"Mairie Margency",49.001303,2.288603,,1,,Europe/Paris,,OIF, +OIF:SA:65:96,1,"Parc des Tuileries",48.999978,2.291752,,1,,Europe/Paris,,OIF, +OIF:SA:65:98,1,"Lycée Louis Armand",48.997531,2.284263,,1,,Europe/Paris,,OIF, +OIF:SA:66:10392,1,"Station de Pompage",48.578234,2.488643,,1,,Europe/Paris,,OIF, +OIF:SA:66:10924,1,"Brie 447",48.618077,2.49648,,1,,Europe/Paris,,OIF, +OIF:SA:66:10926,1,"Centre Commercial / Centre Ville",48.619779,2.491144,,1,,Europe/Paris,,OIF, +OIF:SA:66:10928,1,"Carr. Giono/Claudel",48.627986,2.497643,,1,,Europe/Paris,,OIF, +OIF:SA:66:10930,1,"Saint-Exupéry / Ivs",48.623976,2.49142,,1,,Europe/Paris,,OIF, +OIF:SA:66:10935,1,"Château/Mairie",48.619009,2.48481,,1,,Europe/Paris,,OIF, +OIF:SA:66:10937,1,"École Champ Dolent",48.625369,2.498957,,1,,Europe/Paris,,OIF, +OIF:SA:66:10939,1,"École Croix Verte",48.625418,2.495554,,1,,Europe/Paris,,OIF, +OIF:SA:66:10942,1,"Golf Lacoste",48.632508,2.490734,,1,,Europe/Paris,,OIF, +OIF:SA:66:10944,1,"Golf Coubertin",48.63541,2.491895,,1,,Europe/Paris,,OIF, +OIF:SA:66:10946,1,"Golf Garaialde 21",48.634535,2.487675,,1,,Europe/Paris,,OIF, +OIF:SA:66:10948,1,"Le Golf",48.629275,2.491999,,1,,Europe/Paris,,OIF, +OIF:SA:66:10950,1,"Les Prés Hauts",48.623858,2.499386,,1,,Europe/Paris,,OIF, +OIF:SA:66:10952,1,"Puget",48.62229,2.502269,,1,,Europe/Paris,,OIF, +OIF:SA:66:10954,1,"Place Rodin",48.620403,2.501585,,1,,Europe/Paris,,OIF, +OIF:SA:66:10956,1,"Pré Saint-Germain",48.62076,2.497112,,1,,Europe/Paris,,OIF, +OIF:SA:66:10960,1,"Rue Degas",48.618848,2.501445,,1,,Europe/Paris,,OIF, +OIF:SA:66:10964,1,"Trou Grillon",48.617472,2.498444,,1,,Europe/Paris,,OIF, +OIF:SA:66:11031,1,"Château",48.613399,2.502797,,1,,Europe/Paris,,OIF, +OIF:SA:66:11035,1,"Rue Corbeil / Chèvres",48.605679,2.498414,,1,,Europe/Paris,,OIF, +OIF:SA:66:11041,1,"Vieux Marché",48.615914,2.490868,,1,,Europe/Paris,,OIF, +OIF:SA:66:11043,1,"Yourcenar / Claudel",48.613736,2.505808,,1,,Europe/Paris,,OIF, +OIF:SA:66:11045,1,"Arcadie",48.602195,2.491939,,1,,Europe/Paris,,OIF, +OIF:SA:66:11063,1,"Rue Bourgoin",48.607196,2.492875,,1,,Europe/Paris,,OIF, +OIF:SA:66:11067,1,"Stade",48.591239,2.493932,,1,,Europe/Paris,,OIF, +OIF:SA:66:14789,1,"Louise de France",48.639959,2.468959,,1,,Europe/Paris,,OIF, +OIF:SA:66:14797,1,"Notre-Dame de Sion",48.641395,2.434124,,1,,Europe/Paris,,OIF, +OIF:SA:66:14809,1,"Gare la Vallée Feu/Pont",48.633998,2.45347,,1,,Europe/Paris,,OIF, +OIF:SA:66:14811,1,"Écureuils",48.642213,2.467324,,1,,Europe/Paris,,OIF, +OIF:SA:66:14813,1,"Arts Martiaux",48.641529,2.464243,,1,,Europe/Paris,,OIF, +OIF:SA:66:8888,1,"Chaufferie",48.617189,2.465932,,1,,Europe/Paris,,OIF, +OIF:SA:66:8923,1,"Saint-Léonard",48.614572,2.486071,,1,,Europe/Paris,,OIF, +OIF:SA:66:9391,1,"Bois Huguenot",48.63218,2.472072,,1,,Europe/Paris,,OIF, +OIF:SA:66:9393,1,"Centre / Village",48.637269,2.471502,,1,,Europe/Paris,,OIF, +OIF:SA:66:9394,1,"Collardeau",48.63188,2.467732,,1,,Europe/Paris,,OIF, +OIF:SA:66:9399,1,"Grande Rue",48.635767,2.47196,,1,,Europe/Paris,,OIF, +OIF:SA:66:9402,1,"Mairie",48.636439,2.474036,,1,,Europe/Paris,,OIF, +OIF:SA:66:9404,1,"Parc aux Chênes",48.633314,2.478951,,1,,Europe/Paris,,OIF, +OIF:SA:66:9406,1,"Parc de Jarcy",48.640597,2.461582,,1,,Europe/Paris,,OIF, +OIF:SA:66:9408,1,"Parc de Sénart",48.648254,2.466695,,1,,Europe/Paris,,OIF, +OIF:SA:66:9481,1,"Montesquieu",48.638727,2.437564,,1,,Europe/Paris,,OIF, +OIF:SA:67:14786,1,"Rue Nicephore Niepce",48.524257,2.033405,,1,,Europe/Paris,,OIF, +OIF:SA:67:14788,1,"Piscine",48.530277,2.027069,,1,,Europe/Paris,,OIF, +OIF:SA:67:14790,1,"Zone Industrielle l'Ermitage",48.524698,2.021385,,1,,Europe/Paris,,OIF, +OIF:SA:67:14791,1,"V.V.F Belanbra",48.521907,2.015007,,1,,Europe/Paris,,OIF, +OIF:SA:67:14795,1,"Zone Artisanale la Bellette",48.522967,2.00165,,1,,Europe/Paris,,OIF, +OIF:SA:67:14797,1,"Rue de Châteaudun",48.524515,2.002479,,1,,Europe/Paris,,OIF, +OIF:SA:67:14798,1,"Bresse",48.52358,2.005605,,1,,Europe/Paris,,OIF, +OIF:SA:67:14799,1,"Boulevard des Alliés",48.531898,2.01171,,1,,Europe/Paris,,OIF, +OIF:SA:67:14800,1,"Résidence du Parc",48.530149,2.021006,,1,,Europe/Paris,,OIF, +OIF:SA:67:14801,1,"Chemin du Pont Guenée",48.528098,2.027306,,1,,Europe/Paris,,OIF, +OIF:SA:67:14802,1,"R.P la Gaudrée",48.523986,2.025963,,1,,Europe/Paris,,OIF, +OIF:SA:67:14805,1,"ZI Lavoisier",48.524277,2.023769,,1,,Europe/Paris,,OIF, +OIF:SA:67:14807,1,"Rue Orsonville",48.522596,2.020409,,1,,Europe/Paris,,OIF, +OIF:SA:67:14810,1,"Le Potelet",48.532702,2.001364,,1,,Europe/Paris,,OIF, +OIF:SA:67:14812,1,"Avenue de Paris",48.530368,2.03251,,1,,Europe/Paris,,OIF, +OIF:SA:67:14814,1,"Hôpital Rue Faubourg de Chartres",48.534271,2.003012,,1,,Europe/Paris,,OIF, +OIF:SA:67:9006,1,"Avenue d'Étampes",48.523699,2.016018,,1,,Europe/Paris,,OIF, +OIF:SA:67:9007,1,"Maison Retraite",48.536072,2.004057,,1,,Europe/Paris,,OIF, +OIF:SA:67:9009,1,"Jeanne d'Arc",48.52824,2.013351,,1,,Europe/Paris,,OIF, +OIF:SA:67:9017,1,"Chapelle Saint-Laurent",48.52346,2.014328,,1,,Europe/Paris,,OIF, +OIF:SA:67:9021,1,"Cimetière",48.535571,2.01493,,1,,Europe/Paris,,OIF, +OIF:SA:67:9022,1,"Clos Fortin",48.533582,2.015592,,1,,Europe/Paris,,OIF, +OIF:SA:67:9030,1,"Centre Commercial / Croix Saint-Jacques",48.52594,2.008743,,1,,Europe/Paris,,OIF, +OIF:SA:67:9032,1,"Château-Syndicat",48.529437,2.010447,,1,,Europe/Paris,,OIF, +OIF:SA:67:9041,1,"Centre Hospitalier Général",48.534577,2.000236,,1,,Europe/Paris,,OIF, +OIF:SA:67:9046,1,"Jules Ferry",48.524821,2.012282,,1,,Europe/Paris,,OIF, +OIF:SA:67:9053,1,"Mairie",48.528847,2.015106,,1,,Europe/Paris,,OIF, +OIF:SA:67:9054,1,"Marché aux Grains",48.529023,2.013617,,1,,Europe/Paris,,OIF, +OIF:SA:67:9056,1,"Place du Chariot",48.527117,2.013588,,1,,Europe/Paris,,OIF, +OIF:SA:67:9057,1,"Les Mésanges",48.522506,2.01045,,1,,Europe/Paris,,OIF, +OIF:SA:67:9060,1,"Rue Gautreau",48.530589,2.015881,,1,,Europe/Paris,,OIF, +OIF:SA:68:100,1,"Foyer Rural",49.059615,1.543554,,1,,Europe/Paris,,OIF, +OIF:SA:68:101,1,"Isobox",49.072536,1.542059,,1,,Europe/Paris,,OIF, +OIF:SA:68:103,1,"Pompiers",49.057583,1.537415,,1,,Europe/Paris,,OIF, +OIF:SA:68:113,1,"Mairie",49.061607,1.52313,,1,,Europe/Paris,,OIF, +OIF:SA:68:119,1,"Église",49.082045,1.586052,,1,,Europe/Paris,,OIF, +OIF:SA:68:12,1,"Les Perruches",49.035846,1.488067,,1,,Europe/Paris,,OIF, +OIF:SA:68:121,1,"Place Louise Henry",48.976512,1.53975,,1,,Europe/Paris,,OIF, +OIF:SA:68:123,1,"Gendarmerie",49.101687,1.468426,,1,,Europe/Paris,,OIF, +OIF:SA:68:125,1,"N15 / Rue des Prés",49.105495,1.457037,,1,,Europe/Paris,,OIF, +OIF:SA:68:127,1,"Tourelles",49.101979,1.45115,,1,,Europe/Paris,,OIF, +OIF:SA:68:129,1,"Rue Port aux Vins",48.870339,2.230067,,1,,Europe/Paris,,OIF, +OIF:SA:68:131,1,"Tripleval",49.052388,1.590711,,1,,Europe/Paris,,OIF, +OIF:SA:68:133,1,"Ardèche",49.087673,1.480812,,1,,Europe/Paris,,OIF, +OIF:SA:68:135,1,"Bourdines",49.078086,1.498795,,1,,Europe/Paris,,OIF, +OIF:SA:68:137,1,"Boutardes",49.07783,1.493054,,1,,Europe/Paris,,OIF, +OIF:SA:68:143,1,"La Grosse Borne",49.10067,1.471222,,1,,Europe/Paris,,OIF, +OIF:SA:68:147,1,"Lycée Dumézil",49.081628,1.476822,,1,,Europe/Paris,,OIF, +OIF:SA:68:149,1,"Lycée Saint-Adjutor",49.082775,1.459729,,1,,Europe/Paris,,OIF, +OIF:SA:68:15,1,"Place",49.047617,1.478468,,1,,Europe/Paris,,OIF, +OIF:SA:68:155,1,"Petit Val",49.075199,1.511412,,1,,Europe/Paris,,OIF, +OIF:SA:68:157,1,"République",49.090521,1.484452,,1,,Europe/Paris,,OIF, +OIF:SA:68:159,1,"SNECMA",49.107706,1.496418,,1,,Europe/Paris,,OIF, +OIF:SA:68:17,1,"Église",49.039887,1.56654,,1,,Europe/Paris,,OIF, +OIF:SA:68:174,1,"Blaru le Chêne Godon",49.051378,1.502571,,1,,Europe/Paris,,OIF, +OIF:SA:68:176,1,"Notre-Dame de la Mer",49.044243,1.526165,,1,,Europe/Paris,,OIF, +OIF:SA:68:178,1,"La Haie de Beranville / les 4 Stops",49.028277,1.535162,,1,,Europe/Paris,,OIF, +OIF:SA:68:180,1,"Centre",49.015104,1.485146,,1,,Europe/Paris,,OIF, +OIF:SA:68:182,1,"La Croix",48.993726,1.489141,,1,,Europe/Paris,,OIF, +OIF:SA:68:184,1,"Chemin du Moulin",48.993632,1.508771,,1,,Europe/Paris,,OIF, +OIF:SA:68:186,1,"Église",48.993315,1.513642,,1,,Europe/Paris,,OIF, +OIF:SA:68:19,1,"Gloton",49.045864,1.58113,,1,,Europe/Paris,,OIF, +OIF:SA:68:192,1,"Vernon Hôpital",49.091256,1.488723,,1,,Europe/Paris,,OIF, +OIF:SA:68:193,1,"Grand Val",49.074481,1.512108,,1,,Europe/Paris,,OIF, +OIF:SA:68:195,1,"Poterie",49.081343,1.484265,,1,,Europe/Paris,,OIF, +OIF:SA:68:21,1,"Mairie",49.040614,1.569889,,1,,Europe/Paris,,OIF, +OIF:SA:68:23,1,"Voie Jurée",49.040575,1.553189,,1,,Europe/Paris,,OIF, +OIF:SA:68:25,1,"Zola",49.041461,1.571681,,1,,Europe/Paris,,OIF, +OIF:SA:68:27,1,"Bois Cahué",49.032971,1.56364,,1,,Europe/Paris,,OIF, +OIF:SA:68:29,1,"Berthelot",49.034661,1.572075,,1,,Europe/Paris,,OIF, +OIF:SA:68:31,1,"Deschamps",49.035223,1.573475,,1,,Europe/Paris,,OIF, +OIF:SA:68:35,1,"Thiers",49.035349,1.579213,,1,,Europe/Paris,,OIF, +OIF:SA:68:37,1,"Église",48.946138,1.534115,,1,,Europe/Paris,,OIF, +OIF:SA:68:39,1,"Les Bossus",48.962745,1.537939,,1,,Europe/Paris,,OIF, +OIF:SA:68:41,1,"Le Hamel",48.953303,1.535089,,1,,Europe/Paris,,OIF, +OIF:SA:68:43,1,"Mairie",48.944829,1.533965,,1,,Europe/Paris,,OIF, +OIF:SA:68:51,1,"Clachaloze",49.058727,1.597823,,1,,Europe/Paris,,OIF, +OIF:SA:68:53,1,"Boite aux Lettres",48.99557,1.488497,,1,,Europe/Paris,,OIF, +OIF:SA:68:55,1,"Mairie",48.991207,1.489797,,1,,Europe/Paris,,OIF, +OIF:SA:68:6,1,"Église",49.049489,1.477548,,1,,Europe/Paris,,OIF, +OIF:SA:68:65,1,"Rue de Vernon",49.089324,1.599129,,1,,Europe/Paris,,OIF, +OIF:SA:68:67,1,"Salle des Fêtes",49.09309,1.605198,,1,,Europe/Paris,,OIF, +OIF:SA:68:69,1,"Cimetière",49.076698,1.593304,,1,,Europe/Paris,,OIF, +OIF:SA:68:71,1,"Place de Gaulle",49.076471,1.592565,,1,,Europe/Paris,,OIF, +OIF:SA:68:77,1,"Sergenterie",49.09113,1.602065,,1,,Europe/Paris,,OIF, +OIF:SA:68:79,1,"Église",49.037123,1.541709,,1,,Europe/Paris,,OIF, +OIF:SA:68:8,1,"Le Chênet",49.038847,1.486125,,1,,Europe/Paris,,OIF, +OIF:SA:68:81,1,"Mairie",49.037512,1.528793,,1,,Europe/Paris,,OIF, +OIF:SA:68:85,1,"La Haie Beranville / Arrêt de Car",49.026164,1.536425,,1,,Europe/Paris,,OIF, +OIF:SA:68:91,1,"La Tuilerie",48.994704,1.529759,,1,,Europe/Paris,,OIF, +OIF:SA:68:93,1,"Allée d'Aise",49.049146,1.541671,,1,,Europe/Paris,,OIF, +OIF:SA:68:95,1,"Bois de Merville",49.044483,1.545772,,1,,Europe/Paris,,OIF, +OIF:SA:68:97,1,"Église",49.060775,1.546507,,1,,Europe/Paris,,OIF, +OIF:SA:6:10,1,"Tabac",48.978626,2.841117,,1,,Europe/Paris,,OIF, +OIF:SA:6:100,1,"Centre",49.017904,2.591449,,1,,Europe/Paris,,OIF, +OIF:SA:6:102,1,"Église",49.017414,2.593694,,1,,Europe/Paris,,OIF, +OIF:SA:6:104,1,"Grande Borne",49.014929,2.600219,,1,,Europe/Paris,,OIF, +OIF:SA:6:106,1,"Rue du Gué",49.020823,2.598589,,1,,Europe/Paris,,OIF, +OIF:SA:6:108,1,"Rue de Guivry",49.023559,2.598705,,1,,Europe/Paris,,OIF, +OIF:SA:6:110,1,"Route Nationale",49.019722,2.586801,,1,,Europe/Paris,,OIF, +OIF:SA:6:115,1,"Grands Moulins de Paris",48.956515,2.872698,,1,,Europe/Paris,,OIF, +OIF:SA:6:116,1,"Henri IV",48.959398,2.8831,,1,,Europe/Paris,,OIF, +OIF:SA:6:119,1,"LEP Coubertin",48.957577,2.864357,,1,,Europe/Paris,,OIF, +OIF:SA:6:12,1,"Zone Industrielle de la Râperie",48.958892,2.849181,,1,,Europe/Paris,,OIF, +OIF:SA:6:120,1,"Collège Langevin / Lycée Balzac",48.97305,2.650821,,1,,Europe/Paris,,OIF, +OIF:SA:6:121,1,"Le Gué",49.026665,2.750547,,1,,Europe/Paris,,OIF, +OIF:SA:6:123,1,"La Barogne",49.064639,2.596664,,1,,Europe/Paris,,OIF, +OIF:SA:6:125,1,"Centre",49.063755,2.602485,,1,,Europe/Paris,,OIF, +OIF:SA:6:127,1,"Les Clos",49.066464,2.606273,,1,,Europe/Paris,,OIF, +OIF:SA:6:128,1,"Les Echabots",49.061322,2.607231,,1,,Europe/Paris,,OIF, +OIF:SA:6:130,1,"La Fortelle",49.064304,2.599711,,1,,Europe/Paris,,OIF, +OIF:SA:6:132,1,"Rond-Point de l'Étang",49.068787,2.604507,,1,,Europe/Paris,,OIF, +OIF:SA:6:134,1,"Institut Saint-Dominique",49.109185,2.605292,,1,,Europe/Paris,,OIF, +OIF:SA:6:136,1,"Centre",49.007404,2.826767,,1,,Europe/Paris,,OIF, +OIF:SA:6:139,1,"Château Gaillard",49.002918,2.845062,,1,,Europe/Paris,,OIF, +OIF:SA:6:141,1,"Déchetterie",49.018012,2.82419,,1,,Europe/Paris,,OIF, +OIF:SA:6:143,1,"Gambetta",49.004043,2.829699,,1,,Europe/Paris,,OIF, +OIF:SA:6:145,1,"La Marche",49.009775,2.836332,,1,,Europe/Paris,,OIF, +OIF:SA:6:147,1,"Salle des Fêtes",49.009123,2.828976,,1,,Europe/Paris,,OIF, +OIF:SA:6:149,1,"Centre",49.046819,2.624564,,1,,Europe/Paris,,OIF, +OIF:SA:6:15,1,"Lycée Professionnel le Champ de Claye",48.938113,2.675983,,1,,Europe/Paris,,OIF, +OIF:SA:6:151,1,"Loto",49.050349,2.619423,,1,,Europe/Paris,,OIF, +OIF:SA:6:152,1,"Les Ouches",49.043658,2.625387,,1,,Europe/Paris,,OIF, +OIF:SA:6:157,1,"Centre",49.002836,2.700099,,1,,Europe/Paris,,OIF, +OIF:SA:6:159,1,"Rue du 26 Août 1944",49.071249,2.810208,,1,,Europe/Paris,,OIF, +OIF:SA:6:16,1,"Mairie",48.993877,2.66345,,1,,Europe/Paris,,OIF, +OIF:SA:6:160,1,"Collège Jean des Barres",49.071353,2.811207,,1,,Europe/Paris,,OIF, +OIF:SA:6:161,1,"Claude Monet",49.066868,2.824705,,1,,Europe/Paris,,OIF, +OIF:SA:6:163,1,"Rue de Condé",49.073337,2.820513,,1,,Europe/Paris,,OIF, +OIF:SA:6:164,1,"Église",49.070265,2.818077,,1,,Europe/Paris,,OIF, +OIF:SA:6:166,1,"Gros Merisier",49.073725,2.824647,,1,,Europe/Paris,,OIF, +OIF:SA:6:167,1,"Hildevert",49.0709,2.816537,,1,,Europe/Paris,,OIF, +OIF:SA:6:168,1,"Jeannine Pernette",49.070123,2.815292,,1,,Europe/Paris,,OIF, +OIF:SA:6:170,1,"La Paix",49.068574,2.823012,,1,,Europe/Paris,,OIF, +OIF:SA:6:172,1,"Beaupré",49.081583,2.668827,,1,,Europe/Paris,,OIF, +OIF:SA:6:173,1,"Froids Vents",49.078112,2.676006,,1,,Europe/Paris,,OIF, +OIF:SA:6:175,1,"Guincourt",49.079654,2.674074,,1,,Europe/Paris,,OIF, +OIF:SA:6:177,1,"La Jalaise",49.07118,2.677438,,1,,Europe/Paris,,OIF, +OIF:SA:6:179,1,"Mairie",49.075027,2.675357,,1,,Europe/Paris,,OIF, +OIF:SA:6:18,1,"Le Blamont",48.972452,2.86786,,1,,Europe/Paris,,OIF, +OIF:SA:6:181,1,"Pierre Augustin Caron",49.084323,2.650568,,1,,Europe/Paris,,OIF, +OIF:SA:6:183,1,"Saint-Laurent",49.083673,2.64661,,1,,Europe/Paris,,OIF, +OIF:SA:6:184,1,"Route de Chambry",48.988202,2.860791,,1,,Europe/Paris,,OIF, +OIF:SA:6:186,1,"Mairie",48.985804,2.860289,,1,,Europe/Paris,,OIF, +OIF:SA:6:188,1,"Les Penchardaises",48.990568,2.857989,,1,,Europe/Paris,,OIF, +OIF:SA:6:189,1,"Résidence aux Bois",48.98344,2.855398,,1,,Europe/Paris,,OIF, +OIF:SA:6:192,1,"Mairie",49.095078,2.756473,,1,,Europe/Paris,,OIF, +OIF:SA:6:194,1,"Pharmacie",49.092119,2.752002,,1,,Europe/Paris,,OIF, +OIF:SA:6:196,1,"La Baste",48.997364,2.77491,,1,,Europe/Paris,,OIF, +OIF:SA:6:197,1,"Centre",49.003045,2.768341,,1,,Europe/Paris,,OIF, +OIF:SA:6:199,1,"Église",49.007991,2.784344,,1,,Europe/Paris,,OIF, +OIF:SA:6:2,1,"Chantonne",48.976831,2.839283,,1,,Europe/Paris,,OIF, +OIF:SA:6:205,1,"Église",49.062214,2.717063,,1,,Europe/Paris,,OIF, +OIF:SA:6:207,1,"Les Rouvrines",49.063612,2.716765,,1,,Europe/Paris,,OIF, +OIF:SA:6:213,1,"Centre",49.035621,2.694637,,1,,Europe/Paris,,OIF, +OIF:SA:6:215,1,"Collège Georges Brassens",49.038566,2.70305,,1,,Europe/Paris,,OIF, +OIF:SA:6:216,1,"Rue Curie",49.038035,2.700134,,1,,Europe/Paris,,OIF, +OIF:SA:6:218,1,"Église",49.036492,2.691889,,1,,Europe/Paris,,OIF, +OIF:SA:6:220,1,"Avenue de la Gare",49.033914,2.696087,,1,,Europe/Paris,,OIF, +OIF:SA:6:222,1,"Parc du Carrouge",49.035661,2.69927,,1,,Europe/Paris,,OIF, +OIF:SA:6:225,1,"Les Tournelles",49.03959,2.692621,,1,,Europe/Paris,,OIF, +OIF:SA:6:227,1,"Vigne de Pâques",49.041997,2.706395,,1,,Europe/Paris,,OIF, +OIF:SA:6:228,1,"ZA Fontaine des Tournelles",49.038043,2.68715,,1,,Europe/Paris,,OIF, +OIF:SA:6:23,1,"Centre",49.020522,2.772442,,1,,Europe/Paris,,OIF, +OIF:SA:6:230,1,"Rue des Bouleaux",49.080132,2.792711,,1,,Europe/Paris,,OIF, +OIF:SA:6:231,1,"Centre Commerciale",49.07514,2.788037,,1,,Europe/Paris,,OIF, +OIF:SA:6:233,1,"Les Écoles",49.073059,2.792964,,1,,Europe/Paris,,OIF, +OIF:SA:6:235,1,"Les Frênes",49.083568,2.789568,,1,,Europe/Paris,,OIF, +OIF:SA:6:236,1,"Haute Garenne",49.078048,2.782913,,1,,Europe/Paris,,OIF, +OIF:SA:6:237,1,"Mairie",49.069783,2.801469,,1,,Europe/Paris,,OIF, +OIF:SA:6:239,1,"Maisonneuve",49.071646,2.797253,,1,,Europe/Paris,,OIF, +OIF:SA:6:24,1,"Chambrefontaine",49.016116,2.779277,,1,,Europe/Paris,,OIF, +OIF:SA:6:241,1,"Moulin à Vent",49.071107,2.805235,,1,,Europe/Paris,,OIF, +OIF:SA:6:243,1,"Les Ormes",49.081788,2.790811,,1,,Europe/Paris,,OIF, +OIF:SA:6:245,1,"Rouge Chaperon",49.077118,2.78417,,1,,Europe/Paris,,OIF, +OIF:SA:6:247,1,"Les Sources",49.076425,2.790401,,1,,Europe/Paris,,OIF, +OIF:SA:6:249,1,"Stade",49.077979,2.794053,,1,,Europe/Paris,,OIF, +OIF:SA:6:251,1,"Rue de l'Yonne",49.068127,2.804415,,1,,Europe/Paris,,OIF, +OIF:SA:6:253,1,"ZA Noëfort",49.065655,2.77605,,1,,Europe/Paris,,OIF, +OIF:SA:6:255,1,"Église",49.039664,2.806372,,1,,Europe/Paris,,OIF, +OIF:SA:6:257,1,"Ferme de l'Etrille",49.0377,2.80198,,1,,Europe/Paris,,OIF, +OIF:SA:6:259,1,"Logis Vert",49.042408,2.809172,,1,,Europe/Paris,,OIF, +OIF:SA:6:26,1,"Bergamottes",49.058754,2.690777,,1,,Europe/Paris,,OIF, +OIF:SA:6:261,1,"Maréchal Gallieni",49.034337,2.803802,,1,,Europe/Paris,,OIF, +OIF:SA:6:263,1,"Zone Industrielle Épinette",49.036707,2.798582,,1,,Europe/Paris,,OIF, +OIF:SA:6:265,1,"Zone Industrielle du Sauvoy",49.030674,2.805087,,1,,Europe/Paris,,OIF, +OIF:SA:6:267,1,"3 Villes",49.007455,2.669369,,1,,Europe/Paris,,OIF, +OIF:SA:6:269,1,"Centre",49.010276,2.668021,,1,,Europe/Paris,,OIF, +OIF:SA:6:27,1,"Brabant",49.058809,2.699528,,1,,Europe/Paris,,OIF, +OIF:SA:6:271,1,"Saule Madame",49.008057,2.669407,,1,,Europe/Paris,,OIF, +OIF:SA:6:276,1,"Carrefour",49.033234,2.634527,,1,,Europe/Paris,,OIF, +OIF:SA:6:278,1,"Centre",49.033792,2.639484,,1,,Europe/Paris,,OIF, +OIF:SA:6:280,1,"Ferme de Stains",49.020877,2.647149,,1,,Europe/Paris,,OIF, +OIF:SA:6:282,1,"Jeu de Paume",49.033012,2.635462,,1,,Europe/Paris,,OIF, +OIF:SA:6:284,1,"Centre",49.010551,2.733978,,1,,Europe/Paris,,OIF, +OIF:SA:6:286,1,"Centre",48.982042,2.782051,,1,,Europe/Paris,,OIF, +OIF:SA:6:288,1,"Marie Feuchère",49.045962,2.509333,,1,,Europe/Paris,,OIF, +OIF:SA:6:29,1,"Canada",49.056204,2.69603,,1,,Europe/Paris,,OIF, +OIF:SA:6:290,1,"Parc",49.047916,2.506524,,1,,Europe/Paris,,OIF, +OIF:SA:6:293,1,"Zone Industrielle Périchet",49.016755,2.593905,,1,,Europe/Paris,,OIF, +OIF:SA:6:295,1,"22 Arpents",49.064545,2.592287,,1,,Europe/Paris,,OIF, +OIF:SA:6:297,1,"10 Arpents",49.067171,2.573581,,1,,Europe/Paris,,OIF, +OIF:SA:6:299,1,"Vémars Centre",49.068681,2.56699,,1,,Europe/Paris,,OIF, +OIF:SA:6:301,1,"Ferme de Vaulerand",49.052453,2.533698,,1,,Europe/Paris,,OIF, +OIF:SA:6:303,1,"Mairie",49.057205,2.542296,,1,,Europe/Paris,,OIF, +OIF:SA:6:306,1,"Rue Périchet",49.012889,2.584186,,1,,Europe/Paris,,OIF, +OIF:SA:6:31,1,"Collège de l'Europe",49.063968,2.680939,,1,,Europe/Paris,,OIF, +OIF:SA:6:322,1,"Centre Médical",49.067037,2.680563,,1,,Europe/Paris,,OIF, +OIF:SA:6:33,1,"Chabannes",49.061822,2.684877,,1,,Europe/Paris,,OIF, +OIF:SA:6:34,1,"Châtaigners",49.056393,2.691677,,1,,Europe/Paris,,OIF, +OIF:SA:6:35,1,"Cif / DDE",49.061895,2.702545,,1,,Europe/Paris,,OIF, +OIF:SA:6:36,1,"La Corbie",49.055282,2.674729,,1,,Europe/Paris,,OIF, +OIF:SA:6:37,1,"Dom Ganneron",49.061652,2.681457,,1,,Europe/Paris,,OIF, +OIF:SA:6:38,1,"Route d'Eve",49.060696,2.685847,,1,,Europe/Paris,,OIF, +OIF:SA:6:4,1,"Cité Nouvelle",48.970596,2.840049,,1,,Europe/Paris,,OIF, +OIF:SA:6:40,1,"Garenne",49.057599,2.687952,,1,,Europe/Paris,,OIF, +OIF:SA:6:41,1,"Hays Logistique",49.062616,2.696082,,1,,Europe/Paris,,OIF, +OIF:SA:6:42,1,"La Herse d'Or",49.059461,2.694822,,1,,Europe/Paris,,OIF, +OIF:SA:6:44,1,"Jean Baptiste Delambre",49.054143,2.680259,,1,,Europe/Paris,,OIF, +OIF:SA:6:45,1,"Lycée Charlotte Delbo",49.06488,2.680699,,1,,Europe/Paris,,OIF, +OIF:SA:6:46,1,"Mairie",49.053916,2.678124,,1,,Europe/Paris,,OIF, +OIF:SA:6:47,1,"Les Sablons",49.052418,2.688156,,1,,Europe/Paris,,OIF, +OIF:SA:6:49,1,"Semoir",49.061245,2.694527,,1,,Europe/Paris,,OIF, +OIF:SA:6:51,1,"Saint-Fiacre",49.053621,2.685321,,1,,Europe/Paris,,OIF, +OIF:SA:6:53,1,"Trésor Public",49.053256,2.674873,,1,,Europe/Paris,,OIF, +OIF:SA:6:6,1,"Église Saint-Saturnin",48.966152,2.842135,,1,,Europe/Paris,,OIF, +OIF:SA:6:61,1,"Mairie",49.05753,2.847814,,1,,Europe/Paris,,OIF, +OIF:SA:6:63,1,"Centre",49.043571,2.850581,,1,,Europe/Paris,,OIF, +OIF:SA:6:65,1,"Centre",49.000152,2.788667,,1,,Europe/Paris,,OIF, +OIF:SA:6:67,1,"Rue Barre",49.013069,2.706731,,1,,Europe/Paris,,OIF, +OIF:SA:6:69,1,"Église Saint-Étienne",49.012162,2.704966,,1,,Europe/Paris,,OIF, +OIF:SA:6:70,1,"La Rochelle",49.010665,2.702333,,1,,Europe/Paris,,OIF, +OIF:SA:6:72,1,"Mairie",49.01524,2.705644,,1,,Europe/Paris,,OIF, +OIF:SA:6:74,1,"Verdiers",49.017453,2.705083,,1,,Europe/Paris,,OIF, +OIF:SA:6:76,1,"ZA la Source",49.014427,2.709225,,1,,Europe/Paris,,OIF, +OIF:SA:6:78,1,"Château d'Eau",49.085672,2.745637,,1,,Europe/Paris,,OIF, +OIF:SA:6:8,1,"Mairie",48.97394,2.838682,,1,,Europe/Paris,,OIF, +OIF:SA:6:80,1,"Belle Étoile",49.046352,2.664568,,1,,Europe/Paris,,OIF, +OIF:SA:6:82,1,"Condé",49.052329,2.667231,,1,,Europe/Paris,,OIF, +OIF:SA:6:83,1,"Croisement",49.051119,2.671056,,1,,Europe/Paris,,OIF, +OIF:SA:6:87,1,"Église",49.052114,2.663743,,1,,Europe/Paris,,OIF, +OIF:SA:6:88,1,"Gazon",49.047459,2.66385,,1,,Europe/Paris,,OIF, +OIF:SA:6:89,1,"Hamel",49.05237,2.658713,,1,,Europe/Paris,,OIF, +OIF:SA:6:90,1,"Jeu d'Arc",49.052278,2.65632,,1,,Europe/Paris,,OIF, +OIF:SA:6:91,1,"Lycée Charles de Gaulle",49.047064,2.666896,,1,,Europe/Paris,,OIF, +OIF:SA:6:92,1,"Ponceau",49.049934,2.658917,,1,,Europe/Paris,,OIF, +OIF:SA:6:93,1,"Lessart",49.055728,2.739821,,1,,Europe/Paris,,OIF, +OIF:SA:6:95,1,"Mairie",49.050221,2.770824,,1,,Europe/Paris,,OIF, +OIF:SA:6:97,1,"Mairie de Mauregard",49.032834,2.581006,,1,,Europe/Paris,,OIF, +OIF:SA:6:99,1,"20 Arpents",49.019472,2.587528,,1,,Europe/Paris,,OIF, +OIF:SA:70:1001,1,"Parc des Sports",48.917839,2.544027,,1,,Europe/Paris,,OIF, +OIF:SA:70:10029,1,"Chemin du Renard",48.927093,2.569678,,1,,Europe/Paris,,OIF, +OIF:SA:70:10033,1,"La Fontaine",48.937874,2.473662,,1,,Europe/Paris,,OIF, +OIF:SA:70:10053,1,"Jean Baptiste Clément",48.915384,2.571732,,1,,Europe/Paris,,OIF, +OIF:SA:70:10084,1,"Simiane",48.912889,2.529739,,1,,Europe/Paris,,OIF, +OIF:SA:70:10118,1,"Maison Rouge",48.894852,2.542981,,1,,Europe/Paris,,OIF, +OIF:SA:70:10173,1,"Bougainville",48.955731,2.496715,,1,,Europe/Paris,,OIF, +OIF:SA:70:10239,1,"La Limite",48.896913,2.530558,,1,,Europe/Paris,,OIF, +OIF:SA:70:10334,1,"Place Pierre Bérégovoy",48.946633,2.556511,,1,,Europe/Paris,,OIF, +OIF:SA:70:1046,1,"Touraine",48.936899,2.585096,,1,,Europe/Paris,,OIF, +OIF:SA:70:10466,1,"Marne / Strasbourg",48.919706,2.481336,,1,,Europe/Paris,,OIF, +OIF:SA:70:10479,1,"Fougères",48.956158,2.545946,,1,,Europe/Paris,,OIF, +OIF:SA:70:10525,1,"Sept Îles",48.89914,2.547081,,1,,Europe/Paris,,OIF, +OIF:SA:70:10553,1,"Gabriel Péri",48.897669,2.553236,,1,,Europe/Paris,,OIF, +OIF:SA:70:10577,1,"Lilas",48.950069,2.51155,,1,,Europe/Paris,,OIF, +OIF:SA:70:1068,1,"Charpentier",48.945537,2.546676,,1,,Europe/Paris,,OIF, +OIF:SA:70:10754,1,"Georges Sachet",48.954418,2.548199,,1,,Europe/Paris,,OIF, +OIF:SA:70:10900,1,"Etienne Laurent",48.902638,2.551056,,1,,Europe/Paris,,OIF, +OIF:SA:70:10958,1,"Parc de la Noue",48.958382,2.54479,,1,,Europe/Paris,,OIF, +OIF:SA:70:10974,1,"Général Maunoury",48.913114,2.457657,,1,,Europe/Paris,,OIF, +OIF:SA:70:11093,1,"Parc du Sausset",48.962781,2.517266,,1,,Europe/Paris,,OIF, +OIF:SA:70:11142,1,"Camille Desmoulins",48.949143,2.494159,,1,,Europe/Paris,,OIF, +OIF:SA:70:11151,1,"Maréchal Lyautey",48.934287,2.540131,,1,,Europe/Paris,,OIF, +OIF:SA:70:11261,1,"Avenue du Clocher",48.93175,2.501165,,1,,Europe/Paris,,OIF, +OIF:SA:70:11265,1,"Pont Blanc",48.942492,2.532639,,1,,Europe/Paris,,OIF, +OIF:SA:70:11462,1,"Le Château",48.899411,2.563583,,1,,Europe/Paris,,OIF, +OIF:SA:70:11494,1,"Collège Henri IV",48.934959,2.570993,,1,,Europe/Paris,,OIF, +OIF:SA:70:11548,1,"Chemin de Roissy",48.950658,2.491632,,1,,Europe/Paris,,OIF, +OIF:SA:70:11588,1,"Lycée Jean Zay",48.939404,2.508735,,1,,Europe/Paris,,OIF, +OIF:SA:70:11635,1,"Goya la Pérouse",48.954481,2.49249,,1,,Europe/Paris,,OIF, +OIF:SA:70:11690,1,"165 Rue de la Belle Etoile",48.981735,2.50534,,1,,Europe/Paris,,OIF, +OIF:SA:70:11767,1,"Concorde",48.916176,2.464578,,1,,Europe/Paris,,OIF, +OIF:SA:70:11867,1,"Coquelicots",48.889897,2.557122,,1,,Europe/Paris,,OIF, +OIF:SA:70:11927,1,"Friches / Jean Jaurès",48.921743,2.504549,,1,,Europe/Paris,,OIF, +OIF:SA:70:11929,1,"René Deschamps",48.914317,2.454258,,1,,Europe/Paris,,OIF, +OIF:SA:70:11963,1,"Marc Sangnier",48.926352,2.545616,,1,,Europe/Paris,,OIF, +OIF:SA:70:12003,1,"Rue de l'Église",48.898761,2.567629,,1,,Europe/Paris,,OIF, +OIF:SA:70:12060,1,"Orléans / Strasbourg",48.921832,2.48376,,1,,Europe/Paris,,OIF, +OIF:SA:70:12093,1,"Henri Barbusse",48.884432,2.531704,,1,,Europe/Paris,,OIF, +OIF:SA:70:12230,1,"Augustin Marcos",48.935238,2.469682,,1,,Europe/Paris,,OIF, +OIF:SA:70:1239,1,"Écoles des Prévoyants",48.922863,2.507117,,1,,Europe/Paris,,OIF, +OIF:SA:70:12410,1,"Rue du Pavé",48.986709,2.533976,,1,,Europe/Paris,,OIF, +OIF:SA:70:12436,1,"Robert Brémond",48.953978,2.457323,,1,,Europe/Paris,,OIF, +OIF:SA:70:1251,1,"Sigonneau Centre d'Affaires",48.952629,2.462239,,1,,Europe/Paris,,OIF, +OIF:SA:70:12530,1,"Henri Barbusse / Mairie",48.938053,2.461317,,1,,Europe/Paris,,OIF, +OIF:SA:70:12698,1,"Pégoud",48.940527,2.449529,,1,,Europe/Paris,,OIF, +OIF:SA:70:12717,1,"Les Frênes",48.889651,2.558743,,1,,Europe/Paris,,OIF, +OIF:SA:70:12786,1,"Square Armand Lanoux",48.879567,2.594796,,1,,Europe/Paris,,OIF, +OIF:SA:70:12790,1,"Mardelles / de Broglie",48.947562,2.484166,,1,,Europe/Paris,,OIF, +OIF:SA:70:129,1,"Colongo",48.940515,2.591914,,1,,Europe/Paris,,OIF, +OIF:SA:70:12907,1,"O'Parinor Louis Armand",48.955435,2.480286,,1,,Europe/Paris,,OIF, +OIF:SA:70:13053,1,"Avenue de Savigny",48.944892,2.517503,,1,,Europe/Paris,,OIF, +OIF:SA:70:13106,1,"Centre Postal",48.991158,2.54408,,1,,Europe/Paris,,OIF, +OIF:SA:70:13184,1,"Anatole France",48.935889,2.494189,,1,,Europe/Paris,,OIF, +OIF:SA:70:13264,1,"Les Mousseaux",48.962345,2.540727,,1,,Europe/Paris,,OIF, +OIF:SA:70:13317,1,"Europe",48.896499,2.563584,,1,,Europe/Paris,,OIF, +OIF:SA:70:13321,1,"Cruppet",48.977956,2.556342,,1,,Europe/Paris,,OIF, +OIF:SA:70:13412,1,"Place du Pâtis",48.915559,2.579944,,1,,Europe/Paris,,OIF, +OIF:SA:70:13462,1,"Ethel et Julius Rosenberg",48.962226,2.52492,,1,,Europe/Paris,,OIF, +OIF:SA:70:13478,1,"Président Kennedy",48.914896,2.534774,,1,,Europe/Paris,,OIF, +OIF:SA:70:13484,1,"La Renardière",48.913828,2.565269,,1,,Europe/Paris,,OIF, +OIF:SA:70:13498,1,"Papillons",48.935126,2.518793,,1,,Europe/Paris,,OIF, +OIF:SA:70:13526,1,"Henri Dunant",48.927013,2.495278,,1,,Europe/Paris,,OIF, +OIF:SA:70:13615,1,"Jacques Schlosser",48.879895,2.592427,,1,,Europe/Paris,,OIF, +OIF:SA:70:13719,1,"Soleil Levant",48.940123,2.5026,,1,,Europe/Paris,,OIF, +OIF:SA:70:1380,1,"Croix Saint-Marc",48.959925,2.49809,,1,,Europe/Paris,,OIF, +OIF:SA:70:13819,1,"Iqbal Masih",48.940986,2.4463,,1,,Europe/Paris,,OIF, +OIF:SA:70:13839,1,"Petit Tremblay",48.984084,2.55045,,1,,Europe/Paris,,OIF, +OIF:SA:70:13852,1,"Clos Roger",48.891845,2.562923,,1,,Europe/Paris,,OIF, +OIF:SA:70:13920,1,"Pivoines",48.885793,2.557793,,1,,Europe/Paris,,OIF, +OIF:SA:70:1400,1,"Avenue de la Plaine",48.924382,2.493606,,1,,Europe/Paris,,OIF, +OIF:SA:70:1401,1,"Botticelli",48.953159,2.502285,,1,,Europe/Paris,,OIF, +OIF:SA:70:14065,1,"Victor Hugo",48.902253,2.561074,,1,,Europe/Paris,,OIF, +OIF:SA:70:14116,1,"Denis Papin",48.907077,2.58631,,1,,Europe/Paris,,OIF, +OIF:SA:70:14146,1,"Cimetière",48.889319,2.538312,,1,,Europe/Paris,,OIF, +OIF:SA:70:14152,1,"Berlioz",48.938534,2.534629,,1,,Europe/Paris,,OIF, +OIF:SA:70:14244,1,"Flandres",48.942186,2.5724,,1,,Europe/Paris,,OIF, +OIF:SA:70:14327,1,"Bellevue",48.899191,2.558961,,1,,Europe/Paris,,OIF, +OIF:SA:70:14342,1,"La Paix",48.939782,2.514443,,1,,Europe/Paris,,OIF, +OIF:SA:70:14393,1,"Franceville",48.889086,2.544923,,1,,Europe/Paris,,OIF, +OIF:SA:70:14395,1,"Collège Debussy",48.952715,2.510224,,1,,Europe/Paris,,OIF, +OIF:SA:70:14419,1,"Épis",48.976286,2.503374,,1,,Europe/Paris,,OIF, +OIF:SA:70:14424,1,"Maison de Fer",48.910397,2.584369,,1,,Europe/Paris,,OIF, +OIF:SA:70:14464,1,"Cité Jacques Decour",48.920548,2.476426,,1,,Europe/Paris,,OIF, +OIF:SA:70:14561,1,"Decour / Emilie",48.922353,2.473914,,1,,Europe/Paris,,OIF, +OIF:SA:70:14591,1,"Paul Vaillant Couturier",48.927504,2.417913,,1,,Europe/Paris,,OIF, +OIF:SA:70:14686,1,"Frédéric Ladrette",48.908369,2.544024,,1,,Europe/Paris,,OIF, +OIF:SA:70:14740,1,"Chemin du Loup",48.961901,2.558155,,1,,Europe/Paris,,OIF, +OIF:SA:70:1482,1,"Albert David",48.931511,2.57379,,1,,Europe/Paris,,OIF, +OIF:SA:70:15160,1,"Jussieu",48.953005,2.54992,,1,,Europe/Paris,,OIF, +OIF:SA:70:15212,1,"Jules Guesde",48.944147,2.446699,,1,,Europe/Paris,,OIF, +OIF:SA:70:15294,1,"Église Saint-Joseph",48.926009,2.500267,,1,,Europe/Paris,,OIF, +OIF:SA:70:15344,1,"Le Hameau",48.94889,2.503245,,1,,Europe/Paris,,OIF, +OIF:SA:70:15382,1,"Mésanges",48.894505,2.563228,,1,,Europe/Paris,,OIF, +OIF:SA:70:15403,1,"Garros",48.949778,2.441103,,1,,Europe/Paris,,OIF, +OIF:SA:70:15404,1,"Matisse / Delacroix",48.95408,2.499088,,1,,Europe/Paris,,OIF, +OIF:SA:70:15415,1,"Place Henri Barbusse",48.961689,2.570771,,1,,Europe/Paris,,OIF, +OIF:SA:70:15443,1,"Saint-Germain",48.930404,2.506227,,1,,Europe/Paris,,OIF, +OIF:SA:70:15464,1,"Place Arago",48.904769,2.58118,,1,,Europe/Paris,,OIF, +OIF:SA:70:15593,1,"Galliéni",48.906056,2.487389,,1,,Europe/Paris,,OIF, +OIF:SA:70:15595,1,"Auguste Renoir",48.952167,2.49087,,1,,Europe/Paris,,OIF, +OIF:SA:70:15637,1,"Poste",48.934918,2.569045,,1,,Europe/Paris,,OIF, +OIF:SA:70:15694,1,"Vivaldi",48.941513,2.542969,,1,,Europe/Paris,,OIF, +OIF:SA:70:15750,1,"Rue du Marché",48.939694,2.531346,,1,,Europe/Paris,,OIF, +OIF:SA:70:1579,1,"Barriére Blanche",48.898448,2.55251,,1,,Europe/Paris,,OIF, +OIF:SA:70:15791,1,"Maison Guyot",48.894346,2.549283,,1,,Europe/Paris,,OIF, +OIF:SA:70:1582,1,"Saturne",48.955993,2.501526,,1,,Europe/Paris,,OIF, +OIF:SA:70:15890,1,"Piscine",48.943959,2.486544,,1,,Europe/Paris,,OIF, +OIF:SA:70:16004,1,"Le Havre",48.922075,2.489213,,1,,Europe/Paris,,OIF, +OIF:SA:70:16115,1,"Ancien Cimetière",48.924195,2.550497,,1,,Europe/Paris,,OIF, +OIF:SA:70:16184,1,"Les Rosiers",48.923778,2.514075,,1,,Europe/Paris,,OIF, +OIF:SA:70:16232,1,"Fontaine Jean Valjean",48.894477,2.577478,,1,,Europe/Paris,,OIF, +OIF:SA:70:16260,1,"Lille",48.90789,2.471879,,1,,Europe/Paris,,OIF, +OIF:SA:70:16272,1,"Collège Victor Hugo",48.958063,2.495148,,1,,Europe/Paris,,OIF, +OIF:SA:70:16363,1,"L'Odéon",48.942476,2.570095,,1,,Europe/Paris,,OIF, +OIF:SA:70:1639,1,"Mairie",48.886445,2.534219,,1,,Europe/Paris,,OIF, +OIF:SA:70:16651,1,"Route de Tremblay",48.963922,2.537481,,1,,Europe/Paris,,OIF, +OIF:SA:70:16791,1,"IUT",48.975565,2.559505,,1,,Europe/Paris,,OIF, +OIF:SA:70:16818,1,"Jules Jouy",48.926797,2.493159,,1,,Europe/Paris,,OIF, +OIF:SA:70:16898,1,"La Dhuys",48.915791,2.590047,,1,,Europe/Paris,,OIF, +OIF:SA:70:16954,1,"Romain Roland",48.93355,2.574413,,1,,Europe/Paris,,OIF, +OIF:SA:70:17022,1,"Église Notre-Dame de Livry",48.921203,2.547566,,1,,Europe/Paris,,OIF, +OIF:SA:70:17081,1,"Général de Gaulle",48.943939,2.548238,,1,,Europe/Paris,,OIF, +OIF:SA:70:17116,1,"Rue d'Orléans",48.919874,2.487183,,1,,Europe/Paris,,OIF, +OIF:SA:70:17128,1,"Béarn",48.937399,2.590964,,1,,Europe/Paris,,OIF, +OIF:SA:70:17181,1,"Montesqieu",48.924965,2.533882,,1,,Europe/Paris,,OIF, +OIF:SA:70:17222,1,"Victoire",48.9404,2.445661,,1,,Europe/Paris,,OIF, +OIF:SA:70:17419,1,"Marc Chagall",48.952437,2.49881,,1,,Europe/Paris,,OIF, +OIF:SA:70:17435,1,"Jules Ferry",48.932123,2.534114,,1,,Europe/Paris,,OIF, +OIF:SA:70:1747,1,"Arts",48.889755,2.553687,,1,,Europe/Paris,,OIF, +OIF:SA:70:17518,1,"Jacques Salomon",48.948594,2.453224,,1,,Europe/Paris,,OIF, +OIF:SA:70:1759,1,"Tennis",48.956911,2.494919,,1,,Europe/Paris,,OIF, +OIF:SA:70:17617,1,"Lycée Alfred Nobel",48.902681,2.547518,,1,,Europe/Paris,,OIF, +OIF:SA:70:17706,1,"Ferme",48.917253,2.573929,,1,,Europe/Paris,,OIF, +OIF:SA:70:17718,1,"Route de Sevran",48.95318,2.531901,,1,,Europe/Paris,,OIF, +OIF:SA:70:17862,1,"11-14 Avenue Einstein",48.94577,2.470586,,1,,Europe/Paris,,OIF, +OIF:SA:70:18108,1,"Montauban",48.929866,2.569813,,1,,Europe/Paris,,OIF, +OIF:SA:70:18144,1,"Paul Gauguin",48.890997,2.580808,,1,,Europe/Paris,,OIF, +OIF:SA:70:18195,1,"La Source",48.913529,2.588707,,1,,Europe/Paris,,OIF, +OIF:SA:70:18270,1,"Chavannes",48.898351,2.535982,,1,,Europe/Paris,,OIF, +OIF:SA:70:18310,1,"Normandie",48.93346,2.506026,,1,,Europe/Paris,,OIF, +OIF:SA:70:18471,1,"Place Carnot",48.903217,2.483345,,1,,Europe/Paris,,OIF, +OIF:SA:70:18536,1,"Écoles",48.890953,2.552138,,1,,Europe/Paris,,OIF, +OIF:SA:70:18546,1,"Les Étangs",48.950739,2.49795,,1,,Europe/Paris,,OIF, +OIF:SA:70:18632,1,"Village Cargo",48.991251,2.524157,,1,,Europe/Paris,,OIF, +OIF:SA:70:18757,1,"Baron Roger",48.885065,2.534534,,1,,Europe/Paris,,OIF, +OIF:SA:70:18797,1,"Balzac / Nonneville",48.92052,2.492135,,1,,Europe/Paris,,OIF, +OIF:SA:70:18833,1,"Armand Esders",48.947989,2.467133,,1,,Europe/Paris,,OIF, +OIF:SA:70:18886,1,"Jean Jaurès / Bois d'Amour",48.914589,2.460974,,1,,Europe/Paris,,OIF, +OIF:SA:70:18925,1,"École Jules Ferry",48.958793,2.572857,,1,,Europe/Paris,,OIF, +OIF:SA:70:19080,1,"Jean Moulin",48.906506,2.577554,,1,,Europe/Paris,,OIF, +OIF:SA:70:19300,1,"Guy Mollet",48.944864,2.551257,,1,,Europe/Paris,,OIF, +OIF:SA:70:19510,1,"Corot",48.911917,2.58165,,1,,Europe/Paris,,OIF, +OIF:SA:70:19540,1,"Pasteur",48.935337,2.475879,,1,,Europe/Paris,,OIF, +OIF:SA:70:19578,1,"Rue Dupuis",48.947944,2.501291,,1,,Europe/Paris,,OIF, +OIF:SA:70:19780,1,"Route d'Aulnay",48.939488,2.512825,,1,,Europe/Paris,,OIF, +OIF:SA:70:19796,1,"Mare Neuve",48.93696,2.572519,,1,,Europe/Paris,,OIF, +OIF:SA:70:19917,1,"République",48.949964,2.566574,,1,,Europe/Paris,,OIF, +OIF:SA:70:20022,1,"Vauban",48.920519,2.526078,,1,,Europe/Paris,,OIF, +OIF:SA:70:20369,1,"Place Pierre Curie",48.940625,2.578081,,1,,Europe/Paris,,OIF, +OIF:SA:70:20423,1,"Bargue",48.900585,2.556016,,1,,Europe/Paris,,OIF, +OIF:SA:70:20659,1,"Aréna",48.879827,2.546948,,1,,Europe/Paris,,OIF, +OIF:SA:70:20718,1,"Gambetta",48.89471,2.513635,,1,,Europe/Paris,,OIF, +OIF:SA:70:20974,1,"Pont de l'Union",48.925085,2.511522,,1,,Europe/Paris,,OIF, +OIF:SA:70:20990,1,"Rond-Point Île de France",48.915208,2.591626,,1,,Europe/Paris,,OIF, +OIF:SA:70:21157,1,"Le Temple",48.899208,2.539421,,1,,Europe/Paris,,OIF, +OIF:SA:70:21205,1,"Collège Jean Jaurès",48.897496,2.559349,,1,,Europe/Paris,,OIF, +OIF:SA:70:21270,1,"Chêne Pointu",48.90583,2.542752,,1,,Europe/Paris,,OIF, +OIF:SA:70:21373,1,"Bas Prés",48.916105,2.583844,,1,,Europe/Paris,,OIF, +OIF:SA:70:21410,1,"François Arago",48.945443,2.483137,,1,,Europe/Paris,,OIF, +OIF:SA:70:21758,1,"L'Ermitage",48.906743,2.571584,,1,,Europe/Paris,,OIF, +OIF:SA:70:21827,1,"Vallée des Anges",48.908306,2.534759,,1,,Europe/Paris,,OIF, +OIF:SA:70:22341,1,"Hôpital Intercommunal Robert Ballanger",48.951606,2.527837,,1,,Europe/Paris,,OIF, +OIF:SA:70:22356,1,"Poissons",48.957816,2.504636,,1,,Europe/Paris,,OIF, +OIF:SA:70:22365,1,"Racine",48.936017,2.480457,,1,,Europe/Paris,,OIF, +OIF:SA:70:22599,1,"Blaise Pascal",48.949829,2.482201,,1,,Europe/Paris,,OIF, +OIF:SA:70:22849,1,"Plaine République",48.94964,2.556162,,1,,Europe/Paris,,OIF, +OIF:SA:70:22865,1,"Mairie",48.932791,2.567303,,1,,Europe/Paris,,OIF, +OIF:SA:70:2302,1,"Gros Saule Beaudottes",48.949719,2.52132,,1,,Europe/Paris,,OIF, +OIF:SA:70:23044,1,"Brunetière",48.93587,2.484641,,1,,Europe/Paris,,OIF, +OIF:SA:70:23140,1,"Lefèvre",48.940787,2.490579,,1,,Europe/Paris,,OIF, +OIF:SA:70:2319,1,"Marx Dormoy",48.943007,2.440707,,1,,Europe/Paris,,OIF, +OIF:SA:70:2324,1,"Le Parc",48.940033,2.440306,,1,,Europe/Paris,,OIF, +OIF:SA:70:2326,1,"Ballet / Nonneville",48.921202,2.492901,,1,,Europe/Paris,,OIF, +OIF:SA:70:23366,1,"Terminal 2 - Route de Service",49.003704,2.558464,,1,,Europe/Paris,,OIF, +OIF:SA:70:23378,1,"Fontaine Mallet",48.952223,2.551654,,1,,Europe/Paris,,OIF, +OIF:SA:70:23392,1,"Maison de Retraite",48.952682,2.566443,,1,,Europe/Paris,,OIF, +OIF:SA:70:23595,1,"Vieux Pays",48.941757,2.498147,,1,,Europe/Paris,,OIF, +OIF:SA:70:23717,1,"Cerisiers",48.912458,2.452475,,1,,Europe/Paris,,OIF, +OIF:SA:70:23722,1,"Voie des Prés",48.960363,2.532024,,1,,Europe/Paris,,OIF, +OIF:SA:70:23788,1,"Ampère",48.904648,2.585446,,1,,Europe/Paris,,OIF, +OIF:SA:70:23799,1,"Les Saules",48.949565,2.499147,,1,,Europe/Paris,,OIF, +OIF:SA:70:2388,1,"École Normale",48.912718,2.540537,,1,,Europe/Paris,,OIF, +OIF:SA:70:23955,1,"Floréal",48.951227,2.443965,,1,,Europe/Paris,,OIF, +OIF:SA:70:24072,1,"Centre Commercial Paris Nord 2",48.975353,2.495562,,1,,Europe/Paris,,OIF, +OIF:SA:70:24161,1,"Maréchal Leclerc",48.927088,2.48983,,1,,Europe/Paris,,OIF, +OIF:SA:70:24310,1,"Léo Lagrange",48.924467,2.52241,,1,,Europe/Paris,,OIF, +OIF:SA:70:24454,1,"Gay",48.893637,2.53563,,1,,Europe/Paris,,OIF, +OIF:SA:70:24577,1,"Verveines",48.885833,2.548288,,1,,Europe/Paris,,OIF, +OIF:SA:70:24640,1,"Saint-Vincent de Paul",48.946554,2.560747,,1,,Europe/Paris,,OIF, +OIF:SA:70:24730,1,"Les 4 Chênes",48.887886,2.551219,,1,,Europe/Paris,,OIF, +OIF:SA:70:24742,1,"Fleurs",48.89424,2.552379,,1,,Europe/Paris,,OIF, +OIF:SA:70:24761,1,"Boieldieu",48.943538,2.546456,,1,,Europe/Paris,,OIF, +OIF:SA:70:24844,1,"Haute Futaie",48.905654,2.567653,,1,,Europe/Paris,,OIF, +OIF:SA:70:24941,1,"Gérard Philipe",48.93672,2.504352,,1,,Europe/Paris,,OIF, +OIF:SA:70:24953,1,"Éric Tabarly",48.893979,2.558523,,1,,Europe/Paris,,OIF, +OIF:SA:70:25315,1,"Administrateur",48.905922,2.549092,,1,,Europe/Paris,,OIF, +OIF:SA:70:25507,1,"Primevères",48.940049,2.519199,,1,,Europe/Paris,,OIF, +OIF:SA:70:25771,1,"Parc des Reflets",48.982077,2.5131,,1,,Europe/Paris,,OIF, +OIF:SA:70:25778,1,"Kennedy / Charcot",48.936016,2.515754,,1,,Europe/Paris,,OIF, +OIF:SA:70:26025,1,"Danton",48.936421,2.521253,,1,,Europe/Paris,,OIF, +OIF:SA:70:2614,1,"Coullemont / Galliéni",48.931001,2.496982,,1,,Europe/Paris,,OIF, +OIF:SA:70:2622,1,"Paul Langevin",48.924398,2.495066,,1,,Europe/Paris,,OIF, +OIF:SA:70:26245,1,"Allée du Jura",48.93011,2.525861,,1,,Europe/Paris,,OIF, +OIF:SA:70:26309,1,"Apollinaire",48.942984,2.552136,,1,,Europe/Paris,,OIF, +OIF:SA:70:27015,1,"Marcel Sembat",48.935598,2.48852,,1,,Europe/Paris,,OIF, +OIF:SA:70:27162,1,"Mairie",48.915434,2.577862,,1,,Europe/Paris,,OIF, +OIF:SA:70:27196,1,"Stade",48.914575,2.579349,,1,,Europe/Paris,,OIF, +OIF:SA:70:27256,1,"Collège Descartes",48.94903,2.443401,,1,,Europe/Paris,,OIF, +OIF:SA:70:27448,1,"Stade Jean Bouin",48.939862,2.455087,,1,,Europe/Paris,,OIF, +OIF:SA:70:27520,1,"Maison d'Arrêt",48.96758,2.552662,,1,,Europe/Paris,,OIF, +OIF:SA:70:27632,1,"Isaac Newton",48.944123,2.472311,,1,,Europe/Paris,,OIF, +OIF:SA:70:27641,1,"Hôpital 8 Mai 1945",48.900205,2.571268,,1,,Europe/Paris,,OIF, +OIF:SA:70:27666,1,"Pont de la Croix Blanche",48.932625,2.504022,,1,,Europe/Paris,,OIF, +OIF:SA:70:27704,1,"Place de la République",48.928118,2.495268,,1,,Europe/Paris,,OIF, +OIF:SA:70:27759,1,"Jouhet / Berthollet",48.924026,2.50427,,1,,Europe/Paris,,OIF, +OIF:SA:70:27991,1,"Collège Cotton",48.941893,2.475589,,1,,Europe/Paris,,OIF, +OIF:SA:70:28048,1,"Rue du Bellay",48.937777,2.568553,,1,,Europe/Paris,,OIF, +OIF:SA:70:28242,1,"Le Plateau",48.896125,2.525757,,1,,Europe/Paris,,OIF, +OIF:SA:70:285,1,"Gagarine",48.921534,2.421661,,1,,Europe/Paris,,OIF, +OIF:SA:70:28614,1,"Sportiss",48.936881,2.531649,,1,,Europe/Paris,,OIF, +OIF:SA:70:28654,1,"Adolphe Pétrement",48.942504,2.48643,,1,,Europe/Paris,,OIF, +OIF:SA:70:28737,1,"Écoles Camélinat",48.929067,2.498517,,1,,Europe/Paris,,OIF, +OIF:SA:70:28762,1,"8 Mai 1945",48.953741,2.568815,,1,,Europe/Paris,,OIF, +OIF:SA:70:28809,1,"Balagny",48.943077,2.482175,,1,,Europe/Paris,,OIF, +OIF:SA:70:28875,1,"Cargo 7",48.989417,2.545058,,1,,Europe/Paris,,OIF, +OIF:SA:70:29243,1,"Plaine de France",48.975744,2.50625,,1,,Europe/Paris,,OIF, +OIF:SA:70:29476,1,"Charles Floquet",48.937502,2.499491,,1,,Europe/Paris,,OIF, +OIF:SA:70:29603,1,"Rue Rabelais",48.939319,2.570115,,1,,Europe/Paris,,OIF, +OIF:SA:70:2978,1,"Louis Blanc Sainte-Anne",48.919312,2.500955,,1,,Europe/Paris,,OIF, +OIF:SA:70:29975,1,"Croix l'Aumône",48.964989,2.524794,,1,,Europe/Paris,,OIF, +OIF:SA:70:3000,1,"Rougemont / Hôpital René Muret",48.93628,2.513736,,1,,Europe/Paris,,OIF, +OIF:SA:70:30012,1,"Île de France",48.935528,2.573986,,1,,Europe/Paris,,OIF, +OIF:SA:70:30142,1,"Cimetière",48.985211,2.552831,,1,,Europe/Paris,,OIF, +OIF:SA:70:30316,1,"11 Novembre",48.93517,2.513268,,1,,Europe/Paris,,OIF, +OIF:SA:70:3052,1,"69 Rue de la Belle Etoile",48.979192,2.500981,,1,,Europe/Paris,,OIF, +OIF:SA:70:30597,1,"Jean Charcot",48.934492,2.490823,,1,,Europe/Paris,,OIF, +OIF:SA:70:30676,1,"Poste",48.983525,2.553977,,1,,Europe/Paris,,OIF, +OIF:SA:70:30897,1,"Auguste Breton",48.945047,2.549457,,1,,Europe/Paris,,OIF, +OIF:SA:70:30957,1,"Vercingétorix / Jaurès",48.925145,2.501137,,1,,Europe/Paris,,OIF, +OIF:SA:70:31032,1,"Condorcet / Liégeard",48.925882,2.52813,,1,,Europe/Paris,,OIF, +OIF:SA:70:31037,1,"Alix",48.925818,2.488428,,1,,Europe/Paris,,OIF, +OIF:SA:70:31226,1,"Bois de la Pie",48.980562,2.510556,,1,,Europe/Paris,,OIF, +OIF:SA:70:31541,1,"Sanatorium",48.964053,2.533846,,1,,Europe/Paris,,OIF, +OIF:SA:70:31895,1,"Louis Coutant",48.938794,2.489182,,1,,Europe/Paris,,OIF, +OIF:SA:70:32024,1,"Legendre",48.946289,2.499376,,1,,Europe/Paris,,OIF, +OIF:SA:70:32086,1,"Les Cottages / Lycée",48.966146,2.569751,,1,,Europe/Paris,,OIF, +OIF:SA:70:32474,1,"Henri Becquerel",48.949177,2.478897,,1,,Europe/Paris,,OIF, +OIF:SA:70:3249,1,"Le Suroît",48.952669,2.495393,,1,,Europe/Paris,,OIF, +OIF:SA:70:3262,1,"Les Cèdres",48.92346,2.510392,,1,,Europe/Paris,,OIF, +OIF:SA:70:32722,1,"Paul Cézanne",48.903285,2.556477,,1,,Europe/Paris,,OIF, +OIF:SA:70:3333,1,"Pablo Neruda",48.96656,2.574323,,1,,Europe/Paris,,OIF, +OIF:SA:70:3495,1,"Jacques Decour",48.943935,2.552686,,1,,Europe/Paris,,OIF, +OIF:SA:70:351,1,"346 Rue de la Belle Etoile",48.989092,2.515405,,1,,Europe/Paris,,OIF, +OIF:SA:70:3530,1,"Jean Jaurès",48.915805,2.572246,,1,,Europe/Paris,,OIF, +OIF:SA:70:3610,1,"Collège",48.892575,2.542264,,1,,Europe/Paris,,OIF, +OIF:SA:70:3616,1,"Xavier Monteny",48.889894,2.53304,,1,,Europe/Paris,,OIF, +OIF:SA:70:3657,1,"Avenue de Livry",48.933989,2.535894,,1,,Europe/Paris,,OIF, +OIF:SA:70:3664,1,"Place Albert Thomas",48.94211,2.585558,,1,,Europe/Paris,,OIF, +OIF:SA:70:3709,1,"Rond-Point Pablo Néruda",48.949973,2.465118,,1,,Europe/Paris,,OIF, +OIF:SA:70:3718,1,"Vélodrome",48.952848,2.506181,,1,,Europe/Paris,,OIF, +OIF:SA:70:3931,1,"Abbé Niort",48.940663,2.433179,,1,,Europe/Paris,,OIF, +OIF:SA:70:4399,1,"Cerisiers",48.912009,2.452624,,1,,Europe/Paris,,OIF, +OIF:SA:70:4492,1,"De Mun / Nonneville",48.92172,2.495344,,1,,Europe/Paris,,OIF, +OIF:SA:70:4529,1,"Prévoyants / Plant d'Argent",48.92507,2.509347,,1,,Europe/Paris,,OIF, +OIF:SA:70:4532,1,"Havre / Strasbourg",48.923606,2.48583,,1,,Europe/Paris,,OIF, +OIF:SA:70:4662,1,"Toulouse",48.925235,2.487649,,1,,Europe/Paris,,OIF, +OIF:SA:70:4859,1,"Rue Prudence",48.889745,2.582145,,1,,Europe/Paris,,OIF, +OIF:SA:70:5255,1,"Érables",48.974593,2.499464,,1,,Europe/Paris,,OIF, +OIF:SA:70:5318,1,"Ernest Pivot",48.93134,2.529432,,1,,Europe/Paris,,OIF, +OIF:SA:70:5612,1,"Le Merisier",48.950073,2.495376,,1,,Europe/Paris,,OIF, +OIF:SA:70:58148,1,"Henri Barbusse",48.964932,2.529543,,1,,Europe/Paris,,OIF, +OIF:SA:70:58152,1,"Alfred Nobel",48.947203,2.48012,,1,,Europe/Paris,,OIF, +OIF:SA:70:58156,1,"Dumont / 14 Juillet",48.92979,2.495164,,1,,Europe/Paris,,OIF, +OIF:SA:70:58162,1,"Lénine",48.950112,2.439562,,1,,Europe/Paris,,OIF, +OIF:SA:70:58164,1,"Musée de l'Air et de l'Espace",48.947795,2.437483,,1,,Europe/Paris,,OIF, +OIF:SA:70:58169,1,"Michelet",48.943291,2.433477,,1,,Europe/Paris,,OIF, +OIF:SA:70:58171,1,"La Comète",48.941791,2.420978,,1,,Europe/Paris,,OIF, +OIF:SA:70:58173,1,"Dugny - la Courneuve",48.943743,2.412202,,1,,Europe/Paris,,OIF, +OIF:SA:70:58183,1,"Gutenberg / Lycée André Boulloche",48.912776,2.518251,,1,,Europe/Paris,,OIF, +OIF:SA:70:6077,1,"Stade Jean Jaurès",48.941037,2.58281,,1,,Europe/Paris,,OIF, +OIF:SA:70:6109,1,"Louvois",48.920613,2.502568,,1,,Europe/Paris,,OIF, +OIF:SA:70:6247,1,"Bois de l'Étoile",48.884459,2.547267,,1,,Europe/Paris,,OIF, +OIF:SA:70:6369,1,"Nouveau Cimetière",48.903761,2.527728,,1,,Europe/Paris,,OIF, +OIF:SA:70:6577,1,"Tilleuls",48.890321,2.561261,,1,,Europe/Paris,,OIF, +OIF:SA:70:669,1,"Edouard Branly",48.944363,2.484348,,1,,Europe/Paris,,OIF, +OIF:SA:70:7271,1,"Nonneville / Pavillons",48.922167,2.497186,,1,,Europe/Paris,,OIF, +OIF:SA:70:7413,1,"Notre-Dame",48.952172,2.441756,,1,,Europe/Paris,,OIF, +OIF:SA:70:7440,1,"Barrault / Jean Jacques Rousseau",48.927797,2.500041,,1,,Europe/Paris,,OIF, +OIF:SA:70:749,1,"Degas",48.933565,2.510937,,1,,Europe/Paris,,OIF, +OIF:SA:70:7592,1,"Georges Brassens",48.939356,2.53777,,1,,Europe/Paris,,OIF, +OIF:SA:70:7838,1,"Bretagne",48.938,2.595578,,1,,Europe/Paris,,OIF, +OIF:SA:70:8006,1,"Chanteloup",48.927655,2.508489,,1,,Europe/Paris,,OIF, +OIF:SA:70:8259,1,"Condé Circulaire",48.918203,2.497106,,1,,Europe/Paris,,OIF, +OIF:SA:70:8357,1,"230 Rue de la Belle Etoile",48.984369,2.509763,,1,,Europe/Paris,,OIF, +OIF:SA:70:8707,1,"277 Rue de la Belle Etoile",48.987148,2.512713,,1,,Europe/Paris,,OIF, +OIF:SA:70:9312,1,"Giffard",48.930857,2.568277,,1,,Europe/Paris,,OIF, +OIF:SA:70:9376,1,"La Brise",48.952737,2.4926,,1,,Europe/Paris,,OIF, +OIF:SA:70:9590,1,"Couronnes",48.914448,2.567903,,1,,Europe/Paris,,OIF, +OIF:SA:77:14,1,"Aéroport CDG Terminal 2D",49.004317,2.566925,,1,,Europe/Paris,,OIF, +OIF:SA:77:15,1,"Aéroport CDG Terminal 2B",49.004074,2.562621,,1,,Europe/Paris,,OIF, +OIF:SA:77:16,1,"Aéroport CDG Terminal 2A",49.002942,2.562152,,1,,Europe/Paris,,OIF, +OIF:SA:77:17,1,"Aéroport CDG Terminal 2C",49.003248,2.566688,,1,,Europe/Paris,,OIF, +OIF:SA:77:19,1,"Aéroport CDG Terminal 2E",49.003856,2.577741,,1,,Europe/Paris,,OIF, +OIF:SA:77:20,1,"Aéroport CDG Terminal 2F",49.004979,2.577733,,1,,Europe/Paris,,OIF, +OIF:SA:77:21,1,"Aéroport CDG Terminal 2G",49.005932,2.603076,,1,,Europe/Paris,,OIF, +OIF:SA:77:22,1,"Terminal Pw (Résa Parking Eco)",49.007547,2.608206,,1,,Europe/Paris,,OIF, +OIF:SA:79:1003,1,"Elisab. Annexe Mairie",48.972173,1.845426,,1,,Europe/Paris,,OIF, +OIF:SA:79:1005,1,"Clos Reine",48.96835,1.85,,1,,Europe/Paris,,OIF, +OIF:SA:79:1008,1,"Hôtel de Ville",48.958509,1.855436,,1,,Europe/Paris,,OIF, +OIF:SA:79:1009,1,"Coopération",48.959191,1.85749,,1,,Europe/Paris,,OIF, +OIF:SA:79:1010,1,"Allée des Bois",48.959944,1.861578,,1,,Europe/Paris,,OIF, +OIF:SA:79:1011,1,"Jean Moulin",48.957251,1.862408,,1,,Europe/Paris,,OIF, +OIF:SA:79:1012,1,"Les Sources",48.95539,1.859968,,1,,Europe/Paris,,OIF, +OIF:SA:79:1013,1,"Centre Commercial",48.954296,1.860442,,1,,Europe/Paris,,OIF, +OIF:SA:79:1015,1,"Louis Pergaud",48.954946,1.854596,,1,,Europe/Paris,,OIF, +OIF:SA:79:1016,1,"Montgardé",48.956773,1.852982,,1,,Europe/Paris,,OIF, +OIF:SA:79:1021,1,"Elisab. Place de l'Etoile",48.973038,1.845963,,1,,Europe/Paris,,OIF, +OIF:SA:79:1024,1,"Carrefour / D113",48.961723,1.854819,,1,,Europe/Paris,,OIF, +OIF:SA:79:1029,1,"Aubergenville - Elisab. Place du Maréchal J",48.971436,1.836874,,1,,Europe/Paris,,OIF, +OIF:SA:79:2004,1,"Hôpital de Longjumeau",48.691791,2.290064,,1,,Europe/Paris,,OIF, +OIF:SA:79:2006,1,"Bel Air",48.686712,2.290951,,1,,Europe/Paris,,OIF, +OIF:SA:79:2007,1,"La Rocade",48.687649,2.294806,,1,,Europe/Paris,,OIF, +OIF:SA:79:2008,1,"Coteaux",48.690202,2.295279,,1,,Europe/Paris,,OIF, +OIF:SA:79:2009,1,"Cimetière",48.689232,2.298973,,1,,Europe/Paris,,OIF, +OIF:SA:79:2014,1,"Ballanvilliers - Ballainvilliers Centre",48.675963,2.292997,,1,,Europe/Paris,,OIF, +OIF:SA:79:2015,1,"Ballainvilliers - Stade",48.676719,2.297597,,1,,Europe/Paris,,OIF, +OIF:SA:79:2016,1,"Templiers",48.680785,2.30635,,1,,Europe/Paris,,OIF, +OIF:SA:79:2018,1,"Rue de Savigny",48.687772,2.321116,,1,,Europe/Paris,,OIF, +OIF:SA:79:2019,1,"Gravigny - Rue Lavoisier",48.691889,2.328759,,1,,Europe/Paris,,OIF, +OIF:SA:79:2020,1,"Gravigny - Pasteur",48.69535,2.327822,,1,,Europe/Paris,,OIF, +OIF:SA:79:2021,1,"Gravigny - Morin",48.692949,2.317938,,1,,Europe/Paris,,OIF, +OIF:SA:79:2022,1,"Pont des Maures",48.691492,2.316418,,1,,Europe/Paris,,OIF, +OIF:SA:79:2023,1,"Georges Brassens",48.689057,2.318727,,1,,Europe/Paris,,OIF, +OIF:SA:79:2026,1,"Basch - Poulettes",48.684866,2.305967,,1,,Europe/Paris,,OIF, +OIF:SA:79:2027,1,"Morangis - Maison de la Petite Enfance",48.698128,2.330903,,1,,Europe/Paris,,OIF, +OIF:SA:79:2028,1,"Morangis - Collège M.Vignaud",48.700447,2.333714,,1,,Europe/Paris,,OIF, +OIF:SA:79:2029,1,"Morangis - Centre Commercial",48.697121,2.332927,,1,,Europe/Paris,,OIF, +OIF:SA:79:2032,1,"Hôtel de Ville",48.693141,2.294775,,1,,Europe/Paris,,OIF, +OIF:SA:79:2034,1,"Chilly-Mazarin - Jesse Owens",48.707502,2.323351,,1,,Europe/Paris,,OIF, +OIF:SA:79:2035,1,"Chilly-Mazarin - Étrier Chiroquois",48.708922,2.318489,,1,,Europe/Paris,,OIF, +OIF:SA:79:2036,1,"Chilly-Mazarin - Cimetière",48.707222,2.311604,,1,,Europe/Paris,,OIF, +OIF:SA:79:2037,1,"Chilly-Mazarin - Hôtel de Ville",48.70204,2.314125,,1,,Europe/Paris,,OIF, +OIF:SA:79:2039,1,"Chilly-Mazarin - Saint-Eloi",48.69567,2.307454,,1,,Europe/Paris,,OIF, +OIF:SA:79:2040,1,"Chilly-Mazarin - Grand Jardin",48.694422,2.310904,,1,,Europe/Paris,,OIF, +OIF:SA:79:2041,1,"Chilly-Mazarin - Elisée Reclus",48.69693,2.313184,,1,,Europe/Paris,,OIF, +OIF:SA:79:2043,1,"Chilly-Mazarin - Place de la Libération",48.702684,2.320121,,1,,Europe/Paris,,OIF, +OIF:SA:79:2044,1,"Massy - Rond-Point du Pileu",48.730277,2.241035,,1,,Europe/Paris,,OIF, +OIF:SA:79:2045,1,"Massy - Lycée de Vilgénis",48.731176,2.253832,,1,,Europe/Paris,,OIF, +OIF:SA:79:2046,1,"Massy - les Graviers",48.726626,2.250789,,1,,Europe/Paris,,OIF, +OIF:SA:79:2048,1,"Massy - Fustel de Coulange",48.732478,2.265597,,1,,Europe/Paris,,OIF, +OIF:SA:79:2049,1,"Massy - Émile Zola",48.736683,2.262955,,1,,Europe/Paris,,OIF, +OIF:SA:79:2050,1,"Massy - Bièvre / la Poterne",48.737794,2.272099,,1,,Europe/Paris,,OIF, +OIF:SA:79:2052,1,"Massy - Mairie",48.731297,2.27371,,1,,Europe/Paris,,OIF, +OIF:SA:79:2053,1,"Massy - Centre Ville",48.72968,2.276443,,1,,Europe/Paris,,OIF, +OIF:SA:79:2054,1,"Massy - Jean Mermoz",48.729399,2.28073,,1,,Europe/Paris,,OIF, +OIF:SA:79:2055,1,"Massy - Paul Baillart",48.73157,2.281733,,1,,Europe/Paris,,OIF, +OIF:SA:79:2056,1,"Massy - les Franciades",48.731833,2.287046,,1,,Europe/Paris,,OIF, +OIF:SA:79:2057,1,"Massy - Opéra-Théâtre",48.731758,2.290776,,1,,Europe/Paris,,OIF, +OIF:SA:79:2058,1,"Massy - Marché de Narbonne",48.736284,2.292226,,1,,Europe/Paris,,OIF, +OIF:SA:79:2059,1,"Massy - Périgord - Languedoc",48.736134,2.29811,,1,,Europe/Paris,,OIF, +OIF:SA:79:2060,1,"Massy - Biarritz",48.73482,2.293926,,1,,Europe/Paris,,OIF, +OIF:SA:79:2071,1,"Marché",48.696789,2.292246,,1,,Europe/Paris,,OIF, +OIF:SA:79:2072,1,"Chilly-Mazarin - Cimetière Vers Champarts",48.707581,2.311318,,1,,Europe/Paris,,OIF, +OIF:SA:79:2073,1,"Chilly-Mazarin - Champarts",48.712064,2.303669,,1,,Europe/Paris,,OIF, +OIF:SA:79:2074,1,"Chilly-Mazarin - Gay Lussac",48.710081,2.297586,,1,,Europe/Paris,,OIF, +OIF:SA:79:2075,1,"Chilly-Mazarin - Victor Hugo",48.704755,2.296789,,1,,Europe/Paris,,OIF, +OIF:SA:79:2078,1,"Chilly-Mazarin - Collège",48.705829,2.313988,,1,,Europe/Paris,,OIF, +OIF:SA:79:2079,1,"Chilly-Mazarin - Fontaine Augère",48.695079,2.316538,,1,,Europe/Paris,,OIF, +OIF:SA:79:2080,1,"Chilly-Mazarin - Maison de la Petite Enf",48.69285,2.315019,,1,,Europe/Paris,,OIF, +OIF:SA:79:2083,1,"Chilly-Mazarin - Aubrac",48.693686,2.317299,,1,,Europe/Paris,,OIF, +OIF:SA:79:3003,1,"Rosny-sous-Bois - Piscine",48.871534,2.482384,,1,,Europe/Paris,,OIF, +OIF:SA:79:3004,1,"Rosny-sous-Bois - Z.A. Nanteuil",48.876916,2.475709,,1,,Europe/Paris,,OIF, +OIF:SA:79:3005,1,"Rosny-sous-Bois - Gabriel Péri",48.878762,2.472675,,1,,Europe/Paris,,OIF, +OIF:SA:79:3006,1,"Rosny-sous-Bois - Chemin des Soudoux",48.879825,2.470007,,1,,Europe/Paris,,OIF, +OIF:SA:79:3007,1,"Rosny-sous-Bois - Ruelle Boissière",48.879804,2.465047,,1,,Europe/Paris,,OIF, +OIF:SA:79:3008,1,"Rosny-sous-Bois - la Boissière",48.87841,2.457563,,1,,Europe/Paris,,OIF, +OIF:SA:79:3010,1,"Rosny-sous-Bois - Etienne Dolet",48.876808,2.467874,,1,,Europe/Paris,,OIF, +OIF:SA:79:3011,1,"Rosny-sous-Bois - Rue de l'Acacias",48.873651,2.470277,,1,,Europe/Paris,,OIF, +OIF:SA:79:3012,1,"Rosny-sous-Bois - Fort de Rosny",48.871285,2.472179,,1,,Europe/Paris,,OIF, +OIF:SA:79:3013,1,"Rosny-sous-Bois - Grand Verger",48.872806,2.478409,,1,,Europe/Paris,,OIF, +OIF:SA:79:3014,1,"Rosny-sous-Bois - Église de Rosny-sous-B",48.87369,2.483153,,1,,Europe/Paris,,OIF, +OIF:SA:79:3016,1,"Rosny-sous-Bois - Van Derheyden",48.87757,2.484812,,1,,Europe/Paris,,OIF, +OIF:SA:79:3020,1,"Rosny-sous-Bois - Jaques Offenbach",48.881748,2.485955,,1,,Europe/Paris,,OIF, +OIF:SA:79:3021,1,"Rosny-sous-Bois - Alsace - Lorraine",48.88286,2.487512,,1,,Europe/Paris,,OIF, +OIF:SA:79:3022,1,"Rosny-sous-Bois - les Marnaudes",48.883134,2.490947,,1,,Europe/Paris,,OIF, +OIF:SA:79:3023,1,"Rosny-sous-Bois - Ehpad",48.882586,2.491041,,1,,Europe/Paris,,OIF, +OIF:SA:79:3024,1,"Rosny-sous-Bois - Jean Mermoz",48.88089,2.489019,,1,,Europe/Paris,,OIF, +OIF:SA:79:3025,1,"Rosny-sous-Bois - Barroy",48.879409,2.487393,,1,,Europe/Paris,,OIF, +OIF:SA:79:3026,1,"Rosny-sous-Bois - Madeleine",48.874791,2.486358,,1,,Europe/Paris,,OIF, +OIF:SA:79:3027,1,"Rosny-sous-Bois - Hôtel de Ville",48.871783,2.487494,,1,,Europe/Paris,,OIF, +OIF:SA:79:3028,1,"Rosny-sous-Bois - Beaulieu",48.871936,2.49105,,1,,Europe/Paris,,OIF, +OIF:SA:79:3029,1,"Rosny-sous-Bois - Letessier",48.874176,2.493223,,1,,Europe/Paris,,OIF, +OIF:SA:79:3030,1,"Rosny-sous-Bois - Chemin d'Avron",48.876418,2.499981,,1,,Europe/Paris,,OIF, +OIF:SA:79:3031,1,"Rosny-sous-Bois - Avenue de l'Ouest",48.874781,2.507109,,1,,Europe/Paris,,OIF, +OIF:SA:79:3032,1,"Rosny-sous-Bois - J.D d'Angers",48.878197,2.506575,,1,,Europe/Paris,,OIF, +OIF:SA:79:3033,1,"Rosny-sous-Bois - Danton",48.877284,2.504051,,1,,Europe/Paris,,OIF, +OIF:SA:79:3035,1,"Rosny-sous-Bois - Berthauds",48.879361,2.49704,,1,,Europe/Paris,,OIF, +OIF:SA:79:3036,1,"Rosny-sous-Bois - 11 Novembre",48.88074,2.494006,,1,,Europe/Paris,,OIF, +OIF:SA:79:3037,1,"Rosny-sous-Bois - Nungesser et Coli",48.879963,2.490106,,1,,Europe/Paris,,OIF, +OIF:SA:79:3038,1,"Rosny-sous-Bois - Jean Jaurès",48.87098,2.486347,,1,,Europe/Paris,,OIF, +OIF:SA:79:3039,1,"Rosny-sous-Bois - Marché des Boutours",48.868294,2.48593,,1,,Europe/Paris,,OIF, +OIF:SA:79:3040,1,"Rosny-sous-Bois - Pascal",48.864418,2.488017,,1,,Europe/Paris,,OIF, +OIF:SA:79:3041,1,"Rosny-sous-Bois - Faidherbe",48.861549,2.489412,,1,,Europe/Paris,,OIF, +OIF:SA:79:3042,1,"Rosny-sous-Bois - Charles de Gaulle",48.862004,2.492178,,1,,Europe/Paris,,OIF, +OIF:SA:79:3043,1,"Rosny-sous-Bois - Missak Manouchian",48.864109,2.496898,,1,,Europe/Paris,,OIF, +OIF:SA:79:3044,1,"Rosny-sous-Bois - Saint-Odile",48.867811,2.497958,,1,,Europe/Paris,,OIF, +OIF:SA:79:3045,1,"Rosny-sous-Bois - Mondor",48.869495,2.495525,,1,,Europe/Paris,,OIF, +OIF:SA:79:3046,1,"Rosny-sous-Bois - Émile Bellepêche",48.87069,2.49576,,1,,Europe/Paris,,OIF, +OIF:SA:79:3047,1,"Rosny-sous-Bois - Étang à l'Eau",48.87054,2.500038,,1,,Europe/Paris,,OIF, +OIF:SA:79:3048,1,"Rosny-sous-Bois - J. Duclos",48.871045,2.498936,,1,,Europe/Paris,,OIF, +OIF:SA:79:3049,1,"Rosny-sous-Bois - Casanova",48.873295,2.496667,,1,,Europe/Paris,,OIF, +OIF:SA:79:3052,1,"Rosny-sous-Bois - Gardebled",48.87492,2.484042,,1,,Europe/Paris,,OIF, +OIF:SA:79:3053,1,"Rosny-sous-Bois - Jean de Mailly",48.878279,2.485332,,1,,Europe/Paris,,OIF, +OIF:SA:79:3054,1,"Rosny-sous-Bois - de Gaulle - Péri",48.877199,2.479906,,1,,Europe/Paris,,OIF, +OIF:SA:7:10001,1,"Ambourget Cimetière",48.94695,2.511691,,1,,Europe/Paris,,OIF, +OIF:SA:7:10005,1,"Arts",48.942089,2.504976,,1,,Europe/Paris,,OIF, +OIF:SA:7:10017,1,"Calmette et Guérin",48.951832,2.513666,,1,,Europe/Paris,,OIF, +OIF:SA:7:10022,1,"Collège Pablo Neruda",48.951809,2.519806,,1,,Europe/Paris,,OIF, +OIF:SA:7:10029,1,"Centre Technique Municipal",48.961187,2.500576,,1,,Europe/Paris,,OIF, +OIF:SA:7:10034,1,"Docteur Fleming",48.951937,2.518047,,1,,Europe/Paris,,OIF, +OIF:SA:7:10036,1,"Dupuytren",48.954304,2.515762,,1,,Europe/Paris,,OIF, +OIF:SA:7:10040,1,"Garonor Entrée 4",48.95312,2.465263,,1,,Europe/Paris,,OIF, +OIF:SA:7:10042,1,"Gros Saule",48.949428,2.519627,,1,,Europe/Paris,,OIF, +OIF:SA:7:10044,1,"HLM",48.944942,2.508594,,1,,Europe/Paris,,OIF, +OIF:SA:7:10045,1,"Henri Mondor",48.95308,2.5141,,1,,Europe/Paris,,OIF, +OIF:SA:7:10050,1,"Lenglen",48.951362,2.513709,,1,,Europe/Paris,,OIF, +OIF:SA:7:10054,1,"Lapin Sauté",48.943861,2.50724,,1,,Europe/Paris,,OIF, +OIF:SA:7:10058,1,"Ô Parinor / Louis Armand",48.955632,2.48073,,1,,Europe/Paris,,OIF, +OIF:SA:7:10060,1,"Paré",48.94929,2.515636,,1,,Europe/Paris,,OIF, +OIF:SA:7:10066,1,"Savigny",48.948397,2.514507,,1,,Europe/Paris,,OIF, +OIF:SA:7:10067,1,"Schuman",48.948424,2.517461,,1,,Europe/Paris,,OIF, +OIF:SA:7:10068,1,"Schweitzer",48.949737,2.517084,,1,,Europe/Paris,,OIF, +OIF:SA:7:10072,1,"Stade du Moulin Neuf",48.935037,2.50316,,1,,Europe/Paris,,OIF, +OIF:SA:7:10073,1,"Saint-Paul",48.947151,2.509263,,1,,Europe/Paris,,OIF, +OIF:SA:7:10082,1,"Collège Aimée et Eugénie Cotton",48.941561,2.474859,,1,,Europe/Paris,,OIF, +OIF:SA:7:10084,1,"Centre d'Affaire",48.952651,2.462239,,1,,Europe/Paris,,OIF, +OIF:SA:7:10090,1,"Descartes",48.950488,2.464042,,1,,Europe/Paris,,OIF, +OIF:SA:7:10172,1,"Calvaire",48.993402,2.665475,,1,,Europe/Paris,,OIF, +OIF:SA:7:10173,1,"Caquot",48.984029,2.650253,,1,,Europe/Paris,,OIF, +OIF:SA:7:10175,1,"Coulomb",48.985948,2.65034,,1,,Europe/Paris,,OIF, +OIF:SA:7:10177,1,"École Jean de la Fontaine",48.990998,2.666894,,1,,Europe/Paris,,OIF, +OIF:SA:7:10178,1,"Etam",48.9935,2.657282,,1,,Europe/Paris,,OIF, +OIF:SA:7:10180,1,"Jacquard 2",48.988388,2.644913,,1,,Europe/Paris,,OIF, +OIF:SA:7:10184,1,"Maison des Associations",48.993121,2.663138,,1,,Europe/Paris,,OIF, +OIF:SA:7:10185,1,"Mercier",48.989719,2.648062,,1,,Europe/Paris,,OIF, +OIF:SA:7:10187,1,"Mermoz",48.992785,2.65075,,1,,Europe/Paris,,OIF, +OIF:SA:7:10188,1,"RD 9",48.991714,2.65314,,1,,Europe/Paris,,OIF, +OIF:SA:7:10190,1,"Saint-Exupéry",48.996387,2.651427,,1,,Europe/Paris,,OIF, +OIF:SA:7:10191,1,"Vinci 2",48.980565,2.646737,,1,,Europe/Paris,,OIF, +OIF:SA:7:10193,1,"ZI Spicers",48.994928,2.656212,,1,,Europe/Paris,,OIF, +OIF:SA:7:10222,1,"Épis",48.977395,2.500538,,1,,Europe/Paris,,OIF, +OIF:SA:7:10226,1,"Collège de Juilly",49.011995,2.705416,,1,,Europe/Paris,,OIF, +OIF:SA:7:10252,1,"14 Juillet 1789",48.963945,2.589116,,1,,Europe/Paris,,OIF, +OIF:SA:7:10254,1,"L'Abime",48.974173,2.629805,,1,,Europe/Paris,,OIF, +OIF:SA:7:10258,1,"Berthelot",48.979696,2.642042,,1,,Europe/Paris,,OIF, +OIF:SA:7:10260,1,"Bibliothèque",48.95541,2.600421,,1,,Europe/Paris,,OIF, +OIF:SA:7:10263,1,"Boulogne",48.962867,2.592993,,1,,Europe/Paris,,OIF, +OIF:SA:7:10265,1,"Branly",48.984208,2.634982,,1,,Europe/Paris,,OIF, +OIF:SA:7:10275,1,"Colas",48.980354,2.626946,,1,,Europe/Paris,,OIF, +OIF:SA:7:10276,1,"Courcelles",48.971403,2.645146,,1,,Europe/Paris,,OIF, +OIF:SA:7:10277,1,"Ctci",48.982498,2.647957,,1,,Europe/Paris,,OIF, +OIF:SA:7:10279,1,"Diderot",48.961262,2.584954,,1,,Europe/Paris,,OIF, +OIF:SA:7:10282,1,"Dijon",48.96086,2.58618,,1,,Europe/Paris,,OIF, +OIF:SA:7:10283,1,"Dubois",48.973042,2.635007,,1,,Europe/Paris,,OIF, +OIF:SA:7:10285,1,"Église",48.955162,2.592525,,1,,Europe/Paris,,OIF, +OIF:SA:7:10287,1,"Eiffel",48.980873,2.624273,,1,,Europe/Paris,,OIF, +OIF:SA:7:10288,1,"Épinal",48.962663,2.587772,,1,,Europe/Paris,,OIF, +OIF:SA:7:10290,1,"Frères Lumière",48.976013,2.629201,,1,,Europe/Paris,,OIF, +OIF:SA:7:10292,1,"Forest",48.979464,2.639829,,1,,Europe/Paris,,OIF, +OIF:SA:7:10294,1,"Foucault",48.983553,2.632589,,1,,Europe/Paris,,OIF, +OIF:SA:7:10296,1,"Galilée",48.972337,2.583519,,1,,Europe/Paris,,OIF, +OIF:SA:7:10297,1,"Galois",48.972587,2.579957,,1,,Europe/Paris,,OIF, +OIF:SA:7:10298,1,"Germain",48.970306,2.574445,,1,,Europe/Paris,,OIF, +OIF:SA:7:10299,1,"Gay Lussac",48.985178,2.638477,,1,,Europe/Paris,,OIF, +OIF:SA:7:10301,1,"Inmac",48.982995,2.643693,,1,,Europe/Paris,,OIF, +OIF:SA:7:10303,1,"Jacquart 1",48.987305,2.64163,,1,,Europe/Paris,,OIF, +OIF:SA:7:10305,1,"J.Moulin",48.982395,2.620813,,1,,Europe/Paris,,OIF, +OIF:SA:7:10307,1,"Lamartine",48.956203,2.599558,,1,,Europe/Paris,,OIF, +OIF:SA:7:10309,1,"Lefèvre",48.972257,2.641452,,1,,Europe/Paris,,OIF, +OIF:SA:7:10310,1,"Lemoine",48.985449,2.615969,,1,,Europe/Paris,,OIF, +OIF:SA:7:10311,1,"Lenfant",48.982979,2.611559,,1,,Europe/Paris,,OIF, +OIF:SA:7:10314,1,"Lumière",48.978434,2.629365,,1,,Europe/Paris,,OIF, +OIF:SA:7:10318,1,"Mail des Droits de l'Homme",48.96146,2.58258,,1,,Europe/Paris,,OIF, +OIF:SA:7:10320,1,"Moulin des Marais",48.973139,2.632031,,1,,Europe/Paris,,OIF, +OIF:SA:7:10326,1,"Nantes",48.961811,2.586997,,1,,Europe/Paris,,OIF, +OIF:SA:7:10327,1,"Newton",48.983278,2.641756,,1,,Europe/Paris,,OIF, +OIF:SA:7:10330,1,"Le Nid",48.968909,2.576514,,1,,Europe/Paris,,OIF, +OIF:SA:7:10331,1,"Nelson Mandela",48.96203,2.587305,,1,,Europe/Paris,,OIF, +OIF:SA:7:10332,1,"Nottelet - Môquet",48.974995,2.631728,,1,,Europe/Paris,,OIF, +OIF:SA:7:10334,1,"L'Orme aux Bergers",48.983641,2.620561,,1,,Europe/Paris,,OIF, +OIF:SA:7:10335,1,"Papin",48.982419,2.638679,,1,,Europe/Paris,,OIF, +OIF:SA:7:10337,1,"Pasteur",48.958565,2.598219,,1,,Europe/Paris,,OIF, +OIF:SA:7:10339,1,"Place Centrale",48.955876,2.588667,,1,,Europe/Paris,,OIF, +OIF:SA:7:10343,1,"Perrin",48.981141,2.634091,,1,,Europe/Paris,,OIF, +OIF:SA:7:10345,1,"Picasso",48.974051,2.646268,,1,,Europe/Paris,,OIF, +OIF:SA:7:10348,1,"Place Melun",48.960278,2.590463,,1,,Europe/Paris,,OIF, +OIF:SA:7:10350,1,"Pont",48.974055,2.641244,,1,,Europe/Paris,,OIF, +OIF:SA:7:10352,1,"Place de Pau",48.9588,2.586887,,1,,Europe/Paris,,OIF, +OIF:SA:7:10353,1,"Prévert",48.98466,2.618819,,1,,Europe/Paris,,OIF, +OIF:SA:7:10354,1,"Petit Vivier",48.974248,2.639321,,1,,Europe/Paris,,OIF, +OIF:SA:7:10356,1,"Résistance",48.977444,2.615141,,1,,Europe/Paris,,OIF, +OIF:SA:7:10360,1,"Séguin",48.98008,2.646693,,1,,Europe/Paris,,OIF, +OIF:SA:7:10362,1,"Vaillant Couturier",48.983482,2.615412,,1,,Europe/Paris,,OIF, +OIF:SA:7:10364,1,"Verdun",48.954825,2.597627,,1,,Europe/Paris,,OIF, +OIF:SA:7:10367,1,"Van Gogh",48.972955,2.646125,,1,,Europe/Paris,,OIF, +OIF:SA:7:10368,1,"Vinci 1",48.979366,2.644655,,1,,Europe/Paris,,OIF, +OIF:SA:7:10371,1,"Voltaire",48.958955,2.594427,,1,,Europe/Paris,,OIF, +OIF:SA:7:10413,1,"Clos Marchais",48.912975,2.62678,,1,,Europe/Paris,,OIF, +OIF:SA:7:10415,1,"Église",48.914812,2.630861,,1,,Europe/Paris,,OIF, +OIF:SA:7:10416,1,"Lagny",48.913763,2.633582,,1,,Europe/Paris,,OIF, +OIF:SA:7:10418,1,"Mairie",48.915049,2.629798,,1,,Europe/Paris,,OIF, +OIF:SA:7:10422,1,"Les Deux Cèdres",49.002008,2.528309,,1,,Europe/Paris,,OIF, +OIF:SA:7:10427,1,"Chesneau",49.006615,2.52194,,1,,Europe/Paris,,OIF, +OIF:SA:7:10429,1,"Belle Etoile 123",48.980645,2.503149,,1,,Europe/Paris,,OIF, +OIF:SA:7:10431,1,"Belle Etoile 165",48.982365,2.506493,,1,,Europe/Paris,,OIF, +OIF:SA:7:10432,1,"Belle Etoile 170",48.982491,2.506521,,1,,Europe/Paris,,OIF, +OIF:SA:7:10436,1,"57 Rue de la Belle Etoile",48.979165,2.500885,,1,,Europe/Paris,,OIF, +OIF:SA:7:10437,1,"69 Rue de la Belle Etoile",48.979084,2.50124,,1,,Europe/Paris,,OIF, +OIF:SA:7:10444,1,"Rue des Marguilliers",48.994579,2.523699,,1,,Europe/Paris,,OIF, +OIF:SA:7:10446,1,"Orangerie",49.002705,2.51985,,1,,Europe/Paris,,OIF, +OIF:SA:7:10449,1,"Bois de la Pie 351",48.9907,2.515683,,1,,Europe/Paris,,OIF, +OIF:SA:7:10452,1,"Vergers",48.998288,2.516433,,1,,Europe/Paris,,OIF, +OIF:SA:7:10483,1,"Vie Avenue",48.963489,2.570197,,1,,Europe/Paris,,OIF, +OIF:SA:7:10485,1,"Aéroville Belle Borne",48.98946,2.52531,,1,,Europe/Paris,,OIF, +OIF:SA:7:10491,1,"Béarn",48.940238,2.591006,,1,,Europe/Paris,,OIF, +OIF:SA:7:10492,1,"Berlioz",48.959968,2.573872,,1,,Europe/Paris,,OIF, +OIF:SA:7:10494,1,"Blum",48.948702,2.569707,,1,,Europe/Paris,,OIF, +OIF:SA:7:10496,1,"Briand",48.954908,2.581089,,1,,Europe/Paris,,OIF, +OIF:SA:7:10498,1,"Brossolette",48.949734,2.572741,,1,,Europe/Paris,,OIF, +OIF:SA:7:10500,1,"Lacroix",48.988568,2.545092,,1,,Europe/Paris,,OIF, +OIF:SA:7:10502,1,"Cargo Centre",48.998368,2.526124,,1,,Europe/Paris,,OIF, +OIF:SA:7:10504,1,"Caussimon",48.943488,2.579589,,1,,Europe/Paris,,OIF, +OIF:SA:7:10505,1,"Centre d'Activités CDG",48.964329,2.565655,,1,,Europe/Paris,,OIF, +OIF:SA:7:10509,1,"Rue du Châpitre",49.002527,2.535253,,1,,Europe/Paris,,OIF, +OIF:SA:7:10513,1,"Cottages",48.966415,2.568567,,1,,Europe/Paris,,OIF, +OIF:SA:7:10516,1,"Central Parc",48.961883,2.559291,,1,,Europe/Paris,,OIF, +OIF:SA:7:10520,1,"Cusino",48.946429,2.591514,,1,,Europe/Paris,,OIF, +OIF:SA:7:10521,1,"Debussy",48.961629,2.579367,,1,,Europe/Paris,,OIF, +OIF:SA:7:10523,1,"Farman 61",48.96539,2.565483,,1,,Europe/Paris,,OIF, +OIF:SA:7:10530,1,"Jaurès",48.951359,2.582737,,1,,Europe/Paris,,OIF, +OIF:SA:7:10536,1,"LEP Boucher",48.950459,2.579089,,1,,Europe/Paris,,OIF, +OIF:SA:7:10539,1,"Marronniers",48.959163,2.57883,,1,,Europe/Paris,,OIF, +OIF:SA:7:10540,1,"Mermoz",48.966896,2.567373,,1,,Europe/Paris,,OIF, +OIF:SA:7:10541,1,"Marcel Paul",48.964677,2.562545,,1,,Europe/Paris,,OIF, +OIF:SA:7:10546,1,"Pablo Neruda",48.966618,2.574128,,1,,Europe/Paris,,OIF, +OIF:SA:7:10551,1,"La Paix",48.95475,2.565354,,1,,Europe/Paris,,OIF, +OIF:SA:7:10553,1,"Paris Asia",48.976158,2.544588,,1,,Europe/Paris,,OIF, +OIF:SA:7:10555,1,"Place A.Thomas",48.942039,2.585312,,1,,Europe/Paris,,OIF, +OIF:SA:7:10556,1,"Pavé",48.987106,2.532801,,1,,Europe/Paris,,OIF, +OIF:SA:7:10559,1,"Péri",48.95952,2.561588,,1,,Europe/Paris,,OIF, +OIF:SA:7:10566,1,"Poitou",48.944442,2.58344,,1,,Europe/Paris,,OIF, +OIF:SA:7:10567,1,"Petits Ponts",48.963539,2.563216,,1,,Europe/Paris,,OIF, +OIF:SA:7:10571,1,"RD 88",48.98335,2.543088,,1,,Europe/Paris,,OIF, +OIF:SA:7:10572,1,"Reineuse",48.959545,2.581172,,1,,Europe/Paris,,OIF, +OIF:SA:7:10576,1,"Résistance",48.949587,2.565188,,1,,Europe/Paris,,OIF, +OIF:SA:7:10578,1,"Ronsard",48.957014,2.563283,,1,,Europe/Paris,,OIF, +OIF:SA:7:10581,1,"Salengro",48.945707,2.58859,,1,,Europe/Paris,,OIF, +OIF:SA:7:10582,1,"Sarrault",48.943801,2.593301,,1,,Europe/Paris,,OIF, +OIF:SA:7:10583,1,"Stade Jaurès",48.941091,2.582865,,1,,Europe/Paris,,OIF, +OIF:SA:7:10584,1,"Saint-Pères",48.982912,2.551947,,1,,Europe/Paris,,OIF, +OIF:SA:7:10588,1,"Vaillant",48.943835,2.572496,,1,,Europe/Paris,,OIF, +OIF:SA:7:10594,1,"2 Départements",48.938106,2.598205,,1,,Europe/Paris,,OIF, +OIF:SA:7:10598,1,"L'Ambrésis",48.947039,2.621738,,1,,Europe/Paris,,OIF, +OIF:SA:7:10602,1,"Béarn",48.949951,2.612025,,1,,Europe/Paris,,OIF, +OIF:SA:7:10603,1,"Berlioz",48.941698,2.597725,,1,,Europe/Paris,,OIF, +OIF:SA:7:10607,1,"Bretagne",48.94821,2.615004,,1,,Europe/Paris,,OIF, +OIF:SA:7:10613,1,"Cévennes",48.944206,2.621027,,1,,Europe/Paris,,OIF, +OIF:SA:7:10614,1,"Collège G. Philipe",48.940642,2.622849,,1,,Europe/Paris,,OIF, +OIF:SA:7:10617,1,"Chrysanthèmes",48.935187,2.636023,,1,,Europe/Paris,,OIF, +OIF:SA:7:10619,1,"Cimetière",48.936567,2.624634,,1,,Europe/Paris,,OIF, +OIF:SA:7:10620,1,"Collège Monod",48.936124,2.608719,,1,,Europe/Paris,,OIF, +OIF:SA:7:10625,1,"Descartes",48.938145,2.605251,,1,,Europe/Paris,,OIF, +OIF:SA:7:10627,1,"Entrepreneurs",48.948723,2.622143,,1,,Europe/Paris,,OIF, +OIF:SA:7:10628,1,"Faux Quonins",48.936861,2.616123,,1,,Europe/Paris,,OIF, +OIF:SA:7:10630,1,"Freyssinet",48.948807,2.624654,,1,,Europe/Paris,,OIF, +OIF:SA:7:10631,1,"Grillons",48.944628,2.603361,,1,,Europe/Paris,,OIF, +OIF:SA:7:10633,1,"Lavoisier",48.944841,2.598757,,1,,Europe/Paris,,OIF, +OIF:SA:7:10635,1,"Lefèvre",48.948181,2.611961,,1,,Europe/Paris,,OIF, +OIF:SA:7:10636,1,"Louis",48.94212,2.621397,,1,,Europe/Paris,,OIF, +OIF:SA:7:10637,1,"Marguerites",48.93787,2.63578,,1,,Europe/Paris,,OIF, +OIF:SA:7:10639,1,"Piétrasanta",48.940553,2.615277,,1,,Europe/Paris,,OIF, +OIF:SA:7:10640,1,"Mairie Annexe",48.938453,2.639657,,1,,Europe/Paris,,OIF, +OIF:SA:7:10641,1,"Marché",48.951664,2.601951,,1,,Europe/Paris,,OIF, +OIF:SA:7:10642,1,"Montesquieu",48.941063,2.604229,,1,,Europe/Paris,,OIF, +OIF:SA:7:10644,1,"Normandie Niémen",48.95034,2.614913,,1,,Europe/Paris,,OIF, +OIF:SA:7:10646,1,"Ormes",48.952761,2.613323,,1,,Europe/Paris,,OIF, +OIF:SA:7:10647,1,"Parc d'Activités de l'Ambrésis",48.946165,2.624489,,1,,Europe/Paris,,OIF, +OIF:SA:7:10650,1,"Réneuse",48.952294,2.607371,,1,,Europe/Paris,,OIF, +OIF:SA:7:10653,1,"Rossignols Provence",48.946896,2.615836,,1,,Europe/Paris,,OIF, +OIF:SA:7:10655,1,"Saint-Denis",48.947924,2.602591,,1,,Europe/Paris,,OIF, +OIF:SA:7:10657,1,"Tilleuls",48.952478,2.615368,,1,,Europe/Paris,,OIF, +OIF:SA:7:10658,1,"Verdun",48.947921,2.599912,,1,,Europe/Paris,,OIF, +OIF:SA:7:10660,1,"Les 4 Tours",48.957905,2.557582,,1,,Europe/Paris,,OIF, +OIF:SA:7:10662,1,"Brassens",48.957307,2.555717,,1,,Europe/Paris,,OIF, +OIF:SA:7:10664,1,"Bec Salé",48.955879,2.540017,,1,,Europe/Paris,,OIF, +OIF:SA:7:10666,1,"Centre Commercial",48.96019,2.556609,,1,,Europe/Paris,,OIF, +OIF:SA:7:10672,1,"Claude Nicolas Ledoux",48.969092,2.545939,,1,,Europe/Paris,,OIF, +OIF:SA:7:10674,1,"Combattants",48.951593,2.561915,,1,,Europe/Paris,,OIF, +OIF:SA:7:10676,1,"Cimetière",48.966328,2.541273,,1,,Europe/Paris,,OIF, +OIF:SA:7:10680,1,"Europe",48.958151,2.558436,,1,,Europe/Paris,,OIF, +OIF:SA:7:10694,1,"Labé",48.967904,2.547415,,1,,Europe/Paris,,OIF, +OIF:SA:7:10696,1,"Laurencin",48.966642,2.549252,,1,,Europe/Paris,,OIF, +OIF:SA:7:10698,1,"Leclerc",48.95604,2.553248,,1,,Europe/Paris,,OIF, +OIF:SA:7:10700,1,"Lycée Rostand",48.958955,2.549555,,1,,Europe/Paris,,OIF, +OIF:SA:7:10703,1,"Malraux",48.957181,2.550619,,1,,Europe/Paris,,OIF, +OIF:SA:7:10705,1,"Merisiers",48.953614,2.562647,,1,,Europe/Paris,,OIF, +OIF:SA:7:10707,1,"Monnet",48.964515,2.547558,,1,,Europe/Paris,,OIF, +OIF:SA:7:10712,1,"Parmentier",48.947653,2.561727,,1,,Europe/Paris,,OIF, +OIF:SA:7:10721,1,"Poste",48.951416,2.558346,,1,,Europe/Paris,,OIF, +OIF:SA:7:10723,1,"Place René Droulot",48.954084,2.556038,,1,,Europe/Paris,,OIF, +OIF:SA:7:10725,1,"La Roseraie",48.955254,2.552815,,1,,Europe/Paris,,OIF, +OIF:SA:7:10727,1,"Schuman",48.965471,2.545842,,1,,Europe/Paris,,OIF, +OIF:SA:7:10730,1,"Sisley",48.964771,2.55018,,1,,Europe/Paris,,OIF, +OIF:SA:7:10731,1,"Stade",48.949456,2.563154,,1,,Europe/Paris,,OIF, +OIF:SA:7:10733,1,"Tocqueville",48.969237,2.550635,,1,,Europe/Paris,,OIF, +OIF:SA:7:10737,1,"Vercors",48.954784,2.56141,,1,,Europe/Paris,,OIF, +OIF:SA:7:10775,1,"Hôpital",48.950923,2.522969,,1,,Europe/Paris,,OIF, +OIF:SA:7:10778,1,"Avenue de l'Ouest",48.980809,2.525752,,1,,Europe/Paris,,OIF, +OIF:SA:7:10781,1,"Versant Seine",48.986716,2.535079,,1,,Europe/Paris,,OIF, +OIF:SA:7:10791,1,"Ladoumègue",48.979635,2.615637,,1,,Europe/Paris,,OIF, +OIF:SA:7:10793,1,"Église",48.936598,2.465119,,1,,Europe/Paris,,OIF, +OIF:SA:7:10795,1,"Hôtel de Ville",48.938076,2.461372,,1,,Europe/Paris,,OIF, +OIF:SA:7:10820,1,"Collège Satie",48.962414,2.596983,,1,,Europe/Paris,,OIF, +OIF:SA:7:10821,1,"La Villette aux Aulnes",48.968434,2.578361,,1,,Europe/Paris,,OIF, +OIF:SA:7:10833,1,"Lycée Léonard de Vinci",48.96618,2.570618,,1,,Europe/Paris,,OIF, +OIF:SA:7:10834,1,"Institution Fénélon",48.933986,2.572083,,1,,Europe/Paris,,OIF, +OIF:SA:7:10836,1,"Châteaubriant",48.963876,2.593974,,1,,Europe/Paris,,OIF, +OIF:SA:7:10837,1,"Cimetière",48.961259,2.598915,,1,,Europe/Paris,,OIF, +OIF:SA:7:10838,1,"École Henri Barbusse",48.957607,2.592264,,1,,Europe/Paris,,OIF, +OIF:SA:7:10839,1,"Parc des Douves",48.965294,2.590719,,1,,Europe/Paris,,OIF, +OIF:SA:7:10841,1,"ZAC du Parc",48.992751,2.658418,,1,,Europe/Paris,,OIF, +OIF:SA:7:10855,1,"372 Rue de la Belle Etoile",48.989467,2.517386,,1,,Europe/Paris,,OIF, +OIF:SA:7:10856,1,"190 Rue des Chardonnerets",48.988418,2.518222,,1,,Europe/Paris,,OIF, +OIF:SA:7:10858,1,"33 Rue des Chardonnerets",48.981811,2.516663,,1,,Europe/Paris,,OIF, +OIF:SA:7:10860,1,"89 Rue des Chardonnerets",48.984338,2.518399,,1,,Europe/Paris,,OIF, +OIF:SA:7:10862,1,"Rue de l'Étang",48.979776,2.516738,,1,,Europe/Paris,,OIF, +OIF:SA:80:106,1,"Jean Jaurès",48.797483,2.190056,,1,,Europe/Paris,,OIF, +OIF:SA:80:107,1,"Jean Macé",48.79732,2.189131,,1,,Europe/Paris,,OIF, +OIF:SA:80:11,1,"Albert Perdreaux",48.796979,2.182643,,1,,Europe/Paris,,OIF, +OIF:SA:80:110,1,"Les Ailes",48.77691,2.2061,,1,,Europe/Paris,,OIF, +OIF:SA:80:114,1,"Doumer Lafontaine",48.794529,2.200077,,1,,Europe/Paris,,OIF, +OIF:SA:80:116,1,"Les Hélices",48.777405,2.194682,,1,,Europe/Paris,,OIF, +OIF:SA:80:120,1,"Stade Léo Lagrange",48.797319,2.187968,,1,,Europe/Paris,,OIF, +OIF:SA:80:122,1,"Les Metz - Hoche",48.774862,2.167437,,1,,Europe/Paris,,OIF, +OIF:SA:80:124,1,"Les Metz - la Mare",48.771764,2.1667,,1,,Europe/Paris,,OIF, +OIF:SA:80:132,1,"Maire Annexe",48.797452,2.194314,,1,,Europe/Paris,,OIF, +OIF:SA:80:133,1,"Les Metz - Clair-Bois",48.777878,2.167679,,1,,Europe/Paris,,OIF, +OIF:SA:80:137,1,"Marcel Dassault",48.785738,2.211179,,1,,Europe/Paris,,OIF, +OIF:SA:80:143,1,"Mermoz",48.787654,2.182603,,1,,Europe/Paris,,OIF, +OIF:SA:80:15,1,"Base Aérienne 107",48.772805,2.216479,,1,,Europe/Paris,,OIF, +OIF:SA:80:152,1,"Picardie-Alsace",48.784234,2.175704,,1,,Europe/Paris,,OIF, +OIF:SA:80:153,1,"Place de l'Aviation",48.784067,2.185293,,1,,Europe/Paris,,OIF, +OIF:SA:80:155,1,"Picardie / Champagne",48.78476,2.172492,,1,,Europe/Paris,,OIF, +OIF:SA:80:162,1,"Musée de Sevres",48.82936,2.229485,,1,,Europe/Paris,,OIF, +OIF:SA:80:164,1,"Pointe Ouest",48.778136,2.178864,,1,,Europe/Paris,,OIF, +OIF:SA:80:17,1,"Burospace",48.767175,2.21574,,1,,Europe/Paris,,OIF, +OIF:SA:80:176,1,"Rabourdin",48.78273,2.194096,,1,,Europe/Paris,,OIF, +OIF:SA:80:178,1,"Résidence Europe",48.780579,2.203602,,1,,Europe/Paris,,OIF, +OIF:SA:80:180,1,"Résidence les Bois",48.783587,2.20507,,1,,Europe/Paris,,OIF, +OIF:SA:80:181,1,"Route Militaire",48.777639,2.191241,,1,,Europe/Paris,,OIF, +OIF:SA:80:183,1,"Roland Garros",48.787053,2.186644,,1,,Europe/Paris,,OIF, +OIF:SA:80:185,1,"Rond-Point Val de Grâce",48.775536,2.21922,,1,,Europe/Paris,,OIF, +OIF:SA:80:19,1,"Bertisettes",48.798388,2.167565,,1,,Europe/Paris,,OIF, +OIF:SA:80:190,1,"Savoie / Alsace",48.783172,2.174292,,1,,Europe/Paris,,OIF, +OIF:SA:80:191,1,"Sarraut",48.791807,2.145875,,1,,Europe/Paris,,OIF, +OIF:SA:80:2,1,"Art de Vivre/l'Usine",48.774378,2.226369,,1,,Europe/Paris,,OIF, +OIF:SA:80:202,1,"Ursine",48.797527,2.196511,,1,,Europe/Paris,,OIF, +OIF:SA:80:204,1,"Villacoublay",48.783245,2.204017,,1,,Europe/Paris,,OIF, +OIF:SA:80:205,1,"Centre Commercial",48.781858,2.21841,,1,,Europe/Paris,,OIF, +OIF:SA:80:209,1,"Vélizy 2 Sud",48.779115,2.21709,,1,,Europe/Paris,,OIF, +OIF:SA:80:212,1,"Le Village",48.783265,2.190695,,1,,Europe/Paris,,OIF, +OIF:SA:80:213,1,"La Cheminée",48.783755,2.206076,,1,,Europe/Paris,,OIF, +OIF:SA:80:215,1,"Zone Aéronautique",48.778316,2.18276,,1,,Europe/Paris,,OIF, +OIF:SA:80:225,1,"Ministère",48.762764,2.207298,,1,,Europe/Paris,,OIF, +OIF:SA:80:229,1,"Vauboyen",48.75663,2.211494,,1,,Europe/Paris,,OIF, +OIF:SA:80:23,1,"Blériot",48.786165,2.187871,,1,,Europe/Paris,,OIF, +OIF:SA:80:29,1,"Concorde",48.796036,2.197665,,1,,Europe/Paris,,OIF, +OIF:SA:80:30,1,"Centre Commercial Mozart",48.783938,2.169448,,1,,Europe/Paris,,OIF, +OIF:SA:80:33,1,"Copernic",48.788434,2.215321,,1,,Europe/Paris,,OIF, +OIF:SA:80:35,1,"Centre d'Affaires Petit Robinson",48.780243,2.168827,,1,,Europe/Paris,,OIF, +OIF:SA:80:43,1,"Cimetière",48.795723,2.180501,,1,,Europe/Paris,,OIF, +OIF:SA:80:6,1,"Allée Noire",48.795576,2.181545,,1,,Europe/Paris,,OIF, +OIF:SA:80:68,1,"Exelmans",48.779826,2.201489,,1,,Europe/Paris,,OIF, +OIF:SA:80:7,1,"André Citroën",48.775174,2.222029,,1,,Europe/Paris,,OIF, +OIF:SA:80:71,1,"Fronval",48.78312,2.189743,,1,,Europe/Paris,,OIF, +OIF:SA:80:77,1,"Grange Dame Rose",48.78281,2.205358,,1,,Europe/Paris,,OIF, +OIF:SA:80:92,1,"Général Valérie André",48.777953,2.186997,,1,,Europe/Paris,,OIF, +OIF:SA:80:95,1,"Hubert Georgette",48.797055,2.185527,,1,,Europe/Paris,,OIF, +OIF:SA:81:14049,1,"Gaillonnet / Soleil Levant",49.025197,1.872128,,1,,Europe/Paris,,OIF, +OIF:SA:81:14720,1,"Les Millerus / la Ferme",48.873031,1.558077,,1,,Europe/Paris,,OIF, +OIF:SA:81:14721,1,"La Cavée",49.030558,1.845349,,1,,Europe/Paris,,OIF, +OIF:SA:81:14722,1,"Mairie",48.861139,1.580255,,1,,Europe/Paris,,OIF, +OIF:SA:81:14725,1,"Les Millerus / la Croix",48.874346,1.564039,,1,,Europe/Paris,,OIF, +OIF:SA:81:14727,1,"Saint-Laurent",48.882137,1.581992,,1,,Europe/Paris,,OIF, +OIF:SA:81:14733,1,"Mirbel / Moulin d'Haut",48.920651,1.555928,,1,,Europe/Paris,,OIF, +OIF:SA:81:14734,1,"Heurteloup",48.900907,1.582598,,1,,Europe/Paris,,OIF, +OIF:SA:81:14736,1,"Petit Heurteloup",48.903236,1.575768,,1,,Europe/Paris,,OIF, +OIF:SA:81:14738,1,"La Noue",48.90843,1.549309,,1,,Europe/Paris,,OIF, +OIF:SA:81:14739,1,"Bas",48.893127,1.633096,,1,,Europe/Paris,,OIF, +OIF:SA:81:14741,1,"Haut",48.892743,1.631935,,1,,Europe/Paris,,OIF, +OIF:SA:81:14743,1,"Mairie",48.918235,1.659803,,1,,Europe/Paris,,OIF, +OIF:SA:81:14745,1,"Mairie",48.927198,1.64769,,1,,Europe/Paris,,OIF, +OIF:SA:81:14747,1,"Le Tertre Saint-Denis Abri Bus",48.938162,1.606086,,1,,Europe/Paris,,OIF, +OIF:SA:81:14751,1,"Le Pelleray",48.966034,1.537294,,1,,Europe/Paris,,OIF, +OIF:SA:81:14757,1,"Thiron",48.96618,1.557944,,1,,Europe/Paris,,OIF, +OIF:SA:81:14759,1,"Les Devins",48.963103,1.551295,,1,,Europe/Paris,,OIF, +OIF:SA:81:14761,1,"La Justice",48.958406,1.536805,,1,,Europe/Paris,,OIF, +OIF:SA:81:14767,1,"La Démonderie",48.955821,1.5944,,1,,Europe/Paris,,OIF, +OIF:SA:81:14769,1,"Les Gâts",48.96217,1.593613,,1,,Europe/Paris,,OIF, +OIF:SA:81:14771,1,"Les Bocquets",48.962056,1.598405,,1,,Europe/Paris,,OIF, +OIF:SA:81:14773,1,"Gare de Ménerville",48.966786,1.601777,,1,,Europe/Paris,,OIF, +OIF:SA:81:14777,1,"Belle Côte / la Cour aux Huans",48.975619,1.592805,,1,,Europe/Paris,,OIF, +OIF:SA:81:14781,1,"Poirier Godart",48.973422,1.577834,,1,,Europe/Paris,,OIF, +OIF:SA:81:14785,1,"La Fortelle",48.931654,1.580042,,1,,Europe/Paris,,OIF, +OIF:SA:81:14788,1,"La Haie Montaise",48.929146,1.550726,,1,,Europe/Paris,,OIF, +OIF:SA:81:14790,1,"Launay",48.933019,1.55064,,1,,Europe/Paris,,OIF, +OIF:SA:81:14792,1,"Le Coignet",48.926338,1.537921,,1,,Europe/Paris,,OIF, +OIF:SA:81:14794,1,"La Scellée",48.960541,1.533626,,1,,Europe/Paris,,OIF, +OIF:SA:81:14797,1,"Collège les Nénuphars",48.943286,1.536377,,1,,Europe/Paris,,OIF, +OIF:SA:81:14799,1,"Les Loges",48.937514,1.520784,,1,,Europe/Paris,,OIF, +OIF:SA:81:14801,1,"La Gamacherie",48.973748,1.567713,,1,,Europe/Paris,,OIF, +OIF:SA:81:14802,1,"Les Mulottes",48.968883,1.56595,,1,,Europe/Paris,,OIF, +OIF:SA:81:14805,1,"Place du Tranchant",48.943931,1.534634,,1,,Europe/Paris,,OIF, +OIF:SA:81:14807,1,"La Maisonneraie",49.006529,1.780009,,1,,Europe/Paris,,OIF, +OIF:SA:81:14815,1,"École",49.014318,1.695425,,1,,Europe/Paris,,OIF, +OIF:SA:81:14819,1,"Collège George Sand",48.968742,1.686285,,1,,Europe/Paris,,OIF, +OIF:SA:81:14825,1,"Sacré Cœur",48.983812,1.707853,,1,,Europe/Paris,,OIF, +OIF:SA:81:14833,1,"Gaudimonts",48.961419,1.62885,,1,,Europe/Paris,,OIF, +OIF:SA:81:14835,1,"Mare la Forge",48.958346,1.619284,,1,,Europe/Paris,,OIF, +OIF:SA:81:14837,1,"Vert Village",48.944477,1.54172,,1,,Europe/Paris,,OIF, +OIF:SA:81:14845,1,"Carrefour Saint-Martin",48.964583,1.632062,,1,,Europe/Paris,,OIF, +OIF:SA:81:14849,1,"Apremont le Clos",48.981427,1.615223,,1,,Europe/Paris,,OIF, +OIF:SA:81:14857,1,"Longuemare",48.998798,1.487378,,1,,Europe/Paris,,OIF, +OIF:SA:81:14892,1,"Docteur Roux",48.989045,1.738118,,1,,Europe/Paris,,OIF, +OIF:SA:81:14893,1,"L'Abri",48.999285,1.886162,,1,,Europe/Paris,,OIF, +OIF:SA:81:15037,1,"Bois de Merville",49.044843,1.545233,,1,,Europe/Paris,,OIF, +OIF:SA:81:15043,1,"Pont",49.040398,1.569113,,1,,Europe/Paris,,OIF, +OIF:SA:81:15049,1,"Centre Social",49.034358,1.584449,,1,,Europe/Paris,,OIF, +OIF:SA:81:15051,1,"Cimetière",49.033585,1.5809,,1,,Europe/Paris,,OIF, +OIF:SA:81:15053,1,"Collège Marcel Pagnol",49.030723,1.56692,,1,,Europe/Paris,,OIF, +OIF:SA:81:15055,1,"Gambetta",49.035993,1.583058,,1,,Europe/Paris,,OIF, +OIF:SA:81:15059,1,"Haegeman",49.037761,1.586962,,1,,Europe/Paris,,OIF, +OIF:SA:81:15061,1,"Monument",49.033773,1.575129,,1,,Europe/Paris,,OIF, +OIF:SA:81:15069,1,"ZAC Mesnil Renard",49.030655,1.571622,,1,,Europe/Paris,,OIF, +OIF:SA:81:15077,1,"Église",48.991033,1.492511,,1,,Europe/Paris,,OIF, +OIF:SA:81:15079,1,"Le Val Comtat",48.977214,1.48021,,1,,Europe/Paris,,OIF, +OIF:SA:81:15085,1,"Aubépines",49.035406,1.595429,,1,,Europe/Paris,,OIF, +OIF:SA:81:15087,1,"Les Belles Côtes",49.032362,1.603113,,1,,Europe/Paris,,OIF, +OIF:SA:81:15089,1,"Bois Prévost",49.028515,1.608176,,1,,Europe/Paris,,OIF, +OIF:SA:81:15091,1,"Freneuse Centre Commercial",49.040542,1.593415,,1,,Europe/Paris,,OIF, +OIF:SA:81:15093,1,"Curie",49.043969,1.599626,,1,,Europe/Paris,,OIF, +OIF:SA:81:15095,1,"Église",49.046499,1.603418,,1,,Europe/Paris,,OIF, +OIF:SA:81:15097,1,"Guyenne",49.033943,1.600166,,1,,Europe/Paris,,OIF, +OIF:SA:81:15099,1,"Poste",49.045385,1.597508,,1,,Europe/Paris,,OIF, +OIF:SA:81:15101,1,"Les Balloches",49.040705,1.590719,,1,,Europe/Paris,,OIF, +OIF:SA:81:15103,1,"Les Clédevilles",49.042251,1.594962,,1,,Europe/Paris,,OIF, +OIF:SA:81:15105,1,"Les Criquets",49.051989,1.604776,,1,,Europe/Paris,,OIF, +OIF:SA:81:15107,1,"Les Plantines",49.040244,1.587384,,1,,Europe/Paris,,OIF, +OIF:SA:81:15109,1,"Mairie",49.048063,1.600429,,1,,Europe/Paris,,OIF, +OIF:SA:81:15111,1,"Paul Éluard",49.035518,1.599043,,1,,Europe/Paris,,OIF, +OIF:SA:81:15113,1,"Place Marseille",49.03475,1.596888,,1,,Europe/Paris,,OIF, +OIF:SA:81:15116,1,"Les Ventines",49.040779,1.596829,,1,,Europe/Paris,,OIF, +OIF:SA:81:15124,1,"Casanova",48.991708,1.813285,,1,,Europe/Paris,,OIF, +OIF:SA:81:15126,1,"Collège Albert Camus",48.989723,1.81975,,1,,Europe/Paris,,OIF, +OIF:SA:81:15128,1,"Chênes",48.986817,1.81386,,1,,Europe/Paris,,OIF, +OIF:SA:81:15151,1,"Rangiport",48.977173,1.812422,,1,,Europe/Paris,,OIF, +OIF:SA:81:15156,1,"Vigneux",48.991999,1.817147,,1,,Europe/Paris,,OIF, +OIF:SA:81:15158,1,"Clachaloze",49.060219,1.599367,,1,,Europe/Paris,,OIF, +OIF:SA:81:15176,1,"Collège Jaques Cartier",48.987512,1.787506,,1,,Europe/Paris,,OIF, +OIF:SA:81:15186,1,"Hautes Bovettes",48.986419,1.793136,,1,,Europe/Paris,,OIF, +OIF:SA:81:15202,1,"Jean Marion",48.98984,1.838901,,1,,Europe/Paris,,OIF, +OIF:SA:81:15211,1,"Alpa",48.985136,1.759198,,1,,Europe/Paris,,OIF, +OIF:SA:81:15220,1,"Lycée Condorcet",48.985689,1.756011,,1,,Europe/Paris,,OIF, +OIF:SA:81:15234,1,"Monument",49.063032,1.553501,,1,,Europe/Paris,,OIF, +OIF:SA:81:15236,1,"Place du Prieuré",49.056894,1.537227,,1,,Europe/Paris,,OIF, +OIF:SA:81:15238,1,"Route de la Roche",49.06555,1.560021,,1,,Europe/Paris,,OIF, +OIF:SA:81:15273,1,"Barrage",49.030735,1.617773,,1,,Europe/Paris,,OIF, +OIF:SA:81:15275,1,"La Mère Biquette",49.033748,1.625077,,1,,Europe/Paris,,OIF, +OIF:SA:81:15277,1,"Mairie",49.036843,1.629422,,1,,Europe/Paris,,OIF, +OIF:SA:81:15295,1,"Côteaux de Seine",49.074203,1.662722,,1,,Europe/Paris,,OIF, +OIF:SA:81:15297,1,"Base de Loisirs",49.060462,1.677848,,1,,Europe/Paris,,OIF, +OIF:SA:81:15299,1,"Claude Monet",49.063572,1.694444,,1,,Europe/Paris,,OIF, +OIF:SA:81:15301,1,"Le Petit Pont",49.075616,1.64352,,1,,Europe/Paris,,OIF, +OIF:SA:81:15303,1,"Les Haudières",49.070065,1.67884,,1,,Europe/Paris,,OIF, +OIF:SA:81:15305,1,"Place Georges Pain",49.072854,1.670502,,1,,Europe/Paris,,OIF, +OIF:SA:81:15308,1,"Les Bretons",49.046383,1.651855,,1,,Europe/Paris,,OIF, +OIF:SA:81:15310,1,"Mairie",49.042817,1.647603,,1,,Europe/Paris,,OIF, +OIF:SA:81:15312,1,"Route des Crêtes",49.043904,1.645155,,1,,Europe/Paris,,OIF, +OIF:SA:81:15329,1,"Mairie",49.018435,1.610901,,1,,Europe/Paris,,OIF, +OIF:SA:81:15336,1,"Vallée",49.002871,1.625905,,1,,Europe/Paris,,OIF, +OIF:SA:81:15338,1,"Stade",48.999756,1.640918,,1,,Europe/Paris,,OIF, +OIF:SA:81:15340,1,"Martinets",48.999238,1.646914,,1,,Europe/Paris,,OIF, +OIF:SA:81:15345,1,"Mairie",49.000944,1.631286,,1,,Europe/Paris,,OIF, +OIF:SA:81:15350,1,"Saint-Charles",49.000299,1.634675,,1,,Europe/Paris,,OIF, +OIF:SA:81:15356,1,"L'Aventure",49.009435,1.544375,,1,,Europe/Paris,,OIF, +OIF:SA:81:15358,1,"Le Baliquet",49.013868,1.551637,,1,,Europe/Paris,,OIF, +OIF:SA:81:15360,1,"Le Cholet",49.011711,1.538076,,1,,Europe/Paris,,OIF, +OIF:SA:81:15364,1,"Mairie",49.014626,1.528515,,1,,Europe/Paris,,OIF, +OIF:SA:81:15366,1,"Route de Bonnières",49.015866,1.524486,,1,,Europe/Paris,,OIF, +OIF:SA:81:15371,1,"Les Marcets",49.007147,1.530278,,1,,Europe/Paris,,OIF, +OIF:SA:81:15386,1,"Mairie",49.008097,1.777206,,1,,Europe/Paris,,OIF, +OIF:SA:81:15414,1,"Alligator",49.039396,1.634944,,1,,Europe/Paris,,OIF, +OIF:SA:81:15418,1,"Faîtes",49.034795,1.587593,,1,,Europe/Paris,,OIF, +OIF:SA:81:15420,1,"Chêneaux",49.033217,1.585272,,1,,Europe/Paris,,OIF, +OIF:SA:81:15422,1,"Tennis",49.033302,1.5824,,1,,Europe/Paris,,OIF, +OIF:SA:81:15424,1,"Couture",48.988088,1.799598,,1,,Europe/Paris,,OIF, +OIF:SA:81:15426,1,"Collège de la Montcient",49.011933,1.906749,,1,,Europe/Paris,,OIF, +OIF:SA:81:15428,1,"Collège Sully",49.001114,1.644997,,1,,Europe/Paris,,OIF, +OIF:SA:81:15449,1,"Auffreville Auffreville",48.956246,1.707254,,1,,Europe/Paris,,OIF, +OIF:SA:81:15451,1,"Auffreville Brasseuil",48.949742,1.698463,,1,,Europe/Paris,,OIF, +OIF:SA:81:15455,1,"Rosay Rosay",48.914909,1.681303,,1,,Europe/Paris,,OIF, +OIF:SA:81:15461,1,"Forest",48.988844,1.761314,,1,,Europe/Paris,,OIF, +OIF:SA:81:15497,1,"Parking Saint-Exupéry",48.996968,1.691625,,1,,Europe/Paris,,OIF, +OIF:SA:81:15499,1,"Monument",48.99602,1.733899,,1,,Europe/Paris,,OIF, +OIF:SA:81:15501,1,"La Chartre",49.018695,1.8247,,1,,Europe/Paris,,OIF, +OIF:SA:81:15503,1,"Sources",48.995526,1.80988,,1,,Europe/Paris,,OIF, +OIF:SA:81:15504,1,"Jules Ferry",48.992928,1.80882,,1,,Europe/Paris,,OIF, +OIF:SA:81:15506,1,"Michon",48.99126,1.809616,,1,,Europe/Paris,,OIF, +OIF:SA:81:15510,1,"George Sand",48.994661,1.739719,,1,,Europe/Paris,,OIF, +OIF:SA:81:15517,1,"Les Essarts",48.999304,1.746488,,1,,Europe/Paris,,OIF, +OIF:SA:81:15518,1,"Pommeraie",49.000412,1.742405,,1,,Europe/Paris,,OIF, +OIF:SA:81:15525,1,"Ampère",48.996433,1.745442,,1,,Europe/Paris,,OIF, +OIF:SA:81:15527,1,"Mairie",49.05659,1.76713,,1,,Europe/Paris,,OIF, +OIF:SA:81:15529,1,"Les Garennes",48.975282,1.801479,,1,,Europe/Paris,,OIF, +OIF:SA:81:15531,1,"Port de l'Ilon",49.021372,1.639151,,1,,Europe/Paris,,OIF, +OIF:SA:81:15533,1,"Au Navigateur",49.00874,1.710316,,1,,Europe/Paris,,OIF, +OIF:SA:81:15618,1,"Les Longues Rayes",49.034469,1.812114,,1,,Europe/Paris,,OIF, +OIF:SA:81:15619,1,"Lycée Camille Claudel",48.96704,1.71437,,1,,Europe/Paris,,OIF, +OIF:SA:81:15664,1,"Église / Moulin à Vent",48.890126,1.568492,,1,,Europe/Paris,,OIF, +OIF:SA:81:15665,1,"Clos du Rame",48.96352,1.650959,,1,,Europe/Paris,,OIF, +OIF:SA:81:15666,1,"Mairie",48.965341,1.62722,,1,,Europe/Paris,,OIF, +OIF:SA:81:15667,1,"Cimetière",48.972655,1.623276,,1,,Europe/Paris,,OIF, +OIF:SA:81:15668,1,"La Puce",48.942979,1.538742,,1,,Europe/Paris,,OIF, +OIF:SA:81:15669,1,"Haussepied",48.950388,1.627595,,1,,Europe/Paris,,OIF, +OIF:SA:81:15670,1,"Bléry",48.966144,1.596681,,1,,Europe/Paris,,OIF, +OIF:SA:81:15680,1,"Belle Côte / Lavoir",48.976192,1.588169,,1,,Europe/Paris,,OIF, +OIF:SA:81:15682,1,"Église",48.963709,1.57956,,1,,Europe/Paris,,OIF, +OIF:SA:81:15688,1,"Butte 2",48.948845,1.553258,,1,,Europe/Paris,,OIF, +OIF:SA:81:15698,1,"La Pharmacie",48.943931,1.534634,,1,,Europe/Paris,,OIF, +OIF:SA:81:15702,1,"Butte 1",48.952439,1.560764,,1,,Europe/Paris,,OIF, +OIF:SA:81:15704,1,"La Petite Gamacherie",48.97434,1.562694,,1,,Europe/Paris,,OIF, +OIF:SA:81:15710,1,"Les Guinets",49.013054,1.559833,,1,,Europe/Paris,,OIF, +OIF:SA:81:15712,1,"Gamelines",48.990436,1.67759,,1,,Europe/Paris,,OIF, +OIF:SA:81:15723,1,"Vallée des Prés",49.037809,1.59467,,1,,Europe/Paris,,OIF, +OIF:SA:81:15725,1,"Centre",48.791544,1.600098,,1,,Europe/Paris,,OIF, +OIF:SA:81:15727,1,"Mairie",48.974759,1.648749,,1,,Europe/Paris,,OIF, +OIF:SA:81:15728,1,"Les Tasses",49.024165,1.516594,,1,,Europe/Paris,,OIF, +OIF:SA:81:15736,1,"Cytises",48.971315,1.682717,,1,,Europe/Paris,,OIF, +OIF:SA:81:15737,1,"Fontenay / Auchan",48.97851,1.686117,,1,,Europe/Paris,,OIF, +OIF:SA:81:15738,1,"Ormes",48.974661,1.682398,,1,,Europe/Paris,,OIF, +OIF:SA:81:15739,1,"Tilleuls",48.977086,1.685439,,1,,Europe/Paris,,OIF, +OIF:SA:81:15745,1,"Jardinerie",49.036777,1.625159,,1,,Europe/Paris,,OIF, +OIF:SA:81:15749,1,"Boulevard des Cygnes",48.997545,1.714153,,1,,Europe/Paris,,OIF, +OIF:SA:81:15753,1,"Maurice Braunstein",48.996996,1.707153,,1,,Europe/Paris,,OIF, +OIF:SA:81:15755,1,"Jean Baptiste Charcot",49.001735,1.687529,,1,,Europe/Paris,,OIF, +OIF:SA:81:15761,1,"Général de Gaulle",48.996523,1.679772,,1,,Europe/Paris,,OIF, +OIF:SA:81:15763,1,"Aqualude",49.004046,1.678758,,1,,Europe/Paris,,OIF, +OIF:SA:81:15768,1,"Fragonard",49.003948,1.682321,,1,,Europe/Paris,,OIF, +OIF:SA:81:15774,1,"Les Garennes",49.002771,1.692242,,1,,Europe/Paris,,OIF, +OIF:SA:81:15778,1,"Docteur Godeau",49.003444,1.684578,,1,,Europe/Paris,,OIF, +OIF:SA:81:15780,1,"Hôpital François Quesnay",48.99912,1.677205,,1,,Europe/Paris,,OIF, +OIF:SA:81:15782,1,"Mozart",48.99897,1.681541,,1,,Europe/Paris,,OIF, +OIF:SA:81:15786,1,"Résidence du Lac",48.999404,1.702532,,1,,Europe/Paris,,OIF, +OIF:SA:81:15788,1,"Division Leclerc",48.989299,1.710046,,1,,Europe/Paris,,OIF, +OIF:SA:81:15790,1,"Route de Buchelay",48.9959,1.687741,,1,,Europe/Paris,,OIF, +OIF:SA:81:15792,1,"Sainte-Anne",49.001472,1.697483,,1,,Europe/Paris,,OIF, +OIF:SA:81:15794,1,"Marcel Tabu",48.997009,1.708731,,1,,Europe/Paris,,OIF, +OIF:SA:81:15796,1,"Les Bâtes",48.980516,1.704849,,1,,Europe/Paris,,OIF, +OIF:SA:81:15802,1,"Chantereine",48.977945,1.723686,,1,,Europe/Paris,,OIF, +OIF:SA:81:15813,1,"Les Meuniers",48.983905,1.700097,,1,,Europe/Paris,,OIF, +OIF:SA:81:15821,1,"Église Saint-Étienne",48.974158,1.712564,,1,,Europe/Paris,,OIF, +OIF:SA:81:15823,1,"Val Saint-Georges",48.981918,1.697274,,1,,Europe/Paris,,OIF, +OIF:SA:81:15828,1,"Mondreville Lotissement",48.902423,1.554288,,1,,Europe/Paris,,OIF, +OIF:SA:81:15833,1,"La Couarde",48.928924,1.51127,,1,,Europe/Paris,,OIF, +OIF:SA:81:15834,1,"Église",48.93159,1.52514,,1,,Europe/Paris,,OIF, +OIF:SA:81:15854,1,"Mairie",48.956447,1.50791,,1,,Europe/Paris,,OIF, +OIF:SA:81:15855,1,"Place des Tilleuls",48.959424,1.508313,,1,,Europe/Paris,,OIF, +OIF:SA:81:15862,1,"Rue du Clairet",48.946829,1.489153,,1,,Europe/Paris,,OIF, +OIF:SA:81:15863,1,"Gouget",49.048957,1.608606,,1,,Europe/Paris,,OIF, +OIF:SA:81:15865,1,"Les Marronniers",49.050314,1.611471,,1,,Europe/Paris,,OIF, +OIF:SA:81:15867,1,"Champs Odés",48.993095,1.675798,,1,,Europe/Paris,,OIF, +OIF:SA:81:15869,1,"Mairie",48.980226,1.672354,,1,,Europe/Paris,,OIF, +OIF:SA:81:15871,1,"Aureines",48.979447,1.67673,,1,,Europe/Paris,,OIF, +OIF:SA:81:15877,1,"Freneuse Leclerc",49.04757,1.606506,,1,,Europe/Paris,,OIF, +OIF:SA:81:15878,1,"Perdreauville Butte",48.966847,1.608765,,1,,Europe/Paris,,OIF, +OIF:SA:81:15880,1,"Neauphlette Mare Nogris",48.934598,1.554299,,1,,Europe/Paris,,OIF, +OIF:SA:81:15890,1,"École",49.02911,1.819507,,1,,Europe/Paris,,OIF, +OIF:SA:81:15892,1,"Morvent",49.017663,1.567873,,1,,Europe/Paris,,OIF, +OIF:SA:81:15895,1,"Place du Général de Gaulle",48.985562,1.810384,,1,,Europe/Paris,,OIF, +OIF:SA:81:15899,1,"Senneville Place",48.942651,1.749147,,1,,Europe/Paris,,OIF, +OIF:SA:81:15901,1,"Wallon",48.986275,1.747702,,1,,Europe/Paris,,OIF, +OIF:SA:81:15903,1,"Route de Guitrancourt",48.990557,1.76798,,1,,Europe/Paris,,OIF, +OIF:SA:81:15905,1,"Aristide Briand",49.00006,1.74077,,1,,Europe/Paris,,OIF, +OIF:SA:81:15909,1,"Lombardie",48.942856,1.737091,,1,,Europe/Paris,,OIF, +OIF:SA:81:15911,1,"Saint-Martin",48.944608,1.735242,,1,,Europe/Paris,,OIF, +OIF:SA:81:15913,1,"Tilleuls",48.951691,1.73548,,1,,Europe/Paris,,OIF, +OIF:SA:81:15915,1,"Plagne",48.961061,1.742878,,1,,Europe/Paris,,OIF, +OIF:SA:81:15917,1,"Technodes",48.962308,1.735214,,1,,Europe/Paris,,OIF, +OIF:SA:81:15919,1,"Cytises",48.961317,1.732059,,1,,Europe/Paris,,OIF, +OIF:SA:81:15921,1,"Convois",48.965294,1.731227,,1,,Europe/Paris,,OIF, +OIF:SA:81:15923,1,"Guerville Castors",48.969188,1.730049,,1,,Europe/Paris,,OIF, +OIF:SA:81:15925,1,"Clos Fours",48.971703,1.730559,,1,,Europe/Paris,,OIF, +OIF:SA:81:15927,1,"Maupomet",48.975598,1.731421,,1,,Europe/Paris,,OIF, +OIF:SA:81:15929,1,"Vaucouleurs",48.979501,1.728371,,1,,Europe/Paris,,OIF, +OIF:SA:81:15931,1,"Tuilerie",48.980654,1.724446,,1,,Europe/Paris,,OIF, +OIF:SA:81:15933,1,"Herberts",48.978837,1.722406,,1,,Europe/Paris,,OIF, +OIF:SA:81:15935,1,"Carnot",48.987115,1.708885,,1,,Europe/Paris,,OIF, +OIF:SA:81:15937,1,"Gare Routière Mantes-la-Jolie",48.989498,1.704077,,1,,Europe/Paris,,OIF, +OIF:SA:81:15939,1,"Maison des Syndicats",48.977433,1.730805,,1,,Europe/Paris,,OIF, +OIF:SA:81:15942,1,"Pont Chapart",48.995786,1.635187,,1,,Europe/Paris,,OIF, +OIF:SA:81:15944,1,"Croix Brisée",48.993062,1.640373,,1,,Europe/Paris,,OIF, +OIF:SA:81:15946,1,"Bois Moulin",48.997981,1.646309,,1,,Europe/Paris,,OIF, +OIF:SA:81:15948,1,"Henri IV",49.001011,1.629031,,1,,Europe/Paris,,OIF, +OIF:SA:81:15950,1,"Mûriers 1",49.000096,1.623225,,1,,Europe/Paris,,OIF, +OIF:SA:81:15952,1,"Grande Maison 1",49.001468,1.621192,,1,,Europe/Paris,,OIF, +OIF:SA:81:15954,1,"Fauvettes",48.997451,1.6198,,1,,Europe/Paris,,OIF, +OIF:SA:81:15956,1,"Mésanges",48.999766,1.619884,,1,,Europe/Paris,,OIF, +OIF:SA:81:15958,1,"Grande Maison 2",49.001468,1.621192,,1,,Europe/Paris,,OIF, +OIF:SA:81:15960,1,"Mûriers 2",49.000096,1.623225,,1,,Europe/Paris,,OIF, +OIF:SA:81:15962,1,"Pasteur",48.998325,1.626214,,1,,Europe/Paris,,OIF, +OIF:SA:81:15964,1,"Val Fleuri",48.995885,1.623857,,1,,Europe/Paris,,OIF, +OIF:SA:81:15966,1,"Lommoye",48.995102,1.628901,,1,,Europe/Paris,,OIF, +OIF:SA:81:15972,1,"Lecoq",48.996781,1.724481,,1,,Europe/Paris,,OIF, +OIF:SA:81:15974,1,"Halage",48.999805,1.722,,1,,Europe/Paris,,OIF, +OIF:SA:81:15976,1,"Quai aux Vins",48.99415,1.725871,,1,,Europe/Paris,,OIF, +OIF:SA:81:176,1,"Marcilly sur Eure",48.825491,1.345124,,1,,Europe/Paris,,OIF, +OIF:SA:81:194,1,"D143",48.861357,1.400406,,1,,Europe/Paris,,OIF, +OIF:SA:81:198,1,"Gambetta",48.867174,1.419081,,1,,Europe/Paris,,OIF, +OIF:SA:81:255,1,"Château",48.858151,1.439292,,1,,Europe/Paris,,OIF, +OIF:SA:81:257,1,"Pérou",48.860781,1.449074,,1,,Europe/Paris,,OIF, +OIF:SA:81:259,1,"Lycée",48.847596,1.433523,,1,,Europe/Paris,,OIF, +OIF:SA:81:261,1,"Gâtines Rouges",48.881021,1.508729,,1,,Europe/Paris,,OIF, +OIF:SA:81:263,1,"Châtelet",48.749601,1.387033,,1,,Europe/Paris,,OIF, +OIF:SA:81:265,1,"Edgar Degas",48.731583,1.384883,,1,,Europe/Paris,,OIF, +OIF:SA:81:267,1,"Gare Routière",48.732139,1.371909,,1,,Europe/Paris,,OIF, +OIF:SA:81:269,1,"Gué aux Ânes",48.743588,1.390507,,1,,Europe/Paris,,OIF, +OIF:SA:81:271,1,"Jules Ferry",48.726839,1.376729,,1,,Europe/Paris,,OIF, +OIF:SA:81:273,1,"La Sablonnière",48.744637,1.358092,,1,,Europe/Paris,,OIF, +OIF:SA:81:275,1,"Les Bâtes",48.742726,1.345991,,1,,Europe/Paris,,OIF, +OIF:SA:81:277,1,"Le Lièvre d'Or",48.735871,1.388269,,1,,Europe/Paris,,OIF, +OIF:SA:81:279,1,"Notre-Dame des Rochelles",48.725173,1.368655,,1,,Europe/Paris,,OIF, +OIF:SA:81:281,1,"Oriels",48.738453,1.390852,,1,,Europe/Paris,,OIF, +OIF:SA:81:283,1,"Dreux Schuman",48.727986,1.381382,,1,,Europe/Paris,,OIF, +OIF:SA:81:285,1,"Place de l'Abreuvoir",48.896572,1.533391,,1,,Europe/Paris,,OIF, +OIF:SA:81:287,1,"Mairie",48.867296,1.472089,,1,,Europe/Paris,,OIF, +OIF:SA:81:52,1,"Mairie",48.846191,1.374117,,1,,Europe/Paris,,OIF, +OIF:SA:81:54,1,"Tennis",48.849892,1.381062,,1,,Europe/Paris,,OIF, +OIF:SA:81:5697,1,"Rue Nationale",49.031382,1.819142,,1,,Europe/Paris,,OIF, +OIF:SA:81:6002,1,"Grande Rue",48.904021,1.619819,,1,,Europe/Paris,,OIF, +OIF:SA:81:6117,1,"Mairie",48.94421,1.642859,,1,,Europe/Paris,,OIF, +OIF:SA:81:6129,1,"Église / Mairie",48.890429,1.578008,,1,,Europe/Paris,,OIF, +OIF:SA:81:6133,1,"Carrefour Saint-Martin",49.01865,1.697093,,1,,Europe/Paris,,OIF, +OIF:SA:81:6135,1,"Hôpital",49.011802,1.69715,,1,,Europe/Paris,,OIF, +OIF:SA:81:6137,1,"Roy René",49.010845,1.703078,,1,,Europe/Paris,,OIF, +OIF:SA:81:6139,1,"Diderot",49.017867,1.713977,,1,,Europe/Paris,,OIF, +OIF:SA:81:6141,1,"Lavoir",49.020146,1.713245,,1,,Europe/Paris,,OIF, +OIF:SA:81:6186,1,"Église",49.027206,1.750816,,1,,Europe/Paris,,OIF, +OIF:SA:81:6188,1,"Dîme",49.021214,1.759451,,1,,Europe/Paris,,OIF, +OIF:SA:81:6190,1,"Mairie",49.024646,1.756481,,1,,Europe/Paris,,OIF, +OIF:SA:81:6248,1,"Hanneucourt",48.992668,1.824398,,1,,Europe/Paris,,OIF, +OIF:SA:81:6252,1,"Jean Raty",48.988196,1.801604,,1,,Europe/Paris,,OIF, +OIF:SA:81:6254,1,"Maryse",48.991151,1.80126,,1,,Europe/Paris,,OIF, +OIF:SA:81:6260,1,"Pierre Brossolette",48.979556,1.810773,,1,,Europe/Paris,,OIF, +OIF:SA:81:6264,1,"Place de la Pointe",48.980782,1.810726,,1,,Europe/Paris,,OIF, +OIF:SA:81:6270,1,"Pugno",48.993023,1.823193,,1,,Europe/Paris,,OIF, +OIF:SA:81:6273,1,"Les Sablons",48.989381,1.801251,,1,,Europe/Paris,,OIF, +OIF:SA:81:6275,1,"Poste",48.98909,1.812547,,1,,Europe/Paris,,OIF, +OIF:SA:81:6277,1,"Victor Hugo",48.976447,1.809897,,1,,Europe/Paris,,OIF, +OIF:SA:81:6287,1,"Mairie",49.012086,1.637241,,1,,Europe/Paris,,OIF, +OIF:SA:81:6419,1,"La Fourche",49.012619,1.901627,,1,,Europe/Paris,,OIF, +OIF:SA:81:6427,1,"Bardeaux",48.991989,1.799721,,1,,Europe/Paris,,OIF, +OIF:SA:81:6431,1,"Carrefour",48.991778,1.79478,,1,,Europe/Paris,,OIF, +OIF:SA:81:6433,1,"Charvets",48.992614,1.798855,,1,,Europe/Paris,,OIF, +OIF:SA:81:6435,1,"Cimetière",48.993747,1.794869,,1,,Europe/Paris,,OIF, +OIF:SA:81:6439,1,"Dufour",48.981633,1.787118,,1,,Europe/Paris,,OIF, +OIF:SA:81:6453,1,"Mairie",48.988597,1.792827,,1,,Europe/Paris,,OIF, +OIF:SA:81:6460,1,"Stade",48.985702,1.789594,,1,,Europe/Paris,,OIF, +OIF:SA:81:6470,1,"Peupliers",49.047153,1.849196,,1,,Europe/Paris,,OIF, +OIF:SA:81:6554,1,"Les Bonnes Joies",49.053829,1.805689,,1,,Europe/Paris,,OIF, +OIF:SA:81:6588,1,"Collège Albert Thierry",48.996434,1.747641,,1,,Europe/Paris,,OIF, +OIF:SA:81:6590,1,"Chaponnerie",48.994901,1.730427,,1,,Europe/Paris,,OIF, +OIF:SA:81:6592,1,"Paix",48.994985,1.737739,,1,,Europe/Paris,,OIF, +OIF:SA:81:6596,1,"Corot",48.993417,1.726576,,1,,Europe/Paris,,OIF, +OIF:SA:81:6597,1,"Coutures",48.988525,1.734868,,1,,Europe/Paris,,OIF, +OIF:SA:81:6600,1,"Duvivier",48.997305,1.728544,,1,,Europe/Paris,,OIF, +OIF:SA:81:6608,1,"Fontaines Agnès",48.997871,1.741909,,1,,Europe/Paris,,OIF, +OIF:SA:81:6614,1,"Foyer Marie Baudry",48.990531,1.732523,,1,,Europe/Paris,,OIF, +OIF:SA:81:6628,1,"Les Bâtes",48.999537,1.723997,,1,,Europe/Paris,,OIF, +OIF:SA:81:6636,1,"Les Saules Guérin",49.004333,1.718115,,1,,Europe/Paris,,OIF, +OIF:SA:81:6638,1,"Logirep",48.991186,1.741207,,1,,Europe/Paris,,OIF, +OIF:SA:81:6644,1,"Place du Temple",48.992828,1.729719,,1,,Europe/Paris,,OIF, +OIF:SA:81:6646,1,"Place Robespierre",48.985187,1.745803,,1,,Europe/Paris,,OIF, +OIF:SA:81:6654,1,"Port Autonome",48.979549,1.753267,,1,,Europe/Paris,,OIF, +OIF:SA:81:6659,1,"Rue de la Chasse",48.992699,1.742426,,1,,Europe/Paris,,OIF, +OIF:SA:81:6663,1,"Vinaver",48.998327,1.725487,,1,,Europe/Paris,,OIF, +OIF:SA:81:6695,1,"Église",48.921736,1.586972,,1,,Europe/Paris,,OIF, +OIF:SA:81:6697,1,"Mairie",48.920495,1.585531,,1,,Europe/Paris,,OIF, +OIF:SA:81:6699,1,"Ruelles",48.92261,1.590935,,1,,Europe/Paris,,OIF, +OIF:SA:81:6701,1,"Versailles",48.919486,1.587298,,1,,Europe/Paris,,OIF, +OIF:SA:81:6736,1,"Lycée Léopold Sédar Senghor",48.965303,1.682739,,1,,Europe/Paris,,OIF, +OIF:SA:81:6738,1,"Mairie",48.966739,1.681185,,1,,Europe/Paris,,OIF, +OIF:SA:81:6744,1,"Mongazons",48.974996,1.69241,,1,,Europe/Paris,,OIF, +OIF:SA:81:6825,1,"Butte Verte",48.996873,1.675367,,1,,Europe/Paris,,OIF, +OIF:SA:81:6845,1,"Doret",49.001084,1.683925,,1,,Europe/Paris,,OIF, +OIF:SA:81:6847,1,"Edouard Vaillant",48.994139,1.695312,,1,,Europe/Paris,,OIF, +OIF:SA:81:6864,1,"Géo André",48.995343,1.692052,,1,,Europe/Paris,,OIF, +OIF:SA:81:6878,1,"Mairie",48.989262,1.715598,,1,,Europe/Paris,,OIF, +OIF:SA:81:6888,1,"Lavoisier",48.996146,1.684458,,1,,Europe/Paris,,OIF, +OIF:SA:81:6906,1,"Palais de Justice",48.989817,1.712885,,1,,Europe/Paris,,OIF, +OIF:SA:81:6934,1,"Place Saint-Maclou",48.990869,1.718754,,1,,Europe/Paris,,OIF, +OIF:SA:81:6940,1,"Rue de la Sangle",48.989194,1.718514,,1,,Europe/Paris,,OIF, +OIF:SA:81:7041,1,"Collège des Plaisances",48.975644,1.703072,,1,,Europe/Paris,,OIF, +OIF:SA:81:7044,1,"Poste",48.981332,1.711454,,1,,Europe/Paris,,OIF, +OIF:SA:81:7209,1,"La Source",48.998388,1.883227,,1,,Europe/Paris,,OIF, +OIF:SA:81:7229,1,"Église",48.902852,1.552536,,1,,Europe/Paris,,OIF, +OIF:SA:81:7231,1,"Mairie",49.045937,1.825715,,1,,Europe/Paris,,OIF, +OIF:SA:81:7396,1,"Les Thurets",49.028466,1.857955,,1,,Europe/Paris,,OIF, +OIF:SA:81:7398,1,"Les Tilleuls",49.030526,1.848431,,1,,Europe/Paris,,OIF, +OIF:SA:81:7400,1,"Mairie",49.029085,1.85333,,1,,Europe/Paris,,OIF, +OIF:SA:81:7536,1,"Chemin Neuf",48.975824,1.782463,,1,,Europe/Paris,,OIF, +OIF:SA:81:7543,1,"Les Guignières",48.973586,1.776733,,1,,Europe/Paris,,OIF, +OIF:SA:81:7548,1,"Lycée Lavoisier",48.974081,1.772987,,1,,Europe/Paris,,OIF, +OIF:SA:81:7550,1,"Petite Auberge",48.972604,1.779897,,1,,Europe/Paris,,OIF, +OIF:SA:81:7629,1,"Cornouiller",49.044074,1.80067,,1,,Europe/Paris,,OIF, +OIF:SA:81:7631,1,"Lavoir",49.040139,1.800752,,1,,Europe/Paris,,OIF, +OIF:SA:81:7692,1,"Saint-Germain-en-Laye Pereire",48.901147,2.067634,,1,,Europe/Paris,,OIF, +OIF:SA:81:7711,1,"École",49.040531,1.688648,,1,,Europe/Paris,,OIF, +OIF:SA:81:7715,1,"Place",49.034541,1.647597,,1,,Europe/Paris,,OIF, +OIF:SA:81:7800,1,"La Ferme",48.956299,1.671491,,1,,Europe/Paris,,OIF, +OIF:SA:81:7802,1,"Mairie",48.958574,1.67572,,1,,Europe/Paris,,OIF, +OIF:SA:82:10,1,"Hôtel Newport Bay Club",48.865077,2.788628,,1,,Europe/Paris,,OIF, +OIF:SA:82:11,1,"Hôtel Séquoia Lodge",48.869021,2.79121,,1,,Europe/Paris,,OIF, +OIF:SA:82:13,1,"Hôtel Cheyenne",48.874414,2.79123,,1,,Europe/Paris,,OIF, +OIF:SA:82:14,1,"Hôtel New York",48.870708,2.787383,,1,,Europe/Paris,,OIF, +OIF:SA:82:15,1,"Hôtel Disneyland",48.870955,2.781267,,1,,Europe/Paris,,OIF, +OIF:SA:82:17,1,"Hôtel Kyriad",48.870686,2.809208,,1,,Europe/Paris,,OIF, +OIF:SA:82:18,1,"Hôtel Magic Circus",48.871546,2.807717,,1,,Europe/Paris,,OIF, +OIF:SA:82:19,1,"Hôtel Dream Castle",48.874769,2.806234,,1,,Europe/Paris,,OIF, +OIF:SA:82:20,1,"Hôtel My Explorer'S",48.876707,2.807001,,1,,Europe/Paris,,OIF, +OIF:SA:82:21,1,"Hôtel B And B",48.877373,2.809037,,1,,Europe/Paris,,OIF, +OIF:SA:83:614,1,"La Vallée Française",49.031964,1.579748,,1,,Europe/Paris,,OIF, +OIF:SA:84:10,1,"Theuville - Monument aux Morts",49.153459,2.072104,,1,,Europe/Paris,,OIF, +OIF:SA:84:100,1,"Bréançon - le Rosnel",49.152994,2.010269,,1,,Europe/Paris,,OIF, +OIF:SA:84:101,1,"Arronville - Lavoir",49.180618,2.105174,,1,,Europe/Paris,,OIF, +OIF:SA:84:102,1,"Frouville - Messelan",49.161812,2.140209,,1,,Europe/Paris,,OIF, +OIF:SA:84:103,1,"Frouville - Grande Rue",49.152385,2.147916,,1,,Europe/Paris,,OIF, +OIF:SA:84:104,1,"Frouville - Mairie",49.148061,2.149971,,1,,Europe/Paris,,OIF, +OIF:SA:84:105,1,"Labbeville - Biard",49.141998,2.153836,,1,,Europe/Paris,,OIF, +OIF:SA:84:106,1,"Labbeville - Petit Biard",49.139978,2.146051,,1,,Europe/Paris,,OIF, +OIF:SA:84:107,1,"Labbeville - Mairie",49.135513,2.143918,,1,,Europe/Paris,,OIF, +OIF:SA:84:108,1,"Vallangoujard - Rue de Pontoise",49.137585,2.112981,,1,,Europe/Paris,,OIF, +OIF:SA:84:109,1,"Hérouville - Château",49.101763,2.13235,,1,,Europe/Paris,,OIF, +OIF:SA:84:11,1,"Bréançon - le Fay",49.15851,2.043602,,1,,Europe/Paris,,OIF, +OIF:SA:84:110,1,"Livilliers - Mairie",49.09526,2.095178,,1,,Europe/Paris,,OIF, +OIF:SA:84:120,1,"Arronville - Margicourt",49.178442,2.108452,,1,,Europe/Paris,,OIF, +OIF:SA:84:121,1,"Chars - Centre Ville",49.16048,1.93448,,1,,Europe/Paris,,OIF, +OIF:SA:84:122,1,"Lycée Professionnel",49.157724,1.943283,,1,,Europe/Paris,,OIF, +OIF:SA:84:123,1,"Marines - Métairie",49.148815,1.968712,,1,,Europe/Paris,,OIF, +OIF:SA:84:124,1,"Marines - Zone Artisanale",49.145741,1.968508,,1,,Europe/Paris,,OIF, +OIF:SA:84:125,1,"Marines - Hôpital Jean Baptiste Cartry",49.146349,1.974777,,1,,Europe/Paris,,OIF, +OIF:SA:84:126,1,"Marines - Gendarmerie",49.145729,1.977863,,1,,Europe/Paris,,OIF, +OIF:SA:84:127,1,"Frémécourt - Rue des Petites Fontaines",49.123435,2.000758,,1,,Europe/Paris,,OIF, +OIF:SA:84:128,1,"Cormeilles en Vexin - Église",49.115819,2.018268,,1,,Europe/Paris,,OIF, +OIF:SA:84:129,1,"Cormeilles en Vexin - Rue Curie/École",49.114607,2.023949,,1,,Europe/Paris,,OIF, +OIF:SA:84:13,1,"Marines Collège des Hautiers",49.148644,1.9852,,1,,Europe/Paris,,OIF, +OIF:SA:84:130,1,"Cormeilles - Karting / Aérodrome",49.101687,2.042085,,1,,Europe/Paris,,OIF, +OIF:SA:84:131,1,"Osny - Centre Commercial de l'Oseraie",49.077126,2.075628,,1,,Europe/Paris,,OIF, +OIF:SA:84:132,1,"Pontoise - Avenue de Normandie",49.061916,2.090076,,1,,Europe/Paris,,OIF, +OIF:SA:84:133,1,"Lycée Kastler",49.036831,2.085378,,1,,Europe/Paris,,OIF, +OIF:SA:84:147,1,"Pontoise - Marcouville",49.049709,2.08157,,1,,Europe/Paris,,OIF, +OIF:SA:84:150,1,"Ennery - Plateau",49.077873,2.107119,,1,,Europe/Paris,,OIF, +OIF:SA:84:151,1,"Ennery - Pharmacie",49.07476,2.104876,,1,,Europe/Paris,,OIF, +OIF:SA:84:152,1,"Ennery - Croix d'Autel",49.07253,2.101727,,1,,Europe/Paris,,OIF, +OIF:SA:84:153,1,"Ennery - Zone Artisanale",49.066361,2.108606,,1,,Europe/Paris,,OIF, +OIF:SA:84:154,1,"Ennery - Transformateur",49.065216,2.111305,,1,,Europe/Paris,,OIF, +OIF:SA:84:155,1,"Ennery - Bois Péan",49.067141,2.112705,,1,,Europe/Paris,,OIF, +OIF:SA:84:156,1,"Ennery - Bécasse",49.069294,2.115185,,1,,Europe/Paris,,OIF, +OIF:SA:84:157,1,"Ennery - Stand de Tir",49.065101,2.105316,,1,,Europe/Paris,,OIF, +OIF:SA:84:158,1,"Pontoise - Maternité",49.061313,2.093929,,1,,Europe/Paris,,OIF, +OIF:SA:84:159,1,"Pontoise - Lycée Pissarro",49.058331,2.090821,,1,,Europe/Paris,,OIF, +OIF:SA:84:174,1,"Moussy - Mairie/École",49.137654,1.909076,,1,,Europe/Paris,,OIF, +OIF:SA:84:175,1,"Commeny Saint-Jacques",49.124599,1.891879,,1,,Europe/Paris,,OIF, +OIF:SA:84:177,1,"Le Perchay - Centre Équestre",49.11148,1.932357,,1,,Europe/Paris,,OIF, +OIF:SA:84:178,1,"Santeuil Epagnes",49.126487,1.943658,,1,,Europe/Paris,,OIF, +OIF:SA:84:179,1,"Santeuil Belles Vues",49.12451,1.946186,,1,,Europe/Paris,,OIF, +OIF:SA:84:18,1,"Épiais Rhus - Rhus",49.143215,2.078011,,1,,Europe/Paris,,OIF, +OIF:SA:84:180,1,"Santeuil - Mairie",49.125947,1.950227,,1,,Europe/Paris,,OIF, +OIF:SA:84:181,1,"Brignancourt - Place",49.137067,1.943345,,1,,Europe/Paris,,OIF, +OIF:SA:84:182,1,"Chars Four à Chaux",49.153735,1.942122,,1,,Europe/Paris,,OIF, +OIF:SA:84:183,1,"Chars - Place des Fêtes",49.159437,1.936858,,1,,Europe/Paris,,OIF, +OIF:SA:84:19,1,"Vallangoujard - Mairie",49.138825,2.112894,,1,,Europe/Paris,,OIF, +OIF:SA:84:194,1,"Chars - Croisement Route de Bercagny",49.145659,1.901292,,1,,Europe/Paris,,OIF, +OIF:SA:84:195,1,"Le Bellay en Vexin - Église",49.151499,1.88651,,1,,Europe/Paris,,OIF, +OIF:SA:84:196,1,"Chars - Libération",49.161412,1.929663,,1,,Europe/Paris,,OIF, +OIF:SA:84:20,1,"Menouville - Place du Village",49.15064,2.110425,,1,,Europe/Paris,,OIF, +OIF:SA:84:200,1,"Pontoise - le Pothuis",49.050493,2.104609,,1,,Europe/Paris,,OIF, +OIF:SA:84:201,1,"Pontoise - le Ruisseau",49.055714,2.114033,,1,,Europe/Paris,,OIF, +OIF:SA:84:202,1,"Pontoise - le Chou",49.058797,2.117028,,1,,Europe/Paris,,OIF, +OIF:SA:84:203,1,"Pontoise - Chemin des Gares",49.060702,2.119228,,1,,Europe/Paris,,OIF, +OIF:SA:84:204,1,"Pontoise - Chemin du Général",49.063324,2.123238,,1,,Europe/Paris,,OIF, +OIF:SA:84:205,1,"Auvers sur Oise - Valhermeil",49.065919,2.127357,,1,,Europe/Paris,,OIF, +OIF:SA:84:206,1,"Auvers sur Oise - Chapelle Saint-Nicolas",49.068604,2.134143,,1,,Europe/Paris,,OIF, +OIF:SA:84:207,1,"Auvers sur Oise - Halte de Chaponval",49.069855,2.143739,,1,,Europe/Paris,,OIF, +OIF:SA:84:208,1,"Auvers sur Oise - Rue du Four",49.070793,2.148454,,1,,Europe/Paris,,OIF, +OIF:SA:84:209,1,"Auvers sur Oise - Rue Rémy",49.07138,2.153512,,1,,Europe/Paris,,OIF, +OIF:SA:84:21,1,"Arronville Héréville Transformateur",49.170447,2.117203,,1,,Europe/Paris,,OIF, +OIF:SA:84:210,1,"Auvers sur Oise - Boggio",49.069862,2.162907,,1,,Europe/Paris,,OIF, +OIF:SA:84:211,1,"Auvers sur Oise - Clos du Château",49.070744,2.167061,,1,,Europe/Paris,,OIF, +OIF:SA:84:212,1,"Auvers sur Oise - les Côteaux",49.075419,2.162368,,1,,Europe/Paris,,OIF, +OIF:SA:84:213,1,"Auvers sur Oise Gendarmerie",49.074916,2.162568,,1,,Europe/Paris,,OIF, +OIF:SA:84:214,1,"Auvers sur Oise - Château",49.07108,2.165857,,1,,Europe/Paris,,OIF, +OIF:SA:84:215,1,"Auvers sur Oise - Mairie",49.070709,2.174064,,1,,Europe/Paris,,OIF, +OIF:SA:84:216,1,"Auvers sur Oise - Cordeville",49.073819,2.184846,,1,,Europe/Paris,,OIF, +OIF:SA:84:22,1,"Arronville - Place du Carrouge",49.180658,2.114528,,1,,Europe/Paris,,OIF, +OIF:SA:84:235,1,"Butry sur Oise - Pasteur",49.079695,2.194869,,1,,Europe/Paris,,OIF, +OIF:SA:84:239,1,"Parmain - Collège",49.096568,2.201452,,1,,Europe/Paris,,OIF, +OIF:SA:84:24,1,"Arronville Myosotis",49.179313,2.104056,,1,,Europe/Paris,,OIF, +OIF:SA:84:240,1,"Parmain - Couture",49.100321,2.202647,,1,,Europe/Paris,,OIF, +OIF:SA:84:241,1,"Parmain - Arcades",49.105809,2.204802,,1,,Europe/Paris,,OIF, +OIF:SA:84:242,1,"Parmain - Mairie / Gare",49.114742,2.20957,,1,,Europe/Paris,,OIF, +OIF:SA:84:243,1,"Parmain - le Verger",49.122871,2.211658,,1,,Europe/Paris,,OIF, +OIF:SA:84:244,1,"Parmain - Jouy le Comte / Église",49.127444,2.207067,,1,,Europe/Paris,,OIF, +OIF:SA:84:25,1,"Berville - Lavoir",49.193217,2.061432,,1,,Europe/Paris,,OIF, +OIF:SA:84:255,1,"Butry sur Oise - Rue Massenet",49.088747,2.202102,,1,,Europe/Paris,,OIF, +OIF:SA:84:256,1,"Hédouville - Chennevières",49.15611,2.169541,,1,,Europe/Paris,,OIF, +OIF:SA:84:257,1,"Hédouville - Mairie",49.154531,2.171217,,1,,Europe/Paris,,OIF, +OIF:SA:84:258,1,"Hédouville - Église",49.152056,2.168472,,1,,Europe/Paris,,OIF, +OIF:SA:84:259,1,"Nesles la Vallée - la Garenne",49.132324,2.17085,,1,,Europe/Paris,,OIF, +OIF:SA:84:26,1,"Berville - Abri des Vignes",49.190121,2.071285,,1,,Europe/Paris,,OIF, +OIF:SA:84:260,1,"Nesles la Vallée - Mairie",49.128052,2.17161,,1,,Europe/Paris,,OIF, +OIF:SA:84:261,1,"Nesles la Vallée - Centre Équestre",49.125194,2.181148,,1,,Europe/Paris,,OIF, +OIF:SA:84:262,1,"Nesles la Vallée - Verville / la Halte",49.114217,2.176514,,1,,Europe/Paris,,OIF, +OIF:SA:84:263,1,"Nesles la Vallée - Verville / le Cottage",49.111323,2.175989,,1,,Europe/Paris,,OIF, +OIF:SA:84:264,1,"Valmondois - Rue Léon Bernard//Duhamel",49.106032,2.180926,,1,,Europe/Paris,,OIF, +OIF:SA:84:265,1,"Valmondois - la Naze",49.101173,2.182726,,1,,Europe/Paris,,OIF, +OIF:SA:84:266,1,"Valmondois - Mairie",49.096501,2.189931,,1,,Europe/Paris,,OIF, +OIF:SA:84:267,1,"Valmondois - Bois Thibault",49.094025,2.193345,,1,,Europe/Paris,,OIF, +OIF:SA:84:27,1,"Haravilliers - Chemin de la Mare",49.173414,2.053994,,1,,Europe/Paris,,OIF, +OIF:SA:84:283,1,"Butry sur Oise - Mairie",49.08553,2.197986,,1,,Europe/Paris,,OIF, +OIF:SA:84:29,1,"Haravilliers - les Tuileries",49.17757,2.026897,,1,,Europe/Paris,,OIF, +OIF:SA:84:294,1,"Saint-Ouen l'Aumône - Gros Chevaux",49.053927,2.140695,,1,,Europe/Paris,,OIF, +OIF:SA:84:295,1,"Saint-Ouen l'Aumône - Antoine Balard",49.052771,2.136967,,1,,Europe/Paris,,OIF, +OIF:SA:84:296,1,"Saint-Ouen l'Aumône - Vert Galant",49.051061,2.132906,,1,,Europe/Paris,,OIF, +OIF:SA:84:297,1,"Saint-Ouen l'Aumône - les Béthunes",49.046691,2.136615,,1,,Europe/Paris,,OIF, +OIF:SA:84:298,1,"Saint-Ouen l'Aumône - Rue de l'Equerre",49.043444,2.134467,,1,,Europe/Paris,,OIF, +OIF:SA:84:30,1,"Haravilliers - Connebot",49.180487,2.029251,,1,,Europe/Paris,,OIF, +OIF:SA:84:31,1,"Haravilliers - le Quoniam",49.18025,2.038503,,1,,Europe/Paris,,OIF, +OIF:SA:84:312,1,"Us - les Closeaux",49.11048,1.963545,,1,,Europe/Paris,,OIF, +OIF:SA:84:313,1,"Us - Stade",49.105013,1.965117,,1,,Europe/Paris,,OIF, +OIF:SA:84:318,1,"Vigny - Église",49.076741,1.927144,,1,,Europe/Paris,,OIF, +OIF:SA:84:32,1,"Haravilliers - Rayon",49.172745,2.041082,,1,,Europe/Paris,,OIF, +OIF:SA:84:325,1,"Vigny - le Trapil",49.082191,1.931095,,1,,Europe/Paris,,OIF, +OIF:SA:84:33,1,"Haravilliers - Saussette",49.169189,2.038143,,1,,Europe/Paris,,OIF, +OIF:SA:84:34,1,"Haravilliers - le Ruel",49.170658,2.025692,,1,,Europe/Paris,,OIF, +OIF:SA:84:35,1,"Le Heaulme - le Heaulme/École",49.165833,1.999303,,1,,Europe/Paris,,OIF, +OIF:SA:84:36,1,"Neuilly en Vexin - Neuilly",49.168205,1.976069,,1,,Europe/Paris,,OIF, +OIF:SA:84:37,1,"Chars la Chapelle",49.161477,1.97665,,1,,Europe/Paris,,OIF, +OIF:SA:84:45,1,"Épiais Rhus - la Tuilerie",49.120371,2.052656,,1,,Europe/Paris,,OIF, +OIF:SA:84:46,1,"Épiais-Rhus - Église",49.12217,2.062914,,1,,Europe/Paris,,OIF, +OIF:SA:84:467,1,"Osny - Lycée Paul Émile Victor",49.072798,2.07091,,1,,Europe/Paris,,OIF, +OIF:SA:84:468,1,"Hérouville - Zone d'Activités",49.099352,2.13587,,1,,Europe/Paris,,OIF, +OIF:SA:84:47,1,"Épiais Rhus Mairie",49.124147,2.06534,,1,,Europe/Paris,,OIF, +OIF:SA:84:470,1,"Sagy - Saillancourt",49.041497,1.972894,,1,,Europe/Paris,,OIF, +OIF:SA:84:471,1,"Sagy - Sagy",49.048959,1.952423,,1,,Europe/Paris,,OIF, +OIF:SA:84:474,1,"Seraincourt - Mairie",49.035555,1.866773,,1,,Europe/Paris,,OIF, +OIF:SA:84:475,1,"Rueil - Place",49.047604,1.876766,,1,,Europe/Paris,,OIF, +OIF:SA:84:476,1,"Longuesse - Aubette",49.059771,1.931107,,1,,Europe/Paris,,OIF, +OIF:SA:84:477,1,"Longuesse - Église",49.062418,1.931415,,1,,Europe/Paris,,OIF, +OIF:SA:84:48,1,"Grisy les Platres - Stade",49.130468,2.053312,,1,,Europe/Paris,,OIF, +OIF:SA:84:485,1,"Vaux",49.058013,2.158715,,1,,Europe/Paris,,OIF, +OIF:SA:84:488,1,"Pontoise - Place du Général de Gaulle / Gare",49.04719,2.096141,,1,,Europe/Paris,,OIF, +OIF:SA:84:489,1,"Pontoise - Rue du Premier Dragon",49.042399,2.090382,,1,,Europe/Paris,,OIF, +OIF:SA:84:49,1,"Grisy les Platres - Soleil Levant",49.132893,2.049034,,1,,Europe/Paris,,OIF, +OIF:SA:84:495,1,"Butry - Chemin Roger",49.084325,2.197367,,1,,Europe/Paris,,OIF, +OIF:SA:84:50,1,"Bréançon - Église",49.142524,2.021855,,1,,Europe/Paris,,OIF, +OIF:SA:84:500,1,"Haravilliers - Mairie",49.173582,2.046902,,1,,Europe/Paris,,OIF, +OIF:SA:84:501,1,"Haravilliers - Petite Saussette",49.171177,2.039337,,1,,Europe/Paris,,OIF, +OIF:SA:84:503,1,"Épiais Rhus - Épiais",49.124508,2.065701,,1,,Europe/Paris,,OIF, +OIF:SA:84:508,1,"Marines - Place Peyron",49.142765,1.980796,,1,,Europe/Paris,,OIF, +OIF:SA:84:51,1,"Marines - Route d'Us",49.139079,1.985126,,1,,Europe/Paris,,OIF, +OIF:SA:84:511,1,"Théméricourt - Pont aux Bois",49.086002,1.898478,,1,,Europe/Paris,,OIF, +OIF:SA:84:512,1,"Gouzangrez - Gouzangrez",49.112991,1.908446,,1,,Europe/Paris,,OIF, +OIF:SA:84:516,1,"ZA",49.056515,2.173104,,1,,Europe/Paris,,OIF, +OIF:SA:84:518,1,"Frémécourt - Église/École",49.119771,2.001293,,1,,Europe/Paris,,OIF, +OIF:SA:84:53,1,"Marines - Place Dubois Danger",49.145457,1.984617,,1,,Europe/Paris,,OIF, +OIF:SA:84:63,1,"Ableiges Transformateur",49.091152,1.981389,,1,,Europe/Paris,,OIF, +OIF:SA:84:64,1,"Us Mairie",49.101325,1.966888,,1,,Europe/Paris,,OIF, +OIF:SA:84:66,1,"Cormeilles en Vexin - Route de Frémécourt",49.119792,2.012411,,1,,Europe/Paris,,OIF, +OIF:SA:84:67,1,"Artimont - D915",49.126029,1.999584,,1,,Europe/Paris,,OIF, +OIF:SA:84:76,1,"Gérocourt Centre",49.102854,2.056543,,1,,Europe/Paris,,OIF, +OIF:SA:84:77,1,"Gérocourt - Chapelle",49.101655,2.05681,,1,,Europe/Paris,,OIF, +OIF:SA:84:78,1,"Génicourt - Rue des Fossettes",49.08783,2.068439,,1,,Europe/Paris,,OIF, +OIF:SA:84:80,1,"Osny - Demi Lieu",49.071634,2.081174,,1,,Europe/Paris,,OIF, +OIF:SA:84:81,1,"Pontoise - Louvrais",49.059845,2.085629,,1,,Europe/Paris,,OIF, +OIF:SA:84:83,1,"Pontoise - Citadelle",49.052954,2.094952,,1,,Europe/Paris,,OIF, +OIF:SA:84:84,1,"Pontoise - Poste",49.051632,2.098971,,1,,Europe/Paris,,OIF, +OIF:SA:84:85,1,"Pontoise - Hôtel Dieu",49.047649,2.100145,,1,,Europe/Paris,,OIF, +OIF:SA:86:102,1,"Chemin de Fontenay",48.978914,1.680273,,1,,Europe/Paris,,OIF, +OIF:SA:86:109,1,"Nungesser",49.001513,1.677905,,1,,Europe/Paris,,OIF, +OIF:SA:86:110,1,"Godeau",49.003547,1.684433,,1,,Europe/Paris,,OIF, +OIF:SA:86:112,1,"Mantes-la-Ville - Plaisances",48.976279,1.703365,,1,,Europe/Paris,,OIF, +OIF:SA:86:114,1,"Braunstein",48.997361,1.706446,,1,,Europe/Paris,,OIF, +OIF:SA:86:116,1,"IUT Intermarché",48.996992,1.710677,,1,,Europe/Paris,,OIF, +OIF:SA:86:117,1,"Castor",48.99458,1.714312,,1,,Europe/Paris,,OIF, +OIF:SA:86:118,1,"Henri Clérisse",48.992498,1.717409,,1,,Europe/Paris,,OIF, +OIF:SA:86:120,1,"Mantes-la-Ville - Mairie",48.978247,1.714266,,1,,Europe/Paris,,OIF, +OIF:SA:86:121,1,"Mantes-la-Ville - Ravine",48.975601,1.711871,,1,,Europe/Paris,,OIF, +OIF:SA:86:122,1,"Mantes-la-Ville - Valmonts",48.975042,1.708895,,1,,Europe/Paris,,OIF, +OIF:SA:86:123,1,"Mantes-la-Ville - Jean Moulin",48.975144,1.703672,,1,,Europe/Paris,,OIF, +OIF:SA:86:125,1,"Mantes-la-Ville - Place du Commerce",48.984549,1.69602,,1,,Europe/Paris,,OIF, +OIF:SA:86:126,1,"Mantes-la-Ville - Rouen",48.983314,1.695318,,1,,Europe/Paris,,OIF, +OIF:SA:86:127,1,"Mantes-la-Ville - Brouets",48.981917,1.6964,,1,,Europe/Paris,,OIF, +OIF:SA:86:128,1,"Mantes-la-Ville - Chemin de Dreux",48.97857,1.699591,,1,,Europe/Paris,,OIF, +OIF:SA:86:129,1,"Mantes-la-Ville - Belles Lances",48.976035,1.699716,,1,,Europe/Paris,,OIF, +OIF:SA:86:130,1,"Mantes-la-Ville - Saint-Étienne",48.973502,1.712736,,1,,Europe/Paris,,OIF, +OIF:SA:86:136,1,"Marronniers",48.969669,1.686594,,1,,Europe/Paris,,OIF, +OIF:SA:86:137,1,"Bel Air",48.970494,1.690338,,1,,Europe/Paris,,OIF, +OIF:SA:86:138,1,"Graviers / Brosses",48.972707,1.692405,,1,,Europe/Paris,,OIF, +OIF:SA:86:139,1,"Graviers / Mongazons",48.974545,1.694963,,1,,Europe/Paris,,OIF, +OIF:SA:86:140,1,"Pierrettes",48.976244,1.695863,,1,,Europe/Paris,,OIF, +OIF:SA:86:149,1,"Coteau",48.983672,1.722376,,1,,Europe/Paris,,OIF, +OIF:SA:86:150,1,"Saint-Bonaventure",48.984989,1.721609,,1,,Europe/Paris,,OIF, +OIF:SA:86:151,1,"Porte aux Saints",48.986622,1.717698,,1,,Europe/Paris,,OIF, +OIF:SA:86:152,1,"Clos Pasteur",48.997737,1.701954,,1,,Europe/Paris,,OIF, +OIF:SA:86:153,1,"Cité des Clos",48.996014,1.704154,,1,,Europe/Paris,,OIF, +OIF:SA:86:154,1,"Toutain",48.994559,1.706015,,1,,Europe/Paris,,OIF, +OIF:SA:86:155,1,"Denfert Rochereau",48.992368,1.708828,,1,,Europe/Paris,,OIF, +OIF:SA:86:156,1,"Mantes la Ville - Poste (Aforp)",48.981368,1.71133,,1,,Europe/Paris,,OIF, +OIF:SA:86:157,1,"Mantes-la-Ville - Valogne",48.985203,1.704969,,1,,Europe/Paris,,OIF, +OIF:SA:86:158,1,"Mantes-la-Ville - Meuniers",48.983699,1.700147,,1,,Europe/Paris,,OIF, +OIF:SA:86:169,1,"Mare Pasloue",48.966724,1.683813,,1,,Europe/Paris,,OIF, +OIF:SA:86:170,1,"Roussières",48.966048,1.689103,,1,,Europe/Paris,,OIF, +OIF:SA:86:171,1,"Anjou",48.966015,1.691342,,1,,Europe/Paris,,OIF, +OIF:SA:86:172,1,"Touraine",48.966901,1.694041,,1,,Europe/Paris,,OIF, +OIF:SA:86:173,1,"Thymerais",48.968233,1.693546,,1,,Europe/Paris,,OIF, +OIF:SA:86:174,1,"Lorraine",48.969745,1.69391,,1,,Europe/Paris,,OIF, +OIF:SA:86:175,1,"Penthièvre",48.97045,1.696345,,1,,Europe/Paris,,OIF, +OIF:SA:86:176,1,"Merles",48.972009,1.697977,,1,,Europe/Paris,,OIF, +OIF:SA:86:177,1,"Mantes-la-Ville - Bates",48.980457,1.704843,,1,,Europe/Paris,,OIF, +OIF:SA:86:178,1,"Mantes-la-Ville - Sacré Cœur",48.983807,1.707846,,1,,Europe/Paris,,OIF, +OIF:SA:86:182,1,"René Renault",48.981401,1.664615,,1,,Europe/Paris,,OIF, +OIF:SA:86:183,1,"Pasteur",48.979497,1.671254,,1,,Europe/Paris,,OIF, +OIF:SA:86:204,1,"Mantes-la-Ville - Val Saint-Georges",48.982022,1.697491,,1,,Europe/Paris,,OIF, +OIF:SA:86:206,1,"Jouy-Mauvoisin - Vallée",48.975992,1.645988,,1,,Europe/Paris,,OIF, +OIF:SA:86:207,1,"Jouy-Mauvoisin - Mairie",48.974671,1.64905,,1,,Europe/Paris,,OIF, +OIF:SA:86:208,1,"Graviers",48.970501,1.68584,,1,,Europe/Paris,,OIF, +OIF:SA:86:211,1,"Mantes-la-Ville - Domaine de la Vallée",48.970225,1.718427,,1,,Europe/Paris,,OIF, +OIF:SA:86:212,1,"Hauts Villiers",48.973691,1.719587,,1,,Europe/Paris,,OIF, +OIF:SA:86:213,1,"Bièvre",48.972772,1.720881,,1,,Europe/Paris,,OIF, +OIF:SA:86:214,1,"Cernay",48.970857,1.720726,,1,,Europe/Paris,,OIF, +OIF:SA:86:215,1,"Rosay",48.968686,1.72153,,1,,Europe/Paris,,OIF, +OIF:SA:86:216,1,"Touques",48.966611,1.721569,,1,,Europe/Paris,,OIF, +OIF:SA:86:217,1,"Varennes",48.964435,1.719752,,1,,Europe/Paris,,OIF, +OIF:SA:86:218,1,"Mantes-la-Ville - Odet",48.963706,1.717782,,1,,Europe/Paris,,OIF, +OIF:SA:86:219,1,"Mantes-la-Ville - Mateau",48.974913,1.717763,,1,,Europe/Paris,,OIF, +OIF:SA:86:220,1,"Mantes-la-Ville - Louise Michel",48.985143,1.708015,,1,,Europe/Paris,,OIF, +OIF:SA:86:222,1,"Mantes la Ville - Lyre",48.963215,1.713201,,1,,Europe/Paris,,OIF, +OIF:SA:86:223,1,"Mantes-la-Ville - Chenonceaux",48.966001,1.713318,,1,,Europe/Paris,,OIF, +OIF:SA:86:224,1,"Mantes-la-Ville - Centre Commercial",48.969732,1.717034,,1,,Europe/Paris,,OIF, +OIF:SA:86:225,1,"Université",48.988315,1.697967,,1,,Europe/Paris,,OIF, +OIF:SA:86:226,1,"Chemin des Meuniers",48.9883,1.687602,,1,,Europe/Paris,,OIF, +OIF:SA:86:227,1,"Innovaparc",48.986899,1.681284,,1,,Europe/Paris,,OIF, +OIF:SA:86:24,1,"Port Fouquet",49.004122,1.696918,,1,,Europe/Paris,,OIF, +OIF:SA:86:240,1,"Breuil-Bois-Robert - I.M.E du Breuil",48.954659,1.716512,,1,,Europe/Paris,,OIF, +OIF:SA:86:25,1,"Clinique",49.004609,1.694726,,1,,Europe/Paris,,OIF, +OIF:SA:86:26,1,"Garennes",49.002771,1.692242,,1,,Europe/Paris,,OIF, +OIF:SA:86:277,1,"Rosny-sur-Seine - Croix Brisée",48.992919,1.640634,,1,,Europe/Paris,,OIF, +OIF:SA:86:278,1,"Rosny-sur-Seine - Pont Chapart",48.995786,1.635194,,1,,Europe/Paris,,OIF, +OIF:SA:86:279,1,"Rosny-sur-Seine - Gare",48.996953,1.631218,,1,,Europe/Paris,,OIF, +OIF:SA:86:29,1,"Patinoire",48.997806,1.688139,,1,,Europe/Paris,,OIF, +OIF:SA:86:306,1,"Rosny-sur-Seine - Gustave Eiffel",48.994512,1.65261,,1,,Europe/Paris,,OIF, +OIF:SA:86:307,1,"Rosny-sur-Seine - les Marceaux",48.990644,1.653461,,1,,Europe/Paris,,OIF, +OIF:SA:86:311,1,"Rosny-sur-Seine - Bois Moulin",48.9986,1.646991,,1,,Europe/Paris,,OIF, +OIF:SA:86:314,1,"Avenue des Cygnes",48.997397,1.714305,,1,,Europe/Paris,,OIF, +OIF:SA:86:315,1,"Quai de la Tour",48.996056,1.715646,,1,,Europe/Paris,,OIF, +OIF:SA:86:319,1,"Béarn",48.989453,1.66449,,1,,Europe/Paris,,OIF, +OIF:SA:86:320,1,"Durance",48.990609,1.670442,,1,,Europe/Paris,,OIF, +OIF:SA:86:321,1,"Verdon",48.989823,1.674433,,1,,Europe/Paris,,OIF, +OIF:SA:86:322,1,"Garonne",48.988871,1.676213,,1,,Europe/Paris,,OIF, +OIF:SA:86:323,1,"Rond-Point",48.987885,1.676581,,1,,Europe/Paris,,OIF, +OIF:SA:86:324,1,"Lot",48.988655,1.67862,,1,,Europe/Paris,,OIF, +OIF:SA:86:326,1,"Closeaux",48.991861,1.683085,,1,,Europe/Paris,,OIF, +OIF:SA:86:327,1,"Piquettes",48.991927,1.686116,,1,,Europe/Paris,,OIF, +OIF:SA:86:371,1,"Europe",48.979391,1.694554,,1,,Europe/Paris,,OIF, +OIF:SA:86:374,1,"Alpa",48.985136,1.759198,,1,,Europe/Paris,,OIF, +OIF:SA:86:375,1,"Forest",48.988844,1.761314,,1,,Europe/Paris,,OIF, +OIF:SA:86:381,1,"Hôtel de Ville",48.991952,1.73547,,1,,Europe/Paris,,OIF, +OIF:SA:86:382,1,"Place du Marché",48.995002,1.732552,,1,,Europe/Paris,,OIF, +OIF:SA:86:393,1,"Émile Zola",48.993886,1.701059,,1,,Europe/Paris,,OIF, +OIF:SA:86:394,1,"Liberté",48.996175,1.703087,,1,,Europe/Paris,,OIF, +OIF:SA:86:399,1,"Schwob",49.00094,1.687201,,1,,Europe/Paris,,OIF, +OIF:SA:86:400,1,"Limay - Jean Macé",48.996101,1.741082,,1,,Europe/Paris,,OIF, +OIF:SA:86:401,1,"Limay - Fontaines Agnès",48.997871,1.741909,,1,,Europe/Paris,,OIF, +OIF:SA:86:405,1,"Charcot",49.002945,1.690355,,1,,Europe/Paris,,OIF, +OIF:SA:86:408,1,"Porte de Normandie",48.978624,1.686379,,1,,Europe/Paris,,OIF, +OIF:SA:86:409,1,"Mantes-la-Ville - Pincevins",48.97885,1.695053,,1,,Europe/Paris,,OIF, +OIF:SA:86:413,1,"Fontenay",48.978248,1.685886,,1,,Europe/Paris,,OIF, +OIF:SA:86:42,1,"Paul Bert",48.993788,1.697838,,1,,Europe/Paris,,OIF, +OIF:SA:86:45,1,"Boulevard du Maréchal Juin",48.990781,1.708813,,1,,Europe/Paris,,OIF, +OIF:SA:86:50,1,"Normandie",48.988991,1.711839,,1,,Europe/Paris,,OIF, +OIF:SA:86:51,1,"Victor Hugo",48.984465,1.716789,,1,,Europe/Paris,,OIF, +OIF:SA:86:52,1,"Mantes-la-Ville - Camille Claudel",48.967177,1.714628,,1,,Europe/Paris,,OIF, +OIF:SA:86:58,1,"Mantes-la-Ville - Tour Merisiers",48.977744,1.702473,,1,,Europe/Paris,,OIF, +OIF:SA:86:61,1,"Lycée Léopold Sédar Senghor",48.964413,1.681945,,1,,Europe/Paris,,OIF, +OIF:SA:86:64,1,"Porcheville - Lycée Lavoisier",48.9734,1.773295,,1,,Europe/Paris,,OIF, +OIF:SA:86:66,1,"Duhamel",48.98613,1.716475,,1,,Europe/Paris,,OIF, +OIF:SA:86:69,1,"Mantes la Jolie - Saint-Maclou",48.990869,1.718754,,1,,Europe/Paris,,OIF, +OIF:SA:86:70,1,"Mantes la Jolie - Palais de Justice",48.989814,1.712881,,1,,Europe/Paris,,OIF, +OIF:SA:86:77,1,"Franklin Roosevelt",48.990141,1.709982,,1,,Europe/Paris,,OIF, +OIF:SA:86:83,1,"Beynes",48.978609,1.689574,,1,,Europe/Paris,,OIF, +OIF:SA:8700147,1,"Aéroport CDG Terminal 2 TGV",49.004105,2.568967,,1,,Europe/Paris,,OIF, +OIF:SA:8711127,1,"Porte de Clichy",48.894456,2.313613,,1,,Europe/Paris,,OIF, +OIF:SA:8711300,1,"Gare de l'Est",48.87619,2.358288,,1,,Europe/Paris,,OIF, +OIF:SA:8711320,1,"Gare de Pantin",48.897577,2.399907,,1,,Europe/Paris,,OIF, +OIF:SA:8711321,1,"Gare de Noisy le Sec",48.896085,2.459832,,1,,Europe/Paris,,OIF, +OIF:SA:8711340,1,"Gare de Bondy",48.89442,2.479026,,1,,Europe/Paris,,OIF, +OIF:SA:8711347,1,"Gare du Raincy Villemomble",48.889396,2.511694,,1,,Europe/Paris,,OIF, +OIF:SA:8711351,1,"Gare de Gagny",48.882813,2.525439,,1,,Europe/Paris,,OIF, +OIF:SA:8711352,1,"Gare de Chenay Gagny",48.876457,2.551386,,1,,Europe/Paris,,OIF, +OIF:SA:8711369,1,"Gare de Rosny Bois Perrier",48.883052,2.482488,,1,,Europe/Paris,,OIF, +OIF:SA:8711370,1,"Gare de Rosny sous Bois",48.869929,2.485522,,1,,Europe/Paris,,OIF, +OIF:SA:8711371,1,"Gare de Val de Fontenay",48.853184,2.487904,,1,,Europe/Paris,,OIF, +OIF:SA:8711374,1,"Gare de Nogent le Perreux",48.838687,2.494308,,1,,Europe/Paris,,OIF, +OIF:SA:8711377,1,"Gare des Boullereaux Champigny",48.825974,2.510274,,1,,Europe/Paris,,OIF, +OIF:SA:8711379,1,"Gare de Villiers sur Marne Plessis Trévise",48.823649,2.543319,,1,,Europe/Paris,,OIF, +OIF:SA:8711380,1,"Gare des Yvris Noisy le Grand",48.82334,2.579888,,1,,Europe/Paris,,OIF, +OIF:SA:8711384,1,"Gare des Coquetiers",48.89269,2.499844,,1,,Europe/Paris,,OIF, +OIF:SA:8711385,1,"Les Pavillons sous Bois T4",48.902253,2.510144,,1,,Europe/Paris,,OIF, +OIF:SA:8711386,1,"Gare de Gargan",48.908226,2.517254,,1,,Europe/Paris,,OIF, +OIF:SA:8711387,1,"Gare Allée de la Tour Rendez-Vous",48.896719,2.506013,,1,,Europe/Paris,,OIF, +OIF:SA:8711388,1,"Gare de l'Abbaye",48.92217,2.516734,,1,,Europe/Paris,,OIF, +OIF:SA:8711389,1,"Gare de Freinville Sevran",48.927062,2.519784,,1,,Europe/Paris,,OIF, +OIF:SA:8711587,1,"Gare de Champbenoist Poigny",48.545595,3.287313,,1,,Europe/Paris,,OIF, +OIF:SA:8711601,1,"Gare de Gretz Armainvilliers",48.745826,2.728439,,1,,Europe/Paris,,OIF, +OIF:SA:8711602,1,"Gare d'Ozoir la Ferrière",48.770433,2.690046,,1,,Europe/Paris,,OIF, +OIF:SA:8711603,1,"Gare de Roissy en Brie",48.795085,2.64999,,1,,Europe/Paris,,OIF, +OIF:SA:8711604,1,"Gare d'Emerainville Pontault Combault",48.805342,2.61949,,1,,Europe/Paris,,OIF, +OIF:SA:8711607,1,"Gare de Verneuil l'Étang",48.644663,2.82514,,1,,Europe/Paris,,OIF, +OIF:SA:8711608,1,"Gare de Mormant",48.613265,2.889336,,1,,Europe/Paris,,OIF, +OIF:SA:8711609,1,"Gare de Nangis",48.561577,3.012158,,1,,Europe/Paris,,OIF, +OIF:SA:8711610,1,"Gare de Meaux",48.956972,2.873959,,1,,Europe/Paris,,OIF, +OIF:SA:8711611,1,"Gare de Chelles Gournay",48.874697,2.584143,,1,,Europe/Paris,,OIF, +OIF:SA:8711613,1,"Gare de Longueville",48.51361,3.249746,,1,,Europe/Paris,,OIF, +OIF:SA:8711616,1,"Gare de Provins",48.555852,3.302707,,1,,Europe/Paris,,OIF, +OIF:SA:8711617,1,"Gare de Sainte-Colombe Septveilles",48.529149,3.255368,,1,,Europe/Paris,,OIF, +OIF:SA:8711621,1,"Gare de Tournan",48.73904,2.759389,,1,,Europe/Paris,,OIF, +OIF:SA:8711622,1,"Gare de Marles en Brie",48.733947,2.867887,,1,,Europe/Paris,,OIF, +OIF:SA:8711624,1,"Gare de Mortcerf",48.789497,2.907387,,1,,Europe/Paris,,OIF, +OIF:SA:8711626,1,"Gare de Guérard la Celle sur Morin",48.81098,2.955454,,1,,Europe/Paris,,OIF, +OIF:SA:8711627,1,"Gare de Faremoutiers Pommeuse",48.808262,2.993782,,1,,Europe/Paris,,OIF, +OIF:SA:8711628,1,"Gare de Mouroux",48.814085,3.042844,,1,,Europe/Paris,,OIF, +OIF:SA:8711629,1,"Gare de Vaires Torcy",48.8755,2.639102,,1,,Europe/Paris,,OIF, +OIF:SA:8711630,1,"Gare de Coulommiers",48.808004,3.081887,,1,,Europe/Paris,,OIF, +OIF:SA:8711631,1,"Gare de Lagny Thorigny",48.881771,2.705796,,1,,Europe/Paris,,OIF, +OIF:SA:8711632,1,"Gare d'Esbly",48.903333,2.810929,,1,,Europe/Paris,,OIF, +OIF:SA:8711634,1,"Gare de Chailly Boissy le Chatel",48.814946,3.151563,,1,,Europe/Paris,,OIF, +OIF:SA:8711635,1,"Gare de Chauffry",48.811286,3.174783,,1,,Europe/Paris,,OIF, +OIF:SA:8711636,1,"Gare de Saint-Siméon",48.799931,3.20766,,1,,Europe/Paris,,OIF, +OIF:SA:8711637,1,"Gare de Saint-Rémy la Vanne",48.800154,3.246253,,1,,Europe/Paris,,OIF, +OIF:SA:8711639,1,"Gare de la Ferté Gaucher",48.781479,3.298717,,1,,Europe/Paris,,OIF, +OIF:SA:8711640,1,"Gare de Montry Condé",48.890784,2.826475,,1,,Europe/Paris,,OIF, +OIF:SA:8711649,1,"Gare de Trilport",48.960226,2.95006,,1,,Europe/Paris,,OIF, +OIF:SA:8711650,1,"Gare de Changis Saint-Jean",48.958998,3.025092,,1,,Europe/Paris,,OIF, +OIF:SA:8711651,1,"Gare de la Ferté sous Jouarre",48.950549,3.124783,,1,,Europe/Paris,,OIF, +OIF:SA:8711655,1,"Gare de Nanteuil Saacy",48.97389,3.219757,,1,,Europe/Paris,,OIF, +OIF:SA:8711656,1,"Gare de Nogent l'Artaud Charly",48.968768,3.322956,,1,,Europe/Paris,,OIF, +OIF:SA:8711657,1,"Gare de Chézy sur Marne",48.990359,3.361628,,1,,Europe/Paris,,OIF, +OIF:SA:8711658,1,"Gare de Château Thierry",49.037949,3.409597,,1,,Europe/Paris,,OIF, +OIF:SA:8711661,1,"Gare d'Isles Armentieres Congis",48.998273,3.007334,,1,,Europe/Paris,,OIF, +OIF:SA:8711663,1,"Gare de Lizy sur Ourcq",49.021915,3.031758,,1,,Europe/Paris,,OIF, +OIF:SA:8711664,1,"Gare de Crouy sur Ourcq",49.091908,3.062916,,1,,Europe/Paris,,OIF, +OIF:SA:8711666,1,"Gare de Mareuil sur Ourcq",49.135474,3.075627,,1,,Europe/Paris,,OIF, +OIF:SA:8711667,1,"Gare de la Ferté Milon",49.179505,3.120613,,1,,Europe/Paris,,OIF, +OIF:SA:8711673,1,"Gare de Couilly Saint-Germain Quincy",48.883291,2.853867,,1,,Europe/Paris,,OIF, +OIF:SA:8711674,1,"Gare de Villiers Montbarbin",48.86329,2.883202,,1,,Europe/Paris,,OIF, +OIF:SA:8711677,1,"Gare de Crécy en Brie la Chapelle",48.859304,2.90544,,1,,Europe/Paris,,OIF, +OIF:SA:8716478,1,"Gare de Stade de France Saint-Denis",48.917795,2.351937,,1,,Europe/Paris,,OIF, +OIF:SA:8716479,1,"Gare de la Plaine Stade de France",48.918518,2.361988,,1,,Europe/Paris,,OIF, +OIF:SA:8727100,1,"Gare du Nord",48.880338,2.356507,,1,,Europe/Paris,,OIF, +OIF:SA:8727101,1,"Gare de Saint-Denis",48.934999,2.346403,,1,,Europe/Paris,,OIF, +OIF:SA:8727112,1,"Gare d'Epinay Villetaneuse",48.95821,2.327885,,1,,Europe/Paris,,OIF, +OIF:SA:8727114,1,"Gare d'Epinay sur Seine",48.954961,2.301684,,1,,Europe/Paris,,OIF, +OIF:SA:8727116,1,"Gare de Pierrefitte Stains",48.962181,2.370153,,1,,Europe/Paris,,OIF, +OIF:SA:8727117,1,"Gare de la Barre Ormesson",48.966675,2.31713,,1,,Europe/Paris,,OIF, +OIF:SA:8727120,1,"Gare de Gennevilliers",48.933392,2.307056,,1,,Europe/Paris,,OIF, +OIF:SA:8727124,1,"Gare de Saint-Ouen",48.904401,2.321078,,1,,Europe/Paris,,OIF, +OIF:SA:8727130,1,"Gare de la Courneuve Aubervilliers",48.924053,2.384811,,1,,Europe/Paris,,OIF, +OIF:SA:8727139,1,"Gare du Bourget",48.931103,2.425744,,1,,Europe/Paris,,OIF, +OIF:SA:8727140,1,"Gare de Drancy",48.932951,2.45508,,1,,Europe/Paris,,OIF, +OIF:SA:8727141,1,"Gare d'Aulnay sous Bois",48.931955,2.495104,,1,,Europe/Paris,,OIF, +OIF:SA:8727142,1,"Gare de Sevran Livry",48.93591,2.534807,,1,,Europe/Paris,,OIF, +OIF:SA:8727143,1,"Gare de Vert Galant",48.945097,2.567685,,1,,Europe/Paris,,OIF, +OIF:SA:8727144,1,"Gare de Sevran Beaudottes",48.947199,2.524517,,1,,Europe/Paris,,OIF, +OIF:SA:8727145,1,"Gare de Villepinte",48.962949,2.511969,,1,,Europe/Paris,,OIF, +OIF:SA:8727146,1,"Aéroport CDG Terminal 3 - Roissypole",49.010306,2.559581,,1,,Europe/Paris,,OIF, +OIF:SA:8727147,1,"Gare de Blanc Mesnil",48.932593,2.477254,,1,,Europe/Paris,,OIF, +OIF:SA:8727148,1,"Gare de Parc des Expositions",48.973978,2.51397,,1,,Europe/Paris,,OIF, +OIF:SA:8727151,1,"Gare de Villeparisis Mitry le Neuf",48.953178,2.602487,,1,,Europe/Paris,,OIF, +OIF:SA:8727152,1,"Gare de Mitry Claye",48.97578,2.642914,,1,,Europe/Paris,,OIF, +OIF:SA:8727153,1,"Gare de Dammartin Juilly Saint-Mard",49.032577,2.699139,,1,,Europe/Paris,,OIF, +OIF:SA:8727155,1,"Gare du Plessis Belleville",49.096121,2.744686,,1,,Europe/Paris,,OIF, +OIF:SA:8727157,1,"Gare de Nanteuil le Haudoin",49.142827,2.794553,,1,,Europe/Paris,,OIF, +OIF:SA:8727158,1,"Gare d'Ormoy Villers",49.200877,2.838108,,1,,Europe/Paris,,OIF, +OIF:SA:8727159,1,"Gare de Crepy en Valois",49.231222,2.888467,,1,,Europe/Paris,,OIF, +OIF:SA:8727202,1,"Gare de Villaines",49.079358,2.350648,,1,,Europe/Paris,,OIF, +OIF:SA:8727203,1,"Gare de Seugy",49.119159,2.39958,,1,,Europe/Paris,,OIF, +OIF:SA:8727204,1,"Gare de Compans",48.991391,2.66506,,1,,Europe/Paris,,OIF, +OIF:SA:8727205,1,"Gare de Thieux Nantouillet",49.008114,2.680252,,1,,Europe/Paris,,OIF, +OIF:SA:8727214,1,"Gare des Grésillons",48.920238,2.315115,,1,,Europe/Paris,,OIF, +OIF:SA:8727600,1,"Gare de Creil",49.264009,2.468986,,1,,Europe/Paris,,OIF, +OIF:SA:8727602,1,"Gare d'Enghien les Bains",48.972843,2.307013,,1,,Europe/Paris,,OIF, +OIF:SA:8727603,1,"Gare de Champ de Courses d'Enghien",48.980035,2.292198,,1,,Europe/Paris,,OIF, +OIF:SA:8727605,1,"Gare d'Ermont Eaubonne",48.980331,2.27146,,1,,Europe/Paris,,OIF, +OIF:SA:8727606,1,"Gare de Cernay",48.98513,2.257127,,1,,Europe/Paris,,OIF, +OIF:SA:8727607,1,"Gare de Franconville le Plessis Bouchard",48.993573,2.234672,,1,,Europe/Paris,,OIF, +OIF:SA:8727608,1,"Gare de Montigny Beauchamp",49.007403,2.19757,,1,,Europe/Paris,,OIF, +OIF:SA:8727609,1,"Gare de Pierrelaye",49.019332,2.15378,,1,,Europe/Paris,,OIF, +OIF:SA:8727610,1,"Gare de Saint-Ouen l'Aumône",49.045414,2.105976,,1,,Europe/Paris,,OIF, +OIF:SA:8727611,1,"Gare de Chantilly Gouvieux",49.187334,2.45952,,1,,Europe/Paris,,OIF, +OIF:SA:8727613,1,"Gare de Pontoise",49.046791,2.094954,,1,,Europe/Paris,,OIF, +OIF:SA:8727614,1,"Gare d'Epluches",49.054747,2.122265,,1,,Europe/Paris,,OIF, +OIF:SA:8727615,1,"Gare de Pont Petit",49.060589,2.130878,,1,,Europe/Paris,,OIF, +OIF:SA:8727616,1,"Gare de Chaponval",49.069313,2.141701,,1,,Europe/Paris,,OIF, +OIF:SA:8727617,1,"Gare de Saint-Gratien",48.964313,2.284839,,1,,Europe/Paris,,OIF, +OIF:SA:8727618,1,"Gare de Sannois",48.970052,2.263611,,1,,Europe/Paris,,OIF, +OIF:SA:8727619,1,"Gare de Garges Sarcelles",48.976931,2.390746,,1,,Europe/Paris,,OIF, +OIF:SA:8727622,1,"Gare de Villiers le Bel Gonesse Arnouville",48.994148,2.416817,,1,,Europe/Paris,,OIF, +OIF:SA:8727623,1,"Gare des Noues",49.032643,2.477222,,1,,Europe/Paris,,OIF, +OIF:SA:8727624,1,"Gare de Goussainville",49.02383,2.462604,,1,,Europe/Paris,,OIF, +OIF:SA:8727625,1,"Gare de Louvres",49.049308,2.501506,,1,,Europe/Paris,,OIF, +OIF:SA:8727626,1,"Gare de Survilliers Fosses",49.099534,2.52533,,1,,Europe/Paris,,OIF, +OIF:SA:8727627,1,"Gare d'Orry la Ville Coye la Foret",49.138717,2.489615,,1,,Europe/Paris,,OIF, +OIF:SA:8727628,1,"Gare de la Borne Blanche",49.126781,2.506144,,1,,Europe/Paris,,OIF, +OIF:SA:8727634,1,"Gare de Deuil - Montmagny",48.975597,2.33774,,1,,Europe/Paris,,OIF, +OIF:SA:8727636,1,"Gare de Groslay",48.984829,2.353654,,1,,Europe/Paris,,OIF, +OIF:SA:8727638,1,"Gare de Sarcelles Saint-Brice",48.995167,2.368429,,1,,Europe/Paris,,OIF, +OIF:SA:8727639,1,"Gare d'Ecouen Ézanville",49.023094,2.363031,,1,,Europe/Paris,,OIF, +OIF:SA:8727640,1,"Gare de Saint-Leu d'Esserent",49.214066,2.417909,,1,,Europe/Paris,,OIF, +OIF:SA:8727641,1,"Gare de Precy sur Oise",49.203248,2.376455,,1,,Europe/Paris,,OIF, +OIF:SA:8727643,1,"Gare de Domont",49.032776,2.33787,,1,,Europe/Paris,,OIF, +OIF:SA:8727644,1,"Gare de Boran sur Oise",49.167127,2.362463,,1,,Europe/Paris,,OIF, +OIF:SA:8727645,1,"Gare de Bruyères sur Oise",49.155138,2.3258,,1,,Europe/Paris,,OIF, +OIF:SA:8727646,1,"Gare de Persan Beaumont",49.147898,2.278859,,1,,Europe/Paris,,OIF, +OIF:SA:8727648,1,"Gare de Bouffémont Moisselles",49.045229,2.32264,,1,,Europe/Paris,,OIF, +OIF:SA:8727649,1,"Gare de Montsoult Maffliers",49.066187,2.322203,,1,,Europe/Paris,,OIF, +OIF:SA:8727650,1,"Gare de Presles Courcelles",49.113634,2.287806,,1,,Europe/Paris,,OIF, +OIF:SA:8727651,1,"Gare de Champagne sur Oise",49.135933,2.242184,,1,,Europe/Paris,,OIF, +OIF:SA:8727652,1,"Gare de l'Isle Adam Parmain",49.114285,2.209735,,1,,Europe/Paris,,OIF, +OIF:SA:8727653,1,"Gare de Valmondois",49.091772,2.202523,,1,,Europe/Paris,,OIF, +OIF:SA:8727654,1,"Gare d'Auvers sur Oise",49.070562,2.175312,,1,,Europe/Paris,,OIF, +OIF:SA:8727655,1,"Gare de Belloy Saint-Martin",49.097988,2.361655,,1,,Europe/Paris,,OIF, +OIF:SA:8727656,1,"Gare de Viarmes",49.116688,2.36826,,1,,Europe/Paris,,OIF, +OIF:SA:8727657,1,"Gare de Luzarches",49.117288,2.42072,,1,,Europe/Paris,,OIF, +OIF:SA:8727658,1,"Gare d'Ermont Halte",48.990429,2.263254,,1,,Europe/Paris,,OIF, +OIF:SA:8727659,1,"Gare de Gros Noyer Saint-Prix",48.995369,2.258509,,1,,Europe/Paris,,OIF, +OIF:SA:8727660,1,"Gare de Saint-Leu la Foret",49.015708,2.242403,,1,,Europe/Paris,,OIF, +OIF:SA:8727662,1,"Gare de Vaucelles",49.02215,2.230226,,1,,Europe/Paris,,OIF, +OIF:SA:8727663,1,"Gare de Taverny",49.025372,2.221795,,1,,Europe/Paris,,OIF, +OIF:SA:8727664,1,"Gare de Bessancourt",49.035888,2.210966,,1,,Europe/Paris,,OIF, +OIF:SA:8727665,1,"Gare de Frépillon",49.04656,2.199002,,1,,Europe/Paris,,OIF, +OIF:SA:8727666,1,"Gare de Mery sur Oise",49.057685,2.190711,,1,,Europe/Paris,,OIF, +OIF:SA:8727667,1,"Gare de Mériel",49.077618,2.205231,,1,,Europe/Paris,,OIF, +OIF:SA:8727675,1,"Gare de Nointel Mours",49.132611,2.280691,,1,,Europe/Paris,,OIF, +OIF:SA:8728187,1,"Magenta",48.881531,2.358549,,1,,Europe/Paris,,OIF, +OIF:SA:8728189,1,"Haussmann Saint-Lazare",48.874494,2.326655,,1,,Europe/Paris,,OIF, +OIF:SA:8731351,1,"Gare de Beauvais",49.426202,2.088507,,1,,Europe/Paris,,OIF, +OIF:SA:8732832,1,"Bibliothèque François Mitterrand",48.829906,2.376719,,1,,Europe/Paris,,OIF, +OIF:SA:8733448,1,"Gare de Neuville Université",49.0146,2.079381,,1,,Europe/Paris,,OIF, +OIF:SA:8733798,1,"Gare de Saint-Ouen l'Aumône Liesse",49.033817,2.128025,,1,,Europe/Paris,,OIF, +OIF:SA:8736692,1,"Gare de Saint-Germain en Laye Bel Air Fourqueux",48.895344,2.071166,,1,,Europe/Paris,,OIF, +OIF:SA:8738101,1,"Pereire Levallois",48.886194,2.297648,,1,,Europe/Paris,,OIF, +OIF:SA:8738102,1,"Porte Maillot",48.877842,2.282748,,1,,Europe/Paris,,OIF, +OIF:SA:8738103,1,"Avenue Foch",48.871546,2.27608,,1,,Europe/Paris,,OIF, +OIF:SA:8738104,1,"Avenue Henri Martin",48.864838,2.272332,,1,,Europe/Paris,,OIF, +OIF:SA:8738107,1,"Gare de Bois Colombes",48.914449,2.271024,,1,,Europe/Paris,,OIF, +OIF:SA:8738108,1,"Gare de Colombes",48.923773,2.258756,,1,,Europe/Paris,,OIF, +OIF:SA:8738109,1,"Gare du Stade",48.930851,2.260779,,1,,Europe/Paris,,OIF, +OIF:SA:8738111,1,"Pont Cardinet",48.887669,2.315875,,1,,Europe/Paris,,OIF, +OIF:SA:8738112,1,"Gare de Clichy Levallois",48.897019,2.29782,,1,,Europe/Paris,,OIF, +OIF:SA:8738113,1,"Gare d'Asnières",48.90623,2.284201,,1,,Europe/Paris,,OIF, +OIF:SA:8738114,1,"Gare d'Osny",49.062963,2.057494,,1,,Europe/Paris,,OIF, +OIF:SA:8738115,1,"Gare de Boissy l'Aillerie",49.0758,2.025234,,1,,Europe/Paris,,OIF, +OIF:SA:8738116,1,"Gare de Montgeroult Courcelles",49.080606,2.003398,,1,,Europe/Paris,,OIF, +OIF:SA:8738117,1,"Gare d'Us",49.099669,1.970525,,1,,Europe/Paris,,OIF, +OIF:SA:8738118,1,"Gare de Santeuil le Perchay",49.123439,1.949362,,1,,Europe/Paris,,OIF, +OIF:SA:8738119,1,"Gare de Chars",49.162901,1.93679,,1,,Europe/Paris,,OIF, +OIF:SA:8738120,1,"Gare de la Villetertre",49.20255,1.920503,,1,,Europe/Paris,,OIF, +OIF:SA:8738121,1,"Gare de Liancourt Saint-Pierre",49.220538,1.90542,,1,,Europe/Paris,,OIF, +OIF:SA:8738122,1,"Gare de Chaumont en Vexin",49.261386,1.872031,,1,,Europe/Paris,,OIF, +OIF:SA:8738123,1,"Gare de Trie Château",49.28256,1.818119,,1,,Europe/Paris,,OIF, +OIF:SA:8738124,1,"Gare de Gisors",49.285264,1.785066,,1,,Europe/Paris,,OIF, +OIF:SA:8738141,1,"Gare d'Eragny Neuville",49.018049,2.090858,,1,,Europe/Paris,,OIF, +OIF:SA:8738142,1,"Gare de Saint-Ouen l'Aumône Quartier de l'Église",49.040009,2.103737,,1,,Europe/Paris,,OIF, +OIF:SA:8738145,1,"Gare de Conflans Fin d'Oise",48.989366,2.074764,,1,,Europe/Paris,,OIF, +OIF:SA:8738147,1,"Gare de Chanteloup les Vignes",48.970605,2.027765,,1,,Europe/Paris,,OIF, +OIF:SA:8738148,1,"Gare de Maurecourt",48.987929,2.060117,,1,,Europe/Paris,,OIF, +OIF:SA:8738149,1,"Gare d'Andrésy",48.974954,2.049669,,1,,Europe/Paris,,OIF, +OIF:SA:8738150,1,"Gare de Mantes la Jolie",48.989085,1.703971,,1,,Europe/Paris,,OIF, +OIF:SA:8738155,1,"Gare de Juziers",48.99235,1.844946,,1,,Europe/Paris,,OIF, +OIF:SA:8738156,1,"Gare de Gargenville",48.983405,1.809957,,1,,Europe/Paris,,OIF, +OIF:SA:8738157,1,"Gare d'Issou Porcheville",48.97922,1.784909,,1,,Europe/Paris,,OIF, +OIF:SA:8738158,1,"Gare de Limay",48.98398,1.747435,,1,,Europe/Paris,,OIF, +OIF:SA:8738159,1,"Gare de Mantes Station",48.983153,1.715817,,1,,Europe/Paris,,OIF, +OIF:SA:8738162,1,"Gare de Bréval",48.943308,1.542128,,1,,Europe/Paris,,OIF, +OIF:SA:8738165,1,"Gare d'Achères Ville",48.970038,2.077233,,1,,Europe/Paris,,OIF, +OIF:SA:8738171,1,"Gare de Mareil sur Mauldre",48.893239,1.871738,,1,,Europe/Paris,,OIF, +OIF:SA:8738172,1,"Gare de Maule",48.908726,1.857333,,1,,Europe/Paris,,OIF, +OIF:SA:8738173,1,"Gare de Nézel Aulnay",48.938711,1.84096,,1,,Europe/Paris,,OIF, +OIF:SA:8738179,1,"Gare de Val d'Argenteuil",48.950568,2.231009,,1,,Europe/Paris,,OIF, +OIF:SA:8738180,1,"Gare de Triel sur Seine",48.981087,2.005569,,1,,Europe/Paris,,OIF, +OIF:SA:8738181,1,"Gare de Vaux sur Seine",49.006881,1.963555,,1,,Europe/Paris,,OIF, +OIF:SA:8738182,1,"Gare de Thun le Paradis",49.006706,1.919935,,1,,Europe/Paris,,OIF, +OIF:SA:8738183,1,"Gare de Meulan Hardricourt",49.006228,1.900984,,1,,Europe/Paris,,OIF, +OIF:SA:8738184,1,"Gare d'Argenteuil",48.946536,2.25736,,1,,Europe/Paris,,OIF, +OIF:SA:8738186,1,"Gare de Cormeilles en Parisis",48.968495,2.194278,,1,,Europe/Paris,,OIF, +OIF:SA:8738187,1,"Gare de la Frette Montigny",48.980128,2.181456,,1,,Europe/Paris,,OIF, +OIF:SA:8738188,1,"Gare de Herblay",48.99084,2.161372,,1,,Europe/Paris,,OIF, +OIF:SA:8738189,1,"Gare de Conflans Sainte-Honorine",48.997088,2.097113,,1,,Europe/Paris,,OIF, +OIF:SA:8738190,1,"Gare de Cergy Préfecture",49.036135,2.080599,,1,,Europe/Paris,,OIF, +OIF:SA:8738200,1,"Gare de Becon les Bruyères",48.904884,2.269017,,1,,Europe/Paris,,OIF, +OIF:SA:8738220,1,"Gare de Courbevoie",48.897985,2.247809,,1,,Europe/Paris,,OIF, +OIF:SA:8738221,1,"La Défense",48.891737,2.238964,,1,,Europe/Paris,,OIF, +OIF:SA:8738225,1,"Gare de Garches Marnes la Coquette",48.838716,2.186376,,1,,Europe/Paris,,OIF, +OIF:SA:8738226,1,"Gare de Vaucresson",48.837104,2.15295,,1,,Europe/Paris,,OIF, +OIF:SA:8738233,1,"Gare de Chaville Rive Droite",48.812256,2.187594,,1,,Europe/Paris,,OIF, +OIF:SA:8738234,1,"Gare de Sevres Ville d'Avray",48.826968,2.200274,,1,,Europe/Paris,,OIF, +OIF:SA:8738235,1,"Gare de Saint-Cloud",48.845333,2.217682,,1,,Europe/Paris,,OIF, +OIF:SA:8738236,1,"Gare du Val d'Or",48.85819,2.214497,,1,,Europe/Paris,,OIF, +OIF:SA:8738237,1,"Gare de Suresnes Mont Valerien",48.871603,2.222503,,1,,Europe/Paris,,OIF, +OIF:SA:8738238,1,"Gare de Puteaux",48.883342,2.233403,,1,,Europe/Paris,,OIF, +OIF:SA:8738243,1,"Gare de la Celle Saint-Cloud",48.84303,2.136764,,1,,Europe/Paris,,OIF, +OIF:SA:8738244,1,"Gare de Bougival",48.854238,2.131774,,1,,Europe/Paris,,OIF, +OIF:SA:8738245,1,"Gare de Louveciennes",48.861025,2.12307,,1,,Europe/Paris,,OIF, +OIF:SA:8738246,1,"Gare de Marly le Roi",48.871415,2.096976,,1,,Europe/Paris,,OIF, +OIF:SA:8738247,1,"Gare de l'Étang la Ville",48.868126,2.07678,,1,,Europe/Paris,,OIF, +OIF:SA:8738248,1,"Gare de Saint-Nom la Bretèche Foret de Marly",48.867514,2.050885,,1,,Europe/Paris,,OIF, +OIF:SA:8738249,1,"Gare de Cergy Saint-Christophe",49.049794,2.034449,,1,,Europe/Paris,,OIF, +OIF:SA:8738265,1,"Gare de Cergy le Haut",49.04785,2.011046,,1,,Europe/Paris,,OIF, +OIF:SA:8738280,1,"Gare de Saint-Germain en Laye Grande Ceinture",48.903195,2.073087,,1,,Europe/Paris,,OIF, +OIF:SA:8738281,1,"Gare de Mareil Marly",48.881474,2.079432,,1,,Europe/Paris,,OIF, +OIF:SA:8738286,1,"Gare de Versailles Rive Droite",48.809616,2.134564,,1,,Europe/Paris,,OIF, +OIF:SA:8738287,1,"Gare de Montreuil",48.80673,2.151281,,1,,Europe/Paris,,OIF, +OIF:SA:8738288,1,"Gare de Viroflay Rive Droite",48.805328,2.168748,,1,,Europe/Paris,,OIF, +OIF:SA:8738328,1,"Gare de Massy Verrières",48.734631,2.273229,,1,,Europe/Paris,,OIF, +OIF:SA:8738400,1,"Gare Saint-Lazare",48.875504,2.324968,,1,,Europe/Paris,,OIF, +OIF:SA:8738600,1,"Gare de la Garenne Colombes",48.909466,2.238952,,1,,Europe/Paris,,OIF, +OIF:SA:8738605,1,"Gare d'Achères Grand Cormier",48.955239,2.092409,,1,,Europe/Paris,,OIF, +OIF:SA:8738630,1,"Gare des Vallées",48.913888,2.257721,,1,,Europe/Paris,,OIF, +OIF:SA:8738631,1,"Gare de Nanterre Université",48.90114,2.214486,,1,,Europe/Paris,,OIF, +OIF:SA:8738640,1,"Gare de Houilles Carrières sur Seine",48.919966,2.185371,,1,,Europe/Paris,,OIF, +OIF:SA:8738641,1,"Gare de Sartrouville",48.937823,2.158244,,1,,Europe/Paris,,OIF, +OIF:SA:8738642,1,"Gare de Maisons Laffitte",48.945732,2.14448,,1,,Europe/Paris,,OIF, +OIF:SA:8738657,1,"Gare de Poissy",48.933237,2.040749,,1,,Europe/Paris,,OIF, +OIF:SA:8738664,1,"Gare de Villennes sur Seine",48.939499,1.999496,,1,,Europe/Paris,,OIF, +OIF:SA:8738665,1,"Gare de Vernouillet Verneuil",48.98106,1.982586,,1,,Europe/Paris,,OIF, +OIF:SA:8738666,1,"Gare des Clairières de Verneuil",48.992332,1.955287,,1,,Europe/Paris,,OIF, +OIF:SA:8738668,1,"Gare des Mureaux",48.992909,1.913047,,1,,Europe/Paris,,OIF, +OIF:SA:8738673,1,"Gare d'Aubergenville Elisabethville",48.971917,1.848388,,1,,Europe/Paris,,OIF, +OIF:SA:8738676,1,"Gare d'Épône Mézières",48.963092,1.808659,,1,,Europe/Paris,,OIF, +OIF:SA:8738700,1,"Gare d'Évreux-Normandie",49.01842,1.149004,,1,,Europe/Paris,,OIF, +OIF:SA:8738709,1,"Gare de Bueil",48.925094,1.443791,,1,,Europe/Paris,,OIF, +OIF:SA:8739100,1,"Gare Montparnasse",48.842468,2.321786,,1,,Europe/Paris,,OIF, +OIF:SA:8739110,1,"Gare Vaugirard",48.838745,2.31615,,1,,Europe/Paris,,OIF, +OIF:SA:8739153,1,"Gare de Vanves Malakoff",48.818986,2.292734,,1,,Europe/Paris,,OIF, +OIF:SA:8739156,1,"Gare de Clamart",48.813908,2.272974,,1,,Europe/Paris,,OIF, +OIF:SA:8739300,1,"Gare de Versailles Chantiers",48.795985,2.136165,,1,,Europe/Paris,,OIF, +OIF:SA:8739303,1,"Invalides",48.862752,2.314268,,1,,Europe/Paris,,OIF, +OIF:SA:8739305,1,"Champ de Mars Tour Eiffel",48.857458,2.293947,,1,,Europe/Paris,,OIF, +OIF:SA:8739306,1,"Javel",48.846174,2.27684,,1,,Europe/Paris,,OIF, +OIF:SA:8739307,1,"Gare d'Issy",48.819874,2.259135,,1,,Europe/Paris,,OIF, +OIF:SA:8739308,1,"Gare de Meudon Val Fleury",48.807853,2.241598,,1,,Europe/Paris,,OIF, +OIF:SA:8739310,1,"Gare de Meudon",48.814807,2.241096,,1,,Europe/Paris,,OIF, +OIF:SA:8739311,1,"Gare de Bellevue",48.819047,2.229571,,1,,Europe/Paris,,OIF, +OIF:SA:8739312,1,"Gare de Sevres Rive Gauche",48.821021,2.216073,,1,,Europe/Paris,,OIF, +OIF:SA:8739315,1,"Gare de Versailles Château / Rive Gauche",48.800426,2.128354,,1,,Europe/Paris,,OIF, +OIF:SA:8739316,1,"Gare de Porchefontaine",48.797459,2.153256,,1,,Europe/Paris,,OIF, +OIF:SA:8739317,1,"Gare de Chaville Vélizy",48.7995,2.184268,,1,,Europe/Paris,,OIF, +OIF:SA:8739320,1,"Gare de Chaville Rive Gauche",48.804783,2.188307,,1,,Europe/Paris,,OIF, +OIF:SA:8739321,1,"Gare de Viroflay Rive Gauche",48.800916,2.171311,,1,,Europe/Paris,,OIF, +OIF:SA:8739322,1,"Gare de Saint-Cyr",48.799016,2.072291,,1,,Europe/Paris,,OIF, +OIF:SA:8739325,1,"Gare de la Verrière",48.755385,1.943314,,1,,Europe/Paris,,OIF, +OIF:SA:8739327,1,"Gare de Coignières",48.743622,1.921011,,1,,Europe/Paris,,OIF, +OIF:SA:8739328,1,"Gare des Essarts le Roi",48.721731,1.890288,,1,,Europe/Paris,,OIF, +OIF:SA:8739329,1,"Gare du Perray",48.693476,1.856629,,1,,Europe/Paris,,OIF, +OIF:SA:8739330,1,"Gare d'Issy Val de Seine",48.829892,2.264032,,1,,Europe/Paris,,OIF, +OIF:SA:8739331,1,"Gare de Rambouillet",48.643572,1.83221,,1,,Europe/Paris,,OIF, +OIF:SA:8739332,1,"Pont Garigliano - Hôpital Européen Georges Pompidou",48.838944,2.271226,,1,,Europe/Paris,,OIF, +OIF:SA:8739334,1,"Gare de Gazeran",48.624724,1.771609,,1,,Europe/Paris,,OIF, +OIF:SA:8739336,1,"Gare de Beynes",48.859931,1.875563,,1,,Europe/Paris,,OIF, +OIF:SA:8739340,1,"Gare de Fontenay le Fleury",48.807418,2.040155,,1,,Europe/Paris,,OIF, +OIF:SA:8739341,1,"Gare de Villepreux les Clayes",48.823745,1.991822,,1,,Europe/Paris,,OIF, +OIF:SA:8739342,1,"Gare de Plaisir Grignon",48.831523,1.944128,,1,,Europe/Paris,,OIF, +OIF:SA:8739343,1,"Gare de Garancières la Queue",48.810719,1.765057,,1,,Europe/Paris,,OIF, +OIF:SA:8739344,1,"Gare d'Orgerus Béhoust",48.826573,1.702797,,1,,Europe/Paris,,OIF, +OIF:SA:8739345,1,"Gare de Tacoignières Richebourg",48.829569,1.668882,,1,,Europe/Paris,,OIF, +OIF:SA:8739346,1,"Gare de Houdan",48.795824,1.602382,,1,,Europe/Paris,,OIF, +OIF:SA:8739347,1,"Gare de Marchezais Broue",48.768422,1.513333,,1,,Europe/Paris,,OIF, +OIF:SA:8739348,1,"Gare de Dreux",48.730955,1.369974,,1,,Europe/Paris,,OIF, +OIF:SA:8739350,1,"Gare de Petit Jouy les Loges",48.770911,2.146846,,1,,Europe/Paris,,OIF, +OIF:SA:8739351,1,"Gare de Jouy en Josas",48.764828,2.163741,,1,,Europe/Paris,,OIF, +OIF:SA:8739353,1,"Gare de Vauboyen",48.758635,2.191528,,1,,Europe/Paris,,OIF, +OIF:SA:8739354,1,"Gare de Bièvres",48.751504,2.215318,,1,,Europe/Paris,,OIF, +OIF:SA:8739356,1,"Gare d'Igny",48.74004,2.230823,,1,,Europe/Paris,,OIF, +OIF:SA:8739357,1,"Gare de Massy Palaiseau",48.724289,2.258214,,1,,Europe/Paris,,OIF, +OIF:SA:8739361,1,"Gare de Longjumeau",48.702493,2.295525,,1,,Europe/Paris,,OIF, +OIF:SA:8739362,1,"Gare de Plaisir les Clayes",48.830684,1.959876,,1,,Europe/Paris,,OIF, +OIF:SA:8739363,1,"Gare de Chilly Mazarin",48.700134,2.307559,,1,,Europe/Paris,,OIF, +OIF:SA:8739364,1,"Gare de Gravigny Balizy",48.685128,2.31734,,1,,Europe/Paris,,OIF, +OIF:SA:8739365,1,"Gare de Petit Vaux",48.676082,2.333789,,1,,Europe/Paris,,OIF, +OIF:SA:8739383,1,"Gare de Trappes",48.774727,2.006245,,1,,Europe/Paris,,OIF, +OIF:SA:8739384,1,"Gare de Saint-Quentin en Yvelines",48.787718,2.045017,,1,,Europe/Paris,,OIF, +OIF:SA:8739387,1,"Gare de Noisy le Roi",48.841708,2.061836,,1,,Europe/Paris,,OIF, +OIF:SA:8739388,1,"Gare de Villiers Neauphle Pontchartrain",48.814471,1.875527,,1,,Europe/Paris,,OIF, +OIF:SA:8739389,1,"Gare de Montfort l'Amaury Mère",48.802427,1.815305,,1,,Europe/Paris,,OIF, +OIF:SA:8739400,1,"Gare de Chartres",48.448385,1.480871,,1,,Europe/Paris,,OIF, +OIF:SA:8739411,1,"Gare d'Epernon",48.605076,1.681646,,1,,Europe/Paris,,OIF, +OIF:SA:8739413,1,"Gare de Maintenon",48.585279,1.592458,,1,,Europe/Paris,,OIF, +OIF:SA:8739414,1,"Gare de Saint-Piat",48.542184,1.589985,,1,,Europe/Paris,,OIF, +OIF:SA:8739415,1,"Gare de Jouy",48.510447,1.557776,,1,,Europe/Paris,,OIF, +OIF:SA:8739417,1,"Gare de la Villette Saint-Prest",48.482411,1.522358,,1,,Europe/Paris,,OIF, +OIF:SA:8741069,1,"Place du Vexin",49.004758,1.906821,,1,,Europe/Paris,,OIF, +OIF:SA:8741071,1,"Arquebuse",49.004278,1.910742,,1,,Europe/Paris,,OIF, +OIF:SA:8741085,1,"Mairie",48.988042,1.808057,,1,,Europe/Paris,,OIF, +OIF:SA:8741440,1,"Mairie",48.691904,2.370733,,1,,Europe/Paris,,OIF, +OIF:SA:8741442,1,"Pyramide de Juvisy",48.698162,2.371791,,1,,Europe/Paris,,OIF, +OIF:SA:8741449,1,"Yves Farge",48.776735,1.99468,,1,,Europe/Paris,,OIF, +OIF:SA:8741451,1,"Porte des Matelots",48.803288,2.105736,,1,,Europe/Paris,,OIF, +OIF:SA:8741452,1,"Pierre Edouard",48.801041,2.162585,,1,,Europe/Paris,,OIF, +OIF:SA:8741453,1,"Paul Langevin",48.776168,1.990105,,1,,Europe/Paris,,OIF, +OIF:SA:8741454,1,"Pasteur",48.77352,1.98367,,1,,Europe/Paris,,OIF, +OIF:SA:8741455,1,"Les Pyramides",48.763784,1.948008,,1,,Europe/Paris,,OIF, +OIF:SA:8741456,1,"La Petite Villedieu",48.767425,1.961991,,1,,Europe/Paris,,OIF, +OIF:SA:8741457,1,"La Passerelle",48.770744,1.969944,,1,,Europe/Paris,,OIF, +OIF:SA:8741458,1,"Hôpital Jean Rostand",48.820805,2.20165,,1,,Europe/Paris,,OIF, +OIF:SA:8741459,1,"Groupe Scolaire Pasteur",48.782575,2.035488,,1,,Europe/Paris,,OIF, +OIF:SA:8741460,1,"Grâce de Dieu",48.803964,2.176193,,1,,Europe/Paris,,OIF, +OIF:SA:8741461,1,"Atrium",48.812396,2.191994,,1,,Europe/Paris,,OIF, +OIF:SA:8741560,1,"Gare de Vernon",49.090897,1.478831,,1,,Europe/Paris,,OIF, +OIF:SA:8741588,1,"Gare de Rosny sur Seine",48.997207,1.630288,,1,,Europe/Paris,,OIF, +OIF:SA:8741589,1,"Gare de Bonnières",49.038395,1.579863,,1,,Europe/Paris,,OIF, +OIF:SA:8743081,1,"Gare de la Ferté Gaucher / Centre",48.782308,3.306971,,1,,Europe/Paris,,OIF, +OIF:SA:8743088,1,"Jouy sur Morin Monument",48.790679,3.274084,,1,,Europe/Paris,,OIF, +OIF:SA:8743090,1,"Eustache Lenoir",48.798058,3.267396,,1,,Europe/Paris,,OIF, +OIF:SA:8743091,1,"Champgoulin",48.79175,3.256277,,1,,Europe/Paris,,OIF, +OIF:SA:8743179,1,"Rougemont Chanteloup",48.930733,2.515534,,1,,Europe/Paris,,OIF, +OIF:SA:8743282,1,"Grand Cerf",48.92357,2.207679,,1,,Europe/Paris,,OIF, +OIF:SA:8743283,1,"Gare de Conflans Fin d'Oise",48.99168,2.083631,,1,,Europe/Paris,,OIF, +OIF:SA:8743285,1,"Courbevoie Becon les Bruyères",48.9051,2.256444,,1,,Europe/Paris,,OIF, +OIF:SA:8743286,1,"Gare d'Eragny",49.018151,2.090975,,1,,Europe/Paris,,OIF, +OIF:SA:8743287,1,"Conseil Général",49.031829,2.074333,,1,,Europe/Paris,,OIF, +OIF:SA:8743288,1,"Houilles Noctilien",48.92643,2.193332,,1,,Europe/Paris,,OIF, +OIF:SA:8743294,1,"Chessy Noctilien",48.880676,2.767724,,1,,Europe/Paris,,OIF, +OIF:SA:8743307,1,"Saint-Thibault des Vignes",48.870573,2.682517,,1,,Europe/Paris,,OIF, +OIF:SA:8743308,1,"Collégien",48.839415,2.668993,,1,,Europe/Paris,,OIF, +OIF:SA:8743311,1,"Rosny sous Bois RER",48.870605,2.48482,,1,,Europe/Paris,,OIF, +OIF:SA:8743312,1,"Rosny Bois Perrier RER",48.882761,2.480589,,1,,Europe/Paris,,OIF, +OIF:SA:8743313,1,"Ozoir la Ferrière",48.76365,2.683641,,1,,Europe/Paris,,OIF, +OIF:SA:8743314,1,"Gare d'Emerainville Pontault-Combault",48.804718,2.622046,,1,,Europe/Paris,,OIF, +OIF:SA:8743317,1,"Neuilly Plaisance",48.853047,2.514691,,1,,Europe/Paris,,OIF, +OIF:SA:8743318,1,"Montévrain",48.877641,2.730555,,1,,Europe/Paris,,OIF, +OIF:SA:8743320,1,"Ville Evrard",48.862767,2.545665,,1,,Europe/Paris,,OIF, +OIF:SA:8744895,1,"Gare de Beauvais Tille Aéroport",49.459464,2.110794,,1,,Europe/Paris,,OIF, +OIF:SA:8749210,1,"Gare des Ardoines",48.78312,2.408738,,1,,Europe/Paris,,OIF, +OIF:SA:8749571,1,"Aéroport Orly Ouest",48.728341,2.360105,,1,,Europe/Paris,,OIF, +OIF:SA:8749572,1,"Aristide Briand",48.708257,2.37128,,1,,Europe/Paris,,OIF, +OIF:SA:8749573,1,"Fer à Cheval",48.744719,2.407347,,1,,Europe/Paris,,OIF, +OIF:SA:8749574,1,"Les Tilleuls",48.752823,2.405591,,1,,Europe/Paris,,OIF, +OIF:SA:8749577,1,"Franche Comté",48.766594,1.950856,,1,,Europe/Paris,,OIF, +OIF:SA:8750199,1,"Robert Schuman",48.550425,2.639,,1,,Europe/Paris,,OIF, +OIF:SA:8750203,1,"André Malraux",48.550588,2.666486,,1,,Europe/Paris,,OIF, +OIF:SA:8750204,1,"Pyramide",48.684544,2.491123,,1,,Europe/Paris,,OIF, +OIF:SA:8754017,1,"Gare de Dourdan la Foret",48.535528,1.995899,,1,,Europe/Paris,,OIF, +OIF:SA:8754309,1,"Gare d'Angerville",48.311296,2.003525,,1,,Europe/Paris,,OIF, +OIF:SA:8754318,1,"Boulainvilliers",48.856471,2.275043,,1,,Europe/Paris,,OIF, +OIF:SA:8754320,1,"Avenue du Président Kennedy",48.853224,2.279924,,1,,Europe/Paris,,OIF, +OIF:SA:8754511,1,"Gare de Monnerville",48.347872,2.03153,,1,,Europe/Paris,,OIF, +OIF:SA:8754512,1,"Gare de Guillerval",48.374525,2.059912,,1,,Europe/Paris,,OIF, +OIF:SA:8754513,1,"Gare d'Étampes",48.436608,2.159922,,1,,Europe/Paris,,OIF, +OIF:SA:8754514,1,"Gare d'Etrechy",48.493619,2.194201,,1,,Europe/Paris,,OIF, +OIF:SA:8754515,1,"Gare de Chamarande",48.514714,2.21624,,1,,Europe/Paris,,OIF, +OIF:SA:8754516,1,"Gare de Lardy",48.520706,2.255444,,1,,Europe/Paris,,OIF, +OIF:SA:8754517,1,"Gare de Bouray",48.533283,2.290668,,1,,Europe/Paris,,OIF, +OIF:SA:8754518,1,"Gare de Marolles en Hurepoix",48.565366,2.290629,,1,,Europe/Paris,,OIF, +OIF:SA:8754519,1,"Gare de Brétigny",48.606914,2.301907,,1,,Europe/Paris,,OIF, +OIF:SA:8754520,1,"Gare de Saint-Michel sur Orge",48.635804,2.306789,,1,,Europe/Paris,,OIF, +OIF:SA:8754521,1,"Gare de Sainte-Geneviève des Bois",48.653153,2.313495,,1,,Europe/Paris,,OIF, +OIF:SA:8754522,1,"Gare d'Epinay sur Orge",48.669748,2.332142,,1,,Europe/Paris,,OIF, +OIF:SA:8754523,1,"Gare de Savigny sur Orge",48.675915,2.351292,,1,,Europe/Paris,,OIF, +OIF:SA:8754524,1,"Gare de Juvisy",48.689525,2.383472,,1,,Europe/Paris,,OIF, +OIF:SA:8754525,1,"Gare d'Athis Mons",48.713398,2.403611,,1,,Europe/Paris,,OIF, +OIF:SA:8754526,1,"Gare d'Ablon",48.725154,2.419139,,1,,Europe/Paris,,OIF, +OIF:SA:8754527,1,"Gare de Villeneuve le Roi",48.739848,2.425532,,1,,Europe/Paris,,OIF, +OIF:SA:8754528,1,"Gare de Choisy le Roi",48.764548,2.410485,,1,,Europe/Paris,,OIF, +OIF:SA:8754529,1,"Gare de Vitry sur Seine",48.799284,2.401506,,1,,Europe/Paris,,OIF, +OIF:SA:8754530,1,"Gare d'Ivry sur Seine",48.814361,2.390912,,1,,Europe/Paris,,OIF, +OIF:SA:8754535,1,"Gare de Saint-Martin d'Étampes",48.42785,2.145195,,1,,Europe/Paris,,OIF, +OIF:SA:8754545,1,"Gare de la Norville Saint-Germain les Arpajon",48.591564,2.267266,,1,,Europe/Paris,,OIF, +OIF:SA:8754546,1,"Gare d'Arpajon",48.586159,2.241231,,1,,Europe/Paris,,OIF, +OIF:SA:8754547,1,"Gare d'Égly",48.582503,2.222141,,1,,Europe/Paris,,OIF, +OIF:SA:8754548,1,"Gare de Breuillet Bruyères le Chatel",48.577087,2.191824,,1,,Europe/Paris,,OIF, +OIF:SA:8754549,1,"Gare de Breuillet Village",48.564846,2.171673,,1,,Europe/Paris,,OIF, +OIF:SA:8754550,1,"Gare de Saint-Chéron",48.551196,2.125692,,1,,Europe/Paris,,OIF, +OIF:SA:8754551,1,"Gare de Sermaise",48.535565,2.069302,,1,,Europe/Paris,,OIF, +OIF:SA:8754552,1,"Gare de Dourdan",48.533767,2.008378,,1,,Europe/Paris,,OIF, +OIF:SA:8754565,1,"Gare d'Auneau",48.446565,1.779674,,1,,Europe/Paris,,OIF, +OIF:SA:8754570,1,"Gare de Voves",48.274632,1.621499,,1,,Europe/Paris,,OIF, +OIF:SA:8754573,1,"Gare de Bonneval",48.186437,1.386245,,1,,Europe/Paris,,OIF, +OIF:SA:8754575,1,"Gare de Châteaudun",48.073407,1.338435,,1,,Europe/Paris,,OIF, +OIF:SA:8754619,1,"Gare de Pont de Rungis",48.747556,2.372502,,1,,Europe/Paris,,OIF, +OIF:SA:8754620,1,"Gare d'Orly Ville",48.742383,2.401983,,1,,Europe/Paris,,OIF, +OIF:SA:8754622,1,"Gare des Saules",48.746167,2.417144,,1,,Europe/Paris,,OIF, +OIF:SA:8754629,1,"Gare de Rungis la Fraternelle",48.741099,2.352805,,1,,Europe/Paris,,OIF, +OIF:SA:8754631,1,"Gare de Chemin d'Antony",48.748048,2.312503,,1,,Europe/Paris,,OIF, +OIF:SA:8754700,1,"Gare d'Austerlitz",48.843578,2.364651,,1,,Europe/Paris,,OIF, +OIF:SA:8754730,1,"Musée d'Orsay",48.860751,2.325874,,1,,Europe/Paris,,OIF, +OIF:SA:8754731,1,"Saint-Michel Notre-Dame",48.85333,2.344858,,1,,Europe/Paris,,OIF, +OIF:SA:8756194,1,"Triel",48.981011,2.005643,,1,,Europe/Paris,,OIF, +OIF:SA:8756195,1,"Carrières sous Poissy",48.941647,2.031884,,1,,Europe/Paris,,OIF, +OIF:SA:8760880,1,"Gare de Créteil Pompadour",48.772845,2.435281,,1,,Europe/Paris,,OIF, +OIF:SA:8765479,1,"Gare de Rosa Parks",48.896481,2.372041,,1,,Europe/Paris,,OIF, +OIF:SA:8768100,1,"Gare de Corbeil Essonnes",48.61372,2.472858,,1,,Europe/Paris,,OIF, +OIF:SA:8768115,1,"Gare de Maisons Alfort Alfortville",48.801532,2.42653,,1,,Europe/Paris,,OIF, +OIF:SA:8768124,1,"Gare du Vert de Maisons",48.789506,2.433335,,1,,Europe/Paris,,OIF, +OIF:SA:8768130,1,"Gare de Vigneux sur Seine",48.708412,2.41503,,1,,Europe/Paris,,OIF, +OIF:SA:8768131,1,"Gare de Viry Châtillon",48.67625,2.38577,,1,,Europe/Paris,,OIF, +OIF:SA:8768133,1,"Gare de Ris Orangis",48.658945,2.414688,,1,,Europe/Paris,,OIF, +OIF:SA:8768134,1,"Gare d'Orangis Bois de l'Epine",48.636614,2.407522,,1,,Europe/Paris,,OIF, +OIF:SA:8768135,1,"Gare de Grand Bourg",48.648489,2.435331,,1,,Europe/Paris,,OIF, +OIF:SA:8768136,1,"Gare d'Evry Val de Seine",48.634006,2.452362,,1,,Europe/Paris,,OIF, +OIF:SA:8768137,1,"Gare de Grigny Centre",48.65332,2.395386,,1,,Europe/Paris,,OIF, +OIF:SA:8768138,1,"Gare d'Evry Courcouronnes",48.625586,2.428365,,1,,Europe/Paris,,OIF, +OIF:SA:8768139,1,"Gare du Bras de Fer",48.623658,2.450811,,1,,Europe/Paris,,OIF, +OIF:SA:8768140,1,"Gare de Moulin Galant",48.586785,2.473101,,1,,Europe/Paris,,OIF, +OIF:SA:8768141,1,"Gare de Mennecy",48.571103,2.433037,,1,,Europe/Paris,,OIF, +OIF:SA:8768143,1,"Gare de Ballancourt",48.532036,2.371195,,1,,Europe/Paris,,OIF, +OIF:SA:8768145,1,"Gare de la Ferté Alais",48.48472,2.350933,,1,,Europe/Paris,,OIF, +OIF:SA:8768147,1,"Gare de Boutigny sur Essonne",48.43498,2.376677,,1,,Europe/Paris,,OIF, +OIF:SA:8768148,1,"Gare de Maisse",48.392869,2.393543,,1,,Europe/Paris,,OIF, +OIF:SA:8768151,1,"Gare de Buno Gironville",48.370476,2.387357,,1,,Europe/Paris,,OIF, +OIF:SA:8768160,1,"Gare d'Essonnes Robinson",48.605462,2.4639,,1,,Europe/Paris,,OIF, +OIF:SA:8768161,1,"Gare de Villabé",48.593028,2.460942,,1,,Europe/Paris,,OIF, +OIF:SA:8768162,1,"Gare du Plessis Chenet",48.573808,2.479469,,1,,Europe/Paris,,OIF, +OIF:SA:8768163,1,"Gare de Coudray Montceaux",48.566281,2.49256,,1,,Europe/Paris,,OIF, +OIF:SA:8768180,1,"Gare de Villeneuve Triage",48.74559,2.438113,,1,,Europe/Paris,,OIF, +OIF:SA:8768182,1,"Gare de Villeneuve Saint-Georges",48.730165,2.446832,,1,,Europe/Paris,,OIF, +OIF:SA:8768200,1,"Gare de Melun",48.52712,2.654818,,1,,Europe/Paris,,OIF, +OIF:SA:8768210,1,"Gare de Montgeron Crosne",48.707937,2.462522,,1,,Europe/Paris,,OIF, +OIF:SA:8768211,1,"Gare d'Yerres",48.706912,2.483302,,1,,Europe/Paris,,OIF, +OIF:SA:8768212,1,"Gare de Brunoy",48.699397,2.50586,,1,,Europe/Paris,,OIF, +OIF:SA:8768213,1,"Gare de Boussy Saint-Antoine",48.681198,2.533594,,1,,Europe/Paris,,OIF, +OIF:SA:8768214,1,"Gare de Combs la Ville Quincy",48.667664,2.54812,,1,,Europe/Paris,,OIF, +OIF:SA:8768215,1,"Gare de Lieusaint Moissy",48.628005,2.568752,,1,,Europe/Paris,,OIF, +OIF:SA:8768216,1,"Gare de Cesson",48.564999,2.593887,,1,,Europe/Paris,,OIF, +OIF:SA:8768217,1,"Gare du Mée",48.539978,2.624273,,1,,Europe/Paris,,OIF, +OIF:SA:8768218,1,"Gare de Savigny le Temple Nandy",48.595883,2.584527,,1,,Europe/Paris,,OIF, +OIF:SA:8768220,1,"Gare de Bois le Roi",48.475214,2.692053,,1,,Europe/Paris,,OIF, +OIF:SA:8768221,1,"Gare de Fontainebleau Avon",48.415847,2.726517,,1,,Europe/Paris,,OIF, +OIF:SA:8768225,1,"Gare de Thomery",48.394308,2.764028,,1,,Europe/Paris,,OIF, +OIF:SA:8768227,1,"Gare de Moret Veneux les Sablons",48.378042,2.798717,,1,,Europe/Paris,,OIF, +OIF:SA:8768229,1,"Gare de Saint-Mammès",48.382358,2.815957,,1,,Europe/Paris,,OIF, +OIF:SA:8768230,1,"Gare de Montereau",48.379955,2.943465,,1,,Europe/Paris,,OIF, +OIF:SA:8768240,1,"Gare de Livry sur Seine",48.510301,2.679295,,1,,Europe/Paris,,OIF, +OIF:SA:8768241,1,"Gare de Chartrettes",48.48703,2.695842,,1,,Europe/Paris,,OIF, +OIF:SA:8768242,1,"Gare de Fontaine le Port",48.48709,2.751198,,1,,Europe/Paris,,OIF, +OIF:SA:8768243,1,"Gare de Héricy",48.443336,2.759856,,1,,Europe/Paris,,OIF, +OIF:SA:8768244,1,"Gare de Vulaines sur Seine Samoreau",48.430971,2.753178,,1,,Europe/Paris,,OIF, +OIF:SA:8768245,1,"Gare de Champagne sur Seine",48.406446,2.799198,,1,,Europe/Paris,,OIF, +OIF:SA:8768246,1,"Gare de Vernou sur Seine",48.386515,2.842008,,1,,Europe/Paris,,OIF, +OIF:SA:8768247,1,"Gare de la Grande Paroisse",48.378991,2.897091,,1,,Europe/Paris,,OIF, +OIF:SA:8768250,1,"Gare de Vosves",48.515151,2.599304,,1,,Europe/Paris,,OIF, +OIF:SA:8768251,1,"Gare de Boissise le Roi",48.529355,2.572534,,1,,Europe/Paris,,OIF, +OIF:SA:8768252,1,"Gare de Ponthierry Pringy",48.534934,2.544386,,1,,Europe/Paris,,OIF, +OIF:SA:8768254,1,"Gare de Saint-Fargeau",48.564568,2.542556,,1,,Europe/Paris,,OIF, +OIF:SA:8768300,1,"Gare de Sens",48.198417,3.26732,,1,,Europe/Paris,,OIF, +OIF:SA:8768310,1,"Gare de Villeneuve la Guyard",48.343269,3.069688,,1,,Europe/Paris,,OIF, +OIF:SA:8768312,1,"Gare de Champigny sur Yonne",48.324052,3.13114,,1,,Europe/Paris,,OIF, +OIF:SA:8768313,1,"Gare de Pont sur Yonne",48.286391,3.201894,,1,,Europe/Paris,,OIF, +OIF:SA:8768320,1,"Gare d'Etigny Véron",48.137611,3.289742,,1,,Europe/Paris,,OIF, +OIF:SA:8768321,1,"Gare de Villeneuve sur Yonne",48.085184,3.286257,,1,,Europe/Paris,,OIF, +OIF:SA:8768322,1,"Gare de Saint-Julien du Sault",48.026687,3.302565,,1,,Europe/Paris,,OIF, +OIF:SA:8768324,1,"Gare de Joigny",47.97343,3.392865,,1,,Europe/Paris,,OIF, +OIF:SA:8768326,1,"Gare de Laroche Migennes",47.961118,3.514336,,1,,Europe/Paris,,OIF, +OIF:SA:8768400,1,"Gare de Montargis",48.007032,2.743038,,1,,Europe/Paris,,OIF, +OIF:SA:8768410,1,"Gare de Montigny sur Loing",48.336312,2.738544,,1,,Europe/Paris,,OIF, +OIF:SA:8768411,1,"Gare de Bourron Marlotte Grez",48.332889,2.692429,,1,,Europe/Paris,,OIF, +OIF:SA:8768412,1,"Gare de Nemours Saint-Pierre",48.267741,2.685984,,1,,Europe/Paris,,OIF, +OIF:SA:8768419,1,"Gare de Bagneaux sur Loing",48.230053,2.703526,,1,,Europe/Paris,,OIF, +OIF:SA:8768421,1,"Gare de Souppes",48.181604,2.735577,,1,,Europe/Paris,,OIF, +OIF:SA:8768423,1,"Gare de Dordives",48.147218,2.762728,,1,,Europe/Paris,,OIF, +OIF:SA:8768424,1,"Gare de Ferrières Fontenay",48.100858,2.773714,,1,,Europe/Paris,,OIF, +OIF:SA:8768440,1,"Gare de Boigneville",48.342608,2.378621,,1,,Europe/Paris,,OIF, +OIF:SA:8768441,1,"Gare de Malesherbes",48.294597,2.400663,,1,,Europe/Paris,,OIF, +OIF:SA:8768600,1,"Gare de Lyon",48.84476,2.372982,,1,,Europe/Paris,,OIF, +OIF:SA:8768666,1,"Gare de Bercy",48.839081,2.383028,,1,,Europe/Paris,,OIF, +OIF:SA:8769733,1,"Stains la Cerisaie",48.955059,2.392656,,1,,Europe/Paris,,OIF, +OIF:SA:8769734,1,"Dugny - la Courneuve",48.94377,2.412086,,1,,Europe/Paris,,OIF, +OIF:SA:8773006,1,"Gare de Val d'Europe",48.855179,2.773684,,1,,Europe/Paris,,OIF, +OIF:SA:8775498,1,"Gare de Bussy Saint-Georges",48.836534,2.70902,,1,,Europe/Paris,,OIF, +OIF:SA:8775499,1,"Gare de Marne la Vallée Chessy",48.870898,2.78371,,1,,Europe/Paris,,OIF, +OIF:SA:8775800,1,"Charles de Gaulle Etoile",48.873965,2.295354,,1,,Europe/Paris,,OIF, +OIF:SA:8775802,1,"Gare de Nanterre Préfecture",48.896092,2.222251,,1,,Europe/Paris,,OIF, +OIF:SA:8775804,1,"Gare de Nanterre Ville",48.895148,2.194904,,1,,Europe/Paris,,OIF, +OIF:SA:8775805,1,"Gare de Rueil Malmaison",48.887212,2.17221,,1,,Europe/Paris,,OIF, +OIF:SA:8775806,1,"Gare de Chatou Croissy",48.885284,2.155378,,1,,Europe/Paris,,OIF, +OIF:SA:8775807,1,"Gare du Vésinet Centre",48.890002,2.134503,,1,,Europe/Paris,,OIF, +OIF:SA:8775808,1,"Gare du Vésinet le Pecq",48.897521,2.121728,,1,,Europe/Paris,,OIF, +OIF:SA:8775809,1,"Gare de Saint-Germain en Laye",48.898298,2.095044,,1,,Europe/Paris,,OIF, +OIF:SA:8775810,1,"Nation",48.848487,2.396492,,1,,Europe/Paris,,OIF, +OIF:SA:8775811,1,"Gare de Vincennes",48.847518,2.433204,,1,,Europe/Paris,,OIF, +OIF:SA:8775812,1,"Gare de Fontenay sous Bois",48.843851,2.46406,,1,,Europe/Paris,,OIF, +OIF:SA:8775813,1,"Gare de Nogent sur Marne",48.835293,2.471691,,1,,Europe/Paris,,OIF, +OIF:SA:8775814,1,"Gare de Joinville le Pont",48.820823,2.464195,,1,,Europe/Paris,,OIF, +OIF:SA:8775815,1,"Gare de Saint-Maur Créteil",48.806517,2.472389,,1,,Europe/Paris,,OIF, +OIF:SA:8775816,1,"Gare du Parc de Saint-Maur",48.804776,2.48608,,1,,Europe/Paris,,OIF, +OIF:SA:8775817,1,"Gare de Champigny",48.807135,2.510277,,1,,Europe/Paris,,OIF, +OIF:SA:8775818,1,"Gare de la Varenne Chennevières",48.794627,2.513868,,1,,Europe/Paris,,OIF, +OIF:SA:8775819,1,"Gare de Sucy Bonneuil",48.77146,2.507341,,1,,Europe/Paris,,OIF, +OIF:SA:8775820,1,"Gare de Boissy Saint-Léger",48.753539,2.505652,,1,,Europe/Paris,,OIF, +OIF:SA:8775831,1,"Gare de Neuilly Plaisance",48.853294,2.513843,,1,,Europe/Paris,,OIF, +OIF:SA:8775832,1,"Gare de Bry sur Marne",48.844604,2.526664,,1,,Europe/Paris,,OIF, +OIF:SA:8775833,1,"Gare de Noisy le Grand Mont d'Est",48.840838,2.552423,,1,,Europe/Paris,,OIF, +OIF:SA:8775834,1,"Gare de Noisy Champs",48.842981,2.58135,,1,,Europe/Paris,,OIF, +OIF:SA:8775835,1,"Gare de Noisiel",48.843652,2.615951,,1,,Europe/Paris,,OIF, +OIF:SA:8775836,1,"Gare de Lognes",48.839176,2.633452,,1,,Europe/Paris,,OIF, +OIF:SA:8775837,1,"Gare de Torcy",48.838983,2.654701,,1,,Europe/Paris,,OIF, +OIF:SA:8775859,1,"Auber",48.872253,2.330174,,1,,Europe/Paris,,OIF, +OIF:SA:8775860,1,"Châtelet les Halles",48.861134,2.34738,,1,,Europe/Paris,,OIF, +OIF:SA:8775861,1,"Luxembourg",48.846631,2.340426,,1,,Europe/Paris,,OIF, +OIF:SA:8775862,1,"Port Royal",48.839813,2.337411,,1,,Europe/Paris,,OIF, +OIF:SA:8775863,1,"Denfert Rochereau",48.834109,2.332613,,1,,Europe/Paris,,OIF, +OIF:SA:8775864,1,"Cité Universitaire",48.82109,2.338978,,1,,Europe/Paris,,OIF, +OIF:SA:8775865,1,"Gare de Gentilly",48.815438,2.340984,,1,,Europe/Paris,,OIF, +OIF:SA:8775866,1,"Gare de Laplace",48.808071,2.334528,,1,,Europe/Paris,,OIF, +OIF:SA:8775867,1,"Gare d'Arcueil Cachan",48.798585,2.328521,,1,,Europe/Paris,,OIF, +OIF:SA:8775868,1,"Gare de Bagneux",48.793342,2.321196,,1,,Europe/Paris,,OIF, +OIF:SA:8775869,1,"Gare de Bourg la Reine",48.780065,2.312927,,1,,Europe/Paris,,OIF, +OIF:SA:8775870,1,"Gare de Sceaux",48.781357,2.297648,,1,,Europe/Paris,,OIF, +OIF:SA:8775871,1,"Gare de Fontenay aux Roses",48.787882,2.293115,,1,,Europe/Paris,,OIF, +OIF:SA:8775872,1,"Gare de Robinson",48.779808,2.281528,,1,,Europe/Paris,,OIF, +OIF:SA:8775873,1,"Gare de Parc de Sceaux",48.769694,2.311244,,1,,Europe/Paris,,OIF, +OIF:SA:8775874,1,"Gare de la Croix de Berny Fresnes",48.762353,2.303903,,1,,Europe/Paris,,OIF, +OIF:SA:8775875,1,"Gare d'Antony",48.755212,2.301246,,1,,Europe/Paris,,OIF, +OIF:SA:8775876,1,"Gare de Fontaine Michalon",48.743004,2.296685,,1,,Europe/Paris,,OIF, +OIF:SA:8775877,1,"Gare des Baconnets",48.739468,2.288345,,1,,Europe/Paris,,OIF, +OIF:SA:8775880,1,"Gare de Palaiseau",48.717413,2.24829,,1,,Europe/Paris,,OIF, +OIF:SA:8775881,1,"Gare de Palaiseau Villebon",48.707125,2.237934,,1,,Europe/Paris,,OIF, +OIF:SA:8775882,1,"Gare de Lozère",48.705901,2.211915,,1,,Europe/Paris,,OIF, +OIF:SA:8775883,1,"Gare du Guichet",48.706327,2.191541,,1,,Europe/Paris,,OIF, +OIF:SA:8775884,1,"Gare d'Orsay Ville",48.69762,2.18207,,1,,Europe/Paris,,OIF, +OIF:SA:8775885,1,"Gare de Bures sur Yvette",48.69713,2.163624,,1,,Europe/Paris,,OIF, +OIF:SA:8775886,1,"Gare de la Hacquinière",48.695264,2.151642,,1,,Europe/Paris,,OIF, +OIF:SA:8775887,1,"Gare de Gif sur Yvette",48.697906,2.136919,,1,,Europe/Paris,,OIF, +OIF:SA:8775888,1,"Gare de Courcelle sur Yvette",48.700318,2.0987,,1,,Europe/Paris,,OIF, +OIF:SA:8775889,1,"Gare de Saint-Rémy-lès-Chevreuse",48.703004,2.070212,,1,,Europe/Paris,,OIF, +OIF:SA:8797690,1,"Rond-Point Wittlich",48.694944,2.501885,,1,,Europe/Paris,,OIF, +OIF:SA:8797735,1,"Lycée Tarterêts",48.615189,2.457644,,1,,Europe/Paris,,OIF, +OIF:SA:8797794,1,"Évry Pyramides",48.634364,2.42533,,1,,Europe/Paris,,OIF, +OIF:SA:8798180,1,"Zone de Frêt",48.998728,2.525763,,1,,Europe/Paris,,OIF, +OIF:SA:8798192,1,"Centre",48.929405,2.479873,,1,,Europe/Paris,,OIF, +OIF:SA:8798207,1,"Espace V",48.960105,2.55314,,1,,Europe/Paris,,OIF, +OIF:SA:8798211,1,"Foyer des Bruyères",48.981548,2.555735,,1,,Europe/Paris,,OIF, +OIF:SA:8798212,1,"Marguilliers",48.994647,2.523715,,1,,Europe/Paris,,OIF, +OIF:SA:8798223,1,"Porte d'Asnières",48.890543,2.302799,,1,,Europe/Paris,,OIF, +OIF:SA:8798250,1,"Grésillons / Félix Eboue",48.917904,2.309033,,1,,Europe/Paris,,OIF, +OIF:SA:8798289,1,"Croix Rouge",48.980151,2.235029,,1,,Europe/Paris,,OIF, +OIF:SA:8798315,1,"Daumesnil",48.651404,2.4144,,1,,Europe/Paris,,OIF, +OIF:SA:8798326,1,"Jean Pierre Timbaud",48.786617,2.407127,,1,,Europe/Paris,,OIF, +OIF:SA:8798336,1,"Place Gounot",48.73715,2.411291,,1,,Europe/Paris,,OIF, +OIF:SA:8798410,1,"Blazy",48.684232,2.375659,,1,,Europe/Paris,,OIF, +OIF:SA:8798416,1,"Jean Jaurès",48.651312,2.40252,,1,,Europe/Paris,,OIF, +OIF:SA:8798436,1,"Ambroise Croizat",48.606331,2.466168,,1,,Europe/Paris,,OIF, +OIF:SA:8798442,1,"Stade",48.690813,2.525527,,1,,Europe/Paris,,OIF, +OIF:SA:8798459,1,"La Faisanderie",48.98269,1.969473,,1,,Europe/Paris,,OIF, +OIF:SA:8798466,1,"Parc du Tremblay",48.826637,2.494709,,1,,Europe/Paris,,OIF, +OIF:SA:8798490,1,"Georges Demésy",48.822839,2.550168,,1,,Europe/Paris,,OIF, +OIF:SA:8798496,1,"Avenue de Gaumont",48.826813,2.549458,,1,,Europe/Paris,,OIF, +OIF:SA:8798553,1,"Collège Jean Monnet",48.842918,2.646784,,1,,Europe/Paris,,OIF, +OIF:SA:8798561,1,"Collège du Segrais",48.834998,2.653009,,1,,Europe/Paris,,OIF, +OIF:SA:8798650,1,"Ministère des Finances / Popb",48.840698,2.378611,,1,,Europe/Paris,,OIF, +OIF:SA:8798654,1,"Drancy Centre",48.919981,2.451605,,1,,Europe/Paris,,OIF, +OIF:SA:8798655,1,"Martin Luther King",48.948298,2.531831,,1,,Europe/Paris,,OIF, +OIF:SA:8798656,1,"Le Clos Montceleux",48.954368,2.535446,,1,,Europe/Paris,,OIF, +OIF:SA:8798657,1,"Le Cygne d'Enghien",48.961502,2.294703,,1,,Europe/Paris,,OIF, +OIF:SA:8798666,1,"Masséna",48.823092,2.377644,,1,,Europe/Paris,,OIF, +OIF:SA:8798690,1,"Terroirs de France Cinecite",48.832776,2.389973,,1,,Europe/Paris,,OIF, +OIF:SA:8798691,1,"Fourchette de Bry",48.827146,2.508178,,1,,Europe/Paris,,OIF, +OIF:SA:8798692,1,"Beauséjour",48.827121,2.533583,,1,,Europe/Paris,,OIF, +OIF:SA:8798693,1,"Friedberg",48.829996,2.539269,,1,,Europe/Paris,,OIF, +OIF:SA:8798700,1,"Carrefour du 18 Juin 40",48.954147,2.30769,,1,,Europe/Paris,,OIF, +OIF:SA:8798717,1,"Cours des Lacs",48.841679,2.631124,,1,,Europe/Paris,,OIF, +OIF:SA:8798751,1,"Les Sablons",48.976809,1.915012,,1,,Europe/Paris,,OIF, +OIF:SA:8798870,1,"Remise à Jorelle",48.893329,2.487754,,1,,Europe/Paris,,OIF, +OIF:SA:8798871,1,"Lycée Henry Sellier",48.916466,2.515033,,1,,Europe/Paris,,OIF, +OIF:SA:8799063,1,"La Justice",48.563341,2.495933,,1,,Europe/Paris,,OIF, +OIF:SA:8799147,1,"Église",48.706981,2.455497,,1,,Europe/Paris,,OIF, +OIF:SA:8799149,1,"Église",48.686863,2.408955,,1,,Europe/Paris,,OIF, +OIF:SA:8799150,1,"Patte d'Oie",48.70323,2.430021,,1,,Europe/Paris,,OIF, +OIF:SA:8799456,1,"Rue des Vignes",49.004679,2.548339,,1,,Europe/Paris,,OIF, +OIF:SA:8799608,1,"Épinay sous Sénart",48.697852,2.519728,,1,,Europe/Paris,,OIF, +OIF:SA:8799705,1,"Quincy sous Sénart",48.671744,2.539003,,1,,Europe/Paris,,OIF, +OIF:SA:87:10,1,"La Chapelle",49.183905,1.732688,,1,,Europe/Paris,,OIF, +OIF:SA:87:100,1,"Villeneuve",49.082977,1.735818,,1,,Europe/Paris,,OIF, +OIF:SA:87:101,1,"Route de Drocourt",49.079944,1.740272,,1,,Europe/Paris,,OIF, +OIF:SA:87:102,1,"Le Tremblay",49.078288,1.745202,,1,,Europe/Paris,,OIF, +OIF:SA:87:103,1,"Cadenas",49.070524,1.768296,,1,,Europe/Paris,,OIF, +OIF:SA:87:104,1,"Centre Hospitalier",49.079456,1.759976,,1,,Europe/Paris,,OIF, +OIF:SA:87:105,1,"Centre",49.07293,1.772687,,1,,Europe/Paris,,OIF, +OIF:SA:87:107,1,"Abribus",49.056594,1.767109,,1,,Europe/Paris,,OIF, +OIF:SA:87:108,1,"Chaudry",49.074201,1.718016,,1,,Europe/Paris,,OIF, +OIF:SA:87:109,1,"Mairie",49.066444,1.717733,,1,,Europe/Paris,,OIF, +OIF:SA:87:11,1,"Parc",49.170661,1.763847,,1,,Europe/Paris,,OIF, +OIF:SA:87:113,1,"Mairie",49.039923,1.689175,,1,,Europe/Paris,,OIF, +OIF:SA:87:114,1,"Route de Vétheuil",49.059591,1.700333,,1,,Europe/Paris,,OIF, +OIF:SA:87:115,1,"Mairie de Vétheuil",49.062959,1.701631,,1,,Europe/Paris,,OIF, +OIF:SA:87:116,1,"Lapin Savant",49.075806,1.681892,,1,,Europe/Paris,,OIF, +OIF:SA:87:117,1,"Chantemesle",49.079041,1.673062,,1,,Europe/Paris,,OIF, +OIF:SA:87:118,1,"Mairie",49.083146,1.658344,,1,,Europe/Paris,,OIF, +OIF:SA:87:119,1,"Haute Isle / les Roches Blanches",49.08419,1.644417,,1,,Europe/Paris,,OIF, +OIF:SA:87:12,1,"Mairie",49.168505,1.769517,,1,,Europe/Paris,,OIF, +OIF:SA:87:120,1,"Igesa",49.082664,1.633275,,1,,Europe/Paris,,OIF, +OIF:SA:87:121,1,"Mairie",49.081226,1.630072,,1,,Europe/Paris,,OIF, +OIF:SA:87:122,1,"Route de Gasny",49.079722,1.622822,,1,,Europe/Paris,,OIF, +OIF:SA:87:123,1,"Église",49.087858,1.674865,,1,,Europe/Paris,,OIF, +OIF:SA:87:124,1,"Foyer Rural",49.088889,1.676117,,1,,Europe/Paris,,OIF, +OIF:SA:87:125,1,"Salle des Fêtes",49.12273,1.691004,,1,,Europe/Paris,,OIF, +OIF:SA:87:127,1,"La Bucaille",49.07291,1.772167,,1,,Europe/Paris,,OIF, +OIF:SA:87:128,1,"Rue de l'Orme",49.063855,1.704533,,1,,Europe/Paris,,OIF, +OIF:SA:87:129,1,"Les Millonets",49.06371,1.715454,,1,,Europe/Paris,,OIF, +OIF:SA:87:13,1,"Petit",49.163858,1.779748,,1,,Europe/Paris,,OIF, +OIF:SA:87:131,1,"Ferme de Brunel",49.066225,1.759249,,1,,Europe/Paris,,OIF, +OIF:SA:87:132,1,"Wenings",49.158478,1.853582,,1,,Europe/Paris,,OIF, +OIF:SA:87:133,1,"Église",49.151511,1.886556,,1,,Europe/Paris,,OIF, +OIF:SA:87:137,1,"Champmorin",49.104463,1.961638,,1,,Europe/Paris,,OIF, +OIF:SA:87:139,1,"Rives de la Viosne",49.093144,1.97896,,1,,Europe/Paris,,OIF, +OIF:SA:87:14,1,"Stoc",49.157733,1.783185,,1,,Europe/Paris,,OIF, +OIF:SA:87:140,1,"Les Côteaux",49.087821,1.989676,,1,,Europe/Paris,,OIF, +OIF:SA:87:141,1,"Montgeroult",49.081008,2.005186,,1,,Europe/Paris,,OIF, +OIF:SA:87:143,1,"Puiseux",49.0548,2.017974,,1,,Europe/Paris,,OIF, +OIF:SA:87:145,1,"Le Haut - les Explorateurs",49.052543,2.009252,,1,,Europe/Paris,,OIF, +OIF:SA:87:15,1,"Place d'Armes",49.154358,1.786851,,1,,Europe/Paris,,OIF, +OIF:SA:87:157,1,"Gare",49.158933,1.794201,,1,,Europe/Paris,,OIF, +OIF:SA:87:158,1,"Blamécourt",49.160913,1.802866,,1,,Europe/Paris,,OIF, +OIF:SA:87:159,1,"Les 3 Tilleuls",49.064794,1.704583,,1,,Europe/Paris,,OIF, +OIF:SA:87:16,1,"Gare Routière",49.154911,1.790339,,1,,Europe/Paris,,OIF, +OIF:SA:87:160,1,"Roconval",49.095128,1.627905,,1,,Europe/Paris,,OIF, +OIF:SA:87:161,1,"Le Maréchal Gardé",49.101502,1.633059,,1,,Europe/Paris,,OIF, +OIF:SA:87:162,1,"Église / Mairie",49.106235,1.641754,,1,,Europe/Paris,,OIF, +OIF:SA:87:163,1,"École",49.150572,1.69684,,1,,Europe/Paris,,OIF, +OIF:SA:87:164,1,"Toussaint",49.153551,1.705433,,1,,Europe/Paris,,OIF, +OIF:SA:87:165,1,"Le Mesnil",49.159149,1.709625,,1,,Europe/Paris,,OIF, +OIF:SA:87:166,1,"Breuil",49.216438,1.723343,,1,,Europe/Paris,,OIF, +OIF:SA:87:167,1,"Salle des Fêtes",49.183041,1.732431,,1,,Europe/Paris,,OIF, +OIF:SA:87:169,1,"La Goulée",49.073542,1.70451,,1,,Europe/Paris,,OIF, +OIF:SA:87:17,1,"Eugène Blouin",49.153897,1.793267,,1,,Europe/Paris,,OIF, +OIF:SA:87:170,1,"Ducourt",49.168262,1.736331,,1,,Europe/Paris,,OIF, +OIF:SA:87:171,1,"Le Vaumion",49.161025,1.707616,,1,,Europe/Paris,,OIF, +OIF:SA:87:174,1,"Église",49.121696,1.692591,,1,,Europe/Paris,,OIF, +OIF:SA:87:175,1,"Mairie",49.140175,1.720648,,1,,Europe/Paris,,OIF, +OIF:SA:87:176,1,"Route Blanche",49.145844,1.767725,,1,,Europe/Paris,,OIF, +OIF:SA:87:177,1,"Demi Lune",49.14759,1.786485,,1,,Europe/Paris,,OIF, +OIF:SA:87:18,1,"Paul Cézanne",49.151819,1.802577,,1,,Europe/Paris,,OIF, +OIF:SA:87:180,1,"Le Mesnil",49.159274,1.709514,,1,,Europe/Paris,,OIF, +OIF:SA:87:189,1,"Place",49.089904,1.725818,,1,,Europe/Paris,,OIF, +OIF:SA:87:19,1,"Dame Noire",49.151671,1.805784,,1,,Europe/Paris,,OIF, +OIF:SA:87:190,1,"Haute Souris",49.102202,1.7156,,1,,Europe/Paris,,OIF, +OIF:SA:87:191,1,"Villarceaux",49.115406,1.711184,,1,,Europe/Paris,,OIF, +OIF:SA:87:192,1,"Vélannes",49.161181,1.818935,,1,,Europe/Paris,,OIF, +OIF:SA:87:193,1,"Rue des Grès",49.149378,1.80941,,1,,Europe/Paris,,OIF, +OIF:SA:87:194,1,"Bois Pierre",49.150517,1.811083,,1,,Europe/Paris,,OIF, +OIF:SA:87:199,1,"Hazeville",49.081397,1.814605,,1,,Europe/Paris,,OIF, +OIF:SA:87:2,1,"Bray et Lû - Place du 19 Mai 1962",49.137979,1.653761,,1,,Europe/Paris,,OIF, +OIF:SA:87:20,1,"Cléry",49.130649,1.840232,,1,,Europe/Paris,,OIF, +OIF:SA:87:200,1,"Enfer / Centre",49.087009,1.808529,,1,,Europe/Paris,,OIF, +OIF:SA:87:201,1,"Centre",49.095165,1.789959,,1,,Europe/Paris,,OIF, +OIF:SA:87:202,1,"Mairie",49.099941,1.776333,,1,,Europe/Paris,,OIF, +OIF:SA:87:203,1,"Église",49.124825,1.751724,,1,,Europe/Paris,,OIF, +OIF:SA:87:204,1,"École",49.127969,1.755812,,1,,Europe/Paris,,OIF, +OIF:SA:87:205,1,"Orée du Bois",49.141633,1.766375,,1,,Europe/Paris,,OIF, +OIF:SA:87:206,1,"Mézières",49.129663,1.789292,,1,,Europe/Paris,,OIF, +OIF:SA:87:207,1,"La Feuge",49.089238,1.791554,,1,,Europe/Paris,,OIF, +OIF:SA:87:209,1,"Mairie",49.135312,1.789663,,1,,Europe/Paris,,OIF, +OIF:SA:87:21,1,"Bord'Haut",49.082886,1.930892,,1,,Europe/Paris,,OIF, +OIF:SA:87:213,1,"Église",49.099657,1.775187,,1,,Europe/Paris,,OIF, +OIF:SA:87:223,1,"Rue Henri IV",49.102198,1.833185,,1,,Europe/Paris,,OIF, +OIF:SA:87:225,1,"Lavoir",49.107687,1.849001,,1,,Europe/Paris,,OIF, +OIF:SA:87:226,1,"Tavernes",49.12807,1.845618,,1,,Europe/Paris,,OIF, +OIF:SA:87:228,1,"Calvaire",49.137344,1.790771,,1,,Europe/Paris,,OIF, +OIF:SA:87:230,1,"Église",49.128324,1.839693,,1,,Europe/Paris,,OIF, +OIF:SA:87:240,1,"Grande Rue",49.153039,1.885175,,1,,Europe/Paris,,OIF, +OIF:SA:87:241,1,"Centre Ville",49.160462,1.934576,,1,,Europe/Paris,,OIF, +OIF:SA:87:243,1,"Serans",49.185756,1.835781,,1,,Europe/Paris,,OIF, +OIF:SA:87:244,1,"Hadancourt",49.186756,1.854016,,1,,Europe/Paris,,OIF, +OIF:SA:87:245,1,"Lierville",49.19038,1.881112,,1,,Europe/Paris,,OIF, +OIF:SA:87:246,1,"Hardeville",49.16138,1.857549,,1,,Europe/Paris,,OIF, +OIF:SA:87:247,1,"Rue du Bois de Chars",49.162704,1.858742,,1,,Europe/Paris,,OIF, +OIF:SA:87:25,1,"Les Marjoberts",49.041482,2.073286,,1,,Europe/Paris,,OIF, +OIF:SA:87:250,1,"Bouconvillers",49.176013,1.902831,,1,,Europe/Paris,,OIF, +OIF:SA:87:251,1,"Bercagny",49.145646,1.901354,,1,,Europe/Paris,,OIF, +OIF:SA:87:255,1,"Métairie",49.149003,1.968642,,1,,Europe/Paris,,OIF, +OIF:SA:87:256,1,"Zone Artisanale",49.145741,1.968521,,1,,Europe/Paris,,OIF, +OIF:SA:87:257,1,"Hôpital Marine",49.146322,1.974674,,1,,Europe/Paris,,OIF, +OIF:SA:87:258,1,"Gendarmerie",49.14563,1.977809,,1,,Europe/Paris,,OIF, +OIF:SA:87:259,1,"Collège les Hautiers",49.148928,1.985374,,1,,Europe/Paris,,OIF, +OIF:SA:87:260,1,"Institut Marie Thérèse",49.15578,1.784507,,1,,Europe/Paris,,OIF, +OIF:SA:87:261,1,"École",49.153864,1.884503,,1,,Europe/Paris,,OIF, +OIF:SA:87:27,1,"Rue du Premier Dragon",49.042422,2.090402,,1,,Europe/Paris,,OIF, +OIF:SA:87:272,1,"Collège",49.141458,1.665247,,1,,Europe/Paris,,OIF, +OIF:SA:87:273,1,"Cul Froid",49.107452,1.702247,,1,,Europe/Paris,,OIF, +OIF:SA:87:274,1,"Buchet",49.197472,1.711627,,1,,Europe/Paris,,OIF, +OIF:SA:87:276,1,"Place Marchand",49.207909,1.681446,,1,,Europe/Paris,,OIF, +OIF:SA:87:277,1,"Clos Minet",49.193467,1.69159,,1,,Europe/Paris,,OIF, +OIF:SA:87:278,1,"Ansicourt",49.178306,1.684434,,1,,Europe/Paris,,OIF, +OIF:SA:87:284,1,"Lycée Galilée",49.044622,2.03144,,1,,Europe/Paris,,OIF, +OIF:SA:87:286,1,"Copierres",49.166516,1.676083,,1,,Europe/Paris,,OIF, +OIF:SA:87:287,1,"Etrez",49.163337,1.783508,,1,,Europe/Paris,,OIF, +OIF:SA:87:288,1,"LEP",49.021746,2.109213,,1,,Europe/Paris,,OIF, +OIF:SA:87:291,1,"Lycée Paul Émile Victor",49.072546,2.071007,,1,,Europe/Paris,,OIF, +OIF:SA:87:293,1,"Les Valanchards",49.020784,2.021757,,1,,Europe/Paris,,OIF, +OIF:SA:87:294,1,"Lycée les Merisiers",49.009427,2.025883,,1,,Europe/Paris,,OIF, +OIF:SA:87:295,1,"Archemont",49.158574,1.759598,,1,,Europe/Paris,,OIF, +OIF:SA:87:296,1,"ZA",49.153991,1.855049,,1,,Europe/Paris,,OIF, +OIF:SA:87:3,1,"Salle des Fêtes",49.139352,1.661439,,1,,Europe/Paris,,OIF, +OIF:SA:87:304,1,"Clery Route de Nucourt",49.130694,1.840095,,1,,Europe/Paris,,OIF, +OIF:SA:87:33,1,"Moulin",49.158596,1.793054,,1,,Europe/Paris,,OIF, +OIF:SA:87:4,1,"Pont Rû",49.143808,1.670914,,1,,Europe/Paris,,OIF, +OIF:SA:87:50,1,"Buhy Buchet / RN14",49.195656,1.704471,,1,,Europe/Paris,,OIF, +OIF:SA:87:51,1,"Église",49.206853,1.679821,,1,,Europe/Paris,,OIF, +OIF:SA:87:52,1,"Bois Saint-Clair",49.200757,1.677383,,1,,Europe/Paris,,OIF, +OIF:SA:87:6,1,"École",49.175859,1.677318,,1,,Europe/Paris,,OIF, +OIF:SA:87:69,1,"Place",49.060737,1.741472,,1,,Europe/Paris,,OIF, +OIF:SA:87:74,1,"Saint-Léger",49.085761,1.730129,,1,,Europe/Paris,,OIF, +OIF:SA:87:75,1,"Mairie",49.087694,1.725194,,1,,Europe/Paris,,OIF, +OIF:SA:87:87,1,"Saint-Maclou",48.990923,1.718726,,1,,Europe/Paris,,OIF, +OIF:SA:88:1252,1,"Rue de la Fossette",49.012592,2.585616,,1,,Europe/Paris,,OIF, +OIF:SA:88:199,1,"Collège de l'Europe",49.063954,2.681172,,1,,Europe/Paris,,OIF, +OIF:SA:88:204,1,"Route d'Ève",49.060696,2.685847,,1,,Europe/Paris,,OIF, +OIF:SA:88:207,1,"Place Jean-Baptiste Delambre",49.054143,2.680259,,1,,Europe/Paris,,OIF, +OIF:SA:88:227,1,"Belle Etoile",49.046352,2.664568,,1,,Europe/Paris,,OIF, +OIF:SA:88:236,1,"Église",49.017414,2.593694,,1,,Europe/Paris,,OIF, +OIF:SA:88:301,1,"L'Enfant",48.982979,2.611559,,1,,Europe/Paris,,OIF, +OIF:SA:88:374,1,"Église",49.070265,2.818077,,1,,Europe/Paris,,OIF, +OIF:SA:88:381,1,"Beaupré",49.081583,2.668827,,1,,Europe/Paris,,OIF, +OIF:SA:88:449,1,"Église",49.036492,2.691889,,1,,Europe/Paris,,OIF, +OIF:SA:88:457,1,"Centre Commercial",49.07514,2.788037,,1,,Europe/Paris,,OIF, +OIF:SA:88:459,1,"Les Écoles",49.073059,2.792964,,1,,Europe/Paris,,OIF, +OIF:SA:88:474,1,"Rue de l'Yonne",49.068127,2.804415,,1,,Europe/Paris,,OIF, +OIF:SA:88:477,1,"Ferme de l'Etrille",49.0377,2.80198,,1,,Europe/Paris,,OIF, +OIF:SA:88:521,1,"Les Cottages",48.966274,2.568708,,1,,Europe/Paris,,OIF, +OIF:SA:88:539,1,"Place Jean Jaurès",48.951596,2.583202,,1,,Europe/Paris,,OIF, +OIF:SA:88:541,1,"Jeune Fille",48.993986,2.526592,,1,,Europe/Paris,,OIF, +OIF:SA:88:545,1,"Lycée Professionnel Hélène Boucher",48.950459,2.579089,,1,,Europe/Paris,,OIF, +OIF:SA:88:597,1,"Rue des Rossignols",48.991178,2.526739,,1,,Europe/Paris,,OIF, +OIF:SA:88:649,1,"Laroche",48.950379,2.609694,,1,,Europe/Paris,,OIF, +OIF:SA:88:7,1,"Avenue de Savigny",48.944879,2.51751,,1,,Europe/Paris,,OIF, +OIF:SA:88:763,1,"Mairie Annexe",48.979956,2.423927,,1,,Europe/Paris,,OIF, +OIF:SA:88:765,1,"Rond-Point du Christ",48.975935,2.422084,,1,,Europe/Paris,,OIF, +OIF:SA:88:769,1,"Avenue du Large",49.099194,2.509484,,1,,Europe/Paris,,OIF, +OIF:SA:88:771,1,"Beaumont",49.102246,2.514694,,1,,Europe/Paris,,OIF, +OIF:SA:88:773,1,"Bellevue",49.094644,2.499206,,1,,Europe/Paris,,OIF, +OIF:SA:88:775,1,"Centre Commercial / Mairie",49.100115,2.515898,,1,,Europe/Paris,,OIF, +OIF:SA:88:777,1,"Gendarmerie",49.099031,2.513349,,1,,Europe/Paris,,OIF, +OIF:SA:88:779,1,"Haute Grève",49.096421,2.50355,,1,,Europe/Paris,,OIF, +OIF:SA:88:781,1,"Poteau de Marly",49.094202,2.502589,,1,,Europe/Paris,,OIF, +OIF:SA:88:783,1,"Rue de l'Epine",49.098625,2.504843,,1,,Europe/Paris,,OIF, +OIF:SA:88:786,1,"8 Mai 1945",48.975998,2.409361,,1,,Europe/Paris,,OIF, +OIF:SA:88:790,1,"Georges Brassens",48.974561,2.407325,,1,,Europe/Paris,,OIF, +OIF:SA:88:792,1,"Jacques Decour",48.976898,2.413349,,1,,Europe/Paris,,OIF, +OIF:SA:88:794,1,"La Muette / Europe",48.975234,2.415845,,1,,Europe/Paris,,OIF, +OIF:SA:88:797,1,"Cimetière / Hôpital",48.990194,2.452129,,1,,Europe/Paris,,OIF, +OIF:SA:88:801,1,"Place Germain",49.000005,2.428769,,1,,Europe/Paris,,OIF, +OIF:SA:88:805,1,"Hôpital",48.988768,2.449538,,1,,Europe/Paris,,OIF, +OIF:SA:88:807,1,"Hôtel de Ville",48.986557,2.45008,,1,,Europe/Paris,,OIF, +OIF:SA:88:809,1,"Jules Ferry",48.996908,2.430156,,1,,Europe/Paris,,OIF, +OIF:SA:88:813,1,"Maréchal Foch",49.000771,2.419551,,1,,Europe/Paris,,OIF, +OIF:SA:88:817,1,"Patte d'Oie",48.983496,2.468574,,1,,Europe/Paris,,OIF, +OIF:SA:88:821,1,"Rue d'Aulnay",48.983847,2.440762,,1,,Europe/Paris,,OIF, +OIF:SA:88:823,1,"Rue Scribe",49.003269,2.420402,,1,,Europe/Paris,,OIF, +OIF:SA:88:827,1,"Zone Industrielle Arsonval",48.991008,2.456692,,1,,Europe/Paris,,OIF, +OIF:SA:88:829,1,"Ampère Chartrel",49.035746,2.456509,,1,,Europe/Paris,,OIF, +OIF:SA:88:831,1,"Calvaire",49.016053,2.469449,,1,,Europe/Paris,,OIF, +OIF:SA:88:833,1,"Carrefour de l'Europe",49.021082,2.464957,,1,,Europe/Paris,,OIF, +OIF:SA:88:835,1,"Chapellerie",49.038039,2.455427,,1,,Europe/Paris,,OIF, +OIF:SA:88:837,1,"La Charmeuse",49.034234,2.471997,,1,,Europe/Paris,,OIF, +OIF:SA:88:839,1,"Centre de Secours",49.03023,2.459988,,1,,Europe/Paris,,OIF, +OIF:SA:88:841,1,"Descartes",49.038824,2.461163,,1,,Europe/Paris,,OIF, +OIF:SA:88:843,1,"École Gabriel Péri",49.03812,2.467952,,1,,Europe/Paris,,OIF, +OIF:SA:88:845,1,"Henri Dunant",49.037064,2.463865,,1,,Europe/Paris,,OIF, +OIF:SA:88:847,1,"Mairie",49.03211,2.474062,,1,,Europe/Paris,,OIF, +OIF:SA:88:849,1,"Marché",49.027977,2.46154,,1,,Europe/Paris,,OIF, +OIF:SA:88:851,1,"Marcel Cerdan",49.023005,2.459595,,1,,Europe/Paris,,OIF, +OIF:SA:88:852,1,"Montgolfier",49.039002,2.458211,,1,,Europe/Paris,,OIF, +OIF:SA:88:854,1,"Les Montagnettes",49.035902,2.470224,,1,,Europe/Paris,,OIF, +OIF:SA:88:856,1,"Le Moulin",49.011449,2.472067,,1,,Europe/Paris,,OIF, +OIF:SA:88:858,1,"Les Olympiades",49.021802,2.455971,,1,,Europe/Paris,,OIF, +OIF:SA:88:860,1,"Sécurité Sociale",49.025583,2.463195,,1,,Europe/Paris,,OIF, +OIF:SA:88:861,1,"Avenue des Tilleuls",49.033035,2.45846,,1,,Europe/Paris,,OIF, +OIF:SA:88:863,1,"Victor Basch",49.030263,2.474931,,1,,Europe/Paris,,OIF, +OIF:SA:88:865,1,"Centre Commercial",49.050299,2.499771,,1,,Europe/Paris,,OIF, +OIF:SA:88:866,1,"Copenhague",49.052614,2.500289,,1,,Europe/Paris,,OIF, +OIF:SA:88:867,1,"Marie Feuchère",49.045962,2.509333,,1,,Europe/Paris,,OIF, +OIF:SA:88:871,1,"La Pépinière",49.054128,2.501533,,1,,Europe/Paris,,OIF, +OIF:SA:88:874,1,"Bois Maillard",49.089139,2.508372,,1,,Europe/Paris,,OIF, +OIF:SA:88:875,1,"Collège Françoise Dolto",49.086223,2.506143,,1,,Europe/Paris,,OIF, +OIF:SA:88:876,1,"Cimetière",49.086702,2.500871,,1,,Europe/Paris,,OIF, +OIF:SA:88:877,1,"Cité Jardins",49.091298,2.504666,,1,,Europe/Paris,,OIF, +OIF:SA:88:878,1,"Rue des Prés",49.083245,2.504745,,1,,Europe/Paris,,OIF, +OIF:SA:88:880,1,"École de la Garenne",49.084958,2.501891,,1,,Europe/Paris,,OIF, +OIF:SA:88:881,1,"Hameau des Cèdres",49.090027,2.501073,,1,,Europe/Paris,,OIF, +OIF:SA:88:882,1,"Hameau de Prieuré",49.084469,2.504161,,1,,Europe/Paris,,OIF, +OIF:SA:88:883,1,"Mairie",49.078663,2.499149,,1,,Europe/Paris,,OIF, +OIF:SA:88:885,1,"Place du 19 Mars",49.092425,2.502162,,1,,Europe/Paris,,OIF, +OIF:SA:88:886,1,"Place du Vert Clos",49.080212,2.502916,,1,,Europe/Paris,,OIF, +OIF:SA:88:888,1,"Salle des Fêtes",49.075981,2.498833,,1,,Europe/Paris,,OIF, +OIF:SA:88:890,1,"Général Leclerc",49.057031,2.500654,,1,,Europe/Paris,,OIF, +OIF:SA:88:891,1,"Gymnase",49.061315,2.499525,,1,,Europe/Paris,,OIF, +OIF:SA:88:893,1,"Route de Marly",49.058074,2.500534,,1,,Europe/Paris,,OIF, +OIF:SA:88:894,1,"Airapolis",49.006861,2.519441,,1,,Europe/Paris,,OIF, +OIF:SA:88:896,1,"Passerelle",49.003678,2.512102,,1,,Europe/Paris,,OIF, +OIF:SA:88:898,1,"Convention",49.007796,2.516207,,1,,Europe/Paris,,OIF, +OIF:SA:88:900,1,"Église",48.99971,2.512047,,1,,Europe/Paris,,OIF, +OIF:SA:88:902,1,"Rue du Noyer",49.003208,2.504431,,1,,Europe/Paris,,OIF, +OIF:SA:88:903,1,"Parc Mail 1",49.007644,2.493749,,1,,Europe/Paris,,OIF, +OIF:SA:88:904,1,"Parc Mail 2",49.004664,2.490954,,1,,Europe/Paris,,OIF, +OIF:SA:88:905,1,"Parc du Moulin",49.004038,2.501647,,1,,Europe/Paris,,OIF, +OIF:SA:88:906,1,"Roissy Parc",49.005456,2.506384,,1,,Europe/Paris,,OIF, +OIF:SA:88:908,1,"Village",49.003991,2.516194,,1,,Europe/Paris,,OIF, +OIF:SA:88:918,1,"Avenue Bocquet",49.010627,2.483287,,1,,Europe/Paris,,OIF, +OIF:SA:88:920,1,"Les Charmilles",49.005262,2.471955,,1,,Europe/Paris,,OIF, +OIF:SA:88:922,1,"Chemin de Saint-Denis",49.007629,2.47638,,1,,Europe/Paris,,OIF, +OIF:SA:88:924,1,"Mairie",49.002594,2.471238,,1,,Europe/Paris,,OIF, +OIF:SA:88:926,1,"Pont Chinois",49.007877,2.471784,,1,,Europe/Paris,,OIF, +OIF:SA:88:928,1,"Pont à l'Huile",49.000442,2.466534,,1,,Europe/Paris,,OIF, +OIF:SA:88:930,1,"La Talmouse",49.010904,2.488342,,1,,Europe/Paris,,OIF, +OIF:SA:88:932,1,"Arthur Rimbaud",48.999377,2.415158,,1,,Europe/Paris,,OIF, +OIF:SA:88:937,1,"Hérivaux",49.007436,2.394755,,1,,Europe/Paris,,OIF, +OIF:SA:88:939,1,"Henri Sellier",49.008315,2.398294,,1,,Europe/Paris,,OIF, +OIF:SA:88:941,1,"Louis Perrein",49.001643,2.40616,,1,,Europe/Paris,,OIF, +OIF:SA:88:943,1,"Puits de la Marlière",49.008592,2.401204,,1,,Europe/Paris,,OIF, +OIF:SA:89:16,1,"Chamoiserie/Comtesse RD43",48.973213,1.917767,,1,,Europe/Paris,,OIF, +OIF:SA:89:18,1,"Presle",48.950525,1.928007,,1,,Europe/Paris,,OIF, +OIF:SA:89:25,1,"Rond-Point du Petit Saint-Cloud",48.829511,1.951177,,1,,Europe/Paris,,OIF, +OIF:SA:89:33,1,"Base de Loisirs",48.783563,1.992819,,1,,Europe/Paris,,OIF, +OIF:SA:89:4,1,"La Défense / Terminal Jules Verne",48.891276,2.242195,,1,,Europe/Paris,,OIF, +OIF:SA:8:30007,1,"Abbaye de Royaumont",49.145633,2.385405,,1,,Europe/Paris,,OIF, +OIF:SA:8:30009,1,"Baillon",49.147876,2.401104,,1,,Europe/Paris,,OIF, +OIF:SA:8:30010,1,"La Briette",49.134942,2.36508,,1,,Europe/Paris,,OIF, +OIF:SA:8:30015,1,"Cimetière",49.136372,2.36024,,1,,Europe/Paris,,OIF, +OIF:SA:8:30017,1,"Grande Rue Mairie",49.134575,2.356829,,1,,Europe/Paris,,OIF, +OIF:SA:8:30019,1,"Place de Cutigliano",49.13342,2.36256,,1,,Europe/Paris,,OIF, +OIF:SA:8:30021,1,"Le Poirier Gris",49.136716,2.367402,,1,,Europe/Paris,,OIF, +OIF:SA:8:30023,1,"Saint-Laurent",49.135443,2.351859,,1,,Europe/Paris,,OIF, +OIF:SA:8:30025,1,"Les Tilleuls",49.140578,2.374314,,1,,Europe/Paris,,OIF, +OIF:SA:8:30033,1,"Bellefontaine Centre",49.098274,2.466123,,1,,Europe/Paris,,OIF, +OIF:SA:8:30037,1,"Église",49.044797,2.551522,,1,,Europe/Paris,,OIF, +OIF:SA:8:30040,1,"Croix l'Alouette",49.120716,2.424884,,1,,Europe/Paris,,OIF, +OIF:SA:8:30042,1,"Charles Baudelaire",49.129633,2.426521,,1,,Europe/Paris,,OIF, +OIF:SA:8:30043,1,"Cyprien Réthoré",49.123079,2.431329,,1,,Europe/Paris,,OIF, +OIF:SA:8:30044,1,"Rue de la Ferme",49.132011,2.418132,,1,,Europe/Paris,,OIF, +OIF:SA:8:30045,1,"Henri Dunant",49.127699,2.429544,,1,,Europe/Paris,,OIF, +OIF:SA:8:30046,1,"Mairie",49.120744,2.430202,,1,,Europe/Paris,,OIF, +OIF:SA:8:30047,1,"Rue de Paris",49.122979,2.426715,,1,,Europe/Paris,,OIF, +OIF:SA:8:30049,1,"Rue du Pont",49.128405,2.422083,,1,,Europe/Paris,,OIF, +OIF:SA:8:30055,1,"Épiais les Louvres Centre",49.031981,2.560092,,1,,Europe/Paris,,OIF, +OIF:SA:8:30056,1,"Albert Galle",49.055801,2.443997,,1,,Europe/Paris,,OIF, +OIF:SA:8:30058,1,"Les Castors",49.055196,2.452951,,1,,Europe/Paris,,OIF, +OIF:SA:8:30060,1,"Croix de la Chaise",49.054968,2.457811,,1,,Europe/Paris,,OIF, +OIF:SA:8:30062,1,"Centre",49.053131,2.450513,,1,,Europe/Paris,,OIF, +OIF:SA:8:30064,1,"Clos de la Ferme",49.050928,2.447904,,1,,Europe/Paris,,OIF, +OIF:SA:8:30066,1,"Rue de la Vallée",49.051723,2.451959,,1,,Europe/Paris,,OIF, +OIF:SA:8:30074,1,"Centre Commercial de Fosses",49.100482,2.528147,,1,,Europe/Paris,,OIF, +OIF:SA:8:30078,1,"Coteau de la Gare",49.097079,2.517619,,1,,Europe/Paris,,OIF, +OIF:SA:8:30080,1,"Cottages",49.095806,2.493141,,1,,Europe/Paris,,OIF, +OIF:SA:8:30082,1,"Collège Stendhal",49.102856,2.509216,,1,,Europe/Paris,,OIF, +OIF:SA:8:30087,1,"Lycée Charles Baudelaire",49.100617,2.504049,,1,,Europe/Paris,,OIF, +OIF:SA:8:30088,1,"Mairie Annexe",49.096321,2.487608,,1,,Europe/Paris,,OIF, +OIF:SA:8:30095,1,"Allée de la Source",49.095408,2.511551,,1,,Europe/Paris,,OIF, +OIF:SA:8:30097,1,"Village",49.095405,2.48753,,1,,Europe/Paris,,OIF, +OIF:SA:8:30099,1,"Rue des Violettes",49.09492,2.507527,,1,,Europe/Paris,,OIF, +OIF:SA:8:30101,1,"Zone Industrielle Fosses",49.097143,2.528559,,1,,Europe/Paris,,OIF, +OIF:SA:8:30129,1,"Place Charles de Gaulle",48.973756,2.400867,,1,,Europe/Paris,,OIF, +OIF:SA:8:30131,1,"Pierre de Coubertin",48.977275,2.407445,,1,,Europe/Paris,,OIF, +OIF:SA:8:30133,1,"Parc Commercial Pont de Pierre",48.972688,2.420257,,1,,Europe/Paris,,OIF, +OIF:SA:8:30134,1,"Paul Langevin",48.977578,2.411165,,1,,Europe/Paris,,OIF, +OIF:SA:8:30140,1,"Cimetière",48.990194,2.452129,,1,,Europe/Paris,,OIF, +OIF:SA:8:30156,1,"Fontaine Cypierre",48.985449,2.459461,,1,,Europe/Paris,,OIF, +OIF:SA:8:30158,1,"Acacias",49.039204,2.466597,,1,,Europe/Paris,,OIF, +OIF:SA:8:30164,1,"Camélinat",49.04041,2.465021,,1,,Europe/Paris,,OIF, +OIF:SA:8:30166,1,"Cachin Blatreux",49.041729,2.46292,,1,,Europe/Paris,,OIF, +OIF:SA:8:30174,1,"Collège Montaigne",49.028039,2.45386,,1,,Europe/Paris,,OIF, +OIF:SA:8:30175,1,"Les Coteaux",49.029035,2.480672,,1,,Europe/Paris,,OIF, +OIF:SA:8:30178,1,"Collège Robespierre",49.032735,2.453003,,1,,Europe/Paris,,OIF, +OIF:SA:8:30187,1,"École Jean Jaurès",49.032608,2.4824,,1,,Europe/Paris,,OIF, +OIF:SA:8:30189,1,"École Jacques Prévert",49.030013,2.451856,,1,,Europe/Paris,,OIF, +OIF:SA:8:30190,1,"École Pasteur",49.027011,2.473495,,1,,Europe/Paris,,OIF, +OIF:SA:8:30192,1,"Eugène Varlin",49.038745,2.475767,,1,,Europe/Paris,,OIF, +OIF:SA:8:30194,1,"Georges Brassens",49.042987,2.467399,,1,,Europe/Paris,,OIF, +OIF:SA:8:30196,1,"Gendarmerie",49.042993,2.461624,,1,,Europe/Paris,,OIF, +OIF:SA:8:30199,1,"Georges Pitard",49.034754,2.455604,,1,,Europe/Paris,,OIF, +OIF:SA:8:30200,1,"Hélène Boucher",49.030618,2.449199,,1,,Europe/Paris,,OIF, +OIF:SA:8:30203,1,"Jules Ferry",49.027914,2.474092,,1,,Europe/Paris,,OIF, +OIF:SA:8:30204,1,"Lycée Romain Rolland",49.030234,2.455683,,1,,Europe/Paris,,OIF, +OIF:SA:8:30206,1,"Mairie de Goussainville",49.03211,2.474062,,1,,Europe/Paris,,OIF, +OIF:SA:8:30211,1,"Mediathèque",49.036043,2.461047,,1,,Europe/Paris,,OIF, +OIF:SA:8:30212,1,"Rue Millet",49.03605,2.462824,,1,,Europe/Paris,,OIF, +OIF:SA:8:30219,1,"Madeleine Renaud",49.030779,2.44935,,1,,Europe/Paris,,OIF, +OIF:SA:8:30220,1,"Michel Simon",49.032174,2.447918,,1,,Europe/Paris,,OIF, +OIF:SA:8:30225,1,"Parc d'Activités Charles de Gaulle",49.021106,2.470849,,1,,Europe/Paris,,OIF, +OIF:SA:8:30226,1,"Pablo Picasso",49.03379,2.44911,,1,,Europe/Paris,,OIF, +OIF:SA:8:30227,1,"Place Sydney Béchet",49.043975,2.463697,,1,,Europe/Paris,,OIF, +OIF:SA:8:30229,1,"Résidence Ambroise Croizat",49.036275,2.478428,,1,,Europe/Paris,,OIF, +OIF:SA:8:30232,1,"Renaissance",49.041152,2.473204,,1,,Europe/Paris,,OIF, +OIF:SA:8:30235,1,"Raymond Lefèvre",49.03797,2.473203,,1,,Europe/Paris,,OIF, +OIF:SA:8:30236,1,"Rouget de Lisle",49.028824,2.479396,,1,,Europe/Paris,,OIF, +OIF:SA:8:30238,1,"Rue Rolland",49.028428,2.483686,,1,,Europe/Paris,,OIF, +OIF:SA:8:30241,1,"La Ruche",49.033488,2.463159,,1,,Europe/Paris,,OIF, +OIF:SA:8:30242,1,"Rue Sieyès",49.029951,2.484401,,1,,Europe/Paris,,OIF, +OIF:SA:8:30251,1,"ZI du Dessous de l'Orme",49.025921,2.455283,,1,,Europe/Paris,,OIF, +OIF:SA:8:30252,1,"ZAE Fransbonhomme",49.021522,2.451502,,1,,Europe/Paris,,OIF, +OIF:SA:8:30253,1,"ZAE G. Monmousseau",49.01894,2.443968,,1,,Europe/Paris,,OIF, +OIF:SA:8:30254,1,"ZAE Jean Pierre Timbaud",49.021182,2.448892,,1,,Europe/Paris,,OIF, +OIF:SA:8:30255,1,"ZI du Pied de Fer",49.023214,2.457136,,1,,Europe/Paris,,OIF, +OIF:SA:8:30256,1,"ZAE Rep",49.019044,2.44901,,1,,Europe/Paris,,OIF, +OIF:SA:8:30257,1,"ZAE R. Moinon",49.019677,2.453438,,1,,Europe/Paris,,OIF, +OIF:SA:8:30258,1,"Ferdinand Berthaud",48.986085,2.342121,,1,,Europe/Paris,,OIF, +OIF:SA:8:30261,1,"Mairie / Gambetta",48.985312,2.345719,,1,,Europe/Paris,,OIF, +OIF:SA:8:30263,1,"ZI les Ecricrolles",48.989826,2.358057,,1,,Europe/Paris,,OIF, +OIF:SA:8:30264,1,"Croix de Lassy",49.099603,2.448706,,1,,Europe/Paris,,OIF, +OIF:SA:8:30265,1,"Rue du 11 Novembre",49.041775,2.499457,,1,,Europe/Paris,,OIF, +OIF:SA:8:30266,1,"Rue au Blé",49.040794,2.506671,,1,,Europe/Paris,,OIF, +OIF:SA:8:30269,1,"Bouteiller",49.040829,2.501313,,1,,Europe/Paris,,OIF, +OIF:SA:8:30271,1,"Bruxelles",49.053411,2.499959,,1,,Europe/Paris,,OIF, +OIF:SA:8:30272,1,"Collège André Malraux",49.050208,2.509204,,1,,Europe/Paris,,OIF, +OIF:SA:8:30276,1,"Cottage Delacroix",49.046444,2.495056,,1,,Europe/Paris,,OIF, +OIF:SA:8:30280,1,"École Delacroix",49.052422,2.493448,,1,,Europe/Paris,,OIF, +OIF:SA:8:30281,1,"Foyer des Anciens",49.042521,2.505611,,1,,Europe/Paris,,OIF, +OIF:SA:8:30283,1,"Avenue de la Gare",49.047646,2.496782,,1,,Europe/Paris,,OIF, +OIF:SA:8:30285,1,"Londres",49.053495,2.497566,,1,,Europe/Paris,,OIF, +OIF:SA:8:30286,1,"Le Margeride",49.043851,2.505465,,1,,Europe/Paris,,OIF, +OIF:SA:8:30287,1,"Mairie",49.045283,2.509338,,1,,Europe/Paris,,OIF, +OIF:SA:8:30288,1,"Marlots",49.048522,2.50656,,1,,Europe/Paris,,OIF, +OIF:SA:8:30289,1,"Marché",49.042641,2.503356,,1,,Europe/Paris,,OIF, +OIF:SA:8:30294,1,"Mallein Gérin",49.038846,2.505585,,1,,Europe/Paris,,OIF, +OIF:SA:8:30299,1,"Le Moulin",49.046729,2.510477,,1,,Europe/Paris,,OIF, +OIF:SA:8:30300,1,"Maison de Retraite",49.040762,2.503746,,1,,Europe/Paris,,OIF, +OIF:SA:8:30305,1,"Piscine",49.050662,2.512254,,1,,Europe/Paris,,OIF, +OIF:SA:8:30306,1,"Poste",49.043039,2.507827,,1,,Europe/Paris,,OIF, +OIF:SA:8:30308,1,"Schuman",49.050523,2.49243,,1,,Europe/Paris,,OIF, +OIF:SA:8:30310,1,"Square Degas",49.04352,2.504315,,1,,Europe/Paris,,OIF, +OIF:SA:8:30312,1,"Val de Loire",49.043125,2.497739,,1,,Europe/Paris,,OIF, +OIF:SA:8:30313,1,"ZI Briqueterie",49.049176,2.495297,,1,,Europe/Paris,,OIF, +OIF:SA:8:30315,1,"ZI Coudray",49.050939,2.49425,,1,,Europe/Paris,,OIF, +OIF:SA:8:30316,1,"Erik Satie",49.115839,2.42274,,1,,Europe/Paris,,OIF, +OIF:SA:8:30320,1,"Gérard de Nerval",49.1056,2.422299,,1,,Europe/Paris,,OIF, +OIF:SA:8:30324,1,"Avenue du Maréchal Joffre",49.119015,2.423553,,1,,Europe/Paris,,OIF, +OIF:SA:8:30326,1,"La Source",49.110385,2.422156,,1,,Europe/Paris,,OIF, +OIF:SA:8:30328,1,"Centre",49.069308,2.42734,,1,,Europe/Paris,,OIF, +OIF:SA:8:30330,1,"Rue Neuve",49.067103,2.42603,,1,,Europe/Paris,,OIF, +OIF:SA:8:30332,1,"Regnault",49.068871,2.422169,,1,,Europe/Paris,,OIF, +OIF:SA:8:30341,1,"Central Space / Bâtiment Abd",49.079709,2.51803,,1,,Europe/Paris,,OIF, +OIF:SA:8:30343,1,"Central Space / Bâtiment C",49.079422,2.520587,,1,,Europe/Paris,,OIF, +OIF:SA:8:30344,1,"Central Space / Bâtiment E",49.079761,2.516457,,1,,Europe/Paris,,OIF, +OIF:SA:8:30350,1,"Eugène Potier",49.087081,2.521435,,1,,Europe/Paris,,OIF, +OIF:SA:8:30352,1,"Grand Champ",49.084784,2.519299,,1,,Europe/Paris,,OIF, +OIF:SA:8:30354,1,"Gefco",49.090165,2.52042,,1,,Europe/Paris,,OIF, +OIF:SA:8:30358,1,"4 Rue Jean Jaurès",49.096043,2.51988,,1,,Europe/Paris,,OIF, +OIF:SA:8:30360,1,"Rue Jules Vallès",49.090678,2.516782,,1,,Europe/Paris,,OIF, +OIF:SA:8:30364,1,"Moimont",49.089863,2.523907,,1,,Europe/Paris,,OIF, +OIF:SA:8:30366,1,"Peuplier",49.082692,2.518416,,1,,Europe/Paris,,OIF, +OIF:SA:8:30368,1,"Place du 19 Mars 1962",49.092425,2.502162,,1,,Europe/Paris,,OIF, +OIF:SA:8:30371,1,"14 Rue Jean Jaurès",49.090318,2.523273,,1,,Europe/Paris,,OIF, +OIF:SA:8:30377,1,"Cimetière",48.985712,2.331894,,1,,Europe/Paris,,OIF, +OIF:SA:8:30380,1,"Sous Préfecture",48.987441,2.32833,,1,,Europe/Paris,,OIF, +OIF:SA:8:30383,1,"Place Gambetta",49.136486,2.331003,,1,,Europe/Paris,,OIF, +OIF:SA:8:30386,1,"Plessis Luzarches",49.099566,2.450116,,1,,Europe/Paris,,OIF, +OIF:SA:8:30387,1,"Dame Jeanne",49.099736,2.559441,,1,,Europe/Paris,,OIF, +OIF:SA:8:30388,1,"Hauts de Plailly",49.105132,2.575631,,1,,Europe/Paris,,OIF, +OIF:SA:8:30390,1,"Lilas",49.103847,2.577409,,1,,Europe/Paris,,OIF, +OIF:SA:8:30392,1,"Paris",49.103541,2.584156,,1,,Europe/Paris,,OIF, +OIF:SA:8:30394,1,"Puits au Loup",49.104347,2.587075,,1,,Europe/Paris,,OIF, +OIF:SA:8:30396,1,"Sainte-Geneviève",49.103597,2.580916,,1,,Europe/Paris,,OIF, +OIF:SA:8:30398,1,"Vergers",49.105969,2.593554,,1,,Europe/Paris,,OIF, +OIF:SA:8:30400,1,"Zone Industrielle Parc de Plailly",49.101242,2.561596,,1,,Europe/Paris,,OIF, +OIF:SA:8:30401,1,"Quatre Vents",49.06147,2.501228,,1,,Europe/Paris,,OIF, +OIF:SA:8:30402,1,"Allée du Bois",49.060438,2.503119,,1,,Europe/Paris,,OIF, +OIF:SA:8:30403,1,"Église",49.068491,2.477721,,1,,Europe/Paris,,OIF, +OIF:SA:8:30404,1,"École Marcel Pagnol",49.058516,2.502238,,1,,Europe/Paris,,OIF, +OIF:SA:8:30412,1,"Ruelle du Puits",49.067996,2.473911,,1,,Europe/Paris,,OIF, +OIF:SA:8:30413,1,"Ferme du Temple",49.069839,2.481465,,1,,Europe/Paris,,OIF, +OIF:SA:8:30427,1,"170 Rue de la Belle Etoile",48.982491,2.506521,,1,,Europe/Paris,,OIF, +OIF:SA:8:30455,1,"Haut du Roi",48.982178,2.388767,,1,,Europe/Paris,,OIF, +OIF:SA:8:30462,1,"Sous Préfecture",48.989147,2.376621,,1,,Europe/Paris,,OIF, +OIF:SA:8:30466,1,"Charles de Gaulle",48.995397,2.357506,,1,,Europe/Paris,,OIF, +OIF:SA:8:30469,1,"Marlière",48.995815,2.361324,,1,,Europe/Paris,,OIF, +OIF:SA:8:30471,1,"ZI les Ecricrolles",48.990221,2.358795,,1,,Europe/Paris,,OIF, +OIF:SA:8:30472,1,"Rue de Giez",49.121813,2.395513,,1,,Europe/Paris,,OIF, +OIF:SA:8:30483,1,"Collège Pablo Neruda",48.96341,2.385991,,1,,Europe/Paris,,OIF, +OIF:SA:8:30485,1,"Espace Angela Davis",48.950892,2.394937,,1,,Europe/Paris,,OIF, +OIF:SA:8:30486,1,"Francis Auffray",48.967875,2.378297,,1,,Europe/Paris,,OIF, +OIF:SA:8:30488,1,"Fontenay",48.968787,2.378694,,1,,Europe/Paris,,OIF, +OIF:SA:8:30494,1,"Le Maroc",48.971105,2.380969,,1,,Europe/Paris,,OIF, +OIF:SA:8:30501,1,"Parouzets",48.960208,2.381949,,1,,Europe/Paris,,OIF, +OIF:SA:8:30503,1,"Poste Avenir",48.967101,2.382234,,1,,Europe/Paris,,OIF, +OIF:SA:8:30505,1,"Pelletier",48.954021,2.382332,,1,,Europe/Paris,,OIF, +OIF:SA:8:30511,1,"Stalingrad",48.953164,2.390505,,1,,Europe/Paris,,OIF, +OIF:SA:8:30513,1,"13 Saules",49.085126,2.573136,,1,,Europe/Paris,,OIF, +OIF:SA:8:30515,1,"Jabeline",49.087973,2.571539,,1,,Europe/Paris,,OIF, +OIF:SA:8:30517,1,"Jpg",49.091358,2.546194,,1,,Europe/Paris,,OIF, +OIF:SA:8:30519,1,"ZI Saint-Ladre",49.093226,2.528216,,1,,Europe/Paris,,OIF, +OIF:SA:8:30521,1,"Lycée Léonard de Vinci",49.088812,2.559722,,1,,Europe/Paris,,OIF, +OIF:SA:8:30523,1,"Moulin",49.092389,2.568433,,1,,Europe/Paris,,OIF, +OIF:SA:8:30525,1,"Novotel",49.088857,2.548106,,1,,Europe/Paris,,OIF, +OIF:SA:8:30527,1,"Zone Industrielle la Pépinière",49.089691,2.527916,,1,,Europe/Paris,,OIF, +OIF:SA:8:30528,1,"Bergerie",49.097076,2.544541,,1,,Europe/Paris,,OIF, +OIF:SA:8:30530,1,"Cartoucherie",49.093206,2.545449,,1,,Europe/Paris,,OIF, +OIF:SA:8:30532,1,"Chemin du Gué",49.101627,2.547119,,1,,Europe/Paris,,OIF, +OIF:SA:8:30534,1,"Colombier",49.101737,2.543287,,1,,Europe/Paris,,OIF, +OIF:SA:8:30536,1,"Centre Ville",49.09585,2.544037,,1,,Europe/Paris,,OIF, +OIF:SA:8:30538,1,"Les Grands Prés",49.099707,2.548123,,1,,Europe/Paris,,OIF, +OIF:SA:8:30540,1,"Jardin Frémin",49.102212,2.544439,,1,,Europe/Paris,,OIF, +OIF:SA:8:30542,1,"Mairie",49.097577,2.543346,,1,,Europe/Paris,,OIF, +OIF:SA:8:30544,1,"Monument",49.098263,2.538751,,1,,Europe/Paris,,OIF, +OIF:SA:8:30546,1,"Petit Argenteuil",49.099275,2.532652,,1,,Europe/Paris,,OIF, +OIF:SA:8:30548,1,"Porte des Champs",49.091708,2.53605,,1,,Europe/Paris,,OIF, +OIF:SA:8:30575,1,"Choisy aux Bœufs",49.050076,2.575516,,1,,Europe/Paris,,OIF, +OIF:SA:8:30579,1,"François Mauriac",49.07066,2.572507,,1,,Europe/Paris,,OIF, +OIF:SA:8:30581,1,"Les Mitelles",49.068075,2.575804,,1,,Europe/Paris,,OIF, +OIF:SA:8:30583,1,"Les Quatre Vents",49.130714,2.36744,,1,,Europe/Paris,,OIF, +OIF:SA:8:30589,1,"La Garenne",49.127326,2.370313,,1,,Europe/Paris,,OIF, +OIF:SA:8:30594,1,"Jardin Carré",49.058447,2.538629,,1,,Europe/Paris,,OIF, +OIF:SA:8:30598,1,"La Sucrerie",49.062631,2.526906,,1,,Europe/Paris,,OIF, +OIF:SA:8:30601,1,"Bois des Bonnets",49.138211,2.404659,,1,,Europe/Paris,,OIF, +OIF:SA:8:30603,1,"Le Beau Jay",49.079957,2.353053,,1,,Europe/Paris,,OIF, +OIF:SA:8:30609,1,"Église",49.066329,2.457263,,1,,Europe/Paris,,OIF, +OIF:SA:8:30611,1,"Centre",49.128638,2.533715,,1,,Europe/Paris,,OIF, +OIF:SA:8:30613,1,"Rue de la Glorie",49.126709,2.5319,,1,,Europe/Paris,,OIF, +OIF:SA:8:30615,1,"Gymnase",49.121403,2.52652,,1,,Europe/Paris,,OIF, +OIF:SA:8:30616,1,"Bruyères",49.139432,2.469417,,1,,Europe/Paris,,OIF, +OIF:SA:8:30617,1,"Crochet",49.139024,2.484665,,1,,Europe/Paris,,OIF, +OIF:SA:8:30619,1,"Demeure de France",49.141315,2.461307,,1,,Europe/Paris,,OIF, +OIF:SA:8:30621,1,"Place Blanche",49.142712,2.4735,,1,,Europe/Paris,,OIF, +OIF:SA:8:30623,1,"Roncier",49.139801,2.464775,,1,,Europe/Paris,,OIF, +OIF:SA:8:30625,1,"Centre",49.087459,2.414833,,1,,Europe/Paris,,OIF, +OIF:SA:8:30628,1,"Clos Marie",49.049693,2.451613,,1,,Europe/Paris,,OIF, +OIF:SA:8:30632,1,"Collège Philippe Auguste",48.986892,2.437225,,1,,Europe/Paris,,OIF, +OIF:SA:8:30635,1,"Parc du Château",49.075968,2.44131,,1,,Europe/Paris,,OIF, +OIF:SA:8:30639,1,"Thimécourt Centre",49.104909,2.444023,,1,,Europe/Paris,,OIF, +OIF:SA:8:30640,1,"Collège François Mauriac",49.043909,2.508814,,1,,Europe/Paris,,OIF, +OIF:SA:8:30641,1,"Collège A. de Noailles / Lycée G. de Nerval",49.107153,2.424594,,1,,Europe/Paris,,OIF, +OIF:SA:8:30642,1,"Route de Survilliers",49.109347,2.433733,,1,,Europe/Paris,,OIF, +OIF:SA:8:30646,1,"Mairie",49.051573,2.399945,,1,,Europe/Paris,,OIF, +OIF:SA:8:30647,1,"Place des Fêtes",49.053435,2.397527,,1,,Europe/Paris,,OIF, +OIF:SA:8:30650,1,"Blancs Fossés",49.133178,2.511672,,1,,Europe/Paris,,OIF, +OIF:SA:8:30652,1,"Église",49.131199,2.513404,,1,,Europe/Paris,,OIF, +OIF:SA:8:30654,1,"Marly",49.129954,2.513742,,1,,Europe/Paris,,OIF, +OIF:SA:8:30656,1,"Les Pâturages",49.127891,2.517692,,1,,Europe/Paris,,OIF, +OIF:SA:8:30658,1,"Orry-la-Ville RER D",49.139093,2.490342,,1,,Europe/Paris,,OIF, +OIF:SA:8:30659,1,"Blancs Manteaux",49.033215,2.414642,,1,,Europe/Paris,,OIF, +OIF:SA:8:30668,1,"Bordeaux-Odent",49.204768,2.587065,,1,,Europe/Paris,,OIF, +OIF:SA:8:30670,1,"Collège Anne Marie Javouhey",49.208305,2.582242,,1,,Europe/Paris,,OIF, +OIF:SA:8:30672,1,"Gare Routière",49.206127,2.592262,,1,,Europe/Paris,,OIF, +OIF:SA:8:30673,1,"Lycée Amyot d'Inville",49.19138,2.574073,,1,,Europe/Paris,,OIF, +OIF:SA:8:30684,1,"Piscine",49.086487,2.575677,,1,,Europe/Paris,,OIF, +OIF:SA:8:30686,1,"Église",49.076556,2.356958,,1,,Europe/Paris,,OIF, +OIF:SA:8:30689,1,"Mascrée",49.129974,2.378605,,1,,Europe/Paris,,OIF, +OIF:SA:8:30691,1,"Route de Royaumont",49.134105,2.371926,,1,,Europe/Paris,,OIF, +OIF:SA:8:30697,1,"Pierre Curie",49.07172,2.565933,,1,,Europe/Paris,,OIF, +OIF:SA:8:30706,1,"Emmanuel Rain",48.986699,2.452231,,1,,Europe/Paris,,OIF, +OIF:SA:8:30713,1,"Gonesse - Hôpital",48.993787,2.451254,,1,,Europe/Paris,,OIF, +OIF:SA:8:30720,1,"Rue de la Fosette",49.012639,2.584872,,1,,Europe/Paris,,OIF, +OIF:SA:8:30762,1,"Alouettes",49.056409,2.496085,,1,,Europe/Paris,,OIF, +OIF:SA:8:30763,1,"Fauvettes",49.054461,2.494425,,1,,Europe/Paris,,OIF, +OIF:SA:8:30764,1,"Lilas",49.057742,2.500177,,1,,Europe/Paris,,OIF, +OIF:SA:8:30765,1,"Rossignols",49.055085,2.49779,,1,,Europe/Paris,,OIF, +OIF:SA:8:30766,1,"Violettes",49.057467,2.497606,,1,,Europe/Paris,,OIF, +OIF:SA:8:30793,1,"Rue des Bonnets",49.131406,2.42306,,1,,Europe/Paris,,OIF, +OIF:SA:8:30795,1,"Athènes",49.0526,2.495143,,1,,Europe/Paris,,OIF, +OIF:SA:91:29,1,"Marché d'Intérêt National",48.763094,2.358128,,1,,Europe/Paris,,OIF, +OIF:SA:9:1000,1,"Chapelle",48.888982,2.658926,,1,,Europe/Paris,,OIF, +OIF:SA:9:1010,1,"Château",48.823516,2.708488,,1,,Europe/Paris,,OIF, +OIF:SA:9:1011,1,"Cimetière",48.878918,2.722041,,1,,Europe/Paris,,OIF, +OIF:SA:9:1013,1,"Gibert",48.872649,2.706422,,1,,Europe/Paris,,OIF, +OIF:SA:9:1015,1,"Léo Gausson",48.869773,2.706572,,1,,Europe/Paris,,OIF, +OIF:SA:9:1020,1,"Paris",48.825188,2.705505,,1,,Europe/Paris,,OIF, +OIF:SA:9:1021,1,"Château de Louche",48.924039,2.718606,,1,,Europe/Paris,,OIF, +OIF:SA:9:1025,1,"Mairie",48.884596,2.711406,,1,,Europe/Paris,,OIF, +OIF:SA:9:1026,1,"Mairie / École",48.884395,2.712372,,1,,Europe/Paris,,OIF, +OIF:SA:9:1027,1,"Canada",48.880871,2.722369,,1,,Europe/Paris,,OIF, +OIF:SA:9:1029,1,"Rue Roger",48.877469,2.719735,,1,,Europe/Paris,,OIF, +OIF:SA:9:1031,1,"Mairie",48.800403,2.704404,,1,,Europe/Paris,,OIF, +OIF:SA:9:1037,1,"Imprimerie",48.879974,2.716374,,1,,Europe/Paris,,OIF, +OIF:SA:9:1041,1,"Lycée Professionnel Perdonnet",48.887228,2.728488,,1,,Europe/Paris,,OIF, +OIF:SA:9:1043,1,"Daniel Leduc",48.889481,2.737486,,1,,Europe/Paris,,OIF, +OIF:SA:9:1044,1,"Les Fontaines",48.887199,2.726334,,1,,Europe/Paris,,OIF, +OIF:SA:9:1067,1,"La Route",48.80041,2.781378,,1,,Europe/Paris,,OIF, +OIF:SA:9:1070,1,"Dénicherie",48.803349,2.786244,,1,,Europe/Paris,,OIF, +OIF:SA:9:1072,1,"Chabanneau",48.882087,2.700187,,1,,Europe/Paris,,OIF, +OIF:SA:9:1073,1,"Le Verger",48.860123,2.813335,,1,,Europe/Paris,,OIF, +OIF:SA:9:1076,1,"Les 3 Petits Bois",48.863746,2.808477,,1,,Europe/Paris,,OIF, +OIF:SA:9:1080,1,"Grand Fossé",48.866226,2.767005,,1,,Europe/Paris,,OIF, +OIF:SA:9:1081,1,"Buffard",48.862618,2.762044,,1,,Europe/Paris,,OIF, +OIF:SA:9:1088,1,"Jussieu",48.837868,2.782346,,1,,Europe/Paris,,OIF, +OIF:SA:9:1111,1,"Cheval Blanc",48.837922,2.753849,,1,,Europe/Paris,,OIF, +OIF:SA:9:1120,1,"Les Ifs",48.889538,2.720287,,1,,Europe/Paris,,OIF, +OIF:SA:9:1126,1,"Léonard de Vinci",48.833887,2.70004,,1,,Europe/Paris,,OIF, +OIF:SA:9:1131,1,"Église",48.839419,2.669177,,1,,Europe/Paris,,OIF, +OIF:SA:9:1133,1,"Bois de Chigny",48.862712,2.743995,,1,,Europe/Paris,,OIF, +OIF:SA:9:1134,1,"Bois de Chigny",48.862954,2.744351,,1,,Europe/Paris,,OIF, +OIF:SA:9:1151,1,"Cures",48.893736,2.708578,,1,,Europe/Paris,,OIF, +OIF:SA:9:1153,1,"Croix Saint-Louis",48.918534,2.713547,,1,,Europe/Paris,,OIF, +OIF:SA:9:1155,1,"Douy",48.92878,2.719859,,1,,Europe/Paris,,OIF, +OIF:SA:9:1157,1,"Rigaudin",48.926316,2.719345,,1,,Europe/Paris,,OIF, +OIF:SA:9:1160,1,"Clos",48.883953,2.660789,,1,,Europe/Paris,,OIF, +OIF:SA:9:1170,1,"Clos Saint-Nicolas",48.814991,2.826448,,1,,Europe/Paris,,OIF, +OIF:SA:9:1180,1,"Petits Prés",48.886797,2.687981,,1,,Europe/Paris,,OIF, +OIF:SA:9:1183,1,"Zone Industrielle Pariest",48.82597,2.629357,,1,,Europe/Paris,,OIF, +OIF:SA:9:1200,1,"Place du Général Leclerc",48.885271,2.736037,,1,,Europe/Paris,,OIF, +OIF:SA:9:1204,1,"Jean Jaurès",48.879417,2.62491,,1,,Europe/Paris,,OIF, +OIF:SA:9:1210,1,"Collège Moulin à Vent",48.890638,2.710455,,1,,Europe/Paris,,OIF, +OIF:SA:9:1213,1,"Peduzzi",48.870156,2.707698,,1,,Europe/Paris,,OIF, +OIF:SA:9:1215,1,"Rothschild",48.874921,2.693896,,1,,Europe/Paris,,OIF, +OIF:SA:9:1217,1,"Fontaine",48.873224,2.690321,,1,,Europe/Paris,,OIF, +OIF:SA:9:1220,1,"Georges Clémenceau",48.877492,2.721029,,1,,Europe/Paris,,OIF, +OIF:SA:9:1221,1,"La Ferme",48.855697,2.740256,,1,,Europe/Paris,,OIF, +OIF:SA:9:1223,1,"Cimetière",48.745153,2.763501,,1,,Europe/Paris,,OIF, +OIF:SA:9:1225,1,"Antoine Bourdelle",48.839729,2.725876,,1,,Europe/Paris,,OIF, +OIF:SA:9:1230,1,"Place",48.822237,2.703769,,1,,Europe/Paris,,OIF, +OIF:SA:9:1237,1,"Bonne Auberge",48.877982,2.745212,,1,,Europe/Paris,,OIF, +OIF:SA:9:1238,1,"Fontaine au Roi",48.878103,2.750473,,1,,Europe/Paris,,OIF, +OIF:SA:9:1241,1,"Avenue du Général Leclerc",48.870636,2.682559,,1,,Europe/Paris,,OIF, +OIF:SA:9:1245,1,"Gué Langlois",48.843749,2.666985,,1,,Europe/Paris,,OIF, +OIF:SA:9:1250,1,"Cornouillers",48.888131,2.689803,,1,,Europe/Paris,,OIF, +OIF:SA:9:1251,1,"Les Marchais",48.839836,2.659935,,1,,Europe/Paris,,OIF, +OIF:SA:9:1260,1,"Coteaux",48.890363,2.717826,,1,,Europe/Paris,,OIF, +OIF:SA:9:1261,1,"Tous Vents",48.868683,2.705787,,1,,Europe/Paris,,OIF, +OIF:SA:9:1264,1,"Gros Buisson",48.850152,2.672065,,1,,Europe/Paris,,OIF, +OIF:SA:9:1267,1,"Golf",48.845183,2.705062,,1,,Europe/Paris,,OIF, +OIF:SA:9:1269,1,"Lycée Martin Luther King / Gare",48.840097,2.720439,,1,,Europe/Paris,,OIF, +OIF:SA:9:1270,1,"Place de la Mairie",48.84722,2.824737,,1,,Europe/Paris,,OIF, +OIF:SA:9:1271,1,"Les Coteaux",48.877554,2.726752,,1,,Europe/Paris,,OIF, +OIF:SA:9:1273,1,"Courberonne",48.84015,2.752798,,1,,Europe/Paris,,OIF, +OIF:SA:9:1275,1,"Château",48.837493,2.752967,,1,,Europe/Paris,,OIF, +OIF:SA:9:1277,1,"Grande Grille",48.850292,2.666932,,1,,Europe/Paris,,OIF, +OIF:SA:9:1281,1,"Courtillières",48.869251,2.674866,,1,,Europe/Paris,,OIF, +OIF:SA:9:1284,1,"Mairie",48.827838,2.659771,,1,,Europe/Paris,,OIF, +OIF:SA:9:1287,1,"Place Beilstein",48.804637,2.622209,,1,,Europe/Paris,,OIF, +OIF:SA:9:1290,1,"Place des Ormes",48.88812,2.733115,,1,,Europe/Paris,,OIF, +OIF:SA:9:1291,1,"Marcel Pagnol",48.844187,2.721596,,1,,Europe/Paris,,OIF, +OIF:SA:9:1293,1,"Croix Gauthier",48.926344,2.714749,,1,,Europe/Paris,,OIF, +OIF:SA:9:1295,1,"Les Armières",48.84887,2.81221,,1,,Europe/Paris,,OIF, +OIF:SA:9:1297,1,"Les Genêts",48.852019,2.818211,,1,,Europe/Paris,,OIF, +OIF:SA:9:1300,1,"Rue Brébion",48.873454,2.709139,,1,,Europe/Paris,,OIF, +OIF:SA:9:1305,1,"Emery",48.813407,2.623278,,1,,Europe/Paris,,OIF, +OIF:SA:9:1307,1,"Les Lions",48.826935,2.647732,,1,,Europe/Paris,,OIF, +OIF:SA:9:1309,1,"École Jean Jaurès",48.809984,2.626511,,1,,Europe/Paris,,OIF, +OIF:SA:9:1310,1,"Collège Victor Schoelcher",48.835326,2.659301,,1,,Europe/Paris,,OIF, +OIF:SA:9:1311,1,"Village",48.828789,2.663548,,1,,Europe/Paris,,OIF, +OIF:SA:9:1315,1,"Tournelles",48.877671,2.767168,,1,,Europe/Paris,,OIF, +OIF:SA:9:1319,1,"Grande Prairie",48.869929,2.579054,,1,,Europe/Paris,,OIF, +OIF:SA:9:1331,1,"Charles de Gaulle",48.904207,2.778049,,1,,Europe/Paris,,OIF, +OIF:SA:9:1340,1,"Delambre",48.878653,2.706444,,1,,Europe/Paris,,OIF, +OIF:SA:9:1343,1,"Robert Thiboust",48.843298,2.795063,,1,,Europe/Paris,,OIF, +OIF:SA:9:1345,1,"Pressoir",48.841575,2.789581,,1,,Europe/Paris,,OIF, +OIF:SA:9:1347,1,"Clé des Champs",48.867589,2.816189,,1,,Europe/Paris,,OIF, +OIF:SA:9:1350,1,"CAT",48.846287,2.828568,,1,,Europe/Paris,,OIF, +OIF:SA:9:1360,1,"Poste",48.879016,2.708259,,1,,Europe/Paris,,OIF, +OIF:SA:9:1371,1,"Roses",48.8737,2.713671,,1,,Europe/Paris,,OIF, +OIF:SA:9:1373,1,"Chrysanthèmes",48.871465,2.714309,,1,,Europe/Paris,,OIF, +OIF:SA:9:1375,1,"Chauffernes",48.870569,2.711877,,1,,Europe/Paris,,OIF, +OIF:SA:9:1377,1,"André le Nôtre",48.869253,2.710274,,1,,Europe/Paris,,OIF, +OIF:SA:9:1380,1,"ANPE",48.875917,2.692826,,1,,Europe/Paris,,OIF, +OIF:SA:9:1381,1,"Collège",48.869044,2.811959,,1,,Europe/Paris,,OIF, +OIF:SA:9:1385,1,"Pierris",48.865835,2.69083,,1,,Europe/Paris,,OIF, +OIF:SA:9:1396,1,"Marsange",48.843963,2.825469,,1,,Europe/Paris,,OIF, +OIF:SA:9:1397,1,"Gymnase",48.850043,2.824484,,1,,Europe/Paris,,OIF, +OIF:SA:9:1400,1,"École de la Gabrielle",48.943242,2.689019,,1,,Europe/Paris,,OIF, +OIF:SA:9:1401,1,"Collège Léonard de Vinci",48.858455,2.670906,,1,,Europe/Paris,,OIF, +OIF:SA:9:1406,1,"Closeaux",48.858299,2.684649,,1,,Europe/Paris,,OIF, +OIF:SA:9:1417,1,"Place Matteotti",48.856047,2.590321,,1,,Europe/Paris,,OIF, +OIF:SA:9:1420,1,"Victor Hugo",48.538264,2.656555,,1,,Europe/Paris,,OIF, +OIF:SA:9:1421,1,"Rue de Rome",48.857164,2.75401,,1,,Europe/Paris,,OIF, +OIF:SA:9:1426,1,"Puits de Gué",48.871576,2.751068,,1,,Europe/Paris,,OIF, +OIF:SA:9:1427,1,"Pompidou",48.549909,2.650263,,1,,Europe/Paris,,OIF, +OIF:SA:9:1431,1,"Parc du Mont Evrain",48.867352,2.757532,,1,,Europe/Paris,,OIF, +OIF:SA:9:1433,1,"Collège",48.871548,2.765536,,1,,Europe/Paris,,OIF, +OIF:SA:9:1435,1,"Les Écoles",48.880401,2.770454,,1,,Europe/Paris,,OIF, +OIF:SA:9:1437,1,"Chessy Mairie",48.879105,2.767146,,1,,Europe/Paris,,OIF, +OIF:SA:9:1440,1,"Renaissance",48.881588,2.661292,,1,,Europe/Paris,,OIF, +OIF:SA:9:1441,1,"ZA Prieuré",48.839492,2.792612,,1,,Europe/Paris,,OIF, +OIF:SA:9:1443,1,"Garonne",48.852516,2.786339,,1,,Europe/Paris,,OIF, +OIF:SA:9:1447,1,"La Boucle des 3 Ormes",48.877532,2.813215,,1,,Europe/Paris,,OIF, +OIF:SA:9:1449,1,"Rome",48.832646,2.739362,,1,,Europe/Paris,,OIF, +OIF:SA:9:1451,1,"Prague",48.852979,2.764409,,1,,Europe/Paris,,OIF, +OIF:SA:9:1457,1,"Centre Hospitalier",48.849949,2.768599,,1,,Europe/Paris,,OIF, +OIF:SA:9:1460,1,"Collège le Luzard",48.84628,2.613586,,1,,Europe/Paris,,OIF, +OIF:SA:9:1463,1,"Château",48.852394,2.604474,,1,,Europe/Paris,,OIF, +OIF:SA:9:1465,1,"Eugène Isabey",48.85536,2.763455,,1,,Europe/Paris,,OIF, +OIF:SA:9:1469,1,"Fontaine Rouge",48.854868,2.7715,,1,,Europe/Paris,,OIF, +OIF:SA:9:1470,1,"Gare SNCF",48.734493,2.868221,,1,,Europe/Paris,,OIF, +OIF:SA:9:1471,1,"Érable",48.852516,2.668771,,1,,Europe/Paris,,OIF, +OIF:SA:9:1473,1,"Centre Urbain (Accès RER)",48.853598,2.773328,,1,,Europe/Paris,,OIF, +OIF:SA:9:1487,1,"Centre Aquatique",48.844899,2.801661,,1,,Europe/Paris,,OIF, +OIF:SA:9:1491,1,"Gonière",48.757393,2.864771,,1,,Europe/Paris,,OIF, +OIF:SA:9:1495,1,"Hôtels du Val de France",48.877734,2.806438,,1,,Europe/Paris,,OIF, +OIF:SA:9:1497,1,"Coulée Verte",48.872012,2.813573,,1,,Europe/Paris,,OIF, +OIF:SA:9:1503,1,"Mairie",48.856366,2.784336,,1,,Europe/Paris,,OIF, +OIF:SA:9:1507,1,"Lycée Emilie du Châtelet",48.856782,2.778851,,1,,Europe/Paris,,OIF, +OIF:SA:9:1509,1,"Villages Nature",48.83039,2.801082,,1,,Europe/Paris,,OIF, +OIF:SA:9:1517,1,"Villages Nature (RD231)",48.83145,2.801173,,1,,Europe/Paris,,OIF, +OIF:SA:9:1528,1,"CCI",48.837589,2.794243,,1,,Europe/Paris,,OIF, +OIF:SA:9:1533,1,"Centre de Radiologie",48.852886,2.761521,,1,,Europe/Paris,,OIF, +OIF:SA:9:1573,1,"Foyer",48.872474,2.6961,,1,,Europe/Paris,,OIF, +OIF:SA:9:1575,1,"Fort du Bois",48.862413,2.721871,,1,,Europe/Paris,,OIF, +OIF:SA:9:1589,1,"Rue de Bellesmes",48.847643,2.815698,,1,,Europe/Paris,,OIF, +OIF:SA:9:1591,1,"Gérard de Nerval",48.856164,2.719788,,1,,Europe/Paris,,OIF, +OIF:SA:9:1600,1,"Général Leclerc",48.884291,2.714034,,1,,Europe/Paris,,OIF, +OIF:SA:9:1611,1,"Georges Seurat",48.867037,2.706225,,1,,Europe/Paris,,OIF, +OIF:SA:9:1613,1,"Gallieni",48.876452,2.70745,,1,,Europe/Paris,,OIF, +OIF:SA:9:1620,1,"Jeanne d'Arc",48.885062,2.706026,,1,,Europe/Paris,,OIF, +OIF:SA:9:1630,1,"Gambetta",48.885278,2.733802,,1,,Europe/Paris,,OIF, +OIF:SA:9:1651,1,"Gendarmerie",48.876812,2.719989,,1,,Europe/Paris,,OIF, +OIF:SA:9:1661,1,"Jacqueline Auriol",48.845206,2.730125,,1,,Europe/Paris,,OIF, +OIF:SA:9:1665,1,"Bruxelles",48.834346,2.717265,,1,,Europe/Paris,,OIF, +OIF:SA:9:1667,1,"Butte de Vaux",48.832787,2.698276,,1,,Europe/Paris,,OIF, +OIF:SA:9:1670,1,"Mairie",48.861115,2.695545,,1,,Europe/Paris,,OIF, +OIF:SA:9:1671,1,"Branly",48.873884,2.690278,,1,,Europe/Paris,,OIF, +OIF:SA:9:1673,1,"Place Claude Monet",48.854768,2.666899,,1,,Europe/Paris,,OIF, +OIF:SA:9:1675,1,"Centre Culturel",48.868759,2.680557,,1,,Europe/Paris,,OIF, +OIF:SA:9:1681,1,"Cèdre",48.840938,2.667669,,1,,Europe/Paris,,OIF, +OIF:SA:9:1683,1,"Église",48.854599,2.705891,,1,,Europe/Paris,,OIF, +OIF:SA:9:1692,1,"Gutenberg",48.831475,2.729592,,1,,Europe/Paris,,OIF, +OIF:SA:9:1693,1,"Gypse",48.917302,2.712345,,1,,Europe/Paris,,OIF, +OIF:SA:9:1695,1,"Maréchal Foch",48.876134,2.701167,,1,,Europe/Paris,,OIF, +OIF:SA:9:1701,1,"Henri Dunant",48.873108,2.700308,,1,,Europe/Paris,,OIF, +OIF:SA:9:1703,1,"Hauts de Vallières",48.897222,2.711654,,1,,Europe/Paris,,OIF, +OIF:SA:9:1713,1,"Cimetière",48.886663,2.719762,,1,,Europe/Paris,,OIF, +OIF:SA:9:1720,1,"Hazard",48.885659,2.743589,,1,,Europe/Paris,,OIF, +OIF:SA:9:1731,1,"Anne Frank",48.778365,2.679952,,1,,Europe/Paris,,OIF, +OIF:SA:9:1733,1,"Saint-Jean",48.876108,2.697985,,1,,Europe/Paris,,OIF, +OIF:SA:9:1760,1,"Victor Hugo",48.886087,2.71725,,1,,Europe/Paris,,OIF, +OIF:SA:9:1763,1,"Intermarché",48.867897,2.677186,,1,,Europe/Paris,,OIF, +OIF:SA:9:1770,1,"Île de Loisirs",48.916692,2.738106,,1,,Europe/Paris,,OIF, +OIF:SA:9:1780,1,"Marie Hélène",48.827051,2.701721,,1,,Europe/Paris,,OIF, +OIF:SA:9:1783,1,"Jacquard",48.874082,2.685749,,1,,Europe/Paris,,OIF, +OIF:SA:9:1790,1,"Victoire",48.870695,2.704848,,1,,Europe/Paris,,OIF, +OIF:SA:9:1811,1,"Joncs",48.870147,2.683666,,1,,Europe/Paris,,OIF, +OIF:SA:9:1820,1,"Jules Ferry",48.811989,2.828665,,1,,Europe/Paris,,OIF, +OIF:SA:9:1830,1,"Juliette Vadel",48.889434,2.743401,,1,,Europe/Paris,,OIF, +OIF:SA:9:1841,1,"Kennedy",48.870878,2.690428,,1,,Europe/Paris,,OIF, +OIF:SA:9:1851,1,"La Chanée",48.920424,2.715586,,1,,Europe/Paris,,OIF, +OIF:SA:9:1860,1,"La Croix",48.901831,2.706541,,1,,Europe/Paris,,OIF, +OIF:SA:9:1874,1,"La Haye",48.831002,2.725627,,1,,Europe/Paris,,OIF, +OIF:SA:9:1881,1,"La Paix",48.883546,2.720679,,1,,Europe/Paris,,OIF, +OIF:SA:9:1883,1,"La Petite Jonchère",48.851428,2.737478,,1,,Europe/Paris,,OIF, +OIF:SA:9:1891,1,"La Pointe",48.878229,2.690567,,1,,Europe/Paris,,OIF, +OIF:SA:9:1893,1,"La Violette",48.912023,2.71067,,1,,Europe/Paris,,OIF, +OIF:SA:9:1910,1,"Lambuis",48.887247,2.744297,,1,,Europe/Paris,,OIF, +OIF:SA:9:1921,1,"Lavoir",48.835599,2.674143,,1,,Europe/Paris,,OIF, +OIF:SA:9:1923,1,"Le Gasset",48.855363,2.743127,,1,,Europe/Paris,,OIF, +OIF:SA:9:1933,1,"Le Notre",48.851518,2.704038,,1,,Europe/Paris,,OIF, +OIF:SA:9:1950,1,"Zone Industrielle 2",48.829443,2.677002,,1,,Europe/Paris,,OIF, +OIF:SA:9:1951,1,"Le Rû",48.858965,2.719564,,1,,Europe/Paris,,OIF, +OIF:SA:9:1958,1,"Moulin",48.828184,2.674407,,1,,Europe/Paris,,OIF, +OIF:SA:9:1970,1,"Zone Industrielle 4",48.829854,2.671791,,1,,Europe/Paris,,OIF, +OIF:SA:9:1971,1,"Les 2 Châteaux",48.852512,2.715308,,1,,Europe/Paris,,OIF, +OIF:SA:9:1973,1,"Maison de Retraite",48.854137,2.709933,,1,,Europe/Paris,,OIF, +OIF:SA:9:1975,1,"ZA de Vallières",48.898428,2.712706,,1,,Europe/Paris,,OIF, +OIF:SA:9:1980,1,"Les Chênes",48.884937,2.69094,,1,,Europe/Paris,,OIF, +OIF:SA:9:1985,1,"Jacques de Thou",48.840197,2.729597,,1,,Europe/Paris,,OIF, +OIF:SA:9:1987,1,"Louis Guibert",48.844145,2.731689,,1,,Europe/Paris,,OIF, +OIF:SA:9:2012,1,"Collège",48.844733,2.737263,,1,,Europe/Paris,,OIF, +OIF:SA:9:2031,1,"Roseraie",48.824206,2.706247,,1,,Europe/Paris,,OIF, +OIF:SA:9:2037,1,"Georges Méliès",48.834978,2.720585,,1,,Europe/Paris,,OIF, +OIF:SA:9:2041,1,"Centre Commercial",48.826493,2.70512,,1,,Europe/Paris,,OIF, +OIF:SA:9:500,1,"Pasteur (Collège les Tilleuls)",48.941986,2.682257,,1,,Europe/Paris,,OIF, +OIF:SA:9:501,1,"Pré de Bray",48.859276,2.814839,,1,,Europe/Paris,,OIF, +OIF:SA:9:510,1,"Les Blancherons",48.889477,2.713786,,1,,Europe/Paris,,OIF, +OIF:SA:9:525,1,"Place",48.763346,2.774351,,1,,Europe/Paris,,OIF, +OIF:SA:9:527,1,"Marronnier",48.768002,2.775607,,1,,Europe/Paris,,OIF, +OIF:SA:9:531,1,"Saint-Ouen",48.754398,2.768328,,1,,Europe/Paris,,OIF, +OIF:SA:9:590,1,"Dhuis",48.89019,2.727025,,1,,Europe/Paris,,OIF, +OIF:SA:9:591,1,"Rie",48.871717,2.68168,,1,,Europe/Paris,,OIF, +OIF:SA:9:593,1,"Commissariat",48.861368,2.786729,,1,,Europe/Paris,,OIF, +OIF:SA:9:595,1,"Le Gibet",48.826467,2.790687,,1,,Europe/Paris,,OIF, +OIF:SA:9:596,1,"Église",48.815917,2.793773,,1,,Europe/Paris,,OIF, +OIF:SA:9:601,1,"Le Cantou",48.85914,2.742517,,1,,Europe/Paris,,OIF, +OIF:SA:9:603,1,"Rougeriots",48.85501,2.746666,,1,,Europe/Paris,,OIF, +OIF:SA:9:605,1,"L'Orée du Bois",48.86059,2.73633,,1,,Europe/Paris,,OIF, +OIF:SA:9:607,1,"Bout Pecheret",48.83391,2.753544,,1,,Europe/Paris,,OIF, +OIF:SA:9:609,1,"Mendès France",48.831688,2.709465,,1,,Europe/Paris,,OIF, +OIF:SA:9:615,1,"Saint-Eloi",48.882973,2.772254,,1,,Europe/Paris,,OIF, +OIF:SA:9:617,1,"Artisans",48.8826,2.772332,,1,,Europe/Paris,,OIF, +OIF:SA:9:621,1,"Lycée Martin Luther King",48.838867,2.718639,,1,,Europe/Paris,,OIF, +OIF:SA:9:623,1,"Lys",48.8435,2.715841,,1,,Europe/Paris,,OIF, +OIF:SA:9:633,1,"Alembert",48.87769,2.732006,,1,,Europe/Paris,,OIF, +OIF:SA:9:635,1,"Les Marmousets",48.850411,2.786886,,1,,Europe/Paris,,OIF, +OIF:SA:9:637,1,"Les Pléiades",48.841285,2.784193,,1,,Europe/Paris,,OIF, +OIF:SA:9:640,1,"Alger / Lions",48.885045,2.730911,,1,,Europe/Paris,,OIF, +OIF:SA:9:647,1,"Jean Mermoz",48.864365,2.71863,,1,,Europe/Paris,,OIF, +OIF:SA:9:650,1,"Allée du Château",48.883771,2.727426,,1,,Europe/Paris,,OIF, +OIF:SA:9:651,1,"Metz",48.878133,2.711741,,1,,Europe/Paris,,OIF, +OIF:SA:9:657,1,"Rue du Moulin à Vent",48.866939,2.809031,,1,,Europe/Paris,,OIF, +OIF:SA:9:660,1,"Lièvre",48.89017,2.721995,,1,,Europe/Paris,,OIF, +OIF:SA:9:663,1,"Alsace Lorraine",48.871009,2.700409,,1,,Europe/Paris,,OIF, +OIF:SA:9:671,1,"Ampère",48.875705,2.68546,,1,,Europe/Paris,,OIF, +OIF:SA:9:677,1,"Orly Parc",48.874441,2.723305,,1,,Europe/Paris,,OIF, +OIF:SA:9:683,1,"Orme Bossu",48.864883,2.709513,,1,,Europe/Paris,,OIF, +OIF:SA:9:685,1,"Paul Claudel",48.852966,2.717912,,1,,Europe/Paris,,OIF, +OIF:SA:9:687,1,"Palissy",48.838701,2.705554,,1,,Europe/Paris,,OIF, +OIF:SA:9:690,1,"Les Cordonniers",48.888103,2.7275,,1,,Europe/Paris,,OIF, +OIF:SA:9:693,1,"Parc d'Activités",48.82785,2.706423,,1,,Europe/Paris,,OIF, +OIF:SA:9:695,1,"Parc",48.881458,2.630215,,1,,Europe/Paris,,OIF, +OIF:SA:9:697,1,"Parc de l'Esplanade",48.861983,2.674042,,1,,Europe/Paris,,OIF, +OIF:SA:9:700,1,"Arthur Boucher",48.885587,2.740782,,1,,Europe/Paris,,OIF, +OIF:SA:9:702,1,"Poste",48.833056,2.727126,,1,,Europe/Paris,,OIF, +OIF:SA:9:711,1,"Arzillières",48.940511,2.694826,,1,,Europe/Paris,,OIF, +OIF:SA:9:713,1,"Aureau",48.878409,2.694894,,1,,Europe/Paris,,OIF, +OIF:SA:9:715,1,"Violaine",48.826662,2.711274,,1,,Europe/Paris,,OIF, +OIF:SA:9:716,1,"Parc du Bel Air",48.826722,2.717999,,1,,Europe/Paris,,OIF, +OIF:SA:9:717,1,"Cordier",48.824629,2.711844,,1,,Europe/Paris,,OIF, +OIF:SA:9:720,1,"Froëlicher",48.824099,2.723084,,1,,Europe/Paris,,OIF, +OIF:SA:9:721,1,"Avenue de l'Europe 1",48.832261,2.720082,,1,,Europe/Paris,,OIF, +OIF:SA:9:725,1,"Parmentier",48.888621,2.70456,,1,,Europe/Paris,,OIF, +OIF:SA:9:727,1,"Louis Pasteur",48.885579,2.771342,,1,,Europe/Paris,,OIF, +OIF:SA:9:729,1,"Impératrice Eugénie",48.822123,2.714372,,1,,Europe/Paris,,OIF, +OIF:SA:9:730,1,"Lycée Van Dongen",48.867305,2.719646,,1,,Europe/Paris,,OIF, +OIF:SA:9:731,1,"Beau Site",48.869767,2.702723,,1,,Europe/Paris,,OIF, +OIF:SA:9:733,1,"Charles Baudelaire",48.854289,2.721518,,1,,Europe/Paris,,OIF, +OIF:SA:9:740,1,"Mauperthuis (Lycée Champs de Claye)",48.938041,2.675969,,1,,Europe/Paris,,OIF, +OIF:SA:9:745,1,"Piscine",48.871246,2.718067,,1,,Europe/Paris,,OIF, +OIF:SA:9:747,1,"Place du Clos",48.842221,2.705184,,1,,Europe/Paris,,OIF, +OIF:SA:9:757,1,"Place Thomas le Pileur",48.845547,2.782691,,1,,Europe/Paris,,OIF, +OIF:SA:9:761,1,"Bicheret",48.873154,2.752232,,1,,Europe/Paris,,OIF, +OIF:SA:9:763,1,"Binaches",48.868946,2.752709,,1,,Europe/Paris,,OIF, +OIF:SA:9:765,1,"Plaine",48.853105,2.67156,,1,,Europe/Paris,,OIF, +OIF:SA:9:771,1,"Glacière",48.878665,2.756956,,1,,Europe/Paris,,OIF, +OIF:SA:9:775,1,"Bois de la Marne",48.87954,2.672262,,1,,Europe/Paris,,OIF, +OIF:SA:9:777,1,"Château",48.880181,2.679325,,1,,Europe/Paris,,OIF, +OIF:SA:9:782,1,"Bois de Bussy",48.831781,2.732085,,1,,Europe/Paris,,OIF, +OIF:SA:9:783,1,"Bois de Loselet",48.866606,2.762689,,1,,Europe/Paris,,OIF, +OIF:SA:9:785,1,"Mairie",48.881422,2.691161,,1,,Europe/Paris,,OIF, +OIF:SA:9:787,1,"Portes de la Forêt",48.829059,2.681036,,1,,Europe/Paris,,OIF, +OIF:SA:9:790,1,"Aubépines",48.890842,2.725585,,1,,Europe/Paris,,OIF, +OIF:SA:9:797,1,"Pouzol",48.878056,2.715985,,1,,Europe/Paris,,OIF, +OIF:SA:9:801,1,"Pré Longuet",48.833419,2.67583,,1,,Europe/Paris,,OIF, +OIF:SA:9:805,1,"Poste",48.83763,2.67116,,1,,Europe/Paris,,OIF, +OIF:SA:9:807,1,"Remise aux Fraises",48.850623,2.629598,,1,,Europe/Paris,,OIF, +OIF:SA:9:810,1,"Bordes",48.888042,2.721298,,1,,Europe/Paris,,OIF, +OIF:SA:9:813,1,"Rentilly",48.846463,2.673226,,1,,Europe/Paris,,OIF, +OIF:SA:9:819,1,"Foch / Paix Notre-Dame",48.877149,2.701428,,1,,Europe/Paris,,OIF, +OIF:SA:9:820,1,"Sente des Vignes",48.888321,2.724149,,1,,Europe/Paris,,OIF, +OIF:SA:9:825,1,"Rond-Point",48.843218,2.668691,,1,,Europe/Paris,,OIF, +OIF:SA:9:827,1,"Rue du Port",48.883016,2.715183,,1,,Europe/Paris,,OIF, +OIF:SA:9:831,1,"Sablons",48.856012,2.671973,,1,,Europe/Paris,,OIF, +OIF:SA:9:835,1,"Sente Verte",48.87246,2.693143,,1,,Europe/Paris,,OIF, +OIF:SA:9:837,1,"Sodis",48.877307,2.686343,,1,,Europe/Paris,,OIF, +OIF:SA:9:843,1,"Buissonière",48.840446,2.715247,,1,,Europe/Paris,,OIF, +OIF:SA:9:845,1,"Sophora",48.875948,2.750101,,1,,Europe/Paris,,OIF, +OIF:SA:9:848,1,"Strasbourg",48.831973,2.733789,,1,,Europe/Paris,,OIF, +OIF:SA:9:853,1,"Saint-Germains des Noyers",48.852737,2.664945,,1,,Europe/Paris,,OIF, +OIF:SA:9:855,1,"Saint-Joseph",48.875354,2.703593,,1,,Europe/Paris,,OIF, +OIF:SA:9:861,1,"Mairie",48.849844,2.689999,,1,,Europe/Paris,,OIF, +OIF:SA:9:863,1,"Rue du Parc",48.849235,2.692167,,1,,Europe/Paris,,OIF, +OIF:SA:9:865,1,"Terres Fortes",48.853048,2.739418,,1,,Europe/Paris,,OIF, +OIF:SA:9:867,1,"Tête Noire",48.8667,2.698819,,1,,Europe/Paris,,OIF, +OIF:SA:9:881,1,"Cabane Noire",48.877909,2.741689,,1,,Europe/Paris,,OIF, +OIF:SA:9:883,1,"Calvaire",48.895448,2.774587,,1,,Europe/Paris,,OIF, +OIF:SA:9:887,1,"Avenue de l'Europe",48.831967,2.717704,,1,,Europe/Paris,,OIF, +OIF:SA:9:890,1,"Le Calvaire",48.862862,2.694712,,1,,Europe/Paris,,OIF, +OIF:SA:9:891,1,"Thuyas",48.865329,2.716389,,1,,Europe/Paris,,OIF, +OIF:SA:9:895,1,"Mairie de Torcy",48.850802,2.652853,,1,,Europe/Paris,,OIF, +OIF:SA:9:897,1,"Tournelle Saint-Martin",48.93091,2.717449,,1,,Europe/Paris,,OIF, +OIF:SA:9:900,1,"Mairie",48.899171,2.706236,,1,,Europe/Paris,,OIF, +OIF:SA:9:903,1,"Vaillant",48.892351,2.773682,,1,,Europe/Paris,,OIF, +OIF:SA:9:907,1,"Verdun",48.878829,2.701581,,1,,Europe/Paris,,OIF, +OIF:SA:9:910,1,"Mairie",48.875136,2.745673,,1,,Europe/Paris,,OIF, +OIF:SA:9:911,1,"Carnot",48.88686,2.703089,,1,,Europe/Paris,,OIF, +OIF:SA:9:915,1,"Victor Hugo",48.858792,2.689467,,1,,Europe/Paris,,OIF, +OIF:SA:9:917,1,"Mairie",48.816079,2.792543,,1,,Europe/Paris,,OIF, +OIF:SA:9:920,1,"Moulin à Vent",48.828254,2.699265,,1,,Europe/Paris,,OIF, +OIF:SA:9:923,1,"Cerisiers",48.890571,2.706161,,1,,Europe/Paris,,OIF, +OIF:SA:9:927,1,"Des Carrières",48.828844,2.679312,,1,,Europe/Paris,,OIF, +OIF:SA:9:941,1,"Mairie",48.868803,2.688404,,1,,Europe/Paris,,OIF, +OIF:SA:9:945,1,"Louis Pasteur",48.860495,2.691072,,1,,Europe/Paris,,OIF, +OIF:SA:9:950,1,"Paul Doumer",48.888373,2.710766,,1,,Europe/Paris,,OIF, +OIF:SA:9:953,1,"Château",48.887247,2.772133,,1,,Europe/Paris,,OIF, +OIF:SA:9:955,1,"Bois Prieur",48.776127,2.678414,,1,,Europe/Paris,,OIF, +OIF:SA:9:957,1,"Circulaire - Magny",48.873728,2.803479,,1,,Europe/Paris,,OIF, +OIF:SA:9:971,1,"Mairie",48.856851,2.738957,,1,,Europe/Paris,,OIF, +OIF:SA:9:973,1,"Carrouge",48.923602,2.711034,,1,,Europe/Paris,,OIF, +OIF:SA:9:990,1,"Chantrennes",48.886807,2.722625,,1,,Europe/Paris,,OIF, +OIF:SP:10:10,1,"Avenue de l'Essonne",48.647164,2.413618,0,0,OIF:SA:10:10,Europe/Paris,,OIF, +OIF:SP:10:100,1,"Clinique",48.637671,2.426624,0,0,OIF:SA:10:100,Europe/Paris,,OIF, +OIF:SP:10:1002,1,"Maison de l'Enfance",48.599069,2.429498,0,0,OIF:SA:10:1002,Europe/Paris,,OIF, +OIF:SP:10:1003,1,"Maison de l'Enfance",48.599132,2.429539,0,0,OIF:SA:10:1002,Europe/Paris,,OIF, +OIF:SP:10:1004,1,"Complexe Sportif",48.601978,2.423431,0,0,OIF:SA:10:1004,Europe/Paris,,OIF, +OIF:SP:10:1005,1,"Léonard de Vinci",48.604161,2.412321,0,0,OIF:SA:10:1005,Europe/Paris,,OIF, +OIF:SP:10:1006,1,"Ferme des Folies",48.607964,2.410496,0,0,OIF:SA:10:1006,Europe/Paris,,OIF, +OIF:SP:10:1007,1,"Clément Ader",48.622081,2.354396,0,0,OIF:SA:10:1007,Europe/Paris,,OIF, +OIF:SP:10:1008,1,"Ferme des Folies",48.607478,2.411092,0,0,OIF:SA:10:1006,Europe/Paris,,OIF, +OIF:SP:10:1009,1,"Léonard de Vinci",48.603486,2.412672,0,0,OIF:SA:10:1005,Europe/Paris,,OIF, +OIF:SP:10:101,1,"Collège Paul Éluard",48.636042,2.343781,0,0,OIF:SA:10:101,Europe/Paris,,OIF, +OIF:SP:10:1015,1,"Mairie",48.598084,2.424916,0,0,OIF:SA:10:1015,Europe/Paris,,OIF, +OIF:SP:10:1016,1,"Église Sacré Cœur",48.649881,2.409362,0,0,OIF:SA:10:1016,Europe/Paris,,OIF, +OIF:SP:10:102,1,"Collège Paul Éluard",48.636743,2.344107,0,0,OIF:SA:10:101,Europe/Paris,,OIF, +OIF:SP:10:106,1,"Les Coccinelles",48.614356,2.368533,0,0,OIF:SA:10:106,Europe/Paris,,OIF, +OIF:SP:10:11,1,"Avenue de l'Essonne",48.647253,2.41492,0,0,OIF:SA:10:10,Europe/Paris,,OIF, +OIF:SP:10:110,1,"Clos aux Pois",48.600188,2.436331,0,0,OIF:SA:10:110,Europe/Paris,,OIF, +OIF:SP:10:111,1,"Collège Paul Fort",48.618696,2.411894,0,0,OIF:SA:10:111,Europe/Paris,,OIF, +OIF:SP:10:112,1,"Collège Paul Fort",48.618939,2.411623,0,0,OIF:SA:10:111,Europe/Paris,,OIF, +OIF:SP:10:1144,1,"Les Miroirs",48.631512,2.428851,0,0,OIF:SA:10:1144,Europe/Paris,,OIF, +OIF:SP:10:1145,1,"Agora",48.627647,2.428396,0,0,OIF:SA:10:1145,Europe/Paris,,OIF, +OIF:SP:10:1146,1,"Évry-Courcouronnes Centre",48.626047,2.428204,0,0,OIF:SA:8768138,Europe/Paris,,OIF, +OIF:SP:10:1147,1,"Évry-Courcouronnes Centre",48.626065,2.428475,0,0,OIF:SA:8768138,Europe/Paris,,OIF, +OIF:SP:10:1148,1,"Agora",48.62824,2.428601,0,0,OIF:SA:10:1145,Europe/Paris,,OIF, +OIF:SP:10:1149,1,"Les Miroirs",48.631925,2.429041,0,0,OIF:SA:10:1144,Europe/Paris,,OIF, +OIF:SP:10:115,1,"Les Closeaux Saint-Spire",48.622499,2.373908,0,0,OIF:SA:10:115,Europe/Paris,,OIF, +OIF:SP:10:1150,1,"Évry-Courcouronnes Centre",48.626092,2.42834,0,0,OIF:SA:8768138,Europe/Paris,,OIF, +OIF:SP:10:1151,1,"Agora",48.627836,2.428532,0,0,OIF:SA:10:1145,Europe/Paris,,OIF, +OIF:SP:10:1152,1,"Marché",48.653524,2.357297,0,0,OIF:SA:10:1152,Europe/Paris,,OIF, +OIF:SP:10:1153,1,"Marché",48.65356,2.357419,0,0,OIF:SA:10:1152,Europe/Paris,,OIF, +OIF:SP:10:1154,1,"Agora",48.628051,2.428465,0,0,OIF:SA:10:1145,Europe/Paris,,OIF, +OIF:SP:10:1155,1,"Évry-Courcouronnes Centre",48.6254,2.428257,0,0,OIF:SA:8768138,Europe/Paris,,OIF, +OIF:SP:10:1156,1,"Les Miroirs",48.631611,2.428946,0,0,OIF:SA:10:1144,Europe/Paris,,OIF, +OIF:SP:10:1157,1,"Évry-Courcouronnes Centre",48.625696,2.428135,0,0,OIF:SA:8768138,Europe/Paris,,OIF, +OIF:SP:10:1158,1,"Les Coccinelles",48.61441,2.368669,0,0,OIF:SA:10:106,Europe/Paris,,OIF, +OIF:SP:10:1159,1,"Rue des Clos",48.613114,2.376111,0,0,OIF:SA:10:1159,Europe/Paris,,OIF, +OIF:SP:10:116,1,"Les Closeaux Saint-Spire",48.622598,2.373759,0,0,OIF:SA:10:115,Europe/Paris,,OIF, +OIF:SP:10:1160,1,"Évry-Courcouronnes Centre",48.625678,2.428379,0,0,OIF:SA:8768138,Europe/Paris,,OIF, +OIF:SP:10:1161,1,"Agora",48.627997,2.428492,0,0,OIF:SA:10:1145,Europe/Paris,,OIF, +OIF:SP:10:1162,1,"Les Miroirs",48.631835,2.429055,0,0,OIF:SA:10:1144,Europe/Paris,,OIF, +OIF:SP:10:1163,1,"Agora",48.627899,2.428424,0,0,OIF:SA:10:1145,Europe/Paris,,OIF, +OIF:SP:10:1164,1,"Évry-Courcouronnes Centre",48.625319,2.428013,0,0,OIF:SA:8768138,Europe/Paris,,OIF, +OIF:SP:10:1165,1,"Exona",48.606785,2.44735,0,0,OIF:SA:10:1165,Europe/Paris,,OIF, +OIF:SP:10:1166,1,"Marques Avenue",48.609057,2.449253,0,0,OIF:SA:10:1166,Europe/Paris,,OIF, +OIF:SP:10:1168,1,"Marques Avenue",48.609084,2.449063,0,0,OIF:SA:10:1166,Europe/Paris,,OIF, +OIF:SP:10:1169,1,"Exona",48.606425,2.447526,0,0,OIF:SA:10:1165,Europe/Paris,,OIF, +OIF:SP:10:117,1,"Chemin du Vexin",48.610685,2.415258,0,0,OIF:SA:10:117,Europe/Paris,,OIF, +OIF:SP:10:1170,1,"Évry-Courcouronnes Centre",48.625418,2.42842,0,0,OIF:SA:8768138,Europe/Paris,,OIF, +OIF:SP:10:1171,1,"Terminal David Douillet",48.563101,2.491748,0,0,OIF:SA:10:1171,Europe/Paris,,OIF, +OIF:SP:10:1172,1,"Éperon",48.64468,2.34522,0,0,OIF:SA:10:1172,Europe/Paris,,OIF, +OIF:SP:10:1173,1,"Bois Clairs",48.642919,2.341286,0,0,OIF:SA:10:1173,Europe/Paris,,OIF, +OIF:SP:10:1174,1,"Guy Môquet",48.640968,2.336973,0,0,OIF:SA:10:1174,Europe/Paris,,OIF, +OIF:SP:10:1175,1,"A.Briand",48.633741,2.330151,0,0,OIF:SA:10:1175,Europe/Paris,,OIF, +OIF:SP:10:1176,1,"Coquelicots",48.631395,2.328131,0,0,OIF:SA:10:1176,Europe/Paris,,OIF, +OIF:SP:10:1177,1,"La Tour",48.6341,2.322869,0,0,OIF:SA:10:1177,Europe/Paris,,OIF, +OIF:SP:10:1178,1,"La Tour",48.633983,2.322841,0,0,OIF:SA:10:1177,Europe/Paris,,OIF, +OIF:SP:10:1179,1,"Coquelicots",48.631188,2.328389,0,0,OIF:SA:10:1176,Europe/Paris,,OIF, +OIF:SP:10:118,1,"Chemin du Vexin",48.611072,2.414147,0,0,OIF:SA:10:117,Europe/Paris,,OIF, +OIF:SP:10:1180,1,"A.Briand",48.634658,2.330734,0,0,OIF:SA:10:1175,Europe/Paris,,OIF, +OIF:SP:10:1181,1,"Guy Môquet",48.641094,2.337516,0,0,OIF:SA:10:1174,Europe/Paris,,OIF, +OIF:SP:10:1182,1,"Bois Clairs",48.643134,2.341951,0,0,OIF:SA:10:1173,Europe/Paris,,OIF, +OIF:SP:10:1183,1,"Éperon",48.644572,2.345098,0,0,OIF:SA:10:1172,Europe/Paris,,OIF, +OIF:SP:10:1185,1,"Résidence",48.639042,2.361862,0,0,OIF:SA:10:1185,Europe/Paris,,OIF, +OIF:SP:10:1186,1,"La Greffière",48.64101,2.364697,0,0,OIF:SA:10:1186,Europe/Paris,,OIF, +OIF:SP:10:1187,1,"Jeunes Détenus",48.641116,2.369757,0,0,OIF:SA:10:1187,Europe/Paris,,OIF, +OIF:SP:10:1188,1,"Maison d'Arrêt des Hommes",48.640692,2.375575,0,0,OIF:SA:10:1188,Europe/Paris,,OIF, +OIF:SP:10:1189,1,"Maison d'Arrêt des Femmes",48.64016,2.380065,0,0,OIF:SA:10:1189,Europe/Paris,,OIF, +OIF:SP:10:119,1,"Chemin Vert-Piscine",48.613229,2.415059,0,0,OIF:SA:10:119,Europe/Paris,,OIF, +OIF:SP:10:1190,1,"Condorcet",48.644456,2.381628,0,0,OIF:SA:10:1190,Europe/Paris,,OIF, +OIF:SP:10:1191,1,"René Clair",48.646073,2.384166,0,0,OIF:SA:10:1191,Europe/Paris,,OIF, +OIF:SP:10:1192,1,"Jean-Jacques Rousseau",48.648079,2.380532,0,0,OIF:SA:10:1192,Europe/Paris,,OIF, +OIF:SP:10:1193,1,"Parc des Sports",48.646418,2.376244,0,0,OIF:SA:10:1193,Europe/Paris,,OIF, +OIF:SP:10:1194,1,"Piscine",48.648018,2.375404,0,0,OIF:SA:10:1194,Europe/Paris,,OIF, +OIF:SP:10:1196,1,"Piscine",48.648072,2.375255,0,0,OIF:SA:10:1194,Europe/Paris,,OIF, +OIF:SP:10:1197,1,"Parc des Sports",48.646391,2.376394,0,0,OIF:SA:10:1193,Europe/Paris,,OIF, +OIF:SP:10:1198,1,"Jean-Jacques Rousseau",48.648052,2.380709,0,0,OIF:SA:10:1192,Europe/Paris,,OIF, +OIF:SP:10:1199,1,"René Clair",48.645849,2.384356,0,0,OIF:SA:10:1191,Europe/Paris,,OIF, +OIF:SP:10:120,1,"Chemin Vert-Piscine",48.613166,2.415208,0,0,OIF:SA:10:119,Europe/Paris,,OIF, +OIF:SP:10:1200,1,"Condorcet",48.644501,2.381208,0,0,OIF:SA:10:1190,Europe/Paris,,OIF, +OIF:SP:10:1201,1,"Maison d'Arrêt des Femmes",48.640457,2.380621,0,0,OIF:SA:10:1189,Europe/Paris,,OIF, +OIF:SP:10:1202,1,"Maison d'Arrêt des Hommes",48.640881,2.374328,0,0,OIF:SA:10:1188,Europe/Paris,,OIF, +OIF:SP:10:1203,1,"Jeunes Détenus",48.640792,2.37114,0,0,OIF:SA:10:1187,Europe/Paris,,OIF, +OIF:SP:10:1204,1,"Résidence",48.639078,2.361468,0,0,OIF:SA:10:1185,Europe/Paris,,OIF, +OIF:SP:10:1207,1,"Mairie",48.56613,2.484781,0,0,OIF:SA:10:1207,Europe/Paris,,OIF, +OIF:SP:10:1208,1,"L'Ermitage",48.591794,2.477564,0,0,OIF:SA:10:1208,Europe/Paris,,OIF, +OIF:SP:10:1209,1,"L'Ermitage",48.592082,2.477443,0,0,OIF:SA:10:1208,Europe/Paris,,OIF, +OIF:SP:10:121,1,"Daumesnil",48.650749,2.415156,0,0,OIF:SA:8798315,Europe/Paris,,OIF, +OIF:SP:10:1210,1,"Mairie",48.566229,2.484321,0,0,OIF:SA:10:1207,Europe/Paris,,OIF, +OIF:SP:10:1211,1,"Évry Val de Seine",48.633639,2.452927,0,0,OIF:SA:8768136,Europe/Paris,,OIF, +OIF:SP:10:1212,1,"Évry Val de Seine",48.6331,2.452302,0,0,OIF:SA:8768136,Europe/Paris,,OIF, +OIF:SP:10:1213,1,"Gare RER",48.613744,2.471496,0,0,OIF:SA:8768100,Europe/Paris,,OIF, +OIF:SP:10:1214,1,"Gare RER",48.613699,2.471916,0,0,OIF:SA:8768100,Europe/Paris,,OIF, +OIF:SP:10:1215,1,"Gare RER",48.613816,2.471862,0,0,OIF:SA:8768100,Europe/Paris,,OIF, +OIF:SP:10:1216,1,"Évry Val de Seine",48.634225,2.451016,0,0,OIF:SA:8768136,Europe/Paris,,OIF, +OIF:SP:10:1217,1,"Petits Bois",48.632933,2.438333,0,0,OIF:SA:10:1217,Europe/Paris,,OIF, +OIF:SP:10:1218,1,"Évry Val de Seine",48.634297,2.451247,0,0,OIF:SA:8768136,Europe/Paris,,OIF, +OIF:SP:10:1219,1,"Gare du Bras de Fer RER",48.623556,2.450531,0,0,OIF:SA:8768139,Europe/Paris,,OIF, +OIF:SP:10:122,1,"Daumesnil",48.650668,2.415006,0,0,OIF:SA:8798315,Europe/Paris,,OIF, +OIF:SP:10:1220,1,"Clément Ader",48.621982,2.355847,0,0,OIF:SA:10:1007,Europe/Paris,,OIF, +OIF:SP:10:1221,1,"Rond-Point Hôpital",48.62204,2.45644,0,0,OIF:SA:10:1221,Europe/Paris,,OIF, +OIF:SP:10:1222,1,"Rond-Point Hôpital",48.621625,2.45751,0,0,OIF:SA:10:1221,Europe/Paris,,OIF, +OIF:SP:10:1223,1,"Hôpital Sud Francilien",48.619776,2.454509,0,0,OIF:SA:10:1223,Europe/Paris,,OIF, +OIF:SP:10:1224,1,"Hôpital Sud Francilien",48.619677,2.454333,0,0,OIF:SA:10:1223,Europe/Paris,,OIF, +OIF:SP:10:1225,1,"Le Grippet",48.623745,2.45883,0,0,OIF:SA:10:1225,Europe/Paris,,OIF, +OIF:SP:10:1226,1,"Le Grippet",48.623826,2.458803,0,0,OIF:SA:10:1225,Europe/Paris,,OIF, +OIF:SP:10:1227,1,"Louis Bourdet",48.618742,2.394011,0,0,OIF:SA:10:1227,Europe/Paris,,OIF, +OIF:SP:10:1228,1,"Cimetière",48.620161,2.397877,0,0,OIF:SA:10:1228,Europe/Paris,,OIF, +OIF:SP:10:1230,1,"Les Merisiers",48.655916,2.348329,0,0,OIF:SA:10:1230,Europe/Paris,,OIF, +OIF:SP:10:1231,1,"Les Merisiers",48.656348,2.348669,0,0,OIF:SA:10:1230,Europe/Paris,,OIF, +OIF:SP:10:1234,1,"Bois Guillaume",48.638921,2.426178,0,0,OIF:SA:10:1234,Europe/Paris,,OIF, +OIF:SP:10:1235,1,"Route de Mennecy",48.642825,2.422441,0,0,OIF:SA:10:1235,Europe/Paris,,OIF, +OIF:SP:10:1236,1,"Route de Mennecy",48.642555,2.423119,0,0,OIF:SA:10:1235,Europe/Paris,,OIF, +OIF:SP:10:1237,1,"Bois Guillaume",48.638813,2.426232,0,0,OIF:SA:10:1234,Europe/Paris,,OIF, +OIF:SP:10:1238,1,"Bois Bailleul",48.611045,2.398409,0,0,OIF:SA:10:1238,Europe/Paris,,OIF, +OIF:SP:10:1239,1,"Bois Bailleul",48.610938,2.398436,0,0,OIF:SA:10:1238,Europe/Paris,,OIF, +OIF:SP:10:1240,1,"Mairie",48.617449,2.408123,0,0,OIF:SA:10:1240,Europe/Paris,,OIF, +OIF:SP:10:1241,1,"Dédale",48.650302,2.372435,0,0,OIF:SA:10:1241,Europe/Paris,,OIF, +OIF:SP:10:1242,1,"Jean Vilar",48.65005,2.374429,0,0,OIF:SA:10:1242,Europe/Paris,,OIF, +OIF:SP:10:1243,1,"Dédale",48.650437,2.372422,0,0,OIF:SA:10:1241,Europe/Paris,,OIF, +OIF:SP:10:1245,1,"Les Brateaux",48.588126,2.443679,0,0,OIF:SA:10:1245,Europe/Paris,,OIF, +OIF:SP:10:1246,1,"Pyrénées",48.60348,2.43387,0,0,OIF:SA:10:1246,Europe/Paris,,OIF, +OIF:SP:10:1248,1,"Pyrénées",48.603705,2.433654,0,0,OIF:SA:10:1246,Europe/Paris,,OIF, +OIF:SP:10:1249,1,"Jean Vilar",48.650607,2.375732,0,0,OIF:SA:10:1242,Europe/Paris,,OIF, +OIF:SP:10:1258,1,"Henri Dunant",48.595559,2.479512,0,0,OIF:SA:10:1258,Europe/Paris,,OIF, +OIF:SP:10:1259,1,"Henri Dunant",48.594939,2.479361,0,0,OIF:SA:10:1258,Europe/Paris,,OIF, +OIF:SP:10:126,1,"Dauphiné",48.610847,2.427526,0,0,OIF:SA:10:126,Europe/Paris,,OIF, +OIF:SP:10:1260,1,"La Justice",48.562425,2.499438,0,0,OIF:SA:8799063,Europe/Paris,,OIF, +OIF:SP:10:1261,1,"La Justice",48.562325,2.500075,0,0,OIF:SA:8799063,Europe/Paris,,OIF, +OIF:SP:10:1263,1,"Petits Champs",48.621534,2.345271,0,0,OIF:SA:10:1263,Europe/Paris,,OIF, +OIF:SP:10:1264,1,"ZI des Ciroliers",48.623814,2.36218,0,0,OIF:SA:10:1264,Europe/Paris,,OIF, +OIF:SP:10:1265,1,"ZI des Ciroliers",48.62376,2.362112,0,0,OIF:SA:10:1264,Europe/Paris,,OIF, +OIF:SP:10:1266,1,"Clément Ader",48.622081,2.355413,0,0,OIF:SA:10:1007,Europe/Paris,,OIF, +OIF:SP:10:1267,1,"Petits Champs",48.621641,2.345366,0,0,OIF:SA:10:1263,Europe/Paris,,OIF, +OIF:SP:10:127,1,"Dauphiné",48.610487,2.427648,0,0,OIF:SA:10:126,Europe/Paris,,OIF, +OIF:SP:10:1284,1,"ZI Croix Blanche",48.623844,2.342546,0,0,OIF:SA:10:1284,Europe/Paris,,OIF, +OIF:SP:10:1285,1,"Jean Moulin",48.66047,2.367612,0,0,OIF:SA:10:1285,Europe/Paris,,OIF, +OIF:SP:10:1286,1,"Fauvettes",48.645079,2.411837,0,0,OIF:SA:10:1286,Europe/Paris,,OIF, +OIF:SP:10:1287,1,"Rue du Temple",48.642509,2.410518,0,0,OIF:SA:10:1287,Europe/Paris,,OIF, +OIF:SP:10:1288,1,"Le Damier",48.650613,2.382786,0,0,OIF:SA:10:1288,Europe/Paris,,OIF, +OIF:SP:10:1289,1,"Le Damier",48.650092,2.382772,0,0,OIF:SA:10:1288,Europe/Paris,,OIF, +OIF:SP:10:129,1,"Les Demoiselles",48.611574,2.383809,0,0,OIF:SA:10:129,Europe/Paris,,OIF, +OIF:SP:10:1290,1,"Le Damier",48.651755,2.381675,0,0,OIF:SA:10:1288,Europe/Paris,,OIF, +OIF:SP:10:1291,1,"Le Damier",48.651971,2.381309,0,0,OIF:SA:10:1288,Europe/Paris,,OIF, +OIF:SP:10:1294,1,"Galignani",48.645505,2.452072,0,0,OIF:SA:10:1294,Europe/Paris,,OIF, +OIF:SP:10:1295,1,"Complexe Sportif",48.602005,2.423337,0,0,OIF:SA:10:1004,Europe/Paris,,OIF, +OIF:SP:10:1296,1,"Les Tourelles",48.623527,2.461379,0,0,OIF:SA:10:1296,Europe/Paris,,OIF, +OIF:SP:10:1297,1,"Beauvoir",48.62852,2.457336,0,0,OIF:SA:10:1297,Europe/Paris,,OIF, +OIF:SP:10:1298,1,"Beauvoir",48.628547,2.457485,0,0,OIF:SA:10:1297,Europe/Paris,,OIF, +OIF:SP:10:1299,1,"Les Tourelles",48.623634,2.461704,0,0,OIF:SA:10:1296,Europe/Paris,,OIF, +OIF:SP:10:1300,1,"La Demi-Lune",48.576676,2.475816,0,0,OIF:SA:10:1300,Europe/Paris,,OIF, +OIF:SP:10:1301,1,"Cavignon",48.580236,2.476232,0,0,OIF:SA:10:1301,Europe/Paris,,OIF, +OIF:SP:10:1302,1,"Rue du Chêne",48.582959,2.476551,0,0,OIF:SA:10:1302,Europe/Paris,,OIF, +OIF:SP:10:1303,1,"Pressoir Prompt",48.58606,2.476925,0,0,OIF:SA:10:1303,Europe/Paris,,OIF, +OIF:SP:10:1304,1,"Pressoir Prompt",48.585638,2.476748,0,0,OIF:SA:10:1303,Europe/Paris,,OIF, +OIF:SP:10:1305,1,"Rue du Chêne",48.582294,2.476373,0,0,OIF:SA:10:1302,Europe/Paris,,OIF, +OIF:SP:10:1306,1,"Cavignon",48.579715,2.476041,0,0,OIF:SA:10:1301,Europe/Paris,,OIF, +OIF:SP:10:1307,1,"La Demi-Lune",48.576874,2.475735,0,0,OIF:SA:10:1300,Europe/Paris,,OIF, +OIF:SP:10:1310,1,"Edouard Branly",48.619116,2.401442,0,0,OIF:SA:10:1310,Europe/Paris,,OIF, +OIF:SP:10:1311,1,"Cimetière",48.620404,2.39724,0,0,OIF:SA:10:1228,Europe/Paris,,OIF, +OIF:SP:10:1312,1,"Donjon",48.640258,2.335345,0,0,OIF:SA:10:1312,Europe/Paris,,OIF, +OIF:SP:10:1313,1,"Edouard Branly",48.619008,2.401658,0,0,OIF:SA:10:1310,Europe/Paris,,OIF, +OIF:SP:10:1314,1,"Jules Vallès",48.635529,2.429563,0,0,OIF:SA:10:1314,Europe/Paris,,OIF, +OIF:SP:10:1315,1,"Jules Vallès",48.635574,2.42978,0,0,OIF:SA:10:1314,Europe/Paris,,OIF, +OIF:SP:10:1316,1,"Jean Mermoz",48.627382,2.408422,0,0,OIF:SA:10:1316,Europe/Paris,,OIF, +OIF:SP:10:1317,1,"Les Demoiselles",48.611663,2.383809,0,0,OIF:SA:10:129,Europe/Paris,,OIF, +OIF:SP:10:132,1,"J.M. Djibaou",48.617937,2.430738,0,0,OIF:SA:10:132,Europe/Paris,,OIF, +OIF:SP:10:1320,1,"La Serpente",48.654903,2.378652,0,0,OIF:SA:10:1320,Europe/Paris,,OIF, +OIF:SP:10:1321,1,"Les Solstices",48.656325,2.373036,0,0,OIF:SA:10:1321,Europe/Paris,,OIF, +OIF:SP:10:1322,1,"Avenue Jean Mermoz",48.657772,2.371002,0,0,OIF:SA:10:1322,Europe/Paris,,OIF, +OIF:SP:10:1323,1,"Les Solstices",48.656325,2.373036,0,0,OIF:SA:10:1321,Europe/Paris,,OIF, +OIF:SP:10:1324,1,"Guérinière",48.661652,2.34217,0,0,OIF:SA:10:1324,Europe/Paris,,OIF, +OIF:SP:10:1325,1,"Avenue Jean Mermoz",48.65762,2.371341,0,0,OIF:SA:10:1322,Europe/Paris,,OIF, +OIF:SP:10:1326,1,"Les Solstices",48.6569,2.373376,0,0,OIF:SA:10:1321,Europe/Paris,,OIF, +OIF:SP:10:1327,1,"La Serpente",48.65493,2.378517,0,0,OIF:SA:10:1320,Europe/Paris,,OIF, +OIF:SP:10:133,1,"J.M. Djibaou",48.617964,2.430616,0,0,OIF:SA:10:132,Europe/Paris,,OIF, +OIF:SP:10:1330,1,"Collège Paul Éluard",48.622547,2.442855,0,0,OIF:SA:10:1330,Europe/Paris,,OIF, +OIF:SP:10:1331,1,"Institut de Biologie",48.624068,2.440811,0,0,OIF:SA:10:1331,Europe/Paris,,OIF, +OIF:SP:10:1332,1,"Sabatier",48.624858,2.431565,0,0,OIF:SA:10:1332,Europe/Paris,,OIF, +OIF:SP:10:1333,1,"Évry-Courcouronnes Centre",48.625112,2.428446,0,0,OIF:SA:10:1333,Europe/Paris,,OIF, +OIF:SP:10:1334,1,"Blaise Pascal - les Passages",48.62716,2.43047,0,0,OIF:SA:10:1334,Europe/Paris,,OIF, +OIF:SP:10:1335,1,"Les Arènes",48.629164,2.431084,0,0,OIF:SA:10:1335,Europe/Paris,,OIF, +OIF:SP:10:1336,1,"Facteur Cheval",48.631618,2.431197,0,0,OIF:SA:10:1336,Europe/Paris,,OIF, +OIF:SP:10:1337,1,"Facteur Cheval",48.631869,2.43132,0,0,OIF:SA:10:1336,Europe/Paris,,OIF, +OIF:SP:10:1338,1,"Les Arènes",48.629407,2.430935,0,0,OIF:SA:10:1335,Europe/Paris,,OIF, +OIF:SP:10:1339,1,"Blaise Pascal - les Passages",48.627223,2.430701,0,0,OIF:SA:10:1334,Europe/Paris,,OIF, +OIF:SP:10:134,1,"Dame du Lac",48.613323,2.422176,0,0,OIF:SA:10:134,Europe/Paris,,OIF, +OIF:SP:10:1340,1,"Évry-Courcouronnes Centre",48.625067,2.428487,0,0,OIF:SA:10:1333,Europe/Paris,,OIF, +OIF:SP:10:1341,1,"Sabatier",48.62466,2.431781,0,0,OIF:SA:10:1332,Europe/Paris,,OIF, +OIF:SP:10:1342,1,"Institut de Biologie",48.624041,2.440417,0,0,OIF:SA:10:1331,Europe/Paris,,OIF, +OIF:SP:10:1343,1,"Collège Paul Éluard",48.622025,2.443139,0,0,OIF:SA:10:1330,Europe/Paris,,OIF, +OIF:SP:10:1344,1,"Auguste Plat-Station Esso",48.645695,2.40511,0,0,OIF:SA:10:1344,Europe/Paris,,OIF, +OIF:SP:10:1345,1,"Grand-Bourg",48.648695,2.43409,0,0,OIF:SA:10:1345,Europe/Paris,,OIF, +OIF:SP:10:1349,1,"Gare RER",48.613609,2.471455,0,0,OIF:SA:8768100,Europe/Paris,,OIF, +OIF:SP:10:135,1,"Dame du Lac",48.613188,2.421986,0,0,OIF:SA:10:134,Europe/Paris,,OIF, +OIF:SP:10:1352,1,"Rue du Département",48.59946,2.471933,0,0,OIF:SA:10:1352,Europe/Paris,,OIF, +OIF:SP:10:1353,1,"RN7 - Lisses",48.611094,2.462135,0,0,OIF:SA:10:1353,Europe/Paris,,OIF, +OIF:SP:10:1354,1,"Tarterêts",48.614469,2.458375,0,0,OIF:SA:10:1354,Europe/Paris,,OIF, +OIF:SP:10:1356,1,"Toussaint Louverture",48.652147,2.39143,0,0,OIF:SA:10:1356,Europe/Paris,,OIF, +OIF:SP:10:1357,1,"La Ferme Neuve",48.652248,2.385895,0,0,OIF:SA:10:1357,Europe/Paris,,OIF, +OIF:SP:10:1358,1,"La Treille",48.652289,2.370415,0,0,OIF:SA:10:1358,Europe/Paris,,OIF, +OIF:SP:10:1359,1,"La Treille - RD445",48.652433,2.36994,0,0,OIF:SA:10:1359,Europe/Paris,,OIF, +OIF:SP:10:1360,1,"La Treille",48.652379,2.370605,0,0,OIF:SA:10:1358,Europe/Paris,,OIF, +OIF:SP:10:1361,1,"La Ferme Neuve",48.652329,2.386207,0,0,OIF:SA:10:1357,Europe/Paris,,OIF, +OIF:SP:10:1362,1,"Toussaint Louverture",48.652201,2.391715,0,0,OIF:SA:10:1356,Europe/Paris,,OIF, +OIF:SP:10:1363,1,"Tarterêts",48.613794,2.458725,0,0,OIF:SA:10:1354,Europe/Paris,,OIF, +OIF:SP:10:1364,1,"RN7 - Lisses",48.611058,2.461878,0,0,OIF:SA:10:1353,Europe/Paris,,OIF, +OIF:SP:10:1365,1,"Rue du Département",48.600081,2.471257,0,0,OIF:SA:10:1352,Europe/Paris,,OIF, +OIF:SP:10:1366,1,"La Treille - RD445",48.652532,2.370307,0,0,OIF:SA:10:1359,Europe/Paris,,OIF, +OIF:SP:10:1367,1,"Le Lac",48.617374,2.413953,0,0,OIF:SA:10:1367,Europe/Paris,,OIF, +OIF:SP:10:1369,1,"Grigny Centre RER",48.653386,2.394796,0,0,OIF:SA:8768137,Europe/Paris,,OIF, +OIF:SP:10:1370,1,"Grigny Centre RER",48.652963,2.395134,0,0,OIF:SA:8768137,Europe/Paris,,OIF, +OIF:SP:10:1371,1,"La Garenne",48.623529,2.403495,0,0,OIF:SA:10:1371,Europe/Paris,,OIF, +OIF:SP:10:1372,1,"Marché",48.637975,2.332701,0,0,OIF:SA:10:1372,Europe/Paris,,OIF, +OIF:SP:10:1373,1,"Marché",48.638946,2.332741,0,0,OIF:SA:10:1372,Europe/Paris,,OIF, +OIF:SP:10:1374,1,"La Garenne",48.623537,2.403779,0,0,OIF:SA:10:1371,Europe/Paris,,OIF, +OIF:SP:10:1376,1,"ZA du Bois de l'Epine",48.630588,2.397767,0,0,OIF:SA:10:1376,Europe/Paris,,OIF, +OIF:SP:10:1378,1,"Bois de l'Epine RER",48.636624,2.407078,0,0,OIF:SA:8768134,Europe/Paris,,OIF, +OIF:SP:10:1379,1,"Gare Val de Ris RER",48.659164,2.413472,0,0,OIF:SA:8768133,Europe/Paris,,OIF, +OIF:SP:10:1380,1,"J.Guesde",48.630853,2.405864,0,0,OIF:SA:10:1380,Europe/Paris,,OIF, +OIF:SP:10:1381,1,"J.Guesde",48.630835,2.406026,0,0,OIF:SA:10:1380,Europe/Paris,,OIF, +OIF:SP:10:1382,1,"Gare RER",48.613609,2.471455,0,0,OIF:SA:8768100,Europe/Paris,,OIF, +OIF:SP:10:1383,1,"Charles Robin",48.61321,2.46679,0,0,OIF:SA:10:1383,Europe/Paris,,OIF, +OIF:SP:10:1384,1,"Montagne des Glaises",48.612962,2.46355,0,0,OIF:SA:10:1384,Europe/Paris,,OIF, +OIF:SP:10:1385,1,"Montagne des Glaises",48.612998,2.463889,0,0,OIF:SA:10:1384,Europe/Paris,,OIF, +OIF:SP:10:1386,1,"Charles Robin",48.613111,2.467156,0,0,OIF:SA:10:1383,Europe/Paris,,OIF, +OIF:SP:10:1387,1,"Gare RER",48.613699,2.471916,0,0,OIF:SA:8768100,Europe/Paris,,OIF, +OIF:SP:10:1388,1,"Les Coccinelles",48.614347,2.368655,0,0,OIF:SA:10:106,Europe/Paris,,OIF, +OIF:SP:10:140,1,"Donjon",48.639907,2.334274,0,0,OIF:SA:10:1312,Europe/Paris,,OIF, +OIF:SP:10:143,1,"Edmond Bonté",48.657053,2.41043,0,0,OIF:SA:10:143,Europe/Paris,,OIF, +OIF:SP:10:144,1,"Edmond Bonté",48.656802,2.409873,0,0,OIF:SA:10:143,Europe/Paris,,OIF, +OIF:SP:10:159,1,"Église",48.564473,2.50084,0,0,OIF:SA:10:159,Europe/Paris,,OIF, +OIF:SP:10:160,1,"Église",48.564212,2.50088,0,0,OIF:SA:10:159,Europe/Paris,,OIF, +OIF:SP:10:161,1,"L'Églantier",48.599775,2.435259,0,0,OIF:SA:10:161,Europe/Paris,,OIF, +OIF:SP:10:162,1,"L'Églantier",48.599713,2.434107,0,0,OIF:SA:10:161,Europe/Paris,,OIF, +OIF:SP:10:164,1,"Gare RER",48.67011,2.332861,0,0,OIF:SA:8754522,Europe/Paris,,OIF, +OIF:SP:10:167,1,"L'Écoute S'Il Pleut",48.629839,2.403109,0,0,OIF:SA:10:167,Europe/Paris,,OIF, +OIF:SP:10:168,1,"L'Écoute S'Il Pleut",48.629462,2.40315,0,0,OIF:SA:10:167,Europe/Paris,,OIF, +OIF:SP:10:169,1,"Les Estudines",48.621247,2.427517,0,0,OIF:SA:10:169,Europe/Paris,,OIF, +OIF:SP:10:170,1,"Les Estudines",48.620816,2.427354,0,0,OIF:SA:10:169,Europe/Paris,,OIF, +OIF:SP:10:171,1,"Eurocontrol",48.600849,2.346271,0,0,OIF:SA:10:171,Europe/Paris,,OIF, +OIF:SP:10:172,1,"Faisanderie",48.610582,2.389326,0,0,OIF:SA:10:172,Europe/Paris,,OIF, +OIF:SP:10:173,1,"Faisanderie",48.610735,2.389773,0,0,OIF:SA:10:172,Europe/Paris,,OIF, +OIF:SP:10:174,1,"Fauvettes",48.644891,2.411376,0,0,OIF:SA:10:1286,Europe/Paris,,OIF, +OIF:SP:10:176,1,"Foyer Club",48.634533,2.448833,0,0,OIF:SA:10:176,Europe/Paris,,OIF, +OIF:SP:10:177,1,"Foyer Club",48.634029,2.449524,0,0,OIF:SA:10:176,Europe/Paris,,OIF, +OIF:SP:10:178,1,"La Fontaine",48.654635,2.410725,0,0,OIF:SA:10:178,Europe/Paris,,OIF, +OIF:SP:10:179,1,"La Fontaine",48.654644,2.410386,0,0,OIF:SA:10:178,Europe/Paris,,OIF, +OIF:SP:10:18,1,"Aguado",48.631204,2.441706,0,0,OIF:SA:10:18,Europe/Paris,,OIF, +OIF:SP:10:182,1,"Ferme de Place",48.60347,2.4238,0,0,OIF:SA:10:182,Europe/Paris,,OIF, +OIF:SP:10:183,1,"Ferme de Place",48.603335,2.423949,0,0,OIF:SA:10:182,Europe/Paris,,OIF, +OIF:SP:10:184,1,"Galignani",48.645596,2.450715,0,0,OIF:SA:10:1294,Europe/Paris,,OIF, +OIF:SP:10:186,1,"La Garenne",48.623537,2.403779,0,0,OIF:SA:10:1371,Europe/Paris,,OIF, +OIF:SP:10:187,1,"La Garenne",48.623529,2.403495,0,0,OIF:SA:10:1371,Europe/Paris,,OIF, +OIF:SP:10:188,1,"Gaspéri",48.615881,2.427183,0,0,OIF:SA:10:188,Europe/Paris,,OIF, +OIF:SP:10:189,1,"Gaspéri",48.615917,2.427115,0,0,OIF:SA:10:188,Europe/Paris,,OIF, +OIF:SP:10:19,1,"Aguado",48.631303,2.441801,0,0,OIF:SA:10:18,Europe/Paris,,OIF, +OIF:SP:10:190,1,"Champs Elysées Gd Bourg",48.643744,2.431016,0,0,OIF:SA:10:190,Europe/Paris,,OIF, +OIF:SP:10:191,1,"Champs Elysées Gd Bourg",48.643267,2.431652,0,0,OIF:SA:10:190,Europe/Paris,,OIF, +OIF:SP:10:192,1,"Gare du Bras de Fer RER",48.623807,2.450993,0,0,OIF:SA:8768139,Europe/Paris,,OIF, +OIF:SP:10:193,1,"Gare du Bras de Fer RER",48.623915,2.451102,0,0,OIF:SA:8768139,Europe/Paris,,OIF, +OIF:SP:10:194,1,"Gare du Bras de Fer RER",48.623563,2.451914,0,0,OIF:SA:8768139,Europe/Paris,,OIF, +OIF:SP:10:195,1,"Gare du Bras de Fer RER",48.623564,2.451399,0,0,OIF:SA:8768139,Europe/Paris,,OIF, +OIF:SP:10:197,1,"Gare du Bras de Fer RER",48.623457,2.45045,0,0,OIF:SA:8768139,Europe/Paris,,OIF, +OIF:SP:10:198,1,"Gustave Courbet",48.615427,2.469846,0,0,OIF:SA:10:198,Europe/Paris,,OIF, +OIF:SP:10:199,1,"Gustave Courbet",48.615697,2.469793,0,0,OIF:SA:10:198,Europe/Paris,,OIF, +OIF:SP:10:20,1,"Avenue du Lac",48.620056,2.421875,0,0,OIF:SA:10:20,Europe/Paris,,OIF, +OIF:SP:10:200,1,"Gabrielle d'Estrées",48.568076,2.481441,0,0,OIF:SA:10:200,Europe/Paris,,OIF, +OIF:SP:10:201,1,"Gerville",48.642014,2.455523,0,0,OIF:SA:10:201,Europe/Paris,,OIF, +OIF:SP:10:202,1,"Gerville",48.642644,2.454819,0,0,OIF:SA:10:201,Europe/Paris,,OIF, +OIF:SP:10:205,1,"Grigny Centre RER",48.653386,2.394796,0,0,OIF:SA:8768137,Europe/Paris,,OIF, +OIF:SP:10:206,1,"Grigny Centre RER",48.652963,2.395134,0,0,OIF:SA:8768137,Europe/Paris,,OIF, +OIF:SP:10:207,1,"Général de Gaulle",48.60923,2.377382,0,0,OIF:SA:10:207,Europe/Paris,,OIF, +OIF:SP:10:208,1,"Général de Gaulle",48.609391,2.378372,0,0,OIF:SA:10:207,Europe/Paris,,OIF, +OIF:SP:10:209,1,"Général de Gaulle",48.617166,2.465932,0,0,OIF:SA:10:209,Europe/Paris,,OIF, +OIF:SP:10:21,1,"Avenue du Lac",48.619876,2.422227,0,0,OIF:SA:10:20,Europe/Paris,,OIF, +OIF:SP:10:210,1,"Général de Gaulle",48.617301,2.466082,0,0,OIF:SA:10:209,Europe/Paris,,OIF, +OIF:SP:10:211,1,"Gabriel Jaillard",48.611858,2.367081,0,0,OIF:SA:10:211,Europe/Paris,,OIF, +OIF:SP:10:212,1,"Gabriel Jaillard",48.61201,2.367244,0,0,OIF:SA:10:211,Europe/Paris,,OIF, +OIF:SP:10:215,1,"Le Golf",48.56186,2.504949,0,0,OIF:SA:10:215,Europe/Paris,,OIF, +OIF:SP:10:216,1,"Le Golf",48.561715,2.505761,0,0,OIF:SA:10:215,Europe/Paris,,OIF, +OIF:SP:10:22,1,"Arnaud Massy",48.604548,2.372512,0,0,OIF:SA:10:22,Europe/Paris,,OIF, +OIF:SP:10:220,1,"La Greffière",48.642133,2.366746,0,0,OIF:SA:10:1186,Europe/Paris,,OIF, +OIF:SP:10:223,1,"George Sand",48.648648,2.411775,0,0,OIF:SA:10:223,Europe/Paris,,OIF, +OIF:SP:10:224,1,"Tuileries",48.650303,2.393965,0,0,OIF:SA:10:224,Europe/Paris,,OIF, +OIF:SP:10:226,1,"Guérinière",48.663836,2.343541,0,0,OIF:SA:10:1324,Europe/Paris,,OIF, +OIF:SP:10:228,1,"Gutenberg",48.641328,2.429031,0,0,OIF:SA:10:228,Europe/Paris,,OIF, +OIF:SP:10:229,1,"Gutenberg",48.641265,2.429099,0,0,OIF:SA:10:228,Europe/Paris,,OIF, +OIF:SP:10:23,1,"Arnaud Massy",48.605312,2.372404,0,0,OIF:SA:10:22,Europe/Paris,,OIF, +OIF:SP:10:230,1,"Grand Vaux",48.672456,2.333309,0,0,OIF:SA:10:230,Europe/Paris,,OIF, +OIF:SP:10:231,1,"Gare Val de Ris RER",48.658695,2.415385,0,0,OIF:SA:8768133,Europe/Paris,,OIF, +OIF:SP:10:232,1,"Halte SNCF",48.566444,2.492408,0,0,OIF:SA:8768163,Europe/Paris,,OIF, +OIF:SP:10:233,1,"Le Haricot",48.651811,2.397385,0,0,OIF:SA:10:233,Europe/Paris,,OIF, +OIF:SP:10:234,1,"Le Haricot",48.651057,2.396679,0,0,OIF:SA:10:233,Europe/Paris,,OIF, +OIF:SP:10:235,1,"Les Hauts Cornuts",48.602662,2.443573,0,0,OIF:SA:10:235,Europe/Paris,,OIF, +OIF:SP:10:236,1,"Les Hauts Cornuts",48.602142,2.442596,0,0,OIF:SA:10:235,Europe/Paris,,OIF, +OIF:SP:10:237,1,"Hippodrome",48.625862,2.392731,0,0,OIF:SA:10:237,Europe/Paris,,OIF, +OIF:SP:10:238,1,"Hippodrome",48.625593,2.392175,0,0,OIF:SA:10:237,Europe/Paris,,OIF, +OIF:SP:10:239,1,"La Guiche",48.564013,2.513989,0,0,OIF:SA:10:239,Europe/Paris,,OIF, +OIF:SP:10:24,1,"Auguste Plat",48.646125,2.406494,0,0,OIF:SA:10:1344,Europe/Paris,,OIF, +OIF:SP:10:240,1,"Hôpital Manhès",48.628273,2.360894,0,0,OIF:SA:10:240,Europe/Paris,,OIF, +OIF:SP:10:241,1,"Hôpital Manhès",48.628732,2.360718,0,0,OIF:SA:10:240,Europe/Paris,,OIF, +OIF:SP:10:242,1,"Hameaux de la Roche",48.648688,2.418856,0,0,OIF:SA:10:242,Europe/Paris,,OIF, +OIF:SP:10:243,1,"Hôtel de Ville",48.614613,2.381141,0,0,OIF:SA:10:243,Europe/Paris,,OIF, +OIF:SP:10:245,1,"Imprimerie Nationale",48.603119,2.371508,0,0,OIF:SA:10:245,Europe/Paris,,OIF, +OIF:SP:10:246,1,"Parc de Tréville",48.595371,2.36901,0,0,OIF:SA:10:246,Europe/Paris,,OIF, +OIF:SP:10:247,1,"Joliot-Curie",48.632323,2.397742,0,0,OIF:SA:10:247,Europe/Paris,,OIF, +OIF:SP:10:248,1,"Joliot-Curie",48.632377,2.398068,0,0,OIF:SA:10:247,Europe/Paris,,OIF, +OIF:SP:10:249,1,"Joliot-Curie",48.642999,2.347146,0,0,OIF:SA:10:249,Europe/Paris,,OIF, +OIF:SP:10:25,1,"Auguste Plat",48.646089,2.406359,0,0,OIF:SA:10:1344,Europe/Paris,,OIF, +OIF:SP:10:250,1,"Joliot-Curie",48.642972,2.347241,0,0,OIF:SA:10:249,Europe/Paris,,OIF, +OIF:SP:10:253,1,"Jean Jaurès",48.650359,2.406703,0,0,OIF:SA:8798416,Europe/Paris,,OIF, +OIF:SP:10:254,1,"Jean Jaurès",48.650332,2.406595,0,0,OIF:SA:8798416,Europe/Paris,,OIF, +OIF:SP:10:257,1,"Jean Mermoz",48.627355,2.408218,0,0,OIF:SA:10:1316,Europe/Paris,,OIF, +OIF:SP:10:259,1,"Jean Moulin",48.660461,2.36791,0,0,OIF:SA:10:1285,Europe/Paris,,OIF, +OIF:SP:10:26,1,"Aunettes",48.614186,2.433795,0,0,OIF:SA:10:26,Europe/Paris,,OIF, +OIF:SP:10:264,1,"J.P. Timbaud",48.662252,2.360041,0,0,OIF:SA:10:264,Europe/Paris,,OIF, +OIF:SP:10:265,1,"Jean Renoir",48.62962,2.422637,0,0,OIF:SA:10:265,Europe/Paris,,OIF, +OIF:SP:10:266,1,"Jean Renoir",48.629692,2.422799,0,0,OIF:SA:10:265,Europe/Paris,,OIF, +OIF:SP:10:267,1,"Jean Rostand",48.623967,2.432214,0,0,OIF:SA:10:267,Europe/Paris,,OIF, +OIF:SP:10:268,1,"Jean Rostand",48.624012,2.432377,0,0,OIF:SA:10:267,Europe/Paris,,OIF, +OIF:SP:10:27,1,"Aubépine",48.593538,2.432985,0,0,OIF:SA:10:27,Europe/Paris,,OIF, +OIF:SP:10:271,1,"Jules Vallès",48.635574,2.42978,0,0,OIF:SA:10:1314,Europe/Paris,,OIF, +OIF:SP:10:273,1,"Jules Vallès",48.635529,2.429563,0,0,OIF:SA:10:1314,Europe/Paris,,OIF, +OIF:SP:10:274,1,"Libellules 2",48.568289,2.509873,0,0,OIF:SA:10:274,Europe/Paris,,OIF, +OIF:SP:10:275,1,"Le Lac",48.61669,2.414169,0,0,OIF:SA:10:1367,Europe/Paris,,OIF, +OIF:SP:10:278,1,"Louis Bourdet",48.618752,2.393252,0,0,OIF:SA:10:1227,Europe/Paris,,OIF, +OIF:SP:10:28,1,"Aubépine",48.593628,2.433107,0,0,OIF:SA:10:27,Europe/Paris,,OIF, +OIF:SP:10:280,1,"Léon Cassé",48.603689,2.468352,0,0,OIF:SA:10:280,Europe/Paris,,OIF, +OIF:SP:10:281,1,"Lisière des Deux Parcs",48.624368,2.437353,0,0,OIF:SA:10:281,Europe/Paris,,OIF, +OIF:SP:10:282,1,"Lisière des Deux Parcs",48.624062,2.437529,0,0,OIF:SA:10:281,Europe/Paris,,OIF, +OIF:SP:10:283,1,"Aunettes LEP",48.638489,2.413849,0,0,OIF:SA:10:283,Europe/Paris,,OIF, +OIF:SP:10:284,1,"Aunettes LEP",48.638363,2.413659,0,0,OIF:SA:10:283,Europe/Paris,,OIF, +OIF:SP:10:288,1,"Lycée Georges Brassens",48.62769,2.418755,0,0,OIF:SA:10:288,Europe/Paris,,OIF, +OIF:SP:10:289,1,"Lycée Georges Brassens",48.627663,2.418931,0,0,OIF:SA:10:288,Europe/Paris,,OIF, +OIF:SP:10:29,1,"Bel Air",48.596107,2.435524,0,0,OIF:SA:10:29,Europe/Paris,,OIF, +OIF:SP:10:290,1,"Les Galants Courts",48.632083,2.433883,0,0,OIF:SA:10:290,Europe/Paris,,OIF, +OIF:SP:10:292,1,"Les Galants Courts",48.632128,2.433748,0,0,OIF:SA:10:290,Europe/Paris,,OIF, +OIF:SP:10:294,1,"Les Lilas",48.650743,2.445192,0,0,OIF:SA:10:294,Europe/Paris,,OIF, +OIF:SP:10:296,1,"Mairie",48.59794,2.425254,0,0,OIF:SA:10:1015,Europe/Paris,,OIF, +OIF:SP:10:297,1,"La Mare aux Moules",48.620566,2.375479,0,0,OIF:SA:10:297,Europe/Paris,,OIF, +OIF:SP:10:298,1,"La Mare aux Moules",48.620629,2.375371,0,0,OIF:SA:10:297,Europe/Paris,,OIF, +OIF:SP:10:299,1,"Les Longaines",48.605337,2.447889,0,0,OIF:SA:10:299,Europe/Paris,,OIF, +OIF:SP:10:3,1,"Les Griottes",48.565754,2.515824,0,0,OIF:SA:10:3,Europe/Paris,,OIF, +OIF:SP:10:30,1,"Bel Air",48.596673,2.435498,0,0,OIF:SA:10:29,Europe/Paris,,OIF, +OIF:SP:10:300,1,"Les Longaines",48.6054,2.447645,0,0,OIF:SA:10:299,Europe/Paris,,OIF, +OIF:SP:10:301,1,"Lycée Parc des Loges",48.63788,2.424196,0,0,OIF:SA:10:301,Europe/Paris,,OIF, +OIF:SP:10:302,1,"Lycée Parc des Loges",48.637934,2.423871,0,0,OIF:SA:10:301,Europe/Paris,,OIF, +OIF:SP:10:305,1,"Louis Tostain",48.636033,2.332063,0,0,OIF:SA:10:305,Europe/Paris,,OIF, +OIF:SP:10:306,1,"Louis Tostain",48.636348,2.332077,0,0,OIF:SA:10:305,Europe/Paris,,OIF, +OIF:SP:10:307,1,"Le Lunain",48.613233,2.409134,0,0,OIF:SA:10:307,Europe/Paris,,OIF, +OIF:SP:10:308,1,"Le Lunain",48.613044,2.40969,0,0,OIF:SA:10:307,Europe/Paris,,OIF, +OIF:SP:10:312,1,"Mairie",48.617171,2.407988,0,0,OIF:SA:10:1240,Europe/Paris,,OIF, +OIF:SP:10:314,1,"Mairie Annexe",48.63591,2.446775,0,0,OIF:SA:10:314,Europe/Paris,,OIF, +OIF:SP:10:315,1,"Mairie Annexe",48.63582,2.446774,0,0,OIF:SA:10:314,Europe/Paris,,OIF, +OIF:SP:10:316,1,"Mairie",48.630341,2.361112,0,0,OIF:SA:10:316,Europe/Paris,,OIF, +OIF:SP:10:317,1,"Mairie",48.630287,2.361166,0,0,OIF:SA:10:316,Europe/Paris,,OIF, +OIF:SP:10:318,1,"Mairie",48.654702,2.386955,0,0,OIF:SA:10:318,Europe/Paris,,OIF, +OIF:SP:10:319,1,"Mairie",48.654486,2.386914,0,0,OIF:SA:10:318,Europe/Paris,,OIF, +OIF:SP:10:320,1,"Les Malines",48.603848,2.422147,0,0,OIF:SA:10:320,Europe/Paris,,OIF, +OIF:SP:10:321,1,"Les Malines",48.604397,2.421944,0,0,OIF:SA:10:320,Europe/Paris,,OIF, +OIF:SP:10:322,1,"Mairie",48.660689,2.346091,0,0,OIF:SA:10:322,Europe/Paris,,OIF, +OIF:SP:10:323,1,"Mairie",48.661004,2.34464,0,0,OIF:SA:10:322,Europe/Paris,,OIF, +OIF:SP:10:324,1,"La Mare à Pilatre",48.643169,2.404157,0,0,OIF:SA:10:324,Europe/Paris,,OIF, +OIF:SP:10:325,1,"La Mare à Pilatre",48.643484,2.404415,0,0,OIF:SA:10:324,Europe/Paris,,OIF, +OIF:SP:10:328,1,"Mairie",48.647396,2.448562,0,0,OIF:SA:10:328,Europe/Paris,,OIF, +OIF:SP:10:33,1,"Barbusse Cassin",48.653786,2.347067,0,0,OIF:SA:10:33,Europe/Paris,,OIF, +OIF:SP:10:331,1,"Maurice Genevoix",48.636797,2.428847,0,0,OIF:SA:10:331,Europe/Paris,,OIF, +OIF:SP:10:332,1,"Maurice Genevoix",48.637121,2.428522,0,0,OIF:SA:10:331,Europe/Paris,,OIF, +OIF:SP:10:333,1,"Marchais Guesdon",48.633196,2.412254,0,0,OIF:SA:10:333,Europe/Paris,,OIF, +OIF:SP:10:334,1,"Marchais Guesdon",48.632377,2.412402,0,0,OIF:SA:10:333,Europe/Paris,,OIF, +OIF:SP:10:335,1,"Maisons du Golf",48.610458,2.386398,0,0,OIF:SA:10:335,Europe/Paris,,OIF, +OIF:SP:10:336,1,"Maisons du Golf",48.610296,2.38656,0,0,OIF:SA:10:335,Europe/Paris,,OIF, +OIF:SP:10:34,1,"Barbusse Cassin",48.654146,2.346701,0,0,OIF:SA:10:33,Europe/Paris,,OIF, +OIF:SP:10:341,1,"Les Miroirs",48.631871,2.428797,0,0,OIF:SA:10:1144,Europe/Paris,,OIF, +OIF:SP:10:342,1,"Les Miroirs",48.631881,2.428607,0,0,OIF:SA:10:1144,Europe/Paris,,OIF, +OIF:SP:10:343,1,"Marinière Lycée",48.618879,2.389863,0,0,OIF:SA:10:343,Europe/Paris,,OIF, +OIF:SP:10:344,1,"Marinière Lycée",48.618762,2.389632,0,0,OIF:SA:10:343,Europe/Paris,,OIF, +OIF:SP:10:345,1,"Montconseil",48.595483,2.475324,0,0,OIF:SA:10:345,Europe/Paris,,OIF, +OIF:SP:10:346,1,"Montconseil",48.595744,2.474891,0,0,OIF:SA:10:345,Europe/Paris,,OIF, +OIF:SP:10:348,1,"Monseigneur Roméro",48.623072,2.427697,0,0,OIF:SA:10:348,Europe/Paris,,OIF, +OIF:SP:10:349,1,"Monseigneur Roméro",48.623072,2.427805,0,0,OIF:SA:10:348,Europe/Paris,,OIF, +OIF:SP:10:35,1,"Bois Chaland",48.605793,2.430459,0,0,OIF:SA:10:35,Europe/Paris,,OIF, +OIF:SP:10:350,1,"Nouveaux Champs",48.639257,2.433422,0,0,OIF:SA:10:350,Europe/Paris,,OIF, +OIF:SP:10:351,1,"Nouveaux Champs",48.639113,2.433042,0,0,OIF:SA:10:350,Europe/Paris,,OIF, +OIF:SP:10:352,1,"Notre-Dame République",48.643787,2.453234,0,0,OIF:SA:10:352,Europe/Paris,,OIF, +OIF:SP:10:355,1,"Nowy Targ",48.633145,2.442917,0,0,OIF:SA:10:355,Europe/Paris,,OIF, +OIF:SP:10:356,1,"Nowy Targ",48.633253,2.443121,0,0,OIF:SA:10:355,Europe/Paris,,OIF, +OIF:SP:10:357,1,"Orme à Martin",48.630597,2.412956,0,0,OIF:SA:10:357,Europe/Paris,,OIF, +OIF:SP:10:358,1,"Orme à Martin",48.63048,2.412874,0,0,OIF:SA:10:357,Europe/Paris,,OIF, +OIF:SP:10:359,1,"Orme à Martin",48.630948,2.41278,0,0,OIF:SA:10:357,Europe/Paris,,OIF, +OIF:SP:10:36,1,"Bois Chaland",48.605946,2.430351,0,0,OIF:SA:10:35,Europe/Paris,,OIF, +OIF:SP:10:360,1,"Orme à Martin",48.631065,2.412861,0,0,OIF:SA:10:357,Europe/Paris,,OIF, +OIF:SP:10:361,1,"Les Osiers",48.628057,2.406457,0,0,OIF:SA:10:361,Europe/Paris,,OIF, +OIF:SP:10:362,1,"Les Osiers",48.628255,2.406782,0,0,OIF:SA:10:361,Europe/Paris,,OIF, +OIF:SP:10:363,1,"Patios",48.647571,2.368947,0,0,OIF:SA:10:363,Europe/Paris,,OIF, +OIF:SP:10:364,1,"Patton-Mousseau",48.63081,2.450181,0,0,OIF:SA:10:364,Europe/Paris,,OIF, +OIF:SP:10:365,1,"Patton-Mousseau",48.63081,2.450073,0,0,OIF:SA:10:364,Europe/Paris,,OIF, +OIF:SP:10:366,1,"Le Parc",48.63866,2.437625,0,0,OIF:SA:10:366,Europe/Paris,,OIF, +OIF:SP:10:367,1,"Le Parc",48.638534,2.437639,0,0,OIF:SA:10:366,Europe/Paris,,OIF, +OIF:SP:10:368,1,"Pasteur",48.62593,2.449533,0,0,OIF:SA:10:368,Europe/Paris,,OIF, +OIF:SP:10:369,1,"Pasteur",48.626172,2.449642,0,0,OIF:SA:10:368,Europe/Paris,,OIF, +OIF:SP:10:371,1,"Pasteur",48.611466,2.382467,0,0,OIF:SA:10:371,Europe/Paris,,OIF, +OIF:SP:10:372,1,"Place des Aunettes",48.618277,2.432732,0,0,OIF:SA:10:372,Europe/Paris,,OIF, +OIF:SP:10:373,1,"Place des Aunettes",48.618115,2.432745,0,0,OIF:SA:10:372,Europe/Paris,,OIF, +OIF:SP:10:374,1,"Les Petits Bois",48.607856,2.373558,0,0,OIF:SA:10:374,Europe/Paris,,OIF, +OIF:SP:10:375,1,"Les Petits Bois",48.608377,2.372325,0,0,OIF:SA:10:374,Europe/Paris,,OIF, +OIF:SP:10:376,1,"Les Petits Bois",48.608278,2.374982,0,0,OIF:SA:10:374,Europe/Paris,,OIF, +OIF:SP:10:377,1,"Les Petits Bois",48.608035,2.374548,0,0,OIF:SA:10:374,Europe/Paris,,OIF, +OIF:SP:10:379,1,"Petits Bois",48.634336,2.438363,0,0,OIF:SA:10:1217,Europe/Paris,,OIF, +OIF:SP:10:380,1,"Place du Couvent Mairie",48.648904,2.450614,0,0,OIF:SA:10:380,Europe/Paris,,OIF, +OIF:SP:10:381,1,"Place de la Commune",48.62183,2.440169,0,0,OIF:SA:10:381,Europe/Paris,,OIF, +OIF:SP:10:382,1,"Place de la Commune",48.621551,2.44025,0,0,OIF:SA:10:381,Europe/Paris,,OIF, +OIF:SP:10:385,1,"Les Peupliers",48.609343,2.418781,0,0,OIF:SA:10:385,Europe/Paris,,OIF, +OIF:SP:10:386,1,"Les Peupliers",48.609892,2.41847,0,0,OIF:SA:10:385,Europe/Paris,,OIF, +OIF:SP:10:387,1,"Place Henri IV",48.657928,2.359388,0,0,OIF:SA:10:387,Europe/Paris,,OIF, +OIF:SP:10:388,1,"Place Henri IV",48.657739,2.359537,0,0,OIF:SA:10:387,Europe/Paris,,OIF, +OIF:SP:10:39,1,"Bois des Coudraies",48.638829,2.45873,0,0,OIF:SA:10:39,Europe/Paris,,OIF, +OIF:SP:10:391,1,"Piscine",48.634613,2.344744,0,0,OIF:SA:10:391,Europe/Paris,,OIF, +OIF:SP:10:392,1,"Piscine",48.634793,2.344541,0,0,OIF:SA:10:391,Europe/Paris,,OIF, +OIF:SP:10:393,1,"Place Jean Malézieux",48.618305,2.442304,0,0,OIF:SA:10:393,Europe/Paris,,OIF, +OIF:SP:10:394,1,"Place Jean Malézieux",48.61835,2.441979,0,0,OIF:SA:10:393,Europe/Paris,,OIF, +OIF:SP:10:395,1,"Parc des Loges",48.632989,2.424297,0,0,OIF:SA:10:395,Europe/Paris,,OIF, +OIF:SP:10:396,1,"Parc des Loges",48.632953,2.424432,0,0,OIF:SA:10:395,Europe/Paris,,OIF, +OIF:SP:10:397,1,"Pierre Marcillé",48.609939,2.380324,0,0,OIF:SA:10:397,Europe/Paris,,OIF, +OIF:SP:10:398,1,"Pierre Marcillé",48.609885,2.380676,0,0,OIF:SA:10:397,Europe/Paris,,OIF, +OIF:SP:10:399,1,"Petite Montagne Sud",48.611228,2.422945,0,0,OIF:SA:10:399,Europe/Paris,,OIF, +OIF:SP:10:40,1,"Bois des Coudraies",48.639079,2.460141,0,0,OIF:SA:10:39,Europe/Paris,,OIF, +OIF:SP:10:400,1,"Petite Montagne Sud",48.611291,2.422769,0,0,OIF:SA:10:399,Europe/Paris,,OIF, +OIF:SP:10:401,1,"Petite Montagne Sud",48.611424,2.424776,0,0,OIF:SA:10:399,Europe/Paris,,OIF, +OIF:SP:10:402,1,"Petite Montagne Sud",48.611487,2.424613,0,0,OIF:SA:10:399,Europe/Paris,,OIF, +OIF:SP:10:403,1,"Pierre Mendès-France",48.63917,2.345531,0,0,OIF:SA:10:403,Europe/Paris,,OIF, +OIF:SP:10:404,1,"Pierre Mendès-France",48.638891,2.345613,0,0,OIF:SA:10:403,Europe/Paris,,OIF, +OIF:SP:10:405,1,"Petite Montagne",48.614911,2.425744,0,0,OIF:SA:10:405,Europe/Paris,,OIF, +OIF:SP:10:406,1,"Petite Montagne",48.614651,2.424984,0,0,OIF:SA:10:405,Europe/Paris,,OIF, +OIF:SP:10:407,1,"Place Marcel Sembat",48.654603,2.351531,0,0,OIF:SA:10:407,Europe/Paris,,OIF, +OIF:SP:10:408,1,"Place Marcel Sembat",48.654774,2.352793,0,0,OIF:SA:10:407,Europe/Paris,,OIF, +OIF:SP:10:409,1,"Pablo Neruda",48.653477,2.392096,0,0,OIF:SA:10:409,Europe/Paris,,OIF, +OIF:SP:10:41,1,"Bois de l'Epine RER",48.636722,2.40796,0,0,OIF:SA:8768134,Europe/Paris,,OIF, +OIF:SP:10:410,1,"Pablo Neruda",48.653387,2.392015,0,0,OIF:SA:10:409,Europe/Paris,,OIF, +OIF:SP:10:411,1,"Pomponne",48.640196,2.399515,0,0,OIF:SA:10:411,Europe/Paris,,OIF, +OIF:SP:10:412,1,"Pomponne",48.640161,2.399203,0,0,OIF:SA:10:411,Europe/Paris,,OIF, +OIF:SP:10:416,1,"Préfecture",48.630274,2.436524,0,0,OIF:SA:10:416,Europe/Paris,,OIF, +OIF:SP:10:417,1,"Préfecture",48.630391,2.436524,0,0,OIF:SA:10:416,Europe/Paris,,OIF, +OIF:SP:10:42,1,"Bois de l'Epine RER",48.636686,2.407499,0,0,OIF:SA:8768134,Europe/Paris,,OIF, +OIF:SP:10:422,1,"Les Quinconges",48.620133,2.380441,0,0,OIF:SA:10:422,Europe/Paris,,OIF, +OIF:SP:10:423,1,"Les Quinconges",48.620259,2.379939,0,0,OIF:SA:10:422,Europe/Paris,,OIF, +OIF:SP:10:426,1,"Rue d'Antin",48.636771,2.439181,0,0,OIF:SA:10:426,Europe/Paris,,OIF, +OIF:SP:10:427,1,"Rue d'Antin",48.636672,2.43914,0,0,OIF:SA:10:426,Europe/Paris,,OIF, +OIF:SP:10:428,1,"Ratisbonne",48.640496,2.434848,0,0,OIF:SA:10:428,Europe/Paris,,OIF, +OIF:SP:10:429,1,"Ratisbonne",48.640307,2.434685,0,0,OIF:SA:10:428,Europe/Paris,,OIF, +OIF:SP:10:43,1,"Bois de l'Epine RER",48.636722,2.407295,0,0,OIF:SA:8768134,Europe/Paris,,OIF, +OIF:SP:10:430,1,"Le Ravin",48.647174,2.371578,0,0,OIF:SA:10:430,Europe/Paris,,OIF, +OIF:SP:10:431,1,"Le Ravin",48.647624,2.371836,0,0,OIF:SA:10:430,Europe/Paris,,OIF, +OIF:SP:10:432,1,"Rue des Carrières",48.652851,2.450189,0,0,OIF:SA:10:432,Europe/Paris,,OIF, +OIF:SP:10:436,1,"Rue des Clos",48.613401,2.375216,0,0,OIF:SA:10:1159,Europe/Paris,,OIF, +OIF:SP:10:44,1,"Bois de l'Epine RER",48.636596,2.407499,0,0,OIF:SA:8768134,Europe/Paris,,OIF, +OIF:SP:10:442,1,"Rue de l'Egalité",48.665849,2.341506,0,0,OIF:SA:10:442,Europe/Paris,,OIF, +OIF:SP:10:444,1,"Les Remises",48.619645,2.385945,0,0,OIF:SA:10:444,Europe/Paris,,OIF, +OIF:SP:10:445,1,"Les Remises",48.61996,2.384291,0,0,OIF:SA:10:444,Europe/Paris,,OIF, +OIF:SP:10:45,1,"Bois de l'Epine RER",48.636587,2.407973,0,0,OIF:SA:8768134,Europe/Paris,,OIF, +OIF:SP:10:451,1,"La Rivière",48.667108,2.332929,0,0,OIF:SA:10:451,Europe/Paris,,OIF, +OIF:SP:10:452,1,"Rue Jean de la Fontaine",48.65407,2.453488,0,0,OIF:SA:10:452,Europe/Paris,,OIF, +OIF:SP:10:454,1,"Rue des Meillottes",48.654024,2.445782,0,0,OIF:SA:10:454,Europe/Paris,,OIF, +OIF:SP:10:455,1,"Rue de Morsang",48.665742,2.337787,0,0,OIF:SA:10:455,Europe/Paris,,OIF, +OIF:SP:10:459,1,"Rosenberg",48.632516,2.432162,0,0,OIF:SA:10:459,Europe/Paris,,OIF, +OIF:SP:10:46,1,"Bonhomme en Pierre",48.628632,2.453295,0,0,OIF:SA:10:46,Europe/Paris,,OIF, +OIF:SP:10:460,1,"Rosenberg",48.632696,2.432379,0,0,OIF:SA:10:459,Europe/Paris,,OIF, +OIF:SP:10:461,1,"Rossini",48.635274,2.444373,0,0,OIF:SA:10:461,Europe/Paris,,OIF, +OIF:SP:10:462,1,"Rossini",48.635149,2.443803,0,0,OIF:SA:10:461,Europe/Paris,,OIF, +OIF:SP:10:463,1,"Rond-Point de Fleury",48.634413,2.359988,0,0,OIF:SA:10:463,Europe/Paris,,OIF, +OIF:SP:10:464,1,"Rond-Point de Fleury",48.63479,2.35988,0,0,OIF:SA:10:463,Europe/Paris,,OIF, +OIF:SP:10:465,1,"Rue du Puits",48.56867,2.480495,0,0,OIF:SA:10:465,Europe/Paris,,OIF, +OIF:SP:10:466,1,"Rue du Puits",48.568383,2.480481,0,0,OIF:SA:10:465,Europe/Paris,,OIF, +OIF:SP:10:47,1,"Bonhomme en Pierre",48.628596,2.452943,0,0,OIF:SA:10:46,Europe/Paris,,OIF, +OIF:SP:10:471,1,"Salvador Allendé",48.648713,2.408207,0,0,OIF:SA:10:471,Europe/Paris,,OIF, +OIF:SP:10:472,1,"Salvador Allendé",48.648498,2.4078,0,0,OIF:SA:10:471,Europe/Paris,,OIF, +OIF:SP:10:473,1,"Sacré-Cœur",48.650267,2.410475,0,0,OIF:SA:10:473,Europe/Paris,,OIF, +OIF:SP:10:474,1,"Saint-Exupéry",48.630551,2.448241,0,0,OIF:SA:10:474,Europe/Paris,,OIF, +OIF:SP:10:475,1,"Saint-Exupéry",48.630021,2.447806,0,0,OIF:SA:10:474,Europe/Paris,,OIF, +OIF:SP:10:476,1,"Saint-Exupéry",48.627766,2.446649,0,0,OIF:SA:10:474,Europe/Paris,,OIF, +OIF:SP:10:477,1,"Saint-Exupéry",48.628243,2.446568,0,0,OIF:SA:10:474,Europe/Paris,,OIF, +OIF:SP:10:480,1,"Saint-Hubert",48.641148,2.345939,0,0,OIF:SA:10:480,Europe/Paris,,OIF, +OIF:SP:10:481,1,"Saint-Hubert",48.641211,2.346034,0,0,OIF:SA:10:480,Europe/Paris,,OIF, +OIF:SP:10:482,1,"Square Jean Lurçat",48.657678,2.349524,0,0,OIF:SA:10:482,Europe/Paris,,OIF, +OIF:SP:10:484,1,"Rue Berlioz",48.635151,2.3204,0,0,OIF:SA:10:484,Europe/Paris,,OIF, +OIF:SP:10:485,1,"Rue Berlioz",48.635421,2.319993,0,0,OIF:SA:10:484,Europe/Paris,,OIF, +OIF:SP:10:486,1,"Les Meillottes",48.652125,2.456726,0,0,OIF:SA:10:486,Europe/Paris,,OIF, +OIF:SP:10:490,1,"Strathkelvin",48.619561,2.462888,0,0,OIF:SA:10:490,Europe/Paris,,OIF, +OIF:SP:10:491,1,"Strathkelvin",48.619768,2.462834,0,0,OIF:SA:10:490,Europe/Paris,,OIF, +OIF:SP:10:494,1,"Temps des Cerises-SNECMA",48.618804,2.447037,0,0,OIF:SA:10:494,Europe/Paris,,OIF, +OIF:SP:10:495,1,"Temps des Cerises-SNECMA",48.618633,2.446874,0,0,OIF:SA:10:494,Europe/Paris,,OIF, +OIF:SP:10:496,1,"Thorigny",48.620354,2.405972,0,0,OIF:SA:10:496,Europe/Paris,,OIF, +OIF:SP:10:497,1,"Thorigny",48.620111,2.40627,0,0,OIF:SA:10:496,Europe/Paris,,OIF, +OIF:SP:10:50,1,"Les Bocages",48.611734,2.404279,0,0,OIF:SA:10:50,Europe/Paris,,OIF, +OIF:SP:10:500,1,"Les Trois Parts",48.608935,2.370048,0,0,OIF:SA:10:500,Europe/Paris,,OIF, +OIF:SP:10:501,1,"Les Trois Parts",48.608971,2.370265,0,0,OIF:SA:10:500,Europe/Paris,,OIF, +OIF:SP:10:502,1,"La Tremblaie",48.607158,2.358444,0,0,OIF:SA:10:502,Europe/Paris,,OIF, +OIF:SP:10:503,1,"La Tremblaie",48.607293,2.358187,0,0,OIF:SA:10:502,Europe/Paris,,OIF, +OIF:SP:10:504,1,"La Vanne",48.613666,2.405543,0,0,OIF:SA:10:504,Europe/Paris,,OIF, +OIF:SP:10:505,1,"La Vanne",48.613864,2.406234,0,0,OIF:SA:10:504,Europe/Paris,,OIF, +OIF:SP:10:506,1,"Voie de Compiègne",48.661667,2.363433,0,0,OIF:SA:10:506,Europe/Paris,,OIF, +OIF:SP:10:507,1,"Voie de Compiègne",48.661595,2.363514,0,0,OIF:SA:10:506,Europe/Paris,,OIF, +OIF:SP:10:508,1,"Les Vergers",48.610882,2.402191,0,0,OIF:SA:10:508,Europe/Paris,,OIF, +OIF:SP:10:509,1,"Les Vergers",48.610846,2.402069,0,0,OIF:SA:10:508,Europe/Paris,,OIF, +OIF:SP:10:51,1,"Les Bocages",48.611662,2.404333,0,0,OIF:SA:10:50,Europe/Paris,,OIF, +OIF:SP:10:510,1,"Gare SNCF",48.59345,2.460494,0,0,OIF:SA:8768161,Europe/Paris,,OIF, +OIF:SP:10:512,1,"Mairie",48.588747,2.452786,0,0,OIF:SA:10:512,Europe/Paris,,OIF, +OIF:SP:10:513,1,"Mairie",48.588613,2.45242,0,0,OIF:SA:10:512,Europe/Paris,,OIF, +OIF:SP:10:514,1,"Yerres-Louise Michel",48.615534,2.434313,0,0,OIF:SA:10:514,Europe/Paris,,OIF, +OIF:SP:10:515,1,"Yerres-Louise Michel",48.61521,2.434326,0,0,OIF:SA:10:514,Europe/Paris,,OIF, +OIF:SP:10:516,1,"ZA du Bois de l'Epine",48.630462,2.397564,0,0,OIF:SA:10:1376,Europe/Paris,,OIF, +OIF:SP:10:517,1,"ZI Bordes Nord",48.606393,2.362944,0,0,OIF:SA:10:517,Europe/Paris,,OIF, +OIF:SP:10:518,1,"ZI Bordes Nord",48.606267,2.362944,0,0,OIF:SA:10:517,Europe/Paris,,OIF, +OIF:SP:10:519,1,"ZI Bordes Sud",48.602698,2.367455,0,0,OIF:SA:10:519,Europe/Paris,,OIF, +OIF:SP:10:520,1,"ZI Bordes Sud",48.602626,2.367388,0,0,OIF:SA:10:519,Europe/Paris,,OIF, +OIF:SP:10:521,1,"ZI G.Madiot",48.604325,2.365464,0,0,OIF:SA:10:521,Europe/Paris,,OIF, +OIF:SP:10:523,1,"ZI G.Madiot",48.604415,2.365206,0,0,OIF:SA:10:521,Europe/Paris,,OIF, +OIF:SP:10:525,1,"ZI des Ciroliers",48.623625,2.363834,0,0,OIF:SA:10:1264,Europe/Paris,,OIF, +OIF:SP:10:526,1,"08-Mai-45",48.61086,2.453066,0,0,OIF:SA:10:526,Europe/Paris,,OIF, +OIF:SP:10:527,1,"08-Mai-45",48.611238,2.453311,0,0,OIF:SA:10:526,Europe/Paris,,OIF, +OIF:SP:10:53,1,"Beau Rivage",48.566517,2.498164,0,0,OIF:SA:10:53,Europe/Paris,,OIF, +OIF:SP:10:534,1,"Cimetière",48.615585,2.47306,0,0,OIF:SA:10:534,Europe/Paris,,OIF, +OIF:SP:10:535,1,"Cimetière",48.615657,2.473033,0,0,OIF:SA:10:534,Europe/Paris,,OIF, +OIF:SP:10:536,1,"Lycée",48.614093,2.456611,0,0,OIF:SA:10:536,Europe/Paris,,OIF, +OIF:SP:10:538,1,"Lycée",48.614201,2.456598,0,0,OIF:SA:10:536,Europe/Paris,,OIF, +OIF:SP:10:540,1,"Félicien Rops",48.61141,2.477007,0,0,OIF:SA:10:540,Europe/Paris,,OIF, +OIF:SP:10:541,1,"Félicien Rops",48.6114,2.477386,0,0,OIF:SA:10:540,Europe/Paris,,OIF, +OIF:SP:10:542,1,"Henri Matisse",48.615067,2.462362,0,0,OIF:SA:10:542,Europe/Paris,,OIF, +OIF:SP:10:544,1,"Léon Blum",48.616413,2.464331,0,0,OIF:SA:10:544,Europe/Paris,,OIF, +OIF:SP:10:545,1,"Louis Drevet",48.600427,2.475405,0,0,OIF:SA:10:545,Europe/Paris,,OIF, +OIF:SP:10:546,1,"Louis Drevet",48.600166,2.475621,0,0,OIF:SA:10:545,Europe/Paris,,OIF, +OIF:SP:10:547,1,"MJC",48.609247,2.473626,0,0,OIF:SA:10:547,Europe/Paris,,OIF, +OIF:SP:10:548,1,"MJC",48.610162,2.475553,0,0,OIF:SA:10:547,Europe/Paris,,OIF, +OIF:SP:10:549,1,"Parc Chantemerle",48.608117,2.471888,0,0,OIF:SA:10:549,Europe/Paris,,OIF, +OIF:SP:10:550,1,"Parc Chantemerle",48.607677,2.47087,0,0,OIF:SA:10:549,Europe/Paris,,OIF, +OIF:SP:10:551,1,"Parking Crêté",48.613078,2.480007,0,0,OIF:SA:10:551,Europe/Paris,,OIF, +OIF:SP:10:552,1,"Parking Crêté",48.612647,2.479681,0,0,OIF:SA:10:551,Europe/Paris,,OIF, +OIF:SP:10:553,1,"Gauguin",48.618799,2.460256,0,0,OIF:SA:10:553,Europe/Paris,,OIF, +OIF:SP:10:554,1,"Pablo Picasso",48.614521,2.460273,0,0,OIF:SA:10:554,Europe/Paris,,OIF, +OIF:SP:10:555,1,"Salvador Allendé",48.597729,2.476523,0,0,OIF:SA:10:555,Europe/Paris,,OIF, +OIF:SP:10:556,1,"Salvador Allendé",48.597764,2.476618,0,0,OIF:SA:10:555,Europe/Paris,,OIF, +OIF:SP:10:557,1,"Sous Préfecture",48.61364,2.475739,0,0,OIF:SA:10:557,Europe/Paris,,OIF, +OIF:SP:10:558,1,"Sous Préfecture",48.614746,2.476108,0,0,OIF:SA:10:557,Europe/Paris,,OIF, +OIF:SP:10:559,1,"Square",48.594536,2.477612,0,0,OIF:SA:10:559,Europe/Paris,,OIF, +OIF:SP:10:560,1,"Square",48.59459,2.47768,0,0,OIF:SA:10:559,Europe/Paris,,OIF, +OIF:SP:10:561,1,"Les Tours",48.596254,2.47702,0,0,OIF:SA:10:561,Europe/Paris,,OIF, +OIF:SP:10:563,1,"Les Tours",48.596182,2.477142,0,0,OIF:SA:10:561,Europe/Paris,,OIF, +OIF:SP:10:566,1,"Sacré-Cœur",48.650383,2.410787,0,0,OIF:SA:10:473,Europe/Paris,,OIF, +OIF:SP:10:568,1,"J.P. Timbaud",48.661739,2.35962,0,0,OIF:SA:10:264,Europe/Paris,,OIF, +OIF:SP:10:569,1,"La Ferme Neuve",48.65259,2.384945,0,0,OIF:SA:10:1357,Europe/Paris,,OIF, +OIF:SP:10:570,1,"La Ferme Neuve",48.653372,2.385692,0,0,OIF:SA:10:1357,Europe/Paris,,OIF, +OIF:SP:10:571,1,"Léon Cassé",48.604022,2.467974,0,0,OIF:SA:10:280,Europe/Paris,,OIF, +OIF:SP:10:572,1,"Cottage",48.601068,2.472615,0,0,OIF:SA:10:572,Europe/Paris,,OIF, +OIF:SP:10:573,1,"Cottage",48.601131,2.473008,0,0,OIF:SA:10:572,Europe/Paris,,OIF, +OIF:SP:10:574,1,"Centre Commercial",48.607104,2.46931,0,0,OIF:SA:10:574,Europe/Paris,,OIF, +OIF:SP:10:575,1,"Centre Commercial",48.606771,2.469133,0,0,OIF:SA:10:574,Europe/Paris,,OIF, +OIF:SP:10:577,1,"Libellules 1",48.567834,2.507907,0,0,OIF:SA:10:577,Europe/Paris,,OIF, +OIF:SP:10:578,1,"Libellules 1",48.56787,2.507514,0,0,OIF:SA:10:577,Europe/Paris,,OIF, +OIF:SP:10:579,1,"Bois de l'Epine RER",48.636624,2.407078,0,0,OIF:SA:8768134,Europe/Paris,,OIF, +OIF:SP:10:58,1,"CES Albert Camus",48.651728,2.401496,0,0,OIF:SA:10:58,Europe/Paris,,OIF, +OIF:SP:10:580,1,"Rue de Strasbourg",48.639146,2.412209,0,0,OIF:SA:10:580,Europe/Paris,,OIF, +OIF:SP:10:581,1,"Rue du Temple",48.642329,2.410572,0,0,OIF:SA:10:1287,Europe/Paris,,OIF, +OIF:SP:10:582,1,"Mairie",48.654021,2.415581,0,0,OIF:SA:10:582,Europe/Paris,,OIF, +OIF:SP:10:583,1,"Rue Gambetta",48.657466,2.411136,0,0,OIF:SA:10:583,Europe/Paris,,OIF, +OIF:SP:10:584,1,"Cimetière",48.659176,2.407828,0,0,OIF:SA:10:584,Europe/Paris,,OIF, +OIF:SP:10:585,1,"Notre-Dame-Rue du Clos",48.657595,2.405967,0,0,OIF:SA:10:585,Europe/Paris,,OIF, +OIF:SP:10:586,1,"Avenue du Parc",48.653426,2.402651,0,0,OIF:SA:10:586,Europe/Paris,,OIF, +OIF:SP:10:587,1,"CES Albert Camus",48.651989,2.402134,0,0,OIF:SA:10:58,Europe/Paris,,OIF, +OIF:SP:10:588,1,"Route de Grigny",48.651206,2.40315,0,0,OIF:SA:10:588,Europe/Paris,,OIF, +OIF:SP:10:589,1,"Rue des Perdrix",48.649282,2.402985,0,0,OIF:SA:10:589,Europe/Paris,,OIF, +OIF:SP:10:59,1,"CES Albert Camus",48.651764,2.401319,0,0,OIF:SA:10:58,Europe/Paris,,OIF, +OIF:SP:10:590,1,"Maternelle Picasso",48.64692,2.400174,0,0,OIF:SA:10:590,Europe/Paris,,OIF, +OIF:SP:10:593,1,"Ccial du Moulin à Vent",48.648858,2.407081,0,0,OIF:SA:10:593,Europe/Paris,,OIF, +OIF:SP:10:594,1,"Vieux Cédre",48.646971,2.431537,0,0,OIF:SA:10:594,Europe/Paris,,OIF, +OIF:SP:10:596,1,"Chemin du Trousseau",48.645621,2.433379,0,0,OIF:SA:10:596,Europe/Paris,,OIF, +OIF:SP:10:597,1,"Ikéa",48.594478,2.438366,0,0,OIF:SA:10:597,Europe/Paris,,OIF, +OIF:SP:10:598,1,"Ikéa",48.593948,2.437891,0,0,OIF:SA:10:597,Europe/Paris,,OIF, +OIF:SP:10:599,1,"Petits Champs",48.592481,2.439596,0,0,OIF:SA:10:599,Europe/Paris,,OIF, +OIF:SP:10:6,1,"Allée Clémenceau",48.633245,2.441887,0,0,OIF:SA:10:6,Europe/Paris,,OIF, +OIF:SP:10:600,1,"Petits Champs",48.592545,2.438742,0,0,OIF:SA:10:599,Europe/Paris,,OIF, +OIF:SP:10:601,1,"Les Brateaux",48.58792,2.44357,0,0,OIF:SA:10:1245,Europe/Paris,,OIF, +OIF:SP:10:604,1,"ZI des Ciroliers",48.623679,2.364146,0,0,OIF:SA:10:1264,Europe/Paris,,OIF, +OIF:SP:10:605,1,"Grand Veneur",48.648092,2.453841,0,0,OIF:SA:10:605,Europe/Paris,,OIF, +OIF:SP:10:606,1,"Rue de l'Ermitage",48.650192,2.457359,0,0,OIF:SA:10:606,Europe/Paris,,OIF, +OIF:SP:10:609,1,"Collège Senghor",48.615457,2.458906,0,0,OIF:SA:10:609,Europe/Paris,,OIF, +OIF:SP:10:612,1,"Jean Vilar",48.650256,2.375596,0,0,OIF:SA:10:1242,Europe/Paris,,OIF, +OIF:SP:10:614,1,"Labyrinthe",48.650417,2.378337,0,0,OIF:SA:10:614,Europe/Paris,,OIF, +OIF:SP:10:615,1,"Labyrinthe",48.650516,2.378432,0,0,OIF:SA:10:614,Europe/Paris,,OIF, +OIF:SP:10:618,1,"Terminal David Douillet",48.563236,2.491531,0,0,OIF:SA:10:1171,Europe/Paris,,OIF, +OIF:SP:10:65,1,"La Croix Blanche",48.615576,2.377184,0,0,OIF:SA:10:65,Europe/Paris,,OIF, +OIF:SP:10:66,1,"La Croix Blanche",48.616385,2.377591,0,0,OIF:SA:10:65,Europe/Paris,,OIF, +OIF:SP:10:67,1,"Ccial Aunettes",48.647835,2.418299,0,0,OIF:SA:10:67,Europe/Paris,,OIF, +OIF:SP:10:68,1,"Ccial Aunettes",48.64752,2.417701,0,0,OIF:SA:10:67,Europe/Paris,,OIF, +OIF:SP:10:69,1,"Ccial. Ferme du Temple",48.644488,2.407889,0,0,OIF:SA:10:69,Europe/Paris,,OIF, +OIF:SP:10:7,1,"Allée Clémenceau",48.633101,2.441886,0,0,OIF:SA:10:6,Europe/Paris,,OIF, +OIF:SP:10:70,1,"Ccial. Ferme du Temple",48.643535,2.408607,0,0,OIF:SA:10:69,Europe/Paris,,OIF, +OIF:SP:10:71,1,"Champtier du Coq",48.635576,2.43884,0,0,OIF:SA:10:71,Europe/Paris,,OIF, +OIF:SP:10:72,1,"Centre Commercial",48.584977,2.446653,0,0,OIF:SA:10:72,Europe/Paris,,OIF, +OIF:SP:10:73,1,"Centre Commercial",48.585184,2.446708,0,0,OIF:SA:10:72,Europe/Paris,,OIF, +OIF:SP:10:76,1,"Collège",48.645728,2.462843,0,0,OIF:SA:10:76,Europe/Paris,,OIF, +OIF:SP:10:78,1,"C.G.A.",48.603842,2.351774,0,0,OIF:SA:10:78,Europe/Paris,,OIF, +OIF:SP:10:79,1,"C.G.A.",48.60386,2.351774,0,0,OIF:SA:10:78,Europe/Paris,,OIF, +OIF:SP:10:8,1,"Ambroise Croizat",48.606406,2.46619,0,0,OIF:SA:8798436,Europe/Paris,,OIF, +OIF:SP:10:80,1,"Camille Guérin",48.63817,2.42086,0,0,OIF:SA:10:80,Europe/Paris,,OIF, +OIF:SP:10:81,1,"Camille Guérin",48.63808,2.420033,0,0,OIF:SA:10:80,Europe/Paris,,OIF, +OIF:SP:10:82,1,"Chemin de Halage",48.567193,2.503368,0,0,OIF:SA:10:82,Europe/Paris,,OIF, +OIF:SP:10:83,1,"Chemin de Halage",48.567256,2.503314,0,0,OIF:SA:10:82,Europe/Paris,,OIF, +OIF:SP:10:84,1,"Champagne",48.606591,2.420511,0,0,OIF:SA:10:84,Europe/Paris,,OIF, +OIF:SP:10:85,1,"Champagne",48.607158,2.420295,0,0,OIF:SA:10:84,Europe/Paris,,OIF, +OIF:SP:10:88,1,"Cimetière",48.659053,2.347163,0,0,OIF:SA:10:88,Europe/Paris,,OIF, +OIF:SP:10:89,1,"Cimetière",48.659062,2.346878,0,0,OIF:SA:10:88,Europe/Paris,,OIF, +OIF:SP:10:9,1,"Ambroise Croizat",48.606253,2.466054,0,0,OIF:SA:8798436,Europe/Paris,,OIF, +OIF:SP:10:90,1,"Cimetière",48.591495,2.456031,0,0,OIF:SA:10:90,Europe/Paris,,OIF, +OIF:SP:10:91,1,"Chemin de la Joute",48.611455,2.419963,0,0,OIF:SA:10:91,Europe/Paris,,OIF, +OIF:SP:10:92,1,"Chemin de la Joute",48.611509,2.419665,0,0,OIF:SA:10:91,Europe/Paris,,OIF, +OIF:SP:10:99,1,"Clinique",48.637707,2.42661,0,0,OIF:SA:10:100,Europe/Paris,,OIF, +OIF:SP:11:1,1,"Pierre Lizart",48.98872,2.406696,0,0,OIF:SA:11:1,Europe/Paris,,OIF, +OIF:SP:11:10,1,"Boieldieu",48.986547,2.403511,0,0,OIF:SA:11:10,Europe/Paris,,OIF, +OIF:SP:11:100,1,"Gay Lussac",48.982372,2.465328,0,0,OIF:SA:11:100,Europe/Paris,,OIF, +OIF:SP:11:101,1,"Gay Lussac",48.982354,2.465069,0,0,OIF:SA:11:100,Europe/Paris,,OIF, +OIF:SP:11:102,1,"La Madeleine",48.98628,2.437592,0,0,OIF:SA:11:102,Europe/Paris,,OIF, +OIF:SP:11:103,1,"La Madeleine",48.986326,2.437292,0,0,OIF:SA:11:102,Europe/Paris,,OIF, +OIF:SP:11:104,1,"Mairie Annexe la Fauconnière",49.001038,2.424099,0,0,OIF:SA:11:104,Europe/Paris,,OIF, +OIF:SP:11:105,1,"Mairie Annexe la Fauconnière",49.001523,2.423622,0,0,OIF:SA:11:104,Europe/Paris,,OIF, +OIF:SP:11:106,1,"Mairie de Gonesse",48.986561,2.450068,0,0,OIF:SA:11:106,Europe/Paris,,OIF, +OIF:SP:11:107,1,"Mairie de Gonesse",48.986507,2.450193,0,0,OIF:SA:11:106,Europe/Paris,,OIF, +OIF:SP:11:108,1,"La Malmaison",48.982131,2.454924,0,0,OIF:SA:11:108,Europe/Paris,,OIF, +OIF:SP:11:11,1,"Mairie Annexe / Collège Jean Moulin",48.980724,2.423346,0,0,OIF:SA:11:11,Europe/Paris,,OIF, +OIF:SP:11:110,1,"Les Marronniers",48.995891,2.421399,0,0,OIF:SA:11:110,Europe/Paris,,OIF, +OIF:SP:11:111,1,"Les Marronniers",48.995695,2.421274,0,0,OIF:SA:11:110,Europe/Paris,,OIF, +OIF:SP:11:112,1,"Maurice Meyer",49.000073,2.428687,0,0,OIF:SA:11:112,Europe/Paris,,OIF, +OIF:SP:11:113,1,"Maurice Meyer",48.999983,2.428973,0,0,OIF:SA:11:112,Europe/Paris,,OIF, +OIF:SP:11:114,1,"École Louise Michel",48.997322,2.430007,0,0,OIF:SA:11:114,Europe/Paris,,OIF, +OIF:SP:11:115,1,"École Louise Michel",48.997421,2.43028,0,0,OIF:SA:11:114,Europe/Paris,,OIF, +OIF:SP:11:116,1,"Les Mines",48.984201,2.471148,0,0,OIF:SA:11:116,Europe/Paris,,OIF, +OIF:SP:11:117,1,"Les Mines",48.984032,2.471401,0,0,OIF:SA:11:116,Europe/Paris,,OIF, +OIF:SP:11:118,1,"Myosotis",48.995922,2.426877,0,0,OIF:SA:11:118,Europe/Paris,,OIF, +OIF:SP:11:119,1,"Myosotis",48.996049,2.426331,0,0,OIF:SA:11:118,Europe/Paris,,OIF, +OIF:SP:11:12,1,"Mairie Annexe / Collège Jean Moulin",48.980612,2.423092,0,0,OIF:SA:11:11,Europe/Paris,,OIF, +OIF:SP:11:120,1,"Saint-Nicolas",48.985394,2.446735,0,0,OIF:SA:11:120,Europe/Paris,,OIF, +OIF:SP:11:121,1,"Saint-Nicolas",48.985302,2.446821,0,0,OIF:SA:11:120,Europe/Paris,,OIF, +OIF:SP:11:122,1,"Triangle de Gonesse",48.983798,2.467448,0,0,OIF:SA:11:122,Europe/Paris,,OIF, +OIF:SP:11:123,1,"Triangle de Gonesse",48.983628,2.467366,0,0,OIF:SA:11:122,Europe/Paris,,OIF, +OIF:SP:11:124,1,"Place des Marronniers",48.998897,2.427319,0,0,OIF:SA:11:124,Europe/Paris,,OIF, +OIF:SP:11:126,1,"Place des Marronniers",48.998941,2.427469,0,0,OIF:SA:11:124,Europe/Paris,,OIF, +OIF:SP:11:128,1,"Raymond Poincaré",49.004742,2.422125,0,0,OIF:SA:11:128,Europe/Paris,,OIF, +OIF:SP:11:13,1,"Châtaigniers",48.986021,2.411376,0,0,OIF:SA:11:13,Europe/Paris,,OIF, +OIF:SP:11:131,1,"Place des Roses",48.99629,2.427792,0,0,OIF:SA:11:131,Europe/Paris,,OIF, +OIF:SP:11:132,1,"Place des Roses",48.996515,2.428039,0,0,OIF:SA:11:131,Europe/Paris,,OIF, +OIF:SP:11:135,1,"Place Sangnier",49.001465,2.420775,0,0,OIF:SA:11:135,Europe/Paris,,OIF, +OIF:SP:11:136,1,"Place Sangnier",49.001521,2.420479,0,0,OIF:SA:11:135,Europe/Paris,,OIF, +OIF:SP:11:137,1,"Eugène Scribe",49.003503,2.420566,0,0,OIF:SA:11:137,Europe/Paris,,OIF, +OIF:SP:11:138,1,"Souvenir Français",48.993302,2.454157,0,0,OIF:SA:11:138,Europe/Paris,,OIF, +OIF:SP:11:139,1,"Souvenir Français",48.993436,2.45428,0,0,OIF:SA:11:138,Europe/Paris,,OIF, +OIF:SP:11:14,1,"Châtaigniers",48.986129,2.41098,0,0,OIF:SA:11:13,Europe/Paris,,OIF, +OIF:SP:11:140,1,"Square des Sports",49.003048,2.427342,0,0,OIF:SA:11:140,Europe/Paris,,OIF, +OIF:SP:11:143,1,"Place de Lattre de Tassigny",49.000908,2.419794,0,0,OIF:SA:11:143,Europe/Paris,,OIF, +OIF:SP:11:144,1,"Place Gaston Tessier",49.003931,2.424528,0,0,OIF:SA:11:144,Europe/Paris,,OIF, +OIF:SP:11:147,1,"Tour de Contrôle",49.009184,2.54427,0,0,OIF:SA:11:147,Europe/Paris,,OIF, +OIF:SP:11:148,1,"Charles de Gaulle",48.999495,2.511439,0,0,OIF:SA:11:148,Europe/Paris,,OIF, +OIF:SP:11:149,1,"Charles de Gaulle",48.999665,2.511958,0,0,OIF:SA:11:148,Europe/Paris,,OIF, +OIF:SP:11:15,1,"Cimetière",48.983121,2.420301,0,0,OIF:SA:11:15,Europe/Paris,,OIF, +OIF:SP:11:151,1,"Aéroport CDG 1 Terminal 3 Roissypole",49.010191,2.558932,0,0,OIF:SA:8727146,Europe/Paris,,OIF, +OIF:SP:11:16,1,"Cimetière",48.983005,2.420123,0,0,OIF:SA:11:15,Europe/Paris,,OIF, +OIF:SP:11:165,1,"Centre Commercial O'Parinor",48.95542,2.481364,0,0,OIF:SA:11:165,Europe/Paris,,OIF, +OIF:SP:11:17,1,"Pierre Curie",48.986017,2.420369,0,0,OIF:SA:11:17,Europe/Paris,,OIF, +OIF:SP:11:18,1,"Pierre Curie",48.985764,2.420305,0,0,OIF:SA:11:17,Europe/Paris,,OIF, +OIF:SP:11:183,1,"ZAC les Tulipes Sud",48.962234,2.455602,0,0,OIF:SA:11:183,Europe/Paris,,OIF, +OIF:SP:11:184,1,"Gare de Villiers-le-Bel Gonesse Arnouville",48.99397,2.417,0,0,OIF:SA:8727622,Europe/Paris,,OIF, +OIF:SP:11:188,1,"Gare de Villiers-le-Bel Gonesse Arnouville",48.994033,2.417095,0,0,OIF:SA:8727622,Europe/Paris,,OIF, +OIF:SP:11:19,1,"Jean Jaurès",48.987903,2.419476,0,0,OIF:SA:11:19,Europe/Paris,,OIF, +OIF:SP:11:190,1,"Gare de Villiers-le-Bel Gonesse Arnouville",48.994096,2.417178,0,0,OIF:SA:8727622,Europe/Paris,,OIF, +OIF:SP:11:191,1,"Église Saint-Eloi",48.99995,2.513871,0,0,OIF:SA:11:191,Europe/Paris,,OIF, +OIF:SP:11:192,1,"Église Saint-Eloi",49.000004,2.514117,0,0,OIF:SA:11:191,Europe/Paris,,OIF, +OIF:SP:11:197,1,"Rond-Point de Bonneuil",48.981414,2.443549,0,0,OIF:SA:11:197,Europe/Paris,,OIF, +OIF:SP:11:2,1,"Pierre Lizart",48.988621,2.406846,0,0,OIF:SA:11:1,Europe/Paris,,OIF, +OIF:SP:11:20,1,"Jean Jaurès",48.98769,2.419315,0,0,OIF:SA:11:19,Europe/Paris,,OIF, +OIF:SP:11:200,1,"Ferme Saint-Simon",48.962497,2.453255,0,0,OIF:SA:11:200,Europe/Paris,,OIF, +OIF:SP:11:201,1,"Ferme Saint-Simon",48.962829,2.453638,0,0,OIF:SA:11:200,Europe/Paris,,OIF, +OIF:SP:11:202,1,"ZAC les Tulipes Sud",48.962468,2.45537,0,0,OIF:SA:11:183,Europe/Paris,,OIF, +OIF:SP:11:203,1,"21ème Siècle",48.964684,2.458637,0,0,OIF:SA:11:203,Europe/Paris,,OIF, +OIF:SP:11:204,1,"21ème Siècle",48.964909,2.458392,0,0,OIF:SA:11:203,Europe/Paris,,OIF, +OIF:SP:11:205,1,"ZAC les Tulipes Nord",48.967538,2.462493,0,0,OIF:SA:11:205,Europe/Paris,,OIF, +OIF:SP:11:206,1,"ZAC les Tulipes Nord",48.967852,2.46233,0,0,OIF:SA:11:205,Europe/Paris,,OIF, +OIF:SP:11:209,1,"Fontaine Cypierre",48.98556,2.458291,0,0,OIF:SA:11:209,Europe/Paris,,OIF, +OIF:SP:11:21,1,"Lycée Professionnel",48.985278,2.406992,0,0,OIF:SA:11:21,Europe/Paris,,OIF, +OIF:SP:11:210,1,"Mairie de Bonneuil",48.974513,2.431727,0,0,OIF:SA:11:210,Europe/Paris,,OIF, +OIF:SP:11:213,1,"Gonesse Hôpital",48.994706,2.451238,0,0,OIF:SA:11:213,Europe/Paris,,OIF, +OIF:SP:11:214,1,"Gonesse Hôpital",48.994634,2.452276,0,0,OIF:SA:11:213,Europe/Paris,,OIF, +OIF:SP:11:219,1,"Salle des Fêtes",48.993384,2.443246,0,0,OIF:SA:11:219,Europe/Paris,,OIF, +OIF:SP:11:22,1,"Lycée Professionnel",48.985413,2.406801,0,0,OIF:SA:11:21,Europe/Paris,,OIF, +OIF:SP:11:220,1,"Salle des Fêtes",48.99351,2.44296,0,0,OIF:SA:11:219,Europe/Paris,,OIF, +OIF:SP:11:222,1,"Fontaine Cypierre",48.985641,2.458892,0,0,OIF:SA:11:209,Europe/Paris,,OIF, +OIF:SP:11:223,1,"Fontaine Cypierre",48.985379,2.460188,0,0,OIF:SA:11:209,Europe/Paris,,OIF, +OIF:SP:11:224,1,"Centre Commercial O'Parinor",48.955952,2.480369,0,0,OIF:SA:11:165,Europe/Paris,,OIF, +OIF:SP:11:225,1,"Route de Gonesse",48.951469,2.484929,0,0,OIF:SA:11:225,Europe/Paris,,OIF, +OIF:SP:11:226,1,"Route de Gonesse",48.95263,2.484713,0,0,OIF:SA:11:225,Europe/Paris,,OIF, +OIF:SP:11:227,1,"Cité Emmaüs",48.949016,2.488907,0,0,OIF:SA:11:227,Europe/Paris,,OIF, +OIF:SP:11:228,1,"Cité Emmaüs",48.949104,2.489504,0,0,OIF:SA:11:227,Europe/Paris,,OIF, +OIF:SP:11:229,1,"Croix Rouge",48.946845,2.492293,0,0,OIF:SA:11:229,Europe/Paris,,OIF, +OIF:SP:11:23,1,"Roger Dehasque",48.982857,2.425775,0,0,OIF:SA:11:23,Europe/Paris,,OIF, +OIF:SP:11:230,1,"Croix Rouge",48.947692,2.491614,0,0,OIF:SA:11:229,Europe/Paris,,OIF, +OIF:SP:11:231,1,"Francisco Ferrer",48.943894,2.495274,0,0,OIF:SA:11:231,Europe/Paris,,OIF, +OIF:SP:11:232,1,"Francisco Ferrer",48.944769,2.495489,0,0,OIF:SA:11:231,Europe/Paris,,OIF, +OIF:SP:11:233,1,"Marceau",48.941583,2.494733,0,0,OIF:SA:11:233,Europe/Paris,,OIF, +OIF:SP:11:234,1,"Marceau",48.94193,2.496074,0,0,OIF:SA:11:233,Europe/Paris,,OIF, +OIF:SP:11:235,1,"L'Herminier",48.937798,2.494629,0,0,OIF:SA:11:235,Europe/Paris,,OIF, +OIF:SP:11:236,1,"L'Herminier",48.938301,2.495272,0,0,OIF:SA:11:235,Europe/Paris,,OIF, +OIF:SP:11:237,1,"Jean Charcot / Anatole France",48.935633,2.494295,0,0,OIF:SA:11:237,Europe/Paris,,OIF, +OIF:SP:11:238,1,"Jean Charcot / Anatole France",48.936379,2.494352,0,0,OIF:SA:11:237,Europe/Paris,,OIF, +OIF:SP:11:239,1,"Mairie d'Aulnay-sous-Bois",48.933558,2.499119,0,0,OIF:SA:11:239,Europe/Paris,,OIF, +OIF:SP:11:24,1,"Roger Dehasque",48.983063,2.426377,0,0,OIF:SA:11:23,Europe/Paris,,OIF, +OIF:SP:11:240,1,"Gare d'Aulnay-sous-Bois",48.932403,2.49626,0,0,OIF:SA:8727141,Europe/Paris,,OIF, +OIF:SP:11:241,1,"Villiers-le-Bel Gonesse Arnouville",48.9945,2.418353,0,0,OIF:SA:8727622,Europe/Paris,,OIF, +OIF:SP:11:242,1,"Rond-Point du 14 Juillet",48.991758,2.431936,0,0,OIF:SA:11:242,Europe/Paris,,OIF, +OIF:SP:11:243,1,"Rond-Point du 14 Juillet",48.991578,2.431935,0,0,OIF:SA:11:242,Europe/Paris,,OIF, +OIF:SP:11:244,1,"Gonesse Hôpital",48.992757,2.450346,0,0,OIF:SA:11:213,Europe/Paris,,OIF, +OIF:SP:11:245,1,"Gonesse Hôpital",48.992928,2.450647,0,0,OIF:SA:11:213,Europe/Paris,,OIF, +OIF:SP:11:246,1,"Fontaine Cypierre",48.985441,2.46042,0,0,OIF:SA:11:209,Europe/Paris,,OIF, +OIF:SP:11:247,1,"Fontaine Cypierre",48.985531,2.460339,0,0,OIF:SA:11:209,Europe/Paris,,OIF, +OIF:SP:11:248,1,"Paris Nord 2 - Zone Commerciale",48.975466,2.497965,0,0,OIF:SA:11:248,Europe/Paris,,OIF, +OIF:SP:11:249,1,"Paris Nord 2 - Zone Commerciale",48.975341,2.497788,0,0,OIF:SA:11:248,Europe/Paris,,OIF, +OIF:SP:11:25,1,"Mairie Annexe / Collège Jean Moulin",48.980755,2.424052,0,0,OIF:SA:11:11,Europe/Paris,,OIF, +OIF:SP:11:250,1,"Paris Nord 2 - Bois de la Pie",48.979709,2.509843,0,0,OIF:SA:11:250,Europe/Paris,,OIF, +OIF:SP:11:251,1,"Paris Nord 2 - Bois de la Pie",48.98024,2.509271,0,0,OIF:SA:11:250,Europe/Paris,,OIF, +OIF:SP:11:252,1,"Parc des Expositions",48.974213,2.513947,0,0,OIF:SA:8727148,Europe/Paris,,OIF, +OIF:SP:11:253,1,"Parc des Expositions",48.973961,2.51381,0,0,OIF:SA:8727148,Europe/Paris,,OIF, +OIF:SP:11:254,1,"Villiers-le-Bel Gonesse Arnouville",48.99362,2.417259,0,0,OIF:SA:8727622,Europe/Paris,,OIF, +OIF:SP:11:255,1,"La Malmaison",48.98212,2.456439,0,0,OIF:SA:11:108,Europe/Paris,,OIF, +OIF:SP:11:256,1,"La Malmaison",48.982003,2.456494,0,0,OIF:SA:11:108,Europe/Paris,,OIF, +OIF:SP:11:257,1,"Margulliers",48.994588,2.523918,0,0,OIF:SA:11:257,Europe/Paris,,OIF, +OIF:SP:11:258,1,"Margulliers",48.994624,2.523727,0,0,OIF:SA:11:257,Europe/Paris,,OIF, +OIF:SP:11:259,1,"Aéroville",48.991379,2.524261,0,0,OIF:SA:11:259,Europe/Paris,,OIF, +OIF:SP:11:26,1,"Mairie Annexe / Collège Jean Moulin",48.980834,2.423769,0,0,OIF:SA:11:11,Europe/Paris,,OIF, +OIF:SP:11:260,1,"Aéroville",48.991388,2.524139,0,0,OIF:SA:11:259,Europe/Paris,,OIF, +OIF:SP:11:27,1,"Place Gabriel Péri",48.985407,2.419757,0,0,OIF:SA:11:27,Europe/Paris,,OIF, +OIF:SP:11:28,1,"Place Gabriel Péri",48.985387,2.419553,0,0,OIF:SA:11:27,Europe/Paris,,OIF, +OIF:SP:11:29,1,"La Poste",48.989467,2.41855,0,0,OIF:SA:11:29,Europe/Paris,,OIF, +OIF:SP:11:3,1,"Antin",48.991072,2.410304,0,0,OIF:SA:11:3,Europe/Paris,,OIF, +OIF:SP:11:30,1,"La Poste",48.989719,2.418209,0,0,OIF:SA:11:29,Europe/Paris,,OIF, +OIF:SP:11:31,1,"Les Quinconces",48.976352,2.424276,0,0,OIF:SA:11:31,Europe/Paris,,OIF, +OIF:SP:11:32,1,"Les Quinconces",48.976217,2.424139,0,0,OIF:SA:11:31,Europe/Paris,,OIF, +OIF:SP:11:33,1,"Gare de Villiers-le-Bel Gonesse Arnouville",48.994214,2.41599,0,0,OIF:SA:8727622,Europe/Paris,,OIF, +OIF:SP:11:34,1,"Gare de Villiers-le-Bel Gonesse Arnouville",48.993999,2.415224,0,0,OIF:SA:8727622,Europe/Paris,,OIF, +OIF:SP:11:35,1,"Gare de Villiers-le-Bel Gonesse Arnouville",48.993836,2.416781,0,0,OIF:SA:8727622,Europe/Paris,,OIF, +OIF:SP:11:36,1,"Gare de Villiers-le-Bel Gonesse Arnouville",48.993899,2.416904,0,0,OIF:SA:8727622,Europe/Paris,,OIF, +OIF:SP:11:37,1,"Charles Vaillant",48.986135,2.416046,0,0,OIF:SA:11:37,Europe/Paris,,OIF, +OIF:SP:11:38,1,"Charles Vaillant",48.986288,2.416223,0,0,OIF:SA:11:37,Europe/Paris,,OIF, +OIF:SP:11:4,1,"Antin",48.990982,2.410481,0,0,OIF:SA:11:3,Europe/Paris,,OIF, +OIF:SP:11:42,1,"Mairie de Bonneuil",48.974621,2.431577,0,0,OIF:SA:11:210,Europe/Paris,,OIF, +OIF:SP:11:44,1,"Ampère",48.979868,2.459959,0,0,OIF:SA:11:44,Europe/Paris,,OIF, +OIF:SP:11:45,1,"Ampère",48.979987,2.459861,0,0,OIF:SA:11:44,Europe/Paris,,OIF, +OIF:SP:11:46,1,"Berthelot",48.980532,2.454483,0,0,OIF:SA:11:46,Europe/Paris,,OIF, +OIF:SP:11:48,1,"Berthelot",48.980415,2.4538,0,0,OIF:SA:11:46,Europe/Paris,,OIF, +OIF:SP:11:49,1,"Pierre Salvi",48.991712,2.43281,0,0,OIF:SA:11:49,Europe/Paris,,OIF, +OIF:SP:11:5,1,"Barbusse",48.98556,2.415635,0,0,OIF:SA:11:5,Europe/Paris,,OIF, +OIF:SP:11:50,1,"Pierre Salvi",48.991964,2.432878,0,0,OIF:SA:11:49,Europe/Paris,,OIF, +OIF:SP:11:51,1,"Arsonval",48.99231,2.455485,0,0,OIF:SA:11:51,Europe/Paris,,OIF, +OIF:SP:11:52,1,"Arsonval",48.992296,2.45525,0,0,OIF:SA:11:51,Europe/Paris,,OIF, +OIF:SP:11:53,1,"Aubépines",48.994552,2.423643,0,0,OIF:SA:11:53,Europe/Paris,,OIF, +OIF:SP:11:54,1,"Aubépines",48.994352,2.423446,0,0,OIF:SA:11:53,Europe/Paris,,OIF, +OIF:SP:11:55,1,"Hector Berlioz",48.99234,2.428802,0,0,OIF:SA:11:55,Europe/Paris,,OIF, +OIF:SP:11:56,1,"Hector Berlioz",48.992291,2.428645,0,0,OIF:SA:11:55,Europe/Paris,,OIF, +OIF:SP:11:57,1,"Zone Industrielle",48.983825,2.459515,0,0,OIF:SA:11:57,Europe/Paris,,OIF, +OIF:SP:11:58,1,"Zone Industrielle",48.983717,2.459447,0,0,OIF:SA:11:57,Europe/Paris,,OIF, +OIF:SP:11:59,1,"Saint-Blin / Lycée René Cassin",48.985161,2.43247,0,0,OIF:SA:11:59,Europe/Paris,,OIF, +OIF:SP:11:6,1,"Barbusse",48.985596,2.415854,0,0,OIF:SA:11:5,Europe/Paris,,OIF, +OIF:SP:11:63,1,"Aristide Briand / Général Durand",49.000776,2.426189,0,0,OIF:SA:11:63,Europe/Paris,,OIF, +OIF:SP:11:64,1,"Aristide Briand / Général Durand",49.000686,2.426366,0,0,OIF:SA:11:63,Europe/Paris,,OIF, +OIF:SP:11:65,1,"Pierre Brossolette",48.995988,2.422944,0,0,OIF:SA:11:65,Europe/Paris,,OIF, +OIF:SP:11:66,1,"Pierre Brossolette",48.996159,2.422343,0,0,OIF:SA:11:65,Europe/Paris,,OIF, +OIF:SP:11:67,1,"Centre d'Apprentissage",48.990612,2.437464,0,0,OIF:SA:11:67,Europe/Paris,,OIF, +OIF:SP:11:68,1,"Centre d'Apprentissage",48.990747,2.437287,0,0,OIF:SA:11:67,Europe/Paris,,OIF, +OIF:SP:11:69,1,"Villa des Châtaigniers",48.993285,2.432212,0,0,OIF:SA:11:69,Europe/Paris,,OIF, +OIF:SP:11:7,1,"Léon Blum",48.984509,2.427608,0,0,OIF:SA:11:7,Europe/Paris,,OIF, +OIF:SP:11:70,1,"Villa des Châtaigniers",48.993232,2.431993,0,0,OIF:SA:11:69,Europe/Paris,,OIF, +OIF:SP:11:71,1,"Chauvart",48.985237,2.457703,0,0,OIF:SA:11:71,Europe/Paris,,OIF, +OIF:SP:11:72,1,"Chauvart",48.985138,2.457853,0,0,OIF:SA:11:71,Europe/Paris,,OIF, +OIF:SP:11:74,1,"Rond-Point du 14 Juillet",48.991149,2.431801,0,0,OIF:SA:11:242,Europe/Paris,,OIF, +OIF:SP:11:75,1,"Rond-Point du 14 Juillet",48.991012,2.431375,0,0,OIF:SA:11:242,Europe/Paris,,OIF, +OIF:SP:11:76,1,"Cressonnières",48.988993,2.458637,0,0,OIF:SA:11:76,Europe/Paris,,OIF, +OIF:SP:11:77,1,"Cressonnières",48.98893,2.458312,0,0,OIF:SA:11:76,Europe/Paris,,OIF, +OIF:SP:11:78,1,"Chemin d'Ecouen",49.001743,2.430097,0,0,OIF:SA:11:78,Europe/Paris,,OIF, +OIF:SP:11:79,1,"Chemin d'Ecouen",48.999926,2.432415,0,0,OIF:SA:11:78,Europe/Paris,,OIF, +OIF:SP:11:8,1,"Léon Blum",48.984707,2.427622,0,0,OIF:SA:11:7,Europe/Paris,,OIF, +OIF:SP:11:84,1,"Fontaine Saint-Nicolas",48.984173,2.452157,0,0,OIF:SA:11:84,Europe/Paris,,OIF, +OIF:SP:11:85,1,"Fontaine Saint-Nicolas",48.984182,2.452389,0,0,OIF:SA:11:84,Europe/Paris,,OIF, +OIF:SP:11:86,1,"Fontaine Cypierre",48.985163,2.460474,0,0,OIF:SA:11:209,Europe/Paris,,OIF, +OIF:SP:11:9,1,"Boieldieu",48.986583,2.403252,0,0,OIF:SA:11:10,Europe/Paris,,OIF, +OIF:SP:11:91,1,"Square la Garenne",48.999483,2.42381,0,0,OIF:SA:11:91,Europe/Paris,,OIF, +OIF:SP:11:92,1,"Guy de Maupassant",48.98869,2.435603,0,0,OIF:SA:11:92,Europe/Paris,,OIF, +OIF:SP:11:93,1,"Guy de Maupassant",48.98874,2.435273,0,0,OIF:SA:11:92,Europe/Paris,,OIF, +OIF:SP:11:98,1,"Place Jean Jaurès",48.984733,2.44002,0,0,OIF:SA:11:98,Europe/Paris,,OIF, +OIF:SP:11:99,1,"Place Jean Jaurès",48.984571,2.43976,0,0,OIF:SA:11:98,Europe/Paris,,OIF, +OIF:SP:12:3001,1,"Marais d'Air",48.37458,2.935523,0,0,OIF:SA:12:3001,Europe/Paris,,OIF, +OIF:SP:12:3002,1,"Marais d'Air",48.374661,2.935362,0,0,OIF:SA:12:3001,Europe/Paris,,OIF, +OIF:SP:12:3003,1,"Allasseur",48.3883,2.949394,0,0,OIF:SA:12:3003,Europe/Paris,,OIF, +OIF:SP:12:3007,1,"Bas Clos",48.38503,2.90592,0,0,OIF:SA:12:3007,Europe/Paris,,OIF, +OIF:SP:12:3008,1,"Bas Clos",48.384923,2.905703,0,0,OIF:SA:12:3007,Europe/Paris,,OIF, +OIF:SP:12:3009,1,"Le Petit Passeur",48.376809,2.88776,0,0,OIF:SA:12:3009,Europe/Paris,,OIF, +OIF:SP:12:3010,1,"Collège Paul Éluard",48.400974,2.96881,0,0,OIF:SA:12:3010,Europe/Paris,,OIF, +OIF:SP:12:3013,1,"Bord de l'Yonne",48.361293,3.081865,0,0,OIF:SA:12:3013,Europe/Paris,,OIF, +OIF:SP:12:3014,1,"Bord de l'Yonne",48.361076,3.082078,0,0,OIF:SA:12:3013,Europe/Paris,,OIF, +OIF:SP:12:3015,1,"Les Bordes",48.367626,2.98545,0,0,OIF:SA:12:3015,Europe/Paris,,OIF, +OIF:SP:12:3017,1,"Collège Pierre",48.386156,2.951974,0,0,OIF:SA:12:3017,Europe/Paris,,OIF, +OIF:SP:12:3018,1,"Collège Pierre",48.387344,2.951867,0,0,OIF:SA:12:3017,Europe/Paris,,OIF, +OIF:SP:12:3019,1,"ZA Confluent",48.392978,2.974316,0,0,OIF:SA:12:3019,Europe/Paris,,OIF, +OIF:SP:12:3020,1,"Gare",48.379916,2.943358,0,0,OIF:SA:8768230,Europe/Paris,,OIF, +OIF:SP:12:3021,1,"Collège Elsa Triolet",48.372653,2.934354,0,0,OIF:SA:12:3021,Europe/Paris,,OIF, +OIF:SP:12:3022,1,"Collège Elsa Triolet",48.372644,2.934353,0,0,OIF:SA:12:3021,Europe/Paris,,OIF, +OIF:SP:12:3025,1,"Croix Chute",48.41609,3.005851,0,0,OIF:SA:12:3025,Europe/Paris,,OIF, +OIF:SP:12:3026,1,"Croix Chute",48.416062,3.006012,0,0,OIF:SA:12:3025,Europe/Paris,,OIF, +OIF:SP:12:3027,1,"CFA",48.398254,2.978053,0,0,OIF:SA:12:3027,Europe/Paris,,OIF, +OIF:SP:12:3028,1,"CFA",48.39828,2.978175,0,0,OIF:SA:12:3027,Europe/Paris,,OIF, +OIF:SP:12:3029,1,"Cimetière",48.395699,2.966694,0,0,OIF:SA:12:3029,Europe/Paris,,OIF, +OIF:SP:12:3030,1,"Lycée A. Malraux",48.395192,2.958858,0,0,OIF:SA:12:3030,Europe/Paris,,OIF, +OIF:SP:12:3033,1,"Château",48.365309,3.056205,0,0,OIF:SA:12:3033,Europe/Paris,,OIF, +OIF:SP:12:3034,1,"Château",48.365485,3.055371,0,0,OIF:SA:12:3033,Europe/Paris,,OIF, +OIF:SP:12:3035,1,"Châtelet",48.383752,2.944091,0,0,OIF:SA:12:3035,Europe/Paris,,OIF, +OIF:SP:12:3036,1,"Châtelet",48.383528,2.943804,0,0,OIF:SA:12:3035,Europe/Paris,,OIF, +OIF:SP:12:3037,1,"Cimetière",48.38636,3.040904,0,0,OIF:SA:12:3037,Europe/Paris,,OIF, +OIF:SP:12:3038,1,"Cimetière",48.386278,3.041024,0,0,OIF:SA:12:3037,Europe/Paris,,OIF, +OIF:SP:12:3040,1,"Square Dropsy",48.382574,2.790088,0,0,OIF:SA:12:3040,Europe/Paris,,OIF, +OIF:SP:12:3042,1,"Clos Dion",48.394791,2.954776,0,0,OIF:SA:12:3042,Europe/Paris,,OIF, +OIF:SP:12:3043,1,"Croix de la Mission",48.385196,3.023368,0,0,OIF:SA:12:3043,Europe/Paris,,OIF, +OIF:SP:12:3044,1,"Croix de la Mission",48.385139,3.023893,0,0,OIF:SA:12:3043,Europe/Paris,,OIF, +OIF:SP:12:3050,1,"Bois Prieur",48.382469,2.78454,0,0,OIF:SA:12:3050,Europe/Paris,,OIF, +OIF:SP:12:3051,1,"Les Courreaux",48.412226,2.936858,0,0,OIF:SA:12:3051,Europe/Paris,,OIF, +OIF:SP:12:3052,1,"Les Courreaux",48.412217,2.93698,0,0,OIF:SA:12:3051,Europe/Paris,,OIF, +OIF:SP:12:3053,1,"Couture",48.363604,2.977885,0,0,OIF:SA:12:3053,Europe/Paris,,OIF, +OIF:SP:12:3054,1,"Couture",48.363603,2.978033,0,0,OIF:SA:12:3053,Europe/Paris,,OIF, +OIF:SP:12:3055,1,"Croix de Six",48.370105,2.957561,0,0,OIF:SA:12:3055,Europe/Paris,,OIF, +OIF:SP:12:3056,1,"Croix de Six",48.370025,2.957344,0,0,OIF:SA:12:3055,Europe/Paris,,OIF, +OIF:SP:12:3058,1,"Grande Garenne",48.374846,2.943312,0,0,OIF:SA:12:3058,Europe/Paris,,OIF, +OIF:SP:12:3059,1,"Grande Garenne",48.374747,2.943284,0,0,OIF:SA:12:3058,Europe/Paris,,OIF, +OIF:SP:12:3061,1,"Église",48.364713,2.985468,0,0,OIF:SA:12:3061,Europe/Paris,,OIF, +OIF:SP:12:3062,1,"Église",48.364659,2.985427,0,0,OIF:SA:12:3061,Europe/Paris,,OIF, +OIF:SP:12:3063,1,"Église",48.348333,2.975351,0,0,OIF:SA:12:3063,Europe/Paris,,OIF, +OIF:SP:12:3064,1,"Église",48.348279,2.975283,0,0,OIF:SA:12:3063,Europe/Paris,,OIF, +OIF:SP:12:3065,1,"Mairie",48.386602,3.034927,0,0,OIF:SA:12:3065,Europe/Paris,,OIF, +OIF:SP:12:3066,1,"Mairie",48.38644,3.035019,0,0,OIF:SA:12:3065,Europe/Paris,,OIF, +OIF:SP:12:3067,1,"Église",48.387436,2.95828,0,0,OIF:SA:12:3067,Europe/Paris,,OIF, +OIF:SP:12:3068,1,"Église",48.387014,2.958221,0,0,OIF:SA:12:3067,Europe/Paris,,OIF, +OIF:SP:12:3070,1,"École",48.345367,3.019905,0,0,OIF:SA:12:3070,Europe/Paris,,OIF, +OIF:SP:12:3071,1,"Église",48.374602,2.925712,0,0,OIF:SA:12:3071,Europe/Paris,,OIF, +OIF:SP:12:3072,1,"Église",48.374888,2.926106,0,0,OIF:SA:12:3071,Europe/Paris,,OIF, +OIF:SP:12:3073,1,"École",48.349565,2.973558,0,0,OIF:SA:12:3073,Europe/Paris,,OIF, +OIF:SP:12:3074,1,"École",48.349674,2.973398,0,0,OIF:SA:12:3073,Europe/Paris,,OIF, +OIF:SP:12:3075,1,"Église",48.351312,3.134143,0,0,OIF:SA:12:3075,Europe/Paris,,OIF, +OIF:SP:12:3076,1,"Église",48.351276,3.134062,0,0,OIF:SA:12:3075,Europe/Paris,,OIF, +OIF:SP:12:3078,1,"La Faïencerie",48.384356,2.95414,0,0,OIF:SA:12:3078,Europe/Paris,,OIF, +OIF:SP:12:3080,1,"Château",48.343682,3.023673,0,0,OIF:SA:12:3080,Europe/Paris,,OIF, +OIF:SP:12:3081,1,"Bourg",48.418098,2.959319,0,0,OIF:SA:12:3081,Europe/Paris,,OIF, +OIF:SP:12:3082,1,"Bourg",48.418144,2.959117,0,0,OIF:SA:12:3081,Europe/Paris,,OIF, +OIF:SP:12:3083,1,"Gare",48.379066,2.897109,0,0,OIF:SA:8768247,Europe/Paris,,OIF, +OIF:SP:12:3084,1,"Gare",48.379112,2.896961,0,0,OIF:SA:8768247,Europe/Paris,,OIF, +OIF:SP:12:3085,1,"Gare",48.38005,2.943535,0,0,OIF:SA:8768230,Europe/Paris,,OIF, +OIF:SP:12:3086,1,"Gare",48.380042,2.9434,0,0,OIF:SA:8768230,Europe/Paris,,OIF, +OIF:SP:12:3087,1,"Gardeloup",48.416359,2.985028,0,0,OIF:SA:12:3087,Europe/Paris,,OIF, +OIF:SP:12:3088,1,"Gardeloup",48.416564,2.985314,0,0,OIF:SA:12:3087,Europe/Paris,,OIF, +OIF:SP:12:3091,1,"Grand Buisson",48.417969,3.004308,0,0,OIF:SA:12:3091,Europe/Paris,,OIF, +OIF:SP:12:3092,1,"Grand Buisson",48.41814,3.004256,0,0,OIF:SA:12:3091,Europe/Paris,,OIF, +OIF:SP:12:3093,1,"Grandes Berges",48.394101,2.952581,0,0,OIF:SA:12:3093,Europe/Paris,,OIF, +OIF:SP:12:3094,1,"Grandes Berges",48.393993,2.952566,0,0,OIF:SA:12:3093,Europe/Paris,,OIF, +OIF:SP:12:3095,1,"Grand Fossard",48.36027,2.969101,0,0,OIF:SA:12:3095,Europe/Paris,,OIF, +OIF:SP:12:3096,1,"Grand Fossard",48.360253,2.968966,0,0,OIF:SA:12:3095,Europe/Paris,,OIF, +OIF:SP:12:3105,1,"Lycée Flora Tristan",48.377921,2.944873,0,0,OIF:SA:12:3105,Europe/Paris,,OIF, +OIF:SP:12:3106,1,"Lycée Flora Tristan",48.377981,2.945562,0,0,OIF:SA:12:3105,Europe/Paris,,OIF, +OIF:SP:12:3107,1,"Lycée Gustave Eiffel",48.372937,2.927879,0,0,OIF:SA:12:3107,Europe/Paris,,OIF, +OIF:SP:12:3108,1,"Lycée Gustave Eiffel",48.372864,2.928054,0,0,OIF:SA:12:3107,Europe/Paris,,OIF, +OIF:SP:12:3111,1,"La Morelle",48.425008,2.981704,0,0,OIF:SA:12:3111,Europe/Paris,,OIF, +OIF:SP:12:3112,1,"La Morelle",48.425045,2.981542,0,0,OIF:SA:12:3111,Europe/Paris,,OIF, +OIF:SP:12:3113,1,"Mairie",48.343963,3.020264,0,0,OIF:SA:12:3113,Europe/Paris,,OIF, +OIF:SP:12:3115,1,"La Roche",48.387759,2.885972,0,0,OIF:SA:12:3115,Europe/Paris,,OIF, +OIF:SP:12:3116,1,"La Roche",48.38783,2.886094,0,0,OIF:SA:12:3115,Europe/Paris,,OIF, +OIF:SP:12:3117,1,"Bourg",48.424161,2.996741,0,0,OIF:SA:12:3117,Europe/Paris,,OIF, +OIF:SP:12:3118,1,"Bourg",48.424154,2.996336,0,0,OIF:SA:12:3117,Europe/Paris,,OIF, +OIF:SP:12:3120,1,"Moulin de Nanchon",48.386664,2.841227,0,0,OIF:SA:12:3120,Europe/Paris,,OIF, +OIF:SP:12:3123,1,"Léo Lagrange",48.378919,2.950148,0,0,OIF:SA:12:3123,Europe/Paris,,OIF, +OIF:SP:12:3124,1,"Léo Lagrange",48.37901,2.949974,0,0,OIF:SA:12:3123,Europe/Paris,,OIF, +OIF:SP:12:3125,1,"Lepesme",48.382167,2.953183,0,0,OIF:SA:12:3125,Europe/Paris,,OIF, +OIF:SP:12:3126,1,"Lepesme",48.382305,2.954237,0,0,OIF:SA:12:3125,Europe/Paris,,OIF, +OIF:SP:12:3127,1,"Libération",48.383788,2.915382,0,0,OIF:SA:12:3127,Europe/Paris,,OIF, +OIF:SP:12:3128,1,"Libération",48.383499,2.913826,0,0,OIF:SA:12:3127,Europe/Paris,,OIF, +OIF:SP:12:3135,1,"ZI Clomarts",48.38613,2.967052,0,0,OIF:SA:12:3135,Europe/Paris,,OIF, +OIF:SP:12:3136,1,"ZI Clomarts",48.385325,2.966421,0,0,OIF:SA:12:3135,Europe/Paris,,OIF, +OIF:SP:12:3141,1,"Mairie",48.375842,2.929545,0,0,OIF:SA:12:3141,Europe/Paris,,OIF, +OIF:SP:12:3142,1,"Mairie",48.375888,2.929235,0,0,OIF:SA:12:3141,Europe/Paris,,OIF, +OIF:SP:12:3143,1,"Maison Rouge",48.373399,2.920044,0,0,OIF:SA:12:3143,Europe/Paris,,OIF, +OIF:SP:12:3145,1,"Le Maulny 1",48.434284,2.993681,0,0,OIF:SA:12:3145,Europe/Paris,,OIF, +OIF:SP:12:3146,1,"Le Maulny 1",48.434275,2.993667,0,0,OIF:SA:12:3145,Europe/Paris,,OIF, +OIF:SP:12:3147,1,"Le Maulny 2",48.435129,2.998393,0,0,OIF:SA:12:3145,Europe/Paris,,OIF, +OIF:SP:12:3148,1,"Le Maulny 2",48.43512,2.99838,0,0,OIF:SA:12:3145,Europe/Paris,,OIF, +OIF:SP:12:3153,1,"Place des Érables",48.359539,3.089004,0,0,OIF:SA:12:3153,Europe/Paris,,OIF, +OIF:SP:12:3154,1,"Place des Érables",48.359459,3.088814,0,0,OIF:SA:12:3153,Europe/Paris,,OIF, +OIF:SP:12:3155,1,"Marie Louise",48.392133,2.954137,0,0,OIF:SA:12:3155,Europe/Paris,,OIF, +OIF:SP:12:3156,1,"Marie Louise",48.391863,2.954201,0,0,OIF:SA:12:3155,Europe/Paris,,OIF, +OIF:SP:12:3158,1,"Molière",48.396891,2.955476,0,0,OIF:SA:12:3158,Europe/Paris,,OIF, +OIF:SP:12:3159,1,"Château des Amendes",48.385163,2.952692,0,0,OIF:SA:12:3159,Europe/Paris,,OIF, +OIF:SP:12:3161,1,"Montgelard",48.379837,2.882245,0,0,OIF:SA:12:3161,Europe/Paris,,OIF, +OIF:SP:12:3162,1,"Montgelard",48.380035,2.882274,0,0,OIF:SA:12:3161,Europe/Paris,,OIF, +OIF:SP:12:3163,1,"Montmachoux",48.320355,2.991107,0,0,OIF:SA:12:3163,Europe/Paris,,OIF, +OIF:SP:12:3164,1,"Montmachoux",48.320292,2.991187,0,0,OIF:SA:12:3163,Europe/Paris,,OIF, +OIF:SP:12:3165,1,"Nanon",48.415376,2.980626,0,0,OIF:SA:12:3165,Europe/Paris,,OIF, +OIF:SP:12:3166,1,"Nanon",48.415359,2.980464,0,0,OIF:SA:12:3165,Europe/Paris,,OIF, +OIF:SP:12:3169,1,"Clinique",48.387192,2.951649,0,0,OIF:SA:12:3169,Europe/Paris,,OIF, +OIF:SP:12:3170,1,"Route de Champagne",48.406512,2.791078,0,0,OIF:SA:12:3170,Europe/Paris,,OIF, +OIF:SP:12:3171,1,"Parc de la Gramine",48.396992,2.956773,0,0,OIF:SA:12:3171,Europe/Paris,,OIF, +OIF:SP:12:3173,1,"Pajol",48.398706,2.965785,0,0,OIF:SA:12:3173,Europe/Paris,,OIF, +OIF:SP:12:3174,1,"Pajol",48.398653,2.965731,0,0,OIF:SA:12:3173,Europe/Paris,,OIF, +OIF:SP:12:3176,1,"Petites Maisons",48.41433,2.94034,0,0,OIF:SA:12:3176,Europe/Paris,,OIF, +OIF:SP:12:3177,1,"Piscine",48.402079,2.967311,0,0,OIF:SA:12:3177,Europe/Paris,,OIF, +OIF:SP:12:3178,1,"Piscine",48.402089,2.967122,0,0,OIF:SA:12:3177,Europe/Paris,,OIF, +OIF:SP:12:3183,1,"Poterie",48.388568,2.954986,0,0,OIF:SA:12:3183,Europe/Paris,,OIF, +OIF:SP:12:3184,1,"Poterie",48.388514,2.95508,0,0,OIF:SA:12:3183,Europe/Paris,,OIF, +OIF:SP:12:3187,1,"Petit Buisson",48.416361,2.992726,0,0,OIF:SA:12:3187,Europe/Paris,,OIF, +OIF:SP:12:3188,1,"Petit Buisson",48.416496,2.992714,0,0,OIF:SA:12:3187,Europe/Paris,,OIF, +OIF:SP:12:3191,1,"Petit Fossard",48.362115,2.957062,0,0,OIF:SA:12:3191,Europe/Paris,,OIF, +OIF:SP:12:3193,1,"Quai de Seine",48.389371,2.957938,0,0,OIF:SA:12:3193,Europe/Paris,,OIF, +OIF:SP:12:3194,1,"Quai de Seine",48.389433,2.957952,0,0,OIF:SA:12:3193,Europe/Paris,,OIF, +OIF:SP:12:3195,1,"Route de Cannes",48.37458,2.958073,0,0,OIF:SA:12:3195,Europe/Paris,,OIF, +OIF:SP:12:3196,1,"Route de Cannes",48.3744,2.958139,0,0,OIF:SA:12:3195,Europe/Paris,,OIF, +OIF:SP:12:3197,1,"Rue des Chesnois",48.395348,2.956578,0,0,OIF:SA:12:3197,Europe/Paris,,OIF, +OIF:SP:12:3201,1,"Rue des Dames",48.386987,2.947732,0,0,OIF:SA:12:3201,Europe/Paris,,OIF, +OIF:SP:12:3202,1,"Rue des Dames",48.386986,2.947908,0,0,OIF:SA:12:3201,Europe/Paris,,OIF, +OIF:SP:12:3203,1,"Rue Désiré Thoison",48.365329,2.979714,0,0,OIF:SA:12:3203,Europe/Paris,,OIF, +OIF:SP:12:3204,1,"Rue Désiré Thoison",48.365247,2.979875,0,0,OIF:SA:12:3203,Europe/Paris,,OIF, +OIF:SP:12:3205,1,"Rue du Port",48.365051,2.974583,0,0,OIF:SA:12:3205,Europe/Paris,,OIF, +OIF:SP:12:3206,1,"Rue du Port",48.365375,2.974614,0,0,OIF:SA:12:3205,Europe/Paris,,OIF, +OIF:SP:12:3207,1,"Rue de Provins",48.390035,2.961483,0,0,OIF:SA:12:3207,Europe/Paris,,OIF, +OIF:SP:12:3208,1,"Rue de Provins",48.390088,2.961767,0,0,OIF:SA:12:3207,Europe/Paris,,OIF, +OIF:SP:12:3209,1,"École de Police",48.358908,2.984951,0,0,OIF:SA:12:3209,Europe/Paris,,OIF, +OIF:SP:12:3211,1,"Rue de Varennes",48.384136,2.947996,0,0,OIF:SA:12:3211,Europe/Paris,,OIF, +OIF:SP:12:3216,1,"Rustic",48.386161,2.954512,0,0,OIF:SA:12:3216,Europe/Paris,,OIF, +OIF:SP:12:3217,1,"Sept Grés",48.389452,2.93518,0,0,OIF:SA:12:3217,Europe/Paris,,OIF, +OIF:SP:12:3218,1,"Sept Grés",48.389274,2.934813,0,0,OIF:SA:12:3217,Europe/Paris,,OIF, +OIF:SP:12:3220,1,"Le Montoir 2",48.397474,2.8549,0,0,OIF:SA:12:3220,Europe/Paris,,OIF, +OIF:SP:12:3221,1,"Tavers",48.376546,2.874599,0,0,OIF:SA:12:3221,Europe/Paris,,OIF, +OIF:SP:12:3227,1,"Saint-Donain",48.380491,3.017651,0,0,OIF:SA:12:3227,Europe/Paris,,OIF, +OIF:SP:12:3233,1,"Village",48.399102,2.996992,0,0,OIF:SA:12:3233,Europe/Paris,,OIF, +OIF:SP:12:3234,1,"Village",48.399131,2.996669,0,0,OIF:SA:12:3233,Europe/Paris,,OIF, +OIF:SP:12:3235,1,"Faubourg Saint-Maurice",48.388294,2.960841,0,0,OIF:SA:12:3235,Europe/Paris,,OIF, +OIF:SP:12:3236,1,"Faubourg Saint-Maurice",48.388259,2.960652,0,0,OIF:SA:12:3235,Europe/Paris,,OIF, +OIF:SP:12:3237,1,"Saint-Nicolas",48.389824,2.958862,0,0,OIF:SA:12:3237,Europe/Paris,,OIF, +OIF:SP:12:3238,1,"Saint-Nicolas",48.389972,2.95804,0,0,OIF:SA:12:3237,Europe/Paris,,OIF, +OIF:SP:12:3241,1,"Saint-Pierre Centre Commercial",48.40092,2.990291,0,0,OIF:SA:12:3241,Europe/Paris,,OIF, +OIF:SP:12:3242,1,"Saint-Pierre Centre Commercial",48.400839,2.990277,0,0,OIF:SA:12:3241,Europe/Paris,,OIF, +OIF:SP:12:3243,1,"Saint-Pierre Moulin",48.39913,2.987069,0,0,OIF:SA:12:3243,Europe/Paris,,OIF, +OIF:SP:12:3244,1,"Saint-Pierre Moulin",48.399085,2.987136,0,0,OIF:SA:12:3243,Europe/Paris,,OIF, +OIF:SP:12:3245,1,"Saint-Pierre Mûriers",48.399129,2.984004,0,0,OIF:SA:12:3245,Europe/Paris,,OIF, +OIF:SP:12:3246,1,"Saint-Pierre Mûriers",48.399276,2.983452,0,0,OIF:SA:12:3245,Europe/Paris,,OIF, +OIF:SP:12:3248,1,"Mairie",48.344062,3.020171,0,0,OIF:SA:12:3113,Europe/Paris,,OIF, +OIF:SP:12:3251,1,"Tréchy",48.40307,3.020226,0,0,OIF:SA:12:3251,Europe/Paris,,OIF, +OIF:SP:12:3252,1,"Tréchy",48.403124,3.020146,0,0,OIF:SA:12:3251,Europe/Paris,,OIF, +OIF:SP:12:3253,1,"De Gaulle",48.381252,2.949366,0,0,OIF:SA:12:3253,Europe/Paris,,OIF, +OIF:SP:12:3254,1,"De Gaulle",48.381332,2.949421,0,0,OIF:SA:12:3253,Europe/Paris,,OIF, +OIF:SP:12:3261,1,"ZAC de la Sucrerie",48.376293,2.957122,0,0,OIF:SA:12:3261,Europe/Paris,,OIF, +OIF:SP:12:3262,1,"ZAC de la Sucrerie",48.376214,2.956878,0,0,OIF:SA:12:3261,Europe/Paris,,OIF, +OIF:SP:12:3263,1,"Zone Artisanale",48.384933,2.92568,0,0,OIF:SA:12:3263,Europe/Paris,,OIF, +OIF:SP:12:3264,1,"Zone Artisanale",48.384933,2.92568,0,0,OIF:SA:12:3263,Europe/Paris,,OIF, +OIF:SP:12:3269,1,"Moulin de Nanchon",48.386664,2.841254,0,0,OIF:SA:12:3120,Europe/Paris,,OIF, +OIF:SP:12:3273,1,"Division Leclerc",48.372165,2.821197,0,0,OIF:SA:12:3273,Europe/Paris,,OIF, +OIF:SP:12:3274,1,"Division Leclerc",48.372156,2.821143,0,0,OIF:SA:12:3273,Europe/Paris,,OIF, +OIF:SP:12:3276,1,"Rue Grande",48.383444,2.811138,0,0,OIF:SA:12:3276,Europe/Paris,,OIF, +OIF:SP:12:3277,1,"École Maternelle",48.386148,2.813997,0,0,OIF:SA:12:3277,Europe/Paris,,OIF, +OIF:SP:12:3278,1,"École Maternelle",48.386193,2.813889,0,0,OIF:SA:12:3277,Europe/Paris,,OIF, +OIF:SP:12:3282,1,"Église",48.389274,2.807991,0,0,OIF:SA:12:3282,Europe/Paris,,OIF, +OIF:SP:12:3285,1,"Mairie",48.394556,2.804461,0,0,OIF:SA:12:3285,Europe/Paris,,OIF, +OIF:SP:12:3286,1,"Mairie",48.394566,2.804367,0,0,OIF:SA:12:3285,Europe/Paris,,OIF, +OIF:SP:12:3291,1,"L'Ouche aux Oiseaux",48.399405,2.799293,0,0,OIF:SA:12:3291,Europe/Paris,,OIF, +OIF:SP:12:3292,1,"L'Ouche aux Oiseaux",48.399442,2.798969,0,0,OIF:SA:12:3291,Europe/Paris,,OIF, +OIF:SP:12:3293,1,"Gare",48.406202,2.799218,0,0,OIF:SA:8768245,Europe/Paris,,OIF, +OIF:SP:12:3294,1,"Gare",48.406157,2.799177,0,0,OIF:SA:8768245,Europe/Paris,,OIF, +OIF:SP:12:3295,1,"Monument",48.401304,2.798729,0,0,OIF:SA:12:3295,Europe/Paris,,OIF, +OIF:SP:12:3301,1,"Mairie de Thomery",48.409547,2.785163,0,0,OIF:SA:12:3301,Europe/Paris,,OIF, +OIF:SP:12:3302,1,"Mairie de Thomery",48.409735,2.785313,0,0,OIF:SA:12:3301,Europe/Paris,,OIF, +OIF:SP:12:3303,1,"Chantoiseau",48.405401,2.778214,0,0,OIF:SA:12:3303,Europe/Paris,,OIF, +OIF:SP:12:3304,1,"Chantoiseau",48.405792,2.779513,0,0,OIF:SA:12:3303,Europe/Paris,,OIF, +OIF:SP:12:3305,1,"By",48.39658,2.783486,0,0,OIF:SA:12:3305,Europe/Paris,,OIF, +OIF:SP:12:3306,1,"By",48.396544,2.783377,0,0,OIF:SA:12:3305,Europe/Paris,,OIF, +OIF:SP:12:3307,1,"Champ de Mars",48.37461,2.816806,0,0,OIF:SA:12:3307,Europe/Paris,,OIF, +OIF:SP:12:3308,1,"Champ de Mars",48.374799,2.816768,0,0,OIF:SA:12:3307,Europe/Paris,,OIF, +OIF:SP:12:3311,1,"Grinsson",48.377788,2.788373,0,0,OIF:SA:12:3311,Europe/Paris,,OIF, +OIF:SP:12:3312,1,"Grinsson",48.37751,2.788411,0,0,OIF:SA:12:3311,Europe/Paris,,OIF, +OIF:SP:12:3313,1,"Porte Nadon",48.377982,2.782301,0,0,OIF:SA:12:3313,Europe/Paris,,OIF, +OIF:SP:12:3314,1,"Porte Nadon",48.377946,2.782355,0,0,OIF:SA:12:3313,Europe/Paris,,OIF, +OIF:SP:12:3315,1,"Stade de la Faisanderie",48.403776,2.686572,0,0,OIF:SA:12:3315,Europe/Paris,,OIF, +OIF:SP:12:3316,1,"Stade de la Faisanderie",48.4039,2.687154,0,0,OIF:SA:12:3315,Europe/Paris,,OIF, +OIF:SP:12:3323,1,"François 1er",48.409427,2.693929,0,0,OIF:SA:12:3323,Europe/Paris,,OIF, +OIF:SP:12:3324,1,"François 1er",48.410536,2.692802,0,0,OIF:SA:12:3323,Europe/Paris,,OIF, +OIF:SP:12:3327,1,"Cour des Adieux",48.402523,2.696637,0,0,OIF:SA:12:3327,Europe/Paris,,OIF, +OIF:SP:12:3328,1,"Cour des Adieux",48.402648,2.696853,0,0,OIF:SA:12:3327,Europe/Paris,,OIF, +OIF:SP:12:3335,1,"Rudignon",48.335139,2.941963,0,0,OIF:SA:12:3335,Europe/Paris,,OIF, +OIF:SP:12:3336,1,"Rudignon",48.335192,2.942085,0,0,OIF:SA:12:3335,Europe/Paris,,OIF, +OIF:SP:12:3337,1,"Arrêt des Cars",48.335721,2.93191,0,0,OIF:SA:12:3337,Europe/Paris,,OIF, +OIF:SP:12:3338,1,"Arrêt des Cars",48.335901,2.931912,0,0,OIF:SA:12:3337,Europe/Paris,,OIF, +OIF:SP:12:3341,1,"École",48.310921,2.923352,0,0,OIF:SA:12:3341,Europe/Paris,,OIF, +OIF:SP:12:3342,1,"École",48.311012,2.923138,0,0,OIF:SA:12:3341,Europe/Paris,,OIF, +OIF:SP:12:3345,1,"Villemaréchal",48.267239,2.86894,0,0,OIF:SA:12:3345,Europe/Paris,,OIF, +OIF:SP:12:3346,1,"Villemaréchal",48.267221,2.86894,0,0,OIF:SA:12:3345,Europe/Paris,,OIF, +OIF:SP:12:3347,1,"Centre",48.265871,2.900035,0,0,OIF:SA:12:3347,Europe/Paris,,OIF, +OIF:SP:12:3348,1,"Centre",48.265862,2.900022,0,0,OIF:SA:12:3347,Europe/Paris,,OIF, +OIF:SP:12:3351,1,"Mairie",48.315447,2.902415,0,0,OIF:SA:12:3351,Europe/Paris,,OIF, +OIF:SP:12:3352,1,"Mairie",48.315519,2.902362,0,0,OIF:SA:12:3351,Europe/Paris,,OIF, +OIF:SP:12:3353,1,"Place Berne Bellecourt",48.176706,2.871801,0,0,OIF:SA:12:3353,Europe/Paris,,OIF, +OIF:SP:12:3354,1,"Place Berne Bellecourt",48.176832,2.871802,0,0,OIF:SA:12:3353,Europe/Paris,,OIF, +OIF:SP:12:3355,1,"Bichereau",48.307726,2.943466,0,0,OIF:SA:12:3355,Europe/Paris,,OIF, +OIF:SP:12:3356,1,"Bichereau",48.307825,2.943481,0,0,OIF:SA:12:3355,Europe/Paris,,OIF, +OIF:SP:12:3357,1,"Mairie",48.291785,2.943241,0,0,OIF:SA:12:3357,Europe/Paris,,OIF, +OIF:SP:12:3358,1,"Mairie",48.291883,2.943404,0,0,OIF:SA:12:3357,Europe/Paris,,OIF, +OIF:SP:12:3365,1,"Le Bouloy",48.255609,3.017754,0,0,OIF:SA:12:3365,Europe/Paris,,OIF, +OIF:SP:12:3366,1,"Le Bouloy",48.256024,3.01753,0,0,OIF:SA:12:3365,Europe/Paris,,OIF, +OIF:SP:12:3367,1,"Lichiot",48.287028,2.958841,0,0,OIF:SA:12:3367,Europe/Paris,,OIF, +OIF:SP:12:3368,1,"Lichiot",48.287226,2.958911,0,0,OIF:SA:12:3367,Europe/Paris,,OIF, +OIF:SP:12:3371,1,"Monument",48.278846,2.969076,0,0,OIF:SA:12:3371,Europe/Paris,,OIF, +OIF:SP:12:3372,1,"Monument",48.278963,2.969037,0,0,OIF:SA:12:3371,Europe/Paris,,OIF, +OIF:SP:12:3374,1,"Mairie",48.253772,2.942721,0,0,OIF:SA:12:3373,Europe/Paris,,OIF, +OIF:SP:12:3375,1,"Villeflambeau",48.252509,2.927587,0,0,OIF:SA:12:3375,Europe/Paris,,OIF, +OIF:SP:12:3376,1,"Villeflambeau",48.252573,2.927493,0,0,OIF:SA:12:3375,Europe/Paris,,OIF, +OIF:SP:12:3377,1,"Mairie",48.237353,2.901331,0,0,OIF:SA:12:3377,Europe/Paris,,OIF, +OIF:SP:12:3378,1,"Mairie",48.237217,2.901504,0,0,OIF:SA:12:3377,Europe/Paris,,OIF, +OIF:SP:12:3381,1,"Villenouette",48.233705,2.919071,0,0,OIF:SA:12:3381,Europe/Paris,,OIF, +OIF:SP:12:3382,1,"Villenouette",48.233741,2.919125,0,0,OIF:SA:12:3381,Europe/Paris,,OIF, +OIF:SP:12:3383,1,"Mairie",48.226852,2.937243,0,0,OIF:SA:12:3383,Europe/Paris,,OIF, +OIF:SP:12:3384,1,"Mairie",48.226843,2.937256,0,0,OIF:SA:12:3383,Europe/Paris,,OIF, +OIF:SP:12:3385,1,"Église",48.206934,2.940943,0,0,OIF:SA:12:3385,Europe/Paris,,OIF, +OIF:SP:12:3386,1,"Église",48.207061,2.940797,0,0,OIF:SA:12:3385,Europe/Paris,,OIF, +OIF:SP:12:3387,1,"Passy",48.203044,2.909678,0,0,OIF:SA:12:3387,Europe/Paris,,OIF, +OIF:SP:12:3388,1,"Passy",48.20301,2.909369,0,0,OIF:SA:12:3387,Europe/Paris,,OIF, +OIF:SP:12:3391,1,"Les Bordes",48.183922,2.895876,0,0,OIF:SA:12:3391,Europe/Paris,,OIF, +OIF:SP:12:3392,1,"Les Bordes",48.183985,2.895957,0,0,OIF:SA:12:3391,Europe/Paris,,OIF, +OIF:SP:12:3393,1,"Ville Saint-Jacques",48.342511,2.894776,0,0,OIF:SA:12:3393,Europe/Paris,,OIF, +OIF:SP:12:3394,1,"Ville Saint-Jacques",48.342494,2.894493,0,0,OIF:SA:12:3393,Europe/Paris,,OIF, +OIF:SP:12:3397,1,"Centre",48.326979,2.848271,0,0,OIF:SA:12:3397,Europe/Paris,,OIF, +OIF:SP:12:3398,1,"Centre",48.32705,2.848393,0,0,OIF:SA:12:3397,Europe/Paris,,OIF, +OIF:SP:12:3403,1,"Rebours",48.312513,2.813745,0,0,OIF:SA:12:3403,Europe/Paris,,OIF, +OIF:SP:12:3404,1,"Rebours",48.312433,2.813528,0,0,OIF:SA:12:3403,Europe/Paris,,OIF, +OIF:SP:12:3417,1,"Bréau - Centre Commercial",48.364219,2.953619,0,0,OIF:SA:12:3417,Europe/Paris,,OIF, +OIF:SP:12:3418,1,"Bréau - Centre Commercial",48.364191,2.953794,0,0,OIF:SA:12:3417,Europe/Paris,,OIF, +OIF:SP:12:3431,1,"Les Rosiers",48.394389,2.947387,0,0,OIF:SA:12:3431,Europe/Paris,,OIF, +OIF:SP:12:3432,1,"Les Rosiers",48.394352,2.947521,0,0,OIF:SA:12:3431,Europe/Paris,,OIF, +OIF:SP:12:3445,1,"La Celle",48.389458,2.845979,0,0,OIF:SA:12:3445,Europe/Paris,,OIF, +OIF:SP:12:3446,1,"La Celle",48.389357,2.846248,0,0,OIF:SA:12:3445,Europe/Paris,,OIF, +OIF:SP:12:3451,1,"Heurtebise",48.426006,2.993225,0,0,OIF:SA:12:3451,Europe/Paris,,OIF, +OIF:SP:12:3452,1,"Heurtebise",48.426083,2.989066,0,0,OIF:SA:12:3451,Europe/Paris,,OIF, +OIF:SP:12:3453,1,"Launoy",48.266793,3.004027,0,0,OIF:SA:12:3453,Europe/Paris,,OIF, +OIF:SP:12:3454,1,"Launoy",48.266793,3.003933,0,0,OIF:SA:12:3453,Europe/Paris,,OIF, +OIF:SP:12:3455,1,"Bréau - Cinéma",48.362498,2.950739,0,0,OIF:SA:12:3455,Europe/Paris,,OIF, +OIF:SP:12:3456,1,"Bréau - Cinéma",48.362429,2.950279,0,0,OIF:SA:12:3455,Europe/Paris,,OIF, +OIF:SP:12:3457,1,"Collège F. Gregh",48.39822,2.807923,0,0,OIF:SA:12:3457,Europe/Paris,,OIF, +OIF:SP:12:3458,1,"Collège F. Gregh",48.398246,2.808031,0,0,OIF:SA:12:3457,Europe/Paris,,OIF, +OIF:SP:12:3483,1,"Charmois",48.360814,2.826515,0,0,OIF:SA:12:3483,Europe/Paris,,OIF, +OIF:SP:12:3484,1,"Charmois",48.360806,2.826326,0,0,OIF:SA:12:3483,Europe/Paris,,OIF, +OIF:SP:12:3487,1,"Carrefour Cateline",48.355282,2.822848,0,0,OIF:SA:12:3487,Europe/Paris,,OIF, +OIF:SP:12:3491,1,"Petit Jardin",48.369875,2.826924,0,0,OIF:SA:12:3491,Europe/Paris,,OIF, +OIF:SP:12:3492,1,"Petit Jardin",48.369723,2.826882,0,0,OIF:SA:12:3491,Europe/Paris,,OIF, +OIF:SP:12:3493,1,"Ravanne",48.364237,2.827276,0,0,OIF:SA:12:3493,Europe/Paris,,OIF, +OIF:SP:12:3494,1,"Ravanne",48.363977,2.827017,0,0,OIF:SA:12:3493,Europe/Paris,,OIF, +OIF:SP:12:3497,1,"Villette",48.351159,2.813031,0,0,OIF:SA:12:3497,Europe/Paris,,OIF, +OIF:SP:12:3498,1,"Villette",48.351276,2.81318,0,0,OIF:SA:12:3497,Europe/Paris,,OIF, +OIF:SP:12:3502,1,"Carrefour Cateline",48.35368,2.818962,0,0,OIF:SA:12:3502,Europe/Paris,,OIF, +OIF:SP:12:3515,1,"Collège Sisley",48.367296,2.815714,0,0,OIF:SA:12:3515,Europe/Paris,,OIF, +OIF:SP:12:3516,1,"Collège Sisley",48.367251,2.815835,0,0,OIF:SA:12:3515,Europe/Paris,,OIF, +OIF:SP:12:3521,1,"Piscine",48.37411,2.820378,0,0,OIF:SA:12:3521,Europe/Paris,,OIF, +OIF:SP:12:3522,1,"Piscine",48.37412,2.820257,0,0,OIF:SA:12:3521,Europe/Paris,,OIF, +OIF:SP:12:3531,1,"Rue du Port",48.389457,2.846208,0,0,OIF:SA:12:3531,Europe/Paris,,OIF, +OIF:SP:12:3532,1,"Rue du Port",48.38951,2.846371,0,0,OIF:SA:12:3531,Europe/Paris,,OIF, +OIF:SP:12:3533,1,"Les Guettes",48.388251,2.820873,0,0,OIF:SA:12:3533,Europe/Paris,,OIF, +OIF:SP:12:3534,1,"Les Guettes",48.388232,2.82094,0,0,OIF:SA:12:3533,Europe/Paris,,OIF, +OIF:SP:12:3535,1,"Rue des Trop Chères",48.390426,2.812038,0,0,OIF:SA:12:3535,Europe/Paris,,OIF, +OIF:SP:12:3536,1,"Rue des Trop Chères",48.390723,2.811959,0,0,OIF:SA:12:3535,Europe/Paris,,OIF, +OIF:SP:12:3538,1,"École B. Plassard",48.386674,2.81064,0,0,OIF:SA:12:3538,Europe/Paris,,OIF, +OIF:SP:12:3551,1,"Rue du 4 Septembre",48.407465,2.788885,0,0,OIF:SA:12:3551,Europe/Paris,,OIF, +OIF:SP:12:3552,1,"Rue du 4 Septembre",48.40733,2.78883,0,0,OIF:SA:12:3551,Europe/Paris,,OIF, +OIF:SP:12:3555,1,"Gare",48.377632,2.798601,0,0,OIF:SA:8768227,Europe/Paris,,OIF, +OIF:SP:12:3556,1,"Gare",48.377623,2.798588,0,0,OIF:SA:8768227,Europe/Paris,,OIF, +OIF:SP:12:3561,1,"Route de Bourgogne",48.385394,2.781298,0,0,OIF:SA:12:3561,Europe/Paris,,OIF, +OIF:SP:12:3562,1,"Route de Bourgogne",48.385502,2.78142,0,0,OIF:SA:12:3561,Europe/Paris,,OIF, +OIF:SP:12:3563,1,"8 Mai",48.376737,2.799902,0,0,OIF:SA:12:3563,Europe/Paris,,OIF, +OIF:SP:12:3564,1,"8 Mai",48.376692,2.799862,0,0,OIF:SA:12:3563,Europe/Paris,,OIF, +OIF:SP:12:3571,1,"Cité Montezin",48.381286,2.788201,0,0,OIF:SA:12:3571,Europe/Paris,,OIF, +OIF:SP:12:3572,1,"Cité Montezin",48.381349,2.788336,0,0,OIF:SA:12:3571,Europe/Paris,,OIF, +OIF:SP:12:3573,1,"Léon Richet",48.383559,2.788773,0,0,OIF:SA:12:3573,Europe/Paris,,OIF, +OIF:SP:12:3574,1,"Léon Richet",48.383541,2.788679,0,0,OIF:SA:12:3573,Europe/Paris,,OIF, +OIF:SP:12:3575,1,"Libération",48.38775,2.783613,0,0,OIF:SA:12:3575,Europe/Paris,,OIF, +OIF:SP:12:3576,1,"Libération",48.387661,2.783572,0,0,OIF:SA:12:3575,Europe/Paris,,OIF, +OIF:SP:12:3583,1,"Basse Roche",48.389489,2.879213,0,0,OIF:SA:12:3583,Europe/Paris,,OIF, +OIF:SP:12:3584,1,"Basse Roche",48.389616,2.879053,0,0,OIF:SA:12:3583,Europe/Paris,,OIF, +OIF:SP:12:3591,1,"Le Chesnoy",48.387646,2.859432,0,0,OIF:SA:12:3591,Europe/Paris,,OIF, +OIF:SP:12:3592,1,"Le Chesnoy",48.387537,2.859539,0,0,OIF:SA:12:3591,Europe/Paris,,OIF, +OIF:SP:12:3593,1,"Poste EDF le Chesnoy",48.387509,2.865937,0,0,OIF:SA:12:3593,Europe/Paris,,OIF, +OIF:SP:12:3594,1,"Poste EDF le Chesnoy",48.387529,2.865492,0,0,OIF:SA:12:3593,Europe/Paris,,OIF, +OIF:SP:12:3595,1,"Marangis",48.401728,2.872697,0,0,OIF:SA:12:3595,Europe/Paris,,OIF, +OIF:SP:12:3597,1,"Le Montoir 1",48.394129,2.853031,0,0,OIF:SA:12:3220,Europe/Paris,,OIF, +OIF:SP:12:3598,1,"Le Montoir 1",48.394193,2.852842,0,0,OIF:SA:12:3220,Europe/Paris,,OIF, +OIF:SP:12:3603,1,"La Thurelle",48.399787,2.833496,0,0,OIF:SA:12:3603,Europe/Paris,,OIF, +OIF:SP:12:3604,1,"La Thurelle",48.40029,2.833581,0,0,OIF:SA:12:3603,Europe/Paris,,OIF, +OIF:SP:12:3613,1,"Pilliers",48.32572,2.858384,0,0,OIF:SA:12:3613,Europe/Paris,,OIF, +OIF:SP:12:3614,1,"Pilliers",48.325712,2.858289,0,0,OIF:SA:12:3613,Europe/Paris,,OIF, +OIF:SP:12:3615,1,"La Roche du Sault",48.325151,2.848779,0,0,OIF:SA:12:3615,Europe/Paris,,OIF, +OIF:SP:12:3616,1,"La Roche du Sault",48.325133,2.848711,0,0,OIF:SA:12:3615,Europe/Paris,,OIF, +OIF:SP:12:3637,1,"Place du 11 Novembre",48.378062,2.794367,0,0,OIF:SA:12:3637,Europe/Paris,,OIF, +OIF:SP:12:3645,1,"Le Puits",48.426172,2.989094,0,0,OIF:SA:12:3645,Europe/Paris,,OIF, +OIF:SP:12:3646,1,"Le Puits",48.42621,2.988878,0,0,OIF:SA:12:3645,Europe/Paris,,OIF, +OIF:SP:12:3651,1,"Lycée Uruguay",48.40983,2.736294,0,0,OIF:SA:12:3651,Europe/Paris,,OIF, +OIF:SP:12:3652,1,"Lycée Uruguay",48.409758,2.736307,0,0,OIF:SA:12:3651,Europe/Paris,,OIF, +OIF:SP:12:3655,1,"Rue de la Garenne",48.387555,2.900615,0,0,OIF:SA:12:3655,Europe/Paris,,OIF, +OIF:SP:12:3656,1,"Rue de la Garenne",48.387535,2.900912,0,0,OIF:SA:12:3655,Europe/Paris,,OIF, +OIF:SP:12:3657,1,"Bois des Chevrons",48.195975,2.900671,0,0,OIF:SA:12:3657,Europe/Paris,,OIF, +OIF:SP:12:3658,1,"Bois des Chevrons",48.195922,2.900509,0,0,OIF:SA:12:3657,Europe/Paris,,OIF, +OIF:SP:12:3661,1,"Grand Creilly",48.252685,2.897295,0,0,OIF:SA:12:3661,Europe/Paris,,OIF, +OIF:SP:12:3662,1,"Grand Creilly",48.252865,2.897216,0,0,OIF:SA:12:3661,Europe/Paris,,OIF, +OIF:SP:12:3667,1,"Avenue de Fontainebleau",48.374247,2.808774,0,0,OIF:SA:12:3667,Europe/Paris,,OIF, +OIF:SP:12:3668,1,"Avenue de Fontainebleau",48.37431,2.808774,0,0,OIF:SA:12:3667,Europe/Paris,,OIF, +OIF:SP:12:3671,1,"Rue des Sablons",48.344956,3.016406,0,0,OIF:SA:12:3671,Europe/Paris,,OIF, +OIF:SP:12:3672,1,"Rue des Sablons",48.344938,3.016487,0,0,OIF:SA:12:3671,Europe/Paris,,OIF, +OIF:SP:12:3673,1,"Parédes",48.399476,2.958018,0,0,OIF:SA:12:3673,Europe/Paris,,OIF, +OIF:SP:12:3674,1,"Parédes",48.399493,2.958099,0,0,OIF:SA:12:3673,Europe/Paris,,OIF, +OIF:SP:12:3675,1,"Liberté",48.399395,2.95294,0,0,OIF:SA:12:3675,Europe/Paris,,OIF, +OIF:SP:12:3676,1,"Liberté",48.399512,2.952901,0,0,OIF:SA:12:3675,Europe/Paris,,OIF, +OIF:SP:12:3679,1,"Collège Paul Éluard",48.402073,2.968378,0,0,OIF:SA:12:3010,Europe/Paris,,OIF, +OIF:SP:12:3681,1,"Hameau Saint-Jean",48.401054,2.968946,0,0,OIF:SA:12:3681,Europe/Paris,,OIF, +OIF:SP:12:3682,1,"Hameau Saint-Jean",48.400974,2.968851,0,0,OIF:SA:12:3681,Europe/Paris,,OIF, +OIF:SP:12:3702,1,"Mairie",48.281919,2.992378,0,0,OIF:SA:12:3702,Europe/Paris,,OIF, +OIF:SP:12:3725,1,"Église",48.299396,2.93903,0,0,OIF:SA:12:3725,Europe/Paris,,OIF, +OIF:SP:12:3726,1,"Église",48.299379,2.938869,0,0,OIF:SA:12:3725,Europe/Paris,,OIF, +OIF:SP:12:3741,1,"Mairie",48.384676,2.956465,0,0,OIF:SA:12:3741,Europe/Paris,,OIF, +OIF:SP:12:3891,1,"Salle des Fêtes",48.38744,2.900236,0,0,OIF:SA:12:3891,Europe/Paris,,OIF, +OIF:SP:12:3892,1,"Salle des Fêtes",48.387384,2.900573,0,0,OIF:SA:12:3891,Europe/Paris,,OIF, +OIF:SP:12:3903,1,"Petites Maisons",48.414581,2.940599,0,0,OIF:SA:12:3176,Europe/Paris,,OIF, +OIF:SP:12:3905,1,"Chemin des Ânes",48.424238,3.00378,0,0,OIF:SA:12:3905,Europe/Paris,,OIF, +OIF:SP:12:3906,1,"Chemin des Ânes",48.424166,3.00382,0,0,OIF:SA:12:3905,Europe/Paris,,OIF, +OIF:SP:12:3915,1,"Pont",48.389623,2.808413,0,0,OIF:SA:12:3915,Europe/Paris,,OIF, +OIF:SP:12:3916,1,"Pont",48.389471,2.808236,0,0,OIF:SA:12:3915,Europe/Paris,,OIF, +OIF:SP:12:3917,1,"Place Greffülhe",48.410578,2.785955,0,0,OIF:SA:12:3917,Europe/Paris,,OIF, +OIF:SP:12:3918,1,"Place Greffülhe",48.410452,2.785927,0,0,OIF:SA:12:3917,Europe/Paris,,OIF, +OIF:SP:12:3921,1,"Les Coudraies",48.387028,2.860776,0,0,OIF:SA:12:3921,Europe/Paris,,OIF, +OIF:SP:12:3923,1,"École",48.253209,2.945461,0,0,OIF:SA:12:3923,Europe/Paris,,OIF, +OIF:SP:12:3924,1,"École",48.253282,2.945247,0,0,OIF:SA:12:3923,Europe/Paris,,OIF, +OIF:SP:12:3935,1,"Place Schneider",48.397347,2.798951,0,0,OIF:SA:12:3935,Europe/Paris,,OIF, +OIF:SP:12:3936,1,"Place Schneider",48.397321,2.798761,0,0,OIF:SA:12:3935,Europe/Paris,,OIF, +OIF:SP:12:3937,1,"Route de Fontainebleau",48.302849,2.824195,0,0,OIF:SA:12:3937,Europe/Paris,,OIF, +OIF:SP:12:3938,1,"Route de Fontainebleau",48.302842,2.82371,0,0,OIF:SA:12:3937,Europe/Paris,,OIF, +OIF:SP:12:3975,1,"Route de Fontainebleau",48.374195,2.808355,0,0,OIF:SA:12:3975,Europe/Paris,,OIF, +OIF:SP:12:3976,1,"Route de Fontainebleau",48.37422,2.8088,0,0,OIF:SA:12:3975,Europe/Paris,,OIF, +OIF:SP:12:3977,1,"La Grande Plaine",48.361371,2.991444,0,0,OIF:SA:12:3977,Europe/Paris,,OIF, +OIF:SP:12:3982,1,"Casanova",48.372614,2.941951,0,0,OIF:SA:12:3982,Europe/Paris,,OIF, +OIF:SP:12:3985,1,"Marais du Saule",48.37121,2.940518,0,0,OIF:SA:12:3985,Europe/Paris,,OIF, +OIF:SP:12:3992,1,"Route de Chevinois",48.339995,3.026821,0,0,OIF:SA:12:3992,Europe/Paris,,OIF, +OIF:SP:12:3993,1,"Route de Chevinois",48.338667,3.029406,0,0,OIF:SA:12:3992,Europe/Paris,,OIF, +OIF:SP:12:4003,1,"Nelson Mandela",48.372671,2.941223,0,0,OIF:SA:12:4003,Europe/Paris,,OIF, +OIF:SP:12:4005,1,"Gardeloup",48.414819,2.987143,0,0,OIF:SA:12:3087,Europe/Paris,,OIF, +OIF:SP:12:4006,1,"Fresnes",48.32915,3.000601,0,0,OIF:SA:12:4006,Europe/Paris,,OIF, +OIF:SP:12:4007,1,"Fresnes",48.329292,3.000872,0,0,OIF:SA:12:4006,Europe/Paris,,OIF, +OIF:SP:12:4014,1,"Collège de Lorrez",48.23657,2.905172,0,0,OIF:SA:12:4014,Europe/Paris,,OIF, +OIF:SP:12:4015,1,"Collège de Lorrez",48.236507,2.905117,0,0,OIF:SA:12:4014,Europe/Paris,,OIF, +OIF:SP:12:4021,1,"ZAC Tournesols",48.358689,2.983828,0,0,OIF:SA:12:4021,Europe/Paris,,OIF, +OIF:SP:12:4023,1,"Clos Mellot",48.433663,2.998537,0,0,OIF:SA:12:4023,Europe/Paris,,OIF, +OIF:SP:12:4024,1,"Clos Mellot",48.43361,3.000063,0,0,OIF:SA:12:4023,Europe/Paris,,OIF, +OIF:SP:12:4031,1,"Bois de Châtillon",48.406558,3.018638,0,0,OIF:SA:12:4031,Europe/Paris,,OIF, +OIF:SP:12:4032,1,"Bois de Châtillon",48.406595,3.018517,0,0,OIF:SA:12:4031,Europe/Paris,,OIF, +OIF:SP:12:4034,1,"Nodet",48.381153,2.954467,0,0,OIF:SA:12:4034,Europe/Paris,,OIF, +OIF:SP:12:4040,1,"Jean-Paul II",48.38654,2.957648,0,0,OIF:SA:12:4040,Europe/Paris,,OIF, +OIF:SP:12:4050,1,"Hameau de Chevinois",48.337025,3.031974,0,0,OIF:SA:12:4050,Europe/Paris,,OIF, +OIF:SP:12:4982,1,"Église Saint-François",48.390752,2.802578,0,0,OIF:SA:12:4982,Europe/Paris,,OIF, +OIF:SP:12:4983,1,"Église Saint-François",48.391264,2.802542,0,0,OIF:SA:12:4982,Europe/Paris,,OIF, +OIF:SP:12:4984,1,"La Madeleine",48.368661,2.835724,0,0,OIF:SA:12:4984,Europe/Paris,,OIF, +OIF:SP:12:4985,1,"La Madeleine",48.368743,2.835374,0,0,OIF:SA:12:4984,Europe/Paris,,OIF, +OIF:SP:12:4986,1,"Avenue de Sens",48.370244,2.82914,0,0,OIF:SA:12:4986,Europe/Paris,,OIF, +OIF:SP:12:4987,1,"Frédéric Mistral",48.390748,2.803644,0,0,OIF:SA:12:4987,Europe/Paris,,OIF, +OIF:SP:12:4988,1,"Frédéric Mistral",48.390784,2.803536,0,0,OIF:SA:12:4987,Europe/Paris,,OIF, +OIF:SP:12:4991,1,"Avenue de Sens",48.370145,2.829085,0,0,OIF:SA:12:4986,Europe/Paris,,OIF, +OIF:SP:12:4992,1,"Rue de Moret",48.405218,2.779211,0,0,OIF:SA:12:4992,Europe/Paris,,OIF, +OIF:SP:12:4993,1,"Rue de Moret",48.405296,2.775256,0,0,OIF:SA:12:4992,Europe/Paris,,OIF, +OIF:SP:12:4994,1,"Les Forestières",48.357078,3.108059,0,0,OIF:SA:12:4994,Europe/Paris,,OIF, +OIF:SP:12:4995,1,"Les Forestières",48.357131,3.10814,0,0,OIF:SA:12:4994,Europe/Paris,,OIF, +OIF:SP:12:4999,1,"Place Samois",48.373585,2.814597,0,0,OIF:SA:12:4999,Europe/Paris,,OIF, +OIF:SP:12:5000,1,"Place Samois",48.373812,2.814141,0,0,OIF:SA:12:5000,Europe/Paris,,OIF, +OIF:SP:12:5002,1,"ZAE des Renardières",48.368345,2.840255,0,0,OIF:SA:12:5002,Europe/Paris,,OIF, +OIF:SP:12:5003,1,"EDF Lab les Renardières",48.374661,2.841152,0,0,OIF:SA:12:5003,Europe/Paris,,OIF, +OIF:SP:12:5004,1,"Port de la Celle",48.382766,2.812036,0,0,OIF:SA:12:5004,Europe/Paris,,OIF, +OIF:SP:12:5005,1,"Port de la Celle",48.382614,2.811886,0,0,OIF:SA:12:5004,Europe/Paris,,OIF, +OIF:SP:12:5006,1,"Pierre de Coubertin",48.397909,2.804815,0,0,OIF:SA:12:5006,Europe/Paris,,OIF, +OIF:SP:12:5007,1,"Pierre de Coubertin",48.397854,2.804936,0,0,OIF:SA:12:5006,Europe/Paris,,OIF, +OIF:SP:12:5014,1,"Chemin des Moules",48.384269,2.895734,0,0,OIF:SA:12:5014,Europe/Paris,,OIF, +OIF:SP:12:5015,1,"Chemin des Moules",48.384269,2.895734,0,0,OIF:SA:12:5014,Europe/Paris,,OIF, +OIF:SP:12:5050,1,"Croix de Saint-Roch",48.363176,2.988619,0,0,OIF:SA:12:5050,Europe/Paris,,OIF, +OIF:SP:12:5051,1,"Rue de Bray",48.370766,2.986703,0,0,OIF:SA:12:5051,Europe/Paris,,OIF, +OIF:SP:12:5052,1,"Merlange",48.410998,2.975684,0,0,OIF:SA:12:5052,Europe/Paris,,OIF, +OIF:SP:12:5053,1,"Merlange",48.410863,2.97556,0,0,OIF:SA:12:5052,Europe/Paris,,OIF, +OIF:SP:13:1,1,"Aristide Briand",48.703248,2.545046,0,0,OIF:SA:13:1,Europe/Paris,,OIF, +OIF:SP:13:100,1,"Hôpital",48.694343,2.606368,0,0,OIF:SA:13:100,Europe/Paris,,OIF, +OIF:SP:13:101,1,"Église",48.725327,2.572361,0,0,OIF:SA:13:101,Europe/Paris,,OIF, +OIF:SP:13:102,1,"Train des Roses",48.698105,2.614576,0,0,OIF:SA:13:102,Europe/Paris,,OIF, +OIF:SP:13:104,1,"Erik Satie",48.682376,2.60612,0,0,OIF:SA:13:104,Europe/Paris,,OIF, +OIF:SP:13:105,1,"Les Étards",48.657073,2.750622,0,0,OIF:SA:13:105,Europe/Paris,,OIF, +OIF:SP:13:106,1,"Les Étards",48.657317,2.750271,0,0,OIF:SA:13:105,Europe/Paris,,OIF, +OIF:SP:13:108,1,"Rue Foreau",48.727352,2.536366,0,0,OIF:SA:13:108,Europe/Paris,,OIF, +OIF:SP:13:109,1,"Rue Foreau",48.727471,2.535158,0,0,OIF:SA:13:108,Europe/Paris,,OIF, +OIF:SP:13:11,1,"Armainvilliers",48.746355,2.604179,0,0,OIF:SA:13:11,Europe/Paris,,OIF, +OIF:SP:13:110,1,"Place des Fêtes",48.691806,2.607347,0,0,OIF:SA:13:110,Europe/Paris,,OIF, +OIF:SP:13:111,1,"Place des Fêtes",48.690962,2.606541,0,0,OIF:SA:13:110,Europe/Paris,,OIF, +OIF:SP:13:119,1,"Georges Clémenceau",48.697787,2.605531,0,0,OIF:SA:13:119,Europe/Paris,,OIF, +OIF:SP:13:12,1,"Avenue de Choisy",48.775165,2.480741,0,0,OIF:SA:13:12,Europe/Paris,,OIF, +OIF:SP:13:120,1,"Georges Clémenceau",48.698148,2.605126,0,0,OIF:SA:13:119,Europe/Paris,,OIF, +OIF:SP:13:123,1,"Rdv Château",48.693389,2.610518,0,0,OIF:SA:13:123,Europe/Paris,,OIF, +OIF:SP:13:124,1,"Gros Chêne",48.733588,2.521077,0,0,OIF:SA:13:124,Europe/Paris,,OIF, +OIF:SP:13:125,1,"Gros Chêne",48.734569,2.520387,0,0,OIF:SA:13:124,Europe/Paris,,OIF, +OIF:SP:13:126,1,"Graviers",48.719142,2.572523,0,0,OIF:SA:13:126,Europe/Paris,,OIF, +OIF:SP:13:127,1,"Gros Bois",48.729393,2.54113,0,0,OIF:SA:13:127,Europe/Paris,,OIF, +OIF:SP:13:128,1,"Gros Bois",48.729903,2.542531,0,0,OIF:SA:13:127,Europe/Paris,,OIF, +OIF:SP:13:129,1,"Les Sablons",48.633285,2.804545,0,0,OIF:SA:13:129,Europe/Paris,,OIF, +OIF:SP:13:13,1,"Avenue de Choisy",48.774732,2.48151,0,0,OIF:SA:13:12,Europe/Paris,,OIF, +OIF:SP:13:130,1,"Gymnase",48.686117,2.601046,0,0,OIF:SA:13:130,Europe/Paris,,OIF, +OIF:SP:13:131,1,"Gymnase",48.687609,2.603021,0,0,OIF:SA:13:130,Europe/Paris,,OIF, +OIF:SP:13:134,1,"Les Hameaux",48.839879,2.621994,0,0,OIF:SA:13:134,Europe/Paris,,OIF, +OIF:SP:13:1347,1,"Deux Biches",48.780317,2.475429,0,0,OIF:SA:13:1347,Europe/Paris,,OIF, +OIF:SP:13:1348,1,"Deux Biches",48.779651,2.476393,0,0,OIF:SA:13:1347,Europe/Paris,,OIF, +OIF:SP:13:1349,1,"Colonel Fabien",48.771524,2.484445,0,0,OIF:SA:13:1349,Europe/Paris,,OIF, +OIF:SP:13:1350,1,"Colonel Fabien",48.771736,2.484484,0,0,OIF:SA:13:1349,Europe/Paris,,OIF, +OIF:SP:13:1351,1,"Regard",48.776348,2.479536,0,0,OIF:SA:13:1351,Europe/Paris,,OIF, +OIF:SP:13:1352,1,"Regard",48.77739,2.478728,0,0,OIF:SA:13:1351,Europe/Paris,,OIF, +OIF:SP:13:1353,1,"Z.I Charles de Gaulle",48.700439,2.620713,0,0,OIF:SA:13:1353,Europe/Paris,,OIF, +OIF:SP:13:14,1,"Avenue du Parc",48.738055,2.553312,0,0,OIF:SA:13:14,Europe/Paris,,OIF, +OIF:SP:13:145,1,"Mairie",48.725582,2.570555,0,0,OIF:SA:13:145,Europe/Paris,,OIF, +OIF:SP:13:146,1,"Mairie",48.715902,2.587953,0,0,OIF:SA:13:146,Europe/Paris,,OIF, +OIF:SP:13:147,1,"Mairie",48.716055,2.587886,0,0,OIF:SA:13:146,Europe/Paris,,OIF, +OIF:SP:13:148,1,"Mairie",48.658247,2.716696,0,0,OIF:SA:13:148,Europe/Paris,,OIF, +OIF:SP:13:149,1,"Mairie",48.658193,2.716804,0,0,OIF:SA:13:148,Europe/Paris,,OIF, +OIF:SP:13:15,1,"Avenue du Parc",48.738342,2.553626,0,0,OIF:SA:13:14,Europe/Paris,,OIF, +OIF:SP:13:150,1,"Mairie",48.722152,2.533996,0,0,OIF:SA:13:150,Europe/Paris,,OIF, +OIF:SP:13:151,1,"Mairie",48.721944,2.534661,0,0,OIF:SA:13:150,Europe/Paris,,OIF, +OIF:SP:13:152,1,"Hyvernaux",48.732074,2.603412,0,0,OIF:SA:13:152,Europe/Paris,,OIF, +OIF:SP:13:153,1,"Hyvernaux",48.732147,2.603141,0,0,OIF:SA:13:152,Europe/Paris,,OIF, +OIF:SP:13:154,1,"Jules Ferry",48.68857,2.611104,0,0,OIF:SA:13:154,Europe/Paris,,OIF, +OIF:SP:13:155,1,"Juliette Savar",48.780109,2.466016,0,0,OIF:SA:13:155,Europe/Paris,,OIF, +OIF:SP:13:156,1,"Juliette Savar",48.780092,2.466919,0,0,OIF:SA:13:155,Europe/Paris,,OIF, +OIF:SP:13:161,1,"Maréchal Joffre",48.677883,2.663903,0,0,OIF:SA:13:161,Europe/Paris,,OIF, +OIF:SP:13:162,1,"Maréchal Joffre",48.678117,2.663986,0,0,OIF:SA:13:161,Europe/Paris,,OIF, +OIF:SP:13:163,1,"La Burelle",48.656348,2.703182,0,0,OIF:SA:13:163,Europe/Paris,,OIF, +OIF:SP:13:164,1,"La Burelle",48.656429,2.703291,0,0,OIF:SA:13:163,Europe/Paris,,OIF, +OIF:SP:13:165,1,"La Côte",48.661341,2.69897,0,0,OIF:SA:13:165,Europe/Paris,,OIF, +OIF:SP:13:166,1,"La Côte",48.661557,2.698972,0,0,OIF:SA:13:165,Europe/Paris,,OIF, +OIF:SP:13:169,1,"Le Pont",48.655746,2.700315,0,0,OIF:SA:13:169,Europe/Paris,,OIF, +OIF:SP:13:170,1,"Le Pont",48.655619,2.700477,0,0,OIF:SA:13:169,Europe/Paris,,OIF, +OIF:SP:13:171,1,"LEP Jacques Prévert",48.655329,2.564419,0,0,OIF:SA:13:171,Europe/Paris,,OIF, +OIF:SP:13:172,1,"CES les Hyvernaux",48.747686,2.623364,0,0,OIF:SA:13:172,Europe/Paris,,OIF, +OIF:SP:13:175,1,"Libération",48.719495,2.566955,0,0,OIF:SA:13:175,Europe/Paris,,OIF, +OIF:SP:13:176,1,"Libération",48.720423,2.565737,0,0,OIF:SA:13:175,Europe/Paris,,OIF, +OIF:SP:13:179,1,"Lycée Agricole RD 319",48.681495,2.644596,0,0,OIF:SA:13:179,Europe/Paris,,OIF, +OIF:SP:13:180,1,"Lycée Agricole RD 319",48.682029,2.643187,0,0,OIF:SA:13:179,Europe/Paris,,OIF, +OIF:SP:13:182,1,"Parking Lycée Blaise Pascal",48.698277,2.595349,0,0,OIF:SA:13:182,Europe/Paris,,OIF, +OIF:SP:13:184,1,"Maison Pour Tous",48.689712,2.611042,0,0,OIF:SA:13:184,Europe/Paris,,OIF, +OIF:SP:13:185,1,"Le Marais",48.721335,2.572805,0,0,OIF:SA:13:185,Europe/Paris,,OIF, +OIF:SP:13:186,1,"Le Marais",48.721974,2.567971,0,0,OIF:SA:13:185,Europe/Paris,,OIF, +OIF:SP:13:188,1,"Moulin Massin",48.686648,2.621982,0,0,OIF:SA:13:188,Europe/Paris,,OIF, +OIF:SP:13:189,1,"Métro Préfecture",48.779449,2.459037,0,0,OIF:SA:59204,Europe/Paris,,OIF, +OIF:SP:13:190,1,"Métro Préfecture",48.779996,2.460562,0,0,OIF:SA:59204,Europe/Paris,,OIF, +OIF:SP:13:191,1,"Millet",48.687756,2.624635,0,0,OIF:SA:13:191,Europe/Paris,,OIF, +OIF:SP:13:194,1,"Moulin Fleuri",48.693822,2.602007,0,0,OIF:SA:13:194,Europe/Paris,,OIF, +OIF:SP:13:197,1,"Les Myosotis",48.690628,2.615093,0,0,OIF:SA:13:197,Europe/Paris,,OIF, +OIF:SP:13:198,1,"Les Myosotis",48.690582,2.615459,0,0,OIF:SA:13:197,Europe/Paris,,OIF, +OIF:SP:13:2,1,"Aristide Briand",48.702502,2.545125,0,0,OIF:SA:13:1,Europe/Paris,,OIF, +OIF:SP:13:20,1,"Gambetta",48.692379,2.612265,0,0,OIF:SA:13:20,Europe/Paris,,OIF, +OIF:SP:13:200,1,"Maison de la Nature",48.696963,2.57044,0,0,OIF:SA:13:200,Europe/Paris,,OIF, +OIF:SP:13:201,1,"Maison de la Nature",48.696961,2.571105,0,0,OIF:SA:13:200,Europe/Paris,,OIF, +OIF:SP:13:204,1,"Nogent sur Avon",48.643909,2.781444,0,0,OIF:SA:13:204,Europe/Paris,,OIF, +OIF:SP:13:205,1,"Nogent sur Avon",48.645077,2.779352,0,0,OIF:SA:13:204,Europe/Paris,,OIF, +OIF:SP:13:206,1,"Gare de Noisiel",48.843633,2.615492,0,0,OIF:SA:8775835,Europe/Paris,,OIF, +OIF:SP:13:207,1,"Rue des Orfèvres",48.735455,2.549361,0,0,OIF:SA:13:207,Europe/Paris,,OIF, +OIF:SP:13:208,1,"Rue des Orfèvres",48.735097,2.548476,0,0,OIF:SA:13:207,Europe/Paris,,OIF, +OIF:SP:13:209,1,"Ozouer",48.658481,2.771678,0,0,OIF:SA:13:209,Europe/Paris,,OIF, +OIF:SP:13:210,1,"Ozouer",48.658434,2.772179,0,0,OIF:SA:13:209,Europe/Paris,,OIF, +OIF:SP:13:212,1,"Paul Casalis",48.780919,2.473556,0,0,OIF:SA:13:212,Europe/Paris,,OIF, +OIF:SP:13:213,1,"Paul Casalis",48.781096,2.473768,0,0,OIF:SA:13:212,Europe/Paris,,OIF, +OIF:SP:13:214,1,"Pierre Guérin",48.712874,2.583008,0,0,OIF:SA:13:214,Europe/Paris,,OIF, +OIF:SP:13:215,1,"Pierre Guérin",48.712973,2.582777,0,0,OIF:SA:13:214,Europe/Paris,,OIF, +OIF:SP:13:218,1,"Centre Commercial",48.737688,2.605112,0,0,OIF:SA:13:218,Europe/Paris,,OIF, +OIF:SP:13:219,1,"Centre Commercial",48.737671,2.604922,0,0,OIF:SA:13:218,Europe/Paris,,OIF, +OIF:SP:13:22,1,"Gambetta",48.692379,2.612251,0,0,OIF:SA:13:20,Europe/Paris,,OIF, +OIF:SP:13:220,1,"Parc des Sports",48.688606,2.607384,0,0,OIF:SA:13:220,Europe/Paris,,OIF, +OIF:SP:13:222,1,"Pasteur",48.692842,2.61763,0,0,OIF:SA:13:222,Europe/Paris,,OIF, +OIF:SP:13:223,1,"Pavé de Paris",48.744423,2.611834,0,0,OIF:SA:13:223,Europe/Paris,,OIF, +OIF:SP:13:226,1,"Stade Lucien Destal",48.686032,2.612394,0,0,OIF:SA:13:226,Europe/Paris,,OIF, +OIF:SP:13:23,1,"Belle Image",48.730806,2.545266,0,0,OIF:SA:13:23,Europe/Paris,,OIF, +OIF:SP:13:230,1,"Rue de Pontault",48.748394,2.616735,0,0,OIF:SA:13:230,Europe/Paris,,OIF, +OIF:SP:13:231,1,"Rue de Pontault",48.748466,2.616572,0,0,OIF:SA:13:230,Europe/Paris,,OIF, +OIF:SP:13:232,1,"Les Portes de Brie",48.685803,2.625466,0,0,OIF:SA:13:232,Europe/Paris,,OIF, +OIF:SP:13:233,1,"Les Portes de Brie",48.68603,2.624816,0,0,OIF:SA:13:232,Europe/Paris,,OIF, +OIF:SP:13:236,1,"Pré Fézard",48.731132,2.568542,0,0,OIF:SA:13:236,Europe/Paris,,OIF, +OIF:SP:13:237,1,"Pré Fézard",48.731177,2.568121,0,0,OIF:SA:13:236,Europe/Paris,,OIF, +OIF:SP:13:24,1,"Belle Image",48.73148,2.545676,0,0,OIF:SA:13:23,Europe/Paris,,OIF, +OIF:SP:13:241,1,"Petit Grisy",48.679094,2.658237,0,0,OIF:SA:13:241,Europe/Paris,,OIF, +OIF:SP:13:242,1,"Petit Grisy",48.679023,2.658033,0,0,OIF:SA:13:241,Europe/Paris,,OIF, +OIF:SP:13:244,1,"Poste",48.692576,2.608287,0,0,OIF:SA:13:244,Europe/Paris,,OIF, +OIF:SP:13:245,1,"Poste",48.715951,2.585712,0,0,OIF:SA:13:245,Europe/Paris,,OIF, +OIF:SP:13:246,1,"Poste",48.716042,2.585563,0,0,OIF:SA:13:245,Europe/Paris,,OIF, +OIF:SP:13:247,1,"Radio",48.712994,2.538186,0,0,OIF:SA:13:247,Europe/Paris,,OIF, +OIF:SP:13:251,1,"Réveillon Écoles",48.733418,2.597522,0,0,OIF:SA:13:251,Europe/Paris,,OIF, +OIF:SP:13:252,1,"Réveillon Écoles",48.733453,2.597699,0,0,OIF:SA:13:251,Europe/Paris,,OIF, +OIF:SP:13:254,1,"Réveillon Plr",48.73531,2.595126,0,0,OIF:SA:13:254,Europe/Paris,,OIF, +OIF:SP:13:255,1,"Romaine Vimont",48.756125,2.634435,0,0,OIF:SA:13:255,Europe/Paris,,OIF, +OIF:SP:13:258,1,"Rond-Point des Bois",48.742884,2.556662,0,0,OIF:SA:13:258,Europe/Paris,,OIF, +OIF:SP:13:259,1,"Rond-Point des Bois",48.742732,2.55624,0,0,OIF:SA:13:258,Europe/Paris,,OIF, +OIF:SP:13:260,1,"Rond-Point du Château",48.744787,2.613671,0,0,OIF:SA:13:260,Europe/Paris,,OIF, +OIF:SP:13:261,1,"Rond-Point du Château",48.744824,2.61344,0,0,OIF:SA:13:260,Europe/Paris,,OIF, +OIF:SP:13:264,1,"RN Santeny",48.716293,2.572687,0,0,OIF:SA:13:264,Europe/Paris,,OIF, +OIF:SP:13:265,1,"RN Santeny",48.716725,2.572227,0,0,OIF:SA:13:264,Europe/Paris,,OIF, +OIF:SP:13:266,1,"Servon RN",48.711828,2.58049,0,0,OIF:SA:13:266,Europe/Paris,,OIF, +OIF:SP:13:267,1,"Servon RN",48.71217,2.580261,0,0,OIF:SA:13:266,Europe/Paris,,OIF, +OIF:SP:13:269,1,"Place des Minimes",48.689201,2.608253,0,0,OIF:SA:13:269,Europe/Paris,,OIF, +OIF:SP:13:27,1,"Bois d'Auteuil",48.716774,2.546147,0,0,OIF:SA:13:27,Europe/Paris,,OIF, +OIF:SP:13:271,1,"Saussaye",48.736073,2.565018,0,0,OIF:SA:13:271,Europe/Paris,,OIF, +OIF:SP:13:272,1,"Saussaye",48.736559,2.564938,0,0,OIF:SA:13:271,Europe/Paris,,OIF, +OIF:SP:13:273,1,"Stade",48.741601,2.603801,0,0,OIF:SA:13:273,Europe/Paris,,OIF, +OIF:SP:13:274,1,"Stade",48.741709,2.60357,0,0,OIF:SA:13:273,Europe/Paris,,OIF, +OIF:SP:13:275,1,"Saint-Jacques",48.664292,2.568488,0,0,OIF:SA:13:275,Europe/Paris,,OIF, +OIF:SP:13:278,1,"Tournelles de Pamphou",48.690032,2.62401,0,0,OIF:SA:13:278,Europe/Paris,,OIF, +OIF:SP:13:279,1,"Tournelles de Pamphou",48.689719,2.623261,0,0,OIF:SA:13:278,Europe/Paris,,OIF, +OIF:SP:13:28,1,"Bois d'Auteuil",48.717251,2.545714,0,0,OIF:SA:13:27,Europe/Paris,,OIF, +OIF:SP:13:282,1,"Tournebride",48.730958,2.524274,0,0,OIF:SA:13:282,Europe/Paris,,OIF, +OIF:SP:13:283,1,"Tournebride",48.731084,2.524356,0,0,OIF:SA:13:282,Europe/Paris,,OIF, +OIF:SP:13:284,1,"Tournelles RD 319",48.687961,2.617997,0,0,OIF:SA:13:284,Europe/Paris,,OIF, +OIF:SP:13:285,1,"Tournelles RD 319",48.688375,2.617592,0,0,OIF:SA:13:284,Europe/Paris,,OIF, +OIF:SP:13:287,1,"Trianon",48.727911,2.529793,0,0,OIF:SA:13:287,Europe/Paris,,OIF, +OIF:SP:13:288,1,"Trianon",48.727676,2.530892,0,0,OIF:SA:13:287,Europe/Paris,,OIF, +OIF:SP:13:291,1,"Victor Hugo",48.680033,2.609611,0,0,OIF:SA:13:291,Europe/Paris,,OIF, +OIF:SP:13:292,1,"Victor Hugo",48.680016,2.609511,0,0,OIF:SA:13:291,Europe/Paris,,OIF, +OIF:SP:13:297,1,"Village",48.684285,2.666482,0,0,OIF:SA:13:297,Europe/Paris,,OIF, +OIF:SP:13:298,1,"Village",48.684231,2.666522,0,0,OIF:SA:13:297,Europe/Paris,,OIF, +OIF:SP:13:299,1,"Village",48.723806,2.573264,0,0,OIF:SA:13:299,Europe/Paris,,OIF, +OIF:SP:13:300,1,"Villemeneux",48.677646,2.594514,0,0,OIF:SA:13:300,Europe/Paris,,OIF, +OIF:SP:13:301,1,"Villemeneux",48.677192,2.594342,0,0,OIF:SA:13:300,Europe/Paris,,OIF, +OIF:SP:13:304,1,"Yverny",48.696354,2.603107,0,0,OIF:SA:13:304,Europe/Paris,,OIF, +OIF:SP:13:31,1,"Lycée B Pascal RD 319",48.701839,2.59826,0,0,OIF:SA:13:31,Europe/Paris,,OIF, +OIF:SP:13:310,1,"ZI Galilée",48.701495,2.603486,0,0,OIF:SA:13:310,Europe/Paris,,OIF, +OIF:SP:13:313,1,"CES Georges Brassens",48.692038,2.60375,0,0,OIF:SA:13:313,Europe/Paris,,OIF, +OIF:SP:13:319,1,"Rue de Verdun",48.696903,2.614896,0,0,OIF:SA:13:319,Europe/Paris,,OIF, +OIF:SP:13:32,1,"Lycée B Pascal RD 319",48.702064,2.598274,0,0,OIF:SA:13:31,Europe/Paris,,OIF, +OIF:SP:13:326,1,"Haie Griselle",48.757857,2.502239,0,0,OIF:SA:13:326,Europe/Paris,,OIF, +OIF:SP:13:327,1,"Z.I Pierre Marchande",48.704198,2.608742,0,0,OIF:SA:13:327,Europe/Paris,,OIF, +OIF:SP:13:329,1,"Z.I Pierre Marchande",48.704107,2.60904,0,0,OIF:SA:13:327,Europe/Paris,,OIF, +OIF:SP:13:33,1,"Rue de Verdun",48.696455,2.613997,0,0,OIF:SA:13:319,Europe/Paris,,OIF, +OIF:SP:13:330,1,"Z.I Tubœuf Centre",48.704014,2.61803,0,0,OIF:SA:13:330,Europe/Paris,,OIF, +OIF:SP:13:331,1,"Z.I Tubœuf Centre",48.703941,2.618505,0,0,OIF:SA:13:330,Europe/Paris,,OIF, +OIF:SP:13:333,1,"Z.I Borde",48.702762,2.623061,0,0,OIF:SA:13:333,Europe/Paris,,OIF, +OIF:SP:13:334,1,"Z.I Borde",48.702905,2.623293,0,0,OIF:SA:13:333,Europe/Paris,,OIF, +OIF:SP:13:335,1,"Lycée G. Budé",48.744398,2.511139,0,0,OIF:SA:13:335,Europe/Paris,,OIF, +OIF:SP:13:338,1,"Lycée de Sucy",48.759033,2.526945,0,0,OIF:SA:13:338,Europe/Paris,,OIF, +OIF:SP:13:35,1,"ZI Villemenon",48.700731,2.607393,0,0,OIF:SA:13:35,Europe/Paris,,OIF, +OIF:SP:13:36,1,"ZI Villemenon",48.700857,2.607489,0,0,OIF:SA:13:35,Europe/Paris,,OIF, +OIF:SP:13:37,1,"La Butte aux Bergers",48.74096,2.561723,0,0,OIF:SA:13:37,Europe/Paris,,OIF, +OIF:SP:13:38,1,"La Butte aux Bergers",48.740224,2.561502,0,0,OIF:SA:13:37,Europe/Paris,,OIF, +OIF:SP:13:386,1,"Bougainville (Lycée Agricole)",48.679666,2.646241,0,0,OIF:SA:13:386,Europe/Paris,,OIF, +OIF:SP:13:387,1,"Grottes",48.713504,2.534276,0,0,OIF:SA:13:387,Europe/Paris,,OIF, +OIF:SP:13:388,1,"Pigeonnier",48.709342,2.528922,0,0,OIF:SA:13:388,Europe/Paris,,OIF, +OIF:SP:13:39,1,"Claude Bernard",48.689554,2.620708,0,0,OIF:SA:13:39,Europe/Paris,,OIF, +OIF:SP:13:392,1,"Mardelles",48.712285,2.526597,0,0,OIF:SA:13:392,Europe/Paris,,OIF, +OIF:SP:13:394,1,"Branly",48.705762,2.530851,0,0,OIF:SA:13:394,Europe/Paris,,OIF, +OIF:SP:13:395,1,"Cimetière",48.697727,2.545907,0,0,OIF:SA:13:395,Europe/Paris,,OIF, +OIF:SP:13:396,1,"Rue de l'Yerres",48.702418,2.536379,0,0,OIF:SA:13:396,Europe/Paris,,OIF, +OIF:SP:13:397,1,"Roses",48.699774,2.542235,0,0,OIF:SA:13:397,Europe/Paris,,OIF, +OIF:SP:13:40,1,"Claude Bernard",48.689321,2.620462,0,0,OIF:SA:13:39,Europe/Paris,,OIF, +OIF:SP:13:408,1,"Closeaux",48.709889,2.524565,0,0,OIF:SA:13:408,Europe/Paris,,OIF, +OIF:SP:13:410,1,"Chasse",48.713796,2.537374,0,0,OIF:SA:13:410,Europe/Paris,,OIF, +OIF:SP:13:413,1,"Orangerie",48.711838,2.53086,0,0,OIF:SA:13:413,Europe/Paris,,OIF, +OIF:SP:13:414,1,"Pablo Picasso",48.656718,2.562227,0,0,OIF:SA:13:414,Europe/Paris,,OIF, +OIF:SP:13:415,1,"Pablo Picasso",48.656655,2.562322,0,0,OIF:SA:13:414,Europe/Paris,,OIF, +OIF:SP:13:416,1,"CES Simone Veil",48.704478,2.545785,0,0,OIF:SA:13:416,Europe/Paris,,OIF, +OIF:SP:13:417,1,"CES Simone Veil",48.705603,2.545246,0,0,OIF:SA:13:416,Europe/Paris,,OIF, +OIF:SP:13:418,1,"Petit Bicêtre",48.691487,2.613115,0,0,OIF:SA:13:418,Europe/Paris,,OIF, +OIF:SP:13:419,1,"Rdv Château",48.693586,2.610927,0,0,OIF:SA:13:123,Europe/Paris,,OIF, +OIF:SP:13:42443,1,"Mélanie Bonis",48.714903,2.541888,0,0,OIF:SA:13:247,Europe/Paris,,OIF, +OIF:SP:13:43,1,"Centre Commercial",48.72884,2.577295,0,0,OIF:SA:13:43,Europe/Paris,,OIF, +OIF:SP:13:433,1,"Lycée René Cassin",48.841178,2.616092,0,0,OIF:SA:13:433,Europe/Paris,,OIF, +OIF:SP:13:436,1,"RN Santeny",48.716644,2.572267,0,0,OIF:SA:13:264,Europe/Paris,,OIF, +OIF:SP:13:438,1,"Clos Santenois",48.735328,2.559987,0,0,OIF:SA:13:438,Europe/Paris,,OIF, +OIF:SP:13:440,1,"Clos Santenois",48.735453,2.560327,0,0,OIF:SA:13:438,Europe/Paris,,OIF, +OIF:SP:13:45,1,"Cèdres Bleus",48.690759,2.624312,0,0,OIF:SA:13:45,Europe/Paris,,OIF, +OIF:SP:13:450,1,"Pavé de Paris",48.744343,2.611643,0,0,OIF:SA:13:223,Europe/Paris,,OIF, +OIF:SP:13:451,1,"Armainvilliers",48.746463,2.604084,0,0,OIF:SA:13:11,Europe/Paris,,OIF, +OIF:SP:13:452,1,"Romaine Vimont",48.756171,2.634041,0,0,OIF:SA:13:255,Europe/Paris,,OIF, +OIF:SP:13:456,1,"Gustave Eiffel",48.702867,2.600777,0,0,OIF:SA:13:456,Europe/Paris,,OIF, +OIF:SP:13:457,1,"Parking Hyper U",48.703977,2.598814,0,0,OIF:SA:13:457,Europe/Paris,,OIF, +OIF:SP:13:458,1,"Yverny",48.695563,2.603388,0,0,OIF:SA:13:304,Europe/Paris,,OIF, +OIF:SP:13:459,1,"Beau-Mendès France",48.69226,2.601226,0,0,OIF:SA:13:459,Europe/Paris,,OIF, +OIF:SP:13:46,1,"Lady Sylvia",48.699565,2.549065,0,0,OIF:SA:13:46,Europe/Paris,,OIF, +OIF:SP:13:460,1,"Beau-Mendès France",48.692215,2.601293,0,0,OIF:SA:13:459,Europe/Paris,,OIF, +OIF:SP:13:461,1,"Folle Avoine",48.691339,2.599021,0,0,OIF:SA:13:461,Europe/Paris,,OIF, +OIF:SP:13:462,1,"Folle Avoine",48.69133,2.599184,0,0,OIF:SA:13:461,Europe/Paris,,OIF, +OIF:SP:13:463,1,"Chemin de Varennes",48.690391,2.598827,0,0,OIF:SA:13:463,Europe/Paris,,OIF, +OIF:SP:13:464,1,"Chemin de Varennes",48.690411,2.598896,0,0,OIF:SA:13:463,Europe/Paris,,OIF, +OIF:SP:13:465,1,"Château d'Eau",48.69052,2.599492,0,0,OIF:SA:13:465,Europe/Paris,,OIF, +OIF:SP:13:468,1,"Mairie",48.695005,2.611518,0,0,OIF:SA:13:468,Europe/Paris,,OIF, +OIF:SP:13:469,1,"Verdunpasteur",48.695872,2.613668,0,0,OIF:SA:13:469,Europe/Paris,,OIF, +OIF:SP:13:47,1,"Lady Sylvia",48.699484,2.548847,0,0,OIF:SA:13:46,Europe/Paris,,OIF, +OIF:SP:13:470,1,"C. Cial Pasteur",48.693635,2.617118,0,0,OIF:SA:13:470,Europe/Paris,,OIF, +OIF:SP:13:471,1,"Résidence du Parc",48.691021,2.616263,0,0,OIF:SA:13:471,Europe/Paris,,OIF, +OIF:SP:13:472,1,"Place des Minimes",48.689458,2.608966,0,0,OIF:SA:13:269,Europe/Paris,,OIF, +OIF:SP:13:475,1,"C. Cial des Quatre Vents",48.696543,2.607263,0,0,OIF:SA:13:475,Europe/Paris,,OIF, +OIF:SP:13:476,1,"C. Cial des Quatre Vents",48.696695,2.607399,0,0,OIF:SA:13:475,Europe/Paris,,OIF, +OIF:SP:13:477,1,"Poste",48.693187,2.608779,0,0,OIF:SA:13:244,Europe/Paris,,OIF, +OIF:SP:13:480,1,"Grand Noyer",48.685226,2.603457,0,0,OIF:SA:13:480,Europe/Paris,,OIF, +OIF:SP:13:481,1,"Berlioz",48.684283,2.606941,0,0,OIF:SA:13:481,Europe/Paris,,OIF, +OIF:SP:13:483,1,"Victor Hugo (Safran Vers Centre)",48.680007,2.609688,0,0,OIF:SA:13:291,Europe/Paris,,OIF, +OIF:SP:13:484,1,"Chopin",48.684675,2.608558,0,0,OIF:SA:13:484,Europe/Paris,,OIF, +OIF:SP:13:485,1,"Chaperons 3",48.684163,2.615859,0,0,OIF:SA:13:485,Europe/Paris,,OIF, +OIF:SP:13:486,1,"Les Grands Moulins",48.686511,2.619048,0,0,OIF:SA:13:486,Europe/Paris,,OIF, +OIF:SP:13:489,1,"Val Clos",48.689133,2.616456,0,0,OIF:SA:13:489,Europe/Paris,,OIF, +OIF:SP:13:49,1,"CES A. Chaussy",48.689282,2.602527,0,0,OIF:SA:13:49,Europe/Paris,,OIF, +OIF:SP:13:492,1,"La Fontaine",48.69008,2.611017,0,0,OIF:SA:13:492,Europe/Paris,,OIF, +OIF:SP:13:493,1,"Trancart",48.688068,2.614346,0,0,OIF:SA:13:493,Europe/Paris,,OIF, +OIF:SP:13:496,1,"Beau - Mendès France",48.692115,2.60151,0,0,OIF:SA:13:459,Europe/Paris,,OIF, +OIF:SP:13:497,1,"Beau - Mendès France",48.692043,2.601849,0,0,OIF:SA:13:459,Europe/Paris,,OIF, +OIF:SP:13:498,1,"Boissy RER",48.753457,2.505855,0,0,OIF:SA:8775820,Europe/Paris,,OIF, +OIF:SP:13:499,1,"Boissy RER",48.753475,2.505515,0,0,OIF:SA:8775820,Europe/Paris,,OIF, +OIF:SP:13:5,1,"Ambroise Paré",48.6906,2.62704,0,0,OIF:SA:13:5,Europe/Paris,,OIF, +OIF:SP:13:500,1,"Boissy RER",48.753656,2.505809,0,0,OIF:SA:8775820,Europe/Paris,,OIF, +OIF:SP:13:501,1,"Boissy RER",48.753579,2.505924,0,0,OIF:SA:8775820,Europe/Paris,,OIF, +OIF:SP:13:502,1,"Boissy RER",48.753771,2.506007,0,0,OIF:SA:8775820,Europe/Paris,,OIF, +OIF:SP:13:507,1,"Chemin du Pâtis",48.717273,2.589983,0,0,OIF:SA:13:507,Europe/Paris,,OIF, +OIF:SP:13:508,1,"Chemin du Pâtis",48.717264,2.589684,0,0,OIF:SA:13:507,Europe/Paris,,OIF, +OIF:SP:13:51,1,"CES G. Brassens",48.738302,2.56519,0,0,OIF:SA:13:51,Europe/Paris,,OIF, +OIF:SP:13:516,1,"Z.I Charles de Gaulle",48.70079,2.620674,0,0,OIF:SA:13:1353,Europe/Paris,,OIF, +OIF:SP:13:517,1,"Avenue du Parc",48.690144,2.614588,0,0,OIF:SA:13:517,Europe/Paris,,OIF, +OIF:SP:13:519,1,"CES Simone Veil (Scolaire)",48.705999,2.544908,0,0,OIF:SA:13:416,Europe/Paris,,OIF, +OIF:SP:13:52,1,"CES G. Brassens",48.738313,2.56413,0,0,OIF:SA:13:51,Europe/Paris,,OIF, +OIF:SP:13:520,1,"Parking CES A. Chaussy",48.688619,2.601289,0,0,OIF:SA:13:49,Europe/Paris,,OIF, +OIF:SP:13:521,1,"Place de Verdun",48.69729,2.61464,0,0,OIF:SA:13:521,Europe/Paris,,OIF, +OIF:SP:13:522,1,"Les Sablons",48.633366,2.804572,0,0,OIF:SA:13:129,Europe/Paris,,OIF, +OIF:SP:13:523,1,"Place des Fêtes",48.691068,2.607424,0,0,OIF:SA:13:110,Europe/Paris,,OIF, +OIF:SP:13:525,1,"Galilée (Novoviande, Lidl)",48.701459,2.603445,0,0,OIF:SA:13:310,Europe/Paris,,OIF, +OIF:SP:13:528,1,"Galilée RD 319",48.700169,2.601768,0,0,OIF:SA:13:310,Europe/Paris,,OIF, +OIF:SP:13:529,1,"Clémenceau",48.697706,2.605639,0,0,OIF:SA:13:119,Europe/Paris,,OIF, +OIF:SP:13:53,1,"CES la Guinette",48.721567,2.539645,0,0,OIF:SA:13:53,Europe/Paris,,OIF, +OIF:SP:13:532,1,"Clémenceau",48.698139,2.605112,0,0,OIF:SA:13:119,Europe/Paris,,OIF, +OIF:SP:13:533,1,"Gymnase",48.687063,2.601769,0,0,OIF:SA:13:130,Europe/Paris,,OIF, +OIF:SP:13:535,1,"Stade Lucien Destal",48.686023,2.61238,0,0,OIF:SA:13:226,Europe/Paris,,OIF, +OIF:SP:13:54,1,"CES la Guinette",48.721676,2.539143,0,0,OIF:SA:13:53,Europe/Paris,,OIF, +OIF:SP:13:543,1,"CES A. Chaussy",48.689291,2.602541,0,0,OIF:SA:13:49,Europe/Paris,,OIF, +OIF:SP:13:544,1,"École Pasteur",48.692833,2.617657,0,0,OIF:SA:13:222,Europe/Paris,,OIF, +OIF:SP:13:545,1,"Chênes",48.691142,2.618449,0,0,OIF:SA:13:545,Europe/Paris,,OIF, +OIF:SP:13:546,1,"Claude Bernard",48.688809,2.620473,0,0,OIF:SA:13:39,Europe/Paris,,OIF, +OIF:SP:13:547,1,"A. Paré",48.690402,2.627134,0,0,OIF:SA:13:5,Europe/Paris,,OIF, +OIF:SP:13:548,1,"Tournelles de Pamphou",48.690023,2.624023,0,0,OIF:SA:13:278,Europe/Paris,,OIF, +OIF:SP:13:549,1,"Chênes",48.691618,2.618357,0,0,OIF:SA:13:545,Europe/Paris,,OIF, +OIF:SP:13:550,1,"Myosotis",48.690628,2.615174,0,0,OIF:SA:13:197,Europe/Paris,,OIF, +OIF:SP:13:554,1,"Forcilles",48.723011,2.616448,0,0,OIF:SA:13:554,Europe/Paris,,OIF, +OIF:SP:13:555,1,"Petit Bicêtre",48.69146,2.613061,0,0,OIF:SA:13:418,Europe/Paris,,OIF, +OIF:SP:13:558,1,"Rendez-Vous-Château",48.693398,2.610559,0,0,OIF:SA:13:123,Europe/Paris,,OIF, +OIF:SP:13:559,1,"Tournelles RD 319",48.687997,2.617943,0,0,OIF:SA:13:284,Europe/Paris,,OIF, +OIF:SP:13:56,1,"Champagne",48.693734,2.55712,0,0,OIF:SA:13:56,Europe/Paris,,OIF, +OIF:SP:13:560,1,"Clos Didier",48.685544,2.609717,0,0,OIF:SA:13:560,Europe/Paris,,OIF, +OIF:SP:13:57,1,"Champs au Maigre",48.657224,2.710678,0,0,OIF:SA:13:57,Europe/Paris,,OIF, +OIF:SP:13:58,1,"Champs au Maigre",48.657296,2.710638,0,0,OIF:SA:13:57,Europe/Paris,,OIF, +OIF:SP:13:59,1,"Chaperons 2",48.685514,2.615106,0,0,OIF:SA:13:59,Europe/Paris,,OIF, +OIF:SP:13:60,1,"Hôtel de Ville",48.664642,2.564188,0,0,OIF:SA:13:60,Europe/Paris,,OIF, +OIF:SP:13:61,1,"Hôtel de Ville",48.664498,2.56416,0,0,OIF:SA:13:60,Europe/Paris,,OIF, +OIF:SP:13:616,1,"Moulin Fleuri",48.69375,2.601871,0,0,OIF:SA:13:194,Europe/Paris,,OIF, +OIF:SP:13:62,1,"Place Charlotte",48.741884,2.605854,0,0,OIF:SA:13:62,Europe/Paris,,OIF, +OIF:SP:13:63,1,"Place Charlotte",48.741845,2.607336,0,0,OIF:SA:13:62,Europe/Paris,,OIF, +OIF:SP:13:64,1,"Châtaigniers",48.691909,2.62087,0,0,OIF:SA:13:64,Europe/Paris,,OIF, +OIF:SP:13:655,1,"Cimetière",48.724751,2.527526,0,0,OIF:SA:13:655,Europe/Paris,,OIF, +OIF:SP:13:656,1,"Cimetière",48.724589,2.527729,0,0,OIF:SA:13:655,Europe/Paris,,OIF, +OIF:SP:13:657,1,"Château d'Eau",48.689746,2.599991,0,0,OIF:SA:13:465,Europe/Paris,,OIF, +OIF:SP:13:658,1,"Gustave Eiffel",48.702813,2.600845,0,0,OIF:SA:13:456,Europe/Paris,,OIF, +OIF:SP:13:659,1,"Préfecture",48.783901,2.451944,0,0,OIF:SA:13:659,Europe/Paris,,OIF, +OIF:SP:13:660,1,"C.C Régional",48.779637,2.455198,0,0,OIF:SA:13:660,Europe/Paris,,OIF, +OIF:SP:13:661,1,"C.C Régional",48.778343,2.455141,0,0,OIF:SA:13:660,Europe/Paris,,OIF, +OIF:SP:13:662,1,"Pointe du Lac",48.768924,2.463808,0,0,OIF:SA:59686,Europe/Paris,,OIF, +OIF:SP:13:663,1,"Pointe du Lac",48.768753,2.463645,0,0,OIF:SA:59686,Europe/Paris,,OIF, +OIF:SP:13:664,1,"Europarc",48.766912,2.470874,0,0,OIF:SA:13:664,Europe/Paris,,OIF, +OIF:SP:13:665,1,"Europarc",48.767353,2.470467,0,0,OIF:SA:13:664,Europe/Paris,,OIF, +OIF:SP:13:666,1,"Stade de Bonneuil",48.765407,2.48176,0,0,OIF:SA:13:666,Europe/Paris,,OIF, +OIF:SP:13:667,1,"Stade de Bonneuil",48.765578,2.481298,0,0,OIF:SA:13:666,Europe/Paris,,OIF, +OIF:SP:13:668,1,"Messidor-Libertés",48.767863,2.487111,0,0,OIF:SA:13:668,Europe/Paris,,OIF, +OIF:SP:13:669,1,"Messidor-Libertés",48.76807,2.486867,0,0,OIF:SA:13:668,Europe/Paris,,OIF, +OIF:SP:13:67,1,"Avenue du Châtelet",48.745826,2.595396,0,0,OIF:SA:13:67,Europe/Paris,,OIF, +OIF:SP:13:670,1,"Les Hameaux",48.840186,2.621165,0,0,OIF:SA:13:134,Europe/Paris,,OIF, +OIF:SP:13:671,1,"J. B. Oudry",48.775526,2.458766,0,0,OIF:SA:13:671,Europe/Paris,,OIF, +OIF:SP:13:672,1,"Z. A. de l'Ormois",48.696435,2.559887,0,0,OIF:SA:13:672,Europe/Paris,,OIF, +OIF:SP:13:673,1,"Z. A. de l'Ormois",48.696568,2.560675,0,0,OIF:SA:13:672,Europe/Paris,,OIF, +OIF:SP:13:675,1,"J. B. Oudry",48.775391,2.458779,0,0,OIF:SA:13:671,Europe/Paris,,OIF, +OIF:SP:13:676,1,"CC Bonneuil",48.765161,2.491345,0,0,OIF:SA:13:676,Europe/Paris,,OIF, +OIF:SP:13:677,1,"CC Bonneuil",48.765143,2.491685,0,0,OIF:SA:13:676,Europe/Paris,,OIF, +OIF:SP:13:678,1,"Boissy RER",48.75387,2.50587,0,0,OIF:SA:8775820,Europe/Paris,,OIF, +OIF:SP:13:679,1,"Messidor-Libertés (RN19)",48.76965,2.486708,0,0,OIF:SA:13:668,Europe/Paris,,OIF, +OIF:SP:13:68,1,"Les Chênes",48.691807,2.618358,0,0,OIF:SA:13:545,Europe/Paris,,OIF, +OIF:SP:13:680,1,"Messidor-Libertés (RN19)",48.769467,2.486434,0,0,OIF:SA:13:668,Europe/Paris,,OIF, +OIF:SP:13:69,1,"Les Chênes",48.691214,2.618354,0,0,OIF:SA:13:545,Europe/Paris,,OIF, +OIF:SP:13:7,1,"La Plaine (Abri)",48.697447,2.552016,0,0,OIF:SA:13:7,Europe/Paris,,OIF, +OIF:SP:13:73,1,"Chemin Vert",48.711915,2.538752,0,0,OIF:SA:13:73,Europe/Paris,,OIF, +OIF:SP:13:75,1,"Clématites",48.69175,2.623299,0,0,OIF:SA:13:75,Europe/Paris,,OIF, +OIF:SP:13:76,1,"Clos Didier",48.685421,2.608318,0,0,OIF:SA:13:560,Europe/Paris,,OIF, +OIF:SP:13:77,1,"Clos Didier",48.685553,2.60973,0,0,OIF:SA:13:560,Europe/Paris,,OIF, +OIF:SP:13:8,1,"La Plaine (Abri)",48.697339,2.551839,0,0,OIF:SA:13:7,Europe/Paris,,OIF, +OIF:SP:13:80,1,"Clos Saint-Yon",48.753796,2.627883,0,0,OIF:SA:13:80,Europe/Paris,,OIF, +OIF:SP:13:81,1,"Clos Saint-Yon",48.753696,2.628046,0,0,OIF:SA:13:80,Europe/Paris,,OIF, +OIF:SP:13:82,1,"Gare RER",48.66735,2.54835,0,0,OIF:SA:8768214,Europe/Paris,,OIF, +OIF:SP:13:83,1,"Coubert RN 19",48.670106,2.695666,0,0,OIF:SA:13:83,Europe/Paris,,OIF, +OIF:SP:13:84,1,"Coubert R.N. 19",48.670141,2.696032,0,0,OIF:SA:13:83,Europe/Paris,,OIF, +OIF:SP:13:87,1,"Croix Rouge",48.706918,2.543608,0,0,OIF:SA:13:87,Europe/Paris,,OIF, +OIF:SP:13:88,1,"Croix Rouge",48.706693,2.543675,0,0,OIF:SA:13:87,Europe/Paris,,OIF, +OIF:SP:13:89,1,"Lt Dagorno",48.726237,2.531335,0,0,OIF:SA:13:89,Europe/Paris,,OIF, +OIF:SP:13:90,1,"Lt Dagorno",48.726363,2.5312,0,0,OIF:SA:13:89,Europe/Paris,,OIF, +OIF:SP:13:91,1,"Dr Laënnec",48.688768,2.626202,0,0,OIF:SA:13:91,Europe/Paris,,OIF, +OIF:SP:13:92,1,"Dr Roux",48.687143,2.621686,0,0,OIF:SA:13:92,Europe/Paris,,OIF, +OIF:SP:13:97,1,"Église",48.636657,2.797468,0,0,OIF:SA:13:97,Europe/Paris,,OIF, +OIF:SP:13:98,1,"Église",48.63681,2.797334,0,0,OIF:SA:13:97,Europe/Paris,,OIF, +OIF:SP:13:99,1,"Église",48.695364,2.550799,0,0,OIF:SA:13:99,Europe/Paris,,OIF, +OIF:SP:14:10146,1,"Route d'Estouches",48.315039,2.086375,0,0,OIF:SA:14:10146,Europe/Paris,,OIF, +OIF:SP:14:10147,1,"Route d'Estouches",48.315003,2.086227,0,0,OIF:SA:14:10146,Europe/Paris,,OIF, +OIF:SP:14:10156,1,"Mairie",48.318949,2.085466,0,0,OIF:SA:14:10156,Europe/Paris,,OIF, +OIF:SP:14:10157,1,"Mairie",48.318751,2.085508,0,0,OIF:SA:14:10156,Europe/Paris,,OIF, +OIF:SP:14:10471,1,"Le Mesnil",48.401599,2.141413,0,0,OIF:SA:14:10471,Europe/Paris,,OIF, +OIF:SP:14:10472,1,"Le Mesnil",48.401742,2.14117,0,0,OIF:SA:14:10471,Europe/Paris,,OIF, +OIF:SP:14:11130,1,"Rue de Paris",48.295466,2.20158,0,0,OIF:SA:14:11130,Europe/Paris,,OIF, +OIF:SP:14:11131,1,"Rue de Paris",48.295169,2.201514,0,0,OIF:SA:14:11130,Europe/Paris,,OIF, +OIF:SP:14:12334,1,"Orly Ouest Niveau Arrivées Sorti B-C",48.728758,2.359935,0,0,OIF:SA:8749571,Europe/Paris,,OIF, +OIF:SP:14:12335,1,"Orly Ouest Niveau Arrivées Sorti B-C",48.728722,2.359745,0,0,OIF:SA:8749571,Europe/Paris,,OIF, +OIF:SP:14:12336,1,"Orly Sud /Sortie L",48.728989,2.370234,0,0,OIF:SA:59675,Europe/Paris,,OIF, +OIF:SP:14:12337,1,"Orly Sud /Sortie L",48.728989,2.370234,0,0,OIF:SA:59675,Europe/Paris,,OIF, +OIF:SP:14:13796,1,"CDG 2A/2C",49.00336,2.564558,0,0,OIF:SA:8700147,Europe/Paris,,OIF, +OIF:SP:14:13797,1,"CDG 2A/2C",49.003378,2.564599,0,0,OIF:SA:8700147,Europe/Paris,,OIF, +OIF:SP:14:13798,1,"CDG 2A/2C",49.003369,2.564763,0,0,OIF:SA:8700147,Europe/Paris,,OIF, +OIF:SP:14:13799,1,"CDG 2A/2C",49.003387,2.564653,0,0,OIF:SA:8700147,Europe/Paris,,OIF, +OIF:SP:14:13800,1,"CDG 2B/2D",49.004025,2.564766,0,0,OIF:SA:8700147,Europe/Paris,,OIF, +OIF:SP:14:13801,1,"CDG 2B/2D",49.003908,2.564724,0,0,OIF:SA:8700147,Europe/Paris,,OIF, +OIF:SP:14:13802,1,"CDG 2B/2D",49.003944,2.564752,0,0,OIF:SA:8700147,Europe/Paris,,OIF, +OIF:SP:14:13803,1,"CDG 2B/2D",49.003935,2.564697,0,0,OIF:SA:8700147,Europe/Paris,,OIF, +OIF:SP:14:13808,1,"CDG 2E/2F",49.004944,2.577254,0,0,OIF:SA:8700147,Europe/Paris,,OIF, +OIF:SP:14:13809,1,"CDG 2E/2F",49.004926,2.577309,0,0,OIF:SA:8700147,Europe/Paris,,OIF, +OIF:SP:14:14788,1,"Rue des Martyrs",48.452388,2.747566,0,0,OIF:SA:14:14788,Europe/Paris,,OIF, +OIF:SP:14:14845,1,"Mairie",48.330422,2.117475,0,0,OIF:SA:14:14845,Europe/Paris,,OIF, +OIF:SP:14:14846,1,"Mairie",48.330513,2.117731,0,0,OIF:SA:14:14845,Europe/Paris,,OIF, +OIF:SP:14:14923,1,"CFA",48.408055,2.142078,0,0,OIF:SA:14:14923,Europe/Paris,,OIF, +OIF:SP:14:14924,1,"CFA",48.407947,2.142105,0,0,OIF:SA:14:14923,Europe/Paris,,OIF, +OIF:SP:14:14925,1,"Bouzonville Bourg",48.204942,2.229226,0,0,OIF:SA:14:14925,Europe/Paris,,OIF, +OIF:SP:14:14926,1,"Bouzonville Bourg",48.205014,2.229172,0,0,OIF:SA:14:14925,Europe/Paris,,OIF, +OIF:SP:14:14927,1,"Boigny D49",48.327625,2.111932,0,0,OIF:SA:14:14927,Europe/Paris,,OIF, +OIF:SP:14:14928,1,"Vallée Colleau",48.322736,2.099563,0,0,OIF:SA:14:14928,Europe/Paris,,OIF, +OIF:SP:14:14929,1,"Boigny D49",48.327706,2.112215,0,0,OIF:SA:14:14927,Europe/Paris,,OIF, +OIF:SP:14:14930,1,"Vallée Colleau",48.322809,2.099887,0,0,OIF:SA:14:14928,Europe/Paris,,OIF, +OIF:SP:14:14931,1,"Marie Curie",48.188431,2.248233,0,0,OIF:SA:14:14931,Europe/Paris,,OIF, +OIF:SP:14:14932,1,"Marie Curie",48.188997,2.247641,0,0,OIF:SA:14:14931,Europe/Paris,,OIF, +OIF:SP:14:14933,1,"Théatre",48.433565,2.155804,0,0,OIF:SA:14:14933,Europe/Paris,,OIF, +OIF:SP:14:14934,1,"Etoile/Champs Elysées",48.874321,2.294532,0,0,OIF:SA:8775800,Europe/Paris,,OIF, +OIF:SP:14:14935,1,"Etoile/Champs Elysées",48.874312,2.294532,0,0,OIF:SA:8775800,Europe/Paris,,OIF, +OIF:SP:14:14936,1,"Orly Sud /Sortie K",48.728989,2.370234,0,0,OIF:SA:59675,Europe/Paris,,OIF, +OIF:SP:14:14937,1,"Orly Sud /Sortie K",48.728989,2.370234,0,0,OIF:SA:59675,Europe/Paris,,OIF, +OIF:SP:14:14942,1,"CDG T1",49.013889,2.54127,0,0,OIF:SA:59685,Europe/Paris,,OIF, +OIF:SP:14:14943,1,"CDG T1",49.014096,2.541107,0,0,OIF:SA:59685,Europe/Paris,,OIF, +OIF:SP:14:14944,1,"Parc Georges Brassens",48.829267,2.29574,0,0,OIF:SA:59112,Europe/Paris,,OIF, +OIF:SP:14:14945,1,"Albert Bartholomé",48.828099,2.297742,0,0,OIF:SA:14:14945,Europe/Paris,,OIF, +OIF:SP:14:14946,1,"Brancion",48.827704,2.300288,0,0,OIF:SA:59060,Europe/Paris,,OIF, +OIF:SP:14:14947,1,"Chauvelot",48.82873,2.303731,0,0,OIF:SA:59527,Europe/Paris,,OIF, +OIF:SP:14:14948,1,"Fizeau",48.830402,2.30422,0,0,OIF:SA:14:14948,Europe/Paris,,OIF, +OIF:SP:14:14949,1,"Collège Modigliani",48.831777,2.306234,0,0,OIF:SA:14:14949,Europe/Paris,,OIF, +OIF:SP:14:14950,1,"Labrouste Vouillé",48.834151,2.308356,0,0,OIF:SA:14:14950,Europe/Paris,,OIF, +OIF:SP:14:14951,1,"Paul Barruel",48.83717,2.306067,0,0,OIF:SA:14:14951,Europe/Paris,,OIF, +OIF:SP:14:14952,1,"Bargue",48.838599,2.306774,0,0,OIF:SA:14:14952,Europe/Paris,,OIF, +OIF:SP:14:14953,1,"Procession",48.838123,2.308218,0,0,OIF:SA:14:14953,Europe/Paris,,OIF, +OIF:SP:14:14954,1,"Alleray",48.836865,2.307021,0,0,OIF:SA:14:14954,Europe/Paris,,OIF, +OIF:SP:14:14955,1,"Place d'Alleray",48.836513,2.305019,0,0,OIF:SA:14:14955,Europe/Paris,,OIF, +OIF:SP:14:14956,1,"Médiathèque Yourcenar",48.837276,2.301302,0,0,OIF:SA:14:14956,Europe/Paris,,OIF, +OIF:SP:14:14957,1,"Convention",48.837383,2.298511,0,0,OIF:SA:59520,Europe/Paris,,OIF, +OIF:SP:14:14958,1,"Vaugirard",48.839056,2.300198,0,0,OIF:SA:59601,Europe/Paris,,OIF, +OIF:SP:14:14959,1,"Mairie du 15ème",48.840673,2.300619,0,0,OIF:SA:14:14959,Europe/Paris,,OIF, +OIF:SP:14:14960,1,"Square Saint-Lambert",48.841778,2.297895,0,0,OIF:SA:14:14960,Europe/Paris,,OIF, +OIF:SP:14:14962,1,"Rue des Entrepreneurs",48.842694,2.295307,0,0,OIF:SA:14:14962,Europe/Paris,,OIF, +OIF:SP:14:14963,1,"Félix Faure",48.84361,2.293413,0,0,OIF:SA:59560,Europe/Paris,,OIF, +OIF:SP:14:14964,1,"Javel.",48.84263,2.291617,0,0,OIF:SA:14:14964,Europe/Paris,,OIF, +OIF:SP:14:14965,1,"Croix Nivert",48.840976,2.291414,0,0,OIF:SA:14:14965,Europe/Paris,,OIF, +OIF:SP:14:14966,1,"Lecourbe",48.838604,2.294534,0,0,OIF:SA:14:14966,Europe/Paris,,OIF, +OIF:SP:14:14967,1,"Convention Vaugirard",48.837536,2.296918,0,0,OIF:SA:59520,Europe/Paris,,OIF, +OIF:SP:14:14968,1,"Dombasle",48.835954,2.297014,0,0,OIF:SA:59520,Europe/Paris,,OIF, +OIF:SP:14:14969,1,"Morillons",48.834389,2.295463,0,0,OIF:SA:14:14969,Europe/Paris,,OIF, +OIF:SP:14:14970,1,"Maison des Associations",48.832807,2.294022,0,0,OIF:SA:14:14970,Europe/Paris,,OIF, +OIF:SP:14:14971,1,"Petite Ceinture",48.831683,2.29292,0,0,OIF:SA:14:14971,Europe/Paris,,OIF, +OIF:SP:14:14972,1,"Porte de Versailles",48.833039,2.288943,0,0,OIF:SA:59514,Europe/Paris,,OIF, +OIF:SP:14:14976,1,"Trocadéro",48.862778,2.286532,0,0,OIF:SA:59617,Europe/Paris,,OIF, +OIF:SP:14:14977,1,"Trocadéro",48.862769,2.286396,0,0,OIF:SA:59617,Europe/Paris,,OIF, +OIF:SP:14:14978,1,"Tour Eiffel",48.856121,2.293199,0,0,OIF:SA:14:14978,Europe/Paris,,OIF, +OIF:SP:14:14979,1,"Tour Eiffel",48.85604,2.293144,0,0,OIF:SA:14:14978,Europe/Paris,,OIF, +OIF:SP:14:14980,1,"La Brunette",48.455904,2.742309,0,0,OIF:SA:14:14980,Europe/Paris,,OIF, +OIF:SP:14:14981,1,"La Brunette",48.455939,2.742391,0,0,OIF:SA:14:14980,Europe/Paris,,OIF, +OIF:SP:14:14982,1,"ZA Saint-Fiacre",48.423897,2.73994,0,0,OIF:SA:14:14982,Europe/Paris,,OIF, +OIF:SP:14:14983,1,"ZA Saint-Fiacre",48.423916,2.739738,0,0,OIF:SA:14:14982,Europe/Paris,,OIF, +OIF:SP:14:14984,1,"Rosa Bonheur",48.416494,2.71953,0,0,OIF:SA:14:14984,Europe/Paris,,OIF, +OIF:SP:14:14986,1,"Lorraine",48.412505,2.710178,0,0,OIF:SA:14:14986,Europe/Paris,,OIF, +OIF:SP:14:14988,1,"Château",48.401749,2.696834,0,0,OIF:SA:14:14988,Europe/Paris,,OIF, +OIF:SP:14:14990,1,"Chemin des Ranges",48.462529,2.742482,0,0,OIF:SA:14:14990,Europe/Paris,,OIF, +OIF:SP:14:14991,1,"Rue Fouquet",48.449081,2.749838,0,0,OIF:SA:14:14991,Europe/Paris,,OIF, +OIF:SP:14:14992,1,"Volontaire-Vaigirard",48.842447,2.311102,0,0,OIF:SA:59452,Europe/Paris,,OIF, +OIF:SP:14:14993,1,"Pasteur Docteur Roux",48.84207,2.313036,0,0,OIF:SA:59452,Europe/Paris,,OIF, +OIF:SP:14:14994,1,"Institut Pasteur",48.841234,2.311947,0,0,OIF:SA:59452,Europe/Paris,,OIF, +OIF:SP:14:14995,1,"Thureau - Dangin",48.830497,2.293288,0,0,OIF:SA:59112,Europe/Paris,,OIF, +OIF:SP:14:2150,1,"Étape",48.410669,2.704998,0,0,OIF:SA:14:2150,Europe/Paris,,OIF, +OIF:SP:14:2156,1,"Hôpital de Fontainebleau",48.412373,2.697812,0,0,OIF:SA:14:2156,Europe/Paris,,OIF, +OIF:SP:14:2163,1,"Lucien Cézard",48.408685,2.704173,0,0,OIF:SA:14:2163,Europe/Paris,,OIF, +OIF:SP:14:2179,1,"Saint-Aspais",48.407337,2.689216,0,0,OIF:SA:14:2179,Europe/Paris,,OIF, +OIF:SP:14:2181,1,"Sous Préfecture",48.404475,2.690115,0,0,OIF:SA:14:2181,Europe/Paris,,OIF, +OIF:SP:14:291,1,"Lolainville",48.226333,2.229667,0,0,OIF:SA:14:291,Europe/Paris,,OIF, +OIF:SP:14:292,1,"Lolainville",48.226306,2.229573,0,0,OIF:SA:14:291,Europe/Paris,,OIF, +OIF:SP:14:293,1,"Grande Rue",48.261123,2.213155,0,0,OIF:SA:14:293,Europe/Paris,,OIF, +OIF:SP:14:294,1,"Grande Rue",48.26106,2.213047,0,0,OIF:SA:14:293,Europe/Paris,,OIF, +OIF:SP:14:299,1,"RD 24",48.298547,2.159085,0,0,OIF:SA:14:299,Europe/Paris,,OIF, +OIF:SP:14:303,1,"Collège Denis Poisson",48.167031,2.248336,0,0,OIF:SA:14:303,Europe/Paris,,OIF, +OIF:SP:14:304,1,"Collège Denis Poisson",48.166914,2.248336,0,0,OIF:SA:14:303,Europe/Paris,,OIF, +OIF:SP:14:305,1,"Gare de Pithiviers",48.173401,2.24229,0,0,OIF:SA:14:305,Europe/Paris,,OIF, +OIF:SP:14:306,1,"Gare de Pithiviers",48.173428,2.242182,0,0,OIF:SA:14:305,Europe/Paris,,OIF, +OIF:SP:14:307,1,"Lycée Duhamel du Monceau",48.181098,2.254403,0,0,OIF:SA:14:307,Europe/Paris,,OIF, +OIF:SP:14:308,1,"Lycée Duhamel du Monceau",48.181044,2.25439,0,0,OIF:SA:14:307,Europe/Paris,,OIF, +OIF:SP:14:309,1,"Mail",48.171935,2.253678,0,0,OIF:SA:14:309,Europe/Paris,,OIF, +OIF:SP:14:310,1,"Mail",48.172124,2.253826,0,0,OIF:SA:14:309,Europe/Paris,,OIF, +OIF:SP:14:311,1,"Saint-Eloi",48.181681,2.251848,0,0,OIF:SA:14:311,Europe/Paris,,OIF, +OIF:SP:14:312,1,"Saint-Eloi",48.181663,2.25174,0,0,OIF:SA:14:311,Europe/Paris,,OIF, +OIF:SP:14:313,1,"Bouzonville / D 921",48.205553,2.238708,0,0,OIF:SA:14:313,Europe/Paris,,OIF, +OIF:SP:14:314,1,"Bouzonville / D 921",48.205454,2.23856,0,0,OIF:SA:14:313,Europe/Paris,,OIF, +OIF:SP:14:404,1,"Gare de Lyon",48.845796,2.373686,0,0,OIF:SA:8768600,Europe/Paris,,OIF, +OIF:SP:14:405,1,"Gare de Lyon",48.845796,2.373686,0,0,OIF:SA:8768600,Europe/Paris,,OIF, +OIF:SP:14:410,1,"Gare Montparnasse",48.839357,2.32058,0,0,OIF:SA:8739100,Europe/Paris,,OIF, +OIF:SP:14:411,1,"Gare Montparnasse",48.839357,2.32058,0,0,OIF:SA:8739100,Europe/Paris,,OIF, +OIF:SP:14:418,1,"Porte Maillot",48.879251,2.284731,0,0,OIF:SA:8738102,Europe/Paris,,OIF, +OIF:SP:14:419,1,"Porte Maillot",48.879251,2.284731,0,0,OIF:SA:8738102,Europe/Paris,,OIF, +OIF:SP:14:4788,1,"Boulvard Briand Barbeau",48.444409,2.746382,0,0,OIF:SA:14:4788,Europe/Paris,,OIF, +OIF:SP:14:4789,1,"Boulvard Briand Barbeau",48.444535,2.746464,0,0,OIF:SA:14:4788,Europe/Paris,,OIF, +OIF:SP:14:4791,1,"Chemin de l'Orée",48.446928,2.748483,0,0,OIF:SA:14:4791,Europe/Paris,,OIF, +OIF:SP:14:4792,1,"Chemin de l'Orée",48.446713,2.748238,0,0,OIF:SA:14:4791,Europe/Paris,,OIF, +OIF:SP:14:4793,1,"Chemin des Ranges",48.462493,2.742604,0,0,OIF:SA:14:14990,Europe/Paris,,OIF, +OIF:SP:14:4796,1,"Les Plâtreries",48.436889,2.744972,0,0,OIF:SA:14:4796,Europe/Paris,,OIF, +OIF:SP:14:4797,1,"Les Plâtreries",48.436781,2.744944,0,0,OIF:SA:14:4796,Europe/Paris,,OIF, +OIF:SP:14:4798,1,"Les Sources",48.448376,2.753427,0,0,OIF:SA:14:4798,Europe/Paris,,OIF, +OIF:SP:14:4799,1,"Les Sources",48.448295,2.753615,0,0,OIF:SA:14:4798,Europe/Paris,,OIF, +OIF:SP:14:4800,1,"Place la République",48.451582,2.751939,0,0,OIF:SA:14:4800,Europe/Paris,,OIF, +OIF:SP:14:4801,1,"Place la République",48.451474,2.751857,0,0,OIF:SA:14:4800,Europe/Paris,,OIF, +OIF:SP:14:4802,1,"Rue des Martyrs",48.452327,2.747012,0,0,OIF:SA:14:14788,Europe/Paris,,OIF, +OIF:SP:14:4803,1,"Rue des Turlures",48.449333,2.744556,0,0,OIF:SA:14:4803,Europe/Paris,,OIF, +OIF:SP:14:4804,1,"Rue des Turlures",48.449397,2.744407,0,0,OIF:SA:14:4803,Europe/Paris,,OIF, +OIF:SP:14:4805,1,"Rue du Bas Samois",48.445127,2.746861,0,0,OIF:SA:14:4805,Europe/Paris,,OIF, +OIF:SP:14:4806,1,"Rue du Bas Samois",48.44527,2.746929,0,0,OIF:SA:14:4805,Europe/Paris,,OIF, +OIF:SP:14:4808,1,"Rue Fouquet",48.449199,2.74946,0,0,OIF:SA:14:14991,Europe/Paris,,OIF, +OIF:SP:14:514,1,"Gare de Fontainebleau Avon",48.416526,2.726067,0,0,OIF:SA:8768221,Europe/Paris,,OIF, +OIF:SP:14:515,1,"Gare de Fontainebleau Avon",48.41658,2.726243,0,0,OIF:SA:8768221,Europe/Paris,,OIF, +OIF:SP:14:516,1,"Laffemas",48.425945,2.742996,0,0,OIF:SA:14:516,Europe/Paris,,OIF, +OIF:SP:14:517,1,"Laffemas",48.425954,2.743063,0,0,OIF:SA:14:516,Europe/Paris,,OIF, +OIF:SP:14:8530,1,"Bierreville",48.369157,2.150318,0,0,OIF:SA:14:8530,Europe/Paris,,OIF, +OIF:SP:14:8531,1,"Bierreville",48.369058,2.15013,0,0,OIF:SA:14:8530,Europe/Paris,,OIF, +OIF:SP:14:9243,1,"Bourg",48.300108,2.134406,0,0,OIF:SA:14:9243,Europe/Paris,,OIF, +OIF:SP:14:9244,1,"Bourg",48.300243,2.134432,0,0,OIF:SA:14:9243,Europe/Paris,,OIF, +OIF:SP:14:9285,1,"Gare d'Etampe",48.436053,2.160551,0,0,OIF:SA:8754513,Europe/Paris,,OIF, +OIF:SP:14:9286,1,"Gare d'Etampe",48.436035,2.160686,0,0,OIF:SA:8754513,Europe/Paris,,OIF, +OIF:SP:14:9297,1,"Centre Hospitalier d'Étampes",48.420747,2.151553,0,0,OIF:SA:14:9297,Europe/Paris,,OIF, +OIF:SP:14:9298,1,"Centre Hospitalier d'Étampes",48.420909,2.151552,0,0,OIF:SA:14:9297,Europe/Paris,,OIF, +OIF:SP:14:9352,1,"Rotonde",48.433457,2.155737,0,0,OIF:SA:14:9352,Europe/Paris,,OIF, +OIF:SP:14:9366,1,"Salle des Fêtes",48.429936,2.158018,0,0,OIF:SA:14:9366,Europe/Paris,,OIF, +OIF:SP:14:9367,1,"Salle des Fêtes",48.429819,2.157829,0,0,OIF:SA:14:9366,Europe/Paris,,OIF, +OIF:SP:15:1,1,"Gare RER A",48.898471,2.121355,0,0,OIF:SA:8775808,Europe/Paris,,OIF, +OIF:SP:15:10,1,"Ermitage-Castors",48.889836,2.103537,0,0,OIF:SA:15:10,Europe/Paris,,OIF, +OIF:SP:15:100,1,"Route de Versailles",48.876024,2.104348,0,0,OIF:SA:15:100,Europe/Paris,,OIF, +OIF:SP:15:101,1,"La Source",48.876844,2.105203,0,0,OIF:SA:15:101,Europe/Paris,,OIF, +OIF:SP:15:102,1,"Marly Soleil",48.875591,2.103206,0,0,OIF:SA:15:102,Europe/Paris,,OIF, +OIF:SP:15:103,1,"Bèque SNCF",48.871734,2.097923,0,0,OIF:SA:8738246,Europe/Paris,,OIF, +OIF:SP:15:104,1,"Ancienne Mairie",48.879457,2.108543,0,0,OIF:SA:15:104,Europe/Paris,,OIF, +OIF:SP:15:105,1,"Ancienne Mairie",48.879404,2.108898,0,0,OIF:SA:15:104,Europe/Paris,,OIF, +OIF:SP:15:106,1,"Val André",48.883147,2.106578,0,0,OIF:SA:15:106,Europe/Paris,,OIF, +OIF:SP:15:107,1,"Val André",48.8833,2.106918,0,0,OIF:SA:15:106,Europe/Paris,,OIF, +OIF:SP:15:108,1,"Ermitage",48.886966,2.097294,0,0,OIF:SA:15:108,Europe/Paris,,OIF, +OIF:SP:15:109,1,"Ermitage",48.887135,2.096639,0,0,OIF:SA:15:108,Europe/Paris,,OIF, +OIF:SP:15:11,1,"Ermitage Pont",48.888253,2.102494,0,0,OIF:SA:15:11,Europe/Paris,,OIF, +OIF:SP:15:110,1,"Rue Thiers RER A",48.897425,2.096074,0,0,OIF:SA:8775809,Europe/Paris,,OIF, +OIF:SP:15:111,1,"Les Écuyers",48.898934,2.091187,0,0,OIF:SA:15:111,Europe/Paris,,OIF, +OIF:SP:15:112,1,"Les Écuyers",48.899156,2.090122,0,0,OIF:SA:15:111,Europe/Paris,,OIF, +OIF:SP:15:113,1,"Jehan Alain",48.900778,2.087852,0,0,OIF:SA:15:113,Europe/Paris,,OIF, +OIF:SP:15:114,1,"Jehan Alain",48.900778,2.087743,0,0,OIF:SA:15:113,Europe/Paris,,OIF, +OIF:SP:15:115,1,"Mermoz",48.902254,2.084491,0,0,OIF:SA:15:115,Europe/Paris,,OIF, +OIF:SP:15:117,1,"Square Forest",48.901782,2.078059,0,0,OIF:SA:15:117,Europe/Paris,,OIF, +OIF:SP:15:118,1,"Square Forest",48.901781,2.077677,0,0,OIF:SA:15:117,Europe/Paris,,OIF, +OIF:SP:15:119,1,"Christiane Frahier",48.902646,2.074769,0,0,OIF:SA:15:119,Europe/Paris,,OIF, +OIF:SP:15:12,1,"Les Lampes",48.88433,2.100509,0,0,OIF:SA:15:12,Europe/Paris,,OIF, +OIF:SP:15:120,1,"Christiane Frahier",48.902431,2.074784,0,0,OIF:SA:15:119,Europe/Paris,,OIF, +OIF:SP:15:121,1,"Grande Ceinture SNCF",48.901418,2.071858,0,0,OIF:SA:15:121,Europe/Paris,,OIF, +OIF:SP:15:122,1,"Grande Ceinture SNCF",48.901373,2.072104,0,0,OIF:SA:15:121,Europe/Paris,,OIF, +OIF:SP:15:124,1,"École Normale",48.901033,2.068848,0,0,OIF:SA:15:124,Europe/Paris,,OIF, +OIF:SP:15:125,1,"Péreire",48.901064,2.066339,0,0,OIF:SA:15:125,Europe/Paris,,OIF, +OIF:SP:15:126,1,"Chemin Neuf",48.902771,2.050735,0,0,OIF:SA:15:126,Europe/Paris,,OIF, +OIF:SP:15:127,1,"Chemin Neuf",48.902699,2.050735,0,0,OIF:SA:15:126,Europe/Paris,,OIF, +OIF:SP:15:128,1,"Georges Thill",48.901398,2.047975,0,0,OIF:SA:15:128,Europe/Paris,,OIF, +OIF:SP:15:13,1,"Square de Saint-Germain",48.883221,2.098756,0,0,OIF:SA:15:13,Europe/Paris,,OIF, +OIF:SP:15:130,1,"Châtaigneraie",48.903592,2.044936,0,0,OIF:SA:15:130,Europe/Paris,,OIF, +OIF:SP:15:131,1,"Châtaigneraie",48.903432,2.045305,0,0,OIF:SA:15:130,Europe/Paris,,OIF, +OIF:SP:15:132,1,"Croix Blanche",48.904555,2.041509,0,0,OIF:SA:15:132,Europe/Paris,,OIF, +OIF:SP:15:133,1,"Mairie",48.905171,2.039856,0,0,OIF:SA:15:133,Europe/Paris,,OIF, +OIF:SP:15:134,1,"André Derain",48.907315,2.038262,0,0,OIF:SA:15:134,Europe/Paris,,OIF, +OIF:SP:15:135,1,"André Derain",48.90717,2.038113,0,0,OIF:SA:15:134,Europe/Paris,,OIF, +OIF:SP:15:139,1,"Abreuvoir",48.903619,2.020179,0,0,OIF:SA:15:139,Europe/Paris,,OIF, +OIF:SP:15:14,1,"Les Marronniers",48.881907,2.097699,0,0,OIF:SA:15:14,Europe/Paris,,OIF, +OIF:SP:15:140,1,"Rue de Feucherolles",48.907139,2.02238,0,0,OIF:SA:15:140,Europe/Paris,,OIF, +OIF:SP:15:141,1,"Collège",48.91078,2.029939,0,0,OIF:SA:15:141,Europe/Paris,,OIF, +OIF:SP:15:142,1,"Complexe Sportif",48.909032,2.031708,0,0,OIF:SA:15:142,Europe/Paris,,OIF, +OIF:SP:15:143,1,"Marie Curie",48.896516,2.070248,0,0,OIF:SA:15:143,Europe/Paris,,OIF, +OIF:SP:15:145,1,"Gounod",48.895143,2.067283,0,0,OIF:SA:15:145,Europe/Paris,,OIF, +OIF:SP:15:146,1,"Verdi",48.89432,2.064739,0,0,OIF:SA:15:146,Europe/Paris,,OIF, +OIF:SP:15:148,1,"Lycée de Vinci",48.892153,2.064668,0,0,OIF:SA:15:148,Europe/Paris,,OIF, +OIF:SP:15:15,1,"Square des Aubades",48.881296,2.097607,0,0,OIF:SA:15:15,Europe/Paris,,OIF, +OIF:SP:15:151,1,"Hôpital Marché",48.897863,2.086107,0,0,OIF:SA:15:151,Europe/Paris,,OIF, +OIF:SP:15:157,1,"Pontel",48.887996,2.082407,0,0,OIF:SA:15:157,Europe/Paris,,OIF, +OIF:SP:15:158,1,"Pontel",48.887852,2.082313,0,0,OIF:SA:15:157,Europe/Paris,,OIF, +OIF:SP:15:159,1,"4 Chemins",48.887818,2.079178,0,0,OIF:SA:15:159,Europe/Paris,,OIF, +OIF:SP:15:16,1,"Square des Sablons",48.879857,2.097395,0,0,OIF:SA:15:16,Europe/Paris,,OIF, +OIF:SP:15:160,1,"4 Chemins",48.887647,2.079179,0,0,OIF:SA:15:159,Europe/Paris,,OIF, +OIF:SP:15:162,1,"Croix Rouge",48.886711,2.070135,0,0,OIF:SA:15:162,Europe/Paris,,OIF, +OIF:SP:15:163,1,"Croix Rouge",48.886738,2.070216,0,0,OIF:SA:15:162,Europe/Paris,,OIF, +OIF:SP:15:164,1,"Victor Hugo",48.886498,2.063553,0,0,OIF:SA:15:164,Europe/Paris,,OIF, +OIF:SP:15:166,1,"Mairie",48.890192,2.063575,0,0,OIF:SA:15:166,Europe/Paris,,OIF, +OIF:SP:15:169,1,"Val Fleuri",48.892485,2.060319,0,0,OIF:SA:15:169,Europe/Paris,,OIF, +OIF:SP:15:17,1,"Square des Sablons",48.879686,2.097055,0,0,OIF:SA:15:16,Europe/Paris,,OIF, +OIF:SP:15:172,1,"Guillemotte",48.892774,2.057019,0,0,OIF:SA:15:172,Europe/Paris,,OIF, +OIF:SP:15:173,1,"Clos Badère",48.890375,2.053584,0,0,OIF:SA:15:173,Europe/Paris,,OIF, +OIF:SP:15:174,1,"Allée des Epines",48.871656,2.099736,0,0,OIF:SA:15:174,Europe/Paris,,OIF, +OIF:SP:15:175,1,"Complexe Sportif",48.909104,2.031448,0,0,OIF:SA:15:142,Europe/Paris,,OIF, +OIF:SP:15:176,1,"Bois de la Ferme",48.906788,2.032457,0,0,OIF:SA:15:176,Europe/Paris,,OIF, +OIF:SP:15:177,1,"Bois de la Ferme",48.906743,2.032485,0,0,OIF:SA:15:176,Europe/Paris,,OIF, +OIF:SP:15:178,1,"Vert Galant",48.906229,2.04244,0,0,OIF:SA:15:178,Europe/Paris,,OIF, +OIF:SP:15:179,1,"Écuyers",48.905771,2.046315,0,0,OIF:SA:15:179,Europe/Paris,,OIF, +OIF:SP:15:180,1,"Village d'Hennemont",48.898449,2.062645,0,0,OIF:SA:15:180,Europe/Paris,,OIF, +OIF:SP:15:181,1,"Vieille Butte",48.898655,2.066188,0,0,OIF:SA:15:181,Europe/Paris,,OIF, +OIF:SP:15:182,1,"Croix de Fer",48.899149,2.070261,0,0,OIF:SA:15:182,Europe/Paris,,OIF, +OIF:SP:15:184,1,"Centre Administratif",48.899918,2.084966,0,0,OIF:SA:15:184,Europe/Paris,,OIF, +OIF:SP:15:186,1,"Mermoz",48.902129,2.084723,0,0,OIF:SA:15:115,Europe/Paris,,OIF, +OIF:SP:15:187,1,"Croix de Fer",48.899212,2.070084,0,0,OIF:SA:15:182,Europe/Paris,,OIF, +OIF:SP:15:188,1,"Vieille Butte",48.898737,2.066651,0,0,OIF:SA:15:181,Europe/Paris,,OIF, +OIF:SP:15:19,1,"Ramon Saint-Thibault",48.878149,2.097212,0,0,OIF:SA:15:19,Europe/Paris,,OIF, +OIF:SP:15:190,1,"Ourches Hôpital",48.898921,2.0808,0,0,OIF:SA:15:190,Europe/Paris,,OIF, +OIF:SP:15:192,1,"Galliéni",48.896888,2.07991,0,0,OIF:SA:15:192,Europe/Paris,,OIF, +OIF:SP:15:193,1,"Galliéni",48.896978,2.0801,0,0,OIF:SA:15:192,Europe/Paris,,OIF, +OIF:SP:15:196,1,"Caraman",48.895527,2.078417,0,0,OIF:SA:15:196,Europe/Paris,,OIF, +OIF:SP:15:197,1,"Caraman",48.89541,2.07835,0,0,OIF:SA:15:196,Europe/Paris,,OIF, +OIF:SP:15:198,1,"Boufflers",48.896979,2.076352,0,0,OIF:SA:15:198,Europe/Paris,,OIF, +OIF:SP:15:199,1,"Boufflers",48.896835,2.076325,0,0,OIF:SA:15:198,Europe/Paris,,OIF, +OIF:SP:15:2,1,"République",48.897768,2.115687,0,0,OIF:SA:15:2,Europe/Paris,,OIF, +OIF:SP:15:20,1,"Ramon Saint-Thibault",48.877051,2.096196,0,0,OIF:SA:15:19,Europe/Paris,,OIF, +OIF:SP:15:200,1,"Sablons Jean Vilar",48.876422,2.096566,0,0,OIF:SA:15:200,Europe/Paris,,OIF, +OIF:SP:15:201,1,"Rue Saint-Louis",48.895096,2.095403,0,0,OIF:SA:15:201,Europe/Paris,,OIF, +OIF:SP:15:202,1,"Schnapper",48.887651,2.093611,0,0,OIF:SA:15:202,Europe/Paris,,OIF, +OIF:SP:15:203,1,"Schnapper",48.887525,2.093598,0,0,OIF:SA:15:202,Europe/Paris,,OIF, +OIF:SP:15:204,1,"Sainte-Radegonde",48.889805,2.088123,0,0,OIF:SA:15:204,Europe/Paris,,OIF, +OIF:SP:15:205,1,"Sainte-Radegonde",48.889661,2.088178,0,0,OIF:SA:15:204,Europe/Paris,,OIF, +OIF:SP:15:207,1,"Fourqueux",48.889842,2.07989,0,0,OIF:SA:15:207,Europe/Paris,,OIF, +OIF:SP:15:208,1,"Sous Préfecture",48.8934,2.079546,0,0,OIF:SA:15:208,Europe/Paris,,OIF, +OIF:SP:15:209,1,"Sous Préfecture",48.892707,2.079236,0,0,OIF:SA:15:208,Europe/Paris,,OIF, +OIF:SP:15:21,1,"Jean Witold",48.875926,2.095547,0,0,OIF:SA:15:21,Europe/Paris,,OIF, +OIF:SP:15:210,1,"Nicot",48.89465,2.075873,0,0,OIF:SA:15:210,Europe/Paris,,OIF, +OIF:SP:15:211,1,"Nicot",48.894254,2.075466,0,0,OIF:SA:15:210,Europe/Paris,,OIF, +OIF:SP:15:214,1,"Taillevent",48.890822,2.068246,0,0,OIF:SA:15:214,Europe/Paris,,OIF, +OIF:SP:15:215,1,"Taillevent",48.890589,2.068316,0,0,OIF:SA:15:214,Europe/Paris,,OIF, +OIF:SP:15:22,1,"Les Pins Clos Courché",48.874153,2.094302,0,0,OIF:SA:15:22,Europe/Paris,,OIF, +OIF:SP:15:220,1,"Place Sainte-Catherine",48.893247,2.083935,0,0,OIF:SA:15:220,Europe/Paris,,OIF, +OIF:SP:15:222,1,"Place des Rotondes",48.893705,2.067373,0,0,OIF:SA:15:222,Europe/Paris,,OIF, +OIF:SP:15:223,1,"Gare du Bel Air SNCF",48.895808,2.071083,0,0,OIF:SA:8736692,Europe/Paris,,OIF, +OIF:SP:15:224,1,"Joffre",48.894761,2.090075,0,0,OIF:SA:15:224,Europe/Paris,,OIF, +OIF:SP:15:225,1,"Rue de la Salle",48.89713,2.09279,0,0,OIF:SA:15:225,Europe/Paris,,OIF, +OIF:SP:15:226,1,"Debussy",48.891593,2.096469,0,0,OIF:SA:15:226,Europe/Paris,,OIF, +OIF:SP:15:228,1,"Diderot",48.891444,2.089737,0,0,OIF:SA:15:228,Europe/Paris,,OIF, +OIF:SP:15:229,1,"Jaurès",48.89523,2.082113,0,0,OIF:SA:15:229,Europe/Paris,,OIF, +OIF:SP:15:23,1,"Les Pins Clos Courché",48.874918,2.094748,0,0,OIF:SA:15:22,Europe/Paris,,OIF, +OIF:SP:15:230,1,"Jaurès",48.895095,2.082045,0,0,OIF:SA:15:229,Europe/Paris,,OIF, +OIF:SP:15:231,1,"3 Quignons",48.89178,2.062694,0,0,OIF:SA:15:231,Europe/Paris,,OIF, +OIF:SP:15:232,1,"Clos Baron",48.888289,2.068614,0,0,OIF:SA:15:232,Europe/Paris,,OIF, +OIF:SP:15:239,1,"Les Vignes Benettes",48.880716,2.095443,0,0,OIF:SA:15:239,Europe/Paris,,OIF, +OIF:SP:15:24,1,"Bèque SNCF",48.871805,2.09746,0,0,OIF:SA:8738246,Europe/Paris,,OIF, +OIF:SP:15:240,1,"Mairie",48.897563,2.107073,0,0,OIF:SA:15:240,Europe/Paris,,OIF, +OIF:SP:15:241,1,"Marly Soleil",48.875069,2.102772,0,0,OIF:SA:15:102,Europe/Paris,,OIF, +OIF:SP:15:242,1,"Viaduc",48.871041,2.102095,0,0,OIF:SA:15:242,Europe/Paris,,OIF, +OIF:SP:15:243,1,"Technoparc",48.949796,2.060476,0,0,OIF:SA:15:243,Europe/Paris,,OIF, +OIF:SP:15:244,1,"Rond-Point Technoparc",48.94968,2.060845,0,0,OIF:SA:15:243,Europe/Paris,,OIF, +OIF:SP:15:245,1,"Gare SNCF RER A",48.933226,2.039149,0,0,OIF:SA:8738657,Europe/Paris,,OIF, +OIF:SP:15:247,1,"Gare RER A",48.899317,2.094088,0,0,OIF:SA:8775809,Europe/Paris,,OIF, +OIF:SP:15:249,1,"Le Cep",48.928802,2.041412,0,0,OIF:SA:15:249,Europe/Paris,,OIF, +OIF:SP:15:25,1,"Route de Croissy",48.896815,2.115214,0,0,OIF:SA:15:25,Europe/Paris,,OIF, +OIF:SP:15:251,1,"Centre des Impôts",48.919835,2.038831,0,0,OIF:SA:15:251,Europe/Paris,,OIF, +OIF:SP:15:252,1,"Centre des Impôts",48.920527,2.038868,0,0,OIF:SA:15:251,Europe/Paris,,OIF, +OIF:SP:15:253,1,"Francis Pédron",48.908654,2.038282,0,0,OIF:SA:15:253,Europe/Paris,,OIF, +OIF:SP:15:255,1,"Gare RER A",48.899388,2.093529,0,0,OIF:SA:8775809,Europe/Paris,,OIF, +OIF:SP:15:256,1,"Plains Champs",48.871902,2.110443,0,0,OIF:SA:15:256,Europe/Paris,,OIF, +OIF:SP:15:257,1,"Plains Champs",48.872378,2.110182,0,0,OIF:SA:15:256,Europe/Paris,,OIF, +OIF:SP:15:258,1,"Voisins",48.866254,2.113043,0,0,OIF:SA:15:258,Europe/Paris,,OIF, +OIF:SP:15:259,1,"Voisins",48.866424,2.112851,0,0,OIF:SA:15:258,Europe/Paris,,OIF, +OIF:SP:15:260,1,"Village",48.862907,2.111191,0,0,OIF:SA:15:260,Europe/Paris,,OIF, +OIF:SP:15:262,1,"Grille Royale",48.855359,2.107056,0,0,OIF:SA:15:262,Europe/Paris,,OIF, +OIF:SP:15:263,1,"Villevert",48.84695,2.109013,0,0,OIF:SA:15:263,Europe/Paris,,OIF, +OIF:SP:15:264,1,"Villevert",48.846933,2.109477,0,0,OIF:SA:15:263,Europe/Paris,,OIF, +OIF:SP:15:265,1,"Grille Royale",48.8558,2.107381,0,0,OIF:SA:15:262,Europe/Paris,,OIF, +OIF:SP:15:266,1,"Les 3 Fontaines",48.836852,2.111427,0,0,OIF:SA:15:266,Europe/Paris,,OIF, +OIF:SP:15:267,1,"Parly 2",48.830689,2.11242,0,0,OIF:SA:15:267,Europe/Paris,,OIF, +OIF:SP:15:268,1,"Parly 2",48.826944,2.114083,0,0,OIF:SA:15:267,Europe/Paris,,OIF, +OIF:SP:15:269,1,"Porte Saint-Antoine",48.822524,2.114906,0,0,OIF:SA:15:269,Europe/Paris,,OIF, +OIF:SP:15:27,1,"République",48.89828,2.115535,0,0,OIF:SA:15:2,Europe/Paris,,OIF, +OIF:SP:15:270,1,"Porte Saint-Antoine",48.825757,2.11383,0,0,OIF:SA:15:269,Europe/Paris,,OIF, +OIF:SP:15:271,1,"Pré Catalan",48.818256,2.120409,0,0,OIF:SA:15:271,Europe/Paris,,OIF, +OIF:SP:15:272,1,"Pré Catalan",48.818364,2.120476,0,0,OIF:SA:15:271,Europe/Paris,,OIF, +OIF:SP:15:273,1,"Place de la Loi",48.814937,2.129187,0,0,OIF:SA:15:273,Europe/Paris,,OIF, +OIF:SP:15:274,1,"Place de la Loi",48.815052,2.128465,0,0,OIF:SA:15:273,Europe/Paris,,OIF, +OIF:SP:15:275,1,"Berthier",48.811859,2.127022,0,0,OIF:SA:15:275,Europe/Paris,,OIF, +OIF:SP:15:276,1,"Berthier",48.811886,2.126763,0,0,OIF:SA:15:275,Europe/Paris,,OIF, +OIF:SP:15:277,1,"Réservoirs",48.809133,2.125373,0,0,OIF:SA:15:277,Europe/Paris,,OIF, +OIF:SP:15:278,1,"Réservoirs",48.808988,2.125033,0,0,OIF:SA:15:277,Europe/Paris,,OIF, +OIF:SP:15:279,1,"Place Hoche",48.806474,2.126499,0,0,OIF:SA:15:279,Europe/Paris,,OIF, +OIF:SP:15:283,1,"Préfecture Gare RER A",49.035171,2.082147,0,0,OIF:SA:8738190,Europe/Paris,,OIF, +OIF:SP:15:284,1,"Gare Place Romagné SNCF",48.997255,2.09819,0,0,OIF:SA:8738189,Europe/Paris,,OIF, +OIF:SP:15:285,1,"Gare de Saint-Quentin-en-Yvelines SNCF RER C",48.788516,2.045475,0,0,OIF:SA:8739384,Europe/Paris,,OIF, +OIF:SP:15:286,1,"Rue Thiers RER A",48.897569,2.096482,0,0,OIF:SA:8775809,Europe/Paris,,OIF, +OIF:SP:15:288,1,"Professeur Roux",48.885556,2.093471,0,0,OIF:SA:15:288,Europe/Paris,,OIF, +OIF:SP:15:289,1,"Professeur Roux",48.885719,2.09392,0,0,OIF:SA:15:288,Europe/Paris,,OIF, +OIF:SP:15:29,1,"Verdun",48.894747,2.114787,0,0,OIF:SA:15:29,Europe/Paris,,OIF, +OIF:SP:15:290,1,"Rue Nouvelle",48.883591,2.090714,0,0,OIF:SA:15:290,Europe/Paris,,OIF, +OIF:SP:15:291,1,"Rue Nouvelle",48.882763,2.08986,0,0,OIF:SA:15:290,Europe/Paris,,OIF, +OIF:SP:15:292,1,"Bas Roi",48.878382,2.083613,0,0,OIF:SA:15:292,Europe/Paris,,OIF, +OIF:SP:15:293,1,"Bas Roi",48.878364,2.083804,0,0,OIF:SA:15:292,Europe/Paris,,OIF, +OIF:SP:15:294,1,"Sabotte",48.876011,2.080504,0,0,OIF:SA:15:294,Europe/Paris,,OIF, +OIF:SP:15:295,1,"Sabotte",48.876075,2.080722,0,0,OIF:SA:15:294,Europe/Paris,,OIF, +OIF:SP:15:296,1,"Mairie",48.870476,2.072452,0,0,OIF:SA:15:296,Europe/Paris,,OIF, +OIF:SP:15:297,1,"Mairie",48.870567,2.073324,0,0,OIF:SA:15:296,Europe/Paris,,OIF, +OIF:SP:15:298,1,"Prés Jummelles",48.86877,2.065213,0,0,OIF:SA:15:298,Europe/Paris,,OIF, +OIF:SP:15:299,1,"Prés Jummelles",48.86869,2.065691,0,0,OIF:SA:15:298,Europe/Paris,,OIF, +OIF:SP:15:3,1,"Jean Jaurès",48.897985,2.111406,0,0,OIF:SA:15:3,Europe/Paris,,OIF, +OIF:SP:15:30,1,"Liberté",48.892367,2.115547,0,0,OIF:SA:15:30,Europe/Paris,,OIF, +OIF:SP:15:300,1,"La Doucerie",48.868925,2.062215,0,0,OIF:SA:15:300,Europe/Paris,,OIF, +OIF:SP:15:301,1,"La Doucerie",48.868878,2.061589,0,0,OIF:SA:15:300,Europe/Paris,,OIF, +OIF:SP:15:302,1,"Lieutenant Chassagne",48.869804,2.057974,0,0,OIF:SA:15:302,Europe/Paris,,OIF, +OIF:SP:15:303,1,"Lieutenant Chassagne",48.869742,2.058097,0,0,OIF:SA:15:302,Europe/Paris,,OIF, +OIF:SP:15:304,1,"Avenue des Chênes",48.869555,2.054992,0,0,OIF:SA:15:304,Europe/Paris,,OIF, +OIF:SP:15:305,1,"Avenue des Chênes",48.869384,2.054802,0,0,OIF:SA:15:304,Europe/Paris,,OIF, +OIF:SP:15:306,1,"Petit Parc Bignon",48.869154,2.0528,0,0,OIF:SA:15:306,Europe/Paris,,OIF, +OIF:SP:15:307,1,"Pré de l'Isle",48.867863,2.069755,0,0,OIF:SA:15:307,Europe/Paris,,OIF, +OIF:SP:15:33,1,"Hameau Sisley Collége P et M Curie",48.889643,2.115177,0,0,OIF:SA:15:33,Europe/Paris,,OIF, +OIF:SP:15:34,1,"Président Wilson",48.893413,2.112961,0,0,OIF:SA:15:34,Europe/Paris,,OIF, +OIF:SP:15:344,1,"Les 3 Fontaines",48.836907,2.111685,0,0,OIF:SA:15:266,Europe/Paris,,OIF, +OIF:SP:15:345,1,"Gare RER A",48.899388,2.09387,0,0,OIF:SA:8775809,Europe/Paris,,OIF, +OIF:SP:15:346,1,"Gare RER A",48.899389,2.09402,0,0,OIF:SA:8775809,Europe/Paris,,OIF, +OIF:SP:15:347,1,"Neuville Université SNCF RER A",49.014657,2.078956,0,0,OIF:SA:8733448,Europe/Paris,,OIF, +OIF:SP:15:348,1,"Notre-Dame",48.926267,2.037553,0,0,OIF:SA:15:348,Europe/Paris,,OIF, +OIF:SP:15:349,1,"Notre-Dame",48.926148,2.036694,0,0,OIF:SA:15:348,Europe/Paris,,OIF, +OIF:SP:15:35,1,"Pont du Pecq",48.897787,2.106759,0,0,OIF:SA:15:35,Europe/Paris,,OIF, +OIF:SP:15:351,1,"Lycée International",48.898259,2.062292,0,0,OIF:SA:15:351,Europe/Paris,,OIF, +OIF:SP:15:352,1,"Lycée International",48.898196,2.062292,0,0,OIF:SA:15:351,Europe/Paris,,OIF, +OIF:SP:15:354,1,"Pavillon Sully",48.896339,2.101395,0,0,OIF:SA:15:354,Europe/Paris,,OIF, +OIF:SP:15:355,1,"Pavillon Sully",48.896286,2.101736,0,0,OIF:SA:15:354,Europe/Paris,,OIF, +OIF:SP:15:356,1,"Noyer Garenne",48.872288,2.087784,0,0,OIF:SA:15:356,Europe/Paris,,OIF, +OIF:SP:15:358,1,"Cirsée Buisson",48.891555,2.113737,0,0,OIF:SA:15:358,Europe/Paris,,OIF, +OIF:SP:15:36,1,"Pont du Pecq",48.89803,2.106771,0,0,OIF:SA:15:35,Europe/Paris,,OIF, +OIF:SP:15:362,1,"Gare RER A",48.897923,2.121821,0,0,OIF:SA:8775808,Europe/Paris,,OIF, +OIF:SP:15:368,1,"Centre Commercial",48.828524,2.117943,0,0,OIF:SA:15:368,Europe/Paris,,OIF, +OIF:SP:15:369,1,"Centre Commercial",48.828524,2.117943,0,0,OIF:SA:15:368,Europe/Paris,,OIF, +OIF:SP:15:37,1,"Place Royale",48.894651,2.097818,0,0,OIF:SA:15:37,Europe/Paris,,OIF, +OIF:SP:15:370,1,"Collège",48.868582,2.099396,0,0,OIF:SA:15:370,Europe/Paris,,OIF, +OIF:SP:15:371,1,"Guillemotte",48.892702,2.057142,0,0,OIF:SA:15:172,Europe/Paris,,OIF, +OIF:SP:15:374,1,"Ermitage",48.887582,2.095452,0,0,OIF:SA:15:108,Europe/Paris,,OIF, +OIF:SP:15:376,1,"Gare SNCF",48.871273,2.096658,0,0,OIF:SA:8738246,Europe/Paris,,OIF, +OIF:SP:15:378,1,"Gare SNCF RER A",48.93298,2.041374,0,0,OIF:SA:8738657,Europe/Paris,,OIF, +OIF:SP:15:379,1,"Jasmin",48.826004,2.121193,0,0,OIF:SA:15:379,Europe/Paris,,OIF, +OIF:SP:15:380,1,"Jasmin",48.825773,2.122446,0,0,OIF:SA:15:379,Europe/Paris,,OIF, +OIF:SP:15:381,1,"Joyenval",48.902769,2.03184,0,0,OIF:SA:15:381,Europe/Paris,,OIF, +OIF:SP:15:382,1,"Les Lampes",48.884148,2.099488,0,0,OIF:SA:15:12,Europe/Paris,,OIF, +OIF:SP:15:384,1,"Les 3 Fontaines",48.837052,2.112311,0,0,OIF:SA:15:266,Europe/Paris,,OIF, +OIF:SP:15:385,1,"Les Meuniers",48.900821,2.025894,0,0,OIF:SA:15:385,Europe/Paris,,OIF, +OIF:SP:15:386,1,"La Muette",48.831919,2.116472,0,0,OIF:SA:15:386,Europe/Paris,,OIF, +OIF:SP:15:387,1,"La Muette",48.831721,2.11665,0,0,OIF:SA:15:386,Europe/Paris,,OIF, +OIF:SP:15:388,1,"Passy",48.833603,2.118534,0,0,OIF:SA:15:388,Europe/Paris,,OIF, +OIF:SP:15:389,1,"Passy",48.83354,2.118575,0,0,OIF:SA:15:388,Europe/Paris,,OIF, +OIF:SP:15:392,1,"Place Royale",48.894766,2.09704,0,0,OIF:SA:15:37,Europe/Paris,,OIF, +OIF:SP:15:394,1,"Place Simart",48.819022,2.126707,0,0,OIF:SA:15:394,Europe/Paris,,OIF, +OIF:SP:15:395,1,"Place Simart",48.819094,2.126788,0,0,OIF:SA:15:394,Europe/Paris,,OIF, +OIF:SP:15:396,1,"Giraud Teulon",48.893854,2.099157,0,0,OIF:SA:15:396,Europe/Paris,,OIF, +OIF:SP:15:397,1,"Ramon Saint-Thibault",48.877449,2.097338,0,0,OIF:SA:15:19,Europe/Paris,,OIF, +OIF:SP:15:398,1,"Le Cep",48.928999,2.041465,0,0,OIF:SA:15:249,Europe/Paris,,OIF, +OIF:SP:15:399,1,"Village",48.862313,2.110581,0,0,OIF:SA:15:260,Europe/Paris,,OIF, +OIF:SP:15:4,1,"Jean Jaurès",48.897833,2.111625,0,0,OIF:SA:15:3,Europe/Paris,,OIF, +OIF:SP:15:40,1,"Alexandre Bertrand",48.88946,2.099354,0,0,OIF:SA:15:40,Europe/Paris,,OIF, +OIF:SP:15:400,1,"Cimetière",48.863872,2.081845,0,0,OIF:SA:15:400,Europe/Paris,,OIF, +OIF:SP:15:401,1,"Mansart",48.866806,2.096448,0,0,OIF:SA:15:401,Europe/Paris,,OIF, +OIF:SP:15:409,1,"Glaxo Rougemonts",48.871388,2.105118,0,0,OIF:SA:15:409,Europe/Paris,,OIF, +OIF:SP:15:41,1,"Alexandre Bertrand",48.88944,2.098768,0,0,OIF:SA:15:40,Europe/Paris,,OIF, +OIF:SP:15:411,1,"Château",48.803115,2.127697,0,0,OIF:SA:8739315,Europe/Paris,,OIF, +OIF:SP:15:412,1,"Château",48.802692,2.127481,0,0,OIF:SA:8739315,Europe/Paris,,OIF, +OIF:SP:15:413,1,"Gare Rive Gauche RER C",48.800213,2.128035,0,0,OIF:SA:8739315,Europe/Paris,,OIF, +OIF:SP:15:415,1,"Rue de Seine",48.903069,2.114915,0,0,OIF:SA:15:415,Europe/Paris,,OIF, +OIF:SP:15:416,1,"Jacques Cartier",48.899481,2.113649,0,0,OIF:SA:15:416,Europe/Paris,,OIF, +OIF:SP:15:417,1,"Alain",48.895987,2.114754,0,0,OIF:SA:15:417,Europe/Paris,,OIF, +OIF:SP:15:418,1,"Félix Eboué",48.893847,2.109584,0,0,OIF:SA:15:418,Europe/Paris,,OIF, +OIF:SP:15:42,1,"Ermitage",48.886766,2.100498,0,0,OIF:SA:15:108,Europe/Paris,,OIF, +OIF:SP:15:429,1,"Bèque SNCF",48.871653,2.097774,0,0,OIF:SA:8738246,Europe/Paris,,OIF, +OIF:SP:15:43,1,"Ermitage",48.88696,2.098971,0,0,OIF:SA:15:108,Europe/Paris,,OIF, +OIF:SP:15:430,1,"Rue Thiers RER A",48.897705,2.096822,0,0,OIF:SA:8775809,Europe/Paris,,OIF, +OIF:SP:15:431,1,"Croix Rouge",48.886774,2.070325,0,0,OIF:SA:15:162,Europe/Paris,,OIF, +OIF:SP:15:432,1,"Nicot",48.894337,2.076515,0,0,OIF:SA:15:210,Europe/Paris,,OIF, +OIF:SP:15:433,1,"Gare RER A",48.899004,2.094717,0,0,OIF:SA:8775809,Europe/Paris,,OIF, +OIF:SP:15:434,1,"Georges Thill",48.901714,2.048396,0,0,OIF:SA:15:128,Europe/Paris,,OIF, +OIF:SP:15:435,1,"Louis Pelin",48.835377,2.120337,0,0,OIF:SA:15:435,Europe/Paris,,OIF, +OIF:SP:15:436,1,"Louis Pelin",48.83526,2.119929,0,0,OIF:SA:15:435,Europe/Paris,,OIF, +OIF:SP:15:437,1,"Clos des Epines",48.87472,2.099204,0,0,OIF:SA:15:437,Europe/Paris,,OIF, +OIF:SP:15:439,1,"Aligre",48.895577,2.111946,0,0,OIF:SA:15:439,Europe/Paris,,OIF, +OIF:SP:15:44,1,"Les Lampes",48.88442,2.100427,0,0,OIF:SA:15:12,Europe/Paris,,OIF, +OIF:SP:15:441,1,"Péreire",48.900991,2.065944,0,0,OIF:SA:15:125,Europe/Paris,,OIF, +OIF:SP:15:442,1,"Gare du Bel Air SNCF",48.896248,2.07089,0,0,OIF:SA:8736692,Europe/Paris,,OIF, +OIF:SP:15:443,1,"Gaudines",48.892367,2.0717,0,0,OIF:SA:15:443,Europe/Paris,,OIF, +OIF:SP:15:444,1,"Mairie",48.89034,2.065509,0,0,OIF:SA:15:166,Europe/Paris,,OIF, +OIF:SP:15:445,1,"Réservoir",48.894027,2.062464,0,0,OIF:SA:15:445,Europe/Paris,,OIF, +OIF:SP:15:446,1,"Réservoir",48.894233,2.062245,0,0,OIF:SA:15:445,Europe/Paris,,OIF, +OIF:SP:15:447,1,"Thiers",48.89997,2.088155,0,0,OIF:SA:15:447,Europe/Paris,,OIF, +OIF:SP:15:448,1,"Centre Administratif",48.899743,2.083086,0,0,OIF:SA:15:184,Europe/Paris,,OIF, +OIF:SP:15:449,1,"Fourqueux",48.890409,2.080419,0,0,OIF:SA:15:207,Europe/Paris,,OIF, +OIF:SP:15:45,1,"Square de Monte Cristo",48.883868,2.103073,0,0,OIF:SA:15:45,Europe/Paris,,OIF, +OIF:SP:15:450,1,"Gambetta",48.89601,2.098575,0,0,OIF:SA:15:450,Europe/Paris,,OIF, +OIF:SP:15:453,1,"Planche",48.885658,2.090309,0,0,OIF:SA:15:453,Europe/Paris,,OIF, +OIF:SP:15:454,1,"Planche",48.88546,2.090392,0,0,OIF:SA:15:453,Europe/Paris,,OIF, +OIF:SP:15:455,1,"Rue de Port Marly",48.884095,2.086419,0,0,OIF:SA:15:455,Europe/Paris,,OIF, +OIF:SP:15:456,1,"Rue de Port Marly",48.884076,2.086324,0,0,OIF:SA:15:455,Europe/Paris,,OIF, +OIF:SP:15:457,1,"Verger",48.882486,2.082257,0,0,OIF:SA:15:457,Europe/Paris,,OIF, +OIF:SP:15:458,1,"Verger",48.882423,2.082257,0,0,OIF:SA:15:457,Europe/Paris,,OIF, +OIF:SP:15:459,1,"Gare SNCF",48.881761,2.079617,0,0,OIF:SA:8738281,Europe/Paris,,OIF, +OIF:SP:15:46,1,"Square de Monte Cristo",48.884029,2.102704,0,0,OIF:SA:15:45,Europe/Paris,,OIF, +OIF:SP:15:460,1,"Gare SNCF",48.881762,2.079672,0,0,OIF:SA:8738281,Europe/Paris,,OIF, +OIF:SP:15:461,1,"Les Closeaux",48.886583,2.077617,0,0,OIF:SA:15:461,Europe/Paris,,OIF, +OIF:SP:15:462,1,"Lavoir",48.884311,2.074262,0,0,OIF:SA:15:462,Europe/Paris,,OIF, +OIF:SP:15:463,1,"Couture",48.885413,2.072512,0,0,OIF:SA:15:463,Europe/Paris,,OIF, +OIF:SP:15:464,1,"Georges Sand",48.883238,2.068408,0,0,OIF:SA:15:464,Europe/Paris,,OIF, +OIF:SP:15:465,1,"Poney Club",48.889526,2.063456,0,0,OIF:SA:15:465,Europe/Paris,,OIF, +OIF:SP:15:467,1,"Val Fleuri",48.892539,2.06025,0,0,OIF:SA:15:169,Europe/Paris,,OIF, +OIF:SP:15:468,1,"Clos Baron",48.888711,2.06838,0,0,OIF:SA:15:232,Europe/Paris,,OIF, +OIF:SP:15:469,1,"Basses Auges",48.884831,2.065797,0,0,OIF:SA:15:469,Europe/Paris,,OIF, +OIF:SP:15:47,1,"Square de Versailles",48.880312,2.104833,0,0,OIF:SA:15:47,Europe/Paris,,OIF, +OIF:SP:15:470,1,"Mairie",48.882304,2.076957,0,0,OIF:SA:15:470,Europe/Paris,,OIF, +OIF:SP:15:471,1,"Mairie",48.882277,2.076985,0,0,OIF:SA:15:470,Europe/Paris,,OIF, +OIF:SP:15:472,1,"Giraud Teulon",48.893,2.099284,0,0,OIF:SA:15:396,Europe/Paris,,OIF, +OIF:SP:15:473,1,"Place Sainte-Catherine",48.893609,2.08471,0,0,OIF:SA:15:220,Europe/Paris,,OIF, +OIF:SP:15:474,1,"Place Sainte-Catherine",48.894246,2.084203,0,0,OIF:SA:15:220,Europe/Paris,,OIF, +OIF:SP:15:475,1,"Mairie",48.890706,2.064458,0,0,OIF:SA:15:166,Europe/Paris,,OIF, +OIF:SP:15:476,1,"Bergette",48.897528,2.080725,0,0,OIF:SA:15:476,Europe/Paris,,OIF, +OIF:SP:15:477,1,"République",48.898119,2.092908,0,0,OIF:SA:15:477,Europe/Paris,,OIF, +OIF:SP:15:478,1,"République",48.89811,2.092635,0,0,OIF:SA:15:477,Europe/Paris,,OIF, +OIF:SP:15:479,1,"Rue de Seine",48.902799,2.114534,0,0,OIF:SA:15:415,Europe/Paris,,OIF, +OIF:SP:15:48,1,"Square de Versailles",48.880312,2.104479,0,0,OIF:SA:15:47,Europe/Paris,,OIF, +OIF:SP:15:49,1,"Le Verger Saint-Exupéry",48.87911,2.101105,0,0,OIF:SA:15:49,Europe/Paris,,OIF, +OIF:SP:15:5,1,"Mairie",48.897904,2.106854,0,0,OIF:SA:15:240,Europe/Paris,,OIF, +OIF:SP:15:50,1,"Le Verger Saint-Exupéry",48.879352,2.1009,0,0,OIF:SA:15:49,Europe/Paris,,OIF, +OIF:SP:15:51,1,"Gare SNCF",48.871264,2.096863,0,0,OIF:SA:8738246,Europe/Paris,,OIF, +OIF:SP:15:52,1,"Gare SNCF",48.871057,2.096809,0,0,OIF:SA:8738246,Europe/Paris,,OIF, +OIF:SP:15:535,1,"Renaissance",48.911983,2.036272,0,0,OIF:SA:15:535,Europe/Paris,,OIF, +OIF:SP:15:536,1,"Renaissance",48.911486,2.038797,0,0,OIF:SA:15:535,Europe/Paris,,OIF, +OIF:SP:15:537,1,"Gare SNCF RER A",48.932495,2.041254,0,0,OIF:SA:8738657,Europe/Paris,,OIF, +OIF:SP:15:538,1,"Gare SNCF",48.871238,2.097026,0,0,OIF:SA:8738246,Europe/Paris,,OIF, +OIF:SP:15:55,1,"Mairie",48.868307,2.096672,0,0,OIF:SA:15:55,Europe/Paris,,OIF, +OIF:SP:15:551,1,"Jacques Cartier",48.899589,2.113839,0,0,OIF:SA:15:416,Europe/Paris,,OIF, +OIF:SP:15:552,1,"Jean Moulin",48.917931,2.039415,0,0,OIF:SA:15:552,Europe/Paris,,OIF, +OIF:SP:15:553,1,"Jean Moulin",48.917024,2.039529,0,0,OIF:SA:15:552,Europe/Paris,,OIF, +OIF:SP:15:554,1,"Cimetière",48.926705,2.040305,0,0,OIF:SA:15:554,Europe/Paris,,OIF, +OIF:SP:15:555,1,"Cimetière",48.926704,2.039882,0,0,OIF:SA:15:554,Europe/Paris,,OIF, +OIF:SP:15:57,1,"Les Ombrages",48.869146,2.089475,0,0,OIF:SA:15:57,Europe/Paris,,OIF, +OIF:SP:15:58,1,"Piscine",48.871859,2.093304,0,0,OIF:SA:15:58,Europe/Paris,,OIF, +OIF:SP:15:59,1,"Piscine",48.871643,2.093196,0,0,OIF:SA:15:58,Europe/Paris,,OIF, +OIF:SP:15:6,1,"Brossolette",48.895026,2.105531,0,0,OIF:SA:15:6,Europe/Paris,,OIF, +OIF:SP:15:60,1,"Noyer Garenne",48.872289,2.088207,0,0,OIF:SA:15:356,Europe/Paris,,OIF, +OIF:SP:15:61,1,"Noyer Garenne",48.871991,2.087309,0,0,OIF:SA:15:356,Europe/Paris,,OIF, +OIF:SP:15:62,1,"Bellevue",48.872941,2.086269,0,0,OIF:SA:15:62,Europe/Paris,,OIF, +OIF:SP:15:63,1,"Gaillon",48.874326,2.082311,0,0,OIF:SA:15:63,Europe/Paris,,OIF, +OIF:SP:15:64,1,"Les Poteries",48.873727,2.084058,0,0,OIF:SA:15:64,Europe/Paris,,OIF, +OIF:SP:15:65,1,"La Sabotte",48.876934,2.083443,0,0,OIF:SA:15:65,Europe/Paris,,OIF, +OIF:SP:15:66,1,"Les Bas Picards",48.877612,2.084979,0,0,OIF:SA:15:66,Europe/Paris,,OIF, +OIF:SP:15:67,1,"Mareil Montval",48.876071,2.087235,0,0,OIF:SA:15:67,Europe/Paris,,OIF, +OIF:SP:15:68,1,"Le Galion",48.87685,2.094834,0,0,OIF:SA:15:68,Europe/Paris,,OIF, +OIF:SP:15:69,1,"Le Galion",48.876707,2.094998,0,0,OIF:SA:15:68,Europe/Paris,,OIF, +OIF:SP:15:7,1,"Brossolette",48.895296,2.105966,0,0,OIF:SA:15:6,Europe/Paris,,OIF, +OIF:SP:15:75,1,"Les Glaises",48.876616,2.090175,0,0,OIF:SA:15:75,Europe/Paris,,OIF, +OIF:SP:15:76,1,"Sablons Jean.Vilar",48.876441,2.096852,0,0,OIF:SA:15:200,Europe/Paris,,OIF, +OIF:SP:15:77,1,"Clos des Epines",48.87481,2.099285,0,0,OIF:SA:15:437,Europe/Paris,,OIF, +OIF:SP:15:79,1,"Gare RER A",48.899307,2.093529,0,0,OIF:SA:8775809,Europe/Paris,,OIF, +OIF:SP:15:8,1,"Jean Moulin",48.891726,2.104523,0,0,OIF:SA:15:8,Europe/Paris,,OIF, +OIF:SP:15:800,1,"Gaudines",48.892296,2.071919,0,0,OIF:SA:15:443,Europe/Paris,,OIF, +OIF:SP:15:805,1,"Place des Victoires",48.898508,2.089526,0,0,OIF:SA:15:805,Europe/Paris,,OIF, +OIF:SP:15:81,1,"Vauillons",48.868111,2.101877,0,0,OIF:SA:15:81,Europe/Paris,,OIF, +OIF:SP:15:83,1,"Abreuvoir",48.867344,2.100341,0,0,OIF:SA:15:83,Europe/Paris,,OIF, +OIF:SP:15:84,1,"Valcort Maigrets",48.876865,2.088689,0,0,OIF:SA:15:84,Europe/Paris,,OIF, +OIF:SP:15:86,1,"La Linière",48.877914,2.08788,0,0,OIF:SA:15:86,Europe/Paris,,OIF, +OIF:SP:15:87,1,"Les Alizés",48.879592,2.090774,0,0,OIF:SA:15:87,Europe/Paris,,OIF, +OIF:SP:15:88,1,"La Frégate",48.879102,2.09282,0,0,OIF:SA:15:88,Europe/Paris,,OIF, +OIF:SP:15:9,1,"Jean Moulin",48.891572,2.104115,0,0,OIF:SA:15:8,Europe/Paris,,OIF, +OIF:SP:15:91,1,"Europe",48.878584,2.103342,0,0,OIF:SA:15:91,Europe/Paris,,OIF, +OIF:SP:15:92,1,"Bas des Ormes",48.875136,2.100687,0,0,OIF:SA:15:92,Europe/Paris,,OIF, +OIF:SP:15:93,1,"Saint-Fiacre",48.872829,2.10176,0,0,OIF:SA:15:93,Europe/Paris,,OIF, +OIF:SP:15:96,1,"Bas des Ormes",48.875316,2.100823,0,0,OIF:SA:15:92,Europe/Paris,,OIF, +OIF:SP:15:97,1,"Plains Champs",48.872585,2.110427,0,0,OIF:SA:15:256,Europe/Paris,,OIF, +OIF:SP:15:98,1,"Bois Joly",48.87341,2.104687,0,0,OIF:SA:15:98,Europe/Paris,,OIF, +OIF:SP:15:99,1,"Corbellerie",48.87426,2.102912,0,0,OIF:SA:15:99,Europe/Paris,,OIF, +OIF:SP:16:19001,1,"André Derain",48.900752,2.152508,0,0,OIF:SA:16:19001,Europe/Paris,,OIF, +OIF:SP:16:19002,1,"André Derain",48.900724,2.152222,0,0,OIF:SA:16:19001,Europe/Paris,,OIF, +OIF:SP:16:19004,1,"Aristide Briand",48.905578,2.146574,0,0,OIF:SA:16:19004,Europe/Paris,,OIF, +OIF:SP:16:19005,1,"Arsenal",48.922022,2.175847,0,0,OIF:SA:16:19005,Europe/Paris,,OIF, +OIF:SP:16:19006,1,"Augier",48.872292,2.137391,0,0,OIF:SA:16:19006,Europe/Paris,,OIF, +OIF:SP:16:19007,1,"Augier",48.872437,2.138003,0,0,OIF:SA:16:19006,Europe/Paris,,OIF, +OIF:SP:16:19008,1,"Belloy",48.901887,2.132424,0,0,OIF:SA:16:19008,Europe/Paris,,OIF, +OIF:SP:16:19009,1,"Belloy",48.90169,2.132533,0,0,OIF:SA:16:19008,Europe/Paris,,OIF, +OIF:SP:16:19010,1,"Bercail",48.905839,2.171003,0,0,OIF:SA:16:19010,Europe/Paris,,OIF, +OIF:SP:16:19011,1,"Salengro Péri",48.909737,2.119154,0,0,OIF:SA:16:19011,Europe/Paris,,OIF, +OIF:SP:16:19012,1,"Bercail",48.905758,2.171004,0,0,OIF:SA:16:19010,Europe/Paris,,OIF, +OIF:SP:16:19013,1,"Berges de Montesson",48.912041,2.121217,0,0,OIF:SA:16:19013,Europe/Paris,,OIF, +OIF:SP:16:19014,1,"Berges de Montesson",48.911898,2.121463,0,0,OIF:SA:16:19013,Europe/Paris,,OIF, +OIF:SP:16:19015,1,"Berthelot",48.895299,2.159874,0,0,OIF:SA:16:19015,Europe/Paris,,OIF, +OIF:SP:16:19016,1,"Poste",48.862841,2.139525,0,0,OIF:SA:16:19016,Europe/Paris,,OIF, +OIF:SP:16:19017,1,"Poste",48.863155,2.139632,0,0,OIF:SA:16:19016,Europe/Paris,,OIF, +OIF:SP:16:19018,1,"Buzenval",48.916157,2.178579,0,0,OIF:SA:16:19018,Europe/Paris,,OIF, +OIF:SP:16:19019,1,"Carrières Bellevue",48.899328,2.161591,0,0,OIF:SA:16:19019,Europe/Paris,,OIF, +OIF:SP:16:19020,1,"Carrières Bellevue",48.899472,2.161986,0,0,OIF:SA:16:19019,Europe/Paris,,OIF, +OIF:SP:16:19021,1,"Carnot",48.909804,2.179171,0,0,OIF:SA:16:19021,Europe/Paris,,OIF, +OIF:SP:16:19022,1,"Carnot",48.909679,2.179281,0,0,OIF:SA:16:19021,Europe/Paris,,OIF, +OIF:SP:16:19023,1,"Centre Commercial Carrefour",48.929556,2.143556,0,0,OIF:SA:16:19023,Europe/Paris,,OIF, +OIF:SP:16:19024,1,"Centre Commercial Carrefour",48.929767,2.144371,0,0,OIF:SA:16:19023,Europe/Paris,,OIF, +OIF:SP:16:19025,1,"Collège Pablo Picasso",48.910675,2.142056,0,0,OIF:SA:16:19025,Europe/Paris,,OIF, +OIF:SP:16:19026,1,"Collège Pablo Picasso",48.910495,2.142111,0,0,OIF:SA:16:19025,Europe/Paris,,OIF, +OIF:SP:16:19027,1,"Collège Auguste Renoir",48.902731,2.160053,0,0,OIF:SA:16:19027,Europe/Paris,,OIF, +OIF:SP:16:19028,1,"Collège Auguste Renoir",48.902489,2.159917,0,0,OIF:SA:16:19027,Europe/Paris,,OIF, +OIF:SP:16:19029,1,"Charmettes",48.902667,2.136183,0,0,OIF:SA:16:19029,Europe/Paris,,OIF, +OIF:SP:16:19030,1,"Charmettes",48.90246,2.136252,0,0,OIF:SA:16:19029,Europe/Paris,,OIF, +OIF:SP:16:19031,1,"Champs Roger",48.907133,2.155113,0,0,OIF:SA:16:19031,Europe/Paris,,OIF, +OIF:SP:16:19032,1,"Châtelet",48.894027,2.157111,0,0,OIF:SA:16:19032,Europe/Paris,,OIF, +OIF:SP:16:19033,1,"Châtelet",48.89383,2.157371,0,0,OIF:SA:16:19032,Europe/Paris,,OIF, +OIF:SP:16:19034,1,"Chemin de Fer Martin",48.857798,2.134068,0,0,OIF:SA:16:19034,Europe/Paris,,OIF, +OIF:SP:16:19035,1,"Chemin de Fer Martin",48.857701,2.135131,0,0,OIF:SA:16:19034,Europe/Paris,,OIF, +OIF:SP:16:19037,1,"Chemin de Ronde",48.876089,2.129678,0,0,OIF:SA:16:19037,Europe/Paris,,OIF, +OIF:SP:16:19038,1,"Cimetière Branly",48.894275,2.148551,0,0,OIF:SA:16:19038,Europe/Paris,,OIF, +OIF:SP:16:19039,1,"Cimetière Branly",48.894149,2.148674,0,0,OIF:SA:16:19038,Europe/Paris,,OIF, +OIF:SP:16:19040,1,"Cimetière",48.911698,2.146729,0,0,OIF:SA:16:19040,Europe/Paris,,OIF, +OIF:SP:16:19041,1,"Cimetière",48.912318,2.146426,0,0,OIF:SA:16:19040,Europe/Paris,,OIF, +OIF:SP:16:19042,1,"Claude Monet",48.855597,2.129378,0,0,OIF:SA:16:19042,Europe/Paris,,OIF, +OIF:SP:16:19043,1,"Collège des Amandiers",48.91226,2.195512,0,0,OIF:SA:16:19043,Europe/Paris,,OIF, +OIF:SP:16:19045,1,"Comsip",48.9055,2.115472,0,0,OIF:SA:16:19045,Europe/Paris,,OIF, +OIF:SP:16:19046,1,"Comsip",48.905273,2.115642,0,0,OIF:SA:16:19045,Europe/Paris,,OIF, +OIF:SP:16:19047,1,"Cormiers Ricard",48.898556,2.146694,0,0,OIF:SA:16:19047,Europe/Paris,,OIF, +OIF:SP:16:19048,1,"Cormiers Ricard",48.898109,2.146628,0,0,OIF:SA:16:19047,Europe/Paris,,OIF, +OIF:SP:16:19049,1,"Cormiers Ricard",48.898127,2.146233,0,0,OIF:SA:16:19047,Europe/Paris,,OIF, +OIF:SP:16:19050,1,"Cormeilles",48.909872,2.129324,0,0,OIF:SA:16:19050,Europe/Paris,,OIF, +OIF:SP:16:19051,1,"Cormeilles",48.909583,2.128753,0,0,OIF:SA:16:19050,Europe/Paris,,OIF, +OIF:SP:16:19053,1,"Crèche",48.881056,2.132901,0,0,OIF:SA:16:19053,Europe/Paris,,OIF, +OIF:SP:16:19054,1,"Cultures Lorraine",48.882604,2.124105,0,0,OIF:SA:16:19054,Europe/Paris,,OIF, +OIF:SP:16:19056,1,"Curie Pages",48.909791,2.134628,0,0,OIF:SA:16:19056,Europe/Paris,,OIF, +OIF:SP:16:19057,1,"Curie Pages",48.909638,2.134602,0,0,OIF:SA:16:19056,Europe/Paris,,OIF, +OIF:SP:16:19058,1,"Debussy",48.898035,2.1508,0,0,OIF:SA:16:19058,Europe/Paris,,OIF, +OIF:SP:16:19059,1,"Docteur Rochefort",48.89085,2.160025,0,0,OIF:SA:16:19059,Europe/Paris,,OIF, +OIF:SP:16:19060,1,"Place du Docteur Roux",48.900677,2.147746,0,0,OIF:SA:16:19060,Europe/Paris,,OIF, +OIF:SP:16:19061,1,"Place du Docteur Roux",48.900412,2.147724,0,0,OIF:SA:16:19060,Europe/Paris,,OIF, +OIF:SP:16:19062,1,"Église Notre-Dame",48.889277,2.159404,0,0,OIF:SA:16:19062,Europe/Paris,,OIF, +OIF:SP:16:19064,1,"Église",48.908986,2.14832,0,0,OIF:SA:16:19064,Europe/Paris,,OIF, +OIF:SP:16:19065,1,"Église",48.907685,2.149388,0,0,OIF:SA:16:19064,Europe/Paris,,OIF, +OIF:SP:16:19066,1,"Europe",48.905019,2.157223,0,0,OIF:SA:16:19066,Europe/Paris,,OIF, +OIF:SP:16:19067,1,"Ferdinand Buisson",48.927802,2.140859,0,0,OIF:SA:16:19067,Europe/Paris,,OIF, +OIF:SP:16:19068,1,"Ferdinand Buisson",48.92765,2.140996,0,0,OIF:SA:16:19067,Europe/Paris,,OIF, +OIF:SP:16:19069,1,"La Feuilleraie",48.859658,2.139237,0,0,OIF:SA:16:19069,Europe/Paris,,OIF, +OIF:SP:16:19070,1,"La Feuilleraie",48.86044,2.139275,0,0,OIF:SA:16:19069,Europe/Paris,,OIF, +OIF:SP:16:19072,1,"Gabillons",48.87941,2.131994,0,0,OIF:SA:16:19072,Europe/Paris,,OIF, +OIF:SP:16:19073,1,"Gambetta",48.897273,2.164025,0,0,OIF:SA:16:19073,Europe/Paris,,OIF, +OIF:SP:16:19074,1,"Gandillet",48.917222,2.181576,0,0,OIF:SA:16:19074,Europe/Paris,,OIF, +OIF:SP:16:19075,1,"Gare de Chatou Croissy",48.885371,2.155819,0,0,OIF:SA:8775806,Europe/Paris,,OIF, +OIF:SP:16:19076,1,"Gare de Chatou Croissy",48.88538,2.155738,0,0,OIF:SA:8775806,Europe/Paris,,OIF, +OIF:SP:16:19077,1,"Gare de Chatou Croissy",48.88538,2.155642,0,0,OIF:SA:8775806,Europe/Paris,,OIF, +OIF:SP:16:19078,1,"Gare de Chatou Croissy",48.885099,2.154567,0,0,OIF:SA:8775806,Europe/Paris,,OIF, +OIF:SP:16:19079,1,"Gare de Houilles Carrières sur Seine",48.919465,2.185824,0,0,OIF:SA:8738640,Europe/Paris,,OIF, +OIF:SP:16:19083,1,"Gare du Vésinet le Pecq",48.898157,2.121683,0,0,OIF:SA:8775808,Europe/Paris,,OIF, +OIF:SP:16:19084,1,"Gare du Vésinet le Pecq",48.897871,2.122857,0,0,OIF:SA:8775808,Europe/Paris,,OIF, +OIF:SP:16:19085,1,"Gare de la Celle Saint-Cloud",48.843569,2.138413,0,0,OIF:SA:8738243,Europe/Paris,,OIF, +OIF:SP:16:19086,1,"Gare de Sartrouville",48.937921,2.157723,0,0,OIF:SA:8738641,Europe/Paris,,OIF, +OIF:SP:16:19087,1,"Gare du Vésinet Centre",48.889893,2.134488,0,0,OIF:SA:8775807,Europe/Paris,,OIF, +OIF:SP:16:19089,1,"Général Leclerc",48.909801,2.176717,0,0,OIF:SA:16:19089,Europe/Paris,,OIF, +OIF:SP:16:19090,1,"Général Leclerc",48.909792,2.176949,0,0,OIF:SA:16:19089,Europe/Paris,,OIF, +OIF:SP:16:19091,1,"Grande Rue",48.912282,2.17735,0,0,OIF:SA:16:19091,Europe/Paris,,OIF, +OIF:SP:16:19092,1,"Grande Rue",48.911734,2.177025,0,0,OIF:SA:16:19091,Europe/Paris,,OIF, +OIF:SP:16:19093,1,"Grandes Terres",48.848682,2.132306,0,0,OIF:SA:16:19093,Europe/Paris,,OIF, +OIF:SP:16:19095,1,"Les Gressets",48.851385,2.130866,0,0,OIF:SA:16:19095,Europe/Paris,,OIF, +OIF:SP:16:19096,1,"Les Gressets",48.851403,2.130975,0,0,OIF:SA:16:19095,Europe/Paris,,OIF, +OIF:SP:16:19097,1,"Guibert",48.845196,2.132729,0,0,OIF:SA:16:19097,Europe/Paris,,OIF, +OIF:SP:16:19098,1,"Guibert",48.845411,2.132742,0,0,OIF:SA:16:19097,Europe/Paris,,OIF, +OIF:SP:16:19099,1,"Hameau de Palfour",48.907449,2.116328,0,0,OIF:SA:16:19099,Europe/Paris,,OIF, +OIF:SP:16:19100,1,"Hameau de Palfour",48.90735,2.116546,0,0,OIF:SA:16:19099,Europe/Paris,,OIF, +OIF:SP:16:19101,1,"Hôtel de Ville",48.894082,2.134894,0,0,OIF:SA:16:19101,Europe/Paris,,OIF, +OIF:SP:16:19102,1,"Hôtel de Ville",48.893902,2.134813,0,0,OIF:SA:16:19101,Europe/Paris,,OIF, +OIF:SP:16:19103,1,"Les Ibis",48.895872,2.125496,0,0,OIF:SA:16:19103,Europe/Paris,,OIF, +OIF:SP:16:19104,1,"Les Ibis",48.895728,2.125387,0,0,OIF:SA:16:19103,Europe/Paris,,OIF, +OIF:SP:16:19105,1,"Île Verte",48.895933,2.163334,0,0,OIF:SA:16:19105,Europe/Paris,,OIF, +OIF:SP:16:19108,1,"Inserm",48.879211,2.126381,0,0,OIF:SA:16:19108,Europe/Paris,,OIF, +OIF:SP:16:19109,1,"Jacques Cartier",48.899361,2.113611,0,0,OIF:SA:15:416,Europe/Paris,,OIF, +OIF:SP:16:19110,1,"Jacques Cartier",48.899886,2.113988,0,0,OIF:SA:15:416,Europe/Paris,,OIF, +OIF:SP:16:19111,1,"Jardins Sportifs",48.910108,2.184883,0,0,OIF:SA:16:19111,Europe/Paris,,OIF, +OIF:SP:16:19112,1,"Jardins Sportifs",48.909929,2.185006,0,0,OIF:SA:16:19111,Europe/Paris,,OIF, +OIF:SP:16:19113,1,"Jaurès Renoir",48.901146,2.163412,0,0,OIF:SA:16:19113,Europe/Paris,,OIF, +OIF:SP:16:19114,1,"Auguste Renoir",48.90171,2.162442,0,0,OIF:SA:16:19113,Europe/Paris,,OIF, +OIF:SP:16:19115,1,"Jean Macé",48.911852,2.153204,0,0,OIF:SA:16:19115,Europe/Paris,,OIF, +OIF:SP:16:19116,1,"Jean Jaurès",48.90092,2.16299,0,0,OIF:SA:16:19116,Europe/Paris,,OIF, +OIF:SP:16:19117,1,"Jean Jaurès",48.901028,2.162922,0,0,OIF:SA:16:19116,Europe/Paris,,OIF, +OIF:SP:16:19118,1,"Jean Jaurès",48.89792,2.110139,0,0,OIF:SA:15:3,Europe/Paris,,OIF, +OIF:SP:16:19119,1,"Jean Jaurès",48.897785,2.11018,0,0,OIF:SA:15:3,Europe/Paris,,OIF, +OIF:SP:16:19120,1,"Jules Ferry",48.904278,2.142278,0,0,OIF:SA:16:19120,Europe/Paris,,OIF, +OIF:SP:16:19121,1,"Jules Ferry",48.904106,2.14223,0,0,OIF:SA:16:19120,Europe/Paris,,OIF, +OIF:SP:16:19124,1,"Landes Sabinettes",48.898913,2.143586,0,0,OIF:SA:16:19124,Europe/Paris,,OIF, +OIF:SP:16:19125,1,"Landes Sabinettes",48.898877,2.143259,0,0,OIF:SA:16:19124,Europe/Paris,,OIF, +OIF:SP:16:19126,1,"Landes Stade",48.900789,2.142066,0,0,OIF:SA:16:19126,Europe/Paris,,OIF, +OIF:SP:16:19127,1,"Landes Stade",48.900753,2.141916,0,0,OIF:SA:16:19126,Europe/Paris,,OIF, +OIF:SP:16:19128,1,"Landes Vésinet",48.902979,2.139985,0,0,OIF:SA:16:19128,Europe/Paris,,OIF, +OIF:SP:16:19129,1,"Landes Vésinet",48.903005,2.139576,0,0,OIF:SA:16:19128,Europe/Paris,,OIF, +OIF:SP:16:19130,1,"La Tour",48.912602,2.14997,0,0,OIF:SA:16:19130,Europe/Paris,,OIF, +OIF:SP:16:19131,1,"Général Leclerc",48.90893,2.152424,0,0,OIF:SA:16:19131,Europe/Paris,,OIF, +OIF:SP:16:19132,1,"Leclerc République",48.896187,2.153001,0,0,OIF:SA:16:19132,Europe/Paris,,OIF, +OIF:SP:16:19133,1,"Lycée Evariste Galois",48.928351,2.16418,0,0,OIF:SA:16:19133,Europe/Paris,,OIF, +OIF:SP:16:19134,1,"Lycée les Pierres Vives",48.914701,2.171384,0,0,OIF:SA:16:19134,Europe/Paris,,OIF, +OIF:SP:16:19136,1,"Maurice de Vlaminck",48.902539,2.151711,0,0,OIF:SA:16:19136,Europe/Paris,,OIF, +OIF:SP:16:19137,1,"Maurice de Vlaminck",48.90245,2.152079,0,0,OIF:SA:16:19136,Europe/Paris,,OIF, +OIF:SP:16:19138,1,"Maisons République",48.899073,2.153495,0,0,OIF:SA:16:19138,Europe/Paris,,OIF, +OIF:SP:16:19139,1,"Maisons République",48.899001,2.153345,0,0,OIF:SA:16:19138,Europe/Paris,,OIF, +OIF:SP:16:19140,1,"Hôtel de Ville",48.846899,2.135309,0,0,OIF:SA:16:19140,Europe/Paris,,OIF, +OIF:SP:16:19142,1,"Marolles Bouvets",48.900598,2.157879,0,0,OIF:SA:16:19142,Europe/Paris,,OIF, +OIF:SP:16:19143,1,"Marolles Bouvets",48.900779,2.158601,0,0,OIF:SA:16:19142,Europe/Paris,,OIF, +OIF:SP:16:19144,1,"Mairie",48.889391,2.158,0,0,OIF:SA:16:19144,Europe/Paris,,OIF, +OIF:SP:16:19145,1,"Maréchal",48.907237,2.17468,0,0,OIF:SA:16:19145,Europe/Paris,,OIF, +OIF:SP:16:19146,1,"Maréchal",48.907057,2.174885,0,0,OIF:SA:16:19145,Europe/Paris,,OIF, +OIF:SP:16:19147,1,"Maurice Berteaux",48.887563,2.155103,0,0,OIF:SA:16:19147,Europe/Paris,,OIF, +OIF:SP:16:19148,1,"Maurice Hardouin",48.895951,2.1575,0,0,OIF:SA:16:19148,Europe/Paris,,OIF, +OIF:SP:16:19149,1,"Maurice Hardouin",48.895852,2.157309,0,0,OIF:SA:16:19148,Europe/Paris,,OIF, +OIF:SP:16:19150,1,"Maupassant",48.90295,2.156003,0,0,OIF:SA:16:19150,Europe/Paris,,OIF, +OIF:SP:16:19151,1,"Maupassant",48.90313,2.15633,0,0,OIF:SA:16:19150,Europe/Paris,,OIF, +OIF:SP:16:19152,1,"Mayoly",48.90611,2.159932,0,0,OIF:SA:16:19152,Europe/Paris,,OIF, +OIF:SP:16:19154,1,"Merlettes Champs",48.903719,2.121019,0,0,OIF:SA:16:19153,Europe/Paris,,OIF, +OIF:SP:16:19155,1,"Merlettes Roosevelt",48.905637,2.123329,0,0,OIF:SA:16:19155,Europe/Paris,,OIF, +OIF:SP:16:19156,1,"Merlettes Roosevelt",48.904989,2.122636,0,0,OIF:SA:16:19155,Europe/Paris,,OIF, +OIF:SP:16:19157,1,"Merlettes Stade",48.906735,2.124388,0,0,OIF:SA:16:19157,Europe/Paris,,OIF, +OIF:SP:16:19158,1,"Merlettes Stade",48.906511,2.12458,0,0,OIF:SA:16:19157,Europe/Paris,,OIF, +OIF:SP:16:19161,1,"Monceau",48.904417,2.168083,0,0,OIF:SA:16:19161,Europe/Paris,,OIF, +OIF:SP:16:19162,1,"Monceau",48.904478,2.168309,0,0,OIF:SA:16:19161,Europe/Paris,,OIF, +OIF:SP:16:19163,1,"Claude Monet",48.899245,2.15419,0,0,OIF:SA:16:19163,Europe/Paris,,OIF, +OIF:SP:16:19164,1,"Claude Monet",48.899191,2.154394,0,0,OIF:SA:16:19163,Europe/Paris,,OIF, +OIF:SP:16:19165,1,"Montgolfier",48.931973,2.147186,0,0,OIF:SA:16:19165,Europe/Paris,,OIF, +OIF:SP:16:19166,1,"Montgolfier",48.931731,2.14746,0,0,OIF:SA:16:19165,Europe/Paris,,OIF, +OIF:SP:16:19167,1,"Le Montoir",48.910191,2.160137,0,0,OIF:SA:16:19167,Europe/Paris,,OIF, +OIF:SP:16:19168,1,"Le Montoir",48.90886,2.159446,0,0,OIF:SA:16:19167,Europe/Paris,,OIF, +OIF:SP:16:19169,1,"Les Moulins",48.875784,2.140552,0,0,OIF:SA:16:19169,Europe/Paris,,OIF, +OIF:SP:16:19170,1,"Les Moulins",48.87565,2.140879,0,0,OIF:SA:16:19169,Europe/Paris,,OIF, +OIF:SP:16:19171,1,"Patte d'Oie",48.878376,2.142995,0,0,OIF:SA:16:19171,Europe/Paris,,OIF, +OIF:SP:16:19172,1,"Patte d'Oie",48.878493,2.143076,0,0,OIF:SA:16:19171,Europe/Paris,,OIF, +OIF:SP:16:19173,1,"Émile Pathé",48.895061,2.151192,0,0,OIF:SA:16:19173,Europe/Paris,,OIF, +OIF:SP:16:19174,1,"Émile Pathé",48.89489,2.151111,0,0,OIF:SA:16:19173,Europe/Paris,,OIF, +OIF:SP:16:19175,1,"Pâtures",48.915334,2.19609,0,0,OIF:SA:16:19175,Europe/Paris,,OIF, +OIF:SP:16:19176,1,"Pâtures",48.915514,2.196267,0,0,OIF:SA:16:19175,Europe/Paris,,OIF, +OIF:SP:16:19177,1,"Paul Bert",48.890473,2.154234,0,0,OIF:SA:16:19177,Europe/Paris,,OIF, +OIF:SP:16:19178,1,"Paul Bert",48.890293,2.154071,0,0,OIF:SA:16:19177,Europe/Paris,,OIF, +OIF:SP:16:19179,1,"Pavillon Sully",48.896285,2.101395,0,0,OIF:SA:15:354,Europe/Paris,,OIF, +OIF:SP:16:19180,1,"Pavillon Sully",48.896205,2.101695,0,0,OIF:SA:15:354,Europe/Paris,,OIF, +OIF:SP:16:19181,1,"Péri Borde",48.921047,2.131734,0,0,OIF:SA:16:19181,Europe/Paris,,OIF, +OIF:SP:16:19182,1,"Péri Borde",48.921182,2.132088,0,0,OIF:SA:16:19181,Europe/Paris,,OIF, +OIF:SP:16:19183,1,"Petit Bois",48.916455,2.172729,0,0,OIF:SA:16:19183,Europe/Paris,,OIF, +OIF:SP:16:19184,1,"Petit Bois",48.914453,2.174685,0,0,OIF:SA:16:19183,Europe/Paris,,OIF, +OIF:SP:16:19185,1,"Gare de Bougival",48.854234,2.131249,0,0,OIF:SA:8738244,Europe/Paris,,OIF, +OIF:SP:16:19186,1,"Gare de Bougival",48.85425,2.130972,0,0,OIF:SA:8738244,Europe/Paris,,OIF, +OIF:SP:16:19187,1,"Gambetta",48.896171,2.098547,0,0,OIF:SA:15:37,Europe/Paris,,OIF, +OIF:SP:16:19188,1,"Place Royale",48.894669,2.097722,0,0,OIF:SA:15:37,Europe/Paris,,OIF, +OIF:SP:16:19189,1,"Pont de Bougival",48.867411,2.137028,0,0,OIF:SA:16:19189,Europe/Paris,,OIF, +OIF:SP:16:19190,1,"Pont de Bougival",48.867411,2.137273,0,0,OIF:SA:16:19189,Europe/Paris,,OIF, +OIF:SP:16:19191,1,"Pont du Pecq",48.897975,2.106349,0,0,OIF:SA:15:35,Europe/Paris,,OIF, +OIF:SP:16:19192,1,"Pont du Pecq",48.89785,2.106568,0,0,OIF:SA:15:35,Europe/Paris,,OIF, +OIF:SP:16:19193,1,"Les Portiques",48.901275,2.146049,0,0,OIF:SA:16:19193,Europe/Paris,,OIF, +OIF:SP:16:19194,1,"Pré d'Orient",48.847313,2.130419,0,0,OIF:SA:16:19194,Europe/Paris,,OIF, +OIF:SP:16:19195,1,"Pré d'Orient",48.847349,2.130555,0,0,OIF:SA:16:19194,Europe/Paris,,OIF, +OIF:SP:16:19196,1,"Princesse /Croissy",48.884191,2.132044,0,0,OIF:SA:16:19196,Europe/Paris,,OIF, +OIF:SP:16:19197,1,"Princesse / Croissy",48.884344,2.132493,0,0,OIF:SA:16:19196,Europe/Paris,,OIF, +OIF:SP:16:19198,1,"Princesse /Roosevelt",48.886388,2.134393,0,0,OIF:SA:16:19198,Europe/Paris,,OIF, +OIF:SP:16:19199,1,"Princesse /Roosevelt",48.886406,2.134624,0,0,OIF:SA:16:19198,Europe/Paris,,OIF, +OIF:SP:16:19200,1,"Poste",48.890603,2.156755,0,0,OIF:SA:16:19200,Europe/Paris,,OIF, +OIF:SP:16:19202,1,"République Leclerc",48.896861,2.152917,0,0,OIF:SA:16:19132,Europe/Paris,,OIF, +OIF:SP:16:19203,1,"République Leclerc",48.896502,2.153027,0,0,OIF:SA:16:19132,Europe/Paris,,OIF, +OIF:SP:16:19204,1,"République Pathé",48.893282,2.151376,0,0,OIF:SA:16:19204,Europe/Paris,,OIF, +OIF:SP:16:19205,1,"République Pathé",48.89329,2.151158,0,0,OIF:SA:16:19204,Europe/Paris,,OIF, +OIF:SP:16:19206,1,"République",48.897454,2.115798,0,0,OIF:SA:15:2,Europe/Paris,,OIF, +OIF:SP:16:19207,1,"République",48.898343,2.115521,0,0,OIF:SA:15:2,Europe/Paris,,OIF, +OIF:SP:16:19208,1,"République",48.897685,2.115576,0,0,OIF:SA:15:2,Europe/Paris,,OIF, +OIF:SP:16:19209,1,"Église Réveil Matin",48.91752,2.175998,0,0,OIF:SA:16:19209,Europe/Paris,,OIF, +OIF:SP:16:19210,1,"Ribot Barbier",48.902132,2.15009,0,0,OIF:SA:16:19210,Europe/Paris,,OIF, +OIF:SP:16:19211,1,"Ribot Barbier",48.901997,2.150172,0,0,OIF:SA:16:19210,Europe/Paris,,OIF, +OIF:SP:16:19212,1,"La Roseraie",48.879924,2.149475,0,0,OIF:SA:16:19212,Europe/Paris,,OIF, +OIF:SP:16:19213,1,"La Roseraie",48.879771,2.149353,0,0,OIF:SA:16:19212,Europe/Paris,,OIF, +OIF:SP:16:19214,1,"Rond-Point Royal",48.897624,2.135875,0,0,OIF:SA:16:19214,Europe/Paris,,OIF, +OIF:SP:16:19215,1,"Rond-Point Royal",48.897607,2.136148,0,0,OIF:SA:16:19214,Europe/Paris,,OIF, +OIF:SP:16:19217,1,"Rue du Port",48.889782,2.160915,0,0,OIF:SA:16:19217,Europe/Paris,,OIF, +OIF:SP:16:19218,1,"Rue de Seine",48.90288,2.11437,0,0,OIF:SA:15:415,Europe/Paris,,OIF, +OIF:SP:16:19219,1,"Rue de Seine",48.902791,2.11497,0,0,OIF:SA:15:415,Europe/Paris,,OIF, +OIF:SP:16:19220,1,"Sablons Darcis",48.910129,2.138022,0,0,OIF:SA:16:19220,Europe/Paris,,OIF, +OIF:SP:16:19221,1,"Sablons Darcis",48.910021,2.138036,0,0,OIF:SA:16:19220,Europe/Paris,,OIF, +OIF:SP:16:19222,1,"Salle des Fêtes",48.911544,2.183325,0,0,OIF:SA:16:19222,Europe/Paris,,OIF, +OIF:SP:16:19223,1,"Salle des Fêtes",48.911562,2.183134,0,0,OIF:SA:16:19222,Europe/Paris,,OIF, +OIF:SP:16:19224,1,"Salengro Merlettes",48.907654,2.125584,0,0,OIF:SA:16:19224,Europe/Paris,,OIF, +OIF:SP:16:19225,1,"Salengro Merlettes",48.907789,2.125788,0,0,OIF:SA:16:19224,Europe/Paris,,OIF, +OIF:SP:16:19226,1,"Salengro Péri",48.909827,2.119249,0,0,OIF:SA:16:19011,Europe/Paris,,OIF, +OIF:SP:16:19227,1,"Salengro Péri",48.909754,2.118854,0,0,OIF:SA:16:19011,Europe/Paris,,OIF, +OIF:SP:16:19228,1,"Sarrail Foch",48.889028,2.15567,0,0,OIF:SA:16:19228,Europe/Paris,,OIF, +OIF:SP:16:19230,1,"Irsn",48.877008,2.130737,0,0,OIF:SA:16:19230,Europe/Paris,,OIF, +OIF:SP:16:19231,1,"Sécurité Sociale",48.893733,2.158639,0,0,OIF:SA:16:19231,Europe/Paris,,OIF, +OIF:SP:16:19232,1,"Square de la Drionne",48.858256,2.138997,0,0,OIF:SA:16:19232,Europe/Paris,,OIF, +OIF:SP:16:19233,1,"Square de la Drionne",48.857958,2.138154,0,0,OIF:SA:16:19232,Europe/Paris,,OIF, +OIF:SP:16:19234,1,"Rue Thiers (Gare de Saint-Germain-en-Laye)",48.897452,2.096373,0,0,OIF:SA:8775809,Europe/Paris,,OIF, +OIF:SP:16:19235,1,"Sainte-Honorine",48.911508,2.157228,0,0,OIF:SA:16:19235,Europe/Paris,,OIF, +OIF:SP:16:19236,1,"Strasbourg",48.934245,2.151999,0,0,OIF:SA:16:19236,Europe/Paris,,OIF, +OIF:SP:16:19237,1,"Strasbourg",48.934931,2.153191,0,0,OIF:SA:16:19236,Europe/Paris,,OIF, +OIF:SP:16:19240,1,"Terres Blanches",48.908722,2.132333,0,0,OIF:SA:16:19240,Europe/Paris,,OIF, +OIF:SP:16:19241,1,"Terres Blanches",48.908722,2.132111,0,0,OIF:SA:16:19240,Europe/Paris,,OIF, +OIF:SP:16:19242,1,"Théophile Roussel",48.922261,2.132616,0,0,OIF:SA:16:19242,Europe/Paris,,OIF, +OIF:SP:16:19243,1,"Théophile Roussel",48.922514,2.133433,0,0,OIF:SA:16:19242,Europe/Paris,,OIF, +OIF:SP:16:19244,1,"Transformateur",48.900427,2.163469,0,0,OIF:SA:16:19244,Europe/Paris,,OIF, +OIF:SP:16:19245,1,"Transformateur",48.900247,2.163647,0,0,OIF:SA:16:19244,Europe/Paris,,OIF, +OIF:SP:16:19246,1,"Verdun",48.881208,2.143638,0,0,OIF:SA:16:19246,Europe/Paris,,OIF, +OIF:SP:16:19247,1,"Verdun",48.881056,2.143667,0,0,OIF:SA:16:19246,Europe/Paris,,OIF, +OIF:SP:16:19248,1,"Verdun École",48.884465,2.129671,0,0,OIF:SA:16:19248,Europe/Paris,,OIF, +OIF:SP:16:19249,1,"Verdun Regnault",48.884478,2.126673,0,0,OIF:SA:16:19249,Europe/Paris,,OIF, +OIF:SP:16:19251,1,"Victor Hugo",48.910834,2.151872,0,0,OIF:SA:16:19251,Europe/Paris,,OIF, +OIF:SP:16:19253,1,"Z.I. des Amandiers",48.912066,2.198185,0,0,OIF:SA:16:19253,Europe/Paris,,OIF, +OIF:SP:16:19255,1,"Meute",48.906573,2.128956,0,0,OIF:SA:16:19255,Europe/Paris,,OIF, +OIF:SP:16:19256,1,"Jules Ferry",48.904556,2.142692,0,0,OIF:SA:16:19120,Europe/Paris,,OIF, +OIF:SP:16:19257,1,"Hôtel de Ville",48.847233,2.136166,0,0,OIF:SA:16:19140,Europe/Paris,,OIF, +OIF:SP:16:19260,1,"Konica Jvc",48.910898,2.164415,0,0,OIF:SA:16:19260,Europe/Paris,,OIF, +OIF:SP:16:19262,1,"Konica Jvc",48.910583,2.164239,0,0,OIF:SA:16:19260,Europe/Paris,,OIF, +OIF:SP:16:19272,1,"Maison Fournaise",48.889461,2.162742,0,0,OIF:SA:16:19272,Europe/Paris,,OIF, +OIF:SP:16:19275,1,"Maison Fournaise",48.889326,2.162511,0,0,OIF:SA:16:19272,Europe/Paris,,OIF, +OIF:SP:16:19277,1,"EDF 2",48.891199,2.164849,0,0,OIF:SA:16:19277,Europe/Paris,,OIF, +OIF:SP:16:19281,1,"EDF 1",48.892773,2.166084,0,0,OIF:SA:16:19277,Europe/Paris,,OIF, +OIF:SP:16:19283,1,"Gare de Rueil Malmaison",48.88713,2.173189,0,0,OIF:SA:8775805,Europe/Paris,,OIF, +OIF:SP:16:19287,1,"Gare du Vésinet le Pecq Carnot",48.896682,2.121417,0,0,OIF:SA:8775808,Europe/Paris,,OIF, +OIF:SP:16:19288,1,"Gare du Vésinet le Pecq Carnot",48.896377,2.121418,0,0,OIF:SA:8775808,Europe/Paris,,OIF, +OIF:SP:16:19289,1,"Maréchal Juin",48.911333,2.18008,0,0,OIF:SA:16:19289,Europe/Paris,,OIF, +OIF:SP:16:19290,1,"Maréchal Juin",48.911378,2.179821,0,0,OIF:SA:16:19289,Europe/Paris,,OIF, +OIF:SP:16:19293,1,"Jules Ferry",48.847507,2.128416,0,0,OIF:SA:16:19293,Europe/Paris,,OIF, +OIF:SP:16:19300,1,"Montbuisson",48.86345,2.122931,0,0,OIF:SA:16:19300,Europe/Paris,,OIF, +OIF:SP:16:19302,1,"Montbuisson",48.863612,2.122903,0,0,OIF:SA:16:19300,Europe/Paris,,OIF, +OIF:SP:16:19304,1,"Gare de Louveciennes",48.86097,2.122995,0,0,OIF:SA:8738245,Europe/Paris,,OIF, +OIF:SP:16:19306,1,"Gare de Louveciennes",48.860844,2.12305,0,0,OIF:SA:8738245,Europe/Paris,,OIF, +OIF:SP:16:19308,1,"La Machine",48.864973,2.115623,0,0,OIF:SA:16:19308,Europe/Paris,,OIF, +OIF:SP:16:19309,1,"La Machine",48.864884,2.115719,0,0,OIF:SA:16:19308,Europe/Paris,,OIF, +OIF:SP:16:19310,1,"Voisins",48.86647,2.113151,0,0,OIF:SA:15:258,Europe/Paris,,OIF, +OIF:SP:16:19311,1,"Voisins",48.866874,2.112904,0,0,OIF:SA:15:258,Europe/Paris,,OIF, +OIF:SP:16:19314,1,"Les Murgets",48.85946,2.128518,0,0,OIF:SA:16:19314,Europe/Paris,,OIF, +OIF:SP:16:19316,1,"Les Murgets",48.859514,2.1286,0,0,OIF:SA:16:19314,Europe/Paris,,OIF, +OIF:SP:16:19323,1,"3 Forets",48.856369,2.128667,0,0,OIF:SA:16:19323,Europe/Paris,,OIF, +OIF:SP:16:19326,1,"Tournebride",48.854082,2.142255,0,0,OIF:SA:16:19326,Europe/Paris,,OIF, +OIF:SP:16:19327,1,"Tournebride",48.854172,2.142295,0,0,OIF:SA:16:19326,Europe/Paris,,OIF, +OIF:SP:16:19329,1,"Sablons",48.856738,2.144914,0,0,OIF:SA:16:19329,Europe/Paris,,OIF, +OIF:SP:16:19331,1,"Elysée",48.859406,2.149631,0,0,OIF:SA:16:19331,Europe/Paris,,OIF, +OIF:SP:16:19333,1,"Rousseau",48.861557,2.151544,0,0,OIF:SA:16:19333,Europe/Paris,,OIF, +OIF:SP:16:19334,1,"Saint-François",48.853289,2.146561,0,0,OIF:SA:16:19334,Europe/Paris,,OIF, +OIF:SP:16:19335,1,"Saint-François",48.853343,2.146697,0,0,OIF:SA:16:19334,Europe/Paris,,OIF, +OIF:SP:16:19337,1,"Vindé Berthet",48.849573,2.149707,0,0,OIF:SA:16:19337,Europe/Paris,,OIF, +OIF:SP:16:19338,1,"Vindé Berthet",48.849672,2.149734,0,0,OIF:SA:16:19337,Europe/Paris,,OIF, +OIF:SP:16:19340,1,"Notre-Dame",48.888478,2.160033,0,0,OIF:SA:16:19062,Europe/Paris,,OIF, +OIF:SP:16:19342,1,"Lycée Alain",48.891642,2.122092,0,0,OIF:SA:16:19342,Europe/Paris,,OIF, +OIF:SP:16:19343,1,"Lycée Alain",48.891813,2.122214,0,0,OIF:SA:16:19342,Europe/Paris,,OIF, +OIF:SP:16:19344,1,"Allée de la Gare",48.888934,2.125865,0,0,OIF:SA:16:19344,Europe/Paris,,OIF, +OIF:SP:16:19345,1,"Allée de la Gare",48.889069,2.125946,0,0,OIF:SA:16:19344,Europe/Paris,,OIF, +OIF:SP:16:19346,1,"Princesse / Croissy",48.884119,2.132344,0,0,OIF:SA:16:19196,Europe/Paris,,OIF, +OIF:SP:16:19348,1,"Passy Buzenval",48.859577,2.181285,0,0,OIF:SA:16:19348,Europe/Paris,,OIF, +OIF:SP:16:19349,1,"Madeleine Danielou",48.862251,2.171483,0,0,OIF:SA:16:19349,Europe/Paris,,OIF, +OIF:SP:16:19351,1,"Carrefour de la Croix",48.882618,2.137473,0,0,OIF:SA:16:19351,Europe/Paris,,OIF, +OIF:SP:16:19352,1,"Carrefour de la Croix",48.882771,2.137486,0,0,OIF:SA:16:19351,Europe/Paris,,OIF, +OIF:SP:16:19354,1,"Charmettes",48.903341,2.136126,0,0,OIF:SA:16:19029,Europe/Paris,,OIF, +OIF:SP:16:19355,1,"Belgique/Belloy",48.905086,2.126671,0,0,OIF:SA:16:19355,Europe/Paris,,OIF, +OIF:SP:16:19356,1,"Belgique/Belloy",48.904924,2.126727,0,0,OIF:SA:16:19355,Europe/Paris,,OIF, +OIF:SP:16:19357,1,"Acacias",48.904934,2.132207,0,0,OIF:SA:16:19357,Europe/Paris,,OIF, +OIF:SP:16:19358,1,"Acacias",48.904763,2.132221,0,0,OIF:SA:16:19357,Europe/Paris,,OIF, +OIF:SP:16:19362,1,"Commissariat",48.892435,2.144332,0,0,OIF:SA:16:19362,Europe/Paris,,OIF, +OIF:SP:16:19363,1,"Commissariat",48.892138,2.144197,0,0,OIF:SA:16:19362,Europe/Paris,,OIF, +OIF:SP:16:19364,1,"Butard",48.845499,2.147611,0,0,OIF:SA:16:19364,Europe/Paris,,OIF, +OIF:SP:16:19365,1,"Butard",48.845553,2.147979,0,0,OIF:SA:16:19364,Europe/Paris,,OIF, +OIF:SP:16:19366,1,"Blanche de Castille",48.829545,2.130953,0,0,OIF:SA:16:19366,Europe/Paris,,OIF, +OIF:SP:16:19368,1,"Annexe Pasteur",48.819984,2.132352,0,0,OIF:SA:16:19368,Europe/Paris,,OIF, +OIF:SP:16:19369,1,"Piscine de Carrières",48.917527,2.174975,0,0,OIF:SA:16:19209,Europe/Paris,,OIF, +OIF:SP:16:19372,1,"Croissy Aligre",48.896752,2.115364,0,0,OIF:SA:16:19372,Europe/Paris,,OIF, +OIF:SP:16:19373,1,"Croissy Aligre",48.896833,2.115405,0,0,OIF:SA:16:19372,Europe/Paris,,OIF, +OIF:SP:16:19381,1,"Maisons Vlaminck",48.902324,2.15182,0,0,OIF:SA:16:19136,Europe/Paris,,OIF, +OIF:SP:16:19382,1,"Maurice de Vlaminck",48.902674,2.151874,0,0,OIF:SA:16:19136,Europe/Paris,,OIF, +OIF:SP:16:19383,1,"Poste du Vésinet",48.894901,2.135681,0,0,OIF:SA:16:19101,Europe/Paris,,OIF, +OIF:SP:16:19388,1,"Les Plains Champs",48.872378,2.110182,0,0,OIF:SA:16:19388,Europe/Paris,,OIF, +OIF:SP:16:19389,1,"Les Plains Champs",48.871902,2.110443,0,0,OIF:SA:16:19388,Europe/Paris,,OIF, +OIF:SP:16:19391,1,"Marly Soleil",48.875069,2.102772,0,0,OIF:SA:16:19391,Europe/Paris,,OIF, +OIF:SP:16:19393,1,"Marly Soleil",48.875591,2.103206,0,0,OIF:SA:16:19391,Europe/Paris,,OIF, +OIF:SP:16:19395,1,"Saint-Fiacre",48.872829,2.10176,0,0,OIF:SA:16:19395,Europe/Paris,,OIF, +OIF:SP:16:19396,1,"Ancienne Mairie",48.879493,2.108843,0,0,OIF:SA:15:104,Europe/Paris,,OIF, +OIF:SP:16:19398,1,"Ancienne Mairie",48.879457,2.108543,0,0,OIF:SA:15:104,Europe/Paris,,OIF, +OIF:SP:16:19399,1,"Val André",48.8833,2.106918,0,0,OIF:SA:15:106,Europe/Paris,,OIF, +OIF:SP:16:19401,1,"Val André",48.883147,2.106578,0,0,OIF:SA:15:106,Europe/Paris,,OIF, +OIF:SP:16:19403,1,"Ermitage N13",48.886906,2.098971,0,0,OIF:SA:15:108,Europe/Paris,,OIF, +OIF:SP:16:19404,1,"Ermitage",48.887378,2.096352,0,0,OIF:SA:15:108,Europe/Paris,,OIF, +OIF:SP:16:19406,1,"Ermitage N13",48.886709,2.099217,0,0,OIF:SA:15:108,Europe/Paris,,OIF, +OIF:SP:16:19407,1,"Brossolette",48.895315,2.106347,0,0,OIF:SA:15:6,Europe/Paris,,OIF, +OIF:SP:16:19408,1,"Brossolette",48.895205,2.105394,0,0,OIF:SA:15:6,Europe/Paris,,OIF, +OIF:SP:16:19409,1,"Jean Moulin",48.891662,2.104183,0,0,OIF:SA:15:8,Europe/Paris,,OIF, +OIF:SP:16:19410,1,"Jean Moulin",48.891851,2.104509,0,0,OIF:SA:15:8,Europe/Paris,,OIF, +OIF:SP:16:19411,1,"Schnapper",48.887651,2.093611,0,0,OIF:SA:15:202,Europe/Paris,,OIF, +OIF:SP:16:19412,1,"Schnapper",48.887525,2.093598,0,0,OIF:SA:15:202,Europe/Paris,,OIF, +OIF:SP:16:19414,1,"Feuillencourt",48.890362,2.088133,0,0,OIF:SA:16:19414,Europe/Paris,,OIF, +OIF:SP:16:19415,1,"Feuillencourt",48.890353,2.088093,0,0,OIF:SA:16:19414,Europe/Paris,,OIF, +OIF:SP:16:19416,1,"Ermitage",48.887341,2.09627,0,0,OIF:SA:15:108,Europe/Paris,,OIF, +OIF:SP:16:19417,1,"Prieuré",48.892971,2.08515,0,0,OIF:SA:16:19417,Europe/Paris,,OIF, +OIF:SP:16:19418,1,"Prieuré",48.892881,2.085109,0,0,OIF:SA:16:19417,Europe/Paris,,OIF, +OIF:SP:16:19419,1,"Nicot (Institut Notre-Dame)",48.89465,2.075873,0,0,OIF:SA:15:210,Europe/Paris,,OIF, +OIF:SP:16:19420,1,"Nicot (Institut Notre-Dame)",48.894551,2.075914,0,0,OIF:SA:15:210,Europe/Paris,,OIF, +OIF:SP:16:19421,1,"Verdi",48.894293,2.064739,0,0,OIF:SA:15:145,Europe/Paris,,OIF, +OIF:SP:16:19422,1,"Lycée de Vinci (Collège des Hauts Grillets)",48.891991,2.064506,0,0,OIF:SA:16:19422,Europe/Paris,,OIF, +OIF:SP:16:19423,1,"Lycée International",48.898259,2.062292,0,0,OIF:SA:15:351,Europe/Paris,,OIF, +OIF:SP:16:19427,1,"Vignes Blanches",48.909603,2.176513,0,0,OIF:SA:16:19089,Europe/Paris,,OIF, +OIF:SP:16:19428,1,"Princesse / Croissy",48.884075,2.132398,0,0,OIF:SA:16:19196,Europe/Paris,,OIF, +OIF:SP:16:19429,1,"Émile Thiebaut",48.891637,2.129329,0,0,OIF:SA:16:19429,Europe/Paris,,OIF, +OIF:SP:16:19430,1,"Émile Thiebaut",48.891546,2.129166,0,0,OIF:SA:16:19429,Europe/Paris,,OIF, +OIF:SP:16:19431,1,"Gare du Vésinet Centre",48.890028,2.134419,0,0,OIF:SA:8775807,Europe/Paris,,OIF, +OIF:SP:16:19432,1,"La Chapelle",48.878041,2.152575,0,0,OIF:SA:16:19432,Europe/Paris,,OIF, +OIF:SP:16:19435,1,"La Défense Terminal Jules Verne",48.891429,2.242468,0,0,OIF:SA:16:19435,Europe/Paris,,OIF, +OIF:SP:16:19437,1,"Colombia",48.933921,2.256208,0,0,OIF:SA:16:19437,Europe/Paris,,OIF, +OIF:SP:16:19439,1,"Jaurès",48.934759,2.259562,0,0,OIF:SA:16:19439,Europe/Paris,,OIF, +OIF:SP:16:19440,1,"Stalingrad",48.93511,2.259193,0,0,OIF:SA:16:19440,Europe/Paris,,OIF, +OIF:SP:16:19441,1,"Valmy",48.934524,2.256807,0,0,OIF:SA:16:19441,Europe/Paris,,OIF, +OIF:SP:16:19442,1,"Kléber",48.934091,2.254557,0,0,OIF:SA:16:19442,Europe/Paris,,OIF, +OIF:SP:16:19443,1,"Louis Séguin",48.933694,2.252621,0,0,OIF:SA:16:19443,Europe/Paris,,OIF, +OIF:SP:16:19444,1,"Aristide Briand",48.905929,2.147118,0,0,OIF:SA:16:19004,Europe/Paris,,OIF, +OIF:SP:16:19445,1,"Champs Roger",48.907236,2.155075,0,0,OIF:SA:16:19031,Europe/Paris,,OIF, +OIF:SP:16:19446,1,"Le Montoir",48.908814,2.159173,0,0,OIF:SA:16:19167,Europe/Paris,,OIF, +OIF:SP:16:19447,1,"Cimetière",48.911761,2.146565,0,0,OIF:SA:16:19040,Europe/Paris,,OIF, +OIF:SP:16:19448,1,"Salengro / Merlettes",48.907925,2.126333,0,0,OIF:SA:16:19224,Europe/Paris,,OIF, +OIF:SP:16:19449,1,"Salengro / Merlettes",48.907835,2.126456,0,0,OIF:SA:16:19224,Europe/Paris,,OIF, +OIF:SP:16:19451,1,"Aristide Briand",48.905757,2.146614,0,0,OIF:SA:16:19004,Europe/Paris,,OIF, +OIF:SP:16:19453,1,"Jean Macé",48.911717,2.153137,0,0,OIF:SA:16:19115,Europe/Paris,,OIF, +OIF:SP:16:19454,1,"Aristide Briand",48.905803,2.146723,0,0,OIF:SA:16:19004,Europe/Paris,,OIF, +OIF:SP:16:19455,1,"Saint-Honorine",48.911382,2.157324,0,0,OIF:SA:16:19235,Europe/Paris,,OIF, +OIF:SP:16:19456,1,"Salle des Fêtes",48.910654,2.182959,0,0,OIF:SA:16:19222,Europe/Paris,,OIF, +OIF:SP:16:19457,1,"Sécurité Sociale",48.893815,2.159102,0,0,OIF:SA:16:19231,Europe/Paris,,OIF, +OIF:SP:16:19459,1,"Hôtel de Ville",48.848079,2.136912,0,0,OIF:SA:16:19140,Europe/Paris,,OIF, +OIF:SP:16:19460,1,"Le Bourg",48.851448,2.141761,0,0,OIF:SA:16:19460,Europe/Paris,,OIF, +OIF:SP:16:19461,1,"Le Bourg",48.851501,2.141338,0,0,OIF:SA:16:19460,Europe/Paris,,OIF, +OIF:SP:16:19462,1,"Gare de Sartrouville",48.937312,2.159116,0,0,OIF:SA:8738641,Europe/Paris,,OIF, +OIF:SP:16:19463,1,"Princesse / Croissy",48.884479,2.132124,0,0,OIF:SA:16:19196,Europe/Paris,,OIF, +OIF:SP:16:19464,1,"Mairie",48.889149,2.158096,0,0,OIF:SA:16:19144,Europe/Paris,,OIF, +OIF:SP:16:19465,1,"Mairie",48.897617,2.106746,0,0,OIF:SA:15:240,Europe/Paris,,OIF, +OIF:SP:16:19466,1,"Grande Terre",48.848727,2.132511,0,0,OIF:SA:16:19093,Europe/Paris,,OIF, +OIF:SP:16:19470,1,"Gare de Houilles Carrières sur Seine",48.919438,2.185879,0,0,OIF:SA:8738640,Europe/Paris,,OIF, +OIF:SP:16:19471,1,"Gare de Chatou Croissy",48.885406,2.15552,0,0,OIF:SA:8775806,Europe/Paris,,OIF, +OIF:SP:16:19472,1,"Gare du Vésinet le Pecq",48.897844,2.122857,0,0,OIF:SA:8775808,Europe/Paris,,OIF, +OIF:SP:16:19473,1,"Gare du Vésinet le Pecq",48.898247,2.121628,0,0,OIF:SA:8775808,Europe/Paris,,OIF, +OIF:SP:16:19474,1,"Gare de Chatou Croissy",48.885144,2.154457,0,0,OIF:SA:8775806,Europe/Paris,,OIF, +OIF:SP:16:19475,1,"Salle des Fêtes",48.910627,2.182768,0,0,OIF:SA:16:19222,Europe/Paris,,OIF, +OIF:SP:16:19478,1,"Rue Thiers (Gare de Saint-Germain-en-Laye)",48.897488,2.096387,0,0,OIF:SA:8775809,Europe/Paris,,OIF, +OIF:SP:16:19489,1,"Pierre Corneille",48.846371,2.137123,0,0,OIF:SA:16:19140,Europe/Paris,,OIF, +OIF:SP:16:19490,1,"Cimetière",48.91168,2.146565,0,0,OIF:SA:16:19040,Europe/Paris,,OIF, +OIF:SP:16:19491,1,"3 Buttes",48.90968,2.187339,0,0,OIF:SA:16:19491,Europe/Paris,,OIF, +OIF:SP:16:19492,1,"3 Buttes",48.909635,2.187257,0,0,OIF:SA:16:19491,Europe/Paris,,OIF, +OIF:SP:16:19493,1,"Montesson Poste",48.906168,2.150334,0,0,OIF:SA:16:19493,Europe/Paris,,OIF, +OIF:SP:16:19494,1,"Montesson Poste",48.90607,2.15088,0,0,OIF:SA:16:19493,Europe/Paris,,OIF, +OIF:SP:16:19495,1,"Maurice Berteaux",48.914188,2.184748,0,0,OIF:SA:16:19495,Europe/Paris,,OIF, +OIF:SP:16:19496,1,"Maurice Berteaux",48.91426,2.184489,0,0,OIF:SA:16:19495,Europe/Paris,,OIF, +OIF:SP:16:19497,1,"Les Portiques",48.901433,2.145539,0,0,OIF:SA:16:19193,Europe/Paris,,OIF, +OIF:SP:16:19506,1,"Martyrs",48.936191,2.186675,0,0,OIF:SA:16:19506,Europe/Paris,,OIF, +OIF:SP:16:19508,1,"Écoles",48.934806,2.186216,0,0,OIF:SA:16:19508,Europe/Paris,,OIF, +OIF:SP:16:19510,1,"Écoles",48.934788,2.186338,0,0,OIF:SA:16:19508,Europe/Paris,,OIF, +OIF:SP:16:19513,1,"Cimetière",48.932683,2.184094,0,0,OIF:SA:16:19513,Europe/Paris,,OIF, +OIF:SP:16:19514,1,"Cimetière",48.931507,2.18583,0,0,OIF:SA:16:19513,Europe/Paris,,OIF, +OIF:SP:16:19515,1,"Camille Pelletan",48.930222,2.185724,0,0,OIF:SA:16:19515,Europe/Paris,,OIF, +OIF:SP:16:19516,1,"Camille Pelletan",48.930321,2.185792,0,0,OIF:SA:16:19515,Europe/Paris,,OIF, +OIF:SP:16:19517,1,"Les Blanches",48.926196,2.193319,0,0,OIF:SA:16:19517,Europe/Paris,,OIF, +OIF:SP:16:19518,1,"Les Blanches",48.926286,2.193401,0,0,OIF:SA:16:19517,Europe/Paris,,OIF, +OIF:SP:16:19519,1,"Ernest Renan",48.923917,2.196435,0,0,OIF:SA:16:19519,Europe/Paris,,OIF, +OIF:SP:16:19520,1,"La Fontaine",48.920575,2.197276,0,0,OIF:SA:16:19520,Europe/Paris,,OIF, +OIF:SP:16:19521,1,"La Fontaine",48.920782,2.197371,0,0,OIF:SA:16:19520,Europe/Paris,,OIF, +OIF:SP:16:19522,1,"Jean Jaurès",48.919994,2.192477,0,0,OIF:SA:16:19522,Europe/Paris,,OIF, +OIF:SP:16:19523,1,"Jean Jaurès",48.919914,2.192518,0,0,OIF:SA:16:19522,Europe/Paris,,OIF, +OIF:SP:16:19524,1,"Lycée les Pierres Vives",48.914844,2.171261,0,0,OIF:SA:16:19134,Europe/Paris,,OIF, +OIF:SP:16:19528,1,"La Défense Terminal Jules Verne",48.891492,2.242495,0,0,OIF:SA:16:19435,Europe/Paris,,OIF, +OIF:SP:16:19530,1,"EDF 1",48.892828,2.166179,0,0,OIF:SA:16:19277,Europe/Paris,,OIF, +OIF:SP:16:19532,1,"Gare de Rueil Malmaison",48.88705,2.173285,0,0,OIF:SA:8775805,Europe/Paris,,OIF, +OIF:SP:16:19534,1,"Église Notre-Dame",48.889331,2.159417,0,0,OIF:SA:16:19062,Europe/Paris,,OIF, +OIF:SP:17:1271,1,"Place Berthet",48.848855,2.150186,0,0,OIF:SA:16:19337,Europe/Paris,,OIF, +OIF:SP:17:1272,1,"Rueil Malmaison Gare RER",48.887409,2.173243,0,0,OIF:SA:8775805,Europe/Paris,,OIF, +OIF:SP:17:1273,1,"Rueil Ville",48.880248,2.181005,0,0,OIF:SA:17:1273,Europe/Paris,,OIF, +OIF:SP:17:1274,1,"Danielle Casanova",48.878192,2.175779,0,0,OIF:SA:17:1274,Europe/Paris,,OIF, +OIF:SP:17:1275,1,"Bois Préau",48.877118,2.173044,0,0,OIF:SA:17:1275,Europe/Paris,,OIF, +OIF:SP:17:1276,1,"Château",48.874693,2.167234,0,0,OIF:SA:17:1276,Europe/Paris,,OIF, +OIF:SP:17:1277,1,"École la Malmaison",48.872665,2.163262,0,0,OIF:SA:17:1277,Europe/Paris,,OIF, +OIF:SP:17:1278,1,"Le Parc",48.871754,2.161276,0,0,OIF:SA:17:1278,Europe/Paris,,OIF, +OIF:SP:17:1279,1,"Jonchère",48.869123,2.157034,0,0,OIF:SA:17:1279,Europe/Paris,,OIF, +OIF:SP:17:1280,1,"Chemin des Vignes",48.863131,2.152764,0,0,OIF:SA:17:1280,Europe/Paris,,OIF, +OIF:SP:17:1281,1,"Rousseau",48.861197,2.151327,0,0,OIF:SA:16:19333,Europe/Paris,,OIF, +OIF:SP:17:1282,1,"Elysée",48.85917,2.148678,0,0,OIF:SA:17:1282,Europe/Paris,,OIF, +OIF:SP:17:1283,1,"Sablons",48.857053,2.145049,0,0,OIF:SA:16:19329,Europe/Paris,,OIF, +OIF:SP:17:1284,1,"Saint-Francois",48.853289,2.146561,0,0,OIF:SA:16:19334,Europe/Paris,,OIF, +OIF:SP:17:1285,1,"Vinde-Berthet",48.849897,2.149488,0,0,OIF:SA:17:1285,Europe/Paris,,OIF, +OIF:SP:17:1286,1,"Étang Sec",48.848823,2.152434,0,0,OIF:SA:17:1286,Europe/Paris,,OIF, +OIF:SP:17:1287,1,"Vinde-Berthet",48.849834,2.149693,0,0,OIF:SA:17:1285,Europe/Paris,,OIF, +OIF:SP:17:1288,1,"Saint-Francois",48.853343,2.146697,0,0,OIF:SA:16:19334,Europe/Paris,,OIF, +OIF:SP:17:1289,1,"Sablons",48.85725,2.144885,0,0,OIF:SA:16:19329,Europe/Paris,,OIF, +OIF:SP:17:1290,1,"Avenue Hogg",48.85141,2.146078,0,0,OIF:SA:17:1290,Europe/Paris,,OIF, +OIF:SP:17:1291,1,"Place de l'Église",48.852566,2.14369,0,0,OIF:SA:17:1291,Europe/Paris,,OIF, +OIF:SP:17:1292,1,"Elysée",48.85934,2.14801,0,0,OIF:SA:17:1282,Europe/Paris,,OIF, +OIF:SP:17:1293,1,"Bourg",48.853274,2.142435,0,0,OIF:SA:17:1293,Europe/Paris,,OIF, +OIF:SP:17:1294,1,"La Celle Saint-Cloud Gare SNCF",48.84311,2.137939,0,0,OIF:SA:8738243,Europe/Paris,,OIF, +OIF:SP:17:1295,1,"Corneille",48.846569,2.136945,0,0,OIF:SA:17:1295,Europe/Paris,,OIF, +OIF:SP:17:1296,1,"Mairie de la Celle Saint-Cloud",48.846874,2.136617,0,0,OIF:SA:16:19140,Europe/Paris,,OIF, +OIF:SP:17:1297,1,"Guibert",48.845149,2.131994,0,0,OIF:SA:16:19097,Europe/Paris,,OIF, +OIF:SP:17:1298,1,"Victor Hugo",48.843849,2.128458,0,0,OIF:SA:17:1298,Europe/Paris,,OIF, +OIF:SP:17:1299,1,"Orangerie",48.842248,2.127716,0,0,OIF:SA:17:1299,Europe/Paris,,OIF, +OIF:SP:17:1300,1,"Bendern",48.841658,2.12441,0,0,OIF:SA:17:1300,Europe/Paris,,OIF, +OIF:SP:17:1301,1,"Grande Promenade",48.841263,2.119618,0,0,OIF:SA:17:1301,Europe/Paris,,OIF, +OIF:SP:17:1302,1,"Dunant",48.83998,2.121285,0,0,OIF:SA:17:1302,Europe/Paris,,OIF, +OIF:SP:17:1303,1,"Hirsch Saut du Loup",48.839179,2.125672,0,0,OIF:SA:17:1303,Europe/Paris,,OIF, +OIF:SP:17:1304,1,"Puits d'Angle",48.83834,2.128916,0,0,OIF:SA:17:1304,Europe/Paris,,OIF, +OIF:SP:17:1305,1,"Hirsch Saut du Loup",48.839484,2.125263,0,0,OIF:SA:17:1303,Europe/Paris,,OIF, +OIF:SP:17:1306,1,"Dunant",48.840043,2.12108,0,0,OIF:SA:17:1302,Europe/Paris,,OIF, +OIF:SP:17:1307,1,"Grande Promenade",48.841398,2.119699,0,0,OIF:SA:17:1301,Europe/Paris,,OIF, +OIF:SP:17:1308,1,"Bendern",48.841362,2.124942,0,0,OIF:SA:17:1300,Europe/Paris,,OIF, +OIF:SP:17:1309,1,"Orangerie",48.842078,2.128234,0,0,OIF:SA:17:1299,Europe/Paris,,OIF, +OIF:SP:17:1310,1,"Grande Terasse",48.841929,2.130359,0,0,OIF:SA:17:1310,Europe/Paris,,OIF, +OIF:SP:17:1311,1,"Sources",48.843196,2.130354,0,0,OIF:SA:17:1311,Europe/Paris,,OIF, +OIF:SP:17:1312,1,"Guibert",48.844746,2.132472,0,0,OIF:SA:16:19097,Europe/Paris,,OIF, +OIF:SP:17:1313,1,"Mairie de la Celle Saint-Cloud",48.847052,2.13569,0,0,OIF:SA:16:19140,Europe/Paris,,OIF, +OIF:SP:17:1314,1,"La Celle Saint-Cloud Gare SNCF",48.843093,2.138143,0,0,OIF:SA:8738243,Europe/Paris,,OIF, +OIF:SP:17:1315,1,"La Celle Saint-Cloud Gare SNCF",48.843093,2.138143,0,0,OIF:SA:8738243,Europe/Paris,,OIF, +OIF:SP:17:1316,1,"La Celle Saint-Cloud Gare SNCF",48.843262,2.13757,0,0,OIF:SA:8738243,Europe/Paris,,OIF, +OIF:SP:17:1319,1,"La Celle Saint-Cloud Gare SNCF",48.843262,2.13757,0,0,OIF:SA:8738243,Europe/Paris,,OIF, +OIF:SP:17:1321,1,"Mairie de la Celle Saint-Cloud",48.847736,2.136477,0,0,OIF:SA:16:19140,Europe/Paris,,OIF, +OIF:SP:17:1322,1,"Bourg",48.853885,2.142569,0,0,OIF:SA:17:1293,Europe/Paris,,OIF, +OIF:SP:17:1323,1,"Rousseau",48.861854,2.151788,0,0,OIF:SA:16:19333,Europe/Paris,,OIF, +OIF:SP:17:1324,1,"Chemin des Vignes",48.863545,2.152885,0,0,OIF:SA:17:1280,Europe/Paris,,OIF, +OIF:SP:17:1325,1,"Jonchère",48.870159,2.15857,0,0,OIF:SA:17:1279,Europe/Paris,,OIF, +OIF:SP:17:1326,1,"Le Parc",48.872043,2.162038,0,0,OIF:SA:17:1278,Europe/Paris,,OIF, +OIF:SP:17:1327,1,"École la Malmaison",48.873323,2.164649,0,0,OIF:SA:17:1277,Europe/Paris,,OIF, +OIF:SP:17:1328,1,"Château",48.874747,2.167833,0,0,OIF:SA:17:1276,Europe/Paris,,OIF, +OIF:SP:17:1329,1,"Bois Préau",48.877254,2.173575,0,0,OIF:SA:17:1275,Europe/Paris,,OIF, +OIF:SP:17:1330,1,"Danielle Casanova",48.878454,2.176937,0,0,OIF:SA:17:1274,Europe/Paris,,OIF, +OIF:SP:17:1331,1,"Rueil Ville",48.880785,2.1796,0,0,OIF:SA:17:1273,Europe/Paris,,OIF, +OIF:SP:17:1332,1,"Rueil Malmaison Gare RER",48.887409,2.173243,0,0,OIF:SA:8775805,Europe/Paris,,OIF, +OIF:SP:17:1333,1,"Louis Pasteur",48.849287,2.144956,0,0,OIF:SA:17:1333,Europe/Paris,,OIF, +OIF:SP:17:1334,1,"Place Amade",48.847772,2.14729,0,0,OIF:SA:17:1334,Europe/Paris,,OIF, +OIF:SP:17:1335,1,"Place Berthet",48.848855,2.150186,0,0,OIF:SA:16:19337,Europe/Paris,,OIF, +OIF:SP:17:1336,1,"Étang Sec",48.848823,2.152434,0,0,OIF:SA:17:1286,Europe/Paris,,OIF, +OIF:SP:17:1337,1,"Boulogne Billancourt Gambetta",48.847876,2.241308,0,0,OIF:SA:17:1337,Europe/Paris,,OIF, +OIF:SP:17:1338,1,"Église",48.845652,2.236382,0,0,OIF:SA:17:1338,Europe/Paris,,OIF, +OIF:SP:17:1339,1,"Escudier",48.842024,2.230085,0,0,OIF:SA:17:1339,Europe/Paris,,OIF, +OIF:SP:17:1340,1,"Pt de Saint-Cloud Albert Kahn",48.841105,2.226846,0,0,OIF:SA:59400,Europe/Paris,,OIF, +OIF:SP:17:1341,1,"Parc de Saint-Cloud",48.842357,2.221111,0,0,OIF:SA:59010,Europe/Paris,,OIF, +OIF:SP:17:1342,1,"Chevrillon",48.846176,2.219523,0,0,OIF:SA:17:1342,Europe/Paris,,OIF, +OIF:SP:17:1343,1,"Saint-Cloud Gare SNCF",48.844484,2.217321,0,0,OIF:SA:8738235,Europe/Paris,,OIF, +OIF:SP:17:1344,1,"Collège Gounod",48.843087,2.213702,0,0,OIF:SA:17:1344,Europe/Paris,,OIF, +OIF:SP:17:1345,1,"Général Leclerc",48.842369,2.20616,0,0,OIF:SA:17:1345,Europe/Paris,,OIF, +OIF:SP:17:1346,1,"Lelégard",48.84187,2.202035,0,0,OIF:SA:17:1346,Europe/Paris,,OIF, +OIF:SP:17:1347,1,"Porte Jaune",48.841643,2.199694,0,0,OIF:SA:17:1347,Europe/Paris,,OIF, +OIF:SP:17:1348,1,"Gustave Lambert",48.840656,2.193978,0,0,OIF:SA:17:1348,Europe/Paris,,OIF, +OIF:SP:17:1349,1,"Toulon",48.841263,2.190341,0,0,OIF:SA:17:1349,Europe/Paris,,OIF, +OIF:SP:17:1350,1,"Mairie de Garches",48.842094,2.186199,0,0,OIF:SA:17:1350,Europe/Paris,,OIF, +OIF:SP:17:1351,1,"Joffre",48.840035,2.185606,0,0,OIF:SA:17:1351,Europe/Paris,,OIF, +OIF:SP:17:1352,1,"Garches Marnes la Coquette Gare SNCF",48.838579,2.186155,0,0,OIF:SA:8738225,Europe/Paris,,OIF, +OIF:SP:17:1353,1,"Pasteur",48.838202,2.179457,0,0,OIF:SA:17:1353,Europe/Paris,,OIF, +OIF:SP:17:1354,1,"Hôpital de Garches",48.838397,2.170892,0,0,OIF:SA:17:1354,Europe/Paris,,OIF, +OIF:SP:17:1355,1,"Stade de la Marche",48.837818,2.162003,0,0,OIF:SA:17:1355,Europe/Paris,,OIF, +OIF:SP:17:1356,1,"Fer Rouge",48.83762,2.155265,0,0,OIF:SA:17:1356,Europe/Paris,,OIF, +OIF:SP:17:1357,1,"Vaucresson Gare",48.836932,2.15268,0,0,OIF:SA:8738226,Europe/Paris,,OIF, +OIF:SP:17:1358,1,"Route des Puits",48.836956,2.144865,0,0,OIF:SA:17:1358,Europe/Paris,,OIF, +OIF:SP:17:1359,1,"Place de Verdun",48.836246,2.139136,0,0,OIF:SA:17:1359,Europe/Paris,,OIF, +OIF:SP:17:1360,1,"Jules Verne",48.835426,2.132495,0,0,OIF:SA:17:1360,Europe/Paris,,OIF, +OIF:SP:17:1361,1,"Bel Air",48.835339,2.129418,0,0,OIF:SA:17:1361,Europe/Paris,,OIF, +OIF:SP:17:1362,1,"Puits d'Angle",48.838711,2.130086,0,0,OIF:SA:17:1304,Europe/Paris,,OIF, +OIF:SP:17:1363,1,"Guibert",48.844388,2.133386,0,0,OIF:SA:16:19097,Europe/Paris,,OIF, +OIF:SP:17:1364,1,"Guibert",48.844297,2.133073,0,0,OIF:SA:16:19097,Europe/Paris,,OIF, +OIF:SP:17:1365,1,"Puits d'Angle",48.838431,2.129624,0,0,OIF:SA:17:1304,Europe/Paris,,OIF, +OIF:SP:17:1366,1,"Bel Air",48.836814,2.129671,0,0,OIF:SA:17:1361,Europe/Paris,,OIF, +OIF:SP:17:1367,1,"Jules Verne",48.835519,2.134373,0,0,OIF:SA:17:1360,Europe/Paris,,OIF, +OIF:SP:17:1368,1,"Place de Verdun",48.836428,2.140987,0,0,OIF:SA:17:1359,Europe/Paris,,OIF, +OIF:SP:17:1369,1,"Route des Puits",48.836824,2.146295,0,0,OIF:SA:17:1358,Europe/Paris,,OIF, +OIF:SP:17:1370,1,"Vaucresson Gare",48.836932,2.15268,0,0,OIF:SA:8738226,Europe/Paris,,OIF, +OIF:SP:17:1371,1,"Fer Rouge",48.837539,2.155578,0,0,OIF:SA:17:1356,Europe/Paris,,OIF, +OIF:SP:17:1372,1,"Stade de la Marche",48.837658,2.162889,0,0,OIF:SA:17:1355,Europe/Paris,,OIF, +OIF:SP:17:1373,1,"Hôpital de Garches",48.838254,2.17126,0,0,OIF:SA:17:1354,Europe/Paris,,OIF, +OIF:SP:17:1374,1,"Pasteur",48.83813,2.179498,0,0,OIF:SA:17:1353,Europe/Paris,,OIF, +OIF:SP:17:1375,1,"Garches Marnes la Coquette Gare SNCF",48.838355,2.186319,0,0,OIF:SA:8738225,Europe/Paris,,OIF, +OIF:SP:17:1376,1,"Joffre",48.839676,2.18607,0,0,OIF:SA:17:1351,Europe/Paris,,OIF, +OIF:SP:17:1377,1,"Mairie de Garches",48.842354,2.186362,0,0,OIF:SA:17:1350,Europe/Paris,,OIF, +OIF:SP:17:1378,1,"Frédéric Clément",48.839185,2.188617,0,0,OIF:SA:17:1378,Europe/Paris,,OIF, +OIF:SP:17:1379,1,"Gustave Lambert",48.840494,2.193965,0,0,OIF:SA:17:1348,Europe/Paris,,OIF, +OIF:SP:17:1380,1,"Porte Jaune",48.841626,2.200579,0,0,OIF:SA:17:1347,Europe/Paris,,OIF, +OIF:SP:17:1381,1,"Lelégard",48.84179,2.203043,0,0,OIF:SA:17:1346,Europe/Paris,,OIF, +OIF:SP:17:1382,1,"Général Leclerc",48.842434,2.208366,0,0,OIF:SA:17:1345,Europe/Paris,,OIF, +OIF:SP:17:1383,1,"Collège Gounod",48.842853,2.213376,0,0,OIF:SA:17:1344,Europe/Paris,,OIF, +OIF:SP:17:1384,1,"Saint-Cloud Gare SNCF",48.845005,2.217551,0,0,OIF:SA:8738235,Europe/Paris,,OIF, +OIF:SP:17:1385,1,"Chevrillon",48.845942,2.21951,0,0,OIF:SA:17:1342,Europe/Paris,,OIF, +OIF:SP:17:1386,1,"Parc de Saint-Cloud",48.842313,2.221288,0,0,OIF:SA:59010,Europe/Paris,,OIF, +OIF:SP:17:1387,1,"La Colline",48.841503,2.220868,0,0,OIF:SA:59010,Europe/Paris,,OIF, +OIF:SP:17:1388,1,"Pont de Saint-Cloud Rive Gauche",48.841082,2.222067,0,0,OIF:SA:17:1388,Europe/Paris,,OIF, +OIF:SP:17:1389,1,"Pt de Saint-Cloud Albert Kahn",48.840817,2.227296,0,0,OIF:SA:59400,Europe/Paris,,OIF, +OIF:SP:17:1390,1,"Rhin et Danube - Musée Albert Kahn",48.841269,2.22946,0,0,OIF:SA:59400,Europe/Paris,,OIF, +OIF:SP:17:1391,1,"Escudier",48.842618,2.231268,0,0,OIF:SA:17:1339,Europe/Paris,,OIF, +OIF:SP:17:1392,1,"Église",48.845976,2.237362,0,0,OIF:SA:17:1338,Europe/Paris,,OIF, +OIF:SP:17:1393,1,"Boulogne Billancourt Gambetta",48.847876,2.241308,0,0,OIF:SA:17:1337,Europe/Paris,,OIF, +OIF:SP:17:1394,1,"La Celle Saint-Cloud Gare SNCF",48.84311,2.137939,0,0,OIF:SA:8738243,Europe/Paris,,OIF, +OIF:SP:17:1402,1,"Legeay de Lesser",48.826081,2.195883,0,0,OIF:SA:17:1402,Europe/Paris,,OIF, +OIF:SP:17:1403,1,"Église de Ville d'Avray",48.826962,2.188666,0,0,OIF:SA:17:1403,Europe/Paris,,OIF, +OIF:SP:17:1405,1,"Mairie de Marnes la Coquette",48.83029,2.177344,0,0,OIF:SA:17:1405,Europe/Paris,,OIF, +OIF:SP:17:1418,1,"Église de Ville d'Avray",48.826675,2.189729,0,0,OIF:SA:17:1403,Europe/Paris,,OIF, +OIF:SP:17:1419,1,"Legeay de Lesser",48.826142,2.194712,0,0,OIF:SA:17:1402,Europe/Paris,,OIF, +OIF:SP:17:1420,1,"Sevres Ville d'Avray Gare SNCF Rive Droite",48.825914,2.199681,0,0,OIF:SA:17:1420,Europe/Paris,,OIF, +OIF:SP:17:1421,1,"Pré Verdy",48.825794,2.20431,0,0,OIF:SA:17:1421,Europe/Paris,,OIF, +OIF:SP:17:1422,1,"Square de la Forge",48.824117,2.208152,0,0,OIF:SA:17:1422,Europe/Paris,,OIF, +OIF:SP:17:1423,1,"Place du Théâtre - Marche Saint-Romain",48.823051,2.211177,0,0,OIF:SA:17:1423,Europe/Paris,,OIF, +OIF:SP:17:1432,1,"Rhin et Danube - Musée Albert Kahn",48.841349,2.229147,0,0,OIF:SA:59400,Europe/Paris,,OIF, +OIF:SP:17:1442,1,"Passy Buzenval",48.859498,2.182307,0,0,OIF:SA:16:19348,Europe/Paris,,OIF, +OIF:SP:17:1444,1,"Saint-Cucufa",48.862251,2.171483,0,0,OIF:SA:17:1444,Europe/Paris,,OIF, +OIF:SP:17:1460,1,"Mairie",48.878198,2.180303,0,0,OIF:SA:17:1460,Europe/Paris,,OIF, +OIF:SP:17:1461,1,"Église",48.876221,2.180363,0,0,OIF:SA:17:1461,Europe/Paris,,OIF, +OIF:SP:17:1462,1,"Richelieu",48.873212,2.182198,0,0,OIF:SA:17:1462,Europe/Paris,,OIF, +OIF:SP:17:1469,1,"Saint-Cucufa",48.862251,2.171483,0,0,OIF:SA:17:1444,Europe/Paris,,OIF, +OIF:SP:17:1471,1,"Passy Buzenval",48.859577,2.181285,0,0,OIF:SA:16:19348,Europe/Paris,,OIF, +OIF:SP:17:1486,1,"Porte des Hauts de Seine",48.814633,2.157645,0,0,OIF:SA:17:1486,Europe/Paris,,OIF, +OIF:SP:17:1487,1,"Porte Verte",48.817481,2.16346,0,0,OIF:SA:17:1487,Europe/Paris,,OIF, +OIF:SP:17:1488,1,"Fausses Reposes",48.818537,2.166601,0,0,OIF:SA:17:1488,Europe/Paris,,OIF, +OIF:SP:17:1489,1,"Les Peupliers",48.819575,2.169578,0,0,OIF:SA:17:1489,Europe/Paris,,OIF, +OIF:SP:17:1490,1,"Les Sapins Bleus",48.821039,2.175031,0,0,OIF:SA:17:1490,Europe/Paris,,OIF, +OIF:SP:17:1491,1,"Les Étangs",48.821839,2.182365,0,0,OIF:SA:17:1491,Europe/Paris,,OIF, +OIF:SP:17:1492,1,"Jean Rostand",48.824766,2.186603,0,0,OIF:SA:17:1492,Europe/Paris,,OIF, +OIF:SP:17:1493,1,"Musset",48.82385,2.18764,0,0,OIF:SA:17:1493,Europe/Paris,,OIF, +OIF:SP:17:1494,1,"La Ronce",48.822623,2.190461,0,0,OIF:SA:17:1494,Europe/Paris,,OIF, +OIF:SP:17:1495,1,"Cote d'Argent",48.823843,2.196461,0,0,OIF:SA:17:1495,Europe/Paris,,OIF, +OIF:SP:17:1496,1,"Desvallières",48.824753,2.197819,0,0,OIF:SA:17:1496,Europe/Paris,,OIF, +OIF:SP:17:1497,1,"Sevres Gare SNCF Rive Gauche",48.820589,2.21234,0,0,OIF:SA:8739312,Europe/Paris,,OIF, +OIF:SP:17:1498,1,"Albert Dammouse",48.819953,2.214151,0,0,OIF:SA:17:1498,Europe/Paris,,OIF, +OIF:SP:17:1499,1,"Stade des Fontaines",48.817222,2.215451,0,0,OIF:SA:17:1499,Europe/Paris,,OIF, +OIF:SP:17:1500,1,"Wolfenbuttel",48.814129,2.213811,0,0,OIF:SA:17:1500,Europe/Paris,,OIF, +OIF:SP:17:1501,1,"Docteur Roux",48.811727,2.211585,0,0,OIF:SA:17:1501,Europe/Paris,,OIF, +OIF:SP:17:1502,1,"Verrières",48.811041,2.209491,0,0,OIF:SA:17:1502,Europe/Paris,,OIF, +OIF:SP:17:1503,1,"Hauts de Sevres",48.809447,2.20593,0,0,OIF:SA:17:1503,Europe/Paris,,OIF, +OIF:SP:17:1504,1,"Pave des Gardes",48.809004,2.195793,0,0,OIF:SA:17:1504,Europe/Paris,,OIF, +OIF:SP:17:1505,1,"De Gaulle",48.810545,2.192265,0,0,OIF:SA:17:1505,Europe/Paris,,OIF, +OIF:SP:17:1506,1,"Mairie",48.809454,2.188811,0,0,OIF:SA:17:1506,Europe/Paris,,OIF, +OIF:SP:17:1507,1,"Chaville RD",48.81195,2.18743,0,0,OIF:SA:8738233,Europe/Paris,,OIF, +OIF:SP:17:1508,1,"Chaville RD",48.81195,2.18743,0,0,OIF:SA:8738233,Europe/Paris,,OIF, +OIF:SP:17:1509,1,"Résistance",48.809657,2.186157,0,0,OIF:SA:17:1509,Europe/Paris,,OIF, +OIF:SP:17:1510,1,"Puits Sans Vin",48.808104,2.187699,0,0,OIF:SA:17:1510,Europe/Paris,,OIF, +OIF:SP:17:1511,1,"Pave des Gardes",48.808166,2.194244,0,0,OIF:SA:17:1504,Europe/Paris,,OIF, +OIF:SP:17:1512,1,"Hauts de Sevres",48.809474,2.206352,0,0,OIF:SA:17:1503,Europe/Paris,,OIF, +OIF:SP:17:1513,1,"Verrières",48.810609,2.20873,0,0,OIF:SA:17:1502,Europe/Paris,,OIF, +OIF:SP:17:1514,1,"Les Postillons les Bruyères",48.812007,2.212877,0,0,OIF:SA:17:1514,Europe/Paris,,OIF, +OIF:SP:17:1515,1,"Cimetière",48.81436,2.211606,0,0,OIF:SA:17:1515,Europe/Paris,,OIF, +OIF:SP:17:1516,1,"Châtaigneraie",48.818185,2.208358,0,0,OIF:SA:17:1516,Europe/Paris,,OIF, +OIF:SP:17:1517,1,"Ermitage",48.819483,2.211376,0,0,OIF:SA:17:1517,Europe/Paris,,OIF, +OIF:SP:17:1518,1,"Sevres Gare SNCF Rive Gauche",48.821088,2.216531,0,0,OIF:SA:8739312,Europe/Paris,,OIF, +OIF:SP:17:1519,1,"Les Binelles",48.822271,2.222149,0,0,OIF:SA:17:1519,Europe/Paris,,OIF, +OIF:SP:17:1520,1,"Brimborion Division Leclerc",48.823187,2.221181,0,0,OIF:SA:17:1520,Europe/Paris,,OIF, +OIF:SP:17:1521,1,"Carrier Belleuse",48.824692,2.21625,0,0,OIF:SA:17:1521,Europe/Paris,,OIF, +OIF:SP:17:1522,1,"Ernest Chapelet",48.826407,2.215266,0,0,OIF:SA:17:1522,Europe/Paris,,OIF, +OIF:SP:17:1523,1,"Lycée",48.826169,2.211128,0,0,OIF:SA:17:1523,Europe/Paris,,OIF, +OIF:SP:17:1524,1,"La Louve",48.827083,2.208063,0,0,OIF:SA:17:1524,Europe/Paris,,OIF, +OIF:SP:17:1525,1,"Fontanelles",48.827872,2.205938,0,0,OIF:SA:17:1525,Europe/Paris,,OIF, +OIF:SP:17:1526,1,"Sevres Ville d'Avray Gare SNCF Rive Droite",48.826491,2.200986,0,0,OIF:SA:17:1420,Europe/Paris,,OIF, +OIF:SP:17:1527,1,"Desvallières",48.825598,2.198103,0,0,OIF:SA:17:1496,Europe/Paris,,OIF, +OIF:SP:17:1528,1,"Cote d'Argent",48.823951,2.196787,0,0,OIF:SA:17:1495,Europe/Paris,,OIF, +OIF:SP:17:1529,1,"La Ronce",48.822523,2.19004,0,0,OIF:SA:17:1494,Europe/Paris,,OIF, +OIF:SP:17:1530,1,"Musset",48.824138,2.187558,0,0,OIF:SA:17:1493,Europe/Paris,,OIF, +OIF:SP:17:1531,1,"Jean Rostand",48.824757,2.186467,0,0,OIF:SA:17:1492,Europe/Paris,,OIF, +OIF:SP:17:1532,1,"Les Étangs",48.821776,2.181753,0,0,OIF:SA:17:1491,Europe/Paris,,OIF, +OIF:SP:17:1533,1,"Les Sapins Bleus",48.821201,2.175575,0,0,OIF:SA:17:1490,Europe/Paris,,OIF, +OIF:SP:17:1534,1,"Les Peupliers",48.819421,2.168789,0,0,OIF:SA:17:1489,Europe/Paris,,OIF, +OIF:SP:17:1535,1,"Fausses Reposes",48.818248,2.165295,0,0,OIF:SA:17:1488,Europe/Paris,,OIF, +OIF:SP:17:1536,1,"Porte Verte",48.817382,2.162834,0,0,OIF:SA:17:1487,Europe/Paris,,OIF, +OIF:SP:17:1537,1,"Porte des Hauts de Seine",48.814624,2.157645,0,0,OIF:SA:17:1486,Europe/Paris,,OIF, +OIF:SP:17:1540,1,"Val d'Or",48.859426,2.213036,0,0,OIF:SA:8738236,Europe/Paris,,OIF, +OIF:SP:17:1541,1,"La Berangere",48.856611,2.211381,0,0,OIF:SA:17:1541,Europe/Paris,,OIF, +OIF:SP:17:1542,1,"Marie Bonaparte",48.852397,2.212577,0,0,OIF:SA:17:1542,Europe/Paris,,OIF, +OIF:SP:17:1543,1,"Lycée Alexandre Dumas",48.849172,2.213742,0,0,OIF:SA:17:1543,Europe/Paris,,OIF, +OIF:SP:17:1545,1,"Montretout",48.847078,2.214169,0,0,OIF:SA:17:1545,Europe/Paris,,OIF, +OIF:SP:17:1563,1,"Montretout",48.847186,2.214332,0,0,OIF:SA:17:1545,Europe/Paris,,OIF, +OIF:SP:17:1564,1,"Lycée Alexandre Dumas",48.849792,2.213686,0,0,OIF:SA:17:1543,Europe/Paris,,OIF, +OIF:SP:17:1565,1,"Marie Bonaparte",48.852523,2.212889,0,0,OIF:SA:17:1542,Europe/Paris,,OIF, +OIF:SP:17:1566,1,"La Berangere",48.856467,2.211246,0,0,OIF:SA:17:1541,Europe/Paris,,OIF, +OIF:SP:17:1567,1,"Val d'Or",48.8593,2.213282,0,0,OIF:SA:8738236,Europe/Paris,,OIF, +OIF:SP:17:1574,1,"Église de Saint-Cloud",48.847754,2.207767,0,0,OIF:SA:17:1574,Europe/Paris,,OIF, +OIF:SP:17:1575,1,"Cimetière",48.847993,2.204648,0,0,OIF:SA:17:1575,Europe/Paris,,OIF, +OIF:SP:17:1582,1,"Louveciennes Gare SNCF",48.861015,2.123023,0,0,OIF:SA:8738245,Europe/Paris,,OIF, +OIF:SP:17:1583,1,"Croix Rouge",48.861832,2.117952,0,0,OIF:SA:17:1583,Europe/Paris,,OIF, +OIF:SP:17:1584,1,"Église",48.860892,2.114891,0,0,OIF:SA:17:1584,Europe/Paris,,OIF, +OIF:SP:17:1585,1,"Mairie de Louveciennes",48.861722,2.112068,0,0,OIF:SA:17:1585,Europe/Paris,,OIF, +OIF:SP:17:1586,1,"Village",48.862574,2.111015,0,0,OIF:SA:15:260,Europe/Paris,,OIF, +OIF:SP:17:1587,1,"Val de Seine",48.866565,2.111243,0,0,OIF:SA:17:1587,Europe/Paris,,OIF, +OIF:SP:17:1588,1,"Clairefontaine",48.866145,2.107744,0,0,OIF:SA:17:1588,Europe/Paris,,OIF, +OIF:SP:17:1589,1,"Plainchamps",48.890948,2.200068,0,0,OIF:SA:17:1589,Europe/Paris,,OIF, +OIF:SP:17:1590,1,"Place de la Boule",48.886993,2.199833,0,0,OIF:SA:17:1590,Europe/Paris,,OIF, +OIF:SP:17:1591,1,"Boulevard National",48.884153,2.192114,0,0,OIF:SA:17:1591,Europe/Paris,,OIF, +OIF:SP:17:1592,1,"Rueil Ville",48.880077,2.180774,0,0,OIF:SA:17:1273,Europe/Paris,,OIF, +OIF:SP:17:1594,1,"Gare de Saint-Quentin en Y.",48.787582,2.045616,0,0,OIF:SA:8739384,Europe/Paris,,OIF, +OIF:SP:17:1595,1,"Gare de Saint-Quentin en Y.",48.788124,2.046728,0,0,OIF:SA:8739384,Europe/Paris,,OIF, +OIF:SP:17:1597,1,"Hôpital Stell",48.876552,2.186262,0,0,OIF:SA:17:1597,Europe/Paris,,OIF, +OIF:SP:17:1599,1,"Boulevard National",48.883974,2.192332,0,0,OIF:SA:17:1591,Europe/Paris,,OIF, +OIF:SP:17:1600,1,"Place de la Boule",48.887543,2.20129,0,0,OIF:SA:17:1590,Europe/Paris,,OIF, +OIF:SP:17:1601,1,"Plainchamps",48.890976,2.201322,0,0,OIF:SA:17:1589,Europe/Paris,,OIF, +OIF:SP:17:1602,1,"Piscine",48.845764,2.18868,0,0,OIF:SA:17:1602,Europe/Paris,,OIF, +OIF:SP:17:1603,1,"Piscine",48.845737,2.188871,0,0,OIF:SA:17:1602,Europe/Paris,,OIF, +OIF:SP:17:1604,1,"Mairie de Marnes la Coquette",48.830236,2.17733,0,0,OIF:SA:17:1405,Europe/Paris,,OIF, +OIF:SP:17:1605,1,"Sablons 2",48.85646,2.145242,0,0,OIF:SA:16:19329,Europe/Paris,,OIF, +OIF:SP:17:1606,1,"Clairefontaine",48.866145,2.107744,0,0,OIF:SA:17:1588,Europe/Paris,,OIF, +OIF:SP:17:1607,1,"Val de Seine",48.866431,2.111734,0,0,OIF:SA:17:1587,Europe/Paris,,OIF, +OIF:SP:17:1608,1,"Mairie de Louveciennes",48.861902,2.112299,0,0,OIF:SA:17:1585,Europe/Paris,,OIF, +OIF:SP:17:1609,1,"Église",48.860982,2.115231,0,0,OIF:SA:17:1584,Europe/Paris,,OIF, +OIF:SP:17:1610,1,"Croix Rouge",48.862066,2.117951,0,0,OIF:SA:17:1583,Europe/Paris,,OIF, +OIF:SP:17:1611,1,"Louveciennes Gare SNCF",48.861015,2.123023,0,0,OIF:SA:8738245,Europe/Paris,,OIF, +OIF:SP:17:1612,1,"Poste",48.862832,2.139702,0,0,OIF:SA:16:19016,Europe/Paris,,OIF, +OIF:SP:17:1613,1,"Bourg",48.854333,2.141736,0,0,OIF:SA:17:1293,Europe/Paris,,OIF, +OIF:SP:17:1614,1,"Pres au Bois",48.847032,2.16919,0,0,OIF:SA:17:1614,Europe/Paris,,OIF, +OIF:SP:17:1615,1,"Suresnes",48.847337,2.181853,0,0,OIF:SA:17:1615,Europe/Paris,,OIF, +OIF:SP:17:1616,1,"Garches Marquis de Mores",48.851647,2.192722,0,0,OIF:SA:17:1616,Europe/Paris,,OIF, +OIF:SP:17:1617,1,"Garches Marquis de Mores",48.851907,2.192844,0,0,OIF:SA:17:1616,Europe/Paris,,OIF, +OIF:SP:17:1618,1,"Suresnes",48.847391,2.182017,0,0,OIF:SA:17:1615,Europe/Paris,,OIF, +OIF:SP:17:1619,1,"Pres au Bois",48.846914,2.1687,0,0,OIF:SA:17:1614,Europe/Paris,,OIF, +OIF:SP:17:1620,1,"Bourg",48.854369,2.141859,0,0,OIF:SA:17:1293,Europe/Paris,,OIF, +OIF:SP:17:1621,1,"Poste",48.862867,2.139538,0,0,OIF:SA:16:19016,Europe/Paris,,OIF, +OIF:SP:17:1622,1,"Pompidou",48.875378,2.231447,0,0,OIF:SA:17:1622,Europe/Paris,,OIF, +OIF:SP:17:1623,1,"Jean Macé",48.872958,2.229231,0,0,OIF:SA:17:1623,Europe/Paris,,OIF, +OIF:SP:17:1624,1,"Henri IV",48.870494,2.227601,0,0,OIF:SA:17:1624,Europe/Paris,,OIF, +OIF:SP:17:1625,1,"De Gaulle",48.869367,2.223912,0,0,OIF:SA:17:1625,Europe/Paris,,OIF, +OIF:SP:17:1626,1,"Suresnes Longchamp Gare T2",48.868099,2.222388,0,0,OIF:SA:59053,Europe/Paris,,OIF, +OIF:SP:17:1627,1,"Garibaldi",48.862179,2.216449,0,0,OIF:SA:17:1627,Europe/Paris,,OIF, +OIF:SP:17:1628,1,"Cimetière",48.847904,2.205125,0,0,OIF:SA:17:1575,Europe/Paris,,OIF, +OIF:SP:17:1629,1,"Église de Saint-Cloud",48.847665,2.208298,0,0,OIF:SA:17:1574,Europe/Paris,,OIF, +OIF:SP:17:1630,1,"Garibaldi",48.862801,2.217769,0,0,OIF:SA:17:1627,Europe/Paris,,OIF, +OIF:SP:17:1631,1,"Suresnes Longchamp Gare T2",48.868054,2.222566,0,0,OIF:SA:59053,Europe/Paris,,OIF, +OIF:SP:17:1632,1,"De Gaulle",48.869332,2.22417,0,0,OIF:SA:17:1625,Europe/Paris,,OIF, +OIF:SP:17:1633,1,"Mairie",48.870833,2.225025,0,0,OIF:SA:17:1633,Europe/Paris,,OIF, +OIF:SP:17:1634,1,"Pages",48.871782,2.230732,0,0,OIF:SA:17:1634,Europe/Paris,,OIF, +OIF:SP:17:1635,1,"Commandant Rivière",48.874428,2.234242,0,0,OIF:SA:17:1635,Europe/Paris,,OIF, +OIF:SP:17:1640,1,"Sevres Ville d'Avray Gare SNCF Rive Droite",48.826491,2.200986,0,0,OIF:SA:17:1420,Europe/Paris,,OIF, +OIF:SP:17:1649,1,"Puits d'Angle",48.83834,2.128916,0,0,OIF:SA:17:1304,Europe/Paris,,OIF, +OIF:SP:18:100,1,"Gare d'Argenteuil",48.946465,2.257596,0,0,OIF:SA:8738184,Europe/Paris,,OIF, +OIF:SP:18:10007,1,"Petit Bois",48.916407,2.172814,0,0,OIF:SA:16:19183,Europe/Paris,,OIF, +OIF:SP:18:10009,1,"Buzenval",48.91613,2.178375,0,0,OIF:SA:16:19018,Europe/Paris,,OIF, +OIF:SP:18:10011,1,"Buzenval",48.916129,2.177748,0,0,OIF:SA:16:19018,Europe/Paris,,OIF, +OIF:SP:18:10013,1,"Gandillet",48.917307,2.181686,0,0,OIF:SA:18:10013,Europe/Paris,,OIF, +OIF:SP:18:10015,1,"Gandillet",48.917176,2.180993,0,0,OIF:SA:18:10013,Europe/Paris,,OIF, +OIF:SP:18:10021,1,"Pasteur",48.918918,2.188851,0,0,OIF:SA:18:10021,Europe/Paris,,OIF, +OIF:SP:18:10023,1,"Colombier",48.915892,2.195013,0,0,OIF:SA:16:19525,Europe/Paris,,OIF, +OIF:SP:18:10025,1,"Colombier",48.915899,2.19513,0,0,OIF:SA:16:19525,Europe/Paris,,OIF, +OIF:SP:18:10029,1,"Daubigny",48.913582,2.201593,0,0,OIF:SA:18:10029,Europe/Paris,,OIF, +OIF:SP:18:10031,1,"Salvador Allende",48.915881,2.207678,0,0,OIF:SA:18:10031,Europe/Paris,,OIF, +OIF:SP:18:10033,1,"Salvador Allende",48.915746,2.207005,0,0,OIF:SA:18:10031,Europe/Paris,,OIF, +OIF:SP:18:10035,1,"Marcel Paul",48.918025,2.211743,0,0,OIF:SA:18:10035,Europe/Paris,,OIF, +OIF:SP:18:10037,1,"Marcel Paul",48.917599,2.211658,0,0,OIF:SA:18:10035,Europe/Paris,,OIF, +OIF:SP:18:10039,1,"Germinal",48.920587,2.20945,0,0,OIF:SA:18:10039,Europe/Paris,,OIF, +OIF:SP:18:10041,1,"Louis Rameau",48.921616,2.211688,0,0,OIF:SA:18:10041,Europe/Paris,,OIF, +OIF:SP:18:10043,1,"Louis Rameau",48.919805,2.214558,0,0,OIF:SA:18:10041,Europe/Paris,,OIF, +OIF:SP:18:1017,1,"Les Perriers",48.9519,2.186835,0,0,OIF:SA:18:1017,Europe/Paris,,OIF, +OIF:SP:18:102,1,"Gare d'Argenteuil",48.946309,2.25735,0,0,OIF:SA:8738184,Europe/Paris,,OIF, +OIF:SP:18:1020,1,"La Berthie",48.93732,2.206739,0,0,OIF:SA:18:1020,Europe/Paris,,OIF, +OIF:SP:18:104,1,"Charles de Gaulle/Barbusse",48.940474,2.245134,0,0,OIF:SA:18:104,Europe/Paris,,OIF, +OIF:SP:18:105,1,"Charles de Gaulle/Barbusse",48.940513,2.244948,0,0,OIF:SA:18:104,Europe/Paris,,OIF, +OIF:SP:18:106,1,"Jean Poulmarch",48.952065,2.213442,0,0,OIF:SA:18:106,Europe/Paris,,OIF, +OIF:SP:18:107,1,"Jean Poulmarch",48.952227,2.213551,0,0,OIF:SA:18:106,Europe/Paris,,OIF, +OIF:SP:18:108,1,"Marceau Guillot",48.954841,2.24212,0,0,OIF:SA:18:108,Europe/Paris,,OIF, +OIF:SP:18:109,1,"Marceau Guillot",48.955282,2.24201,0,0,OIF:SA:18:108,Europe/Paris,,OIF, +OIF:SP:18:11,1,"Hôtel de Ville",48.946318,2.248821,0,0,OIF:SA:18:11,Europe/Paris,,OIF, +OIF:SP:18:110,1,"Gare du Val d'Argenteuil",48.950751,2.230352,0,0,OIF:SA:8738179,Europe/Paris,,OIF, +OIF:SP:18:111,1,"Gare du Val d'Argenteuil",48.95067,2.230079,0,0,OIF:SA:8738179,Europe/Paris,,OIF, +OIF:SP:18:112,1,"Heloise",48.939804,2.248576,0,0,OIF:SA:18:112,Europe/Paris,,OIF, +OIF:SP:18:113,1,"Heloise",48.939371,2.248205,0,0,OIF:SA:18:112,Europe/Paris,,OIF, +OIF:SP:18:114,1,"Hôpital Victor Dupouy",48.946343,2.238255,0,0,OIF:SA:18:114,Europe/Paris,,OIF, +OIF:SP:18:115,1,"Hôpital Victor Dupouy",48.945475,2.239326,0,0,OIF:SA:18:114,Europe/Paris,,OIF, +OIF:SP:18:116,1,"Collège Albert Camus",48.941258,2.214294,0,0,OIF:SA:18:116,Europe/Paris,,OIF, +OIF:SP:18:117,1,"Collège Albert Camus",48.941165,2.213809,0,0,OIF:SA:18:116,Europe/Paris,,OIF, +OIF:SP:18:12,1,"Aristide Briand",48.948875,2.25628,0,0,OIF:SA:18:12,Europe/Paris,,OIF, +OIF:SP:18:122,1,"École Lapierre",48.960621,2.246034,0,0,OIF:SA:18:122,Europe/Paris,,OIF, +OIF:SP:18:123,1,"Fernand Léger",48.950299,2.226737,0,0,OIF:SA:18:123,Europe/Paris,,OIF, +OIF:SP:18:124,1,"Fernand Léger",48.950209,2.226369,0,0,OIF:SA:18:123,Europe/Paris,,OIF, +OIF:SP:18:125,1,"Square Aquitaine",48.944794,2.231687,0,0,OIF:SA:18:125,Europe/Paris,,OIF, +OIF:SP:18:126,1,"Square Aquitaine",48.945136,2.231659,0,0,OIF:SA:18:125,Europe/Paris,,OIF, +OIF:SP:18:127,1,"Liserons",48.941528,2.209621,0,0,OIF:SA:18:127,Europe/Paris,,OIF, +OIF:SP:18:129,1,"Jaurès Leclerc",48.939372,2.228533,0,0,OIF:SA:18:129,Europe/Paris,,OIF, +OIF:SP:18:13,1,"Aristide Briand",48.948983,2.256212,0,0,OIF:SA:18:12,Europe/Paris,,OIF, +OIF:SP:18:130,1,"Jaurès Leclerc",48.939618,2.228192,0,0,OIF:SA:18:129,Europe/Paris,,OIF, +OIF:SP:18:131,1,"Anatole Lucas",48.955643,2.244616,0,0,OIF:SA:18:131,Europe/Paris,,OIF, +OIF:SP:18:132,1,"Anatole Lucas",48.955778,2.24467,0,0,OIF:SA:18:131,Europe/Paris,,OIF, +OIF:SP:18:133,1,"Espace Nelson Mandela",48.937619,2.227637,0,0,OIF:SA:18:133,Europe/Paris,,OIF, +OIF:SP:18:134,1,"Espace Nelson Mandela",48.937682,2.227391,0,0,OIF:SA:18:133,Europe/Paris,,OIF, +OIF:SP:18:135,1,"Marjolaine",48.942641,2.216684,0,0,OIF:SA:18:135,Europe/Paris,,OIF, +OIF:SP:18:136,1,"Marche des Coteaux",48.96082,2.233893,0,0,OIF:SA:18:136,Europe/Paris,,OIF, +OIF:SP:18:137,1,"Marche des Coteaux",48.960712,2.23388,0,0,OIF:SA:18:136,Europe/Paris,,OIF, +OIF:SP:18:138,1,"Montigny",48.946958,2.211012,0,0,OIF:SA:18:138,Europe/Paris,,OIF, +OIF:SP:18:14,1,"Clément Ader",48.942566,2.243507,0,0,OIF:SA:18:14,Europe/Paris,,OIF, +OIF:SP:18:140,1,"Morinval",48.960724,2.248987,0,0,OIF:SA:18:140,Europe/Paris,,OIF, +OIF:SP:18:141,1,"Morinval",48.959403,2.248799,0,0,OIF:SA:18:140,Europe/Paris,,OIF, +OIF:SP:18:142,1,"Jean Moulin",48.940126,2.237577,0,0,OIF:SA:18:142,Europe/Paris,,OIF, +OIF:SP:18:143,1,"Jean Moulin",48.940271,2.238613,0,0,OIF:SA:18:142,Europe/Paris,,OIF, +OIF:SP:18:144,1,"Nobleterre",48.958616,2.254368,0,0,OIF:SA:18:144,Europe/Paris,,OIF, +OIF:SP:18:145,1,"Rue du Nord",48.95566,2.255505,0,0,OIF:SA:18:145,Europe/Paris,,OIF, +OIF:SP:18:147,1,"Stalingrad",48.952036,2.266809,0,0,OIF:SA:18:147,Europe/Paris,,OIF, +OIF:SP:18:148,1,"Stalingrad",48.952189,2.26736,0,0,OIF:SA:18:147,Europe/Paris,,OIF, +OIF:SP:18:15,1,"Clément Ader",48.942539,2.243138,0,0,OIF:SA:18:14,Europe/Paris,,OIF, +OIF:SP:18:150,1,"Passemay",48.960229,2.226129,0,0,OIF:SA:18:150,Europe/Paris,,OIF, +OIF:SP:18:151,1,"Place Chauvelot",48.957331,2.287218,0,0,OIF:SA:18:151,Europe/Paris,,OIF, +OIF:SP:18:152,1,"Place Chauvelot",48.957259,2.287477,0,0,OIF:SA:18:151,Europe/Paris,,OIF, +OIF:SP:18:153,1,"Paul Vaillant Couturier",48.944127,2.250898,0,0,OIF:SA:18:153,Europe/Paris,,OIF, +OIF:SP:18:154,1,"Paul Vaillant Couturier",48.944208,2.250816,0,0,OIF:SA:18:153,Europe/Paris,,OIF, +OIF:SP:18:155,1,"Place Léopold Hirsch",48.943551,2.228265,0,0,OIF:SA:18:155,Europe/Paris,,OIF, +OIF:SP:18:156,1,"Place Léopold Hirsch",48.94357,2.228948,0,0,OIF:SA:18:155,Europe/Paris,,OIF, +OIF:SP:18:157,1,"Piscine Collège",48.960944,2.254461,0,0,OIF:SA:18:157,Europe/Paris,,OIF, +OIF:SP:18:158,1,"Piscine Collège",48.961042,2.254432,0,0,OIF:SA:18:157,Europe/Paris,,OIF, +OIF:SP:18:159,1,"Petit Marly",48.938147,2.246584,0,0,OIF:SA:18:159,Europe/Paris,,OIF, +OIF:SP:18:16,1,"Jean Allemane",48.950473,2.253603,0,0,OIF:SA:18:16,Europe/Paris,,OIF, +OIF:SP:18:160,1,"Petit Marly",48.938102,2.245929,0,0,OIF:SA:18:159,Europe/Paris,,OIF, +OIF:SP:18:161,1,"Fosse aux Loups",48.950595,2.20837,0,0,OIF:SA:18:161,Europe/Paris,,OIF, +OIF:SP:18:162,1,"Fosse aux Loups",48.950739,2.20852,0,0,OIF:SA:18:161,Europe/Paris,,OIF, +OIF:SP:18:163,1,"Place François Rabelais",48.946458,2.233144,0,0,OIF:SA:18:163,Europe/Paris,,OIF, +OIF:SP:18:164,1,"Place François Rabelais",48.9467,2.23272,0,0,OIF:SA:18:163,Europe/Paris,,OIF, +OIF:SP:18:165,1,"Lycée Jean Jaurès",48.940358,2.22553,0,0,OIF:SA:18:165,Europe/Paris,,OIF, +OIF:SP:18:166,1,"Lycée Jean Jaurès",48.940259,2.225489,0,0,OIF:SA:18:165,Europe/Paris,,OIF, +OIF:SP:18:167,1,"Prudhon",48.943751,2.241731,0,0,OIF:SA:18:167,Europe/Paris,,OIF, +OIF:SP:18:168,1,"Prudhon",48.943661,2.241676,0,0,OIF:SA:18:167,Europe/Paris,,OIF, +OIF:SP:18:169,1,"Pyrénées",48.964615,2.236834,0,0,OIF:SA:18:169,Europe/Paris,,OIF, +OIF:SP:18:17,1,"Jean Allemane",48.95041,2.253767,0,0,OIF:SA:18:16,Europe/Paris,,OIF, +OIF:SP:18:170,1,"Saint-Quentin",48.955917,2.250401,0,0,OIF:SA:18:170,Europe/Paris,,OIF, +OIF:SP:18:171,1,"Saint-Quentin",48.955872,2.250893,0,0,OIF:SA:18:170,Europe/Paris,,OIF, +OIF:SP:18:174,1,"Rue de la Bérionne",48.950842,2.221919,0,0,OIF:SA:18:174,Europe/Paris,,OIF, +OIF:SP:18:175,1,"Rue de la Bérionne",48.950869,2.221632,0,0,OIF:SA:18:174,Europe/Paris,,OIF, +OIF:SP:18:176,1,"Rene Briand",48.959381,2.244377,0,0,OIF:SA:18:176,Europe/Paris,,OIF, +OIF:SP:18:177,1,"Reichsteiner",48.94759,2.243811,0,0,OIF:SA:18:177,Europe/Paris,,OIF, +OIF:SP:18:178,1,"Reichsteiner",48.947773,2.244014,0,0,OIF:SA:18:177,Europe/Paris,,OIF, +OIF:SP:18:179,1,"Résédas",48.942692,2.213574,0,0,OIF:SA:18:179,Europe/Paris,,OIF, +OIF:SP:18:18,1,"Érables",48.946138,2.217059,0,0,OIF:SA:18:18,Europe/Paris,,OIF, +OIF:SP:18:180,1,"Rethondes",48.944699,2.225671,0,0,OIF:SA:18:180,Europe/Paris,,OIF, +OIF:SP:18:181,1,"Rethondes",48.944161,2.226532,0,0,OIF:SA:18:180,Europe/Paris,,OIF, +OIF:SP:18:183,1,"Rosières",48.965798,2.233583,0,0,OIF:SA:18:183,Europe/Paris,,OIF, +OIF:SP:18:184,1,"Rosières",48.965924,2.23391,0,0,OIF:SA:18:183,Europe/Paris,,OIF, +OIF:SP:18:185,1,"Petite Ruelle",48.963401,2.236522,0,0,OIF:SA:18:185,Europe/Paris,,OIF, +OIF:SP:18:186,1,"Petite Ruelle",48.963257,2.236768,0,0,OIF:SA:18:185,Europe/Paris,,OIF, +OIF:SP:18:187,1,"Moulin Sarrazin",48.942519,2.229891,0,0,OIF:SA:18:187,Europe/Paris,,OIF, +OIF:SP:18:188,1,"Moulin Sarrazin",48.942521,2.229335,0,0,OIF:SA:18:187,Europe/Paris,,OIF, +OIF:SP:18:189,1,"Alouettes",48.940926,2.217685,0,0,OIF:SA:18:189,Europe/Paris,,OIF, +OIF:SP:18:19,1,"Érables",48.946255,2.217263,0,0,OIF:SA:18:18,Europe/Paris,,OIF, +OIF:SP:18:190,1,"Alouettes",48.9408,2.218012,0,0,OIF:SA:18:189,Europe/Paris,,OIF, +OIF:SP:18:19133,1,"Collège Colette Lycée Galois",48.928526,2.164136,0,0,OIF:SA:18:19133,Europe/Paris,,OIF, +OIF:SP:18:192,1,"Temple",48.948616,2.245365,0,0,OIF:SA:18:192,Europe/Paris,,OIF, +OIF:SP:18:193,1,"Temple",48.948598,2.245529,0,0,OIF:SA:18:192,Europe/Paris,,OIF, +OIF:SP:18:194,1,"Gandon Texier",48.941945,2.242034,0,0,OIF:SA:18:194,Europe/Paris,,OIF, +OIF:SP:18:19474,1,"Martyrs",48.936164,2.186594,0,0,OIF:SA:16:19506,Europe/Paris,,OIF, +OIF:SP:18:19477,1,"Cimetière",48.932854,2.184871,0,0,OIF:SA:16:19513,Europe/Paris,,OIF, +OIF:SP:18:19480,1,"Pont de Bezons",48.923442,2.217387,0,0,OIF:SA:59720,Europe/Paris,,OIF, +OIF:SP:18:19481,1,"Zola",48.924327,2.208694,0,0,OIF:SA:18:19481,Europe/Paris,,OIF, +OIF:SP:18:19482,1,"Pont de Bezons",48.923232,2.218966,0,0,OIF:SA:59720,Europe/Paris,,OIF, +OIF:SP:18:19483,1,"Pyrénées",48.964713,2.236915,0,0,OIF:SA:18:169,Europe/Paris,,OIF, +OIF:SP:18:19485,1,"Salonique",48.952249,2.208912,0,0,OIF:SA:18:19485,Europe/Paris,,OIF, +OIF:SP:18:19486,1,"L'Angoumois",48.955895,2.206515,0,0,OIF:SA:18:19486,Europe/Paris,,OIF, +OIF:SP:18:19487,1,"Chemin Vert",48.957489,2.209527,0,0,OIF:SA:18:19487,Europe/Paris,,OIF, +OIF:SP:18:19488,1,"J Vercruysse",48.955038,2.212071,0,0,OIF:SA:18:19488,Europe/Paris,,OIF, +OIF:SP:18:19490,1,"Douce Fève",48.963232,2.228251,0,0,OIF:SA:18:19490,Europe/Paris,,OIF, +OIF:SP:18:19491,1,"Robespierre",48.96059,2.228031,0,0,OIF:SA:18:19491,Europe/Paris,,OIF, +OIF:SP:18:19492,1,"Brigadières",48.932777,2.219517,0,0,OIF:SA:18:19492,Europe/Paris,,OIF, +OIF:SP:18:19493,1,"Brigadières",48.93283,2.219408,0,0,OIF:SA:18:19492,Europe/Paris,,OIF, +OIF:SP:18:19494,1,"Gare du Val d'Argenteuil",48.950977,2.231607,0,0,OIF:SA:8738179,Europe/Paris,,OIF, +OIF:SP:18:19495,1,"Colmar",48.927102,2.177373,0,0,OIF:SA:18:19495,Europe/Paris,,OIF, +OIF:SP:18:19496,1,"Diderot",48.923734,2.179047,0,0,OIF:SA:18:19496,Europe/Paris,,OIF, +OIF:SP:18:19497,1,"Diderot",48.924093,2.179073,0,0,OIF:SA:18:19496,Europe/Paris,,OIF, +OIF:SP:18:19499,1,"Henri Barbusse",48.938911,2.191715,0,0,OIF:SA:18:19499,Europe/Paris,,OIF, +OIF:SP:18:195,1,"Gandon Texier",48.941756,2.241305,0,0,OIF:SA:18:194,Europe/Paris,,OIF, +OIF:SP:18:19500,1,"Henri Barbusse",48.938929,2.191333,0,0,OIF:SA:18:19499,Europe/Paris,,OIF, +OIF:SP:18:19501,1,"Cloviers",48.955183,2.254988,0,0,OIF:SA:18:19501,Europe/Paris,,OIF, +OIF:SP:18:19503,1,"Charles Michels",48.948817,2.209493,0,0,OIF:SA:18:19503,Europe/Paris,,OIF, +OIF:SP:18:19504,1,"Jean Poulmarch",48.952632,2.213823,0,0,OIF:SA:18:106,Europe/Paris,,OIF, +OIF:SP:18:19505,1,"Fosse aux Loups",48.950631,2.208888,0,0,OIF:SA:18:161,Europe/Paris,,OIF, +OIF:SP:18:19506,1,"Robert Schumann",48.94835,2.193844,0,0,OIF:SA:18:19506,Europe/Paris,,OIF, +OIF:SP:18:19507,1,"Robert Schumann",48.948179,2.193981,0,0,OIF:SA:18:19506,Europe/Paris,,OIF, +OIF:SP:18:19508,1,"Sureaux",48.948166,2.206261,0,0,OIF:SA:18:19508,Europe/Paris,,OIF, +OIF:SP:18:19509,1,"Sureaux",48.948182,2.206008,0,0,OIF:SA:18:19509,Europe/Paris,,OIF, +OIF:SP:18:19510,1,"Pelletan",48.929007,2.184459,0,0,OIF:SA:16:19515,Europe/Paris,,OIF, +OIF:SP:18:19511,1,"Pelletan",48.928909,2.184992,0,0,OIF:SA:16:19515,Europe/Paris,,OIF, +OIF:SP:18:19512,1,"Grâce de Dieu",48.927344,2.215855,0,0,OIF:SA:18:19512,Europe/Paris,,OIF, +OIF:SP:18:19513,1,"Grâce de Dieu",48.927365,2.215846,0,0,OIF:SA:18:19512,Europe/Paris,,OIF, +OIF:SP:18:19514,1,"Henri Barbusse",48.92572,2.21181,0,0,OIF:SA:18:19514,Europe/Paris,,OIF, +OIF:SP:18:19515,1,"Henri Barbusse",48.925795,2.211732,0,0,OIF:SA:18:19514,Europe/Paris,,OIF, +OIF:SP:18:19516,1,"Zola",48.924273,2.208858,0,0,OIF:SA:18:19481,Europe/Paris,,OIF, +OIF:SP:18:19517,1,"Pont de Bezons",48.923414,2.217478,0,0,OIF:SA:59720,Europe/Paris,,OIF, +OIF:SP:18:19518,1,"Pont de Bezons",48.923012,2.219706,0,0,OIF:SA:59720,Europe/Paris,,OIF, +OIF:SP:18:19520,1,"Carasso",48.921253,2.217293,0,0,OIF:SA:59720,Europe/Paris,,OIF, +OIF:SP:18:19522,1,"Les Perriers",48.952071,2.186889,0,0,OIF:SA:18:1017,Europe/Paris,,OIF, +OIF:SP:18:19527,1,"La Rivière",48.914774,2.204434,0,0,OIF:SA:18:19527,Europe/Paris,,OIF, +OIF:SP:18:19528,1,"La Rivière",48.914433,2.203525,0,0,OIF:SA:18:19527,Europe/Paris,,OIF, +OIF:SP:18:19539,1,"Lycée de Carrières",48.914802,2.171356,0,0,OIF:SA:18:19539,Europe/Paris,,OIF, +OIF:SP:18:19540,1,"Lycée de Carrières",48.914802,2.171356,0,0,OIF:SA:18:19539,Europe/Paris,,OIF, +OIF:SP:18:19547,1,"Antonin Georges Belin",48.945625,2.247308,0,0,OIF:SA:18:19547,Europe/Paris,,OIF, +OIF:SP:18:19551,1,"Liserons",48.941438,2.209225,0,0,OIF:SA:18:127,Europe/Paris,,OIF, +OIF:SP:18:19556,1,"Trembleaux",48.952415,2.184081,0,0,OIF:SA:18:19556,Europe/Paris,,OIF, +OIF:SP:18:19558,1,"Marguerite",48.939714,2.216588,0,0,OIF:SA:18:19558,Europe/Paris,,OIF, +OIF:SP:18:19559,1,"Gibet",48.938079,2.217023,0,0,OIF:SA:18:19559,Europe/Paris,,OIF, +OIF:SP:18:19560,1,"Justice",48.93475,2.215625,0,0,OIF:SA:18:19560,Europe/Paris,,OIF, +OIF:SP:18:19561,1,"Albert 1er",48.934714,2.208778,0,0,OIF:SA:18:19561,Europe/Paris,,OIF, +OIF:SP:18:19563,1,"Val Notre-Dame",48.942296,2.206901,0,0,OIF:SA:18:19563,Europe/Paris,,OIF, +OIF:SP:18:19564,1,"Le Prunet",48.94254,2.209929,0,0,OIF:SA:18:19564,Europe/Paris,,OIF, +OIF:SP:18:19565,1,"4 Chemins",48.943972,2.185031,0,0,OIF:SA:18:19565,Europe/Paris,,OIF, +OIF:SP:18:19566,1,"Petit Bois",48.914697,2.17497,0,0,OIF:SA:16:19183,Europe/Paris,,OIF, +OIF:SP:18:19574,1,"Gare d'Argenteuil",48.946633,2.257452,0,0,OIF:SA:8738184,Europe/Paris,,OIF, +OIF:SP:18:19575,1,"Avenue du Marais",48.931757,2.234319,0,0,OIF:SA:18:19575,Europe/Paris,,OIF, +OIF:SP:18:19576,1,"Jaurès Branchard",48.924446,2.220136,0,0,OIF:SA:59720,Europe/Paris,,OIF, +OIF:SP:18:19577,1,"Grand Cerf",48.923642,2.207496,0,0,OIF:SA:8743282,Europe/Paris,,OIF, +OIF:SP:18:19578,1,"Calmette",48.922479,2.203912,0,0,OIF:SA:18:19578,Europe/Paris,,OIF, +OIF:SP:18:19579,1,"La Fontaine",48.920413,2.196949,0,0,OIF:SA:16:19520,Europe/Paris,,OIF, +OIF:SP:18:19580,1,"Gare de Houilles Carrières-sur-Seine",48.919486,2.185605,0,0,OIF:SA:8738640,Europe/Paris,,OIF, +OIF:SP:18:19581,1,"Gare de Houilles Carrières-sur-Seine",48.919427,2.185729,0,0,OIF:SA:8738640,Europe/Paris,,OIF, +OIF:SP:18:19582,1,"La Fontaine",48.920528,2.197743,0,0,OIF:SA:16:19520,Europe/Paris,,OIF, +OIF:SP:18:19583,1,"Calmette",48.922681,2.204892,0,0,OIF:SA:18:19578,Europe/Paris,,OIF, +OIF:SP:18:19584,1,"Grand Cerf",48.92337,2.20702,0,0,OIF:SA:8743282,Europe/Paris,,OIF, +OIF:SP:18:19585,1,"Jaurès Branchard",48.924752,2.22064,0,0,OIF:SA:59720,Europe/Paris,,OIF, +OIF:SP:18:19586,1,"Avenue du Marais",48.93182,2.234414,0,0,OIF:SA:18:19575,Europe/Paris,,OIF, +OIF:SP:18:19587,1,"Gare d'Argenteuil",48.946908,2.25702,0,0,OIF:SA:8738184,Europe/Paris,,OIF, +OIF:SP:18:19588,1,"Gare de Houilles Carrières-sur-Seine",48.920083,2.184796,0,0,OIF:SA:8738640,Europe/Paris,,OIF, +OIF:SP:18:19589,1,"Gare de Houilles Carrières-sur-Seine",48.92031,2.184368,0,0,OIF:SA:8738640,Europe/Paris,,OIF, +OIF:SP:18:19593,1,"Rond-Point du Cormier",48.959156,2.20244,0,0,OIF:SA:18:19593,Europe/Paris,,OIF, +OIF:SP:18:19596,1,"Gare de Cormeilles-en-Parisis",48.967622,2.194617,0,0,OIF:SA:8738186,Europe/Paris,,OIF, +OIF:SP:18:19597,1,"Place des Arts",48.958276,2.196764,0,0,OIF:SA:18:19597,Europe/Paris,,OIF, +OIF:SP:18:19598,1,"Place des Arts",48.95829,2.197664,0,0,OIF:SA:18:19597,Europe/Paris,,OIF, +OIF:SP:18:19599,1,"Collège L.Hayet",48.958898,2.191048,0,0,OIF:SA:18:19599,Europe/Paris,,OIF, +OIF:SP:18:196,1,"Jean Pierre Timbaud",48.947601,2.215704,0,0,OIF:SA:18:196,Europe/Paris,,OIF, +OIF:SP:18:19600,1,"Les Écrivains",48.959748,2.189085,0,0,OIF:SA:18:19600,Europe/Paris,,OIF, +OIF:SP:18:19601,1,"Les Écrivains",48.95961,2.188959,0,0,OIF:SA:18:19600,Europe/Paris,,OIF, +OIF:SP:18:19602,1,"Fauvettes",48.961583,2.190305,0,0,OIF:SA:18:19602,Europe/Paris,,OIF, +OIF:SP:18:19603,1,"Fauvettes",48.96188,2.190187,0,0,OIF:SA:18:19602,Europe/Paris,,OIF, +OIF:SP:18:19604,1,"Edouard Imbs",48.963922,2.191701,0,0,OIF:SA:18:19604,Europe/Paris,,OIF, +OIF:SP:18:19605,1,"Edouard Imbs",48.96412,2.191696,0,0,OIF:SA:18:19604,Europe/Paris,,OIF, +OIF:SP:18:19606,1,"Rond-Point du Cormier",48.959277,2.202633,0,0,OIF:SA:18:19593,Europe/Paris,,OIF, +OIF:SP:18:19608,1,"Les Coudrées",48.951755,2.202127,0,0,OIF:SA:18:19608,Europe/Paris,,OIF, +OIF:SP:18:19609,1,"Les Bruyères",48.955009,2.202141,0,0,OIF:SA:18:19609,Europe/Paris,,OIF, +OIF:SP:18:19610,1,"Les Bruyères",48.955415,2.20216,0,0,OIF:SA:18:19609,Europe/Paris,,OIF, +OIF:SP:18:19611,1,"Les Coudrées",48.951442,2.202567,0,0,OIF:SA:18:19608,Europe/Paris,,OIF, +OIF:SP:18:19613,1,"Grâce de Dieu",48.927744,2.215717,0,0,OIF:SA:18:19512,Europe/Paris,,OIF, +OIF:SP:18:19614,1,"Grâce de Dieu",48.927551,2.215336,0,0,OIF:SA:18:19512,Europe/Paris,,OIF, +OIF:SP:18:19616,1,"Val d'Or",48.97379,2.188915,0,0,OIF:SA:18:19616,Europe/Paris,,OIF, +OIF:SP:18:19617,1,"Val d'Or",48.973764,2.188765,0,0,OIF:SA:18:19616,Europe/Paris,,OIF, +OIF:SP:18:19618,1,"Gare de la Frette-Montigny",48.979848,2.181088,0,0,OIF:SA:8738187,Europe/Paris,,OIF, +OIF:SP:18:19634,1,"Île-de-France",48.955161,2.289082,0,0,OIF:SA:18:19634,Europe/Paris,,OIF, +OIF:SP:18:19635,1,"Île-de-France",48.955179,2.288826,0,0,OIF:SA:18:19634,Europe/Paris,,OIF, +OIF:SP:18:19636,1,"Lyon",48.955198,2.292473,0,0,OIF:SA:59916,Europe/Paris,,OIF, +OIF:SP:18:19637,1,"Lyon",48.955265,2.292807,0,0,OIF:SA:59916,Europe/Paris,,OIF, +OIF:SP:18:19638,1,"Rue de Marseille",48.956689,2.293969,0,0,OIF:SA:59916,Europe/Paris,,OIF, +OIF:SP:18:19639,1,"Rue de Marseille",48.956317,2.29392,0,0,OIF:SA:59916,Europe/Paris,,OIF, +OIF:SP:18:19640,1,"Gare de Houilles Carrières-sur-Seine",48.919162,2.186546,0,0,OIF:SA:8738640,Europe/Paris,,OIF, +OIF:SP:18:19641,1,"Le Moulin",48.969812,2.233952,0,0,OIF:SA:18:19641,Europe/Paris,,OIF, +OIF:SP:18:19642,1,"Trembleaux",48.952415,2.184081,0,0,OIF:SA:18:19556,Europe/Paris,,OIF, +OIF:SP:18:19643,1,"Champagne Roussillon",48.962039,2.245389,0,0,OIF:SA:18:19643,Europe/Paris,,OIF, +OIF:SP:18:19667,1,"Épinay Orgemont",48.955244,2.293844,0,0,OIF:SA:59916,Europe/Paris,,OIF, +OIF:SP:18:19668,1,"Épinay Orgemont",48.955502,2.293943,0,0,OIF:SA:59916,Europe/Paris,,OIF, +OIF:SP:18:19669,1,"Dunkerque",48.960707,2.293569,0,0,OIF:SA:18:19669,Europe/Paris,,OIF, +OIF:SP:18:19670,1,"Dunkerque",48.960377,2.293295,0,0,OIF:SA:18:19669,Europe/Paris,,OIF, +OIF:SP:18:19676,1,"Aristide Briand",48.970554,2.193488,0,0,OIF:SA:18:19676,Europe/Paris,,OIF, +OIF:SP:18:19677,1,"Aristide Briand",48.970463,2.193448,0,0,OIF:SA:18:19676,Europe/Paris,,OIF, +OIF:SP:18:19678,1,"Gare de la Frette-Montigny",48.979848,2.181088,0,0,OIF:SA:8738187,Europe/Paris,,OIF, +OIF:SP:18:19683,1,"Général Delambre",48.929987,2.227127,0,0,OIF:SA:18:19683,Europe/Paris,,OIF, +OIF:SP:18:19684,1,"Général Delambre",48.931164,2.229145,0,0,OIF:SA:18:19683,Europe/Paris,,OIF, +OIF:SP:18:19687,1,"Jean Borderel",48.942655,2.254348,0,0,OIF:SA:18:19687,Europe/Paris,,OIF, +OIF:SP:18:19688,1,"Petit Marly",48.938103,2.245537,0,0,OIF:SA:18:159,Europe/Paris,,OIF, +OIF:SP:18:19711,1,"Patures",48.914233,2.198509,0,0,OIF:SA:16:19175,Europe/Paris,,OIF, +OIF:SP:18:19712,1,"Patures",48.914416,2.198261,0,0,OIF:SA:16:19175,Europe/Paris,,OIF, +OIF:SP:18:198,1,"Troupeau",48.946108,2.223567,0,0,OIF:SA:18:198,Europe/Paris,,OIF, +OIF:SP:18:199,1,"Troupeau",48.946001,2.224181,0,0,OIF:SA:18:198,Europe/Paris,,OIF, +OIF:SP:18:20,1,"Balsamines",48.958747,2.255477,0,0,OIF:SA:18:20,Europe/Paris,,OIF, +OIF:SP:18:200,1,"Henri Vasseur",48.950725,2.264033,0,0,OIF:SA:18:200,Europe/Paris,,OIF, +OIF:SP:18:201,1,"Henri Vasseur",48.950299,2.262609,0,0,OIF:SA:18:200,Europe/Paris,,OIF, +OIF:SP:18:202,1,"Vaucelle",48.95424,2.272129,0,0,OIF:SA:18:202,Europe/Paris,,OIF, +OIF:SP:18:203,1,"Vaucelle",48.953861,2.271688,0,0,OIF:SA:18:202,Europe/Paris,,OIF, +OIF:SP:18:204,1,"Victoire",48.946329,2.219637,0,0,OIF:SA:18:204,Europe/Paris,,OIF, +OIF:SP:18:205,1,"Victoire",48.946474,2.220605,0,0,OIF:SA:18:204,Europe/Paris,,OIF, +OIF:SP:18:206,1,"Les Champioux",48.940603,2.223071,0,0,OIF:SA:18:206,Europe/Paris,,OIF, +OIF:SP:18:207,1,"Les Champioux",48.94057,2.221355,0,0,OIF:SA:18:206,Europe/Paris,,OIF, +OIF:SP:18:208,1,"Hôtel de Ville",48.946964,2.24951,0,0,OIF:SA:18:11,Europe/Paris,,OIF, +OIF:SP:18:209,1,"Hôtel de Ville",48.946948,2.249734,0,0,OIF:SA:18:11,Europe/Paris,,OIF, +OIF:SP:18:21,1,"Beethoven",48.954166,2.220206,0,0,OIF:SA:18:21,Europe/Paris,,OIF, +OIF:SP:18:210,1,"Violettes",48.945262,2.213513,0,0,OIF:SA:18:210,Europe/Paris,,OIF, +OIF:SP:18:211,1,"Grande Voie",48.959943,2.238289,0,0,OIF:SA:18:211,Europe/Paris,,OIF, +OIF:SP:18:212,1,"Grande Voie",48.959584,2.238809,0,0,OIF:SA:18:211,Europe/Paris,,OIF, +OIF:SP:18:217,1,"Albert 1er",48.932934,2.206409,0,0,OIF:SA:18:19561,Europe/Paris,,OIF, +OIF:SP:18:219,1,"Anjou",48.930803,2.20752,0,0,OIF:SA:18:219,Europe/Paris,,OIF, +OIF:SP:18:22,1,"Beethoven",48.954229,2.220096,0,0,OIF:SA:18:21,Europe/Paris,,OIF, +OIF:SP:18:223,1,"La Berthie",48.937382,2.206575,0,0,OIF:SA:18:1020,Europe/Paris,,OIF, +OIF:SP:18:2238,1,"Marceau Guillot",48.954751,2.242229,0,0,OIF:SA:18:108,Europe/Paris,,OIF, +OIF:SP:18:224,1,"J S Bach",48.934544,2.218696,0,0,OIF:SA:18:224,Europe/Paris,,OIF, +OIF:SP:18:2240,1,"Marceau Guillot",48.954958,2.242365,0,0,OIF:SA:18:108,Europe/Paris,,OIF, +OIF:SP:18:2241,1,"4 Septembre",48.920274,2.185944,0,0,OIF:SA:18:2241,Europe/Paris,,OIF, +OIF:SP:18:225,1,"Js Bach",48.934751,2.218971,0,0,OIF:SA:18:224,Europe/Paris,,OIF, +OIF:SP:18:232,1,"Joliot Curie",48.932995,2.205085,0,0,OIF:SA:18:232,Europe/Paris,,OIF, +OIF:SP:18:233,1,"Joliot Curie",48.933139,2.205085,0,0,OIF:SA:18:232,Europe/Paris,,OIF, +OIF:SP:18:236,1,"Paul Éluard",48.931534,2.208663,0,0,OIF:SA:18:236,Europe/Paris,,OIF, +OIF:SP:18:237,1,"Colonel Fabien",48.933213,2.215274,0,0,OIF:SA:18:237,Europe/Paris,,OIF, +OIF:SP:18:238,1,"Colonel Fabien",48.933127,2.215112,0,0,OIF:SA:18:237,Europe/Paris,,OIF, +OIF:SP:18:239,1,"Victor Hugo",48.927757,2.223498,0,0,OIF:SA:18:239,Europe/Paris,,OIF, +OIF:SP:18:24,1,"Antonin Georges Belin",48.946515,2.247347,0,0,OIF:SA:18:19547,Europe/Paris,,OIF, +OIF:SP:18:240,1,"Victor Hugo",48.927595,2.223143,0,0,OIF:SA:18:239,Europe/Paris,,OIF, +OIF:SP:18:241,1,"Justice",48.934732,2.215666,0,0,OIF:SA:18:19560,Europe/Paris,,OIF, +OIF:SP:18:242,1,"Lilas",48.930381,2.217645,0,0,OIF:SA:18:242,Europe/Paris,,OIF, +OIF:SP:18:243,1,"Lilas",48.930521,2.219332,0,0,OIF:SA:18:242,Europe/Paris,,OIF, +OIF:SP:18:245,1,"Parmentier",48.931558,2.21461,0,0,OIF:SA:18:245,Europe/Paris,,OIF, +OIF:SP:18:246,1,"Parmentier",48.931666,2.214323,0,0,OIF:SA:18:245,Europe/Paris,,OIF, +OIF:SP:18:248,1,"P. Potdevin",48.93521,2.203532,0,0,OIF:SA:18:248,Europe/Paris,,OIF, +OIF:SP:18:249,1,"P. Potdevin",48.935526,2.203893,0,0,OIF:SA:18:248,Europe/Paris,,OIF, +OIF:SP:18:25,1,"Antonin Georges Belin",48.94673,2.247333,0,0,OIF:SA:18:19547,Europe/Paris,,OIF, +OIF:SP:18:250,1,"Francis de Pressensé",48.930202,2.221722,0,0,OIF:SA:18:250,Europe/Paris,,OIF, +OIF:SP:18:251,1,"Francis de Pressensé",48.930325,2.221733,0,0,OIF:SA:18:250,Europe/Paris,,OIF, +OIF:SP:18:252,1,"Dr Rouques",48.92785,2.21083,0,0,OIF:SA:18:252,Europe/Paris,,OIF, +OIF:SP:18:253,1,"Sacco et Vanzetti",48.936518,2.204913,0,0,OIF:SA:18:253,Europe/Paris,,OIF, +OIF:SP:18:254,1,"Sacco et Vanzetti",48.936797,2.205253,0,0,OIF:SA:18:253,Europe/Paris,,OIF, +OIF:SP:18:257,1,"Vaillant",48.927566,2.213251,0,0,OIF:SA:18:257,Europe/Paris,,OIF, +OIF:SP:18:26,1,"Antonin Georges Belin",48.945542,2.246917,0,0,OIF:SA:18:19547,Europe/Paris,,OIF, +OIF:SP:18:29,1,"Bérionne",48.952559,2.221765,0,0,OIF:SA:18:29,Europe/Paris,,OIF, +OIF:SP:18:30,1,"Bérionne",48.953008,2.221396,0,0,OIF:SA:18:29,Europe/Paris,,OIF, +OIF:SP:18:31,1,"Pont Blanc",48.953224,2.254308,0,0,OIF:SA:18:31,Europe/Paris,,OIF, +OIF:SP:18:32,1,"Pont Blanc",48.953322,2.254185,0,0,OIF:SA:18:31,Europe/Paris,,OIF, +OIF:SP:18:33,1,"Jean Borderel",48.942905,2.252169,0,0,OIF:SA:18:19687,Europe/Paris,,OIF, +OIF:SP:18:34,1,"Jean Borderel",48.942672,2.252511,0,0,OIF:SA:18:19687,Europe/Paris,,OIF, +OIF:SP:18:35,1,"Bretagne",48.945812,2.234332,0,0,OIF:SA:18:35,Europe/Paris,,OIF, +OIF:SP:18:36,1,"Bretagne",48.945983,2.234195,0,0,OIF:SA:18:35,Europe/Paris,,OIF, +OIF:SP:18:365,1,"Limite des Départements",48.965666,2.300394,0,0,OIF:SA:18:365,Europe/Paris,,OIF, +OIF:SP:18:366,1,"Limite des Départements",48.965612,2.300476,0,0,OIF:SA:18:365,Europe/Paris,,OIF, +OIF:SP:18:368,1,"Casino",48.968957,2.30506,0,0,OIF:SA:18:368,Europe/Paris,,OIF, +OIF:SP:18:369,1,"Casino",48.969208,2.304719,0,0,OIF:SA:18:368,Europe/Paris,,OIF, +OIF:SP:18:37,1,"Maurice Utrillo",48.93986,2.233589,0,0,OIF:SA:18:37,Europe/Paris,,OIF, +OIF:SP:18:376,1,"Gare d'Enghien-les-Bains",48.972103,2.30799,0,0,OIF:SA:8727602,Europe/Paris,,OIF, +OIF:SP:18:377,1,"Gare d'Enghien-les-Bains",48.972062,2.307992,0,0,OIF:SA:8727602,Europe/Paris,,OIF, +OIF:SP:18:38,1,"Maurice Utrillo",48.939791,2.234712,0,0,OIF:SA:18:37,Europe/Paris,,OIF, +OIF:SP:18:388,1,"Mairie d'Enghien",48.97,2.308854,0,0,OIF:SA:18:388,Europe/Paris,,OIF, +OIF:SP:18:39,1,"Calais",48.943789,2.244364,0,0,OIF:SA:18:39,Europe/Paris,,OIF, +OIF:SP:18:396,1,"Cygne d'Enghien",48.961297,2.294447,0,0,OIF:SA:8798657,Europe/Paris,,OIF, +OIF:SP:18:397,1,"Cygne d'Enghien",48.961521,2.29457,0,0,OIF:SA:8798657,Europe/Paris,,OIF, +OIF:SP:18:40,1,"Calais",48.944365,2.245427,0,0,OIF:SA:18:39,Europe/Paris,,OIF, +OIF:SP:18:403,1,"Rue de Saint-Gratien",48.963527,2.29783,0,0,OIF:SA:18:403,Europe/Paris,,OIF, +OIF:SP:18:404,1,"Rue de Saint-Gratien",48.963868,2.298089,0,0,OIF:SA:18:403,Europe/Paris,,OIF, +OIF:SP:18:423,1,"Chanzy",48.930028,2.181292,0,0,OIF:SA:18:423,Europe/Paris,,OIF, +OIF:SP:18:424,1,"Chanzy",48.929453,2.181771,0,0,OIF:SA:18:423,Europe/Paris,,OIF, +OIF:SP:18:425,1,"Cimetière",48.932218,2.186032,0,0,OIF:SA:16:19513,Europe/Paris,,OIF, +OIF:SP:18:426,1,"Concorde",48.924248,2.173604,0,0,OIF:SA:18:426,Europe/Paris,,OIF, +OIF:SP:18:427,1,"Condorcet",48.930785,2.176257,0,0,OIF:SA:18:427,Europe/Paris,,OIF, +OIF:SP:18:428,1,"Condorcet",48.930632,2.176394,0,0,OIF:SA:18:427,Europe/Paris,,OIF, +OIF:SP:18:429,1,"Écoles",48.93424,2.185972,0,0,OIF:SA:16:19508,Europe/Paris,,OIF, +OIF:SP:18:43,1,"Martyrs de Chateaubriant",48.952745,2.218239,0,0,OIF:SA:18:43,Europe/Paris,,OIF, +OIF:SP:18:430,1,"Écoles",48.934069,2.186191,0,0,OIF:SA:16:19508,Europe/Paris,,OIF, +OIF:SP:18:433,1,"Gare de Houilles Carrières-sur-Seine",48.919377,2.185961,0,0,OIF:SA:8738640,Europe/Paris,,OIF, +OIF:SP:18:436,1,"Victor Hugo",48.925693,2.175105,0,0,OIF:SA:18:436,Europe/Paris,,OIF, +OIF:SP:18:437,1,"Kennedy",48.922555,2.177796,0,0,OIF:SA:18:437,Europe/Paris,,OIF, +OIF:SP:18:438,1,"Lavoisier",48.929355,2.17562,0,0,OIF:SA:18:438,Europe/Paris,,OIF, +OIF:SP:18:439,1,"Lavoisier",48.929589,2.17551,0,0,OIF:SA:18:438,Europe/Paris,,OIF, +OIF:SP:18:44,1,"Martyrs de Chateaubriant",48.95295,2.218233,0,0,OIF:SA:18:43,Europe/Paris,,OIF, +OIF:SP:18:441,1,"Marine",48.921967,2.174961,0,0,OIF:SA:18:441,Europe/Paris,,OIF, +OIF:SP:18:442,1,"Martyrs",48.936155,2.186907,0,0,OIF:SA:16:19506,Europe/Paris,,OIF, +OIF:SP:18:443,1,"La Paix - Passerelle",48.927804,2.171711,0,0,OIF:SA:18:443,Europe/Paris,,OIF, +OIF:SP:18:444,1,"La Paix - Passerelle",48.927347,2.172653,0,0,OIF:SA:18:443,Europe/Paris,,OIF, +OIF:SP:18:445,1,"Pont",48.923352,2.178975,0,0,OIF:SA:18:445,Europe/Paris,,OIF, +OIF:SP:18:446,1,"Solferino",48.927716,2.172761,0,0,OIF:SA:18:446,Europe/Paris,,OIF, +OIF:SP:18:45,1,"Champguérin",48.956709,2.283001,0,0,OIF:SA:18:45,Europe/Paris,,OIF, +OIF:SP:18:46,1,"Champguérin",48.956466,2.282429,0,0,OIF:SA:18:45,Europe/Paris,,OIF, +OIF:SP:18:47,1,"Chanteloup",48.949274,2.217502,0,0,OIF:SA:18:47,Europe/Paris,,OIF, +OIF:SP:18:49,1,"Champagne Roussillon",48.96215,2.24575,0,0,OIF:SA:18:19643,Europe/Paris,,OIF, +OIF:SP:18:50,1,"Charcot",48.946839,2.237509,0,0,OIF:SA:18:50,Europe/Paris,,OIF, +OIF:SP:18:51,1,"Charcot",48.946642,2.23751,0,0,OIF:SA:18:50,Europe/Paris,,OIF, +OIF:SP:18:52,1,"Châtaigniers",48.960744,2.251867,0,0,OIF:SA:18:52,Europe/Paris,,OIF, +OIF:SP:18:53,1,"Châtaigniers",48.960895,2.252649,0,0,OIF:SA:18:52,Europe/Paris,,OIF, +OIF:SP:18:54,1,"Clemenceau",48.958191,2.239316,0,0,OIF:SA:18:54,Europe/Paris,,OIF, +OIF:SP:18:55,1,"Clemenceau",48.958362,2.23948,0,0,OIF:SA:18:54,Europe/Paris,,OIF, +OIF:SP:18:567,1,"Joffre",48.96899,2.23531,0,0,OIF:SA:18:567,Europe/Paris,,OIF, +OIF:SP:18:569,1,"Le Moulin",48.969789,2.234244,0,0,OIF:SA:18:19641,Europe/Paris,,OIF, +OIF:SP:18:570,1,"Romain Rolland",48.968943,2.23314,0,0,OIF:SA:18:570,Europe/Paris,,OIF, +OIF:SP:18:58,1,"Collège Claude Monet",48.955401,2.22427,0,0,OIF:SA:18:58,Europe/Paris,,OIF, +OIF:SP:18:59,1,"Collège Claude Monet",48.955562,2.223942,0,0,OIF:SA:18:58,Europe/Paris,,OIF, +OIF:SP:18:60,1,"Route de Cormeilles",48.955839,2.231883,0,0,OIF:SA:18:60,Europe/Paris,,OIF, +OIF:SP:18:61,1,"Route de Cormeilles",48.955731,2.231856,0,0,OIF:SA:18:60,Europe/Paris,,OIF, +OIF:SP:18:62,1,"Pierre de Coubertin",48.956114,2.227393,0,0,OIF:SA:18:62,Europe/Paris,,OIF, +OIF:SP:18:63,1,"Pierre de Coubertin",48.956158,2.226984,0,0,OIF:SA:18:62,Europe/Paris,,OIF, +OIF:SP:18:636,1,"MJC",48.944647,2.159978,0,0,OIF:SA:18:636,Europe/Paris,,OIF, +OIF:SP:18:637,1,"MJC",48.944543,2.159569,0,0,OIF:SA:18:636,Europe/Paris,,OIF, +OIF:SP:18:638,1,"Aboukir",48.925727,2.158311,0,0,OIF:SA:18:638,Europe/Paris,,OIF, +OIF:SP:18:639,1,"Aboukir",48.925862,2.158283,0,0,OIF:SA:18:638,Europe/Paris,,OIF, +OIF:SP:18:64,1,"Rue de Coudray",48.954751,2.231039,0,0,OIF:SA:18:64,Europe/Paris,,OIF, +OIF:SP:18:640,1,"Alphonse Allais",48.941159,2.185392,0,0,OIF:SA:18:640,Europe/Paris,,OIF, +OIF:SP:18:641,1,"Alphonse Allais",48.941298,2.185441,0,0,OIF:SA:18:640,Europe/Paris,,OIF, +OIF:SP:18:642,1,"Barian",48.93834,2.200147,0,0,OIF:SA:18:642,Europe/Paris,,OIF, +OIF:SP:18:643,1,"Barian",48.938355,2.200297,0,0,OIF:SA:18:642,Europe/Paris,,OIF, +OIF:SP:18:644,1,"Baudin",48.942092,2.17984,0,0,OIF:SA:18:644,Europe/Paris,,OIF, +OIF:SP:18:645,1,"Claude Bernard",48.927576,2.156654,0,0,OIF:SA:18:645,Europe/Paris,,OIF, +OIF:SP:18:646,1,"Claude Bernard",48.927836,2.156735,0,0,OIF:SA:18:645,Europe/Paris,,OIF, +OIF:SP:18:647,1,"Berry",48.946172,2.205133,0,0,OIF:SA:18:647,Europe/Paris,,OIF, +OIF:SP:18:648,1,"Berry",48.946088,2.204452,0,0,OIF:SA:18:647,Europe/Paris,,OIF, +OIF:SP:18:649,1,"Boulevard de Bezons",48.939476,2.190663,0,0,OIF:SA:18:649,Europe/Paris,,OIF, +OIF:SP:18:65,1,"Rue de Coudray",48.954814,2.230903,0,0,OIF:SA:18:64,Europe/Paris,,OIF, +OIF:SP:18:650,1,"Boulevard de Bezons",48.939538,2.190226,0,0,OIF:SA:18:649,Europe/Paris,,OIF, +OIF:SP:18:651,1,"Bordin",48.947013,2.163877,0,0,OIF:SA:18:651,Europe/Paris,,OIF, +OIF:SP:18:652,1,"Bordin",48.947233,2.164663,0,0,OIF:SA:18:651,Europe/Paris,,OIF, +OIF:SP:18:656,1,"Centre Commercial",48.949155,2.198208,0,0,OIF:SA:18:656,Europe/Paris,,OIF, +OIF:SP:18:657,1,"Centre Commercial",48.948553,2.19866,0,0,OIF:SA:18:656,Europe/Paris,,OIF, +OIF:SP:18:658,1,"Rue de Chatou",48.94313,2.190028,0,0,OIF:SA:18:658,Europe/Paris,,OIF, +OIF:SP:18:659,1,"Rue de Chatou",48.943427,2.187869,0,0,OIF:SA:18:658,Europe/Paris,,OIF, +OIF:SP:18:66,1,"Courlis",48.944906,2.216652,0,0,OIF:SA:18:66,Europe/Paris,,OIF, +OIF:SP:18:662,1,"Clemenceau",48.942677,2.190357,0,0,OIF:SA:18:662,Europe/Paris,,OIF, +OIF:SP:18:663,1,"Clemenceau",48.942486,2.190436,0,0,OIF:SA:18:662,Europe/Paris,,OIF, +OIF:SP:18:668,1,"Condorcet",48.941494,2.202786,0,0,OIF:SA:18:668,Europe/Paris,,OIF, +OIF:SP:18:669,1,"Convention",48.93437,2.167218,0,0,OIF:SA:18:669,Europe/Paris,,OIF, +OIF:SP:18:67,1,"Courlis",48.945391,2.216774,0,0,OIF:SA:18:66,Europe/Paris,,OIF, +OIF:SP:18:670,1,"Convention",48.933735,2.166763,0,0,OIF:SA:18:669,Europe/Paris,,OIF, +OIF:SP:18:671,1,"Courteline",48.93759,2.179338,0,0,OIF:SA:18:671,Europe/Paris,,OIF, +OIF:SP:18:672,1,"Courteline",48.937454,2.179335,0,0,OIF:SA:18:671,Europe/Paris,,OIF, +OIF:SP:18:675,1,"Joliot Curie",48.942856,2.181542,0,0,OIF:SA:18:675,Europe/Paris,,OIF, +OIF:SP:18:676,1,"Joliot Curie",48.942422,2.182114,0,0,OIF:SA:18:675,Europe/Paris,,OIF, +OIF:SP:18:677,1,"Martial Dechard",48.94733,2.171271,0,0,OIF:SA:18:677,Europe/Paris,,OIF, +OIF:SP:18:679,1,"Martial Dechard",48.947893,2.170589,0,0,OIF:SA:18:677,Europe/Paris,,OIF, +OIF:SP:18:68,1,"Le Prunet",48.943832,2.209944,0,0,OIF:SA:18:19564,Europe/Paris,,OIF, +OIF:SP:18:680,1,"Église",48.945682,2.173564,0,0,OIF:SA:18:680,Europe/Paris,,OIF, +OIF:SP:18:681,1,"Église",48.945197,2.174084,0,0,OIF:SA:18:680,Europe/Paris,,OIF, +OIF:SP:18:682,1,"Saint-Exupéry",48.944374,2.194607,0,0,OIF:SA:18:682,Europe/Paris,,OIF, +OIF:SP:18:683,1,"Saint-Exupéry",48.944961,2.194647,0,0,OIF:SA:18:682,Europe/Paris,,OIF, +OIF:SP:18:684,1,"Flaubert",48.946616,2.194592,0,0,OIF:SA:18:684,Europe/Paris,,OIF, +OIF:SP:18:685,1,"Flaubert",48.946787,2.194763,0,0,OIF:SA:18:684,Europe/Paris,,OIF, +OIF:SP:18:686,1,"Condorcet",48.941861,2.201448,0,0,OIF:SA:18:668,Europe/Paris,,OIF, +OIF:SP:18:687,1,"Florian",48.942153,2.197763,0,0,OIF:SA:18:687,Europe/Paris,,OIF, +OIF:SP:18:688,1,"Franklin",48.93126,2.156518,0,0,OIF:SA:18:688,Europe/Paris,,OIF, +OIF:SP:18:689,1,"Franklin",48.933429,2.157073,0,0,OIF:SA:18:688,Europe/Paris,,OIF, +OIF:SP:18:69,1,"Ambroise Croizat",48.951412,2.21635,0,0,OIF:SA:18:69,Europe/Paris,,OIF, +OIF:SP:18:690,1,"Fresnel",48.931523,2.17102,0,0,OIF:SA:18:690,Europe/Paris,,OIF, +OIF:SP:18:691,1,"Fresnel",48.931486,2.170937,0,0,OIF:SA:18:690,Europe/Paris,,OIF, +OIF:SP:18:692,1,"Gare de Sartrouville",48.937021,2.15898,0,0,OIF:SA:8738641,Europe/Paris,,OIF, +OIF:SP:18:694,1,"Gare de Sartrouville",48.9374,2.158964,0,0,OIF:SA:8738641,Europe/Paris,,OIF, +OIF:SP:18:695,1,"Gare de Sartrouville",48.937275,2.158626,0,0,OIF:SA:8738641,Europe/Paris,,OIF, +OIF:SP:18:696,1,"Gare de Sartrouville",48.937766,2.158297,0,0,OIF:SA:8738641,Europe/Paris,,OIF, +OIF:SP:18:697,1,"Gare de Sartrouville",48.937853,2.157846,0,0,OIF:SA:8738641,Europe/Paris,,OIF, +OIF:SP:18:698,1,"Charles de Gaulle",48.94473,2.181166,0,0,OIF:SA:18:698,Europe/Paris,,OIF, +OIF:SP:18:699,1,"Charles de Gaulle",48.944865,2.181179,0,0,OIF:SA:18:698,Europe/Paris,,OIF, +OIF:SP:18:700,1,"Gretry",48.941686,2.18284,0,0,OIF:SA:18:700,Europe/Paris,,OIF, +OIF:SP:18:701,1,"Cité des Indes",48.94614,2.202214,0,0,OIF:SA:18:701,Europe/Paris,,OIF, +OIF:SP:18:702,1,"Cité des Indes",48.946256,2.201354,0,0,OIF:SA:18:701,Europe/Paris,,OIF, +OIF:SP:18:703,1,"Jouhaux",48.949257,2.193433,0,0,OIF:SA:18:703,Europe/Paris,,OIF, +OIF:SP:18:704,1,"Jouhaux",48.949377,2.193473,0,0,OIF:SA:18:703,Europe/Paris,,OIF, +OIF:SP:18:705,1,"Lamartine",48.934864,2.162426,0,0,OIF:SA:18:705,Europe/Paris,,OIF, +OIF:SP:18:71,1,"Pierre Curie",48.95229,2.24368,0,0,OIF:SA:18:71,Europe/Paris,,OIF, +OIF:SP:18:710,1,"Masures",48.942972,2.164281,0,0,OIF:SA:18:710,Europe/Paris,,OIF, +OIF:SP:18:711,1,"Masures",48.943017,2.164036,0,0,OIF:SA:18:710,Europe/Paris,,OIF, +OIF:SP:18:712,1,"Guy de Maupassant",48.948756,2.167769,0,0,OIF:SA:18:712,Europe/Paris,,OIF, +OIF:SP:18:713,1,"Guy de Maupassant",48.948765,2.16755,0,0,OIF:SA:18:712,Europe/Paris,,OIF, +OIF:SP:18:716,1,"Jolis Monts",48.939314,2.180795,0,0,OIF:SA:18:716,Europe/Paris,,OIF, +OIF:SP:18:717,1,"Neruda",48.946384,2.188515,0,0,OIF:SA:18:717,Europe/Paris,,OIF, +OIF:SP:18:718,1,"Neruda",48.946232,2.188679,0,0,OIF:SA:18:717,Europe/Paris,,OIF, +OIF:SP:18:719,1,"Mont Olivet",48.946714,2.172564,0,0,OIF:SA:18:719,Europe/Paris,,OIF, +OIF:SP:18:72,1,"Pierre Curie",48.952344,2.243516,0,0,OIF:SA:18:71,Europe/Paris,,OIF, +OIF:SP:18:720,1,"Mont Olivet",48.946664,2.173077,0,0,OIF:SA:18:719,Europe/Paris,,OIF, +OIF:SP:18:721,1,"Parmentier",48.930588,2.163804,0,0,OIF:SA:18:721,Europe/Paris,,OIF, +OIF:SP:18:722,1,"Parmentier",48.930506,2.163491,0,0,OIF:SA:18:721,Europe/Paris,,OIF, +OIF:SP:18:723,1,"Pavillons",48.928481,2.161438,0,0,OIF:SA:18:723,Europe/Paris,,OIF, +OIF:SP:18:724,1,"Pavillons",48.928332,2.161082,0,0,OIF:SA:18:723,Europe/Paris,,OIF, +OIF:SP:18:725,1,"Paul Bert",48.942329,2.193943,0,0,OIF:SA:18:725,Europe/Paris,,OIF, +OIF:SP:18:726,1,"Paul Bert",48.94241,2.194065,0,0,OIF:SA:18:725,Europe/Paris,,OIF, +OIF:SP:18:727,1,"Paul Bert",48.942553,2.195559,0,0,OIF:SA:18:725,Europe/Paris,,OIF, +OIF:SP:18:728,1,"Paul Bert",48.94245,2.195031,0,0,OIF:SA:18:725,Europe/Paris,,OIF, +OIF:SP:18:729,1,"Gabriel Péri",48.940443,2.178941,0,0,OIF:SA:18:729,Europe/Paris,,OIF, +OIF:SP:18:73,1,"Val Notre-Dame",48.941516,2.207981,0,0,OIF:SA:18:19563,Europe/Paris,,OIF, +OIF:SP:18:732,1,"Picardie",48.944976,2.176786,0,0,OIF:SA:18:732,Europe/Paris,,OIF, +OIF:SP:18:733,1,"Picardie",48.945072,2.17857,0,0,OIF:SA:18:732,Europe/Paris,,OIF, +OIF:SP:18:734,1,"Pierson",48.938198,2.188852,0,0,OIF:SA:18:734,Europe/Paris,,OIF, +OIF:SP:18:735,1,"Pierson",48.938108,2.188962,0,0,OIF:SA:18:734,Europe/Paris,,OIF, +OIF:SP:18:736,1,"La Plaine",48.930073,2.168116,0,0,OIF:SA:18:736,Europe/Paris,,OIF, +OIF:SP:18:737,1,"La Plaine",48.928769,2.170415,0,0,OIF:SA:18:736,Europe/Paris,,OIF, +OIF:SP:18:738,1,"Plateau",48.936028,2.201272,0,0,OIF:SA:18:738,Europe/Paris,,OIF, +OIF:SP:18:739,1,"Plateau",48.936028,2.201272,0,0,OIF:SA:18:738,Europe/Paris,,OIF, +OIF:SP:18:74,1,"Val Notre-Dame",48.941501,2.208348,0,0,OIF:SA:18:19563,Europe/Paris,,OIF, +OIF:SP:18:740,1,"Poste",48.940566,2.16042,0,0,OIF:SA:18:740,Europe/Paris,,OIF, +OIF:SP:18:741,1,"Poste",48.941287,2.161363,0,0,OIF:SA:18:740,Europe/Paris,,OIF, +OIF:SP:18:742,1,"Calmette Guérin",48.949422,2.188779,0,0,OIF:SA:18:742,Europe/Paris,,OIF, +OIF:SP:18:743,1,"Calmette Guérin",48.949599,2.188771,0,0,OIF:SA:18:742,Europe/Paris,,OIF, +OIF:SP:18:744,1,"Renoir",48.937381,2.197531,0,0,OIF:SA:18:744,Europe/Paris,,OIF, +OIF:SP:18:745,1,"Renoir",48.937336,2.19749,0,0,OIF:SA:18:744,Europe/Paris,,OIF, +OIF:SP:18:746,1,"Roosevelt",48.944861,2.171322,0,0,OIF:SA:18:746,Europe/Paris,,OIF, +OIF:SP:18:747,1,"Docteur Roux",48.946224,2.168281,0,0,OIF:SA:18:747,Europe/Paris,,OIF, +OIF:SP:18:748,1,"Rudolph",48.933584,2.172811,0,0,OIF:SA:18:748,Europe/Paris,,OIF, +OIF:SP:18:749,1,"Rudolph",48.933513,2.172975,0,0,OIF:SA:18:748,Europe/Paris,,OIF, +OIF:SP:18:752,1,"Suger",48.944089,2.167596,0,0,OIF:SA:18:752,Europe/Paris,,OIF, +OIF:SP:18:753,1,"Temple",48.943732,2.165968,0,0,OIF:SA:18:753,Europe/Paris,,OIF, +OIF:SP:18:754,1,"Temple",48.944151,2.165719,0,0,OIF:SA:18:753,Europe/Paris,,OIF, +OIF:SP:18:755,1,"Théâtre",48.941044,2.193574,0,0,OIF:SA:18:755,Europe/Paris,,OIF, +OIF:SP:18:756,1,"Théâtre",48.940739,2.19371,0,0,OIF:SA:18:755,Europe/Paris,,OIF, +OIF:SP:18:759,1,"Turgot",48.932163,2.165286,0,0,OIF:SA:18:759,Europe/Paris,,OIF, +OIF:SP:18:760,1,"Edouard Vaillant",48.942544,2.17281,0,0,OIF:SA:18:760,Europe/Paris,,OIF, +OIF:SP:18:761,1,"Edouard Vaillant",48.942222,2.17261,0,0,OIF:SA:18:760,Europe/Paris,,OIF, +OIF:SP:18:762,1,"Hôtel de Ville",48.942134,2.156262,0,0,OIF:SA:18:762,Europe/Paris,,OIF, +OIF:SP:18:763,1,"Hôtel de Ville",48.942568,2.156546,0,0,OIF:SA:18:762,Europe/Paris,,OIF, +OIF:SP:18:765,1,"Voltaire",48.938803,2.170912,0,0,OIF:SA:18:765,Europe/Paris,,OIF, +OIF:SP:18:766,1,"Baratier",48.939796,2.230047,0,0,OIF:SA:18:766,Europe/Paris,,OIF, +OIF:SP:18:767,1,"Baratier",48.939715,2.229406,0,0,OIF:SA:18:766,Europe/Paris,,OIF, +OIF:SP:18:769,1,"Gare du Val d'Argenteuil",48.950959,2.231757,0,0,OIF:SA:8738179,Europe/Paris,,OIF, +OIF:SP:18:770,1,"Gare du Val d'Argenteuil",48.950771,2.231975,0,0,OIF:SA:8738179,Europe/Paris,,OIF, +OIF:SP:18:775,1,"Gare SNCF de Sartrouville",48.93756,2.156783,0,0,OIF:SA:8738641,Europe/Paris,,OIF, +OIF:SP:18:776,1,"Milhaud",48.937813,2.169946,0,0,OIF:SA:18:776,Europe/Paris,,OIF, +OIF:SP:18:777,1,"Milhaud",48.937705,2.170137,0,0,OIF:SA:18:776,Europe/Paris,,OIF, +OIF:SP:18:78,1,"Marseillaise",48.93414,2.22583,0,0,OIF:SA:18:78,Europe/Paris,,OIF, +OIF:SP:18:79,1,"Marseillaise",48.934283,2.22568,0,0,OIF:SA:18:78,Europe/Paris,,OIF, +OIF:SP:18:800,1,"Jean Lurçat",48.952188,2.228548,0,0,OIF:SA:18:800,Europe/Paris,,OIF, +OIF:SP:18:802,1,"Jean Lurçat",48.952134,2.228411,0,0,OIF:SA:18:800,Europe/Paris,,OIF, +OIF:SP:18:803,1,"Romain Rolland",48.942113,2.201297,0,0,OIF:SA:18:803,Europe/Paris,,OIF, +OIF:SP:18:81,1,"Craonne",48.960554,2.231571,0,0,OIF:SA:18:81,Europe/Paris,,OIF, +OIF:SP:18:84,1,"Ernestine",48.947354,2.24051,0,0,OIF:SA:18:84,Europe/Paris,,OIF, +OIF:SP:18:85,1,"Ernestine",48.947807,2.241326,0,0,OIF:SA:18:84,Europe/Paris,,OIF, +OIF:SP:18:86,1,"Fanouillets",48.959683,2.2512,0,0,OIF:SA:18:86,Europe/Paris,,OIF, +OIF:SP:18:87,1,"Léon Feix",48.948473,2.252399,0,0,OIF:SA:18:87,Europe/Paris,,OIF, +OIF:SP:18:88,1,"Léon Feix",48.948514,2.252801,0,0,OIF:SA:18:87,Europe/Paris,,OIF, +OIF:SP:18:89,1,"Felifeu",48.953508,2.237619,0,0,OIF:SA:18:89,Europe/Paris,,OIF, +OIF:SP:18:90,1,"Felifeu",48.953368,2.237283,0,0,OIF:SA:18:89,Europe/Paris,,OIF, +OIF:SP:18:91,1,"Salle Jean Vilar",48.941535,2.251526,0,0,OIF:SA:18:91,Europe/Paris,,OIF, +OIF:SP:18:92,1,"Salle Jean Vilar",48.941278,2.25149,0,0,OIF:SA:18:91,Europe/Paris,,OIF, +OIF:SP:18:95,1,"Gare d'Argenteuil",48.946405,2.257441,0,0,OIF:SA:8738184,Europe/Paris,,OIF, +OIF:SP:18:96,1,"Gare d'Argenteuil",48.945862,2.258062,0,0,OIF:SA:8738184,Europe/Paris,,OIF, +OIF:SP:18:97,1,"Gare d'Argenteuil",48.946011,2.257564,0,0,OIF:SA:8738184,Europe/Paris,,OIF, +OIF:SP:18:98,1,"Gare d'Argenteuil",48.946488,2.25724,0,0,OIF:SA:8738184,Europe/Paris,,OIF, +OIF:SP:18:99,1,"Gare d'Argenteuil",48.94619,2.25744,0,0,OIF:SA:8738184,Europe/Paris,,OIF, +OIF:SP:20:1,1,"Gare Place Romagné",48.997787,2.099253,0,0,OIF:SA:20:1,Europe/Paris,,OIF, +OIF:SP:20:100,1,"Eudoxie",48.991655,2.076094,0,0,OIF:SA:20:100,Europe/Paris,,OIF, +OIF:SP:20:101,1,"Pont Rive Droite",48.991884,2.082401,0,0,OIF:SA:20:101,Europe/Paris,,OIF, +OIF:SP:20:102,1,"Pont Eiffel",48.992742,2.075829,0,0,OIF:SA:20:102,Europe/Paris,,OIF, +OIF:SP:20:103,1,"Pont Eiffel",48.992148,2.075517,0,0,OIF:SA:20:102,Europe/Paris,,OIF, +OIF:SP:20:104,1,"Van Gogh",48.998294,2.079392,0,0,OIF:SA:20:104,Europe/Paris,,OIF, +OIF:SP:20:105,1,"Van Gogh",48.998472,2.07875,0,0,OIF:SA:20:104,Europe/Paris,,OIF, +OIF:SP:20:1056,1,"Joffre",48.992803,2.087777,0,0,OIF:SA:20:1056,Europe/Paris,,OIF, +OIF:SP:20:1057,1,"Mairie",48.993546,2.094971,0,0,OIF:SA:20:1057,Europe/Paris,,OIF, +OIF:SP:20:1058,1,"Mairie",48.994633,2.094815,0,0,OIF:SA:20:1057,Europe/Paris,,OIF, +OIF:SP:20:1059,1,"Cité des Tileuls",48.941929,2.126595,0,0,OIF:SA:20:1059,Europe/Paris,,OIF, +OIF:SP:20:106,1,"Gabriel Péri",49.001315,2.075908,0,0,OIF:SA:20:106,Europe/Paris,,OIF, +OIF:SP:20:1060,1,"Centre Social",48.959975,2.062961,0,0,OIF:SA:20:1060,Europe/Paris,,OIF, +OIF:SP:20:1061,1,"Centre Social",48.960092,2.063055,0,0,OIF:SA:20:1060,Europe/Paris,,OIF, +OIF:SP:20:1062,1,"Mozart",48.96239,2.058171,0,0,OIF:SA:20:1062,Europe/Paris,,OIF, +OIF:SP:20:1063,1,"Les Maraîchers",48.964505,2.059565,0,0,OIF:SA:20:1063,Europe/Paris,,OIF, +OIF:SP:20:1064,1,"Les Souches",48.965864,2.060473,0,0,OIF:SA:20:1064,Europe/Paris,,OIF, +OIF:SP:20:1065,1,"Les Cottages",48.956292,2.072014,0,0,OIF:SA:20:1065,Europe/Paris,,OIF, +OIF:SP:20:1066,1,"Centre Social",48.960118,2.062837,0,0,OIF:SA:20:1060,Europe/Paris,,OIF, +OIF:SP:20:1069,1,"Gare Place Romagné",48.997481,2.098817,0,0,OIF:SA:20:1,Europe/Paris,,OIF, +OIF:SP:20:107,1,"Résidence Seine et Oise",49.002683,2.080818,0,0,OIF:SA:20:107,Europe/Paris,,OIF, +OIF:SP:20:1073,1,"Gare de Neuville Université",49.014848,2.079734,0,0,OIF:SA:8733448,Europe/Paris,,OIF, +OIF:SP:20:108,1,"Sextant",49.005839,2.077757,0,0,OIF:SA:20:108,Europe/Paris,,OIF, +OIF:SP:20:109,1,"Sextant",49.005948,2.078111,0,0,OIF:SA:20:108,Europe/Paris,,OIF, +OIF:SP:20:11,1,"Piscine S.Weil",49.005665,2.088808,0,0,OIF:SA:20:11,Europe/Paris,,OIF, +OIF:SP:20:110,1,"Thomson",49.006901,2.082765,0,0,OIF:SA:20:110,Europe/Paris,,OIF, +OIF:SP:20:111,1,"Thomson",49.007252,2.082858,0,0,OIF:SA:20:110,Europe/Paris,,OIF, +OIF:SP:20:112,1,"Boutries",49.006035,2.085159,0,0,OIF:SA:20:112,Europe/Paris,,OIF, +OIF:SP:20:113,1,"Boutries",49.006161,2.085227,0,0,OIF:SA:20:112,Europe/Paris,,OIF, +OIF:SP:20:116,1,"Champs Gaillard",49.004409,2.090098,0,0,OIF:SA:20:116,Europe/Paris,,OIF, +OIF:SP:20:117,1,"Champs Gaillard",49.004692,2.09205,0,0,OIF:SA:20:116,Europe/Paris,,OIF, +OIF:SP:20:118,1,"Maréchal Juin",49.005589,2.095707,0,0,OIF:SA:20:118,Europe/Paris,,OIF, +OIF:SP:20:119,1,"Maréchal Juin",49.005591,2.096472,0,0,OIF:SA:20:118,Europe/Paris,,OIF, +OIF:SP:20:12,1,"Piscine S.Weil",49.004844,2.087351,0,0,OIF:SA:20:11,Europe/Paris,,OIF, +OIF:SP:20:120,1,"Hautes Roches",49.006916,2.103405,0,0,OIF:SA:20:120,Europe/Paris,,OIF, +OIF:SP:20:121,1,"Hautes Roches",49.006917,2.103691,0,0,OIF:SA:20:120,Europe/Paris,,OIF, +OIF:SP:20:122,1,"Desvignes",49.007075,2.111258,0,0,OIF:SA:20:122,Europe/Paris,,OIF, +OIF:SP:20:123,1,"Desvignes",49.007021,2.111013,0,0,OIF:SA:20:122,Europe/Paris,,OIF, +OIF:SP:20:125,1,"Place de la Liberté",49.005585,2.116729,0,0,OIF:SA:20:125,Europe/Paris,,OIF, +OIF:SP:20:127,1,"Berlioz",49.002678,2.119322,0,0,OIF:SA:20:127,Europe/Paris,,OIF, +OIF:SP:20:128,1,"Berlioz",49.002113,2.119721,0,0,OIF:SA:20:127,Europe/Paris,,OIF, +OIF:SP:20:129,1,"Culs Baillets",49.000915,2.118551,0,0,OIF:SA:20:129,Europe/Paris,,OIF, +OIF:SP:20:130,1,"Culs Baillets",49.000483,2.118239,0,0,OIF:SA:20:129,Europe/Paris,,OIF, +OIF:SP:20:131,1,"Dhéret",49.000049,2.116424,0,0,OIF:SA:20:131,Europe/Paris,,OIF, +OIF:SP:20:132,1,"Dhéret",49.00003,2.116274,0,0,OIF:SA:20:131,Europe/Paris,,OIF, +OIF:SP:20:133,1,"Collège des Hautes Rayes",48.997497,2.11679,0,0,OIF:SA:20:133,Europe/Paris,,OIF, +OIF:SP:20:134,1,"Bois d'Aulne",49.012076,2.118149,0,0,OIF:SA:20:134,Europe/Paris,,OIF, +OIF:SP:20:136,1,"Cimetière",49.006729,2.099581,0,0,OIF:SA:20:136,Europe/Paris,,OIF, +OIF:SP:20:14,1,"Boutries Frères Damme",49.005146,2.085792,0,0,OIF:SA:20:14,Europe/Paris,,OIF, +OIF:SP:20:140,1,"Allée des Bois",49.011313,2.129136,0,0,OIF:SA:20:140,Europe/Paris,,OIF, +OIF:SP:20:141,1,"Allée des Bois",49.010838,2.129452,0,0,OIF:SA:20:140,Europe/Paris,,OIF, +OIF:SP:20:142,1,"L'Escapade",49.013691,2.127214,0,0,OIF:SA:20:142,Europe/Paris,,OIF, +OIF:SP:20:143,1,"L'Escapade",49.01387,2.126762,0,0,OIF:SA:20:142,Europe/Paris,,OIF, +OIF:SP:20:144,1,"Buttes Blanches",49.015368,2.125253,0,0,OIF:SA:20:144,Europe/Paris,,OIF, +OIF:SP:20:145,1,"Buttes Blanches",49.015269,2.125144,0,0,OIF:SA:20:144,Europe/Paris,,OIF, +OIF:SP:20:146,1,"Jean Broutin",49.004992,2.102635,0,0,OIF:SA:20:146,Europe/Paris,,OIF, +OIF:SP:20:147,1,"Bois d'Aulne",49.012102,2.118026,0,0,OIF:SA:20:134,Europe/Paris,,OIF, +OIF:SP:20:148,1,"George Viard",49.001716,2.100341,0,0,OIF:SA:20:148,Europe/Paris,,OIF, +OIF:SP:20:149,1,"Ballastière",48.979249,2.082163,0,0,OIF:SA:20:149,Europe/Paris,,OIF, +OIF:SP:20:15,1,"Allende",49.003104,2.084504,0,0,OIF:SA:20:15,Europe/Paris,,OIF, +OIF:SP:20:150,1,"Ballastière",48.978524,2.082926,0,0,OIF:SA:20:149,Europe/Paris,,OIF, +OIF:SP:20:151,1,"Lycée Louise Weiss",48.971197,2.074135,0,0,OIF:SA:20:151,Europe/Paris,,OIF, +OIF:SP:20:152,1,"Lycée Louise Weiss",48.970515,2.074453,0,0,OIF:SA:20:151,Europe/Paris,,OIF, +OIF:SP:20:153,1,"Gare d'Achères",48.969764,2.076149,0,0,OIF:SA:8738165,Europe/Paris,,OIF, +OIF:SP:20:154,1,"Gare d'Achères",48.970277,2.076461,0,0,OIF:SA:8738165,Europe/Paris,,OIF, +OIF:SP:20:159,1,"Les Routiers",48.954994,2.065948,0,0,OIF:SA:20:159,Europe/Paris,,OIF, +OIF:SP:20:16,1,"Allende",49.00278,2.084219,0,0,OIF:SA:20:15,Europe/Paris,,OIF, +OIF:SP:20:165,1,"Rond-Point Technoparc",48.94942,2.061406,0,0,OIF:SA:20:165,Europe/Paris,,OIF, +OIF:SP:20:168,1,"Avenue de Pontoise",48.936753,2.055335,0,0,OIF:SA:20:168,Europe/Paris,,OIF, +OIF:SP:20:169,1,"Avenue de Pontoise",48.936359,2.056019,0,0,OIF:SA:20:168,Europe/Paris,,OIF, +OIF:SP:20:17,1,"Internat Montaigne",48.999801,2.082199,0,0,OIF:SA:20:17,Europe/Paris,,OIF, +OIF:SP:20:170,1,"Quartier de Noailles",48.933334,2.05002,0,0,OIF:SA:20:170,Europe/Paris,,OIF, +OIF:SP:20:171,1,"Quartier de Noailles",48.933669,2.051246,0,0,OIF:SA:20:170,Europe/Paris,,OIF, +OIF:SP:20:173,1,"Gare de Poissy",48.933531,2.042421,0,0,OIF:SA:8738657,Europe/Paris,,OIF, +OIF:SP:20:174,1,"Gare de Poissy",48.933458,2.042053,0,0,OIF:SA:8738657,Europe/Paris,,OIF, +OIF:SP:20:175,1,"Le Cep - Hôtel de Ville",48.92855,2.041536,0,0,OIF:SA:15:249,Europe/Paris,,OIF, +OIF:SP:20:176,1,"Le Cep - Hôtel de Ville",48.929062,2.041287,0,0,OIF:SA:15:249,Europe/Paris,,OIF, +OIF:SP:20:177,1,"Notre-Dame",48.926111,2.03664,0,0,OIF:SA:15:348,Europe/Paris,,OIF, +OIF:SP:20:178,1,"Lycée le Corbusier",48.923211,2.026865,0,0,OIF:SA:20:178,Europe/Paris,,OIF, +OIF:SP:20:179,1,"Hôpital",48.917845,2.023324,0,0,OIF:SA:20:179,Europe/Paris,,OIF, +OIF:SP:20:18,1,"Internat Montaigne",48.999549,2.081981,0,0,OIF:SA:20:17,Europe/Paris,,OIF, +OIF:SP:20:180,1,"Commissariat",48.92702,2.044395,0,0,OIF:SA:20:180,Europe/Paris,,OIF, +OIF:SP:20:181,1,"Commissariat",48.927207,2.043685,0,0,OIF:SA:20:180,Europe/Paris,,OIF, +OIF:SP:20:182,1,"Résidence Fernand Lefebvre",48.925104,2.050925,0,0,OIF:SA:20:182,Europe/Paris,,OIF, +OIF:SP:20:183,1,"Les Terrasses",48.923315,2.054358,0,0,OIF:SA:20:183,Europe/Paris,,OIF, +OIF:SP:20:184,1,"Les Terrasses",48.923647,2.054233,0,0,OIF:SA:20:183,Europe/Paris,,OIF, +OIF:SP:20:185,1,"Le Golf",48.919975,2.059504,0,0,OIF:SA:20:185,Europe/Paris,,OIF, +OIF:SP:20:186,1,"Le Golf",48.920226,2.059311,0,0,OIF:SA:20:185,Europe/Paris,,OIF, +OIF:SP:20:187,1,"RD 190 / RN 184",48.909594,2.075116,0,0,OIF:SA:20:187,Europe/Paris,,OIF, +OIF:SP:20:188,1,"RD 190 / RN 184",48.909953,2.07506,0,0,OIF:SA:20:187,Europe/Paris,,OIF, +OIF:SP:20:189,1,"Vauban",48.903843,2.083693,0,0,OIF:SA:20:189,Europe/Paris,,OIF, +OIF:SP:20:190,1,"Jehan Alain",48.900751,2.087797,0,0,OIF:SA:15:113,Europe/Paris,,OIF, +OIF:SP:20:191,1,"Jehan Alain",48.900885,2.087483,0,0,OIF:SA:15:113,Europe/Paris,,OIF, +OIF:SP:20:192,1,"Gare de Saint-Germain en Laye",48.898815,2.094881,0,0,OIF:SA:8775809,Europe/Paris,,OIF, +OIF:SP:20:193,1,"Stade",48.954811,2.072445,0,0,OIF:SA:20:193,Europe/Paris,,OIF, +OIF:SP:20:194,1,"Légion d'Honneur",48.925373,2.082305,0,0,OIF:SA:20:194,Europe/Paris,,OIF, +OIF:SP:20:196,1,"Lycée International",48.898422,2.062536,0,0,OIF:SA:15:351,Europe/Paris,,OIF, +OIF:SP:20:197,1,"Légion d'Honneur",48.925373,2.082305,0,0,OIF:SA:20:194,Europe/Paris,,OIF, +OIF:SP:20:198,1,"Lycée Technique",48.891883,2.064329,0,0,OIF:SA:20:198,Europe/Paris,,OIF, +OIF:SP:20:199,1,"Collège des Hauts Grillets",48.89236,2.06479,0,0,OIF:SA:20:199,Europe/Paris,,OIF, +OIF:SP:20:200,1,"École Notre-Dame",48.894308,2.075507,0,0,OIF:SA:20:200,Europe/Paris,,OIF, +OIF:SP:20:201,1,"Vauban",48.903843,2.083693,0,0,OIF:SA:20:189,Europe/Paris,,OIF, +OIF:SP:20:211,1,"Gare de Maisons Laffitte",48.94562,2.144516,0,0,OIF:SA:8738642,Europe/Paris,,OIF, +OIF:SP:20:212,1,"Hôtel de Ville",48.946287,2.145742,0,0,OIF:SA:20:212,Europe/Paris,,OIF, +OIF:SP:20:213,1,"Hôtel de Ville",48.946323,2.145551,0,0,OIF:SA:20:212,Europe/Paris,,OIF, +OIF:SP:20:214,1,"Grille du Parc",48.947872,2.147701,0,0,OIF:SA:20:214,Europe/Paris,,OIF, +OIF:SP:20:215,1,"Grille du Parc",48.948052,2.147509,0,0,OIF:SA:20:214,Europe/Paris,,OIF, +OIF:SP:20:216,1,"Château",48.949529,2.149987,0,0,OIF:SA:20:216,Europe/Paris,,OIF, +OIF:SP:20:217,1,"Château",48.949843,2.149467,0,0,OIF:SA:20:216,Europe/Paris,,OIF, +OIF:SP:20:218,1,"Château",48.949179,2.149866,0,0,OIF:SA:20:216,Europe/Paris,,OIF, +OIF:SP:20:220,1,"Wagram",48.95187,2.152694,0,0,OIF:SA:20:220,Europe/Paris,,OIF, +OIF:SP:20:221,1,"Wagram",48.952067,2.152311,0,0,OIF:SA:20:220,Europe/Paris,,OIF, +OIF:SP:20:222,1,"Cours de l'Ermitage",48.954265,2.155906,0,0,OIF:SA:20:222,Europe/Paris,,OIF, +OIF:SP:20:223,1,"Cours de l'Ermitage",48.954346,2.155401,0,0,OIF:SA:20:222,Europe/Paris,,OIF, +OIF:SP:20:226,1,"Royal",48.947443,2.154688,0,0,OIF:SA:20:226,Europe/Paris,,OIF, +OIF:SP:20:227,1,"Talma",48.949768,2.159333,0,0,OIF:SA:20:227,Europe/Paris,,OIF, +OIF:SP:20:228,1,"Sully",48.952289,2.162531,0,0,OIF:SA:20:228,Europe/Paris,,OIF, +OIF:SP:20:229,1,"Les Trois Chênes",48.953987,2.161911,0,0,OIF:SA:20:229,Europe/Paris,,OIF, +OIF:SP:20:230,1,"Lesage",48.954837,2.159397,0,0,OIF:SA:20:230,Europe/Paris,,OIF, +OIF:SP:20:231,1,"Place Charlemagne",48.955482,2.164035,0,0,OIF:SA:20:231,Europe/Paris,,OIF, +OIF:SP:20:233,1,"Place Montaigne",48.958182,2.166933,0,0,OIF:SA:20:233,Europe/Paris,,OIF, +OIF:SP:20:238,1,"Square le Kain",48.960159,2.166708,0,0,OIF:SA:20:238,Europe/Paris,,OIF, +OIF:SP:20:239,1,"Mademoiselle Mars",48.960513,2.163431,0,0,OIF:SA:20:239,Europe/Paris,,OIF, +OIF:SP:20:240,1,"Place Colbert",48.957901,2.159441,0,0,OIF:SA:20:240,Europe/Paris,,OIF, +OIF:SP:20:241,1,"Place Napoléon",48.960221,2.154043,0,0,OIF:SA:20:241,Europe/Paris,,OIF, +OIF:SP:20:243,1,"Parc des Sports",48.957924,2.151008,0,0,OIF:SA:20:243,Europe/Paris,,OIF, +OIF:SP:20:245,1,"Benjamin Constant",48.95597,2.153812,0,0,OIF:SA:20:245,Europe/Paris,,OIF, +OIF:SP:20:247,1,"Rue de Lorraine",48.95004,2.143654,0,0,OIF:SA:20:247,Europe/Paris,,OIF, +OIF:SP:20:248,1,"Cocteau",48.951846,2.137657,0,0,OIF:SA:20:248,Europe/Paris,,OIF, +OIF:SP:20:250,1,"Cimetière",48.950298,2.136094,0,0,OIF:SA:20:250,Europe/Paris,,OIF, +OIF:SP:20:252,1,"Clos Fleuri",48.947669,2.133443,0,0,OIF:SA:20:252,Europe/Paris,,OIF, +OIF:SP:20:254,1,"Saint-Nicolas",48.946399,2.137064,0,0,OIF:SA:20:254,Europe/Paris,,OIF, +OIF:SP:20:256,1,"Club des Anciens",48.945991,2.140108,0,0,OIF:SA:20:256,Europe/Paris,,OIF, +OIF:SP:20:257,1,"Gare de Maisons Laffitte",48.945539,2.144503,0,0,OIF:SA:8738642,Europe/Paris,,OIF, +OIF:SP:20:258,1,"Rue des Loges",48.944225,2.137564,0,0,OIF:SA:20:258,Europe/Paris,,OIF, +OIF:SP:20:259,1,"Rue des Loges",48.944063,2.137632,0,0,OIF:SA:20:258,Europe/Paris,,OIF, +OIF:SP:20:26,1,"Gare de Fin d'Oise",48.988642,2.075044,0,0,OIF:SA:8738145,Europe/Paris,,OIF, +OIF:SP:20:260,1,"Rue du Tir",48.943985,2.133594,0,0,OIF:SA:20:260,Europe/Paris,,OIF, +OIF:SP:20:261,1,"Rue du Tir",48.943823,2.133622,0,0,OIF:SA:20:260,Europe/Paris,,OIF, +OIF:SP:20:262,1,"Rue de Romilly",48.943538,2.130049,0,0,OIF:SA:20:262,Europe/Paris,,OIF, +OIF:SP:20:263,1,"Rue de Romilly",48.943466,2.130036,0,0,OIF:SA:20:262,Europe/Paris,,OIF, +OIF:SP:20:264,1,"Cité des Tilleuls",48.942157,2.126698,0,0,OIF:SA:20:1059,Europe/Paris,,OIF, +OIF:SP:20:265,1,"Cité des Tilleuls",48.942104,2.126876,0,0,OIF:SA:20:1059,Europe/Paris,,OIF, +OIF:SP:20:267,1,"Cité Grands Champs",48.940721,2.122707,0,0,OIF:SA:20:267,Europe/Paris,,OIF, +OIF:SP:20:268,1,"Cité des Peupliers",48.940178,2.125478,0,0,OIF:SA:20:268,Europe/Paris,,OIF, +OIF:SP:20:269,1,"Cité des Peupliers",48.940115,2.125697,0,0,OIF:SA:20:268,Europe/Paris,,OIF, +OIF:SP:20:270,1,"Jean Jaurès",48.938471,2.13086,0,0,OIF:SA:20:270,Europe/Paris,,OIF, +OIF:SP:20:271,1,"Jean Jaurès",48.93983,2.132055,0,0,OIF:SA:20:270,Europe/Paris,,OIF, +OIF:SP:20:272,1,"Croix Bosset",48.937344,2.13388,0,0,OIF:SA:20:272,Europe/Paris,,OIF, +OIF:SP:20:273,1,"Croix Bosset",48.93729,2.133962,0,0,OIF:SA:20:272,Europe/Paris,,OIF, +OIF:SP:20:274,1,"Rue du Repos",48.936465,2.129763,0,0,OIF:SA:20:274,Europe/Paris,,OIF, +OIF:SP:20:275,1,"Rue du Repos",48.936357,2.129805,0,0,OIF:SA:20:274,Europe/Paris,,OIF, +OIF:SP:20:276,1,"Marronniers",48.935603,2.12517,0,0,OIF:SA:20:276,Europe/Paris,,OIF, +OIF:SP:20:277,1,"Marronniers",48.935522,2.125211,0,0,OIF:SA:20:276,Europe/Paris,,OIF, +OIF:SP:20:278,1,"Pointe Sulle",48.931286,2.123264,0,0,OIF:SA:20:278,Europe/Paris,,OIF, +OIF:SP:20:279,1,"Pointe Sulle",48.931268,2.123428,0,0,OIF:SA:20:278,Europe/Paris,,OIF, +OIF:SP:20:28,1,"École de la Batellerie",48.990319,2.085878,0,0,OIF:SA:20:28,Europe/Paris,,OIF, +OIF:SP:20:280,1,"Mairie",48.927645,2.122597,0,0,OIF:SA:20:280,Europe/Paris,,OIF, +OIF:SP:20:281,1,"Mairie",48.927591,2.122679,0,0,OIF:SA:20:280,Europe/Paris,,OIF, +OIF:SP:20:282,1,"Buisson Richard",48.925781,2.1203,0,0,OIF:SA:20:282,Europe/Paris,,OIF, +OIF:SP:20:283,1,"Buisson Richard",48.925628,2.120396,0,0,OIF:SA:20:282,Europe/Paris,,OIF, +OIF:SP:20:284,1,"Cheverrures",48.924528,2.118382,0,0,OIF:SA:20:284,Europe/Paris,,OIF, +OIF:SP:20:285,1,"Cheverrures",48.924411,2.118478,0,0,OIF:SA:20:284,Europe/Paris,,OIF, +OIF:SP:20:286,1,"Strasbourg Curie",48.922014,2.114793,0,0,OIF:SA:20:286,Europe/Paris,,OIF, +OIF:SP:20:287,1,"Strasbourg Curie",48.921665,2.115572,0,0,OIF:SA:20:286,Europe/Paris,,OIF, +OIF:SP:20:288,1,"Strasbourg Paymal",48.922202,2.114233,0,0,OIF:SA:20:288,Europe/Paris,,OIF, +OIF:SP:20:289,1,"Strasbourg Paymal",48.922048,2.113933,0,0,OIF:SA:20:288,Europe/Paris,,OIF, +OIF:SP:20:29,1,"École de la Batellerie",48.990364,2.085741,0,0,OIF:SA:20:28,Europe/Paris,,OIF, +OIF:SP:20:290,1,"Belloy Parc",48.918769,2.11437,0,0,OIF:SA:20:290,Europe/Paris,,OIF, +OIF:SP:20:291,1,"Belloy Parc",48.918742,2.114439,0,0,OIF:SA:20:290,Europe/Paris,,OIF, +OIF:SP:20:292,1,"Grille Royale",48.916384,2.112608,0,0,OIF:SA:20:292,Europe/Paris,,OIF, +OIF:SP:20:293,1,"Hôpital des Courses",48.950583,2.151252,0,0,OIF:SA:20:293,Europe/Paris,,OIF, +OIF:SP:20:30,1,"Place Fouillère",48.991306,2.089724,0,0,OIF:SA:20:30,Europe/Paris,,OIF, +OIF:SP:20:309,1,"Château du Val",48.920952,2.109465,0,0,OIF:SA:20:309,Europe/Paris,,OIF, +OIF:SP:20:31,1,"Place Fouillère",48.991408,2.091143,0,0,OIF:SA:20:30,Europe/Paris,,OIF, +OIF:SP:20:310,1,"Château du Val",48.920799,2.109275,0,0,OIF:SA:20:309,Europe/Paris,,OIF, +OIF:SP:20:311,1,"Thiers (Gare de Saint-Germain en Laye)",48.897335,2.096006,0,0,OIF:SA:8775809,Europe/Paris,,OIF, +OIF:SP:20:317,1,"Gare d'Achères",48.969955,2.077309,0,0,OIF:SA:8738165,Europe/Paris,,OIF, +OIF:SP:20:318,1,"Gare d'Achères",48.969784,2.077337,0,0,OIF:SA:8738165,Europe/Paris,,OIF, +OIF:SP:20:32,1,"Rene Albert",48.991616,2.095908,0,0,OIF:SA:20:32,Europe/Paris,,OIF, +OIF:SP:20:321,1,"Jules Verne",48.967436,2.072093,0,0,OIF:SA:20:321,Europe/Paris,,OIF, +OIF:SP:20:322,1,"Jules Verne",48.967057,2.071167,0,0,OIF:SA:20:321,Europe/Paris,,OIF, +OIF:SP:20:323,1,"Foyer des Jeunes",48.965082,2.068229,0,0,OIF:SA:20:323,Europe/Paris,,OIF, +OIF:SP:20:324,1,"Foyer des Jeunes",48.96501,2.068243,0,0,OIF:SA:20:323,Europe/Paris,,OIF, +OIF:SP:20:327,1,"Marcel Pagnol",48.966109,2.065508,0,0,OIF:SA:20:327,Europe/Paris,,OIF, +OIF:SP:20:328,1,"Les Souches",48.965945,2.060295,0,0,OIF:SA:20:1064,Europe/Paris,,OIF, +OIF:SP:20:329,1,"Jean Jaurès",48.962181,2.064873,0,0,OIF:SA:20:329,Europe/Paris,,OIF, +OIF:SP:20:33,1,"Rene Albert",48.991587,2.094884,0,0,OIF:SA:20:32,Europe/Paris,,OIF, +OIF:SP:20:330,1,"Jean Jaurès",48.962154,2.064942,0,0,OIF:SA:20:329,Europe/Paris,,OIF, +OIF:SP:20:331,1,"Centre Social",48.959956,2.062688,0,0,OIF:SA:20:1060,Europe/Paris,,OIF, +OIF:SP:20:332,1,"Centre Social",48.959902,2.062852,0,0,OIF:SA:20:1060,Europe/Paris,,OIF, +OIF:SP:20:333,1,"Pinson Rousseau",48.95736,2.063043,0,0,OIF:SA:20:333,Europe/Paris,,OIF, +OIF:SP:20:334,1,"Pinson Rousseau",48.95781,2.06334,0,0,OIF:SA:20:333,Europe/Paris,,OIF, +OIF:SP:20:335,1,"Grange Saint-Louis",48.955597,2.062411,0,0,OIF:SA:20:335,Europe/Paris,,OIF, +OIF:SP:20:336,1,"Grange Saint-Louis",48.955705,2.062546,0,0,OIF:SA:20:335,Europe/Paris,,OIF, +OIF:SP:20:337,1,"Rocourt",48.953982,2.063579,0,0,OIF:SA:20:337,Europe/Paris,,OIF, +OIF:SP:20:338,1,"Rocourt",48.953712,2.063389,0,0,OIF:SA:20:337,Europe/Paris,,OIF, +OIF:SP:20:339,1,"Chêne Feuillu",48.951508,2.062432,0,0,OIF:SA:20:339,Europe/Paris,,OIF, +OIF:SP:20:34,1,"Clos de Rome",48.99168,2.100961,0,0,OIF:SA:20:34,Europe/Paris,,OIF, +OIF:SP:20:340,1,"Chêne Feuillu",48.95158,2.062418,0,0,OIF:SA:20:339,Europe/Paris,,OIF, +OIF:SP:20:341,1,"Constituante",48.950855,2.0638,0,0,OIF:SA:20:341,Europe/Paris,,OIF, +OIF:SP:20:343,1,"Mairie Annexe",48.952034,2.064599,0,0,OIF:SA:20:343,Europe/Paris,,OIF, +OIF:SP:20:344,1,"Mairie Annexe",48.951962,2.064654,0,0,OIF:SA:20:343,Europe/Paris,,OIF, +OIF:SP:20:346,1,"Quatorze Juillet",48.950344,2.06836,0,0,OIF:SA:20:346,Europe/Paris,,OIF, +OIF:SP:20:347,1,"Quatorze Juillet",48.950344,2.068169,0,0,OIF:SA:20:346,Europe/Paris,,OIF, +OIF:SP:20:348,1,"Olympe de Gouges",48.949729,2.070478,0,0,OIF:SA:20:348,Europe/Paris,,OIF, +OIF:SP:20:349,1,"Olympe de Gouges",48.949675,2.070397,0,0,OIF:SA:20:348,Europe/Paris,,OIF, +OIF:SP:20:35,1,"Clos de Rome",48.991698,2.100974,0,0,OIF:SA:20:34,Europe/Paris,,OIF, +OIF:SP:20:350,1,"Les Sources",48.952835,2.072987,0,0,OIF:SA:20:350,Europe/Paris,,OIF, +OIF:SP:20:351,1,"Les Sources",48.953437,2.072929,0,0,OIF:SA:20:350,Europe/Paris,,OIF, +OIF:SP:20:353,1,"Croix Rompue",48.953345,2.064319,0,0,OIF:SA:20:353,Europe/Paris,,OIF, +OIF:SP:20:354,1,"Mozart",48.962471,2.058102,0,0,OIF:SA:20:1062,Europe/Paris,,OIF, +OIF:SP:20:355,1,"Les Cottages",48.956184,2.071919,0,0,OIF:SA:20:1065,Europe/Paris,,OIF, +OIF:SP:20:356,1,"Jean Vingt Trois",48.958312,2.070721,0,0,OIF:SA:20:356,Europe/Paris,,OIF, +OIF:SP:20:357,1,"L'Orée du Bois",48.95331,2.068454,0,0,OIF:SA:20:357,Europe/Paris,,OIF, +OIF:SP:20:36,1,"Fosse du Moulin",48.991913,2.105179,0,0,OIF:SA:20:36,Europe/Paris,,OIF, +OIF:SP:20:360,1,"Pierre Semard",48.954482,2.066306,0,0,OIF:SA:20:360,Europe/Paris,,OIF, +OIF:SP:20:361,1,"Les Routiers",48.956047,2.066639,0,0,OIF:SA:20:159,Europe/Paris,,OIF, +OIF:SP:20:362,1,"Joliot Curie",48.958709,2.067716,0,0,OIF:SA:20:362,Europe/Paris,,OIF, +OIF:SP:20:363,1,"Mairie",48.960544,2.06858,0,0,OIF:SA:20:363,Europe/Paris,,OIF, +OIF:SP:20:364,1,"Poste",48.9624,2.070686,0,0,OIF:SA:20:364,Europe/Paris,,OIF, +OIF:SP:20:365,1,"Poste",48.962473,2.070959,0,0,OIF:SA:20:364,Europe/Paris,,OIF, +OIF:SP:20:366,1,"Lefebvre",48.96469,2.073732,0,0,OIF:SA:20:366,Europe/Paris,,OIF, +OIF:SP:20:367,1,"Lefebvre",48.965113,2.074194,0,0,OIF:SA:20:366,Europe/Paris,,OIF, +OIF:SP:20:37,1,"Fosse du Moulin",48.991911,2.104456,0,0,OIF:SA:20:36,Europe/Paris,,OIF, +OIF:SP:20:370,1,"Toussain Louverture",48.968489,2.068839,0,0,OIF:SA:20:370,Europe/Paris,,OIF, +OIF:SP:20:371,1,"Toussain Louverture",48.968201,2.068309,0,0,OIF:SA:20:370,Europe/Paris,,OIF, +OIF:SP:20:372,1,"Pierre et Marie Curie",48.969951,2.071521,0,0,OIF:SA:20:372,Europe/Paris,,OIF, +OIF:SP:20:373,1,"Pierre et Marie Curie",48.96972,2.07245,0,0,OIF:SA:20:372,Europe/Paris,,OIF, +OIF:SP:20:374,1,"Beauséjour",48.940195,2.135164,0,0,OIF:SA:20:374,Europe/Paris,,OIF, +OIF:SP:20:377,1,"Lycée Charles de Gaulle",48.947402,2.063027,0,0,OIF:SA:20:377,Europe/Paris,,OIF, +OIF:SP:20:379,1,"Les Maraîchers",48.964541,2.059388,0,0,OIF:SA:20:1063,Europe/Paris,,OIF, +OIF:SP:20:38,1,"La Noue",48.991501,2.110712,0,0,OIF:SA:20:38,Europe/Paris,,OIF, +OIF:SP:20:381,1,"Charles Edouard Jeannerret",48.945095,2.063994,0,0,OIF:SA:20:381,Europe/Paris,,OIF, +OIF:SP:20:382,1,"Helistation",48.946674,2.067056,0,0,OIF:SA:20:382,Europe/Paris,,OIF, +OIF:SP:20:383,1,"Chambre de Commerce et d'Industrie",48.947963,2.064784,0,0,OIF:SA:20:383,Europe/Paris,,OIF, +OIF:SP:20:384,1,"Résidence Fernand Lefebvre",48.92514,2.051007,0,0,OIF:SA:20:182,Europe/Paris,,OIF, +OIF:SP:20:39,1,"La Noue",48.991581,2.110479,0,0,OIF:SA:20:38,Europe/Paris,,OIF, +OIF:SP:20:40,1,"Gare de Fin d'Oise",48.988858,2.074933,0,0,OIF:SA:8738145,Europe/Paris,,OIF, +OIF:SP:20:41,1,"Relais Sainte-Honorine",48.991959,2.115312,0,0,OIF:SA:20:41,Europe/Paris,,OIF, +OIF:SP:20:42,1,"Relais Sainte-Honorine",48.991913,2.114807,0,0,OIF:SA:20:41,Europe/Paris,,OIF, +OIF:SP:20:43,1,"Sente des Laveuses Bas",48.992225,2.118492,0,0,OIF:SA:20:43,Europe/Paris,,OIF, +OIF:SP:20:44,1,"Sente des Laveuses Bas",48.992179,2.118042,0,0,OIF:SA:20:43,Europe/Paris,,OIF, +OIF:SP:20:442,1,"Gare de Neuville Université",49.014839,2.079734,0,0,OIF:SA:8733448,Europe/Paris,,OIF, +OIF:SP:20:45,1,"Sente des Laveuses Haut",48.993137,2.116099,0,0,OIF:SA:20:45,Europe/Paris,,OIF, +OIF:SP:20:451,1,"Sarrail",49.005138,2.111091,0,0,OIF:SA:20:451,Europe/Paris,,OIF, +OIF:SP:20:452,1,"Gabriel Péri",49.001467,2.075662,0,0,OIF:SA:20:106,Europe/Paris,,OIF, +OIF:SP:20:453,1,"Jean Broutin",49.004964,2.102102,0,0,OIF:SA:20:146,Europe/Paris,,OIF, +OIF:SP:20:454,1,"George Viard",49.00214,2.100981,0,0,OIF:SA:20:148,Europe/Paris,,OIF, +OIF:SP:20:455,1,"Place de la Liberté",49.005619,2.115991,0,0,OIF:SA:20:125,Europe/Paris,,OIF, +OIF:SP:20:458,1,"Marcel Pagnol",48.966217,2.065384,0,0,OIF:SA:20:327,Europe/Paris,,OIF, +OIF:SP:20:459,1,"Gare de Saint-Germain en Laye",48.898914,2.094745,0,0,OIF:SA:8775809,Europe/Paris,,OIF, +OIF:SP:20:46,1,"Sente des Laveuses Haut",48.993138,2.116263,0,0,OIF:SA:20:45,Europe/Paris,,OIF, +OIF:SP:20:460,1,"Gare de Montsoult",49.066416,2.322272,0,0,OIF:SA:8727649,Europe/Paris,,OIF, +OIF:SP:20:461,1,"Mairie",48.960643,2.068621,0,0,OIF:SA:20:363,Europe/Paris,,OIF, +OIF:SP:20:462,1,"Gare de Cergy Préfecture",49.035727,2.081488,0,0,OIF:SA:8738190,Europe/Paris,,OIF, +OIF:SP:20:465,1,"Frépillon",49.05793,2.210195,0,0,OIF:SA:20:465,Europe/Paris,,OIF, +OIF:SP:20:467,1,"Frépillon",49.058036,2.208527,0,0,OIF:SA:20:465,Europe/Paris,,OIF, +OIF:SP:20:468,1,"Mériel Villiers Adam",49.069713,2.221121,0,0,OIF:SA:20:468,Europe/Paris,,OIF, +OIF:SP:20:469,1,"Mériel Villiers Adam",49.070773,2.221187,0,0,OIF:SA:20:468,Europe/Paris,,OIF, +OIF:SP:20:47,1,"Les Coteaux",48.993285,2.113135,0,0,OIF:SA:20:47,Europe/Paris,,OIF, +OIF:SP:20:470,1,"Rond-Point d'Attainville",49.060531,2.338683,0,0,OIF:SA:20:470,Europe/Paris,,OIF, +OIF:SP:20:471,1,"Rond-Point de la Brèche",49.019621,2.455679,0,0,OIF:SA:20:471,Europe/Paris,,OIF, +OIF:SP:20:472,1,"Rond-Point de la Brèche",49.019837,2.455652,0,0,OIF:SA:20:471,Europe/Paris,,OIF, +OIF:SP:20:474,1,"Rond-Point de l'Europe",49.019045,2.465966,0,0,OIF:SA:20:474,Europe/Paris,,OIF, +OIF:SP:20:475,1,"Rond-Point de l'Europe",49.018939,2.46423,0,0,OIF:SA:20:474,Europe/Paris,,OIF, +OIF:SP:20:476,1,"Rond-Point du Thillay",49.012559,2.471578,0,0,OIF:SA:20:476,Europe/Paris,,OIF, +OIF:SP:20:477,1,"Rond-Point du Thillay",49.014438,2.471009,0,0,OIF:SA:20:476,Europe/Paris,,OIF, +OIF:SP:20:478,1,"Roissy Route de l'Arpenteur",49.006071,2.506858,0,0,OIF:SA:20:478,Europe/Paris,,OIF, +OIF:SP:20:479,1,"Roissy Route de l'Arpenteur",49.006224,2.50664,0,0,OIF:SA:20:478,Europe/Paris,,OIF, +OIF:SP:20:48,1,"Les Coteaux",48.99332,2.112793,0,0,OIF:SA:20:47,Europe/Paris,,OIF, +OIF:SP:20:480,1,"Roissy Entretien Nord",49.011889,2.516467,0,0,OIF:SA:20:480,Europe/Paris,,OIF, +OIF:SP:20:481,1,"Roissy Entretien Nord",49.011835,2.516494,0,0,OIF:SA:20:480,Europe/Paris,,OIF, +OIF:SP:20:482,1,"Roissy Zone Technique",49.010741,2.532555,0,0,OIF:SA:20:482,Europe/Paris,,OIF, +OIF:SP:20:483,1,"Roissy Zone Technique",49.011459,2.533077,0,0,OIF:SA:20:482,Europe/Paris,,OIF, +OIF:SP:20:484,1,"Roissypole",49.010576,2.559781,0,0,OIF:SA:20:484,Europe/Paris,,OIF, +OIF:SP:20:486,1,"Gare de Maisons Laffitte",48.945566,2.144544,0,0,OIF:SA:8738642,Europe/Paris,,OIF, +OIF:SP:20:487,1,"Procession",48.939155,2.136996,0,0,OIF:SA:20:487,Europe/Paris,,OIF, +OIF:SP:20:489,1,"Croix Rompue",48.953021,2.064021,0,0,OIF:SA:20:353,Europe/Paris,,OIF, +OIF:SP:20:49,1,"Marcel Pagnol",48.993324,2.110048,0,0,OIF:SA:20:49,Europe/Paris,,OIF, +OIF:SP:20:490,1,"Procession",48.939353,2.136777,0,0,OIF:SA:20:487,Europe/Paris,,OIF, +OIF:SP:20:491,1,"République",48.942149,2.137503,0,0,OIF:SA:20:491,Europe/Paris,,OIF, +OIF:SP:20:492,1,"République",48.941074,2.139445,0,0,OIF:SA:20:491,Europe/Paris,,OIF, +OIF:SP:20:498,1,"Gare Avenue Saint-Germain",48.945414,2.144531,0,0,OIF:SA:8738642,Europe/Paris,,OIF, +OIF:SP:20:499,1,"Croix Bosset",48.937559,2.133865,0,0,OIF:SA:20:272,Europe/Paris,,OIF, +OIF:SP:20:50,1,"Marcel Pagnol",48.993296,2.10968,0,0,OIF:SA:20:49,Europe/Paris,,OIF, +OIF:SP:20:501,1,"Cité Grands Champs",48.940784,2.122543,0,0,OIF:SA:20:267,Europe/Paris,,OIF, +OIF:SP:20:51,1,"Collège des Hautes Rayes",48.997623,2.116762,0,0,OIF:SA:20:133,Europe/Paris,,OIF, +OIF:SP:20:53,1,"Gaillon",48.999069,2.116265,0,0,OIF:SA:20:53,Europe/Paris,,OIF, +OIF:SP:20:61,1,"Gaillon",48.998935,2.116566,0,0,OIF:SA:20:53,Europe/Paris,,OIF, +OIF:SP:20:62,1,"Centre Commercial Paul Brard",48.997624,2.107817,0,0,OIF:SA:20:62,Europe/Paris,,OIF, +OIF:SP:20:629,1,"Roissypole",49.010576,2.559781,0,0,OIF:SA:20:484,Europe/Paris,,OIF, +OIF:SP:20:63,1,"Centre Commercial Paul Brard",48.997633,2.107967,0,0,OIF:SA:20:62,Europe/Paris,,OIF, +OIF:SP:20:630,1,"Rond-Point d'Attainville",49.060504,2.338656,0,0,OIF:SA:20:470,Europe/Paris,,OIF, +OIF:SP:20:631,1,"Gare de Montsoult",49.066389,2.322259,0,0,OIF:SA:8727649,Europe/Paris,,OIF, +OIF:SP:20:632,1,"Gare de Cergy Préfecture",49.036568,2.080131,0,0,OIF:SA:8738190,Europe/Paris,,OIF, +OIF:SP:20:634,1,"Hautil",49.003582,2.07714,0,0,OIF:SA:20:634,Europe/Paris,,OIF, +OIF:SP:20:636,1,"Hautil",49.00333,2.076718,0,0,OIF:SA:20:634,Europe/Paris,,OIF, +OIF:SP:20:638,1,"Champs du Four",48.998988,2.111294,0,0,OIF:SA:20:638,Europe/Paris,,OIF, +OIF:SP:20:64,1,"Place Coutisson",48.996319,2.097621,0,0,OIF:SA:20:64,Europe/Paris,,OIF, +OIF:SP:20:640,1,"Champs du Four",48.998916,2.111198,0,0,OIF:SA:20:638,Europe/Paris,,OIF, +OIF:SP:20:642,1,"Centre Ville - Jean Jaurès",48.995514,2.095071,0,0,OIF:SA:20:642,Europe/Paris,,OIF, +OIF:SP:20:644,1,"Les Impressionnistes",49.002731,2.091103,0,0,OIF:SA:20:644,Europe/Paris,,OIF, +OIF:SP:20:646,1,"Kennedy",48.915517,2.087944,0,0,OIF:SA:20:646,Europe/Paris,,OIF, +OIF:SP:20:648,1,"Gare Place Romagné",48.997625,2.098994,0,0,OIF:SA:20:1,Europe/Paris,,OIF, +OIF:SP:20:65,1,"Gare Place Romagné",48.997787,2.099253,0,0,OIF:SA:20:1,Europe/Paris,,OIF, +OIF:SP:20:650,1,"Foch Constanti",48.930842,2.052612,0,0,OIF:SA:20:650,Europe/Paris,,OIF, +OIF:SP:20:652,1,"Foch Constanti",48.931393,2.053782,0,0,OIF:SA:20:650,Europe/Paris,,OIF, +OIF:SP:20:658,1,"Pompiers",48.999726,2.148303,0,0,OIF:SA:20:658,Europe/Paris,,OIF, +OIF:SP:20:66,1,"L.T.T.",48.998706,2.104889,0,0,OIF:SA:20:66,Europe/Paris,,OIF, +OIF:SP:20:668,1,"Gare Maisons Laffitte",48.945782,2.144229,0,0,OIF:SA:8738642,Europe/Paris,,OIF, +OIF:SP:20:67,1,"Gare Place Romagné",48.99758,2.098953,0,0,OIF:SA:20:1,Europe/Paris,,OIF, +OIF:SP:20:670,1,"Gare Place Romagné",48.997481,2.098886,0,0,OIF:SA:20:1,Europe/Paris,,OIF, +OIF:SP:20:680,1,"Kennedy",48.914799,2.088234,0,0,OIF:SA:20:646,Europe/Paris,,OIF, +OIF:SP:20:682,1,"Gare de Cergy Préfecture",49.035198,2.082174,0,0,OIF:SA:8738190,Europe/Paris,,OIF, +OIF:SP:20:684,1,"Gare de Cergy Préfecture",49.035942,2.081474,0,0,OIF:SA:8738190,Europe/Paris,,OIF, +OIF:SP:20:686,1,"Gare d'Achères",48.969335,2.077257,0,0,OIF:SA:8738165,Europe/Paris,,OIF, +OIF:SP:20:688,1,"Gare de Fin d'Oise",48.989262,2.074877,0,0,OIF:SA:8738145,Europe/Paris,,OIF, +OIF:SP:20:69,1,"Verdun",48.996442,2.094145,0,0,OIF:SA:20:69,Europe/Paris,,OIF, +OIF:SP:20:7,1,"Aristide Briand",49.000458,2.091319,0,0,OIF:SA:20:7,Europe/Paris,,OIF, +OIF:SP:20:70,1,"Gendarmerie",48.999852,2.093808,0,0,OIF:SA:20:70,Europe/Paris,,OIF, +OIF:SP:20:702,1,"Norton",49.013124,2.08921,0,0,OIF:SA:20:702,Europe/Paris,,OIF, +OIF:SP:20:704,1,"Gare d'Achères",48.969676,2.077337,0,0,OIF:SA:8738165,Europe/Paris,,OIF, +OIF:SP:20:706,1,"Gare Place Romagné",48.997244,2.097453,0,0,OIF:SA:20:1,Europe/Paris,,OIF, +OIF:SP:20:708,1,"Passerelle",48.989419,2.081294,0,0,OIF:SA:20:708,Europe/Paris,,OIF, +OIF:SP:20:71,1,"Gendarmerie",48.999097,2.093606,0,0,OIF:SA:20:70,Europe/Paris,,OIF, +OIF:SP:20:710,1,"Cotes Reverses",48.997697,2.112897,0,0,OIF:SA:20:710,Europe/Paris,,OIF, +OIF:SP:20:711,1,"Cotes Reverses",48.998003,2.113087,0,0,OIF:SA:20:710,Europe/Paris,,OIF, +OIF:SP:20:712,1,"Thiers (Gare de Saint-Germain en Laye)",48.896917,2.098475,0,0,OIF:SA:8775809,Europe/Paris,,OIF, +OIF:SP:20:713,1,"Plateau du Moulin",48.995411,2.111296,0,0,OIF:SA:20:713,Europe/Paris,,OIF, +OIF:SP:20:714,1,"Plateau du Moulin",48.99551,2.111459,0,0,OIF:SA:20:713,Europe/Paris,,OIF, +OIF:SP:20:72,1,"Les Anglais",49.003321,2.093846,0,0,OIF:SA:20:72,Europe/Paris,,OIF, +OIF:SP:20:73,1,"Les Anglais",49.003437,2.093777,0,0,OIF:SA:20:72,Europe/Paris,,OIF, +OIF:SP:20:74,1,"Croix Blanche",49.005755,2.093534,0,0,OIF:SA:20:74,Europe/Paris,,OIF, +OIF:SP:20:75,1,"Croix Blanche",49.005405,2.093536,0,0,OIF:SA:20:74,Europe/Paris,,OIF, +OIF:SP:20:76,1,"Bois Meresse",49.009556,2.09327,0,0,OIF:SA:20:76,Europe/Paris,,OIF, +OIF:SP:20:77,1,"Bois Meresse",49.008963,2.093314,0,0,OIF:SA:20:76,Europe/Paris,,OIF, +OIF:SP:20:78,1,"Les Ambassadeurs",49.012099,2.092917,0,0,OIF:SA:20:78,Europe/Paris,,OIF, +OIF:SP:20:79,1,"Les Ambassadeurs",49.01191,2.09274,0,0,OIF:SA:20:78,Europe/Paris,,OIF, +OIF:SP:20:8,1,"Aristide Briand",49.001266,2.090905,0,0,OIF:SA:20:7,Europe/Paris,,OIF, +OIF:SP:20:81,1,"Norton",49.013012,2.091123,0,0,OIF:SA:20:702,Europe/Paris,,OIF, +OIF:SP:20:83,1,"L.T.T.",48.998869,2.105708,0,0,OIF:SA:20:66,Europe/Paris,,OIF, +OIF:SP:20:84,1,"L.T.T.",48.999077,2.106131,0,0,OIF:SA:20:66,Europe/Paris,,OIF, +OIF:SP:20:85,1,"Clément Plein Air",49.001349,2.110327,0,0,OIF:SA:20:85,Europe/Paris,,OIF, +OIF:SP:20:86,1,"Clément Salengro",49.000492,2.108555,0,0,OIF:SA:20:86,Europe/Paris,,OIF, +OIF:SP:20:87,1,"La Minette",49.002951,2.106783,0,0,OIF:SA:20:87,Europe/Paris,,OIF, +OIF:SP:20:88,1,"Sarrail",49.002809,2.112288,0,0,OIF:SA:20:451,Europe/Paris,,OIF, +OIF:SP:20:90,1,"Place de la Liberté",49.004808,2.116324,0,0,OIF:SA:20:125,Europe/Paris,,OIF, +OIF:SP:20:92,1,"Les Limousines",49.0082,2.115388,0,0,OIF:SA:20:92,Europe/Paris,,OIF, +OIF:SP:20:93,1,"Les Limousines",49.007939,2.115697,0,0,OIF:SA:20:92,Europe/Paris,,OIF, +OIF:SP:20:94,1,"Chemin Vert",49.007661,2.12301,0,0,OIF:SA:20:94,Europe/Paris,,OIF, +OIF:SP:20:95,1,"Chemin Vert",49.007775,2.122854,0,0,OIF:SA:20:94,Europe/Paris,,OIF, +OIF:SP:20:96,1,"Soleil Levant",49.00862,2.125431,0,0,OIF:SA:20:96,Europe/Paris,,OIF, +OIF:SP:20:97,1,"Soleil Levant",49.008872,2.125037,0,0,OIF:SA:20:96,Europe/Paris,,OIF, +OIF:SP:20:98,1,"Gare de Fin d'Oise",48.988435,2.075086,0,0,OIF:SA:8738145,Europe/Paris,,OIF, +OIF:SP:20:982,1,"Pont Rive Droite",48.991589,2.083099,0,0,OIF:SA:20:101,Europe/Paris,,OIF, +OIF:SP:20:99,1,"Passerelle",48.989565,2.082085,0,0,OIF:SA:20:708,Europe/Paris,,OIF, +OIF:SP:21:1,1,"Laboulaye",48.818294,2.136945,0,0,OIF:SA:21:1,Europe/Paris,,OIF, +OIF:SP:21:10,1,"Grand Sentier",49.00892,1.926025,0,0,OIF:SA:21:10,Europe/Paris,,OIF, +OIF:SP:21:100,1,"Croix Verte",48.862598,1.871515,0,0,OIF:SA:21:100,Europe/Paris,,OIF, +OIF:SP:21:1001,1,"Les 3 Fontaines",48.836484,2.11166,0,0,OIF:SA:21:1001,Europe/Paris,,OIF, +OIF:SP:21:1002,1,"Fontaine",48.864666,2.026316,0,0,OIF:SA:21:1002,Europe/Paris,,OIF, +OIF:SP:21:1003,1,"P. le Faucheux",48.98353,1.915375,0,0,OIF:SA:21:1003,Europe/Paris,,OIF, +OIF:SP:21:1004,1,"Champ du Caillou",48.853682,1.983984,0,0,OIF:SA:21:1004,Europe/Paris,,OIF, +OIF:SP:21:1005,1,"Place de l'Église",49.008104,1.894357,0,0,OIF:SA:21:1005,Europe/Paris,,OIF, +OIF:SP:21:1006,1,"Gare de Hardricourt",49.008844,1.900033,0,0,OIF:SA:8738183,Europe/Paris,,OIF, +OIF:SP:21:1007,1,"Maison des Associations",48.986321,1.919394,0,0,OIF:SA:21:1007,Europe/Paris,,OIF, +OIF:SP:21:1008,1,"Maison des Associations",48.986339,1.91934,0,0,OIF:SA:21:1007,Europe/Paris,,OIF, +OIF:SP:21:1009,1,"P. le Faucheux",48.983584,1.915457,0,0,OIF:SA:21:1003,Europe/Paris,,OIF, +OIF:SP:21:101,1,"Mairie",48.856907,1.875571,0,0,OIF:SA:21:101,Europe/Paris,,OIF, +OIF:SP:21:1010,1,"Chemin de Flins",48.984118,1.901375,0,0,OIF:SA:21:1010,Europe/Paris,,OIF, +OIF:SP:21:102,1,"Église",49.125672,1.81474,0,0,OIF:SA:21:102,Europe/Paris,,OIF, +OIF:SP:21:1026,1,"Rouillard",48.999065,1.917093,0,0,OIF:SA:21:1026,Europe/Paris,,OIF, +OIF:SP:21:103,1,"Église",49.125679,1.814747,0,0,OIF:SA:21:102,Europe/Paris,,OIF, +OIF:SP:21:1032,1,"Parly 2",48.826728,2.114139,0,0,OIF:SA:21:1032,Europe/Paris,,OIF, +OIF:SP:21:105,1,"Moque Panier",48.840305,1.879871,0,0,OIF:SA:21:105,Europe/Paris,,OIF, +OIF:SP:21:11,1,"Grand Sentier",49.008975,1.925993,0,0,OIF:SA:21:10,Europe/Paris,,OIF, +OIF:SP:21:110,1,"Place Rouget",48.994843,1.91008,0,0,OIF:SA:21:110,Europe/Paris,,OIF, +OIF:SP:21:113,1,"Le Balto",48.964921,1.897936,0,0,OIF:SA:21:113,Europe/Paris,,OIF, +OIF:SP:21:115,1,"Ferme Rouge",48.959213,1.904208,0,0,OIF:SA:21:115,Europe/Paris,,OIF, +OIF:SP:21:116,1,"Ferme Rouge",48.960273,1.905094,0,0,OIF:SA:21:115,Europe/Paris,,OIF, +OIF:SP:21:117,1,"Église",48.929421,1.757283,0,0,OIF:SA:21:117,Europe/Paris,,OIF, +OIF:SP:21:118,1,"La Beauce",48.961566,1.896961,0,0,OIF:SA:21:118,Europe/Paris,,OIF, +OIF:SP:21:12,1,"Collège Henri IV",49.013581,1.922632,0,0,OIF:SA:21:12,Europe/Paris,,OIF, +OIF:SP:21:120,1,"Cigale",48.96853,1.905298,0,0,OIF:SA:21:120,Europe/Paris,,OIF, +OIF:SP:21:121,1,"Cigale",48.968521,1.905195,0,0,OIF:SA:21:120,Europe/Paris,,OIF, +OIF:SP:21:122,1,"Pré Seigneur",48.964448,1.904568,0,0,OIF:SA:21:122,Europe/Paris,,OIF, +OIF:SP:21:123,1,"Pré Seigneur",48.965775,1.904738,0,0,OIF:SA:21:122,Europe/Paris,,OIF, +OIF:SP:21:1234,1,"Les 3 Fontaines",48.836637,2.11155,0,0,OIF:SA:21:1001,Europe/Paris,,OIF, +OIF:SP:21:1236,1,"Les Bleuets",48.969434,1.87525,0,0,OIF:SA:21:1236,Europe/Paris,,OIF, +OIF:SP:21:1237,1,"Cote de Paris",48.963387,1.875495,0,0,OIF:SA:21:1237,Europe/Paris,,OIF, +OIF:SP:21:1239,1,"Port-Maron - Orpéa",48.99574,1.984354,0,0,OIF:SA:21:1239,Europe/Paris,,OIF, +OIF:SP:21:124,1,"Bel Air",48.928983,1.859379,0,0,OIF:SA:21:124,Europe/Paris,,OIF, +OIF:SP:21:1241,1,"Pré de Saint-Nom Sud",48.857527,2.021564,0,0,OIF:SA:21:1241,Europe/Paris,,OIF, +OIF:SP:21:125,1,"Bel Air",48.928983,1.859379,0,0,OIF:SA:21:124,Europe/Paris,,OIF, +OIF:SP:21:126,1,"Beulle",48.921221,1.875536,0,0,OIF:SA:21:126,Europe/Paris,,OIF, +OIF:SP:21:127,1,"Beulle",48.921356,1.875239,0,0,OIF:SA:21:126,Europe/Paris,,OIF, +OIF:SP:21:128,1,"Fauvettes",48.924838,1.868471,0,0,OIF:SA:21:128,Europe/Paris,,OIF, +OIF:SP:21:129,1,"Fauvettes",48.924838,1.868471,0,0,OIF:SA:21:128,Europe/Paris,,OIF, +OIF:SP:21:130,1,"Fontaine à la Guerre",48.933233,1.868962,0,0,OIF:SA:21:130,Europe/Paris,,OIF, +OIF:SP:21:131,1,"Fontaine à la Guerre",48.933396,1.868734,0,0,OIF:SA:21:130,Europe/Paris,,OIF, +OIF:SP:21:132,1,"Mairie",48.928539,1.864919,0,0,OIF:SA:21:132,Europe/Paris,,OIF, +OIF:SP:21:133,1,"Mairie",48.928539,1.864919,0,0,OIF:SA:21:132,Europe/Paris,,OIF, +OIF:SP:21:134,1,"Manoir",48.925858,1.865814,0,0,OIF:SA:21:134,Europe/Paris,,OIF, +OIF:SP:21:135,1,"Manoir",48.925858,1.865814,0,0,OIF:SA:21:134,Europe/Paris,,OIF, +OIF:SP:21:136,1,"Rue de Maule",48.927891,1.868094,0,0,OIF:SA:21:136,Europe/Paris,,OIF, +OIF:SP:21:137,1,"Rue de Maule",48.927803,1.868397,0,0,OIF:SA:21:136,Europe/Paris,,OIF, +OIF:SP:21:138,1,"Muguets",48.927379,1.862368,0,0,OIF:SA:21:138,Europe/Paris,,OIF, +OIF:SP:21:139,1,"Muguets",48.926843,1.863245,0,0,OIF:SA:21:138,Europe/Paris,,OIF, +OIF:SP:21:14,1,"Île de France",49.010888,1.911783,0,0,OIF:SA:21:14,Europe/Paris,,OIF, +OIF:SP:21:140,1,"Rue de la Pompe",48.938701,1.862897,0,0,OIF:SA:21:140,Europe/Paris,,OIF, +OIF:SP:21:141,1,"Rue de la Pompe",48.938541,1.862882,0,0,OIF:SA:21:140,Europe/Paris,,OIF, +OIF:SP:21:142,1,"Sainte-Colombe",48.943861,1.864618,0,0,OIF:SA:21:142,Europe/Paris,,OIF, +OIF:SP:21:143,1,"Sainte-Colombe",48.943865,1.864449,0,0,OIF:SA:21:142,Europe/Paris,,OIF, +OIF:SP:21:144,1,"Transformateur",48.922979,1.872224,0,0,OIF:SA:21:144,Europe/Paris,,OIF, +OIF:SP:21:145,1,"Transformateur",48.923014,1.873006,0,0,OIF:SA:21:144,Europe/Paris,,OIF, +OIF:SP:21:146,1,"Transformateur",48.922996,1.872971,0,0,OIF:SA:21:144,Europe/Paris,,OIF, +OIF:SP:21:148,1,"Thun Saint-Louis",49.008441,1.931169,0,0,OIF:SA:21:148,Europe/Paris,,OIF, +OIF:SP:21:149,1,"Gare de Cergy le Haut",49.04766,2.010143,0,0,OIF:SA:8738265,Europe/Paris,,OIF, +OIF:SP:21:15,1,"Les Ibis",49.011736,1.914697,0,0,OIF:SA:21:15,Europe/Paris,,OIF, +OIF:SP:21:152,1,"Gare de Cergy Préfecture",49.036116,2.080526,0,0,OIF:SA:8738190,Europe/Paris,,OIF, +OIF:SP:21:153,1,"Gare de Cergy Préfecture",49.036116,2.080526,0,0,OIF:SA:8738190,Europe/Paris,,OIF, +OIF:SP:21:157,1,"Route de Brézolles",48.965138,1.938851,0,0,OIF:SA:21:157,Europe/Paris,,OIF, +OIF:SP:21:159,1,"Mairie",48.967281,1.933821,0,0,OIF:SA:21:159,Europe/Paris,,OIF, +OIF:SP:21:16,1,"Les Tulipes",49.011075,1.919127,0,0,OIF:SA:21:16,Europe/Paris,,OIF, +OIF:SP:21:160,1,"RD 43",48.964036,1.923983,0,0,OIF:SA:21:160,Europe/Paris,,OIF, +OIF:SP:21:161,1,"RD 43",48.964625,1.923365,0,0,OIF:SA:21:160,Europe/Paris,,OIF, +OIF:SP:21:162,1,"Chardronville",49.045757,1.950971,0,0,OIF:SA:21:162,Europe/Paris,,OIF, +OIF:SP:21:163,1,"Chardronville",49.04585,1.951234,0,0,OIF:SA:21:162,Europe/Paris,,OIF, +OIF:SP:21:164,1,"Rue de la Garenne",48.964005,1.931336,0,0,OIF:SA:21:164,Europe/Paris,,OIF, +OIF:SP:21:165,1,"Centre",48.853009,1.986419,0,0,OIF:SA:21:165,Europe/Paris,,OIF, +OIF:SP:21:166,1,"Sucrerie",48.855764,1.976765,0,0,OIF:SA:21:166,Europe/Paris,,OIF, +OIF:SP:21:167,1,"Vallon",48.853275,1.992186,0,0,OIF:SA:21:167,Europe/Paris,,OIF, +OIF:SP:21:168,1,"Église",49.040625,1.941584,0,0,OIF:SA:21:168,Europe/Paris,,OIF, +OIF:SP:21:169,1,"Église",49.040655,1.94154,0,0,OIF:SA:21:168,Europe/Paris,,OIF, +OIF:SP:21:170,1,"Rue des Aulnes",49.043695,1.943285,0,0,OIF:SA:21:170,Europe/Paris,,OIF, +OIF:SP:21:171,1,"Rue des Aulnes",49.043715,1.943069,0,0,OIF:SA:21:170,Europe/Paris,,OIF, +OIF:SP:21:174,1,"Chemin aux Bœufs",48.883994,1.920511,0,0,OIF:SA:21:174,Europe/Paris,,OIF, +OIF:SP:21:175,1,"Croix Marie",48.893451,1.924379,0,0,OIF:SA:21:175,Europe/Paris,,OIF, +OIF:SP:21:176,1,"Ferme Neuve",48.877477,1.944701,0,0,OIF:SA:21:176,Europe/Paris,,OIF, +OIF:SP:21:177,1,"Ferme Neuve",48.877412,1.944701,0,0,OIF:SA:21:176,Europe/Paris,,OIF, +OIF:SP:21:178,1,"Carrefour 307",48.886348,1.923934,0,0,OIF:SA:21:178,Europe/Paris,,OIF, +OIF:SP:21:179,1,"Carrefour 307",48.886309,1.922562,0,0,OIF:SA:21:178,Europe/Paris,,OIF, +OIF:SP:21:18,1,"Les Marguerites",49.009793,1.912527,0,0,OIF:SA:21:18,Europe/Paris,,OIF, +OIF:SP:21:180,1,"Grande Terrasse",48.841235,2.13132,0,0,OIF:SA:17:1310,Europe/Paris,,OIF, +OIF:SP:21:181,1,"Grande Terrasse",48.841272,2.131108,0,0,OIF:SA:17:1310,Europe/Paris,,OIF, +OIF:SP:21:182,1,"Lycée Pierre Corneille",48.846797,2.13669,0,0,OIF:SA:21:182,Europe/Paris,,OIF, +OIF:SP:21:186,1,"Village",48.865912,1.948522,0,0,OIF:SA:21:186,Europe/Paris,,OIF, +OIF:SP:21:187,1,"Village",48.865912,1.948522,0,0,OIF:SA:21:186,Europe/Paris,,OIF, +OIF:SP:21:189,1,"Annexe Mairie (Gare SNCF)",48.962615,1.808652,0,0,OIF:SA:21:189,Europe/Paris,,OIF, +OIF:SP:21:19,1,"Place du Vexin",49.004906,1.906813,0,0,OIF:SA:8741069,Europe/Paris,,OIF, +OIF:SP:21:190,1,"Avenue d'Épône",48.968675,1.833721,0,0,OIF:SA:21:190,Europe/Paris,,OIF, +OIF:SP:21:191,1,"Boulevard de Bruxelles",48.97035,1.838051,0,0,OIF:SA:21:191,Europe/Paris,,OIF, +OIF:SP:21:192,1,"Boulevard de Mantes",48.970613,1.841986,0,0,OIF:SA:21:192,Europe/Paris,,OIF, +OIF:SP:21:193,1,"Boulevard de la Paix",48.96985,1.835959,0,0,OIF:SA:21:193,Europe/Paris,,OIF, +OIF:SP:21:195,1,"La Bergerie",48.97392,1.838806,0,0,OIF:SA:21:195,Europe/Paris,,OIF, +OIF:SP:21:196,1,"Bout du Monde",48.968365,1.829808,0,0,OIF:SA:21:196,Europe/Paris,,OIF, +OIF:SP:21:197,1,"Les Dolmens",48.970288,1.832814,0,0,OIF:SA:21:197,Europe/Paris,,OIF, +OIF:SP:21:198,1,"Mairie / École",48.97323,1.836903,0,0,OIF:SA:21:198,Europe/Paris,,OIF, +OIF:SP:21:2,1,"Café du Stade",49.008908,1.904813,0,0,OIF:SA:21:2,Europe/Paris,,OIF, +OIF:SP:21:20,1,"Place du Vexin",49.00503,1.906608,0,0,OIF:SA:8741069,Europe/Paris,,OIF, +OIF:SP:21:200,1,"Place Louvain",48.976241,1.844919,0,0,OIF:SA:21:200,Europe/Paris,,OIF, +OIF:SP:21:201,1,"Place du Marche",48.971523,1.845913,0,0,OIF:SA:21:201,Europe/Paris,,OIF, +OIF:SP:21:202,1,"Place Maréchal Juin",48.971523,1.836939,0,0,OIF:SA:21:202,Europe/Paris,,OIF, +OIF:SP:21:204,1,"Reine Astrid",48.976598,1.849658,0,0,OIF:SA:21:204,Europe/Paris,,OIF, +OIF:SP:21:205,1,"Allée de Pinceloup",48.943916,1.808411,0,0,OIF:SA:21:205,Europe/Paris,,OIF, +OIF:SP:21:206,1,"Avenue de la Gare",48.95805,1.807666,0,0,OIF:SA:21:206,Europe/Paris,,OIF, +OIF:SP:21:207,1,"Avenue de la Gare",48.958021,1.807624,0,0,OIF:SA:21:206,Europe/Paris,,OIF, +OIF:SP:21:208,1,"Carrefour Saint-Martin",48.953781,1.819594,0,0,OIF:SA:21:208,Europe/Paris,,OIF, +OIF:SP:21:209,1,"Carrefour Saint-Martin",48.953676,1.819312,0,0,OIF:SA:21:208,Europe/Paris,,OIF, +OIF:SP:21:21,1,"Renoir",49.012181,1.926145,0,0,OIF:SA:21:21,Europe/Paris,,OIF, +OIF:SP:21:210,1,"Le Château",48.953366,1.813376,0,0,OIF:SA:21:210,Europe/Paris,,OIF, +OIF:SP:21:211,1,"Le Château",48.953341,1.812617,0,0,OIF:SA:21:210,Europe/Paris,,OIF, +OIF:SP:21:212,1,"Chemin Neuf",48.952498,1.816294,0,0,OIF:SA:21:212,Europe/Paris,,OIF, +OIF:SP:21:213,1,"Émile Sergent",48.956676,1.816983,0,0,OIF:SA:21:213,Europe/Paris,,OIF, +OIF:SP:21:214,1,"Émile Sergent",48.956803,1.817036,0,0,OIF:SA:21:213,Europe/Paris,,OIF, +OIF:SP:21:215,1,"Le Fourneau",48.942496,1.809086,0,0,OIF:SA:21:215,Europe/Paris,,OIF, +OIF:SP:21:216,1,"Gare d'Épône Mézières",48.962621,1.808519,0,0,OIF:SA:8738676,Europe/Paris,,OIF, +OIF:SP:21:217,1,"La Falaise",48.956338,1.821562,0,0,OIF:SA:21:217,Europe/Paris,,OIF, +OIF:SP:21:218,1,"La Falaise",48.95639,1.821527,0,0,OIF:SA:21:217,Europe/Paris,,OIF, +OIF:SP:21:219,1,"Les Biches",48.952633,1.811814,0,0,OIF:SA:21:219,Europe/Paris,,OIF, +OIF:SP:21:22,1,"Rue des Carrières",49.008078,1.908158,0,0,OIF:SA:21:22,Europe/Paris,,OIF, +OIF:SP:21:220,1,"Mairie",48.957493,1.811432,0,0,OIF:SA:21:220,Europe/Paris,,OIF, +OIF:SP:21:221,1,"Mairie",48.957298,1.811537,0,0,OIF:SA:21:220,Europe/Paris,,OIF, +OIF:SP:21:222,1,"Moulin à Vent",48.945485,1.809962,0,0,OIF:SA:21:222,Europe/Paris,,OIF, +OIF:SP:21:224,1,"Poteau",48.956711,1.830126,0,0,OIF:SA:21:224,Europe/Paris,,OIF, +OIF:SP:21:225,1,"Poteau",48.956655,1.830019,0,0,OIF:SA:21:224,Europe/Paris,,OIF, +OIF:SP:21:226,1,"La Chamoiserie",48.971808,1.918705,0,0,OIF:SA:21:226,Europe/Paris,,OIF, +OIF:SP:21:227,1,"Fontaines",48.951935,1.915666,0,0,OIF:SA:21:227,Europe/Paris,,OIF, +OIF:SP:21:228,1,"Les Louvettes",48.954129,1.917212,0,0,OIF:SA:21:228,Europe/Paris,,OIF, +OIF:SP:21:229,1,"Collège Léonard de Vinci",48.954967,1.919173,0,0,OIF:SA:21:229,Europe/Paris,,OIF, +OIF:SP:21:23,1,"Rue de la Ferme",49.012891,1.919047,0,0,OIF:SA:21:23,Europe/Paris,,OIF, +OIF:SP:21:230,1,"Le Parc",48.946736,1.92712,0,0,OIF:SA:21:230,Europe/Paris,,OIF, +OIF:SP:21:231,1,"Le Parc",48.946736,1.92712,0,0,OIF:SA:21:230,Europe/Paris,,OIF, +OIF:SP:21:232,1,"Sablons",48.953933,1.920598,0,0,OIF:SA:21:232,Europe/Paris,,OIF, +OIF:SP:21:234,1,"Monument",48.951743,1.913643,0,0,OIF:SA:21:234,Europe/Paris,,OIF, +OIF:SP:21:235,1,"République",48.948496,1.92266,0,0,OIF:SA:21:235,Europe/Paris,,OIF, +OIF:SP:21:236,1,"Porte du May",48.956661,1.922678,0,0,OIF:SA:21:236,Europe/Paris,,OIF, +OIF:SP:21:239,1,"Val Fleuri",48.953655,1.922865,0,0,OIF:SA:21:239,Europe/Paris,,OIF, +OIF:SP:21:24,1,"Rue de la Ferme",49.012891,1.919047,0,0,OIF:SA:21:23,Europe/Paris,,OIF, +OIF:SP:21:240,1,"Saint-Antoine",48.951086,1.921665,0,0,OIF:SA:21:240,Europe/Paris,,OIF, +OIF:SP:21:241,1,"Victor Hugo",48.950018,1.918171,0,0,OIF:SA:21:241,Europe/Paris,,OIF, +OIF:SP:21:243,1,"ZI RD 43",48.950774,1.928001,0,0,OIF:SA:21:243,Europe/Paris,,OIF, +OIF:SP:21:244,1,"Presles RD 43",48.951048,1.92772,0,0,OIF:SA:21:243,Europe/Paris,,OIF, +OIF:SP:21:245,1,"ZI du Petit Parc Esat",48.947338,1.932985,0,0,OIF:SA:21:245,Europe/Paris,,OIF, +OIF:SP:21:246,1,"Clinique (Cardiologie)",49.009813,1.93327,0,0,OIF:SA:21:246,Europe/Paris,,OIF, +OIF:SP:21:247,1,"Clinique (Cardiologie)",49.009848,1.934185,0,0,OIF:SA:21:246,Europe/Paris,,OIF, +OIF:SP:21:248,1,"Colombier",49.016013,1.944565,0,0,OIF:SA:21:248,Europe/Paris,,OIF, +OIF:SP:21:249,1,"Colombier",49.015976,1.944505,0,0,OIF:SA:21:248,Europe/Paris,,OIF, +OIF:SP:21:250,1,"Le Lavoir",49.014071,1.94907,0,0,OIF:SA:21:250,Europe/Paris,,OIF, +OIF:SP:21:251,1,"Le Lavoir",49.013993,1.94906,0,0,OIF:SA:21:250,Europe/Paris,,OIF, +OIF:SP:21:254,1,"Sainte-Gemme Clairbois",48.882349,1.981778,0,0,OIF:SA:21:254,Europe/Paris,,OIF, +OIF:SP:21:255,1,"Sainte-Gemme Clairbois",48.881742,1.981333,0,0,OIF:SA:21:254,Europe/Paris,,OIF, +OIF:SP:21:256,1,"Cottages",48.867664,1.971018,0,0,OIF:SA:21:256,Europe/Paris,,OIF, +OIF:SP:21:257,1,"Cottages",48.867634,1.971041,0,0,OIF:SA:21:256,Europe/Paris,,OIF, +OIF:SP:21:258,1,"Grasse Village",48.865699,1.976859,0,0,OIF:SA:21:258,Europe/Paris,,OIF, +OIF:SP:21:259,1,"Grasse Village",48.865669,1.976646,0,0,OIF:SA:21:258,Europe/Paris,,OIF, +OIF:SP:21:260,1,"Collège J. Monnet",48.866707,1.978848,0,0,OIF:SA:21:260,Europe/Paris,,OIF, +OIF:SP:21:261,1,"Mairie",48.874702,1.974841,0,0,OIF:SA:21:261,Europe/Paris,,OIF, +OIF:SP:21:262,1,"Mairie",48.874031,1.973738,0,0,OIF:SA:21:261,Europe/Paris,,OIF, +OIF:SP:21:264,1,"Sainte-Gemme Place des Fetes",48.877027,1.978666,0,0,OIF:SA:21:264,Europe/Paris,,OIF, +OIF:SP:21:265,1,"Sainte-Gemme Place des Fetes",48.877177,1.979061,0,0,OIF:SA:21:264,Europe/Paris,,OIF, +OIF:SP:21:266,1,"Pré des Coulons",48.870152,1.971819,0,0,OIF:SA:21:266,Europe/Paris,,OIF, +OIF:SP:21:267,1,"Pré des Coulons",48.870686,1.971818,0,0,OIF:SA:21:266,Europe/Paris,,OIF, +OIF:SP:21:269,1,"Centre Commercial",48.963385,1.861726,0,0,OIF:SA:21:269,Europe/Paris,,OIF, +OIF:SP:21:270,1,"Bois Bodin",48.963056,1.860406,0,0,OIF:SA:21:269,Europe/Paris,,OIF, +OIF:SP:21:272,1,"Lavoir",48.962776,1.874284,0,0,OIF:SA:21:272,Europe/Paris,,OIF, +OIF:SP:21:274,1,"Mairie",48.964625,1.870129,0,0,OIF:SA:21:274,Europe/Paris,,OIF, +OIF:SP:21:275,1,"Mairie",48.964563,1.870133,0,0,OIF:SA:21:274,Europe/Paris,,OIF, +OIF:SP:21:276,1,"Poste",48.963831,1.874309,0,0,OIF:SA:21:276,Europe/Paris,,OIF, +OIF:SP:21:277,1,"Poste",48.963894,1.874262,0,0,OIF:SA:21:276,Europe/Paris,,OIF, +OIF:SP:21:278,1,"Rue de Meulan",48.966508,1.871504,0,0,OIF:SA:21:278,Europe/Paris,,OIF, +OIF:SP:21:279,1,"Rue de Meulan",48.966683,1.871739,0,0,OIF:SA:21:278,Europe/Paris,,OIF, +OIF:SP:21:280,1,"Rue des Mureaux",48.965513,1.876094,0,0,OIF:SA:21:280,Europe/Paris,,OIF, +OIF:SP:21:281,1,"Rue des Mureaux",48.965501,1.876009,0,0,OIF:SA:21:280,Europe/Paris,,OIF, +OIF:SP:21:282,1,"Rue de Valence",48.96811,1.873421,0,0,OIF:SA:21:282,Europe/Paris,,OIF, +OIF:SP:21:285,1,"Rue du Bourg",49.065202,1.869924,0,0,OIF:SA:21:285,Europe/Paris,,OIF, +OIF:SP:21:286,1,"Rue du Bourg",49.065202,1.869924,0,0,OIF:SA:21:285,Europe/Paris,,OIF, +OIF:SP:21:287,1,"Mairie",49.096212,1.8577,0,0,OIF:SA:21:287,Europe/Paris,,OIF, +OIF:SP:21:288,1,"Mairie",49.096243,1.857659,0,0,OIF:SA:21:287,Europe/Paris,,OIF, +OIF:SP:21:289,1,"Abribus",49.018738,1.890872,0,0,OIF:SA:21:289,Europe/Paris,,OIF, +OIF:SP:21:290,1,"Mairie",49.023996,1.892175,0,0,OIF:SA:21:290,Europe/Paris,,OIF, +OIF:SP:21:291,1,"Gaillonnet",49.024018,1.874955,0,0,OIF:SA:21:291,Europe/Paris,,OIF, +OIF:SP:21:292,1,"Gaillonnet",49.023938,1.874918,0,0,OIF:SA:21:291,Europe/Paris,,OIF, +OIF:SP:21:293,1,"Chapeau Demoiselle",48.92129,1.768899,0,0,OIF:SA:21:293,Europe/Paris,,OIF, +OIF:SP:21:294,1,"Chapeau Demoiselle",48.921276,1.768852,0,0,OIF:SA:21:293,Europe/Paris,,OIF, +OIF:SP:21:295,1,"Croisement",48.9241,1.776942,0,0,OIF:SA:21:295,Europe/Paris,,OIF, +OIF:SP:21:296,1,"Croisement",48.924098,1.777254,0,0,OIF:SA:21:295,Europe/Paris,,OIF, +OIF:SP:21:297,1,"Place",48.920045,1.766075,0,0,OIF:SA:21:297,Europe/Paris,,OIF, +OIF:SP:21:298,1,"Grand Mesnil",49.05585,1.959399,0,0,OIF:SA:21:298,Europe/Paris,,OIF, +OIF:SP:21:299,1,"Grand Mesnil",49.055858,1.959584,0,0,OIF:SA:21:298,Europe/Paris,,OIF, +OIF:SP:21:3,1,"Café du Stade",49.009036,1.905002,0,0,OIF:SA:21:2,Europe/Paris,,OIF, +OIF:SP:21:300,1,"Abribus",49.107213,1.848615,0,0,OIF:SA:21:300,Europe/Paris,,OIF, +OIF:SP:21:301,1,"Abribus",49.107213,1.848437,0,0,OIF:SA:21:300,Europe/Paris,,OIF, +OIF:SP:21:302,1,"Cacao Barry",49.005048,1.901685,0,0,OIF:SA:21:302,Europe/Paris,,OIF, +OIF:SP:21:303,1,"Cacao Barry",49.00503,1.90171,0,0,OIF:SA:21:302,Europe/Paris,,OIF, +OIF:SP:21:304,1,"Centre Commercial",49.010158,1.899073,0,0,OIF:SA:21:304,Europe/Paris,,OIF, +OIF:SP:21:305,1,"Centre Commercial",49.010201,1.899235,0,0,OIF:SA:21:304,Europe/Paris,,OIF, +OIF:SP:21:306,1,"Chantereine",49.001831,1.889598,0,0,OIF:SA:21:306,Europe/Paris,,OIF, +OIF:SP:21:307,1,"Chantereine",49.001856,1.88964,0,0,OIF:SA:21:306,Europe/Paris,,OIF, +OIF:SP:21:308,1,"Château",49.006278,1.893571,0,0,OIF:SA:21:308,Europe/Paris,,OIF, +OIF:SP:21:309,1,"Château",49.006283,1.893553,0,0,OIF:SA:21:308,Europe/Paris,,OIF, +OIF:SP:21:310,1,"Église",49.007691,1.893763,0,0,OIF:SA:21:310,Europe/Paris,,OIF, +OIF:SP:21:311,1,"Église",49.007691,1.893783,0,0,OIF:SA:21:310,Europe/Paris,,OIF, +OIF:SP:21:312,1,"Gare de Hardricourt",49.008987,1.899827,0,0,OIF:SA:8738183,Europe/Paris,,OIF, +OIF:SP:21:313,1,"Guillaume de Beaumont",49.007173,1.897387,0,0,OIF:SA:21:313,Europe/Paris,,OIF, +OIF:SP:21:314,1,"Lieutenant Martin",49.007606,1.896757,0,0,OIF:SA:21:314,Europe/Paris,,OIF, +OIF:SP:21:315,1,"Mairie",49.005605,1.897163,0,0,OIF:SA:21:315,Europe/Paris,,OIF, +OIF:SP:21:316,1,"Mairie",49.005625,1.897195,0,0,OIF:SA:21:315,Europe/Paris,,OIF, +OIF:SP:21:32,1,"Cauchoiserie Allée des Roses",48.917318,1.869261,0,0,OIF:SA:21:32,Europe/Paris,,OIF, +OIF:SP:21:321,1,"Rue des Saules",49.005693,1.900338,0,0,OIF:SA:21:321,Europe/Paris,,OIF, +OIF:SP:21:322,1,"Rue des Saules",49.005643,1.900315,0,0,OIF:SA:21:321,Europe/Paris,,OIF, +OIF:SP:21:323,1,"Rue de Verdun",49.01398,1.899006,0,0,OIF:SA:21:323,Europe/Paris,,OIF, +OIF:SP:21:324,1,"Rue de Verdun",49.01399,1.899074,0,0,OIF:SA:21:323,Europe/Paris,,OIF, +OIF:SP:21:325,1,"Rue Vincent",49.008261,1.897003,0,0,OIF:SA:21:325,Europe/Paris,,OIF, +OIF:SP:21:326,1,"Salle Polyvalente",49.004768,1.889518,0,0,OIF:SA:21:326,Europe/Paris,,OIF, +OIF:SP:21:327,1,"Salle Polyvalente",49.004741,1.889145,0,0,OIF:SA:21:326,Europe/Paris,,OIF, +OIF:SP:21:33,1,"Cauchoiserie Allée des Roses",48.917586,1.869047,0,0,OIF:SA:21:32,Europe/Paris,,OIF, +OIF:SP:21:330,1,"Village",48.906834,1.884982,0,0,OIF:SA:21:330,Europe/Paris,,OIF, +OIF:SP:21:331,1,"Grande Rue",48.914258,1.786217,0,0,OIF:SA:21:331,Europe/Paris,,OIF, +OIF:SP:21:332,1,"Mairie",48.910692,1.787734,0,0,OIF:SA:21:332,Europe/Paris,,OIF, +OIF:SP:21:334,1,"Kléber",48.820069,2.13249,0,0,OIF:SA:21:334,Europe/Paris,,OIF, +OIF:SP:21:339,1,"Hôpital à Mignot",48.829817,2.127888,0,0,OIF:SA:21:339,Europe/Paris,,OIF, +OIF:SP:21:34,1,"Gare de Maule",48.907906,1.858456,0,0,OIF:SA:8738172,Europe/Paris,,OIF, +OIF:SP:21:341,1,"Centre Commercial Parly 2",48.827569,2.120103,0,0,OIF:SA:21:1032,Europe/Paris,,OIF, +OIF:SP:21:342,1,"Centre Commercial Parly 2",48.827569,2.120103,0,0,OIF:SA:21:1032,Europe/Paris,,OIF, +OIF:SP:21:344,1,"Debasseux",48.816879,2.134955,0,0,OIF:SA:21:344,Europe/Paris,,OIF, +OIF:SP:21:345,1,"Debasseux",48.8169,2.135265,0,0,OIF:SA:21:344,Europe/Paris,,OIF, +OIF:SP:21:346,1,"Porte Saint-Antoine",48.82258,2.11488,0,0,OIF:SA:15:269,Europe/Paris,,OIF, +OIF:SP:21:347,1,"Porte Saint-Antoine",48.823215,2.114728,0,0,OIF:SA:15:269,Europe/Paris,,OIF, +OIF:SP:21:35,1,"Gare de Maule",48.908494,1.857786,0,0,OIF:SA:8738172,Europe/Paris,,OIF, +OIF:SP:21:350,1,"Place de l'Église",49.06236,1.931487,0,0,OIF:SA:21:350,Europe/Paris,,OIF, +OIF:SP:21:351,1,"Place de l'Église",49.062322,1.931532,0,0,OIF:SA:21:350,Europe/Paris,,OIF, +OIF:SP:21:352,1,"Rue de l'Aubette",49.05969,1.931039,0,0,OIF:SA:21:352,Europe/Paris,,OIF, +OIF:SP:21:353,1,"Rue de l'Aubette",49.059902,1.931086,0,0,OIF:SA:21:352,Europe/Paris,,OIF, +OIF:SP:21:358,1,"Chavoye",48.893989,1.874662,0,0,OIF:SA:21:358,Europe/Paris,,OIF, +OIF:SP:21:359,1,"Chavoye",48.894174,1.874479,0,0,OIF:SA:21:358,Europe/Paris,,OIF, +OIF:SP:21:36,1,"Les Moussets",48.911073,1.855548,0,0,OIF:SA:21:36,Europe/Paris,,OIF, +OIF:SP:21:362,1,"La Chardonnière",48.892166,1.880797,0,0,OIF:SA:21:362,Europe/Paris,,OIF, +OIF:SP:21:363,1,"La Chardonnière",48.892126,1.881177,0,0,OIF:SA:21:362,Europe/Paris,,OIF, +OIF:SP:21:368,1,"Maurice Cayen",48.894541,1.870072,0,0,OIF:SA:21:368,Europe/Paris,,OIF, +OIF:SP:21:37,1,"Paul Barre",48.912511,1.853209,0,0,OIF:SA:21:37,Europe/Paris,,OIF, +OIF:SP:21:372,1,"Las Acacias",49.012445,1.921157,0,0,OIF:SA:21:372,Europe/Paris,,OIF, +OIF:SP:21:373,1,"Les Alouettes",49.011501,1.921065,0,0,OIF:SA:21:373,Europe/Paris,,OIF, +OIF:SP:21:375,1,"Les Annonciades",49.006338,1.91186,0,0,OIF:SA:21:375,Europe/Paris,,OIF, +OIF:SP:21:376,1,"Arquebuse",49.00431,1.911122,0,0,OIF:SA:8741071,Europe/Paris,,OIF, +OIF:SP:21:377,1,"Belvédère",49.009285,1.917832,0,0,OIF:SA:21:377,Europe/Paris,,OIF, +OIF:SP:21:378,1,"La Poste",49.004505,1.909215,0,0,OIF:SA:21:378,Europe/Paris,,OIF, +OIF:SP:21:379,1,"Mairie",48.94545,1.835559,0,0,OIF:SA:21:379,Europe/Paris,,OIF, +OIF:SP:21:38,1,"Paul Barre",48.912376,1.853217,0,0,OIF:SA:21:37,Europe/Paris,,OIF, +OIF:SP:21:380,1,"Mairie",48.945578,1.835639,0,0,OIF:SA:21:379,Europe/Paris,,OIF, +OIF:SP:21:381,1,"Centre Commercial",48.842462,2.066678,0,0,OIF:SA:21:381,Europe/Paris,,OIF, +OIF:SP:21:382,1,"Cardinal de Retz",48.846476,2.059613,0,0,OIF:SA:21:382,Europe/Paris,,OIF, +OIF:SP:21:384,1,"Foret de Cruye",48.852847,2.05379,0,0,OIF:SA:21:384,Europe/Paris,,OIF, +OIF:SP:21:385,1,"Gaillarderie",48.84176,2.070371,0,0,OIF:SA:21:385,Europe/Paris,,OIF, +OIF:SP:21:386,1,"Gare de Noisy le Roi",48.841832,2.061926,0,0,OIF:SA:8739387,Europe/Paris,,OIF, +OIF:SP:21:387,1,"Gare de Noisy le Roi",48.84207,2.061773,0,0,OIF:SA:8739387,Europe/Paris,,OIF, +OIF:SP:21:388,1,"Hameau Fleuri",48.84522,2.05822,0,0,OIF:SA:21:388,Europe/Paris,,OIF, +OIF:SP:21:389,1,"Hameau Fleuri",48.84515,2.058308,0,0,OIF:SA:21:388,Europe/Paris,,OIF, +OIF:SP:21:39,1,"Cauchoiserie Pain Perdu",48.909486,1.858577,0,0,OIF:SA:21:39,Europe/Paris,,OIF, +OIF:SP:21:390,1,"Mairie",48.843999,2.06482,0,0,OIF:SA:21:390,Europe/Paris,,OIF, +OIF:SP:21:392,1,"Pres de Renneuil",48.849097,2.055345,0,0,OIF:SA:21:392,Europe/Paris,,OIF, +OIF:SP:21:393,1,"Pres de Renneuil",48.849176,2.055073,0,0,OIF:SA:21:392,Europe/Paris,,OIF, +OIF:SP:21:394,1,"Collège la Quintinie",48.837489,2.069698,0,0,OIF:SA:21:394,Europe/Paris,,OIF, +OIF:SP:21:395,1,"Tuilerie",48.852182,2.046903,0,0,OIF:SA:21:395,Europe/Paris,,OIF, +OIF:SP:21:396,1,"Tuilerie",48.852306,2.04509,0,0,OIF:SA:21:395,Europe/Paris,,OIF, +OIF:SP:21:397,1,"Rond-Point des Chênes",48.850736,2.061866,0,0,OIF:SA:21:397,Europe/Paris,,OIF, +OIF:SP:21:398,1,"Tuilerie Bignon",48.852962,2.041303,0,0,OIF:SA:21:398,Europe/Paris,,OIF, +OIF:SP:21:399,1,"Tuilerie Bignon",48.852777,2.041805,0,0,OIF:SA:21:398,Europe/Paris,,OIF, +OIF:SP:21:4,1,"Centre Commercial",49.011515,1.916817,0,0,OIF:SA:21:4,Europe/Paris,,OIF, +OIF:SP:21:40,1,"Mairie",48.913826,1.919331,0,0,OIF:SA:21:40,Europe/Paris,,OIF, +OIF:SP:21:400,1,"Chartier",48.920206,1.96997,0,0,OIF:SA:21:400,Europe/Paris,,OIF, +OIF:SP:21:401,1,"Chartier",48.920384,1.969968,0,0,OIF:SA:21:400,Europe/Paris,,OIF, +OIF:SP:21:402,1,"Art de Vivre",48.925378,1.99161,0,0,OIF:SA:21:402,Europe/Paris,,OIF, +OIF:SP:21:403,1,"Novotel D 113",48.924049,1.994946,0,0,OIF:SA:21:403,Europe/Paris,,OIF, +OIF:SP:21:404,1,"Conforama",48.926443,1.987585,0,0,OIF:SA:21:404,Europe/Paris,,OIF, +OIF:SP:21:405,1,"Cauchoiserie Pain Perdu",48.910206,1.857402,0,0,OIF:SA:21:39,Europe/Paris,,OIF, +OIF:SP:21:406,1,"Cauchoiserie Rue Pasteur",48.915758,1.873614,0,0,OIF:SA:21:406,Europe/Paris,,OIF, +OIF:SP:21:407,1,"Cauchoiserie Rue Pasteur",48.915711,1.873671,0,0,OIF:SA:21:406,Europe/Paris,,OIF, +OIF:SP:21:408,1,"Pré Rollet",48.917698,1.850783,0,0,OIF:SA:21:408,Europe/Paris,,OIF, +OIF:SP:21:409,1,"Pré Rollet",48.917389,1.850961,0,0,OIF:SA:21:408,Europe/Paris,,OIF, +OIF:SP:21:41,1,"Mairie",48.913821,1.919414,0,0,OIF:SA:21:40,Europe/Paris,,OIF, +OIF:SP:21:410,1,"Cauchoiserie Rue des Bois",48.913043,1.871127,0,0,OIF:SA:21:410,Europe/Paris,,OIF, +OIF:SP:21:411,1,"Cauchoiserie Rue des Bois",48.913006,1.870831,0,0,OIF:SA:21:410,Europe/Paris,,OIF, +OIF:SP:21:412,1,"Cauchoiserie Route d'Herbeville",48.912216,1.867431,0,0,OIF:SA:21:412,Europe/Paris,,OIF, +OIF:SP:21:413,1,"Cauchoiserie Route d'Herbeville",48.912056,1.866899,0,0,OIF:SA:21:412,Europe/Paris,,OIF, +OIF:SP:21:42,1,"Route d'Orgeval",48.913271,1.922599,0,0,OIF:SA:21:42,Europe/Paris,,OIF, +OIF:SP:21:426,1,"Lavoir",48.886729,1.86244,0,0,OIF:SA:21:426,Europe/Paris,,OIF, +OIF:SP:21:427,1,"Lavoir",48.886602,1.862059,0,0,OIF:SA:21:426,Europe/Paris,,OIF, +OIF:SP:21:428,1,"Village",48.882047,1.86018,0,0,OIF:SA:21:428,Europe/Paris,,OIF, +OIF:SP:21:429,1,"Village",48.882073,1.86018,0,0,OIF:SA:21:428,Europe/Paris,,OIF, +OIF:SP:21:43,1,"Route d'Orgeval",48.913134,1.922323,0,0,OIF:SA:21:42,Europe/Paris,,OIF, +OIF:SP:21:430,1,"Auberge",48.935911,1.949906,0,0,OIF:SA:21:430,Europe/Paris,,OIF, +OIF:SP:21:431,1,"Auberge",48.935969,1.949888,0,0,OIF:SA:21:430,Europe/Paris,,OIF, +OIF:SP:21:432,1,"Gare de Marly le Roi",48.871329,2.096382,0,0,OIF:SA:8738246,Europe/Paris,,OIF, +OIF:SP:21:433,1,"Collège L. Lumière",48.868147,2.099235,0,0,OIF:SA:15:370,Europe/Paris,,OIF, +OIF:SP:21:434,1,"Abreuvoir",48.867274,2.100282,0,0,OIF:SA:15:83,Europe/Paris,,OIF, +OIF:SP:21:435,1,"Abreuvoir",48.867274,2.100282,0,0,OIF:SA:15:83,Europe/Paris,,OIF, +OIF:SP:21:437,1,"Saint-Vigor Axa",48.866514,2.092168,0,0,OIF:SA:21:437,Europe/Paris,,OIF, +OIF:SP:21:438,1,"Saint-Vigor Axa",48.866564,2.09211,0,0,OIF:SA:21:437,Europe/Paris,,OIF, +OIF:SP:21:439,1,"Aérospatiale",48.998721,1.92269,0,0,OIF:SA:21:439,Europe/Paris,,OIF, +OIF:SP:21:44,1,"Rue de Crespières",48.912024,1.918743,0,0,OIF:SA:21:44,Europe/Paris,,OIF, +OIF:SP:21:440,1,"Aérospatiale",48.998686,1.921365,0,0,OIF:SA:21:439,Europe/Paris,,OIF, +OIF:SP:21:441,1,"Aérospatiale",48.999066,1.9203,0,0,OIF:SA:21:439,Europe/Paris,,OIF, +OIF:SP:21:444,1,"CC Bougimonts",48.985435,1.912068,0,0,OIF:SA:21:444,Europe/Paris,,OIF, +OIF:SP:21:445,1,"Becquerel",48.980863,1.895575,0,0,OIF:SA:21:445,Europe/Paris,,OIF, +OIF:SP:21:446,1,"Becquerel",48.980178,1.894456,0,0,OIF:SA:21:445,Europe/Paris,,OIF, +OIF:SP:21:448,1,"Bizet",48.975776,1.915903,0,0,OIF:SA:21:448,Europe/Paris,,OIF, +OIF:SP:21:449,1,"Bizet",48.975731,1.915698,0,0,OIF:SA:21:448,Europe/Paris,,OIF, +OIF:SP:21:45,1,"Rue de Crespières",48.912213,1.918319,0,0,OIF:SA:21:44,Europe/Paris,,OIF, +OIF:SP:21:450,1,"Bougimonts",48.987408,1.914279,0,0,OIF:SA:21:450,Europe/Paris,,OIF, +OIF:SP:21:451,1,"Bougimonts",48.986395,1.914683,0,0,OIF:SA:21:450,Europe/Paris,,OIF, +OIF:SP:21:452,1,"Bougimonts",48.986385,1.914611,0,0,OIF:SA:21:450,Europe/Paris,,OIF, +OIF:SP:21:453,1,"Les Bosquets",48.98814,1.897146,0,0,OIF:SA:21:453,Europe/Paris,,OIF, +OIF:SP:21:454,1,"Les Bosquets",48.988303,1.897228,0,0,OIF:SA:21:453,Europe/Paris,,OIF, +OIF:SP:21:457,1,"Chappe",48.978908,1.892223,0,0,OIF:SA:21:457,Europe/Paris,,OIF, +OIF:SP:21:458,1,"Chappe",48.979416,1.892756,0,0,OIF:SA:21:457,Europe/Paris,,OIF, +OIF:SP:21:459,1,"Chopin",48.977224,1.921133,0,0,OIF:SA:21:459,Europe/Paris,,OIF, +OIF:SP:21:46,1,"Route de Maule",48.913731,1.912927,0,0,OIF:SA:21:46,Europe/Paris,,OIF, +OIF:SP:21:460,1,"Chopin",48.977304,1.921064,0,0,OIF:SA:21:459,Europe/Paris,,OIF, +OIF:SP:21:461,1,"Cité Aubert",48.99121,1.909483,0,0,OIF:SA:21:461,Europe/Paris,,OIF, +OIF:SP:21:462,1,"Cité Aubert",48.990781,1.909335,0,0,OIF:SA:21:461,Europe/Paris,,OIF, +OIF:SP:21:463,1,"Clemenceau",48.993303,1.903121,0,0,OIF:SA:21:463,Europe/Paris,,OIF, +OIF:SP:21:464,1,"Clemenceau",48.993325,1.902818,0,0,OIF:SA:21:463,Europe/Paris,,OIF, +OIF:SP:21:465,1,"Médiathèque",48.989237,1.913076,0,0,OIF:SA:21:465,Europe/Paris,,OIF, +OIF:SP:21:468,1,"Coquetiers",48.992175,1.921372,0,0,OIF:SA:21:468,Europe/Paris,,OIF, +OIF:SP:21:47,1,"Route de Maule",48.913819,1.915239,0,0,OIF:SA:21:46,Europe/Paris,,OIF, +OIF:SP:21:470,1,"Comtesse RD43",48.974011,1.91698,0,0,OIF:SA:21:470,Europe/Paris,,OIF, +OIF:SP:21:471,1,"CC Espace",48.979943,1.91277,0,0,OIF:SA:21:471,Europe/Paris,,OIF, +OIF:SP:21:475,1,"Croix Verte",48.98974,1.923798,0,0,OIF:SA:21:475,Europe/Paris,,OIF, +OIF:SP:21:476,1,"Croix Verte",48.98978,1.923823,0,0,OIF:SA:21:475,Europe/Paris,,OIF, +OIF:SP:21:477,1,"Denis Papin",48.977685,1.88966,0,0,OIF:SA:21:477,Europe/Paris,,OIF, +OIF:SP:21:478,1,"Denis Papin",48.977811,1.889441,0,0,OIF:SA:21:477,Europe/Paris,,OIF, +OIF:SP:21:479,1,"Descartes",48.982008,1.892925,0,0,OIF:SA:21:479,Europe/Paris,,OIF, +OIF:SP:21:480,1,"Descartes",48.982078,1.892796,0,0,OIF:SA:21:479,Europe/Paris,,OIF, +OIF:SP:21:481,1,"Jean Jaurès",48.99117,1.909501,0,0,OIF:SA:21:481,Europe/Paris,,OIF, +OIF:SP:21:482,1,"Jean Jaurès",48.99117,1.909501,0,0,OIF:SA:21:481,Europe/Paris,,OIF, +OIF:SP:21:483,1,"Émile Zola",48.980645,1.911478,0,0,OIF:SA:21:483,Europe/Paris,,OIF, +OIF:SP:21:487,1,"Avenue Foch Perclairs",48.990595,1.900368,0,0,OIF:SA:21:487,Europe/Paris,,OIF, +OIF:SP:21:488,1,"Gros Murs",48.994711,1.906383,0,0,OIF:SA:21:488,Europe/Paris,,OIF, +OIF:SP:21:490,1,"Lycée F Villon",48.971998,1.922377,0,0,OIF:SA:21:490,Europe/Paris,,OIF, +OIF:SP:21:491,1,"Gambetta",48.991048,1.914673,0,0,OIF:SA:21:491,Europe/Paris,,OIF, +OIF:SP:21:492,1,"Gambetta",48.990963,1.91502,0,0,OIF:SA:21:491,Europe/Paris,,OIF, +OIF:SP:21:493,1,"Gare des Mureaux",48.99307,1.913001,0,0,OIF:SA:8738668,Europe/Paris,,OIF, +OIF:SP:21:494,1,"Gare des Mureaux",48.99328,1.913085,0,0,OIF:SA:8738668,Europe/Paris,,OIF, +OIF:SP:21:495,1,"Gare des Mureaux",48.993373,1.913138,0,0,OIF:SA:8738668,Europe/Paris,,OIF, +OIF:SP:21:496,1,"Gare des Mureaux",48.993085,1.913021,0,0,OIF:SA:8738668,Europe/Paris,,OIF, +OIF:SP:21:497,1,"Gare des Mureaux",48.99289,1.912951,0,0,OIF:SA:8738668,Europe/Paris,,OIF, +OIF:SP:21:498,1,"Gare des Mureaux",48.993263,1.913185,0,0,OIF:SA:8738668,Europe/Paris,,OIF, +OIF:SP:21:499,1,"Gare des Mureaux",48.99324,1.912765,0,0,OIF:SA:8738668,Europe/Paris,,OIF, +OIF:SP:21:5,1,"Centre Commercial",49.01156,1.916893,0,0,OIF:SA:21:4,Europe/Paris,,OIF, +OIF:SP:21:500,1,"Gare des Mureaux",48.992924,1.913701,0,0,OIF:SA:8738668,Europe/Paris,,OIF, +OIF:SP:21:501,1,"Gare des Mureaux",48.993258,1.91267,0,0,OIF:SA:8738668,Europe/Paris,,OIF, +OIF:SP:21:503,1,"Gare des Mureaux",48.992838,1.913095,0,0,OIF:SA:8738668,Europe/Paris,,OIF, +OIF:SP:21:507,1,"Avenue Foch Rodin",48.992186,1.902836,0,0,OIF:SA:21:507,Europe/Paris,,OIF, +OIF:SP:21:508,1,"Centre Hospitalier",48.987104,1.93292,0,0,OIF:SA:21:508,Europe/Paris,,OIF, +OIF:SP:21:509,1,"Place Henri Sellier",48.986915,1.924745,0,0,OIF:SA:21:509,Europe/Paris,,OIF, +OIF:SP:21:510,1,"Place Henri Sellier",48.986835,1.924688,0,0,OIF:SA:21:509,Europe/Paris,,OIF, +OIF:SP:21:511,1,"Hauts du Grand Ouest",48.980111,1.90778,0,0,OIF:SA:21:511,Europe/Paris,,OIF, +OIF:SP:21:512,1,"Paul Éluard",48.978965,1.907925,0,0,OIF:SA:21:512,Europe/Paris,,OIF, +OIF:SP:21:514,1,"Jean Mermoz",48.989215,1.894085,0,0,OIF:SA:21:514,Europe/Paris,,OIF, +OIF:SP:21:515,1,"Jean Mermoz",48.989373,1.894571,0,0,OIF:SA:21:514,Europe/Paris,,OIF, +OIF:SP:21:52,1,"D 191",48.929765,1.846724,0,0,OIF:SA:21:52,Europe/Paris,,OIF, +OIF:SP:21:522,1,"Léon Fourcil",48.974731,1.912541,0,0,OIF:SA:21:522,Europe/Paris,,OIF, +OIF:SP:21:523,1,"Levassor",48.979858,1.889116,0,0,OIF:SA:21:523,Europe/Paris,,OIF, +OIF:SP:21:524,1,"Levassor",48.980111,1.889376,0,0,OIF:SA:21:523,Europe/Paris,,OIF, +OIF:SP:21:525,1,"Maryse Bastié",48.97914,1.918028,0,0,OIF:SA:21:525,Europe/Paris,,OIF, +OIF:SP:21:526,1,"Maryse Bastié",48.980015,1.916498,0,0,OIF:SA:21:525,Europe/Paris,,OIF, +OIF:SP:21:53,1,"D 191",48.929003,1.847326,0,0,OIF:SA:21:52,Europe/Paris,,OIF, +OIF:SP:21:530,1,"Molière",48.98243,1.916028,0,0,OIF:SA:21:530,Europe/Paris,,OIF, +OIF:SP:21:531,1,"Molière",48.982213,1.916066,0,0,OIF:SA:21:530,Europe/Paris,,OIF, +OIF:SP:21:533,1,"Nouveau Cimetière",48.992656,1.896098,0,0,OIF:SA:21:533,Europe/Paris,,OIF, +OIF:SP:21:537,1,"Paul Curien",48.992921,1.89827,0,0,OIF:SA:21:537,Europe/Paris,,OIF, +OIF:SP:21:538,1,"Paul Curien",48.993076,1.898881,0,0,OIF:SA:21:537,Europe/Paris,,OIF, +OIF:SP:21:54,1,"Andelu",48.880298,1.82801,0,0,OIF:SA:21:54,Europe/Paris,,OIF, +OIF:SP:21:541,1,"Pablo Picasso",48.990261,1.897646,0,0,OIF:SA:21:541,Europe/Paris,,OIF, +OIF:SP:21:542,1,"Pablo Picasso",48.990088,1.897818,0,0,OIF:SA:21:541,Europe/Paris,,OIF, +OIF:SP:21:543,1,"Porche République",48.986489,1.921114,0,0,OIF:SA:21:543,Europe/Paris,,OIF, +OIF:SP:21:544,1,"Porche République",48.986444,1.921155,0,0,OIF:SA:21:543,Europe/Paris,,OIF, +OIF:SP:21:545,1,"Pointe à Moser",48.994965,1.931883,0,0,OIF:SA:21:545,Europe/Paris,,OIF, +OIF:SP:21:546,1,"Pointe à Moser",48.995041,1.932037,0,0,OIF:SA:21:545,Europe/Paris,,OIF, +OIF:SP:21:55,1,"Andelu",48.880339,1.828097,0,0,OIF:SA:21:54,Europe/Paris,,OIF, +OIF:SP:21:550,1,"Rouillard",48.999035,1.917078,0,0,OIF:SA:21:1026,Europe/Paris,,OIF, +OIF:SP:21:551,1,"Route de Verneuil",48.995758,1.931153,0,0,OIF:SA:21:551,Europe/Paris,,OIF, +OIF:SP:21:552,1,"Route de Verneuil",48.996006,1.930588,0,0,OIF:SA:21:551,Europe/Paris,,OIF, +OIF:SP:21:554,1,"Sablons",48.976861,1.914651,0,0,OIF:SA:8798751,Europe/Paris,,OIF, +OIF:SP:21:555,1,"Sablons",48.977146,1.914978,0,0,OIF:SA:8798751,Europe/Paris,,OIF, +OIF:SP:21:556,1,"Stendhal",48.980623,1.908156,0,0,OIF:SA:21:556,Europe/Paris,,OIF, +OIF:SP:21:559,1,"Tuilerie",48.985841,1.902486,0,0,OIF:SA:21:559,Europe/Paris,,OIF, +OIF:SP:21:56,1,"Rue du 8 Mai",48.9593,1.851148,0,0,OIF:SA:21:56,Europe/Paris,,OIF, +OIF:SP:21:560,1,"Tuilerie",48.985733,1.902341,0,0,OIF:SA:21:559,Europe/Paris,,OIF, +OIF:SP:21:561,1,"Lycée Vaucanson",48.981188,1.923958,0,0,OIF:SA:21:561,Europe/Paris,,OIF, +OIF:SP:21:562,1,"Lycée Vaucanson",48.981448,1.92375,0,0,OIF:SA:21:561,Europe/Paris,,OIF, +OIF:SP:21:564,1,"Alfred Lasson",49.002733,1.877831,0,0,OIF:SA:21:564,Europe/Paris,,OIF, +OIF:SP:21:565,1,"Alfred Lasson",49.002763,1.877863,0,0,OIF:SA:21:564,Europe/Paris,,OIF, +OIF:SP:21:566,1,"École",49.001333,1.885483,0,0,OIF:SA:21:566,Europe/Paris,,OIF, +OIF:SP:21:567,1,"École",49.001931,1.8807,0,0,OIF:SA:21:566,Europe/Paris,,OIF, +OIF:SP:21:568,1,"Parking Erambert",49.001101,1.877623,0,0,OIF:SA:21:568,Europe/Paris,,OIF, +OIF:SP:21:569,1,"Parking Erambert",49.001101,1.877623,0,0,OIF:SA:21:568,Europe/Paris,,OIF, +OIF:SP:21:57,1,"Rue du 8 Mai",48.9593,1.851148,0,0,OIF:SA:21:56,Europe/Paris,,OIF, +OIF:SP:21:570,1,"Hautes Groux",49.004793,1.876675,0,0,OIF:SA:21:570,Europe/Paris,,OIF, +OIF:SP:21:571,1,"Hautes Groux",49.004753,1.876626,0,0,OIF:SA:21:570,Europe/Paris,,OIF, +OIF:SP:21:572,1,"La Jachère",49.004708,1.88276,0,0,OIF:SA:21:572,Europe/Paris,,OIF, +OIF:SP:21:573,1,"La Jachère",49.004688,1.88277,0,0,OIF:SA:21:572,Europe/Paris,,OIF, +OIF:SP:21:574,1,"Mairie",48.999465,1.881836,0,0,OIF:SA:21:574,Europe/Paris,,OIF, +OIF:SP:21:575,1,"Mairie",48.999465,1.881836,0,0,OIF:SA:21:574,Europe/Paris,,OIF, +OIF:SP:21:576,1,"Place du Tilleul",49.00126,1.885501,0,0,OIF:SA:21:576,Europe/Paris,,OIF, +OIF:SP:21:577,1,"Place du Tilleul",49.001263,1.885496,0,0,OIF:SA:21:576,Europe/Paris,,OIF, +OIF:SP:21:578,1,"Stade",49.004588,1.886715,0,0,OIF:SA:21:578,Europe/Paris,,OIF, +OIF:SP:21:579,1,"Stade",49.004596,1.886548,0,0,OIF:SA:21:578,Europe/Paris,,OIF, +OIF:SP:21:58,1,"Acacias",48.953211,1.856511,0,0,OIF:SA:21:58,Europe/Paris,,OIF, +OIF:SP:21:580,1,"Bois de l'Aulne",48.942563,1.794117,0,0,OIF:SA:21:580,Europe/Paris,,OIF, +OIF:SP:21:581,1,"Bois de l'Aulne",48.942726,1.794232,0,0,OIF:SA:21:580,Europe/Paris,,OIF, +OIF:SP:21:582,1,"Brouillard",48.926323,1.787587,0,0,OIF:SA:21:582,Europe/Paris,,OIF, +OIF:SP:21:583,1,"Brouillard",48.92613,1.787,0,0,OIF:SA:21:582,Europe/Paris,,OIF, +OIF:SP:21:584,1,"Canada",48.92986,1.790377,0,0,OIF:SA:21:584,Europe/Paris,,OIF, +OIF:SP:21:585,1,"Canada",48.928936,1.790285,0,0,OIF:SA:21:584,Europe/Paris,,OIF, +OIF:SP:21:586,1,"Place Cdt Grimblot",48.960756,1.794987,0,0,OIF:SA:21:586,Europe/Paris,,OIF, +OIF:SP:21:587,1,"Chauffour",48.954128,1.798147,0,0,OIF:SA:21:587,Europe/Paris,,OIF, +OIF:SP:21:588,1,"Chauffour",48.954431,1.798711,0,0,OIF:SA:21:587,Europe/Paris,,OIF, +OIF:SP:21:589,1,"Chemin de l'Epine",48.95016,1.794182,0,0,OIF:SA:21:589,Europe/Paris,,OIF, +OIF:SP:21:590,1,"Chemin de l'Epine",48.94988,1.793701,0,0,OIF:SA:21:589,Europe/Paris,,OIF, +OIF:SP:21:591,1,"Fontaine",48.96092,1.789269,0,0,OIF:SA:21:591,Europe/Paris,,OIF, +OIF:SP:21:592,1,"La Villeneuve",48.947441,1.793829,0,0,OIF:SA:21:592,Europe/Paris,,OIF, +OIF:SP:21:593,1,"La Villeneuve",48.947806,1.793654,0,0,OIF:SA:21:592,Europe/Paris,,OIF, +OIF:SP:21:594,1,"Libération",48.959621,1.800714,0,0,OIF:SA:21:594,Europe/Paris,,OIF, +OIF:SP:21:595,1,"Libération",48.959748,1.800789,0,0,OIF:SA:21:594,Europe/Paris,,OIF, +OIF:SP:21:596,1,"Liserettes",48.95232,1.795581,0,0,OIF:SA:21:596,Europe/Paris,,OIF, +OIF:SP:21:597,1,"Liserettes",48.952276,1.795574,0,0,OIF:SA:21:596,Europe/Paris,,OIF, +OIF:SP:21:598,1,"Gare de Nézel",48.93844,1.841117,0,0,OIF:SA:8738173,Europe/Paris,,OIF, +OIF:SP:21:599,1,"Gare de Nézel",48.93904,1.840997,0,0,OIF:SA:8738173,Europe/Paris,,OIF, +OIF:SP:21:6,1,"La Ferme",48.851106,1.988182,0,0,OIF:SA:21:6,Europe/Paris,,OIF, +OIF:SP:21:60,1,"Cimetière",48.96385,1.851291,0,0,OIF:SA:21:60,Europe/Paris,,OIF, +OIF:SP:21:600,1,"Toys R Us",48.927213,1.9857,0,0,OIF:SA:21:600,Europe/Paris,,OIF, +OIF:SP:21:601,1,"Pasteur",48.927328,1.98013,0,0,OIF:SA:21:601,Europe/Paris,,OIF, +OIF:SP:21:602,1,"Pasteur",48.927453,1.98009,0,0,OIF:SA:21:601,Europe/Paris,,OIF, +OIF:SP:21:603,1,"Rond-Point Gendarmerie",48.924414,1.975446,0,0,OIF:SA:21:603,Europe/Paris,,OIF, +OIF:SP:21:604,1,"Rond-Point Gendarmerie",48.923823,1.97413,0,0,OIF:SA:21:603,Europe/Paris,,OIF, +OIF:SP:21:607,1,"Gare Sud de Poissy",48.933363,2.042422,0,0,OIF:SA:8738657,Europe/Paris,,OIF, +OIF:SP:21:608,1,"Champ Gaillard",48.921449,2.021908,0,0,OIF:SA:21:608,Europe/Paris,,OIF, +OIF:SP:21:609,1,"Champ Gaillard",48.921408,2.021463,0,0,OIF:SA:21:608,Europe/Paris,,OIF, +OIF:SP:21:61,1,"Cimetière",48.96385,1.851291,0,0,OIF:SA:21:60,Europe/Paris,,OIF, +OIF:SP:21:610,1,"Rhin et Danube / Lycée le Corbusier",48.922211,2.027765,0,0,OIF:SA:21:610,Europe/Paris,,OIF, +OIF:SP:21:613,1,"École Notre-Dame",48.926314,2.037667,0,0,OIF:SA:21:613,Europe/Paris,,OIF, +OIF:SP:21:614,1,"École Notre-Dame",48.926276,2.037689,0,0,OIF:SA:21:613,Europe/Paris,,OIF, +OIF:SP:21:615,1,"Gare de Canrobert",49.046576,2.093281,0,0,OIF:SA:21:615,Europe/Paris,,OIF, +OIF:SP:21:616,1,"Lycée Pissarro",49.05716,2.091373,0,0,OIF:SA:21:616,Europe/Paris,,OIF, +OIF:SP:21:617,1,"Poste",49.051743,2.098721,0,0,OIF:SA:21:617,Europe/Paris,,OIF, +OIF:SP:21:618,1,"Peugeot",48.938531,2.050952,0,0,OIF:SA:21:618,Europe/Paris,,OIF, +OIF:SP:21:62,1,"Clinique",48.957296,1.848278,0,0,OIF:SA:21:62,Europe/Paris,,OIF, +OIF:SP:21:622,1,"Lavoir",48.834357,2.044216,0,0,OIF:SA:21:622,Europe/Paris,,OIF, +OIF:SP:21:623,1,"INRIA",48.837052,2.104808,0,0,OIF:SA:21:623,Europe/Paris,,OIF, +OIF:SP:21:624,1,"INRIA",48.8367,2.102737,0,0,OIF:SA:21:623,Europe/Paris,,OIF, +OIF:SP:21:625,1,"Les 3 Fontaines",48.836594,2.111483,0,0,OIF:SA:21:1001,Europe/Paris,,OIF, +OIF:SP:21:626,1,"Les 3 Fontaines",48.836409,2.111798,0,0,OIF:SA:21:1001,Europe/Paris,,OIF, +OIF:SP:21:627,1,"Place du Rueil",49.047575,1.876858,0,0,OIF:SA:21:627,Europe/Paris,,OIF, +OIF:SP:21:628,1,"Place du Rueil",49.047783,1.877245,0,0,OIF:SA:21:627,Europe/Paris,,OIF, +OIF:SP:21:629,1,"Lavoir",49.041498,1.973007,0,0,OIF:SA:21:629,Europe/Paris,,OIF, +OIF:SP:21:630,1,"Lavoir",49.041458,1.973104,0,0,OIF:SA:21:629,Europe/Paris,,OIF, +OIF:SP:21:631,1,"Place",49.049073,1.952646,0,0,OIF:SA:21:631,Europe/Paris,,OIF, +OIF:SP:21:632,1,"Place",49.048863,1.952526,0,0,OIF:SA:21:631,Europe/Paris,,OIF, +OIF:SP:21:633,1,"Vaux Persan",49.051445,1.952437,0,0,OIF:SA:21:633,Europe/Paris,,OIF, +OIF:SP:21:634,1,"Vaux Persan",49.051235,1.952417,0,0,OIF:SA:21:633,Europe/Paris,,OIF, +OIF:SP:21:635,1,"Rue de l'Aulnaie",49.047205,1.873753,0,0,OIF:SA:21:635,Europe/Paris,,OIF, +OIF:SP:21:636,1,"Rue de l'Aulnaie",49.04727,1.8738,0,0,OIF:SA:21:635,Europe/Paris,,OIF, +OIF:SP:21:637,1,"Place de la Fontaine",49.035545,1.866835,0,0,OIF:SA:21:637,Europe/Paris,,OIF, +OIF:SP:21:638,1,"Place de la Fontaine",49.035583,1.866815,0,0,OIF:SA:21:637,Europe/Paris,,OIF, +OIF:SP:21:639,1,"Place du Rueil",49.047575,1.876858,0,0,OIF:SA:21:627,Europe/Paris,,OIF, +OIF:SP:21:640,1,"Place du Rueil",49.047783,1.877245,0,0,OIF:SA:21:627,Europe/Paris,,OIF, +OIF:SP:21:641,1,"Rue Normande",49.043217,1.873282,0,0,OIF:SA:21:641,Europe/Paris,,OIF, +OIF:SP:21:642,1,"Rue Normande",49.04332,1.87352,0,0,OIF:SA:21:641,Europe/Paris,,OIF, +OIF:SP:21:643,1,"Alexandre Bertrand",48.889262,2.098514,0,0,OIF:SA:21:643,Europe/Paris,,OIF, +OIF:SP:21:644,1,"Nicot (Notre-Dame)",48.894467,2.076263,0,0,OIF:SA:15:210,Europe/Paris,,OIF, +OIF:SP:21:645,1,"Centre Administratif",48.900143,2.084842,0,0,OIF:SA:15:184,Europe/Paris,,OIF, +OIF:SP:21:647,1,"Gallieni",48.896504,2.080465,0,0,OIF:SA:21:647,Europe/Paris,,OIF, +OIF:SP:21:649,1,"Jehan Alain",48.900681,2.088139,0,0,OIF:SA:15:113,Europe/Paris,,OIF, +OIF:SP:21:650,1,"Lycée International",48.897952,2.061967,0,0,OIF:SA:15:351,Europe/Paris,,OIF, +OIF:SP:21:651,1,"Place Lamant",48.896984,2.084912,0,0,OIF:SA:21:651,Europe/Paris,,OIF, +OIF:SP:21:652,1,"Place Royale",48.89482,2.096795,0,0,OIF:SA:15:37,Europe/Paris,,OIF, +OIF:SP:21:656,1,"Saint-Louis",48.895232,2.095479,0,0,OIF:SA:15:201,Europe/Paris,,OIF, +OIF:SP:21:657,1,"Verdi",48.895342,2.067673,0,0,OIF:SA:15:146,Europe/Paris,,OIF, +OIF:SP:21:658,1,"Lycée L. de Vinci",48.891928,2.064506,0,0,OIF:SA:15:148,Europe/Paris,,OIF, +OIF:SP:21:659,1,"Carrefour 307",48.855629,2.019898,0,0,OIF:SA:21:659,Europe/Paris,,OIF, +OIF:SP:21:66,1,"D 113",48.961606,1.854768,0,0,OIF:SA:21:66,Europe/Paris,,OIF, +OIF:SP:21:660,1,"Carrefour 307",48.856079,2.017726,0,0,OIF:SA:21:659,Europe/Paris,,OIF, +OIF:SP:21:662,1,"Hameau Saint-Martin",48.861892,2.014087,0,0,OIF:SA:21:662,Europe/Paris,,OIF, +OIF:SP:21:663,1,"Castor Cerisaie",48.866574,2.021398,0,0,OIF:SA:21:663,Europe/Paris,,OIF, +OIF:SP:21:664,1,"Clos Salibert",48.855057,2.022171,0,0,OIF:SA:21:664,Europe/Paris,,OIF, +OIF:SP:21:665,1,"Clos Salibert",48.854977,2.022323,0,0,OIF:SA:21:664,Europe/Paris,,OIF, +OIF:SP:21:666,1,"Église",48.857514,2.018813,0,0,OIF:SA:21:666,Europe/Paris,,OIF, +OIF:SP:21:667,1,"Grands Champs",48.857959,2.012255,0,0,OIF:SA:21:667,Europe/Paris,,OIF, +OIF:SP:21:668,1,"Grands Champs",48.857737,2.01285,0,0,OIF:SA:21:667,Europe/Paris,,OIF, +OIF:SP:21:669,1,"Bretèche",48.863649,2.029426,0,0,OIF:SA:21:669,Europe/Paris,,OIF, +OIF:SP:21:67,1,"D 113",48.96176,1.854829,0,0,OIF:SA:21:66,Europe/Paris,,OIF, +OIF:SP:21:670,1,"Bretèche",48.863649,2.029426,0,0,OIF:SA:21:669,Europe/Paris,,OIF, +OIF:SP:21:671,1,"Mairie",48.859942,2.020896,0,0,OIF:SA:21:671,Europe/Paris,,OIF, +OIF:SP:21:672,1,"Orée de Saint-Nom",48.858868,2.015685,0,0,OIF:SA:21:672,Europe/Paris,,OIF, +OIF:SP:21:673,1,"Valmartin",48.871189,2.009018,0,0,OIF:SA:21:673,Europe/Paris,,OIF, +OIF:SP:21:674,1,"Vermondie",48.869087,2.008655,0,0,OIF:SA:21:674,Europe/Paris,,OIF, +OIF:SP:21:679,1,"Gare de Saint-Quentin en Yvelines",48.78864,2.044767,0,0,OIF:SA:8739384,Europe/Paris,,OIF, +OIF:SP:21:68,1,"C Commercial d'Acosta",48.954371,1.860471,0,0,OIF:SA:21:68,Europe/Paris,,OIF, +OIF:SP:21:680,1,"Gare de Saint-Quentin en Yvelines",48.787766,2.043616,0,0,OIF:SA:8739384,Europe/Paris,,OIF, +OIF:SP:21:689,1,"École",49.025245,1.921302,0,0,OIF:SA:21:689,Europe/Paris,,OIF, +OIF:SP:21:690,1,"École",49.025255,1.921473,0,0,OIF:SA:21:689,Europe/Paris,,OIF, +OIF:SP:21:691,1,"Pont au Bois",49.085852,1.898402,0,0,OIF:SA:21:691,Europe/Paris,,OIF, +OIF:SP:21:692,1,"Pont au Bois",49.085888,1.898521,0,0,OIF:SA:21:691,Europe/Paris,,OIF, +OIF:SP:21:693,1,"Curatorium",49.008695,1.93109,0,0,OIF:SA:21:693,Europe/Paris,,OIF, +OIF:SP:21:694,1,"Curatorium",49.008741,1.931012,0,0,OIF:SA:21:693,Europe/Paris,,OIF, +OIF:SP:21:695,1,"Gare de Thun le Paradis",49.006858,1.917671,0,0,OIF:SA:8738182,Europe/Paris,,OIF, +OIF:SP:21:696,1,"Boulevard Thiers",49.006536,1.921028,0,0,OIF:SA:21:696,Europe/Paris,,OIF, +OIF:SP:21:697,1,"Boulevard Thiers",49.006415,1.921182,0,0,OIF:SA:21:696,Europe/Paris,,OIF, +OIF:SP:21:698,1,"Berthier",48.811572,2.126602,0,0,OIF:SA:15:275,Europe/Paris,,OIF, +OIF:SP:21:699,1,"Berthier",48.811789,2.126777,0,0,OIF:SA:15:275,Europe/Paris,,OIF, +OIF:SP:21:7,1,"Cote du Pavillon",49.009586,1.90795,0,0,OIF:SA:21:7,Europe/Paris,,OIF, +OIF:SP:21:700,1,"Gare Europe",48.804807,2.12988,0,0,OIF:SA:21:700,Europe/Paris,,OIF, +OIF:SP:21:701,1,"Place de la Loi",48.815052,2.128465,0,0,OIF:SA:15:273,Europe/Paris,,OIF, +OIF:SP:21:702,1,"Place de la Loi",48.81494,2.129187,0,0,OIF:SA:15:273,Europe/Paris,,OIF, +OIF:SP:21:703,1,"Pré Catalan",48.818444,2.119922,0,0,OIF:SA:21:703,Europe/Paris,,OIF, +OIF:SP:21:704,1,"Pré Catalan",48.818582,2.12002,0,0,OIF:SA:21:703,Europe/Paris,,OIF, +OIF:SP:21:705,1,"Gare Rive Droite",48.809824,2.134438,0,0,OIF:SA:8738286,Europe/Paris,,OIF, +OIF:SP:21:706,1,"École Gendarmerie",49.078352,1.922487,0,0,OIF:SA:21:706,Europe/Paris,,OIF, +OIF:SP:21:707,1,"École Gendarmerie",49.078588,1.922217,0,0,OIF:SA:21:706,Europe/Paris,,OIF, +OIF:SP:21:708,1,"Place d'Amboise",49.076478,1.927406,0,0,OIF:SA:21:708,Europe/Paris,,OIF, +OIF:SP:21:709,1,"Place d'Amboise",49.076478,1.927406,0,0,OIF:SA:21:708,Europe/Paris,,OIF, +OIF:SP:21:71,1,"Division Leclerc",48.9564,1.858294,0,0,OIF:SA:21:71,Europe/Paris,,OIF, +OIF:SP:21:710,1,"Villette",49.030716,1.933319,0,0,OIF:SA:21:710,Europe/Paris,,OIF, +OIF:SP:21:711,1,"Villette",49.031643,1.935439,0,0,OIF:SA:21:710,Europe/Paris,,OIF, +OIF:SP:21:716,1,"Lycée Sonia Delaunay",48.830352,1.99374,0,0,OIF:SA:21:716,Europe/Paris,,OIF, +OIF:SP:21:717,1,"La Villeneuve Saint-Martin",49.068708,1.965192,0,0,OIF:SA:21:717,Europe/Paris,,OIF, +OIF:SP:21:718,1,"La Villeneuve Saint-Martin",49.069005,1.964596,0,0,OIF:SA:21:717,Europe/Paris,,OIF, +OIF:SP:21:719,1,"Chemin Vert (Notre-Dame)",48.98376,1.973438,0,0,OIF:SA:21:719,Europe/Paris,,OIF, +OIF:SP:21:72,1,"Division Leclerc",48.95633,1.858173,0,0,OIF:SA:21:71,Europe/Paris,,OIF, +OIF:SP:21:723,1,"Lycée Violet le Duc",48.813694,1.873669,0,0,OIF:SA:21:723,Europe/Paris,,OIF, +OIF:SP:21:724,1,"Lycée Violet le Duc",48.814281,1.874044,0,0,OIF:SA:21:723,Europe/Paris,,OIF, +OIF:SP:21:725,1,"Les Champeaux",49.0091,1.953472,0,0,OIF:SA:21:725,Europe/Paris,,OIF, +OIF:SP:21:726,1,"Les Champeaux",49.009291,1.952429,0,0,OIF:SA:21:725,Europe/Paris,,OIF, +OIF:SP:21:727,1,"Cimetière",49.010691,1.958865,0,0,OIF:SA:21:727,Europe/Paris,,OIF, +OIF:SP:21:728,1,"Cimetière",49.010806,1.958907,0,0,OIF:SA:21:727,Europe/Paris,,OIF, +OIF:SP:21:729,1,"Gare de Vaux sur Seine",49.006781,1.963622,0,0,OIF:SA:8738181,Europe/Paris,,OIF, +OIF:SP:21:73,1,"G Jouillerat",48.961368,1.854128,0,0,OIF:SA:21:73,Europe/Paris,,OIF, +OIF:SP:21:730,1,"Gare de Vaux sur Seine",49.006823,1.963584,0,0,OIF:SA:8738181,Europe/Paris,,OIF, +OIF:SP:21:731,1,"Lion Vert",48.997581,1.981239,0,0,OIF:SA:21:731,Europe/Paris,,OIF, +OIF:SP:21:732,1,"Lion Vert",48.997023,1.982587,0,0,OIF:SA:21:731,Europe/Paris,,OIF, +OIF:SP:21:733,1,"Mairie",49.005191,1.965334,0,0,OIF:SA:21:733,Europe/Paris,,OIF, +OIF:SP:21:734,1,"Mairie",49.005618,1.964282,0,0,OIF:SA:21:733,Europe/Paris,,OIF, +OIF:SP:21:735,1,"Le Temple",49.003041,1.971164,0,0,OIF:SA:21:735,Europe/Paris,,OIF, +OIF:SP:21:736,1,"Le Temple",49.002035,1.97343,0,0,OIF:SA:21:735,Europe/Paris,,OIF, +OIF:SP:21:737,1,"Église",49.103043,1.835905,0,0,OIF:SA:21:737,Europe/Paris,,OIF, +OIF:SP:21:738,1,"Église",49.10321,1.83564,0,0,OIF:SA:21:737,Europe/Paris,,OIF, +OIF:SP:21:74,1,"Gare d'Aubergenville Elisabethville",48.97187,1.848789,0,0,OIF:SA:8738673,Europe/Paris,,OIF, +OIF:SP:21:742,1,"Mairie",49.024125,1.920027,0,0,OIF:SA:21:742,Europe/Paris,,OIF, +OIF:SP:21:743,1,"Mairie",49.02409,1.919932,0,0,OIF:SA:21:742,Europe/Paris,,OIF, +OIF:SP:21:744,1,"Collège",49.013443,1.903097,0,0,OIF:SA:21:744,Europe/Paris,,OIF, +OIF:SP:21:745,1,"Collège",49.013443,1.903097,0,0,OIF:SA:21:744,Europe/Paris,,OIF, +OIF:SP:21:748,1,"Presles",48.96364,1.892828,0,0,OIF:SA:21:748,Europe/Paris,,OIF, +OIF:SP:21:75,1,"Mairie",48.958575,1.855356,0,0,OIF:SA:21:75,Europe/Paris,,OIF, +OIF:SP:21:750,1,"Église",48.965903,1.895499,0,0,OIF:SA:21:750,Europe/Paris,,OIF, +OIF:SP:21:760,1,"Demarine",48.851709,2.0504,0,0,OIF:SA:21:760,Europe/Paris,,OIF, +OIF:SP:21:761,1,"Orée de Marly",48.841834,2.070321,0,0,OIF:SA:21:761,Europe/Paris,,OIF, +OIF:SP:21:764,1,"Cimetière",48.847954,2.062191,0,0,OIF:SA:21:764,Europe/Paris,,OIF, +OIF:SP:21:768,1,"Ferme de Gally",48.818219,2.080443,0,0,OIF:SA:21:768,Europe/Paris,,OIF, +OIF:SP:21:769,1,"Guy Moquet",48.813417,2.078146,0,0,OIF:SA:21:769,Europe/Paris,,OIF, +OIF:SP:21:770,1,"Aérodrome",48.805225,2.07405,0,0,OIF:SA:21:770,Europe/Paris,,OIF, +OIF:SP:21:771,1,"Docteur Vaillant",48.802809,2.072191,0,0,OIF:SA:21:771,Europe/Paris,,OIF, +OIF:SP:21:772,1,"République",48.800302,2.071165,0,0,OIF:SA:21:772,Europe/Paris,,OIF, +OIF:SP:21:773,1,"École Saint-Exupéry",48.796114,2.048078,0,0,OIF:SA:21:773,Europe/Paris,,OIF, +OIF:SP:21:777,1,"Collège",49.087373,1.923157,0,0,OIF:SA:21:777,Europe/Paris,,OIF, +OIF:SP:21:780,1,"Collège",49.087373,1.923157,0,0,OIF:SA:21:777,Europe/Paris,,OIF, +OIF:SP:21:785,1,"Avenue du 1er Dragon",49.042944,2.090721,0,0,OIF:SA:21:785,Europe/Paris,,OIF, +OIF:SP:21:786,1,"Avenue du 1er Dragon",49.042943,2.090543,0,0,OIF:SA:21:785,Europe/Paris,,OIF, +OIF:SP:21:787,1,"Poste",49.051591,2.099473,0,0,OIF:SA:21:617,Europe/Paris,,OIF, +OIF:SP:21:788,1,"Guittel Lecoq",48.864219,2.030535,0,0,OIF:SA:21:788,Europe/Paris,,OIF, +OIF:SP:21:789,1,"Guittel Lecoq",48.863864,2.029776,0,0,OIF:SA:21:788,Europe/Paris,,OIF, +OIF:SP:21:790,1,"Pré de Saint-Nom Sud",48.857679,2.021241,0,0,OIF:SA:21:1241,Europe/Paris,,OIF, +OIF:SP:21:796,1,"Léon Fourcil",48.974681,1.912441,0,0,OIF:SA:21:522,Europe/Paris,,OIF, +OIF:SP:21:797,1,"Frédéric Mistral",48.97541,1.9117,0,0,OIF:SA:21:797,Europe/Paris,,OIF, +OIF:SP:21:798,1,"Ionesco",48.97642,1.909946,0,0,OIF:SA:21:798,Europe/Paris,,OIF, +OIF:SP:21:8,1,"Gambetta",49.005585,1.914773,0,0,OIF:SA:21:8,Europe/Paris,,OIF, +OIF:SP:21:800,1,"Comtesse Route de Bouafle",48.974625,1.915396,0,0,OIF:SA:21:800,Europe/Paris,,OIF, +OIF:SP:21:804,1,"Comtesse Route de Bouafle",48.974471,1.915385,0,0,OIF:SA:21:800,Europe/Paris,,OIF, +OIF:SP:21:806,1,"Chevreloup",48.836137,2.095203,0,0,OIF:SA:21:806,Europe/Paris,,OIF, +OIF:SP:21:807,1,"Trois Quignons",48.891629,2.063055,0,0,OIF:SA:21:807,Europe/Paris,,OIF, +OIF:SP:21:816,1,"Maurice Cayen",48.896873,1.868586,0,0,OIF:SA:21:368,Europe/Paris,,OIF, +OIF:SP:21:822,1,"Vigne Blanche",48.981883,1.912503,0,0,OIF:SA:21:822,Europe/Paris,,OIF, +OIF:SP:21:836,1,"Mairie",49.137762,1.908938,0,0,OIF:SA:21:836,Europe/Paris,,OIF, +OIF:SP:21:838,1,"Place de la Mare",49.12477,1.891993,0,0,OIF:SA:21:838,Europe/Paris,,OIF, +OIF:SP:21:84,1,"Lycée Van Gogh",48.954566,1.854899,0,0,OIF:SA:21:84,Europe/Paris,,OIF, +OIF:SP:21:840,1,"Place de la Mare",49.124814,1.891986,0,0,OIF:SA:21:838,Europe/Paris,,OIF, +OIF:SP:21:842,1,"Courcelles",49.080954,2.005057,0,0,OIF:SA:21:842,Europe/Paris,,OIF, +OIF:SP:21:844,1,"Courcelles",49.081102,2.005168,0,0,OIF:SA:21:842,Europe/Paris,,OIF, +OIF:SP:21:846,1,"Route de Commency",49.113059,1.908403,0,0,OIF:SA:21:846,Europe/Paris,,OIF, +OIF:SP:21:848,1,"Route de Commency",49.113082,1.908346,0,0,OIF:SA:21:846,Europe/Paris,,OIF, +OIF:SP:21:85,1,"Grande Rue",49.082792,1.870507,0,0,OIF:SA:21:85,Europe/Paris,,OIF, +OIF:SP:21:850,1,"Closeaux",49.110602,1.963561,0,0,OIF:SA:21:850,Europe/Paris,,OIF, +OIF:SP:21:852,1,"Closeaux",49.110327,1.963609,0,0,OIF:SA:21:850,Europe/Paris,,OIF, +OIF:SP:21:854,1,"Stade",49.105065,1.965164,0,0,OIF:SA:21:854,Europe/Paris,,OIF, +OIF:SP:21:856,1,"Stade",49.105155,1.965091,0,0,OIF:SA:21:854,Europe/Paris,,OIF, +OIF:SP:21:858,1,"Mairie",49.101215,1.966973,0,0,OIF:SA:21:858,Europe/Paris,,OIF, +OIF:SP:21:86,1,"Grande Rue",49.082732,1.87054,0,0,OIF:SA:21:85,Europe/Paris,,OIF, +OIF:SP:21:860,1,"Mairie",49.101293,1.966744,0,0,OIF:SA:21:858,Europe/Paris,,OIF, +OIF:SP:21:862,1,"Transformateur",49.091262,1.981466,0,0,OIF:SA:21:862,Europe/Paris,,OIF, +OIF:SP:21:864,1,"Transformateur",49.091175,1.981426,0,0,OIF:SA:21:862,Europe/Paris,,OIF, +OIF:SP:21:866,1,"Centre Équestre",49.111395,1.932344,0,0,OIF:SA:21:866,Europe/Paris,,OIF, +OIF:SP:21:868,1,"Centre Équestre",49.111395,1.932344,0,0,OIF:SA:21:866,Europe/Paris,,OIF, +OIF:SP:21:87,1,"Mairie",49.086708,1.87348,0,0,OIF:SA:21:87,Europe/Paris,,OIF, +OIF:SP:21:870,1,"Le Trapil",49.082265,1.931309,0,0,OIF:SA:21:870,Europe/Paris,,OIF, +OIF:SP:21:872,1,"Le Trapil",49.082152,1.931187,0,0,OIF:SA:21:870,Europe/Paris,,OIF, +OIF:SP:21:874,1,"Église",49.07662,1.927111,0,0,OIF:SA:21:874,Europe/Paris,,OIF, +OIF:SP:21:876,1,"Église",49.07662,1.927111,0,0,OIF:SA:21:874,Europe/Paris,,OIF, +OIF:SP:21:88,1,"Mairie",49.08672,1.8735,0,0,OIF:SA:21:87,Europe/Paris,,OIF, +OIF:SP:21:882,1,"Fresque",48.953063,1.861249,0,0,OIF:SA:21:882,Europe/Paris,,OIF, +OIF:SP:21:885,1,"Goudval",48.869077,2.017125,0,0,OIF:SA:21:885,Europe/Paris,,OIF, +OIF:SP:21:887,1,"Chemin des Closeaux",48.906761,1.876419,0,0,OIF:SA:21:887,Europe/Paris,,OIF, +OIF:SP:21:889,1,"Chemin des Closeaux",48.906836,1.876322,0,0,OIF:SA:21:887,Europe/Paris,,OIF, +OIF:SP:21:89,1,"Rue du Château",49.08471,1.876385,0,0,OIF:SA:21:89,Europe/Paris,,OIF, +OIF:SP:21:890,1,"Place Hubeaut",49.078487,2.003226,0,0,OIF:SA:21:890,Europe/Paris,,OIF, +OIF:SP:21:892,1,"Place Hubeaut",49.078235,2.003104,0,0,OIF:SA:21:890,Europe/Paris,,OIF, +OIF:SP:21:893,1,"Les Explorateurs",49.052531,2.008192,0,0,OIF:SA:21:893,Europe/Paris,,OIF, +OIF:SP:21:894,1,"Les Explorateurs",49.052706,2.009256,0,0,OIF:SA:21:893,Europe/Paris,,OIF, +OIF:SP:21:9,1,"Gambetta",49.00544,1.914585,0,0,OIF:SA:21:8,Europe/Paris,,OIF, +OIF:SP:21:90,1,"Rue du Château",49.084733,1.876434,0,0,OIF:SA:21:89,Europe/Paris,,OIF, +OIF:SP:21:91,1,"Allée du Tillet",48.839864,2.083392,0,0,OIF:SA:21:91,Europe/Paris,,OIF, +OIF:SP:21:92,1,"Allée du Tillet",48.839822,2.083488,0,0,OIF:SA:21:91,Europe/Paris,,OIF, +OIF:SP:21:93,1,"Grille de Maintenon",48.837935,2.085928,0,0,OIF:SA:21:93,Europe/Paris,,OIF, +OIF:SP:21:94,1,"Grille de Maintenon",48.839045,2.086145,0,0,OIF:SA:21:93,Europe/Paris,,OIF, +OIF:SP:21:95,1,"Grille de Maintenon",48.839045,2.086145,0,0,OIF:SA:21:93,Europe/Paris,,OIF, +OIF:SP:21:96,1,"Mairie",48.840472,2.078483,0,0,OIF:SA:21:96,Europe/Paris,,OIF, +OIF:SP:21:964,1,"Cherbourg",49.009516,1.944985,0,0,OIF:SA:21:964,Europe/Paris,,OIF, +OIF:SP:21:966,1,"Cherbourg",49.009546,1.945943,0,0,OIF:SA:21:964,Europe/Paris,,OIF, +OIF:SP:21:968,1,"Pléiades",48.97564,1.911993,0,0,OIF:SA:21:968,Europe/Paris,,OIF, +OIF:SP:21:969,1,"Émile Zola",48.98043,1.911458,0,0,OIF:SA:21:483,Europe/Paris,,OIF, +OIF:SP:21:97,1,"Mairie",48.840637,2.07884,0,0,OIF:SA:21:96,Europe/Paris,,OIF, +OIF:SP:21:970,1,"Médiathèque",48.98915,1.913258,0,0,OIF:SA:21:465,Europe/Paris,,OIF, +OIF:SP:21:971,1,"CC Bougimonts",48.986631,1.912118,0,0,OIF:SA:21:444,Europe/Paris,,OIF, +OIF:SP:21:972,1,"Vigne Blanche",48.981646,1.912143,0,0,OIF:SA:21:822,Europe/Paris,,OIF, +OIF:SP:21:973,1,"La Chêneraie",48.987048,1.927742,0,0,OIF:SA:21:973,Europe/Paris,,OIF, +OIF:SP:21:974,1,"La Chêneraie",48.98701,1.92732,0,0,OIF:SA:21:973,Europe/Paris,,OIF, +OIF:SP:21:976,1,"Foch",48.9859,1.894293,0,0,OIF:SA:21:976,Europe/Paris,,OIF, +OIF:SP:21:977,1,"Foch",48.985396,1.893861,0,0,OIF:SA:21:976,Europe/Paris,,OIF, +OIF:SP:21:978,1,"Nouveau Cimetière",48.992663,1.896145,0,0,OIF:SA:21:533,Europe/Paris,,OIF, +OIF:SP:21:981,1,"Pieu",48.987739,1.903666,0,0,OIF:SA:21:981,Europe/Paris,,OIF, +OIF:SP:21:982,1,"Pieu",48.987718,1.903503,0,0,OIF:SA:21:981,Europe/Paris,,OIF, +OIF:SP:21:987,1,"CC Espace",48.97951,1.913336,0,0,OIF:SA:21:471,Europe/Paris,,OIF, +OIF:SP:21:988,1,"Maison des Associations",49.010691,1.914723,0,0,OIF:SA:21:988,Europe/Paris,,OIF, +OIF:SP:21:99,1,"La Maladrerie",48.873796,1.880693,0,0,OIF:SA:21:99,Europe/Paris,,OIF, +OIF:SP:21:990,1,"Pasteur D 113",48.927733,1.983375,0,0,OIF:SA:21:601,Europe/Paris,,OIF, +OIF:SP:21:992,1,"Mairie",49.07745,1.926921,0,0,OIF:SA:21:992,Europe/Paris,,OIF, +OIF:SP:21:996,1,"Albert Thomas",48.983855,1.922158,0,0,OIF:SA:21:996,Europe/Paris,,OIF, +OIF:SP:21:997,1,"Albert Thomas",48.983801,1.921859,0,0,OIF:SA:21:996,Europe/Paris,,OIF, +OIF:SP:21:998,1,"Victor Hugo",49.074789,2.02813,0,0,OIF:SA:21:998,Europe/Paris,,OIF, +OIF:SP:21:999,1,"Victor Hugo",49.07486,2.027965,0,0,OIF:SA:21:998,Europe/Paris,,OIF, +OIF:SP:22:1,1,"Gare de Mantes la Jolie - Gare Routière",48.987722,1.704726,0,0,OIF:SA:8738150,Europe/Paris,,OIF, +OIF:SP:22:100,1,"Bois de Maurepas",48.770223,1.941895,0,0,OIF:SA:22:100,Europe/Paris,,OIF, +OIF:SP:22:101,1,"Bois de Maurepas",48.769971,1.94187,0,0,OIF:SA:22:100,Europe/Paris,,OIF, +OIF:SP:22:102,1,"Le Bois Joli",48.774836,1.93982,0,0,OIF:SA:22:102,Europe/Paris,,OIF, +OIF:SP:22:103,1,"Le Bois Joli",48.774844,1.939535,0,0,OIF:SA:22:102,Europe/Paris,,OIF, +OIF:SP:22:104,1,"André Malraux",48.777855,1.944761,0,0,OIF:SA:22:104,Europe/Paris,,OIF, +OIF:SP:22:10490,1,"Rue de la Vesgre",48.788749,1.610353,0,0,OIF:SA:22:10490,Europe/Paris,,OIF, +OIF:SP:22:10491,1,"Ferme Benoist",48.791969,1.618266,0,0,OIF:SA:22:10491,Europe/Paris,,OIF, +OIF:SP:22:10492,1,"Pas du Lac",48.791726,2.042396,0,0,OIF:SA:22:10492,Europe/Paris,,OIF, +OIF:SP:22:10493,1,"Fort de Saint-Cyr",48.792888,2.036132,0,0,OIF:SA:22:10493,Europe/Paris,,OIF, +OIF:SP:22:10494,1,"Rue de la Gare",48.796889,1.795224,0,0,OIF:SA:22:10494,Europe/Paris,,OIF, +OIF:SP:22:10495,1,"Rue de la Gare",48.797215,1.795737,0,0,OIF:SA:22:10494,Europe/Paris,,OIF, +OIF:SP:22:10496,1,"Gare de Montfort l'Amaury Méré",48.802442,1.815072,0,0,OIF:SA:8739389,Europe/Paris,,OIF, +OIF:SP:22:10497,1,"Gare de Garancières la Queue",48.810877,1.765058,0,0,OIF:SA:8739343,Europe/Paris,,OIF, +OIF:SP:22:105,1,"André Malraux",48.778216,1.945371,0,0,OIF:SA:22:104,Europe/Paris,,OIF, +OIF:SP:22:10500,1,"Mocsouris",48.78981,1.63443,0,0,OIF:SA:22:10500,Europe/Paris,,OIF, +OIF:SP:22:10501,1,"Mocsouris",48.789549,1.634379,0,0,OIF:SA:22:10500,Europe/Paris,,OIF, +OIF:SP:22:10502,1,"Chantereine",48.778982,1.812972,0,0,OIF:SA:22:10502,Europe/Paris,,OIF, +OIF:SP:22:10503,1,"Chantereine",48.778844,1.812984,0,0,OIF:SA:22:10502,Europe/Paris,,OIF, +OIF:SP:22:106,1,"France Miniature",48.777916,1.95817,0,0,OIF:SA:22:106,Europe/Paris,,OIF, +OIF:SP:22:107,1,"France Miniature",48.778231,1.958127,0,0,OIF:SA:22:106,Europe/Paris,,OIF, +OIF:SP:22:108,1,"Les Templiers",48.772582,1.974214,0,0,OIF:SA:22:108,Europe/Paris,,OIF, +OIF:SP:22:109,1,"Les Templiers",48.772754,1.974716,0,0,OIF:SA:22:108,Europe/Paris,,OIF, +OIF:SP:22:11,1,"Libération",48.959605,1.800685,0,0,OIF:SA:22:11,Europe/Paris,,OIF, +OIF:SP:22:110,1,"La Passerelle",48.770617,1.969319,0,0,OIF:SA:8741457,Europe/Paris,,OIF, +OIF:SP:22:111,1,"La Passerelle",48.770854,1.970405,0,0,OIF:SA:8741457,Europe/Paris,,OIF, +OIF:SP:22:112,1,"Nouvelle Amsterdam",48.766055,1.956367,0,0,OIF:SA:22:112,Europe/Paris,,OIF, +OIF:SP:22:113,1,"Nouvelle Amsterdam",48.765947,1.956313,0,0,OIF:SA:22:112,Europe/Paris,,OIF, +OIF:SP:22:114,1,"Lycée des 7 Mares",48.764513,1.943693,0,0,OIF:SA:22:114,Europe/Paris,,OIF, +OIF:SP:22:115,1,"Lycée des 7 Mares",48.764719,1.943569,0,0,OIF:SA:22:114,Europe/Paris,,OIF, +OIF:SP:22:116,1,"Centre Commercial",48.760673,1.945911,0,0,OIF:SA:22:116,Europe/Paris,,OIF, +OIF:SP:22:117,1,"Centre Commercial",48.760764,1.946196,0,0,OIF:SA:22:116,Europe/Paris,,OIF, +OIF:SP:22:118,1,"Gare de la Verrière",48.755602,1.942646,0,0,OIF:SA:8739325,Europe/Paris,,OIF, +OIF:SP:22:119,1,"Avenue de Maurepas",48.750528,1.922934,0,0,OIF:SA:22:119,Europe/Paris,,OIF, +OIF:SP:22:12,1,"Libération",48.959705,1.800821,0,0,OIF:SA:22:11,Europe/Paris,,OIF, +OIF:SP:22:120,1,"Avenue de Maurepas",48.750312,1.922841,0,0,OIF:SA:22:119,Europe/Paris,,OIF, +OIF:SP:22:121,1,"Les Cognassiers",48.748789,1.921521,0,0,OIF:SA:22:121,Europe/Paris,,OIF, +OIF:SP:22:122,1,"Les Cognassiers",48.748708,1.92163,0,0,OIF:SA:22:121,Europe/Paris,,OIF, +OIF:SP:22:123,1,"La Prévenderie",48.747543,1.920131,0,0,OIF:SA:22:123,Europe/Paris,,OIF, +OIF:SP:22:124,1,"La Prévenderie",48.747526,1.920226,0,0,OIF:SA:22:123,Europe/Paris,,OIF, +OIF:SP:22:125,1,"Pierre Percée",48.815398,1.863296,0,0,OIF:SA:22:125,Europe/Paris,,OIF, +OIF:SP:22:126,1,"Cressay",48.827554,1.86893,0,0,OIF:SA:22:126,Europe/Paris,,OIF, +OIF:SP:22:127,1,"Moque-Panier",48.838809,1.878713,0,0,OIF:SA:21:105,Europe/Paris,,OIF, +OIF:SP:22:128,1,"Moque-Panier",48.83781,1.878382,0,0,OIF:SA:21:105,Europe/Paris,,OIF, +OIF:SP:22:129,1,"Village",48.883453,1.856583,0,0,OIF:SA:21:428,Europe/Paris,,OIF, +OIF:SP:22:130,1,"Maurice Cayen",48.895023,1.868825,0,0,OIF:SA:21:368,Europe/Paris,,OIF, +OIF:SP:22:131,1,"Maurice Cayen",48.895086,1.868811,0,0,OIF:SA:21:368,Europe/Paris,,OIF, +OIF:SP:22:132,1,"Gare de Maule",48.908968,1.856619,0,0,OIF:SA:8738172,Europe/Paris,,OIF, +OIF:SP:22:133,1,"Gare de Maule",48.908959,1.856578,0,0,OIF:SA:8738172,Europe/Paris,,OIF, +OIF:SP:22:134,1,"Paul Barré",48.912738,1.853257,0,0,OIF:SA:21:37,Europe/Paris,,OIF, +OIF:SP:22:135,1,"Paul Barré",48.912513,1.853205,0,0,OIF:SA:21:37,Europe/Paris,,OIF, +OIF:SP:22:136,1,"Abri Bus N 191",48.929841,1.846782,0,0,OIF:SA:22:136,Europe/Paris,,OIF, +OIF:SP:22:137,1,"Abri Bus N 191",48.9295,1.846826,0,0,OIF:SA:22:136,Europe/Paris,,OIF, +OIF:SP:22:138,1,"Gare de Nézel",48.938697,1.84116,0,0,OIF:SA:8738173,Europe/Paris,,OIF, +OIF:SP:22:139,1,"Gare de Nézel",48.93866,1.84101,0,0,OIF:SA:8738173,Europe/Paris,,OIF, +OIF:SP:22:140,1,"Allée des Sycomores",48.776339,1.81275,0,0,OIF:SA:22:140,Europe/Paris,,OIF, +OIF:SP:22:141,1,"Collège Maurice Ravel",48.774842,1.815526,0,0,OIF:SA:22:141,Europe/Paris,,OIF, +OIF:SP:22:143,1,"Notre-Dame du Bel Air",48.777644,1.798852,0,0,OIF:SA:22:143,Europe/Paris,,OIF, +OIF:SP:22:144,1,"Guinandes",48.782892,1.821035,0,0,OIF:SA:22:144,Europe/Paris,,OIF, +OIF:SP:22:145,1,"Guinandes",48.782918,1.820899,0,0,OIF:SA:22:144,Europe/Paris,,OIF, +OIF:SP:22:146,1,"Poirier d'Encre",48.784793,1.824253,0,0,OIF:SA:22:146,Europe/Paris,,OIF, +OIF:SP:22:147,1,"Poirier d'Encre",48.784649,1.8242,0,0,OIF:SA:22:146,Europe/Paris,,OIF, +OIF:SP:22:148,1,"Mairie",48.787822,1.819912,0,0,OIF:SA:22:148,Europe/Paris,,OIF, +OIF:SP:22:149,1,"Mairie",48.787488,1.81967,0,0,OIF:SA:22:148,Europe/Paris,,OIF, +OIF:SP:22:150,1,"Parc Boulogne",48.789223,1.813532,0,0,OIF:SA:22:150,Europe/Paris,,OIF, +OIF:SP:22:151,1,"Parc Boulogne",48.789196,1.813477,0,0,OIF:SA:22:150,Europe/Paris,,OIF, +OIF:SP:22:152,1,"Marronniers",48.795548,1.79683,0,0,OIF:SA:22:152,Europe/Paris,,OIF, +OIF:SP:22:153,1,"Marronniers",48.795368,1.796763,0,0,OIF:SA:22:152,Europe/Paris,,OIF, +OIF:SP:22:154,1,"Hortensia",48.79782,1.79048,0,0,OIF:SA:22:154,Europe/Paris,,OIF, +OIF:SP:22:155,1,"Hortensia",48.797579,1.790822,0,0,OIF:SA:22:154,Europe/Paris,,OIF, +OIF:SP:22:156,1,"Lycée Jean Monnet",48.803139,1.782233,0,0,OIF:SA:22:156,Europe/Paris,,OIF, +OIF:SP:22:157,1,"Gare de Montfort l'Amaury Méré",48.802442,1.815072,0,0,OIF:SA:8739389,Europe/Paris,,OIF, +OIF:SP:22:158,1,"La Bardelle",48.815981,1.817821,0,0,OIF:SA:22:158,Europe/Paris,,OIF, +OIF:SP:22:159,1,"La Bardelle",48.816107,1.817942,0,0,OIF:SA:22:158,Europe/Paris,,OIF, +OIF:SP:22:160,1,"Croix Ferron",48.813142,1.836861,0,0,OIF:SA:22:160,Europe/Paris,,OIF, +OIF:SP:22:161,1,"Croix Ferron",48.813095,1.836521,0,0,OIF:SA:22:160,Europe/Paris,,OIF, +OIF:SP:22:162,1,"Rond-Point",48.839444,1.82306,0,0,OIF:SA:22:162,Europe/Paris,,OIF, +OIF:SP:22:163,1,"Centre-Village",48.84105,1.818278,0,0,OIF:SA:22:163,Europe/Paris,,OIF, +OIF:SP:22:164,1,"Centre-Village",48.841013,1.818088,0,0,OIF:SA:22:163,Europe/Paris,,OIF, +OIF:SP:22:165,1,"Rue des Vignes",48.843068,1.815276,0,0,OIF:SA:22:165,Europe/Paris,,OIF, +OIF:SP:22:166,1,"Rue des Vignes",48.843195,1.815411,0,0,OIF:SA:22:165,Europe/Paris,,OIF, +OIF:SP:22:167,1,"Lavoir",48.847845,1.804129,0,0,OIF:SA:22:167,Europe/Paris,,OIF, +OIF:SP:22:168,1,"Lavoir",48.847953,1.804019,0,0,OIF:SA:22:167,Europe/Paris,,OIF, +OIF:SP:22:169,1,"Haut Village",48.852387,1.802788,0,0,OIF:SA:22:169,Europe/Paris,,OIF, +OIF:SP:22:170,1,"Haut Village",48.852351,1.80268,0,0,OIF:SA:22:169,Europe/Paris,,OIF, +OIF:SP:22:171,1,"Ferranville",48.862861,1.746421,0,0,OIF:SA:22:171,Europe/Paris,,OIF, +OIF:SP:22:172,1,"Ferranville",48.862843,1.746435,0,0,OIF:SA:22:171,Europe/Paris,,OIF, +OIF:SP:22:173,1,"Tessé",48.858586,1.741485,0,0,OIF:SA:22:173,Europe/Paris,,OIF, +OIF:SP:22:174,1,"Tessé",48.858532,1.741649,0,0,OIF:SA:22:173,Europe/Paris,,OIF, +OIF:SP:22:175,1,"Église",48.853539,1.736939,0,0,OIF:SA:22:175,Europe/Paris,,OIF, +OIF:SP:22:176,1,"Église",48.853574,1.736816,0,0,OIF:SA:22:175,Europe/Paris,,OIF, +OIF:SP:22:177,1,"Arrêt des Cars",48.890485,1.74015,0,0,OIF:SA:22:177,Europe/Paris,,OIF, +OIF:SP:22:178,1,"Arrêt des Cars",48.890431,1.740233,0,0,OIF:SA:22:177,Europe/Paris,,OIF, +OIF:SP:22:179,1,"Mairie",48.978175,1.714345,0,0,OIF:SA:22:179,Europe/Paris,,OIF, +OIF:SP:22:180,1,"Mairie",48.978148,1.714414,0,0,OIF:SA:22:179,Europe/Paris,,OIF, +OIF:SP:22:181,1,"Saint-Étienne",48.974032,1.712566,0,0,OIF:SA:22:181,Europe/Paris,,OIF, +OIF:SP:22:182,1,"Saint-Étienne",48.974293,1.712658,0,0,OIF:SA:22:181,Europe/Paris,,OIF, +OIF:SP:22:183,1,"Moulin des Rades",48.971659,1.712595,0,0,OIF:SA:22:183,Europe/Paris,,OIF, +OIF:SP:22:184,1,"Moulin des Rades",48.971678,1.712731,0,0,OIF:SA:22:183,Europe/Paris,,OIF, +OIF:SP:22:185,1,"Brasseuil",48.949647,1.698314,0,0,OIF:SA:22:185,Europe/Paris,,OIF, +OIF:SP:22:186,1,"Brasseuil",48.94972,1.698532,0,0,OIF:SA:22:185,Europe/Paris,,OIF, +OIF:SP:22:187,1,"Auffreville",48.955616,1.707152,0,0,OIF:SA:22:187,Europe/Paris,,OIF, +OIF:SP:22:188,1,"Auffreville",48.955653,1.707343,0,0,OIF:SA:22:187,Europe/Paris,,OIF, +OIF:SP:22:189,1,"Église",48.938994,1.69112,0,0,OIF:SA:22:189,Europe/Paris,,OIF, +OIF:SP:22:190,1,"Église",48.94126,1.691365,0,0,OIF:SA:22:189,Europe/Paris,,OIF, +OIF:SP:22:193,1,"Rue Saint-Martin",48.921644,1.691814,0,0,OIF:SA:22:193,Europe/Paris,,OIF, +OIF:SP:22:194,1,"Rue Saint-Martin",48.921652,1.691691,0,0,OIF:SA:22:193,Europe/Paris,,OIF, +OIF:SP:22:195,1,"Rosay",48.914107,1.679376,0,0,OIF:SA:22:195,Europe/Paris,,OIF, +OIF:SP:22:196,1,"Rosay",48.914036,1.6795,0,0,OIF:SA:22:195,Europe/Paris,,OIF, +OIF:SP:22:197,1,"Poteau",48.899864,1.674772,0,0,OIF:SA:22:197,Europe/Paris,,OIF, +OIF:SP:22:198,1,"Poteau",48.899855,1.674868,0,0,OIF:SA:22:197,Europe/Paris,,OIF, +OIF:SP:22:199,1,"Rue de Mantes",48.897728,1.676994,0,0,OIF:SA:22:199,Europe/Paris,,OIF, +OIF:SP:22:200,1,"Rue de Mantes",48.897801,1.67713,0,0,OIF:SA:22:199,Europe/Paris,,OIF, +OIF:SP:22:201,1,"Place de Verdun",48.893398,1.68058,0,0,OIF:SA:22:201,Europe/Paris,,OIF, +OIF:SP:22:202,1,"Place de Verdun",48.893488,1.680592,0,0,OIF:SA:22:201,Europe/Paris,,OIF, +OIF:SP:22:210,1,"Square Coty",48.805659,1.765959,0,0,OIF:SA:22:210,Europe/Paris,,OIF, +OIF:SP:22:211,1,"Square Coty",48.805722,1.765999,0,0,OIF:SA:22:210,Europe/Paris,,OIF, +OIF:SP:22:212,1,"Gendarmerie",48.804738,1.763152,0,0,OIF:SA:22:212,Europe/Paris,,OIF, +OIF:SP:22:213,1,"Gendarmerie",48.804802,1.763329,0,0,OIF:SA:22:212,Europe/Paris,,OIF, +OIF:SP:22:214,1,"Butte au Moulin",48.802632,1.749719,0,0,OIF:SA:22:214,Europe/Paris,,OIF, +OIF:SP:22:215,1,"Butte au Moulin",48.802655,1.750685,0,0,OIF:SA:22:214,Europe/Paris,,OIF, +OIF:SP:22:216,1,"Place Richard",48.808767,1.745254,0,0,OIF:SA:22:216,Europe/Paris,,OIF, +OIF:SP:22:217,1,"Place Richard",48.808757,1.745146,0,0,OIF:SA:22:216,Europe/Paris,,OIF, +OIF:SP:22:220,1,"Place Saint-Louis",48.802795,1.669848,0,0,OIF:SA:22:220,Europe/Paris,,OIF, +OIF:SP:22:221,1,"Place Saint-Louis",48.802805,1.669984,0,0,OIF:SA:22:220,Europe/Paris,,OIF, +OIF:SP:22:222,1,"Tilleuls",48.8048,1.673102,0,0,OIF:SA:22:222,Europe/Paris,,OIF, +OIF:SP:22:223,1,"Tilleuls",48.804746,1.67317,0,0,OIF:SA:22:222,Europe/Paris,,OIF, +OIF:SP:22:224,1,"Châtaigniers",48.806037,1.672623,0,0,OIF:SA:22:224,Europe/Paris,,OIF, +OIF:SP:22:225,1,"Châtaigniers",48.806028,1.672569,0,0,OIF:SA:22:224,Europe/Paris,,OIF, +OIF:SP:22:226,1,"Loup Ravissant",48.807158,1.670418,0,0,OIF:SA:22:226,Europe/Paris,,OIF, +OIF:SP:22:227,1,"Loup Ravissant",48.807058,1.670338,0,0,OIF:SA:22:226,Europe/Paris,,OIF, +OIF:SP:22:228,1,"Le Gassé",48.815647,1.666403,0,0,OIF:SA:22:228,Europe/Paris,,OIF, +OIF:SP:22:229,1,"La Pommeraie",48.813577,1.659679,0,0,OIF:SA:22:229,Europe/Paris,,OIF, +OIF:SP:22:230,1,"Guignonville",48.811552,1.654412,0,0,OIF:SA:22:230,Europe/Paris,,OIF, +OIF:SP:22:231,1,"Croix de Saulx",48.816692,1.637141,0,0,OIF:SA:22:231,Europe/Paris,,OIF, +OIF:SP:22:232,1,"Croix de Saulx",48.81714,1.636917,0,0,OIF:SA:22:231,Europe/Paris,,OIF, +OIF:SP:22:233,1,"Salle des Fêtes",48.821472,1.636954,0,0,OIF:SA:22:233,Europe/Paris,,OIF, +OIF:SP:22:234,1,"Salle des Fêtes",48.821544,1.636912,0,0,OIF:SA:22:233,Europe/Paris,,OIF, +OIF:SP:22:235,1,"Place du Château",48.822826,1.636391,0,0,OIF:SA:22:235,Europe/Paris,,OIF, +OIF:SP:22:236,1,"Place du Château",48.822665,1.636502,0,0,OIF:SA:22:235,Europe/Paris,,OIF, +OIF:SP:22:237,1,"Route de Tacoignières",48.82559,1.643392,0,0,OIF:SA:22:237,Europe/Paris,,OIF, +OIF:SP:22:238,1,"Route de Tacoignières",48.825555,1.643419,0,0,OIF:SA:22:237,Europe/Paris,,OIF, +OIF:SP:22:239,1,"Rue de la Gare (Monument)",48.833082,1.669281,0,0,OIF:SA:22:239,Europe/Paris,,OIF, +OIF:SP:22:240,1,"Rue de la Gare (Monument)",48.832893,1.669229,0,0,OIF:SA:22:239,Europe/Paris,,OIF, +OIF:SP:22:241,1,"Gare de Tacoignières Richebourg",48.829708,1.668753,0,0,OIF:SA:8739345,Europe/Paris,,OIF, +OIF:SP:22:242,1,"Bas Fonceaux (Café)",48.836107,1.673463,0,0,OIF:SA:22:242,Europe/Paris,,OIF, +OIF:SP:22:243,1,"Bas Fonceaux (Café)",48.836333,1.673719,0,0,OIF:SA:22:242,Europe/Paris,,OIF, +OIF:SP:22:245,1,"Rue des Brices",48.838462,1.667129,0,0,OIF:SA:22:245,Europe/Paris,,OIF, +OIF:SP:22:246,1,"Rue des Brices",48.838505,1.666733,0,0,OIF:SA:22:245,Europe/Paris,,OIF, +OIF:SP:22:247,1,"Chemin des Bois",48.84034,1.663741,0,0,OIF:SA:22:247,Europe/Paris,,OIF, +OIF:SP:22:248,1,"Chemin des Bois",48.840374,1.663414,0,0,OIF:SA:22:247,Europe/Paris,,OIF, +OIF:SP:22:249,1,"Place de la Libération",48.861954,1.673064,0,0,OIF:SA:22:249,Europe/Paris,,OIF, +OIF:SP:22:250,1,"Place de la Libération",48.86189,1.672997,0,0,OIF:SA:22:249,Europe/Paris,,OIF, +OIF:SP:22:251,1,"Rue G.Pompidou",48.863102,1.6679,0,0,OIF:SA:22:251,Europe/Paris,,OIF, +OIF:SP:22:252,1,"Église",48.858886,1.64409,0,0,OIF:SA:22:252,Europe/Paris,,OIF, +OIF:SP:22:253,1,"Église",48.858832,1.644159,0,0,OIF:SA:22:252,Europe/Paris,,OIF, +OIF:SP:22:256,1,"Chemin de la Cure",48.861094,1.640492,0,0,OIF:SA:22:256,Europe/Paris,,OIF, +OIF:SP:22:257,1,"Grand'Cour",48.868002,1.620222,0,0,OIF:SA:22:257,Europe/Paris,,OIF, +OIF:SP:22:258,1,"Grand'Cour",48.867948,1.62025,0,0,OIF:SA:22:257,Europe/Paris,,OIF, +OIF:SP:22:259,1,"Mairie",48.86666,1.613811,0,0,OIF:SA:22:259,Europe/Paris,,OIF, +OIF:SP:22:260,1,"Mairie",48.866651,1.613824,0,0,OIF:SA:22:259,Europe/Paris,,OIF, +OIF:SP:22:261,1,"Mare",48.863698,1.607109,0,0,OIF:SA:22:261,Europe/Paris,,OIF, +OIF:SP:22:262,1,"Mare",48.863662,1.607164,0,0,OIF:SA:22:261,Europe/Paris,,OIF, +OIF:SP:22:263,1,"La Picotière",48.862271,1.600236,0,0,OIF:SA:22:263,Europe/Paris,,OIF, +OIF:SP:22:264,1,"La Picotière",48.862146,1.600333,0,0,OIF:SA:22:263,Europe/Paris,,OIF, +OIF:SP:22:265,1,"Vallée des Fosses",48.808997,1.677851,0,0,OIF:SA:22:265,Europe/Paris,,OIF, +OIF:SP:22:266,1,"Rue de la Vesgre",48.788668,1.610409,0,0,OIF:SA:22:10490,Europe/Paris,,OIF, +OIF:SP:22:270,1,"Le Boulay Place",48.782593,1.659363,0,0,OIF:SA:22:270,Europe/Paris,,OIF, +OIF:SP:22:275,1,"Le Lièvre",48.794906,1.643611,0,0,OIF:SA:22:275,Europe/Paris,,OIF, +OIF:SP:22:276,1,"Le Lièvre",48.794994,1.64327,0,0,OIF:SA:22:275,Europe/Paris,,OIF, +OIF:SP:22:277,1,"Place du Moulin",48.793221,1.618684,0,0,OIF:SA:22:277,Europe/Paris,,OIF, +OIF:SP:22:278,1,"Place du Moulin",48.792342,1.62188,0,0,OIF:SA:22:277,Europe/Paris,,OIF, +OIF:SP:22:279,1,"Ferme Benoist",48.791969,1.618266,0,0,OIF:SA:22:10491,Europe/Paris,,OIF, +OIF:SP:22:280,1,"La Folie",48.787717,1.618053,0,0,OIF:SA:22:280,Europe/Paris,,OIF, +OIF:SP:22:281,1,"Les Alouettes",48.788298,1.613162,0,0,OIF:SA:22:281,Europe/Paris,,OIF, +OIF:SP:22:282,1,"Collège François Mauriac",48.790448,1.607541,0,0,OIF:SA:22:282,Europe/Paris,,OIF, +OIF:SP:22:283,1,"Collège François Mauriac",48.790412,1.607569,0,0,OIF:SA:22:282,Europe/Paris,,OIF, +OIF:SP:22:284,1,"Remparts",48.792996,1.601002,0,0,OIF:SA:22:284,Europe/Paris,,OIF, +OIF:SP:22:285,1,"Remparts",48.792882,1.601371,0,0,OIF:SA:22:284,Europe/Paris,,OIF, +OIF:SP:22:286,1,"République",48.794442,1.602261,0,0,OIF:SA:22:286,Europe/Paris,,OIF, +OIF:SP:22:287,1,"Gare de Houdan",48.795764,1.602256,0,0,OIF:SA:8739346,Europe/Paris,,OIF, +OIF:SP:22:288,1,"Brunel",48.823937,1.605967,0,0,OIF:SA:22:288,Europe/Paris,,OIF, +OIF:SP:22:289,1,"Brunel",48.823919,1.605927,0,0,OIF:SA:22:288,Europe/Paris,,OIF, +OIF:SP:22:292,1,"Place de l'Orme",48.835483,1.609766,0,0,OIF:SA:22:292,Europe/Paris,,OIF, +OIF:SP:22:293,1,"Place de l'Orme",48.835508,1.60948,0,0,OIF:SA:22:292,Europe/Paris,,OIF, +OIF:SP:22:294,1,"Rue du Môle",48.838016,1.607974,0,0,OIF:SA:22:294,Europe/Paris,,OIF, +OIF:SP:22:295,1,"Rue du Môle",48.837979,1.607852,0,0,OIF:SA:22:294,Europe/Paris,,OIF, +OIF:SP:22:296,1,"Bonneville Château",48.848729,1.599189,0,0,OIF:SA:22:296,Europe/Paris,,OIF, +OIF:SP:22:297,1,"Bonneville Château",48.848549,1.599192,0,0,OIF:SA:22:296,Europe/Paris,,OIF, +OIF:SP:22:298,1,"Rue de Bonneville",48.859734,1.588326,0,0,OIF:SA:22:298,Europe/Paris,,OIF, +OIF:SP:22:299,1,"Rue de Bonneville",48.859763,1.588516,0,0,OIF:SA:22:298,Europe/Paris,,OIF, +OIF:SP:22:300,1,"Rond-Point",48.860685,1.583776,0,0,OIF:SA:22:300,Europe/Paris,,OIF, +OIF:SP:22:301,1,"Église",48.882007,1.575753,0,0,OIF:SA:22:301,Europe/Paris,,OIF, +OIF:SP:22:303,1,"Millerus",48.874119,1.563633,0,0,OIF:SA:22:303,Europe/Paris,,OIF, +OIF:SP:22:304,1,"Mairie",48.831396,1.608734,0,0,OIF:SA:22:304,Europe/Paris,,OIF, +OIF:SP:22:305,1,"ZAC la Prévôté",48.789654,1.586835,0,0,OIF:SA:22:305,Europe/Paris,,OIF, +OIF:SP:22:306,1,"Saint-Mathieu",48.79872,1.594962,0,0,OIF:SA:22:306,Europe/Paris,,OIF, +OIF:SP:22:307,1,"Saint-Mathieu",48.798648,1.594868,0,0,OIF:SA:22:306,Europe/Paris,,OIF, +OIF:SP:22:308,1,"Pommeraie",48.794097,1.608972,0,0,OIF:SA:22:308,Europe/Paris,,OIF, +OIF:SP:22:309,1,"Pommeraie",48.793933,1.610145,0,0,OIF:SA:22:308,Europe/Paris,,OIF, +OIF:SP:22:31,1,"Collège Saint-Simon",48.804551,1.889194,0,0,OIF:SA:22:31,Europe/Paris,,OIF, +OIF:SP:22:310,1,"Place Sully",48.815005,1.863872,0,0,OIF:SA:22:310,Europe/Paris,,OIF, +OIF:SP:22:311,1,"Place Sully",48.815106,1.864592,0,0,OIF:SA:22:310,Europe/Paris,,OIF, +OIF:SP:22:312,1,"Lycée Gare RD11",48.814409,1.874805,0,0,OIF:SA:8739388,Europe/Paris,,OIF, +OIF:SP:22:313,1,"Lycée Gare RD11",48.81417,1.875556,0,0,OIF:SA:8739388,Europe/Paris,,OIF, +OIF:SP:22:314,1,"Le Pontel",48.810124,1.87981,0,0,OIF:SA:22:314,Europe/Paris,,OIF, +OIF:SP:22:315,1,"Le Pontel",48.809818,1.879745,0,0,OIF:SA:22:314,Europe/Paris,,OIF, +OIF:SP:22:316,1,"Place Foch",48.802499,1.900627,0,0,OIF:SA:22:316,Europe/Paris,,OIF, +OIF:SP:22:317,1,"Place Foch",48.802427,1.900559,0,0,OIF:SA:22:316,Europe/Paris,,OIF, +OIF:SP:22:318,1,"Gare Routière Paul Delouvrier",48.788264,2.045068,0,0,OIF:SA:8739384,Europe/Paris,,OIF, +OIF:SP:22:319,1,"Allée des Champs",48.835207,1.704625,0,0,OIF:SA:22:319,Europe/Paris,,OIF, +OIF:SP:22:32,1,"Collège Rabelais",48.855336,1.90499,0,0,OIF:SA:22:32,Europe/Paris,,OIF, +OIF:SP:22:320,1,"Allée des Champs",48.835082,1.704695,0,0,OIF:SA:22:319,Europe/Paris,,OIF, +OIF:SP:22:321,1,"Pont de Galluis",48.802376,1.796201,0,0,OIF:SA:22:321,Europe/Paris,,OIF, +OIF:SP:22:322,1,"Pont de Galluis",48.802295,1.796174,0,0,OIF:SA:22:321,Europe/Paris,,OIF, +OIF:SP:22:323,1,"1 Route Nationale",48.805009,1.774715,0,0,OIF:SA:22:323,Europe/Paris,,OIF, +OIF:SP:22:324,1,"1 Route Nationale",48.80491,1.774798,0,0,OIF:SA:22:323,Europe/Paris,,OIF, +OIF:SP:22:325,1,"Place du Marché",48.805445,1.770111,0,0,OIF:SA:22:325,Europe/Paris,,OIF, +OIF:SP:22:326,1,"Place du Marché",48.8054,1.769949,0,0,OIF:SA:22:325,Europe/Paris,,OIF, +OIF:SP:22:327,1,"Coty Rue de la Gare",48.808543,1.767614,0,0,OIF:SA:22:327,Europe/Paris,,OIF, +OIF:SP:22:328,1,"Coty Rue de la Gare",48.808856,1.767325,0,0,OIF:SA:22:327,Europe/Paris,,OIF, +OIF:SP:22:329,1,"Gare de Garancières la Queue",48.810877,1.765058,0,0,OIF:SA:8739343,Europe/Paris,,OIF, +OIF:SP:22:33,1,"Renouveau",48.851773,1.879784,0,0,OIF:SA:22:33,Europe/Paris,,OIF, +OIF:SP:22:331,1,"Trou Chevalier",48.814803,1.760972,0,0,OIF:SA:22:331,Europe/Paris,,OIF, +OIF:SP:22:332,1,"Trou Chevalier",48.814748,1.760796,0,0,OIF:SA:22:331,Europe/Paris,,OIF, +OIF:SP:22:333,1,"Louis Siou",48.819303,1.758527,0,0,OIF:SA:22:333,Europe/Paris,,OIF, +OIF:SP:22:334,1,"Louis Siou",48.820137,1.758164,0,0,OIF:SA:22:333,Europe/Paris,,OIF, +OIF:SP:22:335,1,"Montguichet",48.821727,1.758024,0,0,OIF:SA:22:335,Europe/Paris,,OIF, +OIF:SP:22:336,1,"Rue de la Piquette",48.823909,1.757496,0,0,OIF:SA:22:336,Europe/Paris,,OIF, +OIF:SP:22:337,1,"Mairie",48.82247,1.755484,0,0,OIF:SA:22:337,Europe/Paris,,OIF, +OIF:SP:22:339,1,"Croix Rouge",48.820173,1.750773,0,0,OIF:SA:22:339,Europe/Paris,,OIF, +OIF:SP:22:34,1,"Renouveau",48.851977,1.879087,0,0,OIF:SA:22:33,Europe/Paris,,OIF, +OIF:SP:22:340,1,"Général Leclerc",48.820941,1.755378,0,0,OIF:SA:22:340,Europe/Paris,,OIF, +OIF:SP:22:341,1,"Louis Bellan",48.8221,1.760837,0,0,OIF:SA:22:341,Europe/Paris,,OIF, +OIF:SP:22:342,1,"Louis Bellan",48.822208,1.760754,0,0,OIF:SA:22:341,Europe/Paris,,OIF, +OIF:SP:22:343,1,"Le Breuil",48.824258,1.781707,0,0,OIF:SA:22:343,Europe/Paris,,OIF, +OIF:SP:22:344,1,"Le Breuil",48.824284,1.781584,0,0,OIF:SA:22:343,Europe/Paris,,OIF, +OIF:SP:22:345,1,"Église",48.820262,1.794286,0,0,OIF:SA:22:345,Europe/Paris,,OIF, +OIF:SP:22:346,1,"Église",48.820334,1.794176,0,0,OIF:SA:22:345,Europe/Paris,,OIF, +OIF:SP:22:347,1,"Mairie",48.819485,1.797247,0,0,OIF:SA:22:347,Europe/Paris,,OIF, +OIF:SP:22:348,1,"Mairie",48.819574,1.797178,0,0,OIF:SA:22:347,Europe/Paris,,OIF, +OIF:SP:22:349,1,"Route de la Gare",48.812159,1.762567,0,0,OIF:SA:22:349,Europe/Paris,,OIF, +OIF:SP:22:350,1,"Route de la Gare",48.812221,1.762321,0,0,OIF:SA:22:349,Europe/Paris,,OIF, +OIF:SP:22:351,1,"Noël Benoist",48.822198,1.751362,0,0,OIF:SA:22:351,Europe/Paris,,OIF, +OIF:SP:22:352,1,"Noël Benoist",48.822215,1.751172,0,0,OIF:SA:22:351,Europe/Paris,,OIF, +OIF:SP:22:353,1,"Mairie",48.830561,1.721863,0,0,OIF:SA:22:353,Europe/Paris,,OIF, +OIF:SP:22:354,1,"Mairie",48.830713,1.721793,0,0,OIF:SA:22:353,Europe/Paris,,OIF, +OIF:SP:22:356,1,"Mairie",48.830332,1.720994,0,0,OIF:SA:22:353,Europe/Paris,,OIF, +OIF:SP:22:357,1,"Le Moutier",48.828534,1.702216,0,0,OIF:SA:22:357,Europe/Paris,,OIF, +OIF:SP:22:358,1,"Le Moutier",48.828515,1.701984,0,0,OIF:SA:22:357,Europe/Paris,,OIF, +OIF:SP:22:359,1,"Gare d'Orgerus Béhoust",48.826567,1.702376,0,0,OIF:SA:8739344,Europe/Paris,,OIF, +OIF:SP:22:36,1,"Mairie",48.855947,1.876029,0,0,OIF:SA:21:101,Europe/Paris,,OIF, +OIF:SP:22:360,1,"Pré de la Jument",48.830622,1.702748,0,0,OIF:SA:22:360,Europe/Paris,,OIF, +OIF:SP:22:361,1,"Pré de la Jument",48.830342,1.702398,0,0,OIF:SA:22:360,Europe/Paris,,OIF, +OIF:SP:22:362,1,"Allée du Gué",48.8341,1.702678,0,0,OIF:SA:22:362,Europe/Paris,,OIF, +OIF:SP:22:363,1,"Allée du Gué",48.834305,1.702404,0,0,OIF:SA:22:362,Europe/Paris,,OIF, +OIF:SP:22:364,1,"Place des Halles",48.83861,1.700567,0,0,OIF:SA:22:364,Europe/Paris,,OIF, +OIF:SP:22:365,1,"Place des Halles",48.83835,1.700693,0,0,OIF:SA:22:364,Europe/Paris,,OIF, +OIF:SP:22:366,1,"Place de la Liberté",48.841545,1.698107,0,0,OIF:SA:22:366,Europe/Paris,,OIF, +OIF:SP:22:367,1,"Place de la Liberté",48.841202,1.697867,0,0,OIF:SA:22:366,Europe/Paris,,OIF, +OIF:SP:22:368,1,"Pré du Bourg",48.842768,1.699917,0,0,OIF:SA:22:368,Europe/Paris,,OIF, +OIF:SP:22:369,1,"Pré du Bourg",48.842659,1.699837,0,0,OIF:SA:22:368,Europe/Paris,,OIF, +OIF:SP:22:37,1,"Gare de Beynes",48.859863,1.875531,0,0,OIF:SA:8739336,Europe/Paris,,OIF, +OIF:SP:22:370,1,"Pré Clos",48.860955,1.714391,0,0,OIF:SA:22:370,Europe/Paris,,OIF, +OIF:SP:22:371,1,"Pré Clos",48.86089,1.71416,0,0,OIF:SA:22:370,Europe/Paris,,OIF, +OIF:SP:22:372,1,"Mairie",48.865658,1.716732,0,0,OIF:SA:22:372,Europe/Paris,,OIF, +OIF:SP:22:373,1,"Mairie",48.865639,1.716542,0,0,OIF:SA:22:372,Europe/Paris,,OIF, +OIF:SP:22:375,1,"Prieuré",48.881928,1.717096,0,0,OIF:SA:22:375,Europe/Paris,,OIF, +OIF:SP:22:376,1,"Prieuré",48.881999,1.717027,0,0,OIF:SA:22:375,Europe/Paris,,OIF, +OIF:SP:22:377,1,"Saint-Léonard",48.892278,1.721675,0,0,OIF:SA:22:377,Europe/Paris,,OIF, +OIF:SP:22:378,1,"Saint-Corentin (Haut)",48.890441,1.687037,0,0,OIF:SA:22:378,Europe/Paris,,OIF, +OIF:SP:22:379,1,"Saint-Corentin (Haut)",48.890359,1.686983,0,0,OIF:SA:22:378,Europe/Paris,,OIF, +OIF:SP:22:38,1,"Croix Verte",48.862913,1.871757,0,0,OIF:SA:21:100,Europe/Paris,,OIF, +OIF:SP:22:380,1,"Mairie (Place)",48.892006,1.679085,0,0,OIF:SA:22:380,Europe/Paris,,OIF, +OIF:SP:22:381,1,"Les Bilheux",48.899963,1.671581,0,0,OIF:SA:22:381,Europe/Paris,,OIF, +OIF:SP:22:382,1,"Prétatier",48.890372,1.661755,0,0,OIF:SA:22:382,Europe/Paris,,OIF, +OIF:SP:22:383,1,"Mairie",48.879001,1.652065,0,0,OIF:SA:22:383,Europe/Paris,,OIF, +OIF:SP:22:384,1,"Côte Lainée",48.893398,1.634878,0,0,OIF:SA:22:384,Europe/Paris,,OIF, +OIF:SP:22:385,1,"Mairie",48.903002,1.619192,0,0,OIF:SA:22:385,Europe/Paris,,OIF, +OIF:SP:22:386,1,"Mairie",48.902774,1.618664,0,0,OIF:SA:22:385,Europe/Paris,,OIF, +OIF:SP:22:387,1,"Rolanderie",48.852886,1.679663,0,0,OIF:SA:22:387,Europe/Paris,,OIF, +OIF:SP:22:388,1,"Wandrille",48.878217,1.683743,0,0,OIF:SA:22:388,Europe/Paris,,OIF, +OIF:SP:22:389,1,"Bel Air",48.777356,1.664681,0,0,OIF:SA:22:389,Europe/Paris,,OIF, +OIF:SP:22:39,1,"Croix Verte",48.862706,1.87146,0,0,OIF:SA:21:100,Europe/Paris,,OIF, +OIF:SP:22:390,1,"Bel Air",48.777304,1.664967,0,0,OIF:SA:22:389,Europe/Paris,,OIF, +OIF:SP:22:391,1,"Pré Joli",48.774681,1.669992,0,0,OIF:SA:22:391,Europe/Paris,,OIF, +OIF:SP:22:392,1,"Pré Joli",48.77478,1.670004,0,0,OIF:SA:22:391,Europe/Paris,,OIF, +OIF:SP:22:393,1,"Poule Faisane",48.773337,1.67243,0,0,OIF:SA:22:393,Europe/Paris,,OIF, +OIF:SP:22:394,1,"Poule Faisane",48.773293,1.672593,0,0,OIF:SA:22:393,Europe/Paris,,OIF, +OIF:SP:22:395,1,"Église",48.75655,1.663468,0,0,OIF:SA:22:395,Europe/Paris,,OIF, +OIF:SP:22:396,1,"Église",48.756496,1.663483,0,0,OIF:SA:22:395,Europe/Paris,,OIF, +OIF:SP:22:398,1,"Église",48.742381,1.661233,0,0,OIF:SA:22:398,Europe/Paris,,OIF, +OIF:SP:22:399,1,"Rue de la Vesgre",48.740609,1.661052,0,0,OIF:SA:22:399,Europe/Paris,,OIF, +OIF:SP:22:400,1,"Rue de la Vesgre",48.740628,1.661283,0,0,OIF:SA:22:399,Europe/Paris,,OIF, +OIF:SP:22:401,1,"Église",48.722667,1.653094,0,0,OIF:SA:22:401,Europe/Paris,,OIF, +OIF:SP:22:402,1,"Église",48.722443,1.653137,0,0,OIF:SA:22:401,Europe/Paris,,OIF, +OIF:SP:22:405,1,"École",48.741078,1.661291,0,0,OIF:SA:22:405,Europe/Paris,,OIF, +OIF:SP:22:409,1,"Thionville sur Opton",48.775805,1.604442,0,0,OIF:SA:22:409,Europe/Paris,,OIF, +OIF:SP:22:41,1,"La Maladrerie",48.873373,1.880424,0,0,OIF:SA:21:99,Europe/Paris,,OIF, +OIF:SP:22:410,1,"Thionville sur Opton",48.775456,1.604678,0,0,OIF:SA:22:409,Europe/Paris,,OIF, +OIF:SP:22:411,1,"Mairie",48.762033,1.607138,0,0,OIF:SA:22:411,Europe/Paris,,OIF, +OIF:SP:22:416,1,"Ferme de la Cour",48.868965,1.799729,0,0,OIF:SA:22:416,Europe/Paris,,OIF, +OIF:SP:22:42,1,"La Couperie",48.857027,1.849364,0,0,OIF:SA:22:42,Europe/Paris,,OIF, +OIF:SP:22:426,1,"La Folie",48.787781,1.618216,0,0,OIF:SA:22:280,Europe/Paris,,OIF, +OIF:SP:22:428,1,"Les Alouettes",48.78826,1.612727,0,0,OIF:SA:22:281,Europe/Paris,,OIF, +OIF:SP:22:43,1,"La Couperie",48.856829,1.849338,0,0,OIF:SA:22:42,Europe/Paris,,OIF, +OIF:SP:22:430,1,"République",48.794293,1.602807,0,0,OIF:SA:22:286,Europe/Paris,,OIF, +OIF:SP:22:432,1,"Gare de Houdan",48.795682,1.602189,0,0,OIF:SA:8739346,Europe/Paris,,OIF, +OIF:SP:22:438,1,"Mairie",48.831458,1.608597,0,0,OIF:SA:22:304,Europe/Paris,,OIF, +OIF:SP:22:44,1,"Carrefour de Montfort",48.858352,1.824711,0,0,OIF:SA:22:44,Europe/Paris,,OIF, +OIF:SP:22:442,1,"Gare Routière Paul Delouvrier",48.787739,2.043643,0,0,OIF:SA:8739384,Europe/Paris,,OIF, +OIF:SP:22:45,1,"Carrefour de Montfort",48.858209,1.82474,0,0,OIF:SA:22:44,Europe/Paris,,OIF, +OIF:SP:22:46,1,"Jean Barbé [Mairie]",48.85991,1.819097,0,0,OIF:SA:22:46,Europe/Paris,,OIF, +OIF:SP:22:47,1,"Jean Barbé [Mairie]",48.859882,1.818907,0,0,OIF:SA:22:46,Europe/Paris,,OIF, +OIF:SP:22:48,1,"Rue d'Autouillet",48.861486,1.815594,0,0,OIF:SA:22:48,Europe/Paris,,OIF, +OIF:SP:22:480,1,"La Petite Villedieu",48.767574,1.962189,0,0,OIF:SA:8741456,Europe/Paris,,OIF, +OIF:SP:22:481,1,"La Petite Villedieu",48.76859,1.964942,0,0,OIF:SA:8741456,Europe/Paris,,OIF, +OIF:SP:22:482,1,"Village",48.883345,1.856584,0,0,OIF:SA:21:428,Europe/Paris,,OIF, +OIF:SP:22:488,1,"Cheval Blanc",48.799953,1.907288,0,0,OIF:SA:22:488,Europe/Paris,,OIF, +OIF:SP:22:489,1,"Cheval Blanc",48.799799,1.907126,0,0,OIF:SA:22:488,Europe/Paris,,OIF, +OIF:SP:22:49,1,"Rue d'Autouillet",48.861387,1.81565,0,0,OIF:SA:22:48,Europe/Paris,,OIF, +OIF:SP:22:490,1,"Gendarmerie",48.804672,1.89522,0,0,OIF:SA:22:490,Europe/Paris,,OIF, +OIF:SP:22:491,1,"Gendarmerie",48.804546,1.895085,0,0,OIF:SA:22:490,Europe/Paris,,OIF, +OIF:SP:22:495,1,"Maladrerie",48.784074,1.807748,0,0,OIF:SA:22:495,Europe/Paris,,OIF, +OIF:SP:22:496,1,"Maladrerie",48.783992,1.807532,0,0,OIF:SA:22:495,Europe/Paris,,OIF, +OIF:SP:22:497,1,"Le Pavé",48.797172,1.67041,0,0,OIF:SA:22:497,Europe/Paris,,OIF, +OIF:SP:22:498,1,"Le Pavé",48.797236,1.670573,0,0,OIF:SA:22:497,Europe/Paris,,OIF, +OIF:SP:22:50,1,"Puit Perdu - Rue des Champs",48.863027,1.814489,0,0,OIF:SA:22:50,Europe/Paris,,OIF, +OIF:SP:22:500,1,"Saint-Roch",48.782983,1.821184,0,0,OIF:SA:22:500,Europe/Paris,,OIF, +OIF:SP:22:501,1,"Saint-Roch",48.783054,1.821088,0,0,OIF:SA:22:500,Europe/Paris,,OIF, +OIF:SP:22:503,1,"Calmettes",48.983734,1.715384,0,0,OIF:SA:22:503,Europe/Paris,,OIF, +OIF:SP:22:504,1,"Calmettes",48.983834,1.715574,0,0,OIF:SA:22:503,Europe/Paris,,OIF, +OIF:SP:22:505,1,"Gare d'Epône",48.962606,1.808639,0,0,OIF:SA:8738676,Europe/Paris,,OIF, +OIF:SP:22:506,1,"D113",48.961487,1.856377,0,0,OIF:SA:21:66,Europe/Paris,,OIF, +OIF:SP:22:507,1,"D113",48.961737,1.855925,0,0,OIF:SA:21:66,Europe/Paris,,OIF, +OIF:SP:22:508,1,"Centre Commercial",48.963393,1.863211,0,0,OIF:SA:22:508,Europe/Paris,,OIF, +OIF:SP:22:509,1,"Centre Commercial",48.963633,1.862622,0,0,OIF:SA:22:508,Europe/Paris,,OIF, +OIF:SP:22:51,1,"Puit Perdu - Rue des Champs",48.862297,1.814047,0,0,OIF:SA:22:50,Europe/Paris,,OIF, +OIF:SP:22:52,1,"La Mare",48.878956,1.821523,0,0,OIF:SA:22:52,Europe/Paris,,OIF, +OIF:SP:22:527,1,"Le Boulay Place",48.782956,1.659848,0,0,OIF:SA:22:270,Europe/Paris,,OIF, +OIF:SP:22:528,1,"La Coudraie",48.843688,1.836076,0,0,OIF:SA:22:528,Europe/Paris,,OIF, +OIF:SP:22:529,1,"La Coudraie",48.844128,1.836072,0,0,OIF:SA:22:528,Europe/Paris,,OIF, +OIF:SP:22:53,1,"La Mare",48.878875,1.821415,0,0,OIF:SA:22:52,Europe/Paris,,OIF, +OIF:SP:22:530,1,"Route du Moutier",48.827485,1.714671,0,0,OIF:SA:22:530,Europe/Paris,,OIF, +OIF:SP:22:531,1,"Route du Moutier",48.827603,1.714792,0,0,OIF:SA:22:530,Europe/Paris,,OIF, +OIF:SP:22:54,1,"Les Vignettes",48.869413,1.799452,0,0,OIF:SA:22:54,Europe/Paris,,OIF, +OIF:SP:22:57,1,"Les Vignettes",48.869332,1.799439,0,0,OIF:SA:22:54,Europe/Paris,,OIF, +OIF:SP:22:58,1,"Villarceaux",48.871567,1.783094,0,0,OIF:SA:22:58,Europe/Paris,,OIF, +OIF:SP:22:59,1,"Carrefour de Jumeauville",48.881094,1.764187,0,0,OIF:SA:22:59,Europe/Paris,,OIF, +OIF:SP:22:60,1,"Carrefour de Jumeauville",48.881041,1.764311,0,0,OIF:SA:22:59,Europe/Paris,,OIF, +OIF:SP:22:604,1,"Marche",48.774738,1.808279,0,0,OIF:SA:22:604,Europe/Paris,,OIF, +OIF:SP:22:605,1,"Marche",48.774801,1.80836,0,0,OIF:SA:22:604,Europe/Paris,,OIF, +OIF:SP:22:61,1,"Église",48.879398,1.761113,0,0,OIF:SA:22:61,Europe/Paris,,OIF, +OIF:SP:22:62,1,"Église",48.878638,1.759895,0,0,OIF:SA:22:61,Europe/Paris,,OIF, +OIF:SP:22:63,1,"Vallée Penaut",48.876023,1.759979,0,0,OIF:SA:22:63,Europe/Paris,,OIF, +OIF:SP:22:64,1,"Vallée Penaut",48.875906,1.760102,0,0,OIF:SA:22:63,Europe/Paris,,OIF, +OIF:SP:22:65,1,"Ferme de l'Orme",48.835773,1.84778,0,0,OIF:SA:22:65,Europe/Paris,,OIF, +OIF:SP:22:66,1,"Basse Pissotte",48.831084,1.839601,0,0,OIF:SA:22:66,Europe/Paris,,OIF, +OIF:SP:22:67,1,"Basse Pissotte",48.83045,1.838573,0,0,OIF:SA:22:66,Europe/Paris,,OIF, +OIF:SP:22:68,1,"Centre",48.838346,1.835229,0,0,OIF:SA:22:68,Europe/Paris,,OIF, +OIF:SP:22:69,1,"Centre",48.838399,1.835011,0,0,OIF:SA:22:68,Europe/Paris,,OIF, +OIF:SP:22:70,1,"Mairie",48.865319,1.794495,0,0,OIF:SA:22:70,Europe/Paris,,OIF, +OIF:SP:22:71,1,"Mairie",48.86514,1.794715,0,0,OIF:SA:22:70,Europe/Paris,,OIF, +OIF:SP:22:72,1,"Porte Saint-Martin",48.865773,1.787706,0,0,OIF:SA:22:72,Europe/Paris,,OIF, +OIF:SP:22:73,1,"Porte Saint-Martin",48.865519,1.78903,0,0,OIF:SA:22:72,Europe/Paris,,OIF, +OIF:SP:22:74,1,"Mairie",48.860408,1.772425,0,0,OIF:SA:22:74,Europe/Paris,,OIF, +OIF:SP:22:75,1,"Mairie",48.860292,1.772644,0,0,OIF:SA:22:74,Europe/Paris,,OIF, +OIF:SP:22:76,1,"Croix Rouge",48.857113,1.77701,0,0,OIF:SA:22:76,Europe/Paris,,OIF, +OIF:SP:22:77,1,"Croix Rouge",48.857068,1.776984,0,0,OIF:SA:22:76,Europe/Paris,,OIF, +OIF:SP:22:78,1,"Boulaincourt",48.84957,1.776506,0,0,OIF:SA:22:78,Europe/Paris,,OIF, +OIF:SP:22:79,1,"Cheval Mort",48.780678,1.843743,0,0,OIF:SA:22:79,Europe/Paris,,OIF, +OIF:SP:22:80,1,"Cheval Mort",48.780768,1.84362,0,0,OIF:SA:22:79,Europe/Paris,,OIF, +OIF:SP:22:81,1,"Église",48.778657,1.859348,0,0,OIF:SA:22:81,Europe/Paris,,OIF, +OIF:SP:22:82,1,"Église",48.778738,1.859401,0,0,OIF:SA:22:81,Europe/Paris,,OIF, +OIF:SP:22:83,1,"Église",48.777924,1.876381,0,0,OIF:SA:22:83,Europe/Paris,,OIF, +OIF:SP:22:84,1,"Église",48.778123,1.876583,0,0,OIF:SA:22:83,Europe/Paris,,OIF, +OIF:SP:22:85,1,"Les Mousseaux",48.780028,1.893227,0,0,OIF:SA:22:85,Europe/Paris,,OIF, +OIF:SP:22:86,1,"Les Mousseaux",48.780323,1.892735,0,0,OIF:SA:22:85,Europe/Paris,,OIF, +OIF:SP:22:87,1,"Les Louveries",48.765363,1.908852,0,0,OIF:SA:22:87,Europe/Paris,,OIF, +OIF:SP:22:88,1,"La Grand'Mare",48.76747,1.920025,0,0,OIF:SA:22:88,Europe/Paris,,OIF, +OIF:SP:22:89,1,"La Grand'Mare",48.767479,1.919998,0,0,OIF:SA:22:88,Europe/Paris,,OIF, +OIF:SP:22:90,1,"Armorique",48.764986,1.929399,0,0,OIF:SA:22:90,Europe/Paris,,OIF, +OIF:SP:22:91,1,"Armorique",48.765076,1.929372,0,0,OIF:SA:22:90,Europe/Paris,,OIF, +OIF:SP:22:92,1,"Bretagne",48.764492,1.934869,0,0,OIF:SA:22:92,Europe/Paris,,OIF, +OIF:SP:22:93,1,"Bretagne",48.764465,1.93472,0,0,OIF:SA:22:92,Europe/Paris,,OIF, +OIF:SP:22:94,1,"Les Pyramides",48.763655,1.947914,0,0,OIF:SA:22:94,Europe/Paris,,OIF, +OIF:SP:22:95,1,"Les Pyramides",48.763555,1.947602,0,0,OIF:SA:22:94,Europe/Paris,,OIF, +OIF:SP:22:96,1,"Franche Comtébourgogne",48.767018,1.951302,0,0,OIF:SA:22:96,Europe/Paris,,OIF, +OIF:SP:22:9631,1,"Bois Renoult",48.770671,1.797292,0,0,OIF:SA:22:9631,Europe/Paris,,OIF, +OIF:SP:22:9632,1,"Bois Renoult",48.770553,1.797171,0,0,OIF:SA:22:9631,Europe/Paris,,OIF, +OIF:SP:22:9647,1,"Rambouillet Gare Prairie",48.643337,1.832186,0,0,OIF:SA:8739331,Europe/Paris,,OIF, +OIF:SP:22:9648,1,"Arbouville",48.636076,1.818165,0,0,OIF:SA:22:9648,Europe/Paris,,OIF, +OIF:SP:22:9649,1,"Arbouville",48.636076,1.818151,0,0,OIF:SA:22:9648,Europe/Paris,,OIF, +OIF:SP:22:9650,1,"Gazeran Buissonnet",48.638441,1.77292,0,0,OIF:SA:22:9650,Europe/Paris,,OIF, +OIF:SP:22:9651,1,"Gazeran Buissonnet",48.638524,1.773408,0,0,OIF:SA:22:9650,Europe/Paris,,OIF, +OIF:SP:22:9652,1,"Gazeran Volaille",48.643549,1.743836,0,0,OIF:SA:22:9652,Europe/Paris,,OIF, +OIF:SP:22:9653,1,"Gazeran Volaille",48.643593,1.743755,0,0,OIF:SA:22:9652,Europe/Paris,,OIF, +OIF:SP:22:9654,1,"Hermeray Bois Dieu",48.647475,1.720567,0,0,OIF:SA:22:9654,Europe/Paris,,OIF, +OIF:SP:22:9655,1,"Hermeray Bois Dieu",48.647504,1.721001,0,0,OIF:SA:22:9654,Europe/Paris,,OIF, +OIF:SP:22:9656,1,"Raizeux les Chaises",48.65023,1.692492,0,0,OIF:SA:22:9656,Europe/Paris,,OIF, +OIF:SP:22:9657,1,"Raizeux les Chaises",48.650321,1.692817,0,0,OIF:SA:22:9656,Europe/Paris,,OIF, +OIF:SP:22:9658,1,"Hermeray Béchereau",48.653501,1.680974,0,0,OIF:SA:22:9658,Europe/Paris,,OIF, +OIF:SP:22:9659,1,"Hermeray Béchereau",48.653432,1.68149,0,0,OIF:SA:22:9658,Europe/Paris,,OIF, +OIF:SP:22:9660,1,"Hermeray la Villeneuve",48.66211,1.669052,0,0,OIF:SA:22:9660,Europe/Paris,,OIF, +OIF:SP:22:9661,1,"Hermeray la Villeneuve",48.662426,1.668971,0,0,OIF:SA:22:9660,Europe/Paris,,OIF, +OIF:SP:22:9662,1,"Boissière École Soredab",48.678347,1.64921,0,0,OIF:SA:22:9662,Europe/Paris,,OIF, +OIF:SP:22:9663,1,"Boissière École Soredab",48.67813,1.648996,0,0,OIF:SA:22:9662,Europe/Paris,,OIF, +OIF:SP:22:9664,1,"Café",48.680334,1.652293,0,0,OIF:SA:22:9664,Europe/Paris,,OIF, +OIF:SP:22:9665,1,"Café",48.680091,1.652364,0,0,OIF:SA:22:9664,Europe/Paris,,OIF, +OIF:SP:22:9666,1,"Libération",48.81316,1.86099,0,0,OIF:SA:22:9666,Europe/Paris,,OIF, +OIF:SP:22:9667,1,"Libération",48.813232,1.861166,0,0,OIF:SA:22:9666,Europe/Paris,,OIF, +OIF:SP:22:9668,1,"Jean Moulin",48.796228,1.970825,0,0,OIF:SA:22:9668,Europe/Paris,,OIF, +OIF:SP:22:9669,1,"Jean Moulin",48.796085,1.971002,0,0,OIF:SA:22:9668,Europe/Paris,,OIF, +OIF:SP:22:9670,1,"De Lattre de Tassigny",48.797669,1.974665,0,0,OIF:SA:22:9670,Europe/Paris,,OIF, +OIF:SP:22:9671,1,"De Lattre de Tassigny",48.797607,1.97476,0,0,OIF:SA:22:9670,Europe/Paris,,OIF, +OIF:SP:22:9672,1,"Pissaloup",48.79583,1.981684,0,0,OIF:SA:22:9672,Europe/Paris,,OIF, +OIF:SP:22:9673,1,"Pissaloup",48.79521,1.981919,0,0,OIF:SA:22:9672,Europe/Paris,,OIF, +OIF:SP:22:9674,1,"Houdan Vignes",48.787806,1.604694,0,0,OIF:SA:22:9674,Europe/Paris,,OIF, +OIF:SP:22:9675,1,"Houdan Vignes",48.787787,1.60445,0,0,OIF:SA:22:9674,Europe/Paris,,OIF, +OIF:SP:22:9684,1,"Lycée Jean Monnet",48.80313,1.782342,0,0,OIF:SA:22:156,Europe/Paris,,OIF, +OIF:SP:22:9686,1,"ZAC la Prévôté",48.789591,1.586795,0,0,OIF:SA:22:305,Europe/Paris,,OIF, +OIF:SP:22:9688,1,"Général Leclerc",48.820688,1.755122,0,0,OIF:SA:22:340,Europe/Paris,,OIF, +OIF:SP:22:9691,1,"Lycée Viollet le Duc",48.813015,1.874573,0,0,OIF:SA:8739388,Europe/Paris,,OIF, +OIF:SP:22:97,1,"Franche Comtébourgogne",48.767089,1.951016,0,0,OIF:SA:22:96,Europe/Paris,,OIF, +OIF:SP:22:98,1,"Les 7 Mares",48.769111,1.948172,0,0,OIF:SA:22:98,Europe/Paris,,OIF, +OIF:SP:22:99,1,"Les 7 Mares",48.769111,1.948132,0,0,OIF:SA:22:98,Europe/Paris,,OIF, +OIF:SP:23:10,1,"Église",49.072446,1.77856,0,0,OIF:SA:23:10,Europe/Paris,,OIF, +OIF:SP:23:100,1,"Stade Mazières",48.948773,2.042362,0,0,OIF:SA:23:100,Europe/Paris,,OIF, +OIF:SP:23:1002,1,"Roseland",48.994155,1.868092,0,0,OIF:SA:23:1002,Europe/Paris,,OIF, +OIF:SP:23:1006,1,"Frères Tissier",48.942253,2.026505,0,0,OIF:SA:23:1006,Europe/Paris,,OIF, +OIF:SP:23:1007,1,"Château d'Eau",48.944982,2.035916,0,0,OIF:SA:23:1007,Europe/Paris,,OIF, +OIF:SP:23:101,1,"Stade Mazières",48.948628,2.042131,0,0,OIF:SA:23:100,Europe/Paris,,OIF, +OIF:SP:23:1016,1,"Les Ouches",48.978044,2.032065,0,0,OIF:SA:23:1016,Europe/Paris,,OIF, +OIF:SP:23:102,1,"Vieille Ferme",48.940434,2.011646,0,0,OIF:SA:23:102,Europe/Paris,,OIF, +OIF:SP:23:1023,1,"Lycée Charles de Gaulle",48.947439,2.063286,0,0,OIF:SA:20:377,Europe/Paris,,OIF, +OIF:SP:23:1027,1,"Église",48.928736,1.936008,0,0,OIF:SA:23:1027,Europe/Paris,,OIF, +OIF:SP:23:103,1,"Gare de Cergy Saint-Christophe",49.049518,2.034337,0,0,OIF:SA:8738249,Europe/Paris,,OIF, +OIF:SP:23:1030,1,"Église",48.928808,1.936062,0,0,OIF:SA:23:1027,Europe/Paris,,OIF, +OIF:SP:23:1032,1,"Moulin des Roches",49.0364,1.8521,0,0,OIF:SA:23:1032,Europe/Paris,,OIF, +OIF:SP:23:1034,1,"Moulin des Roches",49.036355,1.852087,0,0,OIF:SA:23:1032,Europe/Paris,,OIF, +OIF:SP:23:1035,1,"La Poste",48.982188,2.002331,0,0,OIF:SA:23:1035,Europe/Paris,,OIF, +OIF:SP:23:1036,1,"La Poste",48.982357,2.001948,0,0,OIF:SA:23:1035,Europe/Paris,,OIF, +OIF:SP:23:1040,1,"Gare de Vaux-sur-Seine",49.006795,1.963528,0,0,OIF:SA:8738181,Europe/Paris,,OIF, +OIF:SP:23:1044,1,"Les Chatelaînes",48.977209,2.01536,0,0,OIF:SA:23:1044,Europe/Paris,,OIF, +OIF:SP:23:1046,1,"Frères Leiris",48.994377,2.019938,0,0,OIF:SA:23:1046,Europe/Paris,,OIF, +OIF:SP:23:1051,1,"Maison des Arts",48.991487,1.735967,0,0,OIF:SA:23:1051,Europe/Paris,,OIF, +OIF:SP:23:1052,1,"Maison des Arts",48.991497,1.73613,0,0,OIF:SA:23:1051,Europe/Paris,,OIF, +OIF:SP:23:106,1,"Rond-Point du Haut de Gency",49.047693,2.044669,0,0,OIF:SA:23:106,Europe/Paris,,OIF, +OIF:SP:23:1064,1,"Cardinal de Retz",48.84644,2.059298,0,0,OIF:SA:21:382,Europe/Paris,,OIF, +OIF:SP:23:1065,1,"Salle des Fêtes",48.802401,1.967121,0,0,OIF:SA:23:1065,Europe/Paris,,OIF, +OIF:SP:23:1066,1,"La Chapelle",48.882867,1.984889,0,0,OIF:SA:23:1066,Europe/Paris,,OIF, +OIF:SP:23:1068,1,"Rue Saint-Louis",48.895132,2.095498,0,0,OIF:SA:15:201,Europe/Paris,,OIF, +OIF:SP:23:107,1,"Rue du Chemin de Fer",49.048302,2.036791,0,0,OIF:SA:23:107,Europe/Paris,,OIF, +OIF:SP:23:1070,1,"Gare Sud",48.93335,2.041877,0,0,OIF:SA:8738657,Europe/Paris,,OIF, +OIF:SP:23:1074,1,"Cherbourg",49.009628,1.94482,0,0,OIF:SA:21:964,Europe/Paris,,OIF, +OIF:SP:23:1075,1,"Cherbourg",49.00948,1.946324,0,0,OIF:SA:21:964,Europe/Paris,,OIF, +OIF:SP:23:1076,1,"Vigne Blanche",48.981965,1.912384,0,0,OIF:SA:21:822,Europe/Paris,,OIF, +OIF:SP:23:1077,1,"Vigne Blanche",48.981587,1.912306,0,0,OIF:SA:21:822,Europe/Paris,,OIF, +OIF:SP:23:1078,1,"Centre Commercial Bouginont",48.985558,1.911904,0,0,OIF:SA:21:444,Europe/Paris,,OIF, +OIF:SP:23:1079,1,"Centre Commercial Bouginont",48.986592,1.912114,0,0,OIF:SA:21:444,Europe/Paris,,OIF, +OIF:SP:23:108,1,"Rue du Chemin de Fer",49.048301,2.036545,0,0,OIF:SA:23:107,Europe/Paris,,OIF, +OIF:SP:23:1080,1,"Conflans Fin d'Oise",48.988508,2.075249,0,0,OIF:SA:8738145,Europe/Paris,,OIF, +OIF:SP:23:1081,1,"Village d'Hennemont",48.898476,2.062577,0,0,OIF:SA:15:180,Europe/Paris,,OIF, +OIF:SP:23:1082,1,"Gare Nord",48.933128,2.039464,0,0,OIF:SA:8738657,Europe/Paris,,OIF, +OIF:SP:23:1083,1,"République",48.898119,2.09269,0,0,OIF:SA:15:477,Europe/Paris,,OIF, +OIF:SP:23:1084,1,"République",48.898091,2.092404,0,0,OIF:SA:15:477,Europe/Paris,,OIF, +OIF:SP:23:109,1,"Rond-Point du Golf",49.039739,2.016188,0,0,OIF:SA:23:109,Europe/Paris,,OIF, +OIF:SP:23:1090,1,"RD 43",48.964875,1.923471,0,0,OIF:SA:21:160,Europe/Paris,,OIF, +OIF:SP:23:1095,1,"Reine Blanche",48.939283,2.03168,0,0,OIF:SA:23:1095,Europe/Paris,,OIF, +OIF:SP:23:1097,1,"Senette",48.936929,2.035363,0,0,OIF:SA:23:1097,Europe/Paris,,OIF, +OIF:SP:23:1098,1,"Stade Bretagne",48.936823,2.022241,0,0,OIF:SA:23:1098,Europe/Paris,,OIF, +OIF:SP:23:1099,1,"Gare Nord",48.933372,2.039776,0,0,OIF:SA:8738657,Europe/Paris,,OIF, +OIF:SP:23:11,1,"Gare de Maurecourt",48.988735,2.060501,0,0,OIF:SA:8738148,Europe/Paris,,OIF, +OIF:SP:23:110,1,"Rond-Point du Golf",49.039783,2.015955,0,0,OIF:SA:23:109,Europe/Paris,,OIF, +OIF:SP:23:1100,1,"Gare Nord",48.933073,2.039027,0,0,OIF:SA:8738657,Europe/Paris,,OIF, +OIF:SP:23:1101,1,"Foch Constanti",48.930933,2.052952,0,0,OIF:SA:20:650,Europe/Paris,,OIF, +OIF:SP:23:1102,1,"Sainte-Anne",48.932594,2.056367,0,0,OIF:SA:23:1102,Europe/Paris,,OIF, +OIF:SP:23:1103,1,"Foch / Justice",48.929479,2.05011,0,0,OIF:SA:23:1103,Europe/Paris,,OIF, +OIF:SP:23:1104,1,"Conflans Fin d'Oise",48.988939,2.075001,0,0,OIF:SA:8738145,Europe/Paris,,OIF, +OIF:SP:23:1105,1,"Conflans Fin d'Oise",48.988651,2.075126,0,0,OIF:SA:8738145,Europe/Paris,,OIF, +OIF:SP:23:1106,1,"Conflans Fin d'Oise",48.988804,2.07507,0,0,OIF:SA:8738145,Europe/Paris,,OIF, +OIF:SP:23:1107,1,"Les Ouches",48.978044,2.032065,0,0,OIF:SA:23:1016,Europe/Paris,,OIF, +OIF:SP:23:1108,1,"Gare de Plaisir Grignon",48.831377,1.94452,0,0,OIF:SA:8739342,Europe/Paris,,OIF, +OIF:SP:23:1109,1,"Gare de Plaisir Grignon",48.831511,1.944342,0,0,OIF:SA:8739342,Europe/Paris,,OIF, +OIF:SP:23:111,1,"La Belle Heaumiere",49.049599,2.02381,0,0,OIF:SA:23:111,Europe/Paris,,OIF, +OIF:SP:23:1110,1,"Gare Paul Delouvrier",48.788048,2.044893,0,0,OIF:SA:8739384,Europe/Paris,,OIF, +OIF:SP:23:1111,1,"Gare Nord",48.933588,2.040007,0,0,OIF:SA:8738657,Europe/Paris,,OIF, +OIF:SP:23:1112,1,"Gare Nord",48.933228,2.039668,0,0,OIF:SA:8738657,Europe/Paris,,OIF, +OIF:SP:23:1113,1,"Gare Nord",48.932616,2.039467,0,0,OIF:SA:8738657,Europe/Paris,,OIF, +OIF:SP:23:1114,1,"Gare Nord",48.932929,2.038851,0,0,OIF:SA:8738657,Europe/Paris,,OIF, +OIF:SP:23:1116,1,"Gare Nord",48.933155,2.039436,0,0,OIF:SA:8738657,Europe/Paris,,OIF, +OIF:SP:23:1117,1,"Gare Nord",48.933092,2.039246,0,0,OIF:SA:8738657,Europe/Paris,,OIF, +OIF:SP:23:1118,1,"Gare Nord",48.933029,2.039137,0,0,OIF:SA:8738657,Europe/Paris,,OIF, +OIF:SP:23:1119,1,"Gare Nord",48.93302,2.039096,0,0,OIF:SA:8738657,Europe/Paris,,OIF, +OIF:SP:23:112,1,"La Belle Heaumiere",49.049455,2.023742,0,0,OIF:SA:23:111,Europe/Paris,,OIF, +OIF:SP:23:1120,1,"Gare Sud",48.933486,2.042258,0,0,OIF:SA:8738657,Europe/Paris,,OIF, +OIF:SP:23:1121,1,"Gare Sud",48.933476,2.042053,0,0,OIF:SA:8738657,Europe/Paris,,OIF, +OIF:SP:23:1122,1,"Gare Sud",48.933459,2.042204,0,0,OIF:SA:8738657,Europe/Paris,,OIF, +OIF:SP:23:1123,1,"Gare Sud",48.933144,2.04211,0,0,OIF:SA:8738657,Europe/Paris,,OIF, +OIF:SP:23:1125,1,"Gare Sud",48.933369,2.04245,0,0,OIF:SA:8738657,Europe/Paris,,OIF, +OIF:SP:23:1128,1,"Gare Sud",48.932974,2.042343,0,0,OIF:SA:8738657,Europe/Paris,,OIF, +OIF:SP:23:113,1,"Martelet",49.045486,2.038899,0,0,OIF:SA:23:113,Europe/Paris,,OIF, +OIF:SP:23:1130,1,"La Coudraie",48.918538,2.013638,0,0,OIF:SA:23:1130,Europe/Paris,,OIF, +OIF:SP:23:1132,1,"Hôpital",48.917829,2.023951,0,0,OIF:SA:20:179,Europe/Paris,,OIF, +OIF:SP:23:1133,1,"Gare de Cergy Saint-Christophe",49.049518,2.034337,0,0,OIF:SA:8738249,Europe/Paris,,OIF, +OIF:SP:23:1134,1,"Peugeot",48.939063,2.047997,0,0,OIF:SA:21:618,Europe/Paris,,OIF, +OIF:SP:23:1135,1,"Europe",48.804818,2.129881,0,0,OIF:SA:23:1135,Europe/Paris,,OIF, +OIF:SP:23:1136,1,"Gare de Chanteloup-les-Vignes",48.970529,2.027933,0,0,OIF:SA:8738147,Europe/Paris,,OIF, +OIF:SP:23:1137,1,"Auberge",48.935873,1.949907,0,0,OIF:SA:21:430,Europe/Paris,,OIF, +OIF:SP:23:1138,1,"Auberge",48.935972,1.94992,0,0,OIF:SA:21:430,Europe/Paris,,OIF, +OIF:SP:23:1139,1,"Gare Routière",48.823738,1.99113,0,0,OIF:SA:8739341,Europe/Paris,,OIF, +OIF:SP:23:114,1,"Martelet",49.045557,2.038735,0,0,OIF:SA:23:113,Europe/Paris,,OIF, +OIF:SP:23:1140,1,"Thiers",48.897191,2.095884,0,0,OIF:SA:15:447,Europe/Paris,,OIF, +OIF:SP:23:1141,1,"RER",48.898833,2.094704,0,0,OIF:SA:8775809,Europe/Paris,,OIF, +OIF:SP:23:1142,1,"Gare de Saint-Nom la Bretêche",48.866839,2.050783,0,0,OIF:SA:8738248,Europe/Paris,,OIF, +OIF:SP:23:1143,1,"Grasse Village",48.866031,1.974854,0,0,OIF:SA:21:258,Europe/Paris,,OIF, +OIF:SP:23:1144,1,"Grasse Village",48.865851,1.974747,0,0,OIF:SA:21:258,Europe/Paris,,OIF, +OIF:SP:23:1146,1,"Lycée Charles de Gaulle",48.947439,2.063286,0,0,OIF:SA:20:377,Europe/Paris,,OIF, +OIF:SP:23:1147,1,"Tennis",48.855624,2.019274,0,0,OIF:SA:23:1147,Europe/Paris,,OIF, +OIF:SP:23:1148,1,"Julia",48.999241,2.060718,0,0,OIF:SA:23:1148,Europe/Paris,,OIF, +OIF:SP:23:1149,1,"Frères Leiris",48.994269,2.019952,0,0,OIF:SA:23:1046,Europe/Paris,,OIF, +OIF:SP:23:115,1,"Musaraigne",49.049192,2.029909,0,0,OIF:SA:23:115,Europe/Paris,,OIF, +OIF:SP:23:1150,1,"Quatre Chemins",48.887755,2.079397,0,0,OIF:SA:15:159,Europe/Paris,,OIF, +OIF:SP:23:1151,1,"Quatre Chemins",48.887883,2.079982,0,0,OIF:SA:15:159,Europe/Paris,,OIF, +OIF:SP:23:1152,1,"Pontel",48.887524,2.084617,0,0,OIF:SA:15:157,Europe/Paris,,OIF, +OIF:SP:23:1153,1,"Pontel",48.887659,2.084617,0,0,OIF:SA:15:157,Europe/Paris,,OIF, +OIF:SP:23:116,1,"Musaraigne",49.049075,2.029855,0,0,OIF:SA:23:115,Europe/Paris,,OIF, +OIF:SP:23:12,1,"Gare de Maurecourt",48.98869,2.060528,0,0,OIF:SA:8738148,Europe/Paris,,OIF, +OIF:SP:23:1200,1,"Les Fleurs",48.945223,2.024782,0,0,OIF:SA:23:1200,Europe/Paris,,OIF, +OIF:SP:23:1201,1,"Les Fleurs",48.945178,2.024728,0,0,OIF:SA:23:1200,Europe/Paris,,OIF, +OIF:SP:23:1203,1,"Château Vanderbilt",48.943731,2.021366,0,0,OIF:SA:23:1203,Europe/Paris,,OIF, +OIF:SP:23:1204,1,"Château Vanderbilt",48.943731,2.021394,0,0,OIF:SA:23:1203,Europe/Paris,,OIF, +OIF:SP:23:1205,1,"Saint-Louis",48.942563,2.017936,0,0,OIF:SA:23:1205,Europe/Paris,,OIF, +OIF:SP:23:1206,1,"Saint-Louis",48.942518,2.018018,0,0,OIF:SA:23:1205,Europe/Paris,,OIF, +OIF:SP:23:1207,1,"Port Saint-Louis",48.94209,2.012672,0,0,OIF:SA:23:1207,Europe/Paris,,OIF, +OIF:SP:23:1208,1,"Les Oiseaux - Parc du Peuple de l'Herbe",48.939071,2.012841,0,0,OIF:SA:23:1208,Europe/Paris,,OIF, +OIF:SP:23:1209,1,"Les Oiseaux - Parc du Peuple de l'Herbe",48.939071,2.012841,0,0,OIF:SA:23:1208,Europe/Paris,,OIF, +OIF:SP:23:121,1,"Hautes Garennes",48.966786,2.033114,0,0,OIF:SA:23:121,Europe/Paris,,OIF, +OIF:SP:23:1210,1,"Galiotte",48.937381,2.033014,0,0,OIF:SA:23:1210,Europe/Paris,,OIF, +OIF:SP:23:1211,1,"Galiotte",48.936404,2.03392,0,0,OIF:SA:23:1210,Europe/Paris,,OIF, +OIF:SP:23:1212,1,"Maurice Evrard",48.940266,2.022684,0,0,OIF:SA:23:1212,Europe/Paris,,OIF, +OIF:SP:23:1213,1,"Maurice Evrard",48.939995,2.022262,0,0,OIF:SA:23:1212,Europe/Paris,,OIF, +OIF:SP:23:1214,1,"Flora Tristan",48.938337,2.020417,0,0,OIF:SA:23:1214,Europe/Paris,,OIF, +OIF:SP:23:1215,1,"Flora Tristan",48.938553,2.020716,0,0,OIF:SA:23:1214,Europe/Paris,,OIF, +OIF:SP:23:1216,1,"Saint-Honoré",48.937609,2.017284,0,0,OIF:SA:23:1216,Europe/Paris,,OIF, +OIF:SP:23:1217,1,"Les Oiseaux",48.938678,2.013635,0,0,OIF:SA:23:1217,Europe/Paris,,OIF, +OIF:SP:23:1218,1,"Maison des Insectes - Parc du Peuple de l'Herbe",48.937861,2.013749,0,0,OIF:SA:23:1218,Europe/Paris,,OIF, +OIF:SP:23:1219,1,"Maison des Insectes - Parc du Peuple de l'Herbe",48.937861,2.013749,0,0,OIF:SA:23:1218,Europe/Paris,,OIF, +OIF:SP:23:122,1,"Hautes Garennes",48.966606,2.033129,0,0,OIF:SA:23:121,Europe/Paris,,OIF, +OIF:SP:23:1220,1,"Parc Provence",48.936653,2.015994,0,0,OIF:SA:23:1220,Europe/Paris,,OIF, +OIF:SP:23:1221,1,"Gare Nord",48.933326,2.039572,0,0,OIF:SA:8738657,Europe/Paris,,OIF, +OIF:SP:23:1222,1,"Fabrique 21",48.94906,2.02465,0,0,OIF:SA:23:1222,Europe/Paris,,OIF, +OIF:SP:23:1223,1,"Fabrique 21",48.948478,2.025294,0,0,OIF:SA:23:1222,Europe/Paris,,OIF, +OIF:SP:23:1224,1,"Avenue de Pontoise",48.93635,2.055951,0,0,OIF:SA:20:168,Europe/Paris,,OIF, +OIF:SP:23:1225,1,"Chemin Vert",48.958743,2.036573,0,0,OIF:SA:23:1225,Europe/Paris,,OIF, +OIF:SP:23:1226,1,"Chemin Vert",48.95859,2.036506,0,0,OIF:SA:23:1225,Europe/Paris,,OIF, +OIF:SP:23:1227,1,"Nicot",48.894319,2.076774,0,0,OIF:SA:15:210,Europe/Paris,,OIF, +OIF:SP:23:1228,1,"Saint-Exupéry",48.939442,2.060232,0,0,OIF:SA:23:1129,Europe/Paris,,OIF, +OIF:SP:23:1229,1,"Roland le Nestour",48.940439,2.059994,0,0,OIF:SA:23:1229,Europe/Paris,,OIF, +OIF:SP:23:123,1,"Mairie",48.977304,2.031059,0,0,OIF:SA:23:123,Europe/Paris,,OIF, +OIF:SP:23:1230,1,"Piscine Saint-Exupéry",48.939266,2.057818,0,0,OIF:SA:23:1230,Europe/Paris,,OIF, +OIF:SP:23:1231,1,"Piscine Saint-Exupéry",48.939284,2.057736,0,0,OIF:SA:23:1230,Europe/Paris,,OIF, +OIF:SP:23:1232,1,"Hôpital",48.918518,2.022775,0,0,OIF:SA:20:179,Europe/Paris,,OIF, +OIF:SP:23:1233,1,"Rue de la Marne",48.934828,2.062575,0,0,OIF:SA:23:1233,Europe/Paris,,OIF, +OIF:SP:23:1234,1,"Rue de la Marne",48.934846,2.062548,0,0,OIF:SA:23:1233,Europe/Paris,,OIF, +OIF:SP:23:1235,1,"Foch Flament",48.934135,2.05805,0,0,OIF:SA:23:1235,Europe/Paris,,OIF, +OIF:SP:23:1236,1,"La Bruyère",48.927483,2.053462,0,0,OIF:SA:23:1236,Europe/Paris,,OIF, +OIF:SP:23:1237,1,"Rue du Stade",48.937994,2.055874,0,0,OIF:SA:23:1237,Europe/Paris,,OIF, +OIF:SP:23:1238,1,"Parvis Gare",48.932676,2.041853,0,0,OIF:SA:23:1238,Europe/Paris,,OIF, +OIF:SP:23:1239,1,"Parvis Gare",48.932504,2.0415,0,0,OIF:SA:23:1238,Europe/Paris,,OIF, +OIF:SP:23:124,1,"Mairie",48.977412,2.031018,0,0,OIF:SA:23:123,Europe/Paris,,OIF, +OIF:SP:23:1240,1,"Renaissance",48.91226,2.035588,0,0,OIF:SA:15:535,Europe/Paris,,OIF, +OIF:SP:23:1241,1,"Renaissance",48.911938,2.036163,0,0,OIF:SA:15:535,Europe/Paris,,OIF, +OIF:SP:23:1243,1,"Parvis Gare",48.932197,2.040819,0,0,OIF:SA:23:1238,Europe/Paris,,OIF, +OIF:SP:23:1244,1,"La Bruyère",48.927483,2.053462,0,0,OIF:SA:23:1236,Europe/Paris,,OIF, +OIF:SP:23:1245,1,"Rhin Danube",48.922179,2.027566,0,0,OIF:SA:21:610,Europe/Paris,,OIF, +OIF:SP:23:1246,1,"Saint-Exupéry",48.939442,2.060232,0,0,OIF:SA:23:1129,Europe/Paris,,OIF, +OIF:SP:23:126,1,"Les Ormes",48.855629,1.995221,0,0,OIF:SA:23:126,Europe/Paris,,OIF, +OIF:SP:23:13,1,"Berteaux",48.96791,2.043987,0,0,OIF:SA:23:13,Europe/Paris,,OIF, +OIF:SP:23:131,1,"La Plaine",48.974494,2.032127,0,0,OIF:SA:23:131,Europe/Paris,,OIF, +OIF:SP:23:132,1,"La Plaine",48.974575,2.032045,0,0,OIF:SA:23:131,Europe/Paris,,OIF, +OIF:SP:23:134,1,"Sécurité Sociale",48.971448,2.032282,0,0,OIF:SA:23:134,Europe/Paris,,OIF, +OIF:SP:23:135,1,"Sécurité Sociale",48.972257,2.032195,0,0,OIF:SA:23:134,Europe/Paris,,OIF, +OIF:SP:23:138,1,"Vallon",48.853284,1.992186,0,0,OIF:SA:21:167,Europe/Paris,,OIF, +OIF:SP:23:14,1,"Berteaux",48.967927,2.04385,0,0,OIF:SA:23:13,Europe/Paris,,OIF, +OIF:SP:23:140,1,"Rue Chaude",48.909033,2.042656,0,0,OIF:SA:23:140,Europe/Paris,,OIF, +OIF:SP:23:141,1,"Rue Chaude",48.908244,2.043424,0,0,OIF:SA:23:140,Europe/Paris,,OIF, +OIF:SP:23:142,1,"Collège André Derain",48.910656,2.030567,0,0,OIF:SA:15:141,Europe/Paris,,OIF, +OIF:SP:23:145,1,"Parly 2",48.826845,2.114111,0,0,OIF:SA:21:1032,Europe/Paris,,OIF, +OIF:SP:23:146,1,"Parly 2",48.830518,2.112462,0,0,OIF:SA:21:1032,Europe/Paris,,OIF, +OIF:SP:23:147,1,"Joyenval",48.902735,2.032645,0,0,OIF:SA:15:381,Europe/Paris,,OIF, +OIF:SP:23:148,1,"Joyenval",48.902753,2.032658,0,0,OIF:SA:15:381,Europe/Paris,,OIF, +OIF:SP:23:149,1,"Jules Ferry",48.823251,1.984354,0,0,OIF:SA:23:149,Europe/Paris,,OIF, +OIF:SP:23:15,1,"Les Charvaux",48.991264,2.054287,0,0,OIF:SA:23:15,Europe/Paris,,OIF, +OIF:SP:23:150,1,"Jules Ferry",48.823135,1.984505,0,0,OIF:SA:23:149,Europe/Paris,,OIF, +OIF:SP:23:151,1,"Gare Routière",48.823738,1.99113,0,0,OIF:SA:8739341,Europe/Paris,,OIF, +OIF:SP:23:152,1,"Toit et Joie",48.826109,1.987343,0,0,OIF:SA:23:152,Europe/Paris,,OIF, +OIF:SP:23:153,1,"Toit et Joie",48.825983,1.987399,0,0,OIF:SA:23:152,Europe/Paris,,OIF, +OIF:SP:23:154,1,"République",48.822158,1.988649,0,0,OIF:SA:23:154,Europe/Paris,,OIF, +OIF:SP:23:155,1,"République",48.822059,1.988446,0,0,OIF:SA:23:154,Europe/Paris,,OIF, +OIF:SP:23:156,1,"Docteur Roux",48.828107,1.991509,0,0,OIF:SA:23:156,Europe/Paris,,OIF, +OIF:SP:23:157,1,"Docteur Roux",48.827991,1.991755,0,0,OIF:SA:23:156,Europe/Paris,,OIF, +OIF:SP:23:158,1,"Vaillant",48.826422,1.996108,0,0,OIF:SA:23:158,Europe/Paris,,OIF, +OIF:SP:23:159,1,"Vaillant",48.826269,1.996177,0,0,OIF:SA:23:158,Europe/Paris,,OIF, +OIF:SP:23:16,1,"CD55",48.988675,2.05422,0,0,OIF:SA:23:16,Europe/Paris,,OIF, +OIF:SP:23:165,1,"Le Relais du Nord",49.055238,1.76722,0,0,OIF:SA:23:165,Europe/Paris,,OIF, +OIF:SP:23:166,1,"Le Relais du Nord",49.055203,1.767384,0,0,OIF:SA:23:165,Europe/Paris,,OIF, +OIF:SP:23:17,1,"CD55",48.98864,2.054233,0,0,OIF:SA:23:16,Europe/Paris,,OIF, +OIF:SP:23:171,1,"Fontaines",48.951934,1.915728,0,0,OIF:SA:21:227,Europe/Paris,,OIF, +OIF:SP:23:172,1,"Victor Hugo",48.950055,1.918145,0,0,OIF:SA:21:241,Europe/Paris,,OIF, +OIF:SP:23:173,1,"Les Louvettes",48.954096,1.917239,0,0,OIF:SA:21:228,Europe/Paris,,OIF, +OIF:SP:23:175,1,"Le Parc",48.946752,1.927081,0,0,OIF:SA:21:230,Europe/Paris,,OIF, +OIF:SP:23:177,1,"République",48.948498,1.922524,0,0,OIF:SA:21:235,Europe/Paris,,OIF, +OIF:SP:23:18,1,"Désavis",48.980311,2.055166,0,0,OIF:SA:23:18,Europe/Paris,,OIF, +OIF:SP:23:180,1,"Sablons",48.95391,1.920597,0,0,OIF:SA:21:232,Europe/Paris,,OIF, +OIF:SP:23:183,1,"Clairbois",48.881959,1.981679,0,0,OIF:SA:21:254,Europe/Paris,,OIF, +OIF:SP:23:184,1,"Clairbois",48.881985,1.981406,0,0,OIF:SA:21:254,Europe/Paris,,OIF, +OIF:SP:23:187,1,"Les Cottages",48.867493,1.971111,0,0,OIF:SA:21:256,Europe/Paris,,OIF, +OIF:SP:23:188,1,"Les Cottages",48.867528,1.970907,0,0,OIF:SA:21:256,Europe/Paris,,OIF, +OIF:SP:23:19,1,"Désavis",48.980186,2.055276,0,0,OIF:SA:23:18,Europe/Paris,,OIF, +OIF:SP:23:190,1,"Place des Fêtes",48.877261,1.979341,0,0,OIF:SA:21:264,Europe/Paris,,OIF, +OIF:SP:23:191,1,"Place des Fêtes",48.877205,1.978959,0,0,OIF:SA:21:264,Europe/Paris,,OIF, +OIF:SP:23:192,1,"Grasse Village",48.866031,1.974854,0,0,OIF:SA:21:258,Europe/Paris,,OIF, +OIF:SP:23:193,1,"Grasse Village",48.865851,1.974747,0,0,OIF:SA:21:258,Europe/Paris,,OIF, +OIF:SP:23:194,1,"Mairie",48.873963,1.973736,0,0,OIF:SA:21:261,Europe/Paris,,OIF, +OIF:SP:23:195,1,"Mairie",48.874305,1.973816,0,0,OIF:SA:21:261,Europe/Paris,,OIF, +OIF:SP:23:198,1,"Prés des Coulons",48.870354,1.971949,0,0,OIF:SA:21:266,Europe/Paris,,OIF, +OIF:SP:23:199,1,"Prés des Coulons",48.871001,1.971918,0,0,OIF:SA:21:266,Europe/Paris,,OIF, +OIF:SP:23:2,1,"Rue de Feucherolles",48.906976,2.022108,0,0,OIF:SA:23:2,Europe/Paris,,OIF, +OIF:SP:23:20,1,"Flore",48.964937,2.04459,0,0,OIF:SA:23:20,Europe/Paris,,OIF, +OIF:SP:23:202,1,"Gaillonet",49.025061,1.87299,0,0,OIF:SA:21:291,Europe/Paris,,OIF, +OIF:SP:23:203,1,"Gaillonet",49.024962,1.872855,0,0,OIF:SA:21:291,Europe/Paris,,OIF, +OIF:SP:23:204,1,"Mairie",48.988005,1.801142,0,0,OIF:SA:8741085,Europe/Paris,,OIF, +OIF:SP:23:205,1,"Mairie",48.987852,1.801103,0,0,OIF:SA:8741085,Europe/Paris,,OIF, +OIF:SP:23:206,1,"Gabriel Péri",48.974917,1.804308,0,0,OIF:SA:23:206,Europe/Paris,,OIF, +OIF:SP:23:207,1,"Gabriel Péri",48.975067,1.805754,0,0,OIF:SA:23:206,Europe/Paris,,OIF, +OIF:SP:23:208,1,"Moulin à Vent",48.988112,1.806944,0,0,OIF:SA:23:208,Europe/Paris,,OIF, +OIF:SP:23:209,1,"Moulin à Vent",48.987897,1.80696,0,0,OIF:SA:23:208,Europe/Paris,,OIF, +OIF:SP:23:21,1,"Flore",48.965134,2.044685,0,0,OIF:SA:23:20,Europe/Paris,,OIF, +OIF:SP:23:210,1,"Jean-Jaurès",48.974646,1.801977,0,0,OIF:SA:23:210,Europe/Paris,,OIF, +OIF:SP:23:211,1,"Jean-Jaurès",48.974632,1.80296,0,0,OIF:SA:23:210,Europe/Paris,,OIF, +OIF:SP:23:212,1,"Cacao Barry",49.005002,1.901363,0,0,OIF:SA:8738183,Europe/Paris,,OIF, +OIF:SP:23:213,1,"Cacao Barry",49.004894,1.901214,0,0,OIF:SA:8738183,Europe/Paris,,OIF, +OIF:SP:23:214,1,"L'Escale",49.001602,1.893129,0,0,OIF:SA:23:214,Europe/Paris,,OIF, +OIF:SP:23:215,1,"L'Escale",49.002483,1.895484,0,0,OIF:SA:23:214,Europe/Paris,,OIF, +OIF:SP:23:216,1,"Rue de Verdun",49.008256,1.899,0,0,OIF:SA:21:323,Europe/Paris,,OIF, +OIF:SP:23:217,1,"Rue de Verdun",49.008273,1.898863,0,0,OIF:SA:21:323,Europe/Paris,,OIF, +OIF:SP:23:218,1,"Grilles du Château",48.987887,1.796746,0,0,OIF:SA:23:218,Europe/Paris,,OIF, +OIF:SP:23:219,1,"Grilles du Château",48.987842,1.79676,0,0,OIF:SA:23:218,Europe/Paris,,OIF, +OIF:SP:23:22,1,"Foch",48.986748,2.063884,0,0,OIF:SA:23:22,Europe/Paris,,OIF, +OIF:SP:23:220,1,"Frileuse",48.982219,1.787617,0,0,OIF:SA:23:220,Europe/Paris,,OIF, +OIF:SP:23:221,1,"Frileuse",48.982228,1.787548,0,0,OIF:SA:23:220,Europe/Paris,,OIF, +OIF:SP:23:222,1,"Lavoir",48.987938,1.790287,0,0,OIF:SA:23:222,Europe/Paris,,OIF, +OIF:SP:23:223,1,"Lavoir",48.987911,1.79026,0,0,OIF:SA:23:222,Europe/Paris,,OIF, +OIF:SP:23:224,1,"Château",49.046346,1.851624,0,0,OIF:SA:23:224,Europe/Paris,,OIF, +OIF:SP:23:225,1,"Château",49.046446,1.851923,0,0,OIF:SA:23:224,Europe/Paris,,OIF, +OIF:SP:23:227,1,"Damply",49.039297,1.833538,0,0,OIF:SA:23:227,Europe/Paris,,OIF, +OIF:SP:23:228,1,"Mairie",49.046013,1.853718,0,0,OIF:SA:23:228,Europe/Paris,,OIF, +OIF:SP:23:229,1,"Mairie",49.045995,1.853705,0,0,OIF:SA:23:228,Europe/Paris,,OIF, +OIF:SP:23:23,1,"Foch",48.987738,2.064548,0,0,OIF:SA:23:22,Europe/Paris,,OIF, +OIF:SP:23:230,1,"Mairie de Montalet",49.053375,1.815846,0,0,OIF:SA:23:230,Europe/Paris,,OIF, +OIF:SP:23:231,1,"Mairie de Montalet",49.053375,1.815777,0,0,OIF:SA:23:230,Europe/Paris,,OIF, +OIF:SP:23:232,1,"Le Noyer",49.011111,2.03075,0,0,OIF:SA:23:232,Europe/Paris,,OIF, +OIF:SP:23:233,1,"Le Noyer",49.010681,2.031381,0,0,OIF:SA:23:232,Europe/Paris,,OIF, +OIF:SP:23:234,1,"Rond-Point Saint-Jacques",49.011051,2.054056,0,0,OIF:SA:23:234,Europe/Paris,,OIF, +OIF:SP:23:235,1,"Rond-Point Saint-Jacques",49.011303,2.053877,0,0,OIF:SA:23:234,Europe/Paris,,OIF, +OIF:SP:23:236,1,"Les Jouannes",49.010965,2.047896,0,0,OIF:SA:23:236,Europe/Paris,,OIF, +OIF:SP:23:237,1,"Les Jouannes",49.010866,2.048128,0,0,OIF:SA:23:236,Europe/Paris,,OIF, +OIF:SP:23:238,1,"Stade",49.010377,2.039129,0,0,OIF:SA:23:238,Europe/Paris,,OIF, +OIF:SP:23:239,1,"Stade",49.010343,2.039771,0,0,OIF:SA:23:238,Europe/Paris,,OIF, +OIF:SP:23:240,1,"Rue des Vignes",49.006493,2.057032,0,0,OIF:SA:23:240,Europe/Paris,,OIF, +OIF:SP:23:241,1,"Rue des Vignes",49.006502,2.056772,0,0,OIF:SA:23:240,Europe/Paris,,OIF, +OIF:SP:23:242,1,"La Carpe Qui Tête",48.989938,1.847291,0,0,OIF:SA:23:242,Europe/Paris,,OIF, +OIF:SP:23:243,1,"La Carpe Qui Tête",48.989875,1.847292,0,0,OIF:SA:23:242,Europe/Paris,,OIF, +OIF:SP:23:244,1,"Tilleuls",48.991903,1.859782,0,0,OIF:SA:23:244,Europe/Paris,,OIF, +OIF:SP:23:245,1,"Tilleuls",48.991748,1.859278,0,0,OIF:SA:23:244,Europe/Paris,,OIF, +OIF:SP:23:246,1,"Trois Cornets",48.989776,1.838526,0,0,OIF:SA:23:246,Europe/Paris,,OIF, +OIF:SP:23:247,1,"Trois Cornets",48.989684,1.842351,0,0,OIF:SA:23:246,Europe/Paris,,OIF, +OIF:SP:23:248,1,"École",49.058375,1.814578,0,0,OIF:SA:23:248,Europe/Paris,,OIF, +OIF:SP:23:249,1,"École",49.058347,1.81436,0,0,OIF:SA:23:248,Europe/Paris,,OIF, +OIF:SP:23:250,1,"Basses Meunières",48.993725,1.743138,0,0,OIF:SA:23:250,Europe/Paris,,OIF, +OIF:SP:23:251,1,"Basses Meunières",48.993761,1.743042,0,0,OIF:SA:23:250,Europe/Paris,,OIF, +OIF:SP:23:252,1,"Bois aux Moines",49.005228,1.732419,0,0,OIF:SA:23:252,Europe/Paris,,OIF, +OIF:SP:23:253,1,"Bas Caillois",48.995099,1.742903,0,0,OIF:SA:23:253,Europe/Paris,,OIF, +OIF:SP:23:254,1,"Bas Caillois",48.995036,1.742877,0,0,OIF:SA:23:253,Europe/Paris,,OIF, +OIF:SP:23:255,1,"Hauts Célestins",49.003743,1.733789,0,0,OIF:SA:23:255,Europe/Paris,,OIF, +OIF:SP:23:256,1,"Croms",48.999525,1.741978,0,0,OIF:SA:23:256,Europe/Paris,,OIF, +OIF:SP:23:257,1,"Croms",48.999524,1.741855,0,0,OIF:SA:23:256,Europe/Paris,,OIF, +OIF:SP:23:258,1,"Edouard Fosse",49.004768,1.737342,0,0,OIF:SA:23:258,Europe/Paris,,OIF, +OIF:SP:23:259,1,"Edouard Fosse",49.004705,1.737302,0,0,OIF:SA:23:258,Europe/Paris,,OIF, +OIF:SP:23:26,1,"Foch Galliéni",48.989538,2.065754,0,0,OIF:SA:23:26,Europe/Paris,,OIF, +OIF:SP:23:260,1,"Fosses Rouge",49.005722,1.734217,0,0,OIF:SA:23:260,Europe/Paris,,OIF, +OIF:SP:23:261,1,"Gare de Limay",48.984066,1.747044,0,0,OIF:SA:8738158,Europe/Paris,,OIF, +OIF:SP:23:262,1,"Gare de Limay",48.983949,1.746991,0,0,OIF:SA:8738158,Europe/Paris,,OIF, +OIF:SP:23:263,1,"Hauts de Limay",49.003873,1.739907,0,0,OIF:SA:23:263,Europe/Paris,,OIF, +OIF:SP:23:264,1,"Centre Commercial",48.990953,1.756935,0,0,OIF:SA:23:264,Europe/Paris,,OIF, +OIF:SP:23:265,1,"Centre Commercial",48.990863,1.756922,0,0,OIF:SA:23:264,Europe/Paris,,OIF, +OIF:SP:23:266,1,"Jean Macé",48.99624,1.741156,0,0,OIF:SA:23:266,Europe/Paris,,OIF, +OIF:SP:23:267,1,"Jean Macé",48.996312,1.740991,0,0,OIF:SA:23:266,Europe/Paris,,OIF, +OIF:SP:23:268,1,"Hôtel de Ville",48.99289,1.734366,0,0,OIF:SA:23:268,Europe/Paris,,OIF, +OIF:SP:23:269,1,"Hôtel de Ville",48.992845,1.734353,0,0,OIF:SA:23:268,Europe/Paris,,OIF, +OIF:SP:23:27,1,"Foch Galliéni",48.989709,2.06593,0,0,OIF:SA:23:26,Europe/Paris,,OIF, +OIF:SP:23:270,1,"Pont de Limay",48.993604,1.726341,0,0,OIF:SA:23:270,Europe/Paris,,OIF, +OIF:SP:23:271,1,"Pont de Limay",48.993488,1.726425,0,0,OIF:SA:23:270,Europe/Paris,,OIF, +OIF:SP:23:272,1,"Le Port Autonome",48.981293,1.753288,0,0,OIF:SA:23:272,Europe/Paris,,OIF, +OIF:SP:23:273,1,"Le Port Autonome",48.981149,1.753249,0,0,OIF:SA:23:272,Europe/Paris,,OIF, +OIF:SP:23:274,1,"Pôle Lafarge",48.988996,1.748244,0,0,OIF:SA:23:274,Europe/Paris,,OIF, +OIF:SP:23:275,1,"Résidence Wilson",48.989526,1.739007,0,0,OIF:SA:23:275,Europe/Paris,,OIF, +OIF:SP:23:276,1,"Résidence Wilson",48.989481,1.73898,0,0,OIF:SA:23:275,Europe/Paris,,OIF, +OIF:SP:23:28,1,"Les Garennes",48.96767,2.045025,0,0,OIF:SA:23:28,Europe/Paris,,OIF, +OIF:SP:23:285,1,"Ancienne Gare",48.997671,2.065752,0,0,OIF:SA:23:285,Europe/Paris,,OIF, +OIF:SP:23:286,1,"Ancienne Gare",48.997634,2.065479,0,0,OIF:SA:23:285,Europe/Paris,,OIF, +OIF:SP:23:287,1,"Berteaux",48.996904,2.064513,0,0,OIF:SA:23:287,Europe/Paris,,OIF, +OIF:SP:23:288,1,"Rue de Choisy",48.997331,2.066614,0,0,OIF:SA:23:288,Europe/Paris,,OIF, +OIF:SP:23:289,1,"Clos du Roy",48.994015,2.066358,0,0,OIF:SA:23:289,Europe/Paris,,OIF, +OIF:SP:23:29,1,"Les Garennes",48.967536,2.045367,0,0,OIF:SA:23:28,Europe/Paris,,OIF, +OIF:SP:23:290,1,"Clos du Roy",48.993503,2.06647,0,0,OIF:SA:23:289,Europe/Paris,,OIF, +OIF:SP:23:291,1,"Grand Choisy",49.001769,2.065744,0,0,OIF:SA:23:291,Europe/Paris,,OIF, +OIF:SP:23:292,1,"Julia",48.999241,2.060718,0,0,OIF:SA:23:1148,Europe/Paris,,OIF, +OIF:SP:23:294,1,"Viaduc",48.990924,2.066661,0,0,OIF:SA:23:294,Europe/Paris,,OIF, +OIF:SP:23:295,1,"Viaduc",48.991068,2.066701,0,0,OIF:SA:23:294,Europe/Paris,,OIF, +OIF:SP:23:3,1,"Rue de Feucherolles",48.906842,2.022096,0,0,OIF:SA:23:2,Europe/Paris,,OIF, +OIF:SP:23:30,1,"Rue de l'Hautil",48.983901,2.056744,0,0,OIF:SA:23:30,Europe/Paris,,OIF, +OIF:SP:23:308,1,"Arquebuse",49.004264,1.910849,0,0,OIF:SA:8741071,Europe/Paris,,OIF, +OIF:SP:23:309,1,"La Poste",49.004483,1.909345,0,0,OIF:SA:21:378,Europe/Paris,,OIF, +OIF:SP:23:31,1,"Leclerc",48.976175,2.054206,0,0,OIF:SA:23:31,Europe/Paris,,OIF, +OIF:SP:23:310,1,"Rue de la Ferme",49.011584,1.917428,0,0,OIF:SA:21:23,Europe/Paris,,OIF, +OIF:SP:23:313,1,"Henri 4",49.01358,1.922781,0,0,OIF:SA:23:313,Europe/Paris,,OIF, +OIF:SP:23:314,1,"Henri 4",49.013391,1.922742,0,0,OIF:SA:23:313,Europe/Paris,,OIF, +OIF:SP:23:315,1,"Boulevard Thiers",49.006666,1.921921,0,0,OIF:SA:8738182,Europe/Paris,,OIF, +OIF:SP:23:316,1,"Boulevard Thiers",49.00655,1.922127,0,0,OIF:SA:8738182,Europe/Paris,,OIF, +OIF:SP:23:317,1,"Thun Saint-Louis",49.008367,1.930322,0,0,OIF:SA:21:148,Europe/Paris,,OIF, +OIF:SP:23:318,1,"Thun Saint-Louis",49.008387,1.93106,0,0,OIF:SA:21:148,Europe/Paris,,OIF, +OIF:SP:23:319,1,"Le Beau Site",48.999549,1.887123,0,0,OIF:SA:23:319,Europe/Paris,,OIF, +OIF:SP:23:32,1,"Mairie",48.981223,2.060623,0,0,OIF:SA:23:32,Europe/Paris,,OIF, +OIF:SP:23:320,1,"Le Beau Site",48.99944,1.886974,0,0,OIF:SA:23:319,Europe/Paris,,OIF, +OIF:SP:23:321,1,"Les Sources",48.995935,1.875109,0,0,OIF:SA:23:321,Europe/Paris,,OIF, +OIF:SP:23:322,1,"Les Sources",48.996319,1.876676,0,0,OIF:SA:23:321,Europe/Paris,,OIF, +OIF:SP:23:323,1,"Gare Paul Delouvrier",48.788048,2.044893,0,0,OIF:SA:8739384,Europe/Paris,,OIF, +OIF:SP:23:324,1,"Bénainvilliers Grande Rue",48.926254,1.943569,0,0,OIF:SA:23:324,Europe/Paris,,OIF, +OIF:SP:23:325,1,"Bénainvilliers Grande Rue",48.926282,1.943855,0,0,OIF:SA:23:324,Europe/Paris,,OIF, +OIF:SP:23:326,1,"La Cendrière",48.926811,1.938205,0,0,OIF:SA:23:326,Europe/Paris,,OIF, +OIF:SP:23:327,1,"La Cendrière",48.926687,1.938465,0,0,OIF:SA:23:326,Europe/Paris,,OIF, +OIF:SP:23:328,1,"Château",48.94156,1.963535,0,0,OIF:SA:23:328,Europe/Paris,,OIF, +OIF:SP:23:329,1,"Château",48.941551,1.963562,0,0,OIF:SA:23:328,Europe/Paris,,OIF, +OIF:SP:23:33,1,"Mairie",48.981331,2.060786,0,0,OIF:SA:23:32,Europe/Paris,,OIF, +OIF:SP:23:330,1,"Croix Paquet",48.926299,1.946215,0,0,OIF:SA:23:330,Europe/Paris,,OIF, +OIF:SP:23:331,1,"Croix Paquet",48.926103,1.946789,0,0,OIF:SA:23:330,Europe/Paris,,OIF, +OIF:SP:23:336,1,"Vallée Maria",48.935418,1.948178,0,0,OIF:SA:23:336,Europe/Paris,,OIF, +OIF:SP:23:337,1,"Vallée Maria",48.935662,1.948545,0,0,OIF:SA:23:336,Europe/Paris,,OIF, +OIF:SP:23:338,1,"Épinettes",48.940385,1.958591,0,0,OIF:SA:23:338,Europe/Paris,,OIF, +OIF:SP:23:339,1,"Rue du Moulle",48.93024,1.939474,0,0,OIF:SA:23:339,Europe/Paris,,OIF, +OIF:SP:23:340,1,"Rue du Moulle",48.92978,1.939,0,0,OIF:SA:23:339,Europe/Paris,,OIF, +OIF:SP:23:343,1,"Médiathèque",48.989256,1.913185,0,0,OIF:SA:21:465,Europe/Paris,,OIF, +OIF:SP:23:344,1,"Médiathèque",48.989075,1.912982,0,0,OIF:SA:21:465,Europe/Paris,,OIF, +OIF:SP:23:345,1,"Chamoiserie",48.972091,1.918376,0,0,OIF:SA:23:345,Europe/Paris,,OIF, +OIF:SP:23:346,1,"Comtesse RD43",48.974271,1.917103,0,0,OIF:SA:23:346,Europe/Paris,,OIF, +OIF:SP:23:347,1,"Gare des Mureaux",48.993073,1.912662,0,0,OIF:SA:8738668,Europe/Paris,,OIF, +OIF:SP:23:348,1,"Centre Commercial Espace",48.979595,1.913196,0,0,OIF:SA:21:471,Europe/Paris,,OIF, +OIF:SP:23:349,1,"Centre Ccial Espace",48.97981,1.913003,0,0,OIF:SA:21:471,Europe/Paris,,OIF, +OIF:SP:23:350,1,"Les Sablons",48.97713,1.914922,0,0,OIF:SA:8798751,Europe/Paris,,OIF, +OIF:SP:23:351,1,"Les Sablons",48.97695,1.914842,0,0,OIF:SA:8798751,Europe/Paris,,OIF, +OIF:SP:23:355,1,"Novotel",48.924094,1.99496,0,0,OIF:SA:23:355,Europe/Paris,,OIF, +OIF:SP:23:356,1,"Novotel (Pont à 13)",48.925215,1.99723,0,0,OIF:SA:23:356,Europe/Paris,,OIF, +OIF:SP:23:357,1,"La Chapelle",48.91855,1.989174,0,0,OIF:SA:23:357,Europe/Paris,,OIF, +OIF:SP:23:358,1,"La Chapelle",48.918513,1.98871,0,0,OIF:SA:23:357,Europe/Paris,,OIF, +OIF:SP:23:359,1,"Conforama",48.926552,1.987361,0,0,OIF:SA:21:404,Europe/Paris,,OIF, +OIF:SP:23:36,1,"Jean Monnet",48.975761,2.053771,0,0,OIF:SA:23:36,Europe/Paris,,OIF, +OIF:SP:23:360,1,"Auberge Sans Nom",48.923667,1.975051,0,0,OIF:SA:23:360,Europe/Paris,,OIF, +OIF:SP:23:361,1,"Auberge Sans Nom",48.923271,1.975041,0,0,OIF:SA:23:360,Europe/Paris,,OIF, +OIF:SP:23:362,1,"Les Briochets",48.923251,1.995538,0,0,OIF:SA:23:362,Europe/Paris,,OIF, +OIF:SP:23:363,1,"Les Briochets",48.923242,1.995457,0,0,OIF:SA:23:362,Europe/Paris,,OIF, +OIF:SP:23:365,1,"Frédéric Chartier",48.920317,1.969988,0,0,OIF:SA:21:400,Europe/Paris,,OIF, +OIF:SP:23:366,1,"Frédéric Chartier",48.920344,1.970043,0,0,OIF:SA:21:400,Europe/Paris,,OIF, +OIF:SP:23:367,1,"Église",48.919583,1.976689,0,0,OIF:SA:23:367,Europe/Paris,,OIF, +OIF:SP:23:368,1,"Église",48.919484,1.976785,0,0,OIF:SA:23:367,Europe/Paris,,OIF, +OIF:SP:23:369,1,"40 sous",48.929731,1.977478,0,0,OIF:SA:23:369,Europe/Paris,,OIF, +OIF:SP:23:37,1,"Foch Pasteur",48.987592,2.063647,0,0,OIF:SA:23:37,Europe/Paris,,OIF, +OIF:SP:23:370,1,"Maison Blanche",48.93047,1.975195,0,0,OIF:SA:23:370,Europe/Paris,,OIF, +OIF:SP:23:371,1,"Maison Blanche",48.930736,1.973843,0,0,OIF:SA:23:370,Europe/Paris,,OIF, +OIF:SP:23:372,1,"Maurer",48.917057,1.970789,0,0,OIF:SA:23:372,Europe/Paris,,OIF, +OIF:SP:23:373,1,"Maurer",48.916851,1.970804,0,0,OIF:SA:23:372,Europe/Paris,,OIF, +OIF:SP:23:374,1,"Mdi",48.928974,1.979584,0,0,OIF:SA:23:374,Europe/Paris,,OIF, +OIF:SP:23:375,1,"Orme Gauthier",48.918417,1.968665,0,0,OIF:SA:23:375,Europe/Paris,,OIF, +OIF:SP:23:376,1,"Orme Gauthier",48.918372,1.968638,0,0,OIF:SA:23:375,Europe/Paris,,OIF, +OIF:SP:23:377,1,"Pasteur Cd 113",48.927834,1.983192,0,0,OIF:SA:23:377,Europe/Paris,,OIF, +OIF:SP:23:378,1,"Poiriers",48.922242,1.970629,0,0,OIF:SA:23:378,Europe/Paris,,OIF, +OIF:SP:23:379,1,"Poiriers",48.922188,1.970548,0,0,OIF:SA:23:378,Europe/Paris,,OIF, +OIF:SP:23:38,1,"Foch Pasteur",48.987458,2.063989,0,0,OIF:SA:23:37,Europe/Paris,,OIF, +OIF:SP:23:382,1,"Toys'R'Us",48.927221,1.985692,0,0,OIF:SA:21:600,Europe/Paris,,OIF, +OIF:SP:23:383,1,"Tressancourt",48.918625,1.984155,0,0,OIF:SA:23:383,Europe/Paris,,OIF, +OIF:SP:23:384,1,"Tressancourt",48.918527,1.984333,0,0,OIF:SA:23:383,Europe/Paris,,OIF, +OIF:SP:23:385,1,"Art de Vivre",48.925423,1.991542,0,0,OIF:SA:21:402,Europe/Paris,,OIF, +OIF:SP:23:386,1,"Art de Vivre",48.925235,1.991611,0,0,OIF:SA:21:402,Europe/Paris,,OIF, +OIF:SP:23:387,1,"Ferme de Montamets",48.923523,1.963487,0,0,OIF:SA:23:387,Europe/Paris,,OIF, +OIF:SP:23:388,1,"Ferme de Montamets",48.923665,1.962982,0,0,OIF:SA:23:387,Europe/Paris,,OIF, +OIF:SP:23:39,1,"Place du 8 Mai",48.978547,2.057715,0,0,OIF:SA:23:39,Europe/Paris,,OIF, +OIF:SP:23:391,1,"8 Mai - Hôpital Charcot",48.82462,1.945075,0,0,OIF:SA:23:391,Europe/Paris,,OIF, +OIF:SP:23:392,1,"8 Mai - Hôpital Charcot",48.824215,1.944969,0,0,OIF:SA:23:391,Europe/Paris,,OIF, +OIF:SP:23:393,1,"La Bataille",48.802877,1.975798,0,0,OIF:SA:23:393,Europe/Paris,,OIF, +OIF:SP:23:394,1,"La Bataille",48.803341,1.97487,0,0,OIF:SA:23:393,Europe/Paris,,OIF, +OIF:SP:23:395,1,"Gare de Plaisir Grigon",48.831511,1.944342,0,0,OIF:SA:8739342,Europe/Paris,,OIF, +OIF:SP:23:396,1,"Gare de Plaisir Grigon",48.831377,1.94452,0,0,OIF:SA:8739342,Europe/Paris,,OIF, +OIF:SP:23:397,1,"Pablo Picasso",48.802962,1.965471,0,0,OIF:SA:23:397,Europe/Paris,,OIF, +OIF:SP:23:399,1,"René Bazin",48.820583,1.944452,0,0,OIF:SA:23:399,Europe/Paris,,OIF, +OIF:SP:23:4,1,"Abreuvoir",48.903341,2.020399,0,0,OIF:SA:15:139,Europe/Paris,,OIF, +OIF:SP:23:40,1,"Place du 8 Mai",48.978439,2.057702,0,0,OIF:SA:23:39,Europe/Paris,,OIF, +OIF:SP:23:400,1,"René Bazin",48.820196,1.944346,0,0,OIF:SA:23:399,Europe/Paris,,OIF, +OIF:SP:23:401,1,"Abel Guyet",48.82801,1.945471,0,0,OIF:SA:23:401,Europe/Paris,,OIF, +OIF:SP:23:402,1,"Abel Guyet",48.82827,1.945455,0,0,OIF:SA:23:401,Europe/Paris,,OIF, +OIF:SP:23:403,1,"Jonchère",48.815301,1.945594,0,0,OIF:SA:23:403,Europe/Paris,,OIF, +OIF:SP:23:404,1,"Jonchère",48.815265,1.945553,0,0,OIF:SA:23:403,Europe/Paris,,OIF, +OIF:SP:23:405,1,"Marché",48.818128,1.944144,0,0,OIF:SA:23:405,Europe/Paris,,OIF, +OIF:SP:23:406,1,"Marché",48.818595,1.943977,0,0,OIF:SA:23:405,Europe/Paris,,OIF, +OIF:SP:23:407,1,"Pressoir",48.805353,1.954133,0,0,OIF:SA:23:407,Europe/Paris,,OIF, +OIF:SP:23:408,1,"Zone Industrielle les Gâtines",48.800686,1.982589,0,0,OIF:SA:23:408,Europe/Paris,,OIF, +OIF:SP:23:409,1,"Ernest Lavisse",48.926419,2.052173,0,0,OIF:SA:23:409,Europe/Paris,,OIF, +OIF:SP:23:41,1,"Ponceau",48.97171,2.047146,0,0,OIF:SA:23:41,Europe/Paris,,OIF, +OIF:SP:23:411,1,"Maryse Bastié",48.928368,2.055244,0,0,OIF:SA:23:1145,Europe/Paris,,OIF, +OIF:SP:23:412,1,"Bussy",48.92234,2.037725,0,0,OIF:SA:23:412,Europe/Paris,,OIF, +OIF:SP:23:413,1,"Bussy",48.922193,2.036758,0,0,OIF:SA:23:412,Europe/Paris,,OIF, +OIF:SP:23:414,1,"Blanche de Castille",48.925259,2.033713,0,0,OIF:SA:23:414,Europe/Paris,,OIF, +OIF:SP:23:415,1,"Blanche de Castille",48.925213,2.033358,0,0,OIF:SA:23:414,Europe/Paris,,OIF, +OIF:SP:23:416,1,"Centre des Impôts",48.920509,2.038854,0,0,OIF:SA:15:251,Europe/Paris,,OIF, +OIF:SP:23:417,1,"Centre des Impôts",48.919988,2.038925,0,0,OIF:SA:15:251,Europe/Paris,,OIF, +OIF:SP:23:418,1,"Le Cep",48.929071,2.041301,0,0,OIF:SA:15:249,Europe/Paris,,OIF, +OIF:SP:23:419,1,"Le Cep",48.9289,2.041302,0,0,OIF:SA:15:249,Europe/Paris,,OIF, +OIF:SP:23:42,1,"Ponceau",48.97098,2.04659,0,0,OIF:SA:23:41,Europe/Paris,,OIF, +OIF:SP:23:420,1,"Marcel Cerdan",48.918104,2.026186,0,0,OIF:SA:23:420,Europe/Paris,,OIF, +OIF:SP:23:421,1,"Marcel Cerdan",48.917988,2.026541,0,0,OIF:SA:23:420,Europe/Paris,,OIF, +OIF:SP:23:422,1,"Grands Champs",48.91938,2.026069,0,0,OIF:SA:23:422,Europe/Paris,,OIF, +OIF:SP:23:423,1,"Grands Champs",48.919417,2.026356,0,0,OIF:SA:23:422,Europe/Paris,,OIF, +OIF:SP:23:424,1,"Château Maurice Clerc",48.919952,2.01787,0,0,OIF:SA:23:424,Europe/Paris,,OIF, +OIF:SP:23:426,1,"Cimetière",48.926741,2.040223,0,0,OIF:SA:15:554,Europe/Paris,,OIF, +OIF:SP:23:427,1,"Cimetière",48.926669,2.04021,0,0,OIF:SA:15:554,Europe/Paris,,OIF, +OIF:SP:23:428,1,"Commissariat",48.927118,2.043863,0,0,OIF:SA:20:180,Europe/Paris,,OIF, +OIF:SP:23:429,1,"Commissariat",48.926976,2.044382,0,0,OIF:SA:20:180,Europe/Paris,,OIF, +OIF:SP:23:43,1,"Quercy",48.991583,2.052333,0,0,OIF:SA:23:43,Europe/Paris,,OIF, +OIF:SP:23:430,1,"Foch Constanti",48.930743,2.052422,0,0,OIF:SA:20:650,Europe/Paris,,OIF, +OIF:SP:23:431,1,"Corneille",48.92041,2.035173,0,0,OIF:SA:23:431,Europe/Paris,,OIF, +OIF:SP:23:432,1,"Corneille",48.920131,2.035202,0,0,OIF:SA:23:431,Europe/Paris,,OIF, +OIF:SP:23:433,1,"La Coudraie",48.918538,2.013638,0,0,OIF:SA:23:1130,Europe/Paris,,OIF, +OIF:SP:23:434,1,"La Part Dieu",48.922314,2.024143,0,0,OIF:SA:23:434,Europe/Paris,,OIF, +OIF:SP:23:435,1,"Champ Gaillard",48.921372,2.021489,0,0,OIF:SA:21:608,Europe/Paris,,OIF, +OIF:SP:23:436,1,"Champ Gaillard",48.921481,2.02187,0,0,OIF:SA:21:608,Europe/Paris,,OIF, +OIF:SP:23:439,1,"Hélistation",48.946692,2.066919,0,0,OIF:SA:20:382,Europe/Paris,,OIF, +OIF:SP:23:440,1,"Hôpital",48.91772,2.023652,0,0,OIF:SA:20:179,Europe/Paris,,OIF, +OIF:SP:23:441,1,"Hôpital",48.917829,2.023951,0,0,OIF:SA:20:179,Europe/Paris,,OIF, +OIF:SP:23:442,1,"Hôpital",48.917908,2.023283,0,0,OIF:SA:20:179,Europe/Paris,,OIF, +OIF:SP:23:443,1,"Victor Hugo",48.92882,2.045271,0,0,OIF:SA:23:443,Europe/Paris,,OIF, +OIF:SP:23:444,1,"F.Lefebvre",48.925131,2.050966,0,0,OIF:SA:20:182,Europe/Paris,,OIF, +OIF:SP:23:445,1,"F.Lefebvre",48.925032,2.05098,0,0,OIF:SA:20:182,Europe/Paris,,OIF, +OIF:SP:23:447,1,"Chambre d'Industrie et du Commerce",48.947902,2.065521,0,0,OIF:SA:20:383,Europe/Paris,,OIF, +OIF:SP:23:449,1,"Lycée le Corbusier",48.923555,2.027831,0,0,OIF:SA:20:178,Europe/Paris,,OIF, +OIF:SP:23:45,1,"Valois Robaresses",48.989556,2.057984,0,0,OIF:SA:23:45,Europe/Paris,,OIF, +OIF:SP:23:450,1,"La Maladrerie",48.913809,2.023035,0,0,OIF:SA:23:450,Europe/Paris,,OIF, +OIF:SP:23:451,1,"La Maladrerie",48.913459,2.023132,0,0,OIF:SA:23:450,Europe/Paris,,OIF, +OIF:SP:23:453,1,"Charles Edouard Jeanneret",48.945104,2.064008,0,0,OIF:SA:20:381,Europe/Paris,,OIF, +OIF:SP:23:454,1,"Jean Moulin",48.917922,2.039469,0,0,OIF:SA:15:552,Europe/Paris,,OIF, +OIF:SP:23:455,1,"Jean Moulin",48.917123,2.039556,0,0,OIF:SA:15:552,Europe/Paris,,OIF, +OIF:SP:23:456,1,"Notre-Dame",48.926129,2.036653,0,0,OIF:SA:15:348,Europe/Paris,,OIF, +OIF:SP:23:457,1,"Notre-Dame",48.926285,2.037566,0,0,OIF:SA:15:348,Europe/Paris,,OIF, +OIF:SP:23:458,1,"Villa Savoye",48.92454,2.030212,0,0,OIF:SA:23:458,Europe/Paris,,OIF, +OIF:SP:23:459,1,"Villa Savoye",48.924378,2.030063,0,0,OIF:SA:23:458,Europe/Paris,,OIF, +OIF:SP:23:46,1,"Valois Robaresses",48.989493,2.057861,0,0,OIF:SA:23:45,Europe/Paris,,OIF, +OIF:SP:23:460,1,"Rue au Pain",48.930504,2.039342,0,0,OIF:SA:23:460,Europe/Paris,,OIF, +OIF:SP:23:461,1,"Péguy",48.926306,2.049827,0,0,OIF:SA:23:461,Europe/Paris,,OIF, +OIF:SP:23:462,1,"Péguy",48.926243,2.049978,0,0,OIF:SA:23:461,Europe/Paris,,OIF, +OIF:SP:23:463,1,"Perret",48.93372,2.049732,0,0,OIF:SA:23:463,Europe/Paris,,OIF, +OIF:SP:23:464,1,"Perret",48.933818,2.049554,0,0,OIF:SA:23:463,Europe/Paris,,OIF, +OIF:SP:23:465,1,"Peugeot",48.939027,2.047997,0,0,OIF:SA:21:618,Europe/Paris,,OIF, +OIF:SP:23:466,1,"Rond-Point",48.949564,2.061255,0,0,OIF:SA:23:466,Europe/Paris,,OIF, +OIF:SP:23:468,1,"Racine",48.921469,2.027775,0,0,OIF:SA:23:468,Europe/Paris,,OIF, +OIF:SP:23:469,1,"Racine",48.921371,2.027912,0,0,OIF:SA:23:468,Europe/Paris,,OIF, +OIF:SP:23:47,1,"Vermandois",48.988752,2.052348,0,0,OIF:SA:23:47,Europe/Paris,,OIF, +OIF:SP:23:470,1,"Rhin - Danube",48.922197,2.027662,0,0,OIF:SA:21:610,Europe/Paris,,OIF, +OIF:SP:23:471,1,"Ronsard",48.920714,2.031121,0,0,OIF:SA:23:471,Europe/Paris,,OIF, +OIF:SP:23:472,1,"Ronsard",48.920543,2.031108,0,0,OIF:SA:23:471,Europe/Paris,,OIF, +OIF:SP:23:475,1,"Centre de Secours",48.914563,2.022717,0,0,OIF:SA:23:475,Europe/Paris,,OIF, +OIF:SP:23:476,1,"Centre de Secours",48.914599,2.022621,0,0,OIF:SA:23:475,Europe/Paris,,OIF, +OIF:SP:23:477,1,"Square Diez",48.933518,2.05167,0,0,OIF:SA:23:477,Europe/Paris,,OIF, +OIF:SP:23:478,1,"Square Diez",48.933428,2.051547,0,0,OIF:SA:23:477,Europe/Paris,,OIF, +OIF:SP:23:479,1,"La Terrasse",48.923799,2.053783,0,0,OIF:SA:23:479,Europe/Paris,,OIF, +OIF:SP:23:48,1,"Gare",48.974772,2.050036,0,0,OIF:SA:8738149,Europe/Paris,,OIF, +OIF:SP:23:480,1,"Ursulines",48.928011,2.04143,0,0,OIF:SA:23:480,Europe/Paris,,OIF, +OIF:SP:23:481,1,"Montaigne",48.922127,2.024744,0,0,OIF:SA:23:481,Europe/Paris,,OIF, +OIF:SP:23:482,1,"Centrale",48.974488,1.76972,0,0,OIF:SA:23:482,Europe/Paris,,OIF, +OIF:SP:23:483,1,"Centrale",48.974327,1.76994,0,0,OIF:SA:23:482,Europe/Paris,,OIF, +OIF:SP:23:484,1,"Hôtel de Ville",48.972481,1.776799,0,0,OIF:SA:23:484,Europe/Paris,,OIF, +OIF:SP:23:485,1,"Hôtel de Ville",48.972248,1.776774,0,0,OIF:SA:23:484,Europe/Paris,,OIF, +OIF:SP:23:486,1,"Cité Tibaldi",48.974127,1.780931,0,0,OIF:SA:23:486,Europe/Paris,,OIF, +OIF:SP:23:487,1,"Cité Tibaldi",48.974154,1.780836,0,0,OIF:SA:23:486,Europe/Paris,,OIF, +OIF:SP:23:488,1,"Tennis",48.855624,2.019274,0,0,OIF:SA:23:1147,Europe/Paris,,OIF, +OIF:SP:23:489,1,"Tennis",48.855768,2.019355,0,0,OIF:SA:23:1147,Europe/Paris,,OIF, +OIF:SP:23:49,1,"Gare",48.974673,2.049969,0,0,OIF:SA:8738149,Europe/Paris,,OIF, +OIF:SP:23:490,1,"Castor Cerisaie",48.86672,2.021345,0,0,OIF:SA:21:663,Europe/Paris,,OIF, +OIF:SP:23:491,1,"Castor Cerisaie",48.866683,2.021059,0,0,OIF:SA:21:663,Europe/Paris,,OIF, +OIF:SP:23:492,1,"Clos Salibert",48.855102,2.022219,0,0,OIF:SA:21:664,Europe/Paris,,OIF, +OIF:SP:23:493,1,"Clos Salibert",48.854895,2.022438,0,0,OIF:SA:21:664,Europe/Paris,,OIF, +OIF:SP:23:494,1,"Gare de Saint-Nom la Bretêche",48.866839,2.05077,0,0,OIF:SA:8738248,Europe/Paris,,OIF, +OIF:SP:23:495,1,"Goudval",48.869368,2.016724,0,0,OIF:SA:21:885,Europe/Paris,,OIF, +OIF:SP:23:496,1,"Goudval",48.869215,2.016629,0,0,OIF:SA:21:885,Europe/Paris,,OIF, +OIF:SP:23:497,1,"Guitel Lecoq",48.864263,2.030487,0,0,OIF:SA:23:497,Europe/Paris,,OIF, +OIF:SP:23:498,1,"Guitel Lecoq",48.864174,2.030583,0,0,OIF:SA:23:497,Europe/Paris,,OIF, +OIF:SP:23:50,1,"Les Coutayes",48.975951,2.050467,0,0,OIF:SA:8738149,Europe/Paris,,OIF, +OIF:SP:23:502,1,"Grande Pièce",48.860774,2.029527,0,0,OIF:SA:23:502,Europe/Paris,,OIF, +OIF:SP:23:503,1,"Grande Pièce",48.860854,2.029349,0,0,OIF:SA:23:502,Europe/Paris,,OIF, +OIF:SP:23:504,1,"Square des Tilleuls",48.859509,2.027041,0,0,OIF:SA:23:504,Europe/Paris,,OIF, +OIF:SP:23:505,1,"Square des Tilleuls",48.859067,2.026526,0,0,OIF:SA:23:504,Europe/Paris,,OIF, +OIF:SP:23:506,1,"Buisson Sainte-Anne",48.860503,2.015512,0,0,OIF:SA:23:506,Europe/Paris,,OIF, +OIF:SP:23:507,1,"Buisson Sainte-Anne",48.86052,2.015266,0,0,OIF:SA:23:506,Europe/Paris,,OIF, +OIF:SP:23:508,1,"Val Martin",48.87127,2.008919,0,0,OIF:SA:21:673,Europe/Paris,,OIF, +OIF:SP:23:509,1,"Val Martin",48.871135,2.008838,0,0,OIF:SA:21:673,Europe/Paris,,OIF, +OIF:SP:23:510,1,"Vergers de la Ranchère",48.850936,2.017096,0,0,OIF:SA:23:510,Europe/Paris,,OIF, +OIF:SP:23:511,1,"Vergers de la Ranchère",48.850072,2.016748,0,0,OIF:SA:23:510,Europe/Paris,,OIF, +OIF:SP:23:512,1,"Grands Champs",48.857924,2.012218,0,0,OIF:SA:21:667,Europe/Paris,,OIF, +OIF:SP:23:513,1,"Grands Champs",48.857816,2.012082,0,0,OIF:SA:21:667,Europe/Paris,,OIF, +OIF:SP:23:514,1,"Hameau Saint-Martin",48.861884,2.014305,0,0,OIF:SA:21:662,Europe/Paris,,OIF, +OIF:SP:23:515,1,"Hameau Saint-Martin",48.861892,2.014087,0,0,OIF:SA:21:662,Europe/Paris,,OIF, +OIF:SP:23:516,1,"Centre Commercial",48.860123,2.021303,0,0,OIF:SA:23:516,Europe/Paris,,OIF, +OIF:SP:23:517,1,"Centre Commercial",48.860015,2.021277,0,0,OIF:SA:23:516,Europe/Paris,,OIF, +OIF:SP:23:518,1,"Orée de Saint-Nom",48.858688,2.015727,0,0,OIF:SA:21:672,Europe/Paris,,OIF, +OIF:SP:23:519,1,"Orée de Saint-Nom",48.858697,2.01555,0,0,OIF:SA:21:672,Europe/Paris,,OIF, +OIF:SP:23:522,1,"Maison des Associations",48.861555,2.025844,0,0,OIF:SA:23:522,Europe/Paris,,OIF, +OIF:SP:23:523,1,"Maison des Associations",48.861023,2.02518,0,0,OIF:SA:23:522,Europe/Paris,,OIF, +OIF:SP:23:524,1,"Pré Saint-Nom Nord",48.858631,2.024772,0,0,OIF:SA:23:524,Europe/Paris,,OIF, +OIF:SP:23:525,1,"Pré Saint-Nom Nord",48.858478,2.024623,0,0,OIF:SA:23:524,Europe/Paris,,OIF, +OIF:SP:23:526,1,"Pré Saint-Nom Sud",48.857391,2.021129,0,0,OIF:SA:21:1241,Europe/Paris,,OIF, +OIF:SP:23:527,1,"Pré Saint-Nom Sud",48.85748,2.020951,0,0,OIF:SA:21:1241,Europe/Paris,,OIF, +OIF:SP:23:5271,1,"Senette",48.936947,2.035458,0,0,OIF:SA:23:1097,Europe/Paris,,OIF, +OIF:SP:23:5272,1,"Ferme de 40 sous",48.915868,2.016682,0,0,OIF:SA:23:5272,Europe/Paris,,OIF, +OIF:SP:23:5273,1,"La Bidonnière",48.912211,2.010364,0,0,OIF:SA:23:5273,Europe/Paris,,OIF, +OIF:SP:23:5274,1,"Parc de Bèthemont",48.912364,2.000778,0,0,OIF:SA:23:5274,Europe/Paris,,OIF, +OIF:SP:23:5275,1,"Chapelle-Bois Fleuri",48.918219,1.992681,0,0,OIF:SA:23:5275,Europe/Paris,,OIF, +OIF:SP:23:5276,1,"Médiathèque",48.931937,2.040998,0,0,OIF:SA:23:5276,Europe/Paris,,OIF, +OIF:SP:23:5277,1,"Médiathèque",48.931937,2.040971,0,0,OIF:SA:23:5276,Europe/Paris,,OIF, +OIF:SP:23:5278,1,"Frères Rose",48.931186,2.042394,0,0,OIF:SA:23:5278,Europe/Paris,,OIF, +OIF:SP:23:528,1,"2 Croix",48.861024,2.018723,0,0,OIF:SA:23:528,Europe/Paris,,OIF, +OIF:SP:23:529,1,"2 Croix",48.860934,2.018656,0,0,OIF:SA:23:528,Europe/Paris,,OIF, +OIF:SP:23:530,1,"Jehan Alain",48.900814,2.087811,0,0,OIF:SA:15:113,Europe/Paris,,OIF, +OIF:SP:23:531,1,"Jehan Alain",48.90076,2.087784,0,0,OIF:SA:15:113,Europe/Paris,,OIF, +OIF:SP:23:532,1,"Alex Bertrand",48.889495,2.099082,0,0,OIF:SA:21:643,Europe/Paris,,OIF, +OIF:SP:23:533,1,"Alex Bertrand",48.889441,2.09915,0,0,OIF:SA:21:643,Europe/Paris,,OIF, +OIF:SP:23:536,1,"Centre Administratif",48.8999,2.084939,0,0,OIF:SA:15:184,Europe/Paris,,OIF, +OIF:SP:23:538,1,"L'Ermitage",48.887073,2.09679,0,0,OIF:SA:23:538,Europe/Paris,,OIF, +OIF:SP:23:539,1,"L'Ermitage",48.886958,2.09754,0,0,OIF:SA:23:538,Europe/Paris,,OIF, +OIF:SP:23:540,1,"Square Forest",48.901772,2.077705,0,0,OIF:SA:15:117,Europe/Paris,,OIF, +OIF:SP:23:541,1,"Gambetta",48.896881,2.098502,0,0,OIF:SA:15:450,Europe/Paris,,OIF, +OIF:SP:23:542,1,"Le Golf",48.919017,2.061132,0,0,OIF:SA:20:185,Europe/Paris,,OIF, +OIF:SP:23:543,1,"Le Golf",48.918945,2.060887,0,0,OIF:SA:20:185,Europe/Paris,,OIF, +OIF:SP:23:544,1,"Lycée Léonard de Vinci",48.892406,2.064899,0,0,OIF:SA:15:148,Europe/Paris,,OIF, +OIF:SP:23:545,1,"Pereire",48.901073,2.066366,0,0,OIF:SA:15:125,Europe/Paris,,OIF, +OIF:SP:23:546,1,"Pereire",48.901,2.065985,0,0,OIF:SA:15:125,Europe/Paris,,OIF, +OIF:SP:23:547,1,"RN190RN184",48.909962,2.074937,0,0,OIF:SA:23:547,Europe/Paris,,OIF, +OIF:SP:23:548,1,"RD190/RN184",48.909603,2.075089,0,0,OIF:SA:23:547,Europe/Paris,,OIF, +OIF:SP:23:549,1,"Lycée International",48.89726,2.061602,0,0,OIF:SA:15:351,Europe/Paris,,OIF, +OIF:SP:23:550,1,"Thiers",48.897191,2.095884,0,0,OIF:SA:15:447,Europe/Paris,,OIF, +OIF:SP:23:552,1,"Nicot",48.894302,2.077183,0,0,OIF:SA:15:210,Europe/Paris,,OIF, +OIF:SP:23:553,1,"Grande Ceinture",48.901427,2.071845,0,0,OIF:SA:23:553,Europe/Paris,,OIF, +OIF:SP:23:554,1,"RER",48.898815,2.094704,0,0,OIF:SA:8775809,Europe/Paris,,OIF, +OIF:SP:23:555,1,"Place Royale",48.894642,2.097749,0,0,OIF:SA:15:37,Europe/Paris,,OIF, +OIF:SP:23:556,1,"Place Vauban",48.903825,2.083638,0,0,OIF:SA:20:189,Europe/Paris,,OIF, +OIF:SP:23:557,1,"Place Vauban",48.903825,2.083584,0,0,OIF:SA:20:189,Europe/Paris,,OIF, +OIF:SP:23:561,1,"Gare de Triel-sur-Seine",48.981172,2.005314,0,0,OIF:SA:8738180,Europe/Paris,,OIF, +OIF:SP:23:562,1,"374 Rue Paul Doumer",48.991016,1.991035,0,0,OIF:SA:23:562,Europe/Paris,,OIF, +OIF:SP:23:563,1,"374 Rue Paul Doumer",48.991015,1.990708,0,0,OIF:SA:23:562,Europe/Paris,,OIF, +OIF:SP:23:564,1,"402 Rue Paul Doumer",48.993183,1.988099,0,0,OIF:SA:23:564,Europe/Paris,,OIF, +OIF:SP:23:565,1,"402 Rue Paul Doumer",48.993208,1.98773,0,0,OIF:SA:23:564,Europe/Paris,,OIF, +OIF:SP:23:566,1,"Jean Sébastien Bach",48.982273,2.017158,0,0,OIF:SA:23:566,Europe/Paris,,OIF, +OIF:SP:23:567,1,"Jean Sébastien Bach",48.982335,2.016735,0,0,OIF:SA:23:566,Europe/Paris,,OIF, +OIF:SP:23:568,1,"Le Banc",48.97126,2.008695,0,0,OIF:SA:23:568,Europe/Paris,,OIF, +OIF:SP:23:569,1,"Le Banc",48.971268,2.008435,0,0,OIF:SA:23:568,Europe/Paris,,OIF, +OIF:SP:23:570,1,"Bartok",48.982433,2.012911,0,0,OIF:SA:23:570,Europe/Paris,,OIF, +OIF:SP:23:571,1,"Bartok",48.982731,2.013387,0,0,OIF:SA:23:570,Europe/Paris,,OIF, +OIF:SP:23:572,1,"Les Chatelaînes",48.976014,2.015422,0,0,OIF:SA:23:1044,Europe/Paris,,OIF, +OIF:SP:23:573,1,"Les Chatelaînes",48.976587,2.014681,0,0,OIF:SA:23:1044,Europe/Paris,,OIF, +OIF:SP:23:574,1,"Cheverchemont",48.990158,2.00512,0,0,OIF:SA:23:574,Europe/Paris,,OIF, +OIF:SP:23:575,1,"Cheverchemont",48.989923,2.004862,0,0,OIF:SA:23:574,Europe/Paris,,OIF, +OIF:SP:23:576,1,"La Chapelle",49.001341,2.013148,0,0,OIF:SA:23:576,Europe/Paris,,OIF, +OIF:SP:23:577,1,"La Chapelle",49.001887,2.01242,0,0,OIF:SA:23:576,Europe/Paris,,OIF, +OIF:SP:23:578,1,"Cimetière",48.985506,2.003238,0,0,OIF:SA:23:578,Europe/Paris,,OIF, +OIF:SP:23:58,1,"3 Cèdres",48.945877,2.027207,0,0,OIF:SA:23:58,Europe/Paris,,OIF, +OIF:SP:23:580,1,"Cosec",48.975405,2.016286,0,0,OIF:SA:23:580,Europe/Paris,,OIF, +OIF:SP:23:581,1,"Cosec",48.975182,2.01667,0,0,OIF:SA:23:580,Europe/Paris,,OIF, +OIF:SP:23:582,1,"La Dauphinoise",48.997164,2.017216,0,0,OIF:SA:23:582,Europe/Paris,,OIF, +OIF:SP:23:583,1,"La Dauphinoise",48.997012,2.017299,0,0,OIF:SA:23:582,Europe/Paris,,OIF, +OIF:SP:23:584,1,"Ferme Joyeuse",48.986519,2.025611,0,0,OIF:SA:23:584,Europe/Paris,,OIF, +OIF:SP:23:585,1,"Ferme Joyeuse",48.986636,2.025529,0,0,OIF:SA:23:584,Europe/Paris,,OIF, +OIF:SP:23:586,1,"Forêt",48.978056,2.016242,0,0,OIF:SA:23:586,Europe/Paris,,OIF, +OIF:SP:23:587,1,"Forêt",48.978459,2.015557,0,0,OIF:SA:23:586,Europe/Paris,,OIF, +OIF:SP:23:588,1,"Les Garennes",48.969484,2.013415,0,0,OIF:SA:23:588,Europe/Paris,,OIF, +OIF:SP:23:589,1,"Les Garennes",48.969427,2.012337,0,0,OIF:SA:23:588,Europe/Paris,,OIF, +OIF:SP:23:59,1,"3 Cèdres",48.944575,2.027801,0,0,OIF:SA:23:58,Europe/Paris,,OIF, +OIF:SP:23:590,1,"Général Leclerc / l'Arche",48.986513,2.009595,0,0,OIF:SA:23:590,Europe/Paris,,OIF, +OIF:SP:23:591,1,"Général Leclerc/ l'Arche",48.986404,2.009432,0,0,OIF:SA:23:590,Europe/Paris,,OIF, +OIF:SP:23:592,1,"Le Garage",48.969278,2.010113,0,0,OIF:SA:23:592,Europe/Paris,,OIF, +OIF:SP:23:593,1,"Le Garage",48.969331,2.00984,0,0,OIF:SA:23:592,Europe/Paris,,OIF, +OIF:SP:23:594,1,"Hublins",48.982789,2.011721,0,0,OIF:SA:23:594,Europe/Paris,,OIF, +OIF:SP:23:595,1,"Hublins",48.982806,2.011366,0,0,OIF:SA:23:594,Europe/Paris,,OIF, +OIF:SP:23:596,1,"Impasse du Saule",48.988202,2.003262,0,0,OIF:SA:23:596,Europe/Paris,,OIF, +OIF:SP:23:597,1,"Jardins Nouveaux",48.98808,2.007741,0,0,OIF:SA:23:597,Europe/Paris,,OIF, +OIF:SP:23:598,1,"Jardins Nouveaux",48.987963,2.007674,0,0,OIF:SA:23:597,Europe/Paris,,OIF, +OIF:SP:23:60,1,"Trois Tours",48.941755,2.031911,0,0,OIF:SA:23:60,Europe/Paris,,OIF, +OIF:SP:23:600,1,"Lieutenant Lecomte",48.977095,2.0096,0,0,OIF:SA:23:600,Europe/Paris,,OIF, +OIF:SP:23:601,1,"Lieutenant Lecomte",48.977033,2.010228,0,0,OIF:SA:23:600,Europe/Paris,,OIF, +OIF:SP:23:603,1,"Place des Marronniers",48.984071,2.004094,0,0,OIF:SA:23:603,Europe/Paris,,OIF, +OIF:SP:23:604,1,"Place des Marronniers",48.983704,2.004765,0,0,OIF:SA:23:603,Europe/Paris,,OIF, +OIF:SP:23:605,1,"Chemin du Moulin",48.978032,2.013949,0,0,OIF:SA:23:605,Europe/Paris,,OIF, +OIF:SP:23:606,1,"Chemin du Moulin",48.977789,2.013787,0,0,OIF:SA:23:605,Europe/Paris,,OIF, +OIF:SP:23:607,1,"Rue du Pavillon",48.976322,2.006287,0,0,OIF:SA:23:607,Europe/Paris,,OIF, +OIF:SP:23:608,1,"Rue du Pavillon",48.976258,2.006097,0,0,OIF:SA:23:607,Europe/Paris,,OIF, +OIF:SP:23:609,1,"Petites Terres",48.987677,2.00489,0,0,OIF:SA:23:609,Europe/Paris,,OIF, +OIF:SP:23:61,1,"Trois Tours",48.941038,2.032652,0,0,OIF:SA:23:60,Europe/Paris,,OIF, +OIF:SP:23:610,1,"Les Bouveries",48.959411,2.017136,0,0,OIF:SA:23:610,Europe/Paris,,OIF, +OIF:SP:23:611,1,"Les Bouveries",48.959195,2.017014,0,0,OIF:SA:23:610,Europe/Paris,,OIF, +OIF:SP:23:614,1,"Le Routier",48.986728,1.996813,0,0,OIF:SA:23:614,Europe/Paris,,OIF, +OIF:SP:23:615,1,"Le Routier",48.986763,1.996417,0,0,OIF:SA:23:614,Europe/Paris,,OIF, +OIF:SP:23:616,1,"Place des Saussaies",48.979804,2.017761,0,0,OIF:SA:23:616,Europe/Paris,,OIF, +OIF:SP:23:617,1,"Place des Saussaies",48.979731,2.01731,0,0,OIF:SA:23:616,Europe/Paris,,OIF, +OIF:SP:23:618,1,"Senet",48.979398,2.004138,0,0,OIF:SA:23:618,Europe/Paris,,OIF, +OIF:SP:23:619,1,"Senet",48.979514,2.003878,0,0,OIF:SA:23:618,Europe/Paris,,OIF, +OIF:SP:23:62,1,"Ancienne Mairie",48.946066,2.038025,0,0,OIF:SA:23:62,Europe/Paris,,OIF, +OIF:SP:23:620,1,"Boris Vian",49.036201,2.017235,0,0,OIF:SA:23:620,Europe/Paris,,OIF, +OIF:SP:23:621,1,"Boris Vian",49.03612,2.017017,0,0,OIF:SA:23:620,Europe/Paris,,OIF, +OIF:SP:23:622,1,"La Croix Lieu",49.029359,2.022538,0,0,OIF:SA:23:622,Europe/Paris,,OIF, +OIF:SP:23:623,1,"La Croix Lieu",49.029367,2.022402,0,0,OIF:SA:23:622,Europe/Paris,,OIF, +OIF:SP:23:626,1,"La Marnière",49.024155,2.022515,0,0,OIF:SA:23:626,Europe/Paris,,OIF, +OIF:SP:23:627,1,"La Marnière",49.024182,2.022283,0,0,OIF:SA:23:626,Europe/Paris,,OIF, +OIF:SP:23:628,1,"Champeaux",49.006708,1.961562,0,0,OIF:SA:21:725,Europe/Paris,,OIF, +OIF:SP:23:629,1,"Champeaux",49.006661,1.961098,0,0,OIF:SA:21:725,Europe/Paris,,OIF, +OIF:SP:23:63,1,"Apollinaire",48.936969,2.019743,0,0,OIF:SA:23:63,Europe/Paris,,OIF, +OIF:SP:23:633,1,"Lyon Vert",49.00089,1.975153,0,0,OIF:SA:21:731,Europe/Paris,,OIF, +OIF:SP:23:634,1,"Lyon Vert",49.00088,1.97473,0,0,OIF:SA:21:731,Europe/Paris,,OIF, +OIF:SP:23:635,1,"Mairie",49.005664,1.964178,0,0,OIF:SA:21:733,Europe/Paris,,OIF, +OIF:SP:23:636,1,"Mairie",49.005753,1.963631,0,0,OIF:SA:21:733,Europe/Paris,,OIF, +OIF:SP:23:638,1,"Port Maron - Orpéa",48.995822,1.984229,0,0,OIF:SA:23:638,Europe/Paris,,OIF, +OIF:SP:23:639,1,"Le Temple",49.003268,1.970848,0,0,OIF:SA:21:735,Europe/Paris,,OIF, +OIF:SP:23:640,1,"Le Temple",49.003052,1.97089,0,0,OIF:SA:21:735,Europe/Paris,,OIF, +OIF:SP:23:641,1,"Europe",48.804818,2.129881,0,0,OIF:SA:23:1135,Europe/Paris,,OIF, +OIF:SP:23:643,1,"Place de la Loi",48.815009,2.129159,0,0,OIF:SA:15:273,Europe/Paris,,OIF, +OIF:SP:23:644,1,"Place de la Loi",48.815061,2.128533,0,0,OIF:SA:15:273,Europe/Paris,,OIF, +OIF:SP:23:647,1,"Haie Bergerie",48.827437,1.998891,0,0,OIF:SA:23:647,Europe/Paris,,OIF, +OIF:SP:23:648,1,"Haie Bergerie",48.827671,1.999162,0,0,OIF:SA:23:647,Europe/Paris,,OIF, +OIF:SP:23:65,1,"Centre Commercial",48.940609,2.019885,0,0,OIF:SA:23:65,Europe/Paris,,OIF, +OIF:SP:23:657,1,"Fontaine aux Dames",48.832776,2.00889,0,0,OIF:SA:23:657,Europe/Paris,,OIF, +OIF:SP:23:658,1,"Fontaine aux Dames",48.832741,2.00904,0,0,OIF:SA:23:657,Europe/Paris,,OIF, +OIF:SP:23:66,1,"Champfleury",48.951325,2.042184,0,0,OIF:SA:23:66,Europe/Paris,,OIF, +OIF:SP:23:67,1,"Champfleury",48.95047,2.04167,0,0,OIF:SA:23:66,Europe/Paris,,OIF, +OIF:SP:23:670,1,"Mairie",48.83059,2.004793,0,0,OIF:SA:23:670,Europe/Paris,,OIF, +OIF:SP:23:671,1,"Mairie",48.830554,2.004875,0,0,OIF:SA:23:670,Europe/Paris,,OIF, +OIF:SP:23:68,1,"Château d'Eau",48.944065,2.035704,0,0,OIF:SA:23:1007,Europe/Paris,,OIF, +OIF:SP:23:681,1,"Mimoun",48.830085,2.001161,0,0,OIF:SA:23:681,Europe/Paris,,OIF, +OIF:SP:23:682,1,"Mimoun",48.830086,2.001406,0,0,OIF:SA:23:681,Europe/Paris,,OIF, +OIF:SP:23:69,1,"Château d'Eau",48.944847,2.03574,0,0,OIF:SA:23:1007,Europe/Paris,,OIF, +OIF:SP:23:693,1,"Village",48.834004,2.011006,0,0,OIF:SA:23:693,Europe/Paris,,OIF, +OIF:SP:23:694,1,"Village",48.833852,2.011307,0,0,OIF:SA:23:693,Europe/Paris,,OIF, +OIF:SP:23:7,1,"Place du Château",48.902086,2.018403,0,0,OIF:SA:23:7,Europe/Paris,,OIF, +OIF:SP:23:70,1,"La Chapelle",48.939165,2.017711,0,0,OIF:SA:23:70,Europe/Paris,,OIF, +OIF:SP:23:71,1,"Cimetière",48.949158,2.038362,0,0,OIF:SA:23:71,Europe/Paris,,OIF, +OIF:SP:23:72,1,"Cimetière",48.949914,2.038671,0,0,OIF:SA:23:71,Europe/Paris,,OIF, +OIF:SP:23:74,1,"Claude Monet",48.946431,2.036604,0,0,OIF:SA:23:74,Europe/Paris,,OIF, +OIF:SP:23:75,1,"Claude Monet",48.9468,2.036697,0,0,OIF:SA:23:74,Europe/Paris,,OIF, +OIF:SP:23:76,1,"Les Côteaux",48.941896,2.038035,0,0,OIF:SA:23:76,Europe/Paris,,OIF, +OIF:SP:23:77,1,"Les Côteaux",48.941824,2.037831,0,0,OIF:SA:23:76,Europe/Paris,,OIF, +OIF:SP:23:78,1,"EDF",48.940196,2.034034,0,0,OIF:SA:23:78,Europe/Paris,,OIF, +OIF:SP:23:79,1,"Église",48.948247,2.0404,0,0,OIF:SA:23:79,Europe/Paris,,OIF, +OIF:SP:23:8,1,"Les Meuniers",48.901024,2.024312,0,0,OIF:SA:15:385,Europe/Paris,,OIF, +OIF:SP:23:80,1,"Esplanade",48.943167,2.028955,0,0,OIF:SA:23:80,Europe/Paris,,OIF, +OIF:SP:23:803,1,"Victor Hugo",48.886544,2.063853,0,0,OIF:SA:15:164,Europe/Paris,,OIF, +OIF:SP:23:804,1,"Croix Rouge",48.886665,2.06993,0,0,OIF:SA:15:162,Europe/Paris,,OIF, +OIF:SP:23:805,1,"Croix Rouge",48.8868,2.069943,0,0,OIF:SA:15:162,Europe/Paris,,OIF, +OIF:SP:23:807,1,"Le Golf",48.853395,2.036639,0,0,OIF:SA:23:807,Europe/Paris,,OIF, +OIF:SP:23:81,1,"Esplanade",48.942978,2.028957,0,0,OIF:SA:23:80,Europe/Paris,,OIF, +OIF:SP:23:811,1,"Tuilerie Bignon",48.852264,2.044476,0,0,OIF:SA:21:398,Europe/Paris,,OIF, +OIF:SP:23:812,1,"Tuilerie Bignon",48.852525,2.044516,0,0,OIF:SA:21:398,Europe/Paris,,OIF, +OIF:SP:23:813,1,"Tuilerie",48.850779,2.050845,0,0,OIF:SA:21:395,Europe/Paris,,OIF, +OIF:SP:23:814,1,"Tuilerie",48.851022,2.050952,0,0,OIF:SA:21:395,Europe/Paris,,OIF, +OIF:SP:23:815,1,"Hammeau Fleuri",48.845107,2.058175,0,0,OIF:SA:21:388,Europe/Paris,,OIF, +OIF:SP:23:819,1,"Rond-Point des Chênes",48.851037,2.06133,0,0,OIF:SA:21:397,Europe/Paris,,OIF, +OIF:SP:23:82,1,"La Fourche",48.956969,2.042452,0,0,OIF:SA:23:82,Europe/Paris,,OIF, +OIF:SP:23:820,1,"Forêt de Cruye",48.852898,2.053761,0,0,OIF:SA:21:384,Europe/Paris,,OIF, +OIF:SP:23:821,1,"Prés de Renneuil",48.848957,2.05558,0,0,OIF:SA:21:392,Europe/Paris,,OIF, +OIF:SP:23:825,1,"Mairie de Noisy",48.844088,2.064539,0,0,OIF:SA:21:390,Europe/Paris,,OIF, +OIF:SP:23:826,1,"Mairie de Noisy",48.844062,2.064662,0,0,OIF:SA:21:390,Europe/Paris,,OIF, +OIF:SP:23:827,1,"Centre Commercial",48.841571,2.071974,0,0,OIF:SA:21:381,Europe/Paris,,OIF, +OIF:SP:23:83,1,"La Fourche",48.956,2.042894,0,0,OIF:SA:23:82,Europe/Paris,,OIF, +OIF:SP:23:830,1,"Orée de Marly",48.841625,2.072232,0,0,OIF:SA:21:761,Europe/Paris,,OIF, +OIF:SP:23:831,1,"Gaillarderie",48.841572,2.072505,0,0,OIF:SA:21:385,Europe/Paris,,OIF, +OIF:SP:23:832,1,"Mairie de Bailly",48.84015,2.079728,0,0,OIF:SA:21:96,Europe/Paris,,OIF, +OIF:SP:23:833,1,"Mairie de Bailly",48.840213,2.079728,0,0,OIF:SA:21:96,Europe/Paris,,OIF, +OIF:SP:23:835,1,"Allée du Tillet",48.839913,2.082657,0,0,OIF:SA:21:91,Europe/Paris,,OIF, +OIF:SP:23:836,1,"Allée du Tillet",48.84003,2.082629,0,0,OIF:SA:21:91,Europe/Paris,,OIF, +OIF:SP:23:837,1,"Val Joyeux",48.817809,2.001486,0,0,OIF:SA:23:837,Europe/Paris,,OIF, +OIF:SP:23:84,1,"Groupe Scolaire Provence",48.938897,2.014861,0,0,OIF:SA:23:84,Europe/Paris,,OIF, +OIF:SP:23:842,1,"Grignon RD 119",48.843034,1.944595,0,0,OIF:SA:23:842,Europe/Paris,,OIF, +OIF:SP:23:843,1,"Grignon RD 119",48.843007,1.944391,0,0,OIF:SA:23:842,Europe/Paris,,OIF, +OIF:SP:23:849,1,"Voltaire",48.819804,1.913888,0,0,OIF:SA:23:849,Europe/Paris,,OIF, +OIF:SP:23:85,1,"Frères Tissier",48.942488,2.026872,0,0,OIF:SA:23:1006,Europe/Paris,,OIF, +OIF:SP:23:851,1,"Chatron",48.821425,1.904782,0,0,OIF:SA:23:851,Europe/Paris,,OIF, +OIF:SP:23:86,1,"Sainte-Honorine",48.94628,2.040766,0,0,OIF:SA:23:86,Europe/Paris,,OIF, +OIF:SP:23:863,1,"Champ du Caillou",48.854966,1.968748,0,0,OIF:SA:21:1004,Europe/Paris,,OIF, +OIF:SP:23:864,1,"Champ du Caillou",48.855083,1.96872,0,0,OIF:SA:21:1004,Europe/Paris,,OIF, +OIF:SP:23:866,1,"Ida Nudel",48.825436,1.964153,0,0,OIF:SA:23:866,Europe/Paris,,OIF, +OIF:SP:23:867,1,"Mairie",49.03503,1.866901,0,0,OIF:SA:23:867,Europe/Paris,,OIF, +OIF:SP:23:869,1,"Mairie",49.035076,1.867105,0,0,OIF:SA:23:867,Europe/Paris,,OIF, +OIF:SP:23:87,1,"Sainte-Honorine",48.945802,2.040223,0,0,OIF:SA:23:86,Europe/Paris,,OIF, +OIF:SP:23:870,1,"Rue des Grands Champs",48.926765,2.046538,0,0,OIF:SA:23:870,Europe/Paris,,OIF, +OIF:SP:23:871,1,"Orée du Bois",48.926137,2.054302,0,0,OIF:SA:23:871,Europe/Paris,,OIF, +OIF:SP:23:873,1,"Grande Ceinture",48.926634,2.051653,0,0,OIF:SA:23:873,Europe/Paris,,OIF, +OIF:SP:23:875,1,"Simonet",48.934102,2.059196,0,0,OIF:SA:23:875,Europe/Paris,,OIF, +OIF:SP:23:877,1,"Foch Flament",48.933657,2.057425,0,0,OIF:SA:23:1235,Europe/Paris,,OIF, +OIF:SP:23:878,1,"Sainte-Anne",48.932422,2.055836,0,0,OIF:SA:23:1102,Europe/Paris,,OIF, +OIF:SP:23:879,1,"Foch Justice",48.929415,2.049769,0,0,OIF:SA:23:1103,Europe/Paris,,OIF, +OIF:SP:23:88,1,"Île de la Dérivation",48.951573,2.044461,0,0,OIF:SA:23:88,Europe/Paris,,OIF, +OIF:SP:23:885,1,"Avenue de Pontoise",48.936852,2.055348,0,0,OIF:SA:20:168,Europe/Paris,,OIF, +OIF:SP:23:886,1,"Boulevard Robespierre",48.934663,2.057024,0,0,OIF:SA:23:886,Europe/Paris,,OIF, +OIF:SP:23:887,1,"Boulevard Robespierre",48.934582,2.056943,0,0,OIF:SA:23:886,Europe/Paris,,OIF, +OIF:SP:23:89,1,"Île de la Dérivation",48.951545,2.044134,0,0,OIF:SA:23:88,Europe/Paris,,OIF, +OIF:SP:23:891,1,"Rue du Stade",48.93768,2.055807,0,0,OIF:SA:23:1237,Europe/Paris,,OIF, +OIF:SP:23:893,1,"Laurence Caroline",48.931692,2.047301,0,0,OIF:SA:23:893,Europe/Paris,,OIF, +OIF:SP:23:894,1,"Laurence Caroline",48.931782,2.047601,0,0,OIF:SA:23:893,Europe/Paris,,OIF, +OIF:SP:23:9,1,"Les Meuniers",48.90133,2.021038,0,0,OIF:SA:15:385,Europe/Paris,,OIF, +OIF:SP:23:90,1,"Le Parc",48.942442,2.033667,0,0,OIF:SA:23:90,Europe/Paris,,OIF, +OIF:SP:23:900,1,"Four à Chaux",48.928113,1.974311,0,0,OIF:SA:23:900,Europe/Paris,,OIF, +OIF:SP:23:901,1,"Four à Chaux",48.927997,1.974421,0,0,OIF:SA:23:900,Europe/Paris,,OIF, +OIF:SP:23:905,1,"Rue de l'Hautil",48.983847,2.056963,0,0,OIF:SA:23:30,Europe/Paris,,OIF, +OIF:SP:23:907,1,"Le Lac",48.948681,2.06403,0,0,OIF:SA:23:907,Europe/Paris,,OIF, +OIF:SP:23:909,1,"Nocquet",49.038501,1.840681,0,0,OIF:SA:23:909,Europe/Paris,,OIF, +OIF:SP:23:91,1,"Le Parc",48.942424,2.033489,0,0,OIF:SA:23:90,Europe/Paris,,OIF, +OIF:SP:23:910,1,"Nocquet",49.038563,1.840598,0,0,OIF:SA:23:909,Europe/Paris,,OIF, +OIF:SP:23:911,1,"Giraud Teulon",48.892453,2.099436,0,0,OIF:SA:23:911,Europe/Paris,,OIF, +OIF:SP:23:912,1,"RD 43",48.964713,1.923349,0,0,OIF:SA:21:160,Europe/Paris,,OIF, +OIF:SP:23:916,1,"Chatron",48.821362,1.904742,0,0,OIF:SA:23:851,Europe/Paris,,OIF, +OIF:SP:23:918,1,"Rond-Point des Gâtines",48.80166,1.965875,0,0,OIF:SA:23:918,Europe/Paris,,OIF, +OIF:SP:23:92,1,"Pont Neuf",48.939413,2.036808,0,0,OIF:SA:23:92,Europe/Paris,,OIF, +OIF:SP:23:920,1,"Rond-Point des Gâtines",48.801749,1.965779,0,0,OIF:SA:23:918,Europe/Paris,,OIF, +OIF:SP:23:923,1,"Hameau Fleuri",48.845134,2.05812,0,0,OIF:SA:21:388,Europe/Paris,,OIF, +OIF:SP:23:924,1,"Voltaire",48.819768,1.913847,0,0,OIF:SA:23:849,Europe/Paris,,OIF, +OIF:SP:23:925,1,"Sucrerie",48.85601,1.977894,0,0,OIF:SA:21:166,Europe/Paris,,OIF, +OIF:SP:23:927,1,"Monuments aux Morts",48.951783,1.913642,0,0,OIF:SA:21:234,Europe/Paris,,OIF, +OIF:SP:23:928,1,"Auberge",48.935972,1.94992,0,0,OIF:SA:21:430,Europe/Paris,,OIF, +OIF:SP:23:929,1,"Auberge",48.935873,1.949907,0,0,OIF:SA:21:430,Europe/Paris,,OIF, +OIF:SP:23:93,1,"Pont Neuf",48.939619,2.036848,0,0,OIF:SA:23:92,Europe/Paris,,OIF, +OIF:SP:23:930,1,"La Fontaine",48.864523,2.026712,0,0,OIF:SA:21:1002,Europe/Paris,,OIF, +OIF:SP:23:931,1,"La Fontaine",48.864451,2.026603,0,0,OIF:SA:21:1002,Europe/Paris,,OIF, +OIF:SP:23:933,1,"La Bussie",49.030768,2.021983,0,0,OIF:SA:23:933,Europe/Paris,,OIF, +OIF:SP:23:936,1,"La Bussie",49.030731,2.021751,0,0,OIF:SA:23:933,Europe/Paris,,OIF, +OIF:SP:23:937,1,"Gare de Cergy le Haut",49.049686,2.012626,0,0,OIF:SA:8738265,Europe/Paris,,OIF, +OIF:SP:23:939,1,"Rond-Point du Chêne",49.046641,2.023185,0,0,OIF:SA:23:939,Europe/Paris,,OIF, +OIF:SP:23:94,1,"Port Saint-Louis",48.942432,2.012602,0,0,OIF:SA:23:1207,Europe/Paris,,OIF, +OIF:SP:23:940,1,"Rond-Point du Chêne",49.047384,2.022251,0,0,OIF:SA:23:939,Europe/Paris,,OIF, +OIF:SP:23:941,1,"Les Vallanchards",49.021108,2.02196,0,0,OIF:SA:23:941,Europe/Paris,,OIF, +OIF:SP:23:942,1,"Les Vallanchards",49.020864,2.021661,0,0,OIF:SA:23:941,Europe/Paris,,OIF, +OIF:SP:23:943,1,"Mairie",48.833725,1.898649,0,0,OIF:SA:23:943,Europe/Paris,,OIF, +OIF:SP:23:945,1,"Voltaire",48.918302,2.026144,0,0,OIF:SA:23:945,Europe/Paris,,OIF, +OIF:SP:23:946,1,"Chemin de Bichaille",48.932586,1.942512,0,0,OIF:SA:23:946,Europe/Paris,,OIF, +OIF:SP:23:947,1,"Chemin de Bichaille",48.932804,1.94296,0,0,OIF:SA:23:946,Europe/Paris,,OIF, +OIF:SP:23:95,1,"Reine Blanche",48.939247,2.031571,0,0,OIF:SA:23:1095,Europe/Paris,,OIF, +OIF:SP:23:951,1,"Avenue de la Maladrerie",48.92022,2.03126,0,0,OIF:SA:23:951,Europe/Paris,,OIF, +OIF:SP:23:953,1,"Avenue de la Maladrerie",48.920328,2.031137,0,0,OIF:SA:23:951,Europe/Paris,,OIF, +OIF:SP:23:954,1,"Pressoir",48.805478,1.953968,0,0,OIF:SA:23:407,Europe/Paris,,OIF, +OIF:SP:23:955,1,"Village d'Hennemont",48.898341,2.062755,0,0,OIF:SA:15:180,Europe/Paris,,OIF, +OIF:SP:23:958,1,"Centre Commercial",49.011466,1.916924,0,0,OIF:SA:21:4,Europe/Paris,,OIF, +OIF:SP:23:959,1,"Le Tremblay",48.940001,1.973614,0,0,OIF:SA:23:959,Europe/Paris,,OIF, +OIF:SP:23:96,1,"Ronceray",48.953581,2.042471,0,0,OIF:SA:23:96,Europe/Paris,,OIF, +OIF:SP:23:961,1,"Le Tremblay",48.939938,1.973519,0,0,OIF:SA:23:959,Europe/Paris,,OIF, +OIF:SP:23:962,1,"Les Feugères",48.940563,1.969299,0,0,OIF:SA:23:962,Europe/Paris,,OIF, +OIF:SP:23:963,1,"Les Feugères",48.9405,1.969422,0,0,OIF:SA:23:962,Europe/Paris,,OIF, +OIF:SP:23:964,1,"Épinettes",48.940366,1.958141,0,0,OIF:SA:23:338,Europe/Paris,,OIF, +OIF:SP:23:965,1,"Foyer",48.977222,1.762659,0,0,OIF:SA:23:965,Europe/Paris,,OIF, +OIF:SP:23:966,1,"Foyer",48.976606,1.76358,0,0,OIF:SA:23:965,Europe/Paris,,OIF, +OIF:SP:23:968,1,"Relais Jeunesse",48.92881,2.02023,0,0,OIF:SA:23:968,Europe/Paris,,OIF, +OIF:SP:23:969,1,"Relais Jeunesse",48.92881,2.020203,0,0,OIF:SA:23:968,Europe/Paris,,OIF, +OIF:SP:23:97,1,"Ronceray",48.953814,2.04232,0,0,OIF:SA:23:96,Europe/Paris,,OIF, +OIF:SP:23:970,1,"Pont de l'Île",48.929278,2.027142,0,0,OIF:SA:23:970,Europe/Paris,,OIF, +OIF:SP:23:971,1,"Pont de l'Île",48.929224,2.02747,0,0,OIF:SA:23:970,Europe/Paris,,OIF, +OIF:SP:23:972,1,"Piscine",48.929569,2.03216,0,0,OIF:SA:23:972,Europe/Paris,,OIF, +OIF:SP:23:973,1,"Piscine",48.929605,2.032296,0,0,OIF:SA:23:972,Europe/Paris,,OIF, +OIF:SP:23:974,1,"Émile Zola",48.931257,2.035205,0,0,OIF:SA:23:974,Europe/Paris,,OIF, +OIF:SP:23:975,1,"Émile Zola",48.931132,2.035247,0,0,OIF:SA:23:974,Europe/Paris,,OIF, +OIF:SP:23:978,1,"Frères Rose",48.931186,2.042394,0,0,OIF:SA:23:5278,Europe/Paris,,OIF, +OIF:SP:23:98,1,"Salles des Fêtes",48.951846,2.038606,0,0,OIF:SA:23:98,Europe/Paris,,OIF, +OIF:SP:23:99,1,"Salles des Fêtes",48.951837,2.038537,0,0,OIF:SA:23:98,Europe/Paris,,OIF, +OIF:SP:23:992,1,"Salle des Fêtes",48.974505,2.036359,0,0,OIF:SA:23:992,Europe/Paris,,OIF, +OIF:SP:23:993,1,"Salle des Fêtes",48.974523,2.036291,0,0,OIF:SA:23:992,Europe/Paris,,OIF, +OIF:SP:23:994,1,"Verlaine",48.97256,2.034705,0,0,OIF:SA:23:994,Europe/Paris,,OIF, +OIF:SP:23:995,1,"Verlaine",48.972624,2.03536,0,0,OIF:SA:23:994,Europe/Paris,,OIF, +OIF:SP:23:997,1,"Gare de Chanteloup-les-Vignes",48.970529,2.027933,0,0,OIF:SA:8738147,Europe/Paris,,OIF, +OIF:SP:23:999,1,"Roseland",48.994147,1.868337,0,0,OIF:SA:23:1002,Europe/Paris,,OIF, +OIF:SP:24:10193,1,"Coquetière",48.672276,2.079541,0,0,OIF:SA:24:10193,Europe/Paris,,OIF, +OIF:SP:24:10194,1,"Église",48.672232,2.067598,0,0,OIF:SA:24:10194,Europe/Paris,,OIF, +OIF:SP:24:10195,1,"Église",48.672411,2.067488,0,0,OIF:SA:24:10194,Europe/Paris,,OIF, +OIF:SP:24:10196,1,"Janvrerie",48.675709,2.070919,0,0,OIF:SA:24:10196,Europe/Paris,,OIF, +OIF:SP:24:10197,1,"Janvrerie",48.67561,2.071191,0,0,OIF:SA:24:10196,Europe/Paris,,OIF, +OIF:SP:24:10198,1,"Lavoir",48.671075,2.06493,0,0,OIF:SA:24:10198,Europe/Paris,,OIF, +OIF:SP:24:10199,1,"Lavoir",48.671191,2.064753,0,0,OIF:SA:24:10198,Europe/Paris,,OIF, +OIF:SP:24:10200,1,"Les Alouettes",48.669235,2.054789,0,0,OIF:SA:24:10200,Europe/Paris,,OIF, +OIF:SP:24:10201,1,"Les Alouettes",48.669029,2.054817,0,0,OIF:SA:24:10200,Europe/Paris,,OIF, +OIF:SP:24:10202,1,"Rue de Cernay",48.670686,2.060101,0,0,OIF:SA:24:10202,Europe/Paris,,OIF, +OIF:SP:24:10203,1,"Rue de Cernay",48.670552,2.060414,0,0,OIF:SA:24:10202,Europe/Paris,,OIF, +OIF:SP:24:10432,1,"Rond-Point la Roche",48.600634,2.233277,0,0,OIF:SA:24:10432,Europe/Paris,,OIF, +OIF:SP:24:10433,1,"Rond-Point la Roche",48.6004,2.233277,0,0,OIF:SA:24:10432,Europe/Paris,,OIF, +OIF:SP:24:10538,1,"Gare RER",48.697335,2.182137,0,0,OIF:SA:8775884,Europe/Paris,,OIF, +OIF:SP:24:10539,1,"Gare RER",48.698201,2.18447,0,0,OIF:SA:8775884,Europe/Paris,,OIF, +OIF:SP:24:10649,1,"Les Pommiers",48.643852,2.05928,0,0,OIF:SA:24:10649,Europe/Paris,,OIF, +OIF:SP:24:10650,1,"Les Pommiers",48.64404,2.058737,0,0,OIF:SA:24:10649,Europe/Paris,,OIF, +OIF:SP:24:10651,1,"Les Sorbiers",48.644729,2.053755,0,0,OIF:SA:24:10651,Europe/Paris,,OIF, +OIF:SP:24:10652,1,"Les Sorbiers",48.644827,2.053293,0,0,OIF:SA:24:10651,Europe/Paris,,OIF, +OIF:SP:24:10653,1,"Mairie",48.646424,2.04836,0,0,OIF:SA:24:10653,Europe/Paris,,OIF, +OIF:SP:24:10654,1,"Mairie",48.646434,2.048523,0,0,OIF:SA:24:10653,Europe/Paris,,OIF, +OIF:SP:24:10764,1,"Mairie",48.715672,2.139866,0,0,OIF:SA:24:10764,Europe/Paris,,OIF, +OIF:SP:24:10769,1,"Saint-Aubin",48.711787,2.144241,0,0,OIF:SA:24:10769,Europe/Paris,,OIF, +OIF:SP:24:10770,1,"Saint-Aubin",48.714541,2.146771,0,0,OIF:SA:24:10769,Europe/Paris,,OIF, +OIF:SP:24:11466,1,"Billehou",48.718875,2.121067,0,0,OIF:SA:24:11466,Europe/Paris,,OIF, +OIF:SP:24:11467,1,"Billehou",48.718812,2.120891,0,0,OIF:SA:24:11466,Europe/Paris,,OIF, +OIF:SP:24:11468,1,"Chapeau Gendarme",48.722879,2.123143,0,0,OIF:SA:24:11468,Europe/Paris,,OIF, +OIF:SP:24:11469,1,"Chapeau Gendarme",48.722897,2.123319,0,0,OIF:SA:24:11468,Europe/Paris,,OIF, +OIF:SP:24:11470,1,"École de Villiers",48.726947,2.121469,0,0,OIF:SA:24:11470,Europe/Paris,,OIF, +OIF:SP:24:11471,1,"École de Villiers",48.726822,2.121686,0,0,OIF:SA:24:11470,Europe/Paris,,OIF, +OIF:SP:24:11472,1,"Place de la Mairie de Villiers",48.726137,2.125588,0,0,OIF:SA:24:11472,Europe/Paris,,OIF, +OIF:SP:24:11473,1,"Place de la Mairie de Villiers",48.725796,2.126038,0,0,OIF:SA:24:11472,Europe/Paris,,OIF, +OIF:SP:24:11474,1,"Rond-Point de Villiers",48.729222,2.127098,0,0,OIF:SA:24:11474,Europe/Paris,,OIF, +OIF:SP:24:11475,1,"Rond-Point de Villiers",48.729214,2.127125,0,0,OIF:SA:24:11474,Europe/Paris,,OIF, +OIF:SP:24:11678,1,"Centre Commercial les Ulis 2",48.67768,2.171188,0,0,OIF:SA:24:11678,Europe/Paris,,OIF, +OIF:SP:24:11679,1,"Centre Commercial les Ulis 2",48.677824,2.171255,0,0,OIF:SA:24:11678,Europe/Paris,,OIF, +OIF:SP:24:11707,1,"Lycée Essouriau",48.676844,2.165056,0,0,OIF:SA:24:11707,Europe/Paris,,OIF, +OIF:SP:24:11708,1,"Lycée Essouriau",48.676665,2.165531,0,0,OIF:SA:24:11707,Europe/Paris,,OIF, +OIF:SP:24:14715,1,"Mulleron",48.634605,2.158496,0,0,OIF:SA:24:14715,Europe/Paris,,OIF, +OIF:SP:24:14718,1,"La Maugerie",48.596225,2.173778,0,0,OIF:SA:24:14718,Europe/Paris,,OIF, +OIF:SP:24:14720,1,"Belleville 2",48.6922,2.117906,0,0,OIF:SA:24:14720,Europe/Paris,,OIF, +OIF:SP:24:14724,1,"Collège Sainte-Thérèse",48.738671,1.960237,0,0,OIF:SA:24:14724,Europe/Paris,,OIF, +OIF:SP:24:14725,1,"Collège Sainte-Thérèse",48.738671,1.960237,0,0,OIF:SA:24:14724,Europe/Paris,,OIF, +OIF:SP:24:14729,1,"La Touche",48.582448,2.146345,0,0,OIF:SA:24:14729,Europe/Paris,,OIF, +OIF:SP:24:14731,1,"Petite Buttes",48.603479,2.094533,0,0,OIF:SA:24:14731,Europe/Paris,,OIF, +OIF:SP:24:14732,1,"La Mare aux Puits",48.635234,2.064195,0,0,OIF:SA:24:14732,Europe/Paris,,OIF, +OIF:SP:24:14733,1,"Les Arcades",48.644987,2.063846,0,0,OIF:SA:24:14733,Europe/Paris,,OIF, +OIF:SP:24:14735,1,"Moutiers",48.610204,1.972337,0,0,OIF:SA:24:14735,Europe/Paris,,OIF, +OIF:SP:24:14736,1,"Les Carneaux",48.621861,1.992662,0,0,OIF:SA:24:14736,Europe/Paris,,OIF, +OIF:SP:24:14737,1,"Les Orantes",48.631696,2.015217,0,0,OIF:SA:24:14737,Europe/Paris,,OIF, +OIF:SP:24:14738,1,"Arbouville",48.63769,1.817091,0,0,OIF:SA:24:14738,Europe/Paris,,OIF, +OIF:SP:24:14739,1,"Arbouville",48.637331,1.81742,0,0,OIF:SA:24:14738,Europe/Paris,,OIF, +OIF:SP:24:14742,1,"La Brosse",48.659681,2.139916,0,0,OIF:SA:24:14742,Europe/Paris,,OIF, +OIF:SP:24:14743,1,"La Brosse",48.659564,2.139862,0,0,OIF:SA:24:14742,Europe/Paris,,OIF, +OIF:SP:24:14744,1,"Petite Buttes",48.603317,2.094398,0,0,OIF:SA:24:14731,Europe/Paris,,OIF, +OIF:SP:24:14745,1,"Machery",48.602804,2.085848,0,0,OIF:SA:24:14745,Europe/Paris,,OIF, +OIF:SP:24:14746,1,"Machery",48.602769,2.08597,0,0,OIF:SA:24:14745,Europe/Paris,,OIF, +OIF:SP:24:14749,1,"Hôtel",48.693876,2.06348,0,0,OIF:SA:24:14749,Europe/Paris,,OIF, +OIF:SP:24:14750,1,"Hôtel",48.693831,2.063399,0,0,OIF:SA:24:14749,Europe/Paris,,OIF, +OIF:SP:24:14758,1,"Grand Mesnil",48.695283,2.173807,0,0,OIF:SA:24:14758,Europe/Paris,,OIF, +OIF:SP:24:14759,1,"Pont Pierre",48.703455,2.036324,0,0,OIF:SA:24:14759,Europe/Paris,,OIF, +OIF:SP:24:14760,1,"Vallée",48.712286,2.067947,0,0,OIF:SA:24:14760,Europe/Paris,,OIF, +OIF:SP:24:14761,1,"Petite Hogue",48.657558,1.900256,0,0,OIF:SA:24:14761,Europe/Paris,,OIF, +OIF:SP:24:14762,1,"Petite Hogue",48.657559,1.900419,0,0,OIF:SA:24:14761,Europe/Paris,,OIF, +OIF:SP:24:14763,1,"Trou Rouge",48.696746,2.021182,0,0,OIF:SA:24:14763,Europe/Paris,,OIF, +OIF:SP:24:14764,1,"Pont Pierre",48.703518,2.036147,0,0,OIF:SA:24:14759,Europe/Paris,,OIF, +OIF:SP:24:14765,1,"Les Arcades",48.644969,2.063981,0,0,OIF:SA:24:14733,Europe/Paris,,OIF, +OIF:SP:24:14766,1,"La Touche",48.582331,2.146156,0,0,OIF:SA:24:14729,Europe/Paris,,OIF, +OIF:SP:24:14768,1,"Berchevilliers",48.588474,2.112218,0,0,OIF:SA:24:14768,Europe/Paris,,OIF, +OIF:SP:24:14769,1,"Berchevilliers",48.588241,2.112381,0,0,OIF:SA:24:14768,Europe/Paris,,OIF, +OIF:SP:24:14770,1,"Orée du Bois",48.584298,2.118834,0,0,OIF:SA:24:14770,Europe/Paris,,OIF, +OIF:SP:24:14771,1,"Orée du Bois",48.584019,2.118984,0,0,OIF:SA:24:14770,Europe/Paris,,OIF, +OIF:SP:24:14772,1,"Stade",48.582199,2.121498,0,0,OIF:SA:24:14772,Europe/Paris,,OIF, +OIF:SP:24:14773,1,"Stade",48.582388,2.121294,0,0,OIF:SA:24:14772,Europe/Paris,,OIF, +OIF:SP:24:14774,1,"La Soulodiére",48.589997,2.150654,0,0,OIF:SA:24:14774,Europe/Paris,,OIF, +OIF:SP:24:14775,1,"La Soulodière",48.589747,2.151197,0,0,OIF:SA:24:14774,Europe/Paris,,OIF, +OIF:SP:24:14776,1,"La Fontaine aux Cossons",48.591708,2.110754,0,0,OIF:SA:24:14776,Europe/Paris,,OIF, +OIF:SP:24:14777,1,"La Fontaine aux Cossons",48.592294,2.112011,0,0,OIF:SA:24:14776,Europe/Paris,,OIF, +OIF:SP:24:14778,1,"La Belle Étoile",48.578719,2.141536,0,0,OIF:SA:24:14778,Europe/Paris,,OIF, +OIF:SP:24:14779,1,"La Belle Étoile",48.578593,2.141265,0,0,OIF:SA:24:14778,Europe/Paris,,OIF, +OIF:SP:24:14780,1,"Coquetière",48.672367,2.080002,0,0,OIF:SA:24:10193,Europe/Paris,,OIF, +OIF:SP:24:14782,1,"Farman",48.761286,2.123488,0,0,OIF:SA:24:14782,Europe/Paris,,OIF, +OIF:SP:24:14783,1,"Gare de Courcelle - Lycée de la Vallée",48.700209,2.099065,0,0,OIF:SA:8775888,Europe/Paris,,OIF, +OIF:SP:24:14784,1,"Place",48.687166,2.018484,0,0,OIF:SA:24:14784,Europe/Paris,,OIF, +OIF:SP:24:14788,1,"Technocentre le Gradient",48.7633,2.086852,0,0,OIF:SA:24:14788,Europe/Paris,,OIF, +OIF:SP:24:14789,1,"Technocentre le Gradient",48.763991,2.086509,0,0,OIF:SA:24:14788,Europe/Paris,,OIF, +OIF:SP:24:14790,1,"Courcelle 11 Novembre",48.703596,2.107279,0,0,OIF:SA:24:14790,Europe/Paris,,OIF, +OIF:SP:24:14791,1,"Courcelle 11 Novembre",48.703596,2.107279,0,0,OIF:SA:24:14790,Europe/Paris,,OIF, +OIF:SP:24:14792,1,"Fernand Léger",48.701757,2.100253,0,0,OIF:SA:24:14792,Europe/Paris,,OIF, +OIF:SP:24:14793,1,"Fernand Léger",48.701766,2.100158,0,0,OIF:SA:24:14792,Europe/Paris,,OIF, +OIF:SP:24:14794,1,"Damiette",48.698025,2.122933,0,0,OIF:SA:24:14794,Europe/Paris,,OIF, +OIF:SP:24:14795,1,"Damiette",48.698069,2.122715,0,0,OIF:SA:24:14794,Europe/Paris,,OIF, +OIF:SP:24:14798,1,"La Glacière",48.585293,1.983473,0,0,OIF:SA:24:14798,Europe/Paris,,OIF, +OIF:SP:24:14799,1,"La Glacière",48.583488,1.984217,0,0,OIF:SA:24:14798,Europe/Paris,,OIF, +OIF:SP:24:14800,1,"Roland Garros",48.763235,2.117511,0,0,OIF:SA:24:14800,Europe/Paris,,OIF, +OIF:SP:24:14804,1,"Malmousse",48.705261,2.095212,0,0,OIF:SA:24:14804,Europe/Paris,,OIF, +OIF:SP:24:14805,1,"Malmousse",48.705099,2.095077,0,0,OIF:SA:24:14804,Europe/Paris,,OIF, +OIF:SP:24:14806,1,"Air et Soleil",48.704817,2.097577,0,0,OIF:SA:24:14806,Europe/Paris,,OIF, +OIF:SP:24:14807,1,"Air et Soleil",48.704691,2.097659,0,0,OIF:SA:24:14806,Europe/Paris,,OIF, +OIF:SP:24:14808,1,"Les Ormes",48.593922,2.186063,0,0,OIF:SA:24:14808,Europe/Paris,,OIF, +OIF:SP:24:14809,1,"Les Ormes",48.593797,2.186307,0,0,OIF:SA:24:14808,Europe/Paris,,OIF, +OIF:SP:24:14810,1,"Les Buttes",48.586975,2.149418,0,0,OIF:SA:24:14810,Europe/Paris,,OIF, +OIF:SP:24:14811,1,"Les Buttes",48.587326,2.149769,0,0,OIF:SA:24:14810,Europe/Paris,,OIF, +OIF:SP:24:14812,1,"La Maugerie",48.596171,2.173887,0,0,OIF:SA:24:14718,Europe/Paris,,OIF, +OIF:SP:24:14813,1,"Rue de Courson",48.584628,2.127477,0,0,OIF:SA:24:14813,Europe/Paris,,OIF, +OIF:SP:24:14814,1,"Rue de Courson",48.584601,2.127518,0,0,OIF:SA:24:14813,Europe/Paris,,OIF, +OIF:SP:24:14815,1,"Place",48.581186,2.123182,0,0,OIF:SA:24:14815,Europe/Paris,,OIF, +OIF:SP:24:14816,1,"Place",48.58107,2.123535,0,0,OIF:SA:24:14815,Europe/Paris,,OIF, +OIF:SP:24:14819,1,"Launay Courson",48.598421,2.119249,0,0,OIF:SA:24:14819,Europe/Paris,,OIF, +OIF:SP:24:14820,1,"Launay Courson",48.598475,2.119168,0,0,OIF:SA:24:14819,Europe/Paris,,OIF, +OIF:SP:24:14821,1,"Bajolet",48.606177,2.070163,0,0,OIF:SA:24:14821,Europe/Paris,,OIF, +OIF:SP:24:14822,1,"Bajolet",48.606223,2.07084,0,0,OIF:SA:24:14821,Europe/Paris,,OIF, +OIF:SP:24:14829,1,"Les Chenaux",48.586966,2.149418,0,0,OIF:SA:24:14829,Europe/Paris,,OIF, +OIF:SP:24:14830,1,"Les Chenaux",48.587326,2.149769,0,0,OIF:SA:24:14829,Europe/Paris,,OIF, +OIF:SP:24:14831,1,"Le Coudray",48.60691,2.136361,0,0,OIF:SA:24:14831,Europe/Paris,,OIF, +OIF:SP:24:14832,1,"Le Coudray",48.606819,2.136117,0,0,OIF:SA:24:14831,Europe/Paris,,OIF, +OIF:SP:24:14837,1,"Quincampoix",48.618288,2.169994,0,0,OIF:SA:24:14837,Europe/Paris,,OIF, +OIF:SP:24:14838,1,"Quincampoix",48.618073,2.170022,0,0,OIF:SA:24:14837,Europe/Paris,,OIF, +OIF:SP:24:14839,1,"Mairie",48.603666,2.121965,0,0,OIF:SA:24:14839,Europe/Paris,,OIF, +OIF:SP:24:14840,1,"Mairie",48.603685,2.122196,0,0,OIF:SA:24:14839,Europe/Paris,,OIF, +OIF:SP:24:14841,1,"Arpenty Place",48.58642,2.162726,0,0,OIF:SA:24:14841,Europe/Paris,,OIF, +OIF:SP:24:14842,1,"Arpenty Place",48.586357,2.162726,0,0,OIF:SA:24:14841,Europe/Paris,,OIF, +OIF:SP:24:14843,1,"Villevert",48.633128,2.037069,0,0,OIF:SA:24:14843,Europe/Paris,,OIF, +OIF:SP:24:14844,1,"Villevert",48.632698,2.037533,0,0,OIF:SA:24:14843,Europe/Paris,,OIF, +OIF:SP:24:14845,1,"Le Cormier",48.630206,2.059001,0,0,OIF:SA:24:14845,Europe/Paris,,OIF, +OIF:SP:24:14846,1,"Le Cormier",48.630206,2.059001,0,0,OIF:SA:24:14845,Europe/Paris,,OIF, +OIF:SP:24:14847,1,"Les Pâquerettes",48.64757,2.046455,0,0,OIF:SA:24:14847,Europe/Paris,,OIF, +OIF:SP:24:14848,1,"Les Pâquerettes",48.647534,2.046509,0,0,OIF:SA:24:14847,Europe/Paris,,OIF, +OIF:SP:24:14851,1,"Les Pavillons",48.638206,2.070595,0,0,OIF:SA:24:14851,Europe/Paris,,OIF, +OIF:SP:24:14852,1,"Les Pavillons",48.638243,2.070961,0,0,OIF:SA:24:14851,Europe/Paris,,OIF, +OIF:SP:24:14853,1,"Roussigny - Clos Tavin",48.647339,2.109237,0,0,OIF:SA:24:14853,Europe/Paris,,OIF, +OIF:SP:24:14854,1,"Roussigny - Clos Tavin",48.64715,2.109156,0,0,OIF:SA:24:14853,Europe/Paris,,OIF, +OIF:SP:24:14855,1,"La Mare aux Puits",48.635081,2.064142,0,0,OIF:SA:24:14732,Europe/Paris,,OIF, +OIF:SP:24:14856,1,"Roussigny - Abreuvoir",48.648664,2.106572,0,0,OIF:SA:24:14856,Europe/Paris,,OIF, +OIF:SP:24:14857,1,"Roussigny - Abreuvoir",48.648556,2.106505,0,0,OIF:SA:24:14856,Europe/Paris,,OIF, +OIF:SP:24:14858,1,"Croix Valentin",48.672239,2.071099,0,0,OIF:SA:24:14858,Europe/Paris,,OIF, +OIF:SP:24:14859,1,"Croix Valentin",48.672114,2.071236,0,0,OIF:SA:24:14858,Europe/Paris,,OIF, +OIF:SP:24:14860,1,"Ardillières",48.630173,2.11574,0,0,OIF:SA:24:14860,Europe/Paris,,OIF, +OIF:SP:24:14861,1,"Ardillières",48.629984,2.115795,0,0,OIF:SA:24:14860,Europe/Paris,,OIF, +OIF:SP:24:14870,1,"La Bâte",48.591721,2.015328,0,0,OIF:SA:24:14870,Europe/Paris,,OIF, +OIF:SP:24:14871,1,"La Bâte",48.591604,2.015343,0,0,OIF:SA:24:14870,Europe/Paris,,OIF, +OIF:SP:24:14872,1,"Bourgneuf",48.600267,2.004582,0,0,OIF:SA:24:14872,Europe/Paris,,OIF, +OIF:SP:24:14873,1,"Bourgneuf",48.600375,2.00446,0,0,OIF:SA:24:14872,Europe/Paris,,OIF, +OIF:SP:24:14876,1,"Les Carneaux",48.621879,1.992553,0,0,OIF:SA:24:14736,Europe/Paris,,OIF, +OIF:SP:24:14877,1,"Moutiers",48.610158,1.971945,0,0,OIF:SA:24:14735,Europe/Paris,,OIF, +OIF:SP:24:14880,1,"La Folie Rigault",48.689081,2.10847,0,0,OIF:SA:24:14880,Europe/Paris,,OIF, +OIF:SP:24:14881,1,"La Folie Rigault",48.689172,2.108714,0,0,OIF:SA:24:14880,Europe/Paris,,OIF, +OIF:SP:24:14882,1,"La Vacheresse",48.679485,2.124991,0,0,OIF:SA:24:14882,Europe/Paris,,OIF, +OIF:SP:24:14883,1,"La Vacheresse",48.679449,2.124937,0,0,OIF:SA:24:14882,Europe/Paris,,OIF, +OIF:SP:24:14884,1,"La Feuillarde",48.67659,2.115054,0,0,OIF:SA:24:14884,Europe/Paris,,OIF, +OIF:SP:24:14885,1,"La Feuillarde",48.676608,2.114592,0,0,OIF:SA:24:14884,Europe/Paris,,OIF, +OIF:SP:24:14896,1,"Gare Autoroutière",48.615965,2.1275,0,0,OIF:SA:24:14896,Europe/Paris,,OIF, +OIF:SP:24:14897,1,"Gare Autoroutière",48.61627,2.127621,0,0,OIF:SA:24:14896,Europe/Paris,,OIF, +OIF:SP:24:14898,1,"Courcelle",48.704076,2.100107,0,0,OIF:SA:24:14898,Europe/Paris,,OIF, +OIF:SP:24:14899,1,"Courcelle",48.703592,2.100883,0,0,OIF:SA:24:14898,Europe/Paris,,OIF, +OIF:SP:24:14903,1,"Bois de Montmarre",48.646488,2.152323,0,0,OIF:SA:24:14903,Europe/Paris,,OIF, +OIF:SP:24:14904,1,"Bois de Montmarre",48.646326,2.152555,0,0,OIF:SA:24:14903,Europe/Paris,,OIF, +OIF:SP:24:14906,1,"Clos Moissons",48.626309,2.126238,0,0,OIF:SA:24:14906,Europe/Paris,,OIF, +OIF:SP:24:14907,1,"Petit Bertin",48.673322,2.137326,0,0,OIF:SA:24:14907,Europe/Paris,,OIF, +OIF:SP:24:14908,1,"Prés Mouchards",48.685583,2.127016,0,0,OIF:SA:24:14908,Europe/Paris,,OIF, +OIF:SP:24:14909,1,"Prés Mouchards",48.685583,2.12688,0,0,OIF:SA:24:14908,Europe/Paris,,OIF, +OIF:SP:24:14911,1,"Grange Martin",48.704646,2.116197,0,0,OIF:SA:24:14911,Europe/Paris,,OIF, +OIF:SP:24:14912,1,"Grange Martin",48.704521,2.11636,0,0,OIF:SA:24:14911,Europe/Paris,,OIF, +OIF:SP:24:14914,1,"Vaugondran",48.696329,2.105492,0,0,OIF:SA:24:14914,Europe/Paris,,OIF, +OIF:SP:24:14915,1,"Vaugondran",48.696302,2.105546,0,0,OIF:SA:24:14914,Europe/Paris,,OIF, +OIF:SP:24:14916,1,"Petit Bertin",48.673349,2.137326,0,0,OIF:SA:24:14907,Europe/Paris,,OIF, +OIF:SP:24:14917,1,"Centre",48.594082,2.064167,0,0,OIF:SA:24:14917,Europe/Paris,,OIF, +OIF:SP:24:14918,1,"Centre Commercial Vélizy 2",48.782826,2.216007,0,0,OIF:SA:59872,Europe/Paris,,OIF, +OIF:SP:24:14920,1,"Dewoitine",48.782978,2.214987,0,0,OIF:SA:59872,Europe/Paris,,OIF, +OIF:SP:24:14921,1,"Inovel Parc Nord",48.78148,2.209333,0,0,OIF:SA:59874,Europe/Paris,,OIF, +OIF:SP:24:14922,1,"Europe Sud",48.779347,2.207175,0,0,OIF:SA:24:14922,Europe/Paris,,OIF, +OIF:SP:24:14923,1,"Louvois",48.779802,2.195641,0,0,OIF:SA:59876,Europe/Paris,,OIF, +OIF:SP:24:14924,1,"Mairie de Vélizy",48.78012,2.191248,0,0,OIF:SA:59878,Europe/Paris,,OIF, +OIF:SP:24:14925,1,"Ravel",48.781573,2.181818,0,0,OIF:SA:59880,Europe/Paris,,OIF, +OIF:SP:24:14926,1,"L'Onde - Maison des Arts",48.78185,2.180444,0,0,OIF:SA:59880,Europe/Paris,,OIF, +OIF:SP:24:14928,1,"Provence",48.782389,2.173343,0,0,OIF:SA:24:14928,Europe/Paris,,OIF, +OIF:SP:24:14931,1,"Arcades",48.774481,2.133619,0,0,OIF:SA:24:14931,Europe/Paris,,OIF, +OIF:SP:24:14932,1,"Fort de Buc",48.769311,2.112658,0,0,OIF:SA:24:14932,Europe/Paris,,OIF, +OIF:SP:24:14933,1,"Pommeraie",48.7707,2.10599,0,0,OIF:SA:24:14933,Europe/Paris,,OIF, +OIF:SP:24:14934,1,"40 Arpents",48.768864,2.074439,0,0,OIF:SA:24:14934,Europe/Paris,,OIF, +OIF:SP:24:14935,1,"Université Vauban-d'Alembert",48.778798,2.0447,0,0,OIF:SA:24:14935,Europe/Paris,,OIF, +OIF:SP:24:14936,1,"Hameau de Troux",48.775991,2.046919,0,0,OIF:SA:24:14936,Europe/Paris,,OIF, +OIF:SP:24:14937,1,"Place Étienne Marcel",48.780402,2.042678,0,0,OIF:SA:24:14937,Europe/Paris,,OIF, +OIF:SP:24:14939,1,"Sqy Ouest",48.783587,2.040443,0,0,OIF:SA:24:14939,Europe/Paris,,OIF, +OIF:SP:24:14940,1,"Saint-Quentin Gare SNCF",48.787898,2.046403,0,0,OIF:SA:8739384,Europe/Paris,,OIF, +OIF:SP:24:14941,1,"Le Mail",48.788657,2.222591,0,0,OIF:SA:24:14941,Europe/Paris,,OIF, +OIF:SP:24:14942,1,"Pont de Billancourt",48.825295,2.247815,0,0,OIF:SA:24:14942,Europe/Paris,,OIF, +OIF:SP:24:14943,1,"Pont de Sèvres",48.829441,2.228994,0,0,OIF:SA:59621,Europe/Paris,,OIF, +OIF:SP:24:14944,1,"Porte Est",48.694262,2.063098,0,0,OIF:SA:24:14944,Europe/Paris,,OIF, +OIF:SP:24:14960,1,"Mlk / Lfa",48.770936,2.121463,0,0,OIF:SA:24:14960,Europe/Paris,,OIF, +OIF:SP:24:14966,1,"Le Breuil",48.698433,2.026671,0,0,OIF:SA:24:14966,Europe/Paris,,OIF, +OIF:SP:24:14968,1,"Centre",48.745845,2.113969,0,0,OIF:SA:24:14968,Europe/Paris,,OIF, +OIF:SP:24:14969,1,"Centre",48.745747,2.114337,0,0,OIF:SA:24:14968,Europe/Paris,,OIF, +OIF:SP:24:14973,1,"Gare de Versailles-Rive-Droite",48.810164,2.134268,0,0,OIF:SA:8738286,Europe/Paris,,OIF, +OIF:SP:24:14974,1,"Gare de Versailles-Rive-Droite",48.809606,2.133781,0,0,OIF:SA:8738286,Europe/Paris,,OIF, +OIF:SP:24:14975,1,"Rue de Bange",48.814463,2.136198,0,0,OIF:SA:24:14975,Europe/Paris,,OIF, +OIF:SP:24:14976,1,"Rue de Bange",48.814239,2.136049,0,0,OIF:SA:24:14975,Europe/Paris,,OIF, +OIF:SP:24:14977,1,"Place de Loi",48.815052,2.128465,0,0,OIF:SA:15:273,Europe/Paris,,OIF, +OIF:SP:24:14978,1,"Place de Loi",48.814937,2.129187,0,0,OIF:SA:15:273,Europe/Paris,,OIF, +OIF:SP:24:14981,1,"Gare de Montreuil",48.806786,2.151358,0,0,OIF:SA:8738287,Europe/Paris,,OIF, +OIF:SP:24:14982,1,"Gare de Montreuil",48.806866,2.1511,0,0,OIF:SA:8738287,Europe/Paris,,OIF, +OIF:SP:24:14983,1,"Place des Francine",48.796704,2.131287,0,0,OIF:SA:24:14983,Europe/Paris,,OIF, +OIF:SP:24:14989,1,"Pottier",48.827971,2.125405,0,0,OIF:SA:24:14989,Europe/Paris,,OIF, +OIF:SP:24:14990,1,"Pottier",48.827945,2.1255,0,0,OIF:SA:24:14989,Europe/Paris,,OIF, +OIF:SP:24:14991,1,"Parly 2",48.828668,2.118133,0,0,OIF:SA:21:1032,Europe/Paris,,OIF, +OIF:SP:24:14992,1,"Parly 2",48.828551,2.117875,0,0,OIF:SA:21:1032,Europe/Paris,,OIF, +OIF:SP:24:14993,1,"Passy",48.83354,2.118575,0,0,OIF:SA:15:388,Europe/Paris,,OIF, +OIF:SP:24:14994,1,"Passy",48.833603,2.118534,0,0,OIF:SA:15:388,Europe/Paris,,OIF, +OIF:SP:24:14995,1,"Place Simart",48.819615,2.126841,0,0,OIF:SA:15:394,Europe/Paris,,OIF, +OIF:SP:24:14996,1,"Place Simart",48.819157,2.126652,0,0,OIF:SA:15:394,Europe/Paris,,OIF, +OIF:SP:24:14997,1,"Hauts de Chevreuse Place",48.712737,2.056916,0,0,OIF:SA:24:14997,Europe/Paris,,OIF, +OIF:SP:24:15043,1,"Allouetterie",48.599095,2.066729,0,0,OIF:SA:24:15043,Europe/Paris,,OIF, +OIF:SP:24:15045,1,"RER B - Robinson",48.780223,2.28173,0,0,OIF:SA:8775872,Europe/Paris,,OIF, +OIF:SP:24:15047,1,"Robinson",48.780039,2.273583,0,0,OIF:SA:24:15047,Europe/Paris,,OIF, +OIF:SP:24:15049,1,"Bois Brûlé",48.782509,2.270126,0,0,OIF:SA:24:15049,Europe/Paris,,OIF, +OIF:SP:24:15051,1,"Place du Garde",48.803282,2.257323,0,0,OIF:SA:24:15051,Europe/Paris,,OIF, +OIF:SP:24:15053,1,"Clinique",48.783686,2.231361,0,0,OIF:SA:59866,Europe/Paris,,OIF, +OIF:SP:24:15056,1,"Mairie de Vélizy",48.780677,2.191219,0,0,OIF:SA:59878,Europe/Paris,,OIF, +OIF:SP:24:15057,1,"Wagner",48.783849,2.176385,0,0,OIF:SA:59882,Europe/Paris,,OIF, +OIF:SP:24:15059,1,"Place Victor Hugo",48.77203,2.16402,0,0,OIF:SA:24:15059,Europe/Paris,,OIF, +OIF:SP:24:15061,1,"Ferme",48.769849,2.249066,0,0,OIF:SA:24:15061,Europe/Paris,,OIF, +OIF:SP:24:15063,1,"Francis de Pressensé",48.766654,2.254537,0,0,OIF:SA:24:15063,Europe/Paris,,OIF, +OIF:SP:24:15065,1,"Butte Rouge",48.765498,2.26082,0,0,OIF:SA:24:15065,Europe/Paris,,OIF, +OIF:SP:24:15067,1,"Faculté de Pharmacie",48.762332,2.271144,0,0,OIF:SA:24:15067,Europe/Paris,,OIF, +OIF:SP:24:15069,1,"Les Antes",48.750162,2.272111,0,0,OIF:SA:24:15069,Europe/Paris,,OIF, +OIF:SP:24:15071,1,"Paron",48.746611,2.270009,0,0,OIF:SA:24:15071,Europe/Paris,,OIF, +OIF:SP:24:15073,1,"Carnot",48.741493,2.264824,0,0,OIF:SA:24:15073,Europe/Paris,,OIF, +OIF:SP:24:15075,1,"Charles de Gaulle",48.735421,2.271178,0,0,OIF:SA:24:15075,Europe/Paris,,OIF, +OIF:SP:24:15077,1,"Allende",48.731097,2.255599,0,0,OIF:SA:24:15077,Europe/Paris,,OIF, +OIF:SP:24:15079,1,"Gare SNCF",48.724706,2.256342,0,0,OIF:SA:8739357,Europe/Paris,,OIF, +OIF:SP:24:15081,1,"Carrefour de l'Éléphant",48.72047,2.251839,0,0,OIF:SA:24:15081,Europe/Paris,,OIF, +OIF:SP:24:15083,1,"Le Pileu",48.730015,2.239622,0,0,OIF:SA:24:15083,Europe/Paris,,OIF, +OIF:SP:24:15086,1,"Le Mail",48.788405,2.222007,0,0,OIF:SA:24:14941,Europe/Paris,,OIF, +OIF:SP:24:15087,1,"L'Onde - Maison des Arts",48.781769,2.180431,0,0,OIF:SA:59880,Europe/Paris,,OIF, +OIF:SP:24:15088,1,"Vieille Terrière",48.623036,2.130861,0,0,OIF:SA:24:15088,Europe/Paris,,OIF, +OIF:SP:24:15089,1,"Vieille Terrière",48.622901,2.130902,0,0,OIF:SA:24:15088,Europe/Paris,,OIF, +OIF:SP:24:15092,1,"Raoul Dautry CEA",48.724102,2.156232,0,0,OIF:SA:24:15092,Europe/Paris,,OIF, +OIF:SP:24:15093,1,"Fond Fanet",48.709601,2.127421,0,0,OIF:SA:24:15093,Europe/Paris,,OIF, +OIF:SP:24:15094,1,"Les Moulins",48.69829,2.125688,0,0,OIF:SA:24:15094,Europe/Paris,,OIF, +OIF:SP:24:15098,1,"Rue de la Louveterie",48.746088,1.963486,0,0,OIF:SA:24:15098,Europe/Paris,,OIF, +OIF:SP:24:15099,1,"Stade des Noés",48.747862,1.961896,0,0,OIF:SA:24:15099,Europe/Paris,,OIF, +OIF:SP:24:15100,1,"Stade des Noés",48.747826,1.961815,0,0,OIF:SA:24:15099,Europe/Paris,,OIF, +OIF:SP:24:15101,1,"Cité Orly Parc",48.756426,1.949912,0,0,OIF:SA:24:15101,Europe/Paris,,OIF, +OIF:SP:24:15102,1,"Cité Orly Parc",48.756426,1.949912,0,0,OIF:SA:24:15101,Europe/Paris,,OIF, +OIF:SP:24:15103,1,"Général Leclerc",48.755291,1.954733,0,0,OIF:SA:24:15103,Europe/Paris,,OIF, +OIF:SP:24:15104,1,"Général Leclerc",48.755479,1.954596,0,0,OIF:SA:24:15103,Europe/Paris,,OIF, +OIF:SP:24:15105,1,"Rue de la Plaine",48.749959,1.959897,0,0,OIF:SA:24:15105,Europe/Paris,,OIF, +OIF:SP:24:15106,1,"Rue de la Plaine",48.749959,1.959897,0,0,OIF:SA:24:15105,Europe/Paris,,OIF, +OIF:SP:24:15108,1,"Rue des Champs",48.753556,1.954651,0,0,OIF:SA:24:15108,Europe/Paris,,OIF, +OIF:SP:24:15109,1,"Rue des Champs",48.753717,1.95435,0,0,OIF:SA:24:15108,Europe/Paris,,OIF, +OIF:SP:24:15110,1,"Petit-Robinson",48.780326,2.170262,0,0,OIF:SA:24:15110,Europe/Paris,,OIF, +OIF:SP:24:15111,1,"Cimetière",48.673453,2.140433,0,0,OIF:SA:24:15111,Europe/Paris,,OIF, +OIF:SP:24:15112,1,"Cimetière",48.673454,2.140854,0,0,OIF:SA:24:15111,Europe/Paris,,OIF, +OIF:SP:24:15113,1,"Fauvettes",48.673397,2.144315,0,0,OIF:SA:24:15113,Europe/Paris,,OIF, +OIF:SP:24:15114,1,"Fauvettes",48.673477,2.144274,0,0,OIF:SA:24:15113,Europe/Paris,,OIF, +OIF:SP:24:15115,1,"Rochers",48.673034,2.148063,0,0,OIF:SA:24:15115,Europe/Paris,,OIF, +OIF:SP:24:15116,1,"Rochers",48.673061,2.148361,0,0,OIF:SA:24:15115,Europe/Paris,,OIF, +OIF:SP:24:15118,1,"Mesnil-Centre",48.742008,1.963963,0,0,OIF:SA:24:15118,Europe/Paris,,OIF, +OIF:SP:24:15119,1,"Mare Chevalier",48.743963,2.116913,0,0,OIF:SA:24:15119,Europe/Paris,,OIF, +OIF:SP:24:15120,1,"Mare Chevalier",48.743981,2.116981,0,0,OIF:SA:24:15119,Europe/Paris,,OIF, +OIF:SP:24:15121,1,"La Perruche",48.739905,2.096138,0,0,OIF:SA:24:15121,Europe/Paris,,OIF, +OIF:SP:24:15122,1,"La Perruche",48.739815,2.096288,0,0,OIF:SA:24:15121,Europe/Paris,,OIF, +OIF:SP:24:15127,1,"Porchefontaine",48.798285,2.152749,0,0,OIF:SA:8739316,Europe/Paris,,OIF, +OIF:SP:24:15128,1,"Porchefontaine",48.798473,2.15249,0,0,OIF:SA:8739316,Europe/Paris,,OIF, +OIF:SP:24:15129,1,"Pont Saint-Martin",48.792862,2.128772,0,0,OIF:SA:24:15129,Europe/Paris,,OIF, +OIF:SP:24:15131,1,"Place Simone Weil",48.71197,2.033816,0,0,OIF:SA:24:15131,Europe/Paris,,OIF, +OIF:SP:24:15132,1,"Chemin de Broderne",48.614086,1.980715,0,0,OIF:SA:24:15132,Europe/Paris,,OIF, +OIF:SP:24:15133,1,"Le Petit Plessis",48.569923,1.960862,0,0,OIF:SA:24:15133,Europe/Paris,,OIF, +OIF:SP:24:15134,1,"Le Petit Plessis",48.569967,1.960712,0,0,OIF:SA:24:15133,Europe/Paris,,OIF, +OIF:SP:24:15135,1,"Reculet",48.568917,1.972748,0,0,OIF:SA:24:15135,Europe/Paris,,OIF, +OIF:SP:24:15136,1,"Reculet",48.568909,1.972897,0,0,OIF:SA:24:15135,Europe/Paris,,OIF, +OIF:SP:24:15137,1,"Bouc Étourdi",48.55609,2.003658,0,0,OIF:SA:24:15137,Europe/Paris,,OIF, +OIF:SP:24:15138,1,"Bouc Étourdi",48.556055,2.00378,0,0,OIF:SA:24:15137,Europe/Paris,,OIF, +OIF:SP:24:15139,1,"Péage de Longvilliers",48.565869,1.987505,0,0,OIF:SA:24:15139,Europe/Paris,,OIF, +OIF:SP:24:15140,1,"Péage de Longvilliers",48.565671,1.987398,0,0,OIF:SA:24:15139,Europe/Paris,,OIF, +OIF:SP:24:15141,1,"Ferme de Noncienne",48.629997,2.018794,0,0,OIF:SA:24:15141,Europe/Paris,,OIF, +OIF:SP:24:15142,1,"Ferme de Noncienne",48.629917,2.019038,0,0,OIF:SA:24:15141,Europe/Paris,,OIF, +OIF:SP:24:15143,1,"Rue des Noyers",48.669423,2.167794,0,0,OIF:SA:24:15143,Europe/Paris,,OIF, +OIF:SP:24:15144,1,"Rue des Noyers",48.66945,2.167713,0,0,OIF:SA:24:15143,Europe/Paris,,OIF, +OIF:SP:24:15145,1,"Rue du Château de Saint-Jean",48.664793,2.166982,0,0,OIF:SA:24:15145,Europe/Paris,,OIF, +OIF:SP:24:15146,1,"Hameau de la Gâtine",48.671458,2.183735,0,0,OIF:SA:24:15146,Europe/Paris,,OIF, +OIF:SP:24:15147,1,"Hameau de la Gâtine",48.67144,2.183735,0,0,OIF:SA:24:15146,Europe/Paris,,OIF, +OIF:SP:24:15148,1,"Villeziers la Mare",48.673284,2.171175,0,0,OIF:SA:24:15148,Europe/Paris,,OIF, +OIF:SP:24:15149,1,"Villeziers la Mare",48.673365,2.171148,0,0,OIF:SA:24:15148,Europe/Paris,,OIF, +OIF:SP:24:15150,1,"Hameau de Grivery",48.671597,2.15484,0,0,OIF:SA:24:15150,Europe/Paris,,OIF, +OIF:SP:24:15151,1,"Hameau de Grivery",48.67166,2.154908,0,0,OIF:SA:24:15150,Europe/Paris,,OIF, +OIF:SP:24:15152,1,"Collège des Goussson",48.687432,2.115768,0,0,OIF:SA:24:15152,Europe/Paris,,OIF, +OIF:SP:24:15153,1,"Collège des Goussons",48.687549,2.115658,0,0,OIF:SA:24:15152,Europe/Paris,,OIF, +OIF:SP:24:15154,1,"Mairie",48.579112,1.991061,0,0,OIF:SA:24:15154,Europe/Paris,,OIF, +OIF:SP:24:15155,1,"Mairie",48.579391,1.990951,0,0,OIF:SA:24:15154,Europe/Paris,,OIF, +OIF:SP:24:15156,1,"École",48.58344,1.986331,0,0,OIF:SA:24:15156,Europe/Paris,,OIF, +OIF:SP:24:15157,1,"École",48.583521,1.986317,0,0,OIF:SA:24:15156,Europe/Paris,,OIF, +OIF:SP:24:15158,1,"Les Petits Chaillots",48.59548,1.993446,0,0,OIF:SA:24:15158,Europe/Paris,,OIF, +OIF:SP:24:15159,1,"Les Petits Chaillots",48.596145,1.993401,0,0,OIF:SA:24:15158,Europe/Paris,,OIF, +OIF:SP:24:15160,1,"Gué d'Aulnes",48.607698,1.996957,0,0,OIF:SA:24:15160,Europe/Paris,,OIF, +OIF:SP:24:15161,1,"Gué d'Aulnes",48.607544,1.996836,0,0,OIF:SA:24:15160,Europe/Paris,,OIF, +OIF:SP:24:15162,1,"Rond-Point des Écoles",48.671501,2.123992,0,0,OIF:SA:24:15162,Europe/Paris,,OIF, +OIF:SP:24:15163,1,"Rond-Point des Écoles",48.67142,2.123748,0,0,OIF:SA:24:15162,Europe/Paris,,OIF, +OIF:SP:24:15164,1,"Mauregard",48.679751,2.094992,0,0,OIF:SA:24:15164,Europe/Paris,,OIF, +OIF:SP:24:15165,1,"Mauregard",48.679805,2.094923,0,0,OIF:SA:24:15164,Europe/Paris,,OIF, +OIF:SP:24:15166,1,"Trou Salé",48.749946,2.119919,0,0,OIF:SA:24:15166,Europe/Paris,,OIF, +OIF:SP:24:15167,1,"Launay-Maréchaux",48.614841,2.108199,0,0,OIF:SA:24:15167,Europe/Paris,,OIF, +OIF:SP:24:15168,1,"L'Orme Gras",48.602543,2.127052,0,0,OIF:SA:24:15168,Europe/Paris,,OIF, +OIF:SP:24:15169,1,"L'Orme Gras",48.602687,2.127377,0,0,OIF:SA:24:15168,Europe/Paris,,OIF, +OIF:SP:24:15170,1,"Louvois",48.780368,2.195545,0,0,OIF:SA:59876,Europe/Paris,,OIF, +OIF:SP:24:15171,1,"Europe Sud",48.779685,2.203897,0,0,OIF:SA:24:14922,Europe/Paris,,OIF, +OIF:SP:24:15172,1,"Inovel Parc Nord",48.781624,2.209196,0,0,OIF:SA:59874,Europe/Paris,,OIF, +OIF:SP:24:15174,1,"Dewoitine",48.782915,2.215014,0,0,OIF:SA:59872,Europe/Paris,,OIF, +OIF:SP:24:15175,1,"Centre Commercial Vélizy 2",48.782746,2.216701,0,0,OIF:SA:59872,Europe/Paris,,OIF, +OIF:SP:24:15176,1,"Ravel",48.781573,2.181805,0,0,OIF:SA:59880,Europe/Paris,,OIF, +OIF:SP:24:15177,1,"Côte de la Gruerie",48.692549,2.107694,0,0,OIF:SA:24:15177,Europe/Paris,,OIF, +OIF:SP:24:15178,1,"Buccolines",48.770462,2.112953,0,0,OIF:SA:24:15178,Europe/Paris,,OIF, +OIF:SP:24:15179,1,"Château - Massotte",48.771202,2.124317,0,0,OIF:SA:24:15179,Europe/Paris,,OIF, +OIF:SP:24:15180,1,"Fort de Buc",48.769105,2.113162,0,0,OIF:SA:24:14932,Europe/Paris,,OIF, +OIF:SP:24:15181,1,"ZI Nord",48.768892,2.124354,0,0,OIF:SA:24:15181,Europe/Paris,,OIF, +OIF:SP:24:15182,1,"Hôtel de Ville",48.801728,2.131131,0,0,OIF:SA:24:15182,Europe/Paris,,OIF, +OIF:SP:24:15183,1,"Arcades",48.774921,2.133359,0,0,OIF:SA:24:14931,Europe/Paris,,OIF, +OIF:SP:24:15184,1,"Blériot - Jean Casale",48.76917,2.12903,0,0,OIF:SA:24:15184,Europe/Paris,,OIF, +OIF:SP:24:15185,1,"Roland Garros",48.763109,2.117471,0,0,OIF:SA:24:14800,Europe/Paris,,OIF, +OIF:SP:24:15186,1,"ZA du Bois des Roches",48.741296,2.086496,0,0,OIF:SA:24:15186,Europe/Paris,,OIF, +OIF:SP:24:15187,1,"ZA du Bois des Roches",48.741296,2.086496,0,0,OIF:SA:24:15186,Europe/Paris,,OIF, +OIF:SP:24:15188,1,"Geneviève Aubé",48.743816,2.083576,0,0,OIF:SA:24:15188,Europe/Paris,,OIF, +OIF:SP:24:15189,1,"Geneviève Aubé",48.74387,2.083616,0,0,OIF:SA:24:15188,Europe/Paris,,OIF, +OIF:SP:24:15190,1,"Rue du Lavoir",48.63243,2.060548,0,0,OIF:SA:24:15190,Europe/Paris,,OIF, +OIF:SP:24:15191,1,"Rue du Lavoir",48.632457,2.060562,0,0,OIF:SA:24:15190,Europe/Paris,,OIF, +OIF:SP:24:15192,1,"Gare Routière Vélizy 2",48.785319,2.218926,0,0,OIF:SA:59870,Europe/Paris,,OIF, +OIF:SP:24:15193,1,"Exelmans",48.779985,2.199122,0,0,OIF:SA:59876,Europe/Paris,,OIF, +OIF:SP:24:15194,1,"Sqy Ouest",48.783461,2.040294,0,0,OIF:SA:24:14939,Europe/Paris,,OIF, +OIF:SP:24:15195,1,"Lycée Émilie de Breteuil",48.78144,2.040578,0,0,OIF:SA:24:15195,Europe/Paris,,OIF, +OIF:SP:24:15196,1,"Place Étienne Marcel",48.780223,2.042869,0,0,OIF:SA:24:14937,Europe/Paris,,OIF, +OIF:SP:24:15197,1,"Université Vauban-d'Alembert",48.778906,2.044699,0,0,OIF:SA:24:14935,Europe/Paris,,OIF, +OIF:SP:24:15198,1,"Hameau de Troux",48.776089,2.046837,0,0,OIF:SA:24:14936,Europe/Paris,,OIF, +OIF:SP:24:15199,1,"D'Alembert",48.773589,2.046402,0,0,OIF:SA:24:15199,Europe/Paris,,OIF, +OIF:SP:24:15200,1,"Jean Monnet",48.769668,2.060443,0,0,OIF:SA:24:15200,Europe/Paris,,OIF, +OIF:SP:24:15201,1,"Le Corbusier",48.765192,2.06804,0,0,OIF:SA:24:15201,Europe/Paris,,OIF, +OIF:SP:24:15202,1,"Jules Michelet",48.766412,2.07097,0,0,OIF:SA:24:15202,Europe/Paris,,OIF, +OIF:SP:24:15203,1,"40 Arpents",48.768891,2.074642,0,0,OIF:SA:24:14934,Europe/Paris,,OIF, +OIF:SP:24:15204,1,"Dampierre",48.77116,2.0806,0,0,OIF:SA:24:15204,Europe/Paris,,OIF, +OIF:SP:24:15205,1,"La Minière",48.774259,2.092511,0,0,OIF:SA:24:15205,Europe/Paris,,OIF, +OIF:SP:24:15206,1,"Pommeraie",48.770691,2.105758,0,0,OIF:SA:24:14933,Europe/Paris,,OIF, +OIF:SP:24:15207,1,"Baratage",48.686415,2.151693,0,0,OIF:SA:24:15207,Europe/Paris,,OIF, +OIF:SP:24:15208,1,"Baratage",48.686271,2.151354,0,0,OIF:SA:24:15207,Europe/Paris,,OIF, +OIF:SP:24:15209,1,"Cimetière",48.573914,1.946921,0,0,OIF:SA:24:15209,Europe/Paris,,OIF, +OIF:SP:24:15210,1,"Domaine des Aulnes",48.617709,1.999265,0,0,OIF:SA:24:15210,Europe/Paris,,OIF, +OIF:SP:24:15211,1,"Bel Air - Parc d'Activités",48.611848,2.166897,0,0,OIF:SA:24:15211,Europe/Paris,,OIF, +OIF:SP:24:15212,1,"Bel Air - Parc d'Activités",48.612055,2.167086,0,0,OIF:SA:24:15211,Europe/Paris,,OIF, +OIF:SP:24:15213,1,"Rue des Vignes",48.620416,2.150274,0,0,OIF:SA:24:15213,Europe/Paris,,OIF, +OIF:SP:24:15215,1,"Rue de l'Étape",48.714447,2.144163,0,0,OIF:SA:24:10769,Europe/Paris,,OIF, +OIF:SP:24:15216,1,"Grand Mesnil",48.695897,2.175516,0,0,OIF:SA:24:14758,Europe/Paris,,OIF, +OIF:SP:24:15218,1,"Domaine de Marivaux",48.63484,2.165764,0,0,OIF:SA:24:15218,Europe/Paris,,OIF, +OIF:SP:24:15219,1,"Mlk / Lfa",48.769031,2.121634,0,0,OIF:SA:24:14960,Europe/Paris,,OIF, +OIF:SP:24:15220,1,"Mlk / Lfa",48.770962,2.121218,0,0,OIF:SA:24:14960,Europe/Paris,,OIF, +OIF:SP:24:15221,1,"Mlk / Lfa",48.771098,2.121408,0,0,OIF:SA:24:14960,Europe/Paris,,OIF, +OIF:SP:24:15222,1,"Gare du Petit-Jouy",48.771628,2.147568,0,0,OIF:SA:8739350,Europe/Paris,,OIF, +OIF:SP:24:15223,1,"Gare du Petit-Jouy",48.771727,2.147744,0,0,OIF:SA:8739350,Europe/Paris,,OIF, +OIF:SP:24:15224,1,"Monument",48.764617,2.142005,0,0,OIF:SA:24:15224,Europe/Paris,,OIF, +OIF:SP:24:15225,1,"Église",48.764829,2.140115,0,0,OIF:SA:24:15225,Europe/Paris,,OIF, +OIF:SP:24:15226,1,"Église",48.764821,2.140387,0,0,OIF:SA:24:15225,Europe/Paris,,OIF, +OIF:SP:24:15227,1,"La Garenne",48.763844,2.136706,0,0,OIF:SA:24:15227,Europe/Paris,,OIF, +OIF:SP:24:15228,1,"Zone d'Activités",48.762601,2.134957,0,0,OIF:SA:24:15228,Europe/Paris,,OIF, +OIF:SP:24:15229,1,"Porte des Loges",48.760745,2.132503,0,0,OIF:SA:24:15229,Europe/Paris,,OIF, +OIF:SP:24:15230,1,"La Logeraie",48.766109,2.136874,0,0,OIF:SA:24:15230,Europe/Paris,,OIF, +OIF:SP:24:15231,1,"Central PTT",48.762066,2.137732,0,0,OIF:SA:24:15231,Europe/Paris,,OIF, +OIF:SP:24:15232,1,"Gare de Versailles-Chantiers",48.796238,2.137288,0,0,OIF:SA:8739300,Europe/Paris,,OIF, +OIF:SP:24:15234,1,"Raoul Dautry CEA",48.723904,2.156192,0,0,OIF:SA:24:15092,Europe/Paris,,OIF, +OIF:SP:24:15235,1,"Christ de Saclay",48.729972,2.162461,0,0,OIF:SA:24:15235,Europe/Paris,,OIF, +OIF:SP:24:15236,1,"Village",48.725616,2.048898,0,0,OIF:SA:24:15236,Europe/Paris,,OIF, +OIF:SP:24:15237,1,"La Brosse",48.727807,2.000287,0,0,OIF:SA:24:15237,Europe/Paris,,OIF, +OIF:SP:24:15238,1,"Collège Saint-François d'Assise",48.767304,2.020848,0,0,OIF:SA:24:15238,Europe/Paris,,OIF, +OIF:SP:24:15239,1,"Lycée Descartes",48.76483,2.037341,0,0,OIF:SA:24:15239,Europe/Paris,,OIF, +OIF:SP:24:15240,1,"Port Royal",48.737012,2.016915,0,0,OIF:SA:24:15240,Europe/Paris,,OIF, +OIF:SP:24:15241,1,"Place",48.732207,2.021388,0,0,OIF:SA:24:15241,Europe/Paris,,OIF, +OIF:SP:24:15242,1,"Gare Autoroutière",48.616001,2.127662,0,0,OIF:SA:24:14896,Europe/Paris,,OIF, +OIF:SP:24:15243,1,"Gare Autoroutière",48.616226,2.127729,0,0,OIF:SA:24:14896,Europe/Paris,,OIF, +OIF:SP:24:15244,1,"Saint-Nicolas",48.677154,2.133389,0,0,OIF:SA:24:15244,Europe/Paris,,OIF, +OIF:SP:24:15245,1,"Saint-Nicolas",48.677353,2.134175,0,0,OIF:SA:24:15244,Europe/Paris,,OIF, +OIF:SP:24:15246,1,"Lavoir",48.669723,2.119724,0,0,OIF:SA:24:15246,Europe/Paris,,OIF, +OIF:SP:24:15247,1,"Lavoir",48.669578,2.119494,0,0,OIF:SA:24:15246,Europe/Paris,,OIF, +OIF:SP:24:15248,1,"Christ de Saclay",48.730008,2.162489,0,0,OIF:SA:24:15235,Europe/Paris,,OIF, +OIF:SP:24:15251,1,"Fond Fanet",48.709304,2.127192,0,0,OIF:SA:24:15093,Europe/Paris,,OIF, +OIF:SP:24:15252,1,"Les Moulins",48.698398,2.125375,0,0,OIF:SA:24:15094,Europe/Paris,,OIF, +OIF:SP:24:15253,1,"Chemin de Broderne",48.613987,1.980702,0,0,OIF:SA:24:15132,Europe/Paris,,OIF, +OIF:SP:24:15254,1,"Rue du Château de Saint-Jean",48.664604,2.167186,0,0,OIF:SA:24:15145,Europe/Paris,,OIF, +OIF:SP:24:15255,1,"Mérantais",48.751646,2.068096,0,0,OIF:SA:24:15255,Europe/Paris,,OIF, +OIF:SP:24:15256,1,"Côte de la Gruerie",48.692576,2.107545,0,0,OIF:SA:24:15177,Europe/Paris,,OIF, +OIF:SP:24:15257,1,"Clos Moissons",48.626813,2.126656,0,0,OIF:SA:24:14906,Europe/Paris,,OIF, +OIF:SP:24:15258,1,"Launay-Maréchaux",48.614841,2.108105,0,0,OIF:SA:24:15167,Europe/Paris,,OIF, +OIF:SP:24:15259,1,"Hauts de Chevreuse Place",48.712512,2.056876,0,0,OIF:SA:24:14997,Europe/Paris,,OIF, +OIF:SP:24:15260,1,"Gare de Courcelle - Lycée de la Vallée",48.700262,2.098739,0,0,OIF:SA:8775888,Europe/Paris,,OIF, +OIF:SP:24:15261,1,"Pont de Sèvres",48.829397,2.230519,0,0,OIF:SA:59621,Europe/Paris,,OIF, +OIF:SP:24:15262,1,"Pont de Billancourt",48.826104,2.247827,0,0,OIF:SA:24:14942,Europe/Paris,,OIF, +OIF:SP:24:15263,1,"Cité des Cadres",48.786923,2.105713,0,0,OIF:SA:24:15263,Europe/Paris,,OIF, +OIF:SP:24:15264,1,"La Ferté",48.683343,2.01415,0,0,OIF:SA:24:15264,Europe/Paris,,OIF, +OIF:SP:24:15265,1,"Herbouvilliers",48.680083,2.032278,0,0,OIF:SA:24:15265,Europe/Paris,,OIF, +OIF:SP:24:15266,1,"Place",48.687149,2.018973,0,0,OIF:SA:24:14784,Europe/Paris,,OIF, +OIF:SP:24:15267,1,"Le Breuil",48.698396,2.026413,0,0,OIF:SA:24:14966,Europe/Paris,,OIF, +OIF:SP:24:15268,1,"Collège C. de Vivonne",48.647776,1.848937,0,0,OIF:SA:24:15268,Europe/Paris,,OIF, +OIF:SP:24:15269,1,"Allende",48.730289,2.257339,0,0,OIF:SA:24:15077,Europe/Paris,,OIF, +OIF:SP:24:15270,1,"Le Pileu",48.730078,2.239622,0,0,OIF:SA:24:15083,Europe/Paris,,OIF, +OIF:SP:24:15271,1,"Charles de Gaulle",48.734288,2.269889,0,0,OIF:SA:24:15075,Europe/Paris,,OIF, +OIF:SP:24:15272,1,"Gare SNCF",48.725129,2.256219,0,0,OIF:SA:8739357,Europe/Paris,,OIF, +OIF:SP:24:15273,1,"Carrefour de l'Éléphant",48.720371,2.251459,0,0,OIF:SA:24:15081,Europe/Paris,,OIF, +OIF:SP:24:15274,1,"Carnot",48.741224,2.265123,0,0,OIF:SA:24:15073,Europe/Paris,,OIF, +OIF:SP:24:15275,1,"Paron",48.745837,2.269017,0,0,OIF:SA:24:15071,Europe/Paris,,OIF, +OIF:SP:24:15276,1,"Les Antes",48.750171,2.272029,0,0,OIF:SA:24:15069,Europe/Paris,,OIF, +OIF:SP:24:15277,1,"Butte Rouge",48.765283,2.261052,0,0,OIF:SA:24:15065,Europe/Paris,,OIF, +OIF:SP:24:15278,1,"Faculté de Pharmacie",48.761765,2.270805,0,0,OIF:SA:24:15067,Europe/Paris,,OIF, +OIF:SP:24:15279,1,"Francis de Pressensé",48.766222,2.255054,0,0,OIF:SA:24:15063,Europe/Paris,,OIF, +OIF:SP:24:15280,1,"Ferme",48.769777,2.248835,0,0,OIF:SA:24:15061,Europe/Paris,,OIF, +OIF:SP:24:15281,1,"Place Victor Hugo",48.771913,2.164007,0,0,OIF:SA:24:15059,Europe/Paris,,OIF, +OIF:SP:24:15282,1,"Wagner",48.783434,2.175475,0,0,OIF:SA:59882,Europe/Paris,,OIF, +OIF:SP:24:15283,1,"Clinique",48.783334,2.230627,0,0,OIF:SA:59866,Europe/Paris,,OIF, +OIF:SP:24:15284,1,"Place du Garde",48.803497,2.256887,0,0,OIF:SA:24:15051,Europe/Paris,,OIF, +OIF:SP:24:15285,1,"Bois Brûlé",48.782393,2.270439,0,0,OIF:SA:24:15049,Europe/Paris,,OIF, +OIF:SP:24:15286,1,"Robinson",48.780039,2.273379,0,0,OIF:SA:24:15047,Europe/Paris,,OIF, +OIF:SP:24:15287,1,"RER B - Robinson",48.780439,2.281865,0,0,OIF:SA:8775872,Europe/Paris,,OIF, +OIF:SP:24:15288,1,"Allée du Côteau",48.706615,2.076641,0,0,OIF:SA:24:15288,Europe/Paris,,OIF, +OIF:SP:24:15289,1,"Allée du Côteau",48.706498,2.076587,0,0,OIF:SA:24:15288,Europe/Paris,,OIF, +OIF:SP:24:15290,1,"Gare de Vanves-Malakoff",48.818534,2.291434,0,0,OIF:SA:8739153,Europe/Paris,,OIF, +OIF:SP:24:15291,1,"Insurrection-Bleuzen",48.820655,2.291568,0,0,OIF:SA:24:15291,Europe/Paris,,OIF, +OIF:SP:24:15292,1,"Verdun",48.822067,2.29403,0,0,OIF:SA:24:15292,Europe/Paris,,OIF, +OIF:SP:24:15293,1,"Plateau de Vanves",48.823515,2.296901,0,0,OIF:SA:24:15293,Europe/Paris,,OIF, +OIF:SP:24:15294,1,"Carrefour Albert Legris",48.825302,2.293048,0,0,OIF:SA:24:15294,Europe/Paris,,OIF, +OIF:SP:24:15295,1,"Yol-Martin",48.825705,2.288637,0,0,OIF:SA:24:15295,Europe/Paris,,OIF, +OIF:SP:24:15296,1,"Baudouin",48.827429,2.284633,0,0,OIF:SA:24:15296,Europe/Paris,,OIF, +OIF:SP:24:15297,1,"Espace Murillo Lycée Michelet",48.823673,2.287917,0,0,OIF:SA:24:15297,Europe/Paris,,OIF, +OIF:SP:24:15298,1,"L'Ode",48.822533,2.289811,0,0,OIF:SA:24:15298,Europe/Paris,,OIF, +OIF:SP:24:15299,1,"Insurrection Cimetière",48.821149,2.291078,0,0,OIF:SA:24:15299,Europe/Paris,,OIF, +OIF:SP:24:15300,1,"Centre Administratif",48.820969,2.289131,0,0,OIF:SA:24:15300,Europe/Paris,,OIF, +OIF:SP:24:15301,1,"République",48.820922,2.285252,0,0,OIF:SA:24:15301,Europe/Paris,,OIF, +OIF:SP:24:15302,1,"Valentine Jacquet",48.820552,2.282653,0,0,OIF:SA:24:15302,Europe/Paris,,OIF, +OIF:SP:24:15303,1,"Jean-Baptiste Potin",48.819509,2.280531,0,0,OIF:SA:24:15303,Europe/Paris,,OIF, +OIF:SP:24:15304,1,"Mansart",48.817584,2.277212,0,0,OIF:SA:24:15304,Europe/Paris,,OIF, +OIF:SP:24:15305,1,"Général de Gaule",48.816999,2.275512,0,0,OIF:SA:24:15305,Europe/Paris,,OIF, +OIF:SP:24:15306,1,"Clos Montholon",48.815409,2.27697,0,0,OIF:SA:24:15306,Europe/Paris,,OIF, +OIF:SP:24:15308,1,"Aristide Briand",48.818074,2.288113,0,0,OIF:SA:24:15308,Europe/Paris,,OIF, +OIF:SP:24:15309,1,"Diderot",48.818694,2.286643,0,0,OIF:SA:24:15309,Europe/Paris,,OIF, +OIF:SP:24:15310,1,"Rue du Châtillon",48.818055,2.284466,0,0,OIF:SA:24:15310,Europe/Paris,,OIF, +OIF:SP:24:15311,1,"Baudelaire",48.817038,2.281772,0,0,OIF:SA:24:15311,Europe/Paris,,OIF, +OIF:SP:24:15312,1,"Stade",48.816336,2.280085,0,0,OIF:SA:24:15312,Europe/Paris,,OIF, +OIF:SP:24:15313,1,"Résidence Danton",48.824629,2.295839,0,0,OIF:SA:24:15313,Europe/Paris,,OIF, +OIF:SP:24:15314,1,"Gare de Vanves-Malakoff",48.818534,2.291434,0,0,OIF:SA:8739153,Europe/Paris,,OIF, +OIF:SP:24:15315,1,"Gare de Gif-sur-Yvette",48.697887,2.136838,0,0,OIF:SA:8775887,Europe/Paris,,OIF, +OIF:SP:24:15317,1,"Abbaye",48.695382,2.128049,0,0,OIF:SA:24:15317,Europe/Paris,,OIF, +OIF:SP:24:15318,1,"Abbaye",48.695807,2.129228,0,0,OIF:SA:24:15317,Europe/Paris,,OIF, +OIF:SP:24:15319,1,"Petits Ponts École",48.707477,2.037903,0,0,OIF:SA:24:15319,Europe/Paris,,OIF, +OIF:SP:24:15320,1,"ZI Nord",48.768838,2.124476,0,0,OIF:SA:24:15181,Europe/Paris,,OIF, +OIF:SP:24:15321,1,"Donnerie",48.591615,2.156014,0,0,OIF:SA:24:15321,Europe/Paris,,OIF, +OIF:SP:24:15322,1,"Cabane de la Galotterie",48.594157,2.155016,0,0,OIF:SA:24:15322,Europe/Paris,,OIF, +OIF:SP:24:15323,1,"Donnerie",48.586375,2.162699,0,0,OIF:SA:24:15321,Europe/Paris,,OIF, +OIF:SP:24:15324,1,"Cabane de la Galotterie",48.593852,2.15499,0,0,OIF:SA:24:15322,Europe/Paris,,OIF, +OIF:SP:24:15325,1,"Route de Villevert",48.631387,2.041772,0,0,OIF:SA:24:15325,Europe/Paris,,OIF, +OIF:SP:24:15326,1,"Route de Villevert",48.631396,2.041704,0,0,OIF:SA:24:15325,Europe/Paris,,OIF, +OIF:SP:24:15327,1,"Technocentre 60 Arpents",48.763151,2.084284,0,0,OIF:SA:24:15327,Europe/Paris,,OIF, +OIF:SP:24:15328,1,"Technocentre 60 Arpents",48.763105,2.083971,0,0,OIF:SA:24:15327,Europe/Paris,,OIF, +OIF:SP:24:15329,1,"La Minière",48.775156,2.091541,0,0,OIF:SA:24:15205,Europe/Paris,,OIF, +OIF:SP:24:15330,1,"La Minière",48.77539,2.091663,0,0,OIF:SA:24:15205,Europe/Paris,,OIF, +OIF:SP:24:15331,1,"Allouetterie",48.59932,2.06685,0,0,OIF:SA:24:15043,Europe/Paris,,OIF, +OIF:SP:24:15332,1,"Gare Autoroutière",48.616226,2.127729,0,0,OIF:SA:24:14896,Europe/Paris,,OIF, +OIF:SP:24:15333,1,"Gare de Versailles-Château-Rive-Gauche",48.800168,2.12809,0,0,OIF:SA:8739315,Europe/Paris,,OIF, +OIF:SP:24:15334,1,"Mare du Vivier CEA",48.718485,2.150981,0,0,OIF:SA:24:15334,Europe/Paris,,OIF, +OIF:SP:24:15335,1,"Mare du Vivier CEA",48.718503,2.150913,0,0,OIF:SA:24:15334,Europe/Paris,,OIF, +OIF:SP:24:15336,1,"Rue de la Louveterie",48.746133,1.963608,0,0,OIF:SA:24:15098,Europe/Paris,,OIF, +OIF:SP:24:15337,1,"Mesnil-Centre",48.742763,1.963754,0,0,OIF:SA:24:15118,Europe/Paris,,OIF, +OIF:SP:24:15338,1,"Gare de Saint-Rémy-lès-Chevreuse",48.703158,2.069855,0,0,OIF:SA:8775889,Europe/Paris,,OIF, +OIF:SP:24:15339,1,"Gare de Saint-Rémy-lès-Chevreuse",48.70296,2.069951,0,0,OIF:SA:8775889,Europe/Paris,,OIF, +OIF:SP:24:15340,1,"Gare de Courcelle - Lycée de la Vallée",48.700206,2.097707,0,0,OIF:SA:8775888,Europe/Paris,,OIF, +OIF:SP:24:15341,1,"Gare de Courcelle - Lycée de la Vallée",48.700262,2.098739,0,0,OIF:SA:8775888,Europe/Paris,,OIF, +OIF:SP:24:15342,1,"Chaumusson",48.652318,2.074159,0,0,OIF:SA:24:15342,Europe/Paris,,OIF, +OIF:SP:24:15343,1,"Chaumusson",48.652211,2.074403,0,0,OIF:SA:24:15342,Europe/Paris,,OIF, +OIF:SP:24:15344,1,"Gruerie",48.69652,2.106292,0,0,OIF:SA:24:15344,Europe/Paris,,OIF, +OIF:SP:24:15345,1,"Janvrerie",48.67561,2.071191,0,0,OIF:SA:24:10196,Europe/Paris,,OIF, +OIF:SP:24:15346,1,"Bel Air - Parc d'Activités",48.61183,2.167006,0,0,OIF:SA:24:15211,Europe/Paris,,OIF, +OIF:SP:24:15347,1,"La Brosse",48.728439,2.00137,0,0,OIF:SA:24:15237,Europe/Paris,,OIF, +OIF:SP:24:15348,1,"Porte des Loges",48.760808,2.132517,0,0,OIF:SA:24:15229,Europe/Paris,,OIF, +OIF:SP:24:15349,1,"ZI Nord",48.768929,2.125142,0,0,OIF:SA:24:15181,Europe/Paris,,OIF, +OIF:SP:24:15350,1,"ZI Nord",48.768668,2.12479,0,0,OIF:SA:24:15181,Europe/Paris,,OIF, +OIF:SP:24:15351,1,"Croix Blanche",48.761244,2.125146,0,0,OIF:SA:24:15351,Europe/Paris,,OIF, +OIF:SP:24:15352,1,"Farman",48.761286,2.123488,0,0,OIF:SA:24:14782,Europe/Paris,,OIF, +OIF:SP:24:15353,1,"Roland Garros",48.763235,2.117511,0,0,OIF:SA:24:14800,Europe/Paris,,OIF, +OIF:SP:24:15354,1,"Morane Saulnier",48.766551,2.11732,0,0,OIF:SA:24:15354,Europe/Paris,,OIF, +OIF:SP:24:15355,1,"Calmette",48.767767,2.118756,0,0,OIF:SA:24:15355,Europe/Paris,,OIF, +OIF:SP:24:15356,1,"ZA du Bois des Roches",48.741296,2.086496,0,0,OIF:SA:24:15186,Europe/Paris,,OIF, +OIF:SP:24:15357,1,"Le Parc",48.629508,2.072036,0,0,OIF:SA:24:15357,Europe/Paris,,OIF, +OIF:SP:24:15358,1,"Le Parc",48.629427,2.071847,0,0,OIF:SA:24:15357,Europe/Paris,,OIF, +OIF:SP:24:15359,1,"Ponts et Chaussées",48.792961,2.119167,0,0,OIF:SA:24:15359,Europe/Paris,,OIF, +OIF:SP:24:15360,1,"Ponts et Chaussées",48.793115,2.119847,0,0,OIF:SA:24:15359,Europe/Paris,,OIF, +OIF:SP:24:15361,1,"Clément Ader",48.78568,2.104155,0,0,OIF:SA:24:15361,Europe/Paris,,OIF, +OIF:SP:24:15362,1,"Clément Ader",48.7855,2.104128,0,0,OIF:SA:24:15361,Europe/Paris,,OIF, +OIF:SP:24:15363,1,"Satory Giat Industries",48.784257,2.102923,0,0,OIF:SA:24:15363,Europe/Paris,,OIF, +OIF:SP:24:15364,1,"Satory Giat Industries",48.784185,2.102964,0,0,OIF:SA:24:15363,Europe/Paris,,OIF, +OIF:SP:24:15365,1,"Les Marronniers",48.78486,2.098895,0,0,OIF:SA:24:15365,Europe/Paris,,OIF, +OIF:SP:24:15366,1,"Les Marronniers",48.784709,2.099453,0,0,OIF:SA:24:15365,Europe/Paris,,OIF, +OIF:SP:24:15367,1,"Parc d'Activités",48.785455,2.094975,0,0,OIF:SA:24:15367,Europe/Paris,,OIF, +OIF:SP:24:15368,1,"Parc d'Activités",48.785303,2.095601,0,0,OIF:SA:24:15367,Europe/Paris,,OIF, +OIF:SP:24:15369,1,"Satory Inrets",48.785907,2.092157,0,0,OIF:SA:24:15369,Europe/Paris,,OIF, +OIF:SP:24:15370,1,"Porte Est",48.694297,2.062989,0,0,OIF:SA:24:14944,Europe/Paris,,OIF, +OIF:SP:24:15371,1,"Collège des 3 Moulins",48.615403,2.02699,0,0,OIF:SA:24:15371,Europe/Paris,,OIF, +OIF:SP:24:15372,1,"Collège des 3 Moulins",48.615303,2.026747,0,0,OIF:SA:24:15371,Europe/Paris,,OIF, +OIF:SP:24:15373,1,"Technocentre le Gradient",48.763991,2.086509,0,0,OIF:SA:24:14788,Europe/Paris,,OIF, +OIF:SP:24:5478,1,"Grande Hogue",48.658663,1.912309,0,0,OIF:SA:24:5478,Europe/Paris,,OIF, +OIF:SP:24:5479,1,"Grande Hogue",48.6587,1.91277,0,0,OIF:SA:24:5478,Europe/Paris,,OIF, +OIF:SP:24:5482,1,"Les Brûlins",48.672309,1.890536,0,0,OIF:SA:24:5482,Europe/Paris,,OIF, +OIF:SP:24:5483,1,"Les Brûlins",48.672264,1.890618,0,0,OIF:SA:24:5482,Europe/Paris,,OIF, +OIF:SP:24:5489,1,"Saint-Benoist",48.675231,1.912907,0,0,OIF:SA:24:5489,Europe/Paris,,OIF, +OIF:SP:24:5490,1,"Saint-Benoist",48.675177,1.912907,0,0,OIF:SA:24:5489,Europe/Paris,,OIF, +OIF:SP:24:5631,1,"Capucins",48.619046,2.031361,0,0,OIF:SA:24:5631,Europe/Paris,,OIF, +OIF:SP:24:5632,1,"Capucins",48.619054,2.031239,0,0,OIF:SA:24:5631,Europe/Paris,,OIF, +OIF:SP:24:5633,1,"Château",48.622194,2.02535,0,0,OIF:SA:24:5633,Europe/Paris,,OIF, +OIF:SP:24:5634,1,"Château",48.621988,2.025392,0,0,OIF:SA:24:5633,Europe/Paris,,OIF, +OIF:SP:24:5635,1,"Collège des 3 Moulins",48.614625,2.025219,0,0,OIF:SA:24:15371,Europe/Paris,,OIF, +OIF:SP:24:5636,1,"Collège des 3 Moulins",48.614589,2.025178,0,0,OIF:SA:24:15371,Europe/Paris,,OIF, +OIF:SP:24:5637,1,"Croix Boisée",48.622649,2.027286,0,0,OIF:SA:24:5637,Europe/Paris,,OIF, +OIF:SP:24:5638,1,"Croix Boisée",48.622649,2.027517,0,0,OIF:SA:24:5637,Europe/Paris,,OIF, +OIF:SP:24:5699,1,"Audemars",48.76579,2.11867,0,0,OIF:SA:24:5699,Europe/Paris,,OIF, +OIF:SP:24:5700,1,"Audemars",48.765619,2.118833,0,0,OIF:SA:24:5699,Europe/Paris,,OIF, +OIF:SP:24:5703,1,"Blériot - Jean Casale",48.769242,2.129193,0,0,OIF:SA:24:15184,Europe/Paris,,OIF, +OIF:SP:24:5705,1,"Buccolines",48.770435,2.112817,0,0,OIF:SA:24:15178,Europe/Paris,,OIF, +OIF:SP:24:5707,1,"Calmette",48.768847,2.119636,0,0,OIF:SA:24:15355,Europe/Paris,,OIF, +OIF:SP:24:5708,1,"Calmette",48.768154,2.118972,0,0,OIF:SA:24:15355,Europe/Paris,,OIF, +OIF:SP:24:5709,1,"Cerf Volant",48.787297,2.133229,0,0,OIF:SA:24:5709,Europe/Paris,,OIF, +OIF:SP:24:5710,1,"Cerf Volant",48.785993,2.13273,0,0,OIF:SA:24:5709,Europe/Paris,,OIF, +OIF:SP:24:5713,1,"Château",48.770627,2.124836,0,0,OIF:SA:24:5713,Europe/Paris,,OIF, +OIF:SP:24:5715,1,"Fourny",48.764279,2.123013,0,0,OIF:SA:24:5715,Europe/Paris,,OIF, +OIF:SP:24:5716,1,"Fourny",48.764189,2.123109,0,0,OIF:SA:24:5715,Europe/Paris,,OIF, +OIF:SP:24:5717,1,"Genevrière",48.78183,2.132067,0,0,OIF:SA:24:5717,Europe/Paris,,OIF, +OIF:SP:24:5718,1,"Genevrière",48.780966,2.131526,0,0,OIF:SA:24:5717,Europe/Paris,,OIF, +OIF:SP:24:5719,1,"Haut Pré",48.770934,2.106002,0,0,OIF:SA:24:5719,Europe/Paris,,OIF, +OIF:SP:24:5725,1,"Massotte",48.771379,2.123188,0,0,OIF:SA:24:5725,Europe/Paris,,OIF, +OIF:SP:24:5727,1,"Morane Saulnier",48.767145,2.117821,0,0,OIF:SA:24:15354,Europe/Paris,,OIF, +OIF:SP:24:5728,1,"Morane Saulnier",48.76765,2.118607,0,0,OIF:SA:24:15354,Europe/Paris,,OIF, +OIF:SP:24:5734,1,"Sente du Haras",48.784564,2.132614,0,0,OIF:SA:24:5734,Europe/Paris,,OIF, +OIF:SP:24:5735,1,"Sente du Haras",48.784402,2.132505,0,0,OIF:SA:24:5734,Europe/Paris,,OIF, +OIF:SP:24:5736,1,"Tabuteau",48.762957,2.122991,0,0,OIF:SA:24:5736,Europe/Paris,,OIF, +OIF:SP:24:5737,1,"Tabuteau",48.762597,2.122558,0,0,OIF:SA:24:5736,Europe/Paris,,OIF, +OIF:SP:24:5738,1,"Ville",48.776129,2.130172,0,0,OIF:SA:24:5738,Europe/Paris,,OIF, +OIF:SP:24:5739,1,"Ville",48.7762,2.129913,0,0,OIF:SA:24:5738,Europe/Paris,,OIF, +OIF:SP:24:5740,1,"Croix Blanche",48.761244,2.12516,0,0,OIF:SA:24:15351,Europe/Paris,,OIF, +OIF:SP:24:5741,1,"Croix Blanche",48.760398,2.124293,0,0,OIF:SA:24:15351,Europe/Paris,,OIF, +OIF:SP:24:5772,1,"Clairière",48.622066,2.007711,0,0,OIF:SA:24:5772,Europe/Paris,,OIF, +OIF:SP:24:5773,1,"Clairière",48.622119,2.007602,0,0,OIF:SA:24:5772,Europe/Paris,,OIF, +OIF:SP:24:5775,1,"Domaine des Aulnes",48.618446,1.999328,0,0,OIF:SA:24:15210,Europe/Paris,,OIF, +OIF:SP:24:5776,1,"École",48.620914,2.001034,0,0,OIF:SA:24:5776,Europe/Paris,,OIF, +OIF:SP:24:5777,1,"École",48.620923,2.000939,0,0,OIF:SA:24:5776,Europe/Paris,,OIF, +OIF:SP:24:5778,1,"Les Garennes",48.627981,1.998384,0,0,OIF:SA:24:5778,Europe/Paris,,OIF, +OIF:SP:24:5779,1,"Les Garennes",48.628035,1.998316,0,0,OIF:SA:24:5778,Europe/Paris,,OIF, +OIF:SP:24:5780,1,"Les Orantes",48.631607,2.01557,0,0,OIF:SA:24:14737,Europe/Paris,,OIF, +OIF:SP:24:5781,1,"Hpr",48.636287,2.007987,0,0,OIF:SA:24:5781,Europe/Paris,,OIF, +OIF:SP:24:5782,1,"Hpr",48.636369,2.008135,0,0,OIF:SA:24:5781,Europe/Paris,,OIF, +OIF:SP:24:5783,1,"Longchêne Place",48.638573,2.002357,0,0,OIF:SA:24:5783,Europe/Paris,,OIF, +OIF:SP:24:5784,1,"Longchêne Place",48.638572,2.001991,0,0,OIF:SA:24:5783,Europe/Paris,,OIF, +OIF:SP:24:5785,1,"Place du Presbytère",48.62236,1.997187,0,0,OIF:SA:24:5785,Europe/Paris,,OIF, +OIF:SP:24:5786,1,"Place du Presbytère",48.622359,1.997106,0,0,OIF:SA:24:5785,Europe/Paris,,OIF, +OIF:SP:24:5803,1,"Les Cottages",48.674776,1.979254,0,0,OIF:SA:24:5803,Europe/Paris,,OIF, +OIF:SP:24:5804,1,"Les Cottages",48.674688,1.979865,0,0,OIF:SA:24:5803,Europe/Paris,,OIF, +OIF:SP:24:5805,1,"Place",48.673508,1.97325,0,0,OIF:SA:24:5805,Europe/Paris,,OIF, +OIF:SP:24:5806,1,"Place",48.673684,1.972095,0,0,OIF:SA:24:5805,Europe/Paris,,OIF, +OIF:SP:24:5807,1,"Saint-Robert",48.668129,1.94392,0,0,OIF:SA:24:5807,Europe/Paris,,OIF, +OIF:SP:24:5808,1,"Saint-Robert",48.668308,1.943797,0,0,OIF:SA:24:5807,Europe/Paris,,OIF, +OIF:SP:24:5833,1,"Le Thuit",48.732569,2.104569,0,0,OIF:SA:24:5833,Europe/Paris,,OIF, +OIF:SP:24:5834,1,"Le Thuit",48.733332,2.104185,0,0,OIF:SA:24:5833,Europe/Paris,,OIF, +OIF:SP:24:5835,1,"Place",48.736397,2.090529,0,0,OIF:SA:24:5835,Europe/Paris,,OIF, +OIF:SP:24:5836,1,"Place",48.736505,2.090515,0,0,OIF:SA:24:5835,Europe/Paris,,OIF, +OIF:SP:24:5839,1,"Route de Chevreuse",48.731843,2.092031,0,0,OIF:SA:24:5839,Europe/Paris,,OIF, +OIF:SP:24:5840,1,"Route de Chevreuse",48.731851,2.0918,0,0,OIF:SA:24:5839,Europe/Paris,,OIF, +OIF:SP:24:5841,1,"Trinité",48.733454,2.093192,0,0,OIF:SA:24:5841,Europe/Paris,,OIF, +OIF:SP:24:5842,1,"Trinité",48.733319,2.09288,0,0,OIF:SA:24:5841,Europe/Paris,,OIF, +OIF:SP:24:5867,1,"Butte des Vignes",48.707602,2.048455,0,0,OIF:SA:24:5867,Europe/Paris,,OIF, +OIF:SP:24:5868,1,"Butte des Vignes",48.707467,2.048415,0,0,OIF:SA:24:5867,Europe/Paris,,OIF, +OIF:SP:24:5869,1,"Centre",48.707553,2.039451,0,0,OIF:SA:24:5869,Europe/Paris,,OIF, +OIF:SP:24:5870,1,"Centre",48.707409,2.039588,0,0,OIF:SA:24:5869,Europe/Paris,,OIF, +OIF:SP:24:5871,1,"Chemin des Regains",48.704647,2.0383,0,0,OIF:SA:24:5871,Europe/Paris,,OIF, +OIF:SP:24:5872,1,"Chemin des Regains",48.704512,2.038219,0,0,OIF:SA:24:5871,Europe/Paris,,OIF, +OIF:SP:24:5873,1,"Chardonnettes",48.704625,2.029826,0,0,OIF:SA:24:5873,Europe/Paris,,OIF, +OIF:SP:24:5874,1,"Chardonnettes",48.704598,2.02988,0,0,OIF:SA:24:5873,Europe/Paris,,OIF, +OIF:SP:24:5875,1,"Cimetière",48.706108,2.033103,0,0,OIF:SA:24:5875,Europe/Paris,,OIF, +OIF:SP:24:5876,1,"Cimetière",48.705964,2.033186,0,0,OIF:SA:24:5875,Europe/Paris,,OIF, +OIF:SP:24:5877,1,"Collège P. de Coubertin",48.70369,2.044199,0,0,OIF:SA:24:5877,Europe/Paris,,OIF, +OIF:SP:24:5878,1,"Collège P. de Coubertin",48.703718,2.044348,0,0,OIF:SA:24:5877,Europe/Paris,,OIF, +OIF:SP:24:5879,1,"Diderot",48.714898,2.062609,0,0,OIF:SA:24:5879,Europe/Paris,,OIF, +OIF:SP:24:5880,1,"Diderot",48.714898,2.062527,0,0,OIF:SA:24:5879,Europe/Paris,,OIF, +OIF:SP:24:5881,1,"Garage",48.7065,2.035614,0,0,OIF:SA:24:5881,Europe/Paris,,OIF, +OIF:SP:24:5882,1,"Garage",48.706565,2.036224,0,0,OIF:SA:24:5881,Europe/Paris,,OIF, +OIF:SP:24:5883,1,"Hauts de Chevreuse",48.708136,2.061436,0,0,OIF:SA:24:5883,Europe/Paris,,OIF, +OIF:SP:24:5884,1,"Hauts de Chevreuse",48.707776,2.061248,0,0,OIF:SA:24:5883,Europe/Paris,,OIF, +OIF:SP:24:5885,1,"Trou Rouge",48.696629,2.021183,0,0,OIF:SA:24:14763,Europe/Paris,,OIF, +OIF:SP:24:5886,1,"La Tuilerie",48.710018,2.036707,0,0,OIF:SA:24:5886,Europe/Paris,,OIF, +OIF:SP:24:5887,1,"La Tuilerie",48.709919,2.036803,0,0,OIF:SA:24:5886,Europe/Paris,,OIF, +OIF:SP:24:5888,1,"Le Moulin",48.70699,2.051854,0,0,OIF:SA:24:5888,Europe/Paris,,OIF, +OIF:SP:24:5889,1,"Le Moulin",48.706828,2.051814,0,0,OIF:SA:24:5888,Europe/Paris,,OIF, +OIF:SP:24:5890,1,"Les Côteaux",48.711943,2.063385,0,0,OIF:SA:24:5890,Europe/Paris,,OIF, +OIF:SP:24:5891,1,"Les Côteaux",48.711943,2.06329,0,0,OIF:SA:24:5890,Europe/Paris,,OIF, +OIF:SP:24:5893,1,"Les Tourelles",48.716335,2.062044,0,0,OIF:SA:24:5893,Europe/Paris,,OIF, +OIF:SP:24:5894,1,"Mairie",48.707618,2.044055,0,0,OIF:SA:24:5894,Europe/Paris,,OIF, +OIF:SP:24:5895,1,"Mairie",48.707456,2.044042,0,0,OIF:SA:24:5894,Europe/Paris,,OIF, +OIF:SP:24:5896,1,"Petits Ponts",48.707467,2.037645,0,0,OIF:SA:24:15319,Europe/Paris,,OIF, +OIF:SP:24:5897,1,"Petits Ponts",48.707036,2.037525,0,0,OIF:SA:24:15319,Europe/Paris,,OIF, +OIF:SP:24:5898,1,"Saint-Lubin",48.706588,2.056514,0,0,OIF:SA:24:5898,Europe/Paris,,OIF, +OIF:SP:24:5899,1,"Saint-Lubin",48.706399,2.056542,0,0,OIF:SA:24:5898,Europe/Paris,,OIF, +OIF:SP:24:5900,1,"Trottigny",48.718286,2.01233,0,0,OIF:SA:24:5900,Europe/Paris,,OIF, +OIF:SP:24:5901,1,"Trottigny",48.718133,2.012141,0,0,OIF:SA:24:5900,Europe/Paris,,OIF, +OIF:SP:24:5902,1,"Herbouvilliers",48.680128,2.032237,0,0,OIF:SA:24:15265,Europe/Paris,,OIF, +OIF:SP:24:5904,1,"La Ferté",48.683253,2.014192,0,0,OIF:SA:24:15264,Europe/Paris,,OIF, +OIF:SP:24:5910,1,"Scierie",48.690754,2.015652,0,0,OIF:SA:24:5910,Europe/Paris,,OIF, +OIF:SP:24:5911,1,"Scierie",48.690673,2.015503,0,0,OIF:SA:24:5910,Europe/Paris,,OIF, +OIF:SP:24:5912,1,"Bel Air",48.683479,2.001674,0,0,OIF:SA:24:5912,Europe/Paris,,OIF, +OIF:SP:24:5913,1,"Bel Air",48.683561,2.001891,0,0,OIF:SA:24:5912,Europe/Paris,,OIF, +OIF:SP:24:6004,1,"Château",48.706559,1.988066,0,0,OIF:SA:24:6004,Europe/Paris,,OIF, +OIF:SP:24:6005,1,"Château",48.706451,1.988121,0,0,OIF:SA:24:6004,Europe/Paris,,OIF, +OIF:SP:24:6006,1,"Écoles",48.702334,1.981957,0,0,OIF:SA:24:6006,Europe/Paris,,OIF, +OIF:SP:24:6007,1,"Écoles",48.702235,1.981998,0,0,OIF:SA:24:6006,Europe/Paris,,OIF, +OIF:SP:24:6008,1,"Fourcherolles",48.698326,1.979146,0,0,OIF:SA:24:6008,Europe/Paris,,OIF, +OIF:SP:24:6009,1,"Fourcherolles",48.698281,1.979282,0,0,OIF:SA:24:6008,Europe/Paris,,OIF, +OIF:SP:24:6010,1,"Maincourt",48.715369,1.964684,0,0,OIF:SA:24:6010,Europe/Paris,,OIF, +OIF:SP:24:6011,1,"Maincourt",48.715216,1.96459,0,0,OIF:SA:24:6010,Europe/Paris,,OIF, +OIF:SP:24:6012,1,"Moulin des Roches",48.711923,1.975453,0,0,OIF:SA:24:6012,Europe/Paris,,OIF, +OIF:SP:24:6013,1,"Moulin des Roches",48.71162,1.976039,0,0,OIF:SA:24:6012,Europe/Paris,,OIF, +OIF:SP:24:6099,1,"Collège les Molières",48.722099,1.898178,0,0,OIF:SA:24:6099,Europe/Paris,,OIF, +OIF:SP:24:6100,1,"Collège les Molières",48.722179,1.898082,0,0,OIF:SA:24:6099,Europe/Paris,,OIF, +OIF:SP:24:6103,1,"Gare des Essarts le Roi",48.721448,1.889978,0,0,OIF:SA:8739328,Europe/Paris,,OIF, +OIF:SP:24:6104,1,"Gare des Essarts le Roi",48.721448,1.889964,0,0,OIF:SA:8739328,Europe/Paris,,OIF, +OIF:SP:24:6107,1,"Marché",48.718749,1.894104,0,0,OIF:SA:24:6107,Europe/Paris,,OIF, +OIF:SP:24:6108,1,"Marché",48.718784,1.893967,0,0,OIF:SA:24:6107,Europe/Paris,,OIF, +OIF:SP:24:6109,1,"Plateau",48.727999,1.903984,0,0,OIF:SA:24:6109,Europe/Paris,,OIF, +OIF:SP:24:6110,1,"Plateau",48.728053,1.904146,0,0,OIF:SA:24:6109,Europe/Paris,,OIF, +OIF:SP:24:6332,1,"Dampierre",48.771097,2.080397,0,0,OIF:SA:24:15204,Europe/Paris,,OIF, +OIF:SP:24:6336,1,"Frères Perret",48.770503,2.084289,0,0,OIF:SA:24:6336,Europe/Paris,,OIF, +OIF:SP:24:6337,1,"Frères Perret",48.770727,2.083812,0,0,OIF:SA:24:6336,Europe/Paris,,OIF, +OIF:SP:24:6342,1,"Golf National",48.755419,2.070891,0,0,OIF:SA:24:6342,Europe/Paris,,OIF, +OIF:SP:24:6343,1,"Golf National",48.755683,2.072602,0,0,OIF:SA:24:6342,Europe/Paris,,OIF, +OIF:SP:24:6359,1,"Jean Monnet",48.769571,2.061028,0,0,OIF:SA:24:15200,Europe/Paris,,OIF, +OIF:SP:24:6361,1,"Jules Michelet",48.766691,2.071268,0,0,OIF:SA:24:15202,Europe/Paris,,OIF, +OIF:SP:24:6365,1,"La Minière",48.774545,2.091449,0,0,OIF:SA:24:15205,Europe/Paris,,OIF, +OIF:SP:24:6371,1,"Le Corbusier",48.765212,2.069236,0,0,OIF:SA:24:15201,Europe/Paris,,OIF, +OIF:SP:24:6402,1,"Technocentre 60 Arpents",48.763105,2.083971,0,0,OIF:SA:24:15327,Europe/Paris,,OIF, +OIF:SP:24:6408,1,"Technocentre l'Étang",48.757909,2.087844,0,0,OIF:SA:24:6408,Europe/Paris,,OIF, +OIF:SP:24:6409,1,"Technocentre Trou Berger",48.758531,2.075986,0,0,OIF:SA:24:6409,Europe/Paris,,OIF, +OIF:SP:24:6410,1,"Technocentre Trou Berger",48.758504,2.076014,0,0,OIF:SA:24:6409,Europe/Paris,,OIF, +OIF:SP:24:6413,1,"Villaroy Sud",48.755438,2.07573,0,0,OIF:SA:24:6413,Europe/Paris,,OIF, +OIF:SP:24:6414,1,"Villaroy Sud",48.755385,2.075934,0,0,OIF:SA:24:6413,Europe/Paris,,OIF, +OIF:SP:24:6560,1,"Four à Briques",48.721155,1.903049,0,0,OIF:SA:24:6560,Europe/Paris,,OIF, +OIF:SP:24:6561,1,"Four à Briques",48.721128,1.902941,0,0,OIF:SA:24:6560,Europe/Paris,,OIF, +OIF:SP:24:6562,1,"La Gripière",48.726149,1.914528,0,0,OIF:SA:24:6562,Europe/Paris,,OIF, +OIF:SP:24:6563,1,"La Gripière",48.726221,1.914419,0,0,OIF:SA:24:6562,Europe/Paris,,OIF, +OIF:SP:24:6564,1,"La Source",48.720843,1.908825,0,0,OIF:SA:24:6564,Europe/Paris,,OIF, +OIF:SP:24:6565,1,"La Source",48.720789,1.90869,0,0,OIF:SA:24:6564,Europe/Paris,,OIF, +OIF:SP:24:6566,1,"Les Charmes",48.725412,1.912062,0,0,OIF:SA:24:6566,Europe/Paris,,OIF, +OIF:SP:24:6567,1,"Les Charmes",48.725277,1.911873,0,0,OIF:SA:24:6566,Europe/Paris,,OIF, +OIF:SP:24:6568,1,"Mairie",48.721024,1.948166,0,0,OIF:SA:24:6568,Europe/Paris,,OIF, +OIF:SP:24:6569,1,"Mairie",48.721701,1.94903,0,0,OIF:SA:24:6568,Europe/Paris,,OIF, +OIF:SP:24:6570,1,"Malpou",48.728475,1.908817,0,0,OIF:SA:24:6570,Europe/Paris,,OIF, +OIF:SP:24:6571,1,"Malpou",48.728653,1.908489,0,0,OIF:SA:24:6570,Europe/Paris,,OIF, +OIF:SP:24:6572,1,"Sabot d'Argent",48.721249,1.911539,0,0,OIF:SA:24:6572,Europe/Paris,,OIF, +OIF:SP:24:6573,1,"Sabot d'Argent",48.72124,1.91177,0,0,OIF:SA:24:6572,Europe/Paris,,OIF, +OIF:SP:24:6574,1,"Yvette École",48.72179,1.924997,0,0,OIF:SA:24:6574,Europe/Paris,,OIF, +OIF:SP:24:6575,1,"Yvette École",48.721997,1.925009,0,0,OIF:SA:24:6574,Europe/Paris,,OIF, +OIF:SP:24:6760,1,"Boulangerie",48.724474,2.092922,0,0,OIF:SA:24:6760,Europe/Paris,,OIF, +OIF:SP:24:6761,1,"Boulangerie",48.724284,2.092162,0,0,OIF:SA:24:6760,Europe/Paris,,OIF, +OIF:SP:24:6778,1,"Joseph Lemarchand",48.72002,2.09945,0,0,OIF:SA:24:6778,Europe/Paris,,OIF, +OIF:SP:24:6779,1,"Joseph Lemarchand",48.720182,2.099598,0,0,OIF:SA:24:6778,Europe/Paris,,OIF, +OIF:SP:24:6782,1,"Le Buisson",48.718749,2.101901,0,0,OIF:SA:24:6782,Europe/Paris,,OIF, +OIF:SP:24:6783,1,"Le Buisson",48.71829,2.101536,0,0,OIF:SA:24:6782,Europe/Paris,,OIF, +OIF:SP:24:6784,1,"25 Arpents",48.719615,2.090377,0,0,OIF:SA:24:6784,Europe/Paris,,OIF, +OIF:SP:24:6785,1,"25 Arpents",48.719517,2.090486,0,0,OIF:SA:24:6784,Europe/Paris,,OIF, +OIF:SP:24:6791,1,"Mérantais",48.751574,2.067947,0,0,OIF:SA:24:15255,Europe/Paris,,OIF, +OIF:SP:24:6806,1,"Victor Hugo",48.721032,2.097394,0,0,OIF:SA:24:6806,Europe/Paris,,OIF, +OIF:SP:24:6807,1,"Victor Hugo",48.721381,2.09674,0,0,OIF:SA:24:6806,Europe/Paris,,OIF, +OIF:SP:24:7166,1,"Place du Mesnil",48.743096,1.961197,0,0,OIF:SA:24:7166,Europe/Paris,,OIF, +OIF:SP:24:7167,1,"Place du Mesnil",48.742603,1.96169,0,0,OIF:SA:24:7166,Europe/Paris,,OIF, +OIF:SP:24:7172,1,"Le Mousseau",48.739815,1.969809,0,0,OIF:SA:24:7172,Europe/Paris,,OIF, +OIF:SP:24:7173,1,"Le Mousseau",48.739626,1.969634,0,0,OIF:SA:24:7172,Europe/Paris,,OIF, +OIF:SP:24:7215,1,"Village",48.725581,2.049184,0,0,OIF:SA:24:15236,Europe/Paris,,OIF, +OIF:SP:24:7271,1,"Collège Saint-François d'Assise",48.767064,2.021502,0,0,OIF:SA:24:15238,Europe/Paris,,OIF, +OIF:SP:24:7323,1,"Lycée Descartes",48.765299,2.037883,0,0,OIF:SA:24:15239,Europe/Paris,,OIF, +OIF:SP:24:7562,1,"Collège C. de Vivonne",48.648347,1.847915,0,0,OIF:SA:24:15268,Europe/Paris,,OIF, +OIF:SP:24:7564,1,"Collège Racinay",48.63474,1.823101,0,0,OIF:SA:24:7564,Europe/Paris,,OIF, +OIF:SP:24:7568,1,"Gare de Rambouillet",48.64351,1.832605,0,0,OIF:SA:8739331,Europe/Paris,,OIF, +OIF:SP:24:7569,1,"Gare de Rambouillet",48.643492,1.832578,0,0,OIF:SA:8739331,Europe/Paris,,OIF, +OIF:SP:24:7570,1,"Giroderie",48.644694,1.847094,0,0,OIF:SA:24:7570,Europe/Paris,,OIF, +OIF:SP:24:7571,1,"Giroderie",48.644291,1.845267,0,0,OIF:SA:24:7570,Europe/Paris,,OIF, +OIF:SP:24:7572,1,"Jean Monnet",48.643923,1.840997,0,0,OIF:SA:24:7572,Europe/Paris,,OIF, +OIF:SP:24:7573,1,"Jean Monnet",48.643815,1.841053,0,0,OIF:SA:24:7572,Europe/Paris,,OIF, +OIF:SP:24:7574,1,"Le Terrier",48.649943,1.869294,0,0,OIF:SA:24:7574,Europe/Paris,,OIF, +OIF:SP:24:7575,1,"Le Terrier",48.650042,1.869361,0,0,OIF:SA:24:7574,Europe/Paris,,OIF, +OIF:SP:24:7579,1,"Vieil Orme",48.645631,1.85867,0,0,OIF:SA:24:7579,Europe/Paris,,OIF, +OIF:SP:24:7580,1,"Vieil Orme",48.645505,1.858563,0,0,OIF:SA:24:7579,Europe/Paris,,OIF, +OIF:SP:24:7641,1,"Cimetière",48.573733,1.946394,0,0,OIF:SA:24:15209,Europe/Paris,,OIF, +OIF:SP:24:7643,1,"La Poste",48.572267,1.93825,0,0,OIF:SA:24:7643,Europe/Paris,,OIF, +OIF:SP:24:7644,1,"Leclerc",48.571741,1.939406,0,0,OIF:SA:24:7644,Europe/Paris,,OIF, +OIF:SP:24:7646,1,"Mairie",48.572692,1.941715,0,0,OIF:SA:24:7646,Europe/Paris,,OIF, +OIF:SP:24:7647,1,"Mairie",48.572702,1.941877,0,0,OIF:SA:24:7646,Europe/Paris,,OIF, +OIF:SP:24:7680,1,"Haute Beauce",48.707069,1.996633,0,0,OIF:SA:24:7680,Europe/Paris,,OIF, +OIF:SP:24:7681,1,"Haute Beauce",48.706925,1.996538,0,0,OIF:SA:24:7680,Europe/Paris,,OIF, +OIF:SP:24:7682,1,"Les Sablons",48.703505,2.014201,0,0,OIF:SA:24:7682,Europe/Paris,,OIF, +OIF:SP:24:7683,1,"Les Sablons",48.703361,2.014175,0,0,OIF:SA:24:7682,Europe/Paris,,OIF, +OIF:SP:24:7684,1,"Mesnil Sevin",48.718461,1.994697,0,0,OIF:SA:24:7684,Europe/Paris,,OIF, +OIF:SP:24:7685,1,"Mesnil Sevin",48.718281,1.994671,0,0,OIF:SA:24:7684,Europe/Paris,,OIF, +OIF:SP:24:7705,1,"La Brosse",48.728439,2.00137,0,0,OIF:SA:24:15237,Europe/Paris,,OIF, +OIF:SP:24:7707,1,"Place",48.730179,2.022894,0,0,OIF:SA:24:15241,Europe/Paris,,OIF, +OIF:SP:24:7709,1,"Port Royal",48.737785,2.016937,0,0,OIF:SA:24:15240,Europe/Paris,,OIF, +OIF:SP:24:7717,1,"Beauplan",48.715479,2.085548,0,0,OIF:SA:24:7717,Europe/Paris,,OIF, +OIF:SP:24:7718,1,"Beauplan",48.715345,2.08582,0,0,OIF:SA:24:7717,Europe/Paris,,OIF, +OIF:SP:24:7719,1,"Cabane",48.718395,2.087055,0,0,OIF:SA:24:7719,Europe/Paris,,OIF, +OIF:SP:24:7720,1,"Cabane",48.718341,2.087259,0,0,OIF:SA:24:7719,Europe/Paris,,OIF, +OIF:SP:24:7727,1,"Costic",48.690667,2.063348,0,0,OIF:SA:24:7727,Europe/Paris,,OIF, +OIF:SP:24:7728,1,"Costic",48.690684,2.063171,0,0,OIF:SA:24:7727,Europe/Paris,,OIF, +OIF:SP:24:7729,1,"Écoles",48.710201,2.068284,0,0,OIF:SA:24:7729,Europe/Paris,,OIF, +OIF:SP:24:7730,1,"Écoles",48.710156,2.06808,0,0,OIF:SA:24:7729,Europe/Paris,,OIF, +OIF:SP:24:7731,1,"Gare de Saint-Rémy-lès-Chevreuse",48.703158,2.069855,0,0,OIF:SA:8775889,Europe/Paris,,OIF, +OIF:SP:24:7732,1,"Gare de Saint-Rémy-lès-Chevreuse",48.703158,2.069855,0,0,OIF:SA:8775889,Europe/Paris,,OIF, +OIF:SP:24:7735,1,"Lamartine",48.715459,2.067835,0,0,OIF:SA:24:7735,Europe/Paris,,OIF, +OIF:SP:24:7736,1,"Lamartine",48.715449,2.067632,0,0,OIF:SA:24:7735,Europe/Paris,,OIF, +OIF:SP:24:7737,1,"Les Carrières",48.689341,2.057585,0,0,OIF:SA:24:7737,Europe/Paris,,OIF, +OIF:SP:24:7738,1,"Les Carrières",48.689233,2.057572,0,0,OIF:SA:24:7737,Europe/Paris,,OIF, +OIF:SP:24:7741,1,"Les Prés",48.70807,2.076036,0,0,OIF:SA:24:7741,Europe/Paris,,OIF, +OIF:SP:24:7742,1,"Les Prés",48.707972,2.076267,0,0,OIF:SA:24:7741,Europe/Paris,,OIF, +OIF:SP:24:7743,1,"Les Tourelles",48.716372,2.062302,0,0,OIF:SA:24:7743,Europe/Paris,,OIF, +OIF:SP:24:7747,1,"Place du 14 Juillet",48.705831,2.071661,0,0,OIF:SA:24:7747,Europe/Paris,,OIF, +OIF:SP:24:7748,1,"Place du 14 Juillet",48.705939,2.071511,0,0,OIF:SA:24:7747,Europe/Paris,,OIF, +OIF:SP:24:7749,1,"Port Royal",48.716695,2.065982,0,0,OIF:SA:24:7749,Europe/Paris,,OIF, +OIF:SP:24:7750,1,"Port Royal",48.716524,2.065955,0,0,OIF:SA:24:7749,Europe/Paris,,OIF, +OIF:SP:24:7751,1,"Porte Nord",48.694213,2.061727,0,0,OIF:SA:24:7751,Europe/Paris,,OIF, +OIF:SP:24:7752,1,"Porte Nord",48.694178,2.061958,0,0,OIF:SA:24:7751,Europe/Paris,,OIF, +OIF:SP:24:7763,1,"Skf",48.707314,2.067348,0,0,OIF:SA:24:7763,Europe/Paris,,OIF, +OIF:SP:24:7764,1,"Skf",48.707319,2.069589,0,0,OIF:SA:24:7763,Europe/Paris,,OIF, +OIF:SP:24:7765,1,"Vallée",48.712304,2.068083,0,0,OIF:SA:24:14760,Europe/Paris,,OIF, +OIF:SP:24:7796,1,"Garnes",48.690546,1.974516,0,0,OIF:SA:24:7796,Europe/Paris,,OIF, +OIF:SP:24:7797,1,"Garnes",48.690708,1.974609,0,0,OIF:SA:24:7796,Europe/Paris,,OIF, +OIF:SP:24:7798,1,"Place",48.688332,1.979799,0,0,OIF:SA:24:7798,Europe/Paris,,OIF, +OIF:SP:24:7799,1,"Place",48.688037,1.980181,0,0,OIF:SA:24:7798,Europe/Paris,,OIF, +OIF:SP:24:8128,1,"Gare de la Verrière",48.755022,1.943873,0,0,OIF:SA:8739325,Europe/Paris,,OIF, +OIF:SP:24:8129,1,"Gare de la Verrière",48.754959,1.944023,0,0,OIF:SA:8739325,Europe/Paris,,OIF, +OIF:SP:24:8146,1,"Cité des Cadres",48.786823,2.105183,0,0,OIF:SA:24:15263,Europe/Paris,,OIF, +OIF:SP:24:8152,1,"Gare de Versailles-Chantiers",48.796946,2.136211,0,0,OIF:SA:8739300,Europe/Paris,,OIF, +OIF:SP:24:8153,1,"Gare de Versailles-Chantiers",48.79682,2.136239,0,0,OIF:SA:8739300,Europe/Paris,,OIF, +OIF:SP:24:8156,1,"Gare de Versailles-Château-Rive-Gauche",48.800321,2.128375,0,0,OIF:SA:8739315,Europe/Paris,,OIF, +OIF:SP:24:8157,1,"Gare de Versailles-Château-Rive-Gauche",48.800475,2.128769,0,0,OIF:SA:8739315,Europe/Paris,,OIF, +OIF:SP:24:8162,1,"Hôtel de Ville",48.800741,2.132155,0,0,OIF:SA:24:15182,Europe/Paris,,OIF, +OIF:SP:24:8185,1,"Cour de Buc",48.794342,2.137867,0,0,OIF:SA:8739300,Europe/Paris,,OIF, +OIF:SP:24:8186,1,"Cour de Buc",48.794819,2.138083,0,0,OIF:SA:8739300,Europe/Paris,,OIF, +OIF:SP:24:8203,1,"Le Clos",48.671734,1.874241,0,0,OIF:SA:24:8203,Europe/Paris,,OIF, +OIF:SP:24:8204,1,"Le Clos",48.671735,1.874567,0,0,OIF:SA:24:8203,Europe/Paris,,OIF, +OIF:SP:24:8205,1,"Mairie",48.669518,1.875265,0,0,OIF:SA:24:8205,Europe/Paris,,OIF, +OIF:SP:24:8206,1,"Mairie",48.669886,1.875167,0,0,OIF:SA:24:8205,Europe/Paris,,OIF, +OIF:SP:24:8207,1,"Place",48.666395,1.876691,0,0,OIF:SA:24:8207,Europe/Paris,,OIF, +OIF:SP:24:8208,1,"Place",48.666261,1.877004,0,0,OIF:SA:24:8207,Europe/Paris,,OIF, +OIF:SP:24:8419,1,"Gare d'Arpajon",48.586419,2.240866,0,0,OIF:SA:8754546,Europe/Paris,,OIF, +OIF:SP:24:8420,1,"Gare d'Arpajon",48.586419,2.240866,0,0,OIF:SA:8754546,Europe/Paris,,OIF, +OIF:SP:24:8425,1,"LEP Paul Belmondo",48.596716,2.246051,0,0,OIF:SA:24:8425,Europe/Paris,,OIF, +OIF:SP:24:8426,1,"LEP Paul Belmondo",48.596428,2.246011,0,0,OIF:SA:24:8425,Europe/Paris,,OIF, +OIF:SP:24:8427,1,"Lycée Cassin",48.581832,2.248854,0,0,OIF:SA:24:8427,Europe/Paris,,OIF, +OIF:SP:24:8428,1,"Lycée Cassin",48.582183,2.248976,0,0,OIF:SA:24:8427,Europe/Paris,,OIF, +OIF:SP:24:8431,1,"Porte d'Étampes",48.587142,2.246081,0,0,OIF:SA:24:8431,Europe/Paris,,OIF, +OIF:SP:24:8432,1,"Porte d'Étampes",48.586882,2.246054,0,0,OIF:SA:24:8431,Europe/Paris,,OIF, +OIF:SP:24:8558,1,"Gare",48.669614,2.05138,0,0,OIF:SA:24:8558,Europe/Paris,,OIF, +OIF:SP:24:8559,1,"Gare",48.669541,2.051109,0,0,OIF:SA:24:8558,Europe/Paris,,OIF, +OIF:SP:24:8560,1,"Mairie",48.678231,2.050288,0,0,OIF:SA:24:8560,Europe/Paris,,OIF, +OIF:SP:24:8561,1,"Mairie",48.678276,2.050002,0,0,OIF:SA:24:8560,Europe/Paris,,OIF, +OIF:SP:24:8562,1,"Montabé",48.687586,2.064423,0,0,OIF:SA:24:8562,Europe/Paris,,OIF, +OIF:SP:24:8563,1,"Montabé",48.687747,2.064069,0,0,OIF:SA:24:8562,Europe/Paris,,OIF, +OIF:SP:24:8683,1,"Chante Coq",48.641057,2.12999,0,0,OIF:SA:24:8683,Europe/Paris,,OIF, +OIF:SP:24:8684,1,"Chante Coq",48.641192,2.129989,0,0,OIF:SA:24:8683,Europe/Paris,,OIF, +OIF:SP:24:8685,1,"Collège Jean Monnet",48.620501,2.12557,0,0,OIF:SA:24:8685,Europe/Paris,,OIF, +OIF:SP:24:8686,1,"Collège Jean Monnet",48.620663,2.125678,0,0,OIF:SA:24:8685,Europe/Paris,,OIF, +OIF:SP:24:8687,1,"Le Carmel",48.648888,2.120815,0,0,OIF:SA:24:8687,Europe/Paris,,OIF, +OIF:SP:24:8688,1,"Le Carmel",48.648645,2.120545,0,0,OIF:SA:24:8687,Europe/Paris,,OIF, +OIF:SP:24:8689,1,"Place",48.624032,2.124864,0,0,OIF:SA:24:8689,Europe/Paris,,OIF, +OIF:SP:24:8690,1,"Place",48.624096,2.125176,0,0,OIF:SA:24:8689,Europe/Paris,,OIF, +OIF:SP:24:8760,1,"Rmt",48.602739,2.215612,0,0,OIF:SA:24:8760,Europe/Paris,,OIF, +OIF:SP:24:8761,1,"Rmt",48.602901,2.215788,0,0,OIF:SA:24:8760,Europe/Paris,,OIF, +OIF:SP:24:8784,1,"Gardey",48.691929,2.159887,0,0,OIF:SA:24:8784,Europe/Paris,,OIF, +OIF:SP:24:8785,1,"Gardey",48.692135,2.159629,0,0,OIF:SA:24:8784,Europe/Paris,,OIF, +OIF:SP:24:8797,1,"La Croix",48.694218,2.164021,0,0,OIF:SA:24:8797,Europe/Paris,,OIF, +OIF:SP:24:8798,1,"La Croix",48.694388,2.163898,0,0,OIF:SA:24:8797,Europe/Paris,,OIF, +OIF:SP:24:8799,1,"Les Fauvettes",48.687721,2.153426,0,0,OIF:SA:24:8799,Europe/Paris,,OIF, +OIF:SP:24:8800,1,"Les Fauvettes",48.687829,2.153263,0,0,OIF:SA:24:8799,Europe/Paris,,OIF, +OIF:SP:24:8963,1,"Mairie",48.592829,2.145237,0,0,OIF:SA:24:8963,Europe/Paris,,OIF, +OIF:SP:24:8964,1,"Mairie",48.592812,2.145386,0,0,OIF:SA:24:8963,Europe/Paris,,OIF, +OIF:SP:24:9532,1,"Bel Air",48.612809,2.166718,0,0,OIF:SA:24:9532,Europe/Paris,,OIF, +OIF:SP:24:9533,1,"Bel Air",48.613256,2.164981,0,0,OIF:SA:24:9532,Europe/Paris,,OIF, +OIF:SP:24:9534,1,"Bligny Cmc",48.622311,2.148992,0,0,OIF:SA:24:9534,Europe/Paris,,OIF, +OIF:SP:24:9535,1,"Bligny Cmc",48.62232,2.148965,0,0,OIF:SA:24:9534,Europe/Paris,,OIF, +OIF:SP:24:9538,1,"La Charmoise",48.594418,2.15488,0,0,OIF:SA:24:9538,Europe/Paris,,OIF, +OIF:SP:24:9539,1,"La Charmoise",48.594499,2.155055,0,0,OIF:SA:24:9538,Europe/Paris,,OIF, +OIF:SP:24:9540,1,"La Roncière",48.599449,2.158765,0,0,OIF:SA:24:9540,Europe/Paris,,OIF, +OIF:SP:24:9541,1,"La Roncière",48.599268,2.158454,0,0,OIF:SA:24:9540,Europe/Paris,,OIF, +OIF:SP:24:9544,1,"Madrid",48.619275,2.15021,0,0,OIF:SA:24:9544,Europe/Paris,,OIF, +OIF:SP:24:9545,1,"Madrid",48.619382,2.150142,0,0,OIF:SA:24:9544,Europe/Paris,,OIF, +OIF:SP:24:9546,1,"Place",48.619005,2.15619,0,0,OIF:SA:24:9546,Europe/Paris,,OIF, +OIF:SP:24:9547,1,"Place",48.619086,2.155878,0,0,OIF:SA:24:9546,Europe/Paris,,OIF, +OIF:SP:24:9549,1,"Rue des Vignes",48.620183,2.150315,0,0,OIF:SA:24:15213,Europe/Paris,,OIF, +OIF:SP:24:9550,1,"Soucy",48.607041,2.168404,0,0,OIF:SA:24:9550,Europe/Paris,,OIF, +OIF:SP:24:9551,1,"Soucy",48.607203,2.16858,0,0,OIF:SA:24:9550,Europe/Paris,,OIF, +OIF:SP:24:9561,1,"Adelaïau",48.627374,2.104334,0,0,OIF:SA:24:9561,Europe/Paris,,OIF, +OIF:SP:24:9562,1,"Adelaïau",48.627427,2.103859,0,0,OIF:SA:24:9561,Europe/Paris,,OIF, +OIF:SP:24:9563,1,"Bois d'Ardeau",48.60727,2.080743,0,0,OIF:SA:24:9563,Europe/Paris,,OIF, +OIF:SP:24:9564,1,"Bois d'Ardeau",48.607117,2.080785,0,0,OIF:SA:24:9563,Europe/Paris,,OIF, +OIF:SP:24:9565,1,"Centre d'Accueil",48.629534,2.092608,0,0,OIF:SA:24:9565,Europe/Paris,,OIF, +OIF:SP:24:9566,1,"Centre d'Accueil",48.629723,2.092593,0,0,OIF:SA:24:9565,Europe/Paris,,OIF, +OIF:SP:24:9567,1,"Chardonnet",48.625636,2.07287,0,0,OIF:SA:24:9567,Europe/Paris,,OIF, +OIF:SP:24:9568,1,"Chardonnet",48.625735,2.07314,0,0,OIF:SA:24:9567,Europe/Paris,,OIF, +OIF:SP:24:9569,1,"Malassis",48.629729,2.047382,0,0,OIF:SA:24:9569,Europe/Paris,,OIF, +OIF:SP:24:9570,1,"Malassis",48.629702,2.047192,0,0,OIF:SA:24:9569,Europe/Paris,,OIF, +OIF:SP:24:9571,1,"Place",48.628672,2.097494,0,0,OIF:SA:24:9571,Europe/Paris,,OIF, +OIF:SP:24:9572,1,"Place",48.628447,2.097332,0,0,OIF:SA:24:9571,Europe/Paris,,OIF, +OIF:SP:24:9573,1,"Rombarde",48.632523,2.099415,0,0,OIF:SA:24:9573,Europe/Paris,,OIF, +OIF:SP:24:9574,1,"Rombarde",48.632577,2.099198,0,0,OIF:SA:24:9573,Europe/Paris,,OIF, +OIF:SP:24:9575,1,"Rond-Point du Golf",48.629654,2.08123,0,0,OIF:SA:24:9575,Europe/Paris,,OIF, +OIF:SP:24:9576,1,"Rond-Point du Golf",48.629492,2.081285,0,0,OIF:SA:24:9575,Europe/Paris,,OIF, +OIF:SP:24:9577,1,"Abbaye",48.6974,2.130621,0,0,OIF:SA:24:15317,Europe/Paris,,OIF, +OIF:SP:24:9578,1,"Abbaye",48.69741,2.131082,0,0,OIF:SA:24:15317,Europe/Paris,,OIF, +OIF:SP:24:9583,1,"Belleville 1",48.69389,2.118198,0,0,OIF:SA:24:9583,Europe/Paris,,OIF, +OIF:SP:24:9584,1,"Bois Carré",48.68696,2.127879,0,0,OIF:SA:24:9584,Europe/Paris,,OIF, +OIF:SP:24:9585,1,"Bois Carré",48.686959,2.127716,0,0,OIF:SA:24:9584,Europe/Paris,,OIF, +OIF:SP:24:9586,1,"Collège Juliette Adam",48.701094,2.124998,0,0,OIF:SA:24:9586,Europe/Paris,,OIF, +OIF:SP:24:9587,1,"Collège Juliette Adam",48.70103,2.124808,0,0,OIF:SA:24:9586,Europe/Paris,,OIF, +OIF:SP:24:9590,1,"Croix de Fer",48.705186,2.126326,0,0,OIF:SA:24:9590,Europe/Paris,,OIF, +OIF:SP:24:9591,1,"Croix de Fer",48.704557,2.126695,0,0,OIF:SA:24:9590,Europe/Paris,,OIF, +OIF:SP:24:9592,1,"Madrid",48.698964,2.101298,0,0,OIF:SA:24:9592,Europe/Paris,,OIF, +OIF:SP:24:9593,1,"Madrid",48.699,2.101406,0,0,OIF:SA:24:9592,Europe/Paris,,OIF, +OIF:SP:24:9594,1,"Feuillarde",48.679656,2.105905,0,0,OIF:SA:24:9594,Europe/Paris,,OIF, +OIF:SP:24:9595,1,"Feuillarde",48.679683,2.106109,0,0,OIF:SA:24:9594,Europe/Paris,,OIF, +OIF:SP:24:9596,1,"Gare de Gif-sur-Yvette",48.697851,2.136824,0,0,OIF:SA:8775887,Europe/Paris,,OIF, +OIF:SP:24:9597,1,"Gare de Gif-sur-Yvette",48.69786,2.136919,0,0,OIF:SA:8775887,Europe/Paris,,OIF, +OIF:SP:24:9598,1,"Goïarderie",48.684935,2.107104,0,0,OIF:SA:24:9598,Europe/Paris,,OIF, +OIF:SP:24:9599,1,"Goïarderie",48.684809,2.10724,0,0,OIF:SA:24:9598,Europe/Paris,,OIF, +OIF:SP:24:9600,1,"Gruerie",48.69652,2.106292,0,0,OIF:SA:24:15344,Europe/Paris,,OIF, +OIF:SP:24:9601,1,"Gruerie",48.696501,2.106088,0,0,OIF:SA:24:15344,Europe/Paris,,OIF, +OIF:SP:24:9604,1,"Lavoir",48.679264,2.112545,0,0,OIF:SA:24:9604,Europe/Paris,,OIF, +OIF:SP:24:9605,1,"Lavoir",48.679121,2.112654,0,0,OIF:SA:24:9604,Europe/Paris,,OIF, +OIF:SP:24:9609,1,"Marché Gousson",48.688053,2.116213,0,0,OIF:SA:24:9609,Europe/Paris,,OIF, +OIF:SP:24:9610,1,"Marché Gousson",48.687964,2.11639,0,0,OIF:SA:24:9609,Europe/Paris,,OIF, +OIF:SP:24:9611,1,"Maupertuis",48.686821,2.120942,0,0,OIF:SA:24:9611,Europe/Paris,,OIF, +OIF:SP:24:9612,1,"Maupertuis",48.68683,2.120712,0,0,OIF:SA:24:9611,Europe/Paris,,OIF, +OIF:SP:24:9613,1,"Moc Souris",48.690136,2.119625,0,0,OIF:SA:24:9613,Europe/Paris,,OIF, +OIF:SP:24:9614,1,"Moc Souris",48.690298,2.119991,0,0,OIF:SA:24:9613,Europe/Paris,,OIF, +OIF:SP:24:9617,1,"Neuveries",48.68384,2.11771,0,0,OIF:SA:24:9617,Europe/Paris,,OIF, +OIF:SP:24:9618,1,"Neuveries",48.683885,2.117493,0,0,OIF:SA:24:9617,Europe/Paris,,OIF, +OIF:SP:24:9619,1,"Plaine",48.690307,2.12477,0,0,OIF:SA:24:9619,Europe/Paris,,OIF, +OIF:SP:24:9620,1,"Plaine",48.690208,2.124635,0,0,OIF:SA:24:9619,Europe/Paris,,OIF, +OIF:SP:24:9621,1,"Pommeraie",48.687245,2.111994,0,0,OIF:SA:24:9621,Europe/Paris,,OIF, +OIF:SP:24:9622,1,"Pommeraie",48.687101,2.111995,0,0,OIF:SA:24:9621,Europe/Paris,,OIF, +OIF:SP:24:9623,1,"Les Quinconces",48.707319,2.122935,0,0,OIF:SA:24:9623,Europe/Paris,,OIF, +OIF:SP:24:9624,1,"Les Quinconces",48.707382,2.123003,0,0,OIF:SA:24:9623,Europe/Paris,,OIF, +OIF:SP:24:9629,1,"Mairie",48.671637,2.124439,0,0,OIF:SA:24:9629,Europe/Paris,,OIF, +OIF:SP:24:9630,1,"Mairie",48.671628,2.124385,0,0,OIF:SA:24:9629,Europe/Paris,,OIF, +OIF:SP:24:9631,1,"Rond-Point Saint-Nicolas",48.675713,2.131915,0,0,OIF:SA:24:9631,Europe/Paris,,OIF, +OIF:SP:24:9632,1,"Rond-Point Saint-Nicolas",48.676846,2.132114,0,0,OIF:SA:24:9631,Europe/Paris,,OIF, +OIF:SP:24:9633,1,"Route de Janvry",48.671003,2.126735,0,0,OIF:SA:24:9633,Europe/Paris,,OIF, +OIF:SP:24:9634,1,"Route de Janvry",48.670895,2.1266,0,0,OIF:SA:24:9633,Europe/Paris,,OIF, +OIF:SP:24:9637,1,"Justice",48.68347,2.147997,0,0,OIF:SA:24:9637,Europe/Paris,,OIF, +OIF:SP:24:9638,1,"Justice",48.683307,2.147469,0,0,OIF:SA:24:9637,Europe/Paris,,OIF, +OIF:SP:24:9641,1,"Saint-Clair",48.672196,2.152205,0,0,OIF:SA:24:9641,Europe/Paris,,OIF, +OIF:SP:24:9643,1,"Sans Soucis",48.681007,2.1424,0,0,OIF:SA:24:9643,Europe/Paris,,OIF, +OIF:SP:24:9644,1,"Sans Soucis",48.680953,2.1424,0,0,OIF:SA:24:9643,Europe/Paris,,OIF, +OIF:SP:24:9783,1,"Mulleron",48.63447,2.15855,0,0,OIF:SA:24:14715,Europe/Paris,,OIF, +OIF:SP:24:9784,1,"Place",48.647972,2.153349,0,0,OIF:SA:24:9784,Europe/Paris,,OIF, +OIF:SP:24:9785,1,"Place",48.647739,2.15335,0,0,OIF:SA:24:9784,Europe/Paris,,OIF, +OIF:SP:24:9868,1,"Chambord",48.64732,2.070263,0,0,OIF:SA:24:9868,Europe/Paris,,OIF, +OIF:SP:24:9869,1,"Chambord",48.647455,2.070398,0,0,OIF:SA:24:9868,Europe/Paris,,OIF, +OIF:SP:24:9870,1,"Chaumusson",48.652318,2.074159,0,0,OIF:SA:24:15342,Europe/Paris,,OIF, +OIF:SP:24:9871,1,"Chaumusson",48.652211,2.074403,0,0,OIF:SA:24:15342,Europe/Paris,,OIF, +OIF:SP:24:9872,1,"Collège Michel Vignaud",48.643356,2.082356,0,0,OIF:SA:24:9872,Europe/Paris,,OIF, +OIF:SP:24:9873,1,"Collège Michel Vignaud",48.643455,2.082423,0,0,OIF:SA:24:9872,Europe/Paris,,OIF, +OIF:SP:24:9876,1,"Gare",48.64451,2.067606,0,0,OIF:SA:24:9876,Europe/Paris,,OIF, +OIF:SP:24:9877,1,"Gare",48.644563,2.067429,0,0,OIF:SA:24:9876,Europe/Paris,,OIF, +OIF:SP:24:9878,1,"Haut du Parc",48.641772,2.089905,0,0,OIF:SA:24:9878,Europe/Paris,,OIF, +OIF:SP:24:9879,1,"Haut du Parc",48.642033,2.090297,0,0,OIF:SA:24:9878,Europe/Paris,,OIF, +OIF:SP:24:9882,1,"Les Fleurs",48.640225,2.072877,0,0,OIF:SA:24:9882,Europe/Paris,,OIF, +OIF:SP:24:9883,1,"Les Fleurs",48.640163,2.073135,0,0,OIF:SA:24:9882,Europe/Paris,,OIF, +OIF:SP:24:9884,1,"Les Moines",48.642971,2.074789,0,0,OIF:SA:24:9884,Europe/Paris,,OIF, +OIF:SP:24:9885,1,"Les Moines",48.642998,2.074708,0,0,OIF:SA:24:9884,Europe/Paris,,OIF, +OIF:SP:24:9886,1,"Lycée Jules Verne",48.643416,2.089328,0,0,OIF:SA:24:9886,Europe/Paris,,OIF, +OIF:SP:24:9887,1,"Lycée Jules Verne",48.643236,2.089302,0,0,OIF:SA:24:9886,Europe/Paris,,OIF, +OIF:SP:24:9888,1,"Monument",48.645217,2.074208,0,0,OIF:SA:24:9888,Europe/Paris,,OIF, +OIF:SP:24:9889,1,"Monument",48.645415,2.074329,0,0,OIF:SA:24:9888,Europe/Paris,,OIF, +OIF:SP:24:9892,1,"Tdf",48.65814,2.081049,0,0,OIF:SA:24:9892,Europe/Paris,,OIF, +OIF:SP:24:9893,1,"Tdf",48.657969,2.081213,0,0,OIF:SA:24:9892,Europe/Paris,,OIF, +OIF:SP:25:1,1,"Cutesson",48.623643,1.822031,0,0,OIF:SA:25:1,Europe/Paris,,OIF, +OIF:SP:25:10,1,"Bel Air",48.631829,1.829707,0,0,OIF:SA:25:10,Europe/Paris,,OIF, +OIF:SP:25:100,1,"Ravel",48.655708,1.854209,0,0,OIF:SA:25:100,Europe/Paris,,OIF, +OIF:SP:25:1000,1,"Rue de Dourdan",48.516143,1.84265,0,0,OIF:SA:25:1000,Europe/Paris,,OIF, +OIF:SP:25:1001,1,"Rue de Dourdan",48.516277,1.843149,0,0,OIF:SA:25:1000,Europe/Paris,,OIF, +OIF:SP:25:1002,1,"La Glacière",48.585064,1.983511,0,0,OIF:SA:24:14798,Europe/Paris,,OIF, +OIF:SP:25:1004,1,"Marceau",48.462497,1.773306,0,0,OIF:SA:25:1004,Europe/Paris,,OIF, +OIF:SP:25:1005,1,"Église",48.462231,1.774441,0,0,OIF:SA:25:1005,Europe/Paris,,OIF, +OIF:SP:25:1006,1,"Rue de Verdun",48.648355,1.536749,0,0,OIF:SA:25:1006,Europe/Paris,,OIF, +OIF:SP:25:1007,1,"Rue de Verdun",48.648182,1.53676,0,0,OIF:SA:25:1006,Europe/Paris,,OIF, +OIF:SP:25:101,1,"Mairie",48.707707,1.81347,0,0,OIF:SA:25:101,Europe/Paris,,OIF, +OIF:SP:25:1010,1,"Billardière",48.602454,1.6483,0,0,OIF:SA:25:1010,Europe/Paris,,OIF, +OIF:SP:25:1011,1,"Billardière",48.602412,1.648319,0,0,OIF:SA:25:1010,Europe/Paris,,OIF, +OIF:SP:25:1012,1,"Poirier de Sauge",48.601836,1.664759,0,0,OIF:SA:25:1012,Europe/Paris,,OIF, +OIF:SP:25:10120,1,"Bergerie Nationale",48.646632,1.800171,0,0,OIF:SA:25:10120,Europe/Paris,,OIF, +OIF:SP:25:10122,1,"Étang de la Tour",48.646914,1.862856,0,0,OIF:SA:25:10122,Europe/Paris,,OIF, +OIF:SP:25:10123,1,"Étang de la Tour",48.646946,1.862859,0,0,OIF:SA:25:10122,Europe/Paris,,OIF, +OIF:SP:25:10124,1,"Mansart",48.648442,1.866158,0,0,OIF:SA:25:10124,Europe/Paris,,OIF, +OIF:SP:25:10125,1,"Mansart",48.648444,1.866096,0,0,OIF:SA:25:10124,Europe/Paris,,OIF, +OIF:SP:25:10126,1,"Le Cerrsy",48.651039,1.872444,0,0,OIF:SA:25:10126,Europe/Paris,,OIF, +OIF:SP:25:10128,1,"Providence",48.649495,1.817889,0,0,OIF:SA:25:10128,Europe/Paris,,OIF, +OIF:SP:25:1014,1,"Terres Rouges",48.679625,1.637085,0,0,OIF:SA:25:1014,Europe/Paris,,OIF, +OIF:SP:25:1015,1,"Terres Rouges",48.679703,1.637047,0,0,OIF:SA:25:1014,Europe/Paris,,OIF, +OIF:SP:25:1016,1,"Marc Séguin",48.760943,1.971977,0,0,OIF:SA:25:1016,Europe/Paris,,OIF, +OIF:SP:25:1017,1,"Marc Séguin",48.760769,1.971442,0,0,OIF:SA:25:1016,Europe/Paris,,OIF, +OIF:SP:25:1018,1,"Einstein",48.764982,1.993819,0,0,OIF:SA:25:1018,Europe/Paris,,OIF, +OIF:SP:25:1019,1,"Einstein",48.764987,1.993886,0,0,OIF:SA:25:1018,Europe/Paris,,OIF, +OIF:SP:25:102,1,"La Mare",48.717309,1.820124,0,0,OIF:SA:25:102,Europe/Paris,,OIF, +OIF:SP:25:10200,1,"Bourgneuf",48.600312,2.004528,0,0,OIF:SA:25:10200,Europe/Paris,,OIF, +OIF:SP:25:10201,1,"La Gâtine",48.683944,1.615636,0,0,OIF:SA:25:10201,Europe/Paris,,OIF, +OIF:SP:25:10202,1,"Petites Yvelines",48.730156,1.824901,0,0,OIF:SA:25:10202,Europe/Paris,,OIF, +OIF:SP:25:10203,1,"Piscine",48.465131,1.777574,0,0,OIF:SA:25:10203,Europe/Paris,,OIF, +OIF:SP:25:10204,1,"Obville",48.483755,1.902846,0,0,OIF:SA:25:10204,Europe/Paris,,OIF, +OIF:SP:25:10206,1,"Guéherville",48.534013,1.877822,0,0,OIF:SA:25:10206,Europe/Paris,,OIF, +OIF:SP:25:10207,1,"Champarts",48.518783,1.838179,0,0,OIF:SA:25:10207,Europe/Paris,,OIF, +OIF:SP:25:10209,1,"Le Coudray",48.606853,2.136349,0,0,OIF:SA:24:14831,Europe/Paris,,OIF, +OIF:SP:25:10211,1,"Mairie",48.699532,1.887229,0,0,OIF:SA:25:10211,Europe/Paris,,OIF, +OIF:SP:25:10212,1,"Parc Activité Nord",48.530419,1.834104,0,0,OIF:SA:25:10212,Europe/Paris,,OIF, +OIF:SP:25:10213,1,"Champarts",48.518844,1.838301,0,0,OIF:SA:25:10207,Europe/Paris,,OIF, +OIF:SP:25:10215,1,"Route du Perray",48.697541,1.883319,0,0,OIF:SA:25:10215,Europe/Paris,,OIF, +OIF:SP:25:10216,1,"Mairie",48.699266,1.887083,0,0,OIF:SA:25:10211,Europe/Paris,,OIF, +OIF:SP:25:10217,1,"Mairie",48.441645,1.808052,0,0,OIF:SA:25:10217,Europe/Paris,,OIF, +OIF:SP:25:10219,1,"Chênes",48.711836,1.81643,0,0,OIF:SA:25:10219,Europe/Paris,,OIF, +OIF:SP:25:1022,1,"Les Ateliers",48.615989,2.027922,0,0,OIF:SA:25:1022,Europe/Paris,,OIF, +OIF:SP:25:10220,1,"Petites Yvelines",48.729245,1.824109,0,0,OIF:SA:25:10202,Europe/Paris,,OIF, +OIF:SP:25:10221,1,"Bourgneuf",48.600375,2.0045,0,0,OIF:SA:25:10200,Europe/Paris,,OIF, +OIF:SP:25:10224,1,"Chatignonville",48.468001,1.930817,0,0,OIF:SA:25:10224,Europe/Paris,,OIF, +OIF:SP:25:10225,1,"Hospice",48.460823,1.767834,0,0,OIF:SA:25:10225,Europe/Paris,,OIF, +OIF:SP:25:10226,1,"Mairie",48.441734,1.807984,0,0,OIF:SA:25:10217,Europe/Paris,,OIF, +OIF:SP:25:10227,1,"Hattonville",48.474399,1.889186,0,0,OIF:SA:25:10227,Europe/Paris,,OIF, +OIF:SP:25:10229,1,"Chênes",48.711908,1.816574,0,0,OIF:SA:25:10219,Europe/Paris,,OIF, +OIF:SP:25:1023,1,"Les Ateliers",48.61607,2.027922,0,0,OIF:SA:25:1022,Europe/Paris,,OIF, +OIF:SP:25:10230,1,"Église",48.756736,1.663536,0,0,OIF:SA:25:10230,Europe/Paris,,OIF, +OIF:SP:25:10231,1,"Pont d'Auneau",48.748196,1.925441,0,0,OIF:SA:25:10231,Europe/Paris,,OIF, +OIF:SP:25:10232,1,"Le Haut",48.593329,2.063698,0,0,OIF:SA:25:10232,Europe/Paris,,OIF, +OIF:SP:25:10233,1,"Hattonville",48.4743,1.889159,0,0,OIF:SA:25:10227,Europe/Paris,,OIF, +OIF:SP:25:10236,1,"Église",48.756795,1.66339,0,0,OIF:SA:25:10230,Europe/Paris,,OIF, +OIF:SP:25:10237,1,"Montjoie",48.617736,1.915193,0,0,OIF:SA:25:10237,Europe/Paris,,OIF, +OIF:SP:25:10239,1,"Route du Val",48.588282,2.058772,0,0,OIF:SA:25:10239,Europe/Paris,,OIF, +OIF:SP:25:1024,1,"Cours Vertes",48.630934,1.686066,0,0,OIF:SA:25:1024,Europe/Paris,,OIF, +OIF:SP:25:10240,1,"Guéherville",48.534014,1.877897,0,0,OIF:SA:25:10206,Europe/Paris,,OIF, +OIF:SP:25:10241,1,"Collège des 3 Moulins",48.614539,2.025576,0,0,OIF:SA:24:15371,Europe/Paris,,OIF, +OIF:SP:25:10242,1,"Vallée Godard",48.684025,1.640754,0,0,OIF:SA:25:10242,Europe/Paris,,OIF, +OIF:SP:25:10244,1,"Route du Perray",48.69742,1.882942,0,0,OIF:SA:25:10215,Europe/Paris,,OIF, +OIF:SP:25:10245,1,"Église",48.651854,1.542793,0,0,OIF:SA:25:10245,Europe/Paris,,OIF, +OIF:SP:25:10246,1,"Libération",48.512347,1.833629,0,0,OIF:SA:25:10246,Europe/Paris,,OIF, +OIF:SP:25:10247,1,"Centre",48.515061,1.836231,0,0,OIF:SA:25:10247,Europe/Paris,,OIF, +OIF:SP:25:10248,1,"Montjoie",48.617836,1.915495,0,0,OIF:SA:25:10237,Europe/Paris,,OIF, +OIF:SP:25:10249,1,"Mairie",48.708321,1.813779,0,0,OIF:SA:25:101,Europe/Paris,,OIF, +OIF:SP:25:1025,1,"Cours Vertes",48.63103,1.686193,0,0,OIF:SA:25:1024,Europe/Paris,,OIF, +OIF:SP:25:10250,1,"Allainville aux Bois",48.458647,1.896896,0,0,OIF:SA:25:10250,Europe/Paris,,OIF, +OIF:SP:25:10251,1,"Le Mesle",48.715053,1.687075,0,0,OIF:SA:25:10251,Europe/Paris,,OIF, +OIF:SP:25:10252,1,"Mainguérin",48.53727,1.847197,0,0,OIF:SA:25:10252,Europe/Paris,,OIF, +OIF:SP:25:10253,1,"Mainguérin",48.53727,1.847197,0,0,OIF:SA:25:10252,Europe/Paris,,OIF, +OIF:SP:25:10254,1,"Centre",48.515002,1.836377,0,0,OIF:SA:25:10247,Europe/Paris,,OIF, +OIF:SP:25:10255,1,"Mairie",48.592816,2.1454,0,0,OIF:SA:24:8963,Europe/Paris,,OIF, +OIF:SP:25:10256,1,"Église",48.778703,1.859606,0,0,OIF:SA:22:81,Europe/Paris,,OIF, +OIF:SP:25:10257,1,"Gare d'Auneau",48.447146,1.779714,0,0,OIF:SA:8754565,Europe/Paris,,OIF, +OIF:SP:25:10258,1,"Croix",48.61867,1.904786,0,0,OIF:SA:25:10258,Europe/Paris,,OIF, +OIF:SP:25:10259,1,"Chatignonville",48.467978,1.930987,0,0,OIF:SA:25:10224,Europe/Paris,,OIF, +OIF:SP:25:1026,1,"Beauvais",48.573002,1.760678,0,0,OIF:SA:25:1026,Europe/Paris,,OIF, +OIF:SP:25:10260,1,"Capucins",48.619,2.03124,0,0,OIF:SA:24:5631,Europe/Paris,,OIF, +OIF:SP:25:10261,1,"Église",48.683367,1.643591,0,0,OIF:SA:25:10261,Europe/Paris,,OIF, +OIF:SP:25:10263,1,"Église",48.778635,1.859335,0,0,OIF:SA:22:81,Europe/Paris,,OIF, +OIF:SP:25:10264,1,"Allainville aux Bois",48.458704,1.896929,0,0,OIF:SA:25:10250,Europe/Paris,,OIF, +OIF:SP:25:10265,1,"Clairière",48.622128,2.007398,0,0,OIF:SA:24:5772,Europe/Paris,,OIF, +OIF:SP:25:10266,1,"Église",48.683572,1.643423,0,0,OIF:SA:25:10261,Europe/Paris,,OIF, +OIF:SP:25:10267,1,"Moutiers",48.610167,1.972154,0,0,OIF:SA:24:14735,Europe/Paris,,OIF, +OIF:SP:25:10268,1,"Château",48.62222,2.024432,0,0,OIF:SA:24:5633,Europe/Paris,,OIF, +OIF:SP:25:10269,1,"Prieuré",48.494015,1.872801,0,0,OIF:SA:25:10269,Europe/Paris,,OIF, +OIF:SP:25:1027,1,"Beauvais",48.573018,1.760407,0,0,OIF:SA:25:1026,Europe/Paris,,OIF, +OIF:SP:25:10270,1,"Gros Lieu",48.489184,1.925143,0,0,OIF:SA:25:10270,Europe/Paris,,OIF, +OIF:SP:25:10271,1,"Église",48.651729,1.542558,0,0,OIF:SA:25:10245,Europe/Paris,,OIF, +OIF:SP:25:10272,1,"Pierre Trouvé",48.516888,1.83083,0,0,OIF:SA:25:10272,Europe/Paris,,OIF, +OIF:SP:25:10274,1,"Château",48.622202,2.024699,0,0,OIF:SA:24:5633,Europe/Paris,,OIF, +OIF:SP:25:10275,1,"Longchêne Place",48.638333,2.002137,0,0,OIF:SA:24:5783,Europe/Paris,,OIF, +OIF:SP:25:10276,1,"Église",48.636977,1.954294,0,0,OIF:SA:25:10276,Europe/Paris,,OIF, +OIF:SP:25:10277,1,"Mauzaise",48.683501,1.633421,0,0,OIF:SA:25:10277,Europe/Paris,,OIF, +OIF:SP:25:10279,1,"Le Bas",48.592498,2.069591,0,0,OIF:SA:25:10279,Europe/Paris,,OIF, +OIF:SP:25:10280,1,"Le Bas",48.592469,2.070022,0,0,OIF:SA:25:10279,Europe/Paris,,OIF, +OIF:SP:25:10281,1,"Les Garennes",48.627914,1.998305,0,0,OIF:SA:24:5778,Europe/Paris,,OIF, +OIF:SP:25:10282,1,"Gros Lieu",48.48886,1.925037,0,0,OIF:SA:25:10270,Europe/Paris,,OIF, +OIF:SP:25:10283,1,"Pierre Trouvé",48.516828,1.830778,0,0,OIF:SA:25:10272,Europe/Paris,,OIF, +OIF:SP:25:10284,1,"Le Hallier",48.738693,1.670567,0,0,OIF:SA:25:10284,Europe/Paris,,OIF, +OIF:SP:25:10285,1,"Briis Place",48.624131,2.124986,0,0,OIF:SA:25:10285,Europe/Paris,,OIF, +OIF:SP:25:10286,1,"Croix",48.619676,1.904696,0,0,OIF:SA:25:10258,Europe/Paris,,OIF, +OIF:SP:25:10288,1,"Longchêne Place",48.638455,2.002209,0,0,OIF:SA:24:5783,Europe/Paris,,OIF, +OIF:SP:25:10289,1,"Bretonville",48.496751,1.857802,0,0,OIF:SA:25:10289,Europe/Paris,,OIF, +OIF:SP:25:10290,1,"Bréau",48.499415,1.893538,0,0,OIF:SA:25:10290,Europe/Paris,,OIF, +OIF:SP:25:10295,1,"Route du Val",48.58838,2.059036,0,0,OIF:SA:25:10239,Europe/Paris,,OIF, +OIF:SP:25:10296,1,"Le Coudray",48.606734,2.136308,0,0,OIF:SA:24:14831,Europe/Paris,,OIF, +OIF:SP:25:10297,1,"Les Garennes",48.627943,1.998254,0,0,OIF:SA:24:5778,Europe/Paris,,OIF, +OIF:SP:25:10298,1,"La Jaunière",48.721149,1.66913,0,0,OIF:SA:25:10298,Europe/Paris,,OIF, +OIF:SP:25:10299,1,"La Paix",48.518792,1.832973,0,0,OIF:SA:25:10299,Europe/Paris,,OIF, +OIF:SP:25:103,1,"La Mare",48.717327,1.820192,0,0,OIF:SA:25:102,Europe/Paris,,OIF, +OIF:SP:25:10300,1,"Centre",48.612718,1.908656,0,0,OIF:SA:25:10300,Europe/Paris,,OIF, +OIF:SP:25:10301,1,"Le Matz",48.707977,1.799519,0,0,OIF:SA:25:10301,Europe/Paris,,OIF, +OIF:SP:25:10303,1,"Launay Maréchaux",48.61481,2.108156,0,0,OIF:SA:24:15167,Europe/Paris,,OIF, +OIF:SP:25:10304,1,"Obville",48.483692,1.903008,0,0,OIF:SA:25:10204,Europe/Paris,,OIF, +OIF:SP:25:10305,1,"École",48.62089,2.000895,0,0,OIF:SA:24:5776,Europe/Paris,,OIF, +OIF:SP:25:10306,1,"Capucins",48.619064,2.031415,0,0,OIF:SA:24:5631,Europe/Paris,,OIF, +OIF:SP:25:10308,1,"Hospice",48.460751,1.767862,0,0,OIF:SA:25:10225,Europe/Paris,,OIF, +OIF:SP:25:10309,1,"Parc Activité Nord",48.530419,1.834104,0,0,OIF:SA:25:10212,Europe/Paris,,OIF, +OIF:SP:25:10310,1,"La Mare",48.537757,1.870764,0,0,OIF:SA:25:10310,Europe/Paris,,OIF, +OIF:SP:25:10312,1,"Mauzaise",48.683524,1.633158,0,0,OIF:SA:25:10277,Europe/Paris,,OIF, +OIF:SP:25:10313,1,"La Gâtine",48.68388,1.615378,0,0,OIF:SA:25:10201,Europe/Paris,,OIF, +OIF:SP:25:10314,1,"Mairie",48.592839,2.145345,0,0,OIF:SA:24:8963,Europe/Paris,,OIF, +OIF:SP:25:10317,1,"Moulin",48.609835,1.917697,0,0,OIF:SA:25:10317,Europe/Paris,,OIF, +OIF:SP:25:10318,1,"La Jaunière",48.721131,1.668974,0,0,OIF:SA:25:10298,Europe/Paris,,OIF, +OIF:SP:25:10319,1,"Villeneuve",48.632667,1.943754,0,0,OIF:SA:25:10319,Europe/Paris,,OIF, +OIF:SP:25:1032,1,"Gare de Rambouillet [Prairie]",48.643029,1.832189,0,0,OIF:SA:8739331,Europe/Paris,,OIF, +OIF:SP:25:10320,1,"Bois des Gaulles",48.640297,1.957084,0,0,OIF:SA:25:10320,Europe/Paris,,OIF, +OIF:SP:25:10321,1,"Le Hallier",48.73875,1.670664,0,0,OIF:SA:25:10284,Europe/Paris,,OIF, +OIF:SP:25:10322,1,"Moulin",48.609884,1.917747,0,0,OIF:SA:25:10317,Europe/Paris,,OIF, +OIF:SP:25:10323,1,"Vallée Godard",48.683973,1.640609,0,0,OIF:SA:25:10242,Europe/Paris,,OIF, +OIF:SP:25:10324,1,"Gare de Dourdan",48.534262,2.009672,0,0,OIF:SA:25:10324,Europe/Paris,,OIF, +OIF:SP:25:10326,1,"Gare de Rambouillet [Prairie]",48.643015,1.832254,0,0,OIF:SA:8739331,Europe/Paris,,OIF, +OIF:SP:25:10332,1,"Z.I. de Vaubenard",48.538353,2.019705,0,0,OIF:SA:25:10332,Europe/Paris,,OIF, +OIF:SP:25:10333,1,"Z.I. de Vaubenard",48.53829,2.0198,0,0,OIF:SA:25:10332,Europe/Paris,,OIF, +OIF:SP:25:10334,1,"Gradient",48.764036,2.086468,0,0,OIF:SA:25:10334,Europe/Paris,,OIF, +OIF:SP:25:10335,1,"Gradient",48.763318,2.08688,0,0,OIF:SA:25:10334,Europe/Paris,,OIF, +OIF:SP:25:10336,1,"Ménainville",48.5535,1.840942,0,0,OIF:SA:25:10336,Europe/Paris,,OIF, +OIF:SP:25:10337,1,"Ménainville",48.553429,1.840936,0,0,OIF:SA:25:10336,Europe/Paris,,OIF, +OIF:SP:25:1034,1,"Gare de Rambouillet [Prud'Homme]",48.643208,1.830633,0,0,OIF:SA:8739331,Europe/Paris,,OIF, +OIF:SP:25:10342,1,"Marais",48.652755,1.819799,0,0,OIF:SA:25:10342,Europe/Paris,,OIF, +OIF:SP:25:10350,1,"Ronqueux",48.640964,1.986865,0,0,OIF:SA:25:10350,Europe/Paris,,OIF, +OIF:SP:25:10351,1,"Ronqueux",48.641098,1.986729,0,0,OIF:SA:25:10350,Europe/Paris,,OIF, +OIF:SP:25:10352,1,"Vieil Orme",48.64557,1.858721,0,0,OIF:SA:24:7579,Europe/Paris,,OIF, +OIF:SP:25:10354,1,"École",48.517722,1.832725,0,0,OIF:SA:25:10354,Europe/Paris,,OIF, +OIF:SP:25:1038,1,"Mairie",48.500164,1.961532,0,0,OIF:SA:25:1038,Europe/Paris,,OIF, +OIF:SP:25:1039,1,"4 Routes",48.495879,1.963102,0,0,OIF:SA:25:1039,Europe/Paris,,OIF, +OIF:SP:25:1040,1,"4 Routes",48.495852,1.963146,0,0,OIF:SA:25:1039,Europe/Paris,,OIF, +OIF:SP:25:1042,1,"Foyer",48.498256,1.96157,0,0,OIF:SA:25:1042,Europe/Paris,,OIF, +OIF:SP:25:1043,1,"Pignon Blanc",48.498929,1.965904,0,0,OIF:SA:25:1043,Europe/Paris,,OIF, +OIF:SP:25:10436,1,"École",48.740989,1.661404,0,0,OIF:SA:25:10436,Europe/Paris,,OIF, +OIF:SP:25:1044,1,"Pignon Blanc",48.498913,1.965836,0,0,OIF:SA:25:1043,Europe/Paris,,OIF, +OIF:SP:25:10441,1,"Bois des Nöes",48.707904,1.602021,0,0,OIF:SA:25:10441,Europe/Paris,,OIF, +OIF:SP:25:10442,1,"Bois des Nöes",48.70785,1.601893,0,0,OIF:SA:25:10441,Europe/Paris,,OIF, +OIF:SP:25:10445,1,"Saint-Lubin",48.646258,1.823315,0,0,OIF:SA:25:10445,Europe/Paris,,OIF, +OIF:SP:25:10446,1,"Sous-Préfecture",48.643675,1.824337,0,0,OIF:SA:25:10446,Europe/Paris,,OIF, +OIF:SP:25:10447,1,"Paul Demange",48.650974,1.846968,0,0,OIF:SA:25:10447,Europe/Paris,,OIF, +OIF:SP:25:10448,1,"Paul Demange",48.65115,1.846445,0,0,OIF:SA:25:10447,Europe/Paris,,OIF, +OIF:SP:25:10449,1,"Conservatoire",48.65085,1.817893,0,0,OIF:SA:25:10449,Europe/Paris,,OIF, +OIF:SP:25:1045,1,"Les Montceaux",48.501554,1.960285,0,0,OIF:SA:25:1045,Europe/Paris,,OIF, +OIF:SP:25:10450,1,"Château",48.648186,1.816385,0,0,OIF:SA:25:10450,Europe/Paris,,OIF, +OIF:SP:25:10451,1,"Château",48.648155,1.816482,0,0,OIF:SA:25:10450,Europe/Paris,,OIF, +OIF:SP:25:10452,1,"Angennes",48.650143,1.824021,0,0,OIF:SA:25:10452,Europe/Paris,,OIF, +OIF:SP:25:10453,1,"Angennes",48.65015,1.823868,0,0,OIF:SA:25:10452,Europe/Paris,,OIF, +OIF:SP:25:10454,1,"Foch",48.648565,1.827143,0,0,OIF:SA:25:10454,Europe/Paris,,OIF, +OIF:SP:25:10455,1,"L'Épinette",48.707748,1.622497,0,0,OIF:SA:25:10455,Europe/Paris,,OIF, +OIF:SP:25:10456,1,"L'Épinette",48.707752,1.622318,0,0,OIF:SA:25:10455,Europe/Paris,,OIF, +OIF:SP:25:10457,1,"Dreyfus",48.647475,1.828972,0,0,OIF:SA:25:10457,Europe/Paris,,OIF, +OIF:SP:25:10458,1,"Dreyfus",48.647619,1.828644,0,0,OIF:SA:25:10457,Europe/Paris,,OIF, +OIF:SP:25:10459,1,"Vernes",48.652019,1.821689,0,0,OIF:SA:25:10459,Europe/Paris,,OIF, +OIF:SP:25:10460,1,"Rue de Boinville",48.512664,1.840718,0,0,OIF:SA:25:10460,Europe/Paris,,OIF, +OIF:SP:25:10461,1,"Rue de Boinville",48.512664,1.840655,0,0,OIF:SA:25:10460,Europe/Paris,,OIF, +OIF:SP:25:10464,1,"3 Seigneurs",48.645225,1.854984,0,0,OIF:SA:25:10464,Europe/Paris,,OIF, +OIF:SP:25:10465,1,"3 Seigneurs",48.645185,1.85512,0,0,OIF:SA:25:10464,Europe/Paris,,OIF, +OIF:SP:25:10466,1,"Vieil Orme",48.645553,1.858538,0,0,OIF:SA:24:7579,Europe/Paris,,OIF, +OIF:SP:25:10467,1,"Europe",48.648674,1.855729,0,0,OIF:SA:25:10467,Europe/Paris,,OIF, +OIF:SP:25:10468,1,"Lac",48.648444,1.859424,0,0,OIF:SA:25:10468,Europe/Paris,,OIF, +OIF:SP:25:10495,1,"Rougemont",48.506043,1.913274,0,0,OIF:SA:25:10495,Europe/Paris,,OIF, +OIF:SP:25:10496,1,"F. Isambert",48.441907,1.797176,0,0,OIF:SA:25:10496,Europe/Paris,,OIF, +OIF:SP:25:10497,1,"F. Isambert",48.441988,1.797432,0,0,OIF:SA:25:10496,Europe/Paris,,OIF, +OIF:SP:25:105,1,"Vincent Scotto",48.649201,1.851551,0,0,OIF:SA:25:105,Europe/Paris,,OIF, +OIF:SP:25:10506,1,"Vallon",48.680023,1.643468,0,0,OIF:SA:25:10506,Europe/Paris,,OIF, +OIF:SP:25:10507,1,"Vallon",48.679975,1.643531,0,0,OIF:SA:25:10506,Europe/Paris,,OIF, +OIF:SP:25:10508,1,"Église",48.702693,1.885317,0,0,OIF:SA:25:10508,Europe/Paris,,OIF, +OIF:SP:25:10509,1,"De Gaulle",48.714636,1.896029,0,0,OIF:SA:25:10509,Europe/Paris,,OIF, +OIF:SP:25:10510,1,"De Gaulle",48.71458,1.895937,0,0,OIF:SA:25:10509,Europe/Paris,,OIF, +OIF:SP:25:10511,1,"Pompidou",48.723811,1.896534,0,0,OIF:SA:25:10511,Europe/Paris,,OIF, +OIF:SP:25:10512,1,"Pompidou",48.723729,1.896515,0,0,OIF:SA:25:10511,Europe/Paris,,OIF, +OIF:SP:25:10513,1,"Marais",48.73877,1.912383,0,0,OIF:SA:25:10513,Europe/Paris,,OIF, +OIF:SP:25:10514,1,"Marais",48.73877,1.912279,0,0,OIF:SA:25:10513,Europe/Paris,,OIF, +OIF:SP:25:10515,1,"Broderies",48.742121,1.917195,0,0,OIF:SA:25:10515,Europe/Paris,,OIF, +OIF:SP:25:10516,1,"Broderies",48.742121,1.917066,0,0,OIF:SA:25:10515,Europe/Paris,,OIF, +OIF:SP:25:10517,1,"Gare de Coignières",48.743898,1.92096,0,0,OIF:SA:8739327,Europe/Paris,,OIF, +OIF:SP:25:10519,1,"Les Fontaines",48.749286,1.927181,0,0,OIF:SA:25:10519,Europe/Paris,,OIF, +OIF:SP:25:10520,1,"Les Fontaines",48.74927,1.927052,0,0,OIF:SA:25:10519,Europe/Paris,,OIF, +OIF:SP:25:10521,1,"Pont de Chevreuse",48.754195,1.936312,0,0,OIF:SA:25:10521,Europe/Paris,,OIF, +OIF:SP:25:10522,1,"Pont de Chevreuse",48.754179,1.936121,0,0,OIF:SA:25:10521,Europe/Paris,,OIF, +OIF:SP:25:10523,1,"Gare la Verrière",48.75568,1.942957,0,0,OIF:SA:8739325,Europe/Paris,,OIF, +OIF:SP:25:10524,1,"Gare la Verrière",48.755947,1.942865,0,0,OIF:SA:8739325,Europe/Paris,,OIF, +OIF:SP:25:10525,1,"Fermi",48.76231,1.981526,0,0,OIF:SA:25:10525,Europe/Paris,,OIF, +OIF:SP:25:10526,1,"Fermi",48.762254,1.981163,0,0,OIF:SA:25:10525,Europe/Paris,,OIF, +OIF:SP:25:10527,1,"Kleper",48.764071,1.985685,0,0,OIF:SA:25:10527,Europe/Paris,,OIF, +OIF:SP:25:10528,1,"Kleper",48.764054,1.985249,0,0,OIF:SA:25:10527,Europe/Paris,,OIF, +OIF:SP:25:10529,1,"Copernic",48.76639,1.991198,0,0,OIF:SA:25:10529,Europe/Paris,,OIF, +OIF:SP:25:10530,1,"Copernic",48.766496,1.99102,0,0,OIF:SA:25:10529,Europe/Paris,,OIF, +OIF:SP:25:10531,1,"Hennequin",48.76858,1.996367,0,0,OIF:SA:25:10531,Europe/Paris,,OIF, +OIF:SP:25:10532,1,"Hennequin",48.768629,1.996102,0,0,OIF:SA:25:10531,Europe/Paris,,OIF, +OIF:SP:25:10533,1,"Hôtel d'Agglomération",48.770722,2.006113,0,0,OIF:SA:25:10533,Europe/Paris,,OIF, +OIF:SP:25:10534,1,"Hôtel d'Agglomération",48.770825,2.005861,0,0,OIF:SA:25:10533,Europe/Paris,,OIF, +OIF:SP:25:10535,1,"Gare de Saint-Quentin en Yvelines",48.78767,2.045886,0,0,OIF:SA:8739384,Europe/Paris,,OIF, +OIF:SP:25:10539,1,"Église",48.702696,1.885258,0,0,OIF:SA:25:10508,Europe/Paris,,OIF, +OIF:SP:25:10548,1,"Lycée Viollet le Duc",48.814489,1.872029,0,0,OIF:SA:21:723,Europe/Paris,,OIF, +OIF:SP:25:10551,1,"Poupinel",48.569425,1.933391,0,0,OIF:SA:25:10551,Europe/Paris,,OIF, +OIF:SP:25:10552,1,"Poupinel",48.569302,1.933532,0,0,OIF:SA:25:10551,Europe/Paris,,OIF, +OIF:SP:25:1058,1,"Église",48.500785,1.95791,0,0,OIF:SA:25:1058,Europe/Paris,,OIF, +OIF:SP:25:1059,1,"Le Haut",48.593365,2.063791,0,0,OIF:SA:25:10232,Europe/Paris,,OIF, +OIF:SP:25:106,1,"De Vivonne",48.648124,1.848689,0,0,OIF:SA:24:15268,Europe/Paris,,OIF, +OIF:SP:25:1060,1,"Gare d'Auneau",48.447297,1.779723,0,0,OIF:SA:8754565,Europe/Paris,,OIF, +OIF:SP:25:1061,1,"Poule Faisane",48.773224,1.672309,0,0,OIF:SA:25:1061,Europe/Paris,,OIF, +OIF:SP:25:1062,1,"Mairie",48.57816,1.779952,0,0,OIF:SA:25:1062,Europe/Paris,,OIF, +OIF:SP:25:1063,1,"Avenue",48.548856,1.789559,0,0,OIF:SA:25:1063,Europe/Paris,,OIF, +OIF:SP:25:1064,1,"Avenue",48.548855,1.789626,0,0,OIF:SA:25:1063,Europe/Paris,,OIF, +OIF:SP:25:1065,1,"Le Cormier",48.628955,2.056434,0,0,OIF:SA:24:14845,Europe/Paris,,OIF, +OIF:SP:25:10655,1,"Foch",48.648608,1.826718,0,0,OIF:SA:25:10454,Europe/Paris,,OIF, +OIF:SP:25:10656,1,"La Glacière",48.585116,1.983511,0,0,OIF:SA:24:14798,Europe/Paris,,OIF, +OIF:SP:25:10657,1,"Poirier de Sauge",48.601815,1.664862,0,0,OIF:SA:25:1012,Europe/Paris,,OIF, +OIF:SP:25:1066,1,"Le Cormier",48.628924,2.056458,0,0,OIF:SA:24:14845,Europe/Paris,,OIF, +OIF:SP:25:10660,1,"Gare du Perray en Yvelines",48.69403,1.856437,0,0,OIF:SA:8739329,Europe/Paris,,OIF, +OIF:SP:25:10663,1,"Sainte-Thérèse",48.648243,1.823194,0,0,OIF:SA:25:10663,Europe/Paris,,OIF, +OIF:SP:25:10665,1,"République",48.645248,1.823011,0,0,OIF:SA:25:10665,Europe/Paris,,OIF, +OIF:SP:25:10666,1,"De Vivonne",48.648356,1.848332,0,0,OIF:SA:24:15268,Europe/Paris,,OIF, +OIF:SP:25:1069,1,"La Colonie",48.723884,1.704065,0,0,OIF:SA:25:1069,Europe/Paris,,OIF, +OIF:SP:25:107,1,"Paul Demange",48.651487,1.847248,0,0,OIF:SA:25:10447,Europe/Paris,,OIF, +OIF:SP:25:1070,1,"La Colonie",48.723806,1.704065,0,0,OIF:SA:25:1069,Europe/Paris,,OIF, +OIF:SP:25:1071,1,"Grange du Bois",48.735932,1.832556,0,0,OIF:SA:25:1071,Europe/Paris,,OIF, +OIF:SP:25:10711,1,"Église",48.722788,1.653036,0,0,OIF:SA:22:401,Europe/Paris,,OIF, +OIF:SP:25:10712,1,"Église",48.722931,1.652969,0,0,OIF:SA:22:401,Europe/Paris,,OIF, +OIF:SP:25:10715,1,"G. S. Pasteur",48.782743,2.035859,0,0,OIF:SA:8741459,Europe/Paris,,OIF, +OIF:SP:25:10716,1,"G. S. Pasteur",48.782779,2.035763,0,0,OIF:SA:8741459,Europe/Paris,,OIF, +OIF:SP:25:10717,1,"Grande Rue",48.79013,1.852083,0,0,OIF:SA:25:10717,Europe/Paris,,OIF, +OIF:SP:25:10718,1,"Grande Rue",48.790138,1.852149,0,0,OIF:SA:25:10717,Europe/Paris,,OIF, +OIF:SP:25:1072,1,"Grange du Bois",48.735867,1.832262,0,0,OIF:SA:25:1071,Europe/Paris,,OIF, +OIF:SP:25:10721,1,"Aft-Iftim-Chep",48.770176,1.878358,0,0,OIF:SA:25:10721,Europe/Paris,,OIF, +OIF:SP:25:1073,1,"Croix Rouge",48.70093,1.809196,0,0,OIF:SA:25:1073,Europe/Paris,,OIF, +OIF:SP:25:108,1,"Paul Demange",48.651569,1.846773,0,0,OIF:SA:25:10447,Europe/Paris,,OIF, +OIF:SP:25:109,1,"Hôtel des Impôts",48.648605,1.823858,0,0,OIF:SA:25:109,Europe/Paris,,OIF, +OIF:SP:25:11,1,"Bel Air",48.632458,1.829647,0,0,OIF:SA:25:10,Europe/Paris,,OIF, +OIF:SP:25:110,1,"Pasteur",48.649674,1.82531,0,0,OIF:SA:25:110,Europe/Paris,,OIF, +OIF:SP:25:111,1,"Launay Maréchaux",48.614823,2.108267,0,0,OIF:SA:24:15167,Europe/Paris,,OIF, +OIF:SP:25:112,1,"Briis Place",48.624131,2.125026,0,0,OIF:SA:25:10285,Europe/Paris,,OIF, +OIF:SP:25:113,1,"P. et M. Curie",48.652164,1.827164,0,0,OIF:SA:25:113,Europe/Paris,,OIF, +OIF:SP:25:114,1,"Vernes",48.652398,1.82129,0,0,OIF:SA:25:10459,Europe/Paris,,OIF, +OIF:SP:25:115,1,"Clairière",48.62212,2.007683,0,0,OIF:SA:24:5772,Europe/Paris,,OIF, +OIF:SP:25:118,1,"École",48.620967,2.000732,0,0,OIF:SA:24:5776,Europe/Paris,,OIF, +OIF:SP:25:119,1,"Clos Batant",48.650648,1.855846,0,0,OIF:SA:25:119,Europe/Paris,,OIF, +OIF:SP:25:12,1,"Bon Vieux Temps",48.645897,1.8212,0,0,OIF:SA:25:12,Europe/Paris,,OIF, +OIF:SP:25:120,1,"Place du Presbytère",48.622487,1.997179,0,0,OIF:SA:25:120,Europe/Paris,,OIF, +OIF:SP:25:121,1,"Place du Presbytère",48.622369,1.99716,0,0,OIF:SA:25:120,Europe/Paris,,OIF, +OIF:SP:25:122,1,"Grange Colombe",48.654945,1.846025,0,0,OIF:SA:25:122,Europe/Paris,,OIF, +OIF:SP:25:123,1,"Grange Colombe",48.65499,1.846031,0,0,OIF:SA:25:122,Europe/Paris,,OIF, +OIF:SP:25:124,1,"Grenonvilliers",48.654005,1.837998,0,0,OIF:SA:25:124,Europe/Paris,,OIF, +OIF:SP:25:125,1,"Uzès",48.651676,1.837956,0,0,OIF:SA:25:125,Europe/Paris,,OIF, +OIF:SP:25:126,1,"Vdo",48.650673,1.834407,0,0,OIF:SA:25:126,Europe/Paris,,OIF, +OIF:SP:25:127,1,"Vdo",48.650616,1.834298,0,0,OIF:SA:25:126,Europe/Paris,,OIF, +OIF:SP:25:128,1,"Moutiers",48.610158,1.971809,0,0,OIF:SA:24:14735,Europe/Paris,,OIF, +OIF:SP:25:129,1,"Clairefontaine",48.650208,1.830796,0,0,OIF:SA:25:129,Europe/Paris,,OIF, +OIF:SP:25:13,1,"La Mare",48.537797,1.870787,0,0,OIF:SA:25:10310,Europe/Paris,,OIF, +OIF:SP:25:130,1,"Château",48.64268,1.966362,0,0,OIF:SA:25:130,Europe/Paris,,OIF, +OIF:SP:25:132,1,"Église",48.636013,1.95392,0,0,OIF:SA:25:10276,Europe/Paris,,OIF, +OIF:SP:25:133,1,"Telecom",48.647043,1.830674,0,0,OIF:SA:25:133,Europe/Paris,,OIF, +OIF:SP:25:134,1,"Bois des Gaulles",48.640282,1.956878,0,0,OIF:SA:25:10320,Europe/Paris,,OIF, +OIF:SP:25:136,1,"Villeneuve",48.632719,1.943668,0,0,OIF:SA:25:10319,Europe/Paris,,OIF, +OIF:SP:25:139,1,"Mairie",48.645491,1.819173,0,0,OIF:SA:25:139,Europe/Paris,,OIF, +OIF:SP:25:14,1,"Clairbois",48.65942,1.860133,0,0,OIF:SA:25:14,Europe/Paris,,OIF, +OIF:SP:25:140,1,"Sainte-Bernadette",48.643821,1.836863,0,0,OIF:SA:25:140,Europe/Paris,,OIF, +OIF:SP:25:141,1,"Centre",48.612518,1.90885,0,0,OIF:SA:25:10300,Europe/Paris,,OIF, +OIF:SP:25:142,1,"Sainte-Bernadette",48.643531,1.83693,0,0,OIF:SA:25:140,Europe/Paris,,OIF, +OIF:SP:25:144,1,"Roi de Rome",48.644795,1.822507,0,0,OIF:SA:25:144,Europe/Paris,,OIF, +OIF:SP:25:147,1,"Maurice Dechy",48.649884,1.820368,0,0,OIF:SA:25:147,Europe/Paris,,OIF, +OIF:SP:25:15,1,"La Paix",48.518745,1.833096,0,0,OIF:SA:25:10299,Europe/Paris,,OIF, +OIF:SP:25:150,1,"Pont d'Auneau",48.748354,1.925806,0,0,OIF:SA:25:10231,Europe/Paris,,OIF, +OIF:SP:25:152,1,"Paul Doumer",48.644953,1.825333,0,0,OIF:SA:25:152,Europe/Paris,,OIF, +OIF:SP:25:153,1,"Humbert",48.643989,1.826903,0,0,OIF:SA:25:153,Europe/Paris,,OIF, +OIF:SP:25:154,1,"Sécurité Sociale",48.643234,1.828999,0,0,OIF:SA:25:154,Europe/Paris,,OIF, +OIF:SP:25:155,1,"Église",48.742373,1.661328,0,0,OIF:SA:25:155,Europe/Paris,,OIF, +OIF:SP:25:156,1,"Groussay",48.654497,1.820735,0,0,OIF:SA:25:156,Europe/Paris,,OIF, +OIF:SP:25:157,1,"Petit Parc",48.642518,1.830667,0,0,OIF:SA:25:157,Europe/Paris,,OIF, +OIF:SP:25:16,1,"Clos Batant",48.650671,1.855793,0,0,OIF:SA:25:119,Europe/Paris,,OIF, +OIF:SP:25:160,1,"La Roncière",48.599471,2.1587,0,0,OIF:SA:25:160,Europe/Paris,,OIF, +OIF:SP:25:161,1,"La Roncière",48.599331,2.15863,0,0,OIF:SA:25:160,Europe/Paris,,OIF, +OIF:SP:25:162,1,"La Soulodière",48.58951,2.151303,0,0,OIF:SA:25:162,Europe/Paris,,OIF, +OIF:SP:25:163,1,"La Soulodière",48.58997,2.150708,0,0,OIF:SA:25:162,Europe/Paris,,OIF, +OIF:SP:25:164,1,"Mairie",48.760761,1.60832,0,0,OIF:SA:25:164,Europe/Paris,,OIF, +OIF:SP:25:165,1,"Mairie",48.761574,1.607559,0,0,OIF:SA:25:164,Europe/Paris,,OIF, +OIF:SP:25:166,1,"Collège Émile Auvray",48.527918,2.020808,0,0,OIF:SA:25:166,Europe/Paris,,OIF, +OIF:SP:25:167,1,"Collège Émile Auvray",48.527874,2.020855,0,0,OIF:SA:25:166,Europe/Paris,,OIF, +OIF:SP:25:168,1,"La Forêt",48.534649,1.995851,0,0,OIF:SA:25:168,Europe/Paris,,OIF, +OIF:SP:25:169,1,"La Forêt",48.534655,1.995177,0,0,OIF:SA:25:168,Europe/Paris,,OIF, +OIF:SP:25:17,1,"Constellation",48.639714,1.830303,0,0,OIF:SA:25:17,Europe/Paris,,OIF, +OIF:SP:25:170,1,"Gare de Dourdan",48.533522,2.006864,0,0,OIF:SA:8754552,Europe/Paris,,OIF, +OIF:SP:25:172,1,"Hôpital",48.534349,2.002666,0,0,OIF:SA:25:172,Europe/Paris,,OIF, +OIF:SP:25:173,1,"Hôpital",48.534401,2.002686,0,0,OIF:SA:25:172,Europe/Paris,,OIF, +OIF:SP:25:176,1,"Rouillon",48.554417,2.000202,0,0,OIF:SA:25:176,Europe/Paris,,OIF, +OIF:SP:25:177,1,"Rouillon",48.554499,2.000432,0,0,OIF:SA:25:176,Europe/Paris,,OIF, +OIF:SP:25:178,1,"Semont",48.547595,1.994277,0,0,OIF:SA:25:178,Europe/Paris,,OIF, +OIF:SP:25:179,1,"Semont",48.547586,1.994334,0,0,OIF:SA:25:178,Europe/Paris,,OIF, +OIF:SP:25:18,1,"Collège Racinay",48.63498,1.82374,0,0,OIF:SA:24:7564,Europe/Paris,,OIF, +OIF:SP:25:182,1,"Centre",48.590833,1.731089,0,0,OIF:SA:25:182,Europe/Paris,,OIF, +OIF:SP:25:183,1,"Centre",48.590752,1.731022,0,0,OIF:SA:25:182,Europe/Paris,,OIF, +OIF:SP:25:184,1,"Chaleine",48.595332,1.716264,0,0,OIF:SA:25:184,Europe/Paris,,OIF, +OIF:SP:25:185,1,"Chaleine",48.595324,1.716332,0,0,OIF:SA:25:184,Europe/Paris,,OIF, +OIF:SP:25:19,1,"P. et M. Curie",48.652242,1.827134,0,0,OIF:SA:25:113,Europe/Paris,,OIF, +OIF:SP:25:192,1,"Moreau Voisin",48.592039,1.724053,0,0,OIF:SA:25:192,Europe/Paris,,OIF, +OIF:SP:25:193,1,"Moreau Voisin",48.592083,1.724068,0,0,OIF:SA:25:192,Europe/Paris,,OIF, +OIF:SP:25:194,1,"Montlieu",48.60147,1.754578,0,0,OIF:SA:25:194,Europe/Paris,,OIF, +OIF:SP:25:195,1,"Montlieu",48.601459,1.754512,0,0,OIF:SA:25:194,Europe/Paris,,OIF, +OIF:SP:25:196,1,"Petit Bel Air",48.588472,1.743855,0,0,OIF:SA:25:196,Europe/Paris,,OIF, +OIF:SP:25:197,1,"Petit Bel Air",48.588548,1.744102,0,0,OIF:SA:25:196,Europe/Paris,,OIF, +OIF:SP:25:198,1,"Sauvage",48.585122,1.741168,0,0,OIF:SA:25:198,Europe/Paris,,OIF, +OIF:SP:25:199,1,"Sauvage",48.585193,1.741029,0,0,OIF:SA:25:198,Europe/Paris,,OIF, +OIF:SP:25:20,1,"Drouette",48.62995,1.827542,0,0,OIF:SA:25:20,Europe/Paris,,OIF, +OIF:SP:25:200,1,"Rue de Saint-Hilarion",48.593874,1.729712,0,0,OIF:SA:25:200,Europe/Paris,,OIF, +OIF:SP:25:201,1,"Rue de Saint-Hilarion",48.593892,1.729766,0,0,OIF:SA:25:200,Europe/Paris,,OIF, +OIF:SP:25:204,1,"Prairie",48.607297,1.678976,0,0,OIF:SA:25:204,Europe/Paris,,OIF, +OIF:SP:25:205,1,"Prairie",48.607182,1.678961,0,0,OIF:SA:25:204,Europe/Paris,,OIF, +OIF:SP:25:206,1,"Gare des Essarts le Roi",48.721218,1.889677,0,0,OIF:SA:8739328,Europe/Paris,,OIF, +OIF:SP:25:21,1,"Drouette",48.629996,1.827677,0,0,OIF:SA:25:20,Europe/Paris,,OIF, +OIF:SP:25:210,1,"Mairie",48.687846,1.579384,0,0,OIF:SA:25:210,Europe/Paris,,OIF, +OIF:SP:25:211,1,"Mairie",48.687741,1.579445,0,0,OIF:SA:25:210,Europe/Paris,,OIF, +OIF:SP:25:212,1,"Mesnil Condit",48.684625,1.599982,0,0,OIF:SA:25:212,Europe/Paris,,OIF, +OIF:SP:25:213,1,"Mesnil Condit",48.684697,1.599977,0,0,OIF:SA:25:212,Europe/Paris,,OIF, +OIF:SP:25:214,1,"Bel Air",48.613265,2.165103,0,0,OIF:SA:24:9532,Europe/Paris,,OIF, +OIF:SP:25:215,1,"Bel Air",48.61272,2.166894,0,0,OIF:SA:24:9532,Europe/Paris,,OIF, +OIF:SP:25:216,1,"Centre",48.619068,2.155905,0,0,OIF:SA:25:216,Europe/Paris,,OIF, +OIF:SP:25:217,1,"Centre",48.618969,2.156299,0,0,OIF:SA:25:216,Europe/Paris,,OIF, +OIF:SP:25:218,1,"Galloterie",48.594983,2.153485,0,0,OIF:SA:25:218,Europe/Paris,,OIF, +OIF:SP:25:219,1,"Galloterie",48.595063,2.15359,0,0,OIF:SA:25:218,Europe/Paris,,OIF, +OIF:SP:25:22,1,"Dubuc",48.64633,1.826143,0,0,OIF:SA:25:22,Europe/Paris,,OIF, +OIF:SP:25:220,1,"Soucy",48.60811,2.16664,0,0,OIF:SA:24:9550,Europe/Paris,,OIF, +OIF:SP:25:221,1,"Soucy",48.608078,2.166563,0,0,OIF:SA:24:9550,Europe/Paris,,OIF, +OIF:SP:25:222,1,"Alouetterie",48.599824,2.067227,0,0,OIF:SA:24:15043,Europe/Paris,,OIF, +OIF:SP:25:223,1,"Alouetterie",48.599338,2.066836,0,0,OIF:SA:24:15043,Europe/Paris,,OIF, +OIF:SP:25:224,1,"Bajolet",48.605926,2.070611,0,0,OIF:SA:24:14821,Europe/Paris,,OIF, +OIF:SP:25:225,1,"Bajolet",48.605846,2.070774,0,0,OIF:SA:24:14821,Europe/Paris,,OIF, +OIF:SP:25:226,1,"Chardonnet",48.62575,2.073061,0,0,OIF:SA:24:9567,Europe/Paris,,OIF, +OIF:SP:25:227,1,"Chardonnet",48.625678,2.07287,0,0,OIF:SA:24:9567,Europe/Paris,,OIF, +OIF:SP:25:228,1,"Bois d'Ardeau",48.605612,2.081953,0,0,OIF:SA:24:9563,Europe/Paris,,OIF, +OIF:SP:25:229,1,"Bois d'Ardeau",48.605636,2.081937,0,0,OIF:SA:24:9563,Europe/Paris,,OIF, +OIF:SP:25:23,1,"Eiffel",48.625874,1.824558,0,0,OIF:SA:25:23,Europe/Paris,,OIF, +OIF:SP:25:232,1,"Église",48.628511,2.097657,0,0,OIF:SA:25:232,Europe/Paris,,OIF, +OIF:SP:25:233,1,"Église",48.62843,2.097603,0,0,OIF:SA:25:232,Europe/Paris,,OIF, +OIF:SP:25:234,1,"Rond-Point du Golf",48.629521,2.081949,0,0,OIF:SA:25:234,Europe/Paris,,OIF, +OIF:SP:25:235,1,"Rond-Point du Golf",48.629583,2.081773,0,0,OIF:SA:25:234,Europe/Paris,,OIF, +OIF:SP:25:236,1,"Mairie",48.782155,1.761775,0,0,OIF:SA:25:236,Europe/Paris,,OIF, +OIF:SP:25:237,1,"Mairie",48.782302,1.76167,0,0,OIF:SA:25:236,Europe/Paris,,OIF, +OIF:SP:25:238,1,"Hortensia",48.79772,1.790505,0,0,OIF:SA:22:154,Europe/Paris,,OIF, +OIF:SP:25:239,1,"Hortensia",48.79762,1.790971,0,0,OIF:SA:22:154,Europe/Paris,,OIF, +OIF:SP:25:240,1,"Marronniers",48.795887,1.79649,0,0,OIF:SA:22:152,Europe/Paris,,OIF, +OIF:SP:25:241,1,"Marronniers",48.795979,1.79649,0,0,OIF:SA:22:152,Europe/Paris,,OIF, +OIF:SP:25:242,1,"La Troche",48.782303,1.747086,0,0,OIF:SA:25:242,Europe/Paris,,OIF, +OIF:SP:25:243,1,"La Troche",48.782198,1.747057,0,0,OIF:SA:25:242,Europe/Paris,,OIF, +OIF:SP:25:244,1,"Le Boulay Place",48.782668,1.659605,0,0,OIF:SA:25:244,Europe/Paris,,OIF, +OIF:SP:25:245,1,"Le Boulay Place",48.782556,1.65933,0,0,OIF:SA:25:244,Europe/Paris,,OIF, +OIF:SP:25:246,1,"2 Rue de l'Étang",48.790278,1.696152,0,0,OIF:SA:25:246,Europe/Paris,,OIF, +OIF:SP:25:247,1,"2 Rue de l'Étang",48.79024,1.69615,0,0,OIF:SA:25:246,Europe/Paris,,OIF, +OIF:SP:25:248,1,"Poule Faisane",48.773231,1.672481,0,0,OIF:SA:25:1061,Europe/Paris,,OIF, +OIF:SP:25:249,1,"Bel Air",48.77755,1.664337,0,0,OIF:SA:25:249,Europe/Paris,,OIF, +OIF:SP:25:25,1,"Europe",48.648693,1.855698,0,0,OIF:SA:25:10467,Europe/Paris,,OIF, +OIF:SP:25:250,1,"Bel Air",48.777481,1.664557,0,0,OIF:SA:25:249,Europe/Paris,,OIF, +OIF:SP:25:251,1,"Gambaiseuil",48.756791,1.733421,0,0,OIF:SA:25:251,Europe/Paris,,OIF, +OIF:SP:25:252,1,"Gambaiseuil",48.756769,1.733314,0,0,OIF:SA:25:251,Europe/Paris,,OIF, +OIF:SP:25:255,1,"Guérinoterie",48.776283,1.688358,0,0,OIF:SA:25:255,Europe/Paris,,OIF, +OIF:SP:25:256,1,"Guérinoterie",48.776292,1.688303,0,0,OIF:SA:25:255,Europe/Paris,,OIF, +OIF:SP:25:257,1,"Perdreauville",48.790758,1.676512,0,0,OIF:SA:25:257,Europe/Paris,,OIF, +OIF:SP:25:258,1,"Perdreauville",48.790707,1.676545,0,0,OIF:SA:25:257,Europe/Paris,,OIF, +OIF:SP:25:26,1,"Le Mesle",48.715011,1.687071,0,0,OIF:SA:25:10251,Europe/Paris,,OIF, +OIF:SP:25:260,1,"Pré Joli",48.77481,1.669705,0,0,OIF:SA:25:260,Europe/Paris,,OIF, +OIF:SP:25:261,1,"Pré Joli",48.774706,1.670105,0,0,OIF:SA:25:260,Europe/Paris,,OIF, +OIF:SP:25:262,1,"Saint-Côme",48.77016,1.638761,0,0,OIF:SA:25:262,Europe/Paris,,OIF, +OIF:SP:25:263,1,"Saint-Côme",48.770184,1.638923,0,0,OIF:SA:25:262,Europe/Paris,,OIF, +OIF:SP:25:264,1,"Vieille Tuilerie",48.794608,1.680231,0,0,OIF:SA:25:264,Europe/Paris,,OIF, +OIF:SP:25:265,1,"Vieille Tuilerie",48.794565,1.680234,0,0,OIF:SA:25:264,Europe/Paris,,OIF, +OIF:SP:25:266,1,"12 Arpents",48.627473,1.772727,0,0,OIF:SA:25:266,Europe/Paris,,OIF, +OIF:SP:25:267,1,"12 Arpents",48.627598,1.772509,0,0,OIF:SA:25:266,Europe/Paris,,OIF, +OIF:SP:25:268,1,"Batonceau",48.621294,1.770083,0,0,OIF:SA:25:268,Europe/Paris,,OIF, +OIF:SP:25:269,1,"Batonceau",48.621203,1.769975,0,0,OIF:SA:25:268,Europe/Paris,,OIF, +OIF:SP:25:27,1,"Passage Fleuri",48.644397,1.825166,0,0,OIF:SA:25:27,Europe/Paris,,OIF, +OIF:SP:25:270,1,"Buissonnet",48.638501,1.77321,0,0,OIF:SA:22:9650,Europe/Paris,,OIF, +OIF:SP:25:271,1,"Buissonnet",48.63852,1.772688,0,0,OIF:SA:22:9650,Europe/Paris,,OIF, +OIF:SP:25:274,1,"Gare de Gazeran",48.624097,1.771639,0,0,OIF:SA:8739334,Europe/Paris,,OIF, +OIF:SP:25:275,1,"Gare de Gazeran",48.624084,1.771492,0,0,OIF:SA:8739334,Europe/Paris,,OIF, +OIF:SP:25:277,1,"Mairie",48.636042,1.77505,0,0,OIF:SA:25:277,Europe/Paris,,OIF, +OIF:SP:25:278,1,"Mairie",48.635991,1.775014,0,0,OIF:SA:25:277,Europe/Paris,,OIF, +OIF:SP:25:28,1,"Gambetta",48.644396,1.829625,0,0,OIF:SA:25:28,Europe/Paris,,OIF, +OIF:SP:25:281,1,"Petit Parc",48.632903,1.772027,0,0,OIF:SA:25:281,Europe/Paris,,OIF, +OIF:SP:25:282,1,"Petit Parc",48.632827,1.772016,0,0,OIF:SA:25:281,Europe/Paris,,OIF, +OIF:SP:25:283,1,"Volaille",48.643596,1.743761,0,0,OIF:SA:22:9652,Europe/Paris,,OIF, +OIF:SP:25:284,1,"Volaille",48.643549,1.743836,0,0,OIF:SA:22:9652,Europe/Paris,,OIF, +OIF:SP:25:285,1,"Le Breuil",48.731804,1.638366,0,0,OIF:SA:25:285,Europe/Paris,,OIF, +OIF:SP:25:286,1,"Le Breuil",48.731897,1.638456,0,0,OIF:SA:25:285,Europe/Paris,,OIF, +OIF:SP:25:287,1,"Château",48.708315,1.617793,0,0,OIF:SA:25:287,Europe/Paris,,OIF, +OIF:SP:25:288,1,"Château",48.708243,1.617764,0,0,OIF:SA:25:287,Europe/Paris,,OIF, +OIF:SP:25:289,1,"Curé",48.711812,1.598146,0,0,OIF:SA:25:289,Europe/Paris,,OIF, +OIF:SP:25:29,1,"Gazeran",48.624173,1.826424,0,0,OIF:SA:25:29,Europe/Paris,,OIF, +OIF:SP:25:290,1,"Curé",48.711758,1.598173,0,0,OIF:SA:25:289,Europe/Paris,,OIF, +OIF:SP:25:295,1,"Mairie",48.699033,1.59572,0,0,OIF:SA:25:295,Europe/Paris,,OIF, +OIF:SP:25:296,1,"Mairie",48.699025,1.595869,0,0,OIF:SA:25:295,Europe/Paris,,OIF, +OIF:SP:25:297,1,"Étang la Ville",48.774164,1.791317,0,0,OIF:SA:25:297,Europe/Paris,,OIF, +OIF:SP:25:298,1,"Étang la Ville",48.774262,1.791309,0,0,OIF:SA:25:297,Europe/Paris,,OIF, +OIF:SP:25:299,1,"Les Haizettes",48.771285,1.743629,0,0,OIF:SA:25:299,Europe/Paris,,OIF, +OIF:SP:25:3,1,"Arbouville",48.638025,1.817796,0,0,OIF:SA:24:14738,Europe/Paris,,OIF, +OIF:SP:25:300,1,"Les Haizettes",48.77132,1.743579,0,0,OIF:SA:25:299,Europe/Paris,,OIF, +OIF:SP:25:301,1,"Chêne Rogneux",48.774162,1.767216,0,0,OIF:SA:25:301,Europe/Paris,,OIF, +OIF:SP:25:302,1,"Chêne Rogneux",48.774149,1.767153,0,0,OIF:SA:25:301,Europe/Paris,,OIF, +OIF:SP:25:303,1,"La Surie",48.783623,1.768224,0,0,OIF:SA:25:303,Europe/Paris,,OIF, +OIF:SP:25:304,1,"La Surie",48.783647,1.768163,0,0,OIF:SA:25:303,Europe/Paris,,OIF, +OIF:SP:25:305,1,"60 Arpents",48.763241,2.084215,0,0,OIF:SA:25:305,Europe/Paris,,OIF, +OIF:SP:25:306,1,"60 Arpents",48.76402,2.08605,0,0,OIF:SA:25:305,Europe/Paris,,OIF, +OIF:SP:25:307,1,"L'Étang",48.757705,2.08778,0,0,OIF:SA:25:307,Europe/Paris,,OIF, +OIF:SP:25:308,1,"Trou Berger",48.758411,2.076067,0,0,OIF:SA:25:308,Europe/Paris,,OIF, +OIF:SP:25:309,1,"Trou Berger",48.758423,2.076096,0,0,OIF:SA:25:308,Europe/Paris,,OIF, +OIF:SP:25:31,1,"Giroderie",48.644695,1.847106,0,0,OIF:SA:24:7570,Europe/Paris,,OIF, +OIF:SP:25:310,1,"Mairie",48.600362,1.642568,0,0,OIF:SA:25:310,Europe/Paris,,OIF, +OIF:SP:25:311,1,"Mairie",48.600426,1.642689,0,0,OIF:SA:25:310,Europe/Paris,,OIF, +OIF:SP:25:314,1,"La Hauteville",48.70412,1.617594,0,0,OIF:SA:25:314,Europe/Paris,,OIF, +OIF:SP:25:315,1,"La Hauteville",48.704141,1.617591,0,0,OIF:SA:25:314,Europe/Paris,,OIF, +OIF:SP:25:316,1,"Amblaincourt",48.634314,1.680107,0,0,OIF:SA:25:316,Europe/Paris,,OIF, +OIF:SP:25:317,1,"Amblaincourt",48.63444,1.679326,0,0,OIF:SA:25:316,Europe/Paris,,OIF, +OIF:SP:25:318,1,"Béchereau",48.650729,1.688826,0,0,OIF:SA:25:318,Europe/Paris,,OIF, +OIF:SP:25:319,1,"Béchereau",48.650767,1.688546,0,0,OIF:SA:25:318,Europe/Paris,,OIF, +OIF:SP:25:32,1,"Giroderie",48.644411,1.845694,0,0,OIF:SA:24:7570,Europe/Paris,,OIF, +OIF:SP:25:320,1,"Bois Dieu",48.647548,1.720661,0,0,OIF:SA:22:9654,Europe/Paris,,OIF, +OIF:SP:25:321,1,"Bois Dieu",48.64745,1.72092,0,0,OIF:SA:22:9654,Europe/Paris,,OIF, +OIF:SP:25:322,1,"Église",48.637325,1.675346,0,0,OIF:SA:25:322,Europe/Paris,,OIF, +OIF:SP:25:323,1,"Église",48.637172,1.675293,0,0,OIF:SA:25:322,Europe/Paris,,OIF, +OIF:SP:25:324,1,"Guipérreux",48.658629,1.694804,0,0,OIF:SA:25:324,Europe/Paris,,OIF, +OIF:SP:25:325,1,"Guipérreux",48.658712,1.695264,0,0,OIF:SA:25:324,Europe/Paris,,OIF, +OIF:SP:25:326,1,"La Villeneuve",48.654903,1.677751,0,0,OIF:SA:22:9660,Europe/Paris,,OIF, +OIF:SP:25:327,1,"La Villeneuve",48.654903,1.677659,0,0,OIF:SA:22:9660,Europe/Paris,,OIF, +OIF:SP:25:328,1,"L'Orme",48.64539,1.683694,0,0,OIF:SA:25:328,Europe/Paris,,OIF, +OIF:SP:25:329,1,"L'Orme",48.645435,1.683653,0,0,OIF:SA:25:328,Europe/Paris,,OIF, +OIF:SP:25:33,1,"Grand Mail",48.653454,1.859181,0,0,OIF:SA:25:33,Europe/Paris,,OIF, +OIF:SP:25:34,1,"Grenonvilliers",48.653981,1.838006,0,0,OIF:SA:25:124,Europe/Paris,,OIF, +OIF:SP:25:341,1,"Lycée Jean Monnet",48.802459,1.782139,0,0,OIF:SA:22:156,Europe/Paris,,OIF, +OIF:SP:25:342,1,"Lycée Jean Monnet",48.802471,1.782083,0,0,OIF:SA:22:156,Europe/Paris,,OIF, +OIF:SP:25:345,1,"Barantonnerie",48.69184,1.84688,0,0,OIF:SA:25:345,Europe/Paris,,OIF, +OIF:SP:25:346,1,"Barantonnerie",48.691901,1.846882,0,0,OIF:SA:25:345,Europe/Paris,,OIF, +OIF:SP:25:347,1,"Champ de Foire",48.69691,1.856304,0,0,OIF:SA:25:347,Europe/Paris,,OIF, +OIF:SP:25:348,1,"Champ de Foire",48.697155,1.85644,0,0,OIF:SA:25:347,Europe/Paris,,OIF, +OIF:SP:25:349,1,"Chemin Neuf",48.685071,1.846036,0,0,OIF:SA:25:349,Europe/Paris,,OIF, +OIF:SP:25:35,1,"Hôtel des Impôts",48.648479,1.823779,0,0,OIF:SA:25:109,Europe/Paris,,OIF, +OIF:SP:25:350,1,"Chemin Neuf",48.685167,1.846001,0,0,OIF:SA:25:349,Europe/Paris,,OIF, +OIF:SP:25:351,1,"ZI Chemin Vert",48.703657,1.859354,0,0,OIF:SA:25:351,Europe/Paris,,OIF, +OIF:SP:25:352,1,"ZI Chemin Vert",48.703651,1.859421,0,0,OIF:SA:25:351,Europe/Paris,,OIF, +OIF:SP:25:356,1,"Fer Ouvré",48.699788,1.859713,0,0,OIF:SA:25:356,Europe/Paris,,OIF, +OIF:SP:25:359,1,"Gerbière",48.693909,1.846337,0,0,OIF:SA:25:359,Europe/Paris,,OIF, +OIF:SP:25:36,1,"Saint-Hubert",48.636783,1.831965,0,0,OIF:SA:25:36,Europe/Paris,,OIF, +OIF:SP:25:360,1,"Gerbière",48.693724,1.846616,0,0,OIF:SA:25:359,Europe/Paris,,OIF, +OIF:SP:25:361,1,"Grand Amiral",48.689337,1.851685,0,0,OIF:SA:25:361,Europe/Paris,,OIF, +OIF:SP:25:362,1,"Grand Amiral",48.689207,1.85144,0,0,OIF:SA:25:361,Europe/Paris,,OIF, +OIF:SP:25:363,1,"Halpherie",48.702117,1.856014,0,0,OIF:SA:25:363,Europe/Paris,,OIF, +OIF:SP:25:364,1,"Halpherie",48.702053,1.8561,0,0,OIF:SA:25:363,Europe/Paris,,OIF, +OIF:SP:25:365,1,"Joute aux Cerfs",48.690348,1.844235,0,0,OIF:SA:25:365,Europe/Paris,,OIF, +OIF:SP:25:366,1,"Joute aux Cerfs",48.690343,1.844312,0,0,OIF:SA:25:365,Europe/Paris,,OIF, +OIF:SP:25:369,1,"Pont Marquant",48.690982,1.851816,0,0,OIF:SA:25:369,Europe/Paris,,OIF, +OIF:SP:25:37,1,"Jonquilles",48.646707,1.855537,0,0,OIF:SA:25:37,Europe/Paris,,OIF, +OIF:SP:25:370,1,"Pont Marquant",48.691085,1.851911,0,0,OIF:SA:25:369,Europe/Paris,,OIF, +OIF:SP:25:373,1,"ASPTT",48.701023,1.85506,0,0,OIF:SA:25:373,Europe/Paris,,OIF, +OIF:SP:25:374,1,"ASPTT",48.701078,1.854967,0,0,OIF:SA:25:373,Europe/Paris,,OIF, +OIF:SP:25:375,1,"Roseau",48.694583,1.832083,0,0,OIF:SA:25:375,Europe/Paris,,OIF, +OIF:SP:25:376,1,"Roseau",48.694567,1.832018,0,0,OIF:SA:25:375,Europe/Paris,,OIF, +OIF:SP:25:377,1,"Rotoir",48.689074,1.839568,0,0,OIF:SA:25:377,Europe/Paris,,OIF, +OIF:SP:25:378,1,"Rotoir",48.689029,1.839578,0,0,OIF:SA:25:377,Europe/Paris,,OIF, +OIF:SP:25:379,1,"Gare du Perray en Yvelines [Gare Souterrain]",48.693395,1.856899,0,0,OIF:SA:25:379,Europe/Paris,,OIF, +OIF:SP:25:38,1,"Kennedy",48.649331,1.840952,0,0,OIF:SA:25:38,Europe/Paris,,OIF, +OIF:SP:25:380,1,"Gare du Perray en Yvelines [Gare Souterrain]",48.69339,1.856955,0,0,OIF:SA:25:379,Europe/Paris,,OIF, +OIF:SP:25:381,1,"Saint-Jacques",48.68234,1.842775,0,0,OIF:SA:25:381,Europe/Paris,,OIF, +OIF:SP:25:382,1,"Saint-Jacques",48.682267,1.8426,0,0,OIF:SA:25:381,Europe/Paris,,OIF, +OIF:SP:25:383,1,"La Touche",48.696849,1.838817,0,0,OIF:SA:25:383,Europe/Paris,,OIF, +OIF:SP:25:384,1,"La Touche",48.696886,1.838577,0,0,OIF:SA:25:383,Europe/Paris,,OIF, +OIF:SP:25:385,1,"Le Val",48.565555,2.061284,0,0,OIF:SA:25:385,Europe/Paris,,OIF, +OIF:SP:25:386,1,"Le Val",48.565482,2.061494,0,0,OIF:SA:25:385,Europe/Paris,,OIF, +OIF:SP:25:387,1,"Marais",48.57586,2.100478,0,0,OIF:SA:25:387,Europe/Paris,,OIF, +OIF:SP:25:388,1,"Marais",48.575787,2.100486,0,0,OIF:SA:25:387,Europe/Paris,,OIF, +OIF:SP:25:389,1,"Bout du Vau",48.566443,2.069756,0,0,OIF:SA:25:389,Europe/Paris,,OIF, +OIF:SP:25:39,1,"Kennedy",48.649273,1.840974,0,0,OIF:SA:25:38,Europe/Paris,,OIF, +OIF:SP:25:390,1,"Bout du Vau",48.566406,2.069887,0,0,OIF:SA:25:389,Europe/Paris,,OIF, +OIF:SP:25:395,1,"Monument",48.645011,2.074908,0,0,OIF:SA:24:9888,Europe/Paris,,OIF, +OIF:SP:25:396,1,"Monument",48.644967,2.075037,0,0,OIF:SA:24:9888,Europe/Paris,,OIF, +OIF:SP:25:399,1,"Lycée Jules Verne",48.643245,2.089288,0,0,OIF:SA:24:9886,Europe/Paris,,OIF, +OIF:SP:25:4,1,"Métairie",48.62167,1.825156,0,0,OIF:SA:25:4,Europe/Paris,,OIF, +OIF:SP:25:40,1,"Lac",48.648491,1.859469,0,0,OIF:SA:25:10468,Europe/Paris,,OIF, +OIF:SP:25:400,1,"Lycée Jules Verne",48.643245,2.089288,0,0,OIF:SA:24:9886,Europe/Paris,,OIF, +OIF:SP:25:401,1,"Collège Vignaud",48.64333,2.082695,0,0,OIF:SA:25:401,Europe/Paris,,OIF, +OIF:SP:25:402,1,"Collège Vignaud",48.643276,2.082655,0,0,OIF:SA:25:401,Europe/Paris,,OIF, +OIF:SP:25:403,1,"La Bâte",48.591631,2.015383,0,0,OIF:SA:25:403,Europe/Paris,,OIF, +OIF:SP:25:404,1,"La Bâte",48.59177,2.015354,0,0,OIF:SA:25:403,Europe/Paris,,OIF, +OIF:SP:25:405,1,"Bouc Étourdi",48.556054,2.003659,0,0,OIF:SA:24:15137,Europe/Paris,,OIF, +OIF:SP:25:406,1,"Bouc Étourdi",48.555992,2.003821,0,0,OIF:SA:24:15137,Europe/Paris,,OIF, +OIF:SP:25:409,1,"Plessis Mornay",48.565619,1.987544,0,0,OIF:SA:25:409,Europe/Paris,,OIF, +OIF:SP:25:41,1,"Place des Fêtes",48.701266,1.884469,0,0,OIF:SA:25:41,Europe/Paris,,OIF, +OIF:SP:25:410,1,"Plessis Mornay",48.565882,1.987371,0,0,OIF:SA:25:409,Europe/Paris,,OIF, +OIF:SP:25:413,1,"Village",48.579186,1.990982,0,0,OIF:SA:25:413,Europe/Paris,,OIF, +OIF:SP:25:414,1,"Village",48.579331,1.991018,0,0,OIF:SA:25:413,Europe/Paris,,OIF, +OIF:SP:25:418,1,"Cheval Mort",48.780758,1.843917,0,0,OIF:SA:25:418,Europe/Paris,,OIF, +OIF:SP:25:419,1,"Cheval Mort",48.780605,1.845464,0,0,OIF:SA:25:418,Europe/Paris,,OIF, +OIF:SP:25:42,1,"Place des Fêtes",48.701019,1.884483,0,0,OIF:SA:25:41,Europe/Paris,,OIF, +OIF:SP:25:421,1,"Place",48.789948,1.851803,0,0,OIF:SA:25:421,Europe/Paris,,OIF, +OIF:SP:25:424,1,"Thionville sur Opton",48.775955,1.604583,0,0,OIF:SA:22:409,Europe/Paris,,OIF, +OIF:SP:25:425,1,"Thionville sur Opton",48.77538,1.604562,0,0,OIF:SA:22:409,Europe/Paris,,OIF, +OIF:SP:25:426,1,"Gare de Montfort l'Amaury - Méré",48.802351,1.815075,0,0,OIF:SA:8739389,Europe/Paris,,OIF, +OIF:SP:25:427,1,"Mairie",48.788077,1.819951,0,0,OIF:SA:22:148,Europe/Paris,,OIF, +OIF:SP:25:428,1,"Mairie",48.78801,1.81982,0,0,OIF:SA:22:148,Europe/Paris,,OIF, +OIF:SP:25:429,1,"Parc Boulogne",48.789235,1.813423,0,0,OIF:SA:25:429,Europe/Paris,,OIF, +OIF:SP:25:43,1,"Lenôtre",48.637976,1.827125,0,0,OIF:SA:25:43,Europe/Paris,,OIF, +OIF:SP:25:430,1,"Parc Boulogne",48.789205,1.81345,0,0,OIF:SA:25:429,Europe/Paris,,OIF, +OIF:SP:25:435,1,"L'Aunay",48.653453,1.628715,0,0,OIF:SA:25:435,Europe/Paris,,OIF, +OIF:SP:25:436,1,"L'Aunay",48.653491,1.628764,0,0,OIF:SA:25:435,Europe/Paris,,OIF, +OIF:SP:25:437,1,"Berthière",48.664331,1.632549,0,0,OIF:SA:25:437,Europe/Paris,,OIF, +OIF:SP:25:438,1,"Berthière",48.664284,1.632482,0,0,OIF:SA:25:437,Europe/Paris,,OIF, +OIF:SP:25:439,1,"Croix Rouge",48.667174,1.641559,0,0,OIF:SA:25:439,Europe/Paris,,OIF, +OIF:SP:25:44,1,"Lenôtre",48.638165,1.827136,0,0,OIF:SA:25:43,Europe/Paris,,OIF, +OIF:SP:25:440,1,"Croix Rouge",48.667197,1.641653,0,0,OIF:SA:25:439,Europe/Paris,,OIF, +OIF:SP:25:441,1,"Église",48.668817,1.644496,0,0,OIF:SA:25:441,Europe/Paris,,OIF, +OIF:SP:25:442,1,"Église",48.668811,1.644421,0,0,OIF:SA:25:441,Europe/Paris,,OIF, +OIF:SP:25:443,1,"Les Pâtis",48.665856,1.623685,0,0,OIF:SA:25:443,Europe/Paris,,OIF, +OIF:SP:25:444,1,"Les Pâtis",48.66588,1.623756,0,0,OIF:SA:25:443,Europe/Paris,,OIF, +OIF:SP:25:445,1,"Le Poteau",48.663455,1.625048,0,0,OIF:SA:25:445,Europe/Paris,,OIF, +OIF:SP:25:446,1,"Le Poteau",48.663448,1.624903,0,0,OIF:SA:25:445,Europe/Paris,,OIF, +OIF:SP:25:447,1,"Renardière",48.665377,1.637543,0,0,OIF:SA:25:447,Europe/Paris,,OIF, +OIF:SP:25:448,1,"Renardière",48.66537,1.637632,0,0,OIF:SA:25:447,Europe/Paris,,OIF, +OIF:SP:25:449,1,"Vacheresse",48.662805,1.61667,0,0,OIF:SA:25:449,Europe/Paris,,OIF, +OIF:SP:25:450,1,"Vacheresse",48.662777,1.616666,0,0,OIF:SA:25:449,Europe/Paris,,OIF, +OIF:SP:25:451,1,"Le Val",48.655347,1.630881,0,0,OIF:SA:25:451,Europe/Paris,,OIF, +OIF:SP:25:452,1,"Le Val",48.655293,1.631076,0,0,OIF:SA:25:451,Europe/Paris,,OIF, +OIF:SP:25:453,1,"Église",48.74247,1.961145,0,0,OIF:SA:25:453,Europe/Paris,,OIF, +OIF:SP:25:454,1,"Place du Mesnil",48.742964,1.962135,0,0,OIF:SA:25:453,Europe/Paris,,OIF, +OIF:SP:25:455,1,"Porte Henry IV",48.743728,1.950012,0,0,OIF:SA:25:455,Europe/Paris,,OIF, +OIF:SP:25:456,1,"Porte Henry IV",48.74439,1.949744,0,0,OIF:SA:25:455,Europe/Paris,,OIF, +OIF:SP:25:457,1,"Louveterie",48.745832,1.963923,0,0,OIF:SA:24:15098,Europe/Paris,,OIF, +OIF:SP:25:458,1,"Louveterie",48.745882,1.963908,0,0,OIF:SA:24:15098,Europe/Paris,,OIF, +OIF:SP:25:459,1,"L'Aunay Bertin",48.766449,1.823703,0,0,OIF:SA:25:459,Europe/Paris,,OIF, +OIF:SP:25:46,1,"Louvière",48.64402,1.840012,0,0,OIF:SA:25:46,Europe/Paris,,OIF, +OIF:SP:25:460,1,"L'Aunay Bertin",48.766501,1.823629,0,0,OIF:SA:25:459,Europe/Paris,,OIF, +OIF:SP:25:461,1,"Chapelle",48.763702,1.825137,0,0,OIF:SA:25:461,Europe/Paris,,OIF, +OIF:SP:25:462,1,"Chapelle",48.763732,1.825037,0,0,OIF:SA:25:461,Europe/Paris,,OIF, +OIF:SP:25:463,1,"Place",48.756854,1.835894,0,0,OIF:SA:25:463,Europe/Paris,,OIF, +OIF:SP:25:464,1,"Place",48.757035,1.836384,0,0,OIF:SA:25:463,Europe/Paris,,OIF, +OIF:SP:25:467,1,"Notre-Dame du Bel Air",48.777499,1.798622,0,0,OIF:SA:25:467,Europe/Paris,,OIF, +OIF:SP:25:468,1,"Notre-Dame du Bel Air",48.777568,1.798584,0,0,OIF:SA:25:467,Europe/Paris,,OIF, +OIF:SP:25:47,1,"Louvière",48.643918,1.839976,0,0,OIF:SA:25:46,Europe/Paris,,OIF, +OIF:SP:25:471,1,"Egremont",48.779005,1.80218,0,0,OIF:SA:25:471,Europe/Paris,,OIF, +OIF:SP:25:472,1,"Egremont",48.778923,1.80218,0,0,OIF:SA:25:471,Europe/Paris,,OIF, +OIF:SP:25:475,1,"Général de Gaulle",48.781166,1.811192,0,0,OIF:SA:25:475,Europe/Paris,,OIF, +OIF:SP:25:476,1,"Général de Gaulle",48.780573,1.811064,0,0,OIF:SA:25:475,Europe/Paris,,OIF, +OIF:SP:25:48,1,"Les Vergers",48.638575,1.83441,0,0,OIF:SA:25:48,Europe/Paris,,OIF, +OIF:SP:25:485,1,"Collège Maurice Ravel",48.774693,1.815128,0,0,OIF:SA:25:485,Europe/Paris,,OIF, +OIF:SP:25:49,1,"Piscine",48.465207,1.777629,0,0,OIF:SA:25:10203,Europe/Paris,,OIF, +OIF:SP:25:494,1,"Etoile",48.64815,1.534432,0,0,OIF:SA:25:494,Europe/Paris,,OIF, +OIF:SP:25:495,1,"Etoile",48.648084,1.534313,0,0,OIF:SA:25:494,Europe/Paris,,OIF, +OIF:SP:25:496,1,"Haut de Nogent",48.6421,1.521218,0,0,OIF:SA:25:496,Europe/Paris,,OIF, +OIF:SP:25:497,1,"Haut de Nogent",48.642162,1.521027,0,0,OIF:SA:25:496,Europe/Paris,,OIF, +OIF:SP:25:498,1,"Mairie",48.648221,1.530375,0,0,OIF:SA:25:498,Europe/Paris,,OIF, +OIF:SP:25:499,1,"Mairie",48.648024,1.530486,0,0,OIF:SA:25:498,Europe/Paris,,OIF, +OIF:SP:25:50,1,"Maréchal Juin",48.633463,1.82919,0,0,OIF:SA:25:50,Europe/Paris,,OIF, +OIF:SP:25:500,1,"Centre",48.587826,1.811057,0,0,OIF:SA:25:500,Europe/Paris,,OIF, +OIF:SP:25:501,1,"Centre",48.587456,1.811376,0,0,OIF:SA:25:500,Europe/Paris,,OIF, +OIF:SP:25:502,1,"L'Epinaye",48.583214,1.822682,0,0,OIF:SA:25:502,Europe/Paris,,OIF, +OIF:SP:25:503,1,"Guillemets",48.607415,1.805261,0,0,OIF:SA:25:503,Europe/Paris,,OIF, +OIF:SP:25:504,1,"Guillemets",48.607442,1.805559,0,0,OIF:SA:25:503,Europe/Paris,,OIF, +OIF:SP:25:505,1,"Rôtis",48.597998,1.802159,0,0,OIF:SA:25:505,Europe/Paris,,OIF, +OIF:SP:25:506,1,"Rôtis",48.597561,1.801821,0,0,OIF:SA:25:505,Europe/Paris,,OIF, +OIF:SP:25:507,1,"Cerqueuse",48.562379,1.789792,0,0,OIF:SA:25:507,Europe/Paris,,OIF, +OIF:SP:25:508,1,"Cerqueuse",48.562316,1.789861,0,0,OIF:SA:25:507,Europe/Paris,,OIF, +OIF:SP:25:509,1,"Les Coudrayes",48.578144,1.783354,0,0,OIF:SA:25:509,Europe/Paris,,OIF, +OIF:SP:25:51,1,"Maréchal Juin",48.634119,1.829048,0,0,OIF:SA:25:50,Europe/Paris,,OIF, +OIF:SP:25:510,1,"Les Coudrayes",48.577809,1.784862,0,0,OIF:SA:25:509,Europe/Paris,,OIF, +OIF:SP:25:511,1,"Haute Maison",48.567397,1.769384,0,0,OIF:SA:25:511,Europe/Paris,,OIF, +OIF:SP:25:512,1,"Haute Maison",48.56728,1.769098,0,0,OIF:SA:25:511,Europe/Paris,,OIF, +OIF:SP:25:513,1,"Mairie",48.578182,1.779296,0,0,OIF:SA:25:1062,Europe/Paris,,OIF, +OIF:SP:25:517,1,"Poyers",48.579381,1.767436,0,0,OIF:SA:25:517,Europe/Paris,,OIF, +OIF:SP:25:518,1,"Poyers",48.579282,1.767396,0,0,OIF:SA:25:517,Europe/Paris,,OIF, +OIF:SP:25:519,1,"Brasserie",48.479134,1.848582,0,0,OIF:SA:25:519,Europe/Paris,,OIF, +OIF:SP:25:520,1,"Brasserie",48.479039,1.848634,0,0,OIF:SA:25:519,Europe/Paris,,OIF, +OIF:SP:25:523,1,"Église",48.478188,1.834528,0,0,OIF:SA:25:523,Europe/Paris,,OIF, +OIF:SP:25:524,1,"Église",48.478206,1.8348,0,0,OIF:SA:25:523,Europe/Paris,,OIF, +OIF:SP:25:525,1,"Paray Gare",48.479136,1.85038,0,0,OIF:SA:25:525,Europe/Paris,,OIF, +OIF:SP:25:528,1,"Lenainville",48.448869,1.848314,0,0,OIF:SA:25:528,Europe/Paris,,OIF, +OIF:SP:25:529,1,"Lenainville",48.448984,1.848359,0,0,OIF:SA:25:528,Europe/Paris,,OIF, +OIF:SP:25:53,1,"Marais",48.65275,1.819938,0,0,OIF:SA:25:10342,Europe/Paris,,OIF, +OIF:SP:25:530,1,"Paray Douaville",48.46369,1.877002,0,0,OIF:SA:25:530,Europe/Paris,,OIF, +OIF:SP:25:531,1,"Paray Douaville",48.463501,1.877085,0,0,OIF:SA:25:530,Europe/Paris,,OIF, +OIF:SP:25:532,1,"Villiers les Oudets",48.451723,1.874593,0,0,OIF:SA:25:532,Europe/Paris,,OIF, +OIF:SP:25:533,1,"Villiers les Oudets",48.451777,1.874512,0,0,OIF:SA:25:532,Europe/Paris,,OIF, +OIF:SP:25:536,1,"Cerisaie",48.676687,1.765188,0,0,OIF:SA:25:536,Europe/Paris,,OIF, +OIF:SP:25:537,1,"Cerisaie",48.676639,1.765406,0,0,OIF:SA:25:536,Europe/Paris,,OIF, +OIF:SP:25:538,1,"Cimetière",48.680927,1.757058,0,0,OIF:SA:25:538,Europe/Paris,,OIF, +OIF:SP:25:539,1,"Cimetière",48.681072,1.757364,0,0,OIF:SA:25:538,Europe/Paris,,OIF, +OIF:SP:25:54,1,"Mège Mouries",48.622824,1.828046,0,0,OIF:SA:25:54,Europe/Paris,,OIF, +OIF:SP:25:540,1,"Feuillettes",48.684242,1.762882,0,0,OIF:SA:25:540,Europe/Paris,,OIF, +OIF:SP:25:541,1,"Feuillettes",48.684124,1.762821,0,0,OIF:SA:25:540,Europe/Paris,,OIF, +OIF:SP:25:542,1,"Mairie",48.676038,1.753303,0,0,OIF:SA:25:542,Europe/Paris,,OIF, +OIF:SP:25:543,1,"Mairie",48.676179,1.753733,0,0,OIF:SA:25:542,Europe/Paris,,OIF, +OIF:SP:25:544,1,"Petit Paris",48.693542,1.770559,0,0,OIF:SA:25:544,Europe/Paris,,OIF, +OIF:SP:25:545,1,"Petit Paris",48.693462,1.770391,0,0,OIF:SA:25:544,Europe/Paris,,OIF, +OIF:SP:25:552,1,"Mairie",48.55326,1.911584,0,0,OIF:SA:25:552,Europe/Paris,,OIF, +OIF:SP:25:553,1,"Mairie",48.553137,1.911366,0,0,OIF:SA:25:552,Europe/Paris,,OIF, +OIF:SP:25:554,1,"Vallée Brun",48.555773,1.907853,0,0,OIF:SA:25:554,Europe/Paris,,OIF, +OIF:SP:25:555,1,"Vallée Brun",48.55571,1.907868,0,0,OIF:SA:25:554,Europe/Paris,,OIF, +OIF:SP:25:56,1,"Jean Monnet",48.643819,1.840407,0,0,OIF:SA:24:7572,Europe/Paris,,OIF, +OIF:SP:25:560,1,"Craches",48.556055,1.807279,0,0,OIF:SA:25:560,Europe/Paris,,OIF, +OIF:SP:25:561,1,"Craches",48.556276,1.807529,0,0,OIF:SA:25:560,Europe/Paris,,OIF, +OIF:SP:25:562,1,"École",48.529017,1.794921,0,0,OIF:SA:25:562,Europe/Paris,,OIF, +OIF:SP:25:563,1,"École",48.528997,1.795017,0,0,OIF:SA:25:562,Europe/Paris,,OIF, +OIF:SP:25:564,1,"Gourville",48.514088,1.791837,0,0,OIF:SA:25:564,Europe/Paris,,OIF, +OIF:SP:25:565,1,"Gourville",48.514055,1.791888,0,0,OIF:SA:25:564,Europe/Paris,,OIF, +OIF:SP:25:566,1,"Marchais Parfond",48.540101,1.788864,0,0,OIF:SA:25:566,Europe/Paris,,OIF, +OIF:SP:25:568,1,"Telecom",48.553581,1.790332,0,0,OIF:SA:25:568,Europe/Paris,,OIF, +OIF:SP:25:569,1,"Telecom",48.554288,1.790477,0,0,OIF:SA:25:568,Europe/Paris,,OIF, +OIF:SP:25:57,1,"Jean Monnet",48.643759,1.840215,0,0,OIF:SA:24:7572,Europe/Paris,,OIF, +OIF:SP:25:570,1,"Les Chaises",48.650306,1.692466,0,0,OIF:SA:25:570,Europe/Paris,,OIF, +OIF:SP:25:571,1,"Les Chaises",48.650229,1.692397,0,0,OIF:SA:25:570,Europe/Paris,,OIF, +OIF:SP:25:574,1,"Mairie",48.623954,1.682702,0,0,OIF:SA:25:574,Europe/Paris,,OIF, +OIF:SP:25:575,1,"Mairie",48.623928,1.682784,0,0,OIF:SA:25:574,Europe/Paris,,OIF, +OIF:SP:25:6,1,"Alouette",48.650661,1.842933,0,0,OIF:SA:25:6,Europe/Paris,,OIF, +OIF:SP:25:60,1,"Marine",48.634729,1.818198,0,0,OIF:SA:25:60,Europe/Paris,,OIF, +OIF:SP:25:61,1,"Muguet",48.647339,1.841595,0,0,OIF:SA:25:61,Europe/Paris,,OIF, +OIF:SP:25:611,1,"Jonquilles",48.646735,1.855594,0,0,OIF:SA:25:37,Europe/Paris,,OIF, +OIF:SP:25:62,1,"Muguet",48.647299,1.841917,0,0,OIF:SA:25:61,Europe/Paris,,OIF, +OIF:SP:25:63,1,"Parc",48.642087,1.825701,0,0,OIF:SA:25:63,Europe/Paris,,OIF, +OIF:SP:25:64,1,"Pasteur",48.649645,1.825382,0,0,OIF:SA:25:110,Europe/Paris,,OIF, +OIF:SP:25:65,1,"Pierre Fite",48.640782,1.821251,0,0,OIF:SA:25:65,Europe/Paris,,OIF, +OIF:SP:25:66,1,"Pompidou",48.636618,1.829037,0,0,OIF:SA:25:66,Europe/Paris,,OIF, +OIF:SP:25:67,1,"Poste",48.647448,1.82449,0,0,OIF:SA:25:67,Europe/Paris,,OIF, +OIF:SP:25:671,1,"École",48.583424,1.986344,0,0,OIF:SA:25:671,Europe/Paris,,OIF, +OIF:SP:25:672,1,"École",48.583528,1.986331,0,0,OIF:SA:25:671,Europe/Paris,,OIF, +OIF:SP:25:673,1,"La Garenne",48.590481,1.990967,0,0,OIF:SA:25:673,Europe/Paris,,OIF, +OIF:SP:25:674,1,"La Garenne",48.591123,1.991496,0,0,OIF:SA:25:673,Europe/Paris,,OIF, +OIF:SP:25:675,1,"Foisnard",48.56794,2.031157,0,0,OIF:SA:25:675,Europe/Paris,,OIF, +OIF:SP:25:676,1,"Foisnard",48.568011,2.031455,0,0,OIF:SA:25:675,Europe/Paris,,OIF, +OIF:SP:25:677,1,"Les Loges",48.563662,2.049049,0,0,OIF:SA:25:677,Europe/Paris,,OIF, +OIF:SP:25:678,1,"Les Loges",48.563581,2.049185,0,0,OIF:SA:25:677,Europe/Paris,,OIF, +OIF:SP:25:679,1,"Pont Rué",48.565219,2.039126,0,0,OIF:SA:25:679,Europe/Paris,,OIF, +OIF:SP:25:68,1,"Gare de Rambouillet [Prairie]",48.643226,1.832202,0,0,OIF:SA:8739331,Europe/Paris,,OIF, +OIF:SP:25:680,1,"Pont Rué",48.565475,2.038483,0,0,OIF:SA:25:679,Europe/Paris,,OIF, +OIF:SP:25:681,1,"Saint-Antoine",48.615033,1.701617,0,0,OIF:SA:25:681,Europe/Paris,,OIF, +OIF:SP:25:682,1,"Saint-Antoine",48.615068,1.701589,0,0,OIF:SA:25:681,Europe/Paris,,OIF, +OIF:SP:25:683,1,"Route d'Epernon",48.612478,1.685963,0,0,OIF:SA:25:683,Europe/Paris,,OIF, +OIF:SP:25:684,1,"Route d'Epernon",48.612494,1.686111,0,0,OIF:SA:25:683,Europe/Paris,,OIF, +OIF:SP:25:685,1,"Fosseuil",48.619031,1.700114,0,0,OIF:SA:25:685,Europe/Paris,,OIF, +OIF:SP:25:686,1,"Fosseuil",48.618929,1.700174,0,0,OIF:SA:25:685,Europe/Paris,,OIF, +OIF:SP:25:687,1,"Grand Goulet",48.616147,1.716965,0,0,OIF:SA:25:687,Europe/Paris,,OIF, +OIF:SP:25:688,1,"Grand Goulet",48.616048,1.717048,0,0,OIF:SA:25:687,Europe/Paris,,OIF, +OIF:SP:25:689,1,"Mairie",48.620188,1.733106,0,0,OIF:SA:25:689,Europe/Paris,,OIF, +OIF:SP:25:69,1,"Providence",48.649487,1.817949,0,0,OIF:SA:25:10128,Europe/Paris,,OIF, +OIF:SP:25:690,1,"Mairie",48.620256,1.732889,0,0,OIF:SA:25:689,Europe/Paris,,OIF, +OIF:SP:25:691,1,"Petit Goulet",48.615939,1.725387,0,0,OIF:SA:25:691,Europe/Paris,,OIF, +OIF:SP:25:692,1,"Petit Goulet",48.616023,1.726023,0,0,OIF:SA:25:691,Europe/Paris,,OIF, +OIF:SP:25:693,1,"Séry",48.614604,1.690628,0,0,OIF:SA:25:693,Europe/Paris,,OIF, +OIF:SP:25:694,1,"Séry",48.614394,1.690496,0,0,OIF:SA:25:693,Europe/Paris,,OIF, +OIF:SP:25:695,1,"Château Blanc",48.727896,1.766876,0,0,OIF:SA:25:695,Europe/Paris,,OIF, +OIF:SP:25:696,1,"Château Blanc",48.727986,1.766799,0,0,OIF:SA:25:695,Europe/Paris,,OIF, +OIF:SP:25:697,1,"Gros Billot",48.722195,1.766782,0,0,OIF:SA:25:697,Europe/Paris,,OIF, +OIF:SP:25:699,1,"Mairie",48.530974,1.961199,0,0,OIF:SA:25:699,Europe/Paris,,OIF, +OIF:SP:25:7,1,"Alouette",48.650631,1.84297,0,0,OIF:SA:25:6,Europe/Paris,,OIF, +OIF:SP:25:70,1,"Prunelliers",48.658282,1.856335,0,0,OIF:SA:25:70,Europe/Paris,,OIF, +OIF:SP:25:700,1,"Mairie",48.530986,1.960831,0,0,OIF:SA:25:699,Europe/Paris,,OIF, +OIF:SP:25:701,1,"Delandre",48.529162,1.954794,0,0,OIF:SA:25:701,Europe/Paris,,OIF, +OIF:SP:25:702,1,"Delandre",48.529355,1.954919,0,0,OIF:SA:25:701,Europe/Paris,,OIF, +OIF:SP:25:703,1,"Denisy",48.542405,1.938722,0,0,OIF:SA:25:703,Europe/Paris,,OIF, +OIF:SP:25:704,1,"Denisy",48.542459,1.938776,0,0,OIF:SA:25:703,Europe/Paris,,OIF, +OIF:SP:25:707,1,"Ville Lebrun",48.52787,1.970972,0,0,OIF:SA:25:707,Europe/Paris,,OIF, +OIF:SP:25:708,1,"Ville Lebrun",48.527792,1.97081,0,0,OIF:SA:25:707,Europe/Paris,,OIF, +OIF:SP:25:709,1,"Ardenay",48.51292,1.926106,0,0,OIF:SA:25:709,Europe/Paris,,OIF, +OIF:SP:25:710,1,"Ardenay",48.512679,1.926141,0,0,OIF:SA:25:709,Europe/Paris,,OIF, +OIF:SP:25:711,1,"Boissière",48.511257,1.930074,0,0,OIF:SA:25:711,Europe/Paris,,OIF, +OIF:SP:25:712,1,"Boissière",48.511338,1.930297,0,0,OIF:SA:25:711,Europe/Paris,,OIF, +OIF:SP:25:713,1,"Château",48.507124,1.916357,0,0,OIF:SA:25:713,Europe/Paris,,OIF, +OIF:SP:25:714,1,"Château",48.507097,1.916465,0,0,OIF:SA:25:713,Europe/Paris,,OIF, +OIF:SP:25:715,1,"Église",48.510013,1.927838,0,0,OIF:SA:25:715,Europe/Paris,,OIF, +OIF:SP:25:716,1,"Église",48.509963,1.927939,0,0,OIF:SA:25:715,Europe/Paris,,OIF, +OIF:SP:25:717,1,"Haut Bout",48.525282,1.918674,0,0,OIF:SA:25:717,Europe/Paris,,OIF, +OIF:SP:25:718,1,"Haut Bout",48.525264,1.918566,0,0,OIF:SA:25:717,Europe/Paris,,OIF, +OIF:SP:25:719,1,"Moulin de Ville",48.517685,1.944662,0,0,OIF:SA:25:719,Europe/Paris,,OIF, +OIF:SP:25:72,1,"Clairefontaine",48.650274,1.830878,0,0,OIF:SA:25:129,Europe/Paris,,OIF, +OIF:SP:25:720,1,"Moulin de Ville",48.517624,1.94473,0,0,OIF:SA:25:719,Europe/Paris,,OIF, +OIF:SP:25:721,1,"La Puce",48.522051,1.947171,0,0,OIF:SA:25:721,Europe/Paris,,OIF, +OIF:SP:25:722,1,"La Puce",48.522017,1.946997,0,0,OIF:SA:25:721,Europe/Paris,,OIF, +OIF:SP:25:723,1,"La Belle Etoile",48.578731,2.141488,0,0,OIF:SA:25:723,Europe/Paris,,OIF, +OIF:SP:25:724,1,"La Belle Etoile",48.578819,2.141729,0,0,OIF:SA:25:723,Europe/Paris,,OIF, +OIF:SP:25:725,1,"Berchevilliers",48.588448,2.112258,0,0,OIF:SA:24:14768,Europe/Paris,,OIF, +OIF:SP:25:726,1,"Berchevilliers",48.588268,2.112338,0,0,OIF:SA:24:14768,Europe/Paris,,OIF, +OIF:SP:25:727,1,"Centre",48.581195,2.123169,0,0,OIF:SA:25:727,Europe/Paris,,OIF, +OIF:SP:25:728,1,"Centre",48.581106,2.123413,0,0,OIF:SA:25:727,Europe/Paris,,OIF, +OIF:SP:25:729,1,"La Touche",48.582413,2.146288,0,0,OIF:SA:24:14729,Europe/Paris,,OIF, +OIF:SP:25:73,1,"Racinay",48.636847,1.825771,0,0,OIF:SA:25:73,Europe/Paris,,OIF, +OIF:SP:25:730,1,"La Touche",48.582273,2.146144,0,0,OIF:SA:24:14729,Europe/Paris,,OIF, +OIF:SP:25:733,1,"Boutareine",48.56995,1.902982,0,0,OIF:SA:25:733,Europe/Paris,,OIF, +OIF:SP:25:734,1,"Boutareine",48.570076,1.902981,0,0,OIF:SA:25:733,Europe/Paris,,OIF, +OIF:SP:25:735,1,"Clos de l'Étang",48.573293,1.881145,0,0,OIF:SA:25:735,Europe/Paris,,OIF, +OIF:SP:25:736,1,"Clos de l'Étang",48.573086,1.881174,0,0,OIF:SA:25:735,Europe/Paris,,OIF, +OIF:SP:25:739,1,"Greffiers 1",48.6156,1.839451,0,0,OIF:SA:25:739,Europe/Paris,,OIF, +OIF:SP:25:74,1,"Ravel",48.655764,1.854117,0,0,OIF:SA:25:100,Europe/Paris,,OIF, +OIF:SP:25:740,1,"Greffiers 1",48.615112,1.839878,0,0,OIF:SA:25:739,Europe/Paris,,OIF, +OIF:SP:25:741,1,"Greffiers 2",48.613275,1.842415,0,0,OIF:SA:25:741,Europe/Paris,,OIF, +OIF:SP:25:742,1,"Greffiers 2",48.613292,1.84213,0,0,OIF:SA:25:741,Europe/Paris,,OIF, +OIF:SP:25:743,1,"La Hunière",48.599318,1.8646,0,0,OIF:SA:25:743,Europe/Paris,,OIF, +OIF:SP:25:744,1,"La Hunière",48.599477,1.864625,0,0,OIF:SA:25:743,Europe/Paris,,OIF, +OIF:SP:25:745,1,"Mairie",48.576289,1.877325,0,0,OIF:SA:25:745,Europe/Paris,,OIF, +OIF:SP:25:746,1,"Mairie",48.576083,1.877435,0,0,OIF:SA:25:745,Europe/Paris,,OIF, +OIF:SP:25:748,1,"Charlaine",48.756944,1.87711,0,0,OIF:SA:25:748,Europe/Paris,,OIF, +OIF:SP:25:749,1,"Église",48.756743,1.882067,0,0,OIF:SA:25:749,Europe/Paris,,OIF, +OIF:SP:25:75,1,"Rouget de Lisle",48.65185,1.860458,0,0,OIF:SA:25:75,Europe/Paris,,OIF, +OIF:SP:25:750,1,"Église",48.75615,1.881479,0,0,OIF:SA:25:749,Europe/Paris,,OIF, +OIF:SP:25:752,1,"La Mare",48.75423,1.87088,0,0,OIF:SA:25:752,Europe/Paris,,OIF, +OIF:SP:25:753,1,"Carrefour de la Vierge",48.760371,1.884077,0,0,OIF:SA:25:753,Europe/Paris,,OIF, +OIF:SP:25:754,1,"Carrefour de la Vierge",48.76027,1.884028,0,0,OIF:SA:25:753,Europe/Paris,,OIF, +OIF:SP:25:755,1,"Collège Brassens",48.576125,1.946755,0,0,OIF:SA:25:755,Europe/Paris,,OIF, +OIF:SP:25:756,1,"Collège Brassens",48.576125,1.946755,0,0,OIF:SA:25:755,Europe/Paris,,OIF, +OIF:SP:25:757,1,"Bréau",48.566949,1.928823,0,0,OIF:SA:25:757,Europe/Paris,,OIF, +OIF:SP:25:758,1,"Bréau",48.567222,1.929742,0,0,OIF:SA:25:757,Europe/Paris,,OIF, +OIF:SP:25:759,1,"Chaudière",48.569902,1.927446,0,0,OIF:SA:25:759,Europe/Paris,,OIF, +OIF:SP:25:76,1,"Bréau",48.49949,1.893869,0,0,OIF:SA:25:10290,Europe/Paris,,OIF, +OIF:SP:25:760,1,"Chaudière",48.569831,1.927839,0,0,OIF:SA:25:759,Europe/Paris,,OIF, +OIF:SP:25:764,1,"Croix Verte",48.578926,1.945759,0,0,OIF:SA:25:764,Europe/Paris,,OIF, +OIF:SP:25:766,1,"Dejean",48.576626,1.948268,0,0,OIF:SA:25:766,Europe/Paris,,OIF, +OIF:SP:25:767,1,"Grands Meurgers",48.571142,1.916217,0,0,OIF:SA:25:767,Europe/Paris,,OIF, +OIF:SP:25:768,1,"Grands Meurgers",48.571085,1.91618,0,0,OIF:SA:25:767,Europe/Paris,,OIF, +OIF:SP:25:769,1,"La Mare",48.571203,1.922055,0,0,OIF:SA:25:769,Europe/Paris,,OIF, +OIF:SP:25:770,1,"La Mare",48.571178,1.922166,0,0,OIF:SA:25:769,Europe/Paris,,OIF, +OIF:SP:25:771,1,"Leclerc",48.571714,1.939392,0,0,OIF:SA:24:7644,Europe/Paris,,OIF, +OIF:SP:25:774,1,"Mairie",48.572756,1.941931,0,0,OIF:SA:24:7646,Europe/Paris,,OIF, +OIF:SP:25:775,1,"Mairie",48.572787,1.942083,0,0,OIF:SA:24:7646,Europe/Paris,,OIF, +OIF:SP:25:777,1,"Martinière",48.578083,1.943422,0,0,OIF:SA:25:777,Europe/Paris,,OIF, +OIF:SP:25:778,1,"Muette",48.566687,1.931849,0,0,OIF:SA:25:778,Europe/Paris,,OIF, +OIF:SP:25:779,1,"Muette",48.566942,1.931993,0,0,OIF:SA:25:778,Europe/Paris,,OIF, +OIF:SP:25:78,1,"Gare de Rambouillet [Prud'Homme]",48.643813,1.830855,0,0,OIF:SA:8739331,Europe/Paris,,OIF, +OIF:SP:25:780,1,"Petits Meurgers",48.57078,1.911387,0,0,OIF:SA:25:780,Europe/Paris,,OIF, +OIF:SP:25:781,1,"Petits Meurgers",48.570821,1.911323,0,0,OIF:SA:25:780,Europe/Paris,,OIF, +OIF:SP:25:782,1,"Pontbriand",48.564484,1.93342,0,0,OIF:SA:25:782,Europe/Paris,,OIF, +OIF:SP:25:783,1,"Pontbriand",48.564367,1.933354,0,0,OIF:SA:25:782,Europe/Paris,,OIF, +OIF:SP:25:784,1,"Poste",48.572267,1.938088,0,0,OIF:SA:24:7643,Europe/Paris,,OIF, +OIF:SP:25:787,1,"Zone Industrielle",48.561826,1.931653,0,0,OIF:SA:25:787,Europe/Paris,,OIF, +OIF:SP:25:788,1,"Château",48.778091,1.87651,0,0,OIF:SA:25:788,Europe/Paris,,OIF, +OIF:SP:25:789,1,"Château",48.777943,1.876748,0,0,OIF:SA:25:788,Europe/Paris,,OIF, +OIF:SP:25:79,1,"Bretonville",48.496519,1.858251,0,0,OIF:SA:25:10289,Europe/Paris,,OIF, +OIF:SP:25:790,1,"Vert Buisson",48.772246,1.875661,0,0,OIF:SA:25:790,Europe/Paris,,OIF, +OIF:SP:25:791,1,"Vert Buisson",48.77209,1.875685,0,0,OIF:SA:25:790,Europe/Paris,,OIF, +OIF:SP:25:792,1,"Petites Buttes",48.603375,2.094351,0,0,OIF:SA:24:14731,Europe/Paris,,OIF, +OIF:SP:25:793,1,"Petites Buttes",48.603332,2.094605,0,0,OIF:SA:24:14731,Europe/Paris,,OIF, +OIF:SP:25:794,1,"École",48.602434,2.120384,0,0,OIF:SA:25:794,Europe/Paris,,OIF, +OIF:SP:25:795,1,"École",48.602343,2.120859,0,0,OIF:SA:25:794,Europe/Paris,,OIF, +OIF:SP:25:796,1,"Fontaine aux Cossons",48.591397,2.110729,0,0,OIF:SA:24:14776,Europe/Paris,,OIF, +OIF:SP:25:797,1,"Fontaine aux Cossons",48.591299,2.110758,0,0,OIF:SA:24:14776,Europe/Paris,,OIF, +OIF:SP:25:798,1,"Machery",48.602802,2.086025,0,0,OIF:SA:24:14745,Europe/Paris,,OIF, +OIF:SP:25:799,1,"Machery",48.602764,2.085953,0,0,OIF:SA:24:14745,Europe/Paris,,OIF, +OIF:SP:25:8,1,"Arbouville",48.637428,1.817909,0,0,OIF:SA:24:14738,Europe/Paris,,OIF, +OIF:SP:25:80,1,"Telecom",48.646979,1.830618,0,0,OIF:SA:25:133,Europe/Paris,,OIF, +OIF:SP:25:800,1,"L'Orme Gras",48.601659,2.125199,0,0,OIF:SA:24:15168,Europe/Paris,,OIF, +OIF:SP:25:801,1,"L'Orme Gras",48.601616,2.124974,0,0,OIF:SA:24:15168,Europe/Paris,,OIF, +OIF:SP:25:805,1,"Poupinel",48.569661,1.933191,0,0,OIF:SA:25:10551,Europe/Paris,,OIF, +OIF:SP:25:806,1,"Poupinel",48.569581,1.933198,0,0,OIF:SA:25:10551,Europe/Paris,,OIF, +OIF:SP:25:807,1,"Cimetière",48.573773,1.946297,0,0,OIF:SA:24:15209,Europe/Paris,,OIF, +OIF:SP:25:808,1,"Cimetière",48.573745,1.946342,0,0,OIF:SA:24:15209,Europe/Paris,,OIF, +OIF:SP:25:809,1,"Château",48.642843,1.966497,0,0,OIF:SA:25:130,Europe/Paris,,OIF, +OIF:SP:25:81,1,"Prieuré",48.49398,1.873017,0,0,OIF:SA:25:10269,Europe/Paris,,OIF, +OIF:SP:25:812,1,"L'Abbé",48.566518,1.831538,0,0,OIF:SA:25:812,Europe/Paris,,OIF, +OIF:SP:25:813,1,"L'Abbé",48.56649,1.831507,0,0,OIF:SA:25:812,Europe/Paris,,OIF, +OIF:SP:25:814,1,"Marchais Parfond",48.539955,1.789046,0,0,OIF:SA:25:566,Europe/Paris,,OIF, +OIF:SP:25:815,1,"Gare du Perray en Yvelines",48.694094,1.856458,0,0,OIF:SA:8739329,Europe/Paris,,OIF, +OIF:SP:25:816,1,"Fer Ouvré",48.699616,1.859585,0,0,OIF:SA:25:356,Europe/Paris,,OIF, +OIF:SP:25:82,1,"Sainte-Thérèse",48.646877,1.821994,0,0,OIF:SA:25:10663,Europe/Paris,,OIF, +OIF:SP:25:820,1,"L'Étang",48.757853,2.08772,0,0,OIF:SA:25:307,Europe/Paris,,OIF, +OIF:SP:25:823,1,"Collège",48.720408,1.897934,0,0,OIF:SA:25:823,Europe/Paris,,OIF, +OIF:SP:25:828,1,"Les Fleurs",48.639926,2.072877,0,0,OIF:SA:25:828,Europe/Paris,,OIF, +OIF:SP:25:83,1,"Tivoli",48.640722,1.826121,0,0,OIF:SA:25:83,Europe/Paris,,OIF, +OIF:SP:25:830,1,"Carrières",48.693394,1.868087,0,0,OIF:SA:25:830,Europe/Paris,,OIF, +OIF:SP:25:831,1,"Carrières",48.693342,1.868197,0,0,OIF:SA:25:830,Europe/Paris,,OIF, +OIF:SP:25:84,1,"Trianon",48.640387,1.834005,0,0,OIF:SA:25:84,Europe/Paris,,OIF, +OIF:SP:25:846,1,"Moulin à Vent",48.493731,1.869124,0,0,OIF:SA:25:846,Europe/Paris,,OIF, +OIF:SP:25:847,1,"Moulin à Vent",48.493722,1.869057,0,0,OIF:SA:25:846,Europe/Paris,,OIF, +OIF:SP:25:848,1,"Maladrerie",48.784324,1.80746,0,0,OIF:SA:22:495,Europe/Paris,,OIF, +OIF:SP:25:849,1,"Maladrerie",48.784531,1.806669,0,0,OIF:SA:22:495,Europe/Paris,,OIF, +OIF:SP:25:85,1,"Uzès",48.65171,1.837974,0,0,OIF:SA:25:125,Europe/Paris,,OIF, +OIF:SP:25:850,1,"La Garenne",48.641737,1.691214,0,0,OIF:SA:25:850,Europe/Paris,,OIF, +OIF:SP:25:851,1,"La Garenne",48.64135,1.691151,0,0,OIF:SA:25:850,Europe/Paris,,OIF, +OIF:SP:25:856,1,"Les Carneaux",48.62195,1.99278,0,0,OIF:SA:24:14736,Europe/Paris,,OIF, +OIF:SP:25:857,1,"Les Carneaux",48.621914,1.992444,0,0,OIF:SA:24:14736,Europe/Paris,,OIF, +OIF:SP:25:858,1,"Le Poirier",48.686604,1.590561,0,0,OIF:SA:25:858,Europe/Paris,,OIF, +OIF:SP:25:859,1,"Le Poirier",48.686525,1.590793,0,0,OIF:SA:25:858,Europe/Paris,,OIF, +OIF:SP:25:86,1,"Vernes",48.65223,1.821836,0,0,OIF:SA:25:10459,Europe/Paris,,OIF, +OIF:SP:25:88,1,"Les Vignes",48.653964,1.855691,0,0,OIF:SA:25:88,Europe/Paris,,OIF, +OIF:SP:25:89,1,"Les Vignes",48.654069,1.855676,0,0,OIF:SA:25:88,Europe/Paris,,OIF, +OIF:SP:25:9,1,"Libération",48.512059,1.83351,0,0,OIF:SA:25:10246,Europe/Paris,,OIF, +OIF:SP:25:90,1,"Vincent Scotto",48.649227,1.851561,0,0,OIF:SA:25:105,Europe/Paris,,OIF, +OIF:SP:25:91,1,"Collège de Vivonne",48.647934,1.848414,0,0,OIF:SA:24:15268,Europe/Paris,,OIF, +OIF:SP:25:92,1,"ZA du Bel Air",48.623914,1.828686,0,0,OIF:SA:25:92,Europe/Paris,,OIF, +OIF:SP:25:94,1,"ZI du Pâtis",48.652755,1.851477,0,0,OIF:SA:25:94,Europe/Paris,,OIF, +OIF:SP:25:95,1,"ZI du Pâtis",48.652768,1.85159,0,0,OIF:SA:25:94,Europe/Paris,,OIF, +OIF:SP:25:96,1,"Bascan",48.64102,1.82426,0,0,OIF:SA:25:96,Europe/Paris,,OIF, +OIF:SP:25:97,1,"Leclerc",48.63924,1.818147,0,0,OIF:SA:25:97,Europe/Paris,,OIF, +OIF:SP:25:98,1,"Faure",48.642946,1.826766,0,0,OIF:SA:25:98,Europe/Paris,,OIF, +OIF:SP:25:99,1,"Prunelliers",48.65828,1.856415,0,0,OIF:SA:25:70,Europe/Paris,,OIF, +OIF:SP:26:18001,1,"Turelle",48.527598,2.3725,0,0,OIF:SA:26:18001,Europe/Paris,,OIF, +OIF:SP:26:18002,1,"Pierre Curie",48.524999,2.376599,0,0,OIF:SA:26:18002,Europe/Paris,,OIF, +OIF:SP:26:18003,1,"École",48.529235,2.385841,0,0,OIF:SA:26:18003,Europe/Paris,,OIF, +OIF:SP:26:18004,1,"Gare de Ballancourt",48.53221,2.371394,0,0,OIF:SA:8768143,Europe/Paris,,OIF, +OIF:SP:26:18005,1,"Gare de Ballancourt",48.532183,2.371285,0,0,OIF:SA:8768143,Europe/Paris,,OIF, +OIF:SP:26:18006,1,"Glycines",48.531388,2.378095,0,0,OIF:SA:26:18006,Europe/Paris,,OIF, +OIF:SP:26:18007,1,"Mairie",48.524965,2.385938,0,0,OIF:SA:26:18007,Europe/Paris,,OIF, +OIF:SP:26:18008,1,"Les Petits Bois",48.607766,2.373748,0,0,OIF:SA:10:374,Europe/Paris,,OIF, +OIF:SP:26:18009,1,"Libération",48.616,2.377765,0,0,OIF:SA:10:65,Europe/Paris,,OIF, +OIF:SP:26:18010,1,"Croix Blanche",48.615689,2.377129,0,0,OIF:SA:10:65,Europe/Paris,,OIF, +OIF:SP:26:18011,1,"Charles de Gaulle",48.609372,2.378321,0,0,OIF:SA:10:207,Europe/Paris,,OIF, +OIF:SP:26:18012,1,"Rue des Clos",48.613361,2.375514,0,0,OIF:SA:10:1159,Europe/Paris,,OIF, +OIF:SP:26:18013,1,"Les Coccinelles",48.614339,2.367566,0,0,OIF:SA:10:106,Europe/Paris,,OIF, +OIF:SP:26:18014,1,"ZI Gustave Madiot",48.604766,2.364895,0,0,OIF:SA:10:521,Europe/Paris,,OIF, +OIF:SP:26:18015,1,"ZI Gustave Madiot",48.604721,2.364827,0,0,OIF:SA:10:521,Europe/Paris,,OIF, +OIF:SP:26:18016,1,"Hôtel de Ville",48.61446,2.381046,0,0,OIF:SA:10:243,Europe/Paris,,OIF, +OIF:SP:26:18017,1,"Imprimerie Nationale",48.60298,2.371477,0,0,OIF:SA:10:245,Europe/Paris,,OIF, +OIF:SP:26:18018,1,"Gabriel Jaillard",48.611687,2.367081,0,0,OIF:SA:10:211,Europe/Paris,,OIF, +OIF:SP:26:18019,1,"Arnaud Massy",48.604757,2.372294,0,0,OIF:SA:10:22,Europe/Paris,,OIF, +OIF:SP:26:18020,1,"Arnaud Massy",48.605184,2.372426,0,0,OIF:SA:10:22,Europe/Paris,,OIF, +OIF:SP:26:18021,1,"Les 3 Parts",48.609079,2.369886,0,0,OIF:SA:10:500,Europe/Paris,,OIF, +OIF:SP:26:18022,1,"Pasteur",48.611643,2.382976,0,0,OIF:SA:10:371,Europe/Paris,,OIF, +OIF:SP:26:18023,1,"Pierre Marcillé",48.610005,2.381158,0,0,OIF:SA:10:397,Europe/Paris,,OIF, +OIF:SP:26:18024,1,"ZI B0RDES Nord",48.606465,2.362779,0,0,OIF:SA:10:517,Europe/Paris,,OIF, +OIF:SP:26:18025,1,"ZI B0RDES Nord",48.606402,2.3627,0,0,OIF:SA:10:517,Europe/Paris,,OIF, +OIF:SP:26:18026,1,"ZI Bordes Sud",48.602491,2.367754,0,0,OIF:SA:10:519,Europe/Paris,,OIF, +OIF:SP:26:18027,1,"ZI Bordes Sud",48.602391,2.367554,0,0,OIF:SA:10:519,Europe/Paris,,OIF, +OIF:SP:26:18028,1,"11 Novembre",48.607794,2.305006,0,0,OIF:SA:26:18028,Europe/Paris,,OIF, +OIF:SP:26:18029,1,"Les Ardrets",48.602783,2.308651,0,0,OIF:SA:26:18029,Europe/Paris,,OIF, +OIF:SP:26:18030,1,"Les Ardrets",48.602716,2.308917,0,0,OIF:SA:26:18029,Europe/Paris,,OIF, +OIF:SP:26:18031,1,"80 Arpents",48.605056,2.314228,0,0,OIF:SA:26:18031,Europe/Paris,,OIF, +OIF:SP:26:18032,1,"80 Arpents",48.604877,2.314508,0,0,OIF:SA:26:18031,Europe/Paris,,OIF, +OIF:SP:26:18033,1,"Gayot Babin",48.599917,2.294742,0,0,OIF:SA:26:18033,Europe/Paris,,OIF, +OIF:SP:26:18034,1,"Maryse Bastié",48.604335,2.312006,0,0,OIF:SA:26:18034,Europe/Paris,,OIF, +OIF:SP:26:18035,1,"Maryse Bastié",48.604056,2.311935,0,0,OIF:SA:26:18034,Europe/Paris,,OIF, +OIF:SP:26:18036,1,"Ligne Blanche",48.585913,2.294026,0,0,OIF:SA:26:18036,Europe/Paris,,OIF, +OIF:SP:26:18037,1,"Léon Blum",48.616038,2.302365,0,0,OIF:SA:26:18037,Europe/Paris,,OIF, +OIF:SP:26:18038,1,"Branly",48.603528,2.305968,0,0,OIF:SA:26:18038,Europe/Paris,,OIF, +OIF:SP:26:18039,1,"Branly",48.603414,2.30577,0,0,OIF:SA:26:18038,Europe/Paris,,OIF, +OIF:SP:26:18040,1,"Brossolette Gare de Brétigny",48.607182,2.301405,0,0,OIF:SA:8754519,Europe/Paris,,OIF, +OIF:SP:26:18041,1,"Brossolette Gare de Brétigny",48.607056,2.301323,0,0,OIF:SA:8754519,Europe/Paris,,OIF, +OIF:SP:26:18043,1,"BA217",48.603914,2.321944,0,0,OIF:SA:26:18043,Europe/Paris,,OIF, +OIF:SP:26:18044,1,"Bois de Chatres",48.599062,2.28441,0,0,OIF:SA:26:18044,Europe/Paris,,OIF, +OIF:SP:26:18045,1,"Cossigny",48.600987,2.305146,0,0,OIF:SA:26:18045,Europe/Paris,,OIF, +OIF:SP:26:18046,1,"Cossigny",48.601045,2.304949,0,0,OIF:SA:26:18045,Europe/Paris,,OIF, +OIF:SP:26:18047,1,"Revol",48.602031,2.298925,0,0,OIF:SA:26:18047,Europe/Paris,,OIF, +OIF:SP:26:18048,1,"Ferme Mn",48.58802,2.301089,0,0,OIF:SA:26:18048,Europe/Paris,,OIF, +OIF:SP:26:18049,1,"Brétigny Gare Place",48.606445,2.302625,0,0,OIF:SA:8754519,Europe/Paris,,OIF, +OIF:SP:26:18050,1,"Brétigny Gare Place",48.606528,2.302739,0,0,OIF:SA:8754519,Europe/Paris,,OIF, +OIF:SP:26:18051,1,"Les Halliers",48.611555,2.303805,0,0,OIF:SA:26:18051,Europe/Paris,,OIF, +OIF:SP:26:18052,1,"Victor Hugo",48.608235,2.307304,0,0,OIF:SA:26:18052,Europe/Paris,,OIF, +OIF:SP:26:18053,1,"Victor Hugo",48.607984,2.306853,0,0,OIF:SA:26:18052,Europe/Paris,,OIF, +OIF:SP:26:18054,1,"Bois Joli",48.597523,2.286431,0,0,OIF:SA:26:18054,Europe/Paris,,OIF, +OIF:SP:26:18055,1,"La Fontaine",48.615659,2.305559,0,0,OIF:SA:26:18055,Europe/Paris,,OIF, +OIF:SP:26:18056,1,"La Fontaine",48.615619,2.305107,0,0,OIF:SA:26:18055,Europe/Paris,,OIF, +OIF:SP:26:18057,1,"Z.I Languedoc",48.590759,2.301776,0,0,OIF:SA:26:18057,Europe/Paris,,OIF, +OIF:SP:26:18058,1,"Z.I Languedoc",48.590766,2.301555,0,0,OIF:SA:26:18057,Europe/Paris,,OIF, +OIF:SP:26:18059,1,"Lanson",48.600986,2.297387,0,0,OIF:SA:26:18059,Europe/Paris,,OIF, +OIF:SP:26:18060,1,"Z.I Limousin",48.593856,2.302872,0,0,OIF:SA:26:18060,Europe/Paris,,OIF, +OIF:SP:26:18061,1,"Z.I Limousin",48.593763,2.302396,0,0,OIF:SA:26:18060,Europe/Paris,,OIF, +OIF:SP:26:18062,1,"Louise Michel",48.620798,2.312076,0,0,OIF:SA:26:18062,Europe/Paris,,OIF, +OIF:SP:26:18063,1,"Louise Michel",48.620785,2.311822,0,0,OIF:SA:26:18062,Europe/Paris,,OIF, +OIF:SP:26:18064,1,"Brèche aux Loups",48.597598,2.282413,0,0,OIF:SA:26:18064,Europe/Paris,,OIF, +OIF:SP:26:18065,1,"Lucien Clause",48.606238,2.300484,0,0,OIF:SA:26:18065,Europe/Paris,,OIF, +OIF:SP:26:18066,1,"Lycée",48.608704,2.313575,0,0,OIF:SA:26:18066,Europe/Paris,,OIF, +OIF:SP:26:18067,1,"Lycée",48.608498,2.31381,0,0,OIF:SA:26:18066,Europe/Paris,,OIF, +OIF:SP:26:18068,1,"Mairie",48.611119,2.305813,0,0,OIF:SA:26:18068,Europe/Paris,,OIF, +OIF:SP:26:18069,1,"La Marinière",48.608576,2.315891,0,0,OIF:SA:26:18069,Europe/Paris,,OIF, +OIF:SP:26:18070,1,"La Marinière",48.608425,2.316146,0,0,OIF:SA:26:18069,Europe/Paris,,OIF, +OIF:SP:26:18071,1,"C.C Maison Neuve",48.586928,2.304227,0,0,OIF:SA:26:18071,Europe/Paris,,OIF, +OIF:SP:26:18073,1,"Moinerie Centre Commercial",48.59837,2.30437,0,0,OIF:SA:26:18073,Europe/Paris,,OIF, +OIF:SP:26:18074,1,"Moinerie Centre Commercial",48.598042,2.304149,0,0,OIF:SA:26:18073,Europe/Paris,,OIF, +OIF:SP:26:18075,1,"Pmi",48.605518,2.305557,0,0,OIF:SA:26:18075,Europe/Paris,,OIF, +OIF:SP:26:18076,1,"Poitou",48.587279,2.296172,0,0,OIF:SA:26:18076,Europe/Paris,,OIF, +OIF:SP:26:18077,1,"Rosière",48.622265,2.313835,0,0,OIF:SA:26:18077,Europe/Paris,,OIF, +OIF:SP:26:18078,1,"Rosière",48.622224,2.313638,0,0,OIF:SA:26:18077,Europe/Paris,,OIF, +OIF:SP:26:18079,1,"Sablière",48.619168,2.309913,0,0,OIF:SA:26:18079,Europe/Paris,,OIF, +OIF:SP:26:18080,1,"Sablière",48.619323,2.309943,0,0,OIF:SA:26:18079,Europe/Paris,,OIF, +OIF:SP:26:18081,1,"Maurice Boyau",48.604999,2.30535,0,0,OIF:SA:26:18081,Europe/Paris,,OIF, +OIF:SP:26:18082,1,"Les Vendanges",48.598427,2.29022,0,0,OIF:SA:26:18082,Europe/Paris,,OIF, +OIF:SP:26:18083,1,"Bois de Vetille",48.606889,2.317,0,0,OIF:SA:26:18083,Europe/Paris,,OIF, +OIF:SP:26:18084,1,"Bois de Vetille",48.606263,2.317636,0,0,OIF:SA:26:18083,Europe/Paris,,OIF, +OIF:SP:26:18085,1,"Van de Wallé",48.600364,2.289604,0,0,OIF:SA:26:18085,Europe/Paris,,OIF, +OIF:SP:26:18086,1,"Langevin Wallon",48.60148,2.293514,0,0,OIF:SA:26:18086,Europe/Paris,,OIF, +OIF:SP:26:18092,1,"Bouquin",48.55992,2.318839,0,0,OIF:SA:26:18092,Europe/Paris,,OIF, +OIF:SP:26:18093,1,"Bouquin",48.559921,2.318642,0,0,OIF:SA:26:18092,Europe/Paris,,OIF, +OIF:SP:26:18094,1,"Croix Boissée",48.568236,2.327139,0,0,OIF:SA:26:18094,Europe/Paris,,OIF, +OIF:SP:26:18096,1,"Mairie",48.565763,2.325373,0,0,OIF:SA:26:18096,Europe/Paris,,OIF, +OIF:SP:26:18097,1,"Mairie",48.565745,2.32626,0,0,OIF:SA:26:18096,Europe/Paris,,OIF, +OIF:SP:26:18098,1,"Bois Minard",48.563931,2.322111,0,0,OIF:SA:26:18098,Europe/Paris,,OIF, +OIF:SP:26:18099,1,"Bois Minard",48.563907,2.321817,0,0,OIF:SA:26:18098,Europe/Paris,,OIF, +OIF:SP:26:18100,1,"Sentier Mulets",48.567185,2.328264,0,0,OIF:SA:26:18100,Europe/Paris,,OIF, +OIF:SP:26:18110,1,"Z.I Cochets",48.580187,2.293146,0,0,OIF:SA:26:18110,Europe/Paris,,OIF, +OIF:SP:26:18118,1,"Vieux Lavoir",48.559909,2.309833,0,0,OIF:SA:26:18118,Europe/Paris,,OIF, +OIF:SP:26:18123,1,"Route d'Evry",48.559186,2.314734,0,0,OIF:SA:26:18123,Europe/Paris,,OIF, +OIF:SP:26:18124,1,"Route d'Evry",48.559317,2.314661,0,0,OIF:SA:26:18123,Europe/Paris,,OIF, +OIF:SP:26:18129,1,"Techniparc",48.62315,2.314953,0,0,OIF:SA:26:18129,Europe/Paris,,OIF, +OIF:SP:26:18130,1,"Condorcet",48.622845,2.316946,0,0,OIF:SA:26:18130,Europe/Paris,,OIF, +OIF:SP:26:18131,1,"Chemin de Brétigny",48.622417,2.320724,0,0,OIF:SA:26:18131,Europe/Paris,,OIF, +OIF:SP:26:18132,1,"Les Biches",48.614098,2.32884,0,0,OIF:SA:26:18132,Europe/Paris,,OIF, +OIF:SP:26:18133,1,"Les Castors",48.609921,2.325396,0,0,OIF:SA:26:18133,Europe/Paris,,OIF, +OIF:SP:26:18135,1,"Thales",48.602701,2.355258,0,0,OIF:SA:26:18135,Europe/Paris,,OIF, +OIF:SP:26:18137,1,"Rue des Chamois",48.614553,2.325044,0,0,OIF:SA:26:18137,Europe/Paris,,OIF, +OIF:SP:26:18138,1,"Eurocontrol",48.601099,2.34667,0,0,OIF:SA:10:171,Europe/Paris,,OIF, +OIF:SP:26:18140,1,"Gymnase",48.610279,2.32316,0,0,OIF:SA:26:18140,Europe/Paris,,OIF, +OIF:SP:26:18141,1,"Gymnase",48.610297,2.323376,0,0,OIF:SA:26:18140,Europe/Paris,,OIF, +OIF:SP:26:18142,1,"Mairie (Église)",48.612233,2.326692,0,0,OIF:SA:26:18142,Europe/Paris,,OIF, +OIF:SP:26:18143,1,"Mairie",48.612085,2.32504,0,0,OIF:SA:26:18143,Europe/Paris,,OIF, +OIF:SP:26:18144,1,"Clos Méline",48.614558,2.32225,0,0,OIF:SA:26:18144,Europe/Paris,,OIF, +OIF:SP:26:18145,1,"Mozart",48.609403,2.321026,0,0,OIF:SA:26:18145,Europe/Paris,,OIF, +OIF:SP:26:18146,1,"Mozart",48.609272,2.321366,0,0,OIF:SA:26:18145,Europe/Paris,,OIF, +OIF:SP:26:18147,1,"La Rogère",48.61591,2.329749,0,0,OIF:SA:26:18147,Europe/Paris,,OIF, +OIF:SP:26:18148,1,"Les Roses",48.611978,2.32156,0,0,OIF:SA:26:18148,Europe/Paris,,OIF, +OIF:SP:26:18149,1,"Berthault",48.56749,2.355059,0,0,OIF:SA:26:18149,Europe/Paris,,OIF, +OIF:SP:26:18151,1,"Guichet",48.578284,2.361182,0,0,OIF:SA:26:18151,Europe/Paris,,OIF, +OIF:SP:26:18152,1,"Guichet",48.578285,2.361051,0,0,OIF:SA:26:18151,Europe/Paris,,OIF, +OIF:SP:26:18153,1,"Marquants",48.573204,2.358526,0,0,OIF:SA:26:18153,Europe/Paris,,OIF, +OIF:SP:26:18155,1,"Parc de Tréville",48.59539,2.368806,0,0,OIF:SA:10:246,Europe/Paris,,OIF, +OIF:SP:26:18169,1,"Mairie",48.551229,2.366733,0,0,OIF:SA:26:18169,Europe/Paris,,OIF, +OIF:SP:26:18170,1,"Mairie",48.551228,2.366565,0,0,OIF:SA:26:18169,Europe/Paris,,OIF, +OIF:SP:26:18171,1,"Marcel Charon",48.554358,2.367307,0,0,OIF:SA:26:18171,Europe/Paris,,OIF, +OIF:SP:26:18172,1,"Pasteur",48.546615,2.36662,0,0,OIF:SA:26:18172,Europe/Paris,,OIF, +OIF:SP:26:18173,1,"Pasteur",48.546568,2.366394,0,0,OIF:SA:26:18172,Europe/Paris,,OIF, +OIF:SP:26:18174,1,"Tournebride",48.539462,2.365702,0,0,OIF:SA:26:18174,Europe/Paris,,OIF, +OIF:SP:26:18175,1,"Tournebride",48.53944,2.365496,0,0,OIF:SA:26:18174,Europe/Paris,,OIF, +OIF:SP:26:18179,1,"Pierre Curie",48.525035,2.376816,0,0,OIF:SA:26:18002,Europe/Paris,,OIF, +OIF:SP:26:18181,1,"Turelle",48.528278,2.371486,0,0,OIF:SA:26:18001,Europe/Paris,,OIF, +OIF:SP:26:18183,1,"École Croix Boissée",48.529176,2.385454,0,0,OIF:SA:26:18003,Europe/Paris,,OIF, +OIF:SP:26:18185,1,"Glycines",48.531273,2.377998,0,0,OIF:SA:26:18006,Europe/Paris,,OIF, +OIF:SP:26:18187,1,"Mairie",48.525081,2.385033,0,0,OIF:SA:26:18007,Europe/Paris,,OIF, +OIF:SP:26:18189,1,"Presle",48.581447,2.299078,0,0,OIF:SA:26:18189,Europe/Paris,,OIF, +OIF:SP:26:18191,1,"Gare de Marolles",48.564924,2.289989,0,0,OIF:SA:8754518,Europe/Paris,,OIF, +OIF:SP:26:18193,1,"Coquelicots",48.571096,2.35336,0,0,OIF:SA:26:18193,Europe/Paris,,OIF, +OIF:SP:26:18195,1,"Noues",48.576342,2.356962,0,0,OIF:SA:26:18195,Europe/Paris,,OIF, +OIF:SP:26:18197,1,"Botteaux",48.574651,2.353408,0,0,OIF:SA:26:18197,Europe/Paris,,OIF, +OIF:SP:26:18199,1,"Château d'Eau",48.559229,2.292397,0,0,OIF:SA:26:18199,Europe/Paris,,OIF, +OIF:SP:26:18201,1,"Clozeaux",48.556436,2.293312,0,0,OIF:SA:26:18201,Europe/Paris,,OIF, +OIF:SP:26:18203,1,"Pins",48.557892,2.29766,0,0,OIF:SA:26:18203,Europe/Paris,,OIF, +OIF:SP:26:18205,1,"Jardins",48.559919,2.294191,0,0,OIF:SA:26:18205,Europe/Paris,,OIF, +OIF:SP:26:18207,1,"Centre",48.561337,2.293905,0,0,OIF:SA:26:18207,Europe/Paris,,OIF, +OIF:SP:26:18215,1,"Mille Club",48.521066,2.382144,0,0,OIF:SA:26:18215,Europe/Paris,,OIF, +OIF:SP:26:18217,1,"Mille Club",48.520988,2.382415,0,0,OIF:SA:26:18215,Europe/Paris,,OIF, +OIF:SP:26:18218,1,"Tremblaie",48.607325,2.358068,0,0,OIF:SA:10:502,Europe/Paris,,OIF, +OIF:SP:26:18219,1,"Tremblaie",48.607153,2.358259,0,0,OIF:SA:10:502,Europe/Paris,,OIF, +OIF:SP:26:18226,1,"Sentier Mulets",48.56767,2.328331,0,0,OIF:SA:26:18100,Europe/Paris,,OIF, +OIF:SP:26:18228,1,"Chemin de Brétigny",48.622611,2.320295,0,0,OIF:SA:26:18131,Europe/Paris,,OIF, +OIF:SP:26:18230,1,"Condorcet",48.622935,2.317217,0,0,OIF:SA:26:18130,Europe/Paris,,OIF, +OIF:SP:26:18232,1,"Techniparc",48.623249,2.315034,0,0,OIF:SA:26:18129,Europe/Paris,,OIF, +OIF:SP:26:18233,1,"Haut de Vigne",48.553833,2.362972,0,0,OIF:SA:26:18233,Europe/Paris,,OIF, +OIF:SP:26:18235,1,"Gymnase",48.555476,2.368985,0,0,OIF:SA:26:18235,Europe/Paris,,OIF, +OIF:SP:26:18240,1,"Vallée",48.522193,2.383795,0,0,OIF:SA:26:18240,Europe/Paris,,OIF, +OIF:SP:26:18241,1,"Vallée",48.5221,2.383602,0,0,OIF:SA:26:18240,Europe/Paris,,OIF, +OIF:SP:26:18243,1,"Grand Noyer",48.61671,2.371183,0,0,OIF:SA:26:18243,Europe/Paris,,OIF, +OIF:SP:26:18245,1,"Grand Noyer",48.616724,2.37159,0,0,OIF:SA:26:18243,Europe/Paris,,OIF, +OIF:SP:26:18247,1,"D'Alembert",48.621609,2.322273,0,0,OIF:SA:26:18247,Europe/Paris,,OIF, +OIF:SP:26:18249,1,"D'Alembert",48.621682,2.322362,0,0,OIF:SA:26:18247,Europe/Paris,,OIF, +OIF:SP:26:18251,1,"La Ferme",48.620764,2.329725,0,0,OIF:SA:26:18251,Europe/Paris,,OIF, +OIF:SP:26:18253,1,"La Ferme",48.620855,2.329464,0,0,OIF:SA:26:18251,Europe/Paris,,OIF, +OIF:SP:26:18255,1,"ZA Parc",48.618801,2.329457,0,0,OIF:SA:26:18255,Europe/Paris,,OIF, +OIF:SP:26:18257,1,"Léonard de Vinci",48.619881,2.330922,0,0,OIF:SA:26:18257,Europe/Paris,,OIF, +OIF:SP:26:18259,1,"Léonard de Vinci",48.619862,2.331208,0,0,OIF:SA:26:18257,Europe/Paris,,OIF, +OIF:SP:26:18261,1,"Les Halliers",48.611829,2.303663,0,0,OIF:SA:26:18051,Europe/Paris,,OIF, +OIF:SP:26:18265,1,"Carrère d'Encausse",48.603531,2.295809,0,0,OIF:SA:26:18265,Europe/Paris,,OIF, +OIF:SP:26:18267,1,"Vieux Lavoir",48.559839,2.309818,0,0,OIF:SA:26:18118,Europe/Paris,,OIF, +OIF:SP:27:1,1,"Foch 11 Novembre",48.52979,2.683787,0,0,OIF:SA:27:1,Europe/Paris,,OIF, +OIF:SP:27:10,1,"3 Horloges",48.549874,2.657763,0,0,OIF:SA:27:10,Europe/Paris,,OIF, +OIF:SP:27:100,1,"H.Daumier",48.524086,2.657808,0,0,OIF:SA:27:100,Europe/Paris,,OIF, +OIF:SP:27:101,1,"Delaroue",48.531065,2.643742,0,0,OIF:SA:27:101,Europe/Paris,,OIF, +OIF:SP:27:102,1,"Despatys Préfecture",48.543116,2.658344,0,0,OIF:SA:27:102,Europe/Paris,,OIF, +OIF:SP:27:103,1,"Diaz",48.52212,2.660657,0,0,OIF:SA:27:103,Europe/Paris,,OIF, +OIF:SP:27:104,1,"Diaz",48.521903,2.659968,0,0,OIF:SA:27:103,Europe/Paris,,OIF, +OIF:SP:27:105,1,"Ecluse",48.529989,2.651388,0,0,OIF:SA:27:105,Europe/Paris,,OIF, +OIF:SP:27:106,1,"École de Gendarmerie",48.545116,2.652483,0,0,OIF:SA:27:106,Europe/Paris,,OIF, +OIF:SP:27:107,1,"École de Gendarmerie",48.544392,2.652626,0,0,OIF:SA:27:106,Europe/Paris,,OIF, +OIF:SP:27:108,1,"École Matisse",48.520746,2.658545,0,0,OIF:SA:27:108,Europe/Paris,,OIF, +OIF:SP:27:11,1,"Trois Rodes",48.525909,2.695038,0,0,OIF:SA:27:11,Europe/Paris,,OIF, +OIF:SP:27:110,1,"École Van Gogh",48.518784,2.659927,0,0,OIF:SA:27:110,Europe/Paris,,OIF, +OIF:SP:27:112,1,"Saint-Just Einstein",48.534315,2.683946,0,0,OIF:SA:27:112,Europe/Paris,,OIF, +OIF:SP:27:114,1,"Fabien",48.52648,2.649133,0,0,OIF:SA:27:114,Europe/Paris,,OIF, +OIF:SP:27:115,1,"Farcy",48.515781,2.624673,0,0,OIF:SA:27:115,Europe/Paris,,OIF, +OIF:SP:27:116,1,"Farcy",48.515647,2.624537,0,0,OIF:SA:27:115,Europe/Paris,,OIF, +OIF:SP:27:117,1,"Fenez",48.541936,2.635924,0,0,OIF:SA:27:117,Europe/Paris,,OIF, +OIF:SP:27:118,1,"Fenez",48.541454,2.636254,0,0,OIF:SA:27:117,Europe/Paris,,OIF, +OIF:SP:27:119,1,"Ferme",48.533803,2.674955,0,0,OIF:SA:27:119,Europe/Paris,,OIF, +OIF:SP:27:12,1,"Trois Rodes",48.525843,2.695286,0,0,OIF:SA:27:11,Europe/Paris,,OIF, +OIF:SP:27:120,1,"Ferme",48.534731,2.62513,0,0,OIF:SA:27:120,Europe/Paris,,OIF, +OIF:SP:27:122,1,"Foch",48.517386,2.638112,0,0,OIF:SA:27:122,Europe/Paris,,OIF, +OIF:SP:27:123,1,"Foch",48.516606,2.637872,0,0,OIF:SA:27:122,Europe/Paris,,OIF, +OIF:SP:27:124,1,"Jean de la Fontaine",48.509412,2.632926,0,0,OIF:SA:27:124,Europe/Paris,,OIF, +OIF:SP:27:125,1,"Jean de la Fontaine",48.509272,2.632035,0,0,OIF:SA:27:124,Europe/Paris,,OIF, +OIF:SP:27:126,1,"Lycée B. Franklin",48.510742,2.663401,0,0,OIF:SA:27:126,Europe/Paris,,OIF, +OIF:SP:27:127,1,"Lycée B. Franklin",48.510798,2.663734,0,0,OIF:SA:27:126,Europe/Paris,,OIF, +OIF:SP:27:128,1,"Hôpital Gaillardon",48.538348,2.665847,0,0,OIF:SA:27:128,Europe/Paris,,OIF, +OIF:SP:27:129,1,"Gambetta",48.537423,2.66107,0,0,OIF:SA:27:129,Europe/Paris,,OIF, +OIF:SP:27:13,1,"Acacias",48.530864,2.679506,0,0,OIF:SA:27:13,Europe/Paris,,OIF, +OIF:SP:27:133,1,"Gare de Melun",48.528039,2.654638,0,0,OIF:SA:8768200,Europe/Paris,,OIF, +OIF:SP:27:134,1,"Gare de Melun",48.528089,2.65447,0,0,OIF:SA:8768200,Europe/Paris,,OIF, +OIF:SP:27:135,1,"Gare de Melun",48.527699,2.65554,0,0,OIF:SA:8768200,Europe/Paris,,OIF, +OIF:SP:27:137,1,"Gare de Melun",48.527645,2.655678,0,0,OIF:SA:8768200,Europe/Paris,,OIF, +OIF:SP:27:14,1,"Acacias",48.530787,2.679317,0,0,OIF:SA:27:13,Europe/Paris,,OIF, +OIF:SP:27:140,1,"Gare de Melun",48.528046,2.654973,0,0,OIF:SA:8768200,Europe/Paris,,OIF, +OIF:SP:27:141,1,"Gare de Melun",48.528071,2.654783,0,0,OIF:SA:8768200,Europe/Paris,,OIF, +OIF:SP:27:142,1,"Gare de Melun",48.527701,2.656005,0,0,OIF:SA:8768200,Europe/Paris,,OIF, +OIF:SP:27:143,1,"Giono",48.537655,2.622603,0,0,OIF:SA:27:143,Europe/Paris,,OIF, +OIF:SP:27:144,1,"Giono",48.537611,2.622787,0,0,OIF:SA:27:143,Europe/Paris,,OIF, +OIF:SP:27:145,1,"Gmf",48.54612,2.621496,0,0,OIF:SA:27:145,Europe/Paris,,OIF, +OIF:SP:27:146,1,"Lycée Georges Sand",48.549019,2.636715,0,0,OIF:SA:27:146,Europe/Paris,,OIF, +OIF:SP:27:147,1,"Guinottes",48.526197,2.674164,0,0,OIF:SA:27:147,Europe/Paris,,OIF, +OIF:SP:27:148,1,"Hôpital",48.53926,2.673456,0,0,OIF:SA:27:148,Europe/Paris,,OIF, +OIF:SP:27:149,1,"Hôpital",48.540277,2.672881,0,0,OIF:SA:27:148,Europe/Paris,,OIF, +OIF:SP:27:150,1,"Hôpital Intérieur",48.537955,2.667681,0,0,OIF:SA:27:150,Europe/Paris,,OIF, +OIF:SP:27:151,1,"Hôpital Intérieur",48.53647,2.668226,0,0,OIF:SA:27:150,Europe/Paris,,OIF, +OIF:SP:27:153,1,"Mairie",48.514595,2.634575,0,0,OIF:SA:27:153,Europe/Paris,,OIF, +OIF:SP:27:154,1,"Rue de l'Industrie",48.526392,2.655328,0,0,OIF:SA:8768200,Europe/Paris,,OIF, +OIF:SP:27:155,1,"Croix Saint-Jacques",48.521655,2.648266,0,0,OIF:SA:27:155,Europe/Paris,,OIF, +OIF:SP:27:156,1,"Croix Saint-Jacques",48.52159,2.64785,0,0,OIF:SA:27:155,Europe/Paris,,OIF, +OIF:SP:27:157,1,"Jean Jaurès",48.526166,2.6456,0,0,OIF:SA:27:157,Europe/Paris,,OIF, +OIF:SP:27:158,1,"Jean Jaurès",48.526254,2.646247,0,0,OIF:SA:27:157,Europe/Paris,,OIF, +OIF:SP:27:159,1,"Javal",48.518177,2.673898,0,0,OIF:SA:27:159,Europe/Paris,,OIF, +OIF:SP:27:16,1,"Jacques Amyot",48.545349,2.659293,0,0,OIF:SA:27:16,Europe/Paris,,OIF, +OIF:SP:27:160,1,"Résistance",48.521513,2.637087,0,0,OIF:SA:27:160,Europe/Paris,,OIF, +OIF:SP:27:161,1,"Résistance",48.521402,2.637173,0,0,OIF:SA:27:160,Europe/Paris,,OIF, +OIF:SP:27:162,1,"Joliot Curie",48.519316,2.645519,0,0,OIF:SA:27:162,Europe/Paris,,OIF, +OIF:SP:27:163,1,"Joliot Curie",48.519272,2.645295,0,0,OIF:SA:27:162,Europe/Paris,,OIF, +OIF:SP:27:164,1,"Juin Clemenceau",48.538414,2.679827,0,0,OIF:SA:27:164,Europe/Paris,,OIF, +OIF:SP:27:165,1,"Saint-Just Pascal",48.53391,2.68904,0,0,OIF:SA:27:165,Europe/Paris,,OIF, +OIF:SP:27:167,1,"Justice",48.505826,2.609897,0,0,OIF:SA:27:167,Europe/Paris,,OIF, +OIF:SP:27:168,1,"Justice",48.506067,2.609349,0,0,OIF:SA:27:167,Europe/Paris,,OIF, +OIF:SP:27:169,1,"La Foret",48.500123,2.634115,0,0,OIF:SA:27:169,Europe/Paris,,OIF, +OIF:SP:27:17,1,"Archives",48.514633,2.619971,0,0,OIF:SA:27:17,Europe/Paris,,OIF, +OIF:SP:27:170,1,"Cité Lallemand",48.509161,2.633647,0,0,OIF:SA:27:170,Europe/Paris,,OIF, +OIF:SP:27:171,1,"Cité Lallemand",48.508145,2.633682,0,0,OIF:SA:27:170,Europe/Paris,,OIF, +OIF:SP:27:172,1,"Lavoisier",48.549842,2.666981,0,0,OIF:SA:27:172,Europe/Paris,,OIF, +OIF:SP:27:173,1,"Lavoisier",48.549747,2.667537,0,0,OIF:SA:27:172,Europe/Paris,,OIF, +OIF:SP:27:174,1,"Lebon",48.52628,2.663249,0,0,OIF:SA:27:174,Europe/Paris,,OIF, +OIF:SP:27:175,1,"Liberté",48.50746,2.616021,0,0,OIF:SA:27:175,Europe/Paris,,OIF, +OIF:SP:27:176,1,"Liberté",48.507299,2.615508,0,0,OIF:SA:27:175,Europe/Paris,,OIF, +OIF:SP:27:177,1,"Docteur Roux",48.541785,2.670738,0,0,OIF:SA:27:177,Europe/Paris,,OIF, +OIF:SP:27:178,1,"Fief du Pré",48.510057,2.682629,0,0,OIF:SA:27:178,Europe/Paris,,OIF, +OIF:SP:27:179,1,"Fief du Pré",48.509855,2.6828,0,0,OIF:SA:27:178,Europe/Paris,,OIF, +OIF:SP:27:18,1,"Archives",48.514534,2.619957,0,0,OIF:SA:27:17,Europe/Paris,,OIF, +OIF:SP:27:180,1,"Gare de Livry",48.510293,2.679592,0,0,OIF:SA:8768240,Europe/Paris,,OIF, +OIF:SP:27:181,1,"Gare de Livry",48.510345,2.679318,0,0,OIF:SA:8768240,Europe/Paris,,OIF, +OIF:SP:27:182,1,"Route de Livry",48.517263,2.684406,0,0,OIF:SA:27:182,Europe/Paris,,OIF, +OIF:SP:27:183,1,"Saint-Louis",48.5415,2.659729,0,0,OIF:SA:27:183,Europe/Paris,,OIF, +OIF:SP:27:184,1,"Rue au Loup",48.525545,2.593193,0,0,OIF:SA:27:184,Europe/Paris,,OIF, +OIF:SP:27:185,1,"Rue au Loup",48.525401,2.593341,0,0,OIF:SA:27:184,Europe/Paris,,OIF, +OIF:SP:27:186,1,"Lyve",48.53451,2.628843,0,0,OIF:SA:27:186,Europe/Paris,,OIF, +OIF:SP:27:187,1,"Mail Gaillardon",48.538766,2.665099,0,0,OIF:SA:27:187,Europe/Paris,,OIF, +OIF:SP:27:190,1,"André Malraux",48.550603,2.66646,0,0,OIF:SA:8750203,Europe/Paris,,OIF, +OIF:SP:27:191,1,"Fontaine Saint-Marc",48.52906,2.692119,0,0,OIF:SA:27:191,Europe/Paris,,OIF, +OIF:SP:27:193,1,"Marche Couvert",48.515213,2.636334,0,0,OIF:SA:27:193,Europe/Paris,,OIF, +OIF:SP:27:194,1,"Clos Saint-Martin",48.522417,2.692631,0,0,OIF:SA:27:194,Europe/Paris,,OIF, +OIF:SP:27:195,1,"Clos Saint-Martin",48.522221,2.691568,0,0,OIF:SA:27:194,Europe/Paris,,OIF, +OIF:SP:27:196,1,"Maternité",48.538665,2.670921,0,0,OIF:SA:27:196,Europe/Paris,,OIF, +OIF:SP:27:197,1,"Maternité",48.538683,2.670664,0,0,OIF:SA:27:196,Europe/Paris,,OIF, +OIF:SP:27:198,1,"Avenue de Meaux",48.546356,2.662752,0,0,OIF:SA:27:198,Europe/Paris,,OIF, +OIF:SP:27:199,1,"Avenue de Meaux",48.54614,2.662859,0,0,OIF:SA:27:198,Europe/Paris,,OIF, +OIF:SP:27:2,1,"Foch 11 Novembre",48.529583,2.683058,0,0,OIF:SA:27:1,Europe/Paris,,OIF, +OIF:SP:27:200,1,"Lavoir",48.534154,2.632964,0,0,OIF:SA:27:200,Europe/Paris,,OIF, +OIF:SP:27:201,1,"Le Mée Gare",48.540712,2.623768,0,0,OIF:SA:8768217,Europe/Paris,,OIF, +OIF:SP:27:202,1,"Le Mée Gare",48.540488,2.62374,0,0,OIF:SA:8768217,Europe/Paris,,OIF, +OIF:SP:27:203,1,"Michelet",48.546902,2.657878,0,0,OIF:SA:27:203,Europe/Paris,,OIF, +OIF:SP:27:204,1,"Claude Monet",48.51975,2.661259,0,0,OIF:SA:27:204,Europe/Paris,,OIF, +OIF:SP:27:205,1,"Claude Monet",48.519242,2.661371,0,0,OIF:SA:27:204,Europe/Paris,,OIF, +OIF:SP:27:206,1,"Rue de Seine",48.518136,2.661174,0,0,OIF:SA:27:206,Europe/Paris,,OIF, +OIF:SP:27:207,1,"Rue de Seine",48.517961,2.661397,0,0,OIF:SA:27:206,Europe/Paris,,OIF, +OIF:SP:27:208,1,"Moisant",48.516545,2.629848,0,0,OIF:SA:27:208,Europe/Paris,,OIF, +OIF:SP:27:209,1,"Moisant",48.515787,2.629801,0,0,OIF:SA:27:208,Europe/Paris,,OIF, +OIF:SP:27:210,1,"Molière",48.544426,2.626197,0,0,OIF:SA:27:210,Europe/Paris,,OIF, +OIF:SP:27:211,1,"Molière",48.5438,2.626791,0,0,OIF:SA:27:210,Europe/Paris,,OIF, +OIF:SP:27:212,1,"Montagne du Mée",48.539515,2.640726,0,0,OIF:SA:27:212,Europe/Paris,,OIF, +OIF:SP:27:213,1,"Montagne du Mée",48.539609,2.640144,0,0,OIF:SA:27:212,Europe/Paris,,OIF, +OIF:SP:27:214,1,"Montaigu",48.551089,2.653945,0,0,OIF:SA:27:214,Europe/Paris,,OIF, +OIF:SP:27:215,1,"Montaigu",48.551135,2.653899,0,0,OIF:SA:27:214,Europe/Paris,,OIF, +OIF:SP:27:216,1,"Albert Moreau",48.528974,2.651071,0,0,OIF:SA:27:216,Europe/Paris,,OIF, +OIF:SP:27:218,1,"Jean Moulin",48.543543,2.670038,0,0,OIF:SA:27:218,Europe/Paris,,OIF, +OIF:SP:27:219,1,"Moustier",48.532753,2.676121,0,0,OIF:SA:27:219,Europe/Paris,,OIF, +OIF:SP:27:22,1,"Auvert",48.519338,2.640255,0,0,OIF:SA:27:22,Europe/Paris,,OIF, +OIF:SP:27:220,1,"Moustier",48.533536,2.675653,0,0,OIF:SA:27:219,Europe/Paris,,OIF, +OIF:SP:27:221,1,"Place Mouton",48.510799,2.690391,0,0,OIF:SA:27:221,Europe/Paris,,OIF, +OIF:SP:27:222,1,"Nazareth",48.568068,2.661858,0,0,OIF:SA:27:222,Europe/Paris,,OIF, +OIF:SP:27:223,1,"Notre-Dame",48.535845,2.660046,0,0,OIF:SA:27:223,Europe/Paris,,OIF, +OIF:SP:27:224,1,"Foch Niepce",48.536316,2.684145,0,0,OIF:SA:27:224,Europe/Paris,,OIF, +OIF:SP:27:225,1,"Val de Noue",48.525534,2.6913,0,0,OIF:SA:27:225,Europe/Paris,,OIF, +OIF:SP:27:226,1,"Belle Ombre",48.533477,2.647863,0,0,OIF:SA:27:226,Europe/Paris,,OIF, +OIF:SP:27:228,1,"Porte de Paris",48.539753,2.657878,0,0,OIF:SA:27:228,Europe/Paris,,OIF, +OIF:SP:27:229,1,"Quai Pasteur",48.538417,2.656233,0,0,OIF:SA:27:229,Europe/Paris,,OIF, +OIF:SP:27:23,1,"Bancel",48.541299,2.661177,0,0,OIF:SA:27:23,Europe/Paris,,OIF, +OIF:SP:27:231,1,"Lucien Boutet",48.522798,2.645267,0,0,OIF:SA:27:231,Europe/Paris,,OIF, +OIF:SP:27:234,1,"Plein Ciel",48.548427,2.644494,0,0,OIF:SA:27:234,Europe/Paris,,OIF, +OIF:SP:27:235,1,"Plein Ciel",48.548399,2.645139,0,0,OIF:SA:27:234,Europe/Paris,,OIF, +OIF:SP:27:236,1,"Péguy",48.500768,2.635737,0,0,OIF:SA:27:236,Europe/Paris,,OIF, +OIF:SP:27:237,1,"Pierre Percée",48.546715,2.63777,0,0,OIF:SA:27:237,Europe/Paris,,OIF, +OIF:SP:27:238,1,"Pierre Percée",48.546711,2.637124,0,0,OIF:SA:27:237,Europe/Paris,,OIF, +OIF:SP:27:239,1,"Gabriel Péri",48.504782,2.633373,0,0,OIF:SA:27:239,Europe/Paris,,OIF, +OIF:SP:27:24,1,"Barthou",48.509019,2.62565,0,0,OIF:SA:27:24,Europe/Paris,,OIF, +OIF:SP:27:240,1,"Gabriel Péri",48.504531,2.633391,0,0,OIF:SA:27:239,Europe/Paris,,OIF, +OIF:SP:27:241,1,"Pigeons",48.524399,2.674295,0,0,OIF:SA:27:241,Europe/Paris,,OIF, +OIF:SP:27:242,1,"H. Daumier",48.523819,2.657677,0,0,OIF:SA:27:100,Europe/Paris,,OIF, +OIF:SP:27:243,1,"Vaux Pleins Vents",48.518855,2.682934,0,0,OIF:SA:27:243,Europe/Paris,,OIF, +OIF:SP:27:244,1,"Vaux Pleins Vents",48.517539,2.683248,0,0,OIF:SA:27:243,Europe/Paris,,OIF, +OIF:SP:27:246,1,"Politzer",48.521542,2.643749,0,0,OIF:SA:27:246,Europe/Paris,,OIF, +OIF:SP:27:249,1,"Pompiers",48.554475,2.631238,0,0,OIF:SA:27:249,Europe/Paris,,OIF, +OIF:SP:27:25,1,"Barthou",48.508934,2.62585,0,0,OIF:SA:27:24,Europe/Paris,,OIF, +OIF:SP:27:250,1,"Pouillot Gatinais",48.532943,2.646019,0,0,OIF:SA:27:250,Europe/Paris,,OIF, +OIF:SP:27:251,1,"Praslin Université",48.536937,2.658469,0,0,OIF:SA:27:251,Europe/Paris,,OIF, +OIF:SP:27:252,1,"Préfecture Briand",48.541948,2.650587,0,0,OIF:SA:27:252,Europe/Paris,,OIF, +OIF:SP:27:254,1,"Préfecture",48.541503,2.655991,0,0,OIF:SA:27:252,Europe/Paris,,OIF, +OIF:SP:27:256,1,"Prieur",48.512948,2.617622,0,0,OIF:SA:27:256,Europe/Paris,,OIF, +OIF:SP:27:257,1,"Mare à Quenette",48.519823,2.689352,0,0,OIF:SA:27:257,Europe/Paris,,OIF, +OIF:SP:27:258,1,"Mare à Quenette",48.520268,2.689927,0,0,OIF:SA:27:257,Europe/Paris,,OIF, +OIF:SP:27:259,1,"Pré Rigot",48.545906,2.624785,0,0,OIF:SA:27:259,Europe/Paris,,OIF, +OIF:SP:27:26,1,"Baste Seine",48.520444,2.673993,0,0,OIF:SA:27:26,Europe/Paris,,OIF, +OIF:SP:27:260,1,"Rocheton Stade",48.50634,2.661203,0,0,OIF:SA:27:260,Europe/Paris,,OIF, +OIF:SP:27:261,1,"Place Chapu",48.532227,2.658183,0,0,OIF:SA:27:261,Europe/Paris,,OIF, +OIF:SP:27:262,1,"Quai Rossignol",48.5349,2.657171,0,0,OIF:SA:27:262,Europe/Paris,,OIF, +OIF:SP:27:263,1,"Rue du Port",48.519677,2.674602,0,0,OIF:SA:27:263,Europe/Paris,,OIF, +OIF:SP:27:264,1,"Rue du Port",48.519578,2.674547,0,0,OIF:SA:27:263,Europe/Paris,,OIF, +OIF:SP:27:265,1,"Route de Voisenon",48.547686,2.663191,0,0,OIF:SA:27:265,Europe/Paris,,OIF, +OIF:SP:27:266,1,"Route de Voisenon",48.547637,2.663083,0,0,OIF:SA:27:265,Europe/Paris,,OIF, +OIF:SP:27:267,1,"Rue des Mézereaux",48.54942,2.671168,0,0,OIF:SA:27:267,Europe/Paris,,OIF, +OIF:SP:27:269,1,"R.Schuman",48.550117,2.638978,0,0,OIF:SA:27:269,Europe/Paris,,OIF, +OIF:SP:27:27,1,"Saint-Liesne",48.540298,2.668603,0,0,OIF:SA:27:27,Europe/Paris,,OIF, +OIF:SP:27:270,1,"Seine Grisonnières",48.523618,2.678116,0,0,OIF:SA:27:270,Europe/Paris,,OIF, +OIF:SP:27:271,1,"Siegfried",48.548856,2.643876,0,0,OIF:SA:27:271,Europe/Paris,,OIF, +OIF:SP:27:272,1,"Siegfried",48.548968,2.643975,0,0,OIF:SA:27:271,Europe/Paris,,OIF, +OIF:SP:27:273,1,"Sorbiers",48.543061,2.633773,0,0,OIF:SA:27:273,Europe/Paris,,OIF, +OIF:SP:27:274,1,"Sorbiers",48.543275,2.634261,0,0,OIF:SA:27:273,Europe/Paris,,OIF, +OIF:SP:27:276,1,"Saint-Exupéry",48.551081,2.650487,0,0,OIF:SA:27:276,Europe/Paris,,OIF, +OIF:SP:27:277,1,"Saint-Exupéry",48.551141,2.650647,0,0,OIF:SA:27:276,Europe/Paris,,OIF, +OIF:SP:27:278,1,"Place Saint-Jean",48.539476,2.663118,0,0,OIF:SA:27:278,Europe/Paris,,OIF, +OIF:SP:27:28,1,"Saint-Liesne",48.540406,2.668522,0,0,OIF:SA:27:27,Europe/Paris,,OIF, +OIF:SP:27:280,1,"Terres Blanches",48.521359,2.683662,0,0,OIF:SA:27:280,Europe/Paris,,OIF, +OIF:SP:27:281,1,"Tessan",48.509623,2.61404,0,0,OIF:SA:27:281,Europe/Paris,,OIF, +OIF:SP:27:283,1,"Gare Thiers",48.528299,2.654157,0,0,OIF:SA:27:283,Europe/Paris,,OIF, +OIF:SP:27:284,1,"Elsa Triolet",48.544036,2.635619,0,0,OIF:SA:27:284,Europe/Paris,,OIF, +OIF:SP:27:285,1,"Elsa Triolet",48.544065,2.63546,0,0,OIF:SA:27:284,Europe/Paris,,OIF, +OIF:SP:27:287,1,"U.R.S.S.A.F",48.552113,2.674067,0,0,OIF:SA:27:287,Europe/Paris,,OIF, +OIF:SP:27:288,1,"ZAC des Uzelles",48.533245,2.616442,0,0,OIF:SA:27:288,Europe/Paris,,OIF, +OIF:SP:27:289,1,"ZAC des Uzelles",48.532933,2.615635,0,0,OIF:SA:27:288,Europe/Paris,,OIF, +OIF:SP:27:29,1,"Beauregard",48.550635,2.647806,0,0,OIF:SA:27:29,Europe/Paris,,OIF, +OIF:SP:27:290,1,"Vaux Garenne",48.514764,2.683692,0,0,OIF:SA:27:290,Europe/Paris,,OIF, +OIF:SP:27:291,1,"Vaux Garenne",48.514769,2.684042,0,0,OIF:SA:27:290,Europe/Paris,,OIF, +OIF:SP:27:292,1,"Paul Valéry",48.543547,2.67517,0,0,OIF:SA:27:292,Europe/Paris,,OIF, +OIF:SP:27:293,1,"Vercors",48.539693,2.63648,0,0,OIF:SA:27:293,Europe/Paris,,OIF, +OIF:SP:27:294,1,"Vercors",48.539474,2.637204,0,0,OIF:SA:27:293,Europe/Paris,,OIF, +OIF:SP:27:295,1,"Vernin",48.509766,2.604834,0,0,OIF:SA:27:295,Europe/Paris,,OIF, +OIF:SP:27:296,1,"Vignes",48.509005,2.663302,0,0,OIF:SA:27:296,Europe/Paris,,OIF, +OIF:SP:27:297,1,"Vilaubois",48.517236,2.643044,0,0,OIF:SA:27:297,Europe/Paris,,OIF, +OIF:SP:27:298,1,"Vilaubois",48.517165,2.642921,0,0,OIF:SA:27:297,Europe/Paris,,OIF, +OIF:SP:27:299,1,"Vosves École",48.512489,2.594347,0,0,OIF:SA:27:299,Europe/Paris,,OIF, +OIF:SP:27:3,1,"Foch 11 Novembre",48.530322,2.682107,0,0,OIF:SA:27:1,Europe/Paris,,OIF, +OIF:SP:27:30,1,"Berthelot",48.51453,2.640261,0,0,OIF:SA:27:30,Europe/Paris,,OIF, +OIF:SP:27:301,1,"Château du Jard",48.571061,2.661534,0,0,OIF:SA:27:301,Europe/Paris,,OIF, +OIF:SP:27:302,1,"Le Moulin",48.568562,2.665207,0,0,OIF:SA:27:302,Europe/Paris,,OIF, +OIF:SP:27:304,1,"Le Plateau",48.573914,2.663981,0,0,OIF:SA:27:304,Europe/Paris,,OIF, +OIF:SP:27:305,1,"Fernand Léger",48.513877,2.592743,0,0,OIF:SA:27:305,Europe/Paris,,OIF, +OIF:SP:27:306,1,"Henri Wallon",48.52438,2.643722,0,0,OIF:SA:27:306,Europe/Paris,,OIF, +OIF:SP:27:307,1,"Henri Wallon",48.524471,2.643817,0,0,OIF:SA:27:306,Europe/Paris,,OIF, +OIF:SP:27:308,1,"Route de Montereau",48.540364,2.67709,0,0,OIF:SA:27:308,Europe/Paris,,OIF, +OIF:SP:27:31,1,"Bir Hakeim",48.547073,2.639685,0,0,OIF:SA:27:31,Europe/Paris,,OIF, +OIF:SP:27:311,1,"Gare de Melun",48.527812,2.655476,0,0,OIF:SA:8768200,Europe/Paris,,OIF, +OIF:SP:27:313,1,"Juin Clemenceau",48.538424,2.679475,0,0,OIF:SA:27:164,Europe/Paris,,OIF, +OIF:SP:27:314,1,"Foch Niepce",48.536243,2.683982,0,0,OIF:SA:27:224,Europe/Paris,,OIF, +OIF:SP:27:315,1,"Saint-Just Clemenceau",48.534313,2.677879,0,0,OIF:SA:27:315,Europe/Paris,,OIF, +OIF:SP:27:319,1,"Mont aux Lièvres",48.522141,2.603976,0,0,OIF:SA:27:319,Europe/Paris,,OIF, +OIF:SP:27:32,1,"Bir Hakeim",48.547202,2.639538,0,0,OIF:SA:27:31,Europe/Paris,,OIF, +OIF:SP:27:320,1,"Mont aux Lièvres",48.522024,2.603975,0,0,OIF:SA:27:319,Europe/Paris,,OIF, +OIF:SP:27:321,1,"Place de Verdun",48.520389,2.611193,0,0,OIF:SA:27:321,Europe/Paris,,OIF, +OIF:SP:27:322,1,"Place de Verdun",48.520308,2.611328,0,0,OIF:SA:27:321,Europe/Paris,,OIF, +OIF:SP:27:323,1,"Les Uzelles",48.528389,2.62297,0,0,OIF:SA:27:323,Europe/Paris,,OIF, +OIF:SP:27:324,1,"Les Uzelles",48.528335,2.623051,0,0,OIF:SA:27:323,Europe/Paris,,OIF, +OIF:SP:27:325,1,"Lavoir",48.534043,2.633098,0,0,OIF:SA:27:200,Europe/Paris,,OIF, +OIF:SP:27:327,1,"Lyve",48.534606,2.629003,0,0,OIF:SA:27:186,Europe/Paris,,OIF, +OIF:SP:27:329,1,"Ferme",48.535181,2.624888,0,0,OIF:SA:27:120,Europe/Paris,,OIF, +OIF:SP:27:33,1,"Le Bœuf",48.503163,2.635856,0,0,OIF:SA:27:33,Europe/Paris,,OIF, +OIF:SP:27:331,1,"Henri Guy",48.561392,2.679883,0,0,OIF:SA:27:331,Europe/Paris,,OIF, +OIF:SP:27:332,1,"Henri Guy",48.561293,2.67995,0,0,OIF:SA:27:331,Europe/Paris,,OIF, +OIF:SP:27:333,1,"Bertagnes",48.558415,2.680071,0,0,OIF:SA:27:333,Europe/Paris,,OIF, +OIF:SP:27:334,1,"Bertagnes",48.558252,2.680172,0,0,OIF:SA:27:333,Europe/Paris,,OIF, +OIF:SP:27:335,1,"Groupe Scolaire C. Fabrici",48.553351,2.678192,0,0,OIF:SA:27:335,Europe/Paris,,OIF, +OIF:SP:27:336,1,"Groupe Scolaire C. Fabrici",48.553764,2.678533,0,0,OIF:SA:27:335,Europe/Paris,,OIF, +OIF:SP:27:338,1,"Place Caerano",48.503462,2.563243,0,0,OIF:SA:27:338,Europe/Paris,,OIF, +OIF:SP:27:339,1,"Petit Clos",48.506498,2.565487,0,0,OIF:SA:27:339,Europe/Paris,,OIF, +OIF:SP:27:34,1,"Rond-Point Saint-Germain",48.526649,2.588572,0,0,OIF:SA:27:34,Europe/Paris,,OIF, +OIF:SP:27:341,1,"Faronville",48.501821,2.565563,0,0,OIF:SA:27:341,Europe/Paris,,OIF, +OIF:SP:27:342,1,"Valbois",48.522184,2.57078,0,0,OIF:SA:27:342,Europe/Paris,,OIF, +OIF:SP:27:343,1,"Donjon",48.526831,2.571504,0,0,OIF:SA:27:343,Europe/Paris,,OIF, +OIF:SP:27:344,1,"Gare de Boissise",48.529269,2.572855,0,0,OIF:SA:8768251,Europe/Paris,,OIF, +OIF:SP:27:345,1,"Pré de l'Étang",48.530682,2.564849,0,0,OIF:SA:27:345,Europe/Paris,,OIF, +OIF:SP:27:346,1,"Rives de Seine",48.529895,2.557956,0,0,OIF:SA:27:346,Europe/Paris,,OIF, +OIF:SP:27:347,1,"Bel Air",48.528423,2.570916,0,0,OIF:SA:27:347,Europe/Paris,,OIF, +OIF:SP:27:348,1,"Croix Blanche Camus",48.544039,2.6414,0,0,OIF:SA:27:348,Europe/Paris,,OIF, +OIF:SP:27:349,1,"Croix Blanche Camus",48.543806,2.641385,0,0,OIF:SA:27:348,Europe/Paris,,OIF, +OIF:SP:27:35,1,"Rond-Point Saint-Germain",48.52687,2.587191,0,0,OIF:SA:27:34,Europe/Paris,,OIF, +OIF:SP:27:350,1,"La Chesnaie",48.552446,2.557745,0,0,OIF:SA:27:350,Europe/Paris,,OIF, +OIF:SP:27:351,1,"Croix Maingot",48.553298,2.547681,0,0,OIF:SA:27:351,Europe/Paris,,OIF, +OIF:SP:27:352,1,"Montesson",48.558492,2.547894,0,0,OIF:SA:27:352,Europe/Paris,,OIF, +OIF:SP:27:353,1,"Paladilhe",48.560177,2.550541,0,0,OIF:SA:27:353,Europe/Paris,,OIF, +OIF:SP:27:354,1,"Traînard",48.557719,2.551237,0,0,OIF:SA:27:354,Europe/Paris,,OIF, +OIF:SP:27:355,1,"Jobert",48.557309,2.555703,0,0,OIF:SA:27:355,Europe/Paris,,OIF, +OIF:SP:27:356,1,"Chemin de la Justice",48.555526,2.565664,0,0,OIF:SA:27:356,Europe/Paris,,OIF, +OIF:SP:27:357,1,"Cesson Gare RER",48.564841,2.593658,0,0,OIF:SA:8768216,Europe/Paris,,OIF, +OIF:SP:27:358,1,"Maison Médicale",48.545048,2.647458,0,0,OIF:SA:27:358,Europe/Paris,,OIF, +OIF:SP:27:359,1,"Maison Médicale",48.545246,2.647405,0,0,OIF:SA:27:358,Europe/Paris,,OIF, +OIF:SP:27:36,1,"Bouillants",48.511495,2.632728,0,0,OIF:SA:27:36,Europe/Paris,,OIF, +OIF:SP:27:360,1,"CES Jean de la Fontaine",48.543989,2.624705,0,0,OIF:SA:27:360,Europe/Paris,,OIF, +OIF:SP:27:361,1,"CES Jean de la Fontaine",48.543919,2.624991,0,0,OIF:SA:27:360,Europe/Paris,,OIF, +OIF:SP:27:362,1,"Le Larré",48.529897,2.579842,0,0,OIF:SA:27:362,Europe/Paris,,OIF, +OIF:SP:27:363,1,"Le Larré",48.529754,2.579693,0,0,OIF:SA:27:362,Europe/Paris,,OIF, +OIF:SP:27:364,1,"Beaulieu",48.533273,2.573239,0,0,OIF:SA:27:364,Europe/Paris,,OIF, +OIF:SP:27:365,1,"Beaulieu",48.53303,2.573157,0,0,OIF:SA:27:364,Europe/Paris,,OIF, +OIF:SP:27:366,1,"Base de Loisirs",48.536253,2.561625,0,0,OIF:SA:27:366,Europe/Paris,,OIF, +OIF:SP:27:367,1,"Base de Loisirs",48.536091,2.561543,0,0,OIF:SA:27:366,Europe/Paris,,OIF, +OIF:SP:27:37,1,"Branly",48.551158,2.661969,0,0,OIF:SA:27:37,Europe/Paris,,OIF, +OIF:SP:27:370,1,"Sainte-Assise",48.541074,2.551552,0,0,OIF:SA:27:370,Europe/Paris,,OIF, +OIF:SP:27:372,1,"Saint-Leu",48.554467,2.583884,0,0,OIF:SA:27:372,Europe/Paris,,OIF, +OIF:SP:27:373,1,"Saint-Leu",48.554287,2.584063,0,0,OIF:SA:27:372,Europe/Paris,,OIF, +OIF:SP:27:374,1,"Collège du Grand Parc",48.559252,2.594849,0,0,OIF:SA:27:374,Europe/Paris,,OIF, +OIF:SP:27:378,1,"Rue de la Noue",48.525671,2.678986,0,0,OIF:SA:27:378,Europe/Paris,,OIF, +OIF:SP:27:379,1,"Rue des Vignes",48.518693,2.679061,0,0,OIF:SA:27:379,Europe/Paris,,OIF, +OIF:SP:27:38,1,"Branly",48.551085,2.662081,0,0,OIF:SA:27:37,Europe/Paris,,OIF, +OIF:SP:27:383,1,"Quai Joffre",48.53219,2.665032,0,0,OIF:SA:27:383,Europe/Paris,,OIF, +OIF:SP:27:39,1,"Bréau",48.542612,2.630165,0,0,OIF:SA:27:39,Europe/Paris,,OIF, +OIF:SP:27:391,1,"Champ de Foire",48.557195,2.63872,0,0,OIF:SA:27:391,Europe/Paris,,OIF, +OIF:SP:27:394,1,"Gare Routière Mail",48.539178,2.66425,0,0,OIF:SA:27:187,Europe/Paris,,OIF, +OIF:SP:27:395,1,"Gare Routière Mail",48.539178,2.664264,0,0,OIF:SA:27:187,Europe/Paris,,OIF, +OIF:SP:27:397,1,"Gare Routière Mail",48.539103,2.664317,0,0,OIF:SA:27:187,Europe/Paris,,OIF, +OIF:SP:27:398,1,"Gare Routière Mail",48.53922,2.664306,0,0,OIF:SA:27:187,Europe/Paris,,OIF, +OIF:SP:27:4,1,"14 Juillet",48.530958,2.672717,0,0,OIF:SA:27:4,Europe/Paris,,OIF, +OIF:SP:27:40,1,"Bréau",48.542712,2.62983,0,0,OIF:SA:27:39,Europe/Paris,,OIF, +OIF:SP:27:400,1,"Gare Routière Mail",48.539205,2.664287,0,0,OIF:SA:27:187,Europe/Paris,,OIF, +OIF:SP:27:405,1,"Montereau",48.591079,2.668981,0,0,OIF:SA:27:405,Europe/Paris,,OIF, +OIF:SP:27:407,1,"École J. Auriol",48.595296,2.681353,0,0,OIF:SA:27:407,Europe/Paris,,OIF, +OIF:SP:27:408,1,"Aubigny",48.597215,2.686069,0,0,OIF:SA:27:408,Europe/Paris,,OIF, +OIF:SP:27:409,1,"École E. Piot",48.581829,2.70888,0,0,OIF:SA:27:409,Europe/Paris,,OIF, +OIF:SP:27:41,1,"Gendarmerie Briand",48.544909,2.650573,0,0,OIF:SA:27:41,Europe/Paris,,OIF, +OIF:SP:27:410,1,"RN36",48.582555,2.713494,0,0,OIF:SA:27:410,Europe/Paris,,OIF, +OIF:SP:27:42,1,"Brossolette",48.545194,2.676365,0,0,OIF:SA:27:42,Europe/Paris,,OIF, +OIF:SP:27:420,1,"Le Plateau",48.57406,2.663426,0,0,OIF:SA:27:304,Europe/Paris,,OIF, +OIF:SP:27:421,1,"Rue des Vignes",48.519251,2.678794,0,0,OIF:SA:27:379,Europe/Paris,,OIF, +OIF:SP:27:422,1,"Château du Jard",48.570874,2.661361,0,0,OIF:SA:27:301,Europe/Paris,,OIF, +OIF:SP:27:424,1,"Espace Saint-Exupéry",48.566403,2.678589,0,0,OIF:SA:27:424,Europe/Paris,,OIF, +OIF:SP:27:427,1,"Montereau",48.591079,2.668926,0,0,OIF:SA:27:405,Europe/Paris,,OIF, +OIF:SP:27:43,1,"Calmette",48.549837,2.645649,0,0,OIF:SA:27:43,Europe/Paris,,OIF, +OIF:SP:27:432,1,"Grouette",48.524433,2.696873,0,0,OIF:SA:27:432,Europe/Paris,,OIF, +OIF:SP:27:433,1,"Grouette",48.524987,2.696799,0,0,OIF:SA:27:432,Europe/Paris,,OIF, +OIF:SP:27:436,1,"Docteur Roux",48.542363,2.670395,0,0,OIF:SA:27:177,Europe/Paris,,OIF, +OIF:SP:27:437,1,"Jean Moulin",48.543412,2.670572,0,0,OIF:SA:27:218,Europe/Paris,,OIF, +OIF:SP:27:438,1,"Brossolettes",48.544934,2.675984,0,0,OIF:SA:27:42,Europe/Paris,,OIF, +OIF:SP:27:439,1,"André Malraux",48.550627,2.666629,0,0,OIF:SA:8750203,Europe/Paris,,OIF, +OIF:SP:27:44,1,"Calmette",48.549763,2.645508,0,0,OIF:SA:27:43,Europe/Paris,,OIF, +OIF:SP:27:440,1,"Carré Trait d'Union",48.615383,2.544866,0,0,OIF:SA:27:440,Europe/Paris,,OIF, +OIF:SP:27:441,1,"Carré Trait d'Union",48.614476,2.544828,0,0,OIF:SA:27:440,Europe/Paris,,OIF, +OIF:SP:27:442,1,"Nicolas Guiard",48.601093,2.561986,0,0,OIF:SA:27:442,Europe/Paris,,OIF, +OIF:SP:27:443,1,"Nicolas Guiard",48.601218,2.561477,0,0,OIF:SA:27:442,Europe/Paris,,OIF, +OIF:SP:27:444,1,"Boissenard - la Haie",48.586417,2.593982,0,0,OIF:SA:27:444,Europe/Paris,,OIF, +OIF:SP:27:445,1,"Boissenard - la Haie",48.586215,2.594125,0,0,OIF:SA:27:444,Europe/Paris,,OIF, +OIF:SP:27:447,1,"Jean Rostand",48.568929,2.619808,0,0,OIF:SA:27:447,Europe/Paris,,OIF, +OIF:SP:27:448,1,"Jean Rostand",48.568428,2.619736,0,0,OIF:SA:27:447,Europe/Paris,,OIF, +OIF:SP:27:449,1,"Sénart Citoyenneté",48.621151,2.540688,0,0,OIF:SA:27:449,Europe/Paris,,OIF, +OIF:SP:27:45,1,"Carmes",48.548521,2.670421,0,0,OIF:SA:27:45,Europe/Paris,,OIF, +OIF:SP:27:450,1,"Sénart Citoyenneté",48.621368,2.541097,0,0,OIF:SA:27:449,Europe/Paris,,OIF, +OIF:SP:27:451,1,"Nandy Roseraie",48.586757,2.566111,0,0,OIF:SA:27:451,Europe/Paris,,OIF, +OIF:SP:27:452,1,"Nandy Roseraie",48.586939,2.566189,0,0,OIF:SA:27:451,Europe/Paris,,OIF, +OIF:SP:27:453,1,"Olof Palme",48.583959,2.580663,0,0,OIF:SA:27:453,Europe/Paris,,OIF, +OIF:SP:27:454,1,"Olof Palme",48.584058,2.580569,0,0,OIF:SA:27:453,Europe/Paris,,OIF, +OIF:SP:27:457,1,"Europe",48.555506,2.640074,0,0,OIF:SA:27:391,Europe/Paris,,OIF, +OIF:SP:27:458,1,"Claude Bernard",48.522898,2.667017,0,0,OIF:SA:27:458,Europe/Paris,,OIF, +OIF:SP:27:459,1,"Patton",48.551555,2.644589,0,0,OIF:SA:27:459,Europe/Paris,,OIF, +OIF:SP:27:46,1,"Carmes",48.548147,2.671181,0,0,OIF:SA:27:45,Europe/Paris,,OIF, +OIF:SP:27:460,1,"Camping",48.525637,2.669313,0,0,OIF:SA:27:460,Europe/Paris,,OIF, +OIF:SP:27:461,1,"E.Trelat",48.5523,2.680988,0,0,OIF:SA:27:461,Europe/Paris,,OIF, +OIF:SP:27:462,1,"Les Ponçeaux",48.558156,2.685793,0,0,OIF:SA:27:462,Europe/Paris,,OIF, +OIF:SP:27:463,1,"Plaine du Moulin à Vent",48.581152,2.604929,0,0,OIF:SA:27:463,Europe/Paris,,OIF, +OIF:SP:27:464,1,"Plaine du Moulin à Vent",48.581274,2.604828,0,0,OIF:SA:27:463,Europe/Paris,,OIF, +OIF:SP:27:466,1,"Cartonnerie",48.517259,2.624777,0,0,OIF:SA:27:466,Europe/Paris,,OIF, +OIF:SP:27:467,1,"Huit Mai 1945",48.522802,2.64105,0,0,OIF:SA:27:246,Europe/Paris,,OIF, +OIF:SP:27:469,1,"Foch 11 Novembre",48.529695,2.684053,0,0,OIF:SA:27:1,Europe/Paris,,OIF, +OIF:SP:27:47,1,"Carnot",48.510702,2.636592,0,0,OIF:SA:27:47,Europe/Paris,,OIF, +OIF:SP:27:471,1,"Curie Foch",48.531466,2.685772,0,0,OIF:SA:27:471,Europe/Paris,,OIF, +OIF:SP:27:473,1,"Curie Pascal",48.531267,2.690161,0,0,OIF:SA:27:473,Europe/Paris,,OIF, +OIF:SP:27:475,1,"Fontaine Saint-Marc",48.529481,2.691947,0,0,OIF:SA:27:191,Europe/Paris,,OIF, +OIF:SP:27:476,1,"Beauregard",48.550533,2.647253,0,0,OIF:SA:27:29,Europe/Paris,,OIF, +OIF:SP:27:479,1,"Centre Commercial",48.555079,2.634301,0,0,OIF:SA:27:479,Europe/Paris,,OIF, +OIF:SP:27:48,1,"Rene Cassin",48.550115,2.671983,0,0,OIF:SA:27:48,Europe/Paris,,OIF, +OIF:SP:27:480,1,"Pompiers",48.554529,2.631184,0,0,OIF:SA:27:249,Europe/Paris,,OIF, +OIF:SP:27:482,1,"R.Schuman",48.55112,2.635741,0,0,OIF:SA:27:269,Europe/Paris,,OIF, +OIF:SP:27:484,1,"Jacques Amyot",48.545638,2.658767,0,0,OIF:SA:27:16,Europe/Paris,,OIF, +OIF:SP:27:485,1,"Gare Thiers",48.528484,2.654041,0,0,OIF:SA:27:283,Europe/Paris,,OIF, +OIF:SP:27:487,1,"Prieur",48.512985,2.617541,0,0,OIF:SA:27:256,Europe/Paris,,OIF, +OIF:SP:27:488,1,"Vernin",48.509933,2.604897,0,0,OIF:SA:27:295,Europe/Paris,,OIF, +OIF:SP:27:489,1,"Tessan",48.50973,2.613843,0,0,OIF:SA:27:281,Europe/Paris,,OIF, +OIF:SP:27:49,1,"Rene Cassin",48.550723,2.672325,0,0,OIF:SA:27:48,Europe/Paris,,OIF, +OIF:SP:27:490,1,"Huit Mai 1945",48.522681,2.641018,0,0,OIF:SA:27:246,Europe/Paris,,OIF, +OIF:SP:27:491,1,"Politzer",48.521023,2.642362,0,0,OIF:SA:27:246,Europe/Paris,,OIF, +OIF:SP:27:492,1,"Paul Valéry",48.543426,2.674885,0,0,OIF:SA:27:292,Europe/Paris,,OIF, +OIF:SP:27:496,1,"Quai Pasteur",48.538358,2.655834,0,0,OIF:SA:27:229,Europe/Paris,,OIF, +OIF:SP:27:497,1,"Préfecture Briand",48.54184,2.650472,0,0,OIF:SA:27:252,Europe/Paris,,OIF, +OIF:SP:27:498,1,"Gendarmerie Briand",48.544944,2.650378,0,0,OIF:SA:27:41,Europe/Paris,,OIF, +OIF:SP:27:499,1,"Route de Montereau",48.540265,2.677213,0,0,OIF:SA:27:308,Europe/Paris,,OIF, +OIF:SP:27:5,1,"18 Juin Poste",48.541593,2.640844,0,0,OIF:SA:27:5,Europe/Paris,,OIF, +OIF:SP:27:50,1,"Champ de Foire",48.55668,2.637425,0,0,OIF:SA:27:50,Europe/Paris,,OIF, +OIF:SP:27:500,1,"Saint-Just Einstein",48.534309,2.683848,0,0,OIF:SA:27:112,Europe/Paris,,OIF, +OIF:SP:27:501,1,"Saint-Just Pascal",48.534,2.689029,0,0,OIF:SA:27:165,Europe/Paris,,OIF, +OIF:SP:27:502,1,"Quai Joffre",48.532106,2.664928,0,0,OIF:SA:27:383,Europe/Paris,,OIF, +OIF:SP:27:503,1,"Camping",48.525535,2.669195,0,0,OIF:SA:27:460,Europe/Paris,,OIF, +OIF:SP:27:504,1,"Claude Bernard",48.523043,2.666937,0,0,OIF:SA:27:458,Europe/Paris,,OIF, +OIF:SP:27:505,1,"Lebon",48.526264,2.663019,0,0,OIF:SA:27:174,Europe/Paris,,OIF, +OIF:SP:27:507,1,"Javal",48.518245,2.673764,0,0,OIF:SA:27:159,Europe/Paris,,OIF, +OIF:SP:27:508,1,"Mairie",48.538727,2.633951,0,0,OIF:SA:27:200,Europe/Paris,,OIF, +OIF:SP:27:509,1,"Mairie",48.538691,2.633964,0,0,OIF:SA:27:200,Europe/Paris,,OIF, +OIF:SP:27:51,1,"C.Cial Almont",48.542904,2.678632,0,0,OIF:SA:27:51,Europe/Paris,,OIF, +OIF:SP:27:511,1,"Route de Livry",48.517169,2.684508,0,0,OIF:SA:27:182,Europe/Paris,,OIF, +OIF:SP:27:513,1,"Place Mouton",48.51075,2.690558,0,0,OIF:SA:27:221,Europe/Paris,,OIF, +OIF:SP:27:515,1,"14 Juillet",48.531091,2.67282,0,0,OIF:SA:27:4,Europe/Paris,,OIF, +OIF:SP:27:516,1,"École E. Piot",48.581975,2.708547,0,0,OIF:SA:27:409,Europe/Paris,,OIF, +OIF:SP:27:518,1,"H.Berlioz",48.518616,2.638126,0,0,OIF:SA:27:518,Europe/Paris,,OIF, +OIF:SP:27:52,1,"C.Cial Almont",48.542594,2.678498,0,0,OIF:SA:27:51,Europe/Paris,,OIF, +OIF:SP:27:520,1,"C.Cial Rubelles",48.553572,2.671469,0,0,OIF:SA:27:520,Europe/Paris,,OIF, +OIF:SP:27:526,1,"Ferme",48.533744,2.675207,0,0,OIF:SA:27:119,Europe/Paris,,OIF, +OIF:SP:27:53,1,"C.Cial des Mézereaux",48.549566,2.668757,0,0,OIF:SA:27:53,Europe/Paris,,OIF, +OIF:SP:27:54,1,"C.Cial des Mézereaux",48.549357,2.668695,0,0,OIF:SA:27:53,Europe/Paris,,OIF, +OIF:SP:27:55,1,"Meuniers",48.553947,2.673984,0,0,OIF:SA:27:55,Europe/Paris,,OIF, +OIF:SP:27:56,1,"Meuniers",48.554116,2.673665,0,0,OIF:SA:27:55,Europe/Paris,,OIF, +OIF:SP:27:57,1,"Centre Administratif",48.515638,2.633454,0,0,OIF:SA:27:57,Europe/Paris,,OIF, +OIF:SP:27:58,1,"Centre Administratif",48.515343,2.633218,0,0,OIF:SA:27:57,Europe/Paris,,OIF, +OIF:SP:27:59,1,"Mare aux Champs",48.529981,2.678444,0,0,OIF:SA:27:59,Europe/Paris,,OIF, +OIF:SP:27:6,1,"18 Juin Libération",48.541213,2.640755,0,0,OIF:SA:27:5,Europe/Paris,,OIF, +OIF:SP:27:60,1,"Chamlys",48.508311,2.6082,0,0,OIF:SA:27:60,Europe/Paris,,OIF, +OIF:SP:27:601,1,"Baste Seine",48.520324,2.674741,0,0,OIF:SA:27:26,Europe/Paris,,OIF, +OIF:SP:27:602,1,"Thiers Pouillot",48.531132,2.655391,0,0,OIF:SA:27:602,Europe/Paris,,OIF, +OIF:SP:27:603,1,"Thiers Pouillot",48.530962,2.655497,0,0,OIF:SA:27:602,Europe/Paris,,OIF, +OIF:SP:27:606,1,"Rocheton Stade",48.506411,2.661387,0,0,OIF:SA:27:260,Europe/Paris,,OIF, +OIF:SP:27:607,1,"Chamlys",48.50841,2.60846,0,0,OIF:SA:27:60,Europe/Paris,,OIF, +OIF:SP:27:610,1,"École J.Auriol",48.595512,2.681539,0,0,OIF:SA:27:407,Europe/Paris,,OIF, +OIF:SP:27:611,1,"E.Trelat",48.552369,2.681258,0,0,OIF:SA:27:461,Europe/Paris,,OIF, +OIF:SP:27:612,1,"Les Ponceaux",48.55788,2.685754,0,0,OIF:SA:27:462,Europe/Paris,,OIF, +OIF:SP:27:613,1,"C.Cial Rubelles",48.553586,2.671383,0,0,OIF:SA:27:520,Europe/Paris,,OIF, +OIF:SP:27:617,1,"U.R.S.S.A.F",48.552059,2.674162,0,0,OIF:SA:27:287,Europe/Paris,,OIF, +OIF:SP:27:618,1,"Donjon",48.526831,2.571504,0,0,OIF:SA:27:343,Europe/Paris,,OIF, +OIF:SP:27:619,1,"Valbois",48.52223,2.570482,0,0,OIF:SA:27:342,Europe/Paris,,OIF, +OIF:SP:27:62,1,"Charmettes",48.539533,2.644458,0,0,OIF:SA:27:62,Europe/Paris,,OIF, +OIF:SP:27:620,1,"François Villon",48.51741,2.627767,0,0,OIF:SA:27:620,Europe/Paris,,OIF, +OIF:SP:27:621,1,"François Villon",48.517454,2.628092,0,0,OIF:SA:27:620,Europe/Paris,,OIF, +OIF:SP:27:622,1,"Fabien",48.527094,2.648163,0,0,OIF:SA:27:114,Europe/Paris,,OIF, +OIF:SP:27:623,1,"Konrad Adenauer",48.563501,2.631045,0,0,OIF:SA:27:623,Europe/Paris,,OIF, +OIF:SP:27:624,1,"Konrad Adenauer",48.563573,2.631181,0,0,OIF:SA:27:623,Europe/Paris,,OIF, +OIF:SP:27:625,1,"Centre Commercial Villiers en Bières",48.502021,2.583568,0,0,OIF:SA:27:625,Europe/Paris,,OIF, +OIF:SP:27:626,1,"Centre Commercial Villiers en Bières",48.500106,2.579352,0,0,OIF:SA:27:625,Europe/Paris,,OIF, +OIF:SP:27:627,1,"Avenue de Fontainebleau",48.528898,2.547666,0,0,OIF:SA:27:627,Europe/Paris,,OIF, +OIF:SP:27:628,1,"Avenue de Fontainebleau",48.528818,2.54753,0,0,OIF:SA:27:627,Europe/Paris,,OIF, +OIF:SP:27:629,1,"Mairie Beaufils",48.531088,2.544724,0,0,OIF:SA:27:629,Europe/Paris,,OIF, +OIF:SP:27:63,1,"Charmettes",48.539494,2.648184,0,0,OIF:SA:27:62,Europe/Paris,,OIF, +OIF:SP:27:630,1,"Mairie Beaufils",48.53028,2.544288,0,0,OIF:SA:27:629,Europe/Paris,,OIF, +OIF:SP:27:631,1,"ZA Bruxelles",48.534986,2.519467,0,0,OIF:SA:27:631,Europe/Paris,,OIF, +OIF:SP:27:633,1,"Grands Cèdres",48.525978,2.514185,0,0,OIF:SA:27:633,Europe/Paris,,OIF, +OIF:SP:27:634,1,"Hôtel de Ville Florélites",48.534096,2.525664,0,0,OIF:SA:27:634,Europe/Paris,,OIF, +OIF:SP:27:635,1,"Hôtel de Ville Florélites",48.534706,2.526505,0,0,OIF:SA:27:634,Europe/Paris,,OIF, +OIF:SP:27:636,1,"Gare Ponthierry Pringy",48.534855,2.544563,0,0,OIF:SA:8768252,Europe/Paris,,OIF, +OIF:SP:27:637,1,"Gare Ponthierry Pringy",48.534904,2.544175,0,0,OIF:SA:8768252,Europe/Paris,,OIF, +OIF:SP:27:638,1,"Saussaie",48.534886,2.53724,0,0,OIF:SA:27:638,Europe/Paris,,OIF, +OIF:SP:27:639,1,"Saussaie",48.534859,2.537281,0,0,OIF:SA:27:638,Europe/Paris,,OIF, +OIF:SP:27:64,1,"Chaussy",48.532748,2.650469,0,0,OIF:SA:27:64,Europe/Paris,,OIF, +OIF:SP:27:640,1,"ZA Strasbourg",48.532467,2.515263,0,0,OIF:SA:27:640,Europe/Paris,,OIF, +OIF:SP:27:641,1,"ZA Strasbourg",48.532736,2.515588,0,0,OIF:SA:27:640,Europe/Paris,,OIF, +OIF:SP:27:642,1,"Croix Blanche",48.520327,2.569107,0,0,OIF:SA:27:642,Europe/Paris,,OIF, +OIF:SP:27:644,1,"Les Terrasses",48.524229,2.559407,0,0,OIF:SA:27:644,Europe/Paris,,OIF, +OIF:SP:27:645,1,"Les Terrasses",48.523671,2.559703,0,0,OIF:SA:27:644,Europe/Paris,,OIF, +OIF:SP:27:646,1,"Bas Pringy",48.527579,2.551179,0,0,OIF:SA:27:646,Europe/Paris,,OIF, +OIF:SP:27:648,1,"L'Orme Brisé",48.520746,2.566091,0,0,OIF:SA:27:648,Europe/Paris,,OIF, +OIF:SP:27:649,1,"L'Orme Brisé",48.520683,2.565955,0,0,OIF:SA:27:648,Europe/Paris,,OIF, +OIF:SP:27:65,1,"Résidence du Château",48.535515,2.675056,0,0,OIF:SA:27:65,Europe/Paris,,OIF, +OIF:SP:27:650,1,"Jean Ferrat",48.529446,2.55319,0,0,OIF:SA:27:650,Europe/Paris,,OIF, +OIF:SP:27:651,1,"Pré de l'Étang",48.530646,2.564835,0,0,OIF:SA:27:345,Europe/Paris,,OIF, +OIF:SP:27:652,1,"Croix Maingot",48.553296,2.547643,0,0,OIF:SA:27:351,Europe/Paris,,OIF, +OIF:SP:27:653,1,"Montesson",48.558498,2.547873,0,0,OIF:SA:27:352,Europe/Paris,,OIF, +OIF:SP:27:654,1,"E. Paladilhe",48.560291,2.550541,0,0,OIF:SA:27:353,Europe/Paris,,OIF, +OIF:SP:27:655,1,"Jobert",48.557336,2.555703,0,0,OIF:SA:27:355,Europe/Paris,,OIF, +OIF:SP:27:656,1,"Chemin de la Justice",48.555672,2.565662,0,0,OIF:SA:27:356,Europe/Paris,,OIF, +OIF:SP:27:66,1,"Résidence du Château",48.535237,2.674811,0,0,OIF:SA:27:65,Europe/Paris,,OIF, +OIF:SP:27:660,1,"Rives de Seine",48.529877,2.55797,0,0,OIF:SA:27:346,Europe/Paris,,OIF, +OIF:SP:27:661,1,"Trainar",48.557759,2.551345,0,0,OIF:SA:27:354,Europe/Paris,,OIF, +OIF:SP:27:67,1,"Chaumières",48.569947,2.668263,0,0,OIF:SA:27:67,Europe/Paris,,OIF, +OIF:SP:27:68,1,"Chaumières",48.570013,2.667302,0,0,OIF:SA:27:67,Europe/Paris,,OIF, +OIF:SP:27:7,1,"3 Horloges",48.550468,2.657352,0,0,OIF:SA:27:10,Europe/Paris,,OIF, +OIF:SP:27:70,1,"Nouveau Cimetière",48.510679,2.603784,0,0,OIF:SA:27:70,Europe/Paris,,OIF, +OIF:SP:27:72,1,"Cité Administrative",48.533842,2.654967,0,0,OIF:SA:27:72,Europe/Paris,,OIF, +OIF:SP:27:73,1,"Cité Administrative",48.533403,2.654918,0,0,OIF:SA:27:72,Europe/Paris,,OIF, +OIF:SP:27:74,1,"Saint-Just Clemenceau",48.534158,2.677415,0,0,OIF:SA:27:315,Europe/Paris,,OIF, +OIF:SP:27:75,1,"J.Cocteau",48.515106,2.661408,0,0,OIF:SA:27:75,Europe/Paris,,OIF, +OIF:SP:27:76,1,"J.Cocteau",48.515047,2.661663,0,0,OIF:SA:27:75,Europe/Paris,,OIF, +OIF:SP:27:77,1,"Centre Commercial",48.554889,2.634463,0,0,OIF:SA:27:479,Europe/Paris,,OIF, +OIF:SP:27:78,1,"Copernic",48.518096,2.633996,0,0,OIF:SA:27:78,Europe/Paris,,OIF, +OIF:SP:27:79,1,"Copernic",48.518124,2.634479,0,0,OIF:SA:27:78,Europe/Paris,,OIF, +OIF:SP:27:8,1,"3 Horloges",48.54991,2.657073,0,0,OIF:SA:27:10,Europe/Paris,,OIF, +OIF:SP:27:80,1,"Avenue de Corbeil",48.547429,2.648231,0,0,OIF:SA:27:80,Europe/Paris,,OIF, +OIF:SP:27:81,1,"Avenue de Corbeil",48.547585,2.648217,0,0,OIF:SA:27:80,Europe/Paris,,OIF, +OIF:SP:27:82,1,"Cosec",48.547139,2.675308,0,0,OIF:SA:27:82,Europe/Paris,,OIF, +OIF:SP:27:83,1,"Cosec",48.54766,2.674945,0,0,OIF:SA:27:82,Europe/Paris,,OIF, +OIF:SP:27:84,1,"Patton",48.551637,2.64476,0,0,OIF:SA:27:459,Europe/Paris,,OIF, +OIF:SP:27:85,1,"Coubertin",48.520226,2.634089,0,0,OIF:SA:27:85,Europe/Paris,,OIF, +OIF:SP:27:86,1,"Coubertin",48.519732,2.633843,0,0,OIF:SA:27:85,Europe/Paris,,OIF, +OIF:SP:27:88,1,"Courtille",48.536765,2.659132,0,0,OIF:SA:27:88,Europe/Paris,,OIF, +OIF:SP:27:89,1,"Crespy",48.519799,2.685762,0,0,OIF:SA:27:89,Europe/Paris,,OIF, +OIF:SP:27:9,1,"3 Horloges",48.550578,2.657321,0,0,OIF:SA:27:10,Europe/Paris,,OIF, +OIF:SP:27:90,1,"Crespy",48.519941,2.685781,0,0,OIF:SA:27:89,Europe/Paris,,OIF, +OIF:SP:27:92,1,"Castor",48.548785,2.658759,0,0,OIF:SA:27:92,Europe/Paris,,OIF, +OIF:SP:27:93,1,"Curie Foch",48.531592,2.685819,0,0,OIF:SA:27:471,Europe/Paris,,OIF, +OIF:SP:27:94,1,"Centre Culturel",48.542263,2.660384,0,0,OIF:SA:27:94,Europe/Paris,,OIF, +OIF:SP:27:95,1,"Centre Culturel",48.542505,2.660656,0,0,OIF:SA:27:94,Europe/Paris,,OIF, +OIF:SP:27:96,1,"Curie Pascal",48.531363,2.690175,0,0,OIF:SA:27:473,Europe/Paris,,OIF, +OIF:SP:27:97,1,"Curie",48.515242,2.639067,0,0,OIF:SA:27:97,Europe/Paris,,OIF, +OIF:SP:27:98,1,"Croix Blanche Poste",48.54406,2.640277,0,0,OIF:SA:27:348,Europe/Paris,,OIF, +OIF:SP:27:99,1,"Croix Blanche Libération",48.543446,2.640178,0,0,OIF:SA:27:348,Europe/Paris,,OIF, +OIF:SP:28:1,1,"Les Plantes",48.43348,2.579448,0,0,OIF:SA:28:1,Europe/Paris,,OIF, +OIF:SP:28:10,1,"3 Poiriers",48.450796,2.603989,0,0,OIF:SA:28:10,Europe/Paris,,OIF, +OIF:SP:28:100,1,"Collège Inter",48.4105,2.69264,0,0,OIF:SA:28:100,Europe/Paris,,OIF, +OIF:SP:28:101,1,"Capitaine Freedy",48.569619,2.538376,0,0,OIF:SA:28:101,Europe/Paris,,OIF, +OIF:SP:28:104,1,"Georges Méliès",48.730574,2.667618,0,0,OIF:SA:28:104,Europe/Paris,,OIF, +OIF:SP:28:105,1,"Gallilée",48.70145,2.603595,0,0,OIF:SA:13:310,Europe/Paris,,OIF, +OIF:SP:28:106,1,"Gambetta",48.537452,2.66099,0,0,OIF:SA:27:129,Europe/Paris,,OIF, +OIF:SP:28:107,1,"Gambetta",48.692303,2.612307,0,0,OIF:SA:13:20,Europe/Paris,,OIF, +OIF:SP:28:11,1,"3 Poiriers",48.450958,2.603841,0,0,OIF:SA:28:10,Europe/Paris,,OIF, +OIF:SP:28:110,1,"Gare",48.526891,2.653576,0,0,OIF:SA:8768200,Europe/Paris,,OIF, +OIF:SP:28:111,1,"Gare",48.534855,2.544725,0,0,OIF:SA:8768252,Europe/Paris,,OIF, +OIF:SP:28:112,1,"Gare",48.534919,2.544117,0,0,OIF:SA:8768252,Europe/Paris,,OIF, +OIF:SP:28:113,1,"Gare SNCF",48.56465,2.542461,0,0,OIF:SA:8768254,Europe/Paris,,OIF, +OIF:SP:28:119,1,"Grégy Centre",48.666371,2.621341,0,0,OIF:SA:28:119,Europe/Paris,,OIF, +OIF:SP:28:120,1,"Grégy Centre",48.666388,2.621409,0,0,OIF:SA:28:119,Europe/Paris,,OIF, +OIF:SP:28:121,1,"Guiche",48.570342,2.530915,0,0,OIF:SA:28:121,Europe/Paris,,OIF, +OIF:SP:28:122,1,"Grandes Haies",48.497374,2.55069,0,0,OIF:SA:28:122,Europe/Paris,,OIF, +OIF:SP:28:123,1,"Trois Horloges",48.549931,2.657047,0,0,OIF:SA:28:123,Europe/Paris,,OIF, +OIF:SP:28:124,1,"Trois Horloges",48.549913,2.657074,0,0,OIF:SA:28:123,Europe/Paris,,OIF, +OIF:SP:28:128,1,"Victor Hugo",48.680016,2.609511,0,0,OIF:SA:13:291,Europe/Paris,,OIF, +OIF:SP:28:129,1,"Victor Hugo",48.680033,2.609611,0,0,OIF:SA:13:291,Europe/Paris,,OIF, +OIF:SP:28:13,1,"Beaufils",48.531357,2.544982,0,0,OIF:SA:27:629,Europe/Paris,,OIF, +OIF:SP:28:132,1,"Joliot Curie",48.519262,2.645342,0,0,OIF:SA:27:162,Europe/Paris,,OIF, +OIF:SP:28:134,1,"Joliot Curie",48.519148,2.647832,0,0,OIF:SA:27:162,Europe/Paris,,OIF, +OIF:SP:28:135,1,"Jonville",48.521936,2.539653,0,0,OIF:SA:28:135,Europe/Paris,,OIF, +OIF:SP:28:14,1,"Beaufils",48.530585,2.544438,0,0,OIF:SA:27:629,Europe/Paris,,OIF, +OIF:SP:28:155,1,"Mairie",48.476428,2.555648,0,0,OIF:SA:28:155,Europe/Paris,,OIF, +OIF:SP:28:156,1,"Mairie",48.476383,2.555363,0,0,OIF:SA:28:155,Europe/Paris,,OIF, +OIF:SP:28:157,1,"Mairie",48.498314,2.543187,0,0,OIF:SA:28:157,Europe/Paris,,OIF, +OIF:SP:28:158,1,"Mairie",48.448139,2.548975,0,0,OIF:SA:28:158,Europe/Paris,,OIF, +OIF:SP:28:159,1,"Mairie",48.448049,2.548988,0,0,OIF:SA:28:158,Europe/Paris,,OIF, +OIF:SP:28:160,1,"Mairie",48.465801,2.607608,0,0,OIF:SA:28:160,Europe/Paris,,OIF, +OIF:SP:28:161,1,"Mairie",48.465748,2.607337,0,0,OIF:SA:28:160,Europe/Paris,,OIF, +OIF:SP:28:162,1,"Maisonneraie",48.51992,2.551405,0,0,OIF:SA:28:162,Europe/Paris,,OIF, +OIF:SP:28:163,1,"RN7 Mamans",48.527083,2.552301,0,0,OIF:SA:28:163,Europe/Paris,,OIF, +OIF:SP:28:164,1,"Mairie",48.459949,2.529991,0,0,OIF:SA:28:164,Europe/Paris,,OIF, +OIF:SP:28:165,1,"Mairie",48.459994,2.529992,0,0,OIF:SA:28:164,Europe/Paris,,OIF, +OIF:SP:28:17,1,"Gare SNCF",48.529274,2.572558,0,0,OIF:SA:8768251,Europe/Paris,,OIF, +OIF:SP:28:170,1,"École Maternelle",48.524316,2.551288,0,0,OIF:SA:28:170,Europe/Paris,,OIF, +OIF:SP:28:171,1,"Avenue de Meaux",48.546293,2.662778,0,0,OIF:SA:27:198,Europe/Paris,,OIF, +OIF:SP:28:172,1,"Avenue de Meaux",48.546247,2.662914,0,0,OIF:SA:27:198,Europe/Paris,,OIF, +OIF:SP:28:177,1,"Monceau",48.482853,2.52057,0,0,OIF:SA:28:177,Europe/Paris,,OIF, +OIF:SP:28:178,1,"Monceau",48.482996,2.520557,0,0,OIF:SA:28:177,Europe/Paris,,OIF, +OIF:SP:28:179,1,"Montgermont",48.516147,2.544732,0,0,OIF:SA:28:179,Europe/Paris,,OIF, +OIF:SP:28:180,1,"Montlouis",48.519023,2.554838,0,0,OIF:SA:28:180,Europe/Paris,,OIF, +OIF:SP:28:181,1,"Montlouis",48.519005,2.554838,0,0,OIF:SA:28:180,Europe/Paris,,OIF, +OIF:SP:28:185,1,"Route de Paris",48.468533,2.605163,0,0,OIF:SA:28:185,Europe/Paris,,OIF, +OIF:SP:28:186,1,"Route de Paris",48.467928,2.605564,0,0,OIF:SA:28:185,Europe/Paris,,OIF, +OIF:SP:28:188,1,"Notre-Dame",48.536052,2.660156,0,0,OIF:SA:27:223,Europe/Paris,,OIF, +OIF:SP:28:19,1,"Bleuets",48.725932,2.665809,0,0,OIF:SA:28:19,Europe/Paris,,OIF, +OIF:SP:28:190,1,"Orangerie",48.530383,2.525312,0,0,OIF:SA:28:190,Europe/Paris,,OIF, +OIF:SP:28:191,1,"Orangerie",48.53033,2.525163,0,0,OIF:SA:28:190,Europe/Paris,,OIF, +OIF:SP:28:195,1,"Blaise Pascal",48.702064,2.598274,0,0,OIF:SA:28:195,Europe/Paris,,OIF, +OIF:SP:28:198,1,"Pièces de l'Étang",48.529874,2.534744,0,0,OIF:SA:28:198,Europe/Paris,,OIF, +OIF:SP:28:199,1,"Pièces de l'Étang",48.52992,2.534122,0,0,OIF:SA:28:198,Europe/Paris,,OIF, +OIF:SP:28:2,1,"Les Plantes",48.433624,2.579165,0,0,OIF:SA:28:1,Europe/Paris,,OIF, +OIF:SP:28:20,1,"Brinville",48.504219,2.533578,0,0,OIF:SA:28:20,Europe/Paris,,OIF, +OIF:SP:28:203,1,"Mairie",48.414477,2.564545,0,0,OIF:SA:28:203,Europe/Paris,,OIF, +OIF:SP:28:204,1,"Mairie",48.414459,2.564477,0,0,OIF:SA:28:203,Europe/Paris,,OIF, +OIF:SP:28:205,1,"Place",48.494141,2.598273,0,0,OIF:SA:28:205,Europe/Paris,,OIF, +OIF:SP:28:206,1,"Place",48.50341,2.563418,0,0,OIF:SA:27:338,Europe/Paris,,OIF, +OIF:SP:28:209,1,"Planches",48.485948,2.535416,0,0,OIF:SA:28:209,Europe/Paris,,OIF, +OIF:SP:28:210,1,"Planches",48.486147,2.534876,0,0,OIF:SA:28:209,Europe/Paris,,OIF, +OIF:SP:28:211,1,"Place",48.459236,2.537112,0,0,OIF:SA:28:211,Europe/Paris,,OIF, +OIF:SP:28:212,1,"Place",48.459118,2.537395,0,0,OIF:SA:28:211,Europe/Paris,,OIF, +OIF:SP:28:215,1,"Plessis",48.655343,2.63512,0,0,OIF:SA:28:215,Europe/Paris,,OIF, +OIF:SP:28:216,1,"Plessis",48.655343,2.63531,0,0,OIF:SA:28:215,Europe/Paris,,OIF, +OIF:SP:28:217,1,"Rue du Port RN7",48.527769,2.550815,0,0,OIF:SA:28:217,Europe/Paris,,OIF, +OIF:SP:28:220,1,"Praslin",48.536937,2.658469,0,0,OIF:SA:28:220,Europe/Paris,,OIF, +OIF:SP:28:223,1,"Puits Beau",48.557141,2.528361,0,0,OIF:SA:28:223,Europe/Paris,,OIF, +OIF:SP:28:23,1,"Caporal Petit",48.525981,2.512006,0,0,OIF:SA:28:23,Europe/Paris,,OIF, +OIF:SP:28:230,1,"La Rionnerie",48.478623,2.505424,0,0,OIF:SA:28:230,Europe/Paris,,OIF, +OIF:SP:28:231,1,"La Rionnerie",48.478524,2.505437,0,0,OIF:SA:28:230,Europe/Paris,,OIF, +OIF:SP:28:232,1,"Rives de Seine",48.529508,2.553258,0,0,OIF:SA:28:232,Europe/Paris,,OIF, +OIF:SP:28:233,1,"Rives de Seine",48.529418,2.553407,0,0,OIF:SA:28:232,Europe/Paris,,OIF, +OIF:SP:28:237,1,"Pâtis",48.456867,2.539238,0,0,OIF:SA:28:237,Europe/Paris,,OIF, +OIF:SP:28:238,1,"Les Pâtis",48.456877,2.539157,0,0,OIF:SA:28:237,Europe/Paris,,OIF, +OIF:SP:28:239,1,"Sablons",48.481206,2.54842,0,0,OIF:SA:28:239,Europe/Paris,,OIF, +OIF:SP:28:24,1,"Caporal Petit",48.525981,2.511789,0,0,OIF:SA:28:23,Europe/Paris,,OIF, +OIF:SP:28:240,1,"Sablons",48.481485,2.548029,0,0,OIF:SA:28:239,Europe/Paris,,OIF, +OIF:SP:28:242,1,"Salvaterra",48.468842,2.610774,0,0,OIF:SA:28:242,Europe/Paris,,OIF, +OIF:SP:28:243,1,"Salvaterra",48.469057,2.610734,0,0,OIF:SA:28:242,Europe/Paris,,OIF, +OIF:SP:28:245,1,"Saussaie",48.53495,2.536415,0,0,OIF:SA:27:638,Europe/Paris,,OIF, +OIF:SP:28:246,1,"Saussaie",48.534833,2.536522,0,0,OIF:SA:27:638,Europe/Paris,,OIF, +OIF:SP:28:248,1,"Salle des Fetes",48.523402,2.559431,0,0,OIF:SA:28:248,Europe/Paris,,OIF, +OIF:SP:28:250,1,"Sorbiers",48.542998,2.633867,0,0,OIF:SA:27:273,Europe/Paris,,OIF, +OIF:SP:28:251,1,"Parc des Sports",48.688606,2.607384,0,0,OIF:SA:13:220,Europe/Paris,,OIF, +OIF:SP:28:252,1,"Stade",48.518017,2.559273,0,0,OIF:SA:28:252,Europe/Paris,,OIF, +OIF:SP:28:253,1,"Stade",48.518081,2.559002,0,0,OIF:SA:28:252,Europe/Paris,,OIF, +OIF:SP:28:256,1,"Temploux",48.553737,2.526385,0,0,OIF:SA:28:256,Europe/Paris,,OIF, +OIF:SP:28:257,1,"Temploux",48.553845,2.526304,0,0,OIF:SA:28:256,Europe/Paris,,OIF, +OIF:SP:28:26,1,"Grands Cèdres",48.528348,2.516291,0,0,OIF:SA:27:633,Europe/Paris,,OIF, +OIF:SP:28:260,1,"Place",48.542176,2.526329,0,0,OIF:SA:28:260,Europe/Paris,,OIF, +OIF:SP:28:261,1,"Place",48.542203,2.526289,0,0,OIF:SA:28:260,Europe/Paris,,OIF, +OIF:SP:28:262,1,"Tournelles",48.688114,2.617958,0,0,OIF:SA:13:284,Europe/Paris,,OIF, +OIF:SP:28:263,1,"Tournelles",48.687961,2.617997,0,0,OIF:SA:13:284,Europe/Paris,,OIF, +OIF:SP:28:267,1,"Uruguay",48.410409,2.735421,0,0,OIF:SA:12:3651,Europe/Paris,,OIF, +OIF:SP:28:27,1,"Grands Cèdres",48.527855,2.515355,0,0,OIF:SA:27:633,Europe/Paris,,OIF, +OIF:SP:28:270,1,"Valbois",48.522184,2.57078,0,0,OIF:SA:27:342,Europe/Paris,,OIF, +OIF:SP:28:273,1,"Verdiers",48.524004,2.554778,0,0,OIF:SA:28:273,Europe/Paris,,OIF, +OIF:SP:28:274,1,"Place de Verdun",48.696831,2.614637,0,0,OIF:SA:13:521,Europe/Paris,,OIF, +OIF:SP:28:275,1,"Porte de Paris",48.539699,2.657864,0,0,OIF:SA:27:228,Europe/Paris,,OIF, +OIF:SP:28:276,1,"Village",48.519235,2.561632,0,0,OIF:SA:28:276,Europe/Paris,,OIF, +OIF:SP:28:277,1,"Village",48.519101,2.561564,0,0,OIF:SA:28:276,Europe/Paris,,OIF, +OIF:SP:28:280,1,"ZI de Villemon",48.700956,2.607191,0,0,OIF:SA:13:35,Europe/Paris,,OIF, +OIF:SP:28:281,1,"F Villon",48.524563,2.543751,0,0,OIF:SA:28:281,Europe/Paris,,OIF, +OIF:SP:28:282,1,"Zone Industrielle",48.520444,2.568999,0,0,OIF:SA:28:282,Europe/Paris,,OIF, +OIF:SP:28:283,1,"Zone Industrielle",48.52048,2.568918,0,0,OIF:SA:28:282,Europe/Paris,,OIF, +OIF:SP:28:290,1,"Baticop",48.534427,2.531878,0,0,OIF:SA:28:290,Europe/Paris,,OIF, +OIF:SP:28:292,1,"Fay",48.475364,2.627682,0,0,OIF:SA:28:292,Europe/Paris,,OIF, +OIF:SP:28:293,1,"Angélus",48.445855,2.606383,0,0,OIF:SA:28:293,Europe/Paris,,OIF, +OIF:SP:28:294,1,"Cimetière",48.449025,2.619319,0,0,OIF:SA:28:294,Europe/Paris,,OIF, +OIF:SP:28:295,1,"Miss Greenough",48.445895,2.612275,0,0,OIF:SA:28:295,Europe/Paris,,OIF, +OIF:SP:28:296,1,"Grande Rue",48.446091,2.601438,0,0,OIF:SA:28:296,Europe/Paris,,OIF, +OIF:SP:28:297,1,"Plante Rabot",48.442922,2.599071,0,0,OIF:SA:28:297,Europe/Paris,,OIF, +OIF:SP:28:298,1,"Brulys",48.437247,2.592166,0,0,OIF:SA:28:298,Europe/Paris,,OIF, +OIF:SP:28:299,1,"Gare SNCF",48.415795,2.727142,0,0,OIF:SA:8768221,Europe/Paris,,OIF, +OIF:SP:28:3,1,"Loricard",48.451206,2.54815,0,0,OIF:SA:28:3,Europe/Paris,,OIF, +OIF:SP:28:300,1,"Les Bouleaux",48.413129,2.74191,0,0,OIF:SA:28:300,Europe/Paris,,OIF, +OIF:SP:28:301,1,"Faronville",48.501815,2.565467,0,0,OIF:SA:27:341,Europe/Paris,,OIF, +OIF:SP:28:302,1,"Piscine",48.5269,2.544179,0,0,OIF:SA:28:302,Europe/Paris,,OIF, +OIF:SP:28:303,1,"Domaine de Montgermont",48.507163,2.535848,0,0,OIF:SA:28:303,Europe/Paris,,OIF, +OIF:SP:28:304,1,"Terre aux Moines",48.494526,2.544727,0,0,OIF:SA:28:304,Europe/Paris,,OIF, +OIF:SP:28:305,1,"Foret",48.442953,2.55798,0,0,OIF:SA:28:305,Europe/Paris,,OIF, +OIF:SP:28:306,1,"Longues Raies",48.431345,2.58576,0,0,OIF:SA:28:306,Europe/Paris,,OIF, +OIF:SP:28:308,1,"Chardonnières",48.420112,2.569837,0,0,OIF:SA:28:308,Europe/Paris,,OIF, +OIF:SP:28:309,1,"La Fourche Saint-Aspais",48.407924,2.688531,0,0,OIF:SA:28:309,Europe/Paris,,OIF, +OIF:SP:28:31,1,"Champagne",48.562507,2.528773,0,0,OIF:SA:28:31,Europe/Paris,,OIF, +OIF:SP:28:310,1,"Château",48.402397,2.696676,0,0,OIF:SA:14:14988,Europe/Paris,,OIF, +OIF:SP:28:311,1,"Collège la Vallée",48.413655,2.732663,0,0,OIF:SA:28:311,Europe/Paris,,OIF, +OIF:SP:28:312,1,"Les Terrasses",48.419796,2.735182,0,0,OIF:SA:28:312,Europe/Paris,,OIF, +OIF:SP:28:313,1,"Les Chênes",48.411505,2.74075,0,0,OIF:SA:28:313,Europe/Paris,,OIF, +OIF:SP:28:314,1,"Mairie RN7",48.530651,2.542881,0,0,OIF:SA:28:314,Europe/Paris,,OIF, +OIF:SP:28:316,1,"La Foret",48.429618,2.590183,0,0,OIF:SA:28:316,Europe/Paris,,OIF, +OIF:SP:28:317,1,"Marchepied",48.420985,2.565127,0,0,OIF:SA:28:317,Europe/Paris,,OIF, +OIF:SP:28:318,1,"Route de Corbeil",48.47486,2.496448,0,0,OIF:SA:28:318,Europe/Paris,,OIF, +OIF:SP:28:319,1,"Bois Beaudoin",48.460954,2.525278,0,0,OIF:SA:28:319,Europe/Paris,,OIF, +OIF:SP:28:322,1,"ZA Bruxelles",48.535345,2.519915,0,0,OIF:SA:27:631,Europe/Paris,,OIF, +OIF:SP:28:323,1,"ZA Strasbourg",48.532906,2.515846,0,0,OIF:SA:27:640,Europe/Paris,,OIF, +OIF:SP:28:326,1,"Baticop",48.534544,2.532054,0,0,OIF:SA:28:290,Europe/Paris,,OIF, +OIF:SP:28:334,1,"Olivieri",48.529574,2.551797,0,0,OIF:SA:28:334,Europe/Paris,,OIF, +OIF:SP:28:335,1,"Collège de Perthes",48.472471,2.555983,0,0,OIF:SA:28:335,Europe/Paris,,OIF, +OIF:SP:28:336,1,"Marcel Pagnol",48.727732,2.661703,0,0,OIF:SA:28:336,Europe/Paris,,OIF, +OIF:SP:28:339,1,"Petit Bicetre",48.691487,2.613115,0,0,OIF:SA:13:418,Europe/Paris,,OIF, +OIF:SP:28:34,1,"Château",48.65275,2.633246,0,0,OIF:SA:28:34,Europe/Paris,,OIF, +OIF:SP:28:342,1,"Les Pâtis",48.408313,2.562897,0,0,OIF:SA:28:342,Europe/Paris,,OIF, +OIF:SP:28:35,1,"Château",48.652813,2.633274,0,0,OIF:SA:28:34,Europe/Paris,,OIF, +OIF:SP:28:36,1,"Château",48.445051,2.551381,0,0,OIF:SA:28:36,Europe/Paris,,OIF, +OIF:SP:28:364,1,"Gare",48.52913,2.572652,0,0,OIF:SA:8768251,Europe/Paris,,OIF, +OIF:SP:28:37,1,"Château",48.444987,2.551678,0,0,OIF:SA:28:36,Europe/Paris,,OIF, +OIF:SP:28:377,1,"Émile Filée",48.525088,2.542047,0,0,OIF:SA:28:377,Europe/Paris,,OIF, +OIF:SP:28:379,1,"Émile Filée",48.525078,2.542102,0,0,OIF:SA:28:377,Europe/Paris,,OIF, +OIF:SP:28:38,1,"Rdv Château",48.693398,2.610559,0,0,OIF:SA:13:123,Europe/Paris,,OIF, +OIF:SP:28:381,1,"Couperin",48.51851,2.550357,0,0,OIF:SA:28:381,Europe/Paris,,OIF, +OIF:SP:28:383,1,"La Fourche Saint-Aspais",48.407959,2.68868,0,0,OIF:SA:28:309,Europe/Paris,,OIF, +OIF:SP:28:385,1,"Boissise Rive de Seine",48.52985,2.558078,0,0,OIF:SA:27:346,Europe/Paris,,OIF, +OIF:SP:28:386,1,"Boissise Rive de Seine",48.529922,2.557862,0,0,OIF:SA:27:346,Europe/Paris,,OIF, +OIF:SP:28:388,1,"Bois Beaudoin",48.460828,2.525467,0,0,OIF:SA:28:319,Europe/Paris,,OIF, +OIF:SP:28:389,1,"Chardonnières",48.419862,2.56939,0,0,OIF:SA:28:308,Europe/Paris,,OIF, +OIF:SP:28:390,1,"Brulys",48.437812,2.592776,0,0,OIF:SA:28:298,Europe/Paris,,OIF, +OIF:SP:28:391,1,"Grande Rue",48.445956,2.601357,0,0,OIF:SA:28:296,Europe/Paris,,OIF, +OIF:SP:28:392,1,"Miss Greenough",48.446021,2.61233,0,0,OIF:SA:28:295,Europe/Paris,,OIF, +OIF:SP:28:393,1,"Plante Rabot",48.442824,2.598895,0,0,OIF:SA:28:297,Europe/Paris,,OIF, +OIF:SP:28:4,1,"Loricard",48.451008,2.54846,0,0,OIF:SA:28:3,Europe/Paris,,OIF, +OIF:SP:28:40,1,"Château",48.465205,2.520413,0,0,OIF:SA:28:40,Europe/Paris,,OIF, +OIF:SP:28:41,1,"Château",48.465295,2.520535,0,0,OIF:SA:28:40,Europe/Paris,,OIF, +OIF:SP:28:410,1,"Foret",48.4428,2.558088,0,0,OIF:SA:28:305,Europe/Paris,,OIF, +OIF:SP:28:411,1,"Domaine de Montgermont",48.507164,2.53574,0,0,OIF:SA:28:303,Europe/Paris,,OIF, +OIF:SP:28:412,1,"Mairie",48.498233,2.542835,0,0,OIF:SA:28:157,Europe/Paris,,OIF, +OIF:SP:28:413,1,"Grandes Haies",48.497016,2.549904,0,0,OIF:SA:28:122,Europe/Paris,,OIF, +OIF:SP:28:414,1,"Brinville",48.504237,2.53347,0,0,OIF:SA:28:20,Europe/Paris,,OIF, +OIF:SP:28:415,1,"La Foret",48.429898,2.589806,0,0,OIF:SA:28:316,Europe/Paris,,OIF, +OIF:SP:28:42,1,"A Chaussy",48.689309,2.602324,0,0,OIF:SA:13:49,Europe/Paris,,OIF, +OIF:SP:28:44,1,"Chênes",48.691618,2.618357,0,0,OIF:SA:13:545,Europe/Paris,,OIF, +OIF:SP:28:46,1,"Chesnaie",48.564577,2.543151,0,0,OIF:SA:28:46,Europe/Paris,,OIF, +OIF:SP:28:488,1,"ZA Bruxelles",48.535499,2.51951,0,0,OIF:SA:27:631,Europe/Paris,,OIF, +OIF:SP:28:491,1,"Château",48.402568,2.696569,0,0,OIF:SA:14:14988,Europe/Paris,,OIF, +OIF:SP:28:493,1,"Place de l'Étape",48.407913,2.703736,0,0,OIF:SA:14:2150,Europe/Paris,,OIF, +OIF:SP:28:494,1,"Collège Inter",48.409365,2.693578,0,0,OIF:SA:28:100,Europe/Paris,,OIF, +OIF:SP:28:515,1,"Place Saint-Jean",48.539476,2.663118,0,0,OIF:SA:27:278,Europe/Paris,,OIF, +OIF:SP:28:517,1,"Jonville",48.522008,2.539681,0,0,OIF:SA:28:135,Europe/Paris,,OIF, +OIF:SP:28:519,1,"ZA Strasbourg",48.532808,2.515765,0,0,OIF:SA:27:640,Europe/Paris,,OIF, +OIF:SP:28:52,1,"Petit Clos",48.506498,2.565487,0,0,OIF:SA:27:339,Europe/Paris,,OIF, +OIF:SP:28:549,1,"Mairie RN7",48.530606,2.54257,0,0,OIF:SA:28:314,Europe/Paris,,OIF, +OIF:SP:28:55,1,"C Commercial",48.501556,2.582483,0,0,OIF:SA:28:55,Europe/Paris,,OIF, +OIF:SP:28:58,1,"Cornebiche",48.403405,2.560759,0,0,OIF:SA:28:58,Europe/Paris,,OIF, +OIF:SP:28:586,1,"Saint-Exupéry",48.55118,2.650677,0,0,OIF:SA:27:276,Europe/Paris,,OIF, +OIF:SP:28:587,1,"Saint-Exupéry",48.551144,2.650487,0,0,OIF:SA:27:276,Europe/Paris,,OIF, +OIF:SP:28:59,1,"Cossigny",48.71199,2.681721,0,0,OIF:SA:28:59,Europe/Paris,,OIF, +OIF:SP:28:594,1,"Bel Air",48.528378,2.570997,0,0,OIF:SA:27:347,Europe/Paris,,OIF, +OIF:SP:28:595,1,"RN7 la Poste",48.464576,2.607383,0,0,OIF:SA:28:595,Europe/Paris,,OIF, +OIF:SP:28:596,1,"RN7 la Poste",48.464543,2.607344,0,0,OIF:SA:28:595,Europe/Paris,,OIF, +OIF:SP:28:6,1,"Agora",48.52715,2.550014,0,0,OIF:SA:28:6,Europe/Paris,,OIF, +OIF:SP:28:60,1,"Stade Faisanderie",48.403749,2.686356,0,0,OIF:SA:28:60,Europe/Paris,,OIF, +OIF:SP:28:605,1,"E. Einstein",48.523231,2.544436,0,0,OIF:SA:28:605,Europe/Paris,,OIF, +OIF:SP:28:606,1,"F.Jacob",48.522118,2.543971,0,0,OIF:SA:28:606,Europe/Paris,,OIF, +OIF:SP:28:607,1,"M.Currie",48.520944,2.541503,0,0,OIF:SA:28:607,Europe/Paris,,OIF, +OIF:SP:28:608,1,"Ancienne Gare",48.697497,2.614261,0,0,OIF:SA:28:608,Europe/Paris,,OIF, +OIF:SP:28:609,1,"Ancienne Gare",48.69738,2.614328,0,0,OIF:SA:28:608,Europe/Paris,,OIF, +OIF:SP:28:61,1,"Coveco",48.522807,2.560457,0,0,OIF:SA:28:61,Europe/Paris,,OIF, +OIF:SP:28:610,1,"Place de Verdun",48.696902,2.615045,0,0,OIF:SA:13:521,Europe/Paris,,OIF, +OIF:SP:28:611,1,"Charles Pathé",48.721331,2.651977,0,0,OIF:SA:28:611,Europe/Paris,,OIF, +OIF:SP:28:612,1,"ZI Charles de Gaulle",48.702025,2.622949,0,0,OIF:SA:13:1353,Europe/Paris,,OIF, +OIF:SP:28:613,1,"ZI Charles de Gaulle",48.701881,2.623138,0,0,OIF:SA:13:1353,Europe/Paris,,OIF, +OIF:SP:28:614,1,"Parc des Sports",48.688371,2.6076,0,0,OIF:SA:13:220,Europe/Paris,,OIF, +OIF:SP:28:616,1,"Quai de la Courtille",48.536619,2.659577,0,0,OIF:SA:27:88,Europe/Paris,,OIF, +OIF:SP:28:62,1,"Coveco",48.523544,2.560081,0,0,OIF:SA:28:61,Europe/Paris,,OIF, +OIF:SP:28:63,1,"C Culturel",48.542648,2.660711,0,0,OIF:SA:27:94,Europe/Paris,,OIF, +OIF:SP:28:639,1,"Mairie Saint-Germain",48.474428,2.509413,0,0,OIF:SA:28:639,Europe/Paris,,OIF, +OIF:SP:28:64,1,"C Culturel",48.542514,2.660521,0,0,OIF:SA:27:94,Europe/Paris,,OIF, +OIF:SP:28:640,1,"Sorbiers",48.448265,2.548759,0,0,OIF:SA:28:640,Europe/Paris,,OIF, +OIF:SP:28:641,1,"Église Soisy",48.474392,2.49646,0,0,OIF:SA:28:641,Europe/Paris,,OIF, +OIF:SP:28:642,1,"Les Ruelles",48.47917,2.555646,0,0,OIF:SA:28:642,Europe/Paris,,OIF, +OIF:SP:28:643,1,"Fernand Léger",48.513894,2.592759,0,0,OIF:SA:27:305,Europe/Paris,,OIF, +OIF:SP:28:644,1,"Vosves École",48.512459,2.594459,0,0,OIF:SA:27:299,Europe/Paris,,OIF, +OIF:SP:28:65,1,"Cyclopes",48.531626,2.535184,0,0,OIF:SA:28:65,Europe/Paris,,OIF, +OIF:SP:28:66,1,"Cyclopes",48.531716,2.535157,0,0,OIF:SA:28:65,Europe/Paris,,OIF, +OIF:SP:28:71,1,"Donjon",48.526831,2.571504,0,0,OIF:SA:27:343,Europe/Paris,,OIF, +OIF:SP:28:72,1,"École",48.437235,2.567576,0,0,OIF:SA:28:72,Europe/Paris,,OIF, +OIF:SP:28:73,1,"École",48.437163,2.567305,0,0,OIF:SA:28:72,Europe/Paris,,OIF, +OIF:SP:28:74,1,"École",48.474772,2.507575,0,0,OIF:SA:28:74,Europe/Paris,,OIF, +OIF:SP:28:75,1,"École",48.474619,2.507832,0,0,OIF:SA:28:74,Europe/Paris,,OIF, +OIF:SP:28:82,1,"Pré l'Étang",48.530718,2.564849,0,0,OIF:SA:27:345,Europe/Paris,,OIF, +OIF:SP:28:83,1,"Pré l'Étang",48.530664,2.564957,0,0,OIF:SA:27:345,Europe/Paris,,OIF, +OIF:SP:28:84,1,"Place de l'Étape",48.40794,2.703763,0,0,OIF:SA:14:2150,Europe/Paris,,OIF, +OIF:SP:28:85,1,"Etrelles",48.494276,2.54386,0,0,OIF:SA:28:85,Europe/Paris,,OIF, +OIF:SP:28:86,1,"Faisanderie",48.566569,2.529466,0,0,OIF:SA:28:86,Europe/Paris,,OIF, +OIF:SP:28:87,1,"Fauvette",48.536665,2.532509,0,0,OIF:SA:28:87,Europe/Paris,,OIF, +OIF:SP:28:89,1,"Fercot",48.557279,2.531828,0,0,OIF:SA:28:89,Europe/Paris,,OIF, +OIF:SP:28:90,1,"Charles Pathé",48.721108,2.651405,0,0,OIF:SA:28:611,Europe/Paris,,OIF, +OIF:SP:28:91,1,"Ferté Allais",48.500435,2.562823,0,0,OIF:SA:28:91,Europe/Paris,,OIF, +OIF:SP:28:92,1,"Florélites",48.534768,2.526573,0,0,OIF:SA:28:92,Europe/Paris,,OIF, +OIF:SP:28:96,1,"Fontaine",48.658778,2.630947,0,0,OIF:SA:28:96,Europe/Paris,,OIF, +OIF:SP:28:97,1,"Fontaine",48.65885,2.630974,0,0,OIF:SA:28:96,Europe/Paris,,OIF, +OIF:SP:28:98,1,"Forges",48.440591,2.561172,0,0,OIF:SA:28:98,Europe/Paris,,OIF, +OIF:SP:28:99,1,"Forges",48.440438,2.561253,0,0,OIF:SA:28:98,Europe/Paris,,OIF, +OIF:SP:29:1,1,"Combs la Ville Gare RER",48.668034,2.548189,0,0,OIF:SA:8768214,Europe/Paris,,OIF, +OIF:SP:29:10,1,"Monument aux Morts",48.665402,2.561654,0,0,OIF:SA:29:10,Europe/Paris,,OIF, +OIF:SP:29:100,1,"Porte de Paris",48.635769,2.54498,0,0,OIF:SA:29:100,Europe/Paris,,OIF, +OIF:SP:29:105,1,"Carre - Trait d'Union",48.615355,2.544816,0,0,OIF:SA:29:105,Europe/Paris,,OIF, +OIF:SP:29:106,1,"Carre - Trait d'Union (les Canaux)",48.613357,2.545879,0,0,OIF:SA:29:105,Europe/Paris,,OIF, +OIF:SP:29:107,1,"Le Petit Prince",48.637257,2.552147,0,0,OIF:SA:29:107,Europe/Paris,,OIF, +OIF:SP:29:108,1,"Saule de la Chasse",48.637435,2.548296,0,0,OIF:SA:29:108,Europe/Paris,,OIF, +OIF:SP:29:109,1,"Iqbal Masih",48.634441,2.553722,0,0,OIF:SA:29:109,Europe/Paris,,OIF, +OIF:SP:29:11,1,"Hôtel de Ville",48.663983,2.565488,0,0,OIF:SA:13:60,Europe/Paris,,OIF, +OIF:SP:29:110,1,"Centre de Secours",48.627386,2.575972,0,0,OIF:SA:29:110,Europe/Paris,,OIF, +OIF:SP:29:111,1,"Centre de Secours",48.627422,2.575945,0,0,OIF:SA:29:110,Europe/Paris,,OIF, +OIF:SP:29:112,1,"Tilleuls",48.626308,2.580387,0,0,OIF:SA:29:112,Europe/Paris,,OIF, +OIF:SP:29:113,1,"Tilleuls",48.62593,2.580386,0,0,OIF:SA:29:112,Europe/Paris,,OIF, +OIF:SP:29:114,1,"Lugny",48.624256,2.58153,0,0,OIF:SA:29:114,Europe/Paris,,OIF, +OIF:SP:29:115,1,"Lugny",48.624229,2.581679,0,0,OIF:SA:29:114,Europe/Paris,,OIF, +OIF:SP:29:116,1,"Les Marronniers",48.621808,2.582997,0,0,OIF:SA:29:116,Europe/Paris,,OIF, +OIF:SP:29:117,1,"Les Marronniers",48.622177,2.582687,0,0,OIF:SA:29:116,Europe/Paris,,OIF, +OIF:SP:29:118,1,"La Ferme",48.621632,2.585531,0,0,OIF:SA:29:118,Europe/Paris,,OIF, +OIF:SP:29:119,1,"La Ferme",48.62164,2.585992,0,0,OIF:SA:29:118,Europe/Paris,,OIF, +OIF:SP:29:12,1,"Hôtel de Ville",48.664578,2.564663,0,0,OIF:SA:13:60,Europe/Paris,,OIF, +OIF:SP:29:120,1,"Le Lac",48.621857,2.589614,0,0,OIF:SA:29:120,Europe/Paris,,OIF, +OIF:SP:29:121,1,"Place de la Fontaine",48.622145,2.59333,0,0,OIF:SA:29:121,Europe/Paris,,OIF, +OIF:SP:29:124,1,"Changis",48.623419,2.602855,0,0,OIF:SA:29:124,Europe/Paris,,OIF, +OIF:SP:29:125,1,"Maulois",48.624651,2.602617,0,0,OIF:SA:29:125,Europe/Paris,,OIF, +OIF:SP:29:126,1,"Saint-Michel",48.625204,2.600505,0,0,OIF:SA:29:126,Europe/Paris,,OIF, +OIF:SP:29:127,1,"Noyer Perrot",48.623734,2.59864,0,0,OIF:SA:29:127,Europe/Paris,,OIF, +OIF:SP:29:128,1,"Noyer Perrot",48.623887,2.598627,0,0,OIF:SA:29:127,Europe/Paris,,OIF, +OIF:SP:29:129,1,"Gymnase",48.62462,2.596149,0,0,OIF:SA:29:129,Europe/Paris,,OIF, +OIF:SP:29:13,1,"Saint-Jacques",48.663042,2.568863,0,0,OIF:SA:13:275,Europe/Paris,,OIF, +OIF:SP:29:130,1,"Gymnase",48.624629,2.596095,0,0,OIF:SA:29:129,Europe/Paris,,OIF, +OIF:SP:29:137,1,"Cité du Parc",48.627411,2.585762,0,0,OIF:SA:29:137,Europe/Paris,,OIF, +OIF:SP:29:138,1,"Cité du Parc",48.627439,2.585152,0,0,OIF:SA:29:137,Europe/Paris,,OIF, +OIF:SP:29:139,1,"Moissy Centre",48.627384,2.589925,0,0,OIF:SA:29:139,Europe/Paris,,OIF, +OIF:SP:29:14,1,"Saint-Jacques",48.664506,2.56929,0,0,OIF:SA:13:275,Europe/Paris,,OIF, +OIF:SP:29:140,1,"Moissy Centre",48.62743,2.589505,0,0,OIF:SA:29:139,Europe/Paris,,OIF, +OIF:SP:29:141,1,"Moissy Mairie",48.627528,2.594103,0,0,OIF:SA:29:141,Europe/Paris,,OIF, +OIF:SP:29:142,1,"Moissy Mairie",48.627502,2.593709,0,0,OIF:SA:29:141,Europe/Paris,,OIF, +OIF:SP:29:143,1,"Gué de Ville",48.628313,2.60086,0,0,OIF:SA:29:143,Europe/Paris,,OIF, +OIF:SP:29:144,1,"Gué de Ville",48.628313,2.600982,0,0,OIF:SA:29:143,Europe/Paris,,OIF, +OIF:SP:29:145,1,"Les Grès",48.628189,2.604344,0,0,OIF:SA:29:145,Europe/Paris,,OIF, +OIF:SP:29:146,1,"Collège la Boétie",48.630076,2.59242,0,0,OIF:SA:29:146,Europe/Paris,,OIF, +OIF:SP:29:147,1,"Rouget de Lisle",48.630532,2.589371,0,0,OIF:SA:29:147,Europe/Paris,,OIF, +OIF:SP:29:148,1,"Condorcet",48.632462,2.586519,0,0,OIF:SA:29:148,Europe/Paris,,OIF, +OIF:SP:29:149,1,"Jeu de Paume",48.633202,2.589276,0,0,OIF:SA:29:149,Europe/Paris,,OIF, +OIF:SP:29:15,1,"Boissière",48.66272,2.572674,0,0,OIF:SA:29:15,Europe/Paris,,OIF, +OIF:SP:29:150,1,"La Constitution",48.63385,2.592873,0,0,OIF:SA:29:150,Europe/Paris,,OIF, +OIF:SP:29:151,1,"Parc Omnisports",48.631744,2.594218,0,0,OIF:SA:29:151,Europe/Paris,,OIF, +OIF:SP:29:152,1,"Naples",48.631469,2.584127,0,0,OIF:SA:29:152,Europe/Paris,,OIF, +OIF:SP:29:153,1,"Naples",48.631496,2.583924,0,0,OIF:SA:29:152,Europe/Paris,,OIF, +OIF:SP:29:154,1,"Busteni",48.631844,2.58101,0,0,OIF:SA:29:154,Europe/Paris,,OIF, +OIF:SP:29:155,1,"Busteni",48.63208,2.579641,0,0,OIF:SA:29:154,Europe/Paris,,OIF, +OIF:SP:29:156,1,"Florence",48.62897,2.583871,0,0,OIF:SA:29:156,Europe/Paris,,OIF, +OIF:SP:29:157,1,"Florence",48.629017,2.58318,0,0,OIF:SA:29:156,Europe/Paris,,OIF, +OIF:SP:29:158,1,"Europe",48.628985,2.580983,0,0,OIF:SA:29:158,Europe/Paris,,OIF, +OIF:SP:29:159,1,"Europe",48.629023,2.579912,0,0,OIF:SA:29:158,Europe/Paris,,OIF, +OIF:SP:29:160,1,"Lycée Mare Carre",48.627388,2.579647,0,0,OIF:SA:29:160,Europe/Paris,,OIF, +OIF:SP:29:161,1,"Lycée Mare Carre",48.6274,2.578291,0,0,OIF:SA:29:160,Europe/Paris,,OIF, +OIF:SP:29:162,1,"Château d'Eau B. Delessert",48.624108,2.565719,0,0,OIF:SA:29:162,Europe/Paris,,OIF, +OIF:SP:29:164,1,"Château d'Eau B. Pascal",48.621569,2.56785,0,0,OIF:SA:29:164,Europe/Paris,,OIF, +OIF:SP:29:167,1,"Centre Aéronautique",48.604831,2.65321,0,0,OIF:SA:29:167,Europe/Paris,,OIF, +OIF:SP:29:168,1,"SNECMA Montereau",48.613596,2.653249,0,0,OIF:SA:29:168,Europe/Paris,,OIF, +OIF:SP:29:169,1,"Réau Église",48.610428,2.622878,0,0,OIF:SA:29:169,Europe/Paris,,OIF, +OIF:SP:29:17,1,"Marrache",48.661879,2.579645,0,0,OIF:SA:29:17,Europe/Paris,,OIF, +OIF:SP:29:170,1,"Réau Église",48.610329,2.622986,0,0,OIF:SA:29:169,Europe/Paris,,OIF, +OIF:SP:29:171,1,"Savigny Nandy Gare RER",48.59578,2.58492,0,0,OIF:SA:8768218,Europe/Paris,,OIF, +OIF:SP:29:172,1,"Savigny Nandy Gare RER",48.595925,2.584365,0,0,OIF:SA:8768218,Europe/Paris,,OIF, +OIF:SP:29:173,1,"Savigny Nandy Gare RER",48.59597,2.584501,0,0,OIF:SA:8768218,Europe/Paris,,OIF, +OIF:SP:29:174,1,"Savigny Nandy Gare RER",48.595996,2.584596,0,0,OIF:SA:8768218,Europe/Paris,,OIF, +OIF:SP:29:175,1,"Savigny Nandy Gare RER",48.595996,2.584677,0,0,OIF:SA:8768218,Europe/Paris,,OIF, +OIF:SP:29:176,1,"Savigny Nandy Gare RER",48.596023,2.584745,0,0,OIF:SA:8768218,Europe/Paris,,OIF, +OIF:SP:29:177,1,"Savigny Nandy Gare RER",48.596041,2.584826,0,0,OIF:SA:8768218,Europe/Paris,,OIF, +OIF:SP:29:178,1,"Savigny Nandy Gare RER",48.595925,2.584365,0,0,OIF:SA:8768218,Europe/Paris,,OIF, +OIF:SP:29:179,1,"Savigny Nandy Gare RER",48.596059,2.584921,0,0,OIF:SA:8768218,Europe/Paris,,OIF, +OIF:SP:29:180,1,"Hôtel de Ville",48.595312,2.580635,0,0,OIF:SA:29:180,Europe/Paris,,OIF, +OIF:SP:29:182,1,"Hôtel de Ville",48.595286,2.580527,0,0,OIF:SA:29:180,Europe/Paris,,OIF, +OIF:SP:29:183,1,"Hôtel de Ville",48.595286,2.580527,0,0,OIF:SA:29:180,Europe/Paris,,OIF, +OIF:SP:29:184,1,"Lycée P. Mendès France",48.596779,2.575655,0,0,OIF:SA:29:184,Europe/Paris,,OIF, +OIF:SP:29:185,1,"Lycée P. Mendès France",48.596832,2.575899,0,0,OIF:SA:29:184,Europe/Paris,,OIF, +OIF:SP:29:19,1,"J. B. Clément",48.659912,2.5787,0,0,OIF:SA:29:19,Europe/Paris,,OIF, +OIF:SP:29:190,1,"Paul Verlaine",48.600665,2.57856,0,0,OIF:SA:29:190,Europe/Paris,,OIF, +OIF:SP:29:191,1,"Boileau",48.599073,2.578986,0,0,OIF:SA:29:191,Europe/Paris,,OIF, +OIF:SP:29:192,1,"Stade Nautique",48.595696,2.573211,0,0,OIF:SA:29:192,Europe/Paris,,OIF, +OIF:SP:29:193,1,"Stade Nautique",48.595579,2.573034,0,0,OIF:SA:29:192,Europe/Paris,,OIF, +OIF:SP:29:194,1,"Les Îles",48.595798,2.566882,0,0,OIF:SA:29:194,Europe/Paris,,OIF, +OIF:SP:29:195,1,"Les Îles",48.595601,2.566773,0,0,OIF:SA:29:194,Europe/Paris,,OIF, +OIF:SP:29:196,1,"Garonne",48.598046,2.56696,0,0,OIF:SA:29:196,Europe/Paris,,OIF, +OIF:SP:29:197,1,"Garonne",48.597695,2.566945,0,0,OIF:SA:29:196,Europe/Paris,,OIF, +OIF:SP:29:198,1,"Chanteraine",48.5997,2.566696,0,0,OIF:SA:29:198,Europe/Paris,,OIF, +OIF:SP:29:199,1,"Chanteraine",48.600132,2.566712,0,0,OIF:SA:29:198,Europe/Paris,,OIF, +OIF:SP:29:2,1,"Combs la Ville Gare RER",48.668133,2.548122,0,0,OIF:SA:8768214,Europe/Paris,,OIF, +OIF:SP:29:20,1,"J. B. Clément",48.659831,2.579038,0,0,OIF:SA:29:19,Europe/Paris,,OIF, +OIF:SP:29:200,1,"Miroir d'Eau",48.603293,2.568122,0,0,OIF:SA:29:200,Europe/Paris,,OIF, +OIF:SP:29:2000,1,"Lieusaint Moissy Gare RER",48.628411,2.568605,0,0,OIF:SA:8768215,Europe/Paris,,OIF, +OIF:SP:29:2001,1,"Lieusaint Moissy Gare RER",48.628456,2.56877,0,0,OIF:SA:8768215,Europe/Paris,,OIF, +OIF:SP:29:2002,1,"Université",48.627313,2.561925,0,0,OIF:SA:29:2002,Europe/Paris,,OIF, +OIF:SP:29:2003,1,"Université",48.627194,2.561924,0,0,OIF:SA:29:2002,Europe/Paris,,OIF, +OIF:SP:29:2004,1,"Château de la Barrière",48.627387,2.556115,0,0,OIF:SA:29:2004,Europe/Paris,,OIF, +OIF:SP:29:2005,1,"Château de la Barrière",48.627296,2.556197,0,0,OIF:SA:29:2004,Europe/Paris,,OIF, +OIF:SP:29:2006,1,"Carre - Canal",48.618452,2.542633,0,0,OIF:SA:29:2006,Europe/Paris,,OIF, +OIF:SP:29:2007,1,"Carre - Canal",48.618479,2.542743,0,0,OIF:SA:29:2006,Europe/Paris,,OIF, +OIF:SP:29:2008,1,"Carre Trait d'Union",48.615234,2.544661,0,0,OIF:SA:27:440,Europe/Paris,,OIF, +OIF:SP:29:2009,1,"Carre Trait d'Union",48.615278,2.544807,0,0,OIF:SA:27:440,Europe/Paris,,OIF, +OIF:SP:29:201,1,"Miroir d'Eau",48.603239,2.568203,0,0,OIF:SA:29:200,Europe/Paris,,OIF, +OIF:SP:29:2010,1,"Carre des Arts",48.613821,2.53878,0,0,OIF:SA:29:2010,Europe/Paris,,OIF, +OIF:SP:29:2011,1,"Carre des Arts",48.613725,2.538381,0,0,OIF:SA:29:2010,Europe/Paris,,OIF, +OIF:SP:29:2012,1,"Carre Allée Royal",48.614672,2.532908,0,0,OIF:SA:29:2012,Europe/Paris,,OIF, +OIF:SP:29:2013,1,"Carre Allée Royal",48.614419,2.533021,0,0,OIF:SA:29:2012,Europe/Paris,,OIF, +OIF:SP:29:2014,1,"La Clef de Saint-Pierre",48.614441,2.516323,0,0,OIF:SA:29:2014,Europe/Paris,,OIF, +OIF:SP:29:2015,1,"La Clef de Saint-Pierre",48.614102,2.516102,0,0,OIF:SA:29:2014,Europe/Paris,,OIF, +OIF:SP:29:2016,1,"Le Fresne",48.615851,2.509153,0,0,OIF:SA:29:2016,Europe/Paris,,OIF, +OIF:SP:29:2017,1,"Le Fresne",48.615734,2.509166,0,0,OIF:SA:29:2016,Europe/Paris,,OIF, +OIF:SP:29:2018,1,"La Tour Maury",48.619253,2.510502,0,0,OIF:SA:29:2018,Europe/Paris,,OIF, +OIF:SP:29:2019,1,"La Tour Maury",48.619389,2.510298,0,0,OIF:SA:29:2018,Europe/Paris,,OIF, +OIF:SP:29:202,1,"La Grange",48.605941,2.565233,0,0,OIF:SA:29:202,Europe/Paris,,OIF, +OIF:SP:29:2020,1,"Les Pres Hauts",48.624337,2.51449,0,0,OIF:SA:29:2020,Europe/Paris,,OIF, +OIF:SP:29:2021,1,"Les Pres Hauts",48.624389,2.514316,0,0,OIF:SA:29:2020,Europe/Paris,,OIF, +OIF:SP:29:2022,1,"Pointe Ringale",48.629189,2.492449,0,0,OIF:SA:29:2022,Europe/Paris,,OIF, +OIF:SP:29:2023,1,"Pointe Ringale",48.62897,2.492543,0,0,OIF:SA:29:2022,Europe/Paris,,OIF, +OIF:SP:29:2024,1,"Gustave Courbet",48.615429,2.469715,0,0,OIF:SA:29:2024,Europe/Paris,,OIF, +OIF:SP:29:2025,1,"Gustave Courbet",48.61556,2.469976,0,0,OIF:SA:29:2024,Europe/Paris,,OIF, +OIF:SP:29:2026,1,"Corbeil Essonnes Gare RER",48.613339,2.471463,0,0,OIF:SA:8768100,Europe/Paris,,OIF, +OIF:SP:29:2027,1,"Corbeil Essonnes Gare RER",48.613609,2.471211,0,0,OIF:SA:8768100,Europe/Paris,,OIF, +OIF:SP:29:203,1,"La Grange",48.605663,2.565313,0,0,OIF:SA:29:202,Europe/Paris,,OIF, +OIF:SP:29:204,1,"Les Ormes",48.606596,2.561291,0,0,OIF:SA:29:204,Europe/Paris,,OIF, +OIF:SP:29:205,1,"Les Ormes",48.606524,2.561304,0,0,OIF:SA:29:204,Europe/Paris,,OIF, +OIF:SP:29:206,1,"Foret de France",48.605026,2.554927,0,0,OIF:SA:29:206,Europe/Paris,,OIF, +OIF:SP:29:207,1,"Foret de France",48.604866,2.553978,0,0,OIF:SA:29:206,Europe/Paris,,OIF, +OIF:SP:29:208,1,"Aubépine",48.604588,2.548636,0,0,OIF:SA:29:208,Europe/Paris,,OIF, +OIF:SP:29:209,1,"Aubépine",48.604633,2.548487,0,0,OIF:SA:29:208,Europe/Paris,,OIF, +OIF:SP:29:21,1,"Serpentine",48.658383,2.579425,0,0,OIF:SA:29:21,Europe/Paris,,OIF, +OIF:SP:29:210,1,"La Chesnaie",48.603298,2.546219,0,0,OIF:SA:29:210,Europe/Paris,,OIF, +OIF:SP:29:211,1,"La Chesnaie",48.603262,2.546042,0,0,OIF:SA:29:210,Europe/Paris,,OIF, +OIF:SP:29:212,1,"Réveil Matin",48.601312,2.54598,0,0,OIF:SA:29:212,Europe/Paris,,OIF, +OIF:SP:29:213,1,"Réveil Matin",48.601429,2.54575,0,0,OIF:SA:29:212,Europe/Paris,,OIF, +OIF:SP:29:214,1,"Collège H. Wallon",48.600729,2.555045,0,0,OIF:SA:29:214,Europe/Paris,,OIF, +OIF:SP:29:215,1,"Collège H. Wallon",48.60071,2.555397,0,0,OIF:SA:29:214,Europe/Paris,,OIF, +OIF:SP:29:216,1,"Les Régalles",48.602917,2.557833,0,0,OIF:SA:29:216,Europe/Paris,,OIF, +OIF:SP:29:217,1,"Les Régalles",48.60289,2.557955,0,0,OIF:SA:29:216,Europe/Paris,,OIF, +OIF:SP:29:218,1,"Nicolas Guiard",48.600986,2.561877,0,0,OIF:SA:27:442,Europe/Paris,,OIF, +OIF:SP:29:219,1,"Nicolas Guiard",48.601112,2.561606,0,0,OIF:SA:27:442,Europe/Paris,,OIF, +OIF:SP:29:22,1,"Serpentine",48.658626,2.579291,0,0,OIF:SA:29:21,Europe/Paris,,OIF, +OIF:SP:29:220,1,"Jean Moulin",48.588958,2.580253,0,0,OIF:SA:29:220,Europe/Paris,,OIF, +OIF:SP:29:221,1,"Résistance",48.588668,2.581065,0,0,OIF:SA:29:221,Europe/Paris,,OIF, +OIF:SP:29:222,1,"Jean Moulin",48.589011,2.580484,0,0,OIF:SA:29:220,Europe/Paris,,OIF, +OIF:SP:29:223,1,"Résistance",48.58865,2.581133,0,0,OIF:SA:29:221,Europe/Paris,,OIF, +OIF:SP:29:224,1,"Le Clocher",48.58562,2.581579,0,0,OIF:SA:29:224,Europe/Paris,,OIF, +OIF:SP:29:225,1,"Le Clocher",48.586132,2.5815,0,0,OIF:SA:29:224,Europe/Paris,,OIF, +OIF:SP:29:226,1,"Collège la Grange du Bois",48.585403,2.581944,0,0,OIF:SA:29:226,Europe/Paris,,OIF, +OIF:SP:29:227,1,"Collège la Grange du Bois",48.58551,2.5825,0,0,OIF:SA:29:226,Europe/Paris,,OIF, +OIF:SP:29:228,1,"Victor Schoelcher",48.586197,2.584807,0,0,OIF:SA:29:228,Europe/Paris,,OIF, +OIF:SP:29:229,1,"Victor Schoelcher",48.586627,2.585622,0,0,OIF:SA:29:228,Europe/Paris,,OIF, +OIF:SP:29:23,1,"Folle Avoine",48.656386,2.579959,0,0,OIF:SA:29:23,Europe/Paris,,OIF, +OIF:SP:29:230,1,"Droits de l'Homme",48.587499,2.585572,0,0,OIF:SA:29:230,Europe/Paris,,OIF, +OIF:SP:29:231,1,"Droits de l'Homme",48.587788,2.58499,0,0,OIF:SA:29:230,Europe/Paris,,OIF, +OIF:SP:29:232,1,"René Cassin",48.589894,2.584079,0,0,OIF:SA:29:232,Europe/Paris,,OIF, +OIF:SP:29:233,1,"René Cassin",48.590002,2.58389,0,0,OIF:SA:29:232,Europe/Paris,,OIF, +OIF:SP:29:234,1,"Jules Vallès",48.593979,2.582079,0,0,OIF:SA:29:234,Europe/Paris,,OIF, +OIF:SP:29:235,1,"Jules Vallès",48.593807,2.582647,0,0,OIF:SA:29:234,Europe/Paris,,OIF, +OIF:SP:29:236,1,"Villebouvet M.D.P.H.",48.594965,2.587816,0,0,OIF:SA:29:236,Europe/Paris,,OIF, +OIF:SP:29:237,1,"Villebouvet M.D.P.H.",48.595046,2.587532,0,0,OIF:SA:29:236,Europe/Paris,,OIF, +OIF:SP:29:24,1,"Folle Avoine",48.656773,2.579798,0,0,OIF:SA:29:23,Europe/Paris,,OIF, +OIF:SP:29:241,1,"Z.I Savigny Routoires",48.58975,2.592371,0,0,OIF:SA:29:241,Europe/Paris,,OIF, +OIF:SP:29:245,1,"Boissénart - la Haie",48.586322,2.59398,0,0,OIF:SA:27:444,Europe/Paris,,OIF, +OIF:SP:29:246,1,"Boissénart - la Haie",48.586268,2.594075,0,0,OIF:SA:27:444,Europe/Paris,,OIF, +OIF:SP:29:248,1,"Boissénart C. Commercial",48.586091,2.596526,0,0,OIF:SA:29:248,Europe/Paris,,OIF, +OIF:SP:29:249,1,"Savigny Cimetière",48.578288,2.584119,0,0,OIF:SA:29:249,Europe/Paris,,OIF, +OIF:SP:29:25,1,"Collège Cités Unies",48.654728,2.57759,0,0,OIF:SA:29:25,Europe/Paris,,OIF, +OIF:SP:29:250,1,"Savigny Cimetière",48.57836,2.584146,0,0,OIF:SA:29:249,Europe/Paris,,OIF, +OIF:SP:29:251,1,"Place de l'Église",48.575665,2.58351,0,0,OIF:SA:29:251,Europe/Paris,,OIF, +OIF:SP:29:252,1,"Sidonie Talabot",48.574778,2.586351,0,0,OIF:SA:29:252,Europe/Paris,,OIF, +OIF:SP:29:253,1,"Sidonie Talabot",48.574741,2.586648,0,0,OIF:SA:29:252,Europe/Paris,,OIF, +OIF:SP:29:254,1,"Fontaine Ronde",48.57328,2.588836,0,0,OIF:SA:29:254,Europe/Paris,,OIF, +OIF:SP:29:255,1,"Fontaine Ronde",48.573334,2.588836,0,0,OIF:SA:29:254,Europe/Paris,,OIF, +OIF:SP:29:256,1,"Champlatreux",48.57098,2.588351,0,0,OIF:SA:29:256,Europe/Paris,,OIF, +OIF:SP:29:257,1,"Champlatreux",48.57107,2.588432,0,0,OIF:SA:29:256,Europe/Paris,,OIF, +OIF:SP:29:258,1,"Écomusée",48.57455,2.58341,0,0,OIF:SA:29:258,Europe/Paris,,OIF, +OIF:SP:29:259,1,"Noisement",48.567424,2.564102,0,0,OIF:SA:29:259,Europe/Paris,,OIF, +OIF:SP:29:26,1,"Collège Cités Unies",48.654336,2.575879,0,0,OIF:SA:29:25,Europe/Paris,,OIF, +OIF:SP:29:260,1,"Médiathèque",48.581194,2.583089,0,0,OIF:SA:29:260,Europe/Paris,,OIF, +OIF:SP:29:261,1,"Médiathèque",48.581752,2.582712,0,0,OIF:SA:29:260,Europe/Paris,,OIF, +OIF:SP:29:262,1,"Tournesol",48.5886,2.57513,0,0,OIF:SA:29:262,Europe/Paris,,OIF, +OIF:SP:29:263,1,"Tournesol",48.588508,2.575983,0,0,OIF:SA:29:262,Europe/Paris,,OIF, +OIF:SP:29:264,1,"Les Églantiers",48.587553,2.572618,0,0,OIF:SA:29:264,Europe/Paris,,OIF, +OIF:SP:29:265,1,"Les Églantiers",48.587553,2.572645,0,0,OIF:SA:29:264,Europe/Paris,,OIF, +OIF:SP:29:266,1,"Turquoises",48.583177,2.575958,0,0,OIF:SA:29:266,Europe/Paris,,OIF, +OIF:SP:29:267,1,"Sablons",48.583812,2.572994,0,0,OIF:SA:29:267,Europe/Paris,,OIF, +OIF:SP:29:268,1,"Faisanderie",48.585021,2.570832,0,0,OIF:SA:29:268,Europe/Paris,,OIF, +OIF:SP:29:269,1,"Collège R. Buron",48.587882,2.569869,0,0,OIF:SA:29:269,Europe/Paris,,OIF, +OIF:SP:29:27,1,"Orée du Bois",48.65372,2.573746,0,0,OIF:SA:29:27,Europe/Paris,,OIF, +OIF:SP:29:270,1,"Collège R. Buron",48.587883,2.569408,0,0,OIF:SA:29:269,Europe/Paris,,OIF, +OIF:SP:29:271,1,"Pivoines",48.58751,2.567062,0,0,OIF:SA:29:271,Europe/Paris,,OIF, +OIF:SP:29:272,1,"Pivoines",48.587877,2.567701,0,0,OIF:SA:29:271,Europe/Paris,,OIF, +OIF:SP:29:273,1,"Villemur",48.585751,2.565551,0,0,OIF:SA:29:273,Europe/Paris,,OIF, +OIF:SP:29:274,1,"Villemur",48.585624,2.565821,0,0,OIF:SA:29:273,Europe/Paris,,OIF, +OIF:SP:29:275,1,"Vénerie",48.585083,2.562079,0,0,OIF:SA:29:275,Europe/Paris,,OIF, +OIF:SP:29:276,1,"Vénerie",48.585056,2.562038,0,0,OIF:SA:29:275,Europe/Paris,,OIF, +OIF:SP:29:277,1,"Nandy Mairie",48.581295,2.563797,0,0,OIF:SA:29:277,Europe/Paris,,OIF, +OIF:SP:29:278,1,"Résidence des Tilleuls",48.578795,2.564694,0,0,OIF:SA:29:278,Europe/Paris,,OIF, +OIF:SP:29:279,1,"Pavillon Royal",48.580279,2.559213,0,0,OIF:SA:29:279,Europe/Paris,,OIF, +OIF:SP:29:28,1,"Orée du Bois",48.653506,2.572768,0,0,OIF:SA:29:27,Europe/Paris,,OIF, +OIF:SP:29:280,1,"Pavillon Royal",48.58001,2.558995,0,0,OIF:SA:29:279,Europe/Paris,,OIF, +OIF:SP:29:281,1,"Champignons",48.583053,2.556868,0,0,OIF:SA:29:281,Europe/Paris,,OIF, +OIF:SP:29:282,1,"Champignons",48.583178,2.556963,0,0,OIF:SA:29:281,Europe/Paris,,OIF, +OIF:SP:29:283,1,"Clairière",48.584243,2.559393,0,0,OIF:SA:29:283,Europe/Paris,,OIF, +OIF:SP:29:284,1,"Clairière",48.584541,2.55892,0,0,OIF:SA:29:283,Europe/Paris,,OIF, +OIF:SP:29:285,1,"Rue de Quiers",48.567039,2.606048,0,0,OIF:SA:29:285,Europe/Paris,,OIF, +OIF:SP:29:286,1,"Rue de Quiers",48.567084,2.606197,0,0,OIF:SA:29:285,Europe/Paris,,OIF, +OIF:SP:29:287,1,"Gros Caillou",48.566986,2.601768,0,0,OIF:SA:29:287,Europe/Paris,,OIF, +OIF:SP:29:288,1,"Gros Caillou",48.566885,2.602661,0,0,OIF:SA:29:287,Europe/Paris,,OIF, +OIF:SP:29:289,1,"Cesson Gare RER",48.564864,2.593888,0,0,OIF:SA:8768216,Europe/Paris,,OIF, +OIF:SP:29:290,1,"Cesson Gare RER",48.565143,2.593781,0,0,OIF:SA:8768216,Europe/Paris,,OIF, +OIF:SP:29:291,1,"Cesson Gare RER",48.564864,2.593888,0,0,OIF:SA:8768216,Europe/Paris,,OIF, +OIF:SP:29:292,1,"Cesson Gare RER",48.565008,2.593983,0,0,OIF:SA:8768216,Europe/Paris,,OIF, +OIF:SP:29:293,1,"Cesson Gare RER",48.565044,2.593726,0,0,OIF:SA:8768216,Europe/Paris,,OIF, +OIF:SP:29:294,1,"Cesson Gare RER",48.56517,2.59374,0,0,OIF:SA:8768216,Europe/Paris,,OIF, +OIF:SP:29:295,1,"Cesson Gare RER",48.564837,2.593901,0,0,OIF:SA:8768216,Europe/Paris,,OIF, +OIF:SP:29:296,1,"Cesson Mairie",48.56301,2.602926,0,0,OIF:SA:29:296,Europe/Paris,,OIF, +OIF:SP:29:297,1,"Cesson Mairie",48.563246,2.602155,0,0,OIF:SA:29:296,Europe/Paris,,OIF, +OIF:SP:29:298,1,"Route de Saint-Leu",48.56256,2.603086,0,0,OIF:SA:29:298,Europe/Paris,,OIF, +OIF:SP:29:299,1,"Route de Saint-Leu",48.562614,2.603154,0,0,OIF:SA:29:298,Europe/Paris,,OIF, +OIF:SP:29:3,1,"Combs la Ville Gare RER",48.668142,2.548136,0,0,OIF:SA:8768214,Europe/Paris,,OIF, +OIF:SP:29:30,1,"Route de Moissy",48.653377,2.570095,0,0,OIF:SA:29:30,Europe/Paris,,OIF, +OIF:SP:29:300,1,"Collège Grand Parc",48.559153,2.594916,0,0,OIF:SA:27:374,Europe/Paris,,OIF, +OIF:SP:29:301,1,"Collège Grand Parc",48.559144,2.594929,0,0,OIF:SA:27:374,Europe/Paris,,OIF, +OIF:SP:29:302,1,"Les Néfliers",48.556656,2.598397,0,0,OIF:SA:29:302,Europe/Paris,,OIF, +OIF:SP:29:303,1,"Jasmin",48.552027,2.598063,0,0,OIF:SA:29:303,Europe/Paris,,OIF, +OIF:SP:29:304,1,"Aubépine",48.548522,2.597409,0,0,OIF:SA:29:304,Europe/Paris,,OIF, +OIF:SP:29:305,1,"Bergeronnettes",48.548449,2.594078,0,0,OIF:SA:29:305,Europe/Paris,,OIF, +OIF:SP:29:306,1,"Les Petits Bois",48.551233,2.594985,0,0,OIF:SA:29:306,Europe/Paris,,OIF, +OIF:SP:29:307,1,"Les Chênes",48.555049,2.593216,0,0,OIF:SA:29:307,Europe/Paris,,OIF, +OIF:SP:29:308,1,"Bréviande",48.561896,2.610369,0,0,OIF:SA:29:308,Europe/Paris,,OIF, +OIF:SP:29:309,1,"Bréviande",48.561996,2.610234,0,0,OIF:SA:29:308,Europe/Paris,,OIF, +OIF:SP:29:31,1,"Route de Moissy",48.653469,2.568915,0,0,OIF:SA:29:30,Europe/Paris,,OIF, +OIF:SP:29:310,1,"La Futaie",48.558367,2.612598,0,0,OIF:SA:29:310,Europe/Paris,,OIF, +OIF:SP:29:311,1,"La Futaie",48.558269,2.612259,0,0,OIF:SA:29:310,Europe/Paris,,OIF, +OIF:SP:29:312,1,"Les Roches",48.563247,2.61322,0,0,OIF:SA:29:312,Europe/Paris,,OIF, +OIF:SP:29:313,1,"Les Roches",48.562996,2.613137,0,0,OIF:SA:29:312,Europe/Paris,,OIF, +OIF:SP:29:314,1,"Vert Saint-Denis Église",48.56517,2.613664,0,0,OIF:SA:29:314,Europe/Paris,,OIF, +OIF:SP:29:315,1,"Vert Saint-Denis Église",48.565134,2.613528,0,0,OIF:SA:29:314,Europe/Paris,,OIF, +OIF:SP:29:316,1,"Croix Saint-Pierre",48.566208,2.619683,0,0,OIF:SA:29:316,Europe/Paris,,OIF, +OIF:SP:29:317,1,"Croix Saint-Pierre",48.566234,2.619724,0,0,OIF:SA:29:316,Europe/Paris,,OIF, +OIF:SP:29:318,1,"Arenas de San Pedro",48.565529,2.621548,0,0,OIF:SA:29:318,Europe/Paris,,OIF, +OIF:SP:29:319,1,"Arenas de San Pedro",48.565565,2.621535,0,0,OIF:SA:29:318,Europe/Paris,,OIF, +OIF:SP:29:32,1,"Lycée J. Prévert",48.655366,2.564148,0,0,OIF:SA:13:171,Europe/Paris,,OIF, +OIF:SP:29:320,1,"Vallée de Bailly",48.563067,2.62098,0,0,OIF:SA:29:320,Europe/Paris,,OIF, +OIF:SP:29:321,1,"Vallée de Bailly",48.563293,2.620534,0,0,OIF:SA:29:320,Europe/Paris,,OIF, +OIF:SP:29:322,1,"Bois Vert",48.563105,2.623756,0,0,OIF:SA:29:322,Europe/Paris,,OIF, +OIF:SP:29:323,1,"Bois Vert",48.563097,2.623512,0,0,OIF:SA:29:322,Europe/Paris,,OIF, +OIF:SP:29:324,1,"Anjou",48.564133,2.626308,0,0,OIF:SA:29:324,Europe/Paris,,OIF, +OIF:SP:29:325,1,"Anjou",48.564241,2.626282,0,0,OIF:SA:29:324,Europe/Paris,,OIF, +OIF:SP:29:326,1,"Jean Monnet Épinet",48.567025,2.6312,0,0,OIF:SA:29:326,Europe/Paris,,OIF, +OIF:SP:29:327,1,"Jean Monnet Épinet",48.566745,2.631348,0,0,OIF:SA:29:326,Europe/Paris,,OIF, +OIF:SP:29:33,1,"Lycée J. Prévert",48.65551,2.564026,0,0,OIF:SA:13:171,Europe/Paris,,OIF, +OIF:SP:29:331,1,"Jean Rostand",48.568976,2.619684,0,0,OIF:SA:27:447,Europe/Paris,,OIF, +OIF:SP:29:332,1,"Jean Rostand",48.568239,2.619789,0,0,OIF:SA:27:447,Europe/Paris,,OIF, +OIF:SP:29:333,1,"Pouilly le Fort Place",48.584018,2.629806,0,0,OIF:SA:29:333,Europe/Paris,,OIF, +OIF:SP:29:334,1,"Pouilly le Fort Place",48.584449,2.629876,0,0,OIF:SA:29:333,Europe/Paris,,OIF, +OIF:SP:29:335,1,"Hautes Billes",48.571196,2.620076,0,0,OIF:SA:29:335,Europe/Paris,,OIF, +OIF:SP:29:336,1,"Hautes Billes",48.571564,2.620403,0,0,OIF:SA:29:335,Europe/Paris,,OIF, +OIF:SP:29:337,1,"Butte aux Fèves",48.56961,2.617873,0,0,OIF:SA:29:337,Europe/Paris,,OIF, +OIF:SP:29:338,1,"Butte aux Fèves",48.569682,2.617968,0,0,OIF:SA:29:337,Europe/Paris,,OIF, +OIF:SP:29:339,1,"Les Haies Fleuries",48.568971,2.614266,0,0,OIF:SA:29:339,Europe/Paris,,OIF, +OIF:SP:29:34,1,"Pablo Picasso",48.657633,2.562964,0,0,OIF:SA:13:414,Europe/Paris,,OIF, +OIF:SP:29:340,1,"Les Haies Fleuries",48.568981,2.613806,0,0,OIF:SA:29:339,Europe/Paris,,OIF, +OIF:SP:29:341,1,"Collège J. Vilard",48.568483,2.611541,0,0,OIF:SA:29:341,Europe/Paris,,OIF, +OIF:SP:29:342,1,"Collège J. Vilard",48.568108,2.610605,0,0,OIF:SA:29:341,Europe/Paris,,OIF, +OIF:SP:29:343,1,"Lycée S. Delaunay",48.569162,2.609527,0,0,OIF:SA:29:343,Europe/Paris,,OIF, +OIF:SP:29:344,1,"Clos Guinault",48.615967,2.504961,0,0,OIF:SA:29:344,Europe/Paris,,OIF, +OIF:SP:29:345,1,"Clos Guinault",48.616014,2.50347,0,0,OIF:SA:29:344,Europe/Paris,,OIF, +OIF:SP:29:346,1,"Suzanne Lenglen",48.610858,2.506706,0,0,OIF:SA:29:346,Europe/Paris,,OIF, +OIF:SP:29:347,1,"Suzanne Lenglen",48.610921,2.506707,0,0,OIF:SA:29:346,Europe/Paris,,OIF, +OIF:SP:29:348,1,"G. S. Manuréva",48.609104,2.507378,0,0,OIF:SA:29:348,Europe/Paris,,OIF, +OIF:SP:29:349,1,"Collège C. Claudel",48.613898,2.505767,0,0,OIF:SA:29:349,Europe/Paris,,OIF, +OIF:SP:29:35,1,"Pablo Picasso",48.658118,2.563264,0,0,OIF:SA:13:414,Europe/Paris,,OIF, +OIF:SP:29:350,1,"Château",48.613211,2.501752,0,0,OIF:SA:29:350,Europe/Paris,,OIF, +OIF:SP:29:351,1,"Château",48.613095,2.501318,0,0,OIF:SA:29:350,Europe/Paris,,OIF, +OIF:SP:29:352,1,"Simone Signoret",48.613262,2.49793,0,0,OIF:SA:29:352,Europe/Paris,,OIF, +OIF:SP:29:353,1,"Simone Signoret",48.613128,2.497156,0,0,OIF:SA:29:352,Europe/Paris,,OIF, +OIF:SP:29:354,1,"Saint-Pierre Mairie",48.613042,2.494282,0,0,OIF:SA:29:354,Europe/Paris,,OIF, +OIF:SP:29:355,1,"Saint-Pierre Mairie",48.612916,2.494268,0,0,OIF:SA:29:354,Europe/Paris,,OIF, +OIF:SP:29:356,1,"Rue Hertz",48.615311,2.491754,0,0,OIF:SA:29:356,Europe/Paris,,OIF, +OIF:SP:29:357,1,"Rue Hertz",48.615158,2.491876,0,0,OIF:SA:29:356,Europe/Paris,,OIF, +OIF:SP:29:358,1,"Général de Gaulle",48.617207,2.498877,0,0,OIF:SA:29:358,Europe/Paris,,OIF, +OIF:SP:29:359,1,"Général de Gaulle",48.617413,2.49881,0,0,OIF:SA:29:358,Europe/Paris,,OIF, +OIF:SP:29:36,1,"La Coupole",48.659957,2.564955,0,0,OIF:SA:29:36,Europe/Paris,,OIF, +OIF:SP:29:360,1,"Mare à Tissier",48.628841,2.516163,0,0,OIF:SA:29:360,Europe/Paris,,OIF, +OIF:SP:29:361,1,"Mare à Tissier",48.628454,2.51646,0,0,OIF:SA:29:360,Europe/Paris,,OIF, +OIF:SP:29:362,1,"Les Pres Hauts",48.624133,2.514221,0,0,OIF:SA:29:2020,Europe/Paris,,OIF, +OIF:SP:29:363,1,"Les Pres Hauts",48.624968,2.51482,0,0,OIF:SA:29:2020,Europe/Paris,,OIF, +OIF:SP:29:364,1,"La Tour Maury",48.619069,2.510231,0,0,OIF:SA:29:2018,Europe/Paris,,OIF, +OIF:SP:29:365,1,"Tour Maury",48.618396,2.509646,0,0,OIF:SA:29:2018,Europe/Paris,,OIF, +OIF:SP:29:366,1,"Le Fresne",48.615808,2.509285,0,0,OIF:SA:29:2016,Europe/Paris,,OIF, +OIF:SP:29:367,1,"Le Fresne",48.615818,2.508038,0,0,OIF:SA:29:2016,Europe/Paris,,OIF, +OIF:SP:29:368,1,"Mairie les Ombrages",48.639846,2.508063,0,0,OIF:SA:29:368,Europe/Paris,,OIF, +OIF:SP:29:369,1,"Mairie Plessis",48.639548,2.509025,0,0,OIF:SA:29:368,Europe/Paris,,OIF, +OIF:SP:29:37,1,"La Coupole",48.659912,2.565402,0,0,OIF:SA:29:36,Europe/Paris,,OIF, +OIF:SP:29:370,1,"Les Vignes",48.641129,2.503428,0,0,OIF:SA:29:370,Europe/Paris,,OIF, +OIF:SP:29:371,1,"Les Vignes",48.641237,2.503388,0,0,OIF:SA:29:370,Europe/Paris,,OIF, +OIF:SP:29:372,1,"Le Clos",48.643347,2.504941,0,0,OIF:SA:29:372,Europe/Paris,,OIF, +OIF:SP:29:373,1,"Le Clos",48.643437,2.505185,0,0,OIF:SA:29:372,Europe/Paris,,OIF, +OIF:SP:29:374,1,"Petit Sénart",48.654034,2.511718,0,0,OIF:SA:29:374,Europe/Paris,,OIF, +OIF:SP:29:375,1,"Justice",48.642255,2.50807,0,0,OIF:SA:29:375,Europe/Paris,,OIF, +OIF:SP:29:376,1,"Clos du Roi",48.641773,2.540256,0,0,OIF:SA:29:376,Europe/Paris,,OIF, +OIF:SP:29:377,1,"Clos du Roi",48.641926,2.540203,0,0,OIF:SA:29:376,Europe/Paris,,OIF, +OIF:SP:29:378,1,"ZAE Robert Schuman",48.643073,2.541848,0,0,OIF:SA:29:378,Europe/Paris,,OIF, +OIF:SP:29:379,1,"ZAE Robert Schuman",48.643028,2.542174,0,0,OIF:SA:29:378,Europe/Paris,,OIF, +OIF:SP:29:38,1,"Place de la Libération",48.659331,2.568371,0,0,OIF:SA:29:38,Europe/Paris,,OIF, +OIF:SP:29:380,1,"Rochefort",48.617902,2.489742,0,0,OIF:SA:29:380,Europe/Paris,,OIF, +OIF:SP:29:381,1,"Rochefort",48.617641,2.489781,0,0,OIF:SA:29:380,Europe/Paris,,OIF, +OIF:SP:29:382,1,"Centre Commercial",48.61949,2.491916,0,0,OIF:SA:29:382,Europe/Paris,,OIF, +OIF:SP:29:383,1,"Centre Commercial",48.619508,2.492458,0,0,OIF:SA:29:382,Europe/Paris,,OIF, +OIF:SP:29:384,1,"Champ Clair",48.617766,2.497144,0,0,OIF:SA:29:384,Europe/Paris,,OIF, +OIF:SP:29:385,1,"Champ Clair",48.618461,2.4956,0,0,OIF:SA:29:384,Europe/Paris,,OIF, +OIF:SP:29:386,1,"Collège Voisenon",48.567808,2.661626,0,0,OIF:SA:29:386,Europe/Paris,,OIF, +OIF:SP:29:387,1,"Lycée G. Sand",48.549364,2.636584,0,0,OIF:SA:27:146,Europe/Paris,,OIF, +OIF:SP:29:39,1,"Place de la Libération",48.659439,2.568005,0,0,OIF:SA:29:38,Europe/Paris,,OIF, +OIF:SP:29:390,1,"Justice",48.642243,2.50815,0,0,OIF:SA:29:375,Europe/Paris,,OIF, +OIF:SP:29:392,1,"Plein Ciel",48.548427,2.644418,0,0,OIF:SA:27:234,Europe/Paris,,OIF, +OIF:SP:29:393,1,"Plein Ciel",48.548526,2.644514,0,0,OIF:SA:27:234,Europe/Paris,,OIF, +OIF:SP:29:395,1,"Despatys",48.543114,2.658277,0,0,OIF:SA:29:395,Europe/Paris,,OIF, +OIF:SP:29:396,1,"Place Praslin",48.536865,2.65851,0,0,OIF:SA:28:220,Europe/Paris,,OIF, +OIF:SP:29:397,1,"Gambetta",48.537532,2.661045,0,0,OIF:SA:27:129,Europe/Paris,,OIF, +OIF:SP:29:398,1,"Centre Culturel",48.542182,2.660411,0,0,OIF:SA:27:94,Europe/Paris,,OIF, +OIF:SP:29:399,1,"Centre Culturel",48.54273,2.660604,0,0,OIF:SA:27:94,Europe/Paris,,OIF, +OIF:SP:29:4,1,"Combs la Ville Gare RER",48.667863,2.548243,0,0,OIF:SA:8768214,Europe/Paris,,OIF, +OIF:SP:29:40,1,"Tour d'Aleron",48.659916,2.572363,0,0,OIF:SA:29:40,Europe/Paris,,OIF, +OIF:SP:29:400,1,"Avenue de Meaux",48.546221,2.662764,0,0,OIF:SA:27:198,Europe/Paris,,OIF, +OIF:SP:29:401,1,"Avenue de Meaux",48.546095,2.662737,0,0,OIF:SA:27:198,Europe/Paris,,OIF, +OIF:SP:29:402,1,"Place des 3 Horloges",48.550003,2.657196,0,0,OIF:SA:28:123,Europe/Paris,,OIF, +OIF:SP:29:403,1,"Saint-Exupéry",48.551153,2.650595,0,0,OIF:SA:27:276,Europe/Paris,,OIF, +OIF:SP:29:404,1,"Saint-Exupéry",48.55118,2.650568,0,0,OIF:SA:27:276,Europe/Paris,,OIF, +OIF:SP:29:405,1,"14 Juillet",48.531036,2.672713,0,0,OIF:SA:27:4,Europe/Paris,,OIF, +OIF:SP:29:406,1,"SNECMA Gare Routière",48.61324,2.446537,0,0,OIF:SA:29:406,Europe/Paris,,OIF, +OIF:SP:29:407,1,"Lycée Robert Doisneau",48.612858,2.459632,0,0,OIF:SA:10:536,Europe/Paris,,OIF, +OIF:SP:29:408,1,"Général de Gaulle",48.617292,2.466028,0,0,OIF:SA:10:209,Europe/Paris,,OIF, +OIF:SP:29:409,1,"Général de Gaulle",48.617184,2.465905,0,0,OIF:SA:10:209,Europe/Paris,,OIF, +OIF:SP:29:41,1,"Tour d'Aleron",48.659943,2.572282,0,0,OIF:SA:29:40,Europe/Paris,,OIF, +OIF:SP:29:410,1,"ZI les Tarterets",48.61952,2.467443,0,0,OIF:SA:29:410,Europe/Paris,,OIF, +OIF:SP:29:411,1,"ZI les Tarterets",48.619987,2.467336,0,0,OIF:SA:29:410,Europe/Paris,,OIF, +OIF:SP:29:412,1,"Temps des Cerises",48.618714,2.447186,0,0,OIF:SA:29:412,Europe/Paris,,OIF, +OIF:SP:29:413,1,"Temps des Cerises",48.618669,2.447172,0,0,OIF:SA:29:412,Europe/Paris,,OIF, +OIF:SP:29:414,1,"Évry Courcourronnes Gare RER",48.624852,2.427917,0,0,OIF:SA:8768138,Europe/Paris,,OIF, +OIF:SP:29:415,1,"Bras de Fer Gare RER",48.623924,2.450302,0,0,OIF:SA:8768139,Europe/Paris,,OIF, +OIF:SP:29:416,1,"Bras de Fer Gare RER",48.624265,2.450764,0,0,OIF:SA:8768139,Europe/Paris,,OIF, +OIF:SP:29:417,1,"École des Mines",48.611024,2.441516,0,0,OIF:SA:29:417,Europe/Paris,,OIF, +OIF:SP:29:418,1,"Chilly Mazarin Gare RER",48.700479,2.308212,0,0,OIF:SA:8739363,Europe/Paris,,OIF, +OIF:SP:29:419,1,"Chilly Mazarin Gare RER",48.699652,2.307031,0,0,OIF:SA:8739363,Europe/Paris,,OIF, +OIF:SP:29:42,1,"Abreuvoir",48.659882,2.575674,0,0,OIF:SA:29:42,Europe/Paris,,OIF, +OIF:SP:29:420,1,"Massy Gare RER TGV",48.723693,2.259238,0,0,OIF:SA:8739357,Europe/Paris,,OIF, +OIF:SP:29:421,1,"8 Mai 1945",48.72763,2.274503,0,0,OIF:SA:29:421,Europe/Paris,,OIF, +OIF:SP:29:422,1,"8 Mai 1945",48.72745,2.27487,0,0,OIF:SA:29:421,Europe/Paris,,OIF, +OIF:SP:29:423,1,"Avenue de l'Europe Centre Commercial",48.727065,2.277302,0,0,OIF:SA:29:423,Europe/Paris,,OIF, +OIF:SP:29:43,1,"Abreuvoir",48.659909,2.576027,0,0,OIF:SA:29:42,Europe/Paris,,OIF, +OIF:SP:29:437,1,"Porte de Saint-Cloud Michel Ange",48.838891,2.257554,0,0,OIF:SA:59492,Europe/Paris,,OIF, +OIF:SP:29:438,1,"Porte de Saint-Cloud Murat",48.83819,2.257977,0,0,OIF:SA:59492,Europe/Paris,,OIF, +OIF:SP:29:439,1,"Victor Pont de Garigliano",48.837884,2.271184,0,0,OIF:SA:8739332,Europe/Paris,,OIF, +OIF:SP:29:44,1,"Batelière",48.664331,2.566928,0,0,OIF:SA:29:44,Europe/Paris,,OIF, +OIF:SP:29:440,1,"Victor Pont de Garigliano",48.838611,2.270612,0,0,OIF:SA:8739332,Europe/Paris,,OIF, +OIF:SP:29:441,1,"Place Balard",48.835829,2.278689,0,0,OIF:SA:59477,Europe/Paris,,OIF, +OIF:SP:29:442,1,"Place Balard",48.836171,2.278375,0,0,OIF:SA:59477,Europe/Paris,,OIF, +OIF:SP:29:443,1,"Porte de Versailles Boulevard Lefebvre",48.832248,2.288291,0,0,OIF:SA:59514,Europe/Paris,,OIF, +OIF:SP:29:444,1,"Porte de Versailles",48.832904,2.28799,0,0,OIF:SA:59514,Europe/Paris,,OIF, +OIF:SP:29:445,1,"Porte de Plaisance",48.82977,2.295685,0,0,OIF:SA:59112,Europe/Paris,,OIF, +OIF:SP:29:446,1,"Porte de Plaisance",48.830084,2.295208,0,0,OIF:SA:59112,Europe/Paris,,OIF, +OIF:SP:29:447,1,"Porte Brancion",48.828756,2.300096,0,0,OIF:SA:59060,Europe/Paris,,OIF, +OIF:SP:29:448,1,"Porte Brancion",48.828765,2.300641,0,0,OIF:SA:59060,Europe/Paris,,OIF, +OIF:SP:29:449,1,"Porte de Vanve",48.827508,2.305719,0,0,OIF:SA:59527,Europe/Paris,,OIF, +OIF:SP:29:45,1,"Collège les Aulnes",48.660466,2.562135,0,0,OIF:SA:29:45,Europe/Paris,,OIF, +OIF:SP:29:450,1,"Porte de Vanve",48.827733,2.306005,0,0,OIF:SA:59527,Europe/Paris,,OIF, +OIF:SP:29:451,1,"Porte de Châtillon",48.824653,2.318679,0,0,OIF:SA:59063,Europe/Paris,,OIF, +OIF:SP:29:452,1,"Porte de Châtillon",48.824904,2.318611,0,0,OIF:SA:59063,Europe/Paris,,OIF, +OIF:SP:29:453,1,"Porte d'Orléans Ernest Reyer",48.821454,2.32471,0,0,OIF:SA:59624,Europe/Paris,,OIF, +OIF:SP:29:454,1,"Porte d'Orléans Boulevard Brune",48.823386,2.32505,0,0,OIF:SA:59624,Europe/Paris,,OIF, +OIF:SP:29:455,1,"Michel Ange Varize",48.840383,2.258273,0,0,OIF:SA:29:455,Europe/Paris,,OIF, +OIF:SP:29:456,1,"Versailles Exelmans",48.840639,2.264754,0,0,OIF:SA:29:456,Europe/Paris,,OIF, +OIF:SP:29:46,1,"Paloisel",48.660751,2.563384,0,0,OIF:SA:29:46,Europe/Paris,,OIF, +OIF:SP:29:47,1,"Collège les Aulnes",48.660438,2.562582,0,0,OIF:SA:29:45,Europe/Paris,,OIF, +OIF:SP:29:48,1,"Paloisel",48.661533,2.563428,0,0,OIF:SA:29:46,Europe/Paris,,OIF, +OIF:SP:29:49,1,"Jules Ferry",48.662434,2.562306,0,0,OIF:SA:29:49,Europe/Paris,,OIF, +OIF:SP:29:496,1,"Charles de Gaulle",48.69929,2.298626,0,0,OIF:SA:29:496,Europe/Paris,,OIF, +OIF:SP:29:497,1,"Place Charles Steber",48.697949,2.294228,0,0,OIF:SA:29:497,Europe/Paris,,OIF, +OIF:SP:29:498,1,"Rue des Chèvres",48.605926,2.498368,0,0,OIF:SA:29:498,Europe/Paris,,OIF, +OIF:SP:29:499,1,"Rue des Chèvres",48.605827,2.498503,0,0,OIF:SA:29:498,Europe/Paris,,OIF, +OIF:SP:29:5,1,"Combs la Ville Gare RER",48.66798,2.548203,0,0,OIF:SA:8768214,Europe/Paris,,OIF, +OIF:SP:29:50,1,"Brandons",48.664867,2.559114,0,0,OIF:SA:29:50,Europe/Paris,,OIF, +OIF:SP:29:500,1,"Réservoir",48.601197,2.499099,0,0,OIF:SA:29:500,Europe/Paris,,OIF, +OIF:SP:29:501,1,"Réservoir",48.600873,2.499084,0,0,OIF:SA:29:500,Europe/Paris,,OIF, +OIF:SP:29:502,1,"Saintry Église",48.599704,2.492602,0,0,OIF:SA:29:502,Europe/Paris,,OIF, +OIF:SP:29:503,1,"Saintry Mairie",48.596584,2.492877,0,0,OIF:SA:29:503,Europe/Paris,,OIF, +OIF:SP:29:504,1,"Port aux Sablons",48.591796,2.491101,0,0,OIF:SA:29:504,Europe/Paris,,OIF, +OIF:SP:29:505,1,"Route de Morsang",48.587133,2.48896,0,0,OIF:SA:29:505,Europe/Paris,,OIF, +OIF:SP:29:506,1,"Route de Morsang",48.587726,2.489301,0,0,OIF:SA:29:505,Europe/Paris,,OIF, +OIF:SP:29:507,1,"Hameau de Seine",48.583411,2.488922,0,0,OIF:SA:29:507,Europe/Paris,,OIF, +OIF:SP:29:508,1,"Hameau de Seine",48.583636,2.488977,0,0,OIF:SA:29:507,Europe/Paris,,OIF, +OIF:SP:29:509,1,"Rue du Stade",48.591027,2.494609,0,0,OIF:SA:29:509,Europe/Paris,,OIF, +OIF:SP:29:51,1,"Gambetta",48.661376,2.556345,0,0,OIF:SA:29:51,Europe/Paris,,OIF, +OIF:SP:29:510,1,"Place de la Résistance",48.590142,2.497546,0,0,OIF:SA:29:510,Europe/Paris,,OIF, +OIF:SP:29:511,1,"Villededon",48.591567,2.500762,0,0,OIF:SA:29:511,Europe/Paris,,OIF, +OIF:SP:29:512,1,"Les Brosses",48.596639,2.499382,0,0,OIF:SA:29:512,Europe/Paris,,OIF, +OIF:SP:29:513,1,"Compagnie des Eaux",48.574887,2.490631,0,0,OIF:SA:29:513,Europe/Paris,,OIF, +OIF:SP:29:514,1,"Compagnie des Eaux",48.575076,2.490578,0,0,OIF:SA:29:513,Europe/Paris,,OIF, +OIF:SP:29:515,1,"Morsang Mairie",48.571153,2.493519,0,0,OIF:SA:29:515,Europe/Paris,,OIF, +OIF:SP:29:52,1,"Gambetta",48.661258,2.556846,0,0,OIF:SA:29:51,Europe/Paris,,OIF, +OIF:SP:29:53,1,"Lycée Galilée",48.658119,2.558013,0,0,OIF:SA:29:53,Europe/Paris,,OIF, +OIF:SP:29:533,1,"Moulin à Vent",48.628384,2.552463,0,0,OIF:SA:29:533,Europe/Paris,,OIF, +OIF:SP:29:534,1,"Rougeau",48.601436,2.57058,0,0,OIF:SA:29:534,Europe/Paris,,OIF, +OIF:SP:29:535,1,"Rougeau",48.601356,2.570227,0,0,OIF:SA:29:534,Europe/Paris,,OIF, +OIF:SP:29:536,1,"Cévennes",48.604845,2.565038,0,0,OIF:SA:29:536,Europe/Paris,,OIF, +OIF:SP:29:537,1,"Cévennes",48.604641,2.563479,0,0,OIF:SA:29:536,Europe/Paris,,OIF, +OIF:SP:29:538,1,"Lycée P. Mendès France",48.596752,2.575736,0,0,OIF:SA:29:184,Europe/Paris,,OIF, +OIF:SP:29:54,1,"Ormeau Réaumur",48.655166,2.56066,0,0,OIF:SA:29:54,Europe/Paris,,OIF, +OIF:SP:29:540,1,"Collège des Maillettes",48.623259,2.589715,0,0,OIF:SA:29:540,Europe/Paris,,OIF, +OIF:SP:29:541,1,"Collège des Maillettes",48.623169,2.589823,0,0,OIF:SA:29:540,Europe/Paris,,OIF, +OIF:SP:29:542,1,"Le Lac",48.621794,2.589315,0,0,OIF:SA:29:120,Europe/Paris,,OIF, +OIF:SP:29:543,1,"Boileau",48.599208,2.579,0,0,OIF:SA:29:191,Europe/Paris,,OIF, +OIF:SP:29:544,1,"Paul Verlaine",48.601178,2.578426,0,0,OIF:SA:29:190,Europe/Paris,,OIF, +OIF:SP:29:545,1,"Haiettes E. Triolet",48.603553,2.577245,0,0,OIF:SA:29:545,Europe/Paris,,OIF, +OIF:SP:29:546,1,"Haiettes E. Triolet",48.603348,2.576769,0,0,OIF:SA:29:545,Europe/Paris,,OIF, +OIF:SP:29:547,1,"Sciences et Techniques",48.605567,2.572876,0,0,OIF:SA:29:547,Europe/Paris,,OIF, +OIF:SP:29:548,1,"Sciences et Techniques",48.605602,2.573391,0,0,OIF:SA:29:547,Europe/Paris,,OIF, +OIF:SP:29:549,1,"Berthelot",48.604927,2.569213,0,0,OIF:SA:29:549,Europe/Paris,,OIF, +OIF:SP:29:55,1,"Ormeau Réaumur",48.655067,2.560741,0,0,OIF:SA:29:54,Europe/Paris,,OIF, +OIF:SP:29:550,1,"Berthelot",48.604899,2.569444,0,0,OIF:SA:29:549,Europe/Paris,,OIF, +OIF:SP:29:557,1,"Jardins de la Merridienne",48.635089,2.558186,0,0,OIF:SA:29:557,Europe/Paris,,OIF, +OIF:SP:29:558,1,"Jardins de la Merridienne",48.634999,2.55824,0,0,OIF:SA:29:557,Europe/Paris,,OIF, +OIF:SP:29:56,1,"Ormeau Monge",48.65342,2.561385,0,0,OIF:SA:29:56,Europe/Paris,,OIF, +OIF:SP:29:560,1,"Athènes",48.632537,2.57624,0,0,OIF:SA:29:560,Europe/Paris,,OIF, +OIF:SP:29:561,1,"Athènes",48.632527,2.57647,0,0,OIF:SA:29:560,Europe/Paris,,OIF, +OIF:SP:29:563,1,"Place de la Fontaine",48.622173,2.593222,0,0,OIF:SA:29:121,Europe/Paris,,OIF, +OIF:SP:29:564,1,"Chanteloup Manet",48.641205,2.579494,0,0,OIF:SA:29:564,Europe/Paris,,OIF, +OIF:SP:29:565,1,"Porte de Moissy",48.628982,2.578352,0,0,OIF:SA:29:565,Europe/Paris,,OIF, +OIF:SP:29:566,1,"Porte de Moissy",48.62902,2.577268,0,0,OIF:SA:29:565,Europe/Paris,,OIF, +OIF:SP:29:57,1,"Ormeau Monge",48.653393,2.561439,0,0,OIF:SA:29:56,Europe/Paris,,OIF, +OIF:SP:29:570,1,"Couture",48.668437,2.553782,0,0,OIF:SA:29:570,Europe/Paris,,OIF, +OIF:SP:29:571,1,"Couture",48.669002,2.554423,0,0,OIF:SA:29:570,Europe/Paris,,OIF, +OIF:SP:29:572,1,"Varennes",48.666543,2.552322,0,0,OIF:SA:29:572,Europe/Paris,,OIF, +OIF:SP:29:573,1,"Varennes",48.666785,2.552527,0,0,OIF:SA:29:572,Europe/Paris,,OIF, +OIF:SP:29:574,1,"Hottinger",48.665318,2.548558,0,0,OIF:SA:29:574,Europe/Paris,,OIF, +OIF:SP:29:575,1,"Anatole France",48.66143,2.546385,0,0,OIF:SA:29:575,Europe/Paris,,OIF, +OIF:SP:29:576,1,"Molière",48.664452,2.545217,0,0,OIF:SA:29:576,Europe/Paris,,OIF, +OIF:SP:29:577,1,"Victor Hugo",48.666681,2.545755,0,0,OIF:SA:29:577,Europe/Paris,,OIF, +OIF:SP:29:578,1,"Rosso",48.630443,2.575742,0,0,OIF:SA:29:578,Europe/Paris,,OIF, +OIF:SP:29:579,1,"Rosso",48.63012,2.575713,0,0,OIF:SA:29:578,Europe/Paris,,OIF, +OIF:SP:29:58,1,"Ormeau Salle des Fetes",48.652035,2.56203,0,0,OIF:SA:29:58,Europe/Paris,,OIF, +OIF:SP:29:580,1,"Château d'Eau C.Bernard",48.617877,2.570885,0,0,OIF:SA:29:580,Europe/Paris,,OIF, +OIF:SP:29:581,1,"Louise Michel",48.662529,2.55985,0,0,OIF:SA:29:581,Europe/Paris,,OIF, +OIF:SP:29:582,1,"Carre Citoyenneté",48.618343,2.542551,0,0,OIF:SA:29:582,Europe/Paris,,OIF, +OIF:SP:29:583,1,"Carre Citoyenneté",48.618649,2.542715,0,0,OIF:SA:29:582,Europe/Paris,,OIF, +OIF:SP:29:585,1,"Montdauphin",48.568907,2.599177,0,0,OIF:SA:29:585,Europe/Paris,,OIF, +OIF:SP:29:586,1,"Montdauphin",48.568592,2.59904,0,0,OIF:SA:29:585,Europe/Paris,,OIF, +OIF:SP:29:587,1,"Rose des Vents",48.571901,2.602646,0,0,OIF:SA:29:587,Europe/Paris,,OIF, +OIF:SP:29:588,1,"Rose des Vents",48.57175,2.6019,0,0,OIF:SA:29:587,Europe/Paris,,OIF, +OIF:SP:29:589,1,"Alizés",48.571355,2.605759,0,0,OIF:SA:29:589,Europe/Paris,,OIF, +OIF:SP:29:59,1,"Parisud Maurice Faure",48.648265,2.5542,0,0,OIF:SA:29:59,Europe/Paris,,OIF, +OIF:SP:29:590,1,"Alizés",48.571509,2.605299,0,0,OIF:SA:29:589,Europe/Paris,,OIF, +OIF:SP:29:591,1,"Cesson Gare RER",48.565062,2.593862,0,0,OIF:SA:8768216,Europe/Paris,,OIF, +OIF:SP:29:592,1,"Ormeau Salle des Fetes",48.652035,2.562084,0,0,OIF:SA:29:58,Europe/Paris,,OIF, +OIF:SP:29:593,1,"Le Fresne (Quatre Saisons)",48.614711,2.509173,0,0,OIF:SA:29:2016,Europe/Paris,,OIF, +OIF:SP:29:594,1,"Le Fresne (Quatre Saisons)",48.614441,2.50924,0,0,OIF:SA:29:2016,Europe/Paris,,OIF, +OIF:SP:29:595,1,"Lachenal",48.609917,2.511204,0,0,OIF:SA:29:595,Europe/Paris,,OIF, +OIF:SP:29:596,1,"Lachenal",48.609539,2.511338,0,0,OIF:SA:29:595,Europe/Paris,,OIF, +OIF:SP:29:597,1,"Fernand Sastre",48.606961,2.510448,0,0,OIF:SA:29:597,Europe/Paris,,OIF, +OIF:SP:29:598,1,"Fernand Sastre",48.60696,2.510747,0,0,OIF:SA:29:597,Europe/Paris,,OIF, +OIF:SP:29:599,1,"Pépinière",48.646952,2.510908,0,0,OIF:SA:29:599,Europe/Paris,,OIF, +OIF:SP:29:6,1,"Marche",48.66585,2.552604,0,0,OIF:SA:29:6,Europe/Paris,,OIF, +OIF:SP:29:60,1,"Parisud Maurice Faure",48.648669,2.554256,0,0,OIF:SA:29:59,Europe/Paris,,OIF, +OIF:SP:29:602,1,"Olof Palme",48.584003,2.580908,0,0,OIF:SA:29:602,Europe/Paris,,OIF, +OIF:SP:29:603,1,"Olof Palme",48.584022,2.580542,0,0,OIF:SA:29:602,Europe/Paris,,OIF, +OIF:SP:29:607,1,"Quatre Chemins",48.627227,2.556214,0,0,OIF:SA:29:607,Europe/Paris,,OIF, +OIF:SP:29:608,1,"Quatre Chemins",48.627298,2.556635,0,0,OIF:SA:29:607,Europe/Paris,,OIF, +OIF:SP:29:61,1,"Parisud Borne Blanche",48.652926,2.551479,0,0,OIF:SA:29:61,Europe/Paris,,OIF, +OIF:SP:29:611,1,"Plaine du Moulin à Vent",48.581549,2.605649,0,0,OIF:SA:27:463,Europe/Paris,,OIF, +OIF:SP:29:612,1,"Plaine du Moulin à Vent",48.581353,2.605228,0,0,OIF:SA:27:463,Europe/Paris,,OIF, +OIF:SP:29:613,1,"Porte de Paris",48.6361,2.545673,0,0,OIF:SA:29:100,Europe/Paris,,OIF, +OIF:SP:29:614,1,"Fosses Neufs",48.635308,2.507112,0,0,OIF:SA:29:614,Europe/Paris,,OIF, +OIF:SP:29:615,1,"Chanteloup Matisse",48.641892,2.581844,0,0,OIF:SA:29:615,Europe/Paris,,OIF, +OIF:SP:29:616,1,"Cézanne",48.64196,2.579376,0,0,OIF:SA:29:616,Europe/Paris,,OIF, +OIF:SP:29:617,1,"Boissénart C. Commercial",48.586459,2.597057,0,0,OIF:SA:29:248,Europe/Paris,,OIF, +OIF:SP:29:618,1,"Boissénart - Commerce",48.585702,2.601917,0,0,OIF:SA:29:618,Europe/Paris,,OIF, +OIF:SP:29:619,1,"Boissénart - Commerce",48.585775,2.601484,0,0,OIF:SA:29:618,Europe/Paris,,OIF, +OIF:SP:29:62,1,"Parisud Borne Blanche",48.653195,2.551969,0,0,OIF:SA:29:61,Europe/Paris,,OIF, +OIF:SP:29:620,1,"Boissénart - Maisonément",48.584794,2.605842,0,0,OIF:SA:29:620,Europe/Paris,,OIF, +OIF:SP:29:621,1,"Boissénart - Maisonément",48.584902,2.605951,0,0,OIF:SA:29:620,Europe/Paris,,OIF, +OIF:SP:29:622,1,"Tramontane",48.576407,2.602019,0,0,OIF:SA:29:622,Europe/Paris,,OIF, +OIF:SP:29:623,1,"Tramontane",48.576621,2.602399,0,0,OIF:SA:29:622,Europe/Paris,,OIF, +OIF:SP:29:624,1,"Z.I Savigny Routoires",48.589977,2.591559,0,0,OIF:SA:29:241,Europe/Paris,,OIF, +OIF:SP:29:626,1,"Aérodrome de Villaroche",48.614502,2.663951,0,0,OIF:SA:29:626,Europe/Paris,,OIF, +OIF:SP:29:627,1,"Aérodrome de Villaroche",48.6146,2.664142,0,0,OIF:SA:29:626,Europe/Paris,,OIF, +OIF:SP:29:628,1,"Villaroche Nord",48.617886,2.665722,0,0,OIF:SA:29:628,Europe/Paris,,OIF, +OIF:SP:29:629,1,"Montgolfière",48.574455,2.602469,0,0,OIF:SA:29:629,Europe/Paris,,OIF, +OIF:SP:29:63,1,"Parisud Distripôle",48.648608,2.548531,0,0,OIF:SA:29:63,Europe/Paris,,OIF, +OIF:SP:29:630,1,"Montgolfière",48.574492,2.602036,0,0,OIF:SA:29:629,Europe/Paris,,OIF, +OIF:SP:29:631,1,"Faisanderie",48.585165,2.5709,0,0,OIF:SA:29:268,Europe/Paris,,OIF, +OIF:SP:29:632,1,"Sablons",48.583858,2.572954,0,0,OIF:SA:29:267,Europe/Paris,,OIF, +OIF:SP:29:633,1,"Turquoises",48.583204,2.575918,0,0,OIF:SA:29:266,Europe/Paris,,OIF, +OIF:SP:29:634,1,"Olympe de Gouges",48.631657,2.561806,0,0,OIF:SA:29:634,Europe/Paris,,OIF, +OIF:SP:29:635,1,"Olympe de Gouges",48.631252,2.562008,0,0,OIF:SA:29:634,Europe/Paris,,OIF, +OIF:SP:29:636,1,"G. S. Manuréva",48.609131,2.507473,0,0,OIF:SA:29:348,Europe/Paris,,OIF, +OIF:SP:29:637,1,"Combs Cimetière",48.664671,2.576795,0,0,OIF:SA:29:637,Europe/Paris,,OIF, +OIF:SP:29:638,1,"Pépinière",48.646413,2.510621,0,0,OIF:SA:29:599,Europe/Paris,,OIF, +OIF:SP:29:639,1,"La Plaine",48.574324,2.608673,0,0,OIF:SA:29:639,Europe/Paris,,OIF, +OIF:SP:29:64,1,"Parisud Distripôle",48.648734,2.548626,0,0,OIF:SA:29:63,Europe/Paris,,OIF, +OIF:SP:29:640,1,"La Plaine",48.574414,2.608389,0,0,OIF:SA:29:639,Europe/Paris,,OIF, +OIF:SP:29:641,1,"Fosses Neufs",48.635615,2.506272,0,0,OIF:SA:29:614,Europe/Paris,,OIF, +OIF:SP:29:642,1,"Haut du Breuil",48.663784,2.579912,0,0,OIF:SA:29:642,Europe/Paris,,OIF, +OIF:SP:29:643,1,"Les Pres Hauts",48.626262,2.515055,0,0,OIF:SA:29:2020,Europe/Paris,,OIF, +OIF:SP:29:644,1,"Victor Hugo",48.605927,2.504169,0,0,OIF:SA:29:644,Europe/Paris,,OIF, +OIF:SP:29:645,1,"Victor Hugo",48.60599,2.504129,0,0,OIF:SA:29:644,Europe/Paris,,OIF, +OIF:SP:29:646,1,"Chanteloup Renoir",48.641196,2.579494,0,0,OIF:SA:29:646,Europe/Paris,,OIF, +OIF:SP:29:647,1,"Mairie les Ombrages",48.639783,2.508103,0,0,OIF:SA:29:368,Europe/Paris,,OIF, +OIF:SP:29:648,1,"Centre Pénitentiaire",48.601138,2.59305,0,0,OIF:SA:29:648,Europe/Paris,,OIF, +OIF:SP:29:65,1,"Lieusaint Moissy Gare RER",48.627751,2.568854,0,0,OIF:SA:8768215,Europe/Paris,,OIF, +OIF:SP:29:651,1,"Ormeau Malraux",48.648208,2.565486,0,0,OIF:SA:29:651,Europe/Paris,,OIF, +OIF:SP:29:652,1,"Ormeau Malraux",48.648342,2.565663,0,0,OIF:SA:29:651,Europe/Paris,,OIF, +OIF:SP:29:653,1,"Z.I Savigny Industrie",48.596985,2.588883,0,0,OIF:SA:29:653,Europe/Paris,,OIF, +OIF:SP:29:654,1,"Z.I Savigny Industrie",48.596851,2.588462,0,0,OIF:SA:29:653,Europe/Paris,,OIF, +OIF:SP:29:660,1,"Noisement",48.567371,2.563777,0,0,OIF:SA:29:259,Europe/Paris,,OIF, +OIF:SP:29:661,1,"Jean Monnet Anna Lindh",48.570176,2.632898,0,0,OIF:SA:29:661,Europe/Paris,,OIF, +OIF:SP:29:662,1,"Jean Monnet Anna Lindh",48.570185,2.6326,0,0,OIF:SA:29:661,Europe/Paris,,OIF, +OIF:SP:29:663,1,"Rond-Point de L'Hôpital",48.618849,2.464133,0,0,OIF:SA:29:663,Europe/Paris,,OIF, +OIF:SP:29:664,1,"Rond-Point de L'Hôpital",48.61876,2.463686,0,0,OIF:SA:29:663,Europe/Paris,,OIF, +OIF:SP:29:665,1,"Écomusée",48.574577,2.583491,0,0,OIF:SA:29:258,Europe/Paris,,OIF, +OIF:SP:29:666,1,"Écopôle Rio",48.635414,2.575941,0,0,OIF:SA:29:666,Europe/Paris,,OIF, +OIF:SP:29:667,1,"Écopôle Rio",48.635251,2.576211,0,0,OIF:SA:29:666,Europe/Paris,,OIF, +OIF:SP:29:668,1,"Levant M. Brès",48.616655,2.56589,0,0,OIF:SA:29:668,Europe/Paris,,OIF, +OIF:SP:29:669,1,"Levant M. Perey",48.620178,2.561811,0,0,OIF:SA:29:669,Europe/Paris,,OIF, +OIF:SP:29:67,1,"Lieusaint Moissy Gare RER",48.627886,2.568801,0,0,OIF:SA:8768215,Europe/Paris,,OIF, +OIF:SP:29:68,1,"Lieusaint Moissy Gare RER",48.627364,2.569192,0,0,OIF:SA:8768215,Europe/Paris,,OIF, +OIF:SP:29:69,1,"Lieusaint Moissy Gare RER",48.627814,2.569017,0,0,OIF:SA:8768215,Europe/Paris,,OIF, +OIF:SP:29:7,1,"Marche",48.66586,2.552415,0,0,OIF:SA:29:6,Europe/Paris,,OIF, +OIF:SP:29:70,1,"Lieusaint Moissy Gare RER",48.627697,2.569071,0,0,OIF:SA:8768215,Europe/Paris,,OIF, +OIF:SP:29:71,1,"Lieusaint Moissy Gare RER",48.627517,2.569138,0,0,OIF:SA:8768215,Europe/Paris,,OIF, +OIF:SP:29:73,1,"Lieusaint Moissy Gare RER",48.627436,2.569002,0,0,OIF:SA:8768215,Europe/Paris,,OIF, +OIF:SP:29:74,1,"Lieusaint Moissy Gare RER",48.627247,2.569028,0,0,OIF:SA:8768215,Europe/Paris,,OIF, +OIF:SP:29:75,1,"Lieusaint Moissy Gare RER",48.628733,2.568004,0,0,OIF:SA:8768215,Europe/Paris,,OIF, +OIF:SP:29:76,1,"Université",48.627496,2.561232,0,0,OIF:SA:29:2002,Europe/Paris,,OIF, +OIF:SP:29:77,1,"Université",48.627493,2.562724,0,0,OIF:SA:29:2002,Europe/Paris,,OIF, +OIF:SP:29:8,1,"Place de l'An 2000",48.666254,2.558143,0,0,OIF:SA:29:8,Europe/Paris,,OIF, +OIF:SP:29:8001,1,"Lieusaint Moissy Gare RER",48.628733,2.568004,0,0,OIF:SA:8768215,Europe/Paris,,OIF, +OIF:SP:29:8002,1,"Lieusaint Moissy Gare RER",48.627886,2.568801,0,0,OIF:SA:8768215,Europe/Paris,,OIF, +OIF:SP:29:8004,1,"Lieusaint Moissy Gare RER",48.628057,2.568778,0,0,OIF:SA:8768215,Europe/Paris,,OIF, +OIF:SP:29:8005,1,"Combs la Ville Gare RER",48.667287,2.548512,0,0,OIF:SA:8768214,Europe/Paris,,OIF, +OIF:SP:29:8006,1,"Lieusaint Moissy Gare RER",48.627436,2.569002,0,0,OIF:SA:8768215,Europe/Paris,,OIF, +OIF:SP:29:8012,1,"Cesson Gare RER",48.564972,2.59401,0,0,OIF:SA:8768216,Europe/Paris,,OIF, +OIF:SP:29:8013,1,"Lieusaint Moissy Gare RER",48.627697,2.569071,0,0,OIF:SA:8768215,Europe/Paris,,OIF, +OIF:SP:29:8014,1,"Lieusaint Moissy Gare RER",48.627517,2.569138,0,0,OIF:SA:8768215,Europe/Paris,,OIF, +OIF:SP:29:8015,1,"Lieusaint Moissy Gare RER",48.627246,2.569191,0,0,OIF:SA:8768215,Europe/Paris,,OIF, +OIF:SP:29:8016,1,"Savigny Nandy Gare RER",48.595851,2.5853,0,0,OIF:SA:8768218,Europe/Paris,,OIF, +OIF:SP:29:8017,1,"Lieusaint Moissy Gare RER",48.627364,2.569192,0,0,OIF:SA:8768215,Europe/Paris,,OIF, +OIF:SP:29:8025,1,"Le Fresne",48.615808,2.509285,0,0,OIF:SA:29:2016,Europe/Paris,,OIF, +OIF:SP:29:81,1,"Moulin à Vent",48.628385,2.552435,0,0,OIF:SA:29:533,Europe/Paris,,OIF, +OIF:SP:29:82,1,"Grands Champs",48.62757,2.550534,0,0,OIF:SA:29:82,Europe/Paris,,OIF, +OIF:SP:29:83,1,"Grands Champs",48.627623,2.550981,0,0,OIF:SA:29:82,Europe/Paris,,OIF, +OIF:SP:29:84,1,"Collège Saint-Louis",48.629562,2.547274,0,0,OIF:SA:29:84,Europe/Paris,,OIF, +OIF:SP:29:85,1,"Collège Saint-Louis",48.62913,2.547733,0,0,OIF:SA:29:84,Europe/Paris,,OIF, +OIF:SP:29:86,1,"Place des Chartreux",48.631679,2.544746,0,0,OIF:SA:29:86,Europe/Paris,,OIF, +OIF:SP:29:87,1,"Place des Chartreux",48.631373,2.545084,0,0,OIF:SA:29:86,Europe/Paris,,OIF, +OIF:SP:29:88,1,"Jules Ferry",48.632212,2.548437,0,0,OIF:SA:29:88,Europe/Paris,,OIF, +OIF:SP:29:89,1,"Place du Colombier",48.633213,2.551913,0,0,OIF:SA:29:89,Europe/Paris,,OIF, +OIF:SP:29:9,1,"Place de l'An 2000",48.665626,2.557204,0,0,OIF:SA:29:8,Europe/Paris,,OIF, +OIF:SP:29:90,1,"Collège de la Pyramide",48.635853,2.548276,0,0,OIF:SA:29:90,Europe/Paris,,OIF, +OIF:SP:29:9030,1,"Collège Tuilerie",48.619022,2.492606,0,0,OIF:SA:29:9030,Europe/Paris,,OIF, +OIF:SP:29:9032,1,"Le Petit Prince",48.637671,2.552013,0,0,OIF:SA:29:107,Europe/Paris,,OIF, +OIF:SP:29:9034,1,"Saule de la Chasse",48.637507,2.548092,0,0,OIF:SA:29:108,Europe/Paris,,OIF, +OIF:SP:29:9036,1,"Parc Église",48.633029,2.554204,0,0,OIF:SA:29:9036,Europe/Paris,,OIF, +OIF:SP:29:9038,1,"Parc Église",48.633216,2.55472,0,0,OIF:SA:29:9036,Europe/Paris,,OIF, +OIF:SP:29:9040,1,"Bois du Bray",48.629956,2.558192,0,0,OIF:SA:29:9040,Europe/Paris,,OIF, +OIF:SP:29:9042,1,"Bois du Bray",48.630136,2.558043,0,0,OIF:SA:29:9040,Europe/Paris,,OIF, +OIF:SP:29:9044,1,"Cœur de Bourg",48.638234,2.510254,0,0,OIF:SA:29:9044,Europe/Paris,,OIF, +OIF:SP:29:9046,1,"Cœur de Bourg",48.638189,2.510159,0,0,OIF:SA:29:9044,Europe/Paris,,OIF, +OIF:SP:29:9050,1,"Mairie Plessis",48.639674,2.509039,0,0,OIF:SA:29:368,Europe/Paris,,OIF, +OIF:SP:29:9052,1,"Château du Jard",48.570928,2.661402,0,0,OIF:SA:29:9052,Europe/Paris,,OIF, +OIF:SP:29:9054,1,"Centre Pénitentiaire",48.601048,2.593172,0,0,OIF:SA:29:648,Europe/Paris,,OIF, +OIF:SP:29:9056,1,"Arvigny",48.617991,2.581203,0,0,OIF:SA:29:9056,Europe/Paris,,OIF, +OIF:SP:29:9058,1,"Arvigny",48.618647,2.581124,0,0,OIF:SA:29:9056,Europe/Paris,,OIF, +OIF:SP:29:9072,1,"SNECMA Montereau",48.613497,2.653195,0,0,OIF:SA:29:168,Europe/Paris,,OIF, +OIF:SP:29:9074,1,"Villaroche Nord",48.616784,2.664318,0,0,OIF:SA:29:628,Europe/Paris,,OIF, +OIF:SP:29:91,1,"Collège de la Pyramide",48.635582,2.549034,0,0,OIF:SA:29:90,Europe/Paris,,OIF, +OIF:SP:29:92,1,"Pépinière",48.638656,2.544015,0,0,OIF:SA:29:92,Europe/Paris,,OIF, +OIF:SP:29:93,1,"Pépinière",48.639035,2.543487,0,0,OIF:SA:29:92,Europe/Paris,,OIF, +OIF:SP:29:94,1,"Parisud Espagne",48.642984,2.546975,0,0,OIF:SA:29:94,Europe/Paris,,OIF, +OIF:SP:29:95,1,"Parisud Espagne",48.642866,2.547178,0,0,OIF:SA:29:94,Europe/Paris,,OIF, +OIF:SP:29:96,1,"Parisud Italie",48.642849,2.551722,0,0,OIF:SA:29:96,Europe/Paris,,OIF, +OIF:SP:29:97,1,"Parisud Italie",48.642739,2.553105,0,0,OIF:SA:29:96,Europe/Paris,,OIF, +OIF:SP:29:98,1,"Parisud J. Monnet",48.643803,2.556243,0,0,OIF:SA:29:98,Europe/Paris,,OIF, +OIF:SP:29:99,1,"Parisud J. Monnet",48.643154,2.556905,0,0,OIF:SA:29:98,Europe/Paris,,OIF, +OIF:SP:2:1,1,"Voluceau",48.837155,2.105203,0,0,OIF:SA:2:1,Europe/Paris,,OIF, +OIF:SP:2:10,1,"La Muette",48.831874,2.116417,0,0,OIF:SA:2:10,Europe/Paris,,OIF, +OIF:SP:2:100,1,"Poste de Garches",48.844241,2.18558,0,0,OIF:SA:2:100,Europe/Paris,,OIF, +OIF:SP:2:1000,1,"Échangeur A86",48.780539,2.156335,0,0,OIF:SA:2:1000,Europe/Paris,,OIF, +OIF:SP:2:1001,1,"Pasteur Curie",48.757372,2.177826,0,0,OIF:SA:2:1001,Europe/Paris,,OIF, +OIF:SP:2:1002,1,"Pasteur Curie",48.757246,2.177894,0,0,OIF:SA:2:1001,Europe/Paris,,OIF, +OIF:SP:2:1003,1,"Ampère Curie",48.7569,2.174565,0,0,OIF:SA:2:1003,Europe/Paris,,OIF, +OIF:SP:2:1004,1,"Ampère Curie",48.75681,2.174851,0,0,OIF:SA:2:1003,Europe/Paris,,OIF, +OIF:SP:2:1005,1,"RD 446 HEC",48.756618,2.172024,0,0,OIF:SA:2:1005,Europe/Paris,,OIF, +OIF:SP:2:1006,1,"RD 446 HEC",48.756699,2.172363,0,0,OIF:SA:2:1005,Europe/Paris,,OIF, +OIF:SP:2:1007,1,"RD 446 Petit Viltain",48.750605,2.166239,0,0,OIF:SA:2:1007,Europe/Paris,,OIF, +OIF:SP:2:1008,1,"RD 446 Petit Viltain",48.74976,2.165956,0,0,OIF:SA:2:1007,Europe/Paris,,OIF, +OIF:SP:2:1015,1,"Razel",48.734695,2.165707,0,0,OIF:SA:2:1015,Europe/Paris,,OIF, +OIF:SP:2:1016,1,"Razel",48.734812,2.165802,0,0,OIF:SA:2:1015,Europe/Paris,,OIF, +OIF:SP:2:1017,1,"Mairie de Saclay",48.730896,2.173872,0,0,OIF:SA:2:1017,Europe/Paris,,OIF, +OIF:SP:2:1018,1,"Mairie de Saclay",48.730923,2.173939,0,0,OIF:SA:2:1017,Europe/Paris,,OIF, +OIF:SP:2:1019,1,"Martinière",48.729576,2.175017,0,0,OIF:SA:2:1019,Europe/Paris,,OIF, +OIF:SP:2:102,1,"Stand de Tir",48.802397,2.113304,0,0,OIF:SA:2:102,Europe/Paris,,OIF, +OIF:SP:2:1020,1,"Martinière",48.72883,2.174693,0,0,OIF:SA:2:1019,Europe/Paris,,OIF, +OIF:SP:2:1023,1,"Central PTT",48.762075,2.137678,0,0,OIF:SA:24:15231,Europe/Paris,,OIF, +OIF:SP:2:1024,1,"Gare de Jouy",48.764947,2.163785,0,0,OIF:SA:8739351,Europe/Paris,,OIF, +OIF:SP:2:1025,1,"INRA Château",48.765217,2.176578,0,0,OIF:SA:2:1025,Europe/Paris,,OIF, +OIF:SP:2:1028,1,"INRA Grand Laboratoire",48.765457,2.181554,0,0,OIF:SA:2:1028,Europe/Paris,,OIF, +OIF:SP:2:1029,1,"INRA Accueil",48.763972,2.173306,0,0,OIF:SA:2:1029,Europe/Paris,,OIF, +OIF:SP:2:103,1,"Stand de Tir",48.802417,2.114447,0,0,OIF:SA:2:102,Europe/Paris,,OIF, +OIF:SP:2:1030,1,"INRA Biotechnologie",48.764689,2.185377,0,0,OIF:SA:2:1030,Europe/Paris,,OIF, +OIF:SP:2:1031,1,"INRA Zone Sud",48.763026,2.185096,0,0,OIF:SA:2:1031,Europe/Paris,,OIF, +OIF:SP:2:1032,1,"Monument",48.764626,2.142019,0,0,OIF:SA:24:15224,Europe/Paris,,OIF, +OIF:SP:2:1033,1,"Les Loges Église",48.76482,2.140142,0,0,OIF:SA:2:1033,Europe/Paris,,OIF, +OIF:SP:2:1034,1,"Les Haies",48.762524,2.142652,0,0,OIF:SA:2:1034,Europe/Paris,,OIF, +OIF:SP:2:1035,1,"Zone d'Activités",48.762601,2.134957,0,0,OIF:SA:2:1035,Europe/Paris,,OIF, +OIF:SP:2:1036,1,"Midori",48.763448,2.147244,0,0,OIF:SA:2:1036,Europe/Paris,,OIF, +OIF:SP:2:1037,1,"Beuvron",48.765107,2.16887,0,0,OIF:SA:2:1037,Europe/Paris,,OIF, +OIF:SP:2:1038,1,"Beuvron",48.765071,2.168924,0,0,OIF:SA:2:1037,Europe/Paris,,OIF, +OIF:SP:2:1039,1,"Bauvinon",48.769076,2.172446,0,0,OIF:SA:2:1039,Europe/Paris,,OIF, +OIF:SP:2:104,1,"Porte des Matelots",48.803148,2.106335,0,0,OIF:SA:8741451,Europe/Paris,,OIF, +OIF:SP:2:1040,1,"Bauvinon",48.768977,2.172433,0,0,OIF:SA:2:1039,Europe/Paris,,OIF, +OIF:SP:2:1041,1,"Abel Nicolle le Vallon",48.771799,2.172111,0,0,OIF:SA:2:1041,Europe/Paris,,OIF, +OIF:SP:2:1042,1,"Abel Nicolle le Vallon",48.771188,2.172657,0,0,OIF:SA:2:1041,Europe/Paris,,OIF, +OIF:SP:2:1045,1,"Les Metz - la Mare",48.771576,2.167027,0,0,OIF:SA:2:1045,Europe/Paris,,OIF, +OIF:SP:2:1047,1,"Les Metz - Hoche",48.774633,2.167425,0,0,OIF:SA:2:1047,Europe/Paris,,OIF, +OIF:SP:2:1048,1,"Les Metz - Hoche",48.774947,2.167519,0,0,OIF:SA:2:1047,Europe/Paris,,OIF, +OIF:SP:2:1049,1,"Les Metz - Clair Bois",48.776898,2.167621,0,0,OIF:SA:2:1049,Europe/Paris,,OIF, +OIF:SP:2:105,1,"Porte des Matelots",48.803468,2.104782,0,0,OIF:SA:8741451,Europe/Paris,,OIF, +OIF:SP:2:1050,1,"Les Metz - Clair Bois",48.777275,2.167729,0,0,OIF:SA:2:1049,Europe/Paris,,OIF, +OIF:SP:2:1052,1,"Petit-Robinson",48.779474,2.171734,0,0,OIF:SA:2:1052,Europe/Paris,,OIF, +OIF:SP:2:1055,1,"Collège Saint-Exupéry",48.783506,2.175787,0,0,OIF:SA:2:1055,Europe/Paris,,OIF, +OIF:SP:2:1056,1,"Collège Saint-Exupéry",48.783282,2.176142,0,0,OIF:SA:2:1055,Europe/Paris,,OIF, +OIF:SP:2:106,1,"Ménagerie",48.80246,2.095059,0,0,OIF:SA:2:106,Europe/Paris,,OIF, +OIF:SP:2:1060,1,"Pointe Ouest",48.778073,2.178851,0,0,OIF:SA:2:1060,Europe/Paris,,OIF, +OIF:SP:2:1061,1,"Pointe Ouest",48.77819,2.178918,0,0,OIF:SA:2:1060,Europe/Paris,,OIF, +OIF:SP:2:1062,1,"Mairie - Tarron",48.78197,2.190399,0,0,OIF:SA:59878,Europe/Paris,,OIF, +OIF:SP:2:1064,1,"Gare de Jouy Sud",48.764126,2.161844,0,0,OIF:SA:8739351,Europe/Paris,,OIF, +OIF:SP:2:1065,1,"Técomah",48.76378,2.158813,0,0,OIF:SA:2:1065,Europe/Paris,,OIF, +OIF:SP:2:1066,1,"Técomah",48.763744,2.158786,0,0,OIF:SA:2:1065,Europe/Paris,,OIF, +OIF:SP:2:1067,1,"Campus HEC",48.755456,2.170124,0,0,OIF:SA:2:1067,Europe/Paris,,OIF, +OIF:SP:2:1068,1,"Le Christ de Saclay",48.730916,2.162825,0,0,OIF:SA:24:15235,Europe/Paris,,OIF, +OIF:SP:2:1069,1,"Buc Collège Martin Luther King",48.770612,2.121233,0,0,OIF:SA:2:1069,Europe/Paris,,OIF, +OIF:SP:2:107,1,"Ménagerie",48.802566,2.094187,0,0,OIF:SA:2:106,Europe/Paris,,OIF, +OIF:SP:2:1070,1,"Voluceau",48.837055,2.104795,0,0,OIF:SA:2:1,Europe/Paris,,OIF, +OIF:SP:2:1071,1,"Bel Air",48.833981,2.129002,0,0,OIF:SA:2:1071,Europe/Paris,,OIF, +OIF:SP:2:1072,1,"Gare de Vaucresson",48.836923,2.152571,0,0,OIF:SA:8738226,Europe/Paris,,OIF, +OIF:SP:2:1073,1,"Bel Air",48.833946,2.129247,0,0,OIF:SA:2:1071,Europe/Paris,,OIF, +OIF:SP:2:1074,1,"Gare Rive Droite",48.810155,2.134268,0,0,OIF:SA:8738286,Europe/Paris,,OIF, +OIF:SP:2:1077,1,"Gare du Petit Jouy",48.771637,2.147581,0,0,OIF:SA:8739350,Europe/Paris,,OIF, +OIF:SP:2:1078,1,"Gare du Petit Jouy",48.771799,2.147798,0,0,OIF:SA:8739350,Europe/Paris,,OIF, +OIF:SP:2:1080,1,"Les Loges Église",48.764776,2.140387,0,0,OIF:SA:2:1033,Europe/Paris,,OIF, +OIF:SP:2:1081,1,"Cisterciens",48.789856,2.148113,0,0,OIF:SA:2:1081,Europe/Paris,,OIF, +OIF:SP:2:1082,1,"Cisterciens",48.789991,2.148154,0,0,OIF:SA:2:1081,Europe/Paris,,OIF, +OIF:SP:2:1083,1,"Saint-Quentin-en-Yvelines Gare",48.787965,2.044063,0,0,OIF:SA:8739384,Europe/Paris,,OIF, +OIF:SP:2:1087,1,"Place Laboulaye",48.818765,2.139134,0,0,OIF:SA:2:1087,Europe/Paris,,OIF, +OIF:SP:2:1088,1,"Place Laboulaye",48.818774,2.139379,0,0,OIF:SA:2:1087,Europe/Paris,,OIF, +OIF:SP:2:109,1,"Dépôt Phébus",48.801589,2.104491,0,0,OIF:SA:2:109,Europe/Paris,,OIF, +OIF:SP:2:11,1,"La Muette",48.831739,2.116581,0,0,OIF:SA:2:10,Europe/Paris,,OIF, +OIF:SP:2:110,1,"Place de Verdun",48.836246,2.13904,0,0,OIF:SA:17:1359,Europe/Paris,,OIF, +OIF:SP:2:1103,1,"Central PTT",48.762129,2.137637,0,0,OIF:SA:24:15231,Europe/Paris,,OIF, +OIF:SP:2:1105,1,"Picardie",48.814372,2.157401,0,0,OIF:SA:2:1105,Europe/Paris,,OIF, +OIF:SP:2:1108,1,"Château Gare Rive Gauche",48.800646,2.12889,0,0,OIF:SA:8739315,Europe/Paris,,OIF, +OIF:SP:2:1109,1,"Centre Commercial Parly 2 - les Comtesses",48.827584,2.120152,0,0,OIF:SA:2:1109,Europe/Paris,,OIF, +OIF:SP:2:111,1,"Avenue des Puits",48.836824,2.146363,0,0,OIF:SA:2:111,Europe/Paris,,OIF, +OIF:SP:2:1110,1,"Parc de Clagny",48.812557,2.141022,0,0,OIF:SA:2:1110,Europe/Paris,,OIF, +OIF:SP:2:1111,1,"Château Gare Rive Gauche",48.800176,2.127899,0,0,OIF:SA:8739315,Europe/Paris,,OIF, +OIF:SP:2:1112,1,"Université",48.811629,2.150933,0,0,OIF:SA:2:1112,Europe/Paris,,OIF, +OIF:SP:2:1113,1,"Vergennes",48.799564,2.137344,0,0,OIF:SA:2:1113,Europe/Paris,,OIF, +OIF:SP:2:1114,1,"Côte de Picardie",48.811208,2.151969,0,0,OIF:SA:2:1114,Europe/Paris,,OIF, +OIF:SP:2:1116,1,"Dépôt Phébus",48.801616,2.104736,0,0,OIF:SA:2:109,Europe/Paris,,OIF, +OIF:SP:2:1117,1,"Dépôt Phébus",48.801545,2.10475,0,0,OIF:SA:2:109,Europe/Paris,,OIF, +OIF:SP:2:1118,1,"Pradier",48.829493,2.193886,0,0,OIF:SA:2:1118,Europe/Paris,,OIF, +OIF:SP:2:112,1,"Avenue des Puits",48.836956,2.144933,0,0,OIF:SA:2:111,Europe/Paris,,OIF, +OIF:SP:2:1121,1,"Collège Rameau",48.802938,2.145345,0,0,OIF:SA:2:1121,Europe/Paris,,OIF, +OIF:SP:2:1122,1,"Gare de Vaucresson",48.837382,2.152488,0,0,OIF:SA:8738226,Europe/Paris,,OIF, +OIF:SP:2:1123,1,"Gare de Vaucresson",48.837237,2.152257,0,0,OIF:SA:8738226,Europe/Paris,,OIF, +OIF:SP:2:1124,1,"Picardie",48.814587,2.157019,0,0,OIF:SA:2:1105,Europe/Paris,,OIF, +OIF:SP:2:1125,1,"Les Haies",48.762569,2.142652,0,0,OIF:SA:2:1034,Europe/Paris,,OIF, +OIF:SP:2:1126,1,"Midori",48.763357,2.146782,0,0,OIF:SA:2:1036,Europe/Paris,,OIF, +OIF:SP:2:1127,1,"Gare de Jouy",48.765208,2.16373,0,0,OIF:SA:8739351,Europe/Paris,,OIF, +OIF:SP:2:1129,1,"INRA Château",48.765271,2.176551,0,0,OIF:SA:2:1025,Europe/Paris,,OIF, +OIF:SP:2:1130,1,"INRA Grand Laboratoire",48.765511,2.181594,0,0,OIF:SA:2:1028,Europe/Paris,,OIF, +OIF:SP:2:1131,1,"Pierre Corneille",48.846623,2.136985,0,0,OIF:SA:2:1131,Europe/Paris,,OIF, +OIF:SP:2:114,1,"Dépôt Phébus",48.801553,2.104573,0,0,OIF:SA:2:109,Europe/Paris,,OIF, +OIF:SP:2:115,1,"Villepreux",48.840778,2.146389,0,0,OIF:SA:2:115,Europe/Paris,,OIF, +OIF:SP:2:116,1,"Foch",48.840896,2.152721,0,0,OIF:SA:2:116,Europe/Paris,,OIF, +OIF:SP:2:1164,1,"CRC",48.762357,2.169205,0,0,OIF:SA:2:1164,Europe/Paris,,OIF, +OIF:SP:2:1165,1,"CRC",48.762223,2.16945,0,0,OIF:SA:2:1164,Europe/Paris,,OIF, +OIF:SP:2:1166,1,"Gare de Jouy Sud",48.764046,2.162184,0,0,OIF:SA:8739351,Europe/Paris,,OIF, +OIF:SP:2:1169,1,"Grâce de Dieu",48.803495,2.175576,0,0,OIF:SA:8741460,Europe/Paris,,OIF, +OIF:SP:2:117,1,"Foch",48.840995,2.152788,0,0,OIF:SA:2:116,Europe/Paris,,OIF, +OIF:SP:2:118,1,"Jean Oberlé",48.840397,2.149781,0,0,OIF:SA:2:118,Europe/Paris,,OIF, +OIF:SP:2:119,1,"Place Général Leclerc",48.844069,2.152696,0,0,OIF:SA:2:119,Europe/Paris,,OIF, +OIF:SP:2:12,1,"Centre Commercial Parly 2",48.828551,2.117861,0,0,OIF:SA:21:1032,Europe/Paris,,OIF, +OIF:SP:2:120,1,"Place Général Leclerc",48.844833,2.152761,0,0,OIF:SA:2:119,Europe/Paris,,OIF, +OIF:SP:2:1201,1,"Les Arcades",48.804145,2.17092,0,0,OIF:SA:2:1201,Europe/Paris,,OIF, +OIF:SP:2:1206,1,"Newton",48.792645,2.046554,0,0,OIF:SA:2:1206,Europe/Paris,,OIF, +OIF:SP:2:1207,1,"Newton",48.792987,2.047055,0,0,OIF:SA:2:1206,Europe/Paris,,OIF, +OIF:SP:2:1208,1,"Hélène Andrée",48.809053,2.152806,0,0,OIF:SA:2:1208,Europe/Paris,,OIF, +OIF:SP:2:121,1,"Rond-Point de l'Etoile",48.846882,2.152849,0,0,OIF:SA:2:121,Europe/Paris,,OIF, +OIF:SP:2:122,1,"Rond-Point de l'Etoile",48.847619,2.153132,0,0,OIF:SA:2:121,Europe/Paris,,OIF, +OIF:SP:2:1220,1,"Palais des Congrès",48.80144,2.125853,0,0,OIF:SA:2:1220,Europe/Paris,,OIF, +OIF:SP:2:1221,1,"Château Gare Rive Gauche",48.800283,2.1273,0,0,OIF:SA:8739315,Europe/Paris,,OIF, +OIF:SP:2:123,1,"Lycée Toulouse-Lautrec",48.846869,2.15624,0,0,OIF:SA:2:123,Europe/Paris,,OIF, +OIF:SP:2:124,1,"Lycée Toulouse-Lautrec",48.846824,2.156349,0,0,OIF:SA:2:123,Europe/Paris,,OIF, +OIF:SP:2:125,1,"Pré aux Bois",48.846171,2.170432,0,0,OIF:SA:17:1614,Europe/Paris,,OIF, +OIF:SP:2:126,1,"Pré aux Bois",48.846323,2.169982,0,0,OIF:SA:17:1614,Europe/Paris,,OIF, +OIF:SP:2:1261,1,"Marché des Deux Frères",48.817154,2.127872,0,0,OIF:SA:2:1261,Europe/Paris,,OIF, +OIF:SP:2:1262,1,"Président Doumer",48.803149,2.166025,0,0,OIF:SA:2:1262,Europe/Paris,,OIF, +OIF:SP:2:1263,1,"Président Doumer",48.802798,2.165659,0,0,OIF:SA:2:1262,Europe/Paris,,OIF, +OIF:SP:2:1264,1,"Square Lamôme",48.795199,2.156352,0,0,OIF:SA:2:1264,Europe/Paris,,OIF, +OIF:SP:2:1265,1,"Square Lamôme",48.795199,2.156229,0,0,OIF:SA:2:1264,Europe/Paris,,OIF, +OIF:SP:2:1266,1,"Square Lamôme",48.794588,2.156503,0,0,OIF:SA:2:1264,Europe/Paris,,OIF, +OIF:SP:2:127,1,"R. Poincaré",48.843742,2.175096,0,0,OIF:SA:2:127,Europe/Paris,,OIF, +OIF:SP:2:128,1,"R. Poincaré",48.843455,2.175479,0,0,OIF:SA:2:127,Europe/Paris,,OIF, +OIF:SP:2:129,1,"Collège Stade",48.8357,2.146027,0,0,OIF:SA:2:129,Europe/Paris,,OIF, +OIF:SP:2:13,1,"Centre Commercial Parly 2",48.828659,2.118174,0,0,OIF:SA:21:1032,Europe/Paris,,OIF, +OIF:SP:2:131,1,"Collège les Lauriers",48.834151,2.150035,0,0,OIF:SA:2:131,Europe/Paris,,OIF, +OIF:SP:2:132,1,"Place Laboulaye",48.819169,2.139024,0,0,OIF:SA:2:1087,Europe/Paris,,OIF, +OIF:SP:2:133,1,"Gare de Vaucresson",48.836978,2.153129,0,0,OIF:SA:8738226,Europe/Paris,,OIF, +OIF:SP:2:134,1,"Place de Verdun",48.83642,2.140987,0,0,OIF:SA:17:1359,Europe/Paris,,OIF, +OIF:SP:2:135,1,"Bergson",48.841216,2.181341,0,0,OIF:SA:2:135,Europe/Paris,,OIF, +OIF:SP:2:136,1,"Bergson",48.84126,2.180946,0,0,OIF:SA:2:135,Europe/Paris,,OIF, +OIF:SP:2:137,1,"Pasteur",48.838121,2.179485,0,0,OIF:SA:17:1353,Europe/Paris,,OIF, +OIF:SP:2:138,1,"Soult",48.784251,2.113777,0,0,OIF:SA:2:138,Europe/Paris,,OIF, +OIF:SP:2:139,1,"Gare de Garches",48.838373,2.186305,0,0,OIF:SA:8738225,Europe/Paris,,OIF, +OIF:SP:2:14,1,"Charles Péguy",48.827892,2.121104,0,0,OIF:SA:2:14,Europe/Paris,,OIF, +OIF:SP:2:140,1,"Caserne des Matelots",48.800824,2.104019,0,0,OIF:SA:2:140,Europe/Paris,,OIF, +OIF:SP:2:141,1,"Ville d'Avray Église",48.826467,2.188422,0,0,OIF:SA:17:1403,Europe/Paris,,OIF, +OIF:SP:2:142,1,"Ville d'Avray Église",48.826638,2.188504,0,0,OIF:SA:17:1403,Europe/Paris,,OIF, +OIF:SP:2:143,1,"Jean Rostand",48.824739,2.18659,0,0,OIF:SA:17:1492,Europe/Paris,,OIF, +OIF:SP:2:144,1,"Jean Rostand",48.824631,2.186318,0,0,OIF:SA:17:1492,Europe/Paris,,OIF, +OIF:SP:2:1445,1,"Centre d'Affaires Petit Robinson",48.780531,2.169296,0,0,OIF:SA:2:1052,Europe/Paris,,OIF, +OIF:SP:2:1446,1,"Centre d'Affaires Petit Robinson",48.780135,2.168835,0,0,OIF:SA:2:1052,Europe/Paris,,OIF, +OIF:SP:2:1447,1,"Échangeur",48.779164,2.175107,0,0,OIF:SA:2:1000,Europe/Paris,,OIF, +OIF:SP:2:1448,1,"Échangeur",48.779264,2.175746,0,0,OIF:SA:2:1000,Europe/Paris,,OIF, +OIF:SP:2:146,1,"Les Arcades",48.803596,2.170378,0,0,OIF:SA:2:1201,Europe/Paris,,OIF, +OIF:SP:2:1463,1,"Université",48.811442,2.151587,0,0,OIF:SA:2:1112,Europe/Paris,,OIF, +OIF:SP:2:1464,1,"Gare des Chantiers",48.797485,2.135746,0,0,OIF:SA:8739300,Europe/Paris,,OIF, +OIF:SP:2:1465,1,"Château Gare Rive Gauche",48.798945,2.127741,0,0,OIF:SA:8739315,Europe/Paris,,OIF, +OIF:SP:2:1466,1,"Château Gare Rive Gauche",48.79952,2.127847,0,0,OIF:SA:8739315,Europe/Paris,,OIF, +OIF:SP:2:1467,1,"Gare de Saint-Cyr l'École",48.798989,2.072953,0,0,OIF:SA:8739322,Europe/Paris,,OIF, +OIF:SP:2:1468,1,"Division Leclerc",48.800481,2.073313,0,0,OIF:SA:2:1468,Europe/Paris,,OIF, +OIF:SP:2:147,1,"Fausses Reposes",48.818582,2.1666,0,0,OIF:SA:17:1488,Europe/Paris,,OIF, +OIF:SP:2:1470,1,"Gare de Saint-Cyr l'Ecole-Parking",48.800432,2.075435,0,0,OIF:SA:8739322,Europe/Paris,,OIF, +OIF:SP:2:1471,1,"Gare de Vaucresson",48.837094,2.152339,0,0,OIF:SA:8738226,Europe/Paris,,OIF, +OIF:SP:2:1472,1,"Europe",48.804343,2.130767,0,0,OIF:SA:23:1135,Europe/Paris,,OIF, +OIF:SP:2:1473,1,"Europe",48.804514,2.131093,0,0,OIF:SA:23:1135,Europe/Paris,,OIF, +OIF:SP:2:1474,1,"Satory",48.785321,2.123933,0,0,OIF:SA:2:1474,Europe/Paris,,OIF, +OIF:SP:2:1475,1,"Hôpital A. Mignot Accueil",48.830928,2.125311,0,0,OIF:SA:21:339,Europe/Paris,,OIF, +OIF:SP:2:1476,1,"La Celle Saint-Cloud Gare",48.843192,2.138238,0,0,OIF:SA:8738243,Europe/Paris,,OIF, +OIF:SP:2:1477,1,"Gare des Chantiers - Sceaux",48.797566,2.130767,0,0,OIF:SA:8739300,Europe/Paris,,OIF, +OIF:SP:2:1478,1,"Mairie - Tarron",48.782348,2.190153,0,0,OIF:SA:59878,Europe/Paris,,OIF, +OIF:SP:2:1479,1,"Edouard Branly (Pierre Edouard RATP)",48.800735,2.161856,0,0,OIF:SA:2:1479,Europe/Paris,,OIF, +OIF:SP:2:148,1,"Fausses Reposes",48.818239,2.165377,0,0,OIF:SA:17:1488,Europe/Paris,,OIF, +OIF:SP:2:1480,1,"Square Lamôme",48.794992,2.156366,0,0,OIF:SA:2:1264,Europe/Paris,,OIF, +OIF:SP:2:149,1,"Chasse Royale Napoléon III",48.834047,2.146564,0,0,OIF:SA:2:149,Europe/Paris,,OIF, +OIF:SP:2:15,1,"Charles Péguy",48.828072,2.121593,0,0,OIF:SA:2:14,Europe/Paris,,OIF, +OIF:SP:2:150,1,"Chasse Royale Napoléon III",48.834311,2.142996,0,0,OIF:SA:2:149,Europe/Paris,,OIF, +OIF:SP:2:151,1,"Martin Luther King",48.825897,2.137038,0,0,OIF:SA:2:151,Europe/Paris,,OIF, +OIF:SP:2:152,1,"Martin Luther King",48.826591,2.137716,0,0,OIF:SA:2:151,Europe/Paris,,OIF, +OIF:SP:2:153,1,"Sainte-Claire",48.823628,2.139511,0,0,OIF:SA:2:153,Europe/Paris,,OIF, +OIF:SP:2:155,1,"Montespan",48.822386,2.138848,0,0,OIF:SA:2:155,Europe/Paris,,OIF, +OIF:SP:2:156,1,"Louveciennes Villevert",48.84696,2.109544,0,0,OIF:SA:15:263,Europe/Paris,,OIF, +OIF:SP:2:157,1,"Résidence Sans Souci",48.82403,2.144028,0,0,OIF:SA:2:157,Europe/Paris,,OIF, +OIF:SP:2:158,1,"Progrès",48.824484,2.141168,0,0,OIF:SA:2:158,Europe/Paris,,OIF, +OIF:SP:2:159,1,"Villa Champ Lagarde",48.800841,2.143597,0,0,OIF:SA:2:159,Europe/Paris,,OIF, +OIF:SP:2:16,1,"Bagatelle",48.828907,2.126014,0,0,OIF:SA:2:16,Europe/Paris,,OIF, +OIF:SP:2:160,1,"Normandie",48.821688,2.140648,0,0,OIF:SA:2:160,Europe/Paris,,OIF, +OIF:SP:2:161,1,"Place de la Brèche",48.825259,2.142172,0,0,OIF:SA:2:161,Europe/Paris,,OIF, +OIF:SP:2:162,1,"Place de la Brèche",48.825134,2.142935,0,0,OIF:SA:2:161,Europe/Paris,,OIF, +OIF:SP:2:163,1,"Rond-Point de la Chapelle",48.821529,2.142173,0,0,OIF:SA:2:163,Europe/Paris,,OIF, +OIF:SP:2:164,1,"Rond-Point de la Chapelle",48.822122,2.142375,0,0,OIF:SA:2:163,Europe/Paris,,OIF, +OIF:SP:2:165,1,"Place de la Paix",48.820233,2.140912,0,0,OIF:SA:2:165,Europe/Paris,,OIF, +OIF:SP:2:166,1,"Place de la Paix",48.820306,2.141578,0,0,OIF:SA:2:165,Europe/Paris,,OIF, +OIF:SP:2:167,1,"Maréchal Haig",48.819459,2.145842,0,0,OIF:SA:2:167,Europe/Paris,,OIF, +OIF:SP:2:168,1,"Maréchal Haig",48.819944,2.14603,0,0,OIF:SA:2:167,Europe/Paris,,OIF, +OIF:SP:2:169,1,"Jean Jaurès",48.816132,2.14531,0,0,OIF:SA:2:169,Europe/Paris,,OIF, +OIF:SP:2:17,1,"Bagatelle",48.828915,2.125524,0,0,OIF:SA:2:16,Europe/Paris,,OIF, +OIF:SP:2:170,1,"Jean Jaurès",48.81668,2.145294,0,0,OIF:SA:2:169,Europe/Paris,,OIF, +OIF:SP:2:171,1,"Pershing",48.818396,2.150133,0,0,OIF:SA:2:171,Europe/Paris,,OIF, +OIF:SP:2:173,1,"Lemercier",48.815802,2.146563,0,0,OIF:SA:2:173,Europe/Paris,,OIF, +OIF:SP:2:174,1,"Lemercier",48.815496,2.146346,0,0,OIF:SA:2:173,Europe/Paris,,OIF, +OIF:SP:2:175,1,"Gare Rive Droite",48.809751,2.134243,0,0,OIF:SA:8738286,Europe/Paris,,OIF, +OIF:SP:2:176,1,"Pershing Lemercier",48.814764,2.149615,0,0,OIF:SA:2:176,Europe/Paris,,OIF, +OIF:SP:2:177,1,"Gauthier de Clagny",48.81329,2.155118,0,0,OIF:SA:2:177,Europe/Paris,,OIF, +OIF:SP:2:178,1,"Gauthier de Clagny",48.812938,2.15433,0,0,OIF:SA:2:177,Europe/Paris,,OIF, +OIF:SP:2:179,1,"La Bruyère",48.813354,2.144816,0,0,OIF:SA:2:179,Europe/Paris,,OIF, +OIF:SP:2:18,1,"Jasmin",48.826005,2.121207,0,0,OIF:SA:15:379,Europe/Paris,,OIF, +OIF:SP:2:180,1,"La Bruyère",48.813912,2.144991,0,0,OIF:SA:2:179,Europe/Paris,,OIF, +OIF:SP:2:181,1,"Richard Mique",48.812355,2.143541,0,0,OIF:SA:2:181,Europe/Paris,,OIF, +OIF:SP:2:182,1,"Richard Mique",48.812292,2.143745,0,0,OIF:SA:2:181,Europe/Paris,,OIF, +OIF:SP:2:184,1,"Université",48.809873,2.148476,0,0,OIF:SA:2:1112,Europe/Paris,,OIF, +OIF:SP:2:185,1,"Solférino",48.810764,2.143506,0,0,OIF:SA:2:185,Europe/Paris,,OIF, +OIF:SP:2:186,1,"Solférino",48.811634,2.142332,0,0,OIF:SA:2:185,Europe/Paris,,OIF, +OIF:SP:2:19,1,"Jasmin",48.825755,2.122378,0,0,OIF:SA:15:379,Europe/Paris,,OIF, +OIF:SP:2:191,1,"Place Laboulaye",48.818888,2.13746,0,0,OIF:SA:2:1087,Europe/Paris,,OIF, +OIF:SP:2:192,1,"Place Laboulaye",48.819051,2.138221,0,0,OIF:SA:2:1087,Europe/Paris,,OIF, +OIF:SP:2:193,1,"La Maye",48.817259,2.136581,0,0,OIF:SA:2:193,Europe/Paris,,OIF, +OIF:SP:2:194,1,"La Maye",48.817008,2.136623,0,0,OIF:SA:2:193,Europe/Paris,,OIF, +OIF:SP:2:195,1,"Provence",48.808413,2.140494,0,0,OIF:SA:2:195,Europe/Paris,,OIF, +OIF:SP:2:196,1,"Provence",48.808332,2.140399,0,0,OIF:SA:2:195,Europe/Paris,,OIF, +OIF:SP:2:197,1,"États-Unis Université",48.80814,2.143897,0,0,OIF:SA:2:197,Europe/Paris,,OIF, +OIF:SP:2:198,1,"États-Unis Université",48.808014,2.144224,0,0,OIF:SA:2:197,Europe/Paris,,OIF, +OIF:SP:2:199,1,"République Lesseps",48.806868,2.14699,0,0,OIF:SA:2:199,Europe/Paris,,OIF, +OIF:SP:2:2,1,"Auguste Brunot",48.837799,2.108046,0,0,OIF:SA:2:2,Europe/Paris,,OIF, +OIF:SP:2:20,1,"Hôtel de Ville du Chesnay",48.826121,2.125957,0,0,OIF:SA:2:20,Europe/Paris,,OIF, +OIF:SP:2:200,1,"République Lesseps",48.806276,2.147305,0,0,OIF:SA:2:199,Europe/Paris,,OIF, +OIF:SP:2:201,1,"Gare de Montreuil",48.806866,2.151154,0,0,OIF:SA:8738287,Europe/Paris,,OIF, +OIF:SP:2:202,1,"Gare de Montreuil",48.806785,2.151331,0,0,OIF:SA:8738287,Europe/Paris,,OIF, +OIF:SP:2:203,1,"Antoine Richard",48.80844,2.151897,0,0,OIF:SA:2:203,Europe/Paris,,OIF, +OIF:SP:2:204,1,"Antoine Richard",48.808494,2.152019,0,0,OIF:SA:2:203,Europe/Paris,,OIF, +OIF:SP:2:205,1,"République Lesseps",48.807166,2.147465,0,0,OIF:SA:2:199,Europe/Paris,,OIF, +OIF:SP:2:207,1,"Jules Massenet",48.809333,2.153921,0,0,OIF:SA:2:207,Europe/Paris,,OIF, +OIF:SP:2:208,1,"Jules Massenet",48.809315,2.154084,0,0,OIF:SA:2:207,Europe/Paris,,OIF, +OIF:SP:2:209,1,"Stade de Jussieu",48.809524,2.155621,0,0,OIF:SA:2:209,Europe/Paris,,OIF, +OIF:SP:2:21,1,"Hôtel de Ville du Chesnay",48.826112,2.126039,0,0,OIF:SA:2:20,Europe/Paris,,OIF, +OIF:SP:2:210,1,"Stade de Jussieu",48.809776,2.155525,0,0,OIF:SA:2:209,Europe/Paris,,OIF, +OIF:SP:2:212,1,"Europe",48.804325,2.130672,0,0,OIF:SA:23:1135,Europe/Paris,,OIF, +OIF:SP:2:213,1,"Hôpital A. Mignot Accueil",48.831027,2.125175,0,0,OIF:SA:21:339,Europe/Paris,,OIF, +OIF:SP:2:215,1,"Émile Cousin",48.808799,2.157624,0,0,OIF:SA:2:215,Europe/Paris,,OIF, +OIF:SP:2:216,1,"Émile Cousin",48.808711,2.158387,0,0,OIF:SA:2:215,Europe/Paris,,OIF, +OIF:SP:2:217,1,"Petits Bois",48.807958,2.159696,0,0,OIF:SA:2:217,Europe/Paris,,OIF, +OIF:SP:2:219,1,"Grand Siècle",48.804112,2.15481,0,0,OIF:SA:2:219,Europe/Paris,,OIF, +OIF:SP:2:22,1,"Petit Beauregard",48.835697,2.123481,0,0,OIF:SA:2:22,Europe/Paris,,OIF, +OIF:SP:2:220,1,"Grand Siècle",48.803709,2.15541,0,0,OIF:SA:2:219,Europe/Paris,,OIF, +OIF:SP:2:221,1,"Vauban",48.802256,2.151905,0,0,OIF:SA:2:221,Europe/Paris,,OIF, +OIF:SP:2:222,1,"Vauban",48.802166,2.151769,0,0,OIF:SA:2:221,Europe/Paris,,OIF, +OIF:SP:2:223,1,"Saint-Charles",48.802324,2.149116,0,0,OIF:SA:2:223,Europe/Paris,,OIF, +OIF:SP:2:224,1,"Saint-Charles",48.801459,2.147785,0,0,OIF:SA:2:223,Europe/Paris,,OIF, +OIF:SP:2:225,1,"Saint-Symphorien",48.80498,2.146344,0,0,OIF:SA:2:225,Europe/Paris,,OIF, +OIF:SP:2:226,1,"Saint-Symphorien",48.805106,2.14648,0,0,OIF:SA:2:225,Europe/Paris,,OIF, +OIF:SP:2:227,1,"Collège Rameau",48.803047,2.145671,0,0,OIF:SA:2:1121,Europe/Paris,,OIF, +OIF:SP:2:228,1,"Collège Rameau",48.802975,2.145739,0,0,OIF:SA:2:1121,Europe/Paris,,OIF, +OIF:SP:2:229,1,"Montreuil",48.804923,2.144711,0,0,OIF:SA:2:229,Europe/Paris,,OIF, +OIF:SP:2:23,1,"Petit Beauregard",48.835642,2.12295,0,0,OIF:SA:2:22,Europe/Paris,,OIF, +OIF:SP:2:230,1,"Gare des Chantiers",48.796307,2.1359,0,0,OIF:SA:8739300,Europe/Paris,,OIF, +OIF:SP:2:231,1,"Artois",48.803871,2.144171,0,0,OIF:SA:2:231,Europe/Paris,,OIF, +OIF:SP:2:232,1,"Les Trois Fontaines",48.836386,2.11181,0,0,OIF:SA:21:1001,Europe/Paris,,OIF, +OIF:SP:2:233,1,"Alexandre 1er",48.8057,2.141688,0,0,OIF:SA:2:233,Europe/Paris,,OIF, +OIF:SP:2:234,1,"Alexandre 1er",48.805547,2.141076,0,0,OIF:SA:2:233,Europe/Paris,,OIF, +OIF:SP:2:235,1,"Lycée Hoche",48.805432,2.13679,0,0,OIF:SA:2:235,Europe/Paris,,OIF, +OIF:SP:2:236,1,"Lycée Hoche",48.80527,2.136791,0,0,OIF:SA:2:235,Europe/Paris,,OIF, +OIF:SP:2:237,1,"Prés aux Bois",48.802276,2.158939,0,0,OIF:SA:2:237,Europe/Paris,,OIF, +OIF:SP:2:238,1,"Prés aux Bois",48.80198,2.159444,0,0,OIF:SA:2:237,Europe/Paris,,OIF, +OIF:SP:2:239,1,"Résidence la Forêt",48.815197,2.150498,0,0,OIF:SA:2:239,Europe/Paris,,OIF, +OIF:SP:2:24,1,"Bel Air",48.835555,2.129458,0,0,OIF:SA:2:1071,Europe/Paris,,OIF, +OIF:SP:2:240,1,"Boulevard de Jardy",48.83315,2.153374,0,0,OIF:SA:2:240,Europe/Paris,,OIF, +OIF:SP:2:241,1,"Jules Verne",48.835546,2.134591,0,0,OIF:SA:2:241,Europe/Paris,,OIF, +OIF:SP:2:244,1,"République Lesseps",48.807426,2.146879,0,0,OIF:SA:2:199,Europe/Paris,,OIF, +OIF:SP:2:245,1,"Caserne des Matelots",48.800806,2.104128,0,0,OIF:SA:2:140,Europe/Paris,,OIF, +OIF:SP:2:246,1,"Fourrière Municipale",48.797594,2.102101,0,0,OIF:SA:2:246,Europe/Paris,,OIF, +OIF:SP:2:247,1,"Dépôt Kéolis Versailles",48.80088,2.109529,0,0,OIF:SA:2:247,Europe/Paris,,OIF, +OIF:SP:2:248,1,"Grille de l'Orangerie",48.800551,2.121054,0,0,OIF:SA:2:248,Europe/Paris,,OIF, +OIF:SP:2:249,1,"Grille de l'Orangerie",48.800828,2.120373,0,0,OIF:SA:2:248,Europe/Paris,,OIF, +OIF:SP:2:25,1,"Bel Air",48.836778,2.129726,0,0,OIF:SA:2:1071,Europe/Paris,,OIF, +OIF:SP:2:250,1,"Château Gare Rive Gauche",48.799997,2.128185,0,0,OIF:SA:8739315,Europe/Paris,,OIF, +OIF:SP:2:251,1,"Château Gare Rive Gauche",48.800475,2.128769,0,0,OIF:SA:8739315,Europe/Paris,,OIF, +OIF:SP:2:252,1,"Hôtel de Ville",48.801737,2.131104,0,0,OIF:SA:24:15182,Europe/Paris,,OIF, +OIF:SP:2:253,1,"Hôtel de Ville",48.800696,2.132169,0,0,OIF:SA:24:15182,Europe/Paris,,OIF, +OIF:SP:2:254,1,"Tournelles",48.797973,2.126915,0,0,OIF:SA:2:254,Europe/Paris,,OIF, +OIF:SP:2:255,1,"Tournelles",48.798243,2.127227,0,0,OIF:SA:2:254,Europe/Paris,,OIF, +OIF:SP:2:256,1,"Noailles",48.799162,2.133576,0,0,OIF:SA:2:256,Europe/Paris,,OIF, +OIF:SP:2:257,1,"Noailles",48.79909,2.133794,0,0,OIF:SA:2:256,Europe/Paris,,OIF, +OIF:SP:2:258,1,"Gare des Chantiers",48.797062,2.135775,0,0,OIF:SA:8739300,Europe/Paris,,OIF, +OIF:SP:2:259,1,"Gare des Chantiers",48.797511,2.13546,0,0,OIF:SA:8739300,Europe/Paris,,OIF, +OIF:SP:2:26,1,"Hôpital A. Mignot",48.829944,2.128038,0,0,OIF:SA:21:339,Europe/Paris,,OIF, +OIF:SP:2:260,1,"Vergennes",48.800157,2.13726,0,0,OIF:SA:2:1113,Europe/Paris,,OIF, +OIF:SP:2:261,1,"Vergennes",48.7996,2.137833,0,0,OIF:SA:2:1113,Europe/Paris,,OIF, +OIF:SP:2:264,1,"Bourdonnais",48.795993,2.12559,0,0,OIF:SA:2:264,Europe/Paris,,OIF, +OIF:SP:2:265,1,"Bourdonnais",48.796245,2.125861,0,0,OIF:SA:2:264,Europe/Paris,,OIF, +OIF:SP:2:266,1,"Evêché",48.794193,2.124345,0,0,OIF:SA:2:266,Europe/Paris,,OIF, +OIF:SP:2:267,1,"Evêché",48.794787,2.124873,0,0,OIF:SA:2:266,Europe/Paris,,OIF, +OIF:SP:2:268,1,"Hôpital A. Mignot",48.829648,2.128311,0,0,OIF:SA:21:339,Europe/Paris,,OIF, +OIF:SP:2:269,1,"Borgnis-Desbordes",48.794982,2.123308,0,0,OIF:SA:2:269,Europe/Paris,,OIF, +OIF:SP:2:27,1,"Hôpital A. Mignot",48.830053,2.128269,0,0,OIF:SA:21:339,Europe/Paris,,OIF, +OIF:SP:2:270,1,"Lycée Jules Ferry",48.794826,2.121513,0,0,OIF:SA:2:270,Europe/Paris,,OIF, +OIF:SP:2:271,1,"Lycée Jules Ferry",48.795141,2.121498,0,0,OIF:SA:2:270,Europe/Paris,,OIF, +OIF:SP:2:272,1,"Ponts et Chaussées",48.792961,2.119167,0,0,OIF:SA:24:15359,Europe/Paris,,OIF, +OIF:SP:2:273,1,"Ponts et Chaussées",48.793143,2.119888,0,0,OIF:SA:24:15359,Europe/Paris,,OIF, +OIF:SP:2:278,1,"Martinière",48.784833,2.117325,0,0,OIF:SA:2:278,Europe/Paris,,OIF, +OIF:SP:2:279,1,"Martinière",48.784321,2.117286,0,0,OIF:SA:2:278,Europe/Paris,,OIF, +OIF:SP:2:28,1,"Les Lycées",48.829527,2.131225,0,0,OIF:SA:2:28,Europe/Paris,,OIF, +OIF:SP:2:280,1,"Hôpital A. Mignot",48.829782,2.127848,0,0,OIF:SA:21:339,Europe/Paris,,OIF, +OIF:SP:2:281,1,"Soult",48.784448,2.113259,0,0,OIF:SA:2:138,Europe/Paris,,OIF, +OIF:SP:2:282,1,"Guichard",48.782654,2.120421,0,0,OIF:SA:2:282,Europe/Paris,,OIF, +OIF:SP:2:29,1,"Les Lycées",48.829635,2.130952,0,0,OIF:SA:2:28,Europe/Paris,,OIF, +OIF:SP:2:30,1,"Lycée Jean Moulin",48.828974,2.13331,0,0,OIF:SA:2:30,Europe/Paris,,OIF, +OIF:SP:2:306,1,"Providence",48.795217,2.139741,0,0,OIF:SA:2:306,Europe/Paris,,OIF, +OIF:SP:2:307,1,"Providence",48.795164,2.140041,0,0,OIF:SA:2:306,Europe/Paris,,OIF, +OIF:SP:2:308,1,"Ploix",48.792968,2.143749,0,0,OIF:SA:2:308,Europe/Paris,,OIF, +OIF:SP:2:309,1,"Ploix",48.79373,2.14259,0,0,OIF:SA:2:308,Europe/Paris,,OIF, +OIF:SP:2:31,1,"Lycée Jean Moulin",48.829153,2.132846,0,0,OIF:SA:2:30,Europe/Paris,,OIF, +OIF:SP:2:310,1,"Sarraut",48.791337,2.146516,0,0,OIF:SA:2:310,Europe/Paris,,OIF, +OIF:SP:2:311,1,"Sarraut",48.791947,2.145712,0,0,OIF:SA:2:310,Europe/Paris,,OIF, +OIF:SP:2:312,1,"Cisterciens",48.790504,2.148315,0,0,OIF:SA:2:1081,Europe/Paris,,OIF, +OIF:SP:2:313,1,"Cisterciens",48.790738,2.148614,0,0,OIF:SA:2:1081,Europe/Paris,,OIF, +OIF:SP:2:314,1,"Lamartine",48.79181,2.150541,0,0,OIF:SA:2:314,Europe/Paris,,OIF, +OIF:SP:2:315,1,"Lamartine",48.791675,2.150215,0,0,OIF:SA:2:314,Europe/Paris,,OIF, +OIF:SP:2:316,1,"Moines",48.793252,2.153012,0,0,OIF:SA:2:316,Europe/Paris,,OIF, +OIF:SP:2:317,1,"Moines",48.793874,2.153935,0,0,OIF:SA:2:316,Europe/Paris,,OIF, +OIF:SP:2:318,1,"Porchefontaine",48.798046,2.161199,0,0,OIF:SA:2:318,Europe/Paris,,OIF, +OIF:SP:2:319,1,"Les Peupliers",48.819575,2.169551,0,0,OIF:SA:17:1489,Europe/Paris,,OIF, +OIF:SP:2:32,1,"Odéon - LEP Jean Moulin",48.82688,2.128445,0,0,OIF:SA:2:32,Europe/Paris,,OIF, +OIF:SP:2:320,1,"Coypel Champ Lagarde",48.800074,2.141546,0,0,OIF:SA:2:320,Europe/Paris,,OIF, +OIF:SP:2:321,1,"Coypel Champ Lagarde",48.799993,2.141519,0,0,OIF:SA:2:320,Europe/Paris,,OIF, +OIF:SP:2:323,1,"CPAM Avenue de Paris",48.798098,2.147743,0,0,OIF:SA:2:323,Europe/Paris,,OIF, +OIF:SP:2:324,1,"Conseil Général",48.800094,2.148539,0,0,OIF:SA:2:324,Europe/Paris,,OIF, +OIF:SP:2:325,1,"Conseil Général",48.800662,2.149748,0,0,OIF:SA:2:324,Europe/Paris,,OIF, +OIF:SP:2:33,1,"Odéon - LEP Jean Moulin",48.826548,2.128541,0,0,OIF:SA:2:32,Europe/Paris,,OIF, +OIF:SP:2:339,1,"Alexandre 1er",48.805689,2.140327,0,0,OIF:SA:2:233,Europe/Paris,,OIF, +OIF:SP:2:34,1,"Acacias",48.824868,2.129188,0,0,OIF:SA:2:34,Europe/Paris,,OIF, +OIF:SP:2:35,1,"Acacias",48.825057,2.129051,0,0,OIF:SA:2:34,Europe/Paris,,OIF, +OIF:SP:2:36,1,"Allées du Roy",48.82394,2.117567,0,0,OIF:SA:2:36,Europe/Paris,,OIF, +OIF:SP:2:365,1,"Pershing",48.817992,2.15042,0,0,OIF:SA:2:171,Europe/Paris,,OIF, +OIF:SP:2:37,1,"Allées du Roy",48.823491,2.117882,0,0,OIF:SA:2:36,Europe/Paris,,OIF, +OIF:SP:2:38,1,"Stade Michaux",48.821127,2.11762,0,0,OIF:SA:2:38,Europe/Paris,,OIF, +OIF:SP:2:382,1,"Général Eblé",48.788743,2.117498,0,0,OIF:SA:2:382,Europe/Paris,,OIF, +OIF:SP:2:383,1,"Général Eblé",48.788806,2.11758,0,0,OIF:SA:2:382,Europe/Paris,,OIF, +OIF:SP:2:39,1,"Stade Michaux",48.82015,2.119448,0,0,OIF:SA:2:38,Europe/Paris,,OIF, +OIF:SP:2:396,1,"Fourrière Municipale",48.797567,2.102197,0,0,OIF:SA:2:246,Europe/Paris,,OIF, +OIF:SP:2:398,1,"Satory Giat Industries",48.784185,2.102951,0,0,OIF:SA:24:15363,Europe/Paris,,OIF, +OIF:SP:2:399,1,"Centre d'Alimentation de Satory",48.785664,2.109799,0,0,OIF:SA:2:399,Europe/Paris,,OIF, +OIF:SP:2:4,1,"Les Trois Fontaines",48.836637,2.111482,0,0,OIF:SA:21:1001,Europe/Paris,,OIF, +OIF:SP:2:40,1,"Pottier",48.823972,2.125639,0,0,OIF:SA:24:14989,Europe/Paris,,OIF, +OIF:SP:2:401,1,"Les Peupliers",48.819403,2.168775,0,0,OIF:SA:17:1489,Europe/Paris,,OIF, +OIF:SP:2:403,1,"Les Étangs",48.821821,2.182202,0,0,OIF:SA:17:1491,Europe/Paris,,OIF, +OIF:SP:2:404,1,"Les Étangs",48.821776,2.181807,0,0,OIF:SA:17:1491,Europe/Paris,,OIF, +OIF:SP:2:405,1,"Les Sapins Bleus",48.821084,2.174963,0,0,OIF:SA:17:1490,Europe/Paris,,OIF, +OIF:SP:2:406,1,"Les Sapins Bleus",48.821156,2.175235,0,0,OIF:SA:17:1490,Europe/Paris,,OIF, +OIF:SP:2:407,1,"Université",48.810937,2.150908,0,0,OIF:SA:2:1112,Europe/Paris,,OIF, +OIF:SP:2:41,1,"Pottier",48.823739,2.126157,0,0,OIF:SA:24:14989,Europe/Paris,,OIF, +OIF:SP:2:410,1,"Petits Bois",48.808074,2.159682,0,0,OIF:SA:2:217,Europe/Paris,,OIF, +OIF:SP:2:411,1,"Viroflay Gare Rive Gauche",48.801126,2.171284,0,0,OIF:SA:8739321,Europe/Paris,,OIF, +OIF:SP:2:412,1,"Viroflay Gare Rive Droite",48.80611,2.168778,0,0,OIF:SA:8738288,Europe/Paris,,OIF, +OIF:SP:2:413,1,"Viroflay Gare Rive Droite",48.805697,2.168643,0,0,OIF:SA:8738288,Europe/Paris,,OIF, +OIF:SP:2:414,1,"Gabriel Péri",48.807995,2.166894,0,0,OIF:SA:2:414,Europe/Paris,,OIF, +OIF:SP:2:415,1,"Zone d'Activités",48.806687,2.163265,0,0,OIF:SA:2:415,Europe/Paris,,OIF, +OIF:SP:2:416,1,"Zone d'Activités",48.806524,2.162816,0,0,OIF:SA:2:415,Europe/Paris,,OIF, +OIF:SP:2:417,1,"Chaleil",48.80671,2.161115,0,0,OIF:SA:2:417,Europe/Paris,,OIF, +OIF:SP:2:418,1,"Chaleil",48.806486,2.161007,0,0,OIF:SA:2:417,Europe/Paris,,OIF, +OIF:SP:2:419,1,"Centre d'Alimentation de Satory",48.785314,2.110263,0,0,OIF:SA:2:399,Europe/Paris,,OIF, +OIF:SP:2:42,1,"Redingote",48.82286,2.126719,0,0,OIF:SA:2:42,Europe/Paris,,OIF, +OIF:SP:2:420,1,"Côte de Picardie",48.808949,2.149527,0,0,OIF:SA:2:1114,Europe/Paris,,OIF, +OIF:SP:2:421,1,"Zone Technique",48.786458,2.106695,0,0,OIF:SA:2:421,Europe/Paris,,OIF, +OIF:SP:2:422,1,"Zone Technique",48.786341,2.106954,0,0,OIF:SA:2:421,Europe/Paris,,OIF, +OIF:SP:2:423,1,"Clément Ader",48.78568,2.104141,0,0,OIF:SA:24:15361,Europe/Paris,,OIF, +OIF:SP:2:424,1,"Clément Ader",48.7855,2.104128,0,0,OIF:SA:24:15361,Europe/Paris,,OIF, +OIF:SP:2:425,1,"Rue de Satory",48.79956,2.124976,0,0,OIF:SA:2:425,Europe/Paris,,OIF, +OIF:SP:2:43,1,"Redingote",48.822133,2.12747,0,0,OIF:SA:2:42,Europe/Paris,,OIF, +OIF:SP:2:44,1,"Corneille",48.822832,2.131646,0,0,OIF:SA:2:44,Europe/Paris,,OIF, +OIF:SP:2:442,1,"Gare de Porchefontaine",48.79684,2.154074,0,0,OIF:SA:8739316,Europe/Paris,,OIF, +OIF:SP:2:443,1,"Gare de Porchefontaine",48.797101,2.154019,0,0,OIF:SA:8739316,Europe/Paris,,OIF, +OIF:SP:2:444,1,"Place Louis XIV",48.799131,2.159168,0,0,OIF:SA:2:444,Europe/Paris,,OIF, +OIF:SP:2:445,1,"Place Louis XIV",48.799356,2.159834,0,0,OIF:SA:2:444,Europe/Paris,,OIF, +OIF:SP:2:448,1,"Stade de Porchefontaine",48.79388,2.15807,0,0,OIF:SA:2:448,Europe/Paris,,OIF, +OIF:SP:2:45,1,"Corneille",48.823173,2.131359,0,0,OIF:SA:2:44,Europe/Paris,,OIF, +OIF:SP:2:46,1,"Rue des Sports",48.81911,2.120895,0,0,OIF:SA:2:46,Europe/Paris,,OIF, +OIF:SP:2:468,1,"Gare des Chantiers",48.796417,2.137124,0,0,OIF:SA:8739300,Europe/Paris,,OIF, +OIF:SP:2:47,1,"Rue des Sports",48.818832,2.121196,0,0,OIF:SA:2:46,Europe/Paris,,OIF, +OIF:SP:2:470,1,"Résidence Sans Souci",48.824246,2.143837,0,0,OIF:SA:2:157,Europe/Paris,,OIF, +OIF:SP:2:471,1,"Allée de Jardy",48.821266,2.146271,0,0,OIF:SA:2:471,Europe/Paris,,OIF, +OIF:SP:2:472,1,"Allée de Jardy",48.822668,2.146061,0,0,OIF:SA:2:471,Europe/Paris,,OIF, +OIF:SP:2:473,1,"Villa Champ Lagarde",48.800852,2.144645,0,0,OIF:SA:2:159,Europe/Paris,,OIF, +OIF:SP:2:474,1,"Résidence la Forêt",48.814721,2.150745,0,0,OIF:SA:2:239,Europe/Paris,,OIF, +OIF:SP:2:475,1,"Haras de Jardy",48.825434,2.150597,0,0,OIF:SA:2:475,Europe/Paris,,OIF, +OIF:SP:2:476,1,"Haras de Jardy",48.825229,2.151851,0,0,OIF:SA:2:475,Europe/Paris,,OIF, +OIF:SP:2:477,1,"Résidence les Lauriers",48.834409,2.154159,0,0,OIF:SA:2:477,Europe/Paris,,OIF, +OIF:SP:2:478,1,"Résidence les Lauriers",48.834427,2.154241,0,0,OIF:SA:2:477,Europe/Paris,,OIF, +OIF:SP:2:479,1,"Domaine de la Marche",48.836856,2.15554,0,0,OIF:SA:2:479,Europe/Paris,,OIF, +OIF:SP:2:48,1,"Place Simart",48.819246,2.126611,0,0,OIF:SA:15:394,Europe/Paris,,OIF, +OIF:SP:2:480,1,"Domaine de la Marche",48.836775,2.155676,0,0,OIF:SA:2:479,Europe/Paris,,OIF, +OIF:SP:2:483,1,"Jules Verne",48.835443,2.132427,0,0,OIF:SA:2:241,Europe/Paris,,OIF, +OIF:SP:2:484,1,"Alexis Fourcault",48.80499,2.15244,0,0,OIF:SA:2:484,Europe/Paris,,OIF, +OIF:SP:2:485,1,"Alexis Fourcault",48.805509,2.151431,0,0,OIF:SA:2:484,Europe/Paris,,OIF, +OIF:SP:2:486,1,"Côte de Picardie",48.809082,2.148778,0,0,OIF:SA:2:1114,Europe/Paris,,OIF, +OIF:SP:2:487,1,"Général Mangin",48.813434,2.138896,0,0,OIF:SA:2:487,Europe/Paris,,OIF, +OIF:SP:2:489,1,"Jean Houdon",48.81362,2.136786,0,0,OIF:SA:2:489,Europe/Paris,,OIF, +OIF:SP:2:49,1,"Place Simart",48.819606,2.126841,0,0,OIF:SA:15:394,Europe/Paris,,OIF, +OIF:SP:2:490,1,"Lycée Franco-Allemand",48.770612,2.121233,0,0,OIF:SA:2:490,Europe/Paris,,OIF, +OIF:SP:2:493,1,"INRA Route de Saint-Cyr",48.801853,2.088367,0,0,OIF:SA:2:493,Europe/Paris,,OIF, +OIF:SP:2:494,1,"INRA Route de Saint-Cyr",48.801803,2.085932,0,0,OIF:SA:2:493,Europe/Paris,,OIF, +OIF:SP:2:495,1,"Camping International",48.793938,2.160832,0,0,OIF:SA:2:495,Europe/Paris,,OIF, +OIF:SP:2:496,1,"Centre Commercial Parly 2 - les Comtesses",48.826999,2.119379,0,0,OIF:SA:2:1109,Europe/Paris,,OIF, +OIF:SP:2:497,1,"Centre Commercial Parly 2 - les Comtesses",48.825893,2.119315,0,0,OIF:SA:2:1109,Europe/Paris,,OIF, +OIF:SP:2:498,1,"Centre Commercial Parly 2 - les Comtesses",48.827459,2.120384,0,0,OIF:SA:2:1109,Europe/Paris,,OIF, +OIF:SP:2:499,1,"Maréchal Haig",48.819808,2.145337,0,0,OIF:SA:2:167,Europe/Paris,,OIF, +OIF:SP:2:5,1,"Mairie",48.836088,2.115964,0,0,OIF:SA:15:266,Europe/Paris,,OIF, +OIF:SP:2:50,1,"La Celle",48.817771,2.1258,0,0,OIF:SA:2:50,Europe/Paris,,OIF, +OIF:SP:2:500,1,"Maréchal Haig",48.819763,2.145187,0,0,OIF:SA:2:167,Europe/Paris,,OIF, +OIF:SP:2:505,1,"Edouard Branly",48.801274,2.161936,0,0,OIF:SA:2:505,Europe/Paris,,OIF, +OIF:SP:2:506,1,"Edouard Branly",48.801186,2.16297,0,0,OIF:SA:2:505,Europe/Paris,,OIF, +OIF:SP:2:507,1,"République États-Unis",48.80743,2.144321,0,0,OIF:SA:2:507,Europe/Paris,,OIF, +OIF:SP:2:508,1,"République États-Unis",48.807503,2.144675,0,0,OIF:SA:2:507,Europe/Paris,,OIF, +OIF:SP:2:51,1,"La Celle",48.817348,2.125639,0,0,OIF:SA:2:50,Europe/Paris,,OIF, +OIF:SP:2:510,1,"Villepreux",48.840761,2.146852,0,0,OIF:SA:2:115,Europe/Paris,,OIF, +OIF:SP:2:511,1,"Jean Oberlé",48.84037,2.149645,0,0,OIF:SA:2:118,Europe/Paris,,OIF, +OIF:SP:2:512,1,"Hôpital A. Mignot - les Chênes d'Or",48.830709,2.128225,0,0,OIF:SA:2:512,Europe/Paris,,OIF, +OIF:SP:2:513,1,"Hôpital A. Mignot - les Chênes d'Or",48.830817,2.128524,0,0,OIF:SA:2:512,Europe/Paris,,OIF, +OIF:SP:2:514,1,"Blériot",48.76917,2.12903,0,0,OIF:SA:2:514,Europe/Paris,,OIF, +OIF:SP:2:515,1,"Blériot",48.769233,2.129193,0,0,OIF:SA:2:514,Europe/Paris,,OIF, +OIF:SP:2:516,1,"Gare des Chantiers - Cour de Buc",48.794171,2.137568,0,0,OIF:SA:8739300,Europe/Paris,,OIF, +OIF:SP:2:517,1,"Gare des Chantiers - Cour de Buc",48.794288,2.137813,0,0,OIF:SA:8739300,Europe/Paris,,OIF, +OIF:SP:2:518,1,"Jean Mermoz",48.79872,2.143564,0,0,OIF:SA:2:518,Europe/Paris,,OIF, +OIF:SP:2:519,1,"Jean Mermoz",48.798218,2.144478,0,0,OIF:SA:2:518,Europe/Paris,,OIF, +OIF:SP:2:52,1,"Saint-Antoine de Padoue",48.818085,2.130345,0,0,OIF:SA:2:52,Europe/Paris,,OIF, +OIF:SP:2:520,1,"Saint-Quentin-en-Yvelines Gare",48.788606,2.045515,0,0,OIF:SA:8739384,Europe/Paris,,OIF, +OIF:SP:2:524,1,"Saint-Exupéry",48.796154,2.048085,0,0,OIF:SA:2:524,Europe/Paris,,OIF, +OIF:SP:2:525,1,"Saint-Exupéry",48.796146,2.048479,0,0,OIF:SA:2:524,Europe/Paris,,OIF, +OIF:SP:2:526,1,"Pas du Lac",48.79857,2.047513,0,0,OIF:SA:22:10492,Europe/Paris,,OIF, +OIF:SP:2:527,1,"Pas du Lac",48.798073,2.049965,0,0,OIF:SA:22:10492,Europe/Paris,,OIF, +OIF:SP:2:528,1,"Château de la Maye",48.81635,2.141294,0,0,OIF:SA:2:528,Europe/Paris,,OIF, +OIF:SP:2:529,1,"Château de la Maye",48.816629,2.141415,0,0,OIF:SA:2:528,Europe/Paris,,OIF, +OIF:SP:2:53,1,"Saint-Antoine de Padoue",48.818248,2.131147,0,0,OIF:SA:2:52,Europe/Paris,,OIF, +OIF:SP:2:530,1,"Place Laboulaye",48.819295,2.139037,0,0,OIF:SA:2:1087,Europe/Paris,,OIF, +OIF:SP:2:532,1,"Place du Marché Notre-Dame",48.806923,2.130961,0,0,OIF:SA:2:532,Europe/Paris,,OIF, +OIF:SP:2:533,1,"Place du Marché Notre-Dame",48.806958,2.13058,0,0,OIF:SA:2:532,Europe/Paris,,OIF, +OIF:SP:2:534,1,"Les Marronniers",48.784718,2.099426,0,0,OIF:SA:24:15365,Europe/Paris,,OIF, +OIF:SP:2:535,1,"Les Marronniers",48.78486,2.098908,0,0,OIF:SA:24:15365,Europe/Paris,,OIF, +OIF:SP:2:536,1,"Satory Parc d'Activités",48.785303,2.095587,0,0,OIF:SA:2:536,Europe/Paris,,OIF, +OIF:SP:2:537,1,"Satory Parc d'Activités",48.785455,2.095002,0,0,OIF:SA:2:536,Europe/Paris,,OIF, +OIF:SP:2:538,1,"Satory Giat Industries",48.784257,2.102923,0,0,OIF:SA:24:15363,Europe/Paris,,OIF, +OIF:SP:2:54,1,"Kléber",48.820101,2.132378,0,0,OIF:SA:21:334,Europe/Paris,,OIF, +OIF:SP:2:56,1,"Debasseux",48.816789,2.134991,0,0,OIF:SA:21:344,Europe/Paris,,OIF, +OIF:SP:2:566,1,"Claude Debussy",48.808677,2.154196,0,0,OIF:SA:2:566,Europe/Paris,,OIF, +OIF:SP:2:567,1,"Claude Debussy",48.808768,2.154413,0,0,OIF:SA:2:566,Europe/Paris,,OIF, +OIF:SP:2:568,1,"Parc de Clagny",48.813321,2.140775,0,0,OIF:SA:2:1110,Europe/Paris,,OIF, +OIF:SP:2:569,1,"Parc de Clagny",48.813033,2.140816,0,0,OIF:SA:2:1110,Europe/Paris,,OIF, +OIF:SP:2:57,1,"Debasseux",48.816826,2.135263,0,0,OIF:SA:21:344,Europe/Paris,,OIF, +OIF:SP:2:58,1,"Puits d'Angle",48.838585,2.129868,0,0,OIF:SA:17:1304,Europe/Paris,,OIF, +OIF:SP:2:587,1,"Résidence le Nôtre",48.842057,2.165965,0,0,OIF:SA:2:587,Europe/Paris,,OIF, +OIF:SP:2:588,1,"Stade de la Marche",48.8378,2.161949,0,0,OIF:SA:17:1355,Europe/Paris,,OIF, +OIF:SP:2:589,1,"Stade de la Marche",48.837602,2.161487,0,0,OIF:SA:17:1355,Europe/Paris,,OIF, +OIF:SP:2:59,1,"Puits d'Angle",48.838693,2.130099,0,0,OIF:SA:17:1304,Europe/Paris,,OIF, +OIF:SP:2:590,1,"Rond-Point du Souvenir Français",48.840186,2.164337,0,0,OIF:SA:2:590,Europe/Paris,,OIF, +OIF:SP:2:6,1,"Louis Pelin",48.835233,2.119929,0,0,OIF:SA:15:435,Europe/Paris,,OIF, +OIF:SP:2:60,1,"Grande Terrasse",48.84122,2.13107,0,0,OIF:SA:17:1310,Europe/Paris,,OIF, +OIF:SP:2:600,1,"Maréchal Moncey",48.784491,2.122114,0,0,OIF:SA:2:600,Europe/Paris,,OIF, +OIF:SP:2:601,1,"Maréchal Moncey",48.78451,2.122494,0,0,OIF:SA:2:600,Europe/Paris,,OIF, +OIF:SP:2:602,1,"Delpal",48.786775,2.117833,0,0,OIF:SA:2:602,Europe/Paris,,OIF, +OIF:SP:2:603,1,"Delpal",48.787135,2.117995,0,0,OIF:SA:2:602,Europe/Paris,,OIF, +OIF:SP:2:606,1,"Place des Francine",48.797423,2.131202,0,0,OIF:SA:24:14983,Europe/Paris,,OIF, +OIF:SP:2:61,1,"Grande Terrasse",48.841301,2.131301,0,0,OIF:SA:17:1310,Europe/Paris,,OIF, +OIF:SP:2:611,1,"Pradier",48.82953,2.194049,0,0,OIF:SA:2:1118,Europe/Paris,,OIF, +OIF:SP:2:615,1,"Guichard",48.783014,2.120447,0,0,OIF:SA:2:282,Europe/Paris,,OIF, +OIF:SP:2:617,1,"Jayat",48.788586,2.124994,0,0,OIF:SA:2:617,Europe/Paris,,OIF, +OIF:SP:2:618,1,"Jayat",48.788514,2.125008,0,0,OIF:SA:2:617,Europe/Paris,,OIF, +OIF:SP:2:619,1,"Satory Office Parc",48.782161,2.102158,0,0,OIF:SA:2:536,Europe/Paris,,OIF, +OIF:SP:2:62,1,"Guibert",48.844225,2.133032,0,0,OIF:SA:16:19097,Europe/Paris,,OIF, +OIF:SP:2:621,1,"Les Docks",48.783386,2.117644,0,0,OIF:SA:2:621,Europe/Paris,,OIF, +OIF:SP:2:622,1,"Les Docks",48.783207,2.117603,0,0,OIF:SA:2:621,Europe/Paris,,OIF, +OIF:SP:2:63,1,"Guibert",48.844217,2.133209,0,0,OIF:SA:16:19097,Europe/Paris,,OIF, +OIF:SP:2:64,1,"Hôtel de Ville",48.847007,2.135663,0,0,OIF:SA:16:19140,Europe/Paris,,OIF, +OIF:SP:2:65,1,"Hôtel de Ville",48.846829,2.136671,0,0,OIF:SA:16:19140,Europe/Paris,,OIF, +OIF:SP:2:66,1,"La Celle Saint-Cloud Gare",48.843129,2.13847,0,0,OIF:SA:8738243,Europe/Paris,,OIF, +OIF:SP:2:665,1,"Redingote",48.822151,2.127457,0,0,OIF:SA:2:42,Europe/Paris,,OIF, +OIF:SP:2:666,1,"Redingote",48.8218,2.127404,0,0,OIF:SA:2:42,Europe/Paris,,OIF, +OIF:SP:2:67,1,"La Celle Saint-Cloud Gare",48.843236,2.138006,0,0,OIF:SA:8738243,Europe/Paris,,OIF, +OIF:SP:2:679,1,"Vergennes",48.800578,2.136646,0,0,OIF:SA:2:1113,Europe/Paris,,OIF, +OIF:SP:2:68,1,"Place de la Loi",48.81507,2.128479,0,0,OIF:SA:15:273,Europe/Paris,,OIF, +OIF:SP:2:686,1,"Le Christ de Saclay",48.730172,2.163928,0,0,OIF:SA:24:15235,Europe/Paris,,OIF, +OIF:SP:2:687,1,"Gare des Chantiers",48.79648,2.136975,0,0,OIF:SA:8739300,Europe/Paris,,OIF, +OIF:SP:2:689,1,"Général Mangin",48.813336,2.139318,0,0,OIF:SA:2:487,Europe/Paris,,OIF, +OIF:SP:2:69,1,"Place de la Loi",48.814937,2.12916,0,0,OIF:SA:15:273,Europe/Paris,,OIF, +OIF:SP:2:690,1,"Jean Houdon",48.813511,2.136596,0,0,OIF:SA:2:489,Europe/Paris,,OIF, +OIF:SP:2:691,1,"Victor Duret",48.846447,2.168851,0,0,OIF:SA:2:691,Europe/Paris,,OIF, +OIF:SP:2:7,1,"Louis Pelin",48.835449,2.120242,0,0,OIF:SA:15:435,Europe/Paris,,OIF, +OIF:SP:2:70,1,"Berthier",48.811409,2.126547,0,0,OIF:SA:15:275,Europe/Paris,,OIF, +OIF:SP:2:71,1,"Berthier",48.812048,2.127089,0,0,OIF:SA:15:275,Europe/Paris,,OIF, +OIF:SP:2:72,1,"De Bange",48.814248,2.136062,0,0,OIF:SA:2:72,Europe/Paris,,OIF, +OIF:SP:2:73,1,"De Bange",48.814463,2.136184,0,0,OIF:SA:2:72,Europe/Paris,,OIF, +OIF:SP:2:74,1,"Beauvau Rémilly",48.811315,2.134822,0,0,OIF:SA:2:74,Europe/Paris,,OIF, +OIF:SP:2:75,1,"Beauvau Rémilly",48.811613,2.13512,0,0,OIF:SA:2:74,Europe/Paris,,OIF, +OIF:SP:2:76,1,"Gare Rive Droite",48.809624,2.133794,0,0,OIF:SA:8738286,Europe/Paris,,OIF, +OIF:SP:2:77,1,"Gare Rive Droite",48.809813,2.134065,0,0,OIF:SA:8738286,Europe/Paris,,OIF, +OIF:SP:2:78,1,"Gare Rive Droite - Boulevard de la Reine",48.808826,2.134913,0,0,OIF:SA:8738286,Europe/Paris,,OIF, +OIF:SP:2:79,1,"Gare Rive Droite - Boulevard de la Reine",48.808728,2.135471,0,0,OIF:SA:8738286,Europe/Paris,,OIF, +OIF:SP:2:8,1,"Passy",48.833549,2.118439,0,0,OIF:SA:2:8,Europe/Paris,,OIF, +OIF:SP:2:80,1,"Place du Marché Notre-Dame",48.807519,2.132537,0,0,OIF:SA:2:532,Europe/Paris,,OIF, +OIF:SP:2:81,1,"Place du Marché Notre-Dame",48.807402,2.132592,0,0,OIF:SA:2:532,Europe/Paris,,OIF, +OIF:SP:2:82,1,"Notre-Dame",48.807521,2.128509,0,0,OIF:SA:2:1119,Europe/Paris,,OIF, +OIF:SP:2:83,1,"Notre-Dame",48.807682,2.128168,0,0,OIF:SA:2:1119,Europe/Paris,,OIF, +OIF:SP:2:84,1,"Réservoirs",48.809097,2.125169,0,0,OIF:SA:15:277,Europe/Paris,,OIF, +OIF:SP:2:85,1,"Réservoirs",48.809016,2.125292,0,0,OIF:SA:15:277,Europe/Paris,,OIF, +OIF:SP:2:86,1,"Place Simart",48.818978,2.127224,0,0,OIF:SA:15:394,Europe/Paris,,OIF, +OIF:SP:2:87,1,"Place Simart",48.81905,2.127115,0,0,OIF:SA:15:394,Europe/Paris,,OIF, +OIF:SP:2:9,1,"Passy",48.833432,2.118453,0,0,OIF:SA:2:8,Europe/Paris,,OIF, +OIF:SP:2:90,1,"Europe",48.8048,2.130302,0,0,OIF:SA:23:1135,Europe/Paris,,OIF, +OIF:SP:2:91,1,"Europe",48.804496,2.131161,0,0,OIF:SA:23:1135,Europe/Paris,,OIF, +OIF:SP:2:92,1,"Préfecture",48.802804,2.129902,0,0,OIF:SA:2:92,Europe/Paris,,OIF, +OIF:SP:2:925,1,"Porchefontaine",48.797983,2.161008,0,0,OIF:SA:2:318,Europe/Paris,,OIF, +OIF:SP:2:928,1,"Satory Inrets",48.785898,2.092184,0,0,OIF:SA:2:536,Europe/Paris,,OIF, +OIF:SP:2:929,1,"Pont Saint-Martin",48.79278,2.12831,0,0,OIF:SA:24:15129,Europe/Paris,,OIF, +OIF:SP:2:93,1,"Préfecture",48.802778,2.130147,0,0,OIF:SA:2:92,Europe/Paris,,OIF, +OIF:SP:2:930,1,"Pont Saint-Martin",48.792862,2.128786,0,0,OIF:SA:24:15129,Europe/Paris,,OIF, +OIF:SP:2:931,1,"ZAC Cerf Volant",48.786002,2.132744,0,0,OIF:SA:2:931,Europe/Paris,,OIF, +OIF:SP:2:932,1,"ZAC Cerf Volant",48.786919,2.133121,0,0,OIF:SA:2:931,Europe/Paris,,OIF, +OIF:SP:2:933,1,"Sente du Haras",48.784411,2.132519,0,0,OIF:SA:24:5734,Europe/Paris,,OIF, +OIF:SP:2:934,1,"Sente du Haras",48.784564,2.132614,0,0,OIF:SA:24:5734,Europe/Paris,,OIF, +OIF:SP:2:935,1,"Genevrière",48.780966,2.131526,0,0,OIF:SA:24:5717,Europe/Paris,,OIF, +OIF:SP:2:936,1,"Genevrière",48.78183,2.132067,0,0,OIF:SA:24:5717,Europe/Paris,,OIF, +OIF:SP:2:937,1,"Ville",48.776263,2.129831,0,0,OIF:SA:24:5738,Europe/Paris,,OIF, +OIF:SP:2:938,1,"Ville",48.77612,2.130172,0,0,OIF:SA:24:5738,Europe/Paris,,OIF, +OIF:SP:2:939,1,"Arcades",48.77493,2.133345,0,0,OIF:SA:24:14931,Europe/Paris,,OIF, +OIF:SP:2:94,1,"Préfecture Hôtel de Ville",48.801851,2.129321,0,0,OIF:SA:2:94,Europe/Paris,,OIF, +OIF:SP:2:940,1,"Arcades",48.774481,2.133619,0,0,OIF:SA:24:14931,Europe/Paris,,OIF, +OIF:SP:2:943,1,"La Logeraie",48.766297,2.136017,0,0,OIF:SA:24:15230,Europe/Paris,,OIF, +OIF:SP:2:944,1,"La Logeraie",48.766351,2.136016,0,0,OIF:SA:24:15230,Europe/Paris,,OIF, +OIF:SP:2:945,1,"La Garenne",48.76397,2.136855,0,0,OIF:SA:24:15227,Europe/Paris,,OIF, +OIF:SP:2:95,1,"Préfecture Hôtel de Ville",48.80186,2.129579,0,0,OIF:SA:2:94,Europe/Paris,,OIF, +OIF:SP:2:959,1,"Pont Colbert",48.787981,2.149957,0,0,OIF:SA:2:959,Europe/Paris,,OIF, +OIF:SP:2:960,1,"Pont Colbert",48.787972,2.150133,0,0,OIF:SA:2:959,Europe/Paris,,OIF, +OIF:SP:2:961,1,"Gare du Petit Jouy",48.770178,2.145765,0,0,OIF:SA:8739350,Europe/Paris,,OIF, +OIF:SP:2:962,1,"Gare du Petit Jouy",48.769961,2.145276,0,0,OIF:SA:8739350,Europe/Paris,,OIF, +OIF:SP:2:963,1,"Trois Canards",48.769178,2.15031,0,0,OIF:SA:2:963,Europe/Paris,,OIF, +OIF:SP:2:964,1,"Trois Canards",48.769375,2.149915,0,0,OIF:SA:2:963,Europe/Paris,,OIF, +OIF:SP:2:965,1,"Musée de Jouy",48.76861,2.15503,0,0,OIF:SA:2:965,Europe/Paris,,OIF, +OIF:SP:2:966,1,"Musée de Jouy",48.768975,2.152364,0,0,OIF:SA:2:965,Europe/Paris,,OIF, +OIF:SP:2:967,1,"Sainte-Suzanne",48.767428,2.158025,0,0,OIF:SA:2:967,Europe/Paris,,OIF, +OIF:SP:2:968,1,"Sainte-Suzanne",48.767043,2.159142,0,0,OIF:SA:2:967,Europe/Paris,,OIF, +OIF:SP:2:969,1,"Les Tilleuls",48.765187,2.161568,0,0,OIF:SA:2:969,Europe/Paris,,OIF, +OIF:SP:2:970,1,"Les Tilleuls",48.765231,2.16116,0,0,OIF:SA:2:969,Europe/Paris,,OIF, +OIF:SP:2:973,1,"Place de la Marne",48.764889,2.167171,0,0,OIF:SA:2:973,Europe/Paris,,OIF, +OIF:SP:2:974,1,"Place de la Marne",48.764961,2.167157,0,0,OIF:SA:2:973,Europe/Paris,,OIF, +OIF:SP:2:975,1,"Montcel",48.764776,2.16951,0,0,OIF:SA:2:975,Europe/Paris,,OIF, +OIF:SP:2:976,1,"Montcel",48.764865,2.169441,0,0,OIF:SA:2:975,Europe/Paris,,OIF, +OIF:SP:2:977,1,"Pétineau",48.763772,2.172096,0,0,OIF:SA:2:977,Europe/Paris,,OIF, +OIF:SP:2:978,1,"Pétineau",48.763871,2.171906,0,0,OIF:SA:2:977,Europe/Paris,,OIF, +OIF:SP:2:979,1,"Gymnase Val d'Enfer",48.76312,2.175103,0,0,OIF:SA:2:979,Europe/Paris,,OIF, +OIF:SP:2:98,1,"Rue de Satory",48.799693,2.124173,0,0,OIF:SA:2:425,Europe/Paris,,OIF, +OIF:SP:2:980,1,"Gymnase Val d'Enfer",48.763201,2.175021,0,0,OIF:SA:2:979,Europe/Paris,,OIF, +OIF:SP:2:981,1,"Anatole France",48.761466,2.181076,0,0,OIF:SA:2:981,Europe/Paris,,OIF, +OIF:SP:2:982,1,"Anatole France",48.761527,2.180165,0,0,OIF:SA:2:981,Europe/Paris,,OIF, +OIF:SP:2:983,1,"Clos Normand",48.758192,2.186334,0,0,OIF:SA:2:983,Europe/Paris,,OIF, +OIF:SP:2:984,1,"Clos Normand",48.758173,2.186103,0,0,OIF:SA:2:983,Europe/Paris,,OIF, +OIF:SP:2:985,1,"Gare de Vauboyen",48.757838,2.19063,0,0,OIF:SA:8739353,Europe/Paris,,OIF, +OIF:SP:2:986,1,"Gare de Vauboyen",48.757883,2.190766,0,0,OIF:SA:8739353,Europe/Paris,,OIF, +OIF:SP:2:987,1,"Pré Fleuri",48.750741,2.210319,0,0,OIF:SA:2:987,Europe/Paris,,OIF, +OIF:SP:2:988,1,"Pré Fleuri",48.750822,2.210278,0,0,OIF:SA:2:987,Europe/Paris,,OIF, +OIF:SP:2:989,1,"Bellevue",48.738625,2.228137,0,0,OIF:SA:2:989,Europe/Paris,,OIF, +OIF:SP:2:99,1,"Mairie de Garches",48.842328,2.186362,0,0,OIF:SA:2:99,Europe/Paris,,OIF, +OIF:SP:2:991,1,"Parc de Diane",48.754493,2.189566,0,0,OIF:SA:2:991,Europe/Paris,,OIF, +OIF:SP:2:992,1,"Parc de Diane",48.754502,2.189715,0,0,OIF:SA:2:991,Europe/Paris,,OIF, +OIF:SP:2:993,1,"Ronsard",48.7535,2.186361,0,0,OIF:SA:2:993,Europe/Paris,,OIF, +OIF:SP:2:994,1,"Ronsard",48.753518,2.186592,0,0,OIF:SA:2:993,Europe/Paris,,OIF, +OIF:SP:2:995,1,"Val d'Albian Villeras",48.755344,2.180225,0,0,OIF:SA:2:995,Europe/Paris,,OIF, +OIF:SP:2:996,1,"Val d'Albian Villeras",48.755173,2.180334,0,0,OIF:SA:2:995,Europe/Paris,,OIF, +OIF:SP:2:997,1,"Val d'Albian Écoles",48.752722,2.182217,0,0,OIF:SA:2:997,Europe/Paris,,OIF, +OIF:SP:2:998,1,"Val d'Albian Écoles",48.752668,2.182258,0,0,OIF:SA:2:997,Europe/Paris,,OIF, +OIF:SP:2:999,1,"Échangeur A86",48.78036,2.156417,0,0,OIF:SA:2:1000,Europe/Paris,,OIF, +OIF:SP:30:1,1,"Mairie Arville",48.188507,2.547818,0,0,OIF:SA:30:1,Europe/Paris,,OIF, +OIF:SP:30:10,1,"Rue de l'Ecluse",48.237083,2.70343,0,0,OIF:SA:30:10,Europe/Paris,,OIF, +OIF:SP:30:100,1,"Château d'Eau",48.244815,2.607827,0,0,OIF:SA:30:100,Europe/Paris,,OIF, +OIF:SP:30:101,1,"Château d'Eau",48.244815,2.607746,0,0,OIF:SA:30:100,Europe/Paris,,OIF, +OIF:SP:30:102,1,"Butteau",48.153088,2.661697,0,0,OIF:SA:30:102,Europe/Paris,,OIF, +OIF:SP:30:104,1,"Chenouteau",48.172054,2.651033,0,0,OIF:SA:30:104,Europe/Paris,,OIF, +OIF:SP:30:105,1,"Chenouteau",48.172153,2.651074,0,0,OIF:SA:30:104,Europe/Paris,,OIF, +OIF:SP:30:106,1,"Église Chevry-en-Sereine",48.253227,2.945461,0,0,OIF:SA:30:106,Europe/Paris,,OIF, +OIF:SP:30:107,1,"Église Chevry-en-Sereine",48.253135,2.946012,0,0,OIF:SA:30:106,Europe/Paris,,OIF, +OIF:SP:30:109,1,"Église Chevrainvilliers",48.244667,2.613426,0,0,OIF:SA:30:109,Europe/Paris,,OIF, +OIF:SP:30:11,1,"Rue de l'Ecluse",48.23747,2.703325,0,0,OIF:SA:30:10,Europe/Paris,,OIF, +OIF:SP:30:111,1,"Mairie Chenou",48.165235,2.658748,0,0,OIF:SA:30:111,Europe/Paris,,OIF, +OIF:SP:30:112,1,"Trémainville",48.155558,2.632121,0,0,OIF:SA:30:112,Europe/Paris,,OIF, +OIF:SP:30:113,1,"Trémainville",48.156195,2.632836,0,0,OIF:SA:30:112,Europe/Paris,,OIF, +OIF:SP:30:114,1,"Villeflambeau",48.2526,2.927413,0,0,OIF:SA:12:3375,Europe/Paris,,OIF, +OIF:SP:30:115,1,"Gare Champagne-sur-Seine",48.406291,2.799327,0,0,OIF:SA:8768245,Europe/Paris,,OIF, +OIF:SP:30:117,1,"Place Schneider",48.397151,2.798863,0,0,OIF:SA:12:3935,Europe/Paris,,OIF, +OIF:SP:30:118,1,"Place Schneider",48.397186,2.798787,0,0,OIF:SA:12:3935,Europe/Paris,,OIF, +OIF:SP:30:119,1,"Verteau",48.245945,2.600994,0,0,OIF:SA:30:119,Europe/Paris,,OIF, +OIF:SP:30:120,1,"Verteau",48.245929,2.600267,0,0,OIF:SA:30:119,Europe/Paris,,OIF, +OIF:SP:30:121,1,"La Boulinière",48.273246,2.739686,0,0,OIF:SA:30:121,Europe/Paris,,OIF, +OIF:SP:30:122,1,"La Boulinière",48.273596,2.742436,0,0,OIF:SA:30:121,Europe/Paris,,OIF, +OIF:SP:30:123,1,"Château",48.271383,2.737516,0,0,OIF:SA:30:123,Europe/Paris,,OIF, +OIF:SP:30:124,1,"Le Clos",48.273058,2.739361,0,0,OIF:SA:30:124,Europe/Paris,,OIF, +OIF:SP:30:125,1,"Liberté",48.271889,2.734126,0,0,OIF:SA:30:125,Europe/Paris,,OIF, +OIF:SP:30:126,1,"Liberté",48.271826,2.733964,0,0,OIF:SA:30:125,Europe/Paris,,OIF, +OIF:SP:30:127,1,"Petit Châtelet",48.270163,2.725951,0,0,OIF:SA:30:127,Europe/Paris,,OIF, +OIF:SP:30:128,1,"Petit Châtelet",48.270327,2.727825,0,0,OIF:SA:30:127,Europe/Paris,,OIF, +OIF:SP:30:1296,1,"Collège Vasco",48.27944,2.674307,0,0,OIF:SA:30:1296,Europe/Paris,,OIF, +OIF:SP:30:1300,1,"École Flagy",48.310931,2.923363,0,0,OIF:SA:12:3341,Europe/Paris,,OIF, +OIF:SP:30:1301,1,"Mairie Diant",48.281837,2.991442,0,0,OIF:SA:30:1301,Europe/Paris,,OIF, +OIF:SP:30:1302,1,"Mairie Diant",48.281837,2.991402,0,0,OIF:SA:30:1301,Europe/Paris,,OIF, +OIF:SP:30:1303,1,"Église Thoury-Férottes",48.299844,2.938679,0,0,OIF:SA:12:3357,Europe/Paris,,OIF, +OIF:SP:30:1304,1,"Église Thoury-Férottes",48.299844,2.938679,0,0,OIF:SA:12:3357,Europe/Paris,,OIF, +OIF:SP:30:1305,1,"Mairie Thoury-Férottes",48.292039,2.943204,0,0,OIF:SA:12:3357,Europe/Paris,,OIF, +OIF:SP:30:1327,1,"Gare Carnot",48.26866,2.685899,0,0,OIF:SA:8768412,Europe/Paris,,OIF, +OIF:SP:30:1328,1,"Église Chevrainvilliers",48.24476,2.613433,0,0,OIF:SA:30:109,Europe/Paris,,OIF, +OIF:SP:30:1329,1,"Transformateur Centre",48.243199,2.652579,0,0,OIF:SA:30:1329,Europe/Paris,,OIF, +OIF:SP:30:1330,1,"Puiselet",48.264653,2.649878,0,0,OIF:SA:30:1330,Europe/Paris,,OIF, +OIF:SP:30:1331,1,"Marie Vaux sur Lunain",48.22688,2.937014,0,0,OIF:SA:12:3383,Europe/Paris,,OIF, +OIF:SP:30:1332,1,"Grand Ceriseaux",48.184974,2.772638,0,0,OIF:SA:30:1332,Europe/Paris,,OIF, +OIF:SP:30:1333,1,"Seineboué",48.143323,2.496018,0,0,OIF:SA:30:1333,Europe/Paris,,OIF, +OIF:SP:30:1334,1,"Barnonville",48.143028,2.487982,0,0,OIF:SA:30:1334,Europe/Paris,,OIF, +OIF:SP:30:1335,1,"Centre Beaumont du Gatinais",48.136012,2.475281,0,0,OIF:SA:30:1335,Europe/Paris,,OIF, +OIF:SP:30:1336,1,"Route de Charmoy",48.185277,2.529205,0,0,OIF:SA:30:1336,Europe/Paris,,OIF, +OIF:SP:30:1337,1,"Laveaux",48.226855,2.659166,0,0,OIF:SA:30:1337,Europe/Paris,,OIF, +OIF:SP:30:1338,1,"Mocpoix",48.159072,2.728112,0,0,OIF:SA:30:1338,Europe/Paris,,OIF, +OIF:SP:30:1339,1,"Carougie Praseaux",48.192981,2.534482,0,0,OIF:SA:30:1339,Europe/Paris,,OIF, +OIF:SP:30:1340,1,"Mairie Arville",48.188363,2.54775,0,0,OIF:SA:30:1,Europe/Paris,,OIF, +OIF:SP:30:1341,1,"Montfort",48.143153,2.695184,0,0,OIF:SA:30:1341,Europe/Paris,,OIF, +OIF:SP:30:1342,1,"Plantagenet",48.145697,2.695672,0,0,OIF:SA:30:1342,Europe/Paris,,OIF, +OIF:SP:30:1343,1,"Abbaye",48.150108,2.708562,0,0,OIF:SA:30:1343,Europe/Paris,,OIF, +OIF:SP:30:1344,1,"Charles de Gaulle",48.143296,2.698383,0,0,OIF:SA:30:1344,Europe/Paris,,OIF, +OIF:SP:30:1345,1,"Foyer Rural",48.148814,2.696647,0,0,OIF:SA:30:1345,Europe/Paris,,OIF, +OIF:SP:30:1346,1,"Centre Commercial Bréau",48.364137,2.953821,0,0,OIF:SA:30:1346,Europe/Paris,,OIF, +OIF:SP:30:1348,1,"LEP Gustave Eiffel",48.373271,2.927478,0,0,OIF:SA:30:1348,Europe/Paris,,OIF, +OIF:SP:30:135,1,"Église Poste Dordives",48.143691,2.770334,0,0,OIF:SA:30:135,Europe/Paris,,OIF, +OIF:SP:30:1350,1,"Montereau",48.380081,2.943989,0,0,OIF:SA:8768230,Europe/Paris,,OIF, +OIF:SP:30:1351,1,"Montereau",48.380081,2.943989,0,0,OIF:SA:8768230,Europe/Paris,,OIF, +OIF:SP:30:1352,1,"Naudet Commissariat",48.381277,2.954426,0,0,OIF:SA:30:1352,Europe/Paris,,OIF, +OIF:SP:30:1353,1,"Place Lepesme",48.382281,2.954215,0,0,OIF:SA:30:1352,Europe/Paris,,OIF, +OIF:SP:30:136,1,"Église Poste Dordives",48.140673,2.786216,0,0,OIF:SA:30:135,Europe/Paris,,OIF, +OIF:SP:30:137,1,"Saint-Séverin",48.140673,2.786216,0,0,OIF:SA:30:137,Europe/Paris,,OIF, +OIF:SP:30:138,1,"Charmois",48.361229,2.826222,0,0,OIF:SA:30:138,Europe/Paris,,OIF, +OIF:SP:30:139,1,"Charmois",48.360968,2.826382,0,0,OIF:SA:30:138,Europe/Paris,,OIF, +OIF:SP:30:14,1,"Fromonceau",48.24072,2.702016,0,0,OIF:SA:30:14,Europe/Paris,,OIF, +OIF:SP:30:140,1,"Petit Jardin",48.369794,2.826977,0,0,OIF:SA:30:140,Europe/Paris,,OIF, +OIF:SP:30:141,1,"Petit Jardin",48.369461,2.827068,0,0,OIF:SA:30:140,Europe/Paris,,OIF, +OIF:SP:30:142,1,"La Madeleine",48.36879,2.834875,0,0,OIF:SA:30:142,Europe/Paris,,OIF, +OIF:SP:30:143,1,"La Madeleine",48.368927,2.834512,0,0,OIF:SA:30:142,Europe/Paris,,OIF, +OIF:SP:30:144,1,"Carrefour Cateline",48.354353,2.821275,0,0,OIF:SA:30:144,Europe/Paris,,OIF, +OIF:SP:30:145,1,"Carrefour Cateline",48.354148,2.820949,0,0,OIF:SA:30:144,Europe/Paris,,OIF, +OIF:SP:30:146,1,"Ravanne",48.363241,2.826646,0,0,OIF:SA:30:146,Europe/Paris,,OIF, +OIF:SP:30:147,1,"Ravanne",48.362955,2.826387,0,0,OIF:SA:30:146,Europe/Paris,,OIF, +OIF:SP:30:148,1,"Avenue de Sens",48.370344,2.828736,0,0,OIF:SA:30:148,Europe/Paris,,OIF, +OIF:SP:30:149,1,"Avenue de Sens",48.370382,2.828332,0,0,OIF:SA:30:148,Europe/Paris,,OIF, +OIF:SP:30:15,1,"Fromonceau",48.240693,2.702096,0,0,OIF:SA:30:14,Europe/Paris,,OIF, +OIF:SP:30:150,1,"Vilette",48.351099,2.812983,0,0,OIF:SA:30:150,Europe/Paris,,OIF, +OIF:SP:30:151,1,"Vilette",48.351196,2.812937,0,0,OIF:SA:30:150,Europe/Paris,,OIF, +OIF:SP:30:152,1,"Place Berne Bellecourt",48.176778,2.871681,0,0,OIF:SA:12:3353,Europe/Paris,,OIF, +OIF:SP:30:153,1,"Place Berne Bellecourt",48.176815,2.871533,0,0,OIF:SA:12:3353,Europe/Paris,,OIF, +OIF:SP:30:154,1,"Route de Chevry",48.170337,2.872234,0,0,OIF:SA:30:154,Europe/Paris,,OIF, +OIF:SP:30:155,1,"Route de Chevry",48.170526,2.872262,0,0,OIF:SA:30:154,Europe/Paris,,OIF, +OIF:SP:30:156,1,"Edmond Hubert",48.177168,2.865124,0,0,OIF:SA:30:156,Europe/Paris,,OIF, +OIF:SP:30:157,1,"Edmond Hubert",48.177331,2.864749,0,0,OIF:SA:30:156,Europe/Paris,,OIF, +OIF:SP:30:158,1,"La Croix du Gué",48.334352,2.786381,0,0,OIF:SA:30:158,Europe/Paris,,OIF, +OIF:SP:30:159,1,"La Croix du Gué",48.334452,2.786139,0,0,OIF:SA:30:158,Europe/Paris,,OIF, +OIF:SP:30:16,1,"La Garenne",48.240161,2.699858,0,0,OIF:SA:30:16,Europe/Paris,,OIF, +OIF:SP:30:160,1,"Ecluse",48.334075,2.781038,0,0,OIF:SA:30:160,Europe/Paris,,OIF, +OIF:SP:30:161,1,"Ecluse",48.333934,2.780511,0,0,OIF:SA:30:160,Europe/Paris,,OIF, +OIF:SP:30:162,1,"Les Merisiers",48.336431,2.790404,0,0,OIF:SA:30:162,Europe/Paris,,OIF, +OIF:SP:30:163,1,"Les Merisiers",48.336117,2.79032,0,0,OIF:SA:30:162,Europe/Paris,,OIF, +OIF:SP:30:164,1,"Petit Bagneaux",48.23197,2.688467,0,0,OIF:SA:30:164,Europe/Paris,,OIF, +OIF:SP:30:165,1,"Le Carrouge",48.229777,2.668766,0,0,OIF:SA:30:165,Europe/Paris,,OIF, +OIF:SP:30:166,1,"Le Carrouge",48.229749,2.669318,0,0,OIF:SA:30:165,Europe/Paris,,OIF, +OIF:SP:30:167,1,"Église Faÿ-lès-Nemours",48.231854,2.684337,0,0,OIF:SA:30:167,Europe/Paris,,OIF, +OIF:SP:30:168,1,"Église Faÿ-les-Nemours",48.232005,2.685146,0,0,OIF:SA:30:167,Europe/Paris,,OIF, +OIF:SP:30:169,1,"Laveaux",48.226855,2.659166,0,0,OIF:SA:30:1337,Europe/Paris,,OIF, +OIF:SP:30:17,1,"La Garenne",48.24053,2.699712,0,0,OIF:SA:30:16,Europe/Paris,,OIF, +OIF:SP:30:170,1,"Mairie Faÿ-lès-Nemours",48.230644,2.673791,0,0,OIF:SA:30:170,Europe/Paris,,OIF, +OIF:SP:30:171,1,"Mairie Faÿ-les-Nemours",48.230742,2.674209,0,0,OIF:SA:30:170,Europe/Paris,,OIF, +OIF:SP:30:174,1,"François 1er",48.409806,2.693419,0,0,OIF:SA:12:3323,Europe/Paris,,OIF, +OIF:SP:30:176,1,"Place de l'Étape",48.407859,2.703763,0,0,OIF:SA:14:2150,Europe/Paris,,OIF, +OIF:SP:30:177,1,"Place de l'Étape",48.407788,2.7036,0,0,OIF:SA:14:2150,Europe/Paris,,OIF, +OIF:SP:30:178,1,"Château-Fontainebleau",48.403594,2.69925,0,0,OIF:SA:14:14988,Europe/Paris,,OIF, +OIF:SP:30:179,1,"Château-Fontainebleau",48.404058,2.700225,0,0,OIF:SA:14:14988,Europe/Paris,,OIF, +OIF:SP:30:181,1,"Stade de la Faisanderie",48.402474,2.68597,0,0,OIF:SA:12:3315,Europe/Paris,,OIF, +OIF:SP:30:182,1,"Route de Charmoy",48.185284,2.529122,0,0,OIF:SA:30:1336,Europe/Paris,,OIF, +OIF:SP:30:183,1,"Les 4 Routes",48.319778,2.685378,0,0,OIF:SA:30:183,Europe/Paris,,OIF, +OIF:SP:30:185,1,"L'Auberge",48.312798,2.683148,0,0,OIF:SA:30:185,Europe/Paris,,OIF, +OIF:SP:30:186,1,"Centre Grez-sur-Loing",48.317867,2.692982,0,0,OIF:SA:30:186,Europe/Paris,,OIF, +OIF:SP:30:187,1,"Centre Grez-sur-Loing",48.318271,2.693254,0,0,OIF:SA:30:186,Europe/Paris,,OIF, +OIF:SP:30:188,1,"Les Fours",48.314946,2.683648,0,0,OIF:SA:30:188,Europe/Paris,,OIF, +OIF:SP:30:190,1,"Hulay",48.304202,2.680477,0,0,OIF:SA:30:190,Europe/Paris,,OIF, +OIF:SP:30:191,1,"Hulay",48.30413,2.680261,0,0,OIF:SA:30:190,Europe/Paris,,OIF, +OIF:SP:30:192,1,"Groupe Scolaire",48.316839,2.688082,0,0,OIF:SA:30:192,Europe/Paris,,OIF, +OIF:SP:30:193,1,"Groupe Scolaire",48.316919,2.688217,0,0,OIF:SA:30:192,Europe/Paris,,OIF, +OIF:SP:30:194,1,"LEP Fontaineroux",48.439105,2.801129,0,0,OIF:SA:30:194,Europe/Paris,,OIF, +OIF:SP:30:196,1,"Ichy",48.202843,2.545939,0,0,OIF:SA:30:196,Europe/Paris,,OIF, +OIF:SP:30:197,1,"Ichy",48.203723,2.546601,0,0,OIF:SA:30:197,Europe/Paris,,OIF, +OIF:SP:30:198,1,"Cugny",48.31858,2.769867,0,0,OIF:SA:30:198,Europe/Paris,,OIF, +OIF:SP:30:199,1,"Cugny",48.318591,2.769354,0,0,OIF:SA:30:198,Europe/Paris,,OIF, +OIF:SP:30:20,1,"Glandelles",48.214938,2.714617,0,0,OIF:SA:30:20,Europe/Paris,,OIF, +OIF:SP:30:200,1,"Les Genévriers",48.31821,2.742606,0,0,OIF:SA:30:200,Europe/Paris,,OIF, +OIF:SP:30:201,1,"Les Genévriers",48.318032,2.742052,0,0,OIF:SA:30:200,Europe/Paris,,OIF, +OIF:SP:30:202,1,"Gratereau",48.326826,2.772132,0,0,OIF:SA:30:202,Europe/Paris,,OIF, +OIF:SP:30:203,1,"Gratereau",48.326502,2.772157,0,0,OIF:SA:30:202,Europe/Paris,,OIF, +OIF:SP:30:204,1,"Mairie la Genevraye",48.321054,2.746834,0,0,OIF:SA:30:204,Europe/Paris,,OIF, +OIF:SP:30:205,1,"Mairie la Genevraye",48.320731,2.74671,0,0,OIF:SA:30:204,Europe/Paris,,OIF, +OIF:SP:30:206,1,"La Garenne",48.201253,2.703113,0,0,OIF:SA:30:206,Europe/Paris,,OIF, +OIF:SP:30:207,1,"La Garenne",48.201233,2.703154,0,0,OIF:SA:30:206,Europe/Paris,,OIF, +OIF:SP:30:208,1,"Rue du Gâtinais",48.209987,2.702004,0,0,OIF:SA:30:208,Europe/Paris,,OIF, +OIF:SP:30:209,1,"Rue du Gâtinais",48.210059,2.702071,0,0,OIF:SA:30:208,Europe/Paris,,OIF, +OIF:SP:30:21,1,"Glandelles",48.216468,2.714104,0,0,OIF:SA:30:20,Europe/Paris,,OIF, +OIF:SP:30:210,1,"La Groue",48.207944,2.70277,0,0,OIF:SA:30:210,Europe/Paris,,OIF, +OIF:SP:30:211,1,"La Groue",48.207989,2.702676,0,0,OIF:SA:30:210,Europe/Paris,,OIF, +OIF:SP:30:214,1,"Église Treuzy-Levelay",48.277761,2.802545,0,0,OIF:SA:30:214,Europe/Paris,,OIF, +OIF:SP:30:215,1,"Église Treuzy-Levelay",48.277932,2.802519,0,0,OIF:SA:30:214,Europe/Paris,,OIF, +OIF:SP:30:216,1,"Mairie Treuzy-Levelay",48.273328,2.811691,0,0,OIF:SA:30:216,Europe/Paris,,OIF, +OIF:SP:30:217,1,"Mairie Treuzy-Levelay",48.273319,2.811637,0,0,OIF:SA:30:216,Europe/Paris,,OIF, +OIF:SP:30:218,1,"La Scierie",48.273992,2.820776,0,0,OIF:SA:30:218,Europe/Paris,,OIF, +OIF:SP:30:219,1,"La Scierie",48.273983,2.820775,0,0,OIF:SA:30:218,Europe/Paris,,OIF, +OIF:SP:30:22,1,"La Glandelière",48.204482,2.719707,0,0,OIF:SA:30:22,Europe/Paris,,OIF, +OIF:SP:30:221,1,"Hôtel de Ville Lorrez",48.237171,2.901773,0,0,OIF:SA:12:3377,Europe/Paris,,OIF, +OIF:SP:30:222,1,"Hôtel de Ville Lorrez-le-Bocage",48.237353,2.901223,0,0,OIF:SA:12:3377,Europe/Paris,,OIF, +OIF:SP:30:224,1,"Préaux",48.223305,2.875034,0,0,OIF:SA:30:224,Europe/Paris,,OIF, +OIF:SP:30:225,1,"Préaux",48.22317,2.875073,0,0,OIF:SA:30:224,Europe/Paris,,OIF, +OIF:SP:30:227,1,"Villenouette",48.233687,2.919098,0,0,OIF:SA:12:3381,Europe/Paris,,OIF, +OIF:SP:30:228,1,"Villenouette",48.233723,2.919138,0,0,OIF:SA:12:3381,Europe/Paris,,OIF, +OIF:SP:30:229,1,"Église Maisoncelles-en-Gâtinais",48.188062,2.62562,0,0,OIF:SA:30:229,Europe/Paris,,OIF, +OIF:SP:30:23,1,"La Glandelière",48.205084,2.719698,0,0,OIF:SA:30:22,Europe/Paris,,OIF, +OIF:SP:30:230,1,"Église Maisoncelles-en-Gâtinais",48.188126,2.625271,0,0,OIF:SA:30:229,Europe/Paris,,OIF, +OIF:SP:30:231,1,"Place de l'Ermitage-Melun",48.526504,2.653749,0,0,OIF:SA:8768200,Europe/Paris,,OIF, +OIF:SP:30:232,1,"Rue de l'Industrie-Melun",48.526265,2.655575,0,0,OIF:SA:8768200,Europe/Paris,,OIF, +OIF:SP:30:233,1,"Montarlot",48.350471,2.851201,0,0,OIF:SA:30:233,Europe/Paris,,OIF, +OIF:SP:30:234,1,"Montarlot",48.350438,2.851224,0,0,OIF:SA:30:233,Europe/Paris,,OIF, +OIF:SP:30:235,1,"Les Garennes",48.339864,2.730245,0,0,OIF:SA:30:235,Europe/Paris,,OIF, +OIF:SP:30:236,1,"Les Garennes",48.339821,2.730258,0,0,OIF:SA:30:235,Europe/Paris,,OIF, +OIF:SP:30:237,1,"Roger Genty",48.340618,2.767297,0,0,OIF:SA:30:237,Europe/Paris,,OIF, +OIF:SP:30:238,1,"Roger Genty",48.340796,2.767717,0,0,OIF:SA:30:237,Europe/Paris,,OIF, +OIF:SP:30:24,1,"Hôtel de Ville Bagneaux-sur-Loing",48.231277,2.705691,0,0,OIF:SA:30:24,Europe/Paris,,OIF, +OIF:SP:30:240,1,"Mairie Montigny-sur-Loing",48.336037,2.743337,0,0,OIF:SA:30:239,Europe/Paris,,OIF, +OIF:SP:30:243,1,"Centre Moncourt-Fromonville",48.307085,2.707869,0,0,OIF:SA:30:243,Europe/Paris,,OIF, +OIF:SP:30:244,1,"Centre Moncourt-Fromonville",48.306871,2.707463,0,0,OIF:SA:30:243,Europe/Paris,,OIF, +OIF:SP:30:245,1,"Le Château",48.299684,2.699731,0,0,OIF:SA:30:245,Europe/Paris,,OIF, +OIF:SP:30:246,1,"Le Château",48.299684,2.699731,0,0,OIF:SA:30:245,Europe/Paris,,OIF, +OIF:SP:30:247,1,"Église Mondreville",48.143105,2.609613,0,0,OIF:SA:30:247,Europe/Paris,,OIF, +OIF:SP:30:248,1,"Église Mondreville",48.143505,2.60947,0,0,OIF:SA:30:247,Europe/Paris,,OIF, +OIF:SP:30:249,1,"Flora Tristan",48.377684,2.94546,0,0,OIF:SA:30:249,Europe/Paris,,OIF, +OIF:SP:30:25,1,"Hôtel de Ville Bagneaux-sur-Loing",48.231421,2.705544,0,0,OIF:SA:30:24,Europe/Paris,,OIF, +OIF:SP:30:250,1,"Le Nid",48.339292,2.735392,0,0,OIF:SA:30:250,Europe/Paris,,OIF, +OIF:SP:30:251,1,"Le Nid",48.338986,2.735457,0,0,OIF:SA:30:250,Europe/Paris,,OIF, +OIF:SP:30:254,1,"André Malraux",48.394551,2.955788,0,0,OIF:SA:30:254,Europe/Paris,,OIF, +OIF:SP:30:256,1,"La Chênière",48.304778,2.70385,0,0,OIF:SA:30:256,Europe/Paris,,OIF, +OIF:SP:30:257,1,"La Chênière",48.30494,2.70404,0,0,OIF:SA:30:256,Europe/Paris,,OIF, +OIF:SP:30:260,1,"Église Moncourt-Fromonville",48.291403,2.696962,0,0,OIF:SA:30:260,Europe/Paris,,OIF, +OIF:SP:30:262,1,"Église Moncourt-Fromonville",48.291484,2.696885,0,0,OIF:SA:30:260,Europe/Paris,,OIF, +OIF:SP:30:264,1,"Cité Timbert",48.308916,2.711804,0,0,OIF:SA:30:264,Europe/Paris,,OIF, +OIF:SP:30:265,1,"Cité Timbert",48.308667,2.711061,0,0,OIF:SA:30:264,Europe/Paris,,OIF, +OIF:SP:30:267,1,"La Valotte",48.296579,2.697796,0,0,OIF:SA:30:267,Europe/Paris,,OIF, +OIF:SP:30:268,1,"La Valotte",48.296705,2.697905,0,0,OIF:SA:30:267,Europe/Paris,,OIF, +OIF:SP:30:269,1,"Aimée Lepercq",48.335123,2.750127,0,0,OIF:SA:30:269,Europe/Paris,,OIF, +OIF:SP:30:270,1,"Aimée Lepercq",48.335238,2.750518,0,0,OIF:SA:30:269,Europe/Paris,,OIF, +OIF:SP:30:271,1,"Place Parodi",48.342926,2.772598,0,0,OIF:SA:30:271,Europe/Paris,,OIF, +OIF:SP:30:272,1,"Place Parodi",48.342936,2.772684,0,0,OIF:SA:30:271,Europe/Paris,,OIF, +OIF:SP:30:273,1,"Division Leclerc",48.371954,2.822139,0,0,OIF:SA:12:3273,Europe/Paris,,OIF, +OIF:SP:30:274,1,"Division Leclerc",48.372065,2.821385,0,0,OIF:SA:12:3273,Europe/Paris,,OIF, +OIF:SP:30:275,1,"Rue des Fosses-Moret",48.37322,2.814604,0,0,OIF:SA:12:4999,Europe/Paris,,OIF, +OIF:SP:30:276,1,"Rogeries",48.371646,2.810625,0,0,OIF:SA:30:276,Europe/Paris,,OIF, +OIF:SP:30:277,1,"Rogeries",48.371588,2.810531,0,0,OIF:SA:30:276,Europe/Paris,,OIF, +OIF:SP:30:278,1,"Place Kulsheim-Moret",48.370008,2.815525,0,0,OIF:SA:30:278,Europe/Paris,,OIF, +OIF:SP:30:279,1,"Pont National",48.3737,2.808391,0,0,OIF:SA:30:279,Europe/Paris,,OIF, +OIF:SP:30:283,1,"Gare Montigny-sur-Loing",48.336232,2.738821,0,0,OIF:SA:8768410,Europe/Paris,,OIF, +OIF:SP:30:284,1,"Le Bouloy",48.239697,2.827755,0,0,OIF:SA:30:284,Europe/Paris,,OIF, +OIF:SP:30:285,1,"Le Bouloy",48.24001,2.827986,0,0,OIF:SA:30:284,Europe/Paris,,OIF, +OIF:SP:30:286,1,"Charles de Gaulle",48.257018,2.811638,0,0,OIF:SA:30:286,Europe/Paris,,OIF, +OIF:SP:30:287,1,"Charles de Gaulle-Nant.",48.257,2.811476,0,0,OIF:SA:30:286,Europe/Paris,,OIF, +OIF:SP:30:288,1,"Mairie Nanteau-sur-Lunain",48.256672,2.817128,0,0,OIF:SA:30:288,Europe/Paris,,OIF, +OIF:SP:30:289,1,"Mairie Nanteau-sur-Lunain",48.256406,2.818203,0,0,OIF:SA:30:288,Europe/Paris,,OIF, +OIF:SP:30:290,1,"Le Prieuré",48.253919,2.821694,0,0,OIF:SA:30:290,Europe/Paris,,OIF, +OIF:SP:30:291,1,"Le Prieuré",48.254136,2.821467,0,0,OIF:SA:30:290,Europe/Paris,,OIF, +OIF:SP:30:294,1,"Beauregard",48.256264,2.705894,0,0,OIF:SA:30:294,Europe/Paris,,OIF, +OIF:SP:30:295,1,"Beauregard",48.256273,2.70584,0,0,OIF:SA:30:294,Europe/Paris,,OIF, +OIF:SP:30:296,1,"Les Chaudins",48.263225,2.708138,0,0,OIF:SA:30:296,Europe/Paris,,OIF, +OIF:SP:30:297,1,"Les Chaudins",48.26284,2.707596,0,0,OIF:SA:30:296,Europe/Paris,,OIF, +OIF:SP:30:3,1,"Place",48.216576,2.606268,0,0,OIF:SA:30:3,Europe/Paris,,OIF, +OIF:SP:30:30,1,"Jean Gelé",48.219923,2.713375,0,0,OIF:SA:30:30,Europe/Paris,,OIF, +OIF:SP:30:302,1,"Les Doyers",48.255574,2.702294,0,0,OIF:SA:30:302,Europe/Paris,,OIF, +OIF:SP:30:304,1,"Église Nemours",48.267093,2.696098,0,0,OIF:SA:30:304,Europe/Paris,,OIF, +OIF:SP:30:305,1,"Église Nemours",48.26731,2.695602,0,0,OIF:SA:30:304,Europe/Paris,,OIF, +OIF:SP:30:307,1,"Église Nemours",48.26719,2.695981,0,0,OIF:SA:30:304,Europe/Paris,,OIF, +OIF:SP:30:308,1,"Rue d'Egreville",48.265483,2.715269,0,0,OIF:SA:30:308,Europe/Paris,,OIF, +OIF:SP:30:31,1,"Petit Bagneaux",48.231932,2.688496,0,0,OIF:SA:30:31,Europe/Paris,,OIF, +OIF:SP:30:310,1,"Rue d'Egreville-Nrs",48.265444,2.715306,0,0,OIF:SA:30:308,Europe/Paris,,OIF, +OIF:SP:30:314,1,"Gare Carnot",48.267752,2.686029,0,0,OIF:SA:8768412,Europe/Paris,,OIF, +OIF:SP:30:32,1,"Pierre le Sault",48.238584,2.709377,0,0,OIF:SA:30:32,Europe/Paris,,OIF, +OIF:SP:30:320,1,"Hôpital",48.261594,2.703494,0,0,OIF:SA:30:320,Europe/Paris,,OIF, +OIF:SP:30:321,1,"Hôpital",48.26163,2.703548,0,0,OIF:SA:30:320,Europe/Paris,,OIF, +OIF:SP:30:322,1,"Inter Sud",48.253333,2.702884,0,0,OIF:SA:30:322,Europe/Paris,,OIF, +OIF:SP:30:323,1,"Jean Moulin",48.268469,2.710397,0,0,OIF:SA:30:323,Europe/Paris,,OIF, +OIF:SP:30:324,1,"Jean Moulin",48.268181,2.710557,0,0,OIF:SA:30:323,Europe/Paris,,OIF, +OIF:SP:30:329,1,"Avenue de Lyon",48.258267,2.700845,0,0,OIF:SA:30:329,Europe/Paris,,OIF, +OIF:SP:30:33,1,"Pierre le Sault",48.238648,2.709175,0,0,OIF:SA:30:32,Europe/Paris,,OIF, +OIF:SP:30:330,1,"Avenue de Lyon",48.257393,2.701391,0,0,OIF:SA:30:329,Europe/Paris,,OIF, +OIF:SP:30:331,1,"Avenue de Lyon",48.258285,2.700845,0,0,OIF:SA:30:329,Europe/Paris,,OIF, +OIF:SP:30:334,1,"Montgagnant",48.264682,2.702371,0,0,OIF:SA:30:334,Europe/Paris,,OIF, +OIF:SP:30:337,1,"Montgagnant",48.264618,2.702354,0,0,OIF:SA:30:334,Europe/Paris,,OIF, +OIF:SP:30:338,1,"Route de Morêt",48.273351,2.699064,0,0,OIF:SA:30:338,Europe/Paris,,OIF, +OIF:SP:30:34,1,"Portonville",48.226203,2.712074,0,0,OIF:SA:30:34,Europe/Paris,,OIF, +OIF:SP:30:340,1,"Route de Morêt",48.272739,2.699127,0,0,OIF:SA:30:338,Europe/Paris,,OIF, +OIF:SP:30:344,1,"Pasteur",48.266963,2.691438,0,0,OIF:SA:30:344,Europe/Paris,,OIF, +OIF:SP:30:345,1,"Pasteur",48.266963,2.691465,0,0,OIF:SA:30:344,Europe/Paris,,OIF, +OIF:SP:30:35,1,"Les Praillons",48.235293,2.700874,0,0,OIF:SA:30:35,Europe/Paris,,OIF, +OIF:SP:30:350,1,"Perthuis",48.263728,2.699631,0,0,OIF:SA:30:350,Europe/Paris,,OIF, +OIF:SP:30:351,1,"Perthuis",48.263476,2.699737,0,0,OIF:SA:30:350,Europe/Paris,,OIF, +OIF:SP:30:352,1,"Poste Nemours",48.266014,2.69896,0,0,OIF:SA:30:352,Europe/Paris,,OIF, +OIF:SP:30:353,1,"Poste Nemours",48.266014,2.698946,0,0,OIF:SA:30:352,Europe/Paris,,OIF, +OIF:SP:30:354,1,"Rocher Vert",48.260725,2.70237,0,0,OIF:SA:30:354,Europe/Paris,,OIF, +OIF:SP:30:355,1,"Rocher Vert",48.260816,2.702182,0,0,OIF:SA:30:354,Europe/Paris,,OIF, +OIF:SP:30:356,1,"Cité Scolaire",48.261366,2.713201,0,0,OIF:SA:30:356,Europe/Paris,,OIF, +OIF:SP:30:357,1,"Cité Scolaire",48.261357,2.713201,0,0,OIF:SA:30:356,Europe/Paris,,OIF, +OIF:SP:30:358,1,"Avenue Roux",48.273531,2.690149,0,0,OIF:SA:30:358,Europe/Paris,,OIF, +OIF:SP:30:36,1,"Les Praillons",48.234951,2.700926,0,0,OIF:SA:30:35,Europe/Paris,,OIF, +OIF:SP:30:361,1,"Mont Saint-Martin",48.271255,2.70503,0,0,OIF:SA:30:361,Europe/Paris,,OIF, +OIF:SP:30:362,1,"Mont Saint-Martin",48.271842,2.704279,0,0,OIF:SA:30:361,Europe/Paris,,OIF, +OIF:SP:30:363,1,"Gare Nemours Parvis",48.267635,2.686231,0,0,OIF:SA:8768412,Europe/Paris,,OIF, +OIF:SP:30:366,1,"Stalingrad",48.264543,2.709251,0,0,OIF:SA:30:366,Europe/Paris,,OIF, +OIF:SP:30:367,1,"Stalingrad",48.264712,2.709993,0,0,OIF:SA:30:366,Europe/Paris,,OIF, +OIF:SP:30:368,1,"Quai Victor Hugo",48.26668,2.692998,0,0,OIF:SA:30:368,Europe/Paris,,OIF, +OIF:SP:30:369,1,"Quai Victor Hugo",48.26668,2.692958,0,0,OIF:SA:30:368,Europe/Paris,,OIF, +OIF:SP:30:372,1,"Carrefour le Landy",48.293967,2.778233,0,0,OIF:SA:30:372,Europe/Paris,,OIF, +OIF:SP:30:373,1,"Carrefour le Landy",48.293895,2.778232,0,0,OIF:SA:30:372,Europe/Paris,,OIF, +OIF:SP:30:374,1,"Centre Nonville",48.283644,2.792615,0,0,OIF:SA:30:374,Europe/Paris,,OIF, +OIF:SP:30:375,1,"Centre Nonville",48.283835,2.792279,0,0,OIF:SA:30:374,Europe/Paris,,OIF, +OIF:SP:30:376,1,"Mairie Nonville",48.286055,2.787813,0,0,OIF:SA:30:376,Europe/Paris,,OIF, +OIF:SP:30:377,1,"Mairie Nonville",48.286064,2.787786,0,0,OIF:SA:30:376,Europe/Paris,,OIF, +OIF:SP:30:378,1,"Les Serres",48.286968,2.7865,0,0,OIF:SA:30:378,Europe/Paris,,OIF, +OIF:SP:30:379,1,"Les Serres",48.28713,2.786353,0,0,OIF:SA:30:378,Europe/Paris,,OIF, +OIF:SP:30:380,1,"Rue de la Source",48.297449,2.772953,0,0,OIF:SA:30:380,Europe/Paris,,OIF, +OIF:SP:30:381,1,"Rue de la Source",48.297358,2.773114,0,0,OIF:SA:30:380,Europe/Paris,,OIF, +OIF:SP:30:382,1,"Centre Obsonville",48.217345,2.561335,0,0,OIF:SA:30:382,Europe/Paris,,OIF, +OIF:SP:30:383,1,"Centre Obsonville",48.217372,2.561308,0,0,OIF:SA:30:382,Europe/Paris,,OIF, +OIF:SP:30:387,1,"Transformateur Centre",48.24321,2.652631,0,0,OIF:SA:30:387,Europe/Paris,,OIF, +OIF:SP:30:389,1,"La Vallée",48.246937,2.654255,0,0,OIF:SA:30:389,Europe/Paris,,OIF, +OIF:SP:30:390,1,"La Vallée",48.24683,2.654039,0,0,OIF:SA:30:389,Europe/Paris,,OIF, +OIF:SP:30:391,1,"Les Gros Ormes",48.242919,2.866445,0,0,OIF:SA:30:391,Europe/Paris,,OIF, +OIF:SP:30:392,1,"Les Gros Ormes",48.242765,2.866646,0,0,OIF:SA:30:391,Europe/Paris,,OIF, +OIF:SP:30:393,1,"Tesnières",48.24949,2.852564,0,0,OIF:SA:30:393,Europe/Paris,,OIF, +OIF:SP:30:394,1,"Tesnières",48.249408,2.852981,0,0,OIF:SA:30:393,Europe/Paris,,OIF, +OIF:SP:30:395,1,"Rue de Bagneaux",48.244794,2.699109,0,0,OIF:SA:30:395,Europe/Paris,,OIF, +OIF:SP:30:396,1,"Rue de Bagneaux",48.24437,2.699456,0,0,OIF:SA:30:395,Europe/Paris,,OIF, +OIF:SP:30:397,1,"Le Grand Bois",48.270746,2.664406,0,0,OIF:SA:30:397,Europe/Paris,,OIF, +OIF:SP:30:398,1,"Le Grand Bois",48.270718,2.66438,0,0,OIF:SA:30:397,Europe/Paris,,OIF, +OIF:SP:30:40,1,"Blaise Montesquiou",48.338591,2.69907,0,0,OIF:SA:30:40,Europe/Paris,,OIF, +OIF:SP:30:401,1,"Canal",48.250721,2.695529,0,0,OIF:SA:30:401,Europe/Paris,,OIF, +OIF:SP:30:402,1,"Canal",48.250478,2.695769,0,0,OIF:SA:30:401,Europe/Paris,,OIF, +OIF:SP:30:405,1,"Avenue Carnot",48.275166,2.684557,0,0,OIF:SA:30:405,Europe/Paris,,OIF, +OIF:SP:30:406,1,"Avenue Carnot",48.274842,2.684595,0,0,OIF:SA:30:405,Europe/Paris,,OIF, +OIF:SP:30:408,1,"Chemin Noir",48.244476,2.69729,0,0,OIF:SA:30:408,Europe/Paris,,OIF, +OIF:SP:30:409,1,"Chemin Noir",48.244106,2.69753,0,0,OIF:SA:30:408,Europe/Paris,,OIF, +OIF:SP:30:41,1,"Blaise Montesquiou",48.338582,2.69907,0,0,OIF:SA:30:40,Europe/Paris,,OIF, +OIF:SP:30:414,1,"Les Colombes",48.270622,2.682587,0,0,OIF:SA:30:414,Europe/Paris,,OIF, +OIF:SP:30:415,1,"Les Colombes",48.270099,2.682961,0,0,OIF:SA:30:414,Europe/Paris,,OIF, +OIF:SP:30:416,1,"Clos Saint-Jean",48.271427,2.67769,0,0,OIF:SA:30:416,Europe/Paris,,OIF, +OIF:SP:30:417,1,"Clos Saint-Jean",48.271301,2.677756,0,0,OIF:SA:30:416,Europe/Paris,,OIF, +OIF:SP:30:418,1,"La Demie Lieue",48.278558,2.683704,0,0,OIF:SA:30:418,Europe/Paris,,OIF, +OIF:SP:30:419,1,"La Demie Lieue",48.27892,2.682871,0,0,OIF:SA:30:418,Europe/Paris,,OIF, +OIF:SP:30:42,1,"Mairie Bourron-Marlotte",48.340594,2.708187,0,0,OIF:SA:30:42,Europe/Paris,,OIF, +OIF:SP:30:422,1,"Place de l'Europe",48.2632,2.68099,0,0,OIF:SA:30:422,Europe/Paris,,OIF, +OIF:SP:30:423,1,"Place de l'Europe",48.263291,2.680411,0,0,OIF:SA:30:422,Europe/Paris,,OIF, +OIF:SP:30:424,1,"Gare Foljuif",48.267431,2.68534,0,0,OIF:SA:8768412,Europe/Paris,,OIF, +OIF:SP:30:425,1,"Gare Foljuif",48.267431,2.685327,0,0,OIF:SA:8768412,Europe/Paris,,OIF, +OIF:SP:30:426,1,"Gare Nemours Parvis",48.267734,2.68615,0,0,OIF:SA:8768412,Europe/Paris,,OIF, +OIF:SP:30:427,1,"Gare Nemours Parvis",48.267788,2.686124,0,0,OIF:SA:8768412,Europe/Paris,,OIF, +OIF:SP:30:43,1,"Mairie Bourron-Marlotte",48.340565,2.70905,0,0,OIF:SA:30:42,Europe/Paris,,OIF, +OIF:SP:30:430,1,"Grands Taillis",48.274675,2.670694,0,0,OIF:SA:30:430,Europe/Paris,,OIF, +OIF:SP:30:431,1,"Grands Taillis",48.274783,2.67064,0,0,OIF:SA:30:430,Europe/Paris,,OIF, +OIF:SP:30:434,1,"Guinebert",48.279728,2.677246,0,0,OIF:SA:30:434,Europe/Paris,,OIF, +OIF:SP:30:436,1,"Longs Réages",48.276698,2.670868,0,0,OIF:SA:30:436,Europe/Paris,,OIF, +OIF:SP:30:437,1,"Longs Réages",48.276678,2.671488,0,0,OIF:SA:30:436,Europe/Paris,,OIF, +OIF:SP:30:44,1,"Pavé du Roy",48.341875,2.69239,0,0,OIF:SA:30:44,Europe/Paris,,OIF, +OIF:SP:30:442,1,"Maison de Retraite",48.261029,2.694333,0,0,OIF:SA:30:442,Europe/Paris,,OIF, +OIF:SP:30:443,1,"Maison de Retraite",48.260375,2.693507,0,0,OIF:SA:30:442,Europe/Paris,,OIF, +OIF:SP:30:444,1,"Les Mazes",48.274034,2.674757,0,0,OIF:SA:30:444,Europe/Paris,,OIF, +OIF:SP:30:445,1,"Les Mazes",48.273911,2.673989,0,0,OIF:SA:30:444,Europe/Paris,,OIF, +OIF:SP:30:446,1,"Mont Blanc",48.269077,2.672665,0,0,OIF:SA:30:446,Europe/Paris,,OIF, +OIF:SP:30:447,1,"Mont Blanc",48.269068,2.672651,0,0,OIF:SA:30:446,Europe/Paris,,OIF, +OIF:SP:30:448,1,"Moulin Rouge",48.277507,2.689421,0,0,OIF:SA:30:448,Europe/Paris,,OIF, +OIF:SP:30:449,1,"Chaintreauville Place",48.250119,2.692388,0,0,OIF:SA:30:449,Europe/Paris,,OIF, +OIF:SP:30:45,1,"Pavé du Roy",48.341453,2.692077,0,0,OIF:SA:30:44,Europe/Paris,,OIF, +OIF:SP:30:450,1,"Chaintreauville Place",48.250129,2.692226,0,0,OIF:SA:30:449,Europe/Paris,,OIF, +OIF:SP:30:451,1,"Place Saint-Pierre",48.262551,2.693576,0,0,OIF:SA:30:451,Europe/Paris,,OIF, +OIF:SP:30:453,1,"Puiselet",48.264653,2.649878,0,0,OIF:SA:30:1330,Europe/Paris,,OIF, +OIF:SP:30:454,1,"Rue des Pyrénées",48.264194,2.679084,0,0,OIF:SA:30:454,Europe/Paris,,OIF, +OIF:SP:30:455,1,"Rue des Pyrénées",48.264194,2.67907,0,0,OIF:SA:30:454,Europe/Paris,,OIF, +OIF:SP:30:456,1,"Gare Nemours Parvis",48.268607,2.685941,0,0,OIF:SA:8768412,Europe/Paris,,OIF, +OIF:SP:30:459,1,"Les Sources",48.261905,2.690151,0,0,OIF:SA:30:459,Europe/Paris,,OIF, +OIF:SP:30:46,1,"Poste Bourron-Marlotte",48.340408,2.718503,0,0,OIF:SA:30:46,Europe/Paris,,OIF, +OIF:SP:30:460,1,"Les Sources",48.261833,2.690245,0,0,OIF:SA:30:459,Europe/Paris,,OIF, +OIF:SP:30:461,1,"Pierre Percée",48.246757,2.695017,0,0,OIF:SA:30:461,Europe/Paris,,OIF, +OIF:SP:30:462,1,"Pierre Percée",48.246441,2.695405,0,0,OIF:SA:30:461,Europe/Paris,,OIF, +OIF:SP:30:463,1,"Rosiers",48.223825,2.780442,0,0,OIF:SA:30:463,Europe/Paris,,OIF, +OIF:SP:30:464,1,"Rosiers",48.223835,2.780429,0,0,OIF:SA:30:463,Europe/Paris,,OIF, +OIF:SP:30:465,1,"Jean Gelé",48.220732,2.713367,0,0,OIF:SA:30:465,Europe/Paris,,OIF, +OIF:SP:30:466,1,"Ferme Saint-Louis",48.248742,2.770475,0,0,OIF:SA:30:466,Europe/Paris,,OIF, +OIF:SP:30:467,1,"Ferme Saint-Louis",48.248536,2.770433,0,0,OIF:SA:30:466,Europe/Paris,,OIF, +OIF:SP:30:47,1,"Poste Bourron-Marlotte",48.340408,2.718503,0,0,OIF:SA:30:46,Europe/Paris,,OIF, +OIF:SP:30:470,1,"Rue de la Montagne",48.226837,2.713425,0,0,OIF:SA:30:470,Europe/Paris,,OIF, +OIF:SP:30:471,1,"Rue de la Montagne",48.226819,2.713505,0,0,OIF:SA:30:470,Europe/Paris,,OIF, +OIF:SP:30:472,1,"Portonville",48.227012,2.712201,0,0,OIF:SA:30:472,Europe/Paris,,OIF, +OIF:SP:30:475,1,"Remauville",48.212523,2.82372,0,0,OIF:SA:30:475,Europe/Paris,,OIF, +OIF:SP:30:476,1,"Remauville",48.212622,2.823654,0,0,OIF:SA:30:475,Europe/Paris,,OIF, +OIF:SP:30:477,1,"Bouchereau",48.221572,2.795978,0,0,OIF:SA:30:477,Europe/Paris,,OIF, +OIF:SP:30:478,1,"Bouchereau",48.221654,2.795682,0,0,OIF:SA:30:477,Europe/Paris,,OIF, +OIF:SP:30:479,1,"Saint-Ange le Viel",48.265926,2.899901,0,0,OIF:SA:30:479,Europe/Paris,,OIF, +OIF:SP:30:48,1,"Gare Bourron",48.33301,2.692424,0,0,OIF:SA:8768411,Europe/Paris,,OIF, +OIF:SP:30:481,1,"Cité Bellevue",48.188076,2.739839,0,0,OIF:SA:30:481,Europe/Paris,,OIF, +OIF:SP:30:482,1,"Bésigny",48.182869,2.704625,0,0,OIF:SA:30:482,Europe/Paris,,OIF, +OIF:SP:30:483,1,"Bésigny",48.182875,2.704598,0,0,OIF:SA:30:482,Europe/Paris,,OIF, +OIF:SP:30:484,1,"Rue de Chaintreaux",48.18828,2.753799,0,0,OIF:SA:30:484,Europe/Paris,,OIF, +OIF:SP:30:485,1,"Foyer Collège",48.178231,2.734238,0,0,OIF:SA:30:485,Europe/Paris,,OIF, +OIF:SP:30:486,1,"Le Coudray",48.200846,2.739399,0,0,OIF:SA:30:486,Europe/Paris,,OIF, +OIF:SP:30:487,1,"La Croisière",48.163617,2.758254,0,0,OIF:SA:30:487,Europe/Paris,,OIF, +OIF:SP:30:488,1,"La Croisière",48.16592,2.75549,0,0,OIF:SA:30:487,Europe/Paris,,OIF, +OIF:SP:30:489,1,"Gare Souppes-sur-Loing",48.181942,2.735234,0,0,OIF:SA:8768421,Europe/Paris,,OIF, +OIF:SP:30:490,1,"Gare Souppes-sur-Loing",48.181933,2.735247,0,0,OIF:SA:8768421,Europe/Paris,,OIF, +OIF:SP:30:495,1,"Lesthumière",48.191676,2.725545,0,0,OIF:SA:30:495,Europe/Paris,,OIF, +OIF:SP:30:496,1,"Lesthumière",48.18951,2.727922,0,0,OIF:SA:30:495,Europe/Paris,,OIF, +OIF:SP:30:498,1,"Mairie Souppes-sur-Loing",48.183289,2.735782,0,0,OIF:SA:30:497,Europe/Paris,,OIF, +OIF:SP:30:50,1,"Square Thibault",48.347159,2.716097,0,0,OIF:SA:30:50,Europe/Paris,,OIF, +OIF:SP:30:500,1,"Rue en Pente",48.185614,2.749865,0,0,OIF:SA:30:500,Europe/Paris,,OIF, +OIF:SP:30:501,1,"Rue des Pins",48.184506,2.740054,0,0,OIF:SA:30:501,Europe/Paris,,OIF, +OIF:SP:30:502,1,"Place de la République",48.182294,2.731956,0,0,OIF:SA:30:502,Europe/Paris,,OIF, +OIF:SP:30:503,1,"Le Roulis",48.175814,2.744222,0,0,OIF:SA:30:503,Europe/Paris,,OIF, +OIF:SP:30:504,1,"Le Roulis",48.175841,2.744195,0,0,OIF:SA:30:503,Europe/Paris,,OIF, +OIF:SP:30:505,1,"Sucrerie",48.180117,2.724222,0,0,OIF:SA:30:505,Europe/Paris,,OIF, +OIF:SP:30:506,1,"Sucrerie",48.180118,2.724047,0,0,OIF:SA:30:505,Europe/Paris,,OIF, +OIF:SP:30:507,1,"Les Trous Blancs",48.190007,2.755991,0,0,OIF:SA:30:507,Europe/Paris,,OIF, +OIF:SP:30:51,1,"Square Thibault",48.346567,2.715863,0,0,OIF:SA:30:50,Europe/Paris,,OIF, +OIF:SP:30:516,1,"Mairie Vaux-sur-Lunain",48.22688,2.937014,0,0,OIF:SA:12:3383,Europe/Paris,,OIF, +OIF:SP:30:517,1,"LEP Gustave Eiffel",48.373299,2.927303,0,0,OIF:SA:30:1348,Europe/Paris,,OIF, +OIF:SP:30:519,1,"Pont National",48.373721,2.808517,0,0,OIF:SA:30:519,Europe/Paris,,OIF, +OIF:SP:30:52,1,"Corbeval",48.206781,2.691892,0,0,OIF:SA:30:52,Europe/Paris,,OIF, +OIF:SP:30:520,1,"Gare Morêt /Veneux-les-Sablons",48.377927,2.798192,0,0,OIF:SA:8768227,Europe/Paris,,OIF, +OIF:SP:30:521,1,"Gare Morêt /Veneux-les-Sablons",48.377876,2.798307,0,0,OIF:SA:8768227,Europe/Paris,,OIF, +OIF:SP:30:523,1,"Cimetière",48.303738,2.826643,0,0,OIF:SA:30:523,Europe/Paris,,OIF, +OIF:SP:30:524,1,"Cimetière",48.303649,2.826453,0,0,OIF:SA:30:523,Europe/Paris,,OIF, +OIF:SP:30:525,1,"École Villemer",48.300552,2.825333,0,0,OIF:SA:30:525,Europe/Paris,,OIF, +OIF:SP:30:526,1,"École Villemer",48.300317,2.825695,0,0,OIF:SA:30:525,Europe/Paris,,OIF, +OIF:SP:30:527,1,"Mairie Villebéon",48.207105,2.940864,0,0,OIF:SA:30:527,Europe/Paris,,OIF, +OIF:SP:30:528,1,"Mairie Villebéon",48.207124,2.940824,0,0,OIF:SA:30:527,Europe/Paris,,OIF, +OIF:SP:30:529,1,"La Fontaine",48.274056,2.852348,0,0,OIF:SA:30:529,Europe/Paris,,OIF, +OIF:SP:30:53,1,"Corbeval",48.206772,2.692027,0,0,OIF:SA:30:52,Europe/Paris,,OIF, +OIF:SP:30:530,1,"La Fontaine",48.274058,2.852309,0,0,OIF:SA:30:529,Europe/Paris,,OIF, +OIF:SP:30:531,1,"Centre Villecerf",48.32872,2.846926,0,0,OIF:SA:12:3397,Europe/Paris,,OIF, +OIF:SP:30:532,1,"Centre Villecerf",48.328747,2.846791,0,0,OIF:SA:12:3397,Europe/Paris,,OIF, +OIF:SP:30:533,1,"La Fondoire-Villecerf",48.329305,2.854164,0,0,OIF:SA:30:533,Europe/Paris,,OIF, +OIF:SP:30:534,1,"La Fondoire-Villecerf",48.329344,2.85428,0,0,OIF:SA:30:533,Europe/Paris,,OIF, +OIF:SP:30:535,1,"La Roche du Sault",48.325341,2.848726,0,0,OIF:SA:12:3615,Europe/Paris,,OIF, +OIF:SP:30:536,1,"La Roche du Sault",48.325232,2.848712,0,0,OIF:SA:12:3615,Europe/Paris,,OIF, +OIF:SP:30:537,1,"Mairie Villemaréchal",48.267059,2.870864,0,0,OIF:SA:30:537,Europe/Paris,,OIF, +OIF:SP:30:538,1,"Mairie Villemaréchal",48.26705,2.870864,0,0,OIF:SA:30:537,Europe/Paris,,OIF, +OIF:SP:30:539,1,"Passy",48.20306,2.91019,0,0,OIF:SA:12:3387,Europe/Paris,,OIF, +OIF:SP:30:54,1,"La Cuillère",48.20661,2.686013,0,0,OIF:SA:30:54,Europe/Paris,,OIF, +OIF:SP:30:540,1,"Passy",48.203035,2.909746,0,0,OIF:SA:12:3387,Europe/Paris,,OIF, +OIF:SP:30:541,1,"Lichiot",48.286503,2.959509,0,0,OIF:SA:12:3367,Europe/Paris,,OIF, +OIF:SP:30:542,1,"Lichiot",48.286215,2.959721,0,0,OIF:SA:12:3367,Europe/Paris,,OIF, +OIF:SP:30:543,1,"Monument",48.278899,2.96909,0,0,OIF:SA:12:3371,Europe/Paris,,OIF, +OIF:SP:30:544,1,"Moulin de la Tour",48.284445,2.966059,0,0,OIF:SA:12:3371,Europe/Paris,,OIF, +OIF:SP:30:545,1,"Moulin de la Tour",48.284362,2.966556,0,0,OIF:SA:12:3371,Europe/Paris,,OIF, +OIF:SP:30:546,1,"Vaucornèille",48.27363,2.962387,0,0,OIF:SA:30:546,Europe/Paris,,OIF, +OIF:SP:30:547,1,"Vaucornèille",48.273283,2.961776,0,0,OIF:SA:30:546,Europe/Paris,,OIF, +OIF:SP:30:55,1,"La Cuillère",48.206654,2.686121,0,0,OIF:SA:30:54,Europe/Paris,,OIF, +OIF:SP:30:56,1,"Mairie Bouligny",48.195298,2.65787,0,0,OIF:SA:30:56,Europe/Paris,,OIF, +OIF:SP:30:562,1,"Bois de Dormelles",48.304559,2.890039,0,0,OIF:SA:30:562,Europe/Paris,,OIF, +OIF:SP:30:563,1,"Bois de Dormelles",48.304617,2.890041,0,0,OIF:SA:30:562,Europe/Paris,,OIF, +OIF:SP:30:564,1,"Bois Huard",48.291832,2.8885,0,0,OIF:SA:30:564,Europe/Paris,,OIF, +OIF:SP:30:565,1,"Bois Huard",48.291857,2.88843,0,0,OIF:SA:30:564,Europe/Paris,,OIF, +OIF:SP:30:566,1,"Challeau-Dormelles",48.318656,2.87968,0,0,OIF:SA:30:566,Europe/Paris,,OIF, +OIF:SP:30:567,1,"Challeau-Dormelles",48.318743,2.879742,0,0,OIF:SA:30:566,Europe/Paris,,OIF, +OIF:SP:30:568,1,"Église Dormelles",48.316383,2.901095,0,0,OIF:SA:30:568,Europe/Paris,,OIF, +OIF:SP:30:569,1,"Église Dormelles",48.316387,2.900996,0,0,OIF:SA:30:568,Europe/Paris,,OIF, +OIF:SP:30:57,1,"Mairie Bouligny",48.195045,2.65807,0,0,OIF:SA:30:56,Europe/Paris,,OIF, +OIF:SP:30:570,1,"Les Hôpitaux-Dormelles",48.322607,2.898945,0,0,OIF:SA:30:570,Europe/Paris,,OIF, +OIF:SP:30:572,1,"Place Saint-Gervais-Dormelles",48.318651,2.899436,0,0,OIF:SA:30:572,Europe/Paris,,OIF, +OIF:SP:30:573,1,"Place Saint-Gervais-Dormelles",48.318575,2.899545,0,0,OIF:SA:30:572,Europe/Paris,,OIF, +OIF:SP:30:575,1,"Carrefour Cateline-Ecuelles",48.35532,2.822903,0,0,OIF:SA:30:144,Europe/Paris,,OIF, +OIF:SP:30:576,1,"Carrefour Cateline-Ecuelles",48.355369,2.822808,0,0,OIF:SA:30:144,Europe/Paris,,OIF, +OIF:SP:30:577,1,"Sapinière-Ecuelles",48.363769,2.840087,0,0,OIF:SA:30:577,Europe/Paris,,OIF, +OIF:SP:30:578,1,"Sapinière-Ecuelles",48.363847,2.840204,0,0,OIF:SA:30:577,Europe/Paris,,OIF, +OIF:SP:30:58,1,"Quenonville",48.204339,2.66909,0,0,OIF:SA:30:58,Europe/Paris,,OIF, +OIF:SP:30:581,1,"Champ de Mars",48.37449,2.816892,0,0,OIF:SA:12:3307,Europe/Paris,,OIF, +OIF:SP:30:582,1,"Georges Clémenceau",48.370057,2.815523,0,0,OIF:SA:30:582,Europe/Paris,,OIF, +OIF:SP:30:583,1,"Georges Clémenceau",48.369995,2.815307,0,0,OIF:SA:30:582,Europe/Paris,,OIF, +OIF:SP:30:584,1,"Collège Sisley-Moret",48.367422,2.815769,0,0,OIF:SA:12:3515,Europe/Paris,,OIF, +OIF:SP:30:59,1,"Quenonville",48.204224,2.668295,0,0,OIF:SA:30:58,Europe/Paris,,OIF, +OIF:SP:30:6,1,"Jacques Durand",48.413472,2.736173,0,0,OIF:SA:30:6,Europe/Paris,,OIF, +OIF:SP:30:60,1,"Thiersanville",48.184124,2.675792,0,0,OIF:SA:30:60,Europe/Paris,,OIF, +OIF:SP:30:61,1,"Thiersanville",48.18416,2.675994,0,0,OIF:SA:30:60,Europe/Paris,,OIF, +OIF:SP:30:611,1,"08-Mai-Veneux",48.37681,2.799104,0,0,OIF:SA:12:3563,Europe/Paris,,OIF, +OIF:SP:30:612,1,"08-Mai-Veneux",48.376744,2.799101,0,0,OIF:SA:12:3563,Europe/Paris,,OIF, +OIF:SP:30:619,1,"Léon Richet-Vnx",48.383289,2.788839,0,0,OIF:SA:12:3573,Europe/Paris,,OIF, +OIF:SP:30:62,1,"Aristide Briand",48.152473,2.832692,0,0,OIF:SA:30:62,Europe/Paris,,OIF, +OIF:SP:30:620,1,"Léon Richet-Vnx",48.383343,2.788934,0,0,OIF:SA:12:3573,Europe/Paris,,OIF, +OIF:SP:30:623,1,"Montezin-Vnx",48.381662,2.788852,0,0,OIF:SA:12:3571,Europe/Paris,,OIF, +OIF:SP:30:625,1,"Montezin-Vnx",48.381689,2.788784,0,0,OIF:SA:12:3571,Europe/Paris,,OIF, +OIF:SP:30:626,1,"11 Novembre-Veneux",48.378999,2.791474,0,0,OIF:SA:12:3637,Europe/Paris,,OIF, +OIF:SP:30:627,1,"11 Novembre-Veneux",48.378954,2.791433,0,0,OIF:SA:12:3637,Europe/Paris,,OIF, +OIF:SP:30:63,1,"Aristide Briand",48.152463,2.832974,0,0,OIF:SA:30:62,Europe/Paris,,OIF, +OIF:SP:30:630,1,"Route de Bourgogne-Vnx",48.385755,2.781031,0,0,OIF:SA:12:3561,Europe/Paris,,OIF, +OIF:SP:30:631,1,"Route de Bourgogne-Vnx",48.38571,2.780963,0,0,OIF:SA:12:3561,Europe/Paris,,OIF, +OIF:SP:30:64,1,"Les Canivelles",48.146609,2.808921,0,0,OIF:SA:30:64,Europe/Paris,,OIF, +OIF:SP:30:66,1,"Les Bordes",48.15773,2.826935,0,0,OIF:SA:30:66,Europe/Paris,,OIF, +OIF:SP:30:663,1,"Mairie Ville-Saint-Jacques",48.342308,2.89406,0,0,OIF:SA:30:663,Europe/Paris,,OIF, +OIF:SP:30:664,1,"Mairie Ville-Saint-Jacques",48.342441,2.894425,0,0,OIF:SA:30:663,Europe/Paris,,OIF, +OIF:SP:30:665,1,"Pilliers-Villecerf",48.326843,2.869231,0,0,OIF:SA:12:3613,Europe/Paris,,OIF, +OIF:SP:30:666,1,"Pilliers-Villecerf",48.326913,2.869255,0,0,OIF:SA:12:3613,Europe/Paris,,OIF, +OIF:SP:30:667,1,"Boisroux",48.28319,2.86692,0,0,OIF:SA:30:667,Europe/Paris,,OIF, +OIF:SP:30:668,1,"Boisroux-Villemarechal",48.28336,2.866921,0,0,OIF:SA:30:667,Europe/Paris,,OIF, +OIF:SP:30:669,1,"Le Silo-Villemarechal",48.271305,2.872115,0,0,OIF:SA:30:669,Europe/Paris,,OIF, +OIF:SP:30:67,1,"Les Bordes",48.157722,2.826895,0,0,OIF:SA:30:66,Europe/Paris,,OIF, +OIF:SP:30:670,1,"Le Silo-Villemarechal",48.271281,2.872203,0,0,OIF:SA:30:669,Europe/Paris,,OIF, +OIF:SP:30:671,1,"Le Coudray-Villemer",48.30598,2.801515,0,0,OIF:SA:30:671,Europe/Paris,,OIF, +OIF:SP:30:672,1,"Le Coudray-Villemer",48.306125,2.801193,0,0,OIF:SA:30:671,Europe/Paris,,OIF, +OIF:SP:30:673,1,"Route de Fontainebleau-Villemer",48.302103,2.824362,0,0,OIF:SA:12:3937,Europe/Paris,,OIF, +OIF:SP:30:674,1,"Route de Fontainebleau-Villemer",48.30208,2.82426,0,0,OIF:SA:12:3937,Europe/Paris,,OIF, +OIF:SP:30:677,1,"Le Luat-Villemer",48.307952,2.785303,0,0,OIF:SA:30:677,Europe/Paris,,OIF, +OIF:SP:30:678,1,"Le Luat-Villemer",48.30802,2.785254,0,0,OIF:SA:30:677,Europe/Paris,,OIF, +OIF:SP:30:679,1,"Rebours-Villemer",48.312485,2.813478,0,0,OIF:SA:12:3403,Europe/Paris,,OIF, +OIF:SP:30:68,1,"Abbaye",48.150108,2.708562,0,0,OIF:SA:30:1343,Europe/Paris,,OIF, +OIF:SP:30:680,1,"Rebours-Villemer",48.312347,2.813437,0,0,OIF:SA:12:3403,Europe/Paris,,OIF, +OIF:SP:30:681,1,"Montméry",48.287917,2.859234,0,0,OIF:SA:30:681,Europe/Paris,,OIF, +OIF:SP:30:683,1,"Montméry",48.287846,2.859045,0,0,OIF:SA:30:681,Europe/Paris,,OIF, +OIF:SP:30:684,1,"Villeron-Villemer",48.318636,2.784515,0,0,OIF:SA:30:684,Europe/Paris,,OIF, +OIF:SP:30:686,1,"Villeron-Villemer",48.318498,2.784369,0,0,OIF:SA:30:684,Europe/Paris,,OIF, +OIF:SP:30:687,1,"Les Grèves",48.279573,2.680962,0,0,OIF:SA:30:687,Europe/Paris,,OIF, +OIF:SP:30:688,1,"Prairies",48.282146,2.680642,0,0,OIF:SA:30:688,Europe/Paris,,OIF, +OIF:SP:30:689,1,"Rue du Château",48.281237,2.677727,0,0,OIF:SA:30:689,Europe/Paris,,OIF, +OIF:SP:30:69,1,"Bruzelles",48.155922,2.695204,0,0,OIF:SA:30:69,Europe/Paris,,OIF, +OIF:SP:30:691,1,"Inter Sud",48.253777,2.701743,0,0,OIF:SA:30:322,Europe/Paris,,OIF, +OIF:SP:30:693,1,"Avenue Roux",48.273486,2.689974,0,0,OIF:SA:30:358,Europe/Paris,,OIF, +OIF:SP:30:694,1,"L'Étang Sec",48.30958,2.715097,0,0,OIF:SA:30:694,Europe/Paris,,OIF, +OIF:SP:30:697,1,"Carrefour de l'Europe",48.266864,2.71448,0,0,OIF:SA:30:697,Europe/Paris,,OIF, +OIF:SP:30:699,1,"Carrefour de l'Europe",48.266873,2.714466,0,0,OIF:SA:30:697,Europe/Paris,,OIF, +OIF:SP:30:7,1,"Lycée Uruguay",48.409912,2.736146,0,0,OIF:SA:12:3651,Europe/Paris,,OIF, +OIF:SP:30:70,1,"Bruzelles",48.155626,2.694947,0,0,OIF:SA:30:69,Europe/Paris,,OIF, +OIF:SP:30:705,1,"Rond-Point Bois Minard",48.279484,2.698675,0,0,OIF:SA:30:705,Europe/Paris,,OIF, +OIF:SP:30:707,1,"Rond-Point Bois Minard",48.279466,2.698783,0,0,OIF:SA:30:705,Europe/Paris,,OIF, +OIF:SP:30:709,1,"Les Blés d'Or",48.275753,2.704334,0,0,OIF:SA:30:709,Europe/Paris,,OIF, +OIF:SP:30:71,1,"Chancepoix",48.174799,2.703023,0,0,OIF:SA:30:71,Europe/Paris,,OIF, +OIF:SP:30:710,1,"Les Blés d'Or",48.275047,2.70577,0,0,OIF:SA:30:709,Europe/Paris,,OIF, +OIF:SP:30:711,1,"Place Verdun",48.148357,2.696174,0,0,OIF:SA:30:711,Europe/Paris,,OIF, +OIF:SP:30:712,1,"Office du Tourisme",48.186784,2.731183,0,0,OIF:SA:30:712,Europe/Paris,,OIF, +OIF:SP:30:713,1,"Office du Tourisme",48.186161,2.731851,0,0,OIF:SA:30:712,Europe/Paris,,OIF, +OIF:SP:30:714,1,"Rue des Guichettes",48.273339,2.70565,0,0,OIF:SA:30:714,Europe/Paris,,OIF, +OIF:SP:30:715,1,"Rue des Guichettes",48.273732,2.706488,0,0,OIF:SA:30:714,Europe/Paris,,OIF, +OIF:SP:30:72,1,"Chancepoix-Chl",48.173569,2.703278,0,0,OIF:SA:30:71,Europe/Paris,,OIF, +OIF:SP:30:720,1,"Jean Cocteau",48.187963,2.736329,0,0,OIF:SA:30:720,Europe/Paris,,OIF, +OIF:SP:30:722,1,"Joliot Curie",48.189038,2.734858,0,0,OIF:SA:30:722,Europe/Paris,,OIF, +OIF:SP:30:725,1,"Maison de Retraite",48.180393,2.743841,0,0,OIF:SA:30:725,Europe/Paris,,OIF, +OIF:SP:30:726,1,"Route d'Egreville",48.180441,2.748117,0,0,OIF:SA:30:726,Europe/Paris,,OIF, +OIF:SP:30:727,1,"Grès Saint-Martin",48.175863,2.745876,0,0,OIF:SA:30:727,Europe/Paris,,OIF, +OIF:SP:30:728,1,"Montauban",48.178183,2.748381,0,0,OIF:SA:30:728,Europe/Paris,,OIF, +OIF:SP:30:729,1,"Petit Ceriseaux",48.181438,2.770793,0,0,OIF:SA:30:729,Europe/Paris,,OIF, +OIF:SP:30:73,1,"Pont de Dordives",48.147455,2.751648,0,0,OIF:SA:30:73,Europe/Paris,,OIF, +OIF:SP:30:730,1,"Grand Ceriseaux",48.184956,2.772678,0,0,OIF:SA:30:1332,Europe/Paris,,OIF, +OIF:SP:30:731,1,"Route d'Egreville",48.180431,2.748278,0,0,OIF:SA:30:726,Europe/Paris,,OIF, +OIF:SP:30:732,1,"École",48.255782,3.017392,0,0,OIF:SA:30:732,Europe/Paris,,OIF, +OIF:SP:30:733,1,"Centre Launoy",48.266434,3.005369,0,0,OIF:SA:12:3453,Europe/Paris,,OIF, +OIF:SP:30:734,1,"Centre Launoy",48.266563,3.004967,0,0,OIF:SA:12:3453,Europe/Paris,,OIF, +OIF:SP:30:735,1,"École",48.255398,3.016997,0,0,OIF:SA:30:732,Europe/Paris,,OIF, +OIF:SP:30:737,1,"Villechasson",48.247337,2.976114,0,0,OIF:SA:30:737,Europe/Paris,,OIF, +OIF:SP:30:738,1,"Villechasson",48.24728,2.976572,0,0,OIF:SA:30:737,Europe/Paris,,OIF, +OIF:SP:30:739,1,"Église Poligny",48.224957,2.743433,0,0,OIF:SA:30:739,Europe/Paris,,OIF, +OIF:SP:30:74,1,"Pont de Dordives",48.146683,2.751802,0,0,OIF:SA:30:73,Europe/Paris,,OIF, +OIF:SP:30:740,1,"Église Poligny",48.224849,2.74358,0,0,OIF:SA:30:739,Europe/Paris,,OIF, +OIF:SP:30:742,1,"La Mie Voie",48.169172,2.716493,0,0,OIF:SA:30:742,Europe/Paris,,OIF, +OIF:SP:30:743,1,"Néronville Centre",48.147955,2.739505,0,0,OIF:SA:30:743,Europe/Paris,,OIF, +OIF:SP:30:744,1,"Néronville Centre",48.147955,2.739505,0,0,OIF:SA:30:743,Europe/Paris,,OIF, +OIF:SP:30:745,1,"Les Gauthiers",48.146445,2.709315,0,0,OIF:SA:30:745,Europe/Paris,,OIF, +OIF:SP:30:746,1,"Les Gauthiers",48.14685,2.709224,0,0,OIF:SA:30:745,Europe/Paris,,OIF, +OIF:SP:30:748,1,"Carougie Praseaux",48.192981,2.534482,0,0,OIF:SA:30:1339,Europe/Paris,,OIF, +OIF:SP:30:75,1,"Église Chatenoy",48.233631,2.626154,0,0,OIF:SA:30:75,Europe/Paris,,OIF, +OIF:SP:30:750,1,"Rue Larchant",48.267983,2.678018,0,0,OIF:SA:30:750,Europe/Paris,,OIF, +OIF:SP:30:751,1,"Rue Larchant",48.267992,2.678018,0,0,OIF:SA:30:750,Europe/Paris,,OIF, +OIF:SP:30:752,1,"La Mie Voie",48.169073,2.71664,0,0,OIF:SA:30:742,Europe/Paris,,OIF, +OIF:SP:30:753,1,"Rue de la Vallée",48.215281,2.715024,0,0,OIF:SA:30:753,Europe/Paris,,OIF, +OIF:SP:30:755,1,"Route de Fontainebleau-Vnx",48.374124,2.808044,0,0,OIF:SA:30:755,Europe/Paris,,OIF, +OIF:SP:30:756,1,"Route de Fontainebleau",48.374245,2.809367,0,0,OIF:SA:30:755,Europe/Paris,,OIF, +OIF:SP:30:757,1,"Collège Vasco",48.27944,2.674307,0,0,OIF:SA:30:1296,Europe/Paris,,OIF, +OIF:SP:30:76,1,"Église Chatenoy",48.233675,2.626315,0,0,OIF:SA:30:75,Europe/Paris,,OIF, +OIF:SP:30:760,1,"La Fourche",48.407905,2.688842,0,0,OIF:SA:28:309,Europe/Paris,,OIF, +OIF:SP:30:761,1,"Collège Lorrez-le-Bocage",48.236471,2.905211,0,0,OIF:SA:12:4014,Europe/Paris,,OIF, +OIF:SP:30:763,1,"Collège Lorrez-le-Bocage",48.236525,2.905185,0,0,OIF:SA:12:4014,Europe/Paris,,OIF, +OIF:SP:30:765,1,"Rue des Pins",48.184538,2.740018,0,0,OIF:SA:30:501,Europe/Paris,,OIF, +OIF:SP:30:767,1,"Rue en Pente",48.185801,2.750323,0,0,OIF:SA:30:500,Europe/Paris,,OIF, +OIF:SP:30:768,1,"Rue de Chaintreaux",48.188405,2.753854,0,0,OIF:SA:30:484,Europe/Paris,,OIF, +OIF:SP:30:769,1,"Les Trous Blancs",48.189913,2.755986,0,0,OIF:SA:30:507,Europe/Paris,,OIF, +OIF:SP:30:77,1,"Foyer Rural",48.148805,2.696674,0,0,OIF:SA:30:1345,Europe/Paris,,OIF, +OIF:SP:30:771,1,"Grès Saint-Martin",48.176058,2.746657,0,0,OIF:SA:30:727,Europe/Paris,,OIF, +OIF:SP:30:773,1,"Montauban",48.178156,2.748408,0,0,OIF:SA:30:728,Europe/Paris,,OIF, +OIF:SP:30:774,1,"Maison de Retraite",48.180446,2.743962,0,0,OIF:SA:30:725,Europe/Paris,,OIF, +OIF:SP:30:779,1,"Petit Ceriseaux",48.181438,2.770793,0,0,OIF:SA:30:729,Europe/Paris,,OIF, +OIF:SP:30:78,1,"Charles de Gaulle",48.143251,2.698383,0,0,OIF:SA:30:1344,Europe/Paris,,OIF, +OIF:SP:30:781,1,"Moulin Rouge",48.27703,2.689634,0,0,OIF:SA:30:448,Europe/Paris,,OIF, +OIF:SP:30:782,1,"Fontaine Sèche",48.266072,2.685749,0,0,OIF:SA:30:782,Europe/Paris,,OIF, +OIF:SP:30:783,1,"Fontaine Sèche",48.266467,2.685805,0,0,OIF:SA:30:782,Europe/Paris,,OIF, +OIF:SP:30:784,1,"Centre Commercial",48.269787,2.675928,0,0,OIF:SA:30:784,Europe/Paris,,OIF, +OIF:SP:30:786,1,"Pierre et Marie Curie",48.268379,2.70742,0,0,OIF:SA:30:786,Europe/Paris,,OIF, +OIF:SP:30:787,1,"Pierre et Marie Curie",48.268086,2.706421,0,0,OIF:SA:30:786,Europe/Paris,,OIF, +OIF:SP:30:788,1,"Piscine Égreville",48.173368,2.872264,0,0,OIF:SA:30:788,Europe/Paris,,OIF, +OIF:SP:30:789,1,"Piscine Égreville",48.173008,2.872247,0,0,OIF:SA:30:788,Europe/Paris,,OIF, +OIF:SP:30:79,1,"Heurteubise",48.149734,2.729481,0,0,OIF:SA:30:79,Europe/Paris,,OIF, +OIF:SP:30:8,1,"Gare de Bagneaux-sur-Loing",48.230557,2.703116,0,0,OIF:SA:8768419,Europe/Paris,,OIF, +OIF:SP:30:80,1,"Heurteubise",48.149734,2.729481,0,0,OIF:SA:30:79,Europe/Paris,,OIF, +OIF:SP:30:81,1,"Sonville",48.183828,2.821854,0,0,OIF:SA:30:81,Europe/Paris,,OIF, +OIF:SP:30:82,1,"Sonville",48.183837,2.821854,0,0,OIF:SA:30:81,Europe/Paris,,OIF, +OIF:SP:30:83,1,"Église Chaintreaux",48.19936,2.821123,0,0,OIF:SA:30:83,Europe/Paris,,OIF, +OIF:SP:30:838,1,"Salle des Fêtes",48.281931,2.698113,0,0,OIF:SA:30:838,Europe/Paris,,OIF, +OIF:SP:30:839,1,"Salle des Fêtes",48.281616,2.698165,0,0,OIF:SA:30:838,Europe/Paris,,OIF, +OIF:SP:30:84,1,"Église Chaintreaux",48.199334,2.821069,0,0,OIF:SA:30:83,Europe/Paris,,OIF, +OIF:SP:30:842,1,"Bois des Horcées",48.279125,2.701502,0,0,OIF:SA:30:842,Europe/Paris,,OIF, +OIF:SP:30:843,1,"Bois des Horcées",48.278116,2.702033,0,0,OIF:SA:30:842,Europe/Paris,,OIF, +OIF:SP:30:85,1,"Le Puy",48.205804,2.781003,0,0,OIF:SA:30:85,Europe/Paris,,OIF, +OIF:SP:30:851,1,"Centre Commercial Bréau",48.364137,2.953821,0,0,OIF:SA:30:1346,Europe/Paris,,OIF, +OIF:SP:30:86,1,"Le Puy",48.205795,2.781003,0,0,OIF:SA:30:85,Europe/Paris,,OIF, +OIF:SP:30:862,1,"Général de Gaulle",48.266904,2.70776,0,0,OIF:SA:30:862,Europe/Paris,,OIF, +OIF:SP:30:863,1,"Général de Gaulle",48.26702,2.708097,0,0,OIF:SA:30:862,Europe/Paris,,OIF, +OIF:SP:30:87,1,"Lagerville",48.178965,2.830293,0,0,OIF:SA:30:87,Europe/Paris,,OIF, +OIF:SP:30:870,1,"Mairie Thoury-Férottes",48.292039,2.943204,0,0,OIF:SA:12:3357,Europe/Paris,,OIF, +OIF:SP:30:875,1,"Boisroux",48.28336,2.866921,0,0,OIF:SA:30:667,Europe/Paris,,OIF, +OIF:SP:30:88,1,"Lagerville",48.17891,2.830508,0,0,OIF:SA:30:87,Europe/Paris,,OIF, +OIF:SP:30:89,1,"Place du Marché",48.149863,2.703413,0,0,OIF:SA:30:89,Europe/Paris,,OIF, +OIF:SP:30:90,1,"Mézinville",48.157207,2.664666,0,0,OIF:SA:30:90,Europe/Paris,,OIF, +OIF:SP:30:900,1,"École Flagy",48.311004,2.923135,0,0,OIF:SA:12:3341,Europe/Paris,,OIF, +OIF:SP:30:901,1,"Mairie École Dormelles",48.315449,2.902602,0,0,OIF:SA:30:901,Europe/Paris,,OIF, +OIF:SP:30:908,1,"Le Perray",48.130963,2.518385,0,0,OIF:SA:30:908,Europe/Paris,,OIF, +OIF:SP:30:909,1,"Villeneuve",48.133981,2.520263,0,0,OIF:SA:30:909,Europe/Paris,,OIF, +OIF:SP:30:91,1,"Mézinville",48.157081,2.664584,0,0,OIF:SA:30:90,Europe/Paris,,OIF, +OIF:SP:30:910,1,"Seineboué",48.143332,2.496139,0,0,OIF:SA:30:1333,Europe/Paris,,OIF, +OIF:SP:30:911,1,"Barnonville",48.143028,2.487982,0,0,OIF:SA:30:1334,Europe/Paris,,OIF, +OIF:SP:30:912,1,"Centre Beaumont-du-Gâtinais",48.136012,2.475281,0,0,OIF:SA:30:1335,Europe/Paris,,OIF, +OIF:SP:30:913,1,"Salle Polyvalente",48.139079,2.478449,0,0,OIF:SA:30:913,Europe/Paris,,OIF, +OIF:SP:30:92,1,"Mocpoix",48.159072,2.728112,0,0,OIF:SA:30:1338,Europe/Paris,,OIF, +OIF:SP:30:93,1,"Montfort",48.143153,2.695184,0,0,OIF:SA:30:1341,Europe/Paris,,OIF, +OIF:SP:30:94,1,"Rue des Écoles",48.149901,2.746279,0,0,OIF:SA:30:94,Europe/Paris,,OIF, +OIF:SP:30:95,1,"Rue des Écoles",48.149901,2.746279,0,0,OIF:SA:30:94,Europe/Paris,,OIF, +OIF:SP:30:96,1,"Plantagenet",48.145694,2.696478,0,0,OIF:SA:30:1342,Europe/Paris,,OIF, +OIF:SP:30:98,1,"République",48.147982,2.700982,0,0,OIF:SA:30:98,Europe/Paris,,OIF, +OIF:SP:30:99,1,"République",48.148254,2.701165,0,0,OIF:SA:30:98,Europe/Paris,,OIF, +OIF:SP:31:10,1,"Les Carrosses",48.414862,2.718087,0,0,OIF:SA:31:10,Europe/Paris,,OIF, +OIF:SP:31:100,1,"Hôtel de Ville",48.504834,2.794936,0,0,OIF:SA:31:100,Europe/Paris,,OIF, +OIF:SP:31:101,1,"Gare de Champagne sur Seine",48.406544,2.799059,0,0,OIF:SA:8768245,Europe/Paris,,OIF, +OIF:SP:31:102,1,"L'Ouche aux Oiseaux",48.399483,2.800023,0,0,OIF:SA:12:3291,Europe/Paris,,OIF, +OIF:SP:31:103,1,"Place Schneider",48.397052,2.79861,0,0,OIF:SA:12:3935,Europe/Paris,,OIF, +OIF:SP:31:104,1,"Place Schneider",48.39689,2.79869,0,0,OIF:SA:12:3935,Europe/Paris,,OIF, +OIF:SP:31:107,1,"Pignons Blancs",48.502834,2.784286,0,0,OIF:SA:31:107,Europe/Paris,,OIF, +OIF:SP:31:109,1,"République",48.491618,2.696195,0,0,OIF:SA:31:109,Europe/Paris,,OIF, +OIF:SP:31:11,1,"Les Carrosses",48.414799,2.71814,0,0,OIF:SA:31:10,Europe/Paris,,OIF, +OIF:SP:31:110,1,"République",48.491573,2.696317,0,0,OIF:SA:31:109,Europe/Paris,,OIF, +OIF:SP:31:111,1,"Rue Foch",48.485209,2.710459,0,0,OIF:SA:31:111,Europe/Paris,,OIF, +OIF:SP:31:112,1,"Rue Foch",48.485218,2.710351,0,0,OIF:SA:31:111,Europe/Paris,,OIF, +OIF:SP:31:113,1,"Gare de Chartrettes",48.487006,2.696191,0,0,OIF:SA:8768241,Europe/Paris,,OIF, +OIF:SP:31:114,1,"Gare de Chartrettes",48.487006,2.696299,0,0,OIF:SA:8768241,Europe/Paris,,OIF, +OIF:SP:31:115,1,"Mairie",48.488008,2.700796,0,0,OIF:SA:31:115,Europe/Paris,,OIF, +OIF:SP:31:116,1,"Mairie",48.487909,2.700984,0,0,OIF:SA:31:115,Europe/Paris,,OIF, +OIF:SP:31:117,1,"Rue du Pas du Vau",48.485026,2.700099,0,0,OIF:SA:31:117,Europe/Paris,,OIF, +OIF:SP:31:118,1,"Maison de Retraite",48.498323,2.781217,0,0,OIF:SA:31:118,Europe/Paris,,OIF, +OIF:SP:31:119,1,"Maison de Retraite",48.498251,2.781311,0,0,OIF:SA:31:118,Europe/Paris,,OIF, +OIF:SP:31:12,1,"Collège la Vallée",48.413655,2.732663,0,0,OIF:SA:28:311,Europe/Paris,,OIF, +OIF:SP:31:120,1,"Traveteau",48.503898,2.824461,0,0,OIF:SA:31:120,Europe/Paris,,OIF, +OIF:SP:31:121,1,"Quai de la Vallée 1",48.487848,2.744288,0,0,OIF:SA:31:121,Europe/Paris,,OIF, +OIF:SP:31:122,1,"Quai de la Vallée 2",48.487103,2.730596,0,0,OIF:SA:31:122,Europe/Paris,,OIF, +OIF:SP:31:123,1,"Rue du Pas du Vau",48.485106,2.700099,0,0,OIF:SA:31:117,Europe/Paris,,OIF, +OIF:SP:31:14,1,"Charité",48.400835,2.71866,0,0,OIF:SA:31:14,Europe/Paris,,OIF, +OIF:SP:31:144,1,"Salle Polyvalente",48.504288,2.859355,0,0,OIF:SA:31:144,Europe/Paris,,OIF, +OIF:SP:31:145,1,"Salle Polyvalente",48.504242,2.859665,0,0,OIF:SA:31:144,Europe/Paris,,OIF, +OIF:SP:31:15,1,"Charité",48.400853,2.718592,0,0,OIF:SA:31:14,Europe/Paris,,OIF, +OIF:SP:31:16,1,"Les Chênes",48.411158,2.73968,0,0,OIF:SA:28:313,Europe/Paris,,OIF, +OIF:SP:31:17,1,"Les Cigognes",48.415527,2.739822,0,0,OIF:SA:31:17,Europe/Paris,,OIF, +OIF:SP:31:183,1,"Mairie",48.458116,2.800731,0,0,OIF:SA:31:183,Europe/Paris,,OIF, +OIF:SP:31:184,1,"Mairie",48.457963,2.800703,0,0,OIF:SA:31:183,Europe/Paris,,OIF, +OIF:SP:31:185,1,"Gare de Fontaine le Port",48.487051,2.751233,0,0,OIF:SA:8768242,Europe/Paris,,OIF, +OIF:SP:31:186,1,"Gare de Fontaine le Port",48.486997,2.751206,0,0,OIF:SA:8768242,Europe/Paris,,OIF, +OIF:SP:31:187,1,"Mairie",48.486796,2.757317,0,0,OIF:SA:31:187,Europe/Paris,,OIF, +OIF:SP:31:188,1,"Mairie",48.486858,2.757439,0,0,OIF:SA:31:187,Europe/Paris,,OIF, +OIF:SP:31:189,1,"Plateau",48.492646,2.765412,0,0,OIF:SA:31:189,Europe/Paris,,OIF, +OIF:SP:31:19,1,"Deportes",48.409508,2.722477,0,0,OIF:SA:31:19,Europe/Paris,,OIF, +OIF:SP:31:190,1,"Plateau",48.492809,2.765224,0,0,OIF:SA:31:189,Europe/Paris,,OIF, +OIF:SP:31:192,1,"Hôtel de Ville",48.405052,2.701636,0,0,OIF:SA:31:192,Europe/Paris,,OIF, +OIF:SP:31:194,1,"Hôpital Verdun",48.411079,2.694602,0,0,OIF:SA:14:2156,Europe/Paris,,OIF, +OIF:SP:31:195,1,"Alexis Durand",48.401899,2.691826,0,0,OIF:SA:31:195,Europe/Paris,,OIF, +OIF:SP:31:196,1,"Bibliothèque",48.401311,2.693091,0,0,OIF:SA:31:196,Europe/Paris,,OIF, +OIF:SP:31:197,1,"Palais de Justice",48.410274,2.704779,0,0,OIF:SA:31:197,Europe/Paris,,OIF, +OIF:SP:31:198,1,"Palais de Justice",48.410257,2.704684,0,0,OIF:SA:31:197,Europe/Paris,,OIF, +OIF:SP:31:200,1,"Halles de Villars",48.399849,2.712145,0,0,OIF:SA:31:200,Europe/Paris,,OIF, +OIF:SP:31:202,1,"Cour des Adieux",48.402496,2.696636,0,0,OIF:SA:12:3327,Europe/Paris,,OIF, +OIF:SP:31:203,1,"Le Bréau",48.399268,2.711263,0,0,OIF:SA:31:203,Europe/Paris,,OIF, +OIF:SP:31:204,1,"Crevât Jaurès",48.414967,2.699288,0,0,OIF:SA:31:204,Europe/Paris,,OIF, +OIF:SP:31:205,1,"Église Saint-Louis",48.405806,2.701952,0,0,OIF:SA:31:205,Europe/Paris,,OIF, +OIF:SP:31:206,1,"Place de l'Étape",48.407967,2.703777,0,0,OIF:SA:31:206,Europe/Paris,,OIF, +OIF:SP:31:207,1,"Place de l'Étape",48.407985,2.70379,0,0,OIF:SA:31:206,Europe/Paris,,OIF, +OIF:SP:31:209,1,"La Fourche Warnery",48.407924,2.688531,0,0,OIF:SA:28:309,Europe/Paris,,OIF, +OIF:SP:31:210,1,"Route Louise",48.412652,2.6978,0,0,OIF:SA:31:210,Europe/Paris,,OIF, +OIF:SP:31:211,1,"Hôtel de Ville",48.404865,2.701055,0,0,OIF:SA:31:192,Europe/Paris,,OIF, +OIF:SP:31:212,1,"Gare Routière François 1er",48.409365,2.693578,0,0,OIF:SA:31:212,Europe/Paris,,OIF, +OIF:SP:31:214,1,"Collège Inter Boulevard",48.4105,2.69264,0,0,OIF:SA:28:100,Europe/Paris,,OIF, +OIF:SP:31:215,1,"Les Lilas",48.400009,2.689504,0,0,OIF:SA:31:215,Europe/Paris,,OIF, +OIF:SP:31:216,1,"Lorraine",48.413066,2.711902,0,0,OIF:SA:14:14986,Europe/Paris,,OIF, +OIF:SP:31:217,1,"Lorraine",48.412513,2.710399,0,0,OIF:SA:14:14986,Europe/Paris,,OIF, +OIF:SP:31:218,1,"Les Maréchaux",48.413411,2.705193,0,0,OIF:SA:31:218,Europe/Paris,,OIF, +OIF:SP:31:219,1,"Les Maréchaux",48.41351,2.705139,0,0,OIF:SA:31:218,Europe/Paris,,OIF, +OIF:SP:31:220,1,"Paul Jozon",48.413039,2.706068,0,0,OIF:SA:31:220,Europe/Paris,,OIF, +OIF:SP:31:221,1,"Paul Jozon",48.412995,2.705959,0,0,OIF:SA:31:220,Europe/Paris,,OIF, +OIF:SP:31:222,1,"Château de Fontainebleau",48.403942,2.700035,0,0,OIF:SA:14:14988,Europe/Paris,,OIF, +OIF:SP:31:223,1,"Château de Fontainebleau",48.403852,2.699913,0,0,OIF:SA:14:14988,Europe/Paris,,OIF, +OIF:SP:31:225,1,"Saint-Aspais",48.404871,2.690252,0,0,OIF:SA:14:2179,Europe/Paris,,OIF, +OIF:SP:31:227,1,"Sous Préfecture",48.404131,2.691044,0,0,OIF:SA:14:2181,Europe/Paris,,OIF, +OIF:SP:31:230,1,"Paroisse",48.409248,2.696534,0,0,OIF:SA:31:230,Europe/Paris,,OIF, +OIF:SP:31:231,1,"Fontaineroux",48.439011,2.800778,0,0,OIF:SA:31:231,Europe/Paris,,OIF, +OIF:SP:31:232,1,"Croix de Fer",48.443377,2.78552,0,0,OIF:SA:31:232,Europe/Paris,,OIF, +OIF:SP:31:233,1,"Place de Gaulle",48.446521,2.761926,0,0,OIF:SA:31:233,Europe/Paris,,OIF, +OIF:SP:31:234,1,"Place de Gaulle",48.446584,2.761886,0,0,OIF:SA:31:233,Europe/Paris,,OIF, +OIF:SP:31:235,1,"Rue des Fosses",48.44877,2.766539,0,0,OIF:SA:31:235,Europe/Paris,,OIF, +OIF:SP:31:236,1,"Rue des Fosses",48.448743,2.766444,0,0,OIF:SA:31:235,Europe/Paris,,OIF, +OIF:SP:31:237,1,"Gare de Héricy",48.443545,2.759361,0,0,OIF:SA:8768243,Europe/Paris,,OIF, +OIF:SP:31:238,1,"Gare de Héricy",48.443581,2.75928,0,0,OIF:SA:8768243,Europe/Paris,,OIF, +OIF:SP:31:239,1,"Héricy Lavoir",48.448553,2.769361,0,0,OIF:SA:31:239,Europe/Paris,,OIF, +OIF:SP:31:24,1,"Clos Gambetta",48.403279,2.727413,0,0,OIF:SA:31:24,Europe/Paris,,OIF, +OIF:SP:31:240,1,"Les Latteux",48.44495,2.778426,0,0,OIF:SA:31:240,Europe/Paris,,OIF, +OIF:SP:31:241,1,"Héricy Lavoir",48.448562,2.769267,0,0,OIF:SA:31:239,Europe/Paris,,OIF, +OIF:SP:31:242,1,"Les Mornois",48.444109,2.777324,0,0,OIF:SA:31:242,Europe/Paris,,OIF, +OIF:SP:31:243,1,"Le Puits",48.447032,2.774551,0,0,OIF:SA:31:243,Europe/Paris,,OIF, +OIF:SP:31:25,1,"Gare Depose",48.416409,2.726134,0,0,OIF:SA:8768221,Europe/Paris,,OIF, +OIF:SP:31:26,1,"Haut Changis",48.418116,2.729429,0,0,OIF:SA:31:26,Europe/Paris,,OIF, +OIF:SP:31:264,1,"Vaux Garennes",48.510852,2.688967,0,0,OIF:SA:31:264,Europe/Paris,,OIF, +OIF:SP:31:265,1,"Hameau de Villiers",48.45839,2.830768,0,0,OIF:SA:31:265,Europe/Paris,,OIF, +OIF:SP:31:266,1,"Salle des Fetes",48.455552,2.827916,0,0,OIF:SA:31:266,Europe/Paris,,OIF, +OIF:SP:31:267,1,"Rue Bancel - J d'Arc",48.541217,2.661515,0,0,OIF:SA:27:23,Europe/Paris,,OIF, +OIF:SP:31:27,1,"Haut Changis",48.418106,2.729591,0,0,OIF:SA:31:26,Europe/Paris,,OIF, +OIF:SP:31:273,1,"Résidence du Château",48.537757,2.674028,0,0,OIF:SA:31:273,Europe/Paris,,OIF, +OIF:SP:31:274,1,"Résidence du Château",48.537883,2.673975,0,0,OIF:SA:31:273,Europe/Paris,,OIF, +OIF:SP:31:278,1,"Gambetta",48.538116,2.661306,0,0,OIF:SA:27:129,Europe/Paris,,OIF, +OIF:SP:31:279,1,"Place de l'Ermitage",48.526531,2.653573,0,0,OIF:SA:8768200,Europe/Paris,,OIF, +OIF:SP:31:28,1,"Jacques Durand",48.413212,2.735901,0,0,OIF:SA:31:28,Europe/Paris,,OIF, +OIF:SP:31:283,1,"Melun Hôpital",48.539629,2.673255,0,0,OIF:SA:27:128,Europe/Paris,,OIF, +OIF:SP:31:284,1,"Hôpital",48.539926,2.673108,0,0,OIF:SA:27:128,Europe/Paris,,OIF, +OIF:SP:31:285,1,"Trois Horloges",48.549723,2.657546,0,0,OIF:SA:28:123,Europe/Paris,,OIF, +OIF:SP:31:298,1,"Lycée André Malraux",48.394895,2.958976,0,0,OIF:SA:12:3030,Europe/Paris,,OIF, +OIF:SP:31:3,1,"Place Carnot",48.407174,2.721204,0,0,OIF:SA:31:3,Europe/Paris,,OIF, +OIF:SP:31:30,1,"Laffemas",48.427753,2.742902,0,0,OIF:SA:31:30,Europe/Paris,,OIF, +OIF:SP:31:301,1,"Gare de Montereau",48.379998,2.943251,0,0,OIF:SA:8768230,Europe/Paris,,OIF, +OIF:SP:31:302,1,"Place Lepesme",48.382261,2.954115,0,0,OIF:SA:12:3125,Europe/Paris,,OIF, +OIF:SP:31:303,1,"Saint-Nicolas",48.38986,2.958997,0,0,OIF:SA:12:3237,Europe/Paris,,OIF, +OIF:SP:31:304,1,"Voltaire",48.399278,2.951238,0,0,OIF:SA:31:304,Europe/Paris,,OIF, +OIF:SP:31:305,1,"Voltaire",48.399215,2.951264,0,0,OIF:SA:31:304,Europe/Paris,,OIF, +OIF:SP:31:31,1,"Mairie Église",48.404945,2.721134,0,0,OIF:SA:31:31,Europe/Paris,,OIF, +OIF:SP:31:32,1,"Les Maraîchers",48.413005,2.725177,0,0,OIF:SA:31:32,Europe/Paris,,OIF, +OIF:SP:31:321,1,"Chapendu",48.463445,2.857378,0,0,OIF:SA:31:321,Europe/Paris,,OIF, +OIF:SP:31:322,1,"Chapendu",48.463473,2.857257,0,0,OIF:SA:31:321,Europe/Paris,,OIF, +OIF:SP:31:323,1,"Place de la République",48.460402,2.870392,0,0,OIF:SA:31:323,Europe/Paris,,OIF, +OIF:SP:31:324,1,"Le Relais",48.460143,2.87412,0,0,OIF:SA:31:324,Europe/Paris,,OIF, +OIF:SP:31:325,1,"Le Relais",48.459961,2.874511,0,0,OIF:SA:31:324,Europe/Paris,,OIF, +OIF:SP:31:33,1,"Viaduc Moinerie",48.411269,2.725447,0,0,OIF:SA:31:33,Europe/Paris,,OIF, +OIF:SP:31:338,1,"Le Bac",48.427275,2.750989,0,0,OIF:SA:31:338,Europe/Paris,,OIF, +OIF:SP:31:339,1,"Le Bac",48.42741,2.751004,0,0,OIF:SA:31:338,Europe/Paris,,OIF, +OIF:SP:31:34,1,"Montceau",48.411998,2.725169,0,0,OIF:SA:31:34,Europe/Paris,,OIF, +OIF:SP:31:340,1,"Château d'Eau",48.424974,2.761048,0,0,OIF:SA:31:340,Europe/Paris,,OIF, +OIF:SP:31:341,1,"Château d'Eau",48.424839,2.760979,0,0,OIF:SA:31:340,Europe/Paris,,OIF, +OIF:SP:31:342,1,"Les Commerces",48.423695,2.75165,0,0,OIF:SA:31:342,Europe/Paris,,OIF, +OIF:SP:31:343,1,"Les Commerces",48.423723,2.751299,0,0,OIF:SA:31:342,Europe/Paris,,OIF, +OIF:SP:31:344,1,"Croix Saint-Jacques",48.42222,2.759445,0,0,OIF:SA:31:344,Europe/Paris,,OIF, +OIF:SP:31:345,1,"Croix Saint-Jacques",48.422166,2.759269,0,0,OIF:SA:31:344,Europe/Paris,,OIF, +OIF:SP:31:346,1,"Rue Grande",48.423123,2.755752,0,0,OIF:SA:31:346,Europe/Paris,,OIF, +OIF:SP:31:347,1,"Rue Grande",48.423096,2.755738,0,0,OIF:SA:31:346,Europe/Paris,,OIF, +OIF:SP:31:348,1,"Marjolaine",48.429252,2.751302,0,0,OIF:SA:31:348,Europe/Paris,,OIF, +OIF:SP:31:349,1,"Marjolaine",48.429244,2.75114,0,0,OIF:SA:31:348,Europe/Paris,,OIF, +OIF:SP:31:350,1,"ZI Bois Gasseau",48.425224,2.766345,0,0,OIF:SA:31:350,Europe/Paris,,OIF, +OIF:SP:31:351,1,"ZI Bois Gasseau",48.42518,2.766169,0,0,OIF:SA:31:350,Europe/Paris,,OIF, +OIF:SP:31:354,1,"Sivry D605",48.527664,2.75494,0,0,OIF:SA:31:354,Europe/Paris,,OIF, +OIF:SP:31:355,1,"Sivry D605",48.527717,2.754967,0,0,OIF:SA:31:354,Europe/Paris,,OIF, +OIF:SP:31:36,1,"Orloff",48.413421,2.713363,0,0,OIF:SA:31:36,Europe/Paris,,OIF, +OIF:SP:31:369,1,"Chantoiseau",48.405622,2.779323,0,0,OIF:SA:12:3303,Europe/Paris,,OIF, +OIF:SP:31:37,1,"Plateau de la Gare",48.416463,2.723622,0,0,OIF:SA:31:37,Europe/Paris,,OIF, +OIF:SP:31:370,1,"Chantoiseau",48.405721,2.779256,0,0,OIF:SA:12:3303,Europe/Paris,,OIF, +OIF:SP:31:371,1,"Mairie de Thomery",48.408949,2.784077,0,0,OIF:SA:12:3301,Europe/Paris,,OIF, +OIF:SP:31:372,1,"Mairie de Thomery",48.409066,2.78397,0,0,OIF:SA:12:3301,Europe/Paris,,OIF, +OIF:SP:31:373,1,"Église",48.442868,2.890631,0,0,OIF:SA:31:373,Europe/Paris,,OIF, +OIF:SP:31:376,1,"ZI Saint-Just-Clemenceau",48.53394,2.675804,0,0,OIF:SA:27:315,Europe/Paris,,OIF, +OIF:SP:31:377,1,"ZI Saint-Just-Clemenceau",48.533931,2.675953,0,0,OIF:SA:27:315,Europe/Paris,,OIF, +OIF:SP:31:38,1,"Plateau de la Gare",48.416417,2.723784,0,0,OIF:SA:31:37,Europe/Paris,,OIF, +OIF:SP:31:380,1,"ZI Saint-Just-Pascal",48.533895,2.691289,0,0,OIF:SA:27:165,Europe/Paris,,OIF, +OIF:SP:31:381,1,"ZI Saint-Just-Pascal",48.533896,2.690788,0,0,OIF:SA:27:165,Europe/Paris,,OIF, +OIF:SP:31:382,1,"Vaux Mairie",48.525917,2.68329,0,0,OIF:SA:31:382,Europe/Paris,,OIF, +OIF:SP:31:383,1,"Moustiers",48.532879,2.676054,0,0,OIF:SA:27:219,Europe/Paris,,OIF, +OIF:SP:31:384,1,"Vaux Plein Vents",48.517053,2.683597,0,0,OIF:SA:31:384,Europe/Paris,,OIF, +OIF:SP:31:39,1,"Rosa Bonheur",48.415574,2.720563,0,0,OIF:SA:31:39,Europe/Paris,,OIF, +OIF:SP:31:391,1,"La Celle",48.393097,2.829463,0,0,OIF:SA:12:3445,Europe/Paris,,OIF, +OIF:SP:31:392,1,"La Celle",48.393052,2.829557,0,0,OIF:SA:12:3445,Europe/Paris,,OIF, +OIF:SP:31:397,1,"Rue du Port",48.389241,2.84819,0,0,OIF:SA:12:3531,Europe/Paris,,OIF, +OIF:SP:31:398,1,"Rue du Port",48.389134,2.848,0,0,OIF:SA:12:3531,Europe/Paris,,OIF, +OIF:SP:31:4,1,"Caserne",48.402697,2.718484,0,0,OIF:SA:31:4,Europe/Paris,,OIF, +OIF:SP:31:40,1,"Rosa Bonheur",48.41552,2.720577,0,0,OIF:SA:31:39,Europe/Paris,,OIF, +OIF:SP:31:400,1,"Nazareth",48.569612,2.662532,0,0,OIF:SA:27:222,Europe/Paris,,OIF, +OIF:SP:31:401,1,"Acacias",48.439872,2.755872,0,0,OIF:SA:31:401,Europe/Paris,,OIF, +OIF:SP:31:402,1,"Acacias",48.439908,2.755764,0,0,OIF:SA:31:401,Europe/Paris,,OIF, +OIF:SP:31:403,1,"Aulnette",48.433993,2.765458,0,0,OIF:SA:31:403,Europe/Paris,,OIF, +OIF:SP:31:404,1,"Basse Varenne",48.436567,2.754765,0,0,OIF:SA:31:404,Europe/Paris,,OIF, +OIF:SP:31:405,1,"Basse Varenne",48.436576,2.75463,0,0,OIF:SA:31:404,Europe/Paris,,OIF, +OIF:SP:31:406,1,"Saint-Fiacre",48.433563,2.760077,0,0,OIF:SA:31:406,Europe/Paris,,OIF, +OIF:SP:31:407,1,"Gros Saule",48.434746,2.761114,0,0,OIF:SA:31:407,Europe/Paris,,OIF, +OIF:SP:31:408,1,"Lavoir aux Chapeaux",48.431652,2.75917,0,0,OIF:SA:31:408,Europe/Paris,,OIF, +OIF:SP:31:409,1,"Vulaines Mairie",48.430941,2.764312,0,0,OIF:SA:31:409,Europe/Paris,,OIF, +OIF:SP:31:41,1,"Lavoir Daubenton",48.408094,2.725734,0,0,OIF:SA:31:41,Europe/Paris,,OIF, +OIF:SP:31:410,1,"Moulin à Vent Route de Machault",48.432243,2.767038,0,0,OIF:SA:31:410,Europe/Paris,,OIF, +OIF:SP:31:411,1,"Les Pres",48.429004,2.75538,0,0,OIF:SA:31:411,Europe/Paris,,OIF, +OIF:SP:31:412,1,"Les Pres",48.428941,2.755406,0,0,OIF:SA:31:411,Europe/Paris,,OIF, +OIF:SP:31:413,1,"Valrose",48.432758,2.75133,0,0,OIF:SA:31:413,Europe/Paris,,OIF, +OIF:SP:31:414,1,"Valrose",48.432857,2.751223,0,0,OIF:SA:31:413,Europe/Paris,,OIF, +OIF:SP:31:415,1,"Les Coudreaux",48.418616,2.753933,0,0,OIF:SA:31:415,Europe/Paris,,OIF, +OIF:SP:31:417,1,"Les Rues",48.425802,2.75576,0,0,OIF:SA:31:417,Europe/Paris,,OIF, +OIF:SP:31:419,1,"Collège Lucien Cézard",48.410089,2.706722,0,0,OIF:SA:31:419,Europe/Paris,,OIF, +OIF:SP:31:42,1,"Les Terrasses",48.419796,2.735182,0,0,OIF:SA:31:42,Europe/Paris,,OIF, +OIF:SP:31:420,1,"Clos Pensées",48.489425,2.735225,0,0,OIF:SA:31:420,Europe/Paris,,OIF, +OIF:SP:31:421,1,"Collège F Gregh",48.398485,2.806872,0,0,OIF:SA:12:3457,Europe/Paris,,OIF, +OIF:SP:31:422,1,"Vernou Marangis",48.398319,2.871245,0,0,OIF:SA:12:3595,Europe/Paris,,OIF, +OIF:SP:31:423,1,"Vernou le Montoir 1",48.39803,2.855405,0,0,OIF:SA:31:423,Europe/Paris,,OIF, +OIF:SP:31:424,1,"Vernou le Montoir 2",48.395089,2.853486,0,0,OIF:SA:31:424,Europe/Paris,,OIF, +OIF:SP:31:43,1,"Les Terrasses",48.419832,2.735101,0,0,OIF:SA:31:42,Europe/Paris,,OIF, +OIF:SP:31:431,1,"Halles de Villars",48.399885,2.712132,0,0,OIF:SA:31:200,Europe/Paris,,OIF, +OIF:SP:31:433,1,"Collège Lucien Cézard",48.410062,2.706614,0,0,OIF:SA:31:419,Europe/Paris,,OIF, +OIF:SP:31:435,1,"Sivry D605",48.529296,2.751014,0,0,OIF:SA:31:435,Europe/Paris,,OIF, +OIF:SP:31:436,1,"Sivry D605",48.529188,2.751067,0,0,OIF:SA:31:435,Europe/Paris,,OIF, +OIF:SP:31:438,1,"Saint-Nicolas",48.389787,2.959091,0,0,OIF:SA:12:3237,Europe/Paris,,OIF, +OIF:SP:31:439,1,"V.Hugo Porte de Paris",48.539699,2.657864,0,0,OIF:SA:31:439,Europe/Paris,,OIF, +OIF:SP:31:44,1,"Lycée Uruguay",48.410409,2.735421,0,0,OIF:SA:12:3651,Europe/Paris,,OIF, +OIF:SP:31:441,1,"Despatys",48.542505,2.657367,0,0,OIF:SA:29:395,Europe/Paris,,OIF, +OIF:SP:31:443,1,"Lycée Jacques Amyot",48.545557,2.658875,0,0,OIF:SA:27:16,Europe/Paris,,OIF, +OIF:SP:31:444,1,"Route de Nangis",48.541339,2.678844,0,0,OIF:SA:31:444,Europe/Paris,,OIF, +OIF:SP:31:445,1,"Belle Allée",48.527118,2.75147,0,0,OIF:SA:31:445,Europe/Paris,,OIF, +OIF:SP:31:447,1,"Corning",48.420367,2.736456,0,0,OIF:SA:31:447,Europe/Paris,,OIF, +OIF:SP:31:448,1,"Corning",48.420412,2.736388,0,0,OIF:SA:31:447,Europe/Paris,,OIF, +OIF:SP:31:449,1,"ZAC Saint-Fiacre",48.423917,2.739414,0,0,OIF:SA:14:14982,Europe/Paris,,OIF, +OIF:SP:31:45,1,"Viaduc Tabac",48.41223,2.7259,0,0,OIF:SA:31:45,Europe/Paris,,OIF, +OIF:SP:31:450,1,"ZAC Saint-Fiacre",48.423944,2.739346,0,0,OIF:SA:14:14982,Europe/Paris,,OIF, +OIF:SP:31:451,1,"Le Mur Blanc",48.441253,2.792988,0,0,OIF:SA:31:451,Europe/Paris,,OIF, +OIF:SP:31:452,1,"Le Mur Blanc",48.441217,2.793109,0,0,OIF:SA:31:451,Europe/Paris,,OIF, +OIF:SP:31:453,1,"La Source",48.42914,2.760096,0,0,OIF:SA:31:453,Europe/Paris,,OIF, +OIF:SP:31:455,1,"Petite Moinerie",48.409167,2.725013,0,0,OIF:SA:31:33,Europe/Paris,,OIF, +OIF:SP:31:456,1,"Le Puits",48.447087,2.774376,0,0,OIF:SA:31:243,Europe/Paris,,OIF, +OIF:SP:31:457,1,"Laffemas",48.427016,2.742909,0,0,OIF:SA:31:30,Europe/Paris,,OIF, +OIF:SP:31:458,1,"Vulaines Mairie Place",48.430869,2.764392,0,0,OIF:SA:31:458,Europe/Paris,,OIF, +OIF:SP:31:459,1,"Moulin à Vent Brosse",48.43263,2.767082,0,0,OIF:SA:31:459,Europe/Paris,,OIF, +OIF:SP:31:460,1,"Église",48.442155,2.891137,0,0,OIF:SA:31:373,Europe/Paris,,OIF, +OIF:SP:31:461,1,"Avenue de Surville",48.394629,2.953059,0,0,OIF:SA:31:461,Europe/Paris,,OIF, +OIF:SP:31:463,1,"Stade de la Faisanderie",48.4033,2.686353,0,0,OIF:SA:28:60,Europe/Paris,,OIF, +OIF:SP:31:47,1,"Avenue du 23 Août",48.481471,2.670852,0,0,OIF:SA:31:47,Europe/Paris,,OIF, +OIF:SP:31:48,1,"Carnot Fosse",48.476953,2.705573,0,0,OIF:SA:31:48,Europe/Paris,,OIF, +OIF:SP:31:489,1,"4 Septembre",48.406968,2.789381,0,0,OIF:SA:12:3551,Europe/Paris,,OIF, +OIF:SP:31:49,1,"Rue aux Loups",48.481691,2.675695,0,0,OIF:SA:31:49,Europe/Paris,,OIF, +OIF:SP:31:490,1,"Route de Champagne",48.406466,2.791388,0,0,OIF:SA:12:3170,Europe/Paris,,OIF, +OIF:SP:31:496,1,"Place Carnot",48.407282,2.721286,0,0,OIF:SA:31:3,Europe/Paris,,OIF, +OIF:SP:31:497,1,"Caserne",48.402544,2.718564,0,0,OIF:SA:31:4,Europe/Paris,,OIF, +OIF:SP:31:498,1,"Mairie Église",48.404909,2.721228,0,0,OIF:SA:31:31,Europe/Paris,,OIF, +OIF:SP:31:499,1,"Jacques Durand",48.413329,2.735916,0,0,OIF:SA:31:28,Europe/Paris,,OIF, +OIF:SP:31:50,1,"Clos de la Mulatière",48.479619,2.695193,0,0,OIF:SA:31:50,Europe/Paris,,OIF, +OIF:SP:31:500,1,"Mairie de Champagne",48.39443,2.804527,0,0,OIF:SA:12:3285,Europe/Paris,,OIF, +OIF:SP:31:501,1,"L'Ouche aux Oiseaux",48.398902,2.79918,0,0,OIF:SA:12:3291,Europe/Paris,,OIF, +OIF:SP:31:502,1,"Monument",48.401186,2.799065,0,0,OIF:SA:12:3295,Europe/Paris,,OIF, +OIF:SP:31:503,1,"Gare Routière Arrivée",48.415536,2.726654,0,0,OIF:SA:8768221,Europe/Paris,,OIF, +OIF:SP:31:51,1,"Clos de la Mulatière",48.479683,2.694991,0,0,OIF:SA:31:50,Europe/Paris,,OIF, +OIF:SP:31:511,1,"Gare Routière Quai 2",48.415374,2.72668,0,0,OIF:SA:8768221,Europe/Paris,,OIF, +OIF:SP:31:512,1,"Gare Routière Quai 1",48.41549,2.726802,0,0,OIF:SA:8768221,Europe/Paris,,OIF, +OIF:SP:31:513,1,"Gare Routière Quai 3",48.415284,2.726531,0,0,OIF:SA:8768221,Europe/Paris,,OIF, +OIF:SP:31:514,1,"Gare Routière Quai 4",48.415177,2.726395,0,0,OIF:SA:8768221,Europe/Paris,,OIF, +OIF:SP:31:515,1,"Gare Routière Quai 5",48.415096,2.726313,0,0,OIF:SA:8768221,Europe/Paris,,OIF, +OIF:SP:31:517,1,"Gare Routière Quai 3",48.415275,2.726517,0,0,OIF:SA:8768221,Europe/Paris,,OIF, +OIF:SP:31:518,1,"Gare Routière Quai 6",48.415446,2.726505,0,0,OIF:SA:8768221,Europe/Paris,,OIF, +OIF:SP:31:52,1,"Carnot Fosse",48.477242,2.705359,0,0,OIF:SA:31:48,Europe/Paris,,OIF, +OIF:SP:31:522,1,"Rue de l'Industrie",48.526311,2.655291,0,0,OIF:SA:8768200,Europe/Paris,,OIF, +OIF:SP:31:525,1,"Aristide Briand",48.409981,2.706519,0,0,OIF:SA:31:525,Europe/Paris,,OIF, +OIF:SP:31:53,1,"Collège Denecourt",48.478036,2.701389,0,0,OIF:SA:31:53,Europe/Paris,,OIF, +OIF:SP:31:536,1,"La Châtelaine",48.416132,2.725632,0,0,OIF:SA:31:536,Europe/Paris,,OIF, +OIF:SP:31:538,1,"Les Latteux",48.44495,2.778453,0,0,OIF:SA:31:240,Europe/Paris,,OIF, +OIF:SP:31:540,1,"Foch",48.416462,2.707132,0,0,OIF:SA:31:540,Europe/Paris,,OIF, +OIF:SP:31:541,1,"Foch",48.416443,2.70728,0,0,OIF:SA:31:540,Europe/Paris,,OIF, +OIF:SP:31:542,1,"La Plaine",48.412926,2.699044,0,0,OIF:SA:31:542,Europe/Paris,,OIF, +OIF:SP:31:543,1,"La Plaine",48.412962,2.699166,0,0,OIF:SA:31:542,Europe/Paris,,OIF, +OIF:SP:31:544,1,"Thiers",48.415541,2.711109,0,0,OIF:SA:31:544,Europe/Paris,,OIF, +OIF:SP:31:545,1,"Thiers",48.415496,2.71119,0,0,OIF:SA:31:544,Europe/Paris,,OIF, +OIF:SP:31:55,1,"Ecole-Eglise",48.472007,2.700252,0,0,OIF:SA:31:55,Europe/Paris,,OIF, +OIF:SP:31:551,1,"Rocher d'Avon",48.401572,2.721419,0,0,OIF:SA:31:551,Europe/Paris,,OIF, +OIF:SP:31:552,1,"Rocher d'Avon",48.401572,2.721446,0,0,OIF:SA:31:551,Europe/Paris,,OIF, +OIF:SP:31:555,1,"Lavoir Daubenton",48.408085,2.725788,0,0,OIF:SA:31:41,Europe/Paris,,OIF, +OIF:SP:31:556,1,"Hôtel de Ville",48.40507,2.701623,0,0,OIF:SA:31:192,Europe/Paris,,OIF, +OIF:SP:31:56,1,"Gare de Bois le Roi",48.475187,2.692175,0,0,OIF:SA:8768220,Europe/Paris,,OIF, +OIF:SP:31:578,1,"Quai Saint-Martin",48.486576,2.75338,0,0,OIF:SA:31:578,Europe/Paris,,OIF, +OIF:SP:31:59,1,"Castellani Frot",48.479378,2.70632,0,0,OIF:SA:31:59,Europe/Paris,,OIF, +OIF:SP:31:610,1,"Saint-Honoré",48.405138,2.696911,0,0,OIF:SA:31:610,Europe/Paris,,OIF, +OIF:SP:31:611,1,"Saint-Merry",48.405928,2.694445,0,0,OIF:SA:31:611,Europe/Paris,,OIF, +OIF:SP:31:612,1,"Dunant",48.407391,2.68923,0,0,OIF:SA:31:612,Europe/Paris,,OIF, +OIF:SP:31:613,1,"Pierre de Coubertin",48.398267,2.805129,0,0,OIF:SA:12:5006,Europe/Paris,,OIF, +OIF:SP:31:614,1,"Pierre de Coubertin",48.398258,2.805129,0,0,OIF:SA:12:5006,Europe/Paris,,OIF, +OIF:SP:31:615,1,"Croix de Fer",48.443386,2.785588,0,0,OIF:SA:31:232,Europe/Paris,,OIF, +OIF:SP:31:616,1,"Gare de Montereau",48.379989,2.94317,0,0,OIF:SA:8768230,Europe/Paris,,OIF, +OIF:SP:31:617,1,"Jean Fontenelle",48.40352,2.725174,0,0,OIF:SA:31:617,Europe/Paris,,OIF, +OIF:SP:31:618,1,"Souvenir",48.402577,2.725032,0,0,OIF:SA:31:618,Europe/Paris,,OIF, +OIF:SP:31:619,1,"Souvenir",48.402728,2.72556,0,0,OIF:SA:31:618,Europe/Paris,,OIF, +OIF:SP:31:62,1,"Rue de la Presche",48.46231,2.699089,0,0,OIF:SA:31:62,Europe/Paris,,OIF, +OIF:SP:31:620,1,"Les Héronnières",48.399771,2.711159,0,0,OIF:SA:31:620,Europe/Paris,,OIF, +OIF:SP:31:621,1,"Les Héronnières",48.399771,2.711186,0,0,OIF:SA:31:620,Europe/Paris,,OIF, +OIF:SP:31:622,1,"Hôpital",48.411928,2.696283,0,0,OIF:SA:14:2156,Europe/Paris,,OIF, +OIF:SP:31:623,1,"Hôpital",48.411945,2.696418,0,0,OIF:SA:14:2156,Europe/Paris,,OIF, +OIF:SP:31:624,1,"Collège Inter Foret",48.410483,2.692397,0,0,OIF:SA:28:100,Europe/Paris,,OIF, +OIF:SP:31:627,1,"Le Prieure",48.418827,2.736984,0,0,OIF:SA:31:627,Europe/Paris,,OIF, +OIF:SP:31:628,1,"Le Prieure",48.418881,2.736971,0,0,OIF:SA:31:627,Europe/Paris,,OIF, +OIF:SP:31:63,1,"Rue de la Presche",48.46232,2.699035,0,0,OIF:SA:31:62,Europe/Paris,,OIF, +OIF:SP:31:632,1,"Foch Niepce",48.536254,2.684049,0,0,OIF:SA:27:224,Europe/Paris,,OIF, +OIF:SP:31:633,1,"Foch Niepce",48.536253,2.684104,0,0,OIF:SA:27:224,Europe/Paris,,OIF, +OIF:SP:31:634,1,"Abreuvoir",48.422181,2.749896,0,0,OIF:SA:31:634,Europe/Paris,,OIF, +OIF:SP:31:635,1,"Mallarmé",48.429181,2.74833,0,0,OIF:SA:31:635,Europe/Paris,,OIF, +OIF:SP:31:636,1,"Mallarmé",48.429307,2.748358,0,0,OIF:SA:31:635,Europe/Paris,,OIF, +OIF:SP:31:64,1,"Place Platet",48.478838,2.682843,0,0,OIF:SA:31:64,Europe/Paris,,OIF, +OIF:SP:31:66,1,"Gare de Bois le Roi",48.475187,2.692175,0,0,OIF:SA:8768220,Europe/Paris,,OIF, +OIF:SP:31:67,1,"République",48.468983,2.707125,0,0,OIF:SA:31:67,Europe/Paris,,OIF, +OIF:SP:31:679,1,"Espinard",48.435899,2.803533,0,0,OIF:SA:31:679,Europe/Paris,,OIF, +OIF:SP:31:680,1,"Espinard",48.43598,2.803494,0,0,OIF:SA:31:679,Europe/Paris,,OIF, +OIF:SP:31:685,1,"Montmélian",48.422176,2.756649,0,0,OIF:SA:31:685,Europe/Paris,,OIF, +OIF:SP:31:686,1,"Route de la Borde",48.504028,2.855023,0,0,OIF:SA:31:686,Europe/Paris,,OIF, +OIF:SP:31:687,1,"Route de la Borde",48.503983,2.855036,0,0,OIF:SA:31:686,Europe/Paris,,OIF, +OIF:SP:31:688,1,"Mini Centrale",48.484977,2.704061,0,0,OIF:SA:31:688,Europe/Paris,,OIF, +OIF:SP:31:693,1,"Gare Routière Quai 4",48.415168,2.726381,0,0,OIF:SA:8768221,Europe/Paris,,OIF, +OIF:SP:31:694,1,"Grands Champs",48.499248,2.800298,0,0,OIF:SA:31:694,Europe/Paris,,OIF, +OIF:SP:31:695,1,"Grands Champs",48.499311,2.800339,0,0,OIF:SA:31:694,Europe/Paris,,OIF, +OIF:SP:31:696,1,"Moulin de Nanchon",48.3864,2.841967,0,0,OIF:SA:8768246,Europe/Paris,,OIF, +OIF:SP:31:697,1,"Moulin de Nanchon",48.386373,2.842021,0,0,OIF:SA:8768246,Europe/Paris,,OIF, +OIF:SP:31:7,1,"Maison Dans la Vallée",48.410213,2.726682,0,0,OIF:SA:31:7,Europe/Paris,,OIF, +OIF:SP:31:70,1,"Castellani Frot",48.479109,2.70621,0,0,OIF:SA:31:59,Europe/Paris,,OIF, +OIF:SP:31:700,1,"Poste Gare",48.474649,2.691847,0,0,OIF:SA:8768220,Europe/Paris,,OIF, +OIF:SP:31:706,1,"Place Saint-Jean",48.539012,2.662259,0,0,OIF:SA:27:278,Europe/Paris,,OIF, +OIF:SP:31:707,1,"Place Saint-Jean",48.539299,2.662721,0,0,OIF:SA:27:278,Europe/Paris,,OIF, +OIF:SP:31:708,1,"Place Lepesme",48.38211,2.953654,0,0,OIF:SA:12:3125,Europe/Paris,,OIF, +OIF:SP:31:71,1,"Stade",48.469812,2.695085,0,0,OIF:SA:31:71,Europe/Paris,,OIF, +OIF:SP:31:710,1,"Quai de la Vallée 3",48.487434,2.736468,0,0,OIF:SA:31:710,Europe/Paris,,OIF, +OIF:SP:31:711,1,"Quai de la Vallée 1",48.487811,2.744558,0,0,OIF:SA:31:121,Europe/Paris,,OIF, +OIF:SP:31:712,1,"Quai de la Vallée 2",48.487094,2.730772,0,0,OIF:SA:31:122,Europe/Paris,,OIF, +OIF:SP:31:713,1,"Quai de la Vallée 3",48.48746,2.736969,0,0,OIF:SA:31:710,Europe/Paris,,OIF, +OIF:SP:31:714,1,"Leclerc",48.479935,2.694817,0,0,OIF:SA:31:714,Europe/Paris,,OIF, +OIF:SP:31:715,1,"Leclerc",48.480106,2.694926,0,0,OIF:SA:31:714,Europe/Paris,,OIF, +OIF:SP:31:716,1,"C.N.S.D.",48.397701,2.725833,0,0,OIF:SA:31:716,Europe/Paris,,OIF, +OIF:SP:31:724,1,"Dona Mencia",48.482181,2.695562,0,0,OIF:SA:31:724,Europe/Paris,,OIF, +OIF:SP:31:728,1,"ZI Paul Séramy",48.425662,2.769577,0,0,OIF:SA:31:728,Europe/Paris,,OIF, +OIF:SP:31:735,1,"Champagne Mairie",48.394403,2.804568,0,0,OIF:SA:12:3285,Europe/Paris,,OIF, +OIF:SP:31:736,1,"Frédéric Mistral",48.390864,2.803672,0,0,OIF:SA:12:4987,Europe/Paris,,OIF, +OIF:SP:31:737,1,"Frédéric Mistral",48.39082,2.803577,0,0,OIF:SA:12:4987,Europe/Paris,,OIF, +OIF:SP:31:76,1,"Centre Commercial",48.503206,2.790458,0,0,OIF:SA:31:76,Europe/Paris,,OIF, +OIF:SP:31:77,1,"Collège Rosa Bonheur",48.501641,2.788266,0,0,OIF:SA:31:77,Europe/Paris,,OIF, +OIF:SP:31:78,1,"Collège Rosa Bonheur",48.501596,2.788374,0,0,OIF:SA:31:77,Europe/Paris,,OIF, +OIF:SP:31:8,1,"Bezout",48.415844,2.739176,0,0,OIF:SA:31:8,Europe/Paris,,OIF, +OIF:SP:31:81,1,"École",48.489496,2.707879,0,0,OIF:SA:31:81,Europe/Paris,,OIF, +OIF:SP:31:82,1,"École",48.48946,2.70796,0,0,OIF:SA:31:81,Europe/Paris,,OIF, +OIF:SP:31:85,1,"Gendarmerie",48.506308,2.790309,0,0,OIF:SA:31:85,Europe/Paris,,OIF, +OIF:SP:31:86,1,"Gendarmerie",48.506299,2.790255,0,0,OIF:SA:31:85,Europe/Paris,,OIF, +OIF:SP:31:9,1,"Les Bouleaux",48.413084,2.741734,0,0,OIF:SA:28:300,Europe/Paris,,OIF, +OIF:SP:31:91,1,"Centre Commercial",48.482369,2.695685,0,0,OIF:SA:31:91,Europe/Paris,,OIF, +OIF:SP:31:92,1,"Centre Commercial",48.482423,2.695659,0,0,OIF:SA:31:91,Europe/Paris,,OIF, +OIF:SP:31:93,1,"Joffre",48.486934,2.693377,0,0,OIF:SA:31:93,Europe/Paris,,OIF, +OIF:SP:31:94,1,"Joffre",48.486925,2.69335,0,0,OIF:SA:31:93,Europe/Paris,,OIF, +OIF:SP:31:95,1,"Quai Maréchal Leclerc",48.486275,2.717404,0,0,OIF:SA:31:95,Europe/Paris,,OIF, +OIF:SP:31:96,1,"Quai Maréchal Leclerc",48.486239,2.717431,0,0,OIF:SA:31:95,Europe/Paris,,OIF, +OIF:SP:31:97,1,"Temps Perdu",48.492334,2.68538,0,0,OIF:SA:31:97,Europe/Paris,,OIF, +OIF:SP:31:98,1,"Temps Perdu",48.492406,2.685313,0,0,OIF:SA:31:97,Europe/Paris,,OIF, +OIF:SP:31:99,1,"Hôtel de Ville",48.504852,2.794869,0,0,OIF:SA:31:100,Europe/Paris,,OIF, +OIF:SP:32:45001,1,"Boissy Saint-Léger Gare - Arrivée",48.75387,2.505679,0,0,OIF:SA:8775820,Europe/Paris,,OIF, +OIF:SP:32:45005,1,"Achaland",48.762201,2.479454,0,0,OIF:SA:32:45005,Europe/Paris,,OIF, +OIF:SP:32:45006,1,"Achaland",48.763208,2.479021,0,0,OIF:SA:32:45005,Europe/Paris,,OIF, +OIF:SP:32:45007,1,"Avenue de Choisy",48.774629,2.481528,0,0,OIF:SA:13:12,Europe/Paris,,OIF, +OIF:SP:32:45008,1,"Avenue de Choisy",48.775097,2.480863,0,0,OIF:SA:13:12,Europe/Paris,,OIF, +OIF:SP:32:45009,1,"Cimetière",48.769925,2.483663,0,0,OIF:SA:32:45009,Europe/Paris,,OIF, +OIF:SP:32:45010,1,"Cimetière",48.769764,2.483132,0,0,OIF:SA:32:45009,Europe/Paris,,OIF, +OIF:SP:32:45011,1,"République",48.76655,2.480213,0,0,OIF:SA:32:45011,Europe/Paris,,OIF, +OIF:SP:32:45012,1,"République",48.76629,2.480226,0,0,OIF:SA:32:45011,Europe/Paris,,OIF, +OIF:SP:32:45013,1,"Bizet",48.683513,2.53761,0,0,OIF:SA:32:45013,Europe/Paris,,OIF, +OIF:SP:32:45014,1,"Bizet",48.683521,2.537759,0,0,OIF:SA:32:45013,Europe/Paris,,OIF, +OIF:SP:32:45015,1,"Centre Commercial",48.683689,2.534108,0,0,OIF:SA:32:45015,Europe/Paris,,OIF, +OIF:SP:32:45016,1,"Centre Commercial",48.683932,2.534014,0,0,OIF:SA:32:45015,Europe/Paris,,OIF, +OIF:SP:32:45017,1,"Folie",48.692077,2.533583,0,0,OIF:SA:32:45017,Europe/Paris,,OIF, +OIF:SP:32:45018,1,"Folie",48.692076,2.534167,0,0,OIF:SA:32:45017,Europe/Paris,,OIF, +OIF:SP:32:45019,1,"Boussy Gare",48.681245,2.533977,0,0,OIF:SA:8768213,Europe/Paris,,OIF, +OIF:SP:32:45020,1,"Boussy Gare",48.681227,2.53399,0,0,OIF:SA:8768213,Europe/Paris,,OIF, +OIF:SP:32:45021,1,"Mairie",48.689144,2.529771,0,0,OIF:SA:32:45021,Europe/Paris,,OIF, +OIF:SP:32:45022,1,"Mairie",48.689143,2.530056,0,0,OIF:SA:32:45021,Europe/Paris,,OIF, +OIF:SP:32:45023,1,"Menhir",48.691256,2.53005,0,0,OIF:SA:32:45023,Europe/Paris,,OIF, +OIF:SP:32:45024,1,"Menhir",48.691085,2.529832,0,0,OIF:SA:32:45023,Europe/Paris,,OIF, +OIF:SP:32:45025,1,"Nérac",48.685197,2.530123,0,0,OIF:SA:32:45025,Europe/Paris,,OIF, +OIF:SP:32:45026,1,"Nérac",48.686522,2.527684,0,0,OIF:SA:32:45025,Europe/Paris,,OIF, +OIF:SP:32:45027,1,"Justice",48.696405,2.536275,0,0,OIF:SA:32:45027,Europe/Paris,,OIF, +OIF:SP:32:45028,1,"Justice",48.697097,2.536454,0,0,OIF:SA:32:45027,Europe/Paris,,OIF, +OIF:SP:32:45029,1,"Piscine des Sénarts",48.690642,2.525703,0,0,OIF:SA:32:45029,Europe/Paris,,OIF, +OIF:SP:32:45030,1,"Piscine des Sénarts",48.690454,2.525458,0,0,OIF:SA:32:45029,Europe/Paris,,OIF, +OIF:SP:32:45031,1,"Thibaudières",48.687348,2.534081,0,0,OIF:SA:32:45031,Europe/Paris,,OIF, +OIF:SP:32:45032,1,"Thibaudières",48.687542,2.535928,0,0,OIF:SA:32:45031,Europe/Paris,,OIF, +OIF:SP:32:45033,1,"Châtaigneraie",48.68696,2.493027,0,0,OIF:SA:32:45033,Europe/Paris,,OIF, +OIF:SP:32:45034,1,"Châtaigneraie",48.686511,2.492577,0,0,OIF:SA:32:45033,Europe/Paris,,OIF, +OIF:SP:32:45036,1,"Brunoy Gare",48.69949,2.505992,0,0,OIF:SA:8768212,Europe/Paris,,OIF, +OIF:SP:32:45037,1,"Brunoy Gare",48.699725,2.505259,0,0,OIF:SA:8768212,Europe/Paris,,OIF, +OIF:SP:32:45038,1,"Glaises",48.699705,2.493703,0,0,OIF:SA:32:45038,Europe/Paris,,OIF, +OIF:SP:32:45039,1,"Glaises",48.69974,2.493825,0,0,OIF:SA:32:45038,Europe/Paris,,OIF, +OIF:SP:32:45040,1,"Godeaux",48.692006,2.497183,0,0,OIF:SA:32:45040,Europe/Paris,,OIF, +OIF:SP:32:45041,1,"Hautes Mardelles",48.708436,2.522155,0,0,OIF:SA:32:45041,Europe/Paris,,OIF, +OIF:SP:32:45043,1,"Joffre",48.700519,2.489306,0,0,OIF:SA:32:45043,Europe/Paris,,OIF, +OIF:SP:32:45044,1,"Joffre",48.700466,2.48917,0,0,OIF:SA:32:45043,Europe/Paris,,OIF, +OIF:SP:32:45045,1,"Lilas",48.684037,2.494145,0,0,OIF:SA:32:45045,Europe/Paris,,OIF, +OIF:SP:32:45046,1,"Marceau",48.693303,2.488416,0,0,OIF:SA:32:45046,Europe/Paris,,OIF, +OIF:SP:32:45047,1,"Marceau",48.693429,2.488104,0,0,OIF:SA:32:45046,Europe/Paris,,OIF, +OIF:SP:32:45048,1,"Nungesser",48.703957,2.512416,0,0,OIF:SA:32:45048,Europe/Paris,,OIF, +OIF:SP:32:45049,1,"Place des Fetes",48.684257,2.497539,0,0,OIF:SA:32:45049,Europe/Paris,,OIF, +OIF:SP:32:45050,1,"Petit Château",48.696508,2.49812,0,0,OIF:SA:32:45050,Europe/Paris,,OIF, +OIF:SP:32:45051,1,"Petit Château",48.696588,2.498202,0,0,OIF:SA:32:45050,Europe/Paris,,OIF, +OIF:SP:32:45052,1,"Piscine",48.70144,2.493152,0,0,OIF:SA:32:45052,Europe/Paris,,OIF, +OIF:SP:32:45053,1,"Piscine",48.701359,2.493124,0,0,OIF:SA:32:45052,Europe/Paris,,OIF, +OIF:SP:32:45054,1,"Plateau",48.706403,2.517585,0,0,OIF:SA:32:45054,Europe/Paris,,OIF, +OIF:SP:32:45055,1,"Pont Perronet",48.695288,2.502624,0,0,OIF:SA:32:45055,Europe/Paris,,OIF, +OIF:SP:32:45056,1,"Pont Perronet",48.695279,2.502624,0,0,OIF:SA:32:45055,Europe/Paris,,OIF, +OIF:SP:32:45057,1,"Portalis",48.689719,2.499742,0,0,OIF:SA:32:45057,Europe/Paris,,OIF, +OIF:SP:32:45058,1,"Pyramide",48.684401,2.490888,0,0,OIF:SA:8750204,Europe/Paris,,OIF, +OIF:SP:32:45059,1,"Pyramide",48.685496,2.4918,0,0,OIF:SA:8750204,Europe/Paris,,OIF, +OIF:SP:32:45060,1,"Avenue du Parc",48.687078,2.498688,0,0,OIF:SA:32:45060,Europe/Paris,,OIF, +OIF:SP:32:45061,1,"Rue de Montgeron",48.689483,2.495139,0,0,OIF:SA:32:45061,Europe/Paris,,OIF, +OIF:SP:32:45062,1,"Rue de Montgeron",48.689824,2.49533,0,0,OIF:SA:32:45061,Europe/Paris,,OIF, +OIF:SP:32:45063,1,"Sablière",48.707154,2.525695,0,0,OIF:SA:32:45063,Europe/Paris,,OIF, +OIF:SP:32:45064,1,"Trésorerie",48.700874,2.50582,0,0,OIF:SA:32:45064,Europe/Paris,,OIF, +OIF:SP:32:45065,1,"Saint-Pierre Fourier",48.692723,2.491428,0,0,OIF:SA:32:45065,Europe/Paris,,OIF, +OIF:SP:32:45066,1,"Saint-Pierre Fourier",48.692669,2.49155,0,0,OIF:SA:32:45065,Europe/Paris,,OIF, +OIF:SP:32:45067,1,"Saint-Hilaire",48.702422,2.511066,0,0,OIF:SA:32:45067,Europe/Paris,,OIF, +OIF:SP:32:45068,1,"Talma",48.694549,2.503776,0,0,OIF:SA:32:45068,Europe/Paris,,OIF, +OIF:SP:32:45069,1,"Talma",48.694406,2.503504,0,0,OIF:SA:32:45068,Europe/Paris,,OIF, +OIF:SP:32:45070,1,"Val Fleuri",48.707876,2.518541,0,0,OIF:SA:32:45070,Europe/Paris,,OIF, +OIF:SP:32:45071,1,"Wittlich",48.695073,2.501904,0,0,OIF:SA:8797690,Europe/Paris,,OIF, +OIF:SP:32:45072,1,"Wittlich",48.694894,2.5017,0,0,OIF:SA:8797690,Europe/Paris,,OIF, +OIF:SP:32:45073,1,"Yvonne Madeleine",48.706839,2.514476,0,0,OIF:SA:32:45073,Europe/Paris,,OIF, +OIF:SP:32:45075,1,"Combs la Ville Gare",48.667215,2.548593,0,0,OIF:SA:8768214,Europe/Paris,,OIF, +OIF:SP:32:45076,1,"Marche",48.666552,2.552336,0,0,OIF:SA:29:6,Europe/Paris,,OIF, +OIF:SP:32:45077,1,"Marche",48.666732,2.552459,0,0,OIF:SA:29:6,Europe/Paris,,OIF, +OIF:SP:32:45078,1,"Stade",48.670986,2.555707,0,0,OIF:SA:32:45078,Europe/Paris,,OIF, +OIF:SP:32:45079,1,"Stade",48.671022,2.555747,0,0,OIF:SA:32:45078,Europe/Paris,,OIF, +OIF:SP:32:45080,1,"ZAC de la Couture",48.668464,2.553782,0,0,OIF:SA:29:570,Europe/Paris,,OIF, +OIF:SP:32:45081,1,"ZAC de la Couture",48.668957,2.5543,0,0,OIF:SA:29:570,Europe/Paris,,OIF, +OIF:SP:32:45082,1,"Carrefour Pompadour",48.774457,2.439875,0,0,OIF:SA:32:45082,Europe/Paris,,OIF, +OIF:SP:32:45083,1,"Carrefour Pompadour",48.77363,2.439275,0,0,OIF:SA:32:45082,Europe/Paris,,OIF, +OIF:SP:32:45084,1,"L'Echat",48.794752,2.449764,0,0,OIF:SA:59563,Europe/Paris,,OIF, +OIF:SP:32:45086,1,"Edison",48.796587,2.447864,0,0,OIF:SA:59563,Europe/Paris,,OIF, +OIF:SP:32:45087,1,"Haye aux Moines",48.783761,2.447482,0,0,OIF:SA:32:45087,Europe/Paris,,OIF, +OIF:SP:32:45088,1,"Haye aux Moines",48.783861,2.447238,0,0,OIF:SA:32:45087,Europe/Paris,,OIF, +OIF:SP:32:45089,1,"Hôpital H. Mondor",48.798696,2.451215,0,0,OIF:SA:59563,Europe/Paris,,OIF, +OIF:SP:32:45090,1,"J. Savar",48.780084,2.466107,0,0,OIF:SA:13:155,Europe/Paris,,OIF, +OIF:SP:32:45091,1,"J. Savar",48.780111,2.466868,0,0,OIF:SA:13:155,Europe/Paris,,OIF, +OIF:SP:32:45092,1,"Lycée du Lac",48.779711,2.444033,0,0,OIF:SA:32:45092,Europe/Paris,,OIF, +OIF:SP:32:45093,1,"Lycée du Lac",48.779684,2.443666,0,0,OIF:SA:32:45092,Europe/Paris,,OIF, +OIF:SP:32:45096,1,"P. Casalis",48.781083,2.473766,0,0,OIF:SA:13:212,Europe/Paris,,OIF, +OIF:SP:32:45097,1,"P. Casalis",48.780858,2.473562,0,0,OIF:SA:13:212,Europe/Paris,,OIF, +OIF:SP:32:45100,1,"Préfecture",48.784189,2.451577,0,0,OIF:SA:13:659,Europe/Paris,,OIF, +OIF:SP:32:45101,1,"Préfecture",48.783838,2.451917,0,0,OIF:SA:13:659,Europe/Paris,,OIF, +OIF:SP:32:45102,1,"Saint-Simon",48.793451,2.446945,0,0,OIF:SA:32:45102,Europe/Paris,,OIF, +OIF:SP:32:45103,1,"Saint-Simon",48.793676,2.446769,0,0,OIF:SA:32:45102,Europe/Paris,,OIF, +OIF:SP:32:45104,1,"Université",48.788122,2.446444,0,0,OIF:SA:59564,Europe/Paris,,OIF, +OIF:SP:32:45105,1,"Université",48.787141,2.447014,0,0,OIF:SA:59564,Europe/Paris,,OIF, +OIF:SP:32:45106,1,"Beauséjour",48.719048,2.472068,0,0,OIF:SA:32:45106,Europe/Paris,,OIF, +OIF:SP:32:45107,1,"Boileau",48.71534,2.459358,0,0,OIF:SA:32:45107,Europe/Paris,,OIF, +OIF:SP:32:45108,1,"Boileau",48.715223,2.459358,0,0,OIF:SA:32:45107,Europe/Paris,,OIF, +OIF:SP:32:45109,1,"Carquelins",48.718247,2.464622,0,0,OIF:SA:32:45109,Europe/Paris,,OIF, +OIF:SP:32:45110,1,"Desire Bois",48.718884,2.474091,0,0,OIF:SA:32:45110,Europe/Paris,,OIF, +OIF:SP:32:45111,1,"G. Bizet",48.720436,2.468227,0,0,OIF:SA:32:45111,Europe/Paris,,OIF, +OIF:SP:32:45112,1,"Guette",48.719411,2.468455,0,0,OIF:SA:32:45112,Europe/Paris,,OIF, +OIF:SP:32:45113,1,"Jardins Famillaux",48.723992,2.471238,0,0,OIF:SA:32:45113,Europe/Paris,,OIF, +OIF:SP:32:45114,1,"Jardins Famillaux",48.724684,2.471634,0,0,OIF:SA:32:45113,Europe/Paris,,OIF, +OIF:SP:32:45115,1,"Peupliers",48.71298,2.464351,0,0,OIF:SA:32:45115,Europe/Paris,,OIF, +OIF:SP:32:45116,1,"Peupliers",48.713007,2.464215,0,0,OIF:SA:32:45115,Europe/Paris,,OIF, +OIF:SP:32:45117,1,"Pinsons",48.716061,2.466355,0,0,OIF:SA:32:45117,Europe/Paris,,OIF, +OIF:SP:32:45118,1,"Plaine Haute",48.72356,2.463507,0,0,OIF:SA:32:45118,Europe/Paris,,OIF, +OIF:SP:32:45119,1,"Plaine Haute",48.723903,2.46219,0,0,OIF:SA:32:45118,Europe/Paris,,OIF, +OIF:SP:32:45120,1,"Place du 8 Mai 1945",48.716203,2.459115,0,0,OIF:SA:32:45120,Europe/Paris,,OIF, +OIF:SP:32:45121,1,"Remonteru",48.719182,2.455713,0,0,OIF:SA:32:45121,Europe/Paris,,OIF, +OIF:SP:32:45122,1,"Remonteru",48.71848,2.456241,0,0,OIF:SA:32:45121,Europe/Paris,,OIF, +OIF:SP:32:45123,1,"S. Allende",48.720747,2.471569,0,0,OIF:SA:32:45123,Europe/Paris,,OIF, +OIF:SP:32:45125,1,"Vingt Arpents",48.722028,2.46781,0,0,OIF:SA:32:45125,Europe/Paris,,OIF, +OIF:SP:32:45126,1,"Vingt Arpents",48.722181,2.467579,0,0,OIF:SA:32:45125,Europe/Paris,,OIF, +OIF:SP:32:45127,1,"Boisselet",48.696927,2.518883,0,0,OIF:SA:32:45127,Europe/Paris,,OIF, +OIF:SP:32:45128,1,"Boisselet",48.696587,2.518053,0,0,OIF:SA:32:45127,Europe/Paris,,OIF, +OIF:SP:32:45129,1,"Croix Rochopt",48.695566,2.521037,0,0,OIF:SA:32:45129,Europe/Paris,,OIF, +OIF:SP:32:45130,1,"Croix Rochopt",48.695251,2.521348,0,0,OIF:SA:32:45129,Europe/Paris,,OIF, +OIF:SP:32:45131,1,"Espérance",48.693992,2.509803,0,0,OIF:SA:32:45131,Europe/Paris,,OIF, +OIF:SP:32:45132,1,"Espérance",48.693939,2.509219,0,0,OIF:SA:32:45131,Europe/Paris,,OIF, +OIF:SP:32:45133,1,"Hôtel de Ville",48.695081,2.515224,0,0,OIF:SA:32:45133,Europe/Paris,,OIF, +OIF:SP:32:45134,1,"Hôtel de Ville",48.695359,2.515551,0,0,OIF:SA:32:45133,Europe/Paris,,OIF, +OIF:SP:32:45136,1,"Jean Cocteau",48.699766,2.525628,0,0,OIF:SA:32:45136,Europe/Paris,,OIF, +OIF:SP:32:45137,1,"La Plaine",48.695695,2.524866,0,0,OIF:SA:32:45137,Europe/Paris,,OIF, +OIF:SP:32:45138,1,"La Plaine",48.696354,2.52347,0,0,OIF:SA:32:45137,Europe/Paris,,OIF, +OIF:SP:32:45139,1,"Victor Hugo",48.697727,2.524439,0,0,OIF:SA:32:45139,Europe/Paris,,OIF, +OIF:SP:32:45140,1,"Victor Hugo",48.697674,2.524371,0,0,OIF:SA:32:45139,Europe/Paris,,OIF, +OIF:SP:32:45141,1,"Haut Gagny",48.742154,2.489143,0,0,OIF:SA:32:45141,Europe/Paris,,OIF, +OIF:SP:32:45142,1,"Haut Gagny",48.742109,2.489496,0,0,OIF:SA:32:45141,Europe/Paris,,OIF, +OIF:SP:32:45143,1,"A. Garry",48.755445,2.484193,0,0,OIF:SA:32:45143,Europe/Paris,,OIF, +OIF:SP:32:45144,1,"A. Garry",48.755121,2.484287,0,0,OIF:SA:32:45143,Europe/Paris,,OIF, +OIF:SP:32:45145,1,"Allary",48.750859,2.499458,0,0,OIF:SA:32:45145,Europe/Paris,,OIF, +OIF:SP:32:45146,1,"Allary",48.750896,2.498928,0,0,OIF:SA:32:45145,Europe/Paris,,OIF, +OIF:SP:32:45147,1,"A Brun",48.746236,2.481014,0,0,OIF:SA:32:45147,Europe/Paris,,OIF, +OIF:SP:32:45148,1,"A Brun",48.746254,2.48062,0,0,OIF:SA:32:45147,Europe/Paris,,OIF, +OIF:SP:32:45149,1,"Ballastière",48.759863,2.480304,0,0,OIF:SA:32:45149,Europe/Paris,,OIF, +OIF:SP:32:45150,1,"Ballastière",48.759701,2.480181,0,0,OIF:SA:32:45149,Europe/Paris,,OIF, +OIF:SP:32:45151,1,"Émile Combes - Clemenceau",48.741521,2.477902,0,0,OIF:SA:32:45151,Europe/Paris,,OIF, +OIF:SP:32:45152,1,"Émile Combes - Descartes",48.741116,2.477833,0,0,OIF:SA:32:45151,Europe/Paris,,OIF, +OIF:SP:32:45153,1,"Émile Combes - Descartes",48.741369,2.477331,0,0,OIF:SA:32:45151,Europe/Paris,,OIF, +OIF:SP:32:45154,1,"Émile Combes - Clemenceau",48.741494,2.47782,0,0,OIF:SA:32:45151,Europe/Paris,,OIF, +OIF:SP:32:45155,1,"E Colleau",48.7514,2.491195,0,0,OIF:SA:32:45155,Europe/Paris,,OIF, +OIF:SP:32:45156,1,"E Colleau",48.751355,2.491453,0,0,OIF:SA:32:45155,Europe/Paris,,OIF, +OIF:SP:32:45157,1,"Hôtel de Ville",48.749507,2.481172,0,0,OIF:SA:32:45157,Europe/Paris,,OIF, +OIF:SP:32:45158,1,"Hôtel de Ville",48.749956,2.481772,0,0,OIF:SA:32:45157,Europe/Paris,,OIF, +OIF:SP:32:45159,1,"J. Guérin",48.749306,2.476645,0,0,OIF:SA:32:45159,Europe/Paris,,OIF, +OIF:SP:32:45160,1,"J. Guérin",48.749262,2.476183,0,0,OIF:SA:32:45159,Europe/Paris,,OIF, +OIF:SP:32:45163,1,"Le Naoures C.H. E. Roux",48.751371,2.48622,0,0,OIF:SA:32:45163,Europe/Paris,,OIF, +OIF:SP:32:45164,1,"Le Naoures C.H. E. Roux",48.751344,2.486084,0,0,OIF:SA:32:45163,Europe/Paris,,OIF, +OIF:SP:32:45165,1,"Parc de Limeil",48.741578,2.482686,0,0,OIF:SA:32:45165,Europe/Paris,,OIF, +OIF:SP:32:45166,1,"Parc de Limeil",48.741552,2.481993,0,0,OIF:SA:32:45165,Europe/Paris,,OIF, +OIF:SP:32:45167,1,"Pasteur",48.744156,2.47636,0,0,OIF:SA:32:45167,Europe/Paris,,OIF, +OIF:SP:32:45168,1,"Pasteur",48.744138,2.476237,0,0,OIF:SA:32:45167,Europe/Paris,,OIF, +OIF:SP:32:45169,1,"Sablière",48.751125,2.495123,0,0,OIF:SA:32:45169,Europe/Paris,,OIF, +OIF:SP:32:45170,1,"Sablière",48.751016,2.496468,0,0,OIF:SA:32:45169,Europe/Paris,,OIF, +OIF:SP:32:45171,1,"Stade",48.746216,2.509297,0,0,OIF:SA:32:45171,Europe/Paris,,OIF, +OIF:SP:32:45172,1,"Stade",48.745956,2.508929,0,0,OIF:SA:32:45171,Europe/Paris,,OIF, +OIF:SP:32:45173,1,"Tertre",48.743027,2.501404,0,0,OIF:SA:32:45173,Europe/Paris,,OIF, +OIF:SP:32:45174,1,"Tertre",48.743108,2.501499,0,0,OIF:SA:32:45173,Europe/Paris,,OIF, +OIF:SP:32:45176,1,"Aristide Briand",48.702466,2.545125,0,0,OIF:SA:13:1,Europe/Paris,,OIF, +OIF:SP:32:45177,1,"Charles de Gaulle",48.699867,2.540823,0,0,OIF:SA:32:45177,Europe/Paris,,OIF, +OIF:SP:32:45178,1,"Charles de Gaulle",48.700603,2.541302,0,0,OIF:SA:32:45177,Europe/Paris,,OIF, +OIF:SP:32:45179,1,"Lady Sylvia",48.699511,2.548929,0,0,OIF:SA:13:46,Europe/Paris,,OIF, +OIF:SP:32:45180,1,"Lady Sylvia",48.699268,2.549226,0,0,OIF:SA:13:46,Europe/Paris,,OIF, +OIF:SP:32:45181,1,"Prince Wagram",48.706615,2.541855,0,0,OIF:SA:32:45181,Europe/Paris,,OIF, +OIF:SP:32:45182,1,"Prince Wagram",48.706669,2.541828,0,0,OIF:SA:32:45181,Europe/Paris,,OIF, +OIF:SP:32:45185,1,"Robert de Dreux",48.703181,2.542113,0,0,OIF:SA:32:45185,Europe/Paris,,OIF, +OIF:SP:32:45186,1,"Rue de l'Yerres",48.702328,2.536664,0,0,OIF:SA:13:396,Europe/Paris,,OIF, +OIF:SP:32:45187,1,"Rue de l'Yerres",48.702409,2.536596,0,0,OIF:SA:13:396,Europe/Paris,,OIF, +OIF:SP:32:45189,1,"Ami Louis",48.698258,2.470982,0,0,OIF:SA:32:45189,Europe/Paris,,OIF, +OIF:SP:32:45190,1,"Cimetière",48.712923,2.44922,0,0,OIF:SA:32:45190,Europe/Paris,,OIF, +OIF:SP:32:45191,1,"Cimetière",48.712986,2.449084,0,0,OIF:SA:32:45190,Europe/Paris,,OIF, +OIF:SP:32:45192,1,"Commissariat",48.702392,2.463754,0,0,OIF:SA:32:45192,Europe/Paris,,OIF, +OIF:SP:32:45193,1,"Commissariat",48.702347,2.463754,0,0,OIF:SA:32:45192,Europe/Paris,,OIF, +OIF:SP:32:45194,1,"Croix aux Coq",48.703041,2.45387,0,0,OIF:SA:32:45194,Europe/Paris,,OIF, +OIF:SP:32:45195,1,"Dumay Delille",48.697824,2.465468,0,0,OIF:SA:32:45195,Europe/Paris,,OIF, +OIF:SP:32:45196,1,"Église",48.706841,2.455807,0,0,OIF:SA:8799147,Europe/Paris,,OIF, +OIF:SP:32:45197,1,"Église",48.706994,2.455454,0,0,OIF:SA:8799147,Europe/Paris,,OIF, +OIF:SP:32:45198,1,"La Foret",48.696351,2.456285,0,0,OIF:SA:32:45198,Europe/Paris,,OIF, +OIF:SP:32:45199,1,"Gallieni",48.71618,2.446646,0,0,OIF:SA:32:45199,Europe/Paris,,OIF, +OIF:SP:32:45200,1,"Gallieni",48.715928,2.446754,0,0,OIF:SA:32:45199,Europe/Paris,,OIF, +OIF:SP:32:45203,1,"Hôtel de Ville",48.70359,2.461516,0,0,OIF:SA:32:45203,Europe/Paris,,OIF, +OIF:SP:32:45204,1,"Hôtel de Ville",48.703977,2.460811,0,0,OIF:SA:32:45203,Europe/Paris,,OIF, +OIF:SP:32:45205,1,"Hôtel de Ville",48.705048,2.459334,0,0,OIF:SA:32:45203,Europe/Paris,,OIF, +OIF:SP:32:45206,1,"Jean Moulin",48.696335,2.453569,0,0,OIF:SA:32:45206,Europe/Paris,,OIF, +OIF:SP:32:45207,1,"Lycée",48.705315,2.453848,0,0,OIF:SA:32:45207,Europe/Paris,,OIF, +OIF:SP:32:45208,1,"Marguerite",48.697757,2.461082,0,0,OIF:SA:32:45208,Europe/Paris,,OIF, +OIF:SP:32:45209,1,"Pavillon Flore",48.700708,2.466792,0,0,OIF:SA:32:45209,Europe/Paris,,OIF, +OIF:SP:32:45210,1,"Pavillon Flore",48.700861,2.466426,0,0,OIF:SA:32:45209,Europe/Paris,,OIF, +OIF:SP:32:45211,1,"Réveil Matin",48.718815,2.444559,0,0,OIF:SA:32:45211,Europe/Paris,,OIF, +OIF:SP:32:45212,1,"Réveil Matin",48.718824,2.444464,0,0,OIF:SA:32:45211,Europe/Paris,,OIF, +OIF:SP:32:45213,1,"Saint-Joseph",48.699438,2.469056,0,0,OIF:SA:32:45213,Europe/Paris,,OIF, +OIF:SP:32:45214,1,"Saint-Joseph",48.699808,2.468161,0,0,OIF:SA:32:45213,Europe/Paris,,OIF, +OIF:SP:32:45215,1,"Croix Saint-Marc",48.699616,2.453495,0,0,OIF:SA:32:45215,Europe/Paris,,OIF, +OIF:SP:32:45216,1,"La Champagne",48.694103,2.556836,0,0,OIF:SA:13:56,Europe/Paris,,OIF, +OIF:SP:32:45217,1,"La Champagne",48.694058,2.556904,0,0,OIF:SA:13:56,Europe/Paris,,OIF, +OIF:SP:32:45218,1,"Les Pierreux",48.690175,2.55705,0,0,OIF:SA:32:45218,Europe/Paris,,OIF, +OIF:SP:32:45219,1,"Les Pierreux",48.690211,2.557064,0,0,OIF:SA:32:45218,Europe/Paris,,OIF, +OIF:SP:32:45220,1,"La Plaine",48.697357,2.552002,0,0,OIF:SA:13:7,Europe/Paris,,OIF, +OIF:SP:32:45221,1,"La Plaine",48.697384,2.551962,0,0,OIF:SA:13:7,Europe/Paris,,OIF, +OIF:SP:32:45222,1,"Ancienne Poste",48.748032,2.466666,0,0,OIF:SA:32:45222,Europe/Paris,,OIF, +OIF:SP:32:45223,1,"Ancienne Poste",48.748077,2.466584,0,0,OIF:SA:32:45222,Europe/Paris,,OIF, +OIF:SP:32:45224,1,"Acti Park",48.748808,2.455821,0,0,OIF:SA:32:45224,Europe/Paris,,OIF, +OIF:SP:32:45225,1,"Acti Park",48.74941,2.45517,0,0,OIF:SA:32:45224,Europe/Paris,,OIF, +OIF:SP:32:45226,1,"Bois Cerdon",48.727909,2.472838,0,0,OIF:SA:32:45226,Europe/Paris,,OIF, +OIF:SP:32:45227,1,"Bois Cerdon",48.726454,2.472454,0,0,OIF:SA:32:45226,Europe/Paris,,OIF, +OIF:SP:32:45228,1,"Cimetière Intercommunal",48.734426,2.472488,0,0,OIF:SA:32:45228,Europe/Paris,,OIF, +OIF:SP:32:45229,1,"Cimetière Intercommunal",48.73556,2.471866,0,0,OIF:SA:32:45228,Europe/Paris,,OIF, +OIF:SP:32:45230,1,"Couperin",48.747968,2.459367,0,0,OIF:SA:32:45230,Europe/Paris,,OIF, +OIF:SP:32:45231,1,"Couperin",48.747824,2.459978,0,0,OIF:SA:32:45230,Europe/Paris,,OIF, +OIF:SP:32:45232,1,"G. Péri",48.748746,2.471044,0,0,OIF:SA:32:45232,Europe/Paris,,OIF, +OIF:SP:32:45233,1,"G. Péri",48.748792,2.470269,0,0,OIF:SA:32:45232,Europe/Paris,,OIF, +OIF:SP:32:45234,1,"Hôtel de Ville de Valenton",48.744703,2.469919,0,0,OIF:SA:32:45234,Europe/Paris,,OIF, +OIF:SP:32:45235,1,"Hôtel de Ville de Valenton",48.745477,2.469119,0,0,OIF:SA:32:45234,Europe/Paris,,OIF, +OIF:SP:32:45236,1,"J. Curie",48.741165,2.474436,0,0,OIF:SA:32:45236,Europe/Paris,,OIF, +OIF:SP:32:45237,1,"J. Curie",48.741165,2.474558,0,0,OIF:SA:32:45236,Europe/Paris,,OIF, +OIF:SP:32:45238,1,"Lutèce",48.747677,2.462927,0,0,OIF:SA:32:45238,Europe/Paris,,OIF, +OIF:SP:32:45239,1,"Lutèce",48.74756,2.462465,0,0,OIF:SA:32:45238,Europe/Paris,,OIF, +OIF:SP:32:45240,1,"Paillis",48.742192,2.472549,0,0,OIF:SA:32:45240,Europe/Paris,,OIF, +OIF:SP:32:45241,1,"Paillis",48.742318,2.472509,0,0,OIF:SA:32:45240,Europe/Paris,,OIF, +OIF:SP:32:45242,1,"Stade Auguste Delaune",48.750581,2.461942,0,0,OIF:SA:32:45242,Europe/Paris,,OIF, +OIF:SP:32:45243,1,"Stade Auguste Delaune",48.750572,2.462241,0,0,OIF:SA:32:45242,Europe/Paris,,OIF, +OIF:SP:32:45244,1,"Pompadour",48.764388,2.441812,0,0,OIF:SA:32:45244,Europe/Paris,,OIF, +OIF:SP:32:45245,1,"Pompadour",48.765134,2.441841,0,0,OIF:SA:32:45244,Europe/Paris,,OIF, +OIF:SP:32:45246,1,"Bel Air",48.68397,2.558544,0,0,OIF:SA:32:45246,Europe/Paris,,OIF, +OIF:SP:32:45247,1,"Boieldieu",48.685725,2.557398,0,0,OIF:SA:32:45247,Europe/Paris,,OIF, +OIF:SP:32:45248,1,"Boieldieu",48.685793,2.559231,0,0,OIF:SA:32:45247,Europe/Paris,,OIF, +OIF:SP:32:45249,1,"Croix de Jarcy",48.682475,2.555361,0,0,OIF:SA:32:45249,Europe/Paris,,OIF, +OIF:SP:32:45250,1,"Jean Clauzel",48.681991,2.559296,0,0,OIF:SA:32:45250,Europe/Paris,,OIF, +OIF:SP:32:45251,1,"Libération",48.676853,2.557455,0,0,OIF:SA:32:45251,Europe/Paris,,OIF, +OIF:SP:32:45252,1,"Libération",48.677597,2.558639,0,0,OIF:SA:32:45251,Europe/Paris,,OIF, +OIF:SP:32:45254,1,"Allée Verte",48.731063,2.514396,0,0,OIF:SA:32:45254,Europe/Paris,,OIF, +OIF:SP:32:45255,1,"Bois d'Auteuil",48.716937,2.545577,0,0,OIF:SA:13:27,Europe/Paris,,OIF, +OIF:SP:32:45256,1,"Bouleaux",48.724843,2.520271,0,0,OIF:SA:32:45256,Europe/Paris,,OIF, +OIF:SP:32:45257,1,"Collège la Guinette",48.721216,2.539698,0,0,OIF:SA:13:53,Europe/Paris,,OIF, +OIF:SP:32:45258,1,"Château",48.714507,2.536874,0,0,OIF:SA:32:45258,Europe/Paris,,OIF, +OIF:SP:32:45259,1,"Chemin de Fer",48.732333,2.512512,0,0,OIF:SA:32:45259,Europe/Paris,,OIF, +OIF:SP:32:45260,1,"Cimetière",48.725327,2.527134,0,0,OIF:SA:13:655,Europe/Paris,,OIF, +OIF:SP:32:45261,1,"Closeaux",48.710626,2.524526,0,0,OIF:SA:13:408,Europe/Paris,,OIF, +OIF:SP:32:45263,1,"Edouard Branly",48.706032,2.530377,0,0,OIF:SA:32:45263,Europe/Paris,,OIF, +OIF:SP:32:45265,1,"Etoile",48.720872,2.524794,0,0,OIF:SA:32:45265,Europe/Paris,,OIF, +OIF:SP:32:45266,1,"Etoile",48.720784,2.523775,0,0,OIF:SA:32:45265,Europe/Paris,,OIF, +OIF:SP:32:45268,1,"Gros Chêne",48.733336,2.520845,0,0,OIF:SA:13:124,Europe/Paris,,OIF, +OIF:SP:32:45269,1,"Grottes",48.713049,2.532427,0,0,OIF:SA:13:387,Europe/Paris,,OIF, +OIF:SP:32:45270,1,"Mairie",48.721998,2.534593,0,0,OIF:SA:13:150,Europe/Paris,,OIF, +OIF:SP:32:45272,1,"Henri Dunant",48.707996,2.527709,0,0,OIF:SA:32:45272,Europe/Paris,,OIF, +OIF:SP:32:45273,1,"Justice",48.72636,2.521689,0,0,OIF:SA:32:45273,Europe/Paris,,OIF, +OIF:SP:32:45274,1,"Mardelles",48.711191,2.525153,0,0,OIF:SA:13:392,Europe/Paris,,OIF, +OIF:SP:32:45275,1,"Merles",48.722213,2.524147,0,0,OIF:SA:32:45275,Europe/Paris,,OIF, +OIF:SP:32:45276,1,"L'Orangerie",48.711838,2.530806,0,0,OIF:SA:13:413,Europe/Paris,,OIF, +OIF:SP:32:45279,1,"Renard",48.728794,2.523138,0,0,OIF:SA:32:45279,Europe/Paris,,OIF, +OIF:SP:32:45281,1,"Salle Polyvalente",48.721181,2.52826,0,0,OIF:SA:32:45281,Europe/Paris,,OIF, +OIF:SP:32:45282,1,"Salle Polyvalente",48.721253,2.528233,0,0,OIF:SA:32:45281,Europe/Paris,,OIF, +OIF:SP:32:45288,1,"A Dumas",48.740583,2.446779,0,0,OIF:SA:32:45288,Europe/Paris,,OIF, +OIF:SP:32:45290,1,"D'Alembert",48.737958,2.446841,0,0,OIF:SA:32:45290,Europe/Paris,,OIF, +OIF:SP:32:45292,1,"Beauregard",48.727655,2.450053,0,0,OIF:SA:32:45292,Europe/Paris,,OIF, +OIF:SP:32:45293,1,"Beauregard",48.727826,2.449945,0,0,OIF:SA:32:45292,Europe/Paris,,OIF, +OIF:SP:32:45294,1,"B Palissy",48.742372,2.446579,0,0,OIF:SA:32:45294,Europe/Paris,,OIF, +OIF:SP:32:45296,1,"H Berlioz",48.746156,2.446696,0,0,OIF:SA:32:45296,Europe/Paris,,OIF, +OIF:SP:32:45298,1,"Bois Matar",48.733718,2.462608,0,0,OIF:SA:32:45298,Europe/Paris,,OIF, +OIF:SP:32:45299,1,"Bois Matar",48.733754,2.462499,0,0,OIF:SA:32:45298,Europe/Paris,,OIF, +OIF:SP:32:45300,1,"Polyclinique",48.720894,2.451152,0,0,OIF:SA:32:45300,Europe/Paris,,OIF, +OIF:SP:32:45301,1,"Polyclinique",48.721947,2.449864,0,0,OIF:SA:32:45300,Europe/Paris,,OIF, +OIF:SP:32:45302,1,"VSG Gare Place Semard",48.729653,2.447014,0,0,OIF:SA:8768182,Europe/Paris,,OIF, +OIF:SP:32:45303,1,"VSG Gare Place Semard",48.729833,2.447001,0,0,OIF:SA:8768182,Europe/Paris,,OIF, +OIF:SP:32:45304,1,"Centre Hospitalier",48.721413,2.45387,0,0,OIF:SA:32:45304,Europe/Paris,,OIF, +OIF:SP:32:45305,1,"Centre Hospitalier",48.721395,2.453857,0,0,OIF:SA:32:45304,Europe/Paris,,OIF, +OIF:SP:32:45306,1,"Cimetière",48.725036,2.452873,0,0,OIF:SA:32:45306,Europe/Paris,,OIF, +OIF:SP:32:45307,1,"Cimetière",48.725721,2.451557,0,0,OIF:SA:32:45306,Europe/Paris,,OIF, +OIF:SP:32:45308,1,"Cité SNCF",48.73536,2.46518,0,0,OIF:SA:32:45308,Europe/Paris,,OIF, +OIF:SP:32:45309,1,"Cité SNCF",48.735261,2.465207,0,0,OIF:SA:32:45308,Europe/Paris,,OIF, +OIF:SP:32:45310,1,"Cité Sellier",48.752779,2.448164,0,0,OIF:SA:32:45310,Europe/Paris,,OIF, +OIF:SP:32:45311,1,"Cité Sellier",48.75303,2.4483,0,0,OIF:SA:32:45310,Europe/Paris,,OIF, +OIF:SP:32:45312,1,"E Branly",48.750352,2.448091,0,0,OIF:SA:32:45312,Europe/Paris,,OIF, +OIF:SP:32:45313,1,"E Branly",48.750397,2.448064,0,0,OIF:SA:32:45312,Europe/Paris,,OIF, +OIF:SP:32:45314,1,"E. Vaillant",48.736944,2.454816,0,0,OIF:SA:32:45314,Europe/Paris,,OIF, +OIF:SP:32:45315,1,"E. Vaillant",48.736513,2.454529,0,0,OIF:SA:32:45314,Europe/Paris,,OIF, +OIF:SP:32:45316,1,"E. Zola",48.735183,2.453711,0,0,OIF:SA:32:45316,Europe/Paris,,OIF, +OIF:SP:32:45317,1,"E. Zola",48.734636,2.453139,0,0,OIF:SA:32:45316,Europe/Paris,,OIF, +OIF:SP:32:45318,1,"Garilbaldi",48.728414,2.45443,0,0,OIF:SA:32:45318,Europe/Paris,,OIF, +OIF:SP:32:45319,1,"Garilbaldi",48.728433,2.454199,0,0,OIF:SA:32:45318,Europe/Paris,,OIF, +OIF:SP:32:45321,1,"Berthelot",48.737521,2.452561,0,0,OIF:SA:32:45321,Europe/Paris,,OIF, +OIF:SP:32:45322,1,"Les Graviers",48.752909,2.453003,0,0,OIF:SA:32:45322,Europe/Paris,,OIF, +OIF:SP:32:45323,1,"Les Graviers",48.752827,2.453941,0,0,OIF:SA:32:45322,Europe/Paris,,OIF, +OIF:SP:32:45324,1,"Villeneuve Triage",48.745049,2.438158,0,0,OIF:SA:8768180,Europe/Paris,,OIF, +OIF:SP:32:45325,1,"Villeneuve Triage",48.744779,2.438307,0,0,OIF:SA:8768180,Europe/Paris,,OIF, +OIF:SP:32:45326,1,"Hbm",48.740281,2.452622,0,0,OIF:SA:32:45326,Europe/Paris,,OIF, +OIF:SP:32:45327,1,"Hbm",48.740964,2.452311,0,0,OIF:SA:32:45326,Europe/Paris,,OIF, +OIF:SP:32:45328,1,"H Boucher",48.749639,2.450998,0,0,OIF:SA:32:45328,Europe/Paris,,OIF, +OIF:SP:32:45329,1,"H Boucher",48.749712,2.450332,0,0,OIF:SA:32:45328,Europe/Paris,,OIF, +OIF:SP:32:45330,1,"H. Janin",48.733057,2.449956,0,0,OIF:SA:32:45330,Europe/Paris,,OIF, +OIF:SP:32:45331,1,"Henri Janin",48.733084,2.450201,0,0,OIF:SA:32:45330,Europe/Paris,,OIF, +OIF:SP:32:45332,1,"J. Ferry",48.739953,2.457092,0,0,OIF:SA:32:45332,Europe/Paris,,OIF, +OIF:SP:32:45333,1,"J. Ferry",48.740941,2.457393,0,0,OIF:SA:32:45332,Europe/Paris,,OIF, +OIF:SP:32:45334,1,"Justice",48.731053,2.458186,0,0,OIF:SA:32:45334,Europe/Paris,,OIF, +OIF:SP:32:45335,1,"Justice",48.731439,2.459083,0,0,OIF:SA:32:45334,Europe/Paris,,OIF, +OIF:SP:32:45336,1,"L'Armand",48.760828,2.442988,0,0,OIF:SA:32:45336,Europe/Paris,,OIF, +OIF:SP:32:45337,1,"L'Armand",48.759048,2.443175,0,0,OIF:SA:32:45336,Europe/Paris,,OIF, +OIF:SP:32:45338,1,"Massenet",48.744586,2.4524,0,0,OIF:SA:32:45338,Europe/Paris,,OIF, +OIF:SP:32:45339,1,"Massenet",48.744748,2.452346,0,0,OIF:SA:32:45338,Europe/Paris,,OIF, +OIF:SP:32:45340,1,"M Séguin",48.747372,2.452923,0,0,OIF:SA:32:45340,Europe/Paris,,OIF, +OIF:SP:32:45341,1,"M Séguin",48.747327,2.452828,0,0,OIF:SA:32:45340,Europe/Paris,,OIF, +OIF:SP:32:45342,1,"Mairie Annexe",48.748871,2.435094,0,0,OIF:SA:32:45342,Europe/Paris,,OIF, +OIF:SP:32:45343,1,"Mairie Annexe",48.748494,2.435324,0,0,OIF:SA:32:45342,Europe/Paris,,OIF, +OIF:SP:32:45344,1,"Paul Bert",48.754143,2.429259,0,0,OIF:SA:32:45344,Europe/Paris,,OIF, +OIF:SP:32:45345,1,"Paul Bert",48.753352,2.430154,0,0,OIF:SA:32:45344,Europe/Paris,,OIF, +OIF:SP:32:45346,1,"VSG Pont d'Yerres Conservatoire",48.724565,2.447098,0,0,OIF:SA:32:45346,Europe/Paris,,OIF, +OIF:SP:32:45347,1,"VSG Pont d'Yerres Conservatoire",48.7247,2.446881,0,0,OIF:SA:32:45346,Europe/Paris,,OIF, +OIF:SP:32:45349,1,"Gare Routière",48.732259,2.44725,0,0,OIF:SA:8768182,Europe/Paris,,OIF, +OIF:SP:32:45350,1,"Rû de Gironde",48.73718,2.469465,0,0,OIF:SA:32:45350,Europe/Paris,,OIF, +OIF:SP:32:45351,1,"Rû de Gironde",48.737045,2.469342,0,0,OIF:SA:32:45350,Europe/Paris,,OIF, +OIF:SP:32:45352,1,"Tourelles",48.74413,2.459412,0,0,OIF:SA:32:45352,Europe/Paris,,OIF, +OIF:SP:32:45353,1,"Tourelles",48.744211,2.459276,0,0,OIF:SA:32:45352,Europe/Paris,,OIF, +OIF:SP:32:45354,1,"Amélie",48.75184,2.432041,0,0,OIF:SA:32:45354,Europe/Paris,,OIF, +OIF:SP:32:45355,1,"Amélie",48.751957,2.431851,0,0,OIF:SA:32:45354,Europe/Paris,,OIF, +OIF:SP:32:45356,1,"Abbaye",48.709397,2.498391,0,0,OIF:SA:32:45356,Europe/Paris,,OIF, +OIF:SP:32:45357,1,"Abbaye",48.709595,2.498514,0,0,OIF:SA:32:45356,Europe/Paris,,OIF, +OIF:SP:32:45358,1,"Les Arcades",48.722278,2.498268,0,0,OIF:SA:32:45358,Europe/Paris,,OIF, +OIF:SP:32:45359,1,"Belvédère",48.704422,2.487756,0,0,OIF:SA:32:45359,Europe/Paris,,OIF, +OIF:SP:32:45360,1,"Belvédère",48.704261,2.487701,0,0,OIF:SA:32:45359,Europe/Paris,,OIF, +OIF:SP:32:45361,1,"Grosbois",48.730451,2.509095,0,0,OIF:SA:32:45361,Europe/Paris,,OIF, +OIF:SP:32:45362,1,"Bout du Monde",48.716882,2.506741,0,0,OIF:SA:32:45362,Europe/Paris,,OIF, +OIF:SP:32:45363,1,"Bout du Monde",48.716908,2.507013,0,0,OIF:SA:32:45362,Europe/Paris,,OIF, +OIF:SP:32:45364,1,"Brossolette",48.700512,2.48105,0,0,OIF:SA:32:45364,Europe/Paris,,OIF, +OIF:SP:32:45365,1,"Brossolette",48.70061,2.481145,0,0,OIF:SA:32:45364,Europe/Paris,,OIF, +OIF:SP:32:45366,1,"Brun",48.699933,2.476458,0,0,OIF:SA:32:45366,Europe/Paris,,OIF, +OIF:SP:32:45367,1,"Brun",48.699915,2.476771,0,0,OIF:SA:32:45366,Europe/Paris,,OIF, +OIF:SP:32:45368,1,"Bulottes",48.715,2.47491,0,0,OIF:SA:32:45368,Europe/Paris,,OIF, +OIF:SP:32:45369,1,"Bulottes",48.714856,2.475004,0,0,OIF:SA:32:45368,Europe/Paris,,OIF, +OIF:SP:32:45370,1,"Camaldules",48.716908,2.500778,0,0,OIF:SA:32:45370,Europe/Paris,,OIF, +OIF:SP:32:45371,1,"Canotiers",48.708188,2.495046,0,0,OIF:SA:32:45371,Europe/Paris,,OIF, +OIF:SP:32:45372,1,"Canotiers",48.708494,2.49483,0,0,OIF:SA:32:45371,Europe/Paris,,OIF, +OIF:SP:32:45373,1,"Cec",48.714721,2.489701,0,0,OIF:SA:32:45373,Europe/Paris,,OIF, +OIF:SP:32:45374,1,"Cec",48.715744,2.490451,0,0,OIF:SA:32:45373,Europe/Paris,,OIF, +OIF:SP:32:45375,1,"Cimetière",48.718735,2.492239,0,0,OIF:SA:32:45375,Europe/Paris,,OIF, +OIF:SP:32:45376,1,"Corneille",48.695372,2.479515,0,0,OIF:SA:32:45376,Europe/Paris,,OIF, +OIF:SP:32:45377,1,"Corneille",48.695625,2.478388,0,0,OIF:SA:32:45376,Europe/Paris,,OIF, +OIF:SP:32:45379,1,"Yerres Gare RER",48.706873,2.483281,0,0,OIF:SA:8768211,Europe/Paris,,OIF, +OIF:SP:32:45380,1,"Yerres Gare",48.706864,2.483281,0,0,OIF:SA:8768211,Europe/Paris,,OIF, +OIF:SP:32:45381,1,"Germaine",48.699498,2.486533,0,0,OIF:SA:32:45381,Europe/Paris,,OIF, +OIF:SP:32:45382,1,"Glaïeuls",48.7173,2.509364,0,0,OIF:SA:32:45382,Europe/Paris,,OIF, +OIF:SP:32:45383,1,"Glaïeuls",48.717345,2.509296,0,0,OIF:SA:32:45382,Europe/Paris,,OIF, +OIF:SP:32:45384,1,"Grange au Bois",48.710708,2.485492,0,0,OIF:SA:32:45384,Europe/Paris,,OIF, +OIF:SP:32:45385,1,"Grands Godeaux",48.708862,2.488475,0,0,OIF:SA:32:45385,Europe/Paris,,OIF, +OIF:SP:32:45386,1,"G Budé",48.697135,2.485671,0,0,OIF:SA:32:45386,Europe/Paris,,OIF, +OIF:SP:32:45387,1,"H Barbusse",48.71119,2.488495,0,0,OIF:SA:32:45387,Europe/Paris,,OIF, +OIF:SP:32:45388,1,"Hôtel de Ville",48.717016,2.487561,0,0,OIF:SA:32:45388,Europe/Paris,,OIF, +OIF:SP:32:45389,1,"Hôtel de Ville d'Yerres",48.716667,2.486256,0,0,OIF:SA:32:45388,Europe/Paris,,OIF, +OIF:SP:32:45390,1,"Hôpital Prive du Val d'Yerres",48.712285,2.49643,0,0,OIF:SA:32:45390,Europe/Paris,,OIF, +OIF:SP:32:45391,1,"Hôpital Prive du Val d'Yerres",48.712438,2.496227,0,0,OIF:SA:32:45390,Europe/Paris,,OIF, +OIF:SP:32:45392,1,"Jean Jaurès",48.696125,2.480847,0,0,OIF:SA:32:45392,Europe/Paris,,OIF, +OIF:SP:32:45393,1,"Kéranna",48.714435,2.501408,0,0,OIF:SA:32:45393,Europe/Paris,,OIF, +OIF:SP:32:45394,1,"Kéranna",48.714346,2.501245,0,0,OIF:SA:32:45393,Europe/Paris,,OIF, +OIF:SP:32:45395,1,"Lethumiere",48.716027,2.47987,0,0,OIF:SA:32:45395,Europe/Paris,,OIF, +OIF:SP:32:45396,1,"Lethumiere",48.715875,2.479177,0,0,OIF:SA:32:45395,Europe/Paris,,OIF, +OIF:SP:32:45397,1,"Longaines",48.713199,2.469594,0,0,OIF:SA:32:45397,Europe/Paris,,OIF, +OIF:SP:32:45398,1,"Longaines",48.713109,2.469417,0,0,OIF:SA:32:45397,Europe/Paris,,OIF, +OIF:SP:32:45399,1,"LEP Piscine",48.713116,2.479292,0,0,OIF:SA:32:45399,Europe/Paris,,OIF, +OIF:SP:32:45400,1,"LEP Piscine",48.712486,2.479412,0,0,OIF:SA:32:45399,Europe/Paris,,OIF, +OIF:SP:32:45401,1,"Paul Doumer",48.716303,2.503167,0,0,OIF:SA:32:45401,Europe/Paris,,OIF, +OIF:SP:32:45402,1,"Paul Doumer",48.716338,2.503425,0,0,OIF:SA:32:45401,Europe/Paris,,OIF, +OIF:SP:32:45404,1,"Place Gambetta",48.701988,2.486879,0,0,OIF:SA:32:45404,Europe/Paris,,OIF, +OIF:SP:32:45405,1,"Place Gambetta",48.702374,2.486894,0,0,OIF:SA:32:45404,Europe/Paris,,OIF, +OIF:SP:32:45406,1,"Place Gambetta",48.701269,2.486714,0,0,OIF:SA:32:45404,Europe/Paris,,OIF, +OIF:SP:32:45407,1,"Poste",48.716149,2.49033,0,0,OIF:SA:32:45407,Europe/Paris,,OIF, +OIF:SP:32:45408,1,"Préventorium",48.71521,2.493424,0,0,OIF:SA:32:45408,Europe/Paris,,OIF, +OIF:SP:32:45409,1,"Pré des Roches",48.709802,2.491167,0,0,OIF:SA:32:45409,Europe/Paris,,OIF, +OIF:SP:32:45410,1,"Pré des Roches",48.710099,2.490787,0,0,OIF:SA:32:45409,Europe/Paris,,OIF, +OIF:SP:32:45411,1,"Rue du Parc",48.71795,2.513618,0,0,OIF:SA:32:45411,Europe/Paris,,OIF, +OIF:SP:32:45412,1,"Rue du Parc",48.71796,2.513373,0,0,OIF:SA:32:45411,Europe/Paris,,OIF, +OIF:SP:32:45413,1,"Réservoirs",48.72246,2.509245,0,0,OIF:SA:32:45413,Europe/Paris,,OIF, +OIF:SP:32:45414,1,"Relais Forestier",48.696466,2.474589,0,0,OIF:SA:32:45414,Europe/Paris,,OIF, +OIF:SP:32:45415,1,"Relais Forestier",48.696231,2.475484,0,0,OIF:SA:32:45414,Europe/Paris,,OIF, +OIF:SP:32:45417,1,"Royale",48.721772,2.499747,0,0,OIF:SA:32:45417,Europe/Paris,,OIF, +OIF:SP:32:45418,1,"Royale",48.721511,2.49995,0,0,OIF:SA:32:45417,Europe/Paris,,OIF, +OIF:SP:32:45419,1,"Rond-Point Pasteur",48.69455,2.482649,0,0,OIF:SA:32:45419,Europe/Paris,,OIF, +OIF:SP:32:45420,1,"Rond-Point Pasteur",48.694568,2.482717,0,0,OIF:SA:32:45419,Europe/Paris,,OIF, +OIF:SP:32:45422,1,"Rond-Point Pasteur",48.694794,2.482106,0,0,OIF:SA:32:45419,Europe/Paris,,OIF, +OIF:SP:32:45423,1,"Dames",48.728357,2.509129,0,0,OIF:SA:32:45423,Europe/Paris,,OIF, +OIF:SP:32:45424,1,"Rue de la Grange",48.71891,2.496288,0,0,OIF:SA:32:45424,Europe/Paris,,OIF, +OIF:SP:32:45425,1,"Thésée",48.722126,2.503837,0,0,OIF:SA:32:45425,Europe/Paris,,OIF, +OIF:SP:32:45426,1,"Sablière",48.718356,2.499981,0,0,OIF:SA:32:45426,Europe/Paris,,OIF, +OIF:SP:32:45427,1,"Sécurité Sociale",48.711083,2.480006,0,0,OIF:SA:32:45427,Europe/Paris,,OIF, +OIF:SP:32:45428,1,"Sécurité Sociale",48.710625,2.480358,0,0,OIF:SA:32:45427,Europe/Paris,,OIF, +OIF:SP:32:45433,1,"Institut Saint-Pierre",48.69452,2.492262,0,0,OIF:SA:32:45433,Europe/Paris,,OIF, +OIF:SP:32:45439,1,"Collège Pasteur",48.701914,2.494837,0,0,OIF:SA:32:45439,Europe/Paris,,OIF, +OIF:SP:32:45444,1,"Bureau",48.744106,2.464957,0,0,OIF:SA:32:45444,Europe/Paris,,OIF, +OIF:SP:32:45446,1,"Bureau",48.744196,2.464998,0,0,OIF:SA:32:45444,Europe/Paris,,OIF, +OIF:SP:32:45450,1,"Mairie",48.678547,2.559824,0,0,OIF:SA:32:45450,Europe/Paris,,OIF, +OIF:SP:32:45452,1,"Mairie",48.678763,2.55973,0,0,OIF:SA:32:45450,Europe/Paris,,OIF, +OIF:SP:32:45453,1,"Jean Clauzel",48.682476,2.559189,0,0,OIF:SA:32:45250,Europe/Paris,,OIF, +OIF:SP:32:45463,1,"Collège Dunoyer de Segonzac",48.679788,2.528772,0,0,OIF:SA:32:45463,Europe/Paris,,OIF, +OIF:SP:32:45465,1,"Collège Pompidou",48.692495,2.446664,0,0,OIF:SA:32:45465,Europe/Paris,,OIF, +OIF:SP:32:45466,1,"Avenue Lucie",48.695726,2.468966,0,0,OIF:SA:32:45466,Europe/Paris,,OIF, +OIF:SP:32:45470,1,"Chalandray",48.706972,2.475975,0,0,OIF:SA:32:45470,Europe/Paris,,OIF, +OIF:SP:32:45472,1,"Rue de la Tour",48.707754,2.468059,0,0,OIF:SA:32:45472,Europe/Paris,,OIF, +OIF:SP:32:45473,1,"Camaldules",48.716998,2.500615,0,0,OIF:SA:32:45370,Europe/Paris,,OIF, +OIF:SP:32:45497,1,"Talma",48.694533,2.502445,0,0,OIF:SA:32:45068,Europe/Paris,,OIF, +OIF:SP:32:45501,1,"Brunoy Gare",48.699211,2.506031,0,0,OIF:SA:8768212,Europe/Paris,,OIF, +OIF:SP:32:45504,1,"Usine Renault",48.756186,2.426775,0,0,OIF:SA:32:45504,Europe/Paris,,OIF, +OIF:SP:32:45505,1,"Usine Renault",48.755961,2.427005,0,0,OIF:SA:32:45504,Europe/Paris,,OIF, +OIF:SP:32:45506,1,"Auberge de Jeunesse",48.759892,2.422186,0,0,OIF:SA:32:45506,Europe/Paris,,OIF, +OIF:SP:32:45508,1,"Auberge de Jeunesse",48.759271,2.42296,0,0,OIF:SA:32:45506,Europe/Paris,,OIF, +OIF:SP:32:45509,1,"Théophile Ducloux",48.76233,2.419267,0,0,OIF:SA:32:45509,Europe/Paris,,OIF, +OIF:SP:32:45510,1,"Théophile Ducloux",48.761862,2.419824,0,0,OIF:SA:32:45509,Europe/Paris,,OIF, +OIF:SP:32:45511,1,"Fusilles",48.764867,2.416171,0,0,OIF:SA:32:45511,Europe/Paris,,OIF, +OIF:SP:32:45513,1,"Fusilles",48.764921,2.41609,0,0,OIF:SA:32:45511,Europe/Paris,,OIF, +OIF:SP:32:45514,1,"Pont Tvm",48.766306,2.414786,0,0,OIF:SA:32:45514,Europe/Paris,,OIF, +OIF:SP:32:45518,1,"Cimetière",48.704707,2.509879,0,0,OIF:SA:32:45518,Europe/Paris,,OIF, +OIF:SP:32:45527,1,"Poste",48.696572,2.50381,0,0,OIF:SA:32:45527,Europe/Paris,,OIF, +OIF:SP:32:45530,1,"Chemin Vert",48.6772,2.528546,0,0,OIF:SA:32:45530,Europe/Paris,,OIF, +OIF:SP:32:45531,1,"Jean Jaurès",48.672918,2.530267,0,0,OIF:SA:32:45531,Europe/Paris,,OIF, +OIF:SP:32:45532,1,"Pierre Brossolette",48.670913,2.530938,0,0,OIF:SA:32:45532,Europe/Paris,,OIF, +OIF:SP:32:45534,1,"Henri Chasles",48.66899,2.535939,0,0,OIF:SA:32:45534,Europe/Paris,,OIF, +OIF:SP:32:45535,1,"Henri Janin",48.669478,2.539442,0,0,OIF:SA:32:45535,Europe/Paris,,OIF, +OIF:SP:32:45537,1,"Hôtel de Ville",48.671717,2.539315,0,0,OIF:SA:32:45537,Europe/Paris,,OIF, +OIF:SP:32:45538,1,"Marche",48.673782,2.535265,0,0,OIF:SA:32:45538,Europe/Paris,,OIF, +OIF:SP:32:45540,1,"Fontaine Cornaille",48.6785,2.535717,0,0,OIF:SA:32:45540,Europe/Paris,,OIF, +OIF:SP:32:45542,1,"Pont Tvm",48.766279,2.414773,0,0,OIF:SA:32:45514,Europe/Paris,,OIF, +OIF:SP:32:45544,1,"Abbaye",48.71017,2.498597,0,0,OIF:SA:32:45356,Europe/Paris,,OIF, +OIF:SP:32:45545,1,"Abbaye",48.71017,2.498583,0,0,OIF:SA:32:45356,Europe/Paris,,OIF, +OIF:SP:32:45547,1,"Collège Pompidou",48.692486,2.446718,0,0,OIF:SA:32:45465,Europe/Paris,,OIF, +OIF:SP:32:45548,1,"Place Gambetta",48.701269,2.486687,0,0,OIF:SA:32:45404,Europe/Paris,,OIF, +OIF:SP:32:45550,1,"Montgeron Gare",48.707904,2.462328,0,0,OIF:SA:8768210,Europe/Paris,,OIF, +OIF:SP:32:45552,1,"VSG Gare Hôtel de Ville",48.730821,2.44703,0,0,OIF:SA:8768182,Europe/Paris,,OIF, +OIF:SP:32:45554,1,"VSG Gare RER D",48.729644,2.447027,0,0,OIF:SA:8768182,Europe/Paris,,OIF, +OIF:SP:32:45555,1,"Rue de la Grange",48.718075,2.495321,0,0,OIF:SA:32:45424,Europe/Paris,,OIF, +OIF:SP:32:45561,1,"Préventorium",48.714833,2.493206,0,0,OIF:SA:32:45408,Europe/Paris,,OIF, +OIF:SP:32:45562,1,"Sablière",48.71867,2.500322,0,0,OIF:SA:32:45426,Europe/Paris,,OIF, +OIF:SP:32:45565,1,"Trésorerie",48.700497,2.505764,0,0,OIF:SA:32:45064,Europe/Paris,,OIF, +OIF:SP:32:45567,1,"Edouard Branly",48.705851,2.531028,0,0,OIF:SA:32:45263,Europe/Paris,,OIF, +OIF:SP:32:45568,1,"Hôtel de Ville",48.74958,2.480574,0,0,OIF:SA:32:45157,Europe/Paris,,OIF, +OIF:SP:32:45569,1,"Clos des Peintres",48.707093,2.479262,0,0,OIF:SA:32:45569,Europe/Paris,,OIF, +OIF:SP:32:45570,1,"Clos des Peintres",48.707021,2.479343,0,0,OIF:SA:32:45569,Europe/Paris,,OIF, +OIF:SP:32:45572,1,"Chalandray",48.707043,2.476111,0,0,OIF:SA:32:45470,Europe/Paris,,OIF, +OIF:SP:32:45576,1,"Rue de la Tour",48.707608,2.46958,0,0,OIF:SA:32:45472,Europe/Paris,,OIF, +OIF:SP:32:45577,1,"Coquerel",48.723989,2.457938,0,0,OIF:SA:32:45577,Europe/Paris,,OIF, +OIF:SP:32:45582,1,"Coquerel",48.723943,2.458169,0,0,OIF:SA:32:45582,Europe/Paris,,OIF, +OIF:SP:32:45583,1,"A. Camus",48.706642,2.519908,0,0,OIF:SA:32:45583,Europe/Paris,,OIF, +OIF:SP:32:45592,1,"Treillageurs",48.726747,2.509762,0,0,OIF:SA:32:45592,Europe/Paris,,OIF, +OIF:SP:32:45597,1,"Sablière HLM",48.722108,2.510331,0,0,OIF:SA:32:45597,Europe/Paris,,OIF, +OIF:SP:32:45599,1,"Sablière HLM",48.722072,2.510467,0,0,OIF:SA:32:45597,Europe/Paris,,OIF, +OIF:SP:32:45600,1,"Yerres Gare RER",48.706918,2.483064,0,0,OIF:SA:8768211,Europe/Paris,,OIF, +OIF:SP:32:45601,1,"Grosbois",48.73046,2.509,0,0,OIF:SA:32:45361,Europe/Paris,,OIF, +OIF:SP:32:45603,1,"VSG Gare RER D",48.729168,2.446578,0,0,OIF:SA:8768182,Europe/Paris,,OIF, +OIF:SP:32:45604,1,"Berthelot",48.737944,2.452603,0,0,OIF:SA:32:45321,Europe/Paris,,OIF, +OIF:SP:32:45608,1,"Centre Hospitalier",48.721395,2.453884,0,0,OIF:SA:32:45304,Europe/Paris,,OIF, +OIF:SP:32:45609,1,"L'Echat",48.794401,2.449546,0,0,OIF:SA:59563,Europe/Paris,,OIF, +OIF:SP:32:45610,1,"L'Echat",48.795021,2.44986,0,0,OIF:SA:59563,Europe/Paris,,OIF, +OIF:SP:32:45611,1,"Préfecture",48.784189,2.451577,0,0,OIF:SA:13:659,Europe/Paris,,OIF, +OIF:SP:32:45612,1,"Brunoy Gare",48.699625,2.50572,0,0,OIF:SA:8768212,Europe/Paris,,OIF, +OIF:SP:32:45613,1,"Brunoy Gare",48.699121,2.506072,0,0,OIF:SA:8768212,Europe/Paris,,OIF, +OIF:SP:32:45615,1,"Boieldieu",48.686441,2.558731,0,0,OIF:SA:32:45247,Europe/Paris,,OIF, +OIF:SP:32:45616,1,"Rue Rene Thibault",48.70342,2.538882,0,0,OIF:SA:32:45616,Europe/Paris,,OIF, +OIF:SP:32:45617,1,"VSG Gare Place Semard",48.729213,2.44704,0,0,OIF:SA:8768182,Europe/Paris,,OIF, +OIF:SP:32:45619,1,"VSG Gare Mairie",48.73101,2.446976,0,0,OIF:SA:8768182,Europe/Paris,,OIF, +OIF:SP:32:45621,1,"VSG Gare Place Semard",48.729509,2.447054,0,0,OIF:SA:8768182,Europe/Paris,,OIF, +OIF:SP:32:45633,1,"Polyclinique",48.720768,2.451858,0,0,OIF:SA:32:45633,Europe/Paris,,OIF, +OIF:SP:32:45634,1,"Polyclinique",48.720768,2.45179,0,0,OIF:SA:32:45633,Europe/Paris,,OIF, +OIF:SP:32:45635,1,"Montgeron Gare",48.708021,2.461975,0,0,OIF:SA:8768210,Europe/Paris,,OIF, +OIF:SP:32:45636,1,"Montgeron Gare",48.707796,2.46245,0,0,OIF:SA:8768210,Europe/Paris,,OIF, +OIF:SP:32:45637,1,"Montgeron Gare",48.707958,2.462355,0,0,OIF:SA:8768210,Europe/Paris,,OIF, +OIF:SP:32:45639,1,"Brunoy Gare",48.699166,2.506058,0,0,OIF:SA:8768212,Europe/Paris,,OIF, +OIF:SP:32:45641,1,"Boussy Gare",48.681236,2.533624,0,0,OIF:SA:8768213,Europe/Paris,,OIF, +OIF:SP:32:45642,1,"Boussy Gare",48.681236,2.533624,0,0,OIF:SA:8768213,Europe/Paris,,OIF, +OIF:SP:32:45643,1,"Taillis",48.698285,2.47917,0,0,OIF:SA:32:45643,Europe/Paris,,OIF, +OIF:SP:32:45648,1,"Avenue Lucie",48.695726,2.468911,0,0,OIF:SA:32:45466,Europe/Paris,,OIF, +OIF:SP:32:45651,1,"VSG Gare Routière",48.732233,2.447155,0,0,OIF:SA:8768182,Europe/Paris,,OIF, +OIF:SP:32:45652,1,"VSG Gare Routière",48.732188,2.447128,0,0,OIF:SA:8768182,Europe/Paris,,OIF, +OIF:SP:32:45657,1,"Brunoy Gare",48.699518,2.505476,0,0,OIF:SA:8768212,Europe/Paris,,OIF, +OIF:SP:32:45658,1,"Brunoy Gare",48.699175,2.506058,0,0,OIF:SA:8768212,Europe/Paris,,OIF, +OIF:SP:32:45659,1,"Le Naoures C.H. E. Roux",48.751982,2.486372,0,0,OIF:SA:32:45163,Europe/Paris,,OIF, +OIF:SP:32:45666,1,"VSG Gare RER D",48.729662,2.446715,0,0,OIF:SA:8768182,Europe/Paris,,OIF, +OIF:SP:32:45667,1,"VSG Gare",48.730426,2.446839,0,0,OIF:SA:8768182,Europe/Paris,,OIF, +OIF:SP:32:45669,1,"VSG Gare Place Semard",48.729159,2.447054,0,0,OIF:SA:8768182,Europe/Paris,,OIF, +OIF:SP:32:45670,1,"Peupliers",48.713816,2.464488,0,0,OIF:SA:32:45115,Europe/Paris,,OIF, +OIF:SP:32:45671,1,"VSG Gare Place Semard",48.729428,2.447054,0,0,OIF:SA:8768182,Europe/Paris,,OIF, +OIF:SP:32:45672,1,"Dumay Delille",48.697923,2.465346,0,0,OIF:SA:32:45195,Europe/Paris,,OIF, +OIF:SP:32:45673,1,"Mairie",48.722051,2.535096,0,0,OIF:SA:13:150,Europe/Paris,,OIF, +OIF:SP:32:45674,1,"Mairie",48.722105,2.53496,0,0,OIF:SA:13:150,Europe/Paris,,OIF, +OIF:SP:32:45675,1,"Mai",48.717175,2.526791,0,0,OIF:SA:32:45675,Europe/Paris,,OIF, +OIF:SP:32:45677,1,"Plantes",48.720585,2.524467,0,0,OIF:SA:32:45677,Europe/Paris,,OIF, +OIF:SP:32:45681,1,"Cavaillès",48.728647,2.525149,0,0,OIF:SA:32:45681,Europe/Paris,,OIF, +OIF:SP:32:45695,1,"Collège la Guinette",48.721216,2.539698,0,0,OIF:SA:13:53,Europe/Paris,,OIF, +OIF:SP:32:45697,1,"Boussy Gare",48.68138,2.53357,0,0,OIF:SA:8768213,Europe/Paris,,OIF, +OIF:SP:32:45698,1,"Boussy Gare",48.681362,2.533583,0,0,OIF:SA:8768213,Europe/Paris,,OIF, +OIF:SP:32:45703,1,"Descartes",48.739851,2.490726,0,0,OIF:SA:32:45703,Europe/Paris,,OIF, +OIF:SP:32:45704,1,"Descartes",48.740005,2.489965,0,0,OIF:SA:32:45703,Europe/Paris,,OIF, +OIF:SP:32:45705,1,"Lycée Budé",48.744595,2.511344,0,0,OIF:SA:13:335,Europe/Paris,,OIF, +OIF:SP:32:45706,1,"Lycée Budé",48.744039,2.510662,0,0,OIF:SA:13:335,Europe/Paris,,OIF, +OIF:SP:32:45777,1,"Grange au Bois",48.710924,2.485778,0,0,OIF:SA:32:45384,Europe/Paris,,OIF, +OIF:SP:32:45818,1,"Robert de Dreux",48.70284,2.541826,0,0,OIF:SA:32:45185,Europe/Paris,,OIF, +OIF:SP:32:45877,1,"CES Dunoyer de Segonzac",48.679833,2.528745,0,0,OIF:SA:32:45877,Europe/Paris,,OIF, +OIF:SP:32:45881,1,"Marx Dormoy",48.668641,2.529233,0,0,OIF:SA:32:45881,Europe/Paris,,OIF, +OIF:SP:32:45921,1,"ZA Perdrix",48.709841,2.557785,0,0,OIF:SA:32:45921,Europe/Paris,,OIF, +OIF:SP:32:45998,1,"Route de la Grange",48.733228,2.515613,0,0,OIF:SA:32:45998,Europe/Paris,,OIF, +OIF:SP:32:46017,1,"Yerres Gare",48.706918,2.48305,0,0,OIF:SA:8768211,Europe/Paris,,OIF, +OIF:SP:32:46022,1,"S Allende",48.719854,2.474379,0,0,OIF:SA:32:45123,Europe/Paris,,OIF, +OIF:SP:32:46025,1,"Bois Cerdon",48.726481,2.472481,0,0,OIF:SA:32:46025,Europe/Paris,,OIF, +OIF:SP:32:46026,1,"Croix Rouge",48.706738,2.543634,0,0,OIF:SA:13:87,Europe/Paris,,OIF, +OIF:SP:32:46027,1,"Croix Rouge",48.706738,2.543757,0,0,OIF:SA:13:87,Europe/Paris,,OIF, +OIF:SP:32:46028,1,"Collège Simone Veil",48.705648,2.545273,0,0,OIF:SA:13:416,Europe/Paris,,OIF, +OIF:SP:32:46029,1,"Collège Simone Veil",48.704478,2.545771,0,0,OIF:SA:13:416,Europe/Paris,,OIF, +OIF:SP:32:46030,1,"Aristide Briand",48.703257,2.54506,0,0,OIF:SA:32:46030,Europe/Paris,,OIF, +OIF:SP:32:46031,1,"Cerisiers",48.702796,2.546294,0,0,OIF:SA:32:46030,Europe/Paris,,OIF, +OIF:SP:32:46032,1,"Château d'Eau",48.703545,2.549746,0,0,OIF:SA:32:46032,Europe/Paris,,OIF, +OIF:SP:32:46033,1,"Château d'Eau",48.703438,2.549501,0,0,OIF:SA:32:46032,Europe/Paris,,OIF, +OIF:SP:32:46034,1,"Rosebrie",48.705678,2.553177,0,0,OIF:SA:32:46034,Europe/Paris,,OIF, +OIF:SP:32:46035,1,"Rosebrie",48.705616,2.553069,0,0,OIF:SA:32:46034,Europe/Paris,,OIF, +OIF:SP:32:46037,1,"ZA Perdrix",48.709123,2.557212,0,0,OIF:SA:32:45921,Europe/Paris,,OIF, +OIF:SP:32:46039,1,"Moulin Neuf",48.690023,2.536277,0,0,OIF:SA:32:46039,Europe/Paris,,OIF, +OIF:SP:32:46040,1,"Moulin Neuf",48.690086,2.536155,0,0,OIF:SA:32:46039,Europe/Paris,,OIF, +OIF:SP:32:46041,1,"Boussy Gare",48.681101,2.533867,0,0,OIF:SA:8768213,Europe/Paris,,OIF, +OIF:SP:32:46042,1,"Croix Rouge",48.693984,2.543339,0,0,OIF:SA:32:46042,Europe/Paris,,OIF, +OIF:SP:32:46043,1,"Croix Rouge",48.694091,2.543435,0,0,OIF:SA:32:46042,Europe/Paris,,OIF, +OIF:SP:32:46045,1,"Bel Air",48.695344,2.546658,0,0,OIF:SA:32:46045,Europe/Paris,,OIF, +OIF:SP:32:46048,1,"Bel Air",48.695273,2.546494,0,0,OIF:SA:32:46045,Europe/Paris,,OIF, +OIF:SP:32:46049,1,"Centre",48.695149,2.550024,0,0,OIF:SA:32:46049,Europe/Paris,,OIF, +OIF:SP:32:46050,1,"Centre",48.695284,2.550079,0,0,OIF:SA:32:46049,Europe/Paris,,OIF, +OIF:SP:32:46056,1,"Église",48.695452,2.551668,0,0,OIF:SA:13:99,Europe/Paris,,OIF, +OIF:SP:32:46058,1,"Église",48.695506,2.551641,0,0,OIF:SA:13:99,Europe/Paris,,OIF, +OIF:SP:32:46059,1,"Picuré",48.718513,2.48345,0,0,OIF:SA:32:46059,Europe/Paris,,OIF, +OIF:SP:32:46060,1,"Picuré",48.718487,2.482091,0,0,OIF:SA:32:46059,Europe/Paris,,OIF, +OIF:SP:32:46153,1,"Boissy Saint-Léger Gare",48.75387,2.505679,0,0,OIF:SA:8775820,Europe/Paris,,OIF, +OIF:SP:32:46154,1,"Boissy Saint-Léger Gare",48.753493,2.505488,0,0,OIF:SA:8775820,Europe/Paris,,OIF, +OIF:SP:32:46207,1,"Collège Korczak",48.743554,2.503838,0,0,OIF:SA:32:46207,Europe/Paris,,OIF, +OIF:SP:32:46208,1,"Collège Korczak",48.743832,2.504464,0,0,OIF:SA:32:46207,Europe/Paris,,OIF, +OIF:SP:32:46213,1,"Centre Commercial Boissy II",48.752912,2.50361,0,0,OIF:SA:32:46213,Europe/Paris,,OIF, +OIF:SP:32:46290,1,"Boissy Saint-Léger Gare - Arrivée",48.753493,2.505488,0,0,OIF:SA:8775820,Europe/Paris,,OIF, +OIF:SP:32:46297,1,"Centre Commercial Boissy II",48.753136,2.503489,0,0,OIF:SA:32:46213,Europe/Paris,,OIF, +OIF:SP:32:46301,1,"Brunoy Gare",48.699716,2.505354,0,0,OIF:SA:8768212,Europe/Paris,,OIF, +OIF:SP:32:46304,1,"Grand Mat",48.739192,2.443895,0,0,OIF:SA:32:46304,Europe/Paris,,OIF, +OIF:SP:32:46305,1,"Grand Mat",48.739111,2.444221,0,0,OIF:SA:32:46304,Europe/Paris,,OIF, +OIF:SP:32:46307,1,"Yerres Gare RER",48.706864,2.483281,0,0,OIF:SA:8768211,Europe/Paris,,OIF, +OIF:SP:32:46308,1,"Yerres Gare RER",48.706936,2.48305,0,0,OIF:SA:8768211,Europe/Paris,,OIF, +OIF:SP:32:46309,1,"VSG Gare Hôtel de Ville",48.730821,2.44703,0,0,OIF:SA:8768182,Europe/Paris,,OIF, +OIF:SP:32:46311,1,"VSG Gare RER D",48.729168,2.446578,0,0,OIF:SA:8768182,Europe/Paris,,OIF, +OIF:SP:32:46312,1,"Émile",48.697652,2.474443,0,0,OIF:SA:32:46312,Europe/Paris,,OIF, +OIF:SP:32:46313,1,"Grange au Bois",48.710681,2.485492,0,0,OIF:SA:32:45384,Europe/Paris,,OIF, +OIF:SP:32:46314,1,"Thésée",48.722127,2.503511,0,0,OIF:SA:32:45425,Europe/Paris,,OIF, +OIF:SP:32:46315,1,"Réservoirs",48.722442,2.509272,0,0,OIF:SA:32:45413,Europe/Paris,,OIF, +OIF:SP:32:46316,1,"Yerres Gare RER",48.70699,2.483417,0,0,OIF:SA:8768211,Europe/Paris,,OIF, +OIF:SP:32:46317,1,"Mairie",48.722143,2.533982,0,0,OIF:SA:13:150,Europe/Paris,,OIF, +OIF:SP:32:46318,1,"H Barbusse",48.711208,2.488346,0,0,OIF:SA:32:45387,Europe/Paris,,OIF, +OIF:SP:32:46320,1,"Préfecture",48.783838,2.451917,0,0,OIF:SA:13:659,Europe/Paris,,OIF, +OIF:SP:32:46321,1,"Europarc",48.766966,2.470683,0,0,OIF:SA:13:664,Europe/Paris,,OIF, +OIF:SP:32:46322,1,"Europarc",48.766912,2.470901,0,0,OIF:SA:13:664,Europe/Paris,,OIF, +OIF:SP:32:46323,1,"Pointe du Lac",48.768762,2.463481,0,0,OIF:SA:59686,Europe/Paris,,OIF, +OIF:SP:32:46324,1,"Pointe du Lac",48.768627,2.463916,0,0,OIF:SA:59686,Europe/Paris,,OIF, +OIF:SP:32:46325,1,"Jb Oudry",48.775517,2.458888,0,0,OIF:SA:13:671,Europe/Paris,,OIF, +OIF:SP:32:46326,1,"Jb Oudry",48.775364,2.458942,0,0,OIF:SA:13:671,Europe/Paris,,OIF, +OIF:SP:32:46327,1,"Centre Commercial Régional",48.779512,2.455185,0,0,OIF:SA:13:660,Europe/Paris,,OIF, +OIF:SP:32:46328,1,"Centre Commercial Régional",48.779476,2.455008,0,0,OIF:SA:13:660,Europe/Paris,,OIF, +OIF:SP:32:46329,1,"Treillageurs",48.725434,2.509894,0,0,OIF:SA:32:45592,Europe/Paris,,OIF, +OIF:SP:32:46330,1,"Jean XXIII",48.704108,2.500928,0,0,OIF:SA:32:46330,Europe/Paris,,OIF, +OIF:SP:32:46332,1,"Rue de Villecresnes",48.707337,2.499308,0,0,OIF:SA:32:46332,Europe/Paris,,OIF, +OIF:SP:32:46333,1,"Rue du Réveillon Ligne B",48.705441,2.499085,0,0,OIF:SA:32:46333,Europe/Paris,,OIF, +OIF:SP:32:46334,1,"Rue Latérale",48.703262,2.501536,0,0,OIF:SA:32:46334,Europe/Paris,,OIF, +OIF:SP:32:46336,1,"Les Graviers",48.753015,2.454472,0,0,OIF:SA:32:45322,Europe/Paris,,OIF, +OIF:SP:32:46337,1,"Les Graviers",48.752988,2.454458,0,0,OIF:SA:32:45322,Europe/Paris,,OIF, +OIF:SP:32:46338,1,"Ferme de L'Hôpital",48.760903,2.449487,0,0,OIF:SA:32:46338,Europe/Paris,,OIF, +OIF:SP:32:46339,1,"Ferme de L'Hôpital",48.761919,2.448632,0,0,OIF:SA:32:46338,Europe/Paris,,OIF, +OIF:SP:32:46340,1,"École Jean Jaurès",48.765668,2.447593,0,0,OIF:SA:32:46340,Europe/Paris,,OIF, +OIF:SP:32:46341,1,"École Jean Jaurès",48.765039,2.447769,0,0,OIF:SA:32:46340,Europe/Paris,,OIF, +OIF:SP:32:46342,1,"Val Pompadour",48.768914,2.446717,0,0,OIF:SA:32:46342,Europe/Paris,,OIF, +OIF:SP:32:46343,1,"Val Pompadour",48.76886,2.44673,0,0,OIF:SA:32:46342,Europe/Paris,,OIF, +OIF:SP:32:46346,1,"Clos de la Regale",48.690479,2.439586,0,0,OIF:SA:32:46346,Europe/Paris,,OIF, +OIF:SP:32:46349,1,"Clos de la Regale",48.690524,2.439776,0,0,OIF:SA:32:46346,Europe/Paris,,OIF, +OIF:SP:32:46350,1,"La Foret",48.696306,2.45638,0,0,OIF:SA:32:45198,Europe/Paris,,OIF, +OIF:SP:32:46352,1,"Croix aux Coq",48.703202,2.454101,0,0,OIF:SA:32:45194,Europe/Paris,,OIF, +OIF:SP:32:46353,1,"Lycée",48.705306,2.453915,0,0,OIF:SA:32:45207,Europe/Paris,,OIF, +OIF:SP:32:46355,1,"Mairie",48.704635,2.459686,0,0,OIF:SA:32:45203,Europe/Paris,,OIF, +OIF:SP:32:46357,1,"Treillageurs",48.725749,2.509868,0,0,OIF:SA:32:45592,Europe/Paris,,OIF, +OIF:SP:32:46358,1,"Yerres Gare",48.706945,2.4832,0,0,OIF:SA:8768211,Europe/Paris,,OIF, +OIF:SP:32:46359,1,"Mélanie Bonis",48.714118,2.538421,0,0,OIF:SA:32:46359,Europe/Paris,,OIF, +OIF:SP:32:46360,1,"Gare Pompadour",48.772447,2.435356,0,0,OIF:SA:8760880,Europe/Paris,,OIF, +OIF:SP:32:46361,1,"Gare Pompadour",48.772447,2.435356,0,0,OIF:SA:8760880,Europe/Paris,,OIF, +OIF:SP:32:46362,1,"Basse Quinte",48.775352,2.443602,0,0,OIF:SA:32:46362,Europe/Paris,,OIF, +OIF:SP:32:46363,1,"Basse Quinte",48.7752,2.443385,0,0,OIF:SA:32:46362,Europe/Paris,,OIF, +OIF:SP:32:46364,1,"Plage Bleue",48.753593,2.460998,0,0,OIF:SA:32:46364,Europe/Paris,,OIF, +OIF:SP:32:46365,1,"Plage Bleue",48.753413,2.460984,0,0,OIF:SA:32:46364,Europe/Paris,,OIF, +OIF:SP:32:46366,1,"Temps Durables",48.750889,2.467896,0,0,OIF:SA:32:46366,Europe/Paris,,OIF, +OIF:SP:32:46367,1,"Temps Durables",48.750898,2.46757,0,0,OIF:SA:32:46366,Europe/Paris,,OIF, +OIF:SP:32:46368,1,"Pigeonnier",48.709394,2.530104,0,0,OIF:SA:13:388,Europe/Paris,,OIF, +OIF:SP:32:46369,1,"3 Chênes",48.707225,2.502554,0,0,OIF:SA:32:46369,Europe/Paris,,OIF, +OIF:SP:32:46370,1,"3 Chênes",48.707307,2.501712,0,0,OIF:SA:32:46369,Europe/Paris,,OIF, +OIF:SP:32:46371,1,"Faisans",48.707496,2.507729,0,0,OIF:SA:32:46371,Europe/Paris,,OIF, +OIF:SP:32:46372,1,"Faisans",48.707417,2.506574,0,0,OIF:SA:32:46371,Europe/Paris,,OIF, +OIF:SP:32:46373,1,"Chasseurs",48.707856,2.513448,0,0,OIF:SA:32:46373,Europe/Paris,,OIF, +OIF:SP:32:46374,1,"Verdun",48.707958,2.5119,0,0,OIF:SA:32:46373,Europe/Paris,,OIF, +OIF:SP:32:46375,1,"Val Fleuri",48.70759,2.517345,0,0,OIF:SA:32:45070,Europe/Paris,,OIF, +OIF:SP:32:46376,1,"Picardie",48.710132,2.518576,0,0,OIF:SA:32:46376,Europe/Paris,,OIF, +OIF:SP:32:46377,1,"Picardie",48.709152,2.518708,0,0,OIF:SA:32:46376,Europe/Paris,,OIF, +OIF:SP:32:46378,1,"Flandres",48.711946,2.519791,0,0,OIF:SA:32:46378,Europe/Paris,,OIF, +OIF:SP:32:46379,1,"Flandres",48.71199,2.520416,0,0,OIF:SA:32:46378,Europe/Paris,,OIF, +OIF:SP:32:46380,1,"Aquitaine",48.709801,2.523179,0,0,OIF:SA:32:46380,Europe/Paris,,OIF, +OIF:SP:32:46381,1,"Aquitaine",48.709916,2.524198,0,0,OIF:SA:32:46380,Europe/Paris,,OIF, +OIF:SP:32:46382,1,"Franche Comte",48.707768,2.523932,0,0,OIF:SA:32:46382,Europe/Paris,,OIF, +OIF:SP:32:46383,1,"Piscine",48.711124,2.450506,0,0,OIF:SA:32:46383,Europe/Paris,,OIF, +OIF:SP:32:46384,1,"Piscine",48.711116,2.45037,0,0,OIF:SA:32:46383,Europe/Paris,,OIF, +OIF:SP:32:46385,1,"Centre Hospitalier",48.721413,2.45387,0,0,OIF:SA:32:45304,Europe/Paris,,OIF, +OIF:SP:32:46389,1,"Cassin",48.69931,2.463299,0,0,OIF:SA:32:45208,Europe/Paris,,OIF, +OIF:SP:32:46390,1,"Justice",48.694711,2.450606,0,0,OIF:SA:32:46390,Europe/Paris,,OIF, +OIF:SP:32:46391,1,"Justice",48.694631,2.450253,0,0,OIF:SA:32:46390,Europe/Paris,,OIF, +OIF:SP:32:46392,1,"Avenue de Sénart",48.699729,2.457542,0,0,OIF:SA:32:46392,Europe/Paris,,OIF, +OIF:SP:32:46393,1,"Collège Pompidou",48.692495,2.446664,0,0,OIF:SA:32:45465,Europe/Paris,,OIF, +OIF:SP:32:46394,1,"Collège Pompidou",48.692495,2.446664,0,0,OIF:SA:32:45465,Europe/Paris,,OIF, +OIF:SP:32:46401,1,"Montgeron Gare",48.707958,2.462396,0,0,OIF:SA:8768210,Europe/Paris,,OIF, +OIF:SP:32:46402,1,"Mélanie Bonis",48.714118,2.538421,0,0,OIF:SA:32:46359,Europe/Paris,,OIF, +OIF:SP:32:50015,1,"Yerres Gare RER D",48.70707,2.483866,0,0,OIF:SA:8768211,Europe/Paris,,OIF, +OIF:SP:34:1753,1,"Place",49.20195,2.119759,0,0,OIF:SA:34:1753,Europe/Paris,,OIF, +OIF:SP:34:1754,1,"Place",49.202133,2.120153,0,0,OIF:SA:34:1753,Europe/Paris,,OIF, +OIF:SP:34:1755,1,"Bas",49.207505,2.122519,0,0,OIF:SA:34:1755,Europe/Paris,,OIF, +OIF:SP:34:1756,1,"Bas",49.207505,2.122519,0,0,OIF:SA:34:1755,Europe/Paris,,OIF, +OIF:SP:34:1757,1,"D927",49.180041,2.124756,0,0,OIF:SA:34:1757,Europe/Paris,,OIF, +OIF:SP:34:1758,1,"D927",49.181135,2.125079,0,0,OIF:SA:34:1757,Europe/Paris,,OIF, +OIF:SP:34:1759,1,"Université",49.04144,2.073561,0,0,OIF:SA:34:1759,Europe/Paris,,OIF, +OIF:SP:34:1760,1,"Université",49.041389,2.073546,0,0,OIF:SA:34:1759,Europe/Paris,,OIF, +OIF:SP:34:1761,1,"Préfecture RER",49.035288,2.082119,0,0,OIF:SA:8738190,Europe/Paris,,OIF, +OIF:SP:34:1762,1,"Préfecture RER",49.036899,2.079474,0,0,OIF:SA:8738190,Europe/Paris,,OIF, +OIF:SP:34:1764,1,"Faurecia",49.21905,2.130119,0,0,OIF:SA:34:1764,Europe/Paris,,OIF, +OIF:SP:34:1765,1,"Caserne des Pompiers",49.218906,2.129395,0,0,OIF:SA:34:1765,Europe/Paris,,OIF, +OIF:SP:34:1767,1,"Gare Routière",49.232396,2.133046,0,0,OIF:SA:34:1767,Europe/Paris,,OIF, +OIF:SP:34:1768,1,"Gare Routière",49.232396,2.133046,0,0,OIF:SA:34:1767,Europe/Paris,,OIF, +OIF:SP:34:1769,1,"Centre",49.137801,2.113121,0,0,OIF:SA:34:1769,Europe/Paris,,OIF, +OIF:SP:34:1770,1,"Centre",49.137801,2.113121,0,0,OIF:SA:34:1769,Europe/Paris,,OIF, +OIF:SP:35:1001,1,"Les Châtaigniers",48.750348,2.539241,0,0,OIF:SA:35:1001,Europe/Paris,,OIF, +OIF:SP:35:1003,1,"Les 2 Communes",48.780678,2.520156,0,0,OIF:SA:35:1003,Europe/Paris,,OIF, +OIF:SP:35:1004,1,"Place du 08 Mai 1945",48.792352,2.532522,0,0,OIF:SA:35:1004,Europe/Paris,,OIF, +OIF:SP:35:1005,1,"Albert Dru",48.763792,2.525777,0,0,OIF:SA:35:1005,Europe/Paris,,OIF, +OIF:SP:35:1006,1,"Albert Dru",48.763918,2.525743,0,0,OIF:SA:35:1005,Europe/Paris,,OIF, +OIF:SP:35:1008,1,"Amboile Centre",48.786197,2.530895,0,0,OIF:SA:35:1008,Europe/Paris,,OIF, +OIF:SP:35:1009,1,"Amboile Centre",48.785685,2.531074,0,0,OIF:SA:35:1008,Europe/Paris,,OIF, +OIF:SP:35:1010,1,"Sévigné",48.786621,2.530569,0,0,OIF:SA:35:1010,Europe/Paris,,OIF, +OIF:SP:35:1011,1,"Argonne",48.764457,2.512933,0,0,OIF:SA:35:1011,Europe/Paris,,OIF, +OIF:SP:35:1012,1,"Argonne",48.764475,2.512906,0,0,OIF:SA:35:1011,Europe/Paris,,OIF, +OIF:SP:35:1013,1,"A. Baron",48.780394,2.512253,0,0,OIF:SA:35:1013,Europe/Paris,,OIF, +OIF:SP:35:1014,1,"A. Baron",48.780421,2.511981,0,0,OIF:SA:35:1013,Europe/Paris,,OIF, +OIF:SP:35:1015,1,"Beauséjour-Moulin à Vent",48.765575,2.533549,0,0,OIF:SA:35:1015,Europe/Paris,,OIF, +OIF:SP:35:1016,1,"Berthelot",48.768814,2.542549,0,0,OIF:SA:35:1016,Europe/Paris,,OIF, +OIF:SP:35:1017,1,"Berthelot",48.768733,2.542386,0,0,OIF:SA:35:1016,Europe/Paris,,OIF, +OIF:SP:35:1018,1,"Boissy-Saint-Léger RER",48.753669,2.50548,0,0,OIF:SA:8775820,Europe/Paris,,OIF, +OIF:SP:35:1019,1,"Boissy-Saint-Léger RER",48.753347,2.506054,0,0,OIF:SA:8775820,Europe/Paris,,OIF, +OIF:SP:35:1020,1,"Les Bosquets",48.766065,2.536107,0,0,OIF:SA:35:1020,Europe/Paris,,OIF, +OIF:SP:35:1021,1,"Les Bosquets",48.765886,2.536011,0,0,OIF:SA:35:1020,Europe/Paris,,OIF, +OIF:SP:35:1022,1,"Boulards",48.763811,2.517948,0,0,OIF:SA:35:1022,Europe/Paris,,OIF, +OIF:SP:35:1023,1,"Boulards",48.764783,2.517244,0,0,OIF:SA:35:1022,Europe/Paris,,OIF, +OIF:SP:35:1024,1,"Léon Bresset",48.776135,2.549555,0,0,OIF:SA:35:1024,Europe/Paris,,OIF, +OIF:SP:35:1025,1,"Chemin de Brie",48.769283,2.546209,0,0,OIF:SA:35:1025,Europe/Paris,,OIF, +OIF:SP:35:1026,1,"Chemin de Brie",48.757923,2.540875,0,0,OIF:SA:35:1026,Europe/Paris,,OIF, +OIF:SP:35:1027,1,"Chemin de Brie",48.758021,2.541052,0,0,OIF:SA:35:1026,Europe/Paris,,OIF, +OIF:SP:35:1028,1,"Pierre Brossolette",48.77796,2.544721,0,0,OIF:SA:35:1028,Europe/Paris,,OIF, +OIF:SP:35:1029,1,"Pierre Brossolette",48.777682,2.543958,0,0,OIF:SA:35:1028,Europe/Paris,,OIF, +OIF:SP:35:1030,1,"Pierre Brossolette",48.766809,2.508767,0,0,OIF:SA:35:1030,Europe/Paris,,OIF, +OIF:SP:35:1031,1,"Pierre Brossolette",48.766656,2.508971,0,0,OIF:SA:35:1030,Europe/Paris,,OIF, +OIF:SP:35:1032,1,"École des Bruyères",48.75931,2.549635,0,0,OIF:SA:35:1032,Europe/Paris,,OIF, +OIF:SP:35:1033,1,"Clément Ader",48.802455,2.552833,0,0,OIF:SA:35:1033,Europe/Paris,,OIF, +OIF:SP:35:1034,1,"Les Cantoux",48.790831,2.549343,0,0,OIF:SA:35:1034,Europe/Paris,,OIF, +OIF:SP:35:1035,1,"Danielle Casanova",48.78977,2.549978,0,0,OIF:SA:35:1035,Europe/Paris,,OIF, +OIF:SP:35:1036,1,"Danielle Casanova",48.789404,2.548575,0,0,OIF:SA:35:1035,Europe/Paris,,OIF, +OIF:SP:35:1037,1,"Centre Commercial",48.792197,2.554817,0,0,OIF:SA:35:1037,Europe/Paris,,OIF, +OIF:SP:35:1038,1,"Centre Culturel",48.775312,2.520354,0,0,OIF:SA:35:1038,Europe/Paris,,OIF, +OIF:SP:35:1039,1,"Centre Culturel",48.775223,2.520055,0,0,OIF:SA:35:1038,Europe/Paris,,OIF, +OIF:SP:35:1041,1,"Pointe aux Cerfs",48.755662,2.538514,0,0,OIF:SA:35:1041,Europe/Paris,,OIF, +OIF:SP:35:1042,1,"Pointe aux Cerfs",48.755886,2.538583,0,0,OIF:SA:35:1041,Europe/Paris,,OIF, +OIF:SP:35:1043,1,"Chapellerie",48.77114,2.532795,0,0,OIF:SA:35:1043,Europe/Paris,,OIF, +OIF:SP:35:1044,1,"Chapellerie",48.771284,2.532714,0,0,OIF:SA:35:1043,Europe/Paris,,OIF, +OIF:SP:35:1045,1,"Les Châtaigniers",48.750815,2.539488,0,0,OIF:SA:35:1001,Europe/Paris,,OIF, +OIF:SP:35:1047,1,"Le Château",48.785178,2.539214,0,0,OIF:SA:35:1047,Europe/Paris,,OIF, +OIF:SP:35:1049,1,"Le Château",48.784722,2.537648,0,0,OIF:SA:35:1047,Europe/Paris,,OIF, +OIF:SP:35:1050,1,"Les Châtelets",48.780819,2.516511,0,0,OIF:SA:35:1050,Europe/Paris,,OIF, +OIF:SP:35:1051,1,"Les Châtelets",48.781016,2.516893,0,0,OIF:SA:35:1050,Europe/Paris,,OIF, +OIF:SP:35:1052,1,"Chaumoncel",48.768881,2.523704,0,0,OIF:SA:35:1052,Europe/Paris,,OIF, +OIF:SP:35:1053,1,"Chaumoncel",48.768979,2.523718,0,0,OIF:SA:35:1052,Europe/Paris,,OIF, +OIF:SP:35:1056,1,"Chemin de Touillon",48.779354,2.522463,0,0,OIF:SA:35:1056,Europe/Paris,,OIF, +OIF:SP:35:1057,1,"Cité Verte Grand Val",48.77413,2.51797,0,0,OIF:SA:35:1057,Europe/Paris,,OIF, +OIF:SP:35:1058,1,"Cité Verte Grand Val",48.774004,2.517589,0,0,OIF:SA:35:1057,Europe/Paris,,OIF, +OIF:SP:35:1059,1,"Clauteaux",48.766143,2.51525,0,0,OIF:SA:35:1059,Europe/Paris,,OIF, +OIF:SP:35:1060,1,"Clauteaux",48.766206,2.515224,0,0,OIF:SA:35:1059,Europe/Paris,,OIF, +OIF:SP:35:1061,1,"Le Closeau",48.755065,2.529526,0,0,OIF:SA:35:1061,Europe/Paris,,OIF, +OIF:SP:35:1062,1,"Le Closeau",48.755065,2.530097,0,0,OIF:SA:35:1061,Europe/Paris,,OIF, +OIF:SP:35:1063,1,"Clos de Pacy",48.772654,2.518849,0,0,OIF:SA:35:1063,Europe/Paris,,OIF, +OIF:SP:35:1064,1,"Clos de Pacy",48.772248,2.519636,0,0,OIF:SA:35:1063,Europe/Paris,,OIF, +OIF:SP:35:1065,1,"Clos de Ville",48.76312,2.523058,0,0,OIF:SA:35:1065,Europe/Paris,,OIF, +OIF:SP:35:1066,1,"Clos de Ville",48.763452,2.523766,0,0,OIF:SA:35:1065,Europe/Paris,,OIF, +OIF:SP:35:1067,1,"Combernoux",48.752982,2.538993,0,0,OIF:SA:35:1067,Europe/Paris,,OIF, +OIF:SP:35:1068,1,"Combernoux",48.752955,2.539278,0,0,OIF:SA:35:1067,Europe/Paris,,OIF, +OIF:SP:35:1069,1,"Centre Administratif",48.771556,2.52574,0,0,OIF:SA:35:1069,Europe/Paris,,OIF, +OIF:SP:35:1070,1,"Centre Administratif",48.771699,2.525876,0,0,OIF:SA:35:1069,Europe/Paris,,OIF, +OIF:SP:35:1071,1,"Condorcet",48.774742,2.549495,0,0,OIF:SA:35:1071,Europe/Paris,,OIF, +OIF:SP:35:1072,1,"Parc Corot",48.799021,2.532479,0,0,OIF:SA:35:1072,Europe/Paris,,OIF, +OIF:SP:35:1073,1,"Les Côteaux",48.781634,2.524131,0,0,OIF:SA:35:1073,Europe/Paris,,OIF, +OIF:SP:35:1074,1,"Les Côteaux",48.780762,2.524046,0,0,OIF:SA:35:1073,Europe/Paris,,OIF, +OIF:SP:35:1075,1,"Les Côteaux",48.780933,2.523897,0,0,OIF:SA:35:1073,Europe/Paris,,OIF, +OIF:SP:35:1076,1,"Pierre Curie",48.772655,2.545488,0,0,OIF:SA:35:1076,Europe/Paris,,OIF, +OIF:SP:35:1077,1,"Pierre Curie",48.77244,2.545215,0,0,OIF:SA:35:1076,Europe/Paris,,OIF, +OIF:SP:35:1078,1,"Dauphine-Al. de la Chasse",48.756759,2.53792,0,0,OIF:SA:35:1078,Europe/Paris,,OIF, +OIF:SP:35:1079,1,"Dauphine-Al. de la Chasse",48.756679,2.537567,0,0,OIF:SA:35:1078,Europe/Paris,,OIF, +OIF:SP:35:1080,1,"Général de Gaulle",48.788328,2.536193,0,0,OIF:SA:35:1080,Europe/Paris,,OIF, +OIF:SP:35:1081,1,"Général de Gaulle",48.788751,2.53595,0,0,OIF:SA:35:1080,Europe/Paris,,OIF, +OIF:SP:35:1082,1,"Place F. Doudot",48.768942,2.512568,0,0,OIF:SA:35:1082,Europe/Paris,,OIF, +OIF:SP:35:1083,1,"Place F. Doudot",48.769221,2.512378,0,0,OIF:SA:35:1082,Europe/Paris,,OIF, +OIF:SP:35:1086,1,"Henry Dunant",48.752489,2.527464,0,0,OIF:SA:35:1086,Europe/Paris,,OIF, +OIF:SP:35:1087,1,"Henry Dunant",48.752435,2.527355,0,0,OIF:SA:35:1086,Europe/Paris,,OIF, +OIF:SP:35:1089,1,"Fontaine de Villiers",48.766767,2.540964,0,0,OIF:SA:35:1089,Europe/Paris,,OIF, +OIF:SP:35:1090,1,"Fontaine de Villiers",48.766435,2.540596,0,0,OIF:SA:35:1089,Europe/Paris,,OIF, +OIF:SP:35:1091,1,"Lys d'Or",48.767639,2.529913,0,0,OIF:SA:35:1091,Europe/Paris,,OIF, +OIF:SP:35:1092,1,"Lys d'Or",48.767423,2.530116,0,0,OIF:SA:35:1091,Europe/Paris,,OIF, +OIF:SP:35:1093,1,"École Fosse Rouge",48.775569,2.528379,0,0,OIF:SA:35:1093,Europe/Paris,,OIF, +OIF:SP:35:1094,1,"École Fosse Rouge",48.775883,2.528611,0,0,OIF:SA:35:1093,Europe/Paris,,OIF, +OIF:SP:35:1095,1,"Place Gambetta",48.778108,2.514462,0,0,OIF:SA:35:1095,Europe/Paris,,OIF, +OIF:SP:35:1096,1,"La Garenne",48.777213,2.539972,0,0,OIF:SA:35:1096,Europe/Paris,,OIF, +OIF:SP:35:1097,1,"La Garenne",48.777358,2.539428,0,0,OIF:SA:35:1096,Europe/Paris,,OIF, +OIF:SP:35:1098,1,"Place Cauchy",48.775012,2.511147,0,0,OIF:SA:35:1098,Europe/Paris,,OIF, +OIF:SP:35:1099,1,"Place Cauchy",48.774276,2.51041,0,0,OIF:SA:35:1098,Europe/Paris,,OIF, +OIF:SP:35:1100,1,"Georges Brassens",48.758147,2.494057,0,0,OIF:SA:35:1100,Europe/Paris,,OIF, +OIF:SP:35:1101,1,"Avenue Georges",48.799575,2.540182,0,0,OIF:SA:35:1101,Europe/Paris,,OIF, +OIF:SP:35:1102,1,"Géricault",48.776197,2.523513,0,0,OIF:SA:35:1102,Europe/Paris,,OIF, +OIF:SP:35:1103,1,"Géricault",48.776232,2.523948,0,0,OIF:SA:35:1102,Europe/Paris,,OIF, +OIF:SP:35:1104,1,"Gabriel Péri",48.762521,2.526876,0,0,OIF:SA:35:1104,Europe/Paris,,OIF, +OIF:SP:35:1105,1,"Gabriel Péri",48.762431,2.526971,0,0,OIF:SA:35:1104,Europe/Paris,,OIF, +OIF:SP:35:1107,1,"Hautes Varennes",48.7604,2.495858,0,0,OIF:SA:35:1107,Europe/Paris,,OIF, +OIF:SP:35:1108,1,"Mairie",48.748458,2.512852,0,0,OIF:SA:35:1108,Europe/Paris,,OIF, +OIF:SP:35:1109,1,"Mairie",48.747829,2.512782,0,0,OIF:SA:35:1108,Europe/Paris,,OIF, +OIF:SP:35:1112,1,"Hôtel de Ville de Chennevières",48.795155,2.533308,0,0,OIF:SA:35:1112,Europe/Paris,,OIF, +OIF:SP:35:1113,1,"Centre Culturel",48.778709,2.548015,0,0,OIF:SA:35:1113,Europe/Paris,,OIF, +OIF:SP:35:1114,1,"Hôtel de Ville",48.771173,2.523549,0,0,OIF:SA:35:1114,Europe/Paris,,OIF, +OIF:SP:35:1115,1,"Hôtel de Ville",48.771281,2.523345,0,0,OIF:SA:35:1114,Europe/Paris,,OIF, +OIF:SP:35:1116,1,"Jean Jaurès",48.775448,2.546982,0,0,OIF:SA:35:1116,Europe/Paris,,OIF, +OIF:SP:35:1117,1,"Jean Jaurès",48.774459,2.546923,0,0,OIF:SA:35:1116,Europe/Paris,,OIF, +OIF:SP:35:1118,1,"Jean Jaurès",48.775493,2.547009,0,0,OIF:SA:35:1116,Europe/Paris,,OIF, +OIF:SP:35:1119,1,"Jean Jaurès",48.775034,2.547402,0,0,OIF:SA:35:1116,Europe/Paris,,OIF, +OIF:SP:35:1120,1,"Jules Ferry",48.782851,2.532976,0,0,OIF:SA:35:1120,Europe/Paris,,OIF, +OIF:SP:35:1121,1,"Jules Ferry",48.782996,2.532595,0,0,OIF:SA:35:1120,Europe/Paris,,OIF, +OIF:SP:35:1122,1,"Les Tourelles",48.782698,2.533369,0,0,OIF:SA:35:1122,Europe/Paris,,OIF, +OIF:SP:35:1123,1,"Les Tourelles",48.782859,2.533343,0,0,OIF:SA:35:1122,Europe/Paris,,OIF, +OIF:SP:35:1124,1,"Jean Jacques Rousseau",48.776004,2.514346,0,0,OIF:SA:35:1124,Europe/Paris,,OIF, +OIF:SP:35:1125,1,"Jean Jacques Rousseau",48.776184,2.514469,0,0,OIF:SA:35:1124,Europe/Paris,,OIF, +OIF:SP:35:1126,1,"Jean Moulin",48.775079,2.514044,0,0,OIF:SA:35:1126,Europe/Paris,,OIF, +OIF:SP:35:1127,1,"Jean Moulin",48.775357,2.514833,0,0,OIF:SA:35:1126,Europe/Paris,,OIF, +OIF:SP:35:1128,1,"De Lattre de Tassigny",48.769183,2.536677,0,0,OIF:SA:35:1128,Europe/Paris,,OIF, +OIF:SP:35:1129,1,"De Lattre de Tassigny",48.769426,2.536542,0,0,OIF:SA:35:1128,Europe/Paris,,OIF, +OIF:SP:35:1130,1,"Leclerc PTT",48.796398,2.531598,0,0,OIF:SA:35:1130,Europe/Paris,,OIF, +OIF:SP:35:1131,1,"Les Bouleaux",48.76101,2.548691,0,0,OIF:SA:35:1131,Europe/Paris,,OIF, +OIF:SP:35:1132,1,"Route de Lésigny",48.760762,2.551653,0,0,OIF:SA:35:1131,Europe/Paris,,OIF, +OIF:SP:35:1133,1,"La Garennière",48.76435,2.535081,0,0,OIF:SA:35:1133,Europe/Paris,,OIF, +OIF:SP:35:1134,1,"La Garennière",48.763963,2.535732,0,0,OIF:SA:35:1133,Europe/Paris,,OIF, +OIF:SP:35:1137,1,"Lycée Champlain",48.798834,2.557484,0,0,OIF:SA:35:1137,Europe/Paris,,OIF, +OIF:SP:35:1138,1,"Lycée de Sucy",48.759438,2.526729,0,0,OIF:SA:13:338,Europe/Paris,,OIF, +OIF:SP:35:1139,1,"Lycée de Sucy",48.759096,2.526958,0,0,OIF:SA:13:338,Europe/Paris,,OIF, +OIF:SP:35:1140,1,"Rue de Marolles",48.751247,2.533889,0,0,OIF:SA:35:1140,Europe/Paris,,OIF, +OIF:SP:35:1141,1,"Rue de Marolles",48.751004,2.53416,0,0,OIF:SA:35:1140,Europe/Paris,,OIF, +OIF:SP:35:1142,1,"Moutier Médiathèque",48.770379,2.519575,0,0,OIF:SA:35:1142,Europe/Paris,,OIF, +OIF:SP:35:1143,1,"Moutier Médiathèque",48.770819,2.519563,0,0,OIF:SA:35:1142,Europe/Paris,,OIF, +OIF:SP:35:1144,1,"Claude Monet",48.771983,2.549524,0,0,OIF:SA:35:1144,Europe/Paris,,OIF, +OIF:SP:35:1145,1,"Les Monrois",48.774049,2.529243,0,0,OIF:SA:35:1145,Europe/Paris,,OIF, +OIF:SP:35:1146,1,"Les Monrois",48.774157,2.52938,0,0,OIF:SA:35:1145,Europe/Paris,,OIF, +OIF:SP:35:1147,1,"Moulin de Touillon",48.776497,2.527022,0,0,OIF:SA:35:1147,Europe/Paris,,OIF, +OIF:SP:35:1148,1,"Moulin de Touillon",48.776507,2.526533,0,0,OIF:SA:35:1147,Europe/Paris,,OIF, +OIF:SP:35:1150,1,"Moulin à Vent",48.763938,2.528594,0,0,OIF:SA:35:1150,Europe/Paris,,OIF, +OIF:SP:35:1151,1,"Moulin à Vent",48.764082,2.528907,0,0,OIF:SA:35:1150,Europe/Paris,,OIF, +OIF:SP:35:1152,1,"Notre-Dame Rue Royale",48.755902,2.534872,0,0,OIF:SA:35:1152,Europe/Paris,,OIF, +OIF:SP:35:1153,1,"Notre-Dame Rue Royale",48.755891,2.535579,0,0,OIF:SA:35:1152,Europe/Paris,,OIF, +OIF:SP:35:1154,1,"Notre-Dame Rue Royale",48.755398,2.535047,0,0,OIF:SA:35:1152,Europe/Paris,,OIF, +OIF:SP:35:1155,1,"Notre-Dame Rue Royale",48.75556,2.534952,0,0,OIF:SA:35:1152,Europe/Paris,,OIF, +OIF:SP:35:1156,1,"Avenue du Fort",48.771623,2.528949,0,0,OIF:SA:35:1156,Europe/Paris,,OIF, +OIF:SP:35:1157,1,"Avenue du Fort",48.771686,2.528813,0,0,OIF:SA:35:1156,Europe/Paris,,OIF, +OIF:SP:35:1158,1,"Rue de Noiseau",48.773884,2.53097,0,0,OIF:SA:35:1158,Europe/Paris,,OIF, +OIF:SP:35:1159,1,"Rue de Noiseau",48.773077,2.529784,0,0,OIF:SA:35:1158,Europe/Paris,,OIF, +OIF:SP:35:1160,1,"Les Noyers",48.777501,2.511645,0,0,OIF:SA:35:1160,Europe/Paris,,OIF, +OIF:SP:35:1161,1,"Les Noyers",48.777645,2.511482,0,0,OIF:SA:35:1160,Europe/Paris,,OIF, +OIF:SP:35:1162,1,"Parc de Sucy",48.761827,2.533753,0,0,OIF:SA:35:1162,Europe/Paris,,OIF, +OIF:SP:35:1163,1,"Parc de Sucy",48.761127,2.532921,0,0,OIF:SA:35:1162,Europe/Paris,,OIF, +OIF:SP:35:1164,1,"Parc de Sucy",48.761898,2.53397,0,0,OIF:SA:35:1162,Europe/Paris,,OIF, +OIF:SP:35:1165,1,"La Patte d'Oie",48.759413,2.557031,0,0,OIF:SA:35:1165,Europe/Paris,,OIF, +OIF:SP:35:1168,1,"Pince-Vent",48.793304,2.558399,0,0,OIF:SA:35:1168,Europe/Paris,,OIF, +OIF:SP:35:1169,1,"Avenue du Piple",48.763454,2.516424,0,0,OIF:SA:35:1169,Europe/Paris,,OIF, +OIF:SP:35:1170,1,"Avenue du Piple",48.763391,2.516764,0,0,OIF:SA:35:1169,Europe/Paris,,OIF, +OIF:SP:35:1171,1,"Piscine",48.798822,2.55909,0,0,OIF:SA:35:1171,Europe/Paris,,OIF, +OIF:SP:35:1172,1,"Piscine",48.768944,2.534283,0,0,OIF:SA:35:1172,Europe/Paris,,OIF, +OIF:SP:35:1173,1,"Piscine",48.769636,2.534571,0,0,OIF:SA:35:1172,Europe/Paris,,OIF, +OIF:SP:35:1174,1,"Poste Mairie",48.785903,2.540849,0,0,OIF:SA:35:1174,Europe/Paris,,OIF, +OIF:SP:35:1175,1,"Poste Mairie",48.78602,2.54074,0,0,OIF:SA:35:1174,Europe/Paris,,OIF, +OIF:SP:35:1176,1,"Poste",48.775985,2.548153,0,0,OIF:SA:35:1176,Europe/Paris,,OIF, +OIF:SP:35:1177,1,"Jacques Prévert",48.769971,2.548632,0,0,OIF:SA:35:1177,Europe/Paris,,OIF, +OIF:SP:35:1178,1,"Procession",48.766314,2.527936,0,0,OIF:SA:35:1178,Europe/Paris,,OIF, +OIF:SP:35:1179,1,"Procession",48.76526,2.528178,0,0,OIF:SA:35:1178,Europe/Paris,,OIF, +OIF:SP:35:1180,1,"Le Progrès",48.751291,2.517755,0,0,OIF:SA:35:1180,Europe/Paris,,OIF, +OIF:SP:35:1181,1,"Le Progrès",48.751371,2.518054,0,0,OIF:SA:35:1180,Europe/Paris,,OIF, +OIF:SP:35:1182,1,"Route de la Queue en Brie",48.762687,2.535007,0,0,OIF:SA:35:1182,Europe/Paris,,OIF, +OIF:SP:35:1183,1,"Route de la Queue en Brie",48.763261,2.535852,0,0,OIF:SA:35:1182,Europe/Paris,,OIF, +OIF:SP:35:1185,1,"Léon Révillon",48.745403,2.511917,0,0,OIF:SA:35:1185,Europe/Paris,,OIF, +OIF:SP:35:1186,1,"Léon Révillon",48.745475,2.512094,0,0,OIF:SA:35:1185,Europe/Paris,,OIF, +OIF:SP:35:1187,1,"Les Sonnettes",48.795224,2.550544,0,0,OIF:SA:35:1187,Europe/Paris,,OIF, +OIF:SP:35:1188,1,"Rond-Point",48.762103,2.529852,0,0,OIF:SA:35:1188,Europe/Paris,,OIF, +OIF:SP:35:1189,1,"Rond-Point",48.762103,2.529457,0,0,OIF:SA:35:1188,Europe/Paris,,OIF, +OIF:SP:35:1190,1,"Roosevelt",48.760043,2.546308,0,0,OIF:SA:35:1190,Europe/Paris,,OIF, +OIF:SP:35:1191,1,"Roosevelt",48.759999,2.546035,0,0,OIF:SA:35:1190,Europe/Paris,,OIF, +OIF:SP:35:1192,1,"Gaston Roulleau",48.753708,2.498462,0,0,OIF:SA:35:1192,Europe/Paris,,OIF, +OIF:SP:35:1193,1,"Royale Route de Marolles",48.75852,2.553697,0,0,OIF:SA:35:1193,Europe/Paris,,OIF, +OIF:SP:35:1194,1,"Sablière",48.756318,2.496743,0,0,OIF:SA:35:1194,Europe/Paris,,OIF, +OIF:SP:35:1196,1,"Pôle Culturel",48.787362,2.544323,0,0,OIF:SA:35:1196,Europe/Paris,,OIF, +OIF:SP:35:1197,1,"Pôle Culturel",48.787774,2.544814,0,0,OIF:SA:35:1196,Europe/Paris,,OIF, +OIF:SP:35:1198,1,"Place Sainte-Bernadette",48.767294,2.532495,0,0,OIF:SA:35:1198,Europe/Paris,,OIF, +OIF:SP:35:1199,1,"Place Sainte-Bernadette",48.767149,2.532671,0,0,OIF:SA:35:1198,Europe/Paris,,OIF, +OIF:SP:35:1200,1,"Saint-Exupéry",48.791613,2.554352,0,0,OIF:SA:35:1200,Europe/Paris,,OIF, +OIF:SP:35:1202,1,"Saint-Exupéry",48.791695,2.554094,0,0,OIF:SA:35:1200,Europe/Paris,,OIF, +OIF:SP:35:1203,1,"Gare RER Sucy-Bonneuil",48.770773,2.5084,0,0,OIF:SA:8775819,Europe/Paris,,OIF, +OIF:SP:35:1204,1,"Émile Templier",48.779281,2.516846,0,0,OIF:SA:35:1204,Europe/Paris,,OIF, +OIF:SP:35:1205,1,"Les Tilleuls",48.758812,2.53041,0,0,OIF:SA:35:1205,Europe/Paris,,OIF, +OIF:SP:35:1206,1,"Les Tilleuls",48.759315,2.530589,0,0,OIF:SA:35:1205,Europe/Paris,,OIF, +OIF:SP:35:1207,1,"Victor Hugo",48.778647,2.520013,0,0,OIF:SA:35:1207,Europe/Paris,,OIF, +OIF:SP:35:1209,1,"Winston Churchill",48.765211,2.525023,0,0,OIF:SA:35:1209,Europe/Paris,,OIF, +OIF:SP:35:1210,1,"Winston Churchill",48.765625,2.52516,0,0,OIF:SA:35:1209,Europe/Paris,,OIF, +OIF:SP:35:1211,1,"Pince-Vent",48.793377,2.558141,0,0,OIF:SA:35:1168,Europe/Paris,,OIF, +OIF:SP:35:1212,1,"Gaston Roulleau",48.753124,2.498842,0,0,OIF:SA:35:1192,Europe/Paris,,OIF, +OIF:SP:35:1213,1,"Gare RER Sucy-Bonneuil",48.77062,2.508562,0,0,OIF:SA:8775819,Europe/Paris,,OIF, +OIF:SP:35:1214,1,"Gare RER Sucy-Bonneuil",48.77134,2.508075,0,0,OIF:SA:8775819,Europe/Paris,,OIF, +OIF:SP:35:1215,1,"Gare RER Sucy-Bonneuil",48.77134,2.50817,0,0,OIF:SA:8775819,Europe/Paris,,OIF, +OIF:SP:35:1216,1,"Gare RER Sucy-Bonneuil",48.771601,2.50779,0,0,OIF:SA:8775819,Europe/Paris,,OIF, +OIF:SP:35:1217,1,"CES du Fort",48.76958,2.530478,0,0,OIF:SA:35:1217,Europe/Paris,,OIF, +OIF:SP:35:1218,1,"Les Berges",48.783697,2.514984,0,0,OIF:SA:35:1218,Europe/Paris,,OIF, +OIF:SP:35:1219,1,"Stade",48.745885,2.508562,0,0,OIF:SA:35:1219,Europe/Paris,,OIF, +OIF:SP:35:1221,1,"Procession",48.747109,2.507044,0,0,OIF:SA:35:1221,Europe/Paris,,OIF, +OIF:SP:35:1224,1,"Louise Chenu - Henri Legros",48.749898,2.505544,0,0,OIF:SA:35:1223,Europe/Paris,,OIF, +OIF:SP:35:1225,1,"Lycée G. Budé",48.74438,2.51118,0,0,OIF:SA:13:335,Europe/Paris,,OIF, +OIF:SP:35:1228,1,"Victor Hugo",48.778773,2.519999,0,0,OIF:SA:35:1207,Europe/Paris,,OIF, +OIF:SP:35:1229,1,"Centre Aéré",48.757154,2.532974,0,0,OIF:SA:35:1229,Europe/Paris,,OIF, +OIF:SP:35:1230,1,"Centre Aére",48.757532,2.532526,0,0,OIF:SA:35:1229,Europe/Paris,,OIF, +OIF:SP:35:1231,1,"Rond-Point du Piple",48.763944,2.513421,0,0,OIF:SA:35:1231,Europe/Paris,,OIF, +OIF:SP:35:1232,1,"Rond-Point du Piple",48.764034,2.513245,0,0,OIF:SA:35:1231,Europe/Paris,,OIF, +OIF:SP:35:1233,1,"Les Bouleaux",48.760983,2.548459,0,0,OIF:SA:35:1131,Europe/Paris,,OIF, +OIF:SP:35:1234,1,"Gare RER Sucy-Bonneuil",48.771394,2.508116,0,0,OIF:SA:8775819,Europe/Paris,,OIF, +OIF:SP:35:1235,1,"Voltaire",48.782556,2.526664,0,0,OIF:SA:35:1235,Europe/Paris,,OIF, +OIF:SP:35:1236,1,"Maréchal Gallieni",48.781686,2.530999,0,0,OIF:SA:35:1236,Europe/Paris,,OIF, +OIF:SP:35:1237,1,"Maréchal Gallieni",48.781606,2.530387,0,0,OIF:SA:35:1236,Europe/Paris,,OIF, +OIF:SP:35:1238,1,"J. J. Rousseau",48.801931,2.549307,0,0,OIF:SA:35:1238,Europe/Paris,,OIF, +OIF:SP:35:1239,1,"Moulin Vert",48.804481,2.524186,0,0,OIF:SA:35:1239,Europe/Paris,,OIF, +OIF:SP:35:1240,1,"Lido",48.80191,2.524489,0,0,OIF:SA:35:1240,Europe/Paris,,OIF, +OIF:SP:35:1241,1,"Écu de France",48.798567,2.524532,0,0,OIF:SA:35:1241,Europe/Paris,,OIF, +OIF:SP:35:1242,1,"Clodoche",48.791972,2.523066,0,0,OIF:SA:35:1242,Europe/Paris,,OIF, +OIF:SP:35:1243,1,"Pont de Chennevières",48.79022,2.522516,0,0,OIF:SA:35:1243,Europe/Paris,,OIF, +OIF:SP:35:1245,1,"Piscine",48.798804,2.558777,0,0,OIF:SA:35:1171,Europe/Paris,,OIF, +OIF:SP:35:1246,1,"Les 2 Communes",48.780786,2.520183,0,0,OIF:SA:35:1003,Europe/Paris,,OIF, +OIF:SP:35:1247,1,"Les 2 Communes",48.780974,2.520891,0,0,OIF:SA:35:1003,Europe/Paris,,OIF, +OIF:SP:35:1248,1,"L'Ami Jules",48.756329,2.526473,0,0,OIF:SA:35:1248,Europe/Paris,,OIF, +OIF:SP:35:1249,1,"L'Ami Jules",48.756256,2.526744,0,0,OIF:SA:35:1248,Europe/Paris,,OIF, +OIF:SP:35:1252,1,"Marché du Bois Clary",48.753181,2.521635,0,0,OIF:SA:35:1252,Europe/Paris,,OIF, +OIF:SP:35:1253,1,"Marché du Bois Clary",48.753154,2.522179,0,0,OIF:SA:35:1252,Europe/Paris,,OIF, +OIF:SP:35:1256,1,"CES A. Dunois",48.751174,2.517632,0,0,OIF:SA:35:1256,Europe/Paris,,OIF, +OIF:SP:35:1259,1,"CC Boissy 2",48.752836,2.503693,0,0,OIF:SA:32:46213,Europe/Paris,,OIF, +OIF:SP:35:1260,1,"ZA 8 Mai 1945",48.759109,2.503281,0,0,OIF:SA:35:1260,Europe/Paris,,OIF, +OIF:SP:35:1261,1,"ZA 8 Mai 1945",48.758808,2.503434,0,0,OIF:SA:35:1260,Europe/Paris,,OIF, +OIF:SP:35:1262,1,"ZA Haie Griselle",48.760409,2.501414,0,0,OIF:SA:35:1262,Europe/Paris,,OIF, +OIF:SP:35:1263,1,"ZA Haie Griselle",48.76027,2.501536,0,0,OIF:SA:35:1262,Europe/Paris,,OIF, +OIF:SP:35:1264,1,"ZA les Champs",48.761994,2.499283,0,0,OIF:SA:35:1264,Europe/Paris,,OIF, +OIF:SP:35:1265,1,"ZA les Champs",48.761912,2.499332,0,0,OIF:SA:35:1264,Europe/Paris,,OIF, +OIF:SP:35:1266,1,"Ateliers RATP de Sucy",48.765076,2.502408,0,0,OIF:SA:35:1266,Europe/Paris,,OIF, +OIF:SP:35:1267,1,"Ateliers RATP de Sucy",48.765172,2.502711,0,0,OIF:SA:35:1266,Europe/Paris,,OIF, +OIF:SP:35:1271,1,"ZAC de la Sablière",48.76659,2.506142,0,0,OIF:SA:35:1271,Europe/Paris,,OIF, +OIF:SP:35:1272,1,"ZAC de la Sablière",48.767012,2.506517,0,0,OIF:SA:35:1271,Europe/Paris,,OIF, +OIF:SP:35:1274,1,"Charles de Gaulle",48.758202,2.499454,0,0,OIF:SA:35:1274,Europe/Paris,,OIF, +OIF:SP:35:1275,1,"CC Boissy 2",48.75311,2.503516,0,0,OIF:SA:32:46213,Europe/Paris,,OIF, +OIF:SP:35:1284,1,"Église",48.785032,2.578712,0,0,OIF:SA:35:1284,Europe/Paris,,OIF, +OIF:SP:35:1309,1,"Maréchal Leclerc",48.78641,2.538348,0,0,OIF:SA:35:1309,Europe/Paris,,OIF, +OIF:SP:35:1310,1,"Maréchal Leclerc",48.785889,2.538536,0,0,OIF:SA:35:1309,Europe/Paris,,OIF, +OIF:SP:35:1311,1,"Gare RER Sucy-Bonneuil",48.771155,2.508166,0,0,OIF:SA:8775819,Europe/Paris,,OIF, +OIF:SP:35:1312,1,"Varennes",48.767186,2.505036,0,0,OIF:SA:35:1312,Europe/Paris,,OIF, +OIF:SP:35:1313,1,"Varennes",48.767489,2.505515,0,0,OIF:SA:35:1312,Europe/Paris,,OIF, +OIF:SP:35:1314,1,"Louis Thébault",48.765196,2.500207,0,0,OIF:SA:35:1314,Europe/Paris,,OIF, +OIF:SP:35:1315,1,"Louis Thébault",48.76532,2.501216,0,0,OIF:SA:35:1314,Europe/Paris,,OIF, +OIF:SP:35:1316,1,"Marronniers",48.766598,2.494106,0,0,OIF:SA:35:1316,Europe/Paris,,OIF, +OIF:SP:35:1317,1,"Marronniers",48.766758,2.493829,0,0,OIF:SA:35:1316,Europe/Paris,,OIF, +OIF:SP:35:1318,1,"Petits Carreaux",48.77159,2.494791,0,0,OIF:SA:35:1318,Europe/Paris,,OIF, +OIF:SP:35:1319,1,"Petits Carreaux",48.771471,2.494527,0,0,OIF:SA:35:1318,Europe/Paris,,OIF, +OIF:SP:35:1320,1,"Fief Cordelier",48.774055,2.495098,0,0,OIF:SA:35:1320,Europe/Paris,,OIF, +OIF:SP:35:1321,1,"Fief Cordelier",48.773979,2.494996,0,0,OIF:SA:35:1320,Europe/Paris,,OIF, +OIF:SP:35:1322,1,"Darse Sud",48.775698,2.491594,0,0,OIF:SA:35:1322,Europe/Paris,,OIF, +OIF:SP:35:1323,1,"Darse Sud",48.775598,2.491864,0,0,OIF:SA:35:1322,Europe/Paris,,OIF, +OIF:SP:35:1324,1,"Port de Bonneuil",48.779478,2.492518,0,0,OIF:SA:35:1324,Europe/Paris,,OIF, +OIF:SP:35:1325,1,"Port de Bonneuil",48.779699,2.492536,0,0,OIF:SA:35:1324,Europe/Paris,,OIF, +OIF:SP:35:1326,1,"Moulin Bateau",48.78144,2.494407,0,0,OIF:SA:35:1326,Europe/Paris,,OIF, +OIF:SP:35:1327,1,"Moulin Bateau",48.781668,2.494099,0,0,OIF:SA:35:1326,Europe/Paris,,OIF, +OIF:SP:35:1328,1,"Darse Nord",48.782333,2.495904,0,0,OIF:SA:35:1328,Europe/Paris,,OIF, +OIF:SP:35:1329,1,"Darse Nord",48.782468,2.496157,0,0,OIF:SA:35:1328,Europe/Paris,,OIF, +OIF:SP:35:1330,1,"Île du Moulin Bateau",48.782736,2.499848,0,0,OIF:SA:35:1330,Europe/Paris,,OIF, +OIF:SP:35:1331,1,"Île du Moulin Bateau",48.782841,2.499527,0,0,OIF:SA:35:1330,Europe/Paris,,OIF, +OIF:SP:35:1332,1,"Brétigny",48.78316,2.502916,0,0,OIF:SA:35:1332,Europe/Paris,,OIF, +OIF:SP:35:1333,1,"Brétigny",48.783101,2.503079,0,0,OIF:SA:35:1332,Europe/Paris,,OIF, +OIF:SP:35:1334,1,"Morbras Triage",48.780454,2.505203,0,0,OIF:SA:35:1334,Europe/Paris,,OIF, +OIF:SP:35:1335,1,"Bureau du Port",48.782773,2.491992,0,0,OIF:SA:35:1335,Europe/Paris,,OIF, +OIF:SP:35:1336,1,"Bureau du Port",48.782689,2.491939,0,0,OIF:SA:35:1335,Europe/Paris,,OIF, +OIF:SP:35:1337,1,"Le Havre",48.783843,2.48352,0,0,OIF:SA:35:1337,Europe/Paris,,OIF, +OIF:SP:35:1338,1,"Île Barbière",48.783078,2.487207,0,0,OIF:SA:35:1338,Europe/Paris,,OIF, +OIF:SP:35:1339,1,"Île Barbière",48.78311,2.487339,0,0,OIF:SA:35:1338,Europe/Paris,,OIF, +OIF:SP:35:1340,1,"Gare RER Sucy-Bonneuil",48.771223,2.508292,0,0,OIF:SA:8775819,Europe/Paris,,OIF, +OIF:SP:35:50150,1,"Anjou",48.792204,2.580875,0,0,OIF:SA:35:50150,Europe/Paris,,OIF, +OIF:SP:35:50290,1,"Bellevue",48.802322,2.613161,0,0,OIF:SA:35:50290,Europe/Paris,,OIF, +OIF:SP:35:51560,1,"Gare RER Pontault-Combault",48.80624,2.617033,0,0,OIF:SA:8711604,Europe/Paris,,OIF, +OIF:SP:35:51750,1,"Gournay",48.789532,2.584765,0,0,OIF:SA:35:51750,Europe/Paris,,OIF, +OIF:SP:35:51910,1,"Hôtel de Ville de la Queue-en-Brie",48.789726,2.573007,0,0,OIF:SA:35:51910,Europe/Paris,,OIF, +OIF:SP:35:52400,1,"Les Bordes",48.791542,2.572648,0,0,OIF:SA:35:52400,Europe/Paris,,OIF, +OIF:SP:35:52401,1,"Les Bordes",48.791452,2.572933,0,0,OIF:SA:35:52400,Europe/Paris,,OIF, +OIF:SP:35:53260,1,"Pierre Lais",48.792474,2.59096,0,0,OIF:SA:35:53260,Europe/Paris,,OIF, +OIF:SP:35:53261,1,"Pierre Lais",48.792272,2.591154,0,0,OIF:SA:35:53260,Europe/Paris,,OIF, +OIF:SP:35:53640,1,"Cinéma Appollo",48.803342,2.611221,0,0,OIF:SA:35:53640,Europe/Paris,,OIF, +OIF:SP:35:54410,1,"Hôtel de Ville de Pontault",48.802139,2.606507,0,0,OIF:SA:35:54410,Europe/Paris,,OIF, +OIF:SP:35:54430,1,"Médiathèque F. Miterrand",48.800389,2.609178,0,0,OIF:SA:35:54430,Europe/Paris,,OIF, +OIF:SP:35:576,1,"Léon Bresset",48.776386,2.550276,0,0,OIF:SA:35:1024,Europe/Paris,,OIF, +OIF:SP:35:577,1,"PTT",48.780403,2.560493,0,0,OIF:SA:35:1176,Europe/Paris,,OIF, +OIF:SP:35:578,1,"RN 4",48.781726,2.568999,0,0,OIF:SA:35:578,Europe/Paris,,OIF, +OIF:SP:35:579,1,"Libération",48.782814,2.576401,0,0,OIF:SA:35:579,Europe/Paris,,OIF, +OIF:SP:35:581,1,"Paul Valéry",48.787544,2.576534,0,0,OIF:SA:35:581,Europe/Paris,,OIF, +OIF:SP:35:582,1,"Hôtel de Ville de la Queue-en-Brie",48.789797,2.573416,0,0,OIF:SA:35:51910,Europe/Paris,,OIF, +OIF:SP:35:583,1,"Anjou",48.791509,2.579338,0,0,OIF:SA:35:50150,Europe/Paris,,OIF, +OIF:SP:35:584,1,"Gournay",48.789358,2.584589,0,0,OIF:SA:35:51750,Europe/Paris,,OIF, +OIF:SP:35:585,1,"Libération",48.782863,2.575859,0,0,OIF:SA:35:579,Europe/Paris,,OIF, +OIF:SP:35:586,1,"RN 4",48.781869,2.56919,0,0,OIF:SA:35:578,Europe/Paris,,OIF, +OIF:SP:35:587,1,"PTT",48.780493,2.560548,0,0,OIF:SA:35:1176,Europe/Paris,,OIF, +OIF:SP:35:58800,1,"Clinique la Francilienne",48.800191,2.605341,0,0,OIF:SA:35:58800,Europe/Paris,,OIF, +OIF:SP:35:58801,1,"Clinique la Francilienne",48.799965,2.605199,0,0,OIF:SA:35:58800,Europe/Paris,,OIF, +OIF:SP:35:63740,1,"Les Roses",48.798312,2.601889,0,0,OIF:SA:35:63740,Europe/Paris,,OIF, +OIF:SP:35:63741,1,"Les Roses",48.79819,2.602055,0,0,OIF:SA:35:63740,Europe/Paris,,OIF, +OIF:SP:35:63750,1,"P. de Coubertin",48.791748,2.577247,0,0,OIF:SA:35:63750,Europe/Paris,,OIF, +OIF:SP:35:63751,1,"P. de Coubertin",48.791749,2.577002,0,0,OIF:SA:35:63750,Europe/Paris,,OIF, +OIF:SP:35:63752,1,"Paul Valéry",48.787274,2.576696,0,0,OIF:SA:35:581,Europe/Paris,,OIF, +OIF:SP:35:63753,1,"Marché",48.804058,2.616409,0,0,OIF:SA:35:63753,Europe/Paris,,OIF, +OIF:SP:36:1001,1,"Charles Alby",48.80981,2.179407,0,0,OIF:SA:36:1001,Europe/Paris,,OIF, +OIF:SP:36:1002,1,"Atrium",48.81345,2.19359,0,0,OIF:SA:8741461,Europe/Paris,,OIF, +OIF:SP:36:1003,1,"Boudet",48.815792,2.19063,0,0,OIF:SA:36:1003,Europe/Paris,,OIF, +OIF:SP:36:1004,1,"Bouquet",48.815287,2.196525,0,0,OIF:SA:36:1004,Europe/Paris,,OIF, +OIF:SP:36:1005,1,"Gare Chaville Rive Droite",48.812283,2.187347,0,0,OIF:SA:8738233,Europe/Paris,,OIF, +OIF:SP:36:1006,1,"Gare Chaville Rive Droite",48.812184,2.187524,0,0,OIF:SA:8738233,Europe/Paris,,OIF, +OIF:SP:36:1007,1,"Gare Chaville Rive Droite",48.812067,2.187579,0,0,OIF:SA:8738233,Europe/Paris,,OIF, +OIF:SP:36:1008,1,"Gare Chaville Rive Gauche",48.804536,2.188158,0,0,OIF:SA:8739320,Europe/Paris,,OIF, +OIF:SP:36:1009,1,"Gare Chaville Rive Gauche",48.805022,2.188184,0,0,OIF:SA:8739320,Europe/Paris,,OIF, +OIF:SP:36:1010,1,"Coteau",48.814973,2.189734,0,0,OIF:SA:36:1010,Europe/Paris,,OIF, +OIF:SP:36:1011,1,"De Gaulle",48.810697,2.19172,0,0,OIF:SA:17:1505,Europe/Paris,,OIF, +OIF:SP:36:1012,1,"Dauphine",48.816283,2.19497,0,0,OIF:SA:36:1012,Europe/Paris,,OIF, +OIF:SP:36:1013,1,"Fontaine Henri IV",48.810582,2.192632,0,0,OIF:SA:36:1013,Europe/Paris,,OIF, +OIF:SP:36:1014,1,"Jules Ferry",48.797405,2.192614,0,0,OIF:SA:36:1014,Europe/Paris,,OIF, +OIF:SP:36:1015,1,"Jean Jaurès",48.797483,2.190056,0,0,OIF:SA:36:1015,Europe/Paris,,OIF, +OIF:SP:36:1016,1,"Collège Jean Moulin",48.811415,2.183784,0,0,OIF:SA:36:1016,Europe/Paris,,OIF, +OIF:SP:36:1017,1,"Jonquille",48.81576,2.193339,0,0,OIF:SA:36:1017,Europe/Paris,,OIF, +OIF:SP:36:1018,1,"Père Komitas",48.807765,2.182679,0,0,OIF:SA:36:1018,Europe/Paris,,OIF, +OIF:SP:36:1019,1,"Lac",48.813191,2.195033,0,0,OIF:SA:36:1019,Europe/Paris,,OIF, +OIF:SP:36:1020,1,"Mare Adam",48.801696,2.188071,0,0,OIF:SA:36:1020,Europe/Paris,,OIF, +OIF:SP:36:1021,1,"Alexis Maneyrol",48.799932,2.193301,0,0,OIF:SA:36:1021,Europe/Paris,,OIF, +OIF:SP:36:1022,1,"Michelet",48.799451,2.197425,0,0,OIF:SA:36:1022,Europe/Paris,,OIF, +OIF:SP:36:1023,1,"Mairie",48.809382,2.188866,0,0,OIF:SA:17:1506,Europe/Paris,,OIF, +OIF:SP:36:1024,1,"Martinière",48.813028,2.186977,0,0,OIF:SA:8738233,Europe/Paris,,OIF, +OIF:SP:36:1025,1,"Petits Bois",48.811424,2.183076,0,0,OIF:SA:36:1025,Europe/Paris,,OIF, +OIF:SP:36:1026,1,"Passerelle",48.814907,2.194389,0,0,OIF:SA:36:1026,Europe/Paris,,OIF, +OIF:SP:36:1027,1,"Puits Sans Vin",48.807484,2.187715,0,0,OIF:SA:17:1510,Europe/Paris,,OIF, +OIF:SP:36:1028,1,"Puits Sans Vin",48.807906,2.187863,0,0,OIF:SA:17:1510,Europe/Paris,,OIF, +OIF:SP:36:1029,1,"Paul Vaillant Couturier",48.809881,2.185571,0,0,OIF:SA:36:1029,Europe/Paris,,OIF, +OIF:SP:36:1030,1,"Résistance",48.809567,2.186361,0,0,OIF:SA:17:1509,Europe/Paris,,OIF, +OIF:SP:36:1031,1,"Sainte-Bernadette",48.800529,2.189204,0,0,OIF:SA:36:1031,Europe/Paris,,OIF, +OIF:SP:36:1032,1,"Stade - Gare RER C",48.799033,2.185589,0,0,OIF:SA:36:1032,Europe/Paris,,OIF, +OIF:SP:36:1033,1,"Saint-Paul",48.801507,2.187786,0,0,OIF:SA:36:1033,Europe/Paris,,OIF, +OIF:SP:36:1034,1,"Ursine",48.797527,2.196532,0,0,OIF:SA:36:1034,Europe/Paris,,OIF, +OIF:SP:36:2033,1,"Rû de Gally",48.815725,2.077536,0,0,OIF:SA:36:2033,Europe/Paris,,OIF, +OIF:SP:36:2034,1,"Santos Dumont",48.812787,2.07804,0,0,OIF:SA:36:2034,Europe/Paris,,OIF, +OIF:SP:36:2035,1,"Santos Dumont",48.81285,2.078108,0,0,OIF:SA:36:2034,Europe/Paris,,OIF, +OIF:SP:36:2036,1,"Aérodrome",48.805085,2.073969,0,0,OIF:SA:21:770,Europe/Paris,,OIF, +OIF:SP:36:2037,1,"Aérodrome",48.805157,2.074051,0,0,OIF:SA:21:770,Europe/Paris,,OIF, +OIF:SP:36:2038,1,"Docteur Vaillant",48.802933,2.072266,0,0,OIF:SA:21:771,Europe/Paris,,OIF, +OIF:SP:36:2039,1,"Docteur Vaillant",48.803023,2.07247,0,0,OIF:SA:21:771,Europe/Paris,,OIF, +OIF:SP:36:2041,1,"Le Clos Saint-Cyr",48.804487,2.071755,0,0,OIF:SA:36:2041,Europe/Paris,,OIF, +OIF:SP:36:2042,1,"Le Clos Saint-Cyr",48.804441,2.071551,0,0,OIF:SA:36:2041,Europe/Paris,,OIF, +OIF:SP:36:2044,1,"Charles Renard",48.805964,2.065352,0,0,OIF:SA:36:2044,Europe/Paris,,OIF, +OIF:SP:36:2045,1,"Charles Renard",48.805956,2.065842,0,0,OIF:SA:36:2044,Europe/Paris,,OIF, +OIF:SP:36:2046,1,"Cimetière",48.805142,2.063465,0,0,OIF:SA:36:2046,Europe/Paris,,OIF, +OIF:SP:36:2047,1,"Cimetière",48.805133,2.06371,0,0,OIF:SA:36:2046,Europe/Paris,,OIF, +OIF:SP:36:2048,1,"La Fontaine Saint-Martin",48.806663,2.060477,0,0,OIF:SA:36:2048,Europe/Paris,,OIF, +OIF:SP:36:2049,1,"Samuel de Champlain",48.80703,2.059944,0,0,OIF:SA:36:2049,Europe/Paris,,OIF, +OIF:SP:36:2050,1,"Jean-Pierre Timbaud",48.808901,2.0566,0,0,OIF:SA:36:2050,Europe/Paris,,OIF, +OIF:SP:36:2051,1,"Jean-Pierre Timbaud",48.808955,2.056586,0,0,OIF:SA:36:2050,Europe/Paris,,OIF, +OIF:SP:36:2052,1,"Aérostation Maritime",48.809356,2.055183,0,0,OIF:SA:36:2052,Europe/Paris,,OIF, +OIF:SP:36:2053,1,"Aérostation Maritime",48.809329,2.055251,0,0,OIF:SA:36:2052,Europe/Paris,,OIF, +OIF:SP:36:2054,1,"Jean Macé",48.80673,2.054476,0,0,OIF:SA:36:2054,Europe/Paris,,OIF, +OIF:SP:36:2055,1,"Jean Macé",48.807,2.054597,0,0,OIF:SA:36:2054,Europe/Paris,,OIF, +OIF:SP:36:2056,1,"Gérard Philipe",48.80421,2.053088,0,0,OIF:SA:36:2056,Europe/Paris,,OIF, +OIF:SP:36:2057,1,"Gérard Philipe",48.804299,2.053006,0,0,OIF:SA:36:2056,Europe/Paris,,OIF, +OIF:SP:36:2058,1,"Alfred Dreyfus",48.802132,2.056283,0,0,OIF:SA:36:2058,Europe/Paris,,OIF, +OIF:SP:36:2059,1,"Alfred Dreyfus",48.802509,2.055818,0,0,OIF:SA:36:2058,Europe/Paris,,OIF, +OIF:SP:36:2060,1,"Maison de l'Enfance",48.802984,2.055585,0,0,OIF:SA:36:2060,Europe/Paris,,OIF, +OIF:SP:36:2061,1,"Maison de l'Enfance",48.803319,2.056331,0,0,OIF:SA:36:2060,Europe/Paris,,OIF, +OIF:SP:36:2062,1,"Paul Flé",48.804803,2.056704,0,0,OIF:SA:36:2062,Europe/Paris,,OIF, +OIF:SP:36:2063,1,"Romain Rolland",48.806078,2.056303,0,0,OIF:SA:36:2063,Europe/Paris,,OIF, +OIF:SP:36:2064,1,"Lycée Jean Perrin",48.8031,2.058972,0,0,OIF:SA:36:2064,Europe/Paris,,OIF, +OIF:SP:36:2066,1,"Les P'Tits Pilotes",48.802413,2.060853,0,0,OIF:SA:36:2066,Europe/Paris,,OIF, +OIF:SP:36:2067,1,"Joliot Curie",48.800728,2.05942,0,0,OIF:SA:36:2067,Europe/Paris,,OIF, +OIF:SP:36:2068,1,"Joliot Curie",48.801023,2.058398,0,0,OIF:SA:36:2067,Europe/Paris,,OIF, +OIF:SP:36:2069,1,"Gabriel Péri",48.801857,2.061591,0,0,OIF:SA:36:2069,Europe/Paris,,OIF, +OIF:SP:36:2070,1,"Gabriel Péri",48.80123,2.062642,0,0,OIF:SA:36:2069,Europe/Paris,,OIF, +OIF:SP:36:2071,1,"Parc de l'Abbaye",48.802513,2.061411,0,0,OIF:SA:36:2071,Europe/Paris,,OIF, +OIF:SP:36:2072,1,"Parc de l'Abbaye",48.802603,2.061532,0,0,OIF:SA:36:2071,Europe/Paris,,OIF, +OIF:SP:36:2073,1,"Lycée Mansart",48.805414,2.064484,0,0,OIF:SA:36:2073,Europe/Paris,,OIF, +OIF:SP:36:2074,1,"Lycée Mansart",48.804478,2.06389,0,0,OIF:SA:36:2073,Europe/Paris,,OIF, +OIF:SP:36:2075,1,"Victor Hugo",48.799691,2.061643,0,0,OIF:SA:36:2075,Europe/Paris,,OIF, +OIF:SP:36:2076,1,"Victor Hugo",48.799665,2.061888,0,0,OIF:SA:36:2075,Europe/Paris,,OIF, +OIF:SP:36:2077,1,"Yves Farge",48.802078,2.063903,0,0,OIF:SA:36:2077,Europe/Paris,,OIF, +OIF:SP:36:2078,1,"Jean Jaurès",48.800505,2.063802,0,0,OIF:SA:36:2078,Europe/Paris,,OIF, +OIF:SP:36:2079,1,"Église",48.799276,2.06472,0,0,OIF:SA:36:2079,Europe/Paris,,OIF, +OIF:SP:36:2080,1,"Mairie",48.799981,2.066444,0,0,OIF:SA:36:2080,Europe/Paris,,OIF, +OIF:SP:36:2081,1,"Mairie",48.800408,2.064809,0,0,OIF:SA:36:2080,Europe/Paris,,OIF, +OIF:SP:36:2083,1,"Gare de Saint-Cyr l'École",48.799023,2.072055,0,0,OIF:SA:8739322,Europe/Paris,,OIF, +OIF:SP:36:2085,1,"Gare de Saint-Cyr l'École",48.799115,2.073034,0,0,OIF:SA:8739322,Europe/Paris,,OIF, +OIF:SP:36:2086,1,"République",48.800495,2.071217,0,0,OIF:SA:21:772,Europe/Paris,,OIF, +OIF:SP:36:2087,1,"Émile Zola",48.798233,2.06478,0,0,OIF:SA:36:2087,Europe/Paris,,OIF, +OIF:SP:36:2088,1,"Émile Zola",48.798152,2.064658,0,0,OIF:SA:36:2087,Europe/Paris,,OIF, +OIF:SP:36:2090,1,"Les Deux Ponts",48.797628,2.059423,0,0,OIF:SA:36:2090,Europe/Paris,,OIF, +OIF:SP:36:2092,1,"Cité Croizat",48.796711,2.055619,0,0,OIF:SA:36:2092,Europe/Paris,,OIF, +OIF:SP:36:2093,1,"Les Cottages",48.795831,2.059786,0,0,OIF:SA:36:2093,Europe/Paris,,OIF, +OIF:SP:36:2094,1,"Henri Barbusse",48.795285,2.064591,0,0,OIF:SA:36:2094,Europe/Paris,,OIF, +OIF:SP:36:2095,1,"Henri Barbusse",48.795168,2.06451,0,0,OIF:SA:36:2094,Europe/Paris,,OIF, +OIF:SP:36:2097,1,"Union",48.794383,2.067276,0,0,OIF:SA:36:2097,Europe/Paris,,OIF, +OIF:SP:36:2098,1,"Union",48.794572,2.067302,0,0,OIF:SA:36:2097,Europe/Paris,,OIF, +OIF:SP:36:2101,1,"Bois Robert",48.792747,2.066972,0,0,OIF:SA:36:2101,Europe/Paris,,OIF, +OIF:SP:36:2102,1,"Bois Robert",48.792782,2.066917,0,0,OIF:SA:36:2101,Europe/Paris,,OIF, +OIF:SP:36:2103,1,"École Bizet",48.794408,2.070527,0,0,OIF:SA:36:2103,Europe/Paris,,OIF, +OIF:SP:36:2104,1,"École Bizet",48.794195,2.071426,0,0,OIF:SA:36:2103,Europe/Paris,,OIF, +OIF:SP:36:2105,1,"Francisco Ferrer",48.792099,2.070716,0,0,OIF:SA:36:2105,Europe/Paris,,OIF, +OIF:SP:36:2106,1,"Francisco Ferrer",48.792099,2.070771,0,0,OIF:SA:36:2105,Europe/Paris,,OIF, +OIF:SP:36:2107,1,"Rue du Plateau",48.792756,2.07127,0,0,OIF:SA:36:2107,Europe/Paris,,OIF, +OIF:SP:36:2108,1,"Rue du Plateau",48.792756,2.071311,0,0,OIF:SA:36:2107,Europe/Paris,,OIF, +OIF:SP:36:2109,1,"Henri Wallon",48.794789,2.072035,0,0,OIF:SA:36:2109,Europe/Paris,,OIF, +OIF:SP:36:2110,1,"Bel Air",48.796237,2.072531,0,0,OIF:SA:36:2110,Europe/Paris,,OIF, +OIF:SP:36:2111,1,"Paul Vaillant Couturier",48.797281,2.072948,0,0,OIF:SA:36:2111,Europe/Paris,,OIF, +OIF:SP:36:2112,1,"Paul Vaillant Couturier",48.797353,2.072975,0,0,OIF:SA:36:2111,Europe/Paris,,OIF, +OIF:SP:36:2113,1,"République",48.799144,2.070109,0,0,OIF:SA:21:772,Europe/Paris,,OIF, +OIF:SP:36:2114,1,"République",48.799529,2.069385,0,0,OIF:SA:21:772,Europe/Paris,,OIF, +OIF:SP:36:2115,1,"République",48.80027,2.071178,0,0,OIF:SA:21:772,Europe/Paris,,OIF, +OIF:SP:36:2116,1,"La Poste",48.798591,2.067935,0,0,OIF:SA:36:2116,Europe/Paris,,OIF, +OIF:SP:36:2117,1,"La Poste",48.798411,2.067718,0,0,OIF:SA:36:2116,Europe/Paris,,OIF, +OIF:SP:36:2120,1,"Centre Aquatique",48.795603,2.062291,0,0,OIF:SA:36:2120,Europe/Paris,,OIF, +OIF:SP:36:2121,1,"Droits de l'Homme",48.785403,2.058903,0,0,OIF:SA:36:2121,Europe/Paris,,OIF, +OIF:SP:36:2123,1,"Centre Sportif",48.794069,2.063714,0,0,OIF:SA:36:2123,Europe/Paris,,OIF, +OIF:SP:36:2124,1,"Centre Sportif",48.794052,2.063782,0,0,OIF:SA:36:2123,Europe/Paris,,OIF, +OIF:SP:36:2125,1,"Jean-Baptiste Lully",48.80582,2.069013,0,0,OIF:SA:36:2125,Europe/Paris,,OIF, +OIF:SP:36:2126,1,"Jean-Baptiste Lully",48.805747,2.068891,0,0,OIF:SA:36:2125,Europe/Paris,,OIF, +OIF:SP:36:2127,1,"Division Leclerc",48.800598,2.073407,0,0,OIF:SA:2:1468,Europe/Paris,,OIF, +OIF:SP:36:2128,1,"Les Deux Ponts",48.797338,2.058649,0,0,OIF:SA:36:2090,Europe/Paris,,OIF, +OIF:SP:36:2129,1,"Cité Croizat",48.796892,2.056393,0,0,OIF:SA:36:2092,Europe/Paris,,OIF, +OIF:SP:36:2130,1,"Rue du Plateau",48.794754,2.068281,0,0,OIF:SA:36:2107,Europe/Paris,,OIF, +OIF:SP:36:2131,1,"Rue du Plateau",48.794691,2.068159,0,0,OIF:SA:36:2107,Europe/Paris,,OIF, +OIF:SP:36:2132,1,"Bel Air",48.796381,2.072599,0,0,OIF:SA:36:2110,Europe/Paris,,OIF, +OIF:SP:36:2133,1,"Henri Wallon",48.794708,2.072077,0,0,OIF:SA:36:2109,Europe/Paris,,OIF, +OIF:SP:3:1,1,"Bouletterie",48.530629,2.492951,0,0,OIF:SA:3:1,Europe/Paris,,OIF, +OIF:SP:3:10,1,"Rue du Puits",48.568392,2.480372,0,0,OIF:SA:10:465,Europe/Paris,,OIF, +OIF:SP:3:100,1,"Cols Verts",48.546726,2.427158,0,0,OIF:SA:3:100,Europe/Paris,,OIF, +OIF:SP:3:1001,1,"Piscine",48.603498,2.485104,0,0,OIF:SA:3:1001,Europe/Paris,,OIF, +OIF:SP:3:1002,1,"Bas Coudray",48.605566,2.484961,0,0,OIF:SA:3:1002,Europe/Paris,,OIF, +OIF:SP:3:1003,1,"Chevallier",48.607247,2.485291,0,0,OIF:SA:3:1003,Europe/Paris,,OIF, +OIF:SP:3:1004,1,"Villoison",48.609059,2.487926,0,0,OIF:SA:3:1004,Europe/Paris,,OIF, +OIF:SP:3:1005,1,"Vieux Corbeil",48.611534,2.485832,0,0,OIF:SA:3:1005,Europe/Paris,,OIF, +OIF:SP:3:1006,1,"Saint-Guénault",48.61401,2.482491,0,0,OIF:SA:3:1006,Europe/Paris,,OIF, +OIF:SP:3:1007,1,"République",48.614256,2.479929,0,0,OIF:SA:3:1007,Europe/Paris,,OIF, +OIF:SP:3:1008,1,"RER Corbeil Santé",48.612284,2.474854,0,0,OIF:SA:8768100,Europe/Paris,,OIF, +OIF:SP:3:1009,1,"Carnot",48.610133,2.476881,0,0,OIF:SA:3:1009,Europe/Paris,,OIF, +OIF:SP:3:101,1,"Eaux de la Vanne",48.575112,2.441133,0,0,OIF:SA:3:101,Europe/Paris,,OIF, +OIF:SP:3:1010,1,"Médiathèque",48.606426,2.472805,0,0,OIF:SA:3:1010,Europe/Paris,,OIF, +OIF:SP:3:1011,1,"Palais des Sports",48.605152,2.469928,0,0,OIF:SA:3:1011,Europe/Paris,,OIF, +OIF:SP:3:1012,1,"Chantemerle",48.605425,2.46757,0,0,OIF:SA:3:1012,Europe/Paris,,OIF, +OIF:SP:3:1013,1,"RER Robinson",48.605401,2.464588,0,0,OIF:SA:8768160,Europe/Paris,,OIF, +OIF:SP:3:1014,1,"Conservatoire",48.604314,2.464138,0,0,OIF:SA:3:1014,Europe/Paris,,OIF, +OIF:SP:3:1015,1,"Angoulême",48.601643,2.464674,0,0,OIF:SA:3:1015,Europe/Paris,,OIF, +OIF:SP:3:1016,1,"Rue de Paris",48.602582,2.469014,0,0,OIF:SA:3:1016,Europe/Paris,,OIF, +OIF:SP:3:1017,1,"Louis Robert",48.602533,2.472849,0,0,OIF:SA:3:1017,Europe/Paris,,OIF, +OIF:SP:3:1018,1,"Lamartine",48.602844,2.476184,0,0,OIF:SA:3:1018,Europe/Paris,,OIF, +OIF:SP:3:1019,1,"Castors",48.602293,2.478284,0,0,OIF:SA:3:1019,Europe/Paris,,OIF, +OIF:SP:3:102,1,"Eaux de la Vanne",48.575283,2.440998,0,0,OIF:SA:3:101,Europe/Paris,,OIF, +OIF:SP:3:1020,1,"René Pierre",48.600439,2.479796,0,0,OIF:SA:3:1020,Europe/Paris,,OIF, +OIF:SP:3:1021,1,"Maison de Retraite",48.602963,2.481945,0,0,OIF:SA:3:1021,Europe/Paris,,OIF, +OIF:SP:3:1022,1,"Terminal David Douillet",48.563101,2.491558,0,0,OIF:SA:10:1171,Europe/Paris,,OIF, +OIF:SP:3:1023,1,"Mairie",48.566094,2.484768,0,0,OIF:SA:10:1207,Europe/Paris,,OIF, +OIF:SP:3:1024,1,"Rue du Puits",48.56867,2.480495,0,0,OIF:SA:10:465,Europe/Paris,,OIF, +OIF:SP:3:1025,1,"ZA les Haies Blanches",48.56761,2.464889,0,0,OIF:SA:3:1025,Europe/Paris,,OIF, +OIF:SP:3:1027,1,"Cavignon",48.580236,2.476232,0,0,OIF:SA:10:1301,Europe/Paris,,OIF, +OIF:SP:3:1028,1,"Rue du Chêne",48.582959,2.476551,0,0,OIF:SA:10:1302,Europe/Paris,,OIF, +OIF:SP:3:1029,1,"Pressoir Prompt",48.586051,2.476925,0,0,OIF:SA:10:1303,Europe/Paris,,OIF, +OIF:SP:3:103,1,"Gare de Mennecy Rue de l'Abreuvoir",48.571559,2.433229,0,0,OIF:SA:8768141,Europe/Paris,,OIF, +OIF:SP:3:1030,1,"L'Ermitage",48.591821,2.477564,0,0,OIF:SA:10:1208,Europe/Paris,,OIF, +OIF:SP:3:1031,1,"Cassadamont",48.59626,2.47904,0,0,OIF:SA:3:1031,Europe/Paris,,OIF, +OIF:SP:3:1032,1,"Belvédère",48.599342,2.480254,0,0,OIF:SA:3:1032,Europe/Paris,,OIF, +OIF:SP:3:1033,1,"Stade",48.606341,2.483161,0,0,OIF:SA:3:1033,Europe/Paris,,OIF, +OIF:SP:3:1034,1,"Champlouis",48.609032,2.480389,0,0,OIF:SA:3:1034,Europe/Paris,,OIF, +OIF:SP:3:1036,1,"Parking Crêté",48.612647,2.479681,0,0,OIF:SA:3:1036,Europe/Paris,,OIF, +OIF:SP:3:1037,1,"Sous Préfecture",48.614845,2.476067,0,0,OIF:SA:10:557,Europe/Paris,,OIF, +OIF:SP:3:1038,1,"Cimetière",48.615585,2.47306,0,0,OIF:SA:10:534,Europe/Paris,,OIF, +OIF:SP:3:1039,1,"Corbeil Gare E. Zola (Quai 2)",48.613717,2.471563,0,0,OIF:SA:8768100,Europe/Paris,,OIF, +OIF:SP:3:104,1,"Gare de Mennecy Rue de l'Abreuvoir",48.571379,2.433377,0,0,OIF:SA:8768141,Europe/Paris,,OIF, +OIF:SP:3:1040,1,"Gustave Courbet",48.615697,2.469793,0,0,OIF:SA:10:198,Europe/Paris,,OIF, +OIF:SP:3:1041,1,"Général de Gaulle",48.617301,2.466082,0,0,OIF:SA:10:209,Europe/Paris,,OIF, +OIF:SP:3:1042,1,"Gauguin",48.618799,2.460256,0,0,OIF:SA:10:553,Europe/Paris,,OIF, +OIF:SP:3:1043,1,"Collège Senghor",48.615457,2.458906,0,0,OIF:SA:3:1043,Europe/Paris,,OIF, +OIF:SP:3:1044,1,"Lycée",48.614201,2.456598,0,0,OIF:SA:10:536,Europe/Paris,,OIF, +OIF:SP:3:1045,1,"8 Mai 1945",48.611238,2.453311,0,0,OIF:SA:10:526,Europe/Paris,,OIF, +OIF:SP:3:1046,1,"Marques Avenue A6",48.609102,2.449022,0,0,OIF:SA:10:1166,Europe/Paris,,OIF, +OIF:SP:3:1047,1,"Exona",48.606443,2.447512,0,0,OIF:SA:10:1165,Europe/Paris,,OIF, +OIF:SP:3:1048,1,"La Demi-Lune",48.576676,2.475816,0,0,OIF:SA:3:1048,Europe/Paris,,OIF, +OIF:SP:3:1049,1,"Centre de Formation",48.611051,2.44153,0,0,OIF:SA:3:1049,Europe/Paris,,OIF, +OIF:SP:3:105,1,"Gare de Mennecy Place de la Gare",48.570876,2.433444,0,0,OIF:SA:8768141,Europe/Paris,,OIF, +OIF:SP:3:1050,1,"SNECMA",48.61278,2.447458,0,0,OIF:SA:3:1050,Europe/Paris,,OIF, +OIF:SP:3:1051,1,"Corbeil Gare H. Barbusse (Quai 2)",48.613939,2.474275,0,0,OIF:SA:8768100,Europe/Paris,,OIF, +OIF:SP:3:1052,1,"Exona",48.60674,2.447391,0,0,OIF:SA:10:1165,Europe/Paris,,OIF, +OIF:SP:3:1053,1,"Marques Avenue A6",48.609039,2.449253,0,0,OIF:SA:10:1166,Europe/Paris,,OIF, +OIF:SP:3:1054,1,"8 Mai 1945",48.61086,2.453066,0,0,OIF:SA:10:526,Europe/Paris,,OIF, +OIF:SP:3:1055,1,"Lycée",48.614093,2.456611,0,0,OIF:SA:10:536,Europe/Paris,,OIF, +OIF:SP:3:1056,1,"Pablo Picasso",48.614521,2.460273,0,0,OIF:SA:10:554,Europe/Paris,,OIF, +OIF:SP:3:1057,1,"Henri Matisse",48.615067,2.462362,0,0,OIF:SA:10:542,Europe/Paris,,OIF, +OIF:SP:3:1058,1,"Léon Blum",48.616413,2.464331,0,0,OIF:SA:10:544,Europe/Paris,,OIF, +OIF:SP:3:1059,1,"Général de Gaulle",48.617166,2.465932,0,0,OIF:SA:10:209,Europe/Paris,,OIF, +OIF:SP:3:1060,1,"Gustave Courbet",48.615427,2.469846,0,0,OIF:SA:10:198,Europe/Paris,,OIF, +OIF:SP:3:1061,1,"Cimetière",48.615585,2.47306,0,0,OIF:SA:10:534,Europe/Paris,,OIF, +OIF:SP:3:1062,1,"Sous Préfecture",48.613731,2.475603,0,0,OIF:SA:10:557,Europe/Paris,,OIF, +OIF:SP:3:1063,1,"Parking Crêté",48.613078,2.480007,0,0,OIF:SA:3:1036,Europe/Paris,,OIF, +OIF:SP:3:1065,1,"Edouard Petit",48.608088,2.481024,0,0,OIF:SA:3:1065,Europe/Paris,,OIF, +OIF:SP:3:1066,1,"Stade",48.607213,2.483678,0,0,OIF:SA:3:1033,Europe/Paris,,OIF, +OIF:SP:3:1067,1,"Maison de Retraite",48.60299,2.481904,0,0,OIF:SA:3:1021,Europe/Paris,,OIF, +OIF:SP:3:1068,1,"Belvédère",48.599252,2.480173,0,0,OIF:SA:3:1032,Europe/Paris,,OIF, +OIF:SP:3:1069,1,"Cassadamont",48.59618,2.478917,0,0,OIF:SA:3:1031,Europe/Paris,,OIF, +OIF:SP:3:107,1,"Gendarmerie",48.563832,2.428867,0,0,OIF:SA:3:107,Europe/Paris,,OIF, +OIF:SP:3:1070,1,"L'Ermitage",48.592082,2.477429,0,0,OIF:SA:10:1208,Europe/Paris,,OIF, +OIF:SP:3:1071,1,"Pressoir Prompt",48.585638,2.476748,0,0,OIF:SA:10:1303,Europe/Paris,,OIF, +OIF:SP:3:1072,1,"Rue du Chêne",48.582285,2.476373,0,0,OIF:SA:10:1302,Europe/Paris,,OIF, +OIF:SP:3:1073,1,"Cavignon",48.579706,2.476041,0,0,OIF:SA:10:1301,Europe/Paris,,OIF, +OIF:SP:3:1076,1,"ZA les Haies Blanches",48.567079,2.465307,0,0,OIF:SA:3:1025,Europe/Paris,,OIF, +OIF:SP:3:1077,1,"Rue du Puits",48.568383,2.480481,0,0,OIF:SA:10:465,Europe/Paris,,OIF, +OIF:SP:3:1078,1,"Mairie",48.566211,2.484321,0,0,OIF:SA:10:1207,Europe/Paris,,OIF, +OIF:SP:3:1079,1,"La Demi-Lune",48.576874,2.475735,0,0,OIF:SA:3:1048,Europe/Paris,,OIF, +OIF:SP:3:108,1,"Gendarmerie",48.563921,2.429097,0,0,OIF:SA:3:107,Europe/Paris,,OIF, +OIF:SP:3:1080,1,"Corbeil Gare H. Barbusse (Quai 2)",48.614011,2.474208,0,0,OIF:SA:8768100,Europe/Paris,,OIF, +OIF:SP:3:1081,1,"Mairie de Corbeil",48.61349,2.481229,0,0,OIF:SA:3:1081,Europe/Paris,,OIF, +OIF:SP:3:1082,1,"Pont Patton",48.613791,2.484998,0,0,OIF:SA:3:1082,Europe/Paris,,OIF, +OIF:SP:3:1083,1,"Quai Riquiez",48.61054,2.489462,0,0,OIF:SA:3:1083,Europe/Paris,,OIF, +OIF:SP:3:1084,1,"Saintry Entrée",48.607282,2.492543,0,0,OIF:SA:3:1084,Europe/Paris,,OIF, +OIF:SP:3:1085,1,"Ruelle des Sabots",48.602276,2.491932,0,0,OIF:SA:3:1085,Europe/Paris,,OIF, +OIF:SP:3:1086,1,"Rue de l'Église",48.599731,2.492629,0,0,OIF:SA:3:1086,Europe/Paris,,OIF, +OIF:SP:3:1087,1,"Mairie de Saintry",48.596638,2.492905,0,0,OIF:SA:29:503,Europe/Paris,,OIF, +OIF:SP:3:1088,1,"Port aux Sablons",48.591849,2.491142,0,0,OIF:SA:29:504,Europe/Paris,,OIF, +OIF:SP:3:1089,1,"Route de Morsang",48.587169,2.489001,0,0,OIF:SA:29:505,Europe/Paris,,OIF, +OIF:SP:3:1090,1,"Hameau de Seine",48.583501,2.488922,0,0,OIF:SA:29:507,Europe/Paris,,OIF, +OIF:SP:3:1091,1,"Compagnie des Eaux",48.574995,2.490618,0,0,OIF:SA:29:513,Europe/Paris,,OIF, +OIF:SP:3:1092,1,"Morsang sur Seine Mairie",48.571126,2.493587,0,0,OIF:SA:29:515,Europe/Paris,,OIF, +OIF:SP:3:1093,1,"Compagnie des Eaux",48.575058,2.490591,0,0,OIF:SA:29:513,Europe/Paris,,OIF, +OIF:SP:3:1094,1,"Hameau de Seine",48.583618,2.488963,0,0,OIF:SA:29:507,Europe/Paris,,OIF, +OIF:SP:3:1095,1,"Route de Morsang",48.587762,2.48926,0,0,OIF:SA:29:505,Europe/Paris,,OIF, +OIF:SP:3:1096,1,"Rue du Stade",48.59109,2.494555,0,0,OIF:SA:29:509,Europe/Paris,,OIF, +OIF:SP:3:1097,1,"Place de la Résistance",48.590187,2.497574,0,0,OIF:SA:29:510,Europe/Paris,,OIF, +OIF:SP:3:1098,1,"Villededon",48.591513,2.500776,0,0,OIF:SA:29:511,Europe/Paris,,OIF, +OIF:SP:3:1099,1,"Les Brosses",48.596612,2.499409,0,0,OIF:SA:29:512,Europe/Paris,,OIF, +OIF:SP:3:11,1,"Rue du Puits",48.568499,2.480616,0,0,OIF:SA:10:465,Europe/Paris,,OIF, +OIF:SP:3:1100,1,"Réservoir",48.601057,2.495683,0,0,OIF:SA:29:500,Europe/Paris,,OIF, +OIF:SP:3:1101,1,"Rue des Chèvres",48.603566,2.494891,0,0,OIF:SA:29:498,Europe/Paris,,OIF, +OIF:SP:3:1102,1,"Quai Riquiez",48.611323,2.488624,0,0,OIF:SA:3:1083,Europe/Paris,,OIF, +OIF:SP:3:1103,1,"Pont Patton",48.613845,2.484876,0,0,OIF:SA:3:1082,Europe/Paris,,OIF, +OIF:SP:3:1104,1,"Gare Moulin Galant",48.586416,2.472712,0,0,OIF:SA:8768140,Europe/Paris,,OIF, +OIF:SP:3:1105,1,"Rue R. Brunot",48.588556,2.471959,0,0,OIF:SA:3:1105,Europe/Paris,,OIF, +OIF:SP:3:1106,1,"Rue des Caillettes",48.593332,2.46941,0,0,OIF:SA:3:1106,Europe/Paris,,OIF, +OIF:SP:3:1107,1,"Papeterie",48.594997,2.468154,0,0,OIF:SA:3:1107,Europe/Paris,,OIF, +OIF:SP:3:1108,1,"La Nacelle",48.598731,2.464491,0,0,OIF:SA:3:1108,Europe/Paris,,OIF, +OIF:SP:3:1109,1,"Conservatoire",48.604107,2.464097,0,0,OIF:SA:3:1014,Europe/Paris,,OIF, +OIF:SP:3:111,1,"Jeannotte",48.567675,2.444531,0,0,OIF:SA:3:111,Europe/Paris,,OIF, +OIF:SP:3:1110,1,"RER Robinson",48.605428,2.464656,0,0,OIF:SA:8768160,Europe/Paris,,OIF, +OIF:SP:3:1111,1,"Centre Commercial",48.606771,2.469133,0,0,OIF:SA:10:574,Europe/Paris,,OIF, +OIF:SP:3:1112,1,"Parc Chantemerle",48.607677,2.47087,0,0,OIF:SA:10:549,Europe/Paris,,OIF, +OIF:SP:3:1113,1,"MJC",48.610162,2.475553,0,0,OIF:SA:3:1113,Europe/Paris,,OIF, +OIF:SP:3:1114,1,"Félicien Rops",48.6114,2.477386,0,0,OIF:SA:10:540,Europe/Paris,,OIF, +OIF:SP:3:1115,1,"Corbeil Gare E. Zola (Quai 2)",48.613896,2.472242,0,0,OIF:SA:8768100,Europe/Paris,,OIF, +OIF:SP:3:1116,1,"Félicien Rops",48.61141,2.477007,0,0,OIF:SA:10:540,Europe/Paris,,OIF, +OIF:SP:3:1117,1,"MJC",48.609247,2.473626,0,0,OIF:SA:3:1113,Europe/Paris,,OIF, +OIF:SP:3:1118,1,"Parc Chantemerle",48.608117,2.471888,0,0,OIF:SA:10:549,Europe/Paris,,OIF, +OIF:SP:3:1119,1,"Centre Commercial",48.607104,2.46931,0,0,OIF:SA:10:574,Europe/Paris,,OIF, +OIF:SP:3:112,1,"Jeannotte",48.567513,2.444382,0,0,OIF:SA:3:111,Europe/Paris,,OIF, +OIF:SP:3:1120,1,"Angoulême",48.600522,2.462476,0,0,OIF:SA:3:1015,Europe/Paris,,OIF, +OIF:SP:3:1121,1,"La Nacelle",48.59847,2.464653,0,0,OIF:SA:3:1108,Europe/Paris,,OIF, +OIF:SP:3:1122,1,"Papeterie",48.594313,2.468518,0,0,OIF:SA:3:1107,Europe/Paris,,OIF, +OIF:SP:3:1123,1,"Rue des Caillettes",48.593035,2.46964,0,0,OIF:SA:3:1106,Europe/Paris,,OIF, +OIF:SP:3:1124,1,"Rue R. Brunot",48.589033,2.471703,0,0,OIF:SA:3:1105,Europe/Paris,,OIF, +OIF:SP:3:1125,1,"Corbeil Gare H. Barbusse (Quai 2)",48.613975,2.474275,0,0,OIF:SA:8768100,Europe/Paris,,OIF, +OIF:SP:3:1126,1,"Allée de l'Essonne",48.602824,2.461478,0,0,OIF:SA:3:1126,Europe/Paris,,OIF, +OIF:SP:3:1127,1,"CES la Nacelle",48.595895,2.460201,0,0,OIF:SA:3:1127,Europe/Paris,,OIF, +OIF:SP:3:1128,1,"Gare SNCF",48.592622,2.461142,0,0,OIF:SA:8768161,Europe/Paris,,OIF, +OIF:SP:3:1129,1,"Gabriel Péri",48.59035,2.459145,0,0,OIF:SA:3:1129,Europe/Paris,,OIF, +OIF:SP:3:1130,1,"Église",48.588743,2.456946,0,0,OIF:SA:3:1130,Europe/Paris,,OIF, +OIF:SP:3:1131,1,"Rue des Mésanges",48.585252,2.459648,0,0,OIF:SA:3:1131,Europe/Paris,,OIF, +OIF:SP:3:1132,1,"Pavillons des Linottes",48.583336,2.460917,0,0,OIF:SA:3:1132,Europe/Paris,,OIF, +OIF:SP:3:1133,1,"Gymnase",48.584689,2.456408,0,0,OIF:SA:3:1133,Europe/Paris,,OIF, +OIF:SP:3:1134,1,"Chemin des Prés",48.58738,2.453352,0,0,OIF:SA:3:1134,Europe/Paris,,OIF, +OIF:SP:3:1135,1,"Villabé Collège",48.59035,2.449443,0,0,OIF:SA:3:1135,Europe/Paris,,OIF, +OIF:SP:3:1136,1,"KFC",48.59079,2.441137,0,0,OIF:SA:3:1136,Europe/Paris,,OIF, +OIF:SP:3:1137,1,"Les Brateaux",48.58792,2.44357,0,0,OIF:SA:3:1137,Europe/Paris,,OIF, +OIF:SP:3:1138,1,"Centre Commercial",48.584977,2.446653,0,0,OIF:SA:10:72,Europe/Paris,,OIF, +OIF:SP:3:1139,1,"Chemin des Prés",48.587371,2.453366,0,0,OIF:SA:3:1134,Europe/Paris,,OIF, +OIF:SP:3:1140,1,"Gymnase",48.58513,2.455935,0,0,OIF:SA:3:1133,Europe/Paris,,OIF, +OIF:SP:3:1141,1,"Pavillons des Linottes",48.58375,2.460904,0,0,OIF:SA:3:1132,Europe/Paris,,OIF, +OIF:SP:3:1142,1,"Rue des Mésanges",48.585,2.459932,0,0,OIF:SA:3:1131,Europe/Paris,,OIF, +OIF:SP:3:1143,1,"Église",48.588914,2.456797,0,0,OIF:SA:3:1130,Europe/Paris,,OIF, +OIF:SP:3:1144,1,"Cimetière",48.591495,2.456031,0,0,OIF:SA:10:90,Europe/Paris,,OIF, +OIF:SP:3:1145,1,"Gare SNCF",48.593423,2.460534,0,0,OIF:SA:8768161,Europe/Paris,,OIF, +OIF:SP:3:1146,1,"CES la Nacelle",48.595967,2.460269,0,0,OIF:SA:3:1127,Europe/Paris,,OIF, +OIF:SP:3:1147,1,"Allée de l'Essonne",48.602914,2.461872,0,0,OIF:SA:3:1126,Europe/Paris,,OIF, +OIF:SP:3:1148,1,"Rue du 14 Juillet",48.615573,2.483241,0,0,OIF:SA:3:1148,Europe/Paris,,OIF, +OIF:SP:3:1149,1,"La Fontaine",48.631906,2.468003,0,0,OIF:SA:3:1149,Europe/Paris,,OIF, +OIF:SP:3:115,1,"Lycée Marie Laurencin",48.564237,2.438687,0,0,OIF:SA:3:115,Europe/Paris,,OIF, +OIF:SP:3:1150,1,"Lycées",48.634345,2.465175,0,0,OIF:SA:3:1150,Europe/Paris,,OIF, +OIF:SP:3:1151,1,"Bois des Coudraies",48.639079,2.460141,0,0,OIF:SA:10:39,Europe/Paris,,OIF, +OIF:SP:3:1152,1,"Gerville",48.642644,2.454819,0,0,OIF:SA:10:201,Europe/Paris,,OIF, +OIF:SP:3:1153,1,"Notre-Dame République",48.644659,2.453196,0,0,OIF:SA:10:352,Europe/Paris,,OIF, +OIF:SP:3:1154,1,"Galignani",48.64644,2.452169,0,0,OIF:SA:10:1294,Europe/Paris,,OIF, +OIF:SP:3:1155,1,"Place du Couvent Mairie",48.648904,2.450614,0,0,OIF:SA:10:380,Europe/Paris,,OIF, +OIF:SP:3:1156,1,"Grand Veneur",48.648092,2.453841,0,0,OIF:SA:10:605,Europe/Paris,,OIF, +OIF:SP:3:1157,1,"Rue de l'Ermitage",48.650192,2.457359,0,0,OIF:SA:10:606,Europe/Paris,,OIF, +OIF:SP:3:1158,1,"Soisy les Meillottes",48.652134,2.45678,0,0,OIF:SA:10:486,Europe/Paris,,OIF, +OIF:SP:3:1159,1,"Rue Jean de la Fontaine",48.65407,2.453488,0,0,OIF:SA:10:452,Europe/Paris,,OIF, +OIF:SP:3:116,1,"Piscine",48.553987,2.418274,0,0,OIF:SA:3:116,Europe/Paris,,OIF, +OIF:SP:3:1160,1,"Rue des Carrières",48.652851,2.450189,0,0,OIF:SA:10:432,Europe/Paris,,OIF, +OIF:SP:3:1161,1,"Rue des Meillottes",48.654024,2.445782,0,0,OIF:SA:10:454,Europe/Paris,,OIF, +OIF:SP:3:1162,1,"Les Lilas",48.650743,2.445192,0,0,OIF:SA:10:294,Europe/Paris,,OIF, +OIF:SP:3:1163,1,"Mairie",48.647396,2.448562,0,0,OIF:SA:10:328,Europe/Paris,,OIF, +OIF:SP:3:1164,1,"Galignani",48.645596,2.450715,0,0,OIF:SA:10:1294,Europe/Paris,,OIF, +OIF:SP:3:1165,1,"Notre-Dame République",48.643787,2.453234,0,0,OIF:SA:10:352,Europe/Paris,,OIF, +OIF:SP:3:1166,1,"Gerville",48.642014,2.455523,0,0,OIF:SA:10:201,Europe/Paris,,OIF, +OIF:SP:3:1167,1,"Bois des Coudraies",48.638829,2.45873,0,0,OIF:SA:10:39,Europe/Paris,,OIF, +OIF:SP:3:1168,1,"Lycées",48.634292,2.464985,0,0,OIF:SA:3:1150,Europe/Paris,,OIF, +OIF:SP:3:1169,1,"La Fontaine",48.629963,2.469381,0,0,OIF:SA:3:1149,Europe/Paris,,OIF, +OIF:SP:3:117,1,"Piscine",48.553663,2.418476,0,0,OIF:SA:3:116,Europe/Paris,,OIF, +OIF:SP:3:1170,1,"Rue du 14 Juillet",48.615672,2.48316,0,0,OIF:SA:3:1148,Europe/Paris,,OIF, +OIF:SP:3:1171,1,"Lycée",48.613605,2.458779,0,0,OIF:SA:10:536,Europe/Paris,,OIF, +OIF:SP:3:1172,1,"Ambroise Croizat",48.606253,2.466054,0,0,OIF:SA:8798436,Europe/Paris,,OIF, +OIF:SP:3:1173,1,"Félicien Rops",48.611292,2.477386,0,0,OIF:SA:10:540,Europe/Paris,,OIF, +OIF:SP:3:1174,1,"Ambroise Croizat",48.606406,2.46619,0,0,OIF:SA:8798436,Europe/Paris,,OIF, +OIF:SP:3:1175,1,"Lycée",48.613587,2.458793,0,0,OIF:SA:10:536,Europe/Paris,,OIF, +OIF:SP:3:1176,1,"Résidence la Nacelle",48.596346,2.466802,0,0,OIF:SA:3:1176,Europe/Paris,,OIF, +OIF:SP:3:1178,1,"Résidence la Nacelle",48.596724,2.466505,0,0,OIF:SA:3:1176,Europe/Paris,,OIF, +OIF:SP:3:1179,1,"Château",48.57315,2.408144,0,0,OIF:SA:3:1179,Europe/Paris,,OIF, +OIF:SP:3:118,1,"Porcelaine",48.547564,2.424749,0,0,OIF:SA:3:118,Europe/Paris,,OIF, +OIF:SP:3:1180,1,"Croix Boissée",48.572127,2.360583,0,0,OIF:SA:3:1180,Europe/Paris,,OIF, +OIF:SP:3:1181,1,"Place de la Mairie",48.551288,2.366735,0,0,OIF:SA:3:1181,Europe/Paris,,OIF, +OIF:SP:3:1182,1,"Tournebride",48.53961,2.365537,0,0,OIF:SA:26:18174,Europe/Paris,,OIF, +OIF:SP:3:1183,1,"Place Duquesne",48.539719,2.361178,0,0,OIF:SA:3:1183,Europe/Paris,,OIF, +OIF:SP:3:1184,1,"Tournebride",48.539565,2.365726,0,0,OIF:SA:26:18174,Europe/Paris,,OIF, +OIF:SP:3:1185,1,"Place de la Mairie",48.551279,2.366721,0,0,OIF:SA:3:1181,Europe/Paris,,OIF, +OIF:SP:3:1186,1,"Croix Boissée",48.572019,2.360516,0,0,OIF:SA:3:1180,Europe/Paris,,OIF, +OIF:SP:3:1187,1,"Château",48.573132,2.408131,0,0,OIF:SA:3:1179,Europe/Paris,,OIF, +OIF:SP:3:1188,1,"Henri Dunant",48.595486,2.479715,0,0,OIF:SA:10:1258,Europe/Paris,,OIF, +OIF:SP:3:1189,1,"Square",48.594365,2.477652,0,0,OIF:SA:10:559,Europe/Paris,,OIF, +OIF:SP:3:119,1,"Porcelaine",48.547762,2.424695,0,0,OIF:SA:3:118,Europe/Paris,,OIF, +OIF:SP:3:1190,1,"Les Tours",48.59611,2.477061,0,0,OIF:SA:10:561,Europe/Paris,,OIF, +OIF:SP:3:1191,1,"Salvador Allendé",48.597764,2.476618,0,0,OIF:SA:3:1191,Europe/Paris,,OIF, +OIF:SP:3:1192,1,"Louis Drevet",48.600166,2.475621,0,0,OIF:SA:10:545,Europe/Paris,,OIF, +OIF:SP:3:1193,1,"Cottage",48.601131,2.473008,0,0,OIF:SA:10:572,Europe/Paris,,OIF, +OIF:SP:3:1194,1,"Léon Cassé",48.603689,2.468352,0,0,OIF:SA:10:280,Europe/Paris,,OIF, +OIF:SP:3:1195,1,"Léon Cassé",48.604022,2.467974,0,0,OIF:SA:10:280,Europe/Paris,,OIF, +OIF:SP:3:1196,1,"Cottage",48.601068,2.472615,0,0,OIF:SA:10:572,Europe/Paris,,OIF, +OIF:SP:3:1197,1,"Louis Drevet",48.600427,2.475405,0,0,OIF:SA:10:545,Europe/Paris,,OIF, +OIF:SP:3:1198,1,"Salvador Allendé",48.597729,2.476523,0,0,OIF:SA:3:1191,Europe/Paris,,OIF, +OIF:SP:3:1199,1,"Les Tours",48.59655,2.477035,0,0,OIF:SA:10:561,Europe/Paris,,OIF, +OIF:SP:3:12,1,"Terminal David Douillet",48.563082,2.491788,0,0,OIF:SA:10:1171,Europe/Paris,,OIF, +OIF:SP:3:120,1,"La Poste",48.56294,2.430991,0,0,OIF:SA:3:120,Europe/Paris,,OIF, +OIF:SP:3:1200,1,"Square",48.594617,2.47768,0,0,OIF:SA:10:559,Europe/Paris,,OIF, +OIF:SP:3:121,1,"La Poste",48.563514,2.432509,0,0,OIF:SA:3:120,Europe/Paris,,OIF, +OIF:SP:3:125,1,"Rond-Point de Verville",48.55135,2.422291,0,0,OIF:SA:3:125,Europe/Paris,,OIF, +OIF:SP:3:126,1,"Rond-Point de Verville",48.551467,2.423023,0,0,OIF:SA:3:125,Europe/Paris,,OIF, +OIF:SP:3:127,1,"Sangliers",48.546883,2.432763,0,0,OIF:SA:3:127,Europe/Paris,,OIF, +OIF:SP:3:128,1,"Sangliers",48.546946,2.432682,0,0,OIF:SA:3:127,Europe/Paris,,OIF, +OIF:SP:3:129,1,"Stade",48.564042,2.435111,0,0,OIF:SA:3:129,Europe/Paris,,OIF, +OIF:SP:3:130,1,"Stade",48.564231,2.434949,0,0,OIF:SA:3:129,Europe/Paris,,OIF, +OIF:SP:3:132,1,"Tournenfils",48.571302,2.449131,0,0,OIF:SA:3:132,Europe/Paris,,OIF, +OIF:SP:3:133,1,"Les Vanneaux",48.547591,2.436217,0,0,OIF:SA:3:133,Europe/Paris,,OIF, +OIF:SP:3:134,1,"Les Vanneaux",48.547672,2.436122,0,0,OIF:SA:3:133,Europe/Paris,,OIF, +OIF:SP:3:137,1,"ZAC Montvrain",48.565299,2.447005,0,0,OIF:SA:3:137,Europe/Paris,,OIF, +OIF:SP:3:138,1,"Compagnie des Eaux",48.57486,2.49055,0,0,OIF:SA:29:513,Europe/Paris,,OIF, +OIF:SP:3:139,1,"Compagnie des Eaux",48.574923,2.490753,0,0,OIF:SA:29:513,Europe/Paris,,OIF, +OIF:SP:3:140,1,"Mairie de Morsang",48.571162,2.4936,0,0,OIF:SA:3:140,Europe/Paris,,OIF, +OIF:SP:3:141,1,"Château",48.50578,2.493864,0,0,OIF:SA:3:141,Europe/Paris,,OIF, +OIF:SP:3:142,1,"Château",48.505681,2.493945,0,0,OIF:SA:3:141,Europe/Paris,,OIF, +OIF:SP:3:144,1,"Église",48.57624,2.446256,0,0,OIF:SA:3:144,Europe/Paris,,OIF, +OIF:SP:3:145,1,"Église",48.576375,2.446066,0,0,OIF:SA:3:144,Europe/Paris,,OIF, +OIF:SP:3:148,1,"Moques Tonneaux",48.572547,2.454335,0,0,OIF:SA:3:148,Europe/Paris,,OIF, +OIF:SP:3:149,1,"Moques Tonneaux",48.572654,2.45462,0,0,OIF:SA:3:148,Europe/Paris,,OIF, +OIF:SP:3:15,1,"Hôpital Georges Clemenceau",48.523106,2.432273,0,0,OIF:SA:3:15,Europe/Paris,,OIF, +OIF:SP:3:150,1,"Roissy Haut",48.569611,2.45953,0,0,OIF:SA:3:150,Europe/Paris,,OIF, +OIF:SP:3:151,1,"Roissy Haut",48.569532,2.457863,0,0,OIF:SA:3:150,Europe/Paris,,OIF, +OIF:SP:3:152,1,"Les Rochers",48.573774,2.45893,0,0,OIF:SA:3:152,Europe/Paris,,OIF, +OIF:SP:3:153,1,"Les Rochers",48.573666,2.459119,0,0,OIF:SA:3:152,Europe/Paris,,OIF, +OIF:SP:3:154,1,"Val d'Ormoy",48.574787,2.452728,0,0,OIF:SA:3:154,Europe/Paris,,OIF, +OIF:SP:3:155,1,"Val d'Ormoy",48.575021,2.45262,0,0,OIF:SA:3:154,Europe/Paris,,OIF, +OIF:SP:3:157,1,"Les Brosses",48.596629,2.499491,0,0,OIF:SA:29:512,Europe/Paris,,OIF, +OIF:SP:3:158,1,"Saintry Entrée",48.607264,2.492448,0,0,OIF:SA:3:1084,Europe/Paris,,OIF, +OIF:SP:3:159,1,"Hameau de Seine",48.583438,2.488787,0,0,OIF:SA:29:507,Europe/Paris,,OIF, +OIF:SP:3:160,1,"Hameau de Seine",48.583609,2.489031,0,0,OIF:SA:29:507,Europe/Paris,,OIF, +OIF:SP:3:161,1,"Mairie de Saintry",48.59663,2.492715,0,0,OIF:SA:3:161,Europe/Paris,,OIF, +OIF:SP:3:162,1,"Place de la Résistance",48.590115,2.497519,0,0,OIF:SA:29:510,Europe/Paris,,OIF, +OIF:SP:3:163,1,"Port aux Sablons",48.591868,2.490966,0,0,OIF:SA:29:504,Europe/Paris,,OIF, +OIF:SP:3:164,1,"Rue des Chèvres",48.603566,2.494958,0,0,OIF:SA:29:498,Europe/Paris,,OIF, +OIF:SP:3:165,1,"Rue de l'Église",48.599695,2.492561,0,0,OIF:SA:3:1086,Europe/Paris,,OIF, +OIF:SP:3:166,1,"Réservoirs",48.601039,2.495777,0,0,OIF:SA:29:500,Europe/Paris,,OIF, +OIF:SP:3:167,1,"Route de Morsang",48.587214,2.488866,0,0,OIF:SA:29:505,Europe/Paris,,OIF, +OIF:SP:3:168,1,"Route de Morsang",48.587708,2.489382,0,0,OIF:SA:29:505,Europe/Paris,,OIF, +OIF:SP:3:169,1,"Ruelle aux Sabots",48.602267,2.491796,0,0,OIF:SA:3:1085,Europe/Paris,,OIF, +OIF:SP:3:170,1,"Rue du Stade",48.590955,2.494486,0,0,OIF:SA:29:509,Europe/Paris,,OIF, +OIF:SP:3:171,1,"Villededon",48.591513,2.500776,0,0,OIF:SA:29:511,Europe/Paris,,OIF, +OIF:SP:3:174,1,"Villabé Gare",48.593423,2.460534,0,0,OIF:SA:8768161,Europe/Paris,,OIF, +OIF:SP:3:175,1,"Villabé Gare",48.592622,2.461142,0,0,OIF:SA:8768161,Europe/Paris,,OIF, +OIF:SP:3:178,1,"ZAC des Haies Blanches",48.56761,2.464889,0,0,OIF:SA:3:178,Europe/Paris,,OIF, +OIF:SP:3:179,1,"ZAC des Haies Blanches",48.567079,2.465307,0,0,OIF:SA:3:178,Europe/Paris,,OIF, +OIF:SP:3:180,1,"Aqueduc",48.532009,2.438813,0,0,OIF:SA:3:180,Europe/Paris,,OIF, +OIF:SP:3:181,1,"Aqueduc",48.532019,2.438624,0,0,OIF:SA:3:180,Europe/Paris,,OIF, +OIF:SP:3:182,1,"Esat",48.538075,2.441045,0,0,OIF:SA:3:182,Europe/Paris,,OIF, +OIF:SP:3:183,1,"Rond-Point des Cèdres",48.534046,2.443216,0,0,OIF:SA:3:183,Europe/Paris,,OIF, +OIF:SP:3:184,1,"Lycée R.Doisneau",48.613507,2.458616,0,0,OIF:SA:10:536,Europe/Paris,,OIF, +OIF:SP:3:185,1,"Collège Olympe de Gouges",48.518472,2.447136,0,0,OIF:SA:3:185,Europe/Paris,,OIF, +OIF:SP:3:186,1,"Place Adeline",48.496777,2.467082,0,0,OIF:SA:3:186,Europe/Paris,,OIF, +OIF:SP:3:187,1,"Stade",48.517855,2.444049,0,0,OIF:SA:3:187,Europe/Paris,,OIF, +OIF:SP:3:188,1,"Stade",48.517747,2.444103,0,0,OIF:SA:3:187,Europe/Paris,,OIF, +OIF:SP:3:189,1,"Château",48.573195,2.408009,0,0,OIF:SA:3:1179,Europe/Paris,,OIF, +OIF:SP:3:190,1,"Fontenay - Grande Rue",48.54915,2.405038,0,0,OIF:SA:3:190,Europe/Paris,,OIF, +OIF:SP:3:191,1,"Champs Fleuris",48.555349,2.43611,0,0,OIF:SA:3:191,Europe/Paris,,OIF, +OIF:SP:3:192,1,"Chevannes-Seigneurie",48.551275,2.437808,0,0,OIF:SA:3:192,Europe/Paris,,OIF, +OIF:SP:3:193,1,"Chevannes-Seigneurie",48.550376,2.437779,0,0,OIF:SA:3:192,Europe/Paris,,OIF, +OIF:SP:3:194,1,"Chevannes-Seigneurie",48.550907,2.437293,0,0,OIF:SA:3:192,Europe/Paris,,OIF, +OIF:SP:3:195,1,"Tournenfils",48.571302,2.449131,0,0,OIF:SA:3:132,Europe/Paris,,OIF, +OIF:SP:3:196,1,"Créapôle 2",48.567321,2.448066,0,0,OIF:SA:3:196,Europe/Paris,,OIF, +OIF:SP:3:197,1,"Créapôle 2",48.56742,2.447795,0,0,OIF:SA:3:196,Europe/Paris,,OIF, +OIF:SP:3:198,1,"Verville Seigneurie",48.553375,2.431394,0,0,OIF:SA:3:198,Europe/Paris,,OIF, +OIF:SP:3:199,1,"Verville Seigneurie",48.553249,2.431177,0,0,OIF:SA:3:198,Europe/Paris,,OIF, +OIF:SP:3:2,1,"Bouletterie",48.529738,2.493192,0,0,OIF:SA:3:1,Europe/Paris,,OIF, +OIF:SP:3:200,1,"Supermarché",48.565556,2.451394,0,0,OIF:SA:3:200,Europe/Paris,,OIF, +OIF:SP:3:201,1,"Tournenfils",48.571446,2.449591,0,0,OIF:SA:3:132,Europe/Paris,,OIF, +OIF:SP:3:202,1,"Belle Etoile",48.570227,2.455129,0,0,OIF:SA:3:202,Europe/Paris,,OIF, +OIF:SP:3:203,1,"Belle Etoile",48.570288,2.456646,0,0,OIF:SA:3:202,Europe/Paris,,OIF, +OIF:SP:3:204,1,"Belle Etoile",48.570171,2.456646,0,0,OIF:SA:3:202,Europe/Paris,,OIF, +OIF:SP:3:205,1,"Jardins d'Ormoy",48.574575,2.448975,0,0,OIF:SA:3:205,Europe/Paris,,OIF, +OIF:SP:3:206,1,"Jardins d'Ormoy",48.574673,2.449002,0,0,OIF:SA:3:205,Europe/Paris,,OIF, +OIF:SP:3:207,1,"C.Cial Saule Saint-Jacques",48.571204,2.465737,0,0,OIF:SA:3:207,Europe/Paris,,OIF, +OIF:SP:3:208,1,"C.Cial Saule Saint-Jacques",48.571079,2.465615,0,0,OIF:SA:3:207,Europe/Paris,,OIF, +OIF:SP:3:209,1,"Cinéma",48.562214,2.448854,0,0,OIF:SA:3:209,Europe/Paris,,OIF, +OIF:SP:3:21,1,"Demi Lune",48.575877,2.475299,0,0,OIF:SA:10:1300,Europe/Paris,,OIF, +OIF:SP:3:23,1,"Demi Lune",48.575851,2.47473,0,0,OIF:SA:10:1300,Europe/Paris,,OIF, +OIF:SP:3:28,1,"Lycée R.Doisneau",48.613821,2.458387,0,0,OIF:SA:3:28,Europe/Paris,,OIF, +OIF:SP:3:3,1,"La Mare",48.527734,2.492766,0,0,OIF:SA:3:3,Europe/Paris,,OIF, +OIF:SP:3:33,1,"Quai Riquiez",48.611359,2.488692,0,0,OIF:SA:3:1083,Europe/Paris,,OIF, +OIF:SP:3:34,1,"Quai Riquiez",48.610459,2.489421,0,0,OIF:SA:3:1083,Europe/Paris,,OIF, +OIF:SP:3:41,1,"Lycée Brassens",48.626673,2.420191,0,0,OIF:SA:10:288,Europe/Paris,,OIF, +OIF:SP:3:43,1,"La Bigotte",48.513236,2.451116,0,0,OIF:SA:3:43,Europe/Paris,,OIF, +OIF:SP:3:44,1,"La Bigotte",48.51303,2.451021,0,0,OIF:SA:3:43,Europe/Paris,,OIF, +OIF:SP:3:46,1,"Ferrante",48.497701,2.46933,0,0,OIF:SA:3:46,Europe/Paris,,OIF, +OIF:SP:3:47,1,"IME",48.511582,2.459948,0,0,OIF:SA:3:47,Europe/Paris,,OIF, +OIF:SP:3:48,1,"IME",48.511168,2.460475,0,0,OIF:SA:3:47,Europe/Paris,,OIF, +OIF:SP:3:49,1,"Louteville Pavillons",48.50912,2.467289,0,0,OIF:SA:3:49,Europe/Paris,,OIF, +OIF:SP:3:50,1,"Louteville Pavillons",48.509211,2.466653,0,0,OIF:SA:3:49,Europe/Paris,,OIF, +OIF:SP:3:51,1,"Mairie",48.515058,2.445113,0,0,OIF:SA:3:51,Europe/Paris,,OIF, +OIF:SP:3:52,1,"Mairie",48.515715,2.444464,0,0,OIF:SA:3:51,Europe/Paris,,OIF, +OIF:SP:3:53,1,"Château",48.573033,2.408212,0,0,OIF:SA:3:1179,Europe/Paris,,OIF, +OIF:SP:3:54,1,"La Martinière",48.575251,2.412604,0,0,OIF:SA:3:54,Europe/Paris,,OIF, +OIF:SP:3:55,1,"Lycée Hôtelier",48.634336,2.465229,0,0,OIF:SA:3:55,Europe/Paris,,OIF, +OIF:SP:3:56,1,"Lycée Hôtelier",48.634184,2.465093,0,0,OIF:SA:3:55,Europe/Paris,,OIF, +OIF:SP:3:58,1,"Lycée Notre-Dame de Sion",48.64162,2.434199,0,0,OIF:SA:3:58,Europe/Paris,,OIF, +OIF:SP:3:59,1,"Lycée Baudelaire",48.637665,2.434165,0,0,OIF:SA:3:59,Europe/Paris,,OIF, +OIF:SP:3:60,1,"Lycée des Loges",48.635631,2.42559,0,0,OIF:SA:10:301,Europe/Paris,,OIF, +OIF:SP:3:61,1,"Lycée des Loges",48.634715,2.425168,0,0,OIF:SA:10:301,Europe/Paris,,OIF, +OIF:SP:3:66,1,"Stade",48.551143,2.409048,0,0,OIF:SA:3:66,Europe/Paris,,OIF, +OIF:SP:3:67,1,"Stade",48.551934,2.41039,0,0,OIF:SA:3:66,Europe/Paris,,OIF, +OIF:SP:3:8,1,"Mairie",48.566167,2.484226,0,0,OIF:SA:10:1207,Europe/Paris,,OIF, +OIF:SP:3:80,1,"Acacias",48.568442,2.441634,0,0,OIF:SA:3:80,Europe/Paris,,OIF, +OIF:SP:3:81,1,"Acacias",48.56828,2.4412,0,0,OIF:SA:3:80,Europe/Paris,,OIF, +OIF:SP:3:82,1,"Bel Air",48.569308,2.438277,0,0,OIF:SA:3:82,Europe/Paris,,OIF, +OIF:SP:3:83,1,"Bel Air",48.569568,2.438128,0,0,OIF:SA:3:82,Europe/Paris,,OIF, +OIF:SP:3:85,1,"Buisson Houdard",48.570344,2.445092,0,0,OIF:SA:3:85,Europe/Paris,,OIF, +OIF:SP:3:86,1,"Centre Commercial",48.553862,2.429174,0,0,OIF:SA:3:86,Europe/Paris,,OIF, +OIF:SP:3:87,1,"Centre Commercial",48.55406,2.429513,0,0,OIF:SA:3:86,Europe/Paris,,OIF, +OIF:SP:3:88,1,"Les Cèdres",48.559826,2.4349,0,0,OIF:SA:3:88,Europe/Paris,,OIF, +OIF:SP:3:89,1,"Les Cèdres",48.56113,2.434496,0,0,OIF:SA:3:88,Europe/Paris,,OIF, +OIF:SP:3:9,1,"Mairie",48.566121,2.484822,0,0,OIF:SA:10:1207,Europe/Paris,,OIF, +OIF:SP:3:90,1,"Collège Villeroy",48.56519,2.427664,0,0,OIF:SA:3:90,Europe/Paris,,OIF, +OIF:SP:3:91,1,"Les Chatries",48.566395,2.426609,0,0,OIF:SA:3:91,Europe/Paris,,OIF, +OIF:SP:3:92,1,"Les Chatries",48.566629,2.426664,0,0,OIF:SA:3:91,Europe/Paris,,OIF, +OIF:SP:3:93,1,"Champs Fleuris",48.555735,2.436801,0,0,OIF:SA:3:191,Europe/Paris,,OIF, +OIF:SP:3:94,1,"Champs Fleuris",48.554953,2.436827,0,0,OIF:SA:3:191,Europe/Paris,,OIF, +OIF:SP:3:95,1,"Clos Manoir",48.573973,2.438096,0,0,OIF:SA:3:95,Europe/Paris,,OIF, +OIF:SP:3:96,1,"Clos Manoir",48.574108,2.43792,0,0,OIF:SA:3:95,Europe/Paris,,OIF, +OIF:SP:3:99,1,"Cols Verts",48.54624,2.427522,0,0,OIF:SA:3:100,Europe/Paris,,OIF, +OIF:SP:40:10,1,"Marché-Touleuses",49.030615,2.082183,0,0,OIF:SA:40:10,Europe/Paris,,OIF, +OIF:SP:40:100,1,"Les Grouettes",49.031674,2.069058,0,0,OIF:SA:40:100,Europe/Paris,,OIF, +OIF:SP:40:101,1,"Préfecture RER",49.036398,2.080501,0,0,OIF:SA:8738190,Europe/Paris,,OIF, +OIF:SP:40:102,1,"Saint-Christ. RER",49.050046,2.033432,0,0,OIF:SA:8738249,Europe/Paris,,OIF, +OIF:SP:40:103,1,"La Constellation",49.050797,2.031814,0,0,OIF:SA:40:103,Europe/Paris,,OIF, +OIF:SP:40:104,1,"Chemin du Soleil",49.051928,2.028171,0,0,OIF:SA:40:104,Europe/Paris,,OIF, +OIF:SP:40:105,1,"Le Bontemps",49.052623,2.022219,0,0,OIF:SA:40:105,Europe/Paris,,OIF, +OIF:SP:40:106,1,"Le Hazay",49.053104,2.017376,0,0,OIF:SA:40:106,Europe/Paris,,OIF, +OIF:SP:40:107,1,"Les Explorateurs",49.052549,2.008301,0,0,OIF:SA:21:893,Europe/Paris,,OIF, +OIF:SP:40:108,1,"Les Grès",49.048997,2.004127,0,0,OIF:SA:40:108,Europe/Paris,,OIF, +OIF:SP:40:109,1,"Cergy le Ht RER",49.047253,2.010235,0,0,OIF:SA:8738265,Europe/Paris,,OIF, +OIF:SP:40:11,1,"Les Touleuses",49.030753,2.079641,0,0,OIF:SA:40:11,Europe/Paris,,OIF, +OIF:SP:40:110,1,"Rond-Point du Miroir",49.044132,2.00584,0,0,OIF:SA:40:110,Europe/Paris,,OIF, +OIF:SP:40:111,1,"Les Coudraies",49.041738,2.004475,0,0,OIF:SA:40:111,Europe/Paris,,OIF, +OIF:SP:40:112,1,"Place C. Girard",49.034771,2.000542,0,0,OIF:SA:40:112,Europe/Paris,,OIF, +OIF:SP:40:113,1,"Sq. du 19 Mars",49.027831,1.984038,0,0,OIF:SA:40:113,Europe/Paris,,OIF, +OIF:SP:40:114,1,"Croix du Jubilé",49.026735,1.981176,0,0,OIF:SA:40:114,Europe/Paris,,OIF, +OIF:SP:40:115,1,"Le Bontemps",49.052456,2.023519,0,0,OIF:SA:40:105,Europe/Paris,,OIF, +OIF:SP:40:116,1,"Place C. Girard",49.035723,2.000235,0,0,OIF:SA:40:112,Europe/Paris,,OIF, +OIF:SP:40:117,1,"Les Coudraies",49.042521,2.005167,0,0,OIF:SA:40:111,Europe/Paris,,OIF, +OIF:SP:40:118,1,"Rond-Point du Miroir",49.045734,2.006841,0,0,OIF:SA:40:110,Europe/Paris,,OIF, +OIF:SP:40:119,1,"Cergy le Ht RER",49.047262,2.010167,0,0,OIF:SA:8738265,Europe/Paris,,OIF, +OIF:SP:40:12,1,"Chât. Saint-Sylvère",49.030808,2.076005,0,0,OIF:SA:40:12,Europe/Paris,,OIF, +OIF:SP:40:120,1,"Les Grès",49.049582,2.004397,0,0,OIF:SA:40:108,Europe/Paris,,OIF, +OIF:SP:40:121,1,"Les Explorateurs",49.05275,2.009244,0,0,OIF:SA:21:893,Europe/Paris,,OIF, +OIF:SP:40:122,1,"Le Hazay",49.052963,2.018416,0,0,OIF:SA:40:106,Europe/Paris,,OIF, +OIF:SP:40:123,1,"Chemin du Soleil",49.051776,2.028281,0,0,OIF:SA:40:104,Europe/Paris,,OIF, +OIF:SP:40:124,1,"La Constellation",49.051198,2.030772,0,0,OIF:SA:40:103,Europe/Paris,,OIF, +OIF:SP:40:125,1,"Saint-Christ. RER",49.049964,2.033227,0,0,OIF:SA:8738249,Europe/Paris,,OIF, +OIF:SP:40:126,1,"La Croix Lieu",49.030983,2.021777,0,0,OIF:SA:23:622,Europe/Paris,,OIF, +OIF:SP:40:127,1,"La Bussie",49.033271,2.020437,0,0,OIF:SA:23:933,Europe/Paris,,OIF, +OIF:SP:40:128,1,"La Bussie",49.032418,2.02088,0,0,OIF:SA:23:933,Europe/Paris,,OIF, +OIF:SP:40:129,1,"La Croix Lieu",49.030561,2.02193,0,0,OIF:SA:23:622,Europe/Paris,,OIF, +OIF:SP:40:13,1,"Conseil Départe.",49.03192,2.075043,0,0,OIF:SA:40:13,Europe/Paris,,OIF, +OIF:SP:40:130,1,"Saint-Christ. RER",49.049876,2.033925,0,0,OIF:SA:8738249,Europe/Paris,,OIF, +OIF:SP:40:131,1,"Mondétour",49.048,2.031133,0,0,OIF:SA:40:131,Europe/Paris,,OIF, +OIF:SP:40:132,1,"Lycée Saint-Christ.",49.044541,2.031454,0,0,OIF:SA:40:132,Europe/Paris,,OIF, +OIF:SP:40:133,1,"Avenue du Terroir",49.047684,2.016849,0,0,OIF:SA:40:133,Europe/Paris,,OIF, +OIF:SP:40:134,1,"Rond-Point du Golf",49.039594,2.015929,0,0,OIF:SA:23:109,Europe/Paris,,OIF, +OIF:SP:40:135,1,"Boris Vian",49.03558,2.01676,0,0,OIF:SA:23:620,Europe/Paris,,OIF, +OIF:SP:40:136,1,"Auguste Blanqui",49.030245,2.01462,0,0,OIF:SA:40:136,Europe/Paris,,OIF, +OIF:SP:40:137,1,"Le Boulingrin",49.026254,2.017433,0,0,OIF:SA:40:137,Europe/Paris,,OIF, +OIF:SP:40:138,1,"Simone Signoret",49.023997,2.020234,0,0,OIF:SA:40:138,Europe/Paris,,OIF, +OIF:SP:40:139,1,"La Marnière",49.02388,2.02361,0,0,OIF:SA:23:626,Europe/Paris,,OIF, +OIF:SP:40:14,1,"Les Plants",49.033596,2.081212,0,0,OIF:SA:40:14,Europe/Paris,,OIF, +OIF:SP:40:140,1,"Mendès France",49.022829,2.027374,0,0,OIF:SA:40:140,Europe/Paris,,OIF, +OIF:SP:40:141,1,"Georges Brassens",49.020283,2.02631,0,0,OIF:SA:40:141,Europe/Paris,,OIF, +OIF:SP:40:142,1,"Les Valanchards",49.020635,2.023316,0,0,OIF:SA:40:142,Europe/Paris,,OIF, +OIF:SP:40:143,1,"La Siaule",49.02095,2.016878,0,0,OIF:SA:40:143,Europe/Paris,,OIF, +OIF:SP:40:144,1,"Parc Saint-Christ.",49.042049,2.03013,0,0,OIF:SA:40:144,Europe/Paris,,OIF, +OIF:SP:40:145,1,"Les Valanchards",49.020813,2.022618,0,0,OIF:SA:40:142,Europe/Paris,,OIF, +OIF:SP:40:146,1,"Georges Brassens",49.020544,2.026486,0,0,OIF:SA:40:141,Europe/Paris,,OIF, +OIF:SP:40:147,1,"Mendès France",49.023277,2.026647,0,0,OIF:SA:40:140,Europe/Paris,,OIF, +OIF:SP:40:148,1,"La Marnière",49.024099,2.021423,0,0,OIF:SA:23:626,Europe/Paris,,OIF, +OIF:SP:40:149,1,"Simone Signoret",49.024271,2.01873,0,0,OIF:SA:40:138,Europe/Paris,,OIF, +OIF:SP:40:15,1,"Préfecture RER",49.037043,2.079582,0,0,OIF:SA:8738190,Europe/Paris,,OIF, +OIF:SP:40:150,1,"Le Boulingrin",49.026853,2.016527,0,0,OIF:SA:40:137,Europe/Paris,,OIF, +OIF:SP:40:151,1,"Auguste Blanqui",49.031676,2.015486,0,0,OIF:SA:40:136,Europe/Paris,,OIF, +OIF:SP:40:152,1,"Boris Vian",49.036344,2.017056,0,0,OIF:SA:23:620,Europe/Paris,,OIF, +OIF:SP:40:153,1,"Avenue du Terroir",49.047544,2.017998,0,0,OIF:SA:40:133,Europe/Paris,,OIF, +OIF:SP:40:154,1,"Lycée Saint-Christ.",49.045312,2.030657,0,0,OIF:SA:40:132,Europe/Paris,,OIF, +OIF:SP:40:155,1,"Mondétour",49.047029,2.030715,0,0,OIF:SA:40:131,Europe/Paris,,OIF, +OIF:SP:40:156,1,"Parc Saint-Christ.",49.042382,2.030401,0,0,OIF:SA:40:144,Europe/Paris,,OIF, +OIF:SP:40:157,1,"Préfecture RER",49.036066,2.080475,0,0,OIF:SA:8738190,Europe/Paris,,OIF, +OIF:SP:40:158,1,"Marcouville",49.049404,2.081667,0,0,OIF:SA:40:158,Europe/Paris,,OIF, +OIF:SP:40:159,1,"Croix Saint-Siméon",49.063635,2.089063,0,0,OIF:SA:40:159,Europe/Paris,,OIF, +OIF:SP:40:16,1,"Plat. Saint-Martin",49.044182,2.085384,0,0,OIF:SA:40:16,Europe/Paris,,OIF, +OIF:SP:40:160,1,"Normandie",49.061194,2.090278,0,0,OIF:SA:40:160,Europe/Paris,,OIF, +OIF:SP:40:161,1,"Place de la Paix",49.058783,2.089182,0,0,OIF:SA:40:161,Europe/Paris,,OIF, +OIF:SP:40:162,1,"Boblingen",49.061971,2.088114,0,0,OIF:SA:40:162,Europe/Paris,,OIF, +OIF:SP:40:163,1,"Alsace Bretagne",49.062938,2.091077,0,0,OIF:SA:40:163,Europe/Paris,,OIF, +OIF:SP:40:164,1,"Hôpital R. Dubos",49.064095,2.094421,0,0,OIF:SA:40:164,Europe/Paris,,OIF, +OIF:SP:40:165,1,"Les Beurriers",49.058011,2.098456,0,0,OIF:SA:40:165,Europe/Paris,,OIF, +OIF:SP:40:166,1,"Mai. de Retraite",49.060462,2.097406,0,0,OIF:SA:40:166,Europe/Paris,,OIF, +OIF:SP:40:167,1,"Hôpital-Admin.",49.061426,2.093955,0,0,OIF:SA:40:167,Europe/Paris,,OIF, +OIF:SP:40:168,1,"Alsace Bretagne",49.062967,2.091924,0,0,OIF:SA:40:163,Europe/Paris,,OIF, +OIF:SP:40:169,1,"Boblingen",49.061459,2.088157,0,0,OIF:SA:40:162,Europe/Paris,,OIF, +OIF:SP:40:17,1,"Pontoise Gare",49.046166,2.093357,0,0,OIF:SA:8727613,Europe/Paris,,OIF, +OIF:SP:40:170,1,"Place de la Paix",49.058675,2.089278,0,0,OIF:SA:40:161,Europe/Paris,,OIF, +OIF:SP:40:171,1,"Normandie",49.061499,2.090331,0,0,OIF:SA:40:160,Europe/Paris,,OIF, +OIF:SP:40:172,1,"Croix Saint-Siméon",49.063994,2.088911,0,0,OIF:SA:40:159,Europe/Paris,,OIF, +OIF:SP:40:173,1,"Marcouville",49.050005,2.081322,0,0,OIF:SA:40:158,Europe/Paris,,OIF, +OIF:SP:40:174,1,"Préfecture RER",49.036801,2.079515,0,0,OIF:SA:8738190,Europe/Paris,,OIF, +OIF:SP:40:175,1,"Hôpital-Admin.",49.060976,2.093807,0,0,OIF:SA:40:167,Europe/Paris,,OIF, +OIF:SP:40:176,1,"Mai. de Retraite",49.060306,2.095916,0,0,OIF:SA:40:166,Europe/Paris,,OIF, +OIF:SP:40:177,1,"Paul Cézanne",49.058698,2.095869,0,0,OIF:SA:40:177,Europe/Paris,,OIF, +OIF:SP:40:178,1,"Pontoise Gare",49.047232,2.09595,0,0,OIF:SA:8727613,Europe/Paris,,OIF, +OIF:SP:40:179,1,"Place Notre-Dame",49.049474,2.09382,0,0,OIF:SA:40:179,Europe/Paris,,OIF, +OIF:SP:40:18,1,"Les Croizettes",49.045767,1.999186,0,0,OIF:SA:40:18,Europe/Paris,,OIF, +OIF:SP:40:180,1,"Les Lavandières",49.049681,2.089499,0,0,OIF:SA:40:180,Europe/Paris,,OIF, +OIF:SP:40:181,1,"E. de Martimprey",49.049338,2.084675,0,0,OIF:SA:40:181,Europe/Paris,,OIF, +OIF:SP:40:182,1,"M.L de Tassigny",49.04804,2.082795,0,0,OIF:SA:40:182,Europe/Paris,,OIF, +OIF:SP:40:183,1,"Ampère",49.048212,2.078884,0,0,OIF:SA:40:183,Europe/Paris,,OIF, +OIF:SP:40:184,1,"Marcouville",49.049282,2.079398,0,0,OIF:SA:40:158,Europe/Paris,,OIF, +OIF:SP:40:185,1,"Falaise",49.050638,2.074989,0,0,OIF:SA:40:185,Europe/Paris,,OIF, +OIF:SP:40:186,1,"Beaux Soleils",49.052275,2.071631,0,0,OIF:SA:40:186,Europe/Paris,,OIF, +OIF:SP:40:187,1,"Avenue des Arpents",49.052406,2.069553,0,0,OIF:SA:40:187,Europe/Paris,,OIF, +OIF:SP:40:188,1,"Jules César",49.05262,2.06504,0,0,OIF:SA:40:188,Europe/Paris,,OIF, +OIF:SP:40:189,1,"J.C/G.de Gaulle",49.053459,2.062465,0,0,OIF:SA:40:189,Europe/Paris,,OIF, +OIF:SP:40:19,1,"Rond-Point du Miroir",49.04501,2.005151,0,0,OIF:SA:40:110,Europe/Paris,,OIF, +OIF:SP:40:190,1,"Rue de Gency",49.055071,2.060105,0,0,OIF:SA:40:190,Europe/Paris,,OIF, +OIF:SP:40:191,1,"La Ravinière",49.05717,2.06641,0,0,OIF:SA:40:191,Europe/Paris,,OIF, +OIF:SP:40:192,1,"Les Pâtis",49.059944,2.069076,0,0,OIF:SA:40:192,Europe/Paris,,OIF, +OIF:SP:40:193,1,"Les Pâtis",49.059079,2.068151,0,0,OIF:SA:40:192,Europe/Paris,,OIF, +OIF:SP:40:194,1,"La Ravinière",49.055971,2.064489,0,0,OIF:SA:40:191,Europe/Paris,,OIF, +OIF:SP:40:195,1,"Rue de Gency",49.055171,2.060692,0,0,OIF:SA:40:190,Europe/Paris,,OIF, +OIF:SP:40:196,1,"Jules César",49.053066,2.063615,0,0,OIF:SA:40:188,Europe/Paris,,OIF, +OIF:SP:40:197,1,"Avenue des Arpents",49.05228,2.069704,0,0,OIF:SA:40:187,Europe/Paris,,OIF, +OIF:SP:40:198,1,"Beaux Soleils",49.051847,2.072727,0,0,OIF:SA:40:186,Europe/Paris,,OIF, +OIF:SP:40:199,1,"Falaise",49.050305,2.074745,0,0,OIF:SA:40:185,Europe/Paris,,OIF, +OIF:SP:40:2,1,"Pontoise Gare",49.046301,2.093548,0,0,OIF:SA:8727613,Europe/Paris,,OIF, +OIF:SP:40:20,1,"Fief à Cavan",49.047555,2.008825,0,0,OIF:SA:40:20,Europe/Paris,,OIF, +OIF:SP:40:200,1,"Ampère",49.048426,2.078131,0,0,OIF:SA:40:183,Europe/Paris,,OIF, +OIF:SP:40:201,1,"M.L de Tassigny",49.048716,2.083803,0,0,OIF:SA:40:182,Europe/Paris,,OIF, +OIF:SP:40:202,1,"E. de Martimprey",49.0496,2.085084,0,0,OIF:SA:40:181,Europe/Paris,,OIF, +OIF:SP:40:203,1,"Les Lavandières",49.04959,2.089226,0,0,OIF:SA:40:180,Europe/Paris,,OIF, +OIF:SP:40:204,1,"Place Notre-Dame",49.049138,2.092127,0,0,OIF:SA:40:179,Europe/Paris,,OIF, +OIF:SP:40:205,1,"Pontoise Gare",49.047159,2.095718,0,0,OIF:SA:8727613,Europe/Paris,,OIF, +OIF:SP:40:206,1,"Préfecture RER",49.036757,2.079994,0,0,OIF:SA:8738190,Europe/Paris,,OIF, +OIF:SP:40:207,1,"J.C/G.de Gaulle",49.05436,2.063704,0,0,OIF:SA:40:189,Europe/Paris,,OIF, +OIF:SP:40:208,1,"Sq. des Artistes",49.061337,2.065445,0,0,OIF:SA:40:208,Europe/Paris,,OIF, +OIF:SP:40:209,1,"Osny Gare SNCF",49.063833,2.056448,0,0,OIF:SA:8738114,Europe/Paris,,OIF, +OIF:SP:40:21,1,"Cergy le Ht RER",49.047407,2.010822,0,0,OIF:SA:8738265,Europe/Paris,,OIF, +OIF:SP:40:210,1,"Le Vauvarois",49.062103,2.050591,0,0,OIF:SA:40:210,Europe/Paris,,OIF, +OIF:SP:40:211,1,"La Bruyère",49.059007,2.048816,0,0,OIF:SA:40:211,Europe/Paris,,OIF, +OIF:SP:40:212,1,"Plai. des Sports",49.054365,2.046573,0,0,OIF:SA:40:212,Europe/Paris,,OIF, +OIF:SP:40:213,1,"Petit Albi",49.05416,2.04347,0,0,OIF:SA:40:213,Europe/Paris,,OIF, +OIF:SP:40:214,1,"Les Genottes",49.054934,2.040335,0,0,OIF:SA:40:214,Europe/Paris,,OIF, +OIF:SP:40:215,1,"Les Cascades",49.055533,2.035696,0,0,OIF:SA:40:215,Europe/Paris,,OIF, +OIF:SP:40:216,1,"P. de l'Horloge",49.054626,2.032489,0,0,OIF:SA:40:216,Europe/Paris,,OIF, +OIF:SP:40:217,1,"La Constellation",49.051516,2.031946,0,0,OIF:SA:40:103,Europe/Paris,,OIF, +OIF:SP:40:218,1,"Saint-Christ. RER",49.049817,2.03547,0,0,OIF:SA:8738249,Europe/Paris,,OIF, +OIF:SP:40:219,1,"Saint-Christ. RER",49.049915,2.034786,0,0,OIF:SA:8738249,Europe/Paris,,OIF, +OIF:SP:40:22,1,"Pontoise Gare",49.046409,2.093233,0,0,OIF:SA:8727613,Europe/Paris,,OIF, +OIF:SP:40:220,1,"P. de l'Horloge",49.054995,2.032596,0,0,OIF:SA:40:216,Europe/Paris,,OIF, +OIF:SP:40:221,1,"Les Cascades",49.05548,2.035847,0,0,OIF:SA:40:215,Europe/Paris,,OIF, +OIF:SP:40:222,1,"Les Genottes",49.054898,2.040349,0,0,OIF:SA:40:214,Europe/Paris,,OIF, +OIF:SP:40:223,1,"Petit Albi",49.054029,2.045002,0,0,OIF:SA:40:213,Europe/Paris,,OIF, +OIF:SP:40:224,1,"Plai. des Sports",49.054599,2.046872,0,0,OIF:SA:40:212,Europe/Paris,,OIF, +OIF:SP:40:225,1,"La Bruyère",49.05843,2.04815,0,0,OIF:SA:40:211,Europe/Paris,,OIF, +OIF:SP:40:226,1,"Le Vauvarois",49.061716,2.05062,0,0,OIF:SA:40:210,Europe/Paris,,OIF, +OIF:SP:40:227,1,"Osny Gare SNCF",49.062353,2.057809,0,0,OIF:SA:8738114,Europe/Paris,,OIF, +OIF:SP:40:228,1,"Sq. des Artistes",49.061159,2.066102,0,0,OIF:SA:40:208,Europe/Paris,,OIF, +OIF:SP:40:229,1,"La Ravinière",49.055468,2.064683,0,0,OIF:SA:40:191,Europe/Paris,,OIF, +OIF:SP:40:23,1,"Marjoberts",49.041165,2.073998,0,0,OIF:SA:40:23,Europe/Paris,,OIF, +OIF:SP:40:230,1,"J.C/G.de Gaulle",49.05409,2.063487,0,0,OIF:SA:40:189,Europe/Paris,,OIF, +OIF:SP:40:231,1,"Pontoise Gare",49.046355,2.093288,0,0,OIF:SA:8727613,Europe/Paris,,OIF, +OIF:SP:40:232,1,"Avenue 1er Dragon",49.042044,2.090206,0,0,OIF:SA:40:232,Europe/Paris,,OIF, +OIF:SP:40:233,1,"Lycée Kastler",49.037011,2.085459,0,0,OIF:SA:40:233,Europe/Paris,,OIF, +OIF:SP:40:234,1,"Chemin Dupuis",49.036403,2.070373,0,0,OIF:SA:40:234,Europe/Paris,,OIF, +OIF:SP:40:235,1,"La Croix Petit",49.036669,2.068664,0,0,OIF:SA:40:235,Europe/Paris,,OIF, +OIF:SP:40:236,1,"Le Ponceau",49.038402,2.068135,0,0,OIF:SA:40:236,Europe/Paris,,OIF, +OIF:SP:40:237,1,"Les Chênes",49.040543,2.069313,0,0,OIF:SA:40:237,Europe/Paris,,OIF, +OIF:SP:40:238,1,"Linandes Vertes",49.042553,2.067908,0,0,OIF:SA:40:238,Europe/Paris,,OIF, +OIF:SP:40:239,1,"Le Collège",49.04335,2.062491,0,0,OIF:SA:40:239,Europe/Paris,,OIF, +OIF:SP:40:24,1,"Cité Artisanale",49.044939,2.070083,0,0,OIF:SA:40:24,Europe/Paris,,OIF, +OIF:SP:40:240,1,"Clos Couturier",49.043815,2.057704,0,0,OIF:SA:40:240,Europe/Paris,,OIF, +OIF:SP:40:241,1,"La Justice",49.044536,2.054844,0,0,OIF:SA:40:241,Europe/Paris,,OIF, +OIF:SP:40:242,1,"La Sébille",49.046865,2.051837,0,0,OIF:SA:40:242,Europe/Paris,,OIF, +OIF:SP:40:243,1,"R. Chemin de Fer",49.048149,2.036751,0,0,OIF:SA:23:107,Europe/Paris,,OIF, +OIF:SP:40:244,1,"Saint-Christ. RER",49.049879,2.035087,0,0,OIF:SA:8738249,Europe/Paris,,OIF, +OIF:SP:40:245,1,"Moulin à Vent",49.054089,2.026175,0,0,OIF:SA:40:245,Europe/Paris,,OIF, +OIF:SP:40:246,1,"Puiseux",49.054912,2.01783,0,0,OIF:SA:40:246,Europe/Paris,,OIF, +OIF:SP:40:247,1,"Jules Verne",49.054193,2.014662,0,0,OIF:SA:40:247,Europe/Paris,,OIF, +OIF:SP:40:248,1,"Puiseux",49.054768,2.017844,0,0,OIF:SA:40:246,Europe/Paris,,OIF, +OIF:SP:40:249,1,"Moulin à Vent",49.053911,2.026778,0,0,OIF:SA:40:245,Europe/Paris,,OIF, +OIF:SP:40:25,1,"Linandes Oranges",49.046752,2.065084,0,0,OIF:SA:40:25,Europe/Paris,,OIF, +OIF:SP:40:250,1,"Saint-Christ. RER",49.049754,2.035334,0,0,OIF:SA:8738249,Europe/Paris,,OIF, +OIF:SP:40:251,1,"R. Chemin de Fer",49.047448,2.036536,0,0,OIF:SA:23:107,Europe/Paris,,OIF, +OIF:SP:40:252,1,"La Justice",49.044366,2.055309,0,0,OIF:SA:40:241,Europe/Paris,,OIF, +OIF:SP:40:253,1,"Clos Couturier",49.043583,2.058375,0,0,OIF:SA:40:240,Europe/Paris,,OIF, +OIF:SP:40:254,1,"Le Collège",49.04345,2.063024,0,0,OIF:SA:40:239,Europe/Paris,,OIF, +OIF:SP:40:255,1,"Linandes Vertes",49.042276,2.068347,0,0,OIF:SA:40:238,Europe/Paris,,OIF, +OIF:SP:40:256,1,"Les Chênes",49.040274,2.069315,0,0,OIF:SA:40:237,Europe/Paris,,OIF, +OIF:SP:40:257,1,"Le Ponceau",49.038105,2.068096,0,0,OIF:SA:40:236,Europe/Paris,,OIF, +OIF:SP:40:258,1,"La Croix Petit",49.036579,2.068678,0,0,OIF:SA:40:235,Europe/Paris,,OIF, +OIF:SP:40:259,1,"Chemin Dupuis",49.036936,2.071737,0,0,OIF:SA:40:234,Europe/Paris,,OIF, +OIF:SP:40:26,1,"Les Heuruelles",49.047367,2.05506,0,0,OIF:SA:40:26,Europe/Paris,,OIF, +OIF:SP:40:260,1,"Préfecture RER",49.036291,2.080529,0,0,OIF:SA:8738190,Europe/Paris,,OIF, +OIF:SP:40:261,1,"Lycée Kastler",49.036624,2.085311,0,0,OIF:SA:40:233,Europe/Paris,,OIF, +OIF:SP:40:262,1,"Avenue 1er Dragon",49.043016,2.09072,0,0,OIF:SA:40:232,Europe/Paris,,OIF, +OIF:SP:40:263,1,"La Marnière",49.024514,2.022363,0,0,OIF:SA:23:626,Europe/Paris,,OIF, +OIF:SP:40:264,1,"Les Dames Gilles",49.029504,2.033484,0,0,OIF:SA:40:264,Europe/Paris,,OIF, +OIF:SP:40:265,1,"Les Doucerons",49.026609,2.036493,0,0,OIF:SA:40:265,Europe/Paris,,OIF, +OIF:SP:40:266,1,"Le Lavoir",49.021786,2.041222,0,0,OIF:SA:40:266,Europe/Paris,,OIF, +OIF:SP:40:267,1,"La Vallée",49.019329,2.043463,0,0,OIF:SA:40:267,Europe/Paris,,OIF, +OIF:SP:40:268,1,"Église",49.01596,2.047294,0,0,OIF:SA:40:268,Europe/Paris,,OIF, +OIF:SP:40:269,1,"Croix Saint-Jacques",49.012379,2.053229,0,0,OIF:SA:40:269,Europe/Paris,,OIF, +OIF:SP:40:27,1,"La Sébille",49.047753,2.051244,0,0,OIF:SA:40:242,Europe/Paris,,OIF, +OIF:SP:40:270,1,"Croix Saint-Jacques",49.012451,2.053174,0,0,OIF:SA:40:269,Europe/Paris,,OIF, +OIF:SP:40:271,1,"Église",49.01604,2.047266,0,0,OIF:SA:40:268,Europe/Paris,,OIF, +OIF:SP:40:272,1,"La Vallée",49.019526,2.042943,0,0,OIF:SA:40:267,Europe/Paris,,OIF, +OIF:SP:40:273,1,"Le Lavoir",49.022792,2.040888,0,0,OIF:SA:40:266,Europe/Paris,,OIF, +OIF:SP:40:274,1,"Les Doucerons",49.026806,2.036315,0,0,OIF:SA:40:265,Europe/Paris,,OIF, +OIF:SP:40:275,1,"Les Dames Gilles",49.030222,2.033398,0,0,OIF:SA:40:264,Europe/Paris,,OIF, +OIF:SP:40:276,1,"Préfecture RER",49.036147,2.080776,0,0,OIF:SA:8738190,Europe/Paris,,OIF, +OIF:SP:40:277,1,"Brûloir-Hautil",49.030246,2.069735,0,0,OIF:SA:40:277,Europe/Paris,,OIF, +OIF:SP:40:278,1,"Île-de-Loisirs",49.022712,2.056179,0,0,OIF:SA:40:278,Europe/Paris,,OIF, +OIF:SP:40:279,1,"Le Stade",49.017843,2.053035,0,0,OIF:SA:40:279,Europe/Paris,,OIF, +OIF:SP:40:28,1,"Rond-Point Haut Gency",49.048243,2.045664,0,0,OIF:SA:23:106,Europe/Paris,,OIF, +OIF:SP:40:280,1,"Le Pont",49.014878,2.057423,0,0,OIF:SA:40:280,Europe/Paris,,OIF, +OIF:SP:40:281,1,"Croix Saint-Jacques",49.011902,2.05274,0,0,OIF:SA:40:269,Europe/Paris,,OIF, +OIF:SP:40:282,1,"Vignes Blanches",49.011139,2.049561,0,0,OIF:SA:40:282,Europe/Paris,,OIF, +OIF:SP:40:283,1,"Les Jouannes",49.010861,2.045902,0,0,OIF:SA:23:236,Europe/Paris,,OIF, +OIF:SP:40:284,1,"Les Éguérets",49.012185,2.04334,0,0,OIF:SA:40:284,Europe/Paris,,OIF, +OIF:SP:40:285,1,"Cornouillers",49.013959,2.041116,0,0,OIF:SA:40:285,Europe/Paris,,OIF, +OIF:SP:40:286,1,"Le Temps Perdu",49.012669,2.035645,0,0,OIF:SA:40:286,Europe/Paris,,OIF, +OIF:SP:40:287,1,"Le Noyer",49.011221,2.031883,0,0,OIF:SA:23:232,Europe/Paris,,OIF, +OIF:SP:40:288,1,"Les Tremblays",49.013833,2.027155,0,0,OIF:SA:40:288,Europe/Paris,,OIF, +OIF:SP:40:289,1,"Mendès France",49.02319,2.027905,0,0,OIF:SA:40:140,Europe/Paris,,OIF, +OIF:SP:40:29,1,"Martelet",49.045937,2.039594,0,0,OIF:SA:23:113,Europe/Paris,,OIF, +OIF:SP:40:290,1,"Les Toupets",49.024352,2.029141,0,0,OIF:SA:40:290,Europe/Paris,,OIF, +OIF:SP:40:291,1,"Henri Guillaumet",49.008055,2.044811,0,0,OIF:SA:40:291,Europe/Paris,,OIF, +OIF:SP:40:292,1,"Les Bruzacques",49.006318,2.043769,0,0,OIF:SA:40:292,Europe/Paris,,OIF, +OIF:SP:40:293,1,"Souhaits",49.006212,2.041065,0,0,OIF:SA:40:293,Europe/Paris,,OIF, +OIF:SP:40:294,1,"La Hayette",49.00587,2.037119,0,0,OIF:SA:40:294,Europe/Paris,,OIF, +OIF:SP:40:295,1,"Denis Papin",49.007621,2.033284,0,0,OIF:SA:40:295,Europe/Paris,,OIF, +OIF:SP:40:296,1,"Les Merisiers",49.010278,2.028324,0,0,OIF:SA:40:296,Europe/Paris,,OIF, +OIF:SP:40:297,1,"Gabriel Faure",49.009336,2.025515,0,0,OIF:SA:40:297,Europe/Paris,,OIF, +OIF:SP:40:298,1,"Écancourt",49.006421,2.017391,0,0,OIF:SA:40:298,Europe/Paris,,OIF, +OIF:SP:40:299,1,"Les Forbœufs",49.008652,2.035505,0,0,OIF:SA:40:299,Europe/Paris,,OIF, +OIF:SP:40:3,1,"Plat. Saint-Martin",49.043442,2.084061,0,0,OIF:SA:40:16,Europe/Paris,,OIF, +OIF:SP:40:30,1,"Rond-Point du Tilleul",49.042953,2.032393,0,0,OIF:SA:40:30,Europe/Paris,,OIF, +OIF:SP:40:300,1,"Théâtre de Jouy",49.010471,2.040617,0,0,OIF:SA:40:300,Europe/Paris,,OIF, +OIF:SP:40:301,1,"Les Tremblays",49.013027,2.028034,0,0,OIF:SA:40:288,Europe/Paris,,OIF, +OIF:SP:40:302,1,"Le Noyer",49.011294,2.032252,0,0,OIF:SA:23:232,Europe/Paris,,OIF, +OIF:SP:40:303,1,"Le Temps Perdu",49.012841,2.036191,0,0,OIF:SA:40:286,Europe/Paris,,OIF, +OIF:SP:40:304,1,"Cornouillers",49.013978,2.041553,0,0,OIF:SA:40:285,Europe/Paris,,OIF, +OIF:SP:40:305,1,"Les Éguérets",49.011843,2.043423,0,0,OIF:SA:40:284,Europe/Paris,,OIF, +OIF:SP:40:306,1,"Les Jouannes",49.010765,2.046995,0,0,OIF:SA:23:236,Europe/Paris,,OIF, +OIF:SP:40:307,1,"Vignes Blanches",49.011232,2.050859,0,0,OIF:SA:40:282,Europe/Paris,,OIF, +OIF:SP:40:308,1,"Croix Saint-Jacques",49.01184,2.053164,0,0,OIF:SA:40:269,Europe/Paris,,OIF, +OIF:SP:40:309,1,"Le Pont",49.015067,2.057149,0,0,OIF:SA:40:280,Europe/Paris,,OIF, +OIF:SP:40:31,1,"Rond-Point du Cèdre",49.043725,2.028479,0,0,OIF:SA:40:31,Europe/Paris,,OIF, +OIF:SP:40:310,1,"Le Stade",49.018731,2.05232,0,0,OIF:SA:40:279,Europe/Paris,,OIF, +OIF:SP:40:311,1,"Île-de-Loisirs",49.02244,2.055429,0,0,OIF:SA:40:278,Europe/Paris,,OIF, +OIF:SP:40:312,1,"Brûloir-Hautil",49.030275,2.07035,0,0,OIF:SA:40:277,Europe/Paris,,OIF, +OIF:SP:40:313,1,"Théâtre de Jouy",49.010296,2.038897,0,0,OIF:SA:40:300,Europe/Paris,,OIF, +OIF:SP:40:314,1,"Les Forbœufs",49.007393,2.035485,0,0,OIF:SA:40:299,Europe/Paris,,OIF, +OIF:SP:40:315,1,"La Hayette",49.005962,2.038143,0,0,OIF:SA:40:294,Europe/Paris,,OIF, +OIF:SP:40:316,1,"Souhaits",49.006176,2.040778,0,0,OIF:SA:40:293,Europe/Paris,,OIF, +OIF:SP:40:317,1,"Les Bruzacques",49.006319,2.044179,0,0,OIF:SA:40:292,Europe/Paris,,OIF, +OIF:SP:40:318,1,"Henri Guillaumet",49.008378,2.044877,0,0,OIF:SA:40:291,Europe/Paris,,OIF, +OIF:SP:40:319,1,"Gabriel Faure",49.009264,2.025447,0,0,OIF:SA:40:297,Europe/Paris,,OIF, +OIF:SP:40:32,1,"Avenue de l'Embellie",49.045372,2.025858,0,0,OIF:SA:40:32,Europe/Paris,,OIF, +OIF:SP:40:320,1,"Les Merisiers",49.010577,2.029538,0,0,OIF:SA:40:296,Europe/Paris,,OIF, +OIF:SP:40:321,1,"Denis Papin",49.007109,2.033205,0,0,OIF:SA:40:295,Europe/Paris,,OIF, +OIF:SP:40:322,1,"Préfecture RER",49.036075,2.080503,0,0,OIF:SA:8738190,Europe/Paris,,OIF, +OIF:SP:40:323,1,"Avenue de l'Est",49.0315,2.088575,0,0,OIF:SA:40:323,Europe/Paris,,OIF, +OIF:SP:40:324,1,"Ecluse",49.026488,2.098492,0,0,OIF:SA:40:324,Europe/Paris,,OIF, +OIF:SP:40:325,1,"La Danne",49.025092,2.101409,0,0,OIF:SA:40:325,Europe/Paris,,OIF, +OIF:SP:40:326,1,"Ch. de Gaulle",49.02389,2.107209,0,0,OIF:SA:40:326,Europe/Paris,,OIF, +OIF:SP:40:327,1,"Route Pierrelaye",49.021836,2.109336,0,0,OIF:SA:40:327,Europe/Paris,,OIF, +OIF:SP:40:328,1,"Les Dix Arpents",49.019679,2.108935,0,0,OIF:SA:40:328,Europe/Paris,,OIF, +OIF:SP:40:329,1,"Le Grillon",49.018921,2.112368,0,0,OIF:SA:40:329,Europe/Paris,,OIF, +OIF:SP:40:33,1,"Rond-Point du Chêne",49.046436,2.024075,0,0,OIF:SA:23:939,Europe/Paris,,OIF, +OIF:SP:40:330,1,"Roger Salengro",49.016571,2.109933,0,0,OIF:SA:40:330,Europe/Paris,,OIF, +OIF:SP:40:331,1,"Parc Urbain",49.017274,2.106104,0,0,OIF:SA:40:331,Europe/Paris,,OIF, +OIF:SP:40:332,1,"Les Rayes",49.018653,2.103557,0,0,OIF:SA:40:332,Europe/Paris,,OIF, +OIF:SP:40:333,1,"La Challe",49.01818,2.100744,0,0,OIF:SA:40:333,Europe/Paris,,OIF, +OIF:SP:40:334,1,"Pincevents",49.017912,2.09692,0,0,OIF:SA:40:334,Europe/Paris,,OIF, +OIF:SP:40:335,1,"Éragny Gare SNCF",49.01771,2.090554,0,0,OIF:SA:8738141,Europe/Paris,,OIF, +OIF:SP:40:336,1,"Neuville RER",49.015065,2.080429,0,0,OIF:SA:8733448,Europe/Paris,,OIF, +OIF:SP:40:337,1,"Al. du sous-Bois",49.027905,2.106043,0,0,OIF:SA:40:337,Europe/Paris,,OIF, +OIF:SP:40:338,1,"Le Gros Chêne",49.025666,2.110467,0,0,OIF:SA:40:338,Europe/Paris,,OIF, +OIF:SP:40:339,1,"F. Châtelain",49.02416,2.11199,0,0,OIF:SA:40:339,Europe/Paris,,OIF, +OIF:SP:40:34,1,"Les Essarts",49.0436,2.018365,0,0,OIF:SA:40:34,Europe/Paris,,OIF, +OIF:SP:40:340,1,"Ecluse",49.02726,2.097929,0,0,OIF:SA:40:324,Europe/Paris,,OIF, +OIF:SP:40:341,1,"Miramène",49.02975,2.098546,0,0,OIF:SA:40:341,Europe/Paris,,OIF, +OIF:SP:40:342,1,"Art-de-Vivre",49.031957,2.101501,0,0,OIF:SA:40:342,Europe/Paris,,OIF, +OIF:SP:40:343,1,"Neuville RER",49.014767,2.079857,0,0,OIF:SA:8733448,Europe/Paris,,OIF, +OIF:SP:40:344,1,"Éragny Gare SNCF",49.017935,2.090799,0,0,OIF:SA:8738141,Europe/Paris,,OIF, +OIF:SP:40:345,1,"Pincevents",49.017598,2.097358,0,0,OIF:SA:40:334,Europe/Paris,,OIF, +OIF:SP:40:346,1,"La Challe",49.018054,2.100581,0,0,OIF:SA:40:333,Europe/Paris,,OIF, +OIF:SP:40:347,1,"Les Rayes",49.018348,2.103954,0,0,OIF:SA:40:332,Europe/Paris,,OIF, +OIF:SP:40:348,1,"Parc Urbain",49.017265,2.106049,0,0,OIF:SA:40:331,Europe/Paris,,OIF, +OIF:SP:40:349,1,"Roger Salengro",49.01658,2.109782,0,0,OIF:SA:40:330,Europe/Paris,,OIF, +OIF:SP:40:35,1,"Rond-Point du Golf",49.040796,2.014951,0,0,OIF:SA:23:109,Europe/Paris,,OIF, +OIF:SP:40:350,1,"Le Grillon",49.018948,2.112245,0,0,OIF:SA:40:329,Europe/Paris,,OIF, +OIF:SP:40:351,1,"Les Dix Arpents",49.01992,2.108442,0,0,OIF:SA:40:328,Europe/Paris,,OIF, +OIF:SP:40:352,1,"Route Pierrelaye",49.022413,2.110139,0,0,OIF:SA:40:327,Europe/Paris,,OIF, +OIF:SP:40:353,1,"Ch. de Gaulle",49.024015,2.106702,0,0,OIF:SA:40:326,Europe/Paris,,OIF, +OIF:SP:40:354,1,"La Danne",49.024726,2.102832,0,0,OIF:SA:40:325,Europe/Paris,,OIF, +OIF:SP:40:355,1,"Ecluse",49.027348,2.097013,0,0,OIF:SA:40:324,Europe/Paris,,OIF, +OIF:SP:40:356,1,"Avenue de l'Est",49.031644,2.088697,0,0,OIF:SA:40:323,Europe/Paris,,OIF, +OIF:SP:40:357,1,"Les Larris",49.032975,2.089046,0,0,OIF:SA:40:357,Europe/Paris,,OIF, +OIF:SP:40:358,1,"Palette",49.033735,2.087115,0,0,OIF:SA:40:358,Europe/Paris,,OIF, +OIF:SP:40:359,1,"Oise-Hautil",49.034401,2.083736,0,0,OIF:SA:40:359,Europe/Paris,,OIF, +OIF:SP:40:36,1,"L'Orangerie",49.044476,2.010253,0,0,OIF:SA:40:36,Europe/Paris,,OIF, +OIF:SP:40:360,1,"F. Châtelain",49.02478,2.112028,0,0,OIF:SA:40:339,Europe/Paris,,OIF, +OIF:SP:40:361,1,"Le Gros Chêne",49.025926,2.110151,0,0,OIF:SA:40:338,Europe/Paris,,OIF, +OIF:SP:40:362,1,"Al. du sous-Bois",49.028012,2.105728,0,0,OIF:SA:40:337,Europe/Paris,,OIF, +OIF:SP:40:363,1,"Art-de-Vivre",49.032174,2.101678,0,0,OIF:SA:40:342,Europe/Paris,,OIF, +OIF:SP:40:364,1,"Miramène",49.030811,2.098978,0,0,OIF:SA:40:341,Europe/Paris,,OIF, +OIF:SP:40:365,1,"Pontoise Gare",49.046292,2.093384,0,0,OIF:SA:8727613,Europe/Paris,,OIF, +OIF:SP:40:366,1,"Préfecture RER",49.036578,2.080364,0,0,OIF:SA:8738190,Europe/Paris,,OIF, +OIF:SP:40:367,1,"Jules César",49.036453,2.1121,0,0,OIF:SA:40:367,Europe/Paris,,OIF, +OIF:SP:40:368,1,"Dauphiné",49.034203,2.110374,0,0,OIF:SA:40:368,Europe/Paris,,OIF, +OIF:SP:40:369,1,"Aquitaine",49.034735,2.106477,0,0,OIF:SA:40:369,Europe/Paris,,OIF, +OIF:SP:40:37,1,"Cergy le Ht RER",49.047443,2.010631,0,0,OIF:SA:8738265,Europe/Paris,,OIF, +OIF:SP:40:370,1,"Rue du Parc",49.037795,2.104454,0,0,OIF:SA:40:370,Europe/Paris,,OIF, +OIF:SP:40:371,1,"Verdun",49.040456,2.104839,0,0,OIF:SA:40:371,Europe/Paris,,OIF, +OIF:SP:40:372,1,"Mairie",49.04499,2.107539,0,0,OIF:SA:40:372,Europe/Paris,,OIF, +OIF:SP:40:373,1,"La Poste",49.046668,2.106246,0,0,OIF:SA:40:373,Europe/Paris,,OIF, +OIF:SP:40:374,1,"Pradine",49.048697,2.109969,0,0,OIF:SA:40:374,Europe/Paris,,OIF, +OIF:SP:40:375,1,"Epluches",49.052699,2.116364,0,0,OIF:SA:40:375,Europe/Paris,,OIF, +OIF:SP:40:376,1,"Henri Becquerel",49.05627,2.123335,0,0,OIF:SA:40:376,Europe/Paris,,OIF, +OIF:SP:40:377,1,"La Chapelle",49.059692,2.127587,0,0,OIF:SA:40:377,Europe/Paris,,OIF, +OIF:SP:40:378,1,"Le Clos Borgne",49.063938,2.135474,0,0,OIF:SA:40:378,Europe/Paris,,OIF, +OIF:SP:40:379,1,"La Tréate",49.062837,2.143478,0,0,OIF:SA:40:379,Europe/Paris,,OIF, +OIF:SP:40:38,1,"Fief à Cavan",49.047183,2.007802,0,0,OIF:SA:40:38,Europe/Paris,,OIF, +OIF:SP:40:380,1,"Fond de Vaux",49.057135,2.145933,0,0,OIF:SA:40:380,Europe/Paris,,OIF, +OIF:SP:40:381,1,"Res. de Vaux",49.057945,2.158838,0,0,OIF:SA:40:381,Europe/Paris,,OIF, +OIF:SP:40:382,1,"La Bonneville",49.058851,2.163607,0,0,OIF:SA:40:382,Europe/Paris,,OIF, +OIF:SP:40:383,1,"Les Roches",49.060252,2.169195,0,0,OIF:SA:40:383,Europe/Paris,,OIF, +OIF:SP:40:384,1,"Molière",49.061725,2.175316,0,0,OIF:SA:40:384,Europe/Paris,,OIF, +OIF:SP:40:385,1,"Thérèse Lethias",49.062965,2.18215,0,0,OIF:SA:40:385,Europe/Paris,,OIF, +OIF:SP:40:386,1,"Mairie",49.063528,2.18636,0,0,OIF:SA:40:386,Europe/Paris,,OIF, +OIF:SP:40:387,1,"Camille Plaquet",49.058409,2.189191,0,0,OIF:SA:40:387,Europe/Paris,,OIF, +OIF:SP:40:388,1,"Méry Gare SNCF",49.057539,2.190616,0,0,OIF:SA:8727666,Europe/Paris,,OIF, +OIF:SP:40:389,1,"Camille Plaquet",49.058804,2.188821,0,0,OIF:SA:40:387,Europe/Paris,,OIF, +OIF:SP:40:39,1,"Rond-Point du Miroir",49.045135,2.004603,0,0,OIF:SA:40:110,Europe/Paris,,OIF, +OIF:SP:40:390,1,"Mairie",49.063402,2.186579,0,0,OIF:SA:40:386,Europe/Paris,,OIF, +OIF:SP:40:391,1,"Thérèse Lethias",49.063,2.181616,0,0,OIF:SA:40:385,Europe/Paris,,OIF, +OIF:SP:40:392,1,"Molière",49.061635,2.174865,0,0,OIF:SA:40:384,Europe/Paris,,OIF, +OIF:SP:40:393,1,"Les Roches",49.060261,2.169058,0,0,OIF:SA:40:383,Europe/Paris,,OIF, +OIF:SP:40:394,1,"La Bonneville",49.058986,2.163552,0,0,OIF:SA:40:382,Europe/Paris,,OIF, +OIF:SP:40:395,1,"Res. de Vaux",49.058116,2.158591,0,0,OIF:SA:40:381,Europe/Paris,,OIF, +OIF:SP:40:396,1,"Fond de Vaux",49.057638,2.145795,0,0,OIF:SA:40:380,Europe/Paris,,OIF, +OIF:SP:40:397,1,"La Tréate",49.062828,2.143547,0,0,OIF:SA:40:379,Europe/Paris,,OIF, +OIF:SP:40:398,1,"Le Clos Borgne",49.063964,2.134941,0,0,OIF:SA:40:378,Europe/Paris,,OIF, +OIF:SP:40:399,1,"La Chapelle",49.059755,2.127505,0,0,OIF:SA:40:377,Europe/Paris,,OIF, +OIF:SP:40:4,1,"Préfecture RER",49.036272,2.080433,0,0,OIF:SA:8738190,Europe/Paris,,OIF, +OIF:SP:40:40,1,"Cergy le Ht RER",49.047325,2.010317,0,0,OIF:SA:8738265,Europe/Paris,,OIF, +OIF:SP:40:400,1,"Henri Becquerel",49.056026,2.122899,0,0,OIF:SA:40:376,Europe/Paris,,OIF, +OIF:SP:40:401,1,"Epluches",49.052517,2.115366,0,0,OIF:SA:40:375,Europe/Paris,,OIF, +OIF:SP:40:402,1,"Pradine",49.048697,2.109873,0,0,OIF:SA:40:374,Europe/Paris,,OIF, +OIF:SP:40:403,1,"La Poste",49.046344,2.105919,0,0,OIF:SA:40:373,Europe/Paris,,OIF, +OIF:SP:40:404,1,"Mairie",49.044981,2.107525,0,0,OIF:SA:40:372,Europe/Paris,,OIF, +OIF:SP:40:405,1,"Verdun",49.040384,2.104757,0,0,OIF:SA:40:371,Europe/Paris,,OIF, +OIF:SP:40:406,1,"Rue du Parc",49.037328,2.104689,0,0,OIF:SA:40:370,Europe/Paris,,OIF, +OIF:SP:40:407,1,"Aquitaine",49.034493,2.107038,0,0,OIF:SA:40:369,Europe/Paris,,OIF, +OIF:SP:40:408,1,"Dauphiné",49.034383,2.110565,0,0,OIF:SA:40:368,Europe/Paris,,OIF, +OIF:SP:40:409,1,"Jules César",49.036724,2.112714,0,0,OIF:SA:40:367,Europe/Paris,,OIF, +OIF:SP:40:41,1,"L'Orangerie",49.044918,2.010729,0,0,OIF:SA:40:36,Europe/Paris,,OIF, +OIF:SP:40:410,1,"M. Luther King",49.054034,2.124288,0,0,OIF:SA:40:410,Europe/Paris,,OIF, +OIF:SP:40:411,1,"Avenue du Château",49.05321,2.130827,0,0,OIF:SA:40:411,Europe/Paris,,OIF, +OIF:SP:40:412,1,"Vert Galant",49.051821,2.133389,0,0,OIF:SA:40:412,Europe/Paris,,OIF, +OIF:SP:40:413,1,"Vert Galant",49.051902,2.133211,0,0,OIF:SA:40:412,Europe/Paris,,OIF, +OIF:SP:40:414,1,"Avenue du Château",49.053937,2.130373,0,0,OIF:SA:40:411,Europe/Paris,,OIF, +OIF:SP:40:415,1,"M. Luther King",49.05418,2.125258,0,0,OIF:SA:40:410,Europe/Paris,,OIF, +OIF:SP:40:416,1,"Mairie",49.045314,2.10766,0,0,OIF:SA:40:372,Europe/Paris,,OIF, +OIF:SP:40:417,1,"Clos du Roi",49.041647,2.112351,0,0,OIF:SA:40:417,Europe/Paris,,OIF, +OIF:SP:40:418,1,"M. de l'Hospital",49.039739,2.115572,0,0,OIF:SA:40:418,Europe/Paris,,OIF, +OIF:SP:40:419,1,"Lycée E. Rostand",49.038476,2.117586,0,0,OIF:SA:40:419,Europe/Paris,,OIF, +OIF:SP:40:42,1,"Les Essarts",49.044384,2.019412,0,0,OIF:SA:40:34,Europe/Paris,,OIF, +OIF:SP:40:420,1,"Louis Delage",49.035583,2.122655,0,0,OIF:SA:40:420,Europe/Paris,,OIF, +OIF:SP:40:421,1,"Gare de Liesse",49.033571,2.128226,0,0,OIF:SA:8733798,Europe/Paris,,OIF, +OIF:SP:40:422,1,"Marcel Dassault",49.040591,2.134513,0,0,OIF:SA:40:422,Europe/Paris,,OIF, +OIF:SP:40:423,1,"Les Bourseaux",49.047216,2.12582,0,0,OIF:SA:40:423,Europe/Paris,,OIF, +OIF:SP:40:424,1,"Rue Saint-Hilaire",49.050649,2.125997,0,0,OIF:SA:40:424,Europe/Paris,,OIF, +OIF:SP:40:425,1,"Guivernone",49.052368,2.127521,0,0,OIF:SA:40:425,Europe/Paris,,OIF, +OIF:SP:40:426,1,"Antoine Balard",49.052807,2.137254,0,0,OIF:SA:40:426,Europe/Paris,,OIF, +OIF:SP:40:427,1,"Avenue Gros Chevaux",49.054143,2.140722,0,0,OIF:SA:40:427,Europe/Paris,,OIF, +OIF:SP:40:428,1,"Les Sablons",49.055413,2.136793,0,0,OIF:SA:40:428,Europe/Paris,,OIF, +OIF:SP:40:429,1,"Lycée J. Perrin",49.0581,2.131833,0,0,OIF:SA:40:429,Europe/Paris,,OIF, +OIF:SP:40:43,1,"Rond-Point du Chêne",49.046445,2.023993,0,0,OIF:SA:23:939,Europe/Paris,,OIF, +OIF:SP:40:430,1,"Stade C. Léon",49.072905,2.0708,0,0,OIF:SA:40:430,Europe/Paris,,OIF, +OIF:SP:40:431,1,"Lyc.Cli.Saint-Marie",49.074697,2.072323,0,0,OIF:SA:40:431,Europe/Paris,,OIF, +OIF:SP:40:432,1,"Oseraie",49.076978,2.075635,0,0,OIF:SA:40:432,Europe/Paris,,OIF, +OIF:SP:40:433,1,"Demi Lieue",49.071669,2.080846,0,0,OIF:SA:40:433,Europe/Paris,,OIF, +OIF:SP:40:434,1,"Gare de Liesse",49.033571,2.128199,0,0,OIF:SA:8733798,Europe/Paris,,OIF, +OIF:SP:40:435,1,"Les Sablons",49.055349,2.136137,0,0,OIF:SA:40:428,Europe/Paris,,OIF, +OIF:SP:40:436,1,"Avenue Gros Chevaux",49.053811,2.140805,0,0,OIF:SA:40:427,Europe/Paris,,OIF, +OIF:SP:40:437,1,"Antoine Balard",49.052806,2.136598,0,0,OIF:SA:40:426,Europe/Paris,,OIF, +OIF:SP:40:438,1,"Avenue du Château",49.053424,2.129964,0,0,OIF:SA:40:411,Europe/Paris,,OIF, +OIF:SP:40:439,1,"Guivernone",49.051962,2.126429,0,0,OIF:SA:40:425,Europe/Paris,,OIF, +OIF:SP:40:44,1,"Avenue de l'Embellie",49.044566,2.027012,0,0,OIF:SA:40:32,Europe/Paris,,OIF, +OIF:SP:40:440,1,"Rue Saint-Hilaire",49.050012,2.126465,0,0,OIF:SA:40:424,Europe/Paris,,OIF, +OIF:SP:40:441,1,"Les Bourseaux",49.047818,2.125503,0,0,OIF:SA:40:423,Europe/Paris,,OIF, +OIF:SP:40:442,1,"Marcel Dassault",49.040304,2.134774,0,0,OIF:SA:40:422,Europe/Paris,,OIF, +OIF:SP:40:443,1,"Louis Delage",49.035691,2.12271,0,0,OIF:SA:40:420,Europe/Paris,,OIF, +OIF:SP:40:444,1,"Lycée E. Rostand",49.038907,2.11727,0,0,OIF:SA:40:419,Europe/Paris,,OIF, +OIF:SP:40:445,1,"M. de l'Hospital",49.040277,2.114941,0,0,OIF:SA:40:418,Europe/Paris,,OIF, +OIF:SP:40:446,1,"Clos du Roi",49.042176,2.111542,0,0,OIF:SA:40:417,Europe/Paris,,OIF, +OIF:SP:40:447,1,"Préfecture RER",49.036586,2.080049,0,0,OIF:SA:8738190,Europe/Paris,,OIF, +OIF:SP:40:448,1,"Demi Lieue",49.071438,2.081832,0,0,OIF:SA:40:433,Europe/Paris,,OIF, +OIF:SP:40:449,1,"Oseraie",49.076835,2.076005,0,0,OIF:SA:40:432,Europe/Paris,,OIF, +OIF:SP:40:45,1,"Rond-Point du Cèdre",49.043118,2.030082,0,0,OIF:SA:40:31,Europe/Paris,,OIF, +OIF:SP:40:450,1,"Lyc.Cli.Saint-Marie",49.074436,2.071996,0,0,OIF:SA:40:431,Europe/Paris,,OIF, +OIF:SP:40:451,1,"Préfecture RER",49.036604,2.080227,0,0,OIF:SA:8738190,Europe/Paris,,OIF, +OIF:SP:40:452,1,"Gare de Liesse",49.033517,2.128117,0,0,OIF:SA:8733798,Europe/Paris,,OIF, +OIF:SP:40:453,1,"Avenue de la Mare",49.041152,2.137053,0,0,OIF:SA:40:453,Europe/Paris,,OIF, +OIF:SP:40:454,1,"Compas",49.040924,2.140621,0,0,OIF:SA:40:454,Europe/Paris,,OIF, +OIF:SP:40:455,1,"Palmer",49.038907,2.143677,0,0,OIF:SA:40:455,Europe/Paris,,OIF, +OIF:SP:40:456,1,"Béthunes Sud",49.037748,2.148889,0,0,OIF:SA:40:456,Europe/Paris,,OIF, +OIF:SP:40:457,1,"Aurore",49.039829,2.152189,0,0,OIF:SA:40:457,Europe/Paris,,OIF, +OIF:SP:40:458,1,"Hautes Bornes",49.043346,2.154815,0,0,OIF:SA:40:458,Europe/Paris,,OIF, +OIF:SP:40:459,1,"Bois du Fief",49.046328,2.148352,0,0,OIF:SA:40:459,Europe/Paris,,OIF, +OIF:SP:40:46,1,"Rond-Point du Tilleul",49.042659,2.033202,0,0,OIF:SA:40:30,Europe/Paris,,OIF, +OIF:SP:40:460,1,"Artois",49.045828,2.144458,0,0,OIF:SA:40:460,Europe/Paris,,OIF, +OIF:SP:40:461,1,"Bretagne",49.047759,2.143562,0,0,OIF:SA:40:461,Europe/Paris,,OIF, +OIF:SP:40:462,1,"Bourgogne",49.047602,2.141293,0,0,OIF:SA:40:462,Europe/Paris,,OIF, +OIF:SP:40:463,1,"Languedoc",49.045677,2.140002,0,0,OIF:SA:40:463,Europe/Paris,,OIF, +OIF:SP:40:464,1,"Les Béthunes",49.045867,2.135476,0,0,OIF:SA:40:464,Europe/Paris,,OIF, +OIF:SP:40:465,1,"Equerre",49.043323,2.134557,0,0,OIF:SA:40:465,Europe/Paris,,OIF, +OIF:SP:40:466,1,"Equerre",49.043646,2.134337,0,0,OIF:SA:40:465,Europe/Paris,,OIF, +OIF:SP:40:467,1,"Les Béthunes",49.046012,2.136105,0,0,OIF:SA:40:464,Europe/Paris,,OIF, +OIF:SP:40:468,1,"Languedoc",49.045506,2.139606,0,0,OIF:SA:40:463,Europe/Paris,,OIF, +OIF:SP:40:469,1,"Bourgogne",49.047539,2.141225,0,0,OIF:SA:40:462,Europe/Paris,,OIF, +OIF:SP:40:47,1,"Martelet",49.046633,2.041162,0,0,OIF:SA:23:113,Europe/Paris,,OIF, +OIF:SP:40:470,1,"Bretagne",49.047435,2.143673,0,0,OIF:SA:40:461,Europe/Paris,,OIF, +OIF:SP:40:471,1,"Artois",49.045514,2.144568,0,0,OIF:SA:40:460,Europe/Paris,,OIF, +OIF:SP:40:472,1,"Bois du Fief",49.04623,2.14838,0,0,OIF:SA:40:459,Europe/Paris,,OIF, +OIF:SP:40:473,1,"Hautes Bornes",49.042412,2.155105,0,0,OIF:SA:40:458,Europe/Paris,,OIF, +OIF:SP:40:474,1,"Aurore",49.039612,2.151889,0,0,OIF:SA:40:457,Europe/Paris,,OIF, +OIF:SP:40:475,1,"Béthunes Sud",49.03763,2.148438,0,0,OIF:SA:40:456,Europe/Paris,,OIF, +OIF:SP:40:476,1,"Palmer",49.039536,2.143142,0,0,OIF:SA:40:455,Europe/Paris,,OIF, +OIF:SP:40:477,1,"Compas",49.040771,2.140198,0,0,OIF:SA:40:454,Europe/Paris,,OIF, +OIF:SP:40:478,1,"Avenue de la Mare",49.041341,2.136929,0,0,OIF:SA:40:453,Europe/Paris,,OIF, +OIF:SP:40:479,1,"Gare de Liesse",49.033634,2.12824,0,0,OIF:SA:8733798,Europe/Paris,,OIF, +OIF:SP:40:48,1,"Rond-Point Haut Gency",49.048064,2.046034,0,0,OIF:SA:23:106,Europe/Paris,,OIF, +OIF:SP:40:480,1,"Avenue de la Mare",49.042122,2.136817,0,0,OIF:SA:40:453,Europe/Paris,,OIF, +OIF:SP:40:481,1,"Picardie",49.043761,2.138943,0,0,OIF:SA:40:481,Europe/Paris,,OIF, +OIF:SP:40:482,1,"Les Béthunes",49.046849,2.136689,0,0,OIF:SA:40:464,Europe/Paris,,OIF, +OIF:SP:40:483,1,"Vert Galant",49.051138,2.133036,0,0,OIF:SA:40:412,Europe/Paris,,OIF, +OIF:SP:40:484,1,"Fond de Vaux",49.056289,2.14502,0,0,OIF:SA:40:380,Europe/Paris,,OIF, +OIF:SP:40:485,1,"Vert Galant",49.051021,2.132886,0,0,OIF:SA:40:412,Europe/Paris,,OIF, +OIF:SP:40:486,1,"Les Béthunes",49.046741,2.136539,0,0,OIF:SA:40:464,Europe/Paris,,OIF, +OIF:SP:40:487,1,"Picardie",49.043617,2.138834,0,0,OIF:SA:40:481,Europe/Paris,,OIF, +OIF:SP:40:488,1,"Avenue de la Mare",49.042185,2.136571,0,0,OIF:SA:40:453,Europe/Paris,,OIF, +OIF:SP:40:489,1,"William Thornley",49.063347,2.068087,0,0,OIF:SA:40:489,Europe/Paris,,OIF, +OIF:SP:40:49,1,"La Sébille",49.047406,2.052641,0,0,OIF:SA:40:242,Europe/Paris,,OIF, +OIF:SP:40:490,1,"Fond de Chars",49.06567,2.07412,0,0,OIF:SA:40:490,Europe/Paris,,OIF, +OIF:SP:40:491,1,"Fleurance Muguet",49.069898,2.080321,0,0,OIF:SA:40:491,Europe/Paris,,OIF, +OIF:SP:40:492,1,"Osny Lycée",49.07452,2.073623,0,0,OIF:SA:40:492,Europe/Paris,,OIF, +OIF:SP:40:493,1,"Clini. Sainte-Marie",49.073836,2.077183,0,0,OIF:SA:40:493,Europe/Paris,,OIF, +OIF:SP:40:494,1,"Osny Lycée",49.074243,2.074336,0,0,OIF:SA:40:492,Europe/Paris,,OIF, +OIF:SP:40:495,1,"Fleurance Muguet",49.06932,2.079093,0,0,OIF:SA:40:491,Europe/Paris,,OIF, +OIF:SP:40:496,1,"Fond de Chars",49.06657,2.074758,0,0,OIF:SA:40:490,Europe/Paris,,OIF, +OIF:SP:40:497,1,"William Thornley",49.063023,2.067569,0,0,OIF:SA:40:489,Europe/Paris,,OIF, +OIF:SP:40:498,1,"Pontoise Gare",49.047187,2.096018,0,0,OIF:SA:8727613,Europe/Paris,,OIF, +OIF:SP:40:499,1,"Hôtel Dieu",49.047861,2.100362,0,0,OIF:SA:40:499,Europe/Paris,,OIF, +OIF:SP:40:5,1,"Oise-Hautil",49.034436,2.08334,0,0,OIF:SA:40:359,Europe/Paris,,OIF, +OIF:SP:40:50,1,"Les Heuruelles",49.0471,2.056033,0,0,OIF:SA:40:26,Europe/Paris,,OIF, +OIF:SP:40:500,1,"Quai du Pothuis",49.050265,2.103045,0,0,OIF:SA:40:500,Europe/Paris,,OIF, +OIF:SP:40:501,1,"Cité Judiciaire",49.051721,2.098403,0,0,OIF:SA:40:501,Europe/Paris,,OIF, +OIF:SP:40:502,1,"Citadelle",49.053196,2.094746,0,0,OIF:SA:40:502,Europe/Paris,,OIF, +OIF:SP:40:503,1,"Cimetière Ponto.",49.054737,2.092579,0,0,OIF:SA:40:503,Europe/Paris,,OIF, +OIF:SP:40:504,1,"Lycée Pissarro",49.057098,2.09131,0,0,OIF:SA:40:504,Europe/Paris,,OIF, +OIF:SP:40:505,1,"Hôpital R. Dubos",49.064095,2.094421,0,0,OIF:SA:40:164,Europe/Paris,,OIF, +OIF:SP:40:506,1,"Ch. Bouticourt",49.059733,2.092473,0,0,OIF:SA:40:506,Europe/Paris,,OIF, +OIF:SP:40:507,1,"Place de la Paix",49.058136,2.089035,0,0,OIF:SA:40:161,Europe/Paris,,OIF, +OIF:SP:40:508,1,"Nobel",49.056834,2.085418,0,0,OIF:SA:40:508,Europe/Paris,,OIF, +OIF:SP:40:509,1,"Les Louvrais",49.060025,2.085812,0,0,OIF:SA:40:509,Europe/Paris,,OIF, +OIF:SP:40:51,1,"Linandes Oranges",49.046476,2.065961,0,0,OIF:SA:40:25,Europe/Paris,,OIF, +OIF:SP:40:510,1,"Oseraie",49.077429,2.076632,0,0,OIF:SA:40:432,Europe/Paris,,OIF, +OIF:SP:40:511,1,"Réservoir",49.071573,2.069658,0,0,OIF:SA:40:511,Europe/Paris,,OIF, +OIF:SP:40:512,1,"Voltigeurs",49.068568,2.068129,0,0,OIF:SA:40:512,Europe/Paris,,OIF, +OIF:SP:40:513,1,"Montgeroult",49.065563,2.066435,0,0,OIF:SA:40:513,Europe/Paris,,OIF, +OIF:SP:40:514,1,"Chât. de Grouchy",49.063852,2.064871,0,0,OIF:SA:40:514,Europe/Paris,,OIF, +OIF:SP:40:515,1,"Le Verger",49.050485,2.043683,0,0,OIF:SA:40:515,Europe/Paris,,OIF, +OIF:SP:40:516,1,"Centau. Martelet",49.05073,2.041097,0,0,OIF:SA:40:516,Europe/Paris,,OIF, +OIF:SP:40:517,1,"Saint-Christ. RER",49.05002,2.033691,0,0,OIF:SA:8738249,Europe/Paris,,OIF, +OIF:SP:40:518,1,"Musaraigne",49.049111,2.02991,0,0,OIF:SA:23:115,Europe/Paris,,OIF, +OIF:SP:40:519,1,"Belle Heaumière",49.049491,2.023974,0,0,OIF:SA:40:519,Europe/Paris,,OIF, +OIF:SP:40:52,1,"Cité Artisanale",49.043907,2.070772,0,0,OIF:SA:40:24,Europe/Paris,,OIF, +OIF:SP:40:520,1,"Hérons",49.049762,2.01767,0,0,OIF:SA:40:520,Europe/Paris,,OIF, +OIF:SP:40:521,1,"Jean Jaurès",49.070676,2.0746,0,0,OIF:SA:40:521,Europe/Paris,,OIF, +OIF:SP:40:522,1,"Maison d'Arrêt",49.070767,2.091874,0,0,OIF:SA:40:522,Europe/Paris,,OIF, +OIF:SP:40:523,1,"Cergy le Ht RER",49.04738,2.010508,0,0,OIF:SA:8738265,Europe/Paris,,OIF, +OIF:SP:40:524,1,"Hérons",49.049989,2.01864,0,0,OIF:SA:40:520,Europe/Paris,,OIF, +OIF:SP:40:525,1,"Belle Heaumière",49.049367,2.024454,0,0,OIF:SA:40:519,Europe/Paris,,OIF, +OIF:SP:40:526,1,"Musaraigne",49.049032,2.030457,0,0,OIF:SA:23:115,Europe/Paris,,OIF, +OIF:SP:40:527,1,"Saint-Christ. RER",49.049771,2.035033,0,0,OIF:SA:8738249,Europe/Paris,,OIF, +OIF:SP:40:528,1,"Centau. Martelet",49.050721,2.040865,0,0,OIF:SA:40:516,Europe/Paris,,OIF, +OIF:SP:40:529,1,"Le Verger",49.050388,2.04438,0,0,OIF:SA:40:515,Europe/Paris,,OIF, +OIF:SP:40:53,1,"Marjoberts",49.041182,2.073588,0,0,OIF:SA:40:23,Europe/Paris,,OIF, +OIF:SP:40:530,1,"Chât. de Grouchy",49.064302,2.065224,0,0,OIF:SA:40:514,Europe/Paris,,OIF, +OIF:SP:40:531,1,"Montgeroult",49.065842,2.066775,0,0,OIF:SA:40:513,Europe/Paris,,OIF, +OIF:SP:40:532,1,"Voltigeurs",49.06846,2.068115,0,0,OIF:SA:40:512,Europe/Paris,,OIF, +OIF:SP:40:533,1,"Réservoir",49.072734,2.070459,0,0,OIF:SA:40:511,Europe/Paris,,OIF, +OIF:SP:40:534,1,"Boblingen",49.061592,2.087569,0,0,OIF:SA:40:162,Europe/Paris,,OIF, +OIF:SP:40:535,1,"Les Louvrais",49.059539,2.085295,0,0,OIF:SA:40:509,Europe/Paris,,OIF, +OIF:SP:40:536,1,"Nobel",49.056153,2.086405,0,0,OIF:SA:40:508,Europe/Paris,,OIF, +OIF:SP:40:537,1,"Place de la Paix",49.058388,2.089485,0,0,OIF:SA:40:161,Europe/Paris,,OIF, +OIF:SP:40:538,1,"Ch. Bouticourt",49.059247,2.091983,0,0,OIF:SA:40:506,Europe/Paris,,OIF, +OIF:SP:40:539,1,"Lycée Pissarro",49.058139,2.090799,0,0,OIF:SA:40:504,Europe/Paris,,OIF, +OIF:SP:40:54,1,"Univ. des Chênes",49.039507,2.076016,0,0,OIF:SA:40:54,Europe/Paris,,OIF, +OIF:SP:40:540,1,"Cimetière Ponto.",49.05445,2.092744,0,0,OIF:SA:40:503,Europe/Paris,,OIF, +OIF:SP:40:541,1,"Citadelle",49.052676,2.095364,0,0,OIF:SA:40:502,Europe/Paris,,OIF, +OIF:SP:40:542,1,"Cité Judiciaire",49.051615,2.099416,0,0,OIF:SA:40:501,Europe/Paris,,OIF, +OIF:SP:40:543,1,"Quai du Pothuis",49.05031,2.102785,0,0,OIF:SA:40:500,Europe/Paris,,OIF, +OIF:SP:40:544,1,"Hôtel Dieu",49.047383,2.099886,0,0,OIF:SA:40:499,Europe/Paris,,OIF, +OIF:SP:40:545,1,"Stade C. Léon",49.07224,2.070462,0,0,OIF:SA:40:430,Europe/Paris,,OIF, +OIF:SP:40:546,1,"Jean Jaurès",49.07039,2.075149,0,0,OIF:SA:40:521,Europe/Paris,,OIF, +OIF:SP:40:547,1,"Cergy le Ht RER",49.047307,2.01044,0,0,OIF:SA:8738265,Europe/Paris,,OIF, +OIF:SP:40:548,1,"Boris Vian",49.03543,2.017895,0,0,OIF:SA:23:620,Europe/Paris,,OIF, +OIF:SP:40:549,1,"La Bussie",49.032839,2.020235,0,0,OIF:SA:23:933,Europe/Paris,,OIF, +OIF:SP:40:55,1,"Les Plants",49.033604,2.080706,0,0,OIF:SA:40:14,Europe/Paris,,OIF, +OIF:SP:40:550,1,"La Marnière",49.023606,2.022204,0,0,OIF:SA:23:626,Europe/Paris,,OIF, +OIF:SP:40:551,1,"Les Valanchards",49.020523,2.02169,0,0,OIF:SA:40:142,Europe/Paris,,OIF, +OIF:SP:40:552,1,"Le Noyer",49.01052,2.031765,0,0,OIF:SA:23:232,Europe/Paris,,OIF, +OIF:SP:40:553,1,"Le Pont",49.014192,2.059613,0,0,OIF:SA:40:280,Europe/Paris,,OIF, +OIF:SP:40:554,1,"Mairie",49.01339,2.062746,0,0,OIF:SA:40:554,Europe/Paris,,OIF, +OIF:SP:40:555,1,"Les Trembles",49.01498,2.070484,0,0,OIF:SA:40:555,Europe/Paris,,OIF, +OIF:SP:40:556,1,"Gay Lussac",49.01592,2.076764,0,0,OIF:SA:40:556,Europe/Paris,,OIF, +OIF:SP:40:557,1,"Neuville RER",49.014623,2.079543,0,0,OIF:SA:8733448,Europe/Paris,,OIF, +OIF:SP:40:558,1,"L'Ourcq-la Marne",49.020054,2.103345,0,0,OIF:SA:40:558,Europe/Paris,,OIF, +OIF:SP:40:559,1,"Les Beaux Vents",49.020555,2.106868,0,0,OIF:SA:40:559,Europe/Paris,,OIF, +OIF:SP:40:56,1,"Conseil Départe.",49.031729,2.073705,0,0,OIF:SA:40:13,Europe/Paris,,OIF, +OIF:SP:40:560,1,"F. Châtelain",49.024889,2.112998,0,0,OIF:SA:40:339,Europe/Paris,,OIF, +OIF:SP:40:561,1,"Les Bellevues",49.026921,2.118209,0,0,OIF:SA:40:561,Europe/Paris,,OIF, +OIF:SP:40:562,1,"Le Gros Murger",49.025684,2.119759,0,0,OIF:SA:40:562,Europe/Paris,,OIF, +OIF:SP:40:563,1,"Les Tilleuls",49.023329,2.119796,0,0,OIF:SA:40:563,Europe/Paris,,OIF, +OIF:SP:40:564,1,"La Patelle",49.024598,2.125885,0,0,OIF:SA:40:564,Europe/Paris,,OIF, +OIF:SP:40:565,1,"L'Olivier",49.027965,2.123903,0,0,OIF:SA:40:565,Europe/Paris,,OIF, +OIF:SP:40:566,1,"La Chaufferie",49.029666,2.120726,0,0,OIF:SA:40:566,Europe/Paris,,OIF, +OIF:SP:40:567,1,"Les Bellevues",49.028052,2.117507,0,0,OIF:SA:40:561,Europe/Paris,,OIF, +OIF:SP:40:568,1,"Pontoise Gare",49.047034,2.096115,0,0,OIF:SA:8727613,Europe/Paris,,OIF, +OIF:SP:40:569,1,"La Chaufferie",49.029559,2.12115,0,0,OIF:SA:40:566,Europe/Paris,,OIF, +OIF:SP:40:57,1,"Les Grouettes",49.032489,2.068221,0,0,OIF:SA:40:100,Europe/Paris,,OIF, +OIF:SP:40:570,1,"L'Olivier",49.027426,2.124384,0,0,OIF:SA:40:565,Europe/Paris,,OIF, +OIF:SP:40:571,1,"La Patelle",49.024445,2.12553,0,0,OIF:SA:40:564,Europe/Paris,,OIF, +OIF:SP:40:572,1,"Les Tilleuls",49.023372,2.118661,0,0,OIF:SA:40:563,Europe/Paris,,OIF, +OIF:SP:40:573,1,"Le Gros Murger",49.025467,2.119418,0,0,OIF:SA:40:562,Europe/Paris,,OIF, +OIF:SP:40:574,1,"Les Bellevues",49.027421,2.116526,0,0,OIF:SA:40:561,Europe/Paris,,OIF, +OIF:SP:40:575,1,"Les Beaux Vents",49.02077,2.10643,0,0,OIF:SA:40:559,Europe/Paris,,OIF, +OIF:SP:40:576,1,"L'Ourcq-la Marne",49.020216,2.103481,0,0,OIF:SA:40:558,Europe/Paris,,OIF, +OIF:SP:40:577,1,"Neuville RER",49.014712,2.079393,0,0,OIF:SA:8733448,Europe/Paris,,OIF, +OIF:SP:40:578,1,"Gay Lussac",49.015782,2.075261,0,0,OIF:SA:40:556,Europe/Paris,,OIF, +OIF:SP:40:579,1,"Les Trembles",49.014943,2.070006,0,0,OIF:SA:40:555,Europe/Paris,,OIF, +OIF:SP:40:58,1,"Paradis",49.033483,2.066302,0,0,OIF:SA:40:58,Europe/Paris,,OIF, +OIF:SP:40:580,1,"Mairie",49.013462,2.062541,0,0,OIF:SA:40:554,Europe/Paris,,OIF, +OIF:SP:40:581,1,"Le Pont",49.014434,2.059325,0,0,OIF:SA:40:280,Europe/Paris,,OIF, +OIF:SP:40:582,1,"Les Forbœufs",49.008855,2.034356,0,0,OIF:SA:40:299,Europe/Paris,,OIF, +OIF:SP:40:583,1,"Le Noyer",49.011263,2.030476,0,0,OIF:SA:23:232,Europe/Paris,,OIF, +OIF:SP:40:584,1,"Les Valanchards",49.021486,2.022163,0,0,OIF:SA:40:142,Europe/Paris,,OIF, +OIF:SP:40:59,1,"Le Port",49.032955,2.063571,0,0,OIF:SA:40:59,Europe/Paris,,OIF, +OIF:SP:40:6,1,"Palette",49.033602,2.088059,0,0,OIF:SA:40:358,Europe/Paris,,OIF, +OIF:SP:40:61,1,"Place de la Libéra.",49.036312,2.061996,0,0,OIF:SA:40:61,Europe/Paris,,OIF, +OIF:SP:40:62,1,"Sentier",49.039392,2.060913,0,0,OIF:SA:40:62,Europe/Paris,,OIF, +OIF:SP:40:63,1,"Menandon",49.041874,2.057906,0,0,OIF:SA:40:63,Europe/Paris,,OIF, +OIF:SP:40:64,1,"Gency",49.042265,2.04459,0,0,OIF:SA:40:64,Europe/Paris,,OIF, +OIF:SP:40:65,1,"Maison Vallerand",49.034865,2.032004,0,0,OIF:SA:40:65,Europe/Paris,,OIF, +OIF:SP:40:66,1,"La Croix Lieu",49.030483,2.022969,0,0,OIF:SA:23:622,Europe/Paris,,OIF, +OIF:SP:40:67,1,"Colucci Gandhi",49.028777,2.016912,0,0,OIF:SA:40:67,Europe/Paris,,OIF, +OIF:SP:40:68,1,"Grande Rue",49.026088,2.005955,0,0,OIF:SA:40:68,Europe/Paris,,OIF, +OIF:SP:40:69,1,"Le Montrouge",49.023807,2.000258,0,0,OIF:SA:40:69,Europe/Paris,,OIF, +OIF:SP:40:7,1,"Les Larris",49.032498,2.088666,0,0,OIF:SA:40:357,Europe/Paris,,OIF, +OIF:SP:40:70,1,"Saint-Martin",49.031564,1.997707,0,0,OIF:SA:40:70,Europe/Paris,,OIF, +OIF:SP:40:71,1,"La Jachère",49.029382,1.991817,0,0,OIF:SA:40:71,Europe/Paris,,OIF, +OIF:SP:40:72,1,"Les Gros Saules",49.028258,1.988518,0,0,OIF:SA:40:72,Europe/Paris,,OIF, +OIF:SP:40:73,1,"Pasteur",49.026175,1.983134,0,0,OIF:SA:40:73,Europe/Paris,,OIF, +OIF:SP:40:74,1,"Bas-Rucourt",49.025114,1.976924,0,0,OIF:SA:40:74,Europe/Paris,,OIF, +OIF:SP:40:75,1,"Haut-Rucourt",49.026876,1.974083,0,0,OIF:SA:40:75,Europe/Paris,,OIF, +OIF:SP:40:76,1,"Rangée",49.027943,1.976221,0,0,OIF:SA:40:76,Europe/Paris,,OIF, +OIF:SP:40:77,1,"Grande Pièce",49.026891,1.979057,0,0,OIF:SA:40:77,Europe/Paris,,OIF, +OIF:SP:40:78,1,"La Taillette",49.029432,1.978343,0,0,OIF:SA:40:78,Europe/Paris,,OIF, +OIF:SP:40:79,1,"Lozier",49.032074,2.063385,0,0,OIF:SA:40:79,Europe/Paris,,OIF, +OIF:SP:40:8,1,"Les Bocages",49.028573,2.085555,0,0,OIF:SA:40:8,Europe/Paris,,OIF, +OIF:SP:40:80,1,"Le Grand Hunier",49.031736,2.060858,0,0,OIF:SA:40:80,Europe/Paris,,OIF, +OIF:SP:40:81,1,"Le Port",49.032189,2.062537,0,0,OIF:SA:40:59,Europe/Paris,,OIF, +OIF:SP:40:82,1,"Grande Pièce",49.027314,1.979437,0,0,OIF:SA:40:77,Europe/Paris,,OIF, +OIF:SP:40:83,1,"Rangée",49.027943,1.97618,0,0,OIF:SA:40:76,Europe/Paris,,OIF, +OIF:SP:40:84,1,"Haut-Rucourt",49.026652,1.974385,0,0,OIF:SA:40:75,Europe/Paris,,OIF, +OIF:SP:40:85,1,"Bas-Rucourt",49.024998,1.977034,0,0,OIF:SA:40:74,Europe/Paris,,OIF, +OIF:SP:40:86,1,"Pasteur",49.026085,1.98293,0,0,OIF:SA:40:73,Europe/Paris,,OIF, +OIF:SP:40:87,1,"Les Gros Saules",49.027932,1.987727,0,0,OIF:SA:40:72,Europe/Paris,,OIF, +OIF:SP:40:88,1,"La Jachère",49.029337,1.991804,0,0,OIF:SA:40:71,Europe/Paris,,OIF, +OIF:SP:40:89,1,"Saint-Martin",49.03162,1.998349,0,0,OIF:SA:40:70,Europe/Paris,,OIF, +OIF:SP:40:9,1,"École Maradas",49.030367,2.084098,0,0,OIF:SA:40:9,Europe/Paris,,OIF, +OIF:SP:40:90,1,"Le Montrouge",49.023744,2.000259,0,0,OIF:SA:40:69,Europe/Paris,,OIF, +OIF:SP:40:91,1,"Grande Rue",49.026387,2.006855,0,0,OIF:SA:40:68,Europe/Paris,,OIF, +OIF:SP:40:92,1,"Colucci Gandhi",49.02895,2.017485,0,0,OIF:SA:40:67,Europe/Paris,,OIF, +OIF:SP:40:93,1,"La Croix Lieu",49.030087,2.022602,0,0,OIF:SA:23:622,Europe/Paris,,OIF, +OIF:SP:40:94,1,"Maison Vallerand",49.034759,2.032811,0,0,OIF:SA:40:65,Europe/Paris,,OIF, +OIF:SP:40:95,1,"Gency",49.042355,2.044877,0,0,OIF:SA:40:64,Europe/Paris,,OIF, +OIF:SP:40:96,1,"Menandon",49.041901,2.057701,0,0,OIF:SA:40:63,Europe/Paris,,OIF, +OIF:SP:40:97,1,"Place de la Libéra.",49.036088,2.062325,0,0,OIF:SA:40:61,Europe/Paris,,OIF, +OIF:SP:40:99,1,"Paradis",49.032743,2.065185,0,0,OIF:SA:40:58,Europe/Paris,,OIF, +OIF:SP:41:5734,1,"Paris - Porte d'Orléans",48.821094,2.325758,0,0,OIF:SA:59624,Europe/Paris,,OIF, +OIF:SP:41:5818,1,"Village",48.76401,1.917714,0,0,OIF:SA:41:5818,Europe/Paris,,OIF, +OIF:SP:41:5819,1,"Hypermarché",48.76254,1.92122,0,0,OIF:SA:41:5819,Europe/Paris,,OIF, +OIF:SP:41:5822,1,"Gutenberg",48.757822,1.926859,0,0,OIF:SA:41:5822,Europe/Paris,,OIF, +OIF:SP:41:5823,1,"Marie Curie",48.756833,1.92926,0,0,OIF:SA:41:5823,Europe/Paris,,OIF, +OIF:SP:41:5824,1,"Béarn",48.761206,1.935887,0,0,OIF:SA:41:5824,Europe/Paris,,OIF, +OIF:SP:41:5825,1,"Les Gâtines",48.763055,1.937749,0,0,OIF:SA:41:5825,Europe/Paris,,OIF, +OIF:SP:41:5826,1,"Normandie",48.765636,1.940992,0,0,OIF:SA:41:5826,Europe/Paris,,OIF, +OIF:SP:41:5827,1,"Lycée des Sept Mares",48.764423,1.943802,0,0,OIF:SA:41:5827,Europe/Paris,,OIF, +OIF:SP:41:5828,1,"Les Pyramides",48.764232,1.948644,0,0,OIF:SA:8741455,Europe/Paris,,OIF, +OIF:SP:41:5829,1,"Franche-Comté Bourgogne",48.766397,1.950844,0,0,OIF:SA:41:5829,Europe/Paris,,OIF, +OIF:SP:41:5830,1,"Nouvelle Amsterdam",48.765947,1.956422,0,0,OIF:SA:22:112,Europe/Paris,,OIF, +OIF:SP:41:5831,1,"La Petite Villedieu",48.767105,1.96139,0,0,OIF:SA:8741456,Europe/Paris,,OIF, +OIF:SP:41:5832,1,"Les Réaux",48.76859,1.964914,0,0,OIF:SA:41:5832,Europe/Paris,,OIF, +OIF:SP:41:5833,1,"La Passerelle",48.770917,1.970609,0,0,OIF:SA:8741457,Europe/Paris,,OIF, +OIF:SP:41:5834,1,"Les Templiers",48.772954,1.975232,0,0,OIF:SA:22:108,Europe/Paris,,OIF, +OIF:SP:41:5835,1,"Youri Gagarine",48.77378,1.980896,0,0,OIF:SA:41:5835,Europe/Paris,,OIF, +OIF:SP:41:5836,1,"Pasteur",48.773482,1.983632,0,0,OIF:SA:8741454,Europe/Paris,,OIF, +OIF:SP:41:5837,1,"Le Stade",48.773199,1.988053,0,0,OIF:SA:41:5837,Europe/Paris,,OIF, +OIF:SP:41:5838,1,"Paul Langevin",48.776199,1.990467,0,0,OIF:SA:8741453,Europe/Paris,,OIF, +OIF:SP:41:5839,1,"Yves Farge",48.776651,1.99449,0,0,OIF:SA:8741449,Europe/Paris,,OIF, +OIF:SP:41:5840,1,"Hôtel de Ville",48.776902,2.000567,0,0,OIF:SA:41:5840,Europe/Paris,,OIF, +OIF:SP:41:5841,1,"République P.V.Couturier",48.777573,2.005907,0,0,OIF:SA:41:5841,Europe/Paris,,OIF, +OIF:SP:41:5842,1,"La Fourche",48.778751,2.009327,0,0,OIF:SA:41:5842,Europe/Paris,,OIF, +OIF:SP:41:5843,1,"Cité Million",48.779603,2.011742,0,0,OIF:SA:41:5843,Europe/Paris,,OIF, +OIF:SP:41:5844,1,"Jean Maréchal",48.778154,2.03857,0,0,OIF:SA:41:5844,Europe/Paris,,OIF, +OIF:SP:41:5845,1,"Place Claudel",48.779059,2.04104,0,0,OIF:SA:41:5845,Europe/Paris,,OIF, +OIF:SP:41:5846,1,"Etienne Marcel",48.781032,2.04296,0,0,OIF:SA:41:5846,Europe/Paris,,OIF, +OIF:SP:41:5847,1,"Fulgence Bienvenüe",48.782206,2.045293,0,0,OIF:SA:41:5847,Europe/Paris,,OIF, +OIF:SP:41:5849,1,"Denton",48.789121,2.042778,0,0,OIF:SA:41:5849,Europe/Paris,,OIF, +OIF:SP:41:5851,1,"Saint-Exupéry",48.796047,2.04848,0,0,OIF:SA:41:5851,Europe/Paris,,OIF, +OIF:SP:41:5853,1,"Rue Henri Barbusse",48.79506,2.064674,0,0,OIF:SA:36:2094,Europe/Paris,,OIF, +OIF:SP:41:5854,1,"Rue du Plateau",48.794628,2.068268,0,0,OIF:SA:36:2107,Europe/Paris,,OIF, +OIF:SP:41:5855,1,"École Bizet",48.794132,2.071495,0,0,OIF:SA:36:2103,Europe/Paris,,OIF, +OIF:SP:41:5856,1,"Evéché",48.794752,2.124955,0,0,OIF:SA:2:266,Europe/Paris,,OIF, +OIF:SP:41:5857,1,"Versailles Château - Rive Gauche Gare",48.799413,2.12812,0,0,OIF:SA:8739315,Europe/Paris,,OIF, +OIF:SP:41:5859,1,"Allée des Yvelines",48.774742,1.999507,0,0,OIF:SA:41:5859,Europe/Paris,,OIF, +OIF:SP:41:5860,1,"Yves Farge",48.776741,1.994462,0,0,OIF:SA:8741449,Europe/Paris,,OIF, +OIF:SP:41:5861,1,"Paul Langevin",48.776279,1.990154,0,0,OIF:SA:8741453,Europe/Paris,,OIF, +OIF:SP:41:5862,1,"Le Stade",48.77338,1.98846,0,0,OIF:SA:41:5837,Europe/Paris,,OIF, +OIF:SP:41:5863,1,"Pasteur",48.773582,1.983835,0,0,OIF:SA:8741454,Europe/Paris,,OIF, +OIF:SP:41:5864,1,"Youri Gagarine",48.773995,1.980596,0,0,OIF:SA:41:5835,Europe/Paris,,OIF, +OIF:SP:41:5865,1,"Les Templiers",48.772365,1.973699,0,0,OIF:SA:22:108,Europe/Paris,,OIF, +OIF:SP:41:5866,1,"La Passerelle",48.77059,1.969306,0,0,OIF:SA:8741457,Europe/Paris,,OIF, +OIF:SP:41:5867,1,"Les Réaux",48.768515,1.964126,0,0,OIF:SA:41:5832,Europe/Paris,,OIF, +OIF:SP:41:5868,1,"La Petite Villedieu",48.767131,1.961131,0,0,OIF:SA:8741456,Europe/Paris,,OIF, +OIF:SP:41:5869,1,"Nouvelle Amsterdam",48.766417,1.954515,0,0,OIF:SA:22:112,Europe/Paris,,OIF, +OIF:SP:41:5870,1,"Franche-Comté Bourgogne",48.766107,1.950085,0,0,OIF:SA:41:5829,Europe/Paris,,OIF, +OIF:SP:41:5871,1,"Les Pyramides",48.763852,1.947831,0,0,OIF:SA:8741455,Europe/Paris,,OIF, +OIF:SP:41:5872,1,"Lycée des Sept Mares",48.764657,1.943991,0,0,OIF:SA:41:5827,Europe/Paris,,OIF, +OIF:SP:41:5873,1,"Normandie",48.765683,1.941617,0,0,OIF:SA:41:5826,Europe/Paris,,OIF, +OIF:SP:41:5874,1,"Les Gâtines",48.763135,1.937504,0,0,OIF:SA:41:5825,Europe/Paris,,OIF, +OIF:SP:41:5875,1,"Béarn",48.761151,1.935534,0,0,OIF:SA:41:5824,Europe/Paris,,OIF, +OIF:SP:41:5876,1,"Marie Curie",48.757273,1.929256,0,0,OIF:SA:41:5823,Europe/Paris,,OIF, +OIF:SP:41:5880,1,"Hypermarché",48.762648,1.921451,0,0,OIF:SA:41:5819,Europe/Paris,,OIF, +OIF:SP:41:5882,1,"Allée des Yvelines",48.774624,1.999167,0,0,OIF:SA:41:5859,Europe/Paris,,OIF, +OIF:SP:41:5884,1,"Versailles Château - Rive Gauche Gare",48.800158,2.127872,0,0,OIF:SA:8739315,Europe/Paris,,OIF, +OIF:SP:41:5885,1,"Evéché",48.794184,2.124359,0,0,OIF:SA:2:266,Europe/Paris,,OIF, +OIF:SP:41:5886,1,"École Bizet",48.794408,2.070568,0,0,OIF:SA:36:2103,Europe/Paris,,OIF, +OIF:SP:41:5887,1,"Rue du Plateau",48.794745,2.068349,0,0,OIF:SA:36:2107,Europe/Paris,,OIF, +OIF:SP:41:5888,1,"Rue Henri Barbusse",48.795249,2.064605,0,0,OIF:SA:36:2094,Europe/Paris,,OIF, +OIF:SP:41:5889,1,"Les Cottages",48.795804,2.060018,0,0,OIF:SA:36:2093,Europe/Paris,,OIF, +OIF:SP:41:5890,1,"Saint-Exupéry",48.7961,2.048262,0,0,OIF:SA:41:5851,Europe/Paris,,OIF, +OIF:SP:41:5891,1,"Pas du Lac",48.791818,2.042899,0,0,OIF:SA:22:10492,Europe/Paris,,OIF, +OIF:SP:41:5892,1,"Denton",48.788959,2.042847,0,0,OIF:SA:41:5849,Europe/Paris,,OIF, +OIF:SP:41:5894,1,"Fulgence Bienvenüe",48.782161,2.044967,0,0,OIF:SA:41:5847,Europe/Paris,,OIF, +OIF:SP:41:5895,1,"Etienne Marcel",48.780708,2.04254,0,0,OIF:SA:41:5846,Europe/Paris,,OIF, +OIF:SP:41:5896,1,"Place Claudel",48.779265,2.040576,0,0,OIF:SA:41:5845,Europe/Paris,,OIF, +OIF:SP:41:5897,1,"Jean Maréchal",48.777955,2.038027,0,0,OIF:SA:41:5844,Europe/Paris,,OIF, +OIF:SP:41:5898,1,"La Fourche",48.778515,2.008268,0,0,OIF:SA:41:5842,Europe/Paris,,OIF, +OIF:SP:41:5899,1,"République P.V.Couturier",48.777001,2.003844,0,0,OIF:SA:41:5841,Europe/Paris,,OIF, +OIF:SP:41:5900,1,"Hôtel de Ville",48.77585,2.000451,0,0,OIF:SA:41:5840,Europe/Paris,,OIF, +OIF:SP:41:5901,1,"Rue de Satory",48.799569,2.125004,0,0,OIF:SA:2:425,Europe/Paris,,OIF, +OIF:SP:41:5902,1,"Grille de l'Orangerie",48.800828,2.120454,0,0,OIF:SA:2:248,Europe/Paris,,OIF, +OIF:SP:41:5903,1,"Stand de Tir",48.802507,2.114529,0,0,OIF:SA:2:102,Europe/Paris,,OIF, +OIF:SP:41:5904,1,"Les Matelots",48.803504,2.104796,0,0,OIF:SA:8741451,Europe/Paris,,OIF, +OIF:SP:41:5905,1,"La Ménagerie",48.802684,2.094636,0,0,OIF:SA:2:106,Europe/Paris,,OIF, +OIF:SP:41:5906,1,"INRA",48.80192,2.086081,0,0,OIF:SA:41:5906,Europe/Paris,,OIF, +OIF:SP:41:5907,1,"République",48.798627,2.067934,0,0,OIF:SA:21:772,Europe/Paris,,OIF, +OIF:SP:41:5908,1,"Les Deux Ponts",48.797672,2.059137,0,0,OIF:SA:36:2090,Europe/Paris,,OIF, +OIF:SP:41:5909,1,"Les Deux Ponts",48.797465,2.059247,0,0,OIF:SA:36:2090,Europe/Paris,,OIF, +OIF:SP:41:5910,1,"République",48.799081,2.069864,0,0,OIF:SA:21:772,Europe/Paris,,OIF, +OIF:SP:41:5911,1,"INRA",48.801772,2.0883,0,0,OIF:SA:41:5906,Europe/Paris,,OIF, +OIF:SP:41:5912,1,"La Ménagerie",48.802425,2.09548,0,0,OIF:SA:2:106,Europe/Paris,,OIF, +OIF:SP:41:5913,1,"Les Matelots",48.803023,2.106866,0,0,OIF:SA:8741451,Europe/Paris,,OIF, +OIF:SP:41:5914,1,"Stand de Tir",48.802289,2.1134,0,0,OIF:SA:2:102,Europe/Paris,,OIF, +OIF:SP:41:5915,1,"Grille de l'Orangerie",48.800497,2.121122,0,0,OIF:SA:2:248,Europe/Paris,,OIF, +OIF:SP:41:5916,1,"Rue de Satory",48.79964,2.124187,0,0,OIF:SA:2:425,Europe/Paris,,OIF, +OIF:SP:41:5917,1,"France Miniature",48.778167,1.957842,0,0,OIF:SA:22:106,Europe/Paris,,OIF, +OIF:SP:41:5918,1,"André Malraux",48.778342,1.948158,0,0,OIF:SA:22:104,Europe/Paris,,OIF, +OIF:SP:41:5919,1,"Les Élancourtines",48.777256,1.94584,0,0,OIF:SA:41:5919,Europe/Paris,,OIF, +OIF:SP:41:5920,1,"Parc de Coudrays",48.774433,1.945671,0,0,OIF:SA:41:5920,Europe/Paris,,OIF, +OIF:SP:41:5921,1,"Le Bois Joli",48.774701,1.939577,0,0,OIF:SA:22:102,Europe/Paris,,OIF, +OIF:SP:41:5922,1,"La Villeparc",48.772077,1.939801,0,0,OIF:SA:41:5922,Europe/Paris,,OIF, +OIF:SP:41:5923,1,"Bois de Maurepas",48.76918,1.941618,0,0,OIF:SA:22:100,Europe/Paris,,OIF, +OIF:SP:41:5924,1,"Normandie",48.766878,1.941567,0,0,OIF:SA:41:5826,Europe/Paris,,OIF, +OIF:SP:41:5925,1,"Les Villageoises",48.767786,2.033313,0,0,OIF:SA:41:5925,Europe/Paris,,OIF, +OIF:SP:41:5926,1,"Mare aux Carats - Hôtel de Ville",48.769955,2.034348,0,0,OIF:SA:41:5926,Europe/Paris,,OIF, +OIF:SP:41:5927,1,"Le Hameau",48.774257,2.036498,0,0,OIF:SA:41:5927,Europe/Paris,,OIF, +OIF:SP:41:5928,1,"D'Alembert",48.773491,2.046511,0,0,OIF:SA:24:15199,Europe/Paris,,OIF, +OIF:SP:41:5929,1,"Jean Monnet",48.768944,2.062323,0,0,OIF:SA:24:15200,Europe/Paris,,OIF, +OIF:SP:41:5930,1,"Le Corbusier",48.765203,2.069277,0,0,OIF:SA:24:15201,Europe/Paris,,OIF, +OIF:SP:41:5931,1,"Jules Michelet",48.766394,2.070957,0,0,OIF:SA:24:15202,Europe/Paris,,OIF, +OIF:SP:41:5932,1,"Gaudi",48.766242,2.075444,0,0,OIF:SA:41:5932,Europe/Paris,,OIF, +OIF:SP:41:5935,1,"La Minière",48.775066,2.091501,0,0,OIF:SA:24:15205,Europe/Paris,,OIF, +OIF:SP:41:5936,1,"Lycée Franco-Allemand",48.770846,2.121545,0,0,OIF:SA:2:490,Europe/Paris,,OIF, +OIF:SP:41:5938,1,"La Minière",48.774197,2.092552,0,0,OIF:SA:24:15205,Europe/Paris,,OIF, +OIF:SP:41:5941,1,"Gaudi",48.766243,2.076056,0,0,OIF:SA:41:5932,Europe/Paris,,OIF, +OIF:SP:41:5942,1,"Jules Michelet",48.766709,2.071213,0,0,OIF:SA:24:15202,Europe/Paris,,OIF, +OIF:SP:41:5943,1,"Le Corbusier",48.76514,2.069005,0,0,OIF:SA:24:15201,Europe/Paris,,OIF, +OIF:SP:41:5944,1,"Jean Monnet",48.769624,2.060973,0,0,OIF:SA:24:15200,Europe/Paris,,OIF, +OIF:SP:41:5945,1,"D'Alembert",48.774134,2.044808,0,0,OIF:SA:24:15199,Europe/Paris,,OIF, +OIF:SP:41:5946,1,"Le Hameau",48.77359,2.035741,0,0,OIF:SA:41:5927,Europe/Paris,,OIF, +OIF:SP:41:5947,1,"Mare aux Carats - Hôtel de Ville",48.769423,2.033712,0,0,OIF:SA:41:5926,Europe/Paris,,OIF, +OIF:SP:41:5948,1,"Les Villageoises",48.767101,2.03261,0,0,OIF:SA:41:5925,Europe/Paris,,OIF, +OIF:SP:41:5949,1,"Jean Goujon",48.766425,2.018147,0,0,OIF:SA:41:5949,Europe/Paris,,OIF, +OIF:SP:41:5950,1,"Normandie",48.766879,1.941799,0,0,OIF:SA:41:5826,Europe/Paris,,OIF, +OIF:SP:41:5951,1,"Bois de Maurepas",48.76936,1.94178,0,0,OIF:SA:22:100,Europe/Paris,,OIF, +OIF:SP:41:5952,1,"La Villeparc",48.773335,1.939682,0,0,OIF:SA:41:5922,Europe/Paris,,OIF, +OIF:SP:41:5953,1,"Le Bois Joli",48.774656,1.939835,0,0,OIF:SA:22:102,Europe/Paris,,OIF, +OIF:SP:41:5954,1,"Parc de Coudrays",48.77429,1.94574,0,0,OIF:SA:41:5920,Europe/Paris,,OIF, +OIF:SP:41:5955,1,"Les Élancourtines",48.777452,1.945444,0,0,OIF:SA:41:5919,Europe/Paris,,OIF, +OIF:SP:41:5956,1,"André Malraux",48.777924,1.949371,0,0,OIF:SA:22:104,Europe/Paris,,OIF, +OIF:SP:41:5957,1,"France Miniature",48.777942,1.957952,0,0,OIF:SA:22:106,Europe/Paris,,OIF, +OIF:SP:41:5958,1,"60 Arpents - Technocentre",48.763205,2.084433,0,0,OIF:SA:41:5958,Europe/Paris,,OIF, +OIF:SP:41:5959,1,"Le Gradient",48.763372,2.086906,0,0,OIF:SA:41:5959,Europe/Paris,,OIF, +OIF:SP:41:5960,1,"L'Étang",48.757945,2.087911,0,0,OIF:SA:25:307,Europe/Paris,,OIF, +OIF:SP:41:5961,1,"Trou Berger",48.758576,2.075877,0,0,OIF:SA:41:5961,Europe/Paris,,OIF, +OIF:SP:41:5962,1,"Villaroy Sud",48.75542,2.075689,0,0,OIF:SA:24:6413,Europe/Paris,,OIF, +OIF:SP:41:5964,1,"Le Corbusier",48.765156,2.068094,0,0,OIF:SA:24:15201,Europe/Paris,,OIF, +OIF:SP:41:5965,1,"Jean Jaurès",48.774573,1.996856,0,0,OIF:SA:41:5965,Europe/Paris,,OIF, +OIF:SP:41:5967,1,"Les Nouveaux Horizons",48.768886,1.953382,0,0,OIF:SA:41:5967,Europe/Paris,,OIF, +OIF:SP:41:5968,1,"Allée de la Garonne",48.772121,1.953371,0,0,OIF:SA:41:5968,Europe/Paris,,OIF, +OIF:SP:41:5970,1,"Bretagne",48.764266,1.934517,0,0,OIF:SA:41:5970,Europe/Paris,,OIF, +OIF:SP:41:5971,1,"Cornouaille",48.763763,1.931979,0,0,OIF:SA:41:5971,Europe/Paris,,OIF, +OIF:SP:41:5972,1,"Armorique",48.765164,1.929072,0,0,OIF:SA:41:5972,Europe/Paris,,OIF, +OIF:SP:41:5973,1,"Îles Glénan",48.767402,1.926267,0,0,OIF:SA:41:5973,Europe/Paris,,OIF, +OIF:SP:41:5974,1,"La Croix Blanche",48.767671,1.921098,0,0,OIF:SA:41:5974,Europe/Paris,,OIF, +OIF:SP:41:5975,1,"Grand'Mare",48.765844,1.917822,0,0,OIF:SA:41:5975,Europe/Paris,,OIF, +OIF:SP:41:5976,1,"Le Clos Breton",48.764924,1.916837,0,0,OIF:SA:41:5976,Europe/Paris,,OIF, +OIF:SP:41:5977,1,"Le Clos Breton",48.76497,1.917027,0,0,OIF:SA:41:5976,Europe/Paris,,OIF, +OIF:SP:41:5978,1,"Grand'Mare",48.765719,1.917945,0,0,OIF:SA:41:5975,Europe/Paris,,OIF, +OIF:SP:41:5979,1,"La Croix Blanche",48.767573,1.921167,0,0,OIF:SA:41:5974,Europe/Paris,,OIF, +OIF:SP:41:5980,1,"Îles Glénan",48.767151,1.926432,0,0,OIF:SA:41:5973,Europe/Paris,,OIF, +OIF:SP:41:5981,1,"Armorique",48.765039,1.929222,0,0,OIF:SA:41:5972,Europe/Paris,,OIF, +OIF:SP:41:5982,1,"Cornouaille",48.763558,1.93232,0,0,OIF:SA:41:5971,Europe/Paris,,OIF, +OIF:SP:41:5983,1,"Bretagne",48.764438,1.934856,0,0,OIF:SA:41:5970,Europe/Paris,,OIF, +OIF:SP:41:5985,1,"Allée de la Garonne",48.771648,1.954395,0,0,OIF:SA:41:5968,Europe/Paris,,OIF, +OIF:SP:41:5986,1,"Les Nouveaux Horizons",48.768947,1.95296,0,0,OIF:SA:41:5967,Europe/Paris,,OIF, +OIF:SP:41:5988,1,"Jean Jaurès",48.774492,1.997006,0,0,OIF:SA:41:5965,Europe/Paris,,OIF, +OIF:SP:41:5989,1,"Le Corbusier",48.764367,2.069077,0,0,OIF:SA:24:15201,Europe/Paris,,OIF, +OIF:SP:41:5990,1,"Gare Routière Technocentre Tcsp",48.76141,2.077195,0,0,OIF:SA:41:5990,Europe/Paris,,OIF, +OIF:SP:41:5991,1,"Golf National",48.755602,2.072643,0,0,OIF:SA:24:6342,Europe/Paris,,OIF, +OIF:SP:41:5992,1,"Villaroy Sud",48.755358,2.075934,0,0,OIF:SA:24:6413,Europe/Paris,,OIF, +OIF:SP:41:5993,1,"Le Gradient",48.763911,2.086578,0,0,OIF:SA:41:5959,Europe/Paris,,OIF, +OIF:SP:41:5994,1,"60 Arpents - Technocentre",48.763051,2.084012,0,0,OIF:SA:41:5958,Europe/Paris,,OIF, +OIF:SP:41:5996,1,"Chapelle de la Villedieu",48.767321,1.964502,0,0,OIF:SA:41:5996,Europe/Paris,,OIF, +OIF:SP:41:5997,1,"Bois de l'Étang",48.760351,1.965898,0,0,OIF:SA:41:5997,Europe/Paris,,OIF, +OIF:SP:41:5998,1,"Émile Dureuil",48.759085,1.960619,0,0,OIF:SA:41:5998,Europe/Paris,,OIF, +OIF:SP:41:5999,1,"Mairie",48.757753,1.957257,0,0,OIF:SA:41:5999,Europe/Paris,,OIF, +OIF:SP:41:6000,1,"Général Leclerc",48.755389,1.954637,0,0,OIF:SA:24:15103,Europe/Paris,,OIF, +OIF:SP:41:6001,1,"Cité Orly Parc",48.75607,1.948256,0,0,OIF:SA:24:15101,Europe/Paris,,OIF, +OIF:SP:41:6002,1,"La Verrière Gare",48.754967,1.94382,0,0,OIF:SA:8739325,Europe/Paris,,OIF, +OIF:SP:41:6003,1,"Georges Lapierre",48.751238,1.946621,0,0,OIF:SA:41:6003,Europe/Paris,,OIF, +OIF:SP:41:6004,1,"Hôpital Mgen",48.748723,1.949942,0,0,OIF:SA:41:6004,Europe/Paris,,OIF, +OIF:SP:41:6005,1,"Château d'Eau",48.747244,1.951353,0,0,OIF:SA:41:6005,Europe/Paris,,OIF, +OIF:SP:41:6007,1,"Avenue de Dampierre",48.742397,1.953455,0,0,OIF:SA:41:6007,Europe/Paris,,OIF, +OIF:SP:41:6008,1,"E.Fontanier",48.742927,1.958955,0,0,OIF:SA:41:6008,Europe/Paris,,OIF, +OIF:SP:41:6009,1,"Place du Mesnil",48.742227,1.962005,0,0,OIF:SA:24:7166,Europe/Paris,,OIF, +OIF:SP:41:6010,1,"Place du Mesnil",48.742929,1.962231,0,0,OIF:SA:24:7166,Europe/Paris,,OIF, +OIF:SP:41:6011,1,"G.S.Champmesnil",48.745155,1.95565,0,0,OIF:SA:41:6011,Europe/Paris,,OIF, +OIF:SP:41:6012,1,"Avenue de Dampierre",48.743003,1.954484,0,0,OIF:SA:41:6007,Europe/Paris,,OIF, +OIF:SP:41:6014,1,"Château d'Eau",48.747361,1.951421,0,0,OIF:SA:41:6005,Europe/Paris,,OIF, +OIF:SP:41:6015,1,"Hôpital Mgen",48.748903,1.949955,0,0,OIF:SA:41:6004,Europe/Paris,,OIF, +OIF:SP:41:6016,1,"Georges Lapierre",48.751497,1.946265,0,0,OIF:SA:41:6003,Europe/Paris,,OIF, +OIF:SP:41:6017,1,"La Verrière Gare",48.754914,1.943997,0,0,OIF:SA:8739325,Europe/Paris,,OIF, +OIF:SP:41:6018,1,"Général Leclerc",48.755022,1.954939,0,0,OIF:SA:24:15103,Europe/Paris,,OIF, +OIF:SP:41:6019,1,"Mairie",48.757033,1.957221,0,0,OIF:SA:41:5999,Europe/Paris,,OIF, +OIF:SP:41:6020,1,"Émile Dureuil",48.759159,1.961284,0,0,OIF:SA:41:5998,Europe/Paris,,OIF, +OIF:SP:41:6021,1,"Bois de l'Étang",48.760297,1.966102,0,0,OIF:SA:41:5997,Europe/Paris,,OIF, +OIF:SP:41:6022,1,"Chapelle de la Villedieu",48.766354,1.965774,0,0,OIF:SA:41:5996,Europe/Paris,,OIF, +OIF:SP:41:6024,1,"Saint-Quentin Gare",48.787865,2.043928,0,0,OIF:SA:8739384,Europe/Paris,,OIF, +OIF:SP:41:6026,1,"Saint-Quentin Gare",48.788098,2.043668,0,0,OIF:SA:8739384,Europe/Paris,,OIF, +OIF:SP:41:6029,1,"Pierre Stassinet",48.782683,1.959291,0,0,OIF:SA:41:6029,Europe/Paris,,OIF, +OIF:SP:41:6030,1,"La Ferme",48.779166,1.958243,0,0,OIF:SA:41:6030,Europe/Paris,,OIF, +OIF:SP:41:6031,1,"Rue Ocre",48.776106,1.954416,0,0,OIF:SA:41:6031,Europe/Paris,,OIF, +OIF:SP:41:6032,1,"Les Quatre Arbres",48.773973,1.95348,0,0,OIF:SA:41:6032,Europe/Paris,,OIF, +OIF:SP:41:6033,1,"Centre Commercial",48.761877,1.945874,0,0,OIF:SA:41:6033,Europe/Paris,,OIF, +OIF:SP:41:6034,1,"La Verrière Gare",48.755953,1.942928,0,0,OIF:SA:8739325,Europe/Paris,,OIF, +OIF:SP:41:6035,1,"Pont de Chevreuse",48.752479,1.933603,0,0,OIF:SA:25:10521,Europe/Paris,,OIF, +OIF:SP:41:6036,1,"Les Fontaines",48.749121,1.92667,0,0,OIF:SA:25:10519,Europe/Paris,,OIF, +OIF:SP:41:6037,1,"Avenue de Maurepas",48.7507,1.923164,0,0,OIF:SA:22:119,Europe/Paris,,OIF, +OIF:SP:41:6038,1,"Rue des Cognassiers",48.748663,1.92159,0,0,OIF:SA:22:121,Europe/Paris,,OIF, +OIF:SP:41:6039,1,"La Prévenderie",48.747436,1.920159,0,0,OIF:SA:22:123,Europe/Paris,,OIF, +OIF:SP:41:6040,1,"Mairie",48.747014,1.917906,0,0,OIF:SA:41:6040,Europe/Paris,,OIF, +OIF:SP:41:6041,1,"Les Écoles",48.750242,1.918138,0,0,OIF:SA:41:6041,Europe/Paris,,OIF, +OIF:SP:41:6042,1,"La Verrière Gare",48.755503,1.942646,0,0,OIF:SA:8739325,Europe/Paris,,OIF, +OIF:SP:41:6043,1,"Centre Commercial",48.76133,1.946069,0,0,OIF:SA:41:6033,Europe/Paris,,OIF, +OIF:SP:41:6044,1,"Les Quatre Arbres",48.774433,1.953817,0,0,OIF:SA:41:6032,Europe/Paris,,OIF, +OIF:SP:41:6045,1,"Rue Ocre",48.77671,1.954833,0,0,OIF:SA:41:6031,Europe/Paris,,OIF, +OIF:SP:41:6046,1,"La Ferme",48.779319,1.958323,0,0,OIF:SA:41:6030,Europe/Paris,,OIF, +OIF:SP:41:6047,1,"Pierre Stassinet",48.782557,1.959265,0,0,OIF:SA:41:6029,Europe/Paris,,OIF, +OIF:SP:41:6048,1,"Les Côtes",48.781007,1.966362,0,0,OIF:SA:41:6048,Europe/Paris,,OIF, +OIF:SP:41:6050,1,"Mairie",48.746861,1.917948,0,0,OIF:SA:41:6040,Europe/Paris,,OIF, +OIF:SP:41:6051,1,"La Prévenderie",48.747328,1.920269,0,0,OIF:SA:22:123,Europe/Paris,,OIF, +OIF:SP:41:6052,1,"Rue des Cognassiers",48.748789,1.92163,0,0,OIF:SA:22:121,Europe/Paris,,OIF, +OIF:SP:41:6053,1,"Avenue de Maurepas",48.750458,1.923275,0,0,OIF:SA:22:119,Europe/Paris,,OIF, +OIF:SP:41:6054,1,"Les Fontaines",48.749384,1.927442,0,0,OIF:SA:25:10519,Europe/Paris,,OIF, +OIF:SP:41:6055,1,"Pont de Chevreuse",48.752408,1.933685,0,0,OIF:SA:25:10521,Europe/Paris,,OIF, +OIF:SP:41:6056,1,"Pissaloup",48.795776,1.981752,0,0,OIF:SA:22:9672,Europe/Paris,,OIF, +OIF:SP:41:6057,1,"Diderot",48.796731,1.979283,0,0,OIF:SA:41:6057,Europe/Paris,,OIF, +OIF:SP:41:6058,1,"De Lattre de Tassigny",48.79758,1.974706,0,0,OIF:SA:22:9670,Europe/Paris,,OIF, +OIF:SP:41:6059,1,"Mail de l'Europe",48.793344,1.971158,0,0,OIF:SA:41:6059,Europe/Paris,,OIF, +OIF:SP:41:6060,1,"Gay Lussac",48.791809,1.974638,0,0,OIF:SA:41:6060,Europe/Paris,,OIF, +OIF:SP:41:6061,1,"La Revanche",48.790341,1.9736,0,0,OIF:SA:41:6061,Europe/Paris,,OIF, +OIF:SP:41:6062,1,"La Revanche",48.790954,1.974399,0,0,OIF:SA:41:6061,Europe/Paris,,OIF, +OIF:SP:41:6063,1,"Gay Lussac",48.7925,1.974401,0,0,OIF:SA:41:6060,Europe/Paris,,OIF, +OIF:SP:41:6064,1,"Mail de l'Europe",48.793635,1.972203,0,0,OIF:SA:41:6059,Europe/Paris,,OIF, +OIF:SP:41:6065,1,"De Lattre de Tassigny",48.79767,1.974923,0,0,OIF:SA:22:9670,Europe/Paris,,OIF, +OIF:SP:41:6066,1,"Diderot",48.796542,1.979461,0,0,OIF:SA:41:6057,Europe/Paris,,OIF, +OIF:SP:41:6067,1,"Pissaloup",48.795245,1.98147,0,0,OIF:SA:22:9672,Europe/Paris,,OIF, +OIF:SP:41:6068,1,"Les Sept Mares",48.76963,1.947271,0,0,OIF:SA:41:6068,Europe/Paris,,OIF, +OIF:SP:41:6071,1,"Les Sept Mares",48.769254,1.947709,0,0,OIF:SA:41:6068,Europe/Paris,,OIF, +OIF:SP:41:6072,1,"Lycée E.de Breteuil",48.780467,2.039645,0,0,OIF:SA:41:6072,Europe/Paris,,OIF, +OIF:SP:41:6073,1,"Le Hameau",48.773637,2.036774,0,0,OIF:SA:41:5927,Europe/Paris,,OIF, +OIF:SP:41:6074,1,"Paul Fort",48.772604,2.040451,0,0,OIF:SA:41:6074,Europe/Paris,,OIF, +OIF:SP:41:6075,1,"Bergson",48.771793,2.043339,0,0,OIF:SA:41:6075,Europe/Paris,,OIF, +OIF:SP:41:6076,1,"Les Arcades du Lac",48.769885,2.042194,0,0,OIF:SA:41:6076,Europe/Paris,,OIF, +OIF:SP:41:6077,1,"Sourderie - Hôtel de Ville",48.769149,2.039206,0,0,OIF:SA:41:6077,Europe/Paris,,OIF, +OIF:SP:41:6078,1,"La Remise",48.76684,2.039288,0,0,OIF:SA:41:6078,Europe/Paris,,OIF, +OIF:SP:41:6079,1,"Lycée Descartes",48.764795,2.03741,0,0,OIF:SA:24:15239,Europe/Paris,,OIF, +OIF:SP:41:6080,1,"Les Villageoises",48.767693,2.032104,0,0,OIF:SA:41:5925,Europe/Paris,,OIF, +OIF:SP:41:6081,1,"Le Clos",48.768797,2.028045,0,0,OIF:SA:41:6081,Europe/Paris,,OIF, +OIF:SP:41:6083,1,"Le Manet",48.768408,2.023656,0,0,OIF:SA:41:6083,Europe/Paris,,OIF, +OIF:SP:41:6084,1,"Carnac",48.768915,2.018214,0,0,OIF:SA:41:6084,Europe/Paris,,OIF, +OIF:SP:41:6085,1,"Le Buisson de la Couldre",48.771798,2.014008,0,0,OIF:SA:41:6085,Europe/Paris,,OIF, +OIF:SP:41:6086,1,"Observatoire",48.772813,2.010507,0,0,OIF:SA:41:6086,Europe/Paris,,OIF, +OIF:SP:41:6087,1,"Trappes Gare",48.774572,2.006375,0,0,OIF:SA:8739383,Europe/Paris,,OIF, +OIF:SP:41:6088,1,"Niepce",48.794516,2.0474,0,0,OIF:SA:41:6088,Europe/Paris,,OIF, +OIF:SP:41:6089,1,"Newton",48.792654,2.046621,0,0,OIF:SA:2:1206,Europe/Paris,,OIF, +OIF:SP:41:6090,1,"Trappes Gare",48.774472,2.0059,0,0,OIF:SA:8739383,Europe/Paris,,OIF, +OIF:SP:41:6091,1,"Observatoire",48.772687,2.010548,0,0,OIF:SA:41:6086,Europe/Paris,,OIF, +OIF:SP:41:6092,1,"Le Buisson de la Couldre",48.771646,2.014226,0,0,OIF:SA:41:6085,Europe/Paris,,OIF, +OIF:SP:41:6093,1,"Carnac",48.769463,2.017938,0,0,OIF:SA:41:6084,Europe/Paris,,OIF, +OIF:SP:41:6094,1,"Jean Goujon",48.766029,2.017837,0,0,OIF:SA:41:5949,Europe/Paris,,OIF, +OIF:SP:41:6095,1,"Le Manet",48.769013,2.024373,0,0,OIF:SA:41:6083,Europe/Paris,,OIF, +OIF:SP:41:6097,1,"Le Clos",48.76851,2.028237,0,0,OIF:SA:41:6081,Europe/Paris,,OIF, +OIF:SP:41:6098,1,"Les Villageoises",48.767577,2.032186,0,0,OIF:SA:41:5925,Europe/Paris,,OIF, +OIF:SP:41:6099,1,"Lycée Descartes",48.7653,2.038032,0,0,OIF:SA:24:15239,Europe/Paris,,OIF, +OIF:SP:41:6100,1,"La Remise",48.767183,2.039775,0,0,OIF:SA:41:6078,Europe/Paris,,OIF, +OIF:SP:41:6101,1,"Sourderie - Hôtel de Ville",48.769213,2.03941,0,0,OIF:SA:41:6077,Europe/Paris,,OIF, +OIF:SP:41:6102,1,"Les Arcades du Lac",48.769876,2.042343,0,0,OIF:SA:41:6076,Europe/Paris,,OIF, +OIF:SP:41:6103,1,"Bergson",48.77191,2.043284,0,0,OIF:SA:41:6075,Europe/Paris,,OIF, +OIF:SP:41:6104,1,"Paul Fort",48.772846,2.03996,0,0,OIF:SA:41:6074,Europe/Paris,,OIF, +OIF:SP:41:6105,1,"Lycée E.de Breteuil",48.780747,2.040214,0,0,OIF:SA:41:6072,Europe/Paris,,OIF, +OIF:SP:41:6106,1,"Newton",48.792627,2.046758,0,0,OIF:SA:2:1206,Europe/Paris,,OIF, +OIF:SP:41:6107,1,"Niepce",48.794633,2.047318,0,0,OIF:SA:41:6088,Europe/Paris,,OIF, +OIF:SP:41:6108,1,"Méliès - Croix Bonnet",48.801045,2.007376,0,0,OIF:SA:41:6108,Europe/Paris,,OIF, +OIF:SP:41:6109,1,"René Clair",48.801414,2.004313,0,0,OIF:SA:41:6109,Europe/Paris,,OIF, +OIF:SP:41:6110,1,"Jacques Tati",48.803565,2.00551,0,0,OIF:SA:41:6110,Europe/Paris,,OIF, +OIF:SP:41:6111,1,"Erich Von Stroheim",48.805839,2.011741,0,0,OIF:SA:41:6111,Europe/Paris,,OIF, +OIF:SP:41:6112,1,"Arletty",48.803671,2.011319,0,0,OIF:SA:41:6112,Europe/Paris,,OIF, +OIF:SP:41:6113,1,"Fritz Lang",48.800708,2.012181,0,0,OIF:SA:41:6113,Europe/Paris,,OIF, +OIF:SP:41:6114,1,"Croix Blanche",48.798466,2.017433,0,0,OIF:SA:41:6114,Europe/Paris,,OIF, +OIF:SP:41:6115,1,"Paul Vaillant Couturier",48.799652,2.020732,0,0,OIF:SA:41:6115,Europe/Paris,,OIF, +OIF:SP:41:6116,1,"Église",48.802098,2.017724,0,0,OIF:SA:41:6116,Europe/Paris,,OIF, +OIF:SP:41:6118,1,"Hôtel de Ville",48.800899,2.029908,0,0,OIF:SA:41:6118,Europe/Paris,,OIF, +OIF:SP:41:6119,1,"Chemin Vert",48.798629,2.031636,0,0,OIF:SA:41:6119,Europe/Paris,,OIF, +OIF:SP:41:6120,1,"Vieil Étang",48.794097,2.037961,0,0,OIF:SA:41:6120,Europe/Paris,,OIF, +OIF:SP:41:6121,1,"André Malraux",48.778983,2.035995,0,0,OIF:SA:41:6121,Europe/Paris,,OIF, +OIF:SP:41:6122,1,"Les Blés d'Or",48.780155,2.033594,0,0,OIF:SA:41:6122,Europe/Paris,,OIF, +OIF:SP:41:6123,1,"Le Verger Saint-Martin",48.776857,2.030581,0,0,OIF:SA:41:6123,Europe/Paris,,OIF, +OIF:SP:41:6124,1,"Les Quatre Pavés",48.775059,2.026974,0,0,OIF:SA:41:6124,Europe/Paris,,OIF, +OIF:SP:41:6125,1,"Les Trois Peuples",48.776719,2.022164,0,0,OIF:SA:41:6125,Europe/Paris,,OIF, +OIF:SP:41:6126,1,"Les Bosquets",48.775749,2.019096,0,0,OIF:SA:41:6126,Europe/Paris,,OIF, +OIF:SP:41:6127,1,"Ch.de Commerce et d'Industrie",48.774934,2.016871,0,0,OIF:SA:41:6127,Europe/Paris,,OIF, +OIF:SP:41:6128,1,"La Mare Savin",48.771863,1.998438,0,0,OIF:SA:41:6128,Europe/Paris,,OIF, +OIF:SP:41:6129,1,"Émile Clapeyron",48.770553,1.996134,0,0,OIF:SA:41:6129,Europe/Paris,,OIF, +OIF:SP:41:6130,1,"Hennequin",48.7682,1.996884,0,0,OIF:SA:25:10531,Europe/Paris,,OIF, +OIF:SP:41:6131,1,"Papin",48.766494,1.997466,0,0,OIF:SA:41:6131,Europe/Paris,,OIF, +OIF:SP:41:6132,1,"Einstein",48.764838,1.993575,0,0,OIF:SA:25:1018,Europe/Paris,,OIF, +OIF:SP:41:6133,1,"Copernic",48.766168,1.990303,0,0,OIF:SA:25:10529,Europe/Paris,,OIF, +OIF:SP:41:6134,1,"Kepler",48.763932,1.984852,0,0,OIF:SA:25:10527,Europe/Paris,,OIF, +OIF:SP:41:6135,1,"Fermi",48.762239,1.980785,0,0,OIF:SA:41:6135,Europe/Paris,,OIF, +OIF:SP:41:6136,1,"Marc Séguin",48.760709,1.971456,0,0,OIF:SA:25:1016,Europe/Paris,,OIF, +OIF:SP:41:6138,1,"Marc Séguin",48.761019,1.972854,0,0,OIF:SA:25:1016,Europe/Paris,,OIF, +OIF:SP:41:6139,1,"Fermi",48.762232,1.981465,0,0,OIF:SA:41:6135,Europe/Paris,,OIF, +OIF:SP:41:6140,1,"Kepler",48.763943,1.985532,0,0,OIF:SA:25:10527,Europe/Paris,,OIF, +OIF:SP:41:6142,1,"Einstein",48.764866,1.993874,0,0,OIF:SA:25:1018,Europe/Paris,,OIF, +OIF:SP:41:6143,1,"Papin",48.766486,1.997698,0,0,OIF:SA:41:6131,Europe/Paris,,OIF, +OIF:SP:41:6144,1,"Hennequin",48.768281,1.996992,0,0,OIF:SA:25:10531,Europe/Paris,,OIF, +OIF:SP:41:6145,1,"Émile Clapeyron",48.770345,1.995878,0,0,OIF:SA:41:6129,Europe/Paris,,OIF, +OIF:SP:41:6146,1,"La Mare Savin",48.77172,1.998874,0,0,OIF:SA:41:6128,Europe/Paris,,OIF, +OIF:SP:41:6147,1,"Ch.de Commerce et d'Industrie",48.774987,2.016517,0,0,OIF:SA:41:6127,Europe/Paris,,OIF, +OIF:SP:41:6148,1,"Les Bosquets",48.775578,2.019016,0,0,OIF:SA:41:6126,Europe/Paris,,OIF, +OIF:SP:41:6149,1,"Les Trois Peuples",48.776763,2.021973,0,0,OIF:SA:41:6125,Europe/Paris,,OIF, +OIF:SP:41:6150,1,"Les Quatre Pavés",48.774997,2.027233,0,0,OIF:SA:41:6124,Europe/Paris,,OIF, +OIF:SP:41:6151,1,"Le Verger Saint-Martin",48.776669,2.030623,0,0,OIF:SA:41:6123,Europe/Paris,,OIF, +OIF:SP:41:6152,1,"Les Blés d'Or",48.780246,2.034002,0,0,OIF:SA:41:6122,Europe/Paris,,OIF, +OIF:SP:41:6153,1,"André Malraux",48.778868,2.036512,0,0,OIF:SA:41:6121,Europe/Paris,,OIF, +OIF:SP:41:6154,1,"Vieil Étang",48.794231,2.037688,0,0,OIF:SA:41:6120,Europe/Paris,,OIF, +OIF:SP:41:6155,1,"Chemin Vert",48.799043,2.03177,0,0,OIF:SA:41:6119,Europe/Paris,,OIF, +OIF:SP:41:6156,1,"Hôtel de Ville",48.801042,2.029703,0,0,OIF:SA:41:6118,Europe/Paris,,OIF, +OIF:SP:41:6157,1,"Le Puits",48.801344,2.025048,0,0,OIF:SA:41:6157,Europe/Paris,,OIF, +OIF:SP:41:6158,1,"Frères Lumière",48.765377,1.999676,0,0,OIF:SA:41:6158,Europe/Paris,,OIF, +OIF:SP:41:6159,1,"Eugène Flachat",48.76013,1.99105,0,0,OIF:SA:41:6159,Europe/Paris,,OIF, +OIF:SP:41:6160,1,"Circuit Automobile",48.757907,1.983874,0,0,OIF:SA:41:6160,Europe/Paris,,OIF, +OIF:SP:41:6163,1,"Circuit Automobile",48.757637,1.983753,0,0,OIF:SA:41:6160,Europe/Paris,,OIF, +OIF:SP:41:6164,1,"Eugène Flachat",48.760321,1.99181,0,0,OIF:SA:41:6159,Europe/Paris,,OIF, +OIF:SP:41:6165,1,"Frères Lumière",48.765252,1.99999,0,0,OIF:SA:41:6158,Europe/Paris,,OIF, +OIF:SP:41:6166,1,"Paul Vaillant Couturier",48.799724,2.020582,0,0,OIF:SA:41:6115,Europe/Paris,,OIF, +OIF:SP:41:6167,1,"Croix Blanche",48.798428,2.01674,0,0,OIF:SA:41:6114,Europe/Paris,,OIF, +OIF:SP:41:6168,1,"Fritz Lang",48.800824,2.012085,0,0,OIF:SA:41:6113,Europe/Paris,,OIF, +OIF:SP:41:6169,1,"Square de Ré",48.763076,1.93866,0,0,OIF:SA:41:6169,Europe/Paris,,OIF, +OIF:SP:41:6170,1,"Square de la Marche",48.761512,1.941391,0,0,OIF:SA:41:6170,Europe/Paris,,OIF, +OIF:SP:41:6171,1,"Centre Commercial",48.760553,1.945069,0,0,OIF:SA:41:6033,Europe/Paris,,OIF, +OIF:SP:41:6172,1,"La Verrière Gare",48.755504,1.942973,0,0,OIF:SA:8739325,Europe/Paris,,OIF, +OIF:SP:41:6173,1,"Centre Commercial",48.76037,1.944078,0,0,OIF:SA:41:6033,Europe/Paris,,OIF, +OIF:SP:41:6174,1,"Square de la Marche",48.761494,1.94154,0,0,OIF:SA:41:6170,Europe/Paris,,OIF, +OIF:SP:41:6175,1,"Square de Ré",48.763077,1.938918,0,0,OIF:SA:41:6169,Europe/Paris,,OIF, +OIF:SP:41:6176,1,"Politzer",48.768334,1.990493,0,0,OIF:SA:41:6176,Europe/Paris,,OIF, +OIF:SP:41:6177,1,"Bois de l'Étang",48.759952,1.967845,0,0,OIF:SA:41:5997,Europe/Paris,,OIF, +OIF:SP:41:6178,1,"Bois de l'Étang",48.759932,1.967016,0,0,OIF:SA:41:5997,Europe/Paris,,OIF, +OIF:SP:41:6179,1,"Politzer",48.768291,1.990874,0,0,OIF:SA:41:6176,Europe/Paris,,OIF, +OIF:SP:41:6180,1,"Trappes Gare",48.775239,2.006969,0,0,OIF:SA:8739383,Europe/Paris,,OIF, +OIF:SP:41:6181,1,"Castiglione Del Lago",48.778483,1.990846,0,0,OIF:SA:41:6181,Europe/Paris,,OIF, +OIF:SP:41:6183,1,"Paul Verlaine",48.78365,1.987248,0,0,OIF:SA:41:6183,Europe/Paris,,OIF, +OIF:SP:41:6184,1,"Jean Cocteau",48.785733,1.983671,0,0,OIF:SA:41:6184,Europe/Paris,,OIF, +OIF:SP:41:6185,1,"Albert Camus",48.786314,1.979532,0,0,OIF:SA:41:6185,Europe/Paris,,OIF, +OIF:SP:41:6186,1,"Victor Jara",48.785121,1.977445,0,0,OIF:SA:41:6186,Europe/Paris,,OIF, +OIF:SP:41:6187,1,"Jean Lurçat",48.782427,1.975084,0,0,OIF:SA:41:6187,Europe/Paris,,OIF, +OIF:SP:41:6188,1,"Paul Gauguin",48.780163,1.975508,0,0,OIF:SA:41:6188,Europe/Paris,,OIF, +OIF:SP:41:6189,1,"Clément Marot",48.777202,1.977051,0,0,OIF:SA:41:6189,Europe/Paris,,OIF, +OIF:SP:41:6194,1,"Clément Marot",48.778001,1.976801,0,0,OIF:SA:41:6189,Europe/Paris,,OIF, +OIF:SP:41:6195,1,"Paul Gauguin",48.780262,1.975602,0,0,OIF:SA:41:6188,Europe/Paris,,OIF, +OIF:SP:41:6196,1,"Jean Lurçat",48.782517,1.97526,0,0,OIF:SA:41:6187,Europe/Paris,,OIF, +OIF:SP:41:6197,1,"Victor Jara",48.78532,1.977879,0,0,OIF:SA:41:6186,Europe/Paris,,OIF, +OIF:SP:41:6198,1,"Albert Camus",48.786262,1.980049,0,0,OIF:SA:41:6185,Europe/Paris,,OIF, +OIF:SP:41:6199,1,"Jean Cocteau",48.78542,1.984135,0,0,OIF:SA:41:6184,Europe/Paris,,OIF, +OIF:SP:41:6200,1,"Paul Verlaine",48.783424,1.987046,0,0,OIF:SA:41:6183,Europe/Paris,,OIF, +OIF:SP:41:6202,1,"Castiglione Del Lago",48.778357,1.990711,0,0,OIF:SA:41:6181,Europe/Paris,,OIF, +OIF:SP:41:6203,1,"République P.V.Couturier",48.776515,2.003725,0,0,OIF:SA:41:5841,Europe/Paris,,OIF, +OIF:SP:41:6204,1,"Trappes Gare",48.775022,2.006304,0,0,OIF:SA:8739383,Europe/Paris,,OIF, +OIF:SP:41:6205,1,"Centre Cial les Merisiers",48.776254,1.987815,0,0,OIF:SA:41:6205,Europe/Paris,,OIF, +OIF:SP:41:6206,1,"Les Merisiers",48.77703,1.985593,0,0,OIF:SA:41:6206,Europe/Paris,,OIF, +OIF:SP:41:6207,1,"J.B. Clément",48.779123,1.985416,0,0,OIF:SA:41:6207,Europe/Paris,,OIF, +OIF:SP:41:6208,1,"Van Gogh",48.78018,1.981084,0,0,OIF:SA:41:6208,Europe/Paris,,OIF, +OIF:SP:41:6209,1,"Berlioz / Beethoven",48.78235,1.979532,0,0,OIF:SA:41:6209,Europe/Paris,,OIF, +OIF:SP:41:6210,1,"Jean Lurçat",48.782852,1.975883,0,0,OIF:SA:41:6187,Europe/Paris,,OIF, +OIF:SP:41:6211,1,"Jean Rostand",48.784829,1.972932,0,0,OIF:SA:41:6211,Europe/Paris,,OIF, +OIF:SP:41:6212,1,"Avenue le Verrier",48.787778,1.973197,0,0,OIF:SA:41:6212,Europe/Paris,,OIF, +OIF:SP:41:6213,1,"Marcel Cerdan",48.792159,1.965698,0,0,OIF:SA:41:6213,Europe/Paris,,OIF, +OIF:SP:41:6214,1,"La Mare aux Saules",48.792985,1.962576,0,0,OIF:SA:41:6214,Europe/Paris,,OIF, +OIF:SP:41:6215,1,"Rond-Point des Gâtines",48.801507,1.965712,0,0,OIF:SA:23:918,Europe/Paris,,OIF, +OIF:SP:41:6216,1,"Les Grands Jardins",48.803089,1.971565,0,0,OIF:SA:41:6216,Europe/Paris,,OIF, +OIF:SP:41:6217,1,"La Bataille",48.802841,1.975826,0,0,OIF:SA:23:393,Europe/Paris,,OIF, +OIF:SP:41:6218,1,"Pierre Curie",48.801719,1.979235,0,0,OIF:SA:41:6218,Europe/Paris,,OIF, +OIF:SP:41:6219,1,"Z.I. les Gâtines",48.801043,1.981607,0,0,OIF:SA:23:408,Europe/Paris,,OIF, +OIF:SP:41:6220,1,"La Mare aux Saules",48.792618,1.962946,0,0,OIF:SA:41:6214,Europe/Paris,,OIF, +OIF:SP:41:6221,1,"Marcel Cerdan",48.79225,1.965928,0,0,OIF:SA:41:6213,Europe/Paris,,OIF, +OIF:SP:41:6222,1,"Avenue le Verrier",48.78803,1.973358,0,0,OIF:SA:41:6212,Europe/Paris,,OIF, +OIF:SP:41:6223,1,"Jean Rostand",48.784684,1.972606,0,0,OIF:SA:41:6211,Europe/Paris,,OIF, +OIF:SP:41:6224,1,"Jean Lurçat",48.782709,1.976265,0,0,OIF:SA:41:6187,Europe/Paris,,OIF, +OIF:SP:41:6225,1,"Berlioz / Beethoven",48.781669,1.979931,0,0,OIF:SA:41:6209,Europe/Paris,,OIF, +OIF:SP:41:6226,1,"Van Gogh",48.779848,1.981222,0,0,OIF:SA:41:6208,Europe/Paris,,OIF, +OIF:SP:41:6227,1,"J.B. Clément",48.778943,1.985281,0,0,OIF:SA:41:6207,Europe/Paris,,OIF, +OIF:SP:41:6228,1,"Les Merisiers",48.776451,1.984632,0,0,OIF:SA:41:6206,Europe/Paris,,OIF, +OIF:SP:41:6229,1,"Centre Cial les Merisiers",48.776165,1.988074,0,0,OIF:SA:41:6205,Europe/Paris,,OIF, +OIF:SP:41:6231,1,"Pierre Curie",48.801702,1.97963,0,0,OIF:SA:41:6218,Europe/Paris,,OIF, +OIF:SP:41:6232,1,"La Bataille",48.803252,1.975061,0,0,OIF:SA:23:393,Europe/Paris,,OIF, +OIF:SP:41:6233,1,"Les Grands Jardins",48.803159,1.970966,0,0,OIF:SA:41:6216,Europe/Paris,,OIF, +OIF:SP:41:6234,1,"Rond-Point des Gâtines",48.801669,1.965779,0,0,OIF:SA:23:918,Europe/Paris,,OIF, +OIF:SP:41:6236,1,"Erik Satie",48.764059,2.030861,0,0,OIF:SA:41:6236,Europe/Paris,,OIF, +OIF:SP:41:6237,1,"Camille Saint-Saëns",48.762894,2.028624,0,0,OIF:SA:41:6237,Europe/Paris,,OIF, +OIF:SP:41:6238,1,"Chemin de Ronde",48.759444,2.029338,0,0,OIF:SA:41:6238,Europe/Paris,,OIF, +OIF:SP:41:6239,1,"Avenue du Lycée",48.758416,2.035176,0,0,OIF:SA:41:6239,Europe/Paris,,OIF, +OIF:SP:41:6240,1,"Plan de l'Église",48.758218,2.038318,0,0,OIF:SA:41:6240,Europe/Paris,,OIF, +OIF:SP:41:6241,1,"Simone Weil",48.758189,2.044952,0,0,OIF:SA:41:6241,Europe/Paris,,OIF, +OIF:SP:41:6242,1,"Les Pépinières",48.760229,2.048312,0,0,OIF:SA:41:6242,Europe/Paris,,OIF, +OIF:SP:41:6243,1,"Voisins Centre",48.760171,2.050406,0,0,OIF:SA:41:6243,Europe/Paris,,OIF, +OIF:SP:41:6244,1,"Jean Racine",48.758809,2.05233,0,0,OIF:SA:41:6244,Europe/Paris,,OIF, +OIF:SP:41:6245,1,"Tilleuls",48.758727,2.055444,0,0,OIF:SA:41:6245,Europe/Paris,,OIF, +OIF:SP:41:6246,1,"Parc de Port Royal",48.755169,2.056129,0,0,OIF:SA:41:6246,Europe/Paris,,OIF, +OIF:SP:41:6247,1,"La Bretonnière",48.754477,2.06017,0,0,OIF:SA:41:6247,Europe/Paris,,OIF, +OIF:SP:41:6249,1,"Institut Franco-Japonais",48.791368,2.035474,0,0,OIF:SA:41:6249,Europe/Paris,,OIF, +OIF:SP:41:6250,1,"Fort de Saint-Cyr",48.792898,2.036472,0,0,OIF:SA:22:10493,Europe/Paris,,OIF, +OIF:SP:41:6251,1,"Mérantais",48.751651,2.06618,0,0,OIF:SA:24:15255,Europe/Paris,,OIF, +OIF:SP:41:6252,1,"La Bretonnière",48.754757,2.060373,0,0,OIF:SA:41:6247,Europe/Paris,,OIF, +OIF:SP:41:6253,1,"Parc de Port Royal",48.755295,2.056033,0,0,OIF:SA:41:6246,Europe/Paris,,OIF, +OIF:SP:41:6254,1,"Tilleuls",48.758852,2.055117,0,0,OIF:SA:41:6245,Europe/Paris,,OIF, +OIF:SP:41:6255,1,"Jean Racine",48.758846,2.052452,0,0,OIF:SA:41:6244,Europe/Paris,,OIF, +OIF:SP:41:6256,1,"Voisins Centre",48.760243,2.050487,0,0,OIF:SA:41:6243,Europe/Paris,,OIF, +OIF:SP:41:6257,1,"Les Pépinières",48.760174,2.048081,0,0,OIF:SA:41:6242,Europe/Paris,,OIF, +OIF:SP:41:6258,1,"Simone Weil",48.758377,2.044584,0,0,OIF:SA:41:6241,Europe/Paris,,OIF, +OIF:SP:41:6259,1,"Plan de l'Église",48.758316,2.038276,0,0,OIF:SA:41:6240,Europe/Paris,,OIF, +OIF:SP:41:6260,1,"Avenue du Lycée",48.758515,2.034958,0,0,OIF:SA:41:6239,Europe/Paris,,OIF, +OIF:SP:41:6261,1,"Chemin de Ronde",48.75965,2.029024,0,0,OIF:SA:41:6238,Europe/Paris,,OIF, +OIF:SP:41:6262,1,"Camille Saint-Saëns",48.763308,2.028812,0,0,OIF:SA:41:6237,Europe/Paris,,OIF, +OIF:SP:41:6263,1,"Erik Satie",48.763926,2.031432,0,0,OIF:SA:41:6236,Europe/Paris,,OIF, +OIF:SP:41:6265,1,"Fort de Saint-Cyr",48.792879,2.036118,0,0,OIF:SA:22:10493,Europe/Paris,,OIF, +OIF:SP:41:6266,1,"Institut Franco-Japonais",48.791394,2.035161,0,0,OIF:SA:41:6249,Europe/Paris,,OIF, +OIF:SP:41:6268,1,"Hôtel de Ville",48.724563,2.083588,0,0,OIF:SA:41:6268,Europe/Paris,,OIF, +OIF:SP:41:6269,1,"Van Gogh",48.72221,2.084673,0,0,OIF:SA:41:6269,Europe/Paris,,OIF, +OIF:SP:41:6270,1,"Cabane",48.718548,2.087122,0,0,OIF:SA:24:7719,Europe/Paris,,OIF, +OIF:SP:41:6271,1,"Beauplan",48.714553,2.085321,0,0,OIF:SA:24:7717,Europe/Paris,,OIF, +OIF:SP:41:6272,1,"Les Prés",48.707178,2.074954,0,0,OIF:SA:24:7741,Europe/Paris,,OIF, +OIF:SP:41:6273,1,"Place",48.705759,2.071254,0,0,OIF:SA:41:6273,Europe/Paris,,OIF, +OIF:SP:41:6274,1,"Saint-Rémy-lès-Chevreuse Gare",48.702889,2.070304,0,0,OIF:SA:8775889,Europe/Paris,,OIF, +OIF:SP:41:6275,1,"Saint-Rémy-lès-Chevreuse Gare",48.702852,2.069938,0,0,OIF:SA:8775889,Europe/Paris,,OIF, +OIF:SP:41:6276,1,"Place",48.705813,2.071606,0,0,OIF:SA:41:6273,Europe/Paris,,OIF, +OIF:SP:41:6277,1,"Les Prés",48.707278,2.075307,0,0,OIF:SA:24:7741,Europe/Paris,,OIF, +OIF:SP:41:6278,1,"Beauplan",48.714724,2.085619,0,0,OIF:SA:24:7717,Europe/Paris,,OIF, +OIF:SP:41:6279,1,"Centre Commercial",48.716188,2.084879,0,0,OIF:SA:41:6279,Europe/Paris,,OIF, +OIF:SP:41:6280,1,"Chèvrefeuille",48.716916,2.080827,0,0,OIF:SA:41:6280,Europe/Paris,,OIF, +OIF:SP:41:6281,1,"Chemin de la Chapelle",48.717603,2.078243,0,0,OIF:SA:41:6281,Europe/Paris,,OIF, +OIF:SP:41:6282,1,"Mendès-France",48.719298,2.076523,0,0,OIF:SA:41:6282,Europe/Paris,,OIF, +OIF:SP:41:6283,1,"Fraternité",48.721588,2.079527,0,0,OIF:SA:41:6283,Europe/Paris,,OIF, +OIF:SP:41:6284,1,"Saint-Exupéry Petit Prince",48.72177,2.080803,0,0,OIF:SA:41:6284,Europe/Paris,,OIF, +OIF:SP:41:6285,1,"Van Gogh",48.72221,2.08489,0,0,OIF:SA:41:6269,Europe/Paris,,OIF, +OIF:SP:41:6286,1,"Hôtel de Ville",48.72468,2.083737,0,0,OIF:SA:41:6268,Europe/Paris,,OIF, +OIF:SP:41:6288,1,"Cabane",48.718197,2.087151,0,0,OIF:SA:24:7719,Europe/Paris,,OIF, +OIF:SP:41:6289,1,"Saint-Exupéry Petit Prince",48.721985,2.080585,0,0,OIF:SA:41:6284,Europe/Paris,,OIF, +OIF:SP:41:6290,1,"Fraternité",48.721542,2.079297,0,0,OIF:SA:41:6283,Europe/Paris,,OIF, +OIF:SP:41:6291,1,"Mendès-France",48.719523,2.076671,0,0,OIF:SA:41:6282,Europe/Paris,,OIF, +OIF:SP:41:6292,1,"Chemin de la Chapelle",48.71762,2.077985,0,0,OIF:SA:41:6281,Europe/Paris,,OIF, +OIF:SP:41:6293,1,"Chèvrefeuille",48.716729,2.081263,0,0,OIF:SA:41:6280,Europe/Paris,,OIF, +OIF:SP:41:6294,1,"Centre Commercial",48.715964,2.085029,0,0,OIF:SA:41:6279,Europe/Paris,,OIF, +OIF:SP:41:6295,1,"Collège Hélène Boucher",48.760708,2.045998,0,0,OIF:SA:41:6295,Europe/Paris,,OIF, +OIF:SP:41:6296,1,"Buloyer",48.745706,2.027734,0,0,OIF:SA:41:6296,Europe/Paris,,OIF, +OIF:SP:41:6297,1,"Romainville",48.740314,2.042321,0,0,OIF:SA:41:6297,Europe/Paris,,OIF, +OIF:SP:41:6298,1,"Magny Village",48.741116,2.058189,0,0,OIF:SA:41:6298,Europe/Paris,,OIF, +OIF:SP:41:6299,1,"Villeneuve",48.733444,2.071791,0,0,OIF:SA:41:6299,Europe/Paris,,OIF, +OIF:SP:41:6300,1,"Villeneuve",48.734271,2.071882,0,0,OIF:SA:41:6299,Europe/Paris,,OIF, +OIF:SP:41:6301,1,"Magny Village",48.741717,2.057412,0,0,OIF:SA:41:6298,Europe/Paris,,OIF, +OIF:SP:41:6302,1,"Romainville",48.740457,2.041926,0,0,OIF:SA:41:6297,Europe/Paris,,OIF, +OIF:SP:41:6303,1,"Buloyer",48.745331,2.028579,0,0,OIF:SA:41:6296,Europe/Paris,,OIF, +OIF:SP:41:6304,1,"Collège Champollion",48.764073,2.043546,0,0,OIF:SA:41:6304,Europe/Paris,,OIF, +OIF:SP:41:6308,1,"Hélène Boucher",48.758394,2.051571,0,0,OIF:SA:41:6308,Europe/Paris,,OIF, +OIF:SP:41:6309,1,"Blaise Pascal",48.757202,2.049308,0,0,OIF:SA:41:6309,Europe/Paris,,OIF, +OIF:SP:41:6310,1,"Chamfleury",48.755345,2.043486,0,0,OIF:SA:41:6310,Europe/Paris,,OIF, +OIF:SP:41:6311,1,"La Chapelle Lacoste",48.724631,2.086224,0,0,OIF:SA:41:6311,Europe/Paris,,OIF, +OIF:SP:41:6312,1,"Hodebourg",48.723326,2.089545,0,0,OIF:SA:41:6312,Europe/Paris,,OIF, +OIF:SP:41:6313,1,"Joseph Lemarchand",48.722571,2.094072,0,0,OIF:SA:24:6778,Europe/Paris,,OIF, +OIF:SP:41:6314,1,"Victor Hugo",48.721014,2.097652,0,0,OIF:SA:24:6806,Europe/Paris,,OIF, +OIF:SP:41:6315,1,"Le Buisson",48.71883,2.102104,0,0,OIF:SA:24:6782,Europe/Paris,,OIF, +OIF:SP:41:6316,1,"Les 25 Arpents",48.719774,2.088746,0,0,OIF:SA:41:6316,Europe/Paris,,OIF, +OIF:SP:41:6317,1,"Les 25 Arpents",48.719604,2.089128,0,0,OIF:SA:41:6316,Europe/Paris,,OIF, +OIF:SP:41:6318,1,"Le Buisson",48.718362,2.10178,0,0,OIF:SA:24:6782,Europe/Paris,,OIF, +OIF:SP:41:6319,1,"Victor Hugo",48.721391,2.097012,0,0,OIF:SA:24:6806,Europe/Paris,,OIF, +OIF:SP:41:6320,1,"Joseph Lemarchand",48.723001,2.093323,0,0,OIF:SA:24:6778,Europe/Paris,,OIF, +OIF:SP:41:6321,1,"Hodebourg",48.723416,2.089571,0,0,OIF:SA:41:6312,Europe/Paris,,OIF, +OIF:SP:41:6322,1,"La Chapelle Lacoste",48.724828,2.085992,0,0,OIF:SA:41:6311,Europe/Paris,,OIF, +OIF:SP:41:6323,1,"Chamfleury",48.755301,2.043758,0,0,OIF:SA:41:6310,Europe/Paris,,OIF, +OIF:SP:41:6324,1,"Blaise Pascal",48.757167,2.049471,0,0,OIF:SA:41:6309,Europe/Paris,,OIF, +OIF:SP:41:6325,1,"Hélène Boucher",48.75836,2.052414,0,0,OIF:SA:41:6308,Europe/Paris,,OIF, +OIF:SP:41:6327,1,"Les Portiques",48.763393,2.063848,0,0,OIF:SA:41:6327,Europe/Paris,,OIF, +OIF:SP:41:6328,1,"Grande Île",48.76164,2.059575,0,0,OIF:SA:41:6328,Europe/Paris,,OIF, +OIF:SP:41:6329,1,"Le Lac",48.763056,2.050213,0,0,OIF:SA:41:6329,Europe/Paris,,OIF, +OIF:SP:41:6330,1,"Avenue de la Pyramide",48.762438,2.043786,0,0,OIF:SA:41:6330,Europe/Paris,,OIF, +OIF:SP:41:6331,1,"Lycée Descartes",48.762361,2.038185,0,0,OIF:SA:24:15239,Europe/Paris,,OIF, +OIF:SP:41:6332,1,"Avenue de la Pyramide",48.762279,2.044929,0,0,OIF:SA:41:6330,Europe/Paris,,OIF, +OIF:SP:41:6333,1,"Le Lac",48.762654,2.05133,0,0,OIF:SA:41:6329,Europe/Paris,,OIF, +OIF:SP:41:6334,1,"Grande Île",48.761938,2.060266,0,0,OIF:SA:41:6328,Europe/Paris,,OIF, +OIF:SP:41:6335,1,"Les Portiques",48.763509,2.06329,0,0,OIF:SA:41:6327,Europe/Paris,,OIF, +OIF:SP:41:6337,1,"Hameau de Troux",48.775973,2.046987,0,0,OIF:SA:24:14936,Europe/Paris,,OIF, +OIF:SP:41:6338,1,"Les Roussières",48.774213,2.05143,0,0,OIF:SA:41:6338,Europe/Paris,,OIF, +OIF:SP:41:6339,1,"Maurice Ravel",48.773927,2.05596,0,0,OIF:SA:41:6339,Europe/Paris,,OIF, +OIF:SP:41:6340,1,"Bois de la Garenne",48.77165,2.062513,0,0,OIF:SA:41:6340,Europe/Paris,,OIF, +OIF:SP:41:6341,1,"Village",48.77091,2.06476,0,0,OIF:SA:41:6341,Europe/Paris,,OIF, +OIF:SP:41:6342,1,"Jules Michelet",48.767158,2.071198,0,0,OIF:SA:24:15202,Europe/Paris,,OIF, +OIF:SP:41:6343,1,"Haussmann",48.768465,2.07682,0,0,OIF:SA:41:6343,Europe/Paris,,OIF, +OIF:SP:41:6344,1,"La Noël",48.770325,2.072677,0,0,OIF:SA:41:6344,Europe/Paris,,OIF, +OIF:SP:41:6345,1,"Hôtel de Ville",48.771202,2.070755,0,0,OIF:SA:41:6345,Europe/Paris,,OIF, +OIF:SP:41:6346,1,"Monument aux Morts",48.772644,2.068518,0,0,OIF:SA:41:6346,Europe/Paris,,OIF, +OIF:SP:41:6347,1,"Paul Éluard",48.774002,2.064989,0,0,OIF:SA:41:6347,Europe/Paris,,OIF, +OIF:SP:41:6348,1,"Bouviers",48.78177,2.065982,0,0,OIF:SA:41:6348,Europe/Paris,,OIF, +OIF:SP:41:6349,1,"Gérard Philipe",48.775719,2.065034,0,0,OIF:SA:41:6349,Europe/Paris,,OIF, +OIF:SP:41:6350,1,"Bois de la Grille",48.776711,2.070754,0,0,OIF:SA:41:6350,Europe/Paris,,OIF, +OIF:SP:41:6351,1,"Le Château",48.774456,2.075131,0,0,OIF:SA:41:6351,Europe/Paris,,OIF, +OIF:SP:41:6352,1,"Mendès France",48.7722,2.079344,0,0,OIF:SA:41:6352,Europe/Paris,,OIF, +OIF:SP:41:6353,1,"Mendès France",48.77238,2.079289,0,0,OIF:SA:41:6352,Europe/Paris,,OIF, +OIF:SP:41:6354,1,"Le Château",48.774859,2.074612,0,0,OIF:SA:41:6351,Europe/Paris,,OIF, +OIF:SP:41:6355,1,"Bois de la Grille",48.777213,2.070085,0,0,OIF:SA:41:6350,Europe/Paris,,OIF, +OIF:SP:41:6356,1,"Gérard Philipe",48.77588,2.064925,0,0,OIF:SA:41:6349,Europe/Paris,,OIF, +OIF:SP:41:6357,1,"Bouviers",48.780868,2.064599,0,0,OIF:SA:41:6348,Europe/Paris,,OIF, +OIF:SP:41:6358,1,"Paul Éluard",48.773679,2.065398,0,0,OIF:SA:41:6347,Europe/Paris,,OIF, +OIF:SP:41:6359,1,"Monument aux Morts",48.772489,2.06773,0,0,OIF:SA:41:6346,Europe/Paris,,OIF, +OIF:SP:41:6360,1,"Hôtel de Ville",48.771479,2.070319,0,0,OIF:SA:41:6345,Europe/Paris,,OIF, +OIF:SP:41:6361,1,"La Noël",48.770119,2.073045,0,0,OIF:SA:41:6344,Europe/Paris,,OIF, +OIF:SP:41:6362,1,"Haussmann",48.768142,2.07723,0,0,OIF:SA:41:6343,Europe/Paris,,OIF, +OIF:SP:41:6363,1,"Jules Michelet",48.767293,2.071156,0,0,OIF:SA:24:15202,Europe/Paris,,OIF, +OIF:SP:41:6364,1,"Village",48.771,2.064814,0,0,OIF:SA:41:6341,Europe/Paris,,OIF, +OIF:SP:41:6365,1,"Bois de la Garenne",48.772062,2.061559,0,0,OIF:SA:41:6340,Europe/Paris,,OIF, +OIF:SP:41:6366,1,"Maurice Ravel",48.773945,2.05615,0,0,OIF:SA:41:6339,Europe/Paris,,OIF, +OIF:SP:41:6367,1,"Les Roussières",48.774597,2.050408,0,0,OIF:SA:41:6338,Europe/Paris,,OIF, +OIF:SP:41:6368,1,"Hameau de Troux",48.776107,2.046877,0,0,OIF:SA:24:14936,Europe/Paris,,OIF, +OIF:SP:41:6371,1,"Michel Ange",48.760941,2.03474,0,0,OIF:SA:41:6371,Europe/Paris,,OIF, +OIF:SP:41:6372,1,"Z.A. du Bois des Roches",48.741242,2.086565,0,0,OIF:SA:24:15186,Europe/Paris,,OIF, +OIF:SP:41:6373,1,"Châteaufort Place",48.737129,2.092604,0,0,OIF:SA:24:5835,Europe/Paris,,OIF, +OIF:SP:41:6374,1,"Solitude",48.748423,2.073441,0,0,OIF:SA:41:6374,Europe/Paris,,OIF, +OIF:SP:41:6376,1,"Paul Éluard",48.774646,2.063707,0,0,OIF:SA:41:6347,Europe/Paris,,OIF, +OIF:SP:41:6377,1,"Mozart",48.776548,2.058393,0,0,OIF:SA:41:6377,Europe/Paris,,OIF, +OIF:SP:41:6378,1,"Les Genêts",48.774977,2.055464,0,0,OIF:SA:41:6378,Europe/Paris,,OIF, +OIF:SP:41:6379,1,"Robert Surcouf",48.765914,2.057893,0,0,OIF:SA:41:6379,Europe/Paris,,OIF, +OIF:SP:41:6380,1,"Jean Bart",48.766915,2.055495,0,0,OIF:SA:41:6380,Europe/Paris,,OIF, +OIF:SP:41:6381,1,"Rue des Cottages",48.768238,2.052347,0,0,OIF:SA:41:6381,Europe/Paris,,OIF, +OIF:SP:41:6382,1,"L.A. de Bougainville",48.770061,2.047931,0,0,OIF:SA:41:6382,Europe/Paris,,OIF, +OIF:SP:41:6383,1,"Bergson",48.771392,2.044769,0,0,OIF:SA:41:6075,Europe/Paris,,OIF, +OIF:SP:41:6384,1,"Bergson",48.771222,2.044933,0,0,OIF:SA:41:6075,Europe/Paris,,OIF, +OIF:SP:41:6385,1,"L.A. de Bougainville",48.769989,2.04785,0,0,OIF:SA:41:6382,Europe/Paris,,OIF, +OIF:SP:41:6386,1,"Rue des Cottages",48.768389,2.051693,0,0,OIF:SA:41:6381,Europe/Paris,,OIF, +OIF:SP:41:6387,1,"Jean Bart",48.76662,2.055945,0,0,OIF:SA:41:6380,Europe/Paris,,OIF, +OIF:SP:41:6388,1,"Robert Surcouf",48.765529,2.058575,0,0,OIF:SA:41:6379,Europe/Paris,,OIF, +OIF:SP:41:6389,1,"Les Genêts",48.774996,2.055668,0,0,OIF:SA:41:6378,Europe/Paris,,OIF, +OIF:SP:41:6390,1,"Mozart",48.776468,2.058639,0,0,OIF:SA:41:6377,Europe/Paris,,OIF, +OIF:SP:41:6391,1,"Paul Éluard",48.774449,2.063803,0,0,OIF:SA:41:6347,Europe/Paris,,OIF, +OIF:SP:41:6392,1,"Le Val Saint-Quentin",48.760742,2.06011,0,0,OIF:SA:41:6392,Europe/Paris,,OIF, +OIF:SP:41:6394,1,"Le Val d'Or",48.778465,2.096394,0,0,OIF:SA:41:6394,Europe/Paris,,OIF, +OIF:SP:41:6395,1,"Cité des Cadres",48.786851,2.105822,0,0,OIF:SA:24:15263,Europe/Paris,,OIF, +OIF:SP:41:6396,1,"Ponts et Chaussées",48.792881,2.119535,0,0,OIF:SA:24:15359,Europe/Paris,,OIF, +OIF:SP:41:6397,1,"Saint-Louis",48.795672,2.121945,0,0,OIF:SA:41:6397,Europe/Paris,,OIF, +OIF:SP:41:6398,1,"Anjou",48.796947,2.126089,0,0,OIF:SA:41:6398,Europe/Paris,,OIF, +OIF:SP:41:6399,1,"Anjou",48.797099,2.125966,0,0,OIF:SA:41:6398,Europe/Paris,,OIF, +OIF:SP:41:6400,1,"Saint-Louis",48.795896,2.121862,0,0,OIF:SA:41:6397,Europe/Paris,,OIF, +OIF:SP:41:6401,1,"Ponts et Chaussées",48.793015,2.119058,0,0,OIF:SA:24:15359,Europe/Paris,,OIF, +OIF:SP:41:6402,1,"Cité des Cadres",48.786796,2.10517,0,0,OIF:SA:24:15263,Europe/Paris,,OIF, +OIF:SP:41:6403,1,"Le Val d'Or",48.778824,2.096012,0,0,OIF:SA:41:6394,Europe/Paris,,OIF, +OIF:SP:41:6404,1,"La Minière",48.775382,2.091935,0,0,OIF:SA:24:15205,Europe/Paris,,OIF, +OIF:SP:41:6407,1,"Le Val Saint-Quentin",48.760849,2.059783,0,0,OIF:SA:41:6392,Europe/Paris,,OIF, +OIF:SP:41:6411,1,"Saint-Quentin Gare",48.787627,2.045711,0,0,OIF:SA:8739384,Europe/Paris,,OIF, +OIF:SP:41:6412,1,"Sqy Ouest",48.783407,2.040322,0,0,OIF:SA:24:14939,Europe/Paris,,OIF, +OIF:SP:41:6413,1,"Golf National",48.755365,2.071081,0,0,OIF:SA:24:6342,Europe/Paris,,OIF, +OIF:SP:41:6414,1,"Mérantais",48.751448,2.067921,0,0,OIF:SA:24:15255,Europe/Paris,,OIF, +OIF:SP:41:6415,1,"Geneviève Aubé",48.743762,2.083712,0,0,OIF:SA:24:15188,Europe/Paris,,OIF, +OIF:SP:41:6416,1,"Mérantais",48.751502,2.068056,0,0,OIF:SA:24:15255,Europe/Paris,,OIF, +OIF:SP:41:6418,1,"Sqy Ouest",48.783543,2.040579,0,0,OIF:SA:24:14939,Europe/Paris,,OIF, +OIF:SP:41:6419,1,"Saint-Quentin Gare",48.787275,2.044951,0,0,OIF:SA:8739384,Europe/Paris,,OIF, +OIF:SP:41:6420,1,"Geneviève Aubé",48.743708,2.083604,0,0,OIF:SA:24:15188,Europe/Paris,,OIF, +OIF:SP:41:6421,1,"Z.A. du Bois des Roches",48.742265,2.085513,0,0,OIF:SA:24:15186,Europe/Paris,,OIF, +OIF:SP:41:6422,1,"Grande Île",48.763104,2.055311,0,0,OIF:SA:41:6328,Europe/Paris,,OIF, +OIF:SP:41:6423,1,"Europe",48.765038,2.059978,0,0,OIF:SA:41:6423,Europe/Paris,,OIF, +OIF:SP:41:6425,1,"Hameau de Troux",48.775395,2.045943,0,0,OIF:SA:24:14936,Europe/Paris,,OIF, +OIF:SP:41:6426,1,"Collège A.Giacometti",48.777501,2.043293,0,0,OIF:SA:41:6426,Europe/Paris,,OIF, +OIF:SP:41:6427,1,"Collège A.Giacometti",48.777097,2.043825,0,0,OIF:SA:41:6426,Europe/Paris,,OIF, +OIF:SP:41:6428,1,"Hameau de Troux",48.775763,2.045941,0,0,OIF:SA:24:14936,Europe/Paris,,OIF, +OIF:SP:41:6429,1,"Europe",48.764544,2.060021,0,0,OIF:SA:41:6423,Europe/Paris,,OIF, +OIF:SP:41:6430,1,"Grande Île",48.763104,2.055311,0,0,OIF:SA:41:6328,Europe/Paris,,OIF, +OIF:SP:41:6431,1,"Guynemer",48.756699,2.068532,0,0,OIF:SA:41:6431,Europe/Paris,,OIF, +OIF:SP:41:6432,1,"Caudron",48.759809,2.064805,0,0,OIF:SA:41:6432,Europe/Paris,,OIF, +OIF:SP:41:6433,1,"Le Val Saint-Quentin",48.76063,2.062149,0,0,OIF:SA:41:6392,Europe/Paris,,OIF, +OIF:SP:41:6434,1,"Le Val Saint-Quentin",48.760656,2.061755,0,0,OIF:SA:41:6392,Europe/Paris,,OIF, +OIF:SP:41:6435,1,"Caudron",48.759719,2.064751,0,0,OIF:SA:41:6432,Europe/Paris,,OIF, +OIF:SP:41:6436,1,"Guynemer",48.756618,2.068451,0,0,OIF:SA:41:6431,Europe/Paris,,OIF, +OIF:SP:41:6437,1,"Groupe Scolaire Pasteur",48.782477,2.034995,0,0,OIF:SA:8741459,Europe/Paris,,OIF, +OIF:SP:41:6440,1,"Plaine de Neauphle",48.785857,1.985941,0,0,OIF:SA:41:6440,Europe/Paris,,OIF, +OIF:SP:41:6441,1,"Gay Lussac",48.791983,1.97582,0,0,OIF:SA:41:6060,Europe/Paris,,OIF, +OIF:SP:41:6442,1,"Jean d'Alembert",48.791512,1.977469,0,0,OIF:SA:41:6442,Europe/Paris,,OIF, +OIF:SP:41:6443,1,"Blaise Pascal",48.792575,1.981257,0,0,OIF:SA:41:6443,Europe/Paris,,OIF, +OIF:SP:41:6444,1,"Plaine de Neauphle",48.785018,1.987974,0,0,OIF:SA:41:6440,Europe/Paris,,OIF, +OIF:SP:41:6447,1,"Groupe Scolaire Pasteur",48.782958,2.036625,0,0,OIF:SA:8741459,Europe/Paris,,OIF, +OIF:SP:41:6448,1,"Blaise Pascal",48.792205,1.980675,0,0,OIF:SA:41:6443,Europe/Paris,,OIF, +OIF:SP:41:6449,1,"Jean d'Alembert",48.791593,1.977523,0,0,OIF:SA:41:6442,Europe/Paris,,OIF, +OIF:SP:41:6450,1,"Chamfleury",48.754927,2.041599,0,0,OIF:SA:41:6310,Europe/Paris,,OIF, +OIF:SP:41:6451,1,"Chamfleury",48.754964,2.041776,0,0,OIF:SA:41:6310,Europe/Paris,,OIF, +OIF:SP:41:6453,1,"Etienne Marcel",48.780358,2.042964,0,0,OIF:SA:41:5846,Europe/Paris,,OIF, +OIF:SP:41:6454,1,"Lycée E.de Breteuil",48.781404,2.040646,0,0,OIF:SA:41:6072,Europe/Paris,,OIF, +OIF:SP:41:6455,1,"Etienne Marcel",48.780133,2.042992,0,0,OIF:SA:41:5846,Europe/Paris,,OIF, +OIF:SP:41:6457,1,"Jean Monnet",48.769628,2.062537,0,0,OIF:SA:24:15200,Europe/Paris,,OIF, +OIF:SP:41:6458,1,"Les Sangliers",48.783873,2.065821,0,0,OIF:SA:41:6458,Europe/Paris,,OIF, +OIF:SP:41:6459,1,"Challenger",48.784627,2.065327,0,0,OIF:SA:41:6459,Europe/Paris,,OIF, +OIF:SP:41:6460,1,"La Batterie",48.78492,2.060171,0,0,OIF:SA:41:6460,Europe/Paris,,OIF, +OIF:SP:41:6461,1,"Rond-Point des Saules",48.784926,2.058648,0,0,OIF:SA:41:6461,Europe/Paris,,OIF, +OIF:SP:41:6462,1,"Claude Monet",48.783806,2.056409,0,0,OIF:SA:41:6462,Europe/Paris,,OIF, +OIF:SP:41:6463,1,"Henri Matisse",48.782282,2.0545,0,0,OIF:SA:41:6463,Europe/Paris,,OIF, +OIF:SP:41:6464,1,"Mail des Saules",48.783859,2.052424,0,0,OIF:SA:41:6464,Europe/Paris,,OIF, +OIF:SP:41:6466,1,"Les Chênes",48.789288,2.052489,0,0,OIF:SA:41:6466,Europe/Paris,,OIF, +OIF:SP:41:6467,1,"Les Quadrants",48.789172,2.049035,0,0,OIF:SA:41:6467,Europe/Paris,,OIF, +OIF:SP:41:6468,1,"Les Quadrants",48.789669,2.050243,0,0,OIF:SA:41:6467,Europe/Paris,,OIF, +OIF:SP:41:6469,1,"Les Chênes",48.789109,2.052477,0,0,OIF:SA:41:6466,Europe/Paris,,OIF, +OIF:SP:41:6471,1,"Mail des Saules",48.783382,2.052114,0,0,OIF:SA:41:6464,Europe/Paris,,OIF, +OIF:SP:41:6472,1,"Henri Matisse",48.782509,2.055179,0,0,OIF:SA:41:6463,Europe/Paris,,OIF, +OIF:SP:41:6473,1,"Claude Monet",48.783761,2.056546,0,0,OIF:SA:41:6462,Europe/Paris,,OIF, +OIF:SP:41:6474,1,"Rond-Point des Saules",48.784836,2.058689,0,0,OIF:SA:41:6461,Europe/Paris,,OIF, +OIF:SP:41:6475,1,"La Batterie",48.783763,2.061061,0,0,OIF:SA:41:6460,Europe/Paris,,OIF, +OIF:SP:41:6476,1,"Challenger",48.784627,2.065327,0,0,OIF:SA:41:6459,Europe/Paris,,OIF, +OIF:SP:41:6477,1,"Les Sangliers",48.783702,2.065822,0,0,OIF:SA:41:6458,Europe/Paris,,OIF, +OIF:SP:41:6478,1,"Bois Robert",48.788361,2.059309,0,0,OIF:SA:41:6478,Europe/Paris,,OIF, +OIF:SP:41:6479,1,"Droits de l'Homme",48.78534,2.058931,0,0,OIF:SA:36:2121,Europe/Paris,,OIF, +OIF:SP:41:6480,1,"Normandie - Niemen",48.794665,1.977025,0,0,OIF:SA:41:6480,Europe/Paris,,OIF, +OIF:SP:41:6481,1,"Jean Moulin",48.796101,1.970417,0,0,OIF:SA:22:9668,Europe/Paris,,OIF, +OIF:SP:41:6482,1,"Normandie - Niemen",48.794448,1.976374,0,0,OIF:SA:41:6480,Europe/Paris,,OIF, +OIF:SP:41:6483,1,"Charles Debry",48.778944,2.236022,0,0,OIF:SA:41:6483,Europe/Paris,,OIF, +OIF:SP:41:6484,1,"Pavé Blanc",48.780565,2.240031,0,0,OIF:SA:59862,Europe/Paris,,OIF, +OIF:SP:41:6485,1,"Mail de la Plaine",48.78369,2.247791,0,0,OIF:SA:59860,Europe/Paris,,OIF, +OIF:SP:41:6487,1,"Division Leclerc",48.794231,2.272899,0,0,OIF:SA:41:6487,Europe/Paris,,OIF, +OIF:SP:41:6488,1,"Parc André Malraux",48.800411,2.283178,0,0,OIF:SA:59852,Europe/Paris,,OIF, +OIF:SP:41:6490,1,"Métro Châtillon-Montrouge",48.811149,2.300109,0,0,OIF:SA:59614,Europe/Paris,,OIF, +OIF:SP:41:6491,1,"Gabriel Péri",48.819294,2.310215,0,0,OIF:SA:41:6491,Europe/Paris,,OIF, +OIF:SP:41:6492,1,"Mairie de Montrouge",48.819143,2.32011,0,0,OIF:SA:59776,Europe/Paris,,OIF, +OIF:SP:41:6493,1,"Mairie de Montrouge",48.818469,2.320287,0,0,OIF:SA:59776,Europe/Paris,,OIF, +OIF:SP:41:6494,1,"Gabriel Péri",48.819591,2.310324,0,0,OIF:SA:41:6491,Europe/Paris,,OIF, +OIF:SP:41:6496,1,"Centre de Châtillon",48.804251,2.288793,0,0,OIF:SA:59850,Europe/Paris,,OIF, +OIF:SP:41:6497,1,"Parc André Malraux",48.801436,2.284292,0,0,OIF:SA:59852,Europe/Paris,,OIF, +OIF:SP:41:6498,1,"Division Leclerc",48.794707,2.27279,0,0,OIF:SA:41:6487,Europe/Paris,,OIF, +OIF:SP:41:6501,1,"Pavé Blanc",48.780402,2.238929,0,0,OIF:SA:59862,Europe/Paris,,OIF, +OIF:SP:41:6502,1,"Le Stade",48.773715,1.989518,0,0,OIF:SA:41:5837,Europe/Paris,,OIF, +OIF:SP:41:6503,1,"Collège Saint-François d'Assise",48.766947,2.021639,0,0,OIF:SA:24:15238,Europe/Paris,,OIF, +OIF:SP:41:6504,1,"Terrier Blanc",48.797842,2.055055,0,0,OIF:SA:41:6504,Europe/Paris,,OIF, +OIF:SP:41:6505,1,"Terrier Blanc",48.797645,2.055205,0,0,OIF:SA:41:6504,Europe/Paris,,OIF, +OIF:SP:41:6506,1,"Cité Orly Parc",48.756108,1.948868,0,0,OIF:SA:24:15101,Europe/Paris,,OIF, +OIF:SP:41:6507,1,"Collège Sainte-Thérèse",48.736784,1.957709,0,0,OIF:SA:41:6507,Europe/Paris,,OIF, +OIF:SP:41:6508,1,"Bois de Maurepas",48.770144,1.942467,0,0,OIF:SA:22:100,Europe/Paris,,OIF, +OIF:SP:41:6509,1,"La Verrière Gare",48.755511,1.942483,0,0,OIF:SA:8739325,Europe/Paris,,OIF, +OIF:SP:41:6510,1,"Bois de Maurepas",48.770241,1.941732,0,0,OIF:SA:22:100,Europe/Paris,,OIF, +OIF:SP:41:6511,1,"Trappes Gare",48.774435,2.005411,0,0,OIF:SA:8739383,Europe/Paris,,OIF, +OIF:SP:41:6515,1,"Méliès - Croix Bonnet",48.801206,2.00709,0,0,OIF:SA:41:6108,Europe/Paris,,OIF, +OIF:SP:41:6516,1,"René Clair",48.801585,2.004461,0,0,OIF:SA:41:6109,Europe/Paris,,OIF, +OIF:SP:41:6517,1,"Jacques Tati",48.803683,2.005673,0,0,OIF:SA:41:6110,Europe/Paris,,OIF, +OIF:SP:41:6520,1,"Trappes Gare",48.774365,2.006145,0,0,OIF:SA:8739383,Europe/Paris,,OIF, +OIF:SP:41:6521,1,"Saint-Quentin Gare",48.786799,2.045389,0,0,OIF:SA:8739384,Europe/Paris,,OIF, +OIF:SP:41:6523,1,"Arletty",48.803537,2.011415,0,0,OIF:SA:41:6112,Europe/Paris,,OIF, +OIF:SP:41:6524,1,"Erich Von Stroheim",48.80583,2.011877,0,0,OIF:SA:41:6111,Europe/Paris,,OIF, +OIF:SP:41:6525,1,"Trappes Gare",48.774318,2.005534,0,0,OIF:SA:8739383,Europe/Paris,,OIF, +OIF:SP:41:6526,1,"La Verrière Gare",48.755629,1.942741,0,0,OIF:SA:8739325,Europe/Paris,,OIF, +OIF:SP:41:6527,1,"La Verrière Gare",48.755612,1.943162,0,0,OIF:SA:8739325,Europe/Paris,,OIF, +OIF:SP:41:6528,1,"Trappes Gare",48.775284,2.006955,0,0,OIF:SA:8739383,Europe/Paris,,OIF, +OIF:SP:41:6529,1,"Mare Caillon",48.763353,2.035882,0,0,OIF:SA:41:6529,Europe/Paris,,OIF, +OIF:SP:41:6531,1,"Pas du Lac",48.792232,2.043277,0,0,OIF:SA:22:10492,Europe/Paris,,OIF, +OIF:SP:41:6533,1,"Saint-Quentin Gare",48.786656,2.045458,0,0,OIF:SA:8739384,Europe/Paris,,OIF, +OIF:SP:41:6534,1,"Mare Caillon",48.76328,2.035542,0,0,OIF:SA:41:6529,Europe/Paris,,OIF, +OIF:SP:41:6537,1,"Saint-Quentin Gare",48.787437,2.045331,0,0,OIF:SA:8739384,Europe/Paris,,OIF, +OIF:SP:41:6539,1,"Université Vauban - d'Alembert",48.778808,2.044781,0,0,OIF:SA:41:6539,Europe/Paris,,OIF, +OIF:SP:41:6540,1,"Université Vauban - d'Alembert",48.778942,2.044794,0,0,OIF:SA:41:6539,Europe/Paris,,OIF, +OIF:SP:41:6541,1,"Saint-Quentin Gare",48.787609,2.045684,0,0,OIF:SA:8739384,Europe/Paris,,OIF, +OIF:SP:41:6542,1,"Saint-Quentin Gare",48.787826,2.046145,0,0,OIF:SA:8739384,Europe/Paris,,OIF, +OIF:SP:41:6543,1,"Gustave Eiffel",48.787271,2.054568,0,0,OIF:SA:41:6543,Europe/Paris,,OIF, +OIF:SP:41:6545,1,"Gustave Eiffel",48.787424,2.054567,0,0,OIF:SA:41:6543,Europe/Paris,,OIF, +OIF:SP:41:6546,1,"Bois Robert",48.788692,2.058736,0,0,OIF:SA:41:6478,Europe/Paris,,OIF, +OIF:SP:41:6547,1,"Prague",48.795528,1.968,0,0,OIF:SA:41:6547,Europe/Paris,,OIF, +OIF:SP:41:6548,1,"Prague",48.795403,1.968259,0,0,OIF:SA:41:6547,Europe/Paris,,OIF, +OIF:SP:41:6549,1,"Jean Moulin",48.796022,1.970812,0,0,OIF:SA:22:9668,Europe/Paris,,OIF, +OIF:SP:41:6550,1,"Rond-Point du Petit Clamart",48.777638,2.232352,0,0,OIF:SA:41:6550,Europe/Paris,,OIF, +OIF:SP:41:6551,1,"La Verrière Gare",48.754707,1.943794,0,0,OIF:SA:8739325,Europe/Paris,,OIF, +OIF:SP:41:6552,1,"Ferme des Roses",48.745023,1.942712,0,0,OIF:SA:41:6552,Europe/Paris,,OIF, +OIF:SP:41:6553,1,"Rond-Point de Chasse",48.74195,1.940534,0,0,OIF:SA:41:6553,Europe/Paris,,OIF, +OIF:SP:41:6554,1,"Avenue de Noailles",48.741314,1.943733,0,0,OIF:SA:41:6554,Europe/Paris,,OIF, +OIF:SP:41:6557,1,"Place Henri IV",48.739504,1.948245,0,0,OIF:SA:41:6557,Europe/Paris,,OIF, +OIF:SP:41:6558,1,"Rue de Pommeret",48.73976,1.952401,0,0,OIF:SA:41:6558,Europe/Paris,,OIF, +OIF:SP:41:6559,1,"Cours de l'Europe",48.741796,1.956382,0,0,OIF:SA:41:6559,Europe/Paris,,OIF, +OIF:SP:41:6564,1,"La Verrière Gare",48.754797,1.94397,0,0,OIF:SA:8739325,Europe/Paris,,OIF, +OIF:SP:41:6569,1,"Cours de l'Europe",48.742156,1.956583,0,0,OIF:SA:41:6559,Europe/Paris,,OIF, +OIF:SP:41:6570,1,"Rue de Pommeret",48.739776,1.95183,0,0,OIF:SA:41:6558,Europe/Paris,,OIF, +OIF:SP:41:6571,1,"Place Henri IV",48.739755,1.948066,0,0,OIF:SA:41:6557,Europe/Paris,,OIF, +OIF:SP:41:6574,1,"Avenue de Noailles",48.741404,1.943786,0,0,OIF:SA:41:6554,Europe/Paris,,OIF, +OIF:SP:41:6575,1,"Ferme des Roses",48.745059,1.942875,0,0,OIF:SA:41:6552,Europe/Paris,,OIF, +OIF:SP:41:6576,1,"Maréchal Joffre",48.738688,1.960087,0,0,OIF:SA:41:6576,Europe/Paris,,OIF, +OIF:SP:41:6577,1,"Maréchal Joffre",48.738841,1.959909,0,0,OIF:SA:41:6576,Europe/Paris,,OIF, +OIF:SP:41:6578,1,"La Verrière Gare",48.755637,1.942564,0,0,OIF:SA:8739325,Europe/Paris,,OIF, +OIF:SP:41:6579,1,"Stade du Bout des Clos",48.76478,1.911658,0,0,OIF:SA:41:6579,Europe/Paris,,OIF, +OIF:SP:41:6580,1,"Les Louveries",48.765381,1.908961,0,0,OIF:SA:41:6580,Europe/Paris,,OIF, +OIF:SP:41:6581,1,"Stade du Bout des Clos",48.764663,1.911713,0,0,OIF:SA:41:6579,Europe/Paris,,OIF, +OIF:SP:41:6582,1,"Pasteur",48.762537,1.912818,0,0,OIF:SA:41:6582,Europe/Paris,,OIF, +OIF:SP:41:6583,1,"Pariwest",48.761095,1.916705,0,0,OIF:SA:41:6583,Europe/Paris,,OIF, +OIF:SP:41:6584,1,"Pariwest",48.761167,1.916759,0,0,OIF:SA:41:6583,Europe/Paris,,OIF, +OIF:SP:41:6585,1,"Pasteur",48.762816,1.912816,0,0,OIF:SA:41:6582,Europe/Paris,,OIF, +OIF:SP:41:6586,1,"Les Bruyères",48.76634,1.905595,0,0,OIF:SA:41:6586,Europe/Paris,,OIF, +OIF:SP:41:6587,1,"Les Mousseaux",48.78036,1.892911,0,0,OIF:SA:41:6587,Europe/Paris,,OIF, +OIF:SP:41:6588,1,"Parc aux Loups",48.777162,1.900731,0,0,OIF:SA:41:6588,Europe/Paris,,OIF, +OIF:SP:41:6589,1,"Villeneuve",48.776214,1.907063,0,0,OIF:SA:41:6589,Europe/Paris,,OIF, +OIF:SP:41:6590,1,"Cimetière",48.774475,1.915835,0,0,OIF:SA:41:6590,Europe/Paris,,OIF, +OIF:SP:41:6591,1,"Église",48.772344,1.920761,0,0,OIF:SA:41:6591,Europe/Paris,,OIF, +OIF:SP:41:6592,1,"Place des Buttes",48.769366,1.919888,0,0,OIF:SA:41:6592,Europe/Paris,,OIF, +OIF:SP:41:6593,1,"La Minière",48.774509,2.091517,0,0,OIF:SA:24:15205,Europe/Paris,,OIF, +OIF:SP:41:6594,1,"Golf National",48.75658,2.071673,0,0,OIF:SA:24:6342,Europe/Paris,,OIF, +OIF:SP:41:6595,1,"Parc d'Activités de Gomberville",48.726636,2.082084,0,0,OIF:SA:41:6595,Europe/Paris,,OIF, +OIF:SP:41:6596,1,"Parc d'Activités de Gomberville",48.728181,2.081709,0,0,OIF:SA:41:6595,Europe/Paris,,OIF, +OIF:SP:41:6599,1,"Versailles Château - Rive Gauche Gare",48.800383,2.128007,0,0,OIF:SA:8739315,Europe/Paris,,OIF, +OIF:SP:41:6600,1,"Dampierre",48.771125,2.080614,0,0,OIF:SA:24:15204,Europe/Paris,,OIF, +OIF:SP:41:6601,1,"Dampierre",48.771079,2.08037,0,0,OIF:SA:24:15204,Europe/Paris,,OIF, +OIF:SP:41:6603,1,"Pas du Lac",48.792565,2.043561,0,0,OIF:SA:22:10492,Europe/Paris,,OIF, +OIF:SP:41:6604,1,"Pas du Lac",48.792619,2.04337,0,0,OIF:SA:22:10492,Europe/Paris,,OIF, +OIF:SP:41:6605,1,"Lycée Descartes",48.764681,2.038471,0,0,OIF:SA:24:15239,Europe/Paris,,OIF, +OIF:SP:41:6606,1,"Saint-Quentin Gare",48.788043,2.046566,0,0,OIF:SA:8739384,Europe/Paris,,OIF, +OIF:SP:41:6608,1,"Collège Ph. de Champaigne",48.744778,1.95023,0,0,OIF:SA:41:6608,Europe/Paris,,OIF, +OIF:SP:41:6609,1,"Collège Ph. de Champaigne",48.744615,1.94996,0,0,OIF:SA:41:6608,Europe/Paris,,OIF, +OIF:SP:41:6610,1,"Collège Alexandre Dumas",48.770244,1.945403,0,0,OIF:SA:41:6610,Europe/Paris,,OIF, +OIF:SP:41:6611,1,"Collège Saint-François d'Assise",48.766037,2.02091,0,0,OIF:SA:24:15238,Europe/Paris,,OIF, +OIF:SP:41:6612,1,"Collège Saint-François d'Assise",48.766217,2.020718,0,0,OIF:SA:24:15238,Europe/Paris,,OIF, +OIF:SP:41:6613,1,"Collège Alexandre Dumas",48.770538,1.944789,0,0,OIF:SA:41:6610,Europe/Paris,,OIF, +OIF:SP:41:6614,1,"Collège Champollion",48.763894,2.043683,0,0,OIF:SA:41:6304,Europe/Paris,,OIF, +OIF:SP:41:6615,1,"Gutenberg",48.758161,1.926082,0,0,OIF:SA:41:5822,Europe/Paris,,OIF, +OIF:SP:41:6616,1,"Lavoisier",48.759176,1.923232,0,0,OIF:SA:41:6616,Europe/Paris,,OIF, +OIF:SP:41:6617,1,"Rond-Point Schwartz",48.76078,1.92171,0,0,OIF:SA:41:6617,Europe/Paris,,OIF, +OIF:SP:41:6618,1,"Rond-Point Schwartz",48.760147,1.918086,0,0,OIF:SA:41:6617,Europe/Paris,,OIF, +OIF:SP:41:6619,1,"Lavoisier",48.758925,1.923465,0,0,OIF:SA:41:6616,Europe/Paris,,OIF, +OIF:SP:41:6620,1,"Hôtel d'Agglomération",48.771069,2.007186,0,0,OIF:SA:41:6620,Europe/Paris,,OIF, +OIF:SP:41:6621,1,"Hôtel d'Agglomération",48.770909,2.007758,0,0,OIF:SA:41:6620,Europe/Paris,,OIF, +OIF:SP:41:6622,1,"Copernic",48.76655,1.991905,0,0,OIF:SA:25:10529,Europe/Paris,,OIF, +OIF:SP:41:6623,1,"Hennequin",48.76826,1.995946,0,0,OIF:SA:25:10531,Europe/Paris,,OIF, +OIF:SP:41:6624,1,"Église",48.802098,2.017724,0,0,OIF:SA:41:6116,Europe/Paris,,OIF, +OIF:SP:41:6625,1,"Le Puits",48.801019,2.024425,0,0,OIF:SA:41:6157,Europe/Paris,,OIF, +OIF:SP:41:6626,1,"Hennequin",48.768412,1.995686,0,0,OIF:SA:25:10531,Europe/Paris,,OIF, +OIF:SP:41:6627,1,"Trappes Gare",48.774363,2.005493,0,0,OIF:SA:8739383,Europe/Paris,,OIF, +OIF:SP:41:6628,1,"Copernic",48.766181,1.991622,0,0,OIF:SA:25:10529,Europe/Paris,,OIF, +OIF:SP:41:6629,1,"Pythagore",48.760004,1.981861,0,0,OIF:SA:41:6629,Europe/Paris,,OIF, +OIF:SP:41:6630,1,"Galilée",48.765324,1.984639,0,0,OIF:SA:41:6630,Europe/Paris,,OIF, +OIF:SP:41:6631,1,"Galilée",48.76536,1.984449,0,0,OIF:SA:41:6630,Europe/Paris,,OIF, +OIF:SP:41:6632,1,"Pythagore",48.759787,1.981659,0,0,OIF:SA:41:6629,Europe/Paris,,OIF, +OIF:SP:41:6633,1,"Lycée Franco-Allemand",48.769022,2.121715,0,0,OIF:SA:2:490,Europe/Paris,,OIF, +OIF:SP:41:6635,1,"Jean Macé",48.771385,2.001296,0,0,OIF:SA:41:6635,Europe/Paris,,OIF, +OIF:SP:41:6636,1,"Jean Macé",48.771348,2.000685,0,0,OIF:SA:41:6635,Europe/Paris,,OIF, +OIF:SP:41:6637,1,"Vélodrome",48.788997,2.036522,0,0,OIF:SA:41:6637,Europe/Paris,,OIF, +OIF:SP:41:6639,1,"Métro Châtillon-Montrouge",48.811302,2.299877,0,0,OIF:SA:59614,Europe/Paris,,OIF, +OIF:SP:41:6641,1,"Vélodrome",48.789384,2.036519,0,0,OIF:SA:41:6637,Europe/Paris,,OIF, +OIF:SP:41:6642,1,"Université Leclerc",48.787045,2.05038,0,0,OIF:SA:41:6642,Europe/Paris,,OIF, +OIF:SP:41:6643,1,"Hôpital Béclère",48.787102,2.256137,0,0,OIF:SA:59858,Europe/Paris,,OIF, +OIF:SP:41:6645,1,"Université Leclerc",48.787154,2.050665,0,0,OIF:SA:41:6642,Europe/Paris,,OIF, +OIF:SP:41:6646,1,"George Sand",48.779884,1.990565,0,0,OIF:SA:41:6646,Europe/Paris,,OIF, +OIF:SP:41:6648,1,"Villaroy",48.766106,2.079238,0,0,OIF:SA:41:6648,Europe/Paris,,OIF, +OIF:SP:41:6649,1,"E. Viollet-le-Duc",48.763354,2.066459,0,0,OIF:SA:41:6649,Europe/Paris,,OIF, +OIF:SP:41:6650,1,"E. Viollet-le-Duc",48.763851,2.067367,0,0,OIF:SA:41:6649,Europe/Paris,,OIF, +OIF:SP:41:6651,1,"Villaroy",48.76596,2.078219,0,0,OIF:SA:41:6648,Europe/Paris,,OIF, +OIF:SP:41:6652,1,"Île de Loisirs - Centre Équestre",48.780781,2.002419,0,0,OIF:SA:41:6652,Europe/Paris,,OIF, +OIF:SP:41:6653,1,"Île de Loisirs - Golf",48.783924,1.992034,0,0,OIF:SA:41:6653,Europe/Paris,,OIF, +OIF:SP:41:6654,1,"Île de Loisirs - Golf",48.783201,1.993603,0,0,OIF:SA:41:6653,Europe/Paris,,OIF, +OIF:SP:41:6655,1,"Île de Loisirs - Centre Équestre",48.780253,2.003184,0,0,OIF:SA:41:6652,Europe/Paris,,OIF, +OIF:SP:41:6656,1,"E. Viollet-le-Duc",48.76385,2.067177,0,0,OIF:SA:41:6649,Europe/Paris,,OIF, +OIF:SP:41:6658,1,"George Sand",48.779794,1.99043,0,0,OIF:SA:41:6646,Europe/Paris,,OIF, +OIF:SP:42:5472,1,"Château",48.702116,1.890538,0,0,OIF:SA:42:5472,Europe/Paris,,OIF, +OIF:SP:42:5473,1,"Château",48.702196,1.890306,0,0,OIF:SA:42:5472,Europe/Paris,,OIF, +OIF:SP:42:5474,1,"Croix Saint-Jacques",48.698253,1.895921,0,0,OIF:SA:42:5474,Europe/Paris,,OIF, +OIF:SP:42:5475,1,"Croix Saint-Jacques",48.698217,1.895922,0,0,OIF:SA:42:5474,Europe/Paris,,OIF, +OIF:SP:42:5476,1,"Église",48.702536,1.88536,0,0,OIF:SA:25:10508,Europe/Paris,,OIF, +OIF:SP:42:5477,1,"Église",48.702581,1.885292,0,0,OIF:SA:25:10508,Europe/Paris,,OIF, +OIF:SP:42:5480,1,"Hameau",48.700452,1.895169,0,0,OIF:SA:42:5480,Europe/Paris,,OIF, +OIF:SP:42:5481,1,"Hameau",48.70056,1.895128,0,0,OIF:SA:42:5480,Europe/Paris,,OIF, +OIF:SP:42:5486,1,"Mairie",48.69955,1.887206,0,0,OIF:SA:25:10211,Europe/Paris,,OIF, +OIF:SP:42:5487,1,"Mairie",48.699685,1.887123,0,0,OIF:SA:25:10211,Europe/Paris,,OIF, +OIF:SP:42:5490,1,"Saint-Benoist",48.676923,1.910979,0,0,OIF:SA:42:5490,Europe/Paris,,OIF, +OIF:SP:42:6097,1,"Centre",48.715094,1.892736,0,0,OIF:SA:42:6097,Europe/Paris,,OIF, +OIF:SP:42:6098,1,"Centre",48.715176,1.892871,0,0,OIF:SA:42:6097,Europe/Paris,,OIF, +OIF:SP:42:6099,1,"Collège les Molières",48.722135,1.898272,0,0,OIF:SA:24:6099,Europe/Paris,,OIF, +OIF:SP:42:6106,1,"Gare des Essarts Dép.",48.722101,1.891453,0,0,OIF:SA:8739328,Europe/Paris,,OIF, +OIF:SP:42:6111,1,"Rue d'Auffargis",48.712841,1.89103,0,0,OIF:SA:42:6111,Europe/Paris,,OIF, +OIF:SP:42:6112,1,"Rue d'Auffargis",48.712814,1.891071,0,0,OIF:SA:42:6111,Europe/Paris,,OIF, +OIF:SP:42:8209,1,"École",48.698817,1.885922,0,0,OIF:SA:42:8209,Europe/Paris,,OIF, +OIF:SP:42:8211,1,"Le Stade",48.693016,1.880216,0,0,OIF:SA:42:8211,Europe/Paris,,OIF, +OIF:SP:42:8213,1,"Le Stade",48.692926,1.880149,0,0,OIF:SA:42:8211,Europe/Paris,,OIF, +OIF:SP:42:8214,1,"Gare du Perray",48.693229,1.856833,0,0,OIF:SA:8739329,Europe/Paris,,OIF, +OIF:SP:42:8215,1,"Gare du Perray",48.69331,1.85686,0,0,OIF:SA:8739329,Europe/Paris,,OIF, +OIF:SP:42:8216,1,"Les Fauvettes",48.693349,1.864245,0,0,OIF:SA:42:8216,Europe/Paris,,OIF, +OIF:SP:42:8217,1,"Les Fauvettes",48.693375,1.864055,0,0,OIF:SA:42:8216,Europe/Paris,,OIF, +OIF:SP:42:8218,1,"Les Carrières",48.696197,1.866229,0,0,OIF:SA:25:830,Europe/Paris,,OIF, +OIF:SP:42:8219,1,"Les Carrières",48.696108,1.866434,0,0,OIF:SA:25:830,Europe/Paris,,OIF, +OIF:SP:42:8225,1,"Gare des Essarts Arr",48.722072,1.890937,0,0,OIF:SA:8739328,Europe/Paris,,OIF, +OIF:SP:42:8229,1,"Route du Perray-Stade",48.696276,1.881789,0,0,OIF:SA:42:8229,Europe/Paris,,OIF, +OIF:SP:43:1,1,"Hautes Mardelles",48.708435,2.523147,0,0,OIF:SA:32:45041,Europe/Paris,,OIF, +OIF:SP:43:10,1,"Centre Aéré",48.665595,2.432412,0,0,OIF:SA:43:10,Europe/Paris,,OIF, +OIF:SP:43:100,1,"Oberkirch",48.682664,2.408376,0,0,OIF:SA:43:100,Europe/Paris,,OIF, +OIF:SP:43:101,1,"Orée de Sénart",48.686047,2.417503,0,0,OIF:SA:43:101,Europe/Paris,,OIF, +OIF:SP:43:102,1,"Orée de Sénart",48.686163,2.41859,0,0,OIF:SA:43:101,Europe/Paris,,OIF, +OIF:SP:43:103,1,"Orée de Sénart",48.686405,2.418807,0,0,OIF:SA:43:101,Europe/Paris,,OIF, +OIF:SP:43:104,1,"Orée de Sénart",48.685975,2.417571,0,0,OIF:SA:43:101,Europe/Paris,,OIF, +OIF:SP:43:105,1,"Pavillon Bleu",48.694256,2.41366,0,0,OIF:SA:43:105,Europe/Paris,,OIF, +OIF:SP:43:106,1,"Pavillon Bleu",48.693052,2.412884,0,0,OIF:SA:43:105,Europe/Paris,,OIF, +OIF:SP:43:107,1,"Pavillon Bleu",48.693492,2.413414,0,0,OIF:SA:43:105,Europe/Paris,,OIF, +OIF:SP:43:108,1,"Payen",48.679004,2.410678,0,0,OIF:SA:43:108,Europe/Paris,,OIF, +OIF:SP:43:109,1,"Payen",48.679049,2.410502,0,0,OIF:SA:43:108,Europe/Paris,,OIF, +OIF:SP:43:11,1,"Charles Mory - Aqua Sénart",48.683393,2.431631,0,0,OIF:SA:43:11,Europe/Paris,,OIF, +OIF:SP:43:110,1,"Paul Lafargue",48.69003,2.414658,0,0,OIF:SA:43:110,Europe/Paris,,OIF, +OIF:SP:43:111,1,"Paul Lafargue",48.689976,2.414781,0,0,OIF:SA:43:110,Europe/Paris,,OIF, +OIF:SP:43:112,1,"Plateau",48.695826,2.418252,0,0,OIF:SA:43:112,Europe/Paris,,OIF, +OIF:SP:43:113,1,"Plateau",48.695988,2.418075,0,0,OIF:SA:43:112,Europe/Paris,,OIF, +OIF:SP:43:114,1,"Sables de Rouvres",48.69135,2.428875,0,0,OIF:SA:43:114,Europe/Paris,,OIF, +OIF:SP:43:115,1,"Château des Sables",48.69173,2.426229,0,0,OIF:SA:43:115,Europe/Paris,,OIF, +OIF:SP:43:116,1,"Château des Sables",48.692107,2.426935,0,0,OIF:SA:43:115,Europe/Paris,,OIF, +OIF:SP:43:117,1,"Châtillon",48.684127,2.396174,0,0,OIF:SA:43:117,Europe/Paris,,OIF, +OIF:SP:43:118,1,"Villiers Garçons",48.680461,2.409391,0,0,OIF:SA:43:118,Europe/Paris,,OIF, +OIF:SP:43:119,1,"Villiers Garçons",48.680847,2.409324,0,0,OIF:SA:43:118,Europe/Paris,,OIF, +OIF:SP:43:12,1,"Charles Mory - Aqua Sénart",48.683743,2.432568,0,0,OIF:SA:43:11,Europe/Paris,,OIF, +OIF:SP:43:120,1,"Bois des Coudraies",48.63882,2.458689,0,0,OIF:SA:10:39,Europe/Paris,,OIF, +OIF:SP:43:121,1,"Bois des Coudraies",48.639025,2.460195,0,0,OIF:SA:10:39,Europe/Paris,,OIF, +OIF:SP:43:122,1,"Lycée Notre-Dame de Sion",48.641548,2.433955,0,0,OIF:SA:3:58,Europe/Paris,,OIF, +OIF:SP:43:123,1,"Lycée Baudelaire",48.637665,2.434178,0,0,OIF:SA:3:59,Europe/Paris,,OIF, +OIF:SP:43:124,1,"Préfecture",48.629096,2.436698,0,0,OIF:SA:10:416,Europe/Paris,,OIF, +OIF:SP:43:125,1,"Préfecture",48.628971,2.436413,0,0,OIF:SA:10:416,Europe/Paris,,OIF, +OIF:SP:43:126,1,"Saint-Exupéry",48.629842,2.447101,0,0,OIF:SA:10:474,Europe/Paris,,OIF, +OIF:SP:43:127,1,"Saint-Exupéry",48.629716,2.44725,0,0,OIF:SA:10:474,Europe/Paris,,OIF, +OIF:SP:43:128,1,"Juvisy Gare Routière Seine",48.689731,2.386568,0,0,OIF:SA:8754524,Europe/Paris,,OIF, +OIF:SP:43:129,1,"André Malraux",48.695921,2.44534,0,0,OIF:SA:43:129,Europe/Paris,,OIF, +OIF:SP:43:13,1,"Marcellin Berthelot",48.686785,2.41578,0,0,OIF:SA:43:13,Europe/Paris,,OIF, +OIF:SP:43:130,1,"Athénée les Vignes",48.704243,2.446213,0,0,OIF:SA:43:130,Europe/Paris,,OIF, +OIF:SP:43:131,1,"Athénée les Vignes",48.704153,2.44643,0,0,OIF:SA:43:130,Europe/Paris,,OIF, +OIF:SP:43:132,1,"Avenue du Parc",48.709626,2.437464,0,0,OIF:SA:43:132,Europe/Paris,,OIF, +OIF:SP:43:133,1,"Avenue du Parc",48.709725,2.437573,0,0,OIF:SA:43:132,Europe/Paris,,OIF, +OIF:SP:43:134,1,"CES Pompidou",48.692513,2.446691,0,0,OIF:SA:32:45465,Europe/Paris,,OIF, +OIF:SP:43:135,1,"Église (Montgeron)",48.70703,2.455291,0,0,OIF:SA:8799147,Europe/Paris,,OIF, +OIF:SP:43:136,1,"Église (Montgeron)",48.706895,2.455929,0,0,OIF:SA:8799147,Europe/Paris,,OIF, +OIF:SP:43:137,1,"Galliéni",48.71496,2.443288,0,0,OIF:SA:43:137,Europe/Paris,,OIF, +OIF:SP:43:138,1,"Galliéni",48.715212,2.443397,0,0,OIF:SA:43:137,Europe/Paris,,OIF, +OIF:SP:43:14,1,"Marcellin Berthelot",48.686902,2.415848,0,0,OIF:SA:43:13,Europe/Paris,,OIF, +OIF:SP:43:140,1,"Gare de Montgeron",48.707795,2.463279,0,0,OIF:SA:8768210,Europe/Paris,,OIF, +OIF:SP:43:141,1,"Gare de Montgeron",48.707813,2.463116,0,0,OIF:SA:8768210,Europe/Paris,,OIF, +OIF:SP:43:142,1,"Gare de Montgeron",48.707849,2.462735,0,0,OIF:SA:8768210,Europe/Paris,,OIF, +OIF:SP:43:143,1,"Maurice Garin",48.719591,2.441586,0,0,OIF:SA:43:143,Europe/Paris,,OIF, +OIF:SP:43:144,1,"Glacière",48.706109,2.440092,0,0,OIF:SA:43:144,Europe/Paris,,OIF, +OIF:SP:43:145,1,"Glacière",48.705813,2.43982,0,0,OIF:SA:43:144,Europe/Paris,,OIF, +OIF:SP:43:146,1,"Glacière",48.70743,2.44091,0,0,OIF:SA:43:144,Europe/Paris,,OIF, +OIF:SP:43:147,1,"Glacière",48.707305,2.440583,0,0,OIF:SA:43:144,Europe/Paris,,OIF, +OIF:SP:43:148,1,"Glacière",48.707422,2.440407,0,0,OIF:SA:43:144,Europe/Paris,,OIF, +OIF:SP:43:149,1,"Glacière",48.706243,2.441043,0,0,OIF:SA:43:144,Europe/Paris,,OIF, +OIF:SP:43:15,1,"Beaumont",48.683919,2.397857,0,0,OIF:SA:43:15,Europe/Paris,,OIF, +OIF:SP:43:150,1,"Prairie de l'Oly",48.70343,2.441418,0,0,OIF:SA:43:150,Europe/Paris,,OIF, +OIF:SP:43:151,1,"Prairie de l'Oly",48.703402,2.442151,0,0,OIF:SA:43:150,Europe/Paris,,OIF, +OIF:SP:43:152,1,"Lycée de Montgeron",48.70465,2.453398,0,0,OIF:SA:32:45207,Europe/Paris,,OIF, +OIF:SP:43:153,1,"Lycée de Montgeron",48.704875,2.453045,0,0,OIF:SA:32:45207,Europe/Paris,,OIF, +OIF:SP:43:154,1,"Lycée de Montgeron",48.704686,2.452841,0,0,OIF:SA:32:45207,Europe/Paris,,OIF, +OIF:SP:43:155,1,"Mairie (Montgeron)",48.704751,2.459672,0,0,OIF:SA:32:45203,Europe/Paris,,OIF, +OIF:SP:43:156,1,"Mairie (Montgeron)",48.704599,2.459618,0,0,OIF:SA:32:45203,Europe/Paris,,OIF, +OIF:SP:43:157,1,"Les Narcisses",48.700929,2.443545,0,0,OIF:SA:43:157,Europe/Paris,,OIF, +OIF:SP:43:16,1,"Brossolette Jeunon",48.688758,2.422123,0,0,OIF:SA:43:16,Europe/Paris,,OIF, +OIF:SP:43:160,1,"Prairie de l'Oly (Rue de Rouvres)",48.703557,2.44006,0,0,OIF:SA:43:160,Europe/Paris,,OIF, +OIF:SP:43:162,1,"Scierie",48.709919,2.441607,0,0,OIF:SA:43:162,Europe/Paris,,OIF, +OIF:SP:43:163,1,"Scierie",48.709802,2.44177,0,0,OIF:SA:43:162,Europe/Paris,,OIF, +OIF:SP:43:164,1,"Saint-Joseph",48.699924,2.468297,0,0,OIF:SA:43:164,Europe/Paris,,OIF, +OIF:SP:43:165,1,"Saint-Joseph",48.699745,2.468012,0,0,OIF:SA:43:164,Europe/Paris,,OIF, +OIF:SP:43:166,1,"Valdoly",48.714162,2.440896,0,0,OIF:SA:43:166,Europe/Paris,,OIF, +OIF:SP:43:167,1,"Place du 14 Juillet",48.704991,2.421797,0,0,OIF:SA:43:167,Europe/Paris,,OIF, +OIF:SP:43:168,1,"Place du 14 Juillet",48.704803,2.421729,0,0,OIF:SA:43:167,Europe/Paris,,OIF, +OIF:SP:43:169,1,"Place Anatole France",48.697226,2.432267,0,0,OIF:SA:43:169,Europe/Paris,,OIF, +OIF:SP:43:17,1,"Brossolette Jeunon",48.689279,2.422966,0,0,OIF:SA:43:16,Europe/Paris,,OIF, +OIF:SP:43:170,1,"Place Anatole France",48.697605,2.431181,0,0,OIF:SA:43:169,Europe/Paris,,OIF, +OIF:SP:43:171,1,"Place Anatole France",48.697335,2.430936,0,0,OIF:SA:43:169,Europe/Paris,,OIF, +OIF:SP:43:172,1,"Place Anatole France",48.696247,2.432211,0,0,OIF:SA:43:169,Europe/Paris,,OIF, +OIF:SP:43:173,1,"André Pardoux",48.700087,2.42957,0,0,OIF:SA:43:173,Europe/Paris,,OIF, +OIF:SP:43:174,1,"André Pardoux",48.699799,2.42961,0,0,OIF:SA:43:173,Europe/Paris,,OIF, +OIF:SP:43:175,1,"Rue des Arts",48.710691,2.432699,0,0,OIF:SA:43:175,Europe/Paris,,OIF, +OIF:SP:43:176,1,"Rue des Arts",48.710736,2.43255,0,0,OIF:SA:43:175,Europe/Paris,,OIF, +OIF:SP:43:177,1,"Bac d'Ablon",48.71345,2.433003,0,0,OIF:SA:43:177,Europe/Paris,,OIF, +OIF:SP:43:178,1,"Bac d'Ablon",48.713243,2.43288,0,0,OIF:SA:43:177,Europe/Paris,,OIF, +OIF:SP:43:179,1,"Bleuets",48.693387,2.444289,0,0,OIF:SA:43:179,Europe/Paris,,OIF, +OIF:SP:43:18,1,"Brossolette Jeunon",48.689441,2.422111,0,0,OIF:SA:43:16,Europe/Paris,,OIF, +OIF:SP:43:180,1,"Clos de la Régale",48.690488,2.43945,0,0,OIF:SA:32:46346,Europe/Paris,,OIF, +OIF:SP:43:181,1,"Clos de la Régale",48.690478,2.439871,0,0,OIF:SA:32:46346,Europe/Paris,,OIF, +OIF:SP:43:182,1,"Dispensaire",48.706528,2.422044,0,0,OIF:SA:43:182,Europe/Paris,,OIF, +OIF:SP:43:183,1,"Dispensaire",48.706529,2.421759,0,0,OIF:SA:43:182,Europe/Paris,,OIF, +OIF:SP:43:184,1,"Marx Dormoy",48.708516,2.431744,0,0,OIF:SA:43:184,Europe/Paris,,OIF, +OIF:SP:43:185,1,"Marx Dormoy",48.708606,2.431744,0,0,OIF:SA:43:184,Europe/Paris,,OIF, +OIF:SP:43:186,1,"Marx Dormoy",48.709495,2.432629,0,0,OIF:SA:43:184,Europe/Paris,,OIF, +OIF:SP:43:187,1,"Marx Dormoy",48.709244,2.432398,0,0,OIF:SA:43:184,Europe/Paris,,OIF, +OIF:SP:43:188,1,"Églantines",48.696645,2.415483,0,0,OIF:SA:43:188,Europe/Paris,,OIF, +OIF:SP:43:189,1,"Églantines",48.6967,2.415293,0,0,OIF:SA:43:188,Europe/Paris,,OIF, +OIF:SP:43:19,1,"Beauséjour",48.684992,2.391573,0,0,OIF:SA:43:19,Europe/Paris,,OIF, +OIF:SP:43:190,1,"Église (Vigneux)",48.706876,2.425657,0,0,OIF:SA:43:190,Europe/Paris,,OIF, +OIF:SP:43:191,1,"Église (Vigneux)",48.706966,2.425698,0,0,OIF:SA:43:190,Europe/Paris,,OIF, +OIF:SP:43:192,1,"Rue de la Ga®Té",48.699258,2.420158,0,0,OIF:SA:43:192,Europe/Paris,,OIF, +OIF:SP:43:193,1,"Rue de la Ga®Té",48.699177,2.420036,0,0,OIF:SA:43:192,Europe/Paris,,OIF, +OIF:SP:43:194,1,"Vigneux Gare",48.708429,2.415447,0,0,OIF:SA:8768130,Europe/Paris,,OIF, +OIF:SP:43:195,1,"Gros Buisson",48.696665,2.425368,0,0,OIF:SA:43:195,Europe/Paris,,OIF, +OIF:SP:43:196,1,"Gros Buisson",48.696782,2.425395,0,0,OIF:SA:43:195,Europe/Paris,,OIF, +OIF:SP:43:197,1,"Gaston Grinbaum",48.692425,2.433847,0,0,OIF:SA:43:197,Europe/Paris,,OIF, +OIF:SP:43:198,1,"Gaston Grinbaum",48.692245,2.433941,0,0,OIF:SA:43:197,Europe/Paris,,OIF, +OIF:SP:43:199,1,"Alfred Gros",48.70099,2.424343,0,0,OIF:SA:43:199,Europe/Paris,,OIF, +OIF:SP:43:2,1,"Hautes Mardelles",48.708273,2.523133,0,0,OIF:SA:32:45041,Europe/Paris,,OIF, +OIF:SP:43:20,1,"Beauséjour",48.684722,2.391423,0,0,OIF:SA:43:19,Europe/Paris,,OIF, +OIF:SP:43:200,1,"Alfred Gros",48.70081,2.424316,0,0,OIF:SA:43:199,Europe/Paris,,OIF, +OIF:SP:43:201,1,"Camille Guillaume",48.69074,2.439369,0,0,OIF:SA:43:201,Europe/Paris,,OIF, +OIF:SP:43:202,1,"Camille Guillaume",48.690614,2.439111,0,0,OIF:SA:43:201,Europe/Paris,,OIF, +OIF:SP:43:203,1,"Gymnase Maurice Baquet",48.690929,2.438786,0,0,OIF:SA:43:203,Europe/Paris,,OIF, +OIF:SP:43:204,1,"Hortensias",48.698218,2.439669,0,0,OIF:SA:43:204,Europe/Paris,,OIF, +OIF:SP:43:205,1,"Victor Hugo",48.707594,2.427994,0,0,OIF:SA:43:205,Europe/Paris,,OIF, +OIF:SP:43:206,1,"Victor Hugo",48.707513,2.428048,0,0,OIF:SA:43:205,Europe/Paris,,OIF, +OIF:SP:43:207,1,"Les Iris",48.697814,2.428493,0,0,OIF:SA:43:207,Europe/Paris,,OIF, +OIF:SP:43:208,1,"Les Iris",48.697769,2.428181,0,0,OIF:SA:43:207,Europe/Paris,,OIF, +OIF:SP:43:209,1,"Henri Janin",48.696757,2.434615,0,0,OIF:SA:43:209,Europe/Paris,,OIF, +OIF:SP:43:21,1,"Bergeries Saint-Hubert",48.687015,2.432927,0,0,OIF:SA:43:21,Europe/Paris,,OIF, +OIF:SP:43:210,1,"Henri Janin",48.697018,2.433665,0,0,OIF:SA:43:209,Europe/Paris,,OIF, +OIF:SP:43:211,1,"Jean Jaurès (Vigneux)",48.696486,2.436257,0,0,OIF:SA:43:211,Europe/Paris,,OIF, +OIF:SP:43:212,1,"Jean Jaurès (Vigneux)",48.69672,2.435728,0,0,OIF:SA:43:211,Europe/Paris,,OIF, +OIF:SP:43:213,1,"Jacques Jeunon",48.707901,2.43704,0,0,OIF:SA:43:213,Europe/Paris,,OIF, +OIF:SP:43:214,1,"Jacques Jeunon",48.708054,2.436769,0,0,OIF:SA:43:213,Europe/Paris,,OIF, +OIF:SP:43:215,1,"Lafayette",48.703236,2.436881,0,0,OIF:SA:43:215,Europe/Paris,,OIF, +OIF:SP:43:216,1,"Lafayette",48.703137,2.437343,0,0,OIF:SA:43:215,Europe/Paris,,OIF, +OIF:SP:43:217,1,"Prairie de l'Oly",48.702766,2.439895,0,0,OIF:SA:43:217,Europe/Paris,,OIF, +OIF:SP:43:218,1,"Mairie (Vigneux) / Arbre de la Liberté",48.699951,2.418733,0,0,OIF:SA:43:218,Europe/Paris,,OIF, +OIF:SP:43:219,1,"Mairie (Vigneux) / Arbre de la Liberté",48.699744,2.418611,0,0,OIF:SA:43:218,Europe/Paris,,OIF, +OIF:SP:43:22,1,"Belvédère",48.677019,2.421385,0,0,OIF:SA:43:22,Europe/Paris,,OIF, +OIF:SP:43:220,1,"Mairie (Vigneux)",48.699925,2.416724,0,0,OIF:SA:43:220,Europe/Paris,,OIF, +OIF:SP:43:221,1,"Mairie (Vigneux)",48.700114,2.416738,0,0,OIF:SA:43:220,Europe/Paris,,OIF, +OIF:SP:43:222,1,"Guy Moquet",48.698229,2.425832,0,0,OIF:SA:43:222,Europe/Paris,,OIF, +OIF:SP:43:223,1,"Guy Moquet",48.698257,2.425018,0,0,OIF:SA:43:222,Europe/Paris,,OIF, +OIF:SP:43:224,1,"Guy Moquet",48.698625,2.425874,0,0,OIF:SA:43:222,Europe/Paris,,OIF, +OIF:SP:43:225,1,"Guy Moquet",48.698643,2.425724,0,0,OIF:SA:43:222,Europe/Paris,,OIF, +OIF:SP:43:226,1,"Pasteur",48.704907,2.426754,0,0,OIF:SA:43:226,Europe/Paris,,OIF, +OIF:SP:43:227,1,"Pasteur",48.704898,2.426536,0,0,OIF:SA:43:226,Europe/Paris,,OIF, +OIF:SP:43:228,1,"Piscine (Vigneux)",48.703884,2.424728,0,0,OIF:SA:43:228,Europe/Paris,,OIF, +OIF:SP:43:229,1,"Piscine (Vigneux)",48.703947,2.424864,0,0,OIF:SA:43:228,Europe/Paris,,OIF, +OIF:SP:43:23,1,"Belvédère",48.676669,2.42019,0,0,OIF:SA:43:22,Europe/Paris,,OIF, +OIF:SP:43:230,1,"Paul Langevin",48.705586,2.419544,0,0,OIF:SA:43:230,Europe/Paris,,OIF, +OIF:SP:43:231,1,"Paul Langevin",48.70564,2.419856,0,0,OIF:SA:43:230,Europe/Paris,,OIF, +OIF:SP:43:232,1,"Patte d'Oie",48.703655,2.430486,0,0,OIF:SA:8799150,Europe/Paris,,OIF, +OIF:SP:43:233,1,"Patte d'Oie",48.703601,2.430323,0,0,OIF:SA:8799150,Europe/Paris,,OIF, +OIF:SP:43:234,1,"Patte d'Oie",48.703313,2.43039,0,0,OIF:SA:8799150,Europe/Paris,,OIF, +OIF:SP:43:235,1,"Patte d'Oie",48.702802,2.429181,0,0,OIF:SA:8799150,Europe/Paris,,OIF, +OIF:SP:43:236,1,"Port de Vigneux",48.703676,2.413511,0,0,OIF:SA:43:236,Europe/Paris,,OIF, +OIF:SP:43:237,1,"Port de Vigneux",48.703154,2.413646,0,0,OIF:SA:43:236,Europe/Paris,,OIF, +OIF:SP:43:238,1,"Poste",48.703226,2.426561,0,0,OIF:SA:43:238,Europe/Paris,,OIF, +OIF:SP:43:239,1,"Poste",48.703523,2.426955,0,0,OIF:SA:43:238,Europe/Paris,,OIF, +OIF:SP:43:24,1,"Centre Administratif Cour Chapuis",48.684947,2.408501,0,0,OIF:SA:43:24,Europe/Paris,,OIF, +OIF:SP:43:240,1,"Salvador Allende",48.693966,2.429695,0,0,OIF:SA:43:240,Europe/Paris,,OIF, +OIF:SP:43:241,1,"Salvador Allende",48.693858,2.429885,0,0,OIF:SA:43:240,Europe/Paris,,OIF, +OIF:SP:43:242,1,"Salvador Allende",48.693631,2.431663,0,0,OIF:SA:43:240,Europe/Paris,,OIF, +OIF:SP:43:243,1,"Salvador Allende",48.693875,2.430862,0,0,OIF:SA:43:240,Europe/Paris,,OIF, +OIF:SP:43:244,1,"Salvador Allende",48.694343,2.42998,0,0,OIF:SA:43:240,Europe/Paris,,OIF, +OIF:SP:43:245,1,"Toit et Joie",48.700893,2.421899,0,0,OIF:SA:43:245,Europe/Paris,,OIF, +OIF:SP:43:246,1,"Toit et Joie",48.700668,2.421722,0,0,OIF:SA:43:245,Europe/Paris,,OIF, +OIF:SP:43:247,1,"Le Petit et Vergeat",48.695834,2.442176,0,0,OIF:SA:43:247,Europe/Paris,,OIF, +OIF:SP:43:248,1,"Jules Verne",48.703211,2.434233,0,0,OIF:SA:43:248,Europe/Paris,,OIF, +OIF:SP:43:249,1,"Jules Verne",48.703291,2.434994,0,0,OIF:SA:43:248,Europe/Paris,,OIF, +OIF:SP:43:25,1,"Centre Administratif Cour Chapuis",48.685234,2.408637,0,0,OIF:SA:43:24,Europe/Paris,,OIF, +OIF:SP:43:250,1,"Henri Wallon",48.689493,2.436285,0,0,OIF:SA:43:250,Europe/Paris,,OIF, +OIF:SP:43:251,1,"Henri Wallon",48.689628,2.436041,0,0,OIF:SA:43:250,Europe/Paris,,OIF, +OIF:SP:43:252,1,"Centre Hospitalier V.S.G.",48.721386,2.453965,0,0,OIF:SA:32:45304,Europe/Paris,,OIF, +OIF:SP:43:253,1,"Abbaye",48.7074,2.499485,0,0,OIF:SA:32:45356,Europe/Paris,,OIF, +OIF:SP:43:254,1,"Abbaye",48.707274,2.499416,0,0,OIF:SA:32:45356,Europe/Paris,,OIF, +OIF:SP:43:255,1,"Place Gambetta",48.701083,2.484568,0,0,OIF:SA:32:45404,Europe/Paris,,OIF, +OIF:SP:43:256,1,"Place Gambetta",48.701925,2.486934,0,0,OIF:SA:32:45404,Europe/Paris,,OIF, +OIF:SP:43:257,1,"Pavillon Bleu",48.693968,2.41366,0,0,OIF:SA:43:105,Europe/Paris,,OIF, +OIF:SP:43:258,1,"Maurice Garin",48.719654,2.441722,0,0,OIF:SA:43:143,Europe/Paris,,OIF, +OIF:SP:43:259,1,"Rue du Repos",48.71089,2.442003,0,0,OIF:SA:43:259,Europe/Paris,,OIF, +OIF:SP:43:26,1,"Louis Camatte",48.664222,2.429926,0,0,OIF:SA:43:26,Europe/Paris,,OIF, +OIF:SP:43:260,1,"Rue du Repos",48.710881,2.442098,0,0,OIF:SA:43:259,Europe/Paris,,OIF, +OIF:SP:43:261,1,"Sellier",48.70521,2.459375,0,0,OIF:SA:43:261,Europe/Paris,,OIF, +OIF:SP:43:262,1,"Payen",48.678634,2.412673,0,0,OIF:SA:43:108,Europe/Paris,,OIF, +OIF:SP:43:263,1,"Payen",48.678535,2.412347,0,0,OIF:SA:43:108,Europe/Paris,,OIF, +OIF:SP:43:264,1,"Boileau",48.715269,2.459127,0,0,OIF:SA:32:45107,Europe/Paris,,OIF, +OIF:SP:43:265,1,"Boileau",48.71552,2.459236,0,0,OIF:SA:32:45107,Europe/Paris,,OIF, +OIF:SP:43:266,1,"Lycée Marcel Pagnol",48.697472,2.381199,0,0,OIF:SA:43:266,Europe/Paris,,OIF, +OIF:SP:43:27,1,"Louis Camatte",48.663988,2.430102,0,0,OIF:SA:43:26,Europe/Paris,,OIF, +OIF:SP:43:28,1,"Port aux Cerises",48.690051,2.410857,0,0,OIF:SA:43:28,Europe/Paris,,OIF, +OIF:SP:43:29,1,"Port aux Cerises",48.690626,2.411496,0,0,OIF:SA:43:28,Europe/Paris,,OIF, +OIF:SP:43:3,1,"Piscine",48.701449,2.492934,0,0,OIF:SA:32:45052,Europe/Paris,,OIF, +OIF:SP:43:30,1,"CES Delacroix",48.675887,2.406996,0,0,OIF:SA:43:30,Europe/Paris,,OIF, +OIF:SP:43:31,1,"CES Delacroix",48.675923,2.406806,0,0,OIF:SA:43:30,Europe/Paris,,OIF, +OIF:SP:43:32,1,"Parc de Champrosay",48.662426,2.426707,0,0,OIF:SA:43:32,Europe/Paris,,OIF, +OIF:SP:43:33,1,"Parc de Champrosay",48.662319,2.426748,0,0,OIF:SA:43:32,Europe/Paris,,OIF, +OIF:SP:43:34,1,"Parc de Champrosay",48.661698,2.42653,0,0,OIF:SA:43:32,Europe/Paris,,OIF, +OIF:SP:43:35,1,"Parc de Champrosay",48.661618,2.426367,0,0,OIF:SA:43:32,Europe/Paris,,OIF, +OIF:SP:43:36,1,"Parc du Château",48.691536,2.420662,0,0,OIF:SA:43:36,Europe/Paris,,OIF, +OIF:SP:43:37,1,"Parc du Château",48.691051,2.42077,0,0,OIF:SA:43:36,Europe/Paris,,OIF, +OIF:SP:43:38,1,"Parc du Château",48.693623,2.419212,0,0,OIF:SA:43:36,Europe/Paris,,OIF, +OIF:SP:43:39,1,"Parc du Château",48.693641,2.419077,0,0,OIF:SA:43:36,Europe/Paris,,OIF, +OIF:SP:43:4,1,"Piscine",48.701333,2.492934,0,0,OIF:SA:32:45052,Europe/Paris,,OIF, +OIF:SP:43:40,1,"Chemin Vert (Draveil)",48.692274,2.43128,0,0,OIF:SA:43:40,Europe/Paris,,OIF, +OIF:SP:43:41,1,"Cité Brossolette",48.679721,2.413055,0,0,OIF:SA:43:41,Europe/Paris,,OIF, +OIF:SP:43:42,1,"Cité Brossolette",48.679901,2.41296,0,0,OIF:SA:43:41,Europe/Paris,,OIF, +OIF:SP:43:43,1,"Citadelle",48.683778,2.422142,0,0,OIF:SA:43:43,Europe/Paris,,OIF, +OIF:SP:43:44,1,"Citadelle",48.683833,2.421396,0,0,OIF:SA:43:43,Europe/Paris,,OIF, +OIF:SP:43:45,1,"La Coulette",48.667728,2.416267,0,0,OIF:SA:43:45,Europe/Paris,,OIF, +OIF:SP:43:46,1,"La Coulette",48.667863,2.416322,0,0,OIF:SA:43:45,Europe/Paris,,OIF, +OIF:SP:43:47,1,"Croix de Sénart",48.678159,2.423572,0,0,OIF:SA:43:47,Europe/Paris,,OIF, +OIF:SP:43:48,1,"Croix de Sénart",48.67815,2.423341,0,0,OIF:SA:43:47,Europe/Paris,,OIF, +OIF:SP:43:49,1,"Danton",48.67512,2.411514,0,0,OIF:SA:43:49,Europe/Paris,,OIF, +OIF:SP:43:5,1,"Polyclinique",48.720722,2.452334,0,0,OIF:SA:32:45300,Europe/Paris,,OIF, +OIF:SP:43:50,1,"Danton",48.674967,2.411826,0,0,OIF:SA:43:49,Europe/Paris,,OIF, +OIF:SP:43:52,1,"Église",48.687014,2.409101,0,0,OIF:SA:8799149,Europe/Paris,,OIF, +OIF:SP:43:53,1,"Église",48.68705,2.408925,0,0,OIF:SA:8799149,Europe/Paris,,OIF, +OIF:SP:43:54,1,"Ermitage",48.66819,2.435769,0,0,OIF:SA:43:54,Europe/Paris,,OIF, +OIF:SP:43:55,1,"Ermitage",48.668028,2.435972,0,0,OIF:SA:43:54,Europe/Paris,,OIF, +OIF:SP:43:56,1,"Ferdinand Buisson",48.680771,2.402143,0,0,OIF:SA:43:56,Europe/Paris,,OIF, +OIF:SP:43:57,1,"Ferdinand Buisson",48.680078,2.402671,0,0,OIF:SA:43:56,Europe/Paris,,OIF, +OIF:SP:43:58,1,"Fruchart",48.687239,2.392186,0,0,OIF:SA:43:58,Europe/Paris,,OIF, +OIF:SP:43:59,1,"Fruchart",48.687355,2.392309,0,0,OIF:SA:43:58,Europe/Paris,,OIF, +OIF:SP:43:6,1,"Polyclinique",48.720794,2.452524,0,0,OIF:SA:32:45300,Europe/Paris,,OIF, +OIF:SP:43:60,1,"Gendarmerie",48.677799,2.410527,0,0,OIF:SA:43:60,Europe/Paris,,OIF, +OIF:SP:43:61,1,"Gendarmerie",48.677907,2.410636,0,0,OIF:SA:43:60,Europe/Paris,,OIF, +OIF:SP:43:62,1,"Gibraltar",48.688156,2.391196,0,0,OIF:SA:43:62,Europe/Paris,,OIF, +OIF:SP:43:63,1,"Gibraltar",48.688336,2.391346,0,0,OIF:SA:43:62,Europe/Paris,,OIF, +OIF:SP:43:64,1,"Gymnase",48.677938,2.404623,0,0,OIF:SA:43:64,Europe/Paris,,OIF, +OIF:SP:43:65,1,"Gymnase",48.678235,2.40442,0,0,OIF:SA:43:64,Europe/Paris,,OIF, +OIF:SP:43:66,1,"HLM Pont de Ris",48.664147,2.421391,0,0,OIF:SA:43:66,Europe/Paris,,OIF, +OIF:SP:43:67,1,"HLM Pont de Ris",48.66376,2.422001,0,0,OIF:SA:43:66,Europe/Paris,,OIF, +OIF:SP:43:68,1,"Hôpital Dupuytren",48.674966,2.413835,0,0,OIF:SA:43:68,Europe/Paris,,OIF, +OIF:SP:43:69,1,"Hôpital Dupuytren",48.67484,2.413862,0,0,OIF:SA:43:68,Europe/Paris,,OIF, +OIF:SP:43:7,1,"Place du 19 Mars 62",48.683675,2.414934,0,0,OIF:SA:43:7,Europe/Paris,,OIF, +OIF:SP:43:70,1,"Hôpital Joffre",48.665741,2.42978,0,0,OIF:SA:43:70,Europe/Paris,,OIF, +OIF:SP:43:71,1,"Hôpital Joffre",48.665777,2.429644,0,0,OIF:SA:43:70,Europe/Paris,,OIF, +OIF:SP:43:72,1,"Hôtel de la Forêt",48.671317,2.413694,0,0,OIF:SA:43:72,Europe/Paris,,OIF, +OIF:SP:43:73,1,"Hôtel de la Forêt",48.671577,2.413708,0,0,OIF:SA:43:72,Europe/Paris,,OIF, +OIF:SP:43:74,1,"Hôtel de Ville - Château de Villiers",48.682476,2.406027,0,0,OIF:SA:43:74,Europe/Paris,,OIF, +OIF:SP:43:75,1,"Hôtel de Ville - Château de Villiers",48.682081,2.405755,0,0,OIF:SA:43:74,Europe/Paris,,OIF, +OIF:SP:43:76,1,"Paris Jardins",48.687461,2.397861,0,0,OIF:SA:43:76,Europe/Paris,,OIF, +OIF:SP:43:77,1,"Paris Jardins",48.687173,2.398485,0,0,OIF:SA:43:76,Europe/Paris,,OIF, +OIF:SP:43:78,1,"Jean Jaurès (Draveil)",48.692473,2.418056,0,0,OIF:SA:43:78,Europe/Paris,,OIF, +OIF:SP:43:79,1,"Jean Jaurès (Draveil)",48.692374,2.41807,0,0,OIF:SA:43:78,Europe/Paris,,OIF, +OIF:SP:43:8,1,"Place du 19 Mars 62",48.684349,2.415546,0,0,OIF:SA:43:7,Europe/Paris,,OIF, +OIF:SP:43:80,1,"Jonquilles",48.676059,2.418574,0,0,OIF:SA:43:80,Europe/Paris,,OIF, +OIF:SP:43:81,1,"Jonquilles",48.675951,2.418546,0,0,OIF:SA:43:80,Europe/Paris,,OIF, +OIF:SP:43:82,1,"LEP Nadar",48.682089,2.432945,0,0,OIF:SA:43:82,Europe/Paris,,OIF, +OIF:SP:43:83,1,"Lilas",48.683938,2.395237,0,0,OIF:SA:43:83,Europe/Paris,,OIF, +OIF:SP:43:84,1,"Lilas",48.683902,2.395536,0,0,OIF:SA:43:83,Europe/Paris,,OIF, +OIF:SP:43:85,1,"Marcel Linard",48.692736,2.415341,0,0,OIF:SA:43:85,Europe/Paris,,OIF, +OIF:SP:43:86,1,"Marcel Linard",48.692628,2.415368,0,0,OIF:SA:43:85,Europe/Paris,,OIF, +OIF:SP:43:87,1,"Port aux Malades",48.673583,2.411485,0,0,OIF:SA:43:87,Europe/Paris,,OIF, +OIF:SP:43:88,1,"Port aux Malades",48.673646,2.411662,0,0,OIF:SA:43:87,Europe/Paris,,OIF, +OIF:SP:43:89,1,"Marais",48.680323,2.426874,0,0,OIF:SA:43:89,Europe/Paris,,OIF, +OIF:SP:43:9,1,"Centre Aéré",48.665757,2.432209,0,0,OIF:SA:43:10,Europe/Paris,,OIF, +OIF:SP:43:90,1,"Marais",48.681104,2.427581,0,0,OIF:SA:43:89,Europe/Paris,,OIF, +OIF:SP:43:91,1,"Marais",48.681293,2.427392,0,0,OIF:SA:43:89,Europe/Paris,,OIF, +OIF:SP:43:92,1,"Marais",48.681365,2.427405,0,0,OIF:SA:43:89,Europe/Paris,,OIF, +OIF:SP:43:93,1,"Marché",48.686142,2.409426,0,0,OIF:SA:43:93,Europe/Paris,,OIF, +OIF:SP:43:94,1,"Marché",48.686007,2.408978,0,0,OIF:SA:43:93,Europe/Paris,,OIF, +OIF:SP:43:95,1,"Mazières",48.680619,2.400106,0,0,OIF:SA:43:95,Europe/Paris,,OIF, +OIF:SP:43:96,1,"Mazières",48.680772,2.399835,0,0,OIF:SA:43:95,Europe/Paris,,OIF, +OIF:SP:43:97,1,"Oberkirch",48.683185,2.407752,0,0,OIF:SA:43:100,Europe/Paris,,OIF, +OIF:SP:43:98,1,"Oberkirch",48.683059,2.407915,0,0,OIF:SA:43:100,Europe/Paris,,OIF, +OIF:SP:43:99,1,"Oberkirch",48.682646,2.40824,0,0,OIF:SA:43:100,Europe/Paris,,OIF, +OIF:SP:44:1,1,"Gare d'Aulnay sous Bois",48.931651,2.494638,0,0,OIF:SA:8727141,Europe/Paris,,OIF, +OIF:SP:44:100,1,"Jean Monnet",48.932942,2.4294,0,0,OIF:SA:44:100,Europe/Paris,,OIF, +OIF:SP:44:101,1,"Jean Monnet",48.933095,2.429387,0,0,OIF:SA:44:100,Europe/Paris,,OIF, +OIF:SP:44:102,1,"Zone d'Activité",48.932687,2.433192,0,0,OIF:SA:44:102,Europe/Paris,,OIF, +OIF:SP:44:103,1,"Zone d'Activité",48.932858,2.433137,0,0,OIF:SA:44:102,Europe/Paris,,OIF, +OIF:SP:44:104,1,"Actipôle",48.933273,2.442291,0,0,OIF:SA:44:104,Europe/Paris,,OIF, +OIF:SP:44:106,1,"Actipôle",48.933444,2.442127,0,0,OIF:SA:44:104,Europe/Paris,,OIF, +OIF:SP:44:107,1,"Jacques Joly",48.933917,2.445716,0,0,OIF:SA:44:107,Europe/Paris,,OIF, +OIF:SP:44:108,1,"Jacques Joly",48.934043,2.445634,0,0,OIF:SA:44:107,Europe/Paris,,OIF, +OIF:SP:44:110,1,"Camille Saint-Saëns",48.936136,2.446048,0,0,OIF:SA:44:110,Europe/Paris,,OIF, +OIF:SP:44:111,1,"Camille Saint-Saëns",48.936118,2.44583,0,0,OIF:SA:44:110,Europe/Paris,,OIF, +OIF:SP:44:112,1,"Victor Hugo",48.937203,2.449188,0,0,OIF:SA:44:112,Europe/Paris,,OIF, +OIF:SP:44:113,1,"Victor Hugo",48.937346,2.449297,0,0,OIF:SA:44:112,Europe/Paris,,OIF, +OIF:SP:44:114,1,"Division Leclerc",48.935322,2.45183,0,0,OIF:SA:44:114,Europe/Paris,,OIF, +OIF:SP:44:115,1,"Pasteur",48.934188,2.45296,0,0,OIF:SA:44:115,Europe/Paris,,OIF, +OIF:SP:44:117,1,"Gare de Drancy",48.932866,2.454553,0,0,OIF:SA:8727140,Europe/Paris,,OIF, +OIF:SP:44:13,1,"Gare de Val-de-Fontenay",48.853346,2.487209,0,0,OIF:SA:8711371,Europe/Paris,,OIF, +OIF:SP:44:131,1,"Drancy Cottage",48.936051,2.450945,0,0,OIF:SA:44:131,Europe/Paris,,OIF, +OIF:SP:44:132,1,"Drancy Cottage",48.936059,2.45119,0,0,OIF:SA:44:131,Europe/Paris,,OIF, +OIF:SP:44:14,1,"ZA Péripole",48.856315,2.492039,0,0,OIF:SA:44:14,Europe/Paris,,OIF, +OIF:SP:44:15,1,"ZA Péripole",48.85635,2.492379,0,0,OIF:SA:44:14,Europe/Paris,,OIF, +OIF:SP:44:16,1,"Les Abbesses",48.876519,2.564587,0,0,OIF:SA:44:16,Europe/Paris,,OIF, +OIF:SP:44:17,1,"Les Abbesses",48.876645,2.564437,0,0,OIF:SA:44:16,Europe/Paris,,OIF, +OIF:SP:44:18,1,"Cimetière de l'Est",48.876481,2.560799,0,0,OIF:SA:44:18,Europe/Paris,,OIF, +OIF:SP:44:19,1,"Cimetière de l'Est",48.876634,2.560813,0,0,OIF:SA:44:18,Europe/Paris,,OIF, +OIF:SP:44:2,1,"Sablières",48.931338,2.486494,0,0,OIF:SA:44:2,Europe/Paris,,OIF, +OIF:SP:44:20,1,"Sainte-Clotilde",48.876424,2.567148,0,0,OIF:SA:44:20,Europe/Paris,,OIF, +OIF:SP:44:21,1,"Guynemer",48.878048,2.568627,0,0,OIF:SA:44:21,Europe/Paris,,OIF, +OIF:SP:44:22,1,"Paul de Kock",48.8765,2.569683,0,0,OIF:SA:44:22,Europe/Paris,,OIF, +OIF:SP:44:23,1,"Gare du Chênay Gagny",48.876685,2.552679,0,0,OIF:SA:8711352,Europe/Paris,,OIF, +OIF:SP:44:24,1,"Pépinière",48.878449,2.56559,0,0,OIF:SA:44:24,Europe/Paris,,OIF, +OIF:SP:44:25,1,"Pont Saint-Pierre",48.876874,2.557462,0,0,OIF:SA:44:25,Europe/Paris,,OIF, +OIF:SP:44:26,1,"Pont Saint-Pierre",48.877008,2.557517,0,0,OIF:SA:44:25,Europe/Paris,,OIF, +OIF:SP:44:3,1,"Sablières",48.93185,2.486468,0,0,OIF:SA:44:2,Europe/Paris,,OIF, +OIF:SP:44:4,1,"Pierre Sémard Turgot",48.930668,2.483464,0,0,OIF:SA:44:4,Europe/Paris,,OIF, +OIF:SP:44:5,1,"Pierre Sémard Turgot",48.930777,2.482605,0,0,OIF:SA:44:4,Europe/Paris,,OIF, +OIF:SP:44:6,1,"Louison Bobet",48.852354,2.489725,0,0,OIF:SA:8711371,Europe/Paris,,OIF, +OIF:SP:44:7,1,"Louison Bobet",48.852642,2.489631,0,0,OIF:SA:8711371,Europe/Paris,,OIF, +OIF:SP:44:98,1,"Gare du Bourget",48.931273,2.42536,0,0,OIF:SA:8727139,Europe/Paris,,OIF, +OIF:SP:44:99,1,"Jean Jaurès Division Leclerc",48.932721,2.424707,0,0,OIF:SA:44:99,Europe/Paris,,OIF, +OIF:SP:46:10000,1,"Mairie",48.642515,2.292591,0,0,OIF:SA:46:10000,Europe/Paris,,OIF, +OIF:SP:46:10001,1,"Fontaine Mansart",48.658566,2.285305,0,0,OIF:SA:46:10001,Europe/Paris,,OIF, +OIF:SP:46:10002,1,"Nord France",48.647445,2.280853,0,0,OIF:SA:46:10002,Europe/Paris,,OIF, +OIF:SP:46:10003,1,"Nord France",48.647535,2.280636,0,0,OIF:SA:46:10002,Europe/Paris,,OIF, +OIF:SP:46:10004,1,"Paradis",48.64439,2.283718,0,0,OIF:SA:46:10004,Europe/Paris,,OIF, +OIF:SP:46:10005,1,"Paradis",48.644336,2.282918,0,0,OIF:SA:46:10004,Europe/Paris,,OIF, +OIF:SP:46:10007,1,"Rue de Paris",48.643278,2.289606,0,0,OIF:SA:46:10007,Europe/Paris,,OIF, +OIF:SP:46:10018,1,"Auteuil",48.646404,2.221221,0,0,OIF:SA:46:10018,Europe/Paris,,OIF, +OIF:SP:46:10019,1,"Auteuil",48.64679,2.220596,0,0,OIF:SA:46:10018,Europe/Paris,,OIF, +OIF:SP:46:10020,1,"Bel Ébat",48.655023,2.210524,0,0,OIF:SA:46:10020,Europe/Paris,,OIF, +OIF:SP:46:10021,1,"Bel Ébat",48.655535,2.210374,0,0,OIF:SA:46:10020,Europe/Paris,,OIF, +OIF:SP:46:10024,1,"Étang Neuf",48.637981,2.240255,0,0,OIF:SA:46:10024,Europe/Paris,,OIF, +OIF:SP:46:10025,1,"Étang Neuf",48.637855,2.240093,0,0,OIF:SA:46:10024,Europe/Paris,,OIF, +OIF:SP:46:10026,1,"La Folie Bessin",48.667728,2.19851,0,0,OIF:SA:46:10026,Europe/Paris,,OIF, +OIF:SP:46:10027,1,"La Folie Bessin",48.667549,2.198728,0,0,OIF:SA:46:10026,Europe/Paris,,OIF, +OIF:SP:46:10028,1,"Les Fonceaux",48.645843,2.236442,0,0,OIF:SA:46:10028,Europe/Paris,,OIF, +OIF:SP:46:10029,1,"Les Fonceaux",48.645727,2.237528,0,0,OIF:SA:46:10028,Europe/Paris,,OIF, +OIF:SP:46:10031,1,"Fontaine Jouvence",48.663683,2.214628,0,0,OIF:SA:46:10031,Europe/Paris,,OIF, +OIF:SP:46:10032,1,"Fontaine Jouvence",48.664555,2.214531,0,0,OIF:SA:46:10031,Europe/Paris,,OIF, +OIF:SP:46:10033,1,"Le Fromage Mou",48.639284,2.25269,0,0,OIF:SA:46:10033,Europe/Paris,,OIF, +OIF:SP:46:10034,1,"Le Fromage Mou",48.639546,2.253612,0,0,OIF:SA:46:10033,Europe/Paris,,OIF, +OIF:SP:46:10035,1,"Gambetta",48.636309,2.229774,0,0,OIF:SA:46:10035,Europe/Paris,,OIF, +OIF:SP:46:10036,1,"Gambetta",48.636273,2.229897,0,0,OIF:SA:46:10035,Europe/Paris,,OIF, +OIF:SP:46:10037,1,"La Guillère",48.640602,2.236832,0,0,OIF:SA:46:10037,Europe/Paris,,OIF, +OIF:SP:46:10038,1,"La Guillère",48.641033,2.236018,0,0,OIF:SA:46:10037,Europe/Paris,,OIF, +OIF:SP:46:10041,1,"Laboratoires",48.647155,2.236399,0,0,OIF:SA:46:10041,Europe/Paris,,OIF, +OIF:SP:46:10043,1,"Le Gué",48.649914,2.216058,0,0,OIF:SA:46:10043,Europe/Paris,,OIF, +OIF:SP:46:10044,1,"Le Gué",48.650282,2.216017,0,0,OIF:SA:46:10043,Europe/Paris,,OIF, +OIF:SP:46:10045,1,"Le Houssaye",48.639808,2.243412,0,0,OIF:SA:46:10045,Europe/Paris,,OIF, +OIF:SP:46:10046,1,"Le Houssaye",48.639988,2.243669,0,0,OIF:SA:46:10045,Europe/Paris,,OIF, +OIF:SP:46:10047,1,"Le Mesnil",48.637889,2.218704,0,0,OIF:SA:46:10047,Europe/Paris,,OIF, +OIF:SP:46:10048,1,"Le Mesnil",48.637656,2.218894,0,0,OIF:SA:46:10047,Europe/Paris,,OIF, +OIF:SP:46:10049,1,"Mairie",48.642404,2.230399,0,0,OIF:SA:46:10049,Europe/Paris,,OIF, +OIF:SP:46:10050,1,"Mairie",48.642593,2.230942,0,0,OIF:SA:46:10049,Europe/Paris,,OIF, +OIF:SP:46:10051,1,"Le Mesnil Forget",48.644833,2.244,0,0,OIF:SA:46:10051,Europe/Paris,,OIF, +OIF:SP:46:10056,1,"Poteau Blanc",48.660689,2.205734,0,0,OIF:SA:46:10056,Europe/Paris,,OIF, +OIF:SP:46:10057,1,"Poteau Blanc",48.660941,2.205788,0,0,OIF:SA:46:10056,Europe/Paris,,OIF, +OIF:SP:46:10059,1,"ZI Fonds des Prés",48.639606,2.209938,0,0,OIF:SA:46:10059,Europe/Paris,,OIF, +OIF:SP:46:10103,1,"Gare RER",48.723864,2.259482,0,0,OIF:SA:8739357,Europe/Paris,,OIF, +OIF:SP:46:10104,1,"Gare RER",48.723639,2.259251,0,0,OIF:SA:8739357,Europe/Paris,,OIF, +OIF:SP:46:10135,1,"Église",48.529864,2.193801,0,0,OIF:SA:46:10135,Europe/Paris,,OIF, +OIF:SP:46:10136,1,"Église",48.529792,2.19372,0,0,OIF:SA:46:10135,Europe/Paris,,OIF, +OIF:SP:46:10148,1,"Cimetière",48.314905,2.08221,0,0,OIF:SA:46:10148,Europe/Paris,,OIF, +OIF:SP:46:10149,1,"Cimetière",48.314851,2.082129,0,0,OIF:SA:46:10148,Europe/Paris,,OIF, +OIF:SP:46:10158,1,"Montreau",48.305799,2.055408,0,0,OIF:SA:46:10158,Europe/Paris,,OIF, +OIF:SP:46:10159,1,"Montreau",48.304719,2.055009,0,0,OIF:SA:46:10158,Europe/Paris,,OIF, +OIF:SP:46:10160,1,"Aubray",48.407728,1.979228,0,0,OIF:SA:46:10160,Europe/Paris,,OIF, +OIF:SP:46:10164,1,"Château d'Eau",48.413792,2.002213,0,0,OIF:SA:46:10164,Europe/Paris,,OIF, +OIF:SP:46:10165,1,"Château d'Eau",48.413648,2.002214,0,0,OIF:SA:46:10164,Europe/Paris,,OIF, +OIF:SP:46:10166,1,"Garenne",48.41572,2.003781,0,0,OIF:SA:46:10166,Europe/Paris,,OIF, +OIF:SP:46:10167,1,"Garenne",48.415747,2.003578,0,0,OIF:SA:46:10166,Europe/Paris,,OIF, +OIF:SP:46:10168,1,"Les Vignes",48.415262,2.010361,0,0,OIF:SA:46:10168,Europe/Paris,,OIF, +OIF:SP:46:10169,1,"Les Vignes",48.415163,2.010334,0,0,OIF:SA:46:10168,Europe/Paris,,OIF, +OIF:SP:46:10208,1,"Poste",48.346537,2.044453,0,0,OIF:SA:46:10208,Europe/Paris,,OIF, +OIF:SP:46:10209,1,"Poste",48.346654,2.044506,0,0,OIF:SA:46:10208,Europe/Paris,,OIF, +OIF:SP:46:10268,1,"Le Moulin à Vent",48.644442,2.249711,0,0,OIF:SA:46:10268,Europe/Paris,,OIF, +OIF:SP:46:10269,1,"Le Moulin à Vent",48.644271,2.249413,0,0,OIF:SA:46:10268,Europe/Paris,,OIF, +OIF:SP:46:10270,1,"Paul Fort",48.64911,2.254072,0,0,OIF:SA:46:10270,Europe/Paris,,OIF, +OIF:SP:46:10271,1,"Paul Fort",48.648239,2.255145,0,0,OIF:SA:46:10270,Europe/Paris,,OIF, +OIF:SP:46:10272,1,"Place de l'Europe",48.640391,2.267527,0,0,OIF:SA:46:10272,Europe/Paris,,OIF, +OIF:SP:46:10273,1,"Place de l'Europe",48.641219,2.269018,0,0,OIF:SA:46:10272,Europe/Paris,,OIF, +OIF:SP:46:10274,1,"Place de la Paix",48.640825,2.272505,0,0,OIF:SA:46:10274,Europe/Paris,,OIF, +OIF:SP:46:10275,1,"Place de la Paix",48.641014,2.272653,0,0,OIF:SA:46:10274,Europe/Paris,,OIF, +OIF:SP:46:10278,1,"La Poste",48.639019,2.274026,0,0,OIF:SA:46:10278,Europe/Paris,,OIF, +OIF:SP:46:10279,1,"La Poste",48.638884,2.27404,0,0,OIF:SA:46:10278,Europe/Paris,,OIF, +OIF:SP:46:10280,1,"Pont Belles Dames",48.648842,2.271436,0,0,OIF:SA:46:10280,Europe/Paris,,OIF, +OIF:SP:46:10281,1,"Pont Belles Dames",48.651963,2.273047,0,0,OIF:SA:46:10280,Europe/Paris,,OIF, +OIF:SP:46:10282,1,"Rue de Paris",48.643664,2.269747,0,0,OIF:SA:46:10282,Europe/Paris,,OIF, +OIF:SP:46:10283,1,"Rue de Paris",48.643592,2.269395,0,0,OIF:SA:46:10282,Europe/Paris,,OIF, +OIF:SP:46:10284,1,"Tourangelle",48.64577,2.258866,0,0,OIF:SA:46:10284,Europe/Paris,,OIF, +OIF:SP:46:10285,1,"Tourangelle",48.645887,2.259001,0,0,OIF:SA:46:10284,Europe/Paris,,OIF, +OIF:SP:46:10286,1,"Bertrand Faure",48.44955,2.188155,0,0,OIF:SA:46:10286,Europe/Paris,,OIF, +OIF:SP:46:10287,1,"Bertrand Faure",48.449432,2.187818,0,0,OIF:SA:46:10286,Europe/Paris,,OIF, +OIF:SP:46:10288,1,"Ferme de Champigny",48.46642,2.192352,0,0,OIF:SA:46:10288,Europe/Paris,,OIF, +OIF:SP:46:10290,1,"Cimetière",48.441476,2.180652,0,0,OIF:SA:46:10290,Europe/Paris,,OIF, +OIF:SP:46:10291,1,"Cimetière",48.441251,2.180463,0,0,OIF:SA:46:10290,Europe/Paris,,OIF, +OIF:SP:46:10292,1,"Cité",48.446425,2.184394,0,0,OIF:SA:46:10292,Europe/Paris,,OIF, +OIF:SP:46:10293,1,"Cité",48.44647,2.184259,0,0,OIF:SA:46:10292,Europe/Paris,,OIF, +OIF:SP:46:10298,1,"Impasse des Prés",48.46418,2.191155,0,0,OIF:SA:46:10298,Europe/Paris,,OIF, +OIF:SP:46:10299,1,"Impasse des Prés",48.464225,2.191033,0,0,OIF:SA:46:10298,Europe/Paris,,OIF, +OIF:SP:46:10302,1,"Les Acacias",48.443464,2.181795,0,0,OIF:SA:46:10302,Europe/Paris,,OIF, +OIF:SP:46:10303,1,"Les Acacias",48.4435,2.181659,0,0,OIF:SA:46:10302,Europe/Paris,,OIF, +OIF:SP:46:10304,1,"Les Blandards",48.43982,2.179346,0,0,OIF:SA:46:10304,Europe/Paris,,OIF, +OIF:SP:46:10305,1,"Les Blandards",48.439883,2.179387,0,0,OIF:SA:46:10304,Europe/Paris,,OIF, +OIF:SP:46:10306,1,"La Martinière",48.477996,2.196647,0,0,OIF:SA:46:10306,Europe/Paris,,OIF, +OIF:SP:46:10307,1,"Les Monceaux",48.458322,2.193996,0,0,OIF:SA:46:10307,Europe/Paris,,OIF, +OIF:SP:46:10309,1,"Les Rouas",48.436503,2.179708,0,0,OIF:SA:46:10309,Europe/Paris,,OIF, +OIF:SP:46:10310,1,"Les Rouas",48.43644,2.179843,0,0,OIF:SA:46:10309,Europe/Paris,,OIF, +OIF:SP:46:10311,1,"Mairie",48.447024,2.181541,0,0,OIF:SA:46:10311,Europe/Paris,,OIF, +OIF:SP:46:10312,1,"Mairie",48.447132,2.181797,0,0,OIF:SA:46:10311,Europe/Paris,,OIF, +OIF:SP:46:10313,1,"Maison de Retraite",48.440634,2.176723,0,0,OIF:SA:46:10313,Europe/Paris,,OIF, +OIF:SP:46:10314,1,"Maison de Retraite",48.440679,2.176803,0,0,OIF:SA:46:10313,Europe/Paris,,OIF, +OIF:SP:46:10315,1,"Notre-Dame des Prés",48.451332,2.189758,0,0,OIF:SA:46:10315,Europe/Paris,,OIF, +OIF:SP:46:10316,1,"Notre-Dame des Prés",48.451008,2.189421,0,0,OIF:SA:46:10315,Europe/Paris,,OIF, +OIF:SP:46:10317,1,"Rue des Ponts",48.449348,2.178101,0,0,OIF:SA:46:10317,Europe/Paris,,OIF, +OIF:SP:46:10318,1,"Rue des Ponts",48.449393,2.178047,0,0,OIF:SA:46:10317,Europe/Paris,,OIF, +OIF:SP:46:10319,1,"Villemartin",48.461526,2.189635,0,0,OIF:SA:46:10319,Europe/Paris,,OIF, +OIF:SP:46:10320,1,"Villemartin",48.461562,2.18954,0,0,OIF:SA:46:10319,Europe/Paris,,OIF, +OIF:SP:46:10321,1,"ZI les Rochettes",48.454732,2.170976,0,0,OIF:SA:46:10321,Europe/Paris,,OIF, +OIF:SP:46:10331,1,"Danielle Casanova",48.657425,2.357217,0,0,OIF:SA:46:10331,Europe/Paris,,OIF, +OIF:SP:46:10334,1,"Docteur Roux",48.663106,2.358169,0,0,OIF:SA:46:10334,Europe/Paris,,OIF, +OIF:SP:46:10336,1,"Etoile Bleue",48.654718,2.364121,0,0,OIF:SA:46:10336,Europe/Paris,,OIF, +OIF:SP:46:10337,1,"Etoile Bleue",48.654413,2.363728,0,0,OIF:SA:46:10336,Europe/Paris,,OIF, +OIF:SP:46:10345,1,"Jean Morlet",48.669111,2.354914,0,0,OIF:SA:46:10345,Europe/Paris,,OIF, +OIF:SP:46:10348,1,"Jean Pierre Timbaud",48.662198,2.359892,0,0,OIF:SA:10:264,Europe/Paris,,OIF, +OIF:SP:46:10349,1,"Lucien Sampaix",48.656131,2.355669,0,0,OIF:SA:46:10349,Europe/Paris,,OIF, +OIF:SP:46:10352,1,"La Gribelette",48.645956,2.353156,0,0,OIF:SA:46:10352,Europe/Paris,,OIF, +OIF:SP:46:10353,1,"La Gribelette",48.646118,2.353333,0,0,OIF:SA:46:10352,Europe/Paris,,OIF, +OIF:SP:46:10359,1,"Les Bouleaux",48.64902,2.360401,0,0,OIF:SA:46:10359,Europe/Paris,,OIF, +OIF:SP:46:10360,1,"Les Fouilles",48.646423,2.357986,0,0,OIF:SA:46:10360,Europe/Paris,,OIF, +OIF:SP:46:10361,1,"Les Fouilles",48.646566,2.357918,0,0,OIF:SA:46:10360,Europe/Paris,,OIF, +OIF:SP:46:10362,1,"Les Jonquilles",48.645507,2.34674,0,0,OIF:SA:46:10362,Europe/Paris,,OIF, +OIF:SP:46:10363,1,"Les Jonquilles",48.645678,2.34674,0,0,OIF:SA:46:10362,Europe/Paris,,OIF, +OIF:SP:46:10364,1,"Les Pervenches",48.647682,2.347812,0,0,OIF:SA:46:10364,Europe/Paris,,OIF, +OIF:SP:46:10365,1,"Les Pervenches",48.647512,2.347744,0,0,OIF:SA:46:10364,Europe/Paris,,OIF, +OIF:SP:46:10366,1,"Les Tourelles",48.666522,2.353773,0,0,OIF:SA:46:10366,Europe/Paris,,OIF, +OIF:SP:46:10367,1,"Libération",48.649282,2.354962,0,0,OIF:SA:46:10367,Europe/Paris,,OIF, +OIF:SP:46:10368,1,"Libération",48.649335,2.355151,0,0,OIF:SA:46:10367,Europe/Paris,,OIF, +OIF:SP:46:10369,1,"Mairie",48.660698,2.346091,0,0,OIF:SA:10:322,Europe/Paris,,OIF, +OIF:SP:46:10371,1,"Marché",48.651034,2.355044,0,0,OIF:SA:10:1152,Europe/Paris,,OIF, +OIF:SP:46:10372,1,"Marché",48.651933,2.355641,0,0,OIF:SA:10:1152,Europe/Paris,,OIF, +OIF:SP:46:10379,1,"Paul Langevin",48.653246,2.35324,0,0,OIF:SA:46:10379,Europe/Paris,,OIF, +OIF:SP:46:10381,1,"Le Pavillon du Garde",48.649298,2.361568,0,0,OIF:SA:46:10381,Europe/Paris,,OIF, +OIF:SP:46:10400,1,"Stade",48.580777,2.256524,0,0,OIF:SA:46:10400,Europe/Paris,,OIF, +OIF:SP:46:10401,1,"Stade",48.581037,2.256768,0,0,OIF:SA:46:10400,Europe/Paris,,OIF, +OIF:SP:46:10404,1,"Villarceaux",48.667775,2.236278,0,0,OIF:SA:46:10404,Europe/Paris,,OIF, +OIF:SP:46:10405,1,"Villarceaux",48.668701,2.236629,0,0,OIF:SA:46:10404,Europe/Paris,,OIF, +OIF:SP:46:10406,1,"Les Clozeaux",48.660801,2.23716,0,0,OIF:SA:46:10406,Europe/Paris,,OIF, +OIF:SP:46:10407,1,"Les Clozeaux",48.660781,2.235559,0,0,OIF:SA:46:10406,Europe/Paris,,OIF, +OIF:SP:46:10408,1,"Les Hameaux",48.663137,2.236585,0,0,OIF:SA:46:10408,Europe/Paris,,OIF, +OIF:SP:46:10409,1,"Les Hameaux",48.663254,2.236626,0,0,OIF:SA:46:10408,Europe/Paris,,OIF, +OIF:SP:46:10410,1,"Jules Verne",48.658056,2.244153,0,0,OIF:SA:46:10410,Europe/Paris,,OIF, +OIF:SP:46:10411,1,"Jules Verne",48.658289,2.243257,0,0,OIF:SA:46:10410,Europe/Paris,,OIF, +OIF:SP:46:10412,1,"La Saulaie",48.661398,2.231202,0,0,OIF:SA:46:10412,Europe/Paris,,OIF, +OIF:SP:46:10413,1,"La Saulaie",48.661011,2.231148,0,0,OIF:SA:46:10412,Europe/Paris,,OIF, +OIF:SP:46:10414,1,"Lunezy",48.663921,2.250208,0,0,OIF:SA:46:10414,Europe/Paris,,OIF, +OIF:SP:46:10415,1,"Lunezy",48.664254,2.250452,0,0,OIF:SA:46:10414,Europe/Paris,,OIF, +OIF:SP:46:10419,1,"Pylandries",48.662135,2.241852,0,0,OIF:SA:46:10419,Europe/Paris,,OIF, +OIF:SP:46:10420,1,"Saint-Pierre",48.651858,2.24974,0,0,OIF:SA:46:10420,Europe/Paris,,OIF, +OIF:SP:46:10421,1,"Saint-Pierre",48.651786,2.25054,0,0,OIF:SA:46:10420,Europe/Paris,,OIF, +OIF:SP:46:10422,1,"Versailles",48.660517,2.241882,0,0,OIF:SA:46:10422,Europe/Paris,,OIF, +OIF:SP:46:10538,1,"Gare d'Orsay Ville",48.697723,2.183304,0,0,OIF:SA:8775884,Europe/Paris,,OIF, +OIF:SP:46:10588,1,"Ambroise Croizat",48.712878,2.257257,0,0,OIF:SA:46:10588,Europe/Paris,,OIF, +OIF:SP:46:10589,1,"Ambroise Croizat",48.713193,2.257311,0,0,OIF:SA:46:10588,Europe/Paris,,OIF, +OIF:SP:46:10597,1,"Cosmonautes / Flaubert",48.717141,2.260592,0,0,OIF:SA:46:10597,Europe/Paris,,OIF, +OIF:SP:46:10598,1,"Cosmonautes / Flaubert",48.717078,2.260334,0,0,OIF:SA:46:10597,Europe/Paris,,OIF, +OIF:SP:46:10599,1,"Cosmonautes / Stalingrad",48.714578,2.258857,0,0,OIF:SA:46:10599,Europe/Paris,,OIF, +OIF:SP:46:10600,1,"Cosmonautes / Stalingrad",48.714596,2.258626,0,0,OIF:SA:46:10599,Europe/Paris,,OIF, +OIF:SP:46:10630,1,"Léon Blum",48.710227,2.257017,0,0,OIF:SA:46:10630,Europe/Paris,,OIF, +OIF:SP:46:10631,1,"Léon Blum",48.710056,2.256772,0,0,OIF:SA:46:10630,Europe/Paris,,OIF, +OIF:SP:46:10657,1,"Ancienne Gare",48.442225,2.00749,0,0,OIF:SA:46:10657,Europe/Paris,,OIF, +OIF:SP:46:10658,1,"Ancienne Gare",48.442262,2.007652,0,0,OIF:SA:46:10657,Europe/Paris,,OIF, +OIF:SP:46:10659,1,"Mare",48.445073,2.003446,0,0,OIF:SA:46:10659,Europe/Paris,,OIF, +OIF:SP:46:10660,1,"Mare",48.445108,2.003175,0,0,OIF:SA:46:10659,Europe/Paris,,OIF, +OIF:SP:46:10673,1,"Château d'Eau",48.351014,1.988085,0,0,OIF:SA:46:10673,Europe/Paris,,OIF, +OIF:SP:46:10674,1,"Château d'Eau",48.350969,1.98791,0,0,OIF:SA:46:10673,Europe/Paris,,OIF, +OIF:SP:46:10696,1,"Le Bréau",48.46743,1.981403,0,0,OIF:SA:46:10696,Europe/Paris,,OIF, +OIF:SP:46:10698,1,"Mairie",48.470572,2.001256,0,0,OIF:SA:46:10698,Europe/Paris,,OIF, +OIF:SP:46:10699,1,"Mairie",48.470787,2.001146,0,0,OIF:SA:46:10698,Europe/Paris,,OIF, +OIF:SP:46:10700,1,"Beaurepaire",48.52441,2.033539,0,0,OIF:SA:46:10700,Europe/Paris,,OIF, +OIF:SP:46:10701,1,"Beaurepaire",48.524311,2.033594,0,0,OIF:SA:46:10700,Europe/Paris,,OIF, +OIF:SP:46:10702,1,"Buttes Rouges",48.530333,2.029566,0,0,OIF:SA:46:10702,Europe/Paris,,OIF, +OIF:SP:46:10703,1,"Buttes Rouges",48.530288,2.02958,0,0,OIF:SA:46:10702,Europe/Paris,,OIF, +OIF:SP:46:10704,1,"Colas",48.532298,2.053147,0,0,OIF:SA:46:10704,Europe/Paris,,OIF, +OIF:SP:46:10705,1,"Colas",48.532262,2.053323,0,0,OIF:SA:46:10704,Europe/Paris,,OIF, +OIF:SP:46:10706,1,"Église",48.530908,2.043558,0,0,OIF:SA:46:10706,Europe/Paris,,OIF, +OIF:SP:46:10707,1,"Église",48.530809,2.043599,0,0,OIF:SA:46:10706,Europe/Paris,,OIF, +OIF:SP:46:10708,1,"Mesnil Grand",48.533788,2.063629,0,0,OIF:SA:46:10708,Europe/Paris,,OIF, +OIF:SP:46:10709,1,"Mesnil Grand",48.533707,2.06367,0,0,OIF:SA:46:10708,Europe/Paris,,OIF, +OIF:SP:46:10710,1,"La Bruyère",48.525976,2.067717,0,0,OIF:SA:46:10710,Europe/Paris,,OIF, +OIF:SP:46:10712,1,"Marchais",48.517239,2.056476,0,0,OIF:SA:46:10712,Europe/Paris,,OIF, +OIF:SP:46:10713,1,"Marchais",48.517194,2.056449,0,0,OIF:SA:46:10712,Europe/Paris,,OIF, +OIF:SP:46:10773,1,"Baville",48.558798,2.130573,0,0,OIF:SA:46:10773,Europe/Paris,,OIF, +OIF:SP:46:10774,1,"Baville",48.558842,2.130384,0,0,OIF:SA:46:10773,Europe/Paris,,OIF, +OIF:SP:46:10780,1,"Gare RER",48.551608,2.126242,0,0,OIF:SA:8754550,Europe/Paris,,OIF, +OIF:SP:46:10783,1,"Tuilerie",48.566303,2.135433,0,0,OIF:SA:46:10783,Europe/Paris,,OIF, +OIF:SP:46:10784,1,"Tuilerie",48.566249,2.135366,0,0,OIF:SA:46:10783,Europe/Paris,,OIF, +OIF:SP:46:10785,1,"Mairie",48.553843,2.124703,0,0,OIF:SA:46:10785,Europe/Paris,,OIF, +OIF:SP:46:10786,1,"Mairie",48.55387,2.124662,0,0,OIF:SA:46:10785,Europe/Paris,,OIF, +OIF:SP:46:10789,1,"Église",48.429708,1.967001,0,0,OIF:SA:46:10789,Europe/Paris,,OIF, +OIF:SP:46:10790,1,"Église",48.429853,1.967297,0,0,OIF:SA:46:10789,Europe/Paris,,OIF, +OIF:SP:46:10791,1,"Guillerville",48.416764,1.953546,0,0,OIF:SA:46:10791,Europe/Paris,,OIF, +OIF:SP:46:10793,1,"Guillerville / la Gare",48.423165,1.962117,0,0,OIF:SA:46:10793,Europe/Paris,,OIF, +OIF:SP:46:10796,1,"Paponville",48.432781,1.952348,0,0,OIF:SA:46:10796,Europe/Paris,,OIF, +OIF:SP:46:10800,1,"Allée de l'Orge",48.646329,2.301392,0,0,OIF:SA:46:10800,Europe/Paris,,OIF, +OIF:SP:46:10801,1,"Allée de l'Orge",48.64632,2.301649,0,0,OIF:SA:46:10800,Europe/Paris,,OIF, +OIF:SP:46:10804,1,"A.Briand",48.633831,2.330151,0,0,OIF:SA:46:10804,Europe/Paris,,OIF, +OIF:SP:46:10805,1,"A.Briand",48.633687,2.330328,0,0,OIF:SA:46:10804,Europe/Paris,,OIF, +OIF:SP:46:10824,1,"Normandie Niemen",48.637202,2.331914,0,0,OIF:SA:46:10824,Europe/Paris,,OIF, +OIF:SP:46:10825,1,"Normandie Niemen",48.63739,2.331738,0,0,OIF:SA:46:10824,Europe/Paris,,OIF, +OIF:SP:46:10836,1,"Gare de Sainte-Geneviève des Bois",48.653443,2.313529,0,0,OIF:SA:8754521,Europe/Paris,,OIF, +OIF:SP:46:10838,1,"Rond-Point (Gare RER)",48.654063,2.313665,0,0,OIF:SA:8754521,Europe/Paris,,OIF, +OIF:SP:46:10842,1,"Henri Sellier",48.635323,2.327588,0,0,OIF:SA:46:10842,Europe/Paris,,OIF, +OIF:SP:46:10843,1,"Henri Sellier",48.635637,2.32733,0,0,OIF:SA:46:10842,Europe/Paris,,OIF, +OIF:SP:46:10846,1,"Jean Rostand",48.650025,2.305879,0,0,OIF:SA:46:10846,Europe/Paris,,OIF, +OIF:SP:46:10847,1,"Jean Rostand",48.649728,2.305758,0,0,OIF:SA:46:10846,Europe/Paris,,OIF, +OIF:SP:46:10874,1,"Piscine",48.634388,2.343157,0,0,OIF:SA:10:391,Europe/Paris,,OIF, +OIF:SP:46:10875,1,"Piscine",48.634613,2.343117,0,0,OIF:SA:10:391,Europe/Paris,,OIF, +OIF:SP:46:10876,1,"Place d'Hausen",48.629552,2.333122,0,0,OIF:SA:46:10876,Europe/Paris,,OIF, +OIF:SP:46:10896,1,"Croix Blanche",48.624527,2.341285,0,0,OIF:SA:46:10896,Europe/Paris,,OIF, +OIF:SP:46:10898,1,"Chanteloup",48.603762,2.256923,0,0,OIF:SA:46:10898,Europe/Paris,,OIF, +OIF:SP:46:10899,1,"Chanteloup",48.604329,2.256596,0,0,OIF:SA:46:10898,Europe/Paris,,OIF, +OIF:SP:46:10900,1,"Cité",48.59698,2.280338,0,0,OIF:SA:46:10900,Europe/Paris,,OIF, +OIF:SP:46:10901,1,"Cité",48.596944,2.280528,0,0,OIF:SA:46:10900,Europe/Paris,,OIF, +OIF:SP:46:10902,1,"Jules Vallès",48.596378,2.279891,0,0,OIF:SA:46:10902,Europe/Paris,,OIF, +OIF:SP:46:10903,1,"Jules Vallès",48.59672,2.280731,0,0,OIF:SA:46:10902,Europe/Paris,,OIF, +OIF:SP:46:10904,1,"Louis Babin",48.595707,2.255742,0,0,OIF:SA:46:10904,Europe/Paris,,OIF, +OIF:SP:46:10905,1,"Louis Babin",48.595851,2.255607,0,0,OIF:SA:46:10904,Europe/Paris,,OIF, +OIF:SP:46:10906,1,"La Grande Folie",48.60587,2.249681,0,0,OIF:SA:46:10906,Europe/Paris,,OIF, +OIF:SP:46:10907,1,"La Grande Folie",48.606077,2.250399,0,0,OIF:SA:46:10906,Europe/Paris,,OIF, +OIF:SP:46:10908,1,"La Petite Folie",48.599871,2.246018,0,0,OIF:SA:46:10908,Europe/Paris,,OIF, +OIF:SP:46:10909,1,"La Petite Folie",48.600933,2.247128,0,0,OIF:SA:46:10908,Europe/Paris,,OIF, +OIF:SP:46:10910,1,"Le Parc",48.594373,2.263469,0,0,OIF:SA:46:10910,Europe/Paris,,OIF, +OIF:SP:46:10911,1,"Le Parc",48.59476,2.264674,0,0,OIF:SA:46:10910,Europe/Paris,,OIF, +OIF:SP:46:10912,1,"Cendrennes",48.59929,2.279116,0,0,OIF:SA:46:10912,Europe/Paris,,OIF, +OIF:SP:46:10913,1,"Cendrennes",48.599182,2.279251,0,0,OIF:SA:46:10912,Europe/Paris,,OIF, +OIF:SP:46:10914,1,"Paul Langevin",48.595349,2.273252,0,0,OIF:SA:46:10914,Europe/Paris,,OIF, +OIF:SP:46:10915,1,"Paul Langevin",48.595214,2.272385,0,0,OIF:SA:46:10914,Europe/Paris,,OIF, +OIF:SP:46:10916,1,"Pré Barallon",48.593653,2.262413,0,0,OIF:SA:46:10916,Europe/Paris,,OIF, +OIF:SP:46:10917,1,"Pré Barallon",48.5935,2.262372,0,0,OIF:SA:46:10916,Europe/Paris,,OIF, +OIF:SP:46:10922,1,"Tuileries",48.607339,2.255684,0,0,OIF:SA:46:10922,Europe/Paris,,OIF, +OIF:SP:46:10923,1,"Tuileries",48.606647,2.25559,0,0,OIF:SA:46:10922,Europe/Paris,,OIF, +OIF:SP:46:10966,1,"Les Cours",48.430319,2.091011,0,0,OIF:SA:46:10966,Europe/Paris,,OIF, +OIF:SP:46:10967,1,"Les Cours",48.430202,2.090958,0,0,OIF:SA:46:10966,Europe/Paris,,OIF, +OIF:SP:46:10968,1,"Mairie",48.433396,2.075596,0,0,OIF:SA:46:10968,Europe/Paris,,OIF, +OIF:SP:46:10969,1,"Mairie",48.433369,2.075299,0,0,OIF:SA:46:10968,Europe/Paris,,OIF, +OIF:SP:46:10973,1,"Belle Etoile",48.577333,2.140701,0,0,OIF:SA:25:723,Europe/Paris,,OIF, +OIF:SP:46:10974,1,"Belle Etoile",48.57736,2.140701,0,0,OIF:SA:25:723,Europe/Paris,,OIF, +OIF:SP:46:10975,1,"Église",48.581151,2.123291,0,0,OIF:SA:46:10975,Europe/Paris,,OIF, +OIF:SP:46:10977,1,"Gloriette",48.581858,2.121635,0,0,OIF:SA:46:10977,Europe/Paris,,OIF, +OIF:SP:46:10981,1,"Stade",48.583675,2.122522,0,0,OIF:SA:24:14772,Europe/Paris,,OIF, +OIF:SP:46:10983,1,"Rue Bizet",48.631933,2.322177,0,0,OIF:SA:46:10983,Europe/Paris,,OIF, +OIF:SP:46:10984,1,"Boëldieu",48.6308,2.319276,0,0,OIF:SA:46:10984,Europe/Paris,,OIF, +OIF:SP:46:10985,1,"Rue Berlioz",48.635106,2.3204,0,0,OIF:SA:10:484,Europe/Paris,,OIF, +OIF:SP:46:10986,1,"Rue Berlioz",48.635268,2.320413,0,0,OIF:SA:10:484,Europe/Paris,,OIF, +OIF:SP:46:10987,1,"Chemin de Brétigny",48.622629,2.319278,0,0,OIF:SA:26:18131,Europe/Paris,,OIF, +OIF:SP:46:10988,1,"Chemin de Brétigny",48.622755,2.319251,0,0,OIF:SA:26:18131,Europe/Paris,,OIF, +OIF:SP:46:10989,1,"Cimetière",48.629341,2.305553,0,0,OIF:SA:46:10989,Europe/Paris,,OIF, +OIF:SP:46:10990,1,"Cimetière",48.629476,2.305919,0,0,OIF:SA:46:10989,Europe/Paris,,OIF, +OIF:SP:46:10991,1,"Condorcet",48.622908,2.316824,0,0,OIF:SA:26:18130,Europe/Paris,,OIF, +OIF:SP:46:10992,1,"Condorcet",48.623042,2.316756,0,0,OIF:SA:26:18130,Europe/Paris,,OIF, +OIF:SP:46:10993,1,"Cottage",48.638872,2.318486,0,0,OIF:SA:46:10993,Europe/Paris,,OIF, +OIF:SP:46:10994,1,"Cottage",48.638576,2.318812,0,0,OIF:SA:46:10993,Europe/Paris,,OIF, +OIF:SP:46:10995,1,"Gare de Saint-Michel sur Orge",48.636066,2.307108,0,0,OIF:SA:8754520,Europe/Paris,,OIF, +OIF:SP:46:10996,1,"Gare de Saint-Michel sur Orge",48.636137,2.307217,0,0,OIF:SA:8754520,Europe/Paris,,OIF, +OIF:SP:46:10999,1,"Hôtel de Ville",48.629754,2.302352,0,0,OIF:SA:46:10999,Europe/Paris,,OIF, +OIF:SP:46:11000,1,"Hôtel de Ville",48.62988,2.302393,0,0,OIF:SA:46:10999,Europe/Paris,,OIF, +OIF:SP:46:11001,1,"Jacques Brel",48.629541,2.313472,0,0,OIF:SA:46:11001,Europe/Paris,,OIF, +OIF:SP:46:11002,1,"La Tour",48.633929,2.322882,0,0,OIF:SA:10:1177,Europe/Paris,,OIF, +OIF:SP:46:11003,1,"La Tour",48.634082,2.322828,0,0,OIF:SA:10:1177,Europe/Paris,,OIF, +OIF:SP:46:11007,1,"Launay",48.634644,2.302796,0,0,OIF:SA:46:11007,Europe/Paris,,OIF, +OIF:SP:46:11008,1,"Launay",48.63441,2.302702,0,0,OIF:SA:46:11007,Europe/Paris,,OIF, +OIF:SP:46:11009,1,"Les Genêts",48.630917,2.316862,0,0,OIF:SA:46:11009,Europe/Paris,,OIF, +OIF:SP:46:11010,1,"Marché",48.638107,2.312966,0,0,OIF:SA:46:11010,Europe/Paris,,OIF, +OIF:SP:46:11011,1,"Marché",48.638296,2.313292,0,0,OIF:SA:46:11010,Europe/Paris,,OIF, +OIF:SP:46:11013,1,"Montatons",48.627725,2.312103,0,0,OIF:SA:46:11013,Europe/Paris,,OIF, +OIF:SP:46:11014,1,"Noue Rousseau",48.628058,2.312578,0,0,OIF:SA:46:11014,Europe/Paris,,OIF, +OIF:SP:46:11016,1,"Rosières",48.629675,2.311058,0,0,OIF:SA:46:11016,Europe/Paris,,OIF, +OIF:SP:46:11020,1,"Gounod",48.634684,2.324686,0,0,OIF:SA:46:11020,Europe/Paris,,OIF, +OIF:SP:46:11021,1,"Gounod",48.635233,2.325228,0,0,OIF:SA:46:11020,Europe/Paris,,OIF, +OIF:SP:46:11025,1,"Tiphoines",48.629205,2.299871,0,0,OIF:SA:46:11025,Europe/Paris,,OIF, +OIF:SP:46:11026,1,"Tiphoines",48.629259,2.299613,0,0,OIF:SA:46:11025,Europe/Paris,,OIF, +OIF:SP:46:11027,1,"Vallée de l'Orge",48.63414,2.299135,0,0,OIF:SA:46:11027,Europe/Paris,,OIF, +OIF:SP:46:11028,1,"Vallée de l'Orge",48.63432,2.299528,0,0,OIF:SA:46:11027,Europe/Paris,,OIF, +OIF:SP:46:11029,1,"Verdun",48.637434,2.315435,0,0,OIF:SA:46:11029,Europe/Paris,,OIF, +OIF:SP:46:11030,1,"Verdun",48.637461,2.31572,0,0,OIF:SA:46:11029,Europe/Paris,,OIF, +OIF:SP:46:11069,1,"Place",48.541693,2.178511,0,0,OIF:SA:46:11069,Europe/Paris,,OIF, +OIF:SP:46:11081,1,"Feugères",48.554054,2.179286,0,0,OIF:SA:46:11081,Europe/Paris,,OIF, +OIF:SP:46:11082,1,"Feugères",48.554108,2.179096,0,0,OIF:SA:46:11081,Europe/Paris,,OIF, +OIF:SP:46:11085,1,"La Cordelle",48.563149,2.191407,0,0,OIF:SA:46:11085,Europe/Paris,,OIF, +OIF:SP:46:11086,1,"La Cordelle",48.563149,2.191407,0,0,OIF:SA:46:11085,Europe/Paris,,OIF, +OIF:SP:46:11087,1,"Haut Fuyeau",48.555017,2.179852,0,0,OIF:SA:46:11087,Europe/Paris,,OIF, +OIF:SP:46:11088,1,"Haut Fuyeau",48.555071,2.179662,0,0,OIF:SA:46:11087,Europe/Paris,,OIF, +OIF:SP:46:11091,1,"Mairie",48.560748,2.18383,0,0,OIF:SA:46:11091,Europe/Paris,,OIF, +OIF:SP:46:11092,1,"Mairie",48.560766,2.183694,0,0,OIF:SA:46:11091,Europe/Paris,,OIF, +OIF:SP:46:11095,1,"Pont Guérin",48.564218,2.183169,0,0,OIF:SA:46:11095,Europe/Paris,,OIF, +OIF:SP:46:11096,1,"Pont Guérin",48.564074,2.183197,0,0,OIF:SA:46:11095,Europe/Paris,,OIF, +OIF:SP:46:11097,1,"Buhoterie",48.688012,2.264667,0,0,OIF:SA:46:11097,Europe/Paris,,OIF, +OIF:SP:46:11099,1,"Collège Pablo Picasso",48.690834,2.280371,0,0,OIF:SA:46:11099,Europe/Paris,,OIF, +OIF:SP:46:11100,1,"Collège Pablo Picasso",48.68989,2.279802,0,0,OIF:SA:46:11099,Europe/Paris,,OIF, +OIF:SP:46:11101,1,"Grande Fontaine",48.689754,2.261963,0,0,OIF:SA:46:11101,Europe/Paris,,OIF, +OIF:SP:46:11103,1,"L'Arpajonnais",48.690424,2.270393,0,0,OIF:SA:46:11103,Europe/Paris,,OIF, +OIF:SP:46:11104,1,"L'Arpajonnais",48.690972,2.270501,0,0,OIF:SA:46:11103,Europe/Paris,,OIF, +OIF:SP:46:11105,1,"Église",48.693057,2.269548,0,0,OIF:SA:46:11105,Europe/Paris,,OIF, +OIF:SP:46:11111,1,"Les Dévodes",48.696626,2.26972,0,0,OIF:SA:46:11111,Europe/Paris,,OIF, +OIF:SP:46:11112,1,"Les Dévodes",48.69623,2.2701,0,0,OIF:SA:46:11111,Europe/Paris,,OIF, +OIF:SP:46:11113,1,"Louis Aragon",48.689151,2.277224,0,0,OIF:SA:46:11113,Europe/Paris,,OIF, +OIF:SP:46:11114,1,"Mairie",48.691041,2.264296,0,0,OIF:SA:46:11114,Europe/Paris,,OIF, +OIF:SP:46:11116,1,"Monthuchet",48.687352,2.275094,0,0,OIF:SA:46:11116,Europe/Paris,,OIF, +OIF:SP:46:11117,1,"Monthuchet",48.687739,2.274972,0,0,OIF:SA:46:11116,Europe/Paris,,OIF, +OIF:SP:46:11118,1,"Place Adam",48.688802,2.279152,0,0,OIF:SA:46:11118,Europe/Paris,,OIF, +OIF:SP:46:11120,1,"Place Marty",48.68623,2.277281,0,0,OIF:SA:46:11120,Europe/Paris,,OIF, +OIF:SP:46:11121,1,"Pont Neuf",48.693729,2.281753,0,0,OIF:SA:46:11121,Europe/Paris,,OIF, +OIF:SP:46:11122,1,"Pont Neuf",48.693684,2.28159,0,0,OIF:SA:46:11121,Europe/Paris,,OIF, +OIF:SP:46:11123,1,"Rue du Rocher",48.690702,2.269008,0,0,OIF:SA:46:11123,Europe/Paris,,OIF, +OIF:SP:46:11126,1,"Gare de Savigny sur Orge",48.676087,2.352555,0,0,OIF:SA:8754523,Europe/Paris,,OIF, +OIF:SP:46:11127,1,"Lucien Midol",48.672922,2.353178,0,0,OIF:SA:46:11127,Europe/Paris,,OIF, +OIF:SP:46:11128,1,"Blancheface",48.529734,2.096851,0,0,OIF:SA:46:11128,Europe/Paris,,OIF, +OIF:SP:46:11129,1,"Blancheface",48.529734,2.096946,0,0,OIF:SA:46:11128,Europe/Paris,,OIF, +OIF:SP:46:11132,1,"Gare",48.535428,2.069265,0,0,OIF:SA:8754551,Europe/Paris,,OIF, +OIF:SP:46:11133,1,"Gare",48.535556,2.070199,0,0,OIF:SA:8754551,Europe/Paris,,OIF, +OIF:SP:46:11134,1,"La Charpenterie",48.538612,2.090895,0,0,OIF:SA:46:11134,Europe/Paris,,OIF, +OIF:SP:46:11135,1,"La Charpenterie",48.538469,2.091004,0,0,OIF:SA:46:11134,Europe/Paris,,OIF, +OIF:SP:46:11136,1,"Le Mesnil",48.533258,2.101627,0,0,OIF:SA:46:11136,Europe/Paris,,OIF, +OIF:SP:46:11138,1,"Mairie",48.536721,2.080914,0,0,OIF:SA:46:11138,Europe/Paris,,OIF, +OIF:SP:46:11139,1,"Mairie",48.536721,2.080914,0,0,OIF:SA:46:11138,Europe/Paris,,OIF, +OIF:SP:46:11140,1,"Mondétour",48.520526,2.074551,0,0,OIF:SA:46:11140,Europe/Paris,,OIF, +OIF:SP:46:11141,1,"Mondétour",48.520526,2.074497,0,0,OIF:SA:46:11140,Europe/Paris,,OIF, +OIF:SP:46:11143,1,"Montflix",48.512872,2.107699,0,0,OIF:SA:46:11143,Europe/Paris,,OIF, +OIF:SP:46:11144,1,"Rue des Sources",48.538685,2.100086,0,0,OIF:SA:46:11144,Europe/Paris,,OIF, +OIF:SP:46:11145,1,"Rue des Sources",48.538622,2.100167,0,0,OIF:SA:46:11144,Europe/Paris,,OIF, +OIF:SP:46:11163,1,"La Briche",48.535644,2.173061,0,0,OIF:SA:46:11163,Europe/Paris,,OIF, +OIF:SP:46:11164,1,"La Briche",48.535572,2.172804,0,0,OIF:SA:46:11163,Europe/Paris,,OIF, +OIF:SP:46:11165,1,"Les Émondants",48.519482,2.161406,0,0,OIF:SA:46:11165,Europe/Paris,,OIF, +OIF:SP:46:11166,1,"Les Émondants",48.5195,2.161433,0,0,OIF:SA:46:11165,Europe/Paris,,OIF, +OIF:SP:46:11167,1,"Vallée",48.528239,2.150238,0,0,OIF:SA:46:11167,Europe/Paris,,OIF, +OIF:SP:46:11168,1,"Vallée",48.528158,2.150292,0,0,OIF:SA:46:11167,Europe/Paris,,OIF, +OIF:SP:46:11169,1,"Congerville",48.387374,1.988437,0,0,OIF:SA:46:11169,Europe/Paris,,OIF, +OIF:SP:46:11170,1,"Congerville",48.387392,1.988599,0,0,OIF:SA:46:11169,Europe/Paris,,OIF, +OIF:SP:46:11173,1,"Thionville",48.377563,1.993955,0,0,OIF:SA:46:11173,Europe/Paris,,OIF, +OIF:SP:46:11174,1,"Thionville",48.377582,1.994171,0,0,OIF:SA:46:11173,Europe/Paris,,OIF, +OIF:SP:46:11334,1,"École Île de France",48.70194,2.25874,0,0,OIF:SA:46:11334,Europe/Paris,,OIF, +OIF:SP:46:11335,1,"École Île de France",48.702147,2.25874,0,0,OIF:SA:46:11334,Europe/Paris,,OIF, +OIF:SP:46:11338,1,"La Bretèche CC Villebon 2",48.704393,2.25636,0,0,OIF:SA:46:11338,Europe/Paris,,OIF, +OIF:SP:46:11339,1,"La Bretèche CC Villebon 2",48.704509,2.25617,0,0,OIF:SA:46:11338,Europe/Paris,,OIF, +OIF:SP:46:11340,1,"La Prairie",48.699769,2.265927,0,0,OIF:SA:46:11340,Europe/Paris,,OIF, +OIF:SP:46:11341,1,"La Prairie",48.700003,2.265859,0,0,OIF:SA:46:11340,Europe/Paris,,OIF, +OIF:SP:46:11368,1,"Bois Fourgon",48.51217,2.1369,0,0,OIF:SA:46:11368,Europe/Paris,,OIF, +OIF:SP:46:11369,1,"Bois Fourgon",48.512215,2.136927,0,0,OIF:SA:46:11368,Europe/Paris,,OIF, +OIF:SP:46:11370,1,"Cimetière",48.512449,2.126427,0,0,OIF:SA:46:11370,Europe/Paris,,OIF, +OIF:SP:46:11371,1,"Cimetière",48.512539,2.126792,0,0,OIF:SA:46:11370,Europe/Paris,,OIF, +OIF:SP:46:11372,1,"Fourchainville",48.50127,2.123807,0,0,OIF:SA:46:11372,Europe/Paris,,OIF, +OIF:SP:46:11373,1,"Fourchainville",48.501431,2.12363,0,0,OIF:SA:46:11372,Europe/Paris,,OIF, +OIF:SP:46:11376,1,"Saudreville",48.498686,2.132082,0,0,OIF:SA:46:11376,Europe/Paris,,OIF, +OIF:SP:46:11377,1,"Saudreville",48.49866,2.132515,0,0,OIF:SA:46:11376,Europe/Paris,,OIF, +OIF:SP:46:11380,1,"Bas Rochers",48.653829,2.26793,0,0,OIF:SA:46:11380,Europe/Paris,,OIF, +OIF:SP:46:11381,1,"Bas Rochers",48.653901,2.268147,0,0,OIF:SA:46:11380,Europe/Paris,,OIF, +OIF:SP:46:11382,1,"Beaulieu",48.658298,2.269959,0,0,OIF:SA:46:11382,Europe/Paris,,OIF, +OIF:SP:46:11385,1,"Gouny",48.664698,2.270453,0,0,OIF:SA:46:11385,Europe/Paris,,OIF, +OIF:SP:46:11386,1,"Gouny",48.664554,2.270413,0,0,OIF:SA:46:11385,Europe/Paris,,OIF, +OIF:SP:46:11387,1,"Grand Noyer",48.66193,2.271556,0,0,OIF:SA:46:11387,Europe/Paris,,OIF, +OIF:SP:46:11389,1,"La Grange aux Cercles",48.659973,2.275737,0,0,OIF:SA:46:11389,Europe/Paris,,OIF, +OIF:SP:46:11390,1,"La Grange aux Cercles",48.660666,2.276551,0,0,OIF:SA:46:11389,Europe/Paris,,OIF, +OIF:SP:46:11391,1,"Grenouillère",48.65543,2.268593,0,0,OIF:SA:46:11391,Europe/Paris,,OIF, +OIF:SP:46:11392,1,"Grenouillère",48.655322,2.268756,0,0,OIF:SA:46:11391,Europe/Paris,,OIF, +OIF:SP:46:11399,1,"Les Joncs Marins",48.665376,2.27778,0,0,OIF:SA:46:11399,Europe/Paris,,OIF, +OIF:SP:46:11400,1,"Les Joncs Marins",48.665323,2.278282,0,0,OIF:SA:46:11399,Europe/Paris,,OIF, +OIF:SP:46:11403,1,"Mairie",48.660877,2.268328,0,0,OIF:SA:46:11403,Europe/Paris,,OIF, +OIF:SP:46:11405,1,"Mésanges",48.664546,2.256205,0,0,OIF:SA:46:11405,Europe/Paris,,OIF, +OIF:SP:46:11406,1,"Mésanges",48.664662,2.255974,0,0,OIF:SA:46:11405,Europe/Paris,,OIF, +OIF:SP:46:11408,1,"Plateau",48.664695,2.26417,0,0,OIF:SA:46:11408,Europe/Paris,,OIF, +OIF:SP:46:11409,1,"Plateau",48.664533,2.263695,0,0,OIF:SA:46:11408,Europe/Paris,,OIF, +OIF:SP:46:11410,1,"Presbytère",48.66484,2.267576,0,0,OIF:SA:46:11410,Europe/Paris,,OIF, +OIF:SP:46:11411,1,"Presbytère",48.664697,2.267481,0,0,OIF:SA:46:11410,Europe/Paris,,OIF, +OIF:SP:46:11412,1,"Ruisseau Blanc",48.667061,2.254545,0,0,OIF:SA:46:11412,Europe/Paris,,OIF, +OIF:SP:46:11413,1,"Ruisseau Blanc",48.667062,2.25479,0,0,OIF:SA:46:11412,Europe/Paris,,OIF, +OIF:SP:46:11414,1,"Saint-Fiacre",48.652241,2.272518,0,0,OIF:SA:46:11414,Europe/Paris,,OIF, +OIF:SP:46:11416,1,"Voie des Postes",48.661384,2.275247,0,0,OIF:SA:46:11416,Europe/Paris,,OIF, +OIF:SP:46:11417,1,"ZAC des Graviers",48.650784,2.271203,0,0,OIF:SA:46:11417,Europe/Paris,,OIF, +OIF:SP:46:11418,1,"ZAC des Graviers",48.650874,2.270986,0,0,OIF:SA:46:11417,Europe/Paris,,OIF, +OIF:SP:46:11422,1,"Château d'Eau",48.686059,2.209078,0,0,OIF:SA:46:11422,Europe/Paris,,OIF, +OIF:SP:46:11423,1,"Château d'Eau",48.685863,2.210205,0,0,OIF:SA:46:11422,Europe/Paris,,OIF, +OIF:SP:46:11424,1,"Chemin Vert",48.678475,2.239827,0,0,OIF:SA:46:11424,Europe/Paris,,OIF, +OIF:SP:46:11425,1,"Chemin Vert",48.678628,2.239949,0,0,OIF:SA:46:11424,Europe/Paris,,OIF, +OIF:SP:46:11426,1,"EDF",48.679942,2.231612,0,0,OIF:SA:46:11426,Europe/Paris,,OIF, +OIF:SP:46:11427,1,"EDF",48.679376,2.23145,0,0,OIF:SA:46:11426,Europe/Paris,,OIF, +OIF:SP:46:11430,1,"Fretay",48.671942,2.213008,0,0,OIF:SA:46:11430,Europe/Paris,,OIF, +OIF:SP:46:11431,1,"Fretay",48.671772,2.213225,0,0,OIF:SA:46:11430,Europe/Paris,,OIF, +OIF:SP:46:11432,1,"La Brûlerie",48.685287,2.21827,0,0,OIF:SA:46:11432,Europe/Paris,,OIF, +OIF:SP:46:11433,1,"La Brûlerie",48.685475,2.218039,0,0,OIF:SA:46:11432,Europe/Paris,,OIF, +OIF:SP:46:11434,1,"La Poitevine",48.67498,2.22132,0,0,OIF:SA:46:11434,Europe/Paris,,OIF, +OIF:SP:46:11435,1,"La Poitevine",48.67497,2.220492,0,0,OIF:SA:46:11434,Europe/Paris,,OIF, +OIF:SP:46:11436,1,"Le Rocher",48.675778,2.239031,0,0,OIF:SA:46:11436,Europe/Paris,,OIF, +OIF:SP:46:11437,1,"Le Rocher",48.676065,2.239221,0,0,OIF:SA:46:11436,Europe/Paris,,OIF, +OIF:SP:46:11477,1,"Carrefour Méderic / Péri",48.659284,2.306661,0,0,OIF:SA:46:11477,Europe/Paris,,OIF, +OIF:SP:46:11480,1,"Garreneau",48.655129,2.298726,0,0,OIF:SA:46:11480,Europe/Paris,,OIF, +OIF:SP:46:11481,1,"Garreneau",48.655506,2.299364,0,0,OIF:SA:46:11480,Europe/Paris,,OIF, +OIF:SP:46:11485,1,"Résidence",48.660389,2.304584,0,0,OIF:SA:46:11485,Europe/Paris,,OIF, +OIF:SP:46:11486,1,"Résidence",48.660658,2.304136,0,0,OIF:SA:46:11485,Europe/Paris,,OIF, +OIF:SP:46:11487,1,"ZA Pointe à l'Abbé",48.663865,2.295735,0,0,OIF:SA:46:11487,Europe/Paris,,OIF, +OIF:SP:46:11488,1,"ZA Pointe à l'Abbé",48.664224,2.295368,0,0,OIF:SA:46:11487,Europe/Paris,,OIF, +OIF:SP:46:11491,1,"Blazy",48.68391,2.376164,0,0,OIF:SA:8798410,Europe/Paris,,OIF, +OIF:SP:46:11492,1,"Blazy",48.684873,2.374454,0,0,OIF:SA:8798410,Europe/Paris,,OIF, +OIF:SP:46:11493,1,"Bretagne",48.67159,2.365243,0,0,OIF:SA:46:11493,Europe/Paris,,OIF, +OIF:SP:46:11494,1,"Bretagne",48.671437,2.365162,0,0,OIF:SA:46:11493,Europe/Paris,,OIF, +OIF:SP:46:11495,1,"Café des Sports",48.677413,2.371449,0,0,OIF:SA:46:11495,Europe/Paris,,OIF, +OIF:SP:46:11496,1,"Café des Sports",48.677377,2.371666,0,0,OIF:SA:46:11495,Europe/Paris,,OIF, +OIF:SP:46:11497,1,"Château",48.669914,2.377104,0,0,OIF:SA:46:11497,Europe/Paris,,OIF, +OIF:SP:46:11498,1,"Château",48.669932,2.37747,0,0,OIF:SA:46:11497,Europe/Paris,,OIF, +OIF:SP:46:11499,1,"Lt Col. Bizeul",48.671078,2.361239,0,0,OIF:SA:46:11499,Europe/Paris,,OIF, +OIF:SP:46:11500,1,"Lt Col. Bizeul",48.670701,2.360126,0,0,OIF:SA:46:11499,Europe/Paris,,OIF, +OIF:SP:46:11501,1,"Docteur Roux",48.663762,2.359607,0,0,OIF:SA:46:11501,Europe/Paris,,OIF, +OIF:SP:46:11502,1,"Docteur Roux",48.663753,2.359906,0,0,OIF:SA:46:11501,Europe/Paris,,OIF, +OIF:SP:46:11503,1,"Du Bellay",48.674403,2.36534,0,0,OIF:SA:46:11503,Europe/Paris,,OIF, +OIF:SP:46:11504,1,"Du Bellay",48.6747,2.365218,0,0,OIF:SA:46:11503,Europe/Paris,,OIF, +OIF:SP:46:11505,1,"Voie de Compiègne",48.66155,2.363501,0,0,OIF:SA:10:506,Europe/Paris,,OIF, +OIF:SP:46:11506,1,"Voie de Compiègne",48.662287,2.361208,0,0,OIF:SA:10:506,Europe/Paris,,OIF, +OIF:SP:46:11507,1,"Gare de Viry Châtillon",48.675682,2.385184,0,0,OIF:SA:8768131,Europe/Paris,,OIF, +OIF:SP:46:11508,1,"Gare de Viry Châtillon",48.676096,2.385483,0,0,OIF:SA:8768131,Europe/Paris,,OIF, +OIF:SP:46:11515,1,"Husson",48.6767,2.379756,0,0,OIF:SA:46:11515,Europe/Paris,,OIF, +OIF:SP:46:11516,1,"Husson",48.676439,2.37947,0,0,OIF:SA:46:11515,Europe/Paris,,OIF, +OIF:SP:46:11519,1,"La Forêt",48.656694,2.371802,0,0,OIF:SA:46:11519,Europe/Paris,,OIF, +OIF:SP:46:11520,1,"La Forêt",48.655858,2.372127,0,0,OIF:SA:46:11519,Europe/Paris,,OIF, +OIF:SP:46:11521,1,"La Treille",48.652397,2.370212,0,0,OIF:SA:10:1358,Europe/Paris,,OIF, +OIF:SP:46:11522,1,"Le Billoir",48.666628,2.363639,0,0,OIF:SA:46:11522,Europe/Paris,,OIF, +OIF:SP:46:11523,1,"Le Billoir",48.666646,2.364101,0,0,OIF:SA:46:11522,Europe/Paris,,OIF, +OIF:SP:46:11524,1,"Poirier Picquet",48.663228,2.374873,0,0,OIF:SA:46:11524,Europe/Paris,,OIF, +OIF:SP:46:11525,1,"Poirier Picquet",48.664486,2.37577,0,0,OIF:SA:46:11524,Europe/Paris,,OIF, +OIF:SP:46:11526,1,"Jean Moulin",48.660299,2.36791,0,0,OIF:SA:10:1285,Europe/Paris,,OIF, +OIF:SP:46:11527,1,"Jean Moulin",48.66038,2.368154,0,0,OIF:SA:10:1285,Europe/Paris,,OIF, +OIF:SP:46:11528,1,"Les Patios",48.645882,2.365243,0,0,OIF:SA:46:11528,Europe/Paris,,OIF, +OIF:SP:46:11529,1,"Les Patios",48.646034,2.365718,0,0,OIF:SA:46:11528,Europe/Paris,,OIF, +OIF:SP:46:11530,1,"Les Sablons",48.669415,2.364509,0,0,OIF:SA:46:11530,Europe/Paris,,OIF, +OIF:SP:46:11531,1,"Les Sablons",48.668804,2.363667,0,0,OIF:SA:46:11530,Europe/Paris,,OIF, +OIF:SP:46:11532,1,"Mairie",48.671776,2.375422,0,0,OIF:SA:46:11532,Europe/Paris,,OIF, +OIF:SP:46:11535,1,"Molière",48.667816,2.359663,0,0,OIF:SA:46:11535,Europe/Paris,,OIF, +OIF:SP:46:11536,1,"Molière",48.667816,2.360179,0,0,OIF:SA:46:11535,Europe/Paris,,OIF, +OIF:SP:46:11543,1,"Calypso",48.681069,2.378171,0,0,OIF:SA:46:11543,Europe/Paris,,OIF, +OIF:SP:46:11544,1,"Calypso",48.681168,2.3787,0,0,OIF:SA:46:11543,Europe/Paris,,OIF, +OIF:SP:46:11545,1,"Petit Montmartre",48.675113,2.367295,0,0,OIF:SA:46:11545,Europe/Paris,,OIF, +OIF:SP:46:11546,1,"Petit Montmartre",48.675158,2.367729,0,0,OIF:SA:46:11545,Europe/Paris,,OIF, +OIF:SP:46:11547,1,"François Mitterrand",48.658879,2.367339,0,0,OIF:SA:46:11547,Europe/Paris,,OIF, +OIF:SP:46:11548,1,"François Mitterrand",48.65887,2.367475,0,0,OIF:SA:46:11547,Europe/Paris,,OIF, +OIF:SP:46:11551,1,"Provence",48.668525,2.361537,0,0,OIF:SA:46:11551,Europe/Paris,,OIF, +OIF:SP:46:11552,1,"Provence",48.668597,2.361767,0,0,OIF:SA:46:11551,Europe/Paris,,OIF, +OIF:SP:46:11555,1,"Stalingrad",48.675875,2.373335,0,0,OIF:SA:46:11555,Europe/Paris,,OIF, +OIF:SP:46:11556,1,"Stalingrad",48.675758,2.373932,0,0,OIF:SA:46:11555,Europe/Paris,,OIF, +OIF:SP:46:11557,1,"Victor Schoelcher",48.648839,2.367455,0,0,OIF:SA:46:11557,Europe/Paris,,OIF, +OIF:SP:46:11558,1,"Victor Schoelcher",48.648847,2.368093,0,0,OIF:SA:46:11557,Europe/Paris,,OIF, +OIF:SP:46:11693,1,"Lycée de l'Essouriau",48.676611,2.165477,0,0,OIF:SA:24:11707,Europe/Paris,,OIF, +OIF:SP:46:11694,1,"Lycée de l'Essouriau",48.676826,2.164744,0,0,OIF:SA:24:11707,Europe/Paris,,OIF, +OIF:SP:46:11703,1,"Les Thomas",48.679726,2.162766,0,0,OIF:SA:46:11703,Europe/Paris,,OIF, +OIF:SP:46:11704,1,"Les Thomas",48.679664,2.16301,0,0,OIF:SA:46:11703,Europe/Paris,,OIF, +OIF:SP:46:11723,1,"La Queue d'Oiseau",48.678326,2.191329,0,0,OIF:SA:46:11723,Europe/Paris,,OIF, +OIF:SP:46:11724,1,"La Queue d'Oiseau",48.678982,2.191232,0,0,OIF:SA:46:11723,Europe/Paris,,OIF, +OIF:SP:46:14417,1,"Château",48.673822,2.289999,0,0,OIF:SA:46:14417,Europe/Paris,,OIF, +OIF:SP:46:14418,1,"Château",48.673472,2.289755,0,0,OIF:SA:46:14417,Europe/Paris,,OIF, +OIF:SP:46:14421,1,"Gutenberg",48.708536,2.256327,0,0,OIF:SA:46:14421,Europe/Paris,,OIF, +OIF:SP:46:14422,1,"Gutenberg",48.708195,2.256707,0,0,OIF:SA:46:14421,Europe/Paris,,OIF, +OIF:SP:46:14469,1,"Clos de Launay",48.68059,2.232249,0,0,OIF:SA:46:14469,Europe/Paris,,OIF, +OIF:SP:46:14470,1,"Clos de Launay",48.680707,2.232371,0,0,OIF:SA:46:14469,Europe/Paris,,OIF, +OIF:SP:46:14471,1,"Trévoix",48.585674,2.22118,0,0,OIF:SA:46:14471,Europe/Paris,,OIF, +OIF:SP:46:14473,1,"Orangerie",48.591837,2.218049,0,0,OIF:SA:46:14473,Europe/Paris,,OIF, +OIF:SP:46:14474,1,"Orangerie",48.59181,2.218293,0,0,OIF:SA:46:14473,Europe/Paris,,OIF, +OIF:SP:46:14475,1,"La Chapelle",48.589602,2.221198,0,0,OIF:SA:46:14475,Europe/Paris,,OIF, +OIF:SP:46:14476,1,"La Chapelle",48.589611,2.221103,0,0,OIF:SA:46:14475,Europe/Paris,,OIF, +OIF:SP:46:14479,1,"Vernet",48.590417,2.227647,0,0,OIF:SA:46:14479,Europe/Paris,,OIF, +OIF:SP:46:14480,1,"Vernet",48.59039,2.227701,0,0,OIF:SA:46:14479,Europe/Paris,,OIF, +OIF:SP:46:14492,1,"République",48.588979,2.218327,0,0,OIF:SA:46:14491,Europe/Paris,,OIF, +OIF:SP:46:14497,1,"Cerfeuille",48.594019,2.234442,0,0,OIF:SA:46:14497,Europe/Paris,,OIF, +OIF:SP:46:14499,1,"Mare des Champs",48.605744,2.238648,0,0,OIF:SA:46:14499,Europe/Paris,,OIF, +OIF:SP:46:14501,1,"Collège Jean Moulin",48.580457,2.249846,0,0,OIF:SA:46:14501,Europe/Paris,,OIF, +OIF:SP:46:14503,1,"Collège Albert Camus",48.580864,2.253598,0,0,OIF:SA:46:14503,Europe/Paris,,OIF, +OIF:SP:46:14505,1,"Rond-Point la Roche",48.600662,2.234971,0,0,OIF:SA:46:14505,Europe/Paris,,OIF, +OIF:SP:46:14507,1,"Le Perray",48.657535,2.290652,0,0,OIF:SA:46:14507,Europe/Paris,,OIF, +OIF:SP:46:14512,1,"La Huchette",48.493742,2.185771,0,0,OIF:SA:46:14512,Europe/Paris,,OIF, +OIF:SP:46:14516,1,"Collège de la Fontaine aux Bergers",48.594702,2.2249,0,0,OIF:SA:46:14516,Europe/Paris,,OIF, +OIF:SP:46:14519,1,"Collège Louise Weiss",48.66141,2.245354,0,0,OIF:SA:46:14519,Europe/Paris,,OIF, +OIF:SP:46:14520,1,"Collège Louise Weiss",48.661383,2.245205,0,0,OIF:SA:46:14519,Europe/Paris,,OIF, +OIF:SP:46:14521,1,"Fontaine Mansart",48.658737,2.285115,0,0,OIF:SA:46:10001,Europe/Paris,,OIF, +OIF:SP:46:14522,1,"Église",48.529799,2.225405,0,0,OIF:SA:46:14522,Europe/Paris,,OIF, +OIF:SP:46:14526,1,"Saut du Loup",48.595463,2.188674,0,0,OIF:SA:46:14526,Europe/Paris,,OIF, +OIF:SP:46:14528,1,"Jean de la Fontaine",48.44552,2.179856,0,0,OIF:SA:46:14528,Europe/Paris,,OIF, +OIF:SP:46:14529,1,"Jean de la Fontaine",48.445475,2.179937,0,0,OIF:SA:46:14528,Europe/Paris,,OIF, +OIF:SP:46:14530,1,"Courtabœuf 7",48.682542,2.215046,0,0,OIF:SA:46:14530,Europe/Paris,,OIF, +OIF:SP:46:14534,1,"Le Mesnil Forget",48.644672,2.244868,0,0,OIF:SA:46:10051,Europe/Paris,,OIF, +OIF:SP:46:14535,1,"Rosières",48.629918,2.311546,0,0,OIF:SA:46:11016,Europe/Paris,,OIF, +OIF:SP:46:14536,1,"Rue de la Libération",48.591641,2.187913,0,0,OIF:SA:46:14536,Europe/Paris,,OIF, +OIF:SP:46:14537,1,"Avenue du 8 Mai 1945",48.437378,2.162559,0,0,OIF:SA:46:14537,Europe/Paris,,OIF, +OIF:SP:46:14538,1,"Montfaucon",48.439975,2.162159,0,0,OIF:SA:46:14538,Europe/Paris,,OIF, +OIF:SP:46:14543,1,"Gare de Breuillet Village",48.564805,2.172102,0,0,OIF:SA:8754549,Europe/Paris,,OIF, +OIF:SP:46:14548,1,"Roses",48.631296,2.328877,0,0,OIF:SA:46:14548,Europe/Paris,,OIF, +OIF:SP:46:14549,1,"Roses",48.631296,2.329121,0,0,OIF:SA:46:14548,Europe/Paris,,OIF, +OIF:SP:46:14550,1,"L'Envol",48.673816,2.376184,0,0,OIF:SA:46:14550,Europe/Paris,,OIF, +OIF:SP:46:14551,1,"L'Envol",48.674158,2.376035,0,0,OIF:SA:46:14550,Europe/Paris,,OIF, +OIF:SP:46:14552,1,"Les Solstices",48.655588,2.372588,0,0,OIF:SA:10:1321,Europe/Paris,,OIF, +OIF:SP:46:14553,1,"Les Solstices",48.656289,2.373226,0,0,OIF:SA:10:1321,Europe/Paris,,OIF, +OIF:SP:46:14554,1,"La Treille",48.65246,2.3699,0,0,OIF:SA:10:1358,Europe/Paris,,OIF, +OIF:SP:46:14555,1,"Jean Baptiste Lebas",48.659994,2.364816,0,0,OIF:SA:46:14555,Europe/Paris,,OIF, +OIF:SP:46:14566,1,"Noyers",48.653932,2.246426,0,0,OIF:SA:46:14566,Europe/Paris,,OIF, +OIF:SP:46:14567,1,"Noyers",48.654623,2.24481,0,0,OIF:SA:46:14566,Europe/Paris,,OIF, +OIF:SP:46:14568,1,"République",48.696457,2.184747,0,0,OIF:SA:46:14568,Europe/Paris,,OIF, +OIF:SP:46:14569,1,"Mairie",48.681978,2.237119,0,0,OIF:SA:46:14569,Europe/Paris,,OIF, +OIF:SP:46:14573,1,"Techniparc",48.623114,2.31536,0,0,OIF:SA:26:18129,Europe/Paris,,OIF, +OIF:SP:46:14574,1,"Techniparc",48.623168,2.315292,0,0,OIF:SA:26:18129,Europe/Paris,,OIF, +OIF:SP:46:14575,1,"Beaulieu",48.65783,2.268806,0,0,OIF:SA:46:11382,Europe/Paris,,OIF, +OIF:SP:46:14576,1,"Monge",48.678135,2.359749,0,0,OIF:SA:46:14576,Europe/Paris,,OIF, +OIF:SP:46:14577,1,"Monge",48.677883,2.360482,0,0,OIF:SA:46:14576,Europe/Paris,,OIF, +OIF:SP:46:14578,1,"Moulin à Vent",48.490217,2.178383,0,0,OIF:SA:46:14578,Europe/Paris,,OIF, +OIF:SP:46:14579,1,"Ulli",48.488906,2.172896,0,0,OIF:SA:46:14579,Europe/Paris,,OIF, +OIF:SP:46:14580,1,"Vallée Barbot",48.487373,2.169371,0,0,OIF:SA:46:14580,Europe/Paris,,OIF, +OIF:SP:46:14581,1,"Frères Kennedy",48.486739,2.172849,0,0,OIF:SA:46:14581,Europe/Paris,,OIF, +OIF:SP:46:14583,1,"Roussay Kennedy",48.487733,2.176443,0,0,OIF:SA:46:14583,Europe/Paris,,OIF, +OIF:SP:46:14584,1,"Acacias",48.486309,2.180369,0,0,OIF:SA:46:14584,Europe/Paris,,OIF, +OIF:SP:46:14585,1,"Tassigny",48.485713,2.184942,0,0,OIF:SA:46:14585,Europe/Paris,,OIF, +OIF:SP:46:14586,1,"Musset",48.488228,2.183636,0,0,OIF:SA:46:14586,Europe/Paris,,OIF, +OIF:SP:46:14588,1,"Garderie",48.488424,2.188951,0,0,OIF:SA:46:14588,Europe/Paris,,OIF, +OIF:SP:46:14591,1,"Calypso",48.680763,2.379868,0,0,OIF:SA:46:11543,Europe/Paris,,OIF, +OIF:SP:46:14592,1,"Calypso",48.680439,2.379718,0,0,OIF:SA:46:11543,Europe/Paris,,OIF, +OIF:SP:46:14593,1,"Bretagne",48.671266,2.365324,0,0,OIF:SA:46:11493,Europe/Paris,,OIF, +OIF:SP:46:14594,1,"La Greffière",48.640938,2.364982,0,0,OIF:SA:10:1186,Europe/Paris,,OIF, +OIF:SP:46:14595,1,"Pierre Mendès France",48.65099,2.351774,0,0,OIF:SA:46:10380,Europe/Paris,,OIF, +OIF:SP:46:14596,1,"Marché",48.653623,2.35731,0,0,OIF:SA:10:1152,Europe/Paris,,OIF, +OIF:SP:46:14597,1,"Château",48.664203,2.353637,0,0,OIF:SA:46:14597,Europe/Paris,,OIF, +OIF:SP:46:14598,1,"Château",48.664338,2.353664,0,0,OIF:SA:46:14597,Europe/Paris,,OIF, +OIF:SP:46:14600,1,"Lucien Sampaix",48.655385,2.355303,0,0,OIF:SA:46:10349,Europe/Paris,,OIF, +OIF:SP:46:14601,1,"Beaulieu",48.681254,2.286517,0,0,OIF:SA:46:14601,Europe/Paris,,OIF, +OIF:SP:46:14602,1,"Mairie",48.67599,2.292875,0,0,OIF:SA:46:14602,Europe/Paris,,OIF, +OIF:SP:46:14603,1,"Gare de Saint-Michel sur Orge",48.63629,2.307325,0,0,OIF:SA:8754520,Europe/Paris,,OIF, +OIF:SP:46:14604,1,"Gare de Saint-Michel sur Orge",48.636155,2.306891,0,0,OIF:SA:8754520,Europe/Paris,,OIF, +OIF:SP:46:14605,1,"Jacques Brel",48.630368,2.314001,0,0,OIF:SA:46:11001,Europe/Paris,,OIF, +OIF:SP:46:14606,1,"Les Genêts",48.630737,2.316564,0,0,OIF:SA:46:11009,Europe/Paris,,OIF, +OIF:SP:46:14607,1,"Boëldieu",48.63063,2.319493,0,0,OIF:SA:46:10984,Europe/Paris,,OIF, +OIF:SP:46:14608,1,"J. Hébert",48.632132,2.289738,0,0,OIF:SA:46:14608,Europe/Paris,,OIF, +OIF:SP:46:14609,1,"Turaude",48.664719,2.260058,0,0,OIF:SA:46:14609,Europe/Paris,,OIF, +OIF:SP:46:14610,1,"Turaude",48.66489,2.260357,0,0,OIF:SA:46:14609,Europe/Paris,,OIF, +OIF:SP:46:14611,1,"Place de la Libération",48.658348,2.301641,0,0,OIF:SA:46:14611,Europe/Paris,,OIF, +OIF:SP:46:14612,1,"Gare RER",48.722595,2.256943,0,0,OIF:SA:8739357,Europe/Paris,,OIF, +OIF:SP:46:14617,1,"Montlhéry",48.685109,2.187916,0,0,OIF:SA:46:14617,Europe/Paris,,OIF, +OIF:SP:46:14618,1,"Montlhéry",48.684983,2.188215,0,0,OIF:SA:46:14617,Europe/Paris,,OIF, +OIF:SP:46:14622,1,"Carrières",48.658493,2.264952,0,0,OIF:SA:46:14622,Europe/Paris,,OIF, +OIF:SP:46:14623,1,"Cocatrix",48.500742,2.198101,0,0,OIF:SA:46:14623,Europe/Paris,,OIF, +OIF:SP:46:14624,1,"Les Acacias",48.509367,2.209443,0,0,OIF:SA:46:14624,Europe/Paris,,OIF, +OIF:SP:46:14625,1,"Centre",48.513727,2.218457,0,0,OIF:SA:46:14625,Europe/Paris,,OIF, +OIF:SP:46:14626,1,"Château",48.516162,2.226043,0,0,OIF:SA:46:14626,Europe/Paris,,OIF, +OIF:SP:46:14627,1,"Janville",48.508513,2.227236,0,0,OIF:SA:46:14627,Europe/Paris,,OIF, +OIF:SP:46:14629,1,"Chagregnon",48.498081,2.223849,0,0,OIF:SA:46:14629,Europe/Paris,,OIF, +OIF:SP:46:14630,1,"Cimetière",48.496111,2.222312,0,0,OIF:SA:46:14630,Europe/Paris,,OIF, +OIF:SP:46:14631,1,"Rue Fontaine",48.493286,2.219924,0,0,OIF:SA:46:14631,Europe/Paris,,OIF, +OIF:SP:46:14632,1,"Église",48.492286,2.217654,0,0,OIF:SA:46:14632,Europe/Paris,,OIF, +OIF:SP:46:14633,1,"Chanteloup",48.487263,2.211201,0,0,OIF:SA:46:14633,Europe/Paris,,OIF, +OIF:SP:46:14634,1,"Ruelle aux Anglais",48.48592,2.208621,0,0,OIF:SA:46:14634,Europe/Paris,,OIF, +OIF:SP:46:14635,1,"Bon Coin",48.484587,2.206231,0,0,OIF:SA:46:14635,Europe/Paris,,OIF, +OIF:SP:46:14636,1,"Moulin",48.503177,2.222458,0,0,OIF:SA:46:14636,Europe/Paris,,OIF, +OIF:SP:46:14644,1,"Beauséjour",48.655512,2.344137,0,0,OIF:SA:46:10325,Europe/Paris,,OIF, +OIF:SP:46:14645,1,"Danielle Casanova",48.657542,2.357502,0,0,OIF:SA:46:10331,Europe/Paris,,OIF, +OIF:SP:46:14646,1,"Docteur Roux",48.663043,2.35787,0,0,OIF:SA:46:10334,Europe/Paris,,OIF, +OIF:SP:46:14647,1,"Jean Pierre Timbaud",48.662225,2.360122,0,0,OIF:SA:10:264,Europe/Paris,,OIF, +OIF:SP:46:14648,1,"La Guérinière",48.663827,2.343663,0,0,OIF:SA:10:1324,Europe/Paris,,OIF, +OIF:SP:46:14649,1,"Les Bouleaux",48.648741,2.360401,0,0,OIF:SA:46:10359,Europe/Paris,,OIF, +OIF:SP:46:14650,1,"Les Tourelles",48.66663,2.354045,0,0,OIF:SA:46:10366,Europe/Paris,,OIF, +OIF:SP:46:14653,1,"Libération",48.64938,2.355586,0,0,OIF:SA:46:10367,Europe/Paris,,OIF, +OIF:SP:46:14654,1,"Libération",48.649317,2.35587,0,0,OIF:SA:46:10367,Europe/Paris,,OIF, +OIF:SP:46:14655,1,"Marché",48.653578,2.3575,0,0,OIF:SA:10:1152,Europe/Paris,,OIF, +OIF:SP:46:14656,1,"Marché",48.65133,2.359575,0,0,OIF:SA:10:1152,Europe/Paris,,OIF, +OIF:SP:46:14657,1,"Marché",48.652508,2.360118,0,0,OIF:SA:10:1152,Europe/Paris,,OIF, +OIF:SP:46:14659,1,"Paul Langevin",48.652949,2.353742,0,0,OIF:SA:46:10379,Europe/Paris,,OIF, +OIF:SP:46:14660,1,"Robespierre",48.653058,2.347827,0,0,OIF:SA:46:10385,Europe/Paris,,OIF, +OIF:SP:46:14661,1,"Square de la Paix",48.659035,2.346525,0,0,OIF:SA:46:10386,Europe/Paris,,OIF, +OIF:SP:46:14662,1,"Jean Morlet",48.668886,2.355077,0,0,OIF:SA:46:10345,Europe/Paris,,OIF, +OIF:SP:46:14663,1,"Lucien Midol",48.672868,2.353585,0,0,OIF:SA:46:11127,Europe/Paris,,OIF, +OIF:SP:46:14683,1,"Gare d'Égly",48.58322,2.221551,0,0,OIF:SA:8754547,Europe/Paris,,OIF, +OIF:SP:46:14686,1,"Bois de la Pucelle",48.42742,2.053053,0,0,OIF:SA:46:14686,Europe/Paris,,OIF, +OIF:SP:46:14690,1,"Rue Bizet",48.631772,2.322205,0,0,OIF:SA:46:10983,Europe/Paris,,OIF, +OIF:SP:46:14693,1,"Chemin Creux",48.439663,2.157728,0,0,OIF:SA:46:14693,Europe/Paris,,OIF, +OIF:SP:46:14697,1,"HLM Bas",48.434234,2.141643,0,0,OIF:SA:46:14697,Europe/Paris,,OIF, +OIF:SP:46:14698,1,"HLM Haut",48.435384,2.141112,0,0,OIF:SA:46:14698,Europe/Paris,,OIF, +OIF:SP:46:14699,1,"Cottages",48.438482,2.144099,0,0,OIF:SA:46:14699,Europe/Paris,,OIF, +OIF:SP:46:14700,1,"Fleurettes",48.435141,2.146017,0,0,OIF:SA:46:14700,Europe/Paris,,OIF, +OIF:SP:46:14704,1,"Vallée Collin",48.440901,2.150428,0,0,OIF:SA:46:14704,Europe/Paris,,OIF, +OIF:SP:46:14705,1,"Garderie",48.488361,2.188789,0,0,OIF:SA:46:14588,Europe/Paris,,OIF, +OIF:SP:46:14708,1,"La Martinière",48.477942,2.196782,0,0,OIF:SA:46:10306,Europe/Paris,,OIF, +OIF:SP:46:14710,1,"Porte d'Étampes",48.586936,2.246122,0,0,OIF:SA:24:8431,Europe/Paris,,OIF, +OIF:SP:46:14712,1,"Les Croubis",48.476116,2.195949,0,0,OIF:SA:46:14712,Europe/Paris,,OIF, +OIF:SP:46:14713,1,"Ferme Neuve",48.653174,2.385326,0,0,OIF:SA:10:1357,Europe/Paris,,OIF, +OIF:SP:46:14714,1,"Ferme Neuve",48.653075,2.385516,0,0,OIF:SA:10:1357,Europe/Paris,,OIF, +OIF:SP:46:14715,1,"Mairie",48.683776,2.236722,0,0,OIF:SA:46:14569,Europe/Paris,,OIF, +OIF:SP:46:14719,1,"Buisson / Rondeau",48.567762,2.165334,0,0,OIF:SA:46:14719,Europe/Paris,,OIF, +OIF:SP:46:14721,1,"Bassin Fosse",48.570525,2.167601,0,0,OIF:SA:46:14721,Europe/Paris,,OIF, +OIF:SP:46:14723,1,"Graviers",48.572228,2.170345,0,0,OIF:SA:46:14723,Europe/Paris,,OIF, +OIF:SP:46:14724,1,"Volumier",48.575849,2.175644,0,0,OIF:SA:46:14724,Europe/Paris,,OIF, +OIF:SP:46:14725,1,"Terres Soles",48.575032,2.176689,0,0,OIF:SA:46:14725,Europe/Paris,,OIF, +OIF:SP:46:14727,1,"Badaudière",48.572772,2.17419,0,0,OIF:SA:46:14727,Europe/Paris,,OIF, +OIF:SP:46:14728,1,"Route d'Arpajon",48.570721,2.179628,0,0,OIF:SA:46:14728,Europe/Paris,,OIF, +OIF:SP:46:14730,1,"Fosse Ronde",48.571723,2.176171,0,0,OIF:SA:46:14730,Europe/Paris,,OIF, +OIF:SP:46:14732,1,"Croix de Vernailles",48.446033,2.16699,0,0,OIF:SA:46:14732,Europe/Paris,,OIF, +OIF:SP:46:14733,1,"Emmaüs Haut",48.449928,2.168613,0,0,OIF:SA:46:14733,Europe/Paris,,OIF, +OIF:SP:46:14734,1,"Jean de la Fontaine",48.441606,2.164424,0,0,OIF:SA:46:14734,Europe/Paris,,OIF, +OIF:SP:46:14735,1,"Marie Curie",48.431043,2.158541,0,0,OIF:SA:46:14735,Europe/Paris,,OIF, +OIF:SP:46:14736,1,"École les Près",48.433201,2.165289,0,0,OIF:SA:46:14736,Europe/Paris,,OIF, +OIF:SP:46:14737,1,"ZI les Rochettes",48.450966,2.171718,0,0,OIF:SA:46:10321,Europe/Paris,,OIF, +OIF:SP:46:14738,1,"Rue Lucien Clause",48.606076,2.300402,0,0,OIF:SA:46:14738,Europe/Paris,,OIF, +OIF:SP:46:14739,1,"Les Pichots",48.639155,2.261208,0,0,OIF:SA:46:14739,Europe/Paris,,OIF, +OIF:SP:46:14740,1,"Les Pichots",48.639381,2.261995,0,0,OIF:SA:46:14739,Europe/Paris,,OIF, +OIF:SP:46:14741,1,"D'Alembert",48.621174,2.323631,0,0,OIF:SA:26:18247,Europe/Paris,,OIF, +OIF:SP:46:14742,1,"D'Alembert",48.62129,2.323428,0,0,OIF:SA:26:18247,Europe/Paris,,OIF, +OIF:SP:46:14745,1,"Léonard de Vinci",48.619673,2.331333,0,0,OIF:SA:26:18257,Europe/Paris,,OIF, +OIF:SP:46:14747,1,"ZA le Parc",48.617983,2.330099,0,0,OIF:SA:26:18255,Europe/Paris,,OIF, +OIF:SP:46:14750,1,"Verville",48.596225,2.173765,0,0,OIF:SA:46:14750,Europe/Paris,,OIF, +OIF:SP:46:14751,1,"Verville",48.596288,2.173737,0,0,OIF:SA:46:14750,Europe/Paris,,OIF, +OIF:SP:46:14754,1,"Route de Torfou",48.51626,2.207735,0,0,OIF:SA:46:14754,Europe/Paris,,OIF, +OIF:SP:46:14755,1,"Route de Torfou",48.516314,2.207708,0,0,OIF:SA:46:14754,Europe/Paris,,OIF, +OIF:SP:46:14756,1,"Belambra Club",48.521943,2.015135,0,0,OIF:SA:46:14756,Europe/Paris,,OIF, +OIF:SP:46:14757,1,"Les Croubis",48.476134,2.196098,0,0,OIF:SA:46:14712,Europe/Paris,,OIF, +OIF:SP:46:14758,1,"Résidence la Rocade",48.686704,2.293273,0,0,OIF:SA:46:14758,Europe/Paris,,OIF, +OIF:SP:46:14759,1,"La Ferme",48.620887,2.329556,0,0,OIF:SA:26:18251,Europe/Paris,,OIF, +OIF:SP:46:14760,1,"La Ferme",48.620958,2.329678,0,0,OIF:SA:26:18251,Europe/Paris,,OIF, +OIF:SP:46:14761,1,"Léonard de Vinci",48.619763,2.331468,0,0,OIF:SA:26:18257,Europe/Paris,,OIF, +OIF:SP:46:14766,1,"Résidence la Rocade",48.686614,2.293449,0,0,OIF:SA:46:14758,Europe/Paris,,OIF, +OIF:SP:46:14767,1,"Cimetière",48.580933,2.218169,0,0,OIF:SA:46:14767,Europe/Paris,,OIF, +OIF:SP:46:14768,1,"Le Parc",48.658348,2.30449,0,0,OIF:SA:46:14768,Europe/Paris,,OIF, +OIF:SP:46:14770,1,"Télégraphe (le Rocher)",48.671488,2.276552,0,0,OIF:SA:46:14770,Europe/Paris,,OIF, +OIF:SP:46:14771,1,"Les 2 Puits",48.670882,2.270309,0,0,OIF:SA:46:14771,Europe/Paris,,OIF, +OIF:SP:46:14773,1,"S. Carnot",48.671865,2.260686,0,0,OIF:SA:46:14773,Europe/Paris,,OIF, +OIF:SP:46:14775,1,"La Digue",48.673589,2.256476,0,0,OIF:SA:46:14775,Europe/Paris,,OIF, +OIF:SP:46:14777,1,"P. Doumer",48.674782,2.253597,0,0,OIF:SA:46:14777,Europe/Paris,,OIF, +OIF:SP:46:14779,1,"F. Arnoult",48.673483,2.260656,0,0,OIF:SA:46:14779,Europe/Paris,,OIF, +OIF:SP:46:14781,1,"Belvédère",48.672491,2.269574,0,0,OIF:SA:46:14781,Europe/Paris,,OIF, +OIF:SP:46:14783,1,"La Creusière",48.673086,2.272885,0,0,OIF:SA:46:14783,Europe/Paris,,OIF, +OIF:SP:46:14785,1,"Lunézy",48.674032,2.277444,0,0,OIF:SA:46:14785,Europe/Paris,,OIF, +OIF:SP:46:14786,1,"Lunézy",48.673997,2.277675,0,0,OIF:SA:46:14785,Europe/Paris,,OIF, +OIF:SP:46:14787,1,"G. Sand",48.601944,2.284778,0,0,OIF:SA:46:14787,Europe/Paris,,OIF, +OIF:SP:46:14788,1,"G. Sand",48.6018,2.285022,0,0,OIF:SA:46:14787,Europe/Paris,,OIF, +OIF:SP:46:14789,1,"Collège B. Pascal",48.660249,2.328262,0,0,OIF:SA:46:14789,Europe/Paris,,OIF, +OIF:SP:46:14791,1,"Coquelicots",48.631107,2.328565,0,0,OIF:SA:10:1176,Europe/Paris,,OIF, +OIF:SP:46:14792,1,"Pasteur",48.685751,2.380537,0,0,OIF:SA:46:14792,Europe/Paris,,OIF, +OIF:SP:46:14793,1,"Pasteur",48.68576,2.380618,0,0,OIF:SA:46:14792,Europe/Paris,,OIF, +OIF:SP:46:14794,1,"Butte aux Grès",48.600397,2.24004,0,0,OIF:SA:46:14794,Europe/Paris,,OIF, +OIF:SP:46:14796,1,"Les Violettes",48.604537,2.2356,0,0,OIF:SA:46:14796,Europe/Paris,,OIF, +OIF:SP:46:14797,1,"Grande Rue",48.603979,2.234138,0,0,OIF:SA:46:14797,Europe/Paris,,OIF, +OIF:SP:46:14798,1,"Marie Curie",48.605733,2.246821,0,0,OIF:SA:46:14798,Europe/Paris,,OIF, +OIF:SP:46:14799,1,"Marie Curie",48.605688,2.246672,0,0,OIF:SA:46:14798,Europe/Paris,,OIF, +OIF:SP:46:14800,1,"Les Folies",48.60851,2.246234,0,0,OIF:SA:46:14800,Europe/Paris,,OIF, +OIF:SP:46:14801,1,"Belles Vues",48.599113,2.242428,0,0,OIF:SA:46:14801,Europe/Paris,,OIF, +OIF:SP:46:14802,1,"Belles Vues",48.599374,2.242482,0,0,OIF:SA:46:14801,Europe/Paris,,OIF, +OIF:SP:46:14803,1,"Les Marsandes",48.567136,2.229524,0,0,OIF:SA:46:14803,Europe/Paris,,OIF, +OIF:SP:46:14804,1,"La Voie Creuse",48.574955,2.237026,0,0,OIF:SA:46:14804,Europe/Paris,,OIF, +OIF:SP:46:14805,1,"La Voie Creuse",48.575026,2.236863,0,0,OIF:SA:46:14804,Europe/Paris,,OIF, +OIF:SP:46:14806,1,"Longue Mare",48.579488,2.240702,0,0,OIF:SA:46:14806,Europe/Paris,,OIF, +OIF:SP:46:14807,1,"Longue Mare",48.579524,2.240513,0,0,OIF:SA:46:14806,Europe/Paris,,OIF, +OIF:SP:46:14808,1,"Hôpital",48.583149,2.243514,0,0,OIF:SA:46:14808,Europe/Paris,,OIF, +OIF:SP:46:14809,1,"Hôpital",48.583248,2.243378,0,0,OIF:SA:46:14808,Europe/Paris,,OIF, +OIF:SP:46:14810,1,"Porte d'Étampes",48.586486,2.246042,0,0,OIF:SA:24:8431,Europe/Paris,,OIF, +OIF:SP:46:14811,1,"Gare RER (Arrêt de Montée)",48.586212,2.240893,0,0,OIF:SA:8754546,Europe/Paris,,OIF, +OIF:SP:46:14812,1,"Le Moulin",48.66044,2.376635,0,0,OIF:SA:46:14812,Europe/Paris,,OIF, +OIF:SP:46:14813,1,"Le Moulin",48.660602,2.376472,0,0,OIF:SA:46:14812,Europe/Paris,,OIF, +OIF:SP:46:14814,1,"Résidence",48.660343,2.301803,0,0,OIF:SA:46:11485,Europe/Paris,,OIF, +OIF:SP:46:14815,1,"Esclangon",48.674984,2.377718,0,0,OIF:SA:46:14815,Europe/Paris,,OIF, +OIF:SP:46:14816,1,"Maison d'Arrêt des Femmes",48.640088,2.380187,0,0,OIF:SA:10:1189,Europe/Paris,,OIF, +OIF:SP:46:14817,1,"Belle Vue",48.504083,2.20303,0,0,OIF:SA:46:14817,Europe/Paris,,OIF, +OIF:SP:46:14818,1,"Président Kennedy",48.662753,2.369241,0,0,OIF:SA:46:14818,Europe/Paris,,OIF, +OIF:SP:46:14819,1,"Président Kennedy",48.662915,2.369391,0,0,OIF:SA:46:14818,Europe/Paris,,OIF, +OIF:SP:46:14820,1,"Amédée Gordini",48.661242,2.372741,0,0,OIF:SA:46:14820,Europe/Paris,,OIF, +OIF:SP:46:14821,1,"Amédée Gordini",48.661412,2.372796,0,0,OIF:SA:46:14820,Europe/Paris,,OIF, +OIF:SP:46:14822,1,"P. Neruda",48.653342,2.39215,0,0,OIF:SA:10:409,Europe/Paris,,OIF, +OIF:SP:46:14823,1,"P. Neruda",48.653459,2.392259,0,0,OIF:SA:10:409,Europe/Paris,,OIF, +OIF:SP:46:14824,1,"Gare R.E.R.",48.652846,2.395243,0,0,OIF:SA:8768137,Europe/Paris,,OIF, +OIF:SP:46:14825,1,"Gare R.E.R.",48.65326,2.395026,0,0,OIF:SA:8768137,Europe/Paris,,OIF, +OIF:SP:46:14826,1,"Le Haricot",48.650904,2.39558,0,0,OIF:SA:10:233,Europe/Paris,,OIF, +OIF:SP:46:14827,1,"Le Haricot",48.650976,2.396597,0,0,OIF:SA:10:233,Europe/Paris,,OIF, +OIF:SP:46:14828,1,"Tuileries",48.650474,2.39425,0,0,OIF:SA:10:224,Europe/Paris,,OIF, +OIF:SP:46:14835,1,"Coquelicots",48.631368,2.328253,0,0,OIF:SA:10:1176,Europe/Paris,,OIF, +OIF:SP:46:14862,1,"Grange Cavée",48.474125,1.998853,0,0,OIF:SA:46:14862,Europe/Paris,,OIF, +OIF:SP:46:14863,1,"Grange Cavée",48.474099,1.999016,0,0,OIF:SA:46:14862,Europe/Paris,,OIF, +OIF:SP:46:14866,1,"Gare de Breuillet Village",48.565012,2.172197,0,0,OIF:SA:8754549,Europe/Paris,,OIF, +OIF:SP:46:14869,1,"Gaillard",48.657536,2.273814,0,0,OIF:SA:46:14869,Europe/Paris,,OIF, +OIF:SP:46:14870,1,"Rochefontaine",48.541606,2.174071,0,0,OIF:SA:46:14870,Europe/Paris,,OIF, +OIF:SP:46:14871,1,"Arpenty",48.586258,2.16274,0,0,OIF:SA:46:14871,Europe/Paris,,OIF, +OIF:SP:46:14872,1,"Arpenty",48.586258,2.16274,0,0,OIF:SA:46:14871,Europe/Paris,,OIF, +OIF:SP:46:14873,1,"Les Froulans",48.56164,2.246708,0,0,OIF:SA:46:14873,Europe/Paris,,OIF, +OIF:SP:46:14874,1,"Les Froulans",48.561739,2.24664,0,0,OIF:SA:46:14873,Europe/Paris,,OIF, +OIF:SP:46:14875,1,"Traversière",48.466754,2.192946,0,0,OIF:SA:46:14875,Europe/Paris,,OIF, +OIF:SP:46:14876,1,"Les Berges du Rouillon",48.668427,2.284901,0,0,OIF:SA:46:14876,Europe/Paris,,OIF, +OIF:SP:46:14877,1,"Les Berges du Rouillon",48.668158,2.285716,0,0,OIF:SA:46:14876,Europe/Paris,,OIF, +OIF:SP:46:14879,1,"Maison Rouge",48.653159,2.296299,0,0,OIF:SA:46:14879,Europe/Paris,,OIF, +OIF:SP:46:14882,1,"Camping",48.65513,2.303706,0,0,OIF:SA:46:14882,Europe/Paris,,OIF, +OIF:SP:46:14883,1,"Les Rios",48.655659,2.29992,0,0,OIF:SA:46:14883,Europe/Paris,,OIF, +OIF:SP:46:14885,1,"Mollières",48.659549,2.292495,0,0,OIF:SA:46:14885,Europe/Paris,,OIF, +OIF:SP:46:14886,1,"Brinvilliers",48.662419,2.299291,0,0,OIF:SA:46:14886,Europe/Paris,,OIF, +OIF:SP:46:14890,1,"Etoile Bleue",48.654664,2.364311,0,0,OIF:SA:46:10336,Europe/Paris,,OIF, +OIF:SP:46:14891,1,"Les Clos",48.663414,2.273101,0,0,OIF:SA:46:14891,Europe/Paris,,OIF, +OIF:SP:46:14892,1,"Gaizon",48.660543,2.266116,0,0,OIF:SA:46:14892,Europe/Paris,,OIF, +OIF:SP:46:14893,1,"Les Joncs Marins",48.665026,2.278568,0,0,OIF:SA:46:11399,Europe/Paris,,OIF, +OIF:SP:46:14894,1,"Bout du Monde",48.578953,2.191945,0,0,OIF:SA:46:14894,Europe/Paris,,OIF, +OIF:SP:46:14895,1,"Bout du Monde",48.578945,2.192325,0,0,OIF:SA:46:14894,Europe/Paris,,OIF, +OIF:SP:46:14896,1,"Montauban",48.578684,2.185457,0,0,OIF:SA:46:14896,Europe/Paris,,OIF, +OIF:SP:46:14897,1,"Montauban",48.578613,2.186121,0,0,OIF:SA:46:14896,Europe/Paris,,OIF, +OIF:SP:46:14898,1,"Les Sources",48.577692,2.175895,0,0,OIF:SA:46:14898,Europe/Paris,,OIF, +OIF:SP:46:14899,1,"Les Sources",48.577702,2.17637,0,0,OIF:SA:46:14898,Europe/Paris,,OIF, +OIF:SP:46:14900,1,"Porte de l'Essonne",48.71272,2.371323,0,0,OIF:SA:59844,Europe/Paris,,OIF, +OIF:SP:46:14901,1,"Gare de Juvisy",48.688582,2.382494,0,0,OIF:SA:8754524,Europe/Paris,,OIF, +OIF:SP:46:14902,1,"Gare de Juvisy",48.688456,2.382304,0,0,OIF:SA:8754524,Europe/Paris,,OIF, +OIF:SP:46:14903,1,"Les Solstices",48.656316,2.373009,0,0,OIF:SA:46:14903,Europe/Paris,,OIF, +OIF:SP:46:14906,1,"Mairie",48.676492,2.289142,0,0,OIF:SA:46:14602,Europe/Paris,,OIF, +OIF:SP:46:14907,1,"Gare de Saint-Michel sur Orge",48.635724,2.305861,0,0,OIF:SA:8754520,Europe/Paris,,OIF, +OIF:SP:46:14908,1,"Château d'Eau",48.626572,2.263342,0,0,OIF:SA:46:14908,Europe/Paris,,OIF, +OIF:SP:46:14909,1,"Château d'Eau",48.626581,2.263247,0,0,OIF:SA:46:14908,Europe/Paris,,OIF, +OIF:SP:46:14910,1,"Porte de l'Essonne",48.71272,2.371323,0,0,OIF:SA:59844,Europe/Paris,,OIF, +OIF:SP:46:14911,1,"Gare RER",48.722478,2.256848,0,0,OIF:SA:8739357,Europe/Paris,,OIF, +OIF:SP:46:14912,1,"Gare RER",48.722631,2.256984,0,0,OIF:SA:8739357,Europe/Paris,,OIF, +OIF:SP:46:14913,1,"Gare de Brétigny",48.607443,2.301567,0,0,OIF:SA:8754519,Europe/Paris,,OIF, +OIF:SP:46:14914,1,"Lycée Nelson Mandela",48.433968,2.137969,0,0,OIF:SA:46:14914,Europe/Paris,,OIF, +OIF:SP:46:14916,1,"Mort Rû",48.652752,2.289815,0,0,OIF:SA:46:14916,Europe/Paris,,OIF, +OIF:SP:46:14917,1,"Verdun",48.654568,2.290518,0,0,OIF:SA:46:14917,Europe/Paris,,OIF, +OIF:SP:46:14918,1,"Mascadées",48.651234,2.291295,0,0,OIF:SA:46:14918,Europe/Paris,,OIF, +OIF:SP:46:14919,1,"La Sablière",48.455658,2.146929,0,0,OIF:SA:46:14919,Europe/Paris,,OIF, +OIF:SP:46:14920,1,"Parking",48.456262,2.142561,0,0,OIF:SA:46:14920,Europe/Paris,,OIF, +OIF:SP:46:14921,1,"Villarceaux",48.6672,2.236048,0,0,OIF:SA:46:10404,Europe/Paris,,OIF, +OIF:SP:46:14922,1,"Maison de Retraite",48.493707,2.179955,0,0,OIF:SA:46:14922,Europe/Paris,,OIF, +OIF:SP:46:14923,1,"Cerfeuille",48.593929,2.234469,0,0,OIF:SA:46:14497,Europe/Paris,,OIF, +OIF:SP:46:14924,1,"Porte d'Étampes",48.58654,2.245703,0,0,OIF:SA:24:8431,Europe/Paris,,OIF, +OIF:SP:46:14925,1,"Porte d'Étampes",48.587313,2.246189,0,0,OIF:SA:24:8431,Europe/Paris,,OIF, +OIF:SP:46:14926,1,"Porte d'Étampes",48.586792,2.245621,0,0,OIF:SA:24:8431,Europe/Paris,,OIF, +OIF:SP:46:14928,1,"Rond-Point la Roche",48.600923,2.234618,0,0,OIF:SA:46:14505,Europe/Paris,,OIF, +OIF:SP:46:14929,1,"François Mitterrand",48.658582,2.367366,0,0,OIF:SA:46:11547,Europe/Paris,,OIF, +OIF:SP:46:14930,1,"Gare RER",48.725366,2.261341,0,0,OIF:SA:8739357,Europe/Paris,,OIF, +OIF:SP:46:14931,1,"Les Froulans",48.561739,2.24664,0,0,OIF:SA:46:14873,Europe/Paris,,OIF, +OIF:SP:46:14933,1,"Jean Raynal",48.664311,2.352701,0,0,OIF:SA:46:14932,Europe/Paris,,OIF, +OIF:SP:46:14934,1,"J. Ferrat",48.6331,2.284584,0,0,OIF:SA:46:14934,Europe/Paris,,OIF, +OIF:SP:46:14935,1,"Hautes Fleurances",48.631104,2.283894,0,0,OIF:SA:46:14935,Europe/Paris,,OIF, +OIF:SP:46:14936,1,"Grande Fontaine",48.689052,2.260661,0,0,OIF:SA:46:11101,Europe/Paris,,OIF, +OIF:SP:46:14938,1,"Villiers le Plan",48.692718,2.246562,0,0,OIF:SA:46:14938,Europe/Paris,,OIF, +OIF:SP:46:14939,1,"Fontaine de Fer",48.689685,2.25345,0,0,OIF:SA:46:14939,Europe/Paris,,OIF, +OIF:SP:46:14940,1,"Fontaine de Fer",48.691304,2.255077,0,0,OIF:SA:46:14939,Europe/Paris,,OIF, +OIF:SP:46:14941,1,"Les Arcades",48.690001,2.288708,0,0,OIF:SA:46:14941,Europe/Paris,,OIF, +OIF:SP:46:14942,1,"Les Arcades",48.689947,2.288885,0,0,OIF:SA:46:14941,Europe/Paris,,OIF, +OIF:SP:46:14943,1,"Foyer Avril",48.691587,2.297926,0,0,OIF:SA:46:14943,Europe/Paris,,OIF, +OIF:SP:46:14944,1,"Foyer Avril",48.691802,2.297912,0,0,OIF:SA:46:14943,Europe/Paris,,OIF, +OIF:SP:46:14945,1,"Clinique de l'Yvette",48.689547,2.300656,0,0,OIF:SA:46:14945,Europe/Paris,,OIF, +OIF:SP:46:14946,1,"Clinique de l'Yvette",48.688613,2.302625,0,0,OIF:SA:46:14945,Europe/Paris,,OIF, +OIF:SP:46:14947,1,"Docteur Cathelin",48.687772,2.28871,0,0,OIF:SA:46:14947,Europe/Paris,,OIF, +OIF:SP:46:14948,1,"Balizy",48.683051,2.31019,0,0,OIF:SA:46:14948,Europe/Paris,,OIF, +OIF:SP:46:14949,1,"Balizy",48.682961,2.310625,0,0,OIF:SA:46:14948,Europe/Paris,,OIF, +OIF:SP:46:14950,1,"Balizy-Gravigny RER",48.685102,2.317438,0,0,OIF:SA:8739364,Europe/Paris,,OIF, +OIF:SP:46:14951,1,"Pré Haut",48.690506,2.257753,0,0,OIF:SA:46:14951,Europe/Paris,,OIF, +OIF:SP:46:14952,1,"Z.I Ciroliers",48.623544,2.363346,0,0,OIF:SA:10:1264,Europe/Paris,,OIF, +OIF:SP:46:14954,1,"Clément Ader",48.621982,2.354505,0,0,OIF:SA:10:1007,Europe/Paris,,OIF, +OIF:SP:46:14955,1,"Z.I Ciroliers",48.62358,2.3634,0,0,OIF:SA:10:1264,Europe/Paris,,OIF, +OIF:SP:46:14956,1,"Clément Ader",48.622108,2.354925,0,0,OIF:SA:10:1007,Europe/Paris,,OIF, +OIF:SP:46:14957,1,"Croix Blanche",48.623763,2.341922,0,0,OIF:SA:46:10896,Europe/Paris,,OIF, +OIF:SP:46:14958,1,"Petits Champs",48.621632,2.346451,0,0,OIF:SA:10:1263,Europe/Paris,,OIF, +OIF:SP:46:14959,1,"Petits Champs",48.621543,2.346451,0,0,OIF:SA:10:1263,Europe/Paris,,OIF, +OIF:SP:46:14962,1,"Gare RER",48.551345,2.125376,0,0,OIF:SA:8754550,Europe/Paris,,OIF, +OIF:SP:46:14963,1,"Place",48.541243,2.178567,0,0,OIF:SA:46:11069,Europe/Paris,,OIF, +OIF:SP:46:14964,1,"L'Orme à Moineaux",48.66876,2.196418,0,0,OIF:SA:46:14964,Europe/Paris,,OIF, +OIF:SP:46:14965,1,"L'Orme à Moineaux",48.66858,2.196242,0,0,OIF:SA:46:14964,Europe/Paris,,OIF, +OIF:SP:46:14966,1,"Le Moulin",48.69413,2.275412,0,0,OIF:SA:46:14966,Europe/Paris,,OIF, +OIF:SP:46:14967,1,"Le Moulin",48.694238,2.275425,0,0,OIF:SA:46:14966,Europe/Paris,,OIF, +OIF:SP:46:14968,1,"Docteur Fichez",48.642044,2.363043,0,0,OIF:SA:46:14968,Europe/Paris,,OIF, +OIF:SP:46:14969,1,"Docteur Fichez",48.643446,2.364292,0,0,OIF:SA:46:14968,Europe/Paris,,OIF, +OIF:SP:46:14970,1,"Les Ruelles",48.583502,2.235574,0,0,OIF:SA:46:14970,Europe/Paris,,OIF, +OIF:SP:46:14971,1,"Les Ruelles",48.583619,2.235506,0,0,OIF:SA:46:14970,Europe/Paris,,OIF, +OIF:SP:46:14974,1,"Lycée René Cassin",48.579825,2.245362,0,0,OIF:SA:24:8427,Europe/Paris,,OIF, +OIF:SP:46:14975,1,"Lycée René Cassin",48.579843,2.24543,0,0,OIF:SA:24:8427,Europe/Paris,,OIF, +OIF:SP:46:14976,1,"Lycée René Cassin",48.579861,2.245484,0,0,OIF:SA:24:8427,Europe/Paris,,OIF, +OIF:SP:46:14977,1,"Esat",48.499295,2.223914,0,0,OIF:SA:46:14977,Europe/Paris,,OIF, +OIF:SP:46:14978,1,"Morionville",48.594804,2.193988,0,0,OIF:SA:46:14978,Europe/Paris,,OIF, +OIF:SP:46:14979,1,"Coquerive Haut",48.433027,2.175489,0,0,OIF:SA:46:14979,Europe/Paris,,OIF, +OIF:SP:46:14980,1,"Coquerive Haut",48.432981,2.17503,0,0,OIF:SA:46:14979,Europe/Paris,,OIF, +OIF:SP:46:14981,1,"Gare de Savigny sur Orge",48.674388,2.350831,0,0,OIF:SA:8754523,Europe/Paris,,OIF, +OIF:SP:46:14982,1,"Gare de Savigny sur Orge",48.67455,2.350953,0,0,OIF:SA:8754523,Europe/Paris,,OIF, +OIF:SP:46:14983,1,"Gare de Savigny sur Orge",48.674783,2.351143,0,0,OIF:SA:8754523,Europe/Paris,,OIF, +OIF:SP:46:14985,1,"Sycomores",48.647716,2.364498,0,0,OIF:SA:46:14985,Europe/Paris,,OIF, +OIF:SP:46:14986,1,"Sycomores",48.647554,2.364769,0,0,OIF:SA:46:14985,Europe/Paris,,OIF, +OIF:SP:46:14987,1,"Résidence Fontanges",48.686659,2.291467,0,0,OIF:SA:46:14987,Europe/Paris,,OIF, +OIF:SP:46:14988,1,"Résidence Fontanges",48.687,2.290598,0,0,OIF:SA:46:14987,Europe/Paris,,OIF, +OIF:SP:46:14989,1,"Le Lavoir",48.69175,2.249388,0,0,OIF:SA:46:14989,Europe/Paris,,OIF, +OIF:SP:46:14990,1,"Carrère d'Encausse",48.602659,2.295824,0,0,OIF:SA:46:14990,Europe/Paris,,OIF, +OIF:SP:46:14991,1,"Revol",48.601914,2.29882,0,0,OIF:SA:26:18047,Europe/Paris,,OIF, +OIF:SP:46:14992,1,"République",48.696079,2.184192,0,0,OIF:SA:46:14568,Europe/Paris,,OIF, +OIF:SP:46:14993,1,"Rue du Parc",48.561152,2.232109,0,0,OIF:SA:46:14993,Europe/Paris,,OIF, +OIF:SP:46:14994,1,"Rue du Parc",48.561195,2.240763,0,0,OIF:SA:46:14993,Europe/Paris,,OIF, +OIF:SP:46:14995,1,"Sycomores",48.64777,2.364647,0,0,OIF:SA:46:14985,Europe/Paris,,OIF, +OIF:SP:46:412,1,"Porte d'Orléans",48.821283,2.325731,0,0,OIF:SA:59624,Europe/Paris,,OIF, +OIF:SP:46:413,1,"Porte d'Orléans",48.82087,2.325745,0,0,OIF:SA:59624,Europe/Paris,,OIF, +OIF:SP:46:8397,1,"Brigeolet",48.305975,1.996322,0,0,OIF:SA:46:8397,Europe/Paris,,OIF, +OIF:SP:46:8398,1,"Brigeolet",48.305904,1.996606,0,0,OIF:SA:46:8397,Europe/Paris,,OIF, +OIF:SP:46:8401,1,"Crédit Agricole",48.315688,1.997109,0,0,OIF:SA:46:8401,Europe/Paris,,OIF, +OIF:SP:46:8402,1,"Crédit Agricole",48.315841,1.99731,0,0,OIF:SA:46:8401,Europe/Paris,,OIF, +OIF:SP:46:8405,1,"Salle des Fêtes",48.311337,2.000398,0,0,OIF:SA:46:8405,Europe/Paris,,OIF, +OIF:SP:46:8406,1,"Salle des Fêtes",48.311507,2.000236,0,0,OIF:SA:46:8405,Europe/Paris,,OIF, +OIF:SP:46:8409,1,"Carrefour Mouton",48.587515,2.250742,0,0,OIF:SA:46:8409,Europe/Paris,,OIF, +OIF:SP:46:8410,1,"Carrefour Mouton",48.587317,2.250769,0,0,OIF:SA:46:8409,Europe/Paris,,OIF, +OIF:SP:46:8416,1,"Gare RER (Arrêt de Descente)",48.586365,2.240893,0,0,OIF:SA:8754546,Europe/Paris,,OIF, +OIF:SP:46:8417,1,"Gare Route d'Égly",48.585764,2.242425,0,0,OIF:SA:8754546,Europe/Paris,,OIF, +OIF:SP:46:8418,1,"Gare Route d'Égly",48.58562,2.242507,0,0,OIF:SA:8754546,Europe/Paris,,OIF, +OIF:SP:46:8421,1,"La Montagne",48.596752,2.245875,0,0,OIF:SA:46:8421,Europe/Paris,,OIF, +OIF:SP:46:8422,1,"La Montagne",48.596788,2.246173,0,0,OIF:SA:46:8421,Europe/Paris,,OIF, +OIF:SP:46:8423,1,"La Poste",48.589847,2.244884,0,0,OIF:SA:46:8423,Europe/Paris,,OIF, +OIF:SP:46:8424,1,"La Poste",48.591052,2.244692,0,0,OIF:SA:46:8423,Europe/Paris,,OIF, +OIF:SP:46:8425,1,"La Montagne (LEP Belmondo)",48.596788,2.246173,0,0,OIF:SA:46:8425,Europe/Paris,,OIF, +OIF:SP:46:8426,1,"La Montagne (LEP Belmondo)",48.596788,2.246173,0,0,OIF:SA:46:8425,Europe/Paris,,OIF, +OIF:SP:46:8427,1,"Lycée René Cassin",48.580346,2.245605,0,0,OIF:SA:24:8427,Europe/Paris,,OIF, +OIF:SP:46:8428,1,"Lycée René Cassin",48.580319,2.24551,0,0,OIF:SA:24:8427,Europe/Paris,,OIF, +OIF:SP:46:8431,1,"Porte d'Étampes",48.586935,2.245431,0,0,OIF:SA:24:8431,Europe/Paris,,OIF, +OIF:SP:46:8433,1,"Porte de Paris",48.592274,2.244839,0,0,OIF:SA:46:8433,Europe/Paris,,OIF, +OIF:SP:46:8434,1,"Porte de Paris",48.593139,2.246558,0,0,OIF:SA:46:8433,Europe/Paris,,OIF, +OIF:SP:46:8441,1,"Belle Etoile",48.706563,2.371781,0,0,OIF:SA:46:8441,Europe/Paris,,OIF, +OIF:SP:46:8442,1,"Belle Etoile",48.706338,2.371428,0,0,OIF:SA:46:8441,Europe/Paris,,OIF, +OIF:SP:46:8443,1,"Église",48.450777,1.957271,0,0,OIF:SA:46:8443,Europe/Paris,,OIF, +OIF:SP:46:8444,1,"Église",48.449696,1.956495,0,0,OIF:SA:46:8443,Europe/Paris,,OIF, +OIF:SP:46:8458,1,"Rond-Point CD148/CD17",48.48384,2.205151,0,0,OIF:SA:46:8458,Europe/Paris,,OIF, +OIF:SP:46:8459,1,"Rond-Point CD148/CD17",48.483885,2.205029,0,0,OIF:SA:46:8458,Europe/Paris,,OIF, +OIF:SP:46:8469,1,"Beaulieu",48.682764,2.284643,0,0,OIF:SA:46:14601,Europe/Paris,,OIF, +OIF:SP:46:8470,1,"Beaulieu",48.682251,2.284765,0,0,OIF:SA:46:14601,Europe/Paris,,OIF, +OIF:SP:46:8475,1,"Mairie",48.676142,2.291911,0,0,OIF:SA:46:14602,Europe/Paris,,OIF, +OIF:SP:46:8476,1,"Mairie",48.676941,2.289752,0,0,OIF:SA:46:14602,Europe/Paris,,OIF, +OIF:SP:46:8477,1,"Petit Ballainvilliers",48.673324,2.280947,0,0,OIF:SA:46:8477,Europe/Paris,,OIF, +OIF:SP:46:8478,1,"Petit Ballainvilliers",48.673513,2.281381,0,0,OIF:SA:46:8477,Europe/Paris,,OIF, +OIF:SP:46:8479,1,"Rue du Parc",48.674212,2.297884,0,0,OIF:SA:46:8479,Europe/Paris,,OIF, +OIF:SP:46:8480,1,"Rue du Parc",48.674185,2.297586,0,0,OIF:SA:46:8479,Europe/Paris,,OIF, +OIF:SP:46:8537,1,"Le Rotoir",48.495249,2.084187,0,0,OIF:SA:46:8537,Europe/Paris,,OIF, +OIF:SP:46:8538,1,"Place de l'Église",48.478654,2.08877,0,0,OIF:SA:46:8538,Europe/Paris,,OIF, +OIF:SP:46:8539,1,"Place de l'Église",48.478637,2.088783,0,0,OIF:SA:46:8538,Europe/Paris,,OIF, +OIF:SP:46:8540,1,"Venant",48.505668,2.092578,0,0,OIF:SA:46:8540,Europe/Paris,,OIF, +OIF:SP:46:8541,1,"Venant",48.505542,2.09262,0,0,OIF:SA:46:8540,Europe/Paris,,OIF, +OIF:SP:46:8542,1,"Bas de Torfou",48.547985,2.216389,0,0,OIF:SA:46:8542,Europe/Paris,,OIF, +OIF:SP:46:8544,1,"Facteur Cheval",48.562401,2.21339,0,0,OIF:SA:46:8544,Europe/Paris,,OIF, +OIF:SP:46:8548,1,"Mairie",48.558747,2.208943,0,0,OIF:SA:46:8548,Europe/Paris,,OIF, +OIF:SP:46:8552,1,"Salvador Allende",48.548744,2.211418,0,0,OIF:SA:46:8552,Europe/Paris,,OIF, +OIF:SP:46:8554,1,"Saint-Lubin",48.553257,2.211638,0,0,OIF:SA:46:8554,Europe/Paris,,OIF, +OIF:SP:46:8556,1,"Village",48.556394,2.211644,0,0,OIF:SA:46:8556,Europe/Paris,,OIF, +OIF:SP:46:8604,1,"Tilleul",48.453106,2.057049,0,0,OIF:SA:46:8604,Europe/Paris,,OIF, +OIF:SP:46:8605,1,"Tilleul",48.453034,2.057212,0,0,OIF:SA:46:8604,Europe/Paris,,OIF, +OIF:SP:46:8632,1,"Bois Badeau",48.604298,2.282566,0,0,OIF:SA:46:8632,Europe/Paris,,OIF, +OIF:SP:46:8633,1,"Bois Badeau",48.604056,2.282865,0,0,OIF:SA:46:8632,Europe/Paris,,OIF, +OIF:SP:46:8634,1,"Côte Valorge",48.609502,2.281097,0,0,OIF:SA:46:8634,Europe/Paris,,OIF, +OIF:SP:46:8635,1,"Côte Valorge",48.60935,2.281111,0,0,OIF:SA:46:8634,Europe/Paris,,OIF, +OIF:SP:46:8636,1,"Gare de Brétigny",48.607308,2.301459,0,0,OIF:SA:8754519,Europe/Paris,,OIF, +OIF:SP:46:8637,1,"Gare de Brétigny",48.606508,2.300971,0,0,OIF:SA:8754519,Europe/Paris,,OIF, +OIF:SP:46:8648,1,"Gare de Breuillet Bruyères",48.57694,2.191924,0,0,OIF:SA:8754548,Europe/Paris,,OIF, +OIF:SP:46:8649,1,"Gare de Breuillet Bruyères",48.57675,2.191505,0,0,OIF:SA:8754548,Europe/Paris,,OIF, +OIF:SP:46:8652,1,"Gare de Breuillet Village",48.564858,2.171804,0,0,OIF:SA:8754549,Europe/Paris,,OIF, +OIF:SP:46:8658,1,"La Boissière",48.576285,2.154293,0,0,OIF:SA:46:8658,Europe/Paris,,OIF, +OIF:SP:46:8659,1,"La Boissière",48.576294,2.154049,0,0,OIF:SA:46:8658,Europe/Paris,,OIF, +OIF:SP:46:8660,1,"République",48.575934,2.17223,0,0,OIF:SA:46:8660,Europe/Paris,,OIF, +OIF:SP:46:8661,1,"République",48.576295,2.172892,0,0,OIF:SA:46:8660,Europe/Paris,,OIF, +OIF:SP:46:8663,1,"Savalerie",48.575145,2.167653,0,0,OIF:SA:46:8663,Europe/Paris,,OIF, +OIF:SP:46:8664,1,"Savalerie",48.575056,2.167694,0,0,OIF:SA:46:8663,Europe/Paris,,OIF, +OIF:SP:46:8669,1,"La Pointe",48.557821,2.148615,0,0,OIF:SA:46:8669,Europe/Paris,,OIF, +OIF:SP:46:8670,1,"La Pointe",48.557659,2.148697,0,0,OIF:SA:46:8669,Europe/Paris,,OIF, +OIF:SP:46:8672,1,"Mairie",48.558954,2.154692,0,0,OIF:SA:46:8672,Europe/Paris,,OIF, +OIF:SP:46:8673,1,"Mairie",48.558082,2.154424,0,0,OIF:SA:46:8672,Europe/Paris,,OIF, +OIF:SP:46:8675,1,"Faurecia",48.455905,2.149888,0,0,OIF:SA:46:8675,Europe/Paris,,OIF, +OIF:SP:46:8676,1,"Mairie",48.457649,2.138866,0,0,OIF:SA:46:8676,Europe/Paris,,OIF, +OIF:SP:46:8677,1,"Mairie",48.457559,2.138826,0,0,OIF:SA:46:8676,Europe/Paris,,OIF, +OIF:SP:46:8678,1,"Mapac",48.45582,2.152929,0,0,OIF:SA:46:8678,Europe/Paris,,OIF, +OIF:SP:46:8679,1,"Mapac",48.45591,2.152956,0,0,OIF:SA:46:8678,Europe/Paris,,OIF, +OIF:SP:46:8680,1,"Parking",48.456226,2.142372,0,0,OIF:SA:46:14920,Europe/Paris,,OIF, +OIF:SP:46:8754,1,"Les Ormes",48.59489,2.183689,0,0,OIF:SA:24:14808,Europe/Paris,,OIF, +OIF:SP:46:8755,1,"Les Ormes",48.594773,2.183323,0,0,OIF:SA:24:14808,Europe/Paris,,OIF, +OIF:SP:46:8767,1,"Rue de la Libération",48.59165,2.188075,0,0,OIF:SA:46:14536,Europe/Paris,,OIF, +OIF:SP:46:8768,1,"Val de la Rémarde",48.588785,2.189574,0,0,OIF:SA:46:8768,Europe/Paris,,OIF, +OIF:SP:46:8769,1,"Val de la Rémarde",48.588793,2.18933,0,0,OIF:SA:46:8768,Europe/Paris,,OIF, +OIF:SP:46:8770,1,"Zone Industrielle",48.583189,2.19314,0,0,OIF:SA:46:8770,Europe/Paris,,OIF, +OIF:SP:46:8771,1,"Zone Industrielle",48.583153,2.193058,0,0,OIF:SA:46:8770,Europe/Paris,,OIF, +OIF:SP:46:8827,1,"Beaumont",48.408792,2.042148,0,0,OIF:SA:46:8827,Europe/Paris,,OIF, +OIF:SP:46:8829,1,"Bois de la Pucelle",48.427751,2.052457,0,0,OIF:SA:46:14686,Europe/Paris,,OIF, +OIF:SP:46:8830,1,"Château",48.426189,2.068905,0,0,OIF:SA:46:8830,Europe/Paris,,OIF, +OIF:SP:46:8832,1,"Creux Chemin",48.413298,2.046633,0,0,OIF:SA:46:8832,Europe/Paris,,OIF, +OIF:SP:46:8834,1,"D 82",48.433811,2.067812,0,0,OIF:SA:46:8834,Europe/Paris,,OIF, +OIF:SP:46:8835,1,"D 82",48.433883,2.067852,0,0,OIF:SA:46:8834,Europe/Paris,,OIF, +OIF:SP:46:8836,1,"La Gitonnière",48.419086,2.064497,0,0,OIF:SA:46:8836,Europe/Paris,,OIF, +OIF:SP:46:8838,1,"Le Vau",48.414221,2.052598,0,0,OIF:SA:46:8838,Europe/Paris,,OIF, +OIF:SP:46:8840,1,"Les Boutards",48.438143,2.063574,0,0,OIF:SA:46:8840,Europe/Paris,,OIF, +OIF:SP:46:8841,1,"Les Boutards",48.438035,2.063426,0,0,OIF:SA:46:8840,Europe/Paris,,OIF, +OIF:SP:46:8843,1,"Les Morandières",48.420418,2.061505,0,0,OIF:SA:46:8843,Europe/Paris,,OIF, +OIF:SP:46:8844,1,"Longuetoise",48.427529,2.089701,0,0,OIF:SA:46:8844,Europe/Paris,,OIF, +OIF:SP:46:8845,1,"Longuetoise",48.42803,2.08851,0,0,OIF:SA:46:8844,Europe/Paris,,OIF, +OIF:SP:46:8846,1,"Rue des Sablons",48.425607,2.069772,0,0,OIF:SA:46:8846,Europe/Paris,,OIF, +OIF:SP:46:8848,1,"Sablons",48.421366,2.067187,0,0,OIF:SA:46:8848,Europe/Paris,,OIF, +OIF:SP:46:8850,1,"Voie Neuve",48.418122,2.052441,0,0,OIF:SA:46:8850,Europe/Paris,,OIF, +OIF:SP:46:8855,1,"Monument aux Morts",48.386314,2.020705,0,0,OIF:SA:46:8855,Europe/Paris,,OIF, +OIF:SP:46:8856,1,"Monument aux Morts",48.386395,2.020704,0,0,OIF:SA:46:8855,Europe/Paris,,OIF, +OIF:SP:46:8857,1,"Moulineux",48.393817,2.025789,0,0,OIF:SA:46:8857,Europe/Paris,,OIF, +OIF:SP:46:8858,1,"Moulineux",48.393754,2.025979,0,0,OIF:SA:46:8857,Europe/Paris,,OIF, +OIF:SP:46:8869,1,"Grande Rue",48.503464,2.168711,0,0,OIF:SA:46:8869,Europe/Paris,,OIF, +OIF:SP:46:8870,1,"Grande Rue",48.503482,2.168806,0,0,OIF:SA:46:8869,Europe/Paris,,OIF, +OIF:SP:46:8879,1,"Le Petit Chilly",48.710058,2.297477,0,0,OIF:SA:46:8879,Europe/Paris,,OIF, +OIF:SP:46:8880,1,"Le Petit Chilly",48.70924,2.297587,0,0,OIF:SA:46:8879,Europe/Paris,,OIF, +OIF:SP:46:8881,1,"Les Champarts",48.71609,2.298328,0,0,OIF:SA:46:8881,Europe/Paris,,OIF, +OIF:SP:46:8882,1,"Les Champarts",48.715847,2.298723,0,0,OIF:SA:46:8881,Europe/Paris,,OIF, +OIF:SP:46:9015,1,"Champs de Courses",48.534512,1.996351,0,0,OIF:SA:46:9015,Europe/Paris,,OIF, +OIF:SP:46:9025,1,"Collège Émile Auvray",48.527638,2.020189,0,0,OIF:SA:25:166,Europe/Paris,,OIF, +OIF:SP:46:9034,1,"Gare",48.533749,2.006278,0,0,OIF:SA:8754552,Europe/Paris,,OIF, +OIF:SP:46:9041,1,"Hôpital",48.534315,2.002687,0,0,OIF:SA:25:172,Europe/Paris,,OIF, +OIF:SP:46:9042,1,"Hôpital",48.533502,2.001569,0,0,OIF:SA:25:172,Europe/Paris,,OIF, +OIF:SP:46:9044,1,"Jubé de la Pérelle",48.527904,2.012067,0,0,OIF:SA:46:9044,Europe/Paris,,OIF, +OIF:SP:46:9188,1,"Ancienne Mairie",48.580283,2.224186,0,0,OIF:SA:46:9188,Europe/Paris,,OIF, +OIF:SP:46:9189,1,"Ancienne Mairie",48.580121,2.224268,0,0,OIF:SA:46:9188,Europe/Paris,,OIF, +OIF:SP:46:9190,1,"Cd 19",48.579884,2.220583,0,0,OIF:SA:46:9190,Europe/Paris,,OIF, +OIF:SP:46:9192,1,"Gare",48.581953,2.222123,0,0,OIF:SA:8754547,Europe/Paris,,OIF, +OIF:SP:46:9196,1,"Intermarché",48.58196,2.230306,0,0,OIF:SA:46:9196,Europe/Paris,,OIF, +OIF:SP:46:9197,1,"Intermarché",48.582158,2.230387,0,0,OIF:SA:46:9196,Europe/Paris,,OIF, +OIF:SP:46:9198,1,"Villelouvette",48.575423,2.202088,0,0,OIF:SA:46:9198,Europe/Paris,,OIF, +OIF:SP:46:9199,1,"Villelouvette",48.575189,2.201168,0,0,OIF:SA:46:9198,Europe/Paris,,OIF, +OIF:SP:46:9218,1,"Gare d'Epinay sur Orge",48.669571,2.331612,0,0,OIF:SA:8754522,Europe/Paris,,OIF, +OIF:SP:46:9230,1,"Les Templiers",48.672023,2.316982,0,0,OIF:SA:46:9230,Europe/Paris,,OIF, +OIF:SP:46:9231,1,"Les Templiers",48.672005,2.316778,0,0,OIF:SA:46:9230,Europe/Paris,,OIF, +OIF:SP:46:9245,1,"Avenue du 8 Mai 1945",48.4379,2.162814,0,0,OIF:SA:46:14537,Europe/Paris,,OIF, +OIF:SP:46:9246,1,"Avenue des Grenots",48.45196,2.150726,0,0,OIF:SA:46:9246,Europe/Paris,,OIF, +OIF:SP:46:9247,1,"Avenue des Grenots",48.45196,2.150726,0,0,OIF:SA:46:9246,Europe/Paris,,OIF, +OIF:SP:46:9249,1,"Barthélémy Durand",48.443479,2.154297,0,0,OIF:SA:46:9249,Europe/Paris,,OIF, +OIF:SP:46:9250,1,"Base de Loisirs",48.42709,2.154975,0,0,OIF:SA:46:9250,Europe/Paris,,OIF, +OIF:SP:46:9252,1,"Montfaucon",48.439948,2.162159,0,0,OIF:SA:46:14538,Europe/Paris,,OIF, +OIF:SP:46:9253,1,"Belles Croix",48.423947,2.134779,0,0,OIF:SA:46:9253,Europe/Paris,,OIF, +OIF:SP:46:9254,1,"Belles Croix",48.423884,2.134914,0,0,OIF:SA:46:9253,Europe/Paris,,OIF, +OIF:SP:46:9257,1,"Chasseurs",48.432379,2.175154,0,0,OIF:SA:46:9257,Europe/Paris,,OIF, +OIF:SP:46:9258,1,"Chasseurs",48.432325,2.175329,0,0,OIF:SA:46:9257,Europe/Paris,,OIF, +OIF:SP:46:9259,1,"Chemin Creux",48.439807,2.157809,0,0,OIF:SA:46:14693,Europe/Paris,,OIF, +OIF:SP:46:9260,1,"Clinique",48.427855,2.149218,0,0,OIF:SA:46:9260,Europe/Paris,,OIF, +OIF:SP:46:9262,1,"Clos Albert",48.423627,2.126716,0,0,OIF:SA:46:9262,Europe/Paris,,OIF, +OIF:SP:46:9263,1,"Clos Albert",48.423492,2.126798,0,0,OIF:SA:46:9262,Europe/Paris,,OIF, +OIF:SP:46:9264,1,"Collège de Guinette",48.4371,2.145793,0,0,OIF:SA:46:9264,Europe/Paris,,OIF, +OIF:SP:46:9266,1,"Commissariat",48.437479,2.164451,0,0,OIF:SA:46:9266,Europe/Paris,,OIF, +OIF:SP:46:9267,1,"Commissariat",48.437614,2.164383,0,0,OIF:SA:46:9266,Europe/Paris,,OIF, +OIF:SP:46:9270,1,"Cottages",48.438482,2.144099,0,0,OIF:SA:46:14699,Europe/Paris,,OIF, +OIF:SP:46:9271,1,"Croix de Vernailles",48.445916,2.167058,0,0,OIF:SA:46:14732,Europe/Paris,,OIF, +OIF:SP:46:9274,1,"École les Près",48.43339,2.165153,0,0,OIF:SA:46:14736,Europe/Paris,,OIF, +OIF:SP:46:9275,1,"Emmaüs Bas",48.449348,2.171466,0,0,OIF:SA:46:9275,Europe/Paris,,OIF, +OIF:SP:46:9276,1,"Emmaüs Bas",48.449357,2.171615,0,0,OIF:SA:46:9275,Europe/Paris,,OIF, +OIF:SP:46:9277,1,"Emmaüs Haut",48.449928,2.16864,0,0,OIF:SA:46:14733,Europe/Paris,,OIF, +OIF:SP:46:9278,1,"Fleurettes",48.435221,2.145989,0,0,OIF:SA:46:14700,Europe/Paris,,OIF, +OIF:SP:46:9281,1,"Gare RER",48.436646,2.159941,0,0,OIF:SA:8754513,Europe/Paris,,OIF, +OIF:SP:46:9282,1,"Gare RER",48.436826,2.160251,0,0,OIF:SA:8754513,Europe/Paris,,OIF, +OIF:SP:46:9283,1,"Gaston Beau Gare",48.438507,2.160407,0,0,OIF:SA:46:15004,Europe/Paris,,OIF, +OIF:SP:46:9287,1,"Gare Saint-Martin",48.428325,2.145163,0,0,OIF:SA:8754535,Europe/Paris,,OIF, +OIF:SP:46:9288,1,"Gare Saint-Martin",48.428369,2.145123,0,0,OIF:SA:8754535,Europe/Paris,,OIF, +OIF:SP:46:9289,1,"Hameau de Bretagne",48.434038,2.178675,0,0,OIF:SA:46:9289,Europe/Paris,,OIF, +OIF:SP:46:9290,1,"Hameau de Bretagne",48.433155,2.17711,0,0,OIF:SA:46:9289,Europe/Paris,,OIF, +OIF:SP:46:9291,1,"Haut Pavé",48.430118,2.148169,0,0,OIF:SA:46:9291,Europe/Paris,,OIF, +OIF:SP:46:9292,1,"Haut Pavé",48.430353,2.148425,0,0,OIF:SA:46:9291,Europe/Paris,,OIF, +OIF:SP:46:9293,1,"Hélène Boucher",48.427565,2.142329,0,0,OIF:SA:46:9293,Europe/Paris,,OIF, +OIF:SP:46:9294,1,"Hélène Boucher",48.427681,2.142262,0,0,OIF:SA:46:9293,Europe/Paris,,OIF, +OIF:SP:46:9295,1,"HLM Bas",48.434216,2.141508,0,0,OIF:SA:46:14697,Europe/Paris,,OIF, +OIF:SP:46:9296,1,"HLM Haut",48.435394,2.141328,0,0,OIF:SA:46:14698,Europe/Paris,,OIF, +OIF:SP:46:9297,1,"Hôpital",48.421546,2.150699,0,0,OIF:SA:14:9297,Europe/Paris,,OIF, +OIF:SP:46:9299,1,"Intermarché",48.441722,2.170152,0,0,OIF:SA:46:9299,Europe/Paris,,OIF, +OIF:SP:46:9300,1,"Intermarché",48.441785,2.170193,0,0,OIF:SA:46:9299,Europe/Paris,,OIF, +OIF:SP:46:9301,1,"Jean de la Fontaine",48.441678,2.16464,0,0,OIF:SA:46:14734,Europe/Paris,,OIF, +OIF:SP:46:9307,1,"Juineteau",48.433303,2.167207,0,0,OIF:SA:46:9307,Europe/Paris,,OIF, +OIF:SP:46:9308,1,"Juineteau",48.433231,2.167153,0,0,OIF:SA:46:9307,Europe/Paris,,OIF, +OIF:SP:46:9312,1,"Le Chesnay",48.457116,2.107308,0,0,OIF:SA:46:9312,Europe/Paris,,OIF, +OIF:SP:46:9313,1,"Le Chesnay",48.457161,2.107456,0,0,OIF:SA:46:9312,Europe/Paris,,OIF, +OIF:SP:46:9318,1,"Meuniers",48.439666,2.148108,0,0,OIF:SA:46:9318,Europe/Paris,,OIF, +OIF:SP:46:9319,1,"Meuniers",48.439558,2.148149,0,0,OIF:SA:46:9318,Europe/Paris,,OIF, +OIF:SP:46:9320,1,"Les Augustines",48.428156,2.170722,0,0,OIF:SA:46:9320,Europe/Paris,,OIF, +OIF:SP:46:9321,1,"Les Bosquets",48.429156,2.131611,0,0,OIF:SA:46:9321,Europe/Paris,,OIF, +OIF:SP:46:9322,1,"Les Bosquets",48.429003,2.131652,0,0,OIF:SA:46:9321,Europe/Paris,,OIF, +OIF:SP:46:9327,1,"Lory",48.454324,2.16253,0,0,OIF:SA:46:9327,Europe/Paris,,OIF, +OIF:SP:46:9328,1,"Lory",48.454261,2.162503,0,0,OIF:SA:46:9327,Europe/Paris,,OIF, +OIF:SP:46:9331,1,"Lycée Geoffroy Saint-Hilaire",48.435306,2.148124,0,0,OIF:SA:46:9331,Europe/Paris,,OIF, +OIF:SP:46:9332,1,"Lycée Geoffroy Saint-Hilaire",48.43545,2.148137,0,0,OIF:SA:46:9331,Europe/Paris,,OIF, +OIF:SP:46:9333,1,"Marie Curie",48.431034,2.158852,0,0,OIF:SA:46:14735,Europe/Paris,,OIF, +OIF:SP:46:9335,1,"Notre-Dame",48.435248,2.163458,0,0,OIF:SA:46:9335,Europe/Paris,,OIF, +OIF:SP:46:9336,1,"Notre-Dame",48.435167,2.163418,0,0,OIF:SA:46:9335,Europe/Paris,,OIF, +OIF:SP:46:9337,1,"Noyers Patins",48.437742,2.142292,0,0,OIF:SA:46:9337,Europe/Paris,,OIF, +OIF:SP:46:9338,1,"Orly Parc",48.420318,2.147421,0,0,OIF:SA:46:9338,Europe/Paris,,OIF, +OIF:SP:46:9339,1,"Perception",48.431346,2.157095,0,0,OIF:SA:46:9339,Europe/Paris,,OIF, +OIF:SP:46:9341,1,"Petit Saint-Mars",48.423482,2.147248,0,0,OIF:SA:46:9341,Europe/Paris,,OIF, +OIF:SP:46:9342,1,"Pierrefitte",48.429286,2.105025,0,0,OIF:SA:46:9342,Europe/Paris,,OIF, +OIF:SP:46:9343,1,"Pierrefitte",48.429277,2.105052,0,0,OIF:SA:46:9342,Europe/Paris,,OIF, +OIF:SP:46:9344,1,"Pont de Chauffour",48.428899,2.139015,0,0,OIF:SA:46:9344,Europe/Paris,,OIF, +OIF:SP:46:9345,1,"Pont de Chauffour",48.428826,2.138786,0,0,OIF:SA:46:9344,Europe/Paris,,OIF, +OIF:SP:46:9348,1,"Religieuses",48.431787,2.151595,0,0,OIF:SA:46:9348,Europe/Paris,,OIF, +OIF:SP:46:9349,1,"Religieuses",48.431425,2.150083,0,0,OIF:SA:46:9348,Europe/Paris,,OIF, +OIF:SP:46:9350,1,"Résidence de Guinette",48.438507,2.154165,0,0,OIF:SA:46:14996,Europe/Paris,,OIF, +OIF:SP:46:9351,1,"Rotonde",48.433438,2.155142,0,0,OIF:SA:14:9352,Europe/Paris,,OIF, +OIF:SP:46:9352,1,"Rotonde",48.433438,2.155142,0,0,OIF:SA:14:9352,Europe/Paris,,OIF, +OIF:SP:46:9354,1,"Rue Reverseleux",48.424617,2.137424,0,0,OIF:SA:46:9354,Europe/Paris,,OIF, +OIF:SP:46:9355,1,"Rue Reverseleux",48.424617,2.137424,0,0,OIF:SA:46:9354,Europe/Paris,,OIF, +OIF:SP:46:9356,1,"Rue Van Loo",48.439472,2.168133,0,0,OIF:SA:46:9356,Europe/Paris,,OIF, +OIF:SP:46:9357,1,"Rue Van Loo",48.439391,2.168174,0,0,OIF:SA:46:9356,Europe/Paris,,OIF, +OIF:SP:46:9358,1,"Simone de Beauvoir",48.437392,2.154358,0,0,OIF:SA:46:14997,Europe/Paris,,OIF, +OIF:SP:46:9359,1,"Sablons",48.43003,2.173013,0,0,OIF:SA:46:9359,Europe/Paris,,OIF, +OIF:SP:46:9360,1,"Sablons",48.429994,2.172959,0,0,OIF:SA:46:9359,Europe/Paris,,OIF, +OIF:SP:46:9362,1,"Saint-Pierre",48.433377,2.182,0,0,OIF:SA:46:9362,Europe/Paris,,OIF, +OIF:SP:46:9364,1,"Saint-Michel",48.44468,2.170305,0,0,OIF:SA:46:9364,Europe/Paris,,OIF, +OIF:SP:46:9365,1,"Saint-Michel",48.444645,2.170616,0,0,OIF:SA:46:9364,Europe/Paris,,OIF, +OIF:SP:46:9366,1,"Salle des Fêtes",48.429675,2.158168,0,0,OIF:SA:14:9366,Europe/Paris,,OIF, +OIF:SP:46:9367,1,"Salle des Fêtes",48.429639,2.157965,0,0,OIF:SA:14:9366,Europe/Paris,,OIF, +OIF:SP:46:9368,1,"Services Techniques",48.423979,2.142924,0,0,OIF:SA:46:9368,Europe/Paris,,OIF, +OIF:SP:46:9369,1,"Sous Préfecture",48.436383,2.164887,0,0,OIF:SA:46:9369,Europe/Paris,,OIF, +OIF:SP:46:9370,1,"Sous Préfecture",48.436338,2.164833,0,0,OIF:SA:46:9369,Europe/Paris,,OIF, +OIF:SP:46:9373,1,"Sybilles",48.43177,2.170603,0,0,OIF:SA:46:9373,Europe/Paris,,OIF, +OIF:SP:46:9374,1,"Sybilles",48.43168,2.170536,0,0,OIF:SA:46:9373,Europe/Paris,,OIF, +OIF:SP:46:9375,1,"Théâtre",48.434755,2.157826,0,0,OIF:SA:46:9375,Europe/Paris,,OIF, +OIF:SP:46:9376,1,"Théâtre",48.434755,2.157826,0,0,OIF:SA:46:9375,Europe/Paris,,OIF, +OIF:SP:46:9377,1,"Tour Penchée",48.426362,2.13839,0,0,OIF:SA:46:9377,Europe/Paris,,OIF, +OIF:SP:46:9378,1,"Tour Penchée",48.426407,2.138241,0,0,OIF:SA:46:9377,Europe/Paris,,OIF, +OIF:SP:46:9379,1,"Vallée Collin",48.440964,2.150481,0,0,OIF:SA:46:14704,Europe/Paris,,OIF, +OIF:SP:46:9380,1,"Valnay",48.428367,2.11766,0,0,OIF:SA:46:9380,Europe/Paris,,OIF, +OIF:SP:46:9381,1,"Valnay",48.428303,2.117511,0,0,OIF:SA:46:9380,Europe/Paris,,OIF, +OIF:SP:46:9382,1,"ZI Bas",48.454367,2.161003,0,0,OIF:SA:46:9382,Europe/Paris,,OIF, +OIF:SP:46:9383,1,"ZI Bas",48.454376,2.160935,0,0,OIF:SA:46:9382,Europe/Paris,,OIF, +OIF:SP:46:9384,1,"ZI Coquerive",48.433814,2.172299,0,0,OIF:SA:46:9384,Europe/Paris,,OIF, +OIF:SP:46:9385,1,"ZI Coquerive",48.433814,2.172299,0,0,OIF:SA:46:9384,Europe/Paris,,OIF, +OIF:SP:46:9386,1,"ZI Haut",48.451183,2.16,0,0,OIF:SA:46:9386,Europe/Paris,,OIF, +OIF:SP:46:9387,1,"ZI Haut",48.451183,2.16,0,0,OIF:SA:46:9386,Europe/Paris,,OIF, +OIF:SP:46:9414,1,"Centre Commercial",48.488027,2.188154,0,0,OIF:SA:46:9414,Europe/Paris,,OIF, +OIF:SP:46:9415,1,"Collège le Roussay",48.487475,2.17854,0,0,OIF:SA:46:9415,Europe/Paris,,OIF, +OIF:SP:46:9422,1,"Gare RER",48.493752,2.193927,0,0,OIF:SA:8754514,Europe/Paris,,OIF, +OIF:SP:46:9430,1,"Pont Royal",48.485325,2.191556,0,0,OIF:SA:46:9430,Europe/Paris,,OIF, +OIF:SP:46:9431,1,"Pont Royal",48.485083,2.192246,0,0,OIF:SA:46:9430,Europe/Paris,,OIF, +OIF:SP:46:9506,1,"Centre Jeunes Détenus",48.640766,2.370801,0,0,OIF:SA:10:1187,Europe/Paris,,OIF, +OIF:SP:46:9507,1,"Centre Jeunes Détenus",48.640675,2.371615,0,0,OIF:SA:10:1187,Europe/Paris,,OIF, +OIF:SP:46:9512,1,"Hôpital Henri Manhès",48.628831,2.360758,0,0,OIF:SA:10:240,Europe/Paris,,OIF, +OIF:SP:46:9513,1,"Hôpital Henri Manhès",48.628705,2.360935,0,0,OIF:SA:10:240,Europe/Paris,,OIF, +OIF:SP:46:9516,1,"La Résidence",48.639249,2.361536,0,0,OIF:SA:10:1185,Europe/Paris,,OIF, +OIF:SP:46:9517,1,"La Résidence",48.639006,2.36174,0,0,OIF:SA:10:1185,Europe/Paris,,OIF, +OIF:SP:46:9518,1,"Mairie",48.630323,2.361057,0,0,OIF:SA:10:316,Europe/Paris,,OIF, +OIF:SP:46:9519,1,"Mairie",48.630305,2.361274,0,0,OIF:SA:10:316,Europe/Paris,,OIF, +OIF:SP:46:9524,1,"Maison d'Arrêt des Hommes",48.640027,2.37449,0,0,OIF:SA:10:1188,Europe/Paris,,OIF, +OIF:SP:46:9525,1,"Maison d'Arrêt des Hommes",48.640171,2.375304,0,0,OIF:SA:10:1188,Europe/Paris,,OIF, +OIF:SP:46:9526,1,"Rond-Point de Fleury",48.63453,2.359798,0,0,OIF:SA:10:463,Europe/Paris,,OIF, +OIF:SP:46:9527,1,"Rond-Point de Fleury",48.635078,2.359541,0,0,OIF:SA:10:463,Europe/Paris,,OIF, +OIF:SP:46:9647,1,"Église",48.504033,2.020698,0,0,OIF:SA:46:9647,Europe/Paris,,OIF, +OIF:SP:46:9648,1,"Église",48.503978,2.020563,0,0,OIF:SA:46:9647,Europe/Paris,,OIF, +OIF:SP:46:9649,1,"Mairie",48.502015,2.01933,0,0,OIF:SA:46:9649,Europe/Paris,,OIF, +OIF:SP:46:9650,1,"Mairie",48.502069,2.019424,0,0,OIF:SA:46:9649,Europe/Paris,,OIF, +OIF:SP:46:9651,1,"Blancs Manteaux",48.658552,2.379863,0,0,OIF:SA:46:9651,Europe/Paris,,OIF, +OIF:SP:46:9652,1,"Blancs Manteaux",48.659028,2.379402,0,0,OIF:SA:46:9651,Europe/Paris,,OIF, +OIF:SP:46:9657,1,"Le Damier",48.651054,2.381891,0,0,OIF:SA:10:1288,Europe/Paris,,OIF, +OIF:SP:46:9658,1,"Le Damier",48.651,2.381634,0,0,OIF:SA:10:1288,Europe/Paris,,OIF, +OIF:SP:46:9659,1,"La Serpente",48.654822,2.378788,0,0,OIF:SA:10:1320,Europe/Paris,,OIF, +OIF:SP:46:9660,1,"La Serpente",48.654849,2.378503,0,0,OIF:SA:10:1320,Europe/Paris,,OIF, +OIF:SP:46:9678,1,"Mairie",48.655808,2.385301,0,0,OIF:SA:10:318,Europe/Paris,,OIF, +OIF:SP:46:9679,1,"Mairie",48.655826,2.3856,0,0,OIF:SA:10:318,Europe/Paris,,OIF, +OIF:SP:46:9793,1,"Gare de Juvisy",48.688331,2.382114,0,0,OIF:SA:8754524,Europe/Paris,,OIF, +OIF:SP:46:9794,1,"Gare de Juvisy",48.688924,2.382549,0,0,OIF:SA:8754524,Europe/Paris,,OIF, +OIF:SP:46:9798,1,"Mairie",48.691624,2.370753,0,0,OIF:SA:8741440,Europe/Paris,,OIF, +OIF:SP:46:9799,1,"Mairie",48.691894,2.370441,0,0,OIF:SA:8741440,Europe/Paris,,OIF, +OIF:SP:46:9800,1,"Pyramides",48.697431,2.371612,0,0,OIF:SA:46:9800,Europe/Paris,,OIF, +OIF:SP:46:9801,1,"Pyramides",48.698626,2.372197,0,0,OIF:SA:46:9800,Europe/Paris,,OIF, +OIF:SP:46:9848,1,"Aristide Briand",48.612273,2.267334,0,0,OIF:SA:46:9848,Europe/Paris,,OIF, +OIF:SP:46:9850,1,"Chemin Royal",48.613903,2.258059,0,0,OIF:SA:46:9850,Europe/Paris,,OIF, +OIF:SP:46:9851,1,"Chemin Royal",48.614083,2.257815,0,0,OIF:SA:46:9850,Europe/Paris,,OIF, +OIF:SP:46:9852,1,"Église",48.619994,2.2667,0,0,OIF:SA:46:9852,Europe/Paris,,OIF, +OIF:SP:46:9853,1,"Église",48.620183,2.266632,0,0,OIF:SA:46:9852,Europe/Paris,,OIF, +OIF:SP:46:9854,1,"Place des Ffi",48.615191,2.261907,0,0,OIF:SA:46:9854,Europe/Paris,,OIF, +OIF:SP:46:9856,1,"Gare",48.615582,2.268658,0,0,OIF:SA:46:9856,Europe/Paris,,OIF, +OIF:SP:46:9857,1,"Gare",48.615501,2.26855,0,0,OIF:SA:46:9856,Europe/Paris,,OIF, +OIF:SP:46:9858,1,"La Ferme",48.611089,2.256884,0,0,OIF:SA:46:9858,Europe/Paris,,OIF, +OIF:SP:46:9859,1,"La Ferme",48.610279,2.256411,0,0,OIF:SA:46:9858,Europe/Paris,,OIF, +OIF:SP:46:9860,1,"Pierre Curie",48.615926,2.259439,0,0,OIF:SA:46:9860,Europe/Paris,,OIF, +OIF:SP:46:9861,1,"Pierre Curie",48.615872,2.259168,0,0,OIF:SA:46:9860,Europe/Paris,,OIF, +OIF:SP:46:9862,1,"Paul Fort",48.616883,2.265932,0,0,OIF:SA:46:9862,Europe/Paris,,OIF, +OIF:SP:46:9863,1,"Paul Fort",48.616892,2.265484,0,0,OIF:SA:46:9862,Europe/Paris,,OIF, +OIF:SP:46:9864,1,"Petit Paris",48.613106,2.278083,0,0,OIF:SA:46:9864,Europe/Paris,,OIF, +OIF:SP:46:9865,1,"Petit Paris",48.613582,2.277798,0,0,OIF:SA:46:9864,Europe/Paris,,OIF, +OIF:SP:46:9896,1,"L'Arpajonnais",48.631754,2.270875,0,0,OIF:SA:46:9896,Europe/Paris,,OIF, +OIF:SP:46:9899,1,"Château d'Eau",48.626554,2.263112,0,0,OIF:SA:46:14908,Europe/Paris,,OIF, +OIF:SP:46:9900,1,"Château d'Eau",48.626716,2.263111,0,0,OIF:SA:46:14908,Europe/Paris,,OIF, +OIF:SP:46:9915,1,"L'Aubette",48.633505,2.268025,0,0,OIF:SA:46:9915,Europe/Paris,,OIF, +OIF:SP:46:9918,1,"Le Jubilé",48.616032,2.25605,0,0,OIF:SA:46:9918,Europe/Paris,,OIF, +OIF:SP:46:9919,1,"Le Jubilé",48.61659,2.256889,0,0,OIF:SA:46:9918,Europe/Paris,,OIF, +OIF:SP:46:9921,1,"Mairie",48.631823,2.266033,0,0,OIF:SA:46:9921,Europe/Paris,,OIF, +OIF:SP:46:9922,1,"Mairie",48.630746,2.268055,0,0,OIF:SA:46:9921,Europe/Paris,,OIF, +OIF:SP:46:9926,1,"Petits Prés",48.630811,2.272598,0,0,OIF:SA:46:9926,Europe/Paris,,OIF, +OIF:SP:46:9927,1,"Pinsons",48.6304,2.277237,0,0,OIF:SA:46:9927,Europe/Paris,,OIF, +OIF:SP:46:9928,1,"Pinsons",48.630589,2.277114,0,0,OIF:SA:46:9927,Europe/Paris,,OIF, +OIF:SP:46:9935,1,"Unm / Utac",48.623319,2.251415,0,0,OIF:SA:46:9935,Europe/Paris,,OIF, +OIF:SP:46:9950,1,"Charles de Gaulle",48.699461,2.297879,0,0,OIF:SA:29:496,Europe/Paris,,OIF, +OIF:SP:46:9951,1,"Chemin Blanc",48.703577,2.296586,0,0,OIF:SA:8739361,Europe/Paris,,OIF, +OIF:SP:46:9952,1,"Chemin Blanc",48.702076,2.296614,0,0,OIF:SA:8739361,Europe/Paris,,OIF, +OIF:SP:46:9960,1,"Docteur Cathelin",48.687979,2.287991,0,0,OIF:SA:46:14947,Europe/Paris,,OIF, +OIF:SP:46:9961,1,"École d'Infirmières",48.693911,2.286994,0,0,OIF:SA:46:9961,Europe/Paris,,OIF, +OIF:SP:46:9962,1,"École d'Infirmières",48.694082,2.287496,0,0,OIF:SA:46:9961,Europe/Paris,,OIF, +OIF:SP:46:9966,1,"Hôpital",48.691602,2.289915,0,0,OIF:SA:46:9966,Europe/Paris,,OIF, +OIF:SP:46:9967,1,"Hôpital",48.691638,2.290187,0,0,OIF:SA:46:9966,Europe/Paris,,OIF, +OIF:SP:46:9968,1,"Les Côteaux",48.689276,2.295348,0,0,OIF:SA:46:9968,Europe/Paris,,OIF, +OIF:SP:46:9969,1,"Les Côteaux",48.689887,2.295402,0,0,OIF:SA:46:9968,Europe/Paris,,OIF, +OIF:SP:46:9970,1,"Pasteur",48.690471,2.294559,0,0,OIF:SA:46:9970,Europe/Paris,,OIF, +OIF:SP:46:9971,1,"Pasteur",48.690848,2.293147,0,0,OIF:SA:46:9970,Europe/Paris,,OIF, +OIF:SP:46:9972,1,"Place Charles Steber",48.698048,2.294295,0,0,OIF:SA:29:497,Europe/Paris,,OIF, +OIF:SP:46:9976,1,"Théâtre",48.695695,2.298927,0,0,OIF:SA:46:9976,Europe/Paris,,OIF, +OIF:SP:46:9978,1,"Bizet",48.652136,2.278094,0,0,OIF:SA:46:9978,Europe/Paris,,OIF, +OIF:SP:46:9979,1,"Bizet",48.652082,2.277809,0,0,OIF:SA:46:9978,Europe/Paris,,OIF, +OIF:SP:46:9981,1,"Linas",48.629558,2.284045,0,0,OIF:SA:46:9981,Europe/Paris,,OIF, +OIF:SP:46:9982,1,"Croix Rouge Fer",48.649812,2.288162,0,0,OIF:SA:46:9982,Europe/Paris,,OIF, +OIF:SP:46:9983,1,"Croix Rouge Fer",48.649291,2.287308,0,0,OIF:SA:46:9982,Europe/Paris,,OIF, +OIF:SP:46:9984,1,"Docteur Darier",48.644144,2.29655,0,0,OIF:SA:46:9984,Europe/Paris,,OIF, +OIF:SP:46:9985,1,"Docteur Darier",48.644036,2.296808,0,0,OIF:SA:46:9984,Europe/Paris,,OIF, +OIF:SP:46:9987,1,"Gaudrons",48.64991,2.284771,0,0,OIF:SA:46:9987,Europe/Paris,,OIF, +OIF:SP:46:9988,1,"Guiperreux",48.634711,2.289397,0,0,OIF:SA:46:9988,Europe/Paris,,OIF, +OIF:SP:46:9989,1,"Guiperreux",48.634846,2.287946,0,0,OIF:SA:46:9988,Europe/Paris,,OIF, +OIF:SP:46:9991,1,"La Source",48.652087,2.288174,0,0,OIF:SA:46:9991,Europe/Paris,,OIF, +OIF:SP:46:9992,1,"Le Mesnil",48.651842,2.283073,0,0,OIF:SA:46:9992,Europe/Paris,,OIF, +OIF:SP:46:9993,1,"Le Mesnil",48.651527,2.282246,0,0,OIF:SA:46:9992,Europe/Paris,,OIF, +OIF:SP:46:9994,1,"Le Perray",48.657679,2.290665,0,0,OIF:SA:46:14507,Europe/Paris,,OIF, +OIF:SP:46:9995,1,"Les Echassons",48.655193,2.28018,0,0,OIF:SA:46:9995,Europe/Paris,,OIF, +OIF:SP:46:9996,1,"Les Echassons",48.655409,2.280098,0,0,OIF:SA:46:9995,Europe/Paris,,OIF, +OIF:SP:46:9997,1,"Leuville",48.628662,2.28867,0,0,OIF:SA:46:9997,Europe/Paris,,OIF, +OIF:SP:46:9999,1,"Mairie",48.642659,2.292577,0,0,OIF:SA:46:10000,Europe/Paris,,OIF, +OIF:SP:47:10,1,"Mairie",48.979945,3.239364,0,0,OIF:SA:47:10,Europe/Paris,,OIF, +OIF:SP:47:11,1,"Bourneville",49.155226,3.110996,0,0,OIF:SA:47:11,Europe/Paris,,OIF, +OIF:SP:47:1291,1,"Gare RER - Quai 3",48.871143,2.784048,0,0,OIF:SA:8775499,Europe/Paris,,OIF, +OIF:SP:47:1292,1,"Gare RER - Quai de Dépose",48.870524,2.783594,0,0,OIF:SA:8775499,Europe/Paris,,OIF, +OIF:SP:47:13,1,"Gare SNCF",49.17941,3.121434,0,0,OIF:SA:47:13,Europe/Paris,,OIF, +OIF:SP:47:1355,1,"Église",48.969804,3.237467,0,0,OIF:SA:47:1355,Europe/Paris,,OIF, +OIF:SP:47:1362,1,"Rue des Meulières",48.964672,3.236245,0,0,OIF:SA:47:1362,Europe/Paris,,OIF, +OIF:SP:47:1363,1,"Rue des Meulières",48.964566,3.236106,0,0,OIF:SA:47:1362,Europe/Paris,,OIF, +OIF:SP:47:1365,1,"Villaré / Château d'Eau",48.956761,3.238932,0,0,OIF:SA:47:1365,Europe/Paris,,OIF, +OIF:SP:47:1366,1,"Villaré / Château d'Eau",48.9567,3.23874,0,0,OIF:SA:47:1365,Europe/Paris,,OIF, +OIF:SP:47:14199,1,"L'Épinoche",48.881696,3.363232,0,0,OIF:SA:47:14199,Europe/Paris,,OIF, +OIF:SP:47:14200,1,"L'Épinoche",48.881663,3.363,0,0,OIF:SA:47:14199,Europe/Paris,,OIF, +OIF:SP:47:1427,1,"Centre",49.021156,3.103537,0,0,OIF:SA:47:1427,Europe/Paris,,OIF, +OIF:SP:47:1428,1,"Centre",49.020835,3.10319,0,0,OIF:SA:47:1427,Europe/Paris,,OIF, +OIF:SP:47:1429,1,"Crépoil",49.01439,3.077901,0,0,OIF:SA:47:1429,Europe/Paris,,OIF, +OIF:SP:47:1430,1,"Crépoil",49.014292,3.077722,0,0,OIF:SA:47:1429,Europe/Paris,,OIF, +OIF:SP:47:1435,1,"Place",49.020952,3.097631,0,0,OIF:SA:47:1435,Europe/Paris,,OIF, +OIF:SP:47:1436,1,"Place",49.020708,3.097805,0,0,OIF:SA:47:1435,Europe/Paris,,OIF, +OIF:SP:47:14415,1,"Bout la Paille",48.853797,2.886904,0,0,OIF:SA:47:14415,Europe/Paris,,OIF, +OIF:SP:47:14426,1,"Boulevard des Artisans",48.848792,2.829273,0,0,OIF:SA:47:14426,Europe/Paris,,OIF, +OIF:SP:47:14448,1,"Bordes Rouges",48.936065,2.887628,0,0,OIF:SA:47:14448,Europe/Paris,,OIF, +OIF:SP:47:14449,1,"Bordes Rouges",48.936056,2.88756,0,0,OIF:SA:47:14448,Europe/Paris,,OIF, +OIF:SP:47:14450,1,"Fauvettes",48.949814,2.879888,0,0,OIF:SA:47:14450,Europe/Paris,,OIF, +OIF:SP:47:14454,1,"Bas d'Orgemont",48.955231,2.870529,0,0,OIF:SA:47:14454,Europe/Paris,,OIF, +OIF:SP:47:14455,1,"Louise",48.951518,2.870845,0,0,OIF:SA:47:14455,Europe/Paris,,OIF, +OIF:SP:47:14456,1,"Sucrerie",48.946028,2.866504,0,0,OIF:SA:47:14456,Europe/Paris,,OIF, +OIF:SP:47:14457,1,"Marronniers",48.93986,2.861121,0,0,OIF:SA:47:14457,Europe/Paris,,OIF, +OIF:SP:47:14458,1,"Fayotte",48.976873,2.874056,0,0,OIF:SA:47:14458,Europe/Paris,,OIF, +OIF:SP:47:14459,1,"Corbie",48.905277,2.802734,0,0,OIF:SA:47:14459,Europe/Paris,,OIF, +OIF:SP:47:14460,1,"Corbie",48.905331,2.802735,0,0,OIF:SA:47:14459,Europe/Paris,,OIF, +OIF:SP:47:14462,1,"Le Vautron",48.873712,3.291281,0,0,OIF:SA:47:14462,Europe/Paris,,OIF, +OIF:SP:47:14463,1,"Le Vautron",48.873587,3.291156,0,0,OIF:SA:47:14462,Europe/Paris,,OIF, +OIF:SP:47:14464,1,"Le Plessier",48.863076,3.287135,0,0,OIF:SA:47:14464,Europe/Paris,,OIF, +OIF:SP:47:14465,1,"L'E Plessier",48.863073,3.286358,0,0,OIF:SA:47:14464,Europe/Paris,,OIF, +OIF:SP:47:14466,1,"Torchamps / Centre",48.994696,3.117949,0,0,OIF:SA:47:14466,Europe/Paris,,OIF, +OIF:SP:47:14467,1,"Torchamps / Centre",48.990996,3.11071,0,0,OIF:SA:47:14466,Europe/Paris,,OIF, +OIF:SP:47:14468,1,"Villemeneux / Centre",49.000976,3.093171,0,0,OIF:SA:47:14468,Europe/Paris,,OIF, +OIF:SP:47:14469,1,"Villemeneux / Centre",49.000833,3.093046,0,0,OIF:SA:47:14468,Europe/Paris,,OIF, +OIF:SP:47:14470,1,"Pavillons",48.965933,2.933412,0,0,OIF:SA:47:14470,Europe/Paris,,OIF, +OIF:SP:47:14471,1,"Pavillons",48.966187,2.932855,0,0,OIF:SA:47:14470,Europe/Paris,,OIF, +OIF:SP:47:14478,1,"Cimetière",48.931271,2.862398,0,0,OIF:SA:47:14478,Europe/Paris,,OIF, +OIF:SP:47:14479,1,"Collège",48.927354,2.884098,0,0,OIF:SA:47:14479,Europe/Paris,,OIF, +OIF:SP:47:14481,1,"Centre",48.921049,2.970561,0,0,OIF:SA:47:14481,Europe/Paris,,OIF, +OIF:SP:47:14486,1,"Place de l'Europe",48.850043,2.820038,0,0,OIF:SA:47:14486,Europe/Paris,,OIF, +OIF:SP:47:14493,1,"Mairie",49.136194,3.077022,0,0,OIF:SA:47:14493,Europe/Paris,,OIF, +OIF:SP:47:14494,1,"Poste",49.137966,3.078198,0,0,OIF:SA:47:14494,Europe/Paris,,OIF, +OIF:SP:47:14500,1,"Mairie",48.895513,2.952257,0,0,OIF:SA:47:14500,Europe/Paris,,OIF, +OIF:SP:47:14501,1,"Mairie",48.895532,2.952052,0,0,OIF:SA:47:14500,Europe/Paris,,OIF, +OIF:SP:47:14502,1,"6 Avenue des Marronniers",48.890767,2.927435,0,0,OIF:SA:47:14502,Europe/Paris,,OIF, +OIF:SP:47:14503,1,"6 Avenue des Marronniers",48.890795,2.927299,0,0,OIF:SA:47:14502,Europe/Paris,,OIF, +OIF:SP:47:14504,1,"Rue Courtier",48.895697,2.949628,0,0,OIF:SA:47:14504,Europe/Paris,,OIF, +OIF:SP:47:14505,1,"Rue Courtier",48.895662,2.949369,0,0,OIF:SA:47:14504,Europe/Paris,,OIF, +OIF:SP:47:14506,1,"Montpichet / RD 33E Numéro 16",48.878333,2.89673,0,0,OIF:SA:47:14506,Europe/Paris,,OIF, +OIF:SP:47:14507,1,"Montpichet / RD 33E Numéro 16",48.878515,2.896064,0,0,OIF:SA:47:14506,Europe/Paris,,OIF, +OIF:SP:47:14508,1,"Montpichet / RD 33E Numéro 76",48.877982,2.889137,0,0,OIF:SA:47:14508,Europe/Paris,,OIF, +OIF:SP:47:14509,1,"Montpichet / RD 33E Numéro 76",48.878028,2.888824,0,0,OIF:SA:47:14508,Europe/Paris,,OIF, +OIF:SP:47:14510,1,"Gare RER / Val d'Europe - Quai de Dépose",48.855318,2.773792,0,0,OIF:SA:8773006,Europe/Paris,,OIF, +OIF:SP:47:14511,1,"École",48.878891,2.90592,0,0,OIF:SA:47:14511,Europe/Paris,,OIF, +OIF:SP:47:14513,1,"Champagne",48.878267,2.851409,0,0,OIF:SA:47:14513,Europe/Paris,,OIF, +OIF:SP:47:14514,1,"Champagne",48.878367,2.851246,0,0,OIF:SA:47:14513,Europe/Paris,,OIF, +OIF:SP:47:14515,1,"Gare RER / Val d'Europe - Quai 2",48.854978,2.773204,0,0,OIF:SA:8773006,Europe/Paris,,OIF, +OIF:SP:47:14518,1,"CFA",48.959442,2.904309,0,0,OIF:SA:47:14518,Europe/Paris,,OIF, +OIF:SP:47:14519,1,"Grosse Pierre Intérieure",48.962651,2.89853,0,0,OIF:SA:47:14519,Europe/Paris,,OIF, +OIF:SP:47:14522,1,"La Noue Brayer",48.935905,3.269932,0,0,OIF:SA:47:14522,Europe/Paris,,OIF, +OIF:SP:47:14523,1,"Le Maille",49.176046,3.126001,0,0,OIF:SA:47:14523,Europe/Paris,,OIF, +OIF:SP:47:14525,1,"Gare SNCF",48.998131,3.006716,0,0,OIF:SA:8711661,Europe/Paris,,OIF, +OIF:SP:47:14526,1,"Vincelles",48.924911,2.914364,0,0,OIF:SA:47:14526,Europe/Paris,,OIF, +OIF:SP:47:14527,1,"Coubras",48.926527,2.909185,0,0,OIF:SA:47:14527,Europe/Paris,,OIF, +OIF:SP:47:14530,1,"Place de l'Église / École",49.064259,3.158496,0,0,OIF:SA:47:14530,Europe/Paris,,OIF, +OIF:SP:47:14551,1,"Marché",48.945713,3.125329,0,0,OIF:SA:47:14551,Europe/Paris,,OIF, +OIF:SP:47:14554,1,"Jean Renoir",49.00061,2.956963,0,0,OIF:SA:47:14554,Europe/Paris,,OIF, +OIF:SP:47:14561,1,"Place de Courcelles",48.939578,3.146313,0,0,OIF:SA:47:14561,Europe/Paris,,OIF, +OIF:SP:47:14567,1,"Centre/Église",48.920324,2.929613,0,0,OIF:SA:47:14567,Europe/Paris,,OIF, +OIF:SP:47:14568,1,"Centre/Église",48.920432,2.929683,0,0,OIF:SA:47:14567,Europe/Paris,,OIF, +OIF:SP:47:14569,1,"École",48.921609,2.975041,0,0,OIF:SA:47:14569,Europe/Paris,,OIF, +OIF:SP:47:14571,1,"Place du Breuil",48.921094,2.951565,0,0,OIF:SA:47:14571,Europe/Paris,,OIF, +OIF:SP:47:14572,1,"École / Mairie",48.923171,2.954835,0,0,OIF:SA:47:14572,Europe/Paris,,OIF, +OIF:SP:47:14575,1,"Allée Renoir",48.897746,2.774164,0,0,OIF:SA:47:14575,Europe/Paris,,OIF, +OIF:SP:47:14576,1,"Gare SNCF",49.135575,3.076849,0,0,OIF:SA:47:14576,Europe/Paris,,OIF, +OIF:SP:47:14579,1,"Dhuis",48.960828,3.236014,0,0,OIF:SA:47:14579,Europe/Paris,,OIF, +OIF:SP:47:14580,1,"Dhuis",48.960404,3.236157,0,0,OIF:SA:47:14579,Europe/Paris,,OIF, +OIF:SP:47:14581,1,"Saunnières",48.968424,3.233266,0,0,OIF:SA:47:14581,Europe/Paris,,OIF, +OIF:SP:47:14582,1,"Saunnières",48.96827,3.233536,0,0,OIF:SA:47:14581,Europe/Paris,,OIF, +OIF:SP:47:14583,1,"Prés Macquais",48.947762,3.076129,0,0,OIF:SA:47:14583,Europe/Paris,,OIF, +OIF:SP:47:14584,1,"Prés Macquais",48.947917,3.075859,0,0,OIF:SA:47:14583,Europe/Paris,,OIF, +OIF:SP:47:14585,1,"Beau Rivage",48.952393,3.011992,0,0,OIF:SA:47:14585,Europe/Paris,,OIF, +OIF:SP:47:14589,1,"Camping",48.853764,2.929506,0,0,OIF:SA:47:14589,Europe/Paris,,OIF, +OIF:SP:47:14590,1,"Camping",48.853924,2.929713,0,0,OIF:SA:47:14589,Europe/Paris,,OIF, +OIF:SP:47:14592,1,"Paul Barennes",48.951901,2.896994,0,0,OIF:SA:47:14592,Europe/Paris,,OIF, +OIF:SP:47:14593,1,"Paul Barennes",48.952027,2.896954,0,0,OIF:SA:47:14592,Europe/Paris,,OIF, +OIF:SP:47:14594,1,"Bêla Bartok",48.947362,2.915965,0,0,OIF:SA:47:14594,Europe/Paris,,OIF, +OIF:SP:47:14595,1,"Bêla Bartok",48.947407,2.915843,0,0,OIF:SA:47:14594,Europe/Paris,,OIF, +OIF:SP:47:14596,1,"Rue S. Bernhardt",48.949592,2.919442,0,0,OIF:SA:47:14596,Europe/Paris,,OIF, +OIF:SP:47:14597,1,"Rue S. Bernhardt",48.949628,2.919374,0,0,OIF:SA:47:14596,Europe/Paris,,OIF, +OIF:SP:47:14598,1,"La Cave aux Hérons",48.955373,2.922618,0,0,OIF:SA:47:14598,Europe/Paris,,OIF, +OIF:SP:47:14599,1,"Rue G. Bell",48.95498,2.931279,0,0,OIF:SA:47:14599,Europe/Paris,,OIF, +OIF:SP:47:14600,1,"Rue G. Bell",48.956263,2.931567,0,0,OIF:SA:47:14599,Europe/Paris,,OIF, +OIF:SP:47:14601,1,"Louis Fournier",48.952586,2.930065,0,0,OIF:SA:47:14601,Europe/Paris,,OIF, +OIF:SP:47:14602,1,"Louis Fournier",48.95256,2.929955,0,0,OIF:SA:47:14601,Europe/Paris,,OIF, +OIF:SP:47:14603,1,"Les Platanes",48.950463,2.928676,0,0,OIF:SA:47:14603,Europe/Paris,,OIF, +OIF:SP:47:14605,1,"Charles Tellier",48.951822,2.930152,0,0,OIF:SA:47:14605,Europe/Paris,,OIF, +OIF:SP:47:14606,1,"Centre Commercial (Baudelaire)",48.954339,2.915279,0,0,OIF:SA:47:14606,Europe/Paris,,OIF, +OIF:SP:47:14607,1,"Poste Allende",48.957694,2.882249,0,0,OIF:SA:47:14607,Europe/Paris,,OIF, +OIF:SP:47:14608,1,"Chemin Noir / Intermarché",49.026392,3.022852,0,0,OIF:SA:47:14608,Europe/Paris,,OIF, +OIF:SP:47:14609,1,"Murs Blancs",48.913532,2.830597,0,0,OIF:SA:47:14609,Europe/Paris,,OIF, +OIF:SP:47:14610,1,"Murs Blancs",48.913379,2.830555,0,0,OIF:SA:47:14609,Europe/Paris,,OIF, +OIF:SP:47:14611,1,"Bois du Chêne",48.912212,2.82164,0,0,OIF:SA:47:14611,Europe/Paris,,OIF, +OIF:SP:47:14612,1,"Bois du Chêne",48.912148,2.821844,0,0,OIF:SA:47:14611,Europe/Paris,,OIF, +OIF:SP:47:14614,1,"Les Brûlis",49.059442,3.108603,0,0,OIF:SA:47:14614,Europe/Paris,,OIF, +OIF:SP:47:14621,1,"Rue de Picardie",48.861365,2.8811,0,0,OIF:SA:47:14621,Europe/Paris,,OIF, +OIF:SP:47:14622,1,"Rue de Picardie",48.862389,2.879108,0,0,OIF:SA:47:14621,Europe/Paris,,OIF, +OIF:SP:47:14623,1,"Chemin Blanc",48.865135,2.870092,0,0,OIF:SA:47:14623,Europe/Paris,,OIF, +OIF:SP:47:14624,1,"Chemin Blanc",48.86535,2.870271,0,0,OIF:SA:47:14623,Europe/Paris,,OIF, +OIF:SP:47:14627,1,"Pisseloup",49.003745,3.200221,0,0,OIF:SA:47:14627,Europe/Paris,,OIF, +OIF:SP:47:14629,1,"Centre Pénitentiaire",48.963071,2.863703,0,0,OIF:SA:47:14629,Europe/Paris,,OIF, +OIF:SP:47:14630,1,"Camping",49.003076,2.940465,0,0,OIF:SA:47:14630,Europe/Paris,,OIF, +OIF:SP:47:14634,1,"Marché",48.945882,3.125563,0,0,OIF:SA:47:14551,Europe/Paris,,OIF, +OIF:SP:47:14635,1,"Zone Industrielle",49.139468,3.087998,0,0,OIF:SA:47:14635,Europe/Paris,,OIF, +OIF:SP:47:14636,1,"Zone Industrielle",49.139484,3.088286,0,0,OIF:SA:47:14635,Europe/Paris,,OIF, +OIF:SP:47:14638,1,"Avenue de la Brie",48.928473,2.863283,0,0,OIF:SA:47:14638,Europe/Paris,,OIF, +OIF:SP:47:14640,1,"Mozart",48.927132,2.865656,0,0,OIF:SA:47:14640,Europe/Paris,,OIF, +OIF:SP:47:14642,1,"Petits Clos",48.92531,2.867138,0,0,OIF:SA:47:14642,Europe/Paris,,OIF, +OIF:SP:47:14645,1,"Les Vendangeuses",48.923498,2.862387,0,0,OIF:SA:47:14645,Europe/Paris,,OIF, +OIF:SP:47:14648,1,"Poste",48.976508,3.281586,0,0,OIF:SA:47:14648,Europe/Paris,,OIF, +OIF:SP:47:14649,1,"Poste",48.976606,3.281656,0,0,OIF:SA:47:14648,Europe/Paris,,OIF, +OIF:SP:47:14654,1,"Colverts",48.943264,3.124595,0,0,OIF:SA:47:14654,Europe/Paris,,OIF, +OIF:SP:47:14655,1,"Colverts",48.94299,3.12526,0,0,OIF:SA:47:14654,Europe/Paris,,OIF, +OIF:SP:47:14657,1,"Sainte-Beuve",48.94757,3.127103,0,0,OIF:SA:47:14657,Europe/Paris,,OIF, +OIF:SP:47:14658,1,"Village de la Noue",48.949322,3.143286,0,0,OIF:SA:47:14658,Europe/Paris,,OIF, +OIF:SP:47:14659,1,"Place des Bouleaux",48.946993,3.142172,0,0,OIF:SA:47:14659,Europe/Paris,,OIF, +OIF:SP:47:14661,1,"Théâtre",48.945417,3.130577,0,0,OIF:SA:47:14661,Europe/Paris,,OIF, +OIF:SP:47:14662,1,"Théâtre",48.945293,3.130384,0,0,OIF:SA:47:14661,Europe/Paris,,OIF, +OIF:SP:47:14663,1,"Petit Venteuil",48.939803,3.136835,0,0,OIF:SA:47:14663,Europe/Paris,,OIF, +OIF:SP:47:14664,1,"Petit Venteuil",48.939756,3.137134,0,0,OIF:SA:47:14663,Europe/Paris,,OIF, +OIF:SP:47:14665,1,"Les Bellouettes",48.939967,3.143236,0,0,OIF:SA:47:14665,Europe/Paris,,OIF, +OIF:SP:47:14666,1,"Les Bellouettes",48.939911,3.143562,0,0,OIF:SA:47:14665,Europe/Paris,,OIF, +OIF:SP:47:14667,1,"Mairie",48.922494,3.236277,0,0,OIF:SA:47:14667,Europe/Paris,,OIF, +OIF:SP:47:14668,1,"Mairie",48.922484,3.236508,0,0,OIF:SA:47:14667,Europe/Paris,,OIF, +OIF:SP:47:14669,1,"Les Cabarets",48.925521,3.237775,0,0,OIF:SA:47:14669,Europe/Paris,,OIF, +OIF:SP:47:14670,1,"Les Cabarets",48.925753,3.237929,0,0,OIF:SA:47:14669,Europe/Paris,,OIF, +OIF:SP:47:14671,1,"Route de Saâcy",48.925892,3.242105,0,0,OIF:SA:47:14671,Europe/Paris,,OIF, +OIF:SP:47:14672,1,"Route de Saâcy",48.925981,3.242256,0,0,OIF:SA:47:14671,Europe/Paris,,OIF, +OIF:SP:47:14673,1,"Pasteur",48.941866,3.126784,0,0,OIF:SA:47:14673,Europe/Paris,,OIF, +OIF:SP:47:14674,1,"Pasteur",48.942097,3.127184,0,0,OIF:SA:47:14673,Europe/Paris,,OIF, +OIF:SP:47:14678,1,"Claude Monet",49.025047,3.025471,0,0,OIF:SA:47:14678,Europe/Paris,,OIF, +OIF:SP:47:14679,1,"Pont SNCF",48.973796,3.211858,0,0,OIF:SA:47:14679,Europe/Paris,,OIF, +OIF:SP:47:14680,1,"Pont SNCF",48.974061,3.212476,0,0,OIF:SA:47:14679,Europe/Paris,,OIF, +OIF:SP:47:14681,1,"Le Pont",48.965984,3.203618,0,0,OIF:SA:47:14681,Europe/Paris,,OIF, +OIF:SP:47:14682,1,"Le Pont",48.965771,3.203205,0,0,OIF:SA:47:14681,Europe/Paris,,OIF, +OIF:SP:47:14683,1,"Gambetta",48.962459,3.211229,0,0,OIF:SA:47:14683,Europe/Paris,,OIF, +OIF:SP:47:14684,1,"Gambetta",48.963764,3.213421,0,0,OIF:SA:47:14683,Europe/Paris,,OIF, +OIF:SP:47:14687,1,"Petit Morin",48.943358,3.122659,0,0,OIF:SA:47:14687,Europe/Paris,,OIF, +OIF:SP:47:14688,1,"Petit Morin",48.943484,3.122566,0,0,OIF:SA:47:14687,Europe/Paris,,OIF, +OIF:SP:47:14689,1,"Cimetière",48.952736,3.13013,0,0,OIF:SA:47:14689,Europe/Paris,,OIF, +OIF:SP:47:14691,1,"Savarbousier",48.936578,3.132611,0,0,OIF:SA:47:14691,Europe/Paris,,OIF, +OIF:SP:47:14692,1,"Savarbousier",48.936541,3.132842,0,0,OIF:SA:47:14691,Europe/Paris,,OIF, +OIF:SP:47:14693,1,"Fanny Marc",48.937534,3.137496,0,0,OIF:SA:47:14693,Europe/Paris,,OIF, +OIF:SP:47:14695,1,"École",48.952407,3.019142,0,0,OIF:SA:47:14695,Europe/Paris,,OIF, +OIF:SP:47:14697,1,"Pierre Marx",48.949528,3.121825,0,0,OIF:SA:47:14697,Europe/Paris,,OIF, +OIF:SP:47:14698,1,"Pierre Marx",48.949641,3.121117,0,0,OIF:SA:47:14697,Europe/Paris,,OIF, +OIF:SP:47:14700,1,"Casimir Périer",48.894745,2.83583,0,0,OIF:SA:47:14700,Europe/Paris,,OIF, +OIF:SP:47:14702,1,"Georges Pompidou",48.897226,2.829147,0,0,OIF:SA:47:14702,Europe/Paris,,OIF, +OIF:SP:47:14703,1,"Georges Pompidou",48.897306,2.829257,0,0,OIF:SA:47:14702,Europe/Paris,,OIF, +OIF:SP:47:14704,1,"Eid",48.883506,2.815103,0,0,OIF:SA:47:14704,Europe/Paris,,OIF, +OIF:SP:47:14705,1,"Eid",48.883413,2.815852,0,0,OIF:SA:47:14704,Europe/Paris,,OIF, +OIF:SP:47:14706,1,"La Dimeresse",48.897532,2.860651,0,0,OIF:SA:47:14706,Europe/Paris,,OIF, +OIF:SP:47:14707,1,"La Dimeresse",48.89792,2.860328,0,0,OIF:SA:47:14706,Europe/Paris,,OIF, +OIF:SP:47:14708,1,"Sente du Toit",48.861746,2.872318,0,0,OIF:SA:47:14708,Europe/Paris,,OIF, +OIF:SP:47:14709,1,"Sente du Toit",48.861736,2.872577,0,0,OIF:SA:47:14708,Europe/Paris,,OIF, +OIF:SP:47:14710,1,"Bas de Villiers",48.860249,2.883254,0,0,OIF:SA:47:14710,Europe/Paris,,OIF, +OIF:SP:47:14716,1,"Nongloire",49.060479,2.892633,0,0,OIF:SA:47:14716,Europe/Paris,,OIF, +OIF:SP:47:14717,1,"Nongloire",49.060776,2.892623,0,0,OIF:SA:47:14716,Europe/Paris,,OIF, +OIF:SP:47:14718,1,"Rue de Crécy (Hall)",48.877286,2.868268,0,0,OIF:SA:47:14718,Europe/Paris,,OIF, +OIF:SP:47:14719,1,"Rue de Crécy (Hall)",48.878007,2.867812,0,0,OIF:SA:47:14718,Europe/Paris,,OIF, +OIF:SP:47:14720,1,"Chivres",48.981134,3.046077,0,0,OIF:SA:47:14720,Europe/Paris,,OIF, +OIF:SP:47:14721,1,"Rue des Vignes",48.962004,3.148411,0,0,OIF:SA:47:14721,Europe/Paris,,OIF, +OIF:SP:47:14723,1,"Stade",48.950759,3.136745,0,0,OIF:SA:47:14723,Europe/Paris,,OIF, +OIF:SP:47:14724,1,"Stade",48.950865,3.137019,0,0,OIF:SA:47:14723,Europe/Paris,,OIF, +OIF:SP:47:14725,1,"Artois",48.951806,2.909533,0,0,OIF:SA:47:14725,Europe/Paris,,OIF, +OIF:SP:47:14726,1,"La Briqueterie",48.971364,2.920097,0,0,OIF:SA:47:14726,Europe/Paris,,OIF, +OIF:SP:47:14727,1,"La Briqueterie",48.971399,2.920179,0,0,OIF:SA:47:14726,Europe/Paris,,OIF, +OIF:SP:47:14728,1,"Rochelles",48.971328,2.916424,0,0,OIF:SA:47:14728,Europe/Paris,,OIF, +OIF:SP:47:14730,1,"Claudel",48.9474,2.900534,0,0,OIF:SA:47:14730,Europe/Paris,,OIF, +OIF:SP:47:14731,1,"Charcot",48.946663,2.906147,0,0,OIF:SA:47:14731,Europe/Paris,,OIF, +OIF:SP:47:14732,1,"Truffaut",48.852991,2.845942,0,0,OIF:SA:47:14732,Europe/Paris,,OIF, +OIF:SP:47:14733,1,"Truffaut",48.852997,2.846528,0,0,OIF:SA:47:14732,Europe/Paris,,OIF, +OIF:SP:47:14734,1,"L'Orme Rond",48.854166,2.816154,0,0,OIF:SA:47:14734,Europe/Paris,,OIF, +OIF:SP:47:14735,1,"L'Orme Rond",48.853273,2.816908,0,0,OIF:SA:47:14734,Europe/Paris,,OIF, +OIF:SP:47:14736,1,"La Trettoire",48.873756,3.251346,0,0,OIF:SA:47:14736,Europe/Paris,,OIF, +OIF:SP:47:14737,1,"La Trettoire",48.873755,3.251482,0,0,OIF:SA:47:14736,Europe/Paris,,OIF, +OIF:SP:47:14738,1,"Gibraltar",48.889031,3.21855,0,0,OIF:SA:47:14738,Europe/Paris,,OIF, +OIF:SP:47:14739,1,"Gibraltar",48.889105,3.218293,0,0,OIF:SA:47:14738,Europe/Paris,,OIF, +OIF:SP:47:14740,1,"Champlion",48.887339,3.232123,0,0,OIF:SA:47:14740,Europe/Paris,,OIF, +OIF:SP:47:14741,1,"Champlion",48.887382,3.232369,0,0,OIF:SA:47:14740,Europe/Paris,,OIF, +OIF:SP:47:14742,1,"Launoy",48.879683,3.242566,0,0,OIF:SA:47:14742,Europe/Paris,,OIF, +OIF:SP:47:14743,1,"Launoy",48.8797,3.242648,0,0,OIF:SA:47:14742,Europe/Paris,,OIF, +OIF:SP:47:14744,1,"Grange de Vaux",48.991513,3.16862,0,0,OIF:SA:47:14744,Europe/Paris,,OIF, +OIF:SP:47:14745,1,"Grange de Vaux",48.991637,3.168909,0,0,OIF:SA:47:14744,Europe/Paris,,OIF, +OIF:SP:47:14746,1,"Lavoir de Vaux",48.990301,3.167194,0,0,OIF:SA:47:14746,Europe/Paris,,OIF, +OIF:SP:47:14747,1,"Lavoir de Vaux",48.990211,3.16722,0,0,OIF:SA:47:14746,Europe/Paris,,OIF, +OIF:SP:47:14748,1,"Tennis",48.988398,3.165621,0,0,OIF:SA:47:14748,Europe/Paris,,OIF, +OIF:SP:47:14749,1,"Tennis",48.988495,3.165841,0,0,OIF:SA:47:14748,Europe/Paris,,OIF, +OIF:SP:47:14750,1,"Mairie",48.973849,3.15104,0,0,OIF:SA:47:14750,Europe/Paris,,OIF, +OIF:SP:47:14751,1,"Mairie",48.973902,3.151191,0,0,OIF:SA:47:14750,Europe/Paris,,OIF, +OIF:SP:47:14752,1,"Madeleine",48.971418,3.149063,0,0,OIF:SA:47:14752,Europe/Paris,,OIF, +OIF:SP:47:14753,1,"Madeleine",48.971579,3.149271,0,0,OIF:SA:47:14752,Europe/Paris,,OIF, +OIF:SP:47:14754,1,"Mairie",48.993177,3.172376,0,0,OIF:SA:47:14754,Europe/Paris,,OIF, +OIF:SP:47:14755,1,"Mairie",48.993098,3.172128,0,0,OIF:SA:47:14754,Europe/Paris,,OIF, +OIF:SP:47:14760,1,"Route de Beauval",49.029995,3.010285,0,0,OIF:SA:47:14760,Europe/Paris,,OIF, +OIF:SP:47:14762,1,"Route de Beauval",49.030284,3.010125,0,0,OIF:SA:47:14760,Europe/Paris,,OIF, +OIF:SP:47:14767,1,"Rue du Chef de Ville",49.034859,2.930093,0,0,OIF:SA:47:14767,Europe/Paris,,OIF, +OIF:SP:47:14768,1,"Rue du Chef de Ville",49.034679,2.93016,0,0,OIF:SA:47:14767,Europe/Paris,,OIF, +OIF:SP:47:14769,1,"École Sainte-Thérèse",48.883372,2.861871,0,0,OIF:SA:47:14769,Europe/Paris,,OIF, +OIF:SP:47:14771,1,"Souterrain",48.863313,2.883477,0,0,OIF:SA:47:14771,Europe/Paris,,OIF, +OIF:SP:47:14772,1,"Souterrain",48.862863,2.885597,0,0,OIF:SA:47:14771,Europe/Paris,,OIF, +OIF:SP:47:14773,1,"Château d'Eau",49.074085,3.023977,0,0,OIF:SA:47:14773,Europe/Paris,,OIF, +OIF:SP:47:14779,1,"Les Grands Montgoins",48.895133,3.167388,0,0,OIF:SA:47:14779,Europe/Paris,,OIF, +OIF:SP:47:14780,1,"Les Grands Montgoins",48.89515,3.167524,0,0,OIF:SA:47:14779,Europe/Paris,,OIF, +OIF:SP:47:14781,1,"Stade",48.861126,3.323552,0,0,OIF:SA:47:14781,Europe/Paris,,OIF, +OIF:SP:47:14782,1,"Stade",48.861072,3.323578,0,0,OIF:SA:47:14781,Europe/Paris,,OIF, +OIF:SP:47:14783,1,"Doucy",48.838466,3.328935,0,0,OIF:SA:47:14783,Europe/Paris,,OIF, +OIF:SP:47:14784,1,"Doucy",48.83851,3.329072,0,0,OIF:SA:47:14783,Europe/Paris,,OIF, +OIF:SP:47:14785,1,"Mairie",48.81605,3.360655,0,0,OIF:SA:47:14785,Europe/Paris,,OIF, +OIF:SP:47:14786,1,"Mairie",48.816022,3.360804,0,0,OIF:SA:47:14785,Europe/Paris,,OIF, +OIF:SP:47:14787,1,"Les 3 Maisons",48.817772,3.369441,0,0,OIF:SA:47:14787,Europe/Paris,,OIF, +OIF:SP:47:14788,1,"Les 3 Maisons",48.817652,3.369724,0,0,OIF:SA:47:14787,Europe/Paris,,OIF, +OIF:SP:47:14789,1,"Thiercelieux",48.825361,3.403706,0,0,OIF:SA:47:14789,Europe/Paris,,OIF, +OIF:SP:47:14790,1,"Thiercelieux",48.825449,3.403967,0,0,OIF:SA:47:14789,Europe/Paris,,OIF, +OIF:SP:47:14791,1,"Primefosse",48.827949,3.411805,0,0,OIF:SA:47:14791,Europe/Paris,,OIF, +OIF:SP:47:14792,1,"Primefosse",48.828104,3.41159,0,0,OIF:SA:47:14791,Europe/Paris,,OIF, +OIF:SP:47:14793,1,"Mairie",48.829474,3.43965,0,0,OIF:SA:47:14793,Europe/Paris,,OIF, +OIF:SP:47:14794,1,"Mairie",48.829439,3.439541,0,0,OIF:SA:47:14793,Europe/Paris,,OIF, +OIF:SP:47:14795,1,"Les Boblins",48.843926,3.42811,0,0,OIF:SA:47:14795,Europe/Paris,,OIF, +OIF:SP:47:14796,1,"Les Boblins",48.843906,3.428287,0,0,OIF:SA:47:14795,Europe/Paris,,OIF, +OIF:SP:47:14797,1,"Le Tilleul",48.850717,3.426605,0,0,OIF:SA:47:14797,Europe/Paris,,OIF, +OIF:SP:47:14798,1,"Le Tilleul",48.850752,3.426728,0,0,OIF:SA:47:14797,Europe/Paris,,OIF, +OIF:SP:47:14799,1,"Le Bois Retz",48.847466,3.414402,0,0,OIF:SA:47:14799,Europe/Paris,,OIF, +OIF:SP:47:14800,1,"Le Bois Retz",48.847292,3.414807,0,0,OIF:SA:47:14799,Europe/Paris,,OIF, +OIF:SP:47:14801,1,"Laulinoue",48.840075,3.397677,0,0,OIF:SA:47:14801,Europe/Paris,,OIF, +OIF:SP:47:14802,1,"Laulinoue",48.840024,3.397444,0,0,OIF:SA:47:14801,Europe/Paris,,OIF, +OIF:SP:47:14803,1,"Petit Villiers",48.9154,3.262526,0,0,OIF:SA:47:14803,Europe/Paris,,OIF, +OIF:SP:47:14804,1,"Petit Villiers",48.91531,3.261365,0,0,OIF:SA:47:14803,Europe/Paris,,OIF, +OIF:SP:47:14805,1,"Les Bruyères",48.918982,2.911925,0,0,OIF:SA:47:14805,Europe/Paris,,OIF, +OIF:SP:47:14807,1,"Agouries",48.955088,3.129101,0,0,OIF:SA:47:14807,Europe/Paris,,OIF, +OIF:SP:47:14808,1,"Cœur de Pigeon",48.889676,2.813838,0,0,OIF:SA:47:14808,Europe/Paris,,OIF, +OIF:SP:47:14810,1,"Pomme d'Api",48.892418,2.815908,0,0,OIF:SA:47:14810,Europe/Paris,,OIF, +OIF:SP:47:14812,1,"Marais",48.897178,2.791498,0,0,OIF:SA:47:14812,Europe/Paris,,OIF, +OIF:SP:47:14815,1,"Cimetière",48.821739,2.903878,0,0,OIF:SA:47:14815,Europe/Paris,,OIF, +OIF:SP:47:14816,1,"Cimetière",48.821721,2.903783,0,0,OIF:SA:47:14815,Europe/Paris,,OIF, +OIF:SP:47:14819,1,"Route de Jablines",48.903023,2.771345,0,0,OIF:SA:47:14819,Europe/Paris,,OIF, +OIF:SP:47:14821,1,"Camping",49.003101,2.940902,0,0,OIF:SA:47:14630,Europe/Paris,,OIF, +OIF:SP:47:14822,1,"Église",49.000388,2.931719,0,0,OIF:SA:47:14822,Europe/Paris,,OIF, +OIF:SP:47:14825,1,"Hameau de Sarcy",48.878032,2.930997,0,0,OIF:SA:47:14825,Europe/Paris,,OIF, +OIF:SP:47:14827,1,"Musée",48.973034,2.90368,0,0,OIF:SA:47:14827,Europe/Paris,,OIF, +OIF:SP:47:14830,1,"Belvédère",48.972807,2.902107,0,0,OIF:SA:47:14830,Europe/Paris,,OIF, +OIF:SP:47:14831,1,"Hauts de Chantereine",48.973034,2.903625,0,0,OIF:SA:47:14831,Europe/Paris,,OIF, +OIF:SP:47:14832,1,"C.A.M.S.P.",48.879304,2.788479,0,0,OIF:SA:47:14832,Europe/Paris,,OIF, +OIF:SP:47:14833,1,"C.A.M.S.P.",48.879404,2.788303,0,0,OIF:SA:47:14832,Europe/Paris,,OIF, +OIF:SP:47:14834,1,"Champ Madame",48.899427,2.869013,0,0,OIF:SA:47:14834,Europe/Paris,,OIF, +OIF:SP:47:14835,1,"Mareuil",48.899763,2.858111,0,0,OIF:SA:47:14835,Europe/Paris,,OIF, +OIF:SP:47:14837,1,"Avocette",48.963951,3.138382,0,0,OIF:SA:47:14837,Europe/Paris,,OIF, +OIF:SP:47:14838,1,"Albatros",48.968018,3.140301,0,0,OIF:SA:47:14838,Europe/Paris,,OIF, +OIF:SP:47:14839,1,"Ibis Rouge",48.969103,3.139308,0,0,OIF:SA:47:14839,Europe/Paris,,OIF, +OIF:SP:47:14840,1,"Les Vignes",48.982198,3.022375,0,0,OIF:SA:47:14840,Europe/Paris,,OIF, +OIF:SP:47:14841,1,"Les Vignes",48.981622,3.022463,0,0,OIF:SA:47:14840,Europe/Paris,,OIF, +OIF:SP:47:14842,1,"Rue de la Vallée",49.063385,3.154844,0,0,OIF:SA:47:14842,Europe/Paris,,OIF, +OIF:SP:47:14843,1,"Rue de la Vallée",49.063428,3.155159,0,0,OIF:SA:47:14842,Europe/Paris,,OIF, +OIF:SP:47:14844,1,"Rue de Meaux",48.902208,2.878244,0,0,OIF:SA:47:14844,Europe/Paris,,OIF, +OIF:SP:47:14845,1,"Rue de Meaux",48.902226,2.878176,0,0,OIF:SA:47:14844,Europe/Paris,,OIF, +OIF:SP:47:14847,1,"Boissières",48.985766,3.164186,0,0,OIF:SA:47:14847,Europe/Paris,,OIF, +OIF:SP:47:14851,1,"Brunoy",49.036139,2.920254,0,0,OIF:SA:47:14851,Europe/Paris,,OIF, +OIF:SP:47:14852,1,"Brunoy",49.035659,2.919182,0,0,OIF:SA:47:14851,Europe/Paris,,OIF, +OIF:SP:47:14855,1,"Vasset",49.105863,3.124065,0,0,OIF:SA:47:14855,Europe/Paris,,OIF, +OIF:SP:47:14857,1,"Gare Routière Quai A",48.957416,2.874181,0,0,OIF:SA:8711610,Europe/Paris,,OIF, +OIF:SP:47:14858,1,"Gare Routière Quai B",48.957353,2.874153,0,0,OIF:SA:8711610,Europe/Paris,,OIF, +OIF:SP:47:14859,1,"Gare Routière Quai C",48.95729,2.874139,0,0,OIF:SA:8711610,Europe/Paris,,OIF, +OIF:SP:47:14860,1,"Gare Routière Quai D",48.957246,2.874125,0,0,OIF:SA:8711610,Europe/Paris,,OIF, +OIF:SP:47:14861,1,"Gare Routière Quai E",48.957174,2.874097,0,0,OIF:SA:8711610,Europe/Paris,,OIF, +OIF:SP:47:14863,1,"Gare Routière Quai G",48.957048,2.874068,0,0,OIF:SA:8711610,Europe/Paris,,OIF, +OIF:SP:47:14865,1,"Gare Routière Quai J",48.956707,2.873914,0,0,OIF:SA:8711610,Europe/Paris,,OIF, +OIF:SP:47:14866,1,"Gare Routière Quai K",48.956645,2.8739,0,0,OIF:SA:8711610,Europe/Paris,,OIF, +OIF:SP:47:14867,1,"Gare Routière Quai L",48.956465,2.873871,0,0,OIF:SA:8711610,Europe/Paris,,OIF, +OIF:SP:47:14871,1,"Gare Routière Quai P",48.956294,2.873801,0,0,OIF:SA:8711610,Europe/Paris,,OIF, +OIF:SP:47:14872,1,"Gare Routière Quai Q",48.95625,2.873787,0,0,OIF:SA:8711610,Europe/Paris,,OIF, +OIF:SP:47:14873,1,"Gare Routière Quai R",48.956196,2.873745,0,0,OIF:SA:8711610,Europe/Paris,,OIF, +OIF:SP:47:14874,1,"Les Madeleines",48.940991,2.875402,0,0,OIF:SA:47:14874,Europe/Paris,,OIF, +OIF:SP:47:14882,1,"Fauvettes",48.948537,2.880134,0,0,OIF:SA:47:14450,Europe/Paris,,OIF, +OIF:SP:47:14884,1,"Gare Routière",48.956573,2.873886,0,0,OIF:SA:8711610,Europe/Paris,,OIF, +OIF:SP:47:14885,1,"Prairie",48.896874,2.814095,0,0,OIF:SA:47:14885,Europe/Paris,,OIF, +OIF:SP:47:14886,1,"Prairie",48.896946,2.814055,0,0,OIF:SA:47:14885,Europe/Paris,,OIF, +OIF:SP:47:14888,1,"Le Lauconnois",49.040648,2.970018,0,0,OIF:SA:47:14888,Europe/Paris,,OIF, +OIF:SP:47:14889,1,"Le Lauconnois",49.040619,2.970442,0,0,OIF:SA:47:14888,Europe/Paris,,OIF, +OIF:SP:47:14890,1,"CFA",48.959362,2.904144,0,0,OIF:SA:47:14518,Europe/Paris,,OIF, +OIF:SP:47:14891,1,"Le Potager",48.966821,3.144541,0,0,OIF:SA:47:14891,Europe/Paris,,OIF, +OIF:SP:47:14892,1,"Chaton Place",49.030747,3.108899,0,0,OIF:SA:47:14892,Europe/Paris,,OIF, +OIF:SP:47:14893,1,"École",49.099135,3.044509,0,0,OIF:SA:47:14893,Europe/Paris,,OIF, +OIF:SP:47:14894,1,"École",49.099135,3.044509,0,0,OIF:SA:47:14893,Europe/Paris,,OIF, +OIF:SP:47:14895,1,"Octroi (Aristide Briand)",48.957138,2.893693,0,0,OIF:SA:47:14895,Europe/Paris,,OIF, +OIF:SP:47:14896,1,"Gironnette",48.944698,2.898035,0,0,OIF:SA:47:14896,Europe/Paris,,OIF, +OIF:SP:47:14898,1,"Les Prairiales / Parc Frot",48.966201,2.873194,0,0,OIF:SA:47:14898,Europe/Paris,,OIF, +OIF:SP:47:14899,1,"Mairie",48.928597,2.897042,0,0,OIF:SA:47:14899,Europe/Paris,,OIF, +OIF:SP:47:14900,1,"Les Sablons - Clinique Saint-Faron",48.94048,2.873241,0,0,OIF:SA:47:14900,Europe/Paris,,OIF, +OIF:SP:47:14901,1,"Croix l'Evêque",48.96829,2.948836,0,0,OIF:SA:47:14901,Europe/Paris,,OIF, +OIF:SP:47:14902,1,"Croix l'Evêque",48.968282,2.948768,0,0,OIF:SA:47:14901,Europe/Paris,,OIF, +OIF:SP:47:14906,1,"Mairie",49.004012,2.927513,0,0,OIF:SA:47:14906,Europe/Paris,,OIF, +OIF:SP:47:14907,1,"Mairie",49.003967,2.927608,0,0,OIF:SA:47:14906,Europe/Paris,,OIF, +OIF:SP:47:14908,1,"Pavillons",49.007671,2.934453,0,0,OIF:SA:47:14908,Europe/Paris,,OIF, +OIF:SP:47:14909,1,"Route Nationale",49.035391,2.933462,0,0,OIF:SA:47:14909,Europe/Paris,,OIF, +OIF:SP:47:14910,1,"Croix Verte",49.030988,2.933247,0,0,OIF:SA:47:14910,Europe/Paris,,OIF, +OIF:SP:47:14913,1,"Le Gué à Tresmes",49.020717,2.963161,0,0,OIF:SA:47:14913,Europe/Paris,,OIF, +OIF:SP:47:14914,1,"Le Gué à Tresmes",49.020547,2.962981,0,0,OIF:SA:47:14913,Europe/Paris,,OIF, +OIF:SP:47:14916,1,"Brinches",48.935719,2.963129,0,0,OIF:SA:47:14916,Europe/Paris,,OIF, +OIF:SP:47:14919,1,"Vasset",49.106152,3.123796,0,0,OIF:SA:47:14855,Europe/Paris,,OIF, +OIF:SP:47:14920,1,"Vaux",49.100855,3.132556,0,0,OIF:SA:47:14920,Europe/Paris,,OIF, +OIF:SP:47:14921,1,"Hervilliers",49.091679,3.130102,0,0,OIF:SA:47:14921,Europe/Paris,,OIF, +OIF:SP:47:14922,1,"Boissières",48.985648,3.164266,0,0,OIF:SA:47:14847,Europe/Paris,,OIF, +OIF:SP:47:14923,1,"Boulevard du 8 Mai 1945",48.949594,3.130996,0,0,OIF:SA:47:14923,Europe/Paris,,OIF, +OIF:SP:47:14926,1,"Certigny",49.070842,3.103576,0,0,OIF:SA:47:14926,Europe/Paris,,OIF, +OIF:SP:47:14927,1,"Rue des Vignes",48.961926,3.148082,0,0,OIF:SA:47:14721,Europe/Paris,,OIF, +OIF:SP:47:14932,1,"Gare Routière",48.85922,2.905432,0,0,OIF:SA:8711677,Europe/Paris,,OIF, +OIF:SP:47:14934,1,"Gare RER - Quai 4",48.871304,2.784077,0,0,OIF:SA:8775499,Europe/Paris,,OIF, +OIF:SP:47:14935,1,"Gare RER - Quai 6",48.871628,2.784134,0,0,OIF:SA:8775499,Europe/Paris,,OIF, +OIF:SP:47:14936,1,"Gare RER - Quai 7",48.871789,2.784149,0,0,OIF:SA:8775499,Europe/Paris,,OIF, +OIF:SP:47:14938,1,"Gare RER / Val d'Europe - Quai 6",48.854914,2.77368,0,0,OIF:SA:8773006,Europe/Paris,,OIF, +OIF:SP:47:14939,1,"Les Groseilliers",48.927369,3.289023,0,0,OIF:SA:47:14939,Europe/Paris,,OIF, +OIF:SP:47:14942,1,"Louise",48.952864,2.871296,0,0,OIF:SA:47:14455,Europe/Paris,,OIF, +OIF:SP:47:14943,1,"Carnot / Mendès France",48.953475,2.869255,0,0,OIF:SA:47:14943,Europe/Paris,,OIF, +OIF:SP:47:14944,1,"Carnot / Bel Air",48.951281,2.867431,0,0,OIF:SA:47:14944,Europe/Paris,,OIF, +OIF:SP:47:14945,1,"Carnot / Parmentier",48.948565,2.865807,0,0,OIF:SA:47:14945,Europe/Paris,,OIF, +OIF:SP:47:14946,1,"Sucrerie",48.946055,2.866464,0,0,OIF:SA:47:14456,Europe/Paris,,OIF, +OIF:SP:47:14947,1,"Parc",48.943702,2.864106,0,0,OIF:SA:47:14947,Europe/Paris,,OIF, +OIF:SP:47:14948,1,"Union Commerciale",48.949654,2.869557,0,0,OIF:SA:47:14948,Europe/Paris,,OIF, +OIF:SP:47:14950,1,"Les Cottages",48.93764,2.85706,0,0,OIF:SA:47:14950,Europe/Paris,,OIF, +OIF:SP:47:14951,1,"Les Patios (Intérieurs)",48.953904,2.865793,0,0,OIF:SA:47:14951,Europe/Paris,,OIF, +OIF:SP:47:14991,1,"Beauval",49.039315,2.979078,0,0,OIF:SA:47:14991,Europe/Paris,,OIF, +OIF:SP:47:14996,1,"Vergers du Roy",48.974252,2.900758,0,0,OIF:SA:47:14996,Europe/Paris,,OIF, +OIF:SP:47:14997,1,"Rue du Mont",48.880873,2.908804,0,0,OIF:SA:47:14997,Europe/Paris,,OIF, +OIF:SP:47:14998,1,"Montpichet - République",48.87727,2.904812,0,0,OIF:SA:47:14998,Europe/Paris,,OIF, +OIF:SP:47:14999,1,"Montbarbin - Sinoël",48.865335,2.885528,0,0,OIF:SA:47:14999,Europe/Paris,,OIF, +OIF:SP:47:15000,1,"Montbarbin - Fresne",48.86452,2.886814,0,0,OIF:SA:47:15000,Europe/Paris,,OIF, +OIF:SP:47:15001,1,"Rue de Crécy",48.867337,2.903164,0,0,OIF:SA:47:15001,Europe/Paris,,OIF, +OIF:SP:47:15002,1,"Rue de Crécy",48.867337,2.903178,0,0,OIF:SA:47:15001,Europe/Paris,,OIF, +OIF:SP:47:15003,1,"Pont de Serbonne",48.84625,2.913011,0,0,OIF:SA:47:15003,Europe/Paris,,OIF, +OIF:SP:47:15004,1,"Les Madeleines",48.94118,2.875445,0,0,OIF:SA:47:14874,Europe/Paris,,OIF, +OIF:SP:47:15005,1,"Les Fortes Terres",48.938897,2.875544,0,0,OIF:SA:47:15005,Europe/Paris,,OIF, +OIF:SP:47:15006,1,"Les Fortes Terres",48.938897,2.875544,0,0,OIF:SA:47:15005,Europe/Paris,,OIF, +OIF:SP:47:15007,1,"Les Buttes aux Lièvres",48.940114,2.876635,0,0,OIF:SA:47:15007,Europe/Paris,,OIF, +OIF:SP:47:15008,1,"Les Buttes aux Lièvres",48.940161,2.878258,0,0,OIF:SA:47:15007,Europe/Paris,,OIF, +OIF:SP:47:15015,1,"Église",49.039897,2.807734,0,0,OIF:SA:47:15015,Europe/Paris,,OIF, +OIF:SP:47:15016,1,"Église",49.039897,2.807734,0,0,OIF:SA:47:15015,Europe/Paris,,OIF, +OIF:SP:47:15018,1,"Gare de Roissy - Pôle RER - Quai G3",49.010784,2.559153,0,0,OIF:SA:8727146,Europe/Paris,,OIF, +OIF:SP:47:15019,1,"Vide Arpents",48.963506,2.904039,0,0,OIF:SA:47:15019,Europe/Paris,,OIF, +OIF:SP:47:15022,1,"Foch Turgot",48.885855,2.834013,0,0,OIF:SA:47:15022,Europe/Paris,,OIF, +OIF:SP:47:15023,1,"Foch Turgot",48.885846,2.834027,0,0,OIF:SA:47:15022,Europe/Paris,,OIF, +OIF:SP:47:15024,1,"Foch Galliéni",48.888442,2.830031,0,0,OIF:SA:47:15024,Europe/Paris,,OIF, +OIF:SP:47:15025,1,"Foch Galliéni",48.888433,2.830058,0,0,OIF:SA:47:15024,Europe/Paris,,OIF, +OIF:SP:47:15026,1,"Collège",48.883164,2.845516,0,0,OIF:SA:47:15026,Europe/Paris,,OIF, +OIF:SP:47:15027,1,"Église",48.881698,3.000932,0,0,OIF:SA:47:15027,Europe/Paris,,OIF, +OIF:SP:47:15028,1,"Église",48.881689,3.000987,0,0,OIF:SA:47:15027,Europe/Paris,,OIF, +OIF:SP:47:15029,1,"Mairie",48.883192,2.861719,0,0,OIF:SA:47:15029,Europe/Paris,,OIF, +OIF:SP:47:15030,1,"Mairie",48.883165,2.86176,0,0,OIF:SA:47:15029,Europe/Paris,,OIF, +OIF:SP:47:15031,1,"Jean Renoir",48.975636,2.871381,0,0,OIF:SA:47:15031,Europe/Paris,,OIF, +OIF:SP:47:15032,1,"René Descartes",48.975296,2.860852,0,0,OIF:SA:47:15032,Europe/Paris,,OIF, +OIF:SP:47:15033,1,"Condorcet",48.975041,2.861655,0,0,OIF:SA:47:15033,Europe/Paris,,OIF, +OIF:SP:47:15034,1,"Santa Fé",48.870096,2.794693,0,0,OIF:SA:47:15034,Europe/Paris,,OIF, +OIF:SP:47:15035,1,"Séquoia Lodge",48.870096,2.794693,0,0,OIF:SA:47:15035,Europe/Paris,,OIF, +OIF:SP:47:15036,1,"Parking Nord",48.878946,2.781159,0,0,OIF:SA:47:15036,Europe/Paris,,OIF, +OIF:SP:47:15037,1,"Parking Nord",48.878946,2.781159,0,0,OIF:SA:47:15036,Europe/Paris,,OIF, +OIF:SP:47:15039,1,"Gare RER / Val d'Europe - Quai 7",48.854806,2.773543,0,0,OIF:SA:8773006,Europe/Paris,,OIF, +OIF:SP:47:15040,1,"ZAC du Centre",48.866705,2.811243,0,0,OIF:SA:47:15040,Europe/Paris,,OIF, +OIF:SP:47:15041,1,"ZAC du Centre",48.866705,2.811243,0,0,OIF:SA:47:15040,Europe/Paris,,OIF, +OIF:SP:47:15042,1,"La Boiserie",48.86222,2.817999,0,0,OIF:SA:47:15042,Europe/Paris,,OIF, +OIF:SP:47:15043,1,"La Boiserie",48.86222,2.817999,0,0,OIF:SA:47:15042,Europe/Paris,,OIF, +OIF:SP:47:15049,1,"Fontaine Fleurie",48.894716,2.798441,0,0,OIF:SA:47:15049,Europe/Paris,,OIF, +OIF:SP:47:15050,1,"Aulnoy",48.896361,2.79836,0,0,OIF:SA:47:15050,Europe/Paris,,OIF, +OIF:SP:47:15051,1,"Aulnoy",48.896361,2.79836,0,0,OIF:SA:47:15050,Europe/Paris,,OIF, +OIF:SP:47:15053,1,"Suzanne Aubry",48.892512,2.794333,0,0,OIF:SA:47:15053,Europe/Paris,,OIF, +OIF:SP:47:15054,1,"Base de Loisir",48.920829,2.734742,0,0,OIF:SA:47:15054,Europe/Paris,,OIF, +OIF:SP:47:15057,1,"Mairie",48.917264,2.762547,0,0,OIF:SA:47:15057,Europe/Paris,,OIF, +OIF:SP:47:15058,1,"Mairie",48.917245,2.762628,0,0,OIF:SA:47:15057,Europe/Paris,,OIF, +OIF:SP:47:15059,1,"Les Saisons de Meaux - RD5",48.956999,2.862823,0,0,OIF:SA:47:15059,Europe/Paris,,OIF, +OIF:SP:47:15060,1,"P.A.P.M. Sud",48.948938,2.862795,0,0,OIF:SA:47:15060,Europe/Paris,,OIF, +OIF:SP:47:15061,1,"Institut des Métiers",48.952654,2.863843,0,0,OIF:SA:47:15061,Europe/Paris,,OIF, +OIF:SP:47:15062,1,"Institut des Métiers",48.952645,2.863856,0,0,OIF:SA:47:15061,Europe/Paris,,OIF, +OIF:SP:47:15063,1,"Rue des Prés",48.94168,2.803785,0,0,OIF:SA:47:15063,Europe/Paris,,OIF, +OIF:SP:47:15064,1,"Stade",48.891462,2.825549,0,0,OIF:SA:8711640,Europe/Paris,,OIF, +OIF:SP:47:15065,1,"Stade",48.891462,2.825562,0,0,OIF:SA:8711640,Europe/Paris,,OIF, +OIF:SP:47:15066,1,"L'Ange Gardien",48.977939,3.143063,0,0,OIF:SA:47:15066,Europe/Paris,,OIF, +OIF:SP:47:15067,1,"L'Ange Gardien",48.977921,3.143103,0,0,OIF:SA:47:15066,Europe/Paris,,OIF, +OIF:SP:47:15068,1,"Touarte",48.895596,2.793828,0,0,OIF:SA:47:15068,Europe/Paris,,OIF, +OIF:SP:47:15069,1,"Cité Technique",48.955626,2.864596,0,0,OIF:SA:47:15069,Europe/Paris,,OIF, +OIF:SP:47:15070,1,"Cité Technique",48.955635,2.864569,0,0,OIF:SA:47:15069,Europe/Paris,,OIF, +OIF:SP:47:15071,1,"Les Saisons de Meaux",48.958492,2.862756,0,0,OIF:SA:47:15071,Europe/Paris,,OIF, +OIF:SP:47:15072,1,"Pyramide",49.022062,3.034901,0,0,OIF:SA:47:15072,Europe/Paris,,OIF, +OIF:SP:47:15073,1,"Château d'Eau",49.074076,3.023977,0,0,OIF:SA:47:14773,Europe/Paris,,OIF, +OIF:SP:47:1527,1,"Claires Fontaines",48.898519,2.846539,0,0,OIF:SA:47:1527,Europe/Paris,,OIF, +OIF:SP:47:1528,1,"Claires Fontaines",48.898252,2.84591,0,0,OIF:SA:47:1527,Europe/Paris,,OIF, +OIF:SP:47:1529,1,"Les Grandes Pièces",48.896407,2.840221,0,0,OIF:SA:47:1529,Europe/Paris,,OIF, +OIF:SP:47:1530,1,"Les Grandes Pièces",48.896497,2.840086,0,0,OIF:SA:47:1529,Europe/Paris,,OIF, +OIF:SP:47:1534,1,"Village",48.897912,2.830571,0,0,OIF:SA:47:1534,Europe/Paris,,OIF, +OIF:SP:47:1535,1,"Église",49.005122,2.973982,0,0,OIF:SA:47:1535,Europe/Paris,,OIF, +OIF:SP:47:1536,1,"Église",49.00513,2.974119,0,0,OIF:SA:47:1535,Europe/Paris,,OIF, +OIF:SP:47:1537,1,"Le Gué à Tresmes",49.019745,2.963436,0,0,OIF:SA:47:14913,Europe/Paris,,OIF, +OIF:SP:47:1538,1,"Le Gué à Tresmes",49.019934,2.96322,0,0,OIF:SA:47:14913,Europe/Paris,,OIF, +OIF:SP:47:1539,1,"Mairie",49.006837,2.974153,0,0,OIF:SA:47:1539,Europe/Paris,,OIF, +OIF:SP:47:1540,1,"Mairie",49.006926,2.974346,0,0,OIF:SA:47:1539,Europe/Paris,,OIF, +OIF:SP:47:1541,1,"Place du Perchet",49.008598,2.975842,0,0,OIF:SA:47:1541,Europe/Paris,,OIF, +OIF:SP:47:1542,1,"Place du Perchet",49.00865,2.976198,0,0,OIF:SA:47:1541,Europe/Paris,,OIF, +OIF:SP:47:1547,1,"Villers les Rigault / Rue des Buttes",49.00243,2.996268,0,0,OIF:SA:47:1547,Europe/Paris,,OIF, +OIF:SP:47:1549,1,"Villers les Rigault / Rue du Grand Voyeux",49.001085,2.999091,0,0,OIF:SA:47:1549,Europe/Paris,,OIF, +OIF:SP:47:1558,1,"Résidence des Pommiers",48.88734,2.856732,0,0,OIF:SA:47:1558,Europe/Paris,,OIF, +OIF:SP:47:1559,1,"Résidence des Pommiers",48.887832,2.857214,0,0,OIF:SA:47:1558,Europe/Paris,,OIF, +OIF:SP:47:1560,1,"Centre",49.070332,3.125425,0,0,OIF:SA:47:1560,Europe/Paris,,OIF, +OIF:SP:47:1561,1,"Centre",49.070459,3.125235,0,0,OIF:SA:47:1560,Europe/Paris,,OIF, +OIF:SP:47:1562,1,"Certigny",49.071413,3.102846,0,0,OIF:SA:47:14926,Europe/Paris,,OIF, +OIF:SP:47:1563,1,"Certigny",49.070978,3.103401,0,0,OIF:SA:47:14926,Europe/Paris,,OIF, +OIF:SP:47:1565,1,"Hervilliers",49.091785,3.130309,0,0,OIF:SA:47:14921,Europe/Paris,,OIF, +OIF:SP:47:1566,1,"Vaux",49.10089,3.132775,0,0,OIF:SA:47:14920,Europe/Paris,,OIF, +OIF:SP:47:1572,1,"Mairie",48.891174,2.932333,0,0,OIF:SA:47:1572,Europe/Paris,,OIF, +OIF:SP:47:1573,1,"Mairie",48.89119,2.93266,0,0,OIF:SA:47:1572,Europe/Paris,,OIF, +OIF:SP:47:1651,1,"École Francis et Odette Teisseyre",48.897904,2.789677,0,0,OIF:SA:47:1651,Europe/Paris,,OIF, +OIF:SP:47:1653,1,"Fontaine Fleurie",48.894698,2.798441,0,0,OIF:SA:47:15049,Europe/Paris,,OIF, +OIF:SP:47:1655,1,"Mairie",48.891346,2.793504,0,0,OIF:SA:47:1655,Europe/Paris,,OIF, +OIF:SP:47:1657,1,"Marais",48.897805,2.792007,0,0,OIF:SA:47:14812,Europe/Paris,,OIF, +OIF:SP:47:1659,1,"Molveaux",48.902158,2.795863,0,0,OIF:SA:47:1659,Europe/Paris,,OIF, +OIF:SP:47:1660,1,"Molveaux",48.902203,2.795931,0,0,OIF:SA:47:1659,Europe/Paris,,OIF, +OIF:SP:47:1661,1,"Oustal",48.903706,2.802311,0,0,OIF:SA:47:1661,Europe/Paris,,OIF, +OIF:SP:47:1665,1,"Pierres",48.901065,2.79265,0,0,OIF:SA:47:1665,Europe/Paris,,OIF, +OIF:SP:47:1666,1,"Pierres",48.90119,2.792801,0,0,OIF:SA:47:1665,Europe/Paris,,OIF, +OIF:SP:47:1669,1,"Tamaris",48.893285,2.796438,0,0,OIF:SA:47:1669,Europe/Paris,,OIF, +OIF:SP:47:1671,1,"Touarte",48.895534,2.793732,0,0,OIF:SA:47:15068,Europe/Paris,,OIF, +OIF:SP:47:1732,1,"Du Chêne",48.85975,2.852015,0,0,OIF:SA:47:1732,Europe/Paris,,OIF, +OIF:SP:47:1734,1,"Mairie",48.862824,2.854007,0,0,OIF:SA:47:1734,Europe/Paris,,OIF, +OIF:SP:47:1738,1,"Rond-Point des 4 Vents",48.856908,2.858688,0,0,OIF:SA:47:1738,Europe/Paris,,OIF, +OIF:SP:47:1739,1,"Rond-Point des 4 Vents",48.856997,2.858812,0,0,OIF:SA:47:1738,Europe/Paris,,OIF, +OIF:SP:47:1740,1,"Dainville",48.859771,2.863662,0,0,OIF:SA:47:1740,Europe/Paris,,OIF, +OIF:SP:47:1741,1,"Dainville",48.860057,2.864182,0,0,OIF:SA:47:1740,Europe/Paris,,OIF, +OIF:SP:47:1742,1,"Route de Melun (RD 436)",48.862412,2.855788,0,0,OIF:SA:47:1742,Europe/Paris,,OIF, +OIF:SP:47:1743,1,"Route de Melun (RD 436)",48.862214,2.85599,0,0,OIF:SA:47:1742,Europe/Paris,,OIF, +OIF:SP:47:1744,1,"Collège Montplaisir",48.858567,2.914047,0,0,OIF:SA:47:1744,Europe/Paris,,OIF, +OIF:SP:47:1745,1,"Collège Montplaisir",48.858808,2.914472,0,0,OIF:SA:47:1744,Europe/Paris,,OIF, +OIF:SP:47:1748,1,"Gare Routière - Quai 2",48.859175,2.905295,0,0,OIF:SA:8711677,Europe/Paris,,OIF, +OIF:SP:47:1752,1,"La Chapelle",48.858446,2.925814,0,0,OIF:SA:47:1752,Europe/Paris,,OIF, +OIF:SP:47:1753,1,"La Chapelle",48.858283,2.926071,0,0,OIF:SA:47:1752,Europe/Paris,,OIF, +OIF:SP:47:1756,1,"Montbarbin",48.861202,2.906203,0,0,OIF:SA:47:1756,Europe/Paris,,OIF, +OIF:SP:47:1764,1,"Bonne Etoile",48.971229,2.870079,0,0,OIF:SA:47:1764,Europe/Paris,,OIF, +OIF:SP:47:1765,1,"Bourg",48.97889,2.877299,0,0,OIF:SA:47:1765,Europe/Paris,,OIF, +OIF:SP:47:1766,1,"Centre Commercial",48.975938,2.8661,0,0,OIF:SA:47:1766,Europe/Paris,,OIF, +OIF:SP:47:1767,1,"Centre Commercial",48.975929,2.866251,0,0,OIF:SA:47:1766,Europe/Paris,,OIF, +OIF:SP:47:1768,1,"Chaillouët",48.976298,2.861886,0,0,OIF:SA:47:1768,Europe/Paris,,OIF, +OIF:SP:47:1769,1,"Collège Georges Sand",48.979508,2.873605,0,0,OIF:SA:47:1769,Europe/Paris,,OIF, +OIF:SP:47:1770,1,"Collège Georges Sand",48.979559,2.874397,0,0,OIF:SA:47:1769,Europe/Paris,,OIF, +OIF:SP:47:1771,1,"Les Vignes",48.977544,2.872711,0,0,OIF:SA:47:1771,Europe/Paris,,OIF, +OIF:SP:47:1774,1,"Place Rostand",48.976414,2.870146,0,0,OIF:SA:47:1774,Europe/Paris,,OIF, +OIF:SP:47:1795,1,"Rue de la Commanderie",49.085579,3.076556,0,0,OIF:SA:47:1795,Europe/Paris,,OIF, +OIF:SP:47:1796,1,"Rue de la Commanderie",49.085463,3.076363,0,0,OIF:SA:47:1795,Europe/Paris,,OIF, +OIF:SP:47:1797,1,"Collège Champivert",49.090689,3.069788,0,0,OIF:SA:47:1797,Europe/Paris,,OIF, +OIF:SP:47:1798,1,"Avenue de Coulombs",49.087814,3.07849,0,0,OIF:SA:47:1798,Europe/Paris,,OIF, +OIF:SP:47:1799,1,"Avenue de Coulombs",49.087833,3.078299,0,0,OIF:SA:47:1798,Europe/Paris,,OIF, +OIF:SP:47:1800,1,"Cimetière",49.089462,3.079239,0,0,OIF:SA:47:1800,Europe/Paris,,OIF, +OIF:SP:47:1801,1,"Cimetière",49.089379,3.079579,0,0,OIF:SA:47:1800,Europe/Paris,,OIF, +OIF:SP:47:1805,1,"Fussy",49.079179,3.075356,0,0,OIF:SA:47:1805,Europe/Paris,,OIF, +OIF:SP:47:1806,1,"Gare SNCF",49.091934,3.063142,0,0,OIF:SA:8711664,Europe/Paris,,OIF, +OIF:SP:47:1808,1,"Gesvres / D 94",49.088924,3.05853,0,0,OIF:SA:47:1808,Europe/Paris,,OIF, +OIF:SP:47:1809,1,"Gesvres / D 94",49.089063,3.05793,0,0,OIF:SA:47:1808,Europe/Paris,,OIF, +OIF:SP:47:1810,1,"La Chaussée",49.108724,3.09423,0,0,OIF:SA:47:1810,Europe/Paris,,OIF, +OIF:SP:47:1811,1,"La Chaussée",49.108561,3.094473,0,0,OIF:SA:47:1810,Europe/Paris,,OIF, +OIF:SP:47:1812,1,"Mairie",49.091245,3.075761,0,0,OIF:SA:47:1812,Europe/Paris,,OIF, +OIF:SP:47:1813,1,"Mairie",49.091281,3.075817,0,0,OIF:SA:47:1812,Europe/Paris,,OIF, +OIF:SP:47:1849,1,"Chambardy",49.032118,3.160581,0,0,OIF:SA:47:1849,Europe/Paris,,OIF, +OIF:SP:47:1850,1,"Chambardy",49.032063,3.160731,0,0,OIF:SA:47:1849,Europe/Paris,,OIF, +OIF:SP:47:1852,1,"Mairie / Centre",49.039592,3.159607,0,0,OIF:SA:47:1852,Europe/Paris,,OIF, +OIF:SP:47:1853,1,"Mairie / Centre",49.039456,3.159837,0,0,OIF:SA:47:1852,Europe/Paris,,OIF, +OIF:SP:47:1888,1,"Douy",49.067224,2.881847,0,0,OIF:SA:47:1888,Europe/Paris,,OIF, +OIF:SP:47:1889,1,"Douy",49.067125,2.881818,0,0,OIF:SA:47:1888,Europe/Paris,,OIF, +OIF:SP:47:1894,1,"La Ramée",49.056511,2.87003,0,0,OIF:SA:47:1894,Europe/Paris,,OIF, +OIF:SP:47:1895,1,"La Ramée",49.056653,2.870537,0,0,OIF:SA:47:1894,Europe/Paris,,OIF, +OIF:SP:47:1929,1,"Avenue Joffre",48.895781,2.817547,0,0,OIF:SA:47:1929,Europe/Paris,,OIF, +OIF:SP:47:1930,1,"Avenue Joffre",48.895455,2.81828,0,0,OIF:SA:47:1929,Europe/Paris,,OIF, +OIF:SP:47:1931,1,"Beaux Regards",48.908076,2.806413,0,0,OIF:SA:47:1931,Europe/Paris,,OIF, +OIF:SP:47:1933,1,"Champs Forts Cézanne",48.888494,2.808307,0,0,OIF:SA:47:1933,Europe/Paris,,OIF, +OIF:SP:47:1934,1,"Champs Forts Cézanne",48.888547,2.808431,0,0,OIF:SA:47:1933,Europe/Paris,,OIF, +OIF:SP:47:1935,1,"Champs Forts Montaigne",48.892855,2.809874,0,0,OIF:SA:47:1935,Europe/Paris,,OIF, +OIF:SP:47:1936,1,"Champs Forts Montaigne",48.892918,2.809983,0,0,OIF:SA:47:1935,Europe/Paris,,OIF, +OIF:SP:47:1937,1,"Champs Forts Péguy",48.890335,2.810737,0,0,OIF:SA:47:1937,Europe/Paris,,OIF, +OIF:SP:47:1938,1,"Champs Forts Péguy",48.890407,2.810833,0,0,OIF:SA:47:1937,Europe/Paris,,OIF, +OIF:SP:47:1943,1,"Collège Louis Braille",48.896766,2.804989,0,0,OIF:SA:47:1943,Europe/Paris,,OIF, +OIF:SP:47:1945,1,"Gare SNCF",48.903499,2.811484,0,0,OIF:SA:8711632,Europe/Paris,,OIF, +OIF:SP:47:1946,1,"Gare SNCF",48.903671,2.811131,0,0,OIF:SA:8711632,Europe/Paris,,OIF, +OIF:SP:47:1947,1,"Le Morin",48.908438,2.814788,0,0,OIF:SA:47:1947,Europe/Paris,,OIF, +OIF:SP:47:1948,1,"Le Morin",48.909928,2.815102,0,0,OIF:SA:47:1947,Europe/Paris,,OIF, +OIF:SP:47:1949,1,"Mairie",48.901148,2.812812,0,0,OIF:SA:47:1949,Europe/Paris,,OIF, +OIF:SP:47:1953,1,"Place de l'Europe",48.900547,2.812629,0,0,OIF:SA:47:1953,Europe/Paris,,OIF, +OIF:SP:47:1965,1,"Croix Verte",49.030836,2.933163,0,0,OIF:SA:47:14910,Europe/Paris,,OIF, +OIF:SP:47:1966,1,"Route Nationale",49.035407,2.933694,0,0,OIF:SA:47:14909,Europe/Paris,,OIF, +OIF:SP:47:1967,1,"Rue Maréchal",49.033702,2.931529,0,0,OIF:SA:47:1967,Europe/Paris,,OIF, +OIF:SP:47:1968,1,"Rue Maréchal",49.033836,2.931585,0,0,OIF:SA:47:1967,Europe/Paris,,OIF, +OIF:SP:47:2061,1,"Angle Glaize / Roussel",48.959529,3.120817,0,0,OIF:SA:47:2061,Europe/Paris,,OIF, +OIF:SP:47:2065,1,"Boulevard du 8 Mai 1945",48.949719,3.131011,0,0,OIF:SA:47:14923,Europe/Paris,,OIF, +OIF:SP:47:2069,1,"Bécart",48.962314,3.133156,0,0,OIF:SA:47:2069,Europe/Paris,,OIF, +OIF:SP:47:2070,1,"Bécart",48.961466,3.132311,0,0,OIF:SA:47:2069,Europe/Paris,,OIF, +OIF:SP:47:2071,1,"Bécart / RN 3",48.96201,3.132961,0,0,OIF:SA:47:2069,Europe/Paris,,OIF, +OIF:SP:47:2072,1,"Bécart / RN 3",48.961982,3.133097,0,0,OIF:SA:47:2069,Europe/Paris,,OIF, +OIF:SP:47:2073,1,"Collège la Rochefoucauld",48.94289,3.136241,0,0,OIF:SA:47:2073,Europe/Paris,,OIF, +OIF:SP:47:2077,1,"Collège les Glacis",48.937609,3.12897,0,0,OIF:SA:47:2077,Europe/Paris,,OIF, +OIF:SP:47:2086,1,"Favières",48.964225,3.130974,0,0,OIF:SA:47:2086,Europe/Paris,,OIF, +OIF:SP:47:2087,1,"Favières",48.964217,3.130783,0,0,OIF:SA:47:2086,Europe/Paris,,OIF, +OIF:SP:47:2088,1,"Gare SNCF",48.950631,3.125035,0,0,OIF:SA:8711651,Europe/Paris,,OIF, +OIF:SP:47:2092,1,"La Pièce aux Écus",48.94096,3.134602,0,0,OIF:SA:47:2092,Europe/Paris,,OIF, +OIF:SP:47:2094,1,"École Fauvet",48.96081,3.124125,0,0,OIF:SA:47:2094,Europe/Paris,,OIF, +OIF:SP:47:2095,1,"École Fauvet",48.960836,3.124303,0,0,OIF:SA:47:2094,Europe/Paris,,OIF, +OIF:SP:47:2098,1,"Les Bondons",48.949511,3.147205,0,0,OIF:SA:47:2098,Europe/Paris,,OIF, +OIF:SP:47:2100,1,"Les Côtes",48.950487,3.141162,0,0,OIF:SA:47:2100,Europe/Paris,,OIF, +OIF:SP:47:2116,1,"Morintru du Haut",48.956543,3.108721,0,0,OIF:SA:47:2116,Europe/Paris,,OIF, +OIF:SP:47:2117,1,"Morintru du Haut",48.959466,3.113992,0,0,OIF:SA:47:2116,Europe/Paris,,OIF, +OIF:SP:47:2120,1,"Quai Planson",48.948695,3.132347,0,0,OIF:SA:47:2120,Europe/Paris,,OIF, +OIF:SP:47:2121,1,"Quai Planson",48.948695,3.132278,0,0,OIF:SA:47:2120,Europe/Paris,,OIF, +OIF:SP:47:2122,1,"Résidence de la Plaine",48.960509,3.119412,0,0,OIF:SA:47:2122,Europe/Paris,,OIF, +OIF:SP:47:2123,1,"Résidence de la Plaine",48.960655,3.119059,0,0,OIF:SA:47:2122,Europe/Paris,,OIF, +OIF:SP:47:2125,1,"Résidence des Moulins",48.949836,3.135079,0,0,OIF:SA:47:2125,Europe/Paris,,OIF, +OIF:SP:47:2131,1,"Montmirail",48.941425,3.13083,0,0,OIF:SA:47:2131,Europe/Paris,,OIF, +OIF:SP:47:2134,1,"Village de la Noue",48.949215,3.143257,0,0,OIF:SA:47:14658,Europe/Paris,,OIF, +OIF:SP:47:2135,1,"ZI Intermarché",48.944417,3.11876,0,0,OIF:SA:47:2135,Europe/Paris,,OIF, +OIF:SP:47:2262,1,"Brinches",48.937508,2.962973,0,0,OIF:SA:47:2262,Europe/Paris,,OIF, +OIF:SP:47:2263,1,"Brinches",48.937419,2.962836,0,0,OIF:SA:47:2262,Europe/Paris,,OIF, +OIF:SP:47:2264,1,"Centre",48.937568,2.937464,0,0,OIF:SA:47:2264,Europe/Paris,,OIF, +OIF:SP:47:2265,1,"Centre",48.937496,2.937368,0,0,OIF:SA:47:2264,Europe/Paris,,OIF, +OIF:SP:47:2266,1,"Les Côteaux",48.940004,2.937383,0,0,OIF:SA:47:2266,Europe/Paris,,OIF, +OIF:SP:47:2267,1,"Les Côteaux",48.940326,2.937673,0,0,OIF:SA:47:2266,Europe/Paris,,OIF, +OIF:SP:47:2282,1,"Allée des Noyers",48.997318,2.954001,0,0,OIF:SA:47:2282,Europe/Paris,,OIF, +OIF:SP:47:2283,1,"Château",48.992872,2.941302,0,0,OIF:SA:47:2283,Europe/Paris,,OIF, +OIF:SP:47:2284,1,"Mairie",48.993541,2.94568,0,0,OIF:SA:47:2284,Europe/Paris,,OIF, +OIF:SP:47:2285,1,"Mairie",48.993765,2.945846,0,0,OIF:SA:47:2284,Europe/Paris,,OIF, +OIF:SP:47:2286,1,"Résidence de la Marne",48.993747,2.956389,0,0,OIF:SA:47:2286,Europe/Paris,,OIF, +OIF:SP:47:2288,1,"Route de Trilport",48.989908,2.942796,0,0,OIF:SA:47:2288,Europe/Paris,,OIF, +OIF:SP:47:2289,1,"Route de Trilport",48.98989,2.942742,0,0,OIF:SA:47:2288,Europe/Paris,,OIF, +OIF:SP:47:2290,1,"Croisement",49.05528,3.16255,0,0,OIF:SA:47:2290,Europe/Paris,,OIF, +OIF:SP:47:2291,1,"Croisement",49.055418,3.162074,0,0,OIF:SA:47:2290,Europe/Paris,,OIF, +OIF:SP:47:2496,1,"Centre",48.900985,3.307434,0,0,OIF:SA:47:2496,Europe/Paris,,OIF, +OIF:SP:47:2497,1,"Centre",48.898946,3.308418,0,0,OIF:SA:47:2496,Europe/Paris,,OIF, +OIF:SP:47:2500,1,"Replonges",48.907596,3.329782,0,0,OIF:SA:47:2500,Europe/Paris,,OIF, +OIF:SP:47:2501,1,"Replonges",48.907593,3.33015,0,0,OIF:SA:47:2500,Europe/Paris,,OIF, +OIF:SP:47:2519,1,"Briquetterie",49.003826,3.015026,0,0,OIF:SA:47:2519,Europe/Paris,,OIF, +OIF:SP:47:2520,1,"Briquetterie",49.003775,3.014575,0,0,OIF:SA:47:2519,Europe/Paris,,OIF, +OIF:SP:47:2521,1,"Centre",48.998871,3.004472,0,0,OIF:SA:47:2521,Europe/Paris,,OIF, +OIF:SP:47:2522,1,"Centre",48.99906,3.004419,0,0,OIF:SA:47:2521,Europe/Paris,,OIF, +OIF:SP:47:2529,1,"Mairie",48.911298,2.827522,0,0,OIF:SA:47:2529,Europe/Paris,,OIF, +OIF:SP:47:2530,1,"Mairie",48.911438,2.826296,0,0,OIF:SA:47:2529,Europe/Paris,,OIF, +OIF:SP:47:2533,1,"Rue Pât des Vignes",48.912978,2.81652,0,0,OIF:SA:47:2533,Europe/Paris,,OIF, +OIF:SP:47:2534,1,"Rue Pât des Vignes",48.912468,2.816148,0,0,OIF:SA:47:2533,Europe/Paris,,OIF, +OIF:SP:47:2535,1,"Tourneville",48.914964,2.814507,0,0,OIF:SA:47:2535,Europe/Paris,,OIF, +OIF:SP:47:2536,1,"Tourneville",48.91499,2.814603,0,0,OIF:SA:47:2535,Europe/Paris,,OIF, +OIF:SP:47:2542,1,"De Gaulle",48.91834,2.760592,0,0,OIF:SA:47:2542,Europe/Paris,,OIF, +OIF:SP:47:2543,1,"École Jacques-Yves Coustaud",48.91817,2.762813,0,0,OIF:SA:47:2543,Europe/Paris,,OIF, +OIF:SP:47:2544,1,"École Jacques-Yves Coustaud",48.918162,2.762636,0,0,OIF:SA:47:2543,Europe/Paris,,OIF, +OIF:SP:47:2550,1,"Mairie / D3",48.991425,3.054876,0,0,OIF:SA:47:2550,Europe/Paris,,OIF, +OIF:SP:47:2551,1,"Mairie / D3",48.992122,3.055514,0,0,OIF:SA:47:2550,Europe/Paris,,OIF, +OIF:SP:47:2578,1,"Courcelles sous Jouarre",48.937453,3.14688,0,0,OIF:SA:47:2578,Europe/Paris,,OIF, +OIF:SP:47:2579,1,"Courcelles sous Jouarre",48.937445,3.146744,0,0,OIF:SA:47:2578,Europe/Paris,,OIF, +OIF:SP:47:2586,1,"Gouffre du Biercy",48.91849,3.157248,0,0,OIF:SA:47:2586,Europe/Paris,,OIF, +OIF:SP:47:2587,1,"Gouffre du Biercy",48.918651,3.157428,0,0,OIF:SA:47:2586,Europe/Paris,,OIF, +OIF:SP:47:2596,1,"Vanry",48.931253,3.150603,0,0,OIF:SA:47:2596,Europe/Paris,,OIF, +OIF:SP:47:2597,1,"Vanry",48.931611,3.150813,0,0,OIF:SA:47:2596,Europe/Paris,,OIF, +OIF:SP:47:2747,1,"Avenue Charles de Gaulle",48.903653,2.778303,0,0,OIF:SA:47:2747,Europe/Paris,,OIF, +OIF:SP:47:2749,1,"École Marcel Pagnol",48.90964,2.782799,0,0,OIF:SA:47:2749,Europe/Paris,,OIF, +OIF:SP:47:2750,1,"École Marcel Pagnol",48.909576,2.783112,0,0,OIF:SA:47:2749,Europe/Paris,,OIF, +OIF:SP:47:2751,1,"François de la Chapelle",48.905808,2.793264,0,0,OIF:SA:47:2751,Europe/Paris,,OIF, +OIF:SP:47:2752,1,"François de la Chapelle",48.905791,2.793073,0,0,OIF:SA:47:2751,Europe/Paris,,OIF, +OIF:SP:47:2753,1,"Mairie",48.908373,2.780293,0,0,OIF:SA:47:2753,Europe/Paris,,OIF, +OIF:SP:47:2754,1,"Mairie",48.908319,2.780306,0,0,OIF:SA:47:2753,Europe/Paris,,OIF, +OIF:SP:47:2843,1,"Centre (Saint-Albert)",49.024619,3.023375,0,0,OIF:SA:47:2843,Europe/Paris,,OIF, +OIF:SP:47:2849,1,"Chemin Noir / Intermarché",49.026466,3.02247,0,0,OIF:SA:47:14608,Europe/Paris,,OIF, +OIF:SP:47:2850,1,"Collège Camille Saint-Saëns",49.029914,3.014999,0,0,OIF:SA:47:2850,Europe/Paris,,OIF, +OIF:SP:47:2851,1,"Collège Camille Saint-Saëns",49.029996,3.014932,0,0,OIF:SA:47:2850,Europe/Paris,,OIF, +OIF:SP:47:2852,1,"Échampeu",49.03522,3.026905,0,0,OIF:SA:47:2852,Europe/Paris,,OIF, +OIF:SP:47:2853,1,"Échampeu",49.03521,3.027178,0,0,OIF:SA:47:2852,Europe/Paris,,OIF, +OIF:SP:47:2854,1,"Guillaume Apollinaire",49.03078,3.022322,0,0,OIF:SA:47:2854,Europe/Paris,,OIF, +OIF:SP:47:2855,1,"Guillaume Apollinaire",49.030726,3.022321,0,0,OIF:SA:47:2854,Europe/Paris,,OIF, +OIF:SP:47:2856,1,"Gare SNCF",49.022072,3.031758,0,0,OIF:SA:8711663,Europe/Paris,,OIF, +OIF:SP:47:2860,1,"Mairie",49.025157,3.026552,0,0,OIF:SA:47:2860,Europe/Paris,,OIF, +OIF:SP:47:2861,1,"Mairie",49.025065,3.027015,0,0,OIF:SA:47:2860,Europe/Paris,,OIF, +OIF:SP:47:2862,1,"Maladrerie",49.019081,3.029873,0,0,OIF:SA:47:2862,Europe/Paris,,OIF, +OIF:SP:47:2865,1,"École Maternelle (Bellevue)",49.029912,3.018552,0,0,OIF:SA:47:2865,Europe/Paris,,OIF, +OIF:SP:47:2866,1,"École Maternelle (Bellevue)",49.029965,3.018717,0,0,OIF:SA:47:2865,Europe/Paris,,OIF, +OIF:SP:47:2872,1,"Place Harouard",49.025133,3.019829,0,0,OIF:SA:47:2872,Europe/Paris,,OIF, +OIF:SP:47:2874,1,"Résidence le Menton",49.029457,3.01334,0,0,OIF:SA:47:2874,Europe/Paris,,OIF, +OIF:SP:47:2875,1,"Résidence le Menton",49.029414,3.012902,0,0,OIF:SA:47:2874,Europe/Paris,,OIF, +OIF:SP:47:2876,1,"Route d'Ocquerre",49.029466,3.036695,0,0,OIF:SA:47:2876,Europe/Paris,,OIF, +OIF:SP:47:2877,1,"Route d'Ocquerre",49.029964,3.039107,0,0,OIF:SA:47:2876,Europe/Paris,,OIF, +OIF:SP:47:2938,1,"RD 402",48.973025,3.177961,0,0,OIF:SA:47:2938,Europe/Paris,,OIF, +OIF:SP:47:2939,1,"RD 402",48.97307,3.177826,0,0,OIF:SA:47:2938,Europe/Paris,,OIF, +OIF:SP:47:2940,1,"Courtaron / Centre",48.975736,3.170674,0,0,OIF:SA:47:2940,Europe/Paris,,OIF, +OIF:SP:47:2941,1,"Courtaron / Centre",48.975644,3.170959,0,0,OIF:SA:47:2940,Europe/Paris,,OIF, +OIF:SP:47:2944,1,"Mairie",48.971853,3.187334,0,0,OIF:SA:47:2944,Europe/Paris,,OIF, +OIF:SP:47:2945,1,"Mairie",48.972606,3.187565,0,0,OIF:SA:47:2944,Europe/Paris,,OIF, +OIF:SP:47:2948,1,"La Mare Houleuse",48.860618,2.809634,0,0,OIF:SA:47:2948,Europe/Paris,,OIF, +OIF:SP:47:2949,1,"La Mare Houleuse",48.860916,2.809364,0,0,OIF:SA:47:2948,Europe/Paris,,OIF, +OIF:SP:47:2976,1,"Église",49.036484,2.877491,0,0,OIF:SA:47:2976,Europe/Paris,,OIF, +OIF:SP:47:2977,1,"Église",49.036233,2.877338,0,0,OIF:SA:47:2976,Europe/Paris,,OIF, +OIF:SP:47:2984,1,"Carnot",48.925119,2.859498,0,0,OIF:SA:47:2984,Europe/Paris,,OIF, +OIF:SP:47:2986,1,"Cimetière",48.93129,2.862316,0,0,OIF:SA:47:14478,Europe/Paris,,OIF, +OIF:SP:47:2988,1,"Clos Godet",48.941728,2.875505,0,0,OIF:SA:47:2988,Europe/Paris,,OIF, +OIF:SP:47:2989,1,"Clos Godet",48.942055,2.87675,0,0,OIF:SA:47:2988,Europe/Paris,,OIF, +OIF:SP:47:2993,1,"Les Lignères",48.912312,2.853383,0,0,OIF:SA:47:2993,Europe/Paris,,OIF, +OIF:SP:47:2995,1,"Les Nolongues",48.923109,2.856737,0,0,OIF:SA:47:2995,Europe/Paris,,OIF, +OIF:SP:47:2996,1,"Les Nolongues",48.923279,2.856848,0,0,OIF:SA:47:2995,Europe/Paris,,OIF, +OIF:SP:47:2997,1,"Les Sablons - Clinique Saint-Faron",48.940488,2.873351,0,0,OIF:SA:47:14900,Europe/Paris,,OIF, +OIF:SP:47:2998,1,"Les Vignolles",48.91743,2.854457,0,0,OIF:SA:47:2998,Europe/Paris,,OIF, +OIF:SP:47:2999,1,"Les Vignolles",48.91743,2.854553,0,0,OIF:SA:47:2998,Europe/Paris,,OIF, +OIF:SP:47:3000,1,"Les Voutes",48.936603,2.869982,0,0,OIF:SA:47:3000,Europe/Paris,,OIF, +OIF:SP:47:3001,1,"Les Voutes",48.936612,2.869982,0,0,OIF:SA:47:3000,Europe/Paris,,OIF, +OIF:SP:47:3003,1,"Mairie",48.927043,2.859341,0,0,OIF:SA:47:3003,Europe/Paris,,OIF, +OIF:SP:47:3005,1,"Pasteur Marguerite",48.92931,2.860877,0,0,OIF:SA:47:3005,Europe/Paris,,OIF, +OIF:SP:47:3007,1,"Raspail",48.924589,2.863448,0,0,OIF:SA:47:3007,Europe/Paris,,OIF, +OIF:SP:47:3037,1,"Château d'Eau",49.017345,3.030137,0,0,OIF:SA:47:3037,Europe/Paris,,OIF, +OIF:SP:47:3038,1,"Château d'Eau",49.017291,3.030122,0,0,OIF:SA:47:3037,Europe/Paris,,OIF, +OIF:SP:47:3039,1,"Lotissements de Condé",49.014685,3.033216,0,0,OIF:SA:47:3039,Europe/Paris,,OIF, +OIF:SP:47:3040,1,"Lotissements de Condé",49.014678,3.032957,0,0,OIF:SA:47:3039,Europe/Paris,,OIF, +OIF:SP:47:3042,1,"Port Courage - Coquelicot",49.017551,3.02559,0,0,OIF:SA:47:3042,Europe/Paris,,OIF, +OIF:SP:47:3043,1,"Port Courage - Coquelicot",49.017731,3.025606,0,0,OIF:SA:47:3042,Europe/Paris,,OIF, +OIF:SP:47:3055,1,"Ancien Calvaire",49.072107,3.027343,0,0,OIF:SA:47:3055,Europe/Paris,,OIF, +OIF:SP:47:3056,1,"Ancien Calvaire",49.072097,3.027439,0,0,OIF:SA:47:3055,Europe/Paris,,OIF, +OIF:SP:47:3057,1,"École Primaire",49.074237,3.025607,0,0,OIF:SA:47:3057,Europe/Paris,,OIF, +OIF:SP:47:3058,1,"École Primaire",49.073617,3.02884,0,0,OIF:SA:47:3057,Europe/Paris,,OIF, +OIF:SP:47:3059,1,"Mairie",49.073862,3.028297,0,0,OIF:SA:47:3059,Europe/Paris,,OIF, +OIF:SP:47:3060,1,"Mairie",49.074024,3.028353,0,0,OIF:SA:47:3059,Europe/Paris,,OIF, +OIF:SP:47:3061,1,"Marnoue la Poterie",49.057356,3.055532,0,0,OIF:SA:47:3061,Europe/Paris,,OIF, +OIF:SP:47:3062,1,"Marnoue la Poterie",49.057125,3.055119,0,0,OIF:SA:47:3061,Europe/Paris,,OIF, +OIF:SP:47:3063,1,"Poste",49.071312,3.02022,0,0,OIF:SA:47:3063,Europe/Paris,,OIF, +OIF:SP:47:3064,1,"Poste",49.071545,3.020264,0,0,OIF:SA:47:3063,Europe/Paris,,OIF, +OIF:SP:47:3065,1,"Vernelle",49.051922,3.04456,0,0,OIF:SA:47:3065,Europe/Paris,,OIF, +OIF:SP:47:3066,1,"Vernelle",49.052606,3.045882,0,0,OIF:SA:47:3065,Europe/Paris,,OIF, +OIF:SP:47:3067,1,"Adam de la Halle",48.954441,2.907283,0,0,OIF:SA:47:3067,Europe/Paris,,OIF, +OIF:SP:47:3068,1,"Ampère",48.959591,2.91082,0,0,OIF:SA:47:3068,Europe/Paris,,OIF, +OIF:SP:47:3069,1,"Ampère",48.959672,2.910753,0,0,OIF:SA:47:3068,Europe/Paris,,OIF, +OIF:SP:47:3070,1,"Anjou",48.951882,2.903025,0,0,OIF:SA:47:3070,Europe/Paris,,OIF, +OIF:SP:47:3072,1,"Avenue de la Victoire ZI",48.956746,2.91562,0,0,OIF:SA:47:3072,Europe/Paris,,OIF, +OIF:SP:47:3073,1,"Avenue de la Victoire ZI",48.956913,2.914584,0,0,OIF:SA:47:3072,Europe/Paris,,OIF, +OIF:SP:47:3076,1,"Avenue de Meaux",48.966773,2.921751,0,0,OIF:SA:47:3076,Europe/Paris,,OIF, +OIF:SP:47:3077,1,"Avenue de Meaux",48.966701,2.92175,0,0,OIF:SA:47:3076,Europe/Paris,,OIF, +OIF:SP:47:3078,1,"Jean Vilar / Avenue Foch",48.955475,2.893866,0,0,OIF:SA:47:3078,Europe/Paris,,OIF, +OIF:SP:47:3079,1,"Jean Vilar / 11 Novembre 1918",48.953724,2.893397,0,0,OIF:SA:47:3079,Europe/Paris,,OIF, +OIF:SP:47:3081,1,"Bâtiment F",48.946087,2.902511,0,0,OIF:SA:47:3081,Europe/Paris,,OIF, +OIF:SP:47:3083,1,"Baudelaire",48.954463,2.915621,0,0,OIF:SA:47:14606,Europe/Paris,,OIF, +OIF:SP:47:3085,1,"Bazin",48.951036,2.916361,0,0,OIF:SA:47:3085,Europe/Paris,,OIF, +OIF:SP:47:3089,1,"Beauséjour",48.969052,2.878725,0,0,OIF:SA:47:3089,Europe/Paris,,OIF, +OIF:SP:47:3094,1,"Berry",48.952177,2.9219,0,0,OIF:SA:47:3094,Europe/Paris,,OIF, +OIF:SP:47:3095,1,"Berry",48.952268,2.921751,0,0,OIF:SA:47:3094,Europe/Paris,,OIF, +OIF:SP:47:3097,1,"Bonneuil (Bon Dieu Jaune)",48.960364,2.891749,0,0,OIF:SA:47:3097,Europe/Paris,,OIF, +OIF:SP:47:3103,1,"Cité Administrative",48.955838,2.889176,0,0,OIF:SA:47:3103,Europe/Paris,,OIF, +OIF:SP:47:3106,1,"Collège Beaumarchais",48.948709,2.910645,0,0,OIF:SA:47:3106,Europe/Paris,,OIF, +OIF:SP:47:3107,1,"Collège Beaumarchais",48.947396,2.910712,0,0,OIF:SA:47:3106,Europe/Paris,,OIF, +OIF:SP:47:3108,1,"Collège Dunant",48.946312,2.896729,0,0,OIF:SA:47:3108,Europe/Paris,,OIF, +OIF:SP:47:3109,1,"Collège Dunant",48.946618,2.896609,0,0,OIF:SA:47:3108,Europe/Paris,,OIF, +OIF:SP:47:3110,1,"Collège Parc Frot",48.964916,2.873167,0,0,OIF:SA:47:3110,Europe/Paris,,OIF, +OIF:SP:47:3112,1,"Châage",48.970309,2.882737,0,0,OIF:SA:47:3112,Europe/Paris,,OIF, +OIF:SP:47:3113,1,"Châage",48.968911,2.882026,0,0,OIF:SA:47:3112,Europe/Paris,,OIF, +OIF:SP:47:3114,1,"Champs de Foire",48.953067,2.885858,0,0,OIF:SA:47:3114,Europe/Paris,,OIF, +OIF:SP:47:3116,1,"Chappe",48.951402,2.899895,0,0,OIF:SA:47:3116,Europe/Paris,,OIF, +OIF:SP:47:3117,1,"Charcot",48.946708,2.906079,0,0,OIF:SA:47:14731,Europe/Paris,,OIF, +OIF:SP:47:3118,1,"Chemin de Velours",48.965297,2.876379,0,0,OIF:SA:47:3118,Europe/Paris,,OIF, +OIF:SP:47:3120,1,"Chenonceaux",48.951575,2.905164,0,0,OIF:SA:47:3120,Europe/Paris,,OIF, +OIF:SP:47:3121,1,"Claudel",48.947454,2.900575,0,0,OIF:SA:47:14730,Europe/Paris,,OIF, +OIF:SP:47:3123,1,"Concorde",48.948584,2.910384,0,0,OIF:SA:47:3123,Europe/Paris,,OIF, +OIF:SP:47:3124,1,"Coquelicots",48.957026,2.920918,0,0,OIF:SA:47:3124,Europe/Paris,,OIF, +OIF:SP:47:3125,1,"Coquelicots",48.957098,2.920932,0,0,OIF:SA:47:3124,Europe/Paris,,OIF, +OIF:SP:47:3126,1,"Cornillon",48.95243,2.879697,0,0,OIF:SA:47:3126,Europe/Paris,,OIF, +OIF:SP:47:3127,1,"Cornillon",48.952045,2.879515,0,0,OIF:SA:47:3126,Europe/Paris,,OIF, +OIF:SP:47:3128,1,"Cornouailles",48.951557,2.90893,0,0,OIF:SA:47:3128,Europe/Paris,,OIF, +OIF:SP:47:3130,1,"Coubertin",48.95772,2.864427,0,0,OIF:SA:47:3130,Europe/Paris,,OIF, +OIF:SP:47:3132,1,"Daguerre",48.963423,2.915776,0,0,OIF:SA:47:3132,Europe/Paris,,OIF, +OIF:SP:47:3133,1,"Daguerre",48.963414,2.915694,0,0,OIF:SA:47:3132,Europe/Paris,,OIF, +OIF:SP:47:3134,1,"Descartes",48.959484,2.906929,0,0,OIF:SA:47:3134,Europe/Paris,,OIF, +OIF:SP:47:3136,1,"Docteur Dufraigne",48.953307,2.890445,0,0,OIF:SA:47:3136,Europe/Paris,,OIF, +OIF:SP:47:3137,1,"Ecluse Saint-Lazare",48.954896,2.902157,0,0,OIF:SA:47:3137,Europe/Paris,,OIF, +OIF:SP:47:3141,1,"Gambetta",48.96284,2.885088,0,0,OIF:SA:47:3141,Europe/Paris,,OIF, +OIF:SP:47:3150,1,"Gironnette",48.944581,2.898006,0,0,OIF:SA:47:14896,Europe/Paris,,OIF, +OIF:SP:47:3151,1,"Grosse Pierre",48.962217,2.897269,0,0,OIF:SA:47:3151,Europe/Paris,,OIF, +OIF:SP:47:3152,1,"Grosse Pierre",48.962495,2.8973,0,0,OIF:SA:47:3151,Europe/Paris,,OIF, +OIF:SP:47:3155,1,"Henri IV (Cinéma)",48.959147,2.882838,0,0,OIF:SA:47:3155,Europe/Paris,,OIF, +OIF:SP:47:3157,1,"Henri IV (Jardin)",48.959585,2.88332,0,0,OIF:SA:47:3157,Europe/Paris,,OIF, +OIF:SP:47:3163,1,"Hôpital",48.967212,2.884083,0,0,OIF:SA:47:3163,Europe/Paris,,OIF, +OIF:SP:47:3164,1,"8 Mai 1945 (J.Vilar)",48.953505,2.894214,0,0,OIF:SA:47:3164,Europe/Paris,,OIF, +OIF:SP:47:3167,1,"Bouvin",48.952723,2.911331,0,0,OIF:SA:47:3167,Europe/Paris,,OIF, +OIF:SP:47:3169,1,"Jean Rose",48.962175,2.879076,0,0,OIF:SA:47:3169,Europe/Paris,,OIF, +OIF:SP:47:317,1,"Place",49.103121,2.954335,0,0,OIF:SA:47:317,Europe/Paris,,OIF, +OIF:SP:47:3170,1,"Jean Rose",48.961865,2.879987,0,0,OIF:SA:47:3169,Europe/Paris,,OIF, +OIF:SP:47:3171,1,"Jean Vilar",48.954674,2.894076,0,0,OIF:SA:47:3171,Europe/Paris,,OIF, +OIF:SP:47:3172,1,"La Corniche",48.968293,2.900911,0,0,OIF:SA:47:3172,Europe/Paris,,OIF, +OIF:SP:47:3173,1,"La Corniche",48.967075,2.899997,0,0,OIF:SA:47:3172,Europe/Paris,,OIF, +OIF:SP:47:3176,1,"La Marne",48.959685,2.91366,0,0,OIF:SA:47:3176,Europe/Paris,,OIF, +OIF:SP:47:3177,1,"La Marne",48.959766,2.913606,0,0,OIF:SA:47:3176,Europe/Paris,,OIF, +OIF:SP:47:318,1,"Place",49.102986,2.954306,0,0,OIF:SA:47:317,Europe/Paris,,OIF, +OIF:SP:47:3186,1,"Les Prairiales / Parc Frot",48.966183,2.873126,0,0,OIF:SA:47:14898,Europe/Paris,,OIF, +OIF:SP:47:3187,1,"Lotissements",48.957029,2.92568,0,0,OIF:SA:47:3187,Europe/Paris,,OIF, +OIF:SP:47:3188,1,"Lotissements",48.957263,2.925588,0,0,OIF:SA:47:3187,Europe/Paris,,OIF, +OIF:SP:47:319,1,"Bourg",49.152049,2.984784,0,0,OIF:SA:47:319,Europe/Paris,,OIF, +OIF:SP:47:3192,1,"Marché",48.955264,2.879194,0,0,OIF:SA:47:3192,Europe/Paris,,OIF, +OIF:SP:47:3194,1,"Médiathèque",48.954527,2.879173,0,0,OIF:SA:47:3194,Europe/Paris,,OIF, +OIF:SP:47:3198,1,"Marronniers",48.95641,2.88794,0,0,OIF:SA:47:3198,Europe/Paris,,OIF, +OIF:SP:47:320,1,"Bourg",49.152049,2.984784,0,0,OIF:SA:47:319,Europe/Paris,,OIF, +OIF:SP:47:3202,1,"Moissan",48.958843,2.874742,0,0,OIF:SA:47:3202,Europe/Paris,,OIF, +OIF:SP:47:3205,1,"Newton",48.965537,2.907733,0,0,OIF:SA:47:3205,Europe/Paris,,OIF, +OIF:SP:47:3207,1,"Niepce",48.959743,2.916677,0,0,OIF:SA:47:3207,Europe/Paris,,OIF, +OIF:SP:47:3208,1,"Niepce",48.959842,2.91665,0,0,OIF:SA:47:3207,Europe/Paris,,OIF, +OIF:SP:47:3209,1,"Octroi (Franklin Roosevelt)",48.957271,2.895947,0,0,OIF:SA:47:14895,Europe/Paris,,OIF, +OIF:SP:47:321,1,"Église",49.158106,2.953856,0,0,OIF:SA:47:321,Europe/Paris,,OIF, +OIF:SP:47:3210,1,"Octroi (Joffre)",48.957852,2.894779,0,0,OIF:SA:47:14895,Europe/Paris,,OIF, +OIF:SP:47:3211,1,"Orgemont",48.95607,2.869855,0,0,OIF:SA:47:3211,Europe/Paris,,OIF, +OIF:SP:47:3215,1,"Pierris",48.950415,2.893894,0,0,OIF:SA:47:3215,Europe/Paris,,OIF, +OIF:SP:47:3217,1,"Pinteville",48.961922,2.875415,0,0,OIF:SA:47:3217,Europe/Paris,,OIF, +OIF:SP:47:3218,1,"Pinteville",48.962136,2.875786,0,0,OIF:SA:47:3217,Europe/Paris,,OIF, +OIF:SP:47:322,1,"Église",49.158106,2.953856,0,0,OIF:SA:47:321,Europe/Paris,,OIF, +OIF:SP:47:3221,1,"Poste Allende",48.957476,2.882834,0,0,OIF:SA:47:14607,Europe/Paris,,OIF, +OIF:SP:47:3223,1,"Poste (Marne)",48.956895,2.882132,0,0,OIF:SA:47:3223,Europe/Paris,,OIF, +OIF:SP:47:3227,1,"Rond-Point",48.951033,2.911298,0,0,OIF:SA:47:3227,Europe/Paris,,OIF, +OIF:SP:47:3229,1,"Route de Poincy",48.957342,2.936984,0,0,OIF:SA:47:3229,Europe/Paris,,OIF, +OIF:SP:47:3230,1,"Route de Poincy",48.957544,2.935976,0,0,OIF:SA:47:3229,Europe/Paris,,OIF, +OIF:SP:47:3231,1,"Lugol",48.963234,2.88138,0,0,OIF:SA:47:3231,Europe/Paris,,OIF, +OIF:SP:47:3233,1,"Sablons Bouillants",48.957824,2.9044,0,0,OIF:SA:47:3233,Europe/Paris,,OIF, +OIF:SP:47:3236,1,"Saint-Jean Bosco",48.949658,2.894213,0,0,OIF:SA:47:3236,Europe/Paris,,OIF, +OIF:SP:47:3237,1,"Vieux Moulin",48.958035,2.878432,0,0,OIF:SA:47:3237,Europe/Paris,,OIF, +OIF:SP:47:3240,1,"Zone Artisanale",48.957213,2.932083,0,0,OIF:SA:47:3240,Europe/Paris,,OIF, +OIF:SP:47:3241,1,"Zone Artisanale",48.95742,2.932044,0,0,OIF:SA:47:3240,Europe/Paris,,OIF, +OIF:SP:47:3242,1,"Zone Industrielle",48.95653,2.904522,0,0,OIF:SA:47:3242,Europe/Paris,,OIF, +OIF:SP:47:3243,1,"Zone Industrielle",48.956755,2.904443,0,0,OIF:SA:47:3242,Europe/Paris,,OIF, +OIF:SP:47:329,1,"Place",49.112724,2.919107,0,0,OIF:SA:47:329,Europe/Paris,,OIF, +OIF:SP:47:330,1,"Place",49.11267,2.919052,0,0,OIF:SA:47:329,Europe/Paris,,OIF, +OIF:SP:47:331,1,"Bourg",49.129941,3.004922,0,0,OIF:SA:47:331,Europe/Paris,,OIF, +OIF:SP:47:3315,1,"16 Route de Saint-Aulde",48.980953,3.199117,0,0,OIF:SA:47:3315,Europe/Paris,,OIF, +OIF:SP:47:3317,1,"50 Rue de Courcelles",48.975637,3.197267,0,0,OIF:SA:47:3317,Europe/Paris,,OIF, +OIF:SP:47:3318,1,"50 Rue de Courcelles",48.975824,3.197475,0,0,OIF:SA:47:3317,Europe/Paris,,OIF, +OIF:SP:47:3319,1,"85 Route de Saint-Aulde",48.989206,3.197465,0,0,OIF:SA:47:3319,Europe/Paris,,OIF, +OIF:SP:47:332,1,"Bourg",49.129861,3.004838,0,0,OIF:SA:47:331,Europe/Paris,,OIF, +OIF:SP:47:3320,1,"85 Route de Saint-Aulde",48.989376,3.197496,0,0,OIF:SA:47:3319,Europe/Paris,,OIF, +OIF:SP:47:3323,1,"Hameaux de Courcelles",48.984589,3.199614,0,0,OIF:SA:47:3323,Europe/Paris,,OIF, +OIF:SP:47:3324,1,"Hameaux de Courcelles",48.984715,3.199521,0,0,OIF:SA:47:3323,Europe/Paris,,OIF, +OIF:SP:47:3325,1,"La Brussette",48.971853,3.194761,0,0,OIF:SA:47:3325,Europe/Paris,,OIF, +OIF:SP:47:3326,1,"La Brussette",48.971657,3.194525,0,0,OIF:SA:47:3325,Europe/Paris,,OIF, +OIF:SP:47:3327,1,"Calvaire",48.965297,3.200412,0,0,OIF:SA:47:3327,Europe/Paris,,OIF, +OIF:SP:47:3328,1,"Calvaire",48.965155,3.200205,0,0,OIF:SA:47:3327,Europe/Paris,,OIF, +OIF:SP:47:3425,1,"Mairie",48.942244,2.986551,0,0,OIF:SA:47:3425,Europe/Paris,,OIF, +OIF:SP:47:3426,1,"Mairie",48.942424,2.986663,0,0,OIF:SA:47:3425,Europe/Paris,,OIF, +OIF:SP:47:3580,1,"Gare SNCF",48.890233,2.827281,0,0,OIF:SA:8711640,Europe/Paris,,OIF, +OIF:SP:47:3581,1,"Gare SNCF",48.889908,2.827578,0,0,OIF:SA:8711640,Europe/Paris,,OIF, +OIF:SP:47:3587,1,"RN 34",48.884706,2.831427,0,0,OIF:SA:47:3587,Europe/Paris,,OIF, +OIF:SP:47:3588,1,"RN 34",48.884554,2.83118,0,0,OIF:SA:47:3587,Europe/Paris,,OIF, +OIF:SP:47:3764,1,"Château",48.932997,2.890146,0,0,OIF:SA:47:3764,Europe/Paris,,OIF, +OIF:SP:47:3765,1,"Château",48.9327,2.890252,0,0,OIF:SA:47:3764,Europe/Paris,,OIF, +OIF:SP:47:3768,1,"Collot",48.919852,2.908525,0,0,OIF:SA:47:3768,Europe/Paris,,OIF, +OIF:SP:47:377,1,"Beauval / RD 936",49.109194,3.046878,0,0,OIF:SA:47:377,Europe/Paris,,OIF, +OIF:SP:47:3770,1,"Clos Benoît",48.925753,2.899957,0,0,OIF:SA:47:3770,Europe/Paris,,OIF, +OIF:SP:47:3771,1,"Clos Benoît",48.925708,2.899902,0,0,OIF:SA:47:3770,Europe/Paris,,OIF, +OIF:SP:47:3775,1,"Galliéni",48.926152,2.904885,0,0,OIF:SA:47:3775,Europe/Paris,,OIF, +OIF:SP:47:3776,1,"Galliéni",48.92579,2.905276,0,0,OIF:SA:47:3775,Europe/Paris,,OIF, +OIF:SP:47:3777,1,"La Croix",48.942389,2.884189,0,0,OIF:SA:47:3777,Europe/Paris,,OIF, +OIF:SP:47:3778,1,"La Croix",48.942156,2.884146,0,0,OIF:SA:47:3777,Europe/Paris,,OIF, +OIF:SP:47:3779,1,"La Hayette",48.94285,2.879637,0,0,OIF:SA:47:3779,Europe/Paris,,OIF, +OIF:SP:47:378,1,"Mairie",49.115411,3.06209,0,0,OIF:SA:47:378,Europe/Paris,,OIF, +OIF:SP:47:3780,1,"La Hayette",48.942762,2.879418,0,0,OIF:SA:47:3779,Europe/Paris,,OIF, +OIF:SP:47:3781,1,"La Roseraie",48.922586,2.906346,0,0,OIF:SA:47:3781,Europe/Paris,,OIF, +OIF:SP:47:3782,1,"Mairie",48.928903,2.896963,0,0,OIF:SA:47:14899,Europe/Paris,,OIF, +OIF:SP:47:3783,1,"Mairie",48.92865,2.897356,0,0,OIF:SA:47:14899,Europe/Paris,,OIF, +OIF:SP:47:3784,1,"Marcel Pagnol",48.939839,2.885608,0,0,OIF:SA:47:3784,Europe/Paris,,OIF, +OIF:SP:47:3785,1,"Marcel Pagnol",48.939966,2.885391,0,0,OIF:SA:47:3784,Europe/Paris,,OIF, +OIF:SP:47:3786,1,"Oblin",48.927397,2.894233,0,0,OIF:SA:47:3786,Europe/Paris,,OIF, +OIF:SP:47:3787,1,"Saint-Pères",48.94556,2.880703,0,0,OIF:SA:47:3787,Europe/Paris,,OIF, +OIF:SP:47:3788,1,"Saint-Pères",48.945597,2.880471,0,0,OIF:SA:47:3787,Europe/Paris,,OIF, +OIF:SP:47:3789,1,"École",48.979154,3.222625,0,0,OIF:SA:47:3789,Europe/Paris,,OIF, +OIF:SP:47:3791,1,"Jeu de Boules",48.976693,3.217586,0,0,OIF:SA:47:3791,Europe/Paris,,OIF, +OIF:SP:47:3792,1,"Jeu de Boules",48.976716,3.218119,0,0,OIF:SA:47:3791,Europe/Paris,,OIF, +OIF:SP:47:382,1,"Centre",49.108539,2.933103,0,0,OIF:SA:47:382,Europe/Paris,,OIF, +OIF:SP:47:3845,1,"CFA",49.023039,3.036936,0,0,OIF:SA:47:3845,Europe/Paris,,OIF, +OIF:SP:47:3849,1,"La Trousse",49.022337,3.065745,0,0,OIF:SA:47:3849,Europe/Paris,,OIF, +OIF:SP:47:3850,1,"La Trousse",49.022229,3.065689,0,0,OIF:SA:47:3849,Europe/Paris,,OIF, +OIF:SP:47:3851,1,"Mairie / École",49.038081,3.056918,0,0,OIF:SA:47:3851,Europe/Paris,,OIF, +OIF:SP:47:3852,1,"Mairie / École",49.038007,3.057163,0,0,OIF:SA:47:3851,Europe/Paris,,OIF, +OIF:SP:47:3854,1,"Marnoue les Moines",49.056508,3.06635,0,0,OIF:SA:47:3854,Europe/Paris,,OIF, +OIF:SP:47:3855,1,"Marnoue les Moines",49.056556,3.065968,0,0,OIF:SA:47:3854,Europe/Paris,,OIF, +OIF:SP:47:386,1,"Mairie",49.103031,2.954388,0,0,OIF:SA:47:386,Europe/Paris,,OIF, +OIF:SP:47:3860,1,"Mairie",48.904509,3.22923,0,0,OIF:SA:47:3860,Europe/Paris,,OIF, +OIF:SP:47:3861,1,"Mairie",48.904627,3.22915,0,0,OIF:SA:47:3860,Europe/Paris,,OIF, +OIF:SP:47:387,1,"Mairie",49.103112,2.954307,0,0,OIF:SA:47:386,Europe/Paris,,OIF, +OIF:SP:47:388,1,"Bourg",49.11175,3.02478,0,0,OIF:SA:47:388,Europe/Paris,,OIF, +OIF:SP:47:4002,1,"Courtesoupe",48.897484,3.058973,0,0,OIF:SA:47:4002,Europe/Paris,,OIF, +OIF:SP:47:4003,1,"Courtesoupe",48.897547,3.059001,0,0,OIF:SA:47:4002,Europe/Paris,,OIF, +OIF:SP:47:4006,1,"Montebise",48.90922,3.057827,0,0,OIF:SA:47:4006,Europe/Paris,,OIF, +OIF:SP:47:4007,1,"Montebise",48.909008,3.057156,0,0,OIF:SA:47:4006,Europe/Paris,,OIF, +OIF:SP:47:4008,1,"Place Saint-Claude",48.899065,3.039678,0,0,OIF:SA:47:4008,Europe/Paris,,OIF, +OIF:SP:47:4009,1,"Place Saint-Claude",48.899641,3.0379,0,0,OIF:SA:47:4008,Europe/Paris,,OIF, +OIF:SP:47:4019,1,"Beauval",49.039414,2.97897,0,0,OIF:SA:47:14991,Europe/Paris,,OIF, +OIF:SP:47:4020,1,"Beauval",49.039333,2.979119,0,0,OIF:SA:47:14991,Europe/Paris,,OIF, +OIF:SP:47:4021,1,"Centre Bourg",49.05779,2.98918,0,0,OIF:SA:47:4021,Europe/Paris,,OIF, +OIF:SP:47:4022,1,"Centre Bourg",49.05778,2.989399,0,0,OIF:SA:47:4021,Europe/Paris,,OIF, +OIF:SP:47:4033,1,"Mairie",48.968703,2.934713,0,0,OIF:SA:47:4033,Europe/Paris,,OIF, +OIF:SP:47:4034,1,"Mairie",48.968703,2.934795,0,0,OIF:SA:47:4033,Europe/Paris,,OIF, +OIF:SP:47:4255,1,"La Chaussée",49.045205,2.901642,0,0,OIF:SA:47:4255,Europe/Paris,,OIF, +OIF:SP:47:4256,1,"La Chaussée",49.044788,2.90243,0,0,OIF:SA:47:4255,Europe/Paris,,OIF, +OIF:SP:47:4257,1,"Mairie / Centre",49.065551,2.916551,0,0,OIF:SA:47:4257,Europe/Paris,,OIF, +OIF:SP:47:4258,1,"Mairie / Centre",49.06564,2.91673,0,0,OIF:SA:47:4257,Europe/Paris,,OIF, +OIF:SP:47:4269,1,"Braunston",48.900597,2.868821,0,0,OIF:SA:47:4269,Europe/Paris,,OIF, +OIF:SP:47:4270,1,"Braunston",48.900579,2.868684,0,0,OIF:SA:47:4269,Europe/Paris,,OIF, +OIF:SP:47:4271,1,"Demi Lune",48.897225,2.862925,0,0,OIF:SA:47:4271,Europe/Paris,,OIF, +OIF:SP:47:4272,1,"Demi Lune",48.897339,2.863594,0,0,OIF:SA:47:4271,Europe/Paris,,OIF, +OIF:SP:47:4273,1,"Feux",48.900815,2.872285,0,0,OIF:SA:47:4273,Europe/Paris,,OIF, +OIF:SP:47:4274,1,"Feux",48.900218,2.871148,0,0,OIF:SA:47:4273,Europe/Paris,,OIF, +OIF:SP:47:4275,1,"Les Roises",48.900033,2.855892,0,0,OIF:SA:47:4275,Europe/Paris,,OIF, +OIF:SP:47:4276,1,"Les Roises",48.90013,2.856329,0,0,OIF:SA:47:4275,Europe/Paris,,OIF, +OIF:SP:47:4277,1,"Mairie",48.89922,2.873169,0,0,OIF:SA:47:4277,Europe/Paris,,OIF, +OIF:SP:47:4278,1,"Mairie",48.899129,2.873372,0,0,OIF:SA:47:4277,Europe/Paris,,OIF, +OIF:SP:47:4279,1,"Marie Curie",48.897358,2.877539,0,0,OIF:SA:47:4279,Europe/Paris,,OIF, +OIF:SP:47:4280,1,"Marie Curie",48.897493,2.87739,0,0,OIF:SA:47:4279,Europe/Paris,,OIF, +OIF:SP:47:4284,1,"Place Pierre Curie",48.897384,2.877702,0,0,OIF:SA:47:4279,Europe/Paris,,OIF, +OIF:SP:47:4285,1,"René Benoît",48.900366,2.862071,0,0,OIF:SA:47:4285,Europe/Paris,,OIF, +OIF:SP:47:4286,1,"René Benoît",48.900437,2.862276,0,0,OIF:SA:47:4285,Europe/Paris,,OIF, +OIF:SP:47:4287,1,"Rue de Crécy",48.897767,2.880542,0,0,OIF:SA:47:4287,Europe/Paris,,OIF, +OIF:SP:47:4288,1,"Rue de Crécy",48.897722,2.8805,0,0,OIF:SA:47:4287,Europe/Paris,,OIF, +OIF:SP:47:4291,1,"Rue Philo",48.89774,2.886239,0,0,OIF:SA:47:4291,Europe/Paris,,OIF, +OIF:SP:47:4292,1,"Rue Philo",48.897794,2.886308,0,0,OIF:SA:47:4291,Europe/Paris,,OIF, +OIF:SP:47:4293,1,"Segy",48.895277,2.898017,0,0,OIF:SA:47:4293,Europe/Paris,,OIF, +OIF:SP:47:4294,1,"Segy",48.895258,2.898181,0,0,OIF:SA:47:4293,Europe/Paris,,OIF, +OIF:SP:47:4299,1,"ZAC Bonne Rencontre",48.90572,2.882548,0,0,OIF:SA:47:4299,Europe/Paris,,OIF, +OIF:SP:47:4300,1,"ZAC du Ternoy",48.905434,2.882285,0,0,OIF:SA:47:4299,Europe/Paris,,OIF, +OIF:SP:47:4339,1,"Mairie",48.958926,3.143872,0,0,OIF:SA:47:4339,Europe/Paris,,OIF, +OIF:SP:47:4340,1,"Mairie",48.958587,3.143417,0,0,OIF:SA:47:4339,Europe/Paris,,OIF, +OIF:SP:47:4448,1,"Église",48.96131,3.208576,0,0,OIF:SA:47:4448,Europe/Paris,,OIF, +OIF:SP:47:4449,1,"Église",48.96132,3.208426,0,0,OIF:SA:47:4448,Europe/Paris,,OIF, +OIF:SP:47:4450,1,"Gare SNCF",48.973752,3.220212,0,0,OIF:SA:8711655,Europe/Paris,,OIF, +OIF:SP:47:4454,1,"Rond-Point / Centre",48.962083,3.210991,0,0,OIF:SA:47:4454,Europe/Paris,,OIF, +OIF:SP:47:4455,1,"Rond-Point / Centre",48.962155,3.21106,0,0,OIF:SA:47:4454,Europe/Paris,,OIF, +OIF:SP:47:4456,1,"Stade",48.963891,3.216945,0,0,OIF:SA:47:4456,Europe/Paris,,OIF, +OIF:SP:47:4457,1,"Stade",48.96411,3.217713,0,0,OIF:SA:47:4456,Europe/Paris,,OIF, +OIF:SP:47:4458,1,"Bois Frémy",48.886146,3.27491,0,0,OIF:SA:47:4458,Europe/Paris,,OIF, +OIF:SP:47:4459,1,"Bois Frémy",48.886093,3.274841,0,0,OIF:SA:47:4458,Europe/Paris,,OIF, +OIF:SP:47:4460,1,"Mairie",48.875554,3.295771,0,0,OIF:SA:47:4460,Europe/Paris,,OIF, +OIF:SP:47:4461,1,"Mairie",48.875652,3.295882,0,0,OIF:SA:47:4460,Europe/Paris,,OIF, +OIF:SP:47:4488,1,"Caumont",48.996359,3.195058,0,0,OIF:SA:47:4488,Europe/Paris,,OIF, +OIF:SP:47:4489,1,"Caumont",48.996253,3.19481,0,0,OIF:SA:47:4488,Europe/Paris,,OIF, +OIF:SP:47:4490,1,"Chamoust",49.00505,3.170819,0,0,OIF:SA:47:4490,Europe/Paris,,OIF, +OIF:SP:47:4491,1,"Chamoust",49.005058,3.171051,0,0,OIF:SA:47:4490,Europe/Paris,,OIF, +OIF:SP:47:4492,1,"Croix Barrée",48.995737,3.181513,0,0,OIF:SA:47:4492,Europe/Paris,,OIF, +OIF:SP:47:4493,1,"Croix Barrée",48.99588,3.181597,0,0,OIF:SA:47:4492,Europe/Paris,,OIF, +OIF:SP:47:4494,1,"École",48.994559,3.176427,0,0,OIF:SA:47:4494,Europe/Paris,,OIF, +OIF:SP:47:4495,1,"École",48.994585,3.176659,0,0,OIF:SA:47:4494,Europe/Paris,,OIF, +OIF:SP:47:4496,1,"Les Davids",49.000883,3.161409,0,0,OIF:SA:47:4496,Europe/Paris,,OIF, +OIF:SP:47:4500,1,"Moitiébard",48.997061,3.188609,0,0,OIF:SA:47:4500,Europe/Paris,,OIF, +OIF:SP:47:4501,1,"Moitiébard",48.997155,3.188105,0,0,OIF:SA:47:4500,Europe/Paris,,OIF, +OIF:SP:47:4505,1,"Marais",48.999375,3.20053,0,0,OIF:SA:47:4505,Europe/Paris,,OIF, +OIF:SP:47:4531,1,"Champtortet",48.921215,3.1941,0,0,OIF:SA:47:4531,Europe/Paris,,OIF, +OIF:SP:47:4532,1,"Champtortet",48.921161,3.194044,0,0,OIF:SA:47:4531,Europe/Paris,,OIF, +OIF:SP:47:4533,1,"Courcelles la Roue",48.906962,3.158115,0,0,OIF:SA:47:4533,Europe/Paris,,OIF, +OIF:SP:47:4534,1,"Courcelles la Roue",48.907073,3.157722,0,0,OIF:SA:47:4533,Europe/Paris,,OIF, +OIF:SP:47:4535,1,"Église",48.906439,3.184012,0,0,OIF:SA:47:4535,Europe/Paris,,OIF, +OIF:SP:47:4536,1,"Église",48.906359,3.183915,0,0,OIF:SA:47:4535,Europe/Paris,,OIF, +OIF:SP:47:4537,1,"Le Chemin",48.904812,3.19282,0,0,OIF:SA:47:4537,Europe/Paris,,OIF, +OIF:SP:47:4538,1,"Le Chemin",48.904976,3.192645,0,0,OIF:SA:47:4537,Europe/Paris,,OIF, +OIF:SP:47:4541,1,"Montapeine",48.930823,3.201515,0,0,OIF:SA:47:4541,Europe/Paris,,OIF, +OIF:SP:47:4542,1,"Montapeine",48.930666,3.20199,0,0,OIF:SA:47:4541,Europe/Paris,,OIF, +OIF:SP:47:4543,1,"Monthomé",48.919951,3.186033,0,0,OIF:SA:47:4543,Europe/Paris,,OIF, +OIF:SP:47:4544,1,"Monthomé",48.919995,3.186129,0,0,OIF:SA:47:4543,Europe/Paris,,OIF, +OIF:SP:47:4545,1,"Moras",48.933847,3.176984,0,0,OIF:SA:47:4545,Europe/Paris,,OIF, +OIF:SP:47:4546,1,"Moras",48.933759,3.176778,0,0,OIF:SA:47:4545,Europe/Paris,,OIF, +OIF:SP:47:4547,1,"Route d'Archet",48.907255,3.177999,0,0,OIF:SA:47:4547,Europe/Paris,,OIF, +OIF:SP:47:4548,1,"Route d'Archet",48.907243,3.178353,0,0,OIF:SA:47:4547,Europe/Paris,,OIF, +OIF:SP:47:4549,1,"Vorpillères",48.9296,3.177625,0,0,OIF:SA:47:4549,Europe/Paris,,OIF, +OIF:SP:47:4550,1,"Vorpillères",48.932462,3.177071,0,0,OIF:SA:47:4549,Europe/Paris,,OIF, +OIF:SP:47:4560,1,"Place du Breuil",48.921156,2.951784,0,0,OIF:SA:47:14571,Europe/Paris,,OIF, +OIF:SP:47:4561,1,"École / Mairie",48.923073,2.95478,0,0,OIF:SA:47:14572,Europe/Paris,,OIF, +OIF:SP:47:4599,1,"Gare SNCF",48.883677,2.853698,0,0,OIF:SA:8711673,Europe/Paris,,OIF, +OIF:SP:47:4600,1,"Gare SNCF",48.883516,2.853587,0,0,OIF:SA:8711673,Europe/Paris,,OIF, +OIF:SP:47:4603,1,"Résidence Grand Morin",48.884675,2.838908,0,0,OIF:SA:47:4603,Europe/Paris,,OIF, +OIF:SP:47:4604,1,"Résidence Grand Morin",48.884134,2.841356,0,0,OIF:SA:47:4603,Europe/Paris,,OIF, +OIF:SP:47:4609,1,"Beau Rivage",48.952577,3.011353,0,0,OIF:SA:47:14585,Europe/Paris,,OIF, +OIF:SP:47:4610,1,"Église",48.951572,3.017371,0,0,OIF:SA:47:4610,Europe/Paris,,OIF, +OIF:SP:47:4685,1,"Busserolles",48.905792,3.209006,0,0,OIF:SA:47:4685,Europe/Paris,,OIF, +OIF:SP:47:4686,1,"Busserolles",48.905801,3.208897,0,0,OIF:SA:47:4685,Europe/Paris,,OIF, +OIF:SP:47:4687,1,"L'Hermitière",48.914814,3.191853,0,0,OIF:SA:47:4687,Europe/Paris,,OIF, +OIF:SP:47:4688,1,"L'Hermitière",48.91489,3.192454,0,0,OIF:SA:47:4687,Europe/Paris,,OIF, +OIF:SP:47:4689,1,"Les Hameaux",48.909457,3.212844,0,0,OIF:SA:47:4689,Europe/Paris,,OIF, +OIF:SP:47:4690,1,"Les Hameaux",48.909378,3.212665,0,0,OIF:SA:47:4689,Europe/Paris,,OIF, +OIF:SP:47:4691,1,"Place",48.903439,3.196355,0,0,OIF:SA:47:4691,Europe/Paris,,OIF, +OIF:SP:47:4692,1,"Place",48.903357,3.196531,0,0,OIF:SA:47:4691,Europe/Paris,,OIF, +OIF:SP:47:470,1,"Centre",48.97759,3.021918,0,0,OIF:SA:47:470,Europe/Paris,,OIF, +OIF:SP:47:471,1,"Centre",48.977637,3.021646,0,0,OIF:SA:47:470,Europe/Paris,,OIF, +OIF:SP:47:472,1,"Château du Vignois",48.987544,3.024194,0,0,OIF:SA:47:472,Europe/Paris,,OIF, +OIF:SP:47:473,1,"Château du Vignois",48.987247,3.02419,0,0,OIF:SA:47:472,Europe/Paris,,OIF, +OIF:SP:47:4746,1,"Collège Nicolas Tronchon",49.038639,2.81226,0,0,OIF:SA:47:4746,Europe/Paris,,OIF, +OIF:SP:47:4782,1,"Rue de Metz",48.947416,3.081241,0,0,OIF:SA:47:4782,Europe/Paris,,OIF, +OIF:SP:47:4783,1,"Rue de Metz",48.947478,3.08146,0,0,OIF:SA:47:4782,Europe/Paris,,OIF, +OIF:SP:47:4784,1,"Perreuse",48.947221,3.089439,0,0,OIF:SA:47:4784,Europe/Paris,,OIF, +OIF:SP:47:4785,1,"Perreuse",48.94717,3.088988,0,0,OIF:SA:47:4784,Europe/Paris,,OIF, +OIF:SP:47:4811,1,"Mairie / École",48.885969,2.958903,0,0,OIF:SA:47:4811,Europe/Paris,,OIF, +OIF:SP:47:4812,1,"Mairie / École",48.884519,2.963015,0,0,OIF:SA:47:4811,Europe/Paris,,OIF, +OIF:SP:47:4828,1,"ZI Haute Borne",48.94418,3.115181,0,0,OIF:SA:47:4828,Europe/Paris,,OIF, +OIF:SP:47:4829,1,"ZI Haute Borne",48.944388,3.114966,0,0,OIF:SA:47:4828,Europe/Paris,,OIF, +OIF:SP:47:4830,1,"ZI Sept-Sorts",48.945763,3.102421,0,0,OIF:SA:47:4830,Europe/Paris,,OIF, +OIF:SP:47:4831,1,"ZI Sept-Sorts",48.945459,3.103603,0,0,OIF:SA:47:4830,Europe/Paris,,OIF, +OIF:SP:47:4854,1,"Mairie",48.927544,3.068421,0,0,OIF:SA:47:4854,Europe/Paris,,OIF, +OIF:SP:47:4903,1,"Mairie",49.000119,3.046733,0,0,OIF:SA:47:4903,Europe/Paris,,OIF, +OIF:SP:47:4904,1,"Mairie",49.000083,3.046856,0,0,OIF:SA:47:4903,Europe/Paris,,OIF, +OIF:SP:47:4905,1,"Rutel / Centre",48.995423,3.084431,0,0,OIF:SA:47:4905,Europe/Paris,,OIF, +OIF:SP:47:4906,1,"Rutel / Centre",48.995456,3.084869,0,0,OIF:SA:47:4905,Europe/Paris,,OIF, +OIF:SP:47:4966,1,"Centre",48.825003,2.901681,0,0,OIF:SA:47:4966,Europe/Paris,,OIF, +OIF:SP:47:4967,1,"Centre",48.824488,2.902207,0,0,OIF:SA:47:4966,Europe/Paris,,OIF, +OIF:SP:47:4970,1,"Lavoir",48.829552,2.901418,0,0,OIF:SA:47:4970,Europe/Paris,,OIF, +OIF:SP:47:4971,1,"Lavoir",48.829552,2.901336,0,0,OIF:SA:47:4970,Europe/Paris,,OIF, +OIF:SP:47:5080,1,"Tennis",48.939356,2.807461,0,0,OIF:SA:47:5080,Europe/Paris,,OIF, +OIF:SP:47:5081,1,"Tennis",48.939544,2.807572,0,0,OIF:SA:47:5080,Europe/Paris,,OIF, +OIF:SP:47:5082,1,"Collège le Bois de l'Enclume",48.951335,2.943054,0,0,OIF:SA:47:5082,Europe/Paris,,OIF, +OIF:SP:47:5084,1,"Église",48.957671,2.94654,0,0,OIF:SA:47:5084,Europe/Paris,,OIF, +OIF:SP:47:5085,1,"Église",48.957823,2.946597,0,0,OIF:SA:47:5084,Europe/Paris,,OIF, +OIF:SP:47:5086,1,"La Charmoye",48.963394,2.953828,0,0,OIF:SA:47:5086,Europe/Paris,,OIF, +OIF:SP:47:5087,1,"La Charmoye",48.963475,2.953733,0,0,OIF:SA:47:5086,Europe/Paris,,OIF, +OIF:SP:47:5088,1,"Langelot",48.965294,2.949578,0,0,OIF:SA:47:5088,Europe/Paris,,OIF, +OIF:SP:47:5089,1,"Langelot",48.965285,2.94951,0,0,OIF:SA:47:5088,Europe/Paris,,OIF, +OIF:SP:47:5091,1,"Parc",48.957779,2.949872,0,0,OIF:SA:47:5091,Europe/Paris,,OIF, +OIF:SP:47:5092,1,"Poste",48.956758,2.949259,0,0,OIF:SA:47:5092,Europe/Paris,,OIF, +OIF:SP:47:5093,1,"Saint-Fiacre",48.958755,2.950552,0,0,OIF:SA:47:5093,Europe/Paris,,OIF, +OIF:SP:47:5095,1,"Place Carrefour Orme",49.042147,2.961958,0,0,OIF:SA:47:5095,Europe/Paris,,OIF, +OIF:SP:47:5096,1,"Place Carrefour Orme",49.042218,2.962068,0,0,OIF:SA:47:5095,Europe/Paris,,OIF, +OIF:SP:47:5097,1,"Rue du Jeu d'Arc",49.041824,2.966862,0,0,OIF:SA:47:5097,Europe/Paris,,OIF, +OIF:SP:47:5098,1,"Rue du Jeu d'Arc",49.041689,2.966915,0,0,OIF:SA:47:5097,Europe/Paris,,OIF, +OIF:SP:47:5109,1,"Château",48.953723,3.074413,0,0,OIF:SA:47:5109,Europe/Paris,,OIF, +OIF:SP:47:5110,1,"Château",48.953768,3.07425,0,0,OIF:SA:47:5109,Europe/Paris,,OIF, +OIF:SP:47:5111,1,"Mairie",48.954085,3.07102,0,0,OIF:SA:47:5111,Europe/Paris,,OIF, +OIF:SP:47:5112,1,"Mairie",48.954157,3.07094,0,0,OIF:SA:47:5111,Europe/Paris,,OIF, +OIF:SP:47:5113,1,"Pavillons",48.955883,3.066447,0,0,OIF:SA:47:5113,Europe/Paris,,OIF, +OIF:SP:47:5114,1,"Pavillons",48.955901,3.066584,0,0,OIF:SA:47:5113,Europe/Paris,,OIF, +OIF:SP:47:5116,1,"Salle des Fêtes",48.95477,3.070662,0,0,OIF:SA:47:5116,Europe/Paris,,OIF, +OIF:SP:47:5168,1,"Église",49.000389,2.931515,0,0,OIF:SA:47:14822,Europe/Paris,,OIF, +OIF:SP:47:5169,1,"Mairie",49.004012,2.927595,0,0,OIF:SA:47:14906,Europe/Paris,,OIF, +OIF:SP:47:5171,1,"Pavillons",49.007458,2.934,0,0,OIF:SA:47:14908,Europe/Paris,,OIF, +OIF:SP:47:5203,1,"Chaton Place",49.031358,3.106079,0,0,OIF:SA:47:14892,Europe/Paris,,OIF, +OIF:SP:47:5205,1,"Église / Centre",49.046542,3.092416,0,0,OIF:SA:47:5205,Europe/Paris,,OIF, +OIF:SP:47:5206,1,"Église / Centre",49.046703,3.092623,0,0,OIF:SA:47:5205,Europe/Paris,,OIF, +OIF:SP:47:5207,1,"Les Brûlis",49.059577,3.108592,0,0,OIF:SA:47:14614,Europe/Paris,,OIF, +OIF:SP:47:5208,1,"Rademont",49.038877,3.080904,0,0,OIF:SA:47:5208,Europe/Paris,,OIF, +OIF:SP:47:5209,1,"Rademont",49.039011,3.081002,0,0,OIF:SA:47:5208,Europe/Paris,,OIF, +OIF:SP:47:5216,1,"Mairie",48.875012,3.368128,0,0,OIF:SA:47:5216,Europe/Paris,,OIF, +OIF:SP:47:5217,1,"Mairie",48.875065,3.367189,0,0,OIF:SA:47:5216,Europe/Paris,,OIF, +OIF:SP:47:5218,1,"Pont",48.875323,3.363283,0,0,OIF:SA:47:5218,Europe/Paris,,OIF, +OIF:SP:47:5219,1,"Pont",48.875474,3.363504,0,0,OIF:SA:47:5218,Europe/Paris,,OIF, +OIF:SP:47:5244,1,"Château - C.F.D.J.",48.929374,2.808966,0,0,OIF:SA:47:5244,Europe/Paris,,OIF, +OIF:SP:47:5245,1,"Château - C.F.D.J.",48.92905,2.809086,0,0,OIF:SA:47:5244,Europe/Paris,,OIF, +OIF:SP:47:5246,1,"Église",48.930534,2.808895,0,0,OIF:SA:47:5246,Europe/Paris,,OIF, +OIF:SP:47:5247,1,"Église",48.930929,2.808912,0,0,OIF:SA:47:5246,Europe/Paris,,OIF, +OIF:SP:47:5263,1,"Centre",48.921417,2.970525,0,0,OIF:SA:47:14481,Europe/Paris,,OIF, +OIF:SP:47:5295,1,"Collège les Creusottes",48.862876,3.334633,0,0,OIF:SA:47:5295,Europe/Paris,,OIF, +OIF:SP:47:5299,1,"Église",48.861813,3.341356,0,0,OIF:SA:47:5299,Europe/Paris,,OIF, +OIF:SP:47:5300,1,"Église",48.86175,3.341273,0,0,OIF:SA:47:5299,Europe/Paris,,OIF, +OIF:SP:47:5301,1,"Le Fourcheret",48.861049,3.320908,0,0,OIF:SA:47:5301,Europe/Paris,,OIF, +OIF:SP:47:5302,1,"Le Fourcheret",48.860996,3.320798,0,0,OIF:SA:47:5301,Europe/Paris,,OIF, +OIF:SP:47:5309,1,"Garage Communal",48.866511,3.346937,0,0,OIF:SA:47:5309,Europe/Paris,,OIF, +OIF:SP:47:5310,1,"Garage Communal",48.866421,3.346936,0,0,OIF:SA:47:5309,Europe/Paris,,OIF, +OIF:SP:47:5314,1,"Parc",48.943738,2.864039,0,0,OIF:SA:47:14947,Europe/Paris,,OIF, +OIF:SP:47:5315,1,"Carnot / Bel Air",48.951318,2.86735,0,0,OIF:SA:47:14944,Europe/Paris,,OIF, +OIF:SP:47:5316,1,"Carnot / Mendès France",48.953502,2.869187,0,0,OIF:SA:47:14943,Europe/Paris,,OIF, +OIF:SP:47:5317,1,"Carnot / Parmentier",48.948521,2.865684,0,0,OIF:SA:47:14945,Europe/Paris,,OIF, +OIF:SP:47:5322,1,"Église",48.941684,2.863199,0,0,OIF:SA:47:5322,Europe/Paris,,OIF, +OIF:SP:47:5324,1,"Les Patios",48.954764,2.864437,0,0,OIF:SA:47:5324,Europe/Paris,,OIF, +OIF:SP:47:5325,1,"Rue Bouchard",48.94227,2.860736,0,0,OIF:SA:47:5325,Europe/Paris,,OIF, +OIF:SP:47:5326,1,"Rue de Lagny",48.940105,2.858517,0,0,OIF:SA:47:5326,Europe/Paris,,OIF, +OIF:SP:47:5327,1,"Souterrain",48.956542,2.872698,0,0,OIF:SA:8711610,Europe/Paris,,OIF, +OIF:SP:47:5328,1,"Union Commerciale",48.949654,2.869639,0,0,OIF:SA:47:14948,Europe/Paris,,OIF, +OIF:SP:47:536,1,"École des Girandoles",48.846086,2.818299,0,0,OIF:SA:47:536,Europe/Paris,,OIF, +OIF:SP:47:5381,1,"Église",48.859491,2.879963,0,0,OIF:SA:47:5381,Europe/Paris,,OIF, +OIF:SP:47:5382,1,"Église",48.859273,2.880465,0,0,OIF:SA:47:5381,Europe/Paris,,OIF, +OIF:SP:47:5383,1,"Passage à Niveau",48.8629,2.883323,0,0,OIF:SA:47:5383,Europe/Paris,,OIF, +OIF:SP:47:5384,1,"Passage à Niveau",48.862901,2.883214,0,0,OIF:SA:47:5383,Europe/Paris,,OIF, +OIF:SP:47:5403,1,"Centre",49.078562,2.962973,0,0,OIF:SA:47:5403,Europe/Paris,,OIF, +OIF:SP:47:5404,1,"Centre",49.078347,2.96293,0,0,OIF:SA:47:5403,Europe/Paris,,OIF, +OIF:SP:47:5405,1,"Église",49.077485,2.962742,0,0,OIF:SA:47:5405,Europe/Paris,,OIF, +OIF:SP:47:5406,1,"Église",49.077585,2.962647,0,0,OIF:SA:47:5405,Europe/Paris,,OIF, +OIF:SP:47:5407,1,"Manœuvre",49.068461,2.957914,0,0,OIF:SA:47:5407,Europe/Paris,,OIF, +OIF:SP:47:5408,1,"Manœuvre",49.068237,2.95787,0,0,OIF:SA:47:5407,Europe/Paris,,OIF, +OIF:SP:47:5419,1,"Rue Bout d'en Haut",48.850902,2.890959,0,0,OIF:SA:47:5419,Europe/Paris,,OIF, +OIF:SP:47:5422,1,"Rue du Château d'Eau",48.846597,2.900623,0,0,OIF:SA:47:5422,Europe/Paris,,OIF, +OIF:SP:47:5423,1,"Mairie",48.850786,2.898557,0,0,OIF:SA:47:5423,Europe/Paris,,OIF, +OIF:SP:47:5424,1,"Mairie",48.850616,2.898365,0,0,OIF:SA:47:5423,Europe/Paris,,OIF, +OIF:SP:47:5425,1,"Pont de Serbonne",48.84625,2.913011,0,0,OIF:SA:47:15003,Europe/Paris,,OIF, +OIF:SP:47:543,1,"Mairie",48.846714,2.823207,0,0,OIF:SA:47:543,Europe/Paris,,OIF, +OIF:SP:47:5430,1,"Rue de l'Orme",48.849678,2.89337,0,0,OIF:SA:47:5430,Europe/Paris,,OIF, +OIF:SP:47:5431,1,"Rue du Lutin",48.851062,2.898969,0,0,OIF:SA:47:5431,Europe/Paris,,OIF, +OIF:SP:47:5432,1,"Rue du Tertre",48.847886,2.903524,0,0,OIF:SA:47:5432,Europe/Paris,,OIF, +OIF:SP:47:554,1,"Église",49.017215,2.88188,0,0,OIF:SA:47:554,Europe/Paris,,OIF, +OIF:SP:47:555,1,"Église",49.017485,2.881719,0,0,OIF:SA:47:554,Europe/Paris,,OIF, +OIF:SP:47:556,1,"École",48.924988,3.277578,0,0,OIF:SA:47:556,Europe/Paris,,OIF, +OIF:SP:47:557,1,"École",48.924925,3.277604,0,0,OIF:SA:47:556,Europe/Paris,,OIF, +OIF:SP:47:558,1,"La Belle Idée",48.921134,3.268247,0,0,OIF:SA:47:558,Europe/Paris,,OIF, +OIF:SP:47:559,1,"La Belle Idée",48.921126,3.268125,0,0,OIF:SA:47:558,Europe/Paris,,OIF, +OIF:SP:47:561,1,"Les Groseilliers",48.927291,3.288695,0,0,OIF:SA:47:14939,Europe/Paris,,OIF, +OIF:SP:47:596,1,"Place",48.857064,3.317958,0,0,OIF:SA:47:596,Europe/Paris,,OIF, +OIF:SP:47:597,1,"Place",48.856727,3.316413,0,0,OIF:SA:47:596,Europe/Paris,,OIF, +OIF:SP:47:674,1,"Méline (Centre)",48.89451,3.259345,0,0,OIF:SA:47:674,Europe/Paris,,OIF, +OIF:SP:47:675,1,"Coton",48.890834,3.251129,0,0,OIF:SA:47:675,Europe/Paris,,OIF, +OIF:SP:47:676,1,"Coton",48.890746,3.250978,0,0,OIF:SA:47:675,Europe/Paris,,OIF, +OIF:SP:47:689,1,"Carrefour Sarcy",48.876903,2.911989,0,0,OIF:SA:47:689,Europe/Paris,,OIF, +OIF:SP:47:690,1,"Chemin de Rebais",48.874465,2.903051,0,0,OIF:SA:47:690,Europe/Paris,,OIF, +OIF:SP:47:691,1,"Chemin de Rebais",48.87434,2.902914,0,0,OIF:SA:47:690,Europe/Paris,,OIF, +OIF:SP:47:698,1,"Férolles",48.866608,2.918332,0,0,OIF:SA:47:698,Europe/Paris,,OIF, +OIF:SP:47:699,1,"Mairie",48.881433,2.906303,0,0,OIF:SA:47:699,Europe/Paris,,OIF, +OIF:SP:47:700,1,"Église",48.881451,2.906235,0,0,OIF:SA:47:699,Europe/Paris,,OIF, +OIF:SP:47:713,1,"École/Mairie",48.91961,2.928746,0,0,OIF:SA:47:713,Europe/Paris,,OIF, +OIF:SP:47:720,1,"La Cantine",48.913505,2.923781,0,0,OIF:SA:47:720,Europe/Paris,,OIF, +OIF:SP:47:721,1,"La Cantine",48.913556,2.924314,0,0,OIF:SA:47:720,Europe/Paris,,OIF, +OIF:SP:47:723,1,"Magny Saint-Loup",48.907121,2.913375,0,0,OIF:SA:47:723,Europe/Paris,,OIF, +OIF:SP:47:729,1,"Prévilliers",48.917721,2.943425,0,0,OIF:SA:47:729,Europe/Paris,,OIF, +OIF:SP:47:730,1,"Prévilliers",48.917586,2.9433,0,0,OIF:SA:47:729,Europe/Paris,,OIF, +OIF:SP:47:9,1,"Mairie",48.979827,3.239498,0,0,OIF:SA:47:10,Europe/Paris,,OIF, +OIF:SP:47:909,1,"Allée Renoir",48.8978,2.774219,0,0,OIF:SA:47:14575,Europe/Paris,,OIF, +OIF:SP:47:916,1,"Route de Jablines",48.903131,2.771374,0,0,OIF:SA:47:14819,Europe/Paris,,OIF, +OIF:SP:47:927,1,"Mairie",48.997724,2.893256,0,0,OIF:SA:47:927,Europe/Paris,,OIF, +OIF:SP:47:928,1,"Mairie",48.997894,2.893477,0,0,OIF:SA:47:927,Europe/Paris,,OIF, +OIF:SP:47:931,1,"Domaine Tanqueux",48.967474,3.136976,0,0,OIF:SA:47:931,Europe/Paris,,OIF, +OIF:SP:47:935,1,"Erea",48.979587,3.142474,0,0,OIF:SA:47:935,Europe/Paris,,OIF, +OIF:SP:47:936,1,"Erea",48.98246,3.144362,0,0,OIF:SA:47:935,Europe/Paris,,OIF, +OIF:SP:47:944,1,"Le Rouget",48.999953,3.143665,0,0,OIF:SA:47:944,Europe/Paris,,OIF, +OIF:SP:47:947,1,"Rouge Bourse",48.985191,3.133699,0,0,OIF:SA:47:947,Europe/Paris,,OIF, +OIF:SP:47:952,1,"Le Potager",48.966695,3.144471,0,0,OIF:SA:47:14891,Europe/Paris,,OIF, +OIF:SP:47:975,1,"Église",48.958375,3.014171,0,0,OIF:SA:47:975,Europe/Paris,,OIF, +OIF:SP:47:976,1,"Gare SNCF",48.958831,3.024072,0,0,OIF:SA:8711650,Europe/Paris,,OIF, +OIF:SP:47:978,1,"Poste",48.957102,3.020064,0,0,OIF:SA:47:978,Europe/Paris,,OIF, +OIF:SP:47:979,1,"Poste",48.957055,3.020322,0,0,OIF:SA:47:978,Europe/Paris,,OIF, +OIF:SP:48:5000,1,"Lycée Tour des Dames",48.678026,2.968729,0,0,OIF:SA:48:5000,Europe/Paris,,OIF, +OIF:SP:48:5001,1,"Grands Saules",48.652171,2.866512,0,0,OIF:SA:48:5001,Europe/Paris,,OIF, +OIF:SP:48:5002,1,"Grands Saules",48.652081,2.866606,0,0,OIF:SA:48:5001,Europe/Paris,,OIF, +OIF:SP:48:5003,1,"Fleuriste",48.795261,2.704572,0,0,OIF:SA:48:5003,Europe/Paris,,OIF, +OIF:SP:48:5004,1,"Fleuriste",48.795261,2.704776,0,0,OIF:SA:48:5003,Europe/Paris,,OIF, +OIF:SP:48:5005,1,"Grille du Château",48.646735,2.859986,0,0,OIF:SA:48:5005,Europe/Paris,,OIF, +OIF:SP:48:5006,1,"Grille du Château",48.646618,2.859903,0,0,OIF:SA:48:5005,Europe/Paris,,OIF, +OIF:SP:48:5007,1,"RN4",48.68412,2.937769,0,0,OIF:SA:48:5007,Europe/Paris,,OIF, +OIF:SP:48:5008,1,"RN4",48.684066,2.936085,0,0,OIF:SA:48:5007,Europe/Paris,,OIF, +OIF:SP:48:5010,1,"Gare de Tournan en Brie (Côté Gretz)",48.738725,2.758828,0,0,OIF:SA:8711621,Europe/Paris,,OIF, +OIF:SP:48:5013,1,"Beau Mendès France",48.692106,2.601632,0,0,OIF:SA:13:459,Europe/Paris,,OIF, +OIF:SP:48:5014,1,"Beau Mendès France",48.692052,2.601605,0,0,OIF:SA:13:459,Europe/Paris,,OIF, +OIF:SP:48:5015,1,"Lycée RD319",48.702082,2.598234,0,0,OIF:SA:48:5015,Europe/Paris,,OIF, +OIF:SP:48:5021,1,"Centre Commercial Pasteur",48.692266,2.618211,0,0,OIF:SA:13:470,Europe/Paris,,OIF, +OIF:SP:48:5022,1,"Centre Commercial Pasteur",48.692068,2.618196,0,0,OIF:SA:13:470,Europe/Paris,,OIF, +OIF:SP:48:5023,1,"Ferme Caminha",48.804685,2.601486,0,0,OIF:SA:48:5023,Europe/Paris,,OIF, +OIF:SP:48:5024,1,"Ferme Caminha",48.804209,2.601483,0,0,OIF:SA:48:5023,Europe/Paris,,OIF, +OIF:SP:48:5025,1,"Myosotis",48.690887,2.615936,0,0,OIF:SA:13:197,Europe/Paris,,OIF, +OIF:SP:48:5026,1,"Myosotis",48.690941,2.615896,0,0,OIF:SA:13:197,Europe/Paris,,OIF, +OIF:SP:48:5027,1,"Rue de Verdun",48.696697,2.61465,0,0,OIF:SA:13:521,Europe/Paris,,OIF, +OIF:SP:48:5028,1,"Rue de Verdun",48.696285,2.613806,0,0,OIF:SA:13:521,Europe/Paris,,OIF, +OIF:SP:48:5030,1,"Gare d'Ozoir",48.77013,2.689831,0,0,OIF:SA:8711602,Europe/Paris,,OIF, +OIF:SP:48:5031,1,"Jondelles",48.790706,2.67045,0,0,OIF:SA:48:5031,Europe/Paris,,OIF, +OIF:SP:48:5032,1,"Jondelles",48.790653,2.670341,0,0,OIF:SA:48:5031,Europe/Paris,,OIF, +OIF:SP:48:5033,1,"Place des Minimes",48.68998,2.607649,0,0,OIF:SA:13:269,Europe/Paris,,OIF, +OIF:SP:48:5034,1,"Place des Minimes",48.689945,2.607446,0,0,OIF:SA:13:269,Europe/Paris,,OIF, +OIF:SP:48:5040,1,"Grégy",48.666316,2.621381,0,0,OIF:SA:28:119,Europe/Paris,,OIF, +OIF:SP:48:5050,1,"Lieusaint Moissy RER",48.628381,2.568816,0,0,OIF:SA:8768215,Europe/Paris,,OIF, +OIF:SP:48:5051,1,"Le Limodin",48.747463,2.851921,0,0,OIF:SA:48:5051,Europe/Paris,,OIF, +OIF:SP:48:5052,1,"Le Limodin",48.747409,2.851907,0,0,OIF:SA:48:5051,Europe/Paris,,OIF, +OIF:SP:48:5053,1,"Maison des Associations",48.741325,2.841097,0,0,OIF:SA:48:5053,Europe/Paris,,OIF, +OIF:SP:48:5054,1,"Maison des Associations",48.741262,2.841205,0,0,OIF:SA:48:5053,Europe/Paris,,OIF, +OIF:SP:48:5057,1,"Villas Patrice",48.7107,2.804074,0,0,OIF:SA:48:5057,Europe/Paris,,OIF, +OIF:SP:48:5058,1,"Villas Patrice",48.710771,2.804183,0,0,OIF:SA:48:5057,Europe/Paris,,OIF, +OIF:SP:48:5060,1,"Noisiel RER",48.843507,2.615519,0,0,OIF:SA:8775835,Europe/Paris,,OIF, +OIF:SP:48:5061,1,"Mairie de Châtres",48.711318,2.809227,0,0,OIF:SA:48:5061,Europe/Paris,,OIF, +OIF:SP:48:5062,1,"Mairie de Châtres",48.711299,2.809512,0,0,OIF:SA:48:5061,Europe/Paris,,OIF, +OIF:SP:48:5063,1,"Arcy",48.66355,2.868894,0,0,OIF:SA:48:5063,Europe/Paris,,OIF, +OIF:SP:48:5065,1,"Église de Chaumes",48.666623,2.842531,0,0,OIF:SA:48:5065,Europe/Paris,,OIF, +OIF:SP:48:5066,1,"Église de Chaumes",48.666577,2.842612,0,0,OIF:SA:48:5065,Europe/Paris,,OIF, +OIF:SP:48:5067,1,"Forest Ferme",48.672044,2.818439,0,0,OIF:SA:48:5067,Europe/Paris,,OIF, +OIF:SP:48:5070,1,"Campus Sainte-Thérèse",48.756969,2.699543,0,0,OIF:SA:48:5070,Europe/Paris,,OIF, +OIF:SP:48:5071,1,"Haras",48.653889,2.849977,0,0,OIF:SA:48:5071,Europe/Paris,,OIF, +OIF:SP:48:5072,1,"Haras",48.653917,2.849856,0,0,OIF:SA:48:5071,Europe/Paris,,OIF, +OIF:SP:48:5073,1,"Maurevert",48.659025,2.823718,0,0,OIF:SA:48:5073,Europe/Paris,,OIF, +OIF:SP:48:5075,1,"Foch",48.790995,2.666888,0,0,OIF:SA:48:5075,Europe/Paris,,OIF, +OIF:SP:48:5076,1,"Foch",48.79095,2.666765,0,0,OIF:SA:48:5075,Europe/Paris,,OIF, +OIF:SP:48:5077,1,"Usine Barbara",48.665441,2.851937,0,0,OIF:SA:48:5077,Europe/Paris,,OIF, +OIF:SP:48:5078,1,"Usine Barbara",48.665404,2.852004,0,0,OIF:SA:48:5077,Europe/Paris,,OIF, +OIF:SP:48:5080,1,"Collège Vermay",48.743566,2.752099,0,0,OIF:SA:48:5080,Europe/Paris,,OIF, +OIF:SP:48:5085,1,"Bleuets",48.725754,2.665142,0,0,OIF:SA:28:19,Europe/Paris,,OIF, +OIF:SP:48:5086,1,"Bleuets",48.72579,2.664993,0,0,OIF:SA:28:19,Europe/Paris,,OIF, +OIF:SP:48:5090,1,"Lycée Clément Ader",48.74313,2.748399,0,0,OIF:SA:48:5090,Europe/Paris,,OIF, +OIF:SP:48:5092,1,"Gabin",48.728383,2.666694,0,0,OIF:SA:48:5092,Europe/Paris,,OIF, +OIF:SP:48:5093,1,"RN19",48.670033,2.696113,0,0,OIF:SA:48:5093,Europe/Paris,,OIF, +OIF:SP:48:5094,1,"RN19",48.670024,2.696004,0,0,OIF:SA:48:5093,Europe/Paris,,OIF, +OIF:SP:48:5095,1,"Courpalay Église",48.647342,2.961004,0,0,OIF:SA:48:5095,Europe/Paris,,OIF, +OIF:SP:48:5096,1,"Courpalay Église",48.647297,2.96103,0,0,OIF:SA:48:5095,Europe/Paris,,OIF, +OIF:SP:48:5097,1,"Beauregard",48.753288,2.897503,0,0,OIF:SA:48:5097,Europe/Paris,,OIF, +OIF:SP:48:5098,1,"Beauregard",48.753252,2.897517,0,0,OIF:SA:48:5097,Europe/Paris,,OIF, +OIF:SP:48:5100,1,"Collège Hutinel",48.739303,2.747649,0,0,OIF:SA:48:5100,Europe/Paris,,OIF, +OIF:SP:48:5101,1,"Gros Bois",48.753606,2.906261,0,0,OIF:SA:48:5101,Europe/Paris,,OIF, +OIF:SP:48:5102,1,"Gros Bois",48.75356,2.906315,0,0,OIF:SA:48:5101,Europe/Paris,,OIF, +OIF:SP:48:5103,1,"Place Saint-Jean",48.753619,2.907158,0,0,OIF:SA:48:5103,Europe/Paris,,OIF, +OIF:SP:48:5104,1,"Place Saint-Jean",48.753592,2.907267,0,0,OIF:SA:48:5103,Europe/Paris,,OIF, +OIF:SP:48:5107,1,"Fontaine",48.65612,2.633794,0,0,OIF:SA:28:96,Europe/Paris,,OIF, +OIF:SP:48:5108,1,"Fontaine",48.656218,2.633849,0,0,OIF:SA:28:96,Europe/Paris,,OIF, +OIF:SP:48:5110,1,"Église d'Argentières",48.65482,2.869185,0,0,OIF:SA:48:5110,Europe/Paris,,OIF, +OIF:SP:48:5113,1,"Marquis",48.653315,2.633738,0,0,OIF:SA:48:5113,Europe/Paris,,OIF, +OIF:SP:48:5114,1,"Marquis",48.653225,2.633778,0,0,OIF:SA:48:5113,Europe/Paris,,OIF, +OIF:SP:48:5120,1,"Collège Gérard Philipe",48.76554,2.67676,0,0,OIF:SA:48:5120,Europe/Paris,,OIF, +OIF:SP:48:5129,1,"Belle Croix (Lycée Ventura)",48.758427,2.693177,0,0,OIF:SA:48:5129,Europe/Paris,,OIF, +OIF:SP:48:5130,1,"Belle Croix (Lycée Ventura)",48.759409,2.692341,0,0,OIF:SA:48:5129,Europe/Paris,,OIF, +OIF:SP:48:5133,1,"Attilly",48.727741,2.64131,0,0,OIF:SA:48:5133,Europe/Paris,,OIF, +OIF:SP:48:5135,1,"Rue de Pontault",48.747959,2.618241,0,0,OIF:SA:13:230,Europe/Paris,,OIF, +OIF:SP:48:5136,1,"Rue de Pontault",48.747896,2.618186,0,0,OIF:SA:13:230,Europe/Paris,,OIF, +OIF:SP:48:5137,1,"Mairie de Férolles",48.732628,2.628077,0,0,OIF:SA:48:5137,Europe/Paris,,OIF, +OIF:SP:48:5140,1,"Lycée Blaise Pascal",48.698726,2.595623,0,0,OIF:SA:48:5015,Europe/Paris,,OIF, +OIF:SP:48:5141,1,"Réveillon",48.73099,2.628937,0,0,OIF:SA:48:5141,Europe/Paris,,OIF, +OIF:SP:48:5143,1,"Bordes",48.705894,2.873552,0,0,OIF:SA:48:5143,Europe/Paris,,OIF, +OIF:SP:48:5144,1,"Bordes",48.705803,2.873687,0,0,OIF:SA:48:5143,Europe/Paris,,OIF, +OIF:SP:48:5145,1,"Louis Blanc",48.800755,2.629344,0,0,OIF:SA:48:5145,Europe/Paris,,OIF, +OIF:SP:48:5146,1,"Louis Blanc",48.80071,2.629276,0,0,OIF:SA:48:5145,Europe/Paris,,OIF, +OIF:SP:48:5150,1,"Rendez-Vous Château",48.693353,2.610749,0,0,OIF:SA:13:123,Europe/Paris,,OIF, +OIF:SP:48:5151,1,"Boulevard Hardy",48.708747,2.860543,0,0,OIF:SA:48:5151,Europe/Paris,,OIF, +OIF:SP:48:5152,1,"Boulevard Hardy",48.708694,2.860352,0,0,OIF:SA:48:5151,Europe/Paris,,OIF, +OIF:SP:48:5153,1,"Rue Bertaux",48.710855,2.857535,0,0,OIF:SA:48:5153,Europe/Paris,,OIF, +OIF:SP:48:5154,1,"Rue Bertaux",48.710738,2.85752,0,0,OIF:SA:48:5153,Europe/Paris,,OIF, +OIF:SP:48:5155,1,"Lafayette",48.703595,2.870907,0,0,OIF:SA:48:5155,Europe/Paris,,OIF, +OIF:SP:48:5156,1,"Lafayette",48.703515,2.870838,0,0,OIF:SA:48:5155,Europe/Paris,,OIF, +OIF:SP:48:5157,1,"Mairie de Fontenay",48.70675,2.86696,0,0,OIF:SA:48:5157,Europe/Paris,,OIF, +OIF:SP:48:5158,1,"Mairie de Fontenay",48.706677,2.86719,0,0,OIF:SA:48:5157,Europe/Paris,,OIF, +OIF:SP:48:5160,1,"Chaumes Ancienne Gare",48.670863,2.847308,0,0,OIF:SA:48:5160,Europe/Paris,,OIF, +OIF:SP:48:5161,1,"Michelet",48.705066,2.877699,0,0,OIF:SA:48:5161,Europe/Paris,,OIF, +OIF:SP:48:5162,1,"Michelet",48.705012,2.877658,0,0,OIF:SA:48:5161,Europe/Paris,,OIF, +OIF:SP:48:5164,1,"Chemin des Bois",48.728441,2.884613,0,0,OIF:SA:48:5164,Europe/Paris,,OIF, +OIF:SP:48:5167,1,"Coubertin",48.711281,2.870904,0,0,OIF:SA:48:5167,Europe/Paris,,OIF, +OIF:SP:48:5168,1,"Coubertin",48.711318,2.870647,0,0,OIF:SA:48:5167,Europe/Paris,,OIF, +OIF:SP:48:5171,1,"Croix Saint-Pierre",48.715189,2.869382,0,0,OIF:SA:48:5171,Europe/Paris,,OIF, +OIF:SP:48:5172,1,"Croix Saint-Pierre",48.715054,2.869272,0,0,OIF:SA:48:5171,Europe/Paris,,OIF, +OIF:SP:48:5173,1,"ZI de Fontenay",48.703383,2.883915,0,0,OIF:SA:48:5173,Europe/Paris,,OIF, +OIF:SP:48:5174,1,"ZI de Fontenay",48.703284,2.883914,0,0,OIF:SA:48:5173,Europe/Paris,,OIF, +OIF:SP:48:5175,1,"Denis Papin",48.800108,2.633,0,0,OIF:SA:48:5175,Europe/Paris,,OIF, +OIF:SP:48:5176,1,"Denis Papin",48.800045,2.632986,0,0,OIF:SA:48:5175,Europe/Paris,,OIF, +OIF:SP:48:5177,1,"Gare de Pontault (Place Beilstein)",48.804333,2.621499,0,0,OIF:SA:8711604,Europe/Paris,,OIF, +OIF:SP:48:5178,1,"Gare de Pontault (Place Beilstein)",48.803731,2.621659,0,0,OIF:SA:8711604,Europe/Paris,,OIF, +OIF:SP:48:5180,1,"Collège Mallarmé",48.702305,2.871966,0,0,OIF:SA:48:5180,Europe/Paris,,OIF, +OIF:SP:48:5181,1,"Champagne",48.739106,2.744888,0,0,OIF:SA:48:5181,Europe/Paris,,OIF, +OIF:SP:48:5182,1,"Champagne",48.739016,2.744942,0,0,OIF:SA:48:5181,Europe/Paris,,OIF, +OIF:SP:48:5183,1,"Cité des Troènes",48.739237,2.729955,0,0,OIF:SA:48:5183,Europe/Paris,,OIF, +OIF:SP:48:5185,1,"Place Clément Ader",48.738264,2.717051,0,0,OIF:SA:48:5185,Europe/Paris,,OIF, +OIF:SP:48:5186,1,"Place Clément Ader",48.738371,2.717242,0,0,OIF:SA:48:5185,Europe/Paris,,OIF, +OIF:SP:48:5187,1,"Église de Gretz",48.739872,2.739024,0,0,OIF:SA:48:5187,Europe/Paris,,OIF, +OIF:SP:48:5188,1,"Église de Gretz",48.739737,2.738995,0,0,OIF:SA:48:5187,Europe/Paris,,OIF, +OIF:SP:48:5190,1,"Collège Laurencin",48.767318,2.667608,0,0,OIF:SA:48:5190,Europe/Paris,,OIF, +OIF:SP:48:5191,1,"Avenue des Fresnes",48.73804,2.722335,0,0,OIF:SA:48:5191,Europe/Paris,,OIF, +OIF:SP:48:5193,1,"HLM",48.736084,2.737459,0,0,OIF:SA:48:5193,Europe/Paris,,OIF, +OIF:SP:48:5194,1,"HLM",48.735968,2.737376,0,0,OIF:SA:48:5193,Europe/Paris,,OIF, +OIF:SP:48:5195,1,"Monument de Gretz",48.742691,2.734724,0,0,OIF:SA:48:5195,Europe/Paris,,OIF, +OIF:SP:48:5196,1,"Monument de Gretz",48.742835,2.734793,0,0,OIF:SA:48:5195,Europe/Paris,,OIF, +OIF:SP:48:5197,1,"Ombrages Parc",48.737529,2.713404,0,0,OIF:SA:48:5197,Europe/Paris,,OIF, +OIF:SP:48:5198,1,"Ombrages Parc",48.737466,2.713457,0,0,OIF:SA:48:5197,Europe/Paris,,OIF, +OIF:SP:48:5200,1,"Lycée Charles le Chauve",48.798846,2.648394,0,0,OIF:SA:48:5200,Europe/Paris,,OIF, +OIF:SP:48:5203,1,"Pierre et Marie Curie",48.737594,2.726735,0,0,OIF:SA:48:5203,Europe/Paris,,OIF, +OIF:SP:48:5205,1,"Maison Rouge",48.732735,2.728275,0,0,OIF:SA:48:5205,Europe/Paris,,OIF, +OIF:SP:48:5206,1,"Maison Rouge",48.732825,2.728411,0,0,OIF:SA:48:5205,Europe/Paris,,OIF, +OIF:SP:48:5207,1,"Singe Vert",48.741453,2.731466,0,0,OIF:SA:48:5207,Europe/Paris,,OIF, +OIF:SP:48:5208,1,"Singe Vert",48.741418,2.731099,0,0,OIF:SA:48:5207,Europe/Paris,,OIF, +OIF:SP:48:5210,1,"Gare de Gretz",48.745369,2.72962,0,0,OIF:SA:8711601,Europe/Paris,,OIF, +OIF:SP:48:5215,1,"Stade Laumondé",48.736177,2.717498,0,0,OIF:SA:48:5215,Europe/Paris,,OIF, +OIF:SP:48:5217,1,"Victor Hugo",48.739691,2.723313,0,0,OIF:SA:48:5217,Europe/Paris,,OIF, +OIF:SP:48:5218,1,"Victor Hugo",48.739557,2.72289,0,0,OIF:SA:48:5217,Europe/Paris,,OIF, +OIF:SP:48:5220,1,"Collège Charles Péguy",48.646944,2.830035,0,0,OIF:SA:48:5220,Europe/Paris,,OIF, +OIF:SP:48:5221,1,"Presles ZI Ampère",48.730973,2.739294,0,0,OIF:SA:48:5221,Europe/Paris,,OIF, +OIF:SP:48:5222,1,"Presles ZI Ampère",48.730928,2.739376,0,0,OIF:SA:48:5221,Europe/Paris,,OIF, +OIF:SP:48:5230,1,"Gare de Tournan en Brie (Côté Guichet)",48.739639,2.759515,0,0,OIF:SA:8711621,Europe/Paris,,OIF, +OIF:SP:48:5237,1,"Place Augereau",48.754004,2.874769,0,0,OIF:SA:48:5237,Europe/Paris,,OIF, +OIF:SP:48:5238,1,"Place Augereau",48.754022,2.874864,0,0,OIF:SA:48:5237,Europe/Paris,,OIF, +OIF:SP:48:5240,1,"Gare de Marles",48.733731,2.867697,0,0,OIF:SA:8711622,Europe/Paris,,OIF, +OIF:SP:48:5242,1,"Chantepie",48.760354,2.871803,0,0,OIF:SA:48:5242,Europe/Paris,,OIF, +OIF:SP:48:5244,1,"Bussière",48.756309,2.873909,0,0,OIF:SA:48:5244,Europe/Paris,,OIF, +OIF:SP:48:5246,1,"La Gonière",48.757508,2.865126,0,0,OIF:SA:48:5246,Europe/Paris,,OIF, +OIF:SP:48:5247,1,"La Houssiette",48.748921,2.875736,0,0,OIF:SA:48:5247,Europe/Paris,,OIF, +OIF:SP:48:5248,1,"La Houssiette",48.748914,2.875464,0,0,OIF:SA:48:5247,Europe/Paris,,OIF, +OIF:SP:48:5250,1,"Torcy RER",48.838391,2.655657,0,0,OIF:SA:8775837,Europe/Paris,,OIF, +OIF:SP:48:5251,1,"Monument",48.754161,2.877911,0,0,OIF:SA:48:5251,Europe/Paris,,OIF, +OIF:SP:48:5252,1,"Monument",48.754214,2.877993,0,0,OIF:SA:48:5251,Europe/Paris,,OIF, +OIF:SP:48:5253,1,"Vieux Moulin",48.747488,2.870746,0,0,OIF:SA:48:5253,Europe/Paris,,OIF, +OIF:SP:48:5254,1,"Vieux Moulin",48.747478,2.870909,0,0,OIF:SA:48:5253,Europe/Paris,,OIF, +OIF:SP:48:5257,1,"Armainvilliers",48.746302,2.603839,0,0,OIF:SA:13:11,Europe/Paris,,OIF, +OIF:SP:48:5258,1,"Armainvilliers",48.746248,2.603852,0,0,OIF:SA:13:11,Europe/Paris,,OIF, +OIF:SP:48:5265,1,"Clos Saint-Yon",48.753616,2.627692,0,0,OIF:SA:13:80,Europe/Paris,,OIF, +OIF:SP:48:5266,1,"Clos Saint-Yon",48.753536,2.627664,0,0,OIF:SA:13:80,Europe/Paris,,OIF, +OIF:SP:48:5275,1,"Hyverneaux Réveillon",48.732047,2.603358,0,0,OIF:SA:48:5275,Europe/Paris,,OIF, +OIF:SP:48:5276,1,"Hyverneaux Réveillon",48.731904,2.60314,0,0,OIF:SA:48:5275,Europe/Paris,,OIF, +OIF:SP:48:5277,1,"Pavé de Paris",48.74455,2.611549,0,0,OIF:SA:13:223,Europe/Paris,,OIF, +OIF:SP:48:5278,1,"Pavé de Paris",48.744414,2.61178,0,0,OIF:SA:13:223,Europe/Paris,,OIF, +OIF:SP:48:5280,1,"Ferrandière",48.797579,2.705037,0,0,OIF:SA:48:5280,Europe/Paris,,OIF, +OIF:SP:48:5281,1,"Curie",48.743772,2.621344,0,0,OIF:SA:48:5281,Europe/Paris,,OIF, +OIF:SP:48:5282,1,"Curie",48.743691,2.621344,0,0,OIF:SA:48:5281,Europe/Paris,,OIF, +OIF:SP:48:5283,1,"Romaine Vimont",48.755902,2.633754,0,0,OIF:SA:13:255,Europe/Paris,,OIF, +OIF:SP:48:5284,1,"Romaine Vimont",48.755893,2.633863,0,0,OIF:SA:13:255,Europe/Paris,,OIF, +OIF:SP:48:5285,1,"Rond-Point du Château",48.745334,2.614258,0,0,OIF:SA:13:260,Europe/Paris,,OIF, +OIF:SP:48:5286,1,"Rond-Point du Château",48.745343,2.614421,0,0,OIF:SA:13:260,Europe/Paris,,OIF, +OIF:SP:48:5290,1,"Collège A. de Garlande",48.799277,2.638084,0,0,OIF:SA:48:5290,Europe/Paris,,OIF, +OIF:SP:48:5291,1,"Village de Lésigny",48.746432,2.617662,0,0,OIF:SA:48:5291,Europe/Paris,,OIF, +OIF:SP:48:5292,1,"Village de Lésigny",48.746387,2.617526,0,0,OIF:SA:48:5291,Europe/Paris,,OIF, +OIF:SP:48:5293,1,"Balancerie",48.708176,2.762831,0,0,OIF:SA:48:5293,Europe/Paris,,OIF, +OIF:SP:48:5294,1,"Balancerie",48.708213,2.762723,0,0,OIF:SA:48:5293,Europe/Paris,,OIF, +OIF:SP:48:5295,1,"Briqueterie",48.698416,2.767572,0,0,OIF:SA:48:5295,Europe/Paris,,OIF, +OIF:SP:48:5297,1,"École de Liverdy",48.700369,2.774269,0,0,OIF:SA:48:5297,Europe/Paris,,OIF, +OIF:SP:48:5298,1,"École de Liverdy",48.700242,2.774417,0,0,OIF:SA:48:5297,Europe/Paris,,OIF, +OIF:SP:48:5300,1,"Gare de Roissy",48.795203,2.649392,0,0,OIF:SA:8711603,Europe/Paris,,OIF, +OIF:SP:48:5301,1,"Église de Liverdy",48.700666,2.776458,0,0,OIF:SA:48:5301,Europe/Paris,,OIF, +OIF:SP:48:5302,1,"Église de Liverdy",48.700648,2.77658,0,0,OIF:SA:48:5301,Europe/Paris,,OIF, +OIF:SP:48:5303,1,"Étangs",48.703936,2.781918,0,0,OIF:SA:48:5303,Europe/Paris,,OIF, +OIF:SP:48:5304,1,"Étangs",48.703836,2.782012,0,0,OIF:SA:48:5303,Europe/Paris,,OIF, +OIF:SP:48:5306,1,"Poincaré",48.7398,2.762398,0,0,OIF:SA:48:5306,Europe/Paris,,OIF, +OIF:SP:48:5308,1,"Caron",48.728249,2.871364,0,0,OIF:SA:48:5308,Europe/Paris,,OIF, +OIF:SP:48:5310,1,"Église de Pontault",48.782279,2.601004,0,0,OIF:SA:48:5310,Europe/Paris,,OIF, +OIF:SP:48:5312,1,"Mairie de Marles",48.728545,2.879519,0,0,OIF:SA:48:5312,Europe/Paris,,OIF, +OIF:SP:48:5320,1,"Les Forestières",48.799982,2.643489,0,0,OIF:SA:48:5320,Europe/Paris,,OIF, +OIF:SP:48:5321,1,"Centre Médical",48.762848,2.822761,0,0,OIF:SA:48:5321,Europe/Paris,,OIF, +OIF:SP:48:5322,1,"Centre Médical",48.762902,2.822844,0,0,OIF:SA:48:5321,Europe/Paris,,OIF, +OIF:SP:48:5323,1,"Stade de Neufmoutiers",48.769486,2.830343,0,0,OIF:SA:48:5323,Europe/Paris,,OIF, +OIF:SP:48:5324,1,"Stade de Neufmoutiers",48.769918,2.83017,0,0,OIF:SA:48:5323,Europe/Paris,,OIF, +OIF:SP:48:5325,1,"La Salle des Fêtes",48.771335,2.828933,0,0,OIF:SA:48:5325,Europe/Paris,,OIF, +OIF:SP:48:5326,1,"La Salle des Fêtes",48.771406,2.829001,0,0,OIF:SA:48:5325,Europe/Paris,,OIF, +OIF:SP:48:5331,1,"Varin",48.796709,2.637049,0,0,OIF:SA:48:5331,Europe/Paris,,OIF, +OIF:SP:48:5332,1,"Varin",48.796898,2.637145,0,0,OIF:SA:48:5331,Europe/Paris,,OIF, +OIF:SP:48:5335,1,"Anatole France",48.771448,2.685107,0,0,OIF:SA:48:5335,Europe/Paris,,OIF, +OIF:SP:48:5337,1,"Anouilh",48.762787,2.695776,0,0,OIF:SA:48:5337,Europe/Paris,,OIF, +OIF:SP:48:5338,1,"Anouilh",48.762706,2.695762,0,0,OIF:SA:48:5337,Europe/Paris,,OIF, +OIF:SP:48:5340,1,"Commerce",48.790931,2.663827,0,0,OIF:SA:48:5340,Europe/Paris,,OIF, +OIF:SP:48:5341,1,"Antenne",48.759562,2.667137,0,0,OIF:SA:48:5341,Europe/Paris,,OIF, +OIF:SP:48:5342,1,"Antenne",48.759482,2.66715,0,0,OIF:SA:48:5341,Europe/Paris,,OIF, +OIF:SP:48:5343,1,"Béatrice",48.763677,2.674382,0,0,OIF:SA:48:5343,Europe/Paris,,OIF, +OIF:SP:48:5344,1,"Béatrice",48.763596,2.67445,0,0,OIF:SA:48:5343,Europe/Paris,,OIF, +OIF:SP:48:5345,1,"Beaudelet",48.766944,2.691209,0,0,OIF:SA:48:5345,Europe/Paris,,OIF, +OIF:SP:48:5346,1,"Beaudelet",48.766882,2.691141,0,0,OIF:SA:48:5345,Europe/Paris,,OIF, +OIF:SP:48:5347,1,"Mozart",48.758017,2.692005,0,0,OIF:SA:48:5347,Europe/Paris,,OIF, +OIF:SP:48:5348,1,"Mozart",48.757972,2.691923,0,0,OIF:SA:48:5347,Europe/Paris,,OIF, +OIF:SP:48:5351,1,"Brèche aux Loups",48.764721,2.680168,0,0,OIF:SA:48:5351,Europe/Paris,,OIF, +OIF:SP:48:5352,1,"Brèche aux Loups",48.764747,2.680412,0,0,OIF:SA:48:5351,Europe/Paris,,OIF, +OIF:SP:48:5353,1,"Aristide Briand",48.768129,2.67346,0,0,OIF:SA:48:5353,Europe/Paris,,OIF, +OIF:SP:48:5354,1,"Aristide Briand",48.768139,2.673092,0,0,OIF:SA:48:5353,Europe/Paris,,OIF, +OIF:SP:48:5355,1,"Camélias",48.75851,2.673846,0,0,OIF:SA:48:5355,Europe/Paris,,OIF, +OIF:SP:48:5356,1,"Camélias",48.758519,2.673764,0,0,OIF:SA:48:5355,Europe/Paris,,OIF, +OIF:SP:48:5357,1,"Campanules",48.758978,2.670572,0,0,OIF:SA:48:5357,Europe/Paris,,OIF, +OIF:SP:48:5358,1,"Campanules",48.758977,2.670681,0,0,OIF:SA:48:5357,Europe/Paris,,OIF, +OIF:SP:48:5361,1,"Bois Briard",48.79731,2.641324,0,0,OIF:SA:48:5361,Europe/Paris,,OIF, +OIF:SP:48:5362,1,"Bois Briard",48.797066,2.641785,0,0,OIF:SA:48:5361,Europe/Paris,,OIF, +OIF:SP:48:5363,1,"Pierrerie",48.79466,2.644233,0,0,OIF:SA:48:5363,Europe/Paris,,OIF, +OIF:SP:48:5364,1,"Pierrerie",48.794696,2.64388,0,0,OIF:SA:48:5363,Europe/Paris,,OIF, +OIF:SP:48:5367,1,"Val des Dames",48.740546,2.752062,0,0,OIF:SA:48:5367,Europe/Paris,,OIF, +OIF:SP:48:5368,1,"Val des Dames",48.740582,2.752048,0,0,OIF:SA:48:5367,Europe/Paris,,OIF, +OIF:SP:48:5370,1,"République",48.786466,2.660017,0,0,OIF:SA:48:5370,Europe/Paris,,OIF, +OIF:SP:48:5371,1,"Cognet",48.770392,2.677227,0,0,OIF:SA:48:5371,Europe/Paris,,OIF, +OIF:SP:48:5375,1,"Coste et Bellonte",48.756437,2.691233,0,0,OIF:SA:48:5375,Europe/Paris,,OIF, +OIF:SP:48:5376,1,"Coste et Bellonte",48.756509,2.691342,0,0,OIF:SA:48:5375,Europe/Paris,,OIF, +OIF:SP:48:5377,1,"Église d'Ozoir",48.762698,2.667483,0,0,OIF:SA:48:5377,Europe/Paris,,OIF, +OIF:SP:48:5378,1,"Église d'Ozoir",48.762608,2.667578,0,0,OIF:SA:48:5377,Europe/Paris,,OIF, +OIF:SP:48:5380,1,"Prieuré",48.787764,2.661726,0,0,OIF:SA:48:5380,Europe/Paris,,OIF, +OIF:SP:48:5381,1,"Einstein",48.76142,2.687175,0,0,OIF:SA:48:5381,Europe/Paris,,OIF, +OIF:SP:48:5383,1,"Bois Prieur",48.776517,2.67875,0,0,OIF:SA:48:5383,Europe/Paris,,OIF, +OIF:SP:48:5384,1,"Bois Prieur",48.77658,2.678682,0,0,OIF:SA:48:5383,Europe/Paris,,OIF, +OIF:SP:48:5385,1,"Gruet",48.772517,2.675976,0,0,OIF:SA:48:5385,Europe/Paris,,OIF, +OIF:SP:48:5386,1,"Gruet",48.7724,2.675799,0,0,OIF:SA:48:5385,Europe/Paris,,OIF, +OIF:SP:48:5387,1,"Anne Frank",48.778554,2.68011,0,0,OIF:SA:48:5387,Europe/Paris,,OIF, +OIF:SP:48:5388,1,"Anne Frank",48.778213,2.679794,0,0,OIF:SA:48:5387,Europe/Paris,,OIF, +OIF:SP:48:5390,1,"Ancel de Garlande",48.788526,2.662696,0,0,OIF:SA:48:5390,Europe/Paris,,OIF, +OIF:SP:48:5391,1,"Ferme Pereire",48.757588,2.700023,0,0,OIF:SA:48:5391,Europe/Paris,,OIF, +OIF:SP:48:5392,1,"Ferme Pereire",48.757678,2.700132,0,0,OIF:SA:48:5391,Europe/Paris,,OIF, +OIF:SP:48:5393,1,"Jaurès",48.769213,2.671264,0,0,OIF:SA:48:5393,Europe/Paris,,OIF, +OIF:SP:48:5394,1,"Jaurès",48.769357,2.671278,0,0,OIF:SA:48:5393,Europe/Paris,,OIF, +OIF:SP:48:5395,1,"Kessel",48.761524,2.697277,0,0,OIF:SA:48:5395,Europe/Paris,,OIF, +OIF:SP:48:5396,1,"Kessel",48.761434,2.697262,0,0,OIF:SA:48:5395,Europe/Paris,,OIF, +OIF:SP:48:5397,1,"La Ferme",48.761791,2.664228,0,0,OIF:SA:48:5397,Europe/Paris,,OIF, +OIF:SP:48:5398,1,"La Ferme",48.762005,2.664542,0,0,OIF:SA:48:5397,Europe/Paris,,OIF, +OIF:SP:48:5401,1,"La Ferrière",48.760896,2.678633,0,0,OIF:SA:48:5401,Europe/Paris,,OIF, +OIF:SP:48:5402,1,"La Ferrière",48.760654,2.678455,0,0,OIF:SA:48:5401,Europe/Paris,,OIF, +OIF:SP:48:5403,1,"Lavoisier",48.770345,2.681021,0,0,OIF:SA:48:5403,Europe/Paris,,OIF, +OIF:SP:48:5405,1,"Leclerc",48.764921,2.672949,0,0,OIF:SA:48:5405,Europe/Paris,,OIF, +OIF:SP:48:5406,1,"Leclerc",48.76449,2.672811,0,0,OIF:SA:48:5405,Europe/Paris,,OIF, +OIF:SP:48:5411,1,"Leconte de Lisle",48.757175,2.696934,0,0,OIF:SA:48:5411,Europe/Paris,,OIF, +OIF:SP:48:5412,1,"Leconte de Lisle",48.757067,2.69692,0,0,OIF:SA:48:5411,Europe/Paris,,OIF, +OIF:SP:48:5416,1,"Louis Armand",48.765,2.689102,0,0,OIF:SA:48:5416,Europe/Paris,,OIF, +OIF:SP:48:5417,1,"Mairie d'Ozoir",48.762207,2.672728,0,0,OIF:SA:48:5417,Europe/Paris,,OIF, +OIF:SP:48:5418,1,"Mairie d'Ozoir",48.762135,2.672822,0,0,OIF:SA:48:5417,Europe/Paris,,OIF, +OIF:SP:48:5421,1,"Marceau",48.777931,2.681125,0,0,OIF:SA:48:5421,Europe/Paris,,OIF, +OIF:SP:48:5422,1,"Marceau",48.778273,2.680924,0,0,OIF:SA:48:5421,Europe/Paris,,OIF, +OIF:SP:48:5423,1,"Margotins",48.775513,2.678022,0,0,OIF:SA:48:5423,Europe/Paris,,OIF, +OIF:SP:48:5424,1,"Margotins",48.775369,2.677858,0,0,OIF:SA:48:5423,Europe/Paris,,OIF, +OIF:SP:48:5431,1,"Poirier Rouge",48.77399,2.685478,0,0,OIF:SA:48:5431,Europe/Paris,,OIF, +OIF:SP:48:5432,1,"Poirier Rouge",48.773855,2.685504,0,0,OIF:SA:48:5431,Europe/Paris,,OIF, +OIF:SP:48:5435,1,"Pyramide",48.760127,2.698681,0,0,OIF:SA:48:5435,Europe/Paris,,OIF, +OIF:SP:48:5437,1,"Chevry",48.759143,2.672572,0,0,OIF:SA:48:5437,Europe/Paris,,OIF, +OIF:SP:48:5438,1,"Chevry",48.759152,2.672654,0,0,OIF:SA:48:5437,Europe/Paris,,OIF, +OIF:SP:48:5440,1,"Collège les Hyverneaux",48.747578,2.623105,0,0,OIF:SA:13:172,Europe/Paris,,OIF, +OIF:SP:48:5441,1,"Schumann",48.761366,2.687161,0,0,OIF:SA:48:5441,Europe/Paris,,OIF, +OIF:SP:48:5442,1,"Schumann",48.761384,2.687038,0,0,OIF:SA:48:5441,Europe/Paris,,OIF, +OIF:SP:48:5443,1,"Sécurité Sociale",48.773146,2.678931,0,0,OIF:SA:48:5443,Europe/Paris,,OIF, +OIF:SP:48:5447,1,"Stade des 3 Sapins",48.762243,2.679172,0,0,OIF:SA:48:5447,Europe/Paris,,OIF, +OIF:SP:48:5448,1,"Stade des 3 Sapins",48.762297,2.679281,0,0,OIF:SA:48:5447,Europe/Paris,,OIF, +OIF:SP:48:5450,1,"Rue Leduc",48.715681,2.581975,0,0,OIF:SA:48:5450,Europe/Paris,,OIF, +OIF:SP:48:5451,1,"Tulipes",48.757022,2.675413,0,0,OIF:SA:48:5451,Europe/Paris,,OIF, +OIF:SP:48:5452,1,"Tulipes",48.756959,2.675494,0,0,OIF:SA:48:5451,Europe/Paris,,OIF, +OIF:SP:48:5455,1,"Jules Verne",48.755063,2.693929,0,0,OIF:SA:48:5455,Europe/Paris,,OIF, +OIF:SP:48:5456,1,"Jules Verne",48.755009,2.693983,0,0,OIF:SA:48:5455,Europe/Paris,,OIF, +OIF:SP:48:5457,1,"Poirier",48.77013,2.66802,0,0,OIF:SA:48:5457,Europe/Paris,,OIF, +OIF:SP:48:5458,1,"Poirier",48.770472,2.667859,0,0,OIF:SA:48:5457,Europe/Paris,,OIF, +OIF:SP:48:5460,1,"Châtelet",48.745359,2.590949,0,0,OIF:SA:48:5460,Europe/Paris,,OIF, +OIF:SP:48:5461,1,"ZI Chevalier",48.767179,2.684902,0,0,OIF:SA:48:5461,Europe/Paris,,OIF, +OIF:SP:48:5462,1,"ZI Chevalier",48.767196,2.685092,0,0,OIF:SA:48:5461,Europe/Paris,,OIF, +OIF:SP:48:5463,1,"Bleuets",48.796965,2.609133,0,0,OIF:SA:48:5463,Europe/Paris,,OIF, +OIF:SP:48:5464,1,"Bleuets",48.797776,2.608253,0,0,OIF:SA:48:5463,Europe/Paris,,OIF, +OIF:SP:48:5465,1,"Bouquet",48.798376,2.605073,0,0,OIF:SA:48:5465,Europe/Paris,,OIF, +OIF:SP:48:5466,1,"Bouquet",48.798493,2.605223,0,0,OIF:SA:48:5465,Europe/Paris,,OIF, +OIF:SP:48:5467,1,"Cimetière de Pontault",48.785989,2.602071,0,0,OIF:SA:48:5467,Europe/Paris,,OIF, +OIF:SP:48:5468,1,"Cimetière de Pontault",48.786617,2.6024,0,0,OIF:SA:48:5467,Europe/Paris,,OIF, +OIF:SP:48:5470,1,"Clos Prieur",48.747591,2.636058,0,0,OIF:SA:48:5470,Europe/Paris,,OIF, +OIF:SP:48:5473,1,"Etoile",48.792752,2.604241,0,0,OIF:SA:48:5473,Europe/Paris,,OIF, +OIF:SP:48:5474,1,"Etoile",48.792653,2.604322,0,0,OIF:SA:48:5473,Europe/Paris,,OIF, +OIF:SP:48:5475,1,"Hôtel de Ville de Pontault",48.800537,2.60756,0,0,OIF:SA:35:54410,Europe/Paris,,OIF, +OIF:SP:48:5476,1,"Hôtel de Ville de Pontault",48.800744,2.607303,0,0,OIF:SA:35:54410,Europe/Paris,,OIF, +OIF:SP:48:5477,1,"Libération",48.780589,2.605294,0,0,OIF:SA:48:5477,Europe/Paris,,OIF, +OIF:SP:48:5478,1,"Libération",48.780535,2.605157,0,0,OIF:SA:48:5477,Europe/Paris,,OIF, +OIF:SP:48:5480,1,"Clos la Vigne",48.753765,2.646982,0,0,OIF:SA:48:5480,Europe/Paris,,OIF, +OIF:SP:48:5481,1,"Lycée Claudel",48.790257,2.614253,0,0,OIF:SA:48:5481,Europe/Paris,,OIF, +OIF:SP:48:5482,1,"Lycée Claudel",48.790113,2.614498,0,0,OIF:SA:48:5481,Europe/Paris,,OIF, +OIF:SP:48:5483,1,"Place du Muguet",48.807436,2.60512,0,0,OIF:SA:48:5483,Europe/Paris,,OIF, +OIF:SP:48:5485,1,"Bartholomé",48.794616,2.636696,0,0,OIF:SA:48:5485,Europe/Paris,,OIF, +OIF:SP:48:5486,1,"Bartholomé",48.795092,2.636781,0,0,OIF:SA:48:5485,Europe/Paris,,OIF, +OIF:SP:48:5487,1,"Salle des Fêtes Jacques Brel",48.795664,2.611942,0,0,OIF:SA:48:5487,Europe/Paris,,OIF, +OIF:SP:48:5488,1,"Salle des Fêtes Jacques Brel",48.795727,2.611916,0,0,OIF:SA:48:5487,Europe/Paris,,OIF, +OIF:SP:48:5491,1,"Grand Étang",48.792553,2.638466,0,0,OIF:SA:48:5491,Europe/Paris,,OIF, +OIF:SP:48:5492,1,"Grand Étang",48.792418,2.638697,0,0,OIF:SA:48:5491,Europe/Paris,,OIF, +OIF:SP:48:5493,1,"Stade Lucien Morane",48.801953,2.605159,0,0,OIF:SA:48:5493,Europe/Paris,,OIF, +OIF:SP:48:5494,1,"Stade Lucien Morane",48.802008,2.605037,0,0,OIF:SA:48:5493,Europe/Paris,,OIF, +OIF:SP:48:5495,1,"Autheuil",48.721528,2.738596,0,0,OIF:SA:48:5495,Europe/Paris,,OIF, +OIF:SP:48:5496,1,"Autheuil",48.72151,2.738705,0,0,OIF:SA:48:5495,Europe/Paris,,OIF, +OIF:SP:48:5498,1,"La Brosse",48.711009,2.752491,0,0,OIF:SA:48:5497,Europe/Paris,,OIF, +OIF:SP:48:5502,1,"Les Fontaines",48.705753,2.751797,0,0,OIF:SA:48:5501,Europe/Paris,,OIF, +OIF:SP:48:5503,1,"La Marsange 1",48.713927,2.740208,0,0,OIF:SA:48:5503,Europe/Paris,,OIF, +OIF:SP:48:5504,1,"La Marsange 1",48.713999,2.740155,0,0,OIF:SA:48:5503,Europe/Paris,,OIF, +OIF:SP:48:5507,1,"La Marsange 2",48.714807,2.73796,0,0,OIF:SA:48:5507,Europe/Paris,,OIF, +OIF:SP:48:5508,1,"La Marsange 2",48.714671,2.73819,0,0,OIF:SA:48:5507,Europe/Paris,,OIF, +OIF:SP:48:5511,1,"Place de Presles",48.715947,2.741093,0,0,OIF:SA:48:5511,Europe/Paris,,OIF, +OIF:SP:48:5512,1,"Place de Presles",48.715802,2.741486,0,0,OIF:SA:48:5511,Europe/Paris,,OIF, +OIF:SP:48:5514,1,"Croix Rouge",48.700476,2.746622,0,0,OIF:SA:48:5513,Europe/Paris,,OIF, +OIF:SP:48:5523,1,"Rue de l'Avenue",48.731949,2.626307,0,0,OIF:SA:48:5523,Europe/Paris,,OIF, +OIF:SP:48:5524,1,"Rue de l'Avenue",48.731805,2.626483,0,0,OIF:SA:48:5523,Europe/Paris,,OIF, +OIF:SP:48:5525,1,"Collège Delacroix",48.795586,2.66421,0,0,OIF:SA:48:5525,Europe/Paris,,OIF, +OIF:SP:48:5526,1,"Collège Delacroix",48.795846,2.66432,0,0,OIF:SA:48:5525,Europe/Paris,,OIF, +OIF:SP:48:5535,1,"Manoir",48.790448,2.672693,0,0,OIF:SA:48:5535,Europe/Paris,,OIF, +OIF:SP:48:5536,1,"Manoir",48.79052,2.672557,0,0,OIF:SA:48:5535,Europe/Paris,,OIF, +OIF:SP:48:5543,1,"Wattripont",48.789769,2.648299,0,0,OIF:SA:48:5543,Europe/Paris,,OIF, +OIF:SP:48:5544,1,"Wattripont",48.789787,2.648136,0,0,OIF:SA:48:5543,Europe/Paris,,OIF, +OIF:SP:48:5545,1,"Lavoir",48.683253,2.954308,0,0,OIF:SA:48:5545,Europe/Paris,,OIF, +OIF:SP:48:5546,1,"Lavoir",48.6832,2.954212,0,0,OIF:SA:48:5545,Europe/Paris,,OIF, +OIF:SP:48:5547,1,"Morbras",48.791611,2.641467,0,0,OIF:SA:48:5547,Europe/Paris,,OIF, +OIF:SP:48:5548,1,"Morbras",48.791657,2.641155,0,0,OIF:SA:48:5547,Europe/Paris,,OIF, +OIF:SP:48:5551,1,"Maladrerie",48.684247,2.963591,0,0,OIF:SA:48:5551,Europe/Paris,,OIF, +OIF:SP:48:5552,1,"Maladrerie",48.684346,2.963579,0,0,OIF:SA:48:5551,Europe/Paris,,OIF, +OIF:SP:48:5553,1,"Saint-Nicolas",48.681467,2.958983,0,0,OIF:SA:48:5553,Europe/Paris,,OIF, +OIF:SP:48:5554,1,"Saint-Nicolas",48.681404,2.958969,0,0,OIF:SA:48:5553,Europe/Paris,,OIF, +OIF:SP:48:5557,1,"Croix Blanche",48.718421,2.607282,0,0,OIF:SA:48:5557,Europe/Paris,,OIF, +OIF:SP:48:5558,1,"Croix Blanche",48.718324,2.60667,0,0,OIF:SA:48:5557,Europe/Paris,,OIF, +OIF:SP:48:5560,1,"Gretz SNCF (Passerelle)",48.745432,2.729349,0,0,OIF:SA:8711601,Europe/Paris,,OIF, +OIF:SP:48:5561,1,"Mairie de Servon",48.716009,2.588008,0,0,OIF:SA:13:146,Europe/Paris,,OIF, +OIF:SP:48:5562,1,"Mairie de Servon",48.715982,2.588103,0,0,OIF:SA:13:146,Europe/Paris,,OIF, +OIF:SP:48:5563,1,"Pied de Coq",48.715773,2.593521,0,0,OIF:SA:48:5563,Europe/Paris,,OIF, +OIF:SP:48:5564,1,"Pied de Coq",48.715845,2.593549,0,0,OIF:SA:48:5563,Europe/Paris,,OIF, +OIF:SP:48:5565,1,"La Jarrie",48.718903,2.600872,0,0,OIF:SA:48:5565,Europe/Paris,,OIF, +OIF:SP:48:5566,1,"La Jarrie",48.718894,2.600791,0,0,OIF:SA:48:5565,Europe/Paris,,OIF, +OIF:SP:48:5570,1,"ZA Pontillault",48.797803,2.62711,0,0,OIF:SA:48:5570,Europe/Paris,,OIF, +OIF:SP:48:5571,1,"Burelle",48.656482,2.703644,0,0,OIF:SA:13:163,Europe/Paris,,OIF, +OIF:SP:48:5572,1,"Burelle",48.656447,2.703264,0,0,OIF:SA:13:163,Europe/Paris,,OIF, +OIF:SP:48:5573,1,"Église de Soignolles(École)",48.653943,2.698837,0,0,OIF:SA:48:5573,Europe/Paris,,OIF, +OIF:SP:48:5574,1,"Église de Soignolles(École)",48.653944,2.698715,0,0,OIF:SA:48:5573,Europe/Paris,,OIF, +OIF:SP:48:5575,1,"Hardillières",48.651228,2.690176,0,0,OIF:SA:48:5575,Europe/Paris,,OIF, +OIF:SP:48:5576,1,"Hardillières",48.651291,2.690258,0,0,OIF:SA:48:5575,Europe/Paris,,OIF, +OIF:SP:48:5577,1,"Pont",48.655972,2.69995,0,0,OIF:SA:13:169,Europe/Paris,,OIF, +OIF:SP:48:5578,1,"Pont",48.656043,2.699978,0,0,OIF:SA:13:169,Europe/Paris,,OIF, +OIF:SP:48:5581,1,"Cimetière Allemand",48.657233,2.710624,0,0,OIF:SA:48:5581,Europe/Paris,,OIF, +OIF:SP:48:5582,1,"Cimetière Allemand",48.657287,2.710692,0,0,OIF:SA:48:5581,Europe/Paris,,OIF, +OIF:SP:48:5583,1,"Mairie de Solers",48.658202,2.71675,0,0,OIF:SA:13:148,Europe/Paris,,OIF, +OIF:SP:48:5584,1,"Mairie de Solers",48.658185,2.716614,0,0,OIF:SA:13:148,Europe/Paris,,OIF, +OIF:SP:48:5585,1,"Mendès France 1",48.798093,2.633737,0,0,OIF:SA:48:5585,Europe/Paris,,OIF, +OIF:SP:48:5586,1,"Mendès France 1",48.797958,2.633695,0,0,OIF:SA:48:5585,Europe/Paris,,OIF, +OIF:SP:48:5593,1,"Bourgognerie",48.735019,2.769465,0,0,OIF:SA:48:5593,Europe/Paris,,OIF, +OIF:SP:48:5594,1,"Bourgognerie",48.735254,2.769345,0,0,OIF:SA:48:5593,Europe/Paris,,OIF, +OIF:SP:48:5595,1,"Mendès France 2",48.799952,2.634333,0,0,OIF:SA:48:5595,Europe/Paris,,OIF, +OIF:SP:48:5596,1,"Mendès France 2",48.800043,2.633612,0,0,OIF:SA:48:5595,Europe/Paris,,OIF, +OIF:SP:48:5601,1,"Combreux",48.729382,2.764839,0,0,OIF:SA:48:5601,Europe/Paris,,OIF, +OIF:SP:48:5602,1,"Combreux",48.729356,2.764663,0,0,OIF:SA:48:5601,Europe/Paris,,OIF, +OIF:SP:48:5603,1,"Cottages",48.740367,2.776916,0,0,OIF:SA:48:5603,Europe/Paris,,OIF, +OIF:SP:48:5604,1,"Cottages",48.740251,2.776766,0,0,OIF:SA:48:5603,Europe/Paris,,OIF, +OIF:SP:48:5605,1,"De Gaulle",48.746164,2.762368,0,0,OIF:SA:48:5605,Europe/Paris,,OIF, +OIF:SP:48:5606,1,"De Gaulle",48.746101,2.76234,0,0,OIF:SA:48:5605,Europe/Paris,,OIF, +OIF:SP:48:5612,1,"Foyer Rural",48.740454,2.765379,0,0,OIF:SA:48:5612,Europe/Paris,,OIF, +OIF:SP:48:5617,1,"Maréchal Foch",48.740031,2.772918,0,0,OIF:SA:48:5617,Europe/Paris,,OIF, +OIF:SP:48:5618,1,"Maréchal Foch",48.739986,2.773013,0,0,OIF:SA:48:5617,Europe/Paris,,OIF, +OIF:SP:48:5621,1,"Origny",48.742935,2.760235,0,0,OIF:SA:48:5621,Europe/Paris,,OIF, +OIF:SP:48:5622,1,"Origny",48.742864,2.760126,0,0,OIF:SA:48:5621,Europe/Paris,,OIF, +OIF:SP:48:5623,1,"Penthièvre",48.742521,2.772925,0,0,OIF:SA:48:5623,Europe/Paris,,OIF, +OIF:SP:48:5624,1,"Penthièvre",48.742566,2.772898,0,0,OIF:SA:48:5623,Europe/Paris,,OIF, +OIF:SP:48:5625,1,"Closeau",48.736446,2.780008,0,0,OIF:SA:48:5625,Europe/Paris,,OIF, +OIF:SP:48:5626,1,"Closeau",48.735211,2.780827,0,0,OIF:SA:48:5625,Europe/Paris,,OIF, +OIF:SP:48:5627,1,"Plume Vert",48.758616,2.677544,0,0,OIF:SA:48:5627,Europe/Paris,,OIF, +OIF:SP:48:5628,1,"Plume Vert",48.758464,2.67738,0,0,OIF:SA:48:5627,Europe/Paris,,OIF, +OIF:SP:48:5630,1,"Collège Arthur Chaussy",48.688529,2.601342,0,0,OIF:SA:13:49,Europe/Paris,,OIF, +OIF:SP:48:5631,1,"Pompiers",48.74221,2.779351,0,0,OIF:SA:48:5631,Europe/Paris,,OIF, +OIF:SP:48:5632,1,"Pompiers",48.742173,2.779487,0,0,OIF:SA:48:5631,Europe/Paris,,OIF, +OIF:SP:48:5633,1,"Pont",48.744422,2.776529,0,0,OIF:SA:48:5633,Europe/Paris,,OIF, +OIF:SP:48:5634,1,"Pont",48.744477,2.776299,0,0,OIF:SA:48:5633,Europe/Paris,,OIF, +OIF:SP:48:5635,1,"Poste de Tournan",48.738763,2.76826,0,0,OIF:SA:48:5635,Europe/Paris,,OIF, +OIF:SP:48:5636,1,"Poste de Tournan",48.738745,2.768137,0,0,OIF:SA:48:5635,Europe/Paris,,OIF, +OIF:SP:48:5637,1,"Psr",48.742595,2.769963,0,0,OIF:SA:48:5637,Europe/Paris,,OIF, +OIF:SP:48:5638,1,"Psr",48.742604,2.770031,0,0,OIF:SA:48:5637,Europe/Paris,,OIF, +OIF:SP:48:5641,1,"Cézanne",48.797129,2.655513,0,0,OIF:SA:48:5641,Europe/Paris,,OIF, +OIF:SP:48:5642,1,"Cézanne",48.797047,2.655621,0,0,OIF:SA:48:5641,Europe/Paris,,OIF, +OIF:SP:48:5643,1,"Hameau de Ville",48.741657,2.792366,0,0,OIF:SA:48:5643,Europe/Paris,,OIF, +OIF:SP:48:5644,1,"Hameau de Ville",48.741636,2.793072,0,0,OIF:SA:48:5643,Europe/Paris,,OIF, +OIF:SP:48:5646,1,"Sécurité Sociale de Tournan",48.738428,2.773829,0,0,OIF:SA:48:5646,Europe/Paris,,OIF, +OIF:SP:48:5647,1,"Pinsonnière",48.798005,2.660429,0,0,OIF:SA:48:5647,Europe/Paris,,OIF, +OIF:SP:48:5648,1,"Pinsonnière",48.798149,2.660281,0,0,OIF:SA:48:5647,Europe/Paris,,OIF, +OIF:SP:48:5651,1,"Fragonnard",48.796866,2.663007,0,0,OIF:SA:48:5651,Europe/Paris,,OIF, +OIF:SP:48:5652,1,"Fragonnard",48.797011,2.662423,0,0,OIF:SA:48:5651,Europe/Paris,,OIF, +OIF:SP:48:5657,1,"Renardière",48.7942,2.661671,0,0,OIF:SA:48:5657,Europe/Paris,,OIF, +OIF:SP:48:5658,1,"Renardière",48.794237,2.661385,0,0,OIF:SA:48:5657,Europe/Paris,,OIF, +OIF:SP:48:5661,1,"Rue de Villé",48.741336,2.775076,0,0,OIF:SA:48:5661,Europe/Paris,,OIF, +OIF:SP:48:5662,1,"Rue de Villé",48.741336,2.774872,0,0,OIF:SA:48:5661,Europe/Paris,,OIF, +OIF:SP:48:5664,1,"ZI Eiffel",48.737623,2.77514,0,0,OIF:SA:48:5664,Europe/Paris,,OIF, +OIF:SP:48:5667,1,"Petit Pont",48.793932,2.654527,0,0,OIF:SA:48:5667,Europe/Paris,,OIF, +OIF:SP:48:5668,1,"Petit Pont",48.794085,2.654365,0,0,OIF:SA:48:5667,Europe/Paris,,OIF, +OIF:SP:48:5683,1,"Parc des Sources",48.792373,2.652395,0,0,OIF:SA:48:5683,Europe/Paris,,OIF, +OIF:SP:48:5684,1,"Parc des Sources",48.792409,2.652532,0,0,OIF:SA:48:5683,Europe/Paris,,OIF, +OIF:SP:48:5685,1,"Sapins",48.788983,2.656401,0,0,OIF:SA:48:5685,Europe/Paris,,OIF, +OIF:SP:48:5686,1,"Sapins",48.789576,2.656554,0,0,OIF:SA:48:5685,Europe/Paris,,OIF, +OIF:SP:48:5691,1,"Mairie de Verneuil",48.644554,2.836239,0,0,OIF:SA:48:5691,Europe/Paris,,OIF, +OIF:SP:48:5692,1,"Mairie de Verneuil",48.644482,2.836252,0,0,OIF:SA:48:5691,Europe/Paris,,OIF, +OIF:SP:48:5697,1,"Grande Haie",48.785172,2.609289,0,0,OIF:SA:48:5697,Europe/Paris,,OIF, +OIF:SP:48:5698,1,"Grande Haie",48.785307,2.609534,0,0,OIF:SA:48:5697,Europe/Paris,,OIF, +OIF:SP:48:5721,1,"Masséna",48.800169,2.618837,0,0,OIF:SA:48:5721,Europe/Paris,,OIF, +OIF:SP:48:5722,1,"Masséna",48.800133,2.618769,0,0,OIF:SA:48:5721,Europe/Paris,,OIF, +OIF:SP:48:5735,1,"Danton Stade",48.76086,2.678687,0,0,OIF:SA:48:5735,Europe/Paris,,OIF, +OIF:SP:48:5736,1,"Danton Stade",48.760896,2.678565,0,0,OIF:SA:48:5735,Europe/Paris,,OIF, +OIF:SP:48:5737,1,"Belle Croix",48.758445,2.692919,0,0,OIF:SA:48:5737,Europe/Paris,,OIF, +OIF:SP:48:5738,1,"Belle Croix",48.758319,2.693162,0,0,OIF:SA:48:5737,Europe/Paris,,OIF, +OIF:SP:48:5741,1,"Haras Campus Saint-Thèrèse",48.65562,2.848855,0,0,OIF:SA:48:5741,Europe/Paris,,OIF, +OIF:SP:48:5805,1,"Poste de Servon",48.715871,2.58529,0,0,OIF:SA:13:245,Europe/Paris,,OIF, +OIF:SP:48:5806,1,"Poste de Servon",48.715898,2.585236,0,0,OIF:SA:13:245,Europe/Paris,,OIF, +OIF:SP:48:5901,1,"Guérin",48.713601,2.583595,0,0,OIF:SA:48:5901,Europe/Paris,,OIF, +OIF:SP:48:5902,1,"Guérin",48.71361,2.583663,0,0,OIF:SA:48:5901,Europe/Paris,,OIF, +OIF:SP:48:5909,1,"Coubert Centre de Loisirs",48.670898,2.692292,0,0,OIF:SA:48:5909,Europe/Paris,,OIF, +OIF:SP:48:5910,1,"Coubert Centre de Loisirs",48.671087,2.692239,0,0,OIF:SA:48:5909,Europe/Paris,,OIF, +OIF:SP:48:5911,1,"Méliès",48.725382,2.663142,0,0,OIF:SA:48:5911,Europe/Paris,,OIF, +OIF:SP:48:5917,1,"Hameau de Retal",48.686771,2.778485,0,0,OIF:SA:48:5917,Europe/Paris,,OIF, +OIF:SP:48:5941,1,"3ème Avenue",48.785199,2.656582,0,0,OIF:SA:48:5941,Europe/Paris,,OIF, +OIF:SP:48:5942,1,"3ème Avenue",48.78456,2.656646,0,0,OIF:SA:48:5941,Europe/Paris,,OIF, +OIF:SP:48:5943,1,"2ème Avenue",48.786601,2.656346,0,0,OIF:SA:48:5943,Europe/Paris,,OIF, +OIF:SP:48:5944,1,"2ème Avenue",48.786358,2.656439,0,0,OIF:SA:48:5943,Europe/Paris,,OIF, +OIF:SP:48:5947,1,"Roissy RER (Avenue Vlaminck)",48.794267,2.64989,0,0,OIF:SA:8711603,Europe/Paris,,OIF, +OIF:SP:48:5948,1,"Roissy RER (Avenue Vlaminck)",48.794321,2.650013,0,0,OIF:SA:8711603,Europe/Paris,,OIF, +OIF:SP:48:5955,1,"Val d'Europe RER",48.855165,2.773791,0,0,OIF:SA:8773006,Europe/Paris,,OIF, +OIF:SP:48:5956,1,"Val d'Europe RER",48.855083,2.773981,0,0,OIF:SA:8773006,Europe/Paris,,OIF, +OIF:SP:48:5961,1,"Réveillon Plr",48.735194,2.595071,0,0,OIF:SA:13:254,Europe/Paris,,OIF, +OIF:SP:48:5962,1,"Réveillon Plr",48.735248,2.595112,0,0,OIF:SA:13:254,Europe/Paris,,OIF, +OIF:SP:48:5963,1,"Réveillon Écoles",48.733219,2.597833,0,0,OIF:SA:13:251,Europe/Paris,,OIF, +OIF:SP:48:5964,1,"Réveillon Écoles",48.733057,2.59786,0,0,OIF:SA:13:251,Europe/Paris,,OIF, +OIF:SP:48:5966,1,"Clos Prieur",48.747563,2.636601,0,0,OIF:SA:48:5470,Europe/Paris,,OIF, +OIF:SP:48:5971,1,"Renardière - Delacroix",48.794306,2.662406,0,0,OIF:SA:48:5971,Europe/Paris,,OIF, +OIF:SP:48:5972,1,"Renardière - Delacroix",48.794198,2.662269,0,0,OIF:SA:48:5971,Europe/Paris,,OIF, +OIF:SP:48:5973,1,"Village de Flore",48.791928,2.664241,0,0,OIF:SA:48:5973,Europe/Paris,,OIF, +OIF:SP:48:5974,1,"Village de Flore",48.791684,2.664498,0,0,OIF:SA:48:5973,Europe/Paris,,OIF, +OIF:SP:48:5975,1,"Emery - Dantzig",48.808069,2.611233,0,0,OIF:SA:48:5975,Europe/Paris,,OIF, +OIF:SP:48:5976,1,"Emery - Dantzig",48.80807,2.61111,0,0,OIF:SA:48:5975,Europe/Paris,,OIF, +OIF:SP:48:5977,1,"Plessis - Dantzig",48.809843,2.605799,0,0,OIF:SA:48:5977,Europe/Paris,,OIF, +OIF:SP:48:5978,1,"Plessis - Dantzig",48.809771,2.605839,0,0,OIF:SA:48:5977,Europe/Paris,,OIF, +OIF:SP:48:5980,1,"Campus Sainte-Thérèse Ouest",48.765311,2.665147,0,0,OIF:SA:48:5980,Europe/Paris,,OIF, +OIF:SP:48:5981,1,"Creutzer - Dantzig",48.81069,2.601217,0,0,OIF:SA:48:5981,Europe/Paris,,OIF, +OIF:SP:48:5982,1,"Creutzer - Dantzig",48.81039,2.602563,0,0,OIF:SA:48:5981,Europe/Paris,,OIF, +OIF:SP:48:5983,1,"Capucines",48.79418,2.604466,0,0,OIF:SA:48:5983,Europe/Paris,,OIF, +OIF:SP:48:5984,1,"Capucines",48.794378,2.604603,0,0,OIF:SA:48:5983,Europe/Paris,,OIF, +OIF:SP:48:5985,1,"Espace Roger Boisramé",48.791125,2.60411,0,0,OIF:SA:48:5985,Europe/Paris,,OIF, +OIF:SP:48:5986,1,"Espace Roger Boisramé",48.791206,2.604015,0,0,OIF:SA:48:5985,Europe/Paris,,OIF, +OIF:SP:48:5988,1,"Rue du Four",48.783506,2.598902,0,0,OIF:SA:48:5988,Europe/Paris,,OIF, +OIF:SP:48:5991,1,"Chemin du Pâtis",48.716626,2.589872,0,0,OIF:SA:13:507,Europe/Paris,,OIF, +OIF:SP:48:5992,1,"Chemin du Pâtis",48.716733,2.589954,0,0,OIF:SA:13:507,Europe/Paris,,OIF, +OIF:SP:48:5994,1,"Sapins (Avenue G. de Gaulle)",48.790099,2.656014,0,0,OIF:SA:48:5685,Europe/Paris,,OIF, +OIF:SP:48:5995,1,"Pré Saint-Martin",48.794201,2.611282,0,0,OIF:SA:48:5995,Europe/Paris,,OIF, +OIF:SP:48:5996,1,"Pré Saint-Martin",48.793976,2.611321,0,0,OIF:SA:48:5995,Europe/Paris,,OIF, +OIF:SP:48:5997,1,"Jean Monnet",48.797217,2.64935,0,0,OIF:SA:48:5997,Europe/Paris,,OIF, +OIF:SP:48:5998,1,"Jean Monnet",48.797226,2.649173,0,0,OIF:SA:48:5997,Europe/Paris,,OIF, +OIF:SP:48:6060,1,"Gare de Pontault (Rue de l'Est)",48.806186,2.617155,0,0,OIF:SA:8711604,Europe/Paris,,OIF, +OIF:SP:48:6083,1,"L'Orme au Charron",48.797302,2.614903,0,0,OIF:SA:48:6083,Europe/Paris,,OIF, +OIF:SP:48:6084,1,"L'Orme au Charron",48.797194,2.614998,0,0,OIF:SA:48:6083,Europe/Paris,,OIF, +OIF:SP:48:6095,1,"Gabriel Péri",48.775956,2.68322,0,0,OIF:SA:48:6095,Europe/Paris,,OIF, +OIF:SP:48:6096,1,"Gabriel Péri",48.776073,2.683248,0,0,OIF:SA:48:6095,Europe/Paris,,OIF, +OIF:SP:48:6111,1,"Les Forestières",48.799933,2.64504,0,0,OIF:SA:48:5320,Europe/Paris,,OIF, +OIF:SP:48:6215,1,"Petite Motte",48.7365,2.780009,0,0,OIF:SA:48:6215,Europe/Paris,,OIF, +OIF:SP:48:6216,1,"Petite Motte",48.736383,2.780008,0,0,OIF:SA:48:6215,Europe/Paris,,OIF, +OIF:SP:48:6217,1,"Varin",48.796494,2.637047,0,0,OIF:SA:48:5331,Europe/Paris,,OIF, +OIF:SP:48:6220,1,"Petit Parc",48.736154,2.630624,0,0,OIF:SA:48:6220,Europe/Paris,,OIF, +OIF:SP:48:6221,1,"Lycée Claudel",48.789174,2.616193,0,0,OIF:SA:48:5481,Europe/Paris,,OIF, +OIF:SP:48:6222,1,"Lycée Claudel",48.789354,2.616262,0,0,OIF:SA:48:5481,Europe/Paris,,OIF, +OIF:SP:48:6223,1,"Lycée Charles le Chauve",48.798062,2.649083,0,0,OIF:SA:48:5200,Europe/Paris,,OIF, +OIF:SP:48:6251,1,"Utec",48.809942,2.613964,0,0,OIF:SA:48:6251,Europe/Paris,,OIF, +OIF:SP:48:6252,1,"Utec",48.80969,2.613813,0,0,OIF:SA:48:6251,Europe/Paris,,OIF, +OIF:SP:48:6269,1,"Les 4 Chênes",48.777263,2.589011,0,0,OIF:SA:48:6269,Europe/Paris,,OIF, +OIF:SP:48:6283,1,"ZA",48.783147,2.657589,0,0,OIF:SA:48:6283,Europe/Paris,,OIF, +OIF:SP:48:7031,1,"Grands Champs",48.801214,2.639714,0,0,OIF:SA:48:7031,Europe/Paris,,OIF, +OIF:SP:48:7032,1,"Grands Champs",48.801251,2.639497,0,0,OIF:SA:48:7031,Europe/Paris,,OIF, +OIF:SP:48:7035,1,"Parc Centre Commercial",48.737371,2.606157,0,0,OIF:SA:48:7035,Europe/Paris,,OIF, +OIF:SP:48:7036,1,"Parc Centre Commercial",48.736752,2.605923,0,0,OIF:SA:48:7035,Europe/Paris,,OIF, +OIF:SP:48:7037,1,"Stade",48.7431,2.600696,0,0,OIF:SA:48:7037,Europe/Paris,,OIF, +OIF:SP:48:7038,1,"Stade",48.743037,2.600669,0,0,OIF:SA:48:7037,Europe/Paris,,OIF, +OIF:SP:48:7041,1,"Place Charlotte",48.741828,2.606873,0,0,OIF:SA:48:7041,Europe/Paris,,OIF, +OIF:SP:48:7042,1,"Place Charlotte",48.741918,2.606602,0,0,OIF:SA:48:7041,Europe/Paris,,OIF, +OIF:SP:48:7043,1,"Pavé",48.776652,2.597263,0,0,OIF:SA:48:7043,Europe/Paris,,OIF, +OIF:SP:48:7044,1,"Pavé",48.776543,2.597507,0,0,OIF:SA:48:7043,Europe/Paris,,OIF, +OIF:SP:48:7045,1,"Centre Commercial",48.777755,2.606163,0,0,OIF:SA:48:7045,Europe/Paris,,OIF, +OIF:SP:48:7046,1,"Centre Commercial",48.777819,2.606082,0,0,OIF:SA:48:7045,Europe/Paris,,OIF, +OIF:SP:48:7047,1,"Le Nautil",48.783606,2.625738,0,0,OIF:SA:48:7047,Europe/Paris,,OIF, +OIF:SP:48:7048,1,"Le Nautil",48.783732,2.625494,0,0,OIF:SA:48:7047,Europe/Paris,,OIF, +OIF:SP:48:7050,1,"La Borde",48.73097,2.633177,0,0,OIF:SA:48:7050,Europe/Paris,,OIF, +OIF:SP:48:7051,1,"Poste de Roissy",48.792473,2.645036,0,0,OIF:SA:48:7051,Europe/Paris,,OIF, +OIF:SP:48:7052,1,"Poste de Roissy",48.792482,2.645132,0,0,OIF:SA:48:7051,Europe/Paris,,OIF, +OIF:SP:48:7053,1,"Gare de Pontault (Place Beilstein)",48.804592,2.622249,0,0,OIF:SA:8711604,Europe/Paris,,OIF, +OIF:SP:48:7054,1,"Gare de Pontault (Place Beilstein)",48.804728,2.621937,0,0,OIF:SA:8711604,Europe/Paris,,OIF, +OIF:SP:48:7065,1,"Les Hantes",48.781114,2.595572,0,0,OIF:SA:48:7065,Europe/Paris,,OIF, +OIF:SP:48:7066,1,"Les Hantes",48.781014,2.595762,0,0,OIF:SA:48:7065,Europe/Paris,,OIF, +OIF:SP:48:7067,1,"Les Alouettes",48.77926,2.58796,0,0,OIF:SA:48:7067,Europe/Paris,,OIF, +OIF:SP:48:7068,1,"Les Alouettes",48.779197,2.588014,0,0,OIF:SA:48:7067,Europe/Paris,,OIF, +OIF:SP:48:7071,1,"Les Merles",48.78073,2.590116,0,0,OIF:SA:48:7071,Europe/Paris,,OIF, +OIF:SP:48:7072,1,"Les Merles",48.780702,2.590619,0,0,OIF:SA:48:7071,Europe/Paris,,OIF, +OIF:SP:48:7073,1,"Bellevue",48.802474,2.613543,0,0,OIF:SA:35:50290,Europe/Paris,,OIF, +OIF:SP:48:7076,1,"Bois Saint-Martin",48.807476,2.603582,0,0,OIF:SA:48:7076,Europe/Paris,,OIF, +OIF:SP:48:7083,1,"Collège Jean Moulin",48.787796,2.597686,0,0,OIF:SA:48:7083,Europe/Paris,,OIF, +OIF:SP:48:7084,1,"Collège Jean Moulin",48.787625,2.597672,0,0,OIF:SA:48:7083,Europe/Paris,,OIF, +OIF:SP:48:7085,1,"Cimetière (Pré Fusé)",48.785329,2.599633,0,0,OIF:SA:48:5467,Europe/Paris,,OIF, +OIF:SP:48:7086,1,"Cimetière (Pré Fusé)",48.785318,2.60034,0,0,OIF:SA:48:5467,Europe/Paris,,OIF, +OIF:SP:48:7087,1,"Résidence des Tilleuls",48.798394,2.6168,0,0,OIF:SA:48:7087,Europe/Paris,,OIF, +OIF:SP:48:7088,1,"Résidence des Tilleuls",48.798439,2.616923,0,0,OIF:SA:48:7087,Europe/Paris,,OIF, +OIF:SP:48:7091,1,"Collège Condorcet",48.801945,2.620561,0,0,OIF:SA:48:7091,Europe/Paris,,OIF, +OIF:SP:48:7092,1,"Collège Condorcet",48.802258,2.621025,0,0,OIF:SA:48:7091,Europe/Paris,,OIF, +OIF:SP:48:7108,1,"Commerce (Avenue Leclerc)",48.790855,2.662004,0,0,OIF:SA:48:5340,Europe/Paris,,OIF, +OIF:SP:48:7111,1,"La Pépinière",48.788839,2.613498,0,0,OIF:SA:48:7111,Europe/Paris,,OIF, +OIF:SP:48:7112,1,"La Pépinière",48.788865,2.613729,0,0,OIF:SA:48:7111,Europe/Paris,,OIF, +OIF:SP:48:7113,1,"Berchères",48.784376,2.607707,0,0,OIF:SA:48:7113,Europe/Paris,,OIF, +OIF:SP:48:7114,1,"Berchères",48.784286,2.607707,0,0,OIF:SA:48:7113,Europe/Paris,,OIF, +OIF:SP:48:7115,1,"Château Candalle",48.783873,2.603488,0,0,OIF:SA:48:7115,Europe/Paris,,OIF, +OIF:SP:48:7116,1,"Château Candalle",48.78372,2.603841,0,0,OIF:SA:48:7115,Europe/Paris,,OIF, +OIF:SP:48:7121,1,"Verveines",48.790521,2.596816,0,0,OIF:SA:48:7121,Europe/Paris,,OIF, +OIF:SP:48:7122,1,"Verveines",48.790709,2.597279,0,0,OIF:SA:48:7121,Europe/Paris,,OIF, +OIF:SP:48:7123,1,"Place du 8 Mai 1945",48.793732,2.599852,0,0,OIF:SA:48:7123,Europe/Paris,,OIF, +OIF:SP:48:7124,1,"Place du 8 Mai 1945",48.79323,2.599496,0,0,OIF:SA:48:7123,Europe/Paris,,OIF, +OIF:SP:48:7125,1,"Lucien Rémy",48.796064,2.602272,0,0,OIF:SA:48:7125,Europe/Paris,,OIF, +OIF:SP:48:7126,1,"Lucien Rémy",48.795445,2.601779,0,0,OIF:SA:48:7125,Europe/Paris,,OIF, +OIF:SP:48:7127,1,"Clinique la Francilienne",48.800111,2.605245,0,0,OIF:SA:35:58800,Europe/Paris,,OIF, +OIF:SP:48:7128,1,"Clinique la Francilienne",48.799985,2.605203,0,0,OIF:SA:35:58800,Europe/Paris,,OIF, +OIF:SP:48:7131,1,"Marché",48.805105,2.618401,0,0,OIF:SA:35:63753,Europe/Paris,,OIF, +OIF:SP:48:7133,1,"Parc Hi-Han",48.804214,2.633581,0,0,OIF:SA:48:7133,Europe/Paris,,OIF, +OIF:SP:48:7134,1,"Parc Hi-Han",48.804037,2.632424,0,0,OIF:SA:48:7133,Europe/Paris,,OIF, +OIF:SP:48:7135,1,"Stade Bessuard",48.797558,2.652767,0,0,OIF:SA:48:7135,Europe/Paris,,OIF, +OIF:SP:48:7136,1,"Stade Bessuard",48.797504,2.652848,0,0,OIF:SA:48:7135,Europe/Paris,,OIF, +OIF:SP:48:7137,1,"Pierre Rollet",48.789103,2.6041,0,0,OIF:SA:48:7137,Europe/Paris,,OIF, +OIF:SP:48:7138,1,"Pierre Rollet",48.789039,2.604698,0,0,OIF:SA:48:7137,Europe/Paris,,OIF, +OIF:SP:48:7141,1,"Square Amalia Rodrigues",48.806314,2.616421,0,0,OIF:SA:48:7141,Europe/Paris,,OIF, +OIF:SP:48:7143,1,"Maurice André",48.710808,2.740347,0,0,OIF:SA:48:7143,Europe/Paris,,OIF, +OIF:SP:48:7176,1,"Route Ferme d'Arcy",48.663379,2.868988,0,0,OIF:SA:48:7176,Europe/Paris,,OIF, +OIF:SP:48:7221,1,"Pré des Aulnes",48.800906,2.626365,0,0,OIF:SA:48:7221,Europe/Paris,,OIF, +OIF:SP:48:7222,1,"Pré des Aulnes",48.801023,2.626529,0,0,OIF:SA:48:7221,Europe/Paris,,OIF, +OIF:SP:48:7225,1,"Crapart Nacu",48.780589,2.601009,0,0,OIF:SA:48:7225,Europe/Paris,,OIF, +OIF:SP:48:7226,1,"Crapart Nacu",48.780662,2.600833,0,0,OIF:SA:48:7225,Europe/Paris,,OIF, +OIF:SP:48:7227,1,"Lycée Ventura (Avenue M.Pagnol)",48.759742,2.692248,0,0,OIF:SA:48:5129,Europe/Paris,,OIF, +OIF:SP:48:7228,1,"Lycée Ventura (Avenue M.Pagnol)",48.759373,2.69234,0,0,OIF:SA:48:5129,Europe/Paris,,OIF, +OIF:SP:48:7283,1,"Tessan",48.762633,2.690119,0,0,OIF:SA:48:7283,Europe/Paris,,OIF, +OIF:SP:48:7295,1,"Carré Sénart",48.615517,2.544749,0,0,OIF:SA:48:7295,Europe/Paris,,OIF, +OIF:SP:48:7296,1,"Carré Sénart",48.613411,2.545825,0,0,OIF:SA:48:7295,Europe/Paris,,OIF, +OIF:SP:48:7303,1,"Charles Pathé ZA",48.723373,2.654639,0,0,OIF:SA:28:611,Europe/Paris,,OIF, +OIF:SP:48:7304,1,"Charles Pathé ZA",48.723507,2.655007,0,0,OIF:SA:28:611,Europe/Paris,,OIF, +OIF:SP:48:7305,1,"Victor Hugo",48.680052,2.609647,0,0,OIF:SA:13:291,Europe/Paris,,OIF, +OIF:SP:48:7306,1,"Victor Hugo",48.67981,2.609456,0,0,OIF:SA:13:291,Europe/Paris,,OIF, +OIF:SP:48:7307,1,"Centre Commercial 2000",48.799827,2.607475,0,0,OIF:SA:48:7307,Europe/Paris,,OIF, +OIF:SP:48:7312,1,"Le Calvaire",48.753939,2.865348,0,0,OIF:SA:48:7312,Europe/Paris,,OIF, +OIF:SP:48:7313,1,"Conforama",48.727523,2.822975,0,0,OIF:SA:48:7313,Europe/Paris,,OIF, +OIF:SP:48:7314,1,"Conforama",48.72753,2.818885,0,0,OIF:SA:48:7313,Europe/Paris,,OIF, +OIF:SP:48:7315,1,"Castorama",48.726384,2.82219,0,0,OIF:SA:48:7315,Europe/Paris,,OIF, +OIF:SP:48:7316,1,"Castorama",48.726375,2.822189,0,0,OIF:SA:48:7315,Europe/Paris,,OIF, +OIF:SP:48:7317,1,"Ikea",48.725189,2.839541,0,0,OIF:SA:48:7317,Europe/Paris,,OIF, +OIF:SP:48:7318,1,"Ikea",48.726302,2.831332,0,0,OIF:SA:48:7317,Europe/Paris,,OIF, +OIF:SP:48:7347,1,"Cinéma Apollo",48.80336,2.611249,0,0,OIF:SA:35:53640,Europe/Paris,,OIF, +OIF:SP:48:7349,1,"Médiathèque F-Mitterrand",48.803296,2.611371,0,0,OIF:SA:35:54430,Europe/Paris,,OIF, +OIF:SP:48:7356,1,"Place des Fêtes",48.690954,2.606446,0,0,OIF:SA:13:110,Europe/Paris,,OIF, +OIF:SP:48:7357,1,"Alfred de Vigny",48.740824,2.728472,0,0,OIF:SA:48:7357,Europe/Paris,,OIF, +OIF:SP:48:7358,1,"Alfred de Vigny",48.74086,2.728472,0,0,OIF:SA:48:7357,Europe/Paris,,OIF, +OIF:SP:48:7371,1,"ZI Charles de Gaulle",48.702215,2.622298,0,0,OIF:SA:13:1353,Europe/Paris,,OIF, +OIF:SP:48:7372,1,"ZI Charles de Gaulle",48.702224,2.622298,0,0,OIF:SA:13:1353,Europe/Paris,,OIF, +OIF:SP:48:7383,1,"Kipling",48.742908,2.760276,0,0,OIF:SA:48:7383,Europe/Paris,,OIF, +OIF:SP:48:7384,1,"Kipling",48.742917,2.760289,0,0,OIF:SA:48:7383,Europe/Paris,,OIF, +OIF:SP:48:7385,1,"Lully",48.742998,2.760412,0,0,OIF:SA:48:7385,Europe/Paris,,OIF, +OIF:SP:48:7386,1,"Lully",48.743007,2.760426,0,0,OIF:SA:48:7385,Europe/Paris,,OIF, +OIF:SP:48:7387,1,"Robert Schuman",48.792428,2.64505,0,0,OIF:SA:48:7387,Europe/Paris,,OIF, +OIF:SP:48:7388,1,"Robert Schuman",48.792437,2.645063,0,0,OIF:SA:48:7387,Europe/Paris,,OIF, +OIF:SP:49:49000,1,"Gare Centre Commercial",48.565657,2.291695,0,0,OIF:SA:8754518,Europe/Paris,,OIF, +OIF:SP:49:49001,1,"Gare Centre Commercial",48.565333,2.291234,0,0,OIF:SA:8754518,Europe/Paris,,OIF, +OIF:SP:49:49010,1,"Puit Sucré",48.568247,2.294835,0,0,OIF:SA:49:49010,Europe/Paris,,OIF, +OIF:SP:49:49020,1,"Clos Neuf",48.56636,2.297938,0,0,OIF:SA:49:49020,Europe/Paris,,OIF, +OIF:SP:49:49030,1,"Château",48.565023,2.303736,0,0,OIF:SA:49:49030,Europe/Paris,,OIF, +OIF:SP:49:49040,1,"Saint-Exupéry",48.564197,2.307705,0,0,OIF:SA:49:49040,Europe/Paris,,OIF, +OIF:SP:49:49050,1,"Mésanges",48.563236,2.310251,0,0,OIF:SA:49:49050,Europe/Paris,,OIF, +OIF:SP:49:49060,1,"Pinsons",48.561357,2.309386,0,0,OIF:SA:49:49060,Europe/Paris,,OIF, +OIF:SP:49:49070,1,"Capucines",48.562084,2.306406,0,0,OIF:SA:49:49070,Europe/Paris,,OIF, +OIF:SP:49:49080,1,"Église",48.561212,2.305526,0,0,OIF:SA:49:49080,Europe/Paris,,OIF, +OIF:SP:49:49090,1,"Crèches",48.550971,2.27707,0,0,OIF:SA:49:49090,Europe/Paris,,OIF, +OIF:SP:49:49100,1,"Comices",48.547959,2.275693,0,0,OIF:SA:49:49100,Europe/Paris,,OIF, +OIF:SP:49:49110,1,"Calvaire",48.549782,2.27328,0,0,OIF:SA:49:49110,Europe/Paris,,OIF, +OIF:SP:49:49590,1,"Mairie de Marolles",48.562513,2.298144,0,0,OIF:SA:49:49590,Europe/Paris,,OIF, +OIF:SP:49:49750,1,"Salle des Fêtes",48.429676,2.158181,0,0,OIF:SA:14:9366,Europe/Paris,,OIF, +OIF:SP:49:49751,1,"Salle des Fêtes",48.429531,2.158047,0,0,OIF:SA:14:9366,Europe/Paris,,OIF, +OIF:SP:49:49760,1,"Hôpital",48.421527,2.150321,0,0,OIF:SA:49:49760,Europe/Paris,,OIF, +OIF:SP:49:49970,1,"Chemin des Femmes",48.727516,2.264109,0,0,OIF:SA:49:49970,Europe/Paris,,OIF, +OIF:SP:49:49971,1,"Chemin des Femmes",48.72748,2.264273,0,0,OIF:SA:49:49970,Europe/Paris,,OIF, +OIF:SP:49:49980,1,"Mairie de Massy",48.729551,2.269867,0,0,OIF:SA:49:49980,Europe/Paris,,OIF, +OIF:SP:49:49981,1,"Mairie de Massy",48.729461,2.269786,0,0,OIF:SA:49:49980,Europe/Paris,,OIF, +OIF:SP:49:49990,1,"8 Mai 1945",48.727603,2.274489,0,0,OIF:SA:29:421,Europe/Paris,,OIF, +OIF:SP:49:49991,1,"8 Mai 1945",48.727414,2.274856,0,0,OIF:SA:29:421,Europe/Paris,,OIF, +OIF:SP:49:50020,1,"20 Rue Panserot",48.515852,2.241564,0,0,OIF:SA:49:50020,Europe/Paris,,OIF, +OIF:SP:49:50021,1,"20 Rue Panserot",48.515888,2.241618,0,0,OIF:SA:49:50020,Europe/Paris,,OIF, +OIF:SP:49:50030,1,"Les Joncs Marins",48.665197,2.278133,0,0,OIF:SA:46:11399,Europe/Paris,,OIF, +OIF:SP:49:50031,1,"Les Joncs Marins",48.665242,2.277875,0,0,OIF:SA:46:11399,Europe/Paris,,OIF, +OIF:SP:49:50040,1,"46 Rue Panserot",48.516501,2.244228,0,0,OIF:SA:49:50040,Europe/Paris,,OIF, +OIF:SP:49:50041,1,"46 Rue Panserot",48.5166,2.244458,0,0,OIF:SA:49:50040,Europe/Paris,,OIF, +OIF:SP:49:50090,1,"Augustin Fresnel",48.623169,2.351224,0,0,OIF:SA:49:50090,Europe/Paris,,OIF, +OIF:SP:49:50091,1,"Augustin Fresnel",48.623097,2.351305,0,0,OIF:SA:49:50090,Europe/Paris,,OIF, +OIF:SP:49:50100,1,"Abbé Boursier",48.644274,2.313696,0,0,OIF:SA:49:50100,Europe/Paris,,OIF, +OIF:SP:49:50101,1,"Abbé Boursier",48.643995,2.314035,0,0,OIF:SA:49:50100,Europe/Paris,,OIF, +OIF:SP:49:50110,1,"Abbeville la Rivière",48.346444,2.166382,0,0,OIF:SA:49:50110,Europe/Paris,,OIF, +OIF:SP:49:50111,1,"Abbeville la Rivière",48.346147,2.166571,0,0,OIF:SA:49:50110,Europe/Paris,,OIF, +OIF:SP:49:50120,1,"Centre Commercial",48.786666,2.530283,0,0,OIF:SA:49:50120,Europe/Paris,,OIF, +OIF:SP:49:50121,1,"Centre Commercial",48.786505,2.529902,0,0,OIF:SA:49:50120,Europe/Paris,,OIF, +OIF:SP:49:50150,1,"Anjou",48.792128,2.580922,0,0,OIF:SA:35:50150,Europe/Paris,,OIF, +OIF:SP:49:50151,1,"Anjou",48.791457,2.579599,0,0,OIF:SA:35:50150,Europe/Paris,,OIF, +OIF:SP:49:50180,1,"Arrancourt",48.341816,2.16169,0,0,OIF:SA:49:50180,Europe/Paris,,OIF, +OIF:SP:49:50181,1,"Arrancourt",48.341951,2.161838,0,0,OIF:SA:49:50180,Europe/Paris,,OIF, +OIF:SP:49:50190,1,"Aubin",48.510639,2.356104,0,0,OIF:SA:49:50190,Europe/Paris,,OIF, +OIF:SP:49:50200,1,"Éperon",48.644734,2.345234,0,0,OIF:SA:10:1172,Europe/Paris,,OIF, +OIF:SP:49:50201,1,"Éperon",48.644635,2.345139,0,0,OIF:SA:10:1172,Europe/Paris,,OIF, +OIF:SP:49:50210,1,"Avenue du Bois",48.65855,2.32985,0,0,OIF:SA:49:50210,Europe/Paris,,OIF, +OIF:SP:49:50240,1,"Les Jonquilles",48.645552,2.346713,0,0,OIF:SA:49:50240,Europe/Paris,,OIF, +OIF:SP:49:50241,1,"Les Jonquilles",48.645705,2.346536,0,0,OIF:SA:49:50240,Europe/Paris,,OIF, +OIF:SP:49:50250,1,"Balizy",48.682916,2.310679,0,0,OIF:SA:46:14948,Europe/Paris,,OIF, +OIF:SP:49:50251,1,"Balizy",48.683195,2.309986,0,0,OIF:SA:46:14948,Europe/Paris,,OIF, +OIF:SP:49:50270,1,"Beauséjour",48.652339,2.337584,0,0,OIF:SA:46:10325,Europe/Paris,,OIF, +OIF:SP:49:50271,1,"Beauséjour",48.652096,2.337326,0,0,OIF:SA:46:10325,Europe/Paris,,OIF, +OIF:SP:49:50280,1,"Belles Dames",48.651918,2.272993,0,0,OIF:SA:46:10280,Europe/Paris,,OIF, +OIF:SP:49:50281,1,"Belles Dames",48.648941,2.271518,0,0,OIF:SA:46:10280,Europe/Paris,,OIF, +OIF:SP:49:50290,1,"Bellevue",48.802322,2.613216,0,0,OIF:SA:35:50290,Europe/Paris,,OIF, +OIF:SP:49:50310,1,"Bois Clairs",48.643161,2.341734,0,0,OIF:SA:10:1173,Europe/Paris,,OIF, +OIF:SP:49:50311,1,"Bois Clairs",48.643233,2.342087,0,0,OIF:SA:10:1173,Europe/Paris,,OIF, +OIF:SP:49:50320,1,"Bois des Friches",48.79535,2.565169,0,0,OIF:SA:49:50320,Europe/Paris,,OIF, +OIF:SP:49:50321,1,"Bois des Friches",48.795458,2.565102,0,0,OIF:SA:49:50320,Europe/Paris,,OIF, +OIF:SP:49:50330,1,"Boissy la Rivière",48.374693,2.154482,0,0,OIF:SA:49:50330,Europe/Paris,,OIF, +OIF:SP:49:50331,1,"Boissy la Rivière",48.374675,2.154374,0,0,OIF:SA:49:50330,Europe/Paris,,OIF, +OIF:SP:49:50340,1,"Bon Coin",48.483958,2.205786,0,0,OIF:SA:46:14635,Europe/Paris,,OIF, +OIF:SP:49:50341,1,"Bon Coin",48.483976,2.205867,0,0,OIF:SA:46:14635,Europe/Paris,,OIF, +OIF:SP:49:50342,1,"Bon Coin",48.484218,2.205704,0,0,OIF:SA:46:14635,Europe/Paris,,OIF, +OIF:SP:49:50343,1,"Bon Coin",48.484614,2.206204,0,0,OIF:SA:46:14635,Europe/Paris,,OIF, +OIF:SP:49:50380,1,"Bouquet",48.798394,2.605114,0,0,OIF:SA:48:5465,Europe/Paris,,OIF, +OIF:SP:49:50381,1,"Bouquet",48.798592,2.605196,0,0,OIF:SA:48:5465,Europe/Paris,,OIF, +OIF:SP:49:50390,1,"Brigeollet",48.306002,1.996336,0,0,OIF:SA:46:8397,Europe/Paris,,OIF, +OIF:SP:49:50391,1,"Brigeollet",48.305975,1.996322,0,0,OIF:SA:46:8397,Europe/Paris,,OIF, +OIF:SP:49:50400,1,"Calvaire",48.661148,2.340895,0,0,OIF:SA:49:50400,Europe/Paris,,OIF, +OIF:SP:49:50401,1,"Calvaire",48.661346,2.341071,0,0,OIF:SA:49:50400,Europe/Paris,,OIF, +OIF:SP:49:50420,1,"Carrefour Berger",48.516814,2.268355,0,0,OIF:SA:49:50420,Europe/Paris,,OIF, +OIF:SP:49:50421,1,"Carrefour Berger",48.516967,2.268598,0,0,OIF:SA:49:50420,Europe/Paris,,OIF, +OIF:SP:49:50431,1,"Carrefour Duclos",48.637076,2.334532,0,0,OIF:SA:49:50431,Europe/Paris,,OIF, +OIF:SP:49:50450,1,"Pince Vent",48.792419,2.556206,0,0,OIF:SA:49:50450,Europe/Paris,,OIF, +OIF:SP:49:50451,1,"Pince Vent",48.792706,2.55656,0,0,OIF:SA:49:50450,Europe/Paris,,OIF, +OIF:SP:49:50460,1,"Résidence",48.639177,2.361455,0,0,OIF:SA:10:1185,Europe/Paris,,OIF, +OIF:SP:49:50461,1,"Résidence",48.638799,2.361726,0,0,OIF:SA:10:1185,Europe/Paris,,OIF, +OIF:SP:49:50470,1,"Centre Cial de Massy",48.726993,2.277588,0,0,OIF:SA:29:423,Europe/Paris,,OIF, +OIF:SP:49:50471,1,"Centre Cial de Massy",48.72649,2.278906,0,0,OIF:SA:29:423,Europe/Paris,,OIF, +OIF:SP:49:50482,1,"Centre Commercial",48.777791,2.606149,0,0,OIF:SA:48:7045,Europe/Paris,,OIF, +OIF:SP:49:50483,1,"Centre Commercial",48.777783,2.606109,0,0,OIF:SA:48:7045,Europe/Paris,,OIF, +OIF:SP:49:50490,1,"Cimetière",48.528484,2.385914,0,0,OIF:SA:49:50490,Europe/Paris,,OIF, +OIF:SP:49:50491,1,"Cimetière",48.528537,2.3859,0,0,OIF:SA:49:50490,Europe/Paris,,OIF, +OIF:SP:49:50510,1,"Centre de Boissy le Cutte",48.471379,2.285462,0,0,OIF:SA:49:50510,Europe/Paris,,OIF, +OIF:SP:49:50511,1,"Centre de Boissy le Cutte",48.471424,2.285016,0,0,OIF:SA:49:50510,Europe/Paris,,OIF, +OIF:SP:49:50520,1,"Centre",48.521584,2.300299,0,0,OIF:SA:49:50520,Europe/Paris,,OIF, +OIF:SP:49:50521,1,"Centre",48.521234,2.300489,0,0,OIF:SA:49:50520,Europe/Paris,,OIF, +OIF:SP:49:50530,1,"Centre de d'Huison Longueville",48.462336,2.321401,0,0,OIF:SA:49:50530,Europe/Paris,,OIF, +OIF:SP:49:50531,1,"Centre de d'Huison Longueville",48.462417,2.321292,0,0,OIF:SA:49:50530,Europe/Paris,,OIF, +OIF:SP:49:50540,1,"Centre",48.54696,2.398726,0,0,OIF:SA:49:50540,Europe/Paris,,OIF, +OIF:SP:49:50541,1,"Centre",48.547113,2.399186,0,0,OIF:SA:49:50540,Europe/Paris,,OIF, +OIF:SP:49:50550,1,"Centre",48.346456,2.044332,0,0,OIF:SA:49:50550,Europe/Paris,,OIF, +OIF:SP:49:50551,1,"Centre",48.346699,2.044681,0,0,OIF:SA:49:50550,Europe/Paris,,OIF, +OIF:SP:49:50560,1,"Centre Commercial",48.488819,2.188693,0,0,OIF:SA:46:9414,Europe/Paris,,OIF, +OIF:SP:49:50561,1,"Centre Commercial",48.48854,2.188572,0,0,OIF:SA:46:9414,Europe/Paris,,OIF, +OIF:SP:49:50580,1,"Maison d'Arrêt des Femmes",48.640547,2.380635,0,0,OIF:SA:10:1189,Europe/Paris,,OIF, +OIF:SP:49:50590,1,"Maison d'Arrêt des Hommes",48.640917,2.37445,0,0,OIF:SA:10:1188,Europe/Paris,,OIF, +OIF:SP:49:50591,1,"Maison d'Arrêt des Hommes",48.640593,2.374897,0,0,OIF:SA:10:1188,Europe/Paris,,OIF, +OIF:SP:49:50610,1,"Collège du Roussay",48.488406,2.175778,0,0,OIF:SA:46:9415,Europe/Paris,,OIF, +OIF:SP:49:50611,1,"Collège du Roussay",48.487719,2.179013,0,0,OIF:SA:46:9415,Europe/Paris,,OIF, +OIF:SP:49:50630,1,"Collège Paul Éluard",48.636608,2.34408,0,0,OIF:SA:10:101,Europe/Paris,,OIF, +OIF:SP:49:50631,1,"Collège Paul Éluard",48.636536,2.343836,0,0,OIF:SA:10:101,Europe/Paris,,OIF, +OIF:SP:49:50660,1,"Chagrenon",48.497749,2.223634,0,0,OIF:SA:46:14629,Europe/Paris,,OIF, +OIF:SP:49:50661,1,"Chagrenon",48.497838,2.223674,0,0,OIF:SA:46:14629,Europe/Paris,,OIF, +OIF:SP:49:50670,1,"Champarts",48.715802,2.298546,0,0,OIF:SA:49:50670,Europe/Paris,,OIF, +OIF:SP:49:50671,1,"Champarts",48.716782,2.29845,0,0,OIF:SA:49:50670,Europe/Paris,,OIF, +OIF:SP:49:50680,1,"Chanteloup",48.487488,2.211741,0,0,OIF:SA:46:14633,Europe/Paris,,OIF, +OIF:SP:49:50681,1,"Chanteloup",48.487749,2.212092,0,0,OIF:SA:46:14633,Europe/Paris,,OIF, +OIF:SP:49:50690,1,"Chanval",48.363839,2.08942,0,0,OIF:SA:49:50690,Europe/Paris,,OIF, +OIF:SP:49:50691,1,"Chanval",48.363795,2.089596,0,0,OIF:SA:49:50690,Europe/Paris,,OIF, +OIF:SP:49:50710,1,"Charbonneau",48.558796,2.286108,0,0,OIF:SA:49:50710,Europe/Paris,,OIF, +OIF:SP:49:50720,1,"Charles de Gaulle",48.699218,2.298694,0,0,OIF:SA:29:496,Europe/Paris,,OIF, +OIF:SP:49:50730,1,"Charlie Chaplin",48.64014,2.355596,0,0,OIF:SA:49:50730,Europe/Paris,,OIF, +OIF:SP:49:50731,1,"Charlie Chaplin",48.640328,2.355514,0,0,OIF:SA:49:50730,Europe/Paris,,OIF, +OIF:SP:49:50740,1,"Château de Janville",48.50977,2.2355,0,0,OIF:SA:49:50740,Europe/Paris,,OIF, +OIF:SP:49:50741,1,"Château de Janville",48.509815,2.235581,0,0,OIF:SA:49:50740,Europe/Paris,,OIF, +OIF:SP:49:50750,1,"Château d'Eau",48.350925,1.988342,0,0,OIF:SA:46:10673,Europe/Paris,,OIF, +OIF:SP:49:50751,1,"Château d'Eau",48.35106,1.988274,0,0,OIF:SA:46:10673,Europe/Paris,,OIF, +OIF:SP:49:50760,1,"Maréchal Leclerc",48.785871,2.538659,0,0,OIF:SA:49:50760,Europe/Paris,,OIF, +OIF:SP:49:50761,1,"Maréchal Leclerc",48.786113,2.53851,0,0,OIF:SA:49:50760,Europe/Paris,,OIF, +OIF:SP:49:50770,1,"Château de Frémigny",48.519688,2.302141,0,0,OIF:SA:49:50770,Europe/Paris,,OIF, +OIF:SP:49:50771,1,"Château de Frémigny",48.519787,2.301857,0,0,OIF:SA:49:50770,Europe/Paris,,OIF, +OIF:SP:49:50790,1,"Gare de Longjumeau",48.702031,2.296546,0,0,OIF:SA:8739361,Europe/Paris,,OIF, +OIF:SP:49:50791,1,"Gare de Longjumeau",48.703514,2.29679,0,0,OIF:SA:8739361,Europe/Paris,,OIF, +OIF:SP:49:50820,1,"Chevauchée",48.680742,2.314304,0,0,OIF:SA:49:50820,Europe/Paris,,OIF, +OIF:SP:49:50821,1,"Chevauchée",48.680688,2.314114,0,0,OIF:SA:49:50820,Europe/Paris,,OIF, +OIF:SP:49:50832,1,"Chèvrefeuilles",48.651063,2.335481,0,0,OIF:SA:49:50832,Europe/Paris,,OIF, +OIF:SP:49:50833,1,"Chèvrefeuilles",48.651081,2.335576,0,0,OIF:SA:49:50832,Europe/Paris,,OIF, +OIF:SP:49:50840,1,"Beaulieu",48.682539,2.284846,0,0,OIF:SA:49:50840,Europe/Paris,,OIF, +OIF:SP:49:50841,1,"Beaulieu",48.682656,2.284616,0,0,OIF:SA:49:50840,Europe/Paris,,OIF, +OIF:SP:49:50850,1,"Christophe Colomb",48.648354,2.307481,0,0,OIF:SA:49:50850,Europe/Paris,,OIF, +OIF:SP:49:50851,1,"Christophe Colomb",48.648632,2.307617,0,0,OIF:SA:49:50850,Europe/Paris,,OIF, +OIF:SP:49:50860,1,"Cimetière",48.495437,2.221975,0,0,OIF:SA:46:14630,Europe/Paris,,OIF, +OIF:SP:49:50861,1,"Cimetière",48.495634,2.22192,0,0,OIF:SA:46:14630,Europe/Paris,,OIF, +OIF:SP:49:50870,1,"Hôtel de Ville de Chennevières",48.79529,2.533485,0,0,OIF:SA:49:50870,Europe/Paris,,OIF, +OIF:SP:49:50871,1,"Hôtel de Ville de Chennevières",48.794661,2.533442,0,0,OIF:SA:49:50870,Europe/Paris,,OIF, +OIF:SP:49:50880,1,"Cimetière",48.786025,2.602112,0,0,OIF:SA:48:5467,Europe/Paris,,OIF, +OIF:SP:49:50881,1,"Cimetière",48.786303,2.602276,0,0,OIF:SA:48:5467,Europe/Paris,,OIF, +OIF:SP:49:50980,1,"Collège le Saussay",48.528669,2.370701,0,0,OIF:SA:49:50980,Europe/Paris,,OIF, +OIF:SP:49:50990,1,"Collège R. Doisneau",48.525194,2.352482,0,0,OIF:SA:49:50990,Europe/Paris,,OIF, +OIF:SP:49:51010,1,"Commissariat",48.631134,2.338207,0,0,OIF:SA:49:51010,Europe/Paris,,OIF, +OIF:SP:49:51011,1,"Commissariat",48.630874,2.33837,0,0,OIF:SA:49:51010,Europe/Paris,,OIF, +OIF:SP:49:51050,1,"Crédit Agricole",48.316155,1.997079,0,0,OIF:SA:46:8401,Europe/Paris,,OIF, +OIF:SP:49:51051,1,"Crédit Agricole",48.315985,1.997255,0,0,OIF:SA:46:8401,Europe/Paris,,OIF, +OIF:SP:49:51060,1,"Emmaüs Bas",48.449024,2.171372,0,0,OIF:SA:46:9275,Europe/Paris,,OIF, +OIF:SP:49:51061,1,"Emmaüs Bas",48.449078,2.171264,0,0,OIF:SA:46:9275,Europe/Paris,,OIF, +OIF:SP:49:51100,1,"Croix de Fer",48.518487,2.288569,0,0,OIF:SA:49:51100,Europe/Paris,,OIF, +OIF:SP:49:51101,1,"Croix de Fer",48.518515,2.288786,0,0,OIF:SA:49:51100,Europe/Paris,,OIF, +OIF:SP:49:51120,1,"D Casanova",48.6485,2.322566,0,0,OIF:SA:49:51120,Europe/Paris,,OIF, +OIF:SP:49:51121,1,"D Casanova",48.64832,2.322946,0,0,OIF:SA:49:51120,Europe/Paris,,OIF, +OIF:SP:49:51130,1,"Demi Lune",48.657571,2.339605,0,0,OIF:SA:49:51130,Europe/Paris,,OIF, +OIF:SP:49:51131,1,"Demi Lune",48.658254,2.339524,0,0,OIF:SA:49:51130,Europe/Paris,,OIF, +OIF:SP:49:51140,1,"Denfert Rochereau",48.834028,2.333924,0,0,OIF:SA:8775863,Europe/Paris,,OIF, +OIF:SP:49:51141,1,"Denfert Rochereau",48.833956,2.333529,0,0,OIF:SA:8775863,Europe/Paris,,OIF, +OIF:SP:49:51150,1,"Dispensaire",48.659755,2.336756,0,0,OIF:SA:49:51150,Europe/Paris,,OIF, +OIF:SP:49:51160,1,"Marché",48.63873,2.332714,0,0,OIF:SA:10:1372,Europe/Paris,,OIF, +OIF:SP:49:51161,1,"Marché",48.63811,2.332701,0,0,OIF:SA:10:1372,Europe/Paris,,OIF, +OIF:SP:49:51162,1,"Donjon",48.640006,2.334464,0,0,OIF:SA:49:51162,Europe/Paris,,OIF, +OIF:SP:49:51170,1,"Dos D'Âne",48.512128,2.251164,0,0,OIF:SA:49:51170,Europe/Paris,,OIF, +OIF:SP:49:51171,1,"Dos D'Âne",48.51221,2.251542,0,0,OIF:SA:49:51170,Europe/Paris,,OIF, +OIF:SP:49:51181,1,"Notre-Dame",48.435015,2.163756,0,0,OIF:SA:46:9335,Europe/Paris,,OIF, +OIF:SP:49:51190,1,"E Jacquet",48.6518,2.329715,0,0,OIF:SA:49:51190,Europe/Paris,,OIF, +OIF:SP:49:51191,1,"E Jacquet",48.6518,2.330515,0,0,OIF:SA:49:51190,Europe/Paris,,OIF, +OIF:SP:49:51200,1,"École Cheptainville",48.549637,2.270153,0,0,OIF:SA:49:51200,Europe/Paris,,OIF, +OIF:SP:49:51230,1,"Église d'Auvers",48.492277,2.218127,0,0,OIF:SA:46:14632,Europe/Paris,,OIF, +OIF:SP:49:51231,1,"Église d'Auvers",48.492331,2.218141,0,0,OIF:SA:46:14632,Europe/Paris,,OIF, +OIF:SP:49:51260,1,"Église Place de Selves",48.475247,2.328684,0,0,OIF:SA:49:51260,Europe/Paris,,OIF, +OIF:SP:49:51270,1,"Église de Lardy",48.521354,2.267428,0,0,OIF:SA:49:51270,Europe/Paris,,OIF, +OIF:SP:49:51271,1,"Église de Lardy",48.522135,2.266277,0,0,OIF:SA:49:51270,Europe/Paris,,OIF, +OIF:SP:49:51280,1,"Église",48.314782,2.088101,0,0,OIF:SA:49:51280,Europe/Paris,,OIF, +OIF:SP:49:51290,1,"Église",48.515216,2.34202,0,0,OIF:SA:49:51290,Europe/Paris,,OIF, +OIF:SP:49:51291,1,"Église",48.515,2.342426,0,0,OIF:SA:49:51290,Europe/Paris,,OIF, +OIF:SP:49:51310,1,"Église Longjumeau",48.693356,2.293471,0,0,OIF:SA:49:51310,Europe/Paris,,OIF, +OIF:SP:49:51321,1,"Église",48.782342,2.601018,0,0,OIF:SA:48:5310,Europe/Paris,,OIF, +OIF:SP:49:51330,1,"Église",48.541924,2.333873,0,0,OIF:SA:49:51330,Europe/Paris,,OIF, +OIF:SP:49:51331,1,"Église",48.542014,2.334035,0,0,OIF:SA:49:51330,Europe/Paris,,OIF, +OIF:SP:49:51340,1,"Église",48.634406,2.334152,0,0,OIF:SA:49:51340,Europe/Paris,,OIF, +OIF:SP:49:51341,1,"Église",48.634892,2.333555,0,0,OIF:SA:49:51340,Europe/Paris,,OIF, +OIF:SP:49:51350,1,"Émile Zola",48.648357,2.34088,0,0,OIF:SA:49:51350,Europe/Paris,,OIF, +OIF:SP:49:51351,1,"Émile Zola",48.648564,2.340609,0,0,OIF:SA:49:51350,Europe/Paris,,OIF, +OIF:SP:49:51360,1,"Engelthal",48.679825,2.315893,0,0,OIF:SA:49:51360,Europe/Paris,,OIF, +OIF:SP:49:51361,1,"Engelthal",48.6796,2.316015,0,0,OIF:SA:49:51360,Europe/Paris,,OIF, +OIF:SP:49:51370,1,"Château d'Eau de Linas",48.626608,2.263044,0,0,OIF:SA:46:14908,Europe/Paris,,OIF, +OIF:SP:49:51380,1,"Estouches",48.302616,2.134275,0,0,OIF:SA:49:51380,Europe/Paris,,OIF, +OIF:SP:49:51390,1,"Etoile",48.792833,2.604255,0,0,OIF:SA:48:5473,Europe/Paris,,OIF, +OIF:SP:49:51391,1,"Etoile",48.792653,2.604281,0,0,OIF:SA:48:5473,Europe/Paris,,OIF, +OIF:SP:49:51400,1,"Etoile Stalingrad",48.645202,2.334504,0,0,OIF:SA:49:51400,Europe/Paris,,OIF, +OIF:SP:49:51401,1,"Etoile Stalingrad",48.645256,2.333745,0,0,OIF:SA:49:51400,Europe/Paris,,OIF, +OIF:SP:49:51402,1,"Etoile Stalingrad",48.645669,2.335087,0,0,OIF:SA:49:51400,Europe/Paris,,OIF, +OIF:SP:49:51403,1,"Etoile Stalingrad",48.645705,2.334965,0,0,OIF:SA:49:51400,Europe/Paris,,OIF, +OIF:SP:49:51410,1,"Gare d'Etrechy",48.493572,2.193697,0,0,OIF:SA:8754514,Europe/Paris,,OIF, +OIF:SP:49:51420,1,"F Buisson",48.643997,2.33837,0,0,OIF:SA:49:51420,Europe/Paris,,OIF, +OIF:SP:49:51421,1,"F Buisson",48.643737,2.339184,0,0,OIF:SA:49:51420,Europe/Paris,,OIF, +OIF:SP:49:51450,1,"Fontaine la Rivière",48.356774,2.154207,0,0,OIF:SA:49:51450,Europe/Paris,,OIF, +OIF:SP:49:51451,1,"Fontaine la Rivière",48.356846,2.154018,0,0,OIF:SA:49:51450,Europe/Paris,,OIF, +OIF:SP:49:51460,1,"Fontenette",48.328166,2.173223,0,0,OIF:SA:49:51460,Europe/Paris,,OIF, +OIF:SP:49:51471,1,"Fosse aux Leux",48.620995,2.336078,0,0,OIF:SA:49:51471,Europe/Paris,,OIF, +OIF:SP:49:51480,1,"Calvaire",48.550584,2.277003,0,0,OIF:SA:49:49110,Europe/Paris,,OIF, +OIF:SP:49:51481,1,"Francs Bourgeois",48.549782,2.27328,0,0,OIF:SA:49:49110,Europe/Paris,,OIF, +OIF:SP:49:51490,1,"Rue des Fusillés de Châteaubriand",48.800388,2.542607,0,0,OIF:SA:49:51490,Europe/Paris,,OIF, +OIF:SP:49:51491,1,"Rue des Fusillés de Châteaubriand",48.799793,2.543706,0,0,OIF:SA:49:51490,Europe/Paris,,OIF, +OIF:SP:49:51510,1,"Gabriel Péri",48.676167,2.318066,0,0,OIF:SA:49:51510,Europe/Paris,,OIF, +OIF:SP:49:51520,1,"Général de Gaulle",48.788328,2.536288,0,0,OIF:SA:35:1080,Europe/Paris,,OIF, +OIF:SP:49:51521,1,"Général de Gaulle",48.788572,2.535636,0,0,OIF:SA:35:1080,Europe/Paris,,OIF, +OIF:SP:49:51530,1,"Gare de Bouray",48.533528,2.290965,0,0,OIF:SA:8754517,Europe/Paris,,OIF, +OIF:SP:49:51531,1,"Gare de Bouray",48.533303,2.290924,0,0,OIF:SA:8754517,Europe/Paris,,OIF, +OIF:SP:49:51532,1,"Gare de Bouray",48.533447,2.290992,0,0,OIF:SA:8754517,Europe/Paris,,OIF, +OIF:SP:49:51533,1,"Gare de Bouray",48.533384,2.291141,0,0,OIF:SA:8754517,Europe/Paris,,OIF, +OIF:SP:49:51540,1,"Gare de Méréville",48.316999,2.103404,0,0,OIF:SA:49:51540,Europe/Paris,,OIF, +OIF:SP:49:51550,1,"Gare d'Epinay",48.670326,2.332481,0,0,OIF:SA:8754522,Europe/Paris,,OIF, +OIF:SP:49:51551,1,"Gare d'Epinay",48.670137,2.332535,0,0,OIF:SA:8754522,Europe/Paris,,OIF, +OIF:SP:49:51553,1,"Gare d'Epinay",48.669768,2.331694,0,0,OIF:SA:8754522,Europe/Paris,,OIF, +OIF:SP:49:51560,1,"Gare RER Pontault-Combault",48.80624,2.617006,0,0,OIF:SA:8711604,Europe/Paris,,OIF, +OIF:SP:49:51561,1,"Gare RER Pontault-Combault Terminus",48.806096,2.617468,0,0,OIF:SA:8711604,Europe/Paris,,OIF, +OIF:SP:49:51570,1,"Gare de Sainte-Geneviève des Bois",48.65284,2.314384,0,0,OIF:SA:8754521,Europe/Paris,,OIF, +OIF:SP:49:51571,1,"Gare de Sainte-Geneviève des Bois",48.65284,2.314411,0,0,OIF:SA:8754521,Europe/Paris,,OIF, +OIF:SP:49:51572,1,"Gare de Sainte-Geneviève des Bois",48.653101,2.314425,0,0,OIF:SA:8754521,Europe/Paris,,OIF, +OIF:SP:49:51590,1,"Gare de Ballancourt",48.532246,2.371583,0,0,OIF:SA:8768143,Europe/Paris,,OIF, +OIF:SP:49:51611,1,"Gare de Lardy",48.520681,2.256265,0,0,OIF:SA:8754516,Europe/Paris,,OIF, +OIF:SP:49:51630,1,"Gare SNCF",48.347609,2.031121,0,0,OIF:SA:8754511,Europe/Paris,,OIF, +OIF:SP:49:51631,1,"Gare SNCF",48.347591,2.031229,0,0,OIF:SA:8754511,Europe/Paris,,OIF, +OIF:SP:49:51640,1,"Gare d'Étampes",48.436511,2.159901,0,0,OIF:SA:8754513,Europe/Paris,,OIF, +OIF:SP:49:51650,1,"Gare de la Ferté Alais",48.484919,2.351037,0,0,OIF:SA:8768145,Europe/Paris,,OIF, +OIF:SP:49:51651,1,"Gare de la Ferté Alais",48.48491,2.350848,0,0,OIF:SA:8768145,Europe/Paris,,OIF, +OIF:SP:49:51660,1,"Gare de Marolles",48.564785,2.290625,0,0,OIF:SA:8754518,Europe/Paris,,OIF, +OIF:SP:49:51661,1,"Gare de Marolles",48.565287,2.288824,0,0,OIF:SA:8754518,Europe/Paris,,OIF, +OIF:SP:49:51710,1,"Gendarmerie",48.519024,2.251964,0,0,OIF:SA:49:51710,Europe/Paris,,OIF, +OIF:SP:49:51711,1,"Gendarmerie",48.519258,2.252397,0,0,OIF:SA:49:51710,Europe/Paris,,OIF, +OIF:SP:49:51720,1,"Gendarmerie",48.642115,2.366855,0,0,OIF:SA:49:51720,Europe/Paris,,OIF, +OIF:SP:49:51730,1,"Gendarmerie",48.563634,2.429313,0,0,OIF:SA:3:107,Europe/Paris,,OIF, +OIF:SP:49:51731,1,"Gendarmerie",48.563724,2.429056,0,0,OIF:SA:3:107,Europe/Paris,,OIF, +OIF:SP:49:51740,1,"Gillevoisin",48.510008,2.230534,0,0,OIF:SA:49:51740,Europe/Paris,,OIF, +OIF:SP:49:51741,1,"Gillevoisin",48.509999,2.23048,0,0,OIF:SA:49:51740,Europe/Paris,,OIF, +OIF:SP:49:51750,1,"Gournay",48.789621,2.5848,0,0,OIF:SA:35:51750,Europe/Paris,,OIF, +OIF:SP:49:51751,1,"Gournay",48.789361,2.584717,0,0,OIF:SA:35:51750,Europe/Paris,,OIF, +OIF:SP:49:51760,1,"Grande Folie",48.605816,2.250156,0,0,OIF:SA:46:10906,Europe/Paris,,OIF, +OIF:SP:49:51761,1,"Grande Folie",48.605708,2.249736,0,0,OIF:SA:46:10906,Europe/Paris,,OIF, +OIF:SP:49:51770,1,"Grandes Roches",48.516431,2.294417,0,0,OIF:SA:49:51770,Europe/Paris,,OIF, +OIF:SP:49:51771,1,"Grandes Roches",48.516017,2.294282,0,0,OIF:SA:49:51770,Europe/Paris,,OIF, +OIF:SP:49:51780,1,"Grange aux Cercles",48.660989,2.276455,0,0,OIF:SA:46:11389,Europe/Paris,,OIF, +OIF:SP:49:51781,1,"Grange aux Cercles",48.659865,2.275805,0,0,OIF:SA:46:11389,Europe/Paris,,OIF, +OIF:SP:49:51790,1,"Graviers",48.555216,2.282496,0,0,OIF:SA:49:51790,Europe/Paris,,OIF, +OIF:SP:49:51800,1,"Les Graviers",48.516186,2.270791,0,0,OIF:SA:49:51800,Europe/Paris,,OIF, +OIF:SP:49:51801,1,"Les Graviers",48.516213,2.270588,0,0,OIF:SA:49:51800,Europe/Paris,,OIF, +OIF:SP:49:51810,1,"Guy Môquet",48.641337,2.337868,0,0,OIF:SA:10:1174,Europe/Paris,,OIF, +OIF:SP:49:51811,1,"Guy Môquet",48.641058,2.337299,0,0,OIF:SA:10:1174,Europe/Paris,,OIF, +OIF:SP:49:51820,1,"Guy Môquet",48.666775,2.332033,0,0,OIF:SA:49:51820,Europe/Paris,,OIF, +OIF:SP:49:51821,1,"Guy Môquet",48.666847,2.332061,0,0,OIF:SA:49:51820,Europe/Paris,,OIF, +OIF:SP:49:51830,1,"Henri Rouart",48.782597,2.578252,0,0,OIF:SA:49:51830,Europe/Paris,,OIF, +OIF:SP:49:51831,1,"Henri Rouart",48.782741,2.57828,0,0,OIF:SA:49:51830,Europe/Paris,,OIF, +OIF:SP:49:51860,1,"HLM",48.512448,2.245345,0,0,OIF:SA:49:51860,Europe/Paris,,OIF, +OIF:SP:49:51861,1,"HLM",48.512565,2.245385,0,0,OIF:SA:49:51860,Europe/Paris,,OIF, +OIF:SP:49:51880,1,"Hôtel de Ville de Méréville",48.318711,2.087651,0,0,OIF:SA:14:10156,Europe/Paris,,OIF, +OIF:SP:49:51881,1,"Mairie",48.318067,2.089663,0,0,OIF:SA:14:10156,Europe/Paris,,OIF, +OIF:SP:49:51890,1,"Hôtel de Ville",48.67215,2.324446,0,0,OIF:SA:49:51890,Europe/Paris,,OIF, +OIF:SP:49:51891,1,"Hôtel de Ville",48.672294,2.324405,0,0,OIF:SA:49:51890,Europe/Paris,,OIF, +OIF:SP:49:51900,1,"Mairie",48.482375,2.348575,0,0,OIF:SA:49:51900,Europe/Paris,,OIF, +OIF:SP:49:51901,1,"Hôtel de Ville",48.481728,2.34821,0,0,OIF:SA:49:51900,Europe/Paris,,OIF, +OIF:SP:49:51912,1,"Hôtel de Ville de la Queue en Brie",48.789625,2.574204,0,0,OIF:SA:49:51910,Europe/Paris,,OIF, +OIF:SP:49:51913,1,"Hôtel de Ville de la Queue en Brie",48.789608,2.57385,0,0,OIF:SA:49:51910,Europe/Paris,,OIF, +OIF:SP:49:51920,1,"Hôtel de Ville",48.640249,2.326488,0,0,OIF:SA:49:51920,Europe/Paris,,OIF, +OIF:SP:49:51921,1,"Hôtel de Ville",48.640581,2.328238,0,0,OIF:SA:49:51920,Europe/Paris,,OIF, +OIF:SP:49:51950,1,"J de la Fontaine",48.569222,2.265793,0,0,OIF:SA:49:51950,Europe/Paris,,OIF, +OIF:SP:49:51951,1,"J de la Fontaine",48.569213,2.265685,0,0,OIF:SA:49:51950,Europe/Paris,,OIF, +OIF:SP:49:51990,1,"Jardin Public",48.649848,2.318889,0,0,OIF:SA:49:51990,Europe/Paris,,OIF, +OIF:SP:49:51991,1,"Jardin Public",48.649596,2.319147,0,0,OIF:SA:49:51990,Europe/Paris,,OIF, +OIF:SP:49:52010,1,"Commissariat",48.437452,2.163964,0,0,OIF:SA:46:9266,Europe/Paris,,OIF, +OIF:SP:49:52011,1,"Commissariat",48.437488,2.163964,0,0,OIF:SA:46:9266,Europe/Paris,,OIF, +OIF:SP:49:52020,1,"Joliot Curie",48.64273,2.34716,0,0,OIF:SA:10:249,Europe/Paris,,OIF, +OIF:SP:49:52021,1,"Joliot Curie",48.642739,2.347078,0,0,OIF:SA:10:249,Europe/Paris,,OIF, +OIF:SP:49:52061,1,"L Sampaix",48.623556,2.334437,0,0,OIF:SA:49:52061,Europe/Paris,,OIF, +OIF:SP:49:52070,1,"La Boissière",48.526636,2.298265,0,0,OIF:SA:49:52070,Europe/Paris,,OIF, +OIF:SP:49:52071,1,"La Boissière",48.526321,2.298266,0,0,OIF:SA:49:52070,Europe/Paris,,OIF, +OIF:SP:49:52080,1,"La Croix Boissée",48.509948,2.344779,0,0,OIF:SA:49:52080,Europe/Paris,,OIF, +OIF:SP:49:52082,1,"La Croix Boissée",48.512465,2.344022,0,0,OIF:SA:49:52080,Europe/Paris,,OIF, +OIF:SP:49:52090,1,"La Ferme",48.479526,2.333944,0,0,OIF:SA:49:52090,Europe/Paris,,OIF, +OIF:SP:49:52120,1,"La Grenouillère",48.539407,2.340587,0,0,OIF:SA:49:52120,Europe/Paris,,OIF, +OIF:SP:49:52130,1,"La Montagne",48.596536,2.246146,0,0,OIF:SA:46:8421,Europe/Paris,,OIF, +OIF:SP:49:52131,1,"La Montagne",48.596581,2.245956,0,0,OIF:SA:46:8421,Europe/Paris,,OIF, +OIF:SP:49:52160,1,"La Rivière",48.666748,2.333133,0,0,OIF:SA:10:451,Europe/Paris,,OIF, +OIF:SP:49:52161,1,"La Rivière",48.667,2.332915,0,0,OIF:SA:10:451,Europe/Paris,,OIF, +OIF:SP:49:52170,1,"La Varenne RER",48.794063,2.51351,0,0,OIF:SA:8775818,Europe/Paris,,OIF, +OIF:SP:49:52171,1,"La Varenne RER",48.794063,2.51351,0,0,OIF:SA:8775818,Europe/Paris,,OIF, +OIF:SP:49:52180,1,"Lafayette",48.6486,2.336213,0,0,OIF:SA:49:52180,Europe/Paris,,OIF, +OIF:SP:49:52181,1,"Lafayette",48.647746,2.335684,0,0,OIF:SA:49:52180,Europe/Paris,,OIF, +OIF:SP:49:52190,1,"Lavoir",48.488307,2.188829,0,0,OIF:SA:49:52190,Europe/Paris,,OIF, +OIF:SP:49:52200,1,"Bas de Torfou",48.547491,2.216404,0,0,OIF:SA:46:8542,Europe/Paris,,OIF, +OIF:SP:49:52201,1,"Bas de Torfou",48.547383,2.216228,0,0,OIF:SA:46:8542,Europe/Paris,,OIF, +OIF:SP:49:52210,1,"Le Bouchet",48.533004,2.361418,0,0,OIF:SA:49:52210,Europe/Paris,,OIF, +OIF:SP:49:52211,1,"Le Bouchet",48.533013,2.36112,0,0,OIF:SA:49:52210,Europe/Paris,,OIF, +OIF:SP:49:52220,1,"Le Breuil",48.666477,2.316455,0,0,OIF:SA:49:52220,Europe/Paris,,OIF, +OIF:SP:49:52230,1,"Le Canal",48.639565,2.35131,0,0,OIF:SA:49:52230,Europe/Paris,,OIF, +OIF:SP:49:52231,1,"Le Canal",48.639772,2.350876,0,0,OIF:SA:49:52230,Europe/Paris,,OIF, +OIF:SP:49:52240,1,"Le Domaine",48.533177,2.34527,0,0,OIF:SA:49:52240,Europe/Paris,,OIF, +OIF:SP:49:52241,1,"Le Domaine",48.533177,2.34527,0,0,OIF:SA:49:52240,Europe/Paris,,OIF, +OIF:SP:49:52250,1,"Fort de Champigny",48.805526,2.53381,0,0,OIF:SA:49:52250,Europe/Paris,,OIF, +OIF:SP:49:52251,1,"Fort de Champigny",48.806102,2.533281,0,0,OIF:SA:49:52250,Europe/Paris,,OIF, +OIF:SP:49:52270,1,"Le Mesnil",48.405185,2.14086,0,0,OIF:SA:14:10471,Europe/Paris,,OIF, +OIF:SP:49:52271,1,"Le Mesnil",48.405311,2.140778,0,0,OIF:SA:14:10471,Europe/Paris,,OIF, +OIF:SP:49:52300,1,"Le Parc",48.53894,2.339572,0,0,OIF:SA:49:52300,Europe/Paris,,OIF, +OIF:SP:49:52310,1,"Le Pavé",48.77832,2.598795,0,0,OIF:SA:48:7043,Europe/Paris,,OIF, +OIF:SP:49:52311,1,"Le Pavé",48.777889,2.59867,0,0,OIF:SA:48:7043,Europe/Paris,,OIF, +OIF:SP:49:52340,1,"Lycée Montmirault",48.484093,2.333578,0,0,OIF:SA:49:52340,Europe/Paris,,OIF, +OIF:SP:49:52341,1,"Lycée Montmirault",48.483536,2.331753,0,0,OIF:SA:49:52340,Europe/Paris,,OIF, +OIF:SP:49:52360,1,"Les Alouettes",48.779215,2.588001,0,0,OIF:SA:48:7067,Europe/Paris,,OIF, +OIF:SP:49:52361,1,"Les Alouettes",48.779233,2.588028,0,0,OIF:SA:48:7067,Europe/Paris,,OIF, +OIF:SP:49:52370,1,"Les Aulnes",48.662047,2.334246,0,0,OIF:SA:49:52370,Europe/Paris,,OIF, +OIF:SP:49:52371,1,"Les Aulnes",48.66211,2.33411,0,0,OIF:SA:49:52370,Europe/Paris,,OIF, +OIF:SP:49:52390,1,"Les Bédouins",48.507934,2.346227,0,0,OIF:SA:49:52390,Europe/Paris,,OIF, +OIF:SP:49:52391,1,"Les Bédouins",48.507547,2.346105,0,0,OIF:SA:49:52390,Europe/Paris,,OIF, +OIF:SP:49:52400,1,"Les Bordes",48.791587,2.572648,0,0,OIF:SA:35:52400,Europe/Paris,,OIF, +OIF:SP:49:52401,1,"Les Bordes",48.791389,2.572933,0,0,OIF:SA:35:52400,Europe/Paris,,OIF, +OIF:SP:49:52420,1,"Les Chasseurs",48.432885,2.177152,0,0,OIF:SA:46:9257,Europe/Paris,,OIF, +OIF:SP:49:52421,1,"Les Chasseurs",48.43294,2.177543,0,0,OIF:SA:46:9257,Europe/Paris,,OIF, +OIF:SP:49:52450,1,"Les Feux",48.550971,2.27707,0,0,OIF:SA:49:52450,Europe/Paris,,OIF, +OIF:SP:49:52451,1,"Les Feux",48.55089,2.277233,0,0,OIF:SA:49:52450,Europe/Paris,,OIF, +OIF:SP:49:52460,1,"Les Fleurs",48.535091,2.350644,0,0,OIF:SA:49:52460,Europe/Paris,,OIF, +OIF:SP:49:52461,1,"Les Fleurs",48.534984,2.350536,0,0,OIF:SA:49:52460,Europe/Paris,,OIF, +OIF:SP:49:52470,1,"Les Gardes",48.661418,2.335752,0,0,OIF:SA:49:52470,Europe/Paris,,OIF, +OIF:SP:49:52471,1,"Les Gardes",48.661409,2.335779,0,0,OIF:SA:49:52470,Europe/Paris,,OIF, +OIF:SP:49:52480,1,"Les Hantes",48.781051,2.595585,0,0,OIF:SA:48:7065,Europe/Paris,,OIF, +OIF:SP:49:52481,1,"Les Hantes",48.78105,2.595708,0,0,OIF:SA:48:7065,Europe/Paris,,OIF, +OIF:SP:49:52490,1,"Les Laurentes",48.667825,2.317838,0,0,OIF:SA:49:52490,Europe/Paris,,OIF, +OIF:SP:49:52500,1,"Les Merles",48.780694,2.590102,0,0,OIF:SA:48:7071,Europe/Paris,,OIF, +OIF:SP:49:52501,1,"Les Merles",48.780747,2.590592,0,0,OIF:SA:48:7071,Europe/Paris,,OIF, +OIF:SP:49:52510,1,"Les Murets",48.785791,2.581109,0,0,OIF:SA:49:52510,Europe/Paris,,OIF, +OIF:SP:49:52511,1,"Les Murets",48.785718,2.581544,0,0,OIF:SA:49:52510,Europe/Paris,,OIF, +OIF:SP:49:52520,1,"Les Murs",48.499582,2.351947,0,0,OIF:SA:49:52520,Europe/Paris,,OIF, +OIF:SP:49:52521,1,"Les Murs",48.500445,2.35234,0,0,OIF:SA:49:52520,Europe/Paris,,OIF, +OIF:SP:49:52540,1,"Les Plantes",48.522866,2.349423,0,0,OIF:SA:49:52540,Europe/Paris,,OIF, +OIF:SP:49:52541,1,"Les Plantes",48.522964,2.349396,0,0,OIF:SA:49:52540,Europe/Paris,,OIF, +OIF:SP:49:52560,1,"Les Rêts",48.787526,2.5266,0,0,OIF:SA:49:52560,Europe/Paris,,OIF, +OIF:SP:49:52561,1,"Les Rêts",48.787239,2.526354,0,0,OIF:SA:49:52560,Europe/Paris,,OIF, +OIF:SP:49:52570,1,"Les Roches",48.515104,2.264514,0,0,OIF:SA:49:52570,Europe/Paris,,OIF, +OIF:SP:49:52571,1,"Les Roches",48.515221,2.264771,0,0,OIF:SA:49:52570,Europe/Paris,,OIF, +OIF:SP:49:52580,1,"Les Sapins",48.789913,2.529329,0,0,OIF:SA:49:52580,Europe/Paris,,OIF, +OIF:SP:49:52581,1,"Les Sapins",48.79002,2.529575,0,0,OIF:SA:49:52580,Europe/Paris,,OIF, +OIF:SP:49:52600,1,"La Poste",48.590827,2.244706,0,0,OIF:SA:46:8423,Europe/Paris,,OIF, +OIF:SP:49:52601,1,"La Poste",48.589901,2.244925,0,0,OIF:SA:46:8423,Europe/Paris,,OIF, +OIF:SP:49:52610,1,"Les Templiers",48.674522,2.317035,0,0,OIF:SA:46:9230,Europe/Paris,,OIF, +OIF:SP:49:52620,1,"Les Violettes",48.791054,2.569558,0,0,OIF:SA:49:52620,Europe/Paris,,OIF, +OIF:SP:49:52621,1,"Les Violettes",48.791233,2.570048,0,0,OIF:SA:49:52620,Europe/Paris,,OIF, +OIF:SP:49:52660,1,"Libération",48.780561,2.605525,0,0,OIF:SA:48:5477,Europe/Paris,,OIF, +OIF:SP:49:52661,1,"Libération",48.780589,2.605334,0,0,OIF:SA:48:5477,Europe/Paris,,OIF, +OIF:SP:49:52690,1,"Longue Raie",48.535379,2.354475,0,0,OIF:SA:49:52690,Europe/Paris,,OIF, +OIF:SP:49:52691,1,"Longue Raie",48.535414,2.354421,0,0,OIF:SA:49:52690,Europe/Paris,,OIF, +OIF:SP:49:52710,1,"Lycée René Cassin",48.580094,2.244806,0,0,OIF:SA:24:8427,Europe/Paris,,OIF, +OIF:SP:49:52740,1,"Lycée Marie Laurencin",48.564165,2.438483,0,0,OIF:SA:3:115,Europe/Paris,,OIF, +OIF:SP:49:52750,1,"Lycée Einstein",48.637552,2.349559,0,0,OIF:SA:49:52750,Europe/Paris,,OIF, +OIF:SP:49:52751,1,"Lycée Einstein",48.637552,2.349559,0,0,OIF:SA:49:52750,Europe/Paris,,OIF, +OIF:SP:49:52752,1,"Lycée Einstein",48.635269,2.348582,0,0,OIF:SA:49:52750,Europe/Paris,,OIF, +OIF:SP:49:52753,1,"Lycée Einstein",48.63517,2.348216,0,0,OIF:SA:49:52750,Europe/Paris,,OIF, +OIF:SP:49:52770,1,"Lycée Saint-Hilaire",48.435542,2.149677,0,0,OIF:SA:46:9331,Europe/Paris,,OIF, +OIF:SP:49:52771,1,"Lycée Saint-Hilaire",48.435579,2.150028,0,0,OIF:SA:46:9331,Europe/Paris,,OIF, +OIF:SP:49:52773,1,"Lycée Saint-Hilaire",48.435316,2.14884,0,0,OIF:SA:46:9331,Europe/Paris,,OIF, +OIF:SP:49:52780,1,"Maréchal de Lattre de Tassigny",48.652491,2.320774,0,0,OIF:SA:49:52780,Europe/Paris,,OIF, +OIF:SP:49:52781,1,"Maréchal de Lattre de Tassigny",48.652392,2.321792,0,0,OIF:SA:49:52780,Europe/Paris,,OIF, +OIF:SP:49:52790,1,"Place de l'Europe",48.641012,2.268747,0,0,OIF:SA:46:10272,Europe/Paris,,OIF, +OIF:SP:49:52791,1,"Place de l'Europe",48.640418,2.267636,0,0,OIF:SA:46:10272,Europe/Paris,,OIF, +OIF:SP:49:52800,1,"Mairie de Champigny",48.813128,2.512377,0,0,OIF:SA:49:52800,Europe/Paris,,OIF, +OIF:SP:49:52801,1,"Mairie de Champigny",48.813244,2.512378,0,0,OIF:SA:49:52800,Europe/Paris,,OIF, +OIF:SP:49:52810,1,"Mairie de Cheptainville",48.55118,2.26506,0,0,OIF:SA:49:52810,Europe/Paris,,OIF, +OIF:SP:49:52811,1,"Mairie de Cheptainville",48.550982,2.265006,0,0,OIF:SA:49:52810,Europe/Paris,,OIF, +OIF:SP:49:52820,1,"Mairie de Boissy le Cutte",48.469445,2.282382,0,0,OIF:SA:49:52820,Europe/Paris,,OIF, +OIF:SP:49:52821,1,"Mairie de Boissy le Cutte",48.469508,2.282314,0,0,OIF:SA:49:52820,Europe/Paris,,OIF, +OIF:SP:49:52840,1,"Mairie Guibeville",48.569961,2.269504,0,0,OIF:SA:49:52840,Europe/Paris,,OIF, +OIF:SP:49:52841,1,"Mairie Guibeville",48.569961,2.269504,0,0,OIF:SA:49:52840,Europe/Paris,,OIF, +OIF:SP:49:52850,1,"Mairie",48.513887,2.259482,0,0,OIF:SA:49:52850,Europe/Paris,,OIF, +OIF:SP:49:52851,1,"Mairie",48.514094,2.259631,0,0,OIF:SA:49:52850,Europe/Paris,,OIF, +OIF:SP:49:52880,1,"Mairie",48.662362,2.329931,0,0,OIF:SA:49:52880,Europe/Paris,,OIF, +OIF:SP:49:52881,1,"Mairie",48.662326,2.329686,0,0,OIF:SA:49:52880,Europe/Paris,,OIF, +OIF:SP:49:52890,1,"Maison de Retraite le Verger",48.477728,2.331537,0,0,OIF:SA:49:52890,Europe/Paris,,OIF, +OIF:SP:49:52910,1,"Mare au Chanvre",48.629112,2.340255,0,0,OIF:SA:49:52910,Europe/Paris,,OIF, +OIF:SP:49:52911,1,"Mare au Chanvre",48.629363,2.340146,0,0,OIF:SA:49:52910,Europe/Paris,,OIF, +OIF:SP:49:52912,1,"Rue de Liers",48.628536,2.339482,0,0,OIF:SA:49:52912,Europe/Paris,,OIF, +OIF:SP:49:52913,1,"Rue de Liers",48.628473,2.339414,0,0,OIF:SA:49:52912,Europe/Paris,,OIF, +OIF:SP:49:52920,1,"Mauregard",48.678378,2.318404,0,0,OIF:SA:49:52920,Europe/Paris,,OIF, +OIF:SP:49:52921,1,"Mauregard",48.678046,2.318771,0,0,OIF:SA:49:52920,Europe/Paris,,OIF, +OIF:SP:49:52930,1,"Mendès France",48.638748,2.345613,0,0,OIF:SA:10:403,Europe/Paris,,OIF, +OIF:SP:49:52931,1,"Mendès France",48.639287,2.345694,0,0,OIF:SA:10:403,Europe/Paris,,OIF, +OIF:SP:49:52940,1,"Mesnil Racoin",48.455496,2.258055,0,0,OIF:SA:49:52940,Europe/Paris,,OIF, +OIF:SP:49:52941,1,"Mesnil Racoin",48.455137,2.257798,0,0,OIF:SA:49:52940,Europe/Paris,,OIF, +OIF:SP:49:52960,1,"Mondésir",48.37149,2.080559,0,0,OIF:SA:49:52960,Europe/Paris,,OIF, +OIF:SP:49:52961,1,"Mondésir",48.371436,2.080573,0,0,OIF:SA:49:52960,Europe/Paris,,OIF, +OIF:SP:49:52970,1,"Montreau",48.304832,2.053661,0,0,OIF:SA:46:10158,Europe/Paris,,OIF, +OIF:SP:49:52980,1,"Morigny",48.44638,2.184191,0,0,OIF:SA:49:52980,Europe/Paris,,OIF, +OIF:SP:49:52981,1,"Morigny",48.446425,2.18434,0,0,OIF:SA:49:52980,Europe/Paris,,OIF, +OIF:SP:49:52990,1,"Moulin à Vent",48.482034,2.327994,0,0,OIF:SA:49:52990,Europe/Paris,,OIF, +OIF:SP:49:52991,1,"Moulin à Vent",48.482061,2.327872,0,0,OIF:SA:49:52990,Europe/Paris,,OIF, +OIF:SP:49:53000,1,"Moulin à Vent",48.784213,2.52433,0,0,OIF:SA:49:53000,Europe/Paris,,OIF, +OIF:SP:49:53001,1,"Moulin à Vent",48.78424,2.524358,0,0,OIF:SA:49:53000,Europe/Paris,,OIF, +OIF:SP:49:53010,1,"Moulin à Vent",48.56287,2.289544,0,0,OIF:SA:49:53010,Europe/Paris,,OIF, +OIF:SP:49:53030,1,"Moulin de la Brière",48.53013,2.340221,0,0,OIF:SA:49:53030,Europe/Paris,,OIF, +OIF:SP:49:53031,1,"Moulin de la Brière",48.530076,2.340343,0,0,OIF:SA:49:53030,Europe/Paris,,OIF, +OIF:SP:49:53040,1,"Moulin du Gué",48.488381,2.34506,0,0,OIF:SA:49:53040,Europe/Paris,,OIF, +OIF:SP:49:53041,1,"Moulin du Gué",48.487887,2.343883,0,0,OIF:SA:49:53040,Europe/Paris,,OIF, +OIF:SP:49:53050,1,"Moulin du Gué 2",48.489927,2.349753,0,0,OIF:SA:49:53040,Europe/Paris,,OIF, +OIF:SP:49:53051,1,"Moulin du Gué 2",48.489954,2.349902,0,0,OIF:SA:49:53040,Europe/Paris,,OIF, +OIF:SP:49:53090,1,"Mutualité",48.534286,2.37505,0,0,OIF:SA:49:53090,Europe/Paris,,OIF, +OIF:SP:49:53091,1,"Mutualité",48.534241,2.375063,0,0,OIF:SA:49:53090,Europe/Paris,,OIF, +OIF:SP:49:53170,1,"Avenue Georges",48.802182,2.539525,0,0,OIF:SA:35:1101,Europe/Paris,,OIF, +OIF:SP:49:53171,1,"Avenue Georges",48.802218,2.539607,0,0,OIF:SA:35:1101,Europe/Paris,,OIF, +OIF:SP:49:53180,1,"Perception",48.431714,2.156823,0,0,OIF:SA:46:9339,Europe/Paris,,OIF, +OIF:SP:49:53190,1,"Petit Ballainvilliers",48.673378,2.281245,0,0,OIF:SA:46:8477,Europe/Paris,,OIF, +OIF:SP:49:53191,1,"Petit Ballainvilliers",48.673072,2.28092,0,0,OIF:SA:46:8477,Europe/Paris,,OIF, +OIF:SP:49:53200,1,"Petit Chilly",48.708719,2.297438,0,0,OIF:SA:46:8879,Europe/Paris,,OIF, +OIF:SP:49:53201,1,"Petit Chilly",48.710202,2.297667,0,0,OIF:SA:46:8879,Europe/Paris,,OIF, +OIF:SP:49:53210,1,"Petit Mesnil",48.518269,2.282778,0,0,OIF:SA:49:53210,Europe/Paris,,OIF, +OIF:SP:49:53211,1,"Petit Mesnil",48.518395,2.282913,0,0,OIF:SA:49:53210,Europe/Paris,,OIF, +OIF:SP:49:53230,1,"Petit Saint-Vrain",48.539721,2.323381,0,0,OIF:SA:49:53230,Europe/Paris,,OIF, +OIF:SP:49:53231,1,"Petit Saint-Vrain",48.539838,2.323584,0,0,OIF:SA:49:53230,Europe/Paris,,OIF, +OIF:SP:49:53240,1,"Petite Folie",48.600456,2.246858,0,0,OIF:SA:46:10908,Europe/Paris,,OIF, +OIF:SP:49:53241,1,"Petite Folie",48.600717,2.246423,0,0,OIF:SA:46:10908,Europe/Paris,,OIF, +OIF:SP:49:53252,1,"Petits Champs",48.621588,2.345135,0,0,OIF:SA:10:1263,Europe/Paris,,OIF, +OIF:SP:49:53253,1,"Petits Champs",48.621543,2.34519,0,0,OIF:SA:10:1263,Europe/Paris,,OIF, +OIF:SP:49:53260,1,"Pierre Lais",48.792475,2.591207,0,0,OIF:SA:35:53260,Europe/Paris,,OIF, +OIF:SP:49:53261,1,"Pierre Lais",48.792358,2.591044,0,0,OIF:SA:35:53260,Europe/Paris,,OIF, +OIF:SP:49:53270,1,"Centre Commercial",48.792683,2.554329,0,0,OIF:SA:49:50120,Europe/Paris,,OIF, +OIF:SP:49:53271,1,"Centre Commercial",48.792917,2.554167,0,0,OIF:SA:49:50120,Europe/Paris,,OIF, +OIF:SP:49:53301,1,"Piscine",48.634541,2.344541,0,0,OIF:SA:10:391,Europe/Paris,,OIF, +OIF:SP:49:53302,1,"Piscine",48.634397,2.342669,0,0,OIF:SA:10:391,Europe/Paris,,OIF, +OIF:SP:49:53320,1,"École",48.477548,2.326764,0,0,OIF:SA:49:53320,Europe/Paris,,OIF, +OIF:SP:49:53330,1,"Place des Monseaux",48.672654,2.328491,0,0,OIF:SA:49:53330,Europe/Paris,,OIF, +OIF:SP:49:53331,1,"Place des Monseaux",48.6726,2.328111,0,0,OIF:SA:49:53330,Europe/Paris,,OIF, +OIF:SP:49:53332,1,"Place des Monseaux",48.672258,2.328504,0,0,OIF:SA:49:53330,Europe/Paris,,OIF, +OIF:SP:49:53340,1,"Place d'Orgeval",48.656564,2.335304,0,0,OIF:SA:49:53340,Europe/Paris,,OIF, +OIF:SP:49:53350,1,"Place du 8 Mai 1945",48.792226,2.532535,0,0,OIF:SA:49:53350,Europe/Paris,,OIF, +OIF:SP:49:53351,1,"Place du 8 Mai 1945",48.791553,2.532328,0,0,OIF:SA:49:53350,Europe/Paris,,OIF, +OIF:SP:49:53360,1,"Lycée Robert Doisneau",48.613884,2.458414,0,0,OIF:SA:49:53360,Europe/Paris,,OIF, +OIF:SP:49:53380,1,"Place Stalingrad",48.655377,2.331003,0,0,OIF:SA:49:53380,Europe/Paris,,OIF, +OIF:SP:49:53410,1,"Place du Carrouge",48.349415,1.991684,0,0,OIF:SA:49:53410,Europe/Paris,,OIF, +OIF:SP:49:53411,1,"Place du Carrouge",48.349478,1.991683,0,0,OIF:SA:49:53410,Europe/Paris,,OIF, +OIF:SP:49:53420,1,"Place du Général Leclerc",48.311175,2.0004,0,0,OIF:SA:49:53420,Europe/Paris,,OIF, +OIF:SP:49:53421,1,"Place du Général Leclerc",48.31112,2.000144,0,0,OIF:SA:49:53420,Europe/Paris,,OIF, +OIF:SP:49:53430,1,"Place Hausen",48.630073,2.333406,0,0,OIF:SA:46:10876,Europe/Paris,,OIF, +OIF:SP:49:53431,1,"Place Hausen",48.629615,2.333095,0,0,OIF:SA:46:10876,Europe/Paris,,OIF, +OIF:SP:49:53440,1,"Place Charles Steber",48.698012,2.294227,0,0,OIF:SA:29:497,Europe/Paris,,OIF, +OIF:SP:49:53450,1,"Rue du Monument",48.812259,2.51609,0,0,OIF:SA:49:53450,Europe/Paris,,OIF, +OIF:SP:49:53451,1,"Rue du Monument",48.812394,2.515859,0,0,OIF:SA:49:53450,Europe/Paris,,OIF, +OIF:SP:49:53460,1,"Pont Cylindre",48.650457,2.309366,0,0,OIF:SA:49:53460,Europe/Paris,,OIF, +OIF:SP:49:53461,1,"Pont Cylindre",48.650538,2.309393,0,0,OIF:SA:49:53460,Europe/Paris,,OIF, +OIF:SP:49:53480,1,"Pont de Chennevières",48.789986,2.522855,0,0,OIF:SA:35:1243,Europe/Paris,,OIF, +OIF:SP:49:53481,1,"Pont de Chennevières",48.790067,2.522923,0,0,OIF:SA:35:1243,Europe/Paris,,OIF, +OIF:SP:49:53490,1,"Pont de Villiers",48.485684,2.344938,0,0,OIF:SA:49:53490,Europe/Paris,,OIF, +OIF:SP:49:53491,1,"Pont de Villiers",48.485945,2.344668,0,0,OIF:SA:49:53490,Europe/Paris,,OIF, +OIF:SP:49:53500,1,"Pont Royal",48.484624,2.191639,0,0,OIF:SA:46:9430,Europe/Paris,,OIF, +OIF:SP:49:53501,1,"Pont Royal",48.485058,2.193382,0,0,OIF:SA:46:9430,Europe/Paris,,OIF, +OIF:SP:49:53502,1,"Pont Royal",48.485361,2.191434,0,0,OIF:SA:46:9430,Europe/Paris,,OIF, +OIF:SP:49:53510,1,"Porte de Paris",48.593139,2.246653,0,0,OIF:SA:46:8433,Europe/Paris,,OIF, +OIF:SP:49:53511,1,"Porte de Paris",48.592455,2.245232,0,0,OIF:SA:46:8433,Europe/Paris,,OIF, +OIF:SP:49:53520,1,"Porte d'Étampes",48.587538,2.246094,0,0,OIF:SA:24:8431,Europe/Paris,,OIF, +OIF:SP:49:53521,1,"Porte d'Étampes",48.586738,2.24619,0,0,OIF:SA:24:8431,Europe/Paris,,OIF, +OIF:SP:49:53530,1,"Porte d'Orléans",48.820852,2.325717,0,0,OIF:SA:59624,Europe/Paris,,OIF, +OIF:SP:49:53531,1,"Porte d'Orléans",48.824114,2.325594,0,0,OIF:SA:59624,Europe/Paris,,OIF, +OIF:SP:49:53540,1,"La Poste",48.56294,2.430856,0,0,OIF:SA:3:120,Europe/Paris,,OIF, +OIF:SP:49:53541,1,"La Poste",48.563361,2.432672,0,0,OIF:SA:3:120,Europe/Paris,,OIF, +OIF:SP:49:53550,1,"Poste - Mairie",48.786216,2.541503,0,0,OIF:SA:49:53550,Europe/Paris,,OIF, +OIF:SP:49:53551,1,"Poste - Mairie",48.786055,2.541026,0,0,OIF:SA:49:53550,Europe/Paris,,OIF, +OIF:SP:49:53570,1,"Poste",48.360106,2.125351,0,0,OIF:SA:49:53570,Europe/Paris,,OIF, +OIF:SP:49:53571,1,"Poste",48.36016,2.125284,0,0,OIF:SA:49:53570,Europe/Paris,,OIF, +OIF:SP:49:53580,1,"Petit Caporal",48.779945,2.578579,0,0,OIF:SA:49:53580,Europe/Paris,,OIF, +OIF:SP:49:53581,1,"Petit Caporal",48.780139,2.580498,0,0,OIF:SA:49:53580,Europe/Paris,,OIF, +OIF:SP:49:53590,1,"Québec",48.52666,2.29162,0,0,OIF:SA:49:53590,Europe/Paris,,OIF, +OIF:SP:49:53600,1,"Relais Cocatrix",48.499941,2.197535,0,0,OIF:SA:49:53600,Europe/Paris,,OIF, +OIF:SP:49:53601,1,"Relais Cocatrix",48.500022,2.197345,0,0,OIF:SA:49:53600,Europe/Paris,,OIF, +OIF:SP:49:53610,1,"Remise Neuve",48.625039,2.346505,0,0,OIF:SA:49:53610,Europe/Paris,,OIF, +OIF:SP:49:53611,1,"Remise Neuve",48.624985,2.346695,0,0,OIF:SA:49:53610,Europe/Paris,,OIF, +OIF:SP:49:53620,1,"Renault",48.522784,2.28774,0,0,OIF:SA:49:53620,Europe/Paris,,OIF, +OIF:SP:49:53621,1,"Renault",48.522847,2.287726,0,0,OIF:SA:49:53620,Europe/Paris,,OIF, +OIF:SP:49:53630,1,"René Clair",48.641794,2.352002,0,0,OIF:SA:49:53630,Europe/Paris,,OIF, +OIF:SP:49:53631,1,"René Clair",48.641668,2.351595,0,0,OIF:SA:49:53630,Europe/Paris,,OIF, +OIF:SP:49:53640,1,"Cinéma Apollo",48.80336,2.611276,0,0,OIF:SA:35:53640,Europe/Paris,,OIF, +OIF:SP:49:53650,1,"Champigny RER",48.807407,2.509514,0,0,OIF:SA:8775817,Europe/Paris,,OIF, +OIF:SP:49:53651,1,"Champigny RER",48.807036,2.51105,0,0,OIF:SA:8775817,Europe/Paris,,OIF, +OIF:SP:49:53660,1,"Gare de Massy Palaiseau",48.723558,2.258912,0,0,OIF:SA:8739357,Europe/Paris,,OIF, +OIF:SP:49:53670,1,"Résidence de France",48.79648,2.531068,0,0,OIF:SA:49:53670,Europe/Paris,,OIF, +OIF:SP:49:53671,1,"Résidence de France",48.796347,2.530142,0,0,OIF:SA:49:53670,Europe/Paris,,OIF, +OIF:SP:49:53720,1,"Rond-Point",48.520062,2.272315,0,0,OIF:SA:49:53720,Europe/Paris,,OIF, +OIF:SP:49:53721,1,"Rond-Point",48.520071,2.272275,0,0,OIF:SA:49:53720,Europe/Paris,,OIF, +OIF:SP:49:53740,1,"Théâtre",48.433321,2.155264,0,0,OIF:SA:46:9375,Europe/Paris,,OIF, +OIF:SP:49:53741,1,"Théâtre",48.433456,2.154993,0,0,OIF:SA:46:9375,Europe/Paris,,OIF, +OIF:SP:49:53770,1,"Route de Bouray",48.512025,2.335403,0,0,OIF:SA:49:53770,Europe/Paris,,OIF, +OIF:SP:49:53771,1,"Route de Bouray",48.512204,2.333793,0,0,OIF:SA:49:53770,Europe/Paris,,OIF, +OIF:SP:49:53773,1,"Route de Bouray",48.512195,2.335295,0,0,OIF:SA:49:53770,Europe/Paris,,OIF, +OIF:SP:49:53780,1,"Route de Monnerville",48.348299,1.997289,0,0,OIF:SA:49:53780,Europe/Paris,,OIF, +OIF:SP:49:53781,1,"Route de Monnerville",48.348099,1.99671,0,0,OIF:SA:49:53780,Europe/Paris,,OIF, +OIF:SP:49:53800,1,"Rue Ampère",48.527478,2.383152,0,0,OIF:SA:49:53800,Europe/Paris,,OIF, +OIF:SP:49:53801,1,"Rue Ampère",48.527262,2.384343,0,0,OIF:SA:49:53800,Europe/Paris,,OIF, +OIF:SP:49:53820,1,"Rue de Paris",48.643484,2.26968,0,0,OIF:SA:46:10282,Europe/Paris,,OIF, +OIF:SP:49:53821,1,"Rue de Paris",48.643718,2.269476,0,0,OIF:SA:46:10282,Europe/Paris,,OIF, +OIF:SP:49:53840,1,"Avenue du Général Leclerc",48.529611,2.376264,0,0,OIF:SA:49:53840,Europe/Paris,,OIF, +OIF:SP:49:53841,1,"Avenue du Général Leclerc",48.529629,2.376305,0,0,OIF:SA:49:53840,Europe/Paris,,OIF, +OIF:SP:49:53850,1,"Ruelle",48.549106,2.404036,0,0,OIF:SA:49:53850,Europe/Paris,,OIF, +OIF:SP:49:53851,1,"Ruelle",48.549016,2.404076,0,0,OIF:SA:49:53850,Europe/Paris,,OIF, +OIF:SP:49:53860,1,"Ruelle aux Anglais",48.485912,2.208878,0,0,OIF:SA:46:14634,Europe/Paris,,OIF, +OIF:SP:49:53861,1,"Ruelle aux Anglais",48.486164,2.209337,0,0,OIF:SA:46:14634,Europe/Paris,,OIF, +OIF:SP:49:53880,1,"Salle des Fêtes",48.695596,2.298887,0,0,OIF:SA:49:53880,Europe/Paris,,OIF, +OIF:SP:49:53900,1,"Salvador Allende",48.645971,2.307008,0,0,OIF:SA:49:53900,Europe/Paris,,OIF, +OIF:SP:49:53901,1,"Salvador Allende",48.645774,2.307225,0,0,OIF:SA:49:53900,Europe/Paris,,OIF, +OIF:SP:49:53910,1,"Séquigny",48.643431,2.324385,0,0,OIF:SA:49:53910,Europe/Paris,,OIF, +OIF:SP:49:53911,1,"Séquigny",48.643493,2.324345,0,0,OIF:SA:49:53910,Europe/Paris,,OIF, +OIF:SP:49:53930,1,"Les Sonnettes",48.79526,2.550667,0,0,OIF:SA:49:53930,Europe/Paris,,OIF, +OIF:SP:49:53931,1,"Les Sonnettes",48.796098,2.549582,0,0,OIF:SA:49:53930,Europe/Paris,,OIF, +OIF:SP:49:53940,1,"Saint-Caprais",48.540018,2.339653,0,0,OIF:SA:49:53940,Europe/Paris,,OIF, +OIF:SP:49:53941,1,"Saint-Caprais",48.541169,2.337027,0,0,OIF:SA:49:53940,Europe/Paris,,OIF, +OIF:SP:49:53950,1,"Saint-Cyr la Rivière",48.348562,2.151781,0,0,OIF:SA:49:53950,Europe/Paris,,OIF, +OIF:SP:49:53951,1,"Saint-Cyr la Rivière",48.348436,2.151862,0,0,OIF:SA:49:53950,Europe/Paris,,OIF, +OIF:SP:49:53960,1,"Saint-Eutrope",48.616536,2.256876,0,0,OIF:SA:49:53960,Europe/Paris,,OIF, +OIF:SP:49:53961,1,"Saint-Eutrope",48.615744,2.256023,0,0,OIF:SA:49:53960,Europe/Paris,,OIF, +OIF:SP:49:53971,1,"Saint-Exupéry",-22.790443,115.440422,0,0,OIF:SA:49:53971,Europe/Paris,,OIF, +OIF:SP:49:53981,1,"Saint-Exupéry",48.791067,2.553425,0,0,OIF:SA:49:53981,Europe/Paris,,OIF, +OIF:SP:49:53990,1,"Saint-Hubert",48.64113,2.346061,0,0,OIF:SA:10:480,Europe/Paris,,OIF, +OIF:SP:49:53991,1,"Saint-Hubert",48.641255,2.345966,0,0,OIF:SA:10:480,Europe/Paris,,OIF, +OIF:SP:49:54000,1,"Saint-Laurent",48.665795,2.337896,0,0,OIF:SA:49:54000,Europe/Paris,,OIF, +OIF:SP:49:54001,1,"Saint-Laurent",48.665652,2.337665,0,0,OIF:SA:49:54000,Europe/Paris,,OIF, +OIF:SP:49:54010,1,"Saint-Michel",48.444644,2.170454,0,0,OIF:SA:46:9364,Europe/Paris,,OIF, +OIF:SP:49:54011,1,"Saint-Michel",48.444707,2.170373,0,0,OIF:SA:46:9364,Europe/Paris,,OIF, +OIF:SP:49:54030,1,"Stade",48.515849,2.300574,0,0,OIF:SA:49:54030,Europe/Paris,,OIF, +OIF:SP:49:54031,1,"Stade",48.515921,2.300235,0,0,OIF:SA:49:54030,Europe/Paris,,OIF, +OIF:SP:49:54040,1,"Pôle Culturel",48.787559,2.54465,0,0,OIF:SA:49:54040,Europe/Paris,,OIF, +OIF:SP:49:54041,1,"Pôle Culturel",48.787711,2.544909,0,0,OIF:SA:49:54040,Europe/Paris,,OIF, +OIF:SP:49:54050,1,"Stade",48.668796,2.319385,0,0,OIF:SA:49:54050,Europe/Paris,,OIF, +OIF:SP:49:54060,1,"Stade",48.551099,2.408778,0,0,OIF:SA:3:66,Europe/Paris,,OIF, +OIF:SP:49:54061,1,"Stade",48.551054,2.408588,0,0,OIF:SA:3:66,Europe/Paris,,OIF, +OIF:SP:49:54100,1,"Terrasse",48.357774,2.12304,0,0,OIF:SA:49:54100,Europe/Paris,,OIF, +OIF:SP:49:54101,1,"Terrasse",48.357747,2.123,0,0,OIF:SA:49:54100,Europe/Paris,,OIF, +OIF:SP:49:54110,1,"Terrasses",48.675044,2.324106,0,0,OIF:SA:49:54110,Europe/Paris,,OIF, +OIF:SP:49:54111,1,"Terrasses",48.675799,2.322667,0,0,OIF:SA:49:54110,Europe/Paris,,OIF, +OIF:SP:49:54130,1,"Tilleuls",48.518633,2.294225,0,0,OIF:SA:49:54130,Europe/Paris,,OIF, +OIF:SP:49:54131,1,"Tilleuls",48.518615,2.294036,0,0,OIF:SA:49:54130,Europe/Paris,,OIF, +OIF:SP:49:54140,1,"Transfo Savigny",48.652051,2.325441,0,0,OIF:SA:49:54140,Europe/Paris,,OIF, +OIF:SP:49:54141,1,"Transfo Savigny",48.652267,2.324831,0,0,OIF:SA:49:54140,Europe/Paris,,OIF, +OIF:SP:49:54160,1,"Victor Hugo",48.646784,2.329865,0,0,OIF:SA:49:54160,Europe/Paris,,OIF, +OIF:SP:49:54161,1,"Victor Hugo",48.646496,2.329648,0,0,OIF:SA:49:54160,Europe/Paris,,OIF, +OIF:SP:49:54170,1,"Vieux Logis",48.664123,2.328763,0,0,OIF:SA:49:54170,Europe/Paris,,OIF, +OIF:SP:49:54171,1,"Vieux Logis",48.664411,2.329103,0,0,OIF:SA:49:54170,Europe/Paris,,OIF, +OIF:SP:49:54180,1,"Villeneuve",48.475106,2.248574,0,0,OIF:SA:49:54180,Europe/Paris,,OIF, +OIF:SP:49:54181,1,"Villeneuve",48.475367,2.248723,0,0,OIF:SA:49:54180,Europe/Paris,,OIF, +OIF:SP:49:54190,1,"Viry Grigny",48.647188,2.343498,0,0,OIF:SA:49:54190,Europe/Paris,,OIF, +OIF:SP:49:54191,1,"Viry Grigny",48.647045,2.343674,0,0,OIF:SA:49:54190,Europe/Paris,,OIF, +OIF:SP:49:54210,1,"ZAC",48.525653,2.34757,0,0,OIF:SA:49:54210,Europe/Paris,,OIF, +OIF:SP:49:54211,1,"ZAC",48.525203,2.348233,0,0,OIF:SA:49:54210,Europe/Paris,,OIF, +OIF:SP:49:54260,1,"ZI Croix Blanche",48.624195,2.341176,0,0,OIF:SA:49:54260,Europe/Paris,,OIF, +OIF:SP:49:54261,1,"ZI Croix Blanche",48.623772,2.341624,0,0,OIF:SA:49:54260,Europe/Paris,,OIF, +OIF:SP:49:54262,1,"ZI Croix Blanche",48.62432,2.341163,0,0,OIF:SA:49:54260,Europe/Paris,,OIF, +OIF:SP:49:54270,1,"Zone Industrielle",48.568239,2.276725,0,0,OIF:SA:49:54270,Europe/Paris,,OIF, +OIF:SP:49:54271,1,"Zone Industrielle",48.56832,2.276807,0,0,OIF:SA:49:54270,Europe/Paris,,OIF, +OIF:SP:49:54280,1,"Ormoy Village",48.401929,2.150823,0,0,OIF:SA:49:54280,Europe/Paris,,OIF, +OIF:SP:49:54281,1,"Ormoy Village",48.401875,2.150701,0,0,OIF:SA:49:54280,Europe/Paris,,OIF, +OIF:SP:49:54290,1,"Ancienne Gare",48.377996,2.145469,0,0,OIF:SA:49:54290,Europe/Paris,,OIF, +OIF:SP:49:54291,1,"Ancienne Gare",48.378338,2.145238,0,0,OIF:SA:49:54290,Europe/Paris,,OIF, +OIF:SP:49:54410,1,"Hôtel de Ville de Pontault",48.802076,2.606466,0,0,OIF:SA:35:54410,Europe/Paris,,OIF, +OIF:SP:49:54430,1,"Médiathèque F.Mitterand",48.80039,2.609097,0,0,OIF:SA:49:54430,Europe/Paris,,OIF, +OIF:SP:49:54440,1,"Capucines",48.79418,2.60448,0,0,OIF:SA:48:5983,Europe/Paris,,OIF, +OIF:SP:49:54441,1,"Capucines",48.794378,2.604603,0,0,OIF:SA:48:5983,Europe/Paris,,OIF, +OIF:SP:49:54452,1,"Espace Roger Boisramé",48.790461,2.603916,0,0,OIF:SA:48:5985,Europe/Paris,,OIF, +OIF:SP:49:54453,1,"Espace Roger Boisramé",48.791323,2.604125,0,0,OIF:SA:48:5985,Europe/Paris,,OIF, +OIF:SP:49:54680,1,"Hôtel de Ville",48.521666,2.263192,0,0,OIF:SA:49:54680,Europe/Paris,,OIF, +OIF:SP:49:54690,1,"Place Saint-Gombert",48.512915,2.339205,0,0,OIF:SA:49:54690,Europe/Paris,,OIF, +OIF:SP:49:55310,1,"Rue du Four",48.783479,2.598862,0,0,OIF:SA:48:5988,Europe/Paris,,OIF, +OIF:SP:49:55460,1,"Jeunes Détenus",48.641287,2.370978,0,0,OIF:SA:10:1187,Europe/Paris,,OIF, +OIF:SP:49:55461,1,"Jeunes Détenus",48.641143,2.37095,0,0,OIF:SA:10:1187,Europe/Paris,,OIF, +OIF:SP:49:55960,1,"Aristide Briand",48.634011,2.330301,0,0,OIF:SA:46:10804,Europe/Paris,,OIF, +OIF:SP:49:55961,1,"Aristide Briand",48.63384,2.330206,0,0,OIF:SA:46:10804,Europe/Paris,,OIF, +OIF:SP:49:55970,1,"Louis Tostain",48.636474,2.332402,0,0,OIF:SA:10:305,Europe/Paris,,OIF, +OIF:SP:49:55971,1,"Louis Tostain",48.635997,2.331982,0,0,OIF:SA:10:305,Europe/Paris,,OIF, +OIF:SP:49:58430,1,"Collège G. Tillon",48.524333,2.293991,0,0,OIF:SA:49:58430,Europe/Paris,,OIF, +OIF:SP:49:58790,1,"Roses",48.630954,2.329392,0,0,OIF:SA:46:14548,Europe/Paris,,OIF, +OIF:SP:49:58791,1,"Roses",48.631044,2.329202,0,0,OIF:SA:46:14548,Europe/Paris,,OIF, +OIF:SP:49:59010,1,"L'Epine",48.53609,2.343213,0,0,OIF:SA:49:59010,Europe/Paris,,OIF, +OIF:SP:49:59011,1,"L'Epine",48.536396,2.34301,0,0,OIF:SA:49:59010,Europe/Paris,,OIF, +OIF:SP:49:59380,1,"Normandie-Niemen",48.637265,2.331751,0,0,OIF:SA:46:10824,Europe/Paris,,OIF, +OIF:SP:49:59381,1,"Normandie-Niemen",48.637328,2.331575,0,0,OIF:SA:46:10824,Europe/Paris,,OIF, +OIF:SP:49:59500,1,"Jean Rostand",48.650151,2.306124,0,0,OIF:SA:46:10846,Europe/Paris,,OIF, +OIF:SP:49:59501,1,"Jean Rostand",48.64909,2.305812,0,0,OIF:SA:46:10846,Europe/Paris,,OIF, +OIF:SP:49:59502,1,"Jean Rostand",48.649809,2.305744,0,0,OIF:SA:46:10846,Europe/Paris,,OIF, +OIF:SP:49:59510,1,"Claire Joie",48.647606,2.302503,0,0,OIF:SA:49:59510,Europe/Paris,,OIF, +OIF:SP:49:59511,1,"Claire Joie",48.648514,2.303778,0,0,OIF:SA:49:59510,Europe/Paris,,OIF, +OIF:SP:49:59520,1,"Allée de l'Orge",48.646374,2.301473,0,0,OIF:SA:46:10800,Europe/Paris,,OIF, +OIF:SP:49:59521,1,"Allée de l'Orge",48.646384,2.302884,0,0,OIF:SA:46:10800,Europe/Paris,,OIF, +OIF:SP:49:59630,1,"Lotissement",48.541762,2.327943,0,0,OIF:SA:49:59630,Europe/Paris,,OIF, +OIF:SP:49:59631,1,"Lotissement",48.541834,2.327794,0,0,OIF:SA:49:59630,Europe/Paris,,OIF, +OIF:SP:49:60360,1,"Foyer Avril",48.691659,2.297939,0,0,OIF:SA:46:14943,Europe/Paris,,OIF, +OIF:SP:49:60361,1,"Foyer Avril",48.691919,2.297749,0,0,OIF:SA:46:14943,Europe/Paris,,OIF, +OIF:SP:49:60370,1,"Clinique de l'Yvette",48.689664,2.300805,0,0,OIF:SA:46:14945,Europe/Paris,,OIF, +OIF:SP:49:60371,1,"Clinique de l'Yvette",48.689664,2.300805,0,0,OIF:SA:46:14945,Europe/Paris,,OIF, +OIF:SP:49:60380,1,"Montaquoy",48.473098,2.326413,0,0,OIF:SA:49:60380,Europe/Paris,,OIF, +OIF:SP:49:60381,1,"Montaquoy",48.473107,2.326332,0,0,OIF:SA:49:60380,Europe/Paris,,OIF, +OIF:SP:49:60390,1,"Hôtel de Ville d'Huison",48.458066,2.322875,0,0,OIF:SA:49:60390,Europe/Paris,,OIF, +OIF:SP:49:60391,1,"Hôtel de Ville d'Huison",48.458084,2.322686,0,0,OIF:SA:49:60390,Europe/Paris,,OIF, +OIF:SP:49:60400,1,"Marché",48.810947,2.510329,0,0,OIF:SA:49:60400,Europe/Paris,,OIF, +OIF:SP:49:60401,1,"Marché",48.810875,2.51022,0,0,OIF:SA:49:60400,Europe/Paris,,OIF, +OIF:SP:49:60410,1,"D'Huison",48.455208,2.338797,0,0,OIF:SA:49:60410,Europe/Paris,,OIF, +OIF:SP:49:60411,1,"D'Huison",48.455154,2.338703,0,0,OIF:SA:49:60410,Europe/Paris,,OIF, +OIF:SP:49:60420,1,"Pierres Rangées",48.476755,2.357768,0,0,OIF:SA:49:60420,Europe/Paris,,OIF, +OIF:SP:49:60421,1,"Pierres Rangées",48.47671,2.357714,0,0,OIF:SA:49:60420,Europe/Paris,,OIF, +OIF:SP:49:60430,1,"Caporal Chef Sellier",48.476017,2.361878,0,0,OIF:SA:49:60430,Europe/Paris,,OIF, +OIF:SP:49:60431,1,"Caporal Chef Sellier",48.475999,2.361811,0,0,OIF:SA:49:60430,Europe/Paris,,OIF, +OIF:SP:49:60440,1,"La Garenne",48.476124,2.365718,0,0,OIF:SA:49:60440,Europe/Paris,,OIF, +OIF:SP:49:60441,1,"La Garenne",48.476124,2.365826,0,0,OIF:SA:49:60440,Europe/Paris,,OIF, +OIF:SP:49:60442,1,"La Cascade",48.809526,2.522816,0,0,OIF:SA:49:60442,Europe/Paris,,OIF, +OIF:SP:49:60450,1,"Musée de la Résistance",48.806562,2.526901,0,0,OIF:SA:49:60450,Europe/Paris,,OIF, +OIF:SP:49:60451,1,"Musée de la Résistance",48.806571,2.527119,0,0,OIF:SA:49:60450,Europe/Paris,,OIF, +OIF:SP:49:60460,1,"La Tuilerie",48.727304,2.271161,0,0,OIF:SA:49:60460,Europe/Paris,,OIF, +OIF:SP:49:60461,1,"La Tuilerie",48.727448,2.270971,0,0,OIF:SA:49:60460,Europe/Paris,,OIF, +OIF:SP:49:60490,1,"Saint-Germain",48.512222,2.33539,0,0,OIF:SA:49:60490,Europe/Paris,,OIF, +OIF:SP:49:60491,1,"Saint-Germain",48.512249,2.335268,0,0,OIF:SA:49:60490,Europe/Paris,,OIF, +OIF:SP:49:60500,1,"Stade",48.510002,2.344631,0,0,OIF:SA:49:60500,Europe/Paris,,OIF, +OIF:SP:49:60501,1,"Stade",48.51002,2.344806,0,0,OIF:SA:49:60500,Europe/Paris,,OIF, +OIF:SP:49:63400,1,"Marie Champigny/Marché",48.813221,2.510023,0,0,OIF:SA:49:63400,Europe/Paris,,OIF, +OIF:SP:49:63500,1,"Les Froulans",48.562791,2.246557,0,0,OIF:SA:46:14873,Europe/Paris,,OIF, +OIF:SP:49:63501,1,"Les Froulans",48.562577,2.249699,0,0,OIF:SA:46:14873,Europe/Paris,,OIF, +OIF:SP:49:63572,1,"Léo Lagrange",48.629336,2.34298,0,0,OIF:SA:49:63572,Europe/Paris,,OIF, +OIF:SP:49:63573,1,"Léo Lagrange",48.6293,2.343116,0,0,OIF:SA:49:63572,Europe/Paris,,OIF, +OIF:SP:49:63580,1,"Carnot",48.644579,2.312475,0,0,OIF:SA:49:63580,Europe/Paris,,OIF, +OIF:SP:49:63581,1,"Carnot",48.64457,2.312407,0,0,OIF:SA:49:63580,Europe/Paris,,OIF, +OIF:SP:49:63630,1,"Martelet",48.811898,2.517082,0,0,OIF:SA:49:63630,Europe/Paris,,OIF, +OIF:SP:49:63631,1,"Martelet",48.811925,2.517231,0,0,OIF:SA:49:63630,Europe/Paris,,OIF, +OIF:SP:49:63650,1,"Rue des Fleurs",48.716736,2.295992,0,0,OIF:SA:49:63650,Europe/Paris,,OIF, +OIF:SP:49:63651,1,"Rue des Fleurs",48.717104,2.294891,0,0,OIF:SA:49:63650,Europe/Paris,,OIF, +OIF:SP:49:63680,1,"Colonel Fabien",48.647152,2.327626,0,0,OIF:SA:49:63680,Europe/Paris,,OIF, +OIF:SP:49:63681,1,"Colonel Fabien",48.647143,2.327504,0,0,OIF:SA:49:63680,Europe/Paris,,OIF, +OIF:SP:49:63700,1,"Cimetière Russe",48.632141,2.343157,0,0,OIF:SA:49:63700,Europe/Paris,,OIF, +OIF:SP:49:63701,1,"Cimetière Russe",48.63206,2.343049,0,0,OIF:SA:49:63700,Europe/Paris,,OIF, +OIF:SP:49:63710,1,"Plessis",48.621534,2.342369,0,0,OIF:SA:49:63710,Europe/Paris,,OIF, +OIF:SP:49:63711,1,"Plessis",48.621579,2.342288,0,0,OIF:SA:49:63710,Europe/Paris,,OIF, +OIF:SP:49:63730,1,"CC Commercial les 4 Chênes",48.776816,2.587948,0,0,OIF:SA:49:63730,Europe/Paris,,OIF, +OIF:SP:49:63731,1,"CC Commercial les 4 Chênes",48.776816,2.587948,0,0,OIF:SA:49:63730,Europe/Paris,,OIF, +OIF:SP:49:63850,1,"Danielle Casanova",48.789725,2.549733,0,0,OIF:SA:49:51111,Europe/Paris,,OIF, +OIF:SP:49:63851,1,"Danielle Casanova",48.789269,2.548561,0,0,OIF:SA:49:51111,Europe/Paris,,OIF, +OIF:SP:49:63860,1,"Stop Cerny",48.490754,2.35139,0,0,OIF:SA:49:63860,Europe/Paris,,OIF, +OIF:SP:49:63861,1,"Stop Cerny",48.49079,2.351282,0,0,OIF:SA:49:63860,Europe/Paris,,OIF, +OIF:SP:49:63890,1,"Collège A. Maurois",48.67952,2.32082,0,0,OIF:SA:49:63890,Europe/Paris,,OIF, +OIF:SP:49:63900,1,"H.Dunant",48.680887,2.322557,0,0,OIF:SA:49:63900,Europe/Paris,,OIF, +OIF:SP:49:63910,1,"Molière - Silléry",48.679682,2.324648,0,0,OIF:SA:49:63910,Europe/Paris,,OIF, +OIF:SP:49:63920,1,"Rue d'Athis",48.677498,2.325707,0,0,OIF:SA:49:63920,Europe/Paris,,OIF, +OIF:SP:49:63930,1,"Hauts Graviers",48.67455,2.330241,0,0,OIF:SA:49:63930,Europe/Paris,,OIF, +OIF:SP:49:63940,1,"Gare Petit Vaux",48.675701,2.333797,0,0,OIF:SA:8739365,Europe/Paris,,OIF, +OIF:SP:49:63950,1,"Rue du Parc",48.674675,2.318759,0,0,OIF:SA:49:63950,Europe/Paris,,OIF, +OIF:SP:49:63960,1,"Domaine du Parc",48.67311,2.312896,0,0,OIF:SA:49:63960,Europe/Paris,,OIF, +OIF:SP:49:63970,1,"Pavillon",48.673471,2.322315,0,0,OIF:SA:49:63970,Europe/Paris,,OIF, +OIF:SP:49:63990,1,"Pont Rubeau",48.676024,2.327676,0,0,OIF:SA:49:63990,Europe/Paris,,OIF, +OIF:SP:49:64000,1,"Chemin Vert",48.673256,2.333431,0,0,OIF:SA:49:64000,Europe/Paris,,OIF, +OIF:SP:49:64390,1,"La Bonde",48.723806,2.286381,0,0,OIF:SA:49:64390,Europe/Paris,,OIF, +OIF:SP:49:64391,1,"La Bonde",48.722485,2.287456,0,0,OIF:SA:49:64390,Europe/Paris,,OIF, +OIF:SP:49:64400,1,"Les Roulles",48.667465,2.312872,0,0,OIF:SA:49:64400,Europe/Paris,,OIF, +OIF:SP:49:64440,1,"Verger",48.548553,2.277777,0,0,OIF:SA:49:64440,Europe/Paris,,OIF, +OIF:SP:49:64460,1,"Lavoir",48.56083,2.245436,0,0,OIF:SA:49:64460,Europe/Paris,,OIF, +OIF:SP:49:64480,1,"Piffrets",48.561821,2.248671,0,0,OIF:SA:49:64480,Europe/Paris,,OIF, +OIF:SP:49:65340,1,"HLM Bas",48.434236,2.142426,0,0,OIF:SA:46:14697,Europe/Paris,,OIF, +OIF:SP:49:65341,1,"HLM Bas",48.433795,2.14255,0,0,OIF:SA:46:14697,Europe/Paris,,OIF, +OIF:SP:49:65350,1,"Rotonde",48.43351,2.155277,0,0,OIF:SA:14:9352,Europe/Paris,,OIF, +OIF:SP:49:65351,1,"Rotonde",48.433384,2.155034,0,0,OIF:SA:14:9352,Europe/Paris,,OIF, +OIF:SP:49:65360,1,"Gendarmerie",48.478329,2.354253,0,0,OIF:SA:49:65360,Europe/Paris,,OIF, +OIF:SP:49:65361,1,"Gendarmerie",48.478275,2.354267,0,0,OIF:SA:49:65360,Europe/Paris,,OIF, +OIF:SP:49:65370,1,"Marché",48.805078,2.618292,0,0,OIF:SA:35:63753,Europe/Paris,,OIF, +OIF:SP:49:65390,1,"Mairie",48.456035,2.328755,0,0,OIF:SA:49:60390,Europe/Paris,,OIF, +OIF:SP:49:65391,1,"Mairie",48.455999,2.32866,0,0,OIF:SA:49:60390,Europe/Paris,,OIF, +OIF:SP:49:65400,1,"Église d'Huison",48.456215,2.341298,0,0,OIF:SA:49:65400,Europe/Paris,,OIF, +OIF:SP:4:1,1,"Brossolette",48.72907,2.424323,0,0,OIF:SA:4:1,Europe/Paris,,OIF, +OIF:SP:4:10,1,"Reine Astrid",48.727689,2.418818,0,0,OIF:SA:4:10,Europe/Paris,,OIF, +OIF:SP:4:100,1,"Passerelle",48.781962,2.416741,0,0,OIF:SA:4:100,Europe/Paris,,OIF, +OIF:SP:4:101,1,"Passerelle",48.782572,2.417504,0,0,OIF:SA:4:100,Europe/Paris,,OIF, +OIF:SP:4:102,1,"Pont de Vitry",48.796433,2.415879,0,0,OIF:SA:4:102,Europe/Paris,,OIF, +OIF:SP:4:103,1,"Pont de Vitry",48.795903,2.415756,0,0,OIF:SA:4:102,Europe/Paris,,OIF, +OIF:SP:4:104,1,"Rue Tortue",48.788274,2.411854,0,0,OIF:SA:4:104,Europe/Paris,,OIF, +OIF:SP:4:105,1,"Rue Tortue",48.788544,2.412127,0,0,OIF:SA:4:104,Europe/Paris,,OIF, +OIF:SP:4:106,1,"Abbé Grégoire",48.73996,2.417342,0,0,OIF:SA:4:106,Europe/Paris,,OIF, +OIF:SP:4:107,1,"Place Amédée Soupault",48.734584,2.417905,0,0,OIF:SA:4:107,Europe/Paris,,OIF, +OIF:SP:4:108,1,"Place Amédée Soupault",48.734242,2.418162,0,0,OIF:SA:4:107,Europe/Paris,,OIF, +OIF:SP:4:109,1,"Place Amédée Soupault",48.73515,2.41815,0,0,OIF:SA:4:107,Europe/Paris,,OIF, +OIF:SP:4:11,1,"Sacré Cœur",48.724213,2.415661,0,0,OIF:SA:4:11,Europe/Paris,,OIF, +OIF:SP:4:110,1,"Général de Gaulle",48.73564,2.424307,0,0,OIF:SA:4:110,Europe/Paris,,OIF, +OIF:SP:4:111,1,"Général de Gaulle",48.735631,2.42413,0,0,OIF:SA:4:110,Europe/Paris,,OIF, +OIF:SP:4:112,1,"Écoles",48.73257,2.442115,0,0,OIF:SA:4:112,Europe/Paris,,OIF, +OIF:SP:4:113,1,"Écoles",48.732705,2.441857,0,0,OIF:SA:4:112,Europe/Paris,,OIF, +OIF:SP:4:114,1,"EDF",48.729472,2.438712,0,0,OIF:SA:4:114,Europe/Paris,,OIF, +OIF:SP:4:115,1,"EDF",48.729516,2.439011,0,0,OIF:SA:4:114,Europe/Paris,,OIF, +OIF:SP:4:116,1,"Ernest Renan",48.730317,2.413781,0,0,OIF:SA:4:116,Europe/Paris,,OIF, +OIF:SP:4:117,1,"Rue Foch",48.731678,2.408824,0,0,OIF:SA:4:117,Europe/Paris,,OIF, +OIF:SP:4:118,1,"Gallieni",48.742644,2.42213,0,0,OIF:SA:4:118,Europe/Paris,,OIF, +OIF:SP:4:119,1,"Gambetta",48.727008,2.429197,0,0,OIF:SA:4:119,Europe/Paris,,OIF, +OIF:SP:4:12,1,"Sacré Cœur",48.724285,2.415552,0,0,OIF:SA:4:11,Europe/Paris,,OIF, +OIF:SP:4:120,1,"Gambetta",48.726971,2.429564,0,0,OIF:SA:4:119,Europe/Paris,,OIF, +OIF:SP:4:121,1,"Villeneuve-le-Roi Gare RER",48.739757,2.423688,0,0,OIF:SA:8754527,Europe/Paris,,OIF, +OIF:SP:4:122,1,"Villeneuve-le-Roi Gare RER",48.740133,2.42657,0,0,OIF:SA:8754527,Europe/Paris,,OIF, +OIF:SP:4:123,1,"Villeneuve-le-Roi Gare RER",48.739731,2.423457,0,0,OIF:SA:8754527,Europe/Paris,,OIF, +OIF:SP:4:124,1,"G. du Vair",48.737288,2.406046,0,0,OIF:SA:4:124,Europe/Paris,,OIF, +OIF:SP:4:125,1,"Henri Dunant",48.734543,2.411681,0,0,OIF:SA:4:125,Europe/Paris,,OIF, +OIF:SP:4:126,1,"Hôtels",48.728738,2.434784,0,0,OIF:SA:4:126,Europe/Paris,,OIF, +OIF:SP:4:127,1,"Hôtels",48.728684,2.43477,0,0,OIF:SA:4:126,Europe/Paris,,OIF, +OIF:SP:4:128,1,"Honoré Oursel",48.730235,2.439352,0,0,OIF:SA:4:128,Europe/Paris,,OIF, +OIF:SP:4:129,1,"Honoré Oursel",48.729704,2.440642,0,0,OIF:SA:4:128,Europe/Paris,,OIF, +OIF:SP:4:13,1,"Tamaris le Parc",48.722839,2.413757,0,0,OIF:SA:4:13,Europe/Paris,,OIF, +OIF:SP:4:130,1,"Jeanne d'Arc",48.73262,2.424478,0,0,OIF:SA:4:130,Europe/Paris,,OIF, +OIF:SP:4:131,1,"Foyer Jean Rostand",48.735213,2.404576,0,0,OIF:SA:4:131,Europe/Paris,,OIF, +OIF:SP:4:132,1,"La Fresnaie",48.737622,2.441038,0,0,OIF:SA:4:132,Europe/Paris,,OIF, +OIF:SP:4:133,1,"La Fresnaie",48.737711,2.441881,0,0,OIF:SA:4:132,Europe/Paris,,OIF, +OIF:SP:4:134,1,"Louis Jarrige",48.739734,2.418538,0,0,OIF:SA:4:134,Europe/Paris,,OIF, +OIF:SP:4:135,1,"Lycée Brassens",48.73002,2.427436,0,0,OIF:SA:4:135,Europe/Paris,,OIF, +OIF:SP:4:136,1,"Lycée Brassens",48.730443,2.426947,0,0,OIF:SA:4:135,Europe/Paris,,OIF, +OIF:SP:4:137,1,"Lycée Brassens",48.729418,2.427924,0,0,OIF:SA:4:135,Europe/Paris,,OIF, +OIF:SP:4:138,1,"Mairie",48.733332,2.408364,0,0,OIF:SA:4:138,Europe/Paris,,OIF, +OIF:SP:4:139,1,"Marché",48.736541,2.421264,0,0,OIF:SA:4:139,Europe/Paris,,OIF, +OIF:SP:4:14,1,"Tamaris le Parc",48.722758,2.413471,0,0,OIF:SA:4:13,Europe/Paris,,OIF, +OIF:SP:4:140,1,"Mariniers",48.728358,2.437079,0,0,OIF:SA:4:140,Europe/Paris,,OIF, +OIF:SP:4:141,1,"Mariniers",48.728305,2.436984,0,0,OIF:SA:4:140,Europe/Paris,,OIF, +OIF:SP:4:142,1,"Place Molière",48.732116,2.412711,0,0,OIF:SA:4:142,Europe/Paris,,OIF, +OIF:SP:4:145,1,"Nikos Belloyanis",48.743042,2.417837,0,0,OIF:SA:4:145,Europe/Paris,,OIF, +OIF:SP:4:146,1,"École Painlevé",48.738308,2.41378,0,0,OIF:SA:4:146,Europe/Paris,,OIF, +OIF:SP:4:147,1,"Plaine Basse",48.735186,2.441495,0,0,OIF:SA:4:147,Europe/Paris,,OIF, +OIF:SP:4:148,1,"Plaine Basse",48.735339,2.441604,0,0,OIF:SA:4:147,Europe/Paris,,OIF, +OIF:SP:4:149,1,"Parc en Seine",48.742831,2.435612,0,0,OIF:SA:4:149,Europe/Paris,,OIF, +OIF:SP:4:15,1,"Clos de Brétigny",48.714318,2.398803,0,0,OIF:SA:4:15,Europe/Paris,,OIF, +OIF:SP:4:150,1,"Parc en Seine",48.742984,2.43549,0,0,OIF:SA:4:149,Europe/Paris,,OIF, +OIF:SP:4:151,1,"Pierre Currie",48.732295,2.39911,0,0,OIF:SA:4:151,Europe/Paris,,OIF, +OIF:SP:4:154,1,"Les Pierrières",48.726517,2.410651,0,0,OIF:SA:4:154,Europe/Paris,,OIF, +OIF:SP:4:155,1,"Poincaré",48.733944,2.42107,0,0,OIF:SA:4:155,Europe/Paris,,OIF, +OIF:SP:4:156,1,"Paul Painlevé",48.736844,2.411956,0,0,OIF:SA:4:156,Europe/Paris,,OIF, +OIF:SP:4:157,1,"Paul Painlevé",48.736979,2.41193,0,0,OIF:SA:4:156,Europe/Paris,,OIF, +OIF:SP:4:158,1,"Place de la République",48.731384,2.418335,0,0,OIF:SA:4:158,Europe/Paris,,OIF, +OIF:SP:4:159,1,"Place de la République",48.731456,2.418484,0,0,OIF:SA:4:158,Europe/Paris,,OIF, +OIF:SP:4:16,1,"Parc Central",48.716354,2.38965,0,0,OIF:SA:4:16,Europe/Paris,,OIF, +OIF:SP:4:160,1,"Raymond Ml",48.736422,2.411344,0,0,OIF:SA:4:160,Europe/Paris,,OIF, +OIF:SP:4:161,1,"Raoul Delattre",48.72746,2.436684,0,0,OIF:SA:4:161,Europe/Paris,,OIF, +OIF:SP:4:162,1,"Raoul Delattre",48.727577,2.436888,0,0,OIF:SA:4:161,Europe/Paris,,OIF, +OIF:SP:4:163,1,"Raoul Delattre",48.727622,2.436657,0,0,OIF:SA:4:161,Europe/Paris,,OIF, +OIF:SP:4:164,1,"République",48.73399,2.405729,0,0,OIF:SA:4:164,Europe/Paris,,OIF, +OIF:SP:4:165,1,"Service Enfance",48.73175,2.408797,0,0,OIF:SA:4:165,Europe/Paris,,OIF, +OIF:SP:4:166,1,"Saint-Martin",48.738752,2.40738,0,0,OIF:SA:4:166,Europe/Paris,,OIF, +OIF:SP:4:167,1,"Saint-Martin",48.739517,2.407136,0,0,OIF:SA:4:166,Europe/Paris,,OIF, +OIF:SP:4:168,1,"Serge Voyer",48.732383,2.416026,0,0,OIF:SA:4:168,Europe/Paris,,OIF, +OIF:SP:4:169,1,"Val d'Ablon",48.727956,2.434117,0,0,OIF:SA:4:169,Europe/Paris,,OIF, +OIF:SP:4:17,1,"Parc Central",48.71666,2.388455,0,0,OIF:SA:4:16,Europe/Paris,,OIF, +OIF:SP:4:170,1,"Val d'Ablon",48.727921,2.433587,0,0,OIF:SA:4:169,Europe/Paris,,OIF, +OIF:SP:4:171,1,"Victor Hugo",48.732542,2.421149,0,0,OIF:SA:4:171,Europe/Paris,,OIF, +OIF:SP:4:172,1,"Weddingen",48.728489,2.431278,0,0,OIF:SA:4:172,Europe/Paris,,OIF, +OIF:SP:4:173,1,"Weddingen",48.728777,2.430749,0,0,OIF:SA:4:172,Europe/Paris,,OIF, +OIF:SP:4:174,1,"Villeneuve Saint-Georges Gare RER",48.729447,2.446592,0,0,OIF:SA:8768182,Europe/Paris,,OIF, +OIF:SP:4:18,1,"Clos Nollet",48.712424,2.392919,0,0,OIF:SA:4:18,Europe/Paris,,OIF, +OIF:SP:4:189,1,"Clémenceau",48.767405,2.410369,0,0,OIF:SA:4:189,Europe/Paris,,OIF, +OIF:SP:4:19,1,"Dagobert",48.719062,2.402707,0,0,OIF:SA:4:19,Europe/Paris,,OIF, +OIF:SP:4:2,1,"Brossolette",48.72863,2.423738,0,0,OIF:SA:4:1,Europe/Paris,,OIF, +OIF:SP:4:20,1,"Dagobert",48.719664,2.401662,0,0,OIF:SA:4:19,Europe/Paris,,OIF, +OIF:SP:4:21,1,"Dagobert",48.719574,2.401825,0,0,OIF:SA:4:19,Europe/Paris,,OIF, +OIF:SP:4:22,1,"Delalande-Pasteur",48.713213,2.396465,0,0,OIF:SA:4:22,Europe/Paris,,OIF, +OIF:SP:4:24,1,"Dgac",48.716379,2.393141,0,0,OIF:SA:4:24,Europe/Paris,,OIF, +OIF:SP:4:25,1,"Dgac",48.716927,2.393943,0,0,OIF:SA:4:24,Europe/Paris,,OIF, +OIF:SP:4:26,1,"Maison de l'Environnement",48.71394,2.380452,0,0,OIF:SA:4:26,Europe/Paris,,OIF, +OIF:SP:4:27,1,"Maison de l'Environnement",48.71438,2.381661,0,0,OIF:SA:4:26,Europe/Paris,,OIF, +OIF:SP:4:28,1,"Europe",48.721529,2.410209,0,0,OIF:SA:4:28,Europe/Paris,,OIF, +OIF:SP:4:29,1,"Place de Mons",48.715719,2.40091,0,0,OIF:SA:4:29,Europe/Paris,,OIF, +OIF:SP:4:3,1,"Château",48.723605,2.411041,0,0,OIF:SA:4:3,Europe/Paris,,OIF, +OIF:SP:4:30,1,"Rue du Musée",48.716763,2.398534,0,0,OIF:SA:4:30,Europe/Paris,,OIF, +OIF:SP:4:31,1,"Rue du Musée",48.716934,2.398575,0,0,OIF:SA:4:30,Europe/Paris,,OIF, +OIF:SP:4:32,1,"N. Dentressangle",48.698086,2.395348,0,0,OIF:SA:4:32,Europe/Paris,,OIF, +OIF:SP:4:33,1,"N. Dentressangle",48.698428,2.395226,0,0,OIF:SA:4:32,Europe/Paris,,OIF, +OIF:SP:4:34,1,"Plaine Basse",48.705895,2.400124,0,0,OIF:SA:4:34,Europe/Paris,,OIF, +OIF:SP:4:35,1,"Plaine Basse",48.705796,2.400259,0,0,OIF:SA:4:34,Europe/Paris,,OIF, +OIF:SP:4:36,1,"Porte de l'Essonne",48.71423,2.371718,0,0,OIF:SA:59844,Europe/Paris,,OIF, +OIF:SP:4:37,1,"Porte de l'Essonne",48.714023,2.371868,0,0,OIF:SA:59844,Europe/Paris,,OIF, +OIF:SP:4:38,1,"Rue d'Ablon",48.717837,2.406468,0,0,OIF:SA:4:38,Europe/Paris,,OIF, +OIF:SP:4:39,1,"Rue d'Ablon",48.71764,2.405667,0,0,OIF:SA:4:38,Europe/Paris,,OIF, +OIF:SP:4:4,1,"Château",48.723398,2.411339,0,0,OIF:SA:4:3,Europe/Paris,,OIF, +OIF:SP:4:40,1,"Sanders",48.694223,2.390958,0,0,OIF:SA:4:40,Europe/Paris,,OIF, +OIF:SP:4:41,1,"Sanders",48.694475,2.391013,0,0,OIF:SA:4:40,Europe/Paris,,OIF, +OIF:SP:4:42,1,"Saint-Charles",48.710016,2.39126,0,0,OIF:SA:4:42,Europe/Paris,,OIF, +OIF:SP:4:43,1,"ZA les Guyards",48.721478,2.405468,0,0,OIF:SA:4:43,Europe/Paris,,OIF, +OIF:SP:4:44,1,"ZA les Guyards",48.721397,2.405346,0,0,OIF:SA:4:43,Europe/Paris,,OIF, +OIF:SP:4:45,1,"8 Mai 1945",48.768673,2.408739,0,0,OIF:SA:4:45,Europe/Paris,,OIF, +OIF:SP:4:46,1,"8 Mai 1945",48.768934,2.409025,0,0,OIF:SA:4:45,Europe/Paris,,OIF, +OIF:SP:4:47,1,"Général Leclerc",48.762338,2.406161,0,0,OIF:SA:4:47,Europe/Paris,,OIF, +OIF:SP:4:48,1,"Général Leclerc",48.762105,2.40612,0,0,OIF:SA:4:47,Europe/Paris,,OIF, +OIF:SP:4:49,1,"Choisy-le-Roi Gare RER",48.764404,2.409128,0,0,OIF:SA:8754528,Europe/Paris,,OIF, +OIF:SP:4:5,1,"Europe",48.722095,2.410903,0,0,OIF:SA:4:28,Europe/Paris,,OIF, +OIF:SP:4:50,1,"Choisy-le-Roi Gare RER",48.764431,2.409318,0,0,OIF:SA:8754528,Europe/Paris,,OIF, +OIF:SP:4:51,1,"Choisy-le-Roi Gare RER",48.763927,2.410038,0,0,OIF:SA:8754528,Europe/Paris,,OIF, +OIF:SP:4:52,1,"Rouget de l'Isle",48.76348,2.406394,0,0,OIF:SA:4:52,Europe/Paris,,OIF, +OIF:SP:4:53,1,"Docteur Roux",48.771091,2.408715,0,0,OIF:SA:4:53,Europe/Paris,,OIF, +OIF:SP:4:54,1,"Docteur Roux",48.771639,2.409138,0,0,OIF:SA:4:53,Europe/Paris,,OIF, +OIF:SP:4:55,1,"RER Jean Danaux",48.690055,2.386066,0,0,OIF:SA:8754524,Europe/Paris,,OIF, +OIF:SP:4:56,1,"Fer à Cheval",48.744802,2.407361,0,0,OIF:SA:8749573,Europe/Paris,,OIF, +OIF:SP:4:57,1,"Fer à Cheval",48.744568,2.406817,0,0,OIF:SA:8749573,Europe/Paris,,OIF, +OIF:SP:4:58,1,"Orly Gare RER",48.741425,2.402899,0,0,OIF:SA:8754620,Europe/Paris,,OIF, +OIF:SP:4:59,1,"Orly Gare RER",48.741802,2.402627,0,0,OIF:SA:8754620,Europe/Paris,,OIF, +OIF:SP:4:6,1,"Ablon Gare RER",48.724471,2.419207,0,0,OIF:SA:8754526,Europe/Paris,,OIF, +OIF:SP:4:60,1,"Jean Jaurès",48.749764,2.40628,0,0,OIF:SA:4:60,Europe/Paris,,OIF, +OIF:SP:4:61,1,"Jean Jaurès",48.750123,2.406362,0,0,OIF:SA:4:60,Europe/Paris,,OIF, +OIF:SP:4:62,1,"Noyer Grenot",48.748625,2.402024,0,0,OIF:SA:4:62,Europe/Paris,,OIF, +OIF:SP:4:63,1,"Noyer Grenot",48.748858,2.403533,0,0,OIF:SA:4:62,Europe/Paris,,OIF, +OIF:SP:4:64,1,"Paul Lafargue",48.745182,2.40168,0,0,OIF:SA:4:64,Europe/Paris,,OIF, +OIF:SP:4:65,1,"Paul Lafargue",48.74529,2.40164,0,0,OIF:SA:4:64,Europe/Paris,,OIF, +OIF:SP:4:66,1,"J. J. Rousseau",48.743277,2.401909,0,0,OIF:SA:4:66,Europe/Paris,,OIF, +OIF:SP:4:67,1,"J. J. Rousseau",48.743124,2.401977,0,0,OIF:SA:4:66,Europe/Paris,,OIF, +OIF:SP:4:68,1,"La Source",48.746055,2.399738,0,0,OIF:SA:4:68,Europe/Paris,,OIF, +OIF:SP:4:69,1,"La Source",48.746127,2.399928,0,0,OIF:SA:4:68,Europe/Paris,,OIF, +OIF:SP:4:7,1,"Ablon Gare RER",48.724508,2.418881,0,0,OIF:SA:8754526,Europe/Paris,,OIF, +OIF:SP:4:70,1,"Victoire",48.746357,2.407159,0,0,OIF:SA:4:70,Europe/Paris,,OIF, +OIF:SP:4:71,1,"Victoire",48.746384,2.407376,0,0,OIF:SA:4:70,Europe/Paris,,OIF, +OIF:SP:4:72,1,"Aéroport Orly N7",48.728693,2.368902,0,0,OIF:SA:59675,Europe/Paris,,OIF, +OIF:SP:4:73,1,"Aéroport Orly Ouest",48.728507,2.359812,0,0,OIF:SA:8749571,Europe/Paris,,OIF, +OIF:SP:4:74,1,"Cité des Vergers",48.757505,2.402022,0,0,OIF:SA:4:74,Europe/Paris,,OIF, +OIF:SP:4:75,1,"Cité des Vergers",48.757406,2.402117,0,0,OIF:SA:4:74,Europe/Paris,,OIF, +OIF:SP:4:76,1,"E. Levasseur",48.754958,2.39007,0,0,OIF:SA:4:76,Europe/Paris,,OIF, +OIF:SP:4:77,1,"Guy Moquet",48.759778,2.403588,0,0,OIF:SA:4:77,Europe/Paris,,OIF, +OIF:SP:4:78,1,"Guy Moquet",48.760353,2.403616,0,0,OIF:SA:4:77,Europe/Paris,,OIF, +OIF:SP:4:79,1,"Institut Grignon",48.752654,2.396606,0,0,OIF:SA:4:79,Europe/Paris,,OIF, +OIF:SP:4:8,1,"Ablon Gare RER",48.725425,2.418529,0,0,OIF:SA:8754526,Europe/Paris,,OIF, +OIF:SP:4:80,1,"Lycée",48.757333,2.404251,0,0,OIF:SA:4:80,Europe/Paris,,OIF, +OIF:SP:4:81,1,"Lycée",48.757648,2.40436,0,0,OIF:SA:4:80,Europe/Paris,,OIF, +OIF:SP:4:82,1,"Marmontel",48.755298,2.393659,0,0,OIF:SA:4:82,Europe/Paris,,OIF, +OIF:SP:4:83,1,"Marmontel",48.755172,2.394189,0,0,OIF:SA:4:82,Europe/Paris,,OIF, +OIF:SP:4:84,1,"Pavé Grignon",48.756392,2.398364,0,0,OIF:SA:4:84,Europe/Paris,,OIF, +OIF:SP:4:85,1,"Pavé Grignon",48.756321,2.398323,0,0,OIF:SA:4:84,Europe/Paris,,OIF, +OIF:SP:4:86,1,"Spinoza",48.755652,2.404738,0,0,OIF:SA:4:86,Europe/Paris,,OIF, +OIF:SP:4:87,1,"Spinoza",48.755463,2.404942,0,0,OIF:SA:4:86,Europe/Paris,,OIF, +OIF:SP:4:88,1,"Stade A. Mimoun",48.752797,2.398903,0,0,OIF:SA:4:88,Europe/Paris,,OIF, +OIF:SP:4:89,1,"Les Tilleuls",48.752838,2.405523,0,0,OIF:SA:8749574,Europe/Paris,,OIF, +OIF:SP:4:9,1,"Reine Astrid",48.727537,2.4186,0,0,OIF:SA:4:10,Europe/Paris,,OIF, +OIF:SP:4:90,1,"Les Tilleuls",48.753117,2.405578,0,0,OIF:SA:8749574,Europe/Paris,,OIF, +OIF:SP:4:91,1,"Centre Commercial Pont de Vitry",48.795263,2.41717,0,0,OIF:SA:4:91,Europe/Paris,,OIF, +OIF:SP:4:92,1,"Rue des Fusillés",48.787579,2.417267,0,0,OIF:SA:4:92,Europe/Paris,,OIF, +OIF:SP:4:93,1,"Rue des Fusillés",48.787848,2.417689,0,0,OIF:SA:4:92,Europe/Paris,,OIF, +OIF:SP:4:94,1,"Charles Heller",48.795906,2.410151,0,0,OIF:SA:4:94,Europe/Paris,,OIF, +OIF:SP:4:95,1,"Charles Heller",48.795628,2.409402,0,0,OIF:SA:4:94,Europe/Paris,,OIF, +OIF:SP:4:96,1,"Eugène Hénaff",48.791951,2.410418,0,0,OIF:SA:4:96,Europe/Paris,,OIF, +OIF:SP:4:97,1,"Eugène Hénaff",48.792275,2.410758,0,0,OIF:SA:4:96,Europe/Paris,,OIF, +OIF:SP:4:98,1,"Jules Guesde",48.778161,2.414111,0,0,OIF:SA:4:98,Europe/Paris,,OIF, +OIF:SP:4:99,1,"Jules Guesde",48.778413,2.414478,0,0,OIF:SA:4:98,Europe/Paris,,OIF, +OIF:SP:50:11826,1,"Métro Pont de Sèvres (sous-Préfecture)",48.830016,2.229579,0,0,OIF:SA:59621,Europe/Paris,,OIF, +OIF:SP:50:11829,1,"Métro Pont de Saint-Cloud (Rhin et Danube)",48.840835,2.227228,0,0,OIF:SA:59400,Europe/Paris,,OIF, +OIF:SP:50:11992,1,"Gare - Hôpital",48.845248,2.217673,0,0,OIF:SA:8738235,Europe/Paris,,OIF, +OIF:SP:50:11993,1,"Gare - Hôpital",48.845284,2.2177,0,0,OIF:SA:8738235,Europe/Paris,,OIF, +OIF:SP:50:11994,1,"Rue Dailly - Parc de Saint-Cloud Tram",48.842618,2.221001,0,0,OIF:SA:59010,Europe/Paris,,OIF, +OIF:SP:50:11995,1,"Rue Dailly - Parc de Saint-Cloud Tram",48.842582,2.221015,0,0,OIF:SA:59010,Europe/Paris,,OIF, +OIF:SP:50:14396,1,"Mortemai",48.849435,1.898639,0,0,OIF:SA:50:14396,Europe/Paris,,OIF, +OIF:SP:50:14397,1,"Mortemai",48.8494,1.898843,0,0,OIF:SA:50:14396,Europe/Paris,,OIF, +OIF:SP:50:14479,1,"Le Breuil Centre",48.944729,1.716671,0,0,OIF:SA:50:14479,Europe/Paris,,OIF, +OIF:SP:50:14481,1,"Église d'Arnouville",48.911256,1.733257,0,0,OIF:SA:50:14481,Europe/Paris,,OIF, +OIF:SP:50:14483,1,"Hargeville Centre",48.89069,1.739957,0,0,OIF:SA:50:14483,Europe/Paris,,OIF, +OIF:SP:50:14487,1,"Rue des Vignes",48.842864,1.815727,0,0,OIF:SA:50:14487,Europe/Paris,,OIF, +OIF:SP:50:14489,1,"Centre Village",48.840694,1.819058,0,0,OIF:SA:50:14489,Europe/Paris,,OIF, +OIF:SP:50:14491,1,"Rond-Point / Route de Marcq",48.839489,1.822964,0,0,OIF:SA:50:14491,Europe/Paris,,OIF, +OIF:SP:50:14495,1,"Maison des Bois",48.796663,1.943517,0,0,OIF:SA:50:14495,Europe/Paris,,OIF, +OIF:SP:50:14499,1,"Pierre Brossolette",48.820123,1.952322,0,0,OIF:SA:50:14499,Europe/Paris,,OIF, +OIF:SP:50:14500,1,"Pierre Brossolette",48.82027,1.953274,0,0,OIF:SA:50:14499,Europe/Paris,,OIF, +OIF:SP:50:14501,1,"Commissariat",48.818476,1.962978,0,0,OIF:SA:50:14501,Europe/Paris,,OIF, +OIF:SP:50:14502,1,"Commissariat",48.818597,1.961521,0,0,OIF:SA:50:14501,Europe/Paris,,OIF, +OIF:SP:50:14503,1,"Europe",48.818485,1.965795,0,0,OIF:SA:50:14503,Europe/Paris,,OIF, +OIF:SP:50:14509,1,"Marché",48.818128,1.944144,0,0,OIF:SA:23:405,Europe/Paris,,OIF, +OIF:SP:50:14516,1,"Ebisoires",48.830115,1.954549,0,0,OIF:SA:50:14516,Europe/Paris,,OIF, +OIF:SP:50:14518,1,"Collège Apollinaire",48.819738,1.941695,0,0,OIF:SA:50:14518,Europe/Paris,,OIF, +OIF:SP:50:14522,1,"Avenue de Gaulle",48.823105,1.960154,0,0,OIF:SA:50:14522,Europe/Paris,,OIF, +OIF:SP:50:14523,1,"Lycée Mansart",48.805423,2.064606,0,0,OIF:SA:36:2073,Europe/Paris,,OIF, +OIF:SP:50:14524,1,"Église",48.778674,1.859157,0,0,OIF:SA:22:81,Europe/Paris,,OIF, +OIF:SP:50:14525,1,"Croix Verte",48.863164,1.871496,0,0,OIF:SA:21:100,Europe/Paris,,OIF, +OIF:SP:50:14526,1,"Croix Verte",48.863092,1.871579,0,0,OIF:SA:21:100,Europe/Paris,,OIF, +OIF:SP:50:14529,1,"Val de Mauldre",48.769933,1.895067,0,0,OIF:SA:50:14529,Europe/Paris,,OIF, +OIF:SP:50:14530,1,"Val de Mauldre",48.769896,1.894904,0,0,OIF:SA:50:14529,Europe/Paris,,OIF, +OIF:SP:50:14532,1,"Le Breuil Centre",48.944728,1.71659,0,0,OIF:SA:50:14479,Europe/Paris,,OIF, +OIF:SP:50:14533,1,"Rond-Point / Route de Marcq",48.839516,1.823059,0,0,OIF:SA:50:14491,Europe/Paris,,OIF, +OIF:SP:50:14534,1,"Centre Village",48.841175,1.818004,0,0,OIF:SA:50:14489,Europe/Paris,,OIF, +OIF:SP:50:14535,1,"Rue des Vignes",48.842926,1.815536,0,0,OIF:SA:50:14487,Europe/Paris,,OIF, +OIF:SP:50:14537,1,"Hargeville Centre",48.89053,1.74015,0,0,OIF:SA:50:14483,Europe/Paris,,OIF, +OIF:SP:50:14538,1,"Église d'Arnouville",48.910692,1.732036,0,0,OIF:SA:50:14481,Europe/Paris,,OIF, +OIF:SP:50:14540,1,"Centre Commercial",48.969759,1.716958,0,0,OIF:SA:50:14540,Europe/Paris,,OIF, +OIF:SP:50:14541,1,"Mairie de Mantes-la-Ville",48.978415,1.713919,0,0,OIF:SA:22:179,Europe/Paris,,OIF, +OIF:SP:50:14542,1,"Mateau",48.974776,1.717499,0,0,OIF:SA:50:14542,Europe/Paris,,OIF, +OIF:SP:50:14543,1,"Lycée Viollet le Duc - Gare Routière",48.813891,1.873258,0,0,OIF:SA:8739388,Europe/Paris,,OIF, +OIF:SP:50:14544,1,"Lycée - Gare RD11",48.81418,1.875773,0,0,OIF:SA:8739388,Europe/Paris,,OIF, +OIF:SP:50:14545,1,"Usine Peugeot",48.938629,2.050687,0,0,OIF:SA:50:14545,Europe/Paris,,OIF, +OIF:SP:50:14546,1,"Poissy Gare Nord",48.933768,2.040142,0,0,OIF:SA:8738657,Europe/Paris,,OIF, +OIF:SP:50:14547,1,"Ursulines",48.928065,2.041457,0,0,OIF:SA:23:480,Europe/Paris,,OIF, +OIF:SP:50:14548,1,"Bussy",48.922249,2.037276,0,0,OIF:SA:23:412,Europe/Paris,,OIF, +OIF:SP:50:14552,1,"Avenue Maladrerie",48.92022,2.031137,0,0,OIF:SA:23:450,Europe/Paris,,OIF, +OIF:SP:50:14553,1,"Marcel Cerdan",48.917961,2.026433,0,0,OIF:SA:23:420,Europe/Paris,,OIF, +OIF:SP:50:14555,1,"Centre de Secours",48.915014,2.023219,0,0,OIF:SA:23:475,Europe/Paris,,OIF, +OIF:SP:50:14557,1,"Clairbois",48.882355,1.981772,0,0,OIF:SA:21:254,Europe/Paris,,OIF, +OIF:SP:50:14559,1,"Place des Fêtes",48.877152,1.978987,0,0,OIF:SA:21:264,Europe/Paris,,OIF, +OIF:SP:50:14561,1,"Mairie de Feucherolles",48.874098,1.97379,0,0,OIF:SA:21:261,Europe/Paris,,OIF, +OIF:SP:50:14564,1,"Pré des Coulons",48.871118,1.972053,0,0,OIF:SA:21:266,Europe/Paris,,OIF, +OIF:SP:50:14565,1,"Les Cottages",48.867655,1.971124,0,0,OIF:SA:21:256,Europe/Paris,,OIF, +OIF:SP:50:14567,1,"Hôpital Charcot",48.824647,1.945061,0,0,OIF:SA:50:14567,Europe/Paris,,OIF, +OIF:SP:50:14568,1,"Hôpital Charcot",48.824539,1.944994,0,0,OIF:SA:50:14567,Europe/Paris,,OIF, +OIF:SP:50:14569,1,"Rond-Point des Gâtines",48.801659,1.965684,0,0,OIF:SA:23:918,Europe/Paris,,OIF, +OIF:SP:50:14570,1,"Rond-Point des Gâtines",48.801569,1.965685,0,0,OIF:SA:23:918,Europe/Paris,,OIF, +OIF:SP:50:14571,1,"Marché",48.818577,1.94395,0,0,OIF:SA:23:405,Europe/Paris,,OIF, +OIF:SP:50:14572,1,"Grignon Village",48.845582,1.94301,0,0,OIF:SA:50:14572,Europe/Paris,,OIF, +OIF:SP:50:14573,1,"Grignon Château - Campus",48.847754,1.939548,0,0,OIF:SA:50:14573,Europe/Paris,,OIF, +OIF:SP:50:14574,1,"Bio-Climatologie",48.840049,1.947,0,0,OIF:SA:50:14574,Europe/Paris,,OIF, +OIF:SP:50:14575,1,"Marie Guérin",48.829793,1.983956,0,0,OIF:SA:50:14575,Europe/Paris,,OIF, +OIF:SP:50:14576,1,"Marie Guérin",48.829981,1.983682,0,0,OIF:SA:50:14575,Europe/Paris,,OIF, +OIF:SP:50:14577,1,"Graviers",48.813189,2.034898,0,0,OIF:SA:50:14577,Europe/Paris,,OIF, +OIF:SP:50:14578,1,"Villepreux Village",48.834004,2.010965,0,0,OIF:SA:23:693,Europe/Paris,,OIF, +OIF:SP:50:14579,1,"Villepreux Village",48.83389,2.011892,0,0,OIF:SA:23:693,Europe/Paris,,OIF, +OIF:SP:50:14580,1,"Fontaine aux Dames",48.832921,2.009216,0,0,OIF:SA:23:657,Europe/Paris,,OIF, +OIF:SP:50:14581,1,"Fontaine aux Dames",48.832786,2.008985,0,0,OIF:SA:23:657,Europe/Paris,,OIF, +OIF:SP:50:14582,1,"Rennemoulin Lavoir",48.834521,2.043896,0,0,OIF:SA:21:622,Europe/Paris,,OIF, +OIF:SP:50:14583,1,"Gare",48.841853,2.061896,0,0,OIF:SA:8739387,Europe/Paris,,OIF, +OIF:SP:50:14584,1,"Cimetière des Clayes",48.82127,1.971083,0,0,OIF:SA:50:14584,Europe/Paris,,OIF, +OIF:SP:50:14585,1,"Coypel - Champ Lagarde",48.800056,2.141519,0,0,OIF:SA:2:320,Europe/Paris,,OIF, +OIF:SP:50:14586,1,"Collège Rameau - Arrêt Phébus D et R",48.803074,2.145684,0,0,OIF:SA:50:14586,Europe/Paris,,OIF, +OIF:SP:50:14587,1,"Saint-Symphorien",48.805079,2.146384,0,0,OIF:SA:50:14587,Europe/Paris,,OIF, +OIF:SP:50:14588,1,"États Unis Université",48.80805,2.14421,0,0,OIF:SA:2:197,Europe/Paris,,OIF, +OIF:SP:50:14589,1,"Reine Gare Rive Droite",48.808746,2.135376,0,0,OIF:SA:50:14589,Europe/Paris,,OIF, +OIF:SP:50:14590,1,"Musée Lambinet",48.809168,2.130026,0,0,OIF:SA:2:434,Europe/Paris,,OIF, +OIF:SP:50:14591,1,"Berthier",48.811472,2.126602,0,0,OIF:SA:15:275,Europe/Paris,,OIF, +OIF:SP:50:14592,1,"Place de la Loi",48.815151,2.128465,0,0,OIF:SA:15:273,Europe/Paris,,OIF, +OIF:SP:50:14594,1,"Place Laboulaye",48.81925,2.138996,0,0,OIF:SA:2:1087,Europe/Paris,,OIF, +OIF:SP:50:14595,1,"Maréchal Haig",48.81979,2.145432,0,0,OIF:SA:2:167,Europe/Paris,,OIF, +OIF:SP:50:14596,1,"Place de la Brèche",48.824657,2.142733,0,0,OIF:SA:2:161,Europe/Paris,,OIF, +OIF:SP:50:14597,1,"Place de Verdun",48.836455,2.140456,0,0,OIF:SA:17:1359,Europe/Paris,,OIF, +OIF:SP:50:14598,1,"Villepreux",48.840743,2.146893,0,0,OIF:SA:2:115,Europe/Paris,,OIF, +OIF:SP:50:14599,1,"Foch",48.840896,2.152707,0,0,OIF:SA:2:116,Europe/Paris,,OIF, +OIF:SP:50:14600,1,"Place du Général Leclerc",48.844177,2.152695,0,0,OIF:SA:2:119,Europe/Paris,,OIF, +OIF:SP:50:14601,1,"Rond-Point de l'Etoile",48.847682,2.153159,0,0,OIF:SA:2:121,Europe/Paris,,OIF, +OIF:SP:50:14602,1,"Lycée Toulouse Lautrec",48.846869,2.156199,0,0,OIF:SA:2:123,Europe/Paris,,OIF, +OIF:SP:50:14603,1,"Fer Rouge",48.837629,2.155333,0,0,OIF:SA:8738226,Europe/Paris,,OIF, +OIF:SP:50:14604,1,"Stade de la Marche",48.837818,2.162085,0,0,OIF:SA:17:1355,Europe/Paris,,OIF, +OIF:SP:50:14607,1,"Passy Buzenval",48.859443,2.182198,0,0,OIF:SA:16:19348,Europe/Paris,,OIF, +OIF:SP:50:14608,1,"Madeleine Danielou",48.862305,2.171347,0,0,OIF:SA:16:19349,Europe/Paris,,OIF, +OIF:SP:50:14609,1,"Conseil Général",48.800094,2.148539,0,0,OIF:SA:2:324,Europe/Paris,,OIF, +OIF:SP:50:14610,1,"Debasseux",48.816808,2.13529,0,0,OIF:SA:21:344,Europe/Paris,,OIF, +OIF:SP:50:14611,1,"Chapelle",48.762997,1.828411,0,0,OIF:SA:25:461,Europe/Paris,,OIF, +OIF:SP:50:14612,1,"L'Aunay-Bertin",48.76632,1.823661,0,0,OIF:SA:50:14612,Europe/Paris,,OIF, +OIF:SP:50:14613,1,"Mazas",48.771689,1.815966,0,0,OIF:SA:50:14613,Europe/Paris,,OIF, +OIF:SP:50:14614,1,"Chateluis",48.77244,1.813089,0,0,OIF:SA:50:14614,Europe/Paris,,OIF, +OIF:SP:50:14615,1,"Chantereine",48.778839,1.812929,0,0,OIF:SA:22:10502,Europe/Paris,,OIF, +OIF:SP:50:14616,1,"De Gaulle",48.781411,1.811271,0,0,OIF:SA:25:475,Europe/Paris,,OIF, +OIF:SP:50:14617,1,"Saint-Blaise",48.783932,1.812198,0,0,OIF:SA:50:14617,Europe/Paris,,OIF, +OIF:SP:50:14618,1,"Mairie de Méré",48.787265,1.820094,0,0,OIF:SA:22:148,Europe/Paris,,OIF, +OIF:SP:50:14619,1,"Bois de Mareil",48.778681,1.854207,0,0,OIF:SA:50:14619,Europe/Paris,,OIF, +OIF:SP:50:14620,1,"A.F.T.-I.F.T.I.M. - C.H.E.P.",48.770184,1.878394,0,0,OIF:SA:50:14620,Europe/Paris,,OIF, +OIF:SP:50:14621,1,"A.F.T.-I.F.T.I.M. - C.H.E.P.",48.770772,1.877125,0,0,OIF:SA:50:14620,Europe/Paris,,OIF, +OIF:SP:50:14622,1,"Le Paradou",48.782917,1.894073,0,0,OIF:SA:50:14622,Europe/Paris,,OIF, +OIF:SP:50:14623,1,"Le Paradou",48.782835,1.89391,0,0,OIF:SA:50:14622,Europe/Paris,,OIF, +OIF:SP:50:14624,1,"Pont Censier",48.78867,1.911652,0,0,OIF:SA:50:14624,Europe/Paris,,OIF, +OIF:SP:50:14625,1,"Pont Censier",48.788737,1.910319,0,0,OIF:SA:50:14624,Europe/Paris,,OIF, +OIF:SP:50:14626,1,"Hameau du Launay",48.786847,1.943442,0,0,OIF:SA:50:14626,Europe/Paris,,OIF, +OIF:SP:50:14627,1,"Hameau du Launay",48.786921,1.943877,0,0,OIF:SA:50:14626,Europe/Paris,,OIF, +OIF:SP:50:14628,1,"Église du Village",48.783743,1.959148,0,0,OIF:SA:50:14628,Europe/Paris,,OIF, +OIF:SP:50:14629,1,"Église du Village",48.783583,1.959611,0,0,OIF:SA:50:14628,Europe/Paris,,OIF, +OIF:SP:50:14630,1,"Les Côtes",48.78116,1.966416,0,0,OIF:SA:41:6048,Europe/Paris,,OIF, +OIF:SP:50:14631,1,"Les Côtes",48.781151,1.966552,0,0,OIF:SA:41:6048,Europe/Paris,,OIF, +OIF:SP:50:14632,1,"Youri Gagarine",48.774146,1.9802,0,0,OIF:SA:50:14632,Europe/Paris,,OIF, +OIF:SP:50:14633,1,"Youri Gagarine",48.773931,1.980447,0,0,OIF:SA:50:14632,Europe/Paris,,OIF, +OIF:SP:50:14634,1,"Pasteur",48.773609,1.983753,0,0,OIF:SA:8741454,Europe/Paris,,OIF, +OIF:SP:50:14635,1,"Pasteur",48.773554,1.983523,0,0,OIF:SA:8741454,Europe/Paris,,OIF, +OIF:SP:50:14636,1,"Le Stade",48.773335,1.988542,0,0,OIF:SA:41:5837,Europe/Paris,,OIF, +OIF:SP:50:14637,1,"Le Stade",48.773106,1.989998,0,0,OIF:SA:41:5837,Europe/Paris,,OIF, +OIF:SP:50:14647,1,"Paul Éluard",48.814926,2.050335,0,0,OIF:SA:50:14647,Europe/Paris,,OIF, +OIF:SP:50:14648,1,"Buffon",48.812031,2.04997,0,0,OIF:SA:50:14648,Europe/Paris,,OIF, +OIF:SP:50:14649,1,"Lurçat",48.810798,2.049418,0,0,OIF:SA:50:14649,Europe/Paris,,OIF, +OIF:SP:50:14650,1,"Ravel",48.807386,2.047274,0,0,OIF:SA:50:14650,Europe/Paris,,OIF, +OIF:SP:50:14651,1,"Anatole France",48.80807,2.0438,0,0,OIF:SA:50:14651,Europe/Paris,,OIF, +OIF:SP:50:14652,1,"Erich Von Stroheim",48.805749,2.011728,0,0,OIF:SA:41:6111,Europe/Paris,,OIF, +OIF:SP:50:14653,1,"Erich Von Stroheim",48.806648,2.011777,0,0,OIF:SA:41:6111,Europe/Paris,,OIF, +OIF:SP:50:14654,1,"Fritz Lang",48.801666,2.01091,0,0,OIF:SA:41:6113,Europe/Paris,,OIF, +OIF:SP:50:14655,1,"Fritz Lang",48.800769,2.011678,0,0,OIF:SA:41:6113,Europe/Paris,,OIF, +OIF:SP:50:14656,1,"Louis Jouvet",48.806305,2.014841,0,0,OIF:SA:50:14656,Europe/Paris,,OIF, +OIF:SP:50:14657,1,"Louis Jouvet",48.805767,2.015307,0,0,OIF:SA:50:14656,Europe/Paris,,OIF, +OIF:SP:50:14658,1,"Hoche",48.805235,2.017745,0,0,OIF:SA:50:14658,Europe/Paris,,OIF, +OIF:SP:50:14659,1,"Hoche",48.805234,2.017555,0,0,OIF:SA:50:14658,Europe/Paris,,OIF, +OIF:SP:50:14660,1,"Vallée Penaut",48.876203,1.760126,0,0,OIF:SA:50:14660,Europe/Paris,,OIF, +OIF:SP:50:14661,1,"Place Bieuville",48.881114,1.764664,0,0,OIF:SA:50:14661,Europe/Paris,,OIF, +OIF:SP:50:14662,1,"Poirier d'Encre",48.784847,1.824103,0,0,OIF:SA:22:146,Europe/Paris,,OIF, +OIF:SP:50:14663,1,"Ergal Chambord",48.786077,1.928105,0,0,OIF:SA:50:14663,Europe/Paris,,OIF, +OIF:SP:50:14665,1,"Lamartine",48.810258,2.041665,0,0,OIF:SA:50:14665,Europe/Paris,,OIF, +OIF:SP:50:14666,1,"Lamartine",48.810132,2.041747,0,0,OIF:SA:50:14665,Europe/Paris,,OIF, +OIF:SP:50:14669,1,"Villeroy",48.834127,1.900483,0,0,OIF:SA:50:14669,Europe/Paris,,OIF, +OIF:SP:50:14670,1,"Thiverval Calvaire",48.848081,1.916844,0,0,OIF:SA:50:14670,Europe/Paris,,OIF, +OIF:SP:50:14671,1,"Mille Feuilles",48.823841,1.954132,0,0,OIF:SA:50:14671,Europe/Paris,,OIF, +OIF:SP:50:14672,1,"Plaisir Centre (Jonchères)",48.815265,1.945526,0,0,OIF:SA:50:14672,Europe/Paris,,OIF, +OIF:SP:50:14674,1,"La Coudraie",48.843795,1.835994,0,0,OIF:SA:50:14674,Europe/Paris,,OIF, +OIF:SP:50:14675,1,"Rue de Maule",48.866319,1.7971,0,0,OIF:SA:50:14675,Europe/Paris,,OIF, +OIF:SP:50:14676,1,"Villarceaux",48.87304,1.782915,0,0,OIF:SA:22:58,Europe/Paris,,OIF, +OIF:SP:50:14677,1,"Château d'Eau",48.796587,1.947939,0,0,OIF:SA:50:14677,Europe/Paris,,OIF, +OIF:SP:50:14678,1,"Le Mail",48.819661,1.956967,0,0,OIF:SA:50:14678,Europe/Paris,,OIF, +OIF:SP:50:14679,1,"Plaisir-Grignon Arrivée",48.83151,1.943988,0,0,OIF:SA:50:14679,Europe/Paris,,OIF, +OIF:SP:50:14680,1,"Pacaudière",48.810449,1.882638,0,0,OIF:SA:50:14680,Europe/Paris,,OIF, +OIF:SP:50:14681,1,"Gendarmerie",48.804885,1.894402,0,0,OIF:SA:50:14681,Europe/Paris,,OIF, +OIF:SP:50:14682,1,"Clos Marquet",48.91445,1.732306,0,0,OIF:SA:50:14682,Europe/Paris,,OIF, +OIF:SP:50:14685,1,"Jean Macé",48.805529,2.055938,0,0,OIF:SA:36:2054,Europe/Paris,,OIF, +OIF:SP:50:14704,1,"Pont Barrât",48.861079,1.873722,0,0,OIF:SA:50:14704,Europe/Paris,,OIF, +OIF:SP:50:14705,1,"La Bruyère",48.820726,1.908,0,0,OIF:SA:50:14705,Europe/Paris,,OIF, +OIF:SP:50:14706,1,"La Bruyère",48.820745,1.908123,0,0,OIF:SA:50:14705,Europe/Paris,,OIF, +OIF:SP:50:14707,1,"Le Gué",48.759365,1.869844,0,0,OIF:SA:50:14707,Europe/Paris,,OIF, +OIF:SP:50:14708,1,"Mauldrette",48.767027,1.894467,0,0,OIF:SA:50:14708,Europe/Paris,,OIF, +OIF:SP:50:14709,1,"Mauldrette",48.76717,1.894302,0,0,OIF:SA:50:14708,Europe/Paris,,OIF, +OIF:SP:50:14710,1,"Ferme de la Richarderie",48.792672,1.919945,0,0,OIF:SA:50:14710,Europe/Paris,,OIF, +OIF:SP:50:14712,1,"Le Pontel (Commerces)",48.809823,1.881174,0,0,OIF:SA:22:314,Europe/Paris,,OIF, +OIF:SP:50:14713,1,"Cheval Mort",48.780249,1.84629,0,0,OIF:SA:50:14713,Europe/Paris,,OIF, +OIF:SP:50:14714,1,"Marcel Cerdan",48.792303,1.965846,0,0,OIF:SA:41:6213,Europe/Paris,,OIF, +OIF:SP:50:14715,1,"Vergennes",48.80039,2.137313,0,0,OIF:SA:2:1113,Europe/Paris,,OIF, +OIF:SP:50:14716,1,"Provence",48.808395,2.140603,0,0,OIF:SA:2:195,Europe/Paris,,OIF, +OIF:SP:50:14717,1,"Beauvau Remilly",48.811333,2.134835,0,0,OIF:SA:2:74,Europe/Paris,,OIF, +OIF:SP:50:14718,1,"Réservoirs",48.809097,2.125169,0,0,OIF:SA:15:277,Europe/Paris,,OIF, +OIF:SP:50:14719,1,"Pierre Perçée",48.81529,1.863216,0,0,OIF:SA:22:125,Europe/Paris,,OIF, +OIF:SP:50:14720,1,"Cheval Blanc",48.798927,1.909623,0,0,OIF:SA:50:14720,Europe/Paris,,OIF, +OIF:SP:50:14721,1,"Mairie",48.801404,1.903412,0,0,OIF:SA:50:14721,Europe/Paris,,OIF, +OIF:SP:50:14723,1,"Église",48.778721,1.859605,0,0,OIF:SA:22:81,Europe/Paris,,OIF, +OIF:SP:50:14726,1,"Les Vignettes",48.869386,1.799493,0,0,OIF:SA:22:54,Europe/Paris,,OIF, +OIF:SP:50:14727,1,"Les Vignettes",48.869341,1.799576,0,0,OIF:SA:22:54,Europe/Paris,,OIF, +OIF:SP:50:14728,1,"Gay Lussac",48.792458,1.975245,0,0,OIF:SA:41:6060,Europe/Paris,,OIF, +OIF:SP:50:14729,1,"Coquelicots",48.830042,1.989141,0,0,OIF:SA:50:14729,Europe/Paris,,OIF, +OIF:SP:50:14733,1,"Arletty",48.803087,2.011214,0,0,OIF:SA:41:6112,Europe/Paris,,OIF, +OIF:SP:50:14734,1,"Arletty",48.804256,2.01152,0,0,OIF:SA:41:6112,Europe/Paris,,OIF, +OIF:SP:50:14735,1,"Jean Jaurès",48.799426,2.041073,0,0,OIF:SA:50:14735,Europe/Paris,,OIF, +OIF:SP:50:14736,1,"Jean Jaurès",48.799291,2.041224,0,0,OIF:SA:50:14735,Europe/Paris,,OIF, +OIF:SP:50:14737,1,"René Clair",48.801594,2.004461,0,0,OIF:SA:41:6109,Europe/Paris,,OIF, +OIF:SP:50:14738,1,"René Clair",48.801603,2.004339,0,0,OIF:SA:41:6109,Europe/Paris,,OIF, +OIF:SP:50:14739,1,"Méliès - Croix Bonnet",48.801196,2.006804,0,0,OIF:SA:50:14739,Europe/Paris,,OIF, +OIF:SP:50:14740,1,"Méliès - Croix Bonnet",48.801997,2.007003,0,0,OIF:SA:50:14739,Europe/Paris,,OIF, +OIF:SP:50:14741,1,"Jacques Tati",48.803699,2.004883,0,0,OIF:SA:41:6110,Europe/Paris,,OIF, +OIF:SP:50:14742,1,"Jacques Tati",48.803707,2.004734,0,0,OIF:SA:41:6110,Europe/Paris,,OIF, +OIF:SP:50:14743,1,"Laënnec",48.799638,2.018746,0,0,OIF:SA:50:14743,Europe/Paris,,OIF, +OIF:SP:50:14744,1,"Laënnec",48.79944,2.018842,0,0,OIF:SA:50:14743,Europe/Paris,,OIF, +OIF:SP:50:14745,1,"Square de Camargue",48.823099,2.000213,0,0,OIF:SA:50:14745,Europe/Paris,,OIF, +OIF:SP:50:14746,1,"Collège Léon Blum",48.830941,1.998569,0,0,OIF:SA:50:14746,Europe/Paris,,OIF, +OIF:SP:50:14747,1,"Mimoun",48.830838,2.000462,0,0,OIF:SA:23:681,Europe/Paris,,OIF, +OIF:SP:50:14749,1,"École Gérard Philipe",48.833797,2.010599,0,0,OIF:SA:50:14749,Europe/Paris,,OIF, +OIF:SP:50:14750,1,"École Jules Gillet",48.833733,2.010409,0,0,OIF:SA:50:14750,Europe/Paris,,OIF, +OIF:SP:50:14753,1,"Mimoun",48.830175,2.001188,0,0,OIF:SA:23:681,Europe/Paris,,OIF, +OIF:SP:50:14757,1,"Gay Lussac",48.79217,1.975138,0,0,OIF:SA:41:6060,Europe/Paris,,OIF, +OIF:SP:50:14758,1,"Reinette",48.811123,2.046382,0,0,OIF:SA:50:14758,Europe/Paris,,OIF, +OIF:SP:50:14759,1,"Reinette",48.811071,2.047144,0,0,OIF:SA:50:14758,Europe/Paris,,OIF, +OIF:SP:50:14760,1,"Blaise Pascal",48.792611,1.981216,0,0,OIF:SA:41:6443,Europe/Paris,,OIF, +OIF:SP:50:14761,1,"Blaise Pascal",48.792187,1.980648,0,0,OIF:SA:41:6443,Europe/Paris,,OIF, +OIF:SP:50:14762,1,"Normandie - Niemen",48.794539,1.976727,0,0,OIF:SA:41:6480,Europe/Paris,,OIF, +OIF:SP:50:14763,1,"Normandie - Niemen",48.794601,1.976577,0,0,OIF:SA:41:6480,Europe/Paris,,OIF, +OIF:SP:50:14764,1,"Jean Moulin",48.796211,1.970879,0,0,OIF:SA:22:9668,Europe/Paris,,OIF, +OIF:SP:50:14765,1,"Jean Moulin",48.796094,1.970921,0,0,OIF:SA:22:9668,Europe/Paris,,OIF, +OIF:SP:50:14768,1,"Prague",48.795547,1.968421,0,0,OIF:SA:41:6547,Europe/Paris,,OIF, +OIF:SP:50:14769,1,"Prague",48.795319,1.967525,0,0,OIF:SA:41:6547,Europe/Paris,,OIF, +OIF:SP:50:14786,1,"Fontaine Saint-Martin",48.806789,2.060381,0,0,OIF:SA:36:2048,Europe/Paris,,OIF, +OIF:SP:50:14787,1,"Église",48.777809,1.876749,0,0,OIF:SA:50:14787,Europe/Paris,,OIF, +OIF:SP:50:14788,1,"Lycée Jean Vilar",48.823681,1.95755,0,0,OIF:SA:50:14788,Europe/Paris,,OIF, +OIF:SP:50:14789,1,"Gare de Saint-Quentin-en-Yvelines - Avenue des Prés",48.787114,2.045238,0,0,OIF:SA:8739384,Europe/Paris,,OIF, +OIF:SP:50:14790,1,"Le Cep",48.928891,2.041384,0,0,OIF:SA:15:249,Europe/Paris,,OIF, +OIF:SP:50:14791,1,"Mozart",48.776511,2.057999,0,0,OIF:SA:41:6377,Europe/Paris,,OIF, +OIF:SP:50:14792,1,"Mozart",48.776457,2.057972,0,0,OIF:SA:41:6377,Europe/Paris,,OIF, +OIF:SP:50:14793,1,"Les Genêts",48.774951,2.055478,0,0,OIF:SA:41:6378,Europe/Paris,,OIF, +OIF:SP:50:14794,1,"Les Genêts",48.774888,2.055519,0,0,OIF:SA:41:6378,Europe/Paris,,OIF, +OIF:SP:50:14795,1,"Maurice Ravel",48.773766,2.056409,0,0,OIF:SA:41:6339,Europe/Paris,,OIF, +OIF:SP:50:14796,1,"Maurice Ravel",48.77382,2.056491,0,0,OIF:SA:41:6339,Europe/Paris,,OIF, +OIF:SP:50:14797,1,"Bois de la Garenne",48.772213,2.060851,0,0,OIF:SA:41:6340,Europe/Paris,,OIF, +OIF:SP:50:14798,1,"Bois de la Garenne",48.772249,2.060851,0,0,OIF:SA:41:6340,Europe/Paris,,OIF, +OIF:SP:50:14799,1,"Village",48.770919,2.064787,0,0,OIF:SA:41:6341,Europe/Paris,,OIF, +OIF:SP:50:14800,1,"Village",48.771009,2.064814,0,0,OIF:SA:41:6341,Europe/Paris,,OIF, +OIF:SP:50:14801,1,"Paul Éluard",48.773599,2.065793,0,0,OIF:SA:41:6347,Europe/Paris,,OIF, +OIF:SP:50:14802,1,"Paul Éluard",48.773581,2.065657,0,0,OIF:SA:41:6347,Europe/Paris,,OIF, +OIF:SP:50:14803,1,"Gérard Philipe",48.775233,2.064724,0,0,OIF:SA:41:6349,Europe/Paris,,OIF, +OIF:SP:50:14804,1,"Gérard Philipe",48.775179,2.064615,0,0,OIF:SA:41:6349,Europe/Paris,,OIF, +OIF:SP:50:14805,1,"Bois de la Grille",48.776837,2.07059,0,0,OIF:SA:41:6350,Europe/Paris,,OIF, +OIF:SP:50:14806,1,"Bois de la Grille",48.777034,2.070317,0,0,OIF:SA:41:6350,Europe/Paris,,OIF, +OIF:SP:50:14807,1,"Le Château",48.774573,2.075008,0,0,OIF:SA:41:6351,Europe/Paris,,OIF, +OIF:SP:50:14808,1,"Le Château",48.77485,2.074544,0,0,OIF:SA:41:6351,Europe/Paris,,OIF, +OIF:SP:50:14809,1,"Mendès-France",48.772335,2.079371,0,0,OIF:SA:41:6352,Europe/Paris,,OIF, +OIF:SP:50:14810,1,"Mendès-France",48.772398,2.079438,0,0,OIF:SA:41:6352,Europe/Paris,,OIF, +OIF:SP:50:14811,1,"La Minière",48.774446,2.091436,0,0,OIF:SA:24:15205,Europe/Paris,,OIF, +OIF:SP:50:14812,1,"La Minière",48.774518,2.091395,0,0,OIF:SA:24:15205,Europe/Paris,,OIF, +OIF:SP:50:14813,1,"Centre Sportif",48.794816,2.064077,0,0,OIF:SA:36:2123,Europe/Paris,,OIF, +OIF:SP:50:14814,1,"Centre Sportif",48.794816,2.064077,0,0,OIF:SA:36:2123,Europe/Paris,,OIF, +OIF:SP:50:14815,1,"Lycée Franco-Allemand",48.771071,2.121557,0,0,OIF:SA:2:490,Europe/Paris,,OIF, +OIF:SP:50:14816,1,"Clos Salibert",48.854763,2.023229,0,0,OIF:SA:21:664,Europe/Paris,,OIF, +OIF:SP:50:14821,1,"Jardins du Cœur",48.834509,2.018137,0,0,OIF:SA:50:14821,Europe/Paris,,OIF, +OIF:SP:50:14822,1,"Jardins du Cœur",48.834499,2.017797,0,0,OIF:SA:50:14821,Europe/Paris,,OIF, +OIF:SP:50:14823,1,"Ergal Chambord",48.786086,1.928105,0,0,OIF:SA:50:14663,Europe/Paris,,OIF, +OIF:SP:50:14824,1,"Bois de Mareil",48.778708,1.854274,0,0,OIF:SA:50:14619,Europe/Paris,,OIF, +OIF:SP:50:14825,1,"Poirier d'Encre",48.784856,1.824158,0,0,OIF:SA:22:146,Europe/Paris,,OIF, +OIF:SP:50:14826,1,"Mairie de Méré",48.787686,1.819818,0,0,OIF:SA:22:148,Europe/Paris,,OIF, +OIF:SP:50:14827,1,"Saint-Blaise",48.783851,1.81209,0,0,OIF:SA:50:14617,Europe/Paris,,OIF, +OIF:SP:50:14828,1,"De Gaulle",48.781141,1.811192,0,0,OIF:SA:25:475,Europe/Paris,,OIF, +OIF:SP:50:14829,1,"Chantereine",48.778857,1.813038,0,0,OIF:SA:22:10502,Europe/Paris,,OIF, +OIF:SP:50:14830,1,"Chateluis",48.772557,1.813196,0,0,OIF:SA:50:14614,Europe/Paris,,OIF, +OIF:SP:50:14831,1,"Mazas",48.771715,1.815857,0,0,OIF:SA:50:14613,Europe/Paris,,OIF, +OIF:SP:50:14832,1,"L'Aunay-Bertin",48.766275,1.823566,0,0,OIF:SA:50:14612,Europe/Paris,,OIF, +OIF:SP:50:14833,1,"Chapelle",48.762817,1.828359,0,0,OIF:SA:25:461,Europe/Paris,,OIF, +OIF:SP:50:14834,1,"Place Mancest",48.814014,1.90351,0,0,OIF:SA:50:14834,Europe/Paris,,OIF, +OIF:SP:50:14835,1,"Gendarmerie",48.804912,1.894443,0,0,OIF:SA:50:14681,Europe/Paris,,OIF, +OIF:SP:50:14836,1,"La Coudraie",48.843733,1.836103,0,0,OIF:SA:50:14674,Europe/Paris,,OIF, +OIF:SP:50:14837,1,"Clos Marquet",48.914441,1.73217,0,0,OIF:SA:50:14682,Europe/Paris,,OIF, +OIF:SP:50:14839,1,"Berthelot",48.830573,1.951469,0,0,OIF:SA:50:14839,Europe/Paris,,OIF, +OIF:SP:50:14840,1,"Ebisoires",48.830026,1.954563,0,0,OIF:SA:50:14516,Europe/Paris,,OIF, +OIF:SP:50:14841,1,"Lycée Jean Vilar",48.823654,1.95755,0,0,OIF:SA:50:14788,Europe/Paris,,OIF, +OIF:SP:50:14842,1,"Moissons-Fenaisons",48.821047,1.930157,0,0,OIF:SA:50:14842,Europe/Paris,,OIF, +OIF:SP:50:14843,1,"Moissons-Fenaisons",48.821074,1.930129,0,0,OIF:SA:50:14842,Europe/Paris,,OIF, +OIF:SP:50:14845,1,"Bretéchelle",48.816871,1.967004,0,0,OIF:SA:50:14845,Europe/Paris,,OIF, +OIF:SP:50:14846,1,"Europe",48.818458,1.96585,0,0,OIF:SA:50:14503,Europe/Paris,,OIF, +OIF:SP:50:14847,1,"Le Mail",48.819652,1.956967,0,0,OIF:SA:50:14678,Europe/Paris,,OIF, +OIF:SP:50:14848,1,"Mille Feuilles",48.82385,1.954132,0,0,OIF:SA:50:14671,Europe/Paris,,OIF, +OIF:SP:50:14849,1,"Parmentier",48.819732,1.967977,0,0,OIF:SA:50:14849,Europe/Paris,,OIF, +OIF:SP:50:14850,1,"Pont Barrât",48.861186,1.873639,0,0,OIF:SA:50:14704,Europe/Paris,,OIF, +OIF:SP:50:14851,1,"Chennevières",48.793998,1.908548,0,0,OIF:SA:50:14851,Europe/Paris,,OIF, +OIF:SP:50:14852,1,"Cheval Blanc",48.798909,1.909596,0,0,OIF:SA:50:14720,Europe/Paris,,OIF, +OIF:SP:50:14853,1,"Ferme de la Richarderie",48.792654,1.919918,0,0,OIF:SA:50:14710,Europe/Paris,,OIF, +OIF:SP:50:14854,1,"Mairie",48.801368,1.903426,0,0,OIF:SA:50:14721,Europe/Paris,,OIF, +OIF:SP:50:14855,1,"Rosiers",48.81688,1.898179,0,0,OIF:SA:50:14855,Europe/Paris,,OIF, +OIF:SP:50:14856,1,"Moque Panier",48.840386,1.879816,0,0,OIF:SA:21:105,Europe/Paris,,OIF, +OIF:SP:50:14857,1,"Moque Panier",48.840305,1.879871,0,0,OIF:SA:21:105,Europe/Paris,,OIF, +OIF:SP:50:14858,1,"Côte à Soûlas",48.842691,1.93847,0,0,OIF:SA:50:14858,Europe/Paris,,OIF, +OIF:SP:50:14859,1,"Côte à Soûlas",48.842744,1.938402,0,0,OIF:SA:50:14858,Europe/Paris,,OIF, +OIF:SP:50:14860,1,"Rond-Point des Saules",48.78507,2.059014,0,0,OIF:SA:41:6461,Europe/Paris,,OIF, +OIF:SP:50:14861,1,"Rond-Point des Saules",48.785097,2.058973,0,0,OIF:SA:41:6461,Europe/Paris,,OIF, +OIF:SP:50:14862,1,"Claude Monet",48.783607,2.056016,0,0,OIF:SA:41:6462,Europe/Paris,,OIF, +OIF:SP:50:14863,1,"Claude Monet",48.783625,2.056002,0,0,OIF:SA:41:6462,Europe/Paris,,OIF, +OIF:SP:50:14864,1,"Henri Matisse",48.7824,2.054785,0,0,OIF:SA:41:6463,Europe/Paris,,OIF, +OIF:SP:50:14865,1,"Henri Matisse",48.782409,2.054758,0,0,OIF:SA:41:6463,Europe/Paris,,OIF, +OIF:SP:50:14866,1,"Mail des Saules",48.783977,2.052519,0,0,OIF:SA:41:6464,Europe/Paris,,OIF, +OIF:SP:50:14867,1,"Mail des Saules",48.783968,2.052573,0,0,OIF:SA:41:6464,Europe/Paris,,OIF, +OIF:SP:50:14869,1,"Villepreux Village",48.833854,2.011933,0,0,OIF:SA:23:693,Europe/Paris,,OIF, +OIF:SP:50:14870,1,"César Franck",48.810127,2.05428,0,0,OIF:SA:50:14870,Europe/Paris,,OIF, +OIF:SP:50:14871,1,"César Franck",48.810162,2.054185,0,0,OIF:SA:50:14870,Europe/Paris,,OIF, +OIF:SP:50:14872,1,"Jean-Pierre Timbaud",48.809089,2.056341,0,0,OIF:SA:36:2050,Europe/Paris,,OIF, +OIF:SP:50:14873,1,"Jean-Pierre Timbaud",48.809169,2.056163,0,0,OIF:SA:36:2050,Europe/Paris,,OIF, +OIF:SP:50:14874,1,"Demènerie",48.811405,2.040474,0,0,OIF:SA:50:14874,Europe/Paris,,OIF, +OIF:SP:50:14875,1,"Le Levant",48.808545,2.050642,0,0,OIF:SA:50:14875,Europe/Paris,,OIF, +OIF:SP:50:14876,1,"Olivier Messiaen",48.807284,2.049628,0,0,OIF:SA:50:14876,Europe/Paris,,OIF, +OIF:SP:50:14879,1,"La Cavée",48.834808,2.01239,0,0,OIF:SA:50:14879,Europe/Paris,,OIF, +OIF:SP:50:14880,1,"La Cavée",48.834826,2.012363,0,0,OIF:SA:50:14879,Europe/Paris,,OIF, +OIF:SP:50:14881,1,"Gare de Saint-Nom-la-Bretèche - Forêt de Marly",48.867811,2.05105,0,0,OIF:SA:8738248,Europe/Paris,,OIF, +OIF:SP:50:14882,1,"Docteur Vaillant",48.826323,1.995972,0,0,OIF:SA:23:158,Europe/Paris,,OIF, +OIF:SP:50:14884,1,"Charles Renard",48.806103,2.067106,0,0,OIF:SA:36:2044,Europe/Paris,,OIF, +OIF:SP:50:14885,1,"Charles Renard",48.806076,2.067052,0,0,OIF:SA:36:2044,Europe/Paris,,OIF, +OIF:SP:50:14886,1,"Jean-Baptiste Lully",48.805507,2.069994,0,0,OIF:SA:36:2125,Europe/Paris,,OIF, +OIF:SP:50:14887,1,"Jean-Baptiste Lully",48.805516,2.069872,0,0,OIF:SA:36:2125,Europe/Paris,,OIF, +OIF:SP:50:14888,1,"Le Clos Saint-Cyr",48.804397,2.071769,0,0,OIF:SA:36:2041,Europe/Paris,,OIF, +OIF:SP:50:14889,1,"Le Clos Saint-Cyr",48.804477,2.071714,0,0,OIF:SA:36:2041,Europe/Paris,,OIF, +OIF:SP:50:14890,1,"Aérodrome",48.80522,2.074064,0,0,OIF:SA:21:770,Europe/Paris,,OIF, +OIF:SP:50:14891,1,"Aérodrome",48.805382,2.074186,0,0,OIF:SA:21:770,Europe/Paris,,OIF, +OIF:SP:50:14892,1,"Ferme de Gally",48.817618,2.080112,0,0,OIF:SA:50:14892,Europe/Paris,,OIF, +OIF:SP:50:14893,1,"Ferme de Gally",48.817555,2.080072,0,0,OIF:SA:50:14892,Europe/Paris,,OIF, +OIF:SP:50:14894,1,"Santos Dumont",48.813075,2.078093,0,0,OIF:SA:36:2034,Europe/Paris,,OIF, +OIF:SP:50:14895,1,"Santos Dumont",48.813003,2.078066,0,0,OIF:SA:36:2034,Europe/Paris,,OIF, +OIF:SP:50:14896,1,"Lurçat",48.810807,2.049514,0,0,OIF:SA:50:14649,Europe/Paris,,OIF, +OIF:SP:50:14897,1,"Lycée Mansart",48.805178,2.063696,0,0,OIF:SA:36:2073,Europe/Paris,,OIF, +OIF:SP:50:14898,1,"Lycée Mansart",48.805196,2.063383,0,0,OIF:SA:36:2073,Europe/Paris,,OIF, +OIF:SP:50:14900,1,"Alpha Park",48.827562,1.971434,0,0,OIF:SA:50:14900,Europe/Paris,,OIF, +OIF:SP:50:14901,1,"Place Gourmande",48.828338,1.975308,0,0,OIF:SA:50:14901,Europe/Paris,,OIF, +OIF:SP:50:14902,1,"Place Gourmande",48.828437,1.97528,0,0,OIF:SA:50:14901,Europe/Paris,,OIF, +OIF:SP:50:14903,1,"Vallée des Entrepreneurs",48.827524,1.976539,0,0,OIF:SA:50:14903,Europe/Paris,,OIF, +OIF:SP:50:14904,1,"Vallée des Entrepreneurs",48.827632,1.976565,0,0,OIF:SA:50:14903,Europe/Paris,,OIF, +OIF:SP:50:14905,1,"Vignes",48.824178,1.984906,0,0,OIF:SA:50:14905,Europe/Paris,,OIF, +OIF:SP:50:14906,1,"Vignes",48.824052,1.984825,0,0,OIF:SA:50:14905,Europe/Paris,,OIF, +OIF:SP:50:14907,1,"Parc Saint-Cyr",48.807009,2.050936,0,0,OIF:SA:50:14907,Europe/Paris,,OIF, +OIF:SP:50:14908,1,"Parc Saint-Cyr",48.806884,2.051195,0,0,OIF:SA:50:14907,Europe/Paris,,OIF, +OIF:SP:50:14909,1,"Henri Barbusse",48.827272,1.959184,0,0,OIF:SA:50:14909,Europe/Paris,,OIF, +OIF:SP:50:14910,1,"Henri Barbusse",48.827397,1.95902,0,0,OIF:SA:50:14909,Europe/Paris,,OIF, +OIF:SP:50:14911,1,"Les Quadrants",48.78892,2.048656,0,0,OIF:SA:50:14911,Europe/Paris,,OIF, +OIF:SP:50:14912,1,"République",48.800585,2.07123,0,0,OIF:SA:21:772,Europe/Paris,,OIF, +OIF:SP:50:14913,1,"République",48.800585,2.071312,0,0,OIF:SA:21:772,Europe/Paris,,OIF, +OIF:SP:50:14914,1,"Docteur Vaillant",48.802105,2.071862,0,0,OIF:SA:21:771,Europe/Paris,,OIF, +OIF:SP:50:14915,1,"Docteur Vaillant",48.801961,2.071563,0,0,OIF:SA:21:771,Europe/Paris,,OIF, +OIF:SP:50:14916,1,"Pas du Lac",48.791556,2.042601,0,0,OIF:SA:22:10492,Europe/Paris,,OIF, +OIF:SP:50:14917,1,"Pas du Lac",48.791475,2.04252,0,0,OIF:SA:22:10492,Europe/Paris,,OIF, +OIF:SP:50:14918,1,"Vergers de la Ranchère",48.852962,2.018664,0,0,OIF:SA:23:510,Europe/Paris,,OIF, +OIF:SP:50:14919,1,"Vergers de la Ranchère",48.852962,2.018664,0,0,OIF:SA:23:510,Europe/Paris,,OIF, +OIF:SP:50:14920,1,"Châtaigneraie",48.807037,1.946963,0,0,OIF:SA:50:14920,Europe/Paris,,OIF, +OIF:SP:50:14921,1,"Châtaigneraie",48.806922,1.947576,0,0,OIF:SA:50:14920,Europe/Paris,,OIF, +OIF:SP:50:14924,1,"Beauvau Remilly",48.811333,2.134835,0,0,OIF:SA:2:74,Europe/Paris,,OIF, +OIF:SP:50:14925,1,"Berthier",48.811472,2.126602,0,0,OIF:SA:15:275,Europe/Paris,,OIF, +OIF:SP:50:14926,1,"Conseil Général",48.800635,2.149761,0,0,OIF:SA:2:324,Europe/Paris,,OIF, +OIF:SP:50:14927,1,"Coypel - Champ Lagarde",48.799966,2.141464,0,0,OIF:SA:2:320,Europe/Paris,,OIF, +OIF:SP:50:14928,1,"États Unis Université",48.808131,2.143992,0,0,OIF:SA:2:197,Europe/Paris,,OIF, +OIF:SP:50:14929,1,"Maréchal Haig",48.819772,2.145201,0,0,OIF:SA:2:167,Europe/Paris,,OIF, +OIF:SP:50:14930,1,"Musée Lambinet",48.809161,2.13087,0,0,OIF:SA:2:434,Europe/Paris,,OIF, +OIF:SP:50:14931,1,"Place de la Brèche",48.825125,2.142908,0,0,OIF:SA:2:161,Europe/Paris,,OIF, +OIF:SP:50:14932,1,"Place de la Loi",48.814928,2.129105,0,0,OIF:SA:15:273,Europe/Paris,,OIF, +OIF:SP:50:14933,1,"Place Laboulaye",48.819115,2.138929,0,0,OIF:SA:2:1087,Europe/Paris,,OIF, +OIF:SP:50:14934,1,"Provence",48.80835,2.140344,0,0,OIF:SA:2:195,Europe/Paris,,OIF, +OIF:SP:50:14935,1,"Reine Gare Rive Droite",48.808817,2.134981,0,0,OIF:SA:50:14589,Europe/Paris,,OIF, +OIF:SP:50:14936,1,"Réservoirs",48.809133,2.125359,0,0,OIF:SA:15:277,Europe/Paris,,OIF, +OIF:SP:50:14937,1,"Saint-Symphorien",48.805088,2.146452,0,0,OIF:SA:50:14587,Europe/Paris,,OIF, +OIF:SP:50:14938,1,"Vergennes",48.80039,2.137313,0,0,OIF:SA:2:1113,Europe/Paris,,OIF, +OIF:SP:50:14939,1,"Saint-Charles",48.80227,2.149116,0,0,OIF:SA:2:223,Europe/Paris,,OIF, +OIF:SP:50:14940,1,"Debasseux",48.816798,2.134868,0,0,OIF:SA:21:344,Europe/Paris,,OIF, +OIF:SP:50:14941,1,"Place de Verdun",48.836347,2.14047,0,0,OIF:SA:17:1359,Europe/Paris,,OIF, +OIF:SP:50:14942,1,"Fer Rouge",48.83753,2.155415,0,0,OIF:SA:8738226,Europe/Paris,,OIF, +OIF:SP:50:14943,1,"Stade de la Marche",48.837574,2.161133,0,0,OIF:SA:17:1355,Europe/Paris,,OIF, +OIF:SP:50:14944,1,"Villepreux",48.840787,2.146362,0,0,OIF:SA:2:115,Europe/Paris,,OIF, +OIF:SP:50:14945,1,"Foch",48.840905,2.152775,0,0,OIF:SA:2:116,Europe/Paris,,OIF, +OIF:SP:50:14946,1,"Place du Général Leclerc",48.844186,2.152763,0,0,OIF:SA:2:119,Europe/Paris,,OIF, +OIF:SP:50:14947,1,"Rond-Point de l'Etoile",48.847628,2.153132,0,0,OIF:SA:2:121,Europe/Paris,,OIF, +OIF:SP:50:14948,1,"Lycée Toulouse Lautrec",48.846824,2.156226,0,0,OIF:SA:2:123,Europe/Paris,,OIF, +OIF:SP:50:14949,1,"Passy Buzenval",48.859542,2.182076,0,0,OIF:SA:16:19348,Europe/Paris,,OIF, +OIF:SP:50:14950,1,"Général Leclerc",48.842425,2.208366,0,0,OIF:SA:17:1345,Europe/Paris,,OIF, +OIF:SP:50:5497,1,"Lavoir",48.848458,1.804368,0,0,OIF:SA:22:167,Europe/Paris,,OIF, +OIF:SP:50:5498,1,"Lavoir",48.848816,1.804132,0,0,OIF:SA:22:167,Europe/Paris,,OIF, +OIF:SP:50:5528,1,"Berry",48.850979,1.895698,0,0,OIF:SA:50:5528,Europe/Paris,,OIF, +OIF:SP:50:5529,1,"Berry",48.850908,1.895821,0,0,OIF:SA:50:5528,Europe/Paris,,OIF, +OIF:SP:50:5530,1,"Blanc Soleil",48.858825,1.907835,0,0,OIF:SA:50:5530,Europe/Paris,,OIF, +OIF:SP:50:5531,1,"Blanc Soleil",48.858618,1.907905,0,0,OIF:SA:50:5530,Europe/Paris,,OIF, +OIF:SP:50:5532,1,"Centre Commercial du Val des 4 Pignons",48.856453,1.905526,0,0,OIF:SA:50:5532,Europe/Paris,,OIF, +OIF:SP:50:5533,1,"Centre Commercial du Val des 4 Pignons",48.856146,1.90531,0,0,OIF:SA:50:5532,Europe/Paris,,OIF, +OIF:SP:50:5534,1,"Collège François Rabelais",48.855543,1.905016,0,0,OIF:SA:22:32,Europe/Paris,,OIF, +OIF:SP:50:5535,1,"Collège François Rabelais",48.855561,1.904934,0,0,OIF:SA:22:32,Europe/Paris,,OIF, +OIF:SP:50:5542,1,"Ferme de l'Orme",48.838557,1.849292,0,0,OIF:SA:22:65,Europe/Paris,,OIF, +OIF:SP:50:5543,1,"Ferme de l'Orme",48.838798,1.848827,0,0,OIF:SA:22:65,Europe/Paris,,OIF, +OIF:SP:50:5544,1,"Maréchal Leclerc",48.850883,1.898912,0,0,OIF:SA:50:5544,Europe/Paris,,OIF, +OIF:SP:50:5545,1,"Maréchal Leclerc",48.851009,1.898857,0,0,OIF:SA:50:5544,Europe/Paris,,OIF, +OIF:SP:50:5546,1,"De Gaulle",48.85039,1.899107,0,0,OIF:SA:50:5546,Europe/Paris,,OIF, +OIF:SP:50:5547,1,"De Gaulle",48.850327,1.899271,0,0,OIF:SA:50:5546,Europe/Paris,,OIF, +OIF:SP:50:5548,1,"Acacias",48.848965,1.88595,0,0,OIF:SA:50:5548,Europe/Paris,,OIF, +OIF:SP:50:5549,1,"Acacias",48.848939,1.886059,0,0,OIF:SA:50:5548,Europe/Paris,,OIF, +OIF:SP:50:5550,1,"Les Chênes",48.847394,1.88403,0,0,OIF:SA:50:5550,Europe/Paris,,OIF, +OIF:SP:50:5551,1,"Les Chênes",48.847395,1.884153,0,0,OIF:SA:50:5550,Europe/Paris,,OIF, +OIF:SP:50:5552,1,"Les Écoles",48.856945,1.902389,0,0,OIF:SA:50:5552,Europe/Paris,,OIF, +OIF:SP:50:5553,1,"Les Écoles",48.856936,1.902484,0,0,OIF:SA:50:5552,Europe/Paris,,OIF, +OIF:SP:50:5554,1,"Marronniers",48.843687,1.885302,0,0,OIF:SA:50:5554,Europe/Paris,,OIF, +OIF:SP:50:5555,1,"Marronniers",48.843652,1.885506,0,0,OIF:SA:50:5554,Europe/Paris,,OIF, +OIF:SP:50:5556,1,"Les Saules",48.846024,1.887596,0,0,OIF:SA:50:5556,Europe/Paris,,OIF, +OIF:SP:50:5557,1,"Les Saules",48.845861,1.887462,0,0,OIF:SA:50:5556,Europe/Paris,,OIF, +OIF:SP:50:5558,1,"Mairie",48.856898,1.875557,0,0,OIF:SA:21:101,Europe/Paris,,OIF, +OIF:SP:50:5559,1,"Mairie",48.856889,1.875571,0,0,OIF:SA:21:101,Europe/Paris,,OIF, +OIF:SP:50:5560,1,"Maladrerie",48.873272,1.880057,0,0,OIF:SA:21:99,Europe/Paris,,OIF, +OIF:SP:50:5561,1,"Maladrerie",48.873443,1.880015,0,0,OIF:SA:21:99,Europe/Paris,,OIF, +OIF:SP:50:5568,1,"Navarre",48.853472,1.899068,0,0,OIF:SA:50:5568,Europe/Paris,,OIF, +OIF:SP:50:5569,1,"Navarre",48.853041,1.899139,0,0,OIF:SA:50:5568,Europe/Paris,,OIF, +OIF:SP:50:5570,1,"Estendard",48.851451,1.877989,0,0,OIF:SA:50:5570,Europe/Paris,,OIF, +OIF:SP:50:5572,1,"Renouveau",48.852012,1.878842,0,0,OIF:SA:22:33,Europe/Paris,,OIF, +OIF:SP:50:5573,1,"Renouveau",48.851915,1.879415,0,0,OIF:SA:22:33,Europe/Paris,,OIF, +OIF:SP:50:5593,1,"Centre Commercial",48.799768,2.037847,0,0,OIF:SA:50:5593,Europe/Paris,,OIF, +OIF:SP:50:5594,1,"Centre Commercial",48.799929,2.037207,0,0,OIF:SA:50:5593,Europe/Paris,,OIF, +OIF:SP:50:5599,1,"Chemin Vert",48.798378,2.03191,0,0,OIF:SA:41:6119,Europe/Paris,,OIF, +OIF:SP:50:5600,1,"Chemin Vert",48.798459,2.031936,0,0,OIF:SA:41:6119,Europe/Paris,,OIF, +OIF:SP:50:5601,1,"Croix Blanche",48.798429,2.017121,0,0,OIF:SA:41:6114,Europe/Paris,,OIF, +OIF:SP:50:5602,1,"Croix Blanche",48.79822,2.016251,0,0,OIF:SA:41:6114,Europe/Paris,,OIF, +OIF:SP:50:5603,1,"Église de Bois d'Arcy",48.802116,2.017642,0,0,OIF:SA:41:6116,Europe/Paris,,OIF, +OIF:SP:50:5604,1,"Église de Bois d'Arcy",48.802107,2.017656,0,0,OIF:SA:41:6116,Europe/Paris,,OIF, +OIF:SP:50:5605,1,"Falaize / Paix",48.804395,2.036922,0,0,OIF:SA:50:5605,Europe/Paris,,OIF, +OIF:SP:50:5606,1,"Falaize / Paix",48.804189,2.037168,0,0,OIF:SA:50:5605,Europe/Paris,,OIF, +OIF:SP:50:5608,1,"Hirbec",48.805226,2.034985,0,0,OIF:SA:50:5608,Europe/Paris,,OIF, +OIF:SP:50:5609,1,"Hirbec",48.804703,2.034539,0,0,OIF:SA:50:5608,Europe/Paris,,OIF, +OIF:SP:50:5610,1,"Hôtel de Ville de Bois d'Arcy",48.800758,2.031079,0,0,OIF:SA:41:6118,Europe/Paris,,OIF, +OIF:SP:50:5611,1,"Hôtel de Ville de Bois d'Arcy",48.800964,2.030724,0,0,OIF:SA:41:6118,Europe/Paris,,OIF, +OIF:SP:50:5621,1,"Paul Vaillant Couturier",48.799706,2.020596,0,0,OIF:SA:41:6115,Europe/Paris,,OIF, +OIF:SP:50:5622,1,"Paul Vaillant Couturier",48.800004,2.021247,0,0,OIF:SA:41:6115,Europe/Paris,,OIF, +OIF:SP:50:5623,1,"Perdreau",48.80325,2.018247,0,0,OIF:SA:50:5623,Europe/Paris,,OIF, +OIF:SP:50:5624,1,"Perdreau",48.803953,2.018978,0,0,OIF:SA:50:5623,Europe/Paris,,OIF, +OIF:SP:50:5625,1,"Place de la République",48.80132,2.039974,0,0,OIF:SA:50:5625,Europe/Paris,,OIF, +OIF:SP:50:5626,1,"Place de la République",48.801831,2.039454,0,0,OIF:SA:50:5625,Europe/Paris,,OIF, +OIF:SP:50:5627,1,"Le Puits",48.801082,2.024438,0,0,OIF:SA:41:6157,Europe/Paris,,OIF, +OIF:SP:50:5628,1,"Le Puits",48.801072,2.024152,0,0,OIF:SA:41:6157,Europe/Paris,,OIF, +OIF:SP:50:5629,1,"Turpault",48.802075,2.032881,0,0,OIF:SA:50:5629,Europe/Paris,,OIF, +OIF:SP:50:5630,1,"Turpault",48.801571,2.032558,0,0,OIF:SA:50:5629,Europe/Paris,,OIF, +OIF:SP:50:5853,1,"Champ du Caillou",48.853771,1.983684,0,0,OIF:SA:21:1004,Europe/Paris,,OIF, +OIF:SP:50:5854,1,"Champ du Caillou",48.853699,1.983684,0,0,OIF:SA:21:1004,Europe/Paris,,OIF, +OIF:SP:50:5855,1,"Ferme",48.851044,1.988278,0,0,OIF:SA:21:6,Europe/Paris,,OIF, +OIF:SP:50:5856,1,"Ferme",48.851025,1.98821,0,0,OIF:SA:21:6,Europe/Paris,,OIF, +OIF:SP:50:5857,1,"Vallon",48.853167,1.992241,0,0,OIF:SA:21:167,Europe/Paris,,OIF, +OIF:SP:50:5858,1,"Vallon",48.853203,1.992227,0,0,OIF:SA:21:167,Europe/Paris,,OIF, +OIF:SP:50:5859,1,"Parly 2",48.828686,2.117983,0,0,OIF:SA:21:1032,Europe/Paris,,OIF, +OIF:SP:50:5860,1,"Parly 2",48.828596,2.117684,0,0,OIF:SA:21:1032,Europe/Paris,,OIF, +OIF:SP:50:5863,1,"Hôpital Mignot",48.829764,2.127834,0,0,OIF:SA:21:339,Europe/Paris,,OIF, +OIF:SP:50:5864,1,"Hôpital Mignot",48.829657,2.128325,0,0,OIF:SA:21:339,Europe/Paris,,OIF, +OIF:SP:50:5914,1,"Alfa Park",48.827481,1.971502,0,0,OIF:SA:50:14900,Europe/Paris,,OIF, +OIF:SP:50:5919,1,"Avre",48.824989,1.97348,0,0,OIF:SA:50:5919,Europe/Paris,,OIF, +OIF:SP:50:5920,1,"Avre",48.825042,1.973371,0,0,OIF:SA:50:5919,Europe/Paris,,OIF, +OIF:SP:50:5923,1,"Charbonnier",48.820907,1.994102,0,0,OIF:SA:50:5923,Europe/Paris,,OIF, +OIF:SP:50:5924,1,"Charbonnier",48.820856,1.995164,0,0,OIF:SA:50:5923,Europe/Paris,,OIF, +OIF:SP:50:5925,1,"Cimetière des Clayes",48.821242,1.973697,0,0,OIF:SA:50:14584,Europe/Paris,,OIF, +OIF:SP:50:5931,1,"Croix Blanche",48.828407,1.992433,0,0,OIF:SA:50:5931,Europe/Paris,,OIF, +OIF:SP:50:5932,1,"Docteur Roux / Croix Blanche",48.828008,1.99136,0,0,OIF:SA:50:5931,Europe/Paris,,OIF, +OIF:SP:50:5933,1,"Docteur Roux",48.827965,1.991891,0,0,OIF:SA:23:156,Europe/Paris,,OIF, +OIF:SP:50:5934,1,"Docteur Roux",48.827981,1.991319,0,0,OIF:SA:23:156,Europe/Paris,,OIF, +OIF:SP:50:5935,1,"Docteur Vaillant",48.826376,1.995917,0,0,OIF:SA:23:158,Europe/Paris,,OIF, +OIF:SP:50:5937,1,"Gare Routière des Clayes",48.823757,1.991361,0,0,OIF:SA:8739341,Europe/Paris,,OIF, +OIF:SP:50:5938,1,"Gare Routière des Clayes",48.823802,1.991293,0,0,OIF:SA:8739341,Europe/Paris,,OIF, +OIF:SP:50:5941,1,"Grainetier",48.820954,1.988766,0,0,OIF:SA:50:5941,Europe/Paris,,OIF, +OIF:SP:50:5942,1,"Grainetier",48.821089,1.98867,0,0,OIF:SA:50:5941,Europe/Paris,,OIF, +OIF:SP:50:5943,1,"Gros Caillou",48.826274,1.979515,0,0,OIF:SA:50:5943,Europe/Paris,,OIF, +OIF:SP:50:5944,1,"Gros Caillou",48.82631,1.979556,0,0,OIF:SA:50:5943,Europe/Paris,,OIF, +OIF:SP:50:5947,1,"Jean Jaurès",48.827919,1.982499,0,0,OIF:SA:50:5947,Europe/Paris,,OIF, +OIF:SP:50:5948,1,"Jean Jaurès",48.827532,1.982256,0,0,OIF:SA:50:5947,Europe/Paris,,OIF, +OIF:SP:50:5949,1,"Jules Ferry",48.823592,1.984257,0,0,OIF:SA:23:149,Europe/Paris,,OIF, +OIF:SP:50:5950,1,"Jules Ferry",48.822992,1.985009,0,0,OIF:SA:23:149,Europe/Paris,,OIF, +OIF:SP:50:5951,1,"L'Enclos",48.821497,1.977847,0,0,OIF:SA:50:5951,Europe/Paris,,OIF, +OIF:SP:50:5952,1,"L'Enclos",48.821487,1.977534,0,0,OIF:SA:50:5951,Europe/Paris,,OIF, +OIF:SP:50:5953,1,"Les Dames",48.825994,1.972983,0,0,OIF:SA:50:5953,Europe/Paris,,OIF, +OIF:SP:50:5954,1,"Les Dames",48.825931,1.97282,0,0,OIF:SA:50:5953,Europe/Paris,,OIF, +OIF:SP:50:5955,1,"Massenet",48.826469,1.987368,0,0,OIF:SA:50:5955,Europe/Paris,,OIF, +OIF:SP:50:5956,1,"Massenet",48.826729,1.987162,0,0,OIF:SA:50:5955,Europe/Paris,,OIF, +OIF:SP:50:5957,1,"Place Mandela",48.822453,1.972899,0,0,OIF:SA:50:5957,Europe/Paris,,OIF, +OIF:SP:50:5958,1,"Place Mandela",48.82238,1.972791,0,0,OIF:SA:50:5957,Europe/Paris,,OIF, +OIF:SP:50:5959,1,"Pointe à l'Ange",48.829292,1.994033,0,0,OIF:SA:50:5959,Europe/Paris,,OIF, +OIF:SP:50:5960,1,"Pointe à l'Ange",48.829237,1.993788,0,0,OIF:SA:50:5959,Europe/Paris,,OIF, +OIF:SP:50:5961,1,"Pont de Biais",48.820103,1.999062,0,0,OIF:SA:50:5961,Europe/Paris,,OIF, +OIF:SP:50:5962,1,"Pont de Biais",48.819951,1.999321,0,0,OIF:SA:50:5961,Europe/Paris,,OIF, +OIF:SP:50:5963,1,"République",48.822183,1.987982,0,0,OIF:SA:23:154,Europe/Paris,,OIF, +OIF:SP:50:5964,1,"République",48.822238,1.988295,0,0,OIF:SA:23:154,Europe/Paris,,OIF, +OIF:SP:50:5966,1,"Rue des Dames",48.826003,1.972915,0,0,OIF:SA:50:5953,Europe/Paris,,OIF, +OIF:SP:50:5967,1,"Moulin",48.8219,1.980294,0,0,OIF:SA:50:5967,Europe/Paris,,OIF, +OIF:SP:50:5968,1,"Moulin",48.822163,1.981231,0,0,OIF:SA:50:5967,Europe/Paris,,OIF, +OIF:SP:50:5973,1,"Toit et Joie",48.825612,1.986612,0,0,OIF:SA:23:152,Europe/Paris,,OIF, +OIF:SP:50:5974,1,"Toit et Joie",48.825216,1.986219,0,0,OIF:SA:23:152,Europe/Paris,,OIF, +OIF:SP:50:5975,1,"Villepreux Gare",48.82378,1.993158,0,0,OIF:SA:8739341,Europe/Paris,,OIF, +OIF:SP:50:5978,1,"Val Joyeux",48.817783,2.001935,0,0,OIF:SA:23:837,Europe/Paris,,OIF, +OIF:SP:50:6024,1,"Bruxelles (la Clef Saint-Pierre)",48.790192,1.971915,0,0,OIF:SA:50:6024,Europe/Paris,,OIF, +OIF:SP:50:6025,1,"Bruxelles (la Clef Saint-Pierre)",48.789745,1.972639,0,0,OIF:SA:50:6024,Europe/Paris,,OIF, +OIF:SP:50:6029,1,"Collège la Clef Saint-Pierre",48.792341,1.969342,0,0,OIF:SA:50:6029,Europe/Paris,,OIF, +OIF:SP:50:6030,1,"Collège la Clef Saint-Pierre",48.792359,1.969342,0,0,OIF:SA:50:6029,Europe/Paris,,OIF, +OIF:SP:50:6031,1,"De Lattre de Tassigny",48.797642,1.974651,0,0,OIF:SA:22:9670,Europe/Paris,,OIF, +OIF:SP:50:6032,1,"De Lattre de Tassigny",48.79776,1.974868,0,0,OIF:SA:22:9670,Europe/Paris,,OIF, +OIF:SP:50:6157,1,"Zola",48.808383,2.046969,0,0,OIF:SA:50:6157,Europe/Paris,,OIF, +OIF:SP:50:6158,1,"Zola",48.808222,2.047201,0,0,OIF:SA:50:6157,Europe/Paris,,OIF, +OIF:SP:50:6159,1,"Gare de Fontenay le Fleury Arrivée",48.807539,2.039925,0,0,OIF:SA:8739340,Europe/Paris,,OIF, +OIF:SP:50:6160,1,"Gare de Fontenay le Fleury Départ",48.807467,2.040021,0,0,OIF:SA:8739340,Europe/Paris,,OIF, +OIF:SP:50:6161,1,"Graviers",48.812831,2.035404,0,0,OIF:SA:50:14577,Europe/Paris,,OIF, +OIF:SP:50:6162,1,"Hôtel de Ville de Fontenay-le-Fleury 2",48.811182,2.044531,0,0,OIF:SA:50:6162,Europe/Paris,,OIF, +OIF:SP:50:6163,1,"Hôtel de Ville de Fontenay-le-Fleury 1",48.811209,2.044721,0,0,OIF:SA:50:6162,Europe/Paris,,OIF, +OIF:SP:50:6164,1,"Jules Guesde",48.816427,2.046597,0,0,OIF:SA:50:6164,Europe/Paris,,OIF, +OIF:SP:50:6166,1,"La Râtelle",48.816129,2.049838,0,0,OIF:SA:50:6166,Europe/Paris,,OIF, +OIF:SP:50:6168,1,"Montaigne",48.813518,2.051567,0,0,OIF:SA:50:6168,Europe/Paris,,OIF, +OIF:SP:50:6173,1,"Pompidou",48.809434,2.042813,0,0,OIF:SA:50:6173,Europe/Paris,,OIF, +OIF:SP:50:6174,1,"Quatre Arpents",48.814662,2.045369,0,0,OIF:SA:50:6174,Europe/Paris,,OIF, +OIF:SP:50:6176,1,"Schweitzer",48.811467,2.050912,0,0,OIF:SA:50:6176,Europe/Paris,,OIF, +OIF:SP:50:6177,1,"Schweitzer",48.811404,2.050953,0,0,OIF:SA:50:6176,Europe/Paris,,OIF, +OIF:SP:50:6178,1,"Victor Hugo",48.813653,2.044245,0,0,OIF:SA:50:6178,Europe/Paris,,OIF, +OIF:SP:50:6488,1,"Ergal Centre",48.785123,1.928003,0,0,OIF:SA:50:6488,Europe/Paris,,OIF, +OIF:SP:50:6489,1,"Ergal Centre",48.783374,1.92629,0,0,OIF:SA:50:6488,Europe/Paris,,OIF, +OIF:SP:50:6494,1,"Ergal Rond-Point",48.785418,1.932585,0,0,OIF:SA:50:6494,Europe/Paris,,OIF, +OIF:SP:50:6495,1,"Ergal Rond-Point",48.785409,1.932544,0,0,OIF:SA:50:6494,Europe/Paris,,OIF, +OIF:SP:50:6499,1,"Église de Jouars",48.788761,1.899341,0,0,OIF:SA:50:6499,Europe/Paris,,OIF, +OIF:SP:50:6500,1,"Église de Jouars",48.78904,1.899584,0,0,OIF:SA:50:6499,Europe/Paris,,OIF, +OIF:SP:50:6503,1,"Chennevières",48.794016,1.908575,0,0,OIF:SA:50:14851,Europe/Paris,,OIF, +OIF:SP:50:6505,1,"Dauberie",48.775572,1.893741,0,0,OIF:SA:50:6505,Europe/Paris,,OIF, +OIF:SP:50:6506,1,"Dauberie",48.775572,1.893809,0,0,OIF:SA:50:6505,Europe/Paris,,OIF, +OIF:SP:50:6507,1,"Gouttière",48.808522,1.900794,0,0,OIF:SA:50:6507,Europe/Paris,,OIF, +OIF:SP:50:6508,1,"Gouttière",48.808531,1.900889,0,0,OIF:SA:50:6507,Europe/Paris,,OIF, +OIF:SP:50:6509,1,"Les Mousseaux",48.780502,1.892434,0,0,OIF:SA:41:6587,Europe/Paris,,OIF, +OIF:SP:50:6510,1,"Les Mousseaux",48.780565,1.892624,0,0,OIF:SA:41:6587,Europe/Paris,,OIF, +OIF:SP:50:6511,1,"Place Foch",48.803118,1.900445,0,0,OIF:SA:50:6511,Europe/Paris,,OIF, +OIF:SP:50:6512,1,"Place Foch",48.802896,1.901059,0,0,OIF:SA:50:6511,Europe/Paris,,OIF, +OIF:SP:50:6513,1,"Rue Andin",48.803933,1.896968,0,0,OIF:SA:50:6513,Europe/Paris,,OIF, +OIF:SP:50:6514,1,"Rue Andin",48.803789,1.897078,0,0,OIF:SA:50:6513,Europe/Paris,,OIF, +OIF:SP:50:6515,1,"Collège Saint-Simon",48.804677,1.889233,0,0,OIF:SA:50:6515,Europe/Paris,,OIF, +OIF:SP:50:6516,1,"Collège Saint-Simon",48.804685,1.889179,0,0,OIF:SA:50:6515,Europe/Paris,,OIF, +OIF:SP:50:6521,1,"Richarderie",48.787507,1.918205,0,0,OIF:SA:50:6521,Europe/Paris,,OIF, +OIF:SP:50:6522,1,"Richarderie",48.787597,1.91815,0,0,OIF:SA:50:6521,Europe/Paris,,OIF, +OIF:SP:50:6523,1,"Saint-Louis",48.804876,1.901763,0,0,OIF:SA:50:6523,Europe/Paris,,OIF, +OIF:SP:50:6524,1,"Saint-Louis",48.804831,1.901805,0,0,OIF:SA:50:6523,Europe/Paris,,OIF, +OIF:SP:50:6852,1,"Gare Routière de Mantes-la-Ville - Quai 26",48.98783,1.704725,0,0,OIF:SA:8738150,Europe/Paris,,OIF, +OIF:SP:50:7006,1,"Domaine de la Vallée",48.969916,1.717707,0,0,OIF:SA:50:14540,Europe/Paris,,OIF, +OIF:SP:50:7018,1,"Mairie de Mantes-la-Ville",48.978371,1.714015,0,0,OIF:SA:22:179,Europe/Paris,,OIF, +OIF:SP:50:7021,1,"Mateau",48.975093,1.717864,0,0,OIF:SA:50:14542,Europe/Paris,,OIF, +OIF:SP:50:7072,1,"Grande Rue",48.790501,1.852206,0,0,OIF:SA:25:10717,Europe/Paris,,OIF, +OIF:SP:50:7073,1,"Grande Rue",48.790222,1.852086,0,0,OIF:SA:25:10717,Europe/Paris,,OIF, +OIF:SP:50:7074,1,"Cheval Mort",48.780751,1.843919,0,0,OIF:SA:25:418,Europe/Paris,,OIF, +OIF:SP:50:7075,1,"Cheval Mort",48.780623,1.845579,0,0,OIF:SA:25:418,Europe/Paris,,OIF, +OIF:SP:50:7149,1,"Gare de Montfort l'Amaury-Méré",48.802361,1.815073,0,0,OIF:SA:8739389,Europe/Paris,,OIF, +OIF:SP:50:7192,1,"Château des Mesnuls",48.756981,1.836341,0,0,OIF:SA:50:7192,Europe/Paris,,OIF, +OIF:SP:50:7237,1,"Notre-Dame du Bel-Air",48.777644,1.799001,0,0,OIF:SA:25:467,Europe/Paris,,OIF, +OIF:SP:50:7238,1,"Notre-Dame du Bel-Air",48.777516,1.798567,0,0,OIF:SA:25:467,Europe/Paris,,OIF, +OIF:SP:50:7245,1,"Collège M.Ravel",48.774797,1.81554,0,0,OIF:SA:25:485,Europe/Paris,,OIF, +OIF:SP:50:7251,1,"Sycomores",48.776519,1.812789,0,0,OIF:SA:50:7251,Europe/Paris,,OIF, +OIF:SP:50:7252,1,"Sycomores",48.776735,1.812882,0,0,OIF:SA:50:7251,Europe/Paris,,OIF, +OIF:SP:50:7345,1,"Saint-Quentin-en-Yvelines - Gare P. Delouvrier",48.788098,2.043668,0,0,OIF:SA:8739384,Europe/Paris,,OIF, +OIF:SP:50:7346,1,"Saint-Quentin-en-Yvelines - Gare P. Delouvrier",48.787811,2.043724,0,0,OIF:SA:8739384,Europe/Paris,,OIF, +OIF:SP:50:7369,1,"Trois Communes",48.812171,1.896136,0,0,OIF:SA:50:7369,Europe/Paris,,OIF, +OIF:SP:50:7370,1,"Trois Communes",48.81182,1.896003,0,0,OIF:SA:50:7369,Europe/Paris,,OIF, +OIF:SP:50:7371,1,"Trois Marches",48.815128,1.90082,0,0,OIF:SA:50:7371,Europe/Paris,,OIF, +OIF:SP:50:7372,1,"Trois Marches",48.815029,1.900943,0,0,OIF:SA:50:7371,Europe/Paris,,OIF, +OIF:SP:50:7375,1,"Rosiers",48.818987,1.899359,0,0,OIF:SA:50:7375,Europe/Paris,,OIF, +OIF:SP:50:7376,1,"Place Mancest",48.814701,1.904457,0,0,OIF:SA:50:14834,Europe/Paris,,OIF, +OIF:SP:50:7377,1,"Place Mancest",48.814031,1.903265,0,0,OIF:SA:50:14834,Europe/Paris,,OIF, +OIF:SP:50:7382,1,"Villancy",48.80839,1.909041,0,0,OIF:SA:50:7382,Europe/Paris,,OIF, +OIF:SP:50:7383,1,"Villancy",48.808336,1.909015,0,0,OIF:SA:50:7382,Europe/Paris,,OIF, +OIF:SP:50:7384,1,"Rosiers",48.817087,1.898272,0,0,OIF:SA:50:7375,Europe/Paris,,OIF, +OIF:SP:50:7385,1,"Rosiers",48.817168,1.898408,0,0,OIF:SA:50:7375,Europe/Paris,,OIF, +OIF:SP:50:7388,1,"Place Sully",48.815435,1.863731,0,0,OIF:SA:22:310,Europe/Paris,,OIF, +OIF:SP:50:7389,1,"Place Sully",48.81517,1.864795,0,0,OIF:SA:22:310,Europe/Paris,,OIF, +OIF:SP:50:7410,1,"Abel Guyet",48.82801,1.945444,0,0,OIF:SA:23:401,Europe/Paris,,OIF, +OIF:SP:50:7411,1,"Abel Guyet",48.828315,1.945414,0,0,OIF:SA:23:401,Europe/Paris,,OIF, +OIF:SP:50:7412,1,"Bartholomé",48.820526,1.925111,0,0,OIF:SA:50:7412,Europe/Paris,,OIF, +OIF:SP:50:7413,1,"Bartholomé",48.82039,1.924677,0,0,OIF:SA:50:7412,Europe/Paris,,OIF, +OIF:SP:50:7416,1,"Bretéchelle",48.81688,1.967004,0,0,OIF:SA:50:14845,Europe/Paris,,OIF, +OIF:SP:50:7418,1,"Brigitte",48.828494,1.950654,0,0,OIF:SA:50:7418,Europe/Paris,,OIF, +OIF:SP:50:7419,1,"Brigitte",48.828924,1.950106,0,0,OIF:SA:50:7418,Europe/Paris,,OIF, +OIF:SP:50:7425,1,"Centre Commercial Brigitte",48.826518,1.948232,0,0,OIF:SA:50:7418,Europe/Paris,,OIF, +OIF:SP:50:7426,1,"Centre Commercial Brigitte",48.826562,1.947973,0,0,OIF:SA:50:7418,Europe/Paris,,OIF, +OIF:SP:50:7427,1,"Collège Blaise Pascal",48.825257,1.952842,0,0,OIF:SA:50:7427,Europe/Paris,,OIF, +OIF:SP:50:7428,1,"Collège Blaise Pascal",48.82522,1.952706,0,0,OIF:SA:50:7427,Europe/Paris,,OIF, +OIF:SP:50:7431,1,"Decaux",48.79943,1.948707,0,0,OIF:SA:50:7431,Europe/Paris,,OIF, +OIF:SP:50:7432,1,"Decaux",48.798883,1.949065,0,0,OIF:SA:50:7431,Europe/Paris,,OIF, +OIF:SP:50:7435,1,"Église/Mairie",48.816506,1.948321,0,0,OIF:SA:50:7435,Europe/Paris,,OIF, +OIF:SP:50:7436,1,"Église/Mairie",48.817365,1.947212,0,0,OIF:SA:50:7435,Europe/Paris,,OIF, +OIF:SP:50:7437,1,"François Mitterrand",48.818817,1.959995,0,0,OIF:SA:50:7437,Europe/Paris,,OIF, +OIF:SP:50:7438,1,"François Mitterrand",48.818923,1.95949,0,0,OIF:SA:50:7437,Europe/Paris,,OIF, +OIF:SP:50:7441,1,"René Bazin",48.820214,1.944346,0,0,OIF:SA:23:399,Europe/Paris,,OIF, +OIF:SP:50:7442,1,"René Bazin",48.820582,1.944438,0,0,OIF:SA:23:399,Europe/Paris,,OIF, +OIF:SP:50:7443,1,"Grand-Plaisir",48.829925,1.959533,0,0,OIF:SA:50:7443,Europe/Paris,,OIF, +OIF:SP:50:7444,1,"Grand-Plaisir",48.829924,1.959369,0,0,OIF:SA:50:7443,Europe/Paris,,OIF, +OIF:SP:50:7445,1,"Petits Prés",48.825002,1.943792,0,0,OIF:SA:50:14567,Europe/Paris,,OIF, +OIF:SP:50:7446,1,"Petits Prés",48.824957,1.943792,0,0,OIF:SA:50:14567,Europe/Paris,,OIF, +OIF:SP:50:7447,1,"Ida Nudel",48.825815,1.964626,0,0,OIF:SA:23:866,Europe/Paris,,OIF, +OIF:SP:50:7448,1,"Ida Nudel",48.825436,1.964193,0,0,OIF:SA:23:866,Europe/Paris,,OIF, +OIF:SP:50:7451,1,"Jean-Jacques Rousseau",48.813947,1.946353,0,0,OIF:SA:50:7451,Europe/Paris,,OIF, +OIF:SP:50:7453,1,"Léon Blum",48.823106,1.96323,0,0,OIF:SA:50:7453,Europe/Paris,,OIF, +OIF:SP:50:7454,1,"Léon Blum",48.823051,1.96304,0,0,OIF:SA:50:7453,Europe/Paris,,OIF, +OIF:SP:50:7457,1,"La Bataille",48.803305,1.974802,0,0,OIF:SA:23:393,Europe/Paris,,OIF, +OIF:SP:50:7458,1,"La Bataille",48.802877,1.975826,0,0,OIF:SA:23:393,Europe/Paris,,OIF, +OIF:SP:50:7459,1,"La Chaîne",48.805837,1.953802,0,0,OIF:SA:50:7459,Europe/Paris,,OIF, +OIF:SP:50:7460,1,"La Chaîne",48.805937,1.954047,0,0,OIF:SA:50:7459,Europe/Paris,,OIF, +OIF:SP:50:7461,1,"Jonchères",48.815346,1.945526,0,0,OIF:SA:23:403,Europe/Paris,,OIF, +OIF:SP:50:7463,1,"Lamartine",48.818415,1.917805,0,0,OIF:SA:50:7463,Europe/Paris,,OIF, +OIF:SP:50:7464,1,"Lamartine",48.818524,1.917927,0,0,OIF:SA:50:7463,Europe/Paris,,OIF, +OIF:SP:50:7465,1,"Le Buisson",48.805964,1.959734,0,0,OIF:SA:50:7465,Europe/Paris,,OIF, +OIF:SP:50:7466,1,"Le Buisson",48.805901,1.959789,0,0,OIF:SA:50:7465,Europe/Paris,,OIF, +OIF:SP:50:7467,1,"Le Clos",48.820519,1.933618,0,0,OIF:SA:50:7467,Europe/Paris,,OIF, +OIF:SP:50:7468,1,"Le Clos",48.820491,1.93321,0,0,OIF:SA:50:7467,Europe/Paris,,OIF, +OIF:SP:50:7469,1,"Pablo Picasso",48.803433,1.963726,0,0,OIF:SA:23:397,Europe/Paris,,OIF, +OIF:SP:50:7470,1,"Pablo Picasso",48.803495,1.963412,0,0,OIF:SA:23:397,Europe/Paris,,OIF, +OIF:SP:50:7471,1,"Les Grands Jardins",48.803141,1.970939,0,0,OIF:SA:41:6216,Europe/Paris,,OIF, +OIF:SP:50:7472,1,"Les Grands Jardins",48.803124,1.971497,0,0,OIF:SA:41:6216,Europe/Paris,,OIF, +OIF:SP:50:7475,1,"Berthelot",48.830609,1.951496,0,0,OIF:SA:50:14839,Europe/Paris,,OIF, +OIF:SP:50:7477,1,"Marie Hillion",48.82839,1.943589,0,0,OIF:SA:50:7477,Europe/Paris,,OIF, +OIF:SP:50:7478,1,"Marie Hillion",48.828813,1.943654,0,0,OIF:SA:50:7477,Europe/Paris,,OIF, +OIF:SP:50:7480,1,"Mansart",48.823753,1.941079,0,0,OIF:SA:50:7480,Europe/Paris,,OIF, +OIF:SP:50:7481,1,"Mansart",48.823545,1.940809,0,0,OIF:SA:50:7480,Europe/Paris,,OIF, +OIF:SP:50:7482,1,"Mare aux Saules",48.792941,1.962794,0,0,OIF:SA:50:7482,Europe/Paris,,OIF, +OIF:SP:50:7483,1,"Mare aux Saules",48.792645,1.963137,0,0,OIF:SA:50:7482,Europe/Paris,,OIF, +OIF:SP:50:7484,1,"Michel Ange",48.821356,1.926084,0,0,OIF:SA:50:7484,Europe/Paris,,OIF, +OIF:SP:50:7485,1,"Michel Ange",48.821352,1.927514,0,0,OIF:SA:50:7484,Europe/Paris,,OIF, +OIF:SP:50:7492,1,"Parmentier",48.819732,1.96795,0,0,OIF:SA:50:14849,Europe/Paris,,OIF, +OIF:SP:50:7494,1,"Pierre Curie",48.801702,1.979562,0,0,OIF:SA:41:6218,Europe/Paris,,OIF, +OIF:SP:50:7495,1,"Pierre Curie",48.801746,1.979249,0,0,OIF:SA:41:6218,Europe/Paris,,OIF, +OIF:SP:50:7496,1,"Gare de Plaisir les Clayes",48.830546,1.959814,0,0,OIF:SA:8739362,Europe/Paris,,OIF, +OIF:SP:50:7497,1,"Gare de Plaisir les Clayes",48.830546,1.959787,0,0,OIF:SA:8739362,Europe/Paris,,OIF, +OIF:SP:50:7498,1,"Plaisir-Grignon",48.831572,1.943742,0,0,OIF:SA:8739342,Europe/Paris,,OIF, +OIF:SP:50:7499,1,"Plaisir-Grignon",48.831492,1.943784,0,0,OIF:SA:8739342,Europe/Paris,,OIF, +OIF:SP:50:7500,1,"Pressoir",48.805487,1.953927,0,0,OIF:SA:23:407,Europe/Paris,,OIF, +OIF:SP:50:7506,1,"Salle des Fêtes",48.802578,1.966371,0,0,OIF:SA:23:1065,Europe/Paris,,OIF, +OIF:SP:50:7507,1,"Salle des Fêtes",48.802471,1.966576,0,0,OIF:SA:23:1065,Europe/Paris,,OIF, +OIF:SP:50:7508,1,"Sainte-Apolline",48.795636,1.954095,0,0,OIF:SA:50:7508,Europe/Paris,,OIF, +OIF:SP:50:7509,1,"Sainte-Apolline",48.795682,1.954136,0,0,OIF:SA:50:7508,Europe/Paris,,OIF, +OIF:SP:50:7510,1,"Boissière",48.81983,1.921414,0,0,OIF:SA:50:7510,Europe/Paris,,OIF, +OIF:SP:50:7511,1,"Boissière",48.81993,1.921686,0,0,OIF:SA:50:7510,Europe/Paris,,OIF, +OIF:SP:50:7512,1,"Valibout",48.821821,1.952119,0,0,OIF:SA:50:7512,Europe/Paris,,OIF, +OIF:SP:50:7513,1,"Valibout",48.821775,1.95197,0,0,OIF:SA:50:7512,Europe/Paris,,OIF, +OIF:SP:50:7514,1,"Voltaire",48.819892,1.913452,0,0,OIF:SA:23:849,Europe/Paris,,OIF, +OIF:SP:50:7515,1,"Voltaire",48.819847,1.913534,0,0,OIF:SA:23:849,Europe/Paris,,OIF, +OIF:SP:50:7516,1,"Z.A. Sainte-Apolline",48.798178,1.95356,0,0,OIF:SA:50:7508,Europe/Paris,,OIF, +OIF:SP:50:7517,1,"Z.A. Sainte-Apolline",48.798235,1.954348,0,0,OIF:SA:50:7508,Europe/Paris,,OIF, +OIF:SP:50:7520,1,"Z. I. les Gâtines",48.801042,1.981526,0,0,OIF:SA:23:408,Europe/Paris,,OIF, +OIF:SP:50:7521,1,"Z. I. les Gâtines",48.800998,1.981648,0,0,OIF:SA:23:408,Europe/Paris,,OIF, +OIF:SP:50:7558,1,"Lycée Jean Monnet",48.802662,1.782197,0,0,OIF:SA:22:156,Europe/Paris,,OIF, +OIF:SP:50:7559,1,"Lycée Jean Monnet",48.802537,1.78228,0,0,OIF:SA:22:156,Europe/Paris,,OIF, +OIF:SP:50:7652,1,"Cimetière de Saint-Cyr",48.805115,2.063669,0,0,OIF:SA:36:2046,Europe/Paris,,OIF, +OIF:SP:50:7653,1,"Cimetière de Saint-Cyr",48.805124,2.063438,0,0,OIF:SA:36:2046,Europe/Paris,,OIF, +OIF:SP:50:7656,1,"Samuel de Champlain",48.806958,2.059863,0,0,OIF:SA:36:2049,Europe/Paris,,OIF, +OIF:SP:50:7657,1,"Samuel de Champlain",48.806636,2.060504,0,0,OIF:SA:36:2049,Europe/Paris,,OIF, +OIF:SP:50:7658,1,"P'Tits Pilotes",48.803155,2.059489,0,0,OIF:SA:36:2066,Europe/Paris,,OIF, +OIF:SP:50:7659,1,"P'Tits Pilotes",48.80294,2.059653,0,0,OIF:SA:36:2066,Europe/Paris,,OIF, +OIF:SP:50:7664,1,"Division Leclerc",48.800545,2.073571,0,0,OIF:SA:2:1468,Europe/Paris,,OIF, +OIF:SP:50:7665,1,"Divison Leclerc",48.80041,2.073585,0,0,OIF:SA:2:1468,Europe/Paris,,OIF, +OIF:SP:50:7666,1,"Les Deux Ponts",48.797609,2.059246,0,0,OIF:SA:36:2090,Europe/Paris,,OIF, +OIF:SP:50:7667,1,"Les Deux Ponts",48.797329,2.058404,0,0,OIF:SA:36:2090,Europe/Paris,,OIF, +OIF:SP:50:7670,1,"Mairie de Saint-Cyr-l'École",48.800319,2.064837,0,0,OIF:SA:36:2080,Europe/Paris,,OIF, +OIF:SP:50:7671,1,"Mairie de Saint-Cyr-l'École",48.799954,2.066513,0,0,OIF:SA:36:2080,Europe/Paris,,OIF, +OIF:SP:50:7672,1,"Paul Flé",48.804811,2.05665,0,0,OIF:SA:36:2062,Europe/Paris,,OIF, +OIF:SP:50:7673,1,"Paul Flé",48.803979,2.057933,0,0,OIF:SA:36:2062,Europe/Paris,,OIF, +OIF:SP:50:7674,1,"République",48.799062,2.069769,0,0,OIF:SA:21:772,Europe/Paris,,OIF, +OIF:SP:50:7675,1,"République",48.799025,2.069306,0,0,OIF:SA:21:772,Europe/Paris,,OIF, +OIF:SP:50:7678,1,"Terrier Blanc",48.797557,2.055954,0,0,OIF:SA:41:6504,Europe/Paris,,OIF, +OIF:SP:50:7679,1,"Terrier Blanc",48.797584,2.056308,0,0,OIF:SA:41:6504,Europe/Paris,,OIF, +OIF:SP:50:7686,1,"Chatron",48.821876,1.902723,0,0,OIF:SA:50:7686,Europe/Paris,,OIF, +OIF:SP:50:7687,1,"Chatron",48.821706,1.903079,0,0,OIF:SA:50:7686,Europe/Paris,,OIF, +OIF:SP:50:7688,1,"Mairie de Saint-Germain-de-la-Grange",48.83316,1.898994,0,0,OIF:SA:23:943,Europe/Paris,,OIF, +OIF:SP:50:7689,1,"Mairie de Saint-Germain-de-la-Grange",48.833178,1.89898,0,0,OIF:SA:23:943,Europe/Paris,,OIF, +OIF:SP:50:7766,1,"Carrefour de la Vierge",48.760327,1.883974,0,0,OIF:SA:25:753,Europe/Paris,,OIF, +OIF:SP:50:7767,1,"Carrefour de la Vierge",48.760382,1.884096,0,0,OIF:SA:25:753,Europe/Paris,,OIF, +OIF:SP:50:7768,1,"Charlaine",48.756715,1.877168,0,0,OIF:SA:25:748,Europe/Paris,,OIF, +OIF:SP:50:7769,1,"Charlaine",48.756786,1.877085,0,0,OIF:SA:25:748,Europe/Paris,,OIF, +OIF:SP:50:7770,1,"Église",48.756833,1.882183,0,0,OIF:SA:25:749,Europe/Paris,,OIF, +OIF:SP:50:7771,1,"Église",48.756833,1.882128,0,0,OIF:SA:25:749,Europe/Paris,,OIF, +OIF:SP:50:7772,1,"La Mare",48.754559,1.870662,0,0,OIF:SA:25:752,Europe/Paris,,OIF, +OIF:SP:50:7773,1,"La Mare",48.754568,1.870621,0,0,OIF:SA:25:752,Europe/Paris,,OIF, +OIF:SP:50:7794,1,"Mairie de Saulx Marchais",48.838382,1.835229,0,0,OIF:SA:50:7794,Europe/Paris,,OIF, +OIF:SP:50:7795,1,"Mairie de Saulx Marchais",48.83866,1.835172,0,0,OIF:SA:50:7794,Europe/Paris,,OIF, +OIF:SP:50:7806,1,"Grignon RD 119",48.844719,1.945835,0,0,OIF:SA:50:7806,Europe/Paris,,OIF, +OIF:SP:50:7808,1,"Rond-Point de Grignon",48.842684,1.944747,0,0,OIF:SA:50:7808,Europe/Paris,,OIF, +OIF:SP:50:7809,1,"Rond-Point de Grignon",48.842675,1.944761,0,0,OIF:SA:50:7808,Europe/Paris,,OIF, +OIF:SP:50:7812,1,"Thiverval Église",48.849555,1.916982,0,0,OIF:SA:50:7812,Europe/Paris,,OIF, +OIF:SP:50:7814,1,"Mairie de Thoiry",48.865204,1.794878,0,0,OIF:SA:22:70,Europe/Paris,,OIF, +OIF:SP:50:7815,1,"Mairie de Thoiry",48.865202,1.794592,0,0,OIF:SA:22:70,Europe/Paris,,OIF, +OIF:SP:50:7834,1,"Base de Loisirs",48.783889,1.992211,0,0,OIF:SA:50:7834,Europe/Paris,,OIF, +OIF:SP:50:7835,1,"Base de Loisirs",48.78305,1.994434,0,0,OIF:SA:50:7834,Europe/Paris,,OIF, +OIF:SP:50:7879,1,"Jean d'Alembert",48.79153,1.977415,0,0,OIF:SA:41:6442,Europe/Paris,,OIF, +OIF:SP:50:7880,1,"Jean d'Alembert",48.791593,1.977414,0,0,OIF:SA:41:6442,Europe/Paris,,OIF, +OIF:SP:50:7915,1,"Piscine à Vagues",48.78079,2.002323,0,0,OIF:SA:50:7915,Europe/Paris,,OIF, +OIF:SP:50:7916,1,"Piscine à Vagues",48.780379,2.003278,0,0,OIF:SA:50:7915,Europe/Paris,,OIF, +OIF:SP:50:7917,1,"Plaine de Neauphle",48.785651,1.986351,0,0,OIF:SA:41:6440,Europe/Paris,,OIF, +OIF:SP:50:7918,1,"Plaine de Neauphle",48.785089,1.987756,0,0,OIF:SA:41:6440,Europe/Paris,,OIF, +OIF:SP:50:7929,1,"Pissaloup",48.795776,1.981698,0,0,OIF:SA:50:7929,Europe/Paris,,OIF, +OIF:SP:50:7930,1,"Pissaloup",48.795398,1.981469,0,0,OIF:SA:50:7929,Europe/Paris,,OIF, +OIF:SP:50:7933,1,"Église",48.778069,1.876611,0,0,OIF:SA:50:14787,Europe/Paris,,OIF, +OIF:SP:50:7934,1,"Église",48.777917,1.876789,0,0,OIF:SA:50:14787,Europe/Paris,,OIF, +OIF:SP:50:7941,1,"Vert Buisson",48.772124,1.875658,0,0,OIF:SA:25:790,Europe/Paris,,OIF, +OIF:SP:50:7942,1,"Vert Buisson",48.772402,1.875533,0,0,OIF:SA:25:790,Europe/Paris,,OIF, +OIF:SP:50:8156,1,"Rive Gauche",48.800006,2.127995,0,0,OIF:SA:8739315,Europe/Paris,,OIF, +OIF:SP:50:8157,1,"Rive Gauche",48.799575,2.128201,0,0,OIF:SA:8739315,Europe/Paris,,OIF, +OIF:SP:50:8164,1,"INRA",48.801758,2.086014,0,0,OIF:SA:41:5906,Europe/Paris,,OIF, +OIF:SP:50:8165,1,"INRA",48.801871,2.08849,0,0,OIF:SA:41:5906,Europe/Paris,,OIF, +OIF:SP:50:8168,1,"Orangerie",48.800774,2.120441,0,0,OIF:SA:2:248,Europe/Paris,,OIF, +OIF:SP:50:8169,1,"Orangerie",48.800506,2.121122,0,0,OIF:SA:2:248,Europe/Paris,,OIF, +OIF:SP:50:8174,1,"Matelots",48.80321,2.106022,0,0,OIF:SA:50:8174,Europe/Paris,,OIF, +OIF:SP:50:8175,1,"Matelots",48.803435,2.106116,0,0,OIF:SA:50:8174,Europe/Paris,,OIF, +OIF:SP:50:8193,1,"Rue de Satory",48.79956,2.12484,0,0,OIF:SA:2:425,Europe/Paris,,OIF, +OIF:SP:50:8194,1,"Rue de Satory",48.799658,2.124201,0,0,OIF:SA:2:425,Europe/Paris,,OIF, +OIF:SP:50:8223,1,"Anjou",48.830044,2.002591,0,0,OIF:SA:50:8223,Europe/Paris,,OIF, +OIF:SP:50:8224,1,"Anjou",48.829882,2.002265,0,0,OIF:SA:50:8223,Europe/Paris,,OIF, +OIF:SP:50:8228,1,"Dunant",48.824763,1.997589,0,0,OIF:SA:50:8228,Europe/Paris,,OIF, +OIF:SP:50:8229,1,"Dunant",48.824916,1.997492,0,0,OIF:SA:50:8228,Europe/Paris,,OIF, +OIF:SP:50:8230,1,"Grand Parc",48.83302,2.006071,0,0,OIF:SA:50:8230,Europe/Paris,,OIF, +OIF:SP:50:8231,1,"Grand Parc",48.832912,2.005949,0,0,OIF:SA:50:8230,Europe/Paris,,OIF, +OIF:SP:50:8232,1,"Haie Bergerie",48.827797,1.999297,0,0,OIF:SA:23:647,Europe/Paris,,OIF, +OIF:SP:50:8233,1,"Haie Bergerie",48.827175,1.998689,0,0,OIF:SA:23:647,Europe/Paris,,OIF, +OIF:SP:50:8234,1,"Le Square",48.82731,2.001669,0,0,OIF:SA:50:8234,Europe/Paris,,OIF, +OIF:SP:50:8235,1,"Le Square",48.826994,2.001345,0,0,OIF:SA:50:8234,Europe/Paris,,OIF, +OIF:SP:50:8236,1,"Mairie de Villepreux",48.830608,2.004915,0,0,OIF:SA:23:670,Europe/Paris,,OIF, +OIF:SP:50:8237,1,"Mairie de Villepreux",48.830536,2.004793,0,0,OIF:SA:23:670,Europe/Paris,,OIF, +OIF:SP:50:8238,1,"Piscine de Villepreux",48.830506,2.003868,0,0,OIF:SA:50:8238,Europe/Paris,,OIF, +OIF:SP:50:8239,1,"Piscine de Villepreux",48.830407,2.003514,0,0,OIF:SA:50:8238,Europe/Paris,,OIF, +OIF:SP:50:8240,1,"Sonia Delaunay",48.83027,1.993537,0,0,OIF:SA:21:716,Europe/Paris,,OIF, +OIF:SP:50:8241,1,"Sonia Delaunay",48.830066,1.994246,0,0,OIF:SA:21:716,Europe/Paris,,OIF, +OIF:SP:50:8244,1,"Prieuré",48.832785,2.008631,0,0,OIF:SA:50:8244,Europe/Paris,,OIF, +OIF:SP:50:8245,1,"Prieuré",48.833062,2.008099,0,0,OIF:SA:50:8244,Europe/Paris,,OIF, +OIF:SP:50:8246,1,"Pyrénées",48.82422,1.999171,0,0,OIF:SA:50:8246,Europe/Paris,,OIF, +OIF:SP:50:8247,1,"Pyrénées",48.824238,1.999334,0,0,OIF:SA:50:8246,Europe/Paris,,OIF, +OIF:SP:50:8248,1,"Saintonge",48.830158,1.998179,0,0,OIF:SA:50:8248,Europe/Paris,,OIF, +OIF:SP:50:8249,1,"Saintonge",48.830105,1.998411,0,0,OIF:SA:50:8248,Europe/Paris,,OIF, +OIF:SP:50:8257,1,"Châtaigneraie",48.813526,1.883523,0,0,OIF:SA:50:8257,Europe/Paris,,OIF, +OIF:SP:50:8258,1,"Châtaigneraie",48.813193,1.883349,0,0,OIF:SA:50:8257,Europe/Paris,,OIF, +OIF:SP:50:8259,1,"Place de la Gare",48.815451,1.876878,0,0,OIF:SA:8739388,Europe/Paris,,OIF, +OIF:SP:50:8260,1,"Place de la Gare",48.81546,1.876864,0,0,OIF:SA:8739388,Europe/Paris,,OIF, +OIF:SP:50:8261,1,"Le Pontel (Route de Beynes)",48.809962,1.879757,0,0,OIF:SA:22:314,Europe/Paris,,OIF, +OIF:SP:50:8262,1,"Le Pontel (Route de Beynes)",48.810132,1.879715,0,0,OIF:SA:22:314,Europe/Paris,,OIF, +OIF:SP:50:8271,1,"Lycée - Gare RD11",48.814336,1.874534,0,0,OIF:SA:8739388,Europe/Paris,,OIF, +OIF:SP:50:8273,1,"Mairie",48.819515,1.891433,0,0,OIF:SA:50:8273,Europe/Paris,,OIF, +OIF:SP:50:8274,1,"Mairie",48.819523,1.891242,0,0,OIF:SA:50:8273,Europe/Paris,,OIF, +OIF:SP:50:8279,1,"Vierge",48.818118,1.885606,0,0,OIF:SA:50:8279,Europe/Paris,,OIF, +OIF:SP:50:8280,1,"Vierge",48.818118,1.88562,0,0,OIF:SA:50:8279,Europe/Paris,,OIF, +OIF:SP:51:1,1,"Gare de Montigny - Beauchamp",49.007199,2.197875,0,0,OIF:SA:8727608,Europe/Paris,,OIF, +OIF:SP:51:10,1,"Bordier",48.993242,2.197121,0,0,OIF:SA:51:10,Europe/Paris,,OIF, +OIF:SP:51:100,1,"Place Charles de Gaulle",48.983955,2.227662,0,0,OIF:SA:51:100,Europe/Paris,,OIF, +OIF:SP:51:101,1,"Bucherets",48.981308,2.233101,0,0,OIF:SA:51:101,Europe/Paris,,OIF, +OIF:SP:51:102,1,"Cadet de Vaux",48.984726,2.236522,0,0,OIF:SA:51:102,Europe/Paris,,OIF, +OIF:SP:51:103,1,"Cadet de Vaux",48.985742,2.236479,0,0,OIF:SA:51:102,Europe/Paris,,OIF, +OIF:SP:51:104,1,"Orme Saint-Edme",48.988331,2.237552,0,0,OIF:SA:51:104,Europe/Paris,,OIF, +OIF:SP:51:105,1,"Mare des Noues",48.991288,2.238721,0,0,OIF:SA:51:105,Europe/Paris,,OIF, +OIF:SP:51:108,1,"Mairie",48.984882,2.229667,0,0,OIF:SA:51:108,Europe/Paris,,OIF, +OIF:SP:51:109,1,"Marais",48.989214,2.221028,0,0,OIF:SA:51:109,Europe/Paris,,OIF, +OIF:SP:51:11,1,"Bordier",48.992193,2.199076,0,0,OIF:SA:51:10,Europe/Paris,,OIF, +OIF:SP:51:110,1,"Marché",48.985779,2.228136,0,0,OIF:SA:51:110,Europe/Paris,,OIF, +OIF:SP:51:114,1,"Jeanne d'Arc",48.989043,2.229535,0,0,OIF:SA:51:114,Europe/Paris,,OIF, +OIF:SP:51:117,1,"Rue Michelet",48.993791,2.151944,0,0,OIF:SA:51:117,Europe/Paris,,OIF, +OIF:SP:51:118,1,"Rue Michelet",48.993543,2.153775,0,0,OIF:SA:51:117,Europe/Paris,,OIF, +OIF:SP:51:119,1,"Les Naquettes",48.996037,2.151308,0,0,OIF:SA:51:119,Europe/Paris,,OIF, +OIF:SP:51:12,1,"Ikéa",48.987641,2.211733,0,0,OIF:SA:51:12,Europe/Paris,,OIF, +OIF:SP:51:120,1,"Les Naquettes",48.995956,2.151267,0,0,OIF:SA:51:119,Europe/Paris,,OIF, +OIF:SP:51:121,1,"Croix Macaire",48.998653,2.152104,0,0,OIF:SA:51:121,Europe/Paris,,OIF, +OIF:SP:51:122,1,"Croix Macaire",48.999201,2.15172,0,0,OIF:SA:51:121,Europe/Paris,,OIF, +OIF:SP:51:123,1,"Bol d'Air",49.004465,2.12889,0,0,OIF:SA:51:123,Europe/Paris,,OIF, +OIF:SP:51:124,1,"Bol d'Air",49.004868,2.127755,0,0,OIF:SA:51:123,Europe/Paris,,OIF, +OIF:SP:51:125,1,"Boulevard Émissaire",49.00749,2.12687,0,0,OIF:SA:51:125,Europe/Paris,,OIF, +OIF:SP:51:126,1,"Boulevard Émissaire",49.007033,2.127459,0,0,OIF:SA:51:125,Europe/Paris,,OIF, +OIF:SP:51:127,1,"Allée des Bois",49.011358,2.129204,0,0,OIF:SA:20:140,Europe/Paris,,OIF, +OIF:SP:51:128,1,"Allée des Bois",49.011233,2.129245,0,0,OIF:SA:20:140,Europe/Paris,,OIF, +OIF:SP:51:129,1,"L'Escapade",49.013853,2.127104,0,0,OIF:SA:20:142,Europe/Paris,,OIF, +OIF:SP:51:13,1,"Ikéa",48.987525,2.212334,0,0,OIF:SA:51:12,Europe/Paris,,OIF, +OIF:SP:51:130,1,"L'Escapade",49.013898,2.126967,0,0,OIF:SA:20:142,Europe/Paris,,OIF, +OIF:SP:51:131,1,"Buttes Blanches",49.015422,2.125157,0,0,OIF:SA:20:144,Europe/Paris,,OIF, +OIF:SP:51:132,1,"Buttes Blanches",49.015431,2.12513,0,0,OIF:SA:20:144,Europe/Paris,,OIF, +OIF:SP:51:133,1,"Les Chênes",48.999815,2.153807,0,0,OIF:SA:51:133,Europe/Paris,,OIF, +OIF:SP:51:134,1,"Les Chênes",48.999869,2.153848,0,0,OIF:SA:51:133,Europe/Paris,,OIF, +OIF:SP:51:135,1,"Rue de Pontoise",48.996944,2.162831,0,0,OIF:SA:51:135,Europe/Paris,,OIF, +OIF:SP:51:136,1,"Rue de Pontoise",48.997779,2.162555,0,0,OIF:SA:51:135,Europe/Paris,,OIF, +OIF:SP:51:137,1,"Rue Jean Leclaire",48.994339,2.163728,0,0,OIF:SA:51:137,Europe/Paris,,OIF, +OIF:SP:51:138,1,"Rue Jean Leclaire",48.994447,2.163836,0,0,OIF:SA:51:137,Europe/Paris,,OIF, +OIF:SP:51:139,1,"Gare d'Herblay",48.990912,2.161103,0,0,OIF:SA:8738188,Europe/Paris,,OIF, +OIF:SP:51:14,1,"La Source",48.986626,2.220638,0,0,OIF:SA:51:14,Europe/Paris,,OIF, +OIF:SP:51:140,1,"Gare d'Herblay",48.991038,2.161431,0,0,OIF:SA:8738188,Europe/Paris,,OIF, +OIF:SP:51:141,1,"Les Pierges",48.993196,2.150621,0,0,OIF:SA:51:141,Europe/Paris,,OIF, +OIF:SP:51:142,1,"Les Pierges",48.993249,2.149693,0,0,OIF:SA:51:141,Europe/Paris,,OIF, +OIF:SP:51:143,1,"Bournouviers",48.994009,2.141755,0,0,OIF:SA:51:143,Europe/Paris,,OIF, +OIF:SP:51:145,1,"Foch",48.991777,2.150777,0,0,OIF:SA:51:145,Europe/Paris,,OIF, +OIF:SP:51:146,1,"Foch",48.991111,2.150506,0,0,OIF:SA:51:145,Europe/Paris,,OIF, +OIF:SP:51:147,1,"Général Leclerc",48.988765,2.155867,0,0,OIF:SA:51:147,Europe/Paris,,OIF, +OIF:SP:51:148,1,"Général Leclerc",48.988452,2.15677,0,0,OIF:SA:51:147,Europe/Paris,,OIF, +OIF:SP:51:149,1,"Lycée / Collège",48.999753,2.14829,0,0,OIF:SA:51:149,Europe/Paris,,OIF, +OIF:SP:51:15,1,"La Source",48.9865,2.220679,0,0,OIF:SA:51:14,Europe/Paris,,OIF, +OIF:SP:51:150,1,"Lycée / Collège",49.000217,2.146075,0,0,OIF:SA:51:149,Europe/Paris,,OIF, +OIF:SP:51:151,1,"Chardonnerets",48.999266,2.159286,0,0,OIF:SA:51:151,Europe/Paris,,OIF, +OIF:SP:51:152,1,"Chardonnerets",48.999284,2.159381,0,0,OIF:SA:51:151,Europe/Paris,,OIF, +OIF:SP:51:153,1,"Jean Vilar",48.995592,2.154164,0,0,OIF:SA:51:153,Europe/Paris,,OIF, +OIF:SP:51:154,1,"Jean Vilar",48.995763,2.1543,0,0,OIF:SA:51:153,Europe/Paris,,OIF, +OIF:SP:51:155,1,"Alexandre Ribot",48.973892,2.252337,0,0,OIF:SA:51:155,Europe/Paris,,OIF, +OIF:SP:51:156,1,"Alexandre Ribot",48.973829,2.252637,0,0,OIF:SA:51:155,Europe/Paris,,OIF, +OIF:SP:51:157,1,"Gambetta",48.974941,2.24955,0,0,OIF:SA:51:157,Europe/Paris,,OIF, +OIF:SP:51:158,1,"Gambetta",48.975076,2.2491,0,0,OIF:SA:51:157,Europe/Paris,,OIF, +OIF:SP:51:159,1,"De Lattre",48.98063,2.237949,0,0,OIF:SA:51:159,Europe/Paris,,OIF, +OIF:SP:51:161,1,"Résidence du Moulin",48.968756,2.234778,0,0,OIF:SA:18:19641,Europe/Paris,,OIF, +OIF:SP:51:162,1,"Gare de Montigny Beauchamp",49.007801,2.198133,0,0,OIF:SA:8727608,Europe/Paris,,OIF, +OIF:SP:51:163,1,"Gare de Montigny Beauchamp",49.007693,2.197806,0,0,OIF:SA:8727608,Europe/Paris,,OIF, +OIF:SP:51:164,1,"Gare de Montigny Beauchamp",49.007549,2.198011,0,0,OIF:SA:8727608,Europe/Paris,,OIF, +OIF:SP:51:165,1,"Place du Marché",49.010242,2.195422,0,0,OIF:SA:51:165,Europe/Paris,,OIF, +OIF:SP:51:166,1,"Carrefour Delcroix",49.01227,2.192766,0,0,OIF:SA:51:166,Europe/Paris,,OIF, +OIF:SP:51:169,1,"Cité Cadoux",49.014216,2.182528,0,0,OIF:SA:51:169,Europe/Paris,,OIF, +OIF:SP:51:17,1,"Église",48.983363,2.229315,0,0,OIF:SA:51:17,Europe/Paris,,OIF, +OIF:SP:51:170,1,"Zone Industrielle",49.015693,2.178056,0,0,OIF:SA:51:170,Europe/Paris,,OIF, +OIF:SP:51:171,1,"Denis Papin",49.017957,2.178022,0,0,OIF:SA:51:171,Europe/Paris,,OIF, +OIF:SP:51:172,1,"Résidence du Stade",49.018726,2.181599,0,0,OIF:SA:51:172,Europe/Paris,,OIF, +OIF:SP:51:173,1,"Curnonsky",49.017313,2.187423,0,0,OIF:SA:51:173,Europe/Paris,,OIF, +OIF:SP:51:174,1,"Rond-Point de la Chasse",49.015782,2.191363,0,0,OIF:SA:51:174,Europe/Paris,,OIF, +OIF:SP:51:175,1,"Marronniers",49.018077,2.194239,0,0,OIF:SA:51:175,Europe/Paris,,OIF, +OIF:SP:51:176,1,"Barrachin",49.02154,2.189707,0,0,OIF:SA:51:176,Europe/Paris,,OIF, +OIF:SP:51:177,1,"Saint-Prix",49.02076,2.198658,0,0,OIF:SA:51:177,Europe/Paris,,OIF, +OIF:SP:51:178,1,"Nungesser et Coli",49.019701,2.199795,0,0,OIF:SA:51:178,Europe/Paris,,OIF, +OIF:SP:51:179,1,"Cité Jardin",49.016391,2.197058,0,0,OIF:SA:51:179,Europe/Paris,,OIF, +OIF:SP:51:18,1,"Clos Bertin",48.982637,2.231201,0,0,OIF:SA:51:18,Europe/Paris,,OIF, +OIF:SP:51:180,1,"Anatole France",49.013458,2.194703,0,0,OIF:SA:51:180,Europe/Paris,,OIF, +OIF:SP:51:181,1,"Résidence Jules César",49.009928,2.19545,0,0,OIF:SA:51:181,Europe/Paris,,OIF, +OIF:SP:51:182,1,"Gare de Taverny",49.025978,2.221519,0,0,OIF:SA:8727663,Europe/Paris,,OIF, +OIF:SP:51:183,1,"Gare de Taverny",49.025313,2.221166,0,0,OIF:SA:8727663,Europe/Paris,,OIF, +OIF:SP:51:184,1,"Pauline Kergomard",49.027223,2.217472,0,0,OIF:SA:51:184,Europe/Paris,,OIF, +OIF:SP:51:185,1,"Docteur Roux",49.024991,2.214389,0,0,OIF:SA:51:185,Europe/Paris,,OIF, +OIF:SP:51:186,1,"Portes de Taverny",49.015555,2.222977,0,0,OIF:SA:51:186,Europe/Paris,,OIF, +OIF:SP:51:187,1,"Les Coutures",49.021132,2.219344,0,0,OIF:SA:51:187,Europe/Paris,,OIF, +OIF:SP:51:188,1,"Les Coutures",49.021042,2.219126,0,0,OIF:SA:51:187,Europe/Paris,,OIF, +OIF:SP:51:189,1,"Pierre de Coubertin",49.019207,2.216985,0,0,OIF:SA:51:189,Europe/Paris,,OIF, +OIF:SP:51:19,1,"Maison Bleue",48.980555,2.234673,0,0,OIF:SA:51:19,Europe/Paris,,OIF, +OIF:SP:51:190,1,"Pierre de Coubertin",49.019243,2.216739,0,0,OIF:SA:51:189,Europe/Paris,,OIF, +OIF:SP:51:191,1,"Croix Rouge",49.018492,2.212218,0,0,OIF:SA:51:191,Europe/Paris,,OIF, +OIF:SP:51:192,1,"Croix Rouge",49.019293,2.213582,0,0,OIF:SA:51:191,Europe/Paris,,OIF, +OIF:SP:51:193,1,"Place de Verdun",49.016189,2.20945,0,0,OIF:SA:51:193,Europe/Paris,,OIF, +OIF:SP:51:194,1,"Place de Verdun",49.016602,2.20964,0,0,OIF:SA:51:193,Europe/Paris,,OIF, +OIF:SP:51:195,1,"Sainte-Honorine",49.013201,2.205728,0,0,OIF:SA:51:195,Europe/Paris,,OIF, +OIF:SP:51:196,1,"Sainte-Honorine",49.013228,2.205714,0,0,OIF:SA:51:195,Europe/Paris,,OIF, +OIF:SP:51:197,1,"Rue des Écoles",49.009916,2.208906,0,0,OIF:SA:51:197,Europe/Paris,,OIF, +OIF:SP:51:198,1,"Rue des Écoles",49.010231,2.209164,0,0,OIF:SA:51:197,Europe/Paris,,OIF, +OIF:SP:51:199,1,"Les Primevères",49.007532,2.206944,0,0,OIF:SA:51:199,Europe/Paris,,OIF, +OIF:SP:51:2,1,"Gare de Montigny - Beauchamp",49.006972,2.195909,0,0,OIF:SA:8727608,Europe/Paris,,OIF, +OIF:SP:51:20,1,"Maison Bleue",48.979864,2.235835,0,0,OIF:SA:51:19,Europe/Paris,,OIF, +OIF:SP:51:200,1,"Les Primevères",49.008027,2.207312,0,0,OIF:SA:51:199,Europe/Paris,,OIF, +OIF:SP:51:201,1,"Xavier Bichat",49.023282,2.221034,0,0,OIF:SA:51:201,Europe/Paris,,OIF, +OIF:SP:51:202,1,"Les Marronniers",48.980166,2.254607,0,0,OIF:SA:51:202,Europe/Paris,,OIF, +OIF:SP:51:203,1,"Les Marronniers",48.980148,2.25462,0,0,OIF:SA:51:202,Europe/Paris,,OIF, +OIF:SP:51:204,1,"La Tour",48.996261,2.255114,0,0,OIF:SA:51:204,Europe/Paris,,OIF, +OIF:SP:51:206,1,"Claude Debussy",48.99598,2.251741,0,0,OIF:SA:51:206,Europe/Paris,,OIF, +OIF:SP:51:208,1,"Les Espérances",48.991223,2.247488,0,0,OIF:SA:51:208,Europe/Paris,,OIF, +OIF:SP:51:209,1,"L'Orme Saint-Edme",48.989741,2.248037,0,0,OIF:SA:51:209,Europe/Paris,,OIF, +OIF:SP:51:21,1,"Collège Jean Moulin",48.977784,2.241737,0,0,OIF:SA:51:21,Europe/Paris,,OIF, +OIF:SP:51:210,1,"L'Orme Saint-Edme",48.989705,2.248187,0,0,OIF:SA:51:209,Europe/Paris,,OIF, +OIF:SP:51:211,1,"Président G. Pompidou",48.988223,2.24875,0,0,OIF:SA:51:211,Europe/Paris,,OIF, +OIF:SP:51:212,1,"Président G. Pompidou",48.988429,2.248654,0,0,OIF:SA:51:211,Europe/Paris,,OIF, +OIF:SP:51:213,1,"Les Carreaux",48.983961,2.2466,0,0,OIF:SA:51:213,Europe/Paris,,OIF, +OIF:SP:51:214,1,"Les Carreaux",48.983755,2.246491,0,0,OIF:SA:51:213,Europe/Paris,,OIF, +OIF:SP:51:215,1,"La Commanderie",48.981015,2.248653,0,0,OIF:SA:51:215,Europe/Paris,,OIF, +OIF:SP:51:216,1,"La Commanderie",48.98115,2.247942,0,0,OIF:SA:51:215,Europe/Paris,,OIF, +OIF:SP:51:217,1,"Lycée Van Gogh",48.982944,2.256118,0,0,OIF:SA:51:217,Europe/Paris,,OIF, +OIF:SP:51:218,1,"Lycée Van Gogh",48.982413,2.256009,0,0,OIF:SA:51:217,Europe/Paris,,OIF, +OIF:SP:51:219,1,"Gare de Cernay",48.984796,2.257398,0,0,OIF:SA:8727606,Europe/Paris,,OIF, +OIF:SP:51:22,1,"Collège Jean Moulin",48.977595,2.242105,0,0,OIF:SA:51:21,Europe/Paris,,OIF, +OIF:SP:51:220,1,"Gare de Cernay",48.984787,2.257535,0,0,OIF:SA:8727606,Europe/Paris,,OIF, +OIF:SP:51:222,1,"Gare de Cernay",48.985541,2.256469,0,0,OIF:SA:8727606,Europe/Paris,,OIF, +OIF:SP:51:223,1,"Clinique",48.981583,2.264476,0,0,OIF:SA:51:223,Europe/Paris,,OIF, +OIF:SP:51:224,1,"Clinique",48.98126,2.26449,0,0,OIF:SA:51:223,Europe/Paris,,OIF, +OIF:SP:51:225,1,"Gare d'Ermont-Eaubonne",48.980078,2.271768,0,0,OIF:SA:8727605,Europe/Paris,,OIF, +OIF:SP:51:226,1,"Gare d'Ermont-Eaubonne",48.980086,2.271563,0,0,OIF:SA:8727605,Europe/Paris,,OIF, +OIF:SP:51:227,1,"Le Foirail",48.988934,2.250373,0,0,OIF:SA:51:227,Europe/Paris,,OIF, +OIF:SP:51:228,1,"Square du 8 Mai 1945",48.989674,2.254837,0,0,OIF:SA:51:228,Europe/Paris,,OIF, +OIF:SP:51:229,1,"Mairie d'Ermont",48.991113,2.257621,0,0,OIF:SA:51:229,Europe/Paris,,OIF, +OIF:SP:51:23,1,"Collège Jean Moulin",48.978325,2.243551,0,0,OIF:SA:51:21,Europe/Paris,,OIF, +OIF:SP:51:230,1,"Mairie d'Ermont",48.991105,2.257703,0,0,OIF:SA:51:229,Europe/Paris,,OIF, +OIF:SP:51:231,1,"Cimetière",48.99424,2.256783,0,0,OIF:SA:8727659,Europe/Paris,,OIF, +OIF:SP:51:232,1,"Cimetière",48.994285,2.25681,0,0,OIF:SA:8727659,Europe/Paris,,OIF, +OIF:SP:51:233,1,"Saint-Exupéry",48.993795,2.249655,0,0,OIF:SA:51:233,Europe/Paris,,OIF, +OIF:SP:51:234,1,"Saint-Exupéry",48.994928,2.250623,0,0,OIF:SA:51:233,Europe/Paris,,OIF, +OIF:SP:51:235,1,"T. Chabrand / A. Briand",48.976141,2.197767,0,0,OIF:SA:51:235,Europe/Paris,,OIF, +OIF:SP:51:236,1,"LEP le Corbusier",48.978327,2.199277,0,0,OIF:SA:51:236,Europe/Paris,,OIF, +OIF:SP:51:239,1,"L. Gonse / Cdt Kieffer",48.977427,2.206733,0,0,OIF:SA:51:239,Europe/Paris,,OIF, +OIF:SP:51:24,1,"Collège Jean Moulin",48.978504,2.243701,0,0,OIF:SA:51:21,Europe/Paris,,OIF, +OIF:SP:51:240,1,"Jacques Daguerre",48.972698,2.204739,0,0,OIF:SA:51:240,Europe/Paris,,OIF, +OIF:SP:51:241,1,"Lamartine",48.970559,2.204608,0,0,OIF:SA:51:241,Europe/Paris,,OIF, +OIF:SP:51:242,1,"République",48.968171,2.206224,0,0,OIF:SA:51:242,Europe/Paris,,OIF, +OIF:SP:51:244,1,"Gare de Saint-Brice",48.995108,2.368015,0,0,OIF:SA:8727638,Europe/Paris,,OIF, +OIF:SP:51:245,1,"Le Village",49.003953,2.353023,0,0,OIF:SA:51:245,Europe/Paris,,OIF, +OIF:SP:51:246,1,"Le Village",49.003818,2.353009,0,0,OIF:SA:51:245,Europe/Paris,,OIF, +OIF:SP:51:247,1,"ZI les Perruches",49.006964,2.348748,0,0,OIF:SA:51:247,Europe/Paris,,OIF, +OIF:SP:51:248,1,"ZI les Perruches",49.006811,2.348858,0,0,OIF:SA:51:247,Europe/Paris,,OIF, +OIF:SP:51:249,1,"Mairie de Piscop",49.012509,2.342957,0,0,OIF:SA:51:249,Europe/Paris,,OIF, +OIF:SP:51:25,1,"Mairie de Sannois",48.971478,2.258347,0,0,OIF:SA:51:25,Europe/Paris,,OIF, +OIF:SP:51:250,1,"Les Marais",49.003656,2.355864,0,0,OIF:SA:51:250,Europe/Paris,,OIF, +OIF:SP:51:251,1,"Les Marais",49.003701,2.356069,0,0,OIF:SA:51:250,Europe/Paris,,OIF, +OIF:SP:51:252,1,"Pasteur",49.000592,2.357365,0,0,OIF:SA:51:252,Europe/Paris,,OIF, +OIF:SP:51:253,1,"Pasteur",49.000699,2.357324,0,0,OIF:SA:51:252,Europe/Paris,,OIF, +OIF:SP:51:254,1,"Pont de Beaudemont",48.999629,2.360629,0,0,OIF:SA:51:254,Europe/Paris,,OIF, +OIF:SP:51:255,1,"Pont de Beaudemont",48.999378,2.360547,0,0,OIF:SA:51:254,Europe/Paris,,OIF, +OIF:SP:51:256,1,"Mothe Hugo",49.000392,2.36556,0,0,OIF:SA:51:256,Europe/Paris,,OIF, +OIF:SP:51:257,1,"Mothe Hugo",49.0005,2.365478,0,0,OIF:SA:51:256,Europe/Paris,,OIF, +OIF:SP:51:258,1,"Plante aux Flamands",48.997633,2.367224,0,0,OIF:SA:51:258,Europe/Paris,,OIF, +OIF:SP:51:259,1,"Plante aux Flamands",48.997516,2.367388,0,0,OIF:SA:51:258,Europe/Paris,,OIF, +OIF:SP:51:26,1,"Mairie de Sannois",48.971927,2.256899,0,0,OIF:SA:51:25,Europe/Paris,,OIF, +OIF:SP:51:260,1,"Ambassadeurs",48.995518,2.171003,0,0,OIF:SA:51:260,Europe/Paris,,OIF, +OIF:SP:51:261,1,"Ambassadeurs",48.995571,2.170661,0,0,OIF:SA:51:260,Europe/Paris,,OIF, +OIF:SP:51:262,1,"Châtaigniers",48.997015,2.175109,0,0,OIF:SA:51:262,Europe/Paris,,OIF, +OIF:SP:51:263,1,"Châtaigniers",48.997267,2.175395,0,0,OIF:SA:51:262,Europe/Paris,,OIF, +OIF:SP:51:264,1,"Rue du 18 Juin",48.989594,2.257132,0,0,OIF:SA:51:264,Europe/Paris,,OIF, +OIF:SP:51:265,1,"Rue du 18 Juin",48.989559,2.257528,0,0,OIF:SA:51:264,Europe/Paris,,OIF, +OIF:SP:51:266,1,"Rue du Stand",48.996071,2.253216,0,0,OIF:SA:51:266,Europe/Paris,,OIF, +OIF:SP:51:267,1,"Gare de Saint-Leu la Foret",49.015563,2.241968,0,0,OIF:SA:8727660,Europe/Paris,,OIF, +OIF:SP:51:269,1,"Collège Landowska",49.011424,2.236074,0,0,OIF:SA:51:269,Europe/Paris,,OIF, +OIF:SP:51:27,1,"Gare de Sannois",48.969927,2.26284,0,0,OIF:SA:8727618,Europe/Paris,,OIF, +OIF:SP:51:270,1,"Les Diablots",49.008051,2.242227,0,0,OIF:SA:51:270,Europe/Paris,,OIF, +OIF:SP:51:271,1,"Les Diablots",49.008042,2.242063,0,0,OIF:SA:51:270,Europe/Paris,,OIF, +OIF:SP:51:272,1,"Verdun",49.003944,2.241907,0,0,OIF:SA:51:272,Europe/Paris,,OIF, +OIF:SP:51:273,1,"Verdun",49.003827,2.241893,0,0,OIF:SA:51:272,Europe/Paris,,OIF, +OIF:SP:51:274,1,"Clinique",48.999745,2.239811,0,0,OIF:SA:51:274,Europe/Paris,,OIF, +OIF:SP:51:275,1,"Clinique",48.999449,2.239798,0,0,OIF:SA:51:274,Europe/Paris,,OIF, +OIF:SP:51:276,1,"De Gaulle",49.000317,2.235412,0,0,OIF:SA:51:276,Europe/Paris,,OIF, +OIF:SP:51:277,1,"De Gaulle",49.000901,2.235889,0,0,OIF:SA:51:276,Europe/Paris,,OIF, +OIF:SP:51:28,1,"Gare de Sannois",48.970287,2.263659,0,0,OIF:SA:8727618,Europe/Paris,,OIF, +OIF:SP:51:280,1,"Les Tilleuls",49.015533,2.238047,0,0,OIF:SA:51:280,Europe/Paris,,OIF, +OIF:SP:51:281,1,"Zone Industrielle",49.001897,2.176569,0,0,OIF:SA:51:281,Europe/Paris,,OIF, +OIF:SP:51:282,1,"Zone Industrielle",49.00152,2.177061,0,0,OIF:SA:51:281,Europe/Paris,,OIF, +OIF:SP:51:283,1,"Avenue de la Libération",49.004494,2.190793,0,0,OIF:SA:51:283,Europe/Paris,,OIF, +OIF:SP:51:284,1,"Avenue de la Libération",49.003646,2.188378,0,0,OIF:SA:51:283,Europe/Paris,,OIF, +OIF:SP:51:285,1,"Gare de Montigny - Beauchamp",49.007413,2.196481,0,0,OIF:SA:8727608,Europe/Paris,,OIF, +OIF:SP:51:286,1,"Salvador Allende",49.011899,2.214652,0,0,OIF:SA:51:286,Europe/Paris,,OIF, +OIF:SP:51:287,1,"Salvador Allende",49.010982,2.214067,0,0,OIF:SA:51:286,Europe/Paris,,OIF, +OIF:SP:51:288,1,"Les Sarments",49.021695,2.224918,0,0,OIF:SA:51:288,Europe/Paris,,OIF, +OIF:SP:51:289,1,"Les Sarments",49.020975,2.224195,0,0,OIF:SA:51:288,Europe/Paris,,OIF, +OIF:SP:51:29,1,"Gare de Sannois",48.969379,2.263059,0,0,OIF:SA:8727618,Europe/Paris,,OIF, +OIF:SP:51:290,1,"Les Gaudins",49.03115,2.217422,0,0,OIF:SA:51:290,Europe/Paris,,OIF, +OIF:SP:51:291,1,"Les Gaudins",49.029955,2.217507,0,0,OIF:SA:51:290,Europe/Paris,,OIF, +OIF:SP:51:292,1,"Gare de Bessancourt",49.036169,2.212777,0,0,OIF:SA:8727664,Europe/Paris,,OIF, +OIF:SP:51:293,1,"Gare de Bessancourt",49.036384,2.212708,0,0,OIF:SA:8727664,Europe/Paris,,OIF, +OIF:SP:51:294,1,"Gare de Bessancourt",49.035995,2.209975,0,0,OIF:SA:8727664,Europe/Paris,,OIF, +OIF:SP:51:295,1,"Brosses et Malais",49.043126,2.2065,0,0,OIF:SA:51:295,Europe/Paris,,OIF, +OIF:SP:51:296,1,"Brosses et Malais",49.043548,2.206034,0,0,OIF:SA:51:295,Europe/Paris,,OIF, +OIF:SP:51:297,1,"Gare de Frépillon",49.047389,2.201759,0,0,OIF:SA:8727665,Europe/Paris,,OIF, +OIF:SP:51:298,1,"Gare de Frépillon",49.047497,2.201718,0,0,OIF:SA:8727665,Europe/Paris,,OIF, +OIF:SP:51:299,1,"Sognolles",49.051545,2.198029,0,0,OIF:SA:51:299,Europe/Paris,,OIF, +OIF:SP:51:30,1,"Mazagran",48.962798,2.260189,0,0,OIF:SA:51:30,Europe/Paris,,OIF, +OIF:SP:51:300,1,"Sognolles",49.05142,2.198385,0,0,OIF:SA:51:299,Europe/Paris,,OIF, +OIF:SP:51:301,1,"Gros Chevaux",49.054026,2.140777,0,0,OIF:SA:40:427,Europe/Paris,,OIF, +OIF:SP:51:302,1,"Gros Chevaux",49.053829,2.140764,0,0,OIF:SA:40:427,Europe/Paris,,OIF, +OIF:SP:51:303,1,"Vert Galant",49.051785,2.133348,0,0,OIF:SA:40:412,Europe/Paris,,OIF, +OIF:SP:51:304,1,"Vert Galant",49.051334,2.131928,0,0,OIF:SA:40:412,Europe/Paris,,OIF, +OIF:SP:51:307,1,"Lycée Jean Monnet",48.991339,2.215629,0,0,OIF:SA:51:307,Europe/Paris,,OIF, +OIF:SP:51:308,1,"Lycée Jean Monnet",48.99124,2.215739,0,0,OIF:SA:51:307,Europe/Paris,,OIF, +OIF:SP:51:309,1,"Quai des Marques",48.988607,2.207361,0,0,OIF:SA:51:309,Europe/Paris,,OIF, +OIF:SP:51:31,1,"Mazagran",48.962565,2.259835,0,0,OIF:SA:51:30,Europe/Paris,,OIF, +OIF:SP:51:310,1,"Mairie de Chauvry",49.054222,2.269378,0,0,OIF:SA:51:310,Europe/Paris,,OIF, +OIF:SP:51:311,1,"Mairie de Béthemont-la-Forêt",49.054581,2.254092,0,0,OIF:SA:51:311,Europe/Paris,,OIF, +OIF:SP:51:312,1,"Mairie de Béthemont-la-Forêt",49.054518,2.254174,0,0,OIF:SA:51:311,Europe/Paris,,OIF, +OIF:SP:51:313,1,"Tuyolle",49.023283,2.232785,0,0,OIF:SA:8727662,Europe/Paris,,OIF, +OIF:SP:51:315,1,"Lycée Louis Jouvet",49.019567,2.208841,0,0,OIF:SA:51:315,Europe/Paris,,OIF, +OIF:SP:51:316,1,"Lycée Louis Jouvet",49.019486,2.209019,0,0,OIF:SA:51:315,Europe/Paris,,OIF, +OIF:SP:51:317,1,"Les Beauchamps",49.020286,2.201187,0,0,OIF:SA:51:317,Europe/Paris,,OIF, +OIF:SP:51:318,1,"Les Beauchamps",49.020143,2.201898,0,0,OIF:SA:51:317,Europe/Paris,,OIF, +OIF:SP:51:319,1,"Carrefour des Chênes",49.023291,2.189032,0,0,OIF:SA:51:319,Europe/Paris,,OIF, +OIF:SP:51:32,1,"Rue du Nord",48.956802,2.256322,0,0,OIF:SA:18:145,Europe/Paris,,OIF, +OIF:SP:51:320,1,"Carrefour des Chênes",49.023174,2.188992,0,0,OIF:SA:51:319,Europe/Paris,,OIF, +OIF:SP:51:321,1,"Condorcet",49.028559,2.190438,0,0,OIF:SA:51:321,Europe/Paris,,OIF, +OIF:SP:51:322,1,"Condorcet",49.028541,2.190247,0,0,OIF:SA:51:321,Europe/Paris,,OIF, +OIF:SP:51:323,1,"Le Chêne Bocquet",49.021366,2.194626,0,0,OIF:SA:51:323,Europe/Paris,,OIF, +OIF:SP:51:324,1,"Le Chêne Bocquet",49.021384,2.194489,0,0,OIF:SA:51:323,Europe/Paris,,OIF, +OIF:SP:51:325,1,"Champs Guillaume",48.963406,2.196628,0,0,OIF:SA:51:325,Europe/Paris,,OIF, +OIF:SP:51:326,1,"Champs Guillaume",48.963379,2.196505,0,0,OIF:SA:51:325,Europe/Paris,,OIF, +OIF:SP:51:327,1,"Jean Bart",48.961403,2.197807,0,0,OIF:SA:51:327,Europe/Paris,,OIF, +OIF:SP:51:328,1,"Jean Bart",48.961349,2.197725,0,0,OIF:SA:51:327,Europe/Paris,,OIF, +OIF:SP:51:329,1,"Square Rodin",48.959713,2.197607,0,0,OIF:SA:51:329,Europe/Paris,,OIF, +OIF:SP:51:33,1,"Rue du Nord",48.956532,2.256009,0,0,OIF:SA:18:145,Europe/Paris,,OIF, +OIF:SP:51:330,1,"Square Rodin",48.959632,2.197498,0,0,OIF:SA:51:329,Europe/Paris,,OIF, +OIF:SP:51:335,1,"Alsace",48.965223,2.190699,0,0,OIF:SA:51:335,Europe/Paris,,OIF, +OIF:SP:51:337,1,"Côte Saint-Rémy / Champs Druets",48.971488,2.184389,0,0,OIF:SA:51:337,Europe/Paris,,OIF, +OIF:SP:51:338,1,"Professeur Calmette",48.969133,2.184123,0,0,OIF:SA:51:338,Europe/Paris,,OIF, +OIF:SP:51:339,1,"Maupassant / Charcot",48.965539,2.185062,0,0,OIF:SA:51:339,Europe/Paris,,OIF, +OIF:SP:51:34,1,"Boulevard Jean Allemane",48.950356,2.253644,0,0,OIF:SA:18:16,Europe/Paris,,OIF, +OIF:SP:51:341,1,"Edouard Imbs",48.963894,2.191522,0,0,OIF:SA:18:19604,Europe/Paris,,OIF, +OIF:SP:51:342,1,"Edouard Imbs",48.96384,2.191713,0,0,OIF:SA:18:19604,Europe/Paris,,OIF, +OIF:SP:51:343,1,"Fauvettes",48.961781,2.190245,0,0,OIF:SA:51:343,Europe/Paris,,OIF, +OIF:SP:51:344,1,"Fauvettes",48.961798,2.190136,0,0,OIF:SA:51:343,Europe/Paris,,OIF, +OIF:SP:51:345,1,"Cimetière",48.954189,2.184836,0,0,OIF:SA:51:345,Europe/Paris,,OIF, +OIF:SP:51:346,1,"Cimetière",48.954072,2.184699,0,0,OIF:SA:51:345,Europe/Paris,,OIF, +OIF:SP:51:347,1,"Trembleaux",48.953163,2.183938,0,0,OIF:SA:18:19556,Europe/Paris,,OIF, +OIF:SP:51:348,1,"Trembleaux",48.952075,2.182986,0,0,OIF:SA:18:19556,Europe/Paris,,OIF, +OIF:SP:51:349,1,"La Garenne",48.949214,2.180852,0,0,OIF:SA:51:349,Europe/Paris,,OIF, +OIF:SP:51:35,1,"Boulevard Jean Allemane",48.950437,2.253726,0,0,OIF:SA:18:16,Europe/Paris,,OIF, +OIF:SP:51:350,1,"La Garenne",48.949295,2.18092,0,0,OIF:SA:51:349,Europe/Paris,,OIF, +OIF:SP:51:351,1,"Vendanges",48.946377,2.176208,0,0,OIF:SA:51:351,Europe/Paris,,OIF, +OIF:SP:51:352,1,"Vendanges",48.946449,2.176372,0,0,OIF:SA:51:351,Europe/Paris,,OIF, +OIF:SP:51:353,1,"Mont Olivet",48.946723,2.172851,0,0,OIF:SA:18:719,Europe/Paris,,OIF, +OIF:SP:51:354,1,"Mont Olivet",48.946606,2.172892,0,0,OIF:SA:18:719,Europe/Paris,,OIF, +OIF:SP:51:355,1,"Martial Dechard",48.947332,2.171362,0,0,OIF:SA:18:677,Europe/Paris,,OIF, +OIF:SP:51:356,1,"Martial Dechard",48.947798,2.170692,0,0,OIF:SA:18:677,Europe/Paris,,OIF, +OIF:SP:51:357,1,"Guy de Maupassant",48.948783,2.167769,0,0,OIF:SA:18:712,Europe/Paris,,OIF, +OIF:SP:51:358,1,"Guy de Maupassant",48.948747,2.167523,0,0,OIF:SA:18:712,Europe/Paris,,OIF, +OIF:SP:51:359,1,"Bordin",48.947034,2.16394,0,0,OIF:SA:18:651,Europe/Paris,,OIF, +OIF:SP:51:36,1,"Gare d'Argenteuil",48.94698,2.257061,0,0,OIF:SA:8738184,Europe/Paris,,OIF, +OIF:SP:51:360,1,"Bordin",48.947313,2.164458,0,0,OIF:SA:18:651,Europe/Paris,,OIF, +OIF:SP:51:361,1,"MJC",48.944691,2.159814,0,0,OIF:SA:51:361,Europe/Paris,,OIF, +OIF:SP:51:362,1,"MJC",48.94443,2.159501,0,0,OIF:SA:51:361,Europe/Paris,,OIF, +OIF:SP:51:363,1,"Hôtel de Ville",48.942107,2.156194,0,0,OIF:SA:18:762,Europe/Paris,,OIF, +OIF:SP:51:364,1,"Hôtel de Ville",48.942422,2.156534,0,0,OIF:SA:18:762,Europe/Paris,,OIF, +OIF:SP:51:365,1,"Gare de Sartrouville",48.937975,2.157709,0,0,OIF:SA:8738641,Europe/Paris,,OIF, +OIF:SP:51:366,1,"Préfecture Gare",49.036111,2.080571,0,0,OIF:SA:8738190,Europe/Paris,,OIF, +OIF:SP:51:368,1,"Porte Ouest",49.021925,2.144465,0,0,OIF:SA:51:368,Europe/Paris,,OIF, +OIF:SP:51:369,1,"Porte Ouest",49.022059,2.144013,0,0,OIF:SA:51:368,Europe/Paris,,OIF, +OIF:SP:51:37,1,"Piscine",49.009217,2.239315,0,0,OIF:SA:51:37,Europe/Paris,,OIF, +OIF:SP:51:370,1,"Gare de Pierrelaye",49.01969,2.152152,0,0,OIF:SA:8727609,Europe/Paris,,OIF, +OIF:SP:51:371,1,"Gare de Pierrelaye",49.018849,2.154136,0,0,OIF:SA:8727609,Europe/Paris,,OIF, +OIF:SP:51:372,1,"Patte d'Oie",49.002941,2.177836,0,0,OIF:SA:51:372,Europe/Paris,,OIF, +OIF:SP:51:373,1,"Patte d'Oie",49.00313,2.177821,0,0,OIF:SA:51:372,Europe/Paris,,OIF, +OIF:SP:51:374,1,"Cassin",48.99836,2.186727,0,0,OIF:SA:51:374,Europe/Paris,,OIF, +OIF:SP:51:375,1,"Cassin",48.998208,2.186646,0,0,OIF:SA:51:374,Europe/Paris,,OIF, +OIF:SP:51:376,1,"Montédour",48.993184,2.218534,0,0,OIF:SA:51:376,Europe/Paris,,OIF, +OIF:SP:51:377,1,"Montédour",48.993085,2.218821,0,0,OIF:SA:51:376,Europe/Paris,,OIF, +OIF:SP:51:378,1,"Garancière",48.991133,2.226049,0,0,OIF:SA:51:378,Europe/Paris,,OIF, +OIF:SP:51:379,1,"Garancière",48.990945,2.226404,0,0,OIF:SA:51:378,Europe/Paris,,OIF, +OIF:SP:51:38,1,"Piscine",49.009243,2.239233,0,0,OIF:SA:51:37,Europe/Paris,,OIF, +OIF:SP:51:380,1,"Bel Air",48.98681,2.235097,0,0,OIF:SA:51:380,Europe/Paris,,OIF, +OIF:SP:51:381,1,"Bel Air",48.986577,2.23563,0,0,OIF:SA:51:380,Europe/Paris,,OIF, +OIF:SP:51:382,1,"Marcel Pagnol",48.980483,2.245322,0,0,OIF:SA:51:382,Europe/Paris,,OIF, +OIF:SP:51:383,1,"Marcel Pagnol",48.980662,2.24539,0,0,OIF:SA:51:382,Europe/Paris,,OIF, +OIF:SP:51:384,1,"Conservatoire de Musique",49.017599,2.226539,0,0,OIF:SA:51:384,Europe/Paris,,OIF, +OIF:SP:51:385,1,"Conservatoire de Musique",49.017733,2.226579,0,0,OIF:SA:51:384,Europe/Paris,,OIF, +OIF:SP:51:386,1,"Les Aubines",48.96858,2.240129,0,0,OIF:SA:51:386,Europe/Paris,,OIF, +OIF:SP:51:387,1,"Les Aubines",48.968562,2.240034,0,0,OIF:SA:51:386,Europe/Paris,,OIF, +OIF:SP:51:388,1,"Touzelin",48.971213,2.251208,0,0,OIF:SA:51:388,Europe/Paris,,OIF, +OIF:SP:51:389,1,"Touzelin",48.971186,2.251222,0,0,OIF:SA:51:388,Europe/Paris,,OIF, +OIF:SP:51:39,1,"Puits-Mi-Ville",48.968467,2.2564,0,0,OIF:SA:51:39,Europe/Paris,,OIF, +OIF:SP:51:390,1,"Pozzi",48.967871,2.253452,0,0,OIF:SA:51:390,Europe/Paris,,OIF, +OIF:SP:51:391,1,"Pozzi",48.967871,2.253452,0,0,OIF:SA:51:390,Europe/Paris,,OIF, +OIF:SP:51:392,1,"Stade Delaune",48.975557,2.256061,0,0,OIF:SA:51:392,Europe/Paris,,OIF, +OIF:SP:51:393,1,"Stade Delaune",48.975925,2.25617,0,0,OIF:SA:51:392,Europe/Paris,,OIF, +OIF:SP:51:394,1,"Les Cancelles",49.01328,2.230769,0,0,OIF:SA:51:394,Europe/Paris,,OIF, +OIF:SP:51:395,1,"Les Cancelles",49.013073,2.230893,0,0,OIF:SA:51:394,Europe/Paris,,OIF, +OIF:SP:51:396,1,"Avenue Janine",49.011874,2.131429,0,0,OIF:SA:51:396,Europe/Paris,,OIF, +OIF:SP:51:397,1,"Avenue Janine",49.011127,2.130216,0,0,OIF:SA:51:396,Europe/Paris,,OIF, +OIF:SP:51:398,1,"Les Courlains",49.015262,2.136552,0,0,OIF:SA:51:398,Europe/Paris,,OIF, +OIF:SP:51:399,1,"Les Courlains",49.015181,2.136566,0,0,OIF:SA:51:398,Europe/Paris,,OIF, +OIF:SP:51:4,1,"Gare de Montigny - Beauchamp",49.007216,2.197793,0,0,OIF:SA:8727608,Europe/Paris,,OIF, +OIF:SP:51:40,1,"Puits-Mi-Ville",48.968727,2.256317,0,0,OIF:SA:51:39,Europe/Paris,,OIF, +OIF:SP:51:400,1,"Route de Conflans",49.021176,2.142582,0,0,OIF:SA:51:400,Europe/Paris,,OIF, +OIF:SP:51:401,1,"Route de Conflans",49.021176,2.142568,0,0,OIF:SA:51:400,Europe/Paris,,OIF, +OIF:SP:51:402,1,"Val d'Or",48.973812,2.188832,0,0,OIF:SA:18:19616,Europe/Paris,,OIF, +OIF:SP:51:403,1,"Val d'Or",48.973758,2.188873,0,0,OIF:SA:18:19616,Europe/Paris,,OIF, +OIF:SP:51:404,1,"Pontoise / Gare de la Frette Montigny",48.980292,2.182725,0,0,OIF:SA:8738187,Europe/Paris,,OIF, +OIF:SP:51:405,1,"Pontoise / Gare de la Frette Montigny",48.980158,2.182848,0,0,OIF:SA:8738187,Europe/Paris,,OIF, +OIF:SP:51:406,1,"Les Cordes",48.98385,2.181758,0,0,OIF:SA:51:406,Europe/Paris,,OIF, +OIF:SP:51:407,1,"Les Cordes",48.983634,2.181841,0,0,OIF:SA:51:406,Europe/Paris,,OIF, +OIF:SP:51:408,1,"Centre Commercial",49.071906,2.197031,0,0,OIF:SA:51:408,Europe/Paris,,OIF, +OIF:SP:51:409,1,"Centre Commercial",49.071861,2.196908,0,0,OIF:SA:51:408,Europe/Paris,,OIF, +OIF:SP:51:41,1,"Piretins / Hôtel de Ville",48.971513,2.256054,0,0,OIF:SA:51:41,Europe/Paris,,OIF, +OIF:SP:51:410,1,"La Poste",49.075749,2.202327,0,0,OIF:SA:51:410,Europe/Paris,,OIF, +OIF:SP:51:411,1,"La Poste",49.075848,2.202327,0,0,OIF:SA:51:410,Europe/Paris,,OIF, +OIF:SP:51:412,1,"Faisanderie",49.075075,2.210098,0,0,OIF:SA:51:412,Europe/Paris,,OIF, +OIF:SP:51:413,1,"Faisanderie",49.075201,2.210002,0,0,OIF:SA:51:412,Europe/Paris,,OIF, +OIF:SP:51:414,1,"Massenet",49.072529,2.215835,0,0,OIF:SA:51:414,Europe/Paris,,OIF, +OIF:SP:51:415,1,"Massenet",49.072852,2.215301,0,0,OIF:SA:51:414,Europe/Paris,,OIF, +OIF:SP:51:416,1,"Collège Cécile Sorel",49.070906,2.219135,0,0,OIF:SA:51:416,Europe/Paris,,OIF, +OIF:SP:51:417,1,"Collège Cécile Sorel",49.070924,2.219272,0,0,OIF:SA:51:416,Europe/Paris,,OIF, +OIF:SP:51:418,1,"Bord Haut",49.067572,2.228634,0,0,OIF:SA:51:418,Europe/Paris,,OIF, +OIF:SP:51:419,1,"Bord Haut",49.067464,2.228429,0,0,OIF:SA:51:418,Europe/Paris,,OIF, +OIF:SP:51:42,1,"Piretins / Hôtel de Ville",48.971441,2.25589,0,0,OIF:SA:51:41,Europe/Paris,,OIF, +OIF:SP:51:420,1,"La Charbonnière",49.067818,2.232435,0,0,OIF:SA:51:420,Europe/Paris,,OIF, +OIF:SP:51:421,1,"La Charbonnière",49.067728,2.232326,0,0,OIF:SA:51:420,Europe/Paris,,OIF, +OIF:SP:51:422,1,"Mairie de Villiers-Adam",49.0649,2.235039,0,0,OIF:SA:51:422,Europe/Paris,,OIF, +OIF:SP:51:423,1,"Mairie de Villiers-Adam",49.064118,2.234767,0,0,OIF:SA:51:422,Europe/Paris,,OIF, +OIF:SP:51:424,1,"Honoré de Balzac",49.061648,2.23644,0,0,OIF:SA:51:424,Europe/Paris,,OIF, +OIF:SP:51:426,1,"Honoré de Balzac",49.061136,2.236209,0,0,OIF:SA:51:424,Europe/Paris,,OIF, +OIF:SP:51:427,1,"Honoré de Balzac",49.0611,2.2361,0,0,OIF:SA:51:424,Europe/Paris,,OIF, +OIF:SP:51:428,1,"Château d'Eau",49.055339,2.136068,0,0,OIF:SA:51:428,Europe/Paris,,OIF, +OIF:SP:51:429,1,"Château d'Eau",49.055191,2.133389,0,0,OIF:SA:51:428,Europe/Paris,,OIF, +OIF:SP:51:43,1,"Jules César",49.005772,2.208055,0,0,OIF:SA:51:43,Europe/Paris,,OIF, +OIF:SP:51:430,1,"Haute Borne",49.045602,2.155094,0,0,OIF:SA:51:430,Europe/Paris,,OIF, +OIF:SP:51:432,1,"Résidence de Vaux",49.057829,2.15903,0,0,OIF:SA:51:432,Europe/Paris,,OIF, +OIF:SP:51:433,1,"Résidence de Vaux",49.058314,2.158673,0,0,OIF:SA:51:432,Europe/Paris,,OIF, +OIF:SP:51:434,1,"La Bonneville",49.058842,2.163648,0,0,OIF:SA:40:382,Europe/Paris,,OIF, +OIF:SP:51:435,1,"La Bonneville",49.058905,2.163374,0,0,OIF:SA:40:382,Europe/Paris,,OIF, +OIF:SP:51:436,1,"Les Roches",49.059683,2.167009,0,0,OIF:SA:40:383,Europe/Paris,,OIF, +OIF:SP:51:437,1,"Les Roches",49.059745,2.166858,0,0,OIF:SA:40:383,Europe/Paris,,OIF, +OIF:SP:51:438,1,"Molière",49.061725,2.175289,0,0,OIF:SA:40:384,Europe/Paris,,OIF, +OIF:SP:51:439,1,"Molière",49.06167,2.174838,0,0,OIF:SA:40:384,Europe/Paris,,OIF, +OIF:SP:51:44,1,"Jules César",49.005656,2.208424,0,0,OIF:SA:51:43,Europe/Paris,,OIF, +OIF:SP:51:440,1,"Thérèse Léthias",49.063337,2.184569,0,0,OIF:SA:51:440,Europe/Paris,,OIF, +OIF:SP:51:441,1,"Thérèse Léthias",49.063408,2.184528,0,0,OIF:SA:51:440,Europe/Paris,,OIF, +OIF:SP:51:442,1,"Marcel Perrin",49.061841,2.18832,0,0,OIF:SA:51:442,Europe/Paris,,OIF, +OIF:SP:51:443,1,"Marcel Perrin",49.061913,2.188402,0,0,OIF:SA:51:442,Europe/Paris,,OIF, +OIF:SP:51:444,1,"Camille Plaquet",49.058337,2.189178,0,0,OIF:SA:40:387,Europe/Paris,,OIF, +OIF:SP:51:445,1,"Camille Plaquet",49.05875,2.188849,0,0,OIF:SA:40:387,Europe/Paris,,OIF, +OIF:SP:51:446,1,"Rue du Bac",49.068022,2.194689,0,0,OIF:SA:51:446,Europe/Paris,,OIF, +OIF:SP:51:447,1,"Rue du Bac",49.068102,2.194374,0,0,OIF:SA:51:446,Europe/Paris,,OIF, +OIF:SP:51:448,1,"Lycée Edmond Rostand",49.038907,2.117297,0,0,OIF:SA:40:419,Europe/Paris,,OIF, +OIF:SP:51:449,1,"Hôtel des Impôts",49.006132,2.2485,0,0,OIF:SA:51:449,Europe/Paris,,OIF, +OIF:SP:51:45,1,"Jules César",49.004605,2.209178,0,0,OIF:SA:51:43,Europe/Paris,,OIF, +OIF:SP:51:450,1,"Mlc",49.008235,2.247978,0,0,OIF:SA:51:450,Europe/Paris,,OIF, +OIF:SP:51:451,1,"Croix du Jubilé",49.012775,2.250934,0,0,OIF:SA:51:451,Europe/Paris,,OIF, +OIF:SP:51:452,1,"Croix du Jubilé",49.012865,2.250757,0,0,OIF:SA:51:451,Europe/Paris,,OIF, +OIF:SP:51:453,1,"Côte Rôtie",48.996929,2.225135,0,0,OIF:SA:51:453,Europe/Paris,,OIF, +OIF:SP:51:454,1,"Pont Buissonnier",48.998883,2.219845,0,0,OIF:SA:51:454,Europe/Paris,,OIF, +OIF:SP:51:455,1,"Collège Marcel Pagnol",49.034667,2.117985,0,0,OIF:SA:51:455,Europe/Paris,,OIF, +OIF:SP:51:456,1,"Square de l'Europe",48.992954,2.222331,0,0,OIF:SA:51:456,Europe/Paris,,OIF, +OIF:SP:51:457,1,"La Tuile",48.985935,2.181738,0,0,OIF:SA:51:457,Europe/Paris,,OIF, +OIF:SP:51:458,1,"La Tuile",48.986986,2.181926,0,0,OIF:SA:51:457,Europe/Paris,,OIF, +OIF:SP:51:459,1,"Gare de Mériel",49.077064,2.204704,0,0,OIF:SA:8727667,Europe/Paris,,OIF, +OIF:SP:51:46,1,"Jules César",49.004767,2.209451,0,0,OIF:SA:51:43,Europe/Paris,,OIF, +OIF:SP:51:460,1,"Mairie de Mériel",49.078844,2.205041,0,0,OIF:SA:51:460,Europe/Paris,,OIF, +OIF:SP:51:461,1,"Pasteur",49.026067,1.98293,0,0,OIF:SA:40:73,Europe/Paris,,OIF, +OIF:SP:51:462,1,"Les Gros Saules",49.027914,1.987714,0,0,OIF:SA:40:72,Europe/Paris,,OIF, +OIF:SP:51:464,1,"Square du 19 Mars 1962",49.027804,1.984066,0,0,OIF:SA:40:113,Europe/Paris,,OIF, +OIF:SP:51:465,1,"Grande Pièce",49.026927,1.979016,0,0,OIF:SA:40:77,Europe/Paris,,OIF, +OIF:SP:51:466,1,"Rangée",49.027933,1.976125,0,0,OIF:SA:40:76,Europe/Paris,,OIF, +OIF:SP:51:467,1,"Haut Rucourt",49.02667,1.974344,0,0,OIF:SA:51:467,Europe/Paris,,OIF, +OIF:SP:51:468,1,"Bas Rucourt",49.025015,1.976979,0,0,OIF:SA:51:468,Europe/Paris,,OIF, +OIF:SP:51:469,1,"Route de Vaux",49.01341,1.952619,0,0,OIF:SA:51:469,Europe/Paris,,OIF, +OIF:SP:51:47,1,"Stade",49.000131,2.218887,0,0,OIF:SA:51:47,Europe/Paris,,OIF, +OIF:SP:51:470,1,"Route de Vaux",49.013437,1.952756,0,0,OIF:SA:51:469,Europe/Paris,,OIF, +OIF:SP:51:471,1,"Cimetière",49.010824,1.958882,0,0,OIF:SA:21:727,Europe/Paris,,OIF, +OIF:SP:51:472,1,"Cimetière",49.010519,1.958925,0,0,OIF:SA:21:727,Europe/Paris,,OIF, +OIF:SP:51:473,1,"Gare de Vaux sur Seine",49.006741,1.96346,0,0,OIF:SA:8738181,Europe/Paris,,OIF, +OIF:SP:51:474,1,"Le Lion Vert",48.99695,1.982679,0,0,OIF:SA:21:731,Europe/Paris,,OIF, +OIF:SP:51:475,1,"Le Lion Vert",48.997682,1.98113,0,0,OIF:SA:21:731,Europe/Paris,,OIF, +OIF:SP:51:476,1,"La Hayette",49.005787,2.036519,0,0,OIF:SA:40:294,Europe/Paris,,OIF, +OIF:SP:51:477,1,"Souhaits",49.005967,2.040233,0,0,OIF:SA:40:293,Europe/Paris,,OIF, +OIF:SP:51:478,1,"Les Bruzacques",49.006261,2.046201,0,0,OIF:SA:40:292,Europe/Paris,,OIF, +OIF:SP:51:479,1,"Vignes",49.00779,2.050577,0,0,OIF:SA:51:479,Europe/Paris,,OIF, +OIF:SP:51:48,1,"Stade",48.99979,2.219051,0,0,OIF:SA:51:47,Europe/Paris,,OIF, +OIF:SP:51:480,1,"Boilé",49.010871,2.050218,0,0,OIF:SA:51:480,Europe/Paris,,OIF, +OIF:SP:51:481,1,"Les Jouannes",49.010879,2.045792,0,0,OIF:SA:23:236,Europe/Paris,,OIF, +OIF:SP:51:482,1,"Les Éguérets",49.012005,2.043532,0,0,OIF:SA:40:284,Europe/Paris,,OIF, +OIF:SP:51:483,1,"Cornouillers",49.013949,2.041075,0,0,OIF:SA:40:285,Europe/Paris,,OIF, +OIF:SP:51:484,1,"Le Temps Perdu",49.011239,2.031856,0,0,OIF:SA:40:286,Europe/Paris,,OIF, +OIF:SP:51:486,1,"Le Noyer",49.010717,2.03134,0,0,OIF:SA:23:232,Europe/Paris,,OIF, +OIF:SP:51:487,1,"La Croix Lieu",49.030013,2.02181,0,0,OIF:SA:23:622,Europe/Paris,,OIF, +OIF:SP:51:488,1,"La Croix Lieu",49.03006,2.022671,0,0,OIF:SA:23:622,Europe/Paris,,OIF, +OIF:SP:51:489,1,"Montrouge",49.023708,2.000259,0,0,OIF:SA:40:69,Europe/Paris,,OIF, +OIF:SP:51:490,1,"Montrouge",49.023789,2.000176,0,0,OIF:SA:40:69,Europe/Paris,,OIF, +OIF:SP:51:491,1,"Pont de Triel",48.978983,2.003622,0,0,OIF:SA:51:491,Europe/Paris,,OIF, +OIF:SP:51:492,1,"Pont de Triel",48.979082,2.003635,0,0,OIF:SA:51:491,Europe/Paris,,OIF, +OIF:SP:51:493,1,"Notre-Dame",48.983866,1.973757,0,0,OIF:SA:51:493,Europe/Paris,,OIF, +OIF:SP:51:494,1,"Les Routiers",48.987346,1.995771,0,0,OIF:SA:23:614,Europe/Paris,,OIF, +OIF:SP:51:495,1,"Les Routiers",48.986862,1.996279,0,0,OIF:SA:23:614,Europe/Paris,,OIF, +OIF:SP:51:496,1,"Colombier",49.01564,1.944638,0,0,OIF:SA:51:496,Europe/Paris,,OIF, +OIF:SP:51:497,1,"Colombier",49.015693,1.944555,0,0,OIF:SA:51:496,Europe/Paris,,OIF, +OIF:SP:51:498,1,"Grande Rue",49.026025,2.006024,0,0,OIF:SA:40:68,Europe/Paris,,OIF, +OIF:SP:51:499,1,"Grande Rue",49.026006,2.00571,0,0,OIF:SA:40:68,Europe/Paris,,OIF, +OIF:SP:51:5,1,"Simone Eiffes",48.998281,2.195536,0,0,OIF:SA:51:5,Europe/Paris,,OIF, +OIF:SP:51:50,1,"Centre Commercial",48.964441,2.256993,0,0,OIF:SA:51:50,Europe/Paris,,OIF, +OIF:SP:51:500,1,"Les Valanchards",49.021549,2.022203,0,0,OIF:SA:51:500,Europe/Paris,,OIF, +OIF:SP:51:501,1,"Les Valanchards",49.020496,2.021581,0,0,OIF:SA:51:500,Europe/Paris,,OIF, +OIF:SP:51:502,1,"Carnot",48.969262,2.202072,0,0,OIF:SA:51:502,Europe/Paris,,OIF, +OIF:SP:51:503,1,"Carnot",48.969254,2.202222,0,0,OIF:SA:51:502,Europe/Paris,,OIF, +OIF:SP:51:505,1,"Noyer de l'Image",48.966106,2.208741,0,0,OIF:SA:51:505,Europe/Paris,,OIF, +OIF:SP:51:506,1,"Pasteur",48.974673,2.265646,0,0,OIF:SA:51:506,Europe/Paris,,OIF, +OIF:SP:51:507,1,"Pasteur",48.974574,2.265591,0,0,OIF:SA:51:506,Europe/Paris,,OIF, +OIF:SP:51:508,1,"Rue de Soisy",48.977714,2.271252,0,0,OIF:SA:51:508,Europe/Paris,,OIF, +OIF:SP:51:509,1,"Rue de Soisy",48.978001,2.271225,0,0,OIF:SA:51:508,Europe/Paris,,OIF, +OIF:SP:51:51,1,"Centre Commercial",48.964369,2.256938,0,0,OIF:SA:51:50,Europe/Paris,,OIF, +OIF:SP:51:510,1,"Hôtel de Ville de Margency",49.001392,2.288241,0,0,OIF:SA:51:510,Europe/Paris,,OIF, +OIF:SP:51:511,1,"Hôtel de Ville de Margency",49.001536,2.288159,0,0,OIF:SA:51:510,Europe/Paris,,OIF, +OIF:SP:51:512,1,"Collège de Bury",49.002254,2.285754,0,0,OIF:SA:51:512,Europe/Paris,,OIF, +OIF:SP:51:513,1,"Collège de Bury",49.002882,2.283472,0,0,OIF:SA:51:512,Europe/Paris,,OIF, +OIF:SP:51:514,1,"Collège de Saint-Prix",49.008069,2.269315,0,0,OIF:SA:51:514,Europe/Paris,,OIF, +OIF:SP:51:515,1,"Collège de Saint-Prix",49.008213,2.269288,0,0,OIF:SA:51:514,Europe/Paris,,OIF, +OIF:SP:51:516,1,"Gérard Donzelle",49.00935,2.262961,0,0,OIF:SA:51:516,Europe/Paris,,OIF, +OIF:SP:51:517,1,"Gérard Donzelle",49.009728,2.263138,0,0,OIF:SA:51:516,Europe/Paris,,OIF, +OIF:SP:51:518,1,"Mairie de Saint-Prix",49.007004,2.261899,0,0,OIF:SA:51:518,Europe/Paris,,OIF, +OIF:SP:51:519,1,"Mairie de Saint-Prix",49.006788,2.261749,0,0,OIF:SA:51:518,Europe/Paris,,OIF, +OIF:SP:51:52,1,"Gabriel Péri",48.966736,2.262135,0,0,OIF:SA:51:52,Europe/Paris,,OIF, +OIF:SP:51:520,1,"RD 928",49.006624,2.258198,0,0,OIF:SA:51:520,Europe/Paris,,OIF, +OIF:SP:51:521,1,"RD 928",49.006445,2.258471,0,0,OIF:SA:51:520,Europe/Paris,,OIF, +OIF:SP:51:524,1,"Clemenceau",48.986918,2.170935,0,0,OIF:SA:51:524,Europe/Paris,,OIF, +OIF:SP:51:525,1,"Clemenceau",48.986767,2.172123,0,0,OIF:SA:51:524,Europe/Paris,,OIF, +OIF:SP:51:526,1,"Gare de Liesse",49.033408,2.12753,0,0,OIF:SA:8733798,Europe/Paris,,OIF, +OIF:SP:51:527,1,"Joffre / Platrière",48.99372,2.176922,0,0,OIF:SA:51:527,Europe/Paris,,OIF, +OIF:SP:51:528,1,"Joffre / Platrière",48.993801,2.177058,0,0,OIF:SA:51:527,Europe/Paris,,OIF, +OIF:SP:51:529,1,"Émile Glay",48.990144,2.18447,0,0,OIF:SA:51:529,Europe/Paris,,OIF, +OIF:SP:51:53,1,"Gabriel Péri",48.966682,2.262012,0,0,OIF:SA:51:52,Europe/Paris,,OIF, +OIF:SP:51:530,1,"Émile Glay",48.990189,2.184634,0,0,OIF:SA:51:529,Europe/Paris,,OIF, +OIF:SP:51:532,1,"Chemin Vert",48.960142,2.20331,0,0,OIF:SA:51:532,Europe/Paris,,OIF, +OIF:SP:51:533,1,"Collège Camille Claudel",48.992106,2.187196,0,0,OIF:SA:51:533,Europe/Paris,,OIF, +OIF:SP:51:536,1,"Viaduc",48.98239,2.178964,0,0,OIF:SA:51:536,Europe/Paris,,OIF, +OIF:SP:51:538,1,"Quai de Seine",48.98028,2.173168,0,0,OIF:SA:51:538,Europe/Paris,,OIF, +OIF:SP:51:54,1,"République",49.001491,2.204487,0,0,OIF:SA:51:54,Europe/Paris,,OIF, +OIF:SP:51:540,1,"Mairie de la Frette-sur-Seine",48.973412,2.178486,0,0,OIF:SA:51:540,Europe/Paris,,OIF, +OIF:SP:51:542,1,"Base de Loisirs",48.96381,2.181955,0,0,OIF:SA:51:542,Europe/Paris,,OIF, +OIF:SP:51:545,1,"Aristide Briand",48.975174,2.179109,0,0,OIF:SA:51:545,Europe/Paris,,OIF, +OIF:SP:51:547,1,"Cimetière",48.972943,2.183716,0,0,OIF:SA:51:547,Europe/Paris,,OIF, +OIF:SP:51:548,1,"Place de la Gare",48.980074,2.180868,0,0,OIF:SA:8738187,Europe/Paris,,OIF, +OIF:SP:51:549,1,"Centre Commercial",49.00673,2.350838,0,0,OIF:SA:51:549,Europe/Paris,,OIF, +OIF:SP:51:55,1,"République",49.001374,2.204925,0,0,OIF:SA:51:54,Europe/Paris,,OIF, +OIF:SP:51:550,1,"Boulevard de la Gare",48.996386,2.357131,0,0,OIF:SA:51:550,Europe/Paris,,OIF, +OIF:SP:51:551,1,"Boulevard de la Gare",48.99608,2.357131,0,0,OIF:SA:51:550,Europe/Paris,,OIF, +OIF:SP:51:552,1,"Église",49.001212,2.355221,0,0,OIF:SA:51:552,Europe/Paris,,OIF, +OIF:SP:51:553,1,"Église",49.000871,2.354715,0,0,OIF:SA:51:552,Europe/Paris,,OIF, +OIF:SP:51:554,1,"Coq Hardi",49.0032,2.198637,0,0,OIF:SA:51:554,Europe/Paris,,OIF, +OIF:SP:51:555,1,"Coq Hardi",49.003201,2.198746,0,0,OIF:SA:51:554,Europe/Paris,,OIF, +OIF:SP:51:556,1,"Place de la Libération",48.999265,2.259029,0,0,OIF:SA:51:556,Europe/Paris,,OIF, +OIF:SP:51:557,1,"Hôtel de Ville / Marché",49.025848,2.226193,0,0,OIF:SA:51:557,Europe/Paris,,OIF, +OIF:SP:51:558,1,"Le Moulin",49.011495,2.245909,0,0,OIF:SA:51:558,Europe/Paris,,OIF, +OIF:SP:51:559,1,"Le Moulin",49.011099,2.245063,0,0,OIF:SA:51:558,Europe/Paris,,OIF, +OIF:SP:51:560,1,"Rue du Général Leclerc",49.003984,2.260251,0,0,OIF:SA:51:560,Europe/Paris,,OIF, +OIF:SP:51:561,1,"La Roche",49.004191,2.010412,0,0,OIF:SA:51:561,Europe/Paris,,OIF, +OIF:SP:51:562,1,"La Roche",49.00428,2.010179,0,0,OIF:SA:51:561,Europe/Paris,,OIF, +OIF:SP:51:563,1,"Parc aux Etoiles",49.001487,2.010839,0,0,OIF:SA:51:563,Europe/Paris,,OIF, +OIF:SP:51:564,1,"Parc aux Etoiles",49.001586,2.010742,0,0,OIF:SA:51:563,Europe/Paris,,OIF, +OIF:SP:51:565,1,"Chapelle",49.001556,2.012819,0,0,OIF:SA:51:565,Europe/Paris,,OIF, +OIF:SP:51:566,1,"Chapelle",49.001458,2.013092,0,0,OIF:SA:51:565,Europe/Paris,,OIF, +OIF:SP:51:567,1,"Auberge Dauphinoise",48.996734,2.01752,0,0,OIF:SA:51:567,Europe/Paris,,OIF, +OIF:SP:51:568,1,"Rue de Sannois",48.979116,2.256219,0,0,OIF:SA:51:568,Europe/Paris,,OIF, +OIF:SP:51:569,1,"Rue de Sannois",48.979214,2.256151,0,0,OIF:SA:51:568,Europe/Paris,,OIF, +OIF:SP:51:570,1,"Rue de Verdun",48.964698,2.187698,0,0,OIF:SA:51:570,Europe/Paris,,OIF, +OIF:SP:51:572,1,"Les Coteaux",49.016882,1.998145,0,0,OIF:SA:51:572,Europe/Paris,,OIF, +OIF:SP:51:573,1,"Les Coteaux",49.016505,1.99827,0,0,OIF:SA:51:572,Europe/Paris,,OIF, +OIF:SP:51:574,1,"Renoir",48.996938,2.207695,0,0,OIF:SA:51:574,Europe/Paris,,OIF, +OIF:SP:51:575,1,"Renoir",48.996884,2.207695,0,0,OIF:SA:51:574,Europe/Paris,,OIF, +OIF:SP:51:577,1,"Centre Commercial",48.995402,2.200078,0,0,OIF:SA:51:577,Europe/Paris,,OIF, +OIF:SP:51:578,1,"Centre Commercial",48.995482,2.199764,0,0,OIF:SA:51:577,Europe/Paris,,OIF, +OIF:SP:51:579,1,"Joffre / Gare",48.969362,2.195028,0,0,OIF:SA:8738186,Europe/Paris,,OIF, +OIF:SP:51:58,1,"Piscine",48.994483,2.206076,0,0,OIF:SA:51:58,Europe/Paris,,OIF, +OIF:SP:51:580,1,"Joffre / Gare",48.969317,2.195165,0,0,OIF:SA:8738186,Europe/Paris,,OIF, +OIF:SP:51:582,1,"Place des Sept Fontaines",49.027432,2.211021,0,0,OIF:SA:51:582,Europe/Paris,,OIF, +OIF:SP:51:585,1,"Rue de Paris",49.009489,2.255462,0,0,OIF:SA:51:585,Europe/Paris,,OIF, +OIF:SP:51:586,1,"Rue de Paris",49.009795,2.255202,0,0,OIF:SA:51:585,Europe/Paris,,OIF, +OIF:SP:51:587,1,"De Lattre",48.980773,2.238017,0,0,OIF:SA:51:159,Europe/Paris,,OIF, +OIF:SP:51:589,1,"Lycée / Collège",48.999472,2.147089,0,0,OIF:SA:51:149,Europe/Paris,,OIF, +OIF:SP:51:59,1,"Piscine",48.994115,2.205995,0,0,OIF:SA:51:58,Europe/Paris,,OIF, +OIF:SP:51:590,1,"Edouard Imbs",48.963948,2.191563,0,0,OIF:SA:18:19604,Europe/Paris,,OIF, +OIF:SP:51:593,1,"Libération",49.053546,2.194838,0,0,OIF:SA:51:593,Europe/Paris,,OIF, +OIF:SP:51:594,1,"Libération",49.053591,2.19492,0,0,OIF:SA:51:593,Europe/Paris,,OIF, +OIF:SP:51:595,1,"Maurice Berteaux",48.989125,2.230833,0,0,OIF:SA:51:595,Europe/Paris,,OIF, +OIF:SP:51:596,1,"Préfecture Gare",49.036165,2.080489,0,0,OIF:SA:8738190,Europe/Paris,,OIF, +OIF:SP:51:597,1,"Préfecture Gare",49.036326,2.080269,0,0,OIF:SA:8738190,Europe/Paris,,OIF, +OIF:SP:51:599,1,"Gare d'Argenteuil",48.946387,2.257171,0,0,OIF:SA:8738184,Europe/Paris,,OIF, +OIF:SP:51:6,1,"Simone Eiffes",48.998434,2.195536,0,0,OIF:SA:51:5,Europe/Paris,,OIF, +OIF:SP:51:60,1,"Les Bruyères",48.994353,2.202498,0,0,OIF:SA:51:60,Europe/Paris,,OIF, +OIF:SP:51:600,1,"Gare de Sartrouville",48.937347,2.158516,0,0,OIF:SA:8738641,Europe/Paris,,OIF, +OIF:SP:51:605,1,"Gare de Saint-Brice",48.995009,2.367715,0,0,OIF:SA:8727638,Europe/Paris,,OIF, +OIF:SP:51:606,1,"Place Jean Gabin",49.077333,2.203855,0,0,OIF:SA:51:606,Europe/Paris,,OIF, +OIF:SP:51:607,1,"Place Jean Moulin",49.073859,2.216366,0,0,OIF:SA:51:607,Europe/Paris,,OIF, +OIF:SP:51:608,1,"Place Jean Moulin",49.073796,2.216202,0,0,OIF:SA:51:607,Europe/Paris,,OIF, +OIF:SP:51:609,1,"Le Val Hébert",49.015416,1.947577,0,0,OIF:SA:51:609,Europe/Paris,,OIF, +OIF:SP:51:61,1,"Les Bruyères",48.994506,2.202034,0,0,OIF:SA:51:60,Europe/Paris,,OIF, +OIF:SP:51:613,1,"Parking Gare",48.980678,2.267945,0,0,OIF:SA:51:613,Europe/Paris,,OIF, +OIF:SP:51:614,1,"Parking Gare",48.980767,2.267972,0,0,OIF:SA:51:613,Europe/Paris,,OIF, +OIF:SP:51:62,1,"Centre Commercial",48.991095,2.206139,0,0,OIF:SA:51:62,Europe/Paris,,OIF, +OIF:SP:51:621,1,"Pierre Sémard",49.010783,2.197032,0,0,OIF:SA:51:621,Europe/Paris,,OIF, +OIF:SP:51:622,1,"Pierre Sémard",49.010649,2.197333,0,0,OIF:SA:51:621,Europe/Paris,,OIF, +OIF:SP:51:623,1,"Quai des Marques",48.988187,2.208836,0,0,OIF:SA:51:309,Europe/Paris,,OIF, +OIF:SP:51:624,1,"Boris Vian",49.035706,2.016951,0,0,OIF:SA:23:620,Europe/Paris,,OIF, +OIF:SP:51:625,1,"Boris Vian",49.03567,2.017088,0,0,OIF:SA:23:620,Europe/Paris,,OIF, +OIF:SP:51:626,1,"Collège Marcel Pagnol",49.067692,2.324433,0,0,OIF:SA:51:626,Europe/Paris,,OIF, +OIF:SP:51:627,1,"Gare de Montsoult-Maffliers",49.066389,2.322286,0,0,OIF:SA:8727649,Europe/Paris,,OIF, +OIF:SP:51:628,1,"Église",49.071383,2.310044,0,0,OIF:SA:51:628,Europe/Paris,,OIF, +OIF:SP:51:629,1,"Église",49.071455,2.309907,0,0,OIF:SA:51:628,Europe/Paris,,OIF, +OIF:SP:51:63,1,"Centre Commercial",48.990789,2.205689,0,0,OIF:SA:51:62,Europe/Paris,,OIF, +OIF:SP:51:630,1,"L'Orme aux Roses",49.075923,2.320902,0,0,OIF:SA:51:630,Europe/Paris,,OIF, +OIF:SP:51:631,1,"Le Poirier Rouget",49.084808,2.313512,0,0,OIF:SA:51:631,Europe/Paris,,OIF, +OIF:SP:51:632,1,"Fougères",49.078141,2.311545,0,0,OIF:SA:51:632,Europe/Paris,,OIF, +OIF:SP:51:633,1,"Abri",49.076477,2.307935,0,0,OIF:SA:51:633,Europe/Paris,,OIF, +OIF:SP:51:634,1,"Abri",49.076432,2.307867,0,0,OIF:SA:51:633,Europe/Paris,,OIF, +OIF:SP:51:635,1,"Centre",49.0769,2.307046,0,0,OIF:SA:51:635,Europe/Paris,,OIF, +OIF:SP:51:636,1,"Centre",49.076828,2.307087,0,0,OIF:SA:51:635,Europe/Paris,,OIF, +OIF:SP:51:637,1,"Harlay",49.08966,2.284067,0,0,OIF:SA:51:637,Europe/Paris,,OIF, +OIF:SP:51:638,1,"Harlay",49.089597,2.28408,0,0,OIF:SA:51:637,Europe/Paris,,OIF, +OIF:SP:51:639,1,"Mairie de Nerville-la-Forêt",49.089657,2.277568,0,0,OIF:SA:51:639,Europe/Paris,,OIF, +OIF:SP:51:64,1,"La Source",48.989532,2.190945,0,0,OIF:SA:51:64,Europe/Paris,,OIF, +OIF:SP:51:640,1,"Mairie de Nerville-la-Forêt",49.089639,2.27765,0,0,OIF:SA:51:639,Europe/Paris,,OIF, +OIF:SP:51:641,1,"Paris/Madeleine",49.108568,2.232489,0,0,OIF:SA:51:641,Europe/Paris,,OIF, +OIF:SP:51:642,1,"Paris/Madeleine",49.108433,2.232572,0,0,OIF:SA:51:641,Europe/Paris,,OIF, +OIF:SP:51:646,1,"Carrefour de Paris",49.111005,2.224519,0,0,OIF:SA:51:646,Europe/Paris,,OIF, +OIF:SP:51:647,1,"Carrefour de Paris",49.110538,2.224999,0,0,OIF:SA:51:646,Europe/Paris,,OIF, +OIF:SP:51:648,1,"La Poste",49.111989,2.219972,0,0,OIF:SA:51:648,Europe/Paris,,OIF, +OIF:SP:51:649,1,"La Poste",49.111908,2.219972,0,0,OIF:SA:51:648,Europe/Paris,,OIF, +OIF:SP:51:65,1,"La Source",48.990099,2.191394,0,0,OIF:SA:51:64,Europe/Paris,,OIF, +OIF:SP:51:650,1,"Collège",49.11549,2.216583,0,0,OIF:SA:51:650,Europe/Paris,,OIF, +OIF:SP:51:651,1,"Collège",49.115409,2.216419,0,0,OIF:SA:51:650,Europe/Paris,,OIF, +OIF:SP:51:652,1,"Faisanderie",49.117082,2.21803,0,0,OIF:SA:51:652,Europe/Paris,,OIF, +OIF:SP:51:653,1,"Faisanderie",49.117163,2.217934,0,0,OIF:SA:51:652,Europe/Paris,,OIF, +OIF:SP:51:654,1,"Garenne",49.119085,2.226856,0,0,OIF:SA:51:654,Europe/Paris,,OIF, +OIF:SP:51:655,1,"Garenne",49.119139,2.226924,0,0,OIF:SA:51:654,Europe/Paris,,OIF, +OIF:SP:51:656,1,"Chasseurs",49.11934,2.231003,0,0,OIF:SA:51:656,Europe/Paris,,OIF, +OIF:SP:51:657,1,"Poste Annexe",49.010411,2.238821,0,0,OIF:SA:51:657,Europe/Paris,,OIF, +OIF:SP:51:658,1,"Rue Michelet",49.013513,2.240728,0,0,OIF:SA:51:658,Europe/Paris,,OIF, +OIF:SP:51:66,1,"Église",48.9866,2.188837,0,0,OIF:SA:51:66,Europe/Paris,,OIF, +OIF:SP:51:660,1,"Poste Annexe",49.010653,2.238165,0,0,OIF:SA:51:657,Europe/Paris,,OIF, +OIF:SP:51:661,1,"Jean Jaurès",49.011009,2.234066,0,0,OIF:SA:51:661,Europe/Paris,,OIF, +OIF:SP:51:662,1,"Rue Morard",49.113877,2.23111,0,0,OIF:SA:51:662,Europe/Paris,,OIF, +OIF:SP:51:663,1,"Place du Tillé",49.112517,2.22754,0,0,OIF:SA:51:663,Europe/Paris,,OIF, +OIF:SP:51:664,1,"Madeleine/Louvet",49.110716,2.233033,0,0,OIF:SA:51:664,Europe/Paris,,OIF, +OIF:SP:51:665,1,"Albert Alline",49.002345,2.232772,0,0,OIF:SA:51:665,Europe/Paris,,OIF, +OIF:SP:51:667,1,"Pommiers Saulniers",48.9971,2.225558,0,0,OIF:SA:51:667,Europe/Paris,,OIF, +OIF:SP:51:668,1,"Émile Zola",48.99951,2.227042,0,0,OIF:SA:51:668,Europe/Paris,,OIF, +OIF:SP:51:669,1,"ZAC des Colonnes",49.001275,2.221998,0,0,OIF:SA:51:669,Europe/Paris,,OIF, +OIF:SP:51:67,1,"Église",48.986645,2.188932,0,0,OIF:SA:51:66,Europe/Paris,,OIF, +OIF:SP:51:670,1,"Jules César",48.997144,2.23479,0,0,OIF:SA:51:670,Europe/Paris,,OIF, +OIF:SP:51:671,1,"Marais",48.988909,2.220797,0,0,OIF:SA:51:109,Europe/Paris,,OIF, +OIF:SP:51:672,1,"Chemin des Gendarmes",49.024909,2.21279,0,0,OIF:SA:51:672,Europe/Paris,,OIF, +OIF:SP:51:673,1,"Chemin des Gendarmes",49.024765,2.212668,0,0,OIF:SA:51:672,Europe/Paris,,OIF, +OIF:SP:51:674,1,"Esplanade",49.023207,2.209788,0,0,OIF:SA:51:674,Europe/Paris,,OIF, +OIF:SP:51:675,1,"Esplanade",49.023046,2.209953,0,0,OIF:SA:51:674,Europe/Paris,,OIF, +OIF:SP:51:678,1,"Collège Montesquieu",49.01436,2.182473,0,0,OIF:SA:51:678,Europe/Paris,,OIF, +OIF:SP:51:679,1,"Docteur Roux",49.024992,2.214594,0,0,OIF:SA:51:185,Europe/Paris,,OIF, +OIF:SP:51:68,1,"Rue Massenet",48.980124,2.191599,0,0,OIF:SA:51:68,Europe/Paris,,OIF, +OIF:SP:51:680,1,"Rue d'Herblay",49.021524,2.215955,0,0,OIF:SA:51:680,Europe/Paris,,OIF, +OIF:SP:51:681,1,"Rue d'Herblay",49.02156,2.216132,0,0,OIF:SA:51:680,Europe/Paris,,OIF, +OIF:SP:51:682,1,"Pierre Curie",49.019318,2.211547,0,0,OIF:SA:51:682,Europe/Paris,,OIF, +OIF:SP:51:683,1,"Pierre Curie",49.019309,2.211109,0,0,OIF:SA:51:682,Europe/Paris,,OIF, +OIF:SP:51:684,1,"Voltaire",49.019591,2.206409,0,0,OIF:SA:51:684,Europe/Paris,,OIF, +OIF:SP:51:685,1,"Voltaire",49.019528,2.206231,0,0,OIF:SA:51:684,Europe/Paris,,OIF, +OIF:SP:51:686,1,"Constantin Pecqueur",49.027529,2.193038,0,0,OIF:SA:51:686,Europe/Paris,,OIF, +OIF:SP:51:687,1,"Constantin Pecqueur",49.027664,2.193379,0,0,OIF:SA:51:686,Europe/Paris,,OIF, +OIF:SP:51:690,1,"Les Châtaigniers",49.024782,2.188399,0,0,OIF:SA:51:690,Europe/Paris,,OIF, +OIF:SP:51:691,1,"Les Châtaigniers",49.024603,2.188427,0,0,OIF:SA:51:690,Europe/Paris,,OIF, +OIF:SP:51:692,1,"Bibliothèque Municipale",48.988426,2.190156,0,0,OIF:SA:51:692,Europe/Paris,,OIF, +OIF:SP:51:693,1,"Bibliothèque Municipale",48.988273,2.19017,0,0,OIF:SA:51:692,Europe/Paris,,OIF, +OIF:SP:51:694,1,"Fortuné Charlot",48.990491,2.181998,0,0,OIF:SA:51:694,Europe/Paris,,OIF, +OIF:SP:51:695,1,"Fortuné Charlot",48.990491,2.181889,0,0,OIF:SA:51:694,Europe/Paris,,OIF, +OIF:SP:51:696,1,"Centre de Loisirs",49.000427,2.193687,0,0,OIF:SA:51:696,Europe/Paris,,OIF, +OIF:SP:51:697,1,"Centre de Loisirs",49.000607,2.193836,0,0,OIF:SA:51:696,Europe/Paris,,OIF, +OIF:SP:51:698,1,"Hameau du Moulin / Clos des Charmilles",49.003196,2.365534,0,0,OIF:SA:51:698,Europe/Paris,,OIF, +OIF:SP:51:699,1,"Hameau du Moulin / Clos des Charmilles",49.003232,2.365507,0,0,OIF:SA:51:698,Europe/Paris,,OIF, +OIF:SP:51:7,1,"Charles de Gaulle / RD 14",48.991547,2.19266,0,0,OIF:SA:51:7,Europe/Paris,,OIF, +OIF:SP:51:70,1,"LEP le Corbusier",48.978713,2.199331,0,0,OIF:SA:51:236,Europe/Paris,,OIF, +OIF:SP:51:700,1,"Eugène Sue",49.005182,2.3638,0,0,OIF:SA:51:700,Europe/Paris,,OIF, +OIF:SP:51:701,1,"Eugène Sue",49.005101,2.363787,0,0,OIF:SA:51:700,Europe/Paris,,OIF, +OIF:SP:51:702,1,"Grand Park",49.004995,2.359593,0,0,OIF:SA:51:702,Europe/Paris,,OIF, +OIF:SP:51:703,1,"Grand Park",49.004968,2.359402,0,0,OIF:SA:51:702,Europe/Paris,,OIF, +OIF:SP:51:704,1,"Rhin et Danube",49.006029,2.355919,0,0,OIF:SA:51:704,Europe/Paris,,OIF, +OIF:SP:51:705,1,"Rhin et Danube",49.005912,2.356029,0,0,OIF:SA:51:704,Europe/Paris,,OIF, +OIF:SP:51:706,1,"Zc des Perruches",49.008644,2.351194,0,0,OIF:SA:51:706,Europe/Paris,,OIF, +OIF:SP:51:707,1,"Cimetière",49.004699,2.35387,0,0,OIF:SA:51:707,Europe/Paris,,OIF, +OIF:SP:51:708,1,"Cimetière",49.004681,2.353938,0,0,OIF:SA:51:707,Europe/Paris,,OIF, +OIF:SP:51:709,1,"École Léon Rouvrais",49.002129,2.349485,0,0,OIF:SA:51:709,Europe/Paris,,OIF, +OIF:SP:51:71,1,"Carrefour L. Mourier",48.976642,2.195677,0,0,OIF:SA:51:71,Europe/Paris,,OIF, +OIF:SP:51:710,1,"École Léon Rouvrais",49.002282,2.349608,0,0,OIF:SA:51:709,Europe/Paris,,OIF, +OIF:SP:51:711,1,"Fontaine Saint-Martin",49.00017,2.348624,0,0,OIF:SA:51:711,Europe/Paris,,OIF, +OIF:SP:51:712,1,"Fontaine Saint-Martin",49.000602,2.348883,0,0,OIF:SA:51:711,Europe/Paris,,OIF, +OIF:SP:51:714,1,"Rougemonts / Liberté",48.994384,2.335581,0,0,OIF:SA:51:714,Europe/Paris,,OIF, +OIF:SP:51:715,1,"Rougemonts / Fraternité",48.996118,2.336755,0,0,OIF:SA:51:715,Europe/Paris,,OIF, +OIF:SP:51:716,1,"Rougemonts / Egalité",48.996487,2.332235,0,0,OIF:SA:51:716,Europe/Paris,,OIF, +OIF:SP:51:717,1,"Le Clos",48.996782,2.3513,0,0,OIF:SA:51:717,Europe/Paris,,OIF, +OIF:SP:51:718,1,"Mont de Veine",48.999406,2.350317,0,0,OIF:SA:51:718,Europe/Paris,,OIF, +OIF:SP:51:719,1,"Lamartine (Hameau de Vaux)",49.061886,2.150333,0,0,OIF:SA:51:719,Europe/Paris,,OIF, +OIF:SP:51:72,1,"Carrefour L. Mourier",48.976733,2.196373,0,0,OIF:SA:51:71,Europe/Paris,,OIF, +OIF:SP:51:720,1,"Place des Arts",48.958303,2.197856,0,0,OIF:SA:18:19597,Europe/Paris,,OIF, +OIF:SP:51:721,1,"Planchette",48.997439,2.347449,0,0,OIF:SA:51:721,Europe/Paris,,OIF, +OIF:SP:51:73,1,"Gare de Cormeilles - Place Semard",48.968552,2.194021,0,0,OIF:SA:8738186,Europe/Paris,,OIF, +OIF:SP:51:74,1,"Gare de Cormeilles - Place Semard",48.96831,2.19454,0,0,OIF:SA:8738186,Europe/Paris,,OIF, +OIF:SP:51:746,1,"Chaufferie",48.996588,2.226106,0,0,OIF:SA:51:746,Europe/Paris,,OIF, +OIF:SP:51:75,1,"Gare de Cormeilles",48.967815,2.194036,0,0,OIF:SA:8738186,Europe/Paris,,OIF, +OIF:SP:51:76,1,"Gare de Cormeilles",48.967896,2.193859,0,0,OIF:SA:8738186,Europe/Paris,,OIF, +OIF:SP:51:78,1,"F. Carton / A. Briand",48.974891,2.197116,0,0,OIF:SA:51:78,Europe/Paris,,OIF, +OIF:SP:51:79,1,"Collège de l'Epine",48.993103,2.218848,0,0,OIF:SA:51:79,Europe/Paris,,OIF, +OIF:SP:51:8,1,"Charles de Gaulle / RD 14",48.993859,2.194456,0,0,OIF:SA:51:7,Europe/Paris,,OIF, +OIF:SP:51:80,1,"Collège de l'Epine",48.993184,2.218547,0,0,OIF:SA:51:79,Europe/Paris,,OIF, +OIF:SP:51:804,1,"Paul Bert",49.011634,2.194653,0,0,OIF:SA:51:804,Europe/Paris,,OIF, +OIF:SP:51:806,1,"Robert Capa",48.95631,2.199458,0,0,OIF:SA:51:806,Europe/Paris,,OIF, +OIF:SP:51:809,1,"Thomas Edison",48.956846,2.197369,0,0,OIF:SA:51:809,Europe/Paris,,OIF, +OIF:SP:51:81,1,"Rhin et Danube",48.991859,2.22374,0,0,OIF:SA:51:81,Europe/Paris,,OIF, +OIF:SP:51:810,1,"Philibert Delorme",49.080298,2.317289,0,0,OIF:SA:51:810,Europe/Paris,,OIF, +OIF:SP:51:819,1,"Gare d'Herblay",48.991145,2.160707,0,0,OIF:SA:8738188,Europe/Paris,,OIF, +OIF:SP:51:82,1,"Gare de Franconville",48.993773,2.233745,0,0,OIF:SA:8727607,Europe/Paris,,OIF, +OIF:SP:51:820,1,"Gare d'Herblay",48.991037,2.160898,0,0,OIF:SA:8738188,Europe/Paris,,OIF, +OIF:SP:51:821,1,"Gare d'Herblay",48.991163,2.161239,0,0,OIF:SA:8738188,Europe/Paris,,OIF, +OIF:SP:51:822,1,"Gare d'Herblay",48.991262,2.161048,0,0,OIF:SA:8738188,Europe/Paris,,OIF, +OIF:SP:51:823,1,"J.B. Poquelin",49.002483,2.126057,0,0,OIF:SA:51:823,Europe/Paris,,OIF, +OIF:SP:51:824,1,"J.B. Poquelin",49.002717,2.126234,0,0,OIF:SA:51:823,Europe/Paris,,OIF, +OIF:SP:51:825,1,"Illustre Théâtre",48.999913,2.125699,0,0,OIF:SA:51:825,Europe/Paris,,OIF, +OIF:SP:51:826,1,"Comédie Française",48.999413,2.122518,0,0,OIF:SA:51:826,Europe/Paris,,OIF, +OIF:SP:51:827,1,"Alouettes",48.993944,2.135132,0,0,OIF:SA:51:827,Europe/Paris,,OIF, +OIF:SP:51:828,1,"Place de la Libération",48.991252,2.166756,0,0,OIF:SA:51:828,Europe/Paris,,OIF, +OIF:SP:51:829,1,"Espace André Malraux",48.991108,2.173051,0,0,OIF:SA:51:829,Europe/Paris,,OIF, +OIF:SP:51:83,1,"Gare de Franconville",48.993881,2.234141,0,0,OIF:SA:8727607,Europe/Paris,,OIF, +OIF:SP:51:830,1,"Comble",48.993198,2.176582,0,0,OIF:SA:51:830,Europe/Paris,,OIF, +OIF:SP:51:831,1,"Jean Moulin",48.994571,2.175062,0,0,OIF:SA:51:831,Europe/Paris,,OIF, +OIF:SP:51:832,1,"Chemin du Parc - Tartres",48.997161,2.163964,0,0,OIF:SA:51:832,Europe/Paris,,OIF, +OIF:SP:51:833,1,"Route de Pierrelaye - Parc des Sports",49.002635,2.158168,0,0,OIF:SA:51:833,Europe/Paris,,OIF, +OIF:SP:51:836,1,"Cimetière",48.996412,2.161331,0,0,OIF:SA:51:836,Europe/Paris,,OIF, +OIF:SP:51:837,1,"Bibliothèque",48.993248,2.167282,0,0,OIF:SA:51:837,Europe/Paris,,OIF, +OIF:SP:51:838,1,"Rue de Cormeilles",48.988319,2.164075,0,0,OIF:SA:51:838,Europe/Paris,,OIF, +OIF:SP:51:839,1,"Gaillon",48.991028,2.149195,0,0,OIF:SA:51:839,Europe/Paris,,OIF, +OIF:SP:51:84,1,"Gare de Franconville",48.992966,2.236082,0,0,OIF:SA:8727607,Europe/Paris,,OIF, +OIF:SP:51:841,1,"Alouettes",48.992743,2.137022,0,0,OIF:SA:51:827,Europe/Paris,,OIF, +OIF:SP:51:842,1,"Chemin des Perriers",48.993226,2.152383,0,0,OIF:SA:51:842,Europe/Paris,,OIF, +OIF:SP:51:843,1,"Chennevières",48.995645,2.15964,0,0,OIF:SA:51:843,Europe/Paris,,OIF, +OIF:SP:51:844,1,"Jean Forget",49.080388,2.314458,0,0,OIF:SA:51:844,Europe/Paris,,OIF, +OIF:SP:51:845,1,"Piscine / Collège Ariane",48.960585,2.25547,0,0,OIF:SA:18:157,Europe/Paris,,OIF, +OIF:SP:51:846,1,"Piscine / Collège Ariane",48.961052,2.255565,0,0,OIF:SA:18:157,Europe/Paris,,OIF, +OIF:SP:51:851,1,"Noyer de l'Image",48.96634,2.208713,0,0,OIF:SA:51:505,Europe/Paris,,OIF, +OIF:SP:51:854,1,"Avenue de la Chesnaie",49.000527,2.154993,0,0,OIF:SA:51:854,Europe/Paris,,OIF, +OIF:SP:51:855,1,"Rue de Paris",48.992669,2.171039,0,0,OIF:SA:51:855,Europe/Paris,,OIF, +OIF:SP:51:856,1,"Les Écrivains",48.959353,2.188996,0,0,OIF:SA:18:19600,Europe/Paris,,OIF, +OIF:SP:51:857,1,"Les Écrivains",48.959379,2.188792,0,0,OIF:SA:18:19600,Europe/Paris,,OIF, +OIF:SP:51:86,1,"Gare de Franconville",48.993684,2.234005,0,0,OIF:SA:8727607,Europe/Paris,,OIF, +OIF:SP:51:863,1,"Rue Charles Fourier",48.965098,2.199026,0,0,OIF:SA:51:863,Europe/Paris,,OIF, +OIF:SP:51:864,1,"Victor Hugo",48.996205,2.195446,0,0,OIF:SA:51:864,Europe/Paris,,OIF, +OIF:SP:51:865,1,"Victor Hugo",48.996359,2.196552,0,0,OIF:SA:51:864,Europe/Paris,,OIF, +OIF:SP:51:866,1,"Mare aux Fées",48.994547,2.224348,0,0,OIF:SA:51:866,Europe/Paris,,OIF, +OIF:SP:51:867,1,"Stade Raoul Dautry",48.980656,2.261924,0,0,OIF:SA:51:867,Europe/Paris,,OIF, +OIF:SP:51:868,1,"Stade Raoul Dautry",48.980485,2.261706,0,0,OIF:SA:51:867,Europe/Paris,,OIF, +OIF:SP:51:869,1,"Foch",48.992221,2.142226,0,0,OIF:SA:51:145,Europe/Paris,,OIF, +OIF:SP:51:87,1,"Gare de Franconville",48.993737,2.233841,0,0,OIF:SA:8727607,Europe/Paris,,OIF, +OIF:SP:51:870,1,"Centre Sapeurs-Pompiers",48.995875,2.347162,0,0,OIF:SA:51:870,Europe/Paris,,OIF, +OIF:SP:51:871,1,"Centre Sapeurs-Pompiers",48.995992,2.346588,0,0,OIF:SA:51:870,Europe/Paris,,OIF, +OIF:SP:51:872,1,"Les Petites Vignes",49.012192,2.161509,0,0,OIF:SA:51:872,Europe/Paris,,OIF, +OIF:SP:51:873,1,"Les Petites Vignes",49.012084,2.161182,0,0,OIF:SA:51:873,Europe/Paris,,OIF, +OIF:SP:51:874,1,"Beauregards",48.990193,2.004956,0,0,OIF:SA:51:874,Europe/Paris,,OIF, +OIF:SP:51:875,1,"Beauregards",48.990526,2.005145,0,0,OIF:SA:51:874,Europe/Paris,,OIF, +OIF:SP:51:876,1,"Gare de Montigny - Beauchamp",49.007243,2.197616,0,0,OIF:SA:8727608,Europe/Paris,,OIF, +OIF:SP:51:877,1,"Gare de Montigny - Beauchamp",49.007171,2.19752,0,0,OIF:SA:8727608,Europe/Paris,,OIF, +OIF:SP:51:878,1,"Gare de Montigny - Beauchamp",49.007153,2.197725,0,0,OIF:SA:8727608,Europe/Paris,,OIF, +OIF:SP:51:880,1,"Station",48.988406,2.231039,0,0,OIF:SA:51:880,Europe/Paris,,OIF, +OIF:SP:51:881,1,"Montfrais",48.976874,2.228236,0,0,OIF:SA:51:881,Europe/Paris,,OIF, +OIF:SP:51:884,1,"Collège Camille Claudel",48.990123,2.189605,0,0,OIF:SA:51:533,Europe/Paris,,OIF, +OIF:SP:51:885,1,"Les Maréeux",49.0032,2.198077,0,0,OIF:SA:51:885,Europe/Paris,,OIF, +OIF:SP:51:886,1,"Les Maréeux",49.003685,2.197967,0,0,OIF:SA:51:885,Europe/Paris,,OIF, +OIF:SP:51:887,1,"Epinémerie",49.000816,2.149979,0,0,OIF:SA:51:887,Europe/Paris,,OIF, +OIF:SP:51:889,1,"Port aux Vins",48.987792,2.166726,0,0,OIF:SA:51:889,Europe/Paris,,OIF, +OIF:SP:51:890,1,"Le Temple",49.002785,1.971712,0,0,OIF:SA:21:735,Europe/Paris,,OIF, +OIF:SP:51:891,1,"Le Temple",49.002223,1.97315,0,0,OIF:SA:21:735,Europe/Paris,,OIF, +OIF:SP:51:892,1,"C.C. le Grand Val",49.12585,2.246598,0,0,OIF:SA:51:892,Europe/Paris,,OIF, +OIF:SP:51:893,1,"Carrefour de Paris",49.110673,2.224779,0,0,OIF:SA:51:646,Europe/Paris,,OIF, +OIF:SP:51:894,1,"Frépillon",49.057903,2.21014,0,0,OIF:SA:20:465,Europe/Paris,,OIF, +OIF:SP:51:895,1,"Frépillon",49.058296,2.208307,0,0,OIF:SA:20:465,Europe/Paris,,OIF, +OIF:SP:51:896,1,"Les Genêts",48.999651,2.207155,0,0,OIF:SA:51:896,Europe/Paris,,OIF, +OIF:SP:51:897,1,"Les Genêts",48.99984,2.207251,0,0,OIF:SA:51:896,Europe/Paris,,OIF, +OIF:SP:51:898,1,"Jules Ferry",48.969576,2.20087,0,0,OIF:SA:51:898,Europe/Paris,,OIF, +OIF:SP:51:899,1,"Les Ecouardes",49.027194,2.19886,0,0,OIF:SA:51:899,Europe/Paris,,OIF, +OIF:SP:51:9,1,"RD 14",48.994111,2.194933,0,0,OIF:SA:51:7,Europe/Paris,,OIF, +OIF:SP:51:900,1,"Les Ecouardes",49.027266,2.198928,0,0,OIF:SA:51:899,Europe/Paris,,OIF, +OIF:SP:51:901,1,"Les Lignières",49.028733,2.208627,0,0,OIF:SA:51:901,Europe/Paris,,OIF, +OIF:SP:51:902,1,"Les Lignières",49.028894,2.208544,0,0,OIF:SA:51:901,Europe/Paris,,OIF, +OIF:SP:51:903,1,"9ème Avenue",49.032811,2.215901,0,0,OIF:SA:51:903,Europe/Paris,,OIF, +OIF:SP:51:904,1,"9ème Avenue",49.03273,2.215805,0,0,OIF:SA:51:903,Europe/Paris,,OIF, +OIF:SP:51:905,1,"Touzelin",48.971438,2.25174,0,0,OIF:SA:51:388,Europe/Paris,,OIF, +OIF:SP:51:906,1,"Piretins / Hôtel de Ville",48.971396,2.255726,0,0,OIF:SA:51:41,Europe/Paris,,OIF, +OIF:SP:51:907,1,"Gare de Cormeilles",48.967761,2.194187,0,0,OIF:SA:8738186,Europe/Paris,,OIF, +OIF:SP:51:908,1,"Rue Charles Fourier",48.964954,2.199094,0,0,OIF:SA:51:863,Europe/Paris,,OIF, +OIF:SP:51:909,1,"République",48.968063,2.206307,0,0,OIF:SA:51:242,Europe/Paris,,OIF, +OIF:SP:51:910,1,"Boulevard des Eaux",48.963378,2.203288,0,0,OIF:SA:51:910,Europe/Paris,,OIF, +OIF:SP:51:911,1,"Boulevard des Eaux",48.963512,2.203206,0,0,OIF:SA:51:910,Europe/Paris,,OIF, +OIF:SP:51:912,1,"Les Feuillets",48.965618,2.205385,0,0,OIF:SA:51:912,Europe/Paris,,OIF, +OIF:SP:51:913,1,"Les Feuillets",48.965698,2.20533,0,0,OIF:SA:51:912,Europe/Paris,,OIF, +OIF:SP:51:914,1,"Épinettes",48.969251,2.207628,0,0,OIF:SA:51:914,Europe/Paris,,OIF, +OIF:SP:51:915,1,"Ibis",48.971543,2.208632,0,0,OIF:SA:51:915,Europe/Paris,,OIF, +OIF:SP:51:916,1,"Emy-les-Prés",48.973482,2.20647,0,0,OIF:SA:51:916,Europe/Paris,,OIF, +OIF:SP:51:917,1,"Grands Bains",49.000507,2.142496,0,0,OIF:SA:51:917,Europe/Paris,,OIF, +OIF:SP:51:918,1,"Grands Bains",49.000552,2.142318,0,0,OIF:SA:51:917,Europe/Paris,,OIF, +OIF:SP:51:919,1,"Alexandre Dumas",48.99789,2.146398,0,0,OIF:SA:51:919,Europe/Paris,,OIF, +OIF:SP:51:92,1,"Yvonne de Gaulle",48.997759,2.219083,0,0,OIF:SA:51:92,Europe/Paris,,OIF, +OIF:SP:51:920,1,"Alexandre Dumas",48.99771,2.146412,0,0,OIF:SA:51:919,Europe/Paris,,OIF, +OIF:SP:51:921,1,"Clos Saint-Pierre",49.020491,2.147025,0,0,OIF:SA:51:921,Europe/Paris,,OIF, +OIF:SP:51:922,1,"Clos Saint-Pierre",49.020249,2.147081,0,0,OIF:SA:51:921,Europe/Paris,,OIF, +OIF:SP:51:923,1,"Jean Gosselin",48.969843,2.234339,0,0,OIF:SA:51:923,Europe/Paris,,OIF, +OIF:SP:51:924,1,"Rue d'Argenteuil",48.989197,2.168852,0,0,OIF:SA:51:924,Europe/Paris,,OIF, +OIF:SP:51:925,1,"Courtes Terres",48.987755,2.172079,0,0,OIF:SA:51:925,Europe/Paris,,OIF, +OIF:SP:51:926,1,"Croix de Bois",49.000556,2.162409,0,0,OIF:SA:51:926,Europe/Paris,,OIF, +OIF:SP:51:927,1,"Orme Macaire",48.998179,2.153417,0,0,OIF:SA:51:927,Europe/Paris,,OIF, +OIF:SP:51:928,1,"Centre de Loisirs",48.99507,2.147829,0,0,OIF:SA:51:928,Europe/Paris,,OIF, +OIF:SP:51:929,1,"Sainte-Honorine",48.993535,2.154867,0,0,OIF:SA:51:929,Europe/Paris,,OIF, +OIF:SP:51:930,1,"Val",48.987095,2.15702,0,0,OIF:SA:51:930,Europe/Paris,,OIF, +OIF:SP:51:931,1,"Val",48.986996,2.156938,0,0,OIF:SA:51:930,Europe/Paris,,OIF, +OIF:SP:51:932,1,"Quai du Génie",48.990946,2.142641,0,0,OIF:SA:51:932,Europe/Paris,,OIF, +OIF:SP:51:933,1,"L. Gonse / Cdt Kieffer",48.977329,2.207075,0,0,OIF:SA:51:239,Europe/Paris,,OIF, +OIF:SP:51:934,1,"Gare de Cormeilles",48.967851,2.193968,0,0,OIF:SA:8738186,Europe/Paris,,OIF, +OIF:SP:51:935,1,"Lions",48.990161,2.146508,0,0,OIF:SA:51:935,Europe/Paris,,OIF, +OIF:SP:51:936,1,"Poste",48.971548,2.196592,0,0,OIF:SA:51:936,Europe/Paris,,OIF, +OIF:SP:51:937,1,"Paul Leboucher",48.974984,2.192351,0,0,OIF:SA:51:937,Europe/Paris,,OIF, +OIF:SP:51:938,1,"Val d'Or",48.975486,2.190834,0,0,OIF:SA:18:19616,Europe/Paris,,OIF, +OIF:SP:51:939,1,"Allée des Sources",48.977447,2.192126,0,0,OIF:SA:51:939,Europe/Paris,,OIF, +OIF:SP:51:94,1,"Les Bruyères",48.993821,2.21703,0,0,OIF:SA:51:94,Europe/Paris,,OIF, +OIF:SP:51:940,1,"Émile Zola",48.977542,2.189532,0,0,OIF:SA:51:940,Europe/Paris,,OIF, +OIF:SP:51:941,1,"Jules Massenet",48.976288,2.185644,0,0,OIF:SA:51:941,Europe/Paris,,OIF, +OIF:SP:51:942,1,"Pierre Curie",48.975639,2.183967,0,0,OIF:SA:51:942,Europe/Paris,,OIF, +OIF:SP:51:943,1,"Hautes Ruelles",48.974596,2.183643,0,0,OIF:SA:51:943,Europe/Paris,,OIF, +OIF:SP:51:944,1,"Rue de la Frette",48.972677,2.187075,0,0,OIF:SA:51:944,Europe/Paris,,OIF, +OIF:SP:51:945,1,"Clemenceau",48.972493,2.190624,0,0,OIF:SA:51:945,Europe/Paris,,OIF, +OIF:SP:51:947,1,"Gaston Frémont",48.983622,2.201133,0,0,OIF:SA:51:947,Europe/Paris,,OIF, +OIF:SP:51:949,1,"Mairie / Marché",48.975559,2.199735,0,0,OIF:SA:51:949,Europe/Paris,,OIF, +OIF:SP:51:95,1,"Epine Guyon",48.995882,2.220508,0,0,OIF:SA:51:95,Europe/Paris,,OIF, +OIF:SP:51:950,1,"La Poste",48.971305,2.196538,0,0,OIF:SA:51:936,Europe/Paris,,OIF, +OIF:SP:51:951,1,"Joffre / Gare",48.969299,2.19511,0,0,OIF:SA:8738186,Europe/Paris,,OIF, +OIF:SP:51:952,1,"Gare de Liesse",49.033444,2.127707,0,0,OIF:SA:8733798,Europe/Paris,,OIF, +OIF:SP:51:953,1,"Pontoise / Gare de la Frette Montigny",48.980301,2.182711,0,0,OIF:SA:8738187,Europe/Paris,,OIF, +OIF:SP:51:954,1,"Pontoise / Gare de la Frette Montigny",48.980149,2.182848,0,0,OIF:SA:8738187,Europe/Paris,,OIF, +OIF:SP:51:955,1,"Aristide Briand",48.970349,2.19362,0,0,OIF:SA:18:19676,Europe/Paris,,OIF, +OIF:SP:51:956,1,"Aristide Briand",48.970394,2.193661,0,0,OIF:SA:18:19676,Europe/Paris,,OIF, +OIF:SP:51:957,1,"Route de Cormeilles",48.956557,2.230776,0,0,OIF:SA:18:60,Europe/Paris,,OIF, +OIF:SP:51:958,1,"Route de Cormeilles",48.956629,2.231063,0,0,OIF:SA:18:60,Europe/Paris,,OIF, +OIF:SP:51:959,1,"Lycée Julie-Victoire Daubié",48.952849,2.234687,0,0,OIF:SA:51:959,Europe/Paris,,OIF, +OIF:SP:51:96,1,"Epine Guyon",48.995963,2.220535,0,0,OIF:SA:51:95,Europe/Paris,,OIF, +OIF:SP:51:960,1,"Charcot",48.946857,2.237577,0,0,OIF:SA:18:50,Europe/Paris,,OIF, +OIF:SP:51:961,1,"Bretagne",48.945983,2.234141,0,0,OIF:SA:18:35,Europe/Paris,,OIF, +OIF:SP:51:962,1,"Place François Rabelais",48.94688,2.232925,0,0,OIF:SA:18:163,Europe/Paris,,OIF, +OIF:SP:51:963,1,"Gare du Val",48.950087,2.230967,0,0,OIF:SA:8738179,Europe/Paris,,OIF, +OIF:SP:51:964,1,"Jean Lurçat",48.951865,2.228971,0,0,OIF:SA:18:800,Europe/Paris,,OIF, +OIF:SP:51:965,1,"Rue du Coudray",48.954112,2.229922,0,0,OIF:SA:18:64,Europe/Paris,,OIF, +OIF:SP:51:966,1,"Joffre / Gare",48.969335,2.195138,0,0,OIF:SA:8738186,Europe/Paris,,OIF, +OIF:SP:51:967,1,"Église Notre-Dame",49.012825,2.191289,0,0,OIF:SA:51:967,Europe/Paris,,OIF, +OIF:SP:51:968,1,"Victor Basch",49.013622,2.189033,0,0,OIF:SA:51:968,Europe/Paris,,OIF, +OIF:SP:51:969,1,"Gaillon",48.99101,2.149086,0,0,OIF:SA:51:839,Europe/Paris,,OIF, +OIF:SP:51:97,1,"Piscine",48.991508,2.223153,0,0,OIF:SA:51:97,Europe/Paris,,OIF, +OIF:SP:51:970,1,"Collège Isabelle Autissier",49.000934,2.139954,0,0,OIF:SA:51:970,Europe/Paris,,OIF, +OIF:SP:51:971,1,"Collège Isabelle Autissier",49.000944,2.1402,0,0,OIF:SA:51:970,Europe/Paris,,OIF, +OIF:SP:51:972,1,"Collège Cécile Sorel",49.07033,2.218357,0,0,OIF:SA:51:416,Europe/Paris,,OIF, +OIF:SP:51:973,1,"Centre Commercial",49.072239,2.197167,0,0,OIF:SA:51:408,Europe/Paris,,OIF, +OIF:SP:51:974,1,"Mairie de Chauvry",49.054402,2.269378,0,0,OIF:SA:51:310,Europe/Paris,,OIF, +OIF:SP:51:975,1,"Lycée / Collège Voie des Sports",49.013954,2.21201,0,0,OIF:SA:51:975,Europe/Paris,,OIF, +OIF:SP:51:976,1,"Lycée Montesquieu / Collège Duhamel",48.999445,2.147157,0,0,OIF:SA:51:149,Europe/Paris,,OIF, +OIF:SP:51:977,1,"Les Cordes",48.983805,2.181772,0,0,OIF:SA:51:406,Europe/Paris,,OIF, +OIF:SP:51:978,1,"Les Cordes",48.983607,2.181841,0,0,OIF:SA:51:406,Europe/Paris,,OIF, +OIF:SP:51:979,1,"Fortuné Charlot",48.990455,2.181916,0,0,OIF:SA:51:694,Europe/Paris,,OIF, +OIF:SP:51:98,1,"Piscine",48.99149,2.223112,0,0,OIF:SA:51:97,Europe/Paris,,OIF, +OIF:SP:51:980,1,"Fortuné Charlot",48.990455,2.182025,0,0,OIF:SA:51:694,Europe/Paris,,OIF, +OIF:SP:51:981,1,"La Tuile",48.985953,2.181766,0,0,OIF:SA:51:457,Europe/Paris,,OIF, +OIF:SP:51:982,1,"La Tuile",48.986942,2.182022,0,0,OIF:SA:51:457,Europe/Paris,,OIF, +OIF:SP:51:983,1,"Jacques Daguerre",48.972725,2.204657,0,0,OIF:SA:51:240,Europe/Paris,,OIF, +OIF:SP:51:984,1,"Collège Isabelle Autissier",49.000944,2.140213,0,0,OIF:SA:51:970,Europe/Paris,,OIF, +OIF:SP:51:985,1,"Collège Isabelle Autissier",49.000926,2.139967,0,0,OIF:SA:51:970,Europe/Paris,,OIF, +OIF:SP:51:986,1,"Carnot",48.972121,2.194994,0,0,OIF:SA:51:502,Europe/Paris,,OIF, +OIF:SP:51:987,1,"Epine Guyon",48.996088,2.22007,0,0,OIF:SA:51:95,Europe/Paris,,OIF, +OIF:SP:51:988,1,"Clos Bertin",48.983563,2.231745,0,0,OIF:SA:51:18,Europe/Paris,,OIF, +OIF:SP:51:989,1,"Montfrais",48.977422,2.228345,0,0,OIF:SA:51:881,Europe/Paris,,OIF, +OIF:SP:51:99,1,"Place Charles de Gaulle",48.984053,2.227662,0,0,OIF:SA:51:100,Europe/Paris,,OIF, +OIF:SP:51:990,1,"Chemin Neuf",48.980016,2.23451,0,0,OIF:SA:51:990,Europe/Paris,,OIF, +OIF:SP:51:991,1,"Chemin Neuf",48.980016,2.234606,0,0,OIF:SA:51:990,Europe/Paris,,OIF, +OIF:SP:51:992,1,"Cimetière",48.977654,2.217491,0,0,OIF:SA:51:992,Europe/Paris,,OIF, +OIF:SP:51:993,1,"Cimetière",48.977538,2.217573,0,0,OIF:SA:51:992,Europe/Paris,,OIF, +OIF:SP:51:994,1,"Bournouviers",48.993964,2.141769,0,0,OIF:SA:51:143,Europe/Paris,,OIF, +OIF:SP:51:995,1,"Gare de Vaux sur Seine",49.006795,1.963474,0,0,OIF:SA:8738181,Europe/Paris,,OIF, +OIF:SP:51:996,1,"Le Noyer",49.011093,2.030723,0,0,OIF:SA:23:232,Europe/Paris,,OIF, +OIF:SP:51:997,1,"374 Rue Paul Doumer",48.990721,1.991311,0,0,OIF:SA:23:562,Europe/Paris,,OIF, +OIF:SP:51:998,1,"374 Rue Paul Doumer",48.990604,1.991339,0,0,OIF:SA:23:562,Europe/Paris,,OIF, +OIF:SP:52:1043,1,"Mairie",48.774266,3.390009,0,0,OIF:SA:52:1043,Europe/Paris,,OIF, +OIF:SP:52:1044,1,"Mairie",48.774265,3.390063,0,0,OIF:SA:52:1043,Europe/Paris,,OIF, +OIF:SP:52:1045,1,"Moutils",48.76564,3.373232,0,0,OIF:SA:52:1045,Europe/Paris,,OIF, +OIF:SP:52:1046,1,"Moutils",48.765586,3.373231,0,0,OIF:SA:52:1045,Europe/Paris,,OIF, +OIF:SP:52:1055,1,"École",48.745319,3.269868,0,0,OIF:SA:52:1055,Europe/Paris,,OIF, +OIF:SP:52:1056,1,"École",48.745283,3.26984,0,0,OIF:SA:52:1055,Europe/Paris,,OIF, +OIF:SP:52:1077,1,"Mairie",48.711617,2.808578,0,0,OIF:SA:48:5061,Europe/Paris,,OIF, +OIF:SP:52:1078,1,"Mairie",48.711455,2.808536,0,0,OIF:SA:48:5061,Europe/Paris,,OIF, +OIF:SP:52:1079,1,"Place de la Mairie",48.817602,3.184059,0,0,OIF:SA:52:1079,Europe/Paris,,OIF, +OIF:SP:52:1080,1,"Place de la Mairie",48.817565,3.184113,0,0,OIF:SA:52:1079,Europe/Paris,,OIF, +OIF:SP:52:1088,1,"Les Corvelles",48.815546,3.174784,0,0,OIF:SA:52:1088,Europe/Paris,,OIF, +OIF:SP:52:1089,1,"Les Corvelles",48.815556,3.174662,0,0,OIF:SA:52:1088,Europe/Paris,,OIF, +OIF:SP:52:1090,1,"Les Limons",48.821732,3.188482,0,0,OIF:SA:52:1090,Europe/Paris,,OIF, +OIF:SP:52:1091,1,"Les Limons",48.821695,3.188618,0,0,OIF:SA:52:1090,Europe/Paris,,OIF, +OIF:SP:52:1096,1,"Pot d'Étaing",48.811403,3.181018,0,0,OIF:SA:52:1096,Europe/Paris,,OIF, +OIF:SP:52:1097,1,"Pot d'Étaing",48.811394,3.181086,0,0,OIF:SA:52:1096,Europe/Paris,,OIF, +OIF:SP:52:1098,1,"Pot d'Étaing / D 66",48.811233,3.180961,0,0,OIF:SA:52:1096,Europe/Paris,,OIF, +OIF:SP:52:1099,1,"Pot d'Étaing / D 66",48.811286,3.181112,0,0,OIF:SA:52:1096,Europe/Paris,,OIF, +OIF:SP:52:1100,1,"Église",48.666129,2.842458,0,0,OIF:SA:48:5065,Europe/Paris,,OIF, +OIF:SP:52:1101,1,"Église",48.666263,2.842581,0,0,OIF:SA:48:5065,Europe/Paris,,OIF, +OIF:SP:52:1104,1,"Ancienne Gare",48.670928,2.846766,0,0,OIF:SA:48:5160,Europe/Paris,,OIF, +OIF:SP:52:1105,1,"Ancienne Gare",48.670901,2.846752,0,0,OIF:SA:48:5160,Europe/Paris,,OIF, +OIF:SP:52:1273,1,"Église",48.615567,3.194792,0,0,OIF:SA:52:1273,Europe/Paris,,OIF, +OIF:SP:52:1274,1,"Église",48.615523,3.194696,0,0,OIF:SA:52:1273,Europe/Paris,,OIF, +OIF:SP:52:1320,1,"Lavoir",48.735016,3.195011,0,0,OIF:SA:52:1320,Europe/Paris,,OIF, +OIF:SP:52:1321,1,"Lavoir",48.735088,3.194985,0,0,OIF:SA:52:1320,Europe/Paris,,OIF, +OIF:SP:52:1336,1,"Champbonnois",48.778937,3.227712,0,0,OIF:SA:52:1336,Europe/Paris,,OIF, +OIF:SP:52:1337,1,"Champbonnois",48.77891,3.227765,0,0,OIF:SA:52:1336,Europe/Paris,,OIF, +OIF:SP:52:1338,1,"Cofféry",48.749852,3.206742,0,0,OIF:SA:52:1338,Europe/Paris,,OIF, +OIF:SP:52:1339,1,"Cofféry",48.749843,3.206837,0,0,OIF:SA:52:1338,Europe/Paris,,OIF, +OIF:SP:52:1344,1,"La Bochetière",48.752299,3.241365,0,0,OIF:SA:52:1344,Europe/Paris,,OIF, +OIF:SP:52:1345,1,"La Bochetière",48.752353,3.241434,0,0,OIF:SA:52:1344,Europe/Paris,,OIF, +OIF:SP:52:1346,1,"La Tuilerie",48.755693,3.213202,0,0,OIF:SA:52:1346,Europe/Paris,,OIF, +OIF:SP:52:1347,1,"La Tuilerie",48.755711,3.21308,0,0,OIF:SA:52:1346,Europe/Paris,,OIF, +OIF:SP:52:1350,1,"Les Queurses",48.755095,3.235418,0,0,OIF:SA:52:1350,Europe/Paris,,OIF, +OIF:SP:52:1351,1,"Les Queurses",48.755015,3.235363,0,0,OIF:SA:52:1350,Europe/Paris,,OIF, +OIF:SP:52:1352,1,"Place de Payenne",48.759648,3.222785,0,0,OIF:SA:52:1352,Europe/Paris,,OIF, +OIF:SP:52:1353,1,"Place de Payenne",48.759648,3.222785,0,0,OIF:SA:52:1352,Europe/Paris,,OIF, +OIF:SP:52:1425,1,"Mairie",48.607439,3.016496,0,0,OIF:SA:52:1425,Europe/Paris,,OIF, +OIF:SP:52:1426,1,"Mairie",48.607421,3.016442,0,0,OIF:SA:52:1425,Europe/Paris,,OIF, +OIF:SP:52:14523,1,"Stop D111",48.781373,3.161829,0,0,OIF:SA:52:14523,Europe/Paris,,OIF, +OIF:SP:52:14524,1,"Suscy-sous-Yebles",48.616844,2.76409,0,0,OIF:SA:52:14524,Europe/Paris,,OIF, +OIF:SP:52:14535,1,"Paradis",48.758354,3.026301,0,0,OIF:SA:52:14535,Europe/Paris,,OIF, +OIF:SP:52:14580,1,"Parrichets Écoles",48.80485,3.064189,0,0,OIF:SA:52:14580,Europe/Paris,,OIF, +OIF:SP:52:14587,1,"Rue Saint-Martin",48.607158,2.969875,0,0,OIF:SA:52:14587,Europe/Paris,,OIF, +OIF:SP:52:14588,1,"Victor Hugo / Porte de Paris",48.539618,2.657809,0,0,OIF:SA:31:439,Europe/Paris,,OIF, +OIF:SP:52:14592,1,"Granvillé",48.630478,2.918788,0,0,OIF:SA:52:14592,Europe/Paris,,OIF, +OIF:SP:52:14603,1,"Place de l'Ermitage Gare SNCF",48.526503,2.653925,0,0,OIF:SA:8768200,Europe/Paris,,OIF, +OIF:SP:52:14604,1,"Place de l'Ermitage Gare SNCF",48.526512,2.653912,0,0,OIF:SA:8768200,Europe/Paris,,OIF, +OIF:SP:52:14608,1,"Rue de l'Industrie Gare SNCF",48.526383,2.655224,0,0,OIF:SA:8768200,Europe/Paris,,OIF, +OIF:SP:52:14615,1,"Moustier",48.532726,2.676067,0,0,OIF:SA:27:219,Europe/Paris,,OIF, +OIF:SP:52:14618,1,"Genouilly",48.614227,2.746403,0,0,OIF:SA:52:14618,Europe/Paris,,OIF, +OIF:SP:52:14619,1,"Genouilly",48.614282,2.746295,0,0,OIF:SA:52:14618,Europe/Paris,,OIF, +OIF:SP:52:14620,1,"Maréchal Joffre",48.677857,2.663876,0,0,OIF:SA:13:161,Europe/Paris,,OIF, +OIF:SP:52:14621,1,"Maréchal Joffre",48.677847,2.66393,0,0,OIF:SA:13:161,Europe/Paris,,OIF, +OIF:SP:52:14622,1,"Rdv Château",48.693361,2.611306,0,0,OIF:SA:13:123,Europe/Paris,,OIF, +OIF:SP:52:14623,1,"Rdv Château",48.69338,2.610478,0,0,OIF:SA:13:123,Europe/Paris,,OIF, +OIF:SP:52:14626,1,"Mairie",48.671685,2.696708,0,0,OIF:SA:52:14626,Europe/Paris,,OIF, +OIF:SP:52:14634,1,"Aubepierre Église",48.631091,2.88645,0,0,OIF:SA:52:14634,Europe/Paris,,OIF, +OIF:SP:52:14635,1,"Aubepierre Église",48.631046,2.886463,0,0,OIF:SA:52:14634,Europe/Paris,,OIF, +OIF:SP:52:14636,1,"Gerbault",48.763647,3.386286,0,0,OIF:SA:52:14636,Europe/Paris,,OIF, +OIF:SP:52:14637,1,"Gerbault",48.763655,3.386368,0,0,OIF:SA:52:14636,Europe/Paris,,OIF, +OIF:SP:52:14638,1,"Monument aux Morts",48.791207,3.272121,0,0,OIF:SA:52:14638,Europe/Paris,,OIF, +OIF:SP:52:14639,1,"Monument aux Morts",48.791206,3.272298,0,0,OIF:SA:52:14638,Europe/Paris,,OIF, +OIF:SP:52:14640,1,"Mairie",48.794232,3.272679,0,0,OIF:SA:52:14640,Europe/Paris,,OIF, +OIF:SP:52:14641,1,"Mairie",48.79416,3.272704,0,0,OIF:SA:52:14640,Europe/Paris,,OIF, +OIF:SP:52:14642,1,"Eustache Lenoir",48.797966,3.267589,0,0,OIF:SA:8743090,Europe/Paris,,OIF, +OIF:SP:52:14643,1,"Eustache Lenoir",48.797931,3.267521,0,0,OIF:SA:8743090,Europe/Paris,,OIF, +OIF:SP:52:14644,1,"Église",48.792434,3.233004,0,0,OIF:SA:52:14644,Europe/Paris,,OIF, +OIF:SP:52:14645,1,"Rue de la Croix",48.760444,3.266795,0,0,OIF:SA:52:14645,Europe/Paris,,OIF, +OIF:SP:52:14646,1,"Rue de la Croix",48.760444,3.266863,0,0,OIF:SA:52:14645,Europe/Paris,,OIF, +OIF:SP:52:14651,1,"Rue de la Chapelle",48.741226,3.127976,0,0,OIF:SA:52:14651,Europe/Paris,,OIF, +OIF:SP:52:14652,1,"Rue de la Chapelle",48.74118,3.12803,0,0,OIF:SA:52:14651,Europe/Paris,,OIF, +OIF:SP:52:14655,1,"Laulinoue",48.840263,3.397776,0,0,OIF:SA:47:14801,Europe/Paris,,OIF, +OIF:SP:52:14656,1,"Laulinoue",48.840218,3.397857,0,0,OIF:SA:47:14801,Europe/Paris,,OIF, +OIF:SP:52:14664,1,"Caron",48.728264,2.870141,0,0,OIF:SA:48:5308,Europe/Paris,,OIF, +OIF:SP:52:14665,1,"Lumigny Stade",48.733608,2.95106,0,0,OIF:SA:52:14665,Europe/Paris,,OIF, +OIF:SP:52:14666,1,"Mairie",48.65622,3.078652,0,0,OIF:SA:52:14666,Europe/Paris,,OIF, +OIF:SP:52:14669,1,"Mesnil",48.782008,3.02992,0,0,OIF:SA:52:14669,Europe/Paris,,OIF, +OIF:SP:52:14671,1,"Courbon Cour aux Bertons",48.789725,2.957519,0,0,OIF:SA:52:14671,Europe/Paris,,OIF, +OIF:SP:52:14672,1,"Courbon Cour aux Bertons",48.789671,2.957613,0,0,OIF:SA:52:14671,Europe/Paris,,OIF, +OIF:SP:52:14673,1,"Mairie",48.814619,2.829452,0,0,OIF:SA:52:14673,Europe/Paris,,OIF, +OIF:SP:52:14674,1,"Tresmes",48.812506,2.991718,0,0,OIF:SA:52:14674,Europe/Paris,,OIF, +OIF:SP:52:14675,1,"Tresmes Charnois",48.815375,2.994667,0,0,OIF:SA:52:14675,Europe/Paris,,OIF, +OIF:SP:52:14677,1,"La Garenne",48.759464,3.057286,0,0,OIF:SA:52:14677,Europe/Paris,,OIF, +OIF:SP:52:14678,1,"La Garenne",48.759437,3.057272,0,0,OIF:SA:52:14677,Europe/Paris,,OIF, +OIF:SP:52:14679,1,"Mesnil",48.782,3.029879,0,0,OIF:SA:52:14669,Europe/Paris,,OIF, +OIF:SP:52:14680,1,"Maternelle / Primaire",48.848644,3.233525,0,0,OIF:SA:52:14680,Europe/Paris,,OIF, +OIF:SP:52:14681,1,"Courte Soupe",48.776577,3.16503,0,0,OIF:SA:52:14681,Europe/Paris,,OIF, +OIF:SP:52:14682,1,"Courte Soupe",48.776613,3.165098,0,0,OIF:SA:52:14681,Europe/Paris,,OIF, +OIF:SP:52:14683,1,"Courfruit",48.647648,2.915005,0,0,OIF:SA:52:14683,Europe/Paris,,OIF, +OIF:SP:52:14686,1,"Mairie",48.656247,3.078625,0,0,OIF:SA:52:14666,Europe/Paris,,OIF, +OIF:SP:52:14687,1,"Caron",48.728228,2.870182,0,0,OIF:SA:48:5308,Europe/Paris,,OIF, +OIF:SP:52:14688,1,"La Halle",48.782971,3.306017,0,0,OIF:SA:52:14688,Europe/Paris,,OIF, +OIF:SP:52:14690,1,"Gare RER",48.870704,2.783636,0,0,OIF:SA:8775499,Europe/Paris,,OIF, +OIF:SP:52:14691,1,"Gare RER",48.871673,2.784094,0,0,OIF:SA:8775499,Europe/Paris,,OIF, +OIF:SP:52:14693,1,"Les Pleux / D 222",48.841555,3.190387,0,0,OIF:SA:52:14693,Europe/Paris,,OIF, +OIF:SP:52:14694,1,"Les Pleux / D 222",48.841519,3.190427,0,0,OIF:SA:52:14693,Europe/Paris,,OIF, +OIF:SP:52:14695,1,"Champ la Dame D 222",48.837617,3.179253,0,0,OIF:SA:52:14695,Europe/Paris,,OIF, +OIF:SP:52:14696,1,"Champ Colin",48.83766,3.179512,0,0,OIF:SA:52:14695,Europe/Paris,,OIF, +OIF:SP:52:14697,1,"Marcel Clavier",48.808985,3.085884,0,0,OIF:SA:52:14697,Europe/Paris,,OIF, +OIF:SP:52:14704,1,"Moustier",48.532878,2.676081,0,0,OIF:SA:27:219,Europe/Paris,,OIF, +OIF:SP:52:14705,1,"Saint-Pères",48.945831,2.880323,0,0,OIF:SA:47:3787,Europe/Paris,,OIF, +OIF:SP:52:14706,1,"Saint-Pères",48.945642,2.880458,0,0,OIF:SA:47:3787,Europe/Paris,,OIF, +OIF:SP:52:14710,1,"Champauger / Chambreton",48.822002,3.127138,0,0,OIF:SA:52:14710,Europe/Paris,,OIF, +OIF:SP:52:14711,1,"Champauger / Chambreton",48.821985,3.12707,0,0,OIF:SA:52:14710,Europe/Paris,,OIF, +OIF:SP:52:14712,1,"Bas Mesnil",48.844466,3.114435,0,0,OIF:SA:52:14712,Europe/Paris,,OIF, +OIF:SP:52:14713,1,"Bas Mesnil",48.844521,3.114381,0,0,OIF:SA:52:14712,Europe/Paris,,OIF, +OIF:SP:52:14714,1,"Bagneaux",48.606007,2.896663,0,0,OIF:SA:52:14714,Europe/Paris,,OIF, +OIF:SP:52:14715,1,"Bagneaux",48.60598,2.896663,0,0,OIF:SA:52:14714,Europe/Paris,,OIF, +OIF:SP:52:14716,1,"Pierre Brossolette",48.545014,2.676391,0,0,OIF:SA:27:42,Europe/Paris,,OIF, +OIF:SP:52:14717,1,"Montblu Chemin",48.82611,3.068067,0,0,OIF:SA:52:14717,Europe/Paris,,OIF, +OIF:SP:52:14722,1,"Lumigny Stade",48.733634,2.951224,0,0,OIF:SA:52:14665,Europe/Paris,,OIF, +OIF:SP:52:14723,1,"Rigny",48.727587,2.974535,0,0,OIF:SA:52:14723,Europe/Paris,,OIF, +OIF:SP:52:14724,1,"Rigny",48.727578,2.974589,0,0,OIF:SA:52:14723,Europe/Paris,,OIF, +OIF:SP:52:14725,1,"Rue Saint-Martin",48.607158,2.969807,0,0,OIF:SA:52:14587,Europe/Paris,,OIF, +OIF:SP:52:14734,1,"Callagum",48.790007,3.122502,0,0,OIF:SA:52:14734,Europe/Paris,,OIF, +OIF:SP:52:14735,1,"Callagum",48.789807,3.122962,0,0,OIF:SA:52:14734,Europe/Paris,,OIF, +OIF:SP:52:14736,1,"Rouilly le Haut",48.831804,2.97508,0,0,OIF:SA:52:14736,Europe/Paris,,OIF, +OIF:SP:52:14737,1,"Rouilly le Haut",48.831795,2.975121,0,0,OIF:SA:52:14736,Europe/Paris,,OIF, +OIF:SP:52:14738,1,"Verdun",48.81626,3.085227,0,0,OIF:SA:52:14738,Europe/Paris,,OIF, +OIF:SP:52:14739,1,"École",48.798557,2.99327,0,0,OIF:SA:52:14739,Europe/Paris,,OIF, +OIF:SP:52:14740,1,"École",48.798557,2.99327,0,0,OIF:SA:52:14739,Europe/Paris,,OIF, +OIF:SP:52:14741,1,"Le Pontcet",48.797197,3.011402,0,0,OIF:SA:52:14741,Europe/Paris,,OIF, +OIF:SP:52:14742,1,"Le Pontcet",48.797215,3.011457,0,0,OIF:SA:52:14741,Europe/Paris,,OIF, +OIF:SP:52:14743,1,"École Primaire",48.815353,2.990489,0,0,OIF:SA:52:14743,Europe/Paris,,OIF, +OIF:SP:52:14744,1,"École Primaire",48.815219,2.990446,0,0,OIF:SA:52:14743,Europe/Paris,,OIF, +OIF:SP:52:14745,1,"Maisonfleur",48.799223,3.004463,0,0,OIF:SA:52:14745,Europe/Paris,,OIF, +OIF:SP:52:14746,1,"Maisonfleur",48.799178,3.004462,0,0,OIF:SA:52:14745,Europe/Paris,,OIF, +OIF:SP:52:14747,1,"Lotissement la Ferme",48.815673,3.018461,0,0,OIF:SA:52:14747,Europe/Paris,,OIF, +OIF:SP:52:14748,1,"Lotissement la Ferme",48.815682,3.018352,0,0,OIF:SA:52:14747,Europe/Paris,,OIF, +OIF:SP:52:14749,1,"Le Mesnil",48.820221,2.986344,0,0,OIF:SA:52:14749,Europe/Paris,,OIF, +OIF:SP:52:14750,1,"Le Mesnil",48.820185,2.986316,0,0,OIF:SA:52:14749,Europe/Paris,,OIF, +OIF:SP:52:14751,1,"Carrefour Route de Meaux",48.818415,3.010426,0,0,OIF:SA:52:14751,Europe/Paris,,OIF, +OIF:SP:52:14752,1,"Carrefour Route de Meaux",48.818388,3.010466,0,0,OIF:SA:52:14751,Europe/Paris,,OIF, +OIF:SP:52:14756,1,"Le Vautron",48.866933,3.288159,0,0,OIF:SA:47:14462,Europe/Paris,,OIF, +OIF:SP:52:14757,1,"Le Vautron",48.866914,3.288213,0,0,OIF:SA:47:14462,Europe/Paris,,OIF, +OIF:SP:52:14760,1,"Bois Frémy",48.885963,3.275411,0,0,OIF:SA:47:4458,Europe/Paris,,OIF, +OIF:SP:52:14761,1,"Bois Frémy",48.88598,3.275466,0,0,OIF:SA:47:4458,Europe/Paris,,OIF, +OIF:SP:52:14762,1,"Busserolles",48.906156,3.209516,0,0,OIF:SA:52:14762,Europe/Paris,,OIF, +OIF:SP:52:14763,1,"Busserolles",48.906183,3.209489,0,0,OIF:SA:52:14762,Europe/Paris,,OIF, +OIF:SP:52:14764,1,"Église",48.655136,2.868862,0,0,OIF:SA:48:5110,Europe/Paris,,OIF, +OIF:SP:52:14765,1,"Église",48.655118,2.868808,0,0,OIF:SA:48:5110,Europe/Paris,,OIF, +OIF:SP:52:14766,1,"Camping",48.720673,3.034075,0,0,OIF:SA:52:14766,Europe/Paris,,OIF, +OIF:SP:52:14767,1,"Camping",48.720682,3.034007,0,0,OIF:SA:52:14766,Europe/Paris,,OIF, +OIF:SP:52:14768,1,"Rue Berthaux",48.710982,2.857265,0,0,OIF:SA:52:14768,Europe/Paris,,OIF, +OIF:SP:52:14769,1,"Rue Berthaux",48.711009,2.857319,0,0,OIF:SA:52:14768,Europe/Paris,,OIF, +OIF:SP:52:14774,1,"Avenue de Rebais",48.786301,3.302312,0,0,OIF:SA:52:14774,Europe/Paris,,OIF, +OIF:SP:52:14786,1,"Lady Lavoir",48.5833,2.894658,0,0,OIF:SA:52:14786,Europe/Paris,,OIF, +OIF:SP:52:14788,1,"La Louveterie",48.763764,3.021737,0,0,OIF:SA:52:14788,Europe/Paris,,OIF, +OIF:SP:52:14789,1,"La Louveterie",48.763747,3.021682,0,0,OIF:SA:52:14788,Europe/Paris,,OIF, +OIF:SP:52:14791,1,"Montbrieux Fontaine",48.82753,2.950361,0,0,OIF:SA:52:14791,Europe/Paris,,OIF, +OIF:SP:52:14792,1,"Villiers",48.770466,3.097676,0,0,OIF:SA:52:14792,Europe/Paris,,OIF, +OIF:SP:52:14793,1,"Villiers",48.770447,3.097798,0,0,OIF:SA:52:14792,Europe/Paris,,OIF, +OIF:SP:52:14794,1,"Les Parrichets",48.777703,3.098897,0,0,OIF:SA:52:14794,Europe/Paris,,OIF, +OIF:SP:52:14795,1,"Les Parrichets",48.777686,3.098815,0,0,OIF:SA:52:14794,Europe/Paris,,OIF, +OIF:SP:52:14796,1,"Le Puit / Rouville",48.784895,3.09586,0,0,OIF:SA:52:14796,Europe/Paris,,OIF, +OIF:SP:52:14797,1,"Le Puit / Rouville",48.784878,3.095806,0,0,OIF:SA:52:14796,Europe/Paris,,OIF, +OIF:SP:52:14798,1,"Les Pleux",48.922755,3.127257,0,0,OIF:SA:52:14798,Europe/Paris,,OIF, +OIF:SP:52:14799,1,"Les Pleux",48.922728,3.127297,0,0,OIF:SA:52:14798,Europe/Paris,,OIF, +OIF:SP:52:14800,1,"Z.A. Croix de Mission",48.927533,3.123756,0,0,OIF:SA:52:14800,Europe/Paris,,OIF, +OIF:SP:52:14801,1,"Z.A. Croix de Mission",48.927496,3.123851,0,0,OIF:SA:52:14800,Europe/Paris,,OIF, +OIF:SP:52:14804,1,"Le Grand Lud",48.83023,2.935513,0,0,OIF:SA:52:14804,Europe/Paris,,OIF, +OIF:SP:52:14805,1,"Le Grand Lud",48.830203,2.9355,0,0,OIF:SA:52:14804,Europe/Paris,,OIF, +OIF:SP:52:14806,1,"Bellevue",48.810054,2.954469,0,0,OIF:SA:8711626,Europe/Paris,,OIF, +OIF:SP:52:14807,1,"Bellevue",48.810081,2.954496,0,0,OIF:SA:8711626,Europe/Paris,,OIF, +OIF:SP:52:14826,1,"Place de l'Église",48.758898,3.219714,0,0,OIF:SA:52:14826,Europe/Paris,,OIF, +OIF:SP:52:14827,1,"Place de l'Église",48.758952,3.219715,0,0,OIF:SA:52:14826,Europe/Paris,,OIF, +OIF:SP:52:14828,1,"Champ Bardin",48.822275,3.383782,0,0,OIF:SA:52:14828,Europe/Paris,,OIF, +OIF:SP:52:14829,1,"Champ Bardin",48.822186,3.383767,0,0,OIF:SA:52:14828,Europe/Paris,,OIF, +OIF:SP:52:14832,1,"La Croix Camus",48.71482,3.156507,0,0,OIF:SA:52:14832,Europe/Paris,,OIF, +OIF:SP:52:14833,1,"La Croix Camus",48.714856,3.156535,0,0,OIF:SA:52:14832,Europe/Paris,,OIF, +OIF:SP:52:14834,1,"Place Henri Guy",48.561518,2.679898,0,0,OIF:SA:52:14834,Europe/Paris,,OIF, +OIF:SP:52:14835,1,"Place Henri Guy",48.561517,2.679992,0,0,OIF:SA:52:14834,Europe/Paris,,OIF, +OIF:SP:52:14837,1,"Place Gallieni",48.52783,2.655178,0,0,OIF:SA:8768200,Europe/Paris,,OIF, +OIF:SP:52:14842,1,"Moulin de Chassefaim",48.702717,3.222074,0,0,OIF:SA:52:14842,Europe/Paris,,OIF, +OIF:SP:52:14843,1,"Moulin de Chassefaim",48.70269,3.222073,0,0,OIF:SA:52:14842,Europe/Paris,,OIF, +OIF:SP:52:14844,1,"Coubertin",48.708813,2.869969,0,0,OIF:SA:52:14844,Europe/Paris,,OIF, +OIF:SP:52:14845,1,"Coubertin",48.70866,2.870035,0,0,OIF:SA:52:14844,Europe/Paris,,OIF, +OIF:SP:52:14846,1,"R.Schuman",48.550455,2.638879,0,0,OIF:SA:8750199,Europe/Paris,,OIF, +OIF:SP:52:14847,1,"R.Schuman",48.550491,2.638893,0,0,OIF:SA:8750199,Europe/Paris,,OIF, +OIF:SP:52:14848,1,"Chaudbuisson",48.791409,2.941269,0,0,OIF:SA:52:14848,Europe/Paris,,OIF, +OIF:SP:52:14849,1,"Chaudbuisson",48.791435,2.94131,0,0,OIF:SA:52:14848,Europe/Paris,,OIF, +OIF:SP:52:14850,1,"Boulivillers",48.863877,3.226623,0,0,OIF:SA:52:14850,Europe/Paris,,OIF, +OIF:SP:52:14851,1,"Boulivillers",48.863922,3.226597,0,0,OIF:SA:52:14850,Europe/Paris,,OIF, +OIF:SP:52:14852,1,"Ferme du Balleau",48.916056,3.091754,0,0,OIF:SA:52:14852,Europe/Paris,,OIF, +OIF:SP:52:14854,1,"Changeard",48.650263,2.961228,0,0,OIF:SA:52:14854,Europe/Paris,,OIF, +OIF:SP:52:14855,1,"Changeard",48.65029,2.961215,0,0,OIF:SA:52:14854,Europe/Paris,,OIF, +OIF:SP:52:14856,1,"Saint-Victor",48.659265,2.771223,0,0,OIF:SA:52:14856,Europe/Paris,,OIF, +OIF:SP:52:14857,1,"Saint-Victor",48.659355,2.771224,0,0,OIF:SA:52:14856,Europe/Paris,,OIF, +OIF:SP:52:14860,1,"Z.I. Rue de l'Orgeval",48.801836,3.096258,0,0,OIF:SA:52:14860,Europe/Paris,,OIF, +OIF:SP:52:14861,1,"Z.I. Rue de l'Orgeval",48.801872,3.096231,0,0,OIF:SA:52:14860,Europe/Paris,,OIF, +OIF:SP:52:14864,1,"Rue Martial Cordier",48.813239,3.078174,0,0,OIF:SA:52:14864,Europe/Paris,,OIF, +OIF:SP:52:14867,1,"Avenue des Lorinettes",48.820122,3.090005,0,0,OIF:SA:52:14867,Europe/Paris,,OIF, +OIF:SP:52:14869,1,"Collège Hippolyte Rémy",48.809016,3.090811,0,0,OIF:SA:52:14869,Europe/Paris,,OIF, +OIF:SP:52:14880,1,"Avenue Gastellier",48.821326,3.085831,0,0,OIF:SA:52:14880,Europe/Paris,,OIF, +OIF:SP:52:14882,1,"Avenue Rebais / Rue Verte",48.814412,3.097381,0,0,OIF:SA:52:14882,Europe/Paris,,OIF, +OIF:SP:52:14883,1,"Petits Aulnoys",48.809184,3.112314,0,0,OIF:SA:52:14883,Europe/Paris,,OIF, +OIF:SP:52:14884,1,"Pontmoulin",48.812643,3.111182,0,0,OIF:SA:52:14884,Europe/Paris,,OIF, +OIF:SP:52:14886,1,"Cimetière",48.81493,3.102138,0,0,OIF:SA:52:14886,Europe/Paris,,OIF, +OIF:SP:52:14887,1,"Theil Lavoir",48.823141,3.10279,0,0,OIF:SA:52:14887,Europe/Paris,,OIF, +OIF:SP:52:14889,1,"Theil Place",48.827749,3.10471,0,0,OIF:SA:52:14889,Europe/Paris,,OIF, +OIF:SP:52:14892,1,"Monument",48.809822,3.082848,0,0,OIF:SA:52:14892,Europe/Paris,,OIF, +OIF:SP:52:14893,1,"Marcel Clavier",48.80894,3.085883,0,0,OIF:SA:52:14697,Europe/Paris,,OIF, +OIF:SP:52:14895,1,"Parc de Félins",48.714652,2.961037,0,0,OIF:SA:52:14895,Europe/Paris,,OIF, +OIF:SP:52:14896,1,"Parc de Félins",48.713502,2.959217,0,0,OIF:SA:52:14895,Europe/Paris,,OIF, +OIF:SP:52:14897,1,"D 75",48.678184,3.24256,0,0,OIF:SA:52:14897,Europe/Paris,,OIF, +OIF:SP:52:14898,1,"D 75",48.678121,3.242519,0,0,OIF:SA:52:14897,Europe/Paris,,OIF, +OIF:SP:52:14901,1,"Le Calvaire D216/D436",48.753696,2.865346,0,0,OIF:SA:48:7312,Europe/Paris,,OIF, +OIF:SP:52:14913,1,"Baloquerie",48.768769,3.342766,0,0,OIF:SA:52:14913,Europe/Paris,,OIF, +OIF:SP:52:14914,1,"Baloquerie",48.768762,3.342617,0,0,OIF:SA:52:14913,Europe/Paris,,OIF, +OIF:SP:52:14915,1,"Médiathèque",48.954796,2.879203,0,0,OIF:SA:47:3194,Europe/Paris,,OIF, +OIF:SP:52:14922,1,"Jardins de Boussois",48.828975,3.032453,0,0,OIF:SA:52:14922,Europe/Paris,,OIF, +OIF:SP:52:14923,1,"Jardins de Boussois",48.828912,3.032453,0,0,OIF:SA:52:14922,Europe/Paris,,OIF, +OIF:SP:52:14924,1,"Général de Gaulle",48.738742,3.196934,0,0,OIF:SA:52:14924,Europe/Paris,,OIF, +OIF:SP:52:14925,1,"Général de Gaulle",48.73876,3.196839,0,0,OIF:SA:52:14924,Europe/Paris,,OIF, +OIF:SP:52:14927,1,"Z.I. le Hainault",48.946213,3.110655,0,0,OIF:SA:52:14927,Europe/Paris,,OIF, +OIF:SP:52:14928,1,"Z.I. le Hainault",48.946276,3.110683,0,0,OIF:SA:52:14927,Europe/Paris,,OIF, +OIF:SP:52:14929,1,"Chaudron",48.796695,3.343022,0,0,OIF:SA:52:14929,Europe/Paris,,OIF, +OIF:SP:52:14930,1,"Chaudron",48.796696,3.342927,0,0,OIF:SA:52:14929,Europe/Paris,,OIF, +OIF:SP:52:14933,1,"Église",48.735389,3.195669,0,0,OIF:SA:52:14933,Europe/Paris,,OIF, +OIF:SP:52:14934,1,"Église",48.73539,3.195588,0,0,OIF:SA:52:14933,Europe/Paris,,OIF, +OIF:SP:52:14940,1,"Rue des Joncs",48.80484,3.084654,0,0,OIF:SA:52:14940,Europe/Paris,,OIF, +OIF:SP:52:14941,1,"Avenue Robert Elvert",48.803396,3.082633,0,0,OIF:SA:52:14941,Europe/Paris,,OIF, +OIF:SP:52:14944,1,"Vaux Résidence",48.808368,3.075315,0,0,OIF:SA:52:14944,Europe/Paris,,OIF, +OIF:SP:52:14945,1,"Vaux Centre Commercial",48.806636,3.077672,0,0,OIF:SA:52:14945,Europe/Paris,,OIF, +OIF:SP:52:14946,1,"Rue Verte",48.81872,3.097022,0,0,OIF:SA:52:14946,Europe/Paris,,OIF, +OIF:SP:52:14947,1,"Hautevue",48.817429,3.095057,0,0,OIF:SA:52:14947,Europe/Paris,,OIF, +OIF:SP:52:14948,1,"De Lattre de Tassigny",48.815727,3.089915,0,0,OIF:SA:52:14948,Europe/Paris,,OIF, +OIF:SP:52:14949,1,"République",48.815645,3.085885,0,0,OIF:SA:52:14949,Europe/Paris,,OIF, +OIF:SP:52:14950,1,"Pôle Emploi - Rue du Jariel",48.806909,3.101244,0,0,OIF:SA:52:14950,Europe/Paris,,OIF, +OIF:SP:52:14951,1,"Pôle Emploi - Rue du Jariel",48.80691,3.101176,0,0,OIF:SA:52:14950,Europe/Paris,,OIF, +OIF:SP:52:14952,1,"Centre de Remise en Forme",48.808006,3.101274,0,0,OIF:SA:52:14952,Europe/Paris,,OIF, +OIF:SP:52:14953,1,"Centre de Remise en Forme",48.808015,3.101206,0,0,OIF:SA:52:14952,Europe/Paris,,OIF, +OIF:SP:52:14954,1,"Centre Imagerie Médicale",48.808929,3.097437,0,0,OIF:SA:52:14954,Europe/Paris,,OIF, +OIF:SP:52:14955,1,"Centre Imagerie Médicale",48.808875,3.097449,0,0,OIF:SA:52:14954,Europe/Paris,,OIF, +OIF:SP:52:14956,1,"Station de Covoiturage",48.734594,2.985247,0,0,OIF:SA:52:14956,Europe/Paris,,OIF, +OIF:SP:52:14957,1,"Pôle Emploi",48.805624,3.101198,0,0,OIF:SA:52:14957,Europe/Paris,,OIF, +OIF:SP:52:14958,1,"Pôle Emploi",48.805625,3.101117,0,0,OIF:SA:52:14957,Europe/Paris,,OIF, +OIF:SP:52:14959,1,"Z. I. Boulevard de la Marne",48.803626,3.090392,0,0,OIF:SA:52:14959,Europe/Paris,,OIF, +OIF:SP:52:14960,1,"Gare RER Rond-Point Paul Séramy",48.867468,2.783608,0,0,OIF:SA:8775499,Europe/Paris,,OIF, +OIF:SP:52:14961,1,"Avenue de Strasbourg",48.80143,3.086646,0,0,OIF:SA:52:14961,Europe/Paris,,OIF, +OIF:SP:52:14962,1,"Rue de Meaux",48.861879,2.991388,0,0,OIF:SA:52:14962,Europe/Paris,,OIF, +OIF:SP:52:14963,1,"Rue de Meaux",48.861879,2.991334,0,0,OIF:SA:52:14962,Europe/Paris,,OIF, +OIF:SP:52:14964,1,"Hayette",48.942734,2.879581,0,0,OIF:SA:47:3779,Europe/Paris,,OIF, +OIF:SP:52:14965,1,"Hayette",48.942735,2.879309,0,0,OIF:SA:47:3779,Europe/Paris,,OIF, +OIF:SP:52:14966,1,"Avenue des Lorinettes",48.820158,3.089952,0,0,OIF:SA:52:14867,Europe/Paris,,OIF, +OIF:SP:52:14967,1,"Victoire",48.821569,3.091401,0,0,OIF:SA:52:14967,Europe/Paris,,OIF, +OIF:SP:52:14968,1,"Commanderie",48.824106,3.095372,0,0,OIF:SA:52:14968,Europe/Paris,,OIF, +OIF:SP:52:14969,1,"ZA Rue de l'Aubetin",48.804178,3.094047,0,0,OIF:SA:52:14969,Europe/Paris,,OIF, +OIF:SP:52:14970,1,"ZA Rue de l'Aubetin",48.804178,3.094128,0,0,OIF:SA:52:14969,Europe/Paris,,OIF, +OIF:SP:52:14971,1,"Allies Galliéni",48.822233,3.094487,0,0,OIF:SA:52:14971,Europe/Paris,,OIF, +OIF:SP:52:14972,1,"Rue Martial Cordier",48.813194,3.078187,0,0,OIF:SA:52:14864,Europe/Paris,,OIF, +OIF:SP:52:14973,1,"Rue du Général Leclerc",48.811882,3.078182,0,0,OIF:SA:52:14973,Europe/Paris,,OIF, +OIF:SP:52:14974,1,"Rue du Général Leclerc",48.811802,3.078127,0,0,OIF:SA:52:14973,Europe/Paris,,OIF, +OIF:SP:52:1550,1,"Crra",48.679318,2.716389,0,0,OIF:SA:52:1550,Europe/Paris,,OIF, +OIF:SP:52:1551,1,"Crra",48.679336,2.716348,0,0,OIF:SA:52:1550,Europe/Paris,,OIF, +OIF:SP:52:1552,1,"Maison Médicale",48.675282,2.699393,0,0,OIF:SA:52:1552,Europe/Paris,,OIF, +OIF:SP:52:1553,1,"Maison Médicale",48.675318,2.699353,0,0,OIF:SA:52:1552,Europe/Paris,,OIF, +OIF:SP:52:1555,1,"RN 19",48.670042,2.696045,0,0,OIF:SA:48:5093,Europe/Paris,,OIF, +OIF:SP:52:1556,1,"RN 19",48.670006,2.696018,0,0,OIF:SA:48:5093,Europe/Paris,,OIF, +OIF:SP:52:1557,1,"Mairie",48.671694,2.696654,0,0,OIF:SA:52:14626,Europe/Paris,,OIF, +OIF:SP:52:1570,1,"Grande Rue",48.891196,2.927836,0,0,OIF:SA:52:1570,Europe/Paris,,OIF, +OIF:SP:52:1571,1,"Grande Rue",48.891286,2.927837,0,0,OIF:SA:52:1570,Europe/Paris,,OIF, +OIF:SP:52:1572,1,"Mairie",48.89104,2.932195,0,0,OIF:SA:47:1572,Europe/Paris,,OIF, +OIF:SP:52:1573,1,"Mairie",48.891094,2.932182,0,0,OIF:SA:47:1572,Europe/Paris,,OIF, +OIF:SP:52:1575,1,"Allies Galliéni",48.822269,3.094447,0,0,OIF:SA:52:14971,Europe/Paris,,OIF, +OIF:SP:52:1577,1,"Avenue Rebais / Rue Verte",48.814485,3.097314,0,0,OIF:SA:52:14882,Europe/Paris,,OIF, +OIF:SP:52:1580,1,"Berthereau",48.811152,3.084228,0,0,OIF:SA:52:1580,Europe/Paris,,OIF, +OIF:SP:52:1582,1,"Calvaire",48.820473,3.099784,0,0,OIF:SA:52:1582,Europe/Paris,,OIF, +OIF:SP:52:1585,1,"Vaux Centre Commercial",48.806147,3.076821,0,0,OIF:SA:52:14945,Europe/Paris,,OIF, +OIF:SP:52:1587,1,"Collège Hippolyte Rémy",48.809327,3.09008,0,0,OIF:SA:52:14869,Europe/Paris,,OIF, +OIF:SP:52:1588,1,"CES Mme Lafayette",48.815294,3.087418,0,0,OIF:SA:52:1588,Europe/Paris,,OIF, +OIF:SP:52:1589,1,"CES Mme Lafayette",48.815231,3.087349,0,0,OIF:SA:52:1588,Europe/Paris,,OIF, +OIF:SP:52:1590,1,"Charot / École Maternelle",48.821087,3.096539,0,0,OIF:SA:52:1590,Europe/Paris,,OIF, +OIF:SP:52:1591,1,"Cimetière",48.814882,3.102587,0,0,OIF:SA:52:14886,Europe/Paris,,OIF, +OIF:SP:52:1592,1,"Cité Scolaire",48.823509,3.09162,0,0,OIF:SA:52:1592,Europe/Paris,,OIF, +OIF:SP:52:1593,1,"Cité Scolaire",48.823509,3.09162,0,0,OIF:SA:52:1592,Europe/Paris,,OIF, +OIF:SP:52:1594,1,"De Lattre de Tassigny",48.815673,3.0899,0,0,OIF:SA:52:14948,Europe/Paris,,OIF, +OIF:SP:52:1598,1,"Gambetta",48.813797,3.086715,0,0,OIF:SA:52:1598,Europe/Paris,,OIF, +OIF:SP:52:1599,1,"Gambetta",48.813716,3.086714,0,0,OIF:SA:52:1598,Europe/Paris,,OIF, +OIF:SP:52:1601,1,"Gare SNCF",48.807829,3.082424,0,0,OIF:SA:8711630,Europe/Paris,,OIF, +OIF:SP:52:1602,1,"Gare SNCF",48.807873,3.082479,0,0,OIF:SA:8711630,Europe/Paris,,OIF, +OIF:SP:52:1603,1,"Avenue Gastellier",48.821316,3.085912,0,0,OIF:SA:52:14880,Europe/Paris,,OIF, +OIF:SP:52:1605,1,"Hautevue",48.81742,3.095111,0,0,OIF:SA:52:14947,Europe/Paris,,OIF, +OIF:SP:52:1606,1,"Hôpital",48.826644,3.097614,0,0,OIF:SA:52:1606,Europe/Paris,,OIF, +OIF:SP:52:1607,1,"Hôpital",48.826499,3.09783,0,0,OIF:SA:52:1606,Europe/Paris,,OIF, +OIF:SP:52:1612,1,"Theil Centre Commercial",48.820721,3.094751,0,0,OIF:SA:52:1612,Europe/Paris,,OIF, +OIF:SP:52:1615,1,"Lycée Jules Ferry",48.82422,3.090024,0,0,OIF:SA:52:1615,Europe/Paris,,OIF, +OIF:SP:52:1617,1,"Montanglaust",48.825717,3.087909,0,0,OIF:SA:52:1617,Europe/Paris,,OIF, +OIF:SP:52:1619,1,"Monument",48.809875,3.082957,0,0,OIF:SA:52:14892,Europe/Paris,,OIF, +OIF:SP:52:1620,1,"Notre-Dame des Vignes",48.821704,3.088572,0,0,OIF:SA:52:1620,Europe/Paris,,OIF, +OIF:SP:52:1623,1,"Petits Aulnoys",48.809175,3.112232,0,0,OIF:SA:52:14883,Europe/Paris,,OIF, +OIF:SP:52:1624,1,"Place Saint-Denis",48.813049,3.084241,0,0,OIF:SA:52:1624,Europe/Paris,,OIF, +OIF:SP:52:1625,1,"Place Saint-Denis",48.813058,3.084214,0,0,OIF:SA:52:1624,Europe/Paris,,OIF, +OIF:SP:52:1626,1,"Pontmoulin",48.812607,3.1111,0,0,OIF:SA:52:14884,Europe/Paris,,OIF, +OIF:SP:52:1627,1,"République",48.8156,3.085857,0,0,OIF:SA:52:14949,Europe/Paris,,OIF, +OIF:SP:52:1628,1,"Rue des Joncs",48.804866,3.084831,0,0,OIF:SA:52:14940,Europe/Paris,,OIF, +OIF:SP:52:1632,1,"Rue Verte",48.818702,3.09709,0,0,OIF:SA:52:14946,Europe/Paris,,OIF, +OIF:SP:52:1637,1,"Avenue Robert Elvert",48.803343,3.082591,0,0,OIF:SA:52:14941,Europe/Paris,,OIF, +OIF:SP:52:1638,1,"Verdun",48.816278,3.085186,0,0,OIF:SA:52:14738,Europe/Paris,,OIF, +OIF:SP:52:1639,1,"Victoire",48.821731,3.091349,0,0,OIF:SA:52:14967,Europe/Paris,,OIF, +OIF:SP:52:1640,1,"Victor Hugo",48.81487,3.081886,0,0,OIF:SA:52:1640,Europe/Paris,,OIF, +OIF:SP:52:1641,1,"Victor Hugo",48.814816,3.081926,0,0,OIF:SA:52:1640,Europe/Paris,,OIF, +OIF:SP:52:1646,1,"Z. I. Boulevard de la Marne",48.803626,3.090392,0,0,OIF:SA:52:14959,Europe/Paris,,OIF, +OIF:SP:52:1679,1,"D 49 à / D 201",48.647987,2.958176,0,0,OIF:SA:52:1679,Europe/Paris,,OIF, +OIF:SP:52:1684,1,"Fleury Bourg",48.635059,2.971829,0,0,OIF:SA:52:1684,Europe/Paris,,OIF, +OIF:SP:52:1685,1,"Fleury Bourg",48.635024,2.971787,0,0,OIF:SA:52:1684,Europe/Paris,,OIF, +OIF:SP:52:1686,1,"Fleury Sablons",48.63315,2.970842,0,0,OIF:SA:52:1686,Europe/Paris,,OIF, +OIF:SP:52:1687,1,"Fleury Sablons",48.633078,2.970882,0,0,OIF:SA:52:1686,Europe/Paris,,OIF, +OIF:SP:52:1688,1,"Grand Bréau",48.653771,2.945261,0,0,OIF:SA:52:1688,Europe/Paris,,OIF, +OIF:SP:52:1689,1,"Grand Bréau",48.653735,2.94526,0,0,OIF:SA:52:1688,Europe/Paris,,OIF, +OIF:SP:52:1690,1,"Grange Bléneau",48.661722,2.952939,0,0,OIF:SA:52:1690,Europe/Paris,,OIF, +OIF:SP:52:1691,1,"Grange Bléneau",48.661732,2.952885,0,0,OIF:SA:52:1690,Europe/Paris,,OIF, +OIF:SP:52:1692,1,"Le Lavoir",48.646941,2.96203,0,0,OIF:SA:52:1692,Europe/Paris,,OIF, +OIF:SP:52:1693,1,"Le Lavoir",48.646959,2.962125,0,0,OIF:SA:52:1692,Europe/Paris,,OIF, +OIF:SP:52:1694,1,"Église",48.676899,2.746572,0,0,OIF:SA:52:1694,Europe/Paris,,OIF, +OIF:SP:52:1695,1,"Église",48.676917,2.746518,0,0,OIF:SA:52:1694,Europe/Paris,,OIF, +OIF:SP:52:1703,1,"La Pierre Couvée",48.651506,2.901671,0,0,OIF:SA:52:1703,Europe/Paris,,OIF, +OIF:SP:52:1704,1,"La Pierre Couvée",48.651515,2.901617,0,0,OIF:SA:52:1703,Europe/Paris,,OIF, +OIF:SP:52:1707,1,"Ferme du Paradis",48.646586,2.900234,0,0,OIF:SA:52:1707,Europe/Paris,,OIF, +OIF:SP:52:1708,1,"Ferme du Paradis",48.64655,2.900233,0,0,OIF:SA:52:1707,Europe/Paris,,OIF, +OIF:SP:52:1748,1,"Gare SNCF",48.859265,2.905296,0,0,OIF:SA:8711677,Europe/Paris,,OIF, +OIF:SP:52:1783,1,"École",48.595441,2.740685,0,0,OIF:SA:52:1783,Europe/Paris,,OIF, +OIF:SP:52:1784,1,"École",48.595458,2.740984,0,0,OIF:SA:52:1783,Europe/Paris,,OIF, +OIF:SP:52:1785,1,"Les Bordes",48.590338,2.731797,0,0,OIF:SA:52:1785,Europe/Paris,,OIF, +OIF:SP:52:1786,1,"Les Bordes",48.590302,2.731919,0,0,OIF:SA:52:1785,Europe/Paris,,OIF, +OIF:SP:52:1787,1,"Suscy-sous-Yebles",48.616835,2.764062,0,0,OIF:SA:52:14524,Europe/Paris,,OIF, +OIF:SP:52:1824,1,"La Malgagne",48.709984,3.163046,0,0,OIF:SA:52:1824,Europe/Paris,,OIF, +OIF:SP:52:1825,1,"La Malgagne",48.709966,3.162991,0,0,OIF:SA:52:1824,Europe/Paris,,OIF, +OIF:SP:52:1826,1,"Mairie",48.717588,3.170855,0,0,OIF:SA:52:1826,Europe/Paris,,OIF, +OIF:SP:52:1827,1,"Mairie",48.717589,3.170733,0,0,OIF:SA:52:1826,Europe/Paris,,OIF, +OIF:SP:52:1828,1,"Boulangerie",48.818932,2.917363,0,0,OIF:SA:47:15013,Europe/Paris,,OIF, +OIF:SP:52:1829,1,"Boulangerie",48.81901,2.917962,0,0,OIF:SA:47:15013,Europe/Paris,,OIF, +OIF:SP:52:1836,1,"Sortie/D 20",48.814416,2.921939,0,0,OIF:SA:47:15009,Europe/Paris,,OIF, +OIF:SP:52:1837,1,"Sortie/D 20",48.814724,2.92148,0,0,OIF:SA:47:15009,Europe/Paris,,OIF, +OIF:SP:52:1868,1,"Mairie",48.865684,3.164273,0,0,OIF:SA:52:1868,Europe/Paris,,OIF, +OIF:SP:52:1869,1,"Mairie",48.865569,3.163917,0,0,OIF:SA:52:1868,Europe/Paris,,OIF, +OIF:SP:52:1870,1,"Bois Baudry Centre",48.889109,3.216507,0,0,OIF:SA:52:1870,Europe/Paris,,OIF, +OIF:SP:52:1871,1,"Bois Baudry Centre",48.889108,3.216575,0,0,OIF:SA:52:1870,Europe/Paris,,OIF, +OIF:SP:52:1872,1,"Butheil",48.87225,3.184012,0,0,OIF:SA:52:1872,Europe/Paris,,OIF, +OIF:SP:52:1873,1,"Butheil",48.872277,3.183971,0,0,OIF:SA:52:1872,Europe/Paris,,OIF, +OIF:SP:52:1874,1,"Grand Saussoy",48.877017,3.19604,0,0,OIF:SA:52:1874,Europe/Paris,,OIF, +OIF:SP:52:1875,1,"Grand Saussoy",48.877008,3.196094,0,0,OIF:SA:52:1874,Europe/Paris,,OIF, +OIF:SP:52:1876,1,"Croupet",48.860863,3.153067,0,0,OIF:SA:52:1876,Europe/Paris,,OIF, +OIF:SP:52:1877,1,"Croupet",48.860863,3.152945,0,0,OIF:SA:52:1876,Europe/Paris,,OIF, +OIF:SP:52:1878,1,"Les Chaises",48.877086,3.167317,0,0,OIF:SA:52:1878,Europe/Paris,,OIF, +OIF:SP:52:1879,1,"Les Chaises",48.877113,3.167276,0,0,OIF:SA:52:1878,Europe/Paris,,OIF, +OIF:SP:52:1880,1,"Les Neuillis",48.886248,3.203416,0,0,OIF:SA:52:1880,Europe/Paris,,OIF, +OIF:SP:52:1881,1,"Les Neuillis",48.886283,3.203512,0,0,OIF:SA:52:1880,Europe/Paris,,OIF, +OIF:SP:52:1882,1,"Mauroy",48.885003,3.1713,0,0,OIF:SA:52:1882,Europe/Paris,,OIF, +OIF:SP:52:1883,1,"Mauroy",48.885003,3.171369,0,0,OIF:SA:52:1882,Europe/Paris,,OIF, +OIF:SP:52:1884,1,"Petit Saussoy",48.875016,3.190529,0,0,OIF:SA:52:1884,Europe/Paris,,OIF, +OIF:SP:52:1885,1,"Petit Saussoy",48.875007,3.190611,0,0,OIF:SA:52:1884,Europe/Paris,,OIF, +OIF:SP:52:1975,1,"Château",48.652597,2.633164,0,0,OIF:SA:28:34,Europe/Paris,,OIF, +OIF:SP:52:1976,1,"Château",48.652651,2.633137,0,0,OIF:SA:28:34,Europe/Paris,,OIF, +OIF:SP:52:1977,1,"Fontaine",48.659022,2.630487,0,0,OIF:SA:28:96,Europe/Paris,,OIF, +OIF:SP:52:1978,1,"Fontaine",48.658986,2.630459,0,0,OIF:SA:28:96,Europe/Paris,,OIF, +OIF:SP:52:1985,1,"Grégy",48.666452,2.621192,0,0,OIF:SA:28:119,Europe/Paris,,OIF, +OIF:SP:52:1986,1,"Grégy",48.666416,2.621165,0,0,OIF:SA:28:119,Europe/Paris,,OIF, +OIF:SP:52:1989,1,"Marquis",48.655087,2.636855,0,0,OIF:SA:48:5113,Europe/Paris,,OIF, +OIF:SP:52:1990,1,"Marquis",48.65506,2.636895,0,0,OIF:SA:48:5113,Europe/Paris,,OIF, +OIF:SP:52:1991,1,"Collège Louise Michel",48.802054,2.986647,0,0,OIF:SA:52:1991,Europe/Paris,,OIF, +OIF:SP:52:1992,1,"Collège Louise Michel",48.802072,2.986621,0,0,OIF:SA:52:1991,Europe/Paris,,OIF, +OIF:SP:52:1993,1,"Gare SNCF",48.808071,2.994085,0,0,OIF:SA:8711627,Europe/Paris,,OIF, +OIF:SP:52:1994,1,"Gare SNCF",48.808062,2.994153,0,0,OIF:SA:8711627,Europe/Paris,,OIF, +OIF:SP:52:1995,1,"HLM",48.801666,2.986901,0,0,OIF:SA:52:1995,Europe/Paris,,OIF, +OIF:SP:52:1996,1,"HLM",48.801621,2.986901,0,0,OIF:SA:52:1995,Europe/Paris,,OIF, +OIF:SP:52:1997,1,"Les Bordes",48.779294,3.009483,0,0,OIF:SA:52:1997,Europe/Paris,,OIF, +OIF:SP:52:1998,1,"Les Bordes",48.779196,3.009482,0,0,OIF:SA:52:1997,Europe/Paris,,OIF, +OIF:SP:52:1999,1,"Monument",48.802335,2.994407,0,0,OIF:SA:52:1999,Europe/Paris,,OIF, +OIF:SP:52:2000,1,"Monument",48.802308,2.994461,0,0,OIF:SA:52:1999,Europe/Paris,,OIF, +OIF:SP:52:2001,1,"Place",48.799382,2.996818,0,0,OIF:SA:52:2001,Europe/Paris,,OIF, +OIF:SP:52:2002,1,"Place",48.799319,2.996817,0,0,OIF:SA:52:2001,Europe/Paris,,OIF, +OIF:SP:52:2051,1,"Collège Jean Campin",48.785602,3.303115,0,0,OIF:SA:52:2051,Europe/Paris,,OIF, +OIF:SP:52:2052,1,"Collège Jean Campin",48.785601,3.303251,0,0,OIF:SA:52:2051,Europe/Paris,,OIF, +OIF:SP:52:2053,1,"Avenue des États-Unis",48.780905,3.299273,0,0,OIF:SA:8711639,Europe/Paris,,OIF, +OIF:SP:52:2054,1,"Avenue des États-Unis",48.780824,3.299299,0,0,OIF:SA:8711639,Europe/Paris,,OIF, +OIF:SP:52:2055,1,"Rue d'Orient",48.782499,3.308824,0,0,OIF:SA:52:2055,Europe/Paris,,OIF, +OIF:SP:52:2056,1,"Rue d'Orient",48.782445,3.308796,0,0,OIF:SA:52:2055,Europe/Paris,,OIF, +OIF:SP:52:2057,1,"Promenades",48.780445,3.303944,0,0,OIF:SA:52:2057,Europe/Paris,,OIF, +OIF:SP:52:2058,1,"Promenades",48.780471,3.304039,0,0,OIF:SA:52:2057,Europe/Paris,,OIF, +OIF:SP:52:2073,1,"Collège la Rochefoucauld / Lycée",48.941713,3.13625,0,0,OIF:SA:47:2073,Europe/Paris,,OIF, +OIF:SP:52:2078,1,"Sainte-Beuve",48.947779,3.12682,0,0,OIF:SA:47:14657,Europe/Paris,,OIF, +OIF:SP:52:2088,1,"Gare SNCF",48.950328,3.124553,0,0,OIF:SA:8711651,Europe/Paris,,OIF, +OIF:SP:52:2089,1,"Gare SNCF",48.950418,3.124636,0,0,OIF:SA:8711651,Europe/Paris,,OIF, +OIF:SP:52:2102,1,"Collège les Glacis",48.937597,3.129366,0,0,OIF:SA:47:2077,Europe/Paris,,OIF, +OIF:SP:52:2108,1,"Petit Morin",48.943248,3.122931,0,0,OIF:SA:47:14687,Europe/Paris,,OIF, +OIF:SP:52:2109,1,"Petit Morin",48.943349,3.122659,0,0,OIF:SA:47:14687,Europe/Paris,,OIF, +OIF:SP:52:2207,1,"Boulevard Hardy",48.708619,2.861207,0,0,OIF:SA:48:5151,Europe/Paris,,OIF, +OIF:SP:52:2208,1,"Boulevard Hardy",48.708673,2.861167,0,0,OIF:SA:48:5151,Europe/Paris,,OIF, +OIF:SP:52:2211,1,"Chaubuisson",48.701063,2.905143,0,0,OIF:SA:52:2211,Europe/Paris,,OIF, +OIF:SP:52:2212,1,"Chaubuisson",48.700973,2.905223,0,0,OIF:SA:52:2211,Europe/Paris,,OIF, +OIF:SP:52:2223,1,"Les Bordes",48.705242,2.876573,0,0,OIF:SA:48:5143,Europe/Paris,,OIF, +OIF:SP:52:2224,1,"Les Bordes",48.705197,2.876559,0,0,OIF:SA:48:5143,Europe/Paris,,OIF, +OIF:SP:52:2227,1,"Mairie",48.706758,2.86734,0,0,OIF:SA:48:5157,Europe/Paris,,OIF, +OIF:SP:52:2228,1,"Mairie",48.706713,2.86734,0,0,OIF:SA:48:5157,Europe/Paris,,OIF, +OIF:SP:52:2229,1,"Lafayette",48.703578,2.87088,0,0,OIF:SA:48:5155,Europe/Paris,,OIF, +OIF:SP:52:2230,1,"Lafayette",48.703533,2.870879,0,0,OIF:SA:48:5155,Europe/Paris,,OIF, +OIF:SP:52:2252,1,"Abri",48.58475,2.776901,0,0,OIF:SA:52:2252,Europe/Paris,,OIF, +OIF:SP:52:2253,1,"Abri",48.584758,2.776955,0,0,OIF:SA:52:2252,Europe/Paris,,OIF, +OIF:SP:52:2256,1,"Mairie",48.704422,3.198051,0,0,OIF:SA:52:2256,Europe/Paris,,OIF, +OIF:SP:52:2257,1,"Mairie",48.704467,3.198106,0,0,OIF:SA:52:2256,Europe/Paris,,OIF, +OIF:SP:52:2278,1,"8 Grande Rue",48.629309,3.02142,0,0,OIF:SA:52:2278,Europe/Paris,,OIF, +OIF:SP:52:2279,1,"8 Grande Rue",48.629236,3.0215,0,0,OIF:SA:52:2278,Europe/Paris,,OIF, +OIF:SP:52:2280,1,"Mairie",48.627823,3.020329,0,0,OIF:SA:52:2280,Europe/Paris,,OIF, +OIF:SP:52:2281,1,"Mairie",48.627823,3.020261,0,0,OIF:SA:52:2280,Europe/Paris,,OIF, +OIF:SP:52:2294,1,"Mairie",48.842773,3.029221,0,0,OIF:SA:52:2294,Europe/Paris,,OIF, +OIF:SP:52:2295,1,"Mairie",48.842836,3.029167,0,0,OIF:SA:52:2294,Europe/Paris,,OIF, +OIF:SP:52:2296,1,"Corbeville",48.84544,3.021766,0,0,OIF:SA:52:2296,Europe/Paris,,OIF, +OIF:SP:52:2297,1,"Corbeville",48.845441,3.021685,0,0,OIF:SA:52:2296,Europe/Paris,,OIF, +OIF:SP:52:2298,1,"Francheville",48.855402,3.042737,0,0,OIF:SA:52:2298,Europe/Paris,,OIF, +OIF:SP:52:2299,1,"Francheville",48.855411,3.042696,0,0,OIF:SA:52:2298,Europe/Paris,,OIF, +OIF:SP:52:2300,1,"Malmaison",48.870932,3.041477,0,0,OIF:SA:52:2300,Europe/Paris,,OIF, +OIF:SP:52:2301,1,"Malmaison",48.870923,3.041422,0,0,OIF:SA:52:2300,Europe/Paris,,OIF, +OIF:SP:52:2302,1,"Réthorée / Épineuse",48.86318,3.043647,0,0,OIF:SA:52:2302,Europe/Paris,,OIF, +OIF:SP:52:2303,1,"Réthorée / Épineuse",48.86319,3.043592,0,0,OIF:SA:52:2302,Europe/Paris,,OIF, +OIF:SP:52:2336,1,"Mairie Annexe",48.579945,2.990003,0,0,OIF:SA:52:2336,Europe/Paris,,OIF, +OIF:SP:52:2337,1,"Mairie Annexe",48.579963,2.989881,0,0,OIF:SA:52:2336,Europe/Paris,,OIF, +OIF:SP:52:2344,1,"Groupe Scolaire",48.583381,2.968096,0,0,OIF:SA:52:2344,Europe/Paris,,OIF, +OIF:SP:52:2345,1,"Groupe Scolaire",48.583479,2.968138,0,0,OIF:SA:52:2344,Europe/Paris,,OIF, +OIF:SP:52:2361,1,"Église",48.739827,2.739064,0,0,OIF:SA:48:5187,Europe/Paris,,OIF, +OIF:SP:52:2362,1,"Église",48.739773,2.739118,0,0,OIF:SA:48:5187,Europe/Paris,,OIF, +OIF:SP:52:2386,1,"Victor Hugo",48.739673,2.723299,0,0,OIF:SA:48:5217,Europe/Paris,,OIF, +OIF:SP:52:2387,1,"Victor Hugo",48.739628,2.723285,0,0,OIF:SA:48:5217,Europe/Paris,,OIF, +OIF:SP:52:2398,1,"Petit Grisy",48.678942,2.657951,0,0,OIF:SA:13:241,Europe/Paris,,OIF, +OIF:SP:52:2399,1,"Petit Grisy",48.678915,2.658005,0,0,OIF:SA:13:241,Europe/Paris,,OIF, +OIF:SP:52:2400,1,"Village",48.684205,2.666441,0,0,OIF:SA:13:297,Europe/Paris,,OIF, +OIF:SP:52:2401,1,"Village",48.684213,2.666495,0,0,OIF:SA:13:297,Europe/Paris,,OIF, +OIF:SP:52:2410,1,"Pommeraie",48.825445,2.955605,0,0,OIF:SA:52:2410,Europe/Paris,,OIF, +OIF:SP:52:2411,1,"Pommeraie",48.825498,2.95566,0,0,OIF:SA:52:2410,Europe/Paris,,OIF, +OIF:SP:52:2412,1,"Le Charnoy",48.834234,2.961019,0,0,OIF:SA:52:2412,Europe/Paris,,OIF, +OIF:SP:52:2413,1,"Le Charnoy",48.834197,2.9611,0,0,OIF:SA:52:2412,Europe/Paris,,OIF, +OIF:SP:52:2416,1,"Charnoy Lotissement",48.832502,2.957091,0,0,OIF:SA:52:2416,Europe/Paris,,OIF, +OIF:SP:52:2417,1,"Charnoy Lotissement",48.832456,2.957131,0,0,OIF:SA:52:2416,Europe/Paris,,OIF, +OIF:SP:52:2420,1,"Courtry Château d'Eau",48.805075,2.945755,0,0,OIF:SA:52:2420,Europe/Paris,,OIF, +OIF:SP:52:2421,1,"Courtry Château d'Eau",48.804958,2.945795,0,0,OIF:SA:52:2420,Europe/Paris,,OIF, +OIF:SP:52:2422,1,"Gare SNCF",48.811482,2.956377,0,0,OIF:SA:8711626,Europe/Paris,,OIF, +OIF:SP:52:2423,1,"Gare SNCF",48.8115,2.956337,0,0,OIF:SA:8711626,Europe/Paris,,OIF, +OIF:SP:52:2424,1,"Gennevray",48.809947,2.95082,0,0,OIF:SA:52:2424,Europe/Paris,,OIF, +OIF:SP:52:2425,1,"Gennevray",48.809947,2.950916,0,0,OIF:SA:52:2424,Europe/Paris,,OIF, +OIF:SP:52:2428,1,"Montbrieux Fontaine",48.827522,2.950293,0,0,OIF:SA:52:14791,Europe/Paris,,OIF, +OIF:SP:52:2429,1,"Montbrieux",48.825207,2.947734,0,0,OIF:SA:52:2429,Europe/Paris,,OIF, +OIF:SP:52:2430,1,"Montbrieux",48.825171,2.947733,0,0,OIF:SA:52:2429,Europe/Paris,,OIF, +OIF:SP:52:2433,1,"Monthérand",48.830487,2.929118,0,0,OIF:SA:52:2433,Europe/Paris,,OIF, +OIF:SP:52:2434,1,"Monthérand",48.830433,2.929104,0,0,OIF:SA:52:2433,Europe/Paris,,OIF, +OIF:SP:52:2435,1,"Rouilly le Bas",48.827316,2.968872,0,0,OIF:SA:52:2435,Europe/Paris,,OIF, +OIF:SP:52:2436,1,"Rouilly le Bas",48.827361,2.968914,0,0,OIF:SA:52:2435,Europe/Paris,,OIF, +OIF:SP:52:2437,1,"Saint-Blandin",48.835689,2.988008,0,0,OIF:SA:52:2437,Europe/Paris,,OIF, +OIF:SP:52:2438,1,"Saint-Blandin",48.835698,2.988063,0,0,OIF:SA:52:2437,Europe/Paris,,OIF, +OIF:SP:52:2439,1,"Tennis",48.82215,2.958274,0,0,OIF:SA:52:2439,Europe/Paris,,OIF, +OIF:SP:52:2440,1,"Tennis",48.822151,2.958111,0,0,OIF:SA:52:2439,Europe/Paris,,OIF, +OIF:SP:52:2458,1,"Église",48.636358,2.798035,0,0,OIF:SA:13:97,Europe/Paris,,OIF, +OIF:SP:52:2459,1,"Église",48.636747,2.797279,0,0,OIF:SA:13:97,Europe/Paris,,OIF, +OIF:SP:52:2460,1,"Les Sablons",48.633231,2.804585,0,0,OIF:SA:13:129,Europe/Paris,,OIF, +OIF:SP:52:2461,1,"Les Sablons",48.633357,2.804586,0,0,OIF:SA:13:129,Europe/Paris,,OIF, +OIF:SP:52:2473,1,"Bourg",48.765874,2.966915,0,0,OIF:SA:52:2473,Europe/Paris,,OIF, +OIF:SP:52:2474,1,"Bourg",48.765911,2.966847,0,0,OIF:SA:52:2473,Europe/Paris,,OIF, +OIF:SP:52:2475,1,"Les Tournelles",48.776331,2.950913,0,0,OIF:SA:52:2475,Europe/Paris,,OIF, +OIF:SP:52:2477,1,"Église",48.881686,3.001491,0,0,OIF:SA:47:15027,Europe/Paris,,OIF, +OIF:SP:52:2478,1,"Église",48.881632,3.001463,0,0,OIF:SA:47:15027,Europe/Paris,,OIF, +OIF:SP:52:2498,1,"Centre",48.901083,3.307558,0,0,OIF:SA:47:2496,Europe/Paris,,OIF, +OIF:SP:52:2499,1,"Centre",48.90102,3.30753,0,0,OIF:SA:47:2496,Europe/Paris,,OIF, +OIF:SP:52:2515,1,"Place Augereau",48.753995,2.874864,0,0,OIF:SA:48:5237,Europe/Paris,,OIF, +OIF:SP:52:2516,1,"Place Augereau",48.753986,2.874715,0,0,OIF:SA:48:5237,Europe/Paris,,OIF, +OIF:SP:52:2572,1,"Bicêtre",48.923317,3.123815,0,0,OIF:SA:52:2572,Europe/Paris,,OIF, +OIF:SP:52:2573,1,"Bicêtre",48.923425,3.123817,0,0,OIF:SA:52:2572,Europe/Paris,,OIF, +OIF:SP:52:2576,1,"Les Corbiers",48.928969,3.103277,0,0,OIF:SA:52:2576,Europe/Paris,,OIF, +OIF:SP:52:2580,1,"Fontaine Rougeau / Hôpital",48.928896,3.126873,0,0,OIF:SA:52:2580,Europe/Paris,,OIF, +OIF:SP:52:2581,1,"Fontaine Rougeau / Hôpital",48.92858,3.127141,0,0,OIF:SA:52:2580,Europe/Paris,,OIF, +OIF:SP:52:2582,1,"Fringale",48.895317,3.099522,0,0,OIF:SA:52:2582,Europe/Paris,,OIF, +OIF:SP:52:2584,1,"Glairet",48.915211,3.119601,0,0,OIF:SA:52:2584,Europe/Paris,,OIF, +OIF:SP:52:2592,1,"Place",48.926217,3.129656,0,0,OIF:SA:52:2592,Europe/Paris,,OIF, +OIF:SP:52:2593,1,"Place",48.926305,3.129971,0,0,OIF:SA:52:2592,Europe/Paris,,OIF, +OIF:SP:52:2594,1,"Romeny",48.916017,3.147022,0,0,OIF:SA:52:2594,Europe/Paris,,OIF, +OIF:SP:52:2620,1,"Champgoulin",48.791808,3.256229,0,0,OIF:SA:8743091,Europe/Paris,,OIF, +OIF:SP:52:2621,1,"Champgoulin",48.791763,3.256228,0,0,OIF:SA:8743091,Europe/Paris,,OIF, +OIF:SP:52:2624,1,"La Chair aux Gens",48.794541,3.283527,0,0,OIF:SA:52:2624,Europe/Paris,,OIF, +OIF:SP:52:2625,1,"La Chair aux Gens",48.794515,3.283499,0,0,OIF:SA:52:2624,Europe/Paris,,OIF, +OIF:SP:52:2626,1,"Le Hardroit",48.804245,3.279527,0,0,OIF:SA:52:2626,Europe/Paris,,OIF, +OIF:SP:52:2627,1,"Le Hardroit",48.804363,3.279393,0,0,OIF:SA:52:2626,Europe/Paris,,OIF, +OIF:SP:52:2629,1,"Le Jariel",48.807268,3.297163,0,0,OIF:SA:52:2628,Europe/Paris,,OIF, +OIF:SP:52:2630,1,"Montigny",48.792714,3.291792,0,0,OIF:SA:52:2630,Europe/Paris,,OIF, +OIF:SP:52:2631,1,"Montigny",48.792723,3.291738,0,0,OIF:SA:52:2630,Europe/Paris,,OIF, +OIF:SP:52:2633,1,"Pinebart",48.818119,3.29799,0,0,OIF:SA:52:2632,Europe/Paris,,OIF, +OIF:SP:52:2636,1,"Voigny",48.805695,3.26321,0,0,OIF:SA:52:2636,Europe/Paris,,OIF, +OIF:SP:52:2637,1,"Voigny",48.805659,3.263169,0,0,OIF:SA:52:2636,Europe/Paris,,OIF, +OIF:SP:52:2741,1,"Centre",48.76252,3.345079,0,0,OIF:SA:52:2741,Europe/Paris,,OIF, +OIF:SP:52:2742,1,"Centre",48.762413,3.344968,0,0,OIF:SA:52:2741,Europe/Paris,,OIF, +OIF:SP:52:2788,1,"Michenon",48.733641,3.271139,0,0,OIF:SA:52:2788,Europe/Paris,,OIF, +OIF:SP:52:2789,1,"Michenon",48.733588,3.271097,0,0,OIF:SA:52:2788,Europe/Paris,,OIF, +OIF:SP:52:2803,1,"Gare RER",48.628814,2.567937,0,0,OIF:SA:8768215,Europe/Paris,,OIF, +OIF:SP:52:2804,1,"Gare RER",48.628724,2.567937,0,0,OIF:SA:8768215,Europe/Paris,,OIF, +OIF:SP:52:2823,1,"Mairie",48.62686,2.664463,0,0,OIF:SA:52:2823,Europe/Paris,,OIF, +OIF:SP:52:2824,1,"Fourches",48.625699,2.681053,0,0,OIF:SA:52:2824,Europe/Paris,,OIF, +OIF:SP:52:2825,1,"Fourches",48.625663,2.681067,0,0,OIF:SA:52:2824,Europe/Paris,,OIF, +OIF:SP:52:2826,1,"Mairie",48.626851,2.664409,0,0,OIF:SA:52:2823,Europe/Paris,,OIF, +OIF:SP:52:2827,1,"Église",48.625983,2.694466,0,0,OIF:SA:52:2827,Europe/Paris,,OIF, +OIF:SP:52:2828,1,"Église",48.626,2.69452,0,0,OIF:SA:52:2827,Europe/Paris,,OIF, +OIF:SP:52:2913,1,"Champlet",48.728158,2.951471,0,0,OIF:SA:52:2913,Europe/Paris,,OIF, +OIF:SP:52:2914,1,"Champlet",48.728185,2.951594,0,0,OIF:SA:52:2913,Europe/Paris,,OIF, +OIF:SP:52:2915,1,"Lumigny Église",48.736983,2.951793,0,0,OIF:SA:52:2915,Europe/Paris,,OIF, +OIF:SP:52:2916,1,"Lumigny Église",48.73701,2.951834,0,0,OIF:SA:52:2915,Europe/Paris,,OIF, +OIF:SP:52:2925,1,"Nesles Château d'Eau",48.701947,2.96352,0,0,OIF:SA:52:2925,Europe/Paris,,OIF, +OIF:SP:52:2926,1,"Nesles Château d'Eau",48.701884,2.963505,0,0,OIF:SA:52:2925,Europe/Paris,,OIF, +OIF:SP:52:2927,1,"Nesles École",48.701585,2.968988,0,0,OIF:SA:52:2927,Europe/Paris,,OIF, +OIF:SP:52:2928,1,"Nesles École",48.701621,2.968948,0,0,OIF:SA:52:2927,Europe/Paris,,OIF, +OIF:SP:52:2929,1,"Ormeaux École",48.718573,2.989082,0,0,OIF:SA:52:2929,Europe/Paris,,OIF, +OIF:SP:52:2930,1,"Ormeaux École",48.718555,2.98915,0,0,OIF:SA:52:2929,Europe/Paris,,OIF, +OIF:SP:52:2956,1,"Place",48.549751,2.700685,0,0,OIF:SA:52:2956,Europe/Paris,,OIF, +OIF:SP:52:2957,1,"Place",48.549796,2.700672,0,0,OIF:SA:52:2956,Europe/Paris,,OIF, +OIF:SP:52:2958,1,"Place des Lilas",48.866683,2.992212,0,0,OIF:SA:52:2958,Europe/Paris,,OIF, +OIF:SP:52:2959,1,"Place des Lilas",48.86662,2.992197,0,0,OIF:SA:52:2958,Europe/Paris,,OIF, +OIF:SP:52:2960,1,"Salle des Fêtes",48.862733,2.991426,0,0,OIF:SA:52:2960,Europe/Paris,,OIF, +OIF:SP:52:2961,1,"Salle des Fêtes",48.862687,2.99148,0,0,OIF:SA:52:2960,Europe/Paris,,OIF, +OIF:SP:52:3009,1,"Croix Saint-Pierre",48.715631,2.86902,0,0,OIF:SA:48:5171,Europe/Paris,,OIF, +OIF:SP:52:3010,1,"Croix Saint-Pierre",48.715746,2.86932,0,0,OIF:SA:48:5171,Europe/Paris,,OIF, +OIF:SP:52:3011,1,"Gare SNCF",48.733669,2.867506,0,0,OIF:SA:8711622,Europe/Paris,,OIF, +OIF:SP:52:3012,1,"Gare SNCF",48.733669,2.867384,0,0,OIF:SA:8711622,Europe/Paris,,OIF, +OIF:SP:52:3017,1,"Mairie",48.728564,2.879288,0,0,OIF:SA:48:5312,Europe/Paris,,OIF, +OIF:SP:52:3018,1,"Mairie",48.728518,2.879437,0,0,OIF:SA:48:5312,Europe/Paris,,OIF, +OIF:SP:52:3019,1,"Square du Marchais",48.728493,2.884885,0,0,OIF:SA:52:3019,Europe/Paris,,OIF, +OIF:SP:52:3020,1,"Square du Marchais",48.728448,2.884953,0,0,OIF:SA:52:3019,Europe/Paris,,OIF, +OIF:SP:52:3026,1,"Ranchien",48.767499,3.150757,0,0,OIF:SA:52:3026,Europe/Paris,,OIF, +OIF:SP:52:3027,1,"Ranchien",48.767472,3.150784,0,0,OIF:SA:52:3026,Europe/Paris,,OIF, +OIF:SP:52:3028,1,"Stop D111",48.7814,3.161747,0,0,OIF:SA:52:14523,Europe/Paris,,OIF, +OIF:SP:52:3048,1,"D 402",48.768668,3.039274,0,0,OIF:SA:52:3048,Europe/Paris,,OIF, +OIF:SP:52:3049,1,"D 402",48.768596,3.039301,0,0,OIF:SA:52:3048,Europe/Paris,,OIF, +OIF:SP:52:3050,1,"Église",48.76788,3.038815,0,0,OIF:SA:52:3050,Europe/Paris,,OIF, +OIF:SP:52:3051,1,"Église",48.767916,3.038843,0,0,OIF:SA:52:3050,Europe/Paris,,OIF, +OIF:SP:52:3052,1,"Mairie",48.769158,3.036983,0,0,OIF:SA:52:3052,Europe/Paris,,OIF, +OIF:SP:52:3053,1,"Mairie",48.769132,3.036942,0,0,OIF:SA:52:3052,Europe/Paris,,OIF, +OIF:SP:52:3144,1,"Gare Routière",48.957193,2.873892,0,0,OIF:SA:8711610,Europe/Paris,,OIF, +OIF:SP:52:3145,1,"Gare Routière",48.956985,2.874027,0,0,OIF:SA:8711610,Europe/Paris,,OIF, +OIF:SP:52:3192,1,"Marché",48.955219,2.879112,0,0,OIF:SA:47:3192,Europe/Paris,,OIF, +OIF:SP:52:3244,1,"Plein Ciel",48.548463,2.644608,0,0,OIF:SA:27:234,Europe/Paris,,OIF, +OIF:SP:52:3245,1,"Plein Ciel",48.548427,2.644608,0,0,OIF:SA:27:234,Europe/Paris,,OIF, +OIF:SP:52:3248,1,"Place",48.789055,3.421679,0,0,OIF:SA:52:3248,Europe/Paris,,OIF, +OIF:SP:52:3249,1,"Place",48.788972,3.421949,0,0,OIF:SA:52:3248,Europe/Paris,,OIF, +OIF:SP:52:3250,1,"Gare",48.784089,3.417236,0,0,OIF:SA:52:3250,Europe/Paris,,OIF, +OIF:SP:52:3251,1,"Gare",48.784061,3.417304,0,0,OIF:SA:52:3250,Europe/Paris,,OIF, +OIF:SP:52:3252,1,"Les Mongets",48.78919,3.399753,0,0,OIF:SA:52:3252,Europe/Paris,,OIF, +OIF:SP:52:3253,1,"Les Mongets",48.789235,3.399726,0,0,OIF:SA:52:3252,Europe/Paris,,OIF, +OIF:SP:52:3256,1,"André Malraux",48.550517,2.66638,0,0,OIF:SA:8750203,Europe/Paris,,OIF, +OIF:SP:52:3259,1,"Avenue de Meaux",48.545952,2.662465,0,0,OIF:SA:27:198,Europe/Paris,,OIF, +OIF:SP:52:3260,1,"Avenue de Meaux",48.545997,2.662574,0,0,OIF:SA:27:198,Europe/Paris,,OIF, +OIF:SP:52:3261,1,"Branly",48.551158,2.661942,0,0,OIF:SA:27:37,Europe/Paris,,OIF, +OIF:SP:52:3262,1,"Branly",48.551113,2.661942,0,0,OIF:SA:27:37,Europe/Paris,,OIF, +OIF:SP:52:3266,1,"Pierre Brossolette",48.545122,2.676297,0,0,OIF:SA:27:42,Europe/Paris,,OIF, +OIF:SP:52:3268,1,"Bancel",48.541298,2.661312,0,0,OIF:SA:27:23,Europe/Paris,,OIF, +OIF:SP:52:3269,1,"Bancel",48.541298,2.661407,0,0,OIF:SA:27:23,Europe/Paris,,OIF, +OIF:SP:52:3287,1,"Trois Horloges",48.550066,2.657088,0,0,OIF:SA:28:123,Europe/Paris,,OIF, +OIF:SP:52:3288,1,"Trois Horloges",48.550038,2.65725,0,0,OIF:SA:28:123,Europe/Paris,,OIF, +OIF:SP:52:3290,1,"Place Saint-Jean",48.539209,2.662545,0,0,OIF:SA:27:278,Europe/Paris,,OIF, +OIF:SP:52:3291,1,"Place Saint-Jean",48.539039,2.662422,0,0,OIF:SA:27:278,Europe/Paris,,OIF, +OIF:SP:52:3294,1,"Route de Nangis",48.541366,2.678858,0,0,OIF:SA:52:3294,Europe/Paris,,OIF, +OIF:SP:52:3295,1,"Route de Nangis",48.541393,2.678844,0,0,OIF:SA:52:3294,Europe/Paris,,OIF, +OIF:SP:52:3347,1,"École",48.563074,2.73694,0,0,OIF:SA:52:3347,Europe/Paris,,OIF, +OIF:SP:52:3349,1,"Petit Moisenay",48.565417,2.748281,0,0,OIF:SA:52:3349,Europe/Paris,,OIF, +OIF:SP:52:3431,1,"Le Tilleul",48.85052,3.426573,0,0,OIF:SA:47:14797,Europe/Paris,,OIF, +OIF:SP:52:3432,1,"Le Tilleul",48.85051,3.426668,0,0,OIF:SA:47:14797,Europe/Paris,,OIF, +OIF:SP:52:3436,1,"Bois Retz",48.847069,3.413617,0,0,OIF:SA:47:14799,Europe/Paris,,OIF, +OIF:SP:52:3437,1,"Bois Retz",48.847076,3.413863,0,0,OIF:SA:47:14799,Europe/Paris,,OIF, +OIF:SP:52:3438,1,"Les Boblins",48.843322,3.428315,0,0,OIF:SA:52:3438,Europe/Paris,,OIF, +OIF:SP:52:3439,1,"Les Boblins",48.843312,3.428397,0,0,OIF:SA:52:3438,Europe/Paris,,OIF, +OIF:SP:52:3535,1,"Montereau",48.591735,2.669175,0,0,OIF:SA:27:405,Europe/Paris,,OIF, +OIF:SP:52:3536,1,"Montereau",48.591699,2.669296,0,0,OIF:SA:27:405,Europe/Paris,,OIF, +OIF:SP:52:3537,1,"Aubigny",48.596973,2.685918,0,0,OIF:SA:27:408,Europe/Paris,,OIF, +OIF:SP:52:3538,1,"Aubigny",48.596928,2.685918,0,0,OIF:SA:27:408,Europe/Paris,,OIF, +OIF:SP:52:3571,1,"Mairie",48.829493,3.439501,0,0,OIF:SA:47:14793,Europe/Paris,,OIF, +OIF:SP:52:3572,1,"Mairie",48.829492,3.43961,0,0,OIF:SA:47:14793,Europe/Paris,,OIF, +OIF:SP:52:3573,1,"Primefosse",48.828817,3.421162,0,0,OIF:SA:47:14791,Europe/Paris,,OIF, +OIF:SP:52:3574,1,"Primefosse",48.828745,3.421174,0,0,OIF:SA:47:14791,Europe/Paris,,OIF, +OIF:SP:52:3575,1,"Thiercelieux",48.825507,3.403532,0,0,OIF:SA:47:14789,Europe/Paris,,OIF, +OIF:SP:52:3576,1,"Thiercelieux",48.825524,3.403587,0,0,OIF:SA:47:14789,Europe/Paris,,OIF, +OIF:SP:52:3598,1,"Collège Nicolas Fouquet",48.609289,2.881069,0,0,OIF:SA:52:3598,Europe/Paris,,OIF, +OIF:SP:52:3599,1,"Collège Nicolas Fouquet",48.609263,2.881014,0,0,OIF:SA:52:3598,Europe/Paris,,OIF, +OIF:SP:52:3600,1,"Mairie / RN 19",48.6067,2.890788,0,0,OIF:SA:52:3600,Europe/Paris,,OIF, +OIF:SP:52:3601,1,"Mairie / RN 19",48.606664,2.89076,0,0,OIF:SA:52:3600,Europe/Paris,,OIF, +OIF:SP:52:3604,1,"Gare SNCF",48.612889,2.889905,0,0,OIF:SA:8711608,Europe/Paris,,OIF, +OIF:SP:52:3605,1,"Gare SNCF",48.612889,2.88985,0,0,OIF:SA:8711608,Europe/Paris,,OIF, +OIF:SP:52:3606,1,"ZA et de Commerces",48.611236,2.887826,0,0,OIF:SA:52:3606,Europe/Paris,,OIF, +OIF:SP:52:3607,1,"ZA et de Commerces",48.611316,2.88799,0,0,OIF:SA:52:3606,Europe/Paris,,OIF, +OIF:SP:52:3608,1,"Jean Jaurès",48.605161,2.896912,0,0,OIF:SA:52:3608,Europe/Paris,,OIF, +OIF:SP:52:3609,1,"Jean Jaurès",48.605161,2.896844,0,0,OIF:SA:52:3608,Europe/Paris,,OIF, +OIF:SP:52:3610,1,"Lady",48.58323,2.894305,0,0,OIF:SA:52:3610,Europe/Paris,,OIF, +OIF:SP:52:3611,1,"Lady",48.583221,2.894359,0,0,OIF:SA:52:3610,Europe/Paris,,OIF, +OIF:SP:52:3612,1,"Mairie",48.60681,2.890274,0,0,OIF:SA:52:3612,Europe/Paris,,OIF, +OIF:SP:52:3613,1,"Mairie",48.606569,2.889919,0,0,OIF:SA:52:3612,Europe/Paris,,OIF, +OIF:SP:52:3617,1,"Rouvray",48.596534,2.860945,0,0,OIF:SA:52:3617,Europe/Paris,,OIF, +OIF:SP:52:3618,1,"Rouvray",48.596507,2.860958,0,0,OIF:SA:52:3617,Europe/Paris,,OIF, +OIF:SP:52:3619,1,"Boulangerie",48.789674,2.916043,0,0,OIF:SA:52:3619,Europe/Paris,,OIF, +OIF:SP:52:3620,1,"Boulangerie",48.789692,2.91592,0,0,OIF:SA:52:3619,Europe/Paris,,OIF, +OIF:SP:52:3623,1,"Place",48.789669,2.916995,0,0,OIF:SA:52:3623,Europe/Paris,,OIF, +OIF:SP:52:3624,1,"Place",48.789597,2.916953,0,0,OIF:SA:52:3623,Europe/Paris,,OIF, +OIF:SP:52:3633,1,"Belle Croix",48.814231,3.071982,0,0,OIF:SA:52:3633,Europe/Paris,,OIF, +OIF:SP:52:3634,1,"Belle Croix",48.814214,3.071805,0,0,OIF:SA:52:3633,Europe/Paris,,OIF, +OIF:SP:52:3637,1,"Belle Idée",48.822763,3.043328,0,0,OIF:SA:52:3637,Europe/Paris,,OIF, +OIF:SP:52:3638,1,"Belle Idée",48.822263,3.044301,0,0,OIF:SA:52:3637,Europe/Paris,,OIF, +OIF:SP:52:3641,1,"Bois Guyot",48.821968,3.047087,0,0,OIF:SA:52:3641,Europe/Paris,,OIF, +OIF:SP:52:3642,1,"Bois Guyot",48.821986,3.046992,0,0,OIF:SA:52:3641,Europe/Paris,,OIF, +OIF:SP:52:3645,1,"Boussois Lavoir",48.831144,3.034974,0,0,OIF:SA:52:3645,Europe/Paris,,OIF, +OIF:SP:52:3646,1,"Boussois Lavoir",48.831127,3.03496,0,0,OIF:SA:52:3645,Europe/Paris,,OIF, +OIF:SP:52:3651,1,"Collège Georges Sand",48.821796,3.035134,0,0,OIF:SA:52:3651,Europe/Paris,,OIF, +OIF:SP:52:3652,1,"Collège Georges Sand",48.821795,3.035202,0,0,OIF:SA:52:3651,Europe/Paris,,OIF, +OIF:SP:52:3653,1,"Courrois Lavoir",48.80572,3.054159,0,0,OIF:SA:52:3653,Europe/Paris,,OIF, +OIF:SP:52:3654,1,"Courrois Lavoir",48.8058,3.054214,0,0,OIF:SA:52:3653,Europe/Paris,,OIF, +OIF:SP:52:3655,1,"Chicotets",48.827088,3.037029,0,0,OIF:SA:52:3655,Europe/Paris,,OIF, +OIF:SP:52:3656,1,"Chicotets",48.827106,3.036934,0,0,OIF:SA:52:3655,Europe/Paris,,OIF, +OIF:SP:52:3659,1,"Gare SNCF",48.814264,3.042763,0,0,OIF:SA:8711628,Europe/Paris,,OIF, +OIF:SP:52:3660,1,"Gare SNCF",48.814191,3.04283,0,0,OIF:SA:8711628,Europe/Paris,,OIF, +OIF:SP:52:3667,1,"Craboche",48.823009,3.05629,0,0,OIF:SA:52:3667,Europe/Paris,,OIF, +OIF:SP:52:3668,1,"Craboche",48.823108,3.05625,0,0,OIF:SA:52:3667,Europe/Paris,,OIF, +OIF:SP:52:3669,1,"Mitheuil Lavoir",48.821537,3.060475,0,0,OIF:SA:52:3669,Europe/Paris,,OIF, +OIF:SP:52:3670,1,"Mitheuil Lavoir",48.821582,3.060476,0,0,OIF:SA:52:3669,Europe/Paris,,OIF, +OIF:SP:52:3671,1,"Mitheuil RD 934",48.818564,3.052621,0,0,OIF:SA:52:3671,Europe/Paris,,OIF, +OIF:SP:52:3672,1,"Mitheuil RD 934",48.818366,3.052741,0,0,OIF:SA:52:3671,Europe/Paris,,OIF, +OIF:SP:52:3675,1,"Montblu Château",48.827143,3.072519,0,0,OIF:SA:52:3675,Europe/Paris,,OIF, +OIF:SP:52:3676,1,"Montblu Château",48.827188,3.072506,0,0,OIF:SA:52:3675,Europe/Paris,,OIF, +OIF:SP:52:3677,1,"Montblu Chemin",48.826065,3.06808,0,0,OIF:SA:52:14717,Europe/Paris,,OIF, +OIF:SP:52:3683,1,"Parrichets Écoles",48.804849,3.064257,0,0,OIF:SA:52:14580,Europe/Paris,,OIF, +OIF:SP:52:3684,1,"Parrichets Lavoir",48.803594,3.063804,0,0,OIF:SA:52:3684,Europe/Paris,,OIF, +OIF:SP:52:3685,1,"Parrichets Lavoir",48.803929,3.063427,0,0,OIF:SA:52:3684,Europe/Paris,,OIF, +OIF:SP:52:3686,1,"Place de la Mairie",48.821576,3.03735,0,0,OIF:SA:52:3686,Europe/Paris,,OIF, +OIF:SP:52:3687,1,"Place de la Mairie",48.821593,3.037609,0,0,OIF:SA:52:3686,Europe/Paris,,OIF, +OIF:SP:52:3692,1,"Villeperdue",48.816213,3.041483,0,0,OIF:SA:52:3692,Europe/Paris,,OIF, +OIF:SP:52:3693,1,"Villeperdue",48.816177,3.041374,0,0,OIF:SA:52:3692,Europe/Paris,,OIF, +OIF:SP:52:3694,1,"Voisins Lavoir",48.828968,3.030561,0,0,OIF:SA:52:3694,Europe/Paris,,OIF, +OIF:SP:52:3695,1,"Voisins Lavoir",48.829013,3.030548,0,0,OIF:SA:52:3694,Europe/Paris,,OIF, +OIF:SP:52:3698,1,"Voisins",48.828796,3.027741,0,0,OIF:SA:52:3698,Europe/Paris,,OIF, +OIF:SP:52:3699,1,"Voisins",48.828705,3.027957,0,0,OIF:SA:52:3698,Europe/Paris,,OIF, +OIF:SP:52:3736,1,"Maréchal Foch",48.560404,3.013432,0,0,OIF:SA:52:3736,Europe/Paris,,OIF, +OIF:SP:52:3737,1,"Maréchal Foch",48.560405,3.01331,0,0,OIF:SA:52:3736,Europe/Paris,,OIF, +OIF:SP:52:3744,1,"Lycée Henri Becquerel",48.550772,3.007823,0,0,OIF:SA:52:3744,Europe/Paris,,OIF, +OIF:SP:52:3745,1,"Lycée Henri Becquerel",48.550816,3.007877,0,0,OIF:SA:52:3744,Europe/Paris,,OIF, +OIF:SP:52:3746,1,"Monument aux Morts",48.558289,3.013838,0,0,OIF:SA:52:3746,Europe/Paris,,OIF, +OIF:SP:52:3748,1,"Collège Barthélémy",48.551932,3.015678,0,0,OIF:SA:52:3748,Europe/Paris,,OIF, +OIF:SP:52:3749,1,"Collège Barthélémy",48.551923,3.015556,0,0,OIF:SA:52:3748,Europe/Paris,,OIF, +OIF:SP:52:3758,1,"Valmy/Tyvoli",48.554916,3.018764,0,0,OIF:SA:52:3758,Europe/Paris,,OIF, +OIF:SP:52:3764,1,"Château",48.933015,2.890119,0,0,OIF:SA:47:3764,Europe/Paris,,OIF, +OIF:SP:52:3765,1,"Château",48.932673,2.89032,0,0,OIF:SA:47:3764,Europe/Paris,,OIF, +OIF:SP:52:3766,1,"Gallieni",48.926233,2.904777,0,0,OIF:SA:47:3775,Europe/Paris,,OIF, +OIF:SP:52:3767,1,"Gallieni",48.925844,2.905236,0,0,OIF:SA:47:3775,Europe/Paris,,OIF, +OIF:SP:52:3777,1,"La Croix",48.942174,2.884187,0,0,OIF:SA:47:3777,Europe/Paris,,OIF, +OIF:SP:52:3778,1,"La Croix",48.942624,2.884014,0,0,OIF:SA:47:3777,Europe/Paris,,OIF, +OIF:SP:52:3782,1,"Mairie",48.928749,2.897234,0,0,OIF:SA:47:14899,Europe/Paris,,OIF, +OIF:SP:52:3783,1,"Mairie",48.928831,2.897058,0,0,OIF:SA:47:14899,Europe/Paris,,OIF, +OIF:SP:52:3856,1,"Mairie",48.904583,3.228972,0,0,OIF:SA:47:3860,Europe/Paris,,OIF, +OIF:SP:52:3857,1,"Mairie",48.904619,3.229,0,0,OIF:SA:47:3860,Europe/Paris,,OIF, +OIF:SP:52:3966,1,"Les Étards",48.657025,2.751503,0,0,OIF:SA:13:105,Europe/Paris,,OIF, +OIF:SP:52:3967,1,"Les Étards",48.65698,2.751476,0,0,OIF:SA:13:105,Europe/Paris,,OIF, +OIF:SP:52:3980,1,"Mélenfroy",48.648857,3.056882,0,0,OIF:SA:52:3980,Europe/Paris,,OIF, +OIF:SP:52:3981,1,"Mélenfroy",48.648848,3.056936,0,0,OIF:SA:52:3980,Europe/Paris,,OIF, +OIF:SP:52:3982,1,"Mirvaux",48.641037,3.094198,0,0,OIF:SA:52:3982,Europe/Paris,,OIF, +OIF:SP:52:3983,1,"Mirvaux",48.640956,3.09421,0,0,OIF:SA:52:3982,Europe/Paris,,OIF, +OIF:SP:52:3994,1,"Les Grés",48.739931,2.984091,0,0,OIF:SA:52:3994,Europe/Paris,,OIF, +OIF:SP:52:3995,1,"Les Grés",48.739921,2.984186,0,0,OIF:SA:52:3994,Europe/Paris,,OIF, +OIF:SP:52:3996,1,"Mairie",48.735704,2.994298,0,0,OIF:SA:52:3996,Europe/Paris,,OIF, +OIF:SP:52:3997,1,"Mairie",48.735704,2.994243,0,0,OIF:SA:52:3996,Europe/Paris,,OIF, +OIF:SP:52:4000,1,"Station Service",48.734675,2.988578,0,0,OIF:SA:52:4000,Europe/Paris,,OIF, +OIF:SP:52:4001,1,"Station Service",48.734674,2.988645,0,0,OIF:SA:52:4000,Europe/Paris,,OIF, +OIF:SP:52:4004,1,"Les Houis",48.891547,3.038786,0,0,OIF:SA:52:4004,Europe/Paris,,OIF, +OIF:SP:52:4005,1,"Les Houis",48.891691,3.03887,0,0,OIF:SA:52:4004,Europe/Paris,,OIF, +OIF:SP:52:4008,1,"Place Saint-Claude",48.899048,3.039433,0,0,OIF:SA:47:4008,Europe/Paris,,OIF, +OIF:SP:52:4009,1,"Place Saint-Claude",48.899066,3.039515,0,0,OIF:SA:47:4008,Europe/Paris,,OIF, +OIF:SP:52:4017,1,"Mairie",48.715326,3.032305,0,0,OIF:SA:52:4017,Europe/Paris,,OIF, +OIF:SP:52:4018,1,"Mairie",48.715299,3.032305,0,0,OIF:SA:52:4017,Europe/Paris,,OIF, +OIF:SP:52:4045,1,"Charnois",48.821997,2.996752,0,0,OIF:SA:52:4045,Europe/Paris,,OIF, +OIF:SP:52:4046,1,"Charnois",48.82206,2.996821,0,0,OIF:SA:52:4045,Europe/Paris,,OIF, +OIF:SP:52:4049,1,"La Villeneuve",48.822847,2.984362,0,0,OIF:SA:52:4049,Europe/Paris,,OIF, +OIF:SP:52:4050,1,"La Villeneuve",48.822856,2.984294,0,0,OIF:SA:52:4049,Europe/Paris,,OIF, +OIF:SP:52:4051,1,"Lavanderie",48.804803,3.015883,0,0,OIF:SA:52:4051,Europe/Paris,,OIF, +OIF:SP:52:4052,1,"Lavanderie",48.804803,3.015828,0,0,OIF:SA:52:4051,Europe/Paris,,OIF, +OIF:SP:52:4053,1,"Bisset Centre",48.807543,3.020872,0,0,OIF:SA:52:4053,Europe/Paris,,OIF, +OIF:SP:52:4054,1,"Bisset Centre",48.807542,3.020926,0,0,OIF:SA:52:4053,Europe/Paris,,OIF, +OIF:SP:52:4055,1,"Cascade",48.796366,3.015391,0,0,OIF:SA:52:4055,Europe/Paris,,OIF, +OIF:SP:52:4056,1,"Cascade",48.796321,3.015364,0,0,OIF:SA:52:4055,Europe/Paris,,OIF, +OIF:SP:52:4059,1,"Église",48.816499,3.015464,0,0,OIF:SA:52:4059,Europe/Paris,,OIF, +OIF:SP:52:4060,1,"Église",48.816535,3.015424,0,0,OIF:SA:52:4059,Europe/Paris,,OIF, +OIF:SP:52:4061,1,"Tresmes Charnois",48.815411,2.994668,0,0,OIF:SA:52:14675,Europe/Paris,,OIF, +OIF:SP:52:4062,1,"Tresmes",48.812479,2.991772,0,0,OIF:SA:52:14674,Europe/Paris,,OIF, +OIF:SP:52:4206,1,"Gare SNCF",48.555736,3.302499,0,0,OIF:SA:8711616,Europe/Paris,,OIF, +OIF:SP:52:4207,1,"Gare SNCF",48.555915,3.302638,0,0,OIF:SA:8711616,Europe/Paris,,OIF, +OIF:SP:52:4263,1,"La Fermeté",48.620698,2.948915,0,0,OIF:SA:52:4263,Europe/Paris,,OIF, +OIF:SP:52:4264,1,"La Fermeté",48.620734,2.948942,0,0,OIF:SA:52:4263,Europe/Paris,,OIF, +OIF:SP:52:4265,1,"Les Loges",48.620787,2.967899,0,0,OIF:SA:52:4265,Europe/Paris,,OIF, +OIF:SP:52:4266,1,"Les Loges",48.620796,2.967953,0,0,OIF:SA:52:4265,Europe/Paris,,OIF, +OIF:SP:52:428,1,"Fontaine Ramée",48.726619,3.164832,0,0,OIF:SA:52:428,Europe/Paris,,OIF, +OIF:SP:52:429,1,"Fontaine Ramée",48.726565,3.164845,0,0,OIF:SA:52:428,Europe/Paris,,OIF, +OIF:SP:52:430,1,"Planche",48.731873,3.155146,0,0,OIF:SA:52:430,Europe/Paris,,OIF, +OIF:SP:52:431,1,"Planche",48.731865,3.154969,0,0,OIF:SA:52:430,Europe/Paris,,OIF, +OIF:SP:52:4318,1,"Général de Gaulle",48.847142,3.228828,0,0,OIF:SA:52:4318,Europe/Paris,,OIF, +OIF:SP:52:432,1,"Montbauchet",48.739942,3.138434,0,0,OIF:SA:52:432,Europe/Paris,,OIF, +OIF:SP:52:4320,1,"Collège Jacques Prévert",48.84969,3.238964,0,0,OIF:SA:52:4320,Europe/Paris,,OIF, +OIF:SP:52:4321,1,"Collège Jacques Prévert",48.84969,3.238964,0,0,OIF:SA:52:4320,Europe/Paris,,OIF, +OIF:SP:52:4322,1,"Promenade du Nord",48.848096,3.233516,0,0,OIF:SA:52:4322,Europe/Paris,,OIF, +OIF:SP:52:4324,1,"Giblois / Curie",48.849071,3.229243,0,0,OIF:SA:52:4324,Europe/Paris,,OIF, +OIF:SP:52:4325,1,"Giblois / Curie",48.849108,3.229216,0,0,OIF:SA:52:4324,Europe/Paris,,OIF, +OIF:SP:52:4326,1,"La Boyère",48.868881,3.236369,0,0,OIF:SA:52:4326,Europe/Paris,,OIF, +OIF:SP:52:4327,1,"La Boyère",48.868874,3.236191,0,0,OIF:SA:52:4326,Europe/Paris,,OIF, +OIF:SP:52:4328,1,"Mairie",48.846157,3.231916,0,0,OIF:SA:52:4328,Europe/Paris,,OIF, +OIF:SP:52:4329,1,"Mairie",48.846157,3.231916,0,0,OIF:SA:52:4328,Europe/Paris,,OIF, +OIF:SP:52:433,1,"Montbauchet",48.739897,3.138406,0,0,OIF:SA:52:432,Europe/Paris,,OIF, +OIF:SP:52:4330,1,"Maternelle / Primaire",48.848644,3.233525,0,0,OIF:SA:52:14680,Europe/Paris,,OIF, +OIF:SP:52:434,1,"Fontenelle",48.750906,3.136102,0,0,OIF:SA:52:434,Europe/Paris,,OIF, +OIF:SP:52:435,1,"Fontenelle",48.750916,3.136021,0,0,OIF:SA:52:434,Europe/Paris,,OIF, +OIF:SP:52:436,1,"Sillos/D209",48.740694,3.109023,0,0,OIF:SA:52:436,Europe/Paris,,OIF, +OIF:SP:52:437,1,"Sillos/D209",48.740604,3.109008,0,0,OIF:SA:52:436,Europe/Paris,,OIF, +OIF:SP:52:438,1,"La Tuilerie",48.740138,3.117182,0,0,OIF:SA:52:438,Europe/Paris,,OIF, +OIF:SP:52:439,1,"La Tuilerie",48.740084,3.117168,0,0,OIF:SA:52:438,Europe/Paris,,OIF, +OIF:SP:52:4418,1,"Collège les Remparts",48.683895,2.960492,0,0,OIF:SA:52:4418,Europe/Paris,,OIF, +OIF:SP:52:4419,1,"Collège les Remparts",48.683913,2.960424,0,0,OIF:SA:52:4418,Europe/Paris,,OIF, +OIF:SP:52:4426,1,"Lycée Tour des Dames",48.677648,2.968955,0,0,OIF:SA:48:5000,Europe/Paris,,OIF, +OIF:SP:52:4427,1,"Lycée Tour des Dames",48.677621,2.968914,0,0,OIF:SA:48:5000,Europe/Paris,,OIF, +OIF:SP:52:4430,1,"Saint-Nicolas",48.68152,2.959187,0,0,OIF:SA:48:5553,Europe/Paris,,OIF, +OIF:SP:52:4431,1,"Saint-Nicolas",48.681547,2.959133,0,0,OIF:SA:48:5553,Europe/Paris,,OIF, +OIF:SP:52:4436,1,"Stade",48.680788,2.96336,0,0,OIF:SA:52:4436,Europe/Paris,,OIF, +OIF:SP:52:4437,1,"Stade",48.680788,2.963305,0,0,OIF:SA:52:4436,Europe/Paris,,OIF, +OIF:SP:52:4438,1,"Groupe Scolaire",48.552686,2.677984,0,0,OIF:SA:52:4438,Europe/Paris,,OIF, +OIF:SP:52:4439,1,"Groupe Scolaire",48.552677,2.678093,0,0,OIF:SA:52:4438,Europe/Paris,,OIF, +OIF:SP:52:4440,1,"Bertagnes",48.55829,2.680025,0,0,OIF:SA:27:333,Europe/Paris,,OIF, +OIF:SP:52:4441,1,"Bertagnes",48.558281,2.680093,0,0,OIF:SA:27:333,Europe/Paris,,OIF, +OIF:SP:52:4460,1,"Mairie",48.875605,3.296112,0,0,OIF:SA:47:4460,Europe/Paris,,OIF, +OIF:SP:52:4461,1,"Mairie",48.875597,3.296044,0,0,OIF:SA:47:4460,Europe/Paris,,OIF, +OIF:SP:52:4466,1,"Barny",48.792881,3.024365,0,0,OIF:SA:52:4466,Europe/Paris,,OIF, +OIF:SP:52:4467,1,"Barny",48.792907,3.024447,0,0,OIF:SA:52:4466,Europe/Paris,,OIF, +OIF:SP:52:4468,1,"Boulangerie",48.788544,3.029776,0,0,OIF:SA:52:4468,Europe/Paris,,OIF, +OIF:SP:52:4469,1,"Boulangerie",48.788534,3.029871,0,0,OIF:SA:52:4468,Europe/Paris,,OIF, +OIF:SP:52:4470,1,"Vieilles Vignes",48.79592,3.024079,0,0,OIF:SA:52:4470,Europe/Paris,,OIF, +OIF:SP:52:4471,1,"Vieilles Vignes",48.795921,3.024025,0,0,OIF:SA:52:4470,Europe/Paris,,OIF, +OIF:SP:52:4472,1,"Entrée",48.779402,3.032986,0,0,OIF:SA:52:4472,Europe/Paris,,OIF, +OIF:SP:52:4473,1,"Entrée",48.779474,3.032933,0,0,OIF:SA:52:4472,Europe/Paris,,OIF, +OIF:SP:52:4476,1,"Bisset Entrée",48.802663,3.020671,0,0,OIF:SA:52:4476,Europe/Paris,,OIF, +OIF:SP:52:4477,1,"Bisset Entrée",48.802654,3.020739,0,0,OIF:SA:52:4476,Europe/Paris,,OIF, +OIF:SP:52:4478,1,"Mairie",48.786297,3.029801,0,0,OIF:SA:52:4478,Europe/Paris,,OIF, +OIF:SP:52:4479,1,"Mairie",48.786296,3.029855,0,0,OIF:SA:52:4478,Europe/Paris,,OIF, +OIF:SP:52:4482,1,"Rue de Brie",48.768798,3.01703,0,0,OIF:SA:52:4482,Europe/Paris,,OIF, +OIF:SP:52:4483,1,"Rue de Brie",48.76878,3.016976,0,0,OIF:SA:52:4482,Europe/Paris,,OIF, +OIF:SP:52:450,1,"Le Truizy",48.615139,2.801521,0,0,OIF:SA:52:450,Europe/Paris,,OIF, +OIF:SP:52:4506,1,"Mairie",48.816101,3.361024,0,0,OIF:SA:47:14785,Europe/Paris,,OIF, +OIF:SP:52:4507,1,"Mairie",48.816094,3.360792,0,0,OIF:SA:47:14785,Europe/Paris,,OIF, +OIF:SP:52:4508,1,"Les Trois Maisons",48.817639,3.369193,0,0,OIF:SA:47:14787,Europe/Paris,,OIF, +OIF:SP:52:4509,1,"Les Trois Maisons",48.817715,3.369794,0,0,OIF:SA:47:14787,Europe/Paris,,OIF, +OIF:SP:52:451,1,"Le Truizy",48.615085,2.801507,0,0,OIF:SA:52:450,Europe/Paris,,OIF, +OIF:SP:52:4510,1,"Lotissement",48.812935,3.358117,0,0,OIF:SA:52:4510,Europe/Paris,,OIF, +OIF:SP:52:4511,1,"Lotissement",48.812916,3.358212,0,0,OIF:SA:52:4510,Europe/Paris,,OIF, +OIF:SP:52:452,1,"Salle des Fêtes",48.612023,2.814182,0,0,OIF:SA:52:452,Europe/Paris,,OIF, +OIF:SP:52:4529,1,"Église",48.906395,3.183888,0,0,OIF:SA:47:4535,Europe/Paris,,OIF, +OIF:SP:52:453,1,"Salle des Fêtes",48.612041,2.814236,0,0,OIF:SA:52:452,Europe/Paris,,OIF, +OIF:SP:52:4530,1,"Église",48.906359,3.183929,0,0,OIF:SA:47:4535,Europe/Paris,,OIF, +OIF:SP:52:4539,1,"Les Montgoins",48.894102,3.167003,0,0,OIF:SA:52:4539,Europe/Paris,,OIF, +OIF:SP:52:4540,1,"Les Montgoins",48.894192,3.167005,0,0,OIF:SA:52:4539,Europe/Paris,,OIF, +OIF:SP:52:4551,1,"Champtareine",48.847211,3.207462,0,0,OIF:SA:52:4551,Europe/Paris,,OIF, +OIF:SP:52:4552,1,"Champtareine",48.847289,3.209071,0,0,OIF:SA:52:4551,Europe/Paris,,OIF, +OIF:SP:52:4553,1,"Place de l'Église",48.835811,3.210198,0,0,OIF:SA:52:4553,Europe/Paris,,OIF, +OIF:SP:52:4554,1,"Place de l'Église",48.835802,3.210239,0,0,OIF:SA:52:4553,Europe/Paris,,OIF, +OIF:SP:52:4556,1,"Le Menillot",48.829768,3.200839,0,0,OIF:SA:52:4556,Europe/Paris,,OIF, +OIF:SP:52:4557,1,"Le Menillot",48.829713,3.200934,0,0,OIF:SA:52:4556,Europe/Paris,,OIF, +OIF:SP:52:4558,1,"Mazagrand",48.843176,3.194935,0,0,OIF:SA:52:4558,Europe/Paris,,OIF, +OIF:SP:52:4559,1,"Mazagrand",48.843122,3.194975,0,0,OIF:SA:52:4558,Europe/Paris,,OIF, +OIF:SP:52:4587,1,"École",48.582097,2.709041,0,0,OIF:SA:52:4587,Europe/Paris,,OIF, +OIF:SP:52:4588,1,"École",48.581979,2.709243,0,0,OIF:SA:52:4587,Europe/Paris,,OIF, +OIF:SP:52:4589,1,"R.N. 36",48.583006,2.714372,0,0,OIF:SA:27:410,Europe/Paris,,OIF, +OIF:SP:52:4590,1,"R.N. 36",48.582988,2.714426,0,0,OIF:SA:27:410,Europe/Paris,,OIF, +OIF:SP:52:4591,1,"Village",48.852025,3.14556,0,0,OIF:SA:52:4591,Europe/Paris,,OIF, +OIF:SP:52:4592,1,"Village",48.852015,3.145614,0,0,OIF:SA:52:4591,Europe/Paris,,OIF, +OIF:SP:52:4595,1,"Malemboust",48.846628,3.150065,0,0,OIF:SA:52:4595,Europe/Paris,,OIF, +OIF:SP:52:4596,1,"Malemboust",48.846691,3.150066,0,0,OIF:SA:52:4595,Europe/Paris,,OIF, +OIF:SP:52:4625,1,"Mairie",48.838977,3.254191,0,0,OIF:SA:52:4625,Europe/Paris,,OIF, +OIF:SP:52:4626,1,"Champcormolin",48.826476,3.287091,0,0,OIF:SA:52:4626,Europe/Paris,,OIF, +OIF:SP:52:4627,1,"Champcormolin",48.826486,3.286996,0,0,OIF:SA:52:4626,Europe/Paris,,OIF, +OIF:SP:52:4628,1,"Châteaurenard",48.834302,3.27848,0,0,OIF:SA:52:4628,Europe/Paris,,OIF, +OIF:SP:52:4629,1,"Châteaurenard",48.834266,3.278479,0,0,OIF:SA:52:4628,Europe/Paris,,OIF, +OIF:SP:52:4630,1,"Grand Marché",48.851646,3.274341,0,0,OIF:SA:52:4630,Europe/Paris,,OIF, +OIF:SP:52:4631,1,"Grand Marché",48.851699,3.274383,0,0,OIF:SA:52:4630,Europe/Paris,,OIF, +OIF:SP:52:4632,1,"Petit Marché",48.851009,3.268405,0,0,OIF:SA:52:4632,Europe/Paris,,OIF, +OIF:SP:52:4633,1,"Petit Marché",48.851045,3.268433,0,0,OIF:SA:52:4632,Europe/Paris,,OIF, +OIF:SP:52:4634,1,"Mairie",48.839003,3.254233,0,0,OIF:SA:52:4625,Europe/Paris,,OIF, +OIF:SP:52:4649,1,"Fontenelle",48.73114,3.333287,0,0,OIF:SA:52:4649,Europe/Paris,,OIF, +OIF:SP:52:4650,1,"Fontenelle",48.731104,3.333368,0,0,OIF:SA:52:4649,Europe/Paris,,OIF, +OIF:SP:52:4651,1,"Saint-Mars Mairie",48.74145,3.320397,0,0,OIF:SA:52:4651,Europe/Paris,,OIF, +OIF:SP:52:4652,1,"Saint-Mars Mairie",48.741478,3.320289,0,0,OIF:SA:52:4651,Europe/Paris,,OIF, +OIF:SP:52:4654,1,"Vieux Maisons Mairie",48.730589,3.340071,0,0,OIF:SA:52:4654,Europe/Paris,,OIF, +OIF:SP:52:4655,1,"Vieux Maisons Mairie",48.730597,3.340125,0,0,OIF:SA:52:4654,Europe/Paris,,OIF, +OIF:SP:52:4656,1,"Villiers Templon",48.734873,3.306941,0,0,OIF:SA:52:4656,Europe/Paris,,OIF, +OIF:SP:52:4657,1,"Villiers Templon",48.734801,3.307022,0,0,OIF:SA:52:4656,Europe/Paris,,OIF, +OIF:SP:52:4660,1,"Coupigny",48.790473,3.343228,0,0,OIF:SA:52:4660,Europe/Paris,,OIF, +OIF:SP:52:4661,1,"Coupigny",48.790474,3.34316,0,0,OIF:SA:52:4660,Europe/Paris,,OIF, +OIF:SP:52:4662,1,"Lotissement",48.778937,3.326506,0,0,OIF:SA:52:4662,Europe/Paris,,OIF, +OIF:SP:52:4663,1,"Lotissement",48.778791,3.326844,0,0,OIF:SA:52:4662,Europe/Paris,,OIF, +OIF:SP:52:4664,1,"Place de l'Église",48.778095,3.335875,0,0,OIF:SA:52:4664,Europe/Paris,,OIF, +OIF:SP:52:4665,1,"Place de l'Église",48.777989,3.335696,0,0,OIF:SA:52:4664,Europe/Paris,,OIF, +OIF:SP:52:4673,1,"Église",48.578063,2.826835,0,0,OIF:SA:52:4673,Europe/Paris,,OIF, +OIF:SP:52:4674,1,"Église",48.578027,2.826822,0,0,OIF:SA:52:4673,Europe/Paris,,OIF, +OIF:SP:52:468,1,"Grands Saules",48.65201,2.866307,0,0,OIF:SA:52:468,Europe/Paris,,OIF, +OIF:SP:52:469,1,"Grands Saules",48.652037,2.86628,0,0,OIF:SA:52:468,Europe/Paris,,OIF, +OIF:SP:52:4691,1,"Place",48.903385,3.196341,0,0,OIF:SA:47:4691,Europe/Paris,,OIF, +OIF:SP:52:4692,1,"Place",48.903377,3.196163,0,0,OIF:SA:47:4691,Europe/Paris,,OIF, +OIF:SP:52:4703,1,"Église",48.792471,3.232977,0,0,OIF:SA:52:14644,Europe/Paris,,OIF, +OIF:SP:52:4704,1,"Barlonges",48.801715,3.22281,0,0,OIF:SA:52:4704,Europe/Paris,,OIF, +OIF:SP:52:4705,1,"Barlonges",48.801657,3.223353,0,0,OIF:SA:52:4704,Europe/Paris,,OIF, +OIF:SP:52:4706,1,"Les Ormeaux",48.812524,3.242415,0,0,OIF:SA:52:4706,Europe/Paris,,OIF, +OIF:SP:52:4707,1,"Les Ormeaux",48.812534,3.242265,0,0,OIF:SA:52:4706,Europe/Paris,,OIF, +OIF:SP:52:4710,1,"Montmogis",48.818938,3.244078,0,0,OIF:SA:52:4710,Europe/Paris,,OIF, +OIF:SP:52:4711,1,"Montmogis",48.818921,3.243942,0,0,OIF:SA:52:4710,Europe/Paris,,OIF, +OIF:SP:52:4712,1,"Moulin du Pont",48.805012,3.235017,0,0,OIF:SA:52:4712,Europe/Paris,,OIF, +OIF:SP:52:4713,1,"Moulin du Pont",48.805315,3.235431,0,0,OIF:SA:52:4712,Europe/Paris,,OIF, +OIF:SP:52:4714,1,"Boulangerie",48.758413,3.05129,0,0,OIF:SA:52:4714,Europe/Paris,,OIF, +OIF:SP:52:4715,1,"Boulangerie",48.758431,3.051236,0,0,OIF:SA:52:4714,Europe/Paris,,OIF, +OIF:SP:52:4718,1,"Glatigny",48.750466,3.049998,0,0,OIF:SA:52:4718,Europe/Paris,,OIF, +OIF:SP:52:4719,1,"Glatigny",48.750447,3.050174,0,0,OIF:SA:52:4718,Europe/Paris,,OIF, +OIF:SP:52:4720,1,"Paradis",48.758318,3.02626,0,0,OIF:SA:52:14535,Europe/Paris,,OIF, +OIF:SP:52:4721,1,"Le Tertre",48.751099,3.035679,0,0,OIF:SA:52:4721,Europe/Paris,,OIF, +OIF:SP:52:4722,1,"Le Tertre",48.751136,3.035558,0,0,OIF:SA:52:4721,Europe/Paris,,OIF, +OIF:SP:52:4725,1,"Mairie",48.759602,3.046412,0,0,OIF:SA:52:4725,Europe/Paris,,OIF, +OIF:SP:52:4726,1,"Mairie",48.75961,3.04648,0,0,OIF:SA:52:4725,Europe/Paris,,OIF, +OIF:SP:52:4727,1,"Maison Meunier",48.749235,3.066143,0,0,OIF:SA:52:4727,Europe/Paris,,OIF, +OIF:SP:52:4728,1,"Maison Meunier",48.749153,3.066277,0,0,OIF:SA:52:4727,Europe/Paris,,OIF, +OIF:SP:52:4729,1,"Mémillon",48.749986,3.041414,0,0,OIF:SA:52:4729,Europe/Paris,,OIF, +OIF:SP:52:4730,1,"Mémillon",48.749914,3.041549,0,0,OIF:SA:52:4729,Europe/Paris,,OIF, +OIF:SP:52:4738,1,"Église",48.79853,3.203816,0,0,OIF:SA:8711636,Europe/Paris,,OIF, +OIF:SP:52:4739,1,"Église",48.798575,3.203735,0,0,OIF:SA:8711636,Europe/Paris,,OIF, +OIF:SP:52:4740,1,"La Vacherie",48.806049,3.203057,0,0,OIF:SA:52:4740,Europe/Paris,,OIF, +OIF:SP:52:4741,1,"La Vacherie",48.806032,3.202975,0,0,OIF:SA:52:4740,Europe/Paris,,OIF, +OIF:SP:52:4742,1,"La Vanne",48.801425,3.211089,0,0,OIF:SA:8711636,Europe/Paris,,OIF, +OIF:SP:52:4743,1,"La Vanne",48.801443,3.211035,0,0,OIF:SA:8711636,Europe/Paris,,OIF, +OIF:SP:52:4744,1,"Les Bordes / RN 34",48.789138,3.208475,0,0,OIF:SA:52:4744,Europe/Paris,,OIF, +OIF:SP:52:4745,1,"Les Bordes / RN 34",48.789185,3.208204,0,0,OIF:SA:52:4744,Europe/Paris,,OIF, +OIF:SP:52:475,1,"Bonfruit",48.643053,2.911603,0,0,OIF:SA:52:474,Europe/Paris,,OIF, +OIF:SP:52:478,1,"Pecqueux",48.626764,2.859161,0,0,OIF:SA:52:478,Europe/Paris,,OIF, +OIF:SP:52:479,1,"Pecqueux",48.626755,2.859229,0,0,OIF:SA:52:478,Europe/Paris,,OIF, +OIF:SP:52:480,1,"Aubepierre École",48.631819,2.888248,0,0,OIF:SA:52:480,Europe/Paris,,OIF, +OIF:SP:52:4809,1,"Mairie",48.88591,2.961723,0,0,OIF:SA:52:4809,Europe/Paris,,OIF, +OIF:SP:52:481,1,"Aubepierre École",48.631417,2.887688,0,0,OIF:SA:52:480,Europe/Paris,,OIF, +OIF:SP:52:4810,1,"Mairie",48.88582,2.961681,0,0,OIF:SA:52:4809,Europe/Paris,,OIF, +OIF:SP:52:482,1,"Bagneaux",48.60124,2.93932,0,0,OIF:SA:52:482,Europe/Paris,,OIF, +OIF:SP:52:4824,1,"Mairie",48.937593,3.1026,0,0,OIF:SA:52:4824,Europe/Paris,,OIF, +OIF:SP:52:4825,1,"Mairie",48.93753,3.102572,0,0,OIF:SA:52:4824,Europe/Paris,,OIF, +OIF:SP:52:4826,1,"Bois de Foy",48.937115,3.106917,0,0,OIF:SA:52:4826,Europe/Paris,,OIF, +OIF:SP:52:4827,1,"Bois de Foy",48.937052,3.106957,0,0,OIF:SA:52:4826,Europe/Paris,,OIF, +OIF:SP:52:483,1,"Bagneaux",48.601232,2.939253,0,0,OIF:SA:52:482,Europe/Paris,,OIF, +OIF:SP:52:484,1,"Bisseaux",48.596691,2.919752,0,0,OIF:SA:52:484,Europe/Paris,,OIF, +OIF:SP:52:485,1,"Bisseaux",48.596628,2.919683,0,0,OIF:SA:52:484,Europe/Paris,,OIF, +OIF:SP:52:486,1,"La Noue",48.62016,2.912747,0,0,OIF:SA:52:486,Europe/Paris,,OIF, +OIF:SP:52:4862,1,"Barneau",48.640711,2.71357,0,0,OIF:SA:52:4862,Europe/Paris,,OIF, +OIF:SP:52:4863,1,"Barneau",48.640711,2.713557,0,0,OIF:SA:52:4862,Europe/Paris,,OIF, +OIF:SP:52:4864,1,"Église",48.653622,2.698007,0,0,OIF:SA:48:5573,Europe/Paris,,OIF, +OIF:SP:52:4865,1,"Église",48.653613,2.698062,0,0,OIF:SA:48:5573,Europe/Paris,,OIF, +OIF:SP:52:4868,1,"La Burelle",48.656384,2.703115,0,0,OIF:SA:13:163,Europe/Paris,,OIF, +OIF:SP:52:4869,1,"La Burelle",48.656357,2.703142,0,0,OIF:SA:13:163,Europe/Paris,,OIF, +OIF:SP:52:487,1,"La Noue",48.62017,2.912693,0,0,OIF:SA:52:486,Europe/Paris,,OIF, +OIF:SP:52:4870,1,"La Côte",48.661449,2.69889,0,0,OIF:SA:13:165,Europe/Paris,,OIF, +OIF:SP:52:4871,1,"La Côte",48.661458,2.698944,0,0,OIF:SA:13:165,Europe/Paris,,OIF, +OIF:SP:52:488,1,"Ozouer le Repos Mairie",48.610976,2.910327,0,0,OIF:SA:52:488,Europe/Paris,,OIF, +OIF:SP:52:4884,1,"Cimetière",48.657268,2.710936,0,0,OIF:SA:48:5581,Europe/Paris,,OIF, +OIF:SP:52:4885,1,"Cimetière",48.657304,2.710936,0,0,OIF:SA:48:5581,Europe/Paris,,OIF, +OIF:SP:52:489,1,"Ozouer le Repos Mairie",48.611012,2.910301,0,0,OIF:SA:52:488,Europe/Paris,,OIF, +OIF:SP:52:4890,1,"Mairie",48.65822,2.716805,0,0,OIF:SA:13:148,Europe/Paris,,OIF, +OIF:SP:52:4891,1,"Mairie",48.658247,2.71675,0,0,OIF:SA:13:148,Europe/Paris,,OIF, +OIF:SP:52:490,1,"Yvernailles",48.618924,2.919309,0,0,OIF:SA:52:490,Europe/Paris,,OIF, +OIF:SP:52:491,1,"Yvernailles",48.618906,2.91935,0,0,OIF:SA:52:490,Europe/Paris,,OIF, +OIF:SP:52:4966,1,"Centre",48.824425,2.902206,0,0,OIF:SA:47:4966,Europe/Paris,,OIF, +OIF:SP:52:4967,1,"Centre",48.824327,2.902109,0,0,OIF:SA:47:4966,Europe/Paris,,OIF, +OIF:SP:52:4968,1,"Cimetière",48.821676,2.903918,0,0,OIF:SA:47:14815,Europe/Paris,,OIF, +OIF:SP:52:4969,1,"Cimetière",48.821667,2.903836,0,0,OIF:SA:47:14815,Europe/Paris,,OIF, +OIF:SP:52:4970,1,"Lavoir",48.829651,2.90146,0,0,OIF:SA:47:4970,Europe/Paris,,OIF, +OIF:SP:52:4971,1,"Lavoir",48.829642,2.90131,0,0,OIF:SA:47:4970,Europe/Paris,,OIF, +OIF:SP:52:4994,1,"Le Tau",48.730047,3.034214,0,0,OIF:SA:52:4994,Europe/Paris,,OIF, +OIF:SP:52:4995,1,"Le Tau",48.730038,3.034146,0,0,OIF:SA:52:4994,Europe/Paris,,OIF, +OIF:SP:52:4996,1,"Courmereau",48.731178,3.026783,0,0,OIF:SA:52:4996,Europe/Paris,,OIF, +OIF:SP:52:4997,1,"Courmereau",48.731205,3.026838,0,0,OIF:SA:52:4996,Europe/Paris,,OIF, +OIF:SP:52:4998,1,"Mairie",48.735363,3.011878,0,0,OIF:SA:52:4998,Europe/Paris,,OIF, +OIF:SP:52:4999,1,"Mairie",48.735327,3.011891,0,0,OIF:SA:52:4998,Europe/Paris,,OIF, +OIF:SP:52:501,1,"La Roche",48.845828,3.080043,0,0,OIF:SA:52:501,Europe/Paris,,OIF, +OIF:SP:52:502,1,"La Roche",48.845845,3.080097,0,0,OIF:SA:52:501,Europe/Paris,,OIF, +OIF:SP:52:5025,1,"Gare SNCF",48.738524,2.759778,0,0,OIF:SA:8711621,Europe/Paris,,OIF, +OIF:SP:52:5026,1,"Gare SNCF",48.73847,2.759764,0,0,OIF:SA:8711621,Europe/Paris,,OIF, +OIF:SP:52:503,1,"Village",48.840713,3.095751,0,0,OIF:SA:52:503,Europe/Paris,,OIF, +OIF:SP:52:504,1,"Village",48.840749,3.095779,0,0,OIF:SA:52:503,Europe/Paris,,OIF, +OIF:SP:52:505,1,"Villers",48.851183,3.075965,0,0,OIF:SA:52:505,Europe/Paris,,OIF, +OIF:SP:52:506,1,"Villers",48.851201,3.07587,0,0,OIF:SA:52:505,Europe/Paris,,OIF, +OIF:SP:52:5065,1,"Mairie",48.873944,3.251444,0,0,OIF:SA:52:5065,Europe/Paris,,OIF, +OIF:SP:52:5066,1,"Mairie",48.873899,3.251416,0,0,OIF:SA:52:5065,Europe/Paris,,OIF, +OIF:SP:52:5067,1,"Champlion",48.887301,3.232341,0,0,OIF:SA:47:14740,Europe/Paris,,OIF, +OIF:SP:52:5068,1,"Champlion",48.887274,3.232313,0,0,OIF:SA:47:14740,Europe/Paris,,OIF, +OIF:SP:52:5069,1,"Gibraltar",48.889148,3.218552,0,0,OIF:SA:47:14738,Europe/Paris,,OIF, +OIF:SP:52:5070,1,"Gibraltar",48.889112,3.218511,0,0,OIF:SA:47:14738,Europe/Paris,,OIF, +OIF:SP:52:5071,1,"Launoy",48.879825,3.242786,0,0,OIF:SA:47:14742,Europe/Paris,,OIF, +OIF:SP:52:5072,1,"Launoy",48.879799,3.242717,0,0,OIF:SA:47:14742,Europe/Paris,,OIF, +OIF:SP:52:5172,1,"Mairie",48.895566,2.95238,0,0,OIF:SA:47:14500,Europe/Paris,,OIF, +OIF:SP:52:5173,1,"Mairie",48.89546,2.952079,0,0,OIF:SA:47:14500,Europe/Paris,,OIF, +OIF:SP:52:5187,1,"Place de la Mairie",48.688659,3.080513,0,0,OIF:SA:52:5187,Europe/Paris,,OIF, +OIF:SP:52:5188,1,"Place de la Mairie",48.68866,3.080459,0,0,OIF:SA:52:5187,Europe/Paris,,OIF, +OIF:SP:52:5214,1,"Brice",48.875439,3.363408,0,0,OIF:SA:52:5214,Europe/Paris,,OIF, +OIF:SP:52:5215,1,"Brice",48.875367,3.363475,0,0,OIF:SA:52:5214,Europe/Paris,,OIF, +OIF:SP:52:5221,1,"Gare SNCF",48.644798,2.825091,0,0,OIF:SA:8711607,Europe/Paris,,OIF, +OIF:SP:52:5222,1,"Gare SNCF",48.644816,2.825159,0,0,OIF:SA:8711607,Europe/Paris,,OIF, +OIF:SP:52:5223,1,"L'Étang",48.62889,2.826664,0,0,OIF:SA:52:5223,Europe/Paris,,OIF, +OIF:SP:52:5224,1,"L'Étang",48.628944,2.82661,0,0,OIF:SA:52:5223,Europe/Paris,,OIF, +OIF:SP:52:5226,1,"Mairie",48.644257,2.834147,0,0,OIF:SA:48:5691,Europe/Paris,,OIF, +OIF:SP:52:5227,1,"Mairie",48.644293,2.83412,0,0,OIF:SA:48:5691,Europe/Paris,,OIF, +OIF:SP:52:5228,1,"Pont",48.643611,2.829705,0,0,OIF:SA:52:5228,Europe/Paris,,OIF, +OIF:SP:52:5229,1,"Pont",48.643715,2.830656,0,0,OIF:SA:52:5228,Europe/Paris,,OIF, +OIF:SP:52:5232,1,"Petit Jard",48.570641,2.650984,0,0,OIF:SA:52:5232,Europe/Paris,,OIF, +OIF:SP:52:5233,1,"Petit Jard",48.570641,2.651051,0,0,OIF:SA:52:5232,Europe/Paris,,OIF, +OIF:SP:52:5276,1,"Mairie",48.814583,2.829411,0,0,OIF:SA:52:14673,Europe/Paris,,OIF, +OIF:SP:52:5292,1,"Place de l'Église",48.861865,3.341493,0,0,OIF:SA:47:5299,Europe/Paris,,OIF, +OIF:SP:52:5293,1,"Champ Charron",48.862935,3.332932,0,0,OIF:SA:52:5293,Europe/Paris,,OIF, +OIF:SP:52:5294,1,"Champ Charron",48.862908,3.33289,0,0,OIF:SA:52:5293,Europe/Paris,,OIF, +OIF:SP:52:5297,1,"Collège les Creusottes",48.862887,3.334429,0,0,OIF:SA:47:5295,Europe/Paris,,OIF, +OIF:SP:52:5298,1,"Collège les Creusottes",48.862806,3.334387,0,0,OIF:SA:47:5295,Europe/Paris,,OIF, +OIF:SP:52:5303,1,"Fourcheret Œuf Coque",48.861183,3.320924,0,0,OIF:SA:52:5303,Europe/Paris,,OIF, +OIF:SP:52:5304,1,"Fourcheret Œuf Coque",48.861147,3.320923,0,0,OIF:SA:52:5303,Europe/Paris,,OIF, +OIF:SP:52:5307,1,"Garage Communal",48.865703,3.345832,0,0,OIF:SA:47:5309,Europe/Paris,,OIF, +OIF:SP:52:5308,1,"Garage Communal",48.86564,3.345844,0,0,OIF:SA:47:5309,Europe/Paris,,OIF, +OIF:SP:52:5311,1,"Place de l'Église",48.861785,3.341478,0,0,OIF:SA:47:5299,Europe/Paris,,OIF, +OIF:SP:52:5312,1,"Fourcheret Stade",48.861586,3.325454,0,0,OIF:SA:52:5312,Europe/Paris,,OIF, +OIF:SP:52:5313,1,"Fourcheret Stade",48.861533,3.325413,0,0,OIF:SA:52:5312,Europe/Paris,,OIF, +OIF:SP:52:5409,1,"Saint-Mathurin",48.691099,3.002817,0,0,OIF:SA:52:5409,Europe/Paris,,OIF, +OIF:SP:52:5410,1,"Saint-Mathurin",48.691135,3.002804,0,0,OIF:SA:52:5409,Europe/Paris,,OIF, +OIF:SP:52:5411,1,"Puit Fleury",48.692028,3.006943,0,0,OIF:SA:52:5411,Europe/Paris,,OIF, +OIF:SP:52:5412,1,"Puit Fleury",48.692001,3.006984,0,0,OIF:SA:52:5411,Europe/Paris,,OIF, +OIF:SP:52:5413,1,"Villeneuve Hurée",48.702034,3.00987,0,0,OIF:SA:52:5413,Europe/Paris,,OIF, +OIF:SP:52:5414,1,"Villeneuve Hurée",48.702071,3.00983,0,0,OIF:SA:52:5413,Europe/Paris,,OIF, +OIF:SP:52:5417,1,"Institut Nazareth",48.569721,2.662329,0,0,OIF:SA:27:222,Europe/Paris,,OIF, +OIF:SP:52:5418,1,"Institut Nazareth",48.5677,2.661653,0,0,OIF:SA:27:222,Europe/Paris,,OIF, +OIF:SP:52:5453,1,"Nogent sur Avon",48.644635,2.779755,0,0,OIF:SA:52:5453,Europe/Paris,,OIF, +OIF:SP:52:5454,1,"Nogent sur Avon",48.644742,2.779837,0,0,OIF:SA:52:5453,Europe/Paris,,OIF, +OIF:SP:52:5455,1,"Église",48.638016,2.770896,0,0,OIF:SA:52:5455,Europe/Paris,,OIF, +OIF:SP:52:5456,1,"Église",48.638025,2.770842,0,0,OIF:SA:52:5455,Europe/Paris,,OIF, +OIF:SP:52:562,1,"Petit Villiers",48.91567,3.262422,0,0,OIF:SA:47:14803,Europe/Paris,,OIF, +OIF:SP:52:563,1,"Petit Villiers",48.915697,3.262382,0,0,OIF:SA:47:14803,Europe/Paris,,OIF, +OIF:SP:52:584,1,"Autheil",48.746535,3.085446,0,0,OIF:SA:52:584,Europe/Paris,,OIF, +OIF:SP:52:585,1,"Autheil",48.746473,3.085377,0,0,OIF:SA:52:584,Europe/Paris,,OIF, +OIF:SP:52:586,1,"Église",48.762963,3.087477,0,0,OIF:SA:52:586,Europe/Paris,,OIF, +OIF:SP:52:587,1,"Église",48.762882,3.087476,0,0,OIF:SA:52:586,Europe/Paris,,OIF, +OIF:SP:52:588,1,"La Touche",48.761966,3.1194,0,0,OIF:SA:52:588,Europe/Paris,,OIF, +OIF:SP:52:589,1,"La Touche",48.761921,3.119372,0,0,OIF:SA:52:588,Europe/Paris,,OIF, +OIF:SP:52:590,1,"Pressoucy",48.746579,3.079955,0,0,OIF:SA:52:590,Europe/Paris,,OIF, +OIF:SP:52:591,1,"Pressoucy",48.746516,3.079941,0,0,OIF:SA:52:590,Europe/Paris,,OIF, +OIF:SP:52:594,1,"Grille du Château",48.646672,2.859931,0,0,OIF:SA:48:5005,Europe/Paris,,OIF, +OIF:SP:52:595,1,"Grille du Château",48.646619,2.859849,0,0,OIF:SA:48:5005,Europe/Paris,,OIF, +OIF:SP:52:600,1,"Grand Doucy",48.839169,3.328799,0,0,OIF:SA:52:600,Europe/Paris,,OIF, +OIF:SP:52:601,1,"Grand Doucy",48.839168,3.328867,0,0,OIF:SA:52:600,Europe/Paris,,OIF, +OIF:SP:52:606,1,"Place",48.856903,3.317846,0,0,OIF:SA:47:596,Europe/Paris,,OIF, +OIF:SP:52:607,1,"Place",48.856913,3.317806,0,0,OIF:SA:47:596,Europe/Paris,,OIF, +OIF:SP:52:612,1,"Bernay Mairie",48.675247,2.938047,0,0,OIF:SA:52:612,Europe/Paris,,OIF, +OIF:SP:52:613,1,"Bernay Mairie",48.675246,2.938115,0,0,OIF:SA:52:612,Europe/Paris,,OIF, +OIF:SP:52:615,1,"Pompierre",48.655204,2.922985,0,0,OIF:SA:52:615,Europe/Paris,,OIF, +OIF:SP:52:616,1,"Pompierre",48.655177,2.923026,0,0,OIF:SA:52:615,Europe/Paris,,OIF, +OIF:SP:52:622,1,"Segrès / D 211",48.663394,2.935562,0,0,OIF:SA:52:622,Europe/Paris,,OIF, +OIF:SP:52:623,1,"Vilbert Mairie",48.683134,2.922866,0,0,OIF:SA:52:623,Europe/Paris,,OIF, +OIF:SP:52:624,1,"Vilbert Mairie",48.683107,2.922906,0,0,OIF:SA:52:623,Europe/Paris,,OIF, +OIF:SP:52:629,1,"Place",48.701695,3.244409,0,0,OIF:SA:52:629,Europe/Paris,,OIF, +OIF:SP:52:630,1,"Place",48.701766,3.244451,0,0,OIF:SA:52:629,Europe/Paris,,OIF, +OIF:SP:52:635,1,"Château",48.566729,2.780853,0,0,OIF:SA:52:635,Europe/Paris,,OIF, +OIF:SP:52:647,1,"Champauger / D 222",48.818304,3.123707,0,0,OIF:SA:52:647,Europe/Paris,,OIF, +OIF:SP:52:648,1,"Champauger / D 222",48.818093,3.122955,0,0,OIF:SA:52:647,Europe/Paris,,OIF, +OIF:SP:52:651,1,"Les Brosses",48.829763,3.157057,0,0,OIF:SA:52:651,Europe/Paris,,OIF, +OIF:SP:52:652,1,"Les Brosses",48.829736,3.157138,0,0,OIF:SA:52:651,Europe/Paris,,OIF, +OIF:SP:52:655,1,"Les Jumelles",48.816349,3.125678,0,0,OIF:SA:52:655,Europe/Paris,,OIF, +OIF:SP:52:656,1,"Les Jumelles",48.816192,3.125049,0,0,OIF:SA:52:655,Europe/Paris,,OIF, +OIF:SP:52:657,1,"Lotissement",48.824613,3.137238,0,0,OIF:SA:52:657,Europe/Paris,,OIF, +OIF:SP:52:658,1,"Lotissement",48.824614,3.137156,0,0,OIF:SA:52:657,Europe/Paris,,OIF, +OIF:SP:52:659,1,"Moulin de Boissy",48.815947,3.150673,0,0,OIF:SA:8711634,Europe/Paris,,OIF, +OIF:SP:52:660,1,"Moulin de Boissy",48.815951,3.151408,0,0,OIF:SA:8711634,Europe/Paris,,OIF, +OIF:SP:52:661,1,"Place",48.820916,3.136418,0,0,OIF:SA:52:661,Europe/Paris,,OIF, +OIF:SP:52:662,1,"Place",48.821077,3.13653,0,0,OIF:SA:52:661,Europe/Paris,,OIF, +OIF:SP:52:665,1,"Centre D222",48.823086,3.138385,0,0,OIF:SA:52:665,Europe/Paris,,OIF, +OIF:SP:52:666,1,"Centre D222",48.823044,3.138071,0,0,OIF:SA:52:665,Europe/Paris,,OIF, +OIF:SP:52:669,1,"Sainte-Marie",48.816422,3.133709,0,0,OIF:SA:52:669,Europe/Paris,,OIF, +OIF:SP:52:670,1,"Sainte-Marie",48.816503,3.133656,0,0,OIF:SA:52:669,Europe/Paris,,OIF, +OIF:SP:52:677,1,"Vallée",48.89087,3.251198,0,0,OIF:SA:52:677,Europe/Paris,,OIF, +OIF:SP:52:678,1,"Vallée",48.890915,3.251212,0,0,OIF:SA:52:677,Europe/Paris,,OIF, +OIF:SP:52:679,1,"Méline",48.894769,3.259554,0,0,OIF:SA:52:679,Europe/Paris,,OIF, +OIF:SP:52:680,1,"Méline",48.894768,3.259663,0,0,OIF:SA:52:679,Europe/Paris,,OIF, +OIF:SP:52:681,1,"Mairie",48.572526,2.858238,0,0,OIF:SA:52:681,Europe/Paris,,OIF, +OIF:SP:52:682,1,"Mairie",48.572535,2.858292,0,0,OIF:SA:52:681,Europe/Paris,,OIF, +OIF:SP:52:715,1,"La Cantine D228",48.91227,2.920795,0,0,OIF:SA:52:715,Europe/Paris,,OIF, +OIF:SP:52:716,1,"La Cantine D228",48.912235,2.920713,0,0,OIF:SA:52:715,Europe/Paris,,OIF, +OIF:SP:52:723,1,"Magny Saint-Loup",48.907157,2.913402,0,0,OIF:SA:47:723,Europe/Paris,,OIF, +OIF:SP:52:724,1,"Magny Saint-Loup",48.907112,2.913443,0,0,OIF:SA:47:723,Europe/Paris,,OIF, +OIF:SP:52:745,1,"Auberge",48.562285,2.878708,0,0,OIF:SA:52:745,Europe/Paris,,OIF, +OIF:SP:52:746,1,"Auberge",48.56232,2.878722,0,0,OIF:SA:52:745,Europe/Paris,,OIF, +OIF:SP:52:754,1,"Clos Didier",48.685509,2.609255,0,0,OIF:SA:13:560,Europe/Paris,,OIF, +OIF:SP:52:755,1,"Clos Didier",48.685545,2.609242,0,0,OIF:SA:13:560,Europe/Paris,,OIF, +OIF:SP:52:758,1,"Les Tournelles",48.687807,2.618322,0,0,OIF:SA:13:284,Europe/Paris,,OIF, +OIF:SP:52:759,1,"Les Tournelles",48.687834,2.61835,0,0,OIF:SA:13:284,Europe/Paris,,OIF, +OIF:SP:52:773,1,"Salle des Fêtes",48.689349,2.608311,0,0,OIF:SA:52:773,Europe/Paris,,OIF, +OIF:SP:52:774,1,"Salle des Fêtes",48.689331,2.608311,0,0,OIF:SA:52:773,Europe/Paris,,OIF, +OIF:SP:52:873,1,"La Celle en Bas Mairie",48.806255,2.96599,0,0,OIF:SA:52:873,Europe/Paris,,OIF, +OIF:SP:52:874,1,"La Celle en Bas Mairie",48.806282,2.965936,0,0,OIF:SA:52:873,Europe/Paris,,OIF, +OIF:SP:52:875,1,"La Celle en Haut Centre",48.802672,2.970341,0,0,OIF:SA:52:875,Europe/Paris,,OIF, +OIF:SP:52:876,1,"La Celle en Haut Centre",48.802744,2.970451,0,0,OIF:SA:52:875,Europe/Paris,,OIF, +OIF:SP:52:885,1,"Chailloy",48.794165,3.124456,0,0,OIF:SA:52:885,Europe/Paris,,OIF, +OIF:SP:52:886,1,"Chailloy",48.794166,3.124361,0,0,OIF:SA:52:885,Europe/Paris,,OIF, +OIF:SP:52:887,1,"École",48.790239,3.124193,0,0,OIF:SA:52:887,Europe/Paris,,OIF, +OIF:SP:52:888,1,"École",48.790249,3.124111,0,0,OIF:SA:52:887,Europe/Paris,,OIF, +OIF:SP:52:889,1,"Les Sables",48.802115,3.126536,0,0,OIF:SA:52:889,Europe/Paris,,OIF, +OIF:SP:52:890,1,"Les Sables",48.802053,3.126372,0,0,OIF:SA:52:889,Europe/Paris,,OIF, +OIF:SP:52:891,1,"Lycée Bretonnière",48.813541,3.151656,0,0,OIF:SA:8711634,Europe/Paris,,OIF, +OIF:SP:52:893,1,"Martroy",48.811414,3.13253,0,0,OIF:SA:52:893,Europe/Paris,,OIF, +OIF:SP:52:894,1,"Martroy",48.811424,3.132462,0,0,OIF:SA:52:893,Europe/Paris,,OIF, +OIF:SP:52:968,1,"Mairie",48.620641,2.73177,0,0,OIF:SA:52:968,Europe/Paris,,OIF, +OIF:SP:52:969,1,"Mairie",48.620641,2.731783,0,0,OIF:SA:52:968,Europe/Paris,,OIF, +OIF:SP:52:970,1,"Place",48.584431,2.80607,0,0,OIF:SA:52:970,Europe/Paris,,OIF, +OIF:SP:52:971,1,"Place",48.584386,2.806097,0,0,OIF:SA:52:970,Europe/Paris,,OIF, +OIF:SP:52:992,1,"Château d'Eau",48.549651,2.892862,0,0,OIF:SA:52:992,Europe/Paris,,OIF, +OIF:SP:52:993,1,"Château d'Eau",48.549696,2.892863,0,0,OIF:SA:52:992,Europe/Paris,,OIF, +OIF:SP:52:994,1,"Rue Grande",48.549437,2.898303,0,0,OIF:SA:52:994,Europe/Paris,,OIF, +OIF:SP:52:995,1,"Rue Grande",48.549464,2.898303,0,0,OIF:SA:52:994,Europe/Paris,,OIF, +OIF:SP:52:998,1,"Les Marronniers",48.652604,2.988893,0,0,OIF:SA:52:998,Europe/Paris,,OIF, +OIF:SP:52:999,1,"Les Marronniers",48.652487,2.988878,0,0,OIF:SA:52:998,Europe/Paris,,OIF, +OIF:SP:53:2047,1,"Bosquets",48.956604,2.603068,0,0,OIF:SA:53:2047,Europe/Paris,,OIF, +OIF:SP:53:2048,1,"Bosquets",48.95639,2.602371,0,0,OIF:SA:53:2047,Europe/Paris,,OIF, +OIF:SP:53:2051,1,"Bourg",48.91495,2.657451,0,0,OIF:SA:53:2051,Europe/Paris,,OIF, +OIF:SP:53:2052,1,"Bourg",48.91495,2.657451,0,0,OIF:SA:53:2051,Europe/Paris,,OIF, +OIF:SP:53:2054,1,"Noue Brossard",48.885498,2.578091,0,0,OIF:SA:53:2054,Europe/Paris,,OIF, +OIF:SP:53:2057,1,"Zone Industrielle",48.947351,2.669836,0,0,OIF:SA:53:2057,Europe/Paris,,OIF, +OIF:SP:53:2058,1,"Zone Industrielle",48.947342,2.669822,0,0,OIF:SA:53:2057,Europe/Paris,,OIF, +OIF:SP:53:2075,1,"Collège Maria Callas",48.911533,2.603804,0,0,OIF:SA:53:2075,Europe/Paris,,OIF, +OIF:SP:53:2076,1,"Collège Maria Callas",48.910455,2.603431,0,0,OIF:SA:53:2075,Europe/Paris,,OIF, +OIF:SP:53:2078,1,"Parking Collège Europe",48.889347,2.597843,0,0,OIF:SA:53:2078,Europe/Paris,,OIF, +OIF:SP:53:2081,1,"Collège de l'Europe",48.889337,2.598593,0,0,OIF:SA:53:2078,Europe/Paris,,OIF, +OIF:SP:53:2082,1,"Collège de l'Europe",48.889472,2.598553,0,0,OIF:SA:53:2078,Europe/Paris,,OIF, +OIF:SP:53:2083,1,"Collège Goscinny",48.869845,2.64645,0,0,OIF:SA:53:2083,Europe/Paris,,OIF, +OIF:SP:53:2084,1,"Collège Goscinny",48.869971,2.646573,0,0,OIF:SA:53:2083,Europe/Paris,,OIF, +OIF:SP:53:2085,1,"Caminade",48.890917,2.618827,0,0,OIF:SA:53:2085,Europe/Paris,,OIF, +OIF:SP:53:2086,1,"Caminade",48.890755,2.618921,0,0,OIF:SA:53:2085,Europe/Paris,,OIF, +OIF:SP:53:2091,1,"Carrez",48.97672,2.628222,0,0,OIF:SA:53:2091,Europe/Paris,,OIF, +OIF:SP:53:2092,1,"Carrez",48.976955,2.627691,0,0,OIF:SA:53:2091,Europe/Paris,,OIF, +OIF:SP:53:2093,1,"Cassini",48.90185,2.597456,0,0,OIF:SA:53:2093,Europe/Paris,,OIF, +OIF:SP:53:2094,1,"Cassini",48.901923,2.596952,0,0,OIF:SA:53:2093,Europe/Paris,,OIF, +OIF:SP:53:2095,1,"Cavoy",48.916963,2.598841,0,0,OIF:SA:53:2095,Europe/Paris,,OIF, +OIF:SP:53:2096,1,"Cavoy",48.916979,2.599891,0,0,OIF:SA:53:2095,Europe/Paris,,OIF, +OIF:SP:53:2097,1,"Claude Bernard",48.902983,2.592622,0,0,OIF:SA:53:2097,Europe/Paris,,OIF, +OIF:SP:53:2098,1,"Claude Bernard",48.902585,2.594147,0,0,OIF:SA:53:2097,Europe/Paris,,OIF, +OIF:SP:53:2101,1,"Centre Commercial Terre Ciel",48.878367,2.613063,0,0,OIF:SA:53:2101,Europe/Paris,,OIF, +OIF:SP:53:2102,1,"Centre Commercial Terre Ciel",48.878887,2.61361,0,0,OIF:SA:53:2101,Europe/Paris,,OIF, +OIF:SP:53:2103,1,"Mont Chalats",48.885655,2.605238,0,0,OIF:SA:53:2103,Europe/Paris,,OIF, +OIF:SP:53:2104,1,"Mont Chalats",48.88612,2.606167,0,0,OIF:SA:53:2103,Europe/Paris,,OIF, +OIF:SP:53:2106,1,"Chantereine",48.900068,2.614501,0,0,OIF:SA:53:2106,Europe/Paris,,OIF, +OIF:SP:53:2107,1,"Chantereine",48.899977,2.614623,0,0,OIF:SA:53:2106,Europe/Paris,,OIF, +OIF:SP:53:2111,1,"Chappe",48.900238,2.602683,0,0,OIF:SA:53:2111,Europe/Paris,,OIF, +OIF:SP:53:2112,1,"Chappe",48.898504,2.602647,0,0,OIF:SA:53:2111,Europe/Paris,,OIF, +OIF:SP:53:2113,1,"Chasse",48.891219,2.60892,0,0,OIF:SA:53:2113,Europe/Paris,,OIF, +OIF:SP:53:2114,1,"Chasse",48.891605,2.609099,0,0,OIF:SA:53:2113,Europe/Paris,,OIF, +OIF:SP:53:2115,1,"Le Chat ZI",48.908898,2.600369,0,0,OIF:SA:53:2115,Europe/Paris,,OIF, +OIF:SP:53:2116,1,"Le Chat ZI",48.909004,2.601283,0,0,OIF:SA:53:2115,Europe/Paris,,OIF, +OIF:SP:53:2117,1,"Vaillant Couturier",48.983482,2.615412,0,0,OIF:SA:53:2117,Europe/Paris,,OIF, +OIF:SP:53:2118,1,"Debussy",48.913092,2.60174,0,0,OIF:SA:53:2118,Europe/Paris,,OIF, +OIF:SP:53:2121,1,"Cheminots",48.884684,2.617062,0,0,OIF:SA:53:2121,Europe/Paris,,OIF, +OIF:SP:53:2122,1,"Cheminots",48.884738,2.617239,0,0,OIF:SA:53:2121,Europe/Paris,,OIF, +OIF:SP:53:2124,1,"Chênes",48.949791,2.603674,0,0,OIF:SA:53:2124,Europe/Paris,,OIF, +OIF:SP:53:2125,1,"Nouveau Cimetière",48.883084,2.601709,0,0,OIF:SA:53:2125,Europe/Paris,,OIF, +OIF:SP:53:2126,1,"Nouveau Cimetière",48.883882,2.602476,0,0,OIF:SA:53:2125,Europe/Paris,,OIF, +OIF:SP:53:2133,1,"Cité Scolaire",48.883155,2.609736,0,0,OIF:SA:53:2133,Europe/Paris,,OIF, +OIF:SP:53:2134,1,"Cité Scolaire",48.883129,2.609572,0,0,OIF:SA:53:2133,Europe/Paris,,OIF, +OIF:SP:53:2135,1,"Clinique",48.883893,2.628532,0,0,OIF:SA:53:2135,Europe/Paris,,OIF, +OIF:SP:53:2136,1,"Clinique",48.884636,2.629695,0,0,OIF:SA:53:2135,Europe/Paris,,OIF, +OIF:SP:53:2137,1,"Les Clos",48.903475,2.609938,0,0,OIF:SA:53:2137,Europe/Paris,,OIF, +OIF:SP:53:2138,1,"Les Clos",48.903186,2.610796,0,0,OIF:SA:53:2137,Europe/Paris,,OIF, +OIF:SP:53:2145,1,"Deux Communes",48.869225,2.621215,0,0,OIF:SA:53:2145,Europe/Paris,,OIF, +OIF:SP:53:2146,1,"Deux Communes",48.869299,2.620589,0,0,OIF:SA:53:2145,Europe/Paris,,OIF, +OIF:SP:53:2147,1,"Parc de Corbrion",48.981328,2.614363,0,0,OIF:SA:53:2147,Europe/Paris,,OIF, +OIF:SP:53:2148,1,"Parc de Corbrion",48.981572,2.613641,0,0,OIF:SA:53:2147,Europe/Paris,,OIF, +OIF:SP:53:2152,1,"Collège Corot Delambre",48.903151,2.594014,0,0,OIF:SA:53:2152,Europe/Paris,,OIF, +OIF:SP:53:2155,1,"La Couronne",48.939191,2.609294,0,0,OIF:SA:53:2155,Europe/Paris,,OIF, +OIF:SP:53:2156,1,"La Couronne",48.939317,2.609322,0,0,OIF:SA:53:2155,Europe/Paris,,OIF, +OIF:SP:53:2157,1,"Stade",48.915208,2.604041,0,0,OIF:SA:53:2157,Europe/Paris,,OIF, +OIF:SP:53:2158,1,"Stade",48.915127,2.603986,0,0,OIF:SA:53:2157,Europe/Paris,,OIF, +OIF:SP:53:2162,1,"Cressonnières",48.882812,2.585873,0,0,OIF:SA:53:2162,Europe/Paris,,OIF, +OIF:SP:53:2171,1,"Carrefour des Deportes",48.879665,2.594947,0,0,OIF:SA:53:2171,Europe/Paris,,OIF, +OIF:SP:53:2172,1,"Carrefour des Deportes",48.879779,2.596378,0,0,OIF:SA:53:2171,Europe/Paris,,OIF, +OIF:SP:53:2174,1,"Digoy",48.875543,2.576218,0,0,OIF:SA:53:2174,Europe/Paris,,OIF, +OIF:SP:53:2175,1,"Dispensaire",48.876316,2.601647,0,0,OIF:SA:53:2175,Europe/Paris,,OIF, +OIF:SP:53:2176,1,"Dispensaire",48.877907,2.60186,0,0,OIF:SA:53:2175,Europe/Paris,,OIF, +OIF:SP:53:2177,1,"Duchesne",48.87591,2.590091,0,0,OIF:SA:53:2177,Europe/Paris,,OIF, +OIF:SP:53:2178,1,"Duchesne",48.875677,2.589872,0,0,OIF:SA:53:2177,Europe/Paris,,OIF, +OIF:SP:53:2181,1,"Cité EDF",48.868124,2.644778,0,0,OIF:SA:53:2181,Europe/Paris,,OIF, +OIF:SP:53:2182,1,"Cité EDF",48.868177,2.644955,0,0,OIF:SA:53:2181,Europe/Paris,,OIF, +OIF:SP:53:2183,1,"Église",48.918615,2.603609,0,0,OIF:SA:53:2183,Europe/Paris,,OIF, +OIF:SP:53:2184,1,"Église",48.918265,2.603307,0,0,OIF:SA:53:2183,Europe/Paris,,OIF, +OIF:SP:53:2185,1,"Frédéric Leve",48.910708,2.657602,0,0,OIF:SA:53:2185,Europe/Paris,,OIF, +OIF:SP:53:2186,1,"Frédéric Leve",48.910708,2.657602,0,0,OIF:SA:53:2185,Europe/Paris,,OIF, +OIF:SP:53:2187,1,"Jules Ferry",48.87242,2.578738,0,0,OIF:SA:53:2187,Europe/Paris,,OIF, +OIF:SP:53:2188,1,"Jules Ferry",48.872115,2.57826,0,0,OIF:SA:53:2187,Europe/Paris,,OIF, +OIF:SP:53:2193,1,"Aime Fluttaz",48.912032,2.597576,0,0,OIF:SA:53:2193,Europe/Paris,,OIF, +OIF:SP:53:2194,1,"Aime Fluttaz",48.912059,2.59763,0,0,OIF:SA:53:2193,Europe/Paris,,OIF, +OIF:SP:53:2195,1,"Foch Platanes",48.887018,2.625674,0,0,OIF:SA:53:2195,Europe/Paris,,OIF, +OIF:SP:53:2197,1,"Cité Forestière",48.903943,2.597753,0,0,OIF:SA:53:2197,Europe/Paris,,OIF, +OIF:SP:53:2198,1,"Cité Forestière",48.90369,2.598174,0,0,OIF:SA:53:2197,Europe/Paris,,OIF, +OIF:SP:53:2202,1,"Friedland",48.882127,2.573796,0,0,OIF:SA:53:2202,Europe/Paris,,OIF, +OIF:SP:53:2205,1,"Gare SNCF Mésanges",48.876479,2.638914,0,0,OIF:SA:8711629,Europe/Paris,,OIF, +OIF:SP:53:2206,1,"Gare SNCF Mésanges",48.876569,2.63901,0,0,OIF:SA:8711629,Europe/Paris,,OIF, +OIF:SP:53:2207,1,"Gare de Vaires Torcy",48.87595,2.63857,0,0,OIF:SA:8711629,Europe/Paris,,OIF, +OIF:SP:53:2208,1,"Gare de Vaires Torcy",48.875706,2.638909,0,0,OIF:SA:8711629,Europe/Paris,,OIF, +OIF:SP:53:2213,1,"Corps de Garde",48.869272,2.616611,0,0,OIF:SA:53:2213,Europe/Paris,,OIF, +OIF:SP:53:2214,1,"Corps de Garde",48.869337,2.615549,0,0,OIF:SA:53:2213,Europe/Paris,,OIF, +OIF:SP:53:2217,1,"Gasnier Guy",48.874615,2.581855,0,0,OIF:SA:53:2217,Europe/Paris,,OIF, +OIF:SP:53:2225,1,"Guette",48.890143,2.603926,0,0,OIF:SA:53:2225,Europe/Paris,,OIF, +OIF:SP:53:2226,1,"Guette",48.8899,2.60417,0,0,OIF:SA:53:2225,Europe/Paris,,OIF, +OIF:SP:53:2227,1,"Gymnase",48.868867,2.631772,0,0,OIF:SA:53:2227,Europe/Paris,,OIF, +OIF:SP:53:2228,1,"Gymnase",48.868795,2.631758,0,0,OIF:SA:53:2227,Europe/Paris,,OIF, +OIF:SP:53:2231,1,"Place Henrion",48.897645,2.616737,0,0,OIF:SA:53:2231,Europe/Paris,,OIF, +OIF:SP:53:2232,1,"Place Henrion",48.898263,2.617463,0,0,OIF:SA:53:2231,Europe/Paris,,OIF, +OIF:SP:53:2235,1,"Jean Jaurès",48.879418,2.624528,0,0,OIF:SA:53:2235,Europe/Paris,,OIF, +OIF:SP:53:2236,1,"Jean Jaurès",48.879079,2.623531,0,0,OIF:SA:53:2235,Europe/Paris,,OIF, +OIF:SP:53:2237,1,"Jehan de Chelles",48.888568,2.61279,0,0,OIF:SA:53:2237,Europe/Paris,,OIF, +OIF:SP:53:2238,1,"Jehan de Chelles",48.888378,2.613239,0,0,OIF:SA:53:2237,Europe/Paris,,OIF, +OIF:SP:53:2241,1,"Jean Moulin",48.982759,2.620883,0,0,OIF:SA:53:2241,Europe/Paris,,OIF, +OIF:SP:53:2242,1,"Jean Moulin",48.982707,2.620255,0,0,OIF:SA:53:2241,Europe/Paris,,OIF, +OIF:SP:53:2243,1,"Kléber",48.950479,2.605097,0,0,OIF:SA:53:2243,Europe/Paris,,OIF, +OIF:SP:53:2245,1,"Paul de Kock",48.913342,2.594255,0,0,OIF:SA:53:2245,Europe/Paris,,OIF, +OIF:SP:53:2246,1,"Paul de Kock",48.912902,2.594199,0,0,OIF:SA:53:2245,Europe/Paris,,OIF, +OIF:SP:53:2251,1,"La Mare",48.902451,2.673242,0,0,OIF:SA:53:2251,Europe/Paris,,OIF, +OIF:SP:53:2252,1,"La Mare",48.902451,2.673242,0,0,OIF:SA:53:2251,Europe/Paris,,OIF, +OIF:SP:53:2254,1,"Lamartine",48.914657,2.593007,0,0,OIF:SA:53:2254,Europe/Paris,,OIF, +OIF:SP:53:2255,1,"Lavoisier",48.901255,2.58971,0,0,OIF:SA:53:2255,Europe/Paris,,OIF, +OIF:SP:53:2256,1,"Lavoisier",48.90121,2.589819,0,0,OIF:SA:53:2255,Europe/Paris,,OIF, +OIF:SP:53:2257,1,"Lavoir",48.918378,2.65949,0,0,OIF:SA:53:2257,Europe/Paris,,OIF, +OIF:SP:53:2258,1,"Lavoir",48.918378,2.65949,0,0,OIF:SA:53:2257,Europe/Paris,,OIF, +OIF:SP:53:2263,1,"Division Leclerc",48.877546,2.625553,0,0,OIF:SA:53:2263,Europe/Paris,,OIF, +OIF:SP:53:2264,1,"Division Leclerc",48.877338,2.626043,0,0,OIF:SA:53:2263,Europe/Paris,,OIF, +OIF:SP:53:2265,1,"Le Rû",48.869697,2.607594,0,0,OIF:SA:53:2265,Europe/Paris,,OIF, +OIF:SP:53:2266,1,"Le Rû",48.869887,2.606996,0,0,OIF:SA:53:2265,Europe/Paris,,OIF, +OIF:SP:53:2267,1,"Levasseur",48.903617,2.602768,0,0,OIF:SA:53:2267,Europe/Paris,,OIF, +OIF:SP:53:2268,1,"Levasseur",48.903552,2.603968,0,0,OIF:SA:53:2267,Europe/Paris,,OIF, +OIF:SP:53:2271,1,"Lilas",48.886838,2.618491,0,0,OIF:SA:53:2271,Europe/Paris,,OIF, +OIF:SP:53:2272,1,"Lilas",48.886738,2.618981,0,0,OIF:SA:53:2271,Europe/Paris,,OIF, +OIF:SP:53:2273,1,"Lindau",48.883296,2.607052,0,0,OIF:SA:53:2273,Europe/Paris,,OIF, +OIF:SP:53:2274,1,"Lindau",48.883487,2.606358,0,0,OIF:SA:53:2273,Europe/Paris,,OIF, +OIF:SP:53:2275,1,"Mairie",48.882602,2.631032,0,0,OIF:SA:53:2275,Europe/Paris,,OIF, +OIF:SP:53:2276,1,"Mairie",48.882629,2.63076,0,0,OIF:SA:53:2275,Europe/Paris,,OIF, +OIF:SP:53:2277,1,"Mairie",48.877587,2.591829,0,0,OIF:SA:53:2277,Europe/Paris,,OIF, +OIF:SP:53:2278,1,"Mairie",48.878092,2.591069,0,0,OIF:SA:53:2277,Europe/Paris,,OIF, +OIF:SP:53:2281,1,"Mairie",48.945482,2.688461,0,0,OIF:SA:53:2281,Europe/Paris,,OIF, +OIF:SP:53:2282,1,"Mairie",48.945374,2.688447,0,0,OIF:SA:53:2281,Europe/Paris,,OIF, +OIF:SP:53:2283,1,"Mairie",48.917737,2.602513,0,0,OIF:SA:53:2283,Europe/Paris,,OIF, +OIF:SP:53:2286,1,"Mairie",48.917388,2.601898,0,0,OIF:SA:53:2283,Europe/Paris,,OIF, +OIF:SP:53:2291,1,"Mairie",48.914796,2.664759,0,0,OIF:SA:53:2291,Europe/Paris,,OIF, +OIF:SP:53:2292,1,"Mairie",48.914796,2.664759,0,0,OIF:SA:53:2291,Europe/Paris,,OIF, +OIF:SP:53:2293,1,"Pietrasanta",48.940108,2.61728,0,0,OIF:SA:53:2293,Europe/Paris,,OIF, +OIF:SP:53:2294,1,"Bois Madame",48.886188,2.583436,0,0,OIF:SA:53:2294,Europe/Paris,,OIF, +OIF:SP:53:2295,1,"Madeleine",48.889073,2.608118,0,0,OIF:SA:53:2295,Europe/Paris,,OIF, +OIF:SP:53:2296,1,"Madeleine",48.889019,2.60824,0,0,OIF:SA:53:2295,Europe/Paris,,OIF, +OIF:SP:53:2297,1,"Marcel Paul",48.872856,2.646454,0,0,OIF:SA:53:2297,Europe/Paris,,OIF, +OIF:SP:53:2298,1,"Marcel Paul",48.872757,2.646495,0,0,OIF:SA:53:2297,Europe/Paris,,OIF, +OIF:SP:53:2302,1,"Marche",48.909683,2.594878,0,0,OIF:SA:53:2302,Europe/Paris,,OIF, +OIF:SP:53:2303,1,"Marronniers",48.911312,2.666973,0,0,OIF:SA:53:2303,Europe/Paris,,OIF, +OIF:SP:53:2304,1,"Marronniers",48.911312,2.666973,0,0,OIF:SA:53:2303,Europe/Paris,,OIF, +OIF:SP:53:2307,1,"Pierre Martin",48.869436,2.599991,0,0,OIF:SA:53:2307,Europe/Paris,,OIF, +OIF:SP:53:2308,1,"Pierre Martin",48.869635,2.599283,0,0,OIF:SA:53:2307,Europe/Paris,,OIF, +OIF:SP:53:2311,1,"Martyrs",48.870905,2.576592,0,0,OIF:SA:53:2311,Europe/Paris,,OIF, +OIF:SP:53:2312,1,"Martyrs",48.870538,2.576059,0,0,OIF:SA:53:2311,Europe/Paris,,OIF, +OIF:SP:53:2313,1,"Mauperthuis",48.93814,2.675888,0,0,OIF:SA:53:2313,Europe/Paris,,OIF, +OIF:SP:53:2314,1,"Mauperthuis",48.938742,2.676042,0,0,OIF:SA:53:2313,Europe/Paris,,OIF, +OIF:SP:53:2317,1,"Mendès France",48.885819,2.623501,0,0,OIF:SA:53:2317,Europe/Paris,,OIF, +OIF:SP:53:2322,1,"Mendès France",48.885802,2.623391,0,0,OIF:SA:53:2317,Europe/Paris,,OIF, +OIF:SP:53:2323,1,"Michelet",48.896118,2.619932,0,0,OIF:SA:53:2323,Europe/Paris,,OIF, +OIF:SP:53:2324,1,"Michelet",48.896271,2.619919,0,0,OIF:SA:53:2323,Europe/Paris,,OIF, +OIF:SP:53:2327,1,"Martyrs de Chateaubriant",48.960319,2.601736,0,0,OIF:SA:53:2327,Europe/Paris,,OIF, +OIF:SP:53:2328,1,"Martyrs de Chateaubriant",48.960246,2.602008,0,0,OIF:SA:53:2327,Europe/Paris,,OIF, +OIF:SP:53:2331,1,"Gare de Mitry-Claye",48.975462,2.642604,0,0,OIF:SA:8727152,Europe/Paris,,OIF, +OIF:SP:53:2332,1,"Gare de Mitry-Claye",48.975463,2.642427,0,0,OIF:SA:8727152,Europe/Paris,,OIF, +OIF:SP:53:2335,1,"Mairie",48.984229,2.618871,0,0,OIF:SA:53:2335,Europe/Paris,,OIF, +OIF:SP:53:2345,1,"Môquet",48.975595,2.632762,0,0,OIF:SA:53:2345,Europe/Paris,,OIF, +OIF:SP:53:2346,1,"Môquet",48.975317,2.632515,0,0,OIF:SA:53:2345,Europe/Paris,,OIF, +OIF:SP:53:2348,1,"Moulin",48.93127,2.602856,0,0,OIF:SA:53:2348,Europe/Paris,,OIF, +OIF:SP:53:2351,1,"Vieux Moulin",48.869885,2.591928,0,0,OIF:SA:53:2351,Europe/Paris,,OIF, +OIF:SP:53:2352,1,"Vieux Moulin",48.869936,2.588904,0,0,OIF:SA:53:2351,Europe/Paris,,OIF, +OIF:SP:53:2353,1,"Moulin à Vent",48.980119,2.623859,0,0,OIF:SA:53:2353,Europe/Paris,,OIF, +OIF:SP:53:2354,1,"Moulin à Vent",48.979921,2.624186,0,0,OIF:SA:53:2353,Europe/Paris,,OIF, +OIF:SP:53:2355,1,"Parc de l'Aulnay",48.872563,2.645254,0,0,OIF:SA:53:2355,Europe/Paris,,OIF, +OIF:SP:53:2356,1,"Parc de l'Aulnay",48.872463,2.64543,0,0,OIF:SA:53:2355,Europe/Paris,,OIF, +OIF:SP:53:2357,1,"Denis Papin Corot",48.905238,2.593124,0,0,OIF:SA:53:2357,Europe/Paris,,OIF, +OIF:SP:53:2358,1,"Denis Papin Corot",48.904993,2.594091,0,0,OIF:SA:53:2357,Europe/Paris,,OIF, +OIF:SP:53:2362,1,"Parc de la Mairie",48.982307,2.618437,0,0,OIF:SA:53:2362,Europe/Paris,,OIF, +OIF:SP:53:2365,1,"Passerelle",48.877128,2.631192,0,0,OIF:SA:53:2365,Europe/Paris,,OIF, +OIF:SP:53:2366,1,"Passerelle",48.876879,2.630209,0,0,OIF:SA:53:2365,Europe/Paris,,OIF, +OIF:SP:53:2367,1,"Pasteur",48.906365,2.595461,0,0,OIF:SA:53:2367,Europe/Paris,,OIF, +OIF:SP:53:2368,1,"Pasteur",48.90591,2.593946,0,0,OIF:SA:53:2367,Europe/Paris,,OIF, +OIF:SP:53:2371,1,"Pecheurs",48.866903,2.637142,0,0,OIF:SA:53:2371,Europe/Paris,,OIF, +OIF:SP:53:2372,1,"Pecheurs",48.866596,2.637617,0,0,OIF:SA:53:2371,Europe/Paris,,OIF, +OIF:SP:53:2376,1,"Peupliers",48.886385,2.627483,0,0,OIF:SA:53:2376,Europe/Paris,,OIF, +OIF:SP:53:2377,1,"Piscine",48.876077,2.6418,0,0,OIF:SA:53:2377,Europe/Paris,,OIF, +OIF:SP:53:2378,1,"Piscine",48.876058,2.64195,0,0,OIF:SA:53:2377,Europe/Paris,,OIF, +OIF:SP:53:2382,1,"La Plaine",48.942341,2.61133,0,0,OIF:SA:53:2382,Europe/Paris,,OIF, +OIF:SP:53:2383,1,"Les Plantes",48.904841,2.666713,0,0,OIF:SA:53:2383,Europe/Paris,,OIF, +OIF:SP:53:2384,1,"Les Plantes",48.904841,2.666713,0,0,OIF:SA:53:2383,Europe/Paris,,OIF, +OIF:SP:53:2385,1,"Poitou Vers Villevaudé",48.917574,2.65084,0,0,OIF:SA:53:2385,Europe/Paris,,OIF, +OIF:SP:53:2386,1,"Poitou Vers Gare",48.917072,2.650469,0,0,OIF:SA:53:2385,Europe/Paris,,OIF, +OIF:SP:53:2387,1,"Pomponne",48.87695,2.634066,0,0,OIF:SA:53:2387,Europe/Paris,,OIF, +OIF:SP:53:2388,1,"Pomponne",48.877133,2.632827,0,0,OIF:SA:53:2387,Europe/Paris,,OIF, +OIF:SP:53:2393,1,"Grande Prairie",48.869893,2.579244,0,0,OIF:SA:53:2393,Europe/Paris,,OIF, +OIF:SP:53:2394,1,"Grande Prairie",48.869689,2.577881,0,0,OIF:SA:53:2393,Europe/Paris,,OIF, +OIF:SP:53:2395,1,"République",48.881786,2.626258,0,0,OIF:SA:53:2395,Europe/Paris,,OIF, +OIF:SP:53:2396,1,"République",48.881821,2.626776,0,0,OIF:SA:53:2395,Europe/Paris,,OIF, +OIF:SP:53:2401,1,"RN 34",48.879261,2.618559,0,0,OIF:SA:53:2401,Europe/Paris,,OIF, +OIF:SP:53:2402,1,"RN 34",48.879028,2.618394,0,0,OIF:SA:53:2401,Europe/Paris,,OIF, +OIF:SP:53:2403,1,"Terres Rouges",48.889311,2.602163,0,0,OIF:SA:53:2403,Europe/Paris,,OIF, +OIF:SP:53:2404,1,"Terres Rouges",48.889436,2.602518,0,0,OIF:SA:53:2403,Europe/Paris,,OIF, +OIF:SP:53:2405,1,"Docteur Roux",48.887702,2.613971,0,0,OIF:SA:53:2405,Europe/Paris,,OIF, +OIF:SP:53:2406,1,"Docteur Roux",48.887282,2.617035,0,0,OIF:SA:53:2405,Europe/Paris,,OIF, +OIF:SP:53:2407,1,"Rond-Point Nord",48.884309,2.620031,0,0,OIF:SA:53:2407,Europe/Paris,,OIF, +OIF:SP:53:2408,1,"Rond-Point Nord",48.88508,2.62073,0,0,OIF:SA:53:2407,Europe/Paris,,OIF, +OIF:SP:53:2413,1,"Rue de Villeparisis",48.98248,2.6134,0,0,OIF:SA:53:2413,Europe/Paris,,OIF, +OIF:SP:53:2417,1,"Schweitzer",48.88031,2.627068,0,0,OIF:SA:53:2417,Europe/Paris,,OIF, +OIF:SP:53:2421,1,"Rond-Point des Sciences",48.903918,2.588237,0,0,OIF:SA:53:2421,Europe/Paris,,OIF, +OIF:SP:53:2422,1,"Rond-Point des Sciences",48.904089,2.588102,0,0,OIF:SA:53:2421,Europe/Paris,,OIF, +OIF:SP:53:2426,1,"Sources",48.88478,2.573018,0,0,OIF:SA:53:2426,Europe/Paris,,OIF, +OIF:SP:53:2433,1,"Sylvie",48.870124,2.585035,0,0,OIF:SA:53:2433,Europe/Paris,,OIF, +OIF:SP:53:2434,1,"Sylvie",48.870062,2.584749,0,0,OIF:SA:53:2433,Europe/Paris,,OIF, +OIF:SP:53:2435,1,"Trentaine",48.868973,2.602032,0,0,OIF:SA:53:2435,Europe/Paris,,OIF, +OIF:SP:53:2436,1,"Trentaine",48.869072,2.601855,0,0,OIF:SA:53:2435,Europe/Paris,,OIF, +OIF:SP:53:2443,1,"Val Fleuri",48.882064,2.591129,0,0,OIF:SA:53:2443,Europe/Paris,,OIF, +OIF:SP:53:2444,1,"Val Fleuri",48.881569,2.591713,0,0,OIF:SA:53:2443,Europe/Paris,,OIF, +OIF:SP:53:2445,1,"Verdun",48.943835,2.686117,0,0,OIF:SA:53:2445,Europe/Paris,,OIF, +OIF:SP:53:2446,1,"Verdun",48.943871,2.68609,0,0,OIF:SA:53:2445,Europe/Paris,,OIF, +OIF:SP:53:2447,1,"Vergers",48.877541,2.608671,0,0,OIF:SA:53:2447,Europe/Paris,,OIF, +OIF:SP:53:2448,1,"Vergers",48.878288,2.60798,0,0,OIF:SA:53:2447,Europe/Paris,,OIF, +OIF:SP:53:2451,1,"Anatole France",48.946767,2.609594,0,0,OIF:SA:53:2451,Europe/Paris,,OIF, +OIF:SP:53:2453,1,"Balzac",48.939194,2.612187,0,0,OIF:SA:53:2453,Europe/Paris,,OIF, +OIF:SP:53:2454,1,"Balzac",48.939328,2.612378,0,0,OIF:SA:53:2453,Europe/Paris,,OIF, +OIF:SP:53:2455,1,"Bois Fleuri Lilas",48.933323,2.635331,0,0,OIF:SA:53:2455,Europe/Paris,,OIF, +OIF:SP:53:2456,1,"Bois Fleuri Lilas",48.933313,2.635958,0,0,OIF:SA:53:2455,Europe/Paris,,OIF, +OIF:SP:53:2457,1,"Cèdres",48.939047,2.605706,0,0,OIF:SA:53:2457,Europe/Paris,,OIF, +OIF:SP:53:2458,1,"Cèdres",48.938892,2.606401,0,0,OIF:SA:53:2457,Europe/Paris,,OIF, +OIF:SP:53:2462,1,"La Poste",48.945818,2.607719,0,0,OIF:SA:53:2462,Europe/Paris,,OIF, +OIF:SP:53:2465,1,"Aulnoy",48.875542,2.594027,0,0,OIF:SA:53:2465,Europe/Paris,,OIF, +OIF:SP:53:2466,1,"Aulnoy",48.875615,2.593373,0,0,OIF:SA:53:2465,Europe/Paris,,OIF, +OIF:SP:53:2467,1,"Haute Borne",48.883451,2.613935,0,0,OIF:SA:53:2467,Europe/Paris,,OIF, +OIF:SP:53:2468,1,"Haute Borne",48.883469,2.61388,0,0,OIF:SA:53:2467,Europe/Paris,,OIF, +OIF:SP:53:2471,1,"Maurice Bacquet",48.88208,2.616312,0,0,OIF:SA:53:2471,Europe/Paris,,OIF, +OIF:SP:53:2472,1,"Maurice Bacquet",48.882008,2.616053,0,0,OIF:SA:53:2471,Europe/Paris,,OIF, +OIF:SP:53:2473,1,"Félix Buchin",48.875646,2.595853,0,0,OIF:SA:53:2473,Europe/Paris,,OIF, +OIF:SP:53:2474,1,"Félix Buchin",48.875806,2.596617,0,0,OIF:SA:53:2473,Europe/Paris,,OIF, +OIF:SP:53:2476,1,"Collège Corot Vers Chelles",48.904169,2.59301,0,0,OIF:SA:53:2476,Europe/Paris,,OIF, +OIF:SP:53:2477,1,"Collège Corot Vers Courtry",48.904052,2.592996,0,0,OIF:SA:53:2476,Europe/Paris,,OIF, +OIF:SP:53:2478,1,"Austerlitz",48.878178,2.575508,0,0,OIF:SA:53:2478,Europe/Paris,,OIF, +OIF:SP:53:2481,1,"Buffon",48.943181,2.613272,0,0,OIF:SA:53:2481,Europe/Paris,,OIF, +OIF:SP:53:2494,1,"Parking Collège Goscinny",48.870435,2.64768,0,0,OIF:SA:53:2083,Europe/Paris,,OIF, +OIF:SP:53:2496,1,"Gare de Villeparisis Mitry-le-Neuf",48.952421,2.600999,0,0,OIF:SA:8727151,Europe/Paris,,OIF, +OIF:SP:53:2501,1,"Gare de Villeparisis Mitry-le-Neuf",48.952421,2.600999,0,0,OIF:SA:8727151,Europe/Paris,,OIF, +OIF:SP:53:2502,1,"ZAC de la Tuilerie",48.889263,2.595458,0,0,OIF:SA:53:2502,Europe/Paris,,OIF, +OIF:SP:53:2503,1,"François Trinquand",48.876964,2.597331,0,0,OIF:SA:53:2503,Europe/Paris,,OIF, +OIF:SP:53:2505,1,"ZAC de la Tuilerie",48.88911,2.595539,0,0,OIF:SA:53:2502,Europe/Paris,,OIF, +OIF:SP:53:2516,1,"Lilas",48.961996,2.603218,0,0,OIF:SA:53:2516,Europe/Paris,,OIF, +OIF:SP:53:2521,1,"Goulet",48.916736,2.595568,0,0,OIF:SA:53:2521,Europe/Paris,,OIF, +OIF:SP:53:2522,1,"Goulet",48.916657,2.594722,0,0,OIF:SA:53:2521,Europe/Paris,,OIF, +OIF:SP:53:2523,1,"Lumière",48.880036,2.614162,0,0,OIF:SA:53:2523,Europe/Paris,,OIF, +OIF:SP:53:2528,1,"Gare SNCF",48.874544,2.640129,0,0,OIF:SA:8711629,Europe/Paris,,OIF, +OIF:SP:53:2529,1,"Gare SNCF",48.87514,2.639165,0,0,OIF:SA:8711629,Europe/Paris,,OIF, +OIF:SP:53:2531,1,"Base Olympique",48.866278,2.642791,0,0,OIF:SA:53:2531,Europe/Paris,,OIF, +OIF:SP:53:2532,1,"Base Olympique",48.865849,2.641822,0,0,OIF:SA:53:2531,Europe/Paris,,OIF, +OIF:SP:53:2536,1,"Abbesses",48.874966,2.58157,0,0,OIF:SA:53:2536,Europe/Paris,,OIF, +OIF:SP:53:2537,1,"Belle Île",48.870325,2.596004,0,0,OIF:SA:53:2537,Europe/Paris,,OIF, +OIF:SP:53:2538,1,"Belle Île",48.870361,2.596017,0,0,OIF:SA:53:2537,Europe/Paris,,OIF, +OIF:SP:53:2541,1,"Bisy",48.91705,2.652146,0,0,OIF:SA:53:2541,Europe/Paris,,OIF, +OIF:SP:53:2542,1,"Bisy",48.91705,2.652146,0,0,OIF:SA:53:2541,Europe/Paris,,OIF, +OIF:SP:53:2543,1,"Centre d'Accueil",48.938462,2.602074,0,0,OIF:SA:53:2543,Europe/Paris,,OIF, +OIF:SP:53:2544,1,"Centre d'Accueil",48.938561,2.602047,0,0,OIF:SA:53:2543,Europe/Paris,,OIF, +OIF:SP:53:2545,1,"Trois Tilleuls",48.940548,2.679164,0,0,OIF:SA:53:2545,Europe/Paris,,OIF, +OIF:SP:53:2546,1,"Trois Tilleuls",48.939967,2.67811,0,0,OIF:SA:53:2545,Europe/Paris,,OIF, +OIF:SP:53:2548,1,"Quatre Routes",48.886156,2.58578,0,0,OIF:SA:53:2548,Europe/Paris,,OIF, +OIF:SP:53:2553,1,"Paul Algis",48.869806,2.626368,0,0,OIF:SA:53:2553,Europe/Paris,,OIF, +OIF:SP:53:2554,1,"Paul Algis",48.869619,2.625782,0,0,OIF:SA:53:2553,Europe/Paris,,OIF, +OIF:SP:53:2555,1,"Arcades",48.881723,2.619076,0,0,OIF:SA:53:2555,Europe/Paris,,OIF, +OIF:SP:53:2556,1,"Arcades",48.881605,2.619307,0,0,OIF:SA:53:2555,Europe/Paris,,OIF, +OIF:SP:53:2557,1,"Onze Arpents",48.906931,2.600099,0,0,OIF:SA:53:2557,Europe/Paris,,OIF, +OIF:SP:53:2558,1,"Onze Arpents",48.906535,2.600097,0,0,OIF:SA:53:2557,Europe/Paris,,OIF, +OIF:SP:53:2561,1,"Henri Barbusse",48.879598,2.635158,0,0,OIF:SA:53:2561,Europe/Paris,,OIF, +OIF:SP:53:2562,1,"Henri Barbusse",48.879166,2.635509,0,0,OIF:SA:53:2561,Europe/Paris,,OIF, +OIF:SP:53:2563,1,"Collège Beau Soleil",48.887658,2.621139,0,0,OIF:SA:53:2563,Europe/Paris,,OIF, +OIF:SP:53:2564,1,"Collège Beau Soleil",48.887037,2.621531,0,0,OIF:SA:53:2563,Europe/Paris,,OIF, +OIF:SP:53:2565,1,"Adolphe Besson",48.874063,2.58782,0,0,OIF:SA:53:2565,Europe/Paris,,OIF, +OIF:SP:53:2566,1,"Adolphe Besson",48.874172,2.587385,0,0,OIF:SA:53:2565,Europe/Paris,,OIF, +OIF:SP:53:2567,1,"Bickart",48.884505,2.588797,0,0,OIF:SA:53:2567,Europe/Paris,,OIF, +OIF:SP:53:2568,1,"Centre Commercial Claye",48.945455,2.666508,0,0,OIF:SA:53:2568,Europe/Paris,,OIF, +OIF:SP:53:2569,1,"Centre Commercial Claye",48.945455,2.666508,0,0,OIF:SA:53:2568,Europe/Paris,,OIF, +OIF:SP:53:2571,1,"Bordeaux",48.901016,2.672115,0,0,OIF:SA:53:2571,Europe/Paris,,OIF, +OIF:SP:53:2572,1,"Bordeaux",48.901016,2.672115,0,0,OIF:SA:53:2571,Europe/Paris,,OIF, +OIF:SP:53:2573,1,"Cimetière",48.917468,2.613857,0,0,OIF:SA:53:2573,Europe/Paris,,OIF, +OIF:SP:53:2574,1,"Cimetière",48.917505,2.613694,0,0,OIF:SA:53:2573,Europe/Paris,,OIF, +OIF:SP:53:2575,1,"Mirabilis",48.907737,2.66924,0,0,OIF:SA:53:2575,Europe/Paris,,OIF, +OIF:SP:53:2576,1,"Mirabilis",48.907737,2.66924,0,0,OIF:SA:53:2575,Europe/Paris,,OIF, +OIF:SP:53:2578,1,"La Poste",48.879304,2.587478,0,0,OIF:SA:53:2578,Europe/Paris,,OIF, +OIF:SP:53:2586,1,"Bickart",48.884559,2.588607,0,0,OIF:SA:53:2567,Europe/Paris,,OIF, +OIF:SP:53:2591,1,"Carnot",48.88185,2.633358,0,0,OIF:SA:53:2591,Europe/Paris,,OIF, +OIF:SP:53:2592,1,"Carnot",48.881571,2.633452,0,0,OIF:SA:53:2591,Europe/Paris,,OIF, +OIF:SP:53:2595,1,"Madeleine",48.888492,2.606847,0,0,OIF:SA:53:2295,Europe/Paris,,OIF, +OIF:SP:53:2596,1,"Madeleine",48.888617,2.606971,0,0,OIF:SA:53:2295,Europe/Paris,,OIF, +OIF:SP:53:2597,1,"Cheminots",48.97458,2.639568,0,0,OIF:SA:53:2597,Europe/Paris,,OIF, +OIF:SP:53:2598,1,"Cheminots",48.974212,2.639634,0,0,OIF:SA:53:2597,Europe/Paris,,OIF, +OIF:SP:53:2599,1,"République",48.936742,2.619322,0,0,OIF:SA:53:2599,Europe/Paris,,OIF, +OIF:SP:53:2601,1,"Centre Commercial Terre Ciel",48.878434,2.61478,0,0,OIF:SA:53:2101,Europe/Paris,,OIF, +OIF:SP:53:2602,1,"Centre Commercial Terre Ciel",48.878678,2.614345,0,0,OIF:SA:53:2101,Europe/Paris,,OIF, +OIF:SP:53:2605,1,"Place Molière",48.893373,2.617722,0,0,OIF:SA:53:2605,Europe/Paris,,OIF, +OIF:SP:53:2606,1,"Place Molière",48.89288,2.617393,0,0,OIF:SA:53:2605,Europe/Paris,,OIF, +OIF:SP:53:2607,1,"Pasteur",48.941959,2.682284,0,0,OIF:SA:53:2607,Europe/Paris,,OIF, +OIF:SP:53:2608,1,"Pasteur",48.942425,2.682806,0,0,OIF:SA:53:2607,Europe/Paris,,OIF, +OIF:SP:53:2611,1,"Debussy",48.912663,2.600483,0,0,OIF:SA:53:2118,Europe/Paris,,OIF, +OIF:SP:53:2612,1,"Dispensaire",48.877161,2.601692,0,0,OIF:SA:53:2175,Europe/Paris,,OIF, +OIF:SP:53:2613,1,"Maurice Bacquet",48.882566,2.61581,0,0,OIF:SA:53:2471,Europe/Paris,,OIF, +OIF:SP:53:2614,1,"Maurice Bacquet",48.882548,2.615742,0,0,OIF:SA:53:2471,Europe/Paris,,OIF, +OIF:SP:53:2615,1,"Centre Postal",48.89021,2.593718,0,0,OIF:SA:53:2615,Europe/Paris,,OIF, +OIF:SP:53:2616,1,"Centre Postal",48.89021,2.593718,0,0,OIF:SA:53:2615,Europe/Paris,,OIF, +OIF:SP:53:2617,1,"Becquerel",48.88913,2.594735,0,0,OIF:SA:53:2617,Europe/Paris,,OIF, +OIF:SP:53:2618,1,"Becquerel",48.88913,2.594735,0,0,OIF:SA:53:2617,Europe/Paris,,OIF, +OIF:SP:53:2620,1,"Foyer Flamant",48.897578,2.590347,0,0,OIF:SA:53:2620,Europe/Paris,,OIF, +OIF:SP:53:2621,1,"Foyer Flamant",48.899896,2.590862,0,0,OIF:SA:53:2620,Europe/Paris,,OIF, +OIF:SP:53:2622,1,"Skate Park",48.887072,2.585934,0,0,OIF:SA:53:2622,Europe/Paris,,OIF, +OIF:SP:53:2623,1,"Skate Park",48.887054,2.586152,0,0,OIF:SA:53:2622,Europe/Paris,,OIF, +OIF:SP:53:2625,1,"Centre",48.939349,2.615093,0,0,OIF:SA:53:2625,Europe/Paris,,OIF, +OIF:SP:53:2627,1,"Aristide Briand",48.949082,2.607163,0,0,OIF:SA:53:2627,Europe/Paris,,OIF, +OIF:SP:53:2629,1,"Bachelard",48.883401,2.612544,0,0,OIF:SA:53:2629,Europe/Paris,,OIF, +OIF:SP:53:2634,1,"Maison de l'Emploi",48.873852,2.590163,0,0,OIF:SA:53:2634,Europe/Paris,,OIF, +OIF:SP:53:2635,1,"Maison de l'Emploi",48.873898,2.589672,0,0,OIF:SA:53:2634,Europe/Paris,,OIF, +OIF:SP:53:2637,1,"République",48.87021,2.64103,0,0,OIF:SA:53:2637,Europe/Paris,,OIF, +OIF:SP:53:2638,1,"République",48.869436,2.641298,0,0,OIF:SA:53:2637,Europe/Paris,,OIF, +OIF:SP:53:2639,1,"Base Olympique",48.866612,2.642289,0,0,OIF:SA:53:2531,Europe/Paris,,OIF, +OIF:SP:53:2900,1,"Gare de Chelles Gournay",48.874438,2.584879,0,0,OIF:SA:8711611,Europe/Paris,,OIF, +OIF:SP:53:2901,1,"Gare de Chelles Gournay",48.874959,2.584827,0,0,OIF:SA:8711611,Europe/Paris,,OIF, +OIF:SP:53:2902,1,"Gare de Chelles Gournay",48.875139,2.584882,0,0,OIF:SA:8711611,Europe/Paris,,OIF, +OIF:SP:53:2905,1,"Gare de Chelles Gournay",48.875363,2.585401,0,0,OIF:SA:8711611,Europe/Paris,,OIF, +OIF:SP:53:2906,1,"Gare de Chelles Gournay",48.875192,2.585278,0,0,OIF:SA:8711611,Europe/Paris,,OIF, +OIF:SP:53:2907,1,"Gare de Chelles Gournay",48.874806,2.585071,0,0,OIF:SA:8711611,Europe/Paris,,OIF, +OIF:SP:53:2908,1,"Gare de Chelles Gournay",48.874743,2.584989,0,0,OIF:SA:8711611,Europe/Paris,,OIF, +OIF:SP:53:2914,1,"Gare de Chelles Gournay",48.874646,2.584294,0,0,OIF:SA:8711611,Europe/Paris,,OIF, +OIF:SP:54:10009,1,"Boulvard des Alliés",48.394039,2.378308,0,0,OIF:SA:54:10009,Europe/Paris,,OIF, +OIF:SP:54:10010,1,"Boulvard des Alliés",48.393922,2.378295,0,0,OIF:SA:54:10009,Europe/Paris,,OIF, +OIF:SP:54:10013,1,"Courty",48.399864,2.381094,0,0,OIF:SA:54:10013,Europe/Paris,,OIF, +OIF:SP:54:10014,1,"Gare de Maisse",48.392478,2.393615,0,0,OIF:SA:8768148,Europe/Paris,,OIF, +OIF:SP:54:10015,1,"Gare de Maisse",48.392487,2.393602,0,0,OIF:SA:8768148,Europe/Paris,,OIF, +OIF:SP:54:10016,1,"Marché",48.391396,2.37782,0,0,OIF:SA:54:10016,Europe/Paris,,OIF, +OIF:SP:54:10017,1,"Marché",48.391288,2.377753,0,0,OIF:SA:54:10016,Europe/Paris,,OIF, +OIF:SP:54:1002,1,"Mairie",48.316978,2.570483,0,0,OIF:SA:54:1002,Europe/Paris,,OIF, +OIF:SP:54:1003,1,"Mairie",48.317068,2.570497,0,0,OIF:SA:54:1002,Europe/Paris,,OIF, +OIF:SP:54:1004,1,"Butteaux",48.314706,2.564448,0,0,OIF:SA:54:1004,Europe/Paris,,OIF, +OIF:SP:54:1005,1,"Butteaux",48.314508,2.564514,0,0,OIF:SA:54:1004,Europe/Paris,,OIF, +OIF:SP:54:10061,1,"Marolles en Beauce",48.374351,2.200568,0,0,OIF:SA:54:10061,Europe/Paris,,OIF, +OIF:SP:54:10062,1,"Marolles en Beauce",48.374342,2.200595,0,0,OIF:SA:54:10061,Europe/Paris,,OIF, +OIF:SP:54:1008,1,"Château d'Eau",48.320165,2.577305,0,0,OIF:SA:54:1008,Europe/Paris,,OIF, +OIF:SP:54:1009,1,"Château d'Eau",48.32003,2.577278,0,0,OIF:SA:54:1008,Europe/Paris,,OIF, +OIF:SP:54:1014,1,"École",48.317502,2.569313,0,0,OIF:SA:54:1014,Europe/Paris,,OIF, +OIF:SP:54:10143,1,"Lycée Marie Laurençin",48.563653,2.43897,0,0,OIF:SA:3:115,Europe/Paris,,OIF, +OIF:SP:54:10144,1,"Lycée Marie Laurençin",48.563787,2.439119,0,0,OIF:SA:3:115,Europe/Paris,,OIF, +OIF:SP:54:1015,1,"École",48.317556,2.569219,0,0,OIF:SA:54:1014,Europe/Paris,,OIF, +OIF:SP:54:1016,1,"Bessonville",48.32137,2.594162,0,0,OIF:SA:54:1016,Europe/Paris,,OIF, +OIF:SP:54:1017,1,"Bessonville",48.321271,2.594162,0,0,OIF:SA:54:1016,Europe/Paris,,OIF, +OIF:SP:54:10170,1,"Mespuits",48.356268,2.27168,0,0,OIF:SA:54:10170,Europe/Paris,,OIF, +OIF:SP:54:10171,1,"Mespuits",48.356295,2.27195,0,0,OIF:SA:54:10170,Europe/Paris,,OIF, +OIF:SP:54:10174,1,"Gare Routière",48.402894,2.473869,0,0,OIF:SA:54:10174,Europe/Paris,,OIF, +OIF:SP:54:10175,1,"Gare Routière",48.402804,2.473747,0,0,OIF:SA:54:10174,Europe/Paris,,OIF, +OIF:SP:54:10176,1,"HLM",48.410715,2.466206,0,0,OIF:SA:54:10176,Europe/Paris,,OIF, +OIF:SP:54:10177,1,"HLM",48.410707,2.465949,0,0,OIF:SA:54:10176,Europe/Paris,,OIF, +OIF:SP:54:10178,1,"Colombier",48.40368,2.470833,0,0,OIF:SA:54:10178,Europe/Paris,,OIF, +OIF:SP:54:10179,1,"Colombier",48.403671,2.470739,0,0,OIF:SA:54:10178,Europe/Paris,,OIF, +OIF:SP:54:10180,1,"Porte du Roy",48.399191,2.456092,0,0,OIF:SA:54:10180,Europe/Paris,,OIF, +OIF:SP:54:10181,1,"Porte du Roy",48.399191,2.456065,0,0,OIF:SA:54:10180,Europe/Paris,,OIF, +OIF:SP:54:10183,1,"Église",48.424239,2.45623,0,0,OIF:SA:54:10183,Europe/Paris,,OIF, +OIF:SP:54:10184,1,"Église",48.424221,2.456082,0,0,OIF:SA:54:10183,Europe/Paris,,OIF, +OIF:SP:54:10185,1,"Le Lavoir",48.423813,2.459201,0,0,OIF:SA:54:10185,Europe/Paris,,OIF, +OIF:SP:54:10186,1,"Le Lavoir",48.42384,2.459025,0,0,OIF:SA:54:10185,Europe/Paris,,OIF, +OIF:SP:54:10189,1,"Le Puits",48.428463,2.457226,0,0,OIF:SA:54:10189,Europe/Paris,,OIF, +OIF:SP:54:10190,1,"Le Puits",48.428463,2.457442,0,0,OIF:SA:54:10189,Europe/Paris,,OIF, +OIF:SP:54:10191,1,"Scierie",48.437277,2.453315,0,0,OIF:SA:54:10191,Europe/Paris,,OIF, +OIF:SP:54:10192,1,"Scierie",48.437359,2.453072,0,0,OIF:SA:54:10191,Europe/Paris,,OIF, +OIF:SP:54:1020,1,"Marronniers",48.317383,2.570593,0,0,OIF:SA:54:1020,Europe/Paris,,OIF, +OIF:SP:54:1021,1,"Marronniers",48.317302,2.570431,0,0,OIF:SA:54:1020,Europe/Paris,,OIF, +OIF:SP:54:10300,1,"La Montagne",48.408468,2.215117,0,0,OIF:SA:54:10300,Europe/Paris,,OIF, +OIF:SP:54:10301,1,"La Montagne",48.408467,2.214874,0,0,OIF:SA:54:10300,Europe/Paris,,OIF, +OIF:SP:54:10394,1,"Château",48.508333,2.493817,0,0,OIF:SA:3:141,Europe/Paris,,OIF, +OIF:SP:54:10395,1,"Château",48.508378,2.493547,0,0,OIF:SA:3:141,Europe/Paris,,OIF, +OIF:SP:54:10449,1,"Grande Rue",48.383393,2.474223,0,0,OIF:SA:54:10449,Europe/Paris,,OIF, +OIF:SP:54:10450,1,"Grande Rue",48.383402,2.474074,0,0,OIF:SA:54:10449,Europe/Paris,,OIF, +OIF:SP:54:10451,1,"Mairie",48.382116,2.474651,0,0,OIF:SA:54:10451,Europe/Paris,,OIF, +OIF:SP:54:10452,1,"Mairie",48.382053,2.474476,0,0,OIF:SA:54:10451,Europe/Paris,,OIF, +OIF:SP:54:10455,1,"Saint-Pierre",48.385335,2.474079,0,0,OIF:SA:54:10455,Europe/Paris,,OIF, +OIF:SP:54:10456,1,"Saint-Pierre",48.38529,2.473971,0,0,OIF:SA:54:10455,Europe/Paris,,OIF, +OIF:SP:54:10465,1,"D'Huilet",48.402193,2.142005,0,0,OIF:SA:54:10465,Europe/Paris,,OIF, +OIF:SP:54:10466,1,"D'Huilet",48.402337,2.141883,0,0,OIF:SA:54:10465,Europe/Paris,,OIF, +OIF:SP:54:10469,1,"Mesnil Girault",48.40448,2.149734,0,0,OIF:SA:54:10469,Europe/Paris,,OIF, +OIF:SP:54:10470,1,"Mesnil Girault",48.404453,2.149504,0,0,OIF:SA:54:10469,Europe/Paris,,OIF, +OIF:SP:54:10586,1,"Orveau",48.448529,2.292093,0,0,OIF:SA:54:10586,Europe/Paris,,OIF, +OIF:SP:54:10587,1,"Orveau",48.448421,2.291944,0,0,OIF:SA:54:10586,Europe/Paris,,OIF, +OIF:SP:54:10662,1,"Mairie",48.357205,2.377807,0,0,OIF:SA:54:10662,Europe/Paris,,OIF, +OIF:SP:54:10663,1,"Mairie",48.357133,2.377537,0,0,OIF:SA:54:10662,Europe/Paris,,OIF, +OIF:SP:54:10664,1,"Abribus",48.408015,2.266309,0,0,OIF:SA:54:10664,Europe/Paris,,OIF, +OIF:SP:54:10665,1,"Abribus",48.407943,2.266539,0,0,OIF:SA:54:10664,Europe/Paris,,OIF, +OIF:SP:54:10667,1,"Mairie",48.404515,2.262479,0,0,OIF:SA:54:10667,Europe/Paris,,OIF, +OIF:SP:54:10668,1,"Mairie",48.404354,2.262641,0,0,OIF:SA:54:10667,Europe/Paris,,OIF, +OIF:SP:54:10669,1,"Petit Marais",48.402653,2.260983,0,0,OIF:SA:54:10669,Europe/Paris,,OIF, +OIF:SP:54:10670,1,"Petit Marais",48.402618,2.261253,0,0,OIF:SA:54:10669,Europe/Paris,,OIF, +OIF:SP:54:10716,1,"Bois Champbault",48.357619,2.23601,0,0,OIF:SA:54:10716,Europe/Paris,,OIF, +OIF:SP:54:10717,1,"Bois Champbault",48.357448,2.235956,0,0,OIF:SA:54:10716,Europe/Paris,,OIF, +OIF:SP:54:10718,1,"Roinvilliers",48.356679,2.241246,0,0,OIF:SA:54:10718,Europe/Paris,,OIF, +OIF:SP:54:10719,1,"Roinvilliers",48.356652,2.241192,0,0,OIF:SA:54:10718,Europe/Paris,,OIF, +OIF:SP:54:10720,1,"Ezerville",48.341135,2.232414,0,0,OIF:SA:54:10720,Europe/Paris,,OIF, +OIF:SP:54:10721,1,"Ezerville",48.341073,2.23271,0,0,OIF:SA:54:10720,Europe/Paris,,OIF, +OIF:SP:54:11191,1,"Grand Frenneville",48.41301,2.295743,0,0,OIF:SA:54:11191,Europe/Paris,,OIF, +OIF:SP:54:11192,1,"Grand Frenneville",48.413001,2.295675,0,0,OIF:SA:54:11191,Europe/Paris,,OIF, +OIF:SP:54:11194,1,"La Lieue",48.391866,2.303062,0,0,OIF:SA:54:11194,Europe/Paris,,OIF, +OIF:SP:54:11196,1,"La Main Ferme",48.398043,2.303747,0,0,OIF:SA:54:11196,Europe/Paris,,OIF, +OIF:SP:54:11197,1,"Le Poty",48.385987,2.304659,0,0,OIF:SA:54:11197,Europe/Paris,,OIF, +OIF:SP:54:11198,1,"Le Poty",48.385951,2.304672,0,0,OIF:SA:54:11197,Europe/Paris,,OIF, +OIF:SP:54:11200,1,"Maison Rouge",48.401566,2.300909,0,0,OIF:SA:54:11200,Europe/Paris,,OIF, +OIF:SP:54:11202,1,"Porte Frenneville",48.406953,2.304079,0,0,OIF:SA:54:11202,Europe/Paris,,OIF, +OIF:SP:54:11223,1,"Mairie",48.434699,2.359548,0,0,OIF:SA:54:11223,Europe/Paris,,OIF, +OIF:SP:54:11224,1,"Mairie",48.434582,2.359507,0,0,OIF:SA:54:11223,Europe/Paris,,OIF, +OIF:SP:54:11227,1,"Transformateur",48.433458,2.362574,0,0,OIF:SA:54:11227,Europe/Paris,,OIF, +OIF:SP:54:11228,1,"Transformateur",48.433593,2.362574,0,0,OIF:SA:54:11227,Europe/Paris,,OIF, +OIF:SP:54:14217,1,"Rousset/Audigers",48.427112,2.405149,0,0,OIF:SA:54:14217,Europe/Paris,,OIF, +OIF:SP:54:14220,1,"Jarcy",48.425404,2.386843,0,0,OIF:SA:54:14220,Europe/Paris,,OIF, +OIF:SP:54:14221,1,"Marchais",48.447346,2.393027,0,0,OIF:SA:54:14221,Europe/Paris,,OIF, +OIF:SP:54:14225,1,"Pasloup",48.444956,2.363769,0,0,OIF:SA:54:14225,Europe/Paris,,OIF, +OIF:SP:54:14387,1,"Mairie",48.460916,2.319698,0,0,OIF:SA:49:60390,Europe/Paris,,OIF, +OIF:SP:54:14389,1,"D'Huison",48.464979,2.321292,0,0,OIF:SA:49:60410,Europe/Paris,,OIF, +OIF:SP:54:14392,1,"Rue des Barreaux",48.43503,2.36706,0,0,OIF:SA:54:14392,Europe/Paris,,OIF, +OIF:SP:54:14396,1,"Bois Minard",48.331373,2.427743,0,0,OIF:SA:54:14396,Europe/Paris,,OIF, +OIF:SP:54:14397,1,"Bois Dormant",48.390945,2.495814,0,0,OIF:SA:54:14397,Europe/Paris,,OIF, +OIF:SP:54:14398,1,"Chemin de la Saussaie",48.388399,2.503257,0,0,OIF:SA:54:14398,Europe/Paris,,OIF, +OIF:SP:54:14399,1,"Chambergeot",48.396684,2.479428,0,0,OIF:SA:54:14399,Europe/Paris,,OIF, +OIF:SP:54:14400,1,"Chesnay",48.395322,2.496732,0,0,OIF:SA:54:14400,Europe/Paris,,OIF, +OIF:SP:54:14401,1,"Croix Saint-Jérôme",48.390711,2.50232,0,0,OIF:SA:54:14401,Europe/Paris,,OIF, +OIF:SP:54:14402,1,"Grandes Vallées",48.387907,2.501757,0,0,OIF:SA:54:14402,Europe/Paris,,OIF, +OIF:SP:54:14403,1,"Courty",48.399981,2.381094,0,0,OIF:SA:54:10013,Europe/Paris,,OIF, +OIF:SP:54:14404,1,"Gare de la Ferté Alais",48.484398,2.350306,0,0,OIF:SA:8768145,Europe/Paris,,OIF, +OIF:SP:54:14405,1,"Gare de Boutigny sur Essonne",48.435234,2.376625,0,0,OIF:SA:8768147,Europe/Paris,,OIF, +OIF:SP:54:14406,1,"Chemin Papillon",48.428458,2.250936,0,0,OIF:SA:54:14406,Europe/Paris,,OIF, +OIF:SP:54:14409,1,"Bonvilliers Grande Place",48.422726,2.224012,0,0,OIF:SA:54:14409,Europe/Paris,,OIF, +OIF:SP:54:14415,1,"Mairie",48.316042,2.417081,0,0,OIF:SA:54:14415,Europe/Paris,,OIF, +OIF:SP:54:14416,1,"Mairie",48.315871,2.417175,0,0,OIF:SA:54:14415,Europe/Paris,,OIF, +OIF:SP:54:14417,1,"Villetard",48.305547,2.420623,0,0,OIF:SA:54:14417,Europe/Paris,,OIF, +OIF:SP:54:14418,1,"Villetard",48.30525,2.420353,0,0,OIF:SA:54:14417,Europe/Paris,,OIF, +OIF:SP:54:14422,1,"SNCF",48.266984,2.687304,0,0,OIF:SA:8768412,Europe/Paris,,OIF, +OIF:SP:54:14429,1,"D'Huison",48.464979,2.321265,0,0,OIF:SA:49:60410,Europe/Paris,,OIF, +OIF:SP:54:14430,1,"Mairie",48.46088,2.319333,0,0,OIF:SA:49:60390,Europe/Paris,,OIF, +OIF:SP:54:14435,1,"Petit Gironville",48.370311,2.384793,0,0,OIF:SA:54:14435,Europe/Paris,,OIF, +OIF:SP:54:14436,1,"Petit Gironville",48.370239,2.38478,0,0,OIF:SA:54:14435,Europe/Paris,,OIF, +OIF:SP:54:14437,1,"Rue des Sablons",48.420769,2.375331,0,0,OIF:SA:54:14437,Europe/Paris,,OIF, +OIF:SP:54:14438,1,"Rue des Sablons",48.420544,2.375561,0,0,OIF:SA:54:14437,Europe/Paris,,OIF, +OIF:SP:54:14439,1,"Rue du Clos Saint-Gervais",48.415787,2.378974,0,0,OIF:SA:54:14439,Europe/Paris,,OIF, +OIF:SP:54:14440,1,"Rue du Clos Saint-Gervais",48.415733,2.378839,0,0,OIF:SA:54:14439,Europe/Paris,,OIF, +OIF:SP:54:14445,1,"Cimetiére",48.397161,2.454359,0,0,OIF:SA:54:14445,Europe/Paris,,OIF, +OIF:SP:54:14446,1,"Cimetiére",48.397143,2.454386,0,0,OIF:SA:54:14445,Europe/Paris,,OIF, +OIF:SP:54:14447,1,"Château Gaillard",48.346,2.325804,0,0,OIF:SA:54:14447,Europe/Paris,,OIF, +OIF:SP:54:14448,1,"Château Gaillard",48.346,2.325885,0,0,OIF:SA:54:14447,Europe/Paris,,OIF, +OIF:SP:54:14449,1,"La Fourche",48.408107,2.687182,0,0,OIF:SA:28:309,Europe/Paris,,OIF, +OIF:SP:54:14450,1,"La Fourche",48.40808,2.687263,0,0,OIF:SA:28:309,Europe/Paris,,OIF, +OIF:SP:54:14451,1,"François 1",48.415948,2.701618,0,0,OIF:SA:12:3323,Europe/Paris,,OIF, +OIF:SP:54:14452,1,"François 1",48.41611,2.701565,0,0,OIF:SA:12:3323,Europe/Paris,,OIF, +OIF:SP:54:14456,1,"Rousset/Audigers",48.427165,2.405216,0,0,OIF:SA:54:14217,Europe/Paris,,OIF, +OIF:SP:54:14457,1,"Collège",48.514111,2.44898,0,0,OIF:SA:54:14457,Europe/Paris,,OIF, +OIF:SP:54:14458,1,"Collège",48.51412,2.44898,0,0,OIF:SA:54:14457,Europe/Paris,,OIF, +OIF:SP:54:14460,1,"Arbre Sec",48.401302,2.692956,0,0,OIF:SA:54:14460,Europe/Paris,,OIF, +OIF:SP:54:14462,1,"Plaine du Mée",48.393229,2.495524,0,0,OIF:SA:54:14462,Europe/Paris,,OIF, +OIF:SP:54:14463,1,"Plaine du Mée",48.393319,2.495565,0,0,OIF:SA:54:14462,Europe/Paris,,OIF, +OIF:SP:54:14464,1,"Villionne",48.322883,2.571831,0,0,OIF:SA:54:14464,Europe/Paris,,OIF, +OIF:SP:54:14465,1,"Villionne",48.32282,2.571777,0,0,OIF:SA:54:14464,Europe/Paris,,OIF, +OIF:SP:54:14466,1,"Les Canches",48.361611,2.564922,0,0,OIF:SA:54:14466,Europe/Paris,,OIF, +OIF:SP:54:14467,1,"La Mare aux Ormes",48.3559,2.565963,0,0,OIF:SA:54:14467,Europe/Paris,,OIF, +OIF:SP:54:14468,1,"La Mare aux Ormes",48.355909,2.565909,0,0,OIF:SA:54:14467,Europe/Paris,,OIF, +OIF:SP:54:14469,1,"Gare Routière",48.319011,2.570236,0,0,OIF:SA:54:14469,Europe/Paris,,OIF, +OIF:SP:54:14470,1,"Gare Routière",48.319118,2.570506,0,0,OIF:SA:54:14469,Europe/Paris,,OIF, +OIF:SP:54:14474,1,"Mairie",48.257212,2.503029,0,0,OIF:SA:54:14474,Europe/Paris,,OIF, +OIF:SP:54:14476,1,"Gare de Champagne sur Seine",48.406509,2.798991,0,0,OIF:SA:8768245,Europe/Paris,,OIF, +OIF:SP:54:14479,1,"Les Canches",48.36153,2.565029,0,0,OIF:SA:54:14466,Europe/Paris,,OIF, +OIF:SP:54:14480,1,"Place",48.343297,2.603293,0,0,OIF:SA:54:14480,Europe/Paris,,OIF, +OIF:SP:54:14481,1,"Place",48.343144,2.603494,0,0,OIF:SA:54:14480,Europe/Paris,,OIF, +OIF:SP:54:14482,1,"Cours des Adieux",48.402817,2.697476,0,0,OIF:SA:12:3327,Europe/Paris,,OIF, +OIF:SP:54:14483,1,"Cours des Adieux",48.40279,2.697354,0,0,OIF:SA:12:3327,Europe/Paris,,OIF, +OIF:SP:54:14484,1,"Ronceveaux Vielle Ligne",48.272151,2.435478,0,0,OIF:SA:54:14484,Europe/Paris,,OIF, +OIF:SP:54:14485,1,"Roncevaux Place",48.281348,2.425433,0,0,OIF:SA:54:14485,Europe/Paris,,OIF, +OIF:SP:54:14486,1,"Ronceveaux Vielle Ligne",48.272142,2.435465,0,0,OIF:SA:54:14484,Europe/Paris,,OIF, +OIF:SP:54:14487,1,"Roncevaux Place",48.281339,2.425447,0,0,OIF:SA:54:14485,Europe/Paris,,OIF, +OIF:SP:54:14488,1,"Mairie",48.257229,2.503312,0,0,OIF:SA:54:14474,Europe/Paris,,OIF, +OIF:SP:54:14490,1,"Fontaineroux",48.436511,2.803201,0,0,OIF:SA:31:231,Europe/Paris,,OIF, +OIF:SP:54:14491,1,"Gare de Champagne sur Seine",48.406481,2.799153,0,0,OIF:SA:8768245,Europe/Paris,,OIF, +OIF:SP:54:14492,1,"Gare de Malesherbes",48.293529,2.401605,0,0,OIF:SA:8768441,Europe/Paris,,OIF, +OIF:SP:54:14493,1,"Gare de Malesherbes",48.293529,2.401605,0,0,OIF:SA:8768441,Europe/Paris,,OIF, +OIF:SP:54:14494,1,"Les Rabiers",48.34459,2.379118,0,0,OIF:SA:54:14494,Europe/Paris,,OIF, +OIF:SP:54:14495,1,"Les Rabiers",48.344905,2.379132,0,0,OIF:SA:54:14494,Europe/Paris,,OIF, +OIF:SP:54:14496,1,"ZAE du Chênet",48.396419,2.418393,0,0,OIF:SA:54:14496,Europe/Paris,,OIF, +OIF:SP:54:14497,1,"ZAE du Chênet",48.396293,2.418838,0,0,OIF:SA:54:14496,Europe/Paris,,OIF, +OIF:SP:54:14498,1,"La Lieue",48.391875,2.303022,0,0,OIF:SA:54:11194,Europe/Paris,,OIF, +OIF:SP:54:14499,1,"La Main Ferme",48.398034,2.303693,0,0,OIF:SA:54:11196,Europe/Paris,,OIF, +OIF:SP:54:14500,1,"Maison Rouge",48.401575,2.300923,0,0,OIF:SA:54:11200,Europe/Paris,,OIF, +OIF:SP:54:14501,1,"Porte Frenneville",48.406953,2.304106,0,0,OIF:SA:54:11202,Europe/Paris,,OIF, +OIF:SP:54:14502,1,"Salle des Fêtes",48.424682,2.161845,0,0,OIF:SA:14:9366,Europe/Paris,,OIF, +OIF:SP:54:14503,1,"Bonvilliers Grande Place",48.422726,2.224012,0,0,OIF:SA:54:14409,Europe/Paris,,OIF, +OIF:SP:54:14504,1,"Marie Curie",48.430962,2.158488,0,0,OIF:SA:46:14735,Europe/Paris,,OIF, +OIF:SP:54:14505,1,"Rue des Barreaux",48.435021,2.36706,0,0,OIF:SA:54:14392,Europe/Paris,,OIF, +OIF:SP:54:14506,1,"Clercy",48.458911,2.348989,0,0,OIF:SA:54:14506,Europe/Paris,,OIF, +OIF:SP:54:14507,1,"Saint-Jacques",48.400346,2.469083,0,0,OIF:SA:54:14507,Europe/Paris,,OIF, +OIF:SP:54:14508,1,"Saint-Jacques",48.400319,2.469218,0,0,OIF:SA:54:14507,Europe/Paris,,OIF, +OIF:SP:54:14509,1,"Châteauvert",48.464123,2.477152,0,0,OIF:SA:54:14509,Europe/Paris,,OIF, +OIF:SP:54:14510,1,"Châteauvert",48.464087,2.477368,0,0,OIF:SA:54:14509,Europe/Paris,,OIF, +OIF:SP:54:14511,1,"Église",48.473583,2.496282,0,0,OIF:SA:28:641,Europe/Paris,,OIF, +OIF:SP:54:14512,1,"Église",48.473305,2.496308,0,0,OIF:SA:28:641,Europe/Paris,,OIF, +OIF:SP:54:14513,1,"Place de l'Ancienne Gare",48.483141,2.494999,0,0,OIF:SA:54:14513,Europe/Paris,,OIF, +OIF:SP:54:14514,1,"Place de l'Ancienne Gare",48.482908,2.494431,0,0,OIF:SA:54:14513,Europe/Paris,,OIF, +OIF:SP:54:14515,1,"C.A.T",48.538408,2.44068,0,0,OIF:SA:54:14515,Europe/Paris,,OIF, +OIF:SP:54:14516,1,"C.A.T",48.538489,2.440626,0,0,OIF:SA:54:14515,Europe/Paris,,OIF, +OIF:SP:54:14518,1,"Gare Routière",48.624727,2.425666,0,0,OIF:SA:54:14517,Europe/Paris,,OIF, +OIF:SP:54:14519,1,"Cimetière",48.433244,2.450009,0,0,OIF:SA:54:14519,Europe/Paris,,OIF, +OIF:SP:54:14520,1,"Cimetière",48.433073,2.450333,0,0,OIF:SA:54:14519,Europe/Paris,,OIF, +OIF:SP:54:14521,1,"Rue du Clos Noyer",48.402212,2.378504,0,0,OIF:SA:54:14521,Europe/Paris,,OIF, +OIF:SP:54:14522,1,"Rue du Clos Noyer",48.402221,2.378517,0,0,OIF:SA:54:14521,Europe/Paris,,OIF, +OIF:SP:54:14523,1,"Lycée Baudelaire",48.637377,2.435114,0,0,OIF:SA:54:14523,Europe/Paris,,OIF, +OIF:SP:54:14524,1,"Guignonville",48.404327,2.143996,0,0,OIF:SA:54:14524,Europe/Paris,,OIF, +OIF:SP:54:14525,1,"Guignonville",48.404363,2.143739,0,0,OIF:SA:54:14524,Europe/Paris,,OIF, +OIF:SP:54:14527,1,"Gare Routière",48.266829,2.688111,0,0,OIF:SA:54:14527,Europe/Paris,,OIF, +OIF:SP:54:14528,1,"SNCF",48.266985,2.687196,0,0,OIF:SA:8768412,Europe/Paris,,OIF, +OIF:SP:54:14529,1,"Mairie",48.387057,2.491685,0,0,OIF:SA:54:14529,Europe/Paris,,OIF, +OIF:SP:54:14530,1,"Provenchères",48.440676,2.365496,0,0,OIF:SA:54:14530,Europe/Paris,,OIF, +OIF:SP:54:14531,1,"Provenchères",48.440685,2.365509,0,0,OIF:SA:54:14530,Europe/Paris,,OIF, +OIF:SP:54:14532,1,"Rotonde",48.433133,2.155373,0,0,OIF:SA:14:9352,Europe/Paris,,OIF, +OIF:SP:54:14533,1,"Saint-Spire",48.610177,2.485327,0,0,OIF:SA:54:14533,Europe/Paris,,OIF, +OIF:SP:54:14534,1,"Saint-Spire",48.610231,2.4853,0,0,OIF:SA:54:14533,Europe/Paris,,OIF, +OIF:SP:54:2146,1,"Château",48.403924,2.699927,0,0,OIF:SA:14:14988,Europe/Paris,,OIF, +OIF:SP:54:2147,1,"Château",48.40378,2.699926,0,0,OIF:SA:14:14988,Europe/Paris,,OIF, +OIF:SP:54:2152,1,"Faisanderie",48.409437,2.69347,0,0,OIF:SA:54:2152,Europe/Paris,,OIF, +OIF:SP:54:2153,1,"Faisanderie",48.409356,2.693524,0,0,OIF:SA:54:2152,Europe/Paris,,OIF, +OIF:SP:54:2173,1,"Étape",48.406646,2.703592,0,0,OIF:SA:14:2150,Europe/Paris,,OIF, +OIF:SP:54:2174,1,"Étape",48.407026,2.702879,0,0,OIF:SA:14:2150,Europe/Paris,,OIF, +OIF:SP:54:2272,1,"Garentreville",48.236453,2.551362,0,0,OIF:SA:54:2272,Europe/Paris,,OIF, +OIF:SP:54:2273,1,"Garentreville",48.236408,2.551335,0,0,OIF:SA:54:2272,Europe/Paris,,OIF, +OIF:SP:54:2441,1,"Village",48.259746,2.557961,0,0,OIF:SA:54:2441,Europe/Paris,,OIF, +OIF:SP:54:2442,1,"Village",48.259828,2.557773,0,0,OIF:SA:54:2441,Europe/Paris,,OIF, +OIF:SP:54:2447,1,"Le Buisson",48.256747,2.555983,0,0,OIF:SA:54:2447,Europe/Paris,,OIF, +OIF:SP:54:2448,1,"Le Buisson",48.256747,2.555781,0,0,OIF:SA:54:2447,Europe/Paris,,OIF, +OIF:SP:54:2481,1,"Fontaineroux",48.436594,2.802837,0,0,OIF:SA:31:231,Europe/Paris,,OIF, +OIF:SP:54:2724,1,"Larchant",48.284611,2.595612,0,0,OIF:SA:54:2724,Europe/Paris,,OIF, +OIF:SP:54:2725,1,"Larchant",48.284611,2.595598,0,0,OIF:SA:54:2724,Europe/Paris,,OIF, +OIF:SP:54:3800,1,"Gare Routière",48.26673,2.688164,0,0,OIF:SA:54:14527,Europe/Paris,,OIF, +OIF:SP:54:3823,1,"Auvers",48.383698,2.489313,0,0,OIF:SA:54:3823,Europe/Paris,,OIF, +OIF:SP:54:3824,1,"Auvers",48.3835,2.489151,0,0,OIF:SA:54:3823,Europe/Paris,,OIF, +OIF:SP:54:3825,1,"Bois Dormant",48.390927,2.495868,0,0,OIF:SA:54:14397,Europe/Paris,,OIF, +OIF:SP:54:3826,1,"Chemin de la Saussaie",48.38822,2.503122,0,0,OIF:SA:54:14398,Europe/Paris,,OIF, +OIF:SP:54:3827,1,"Chambergeot",48.396343,2.479076,0,0,OIF:SA:54:14399,Europe/Paris,,OIF, +OIF:SP:54:3828,1,"Chesnay",48.395331,2.496705,0,0,OIF:SA:54:14400,Europe/Paris,,OIF, +OIF:SP:54:3829,1,"Croix Saint-Jérôme",48.390792,2.502144,0,0,OIF:SA:54:14401,Europe/Paris,,OIF, +OIF:SP:54:3830,1,"Église",48.384024,2.494754,0,0,OIF:SA:54:3830,Europe/Paris,,OIF, +OIF:SP:54:3831,1,"Église",48.383889,2.494645,0,0,OIF:SA:54:3830,Europe/Paris,,OIF, +OIF:SP:54:3832,1,"Grandes Vallées",48.387889,2.501825,0,0,OIF:SA:54:14402,Europe/Paris,,OIF, +OIF:SP:54:3833,1,"Porche des Écoles",48.381034,2.498402,0,0,OIF:SA:54:3833,Europe/Paris,,OIF, +OIF:SP:54:3834,1,"Porche des Écoles",48.381025,2.498132,0,0,OIF:SA:54:3833,Europe/Paris,,OIF, +OIF:SP:54:422,1,"Église",48.354803,2.570396,0,0,OIF:SA:54:422,Europe/Paris,,OIF, +OIF:SP:54:423,1,"Église",48.354579,2.570422,0,0,OIF:SA:54:422,Europe/Paris,,OIF, +OIF:SP:54:424,1,"Meun",48.345868,2.564786,0,0,OIF:SA:54:424,Europe/Paris,,OIF, +OIF:SP:54:425,1,"Meun",48.34586,2.564745,0,0,OIF:SA:54:424,Europe/Paris,,OIF, +OIF:SP:54:4335,1,"Place",48.343944,2.640452,0,0,OIF:SA:54:4335,Europe/Paris,,OIF, +OIF:SP:54:4336,1,"Place",48.343837,2.640263,0,0,OIF:SA:54:4335,Europe/Paris,,OIF, +OIF:SP:54:440,1,"Amponville",48.277054,2.527889,0,0,OIF:SA:54:440,Europe/Paris,,OIF, +OIF:SP:54:441,1,"Amponville",48.276999,2.528172,0,0,OIF:SA:54:440,Europe/Paris,,OIF, +OIF:SP:54:444,1,"Jacqueville",48.278439,2.527558,0,0,OIF:SA:54:444,Europe/Paris,,OIF, +OIF:SP:54:4442,1,"Rumont",48.265366,2.497399,0,0,OIF:SA:54:4442,Europe/Paris,,OIF, +OIF:SP:54:4443,1,"Rumont",48.265482,2.497614,0,0,OIF:SA:54:4442,Europe/Paris,,OIF, +OIF:SP:54:445,1,"Jacqueville",48.278484,2.527181,0,0,OIF:SA:54:444,Europe/Paris,,OIF, +OIF:SP:54:446,1,"La Roche aux Sages",48.278877,2.529122,0,0,OIF:SA:54:446,Europe/Paris,,OIF, +OIF:SP:54:447,1,"La Roche aux Sages",48.278751,2.52935,0,0,OIF:SA:54:446,Europe/Paris,,OIF, +OIF:SP:54:4696,1,"Gare SNCF",48.268106,2.684954,0,0,OIF:SA:8768412,Europe/Paris,,OIF, +OIF:SP:54:5060,1,"Tousson",48.346549,2.457563,0,0,OIF:SA:54:5060,Europe/Paris,,OIF, +OIF:SP:54:5062,1,"Ferme",48.346884,2.455757,0,0,OIF:SA:54:5062,Europe/Paris,,OIF, +OIF:SP:54:5104,1,"Poste",48.343949,2.605184,0,0,OIF:SA:54:5104,Europe/Paris,,OIF, +OIF:SP:54:514,1,"Gare de Fontainebleau Avon",48.41667,2.726068,0,0,OIF:SA:8768221,Europe/Paris,,OIF, +OIF:SP:54:515,1,"Gare de Fontainebleau Avon",48.416804,2.726299,0,0,OIF:SA:8768221,Europe/Paris,,OIF, +OIF:SP:54:5176,1,"Bourg",48.355083,2.519231,0,0,OIF:SA:54:5176,Europe/Paris,,OIF, +OIF:SP:54:5177,1,"Bourg",48.355038,2.519082,0,0,OIF:SA:54:5176,Europe/Paris,,OIF, +OIF:SP:54:518,1,"Lycée Uruguay",48.409758,2.73632,0,0,OIF:SA:12:3651,Europe/Paris,,OIF, +OIF:SP:54:519,1,"Lycée Uruguay",48.409857,2.736429,0,0,OIF:SA:12:3651,Europe/Paris,,OIF, +OIF:SP:54:526,1,"Jacques Durant (CES la Vallée)",48.413726,2.732866,0,0,OIF:SA:30:6,Europe/Paris,,OIF, +OIF:SP:54:527,1,"Jacques Durant (CES la Vallée)",48.413816,2.732692,0,0,OIF:SA:30:6,Europe/Paris,,OIF, +OIF:SP:54:5373,1,"Centre",48.31788,2.650398,0,0,OIF:SA:54:5373,Europe/Paris,,OIF, +OIF:SP:54:5374,1,"Centre",48.317979,2.650331,0,0,OIF:SA:54:5373,Europe/Paris,,OIF, +OIF:SP:54:5375,1,"Lotissement",48.32345,2.648611,0,0,OIF:SA:54:5375,Europe/Paris,,OIF, +OIF:SP:54:5376,1,"Lotissement",48.323424,2.64849,0,0,OIF:SA:54:5375,Europe/Paris,,OIF, +OIF:SP:54:641,1,"Boissy aux Cailles",48.319892,2.501408,0,0,OIF:SA:54:641,Europe/Paris,,OIF, +OIF:SP:54:642,1,"Boissy aux Cailles",48.319892,2.501475,0,0,OIF:SA:54:641,Europe/Paris,,OIF, +OIF:SP:54:643,1,"Mainbervilliers",48.305911,2.473022,0,0,OIF:SA:54:643,Europe/Paris,,OIF, +OIF:SP:54:644,1,"Mainbervilliers",48.305884,2.472981,0,0,OIF:SA:54:643,Europe/Paris,,OIF, +OIF:SP:54:645,1,"Marlanval",48.307365,2.509307,0,0,OIF:SA:54:645,Europe/Paris,,OIF, +OIF:SP:54:646,1,"Marlanval",48.307437,2.509078,0,0,OIF:SA:54:645,Europe/Paris,,OIF, +OIF:SP:54:685,1,"Mairie",48.260087,2.442713,0,0,OIF:SA:54:685,Europe/Paris,,OIF, +OIF:SP:54:686,1,"Mairie",48.26006,2.442606,0,0,OIF:SA:54:685,Europe/Paris,,OIF, +OIF:SP:54:687,1,"Saint-Denis",48.258886,2.438873,0,0,OIF:SA:54:687,Europe/Paris,,OIF, +OIF:SP:54:688,1,"Saint-Denis",48.25885,2.438725,0,0,OIF:SA:54:687,Europe/Paris,,OIF, +OIF:SP:54:790,1,"Avrilmont",48.237569,2.524165,0,0,OIF:SA:54:790,Europe/Paris,,OIF, +OIF:SP:54:791,1,"Avrilmont",48.23739,2.524124,0,0,OIF:SA:54:790,Europe/Paris,,OIF, +OIF:SP:54:792,1,"Burcy",48.239029,2.522394,0,0,OIF:SA:54:792,Europe/Paris,,OIF, +OIF:SP:54:793,1,"Burcy",48.239065,2.522232,0,0,OIF:SA:54:792,Europe/Paris,,OIF, +OIF:SP:54:8445,1,"Tabac",48.528273,2.49312,0,0,OIF:SA:54:8445,Europe/Paris,,OIF, +OIF:SP:54:8446,1,"Tabac",48.528345,2.492836,0,0,OIF:SA:54:8445,Europe/Paris,,OIF, +OIF:SP:54:845,1,"Base de Loisirs",48.293994,2.431895,0,0,OIF:SA:54:845,Europe/Paris,,OIF, +OIF:SP:54:846,1,"Base de Loisirs",48.293949,2.431801,0,0,OIF:SA:54:845,Europe/Paris,,OIF, +OIF:SP:54:849,1,"Herbeauvilliers",48.28219,2.475398,0,0,OIF:SA:54:849,Europe/Paris,,OIF, +OIF:SP:54:850,1,"Herbeauvilliers",48.282028,2.475317,0,0,OIF:SA:54:849,Europe/Paris,,OIF, +OIF:SP:54:851,1,"Mairie",48.286811,2.430319,0,0,OIF:SA:54:851,Europe/Paris,,OIF, +OIF:SP:54:8518,1,"Blandy",48.312347,2.255856,0,0,OIF:SA:54:8518,Europe/Paris,,OIF, +OIF:SP:54:8519,1,"Blandy",48.312302,2.256139,0,0,OIF:SA:54:8518,Europe/Paris,,OIF, +OIF:SP:54:852,1,"Mairie",48.286811,2.430306,0,0,OIF:SA:54:851,Europe/Paris,,OIF, +OIF:SP:54:8520,1,"Église",48.335224,2.372395,0,0,OIF:SA:54:8520,Europe/Paris,,OIF, +OIF:SP:54:8521,1,"Église",48.33535,2.372234,0,0,OIF:SA:54:8520,Europe/Paris,,OIF, +OIF:SP:54:8522,1,"Gare de Boigneville",48.343062,2.378537,0,0,OIF:SA:8768440,Europe/Paris,,OIF, +OIF:SP:54:8523,1,"Gare de Boigneville",48.343098,2.37851,0,0,OIF:SA:8768440,Europe/Paris,,OIF, +OIF:SP:54:8524,1,"Bois Herpin",48.369845,2.235177,0,0,OIF:SA:54:8524,Europe/Paris,,OIF, +OIF:SP:54:8525,1,"Bois Herpin",48.369737,2.235258,0,0,OIF:SA:54:8524,Europe/Paris,,OIF, +OIF:SP:54:8606,1,"Audigers",48.422481,2.389231,0,0,OIF:SA:54:8606,Europe/Paris,,OIF, +OIF:SP:54:8607,1,"Audigers",48.422427,2.388961,0,0,OIF:SA:54:8606,Europe/Paris,,OIF, +OIF:SP:54:8613,1,"Gare de Boutigny sur Essonne",48.435216,2.376733,0,0,OIF:SA:8768147,Europe/Paris,,OIF, +OIF:SP:54:8614,1,"Jarcy",48.425251,2.386681,0,0,OIF:SA:54:14220,Europe/Paris,,OIF, +OIF:SP:54:8616,1,"Marchais",48.447265,2.393148,0,0,OIF:SA:54:14221,Europe/Paris,,OIF, +OIF:SP:54:8617,1,"Pasloup",48.444974,2.363485,0,0,OIF:SA:54:14225,Europe/Paris,,OIF, +OIF:SP:54:8622,1,"Tilleul",48.428561,2.383253,0,0,OIF:SA:54:8622,Europe/Paris,,OIF, +OIF:SP:54:8623,1,"Tilleul",48.428543,2.382956,0,0,OIF:SA:54:8622,Europe/Paris,,OIF, +OIF:SP:54:8626,1,"Chemin Papillon",48.428405,2.251787,0,0,OIF:SA:54:14406,Europe/Paris,,OIF, +OIF:SP:54:8628,1,"Place de l'Église",48.431678,2.284893,0,0,OIF:SA:54:8628,Europe/Paris,,OIF, +OIF:SP:54:8629,1,"Place de l'Église",48.431606,2.28511,0,0,OIF:SA:54:8628,Europe/Paris,,OIF, +OIF:SP:54:8630,1,"Poste",48.43125,2.27287,0,0,OIF:SA:54:8630,Europe/Paris,,OIF, +OIF:SP:54:8631,1,"Poste",48.431106,2.272925,0,0,OIF:SA:54:8630,Europe/Paris,,OIF, +OIF:SP:54:8691,1,"Brouy",48.316667,2.278994,0,0,OIF:SA:54:8691,Europe/Paris,,OIF, +OIF:SP:54:8692,1,"Brouy",48.316676,2.278792,0,0,OIF:SA:54:8691,Europe/Paris,,OIF, +OIF:SP:54:8693,1,"Fénneville",48.327955,2.288717,0,0,OIF:SA:54:8693,Europe/Paris,,OIF, +OIF:SP:54:8694,1,"Fénneville",48.328054,2.288353,0,0,OIF:SA:54:8693,Europe/Paris,,OIF, +OIF:SP:54:8772,1,"Gare SNCF",48.370013,2.387532,0,0,OIF:SA:8768151,Europe/Paris,,OIF, +OIF:SP:54:8773,1,"Gare SNCF",48.370031,2.38733,0,0,OIF:SA:8768151,Europe/Paris,,OIF, +OIF:SP:54:8774,1,"Mairie",48.360473,2.388022,0,0,OIF:SA:54:8774,Europe/Paris,,OIF, +OIF:SP:54:8775,1,"Mairie",48.360491,2.38786,0,0,OIF:SA:54:8774,Europe/Paris,,OIF, +OIF:SP:54:8776,1,"Stade",48.367908,2.388691,0,0,OIF:SA:54:8776,Europe/Paris,,OIF, +OIF:SP:54:8777,1,"Stade",48.367774,2.388582,0,0,OIF:SA:54:8776,Europe/Paris,,OIF, +OIF:SP:54:8867,1,"Mairie",48.343186,2.324105,0,0,OIF:SA:54:8867,Europe/Paris,,OIF, +OIF:SP:54:8868,1,"Mairie",48.343105,2.324159,0,0,OIF:SA:54:8867,Europe/Paris,,OIF, +OIF:SP:54:8898,1,"Gare de Corbeil Essonnes",48.613966,2.474167,0,0,OIF:SA:8768100,Europe/Paris,,OIF, +OIF:SP:54:8899,1,"Gare de Corbeil Essonnes",48.613804,2.473936,0,0,OIF:SA:8768100,Europe/Paris,,OIF, +OIF:SP:54:8910,1,"Lycée",48.610383,2.462499,0,0,OIF:SA:10:536,Europe/Paris,,OIF, +OIF:SP:54:8911,1,"Lycée",48.610482,2.462812,0,0,OIF:SA:10:536,Europe/Paris,,OIF, +OIF:SP:54:8943,1,"Château",48.440714,2.476333,0,0,OIF:SA:54:8943,Europe/Paris,,OIF, +OIF:SP:54:8944,1,"Château",48.440696,2.47636,0,0,OIF:SA:54:8943,Europe/Paris,,OIF, +OIF:SP:54:8945,1,"Place",48.439644,2.475965,0,0,OIF:SA:54:8945,Europe/Paris,,OIF, +OIF:SP:54:8946,1,"Place",48.439456,2.475897,0,0,OIF:SA:54:8945,Europe/Paris,,OIF, +OIF:SP:54:8961,1,"Mairie",48.417684,2.378152,0,0,OIF:SA:54:8961,Europe/Paris,,OIF, +OIF:SP:54:8962,1,"Mairie",48.417514,2.377976,0,0,OIF:SA:54:8961,Europe/Paris,,OIF, +OIF:SP:54:8992,1,"Église",48.455075,2.480493,0,0,OIF:SA:54:8992,Europe/Paris,,OIF, +OIF:SP:54:8993,1,"Église",48.455111,2.480399,0,0,OIF:SA:54:8992,Europe/Paris,,OIF, +OIF:SP:54:8994,1,"Grande Rue",48.445396,2.470197,0,0,OIF:SA:54:8994,Europe/Paris,,OIF, +OIF:SP:54:8995,1,"Grande Rue",48.445378,2.469791,0,0,OIF:SA:54:8994,Europe/Paris,,OIF, +OIF:SP:54:8996,1,"Les Bons Amis",48.449995,2.473195,0,0,OIF:SA:54:8996,Europe/Paris,,OIF, +OIF:SP:54:8997,1,"Les Bons Amis",48.450104,2.472871,0,0,OIF:SA:54:8996,Europe/Paris,,OIF, +OIF:SP:54:9285,1,"Gare d'Étampes",48.436565,2.15986,0,0,OIF:SA:8754513,Europe/Paris,,OIF, +OIF:SP:54:9304,1,"Jeanne d'Arc",48.43831,2.154977,0,0,OIF:SA:54:9304,Europe/Paris,,OIF, +OIF:SP:54:9309,1,"LEP Mandela",48.439721,2.148851,0,0,OIF:SA:54:9309,Europe/Paris,,OIF, +OIF:SP:54:9310,1,"LEP Mandela",48.439595,2.148932,0,0,OIF:SA:54:9309,Europe/Paris,,OIF, +OIF:SP:54:9331,1,"Lycée Saint-Hilaire",48.435252,2.148529,0,0,OIF:SA:46:9331,Europe/Paris,,OIF, +OIF:SP:54:9332,1,"Lycée Saint-Hilaire",48.435405,2.148407,0,0,OIF:SA:46:9331,Europe/Paris,,OIF, +OIF:SP:54:9352,1,"Rotonde",48.433133,2.155386,0,0,OIF:SA:14:9352,Europe/Paris,,OIF, +OIF:SP:54:9461,1,"Grand Bourg",48.643182,2.436644,0,0,OIF:SA:54:9461,Europe/Paris,,OIF, +OIF:SP:54:9462,1,"Grand Bourg",48.643119,2.436549,0,0,OIF:SA:54:9461,Europe/Paris,,OIF, +OIF:SP:54:9471,1,"Lycée Baudelaire",48.637412,2.435209,0,0,OIF:SA:54:14523,Europe/Paris,,OIF, +OIF:SP:54:9489,1,"SNECMA",48.621534,2.449958,0,0,OIF:SA:54:9489,Europe/Paris,,OIF, +OIF:SP:54:9490,1,"SNECMA",48.621471,2.449822,0,0,OIF:SA:54:9489,Europe/Paris,,OIF, +OIF:SP:54:9497,1,"Gare de la Ferté Alais",48.484416,2.350617,0,0,OIF:SA:8768145,Europe/Paris,,OIF, +OIF:SP:54:9558,1,"La Forêt Sainte-Croix",48.383344,2.229104,0,0,OIF:SA:54:9558,Europe/Paris,,OIF, +OIF:SP:54:9559,1,"La Forêt Sainte-Croix",48.383308,2.229171,0,0,OIF:SA:54:9558,Europe/Paris,,OIF, +OIF:SP:54:9627,1,"Route de Maisse",48.370789,2.380449,0,0,OIF:SA:54:9627,Europe/Paris,,OIF, +OIF:SP:54:9628,1,"Route de Maisse",48.370699,2.380219,0,0,OIF:SA:54:9627,Europe/Paris,,OIF, +OIF:SP:54:9692,1,"CES Léonard de Vinci",48.463973,2.350463,0,0,OIF:SA:54:9692,Europe/Paris,,OIF, +OIF:SP:54:9693,1,"CES Léonard de Vinci",48.463946,2.350639,0,0,OIF:SA:54:9692,Europe/Paris,,OIF, +OIF:SP:54:9694,1,"Clercy",48.458884,2.348718,0,0,OIF:SA:54:14506,Europe/Paris,,OIF, +OIF:SP:54:9696,1,"Jouy",48.457931,2.355382,0,0,OIF:SA:54:9696,Europe/Paris,,OIF, +OIF:SP:54:9697,1,"Jouy",48.458047,2.35522,0,0,OIF:SA:54:9696,Europe/Paris,,OIF, +OIF:SP:55:103,1,"Les Fortes Terres",48.938754,2.687365,0,0,OIF:SA:55:103,Europe/Paris,,OIF, +OIF:SP:55:104,1,"Les Fortes Terres",48.938663,2.687528,0,0,OIF:SA:55:103,Europe/Paris,,OIF, +OIF:SP:55:105,1,"Les Petits Bois",48.940403,2.682601,0,0,OIF:SA:55:105,Europe/Paris,,OIF, +OIF:SP:55:106,1,"Les Petits Bois",48.940241,2.682696,0,0,OIF:SA:55:105,Europe/Paris,,OIF, +OIF:SP:55:107,1,"Les Pommiers",48.946288,2.683064,0,0,OIF:SA:55:107,Europe/Paris,,OIF, +OIF:SP:55:108,1,"Les Pommiers",48.946838,2.682658,0,0,OIF:SA:55:107,Europe/Paris,,OIF, +OIF:SP:55:109,1,"Les Tilleuls",48.939913,2.678055,0,0,OIF:SA:55:109,Europe/Paris,,OIF, +OIF:SP:55:110,1,"Les Tilleuls",48.94053,2.679164,0,0,OIF:SA:55:109,Europe/Paris,,OIF, +OIF:SP:55:111,1,"Libération",48.922142,2.542776,0,0,OIF:SA:55:111,Europe/Paris,,OIF, +OIF:SP:55:112,1,"Libération",48.921934,2.542994,0,0,OIF:SA:55:111,Europe/Paris,,OIF, +OIF:SP:55:124,1,"Mairie",48.918692,2.536517,0,0,OIF:SA:55:124,Europe/Paris,,OIF, +OIF:SP:55:125,1,"Mairie",48.919112,2.537732,0,0,OIF:SA:55:124,Europe/Paris,,OIF, +OIF:SP:55:128,1,"Mairie",48.94009,2.617239,0,0,OIF:SA:53:2293,Europe/Paris,,OIF, +OIF:SP:55:129,1,"Mairie",48.940072,2.617307,0,0,OIF:SA:53:2293,Europe/Paris,,OIF, +OIF:SP:55:130,1,"Mairie",48.945374,2.68846,0,0,OIF:SA:53:2281,Europe/Paris,,OIF, +OIF:SP:55:132,1,"Avenue de Rosny",48.90391,2.471255,0,0,OIF:SA:55:132,Europe/Paris,,OIF, +OIF:SP:55:133,1,"Avenue de Rosny",48.904242,2.471201,0,0,OIF:SA:55:132,Europe/Paris,,OIF, +OIF:SP:55:134,1,"Cèdres",48.938976,2.60531,0,0,OIF:SA:53:2457,Europe/Paris,,OIF, +OIF:SP:55:135,1,"Cèdres",48.938796,2.605404,0,0,OIF:SA:53:2457,Europe/Paris,,OIF, +OIF:SP:55:136,1,"Mauperthuis",48.938563,2.675686,0,0,OIF:SA:53:2313,Europe/Paris,,OIF, +OIF:SP:55:137,1,"Mauperthuis",48.937951,2.67601,0,0,OIF:SA:53:2313,Europe/Paris,,OIF, +OIF:SP:55:14,1,"Henri IV",48.936167,2.578163,0,0,OIF:SA:55:14,Europe/Paris,,OIF, +OIF:SP:55:141,1,"Pablo Picasso",48.907509,2.449641,0,0,OIF:SA:59342,Europe/Paris,,OIF, +OIF:SP:55:145,1,"Passerelle RN3",48.941704,2.636907,0,0,OIF:SA:55:145,Europe/Paris,,OIF, +OIF:SP:55:146,1,"Passerelle RN3",48.941559,2.641149,0,0,OIF:SA:55:145,Europe/Paris,,OIF, +OIF:SP:55:147,1,"Pasteur",48.942497,2.682588,0,0,OIF:SA:53:2607,Europe/Paris,,OIF, +OIF:SP:55:148,1,"Pasteur",48.942317,2.682737,0,0,OIF:SA:53:2607,Europe/Paris,,OIF, +OIF:SP:55:15,1,"Henri IV",48.935942,2.578203,0,0,OIF:SA:55:14,Europe/Paris,,OIF, +OIF:SP:55:151,1,"Pasteur / Hôpital Jean Verdier",48.906892,2.487923,0,0,OIF:SA:55:151,Europe/Paris,,OIF, +OIF:SP:55:152,1,"Pasteur / Hôpital Jean Verdier",48.907044,2.48795,0,0,OIF:SA:55:151,Europe/Paris,,OIF, +OIF:SP:55:153,1,"Poste",48.971548,2.764099,0,0,OIF:SA:55:153,Europe/Paris,,OIF, +OIF:SP:55:155,1,"Poste",48.967412,2.696677,0,0,OIF:SA:55:155,Europe/Paris,,OIF, +OIF:SP:55:156,1,"Poste",48.967255,2.695229,0,0,OIF:SA:55:155,Europe/Paris,,OIF, +OIF:SP:55:157,1,"Poudrerie",48.93341,2.553679,0,0,OIF:SA:55:157,Europe/Paris,,OIF, +OIF:SP:55:158,1,"Poudrerie",48.933455,2.553775,0,0,OIF:SA:55:157,Europe/Paris,,OIF, +OIF:SP:55:159,1,"Gare RER Aéroport CDG 1 Roissypole",49.010379,2.559671,0,0,OIF:SA:8727146,Europe/Paris,,OIF, +OIF:SP:55:16,1,"Centre",48.945441,2.776531,0,0,OIF:SA:55:16,Europe/Paris,,OIF, +OIF:SP:55:160,1,"Gare RER Aéroport CDG 1 Roissypole",49.010442,2.559685,0,0,OIF:SA:8727146,Europe/Paris,,OIF, +OIF:SP:55:162,1,"Schuman",48.926522,2.545508,0,0,OIF:SA:55:162,Europe/Paris,,OIF, +OIF:SP:55:163,1,"Schuman",48.925804,2.545109,0,0,OIF:SA:55:162,Europe/Paris,,OIF, +OIF:SP:55:164,1,"Souilly Centre",48.950269,2.673812,0,0,OIF:SA:55:164,Europe/Paris,,OIF, +OIF:SP:55:165,1,"Souilly Centre",48.95034,2.67403,0,0,OIF:SA:55:164,Europe/Paris,,OIF, +OIF:SP:55:169,1,"Charles de Gaulle",48.916678,2.531818,0,0,OIF:SA:55:169,Europe/Paris,,OIF, +OIF:SP:55:17,1,"Centre",48.945432,2.77664,0,0,OIF:SA:55:16,Europe/Paris,,OIF, +OIF:SP:55:170,1,"Charles de Gaulle",48.916525,2.531995,0,0,OIF:SA:55:169,Europe/Paris,,OIF, +OIF:SP:55:180,1,"Centre",48.940694,2.741634,0,0,OIF:SA:55:180,Europe/Paris,,OIF, +OIF:SP:55:181,1,"Centre",48.94065,2.74132,0,0,OIF:SA:55:180,Europe/Paris,,OIF, +OIF:SP:55:182,1,"Zone Industrielle",48.947332,2.669904,0,0,OIF:SA:55:182,Europe/Paris,,OIF, +OIF:SP:55:183,1,"Zone Industrielle",48.947772,2.670357,0,0,OIF:SA:55:182,Europe/Paris,,OIF, +OIF:SP:55:186,1,"Avenue des Lilas",48.933777,2.637216,0,0,OIF:SA:55:186,Europe/Paris,,OIF, +OIF:SP:55:190,1,"Mairie Annexe",48.93848,2.639617,0,0,OIF:SA:55:190,Europe/Paris,,OIF, +OIF:SP:55:191,1,"Brazza",48.934362,2.563695,0,0,OIF:SA:55:191,Europe/Paris,,OIF, +OIF:SP:55:192,1,"Brazza",48.934679,2.567243,0,0,OIF:SA:55:191,Europe/Paris,,OIF, +OIF:SP:55:195,1,"Jean Monet",48.929396,2.552107,0,0,OIF:SA:55:195,Europe/Paris,,OIF, +OIF:SP:55:196,1,"Jean Monet",48.929314,2.552216,0,0,OIF:SA:55:195,Europe/Paris,,OIF, +OIF:SP:55:197,1,"La Fourche",48.907882,2.49357,0,0,OIF:SA:55:197,Europe/Paris,,OIF, +OIF:SP:55:199,1,"La Fourche",48.908059,2.495875,0,0,OIF:SA:55:197,Europe/Paris,,OIF, +OIF:SP:55:201,1,"Passerelle RN3",48.941685,2.640877,0,0,OIF:SA:55:145,Europe/Paris,,OIF, +OIF:SP:55:202,1,"Mairie",48.945524,2.689225,0,0,OIF:SA:53:2281,Europe/Paris,,OIF, +OIF:SP:55:217,1,"Zone d'Activité",48.969414,2.757707,0,0,OIF:SA:55:217,Europe/Paris,,OIF, +OIF:SP:55:219,1,"La Distrillerie",48.94172,2.727536,0,0,OIF:SA:55:219,Europe/Paris,,OIF, +OIF:SP:55:220,1,"La Distrillerie",48.941395,2.728147,0,0,OIF:SA:55:219,Europe/Paris,,OIF, +OIF:SP:55:221,1,"Le Parc",48.933044,2.775048,0,0,OIF:SA:55:221,Europe/Paris,,OIF, +OIF:SP:55:222,1,"Le Parc",48.93308,2.775226,0,0,OIF:SA:55:221,Europe/Paris,,OIF, +OIF:SP:55:223,1,"Gare RER de Mitryclaye",48.975963,2.643522,0,0,OIF:SA:8727152,Europe/Paris,,OIF, +OIF:SP:55:224,1,"Gare RER de Mitryclaye",48.976008,2.64359,0,0,OIF:SA:8727152,Europe/Paris,,OIF, +OIF:SP:55:225,1,"Collège Langevin / Lycée Balzac",48.973383,2.650851,0,0,OIF:SA:55:225,Europe/Paris,,OIF, +OIF:SP:55:226,1,"Cimetière",48.940111,2.743772,0,0,OIF:SA:55:226,Europe/Paris,,OIF, +OIF:SP:55:227,1,"Cimetière",48.939985,2.744002,0,0,OIF:SA:55:226,Europe/Paris,,OIF, +OIF:SP:55:24,1,"Centre",48.930609,2.775069,0,0,OIF:SA:55:24,Europe/Paris,,OIF, +OIF:SP:55:25,1,"Centre",48.930581,2.7753,0,0,OIF:SA:55:24,Europe/Paris,,OIF, +OIF:SP:55:26,1,"Centre",48.983392,2.696256,0,0,OIF:SA:55:26,Europe/Paris,,OIF, +OIF:SP:55:27,1,"Centre",48.983757,2.69735,0,0,OIF:SA:55:26,Europe/Paris,,OIF, +OIF:SP:55:28,1,"Centre",48.942641,2.803848,0,0,OIF:SA:55:28,Europe/Paris,,OIF, +OIF:SP:55:29,1,"Centre",48.942813,2.803618,0,0,OIF:SA:55:28,Europe/Paris,,OIF, +OIF:SP:55:30,1,"Centre Commercial",48.946128,2.666908,0,0,OIF:SA:53:2568,Europe/Paris,,OIF, +OIF:SP:55:34,1,"Chanzy",48.912989,2.523228,0,0,OIF:SA:55:34,Europe/Paris,,OIF, +OIF:SP:55:35,1,"Chanzy",48.912916,2.523651,0,0,OIF:SA:55:34,Europe/Paris,,OIF, +OIF:SP:55:36,1,"Château",48.96558,2.671673,0,0,OIF:SA:55:36,Europe/Paris,,OIF, +OIF:SP:55:37,1,"Château",48.965724,2.671537,0,0,OIF:SA:55:36,Europe/Paris,,OIF, +OIF:SP:55:4,1,"Saint-Hubert",48.937735,2.593394,0,0,OIF:SA:55:4,Europe/Paris,,OIF, +OIF:SP:55:40,1,"Cimetière",48.946188,2.695711,0,0,OIF:SA:55:40,Europe/Paris,,OIF, +OIF:SP:55:44,1,"Cité Technique",48.955798,2.864325,0,0,OIF:SA:55:44,Europe/Paris,,OIF, +OIF:SP:55:45,1,"Cité Technique",48.955495,2.865646,0,0,OIF:SA:55:44,Europe/Paris,,OIF, +OIF:SP:55:5,1,"Saint-Hubert",48.9376,2.593489,0,0,OIF:SA:55:4,Europe/Paris,,OIF, +OIF:SP:55:50,1,"La Closerie",48.939735,2.667891,0,0,OIF:SA:55:50,Europe/Paris,,OIF, +OIF:SP:55:51,1,"La Closerie",48.940239,2.667716,0,0,OIF:SA:55:50,Europe/Paris,,OIF, +OIF:SP:55:56,1,"Deux Départements",48.938138,2.598212,0,0,OIF:SA:55:56,Europe/Paris,,OIF, +OIF:SP:55:57,1,"Deux Départements",48.938066,2.598321,0,0,OIF:SA:55:56,Europe/Paris,,OIF, +OIF:SP:55:6,1,"Gymnase Aubertin",48.940394,2.621606,0,0,OIF:SA:55:6,Europe/Paris,,OIF, +OIF:SP:55:60,1,"Église",48.909234,2.504031,0,0,OIF:SA:55:60,Europe/Paris,,OIF, +OIF:SP:55:61,1,"Église",48.909351,2.503541,0,0,OIF:SA:55:60,Europe/Paris,,OIF, +OIF:SP:55:62,1,"Église",48.944891,2.690667,0,0,OIF:SA:55:62,Europe/Paris,,OIF, +OIF:SP:55:63,1,"Établissements Scolaires",48.97188,2.648193,0,0,OIF:SA:55:63,Europe/Paris,,OIF, +OIF:SP:55:64,1,"Établissements Scolaires",48.971943,2.648262,0,0,OIF:SA:55:63,Europe/Paris,,OIF, +OIF:SP:55:65,1,"Victor Hugo / Jean Moulin",48.910366,2.510252,0,0,OIF:SA:55:65,Europe/Paris,,OIF, +OIF:SP:55:66,1,"Victor Hugo / Jean Moulin",48.910533,2.513007,0,0,OIF:SA:55:65,Europe/Paris,,OIF, +OIF:SP:55:7,1,"Gymnase Aubertin",48.940619,2.62143,0,0,OIF:SA:55:6,Europe/Paris,,OIF, +OIF:SP:55:70,1,"Balzac",48.939269,2.6107,0,0,OIF:SA:53:2453,Europe/Paris,,OIF, +OIF:SP:55:71,1,"Balzac",48.939332,2.610714,0,0,OIF:SA:53:2453,Europe/Paris,,OIF, +OIF:SP:55:78,1,"Gare Routière",48.972497,2.760066,0,0,OIF:SA:55:78,Europe/Paris,,OIF, +OIF:SP:55:79,1,"Gare SNCF de Meaux",48.957137,2.874397,0,0,OIF:SA:8711610,Europe/Paris,,OIF, +OIF:SP:55:80,1,"Gare SNCF de Meaux",48.957217,2.874425,0,0,OIF:SA:8711610,Europe/Paris,,OIF, +OIF:SP:55:83,1,"Alsace",48.937356,2.589709,0,0,OIF:SA:55:83,Europe/Paris,,OIF, +OIF:SP:55:84,1,"Alsace",48.937167,2.589817,0,0,OIF:SA:55:83,Europe/Paris,,OIF, +OIF:SP:55:87,1,"Jean Jaurès",48.944646,2.682275,0,0,OIF:SA:55:87,Europe/Paris,,OIF, +OIF:SP:55:88,1,"Jean Jaurès",48.94471,2.681757,0,0,OIF:SA:55:87,Europe/Paris,,OIF, +OIF:SP:55:95,1,"La Gabrielle",48.942,2.689597,0,0,OIF:SA:55:95,Europe/Paris,,OIF, +OIF:SP:55:96,1,"La Gabrielle",48.941982,2.689788,0,0,OIF:SA:55:95,Europe/Paris,,OIF, +OIF:SP:55:97,1,"La Rosée",48.953916,2.668104,0,0,OIF:SA:55:97,Europe/Paris,,OIF, +OIF:SP:55:98,1,"La Rosée",48.954324,2.666906,0,0,OIF:SA:55:97,Europe/Paris,,OIF, +OIF:SP:56:10103,1,"Gare Massy Palaiseau",48.723332,2.258015,0,0,OIF:SA:8739357,Europe/Paris,,OIF, +OIF:SP:56:10104,1,"Gare Massy Palaiseau",48.723368,2.258206,0,0,OIF:SA:8739357,Europe/Paris,,OIF, +OIF:SP:56:10536,1,"Gare du Guichet",48.706811,2.191073,0,0,OIF:SA:8775883,Europe/Paris,,OIF, +OIF:SP:56:10537,1,"Gare du Guichet",48.706811,2.191073,0,0,OIF:SA:8775883,Europe/Paris,,OIF, +OIF:SP:56:10538,1,"Gare d'Orsay Ville",48.69728,2.181744,0,0,OIF:SA:8775884,Europe/Paris,,OIF, +OIF:SP:56:10539,1,"Gare d'Orsay Ville",48.69728,2.181744,0,0,OIF:SA:8775884,Europe/Paris,,OIF, +OIF:SP:56:10578,1,"Rond-Point",48.683564,2.188749,0,0,OIF:SA:56:10578,Europe/Paris,,OIF, +OIF:SP:56:10655,1,"Les Castors",48.609991,2.325139,0,0,OIF:SA:26:18133,Europe/Paris,,OIF, +OIF:SP:56:10656,1,"Les Castors",48.610036,2.325193,0,0,OIF:SA:26:18133,Europe/Paris,,OIF, +OIF:SP:56:10680,1,"Bizet",48.68327,2.537772,0,0,OIF:SA:32:45013,Europe/Paris,,OIF, +OIF:SP:56:10681,1,"Bizet",48.683602,2.537678,0,0,OIF:SA:32:45013,Europe/Paris,,OIF, +OIF:SP:56:10682,1,"Charles de Gaulle",48.671647,2.537672,0,0,OIF:SA:56:10682,Europe/Paris,,OIF, +OIF:SP:56:10683,1,"Charles de Gaulle",48.671593,2.537672,0,0,OIF:SA:56:10682,Europe/Paris,,OIF, +OIF:SP:56:10685,1,"Fontaine Cornaille",48.678123,2.535661,0,0,OIF:SA:32:45540,Europe/Paris,,OIF, +OIF:SP:56:10686,1,"Fontaine Cornaille",48.6785,2.535771,0,0,OIF:SA:32:45540,Europe/Paris,,OIF, +OIF:SP:56:10736,1,"CEA Porte Nord",48.730176,2.148806,0,0,OIF:SA:56:10736,Europe/Paris,,OIF, +OIF:SP:56:10737,1,"CEA Porte Nord",48.730086,2.149105,0,0,OIF:SA:56:10736,Europe/Paris,,OIF, +OIF:SP:56:10743,1,"Christ (RN 306)",48.729828,2.162761,0,0,OIF:SA:56:10743,Europe/Paris,,OIF, +OIF:SP:56:10744,1,"Christ (RN 306)",48.729855,2.162584,0,0,OIF:SA:56:10743,Europe/Paris,,OIF, +OIF:SP:56:10749,1,"La Martinière",48.728839,2.174829,0,0,OIF:SA:2:1019,Europe/Paris,,OIF, +OIF:SP:56:10750,1,"La Martinière",48.728796,2.1765,0,0,OIF:SA:2:1019,Europe/Paris,,OIF, +OIF:SP:56:10896,1,"Z.I. Croix Blanche",48.624545,2.341149,0,0,OIF:SA:49:54260,Europe/Paris,,OIF, +OIF:SP:56:10897,1,"Z.I. Croix Blanche",48.624545,2.341149,0,0,OIF:SA:49:54260,Europe/Paris,,OIF, +OIF:SP:56:10920,1,"Salvador Allendé",48.592277,2.26087,0,0,OIF:SA:56:10920,Europe/Paris,,OIF, +OIF:SP:56:10921,1,"Salvador Allendé",48.592799,2.261845,0,0,OIF:SA:56:10920,Europe/Paris,,OIF, +OIF:SP:56:11179,1,"Le Clos",48.643446,2.505226,0,0,OIF:SA:29:372,Europe/Paris,,OIF, +OIF:SP:56:11180,1,"Le Clos",48.643311,2.505008,0,0,OIF:SA:29:372,Europe/Paris,,OIF, +OIF:SP:56:11183,1,"Le Petit Sénart",48.654016,2.511718,0,0,OIF:SA:29:374,Europe/Paris,,OIF, +OIF:SP:56:11184,1,"Le Petit Sénart",48.654277,2.511868,0,0,OIF:SA:29:374,Europe/Paris,,OIF, +OIF:SP:56:11329,1,"Château d'Eau",48.685763,2.209526,0,0,OIF:SA:46:11422,Europe/Paris,,OIF, +OIF:SP:56:11364,1,"Norvège",48.691774,2.215798,0,0,OIF:SA:56:11364,Europe/Paris,,OIF, +OIF:SP:56:11365,1,"Norvège",48.691774,2.215798,0,0,OIF:SA:56:11364,Europe/Paris,,OIF, +OIF:SP:56:11366,1,"Québec 25",48.691426,2.218256,0,0,OIF:SA:56:11366,Europe/Paris,,OIF, +OIF:SP:56:11367,1,"Québec 25",48.691426,2.218256,0,0,OIF:SA:56:11366,Europe/Paris,,OIF, +OIF:SP:56:11422,1,"Château d'Eau",48.685951,2.208739,0,0,OIF:SA:46:11422,Europe/Paris,,OIF, +OIF:SP:56:11474,1,"Rond-Point - Maison Foujita",48.729241,2.127165,0,0,OIF:SA:56:11474,Europe/Paris,,OIF, +OIF:SP:56:11475,1,"Rond-Point - Maison Foujita",48.729241,2.127165,0,0,OIF:SA:56:11474,Europe/Paris,,OIF, +OIF:SP:56:11662,1,"Atlantique 1",48.683352,2.199392,0,0,OIF:SA:56:11662,Europe/Paris,,OIF, +OIF:SP:56:11663,1,"Atlantique 1",48.683514,2.1995,0,0,OIF:SA:56:11662,Europe/Paris,,OIF, +OIF:SP:56:11664,1,"Atlantique 2",48.681437,2.199098,0,0,OIF:SA:56:11664,Europe/Paris,,OIF, +OIF:SP:56:11665,1,"Atlantique 2",48.681437,2.199098,0,0,OIF:SA:56:11664,Europe/Paris,,OIF, +OIF:SP:56:11668,1,"Baltique",48.686865,2.205926,0,0,OIF:SA:56:11668,Europe/Paris,,OIF, +OIF:SP:56:11669,1,"Baltique",48.686865,2.205926,0,0,OIF:SA:56:11668,Europe/Paris,,OIF, +OIF:SP:56:11709,1,"Mairie",48.682479,2.170779,0,0,OIF:SA:56:11709,Europe/Paris,,OIF, +OIF:SP:56:11710,1,"Mairie",48.682551,2.170697,0,0,OIF:SA:56:11709,Europe/Paris,,OIF, +OIF:SP:56:11713,1,"Pacifique",48.684217,2.194068,0,0,OIF:SA:56:11713,Europe/Paris,,OIF, +OIF:SP:56:11714,1,"Pacifique",48.684181,2.194,0,0,OIF:SA:56:11713,Europe/Paris,,OIF, +OIF:SP:56:11715,1,"Parana",48.680652,2.196399,0,0,OIF:SA:56:11715,Europe/Paris,,OIF, +OIF:SP:56:11716,1,"Parana",48.680598,2.196603,0,0,OIF:SA:56:11715,Europe/Paris,,OIF, +OIF:SP:56:11721,1,"Québec 5",48.688198,2.20891,0,0,OIF:SA:56:11721,Europe/Paris,,OIF, +OIF:SP:56:11722,1,"Québec 5",48.688198,2.20891,0,0,OIF:SA:56:11721,Europe/Paris,,OIF, +OIF:SP:56:11730,1,"Tropique",48.684421,2.199077,0,0,OIF:SA:56:11730,Europe/Paris,,OIF, +OIF:SP:56:11731,1,"Tropique",48.684358,2.199023,0,0,OIF:SA:56:11730,Europe/Paris,,OIF, +OIF:SP:56:11735,1,"D'Alembert",48.774089,2.044862,0,0,OIF:SA:56:11735,Europe/Paris,,OIF, +OIF:SP:56:11736,1,"D'Alembert",48.773581,2.046443,0,0,OIF:SA:56:11735,Europe/Paris,,OIF, +OIF:SP:56:11737,1,"Jean Monnet",48.769561,2.060919,0,0,OIF:SA:24:15200,Europe/Paris,,OIF, +OIF:SP:56:11738,1,"Jean Monnet",48.768962,2.062269,0,0,OIF:SA:24:15200,Europe/Paris,,OIF, +OIF:SP:56:11739,1,"Polytechnique Laboratoire",48.712913,2.205018,0,0,OIF:SA:56:11739,Europe/Paris,,OIF, +OIF:SP:56:11740,1,"Polytechnique Lozère",48.709925,2.209834,0,0,OIF:SA:56:11740,Europe/Paris,,OIF, +OIF:SP:56:11741,1,"Polytechnique Laboratoire",48.712562,2.204951,0,0,OIF:SA:56:11739,Europe/Paris,,OIF, +OIF:SP:56:11742,1,"Polytechnique Lozère",48.709818,2.210636,0,0,OIF:SA:56:11740,Europe/Paris,,OIF, +OIF:SP:56:11743,1,"Camille Claudel",48.719555,2.231899,0,0,OIF:SA:56:11743,Europe/Paris,,OIF, +OIF:SP:56:11744,1,"Camille Claudel",48.7196,2.23198,0,0,OIF:SA:56:11743,Europe/Paris,,OIF, +OIF:SP:56:11748,1,"Canada",48.687763,2.197181,0,0,OIF:SA:56:11748,Europe/Paris,,OIF, +OIF:SP:56:11749,1,"Gendarmerie",48.441214,2.14917,0,0,OIF:SA:56:11749,Europe/Paris,,OIF, +OIF:SP:56:11760,1,"Saint-Joseph",48.699817,2.468188,0,0,OIF:SA:32:45213,Europe/Paris,,OIF, +OIF:SP:56:11764,1,"Edmond Bonté",48.657053,2.410417,0,0,OIF:SA:10:143,Europe/Paris,,OIF, +OIF:SP:56:11766,1,"Pavillon Flore",48.70069,2.466887,0,0,OIF:SA:32:45209,Europe/Paris,,OIF, +OIF:SP:56:11767,1,"La Forêt",48.696314,2.456434,0,0,OIF:SA:32:45198,Europe/Paris,,OIF, +OIF:SP:56:11768,1,"Chemin Vert",48.692319,2.431307,0,0,OIF:SA:56:11768,Europe/Paris,,OIF, +OIF:SP:56:11769,1,"Patte d'Oie",48.702793,2.429249,0,0,OIF:SA:8799150,Europe/Paris,,OIF, +OIF:SP:56:11770,1,"Prairie de l'Oly",48.703456,2.442192,0,0,OIF:SA:43:150,Europe/Paris,,OIF, +OIF:SP:56:11771,1,"Toit et Joie",48.700686,2.421736,0,0,OIF:SA:43:245,Europe/Paris,,OIF, +OIF:SP:56:11772,1,"Danton",48.674976,2.411799,0,0,OIF:SA:43:49,Europe/Paris,,OIF, +OIF:SP:56:11774,1,"Orée de Sénart",48.686055,2.417938,0,0,OIF:SA:43:101,Europe/Paris,,OIF, +OIF:SP:56:11776,1,"La Coulette",48.667899,2.416281,0,0,OIF:SA:43:45,Europe/Paris,,OIF, +OIF:SP:56:11777,1,"Gambetta",48.701952,2.486907,0,0,OIF:SA:32:45404,Europe/Paris,,OIF, +OIF:SP:56:11778,1,"Gare Routière",48.707017,2.483037,0,0,OIF:SA:8768211,Europe/Paris,,OIF, +OIF:SP:56:11788,1,"Gare Routière",48.707017,2.483037,0,0,OIF:SA:8768211,Europe/Paris,,OIF, +OIF:SP:56:11789,1,"Gambetta",48.700958,2.483984,0,0,OIF:SA:32:45404,Europe/Paris,,OIF, +OIF:SP:56:11790,1,"La Forêt",48.696171,2.455633,0,0,OIF:SA:32:45198,Europe/Paris,,OIF, +OIF:SP:56:11791,1,"Salvador Allendé",48.693831,2.429586,0,0,OIF:SA:56:11768,Europe/Paris,,OIF, +OIF:SP:56:11792,1,"Patte d'Oie",48.703268,2.430377,0,0,OIF:SA:8799150,Europe/Paris,,OIF, +OIF:SP:56:11793,1,"Prairie de l'Oly",48.703367,2.441336,0,0,OIF:SA:43:150,Europe/Paris,,OIF, +OIF:SP:56:11794,1,"Toit et Joie",48.70083,2.421872,0,0,OIF:SA:43:245,Europe/Paris,,OIF, +OIF:SP:56:11795,1,"Danton",48.675129,2.411555,0,0,OIF:SA:43:49,Europe/Paris,,OIF, +OIF:SP:56:11797,1,"La Coulette",48.667773,2.416321,0,0,OIF:SA:43:45,Europe/Paris,,OIF, +OIF:SP:56:11798,1,"Orée de Sénart",48.686037,2.417544,0,0,OIF:SA:43:101,Europe/Paris,,OIF, +OIF:SP:56:11799,1,"Edmond Bonté",48.656793,2.409901,0,0,OIF:SA:10:143,Europe/Paris,,OIF, +OIF:SP:56:11801,1,"Canada",48.687763,2.197181,0,0,OIF:SA:56:11748,Europe/Paris,,OIF, +OIF:SP:56:11802,1,"Rond-Point",48.684085,2.188679,0,0,OIF:SA:56:11802,Europe/Paris,,OIF, +OIF:SP:56:11804,1,"Ensta - les Joncherettes",48.710195,2.218947,0,0,OIF:SA:56:11804,Europe/Paris,,OIF, +OIF:SP:56:11805,1,"Ensta - les Joncherettes",48.710123,2.21873,0,0,OIF:SA:56:11804,Europe/Paris,,OIF, +OIF:SP:56:11806,1,"Gare Autoroutière",48.616646,2.126291,0,0,OIF:SA:24:14896,Europe/Paris,,OIF, +OIF:SP:56:11807,1,"Gare Autoroutière",48.617266,2.126505,0,0,OIF:SA:24:14896,Europe/Paris,,OIF, +OIF:SP:56:11808,1,"Lucien Clause",48.605869,2.300281,0,0,OIF:SA:26:18065,Europe/Paris,,OIF, +OIF:SP:56:11811,1,"Vieille Remise",48.716237,2.309956,0,0,OIF:SA:56:11811,Europe/Paris,,OIF, +OIF:SP:56:11812,1,"Vielle Remise",48.715023,2.309753,0,0,OIF:SA:56:11811,Europe/Paris,,OIF, +OIF:SP:56:11813,1,"ZI de Montavas",48.725325,2.315888,0,0,OIF:SA:56:11813,Europe/Paris,,OIF, +OIF:SP:56:11814,1,"ZI de Montavas",48.72573,2.317342,0,0,OIF:SA:56:11813,Europe/Paris,,OIF, +OIF:SP:56:11815,1,"La Fraternelle",48.741523,2.35305,0,0,OIF:SA:8754629,Europe/Paris,,OIF, +OIF:SP:56:11816,1,"La Fraternelle",48.741775,2.352955,0,0,OIF:SA:8754629,Europe/Paris,,OIF, +OIF:SP:56:11817,1,"Silic Vauban",48.746071,2.354275,0,0,OIF:SA:59831,Europe/Paris,,OIF, +OIF:SP:56:11818,1,"Silic Vauban",48.746017,2.354452,0,0,OIF:SA:59831,Europe/Paris,,OIF, +OIF:SP:56:11821,1,"Orly Ouest",48.727671,2.360587,0,0,OIF:SA:59673,Europe/Paris,,OIF, +OIF:SP:56:11822,1,"Orly Ouest",48.727706,2.360587,0,0,OIF:SA:59673,Europe/Paris,,OIF, +OIF:SP:56:11823,1,"Commandant Mouchotte",48.741576,2.359655,0,0,OIF:SA:59835,Europe/Paris,,OIF, +OIF:SP:56:11824,1,"Commandant Mouchotte",48.741621,2.359614,0,0,OIF:SA:59835,Europe/Paris,,OIF, +OIF:SP:56:11825,1,"Université Paris Saclay",48.712387,2.172381,0,0,OIF:SA:56:11825,Europe/Paris,,OIF, +OIF:SP:56:11826,1,"Université Paris Saclay",48.712503,2.172435,0,0,OIF:SA:56:11825,Europe/Paris,,OIF, +OIF:SP:56:11843,1,"Institut de Biologie",48.626451,2.4395,0,0,OIF:SA:10:1331,Europe/Paris,,OIF, +OIF:SP:56:11844,1,"Institut de Biologie",48.626406,2.439785,0,0,OIF:SA:10:1331,Europe/Paris,,OIF, +OIF:SP:56:11846,1,"Orly Sud",48.729062,2.369323,0,0,OIF:SA:59675,Europe/Paris,,OIF, +OIF:SP:56:11847,1,"Orly Sud",48.728765,2.369092,0,0,OIF:SA:59675,Europe/Paris,,OIF, +OIF:SP:56:11848,1,"Avenue de l'Europe Centre Commercial",48.727056,2.277275,0,0,OIF:SA:29:423,Europe/Paris,,OIF, +OIF:SP:56:11849,1,"Avenue de l'Europe Centre Commercial",48.72702,2.276623,0,0,OIF:SA:29:423,Europe/Paris,,OIF, +OIF:SP:56:11850,1,"La Tuilerie",48.727583,2.271093,0,0,OIF:SA:49:60460,Europe/Paris,,OIF, +OIF:SP:56:11851,1,"La Tuilerie",48.727736,2.270766,0,0,OIF:SA:49:60460,Europe/Paris,,OIF, +OIF:SP:56:11853,1,"La Fontaine",48.654599,2.410671,0,0,OIF:SA:10:178,Europe/Paris,,OIF, +OIF:SP:56:11854,1,"Pépinière",48.646952,2.510935,0,0,OIF:SA:29:599,Europe/Paris,,OIF, +OIF:SP:56:11855,1,"Pépinière",48.646413,2.510716,0,0,OIF:SA:29:599,Europe/Paris,,OIF, +OIF:SP:56:11856,1,"La Fontaine",48.654626,2.410427,0,0,OIF:SA:10:178,Europe/Paris,,OIF, +OIF:SP:56:11857,1,"Bruneau",48.689499,2.206422,0,0,OIF:SA:56:11857,Europe/Paris,,OIF, +OIF:SP:56:11858,1,"Bruneau",48.689499,2.206422,0,0,OIF:SA:56:11857,Europe/Paris,,OIF, +OIF:SP:56:11859,1,"Palaiseau Ville",48.721915,2.248916,0,0,OIF:SA:56:11859,Europe/Paris,,OIF, +OIF:SP:56:11860,1,"Palaiseau Ville",48.721996,2.248861,0,0,OIF:SA:56:11859,Europe/Paris,,OIF, +OIF:SP:56:11861,1,"La Vallée",48.724363,2.241399,0,0,OIF:SA:56:11861,Europe/Paris,,OIF, +OIF:SP:56:11862,1,"La Vallée",48.724399,2.241317,0,0,OIF:SA:56:11861,Europe/Paris,,OIF, +OIF:SP:56:11863,1,"Toronto",48.744785,2.358692,0,0,OIF:SA:56:11863,Europe/Paris,,OIF, +OIF:SP:56:11864,1,"Toronto",48.744731,2.358664,0,0,OIF:SA:56:11863,Europe/Paris,,OIF, +OIF:SP:56:11865,1,"Centre Omnisport",48.733767,2.334908,0,0,OIF:SA:56:11865,Europe/Paris,,OIF, +OIF:SP:56:11866,1,"Centre Omnisport",48.733758,2.334894,0,0,OIF:SA:56:11865,Europe/Paris,,OIF, +OIF:SP:56:11867,1,"Ter@Tec",48.597853,2.203535,0,0,OIF:SA:56:11867,Europe/Paris,,OIF, +OIF:SP:56:11868,1,"Ter@Tec",48.597853,2.203535,0,0,OIF:SA:56:11867,Europe/Paris,,OIF, +OIF:SP:56:11869,1,"Gare Autoroutière",48.615983,2.127541,0,0,OIF:SA:24:14896,Europe/Paris,,OIF, +OIF:SP:56:11870,1,"Gare Autoroutière",48.615974,2.127527,0,0,OIF:SA:24:14896,Europe/Paris,,OIF, +OIF:SP:56:11871,1,"Résidence la Vallée",48.626371,2.47401,0,0,OIF:SA:56:11871,Europe/Paris,,OIF, +OIF:SP:56:11872,1,"Résidence la Vallée",48.62638,2.473996,0,0,OIF:SA:56:11871,Europe/Paris,,OIF, +OIF:SP:56:11873,1,"Le Thuit",48.732596,2.10461,0,0,OIF:SA:24:5833,Europe/Paris,,OIF, +OIF:SP:56:11874,1,"Le Thuit",48.732928,2.104079,0,0,OIF:SA:24:5833,Europe/Paris,,OIF, +OIF:SP:56:11875,1,"Geneviève Aubé - RD36",48.745269,2.082196,0,0,OIF:SA:24:15188,Europe/Paris,,OIF, +OIF:SP:56:11876,1,"Geneviève Aubé - RD36",48.745127,2.083298,0,0,OIF:SA:24:15188,Europe/Paris,,OIF, +OIF:SP:56:11877,1,"Vélizy 2 (Gare Routière)",48.78548,2.218912,0,0,OIF:SA:59870,Europe/Paris,,OIF, +OIF:SP:56:11878,1,"Vélizy 2",48.78469,2.219376,0,0,OIF:SA:59870,Europe/Paris,,OIF, +OIF:SP:56:11881,1,"Porte d'Étampes",48.587628,2.246053,0,0,OIF:SA:24:8431,Europe/Paris,,OIF, +OIF:SP:56:11882,1,"Z.I. Croix Blanche",48.623862,2.342519,0,0,OIF:SA:49:54260,Europe/Paris,,OIF, +OIF:SP:56:11883,1,"Fresnel",48.714277,2.202964,0,0,OIF:SA:56:11883,Europe/Paris,,OIF, +OIF:SP:56:11884,1,"Fresnel",48.714205,2.203195,0,0,OIF:SA:56:11883,Europe/Paris,,OIF, +OIF:SP:56:11885,1,"Palaiseau - Campus",48.715071,2.197719,0,0,OIF:SA:56:11885,Europe/Paris,,OIF, +OIF:SP:56:11886,1,"Palaiseau - Campus",48.715017,2.197977,0,0,OIF:SA:56:11885,Europe/Paris,,OIF, +OIF:SP:56:11887,1,"Université Paris-Saclay",48.711909,2.171446,0,0,OIF:SA:56:11887,Europe/Paris,,OIF, +OIF:SP:56:11888,1,"Université Paris-Saclay",48.711873,2.171717,0,0,OIF:SA:56:11887,Europe/Paris,,OIF, +OIF:SP:56:11889,1,"Moulon Tcsp",48.711955,2.166176,0,0,OIF:SA:56:11889,Europe/Paris,,OIF, +OIF:SP:56:11890,1,"Moulon Tcsp",48.711929,2.166434,0,0,OIF:SA:56:11889,Europe/Paris,,OIF, +OIF:SP:56:11891,1,"Joliot Curie",48.711033,2.16224,0,0,OIF:SA:56:11891,Europe/Paris,,OIF, +OIF:SP:56:11893,1,"Orme des Merisiers",48.711868,2.149769,0,0,OIF:SA:56:11893,Europe/Paris,,OIF, +OIF:SP:56:11894,1,"Orme des Merisiers",48.711706,2.149919,0,0,OIF:SA:56:11893,Europe/Paris,,OIF, +OIF:SP:56:11895,1,"Saint-Aubin",48.714515,2.146798,0,0,OIF:SA:56:11895,Europe/Paris,,OIF, +OIF:SP:56:11896,1,"Saint-Aubin",48.714379,2.146622,0,0,OIF:SA:56:11895,Europe/Paris,,OIF, +OIF:SP:56:11897,1,"Mare du Vivier",48.718791,2.151184,0,0,OIF:SA:56:11897,Europe/Paris,,OIF, +OIF:SP:56:11898,1,"Mare du Vivier",48.718674,2.151021,0,0,OIF:SA:56:11897,Europe/Paris,,OIF, +OIF:SP:56:11899,1,"Raoult Dautry",48.723887,2.156436,0,0,OIF:SA:24:15092,Europe/Paris,,OIF, +OIF:SP:56:11900,1,"Raoult Dautry",48.723787,2.156274,0,0,OIF:SA:24:15092,Europe/Paris,,OIF, +OIF:SP:56:11901,1,"Corbeville",48.713597,2.190836,0,0,OIF:SA:56:11901,Europe/Paris,,OIF, +OIF:SP:56:11902,1,"Corbeville",48.713535,2.191135,0,0,OIF:SA:56:11901,Europe/Paris,,OIF, +OIF:SP:56:11903,1,"Christ de Saclay",48.729818,2.161511,0,0,OIF:SA:24:15235,Europe/Paris,,OIF, +OIF:SP:56:11904,1,"Christ de Saclay",48.729387,2.161934,0,0,OIF:SA:24:15235,Europe/Paris,,OIF, +OIF:SP:56:11905,1,"Joliot Curie",48.710997,2.162512,0,0,OIF:SA:56:11891,Europe/Paris,,OIF, +OIF:SP:56:11906,1,"Fresnel Vauve",48.716128,2.202524,0,0,OIF:SA:56:11883,Europe/Paris,,OIF, +OIF:SP:56:11907,1,"Fresnel Vauve",48.716452,2.202809,0,0,OIF:SA:56:11883,Europe/Paris,,OIF, +OIF:SP:56:11908,1,"Rond-Point Mondétour",48.684372,2.187945,0,0,OIF:SA:56:10578,Europe/Paris,,OIF, +OIF:SP:56:11909,1,"Rond-Point Mondétour",48.684478,2.186384,0,0,OIF:SA:56:10578,Europe/Paris,,OIF, +OIF:SP:56:5837,1,"Rond-Point",48.74031,2.09649,0,0,OIF:SA:56:5837,Europe/Paris,,OIF, +OIF:SP:56:5838,1,"Rond-Point",48.74031,2.096476,0,0,OIF:SA:56:5837,Europe/Paris,,OIF, +OIF:SP:56:6371,1,"Le Corbusier",48.765218,2.068026,0,0,OIF:SA:24:15201,Europe/Paris,,OIF, +OIF:SP:56:6372,1,"Le Corbusier",48.764376,2.069132,0,0,OIF:SA:24:15201,Europe/Paris,,OIF, +OIF:SP:56:6404,1,"Technocentre Gare Routière",48.76141,2.077318,0,0,OIF:SA:56:6404,Europe/Paris,,OIF, +OIF:SP:56:6405,1,"Technocentre Gare Routière",48.76141,2.077318,0,0,OIF:SA:56:6404,Europe/Paris,,OIF, +OIF:SP:56:6413,1,"Golf National",48.756634,2.071727,0,0,OIF:SA:24:6342,Europe/Paris,,OIF, +OIF:SP:56:6414,1,"Golf National",48.755383,2.070959,0,0,OIF:SA:24:6342,Europe/Paris,,OIF, +OIF:SP:56:6705,1,"Le Plessis Mornay",48.565869,1.987546,0,0,OIF:SA:56:6705,Europe/Paris,,OIF, +OIF:SP:56:6706,1,"Le Plessis Mornay",48.565573,1.987467,0,0,OIF:SA:56:6705,Europe/Paris,,OIF, +OIF:SP:56:6790,1,"Mérantais",48.751682,2.068123,0,0,OIF:SA:24:15255,Europe/Paris,,OIF, +OIF:SP:56:6791,1,"Mérantais",48.751556,2.067961,0,0,OIF:SA:24:15255,Europe/Paris,,OIF, +OIF:SP:56:7321,1,"Lycée Emilie de Breteuil",48.781449,2.040578,0,0,OIF:SA:41:6072,Europe/Paris,,OIF, +OIF:SP:56:7322,1,"Lycée Emilie de Breteuil",48.780476,2.039685,0,0,OIF:SA:41:6072,Europe/Paris,,OIF, +OIF:SP:56:7349,1,"Saint-Quentin Gare Routière (Avenue des Prés)",48.787708,2.045819,0,0,OIF:SA:8739384,Europe/Paris,,OIF, +OIF:SP:56:7350,1,"Saint-Quentin Gare Routière (Avenue des Prés)",48.788269,2.047054,0,0,OIF:SA:8739384,Europe/Paris,,OIF, +OIF:SP:56:8110,1,"Centre Commercial",48.783081,2.219026,0,0,OIF:SA:59870,Europe/Paris,,OIF, +OIF:SP:56:8111,1,"Centre Commercial",48.783081,2.219026,0,0,OIF:SA:59870,Europe/Paris,,OIF, +OIF:SP:56:8415,1,"Gare Arpajon",48.586186,2.241327,0,0,OIF:SA:8754546,Europe/Paris,,OIF, +OIF:SP:56:8416,1,"Gare Arpajon",48.586383,2.240825,0,0,OIF:SA:8754546,Europe/Paris,,OIF, +OIF:SP:56:8431,1,"Porte d'Étampes",48.587044,2.246786,0,0,OIF:SA:24:8431,Europe/Paris,,OIF, +OIF:SP:56:8432,1,"Porte d'Étampes",48.586791,2.244632,0,0,OIF:SA:24:8431,Europe/Paris,,OIF, +OIF:SP:56:8584,1,"Centre Commercial",48.683725,2.534163,0,0,OIF:SA:32:45015,Europe/Paris,,OIF, +OIF:SP:56:8585,1,"Centre Commercial",48.683717,2.533497,0,0,OIF:SA:32:45015,Europe/Paris,,OIF, +OIF:SP:56:8600,1,"Piscine des Sénarts",48.690409,2.525458,0,0,OIF:SA:32:45029,Europe/Paris,,OIF, +OIF:SP:56:8601,1,"Piscine des Sénarts",48.690624,2.52573,0,0,OIF:SA:32:45029,Europe/Paris,,OIF, +OIF:SP:56:8637,1,"Gare de Brétigny",48.607695,2.301757,0,0,OIF:SA:8754519,Europe/Paris,,OIF, +OIF:SP:56:8638,1,"Lycée",48.608569,2.313942,0,0,OIF:SA:26:18066,Europe/Paris,,OIF, +OIF:SP:56:8639,1,"Lycée",48.608659,2.313617,0,0,OIF:SA:26:18066,Europe/Paris,,OIF, +OIF:SP:56:8700,1,"Gare Brunoy",48.69932,2.505747,0,0,OIF:SA:8768212,Europe/Paris,,OIF, +OIF:SP:56:8701,1,"Gare Brunoy",48.69932,2.505747,0,0,OIF:SA:8768212,Europe/Paris,,OIF, +OIF:SP:56:8744,1,"Talma",48.694424,2.503531,0,0,OIF:SA:32:45068,Europe/Paris,,OIF, +OIF:SP:56:8745,1,"Talma",48.694586,2.503599,0,0,OIF:SA:32:45068,Europe/Paris,,OIF, +OIF:SP:56:9036,1,"Gare Dourdan",48.533672,2.007537,0,0,OIF:SA:8754552,Europe/Paris,,OIF, +OIF:SP:56:9037,1,"Gare Dourdan",48.53369,2.007442,0,0,OIF:SA:8754552,Europe/Paris,,OIF, +OIF:SP:56:9041,1,"Hôpital",48.534458,2.002375,0,0,OIF:SA:25:172,Europe/Paris,,OIF, +OIF:SP:56:9042,1,"Hôpital",48.533241,2.001422,0,0,OIF:SA:25:172,Europe/Paris,,OIF, +OIF:SP:56:9051,1,"Lycée",48.534467,1.996108,0,0,OIF:SA:56:9051,Europe/Paris,,OIF, +OIF:SP:56:9052,1,"Lycée",48.534506,1.997312,0,0,OIF:SA:56:9051,Europe/Paris,,OIF, +OIF:SP:56:9066,1,"Belambra",48.521943,2.015149,0,0,OIF:SA:46:14756,Europe/Paris,,OIF, +OIF:SP:56:9067,1,"Belambra",48.521836,2.015447,0,0,OIF:SA:46:14756,Europe/Paris,,OIF, +OIF:SP:56:9210,1,"La Plaine",48.69627,2.525031,0,0,OIF:SA:32:45137,Europe/Paris,,OIF, +OIF:SP:56:9211,1,"La Plaine",48.696603,2.524829,0,0,OIF:SA:32:45137,Europe/Paris,,OIF, +OIF:SP:56:9281,1,"Gare d'Étampes",48.436601,2.159914,0,0,OIF:SA:8754513,Europe/Paris,,OIF, +OIF:SP:56:9282,1,"Gare d'Étampes",48.436601,2.159927,0,0,OIF:SA:8754513,Europe/Paris,,OIF, +OIF:SP:56:9309,1,"Meuniers",48.439849,2.149985,0,0,OIF:SA:46:9318,Europe/Paris,,OIF, +OIF:SP:56:9310,1,"Meuniers",48.439594,2.148176,0,0,OIF:SA:46:9318,Europe/Paris,,OIF, +OIF:SP:56:9331,1,"Lycée Saint-Hilaire",48.435433,2.148758,0,0,OIF:SA:46:9331,Europe/Paris,,OIF, +OIF:SP:56:9332,1,"Lycée Saint-Hilaire",48.43537,2.148921,0,0,OIF:SA:46:9331,Europe/Paris,,OIF, +OIF:SP:56:9352,1,"Rotonde",48.433375,2.155115,0,0,OIF:SA:14:9352,Europe/Paris,,OIF, +OIF:SP:56:9358,1,"Simone de Beauvoir",48.436744,2.153442,0,0,OIF:SA:46:14997,Europe/Paris,,OIF, +OIF:SP:56:9379,1,"Vallée Collin",48.440238,2.151484,0,0,OIF:SA:46:14704,Europe/Paris,,OIF, +OIF:SP:56:9397,1,"École Normale",48.634354,2.465188,0,0,OIF:SA:56:9397,Europe/Paris,,OIF, +OIF:SP:56:9398,1,"École Normale",48.634157,2.465202,0,0,OIF:SA:56:9397,Europe/Paris,,OIF, +OIF:SP:56:9445,1,"Cité Administrative",48.629196,2.436264,0,0,OIF:SA:56:9445,Europe/Paris,,OIF, +OIF:SP:56:9446,1,"Cité Administrative",48.629321,2.436414,0,0,OIF:SA:56:9445,Europe/Paris,,OIF, +OIF:SP:56:9449,1,"Gare Évry Courcouronnes",48.625768,2.428461,0,0,OIF:SA:8768138,Europe/Paris,,OIF, +OIF:SP:56:9450,1,"Gare Évry Courcouronnes",48.625948,2.428177,0,0,OIF:SA:8768138,Europe/Paris,,OIF, +OIF:SP:56:9455,1,"Gare Routière",48.625049,2.428772,0,0,OIF:SA:8768138,Europe/Paris,,OIF, +OIF:SP:56:9456,1,"Gare Routière",48.625067,2.428229,0,0,OIF:SA:8768138,Europe/Paris,,OIF, +OIF:SP:56:9491,1,"Saint-Exupéry",48.630569,2.448282,0,0,OIF:SA:10:474,Europe/Paris,,OIF, +OIF:SP:56:9492,1,"Saint-Exupéry",48.630039,2.447833,0,0,OIF:SA:10:474,Europe/Paris,,OIF, +OIF:SP:56:9556,1,"Église",48.479718,2.042709,0,0,OIF:SA:56:9556,Europe/Paris,,OIF, +OIF:SP:56:9557,1,"Église",48.479296,2.042941,0,0,OIF:SA:56:9556,Europe/Paris,,OIF, +OIF:SP:56:9647,1,"Église",48.504285,2.020872,0,0,OIF:SA:46:9647,Europe/Paris,,OIF, +OIF:SP:56:9648,1,"Église",48.504447,2.020898,0,0,OIF:SA:46:9647,Europe/Paris,,OIF, +OIF:SP:56:9649,1,"Mairie",48.501854,2.019615,0,0,OIF:SA:46:9649,Europe/Paris,,OIF, +OIF:SP:56:9650,1,"Mairie",48.502284,2.019098,0,0,OIF:SA:46:9649,Europe/Paris,,OIF, +OIF:SP:56:9899,1,"Château d'Eau",48.62677,2.263098,0,0,OIF:SA:46:14908,Europe/Paris,,OIF, +OIF:SP:56:9900,1,"Château d'Eau",48.62677,2.263098,0,0,OIF:SA:46:14908,Europe/Paris,,OIF, +OIF:SP:57:10,1,"Collège Guyonnerie",48.700948,2.156774,0,0,OIF:SA:57:10,Europe/Paris,,OIF, +OIF:SP:57:100,1,"Centre",48.687115,2.145473,0,0,OIF:SA:57:100,Europe/Paris,,OIF, +OIF:SP:57:1000,1,"Orgeval",48.697765,2.203197,0,0,OIF:SA:57:1000,Europe/Paris,,OIF, +OIF:SP:57:101,1,"Centre",48.68679,2.1447,0,0,OIF:SA:57:100,Europe/Paris,,OIF, +OIF:SP:57:1010,1,"Cimetière d'Orsay",48.698972,2.205746,0,0,OIF:SA:57:1010,Europe/Paris,,OIF, +OIF:SP:57:1011,1,"Cimetière d'Orsay",48.698982,2.206371,0,0,OIF:SA:57:1010,Europe/Paris,,OIF, +OIF:SP:57:1012,1,"Cimetière d'Orsay",48.698523,2.205734,0,0,OIF:SA:57:1010,Europe/Paris,,OIF, +OIF:SP:57:1020,1,"Ruisseau",48.698902,2.199527,0,0,OIF:SA:57:1020,Europe/Paris,,OIF, +OIF:SP:57:1030,1,"Saint-Laurent",48.698766,2.190647,0,0,OIF:SA:57:1030,Europe/Paris,,OIF, +OIF:SP:57:1040,1,"Charles de Gaulle",48.70101,2.188455,0,0,OIF:SA:57:1040,Europe/Paris,,OIF, +OIF:SP:57:1041,1,"Charles de Gaulle",48.701371,2.1892,0,0,OIF:SA:57:1040,Europe/Paris,,OIF, +OIF:SP:57:1050,1,"Racine",48.702866,2.191464,0,0,OIF:SA:57:1050,Europe/Paris,,OIF, +OIF:SP:57:1051,1,"Racine",48.70346,2.192101,0,0,OIF:SA:57:1050,Europe/Paris,,OIF, +OIF:SP:57:1070,1,"École du Guichet",48.705621,2.195395,0,0,OIF:SA:57:1070,Europe/Paris,,OIF, +OIF:SP:57:1071,1,"École du Guichet",48.705558,2.195422,0,0,OIF:SA:57:1070,Europe/Paris,,OIF, +OIF:SP:57:1080,1,"Fournier",48.703941,2.195888,0,0,OIF:SA:57:1080,Europe/Paris,,OIF, +OIF:SP:57:1100,1,"Aristide Briand",48.707036,2.198446,0,0,OIF:SA:57:1100,Europe/Paris,,OIF, +OIF:SP:57:1101,1,"Aristide Briand",48.707142,2.196871,0,0,OIF:SA:57:1100,Europe/Paris,,OIF, +OIF:SP:57:111,1,"Ruisseau",48.688837,2.148344,0,0,OIF:SA:57:111,Europe/Paris,,OIF, +OIF:SP:57:1110,1,"Châteaufort",48.708124,2.198878,0,0,OIF:SA:57:1110,Europe/Paris,,OIF, +OIF:SP:57:112,1,"Ruisseau",48.688711,2.14825,0,0,OIF:SA:57:111,Europe/Paris,,OIF, +OIF:SP:57:1122,1,"Martinière",48.70928,2.195779,0,0,OIF:SA:57:1122,Europe/Paris,,OIF, +OIF:SP:57:1130,1,"Couturier",48.709618,2.193469,0,0,OIF:SA:57:1130,Europe/Paris,,OIF, +OIF:SP:57:1140,1,"Corniche",48.708939,2.196459,0,0,OIF:SA:57:1140,Europe/Paris,,OIF, +OIF:SP:57:1150,1,"Buisson",48.707868,2.195701,0,0,OIF:SA:57:1150,Europe/Paris,,OIF, +OIF:SP:57:1160,1,"Mûriers",48.711987,2.1828,0,0,OIF:SA:57:1160,Europe/Paris,,OIF, +OIF:SP:57:1171,1,"Plan",48.71137,2.185097,0,0,OIF:SA:57:1171,Europe/Paris,,OIF, +OIF:SP:57:1180,1,"Versailles",48.709035,2.18725,0,0,OIF:SA:57:1180,Europe/Paris,,OIF, +OIF:SP:57:1181,1,"Versailles",48.708973,2.187223,0,0,OIF:SA:57:1180,Europe/Paris,,OIF, +OIF:SP:57:1190,1,"Gare du Guichet",48.706398,2.19144,0,0,OIF:SA:8775883,Europe/Paris,,OIF, +OIF:SP:57:1196,1,"Gare du Guichet",48.706209,2.191387,0,0,OIF:SA:8775883,Europe/Paris,,OIF, +OIF:SP:57:12,1,"Collège Guyonnerie",48.701119,2.156814,0,0,OIF:SA:57:10,Europe/Paris,,OIF, +OIF:SP:57:120,1,"Clos de Bures",48.690566,2.150497,0,0,OIF:SA:57:120,Europe/Paris,,OIF, +OIF:SP:57:121,1,"Clos de Bures",48.690503,2.15047,0,0,OIF:SA:57:120,Europe/Paris,,OIF, +OIF:SP:57:1220,1,"Gare d'Orsay - l'Yvette",48.699374,2.180977,0,0,OIF:SA:8775884,Europe/Paris,,OIF, +OIF:SP:57:1230,1,"Château",48.701422,2.180143,0,0,OIF:SA:57:1230,Europe/Paris,,OIF, +OIF:SP:57:1231,1,"Château",48.701422,2.180102,0,0,OIF:SA:57:1230,Europe/Paris,,OIF, +OIF:SP:57:1240,1,"Bibliothèque",48.703207,2.17753,0,0,OIF:SA:57:1240,Europe/Paris,,OIF, +OIF:SP:57:1241,1,"Bibliothèque",48.703162,2.177571,0,0,OIF:SA:57:1240,Europe/Paris,,OIF, +OIF:SP:57:1250,1,"Georges Poitou",48.703536,2.174487,0,0,OIF:SA:57:1250,Europe/Paris,,OIF, +OIF:SP:57:1251,1,"Georges Poitou",48.703509,2.174528,0,0,OIF:SA:57:1250,Europe/Paris,,OIF, +OIF:SP:57:1260,1,"Verger",48.702096,2.173283,0,0,OIF:SA:57:1260,Europe/Paris,,OIF, +OIF:SP:57:1261,1,"Verger",48.70206,2.173242,0,0,OIF:SA:57:1260,Europe/Paris,,OIF, +OIF:SP:57:1270,1,"Bures Amphi",48.701727,2.166807,0,0,OIF:SA:57:1270,Europe/Paris,,OIF, +OIF:SP:57:1271,1,"Bures Amphi",48.701872,2.167281,0,0,OIF:SA:57:1270,Europe/Paris,,OIF, +OIF:SP:57:1280,1,"L'Isles",48.699585,2.164818,0,0,OIF:SA:57:1280,Europe/Paris,,OIF, +OIF:SP:57:1281,1,"L'Isles",48.699549,2.164818,0,0,OIF:SA:57:1280,Europe/Paris,,OIF, +OIF:SP:57:1290,1,"Jean Monnet",48.699301,2.167548,0,0,OIF:SA:57:1290,Europe/Paris,,OIF, +OIF:SP:57:130,1,"Jules Verne",48.692024,2.151822,0,0,OIF:SA:57:130,Europe/Paris,,OIF, +OIF:SP:57:1300,1,"Launay",48.702808,2.181171,0,0,OIF:SA:57:1300,Europe/Paris,,OIF, +OIF:SP:57:1301,1,"Launay",48.702763,2.181144,0,0,OIF:SA:57:1300,Europe/Paris,,OIF, +OIF:SP:57:131,1,"Jules Verne",48.691835,2.151674,0,0,OIF:SA:57:130,Europe/Paris,,OIF, +OIF:SP:57:1310,1,"Bois des Rames",48.706888,2.180819,0,0,OIF:SA:57:1310,Europe/Paris,,OIF, +OIF:SP:57:1311,1,"Bois des Rames",48.706951,2.180751,0,0,OIF:SA:57:1310,Europe/Paris,,OIF, +OIF:SP:57:1340,1,"Océanie 1",48.677877,2.199067,0,0,OIF:SA:57:1340,Europe/Paris,,OIF, +OIF:SP:57:1350,1,"Océanie 3",48.684205,2.207046,0,0,OIF:SA:57:1350,Europe/Paris,,OIF, +OIF:SP:57:1360,1,"Miniparc",48.678924,2.194612,0,0,OIF:SA:57:1360,Europe/Paris,,OIF, +OIF:SP:57:1370,1,"Terre de Feu",48.677343,2.195974,0,0,OIF:SA:57:1370,Europe/Paris,,OIF, +OIF:SP:57:1390,1,"Université Paris Saclay",48.712404,2.172368,0,0,OIF:SA:57:1390,Europe/Paris,,OIF, +OIF:SP:57:1391,1,"Université Paris Saclay",48.712467,2.172395,0,0,OIF:SA:57:1390,Europe/Paris,,OIF, +OIF:SP:57:140,1,"Voltaire",48.693467,2.148871,0,0,OIF:SA:57:140,Europe/Paris,,OIF, +OIF:SP:57:141,1,"Voltaire",48.693413,2.149143,0,0,OIF:SA:57:140,Europe/Paris,,OIF, +OIF:SP:57:1422,1,"Joliot Curie",48.711015,2.162226,0,0,OIF:SA:57:1422,Europe/Paris,,OIF, +OIF:SP:57:1423,1,"Joliot Curie",48.711015,2.162471,0,0,OIF:SA:57:1422,Europe/Paris,,OIF, +OIF:SP:57:1460,1,"Avenue des Ulis",48.683895,2.161544,0,0,OIF:SA:57:1460,Europe/Paris,,OIF, +OIF:SP:57:1461,1,"Avenue des Ulis",48.68394,2.161448,0,0,OIF:SA:57:1460,Europe/Paris,,OIF, +OIF:SP:57:1471,1,"Plateau de Moulon - Corbeville",48.714104,2.173177,0,0,OIF:SA:57:1471,Europe/Paris,,OIF, +OIF:SP:57:1490,1,"De Broglie",48.707906,2.175994,0,0,OIF:SA:57:1490,Europe/Paris,,OIF, +OIF:SP:57:1491,1,"De Broglie",48.707879,2.176062,0,0,OIF:SA:57:1490,Europe/Paris,,OIF, +OIF:SP:57:150,1,"Aristide Briand",48.696339,2.14609,0,0,OIF:SA:57:150,Europe/Paris,,OIF, +OIF:SP:57:151,1,"Aristide Briand",48.696339,2.146104,0,0,OIF:SA:57:150,Europe/Paris,,OIF, +OIF:SP:57:1510,1,"Moulon",48.711946,2.166148,0,0,OIF:SA:56:11889,Europe/Paris,,OIF, +OIF:SP:57:1511,1,"Moulon",48.71192,2.166379,0,0,OIF:SA:56:11889,Europe/Paris,,OIF, +OIF:SP:57:1540,1,"Orme des Merisiers",48.711841,2.149741,0,0,OIF:SA:56:11893,Europe/Paris,,OIF, +OIF:SP:57:1541,1,"Orme des Merisiers",48.711733,2.149878,0,0,OIF:SA:56:11893,Europe/Paris,,OIF, +OIF:SP:57:1550,1,"Saint-Aubin",48.714479,2.146757,0,0,OIF:SA:56:11895,Europe/Paris,,OIF, +OIF:SP:57:1551,1,"Saint-Aubin",48.714379,2.146608,0,0,OIF:SA:56:11895,Europe/Paris,,OIF, +OIF:SP:57:1560,1,"Raoul Dautry - CEA Porte Est",48.723887,2.156409,0,0,OIF:SA:57:1560,Europe/Paris,,OIF, +OIF:SP:57:1561,1,"Raoul Dautry - CEA Porte Est",48.72376,2.15626,0,0,OIF:SA:57:1560,Europe/Paris,,OIF, +OIF:SP:57:1570,1,"Christ de Saclay",48.72918,2.161717,0,0,OIF:SA:24:15235,Europe/Paris,,OIF, +OIF:SP:57:1575,1,"Christ de Saclay",48.729665,2.16181,0,0,OIF:SA:24:15235,Europe/Paris,,OIF, +OIF:SP:57:1590,1,"Mairie de Saclay",48.73095,2.173939,0,0,OIF:SA:57:1590,Europe/Paris,,OIF, +OIF:SP:57:1591,1,"Mairie de Saclay",48.730618,2.174294,0,0,OIF:SA:57:1590,Europe/Paris,,OIF, +OIF:SP:57:1600,1,"Razel",48.734812,2.165774,0,0,OIF:SA:2:1015,Europe/Paris,,OIF, +OIF:SP:57:1601,1,"Razel",48.734713,2.165598,0,0,OIF:SA:2:1015,Europe/Paris,,OIF, +OIF:SP:57:1602,1,"Razel",48.734486,2.16409,0,0,OIF:SA:2:1015,Europe/Paris,,OIF, +OIF:SP:57:1603,1,"Razel",48.73418,2.163888,0,0,OIF:SA:2:1015,Europe/Paris,,OIF, +OIF:SP:57:1610,1,"Val d'Albian - H.E.C.",48.756744,2.17239,0,0,OIF:SA:57:1610,Europe/Paris,,OIF, +OIF:SP:57:1611,1,"Val d'Albian - H.E.C.",48.756591,2.172037,0,0,OIF:SA:57:1610,Europe/Paris,,OIF, +OIF:SP:57:1620,1,"Ampère - Curie",48.756828,2.174864,0,0,OIF:SA:57:1620,Europe/Paris,,OIF, +OIF:SP:57:1630,1,"Pasteur - Curie",48.757246,2.178017,0,0,OIF:SA:2:1001,Europe/Paris,,OIF, +OIF:SP:57:1640,1,"Cepr",48.749383,2.172699,0,0,OIF:SA:57:1640,Europe/Paris,,OIF, +OIF:SP:57:1650,1,"Gymnase Charbonniers",48.755082,2.179464,0,0,OIF:SA:57:1650,Europe/Paris,,OIF, +OIF:SP:57:1680,1,"Gare de Jouy en Josas",48.765006,2.167402,0,0,OIF:SA:8739351,Europe/Paris,,OIF, +OIF:SP:57:1681,1,"Gare de Jouy en Josas",48.76519,2.163771,0,0,OIF:SA:8739351,Europe/Paris,,OIF, +OIF:SP:57:170,1,"Gare de Massy Palaiseau B",48.72407,2.258884,0,0,OIF:SA:8739357,Europe/Paris,,OIF, +OIF:SP:57:1700,1,"Petit Viltain",48.749796,2.16597,0,0,OIF:SA:57:1700,Europe/Paris,,OIF, +OIF:SP:57:1701,1,"Petit Viltain",48.750579,2.16628,0,0,OIF:SA:57:1700,Europe/Paris,,OIF, +OIF:SP:57:171,1,"Gare de Massy Palaiseau B",48.723539,2.258423,0,0,OIF:SA:8739357,Europe/Paris,,OIF, +OIF:SP:57:1710,1,"8 Mai 1945",48.695602,2.170262,0,0,OIF:SA:57:1710,Europe/Paris,,OIF, +OIF:SP:57:172,1,"Gare de Massy Palaiseau",48.724916,2.259901,0,0,OIF:SA:8739357,Europe/Paris,,OIF, +OIF:SP:57:173,1,"Gare de Massy Palaiseau",48.724844,2.260105,0,0,OIF:SA:8739357,Europe/Paris,,OIF, +OIF:SP:57:1730,1,"La Martinière",48.729576,2.175031,0,0,OIF:SA:2:1019,Europe/Paris,,OIF, +OIF:SP:57:1731,1,"La Martinière",48.728784,2.174544,0,0,OIF:SA:2:1019,Europe/Paris,,OIF, +OIF:SP:57:1734,1,"La Martinière",48.728805,2.176392,0,0,OIF:SA:2:1019,Europe/Paris,,OIF, +OIF:SP:57:180,1,"Château d'Eau",48.685754,2.209499,0,0,OIF:SA:46:11422,Europe/Paris,,OIF, +OIF:SP:57:181,1,"Château d'Eau",48.685933,2.208698,0,0,OIF:SA:46:11422,Europe/Paris,,OIF, +OIF:SP:57:1880,1,"Gare d'Igny",48.740065,2.230607,0,0,OIF:SA:8739356,Europe/Paris,,OIF, +OIF:SP:57:1881,1,"Gare d'Igny",48.740029,2.23058,0,0,OIF:SA:8739356,Europe/Paris,,OIF, +OIF:SP:57:190,1,"Y",48.684048,2.203449,0,0,OIF:SA:57:190,Europe/Paris,,OIF, +OIF:SP:57:191,1,"Y",48.6842,2.202091,0,0,OIF:SA:57:190,Europe/Paris,,OIF, +OIF:SP:57:1960,1,"Grands Champs - Favreuse",48.733106,2.202019,0,0,OIF:SA:57:1960,Europe/Paris,,OIF, +OIF:SP:57:1961,1,"Grands Champs - Favreuse",48.732944,2.201543,0,0,OIF:SA:57:1960,Europe/Paris,,OIF, +OIF:SP:57:1992,1,"Fresnel",48.716092,2.20247,0,0,OIF:SA:57:1992,Europe/Paris,,OIF, +OIF:SP:57:1993,1,"Fresnel",48.716461,2.202795,0,0,OIF:SA:57:1992,Europe/Paris,,OIF, +OIF:SP:57:20,1,"Gare de Bures sur Yvette",48.695143,2.163325,0,0,OIF:SA:8775885,Europe/Paris,,OIF, +OIF:SP:57:200,1,"Baltique",48.686874,2.205899,0,0,OIF:SA:56:11668,Europe/Paris,,OIF, +OIF:SP:57:201,1,"Baltique",48.687188,2.206088,0,0,OIF:SA:56:11668,Europe/Paris,,OIF, +OIF:SP:57:2012,1,"Ensta - Joncherettes",48.710213,2.218987,0,0,OIF:SA:56:11804,Europe/Paris,,OIF, +OIF:SP:57:2013,1,"Ensta - Joncherettes",48.710123,2.218702,0,0,OIF:SA:56:11804,Europe/Paris,,OIF, +OIF:SP:57:2022,1,"Polytechnique Lozère",48.709925,2.209848,0,0,OIF:SA:56:11740,Europe/Paris,,OIF, +OIF:SP:57:2023,1,"Polytechnique Lozère",48.709818,2.210595,0,0,OIF:SA:56:11740,Europe/Paris,,OIF, +OIF:SP:57:2032,1,"Polytechnique - Laboratoire",48.712877,2.205005,0,0,OIF:SA:56:11739,Europe/Paris,,OIF, +OIF:SP:57:2033,1,"Polytechnique - Laboratoire",48.712598,2.20487,0,0,OIF:SA:56:11739,Europe/Paris,,OIF, +OIF:SP:57:210,1,"Atlantique 1",48.683514,2.1995,0,0,OIF:SA:56:11662,Europe/Paris,,OIF, +OIF:SP:57:211,1,"Atlantique 1",48.683361,2.199392,0,0,OIF:SA:56:11662,Europe/Paris,,OIF, +OIF:SP:57:22,1,"Gare de Bures sur Yvette",48.695152,2.163325,0,0,OIF:SA:8775885,Europe/Paris,,OIF, +OIF:SP:57:220,1,"Atlantique 2",48.681428,2.199166,0,0,OIF:SA:57:220,Europe/Paris,,OIF, +OIF:SP:57:221,1,"Atlantique 2",48.68141,2.199098,0,0,OIF:SA:57:220,Europe/Paris,,OIF, +OIF:SP:57:2222,1,"Université Paris Saclay",48.7119,2.171432,0,0,OIF:SA:57:2222,Europe/Paris,,OIF, +OIF:SP:57:2223,1,"Université Paris Saclay",48.711855,2.171663,0,0,OIF:SA:57:2222,Europe/Paris,,OIF, +OIF:SP:57:2232,1,"Mare du Vivier - CEA Porte Sud",48.718755,2.151143,0,0,OIF:SA:57:2232,Europe/Paris,,OIF, +OIF:SP:57:2233,1,"Mare du Vivier - CEA Porte Sud",48.718647,2.15098,0,0,OIF:SA:57:2232,Europe/Paris,,OIF, +OIF:SP:57:23,1,"Gare de Bures sur Yvette",48.695214,2.163257,0,0,OIF:SA:8775885,Europe/Paris,,OIF, +OIF:SP:57:230,1,"Tropique",48.684376,2.198982,0,0,OIF:SA:56:11730,Europe/Paris,,OIF, +OIF:SP:57:231,1,"Tropique",48.684421,2.198914,0,0,OIF:SA:56:11730,Europe/Paris,,OIF, +OIF:SP:57:240,1,"J.M. Bruneau",48.68949,2.206395,0,0,OIF:SA:56:11857,Europe/Paris,,OIF, +OIF:SP:57:2480,1,"Place des Causeuses",48.716978,2.234879,0,0,OIF:SA:57:2480,Europe/Paris,,OIF, +OIF:SP:57:2481,1,"Place des Causeuses",48.71705,2.234851,0,0,OIF:SA:57:2480,Europe/Paris,,OIF, +OIF:SP:57:2490,1,"Gallieni - les Graviers",48.72328,2.247759,0,0,OIF:SA:57:2490,Europe/Paris,,OIF, +OIF:SP:57:250,1,"Croisement",48.68954,2.210943,0,0,OIF:SA:57:250,Europe/Paris,,OIF, +OIF:SP:57:2500,1,"Gare de Lozère",48.705864,2.212071,0,0,OIF:SA:8775882,Europe/Paris,,OIF, +OIF:SP:57:2501,1,"Gare de Lozère",48.705855,2.21184,0,0,OIF:SA:8775882,Europe/Paris,,OIF, +OIF:SP:57:2502,1,"Gare de Lozère",48.705918,2.211487,0,0,OIF:SA:8775882,Europe/Paris,,OIF, +OIF:SP:57:2520,1,"Général de Gaulle",48.699481,2.210606,0,0,OIF:SA:57:2520,Europe/Paris,,OIF, +OIF:SP:57:2521,1,"Général de Gaulle",48.699526,2.210565,0,0,OIF:SA:57:2520,Europe/Paris,,OIF, +OIF:SP:57:2530,1,"Place des Suisses",48.699935,2.214788,0,0,OIF:SA:57:2530,Europe/Paris,,OIF, +OIF:SP:57:2531,1,"Place des Suisses",48.699997,2.214733,0,0,OIF:SA:57:2530,Europe/Paris,,OIF, +OIF:SP:57:2540,1,"Les Casseaux",48.700327,2.220599,0,0,OIF:SA:57:2540,Europe/Paris,,OIF, +OIF:SP:57:2541,1,"Les Casseaux",48.700372,2.220327,0,0,OIF:SA:57:2540,Europe/Paris,,OIF, +OIF:SP:57:2550,1,"Résidence du Parc - Mairie",48.698714,2.22602,0,0,OIF:SA:57:2550,Europe/Paris,,OIF, +OIF:SP:57:2551,1,"Résidence du Parc - Mairie",48.698849,2.225803,0,0,OIF:SA:57:2550,Europe/Paris,,OIF, +OIF:SP:57:2560,1,"MJC Boby Lapointe",48.698413,2.231276,0,0,OIF:SA:57:2560,Europe/Paris,,OIF, +OIF:SP:57:2561,1,"MJC Boby Lapointe",48.698431,2.231344,0,0,OIF:SA:57:2560,Europe/Paris,,OIF, +OIF:SP:57:2570,1,"Les Foulons",48.698668,2.234629,0,0,OIF:SA:57:2570,Europe/Paris,,OIF, +OIF:SP:57:2571,1,"Les Foulons",48.698696,2.235811,0,0,OIF:SA:57:2570,Europe/Paris,,OIF, +OIF:SP:57:2580,1,"Écoles la Roche",48.700069,2.243507,0,0,OIF:SA:57:2580,Europe/Paris,,OIF, +OIF:SP:57:2581,1,"Écoles la Roche",48.699835,2.243073,0,0,OIF:SA:57:2580,Europe/Paris,,OIF, +OIF:SP:57:2590,1,"Rue du Viaduc",48.70096,2.245217,0,0,OIF:SA:57:2590,Europe/Paris,,OIF, +OIF:SP:57:2593,1,"Rue du Viaduc",48.700987,2.245611,0,0,OIF:SA:57:2590,Europe/Paris,,OIF, +OIF:SP:57:260,1,"Norvège",48.691774,2.215784,0,0,OIF:SA:56:11364,Europe/Paris,,OIF, +OIF:SP:57:2600,1,"Henri Dunant",48.702522,2.243204,0,0,OIF:SA:57:2600,Europe/Paris,,OIF, +OIF:SP:57:2601,1,"Henri Dunant",48.703699,2.242863,0,0,OIF:SA:57:2600,Europe/Paris,,OIF, +OIF:SP:57:2610,1,"Villiers le Lavoir",48.69175,2.249401,0,0,OIF:SA:57:2610,Europe/Paris,,OIF, +OIF:SP:57:2620,1,"Centre Commercial Villebon 2",48.704759,2.254092,0,0,OIF:SA:46:11338,Europe/Paris,,OIF, +OIF:SP:57:2630,1,"Gare de Palaiseau Villebon",48.707371,2.237233,0,0,OIF:SA:8775881,Europe/Paris,,OIF, +OIF:SP:57:2631,1,"Gare de Palaiseau Villebon",48.708315,2.237585,0,0,OIF:SA:8775881,Europe/Paris,,OIF, +OIF:SP:57:2634,1,"Gare de Palaiseau - Villebon - Général Leclerc",48.706554,2.238471,0,0,OIF:SA:8775881,Europe/Paris,,OIF, +OIF:SP:57:2635,1,"Gare de Palaiseau - Villebon - Général Leclerc",48.706293,2.237887,0,0,OIF:SA:8775881,Europe/Paris,,OIF, +OIF:SP:57:2640,1,"Pont des Cascades",48.696642,2.212514,0,0,OIF:SA:57:2640,Europe/Paris,,OIF, +OIF:SP:57:2651,1,"Village - Collège Idf",48.700123,2.256937,0,0,OIF:SA:57:2651,Europe/Paris,,OIF, +OIF:SP:57:2660,1,"Collège Jules Verne",48.699572,2.229916,0,0,OIF:SA:57:2660,Europe/Paris,,OIF, +OIF:SP:57:2670,1,"Villiers le Plan",48.692709,2.246575,0,0,OIF:SA:46:14938,Europe/Paris,,OIF, +OIF:SP:57:2680,1,"Millet",48.693524,2.212644,0,0,OIF:SA:57:2680,Europe/Paris,,OIF, +OIF:SP:57:2690,1,"Rond-Point de Montreux",48.69378,2.217165,0,0,OIF:SA:57:2690,Europe/Paris,,OIF, +OIF:SP:57:270,1,"Québec 25",48.691399,2.218243,0,0,OIF:SA:56:11366,Europe/Paris,,OIF, +OIF:SP:57:2700,1,"Butte Sainte-Catherine",48.693949,2.207293,0,0,OIF:SA:57:2700,Europe/Paris,,OIF, +OIF:SP:57:2710,1,"Rue de l'Avenir",48.697302,2.207597,0,0,OIF:SA:57:2710,Europe/Paris,,OIF, +OIF:SP:57:2720,1,"Les Chênes",48.705204,2.24692,0,0,OIF:SA:57:2720,Europe/Paris,,OIF, +OIF:SP:57:2730,1,"Grand Dôme",48.689621,2.229176,0,0,OIF:SA:57:2730,Europe/Paris,,OIF, +OIF:SP:57:2740,1,"Schweitzer",48.703405,2.245036,0,0,OIF:SA:57:2740,Europe/Paris,,OIF, +OIF:SP:57:280,1,"Lfb",48.684659,2.194732,0,0,OIF:SA:57:280,Europe/Paris,,OIF, +OIF:SP:57:281,1,"Lfb",48.68473,2.194243,0,0,OIF:SA:57:280,Europe/Paris,,OIF, +OIF:SP:57:2870,1,"Cosmonautes - Stalingrad",48.714767,2.258884,0,0,OIF:SA:46:10599,Europe/Paris,,OIF, +OIF:SP:57:2871,1,"Cosmonautes - Stalingrad",48.71456,2.258613,0,0,OIF:SA:46:10599,Europe/Paris,,OIF, +OIF:SP:57:2880,1,"Cosmonautes - Flaubert",48.717213,2.260483,0,0,OIF:SA:46:10597,Europe/Paris,,OIF, +OIF:SP:57:2881,1,"Cosmonautes - Flaubert",48.71697,2.260294,0,0,OIF:SA:46:10597,Europe/Paris,,OIF, +OIF:SP:57:290,1,"Parana",48.68058,2.196576,0,0,OIF:SA:57:290,Europe/Paris,,OIF, +OIF:SP:57:291,1,"Parana",48.680634,2.196386,0,0,OIF:SA:57:290,Europe/Paris,,OIF, +OIF:SP:57:30,1,"Gardey",48.69155,2.15902,0,0,OIF:SA:24:8784,Europe/Paris,,OIF, +OIF:SP:57:300,1,"Pacifique",48.684172,2.19396,0,0,OIF:SA:57:300,Europe/Paris,,OIF, +OIF:SP:57:301,1,"Pacifique",48.684217,2.194028,0,0,OIF:SA:57:300,Europe/Paris,,OIF, +OIF:SP:57:31,1,"Gardey",48.691577,2.158992,0,0,OIF:SA:24:8784,Europe/Paris,,OIF, +OIF:SP:57:310,1,"Sterne",48.689489,2.214391,0,0,OIF:SA:57:310,Europe/Paris,,OIF, +OIF:SP:57:3190,1,"Meudon-la-Forêt",48.783761,2.224887,0,0,OIF:SA:59868,Europe/Paris,,OIF, +OIF:SP:57:320,1,"Québec 5",48.688162,2.208882,0,0,OIF:SA:57:320,Europe/Paris,,OIF, +OIF:SP:57:330,1,"Laponie",48.688524,2.202867,0,0,OIF:SA:57:330,Europe/Paris,,OIF, +OIF:SP:57:331,1,"Laponie",48.688578,2.202745,0,0,OIF:SA:57:330,Europe/Paris,,OIF, +OIF:SP:57:3320,1,"Groupe Scolaire J. Macé",48.704225,2.217616,0,0,OIF:SA:57:3320,Europe/Paris,,OIF, +OIF:SP:57:3321,1,"Groupe Scolaire J. Macé",48.704207,2.217697,0,0,OIF:SA:57:3320,Europe/Paris,,OIF, +OIF:SP:57:3330,1,"Bois de Fourcherolles",48.703657,2.225385,0,0,OIF:SA:57:3330,Europe/Paris,,OIF, +OIF:SP:57:3331,1,"Bois de Fourcherolles",48.703676,2.225874,0,0,OIF:SA:57:3330,Europe/Paris,,OIF, +OIF:SP:57:3340,1,"Marceau - les Chandeliers",48.703894,2.229119,0,0,OIF:SA:57:3340,Europe/Paris,,OIF, +OIF:SP:57:3341,1,"Marceau - les Chandeliers",48.703895,2.229961,0,0,OIF:SA:57:3340,Europe/Paris,,OIF, +OIF:SP:57:3350,1,"Collège Charles Péguy",48.705177,2.23573,0,0,OIF:SA:57:3350,Europe/Paris,,OIF, +OIF:SP:57:3351,1,"Collège Charles Péguy",48.705132,2.235757,0,0,OIF:SA:57:3350,Europe/Paris,,OIF, +OIF:SP:57:3360,1,"Place de la Victoire",48.711296,2.244723,0,0,OIF:SA:57:3360,Europe/Paris,,OIF, +OIF:SP:57:3361,1,"Place de la Victoire",48.711251,2.244574,0,0,OIF:SA:57:3360,Europe/Paris,,OIF, +OIF:SP:57:3380,1,"Ruchères",48.731564,2.232581,0,0,OIF:SA:57:3380,Europe/Paris,,OIF, +OIF:SP:57:3381,1,"Ruchères",48.731385,2.233505,0,0,OIF:SA:57:3380,Europe/Paris,,OIF, +OIF:SP:57:3390,1,"4 Septembre",48.735542,2.228659,0,0,OIF:SA:57:3390,Europe/Paris,,OIF, +OIF:SP:57:3391,1,"4 Septembre",48.735327,2.228605,0,0,OIF:SA:57:3390,Europe/Paris,,OIF, +OIF:SP:57:3400,1,"Résidence de l'Yvette",48.69887,2.19506,0,0,OIF:SA:57:3400,Europe/Paris,,OIF, +OIF:SP:57:3410,1,"Lycée Blaise Pascal",48.696811,2.187122,0,0,OIF:SA:57:3410,Europe/Paris,,OIF, +OIF:SP:57:3420,1,"Stade de Rugby",48.702087,2.209948,0,0,OIF:SA:57:3420,Europe/Paris,,OIF, +OIF:SP:57:3421,1,"Stade de Rugby",48.702051,2.209894,0,0,OIF:SA:57:3420,Europe/Paris,,OIF, +OIF:SP:57:3430,1,"Pierre Longue",48.698291,2.24605,0,0,OIF:SA:57:3430,Europe/Paris,,OIF, +OIF:SP:57:3431,1,"Pierre Longue",48.698291,2.246131,0,0,OIF:SA:57:3430,Europe/Paris,,OIF, +OIF:SP:57:350,1,"Canada",48.687763,2.19714,0,0,OIF:SA:57:350,Europe/Paris,,OIF, +OIF:SP:57:351,1,"Canada",48.687321,2.196218,0,0,OIF:SA:57:350,Europe/Paris,,OIF, +OIF:SP:57:360,1,"Canada 1",48.686042,2.194131,0,0,OIF:SA:57:360,Europe/Paris,,OIF, +OIF:SP:57:361,1,"Canada 1",48.686312,2.194443,0,0,OIF:SA:57:360,Europe/Paris,,OIF, +OIF:SP:57:370,1,"Rond-Point de Mondétour",48.684345,2.187918,0,0,OIF:SA:56:10578,Europe/Paris,,OIF, +OIF:SP:57:371,1,"Rond-Point de Mondétour",48.684478,2.186452,0,0,OIF:SA:56:10578,Europe/Paris,,OIF, +OIF:SP:57:380,1,"Ferme",48.684726,2.184076,0,0,OIF:SA:57:380,Europe/Paris,,OIF, +OIF:SP:57:381,1,"Ferme",48.68478,2.184103,0,0,OIF:SA:57:380,Europe/Paris,,OIF, +OIF:SP:57:390,1,"Bathes",48.685545,2.177991,0,0,OIF:SA:57:390,Europe/Paris,,OIF, +OIF:SP:57:391,1,"Bathes",48.685366,2.178304,0,0,OIF:SA:57:390,Europe/Paris,,OIF, +OIF:SP:57:40,1,"Fauvettes",48.687478,2.153128,0,0,OIF:SA:24:8799,Europe/Paris,,OIF, +OIF:SP:57:41,1,"Fauvettes",48.687496,2.15306,0,0,OIF:SA:24:8799,Europe/Paris,,OIF, +OIF:SP:57:410,1,"Barceleau",48.686541,2.176196,0,0,OIF:SA:57:410,Europe/Paris,,OIF, +OIF:SP:57:411,1,"Barceleau",48.686621,2.175789,0,0,OIF:SA:57:410,Europe/Paris,,OIF, +OIF:SP:57:420,1,"Mairie des Ulis",48.682443,2.170548,0,0,OIF:SA:56:11709,Europe/Paris,,OIF, +OIF:SP:57:421,1,"Mairie des Ulis",48.682533,2.170684,0,0,OIF:SA:56:11709,Europe/Paris,,OIF, +OIF:SP:57:430,1,"Champagne",48.686806,2.172761,0,0,OIF:SA:57:430,Europe/Paris,,OIF, +OIF:SP:57:431,1,"Champagne",48.686716,2.172829,0,0,OIF:SA:57:430,Europe/Paris,,OIF, +OIF:SP:57:440,1,"Île de France",48.685948,2.16994,0,0,OIF:SA:57:440,Europe/Paris,,OIF, +OIF:SP:57:441,1,"Île de France",48.68619,2.170007,0,0,OIF:SA:57:440,Europe/Paris,,OIF, +OIF:SP:57:450,1,"Passerelle Automne - Centre Ville",48.683619,2.169608,0,0,OIF:SA:57:450,Europe/Paris,,OIF, +OIF:SP:57:460,1,"Hautes Plaines",48.682636,2.167521,0,0,OIF:SA:57:460,Europe/Paris,,OIF, +OIF:SP:57:461,1,"Hautes Plaines",48.68277,2.166733,0,0,OIF:SA:57:460,Europe/Paris,,OIF, +OIF:SP:57:470,1,"Thomas",48.679681,2.162929,0,0,OIF:SA:46:11703,Europe/Paris,,OIF, +OIF:SP:57:471,1,"Thomas",48.679573,2.162739,0,0,OIF:SA:46:11703,Europe/Paris,,OIF, +OIF:SP:57:480,1,"Essouriau",48.676817,2.165219,0,0,OIF:SA:24:11707,Europe/Paris,,OIF, +OIF:SP:57:481,1,"Essouriau",48.676702,2.165952,0,0,OIF:SA:24:11707,Europe/Paris,,OIF, +OIF:SP:57:490,1,"Centre Commercial Ulis 2 - Piscine",48.678134,2.168404,0,0,OIF:SA:24:11678,Europe/Paris,,OIF, +OIF:SP:57:491,1,"Centre Commercial Ulis 2 - Piscine",48.677919,2.168541,0,0,OIF:SA:24:11678,Europe/Paris,,OIF, +OIF:SP:57:494,1,"Centre Commercial Ulis 2 - Piscine",48.678017,2.16835,0,0,OIF:SA:24:11678,Europe/Paris,,OIF, +OIF:SP:57:495,1,"Centre Commercial Ulis 2 - Piscine",48.677892,2.168703,0,0,OIF:SA:24:11678,Europe/Paris,,OIF, +OIF:SP:57:50,1,"Baratage",48.68564,2.150664,0,0,OIF:SA:24:15207,Europe/Paris,,OIF, +OIF:SP:57:51,1,"Baratage",48.685748,2.150745,0,0,OIF:SA:24:15207,Europe/Paris,,OIF, +OIF:SP:57:530,1,"Gare de Bures sur Yvette - Université",48.698864,2.163516,0,0,OIF:SA:8775885,Europe/Paris,,OIF, +OIF:SP:57:531,1,"Gare de Bures sur Yvette - Université",48.698739,2.164033,0,0,OIF:SA:8775885,Europe/Paris,,OIF, +OIF:SP:57:550,1,"Beaumontel",48.685619,2.16014,0,0,OIF:SA:57:550,Europe/Paris,,OIF, +OIF:SP:57:551,1,"Beaumontel",48.685583,2.160058,0,0,OIF:SA:57:550,Europe/Paris,,OIF, +OIF:SP:57:570,1,"Bourgogne",48.684061,2.177385,0,0,OIF:SA:57:570,Europe/Paris,,OIF, +OIF:SP:57:571,1,"Bourgogne",48.683393,2.175378,0,0,OIF:SA:57:570,Europe/Paris,,OIF, +OIF:SP:57:580,1,"Bois Persan",48.688574,2.199392,0,0,OIF:SA:57:580,Europe/Paris,,OIF, +OIF:SP:57:581,1,"Bois Persan",48.688582,2.198849,0,0,OIF:SA:57:580,Europe/Paris,,OIF, +OIF:SP:57:582,1,"Bois Persan",48.689023,2.199228,0,0,OIF:SA:57:580,Europe/Paris,,OIF, +OIF:SP:57:60,1,"La Justice",48.68338,2.14774,0,0,OIF:SA:57:60,Europe/Paris,,OIF, +OIF:SP:57:600,1,"Gare d'Orsay Ville",48.697226,2.181635,0,0,OIF:SA:8775884,Europe/Paris,,OIF, +OIF:SP:57:601,1,"Gare d'Orsay Ville",48.697416,2.182097,0,0,OIF:SA:8775884,Europe/Paris,,OIF, +OIF:SP:57:602,1,"Gare d'Orsay Ville",48.697226,2.181758,0,0,OIF:SA:8775884,Europe/Paris,,OIF, +OIF:SP:57:603,1,"Gare d'Orsay Ville",48.697254,2.181853,0,0,OIF:SA:8775884,Europe/Paris,,OIF, +OIF:SP:57:61,1,"La Justice",48.683388,2.147686,0,0,OIF:SA:57:60,Europe/Paris,,OIF, +OIF:SP:57:610,1,"Joffre",48.692596,2.180522,0,0,OIF:SA:57:610,Europe/Paris,,OIF, +OIF:SP:57:61500,1,"IUT - Maison de l'Ingénieur",48.70942,2.171861,0,0,OIF:SA:57:61500,Europe/Paris,,OIF, +OIF:SP:57:61501,1,"IUT - Maison de l'Ingénieur",48.709222,2.171902,0,0,OIF:SA:57:61500,Europe/Paris,,OIF, +OIF:SP:57:620,1,"Mairie d'Orsay",48.698231,2.187186,0,0,OIF:SA:57:620,Europe/Paris,,OIF, +OIF:SP:57:621,1,"Mairie d'Orsay",48.698771,2.187714,0,0,OIF:SA:57:620,Europe/Paris,,OIF, +OIF:SP:57:630,1,"République",48.696502,2.184788,0,0,OIF:SA:46:14568,Europe/Paris,,OIF, +OIF:SP:57:631,1,"République",48.696079,2.184205,0,0,OIF:SA:46:14568,Europe/Paris,,OIF, +OIF:SP:57:640,1,"Escalier des Ulis",48.6899,2.18144,0,0,OIF:SA:57:640,Europe/Paris,,OIF, +OIF:SP:57:641,1,"Escalier des Ulis",48.689667,2.181454,0,0,OIF:SA:57:640,Europe/Paris,,OIF, +OIF:SP:57:650,1,"Montlhéry",48.685387,2.187834,0,0,OIF:SA:57:650,Europe/Paris,,OIF, +OIF:SP:57:651,1,"Montlhéry",48.685405,2.187739,0,0,OIF:SA:57:650,Europe/Paris,,OIF, +OIF:SP:57:660,1,"Les Amonts",48.683395,2.163717,0,0,OIF:SA:57:660,Europe/Paris,,OIF, +OIF:SP:57:661,1,"Les Amonts",48.683502,2.163337,0,0,OIF:SA:57:660,Europe/Paris,,OIF, +OIF:SP:57:670,1,"Montjay",48.683667,2.159142,0,0,OIF:SA:57:670,Europe/Paris,,OIF, +OIF:SP:57:680,1,"Ihes",48.69405,2.166031,0,0,OIF:SA:57:680,Europe/Paris,,OIF, +OIF:SP:57:681,1,"Ihes",48.693583,2.16644,0,0,OIF:SA:57:680,Europe/Paris,,OIF, +OIF:SP:57:690,1,"Tournemire",48.687051,2.16828,0,0,OIF:SA:57:690,Europe/Paris,,OIF, +OIF:SP:57:691,1,"Tournemire",48.68704,2.166882,0,0,OIF:SA:57:690,Europe/Paris,,OIF, +OIF:SP:57:70,1,"Rue Neuve",48.682633,2.142123,0,0,OIF:SA:57:70,Europe/Paris,,OIF, +OIF:SP:57:700,1,"Passerelle Automne - Centre Ville",48.684159,2.169769,0,0,OIF:SA:57:450,Europe/Paris,,OIF, +OIF:SP:57:71,1,"Rue Neuve",48.682633,2.142163,0,0,OIF:SA:57:70,Europe/Paris,,OIF, +OIF:SP:57:710,1,"Grand Mesnil",48.695508,2.173833,0,0,OIF:SA:57:710,Europe/Paris,,OIF, +OIF:SP:57:711,1,"Grand Mesnil",48.695228,2.172884,0,0,OIF:SA:57:710,Europe/Paris,,OIF, +OIF:SP:57:730,1,"Stade",48.681773,2.173469,0,0,OIF:SA:57:730,Europe/Paris,,OIF, +OIF:SP:57:731,1,"Stade",48.681234,2.173579,0,0,OIF:SA:57:730,Europe/Paris,,OIF, +OIF:SP:57:740,1,"Cévennes",48.678737,2.174863,0,0,OIF:SA:57:740,Europe/Paris,,OIF, +OIF:SP:57:741,1,"Cévennes",48.678637,2.174687,0,0,OIF:SA:57:740,Europe/Paris,,OIF, +OIF:SP:57:750,1,"Centre Commercial Ulis 2 - Aubrac",48.676714,2.174761,0,0,OIF:SA:57:750,Europe/Paris,,OIF, +OIF:SP:57:760,1,"Cimetière de Bures",48.690897,2.161126,0,0,OIF:SA:57:760,Europe/Paris,,OIF, +OIF:SP:57:761,1,"Cimetière de Bures",48.690906,2.161031,0,0,OIF:SA:57:760,Europe/Paris,,OIF, +OIF:SP:57:770,1,"École de Mondétour",48.685178,2.185893,0,0,OIF:SA:57:770,Europe/Paris,,OIF, +OIF:SP:57:780,1,"Bleuets",48.681141,2.185091,0,0,OIF:SA:57:780,Europe/Paris,,OIF, +OIF:SP:57:790,1,"Cottage",48.678956,2.184405,0,0,OIF:SA:57:790,Europe/Paris,,OIF, +OIF:SP:57:80,1,"Victor Hugo",48.684479,2.143908,0,0,OIF:SA:57:80,Europe/Paris,,OIF, +OIF:SP:57:800,1,"Coquelicots",48.677328,2.183921,0,0,OIF:SA:57:800,Europe/Paris,,OIF, +OIF:SP:57:8000,1,"Gare de Massy Palaiseau C",48.726073,2.257291,0,0,OIF:SA:8739357,Europe/Paris,,OIF, +OIF:SP:57:8001,1,"Gare de Massy Palaiseau C",48.725767,2.256775,0,0,OIF:SA:8739357,Europe/Paris,,OIF, +OIF:SP:57:8030,1,"Lycée Fustel de Coulanges",48.732424,2.265489,0,0,OIF:SA:57:8030,Europe/Paris,,OIF, +OIF:SP:57:8040,1,"Président Salvador Allende",48.73028,2.257475,0,0,OIF:SA:24:15077,Europe/Paris,,OIF, +OIF:SP:57:8041,1,"Président Salvador Allende",48.730199,2.25753,0,0,OIF:SA:24:15077,Europe/Paris,,OIF, +OIF:SP:57:8050,1,"Lycée de Vilgénis",48.731221,2.253791,0,0,OIF:SA:57:8050,Europe/Paris,,OIF, +OIF:SP:57:8051,1,"Lycée de Vilgénis",48.731104,2.253669,0,0,OIF:SA:57:8050,Europe/Paris,,OIF, +OIF:SP:57:8060,1,"Parc de Vilgénis",48.731205,2.243465,0,0,OIF:SA:57:8060,Europe/Paris,,OIF, +OIF:SP:57:8061,1,"Parc de Vilgénis",48.731169,2.243492,0,0,OIF:SA:57:8060,Europe/Paris,,OIF, +OIF:SP:57:8070,1,"Rond-Point du Pileu",48.730196,2.24113,0,0,OIF:SA:57:8070,Europe/Paris,,OIF, +OIF:SP:57:81,1,"Victor Hugo",48.68465,2.143975,0,0,OIF:SA:57:80,Europe/Paris,,OIF, +OIF:SP:57:810,1,"Square",48.676992,2.181044,0,0,OIF:SA:57:810,Europe/Paris,,OIF, +OIF:SP:57:8101,1,"Marché du Pileu",48.727531,2.235632,0,0,OIF:SA:24:15083,Europe/Paris,,OIF, +OIF:SP:57:8102,1,"Marché du Pileu",48.727341,2.234709,0,0,OIF:SA:24:15083,Europe/Paris,,OIF, +OIF:SP:57:8111,1,"La Vieille Vigne",48.728808,2.236988,0,0,OIF:SA:57:8111,Europe/Paris,,OIF, +OIF:SP:57:8121,1,"Rue du Pileu",48.730041,2.238684,0,0,OIF:SA:57:8121,Europe/Paris,,OIF, +OIF:SP:57:8150,1,"Igny Entreprises",48.730572,2.238643,0,0,OIF:SA:57:8150,Europe/Paris,,OIF, +OIF:SP:57:8151,1,"Igny Entreprises",48.730607,2.238493,0,0,OIF:SA:57:8150,Europe/Paris,,OIF, +OIF:SP:57:8161,1,"Gymnase",48.732397,2.22944,0,0,OIF:SA:57:8161,Europe/Paris,,OIF, +OIF:SP:57:8162,1,"Gymnase",48.732532,2.229087,0,0,OIF:SA:57:8161,Europe/Paris,,OIF, +OIF:SP:57:8170,1,"Jules Ferry / République",48.732149,2.223979,0,0,OIF:SA:57:8170,Europe/Paris,,OIF, +OIF:SP:57:8171,1,"Jules Ferry / République",48.732123,2.22402,0,0,OIF:SA:57:8170,Europe/Paris,,OIF, +OIF:SP:57:8180,1,"La Ferme",48.733477,2.221299,0,0,OIF:SA:57:8180,Europe/Paris,,OIF, +OIF:SP:57:8181,1,"La Ferme",48.733153,2.221164,0,0,OIF:SA:57:8180,Europe/Paris,,OIF, +OIF:SP:57:8190,1,"Albert Sarraut",48.736983,2.221767,0,0,OIF:SA:57:8190,Europe/Paris,,OIF, +OIF:SP:57:820,1,"Pinson",48.677844,2.179372,0,0,OIF:SA:57:820,Europe/Paris,,OIF, +OIF:SP:57:8200,1,"Bouton d'Or",48.736377,2.217624,0,0,OIF:SA:57:8200,Europe/Paris,,OIF, +OIF:SP:57:8202,1,"Bouton d'Or",48.736035,2.217013,0,0,OIF:SA:57:8200,Europe/Paris,,OIF, +OIF:SP:57:8210,1,"Les Castors",48.735681,2.21378,0,0,OIF:SA:57:8210,Europe/Paris,,OIF, +OIF:SP:57:8211,1,"Les Castors",48.735563,2.213182,0,0,OIF:SA:57:8210,Europe/Paris,,OIF, +OIF:SP:57:8220,1,"Mairie de Vauhallan",48.734035,2.204761,0,0,OIF:SA:57:8220,Europe/Paris,,OIF, +OIF:SP:57:8221,1,"Mairie de Vauhallan",48.734008,2.204843,0,0,OIF:SA:57:8220,Europe/Paris,,OIF, +OIF:SP:57:8240,1,"Mairie d'Igny",48.741329,2.226867,0,0,OIF:SA:57:8240,Europe/Paris,,OIF, +OIF:SP:57:8241,1,"Mairie d'Igny",48.741194,2.226908,0,0,OIF:SA:57:8240,Europe/Paris,,OIF, +OIF:SP:57:8250,1,"Docteur Schweitzer",48.746106,2.221556,0,0,OIF:SA:57:8250,Europe/Paris,,OIF, +OIF:SP:57:8260,1,"Église",48.742118,2.224936,0,0,OIF:SA:57:8260,Europe/Paris,,OIF, +OIF:SP:57:8270,1,"Quatre Routes",48.750743,2.212208,0,0,OIF:SA:57:8270,Europe/Paris,,OIF, +OIF:SP:57:8271,1,"Quatre Routes",48.750689,2.211923,0,0,OIF:SA:57:8270,Europe/Paris,,OIF, +OIF:SP:57:8280,1,"Gare de Bièvres / Petit Bièvres",48.752148,2.214447,0,0,OIF:SA:8739354,Europe/Paris,,OIF, +OIF:SP:57:8281,1,"Gare de Bièvres / Petit Bièvres",48.752121,2.214366,0,0,OIF:SA:8739354,Europe/Paris,,OIF, +OIF:SP:57:8290,1,"Mairie Bièvres",48.755512,2.216601,0,0,OIF:SA:57:8290,Europe/Paris,,OIF, +OIF:SP:57:8291,1,"Mairie Bièvres",48.755368,2.216221,0,0,OIF:SA:57:8290,Europe/Paris,,OIF, +OIF:SP:57:830,1,"Estérel",48.67904,2.179681,0,0,OIF:SA:57:830,Europe/Paris,,OIF, +OIF:SP:57:840,1,"Cure d'Air",48.68101,2.180693,0,0,OIF:SA:57:840,Europe/Paris,,OIF, +OIF:SP:57:8410,1,"Cholette",48.762009,2.224199,0,0,OIF:SA:57:8410,Europe/Paris,,OIF, +OIF:SP:57:8411,1,"Cholette",48.761901,2.223873,0,0,OIF:SA:57:8410,Europe/Paris,,OIF, +OIF:SP:57:8420,1,"Abbaye",48.764474,2.227308,0,0,OIF:SA:57:8420,Europe/Paris,,OIF, +OIF:SP:57:8421,1,"Abbaye",48.764411,2.227185,0,0,OIF:SA:57:8420,Europe/Paris,,OIF, +OIF:SP:57:8430,1,"Porte Jaune",48.766121,2.229099,0,0,OIF:SA:57:8430,Europe/Paris,,OIF, +OIF:SP:57:8431,1,"Porte Jaune",48.76631,2.229207,0,0,OIF:SA:57:8430,Europe/Paris,,OIF, +OIF:SP:57:8440,1,"Petit Clamart",48.77786,2.229632,0,0,OIF:SA:57:8440,Europe/Paris,,OIF, +OIF:SP:57:8441,1,"Petit Clamart",48.777788,2.229619,0,0,OIF:SA:57:8440,Europe/Paris,,OIF, +OIF:SP:57:8450,1,"Sygrie",48.782036,2.226332,0,0,OIF:SA:57:8450,Europe/Paris,,OIF, +OIF:SP:57:8451,1,"Sygrie",48.781776,2.226428,0,0,OIF:SA:57:8450,Europe/Paris,,OIF, +OIF:SP:57:8460,1,"De Lattre de Tassigny",48.785594,2.224284,0,0,OIF:SA:57:8460,Europe/Paris,,OIF, +OIF:SP:57:850,1,"Marché de Mondétour",48.682676,2.183091,0,0,OIF:SA:57:850,Europe/Paris,,OIF, +OIF:SP:57:8500,1,"Collège Émile Zola",48.738258,2.220459,0,0,OIF:SA:57:8500,Europe/Paris,,OIF, +OIF:SP:57:8540,1,"Cottage",48.758031,2.219341,0,0,OIF:SA:57:8540,Europe/Paris,,OIF, +OIF:SP:57:8541,1,"Cottage",48.757626,2.218961,0,0,OIF:SA:57:8540,Europe/Paris,,OIF, +OIF:SP:57:860,1,"Bellevue - Montjay",48.685777,2.18357,0,0,OIF:SA:57:860,Europe/Paris,,OIF, +OIF:SP:57:862,1,"Bellevue - Montjay",48.685004,2.183654,0,0,OIF:SA:57:860,Europe/Paris,,OIF, +OIF:SP:57:8670,1,"Bellevue - Kennedy",48.738213,2.229836,0,0,OIF:SA:57:8670,Europe/Paris,,OIF, +OIF:SP:57:8671,1,"Bellevue - Kennedy",48.738141,2.229863,0,0,OIF:SA:57:8670,Europe/Paris,,OIF, +OIF:SP:57:8680,1,"Abbaye - Cimetière",48.73238,2.195852,0,0,OIF:SA:57:8680,Europe/Paris,,OIF, +OIF:SP:57:8681,1,"Abbaye - Cimetière",48.732542,2.196245,0,0,OIF:SA:57:8680,Europe/Paris,,OIF, +OIF:SP:57:870,1,"Bois du Roi",48.686404,2.18198,0,0,OIF:SA:57:870,Europe/Paris,,OIF, +OIF:SP:57:871,1,"Bois du Roi",48.686369,2.182102,0,0,OIF:SA:57:870,Europe/Paris,,OIF, +OIF:SP:57:880,1,"Chênes",48.687894,2.180143,0,0,OIF:SA:57:880,Europe/Paris,,OIF, +OIF:SP:57:881,1,"Chênes",48.688056,2.179871,0,0,OIF:SA:57:880,Europe/Paris,,OIF, +OIF:SP:57:890,1,"Boissière",48.689609,2.17859,0,0,OIF:SA:57:890,Europe/Paris,,OIF, +OIF:SP:57:891,1,"Boissière",48.689806,2.178304,0,0,OIF:SA:57:890,Europe/Paris,,OIF, +OIF:SP:57:90,1,"Source",48.686186,2.143128,0,0,OIF:SA:57:90,Europe/Paris,,OIF, +OIF:SP:57:900,1,"Acacias",48.691435,2.179833,0,0,OIF:SA:57:900,Europe/Paris,,OIF, +OIF:SP:57:901,1,"Acacias",48.691561,2.179616,0,0,OIF:SA:57:900,Europe/Paris,,OIF, +OIF:SP:57:9010,1,"Clos du Pileu",48.724776,2.230353,0,0,OIF:SA:57:9010,Europe/Paris,,OIF, +OIF:SP:57:9011,1,"Clos du Pileu",48.725656,2.229699,0,0,OIF:SA:57:9010,Europe/Paris,,OIF, +OIF:SP:57:9020,1,"Estienne d'Orves",48.724787,2.223275,0,0,OIF:SA:57:9020,Europe/Paris,,OIF, +OIF:SP:57:9021,1,"Estienne d'Orves",48.724904,2.223383,0,0,OIF:SA:57:9020,Europe/Paris,,OIF, +OIF:SP:57:9030,1,"Rond-Point Camille Claudel",48.71844,2.231982,0,0,OIF:SA:57:9030,Europe/Paris,,OIF, +OIF:SP:57:9040,1,"Jardin de la Hunière",48.71476,2.237219,0,0,OIF:SA:57:9040,Europe/Paris,,OIF, +OIF:SP:57:9041,1,"Jardin de la Hunière",48.715183,2.237612,0,0,OIF:SA:57:9040,Europe/Paris,,OIF, +OIF:SP:57:9050,1,"La Hunière - Onera",48.712023,2.232253,0,0,OIF:SA:57:9050,Europe/Paris,,OIF, +OIF:SP:57:9051,1,"La Hunière - Onera",48.711799,2.232933,0,0,OIF:SA:57:9050,Europe/Paris,,OIF, +OIF:SP:57:9060,1,"La Hunière - Joncherettes",48.709945,2.230329,0,0,OIF:SA:57:9060,Europe/Paris,,OIF, +OIF:SP:57:9061,1,"La Hunière - Joncherettes",48.709801,2.230397,0,0,OIF:SA:57:9060,Europe/Paris,,OIF, +OIF:SP:57:9070,1,"La Hunière - Concorde",48.709401,2.225291,0,0,OIF:SA:57:9070,Europe/Paris,,OIF, +OIF:SP:57:9071,1,"La Hunière - Concorde",48.709391,2.224802,0,0,OIF:SA:57:9070,Europe/Paris,,OIF, +OIF:SP:57:9080,1,"Parc d'Ardenay",48.717342,2.240026,0,0,OIF:SA:57:9080,Europe/Paris,,OIF, +OIF:SP:57:9081,1,"Parc d'Ardenay",48.717486,2.240216,0,0,OIF:SA:57:9080,Europe/Paris,,OIF, +OIF:SP:57:9090,1,"La Pie Voleuse - Église",48.713315,2.240713,0,0,OIF:SA:57:9090,Europe/Paris,,OIF, +OIF:SP:57:9091,1,"La Pie Voleuse - Église",48.713883,2.242464,0,0,OIF:SA:57:9090,Europe/Paris,,OIF, +OIF:SP:57:91,1,"Source",48.686186,2.143141,0,0,OIF:SA:57:90,Europe/Paris,,OIF, +OIF:SP:57:910,1,"Curie",48.691665,2.176887,0,0,OIF:SA:57:910,Europe/Paris,,OIF, +OIF:SP:57:911,1,"Curie",48.691611,2.177077,0,0,OIF:SA:57:910,Europe/Paris,,OIF, +OIF:SP:57:9120,1,"Les Larris - Maurice Berteaux",48.719106,2.242998,0,0,OIF:SA:57:9120,Europe/Paris,,OIF, +OIF:SP:57:9121,1,"Les Larris - Maurice Berteaux",48.718692,2.242034,0,0,OIF:SA:57:9120,Europe/Paris,,OIF, +OIF:SP:57:9140,1,"Collège César Franck",48.717899,2.240039,0,0,OIF:SA:57:9140,Europe/Paris,,OIF, +OIF:SP:57:9150,1,"Lycée Camille Claudel",48.718955,2.234698,0,0,OIF:SA:57:9150,Europe/Paris,,OIF, +OIF:SP:57:9160,1,"Quartier de la Mesure",48.720709,2.246568,0,0,OIF:SA:57:9160,Europe/Paris,,OIF, +OIF:SP:57:9161,1,"Quartier de la Mesure",48.720708,2.246133,0,0,OIF:SA:57:9160,Europe/Paris,,OIF, +OIF:SP:57:9170,1,"Palaiseau RER - Avenue des Alliés",48.719353,2.249165,0,0,OIF:SA:8775880,Europe/Paris,,OIF, +OIF:SP:57:9171,1,"Palaiseau RER - Avenue des Alliés",48.719416,2.249219,0,0,OIF:SA:8775880,Europe/Paris,,OIF, +OIF:SP:57:9180,1,"La Butte à la Reine",48.711634,2.239439,0,0,OIF:SA:57:9180,Europe/Paris,,OIF, +OIF:SP:57:9181,1,"La Butte à la Reine",48.71185,2.239873,0,0,OIF:SA:57:9180,Europe/Paris,,OIF, +OIF:SP:57:920,1,"Avenue de Bures",48.693435,2.176039,0,0,OIF:SA:57:920,Europe/Paris,,OIF, +OIF:SP:57:921,1,"Avenue de Bures",48.693318,2.176012,0,0,OIF:SA:57:920,Europe/Paris,,OIF, +OIF:SP:57:9210,1,"Parc Chabrol",48.7101,2.24353,0,0,OIF:SA:57:9210,Europe/Paris,,OIF, +OIF:SP:57:9211,1,"Parc Chabrol",48.709353,2.242526,0,0,OIF:SA:57:9210,Europe/Paris,,OIF, +OIF:SP:57:9220,1,"Mairie de Palaiseau",48.712987,2.246269,0,0,OIF:SA:57:9220,Europe/Paris,,OIF, +OIF:SP:57:9221,1,"Mairie de Palaiseau",48.713176,2.246472,0,0,OIF:SA:57:9220,Europe/Paris,,OIF, +OIF:SP:57:9230,1,"Gare de Palaiseau - Edouard Branly",48.716539,2.248504,0,0,OIF:SA:8775880,Europe/Paris,,OIF, +OIF:SP:57:9231,1,"Gare de Palaiseau - Edouard Branly",48.716818,2.248612,0,0,OIF:SA:8775880,Europe/Paris,,OIF, +OIF:SP:57:9240,1,"Groupe Scolaire Vaillant",48.716525,2.253475,0,0,OIF:SA:57:9240,Europe/Paris,,OIF, +OIF:SP:57:9241,1,"Groupe Scolaire Vaillant",48.716696,2.253203,0,0,OIF:SA:57:9240,Europe/Paris,,OIF, +OIF:SP:57:9290,1,"Petits Champs Ronds",48.721104,2.259377,0,0,OIF:SA:57:9290,Europe/Paris,,OIF, +OIF:SP:57:930,1,"Dimancherie",48.695098,2.176414,0,0,OIF:SA:57:930,Europe/Paris,,OIF, +OIF:SP:57:931,1,"Dimancherie",48.694981,2.17636,0,0,OIF:SA:57:930,Europe/Paris,,OIF, +OIF:SP:57:9320,1,"Barbusse - Baudot",48.720378,2.262163,0,0,OIF:SA:57:9320,Europe/Paris,,OIF, +OIF:SP:57:9321,1,"Barbusse - Baudot",48.720521,2.261796,0,0,OIF:SA:57:9320,Europe/Paris,,OIF, +OIF:SP:57:9340,1,"Fourcherolles",48.703437,2.220863,0,0,OIF:SA:57:9340,Europe/Paris,,OIF, +OIF:SP:57:9341,1,"Fourcherolles",48.703482,2.220673,0,0,OIF:SA:57:9340,Europe/Paris,,OIF, +OIF:SP:57:940,1,"Chartres",48.695569,2.179359,0,0,OIF:SA:57:940,Europe/Paris,,OIF, +OIF:SP:57:9460,1,"Vélizy 2",48.785292,2.218844,0,0,OIF:SA:59870,Europe/Paris,,OIF, +OIF:SP:57:9470,1,"Raymond Aron",48.728889,2.260059,0,0,OIF:SA:57:9470,Europe/Paris,,OIF, +OIF:SP:57:9471,1,"Raymond Aron",48.728852,2.259814,0,0,OIF:SA:57:9470,Europe/Paris,,OIF, +OIF:SP:57:960,1,"Conservatoire d'Orsay",48.696509,2.190273,0,0,OIF:SA:57:960,Europe/Paris,,OIF, +OIF:SP:57:980,1,"Bois de la Grille Noire",48.696354,2.195325,0,0,OIF:SA:57:980,Europe/Paris,,OIF, +OIF:SP:57:990,1,"Parrat",48.696745,2.199791,0,0,OIF:SA:57:990,Europe/Paris,,OIF, +OIF:SP:58:101,1,"Gare de Chanteloup les Vignes",48.970574,2.027782,0,0,OIF:SA:8738147,Europe/Paris,,OIF, +OIF:SP:58:102,1,"Sécurité Sociale",48.971151,2.032256,0,0,OIF:SA:23:134,Europe/Paris,,OIF, +OIF:SP:58:103,1,"Sécurité Sociale",48.971187,2.032188,0,0,OIF:SA:23:134,Europe/Paris,,OIF, +OIF:SP:58:1058,1,"Gare des Mureaux",48.993209,1.912975,0,0,OIF:SA:8738668,Europe/Paris,,OIF, +OIF:SP:58:1068,1,"ZI RD 43",48.950853,1.927963,0,0,OIF:SA:58:1068,Europe/Paris,,OIF, +OIF:SP:58:1069,1,"ZI RD 43",48.950825,1.927704,0,0,OIF:SA:58:1068,Europe/Paris,,OIF, +OIF:SP:58:1087,1,"Gare de Villennes sur Seine",48.939474,1.999388,0,0,OIF:SA:8738664,Europe/Paris,,OIF, +OIF:SP:58:1088,1,"Les Côteaux",48.940841,1.990293,0,0,OIF:SA:58:1088,Europe/Paris,,OIF, +OIF:SP:58:1089,1,"Rue Mirgon",48.941142,1.985584,0,0,OIF:SA:58:1089,Europe/Paris,,OIF, +OIF:SP:58:1090,1,"Clémenterie",48.940589,1.978071,0,0,OIF:SA:58:1090,Europe/Paris,,OIF, +OIF:SP:58:1091,1,"Lavoir",48.941056,1.981001,0,0,OIF:SA:58:1091,Europe/Paris,,OIF, +OIF:SP:58:1092,1,"Pré Seigneur",48.938856,1.984481,0,0,OIF:SA:58:1092,Europe/Paris,,OIF, +OIF:SP:58:1093,1,"Le Golf",48.937307,1.989416,0,0,OIF:SA:58:1093,Europe/Paris,,OIF, +OIF:SP:58:1094,1,"Les Groux",48.931831,1.997773,0,0,OIF:SA:58:1094,Europe/Paris,,OIF, +OIF:SP:58:1095,1,"Les Groux",48.931948,1.998032,0,0,OIF:SA:58:1094,Europe/Paris,,OIF, +OIF:SP:58:1096,1,"Côte Saint-Jean",48.934375,1.994974,0,0,OIF:SA:58:1096,Europe/Paris,,OIF, +OIF:SP:58:1097,1,"Côte Saint-Jean",48.934554,1.994823,0,0,OIF:SA:58:1096,Europe/Paris,,OIF, +OIF:SP:58:1098,1,"Croisée des Chemins",48.928419,1.998928,0,0,OIF:SA:58:1098,Europe/Paris,,OIF, +OIF:SP:58:1099,1,"Croisée des Chemins",48.928599,1.999118,0,0,OIF:SA:58:1098,Europe/Paris,,OIF, +OIF:SP:58:1102,1,"Général de Gaulle",48.92996,2.000364,0,0,OIF:SA:58:1102,Europe/Paris,,OIF, +OIF:SP:58:1103,1,"Général de Gaulle",48.929906,2.000241,0,0,OIF:SA:58:1102,Europe/Paris,,OIF, +OIF:SP:58:1104,1,"Clémenceau",48.935098,1.999525,0,0,OIF:SA:58:1104,Europe/Paris,,OIF, +OIF:SP:58:1105,1,"Clémenceau",48.935152,1.99947,0,0,OIF:SA:58:1104,Europe/Paris,,OIF, +OIF:SP:58:1106,1,"Maternelle",48.943473,1.98666,0,0,OIF:SA:58:1106,Europe/Paris,,OIF, +OIF:SP:58:1107,1,"Maternelle",48.943391,1.986497,0,0,OIF:SA:58:1106,Europe/Paris,,OIF, +OIF:SP:58:1108,1,"Ancienne École de Breteuil",48.946234,1.984308,0,0,OIF:SA:58:1108,Europe/Paris,,OIF, +OIF:SP:58:1109,1,"Ancienne École de Breteuil",48.946197,1.984158,0,0,OIF:SA:58:1108,Europe/Paris,,OIF, +OIF:SP:58:1110,1,"Chemin du Raidillon",48.94644,1.987022,0,0,OIF:SA:58:1110,Europe/Paris,,OIF, +OIF:SP:58:1111,1,"Chemin du Raidillon",48.94652,1.986994,0,0,OIF:SA:58:1110,Europe/Paris,,OIF, +OIF:SP:58:1112,1,"Les Guérandes",48.949043,1.989119,0,0,OIF:SA:58:1112,Europe/Paris,,OIF, +OIF:SP:58:1113,1,"Les Guérandes",48.949096,1.988982,0,0,OIF:SA:58:1112,Europe/Paris,,OIF, +OIF:SP:58:1114,1,"Pierre Curie",48.95075,1.995207,0,0,OIF:SA:58:1114,Europe/Paris,,OIF, +OIF:SP:58:1115,1,"Pierre Curie",48.950778,1.995411,0,0,OIF:SA:58:1114,Europe/Paris,,OIF, +OIF:SP:58:1116,1,"Chemin des Glaises",48.952581,1.99136,0,0,OIF:SA:58:1116,Europe/Paris,,OIF, +OIF:SP:58:1117,1,"Chemin des Glaises",48.952625,1.991046,0,0,OIF:SA:58:1116,Europe/Paris,,OIF, +OIF:SP:58:1118,1,"Villa Louise",48.945612,1.996032,0,0,OIF:SA:58:1118,Europe/Paris,,OIF, +OIF:SP:58:1119,1,"Gare de Mantes la Jolie - Gare Routière",48.98774,1.704672,0,0,OIF:SA:58:1119,Europe/Paris,,OIF, +OIF:SP:58:1120,1,"Calmette",48.983734,1.715384,0,0,OIF:SA:22:503,Europe/Paris,,OIF, +OIF:SP:58:1121,1,"Calmette",48.98371,1.715931,0,0,OIF:SA:22:503,Europe/Paris,,OIF, +OIF:SP:58:1122,1,"Libération",48.959623,1.800712,0,0,OIF:SA:21:594,Europe/Paris,,OIF, +OIF:SP:58:1123,1,"Libération",48.959705,1.800875,0,0,OIF:SA:21:594,Europe/Paris,,OIF, +OIF:SP:58:1124,1,"Mairie",48.957299,1.811586,0,0,OIF:SA:21:220,Europe/Paris,,OIF, +OIF:SP:58:1125,1,"Mairie",48.957335,1.811599,0,0,OIF:SA:21:220,Europe/Paris,,OIF, +OIF:SP:58:1126,1,"D 113",48.961487,1.856377,0,0,OIF:SA:21:66,Europe/Paris,,OIF, +OIF:SP:58:1127,1,"D 113",48.961737,1.855925,0,0,OIF:SA:21:66,Europe/Paris,,OIF, +OIF:SP:58:1128,1,"Centre Commercial",48.963396,1.861682,0,0,OIF:SA:58:1128,Europe/Paris,,OIF, +OIF:SP:58:1129,1,"Bois Bodin",48.962995,1.860499,0,0,OIF:SA:58:1128,Europe/Paris,,OIF, +OIF:SP:58:1130,1,"Gare des Mureaux",48.992053,1.913872,0,0,OIF:SA:8738668,Europe/Paris,,OIF, +OIF:SP:58:1131,1,"Place du Vexin",49.005022,1.906827,0,0,OIF:SA:8741069,Europe/Paris,,OIF, +OIF:SP:58:1132,1,"Place du Vexin",49.004573,1.90679,0,0,OIF:SA:8741069,Europe/Paris,,OIF, +OIF:SP:58:1134,1,"Chauffours - Université",49.039471,2.075989,0,0,OIF:SA:58:1134,Europe/Paris,,OIF, +OIF:SP:58:1135,1,"Chauffours - Marjoberts",49.041165,2.073957,0,0,OIF:SA:58:1134,Europe/Paris,,OIF, +OIF:SP:58:1136,1,"Gare de Cergy Préfecture",49.035368,2.081873,0,0,OIF:SA:8738190,Europe/Paris,,OIF, +OIF:SP:58:1137,1,"Gare de Cergy Préfecture",49.036102,2.080735,0,0,OIF:SA:8738190,Europe/Paris,,OIF, +OIF:SP:58:1139,1,"Rue Saint-Louis",48.895186,2.095416,0,0,OIF:SA:15:201,Europe/Paris,,OIF, +OIF:SP:58:1140,1,"Les Sablons",48.977103,1.914909,0,0,OIF:SA:8798751,Europe/Paris,,OIF, +OIF:SP:58:1141,1,"Les Sablons",48.97695,1.914787,0,0,OIF:SA:8798751,Europe/Paris,,OIF, +OIF:SP:58:1159,1,"Gare de Saint-Quentin en Yvelines",48.786715,2.043798,0,0,OIF:SA:8739384,Europe/Paris,,OIF, +OIF:SP:58:1160,1,"Gare de Saint-Quentin en Yvelines",48.786335,2.042944,0,0,OIF:SA:8739384,Europe/Paris,,OIF, +OIF:SP:58:1161,1,"Europe",48.97649,1.980498,0,0,OIF:SA:58:1161,Europe/Paris,,OIF, +OIF:SP:58:1164,1,"Crèche",48.936147,1.992357,0,0,OIF:SA:58:1164,Europe/Paris,,OIF, +OIF:SP:58:1219,1,"Gare de Vernouillet-Verneuil",48.980872,1.982338,0,0,OIF:SA:8738665,Europe/Paris,,OIF, +OIF:SP:58:1220,1,"Liszt",48.893041,2.067672,0,0,OIF:SA:58:1220,Europe/Paris,,OIF, +OIF:SP:58:1221,1,"Rue de l'Étang",48.978587,1.973962,0,0,OIF:SA:58:1221,Europe/Paris,,OIF, +OIF:SP:58:1223,1,"Épinettes",48.969349,1.975688,0,0,OIF:SA:58:1223,Europe/Paris,,OIF, +OIF:SP:58:1224,1,"Gare de Vernouillet-Verneuil",48.980773,1.982175,0,0,OIF:SA:8738665,Europe/Paris,,OIF, +OIF:SP:58:1225,1,"Gare de Vernouillet-Verneuil",48.980809,1.982434,0,0,OIF:SA:8738665,Europe/Paris,,OIF, +OIF:SP:58:1226,1,"Cergy Saint-Christophe",49.050054,2.033254,0,0,OIF:SA:8738249,Europe/Paris,,OIF, +OIF:SP:58:126,1,"Commissariat",48.976739,1.982667,0,0,OIF:SA:58:126,Europe/Paris,,OIF, +OIF:SP:58:127,1,"Montaigne",48.972721,1.976319,0,0,OIF:SA:58:127,Europe/Paris,,OIF, +OIF:SP:58:128,1,"Collège Émile Zola",48.970866,1.972196,0,0,OIF:SA:58:128,Europe/Paris,,OIF, +OIF:SP:58:129,1,"Terres Rouges",48.971683,1.974702,0,0,OIF:SA:58:129,Europe/Paris,,OIF, +OIF:SP:58:130,1,"Les Aulnes",48.971862,1.974564,0,0,OIF:SA:58:129,Europe/Paris,,OIF, +OIF:SP:58:131,1,"Rond-Point",48.971346,1.976356,0,0,OIF:SA:58:131,Europe/Paris,,OIF, +OIF:SP:58:132,1,"Rond-Point",48.971438,1.977011,0,0,OIF:SA:58:131,Europe/Paris,,OIF, +OIF:SP:58:133,1,"Groupe Scolaire",48.971903,1.979151,0,0,OIF:SA:58:133,Europe/Paris,,OIF, +OIF:SP:58:134,1,"Groupe Scolaire",48.971956,1.979055,0,0,OIF:SA:58:133,Europe/Paris,,OIF, +OIF:SP:58:135,1,"École de Musique",48.972682,1.981207,0,0,OIF:SA:58:135,Europe/Paris,,OIF, +OIF:SP:58:136,1,"École de Musique",48.972528,1.980853,0,0,OIF:SA:58:135,Europe/Paris,,OIF, +OIF:SP:58:137,1,"Montaigne",48.972262,1.976131,0,0,OIF:SA:58:127,Europe/Paris,,OIF, +OIF:SP:58:138,1,"Pressoir",48.973975,1.980979,0,0,OIF:SA:58:138,Europe/Paris,,OIF, +OIF:SP:58:139,1,"Pressoir",48.974126,1.980391,0,0,OIF:SA:58:138,Europe/Paris,,OIF, +OIF:SP:58:141,1,"Notre-Dame - Chemin Vert",48.983884,1.973934,0,0,OIF:SA:21:719,Europe/Paris,,OIF, +OIF:SP:58:142,1,"Le Parc",48.977899,1.986058,0,0,OIF:SA:58:142,Europe/Paris,,OIF, +OIF:SP:58:143,1,"Collège Émile Zola",48.970866,1.972196,0,0,OIF:SA:58:128,Europe/Paris,,OIF, +OIF:SP:58:146,1,"Noyer",48.974524,1.975187,0,0,OIF:SA:58:146,Europe/Paris,,OIF, +OIF:SP:58:147,1,"Coteaux",48.974582,1.973494,0,0,OIF:SA:58:147,Europe/Paris,,OIF, +OIF:SP:58:148,1,"Maternelle Kosma",48.974214,1.970848,0,0,OIF:SA:58:148,Europe/Paris,,OIF, +OIF:SP:58:149,1,"Fours à Chaux",48.97455,1.96918,0,0,OIF:SA:58:149,Europe/Paris,,OIF, +OIF:SP:58:150,1,"Les Ormes",48.974017,1.968215,0,0,OIF:SA:58:150,Europe/Paris,,OIF, +OIF:SP:58:151,1,"Rond-Point Zola",48.974647,1.965412,0,0,OIF:SA:58:151,Europe/Paris,,OIF, +OIF:SP:58:152,1,"Rond-Point Zola",48.974673,1.965371,0,0,OIF:SA:58:151,Europe/Paris,,OIF, +OIF:SP:58:153,1,"Lutins",48.975639,1.966784,0,0,OIF:SA:58:153,Europe/Paris,,OIF, +OIF:SP:58:154,1,"Lutins",48.975729,1.966824,0,0,OIF:SA:58:153,Europe/Paris,,OIF, +OIF:SP:58:155,1,"Passereaux",48.977616,1.969691,0,0,OIF:SA:58:155,Europe/Paris,,OIF, +OIF:SP:58:156,1,"Rue du Hameau",48.978169,1.974192,0,0,OIF:SA:58:156,Europe/Paris,,OIF, +OIF:SP:58:157,1,"Pierre Curie",48.977284,1.969748,0,0,OIF:SA:58:157,Europe/Paris,,OIF, +OIF:SP:58:174,1,"Gare Nord de Poissy",48.933552,2.039761,0,0,OIF:SA:8738657,Europe/Paris,,OIF, +OIF:SP:58:175,1,"Gare Sud de Poissy",48.932965,2.042425,0,0,OIF:SA:8738657,Europe/Paris,,OIF, +OIF:SP:58:176,1,"3 Tours",48.941118,2.032487,0,0,OIF:SA:23:60,Europe/Paris,,OIF, +OIF:SP:58:177,1,"3 Tours",48.941755,2.031911,0,0,OIF:SA:23:60,Europe/Paris,,OIF, +OIF:SP:58:178,1,"Lycée le Corbusier",48.923818,2.028784,0,0,OIF:SA:20:178,Europe/Paris,,OIF, +OIF:SP:58:179,1,"Commissariat",48.927118,2.043863,0,0,OIF:SA:20:180,Europe/Paris,,OIF, +OIF:SP:58:182,1,"Ursulines",48.928317,2.041537,0,0,OIF:SA:23:480,Europe/Paris,,OIF, +OIF:SP:58:183,1,"Le Cep",48.928927,2.041411,0,0,OIF:SA:15:249,Europe/Paris,,OIF, +OIF:SP:58:202,1,"Fabrique 21",48.948388,2.025131,0,0,OIF:SA:23:1222,Europe/Paris,,OIF, +OIF:SP:58:203,1,"Fabrique 21",48.948514,2.025281,0,0,OIF:SA:23:1222,Europe/Paris,,OIF, +OIF:SP:58:210,1,"Art de Vivre",48.924916,1.993318,0,0,OIF:SA:21:402,Europe/Paris,,OIF, +OIF:SP:58:211,1,"Toys'Rus",48.927132,1.985979,0,0,OIF:SA:21:600,Europe/Paris,,OIF, +OIF:SP:58:214,1,"Pasteur Cd 113",48.927868,1.982524,0,0,OIF:SA:23:377,Europe/Paris,,OIF, +OIF:SP:58:217,1,"Novotel Cd 113",48.924121,1.994837,0,0,OIF:SA:23:355,Europe/Paris,,OIF, +OIF:SP:58:220,1,"Vallée Maria",48.935391,1.948206,0,0,OIF:SA:23:336,Europe/Paris,,OIF, +OIF:SP:58:221,1,"Vallée Maria",48.935274,1.947975,0,0,OIF:SA:23:336,Europe/Paris,,OIF, +OIF:SP:58:222,1,"Rue du Moulle",48.929816,1.939,0,0,OIF:SA:23:339,Europe/Paris,,OIF, +OIF:SP:58:223,1,"Rue du Moulle",48.930231,1.939461,0,0,OIF:SA:23:339,Europe/Paris,,OIF, +OIF:SP:58:224,1,"Église",48.9287,1.935994,0,0,OIF:SA:23:1027,Europe/Paris,,OIF, +OIF:SP:58:24,1,"Abbé Masure",48.980943,1.972985,0,0,OIF:SA:58:24,Europe/Paris,,OIF, +OIF:SP:58:25,1,"Bazincourt",48.9802,1.965345,0,0,OIF:SA:58:25,Europe/Paris,,OIF, +OIF:SP:58:253,1,"La Cendrière",48.926678,1.938479,0,0,OIF:SA:23:326,Europe/Paris,,OIF, +OIF:SP:58:254,1,"La Cendrière",48.926793,1.938191,0,0,OIF:SA:23:326,Europe/Paris,,OIF, +OIF:SP:58:255,1,"Bénainvilliers Grande Rue",48.926545,1.941848,0,0,OIF:SA:23:324,Europe/Paris,,OIF, +OIF:SP:58:256,1,"Bénainvilliers Grande Rue",48.926419,1.941808,0,0,OIF:SA:23:324,Europe/Paris,,OIF, +OIF:SP:58:257,1,"Croix Paquet",48.925861,1.947063,0,0,OIF:SA:23:330,Europe/Paris,,OIF, +OIF:SP:58:258,1,"Croix Paquet",48.926014,1.947226,0,0,OIF:SA:23:330,Europe/Paris,,OIF, +OIF:SP:58:26,1,"Bazincourt",48.980268,1.966846,0,0,OIF:SA:58:25,Europe/Paris,,OIF, +OIF:SP:58:261,1,"Ferme de Montamets",48.923639,1.963091,0,0,OIF:SA:23:387,Europe/Paris,,OIF, +OIF:SP:58:262,1,"Ferme de Montamets",48.92381,1.963226,0,0,OIF:SA:23:387,Europe/Paris,,OIF, +OIF:SP:58:263,1,"Poiriers",48.922198,1.970902,0,0,OIF:SA:23:378,Europe/Paris,,OIF, +OIF:SP:58:264,1,"Poiriers",48.922333,1.970888,0,0,OIF:SA:23:378,Europe/Paris,,OIF, +OIF:SP:58:269,1,"Château",48.955357,1.994194,0,0,OIF:SA:58:269,Europe/Paris,,OIF, +OIF:SP:58:27,1,"Chanteclair",48.984665,1.970556,0,0,OIF:SA:58:27,Europe/Paris,,OIF, +OIF:SP:58:270,1,"Château",48.955457,1.994371,0,0,OIF:SA:58:269,Europe/Paris,,OIF, +OIF:SP:58:273,1,"M. Giraux",48.945925,1.995389,0,0,OIF:SA:58:273,Europe/Paris,,OIF, +OIF:SP:58:274,1,"M. Giraux",48.945915,1.995184,0,0,OIF:SA:58:273,Europe/Paris,,OIF, +OIF:SP:58:28,1,"Chanteclair",48.984029,1.971284,0,0,OIF:SA:58:27,Europe/Paris,,OIF, +OIF:SP:58:284,1,"Église",48.919707,1.976129,0,0,OIF:SA:23:367,Europe/Paris,,OIF, +OIF:SP:58:285,1,"Église",48.919743,1.976211,0,0,OIF:SA:23:367,Europe/Paris,,OIF, +OIF:SP:58:286,1,"Tressancourt",48.918668,1.983514,0,0,OIF:SA:23:383,Europe/Paris,,OIF, +OIF:SP:58:287,1,"Tressancourt",48.918572,1.984455,0,0,OIF:SA:23:383,Europe/Paris,,OIF, +OIF:SP:58:288,1,"La Chapelle",48.918355,1.990171,0,0,OIF:SA:23:357,Europe/Paris,,OIF, +OIF:SP:58:289,1,"La Chapelle",48.91822,1.989953,0,0,OIF:SA:23:357,Europe/Paris,,OIF, +OIF:SP:58:29,1,"Coteaux",48.974546,1.973604,0,0,OIF:SA:58:147,Europe/Paris,,OIF, +OIF:SP:58:290,1,"Les Briochets",48.92353,1.995837,0,0,OIF:SA:23:362,Europe/Paris,,OIF, +OIF:SP:58:291,1,"Les Briochets",48.92345,1.995987,0,0,OIF:SA:23:362,Europe/Paris,,OIF, +OIF:SP:58:298,1,"Cimetière",48.927254,2.040902,0,0,OIF:SA:15:554,Europe/Paris,,OIF, +OIF:SP:58:299,1,"Cimetière",48.927174,2.041025,0,0,OIF:SA:15:554,Europe/Paris,,OIF, +OIF:SP:58:30,1,"Rome - d'Esparbes",48.976995,1.963361,0,0,OIF:SA:58:30,Europe/Paris,,OIF, +OIF:SP:58:300,1,"Commissariat",48.926976,2.044682,0,0,OIF:SA:20:180,Europe/Paris,,OIF, +OIF:SP:58:301,1,"Corneille",48.92041,2.035173,0,0,OIF:SA:23:431,Europe/Paris,,OIF, +OIF:SP:58:302,1,"Corneille",48.920258,2.035378,0,0,OIF:SA:23:431,Europe/Paris,,OIF, +OIF:SP:58:305,1,"F.Lefebvre",48.925613,2.049395,0,0,OIF:SA:20:182,Europe/Paris,,OIF, +OIF:SP:58:306,1,"F.Lefebvre",48.925704,2.04979,0,0,OIF:SA:20:182,Europe/Paris,,OIF, +OIF:SP:58:308,1,"Grands Champs",48.918614,2.025392,0,0,OIF:SA:23:422,Europe/Paris,,OIF, +OIF:SP:58:309,1,"Grands Champs",48.91857,2.025502,0,0,OIF:SA:23:422,Europe/Paris,,OIF, +OIF:SP:58:31,1,"Faisanderie",48.982729,1.969491,0,0,OIF:SA:8798459,Europe/Paris,,OIF, +OIF:SP:58:312,1,"Jean Moulin",48.917347,2.039445,0,0,OIF:SA:15:552,Europe/Paris,,OIF, +OIF:SP:58:313,1,"Jean Moulin",48.917609,2.039785,0,0,OIF:SA:15:552,Europe/Paris,,OIF, +OIF:SP:58:318,1,"La Terrasse",48.924067,2.053358,0,0,OIF:SA:23:479,Europe/Paris,,OIF, +OIF:SP:58:319,1,"Le Cep",48.928909,2.041206,0,0,OIF:SA:15:249,Europe/Paris,,OIF, +OIF:SP:58:32,1,"Faisanderie",48.982657,1.969382,0,0,OIF:SA:8798459,Europe/Paris,,OIF, +OIF:SP:58:323,1,"Lycée Charles de Gaulle",48.946417,2.064301,0,0,OIF:SA:20:377,Europe/Paris,,OIF, +OIF:SP:58:327,1,"Notre-Dame",48.92612,2.036476,0,0,OIF:SA:15:348,Europe/Paris,,OIF, +OIF:SP:58:328,1,"Notre-Dame",48.926004,2.036695,0,0,OIF:SA:15:348,Europe/Paris,,OIF, +OIF:SP:58:33,1,"Fours à Chaux",48.974048,1.96958,0,0,OIF:SA:58:149,Europe/Paris,,OIF, +OIF:SP:58:333,1,"Racine",48.921469,2.027775,0,0,OIF:SA:23:468,Europe/Paris,,OIF, +OIF:SP:58:334,1,"Racine",48.921201,2.028104,0,0,OIF:SA:23:468,Europe/Paris,,OIF, +OIF:SP:58:335,1,"Rhin et Danube",48.922522,2.028001,0,0,OIF:SA:21:610,Europe/Paris,,OIF, +OIF:SP:58:337,1,"Ronsard",48.920714,2.031121,0,0,OIF:SA:23:471,Europe/Paris,,OIF, +OIF:SP:58:338,1,"Ronsard",48.920462,2.031027,0,0,OIF:SA:23:471,Europe/Paris,,OIF, +OIF:SP:58:34,1,"Gare de Vernouillet-Verneuil",48.980773,1.98227,0,0,OIF:SA:8738665,Europe/Paris,,OIF, +OIF:SP:58:343,1,"3 Cèdres",48.944575,2.027801,0,0,OIF:SA:23:58,Europe/Paris,,OIF, +OIF:SP:58:344,1,"3 Cèdres",48.945877,2.027207,0,0,OIF:SA:23:58,Europe/Paris,,OIF, +OIF:SP:58:346,1,"Les Sablons",48.954009,1.920528,0,0,OIF:SA:58:346,Europe/Paris,,OIF, +OIF:SP:58:347,1,"Les Louvettes",48.954339,1.917401,0,0,OIF:SA:21:228,Europe/Paris,,OIF, +OIF:SP:58:348,1,"Fontaines",48.951889,1.915674,0,0,OIF:SA:21:227,Europe/Paris,,OIF, +OIF:SP:58:349,1,"Victor Hugo",48.950224,1.917516,0,0,OIF:SA:21:241,Europe/Paris,,OIF, +OIF:SP:58:350,1,"République",48.948595,1.922196,0,0,OIF:SA:21:235,Europe/Paris,,OIF, +OIF:SP:58:351,1,"Le Parc",48.946734,1.927095,0,0,OIF:SA:21:230,Europe/Paris,,OIF, +OIF:SP:58:352,1,"Auberge Sans Nom",48.923927,1.974859,0,0,OIF:SA:23:360,Europe/Paris,,OIF, +OIF:SP:58:353,1,"Auberge Sans Nom",48.923945,1.974954,0,0,OIF:SA:23:360,Europe/Paris,,OIF, +OIF:SP:58:354,1,"Les Bouveries",48.954317,2.021056,0,0,OIF:SA:23:610,Europe/Paris,,OIF, +OIF:SP:58:355,1,"Les Bouveries",48.954253,2.020743,0,0,OIF:SA:23:610,Europe/Paris,,OIF, +OIF:SP:58:358,1,"Cosec",48.975405,2.016286,0,0,OIF:SA:23:580,Europe/Paris,,OIF, +OIF:SP:58:359,1,"Cosec",48.97528,2.016396,0,0,OIF:SA:23:580,Europe/Paris,,OIF, +OIF:SP:58:36,1,"La Garenne",48.984279,1.967732,0,0,OIF:SA:58:36,Europe/Paris,,OIF, +OIF:SP:58:360,1,"Les Chatelaînes",48.976014,2.015422,0,0,OIF:SA:23:1044,Europe/Paris,,OIF, +OIF:SP:58:361,1,"Les Chatelaînes",48.976587,2.014681,0,0,OIF:SA:23:1044,Europe/Paris,,OIF, +OIF:SP:58:37,1,"La Garenne",48.984334,1.968101,0,0,OIF:SA:58:36,Europe/Paris,,OIF, +OIF:SP:58:38,1,"Grande Rue",48.980816,1.975512,0,0,OIF:SA:58:38,Europe/Paris,,OIF, +OIF:SP:58:383,1,"Gare de Triel sur Seine",48.981172,2.005314,0,0,OIF:SA:8738180,Europe/Paris,,OIF, +OIF:SP:58:384,1,"Lieutenant Lecomte",48.977096,2.009996,0,0,OIF:SA:23:600,Europe/Paris,,OIF, +OIF:SP:58:385,1,"Lieutenant Lecomte",48.977095,2.0096,0,0,OIF:SA:23:600,Europe/Paris,,OIF, +OIF:SP:58:386,1,"Chemin du Moulin",48.977933,2.013827,0,0,OIF:SA:23:605,Europe/Paris,,OIF, +OIF:SP:58:387,1,"Chemin du Moulin",48.97822,2.013729,0,0,OIF:SA:23:605,Europe/Paris,,OIF, +OIF:SP:58:39,1,"Koenig",48.978299,1.978547,0,0,OIF:SA:58:39,Europe/Paris,,OIF, +OIF:SP:58:40,1,"Maternelle Kosma",48.974242,1.971053,0,0,OIF:SA:58:148,Europe/Paris,,OIF, +OIF:SP:58:401,1,"Aérospatiale",48.998728,1.921002,0,0,OIF:SA:21:439,Europe/Paris,,OIF, +OIF:SP:58:402,1,"Nautis",48.930508,2.003647,0,0,OIF:SA:58:402,Europe/Paris,,OIF, +OIF:SP:58:403,1,"Nautis",48.930454,2.003579,0,0,OIF:SA:58:402,Europe/Paris,,OIF, +OIF:SP:58:404,1,"Place Verte",48.93834,1.995644,0,0,OIF:SA:58:404,Europe/Paris,,OIF, +OIF:SP:58:405,1,"Place Verte",48.93834,1.995589,0,0,OIF:SA:58:404,Europe/Paris,,OIF, +OIF:SP:58:406,1,"La Forge",48.943982,1.994911,0,0,OIF:SA:58:406,Europe/Paris,,OIF, +OIF:SP:58:407,1,"La Forge",48.943273,1.99512,0,0,OIF:SA:58:406,Europe/Paris,,OIF, +OIF:SP:58:408,1,"Clos Normand",48.960238,1.994339,0,0,OIF:SA:58:408,Europe/Paris,,OIF, +OIF:SP:58:409,1,"Clos Normand",48.96031,1.994543,0,0,OIF:SA:58:408,Europe/Paris,,OIF, +OIF:SP:58:41,1,"Mairie",48.97941,1.97443,0,0,OIF:SA:58:41,Europe/Paris,,OIF, +OIF:SP:58:410,1,"Les Bouvettes",48.964179,1.992921,0,0,OIF:SA:58:410,Europe/Paris,,OIF, +OIF:SP:58:411,1,"Les Bouvettes",48.965005,1.992588,0,0,OIF:SA:58:410,Europe/Paris,,OIF, +OIF:SP:58:412,1,"Vallée Goujon",48.966833,1.99076,0,0,OIF:SA:58:412,Europe/Paris,,OIF, +OIF:SP:58:413,1,"Vallée Goujon",48.966895,1.990555,0,0,OIF:SA:58:412,Europe/Paris,,OIF, +OIF:SP:58:414,1,"Plaine Ouest",48.969371,1.989051,0,0,OIF:SA:58:414,Europe/Paris,,OIF, +OIF:SP:58:415,1,"Maison Enfance",48.969237,1.989311,0,0,OIF:SA:58:414,Europe/Paris,,OIF, +OIF:SP:58:416,1,"Girardin",48.970778,1.987908,0,0,OIF:SA:58:416,Europe/Paris,,OIF, +OIF:SP:58:417,1,"Girardin",48.970913,1.987976,0,0,OIF:SA:58:416,Europe/Paris,,OIF, +OIF:SP:58:418,1,"Jean Jaurès",48.974666,1.986817,0,0,OIF:SA:58:418,Europe/Paris,,OIF, +OIF:SP:58:419,1,"Jean Jaurès",48.974757,1.986926,0,0,OIF:SA:58:418,Europe/Paris,,OIF, +OIF:SP:58:42,1,"Manoir",48.978643,1.973595,0,0,OIF:SA:58:42,Europe/Paris,,OIF, +OIF:SP:58:420,1,"Saint-Exupéry",48.975883,1.985048,0,0,OIF:SA:58:420,Europe/Paris,,OIF, +OIF:SP:58:421,1,"Mairie",48.979079,1.974978,0,0,OIF:SA:58:41,Europe/Paris,,OIF, +OIF:SP:58:422,1,"La Galette",48.984886,1.963645,0,0,OIF:SA:58:422,Europe/Paris,,OIF, +OIF:SP:58:423,1,"La Galette",48.98494,1.963836,0,0,OIF:SA:58:422,Europe/Paris,,OIF, +OIF:SP:58:424,1,"Les Clairières",48.989094,1.950192,0,0,OIF:SA:58:424,Europe/Paris,,OIF, +OIF:SP:58:425,1,"Route de Verneuil",48.995725,1.930872,0,0,OIF:SA:21:551,Europe/Paris,,OIF, +OIF:SP:58:426,1,"Route de Verneuil",48.996251,1.929653,0,0,OIF:SA:21:551,Europe/Paris,,OIF, +OIF:SP:58:427,1,"Aérospatiale",48.99911,1.919824,0,0,OIF:SA:21:439,Europe/Paris,,OIF, +OIF:SP:58:428,1,"Gare des Mureaux",48.99199,1.913736,0,0,OIF:SA:8738668,Europe/Paris,,OIF, +OIF:SP:58:429,1,"Arquebuse",49.004264,1.910849,0,0,OIF:SA:8741071,Europe/Paris,,OIF, +OIF:SP:58:43,1,"Maternelle Dolto",48.978066,1.963995,0,0,OIF:SA:58:43,Europe/Paris,,OIF, +OIF:SP:58:430,1,"Le Routier",48.986728,1.996813,0,0,OIF:SA:23:614,Europe/Paris,,OIF, +OIF:SP:58:431,1,"Le Routier",48.986763,1.996417,0,0,OIF:SA:23:614,Europe/Paris,,OIF, +OIF:SP:58:432,1,"374 Rue Paul Doumer",48.991016,1.991035,0,0,OIF:SA:23:562,Europe/Paris,,OIF, +OIF:SP:58:433,1,"374 Rue Paul Doumer",48.991015,1.990708,0,0,OIF:SA:23:562,Europe/Paris,,OIF, +OIF:SP:58:434,1,"402 Rue Paul Doumer",48.993183,1.988099,0,0,OIF:SA:23:564,Europe/Paris,,OIF, +OIF:SP:58:435,1,"402 Rue Paul Doumer",48.993208,1.98773,0,0,OIF:SA:23:564,Europe/Paris,,OIF, +OIF:SP:58:437,1,"Port Maron - Orpéa",48.995724,1.984285,0,0,OIF:SA:21:1239,Europe/Paris,,OIF, +OIF:SP:58:438,1,"Lion Vert",49.00089,1.975153,0,0,OIF:SA:21:731,Europe/Paris,,OIF, +OIF:SP:58:439,1,"Lion Vert",49.00088,1.97473,0,0,OIF:SA:21:731,Europe/Paris,,OIF, +OIF:SP:58:44,1,"Noyer",48.974157,1.97579,0,0,OIF:SA:58:146,Europe/Paris,,OIF, +OIF:SP:58:440,1,"Le Temple",49.003268,1.970848,0,0,OIF:SA:21:735,Europe/Paris,,OIF, +OIF:SP:58:441,1,"Le Temple",49.003052,1.97089,0,0,OIF:SA:21:735,Europe/Paris,,OIF, +OIF:SP:58:445,1,"Le Garage",48.969278,2.010113,0,0,OIF:SA:23:592,Europe/Paris,,OIF, +OIF:SP:58:446,1,"Le Garage",48.969331,2.00984,0,0,OIF:SA:23:592,Europe/Paris,,OIF, +OIF:SP:58:447,1,"Le Banc",48.97126,2.008695,0,0,OIF:SA:23:568,Europe/Paris,,OIF, +OIF:SP:58:448,1,"Le Banc",48.971268,2.008435,0,0,OIF:SA:23:568,Europe/Paris,,OIF, +OIF:SP:58:45,1,"Les Ormes",48.97391,1.968325,0,0,OIF:SA:58:150,Europe/Paris,,OIF, +OIF:SP:58:452,1,"Gare de Saint-Germain en Laye",48.898635,2.094705,0,0,OIF:SA:8775809,Europe/Paris,,OIF, +OIF:SP:58:454,1,"Jehan Alain",48.900652,2.087811,0,0,OIF:SA:15:113,Europe/Paris,,OIF, +OIF:SP:58:455,1,"Jehan Alain",48.900625,2.087961,0,0,OIF:SA:15:113,Europe/Paris,,OIF, +OIF:SP:58:456,1,"Place Vauban",48.903861,2.083543,0,0,OIF:SA:20:189,Europe/Paris,,OIF, +OIF:SP:58:457,1,"Place Vauban",48.903798,2.083734,0,0,OIF:SA:20:189,Europe/Paris,,OIF, +OIF:SP:58:458,1,"RN190RN184",48.909576,2.075116,0,0,OIF:SA:23:547,Europe/Paris,,OIF, +OIF:SP:58:459,1,"RN190RN184",48.909953,2.07495,0,0,OIF:SA:23:547,Europe/Paris,,OIF, +OIF:SP:58:46,1,"Parc Noir",48.98283,1.97319,0,0,OIF:SA:58:46,Europe/Paris,,OIF, +OIF:SP:58:460,1,"Le Golf",48.919966,2.059422,0,0,OIF:SA:20:185,Europe/Paris,,OIF, +OIF:SP:58:461,1,"Le Golf",48.919886,2.059763,0,0,OIF:SA:20:185,Europe/Paris,,OIF, +OIF:SP:58:462,1,"Gare de Conflans Fin d'Oise",48.988696,2.075112,0,0,OIF:SA:8738145,Europe/Paris,,OIF, +OIF:SP:58:468,1,"CD55",48.988415,2.05418,0,0,OIF:SA:23:16,Europe/Paris,,OIF, +OIF:SP:58:469,1,"CD55",48.988505,2.054261,0,0,OIF:SA:23:16,Europe/Paris,,OIF, +OIF:SP:58:47,1,"Parc Noir",48.982633,1.973397,0,0,OIF:SA:58:46,Europe/Paris,,OIF, +OIF:SP:58:470,1,"Valois Robaresses",48.989403,2.058025,0,0,OIF:SA:23:45,Europe/Paris,,OIF, +OIF:SP:58:471,1,"Valois Robaresses",48.989349,2.057807,0,0,OIF:SA:23:45,Europe/Paris,,OIF, +OIF:SP:58:472,1,"Gare de Maurecourt",48.988411,2.060202,0,0,OIF:SA:8738148,Europe/Paris,,OIF, +OIF:SP:58:473,1,"Gare de Maurecourt",48.988393,2.060366,0,0,OIF:SA:8738148,Europe/Paris,,OIF, +OIF:SP:58:474,1,"Foch Pasteur",48.987395,2.063867,0,0,OIF:SA:23:37,Europe/Paris,,OIF, +OIF:SP:58:475,1,"Foch Pasteur",48.98754,2.064371,0,0,OIF:SA:23:37,Europe/Paris,,OIF, +OIF:SP:58:476,1,"Foch Galliéni",48.989673,2.065903,0,0,OIF:SA:23:26,Europe/Paris,,OIF, +OIF:SP:58:477,1,"Foch Galliéni",48.989682,2.065725,0,0,OIF:SA:23:26,Europe/Paris,,OIF, +OIF:SP:58:479,1,"Les Fonceaux",48.986535,2.053412,0,0,OIF:SA:58:479,Europe/Paris,,OIF, +OIF:SP:58:48,1,"Tocqueville",48.975245,1.964261,0,0,OIF:SA:58:48,Europe/Paris,,OIF, +OIF:SP:58:480,1,"Les Fonceaux",48.986579,2.053193,0,0,OIF:SA:58:479,Europe/Paris,,OIF, +OIF:SP:58:481,1,"Épinettes",48.969349,1.975688,0,0,OIF:SA:58:1223,Europe/Paris,,OIF, +OIF:SP:58:482,1,"Pommiers",48.96952,1.975796,0,0,OIF:SA:58:1223,Europe/Paris,,OIF, +OIF:SP:58:483,1,"Brézolles",48.956445,1.955813,0,0,OIF:SA:58:483,Europe/Paris,,OIF, +OIF:SP:58:484,1,"Brézolles",48.956715,1.955838,0,0,OIF:SA:58:483,Europe/Paris,,OIF, +OIF:SP:58:485,1,"Agrippa d'Aubigné",48.955917,1.96803,0,0,OIF:SA:58:485,Europe/Paris,,OIF, +OIF:SP:58:486,1,"Agrippa d'Aubigné",48.956124,1.968179,0,0,OIF:SA:58:485,Europe/Paris,,OIF, +OIF:SP:58:487,1,"Flamant",48.952086,1.967048,0,0,OIF:SA:58:487,Europe/Paris,,OIF, +OIF:SP:58:488,1,"Flamant",48.95197,1.967267,0,0,OIF:SA:58:487,Europe/Paris,,OIF, +OIF:SP:58:49,1,"Collège Jean Zay",48.97894,1.961777,0,0,OIF:SA:58:49,Europe/Paris,,OIF, +OIF:SP:58:490,1,"Bourdillon",48.96999,1.985579,0,0,OIF:SA:58:490,Europe/Paris,,OIF, +OIF:SP:58:491,1,"Philippe de Beaumanoir",48.953594,1.966614,0,0,OIF:SA:58:491,Europe/Paris,,OIF, +OIF:SP:58:492,1,"Philippe de Beaumanoir",48.953729,1.966463,0,0,OIF:SA:58:491,Europe/Paris,,OIF, +OIF:SP:58:493,1,"Bourdillon",48.970098,1.985879,0,0,OIF:SA:58:490,Europe/Paris,,OIF, +OIF:SP:58:494,1,"Briand Chapet",48.970719,1.980128,0,0,OIF:SA:58:494,Europe/Paris,,OIF, +OIF:SP:58:495,1,"Briand Chapet",48.970854,1.980113,0,0,OIF:SA:58:494,Europe/Paris,,OIF, +OIF:SP:58:496,1,"Gloriettes",48.968377,1.981141,0,0,OIF:SA:58:496,Europe/Paris,,OIF, +OIF:SP:58:497,1,"Gloriettes",48.968314,1.981237,0,0,OIF:SA:58:496,Europe/Paris,,OIF, +OIF:SP:58:498,1,"Château",48.941578,1.963603,0,0,OIF:SA:23:328,Europe/Paris,,OIF, +OIF:SP:58:499,1,"Château",48.941506,1.963535,0,0,OIF:SA:23:328,Europe/Paris,,OIF, +OIF:SP:58:50,1,"Collège Jean Zay",48.97894,1.961777,0,0,OIF:SA:58:49,Europe/Paris,,OIF, +OIF:SP:58:500,1,"Fontaine aux Gendarmes",48.944738,1.962284,0,0,OIF:SA:58:500,Europe/Paris,,OIF, +OIF:SP:58:501,1,"Fontaine aux Gendarmes",48.944666,1.962257,0,0,OIF:SA:58:500,Europe/Paris,,OIF, +OIF:SP:58:502,1,"Épinettes",48.940276,1.958101,0,0,OIF:SA:23:338,Europe/Paris,,OIF, +OIF:SP:58:503,1,"Charles d'Orléans",48.951709,1.964417,0,0,OIF:SA:58:503,Europe/Paris,,OIF, +OIF:SP:58:504,1,"Charles d'Orléans",48.951745,1.964294,0,0,OIF:SA:58:503,Europe/Paris,,OIF, +OIF:SP:58:51,1,"Commissariat",48.976983,1.983116,0,0,OIF:SA:58:126,Europe/Paris,,OIF, +OIF:SP:58:52,1,"Le Parc",48.977647,1.985773,0,0,OIF:SA:58:142,Europe/Paris,,OIF, +OIF:SP:58:522,1,"Gare de Cergy Préfecture",49.035198,2.082133,0,0,OIF:SA:8738190,Europe/Paris,,OIF, +OIF:SP:58:527,1,"Clos du Roy",48.994868,2.06604,0,0,OIF:SA:23:289,Europe/Paris,,OIF, +OIF:SP:58:528,1,"Clos du Roy",48.993404,2.066457,0,0,OIF:SA:23:289,Europe/Paris,,OIF, +OIF:SP:58:548,1,"Stade",48.976133,2.040677,0,0,OIF:SA:58:548,Europe/Paris,,OIF, +OIF:SP:58:549,1,"Stade",48.97615,2.040035,0,0,OIF:SA:58:548,Europe/Paris,,OIF, +OIF:SP:58:554,1,"Ancienne Gare",48.997384,2.06604,0,0,OIF:SA:23:285,Europe/Paris,,OIF, +OIF:SP:58:555,1,"Ancienne Gare",48.997671,2.065752,0,0,OIF:SA:23:285,Europe/Paris,,OIF, +OIF:SP:58:557,1,"Pont de Triel",48.978919,2.00309,0,0,OIF:SA:51:491,Europe/Paris,,OIF, +OIF:SP:58:558,1,"Pont de Triel",48.978856,2.00309,0,0,OIF:SA:51:491,Europe/Paris,,OIF, +OIF:SP:58:559,1,"Jean Mermoz",48.97848,1.9943,0,0,OIF:SA:58:559,Europe/Paris,,OIF, +OIF:SP:58:560,1,"Jean Mermoz",48.978409,1.994396,0,0,OIF:SA:58:559,Europe/Paris,,OIF, +OIF:SP:58:562,1,"Centre des Impôts",48.919961,2.038898,0,0,OIF:SA:15:251,Europe/Paris,,OIF, +OIF:SP:58:563,1,"Centre des Impôts",48.920554,2.038813,0,0,OIF:SA:15:251,Europe/Paris,,OIF, +OIF:SP:58:566,1,"Place Royale",48.894588,2.097818,0,0,OIF:SA:15:37,Europe/Paris,,OIF, +OIF:SP:58:567,1,"Gambetta",48.896468,2.098518,0,0,OIF:SA:15:450,Europe/Paris,,OIF, +OIF:SP:58:569,1,"Lycée International",48.898232,2.062101,0,0,OIF:SA:15:351,Europe/Paris,,OIF, +OIF:SP:58:570,1,"Lycée Léonard de Vinci",48.891829,2.06422,0,0,OIF:SA:58:570,Europe/Paris,,OIF, +OIF:SP:58:571,1,"Nicot",48.894515,2.075887,0,0,OIF:SA:15:210,Europe/Paris,,OIF, +OIF:SP:58:572,1,"Rue du Pavillon",48.976322,2.006287,0,0,OIF:SA:23:607,Europe/Paris,,OIF, +OIF:SP:58:573,1,"Rue du Pavillon",48.976258,2.006097,0,0,OIF:SA:23:607,Europe/Paris,,OIF, +OIF:SP:58:574,1,"Senet",48.979514,2.003878,0,0,OIF:SA:23:618,Europe/Paris,,OIF, +OIF:SP:58:575,1,"Senet",48.979398,2.004138,0,0,OIF:SA:23:618,Europe/Paris,,OIF, +OIF:SP:58:576,1,"Mairie",49.005638,1.964206,0,0,OIF:SA:21:733,Europe/Paris,,OIF, +OIF:SP:58:577,1,"Mairie",49.005343,1.964877,0,0,OIF:SA:21:733,Europe/Paris,,OIF, +OIF:SP:58:578,1,"Champeaux",49.009285,1.952391,0,0,OIF:SA:21:725,Europe/Paris,,OIF, +OIF:SP:58:579,1,"Champeaux",49.009135,1.953321,0,0,OIF:SA:21:725,Europe/Paris,,OIF, +OIF:SP:58:580,1,"Cherbourg",49.009005,1.955002,0,0,OIF:SA:21:964,Europe/Paris,,OIF, +OIF:SP:58:581,1,"Cherbourg",49.008879,1.954689,0,0,OIF:SA:21:964,Europe/Paris,,OIF, +OIF:SP:58:582,1,"Thun Saint-Louis",49.008367,1.930322,0,0,OIF:SA:21:148,Europe/Paris,,OIF, +OIF:SP:58:583,1,"Thun Saint-Louis",49.008223,1.930255,0,0,OIF:SA:21:148,Europe/Paris,,OIF, +OIF:SP:58:584,1,"Boulevard Thiers",49.006749,1.922371,0,0,OIF:SA:21:696,Europe/Paris,,OIF, +OIF:SP:58:585,1,"Boulevard Thiers",49.00655,1.922127,0,0,OIF:SA:21:696,Europe/Paris,,OIF, +OIF:SP:58:587,1,"Gambetta",49.005571,1.914513,0,0,OIF:SA:21:8,Europe/Paris,,OIF, +OIF:SP:58:588,1,"Gambetta",49.005473,1.914759,0,0,OIF:SA:21:8,Europe/Paris,,OIF, +OIF:SP:58:626,1,"Cimetière",48.975084,2.02725,0,0,OIF:SA:58:626,Europe/Paris,,OIF, +OIF:SP:58:627,1,"Cimetière",48.975232,2.025693,0,0,OIF:SA:58:626,Europe/Paris,,OIF, +OIF:SP:58:628,1,"Le Parc",48.97535,2.032832,0,0,OIF:SA:58:628,Europe/Paris,,OIF, +OIF:SP:58:629,1,"Le Parc",48.975421,2.032668,0,0,OIF:SA:58:628,Europe/Paris,,OIF, +OIF:SP:58:63,1,"Peugeot",48.941136,2.050454,0,0,OIF:SA:21:618,Europe/Paris,,OIF, +OIF:SP:58:630,1,"Lycée Louise Weiss",48.971233,2.074094,0,0,OIF:SA:20:151,Europe/Paris,,OIF, +OIF:SP:58:640,1,"Rond-Point Saint-Jacques",49.01115,2.053946,0,0,OIF:SA:58:640,Europe/Paris,,OIF, +OIF:SP:58:641,1,"Rond-Point Saint-Jacques",49.011384,2.053918,0,0,OIF:SA:58:640,Europe/Paris,,OIF, +OIF:SP:58:664,1,"Cergy Saint-Christophe",49.049727,2.035334,0,0,OIF:SA:8738249,Europe/Paris,,OIF, +OIF:SP:58:67,1,"EDF",48.940922,2.033062,0,0,OIF:SA:23:78,Europe/Paris,,OIF, +OIF:SP:58:69,1,"Cottages",48.988032,1.955307,0,0,OIF:SA:58:69,Europe/Paris,,OIF, +OIF:SP:58:696,1,"Vigne Blanche",48.981839,1.91244,0,0,OIF:SA:21:822,Europe/Paris,,OIF, +OIF:SP:58:697,1,"Vigne Blanche",48.981686,1.91225,0,0,OIF:SA:21:822,Europe/Paris,,OIF, +OIF:SP:58:70,1,"Les Pins",48.987115,1.949756,0,0,OIF:SA:58:70,Europe/Paris,,OIF, +OIF:SP:58:706,1,"La Chamoiserie",48.972091,1.918376,0,0,OIF:SA:58:706,Europe/Paris,,OIF, +OIF:SP:58:707,1,"Comtesse RD43",48.974253,1.917116,0,0,OIF:SA:21:470,Europe/Paris,,OIF, +OIF:SP:58:71,1,"Les Cerfs",48.986989,1.952283,0,0,OIF:SA:58:71,Europe/Paris,,OIF, +OIF:SP:58:72,1,"Sport CD154",48.985956,1.958094,0,0,OIF:SA:58:72,Europe/Paris,,OIF, +OIF:SP:58:739,1,"Gare de Meulan - Hardricourt",49.005619,1.900457,0,0,OIF:SA:8738183,Europe/Paris,,OIF, +OIF:SP:58:74,1,"Rainford",48.987277,1.966823,0,0,OIF:SA:58:74,Europe/Paris,,OIF, +OIF:SP:58:740,1,"Gare de Meulan - Hardricourt",49.005457,1.900376,0,0,OIF:SA:8738183,Europe/Paris,,OIF, +OIF:SP:58:75,1,"Aulnay-Mallo",48.989139,1.964557,0,0,OIF:SA:58:75,Europe/Paris,,OIF, +OIF:SP:58:76,1,"Gros Chêne",48.9903,1.961981,0,0,OIF:SA:58:76,Europe/Paris,,OIF, +OIF:SP:58:77,1,"Les Clairières",48.988941,1.950097,0,0,OIF:SA:58:424,Europe/Paris,,OIF, +OIF:SP:58:809,1,"Gare des Clairières de Verneuil",48.992112,1.955372,0,0,OIF:SA:8738666,Europe/Paris,,OIF, +OIF:SP:58:810,1,"Aulnay-Mallo",48.989013,1.964394,0,0,OIF:SA:58:75,Europe/Paris,,OIF, +OIF:SP:58:811,1,"Gros Chêne",48.99029,1.961695,0,0,OIF:SA:58:76,Europe/Paris,,OIF, +OIF:SP:58:812,1,"Rainford",48.987331,1.966727,0,0,OIF:SA:58:74,Europe/Paris,,OIF, +OIF:SP:58:896,1,"Monuments",48.951738,1.913669,0,0,OIF:SA:58:896,Europe/Paris,,OIF, +OIF:SP:58:897,1,"Auberge",48.93599,1.949852,0,0,OIF:SA:21:430,Europe/Paris,,OIF, +OIF:SP:58:898,1,"Auberge",48.935855,1.94988,0,0,OIF:SA:21:430,Europe/Paris,,OIF, +OIF:SP:58:910,1,"Chemin de Bichaille",48.932713,1.942715,0,0,OIF:SA:23:946,Europe/Paris,,OIF, +OIF:SP:58:911,1,"Chemin de Bichaille",48.932659,1.942797,0,0,OIF:SA:23:946,Europe/Paris,,OIF, +OIF:SP:58:956,1,"Centre Commercial",48.985746,1.968678,0,0,OIF:SA:58:956,Europe/Paris,,OIF, +OIF:SP:58:959,1,"Clos Hamelet",48.975157,1.979633,0,0,OIF:SA:58:959,Europe/Paris,,OIF, +OIF:SP:58:960,1,"Clos Hamelet",48.975203,1.979851,0,0,OIF:SA:58:959,Europe/Paris,,OIF, +OIF:SP:58:964,1,"Gare de Vernouillet-Verneuil",48.980701,1.982271,0,0,OIF:SA:8738665,Europe/Paris,,OIF, +OIF:SP:58:965,1,"Gare des Clairières de Verneuil",48.992175,1.95529,0,0,OIF:SA:8738666,Europe/Paris,,OIF, +OIF:SP:58:970,1,"Église",48.928781,1.936062,0,0,OIF:SA:23:1027,Europe/Paris,,OIF, +OIF:SP:58:980,1,"Bazincourt",48.970707,1.947463,0,0,OIF:SA:58:980,Europe/Paris,,OIF, +OIF:SP:58:981,1,"Bazincourt",48.97056,1.94659,0,0,OIF:SA:58:980,Europe/Paris,,OIF, +OIF:SP:58:982,1,"Route de Brézolles",48.965126,1.939138,0,0,OIF:SA:21:157,Europe/Paris,,OIF, +OIF:SP:58:983,1,"Chemin Vert",48.966175,1.943866,0,0,OIF:SA:58:983,Europe/Paris,,OIF, +OIF:SP:58:984,1,"Clos Saint-Denis",48.969973,1.940111,0,0,OIF:SA:58:984,Europe/Paris,,OIF, +OIF:SP:58:985,1,"Rue de la Garenne",48.964007,1.932513,0,0,OIF:SA:21:164,Europe/Paris,,OIF, +OIF:SP:58:986,1,"Mairie",48.9673,1.933525,0,0,OIF:SA:21:159,Europe/Paris,,OIF, +OIF:SP:58:995,1,"Koenig",48.978191,1.978274,0,0,OIF:SA:58:39,Europe/Paris,,OIF, +OIF:SP:58:996,1,"Merisiers",48.974422,1.965564,0,0,OIF:SA:58:996,Europe/Paris,,OIF, +OIF:SP:58:997,1,"Piscine",48.972997,1.960783,0,0,OIF:SA:58:997,Europe/Paris,,OIF, +OIF:SP:58:998,1,"Piscine",48.972997,1.960783,0,0,OIF:SA:58:997,Europe/Paris,,OIF, +OIF:SP:59000,1,"Pont de Bondy",48.904729,2.470071,0,0,OIF:SA:59000,Europe/Paris,,OIF, +OIF:SP:59001,1,"Pont de Bondy",48.904702,2.469989,0,0,OIF:SA:59000,Europe/Paris,,OIF, +OIF:SP:59002,1,"Petit Noisy",48.900025,2.465288,0,0,OIF:SA:59002,Europe/Paris,,OIF, +OIF:SP:59003,1,"Petit Noisy",48.900196,2.464961,0,0,OIF:SA:59002,Europe/Paris,,OIF, +OIF:SP:59004,1,"Noisy-le-Sec RER",48.895878,2.460493,0,0,OIF:SA:8711321,Europe/Paris,,OIF, +OIF:SP:59005,1,"Noisy-le-Sec RER",48.895968,2.460153,0,0,OIF:SA:8711321,Europe/Paris,,OIF, +OIF:SP:59006,1,"Jean Rostand",48.907837,2.454291,0,0,OIF:SA:59006,Europe/Paris,,OIF, +OIF:SP:59007,1,"Jean Rostand",48.907783,2.454223,0,0,OIF:SA:59006,Europe/Paris,,OIF, +OIF:SP:59008,1,"Auguste Delaune",48.906726,2.460328,0,0,OIF:SA:59008,Europe/Paris,,OIF, +OIF:SP:59009,1,"Auguste Delaune",48.906645,2.460301,0,0,OIF:SA:59008,Europe/Paris,,OIF, +OIF:SP:59010,1,"Parc de Saint-Cloud",48.842897,2.221695,0,0,OIF:SA:59010,Europe/Paris,,OIF, +OIF:SP:59012,1,"Parc de Saint-Cloud",48.84305,2.221899,0,0,OIF:SA:59010,Europe/Paris,,OIF, +OIF:SP:59014,1,"Hôpital Avicenne",48.915869,2.425811,0,0,OIF:SA:59014,Europe/Paris,,OIF, +OIF:SP:59015,1,"Maurice Lachâtre",48.919095,2.414361,0,0,OIF:SA:59015,Europe/Paris,,OIF, +OIF:SP:59016,1,"Basilique de Saint-Denis",48.937621,2.362019,0,0,OIF:SA:59541,Europe/Paris,,OIF, +OIF:SP:59017,1,"Les Moulineaux",48.821559,2.251319,0,0,OIF:SA:59017,Europe/Paris,,OIF, +OIF:SP:59019,1,"Les Moulineaux",48.821478,2.251428,0,0,OIF:SA:59017,Europe/Paris,,OIF, +OIF:SP:59021,1,"Meudon sur-Seine",48.819149,2.238638,0,0,OIF:SA:59021,Europe/Paris,,OIF, +OIF:SP:59023,1,"Meudon sur-Seine",48.819239,2.238706,0,0,OIF:SA:59021,Europe/Paris,,OIF, +OIF:SP:59025,1,"Brimborion",48.821965,2.231732,0,0,OIF:SA:59025,Europe/Paris,,OIF, +OIF:SP:59027,1,"Brimborion",48.822127,2.231378,0,0,OIF:SA:59025,Europe/Paris,,OIF, +OIF:SP:59029,1,"Puteaux",48.882893,2.233476,0,0,OIF:SA:8738238,Europe/Paris,,OIF, +OIF:SP:59031,1,"Puteaux",48.883001,2.233244,0,0,OIF:SA:8738238,Europe/Paris,,OIF, +OIF:SP:59033,1,"La Défense",48.893277,2.237666,0,0,OIF:SA:8738221,Europe/Paris,,OIF, +OIF:SP:59037,1,"Les Milons",48.850024,2.221162,0,0,OIF:SA:59037,Europe/Paris,,OIF, +OIF:SP:59039,1,"Les Milons",48.84997,2.221067,0,0,OIF:SA:59037,Europe/Paris,,OIF, +OIF:SP:59041,1,"Les Coteaux",48.857294,2.220614,0,0,OIF:SA:59041,Europe/Paris,,OIF, +OIF:SP:59043,1,"Les Coteaux",48.857285,2.220506,0,0,OIF:SA:59041,Europe/Paris,,OIF, +OIF:SP:59045,1,"Musée de Sevres",48.82861,2.225375,0,0,OIF:SA:59045,Europe/Paris,,OIF, +OIF:SP:59047,1,"Musée de Sevres",48.828763,2.225184,0,0,OIF:SA:59045,Europe/Paris,,OIF, +OIF:SP:59049,1,"Belvédère",48.876092,2.226063,0,0,OIF:SA:59049,Europe/Paris,,OIF, +OIF:SP:59051,1,"Belvédère",48.876146,2.225941,0,0,OIF:SA:59049,Europe/Paris,,OIF, +OIF:SP:59053,1,"Suresnes Longchamp",48.868116,2.221394,0,0,OIF:SA:59053,Europe/Paris,,OIF, +OIF:SP:59055,1,"Suresnes Longchamp",48.868125,2.221503,0,0,OIF:SA:59053,Europe/Paris,,OIF, +OIF:SP:59057,1,"Pont Garigliano - Hôpital Européen George Pompidou",48.837875,2.271225,0,0,OIF:SA:8739332,Europe/Paris,,OIF, +OIF:SP:59059,1,"Porte de Versailles - Parc des Expositions",48.832616,2.288045,0,0,OIF:SA:59514,Europe/Paris,,OIF, +OIF:SP:59060,1,"Brancion",48.828549,2.300723,0,0,OIF:SA:59060,Europe/Paris,,OIF, +OIF:SP:59061,1,"Porte de Vanves",48.827275,2.306441,0,0,OIF:SA:59527,Europe/Paris,,OIF, +OIF:SP:59062,1,"Didot",48.82573,2.313357,0,0,OIF:SA:59062,Europe/Paris,,OIF, +OIF:SP:59063,1,"Jean Moulin",48.824572,2.318638,0,0,OIF:SA:59063,Europe/Paris,,OIF, +OIF:SP:59064,1,"Poterne des Peupliers",48.82095,2.351809,0,0,OIF:SA:59064,Europe/Paris,,OIF, +OIF:SP:59065,1,"Porte d'Italie",48.819286,2.358601,0,0,OIF:SA:59666,Europe/Paris,,OIF, +OIF:SP:59066,1,"Porte d'Ivry",48.821674,2.370266,0,0,OIF:SA:59287,Europe/Paris,,OIF, +OIF:SP:59067,1,"Porte d'Ivry",48.821899,2.369981,0,0,OIF:SA:59287,Europe/Paris,,OIF, +OIF:SP:59068,1,"Bobigny - Pablo Picasso",48.906646,2.449939,0,0,OIF:SA:59342,Europe/Paris,,OIF, +OIF:SP:59069,1,"Bobigny - Pablo Picasso",48.906529,2.449694,0,0,OIF:SA:59342,Europe/Paris,,OIF, +OIF:SP:59070,1,"Hôtel de Ville de Bobigny",48.906679,2.443505,0,0,OIF:SA:59070,Europe/Paris,,OIF, +OIF:SP:59071,1,"Hôtel de Ville de Bobigny",48.906526,2.443886,0,0,OIF:SA:59070,Europe/Paris,,OIF, +OIF:SP:59072,1,"Libération",48.906989,2.438788,0,0,OIF:SA:59072,Europe/Paris,,OIF, +OIF:SP:59073,1,"Libération",48.906764,2.438529,0,0,OIF:SA:59072,Europe/Paris,,OIF, +OIF:SP:59074,1,"La Ferme",48.90974,2.437648,0,0,OIF:SA:59074,Europe/Paris,,OIF, +OIF:SP:59075,1,"La Ferme",48.909614,2.437307,0,0,OIF:SA:59074,Europe/Paris,,OIF, +OIF:SP:59076,1,"Escadrille Normandie-Niemen",48.912905,2.43505,0,0,OIF:SA:59076,Europe/Paris,,OIF, +OIF:SP:59077,1,"Escadrille Normandie-Niemen",48.912806,2.434982,0,0,OIF:SA:59076,Europe/Paris,,OIF, +OIF:SP:59078,1,"Gaston Roulaud",48.914149,2.430975,0,0,OIF:SA:59078,Europe/Paris,,OIF, +OIF:SP:59079,1,"Hôpital Avicenne",48.915654,2.425688,0,0,OIF:SA:59014,Europe/Paris,,OIF, +OIF:SP:59080,1,"Drancy-Avenir",48.91779,2.417114,0,0,OIF:SA:59080,Europe/Paris,,OIF, +OIF:SP:59081,1,"Maurice Lachâtre",48.918816,2.414156,0,0,OIF:SA:59015,Europe/Paris,,OIF, +OIF:SP:59082,1,"La Courneuve - 8 Mai 1945",48.920552,2.411268,0,0,OIF:SA:59320,Europe/Paris,,OIF, +OIF:SP:59083,1,"La Courneuve - 8 Mai 1945",48.920904,2.410027,0,0,OIF:SA:59320,Europe/Paris,,OIF, +OIF:SP:59084,1,"Danton",48.922838,2.406784,0,0,OIF:SA:59084,Europe/Paris,,OIF, +OIF:SP:59085,1,"Danton",48.922541,2.406539,0,0,OIF:SA:59084,Europe/Paris,,OIF, +OIF:SP:59086,1,"Stade Géo André",48.924449,2.402095,0,0,OIF:SA:59086,Europe/Paris,,OIF, +OIF:SP:59087,1,"Stade Géo André",48.924314,2.402013,0,0,OIF:SA:59086,Europe/Paris,,OIF, +OIF:SP:59088,1,"Hôtel de Ville de la Courneuve",48.92742,2.392934,0,0,OIF:SA:59088,Europe/Paris,,OIF, +OIF:SP:59089,1,"Hôtel de Ville de la Courneuve",48.927132,2.392824,0,0,OIF:SA:59088,Europe/Paris,,OIF, +OIF:SP:59090,1,"La Courneuve - Six Routes",48.930245,2.384398,0,0,OIF:SA:59090,Europe/Paris,,OIF, +OIF:SP:59091,1,"La Courneuve - Six Routes",48.929967,2.384166,0,0,OIF:SA:59090,Europe/Paris,,OIF, +OIF:SP:59092,1,"Cosmonautes",48.931685,2.37818,0,0,OIF:SA:59092,Europe/Paris,,OIF, +OIF:SP:59093,1,"Gaston Roulaud",48.914257,2.430989,0,0,OIF:SA:59078,Europe/Paris,,OIF, +OIF:SP:59094,1,"Drancy-Avenir",48.918122,2.417251,0,0,OIF:SA:59080,Europe/Paris,,OIF, +OIF:SP:59095,1,"Cosmonautes",48.93182,2.378234,0,0,OIF:SA:59092,Europe/Paris,,OIF, +OIF:SP:59096,1,"Hôpital Delafontaine",48.93362,2.371211,0,0,OIF:SA:59096,Europe/Paris,,OIF, +OIF:SP:59097,1,"Hôpital Delafontaine",48.933449,2.371102,0,0,OIF:SA:59096,Europe/Paris,,OIF, +OIF:SP:59098,1,"Cimetière de Saint-Denis",48.936426,2.364092,0,0,OIF:SA:59098,Europe/Paris,,OIF, +OIF:SP:59099,1,"Cimetière de Saint-Denis",48.936183,2.364174,0,0,OIF:SA:59098,Europe/Paris,,OIF, +OIF:SP:59100,1,"Basilique de Saint-Denis",48.937576,2.361665,0,0,OIF:SA:59541,Europe/Paris,,OIF, +OIF:SP:59101,1,"Marche de Saint-Denis",48.938638,2.355663,0,0,OIF:SA:59101,Europe/Paris,,OIF, +OIF:SP:59102,1,"Marche de Saint-Denis",48.938431,2.355717,0,0,OIF:SA:59101,Europe/Paris,,OIF, +OIF:SP:59103,1,"Théâtre Gérard Philipe",48.937255,2.350069,0,0,OIF:SA:59103,Europe/Paris,,OIF, +OIF:SP:59104,1,"Théâtre Gérard Philipe",48.937228,2.350315,0,0,OIF:SA:59103,Europe/Paris,,OIF, +OIF:SP:59105,1,"Gare de Saint-Denis RER",48.936033,2.345404,0,0,OIF:SA:8727101,Europe/Paris,,OIF, +OIF:SP:59106,1,"Gare de Saint-Denis RER",48.935916,2.345254,0,0,OIF:SA:8727101,Europe/Paris,,OIF, +OIF:SP:59107,1,"Porte d'Orléans",48.822838,2.32618,0,0,OIF:SA:59624,Europe/Paris,,OIF, +OIF:SP:59108,1,"Montsouris",48.821221,2.333911,0,0,OIF:SA:59108,Europe/Paris,,OIF, +OIF:SP:59109,1,"Cité Universitaire",48.820052,2.339179,0,0,OIF:SA:59109,Europe/Paris,,OIF, +OIF:SP:59110,1,"Balard",48.836485,2.277286,0,0,OIF:SA:59477,Europe/Paris,,OIF, +OIF:SP:59111,1,"Porte de Versailles - Parc des Expositions",48.832868,2.288249,0,0,OIF:SA:59514,Europe/Paris,,OIF, +OIF:SP:59112,1,"Georges Brassens",48.83021,2.29499,0,0,OIF:SA:59112,Europe/Paris,,OIF, +OIF:SP:59113,1,"Brancion",48.82881,2.300995,0,0,OIF:SA:59060,Europe/Paris,,OIF, +OIF:SP:59114,1,"Porte de Vanves",48.827652,2.306236,0,0,OIF:SA:59527,Europe/Paris,,OIF, +OIF:SP:59115,1,"Didot",48.82609,2.313506,0,0,OIF:SA:59062,Europe/Paris,,OIF, +OIF:SP:59116,1,"Jean Moulin",48.82485,2.31902,0,0,OIF:SA:59063,Europe/Paris,,OIF, +OIF:SP:59117,1,"Porte d'Orléans",48.823521,2.324791,0,0,OIF:SA:59624,Europe/Paris,,OIF, +OIF:SP:59118,1,"Montsouris",48.821661,2.33338,0,0,OIF:SA:59108,Europe/Paris,,OIF, +OIF:SP:59119,1,"Cité Universitaire",48.820627,2.338103,0,0,OIF:SA:59109,Europe/Paris,,OIF, +OIF:SP:59120,1,"Stade Charléty - Porte de Gentilly",48.819495,2.34582,0,0,OIF:SA:59120,Europe/Paris,,OIF, +OIF:SP:59121,1,"Stade Charléty - Porte de Gentilly",48.81971,2.345603,0,0,OIF:SA:59120,Europe/Paris,,OIF, +OIF:SP:59122,1,"Poterne des Peupliers",48.820914,2.349972,0,0,OIF:SA:59064,Europe/Paris,,OIF, +OIF:SP:59123,1,"Porte d'Italie",48.818908,2.360397,0,0,OIF:SA:59666,Europe/Paris,,OIF, +OIF:SP:59124,1,"Porte de Choisy",48.819716,2.364099,0,0,OIF:SA:59663,Europe/Paris,,OIF, +OIF:SP:59125,1,"Porte de Choisy",48.819923,2.363759,0,0,OIF:SA:59663,Europe/Paris,,OIF, +OIF:SP:59126,1,"Porte de Versailles",48.832211,2.287378,0,0,OIF:SA:59514,Europe/Paris,,OIF, +OIF:SP:59128,1,"Porte d'Issy",48.831696,2.281008,0,0,OIF:SA:59128,Europe/Paris,,OIF, +OIF:SP:59129,1,"Porte d'Issy",48.831858,2.281062,0,0,OIF:SA:59128,Europe/Paris,,OIF, +OIF:SP:59130,1,"Suzanne Lenglen",48.83368,2.27639,0,0,OIF:SA:59130,Europe/Paris,,OIF, +OIF:SP:59131,1,"Suzanne Lenglen",48.833554,2.2762,0,0,OIF:SA:59130,Europe/Paris,,OIF, +OIF:SP:59132,1,"Henri Farman",48.834828,2.271597,0,0,OIF:SA:59132,Europe/Paris,,OIF, +OIF:SP:59133,1,"Henri Farman",48.834918,2.271597,0,0,OIF:SA:59132,Europe/Paris,,OIF, +OIF:SP:59134,1,"Issy - Val de Seine",48.829107,2.262674,0,0,OIF:SA:59134,Europe/Paris,,OIF, +OIF:SP:59135,1,"Issy - Val de Seine",48.829574,2.262836,0,0,OIF:SA:59134,Europe/Paris,,OIF, +OIF:SP:59136,1,"Jacques-Henri Lartigue",48.824791,2.260475,0,0,OIF:SA:59136,Europe/Paris,,OIF, +OIF:SP:59138,1,"Jacques-Henri Lartigue",48.82472,2.260597,0,0,OIF:SA:59136,Europe/Paris,,OIF, +OIF:SP:59142,1,"Balard",48.835722,2.278948,0,0,OIF:SA:59477,Europe/Paris,,OIF, +OIF:SP:59143,1,"Desnouettes",48.834026,2.284341,0,0,OIF:SA:59143,Europe/Paris,,OIF, +OIF:SP:59144,1,"Desnouettes",48.834753,2.28336,0,0,OIF:SA:59143,Europe/Paris,,OIF, +OIF:SP:59145,1,"Georges Brassens",48.829465,2.296434,0,0,OIF:SA:59112,Europe/Paris,,OIF, +OIF:SP:59200,1,"Gare d'Austerlitz",48.843417,2.364207,0,0,OIF:SA:8754700,Europe/Paris,,OIF, +OIF:SP:59201,1,"Gare d'Austerlitz",48.843723,2.363935,0,0,OIF:SA:8754700,Europe/Paris,,OIF, +OIF:SP:59204,1,"Créteil-Préfecture (Hôtel de Ville)",48.779759,2.459333,0,0,OIF:SA:59204,Europe/Paris,,OIF, +OIF:SP:59205,1,"Bir-Hakeim (Grenelle)",48.85433,2.288828,0,0,OIF:SA:59205,Europe/Paris,,OIF, +OIF:SP:59206,1,"Funiculaire Gare Basse",48.884699,2.342629,0,0,OIF:SA:59206,Europe/Paris,,OIF, +OIF:SP:59207,1,"La Muette",48.858098,2.274114,0,0,OIF:SA:59207,Europe/Paris,,OIF, +OIF:SP:59208,1,"Les Halles",48.862015,2.346495,0,0,OIF:SA:59208,Europe/Paris,,OIF, +OIF:SP:59209,1,"Opéra",48.870562,2.332573,0,0,OIF:SA:59209,Europe/Paris,,OIF, +OIF:SP:59211,1,"Opéra",48.870724,2.332273,0,0,OIF:SA:59209,Europe/Paris,,OIF, +OIF:SP:59212,1,"Opéra",48.870634,2.331756,0,0,OIF:SA:59209,Europe/Paris,,OIF, +OIF:SP:59213,1,"Porte Dauphine (Maréchal de Lattre de Tassigny)",48.871795,2.274888,0,0,OIF:SA:59213,Europe/Paris,,OIF, +OIF:SP:59214,1,"Gare de l'Est (Verdun)",48.87642,2.359006,0,0,OIF:SA:8711300,Europe/Paris,,OIF, +OIF:SP:59216,1,"Gare de l'Est (Verdun)",48.876699,2.358011,0,0,OIF:SA:8711300,Europe/Paris,,OIF, +OIF:SP:59217,1,"Gare de l'Est (Verdun)",48.876815,2.35827,0,0,OIF:SA:8711300,Europe/Paris,,OIF, +OIF:SP:59218,1,"La Chapelle",48.884391,2.359295,0,0,OIF:SA:59218,Europe/Paris,,OIF, +OIF:SP:59219,1,"Pereire",48.885034,2.297153,0,0,OIF:SA:59219,Europe/Paris,,OIF, +OIF:SP:59220,1,"Saint-Lazare",48.875541,2.325215,0,0,OIF:SA:8738400,Europe/Paris,,OIF, +OIF:SP:59221,1,"Saint-Lazare",48.875685,2.32561,0,0,OIF:SA:8738400,Europe/Paris,,OIF, +OIF:SP:59222,1,"Saint-Lazare",48.875424,2.326714,0,0,OIF:SA:8738400,Europe/Paris,,OIF, +OIF:SP:59223,1,"Saint-Lazare",48.876071,2.324207,0,0,OIF:SA:8738400,Europe/Paris,,OIF, +OIF:SP:59225,1,"Saint-Paul (le Marais)",48.855137,2.361353,0,0,OIF:SA:59225,Europe/Paris,,OIF, +OIF:SP:59226,1,"Tuileries",48.864783,2.329113,0,0,OIF:SA:59226,Europe/Paris,,OIF, +OIF:SP:59227,1,"Reuilly-Diderot",48.847355,2.385861,0,0,OIF:SA:59227,Europe/Paris,,OIF, +OIF:SP:59228,1,"Porte de Vincennes",48.847019,2.410836,0,0,OIF:SA:59228,Europe/Paris,,OIF, +OIF:SP:59229,1,"Porte Maillot",48.878009,2.282484,0,0,OIF:SA:8738102,Europe/Paris,,OIF, +OIF:SP:59230,1,"Nation",48.848114,2.398023,0,0,OIF:SA:8775810,Europe/Paris,,OIF, +OIF:SP:59231,1,"Louvre-Rivoli",48.860883,2.340992,0,0,OIF:SA:59231,Europe/Paris,,OIF, +OIF:SP:59232,1,"Franklin-Roosevelt",48.869014,2.310272,0,0,OIF:SA:59232,Europe/Paris,,OIF, +OIF:SP:59233,1,"Gare de Lyon",48.845562,2.373468,0,0,OIF:SA:8768600,Europe/Paris,,OIF, +OIF:SP:59234,1,"George V",48.872049,2.300788,0,0,OIF:SA:59234,Europe/Paris,,OIF, +OIF:SP:59235,1,"Concorde",48.865681,2.321212,0,0,OIF:SA:59235,Europe/Paris,,OIF, +OIF:SP:59236,1,"Charles de Gaulle-Etoile",48.873934,2.295146,0,0,OIF:SA:8775800,Europe/Paris,,OIF, +OIF:SP:59237,1,"Argentine",48.875676,2.289462,0,0,OIF:SA:59237,Europe/Paris,,OIF, +OIF:SP:59238,1,"Bastille",48.852978,2.369238,0,0,OIF:SA:59238,Europe/Paris,,OIF, +OIF:SP:59239,1,"Concorde",48.865492,2.32143,0,0,OIF:SA:59235,Europe/Paris,,OIF, +OIF:SP:59240,1,"Nation",48.849426,2.397044,0,0,OIF:SA:8775810,Europe/Paris,,OIF, +OIF:SP:59241,1,"Charles de Gaulle-Etoile",48.873997,2.294682,0,0,OIF:SA:8775800,Europe/Paris,,OIF, +OIF:SP:59242,1,"Bastille",48.853392,2.369183,0,0,OIF:SA:59238,Europe/Paris,,OIF, +OIF:SP:59243,1,"Nation",48.847458,2.397791,0,0,OIF:SA:8775810,Europe/Paris,,OIF, +OIF:SP:59244,1,"Charles de Gaulle-Etoile",48.873718,2.294778,0,0,OIF:SA:8775800,Europe/Paris,,OIF, +OIF:SP:59245,1,"Reuilly-Diderot",48.84722,2.387223,0,0,OIF:SA:59227,Europe/Paris,,OIF, +OIF:SP:59246,1,"Concorde",48.86551,2.320381,0,0,OIF:SA:59235,Europe/Paris,,OIF, +OIF:SP:59247,1,"Bastille",48.853742,2.369184,0,0,OIF:SA:59238,Europe/Paris,,OIF, +OIF:SP:59248,1,"Nation",48.849013,2.397684,0,0,OIF:SA:8775810,Europe/Paris,,OIF, +OIF:SP:59249,1,"Franklin-Roosevelt",48.868816,2.309945,0,0,OIF:SA:59232,Europe/Paris,,OIF, +OIF:SP:59250,1,"Les Sablons (Jardin d'Acclimatation)",48.881303,2.271933,0,0,OIF:SA:59250,Europe/Paris,,OIF, +OIF:SP:59251,1,"Raspail",48.83916,2.330493,0,0,OIF:SA:59251,Europe/Paris,,OIF, +OIF:SP:59252,1,"Marcadet-Poissonniers",48.891547,2.34939,0,0,OIF:SA:59252,Europe/Paris,,OIF, +OIF:SP:59253,1,"Strasbourg-Saint-Denis",48.869635,2.354521,0,0,OIF:SA:59253,Europe/Paris,,OIF, +OIF:SP:59254,1,"Vavin",48.842063,2.328885,0,0,OIF:SA:59254,Europe/Paris,,OIF, +OIF:SP:59255,1,"Saint-Michel",48.853603,2.344015,0,0,OIF:SA:8754731,Europe/Paris,,OIF, +OIF:SP:59256,1,"Saint-Placide",48.847015,2.327073,0,0,OIF:SA:59256,Europe/Paris,,OIF, +OIF:SP:59257,1,"Saint-Sulpice",48.851149,2.330981,0,0,OIF:SA:59257,Europe/Paris,,OIF, +OIF:SP:59258,1,"Porte de Clignancourt",48.897973,2.344007,0,0,OIF:SA:59258,Europe/Paris,,OIF, +OIF:SP:59259,1,"Montparnasse-Bienvenue",48.844192,2.32446,0,0,OIF:SA:8739100,Europe/Paris,,OIF, +OIF:SP:59260,1,"Mouton-Duvernet",48.832194,2.330425,0,0,OIF:SA:59260,Europe/Paris,,OIF, +OIF:SP:59261,1,"Etienne Marcel",48.863713,2.349002,0,0,OIF:SA:59261,Europe/Paris,,OIF, +OIF:SP:59262,1,"Gare du Nord",48.879746,2.35462,0,0,OIF:SA:8727100,Europe/Paris,,OIF, +OIF:SP:59263,1,"Odéon",48.852318,2.33888,0,0,OIF:SA:59263,Europe/Paris,,OIF, +OIF:SP:59266,1,"Montparnasse-Bienvenue",48.844031,2.323588,0,0,OIF:SA:8739100,Europe/Paris,,OIF, +OIF:SP:59267,1,"Marcadet-Poissonniers",48.89161,2.349567,0,0,OIF:SA:59252,Europe/Paris,,OIF, +OIF:SP:59268,1,"Montparnasse-Bienvenue",48.84208,2.321029,0,0,OIF:SA:8739100,Europe/Paris,,OIF, +OIF:SP:59270,1,"Gare du Nord",48.879386,2.356391,0,0,OIF:SA:8727100,Europe/Paris,,OIF, +OIF:SP:59271,1,"Raspail",48.838881,2.330697,0,0,OIF:SA:59251,Europe/Paris,,OIF, +OIF:SP:59272,1,"Montparnasse-Bienvenue",48.841873,2.321247,0,0,OIF:SA:8739100,Europe/Paris,,OIF, +OIF:SP:59273,1,"Strasbourg-Saint-Denis",48.869384,2.354098,0,0,OIF:SA:59253,Europe/Paris,,OIF, +OIF:SP:59274,1,"Strasbourg-Saint-Denis",48.869231,2.354548,0,0,OIF:SA:59253,Europe/Paris,,OIF, +OIF:SP:59275,1,"Place d'Italie",48.831555,2.355352,0,0,OIF:SA:59275,Europe/Paris,,OIF, +OIF:SP:59277,1,"Place Monge (Jardin des Plantes)",48.843167,2.352129,0,0,OIF:SA:59277,Europe/Paris,,OIF, +OIF:SP:59279,1,"Stalingrad",48.884075,2.368889,0,0,OIF:SA:59279,Europe/Paris,,OIF, +OIF:SP:59281,1,"Sully-Morland",48.850796,2.361256,0,0,OIF:SA:59281,Europe/Paris,,OIF, +OIF:SP:59283,1,"Tolbiac",48.826162,2.357038,0,0,OIF:SA:59283,Europe/Paris,,OIF, +OIF:SP:59285,1,"Riquet",48.888396,2.374452,0,0,OIF:SA:59285,Europe/Paris,,OIF, +OIF:SP:59287,1,"Porte d'Ivry",48.82136,2.369327,0,0,OIF:SA:59287,Europe/Paris,,OIF, +OIF:SP:59288,1,"Porte de la Villette",48.897532,2.385663,0,0,OIF:SA:59288,Europe/Paris,,OIF, +OIF:SP:59290,1,"Pyramides",48.8665,2.334113,0,0,OIF:SA:59290,Europe/Paris,,OIF, +OIF:SP:59292,1,"Le Peletier",48.874966,2.340175,0,0,OIF:SA:59292,Europe/Paris,,OIF, +OIF:SP:59294,1,"Les Gobelins",48.83613,2.3521,0,0,OIF:SA:59294,Europe/Paris,,OIF, +OIF:SP:59296,1,"Louis Blanc",48.880903,2.365126,0,0,OIF:SA:59296,Europe/Paris,,OIF, +OIF:SP:59298,1,"Maison Blanche",48.822881,2.358098,0,0,OIF:SA:59298,Europe/Paris,,OIF, +OIF:SP:59300,1,"Jussieu",48.845971,2.354826,0,0,OIF:SA:59300,Europe/Paris,,OIF, +OIF:SP:59302,1,"Corentin-Cariou",48.894684,2.382321,0,0,OIF:SA:59302,Europe/Paris,,OIF, +OIF:SP:59304,1,"Cadet",48.875829,2.343364,0,0,OIF:SA:59304,Europe/Paris,,OIF, +OIF:SP:59306,1,"Censier-Daubenton",48.840597,2.351774,0,0,OIF:SA:59306,Europe/Paris,,OIF, +OIF:SP:59308,1,"Stalingrad",48.884192,2.367049,0,0,OIF:SA:59279,Europe/Paris,,OIF, +OIF:SP:59309,1,"Stalingrad",48.884156,2.367376,0,0,OIF:SA:59279,Europe/Paris,,OIF, +OIF:SP:59310,1,"Place d'Italie",48.831285,2.355474,0,0,OIF:SA:59275,Europe/Paris,,OIF, +OIF:SP:59311,1,"Place d'Italie",48.831115,2.355815,0,0,OIF:SA:59275,Europe/Paris,,OIF, +OIF:SP:59312,1,"Jussieu",48.845764,2.354567,0,0,OIF:SA:59300,Europe/Paris,,OIF, +OIF:SP:59315,1,"Louis Blanc",48.881496,2.365794,0,0,OIF:SA:59296,Europe/Paris,,OIF, +OIF:SP:59316,1,"Fort d'Aubervilliers",48.914059,2.403596,0,0,OIF:SA:59316,Europe/Paris,,OIF, +OIF:SP:59318,1,"Aubervilliers Pantin (4 Chemins)",48.903901,2.392499,0,0,OIF:SA:59318,Europe/Paris,,OIF, +OIF:SP:59320,1,"La Courneuve-8-Mai-1945",48.920517,2.410245,0,0,OIF:SA:59320,Europe/Paris,,OIF, +OIF:SP:59322,1,"Mairie d'Ivry",48.811217,2.383528,0,0,OIF:SA:59322,Europe/Paris,,OIF, +OIF:SP:59323,1,"Villejuif-Louis Aragon",48.78664,2.367129,0,0,OIF:SA:59323,Europe/Paris,,OIF, +OIF:SP:59324,1,"Funiculaire Gare Haute",48.88558,2.342561,0,0,OIF:SA:59324,Europe/Paris,,OIF, +OIF:SP:59325,1,"Gambetta",48.865037,2.39856,0,0,OIF:SA:59325,Europe/Paris,,OIF, +OIF:SP:59326,1,"Saint-Fargeau",48.871702,2.404318,0,0,OIF:SA:59326,Europe/Paris,,OIF, +OIF:SP:59327,1,"Porte des Lilas",48.876941,2.406396,0,0,OIF:SA:59327,Europe/Paris,,OIF, +OIF:SP:59328,1,"Pelleport",48.868226,2.401343,0,0,OIF:SA:59328,Europe/Paris,,OIF, +OIF:SP:59329,1,"Gambetta",48.864785,2.398465,0,0,OIF:SA:59325,Europe/Paris,,OIF, +OIF:SP:59330,1,"Porte des Lilas",48.877237,2.406546,0,0,OIF:SA:59327,Europe/Paris,,OIF, +OIF:SP:59331,1,"Danube",48.881954,2.39328,0,0,OIF:SA:59331,Europe/Paris,,OIF, +OIF:SP:59332,1,"Botzaris",48.87961,2.389435,0,0,OIF:SA:59332,Europe/Paris,,OIF, +OIF:SP:59333,1,"Buttes-Chaumont",48.877807,2.38123,0,0,OIF:SA:59333,Europe/Paris,,OIF, +OIF:SP:59334,1,"Bolivar",48.880793,2.374174,0,0,OIF:SA:59334,Europe/Paris,,OIF, +OIF:SP:59335,1,"Saint-Marcel",48.838519,2.360746,0,0,OIF:SA:59335,Europe/Paris,,OIF, +OIF:SP:59336,1,"Richard-Lenoir",48.860689,2.37243,0,0,OIF:SA:59336,Europe/Paris,,OIF, +OIF:SP:59337,1,"Ourcq",48.886926,2.386675,0,0,OIF:SA:59337,Europe/Paris,,OIF, +OIF:SP:59338,1,"Oberkampf",48.864968,2.367651,0,0,OIF:SA:59338,Europe/Paris,,OIF, +OIF:SP:59339,1,"Campo-Formio",48.835554,2.358771,0,0,OIF:SA:59339,Europe/Paris,,OIF, +OIF:SP:59340,1,"Jacques-Bonsergent",48.870704,2.360597,0,0,OIF:SA:59340,Europe/Paris,,OIF, +OIF:SP:59342,1,"Bobigny-Pablo-Picasso",48.90715,2.449477,0,0,OIF:SA:59342,Europe/Paris,,OIF, +OIF:SP:59343,1,"Bobigny-Pantin (Raymond Queneau)",48.895802,2.424877,0,0,OIF:SA:59343,Europe/Paris,,OIF, +OIF:SP:59344,1,"Église de Pantin",48.893635,2.412919,0,0,OIF:SA:59344,Europe/Paris,,OIF, +OIF:SP:59345,1,"Hoche",48.891502,2.403144,0,0,OIF:SA:59345,Europe/Paris,,OIF, +OIF:SP:59346,1,"La Motte-Picquet-Grenelle",48.848824,2.297971,0,0,OIF:SA:59346,Europe/Paris,,OIF, +OIF:SP:59349,1,"Duroc",48.846852,2.316956,0,0,OIF:SA:59349,Europe/Paris,,OIF, +OIF:SP:59353,1,"Mabillon",48.852848,2.335162,0,0,OIF:SA:59353,Europe/Paris,,OIF, +OIF:SP:59357,1,"Maubert-Mutualité",48.84972,2.348944,0,0,OIF:SA:59357,Europe/Paris,,OIF, +OIF:SP:59360,1,"Michel-Ange-Auteuil",48.847937,2.264853,0,0,OIF:SA:59360,Europe/Paris,,OIF, +OIF:SP:59362,1,"Sèvres-Babylone",48.850942,2.326133,0,0,OIF:SA:59362,Europe/Paris,,OIF, +OIF:SP:59365,1,"Vaneau",48.848704,2.321258,0,0,OIF:SA:59365,Europe/Paris,,OIF, +OIF:SP:59368,1,"Ségur",48.846868,2.307287,0,0,OIF:SA:59368,Europe/Paris,,OIF, +OIF:SP:59371,1,"Michel-Ange-Molitor",48.844988,2.262338,0,0,OIF:SA:59371,Europe/Paris,,OIF, +OIF:SP:59374,1,"Mirabeau",48.847088,2.273093,0,0,OIF:SA:59374,Europe/Paris,,OIF, +OIF:SP:59377,1,"Cluny-la Sorbonne",48.850799,2.345049,0,0,OIF:SA:59377,Europe/Paris,,OIF, +OIF:SP:59380,1,"Cardinal-Lemoine",48.846709,2.351354,0,0,OIF:SA:59380,Europe/Paris,,OIF, +OIF:SP:59383,1,"Chardon-Lagache",48.845107,2.266954,0,0,OIF:SA:59383,Europe/Paris,,OIF, +OIF:SP:59386,1,"Charles Michels",48.846366,2.285649,0,0,OIF:SA:59386,Europe/Paris,,OIF, +OIF:SP:59389,1,"Avenue Emile-Zola",48.846855,2.295467,0,0,OIF:SA:59389,Europe/Paris,,OIF, +OIF:SP:59392,1,"La Motte-Picquet-Grenelle",48.849022,2.29778,0,0,OIF:SA:59346,Europe/Paris,,OIF, +OIF:SP:59393,1,"La Motte-Picquet-Grenelle",48.848806,2.297712,0,0,OIF:SA:59346,Europe/Paris,,OIF, +OIF:SP:59394,1,"Michel-Ange-Auteuil",48.847928,2.264254,0,0,OIF:SA:59360,Europe/Paris,,OIF, +OIF:SP:59395,1,"Michel-Ange-Molitor",48.845059,2.261929,0,0,OIF:SA:59371,Europe/Paris,,OIF, +OIF:SP:59396,1,"Duroc",48.846995,2.316561,0,0,OIF:SA:59349,Europe/Paris,,OIF, +OIF:SP:59398,1,"Boulogne-Jean-Jaurès",48.842283,2.238881,0,0,OIF:SA:59398,Europe/Paris,,OIF, +OIF:SP:59400,1,"Boulogne Pont de Saint-Cloud",48.840684,2.228331,0,0,OIF:SA:59400,Europe/Paris,,OIF, +OIF:SP:59402,1,"Pyrénées",48.873824,2.384905,0,0,OIF:SA:59402,Europe/Paris,,OIF, +OIF:SP:59403,1,"Rambuteau",48.861196,2.353306,0,0,OIF:SA:59403,Europe/Paris,,OIF, +OIF:SP:59404,1,"Télégraphe",48.875525,2.398696,0,0,OIF:SA:59404,Europe/Paris,,OIF, +OIF:SP:59405,1,"Jourdain",48.875251,2.389348,0,0,OIF:SA:59405,Europe/Paris,,OIF, +OIF:SP:59406,1,"Belleville",48.871948,2.37677,0,0,OIF:SA:59406,Europe/Paris,,OIF, +OIF:SP:59407,1,"Belleville",48.87229,2.376757,0,0,OIF:SA:59406,Europe/Paris,,OIF, +OIF:SP:59408,1,"Mairie des Lilas",48.880053,2.415679,0,0,OIF:SA:59408,Europe/Paris,,OIF, +OIF:SP:59409,1,"Pyramides",48.866617,2.334426,0,0,OIF:SA:59290,Europe/Paris,,OIF, +OIF:SP:59410,1,"Bercy",48.840545,2.379428,0,0,OIF:SA:59410,Europe/Paris,,OIF, +OIF:SP:59411,1,"Cour Saint-Émilion",48.833523,2.386284,0,0,OIF:SA:59411,Europe/Paris,,OIF, +OIF:SP:59412,1,"Madeleine",48.869798,2.32463,0,0,OIF:SA:59412,Europe/Paris,,OIF, +OIF:SP:59413,1,"Bercy",48.840195,2.379496,0,0,OIF:SA:59410,Europe/Paris,,OIF, +OIF:SP:59414,1,"Madeleine",48.86951,2.324699,0,0,OIF:SA:59412,Europe/Paris,,OIF, +OIF:SP:59415,1,"Villiers",48.881327,2.316615,0,0,OIF:SA:59415,Europe/Paris,,OIF, +OIF:SP:59416,1,"Ternes",48.878231,2.29814,0,0,OIF:SA:59416,Europe/Paris,,OIF, +OIF:SP:59417,1,"Victor Hugo",48.869868,2.285244,0,0,OIF:SA:59417,Europe/Paris,,OIF, +OIF:SP:59418,1,"Rome",48.882074,2.320417,0,0,OIF:SA:59418,Europe/Paris,,OIF, +OIF:SP:59419,1,"Philippe Auguste",48.858381,2.389754,0,0,OIF:SA:59419,Europe/Paris,,OIF, +OIF:SP:59420,1,"Pigalle",48.882425,2.337273,0,0,OIF:SA:59420,Europe/Paris,,OIF, +OIF:SP:59421,1,"Place de Clichy",48.883459,2.327394,0,0,OIF:SA:59421,Europe/Paris,,OIF, +OIF:SP:59422,1,"Monceau",48.88058,2.309434,0,0,OIF:SA:59422,Europe/Paris,,OIF, +OIF:SP:59423,1,"Colonel Fabien",48.878188,2.370193,0,0,OIF:SA:59423,Europe/Paris,,OIF, +OIF:SP:59424,1,"Courcelles",48.879275,2.303317,0,0,OIF:SA:59424,Europe/Paris,,OIF, +OIF:SP:59425,1,"Alexandre-Dumas",48.856429,2.394573,0,0,OIF:SA:59425,Europe/Paris,,OIF, +OIF:SP:59426,1,"Anvers",48.882875,2.344182,0,0,OIF:SA:59426,Europe/Paris,,OIF, +OIF:SP:59427,1,"Avron",48.851196,2.398258,0,0,OIF:SA:59427,Europe/Paris,,OIF, +OIF:SP:59428,1,"Blanche",48.883773,2.332504,0,0,OIF:SA:59428,Europe/Paris,,OIF, +OIF:SP:59429,1,"Couronnes",48.869332,2.380555,0,0,OIF:SA:59429,Europe/Paris,,OIF, +OIF:SP:59430,1,"Villiers",48.881408,2.316166,0,0,OIF:SA:59415,Europe/Paris,,OIF, +OIF:SP:59431,1,"Pigalle",48.88203,2.337232,0,0,OIF:SA:59420,Europe/Paris,,OIF, +OIF:SP:59432,1,"Place de Clichy",48.883207,2.327285,0,0,OIF:SA:59421,Europe/Paris,,OIF, +OIF:SP:59434,1,"Parmentier",48.865262,2.374776,0,0,OIF:SA:59434,Europe/Paris,,OIF, +OIF:SP:59435,1,"Porte de Bagnolet",48.864339,2.408844,0,0,OIF:SA:59435,Europe/Paris,,OIF, +OIF:SP:59436,1,"Porte de Champerret",48.885742,2.291879,0,0,OIF:SA:59436,Europe/Paris,,OIF, +OIF:SP:59437,1,"Quatre Septembre",48.869663,2.336347,0,0,OIF:SA:59437,Europe/Paris,,OIF, +OIF:SP:59438,1,"Temple",48.866767,2.36159,0,0,OIF:SA:59438,Europe/Paris,,OIF, +OIF:SP:59439,1,"Wagram",48.883716,2.305576,0,0,OIF:SA:59439,Europe/Paris,,OIF, +OIF:SP:59440,1,"Sentier",48.867353,2.347586,0,0,OIF:SA:59440,Europe/Paris,,OIF, +OIF:SP:59441,1,"Malesherbes",48.88254,2.311028,0,0,OIF:SA:59441,Europe/Paris,,OIF, +OIF:SP:59442,1,"Havre-Caumartin",48.873465,2.328499,0,0,OIF:SA:59442,Europe/Paris,,OIF, +OIF:SP:59443,1,"Europe",48.879063,2.322993,0,0,OIF:SA:59443,Europe/Paris,,OIF, +OIF:SP:59444,1,"Bourse",48.868765,2.340693,0,0,OIF:SA:59444,Europe/Paris,,OIF, +OIF:SP:59445,1,"Havre-Caumartin",48.873429,2.32899,0,0,OIF:SA:59442,Europe/Paris,,OIF, +OIF:SP:59446,1,"Louise Michel",48.889273,2.288073,0,0,OIF:SA:59446,Europe/Paris,,OIF, +OIF:SP:59447,1,"Anatole-France",48.892022,2.285536,0,0,OIF:SA:59447,Europe/Paris,,OIF, +OIF:SP:59448,1,"Gallieni (Parc de Bagnolet)",48.863265,2.415994,0,0,OIF:SA:59448,Europe/Paris,,OIF, +OIF:SP:59449,1,"Saint-Jacques",48.832994,2.336701,0,0,OIF:SA:59449,Europe/Paris,,OIF, +OIF:SP:59450,1,"Quai de la Gare",48.837617,2.373871,0,0,OIF:SA:59450,Europe/Paris,,OIF, +OIF:SP:59451,1,"Passy",48.857538,2.285611,0,0,OIF:SA:59451,Europe/Paris,,OIF, +OIF:SP:59452,1,"Pasteur",48.842016,2.313308,0,0,OIF:SA:59452,Europe/Paris,,OIF, +OIF:SP:59453,1,"Picpus",48.845326,2.401805,0,0,OIF:SA:59453,Europe/Paris,,OIF, +OIF:SP:59454,1,"Nationale",48.832884,2.361928,0,0,OIF:SA:59454,Europe/Paris,,OIF, +OIF:SP:59455,1,"Dupleix",48.850396,2.293666,0,0,OIF:SA:59455,Europe/Paris,,OIF, +OIF:SP:59456,1,"Edgar-Quinet",48.840571,2.326421,0,0,OIF:SA:59456,Europe/Paris,,OIF, +OIF:SP:59457,1,"Chevaleret",48.834968,2.36811,0,0,OIF:SA:59457,Europe/Paris,,OIF, +OIF:SP:59458,1,"Corvisart",48.829866,2.350641,0,0,OIF:SA:59458,Europe/Paris,,OIF, +OIF:SP:59459,1,"Cambronne",48.847702,2.302057,0,0,OIF:SA:59459,Europe/Paris,,OIF, +OIF:SP:59460,1,"Bel-Air",48.841434,2.400888,0,0,OIF:SA:59460,Europe/Paris,,OIF, +OIF:SP:59461,1,"Dugommier",48.838879,2.389366,0,0,OIF:SA:59461,Europe/Paris,,OIF, +OIF:SP:59462,1,"Pasteur",48.842834,2.312682,0,0,OIF:SA:59452,Europe/Paris,,OIF, +OIF:SP:59463,1,"Richelieu-Drouot",48.872009,2.33993,0,0,OIF:SA:59463,Europe/Paris,,OIF, +OIF:SP:59464,1,"Grands Boulevards",48.871578,2.342914,0,0,OIF:SA:59464,Europe/Paris,,OIF, +OIF:SP:59465,1,"Porte de Charenton",48.832663,2.400483,0,0,OIF:SA:59465,Europe/Paris,,OIF, +OIF:SP:59466,1,"Michel Bizot",48.836993,2.402939,0,0,OIF:SA:59466,Europe/Paris,,OIF, +OIF:SP:59467,1,"Montgallet",48.844406,2.390271,0,0,OIF:SA:59467,Europe/Paris,,OIF, +OIF:SP:59468,1,"Ledru-Rollin",48.851197,2.375951,0,0,OIF:SA:59468,Europe/Paris,,OIF, +OIF:SP:59469,1,"Invalides",48.861096,2.314662,0,0,OIF:SA:8739303,Europe/Paris,,OIF, +OIF:SP:59470,1,"École Militaire",48.854264,2.305458,0,0,OIF:SA:59470,Europe/Paris,,OIF, +OIF:SP:59471,1,"Faidherbe-Chaligny",48.85007,2.384448,0,0,OIF:SA:59471,Europe/Paris,,OIF, +OIF:SP:59472,1,"Filles du Calvaire",48.863081,2.366765,0,0,OIF:SA:59472,Europe/Paris,,OIF, +OIF:SP:59473,1,"Chemin Vert",48.857589,2.368055,0,0,OIF:SA:59473,Europe/Paris,,OIF, +OIF:SP:59474,1,"Commerce",48.844617,2.293821,0,0,OIF:SA:59474,Europe/Paris,,OIF, +OIF:SP:59475,1,"Bonne Nouvelle",48.87058,2.348513,0,0,OIF:SA:59475,Europe/Paris,,OIF, +OIF:SP:59476,1,"Boucicaut",48.841028,2.287942,0,0,OIF:SA:59476,Europe/Paris,,OIF, +OIF:SP:59477,1,"Balard",48.836818,2.278701,0,0,OIF:SA:59477,Europe/Paris,,OIF, +OIF:SP:59478,1,"Lourmel",48.838671,2.282266,0,0,OIF:SA:59478,Europe/Paris,,OIF, +OIF:SP:59479,1,"Invalides",48.860854,2.314566,0,0,OIF:SA:8739303,Europe/Paris,,OIF, +OIF:SP:59481,1,"Richelieu-Drouot",48.872099,2.339344,0,0,OIF:SA:59463,Europe/Paris,,OIF, +OIF:SP:59482,1,"Charenton-Écoles",48.821492,2.413876,0,0,OIF:SA:59482,Europe/Paris,,OIF, +OIF:SP:59483,1,"Maisons-Alfort-les Juilliottes",48.802502,2.446203,0,0,OIF:SA:59483,Europe/Paris,,OIF, +OIF:SP:59484,1,"Maisons-Alfort-Stade",48.808227,2.436295,0,0,OIF:SA:59484,Europe/Paris,,OIF, +OIF:SP:59485,1,"Rue de la Pompe (Avenue Georges Mandel)",48.864257,2.277935,0,0,OIF:SA:59485,Europe/Paris,,OIF, +OIF:SP:59486,1,"Rue des Boulets",48.852225,2.389135,0,0,OIF:SA:59486,Europe/Paris,,OIF, +OIF:SP:59487,1,"Grands Boulevards",48.871515,2.343227,0,0,OIF:SA:59464,Europe/Paris,,OIF, +OIF:SP:59488,1,"Saint-Ambroise",48.86165,2.373166,0,0,OIF:SA:59488,Europe/Paris,,OIF, +OIF:SP:59489,1,"Saint-Augustin",48.87439,2.320746,0,0,OIF:SA:59489,Europe/Paris,,OIF, +OIF:SP:59490,1,"Saint-Philippe du Roule",48.872474,2.310787,0,0,OIF:SA:59490,Europe/Paris,,OIF, +OIF:SP:59491,1,"Porte de Montreuil",48.853382,2.410477,0,0,OIF:SA:59491,Europe/Paris,,OIF, +OIF:SP:59492,1,"Porte de Saint-Cloud",48.837569,2.255609,0,0,OIF:SA:59492,Europe/Paris,,OIF, +OIF:SP:59493,1,"Ranelagh",48.855508,2.269977,0,0,OIF:SA:59493,Europe/Paris,,OIF, +OIF:SP:59494,1,"Miromesnil",48.873535,2.315596,0,0,OIF:SA:59494,Europe/Paris,,OIF, +OIF:SP:59495,1,"Jasmin",48.852442,2.267952,0,0,OIF:SA:59495,Europe/Paris,,OIF, +OIF:SP:59496,1,"Exelmans",48.84291,2.260162,0,0,OIF:SA:59496,Europe/Paris,,OIF, +OIF:SP:59497,1,"Bonne Nouvelle",48.870499,2.348881,0,0,OIF:SA:59475,Europe/Paris,,OIF, +OIF:SP:59498,1,"Buzenval",48.85177,2.4012,0,0,OIF:SA:59498,Europe/Paris,,OIF, +OIF:SP:59499,1,"Charonne",48.854645,2.385051,0,0,OIF:SA:59499,Europe/Paris,,OIF, +OIF:SP:59500,1,"Alma-Marceau",48.864302,2.30127,0,0,OIF:SA:59500,Europe/Paris,,OIF, +OIF:SP:59501,1,"Maraîchers",48.852603,2.406404,0,0,OIF:SA:59501,Europe/Paris,,OIF, +OIF:SP:59502,1,"Miromesnil",48.873463,2.31606,0,0,OIF:SA:59494,Europe/Paris,,OIF, +OIF:SP:59504,1,"Billancourt",48.832091,2.238178,0,0,OIF:SA:59504,Europe/Paris,,OIF, +OIF:SP:59505,1,"Marcel Sembat",48.833812,2.243498,0,0,OIF:SA:59505,Europe/Paris,,OIF, +OIF:SP:59506,1,"Croix-de-Chavaux (Jacques Duclos)",48.858001,2.435886,0,0,OIF:SA:59506,Europe/Paris,,OIF, +OIF:SP:59507,1,"Mairie de Montreuil",48.862283,2.441847,0,0,OIF:SA:59507,Europe/Paris,,OIF, +OIF:SP:59508,1,"Robespierre",48.855683,2.423678,0,0,OIF:SA:59508,Europe/Paris,,OIF, +OIF:SP:59509,1,"Volontaires",48.841421,2.308012,0,0,OIF:SA:59509,Europe/Paris,,OIF, +OIF:SP:59510,1,"Rennes",48.848201,2.32804,0,0,OIF:SA:59510,Europe/Paris,,OIF, +OIF:SP:59511,1,"Rue du Bac",48.855894,2.325723,0,0,OIF:SA:59511,Europe/Paris,,OIF, +OIF:SP:59512,1,"Saint-Georges",48.878597,2.337846,0,0,OIF:SA:59512,Europe/Paris,,OIF, +OIF:SP:59513,1,"Porte de la Chapelle",48.897962,2.359274,0,0,OIF:SA:59513,Europe/Paris,,OIF, +OIF:SP:59514,1,"Porte de Versailles",48.832257,2.287882,0,0,OIF:SA:59514,Europe/Paris,,OIF, +OIF:SP:59515,1,"Notre-Dame de Lorette",48.876053,2.337927,0,0,OIF:SA:59515,Europe/Paris,,OIF, +OIF:SP:59516,1,"Notre-Dame des Champs",48.844786,2.328463,0,0,OIF:SA:59516,Europe/Paris,,OIF, +OIF:SP:59517,1,"Marx-Dormoy",48.890377,2.359816,0,0,OIF:SA:59517,Europe/Paris,,OIF, +OIF:SP:59518,1,"Jules Joffrin",48.8925,2.344347,0,0,OIF:SA:59518,Europe/Paris,,OIF, +OIF:SP:59519,1,"Lamarck-Caulaincourt",48.889741,2.339168,0,0,OIF:SA:59519,Europe/Paris,,OIF, +OIF:SP:59520,1,"Convention",48.83714,2.296414,0,0,OIF:SA:59520,Europe/Paris,,OIF, +OIF:SP:59521,1,"Abbesses",48.884403,2.338418,0,0,OIF:SA:59521,Europe/Paris,,OIF, +OIF:SP:59522,1,"Mairie d'Issy",48.82435,2.273584,0,0,OIF:SA:59522,Europe/Paris,,OIF, +OIF:SP:59523,1,"Corentin-Celton",48.826833,2.278985,0,0,OIF:SA:59523,Europe/Paris,,OIF, +OIF:SP:59524,1,"Saint-François-Xavier",48.850986,2.314448,0,0,OIF:SA:59524,Europe/Paris,,OIF, +OIF:SP:59526,1,"Porte de Saint-Ouen",48.897515,2.32904,0,0,OIF:SA:59526,Europe/Paris,,OIF, +OIF:SP:59527,1,"Porte de Vanves",48.827768,2.30433,0,0,OIF:SA:59527,Europe/Paris,,OIF, +OIF:SP:59529,1,"Plaisance",48.831761,2.313885,0,0,OIF:SA:59529,Europe/Paris,,OIF, +OIF:SP:59531,1,"Varenne",48.856396,2.314773,0,0,OIF:SA:59531,Europe/Paris,,OIF, +OIF:SP:59533,1,"La Fourche",48.88744,2.325744,0,0,OIF:SA:59533,Europe/Paris,,OIF, +OIF:SP:59535,1,"Brochant",48.89063,2.32021,0,0,OIF:SA:59535,Europe/Paris,,OIF, +OIF:SP:59536,1,"Malakoff-Plateau de Vanves",48.822446,2.29795,0,0,OIF:SA:59536,Europe/Paris,,OIF, +OIF:SP:59538,1,"Malakoff-Rue Etienne Dolet",48.814707,2.297303,0,0,OIF:SA:59538,Europe/Paris,,OIF, +OIF:SP:59540,1,"Saint-Denis-Université",48.946114,2.362064,0,0,OIF:SA:59540,Europe/Paris,,OIF, +OIF:SP:59541,1,"Basilique de Saint-Denis",48.93648,2.359659,0,0,OIF:SA:59541,Europe/Paris,,OIF, +OIF:SP:59542,1,"Saint-Denis - Porte de Paris",48.92993,2.356205,0,0,OIF:SA:59542,Europe/Paris,,OIF, +OIF:SP:59543,1,"Garibaldi",48.906385,2.331929,0,0,OIF:SA:59543,Europe/Paris,,OIF, +OIF:SP:59544,1,"Carrefour-Pleyel",48.919947,2.343928,0,0,OIF:SA:59544,Europe/Paris,,OIF, +OIF:SP:59545,1,"Mairie de Saint-Ouen",48.911625,2.333756,0,0,OIF:SA:59545,Europe/Paris,,OIF, +OIF:SP:59546,1,"Denfert-Rochereau",48.83428,2.332222,0,0,OIF:SA:8775863,Europe/Paris,,OIF, +OIF:SP:59547,1,"Denfert-Rochereau",48.834001,2.333257,0,0,OIF:SA:8775863,Europe/Paris,,OIF, +OIF:SP:59548,1,"Javel-André-Citroen",48.845967,2.277833,0,0,OIF:SA:59548,Europe/Paris,,OIF, +OIF:SP:59551,1,"Porte de Pantin",48.888587,2.392442,0,0,OIF:SA:59551,Europe/Paris,,OIF, +OIF:SP:59552,1,"Olympiades",48.826951,2.367057,0,0,OIF:SA:59552,Europe/Paris,,OIF, +OIF:SP:59553,1,"Bibliothèque-François Mitterrand",48.829833,2.376139,0,0,OIF:SA:8732832,Europe/Paris,,OIF, +OIF:SP:59554,1,"Gare de Lyon",48.844655,2.373127,0,0,OIF:SA:8768600,Europe/Paris,,OIF, +OIF:SP:59555,1,"Madeleine",48.869582,2.324181,0,0,OIF:SA:59412,Europe/Paris,,OIF, +OIF:SP:59556,1,"Pierre et Marie Curie",48.81592,2.377897,0,0,OIF:SA:59556,Europe/Paris,,OIF, +OIF:SP:59557,1,"République",48.867674,2.363348,0,0,OIF:SA:59557,Europe/Paris,,OIF, +OIF:SP:59558,1,"Saint-Sébastien-Froissart",48.860978,2.367281,0,0,OIF:SA:59558,Europe/Paris,,OIF, +OIF:SP:59559,1,"Porte Dorée",48.8355,2.406204,0,0,OIF:SA:59559,Europe/Paris,,OIF, +OIF:SP:59560,1,"Félix Faure",48.842828,2.292243,0,0,OIF:SA:59560,Europe/Paris,,OIF, +OIF:SP:59561,1,"Daumesnil (Félix Eboué)",48.839685,2.395603,0,0,OIF:SA:59561,Europe/Paris,,OIF, +OIF:SP:59562,1,"Liberté",48.825639,2.40743,0,0,OIF:SA:59562,Europe/Paris,,OIF, +OIF:SP:59563,1,"Créteil-l'Echat (Hôpital Henri Mondor)",48.796603,2.44955,0,0,OIF:SA:59563,Europe/Paris,,OIF, +OIF:SP:59564,1,"Créteil-Université",48.789726,2.450855,0,0,OIF:SA:59564,Europe/Paris,,OIF, +OIF:SP:59565,1,"École Vétérinaire de Maisons-Alfort",48.815079,2.421651,0,0,OIF:SA:59565,Europe/Paris,,OIF, +OIF:SP:59566,1,"Châtelet",48.857206,2.347243,0,0,OIF:SA:59566,Europe/Paris,,OIF, +OIF:SP:59568,1,"Chaussée d'Antin (la Fayette)",48.872989,2.333445,0,0,OIF:SA:59568,Europe/Paris,,OIF, +OIF:SP:59570,1,"Crimée",48.890291,2.376798,0,0,OIF:SA:59570,Europe/Paris,,OIF, +OIF:SP:59572,1,"Château Landon",48.878459,2.362073,0,0,OIF:SA:59572,Europe/Paris,,OIF, +OIF:SP:59574,1,"Poissonnière",48.877356,2.3494,0,0,OIF:SA:59574,Europe/Paris,,OIF, +OIF:SP:59576,1,"Pont Marie (Cité des Arts)",48.853466,2.357403,0,0,OIF:SA:59576,Europe/Paris,,OIF, +OIF:SP:59578,1,"Le Kremlin-Bicêtre",48.810388,2.361849,0,0,OIF:SA:59578,Europe/Paris,,OIF, +OIF:SP:59579,1,"Villejuif-Paul Vaillant Couturier (Hôpital Paul Brousse)",48.795997,2.36825,0,0,OIF:SA:59579,Europe/Paris,,OIF, +OIF:SP:59580,1,"Villejuif-Léo Lagrange",48.803772,2.363928,0,0,OIF:SA:59580,Europe/Paris,,OIF, +OIF:SP:59581,1,"Porte de Clichy",48.894439,2.313584,0,0,OIF:SA:8711127,Europe/Paris,,OIF, +OIF:SP:59582,1,"Asnières-Gennevilliers les Courtilles",48.930297,2.283779,0,0,OIF:SA:59582,Europe/Paris,,OIF, +OIF:SP:59583,1,"Mairie de Clichy",48.904009,2.305387,0,0,OIF:SA:59583,Europe/Paris,,OIF, +OIF:SP:59584,1,"Père-Lachaise",48.862948,2.386911,0,0,OIF:SA:59584,Europe/Paris,,OIF, +OIF:SP:59585,1,"Châtelet",48.858572,2.347952,0,0,OIF:SA:59566,Europe/Paris,,OIF, +OIF:SP:59586,1,"Réaumur-Sébastopol",48.866283,2.352503,0,0,OIF:SA:59586,Europe/Paris,,OIF, +OIF:SP:59587,1,"République",48.867261,2.364056,0,0,OIF:SA:59557,Europe/Paris,,OIF, +OIF:SP:59588,1,"Arts-et-Métiers",48.865555,2.356127,0,0,OIF:SA:59588,Europe/Paris,,OIF, +OIF:SP:59589,1,"Pont de Levallois-Bécon",48.897313,2.280787,0,0,OIF:SA:59589,Europe/Paris,,OIF, +OIF:SP:59590,1,"Hôtel de Ville",48.857359,2.352092,0,0,OIF:SA:59590,Europe/Paris,,OIF, +OIF:SP:59591,1,"Palais-Royal (Musée du Louvre)",48.862375,2.336592,0,0,OIF:SA:59591,Europe/Paris,,OIF, +OIF:SP:59592,1,"Champs-Elysées-Clémenceau",48.867747,2.314141,0,0,OIF:SA:59592,Europe/Paris,,OIF, +OIF:SP:59593,1,"Esplanade de la Défense",48.888362,2.249955,0,0,OIF:SA:59593,Europe/Paris,,OIF, +OIF:SP:59594,1,"La Défense (Grande Arche)",48.89183,2.23801,0,0,OIF:SA:8738221,Europe/Paris,,OIF, +OIF:SP:59595,1,"Château de Vincennes",48.844327,2.440572,0,0,OIF:SA:59595,Europe/Paris,,OIF, +OIF:SP:59596,1,"Bérault",48.845371,2.428264,0,0,OIF:SA:59596,Europe/Paris,,OIF, +OIF:SP:59597,1,"Les Agnettes",48.92292,2.285982,0,0,OIF:SA:59597,Europe/Paris,,OIF, +OIF:SP:59598,1,"Sèvres-Babylone",48.85158,2.326909,0,0,OIF:SA:59362,Europe/Paris,,OIF, +OIF:SP:59599,1,"Solférino",48.858536,2.323108,0,0,OIF:SA:59599,Europe/Paris,,OIF, +OIF:SP:59600,1,"Trinité-d'Estienne d'Orves",48.876332,2.331823,0,0,OIF:SA:59600,Europe/Paris,,OIF, +OIF:SP:59601,1,"Vaugirard (Adolphe Chérioux)",48.839442,2.301096,0,0,OIF:SA:59601,Europe/Paris,,OIF, +OIF:SP:59602,1,"Falguière",48.844326,2.317583,0,0,OIF:SA:59602,Europe/Paris,,OIF, +OIF:SP:59603,1,"Assemblée Nationale",48.861457,2.320328,0,0,OIF:SA:59603,Europe/Paris,,OIF, +OIF:SP:59604,1,"Pernety",48.833937,2.317927,0,0,OIF:SA:59604,Europe/Paris,,OIF, +OIF:SP:59606,1,"Liège",48.87954,2.326876,0,0,OIF:SA:59606,Europe/Paris,,OIF, +OIF:SP:59608,1,"Guy-Môquet",48.893012,2.327514,0,0,OIF:SA:59608,Europe/Paris,,OIF, +OIF:SP:59609,1,"Gaîté",48.838755,2.322527,0,0,OIF:SA:59609,Europe/Paris,,OIF, +OIF:SP:59611,1,"Champs-Elysées-Clémenceau",48.86737,2.314209,0,0,OIF:SA:59592,Europe/Paris,,OIF, +OIF:SP:59613,1,"Gabriel-Péri",48.916578,2.294347,0,0,OIF:SA:59613,Europe/Paris,,OIF, +OIF:SP:59614,1,"Châtillon Montrouge",48.810286,2.301307,0,0,OIF:SA:59614,Europe/Paris,,OIF, +OIF:SP:59616,1,"Voltaire (Léon Blum)",48.857666,2.380055,0,0,OIF:SA:59616,Europe/Paris,,OIF, +OIF:SP:59617,1,"Trocadéro",48.863092,2.286859,0,0,OIF:SA:59617,Europe/Paris,,OIF, +OIF:SP:59618,1,"République",48.867414,2.363607,0,0,OIF:SA:59557,Europe/Paris,,OIF, +OIF:SP:59619,1,"Iéna",48.864353,2.294063,0,0,OIF:SA:59619,Europe/Paris,,OIF, +OIF:SP:59620,1,"Chaussée d'Antin (la Fayette)",48.872863,2.333063,0,0,OIF:SA:59568,Europe/Paris,,OIF, +OIF:SP:59621,1,"Pont de Sèvres",48.829694,2.230546,0,0,OIF:SA:59621,Europe/Paris,,OIF, +OIF:SP:59622,1,"Simplon",48.894126,2.347264,0,0,OIF:SA:59622,Europe/Paris,,OIF, +OIF:SP:59623,1,"Saint-Germain des Prés",48.85345,2.333065,0,0,OIF:SA:59623,Europe/Paris,,OIF, +OIF:SP:59624,1,"Porte d'Orléans (Général Leclerc)",48.82282,2.325091,0,0,OIF:SA:59624,Europe/Paris,,OIF, +OIF:SP:59625,1,"Réaumur-Sébastopol",48.866049,2.35264,0,0,OIF:SA:59586,Europe/Paris,,OIF, +OIF:SP:59626,1,"Odéon",48.852201,2.338799,0,0,OIF:SA:59263,Europe/Paris,,OIF, +OIF:SP:59627,1,"Châtelet",48.858303,2.347884,0,0,OIF:SA:59566,Europe/Paris,,OIF, +OIF:SP:59628,1,"Cité",48.855688,2.346222,0,0,OIF:SA:59628,Europe/Paris,,OIF, +OIF:SP:59629,1,"Château Rouge",48.887089,2.349389,0,0,OIF:SA:59629,Europe/Paris,,OIF, +OIF:SP:59630,1,"Château d'Eau",48.872457,2.356075,0,0,OIF:SA:59630,Europe/Paris,,OIF, +OIF:SP:59631,1,"Alésia",48.828069,2.326846,0,0,OIF:SA:59631,Europe/Paris,,OIF, +OIF:SP:59632,1,"Barbès-Rochechouart",48.883935,2.349374,0,0,OIF:SA:59632,Europe/Paris,,OIF, +OIF:SP:59633,1,"Quai de la Rapée",48.845969,2.366932,0,0,OIF:SA:59633,Europe/Paris,,OIF, +OIF:SP:59634,1,"République",48.86762,2.363838,0,0,OIF:SA:59557,Europe/Paris,,OIF, +OIF:SP:59635,1,"Jaurès",48.882879,2.370605,0,0,OIF:SA:59635,Europe/Paris,,OIF, +OIF:SP:59636,1,"Laumière",48.884934,2.37911,0,0,OIF:SA:59636,Europe/Paris,,OIF, +OIF:SP:59637,1,"Bréguet-Sabin",48.856771,2.370793,0,0,OIF:SA:59637,Europe/Paris,,OIF, +OIF:SP:59638,1,"Place des Fêtes",48.876732,2.393165,0,0,OIF:SA:59638,Europe/Paris,,OIF, +OIF:SP:59639,1,"Hôtel de Ville",48.857808,2.351479,0,0,OIF:SA:59590,Europe/Paris,,OIF, +OIF:SP:59640,1,"Goncourt (Hôpital Saint-Louis)",48.870018,2.370788,0,0,OIF:SA:59640,Europe/Paris,,OIF, +OIF:SP:59641,1,"Châtelet",48.85886,2.347788,0,0,OIF:SA:59566,Europe/Paris,,OIF, +OIF:SP:59642,1,"Arts-et-Métiers",48.865384,2.355664,0,0,OIF:SA:59588,Europe/Paris,,OIF, +OIF:SP:59643,1,"République",48.867243,2.363075,0,0,OIF:SA:59557,Europe/Paris,,OIF, +OIF:SP:59644,1,"Châtelet",48.858959,2.34738,0,0,OIF:SA:59566,Europe/Paris,,OIF, +OIF:SP:59645,1,"Pré-Saint-Gervais",48.880162,2.398606,0,0,OIF:SA:59645,Europe/Paris,,OIF, +OIF:SP:59646,1,"Place des Fêtes",48.877226,2.392784,0,0,OIF:SA:59638,Europe/Paris,,OIF, +OIF:SP:59647,1,"Jaurès",48.882331,2.370496,0,0,OIF:SA:59635,Europe/Paris,,OIF, +OIF:SP:59648,1,"Sèvres-Lecourbe",48.844999,2.310883,0,0,OIF:SA:59648,Europe/Paris,,OIF, +OIF:SP:59649,1,"Trocadéro",48.86267,2.287281,0,0,OIF:SA:59617,Europe/Paris,,OIF, +OIF:SP:59650,1,"Kléber",48.871309,2.293349,0,0,OIF:SA:59650,Europe/Paris,,OIF, +OIF:SP:59651,1,"Glacière",48.831251,2.343141,0,0,OIF:SA:59651,Europe/Paris,,OIF, +OIF:SP:59652,1,"Boissière",48.866859,2.290056,0,0,OIF:SA:59652,Europe/Paris,,OIF, +OIF:SP:59653,1,"Daumesnil (Félix Eboué)",48.839379,2.395807,0,0,OIF:SA:59561,Europe/Paris,,OIF, +OIF:SP:59654,1,"Père-Lachaise",48.863164,2.387279,0,0,OIF:SA:59584,Europe/Paris,,OIF, +OIF:SP:59655,1,"Ménilmontant",48.865708,2.384448,0,0,OIF:SA:59655,Europe/Paris,,OIF, +OIF:SP:59656,1,"Jaurès",48.882771,2.369965,0,0,OIF:SA:59635,Europe/Paris,,OIF, +OIF:SP:59657,1,"Barbès-Rochechouart",48.883683,2.349552,0,0,OIF:SA:59632,Europe/Paris,,OIF, +OIF:SP:59658,1,"La Tour-Maubourg",48.857231,2.309815,0,0,OIF:SA:59658,Europe/Paris,,OIF, +OIF:SP:59659,1,"Palais-Royal (Musée du Louvre)",48.86339,2.335502,0,0,OIF:SA:59591,Europe/Paris,,OIF, +OIF:SP:59661,1,"Pont de Neuilly",48.88551,2.258546,0,0,OIF:SA:59661,Europe/Paris,,OIF, +OIF:SP:59662,1,"Saint-Mandé",48.846241,2.419019,0,0,OIF:SA:59662,Europe/Paris,,OIF, +OIF:SP:59663,1,"Porte de Choisy",48.819905,2.364984,0,0,OIF:SA:59663,Europe/Paris,,OIF, +OIF:SP:59664,1,"Pont Neuf",48.858537,2.342136,0,0,OIF:SA:59664,Europe/Paris,,OIF, +OIF:SP:59666,1,"Porte d'Italie",48.81872,2.360519,0,0,OIF:SA:59666,Europe/Paris,,OIF, +OIF:SP:59667,1,"Église d'Auteuil",48.847535,2.269497,0,0,OIF:SA:59667,Europe/Paris,,OIF, +OIF:SP:59668,1,"Porte d'Auteuil",48.848229,2.257717,0,0,OIF:SA:59668,Europe/Paris,,OIF, +OIF:SP:59670,1,"Rue Saint-Maur",48.864092,2.380919,0,0,OIF:SA:59670,Europe/Paris,,OIF, +OIF:SP:59671,1,"Antony",48.754498,2.300788,0,0,OIF:SA:8775875,Europe/Paris,,OIF, +OIF:SP:59673,1,"Orly-Ouest",48.729567,2.359582,0,0,OIF:SA:59673,Europe/Paris,,OIF, +OIF:SP:59675,1,"Orly-Sud",48.728927,2.369378,0,0,OIF:SA:59675,Europe/Paris,,OIF, +OIF:SP:59677,1,"Parc Pr",49.008914,2.544829,0,0,OIF:SA:59677,Europe/Paris,,OIF, +OIF:SP:59678,1,"Parc Pr",49.009022,2.544789,0,0,OIF:SA:59677,Europe/Paris,,OIF, +OIF:SP:59679,1,"Terminal 3",49.009954,2.560967,0,0,OIF:SA:8727146,Europe/Paris,,OIF, +OIF:SP:59680,1,"Terminal 3",49.010008,2.560967,0,0,OIF:SA:8727146,Europe/Paris,,OIF, +OIF:SP:59681,1,"Parc Px",49.010052,2.570707,0,0,OIF:SA:59681,Europe/Paris,,OIF, +OIF:SP:59682,1,"Parc Px",49.010043,2.570557,0,0,OIF:SA:59681,Europe/Paris,,OIF, +OIF:SP:59683,1,"Terminal 2 Gare",49.005247,2.573841,0,0,OIF:SA:8700147,Europe/Paris,,OIF, +OIF:SP:59684,1,"Terminal 2 Gare",49.005203,2.573731,0,0,OIF:SA:8700147,Europe/Paris,,OIF, +OIF:SP:59685,1,"Terminal 1",49.013142,2.542373,0,0,OIF:SA:59685,Europe/Paris,,OIF, +OIF:SP:59686,1,"Pointe du Lac",48.76877,2.464338,0,0,OIF:SA:59686,Europe/Paris,,OIF, +OIF:SP:59687,1,"L'Île-Saint-Denis",48.93589,2.339988,0,0,OIF:SA:59687,Europe/Paris,,OIF, +OIF:SP:59688,1,"L'Île-Saint-Denis",48.935683,2.339784,0,0,OIF:SA:59687,Europe/Paris,,OIF, +OIF:SP:59689,1,"Mairie de Villeneuve-la Garenne",48.935782,2.334136,0,0,OIF:SA:59689,Europe/Paris,,OIF, +OIF:SP:59690,1,"Mairie de Villeneuve-la Garenne",48.935413,2.334136,0,0,OIF:SA:59689,Europe/Paris,,OIF, +OIF:SP:59691,1,"La Noue",48.935134,2.326825,0,0,OIF:SA:59691,Europe/Paris,,OIF, +OIF:SP:59692,1,"La Noue",48.934964,2.326852,0,0,OIF:SA:59691,Europe/Paris,,OIF, +OIF:SP:59693,1,"Chemin des Reniers",48.934774,2.321614,0,0,OIF:SA:59693,Europe/Paris,,OIF, +OIF:SP:59694,1,"Chemin des Reniers",48.934622,2.321641,0,0,OIF:SA:59693,Europe/Paris,,OIF, +OIF:SP:59695,1,"Parc des Chanteraines",48.93409,2.313539,0,0,OIF:SA:59695,Europe/Paris,,OIF, +OIF:SP:59696,1,"Parc des Chanteraines",48.933946,2.313553,0,0,OIF:SA:59695,Europe/Paris,,OIF, +OIF:SP:59697,1,"Gare de Gennevilliers",48.933442,2.307046,0,0,OIF:SA:8727120,Europe/Paris,,OIF, +OIF:SP:59698,1,"Gare de Gennevilliers",48.933316,2.307047,0,0,OIF:SA:8727120,Europe/Paris,,OIF, +OIF:SP:59699,1,"Timbaud",48.933503,2.300854,0,0,OIF:SA:59699,Europe/Paris,,OIF, +OIF:SP:59700,1,"Timbaud",48.932739,2.301577,0,0,OIF:SA:59699,Europe/Paris,,OIF, +OIF:SP:59701,1,"Le Village",48.933402,2.294661,0,0,OIF:SA:59701,Europe/Paris,,OIF, +OIF:SP:59702,1,"Le Village",48.933195,2.294729,0,0,OIF:SA:59701,Europe/Paris,,OIF, +OIF:SP:59703,1,"Le Luth",48.931737,2.28847,0,0,OIF:SA:59703,Europe/Paris,,OIF, +OIF:SP:59704,1,"Le Luth",48.931548,2.288565,0,0,OIF:SA:59703,Europe/Paris,,OIF, +OIF:SP:59705,1,"Les Courtilles",48.930117,2.283206,0,0,OIF:SA:59582,Europe/Paris,,OIF, +OIF:SP:59706,1,"Les Courtilles",48.92991,2.283329,0,0,OIF:SA:59582,Europe/Paris,,OIF, +OIF:SP:59707,1,"La Défense",48.893232,2.237912,0,0,OIF:SA:8738221,Europe/Paris,,OIF, +OIF:SP:59708,1,"Faubourg de l'Arche",48.896811,2.240018,0,0,OIF:SA:59708,Europe/Paris,,OIF, +OIF:SP:59709,1,"Faubourg de l'Arche",48.896883,2.240427,0,0,OIF:SA:59708,Europe/Paris,,OIF, +OIF:SP:59710,1,"Les Fauvelles",48.902436,2.239312,0,0,OIF:SA:59710,Europe/Paris,,OIF, +OIF:SP:59711,1,"Les Fauvelles",48.902454,2.239626,0,0,OIF:SA:59710,Europe/Paris,,OIF, +OIF:SP:59712,1,"Charlebourg",48.907441,2.238239,0,0,OIF:SA:59712,Europe/Paris,,OIF, +OIF:SP:59713,1,"Charlebourg",48.907729,2.238661,0,0,OIF:SA:59712,Europe/Paris,,OIF, +OIF:SP:59714,1,"Jacqueline Auriol",48.910817,2.234347,0,0,OIF:SA:59714,Europe/Paris,,OIF, +OIF:SP:59715,1,"Jacqueline Auriol",48.910691,2.234088,0,0,OIF:SA:59714,Europe/Paris,,OIF, +OIF:SP:59716,1,"Victor Basch",48.913761,2.229882,0,0,OIF:SA:59716,Europe/Paris,,OIF, +OIF:SP:59717,1,"Victor Basch",48.914255,2.229636,0,0,OIF:SA:59716,Europe/Paris,,OIF, +OIF:SP:59718,1,"Parc Pierre Lagravère",48.917584,2.22442,0,0,OIF:SA:59718,Europe/Paris,,OIF, +OIF:SP:59719,1,"Parc Pierre Lagravère",48.917701,2.224652,0,0,OIF:SA:59718,Europe/Paris,,OIF, +OIF:SP:59720,1,"Pont de Bezons",48.923374,2.217684,0,0,OIF:SA:59720,Europe/Paris,,OIF, +OIF:SP:59721,1,"Pont de Bezons",48.923329,2.21733,0,0,OIF:SA:59720,Europe/Paris,,OIF, +OIF:SP:59722,1,"Maryse Bastié",48.824135,2.377686,0,0,OIF:SA:59722,Europe/Paris,,OIF, +OIF:SP:59723,1,"Maryse Bastié",48.824377,2.377087,0,0,OIF:SA:59722,Europe/Paris,,OIF, +OIF:SP:59724,1,"Avenue de France",48.825392,2.381049,0,0,OIF:SA:59724,Europe/Paris,,OIF, +OIF:SP:59725,1,"Avenue de France",48.82558,2.380954,0,0,OIF:SA:59724,Europe/Paris,,OIF, +OIF:SP:59726,1,"Baron le Roy",48.830284,2.393605,0,0,OIF:SA:59726,Europe/Paris,,OIF, +OIF:SP:59727,1,"Baron le Roy",48.830258,2.392502,0,0,OIF:SA:59726,Europe/Paris,,OIF, +OIF:SP:59728,1,"Porte de Charenton",48.831846,2.398508,0,0,OIF:SA:59465,Europe/Paris,,OIF, +OIF:SP:59729,1,"Porte de Charenton",48.83208,2.398113,0,0,OIF:SA:59465,Europe/Paris,,OIF, +OIF:SP:59730,1,"Porte Dorée",48.836056,2.407471,0,0,OIF:SA:59559,Europe/Paris,,OIF, +OIF:SP:59731,1,"Porte Dorée",48.835176,2.405931,0,0,OIF:SA:59559,Europe/Paris,,OIF, +OIF:SP:59732,1,"Montempoivre",48.839893,2.409056,0,0,OIF:SA:59732,Europe/Paris,,OIF, +OIF:SP:59733,1,"Montempoivre",48.839902,2.408729,0,0,OIF:SA:59732,Europe/Paris,,OIF, +OIF:SP:59734,1,"Alexandra David-Neel",48.843622,2.410218,0,0,OIF:SA:59734,Europe/Paris,,OIF, +OIF:SP:59735,1,"Alexandra David-Neel",48.843532,2.409891,0,0,OIF:SA:59734,Europe/Paris,,OIF, +OIF:SP:59736,1,"Porte de Vincennes",48.846867,2.409692,0,0,OIF:SA:59228,Europe/Paris,,OIF, +OIF:SP:59737,1,"Porte de Vincennes",48.846813,2.409515,0,0,OIF:SA:59228,Europe/Paris,,OIF, +OIF:SP:59738,1,"Porte de Vincennes",48.847226,2.409706,0,0,OIF:SA:59228,Europe/Paris,,OIF, +OIF:SP:59739,1,"Porte de Vincennes",48.847298,2.409488,0,0,OIF:SA:59228,Europe/Paris,,OIF, +OIF:SP:59740,1,"Porte de Montreuil",48.853184,2.410831,0,0,OIF:SA:59491,Europe/Paris,,OIF, +OIF:SP:59741,1,"Porte de Montreuil",48.853184,2.410531,0,0,OIF:SA:59491,Europe/Paris,,OIF, +OIF:SP:59742,1,"Marie de Miribel",48.858847,2.409831,0,0,OIF:SA:59742,Europe/Paris,,OIF, +OIF:SP:59743,1,"Marie de Miribel",48.858802,2.409504,0,0,OIF:SA:59742,Europe/Paris,,OIF, +OIF:SP:59744,1,"Porte de Bagnolet",48.863575,2.408952,0,0,OIF:SA:59435,Europe/Paris,,OIF, +OIF:SP:59745,1,"Porte de Bagnolet",48.863548,2.408625,0,0,OIF:SA:59435,Europe/Paris,,OIF, +OIF:SP:59746,1,"Séverine",48.867511,2.409149,0,0,OIF:SA:59746,Europe/Paris,,OIF, +OIF:SP:59747,1,"Séverine",48.86735,2.408794,0,0,OIF:SA:59746,Europe/Paris,,OIF, +OIF:SP:59748,1,"Adrienne Bolland",48.872005,2.408814,0,0,OIF:SA:59748,Europe/Paris,,OIF, +OIF:SP:59749,1,"Adrienne Bolland",48.872338,2.40842,0,0,OIF:SA:59748,Europe/Paris,,OIF, +OIF:SP:59750,1,"Porte des Lilas",48.876734,2.407118,0,0,OIF:SA:59327,Europe/Paris,,OIF, +OIF:SP:59751,1,"Porte des Lilas",48.876671,2.406845,0,0,OIF:SA:59327,Europe/Paris,,OIF, +OIF:SP:59752,1,"Hôpital Robert Debré",48.879496,2.401194,0,0,OIF:SA:59752,Europe/Paris,,OIF, +OIF:SP:59753,1,"Hôpital Robert Debré",48.879271,2.40103,0,0,OIF:SA:59752,Europe/Paris,,OIF, +OIF:SP:59754,1,"Butte du Chapeau Rouge",48.885169,2.396799,0,0,OIF:SA:59754,Europe/Paris,,OIF, +OIF:SP:59755,1,"Butte du Chapeau Rouge",48.885017,2.39654,0,0,OIF:SA:59754,Europe/Paris,,OIF, +OIF:SP:59756,1,"Porte de Pantin - Parc de la Villette",48.888899,2.395877,0,0,OIF:SA:59756,Europe/Paris,,OIF, +OIF:SP:59757,1,"Porte de Pantin - Parc de la Villette",48.888747,2.395604,0,0,OIF:SA:59756,Europe/Paris,,OIF, +OIF:SP:59758,1,"Delphine Seyrig",48.893976,2.397941,0,0,OIF:SA:59758,Europe/Paris,,OIF, +OIF:SP:59759,1,"Delphine Seyrig",48.893931,2.397763,0,0,OIF:SA:59758,Europe/Paris,,OIF, +OIF:SP:59760,1,"Ella Fitzgerald - Grands Moulins de Pantin",48.897474,2.395123,0,0,OIF:SA:59760,Europe/Paris,,OIF, +OIF:SP:59761,1,"Ella Fitzgerald - Grands Moulins de Pantin",48.897375,2.395109,0,0,OIF:SA:59760,Europe/Paris,,OIF, +OIF:SP:59762,1,"Porte de la Villette - Cité des Sciences et de l'Industrie",48.897702,2.38674,0,0,OIF:SA:59288,Europe/Paris,,OIF, +OIF:SP:59763,1,"Porte de la Villette - Cité des Sciences et de l'Industrie",48.897451,2.386549,0,0,OIF:SA:59288,Europe/Paris,,OIF, +OIF:SP:59764,1,"Canal Saint-Denis",48.898981,2.380198,0,0,OIF:SA:59764,Europe/Paris,,OIF, +OIF:SP:59765,1,"Canal Saint-Denis",48.898765,2.380512,0,0,OIF:SA:59764,Europe/Paris,,OIF, +OIF:SP:59766,1,"Rosa Parks",48.897519,2.372509,0,0,OIF:SA:8765479,Europe/Paris,,OIF, +OIF:SP:59767,1,"Rosa Parks",48.897312,2.372509,0,0,OIF:SA:8765479,Europe/Paris,,OIF, +OIF:SP:59768,1,"Porte d'Aubervilliers",48.898778,2.368803,0,0,OIF:SA:59768,Europe/Paris,,OIF, +OIF:SP:59769,1,"Porte d'Aubervilliers",48.898535,2.368939,0,0,OIF:SA:59768,Europe/Paris,,OIF, +OIF:SP:59770,1,"Colette Besson",48.898671,2.363405,0,0,OIF:SA:59770,Europe/Paris,,OIF, +OIF:SP:59771,1,"Colette Besson",48.898429,2.3623,0,0,OIF:SA:59770,Europe/Paris,,OIF, +OIF:SP:59772,1,"Porte de la Chapelle",48.898582,2.359288,0,0,OIF:SA:59513,Europe/Paris,,OIF, +OIF:SP:59773,1,"Porte de la Chapelle",48.898367,2.359274,0,0,OIF:SA:59513,Europe/Paris,,OIF, +OIF:SP:59774,1,"Front Populaire",48.906669,2.365249,0,0,OIF:SA:59774,Europe/Paris,,OIF, +OIF:SP:59775,1,"Porte de Versailles",48.83213,2.287283,0,0,OIF:SA:59514,Europe/Paris,,OIF, +OIF:SP:59776,1,"Mairie de Montrouge",48.818469,2.319661,0,0,OIF:SA:59776,Europe/Paris,,OIF, +OIF:SP:59777,1,"Marche de Saint-Denis",48.939186,2.356277,0,0,OIF:SA:59101,Europe/Paris,,OIF, +OIF:SP:59779,1,"Baudelaire",48.942143,2.356605,0,0,OIF:SA:59779,Europe/Paris,,OIF, +OIF:SP:59780,1,"Baudelaire",48.942448,2.356933,0,0,OIF:SA:59779,Europe/Paris,,OIF, +OIF:SP:59781,1,"Roger Semât",48.944749,2.35692,0,0,OIF:SA:59781,Europe/Paris,,OIF, +OIF:SP:59782,1,"Roger Semât",48.944974,2.35722,0,0,OIF:SA:59781,Europe/Paris,,OIF, +OIF:SP:59783,1,"Guynemer (Stade Auguste Delaune)",48.948218,2.357249,0,0,OIF:SA:59783,Europe/Paris,,OIF, +OIF:SP:59784,1,"Guynemer (Stade Auguste Delaune)",48.948146,2.357604,0,0,OIF:SA:59783,Europe/Paris,,OIF, +OIF:SP:59785,1,"Petit Pierrefitte",48.952325,2.357728,0,0,OIF:SA:59785,Europe/Paris,,OIF, +OIF:SP:59786,1,"Petit Pierrefitte",48.951669,2.358014,0,0,OIF:SA:59785,Europe/Paris,,OIF, +OIF:SP:59787,1,"Joncherolles",48.954832,2.358057,0,0,OIF:SA:59787,Europe/Paris,,OIF, +OIF:SP:59788,1,"Joncherolles",48.955686,2.358494,0,0,OIF:SA:59787,Europe/Paris,,OIF, +OIF:SP:59789,1,"Suzanne Valadon",48.95893,2.35855,0,0,OIF:SA:59789,Europe/Paris,,OIF, +OIF:SP:59790,1,"Suzanne Valadon",48.959298,2.358946,0,0,OIF:SA:59789,Europe/Paris,,OIF, +OIF:SP:59791,1,"Mairie de Pierrefitte",48.963531,2.359903,0,0,OIF:SA:59791,Europe/Paris,,OIF, +OIF:SP:59792,1,"Mairie de Pierrefitte",48.963495,2.360558,0,0,OIF:SA:59791,Europe/Paris,,OIF, +OIF:SP:59793,1,"Alcide d'Orbigny",48.965408,2.362811,0,0,OIF:SA:59793,Europe/Paris,,OIF, +OIF:SP:59794,1,"Alcide d'Orbigny",48.965893,2.363889,0,0,OIF:SA:59793,Europe/Paris,,OIF, +OIF:SP:59795,1,"Jacques Prévert",48.970862,2.365817,0,0,OIF:SA:59795,Europe/Paris,,OIF, +OIF:SP:59796,1,"Jacques Prévert",48.970925,2.366199,0,0,OIF:SA:59795,Europe/Paris,,OIF, +OIF:SP:59797,1,"Butte Pinson (Parc Régional)",48.973612,2.365873,0,0,OIF:SA:59797,Europe/Paris,,OIF, +OIF:SP:59798,1,"Butte Pinson (Parc Régional)",48.973801,2.366296,0,0,OIF:SA:59797,Europe/Paris,,OIF, +OIF:SP:59799,1,"Les Cholettes",48.977457,2.372646,0,0,OIF:SA:59799,Europe/Paris,,OIF, +OIF:SP:59800,1,"Les Cholettes",48.977376,2.372196,0,0,OIF:SA:59799,Europe/Paris,,OIF, +OIF:SP:59801,1,"Les Flanades",48.976781,2.377315,0,0,OIF:SA:59801,Europe/Paris,,OIF, +OIF:SP:59802,1,"Les Flanades",48.97653,2.377574,0,0,OIF:SA:59801,Europe/Paris,,OIF, +OIF:SP:59803,1,"Paul Valéry",48.979314,2.380279,0,0,OIF:SA:59803,Europe/Paris,,OIF, +OIF:SP:59804,1,"Paul Valéry",48.979207,2.380238,0,0,OIF:SA:59803,Europe/Paris,,OIF, +OIF:SP:59805,1,"Lochères",48.978657,2.384456,0,0,OIF:SA:59805,Europe/Paris,,OIF, +OIF:SP:59806,1,"Lochères",48.978513,2.384579,0,0,OIF:SA:59805,Europe/Paris,,OIF, +OIF:SP:59807,1,"Garges-Sarcelles RER",48.976955,2.391363,0,0,OIF:SA:8727619,Europe/Paris,,OIF, +OIF:SP:59809,1,"Villejuif - Louis Aragon",48.787539,2.366749,0,0,OIF:SA:59809,Europe/Paris,,OIF, +OIF:SP:59810,1,"Villejuif - Louis Aragon",48.787557,2.36698,0,0,OIF:SA:59809,Europe/Paris,,OIF, +OIF:SP:59811,1,"Lamartine",48.782964,2.366936,0,0,OIF:SA:59811,Europe/Paris,,OIF, +OIF:SP:59812,1,"Lamartine",48.783171,2.367236,0,0,OIF:SA:59811,Europe/Paris,,OIF, +OIF:SP:59813,1,"Domaine Chérioux",48.779063,2.367587,0,0,OIF:SA:59813,Europe/Paris,,OIF, +OIF:SP:59814,1,"Domaine Chérioux",48.778866,2.367179,0,0,OIF:SA:59813,Europe/Paris,,OIF, +OIF:SP:59815,1,"Moulin Vert",48.772098,2.367528,0,0,OIF:SA:59815,Europe/Paris,,OIF, +OIF:SP:59816,1,"Moulin Vert",48.771774,2.368018,0,0,OIF:SA:59815,Europe/Paris,,OIF, +OIF:SP:59817,1,"Bretagne",48.768278,2.368233,0,0,OIF:SA:59817,Europe/Paris,,OIF, +OIF:SP:59818,1,"Bretagne",48.768296,2.367812,0,0,OIF:SA:59817,Europe/Paris,,OIF, +OIF:SP:59819,1,"Auguste Perret (Cimetière Parisien)",48.763298,2.367401,0,0,OIF:SA:59819,Europe/Paris,,OIF, +OIF:SP:59820,1,"Auguste Perret (Cimetière Parisien)",48.76284,2.367183,0,0,OIF:SA:59819,Europe/Paris,,OIF, +OIF:SP:59821,1,"Porte de Thiais (Marche International)",48.759865,2.366148,0,0,OIF:SA:59821,Europe/Paris,,OIF, +OIF:SP:59822,1,"Porte de Thiais (Marche International)",48.759721,2.366365,0,0,OIF:SA:59821,Europe/Paris,,OIF, +OIF:SP:59823,1,"La Belle Epine",48.756099,2.368878,0,0,OIF:SA:59823,Europe/Paris,,OIF, +OIF:SP:59824,1,"La Belle Epine",48.755865,2.368525,0,0,OIF:SA:59823,Europe/Paris,,OIF, +OIF:SP:59825,1,"Place de la Logistique (Plateforme Sogaris)",48.752981,2.361713,0,0,OIF:SA:59825,Europe/Paris,,OIF, +OIF:SP:59826,1,"Place de la Logistique (Plateforme Sogaris)",48.7529,2.362039,0,0,OIF:SA:59825,Europe/Paris,,OIF, +OIF:SP:59827,1,"Porte de Rungis",48.752677,2.355134,0,0,OIF:SA:59827,Europe/Paris,,OIF, +OIF:SP:59828,1,"Porte de Rungis",48.752533,2.355324,0,0,OIF:SA:59827,Europe/Paris,,OIF, +OIF:SP:59829,1,"Saarinen (Parc Silic Nord)",48.750205,2.354086,0,0,OIF:SA:59829,Europe/Paris,,OIF, +OIF:SP:59830,1,"Saarinen (Parc Silic Nord)",48.750223,2.354385,0,0,OIF:SA:59829,Europe/Paris,,OIF, +OIF:SP:59831,1,"Robert Schuman (Parc Silic Centre)",48.746583,2.352753,0,0,OIF:SA:59831,Europe/Paris,,OIF, +OIF:SP:59832,1,"Robert Schuman (Parc Silic Centre)",48.746646,2.35293,0,0,OIF:SA:59831,Europe/Paris,,OIF, +OIF:SP:59833,1,"La Fraternelle",48.741271,2.353132,0,0,OIF:SA:8754629,Europe/Paris,,OIF, +OIF:SP:59834,1,"La Fraternelle",48.741379,2.352901,0,0,OIF:SA:8754629,Europe/Paris,,OIF, +OIF:SP:59835,1,"Hélène Boucher (Orlytech)",48.739616,2.35979,0,0,OIF:SA:59835,Europe/Paris,,OIF, +OIF:SP:59836,1,"Hélène Boucher (Orlytech)",48.739841,2.359831,0,0,OIF:SA:59835,Europe/Paris,,OIF, +OIF:SP:59837,1,"Caroline Aigle (Orlyfret)",48.73885,2.369561,0,0,OIF:SA:59837,Europe/Paris,,OIF, +OIF:SP:59838,1,"Caroline Aigle (Orlyfret)",48.738859,2.36986,0,0,OIF:SA:59837,Europe/Paris,,OIF, +OIF:SP:59839,1,"Cœur d'Orly",48.733798,2.370943,0,0,OIF:SA:59839,Europe/Paris,,OIF, +OIF:SP:59840,1,"Cœur d'Orly",48.73351,2.371636,0,0,OIF:SA:59839,Europe/Paris,,OIF, +OIF:SP:59841,1,"Aéroport d'Orly",48.729916,2.368047,0,0,OIF:SA:59675,Europe/Paris,,OIF, +OIF:SP:59842,1,"Aéroport d'Orly",48.729637,2.367761,0,0,OIF:SA:59675,Europe/Paris,,OIF, +OIF:SP:59844,1,"Porte de l'Essonne",48.714536,2.371651,0,0,OIF:SA:59844,Europe/Paris,,OIF, +OIF:SP:59845,1,"Terminal 1",49.013098,2.54169,0,0,OIF:SA:59685,Europe/Paris,,OIF, +OIF:SP:59847,1,"Châtillon - Montrouge",48.810601,2.300436,0,0,OIF:SA:59614,Europe/Paris,,OIF, +OIF:SP:59848,1,"Vauban",48.80739,2.294165,0,0,OIF:SA:59848,Europe/Paris,,OIF, +OIF:SP:59849,1,"Vauban",48.807246,2.294356,0,0,OIF:SA:59848,Europe/Paris,,OIF, +OIF:SP:59850,1,"Centre de Châtillon",48.804296,2.288847,0,0,OIF:SA:59850,Europe/Paris,,OIF, +OIF:SP:59851,1,"Centre de Châtillon",48.804098,2.289133,0,0,OIF:SA:59850,Europe/Paris,,OIF, +OIF:SP:59852,1,"Parc André Malraux",48.800168,2.282715,0,0,OIF:SA:59852,Europe/Paris,,OIF, +OIF:SP:59853,1,"Parc André Malraux",48.800348,2.28247,0,0,OIF:SA:59852,Europe/Paris,,OIF, +OIF:SP:59854,1,"Division Leclerc",48.794725,2.272817,0,0,OIF:SA:59854,Europe/Paris,,OIF, +OIF:SP:59855,1,"Division Leclerc",48.794528,2.273049,0,0,OIF:SA:59854,Europe/Paris,,OIF, +OIF:SP:59856,1,"Soleil Levant",48.790352,2.263233,0,0,OIF:SA:59856,Europe/Paris,,OIF, +OIF:SP:59857,1,"Soleil Levant",48.790217,2.263478,0,0,OIF:SA:59856,Europe/Paris,,OIF, +OIF:SP:59858,1,"Hôpital Beclere",48.787003,2.255022,0,0,OIF:SA:59858,Europe/Paris,,OIF, +OIF:SP:59859,1,"Hôpital Beclere",48.786796,2.255172,0,0,OIF:SA:59858,Europe/Paris,,OIF, +OIF:SP:59860,1,"Mail de la Plaine",48.783546,2.247247,0,0,OIF:SA:59860,Europe/Paris,,OIF, +OIF:SP:59861,1,"Mail de la Plaine",48.78377,2.247029,0,0,OIF:SA:59860,Europe/Paris,,OIF, +OIF:SP:59862,1,"Pave Blanc (Parc Noveos)",48.780781,2.240343,0,0,OIF:SA:59862,Europe/Paris,,OIF, +OIF:SP:59863,1,"Pave Blanc (Parc Noveos)",48.780934,2.24018,0,0,OIF:SA:59862,Europe/Paris,,OIF, +OIF:SP:59864,1,"Georges Pompidou",48.785048,2.237003,0,0,OIF:SA:59864,Europe/Paris,,OIF, +OIF:SP:59865,1,"Georges Pompidou",48.78494,2.237003,0,0,OIF:SA:59864,Europe/Paris,,OIF, +OIF:SP:59866,1,"Georges Millandy",48.783406,2.230396,0,0,OIF:SA:59866,Europe/Paris,,OIF, +OIF:SP:59867,1,"Georges Millandy",48.783182,2.230614,0,0,OIF:SA:59866,Europe/Paris,,OIF, +OIF:SP:59868,1,"Meudon-la-Forêt",48.783518,2.225295,0,0,OIF:SA:59868,Europe/Paris,,OIF, +OIF:SP:59869,1,"Meudon-la-Forêt",48.783419,2.225051,0,0,OIF:SA:59868,Europe/Paris,,OIF, +OIF:SP:59870,1,"Vélizy 2",48.785023,2.219552,0,0,OIF:SA:59870,Europe/Paris,,OIF, +OIF:SP:59871,1,"Vélizy 2",48.784744,2.219512,0,0,OIF:SA:59870,Europe/Paris,,OIF, +OIF:SP:59872,1,"Dewoitine",48.783444,2.213503,0,0,OIF:SA:59872,Europe/Paris,,OIF, +OIF:SP:59873,1,"Dewoitine",48.783336,2.213653,0,0,OIF:SA:59872,Europe/Paris,,OIF, +OIF:SP:59874,1,"Inovel Parc Nord",48.781551,2.208965,0,0,OIF:SA:59874,Europe/Paris,,OIF, +OIF:SP:59875,1,"Inovel Parc Nord",48.781426,2.209101,0,0,OIF:SA:59874,Europe/Paris,,OIF, +OIF:SP:59876,1,"Louvois",48.780234,2.196606,0,0,OIF:SA:59876,Europe/Paris,,OIF, +OIF:SP:59877,1,"Louvois",48.78009,2.196688,0,0,OIF:SA:59876,Europe/Paris,,OIF, +OIF:SP:59878,1,"Mairie de Vélizy",48.780606,2.191749,0,0,OIF:SA:59878,Europe/Paris,,OIF, +OIF:SP:59879,1,"Mairie de Vélizy",48.780444,2.191859,0,0,OIF:SA:59878,Europe/Paris,,OIF, +OIF:SP:59880,1,"L'Onde (Maison des Arts)",48.782102,2.180756,0,0,OIF:SA:59880,Europe/Paris,,OIF, +OIF:SP:59881,1,"L'Onde (Maison des Arts)",48.781967,2.180702,0,0,OIF:SA:59880,Europe/Paris,,OIF, +OIF:SP:59882,1,"Robert Wagner",48.785156,2.179033,0,0,OIF:SA:59882,Europe/Paris,,OIF, +OIF:SP:59883,1,"Robert Wagner",48.785191,2.178951,0,0,OIF:SA:59882,Europe/Paris,,OIF, +OIF:SP:59884,1,"Saint-Denis - Porte de Paris",48.92975,2.357187,0,0,OIF:SA:59542,Europe/Paris,,OIF, +OIF:SP:59885,1,"Saint-Denis - Porte de Paris",48.929507,2.357173,0,0,OIF:SA:59542,Europe/Paris,,OIF, +OIF:SP:59886,1,"Pierre de Geyter",48.932087,2.352932,0,0,OIF:SA:59886,Europe/Paris,,OIF, +OIF:SP:59887,1,"Pierre de Geyter",48.931952,2.352619,0,0,OIF:SA:59886,Europe/Paris,,OIF, +OIF:SP:59888,1,"Saint-Denis - Gare",48.935889,2.347286,0,0,OIF:SA:8727101,Europe/Paris,,OIF, +OIF:SP:59889,1,"Saint-Denis - Gare",48.935745,2.347136,0,0,OIF:SA:8727101,Europe/Paris,,OIF, +OIF:SP:59890,1,"Paul Éluard",48.939682,2.345172,0,0,OIF:SA:59890,Europe/Paris,,OIF, +OIF:SP:59891,1,"Paul Éluard",48.939835,2.345009,0,0,OIF:SA:59890,Europe/Paris,,OIF, +OIF:SP:59892,1,"Delaunay-Belleville",48.945882,2.34737,0,0,OIF:SA:59892,Europe/Paris,,OIF, +OIF:SP:59893,1,"Delaunay-Belleville",48.945838,2.347138,0,0,OIF:SA:59892,Europe/Paris,,OIF, +OIF:SP:59894,1,"César",48.949531,2.342486,0,0,OIF:SA:59894,Europe/Paris,,OIF, +OIF:SP:59895,1,"César",48.949513,2.342322,0,0,OIF:SA:59894,Europe/Paris,,OIF, +OIF:SP:59896,1,"Jean Vilar",48.952794,2.343469,0,0,OIF:SA:59896,Europe/Paris,,OIF, +OIF:SP:59897,1,"Jean Vilar",48.952794,2.343291,0,0,OIF:SA:59896,Europe/Paris,,OIF, +OIF:SP:59898,1,"Pablo Neruda",48.956146,2.343619,0,0,OIF:SA:59898,Europe/Paris,,OIF, +OIF:SP:59899,1,"Pablo Neruda",48.956092,2.343469,0,0,OIF:SA:59898,Europe/Paris,,OIF, +OIF:SP:59900,1,"Villetaneuse-Universite",48.959408,2.341723,0,0,OIF:SA:59900,Europe/Paris,,OIF, +OIF:SP:59901,1,"Villetaneuse-Universite",48.959399,2.341545,0,0,OIF:SA:59900,Europe/Paris,,OIF, +OIF:SP:59902,1,"Blumenthal",48.947941,2.339088,0,0,OIF:SA:59902,Europe/Paris,,OIF, +OIF:SP:59903,1,"Blumenthal",48.947743,2.33902,0,0,OIF:SA:59902,Europe/Paris,,OIF, +OIF:SP:59904,1,"Les Mobiles",48.950232,2.328214,0,0,OIF:SA:59904,Europe/Paris,,OIF, +OIF:SP:59905,1,"Les Mobiles",48.949504,2.330301,0,0,OIF:SA:59904,Europe/Paris,,OIF, +OIF:SP:59906,1,"Les Béatus",48.951625,2.321241,0,0,OIF:SA:59906,Europe/Paris,,OIF, +OIF:SP:59907,1,"Les Béatus",48.951355,2.321118,0,0,OIF:SA:59906,Europe/Paris,,OIF, +OIF:SP:59908,1,"Rose Bertin (Centre Commercial l'Ilo)",48.953556,2.315099,0,0,OIF:SA:59908,Europe/Paris,,OIF, +OIF:SP:59909,1,"Rose Bertin (Centre Commercial l'Ilo)",48.953259,2.314854,0,0,OIF:SA:59908,Europe/Paris,,OIF, +OIF:SP:59910,1,"Lacépède",48.956071,2.311564,0,0,OIF:SA:59910,Europe/Paris,,OIF, +OIF:SP:59911,1,"Lacépède",48.955936,2.311114,0,0,OIF:SA:59910,Europe/Paris,,OIF, +OIF:SP:59912,1,"Gilbert Bonnemaison",48.95537,2.307757,0,0,OIF:SA:59912,Europe/Paris,,OIF, +OIF:SP:59913,1,"Gilbert Bonnemaison",48.955352,2.308221,0,0,OIF:SA:59912,Europe/Paris,,OIF, +OIF:SP:59914,1,"Épinay-sur-Seine - Gare",48.955943,2.301821,0,0,OIF:SA:8727114,Europe/Paris,,OIF, +OIF:SP:59915,1,"Épinay-sur-Seine - Gare",48.955745,2.301889,0,0,OIF:SA:8727114,Europe/Paris,,OIF, +OIF:SP:59916,1,"Épinay - Orgemont",48.955447,2.295448,0,0,OIF:SA:59916,Europe/Paris,,OIF, +OIF:SP:59917,1,"Épinay - Orgemont",48.955321,2.295435,0,0,OIF:SA:59916,Europe/Paris,,OIF, +OIF:SP:59918,1,"Viroflay - Rive Gauche",48.801036,2.171393,0,0,OIF:SA:8739321,Europe/Paris,,OIF, +OIF:SP:59919,1,"Viroflay - Rive Gauche",48.801,2.171216,0,0,OIF:SA:8739321,Europe/Paris,,OIF, +OIF:SP:59920,1,"Viroflay - Rive Droite",48.805643,2.168874,0,0,OIF:SA:8738288,Europe/Paris,,OIF, +OIF:SP:59921,1,"Viroflay - Rive Droite",48.805616,2.168698,0,0,OIF:SA:8738288,Europe/Paris,,OIF, +OIF:SP:59:2224140,1,"Opéra",48.872099,2.330611,0,0,OIF:SA:59209,Europe/Paris,,OIF, +OIF:SP:59:2224143,1,"Terminal 2B-2D",49.003935,2.564751,0,0,OIF:SA:8700147,Europe/Paris,,OIF, +OIF:SP:59:2224144,1,"Terminal-2E-2F",49.004487,2.576596,0,0,OIF:SA:8700147,Europe/Paris,,OIF, +OIF:SP:59:2224147,1,"Terminal-2A",49.002943,2.561674,0,0,OIF:SA:59:2224147,Europe/Paris,,OIF, +OIF:SP:59:2224148,1,"Terminal-2C",49.003238,2.567398,0,0,OIF:SA:8700147,Europe/Paris,,OIF, +OIF:SP:59:2224149,1,"Terminal-2E",49.003729,2.577904,0,0,OIF:SA:59:2224149,Europe/Paris,,OIF, +OIF:SP:59:2224150,1,"Terminal-2F",49.004997,2.577555,0,0,OIF:SA:59:2224150,Europe/Paris,,OIF, +OIF:SP:59:2224151,1,"Terminal-2D",49.004327,2.566406,0,0,OIF:SA:8700147,Europe/Paris,,OIF, +OIF:SP:59:2224152,1,"Terminal-2B",49.004138,2.562089,0,0,OIF:SA:59:2224152,Europe/Paris,,OIF, +OIF:SP:59:2224153,1,"Aéroport Charles de Gaulle (T3-Roissypole)",49.010505,2.559507,0,0,OIF:SA:8727146,Europe/Paris,,OIF, +OIF:SP:59:3442415,1,"Châtelet",48.858393,2.347502,0,0,OIF:SA:59566,Europe/Paris,,OIF, +OIF:SP:59:3442417,1,"Pont Neuf - Quai du Louvre",48.859202,2.342803,0,0,OIF:SA:59664,Europe/Paris,,OIF, +OIF:SP:59:3442419,1,"Pont Neuf - Quai des Grands Augustins",48.856128,2.339248,0,0,OIF:SA:59:3442419,Europe/Paris,,OIF, +OIF:SP:59:3442420,1,"Pont Neuf - Quai des Grands Augustins",48.855598,2.340161,0,0,OIF:SA:59:3442419,Europe/Paris,,OIF, +OIF:SP:59:3442421,1,"Mazarine",48.85425,2.338049,0,0,OIF:SA:59263,Europe/Paris,,OIF, +OIF:SP:59:3442422,1,"Saint-Germain - Odéon",48.852668,2.338635,0,0,OIF:SA:59263,Europe/Paris,,OIF, +OIF:SP:59:3442423,1,"Saint-Germain - Odéon",48.851662,2.338744,0,0,OIF:SA:59263,Europe/Paris,,OIF, +OIF:SP:59:3442426,1,"Musée du Luxembourg",48.8483,2.332452,0,0,OIF:SA:59:3442426,Europe/Paris,,OIF, +OIF:SP:59:3442427,1,"Musée du Luxembourg",48.848669,2.332997,0,0,OIF:SA:59:3442426,Europe/Paris,,OIF, +OIF:SP:59:3442428,1,"Guynemer-Vavin",48.845316,2.332276,0,0,OIF:SA:59516,Europe/Paris,,OIF, +OIF:SP:59:3442430,1,"Vavin",48.842485,2.328654,0,0,OIF:SA:59254,Europe/Paris,,OIF, +OIF:SP:59:3442431,1,"Vavin",48.841955,2.329158,0,0,OIF:SA:59254,Europe/Paris,,OIF, +OIF:SP:59:3442432,1,"Place du 18 Juin 1940",48.843761,2.324678,0,0,OIF:SA:8739100,Europe/Paris,,OIF, +OIF:SP:59:3442433,1,"Place du 18 Juin 1940 - Rue du Départ",48.843033,2.323779,0,0,OIF:SA:8739100,Europe/Paris,,OIF, +OIF:SP:59:3442434,1,"Place du 18 Juin 1940 - Rue du Départ",48.843024,2.324119,0,0,OIF:SA:8739100,Europe/Paris,,OIF, +OIF:SP:59:3442436,1,"Gare Montparnasse",48.841073,2.32171,0,0,OIF:SA:8739100,Europe/Paris,,OIF, +OIF:SP:59:3442437,1,"Gaite",48.838476,2.322174,0,0,OIF:SA:59609,Europe/Paris,,OIF, +OIF:SP:59:3442438,1,"Gaite",48.837955,2.322963,0,0,OIF:SA:59609,Europe/Paris,,OIF, +OIF:SP:59:3442442,1,"Rue Benard",48.831142,2.324013,0,0,OIF:SA:59:3442442,Europe/Paris,,OIF, +OIF:SP:59:3442443,1,"Alésia - les Plantes",48.829776,2.322925,0,0,OIF:SA:59:3442443,Europe/Paris,,OIF, +OIF:SP:59:3442444,1,"Hop. Notre-Dame de Bon Secours - A. Chantin",48.827322,2.320611,0,0,OIF:SA:59:3442444,Europe/Paris,,OIF, +OIF:SP:59:3442445,1,"Jean Moulin",48.825021,2.318461,0,0,OIF:SA:59063,Europe/Paris,,OIF, +OIF:SP:59:3442446,1,"Porte de Châtillon",48.823924,2.316434,0,0,OIF:SA:59063,Europe/Paris,,OIF, +OIF:SP:59:3442447,1,"Porte Didot - Lycée Raspail",48.825226,2.311002,0,0,OIF:SA:59:3442447,Europe/Paris,,OIF, +OIF:SP:59:3442448,1,"Porte de Vanves",48.826439,2.305815,0,0,OIF:SA:59527,Europe/Paris,,OIF, +OIF:SP:59:3442450,1,"Pont de la Vallée",48.825727,2.301364,0,0,OIF:SA:59:3442450,Europe/Paris,,OIF, +OIF:SP:59:3442451,1,"Pont de la Vallée",48.825306,2.304373,0,0,OIF:SA:59:3442450,Europe/Paris,,OIF, +OIF:SP:59:3442452,1,"Jean Jaures-Jean Bleuzen",48.823965,2.297541,0,0,OIF:SA:59536,Europe/Paris,,OIF, +OIF:SP:59:3442453,1,"Jean Jaures-Jean Bleuzen",48.823902,2.297895,0,0,OIF:SA:59536,Europe/Paris,,OIF, +OIF:SP:59:3442454,1,"Carrefour Albert Legris",48.82532,2.293075,0,0,OIF:SA:24:15294,Europe/Paris,,OIF, +OIF:SP:59:3442455,1,"Carrefour Albert Legris",48.824978,2.291891,0,0,OIF:SA:24:15294,Europe/Paris,,OIF, +OIF:SP:59:3442456,1,"Vanves-Lycee Michelet",48.82353,2.288367,0,0,OIF:SA:59:3442456,Europe/Paris,,OIF, +OIF:SP:59:3442458,1,"Colonel Monteil",48.826413,2.310402,0,0,OIF:SA:59:3442458,Europe/Paris,,OIF, +OIF:SP:59:3442459,1,"Didot",48.826242,2.313016,0,0,OIF:SA:59062,Europe/Paris,,OIF, +OIF:SP:59:3442460,1,"Hôpitaux Broussais et Saint-Joseph",48.827852,2.315384,0,0,OIF:SA:59062,Europe/Paris,,OIF, +OIF:SP:59:3442461,1,"Alésia - Didot",48.830746,2.319548,0,0,OIF:SA:59:3442461,Europe/Paris,,OIF, +OIF:SP:59:3442462,1,"Pernety",48.832265,2.320528,0,0,OIF:SA:59604,Europe/Paris,,OIF, +OIF:SP:59:3442463,1,"Château",48.833919,2.321862,0,0,OIF:SA:59:3442463,Europe/Paris,,OIF, +OIF:SP:59:3442465,1,"Raspail - Fleurus",48.846736,2.328585,0,0,OIF:SA:59510,Europe/Paris,,OIF, +OIF:SP:59:3442466,1,"Fleurus",48.847015,2.330682,0,0,OIF:SA:59256,Europe/Paris,,OIF, +OIF:SP:59:3442467,1,"Théâtre de l'Odéon",48.849693,2.339125,0,0,OIF:SA:59263,Europe/Paris,,OIF, +OIF:SP:59:3442468,1,"Saint-André des Arts",48.853765,2.338622,0,0,OIF:SA:59:3442468,Europe/Paris,,OIF, +OIF:SP:59:3442544,1,"Porte d'Orléans - Métro",48.822254,2.324138,0,0,OIF:SA:59624,Europe/Paris,,OIF, +OIF:SP:59:3442546,1,"Gabrielle de Guerchy",48.819117,2.32305,0,0,OIF:SA:59:3442546,Europe/Paris,,OIF, +OIF:SP:59:3442547,1,"Mairie de Montrouge - Métro",48.818523,2.320029,0,0,OIF:SA:59776,Europe/Paris,,OIF, +OIF:SP:59:3442548,1,"Mairie de Montrouge - Métro",48.818856,2.319961,0,0,OIF:SA:59776,Europe/Paris,,OIF, +OIF:SP:59:3442549,1,"Radiguey",48.819529,2.314312,0,0,OIF:SA:59:3442549,Europe/Paris,,OIF, +OIF:SP:59:3442550,1,"Radiguey",48.81917,2.315115,0,0,OIF:SA:59:3442549,Europe/Paris,,OIF, +OIF:SP:59:3442551,1,"Pierre Brossolette - Gabriel Péri",48.819968,2.31027,0,0,OIF:SA:59:3442551,Europe/Paris,,OIF, +OIF:SP:59:3442552,1,"Pierre Brossolette - Gabriel Péri",48.81978,2.311236,0,0,OIF:SA:59:3442551,Europe/Paris,,OIF, +OIF:SP:59:3442554,1,"Pierre Larousse - Carrefour du 8 Mai 1945",48.819572,2.306622,0,0,OIF:SA:59:3442554,Europe/Paris,,OIF, +OIF:SP:59:3442557,1,"Gare de Vanves-Malakoff",48.819362,2.29621,0,0,OIF:SA:8739153,Europe/Paris,,OIF, +OIF:SP:59:3442558,1,"Gare de Vanves-Malakoff",48.819138,2.296156,0,0,OIF:SA:8739153,Europe/Paris,,OIF, +OIF:SP:59:3442559,1,"Carrefour de l'Insurrection",48.820322,2.291459,0,0,OIF:SA:8739153,Europe/Paris,,OIF, +OIF:SP:59:3442560,1,"Carrefour de l'Insurrection",48.820133,2.291106,0,0,OIF:SA:8739153,Europe/Paris,,OIF, +OIF:SP:59:3442561,1,"Mairie de Vanves - Centre Administratif",48.821013,2.289172,0,0,OIF:SA:59:3442561,Europe/Paris,,OIF, +OIF:SP:59:3442562,1,"Mairie de Vanves - Centre Administratif",48.821085,2.288301,0,0,OIF:SA:59:3442561,Europe/Paris,,OIF, +OIF:SP:59:3442563,1,"Place du Maréchal de Lattre de Tassigny",48.822351,2.28502,0,0,OIF:SA:59:3442563,Europe/Paris,,OIF, +OIF:SP:59:3442564,1,"Place du Maréchal de Lattre de Tassigny",48.822252,2.284802,0,0,OIF:SA:59:3442563,Europe/Paris,,OIF, +OIF:SP:59:3442565,1,"Général de Gaulle",48.824444,2.282418,0,0,OIF:SA:24:15305,Europe/Paris,,OIF, +OIF:SP:59:3442566,1,"Général de Gaulle",48.824192,2.282431,0,0,OIF:SA:24:15305,Europe/Paris,,OIF, +OIF:SP:59:3442567,1,"Corentin Celton - Métro",48.827399,2.278004,0,0,OIF:SA:59523,Europe/Paris,,OIF, +OIF:SP:59:3442568,1,"Corentin Celton - Métro",48.827013,2.278671,0,0,OIF:SA:59523,Europe/Paris,,OIF, +OIF:SP:59:3442569,1,"Victor Hugo",48.828016,2.272218,0,0,OIF:SA:59:3442569,Europe/Paris,,OIF, +OIF:SP:59:3442570,1,"Victor Hugo",48.827791,2.272681,0,0,OIF:SA:59:3442569,Europe/Paris,,OIF, +OIF:SP:59:3442571,1,"Président Robert Schuman",48.828184,2.266664,0,0,OIF:SA:59:3442571,Europe/Paris,,OIF, +OIF:SP:59:3442572,1,"Président Robert Schuman",48.827708,2.268121,0,0,OIF:SA:59:3442571,Europe/Paris,,OIF, +OIF:SP:59:3442573,1,"Issy-Val de Seine",48.82926,2.263572,0,0,OIF:SA:59134,Europe/Paris,,OIF, +OIF:SP:59:3442574,1,"Issy-Val de Seine",48.829071,2.263314,0,0,OIF:SA:59134,Europe/Paris,,OIF, +OIF:SP:59:3442575,1,"Quai du Point du Jour",48.831368,2.256762,0,0,OIF:SA:59:3442575,Europe/Paris,,OIF, +OIF:SP:59:3442577,1,"Rue du Point du Jour",48.832362,2.252282,0,0,OIF:SA:59:3442577,Europe/Paris,,OIF, +OIF:SP:59:3442578,1,"Rue du Point du Jour",48.831797,2.253726,0,0,OIF:SA:59:3442577,Europe/Paris,,OIF, +OIF:SP:59:3442579,1,"Danjou",48.832961,2.247393,0,0,OIF:SA:59:3442579,Europe/Paris,,OIF, +OIF:SP:59:3442580,1,"Danjou",48.832683,2.248102,0,0,OIF:SA:59:3442579,Europe/Paris,,OIF, +OIF:SP:59:3442581,1,"Marcel Sembat - Métro",48.834225,2.242762,0,0,OIF:SA:59505,Europe/Paris,,OIF, +OIF:SP:59:3442582,1,"Marcel Sembat - Métro",48.833964,2.242722,0,0,OIF:SA:59505,Europe/Paris,,OIF, +OIF:SP:59:3442583,1,"Hôtel de Ville de Boulogne-Billancourt",48.836109,2.238797,0,0,OIF:SA:59:3442583,Europe/Paris,,OIF, +OIF:SP:59:3442584,1,"Hôtel de Ville de Boulogne-Billancourt",48.835552,2.239697,0,0,OIF:SA:59:3442583,Europe/Paris,,OIF, +OIF:SP:59:3442585,1,"Ancienne Mairie de Boulogne-Billancourt",48.838369,2.233632,0,0,OIF:SA:59:3442585,Europe/Paris,,OIF, +OIF:SP:59:3442586,1,"Ancienne Mairie de Boulogne-Billancourt",48.83758,2.234805,0,0,OIF:SA:59:3442585,Europe/Paris,,OIF, +OIF:SP:59:3442587,1,"Rhin et Danube - Métro",48.840155,2.229912,0,0,OIF:SA:59400,Europe/Paris,,OIF, +OIF:SP:59:3442588,1,"Rhin et Danube - Métro",48.840064,2.229571,0,0,OIF:SA:59400,Europe/Paris,,OIF, +OIF:SP:59:3442592,1,"Parc de Saint-Cloud",48.842583,2.222445,0,0,OIF:SA:59010,Europe/Paris,,OIF, +OIF:SP:59:3442596,1,"Cimetière de Montrouge",48.820932,2.321348,0,0,OIF:SA:59:3442596,Europe/Paris,,OIF, +OIF:SP:59:3446763,1,"Église de Pantin - Métro",48.893509,2.413683,0,0,OIF:SA:59344,Europe/Paris,,OIF, +OIF:SP:59:3446767,1,"Raymond Queneau - Métro",48.895307,2.425366,0,0,OIF:SA:59343,Europe/Paris,,OIF, +OIF:SP:59:3446769,1,"Raymond Queneau - Route de Noisy",48.895306,2.42662,0,0,OIF:SA:59:3446769,Europe/Paris,,OIF, +OIF:SP:59:3446770,1,"Raymond Queneau - Route de Noisy",48.895468,2.426798,0,0,OIF:SA:59:3446769,Europe/Paris,,OIF, +OIF:SP:59:3446771,1,"Louise Dory",48.893763,2.434782,0,0,OIF:SA:59:3446771,Europe/Paris,,OIF, +OIF:SP:59:3446773,1,"Paul de Kock",48.892878,2.439265,0,0,OIF:SA:59:3446773,Europe/Paris,,OIF, +OIF:SP:59:3446774,1,"Paul de Kock",48.893185,2.43857,0,0,OIF:SA:59:3446773,Europe/Paris,,OIF, +OIF:SP:59:3446775,1,"Rue du Parc - Vaillant-Couturier",48.89165,2.445695,0,0,OIF:SA:59:3446775,Europe/Paris,,OIF, +OIF:SP:59:3446776,1,"Rue du Parc - Vaillant-Couturier",48.892092,2.444265,0,0,OIF:SA:59:3446775,Europe/Paris,,OIF, +OIF:SP:59:3446780,1,"Jeanne d'Arc",48.890584,2.452126,0,0,OIF:SA:59:3446780,Europe/Paris,,OIF, +OIF:SP:59:3446785,1,"Brement",48.8869,2.468826,0,0,OIF:SA:59:3446785,Europe/Paris,,OIF, +OIF:SP:59:3446787,1,"Rosny 2 Nord",48.886146,2.475638,0,0,OIF:SA:59:3446787,Europe/Paris,,OIF, +OIF:SP:59:3446791,1,"Bois-Perrier RER-Rosny 2",48.882859,2.481503,0,0,OIF:SA:8711369,Europe/Paris,,OIF, +OIF:SP:59:3446792,1,"Bois-Perrier RER-Rosny 2",48.88284,2.481898,0,0,OIF:SA:8711369,Europe/Paris,,OIF, +OIF:SP:59:3446793,1,"Jean de Mailly - Hoffmann",48.877729,2.486734,0,0,OIF:SA:59:3446793,Europe/Paris,,OIF, +OIF:SP:59:3446795,1,"Kellermann",48.879063,2.490976,0,0,OIF:SA:59:3446795,Europe/Paris,,OIF, +OIF:SP:59:3446796,1,"Kellermann",48.87944,2.491304,0,0,OIF:SA:59:3446795,Europe/Paris,,OIF, +OIF:SP:59:3446797,1,"Cimetière de Villemomble",48.88263,2.498304,0,0,OIF:SA:59:3446797,Europe/Paris,,OIF, +OIF:SP:59:3446798,1,"Cimetière de Villemomble",48.883395,2.497516,0,0,OIF:SA:59:3446797,Europe/Paris,,OIF, +OIF:SP:59:3446799,1,"11 Novembre",48.880641,2.493747,0,0,OIF:SA:59:3446799,Europe/Paris,,OIF, +OIF:SP:59:3446800,1,"Échangeur de Rosny",48.886689,2.472682,0,0,OIF:SA:59:3446800,Europe/Paris,,OIF, +OIF:SP:59:3616865,1,"Bry-sur-Marne RER",48.844024,2.526099,0,0,OIF:SA:8775832,Europe/Paris,,OIF, +OIF:SP:59:3616867,1,"Clemenceau",48.843542,2.529665,0,0,OIF:SA:59:3616867,Europe/Paris,,OIF, +OIF:SP:59:3616869,1,"François de Troy",48.841765,2.533525,0,0,OIF:SA:59:3616869,Europe/Paris,,OIF, +OIF:SP:59:3616875,1,"Europe",48.834409,2.530556,0,0,OIF:SA:59:3616875,Europe/Paris,,OIF, +OIF:SP:59:3616876,1,"Les Hauts de Bry",48.835681,2.533611,0,0,OIF:SA:59:3616876,Europe/Paris,,OIF, +OIF:SP:59:3616884,1,"Lamartine",48.842602,2.532984,0,0,OIF:SA:59:3616884,Europe/Paris,,OIF, +OIF:SP:59:3616885,1,"Clemenceau",48.844231,2.531642,0,0,OIF:SA:59:3616867,Europe/Paris,,OIF, +OIF:SP:59:3616888,1,"Gallieni",48.864136,2.417154,0,0,OIF:SA:59448,Europe/Paris,,OIF, +OIF:SP:59:3616889,1,"Gallieni",48.86384,2.416731,0,0,OIF:SA:59448,Europe/Paris,,OIF, +OIF:SP:59:3616890,1,"Rosny 2 Nord",48.885974,2.476728,0,0,OIF:SA:59:3446787,Europe/Paris,,OIF, +OIF:SP:59:3616891,1,"Rosny 2 Nord",48.886028,2.476646,0,0,OIF:SA:59:3446787,Europe/Paris,,OIF, +OIF:SP:59:3616892,1,"Chemin de Bondy",48.885017,2.480514,0,0,OIF:SA:59:3616892,Europe/Paris,,OIF, +OIF:SP:59:3616893,1,"Chemin de Bondy",48.885133,2.481168,0,0,OIF:SA:59:3616892,Europe/Paris,,OIF, +OIF:SP:59:3616898,1,"Cimetière de Villemomble",48.882962,2.498986,0,0,OIF:SA:59:3446797,Europe/Paris,,OIF, +OIF:SP:59:3616899,1,"Cimetière de Villemomble",48.883431,2.497639,0,0,OIF:SA:59:3446797,Europe/Paris,,OIF, +OIF:SP:59:3616900,1,"Meissonier",48.884701,2.50214,0,0,OIF:SA:59:3616900,Europe/Paris,,OIF, +OIF:SP:59:3616901,1,"Meissonier",48.884836,2.501895,0,0,OIF:SA:59:3616900,Europe/Paris,,OIF, +OIF:SP:59:3616902,1,"Avenue du Raincy",48.88446,2.507577,0,0,OIF:SA:59:3616902,Europe/Paris,,OIF, +OIF:SP:59:3616903,1,"Avenue du Raincy",48.884965,2.506066,0,0,OIF:SA:59:3616902,Europe/Paris,,OIF, +OIF:SP:59:3616908,1,"Boulevard André",48.881807,2.521018,0,0,OIF:SA:59:3616908,Europe/Paris,,OIF, +OIF:SP:59:3616909,1,"Boulevard André",48.881987,2.5208,0,0,OIF:SA:59:3616908,Europe/Paris,,OIF, +OIF:SP:59:3616910,1,"Gagny RER",48.88259,2.525694,0,0,OIF:SA:8711351,Europe/Paris,,OIF, +OIF:SP:59:3616911,1,"Gagny RER",48.882699,2.525259,0,0,OIF:SA:8711351,Europe/Paris,,OIF, +OIF:SP:59:3616912,1,"Jean Jaurès - Henri Barbusse",48.884333,2.531915,0,0,OIF:SA:59:3616912,Europe/Paris,,OIF, +OIF:SP:59:3616913,1,"Jean Jaurès - Henri Barbusse",48.884369,2.531629,0,0,OIF:SA:59:3616912,Europe/Paris,,OIF, +OIF:SP:59:3616914,1,"Charles de Gaulle",48.884391,2.534722,0,0,OIF:SA:59:3616914,Europe/Paris,,OIF, +OIF:SP:59:3616916,1,"Florian",48.881796,2.538433,0,0,OIF:SA:59:3616916,Europe/Paris,,OIF, +OIF:SP:59:3616917,1,"Florian",48.882084,2.538229,0,0,OIF:SA:59:3616916,Europe/Paris,,OIF, +OIF:SP:59:3616918,1,"Jean Moulin",48.880719,2.542884,0,0,OIF:SA:59:3616918,Europe/Paris,,OIF, +OIF:SP:59:3616919,1,"Jean Moulin",48.881034,2.542763,0,0,OIF:SA:59:3616918,Europe/Paris,,OIF, +OIF:SP:59:3616920,1,"Montguichet-Arena",48.879014,2.54672,0,0,OIF:SA:59:3616920,Europe/Paris,,OIF, +OIF:SP:59:3616921,1,"Montguichet-Arena",48.879184,2.546925,0,0,OIF:SA:59:3616920,Europe/Paris,,OIF, +OIF:SP:59:3616922,1,"La Mare",48.876727,2.548918,0,0,OIF:SA:8711352,Europe/Paris,,OIF, +OIF:SP:59:3616923,1,"La Mare",48.876564,2.549544,0,0,OIF:SA:8711352,Europe/Paris,,OIF, +OIF:SP:59:3616924,1,"Émile Cossonneau",48.874791,2.551377,0,0,OIF:SA:59:3616924,Europe/Paris,,OIF, +OIF:SP:59:3616925,1,"Émile Cossonneau",48.874916,2.551554,0,0,OIF:SA:59:3616924,Europe/Paris,,OIF, +OIF:SP:59:3616930,1,"Léon Bry",48.88584,2.533529,0,0,OIF:SA:59:3616930,Europe/Paris,,OIF, +OIF:SP:59:3619130,1,"Porte de Vanves",48.827049,2.304862,0,0,OIF:SA:59527,Europe/Paris,,OIF, +OIF:SP:59:3619132,1,"Rue Legrand",48.824272,2.302291,0,0,OIF:SA:59:3619132,Europe/Paris,,OIF, +OIF:SP:59:3619133,1,"Rue Legrand",48.823831,2.3027,0,0,OIF:SA:59:3619132,Europe/Paris,,OIF, +OIF:SP:59:3619134,1,"Victor Hugo",48.821791,2.303994,0,0,OIF:SA:59:3619134,Europe/Paris,,OIF, +OIF:SP:59:3619135,1,"Victor Hugo",48.821657,2.304307,0,0,OIF:SA:59:3619134,Europe/Paris,,OIF, +OIF:SP:59:3619136,1,"Pierre Larousse - Carrefour du 8 Mai 1945",48.819482,2.305152,0,0,OIF:SA:59:3442554,Europe/Paris,,OIF, +OIF:SP:59:3619137,1,"Gabriel Péri - André Coin",48.819327,2.299245,0,0,OIF:SA:59:3619137,Europe/Paris,,OIF, +OIF:SP:59:3619138,1,"Gabriel Péri - André Coin",48.81913,2.300348,0,0,OIF:SA:59:3619137,Europe/Paris,,OIF, +OIF:SP:59:3619139,1,"Etienne Dolet - Métro",48.817672,2.295327,0,0,OIF:SA:59538,Europe/Paris,,OIF, +OIF:SP:59:3619141,1,"Hoche",48.816035,2.291055,0,0,OIF:SA:59:3619141,Europe/Paris,,OIF, +OIF:SP:59:3619142,1,"Hoche",48.815442,2.290742,0,0,OIF:SA:59:3619141,Europe/Paris,,OIF, +OIF:SP:59:3619145,1,"Barbusse-Vedrines",48.810946,2.285289,0,0,OIF:SA:59:3619145,Europe/Paris,,OIF, +OIF:SP:59:3619146,1,"Barbusse-Vedrines",48.810532,2.2848,0,0,OIF:SA:59:3619145,Europe/Paris,,OIF, +OIF:SP:59:3619147,1,"Colonel Fabien",48.812094,2.280566,0,0,OIF:SA:59:3619147,Europe/Paris,,OIF, +OIF:SP:59:3619148,1,"Colonel Fabien",48.811519,2.280866,0,0,OIF:SA:59:3619147,Europe/Paris,,OIF, +OIF:SP:59:3619150,1,"Lazare-Carnot",48.808352,2.274433,0,0,OIF:SA:59:3619150,Europe/Paris,,OIF, +OIF:SP:59:3619152,1,"Marie Doffe",48.805251,2.273389,0,0,OIF:SA:59:3619152,Europe/Paris,,OIF, +OIF:SP:59:3619154,1,"Voie Verte",48.802301,2.271161,0,0,OIF:SA:59:3619154,Europe/Paris,,OIF, +OIF:SP:59:3619155,1,"Marche de Clamart",48.801552,2.26538,0,0,OIF:SA:59:3619155,Europe/Paris,,OIF, +OIF:SP:59:3619156,1,"Marche de Clamart",48.801309,2.26538,0,0,OIF:SA:59:3619155,Europe/Paris,,OIF, +OIF:SP:59:3619163,1,"Place du Garde",48.80329,2.256765,0,0,OIF:SA:24:15051,Europe/Paris,,OIF, +OIF:SP:59:3619166,1,"Le Parc",48.813106,2.292881,0,0,OIF:SA:59:3619166,Europe/Paris,,OIF, +OIF:SP:59:3619167,1,"Alexis Martin",48.814194,2.295874,0,0,OIF:SA:59538,Europe/Paris,,OIF, +OIF:SP:59:3619170,1,"Pierre Larousse - Carrefour du 8 Mai 1945",48.819293,2.304894,0,0,OIF:SA:59:3442554,Europe/Paris,,OIF, +OIF:SP:59:3619285,1,"Préfecture du Val-de-Marne",48.784699,2.453809,0,0,OIF:SA:13:659,Europe/Paris,,OIF, +OIF:SP:59:3619286,1,"Préfecture du Val-de-Marne",48.78416,2.453971,0,0,OIF:SA:13:659,Europe/Paris,,OIF, +OIF:SP:59:3619289,1,"Préfecture du Val-de-Marne.",48.783559,2.45197,0,0,OIF:SA:13:659,Europe/Paris,,OIF, +OIF:SP:59:3619290,1,"Préfecture du Val-de-Marne.",48.784384,2.454121,0,0,OIF:SA:13:659,Europe/Paris,,OIF, +OIF:SP:59:3619291,1,"Lycée Saint-Exupéry",48.782268,2.457693,0,0,OIF:SA:59:3619291,Europe/Paris,,OIF, +OIF:SP:59:3619292,1,"Lycée Saint-Exupéry",48.782015,2.459842,0,0,OIF:SA:59:3619291,Europe/Paris,,OIF, +OIF:SP:59:3619293,1,"Créteil - Préfecture Métro",48.779768,2.458952,0,0,OIF:SA:59204,Europe/Paris,,OIF, +OIF:SP:59:3619296,1,"Rene Arcos",48.77763,2.466849,0,0,OIF:SA:59:3619296,Europe/Paris,,OIF, +OIF:SP:59:3619297,1,"Rene Arcos",48.777603,2.467066,0,0,OIF:SA:59:3619296,Europe/Paris,,OIF, +OIF:SP:59:3619298,1,"Emouleuses",48.77712,2.472355,0,0,OIF:SA:59:3619298,Europe/Paris,,OIF, +OIF:SP:59:3619299,1,"Emouleuses",48.777748,2.473363,0,0,OIF:SA:59:3619298,Europe/Paris,,OIF, +OIF:SP:59:3619302,1,"Regard",48.776159,2.479669,0,0,OIF:SA:13:1351,Europe/Paris,,OIF, +OIF:SP:59:3619303,1,"Regard",48.776996,2.479114,0,0,OIF:SA:13:1351,Europe/Paris,,OIF, +OIF:SP:59:3619304,1,"Avenue de Choisy",48.774071,2.482451,0,0,OIF:SA:13:12,Europe/Paris,,OIF, +OIF:SP:59:3619305,1,"Avenue de Choisy",48.774422,2.481785,0,0,OIF:SA:13:12,Europe/Paris,,OIF, +OIF:SP:59:3619306,1,"Écoles",48.77386,2.485401,0,0,OIF:SA:59:3619306,Europe/Paris,,OIF, +OIF:SP:59:3619307,1,"Écoles",48.774104,2.484695,0,0,OIF:SA:59:3619306,Europe/Paris,,OIF, +OIF:SP:59:3619308,1,"Mairie de Bonneuil",48.77375,2.486978,0,0,OIF:SA:59:3619308,Europe/Paris,,OIF, +OIF:SP:59:3619309,1,"Mairie de Bonneuil",48.773857,2.487944,0,0,OIF:SA:59:3619308,Europe/Paris,,OIF, +OIF:SP:59:3619312,1,"Sucy-Bonneuil RER",48.772206,2.505875,0,0,OIF:SA:8775819,Europe/Paris,,OIF, +OIF:SP:59:3619313,1,"Sucy-Bonneuil RER",48.772026,2.506119,0,0,OIF:SA:8775819,Europe/Paris,,OIF, +OIF:SP:59:3619314,1,"Jean Moulin",48.775043,2.514016,0,0,OIF:SA:35:1126,Europe/Paris,,OIF, +OIF:SP:59:3619315,1,"Jean Moulin",48.77533,2.514725,0,0,OIF:SA:35:1126,Europe/Paris,,OIF, +OIF:SP:59:3619316,1,"Cité Verte-Grand Val",48.774129,2.518052,0,0,OIF:SA:35:1057,Europe/Paris,,OIF, +OIF:SP:59:3619317,1,"Cité Verte-Grand Val",48.774049,2.517617,0,0,OIF:SA:35:1057,Europe/Paris,,OIF, +OIF:SP:59:3619318,1,"La Fosse Rouge",48.775325,2.523877,0,0,OIF:SA:59:3619318,Europe/Paris,,OIF, +OIF:SP:59:3619319,1,"La Fosse Rouge",48.775388,2.523673,0,0,OIF:SA:59:3619318,Europe/Paris,,OIF, +OIF:SP:59:3619320,1,"Place Degas",48.774397,2.525179,0,0,OIF:SA:59:3619320,Europe/Paris,,OIF, +OIF:SP:59:3619321,1,"Place Degas",48.773723,2.525299,0,0,OIF:SA:59:3619320,Europe/Paris,,OIF, +OIF:SP:59:3619322,1,"Centre Administratif",48.771449,2.525209,0,0,OIF:SA:35:1069,Europe/Paris,,OIF, +OIF:SP:59:3619323,1,"Centre Administratif",48.771592,2.525372,0,0,OIF:SA:35:1069,Europe/Paris,,OIF, +OIF:SP:59:3619324,1,"Rue de Noiseau",48.77305,2.529838,0,0,OIF:SA:35:1158,Europe/Paris,,OIF, +OIF:SP:59:3619325,1,"Rue de Noiseau",48.773095,2.529702,0,0,OIF:SA:35:1158,Europe/Paris,,OIF, +OIF:SP:59:3619326,1,"Noiseau-le Morbras",48.776871,2.534558,0,0,OIF:SA:59:3619326,Europe/Paris,,OIF, +OIF:SP:59:3619327,1,"Rue de l'Ancien Moulin",48.778722,2.535285,0,0,OIF:SA:59:3619327,Europe/Paris,,OIF, +OIF:SP:59:3619328,1,"Rue de l'Ancien Moulin",48.778812,2.535231,0,0,OIF:SA:59:3619327,Europe/Paris,,OIF, +OIF:SP:59:3619329,1,"Olivier d'Ormesson",48.78412,2.537414,0,0,OIF:SA:59:3619329,Europe/Paris,,OIF, +OIF:SP:59:3619330,1,"Olivier d'Ormesson",48.783958,2.537305,0,0,OIF:SA:59:3619329,Europe/Paris,,OIF, +OIF:SP:59:3619331,1,"Jules Ferry",48.782842,2.532867,0,0,OIF:SA:35:1120,Europe/Paris,,OIF, +OIF:SP:59:3619332,1,"Jules Ferry",48.782942,2.532636,0,0,OIF:SA:35:1120,Europe/Paris,,OIF, +OIF:SP:59:3619333,1,"Amboile-Centre",48.786252,2.53088,0,0,OIF:SA:35:1008,Europe/Paris,,OIF, +OIF:SP:59:3619334,1,"Amboile-Centre",48.785614,2.531068,0,0,OIF:SA:35:1008,Europe/Paris,,OIF, +OIF:SP:59:3619335,1,"Noiseau-Amboile",48.790241,2.531956,0,0,OIF:SA:59:3619335,Europe/Paris,,OIF, +OIF:SP:59:3619336,1,"Noiseau-Amboile",48.790223,2.531766,0,0,OIF:SA:59:3619335,Europe/Paris,,OIF, +OIF:SP:59:3619337,1,"8 Mai 1945",48.791552,2.532423,0,0,OIF:SA:59:3619337,Europe/Paris,,OIF, +OIF:SP:59:3619338,1,"8 Mai 1945",48.792442,2.532604,0,0,OIF:SA:59:3619337,Europe/Paris,,OIF, +OIF:SP:59:3619339,1,"Hôtel de Ville de Chennevières",48.79466,2.533537,0,0,OIF:SA:35:1112,Europe/Paris,,OIF, +OIF:SP:59:3619340,1,"Hôtel de Ville de Chennevières",48.795173,2.533335,0,0,OIF:SA:35:1112,Europe/Paris,,OIF, +OIF:SP:59:3619341,1,"Saint-Siméon",48.798659,2.533974,0,0,OIF:SA:49:54020,Europe/Paris,,OIF, +OIF:SP:59:3619342,1,"Saint-Siméon",48.798669,2.533634,0,0,OIF:SA:49:54020,Europe/Paris,,OIF, +OIF:SP:59:3619343,1,"Zone Industrielle",48.799122,2.541772,0,0,OIF:SA:59:3619343,Europe/Paris,,OIF, +OIF:SP:59:3619344,1,"Zone Industrielle",48.799355,2.54263,0,0,OIF:SA:59:3619343,Europe/Paris,,OIF, +OIF:SP:59:3619345,1,"Sonnettes",48.79753,2.547942,0,0,OIF:SA:35:1187,Europe/Paris,,OIF, +OIF:SP:59:3619346,1,"Sonnettes",48.797647,2.547956,0,0,OIF:SA:35:1187,Europe/Paris,,OIF, +OIF:SP:59:3619347,1,"Champlain - Pagnol",48.79876,2.553702,0,0,OIF:SA:59:3619347,Europe/Paris,,OIF, +OIF:SP:59:3619348,1,"Champlain - Pagnol",48.798805,2.553498,0,0,OIF:SA:59:3619347,Europe/Paris,,OIF, +OIF:SP:59:3619349,1,"Clément Ader - les Bordes",48.802842,2.552726,0,0,OIF:SA:59:3619349,Europe/Paris,,OIF, +OIF:SP:59:3619350,1,"Clément Ader - les Bordes",48.802789,2.552521,0,0,OIF:SA:59:3619349,Europe/Paris,,OIF, +OIF:SP:59:3619351,1,"Rabelais",48.803395,2.550088,0,0,OIF:SA:59:3619351,Europe/Paris,,OIF, +OIF:SP:59:3619352,1,"Rabelais",48.803278,2.550101,0,0,OIF:SA:59:3619351,Europe/Paris,,OIF, +OIF:SP:59:3619353,1,"Claude Bernard",48.804624,2.546447,0,0,OIF:SA:59:3619353,Europe/Paris,,OIF, +OIF:SP:59:3619354,1,"Claude Bernard",48.804183,2.546581,0,0,OIF:SA:59:3619353,Europe/Paris,,OIF, +OIF:SP:59:3619355,1,"Rodin",48.805994,2.549174,0,0,OIF:SA:59:3619355,Europe/Paris,,OIF, +OIF:SP:59:3619356,1,"Rodin",48.806362,2.549461,0,0,OIF:SA:59:3619355,Europe/Paris,,OIF, +OIF:SP:59:3619359,1,"Vétérans",48.80856,2.551919,0,0,OIF:SA:59:3619359,Europe/Paris,,OIF, +OIF:SP:59:3619360,1,"Vétérans",48.80829,2.552163,0,0,OIF:SA:59:3619359,Europe/Paris,,OIF, +OIF:SP:59:3619361,1,"Fauvettes",48.808996,2.549363,0,0,OIF:SA:59:3619361,Europe/Paris,,OIF, +OIF:SP:59:3619362,1,"Fauvettes",48.80878,2.549199,0,0,OIF:SA:59:3619361,Europe/Paris,,OIF, +OIF:SP:59:3619363,1,"Colombe-Hardelet",48.809592,2.54233,0,0,OIF:SA:59:3619363,Europe/Paris,,OIF, +OIF:SP:59:3619364,1,"Les Mordacs",48.80862,2.538189,0,0,OIF:SA:59:3619364,Europe/Paris,,OIF, +OIF:SP:59:3619365,1,"Les Mordacs",48.80907,2.537756,0,0,OIF:SA:59:3619364,Europe/Paris,,OIF, +OIF:SP:59:3619366,1,"11 Novembre 1918",48.811256,2.536771,0,0,OIF:SA:59:3619366,Europe/Paris,,OIF, +OIF:SP:59:3619367,1,"11 Novembre 1918",48.811148,2.536444,0,0,OIF:SA:59:3619366,Europe/Paris,,OIF, +OIF:SP:59:3619370,1,"Docteur Bring",48.818253,2.539234,0,0,OIF:SA:59:3619370,Europe/Paris,,OIF, +OIF:SP:59:3619373,1,"Villiers-sur-Marne - le Plessis-Trévise RER",48.823702,2.543325,0,0,OIF:SA:8711379,Europe/Paris,,OIF, +OIF:SP:59:3619375,1,"Le Morbras",48.776782,2.534367,0,0,OIF:SA:59:3619375,Europe/Paris,,OIF, +OIF:SP:59:3619376,1,"Roland Cauchy",48.774822,2.511731,0,0,OIF:SA:59:3619376,Europe/Paris,,OIF, +OIF:SP:59:3619377,1,"Créteil - Préfecture",48.780235,2.459851,0,0,OIF:SA:59204,Europe/Paris,,OIF, +OIF:SP:59:3619390,1,"Joinville-le-Pont RER",48.821494,2.464263,0,0,OIF:SA:8775814,Europe/Paris,,OIF, +OIF:SP:59:3619394,1,"Verdun",48.819667,2.474086,0,0,OIF:SA:59:3619394,Europe/Paris,,OIF, +OIF:SP:59:3619395,1,"Verdun",48.820504,2.47353,0,0,OIF:SA:59:3619394,Europe/Paris,,OIF, +OIF:SP:59:3619396,1,"Jougla",48.82338,2.473606,0,0,OIF:SA:59:3619396,Europe/Paris,,OIF, +OIF:SP:59:3619397,1,"Jougla",48.822679,2.473631,0,0,OIF:SA:59:3619396,Europe/Paris,,OIF, +OIF:SP:59:3619398,1,"Mozart",48.825915,2.473095,0,0,OIF:SA:59:3619398,Europe/Paris,,OIF, +OIF:SP:59:3619399,1,"Mozart",48.824861,2.474984,0,0,OIF:SA:59:3619398,Europe/Paris,,OIF, +OIF:SP:59:3619400,1,"Polangis",48.8277,2.475659,0,0,OIF:SA:59:3619400,Europe/Paris,,OIF, +OIF:SP:59:3619401,1,"Polangis",48.827395,2.475291,0,0,OIF:SA:59:3619400,Europe/Paris,,OIF, +OIF:SP:59:3619402,1,"Camping International",48.829694,2.477339,0,0,OIF:SA:59:3619402,Europe/Paris,,OIF, +OIF:SP:59:3619417,1,"Jean-Baptiste Clément",48.817636,2.495734,0,0,OIF:SA:59:3619417,Europe/Paris,,OIF, +OIF:SP:59:3619418,1,"Plage de Champigny",48.816507,2.500086,0,0,OIF:SA:59:3619418,Europe/Paris,,OIF, +OIF:SP:59:3619419,1,"Plage de Champigny",48.81674,2.500372,0,0,OIF:SA:59:3619418,Europe/Paris,,OIF, +OIF:SP:59:3619420,1,"Guittard",48.814979,2.506259,0,0,OIF:SA:59:3619420,Europe/Paris,,OIF, +OIF:SP:59:3619421,1,"Guittard",48.815059,2.506777,0,0,OIF:SA:59:3619420,Europe/Paris,,OIF, +OIF:SP:59:3619422,1,"Mairie - Marche",48.813878,2.509413,0,0,OIF:SA:49:63400,Europe/Paris,,OIF, +OIF:SP:59:3619423,1,"Mairie - Marche",48.814021,2.509631,0,0,OIF:SA:49:63400,Europe/Paris,,OIF, +OIF:SP:59:3619424,1,"Mairie de Champigny",48.813092,2.512323,0,0,OIF:SA:59:3619424,Europe/Paris,,OIF, +OIF:SP:59:3619425,1,"Mairie de Champigny",48.813181,2.512854,0,0,OIF:SA:59:3619424,Europe/Paris,,OIF, +OIF:SP:59:3619426,1,"Rue à Trait",48.811507,2.514563,0,0,OIF:SA:49:53790,Europe/Paris,,OIF, +OIF:SP:59:3619427,1,"Rue à Trait",48.811913,2.51319,0,0,OIF:SA:49:53790,Europe/Paris,,OIF, +OIF:SP:59:3619428,1,"Polyclinique",48.810288,2.517947,0,0,OIF:SA:59:3619428,Europe/Paris,,OIF, +OIF:SP:59:3619429,1,"Polyclinique",48.810991,2.516453,0,0,OIF:SA:59:3619428,Europe/Paris,,OIF, +OIF:SP:59:3619430,1,"Jeanne Vacher",48.809134,2.520284,0,0,OIF:SA:59:3619430,Europe/Paris,,OIF, +OIF:SP:59:3619431,1,"Jeanne Vacher",48.809179,2.520433,0,0,OIF:SA:59:3619430,Europe/Paris,,OIF, +OIF:SP:59:3619432,1,"Joinville-le-Pont RER",48.820353,2.463948,0,0,OIF:SA:8775814,Europe/Paris,,OIF, +OIF:SP:59:3619442,1,"Aristide Briand - le Plant",48.818243,2.491762,0,0,OIF:SA:59:3619442,Europe/Paris,,OIF, +OIF:SP:59:3619443,1,"Aristide Briand - le Plant",48.818359,2.492306,0,0,OIF:SA:59:3619442,Europe/Paris,,OIF, +OIF:SP:59:3619452,1,"Mairie de Champigny",48.81409,2.511673,0,0,OIF:SA:59:3619424,Europe/Paris,,OIF, +OIF:SP:59:3619453,1,"République - Stalingrad",48.816597,2.512076,0,0,OIF:SA:59:3619453,Europe/Paris,,OIF, +OIF:SP:59:3619454,1,"République - Stalingrad",48.815888,2.511829,0,0,OIF:SA:59:3619453,Europe/Paris,,OIF, +OIF:SP:59:3619455,1,"République - Alexandre Fourny",48.819654,2.511379,0,0,OIF:SA:59:3619455,Europe/Paris,,OIF, +OIF:SP:59:3619456,1,"République - Alexandre Fourny",48.819313,2.511132,0,0,OIF:SA:59:3619455,Europe/Paris,,OIF, +OIF:SP:59:3619457,1,"Cités Jardins",48.821659,2.510882,0,0,OIF:SA:59:3619457,Europe/Paris,,OIF, +OIF:SP:59:3619458,1,"Cités Jardins",48.820976,2.510798,0,0,OIF:SA:59:3619457,Europe/Paris,,OIF, +OIF:SP:59:3619459,1,"Les Boullereaux - Champigny RER",48.825067,2.510049,0,0,OIF:SA:8711377,Europe/Paris,,OIF, +OIF:SP:59:3619460,1,"Les Boullereaux - Champigny RER",48.824474,2.509952,0,0,OIF:SA:8711377,Europe/Paris,,OIF, +OIF:SP:59:3619461,1,"Fourchette de Bry",48.827222,2.51154,0,0,OIF:SA:8711377,Europe/Paris,,OIF, +OIF:SP:59:3619462,1,"Fourchette de Bry",48.827447,2.511405,0,0,OIF:SA:8711377,Europe/Paris,,OIF, +OIF:SP:59:3619463,1,"Les Marais",48.826835,2.517882,0,0,OIF:SA:59:3619463,Europe/Paris,,OIF, +OIF:SP:59:3619464,1,"Les Marais",48.827204,2.517611,0,0,OIF:SA:59:3619463,Europe/Paris,,OIF, +OIF:SP:59:3619465,1,"Les Armoiries",48.827185,2.529304,0,0,OIF:SA:59:3619465,Europe/Paris,,OIF, +OIF:SP:59:3619466,1,"Les Armoiries",48.827346,2.529863,0,0,OIF:SA:59:3619465,Europe/Paris,,OIF, +OIF:SP:59:3619467,1,"Beauséjour",48.827006,2.534721,0,0,OIF:SA:8798692,Europe/Paris,,OIF, +OIF:SP:59:3619468,1,"Beauséjour",48.827067,2.535607,0,0,OIF:SA:8798692,Europe/Paris,,OIF, +OIF:SP:59:3619471,1,"Villiers-sur-Marne - le Plessis-Trévise RER",48.823398,2.542303,0,0,OIF:SA:8711379,Europe/Paris,,OIF, +OIF:SP:59:3619472,1,"Villiers-sur-Marne - le Plessis-Trévise RER",48.823845,2.543475,0,0,OIF:SA:8711379,Europe/Paris,,OIF, +OIF:SP:59:3619473,1,"Joinville-le-Pont RER",48.820586,2.464003,0,0,OIF:SA:8775814,Europe/Paris,,OIF, +OIF:SP:59:3619476,1,"Carrefour de la Résistance",48.820259,2.467704,0,0,OIF:SA:59:3619476,Europe/Paris,,OIF, +OIF:SP:59:3619479,1,"Dagoty",48.816249,2.476513,0,0,OIF:SA:59:3619479,Europe/Paris,,OIF, +OIF:SP:59:3619480,1,"Dagoty",48.817372,2.476856,0,0,OIF:SA:59:3619479,Europe/Paris,,OIF, +OIF:SP:59:3619482,1,"Charles Floquet - Diderot",48.814841,2.481504,0,0,OIF:SA:59:3619482,Europe/Paris,,OIF, +OIF:SP:59:3619483,1,"Verdun - Charles Floquet",48.817374,2.482763,0,0,OIF:SA:59:3619483,Europe/Paris,,OIF, +OIF:SP:59:3619484,1,"Jacques Decour",48.816652,2.484816,0,0,OIF:SA:59:3619484,Europe/Paris,,OIF, +OIF:SP:59:3619485,1,"Bel Air",48.815857,2.488706,0,0,OIF:SA:59:3619485,Europe/Paris,,OIF, +OIF:SP:59:3619486,1,"Diane",48.814806,2.4948,0,0,OIF:SA:59:3619486,Europe/Paris,,OIF, +OIF:SP:59:3619487,1,"Diane",48.812812,2.494018,0,0,OIF:SA:59:3619486,Europe/Paris,,OIF, +OIF:SP:59:3619488,1,"Verdun - la Plage",48.813692,2.501438,0,0,OIF:SA:59:3619488,Europe/Paris,,OIF, +OIF:SP:59:3619489,1,"Diderot - la Plage",48.812838,2.501176,0,0,OIF:SA:59:3619489,Europe/Paris,,OIF, +OIF:SP:59:3619491,1,"Les Pavillons Fleuris",48.813305,2.488032,0,0,OIF:SA:59:3619491,Europe/Paris,,OIF, +OIF:SP:59:3619629,1,"Joinville-le-Pont-RER",48.820964,2.46414,0,0,OIF:SA:8775814,Europe/Paris,,OIF, +OIF:SP:59:3619640,1,"Général de Gaulle - Stalingrad",48.823415,2.496051,0,0,OIF:SA:59:3619640,Europe/Paris,,OIF, +OIF:SP:59:3619642,1,"André Ohresser",48.824694,2.500479,0,0,OIF:SA:59:3619642,Europe/Paris,,OIF, +OIF:SP:59:3619643,1,"André Ohresser",48.824561,2.499267,0,0,OIF:SA:59:3619642,Europe/Paris,,OIF, +OIF:SP:59:3619644,1,"Fourchette de Bry",48.826965,2.508517,0,0,OIF:SA:8711377,Europe/Paris,,OIF, +OIF:SP:59:3619645,1,"Fourchette de Bry",48.826923,2.50702,0,0,OIF:SA:8711377,Europe/Paris,,OIF, +OIF:SP:59:3619650,1,"République - Alexandre Fourny",48.819653,2.512236,0,0,OIF:SA:59:3619455,Europe/Paris,,OIF, +OIF:SP:59:3619651,1,"République - Alexandre Fourny",48.819897,2.511407,0,0,OIF:SA:59:3619455,Europe/Paris,,OIF, +OIF:SP:59:3619652,1,"Guy Moquet",48.819227,2.514943,0,0,OIF:SA:59:3619652,Europe/Paris,,OIF, +OIF:SP:59:3619653,1,"Guy Moquet",48.819416,2.514399,0,0,OIF:SA:59:3619652,Europe/Paris,,OIF, +OIF:SP:59:3619654,1,"Fourny Égalité",48.818834,2.518766,0,0,OIF:SA:59:3619654,Europe/Paris,,OIF, +OIF:SP:59:3619655,1,"Benoit Frachon",48.818658,2.52259,0,0,OIF:SA:59:3619655,Europe/Paris,,OIF, +OIF:SP:59:3619656,1,"Benoit Frachon",48.818812,2.521788,0,0,OIF:SA:59:3619655,Europe/Paris,,OIF, +OIF:SP:59:3619657,1,"Zone Industrielle",48.819029,2.526266,0,0,OIF:SA:59:3619657,Europe/Paris,,OIF, +OIF:SP:59:3619658,1,"Zone Industrielle",48.8192,2.526389,0,0,OIF:SA:59:3619657,Europe/Paris,,OIF, +OIF:SP:59:3619659,1,"Centre Commercial de Champigny-sur-Marne",48.819901,2.532054,0,0,OIF:SA:59:3619659,Europe/Paris,,OIF, +OIF:SP:59:3619660,1,"Centre Commercial de Champigny-sur-Marne",48.820189,2.531878,0,0,OIF:SA:59:3619659,Europe/Paris,,OIF, +OIF:SP:59:3619661,1,"Rue de Bernaü",48.816734,2.533716,0,0,OIF:SA:59:3619661,Europe/Paris,,OIF, +OIF:SP:59:3619662,1,"Rue de Bernaü",48.81695,2.533513,0,0,OIF:SA:59:3619661,Europe/Paris,,OIF, +OIF:SP:59:3619663,1,"Lycée Marx Dormoy",48.817359,2.536318,0,0,OIF:SA:59:3619663,Europe/Paris,,OIF, +OIF:SP:59:3619664,1,"Lycée Marx Dormoy",48.817342,2.535637,0,0,OIF:SA:59:3619663,Europe/Paris,,OIF, +OIF:SP:59:3619665,1,"Bernaü Dolet",48.817733,2.538252,0,0,OIF:SA:59:3619665,Europe/Paris,,OIF, +OIF:SP:59:3619667,1,"Villiers-sur-Marne - le Plessis-Trévise RER",48.823737,2.543475,0,0,OIF:SA:8711379,Europe/Paris,,OIF, +OIF:SP:59:3619668,1,"Docteur Bring",48.817939,2.538702,0,0,OIF:SA:59:3619370,Europe/Paris,,OIF, +OIF:SP:59:3619669,1,"Égalité",48.818979,2.518454,0,0,OIF:SA:59:3619669,Europe/Paris,,OIF, +OIF:SP:59:3619670,1,"Joinville-le-Pont RER",48.820164,2.463416,0,0,OIF:SA:8775814,Europe/Paris,,OIF, +OIF:SP:59:3619682,1,"Joffre",48.803688,2.507869,0,0,OIF:SA:59:3619682,Europe/Paris,,OIF, +OIF:SP:59:3619683,1,"Joffre",48.803571,2.508059,0,0,OIF:SA:59:3619682,Europe/Paris,,OIF, +OIF:SP:59:3619684,1,"Carpeaux",48.801821,2.506203,0,0,OIF:SA:59:3619684,Europe/Paris,,OIF, +OIF:SP:59:3619685,1,"Carpeaux",48.802287,2.506871,0,0,OIF:SA:59:3619684,Europe/Paris,,OIF, +OIF:SP:59:3619686,1,"Stade A. Marin",48.799936,2.504523,0,0,OIF:SA:59:3619686,Europe/Paris,,OIF, +OIF:SP:59:3619687,1,"Stade A. Marin",48.799944,2.504823,0,0,OIF:SA:59:3619686,Europe/Paris,,OIF, +OIF:SP:59:3619688,1,"Jean Moulin",48.797575,2.502176,0,0,OIF:SA:59:3619688,Europe/Paris,,OIF, +OIF:SP:59:3619689,1,"Jean Moulin",48.798086,2.503198,0,0,OIF:SA:59:3619688,Europe/Paris,,OIF, +OIF:SP:59:3619690,1,"Rue de la Ferme",48.795764,2.499408,0,0,OIF:SA:59:3619690,Europe/Paris,,OIF, +OIF:SP:59:3619691,1,"Rue de la Ferme",48.795736,2.499735,0,0,OIF:SA:59:3619690,Europe/Paris,,OIF, +OIF:SP:59:3619692,1,"Boulevard de la Marne",48.793204,2.497659,0,0,OIF:SA:59:3619692,Europe/Paris,,OIF, +OIF:SP:59:3619693,1,"Boulevard de la Marne",48.793653,2.498218,0,0,OIF:SA:59:3619692,Europe/Paris,,OIF, +OIF:SP:59:3619694,1,"Mûriers",48.789334,2.495266,0,0,OIF:SA:59:3619694,Europe/Paris,,OIF, +OIF:SP:59:3619695,1,"Mûriers",48.789226,2.495484,0,0,OIF:SA:59:3619694,Europe/Paris,,OIF, +OIF:SP:59:3619696,1,"Raspail-Pont de Bonneuil",48.785047,2.495158,0,0,OIF:SA:59:3619696,Europe/Paris,,OIF, +OIF:SP:59:3619697,1,"Raspail-Pont de Bonneuil",48.785765,2.495337,0,0,OIF:SA:59:3619696,Europe/Paris,,OIF, +OIF:SP:59:3619698,1,"Moulin Bateau",48.782172,2.494211,0,0,OIF:SA:35:1326,Europe/Paris,,OIF, +OIF:SP:59:3619699,1,"Moulin Bateau",48.782045,2.494945,0,0,OIF:SA:35:1326,Europe/Paris,,OIF, +OIF:SP:59:3619700,1,"Port de Bonneuil",48.77946,2.492271,0,0,OIF:SA:35:1324,Europe/Paris,,OIF, +OIF:SP:59:3619701,1,"Port de Bonneuil",48.779316,2.492421,0,0,OIF:SA:35:1324,Europe/Paris,,OIF, +OIF:SP:59:3619702,1,"Aviation",48.775275,2.48977,0,0,OIF:SA:59:3619702,Europe/Paris,,OIF, +OIF:SP:59:3619703,1,"Aviation",48.775337,2.490124,0,0,OIF:SA:59:3619702,Europe/Paris,,OIF, +OIF:SP:59:3619704,1,"Rhin et Danube",48.772946,2.49028,0,0,OIF:SA:59:3619704,Europe/Paris,,OIF, +OIF:SP:59:3619705,1,"Colonel Fabien",48.770527,2.48463,0,0,OIF:SA:13:1349,Europe/Paris,,OIF, +OIF:SP:59:3619706,1,"Colonel Fabien",48.77041,2.484657,0,0,OIF:SA:13:1349,Europe/Paris,,OIF, +OIF:SP:59:3619707,1,"Verdun",48.769128,2.481567,0,0,OIF:SA:59:3619707,Europe/Paris,,OIF, +OIF:SP:59:3619708,1,"Verdun",48.768957,2.481457,0,0,OIF:SA:59:3619707,Europe/Paris,,OIF, +OIF:SP:59:3619709,1,"République",48.767999,2.479021,0,0,OIF:SA:32:45011,Europe/Paris,,OIF, +OIF:SP:59:3619710,1,"République",48.767909,2.479143,0,0,OIF:SA:32:45011,Europe/Paris,,OIF, +OIF:SP:59:3619711,1,"Docteur Roux",48.769943,2.47662,0,0,OIF:SA:59:3619711,Europe/Paris,,OIF, +OIF:SP:59:3619712,1,"Docteur Roux",48.769727,2.476646,0,0,OIF:SA:59:3619711,Europe/Paris,,OIF, +OIF:SP:59:3619713,1,"Sully",48.768284,2.473121,0,0,OIF:SA:59:3619713,Europe/Paris,,OIF, +OIF:SP:59:3619714,1,"Sully",48.768266,2.473392,0,0,OIF:SA:59:3619713,Europe/Paris,,OIF, +OIF:SP:59:3619715,1,"Nelson Paillou",48.768628,2.471,0,0,OIF:SA:59:3619715,Europe/Paris,,OIF, +OIF:SP:59:3619716,1,"Nelson Paillou",48.768367,2.471571,0,0,OIF:SA:59:3619715,Europe/Paris,,OIF, +OIF:SP:59:3619717,1,"Attripes",48.76856,2.468063,0,0,OIF:SA:59:3619717,Europe/Paris,,OIF, +OIF:SP:59:3619718,1,"Attripes",48.768352,2.468457,0,0,OIF:SA:59:3619717,Europe/Paris,,OIF, +OIF:SP:59:3619719,1,"Pointe du Lac - Métro",48.769453,2.465156,0,0,OIF:SA:59686,Europe/Paris,,OIF, +OIF:SP:59:3619720,1,"Pointe du Lac - Métro",48.76939,2.464924,0,0,OIF:SA:59686,Europe/Paris,,OIF, +OIF:SP:59:3619728,1,"Hôtel de Ville de Créteil",48.77722,2.455261,0,0,OIF:SA:59:3619728,Europe/Paris,,OIF, +OIF:SP:59:3619733,1,"Préfecture du Val-de-Marne",48.783019,2.453356,0,0,OIF:SA:13:659,Europe/Paris,,OIF, +OIF:SP:59:3619734,1,"Préfecture du Val-de-Marne",48.783191,2.452282,0,0,OIF:SA:13:659,Europe/Paris,,OIF, +OIF:SP:59:3619735,1,"Croix des Meches",48.785203,2.453076,0,0,OIF:SA:59:3619735,Europe/Paris,,OIF, +OIF:SP:59:3619737,1,"Préfecture du Val-de-Marne.",48.784295,2.453863,0,0,OIF:SA:13:659,Europe/Paris,,OIF, +OIF:SP:59:3619738,1,"Préfecture du Val-de-Marne.",48.78451,2.453985,0,0,OIF:SA:13:659,Europe/Paris,,OIF, +OIF:SP:59:3619741,1,"Messidor - Libertés",48.76959,2.4863,0,0,OIF:SA:13:668,Europe/Paris,,OIF, +OIF:SP:59:3619743,1,"École Vétérinaire de Maisons-Alfort",48.814421,2.423119,0,0,OIF:SA:59565,Europe/Paris,,OIF, +OIF:SP:59:3619747,1,"Pierre Curie",48.810008,2.423847,0,0,OIF:SA:59:3619747,Europe/Paris,,OIF, +OIF:SP:59:3619748,1,"Professeur Cadiot",48.806105,2.426018,0,0,OIF:SA:59:3619748,Europe/Paris,,OIF, +OIF:SP:59:3619749,1,"Professeur Cadiot",48.806634,2.427923,0,0,OIF:SA:59:3619748,Europe/Paris,,OIF, +OIF:SP:59:3619750,1,"Capitaine Deplanque",48.802877,2.428284,0,0,OIF:SA:8768115,Europe/Paris,,OIF, +OIF:SP:59:3619751,1,"Mairie de Maisons-Alfort",48.801455,2.430853,0,0,OIF:SA:59:3619751,Europe/Paris,,OIF, +OIF:SP:59:3619752,1,"Général Gallieni",48.796968,2.433267,0,0,OIF:SA:59:3619752,Europe/Paris,,OIF, +OIF:SP:59:3619753,1,"Général Gallieni",48.79757,2.433431,0,0,OIF:SA:59:3619752,Europe/Paris,,OIF, +OIF:SP:59:3619754,1,"Belfort",48.793426,2.434185,0,0,OIF:SA:59:3619754,Europe/Paris,,OIF, +OIF:SP:59:3619755,1,"Belfort",48.794118,2.434336,0,0,OIF:SA:59:3619754,Europe/Paris,,OIF, +OIF:SP:59:3619756,1,"Le Vert de Maisons RER",48.790127,2.435036,0,0,OIF:SA:8768124,Europe/Paris,,OIF, +OIF:SP:59:3619757,1,"Le Vert de Maisons RER",48.790603,2.435214,0,0,OIF:SA:8768124,Europe/Paris,,OIF, +OIF:SP:59:3619758,1,"Petites Haies",48.787671,2.437303,0,0,OIF:SA:59:3619758,Europe/Paris,,OIF, +OIF:SP:59:3619759,1,"Petites Haies",48.787922,2.438201,0,0,OIF:SA:59:3619758,Europe/Paris,,OIF, +OIF:SP:59:3619760,1,"Montaigut",48.789311,2.443073,0,0,OIF:SA:59:3619760,Europe/Paris,,OIF, +OIF:SP:59:3619761,1,"Montaigut",48.789419,2.443128,0,0,OIF:SA:59:3619760,Europe/Paris,,OIF, +OIF:SP:59:3619762,1,"Université",48.787906,2.446172,0,0,OIF:SA:59564,Europe/Paris,,OIF, +OIF:SP:59:3619763,1,"Université",48.788221,2.446349,0,0,OIF:SA:59564,Europe/Paris,,OIF, +OIF:SP:59:3619764,1,"La Haye aux Moines",48.785548,2.449486,0,0,OIF:SA:32:45087,Europe/Paris,,OIF, +OIF:SP:59:3619765,1,"La Haye aux Moines",48.785809,2.449581,0,0,OIF:SA:32:45087,Europe/Paris,,OIF, +OIF:SP:59:3619766,1,"Préfecture du Val-de-Marne",48.783406,2.452133,0,0,OIF:SA:13:659,Europe/Paris,,OIF, +OIF:SP:59:3619771,1,"Creteil-Prefecture",48.779919,2.461265,0,0,OIF:SA:59204,Europe/Paris,,OIF, +OIF:SP:59:3619772,1,"Creteil-Prefecture",48.780009,2.460626,0,0,OIF:SA:59204,Europe/Paris,,OIF, +OIF:SP:59:3619773,1,"Casalis-Savar",48.780065,2.467167,0,0,OIF:SA:59:3619773,Europe/Paris,,OIF, +OIF:SP:59:3619774,1,"Casalis-Savar",48.780139,2.465971,0,0,OIF:SA:59:3619773,Europe/Paris,,OIF, +OIF:SP:59:3619775,1,"La Gaite",48.780912,2.47363,0,0,OIF:SA:59:3619775,Europe/Paris,,OIF, +OIF:SP:59:3619776,1,"La Gaite",48.781118,2.473848,0,0,OIF:SA:59:3619775,Europe/Paris,,OIF, +OIF:SP:59:3619777,1,"Hugo-Blum",48.800346,2.435178,0,0,OIF:SA:59:3619777,Europe/Paris,,OIF, +OIF:SP:59:3619778,1,"République-Blum",48.803097,2.433972,0,0,OIF:SA:59:3619778,Europe/Paris,,OIF, +OIF:SP:59:3619779,1,"11 Novembre 1918",48.805157,2.432003,0,0,OIF:SA:59:3619779,Europe/Paris,,OIF, +OIF:SP:59:3619781,1,"Vitry RER",48.800953,2.402321,0,0,OIF:SA:8754529,Europe/Paris,,OIF, +OIF:SP:59:3619782,1,"Vitry RER",48.800818,2.402185,0,0,OIF:SA:8754529,Europe/Paris,,OIF, +OIF:SP:59:3619783,1,"Port à l'Anglais",48.804223,2.405006,0,0,OIF:SA:59:3619783,Europe/Paris,,OIF, +OIF:SP:59:3619784,1,"Port à l'Anglais - Jules Guesde",48.804437,2.408503,0,0,OIF:SA:59:3619784,Europe/Paris,,OIF, +OIF:SP:59:3619785,1,"Waldeck Rousseau - Jules Guesde",48.802116,2.411085,0,0,OIF:SA:59:3619785,Europe/Paris,,OIF, +OIF:SP:59:3619786,1,"Salvador Allende - Edith Cavell",48.796597,2.412329,0,0,OIF:SA:59:3619786,Europe/Paris,,OIF, +OIF:SP:59:3619787,1,"Salvador Allende - Edith Cavell",48.796489,2.412546,0,0,OIF:SA:59:3619786,Europe/Paris,,OIF, +OIF:SP:59:3619791,1,"Paul Vaillant Couturier - Kennedy",48.802667,2.420991,0,0,OIF:SA:59:3619791,Europe/Paris,,OIF, +OIF:SP:59:3619792,1,"Mairie d'Alfortville",48.804321,2.420218,0,0,OIF:SA:59:3619792,Europe/Paris,,OIF, +OIF:SP:59:3619793,1,"Mairie d'Alfortville",48.803908,2.419945,0,0,OIF:SA:59:3619792,Europe/Paris,,OIF, +OIF:SP:59:3619794,1,"Raymond Jaclard",48.803851,2.423565,0,0,OIF:SA:8768115,Europe/Paris,,OIF, +OIF:SP:59:3619795,1,"Raymond Jaclard",48.803932,2.423687,0,0,OIF:SA:8768115,Europe/Paris,,OIF, +OIF:SP:59:3619798,1,"Maisons-Alfort - Alfortville RER.",48.802142,2.425902,0,0,OIF:SA:8768115,Europe/Paris,,OIF, +OIF:SP:59:3619799,1,"Maisons-Alfort - Alfortville RER.",48.800208,2.428497,0,0,OIF:SA:8768115,Europe/Paris,,OIF, +OIF:SP:59:3619834,1,"Dolet - Zola",48.79863,2.422263,0,0,OIF:SA:59:3619834,Europe/Paris,,OIF, +OIF:SP:59:3619835,1,"Edith Cavell - Waldeck Rousseau",48.801577,2.410213,0,0,OIF:SA:59:3619835,Europe/Paris,,OIF, +OIF:SP:59:3619836,1,"Pasteur - Charles Fourier",48.802676,2.406065,0,0,OIF:SA:59:3619836,Europe/Paris,,OIF, +OIF:SP:59:3619837,1,"Joinville-le-Pont RER",48.821161,2.464235,0,0,OIF:SA:8775814,Europe/Paris,,OIF, +OIF:SP:59:3619839,1,"Frères Lumière",48.818181,2.460594,0,0,OIF:SA:59:3619839,Europe/Paris,,OIF, +OIF:SP:59:3619840,1,"Frères Lumière",48.817786,2.460444,0,0,OIF:SA:59:3619839,Europe/Paris,,OIF, +OIF:SP:59:3619841,1,"Les Canadiens",48.816459,2.456834,0,0,OIF:SA:59:3619841,Europe/Paris,,OIF, +OIF:SP:59:3619842,1,"Les Canadiens",48.816874,2.455447,0,0,OIF:SA:59:3619841,Europe/Paris,,OIF, +OIF:SP:59:3619843,1,"Écoles de Gravelle",48.815351,2.459227,0,0,OIF:SA:59:3619843,Europe/Paris,,OIF, +OIF:SP:59:3619844,1,"Écoles de Gravelle",48.816016,2.459364,0,0,OIF:SA:59:3619843,Europe/Paris,,OIF, +OIF:SP:59:3619845,1,"John Fitzgerald Kennedy",48.814359,2.462273,0,0,OIF:SA:59:3619845,Europe/Paris,,OIF, +OIF:SP:59:3619846,1,"John Fitzgerald Kennedy",48.814665,2.462028,0,0,OIF:SA:59:3619845,Europe/Paris,,OIF, +OIF:SP:59:3619847,1,"Pont de Maisons-Alfort",48.809434,2.453715,0,0,OIF:SA:59:3619847,Europe/Paris,,OIF, +OIF:SP:59:3619852,1,"Mayenne",48.806826,2.463792,0,0,OIF:SA:59:3619852,Europe/Paris,,OIF, +OIF:SP:59:3619853,1,"Mayenne",48.806646,2.464431,0,0,OIF:SA:59:3619852,Europe/Paris,,OIF, +OIF:SP:59:3619854,1,"Halage",48.805233,2.466047,0,0,OIF:SA:59:3619854,Europe/Paris,,OIF, +OIF:SP:59:3619855,1,"Halage",48.804918,2.465992,0,0,OIF:SA:59:3619854,Europe/Paris,,OIF, +OIF:SP:59:3619856,1,"Chéret - Laferrière",48.802489,2.459985,0,0,OIF:SA:59:3619856,Europe/Paris,,OIF, +OIF:SP:59:3619857,1,"Chéret - Laferrière",48.802399,2.460067,0,0,OIF:SA:59:3619856,Europe/Paris,,OIF, +OIF:SP:59:3619858,1,"Collège Plaisance",48.800542,2.456443,0,0,OIF:SA:59:3619858,Europe/Paris,,OIF, +OIF:SP:59:3619859,1,"Collège Plaisance",48.801107,2.457792,0,0,OIF:SA:59:3619858,Europe/Paris,,OIF, +OIF:SP:59:3619860,1,"Henri Mondor - Laferrière",48.799636,2.45455,0,0,OIF:SA:59:3619860,Europe/Paris,,OIF, +OIF:SP:59:3619861,1,"Henri Mondor - Laferrière",48.799851,2.455258,0,0,OIF:SA:59:3619860,Europe/Paris,,OIF, +OIF:SP:59:3619866,1,"Saint-Simon",48.793676,2.446633,0,0,OIF:SA:59:3619866,Europe/Paris,,OIF, +OIF:SP:59:3619868,1,"Montaigut",48.790594,2.445457,0,0,OIF:SA:59:3619760,Europe/Paris,,OIF, +OIF:SP:59:3619869,1,"Montaigut",48.790522,2.445837,0,0,OIF:SA:59:3619760,Europe/Paris,,OIF, +OIF:SP:59:3619883,1,"Jean Mermoz",48.776163,2.468273,0,0,OIF:SA:59:3619883,Europe/Paris,,OIF, +OIF:SP:59:3619884,1,"Jean Mermoz",48.775812,2.468802,0,0,OIF:SA:59:3619883,Europe/Paris,,OIF, +OIF:SP:59:3619885,1,"Mont Mesly",48.774358,2.467466,0,0,OIF:SA:59:3619885,Europe/Paris,,OIF, +OIF:SP:59:3619886,1,"Mont Mesly",48.774095,2.469016,0,0,OIF:SA:59:3619885,Europe/Paris,,OIF, +OIF:SP:59:3619887,1,"Docteur Ramon",48.773794,2.464976,0,0,OIF:SA:59:3619887,Europe/Paris,,OIF, +OIF:SP:59:3619888,1,"Clos Vougeot",48.771725,2.466888,0,0,OIF:SA:59:3619888,Europe/Paris,,OIF, +OIF:SP:59:3619889,1,"Clos Vougeot",48.771813,2.468697,0,0,OIF:SA:59:3619888,Europe/Paris,,OIF, +OIF:SP:59:3619890,1,"Coteaux Sud",48.770268,2.467823,0,0,OIF:SA:59:3619890,Europe/Paris,,OIF, +OIF:SP:59:3619891,1,"Coteaux Sud",48.770896,2.468708,0,0,OIF:SA:59:3619890,Europe/Paris,,OIF, +OIF:SP:59:3619892,1,"Lycée Gutenberg",48.769508,2.472131,0,0,OIF:SA:59:3619892,Europe/Paris,,OIF, +OIF:SP:59:3619893,1,"Lycée Gutenberg",48.769707,2.471044,0,0,OIF:SA:59:3619892,Europe/Paris,,OIF, +OIF:SP:59:3619896,1,"Europarc",48.76603,2.471456,0,0,OIF:SA:13:664,Europe/Paris,,OIF, +OIF:SP:59:3619897,1,"Europarc",48.765626,2.471428,0,0,OIF:SA:13:664,Europe/Paris,,OIF, +OIF:SP:59:3619901,1,"Maisons-Alfort - Alfortville RER",48.80171,2.427139,0,0,OIF:SA:8768115,Europe/Paris,,OIF, +OIF:SP:59:3619903,1,"Mairie de Maisons-Alfort",48.801247,2.431887,0,0,OIF:SA:59:3619751,Europe/Paris,,OIF, +OIF:SP:59:3619904,1,"Mairie de Maisons-Alfort",48.801023,2.43122,0,0,OIF:SA:59:3619751,Europe/Paris,,OIF, +OIF:SP:59:3619905,1,"République - Blum",48.803007,2.434679,0,0,OIF:SA:59:3619778,Europe/Paris,,OIF, +OIF:SP:59:3619906,1,"République - Blum",48.802594,2.43344,0,0,OIF:SA:59:3619778,Europe/Paris,,OIF, +OIF:SP:59:3619907,1,"Jouet",48.80402,2.437062,0,0,OIF:SA:59:3619907,Europe/Paris,,OIF, +OIF:SP:59:3619908,1,"Jouet",48.804084,2.436749,0,0,OIF:SA:59:3619907,Europe/Paris,,OIF, +OIF:SP:59:3619909,1,"République - Général Leclerc",48.805456,2.44044,0,0,OIF:SA:59:3619909,Europe/Paris,,OIF, +OIF:SP:59:3619910,1,"République - Général Leclerc",48.805456,2.439963,0,0,OIF:SA:59:3619909,Europe/Paris,,OIF, +OIF:SP:59:3619915,1,"Gabriel Péri",48.810051,2.436883,0,0,OIF:SA:59484,Europe/Paris,,OIF, +OIF:SP:59:3619916,1,"Gabriel Péri",48.810159,2.437809,0,0,OIF:SA:59484,Europe/Paris,,OIF, +OIF:SP:59:3619917,1,"Rene Coty",48.809939,2.442599,0,0,OIF:SA:59:3619917,Europe/Paris,,OIF, +OIF:SP:59:3619918,1,"Rene Coty",48.810028,2.443048,0,0,OIF:SA:59:3619917,Europe/Paris,,OIF, +OIF:SP:59:3619919,1,"Rue de Lille",48.807409,2.446866,0,0,OIF:SA:59:3619919,Europe/Paris,,OIF, +OIF:SP:59:3619920,1,"Rue de Lille",48.807517,2.446567,0,0,OIF:SA:59:3619919,Europe/Paris,,OIF, +OIF:SP:59:3619921,1,"Rue de Marseille",48.808511,2.451005,0,0,OIF:SA:59:3619921,Europe/Paris,,OIF, +OIF:SP:59:3619922,1,"Rue de Marseille",48.808538,2.450366,0,0,OIF:SA:59:3619921,Europe/Paris,,OIF, +OIF:SP:59:3619923,1,"Pont de Maisons-Alfort",48.809084,2.453143,0,0,OIF:SA:59:3619847,Europe/Paris,,OIF, +OIF:SP:59:3619924,1,"Pont de Maisons-Alfort",48.809559,2.45494,0,0,OIF:SA:59:3619847,Europe/Paris,,OIF, +OIF:SP:59:3619925,1,"Planètes",48.808478,2.457169,0,0,OIF:SA:59:3619925,Europe/Paris,,OIF, +OIF:SP:59:3619926,1,"Planètes",48.809205,2.45811,0,0,OIF:SA:59:3619925,Europe/Paris,,OIF, +OIF:SP:59:3619927,1,"Louis Fliche",48.807646,2.462352,0,0,OIF:SA:59:3619927,Europe/Paris,,OIF, +OIF:SP:59:3619935,1,"Collège de Stael",48.799612,2.442428,0,0,OIF:SA:59:3619935,Europe/Paris,,OIF, +OIF:SP:59:3619936,1,"Collège de Stael",48.799774,2.442306,0,0,OIF:SA:59:3619935,Europe/Paris,,OIF, +OIF:SP:59:3619937,1,"Les Juilliottes - Métro",48.803934,2.443131,0,0,OIF:SA:59483,Europe/Paris,,OIF, +OIF:SP:59:3619938,1,"Les Juilliottes - Métro",48.803961,2.442967,0,0,OIF:SA:59483,Europe/Paris,,OIF, +OIF:SP:59:3620233,1,"Carrefour de la Résistance",48.757287,2.388291,0,0,OIF:SA:59:3620233,Europe/Paris,,OIF, +OIF:SP:59:3620236,1,"Georges Halgoult",48.760823,2.399905,0,0,OIF:SA:59:3620236,Europe/Paris,,OIF, +OIF:SP:59:3620239,1,"Rene Panhard",48.762845,2.401009,0,0,OIF:SA:59:3620239,Europe/Paris,,OIF, +OIF:SP:59:3620240,1,"Rouget de Lisle",48.764065,2.405212,0,0,OIF:SA:4:52,Europe/Paris,,OIF, +OIF:SP:59:3620241,1,"Rouget de Lisle",48.764263,2.404804,0,0,OIF:SA:4:52,Europe/Paris,,OIF, +OIF:SP:59:3620242,1,"Choisy-le-Roi RER",48.765195,2.40883,0,0,OIF:SA:8754528,Europe/Paris,,OIF, +OIF:SP:59:3620243,1,"Choisy-le-Roi RER",48.765447,2.408286,0,0,OIF:SA:8754528,Europe/Paris,,OIF, +OIF:SP:59:3620252,1,"Basse Quinte",48.775191,2.443398,0,0,OIF:SA:32:46362,Europe/Paris,,OIF, +OIF:SP:59:3620253,1,"Basse Quinte",48.775298,2.443643,0,0,OIF:SA:32:46362,Europe/Paris,,OIF, +OIF:SP:59:3620254,1,"Val Pompadour",48.768968,2.446309,0,0,OIF:SA:32:46342,Europe/Paris,,OIF, +OIF:SP:59:3620255,1,"Val Pompadour",48.769067,2.446526,0,0,OIF:SA:32:46342,Europe/Paris,,OIF, +OIF:SP:59:3620256,1,"Faculté des Sports",48.768238,2.45728,0,0,OIF:SA:59:3620256,Europe/Paris,,OIF, +OIF:SP:59:3620257,1,"Faculté des Sports",48.768302,2.456791,0,0,OIF:SA:59:3620256,Europe/Paris,,OIF, +OIF:SP:59:3620270,1,"Sucy-Bonneuil RER",48.772133,2.506378,0,0,OIF:SA:8775819,Europe/Paris,,OIF, +OIF:SP:59:3620271,1,"Sucy-Bonneuil RER",48.77198,2.506473,0,0,OIF:SA:8775819,Europe/Paris,,OIF, +OIF:SP:59:3639714,1,"Noisy-Champs RER - Descartes",48.843499,2.582389,0,0,OIF:SA:8775834,Europe/Paris,,OIF, +OIF:SP:59:3639715,1,"Noisy-Champs RER - Descartes",48.842582,2.582616,0,0,OIF:SA:8775834,Europe/Paris,,OIF, +OIF:SP:59:3639720,1,"Les Aérostiers",48.831704,2.584008,0,0,OIF:SA:59:3639720,Europe/Paris,,OIF, +OIF:SP:59:3639721,1,"Les Aérostiers",48.83173,2.58428,0,0,OIF:SA:59:3639720,Europe/Paris,,OIF, +OIF:SP:59:3639722,1,"Les 2 Lacs",48.830779,2.588046,0,0,OIF:SA:59:3639722,Europe/Paris,,OIF, +OIF:SP:59:3639723,1,"Les 2 Lacs",48.830994,2.58832,0,0,OIF:SA:59:3639722,Europe/Paris,,OIF, +OIF:SP:59:3639724,1,"Malnoue - Bois des Souches",48.830594,2.590441,0,0,OIF:SA:59:3639724,Europe/Paris,,OIF, +OIF:SP:59:3639725,1,"Malnoue - Bois des Souches",48.830656,2.590782,0,0,OIF:SA:59:3639724,Europe/Paris,,OIF, +OIF:SP:59:3639726,1,"Malnoue - Place Auguste Legemble",48.827024,2.595311,0,0,OIF:SA:59:3639726,Europe/Paris,,OIF, +OIF:SP:59:3639727,1,"Malnoue - Place Auguste Legemble",48.827105,2.595475,0,0,OIF:SA:59:3639726,Europe/Paris,,OIF, +OIF:SP:59:3639728,1,"Malnoue - Ancien Monastère",48.829417,2.598726,0,0,OIF:SA:59:3639728,Europe/Paris,,OIF, +OIF:SP:59:3639729,1,"Malnoue - Ancien Monastère",48.829561,2.598563,0,0,OIF:SA:59:3639728,Europe/Paris,,OIF, +OIF:SP:59:3639730,1,"Malnoue - Avenue de l'Europe",48.830042,2.604651,0,0,OIF:SA:59:3639730,Europe/Paris,,OIF, +OIF:SP:59:3639731,1,"Malnoue - Avenue de l'Europe",48.830112,2.605318,0,0,OIF:SA:59:3639730,Europe/Paris,,OIF, +OIF:SP:59:3639732,1,"Malnoue - Stade Dominique Rocheteau",48.826009,2.611069,0,0,OIF:SA:59:3639732,Europe/Paris,,OIF, +OIF:SP:59:3639733,1,"Malnoue - Stade Dominique Rocheteau",48.826351,2.611098,0,0,OIF:SA:59:3639732,Europe/Paris,,OIF, +OIF:SP:59:3639734,1,"Cimetière d'Emerainville",48.817631,2.615897,0,0,OIF:SA:59:3639734,Europe/Paris,,OIF, +OIF:SP:59:3639735,1,"Cimetière d'Emerainville",48.817702,2.616129,0,0,OIF:SA:59:3639734,Europe/Paris,,OIF, +OIF:SP:59:3639743,1,"Emerainville-Pontault-Combault RER",48.806516,2.618232,0,0,OIF:SA:8711604,Europe/Paris,,OIF, +OIF:SP:59:3663571,1,"Rene Coty",48.809911,2.443932,0,0,OIF:SA:59:3619917,Europe/Paris,,OIF, +OIF:SP:59:3663573,1,"Lyon",48.809723,2.452151,0,0,OIF:SA:59:3663573,Europe/Paris,,OIF, +OIF:SP:59:3663575,1,"Planètes",48.807975,2.45612,0,0,OIF:SA:59:3619925,Europe/Paris,,OIF, +OIF:SP:59:3663576,1,"Danielle Casanova",48.805323,2.456958,0,0,OIF:SA:59:3663576,Europe/Paris,,OIF, +OIF:SP:59:3663577,1,"Chéret - Laferrière",48.802317,2.461155,0,0,OIF:SA:59:3619856,Europe/Paris,,OIF, +OIF:SP:59:3663578,1,"Hôpital Intercommunal",48.79984,2.466088,0,0,OIF:SA:59:3663578,Europe/Paris,,OIF, +OIF:SP:59:3663583,1,"Cimetière - Rabelais",48.806188,2.479833,0,0,OIF:SA:59:3663583,Europe/Paris,,OIF, +OIF:SP:59:3663584,1,"Le Parc de Saint-Maur RER",48.804797,2.485326,0,0,OIF:SA:8775816,Europe/Paris,,OIF, +OIF:SP:59:3663585,1,"Mairie de Saint-Maur",48.803126,2.484546,0,0,OIF:SA:59:3663585,Europe/Paris,,OIF, +OIF:SP:59:3663586,1,"Quatre Septembre",48.800107,2.484184,0,0,OIF:SA:59:3663586,Europe/Paris,,OIF, +OIF:SP:59:3663587,1,"Boulevard de Créteil",48.797734,2.483919,0,0,OIF:SA:59:3663587,Europe/Paris,,OIF, +OIF:SP:59:3663588,1,"Garibaldi",48.795334,2.484225,0,0,OIF:SA:59:3663588,Europe/Paris,,OIF, +OIF:SP:59:3663589,1,"Adamville",48.793669,2.485988,0,0,OIF:SA:59:3663589,Europe/Paris,,OIF, +OIF:SP:59:3663590,1,"Vassal",48.793382,2.478383,0,0,OIF:SA:59:3663590,Europe/Paris,,OIF, +OIF:SP:59:3663591,1,"Rue des Coteaux",48.791535,2.474216,0,0,OIF:SA:59:3663591,Europe/Paris,,OIF, +OIF:SP:59:3663592,1,"Villette",48.788827,2.476861,0,0,OIF:SA:59:3663592,Europe/Paris,,OIF, +OIF:SP:59:3663593,1,"La Pie",48.788202,2.480491,0,0,OIF:SA:59:3663593,Europe/Paris,,OIF, +OIF:SP:59:3663595,1,"Paul Bert",48.815578,2.426197,0,0,OIF:SA:59:3663595,Europe/Paris,,OIF, +OIF:SP:59:3663596,1,"Les 7 Arbres",48.815313,2.431913,0,0,OIF:SA:59:3663596,Europe/Paris,,OIF, +OIF:SP:59:3663597,1,"Moulin Brule",48.815453,2.437452,0,0,OIF:SA:59:3663597,Europe/Paris,,OIF, +OIF:SP:59:3663598,1,"Passerelle de Charentonneau",48.815151,2.443684,0,0,OIF:SA:59:3663598,Europe/Paris,,OIF, +OIF:SP:59:3663599,1,"Concorde",48.811726,2.443514,0,0,OIF:SA:59:3663599,Europe/Paris,,OIF, +OIF:SP:59:3663601,1,"Rue de Vincennes",48.80979,2.448314,0,0,OIF:SA:59:3663601,Europe/Paris,,OIF, +OIF:SP:59:3663612,1,"Square Beaurepaire",48.790408,2.476906,0,0,OIF:SA:59:3663612,Europe/Paris,,OIF, +OIF:SP:59:3663613,1,"Bourbaki",48.792182,2.481645,0,0,OIF:SA:59:3663613,Europe/Paris,,OIF, +OIF:SP:59:3663614,1,"Adamville",48.793399,2.486532,0,0,OIF:SA:59:3663589,Europe/Paris,,OIF, +OIF:SP:59:3663615,1,"Inkermann",48.79754,2.488353,0,0,OIF:SA:59:3663615,Europe/Paris,,OIF, +OIF:SP:59:3663616,1,"Bibliothèque Municipale",48.799481,2.488454,0,0,OIF:SA:59:3663616,Europe/Paris,,OIF, +OIF:SP:59:3663617,1,"Mairie de Saint-Maur",48.803079,2.486111,0,0,OIF:SA:59:3663585,Europe/Paris,,OIF, +OIF:SP:59:3663618,1,"Le Parc de Saint-Maur RER",48.804841,2.485952,0,0,OIF:SA:8775816,Europe/Paris,,OIF, +OIF:SP:59:3663619,1,"Cimetière - Rabelais",48.80653,2.47914,0,0,OIF:SA:59:3663583,Europe/Paris,,OIF, +OIF:SP:59:3663625,1,"Hôpital Intercommunal",48.799723,2.466237,0,0,OIF:SA:59:3663578,Europe/Paris,,OIF, +OIF:SP:59:3663626,1,"Chéret - Laferrière",48.802929,2.460259,0,0,OIF:SA:59:3619856,Europe/Paris,,OIF, +OIF:SP:59:3663630,1,"Lyon",48.809849,2.451593,0,0,OIF:SA:59:3663573,Europe/Paris,,OIF, +OIF:SP:59:3663631,1,"Rue de Vincennes",48.809925,2.447797,0,0,OIF:SA:59:3663601,Europe/Paris,,OIF, +OIF:SP:59:3663632,1,"Rene Coty",48.810198,2.443633,0,0,OIF:SA:59:3619917,Europe/Paris,,OIF, +OIF:SP:59:3663646,1,"Rene Coty",48.811277,2.444057,0,0,OIF:SA:59:3619917,Europe/Paris,,OIF, +OIF:SP:59:3663655,1,"Rue des Remises",48.804336,2.472045,0,0,OIF:SA:59:3663655,Europe/Paris,,OIF, +OIF:SP:59:3663656,1,"Saint-Maur-Creteil RER - le Parvis",48.8066,2.473507,0,0,OIF:SA:8775815,Europe/Paris,,OIF, +OIF:SP:59:3663657,1,"Libération - Rabelais",48.807236,2.474706,0,0,OIF:SA:59:3663657,Europe/Paris,,OIF, +OIF:SP:59:3663685,1,"Saint-Maur-Creteil RER",48.805989,2.473111,0,0,OIF:SA:8775815,Europe/Paris,,OIF, +OIF:SP:59:3663696,1,"Godefroy Cavaignac",48.807497,2.474462,0,0,OIF:SA:8775815,Europe/Paris,,OIF, +OIF:SP:59:3663699,1,"Pont de Créteil",48.800643,2.471573,0,0,OIF:SA:59:3663699,Europe/Paris,,OIF, +OIF:SP:59:3663702,1,"Danielle Casanova",48.80581,2.455721,0,0,OIF:SA:59:3663702,Europe/Paris,,OIF, +OIF:SP:59:3663706,1,"Rue de Vincennes",48.80961,2.448014,0,0,OIF:SA:59:3663601,Europe/Paris,,OIF, +OIF:SP:59:3663708,1,"Concorde",48.81178,2.443664,0,0,OIF:SA:59:3663599,Europe/Paris,,OIF, +OIF:SP:59:3663709,1,"Passerelle de Charentonneau",48.814962,2.443834,0,0,OIF:SA:59:3663598,Europe/Paris,,OIF, +OIF:SP:59:3663710,1,"Moulin Brule",48.815597,2.436949,0,0,OIF:SA:59:3663597,Europe/Paris,,OIF, +OIF:SP:59:3663711,1,"Les 7 Arbres",48.815475,2.432158,0,0,OIF:SA:59:3663596,Europe/Paris,,OIF, +OIF:SP:59:3663712,1,"Paul Bert",48.815291,2.425489,0,0,OIF:SA:59:3663595,Europe/Paris,,OIF, +OIF:SP:59:3664373,1,"Bobigny - Benoit Frachon",48.904083,2.430875,0,0,OIF:SA:59:3664373,Europe/Paris,,OIF, +OIF:SP:59:3664374,1,"Bobigny - Benoit Frachon",48.9042,2.430957,0,0,OIF:SA:59:3664373,Europe/Paris,,OIF, +OIF:SP:59:3664375,1,"Eugène Hénaff",48.902486,2.427601,0,0,OIF:SA:59:3664375,Europe/Paris,,OIF, +OIF:SP:59:3664376,1,"Eugène Hénaff",48.902297,2.427791,0,0,OIF:SA:59:3664375,Europe/Paris,,OIF, +OIF:SP:59:3664377,1,"Les Vignes",48.903414,2.424767,0,0,OIF:SA:59:3664377,Europe/Paris,,OIF, +OIF:SP:59:3664378,1,"Les Vignes",48.903288,2.424753,0,0,OIF:SA:59:3664377,Europe/Paris,,OIF, +OIF:SP:59:3664380,1,"Henri Gautier",48.906003,2.423435,0,0,OIF:SA:59:3664380,Europe/Paris,,OIF, +OIF:SP:59:3664381,1,"Lycée André Sabatier",48.906915,2.429694,0,0,OIF:SA:59:3664381,Europe/Paris,,OIF, +OIF:SP:59:3664382,1,"Lycée André Sabatier",48.907176,2.429627,0,0,OIF:SA:59:3664381,Europe/Paris,,OIF, +OIF:SP:59:3664383,1,"Rue de la Gare",48.906491,2.432243,0,0,OIF:SA:59:3664383,Europe/Paris,,OIF, +OIF:SP:59:3664384,1,"Rue de la Gare",48.906732,2.433634,0,0,OIF:SA:59:3664383,Europe/Paris,,OIF, +OIF:SP:59:3664387,1,"Hôtel de Ville de Bobigny",48.90658,2.444036,0,0,OIF:SA:59070,Europe/Paris,,OIF, +OIF:SP:59:3664390,1,"Bobigny - Pablo Picasso",48.907402,2.448823,0,0,OIF:SA:59342,Europe/Paris,,OIF, +OIF:SP:59:3664400,1,"Place du 19 Mars 1962",48.919954,2.451809,0,0,OIF:SA:59:3664400,Europe/Paris,,OIF, +OIF:SP:59:3664401,1,"Place du 19 Mars 1962",48.919667,2.450841,0,0,OIF:SA:59:3664400,Europe/Paris,,OIF, +OIF:SP:59:3664404,1,"Barbusse - Croizat",48.922707,2.457639,0,0,OIF:SA:59:3664404,Europe/Paris,,OIF, +OIF:SP:59:3664407,1,"Daniel Fery",48.923461,2.459332,0,0,OIF:SA:59:3664407,Europe/Paris,,OIF, +OIF:SP:59:3664410,1,"Suffren",48.92569,2.466865,0,0,OIF:SA:59:3664410,Europe/Paris,,OIF, +OIF:SP:59:3664411,1,"Suffren",48.925942,2.466825,0,0,OIF:SA:59:3664410,Europe/Paris,,OIF, +OIF:SP:59:3664412,1,"Pierre Montillet",48.926316,2.469704,0,0,OIF:SA:59:3664412,Europe/Paris,,OIF, +OIF:SP:59:3664413,1,"Pierre Montillet",48.926487,2.46935,0,0,OIF:SA:59:3664412,Europe/Paris,,OIF, +OIF:SP:59:3664414,1,"Danielle Casanova - Paul Vaillant-Couturier",48.926906,2.472488,0,0,OIF:SA:59:3664414,Europe/Paris,,OIF, +OIF:SP:59:3664415,1,"Danielle Casanova - Paul Vaillant-Couturier",48.927131,2.472461,0,0,OIF:SA:59:3664414,Europe/Paris,,OIF, +OIF:SP:59:3664421,1,"La Sablière",48.931375,2.486071,0,0,OIF:SA:59:3664421,Europe/Paris,,OIF, +OIF:SP:59:3664422,1,"La Sablière",48.931842,2.486304,0,0,OIF:SA:59:3664421,Europe/Paris,,OIF, +OIF:SP:59:3664423,1,"Aulnay-sous-Bois RER",48.931714,2.494829,0,0,OIF:SA:8727141,Europe/Paris,,OIF, +OIF:SP:59:3664425,1,"Rond-Point Pierre Semard - Turgot",48.930813,2.482564,0,0,OIF:SA:59:3664425,Europe/Paris,,OIF, +OIF:SP:59:3664426,1,"Les Limites",48.913839,2.44611,0,0,OIF:SA:59:3664426,Europe/Paris,,OIF, +OIF:SP:59:3664428,1,"République",48.9076,2.426792,0,0,OIF:SA:59:3664428,Europe/Paris,,OIF, +OIF:SP:59:3666561,1,"Gare de l'Est",48.876069,2.358229,0,0,OIF:SA:8711300,Europe/Paris,,OIF, +OIF:SP:59:3666562,1,"Gare de l'Est",48.876114,2.357902,0,0,OIF:SA:8711300,Europe/Paris,,OIF, +OIF:SP:59:3666564,1,"Gare du Nord",48.880833,2.358013,0,0,OIF:SA:8727100,Europe/Paris,,OIF, +OIF:SP:59:3666565,1,"Gare du Nord",48.88068,2.357672,0,0,OIF:SA:8727100,Europe/Paris,,OIF, +OIF:SP:59:3666571,1,"Musée de l'Air et de l'Espace",48.948132,2.438064,0,0,OIF:SA:59:3666571,Europe/Paris,,OIF, +OIF:SP:59:3666588,1,"André Citroën - Visiteurs",48.961154,2.488722,0,0,OIF:SA:59:3666588,Europe/Paris,,OIF, +OIF:SP:59:3666595,1,"227, Avenue des Nations",48.98293,2.519725,0,0,OIF:SA:59:3666595,Europe/Paris,,OIF, +OIF:SP:59:3666596,1,"227, Avenue des Nations",48.97967,2.518266,0,0,OIF:SA:59:3666595,Europe/Paris,,OIF, +OIF:SP:59:3666598,1,"58, Avenue de la Pyramide",48.983419,2.516942,0,0,OIF:SA:59:3666598,Europe/Paris,,OIF, +OIF:SP:59:3666602,1,"Cargo 7",48.988702,2.545745,0,0,OIF:SA:59:3666602,Europe/Paris,,OIF, +OIF:SP:59:3666603,1,"Rue des Rossignols",48.991448,2.526242,0,0,OIF:SA:59:3666603,Europe/Paris,,OIF, +OIF:SP:59:3666604,1,"Rue de la Jeune Fille",48.994044,2.526879,0,0,OIF:SA:59:3666604,Europe/Paris,,OIF, +OIF:SP:59:3666606,1,"Cargo Centre",48.998755,2.525763,0,0,OIF:SA:59:3666606,Europe/Paris,,OIF, +OIF:SP:59:3666608,1,"Rue du Chapitre",49.002531,2.535898,0,0,OIF:SA:59:3666608,Europe/Paris,,OIF, +OIF:SP:59:3666609,1,"Rue des Vignes",49.004541,2.54768,0,0,OIF:SA:59:3666609,Europe/Paris,,OIF, +OIF:SP:59:3666611,1,"Roissypole - Gare - RER",49.010523,2.559685,0,0,OIF:SA:8727146,Europe/Paris,,OIF, +OIF:SP:59:3666612,1,"Tour de Controle",49.009358,2.547809,0,0,OIF:SA:11:147,Europe/Paris,,OIF, +OIF:SP:59:3666614,1,"351, Avenue du Bois de la Pie",48.991966,2.516425,0,0,OIF:SA:59:3666614,Europe/Paris,,OIF, +OIF:SP:59:3666615,1,"291, Avenue du Bois de la Pie",48.986521,2.516352,0,0,OIF:SA:59:3666615,Europe/Paris,,OIF, +OIF:SP:59:3666619,1,"La Fayette - Dunkerque",48.879476,2.355737,0,0,OIF:SA:8727100,Europe/Paris,,OIF, +OIF:SP:59:3666627,1,"Porte de la Chapelle",48.897513,2.359028,0,0,OIF:SA:59513,Europe/Paris,,OIF, +OIF:SP:59:3666644,1,"Marguilliers",48.994391,2.523644,0,0,OIF:SA:59:3666644,Europe/Paris,,OIF, +OIF:SP:59:3666650,1,"Les 2 Cèdres",49.001501,2.527999,0,0,OIF:SA:59:3666650,Europe/Paris,,OIF, +OIF:SP:59:3666659,1,"Terminal 1",49.015371,2.542013,0,0,OIF:SA:59685,Europe/Paris,,OIF, +OIF:SP:59:3666665,1,"Nations",48.972896,2.511035,0,0,OIF:SA:59:3666665,Europe/Paris,,OIF, +OIF:SP:59:3666666,1,"André Citroën - Centre de Production",48.965208,2.494753,0,0,OIF:SA:59:3666666,Europe/Paris,,OIF, +OIF:SP:59:3666685,1,"Maurice Audin",48.950375,2.451522,0,0,OIF:SA:59:3666685,Europe/Paris,,OIF, +OIF:SP:59:3666699,1,"Aeroville - Rue de la Belle Borne",48.989391,2.525429,0,0,OIF:SA:59:3666699,Europe/Paris,,OIF, +OIF:SP:59:3666702,1,"Marguilliers.",48.994705,2.523891,0,0,OIF:SA:59:3666644,Europe/Paris,,OIF, +OIF:SP:59:3666707,1,"Terminal 2A-2C",49.003369,2.56438,0,0,OIF:SA:8700147,Europe/Paris,,OIF, +OIF:SP:59:3666708,1,"Gare TGV-SNCF",49.004273,2.571309,0,0,OIF:SA:8700147,Europe/Paris,,OIF, +OIF:SP:59:3666709,1,"Terminal 2B-2D",49.003936,2.564396,0,0,OIF:SA:8700147,Europe/Paris,,OIF, +OIF:SP:59:3666715,1,"Gendarmerie",49.015077,2.529266,0,0,OIF:SA:59:3666715,Europe/Paris,,OIF, +OIF:SP:59:3666716,1,"Rue des 2 Sœurs",49.012367,2.521236,0,0,OIF:SA:59:3666716,Europe/Paris,,OIF, +OIF:SP:59:3666718,1,"Entretien Sud",49.007466,2.511998,0,0,OIF:SA:59:3666718,Europe/Paris,,OIF, +OIF:SP:59:3666730,1,"Porte de la Chapelle",48.897342,2.359424,0,0,OIF:SA:59513,Europe/Paris,,OIF, +OIF:SP:59:3666736,1,"Maurice Audin",48.950242,2.450089,0,0,OIF:SA:59:3666685,Europe/Paris,,OIF, +OIF:SP:59:3666746,1,"Garonor-Porte Sud",48.95662,2.461648,0,0,OIF:SA:59:3666746,Europe/Paris,,OIF, +OIF:SP:59:3666747,1,"Garonor-Porte Sud",48.95645,2.460924,0,0,OIF:SA:59:3666746,Europe/Paris,,OIF, +OIF:SP:59:3666749,1,"André Citroën - Centre de Production",48.964685,2.496199,0,0,OIF:SA:59:3666666,Europe/Paris,,OIF, +OIF:SP:59:3666753,1,"58, Avenue de la Pyramide",48.983545,2.517215,0,0,OIF:SA:59:3666598,Europe/Paris,,OIF, +OIF:SP:59:3666762,1,"Zone Technique",49.011953,2.533311,0,0,OIF:SA:20:482,Europe/Paris,,OIF, +OIF:SP:59:3666765,1,"Entretien Nord",49.011568,2.515264,0,0,OIF:SA:20:480,Europe/Paris,,OIF, +OIF:SP:59:3666767,1,"Entretien Nord.",49.01154,2.515742,0,0,OIF:SA:20:480,Europe/Paris,,OIF, +OIF:SP:59:3666770,1,"Place de la Chapelle",48.885066,2.359187,0,0,OIF:SA:59218,Europe/Paris,,OIF, +OIF:SP:59:3666775,1,"Place de la Chapelle",48.883628,2.359363,0,0,OIF:SA:59218,Europe/Paris,,OIF, +OIF:SP:59:3666779,1,"Lénine",48.949802,2.439609,0,0,OIF:SA:59:3666779,Europe/Paris,,OIF, +OIF:SP:59:3666784,1,"Robert Bremond",48.954341,2.457644,0,0,OIF:SA:59:3666784,Europe/Paris,,OIF, +OIF:SP:59:3666786,1,"Garonor",48.956525,2.466001,0,0,OIF:SA:59:3666786,Europe/Paris,,OIF, +OIF:SP:59:3666787,1,"André Citroën - Visiteurs",48.960237,2.488815,0,0,OIF:SA:59:3666588,Europe/Paris,,OIF, +OIF:SP:59:3666789,1,"Nations",48.972707,2.510993,0,0,OIF:SA:59:3666665,Europe/Paris,,OIF, +OIF:SP:59:3666790,1,"Parc des Expositions RER",48.973566,2.513658,0,0,OIF:SA:8727148,Europe/Paris,,OIF, +OIF:SP:59:3666793,1,"Parc des Nations",48.989019,2.516551,0,0,OIF:SA:59:3666793,Europe/Paris,,OIF, +OIF:SP:59:3672105,1,"Nation - Trone",48.848248,2.398146,0,0,OIF:SA:8775810,Europe/Paris,,OIF, +OIF:SP:59:3672106,1,"Pyrénées - Docteur Netter",48.847309,2.406642,0,0,OIF:SA:59:3672106,Europe/Paris,,OIF, +OIF:SP:59:3672109,1,"Porte de Montreuil",48.853993,2.410696,0,0,OIF:SA:59491,Europe/Paris,,OIF, +OIF:SP:59:3672110,1,"Porte de Montreuil",48.852906,2.410558,0,0,OIF:SA:59491,Europe/Paris,,OIF, +OIF:SP:59:3672112,1,"Porte de Bagnolet",48.864788,2.409662,0,0,OIF:SA:59435,Europe/Paris,,OIF, +OIF:SP:59:3672114,1,"Échangeur de Bagnolet",48.865102,2.410943,0,0,OIF:SA:59:3672114,Europe/Paris,,OIF, +OIF:SP:59:3672115,1,"La Poste",48.867542,2.416682,0,0,OIF:SA:59:3672115,Europe/Paris,,OIF, +OIF:SP:59:3672129,1,"Jardins de la Noue",48.919534,2.475236,0,0,OIF:SA:59:3672129,Europe/Paris,,OIF, +OIF:SP:59:3672130,1,"Surcouf - Jean Jaurès",48.921362,2.471941,0,0,OIF:SA:59:3672130,Europe/Paris,,OIF, +OIF:SP:59:3672131,1,"Surcouf - Jean Jaurès",48.921147,2.471559,0,0,OIF:SA:59:3672130,Europe/Paris,,OIF, +OIF:SP:59:3672132,1,"Danielle Casanova",48.923796,2.473339,0,0,OIF:SA:59:3672132,Europe/Paris,,OIF, +OIF:SP:59:3672133,1,"Danielle Casanova",48.924138,2.472726,0,0,OIF:SA:59:3672132,Europe/Paris,,OIF, +OIF:SP:59:3672134,1,"Les 4 Tours",48.925278,2.474352,0,0,OIF:SA:59:3672134,Europe/Paris,,OIF, +OIF:SP:59:3672135,1,"Les 4 Tours",48.925278,2.474147,0,0,OIF:SA:59:3672134,Europe/Paris,,OIF, +OIF:SP:59:3672160,1,"Roissypole",49.010487,2.55933,0,0,OIF:SA:8727146,Europe/Paris,,OIF, +OIF:SP:59:3672163,1,"Rue du Chapitre",49.002647,2.536199,0,0,OIF:SA:59:3666608,Europe/Paris,,OIF, +OIF:SP:59:3672164,1,"Les 2 Cèdres",49.002192,2.528384,0,0,OIF:SA:59:3666650,Europe/Paris,,OIF, +OIF:SP:59:3672168,1,"Pyrénées - Docteur Netter",48.847525,2.406697,0,0,OIF:SA:59228,Europe/Paris,,OIF, +OIF:SP:59:3672175,1,"Rue de Paris",48.853927,2.415463,0,0,OIF:SA:59:3672175,Europe/Paris,,OIF, +OIF:SP:59:3672176,1,"Rue de Paris",48.853936,2.41519,0,0,OIF:SA:59:3672175,Europe/Paris,,OIF, +OIF:SP:59:3672177,1,"Edouard Vaillant",48.858179,2.414761,0,0,OIF:SA:59:3672177,Europe/Paris,,OIF, +OIF:SP:59:3672178,1,"Edouard Vaillant",48.858494,2.414584,0,0,OIF:SA:59:3672177,Europe/Paris,,OIF, +OIF:SP:59:3672179,1,"Général de Gaulle",48.861944,2.416088,0,0,OIF:SA:59448,Europe/Paris,,OIF, +OIF:SP:59:3672180,1,"Général de Gaulle",48.862016,2.415952,0,0,OIF:SA:59448,Europe/Paris,,OIF, +OIF:SP:59:3672182,1,"Gallieni - Métro",48.865807,2.417974,0,0,OIF:SA:59448,Europe/Paris,,OIF, +OIF:SP:59:3672208,1,"Aeroville - Rue de la Belle Borne",48.989499,2.525634,0,0,OIF:SA:59:3666699,Europe/Paris,,OIF, +OIF:SP:59:3672210,1,"Rue des Rossignols",48.990882,2.52613,0,0,OIF:SA:59:3666603,Europe/Paris,,OIF, +OIF:SP:59:3672212,1,"Rue de la Jeune Fille",48.99391,2.526469,0,0,OIF:SA:59:3666604,Europe/Paris,,OIF, +OIF:SP:59:3672220,1,"Zone Technique",49.011531,2.532914,0,0,OIF:SA:20:482,Europe/Paris,,OIF, +OIF:SP:59:3672227,1,"Rue des Vignes",49.004721,2.54779,0,0,OIF:SA:8799456,Europe/Paris,,OIF, +OIF:SP:59:3672240,1,"Erignac",48.850736,2.416057,0,0,OIF:SA:59:3672240,Europe/Paris,,OIF, +OIF:SP:59:3672266,1,"Porte de Bagnolet",48.864554,2.40958,0,0,OIF:SA:59435,Europe/Paris,,OIF, +OIF:SP:59:3672267,1,"Échangeur de Bagnolet",48.864886,2.411284,0,0,OIF:SA:59:3672114,Europe/Paris,,OIF, +OIF:SP:59:3672269,1,"Gallieni - Métro",48.864046,2.417113,0,0,OIF:SA:59448,Europe/Paris,,OIF, +OIF:SP:59:3673583,1,"Gare d'Austerlitz",48.843866,2.364058,0,0,OIF:SA:8754700,Europe/Paris,,OIF, +OIF:SP:59:3673584,1,"Gare d'Austerlitz",48.84419,2.36418,0,0,OIF:SA:8754700,Europe/Paris,,OIF, +OIF:SP:59:3673585,1,"Pont d'Austerlitz - Quai de la Rapee",48.84524,2.369069,0,0,OIF:SA:59633,Europe/Paris,,OIF, +OIF:SP:59:3673586,1,"Pont d'Austerlitz - Quai de la Rapee",48.845402,2.368661,0,0,OIF:SA:59633,Europe/Paris,,OIF, +OIF:SP:59:3673587,1,"Gare de Lyon - Diderot",48.845985,2.373999,0,0,OIF:SA:8768600,Europe/Paris,,OIF, +OIF:SP:59:3673588,1,"Gare de Lyon - Diderot",48.84568,2.371248,0,0,OIF:SA:8768600,Europe/Paris,,OIF, +OIF:SP:59:3673589,1,"Daumesnil - Ledru Rollin",48.848429,2.37317,0,0,OIF:SA:59:3673589,Europe/Paris,,OIF, +OIF:SP:59:3673590,1,"Daumesnil - Ledru Rollin",48.848861,2.372776,0,0,OIF:SA:59:3673589,Europe/Paris,,OIF, +OIF:SP:59:3673591,1,"Ledru Rollin - Faubourg Saint-Antoine",48.851817,2.376577,0,0,OIF:SA:59468,Europe/Paris,,OIF, +OIF:SP:59:3673592,1,"Charonne - Keller",48.853102,2.377327,0,0,OIF:SA:59:3673592,Europe/Paris,,OIF, +OIF:SP:59:3673593,1,"Basfroi",48.855258,2.378609,0,0,OIF:SA:59:3673593,Europe/Paris,,OIF, +OIF:SP:59:3673594,1,"Basfroi",48.855717,2.378583,0,0,OIF:SA:59:3673593,Europe/Paris,,OIF, +OIF:SP:59:3673595,1,"Voltaire - Léon Blum",48.857944,2.381731,0,0,OIF:SA:59616,Europe/Paris,,OIF, +OIF:SP:59:3673596,1,"Voltaire - Léon Blum",48.858088,2.380873,0,0,OIF:SA:59616,Europe/Paris,,OIF, +OIF:SP:59:3673597,1,"Saint-Maur - Servan",48.858761,2.384973,0,0,OIF:SA:59:3673597,Europe/Paris,,OIF, +OIF:SP:59:3673599,1,"Auguste Métivier",48.862948,2.388151,0,0,OIF:SA:59584,Europe/Paris,,OIF, +OIF:SP:59:3673600,1,"Auguste Métivier",48.863101,2.387892,0,0,OIF:SA:59584,Europe/Paris,,OIF, +OIF:SP:59:3673601,1,"Mûriers",48.863827,2.391571,0,0,OIF:SA:59:3673601,Europe/Paris,,OIF, +OIF:SP:59:3673602,1,"Mûriers",48.864043,2.391707,0,0,OIF:SA:59:3673601,Europe/Paris,,OIF, +OIF:SP:59:3673604,1,"Martin Nadaud",48.864841,2.394814,0,0,OIF:SA:59325,Europe/Paris,,OIF, +OIF:SP:59:3673605,1,"Gambetta - Mairie du 20ème",48.865683,2.399256,0,0,OIF:SA:59325,Europe/Paris,,OIF, +OIF:SP:59:3673606,1,"Gambetta - Mairie du 20ème",48.865621,2.399024,0,0,OIF:SA:59325,Europe/Paris,,OIF, +OIF:SP:59:3673608,1,"Saint-Fargeau",48.871379,2.404195,0,0,OIF:SA:59326,Europe/Paris,,OIF, +OIF:SP:59:3673609,1,"Saint-Fargeau",48.872259,2.404537,0,0,OIF:SA:59326,Europe/Paris,,OIF, +OIF:SP:59:3673610,1,"Piscine des Tourelles",48.874757,2.405725,0,0,OIF:SA:59:3673610,Europe/Paris,,OIF, +OIF:SP:59:3673611,1,"Piscine des Tourelles",48.874569,2.405466,0,0,OIF:SA:59:3673610,Europe/Paris,,OIF, +OIF:SP:59:3673612,1,"Porte des Lilas - Métro",48.876779,2.406518,0,0,OIF:SA:59327,Europe/Paris,,OIF, +OIF:SP:59:3673613,1,"Porte des Lilas - Métro",48.876869,2.406368,0,0,OIF:SA:59327,Europe/Paris,,OIF, +OIF:SP:59:3673614,1,"Rene Fonck",48.878808,2.409042,0,0,OIF:SA:59:3673614,Europe/Paris,,OIF, +OIF:SP:59:3673616,1,"Jean Jaures-Belvedere",48.880804,2.408554,0,0,OIF:SA:59:3673616,Europe/Paris,,OIF, +OIF:SP:59:3673617,1,"Jean Jaures-Belvedere",48.880624,2.408213,0,0,OIF:SA:59:3673616,Europe/Paris,,OIF, +OIF:SP:59:3673618,1,"Place Séverine",48.882475,2.409047,0,0,OIF:SA:59:3673618,Europe/Paris,,OIF, +OIF:SP:59:3673619,1,"Place Séverine",48.882251,2.408406,0,0,OIF:SA:59:3673618,Europe/Paris,,OIF, +OIF:SP:59:3673620,1,"Jean Jaurès",48.885172,2.407715,0,0,OIF:SA:59:3673620,Europe/Paris,,OIF, +OIF:SP:59:3673621,1,"Jean Jaurès",48.885235,2.407524,0,0,OIF:SA:59:3673620,Europe/Paris,,OIF, +OIF:SP:59:3673622,1,"Cimetière du Pré-Saint-Gervais",48.887383,2.408358,0,0,OIF:SA:59:3673622,Europe/Paris,,OIF, +OIF:SP:59:3673623,1,"Cimetière du Pré-Saint-Gervais",48.887419,2.408195,0,0,OIF:SA:59:3673622,Europe/Paris,,OIF, +OIF:SP:59:3673624,1,"Paul Bert-Cimetiere",48.889089,2.410637,0,0,OIF:SA:59:3673624,Europe/Paris,,OIF, +OIF:SP:59:3673625,1,"Paul Bert-Cimetiere",48.889134,2.409628,0,0,OIF:SA:59:3673624,Europe/Paris,,OIF, +OIF:SP:59:3673627,1,"Charles Auray",48.890514,2.416309,0,0,OIF:SA:59:3673627,Europe/Paris,,OIF, +OIF:SP:59:3673628,1,"Manufacture des Tabacs",48.893371,2.418276,0,0,OIF:SA:59:3673628,Europe/Paris,,OIF, +OIF:SP:59:3673629,1,"Manufacture des Tabacs",48.892851,2.416448,0,0,OIF:SA:59:3673628,Europe/Paris,,OIF, +OIF:SP:59:3673631,1,"Église de Pantin - Métro",48.893545,2.41386,0,0,OIF:SA:59344,Europe/Paris,,OIF, +OIF:SP:59:3673632,1,"Candale-Stade de la Seigneurie",48.88923,2.415216,0,0,OIF:SA:59:3673632,Europe/Paris,,OIF, +OIF:SP:59:3673636,1,"Saint-Maur - Servan",48.858941,2.384892,0,0,OIF:SA:59:3673636,Europe/Paris,,OIF, +OIF:SP:59:3677651,1,"Torcy RER",48.838688,2.655482,0,0,OIF:SA:8775837,Europe/Paris,,OIF, +OIF:SP:59:3677653,1,"Lycée Jean Moulin",48.836144,2.655657,0,0,OIF:SA:59:3677653,Europe/Paris,,OIF, +OIF:SP:59:3677654,1,"Lycée Jean Moulin",48.836063,2.655752,0,0,OIF:SA:59:3677653,Europe/Paris,,OIF, +OIF:SP:59:3677655,1,"Collège du Segrais",48.835137,2.652778,0,0,OIF:SA:8798561,Europe/Paris,,OIF, +OIF:SP:59:3677656,1,"Collège du Segrais",48.834948,2.652886,0,0,OIF:SA:8798561,Europe/Paris,,OIF, +OIF:SP:59:3677657,1,"Camille Saint-Saëns",48.836312,2.650089,0,0,OIF:SA:59:3677657,Europe/Paris,,OIF, +OIF:SP:59:3677658,1,"Camille Saint-Saëns",48.83653,2.649315,0,0,OIF:SA:59:3677657,Europe/Paris,,OIF, +OIF:SP:59:3677659,1,"Médiathèque du Segrais",48.838498,2.64919,0,0,OIF:SA:59:3677659,Europe/Paris,,OIF, +OIF:SP:59:3677660,1,"Médiathèque du Segrais",48.838526,2.649,0,0,OIF:SA:59:3677659,Europe/Paris,,OIF, +OIF:SP:59:3677661,1,"Rû de Maubuée",48.840557,2.648876,0,0,OIF:SA:59:3677661,Europe/Paris,,OIF, +OIF:SP:59:3677662,1,"Collège Jean Monnet",48.842845,2.647229,0,0,OIF:SA:8798553,Europe/Paris,,OIF, +OIF:SP:59:3677663,1,"Collège Jean Monnet",48.842655,2.647418,0,0,OIF:SA:8798553,Europe/Paris,,OIF, +OIF:SP:59:3677664,1,"Baudelaire",48.843724,2.644143,0,0,OIF:SA:59:3677664,Europe/Paris,,OIF, +OIF:SP:59:3677665,1,"Baudelaire",48.84358,2.644251,0,0,OIF:SA:59:3677664,Europe/Paris,,OIF, +OIF:SP:59:3677666,1,"La Tour d'Auvergne",48.841079,2.638381,0,0,OIF:SA:59:3677666,Europe/Paris,,OIF, +OIF:SP:59:3677667,1,"La Tour d'Auvergne",48.841123,2.638517,0,0,OIF:SA:59:3677666,Europe/Paris,,OIF, +OIF:SP:59:3677668,1,"Lycée Émily Brontë",48.839181,2.638792,0,0,OIF:SA:59:3677668,Europe/Paris,,OIF, +OIF:SP:59:3677669,1,"Lycée Émily Brontë",48.839531,2.639039,0,0,OIF:SA:59:3677668,Europe/Paris,,OIF, +OIF:SP:59:3677670,1,"Segrais - Gabriel",48.835299,2.638579,0,0,OIF:SA:59:3677670,Europe/Paris,,OIF, +OIF:SP:59:3677671,1,"Segrais - Gabriel",48.835002,2.63874,0,0,OIF:SA:59:3677670,Europe/Paris,,OIF, +OIF:SP:59:3677672,1,"Les Campanules",48.833692,2.634363,0,0,OIF:SA:59:3677672,Europe/Paris,,OIF, +OIF:SP:59:3677673,1,"Les Campanules",48.833369,2.634143,0,0,OIF:SA:59:3677672,Europe/Paris,,OIF, +OIF:SP:59:3677679,1,"Lognes RER",48.839572,2.633525,0,0,OIF:SA:8775836,Europe/Paris,,OIF, +OIF:SP:59:3677680,1,"Cours des Lacs",48.841816,2.630951,0,0,OIF:SA:8798717,Europe/Paris,,OIF, +OIF:SP:59:3677681,1,"Cours des Lacs",48.841745,2.630841,0,0,OIF:SA:8798717,Europe/Paris,,OIF, +OIF:SP:59:3677682,1,"Le Verger",48.843946,2.627381,0,0,OIF:SA:59:3677682,Europe/Paris,,OIF, +OIF:SP:59:3677683,1,"Le Verger",48.844281,2.626376,0,0,OIF:SA:59:3677682,Europe/Paris,,OIF, +OIF:SP:59:3677684,1,"Ferme du Buisson",48.843963,2.620505,0,0,OIF:SA:59:3677684,Europe/Paris,,OIF, +OIF:SP:59:3677685,1,"Ferme du Buisson",48.844263,2.622549,0,0,OIF:SA:59:3677684,Europe/Paris,,OIF, +OIF:SP:59:3677690,1,"Commissariat",48.847029,2.616055,0,0,OIF:SA:59:3677690,Europe/Paris,,OIF, +OIF:SP:59:3677691,1,"Commissariat",48.847191,2.616083,0,0,OIF:SA:59:3677690,Europe/Paris,,OIF, +OIF:SP:59:3677692,1,"Les Quatre Paves",48.851636,2.621487,0,0,OIF:SA:59:3677692,Europe/Paris,,OIF, +OIF:SP:59:3677693,1,"Les Quatre Paves",48.852006,2.62093,0,0,OIF:SA:59:3677692,Europe/Paris,,OIF, +OIF:SP:59:3677694,1,"Chocolaterie",48.856024,2.624412,0,0,OIF:SA:59:3677694,Europe/Paris,,OIF, +OIF:SP:59:3677695,1,"Chocolaterie",48.856168,2.624249,0,0,OIF:SA:59:3677694,Europe/Paris,,OIF, +OIF:SP:59:3677696,1,"Mairie de Noisiel",48.854814,2.626584,0,0,OIF:SA:59:3677696,Europe/Paris,,OIF, +OIF:SP:59:3677697,1,"Mairie de Noisiel",48.854362,2.627753,0,0,OIF:SA:59:3677696,Europe/Paris,,OIF, +OIF:SP:59:3677698,1,"Jules Ferry",48.851111,2.626809,0,0,OIF:SA:59:3677698,Europe/Paris,,OIF, +OIF:SP:59:3677699,1,"Jules Ferry",48.851135,2.627939,0,0,OIF:SA:59:3677698,Europe/Paris,,OIF, +OIF:SP:59:3677712,1,"Le Canal",48.866494,2.642439,0,0,OIF:SA:59:3677712,Europe/Paris,,OIF, +OIF:SP:59:3677714,1,"République",48.870326,2.641085,0,0,OIF:SA:53:2637,Europe/Paris,,OIF, +OIF:SP:59:3677716,1,"Gare de Vaires - Torcy",48.874751,2.639844,0,0,OIF:SA:8711629,Europe/Paris,,OIF, +OIF:SP:59:3677718,1,"Mairie de Brou",48.881382,2.62984,0,0,OIF:SA:53:2275,Europe/Paris,,OIF, +OIF:SP:59:3677719,1,"Mairie de Brou",48.881166,2.62992,0,0,OIF:SA:53:2275,Europe/Paris,,OIF, +OIF:SP:59:3677720,1,"Terre Ciel",48.878426,2.614507,0,0,OIF:SA:59:3677720,Europe/Paris,,OIF, +OIF:SP:59:3677722,1,"Rû de Maubuée",48.840693,2.6487,0,0,OIF:SA:59:3677722,Europe/Paris,,OIF, +OIF:SP:59:3677725,1,"Gare de Vaires - Torcy",48.874625,2.639979,0,0,OIF:SA:8711629,Europe/Paris,,OIF, +OIF:SP:59:3677726,1,"République",48.869293,2.641202,0,0,OIF:SA:53:2637,Europe/Paris,,OIF, +OIF:SP:59:3677727,1,"Le Canal",48.866324,2.642192,0,0,OIF:SA:59:3677712,Europe/Paris,,OIF, +OIF:SP:59:3678786,1,"Parc des Expositions RER",48.974077,2.51437,0,0,OIF:SA:8727148,Europe/Paris,,OIF, +OIF:SP:59:3678787,1,"Parc des Expositions RER",48.974285,2.513729,0,0,OIF:SA:8727148,Europe/Paris,,OIF, +OIF:SP:59:3678803,1,"Cargo Centre",48.99889,2.525627,0,0,OIF:SA:59:3666606,Europe/Paris,,OIF, +OIF:SP:59:3678808,1,"Terminal 2 - Route de Service",49.003416,2.558548,0,0,OIF:SA:59:3678808,Europe/Paris,,OIF, +OIF:SP:59:3678809,1,"Roissypole",49.00993,2.559273,0,0,OIF:SA:8727146,Europe/Paris,,OIF, +OIF:SP:59:3678810,1,"Roissypole",49.009983,2.559614,0,0,OIF:SA:8727146,Europe/Paris,,OIF, +OIF:SP:59:3678816,1,"Entretien Nord",49.011468,2.51555,0,0,OIF:SA:20:480,Europe/Paris,,OIF, +OIF:SP:59:3678818,1,"Entretien Sud",49.006829,2.511081,0,0,OIF:SA:59:3666718,Europe/Paris,,OIF, +OIF:SP:59:3678819,1,"Route de l'Arpenteur-Adp",49.006225,2.506257,0,0,OIF:SA:20:478,Europe/Paris,,OIF, +OIF:SP:59:3678820,1,"Route de l'Arpenteur-Adp",49.006072,2.506147,0,0,OIF:SA:20:478,Europe/Paris,,OIF, +OIF:SP:59:3681408,1,"Gare d'Emerainville-Pontault-Combault RER",48.806669,2.618124,0,0,OIF:SA:8711604,Europe/Paris,,OIF, +OIF:SP:59:3681410,1,"Le Parc",48.809844,2.62123,0,0,OIF:SA:59:3681410,Europe/Paris,,OIF, +OIF:SP:59:3681411,1,"Le Parc",48.809979,2.621,0,0,OIF:SA:59:3681410,Europe/Paris,,OIF, +OIF:SP:59:3681412,1,"Mairie d'Emerainville",48.811504,2.622178,0,0,OIF:SA:59:3681412,Europe/Paris,,OIF, +OIF:SP:59:3681413,1,"Mairie d'Emerainville",48.81155,2.621934,0,0,OIF:SA:59:3681412,Europe/Paris,,OIF, +OIF:SP:59:3681414,1,"Rue d'Emery",48.814274,2.621295,0,0,OIF:SA:59:3681414,Europe/Paris,,OIF, +OIF:SP:59:3681415,1,"Rue d'Emery",48.813807,2.621402,0,0,OIF:SA:59:3681414,Europe/Paris,,OIF, +OIF:SP:59:3681416,1,"Beaubourg",48.817015,2.628878,0,0,OIF:SA:59:3681416,Europe/Paris,,OIF, +OIF:SP:59:3681417,1,"Beaubourg",48.817141,2.628729,0,0,OIF:SA:59:3681416,Europe/Paris,,OIF, +OIF:SP:59:3681418,1,"Les Mines",48.818875,2.632699,0,0,OIF:SA:59:3681418,Europe/Paris,,OIF, +OIF:SP:59:3681419,1,"Les Mines",48.81892,2.632863,0,0,OIF:SA:59:3681418,Europe/Paris,,OIF, +OIF:SP:59:3681420,1,"Ambroise Croizat",48.81681,2.63545,0,0,OIF:SA:59:3681420,Europe/Paris,,OIF, +OIF:SP:59:3681421,1,"Ambroise Croizat",48.817531,2.63476,0,0,OIF:SA:59:3681420,Europe/Paris,,OIF, +OIF:SP:59:3681422,1,"Cours du Buisson",48.81523,2.63834,0,0,OIF:SA:59:3681422,Europe/Paris,,OIF, +OIF:SP:59:3681423,1,"Cours du Buisson",48.815394,2.637565,0,0,OIF:SA:59:3681422,Europe/Paris,,OIF, +OIF:SP:59:3681424,1,"Les Vieilles Vignes",48.817595,2.641565,0,0,OIF:SA:59:3681424,Europe/Paris,,OIF, +OIF:SP:59:3681425,1,"Les Vieilles Vignes",48.817703,2.641457,0,0,OIF:SA:59:3681424,Europe/Paris,,OIF, +OIF:SP:59:3681426,1,"Caravelle",48.82042,2.643978,0,0,OIF:SA:59:3681426,Europe/Paris,,OIF, +OIF:SP:59:3681427,1,"Caravelle",48.820223,2.64365,0,0,OIF:SA:59:3681426,Europe/Paris,,OIF, +OIF:SP:59:3681428,1,"Croissy-Beaubourg - Z.I. Pariest",48.827752,2.637677,0,0,OIF:SA:59:3681428,Europe/Paris,,OIF, +OIF:SP:59:3681429,1,"Croissy-Beaubourg - Z.I. Pariest",48.827779,2.637392,0,0,OIF:SA:59:3681428,Europe/Paris,,OIF, +OIF:SP:59:3681430,1,"Léon Jouhaux",48.826479,2.640011,0,0,OIF:SA:59:3681430,Europe/Paris,,OIF, +OIF:SP:59:3681431,1,"Léon Jouhaux",48.826388,2.640147,0,0,OIF:SA:59:3681430,Europe/Paris,,OIF, +OIF:SP:59:3681432,1,"La Mare à Blondeau",48.825956,2.637054,0,0,OIF:SA:59:3681432,Europe/Paris,,OIF, +OIF:SP:59:3681433,1,"La Mare à Blondeau",48.825785,2.63723,0,0,OIF:SA:59:3681432,Europe/Paris,,OIF, +OIF:SP:59:3681434,1,"Table d'Orientation",48.82273,2.640411,0,0,OIF:SA:59:3681434,Europe/Paris,,OIF, +OIF:SP:59:3681436,1,"Henri Aubry",48.827438,2.644523,0,0,OIF:SA:59:3681436,Europe/Paris,,OIF, +OIF:SP:59:3681437,1,"Henri Aubry",48.827475,2.643924,0,0,OIF:SA:59:3681436,Europe/Paris,,OIF, +OIF:SP:59:3681438,1,"Lions de Beaubourg",48.826676,2.647213,0,0,OIF:SA:59:3681438,Europe/Paris,,OIF, +OIF:SP:59:3681439,1,"Lions de Beaubourg",48.826954,2.647406,0,0,OIF:SA:59:3681438,Europe/Paris,,OIF, +OIF:SP:59:3681440,1,"Les Platanes",48.829816,2.649261,0,0,OIF:SA:59:3681440,Europe/Paris,,OIF, +OIF:SP:59:3681441,1,"Les Platanes",48.829377,2.648822,0,0,OIF:SA:59:3681440,Europe/Paris,,OIF, +OIF:SP:59:3681442,1,"Étang de Croissy",48.830701,2.657802,0,0,OIF:SA:59:3681442,Europe/Paris,,OIF, +OIF:SP:59:3681443,1,"Anne Frank",48.835064,2.659612,0,0,OIF:SA:59:3681443,Europe/Paris,,OIF, +OIF:SP:59:3681444,1,"Anne Frank",48.83449,2.659282,0,0,OIF:SA:59:3681443,Europe/Paris,,OIF, +OIF:SP:59:3681445,1,"Lycée Jean Moulin",48.836366,2.656829,0,0,OIF:SA:59:3677653,Europe/Paris,,OIF, +OIF:SP:59:3681446,1,"Lycée Jean Moulin",48.836159,2.657005,0,0,OIF:SA:59:3677653,Europe/Paris,,OIF, +OIF:SP:59:3681447,1,"Torcy RER",48.83886,2.655143,0,0,OIF:SA:8775837,Europe/Paris,,OIF, +OIF:SP:59:3681448,1,"Torcy RER",48.839068,2.654735,0,0,OIF:SA:8775837,Europe/Paris,,OIF, +OIF:SP:59:3681471,1,"La Mogotte",48.851533,2.637774,0,0,OIF:SA:59:3681471,Europe/Paris,,OIF, +OIF:SP:59:3681472,1,"La Mogotte",48.851344,2.637678,0,0,OIF:SA:59:3681471,Europe/Paris,,OIF, +OIF:SP:59:3681473,1,"La Fosse aux Loups",48.854509,2.637369,0,0,OIF:SA:59:3681473,Europe/Paris,,OIF, +OIF:SP:59:3681474,1,"La Fosse aux Loups",48.854599,2.637179,0,0,OIF:SA:59:3681473,Europe/Paris,,OIF, +OIF:SP:59:3681475,1,"La Maltournée",48.854798,2.640313,0,0,OIF:SA:59:3681475,Europe/Paris,,OIF, +OIF:SP:59:3681476,1,"La Maltournée",48.854915,2.640355,0,0,OIF:SA:59:3681475,Europe/Paris,,OIF, +OIF:SP:59:3681477,1,"Les Cantines",48.858396,2.646191,0,0,OIF:SA:59:3681477,Europe/Paris,,OIF, +OIF:SP:59:3681478,1,"Les Cantines",48.857653,2.645083,0,0,OIF:SA:59:3681477,Europe/Paris,,OIF, +OIF:SP:59:3681485,1,"Étang de Croissy",48.83081,2.657612,0,0,OIF:SA:59:3681442,Europe/Paris,,OIF, +OIF:SP:59:3681508,1,"Église de Gournay",48.863482,2.576122,0,0,OIF:SA:59:3681508,Europe/Paris,,OIF, +OIF:SP:59:3681509,1,"Pont de Gournay",48.866279,2.575563,0,0,OIF:SA:59:3681509,Europe/Paris,,OIF, +OIF:SP:59:3681511,1,"Avenue des Martyrs",48.870681,2.576509,0,0,OIF:SA:59:3681511,Europe/Paris,,OIF, +OIF:SP:59:3681512,1,"Parmentier - Jules Ferry",48.872383,2.578888,0,0,OIF:SA:59:3681512,Europe/Paris,,OIF, +OIF:SP:59:3681513,1,"Chelles - Gournay RER",48.874359,2.584047,0,0,OIF:SA:8711611,Europe/Paris,,OIF, +OIF:SP:59:3681514,1,"Marche - Chelles - Gournay RER",48.874962,2.583451,0,0,OIF:SA:8711611,Europe/Paris,,OIF, +OIF:SP:59:3681515,1,"Chelles - Gournay RER",48.874535,2.581568,0,0,OIF:SA:8711611,Europe/Paris,,OIF, +OIF:SP:59:3681516,1,"Parmentier - Jules Ferry",48.872438,2.578616,0,0,OIF:SA:59:3681512,Europe/Paris,,OIF, +OIF:SP:59:3681517,1,"Avenue des Martyrs",48.870959,2.576552,0,0,OIF:SA:59:3681511,Europe/Paris,,OIF, +OIF:SP:59:3681518,1,"Rue du Port",48.868312,2.574196,0,0,OIF:SA:59:3681518,Europe/Paris,,OIF, +OIF:SP:59:3681519,1,"Pont de Gournay",48.866207,2.575317,0,0,OIF:SA:59:3681509,Europe/Paris,,OIF, +OIF:SP:59:3681522,1,"Place Churchill",48.858653,2.582093,0,0,OIF:SA:59:3681522,Europe/Paris,,OIF, +OIF:SP:59:3681619,1,"Église de Gournay",48.863241,2.575617,0,0,OIF:SA:59:3681508,Europe/Paris,,OIF, +OIF:SP:59:3681625,1,"Flandres - Dunkerque 1940",48.850438,2.58204,0,0,OIF:SA:59:3681625,Europe/Paris,,OIF, +OIF:SP:59:3681626,1,"Général de Gaulle",48.849929,2.585143,0,0,OIF:SA:59:3681626,Europe/Paris,,OIF, +OIF:SP:59:3681631,1,"Noisy-Champs RER - Descartes.",48.843598,2.58258,0,0,OIF:SA:8775834,Europe/Paris,,OIF, +OIF:SP:59:3681643,1,"Noisiel RER",48.843677,2.615887,0,0,OIF:SA:8775835,Europe/Paris,,OIF, +OIF:SP:59:3681650,1,"Place Roosevelt",48.861562,2.579083,0,0,OIF:SA:59:3681650,Europe/Paris,,OIF, +OIF:SP:59:3681653,1,"Claude Bernard",48.854491,2.577919,0,0,OIF:SA:59:3681653,Europe/Paris,,OIF, +OIF:SP:59:3681669,1,"Place Pablo Picasso",48.841182,2.606451,0,0,OIF:SA:59:3681669,Europe/Paris,,OIF, +OIF:SP:59:3681789,1,"Mairie d'Issy - Métro",48.825509,2.272684,0,0,OIF:SA:59522,Europe/Paris,,OIF, +OIF:SP:59:3681790,1,"Bourgain - Général Gallieni",48.822494,2.266984,0,0,OIF:SA:59:3681790,Europe/Paris,,OIF, +OIF:SP:59:3681791,1,"Roger Salengro",48.821963,2.264467,0,0,OIF:SA:59136,Europe/Paris,,OIF, +OIF:SP:59:3681792,1,"Roger Salengro",48.823606,2.262763,0,0,OIF:SA:59136,Europe/Paris,,OIF, +OIF:SP:59:3681793,1,"Issy RER",48.820485,2.258875,0,0,OIF:SA:8739307,Europe/Paris,,OIF, +OIF:SP:59:3681794,1,"Paul Bert",48.819864,2.256739,0,0,OIF:SA:59:3681794,Europe/Paris,,OIF, +OIF:SP:59:3681795,1,"Paul Bert",48.819531,2.256168,0,0,OIF:SA:59:3681794,Europe/Paris,,OIF, +OIF:SP:59:3681796,1,"Chemin des Vignes",48.818828,2.253393,0,0,OIF:SA:59:3681796,Europe/Paris,,OIF, +OIF:SP:59:3681797,1,"Chemin des Vignes",48.819062,2.254644,0,0,OIF:SA:59:3681796,Europe/Paris,,OIF, +OIF:SP:59:3681803,1,"Pont de Billancourt",48.82587,2.248018,0,0,OIF:SA:24:14942,Europe/Paris,,OIF, +OIF:SP:59:3681805,1,"Rue du Point du Jour",48.829024,2.246216,0,0,OIF:SA:59:3442577,Europe/Paris,,OIF, +OIF:SP:59:3681807,1,"Dôme",48.830982,2.245137,0,0,OIF:SA:59:3681807,Europe/Paris,,OIF, +OIF:SP:59:3681809,1,"Marcel Sembat - Métro",48.834216,2.243293,0,0,OIF:SA:59505,Europe/Paris,,OIF, +OIF:SP:59:3681810,1,"Marcel Sembat - Métro",48.833111,2.243636,0,0,OIF:SA:59505,Europe/Paris,,OIF, +OIF:SP:59:3681811,1,"Gallieni",48.837145,2.241613,0,0,OIF:SA:59:3681811,Europe/Paris,,OIF, +OIF:SP:59:3681813,1,"Route de la Reine - Jean Jaurès",48.839948,2.240056,0,0,OIF:SA:59:3681813,Europe/Paris,,OIF, +OIF:SP:59:3681815,1,"Jean Jaurès - Métro",48.842562,2.23858,0,0,OIF:SA:59398,Europe/Paris,,OIF, +OIF:SP:59:3681817,1,"Escudier-Marche",48.844395,2.237637,0,0,OIF:SA:59398,Europe/Paris,,OIF, +OIF:SP:59:3681819,1,"Église de Boulogne-Billancourt",48.846102,2.237076,0,0,OIF:SA:59:3681819,Europe/Paris,,OIF, +OIF:SP:59:3681820,1,"Église de Boulogne-Billancourt",48.845652,2.236954,0,0,OIF:SA:59:3681819,Europe/Paris,,OIF, +OIF:SP:59:3681821,1,"Hôpital Ambroise Pare",48.848915,2.23752,0,0,OIF:SA:59:3681821,Europe/Paris,,OIF, +OIF:SP:59:3681823,1,"Gambetta",48.848469,2.241252,0,0,OIF:SA:17:1337,Europe/Paris,,OIF, +OIF:SP:59:3681824,1,"Gambetta",48.848433,2.241552,0,0,OIF:SA:17:1337,Europe/Paris,,OIF, +OIF:SP:59:3681825,1,"Rue des Pins",48.846451,2.246703,0,0,OIF:SA:59:3681825,Europe/Paris,,OIF, +OIF:SP:59:3681827,1,"Stade Roland Garros",48.845528,2.250259,0,0,OIF:SA:59:3681827,Europe/Paris,,OIF, +OIF:SP:59:3681831,1,"Porte d'Auteuil - Métro",48.847375,2.257568,0,0,OIF:SA:59668,Europe/Paris,,OIF, +OIF:SP:59:3681832,1,"Porte d'Auteuil - Métro",48.847385,2.258086,0,0,OIF:SA:59668,Europe/Paris,,OIF, +OIF:SP:59:3681841,1,"Stade Roland Garros",48.845725,2.250231,0,0,OIF:SA:59:3681827,Europe/Paris,,OIF, +OIF:SP:59:3681842,1,"Rue des Pins",48.84664,2.246675,0,0,OIF:SA:59:3681825,Europe/Paris,,OIF, +OIF:SP:59:3681845,1,"Escudier-Marche",48.843262,2.237939,0,0,OIF:SA:59398,Europe/Paris,,OIF, +OIF:SP:59:3681846,1,"Jean Jaurès - Métro",48.841717,2.238773,0,0,OIF:SA:59398,Europe/Paris,,OIF, +OIF:SP:59:3681849,1,"Gallieni",48.837031,2.245453,0,0,OIF:SA:59:3681811,Europe/Paris,,OIF, +OIF:SP:59:3681851,1,"Dôme",48.830569,2.245083,0,0,OIF:SA:59:3681807,Europe/Paris,,OIF, +OIF:SP:59:3681852,1,"Rue du Point du Jour",48.828556,2.246217,0,0,OIF:SA:59:3442577,Europe/Paris,,OIF, +OIF:SP:59:3681853,1,"Pont de Billancourt",48.825663,2.247855,0,0,OIF:SA:24:14942,Europe/Paris,,OIF, +OIF:SP:59:3681860,1,"Issy-RER",48.820603,2.259773,0,0,OIF:SA:8739307,Europe/Paris,,OIF, +OIF:SP:59:3681862,1,"Ferber-Galliéni",48.824957,2.267008,0,0,OIF:SA:59:3681862,Europe/Paris,,OIF, +OIF:SP:59:3681863,1,"Médiathèque",48.825992,2.26992,0,0,OIF:SA:59:3681863,Europe/Paris,,OIF, +OIF:SP:59:3681975,1,"Jules Guesde",48.813876,2.286511,0,0,OIF:SA:59:3681975,Europe/Paris,,OIF, +OIF:SP:59:3681977,1,"Cimetière Intercommunal",48.787041,2.245786,0,0,OIF:SA:59:3681977,Europe/Paris,,OIF, +OIF:SP:59:3681978,1,"Hôtel de Ville de Malakoff",48.82064,2.301899,0,0,OIF:SA:59:3681978,Europe/Paris,,OIF, +OIF:SP:59:3681985,1,"Cimetière Communal",48.81482,2.286361,0,0,OIF:SA:59:3681985,Europe/Paris,,OIF, +OIF:SP:59:3681987,1,"Gare de Vanves - Malakoff",48.81813,2.292564,0,0,OIF:SA:8739153,Europe/Paris,,OIF, +OIF:SP:59:3681989,1,"Etienne Dolet - Métro",48.814923,2.297479,0,0,OIF:SA:59538,Europe/Paris,,OIF, +OIF:SP:59:3682007,1,"Ambroise Croizat",48.815766,2.293505,0,0,OIF:SA:59:3682007,Europe/Paris,,OIF, +OIF:SP:59:3682010,1,"Pierre Brossolette - Etienne Dolet",48.813405,2.301835,0,0,OIF:SA:59:3682010,Europe/Paris,,OIF, +OIF:SP:59:3682011,1,"Maurice Thorez",48.816452,2.300187,0,0,OIF:SA:59:3682011,Europe/Paris,,OIF, +OIF:SP:59:3682013,1,"Hôtel de Ville de Malakoff",48.820496,2.301477,0,0,OIF:SA:59:3681978,Europe/Paris,,OIF, +OIF:SP:59:3682020,1,"Église de Pantin - Métro",48.893841,2.413506,0,0,OIF:SA:59344,Europe/Paris,,OIF, +OIF:SP:59:3682021,1,"Église de Pantin - Métro",48.893922,2.414078,0,0,OIF:SA:59344,Europe/Paris,,OIF, +OIF:SP:59:3682022,1,"Pierre Brossolette",48.894394,2.420104,0,0,OIF:SA:59:3682022,Europe/Paris,,OIF, +OIF:SP:59:3682025,1,"Avenue de Metz",48.896605,2.43232,0,0,OIF:SA:59:3682025,Europe/Paris,,OIF, +OIF:SP:59:3682026,1,"La Folie",48.898492,2.44297,0,0,OIF:SA:59:3682026,Europe/Paris,,OIF, +OIF:SP:59:3682027,1,"Rue de Paris N0 105",48.899807,2.449788,0,0,OIF:SA:59:3682027,Europe/Paris,,OIF, +OIF:SP:59:3682028,1,"Rue de Paris N0 155",48.900996,2.456062,0,0,OIF:SA:59:3682028,Europe/Paris,,OIF, +OIF:SP:59:3682029,1,"Usine de la Madeleine",48.902239,2.46254,0,0,OIF:SA:59:3682029,Europe/Paris,,OIF, +OIF:SP:59:3682030,1,"Usine de la Madeleine",48.902589,2.462881,0,0,OIF:SA:59:3682029,Europe/Paris,,OIF, +OIF:SP:59:3682043,1,"Chanzy",48.912164,2.521971,0,0,OIF:SA:55:34,Europe/Paris,,OIF, +OIF:SP:59:3682045,1,"Gambetta",48.914627,2.527625,0,0,OIF:SA:59:3682045,Europe/Paris,,OIF, +OIF:SP:59:3682046,1,"Gambetta",48.915344,2.528677,0,0,OIF:SA:59:3682045,Europe/Paris,,OIF, +OIF:SP:59:3682047,1,"Charles de Gaulle",48.916659,2.532309,0,0,OIF:SA:55:169,Europe/Paris,,OIF, +OIF:SP:59:3682048,1,"Charles de Gaulle",48.916866,2.532037,0,0,OIF:SA:55:169,Europe/Paris,,OIF, +OIF:SP:59:3682051,1,"Place de la Libération",48.921908,2.542884,0,0,OIF:SA:59:3682051,Europe/Paris,,OIF, +OIF:SP:59:3682052,1,"Place de la Libération",48.922518,2.543528,0,0,OIF:SA:59:3682051,Europe/Paris,,OIF, +OIF:SP:59:3682053,1,"Jean-Jacques Rousseau",48.925867,2.545164,0,0,OIF:SA:59:3682053,Europe/Paris,,OIF, +OIF:SP:59:3682054,1,"Jean-Jacques Rousseau",48.926677,2.544513,0,0,OIF:SA:59:3682053,Europe/Paris,,OIF, +OIF:SP:59:3682055,1,"Maurouard",48.929631,2.540965,0,0,OIF:SA:59:3682055,Europe/Paris,,OIF, +OIF:SP:59:3682056,1,"Maurouard",48.929298,2.541127,0,0,OIF:SA:59:3682055,Europe/Paris,,OIF, +OIF:SP:59:3682057,1,"Louis Ménard",48.932809,2.537294,0,0,OIF:SA:59:3682057,Europe/Paris,,OIF, +OIF:SP:59:3682058,1,"Louis Ménard",48.932062,2.537987,0,0,OIF:SA:59:3682057,Europe/Paris,,OIF, +OIF:SP:59:3682059,1,"Sevran - Livry RER",48.936031,2.534879,0,0,OIF:SA:8727142,Europe/Paris,,OIF, +OIF:SP:59:3682060,1,"Sevran - Livry",48.934476,2.534914,0,0,OIF:SA:59:3682060,Europe/Paris,,OIF, +OIF:SP:59:3682061,1,"Mère Teresa",48.936549,2.531266,0,0,OIF:SA:59:3682061,Europe/Paris,,OIF, +OIF:SP:59:3682062,1,"Gaston Bussière",48.938206,2.529417,0,0,OIF:SA:59:3682062,Europe/Paris,,OIF, +OIF:SP:59:3682063,1,"Gaston Bussière",48.937324,2.530027,0,0,OIF:SA:59:3682062,Europe/Paris,,OIF, +OIF:SP:59:3682064,1,"Cimetière de Sevran",48.939832,2.523693,0,0,OIF:SA:59:3682064,Europe/Paris,,OIF, +OIF:SP:59:3682065,1,"Cimetière de Sevran",48.93986,2.523066,0,0,OIF:SA:59:3682064,Europe/Paris,,OIF, +OIF:SP:59:3682066,1,"Chemin de Savigny",48.942318,2.520346,0,0,OIF:SA:59:3682066,Europe/Paris,,OIF, +OIF:SP:59:3682067,1,"Chemin de Savigny",48.942066,2.520427,0,0,OIF:SA:59:3682066,Europe/Paris,,OIF, +OIF:SP:59:3682068,1,"Collège Galois",48.943444,2.518808,0,0,OIF:SA:59:3682068,Europe/Paris,,OIF, +OIF:SP:59:3682069,1,"Collège Galois",48.945482,2.519593,0,0,OIF:SA:59:3682068,Europe/Paris,,OIF, +OIF:SP:59:3682070,1,"Sevran - Beaudottes RER",48.946769,2.524264,0,0,OIF:SA:8727144,Europe/Paris,,OIF, +OIF:SP:59:3682071,1,"Sevran - Beaudottes RER",48.94677,2.52365,0,0,OIF:SA:8727144,Europe/Paris,,OIF, +OIF:SP:59:3682072,1,"Butte Montceleux",48.948386,2.530655,0,0,OIF:SA:59:3682072,Europe/Paris,,OIF, +OIF:SP:59:3682073,1,"Butte Montceleux",48.948494,2.53056,0,0,OIF:SA:59:3682072,Europe/Paris,,OIF, +OIF:SP:59:3682074,1,"Luther King",48.948294,2.531596,0,0,OIF:SA:8798655,Europe/Paris,,OIF, +OIF:SP:59:3682075,1,"Luther King",48.948483,2.531733,0,0,OIF:SA:8798655,Europe/Paris,,OIF, +OIF:SP:59:3682077,1,"Sevran - Avenue Ronsard",48.948,2.535852,0,0,OIF:SA:59:3682077,Europe/Paris,,OIF, +OIF:SP:59:3682078,1,"Pierre Curie",48.944173,2.517596,0,0,OIF:SA:59:3682078,Europe/Paris,,OIF, +OIF:SP:59:3682080,1,"Pont de Bondy - Avenue de Rosny",48.903912,2.469469,0,0,OIF:SA:59000,Europe/Paris,,OIF, +OIF:SP:59:3682081,1,"Rue de Paris N0 155",48.901311,2.456212,0,0,OIF:SA:59:3682081,Europe/Paris,,OIF, +OIF:SP:59:3682082,1,"Rue de Paris N0 105",48.900184,2.450198,0,0,OIF:SA:59:3682082,Europe/Paris,,OIF, +OIF:SP:59:3682083,1,"La Folie - Jean Jaurès",48.898914,2.443325,0,0,OIF:SA:59:3682083,Europe/Paris,,OIF, +OIF:SP:59:3682084,1,"La Folie",48.898431,2.441116,0,0,OIF:SA:59:3682084,Europe/Paris,,OIF, +OIF:SP:59:3682174,1,"La Fourche",48.90804,2.496175,0,0,OIF:SA:59:3682174,Europe/Paris,,OIF, +OIF:SP:59:3682176,1,"Église des Pavillons-sous-Bois",48.909216,2.50414,0,0,OIF:SA:55:60,Europe/Paris,,OIF, +OIF:SP:59:3682187,1,"Mairie de Clichy-sous-Bois",48.91184,2.549144,0,0,OIF:SA:59:3682187,Europe/Paris,,OIF, +OIF:SP:59:3682203,1,"Les Genettes",48.909756,2.538269,0,0,OIF:SA:59:3682203,Europe/Paris,,OIF, +OIF:SP:59:3682204,1,"Roger Salengro",48.910646,2.52716,0,0,OIF:SA:59:3682204,Europe/Paris,,OIF, +OIF:SP:59:3682207,1,"Pont de Bondy - Avenue de Rosny",48.903876,2.469305,0,0,OIF:SA:59000,Europe/Paris,,OIF, +OIF:SP:59:3682209,1,"Avenue de Rosny",48.903981,2.471841,0,0,OIF:SA:55:132,Europe/Paris,,OIF, +OIF:SP:59:3682221,1,"Chanzy - Église Saint-Michel",48.912055,2.522829,0,0,OIF:SA:59:3682221,Europe/Paris,,OIF, +OIF:SP:59:3682222,1,"Chanzy - Église Saint-Michel",48.912279,2.523048,0,0,OIF:SA:59:3682221,Europe/Paris,,OIF, +OIF:SP:59:3682226,1,"Les Genettes",48.909693,2.538459,0,0,OIF:SA:59:3682226,Europe/Paris,,OIF, +OIF:SP:59:3682227,1,"Avenue du Coteau - École Normale",48.912656,2.540189,0,0,OIF:SA:59:3682227,Europe/Paris,,OIF, +OIF:SP:59:3682241,1,"Hôtel de Ville de Montfermeil",48.901045,2.569316,0,0,OIF:SA:59:3682241,Europe/Paris,,OIF, +OIF:SP:59:3682243,1,"Jean Mermoz",48.901436,2.571553,0,0,OIF:SA:59:3682243,Europe/Paris,,OIF, +OIF:SP:59:3682244,1,"Collège Picasso",48.899767,2.57494,0,0,OIF:SA:59:3682244,Europe/Paris,,OIF, +OIF:SP:59:3682251,1,"Chanzy",48.912058,2.520798,0,0,OIF:SA:55:34,Europe/Paris,,OIF, +OIF:SP:59:3682253,1,"Hôpital de Montfermeil",48.898977,2.574309,0,0,OIF:SA:59:3682253,Europe/Paris,,OIF, +OIF:SP:59:3682254,1,"Hôtel de Ville de Montfermeil",48.900925,2.571019,0,0,OIF:SA:59:3682241,Europe/Paris,,OIF, +OIF:SP:59:3682257,1,"Les Bosquets",48.904657,2.560075,0,0,OIF:SA:59:3682257,Europe/Paris,,OIF, +OIF:SP:59:3682259,1,"La Pelouse",48.910143,2.553541,0,0,OIF:SA:59:3682259,Europe/Paris,,OIF, +OIF:SP:59:3682260,1,"Les Marronniers",48.912233,2.550768,0,0,OIF:SA:59:3682260,Europe/Paris,,OIF, +OIF:SP:59:3682261,1,"Mairie de Clichy-sous-Bois",48.912065,2.549295,0,0,OIF:SA:59:3682187,Europe/Paris,,OIF, +OIF:SP:59:3682262,1,"Avenue du Coteau - École Normale",48.912817,2.540258,0,0,OIF:SA:59:3682227,Europe/Paris,,OIF, +OIF:SP:59:3682284,1,"La Mare à la Veuve",48.89012,2.481509,0,0,OIF:SA:59:3682284,Europe/Paris,,OIF, +OIF:SP:59:3682285,1,"Place Mendès France",48.889398,2.483933,0,0,OIF:SA:59:3682285,Europe/Paris,,OIF, +OIF:SP:59:3682286,1,"Metz - Etienne Dolet",48.890673,2.477858,0,0,OIF:SA:59:3682286,Europe/Paris,,OIF, +OIF:SP:59:3682288,1,"L'Etoile",48.892749,2.485619,0,0,OIF:SA:8798870,Europe/Paris,,OIF, +OIF:SP:59:3682289,1,"Pierre Curie",48.892125,2.488193,0,0,OIF:SA:8798870,Europe/Paris,,OIF, +OIF:SP:59:3682290,1,"La Sablière",48.891251,2.490494,0,0,OIF:SA:59:3682290,Europe/Paris,,OIF, +OIF:SP:59:3682291,1,"Philosophie",48.890571,2.494785,0,0,OIF:SA:59:3682291,Europe/Paris,,OIF, +OIF:SP:59:3682292,1,"Franklin - Coquetiers",48.892696,2.498267,0,0,OIF:SA:8711384,Europe/Paris,,OIF, +OIF:SP:59:3682293,1,"Franklin - Sablière",48.89468,2.500223,0,0,OIF:SA:59:3682293,Europe/Paris,,OIF, +OIF:SP:59:3682311,1,"La Sablière",48.891547,2.490304,0,0,OIF:SA:59:3682290,Europe/Paris,,OIF, +OIF:SP:59:3682313,1,"Philosophie",48.889645,2.494619,0,0,OIF:SA:59:3682291,Europe/Paris,,OIF, +OIF:SP:59:3682316,1,"Anatole France - Blanqui",48.895408,2.499789,0,0,OIF:SA:59:3682316,Europe/Paris,,OIF, +OIF:SP:59:3682317,1,"Les Coquetiers",48.893757,2.498311,0,0,OIF:SA:59:3682317,Europe/Paris,,OIF, +OIF:SP:59:3682318,1,"Les Coquetiers",48.892751,2.497763,0,0,OIF:SA:59:3682317,Europe/Paris,,OIF, +OIF:SP:59:3682319,1,"Alouettes",48.89402,2.49639,0,0,OIF:SA:59:3682319,Europe/Paris,,OIF, +OIF:SP:59:3682320,1,"Alouettes",48.893794,2.49718,0,0,OIF:SA:59:3682319,Europe/Paris,,OIF, +OIF:SP:59:3682321,1,"Corneille",48.89461,2.492221,0,0,OIF:SA:59:3682321,Europe/Paris,,OIF, +OIF:SP:59:3682322,1,"Corneille",48.89452,2.491962,0,0,OIF:SA:59:3682321,Europe/Paris,,OIF, +OIF:SP:59:3682323,1,"La Remise à Jorelle",48.895072,2.488733,0,0,OIF:SA:8798870,Europe/Paris,,OIF, +OIF:SP:59:3682324,1,"La Remise à Jorelle",48.894974,2.488692,0,0,OIF:SA:8798870,Europe/Paris,,OIF, +OIF:SP:59:3682325,1,"Vaillant - Solidarité",48.895598,2.484946,0,0,OIF:SA:59:3682325,Europe/Paris,,OIF, +OIF:SP:59:3682326,1,"Vaillant - Solidarité",48.8955,2.484864,0,0,OIF:SA:59:3682325,Europe/Paris,,OIF, +OIF:SP:59:3682330,1,"Blanqui - Carnot.",48.900159,2.481755,0,0,OIF:SA:59:3682330,Europe/Paris,,OIF, +OIF:SP:59:3682336,1,"Ambroise Pare",48.910509,2.476467,0,0,OIF:SA:59:3682336,Europe/Paris,,OIF, +OIF:SP:59:3682337,1,"Suzanne Buisson",48.913895,2.47878,0,0,OIF:SA:59:3682337,Europe/Paris,,OIF, +OIF:SP:59:3682338,1,"Jouhaux - Blum",48.9173,2.479621,0,0,OIF:SA:59:3682338,Europe/Paris,,OIF, +OIF:SP:59:3682340,1,"Suzanne Buisson.",48.913558,2.482338,0,0,OIF:SA:59:3682337,Europe/Paris,,OIF, +OIF:SP:59:3682341,1,"Benhamou - Promenade",48.912306,2.484857,0,0,OIF:SA:59:3682341,Europe/Paris,,OIF, +OIF:SP:59:3682343,1,"Bois de Bondy",48.913529,2.491351,0,0,OIF:SA:59:3682343,Europe/Paris,,OIF, +OIF:SP:59:3682345,1,"Léo Lagrange",48.906369,2.488916,0,0,OIF:SA:59:3682345,Europe/Paris,,OIF, +OIF:SP:59:3682346,1,"Le Saule Blanc",48.90348,2.492098,0,0,OIF:SA:59:3682346,Europe/Paris,,OIF, +OIF:SP:59:3682347,1,"Henri Sellier",48.902149,2.493185,0,0,OIF:SA:59:3682347,Europe/Paris,,OIF, +OIF:SP:59:3682348,1,"Professeur Vaillant",48.899446,2.491363,0,0,OIF:SA:59:3682348,Europe/Paris,,OIF, +OIF:SP:59:3682349,1,"Blanqui - Bernstein",48.898298,2.489343,0,0,OIF:SA:59:3682349,Europe/Paris,,OIF, +OIF:SP:59:3682350,1,"Blanqui - Furci",48.899086,2.484097,0,0,OIF:SA:59:3682350,Europe/Paris,,OIF, +OIF:SP:59:3682351,1,"Église de Bondy.",48.903316,2.479651,0,0,OIF:SA:59:3682351,Europe/Paris,,OIF, +OIF:SP:59:3682352,1,"Le Mainguy",48.900246,2.47633,0,0,OIF:SA:59:3682352,Europe/Paris,,OIF, +OIF:SP:59:3682353,1,"Fraternité",48.898889,2.476313,0,0,OIF:SA:59:3682353,Europe/Paris,,OIF, +OIF:SP:59:3682354,1,"Salengro",48.897019,2.477126,0,0,OIF:SA:59:3682354,Europe/Paris,,OIF, +OIF:SP:59:3682356,1,"Dolet-Belfort",48.891635,2.477574,0,0,OIF:SA:59:3682356,Europe/Paris,,OIF, +OIF:SP:59:3682635,1,"Marx Dormoy-Carnot",48.845377,2.52865,0,0,OIF:SA:8775832,Europe/Paris,,OIF, +OIF:SP:59:3682636,1,"Marx Dormoy-Carnot",48.845459,2.528256,0,0,OIF:SA:8775832,Europe/Paris,,OIF, +OIF:SP:59:3682638,1,"Verdun",48.846855,2.532033,0,0,OIF:SA:59:3682638,Europe/Paris,,OIF, +OIF:SP:59:3682670,1,"Commissariat",48.848001,2.615652,0,0,OIF:SA:59:3677690,Europe/Paris,,OIF, +OIF:SP:59:3682671,1,"Commissariat",48.847937,2.615815,0,0,OIF:SA:59:3677690,Europe/Paris,,OIF, +OIF:SP:59:3682676,1,"Les Provinces",48.844961,2.620156,0,0,OIF:SA:59:3682676,Europe/Paris,,OIF, +OIF:SP:59:3682677,1,"Les Provinces",48.844926,2.61987,0,0,OIF:SA:59:3682676,Europe/Paris,,OIF, +OIF:SP:59:3682678,1,"Les Quatre Paves",48.851174,2.623064,0,0,OIF:SA:59:3677692,Europe/Paris,,OIF, +OIF:SP:59:3682679,1,"Les Quatre Paves",48.851373,2.62252,0,0,OIF:SA:59:3677692,Europe/Paris,,OIF, +OIF:SP:59:3682680,1,"Jules Ferry",48.85086,2.626358,0,0,OIF:SA:59:3677698,Europe/Paris,,OIF, +OIF:SP:59:3682681,1,"Jules Ferry",48.851031,2.626223,0,0,OIF:SA:59:3677698,Europe/Paris,,OIF, +OIF:SP:59:3682682,1,"La Remise aux Fraises",48.850491,2.630156,0,0,OIF:SA:59:3682682,Europe/Paris,,OIF, +OIF:SP:59:3682683,1,"La Remise aux Fraises",48.850663,2.629939,0,0,OIF:SA:59:3682682,Europe/Paris,,OIF, +OIF:SP:59:3682808,1,"Neuilly-Plaisance RER",48.853768,2.513332,0,0,OIF:SA:8775831,Europe/Paris,,OIF, +OIF:SP:59:3682811,1,"Centre Bus",48.853439,2.517035,0,0,OIF:SA:59:3682811,Europe/Paris,,OIF, +OIF:SP:59:3682812,1,"Centre Bus",48.853673,2.516954,0,0,OIF:SA:59:3682811,Europe/Paris,,OIF, +OIF:SP:59:3682813,1,"Hélène Boucher",48.854296,2.521274,0,0,OIF:SA:59:3682813,Europe/Paris,,OIF, +OIF:SP:59:3682814,1,"Hélène Boucher",48.854637,2.521629,0,0,OIF:SA:59:3682813,Europe/Paris,,OIF, +OIF:SP:59:3682815,1,"Villebois - Mareuil",48.855036,2.524872,0,0,OIF:SA:59:3682815,Europe/Paris,,OIF, +OIF:SP:59:3682816,1,"Villebois - Mareuil",48.855136,2.524137,0,0,OIF:SA:59:3682815,Europe/Paris,,OIF, +OIF:SP:59:3682817,1,"Foch - de Gaulle",48.855518,2.526917,0,0,OIF:SA:59:3682817,Europe/Paris,,OIF, +OIF:SP:59:3682818,1,"Foch - de Gaulle",48.855823,2.527204,0,0,OIF:SA:59:3682817,Europe/Paris,,OIF, +OIF:SP:59:3682819,1,"Place de la Résistance",48.85765,2.531352,0,0,OIF:SA:59:3682819,Europe/Paris,,OIF, +OIF:SP:59:3682820,1,"Place de la Résistance",48.856834,2.530136,0,0,OIF:SA:59:3682819,Europe/Paris,,OIF, +OIF:SP:59:3682826,1,"Léon Blum",48.86612,2.528877,0,0,OIF:SA:59:3682826,Europe/Paris,,OIF, +OIF:SP:59:3682832,1,"Neuilly-Plaisance RER",48.85358,2.513413,0,0,OIF:SA:8775831,Europe/Paris,,OIF, +OIF:SP:59:3682833,1,"Neuilly-Plaisance RER",48.853265,2.513616,0,0,OIF:SA:8775831,Europe/Paris,,OIF, +OIF:SP:59:3682834,1,"Neuilly-Plaisance RER.",48.852966,2.514814,0,0,OIF:SA:8775831,Europe/Paris,,OIF, +OIF:SP:59:3682838,1,"Paul Doumer",48.858404,2.520567,0,0,OIF:SA:59:3682838,Europe/Paris,,OIF, +OIF:SP:59:3682839,1,"Paul Doumer",48.858467,2.520431,0,0,OIF:SA:59:3682838,Europe/Paris,,OIF, +OIF:SP:59:3682840,1,"Les Chanoux - Lycée Cugnot",48.86546,2.520115,0,0,OIF:SA:59:3682840,Europe/Paris,,OIF, +OIF:SP:59:3682841,1,"Les Chanoux - Lycée Cugnot",48.864507,2.520234,0,0,OIF:SA:59:3682840,Europe/Paris,,OIF, +OIF:SP:59:3682842,1,"Rue des Frères Lumière N0 67",48.867829,2.522371,0,0,OIF:SA:59:3682842,Europe/Paris,,OIF, +OIF:SP:59:3682844,1,"Rue des Frères Lumière N0 15",48.870359,2.525377,0,0,OIF:SA:59:3682844,Europe/Paris,,OIF, +OIF:SP:59:3682846,1,"Rue Louis Ampère N0 48",48.869044,2.521504,0,0,OIF:SA:59:3682846,Europe/Paris,,OIF, +OIF:SP:59:3682848,1,"Rue Louis Ampère N0 88",48.867503,2.518337,0,0,OIF:SA:59:3682848,Europe/Paris,,OIF, +OIF:SP:59:3682850,1,"Les Chanoux - Lycée Cugnot.",48.865081,2.521026,0,0,OIF:SA:59:3682840,Europe/Paris,,OIF, +OIF:SP:59:3682851,1,"Les Chanoux - Lycée Cugnot.",48.865694,2.519993,0,0,OIF:SA:59:3682840,Europe/Paris,,OIF, +OIF:SP:59:3682854,1,"Léon Blum",48.866533,2.529437,0,0,OIF:SA:59:3682826,Europe/Paris,,OIF, +OIF:SP:59:3682855,1,"Léon Blum",48.866598,2.528293,0,0,OIF:SA:59:3682826,Europe/Paris,,OIF, +OIF:SP:59:3682856,1,"Île de France",48.867542,2.533228,0,0,OIF:SA:59:3682856,Europe/Paris,,OIF, +OIF:SP:59:3682857,1,"Île de France",48.86782,2.533488,0,0,OIF:SA:59:3682856,Europe/Paris,,OIF, +OIF:SP:59:3682858,1,"Île de France.",48.867435,2.532873,0,0,OIF:SA:59:3682856,Europe/Paris,,OIF, +OIF:SP:59:3682859,1,"Rue des Pommiers",48.869325,2.53679,0,0,OIF:SA:59:3682859,Europe/Paris,,OIF, +OIF:SP:59:3682860,1,"Cité des Bouleaux",48.871047,2.533255,0,0,OIF:SA:59:3682860,Europe/Paris,,OIF, +OIF:SP:59:3682873,1,"Rond-Point du Général Leclerc",48.848877,2.495707,0,0,OIF:SA:59:3682873,Europe/Paris,,OIF, +OIF:SP:59:3682874,1,"Rond-Point du Général Leclerc",48.848707,2.494876,0,0,OIF:SA:59:3682873,Europe/Paris,,OIF, +OIF:SP:59:3682878,1,"Jules Ferry",48.850728,2.502604,0,0,OIF:SA:59:3682878,Europe/Paris,,OIF, +OIF:SP:59:3682880,1,"Jouleau",48.851969,2.508573,0,0,OIF:SA:59:3682880,Europe/Paris,,OIF, +OIF:SP:59:3682893,1,"Pasteur",48.858318,2.534841,0,0,OIF:SA:59:3682893,Europe/Paris,,OIF, +OIF:SP:59:3682894,1,"Pasteur",48.858373,2.534378,0,0,OIF:SA:59:3682893,Europe/Paris,,OIF, +OIF:SP:59:3682895,1,"Blancheville",48.860663,2.540612,0,0,OIF:SA:59:3682895,Europe/Paris,,OIF, +OIF:SP:59:3682896,1,"Blancheville",48.86087,2.540449,0,0,OIF:SA:59:3682895,Europe/Paris,,OIF, +OIF:SP:59:3682897,1,"Ville Evrard",48.862775,2.546096,0,0,OIF:SA:8743320,Europe/Paris,,OIF, +OIF:SP:59:3682898,1,"Ville Evrard",48.86283,2.545415,0,0,OIF:SA:8743320,Europe/Paris,,OIF, +OIF:SP:59:3682899,1,"Maison Blanche",48.863945,2.550337,0,0,OIF:SA:59:3682899,Europe/Paris,,OIF, +OIF:SP:59:3682900,1,"Maison Blanche",48.864009,2.549616,0,0,OIF:SA:59:3682899,Europe/Paris,,OIF, +OIF:SP:59:3682901,1,"L'Avenir",48.864681,2.555421,0,0,OIF:SA:59:3682901,Europe/Paris,,OIF, +OIF:SP:59:3682902,1,"L'Avenir",48.864898,2.554891,0,0,OIF:SA:59:3682901,Europe/Paris,,OIF, +OIF:SP:59:3682903,1,"Pointe de Gournay",48.865474,2.564375,0,0,OIF:SA:59:3682903,Europe/Paris,,OIF, +OIF:SP:59:3682904,1,"Pointe de Gournay",48.865593,2.563081,0,0,OIF:SA:59:3682903,Europe/Paris,,OIF, +OIF:SP:59:3682905,1,"Rue du Port",48.868942,2.574049,0,0,OIF:SA:59:3681518,Europe/Paris,,OIF, +OIF:SP:59:3682906,1,"Rue du Port",48.867849,2.572082,0,0,OIF:SA:59:3681518,Europe/Paris,,OIF, +OIF:SP:59:3682911,1,"Chelles - Gournay RER",48.874451,2.582917,0,0,OIF:SA:8711611,Europe/Paris,,OIF, +OIF:SP:59:3682913,1,"Chilpéric - Adolphe Besson",48.873964,2.588078,0,0,OIF:SA:59:3682913,Europe/Paris,,OIF, +OIF:SP:59:3682914,1,"Chilpéric - Adolphe Besson",48.874063,2.588202,0,0,OIF:SA:59:3682913,Europe/Paris,,OIF, +OIF:SP:59:3682915,1,"Rue Duchesne",48.87591,2.590173,0,0,OIF:SA:53:2177,Europe/Paris,,OIF, +OIF:SP:59:3682916,1,"Rue Duchesne",48.875955,2.589996,0,0,OIF:SA:53:2177,Europe/Paris,,OIF, +OIF:SP:59:3682917,1,"Mairie de Chelles",48.878183,2.59062,0,0,OIF:SA:53:2277,Europe/Paris,,OIF, +OIF:SP:59:3682922,1,"Nogent-sur-Marne RER",48.835012,2.47158,0,0,OIF:SA:8775813,Europe/Paris,,OIF, +OIF:SP:59:3682925,1,"Général Faidherbe",48.837217,2.476583,0,0,OIF:SA:59:3682925,Europe/Paris,,OIF, +OIF:SP:59:3682927,1,"Paul Bert",48.839936,2.480593,0,0,OIF:SA:59:3682927,Europe/Paris,,OIF, +OIF:SP:59:3682929,1,"Anquetil",48.842959,2.485081,0,0,OIF:SA:59:3682929,Europe/Paris,,OIF, +OIF:SP:59:3682931,1,"Rue de Plaisance - Lycée Louis Armand",48.846116,2.490483,0,0,OIF:SA:59:3682931,Europe/Paris,,OIF, +OIF:SP:59:3682977,1,"Carrefour des Deportes",48.879627,2.596227,0,0,OIF:SA:53:2171,Europe/Paris,,OIF, +OIF:SP:59:3682978,1,"Carrefour des Deportes",48.879779,2.596555,0,0,OIF:SA:53:2171,Europe/Paris,,OIF, +OIF:SP:59:3682979,1,"François Trinquand",48.876928,2.597426,0,0,OIF:SA:53:2503,Europe/Paris,,OIF, +OIF:SP:59:3682980,1,"Dispensaire",48.876752,2.59996,0,0,OIF:SA:53:2175,Europe/Paris,,OIF, +OIF:SP:59:3682981,1,"Dispensaire",48.877978,2.601955,0,0,OIF:SA:53:2175,Europe/Paris,,OIF, +OIF:SP:59:3682982,1,"Rue du Chelléen",48.87746,2.608657,0,0,OIF:SA:59:3682982,Europe/Paris,,OIF, +OIF:SP:59:3682983,1,"Rue du Chelléen",48.878297,2.608062,0,0,OIF:SA:59:3682982,Europe/Paris,,OIF, +OIF:SP:59:3682988,1,"Nogent-sur-Marne RER",48.835452,2.471554,0,0,OIF:SA:8775813,Europe/Paris,,OIF, +OIF:SP:59:3682989,1,"Place du Général Leclerc",48.835916,2.475,0,0,OIF:SA:59:3682989,Europe/Paris,,OIF, +OIF:SP:59:3682990,1,"Général Faidherbe",48.837001,2.476705,0,0,OIF:SA:59:3682925,Europe/Paris,,OIF, +OIF:SP:59:3682991,1,"Paul Bert",48.840465,2.481793,0,0,OIF:SA:59:3682927,Europe/Paris,,OIF, +OIF:SP:59:3682992,1,"Anquetil",48.843021,2.485667,0,0,OIF:SA:59:3682929,Europe/Paris,,OIF, +OIF:SP:59:3682993,1,"Rue de Plaisance - Lycée Louis Armand",48.846026,2.490741,0,0,OIF:SA:59:3682931,Europe/Paris,,OIF, +OIF:SP:59:3683003,1,"Place de la Résistance",48.857146,2.531704,0,0,OIF:SA:59:3682819,Europe/Paris,,OIF, +OIF:SP:59:3683010,1,"Neuilly-Plaisance RER",48.853849,2.513291,0,0,OIF:SA:8775831,Europe/Paris,,OIF, +OIF:SP:59:3683015,1,"François Mauriac",48.855637,2.520203,0,0,OIF:SA:59:3683015,Europe/Paris,,OIF, +OIF:SP:59:3683018,1,"Les Chanoux - Lycée Cugnot",48.865018,2.520822,0,0,OIF:SA:59:3682840,Europe/Paris,,OIF, +OIF:SP:59:3683020,1,"11 Novembre",48.866188,2.525553,0,0,OIF:SA:59:3683020,Europe/Paris,,OIF, +OIF:SP:59:3683021,1,"11 Novembre",48.865967,2.523332,0,0,OIF:SA:59:3683020,Europe/Paris,,OIF, +OIF:SP:59:3683027,1,"Rue des Pommiers",48.86919,2.536708,0,0,OIF:SA:59:3682859,Europe/Paris,,OIF, +OIF:SP:59:3683028,1,"Cité des Bouleaux",48.871727,2.535178,0,0,OIF:SA:59:3682860,Europe/Paris,,OIF, +OIF:SP:59:3683029,1,"Cité des Bouleaux",48.871781,2.534974,0,0,OIF:SA:59:3682860,Europe/Paris,,OIF, +OIF:SP:59:3683030,1,"Fénelon",48.873696,2.539845,0,0,OIF:SA:59:3683030,Europe/Paris,,OIF, +OIF:SP:59:3683031,1,"Fénelon",48.873509,2.539191,0,0,OIF:SA:59:3683030,Europe/Paris,,OIF, +OIF:SP:59:3683032,1,"Place des Fetes",48.875514,2.54364,0,0,OIF:SA:59:3683032,Europe/Paris,,OIF, +OIF:SP:59:3683033,1,"Place des Fetes",48.875246,2.542795,0,0,OIF:SA:59:3683032,Europe/Paris,,OIF, +OIF:SP:59:3683034,1,"Le Lac",48.872543,2.546858,0,0,OIF:SA:59:3683034,Europe/Paris,,OIF, +OIF:SP:59:3683035,1,"Le Lac",48.872589,2.546408,0,0,OIF:SA:59:3683034,Europe/Paris,,OIF, +OIF:SP:59:3683036,1,"Hippolyte Pina",48.873131,2.549653,0,0,OIF:SA:59:3683036,Europe/Paris,,OIF, +OIF:SP:59:3683037,1,"Hippolyte Pina",48.873284,2.549504,0,0,OIF:SA:59:3683036,Europe/Paris,,OIF, +OIF:SP:59:3683040,1,"La Mare",48.87606,2.55036,0,0,OIF:SA:8711352,Europe/Paris,,OIF, +OIF:SP:59:3683041,1,"La Mare",48.876412,2.549421,0,0,OIF:SA:8711352,Europe/Paris,,OIF, +OIF:SP:59:3683042,1,"Le Chenay-Gagny RER",48.87584,2.552484,0,0,OIF:SA:8711352,Europe/Paris,,OIF, +OIF:SP:59:3683043,1,"Le Chenay-Gagny RER",48.87664,2.552706,0,0,OIF:SA:8711352,Europe/Paris,,OIF, +OIF:SP:59:3683044,1,"Rue de la Bergerie",48.875859,2.556831,0,0,OIF:SA:59:3683044,Europe/Paris,,OIF, +OIF:SP:59:3683045,1,"Les Marronniers",48.872384,2.560018,0,0,OIF:SA:59:3683045,Europe/Paris,,OIF, +OIF:SP:59:3683046,1,"Les Marronniers",48.872663,2.559897,0,0,OIF:SA:59:3683045,Europe/Paris,,OIF, +OIF:SP:59:3683047,1,"Boulevard des Pecheurs",48.871037,2.564317,0,0,OIF:SA:59:3683047,Europe/Paris,,OIF, +OIF:SP:59:3683048,1,"Boulevard des Pecheurs",48.872775,2.562527,0,0,OIF:SA:59:3683047,Europe/Paris,,OIF, +OIF:SP:59:3683049,1,"Roger Salengro",48.872003,2.566924,0,0,OIF:SA:59:3683049,Europe/Paris,,OIF, +OIF:SP:59:3683051,1,"Rue de l'Horloge",48.874859,2.558407,0,0,OIF:SA:59:3683051,Europe/Paris,,OIF, +OIF:SP:59:3683052,1,"Pont Saint-Pierre",48.876345,2.556629,0,0,OIF:SA:44:25,Europe/Paris,,OIF, +OIF:SP:59:3683053,1,"François Mauriac",48.855691,2.520026,0,0,OIF:SA:59:3683053,Europe/Paris,,OIF, +OIF:SP:59:3685679,1,"Château de Vincennes",48.844067,2.440544,0,0,OIF:SA:59595,Europe/Paris,,OIF, +OIF:SP:59:3685680,1,"Château de Vincennes",48.844219,2.440816,0,0,OIF:SA:59595,Europe/Paris,,OIF, +OIF:SP:59:3685691,1,"Les Rigollots",48.850028,2.456734,0,0,OIF:SA:59:3685691,Europe/Paris,,OIF, +OIF:SP:59:3685692,1,"André Laurent",48.852482,2.456876,0,0,OIF:SA:59:3685692,Europe/Paris,,OIF, +OIF:SP:59:3685693,1,"André Laurent",48.853163,2.458444,0,0,OIF:SA:59:3685692,Europe/Paris,,OIF, +OIF:SP:59:3685694,1,"Danton",48.852351,2.461588,0,0,OIF:SA:59:3685694,Europe/Paris,,OIF, +OIF:SP:59:3685695,1,"Danton",48.852564,2.46389,0,0,OIF:SA:59:3685694,Europe/Paris,,OIF, +OIF:SP:59:3685696,1,"André Tessier",48.85265,2.46769,0,0,OIF:SA:59:3685696,Europe/Paris,,OIF, +OIF:SP:59:3685697,1,"André Tessier",48.852874,2.46795,0,0,OIF:SA:59:3685696,Europe/Paris,,OIF, +OIF:SP:59:3685698,1,"Verdun",48.853761,2.470744,0,0,OIF:SA:59:3685698,Europe/Paris,,OIF, +OIF:SP:59:3685699,1,"Verdun",48.853914,2.470649,0,0,OIF:SA:59:3685698,Europe/Paris,,OIF, +OIF:SP:59:3685700,1,"Danielle Casanova",48.853243,2.47585,0,0,OIF:SA:59:3685700,Europe/Paris,,OIF, +OIF:SP:59:3685701,1,"Danielle Casanova",48.853269,2.476326,0,0,OIF:SA:59:3685700,Europe/Paris,,OIF, +OIF:SP:59:3685702,1,"Charles Garcia",48.852419,2.481077,0,0,OIF:SA:59:3685702,Europe/Paris,,OIF, +OIF:SP:59:3685703,1,"Charles Garcia",48.852644,2.480819,0,0,OIF:SA:59:3685702,Europe/Paris,,OIF, +OIF:SP:59:3685704,1,"Général de Gaulle",48.85236,2.484809,0,0,OIF:SA:8711371,Europe/Paris,,OIF, +OIF:SP:59:3685707,1,"Val de Fontenay RER",48.853417,2.487849,0,0,OIF:SA:8711371,Europe/Paris,,OIF, +OIF:SP:59:3685715,1,"Jules Guesde",48.862331,2.482086,0,0,OIF:SA:59:3685715,Europe/Paris,,OIF, +OIF:SP:59:3685720,1,"Rosny-sous-Bois RER",48.870299,2.485091,0,0,OIF:SA:8711370,Europe/Paris,,OIF, +OIF:SP:59:3685721,1,"Rosny-sous-Bois RER",48.870578,2.484752,0,0,OIF:SA:8711370,Europe/Paris,,OIF, +OIF:SP:59:3685725,1,"Van Derheyden",48.87722,2.484321,0,0,OIF:SA:59:3685725,Europe/Paris,,OIF, +OIF:SP:59:3685729,1,"Jules Guesde",48.862843,2.482169,0,0,OIF:SA:59:3685729,Europe/Paris,,OIF, +OIF:SP:59:3685770,1,"Diderot",48.865465,2.483715,0,0,OIF:SA:59:3685770,Europe/Paris,,OIF, +OIF:SP:59:3685771,1,"Diderot",48.864963,2.483278,0,0,OIF:SA:59:3685770,Europe/Paris,,OIF, +OIF:SP:59:3685772,1,"Médéric",48.86772,2.484961,0,0,OIF:SA:8711370,Europe/Paris,,OIF, +OIF:SP:59:3685773,1,"Médéric",48.866858,2.484319,0,0,OIF:SA:8711370,Europe/Paris,,OIF, +OIF:SP:59:3685781,1,"Nanteuil ZI - Jules Ferry",48.876259,2.476252,0,0,OIF:SA:59:3685781,Europe/Paris,,OIF, +OIF:SP:59:3685786,1,"Les Rigollots",48.849391,2.45578,0,0,OIF:SA:59:3685786,Europe/Paris,,OIF, +OIF:SP:59:3685787,1,"Clément Vienot",48.848272,2.451487,0,0,OIF:SA:59:3685787,Europe/Paris,,OIF, +OIF:SP:59:3685790,1,"Avenue du Château",48.844797,2.437509,0,0,OIF:SA:59:3685790,Europe/Paris,,OIF, +OIF:SP:59:3685791,1,"Avenue du Château",48.844627,2.437113,0,0,OIF:SA:59:3685790,Europe/Paris,,OIF, +OIF:SP:59:3685792,1,"Vincennes RER",48.848015,2.437161,0,0,OIF:SA:8775811,Europe/Paris,,OIF, +OIF:SP:59:3685793,1,"Vincennes RER",48.846838,2.43675,0,0,OIF:SA:8775811,Europe/Paris,,OIF, +OIF:SP:59:3685794,1,"Mairie de Vincennes",48.847824,2.440551,0,0,OIF:SA:59:3685794,Europe/Paris,,OIF, +OIF:SP:59:3685795,1,"Mairie de Vincennes",48.848103,2.439231,0,0,OIF:SA:59:3685794,Europe/Paris,,OIF, +OIF:SP:59:3685796,1,"Libération",48.847648,2.446284,0,0,OIF:SA:59:3685796,Europe/Paris,,OIF, +OIF:SP:59:3685797,1,"Libération",48.847998,2.446353,0,0,OIF:SA:59:3685796,Europe/Paris,,OIF, +OIF:SP:59:3685798,1,"Clément Vienot",48.847031,2.45192,0,0,OIF:SA:59:3685787,Europe/Paris,,OIF, +OIF:SP:59:3685799,1,"Pasteur",48.848511,2.45462,0,0,OIF:SA:59:3685799,Europe/Paris,,OIF, +OIF:SP:59:3685834,1,"Van Derheyden",48.877193,2.484634,0,0,OIF:SA:59:3685725,Europe/Paris,,OIF, +OIF:SP:59:3685859,1,"Château de Vincennes",48.843985,2.441333,0,0,OIF:SA:59595,Europe/Paris,,OIF, +OIF:SP:59:3685867,1,"Diderot-Silvestri",48.850167,2.442953,0,0,OIF:SA:59:3685867,Europe/Paris,,OIF, +OIF:SP:59:3685868,1,"Diderot-Silvestri",48.85094,2.442832,0,0,OIF:SA:59:3685867,Europe/Paris,,OIF, +OIF:SP:59:3685869,1,"Desgranges-Solidarite",48.852189,2.443257,0,0,OIF:SA:59:3685869,Europe/Paris,,OIF, +OIF:SP:59:3685870,1,"Desgranges-Solidarite",48.852719,2.443271,0,0,OIF:SA:59:3685869,Europe/Paris,,OIF, +OIF:SP:59:3685871,1,"Les Parapluies",48.852678,2.448664,0,0,OIF:SA:59:3685871,Europe/Paris,,OIF, +OIF:SP:59:3685872,1,"Les Parapluies",48.852795,2.448597,0,0,OIF:SA:59:3685871,Europe/Paris,,OIF, +OIF:SP:59:3685873,1,"Hector Malot",48.851777,2.451005,0,0,OIF:SA:59:3685873,Europe/Paris,,OIF, +OIF:SP:59:3685874,1,"Hector Malot",48.851885,2.451237,0,0,OIF:SA:59:3685873,Europe/Paris,,OIF, +OIF:SP:59:3685875,1,"Les Rigollots",48.849354,2.457278,0,0,OIF:SA:59:3685691,Europe/Paris,,OIF, +OIF:SP:59:3685876,1,"Les Rigollots",48.849993,2.455713,0,0,OIF:SA:59:3685691,Europe/Paris,,OIF, +OIF:SP:59:3685877,1,"Pierre Dulac",48.848847,2.460654,0,0,OIF:SA:59:3685877,Europe/Paris,,OIF, +OIF:SP:59:3685878,1,"Pierre Dulac",48.848972,2.461594,0,0,OIF:SA:59:3685877,Europe/Paris,,OIF, +OIF:SP:59:3685879,1,"Émile Roux",48.847377,2.464967,0,0,OIF:SA:59:3685879,Europe/Paris,,OIF, +OIF:SP:59:3685880,1,"Fontenay-sous-Bois RER",48.843836,2.464877,0,0,OIF:SA:8775812,Europe/Paris,,OIF, +OIF:SP:59:3685881,1,"Fontenay-sous-Bois RER",48.843989,2.464714,0,0,OIF:SA:8775812,Europe/Paris,,OIF, +OIF:SP:59:3685882,1,"Rue de Joinville",48.842589,2.471546,0,0,OIF:SA:59:3685882,Europe/Paris,,OIF, +OIF:SP:59:3685883,1,"Ancienne Mairie de Fontenay-sous-Bois",48.845742,2.472902,0,0,OIF:SA:59:3685883,Europe/Paris,,OIF, +OIF:SP:59:3685884,1,"Ancienne Mairie de Fontenay-sous-Bois",48.846445,2.470643,0,0,OIF:SA:59:3685883,Europe/Paris,,OIF, +OIF:SP:59:3685885,1,"Le Parc",48.847348,2.474785,0,0,OIF:SA:59:3685885,Europe/Paris,,OIF, +OIF:SP:59:3685886,1,"Le Parc",48.849444,2.473238,0,0,OIF:SA:59:3685885,Europe/Paris,,OIF, +OIF:SP:59:3685887,1,"Hôtel de Ville de Fontenay",48.84809,2.478423,0,0,OIF:SA:59:3685887,Europe/Paris,,OIF, +OIF:SP:59:3685888,1,"Montesquieu",48.848769,2.482061,0,0,OIF:SA:59:3685888,Europe/Paris,,OIF, +OIF:SP:59:3685889,1,"Montesquieu",48.848976,2.481762,0,0,OIF:SA:59:3685888,Europe/Paris,,OIF, +OIF:SP:59:3685890,1,"Hoche",48.847308,2.486129,0,0,OIF:SA:59:3685890,Europe/Paris,,OIF, +OIF:SP:59:3685891,1,"Hoche",48.847461,2.485707,0,0,OIF:SA:59:3685890,Europe/Paris,,OIF, +OIF:SP:59:3685892,1,"Le Bois Cadet",48.848519,2.487875,0,0,OIF:SA:59:3685892,Europe/Paris,,OIF, +OIF:SP:59:3685893,1,"Le Bois Cadet",48.849203,2.486802,0,0,OIF:SA:59:3685892,Europe/Paris,,OIF, +OIF:SP:59:3685894,1,"Place du Général de Gaulle",48.851855,2.486809,0,0,OIF:SA:59:3685894,Europe/Paris,,OIF, +OIF:SP:59:3685895,1,"Place du Général de Gaulle",48.851792,2.486673,0,0,OIF:SA:59:3685894,Europe/Paris,,OIF, +OIF:SP:59:3685896,1,"Val de Fontenay-RER",48.853211,2.487045,0,0,OIF:SA:8711371,Europe/Paris,,OIF, +OIF:SP:59:3685897,1,"Val de Fontenay-RER",48.853336,2.487603,0,0,OIF:SA:8711371,Europe/Paris,,OIF, +OIF:SP:59:3685898,1,"Hôtel de Ville de Fontenay-sous-Bois",48.849781,2.476998,0,0,OIF:SA:59:3685898,Europe/Paris,,OIF, +OIF:SP:59:3685899,1,"Mauconseil",48.847041,2.468575,0,0,OIF:SA:59:3685899,Europe/Paris,,OIF, +OIF:SP:59:3685900,1,"Roublot",48.848383,2.465787,0,0,OIF:SA:59:3685900,Europe/Paris,,OIF, +OIF:SP:59:3685919,1,"Croix de Chavaux - Métro",48.85774,2.436539,0,0,OIF:SA:59506,Europe/Paris,,OIF, +OIF:SP:59:3685920,1,"Croix de Chavaux - Métro",48.857651,2.436131,0,0,OIF:SA:59506,Europe/Paris,,OIF, +OIF:SP:59:3685921,1,"Wilson - Gabriel Péri",48.857261,2.44042,0,0,OIF:SA:59:3685921,Europe/Paris,,OIF, +OIF:SP:59:3685923,1,"Jeanne d'Arc",48.856259,2.445131,0,0,OIF:SA:59:3685923,Europe/Paris,,OIF, +OIF:SP:59:3685924,1,"Jeanne d'Arc",48.856556,2.44475,0,0,OIF:SA:59:3685923,Europe/Paris,,OIF, +OIF:SP:59:3685925,1,"Les Parapluies",48.853398,2.448176,0,0,OIF:SA:59:3685925,Europe/Paris,,OIF, +OIF:SP:59:3685926,1,"Les Beaumonts",48.853645,2.452793,0,0,OIF:SA:59:3685926,Europe/Paris,,OIF, +OIF:SP:59:3685927,1,"Les Beaumonts",48.85395,2.453311,0,0,OIF:SA:59:3685926,Europe/Paris,,OIF, +OIF:SP:59:3685928,1,"Danton",48.855922,2.458382,0,0,OIF:SA:59:3685694,Europe/Paris,,OIF, +OIF:SP:59:3685929,1,"Danton",48.855259,2.456433,0,0,OIF:SA:59:3685694,Europe/Paris,,OIF, +OIF:SP:59:3685930,1,"Védrines",48.856072,2.461638,0,0,OIF:SA:59:3685930,Europe/Paris,,OIF, +OIF:SP:59:3685931,1,"Ernest Renan",48.856525,2.466801,0,0,OIF:SA:59:3685931,Europe/Paris,,OIF, +OIF:SP:59:3685932,1,"Ernest Renan",48.856866,2.467197,0,0,OIF:SA:59:3685931,Europe/Paris,,OIF, +OIF:SP:59:3685933,1,"Grands Pêchers",48.859428,2.466836,0,0,OIF:SA:59:3685933,Europe/Paris,,OIF, +OIF:SP:59:3685934,1,"Grands Pêchers",48.859662,2.466537,0,0,OIF:SA:59:3685933,Europe/Paris,,OIF, +OIF:SP:59:3685935,1,"Vallée de la Seine",48.861257,2.470559,0,0,OIF:SA:59:3685935,Europe/Paris,,OIF, +OIF:SP:59:3685936,1,"La Paix",48.861082,2.474481,0,0,OIF:SA:59:3685936,Europe/Paris,,OIF, +OIF:SP:59:3685937,1,"La Paix",48.860265,2.473757,0,0,OIF:SA:59:3685936,Europe/Paris,,OIF, +OIF:SP:59:3685938,1,"Juliette Dodu",48.861716,2.477561,0,0,OIF:SA:59:3685938,Europe/Paris,,OIF, +OIF:SP:59:3685939,1,"Juliette Dodu",48.860522,2.476727,0,0,OIF:SA:59:3685938,Europe/Paris,,OIF, +OIF:SP:59:3685940,1,"Cimetière de Vincennes",48.861478,2.481021,0,0,OIF:SA:59:3685940,Europe/Paris,,OIF, +OIF:SP:59:3685941,1,"Cimetière de Vincennes",48.860571,2.481045,0,0,OIF:SA:59:3685940,Europe/Paris,,OIF, +OIF:SP:59:3685943,1,"Les 10 000 Rosiers",48.86212,2.492247,0,0,OIF:SA:59:3685943,Europe/Paris,,OIF, +OIF:SP:59:3685944,1,"Eugène Sue",48.862174,2.498949,0,0,OIF:SA:59:3685944,Europe/Paris,,OIF, +OIF:SP:59:3685945,1,"Boureau - Guérinière",48.861353,2.501493,0,0,OIF:SA:59:3685945,Europe/Paris,,OIF, +OIF:SP:59:3685946,1,"Boureau - Guérinière",48.861551,2.501371,0,0,OIF:SA:59:3685945,Europe/Paris,,OIF, +OIF:SP:59:3685947,1,"Georges Clemenceau",48.860253,2.504023,0,0,OIF:SA:59:3685947,Europe/Paris,,OIF, +OIF:SP:59:3685949,1,"Square Jean Mermoz",48.860776,2.509365,0,0,OIF:SA:59:3685949,Europe/Paris,,OIF, +OIF:SP:59:3685951,1,"Allée Marie",48.85976,2.515709,0,0,OIF:SA:59:3685951,Europe/Paris,,OIF, +OIF:SP:59:3685952,1,"Allée Marie",48.859895,2.5156,0,0,OIF:SA:59:3685951,Europe/Paris,,OIF, +OIF:SP:59:3685953,1,"Aristide Briand - Louis Armand",48.859052,2.519738,0,0,OIF:SA:59:3685953,Europe/Paris,,OIF, +OIF:SP:59:3685954,1,"Aristide Briand - Louis Armand",48.859214,2.519602,0,0,OIF:SA:59:3685953,Europe/Paris,,OIF, +OIF:SP:59:3685955,1,"Villebois - Mareuil",48.858003,2.524284,0,0,OIF:SA:59:3682815,Europe/Paris,,OIF, +OIF:SP:59:3685956,1,"Villebois - Mareuil",48.858065,2.524543,0,0,OIF:SA:59:3682815,Europe/Paris,,OIF, +OIF:SP:59:3685959,1,"Place de la Résistance",48.857218,2.531908,0,0,OIF:SA:59:3682819,Europe/Paris,,OIF, +OIF:SP:59:3685961,1,"Place de la Résistance.",48.857388,2.532358,0,0,OIF:SA:59:3685961,Europe/Paris,,OIF, +OIF:SP:59:3685966,1,"Île de France",48.867471,2.533037,0,0,OIF:SA:59:3682856,Europe/Paris,,OIF, +OIF:SP:59:3685967,1,"Roussillon.",48.866831,2.534138,0,0,OIF:SA:59:3685967,Europe/Paris,,OIF, +OIF:SP:59:3685968,1,"Place des Victoires.",48.863152,2.535827,0,0,OIF:SA:59:3685968,Europe/Paris,,OIF, +OIF:SP:59:3685969,1,"Simone Bigot.",48.86094,2.536581,0,0,OIF:SA:59:3685969,Europe/Paris,,OIF, +OIF:SP:59:3685970,1,"Pasteur.",48.85831,2.534214,0,0,OIF:SA:59:3685970,Europe/Paris,,OIF, +OIF:SP:59:3685971,1,"Carnot",48.862978,2.503011,0,0,OIF:SA:59:3685971,Europe/Paris,,OIF, +OIF:SP:59:3685972,1,"Eugène Sue",48.862481,2.498228,0,0,OIF:SA:59:3685972,Europe/Paris,,OIF, +OIF:SP:59:3685973,1,"Jean Jaurès",48.860983,2.489219,0,0,OIF:SA:59:3685973,Europe/Paris,,OIF, +OIF:SP:59:3685974,1,"Védrines",48.856162,2.461012,0,0,OIF:SA:59:3685974,Europe/Paris,,OIF, +OIF:SP:59:3686058,1,"Tremblay - Pépinière",48.842468,2.449636,0,0,OIF:SA:59:3686058,Europe/Paris,,OIF, +OIF:SP:59:3686059,1,"Charmes - Pépinière",48.845818,2.451373,0,0,OIF:SA:59:3686059,Europe/Paris,,OIF, +OIF:SP:59:3686061,1,"Rue des Pommiers",48.846335,2.456467,0,0,OIF:SA:59:3686061,Europe/Paris,,OIF, +OIF:SP:59:3686063,1,"Porte Jaune",48.838781,2.460643,0,0,OIF:SA:59:3686063,Europe/Paris,,OIF, +OIF:SP:59:3686069,1,"Viaduc",48.835507,2.492753,0,0,OIF:SA:59:3686069,Europe/Paris,,OIF, +OIF:SP:59:3686073,1,"Mairie du Perreux-sur-Marne",48.840459,2.506724,0,0,OIF:SA:59:3686073,Europe/Paris,,OIF, +OIF:SP:59:3686074,1,"Montaigne",48.838523,2.509114,0,0,OIF:SA:59:3686074,Europe/Paris,,OIF, +OIF:SP:59:3686075,1,"Place Beaufranchet",48.835932,2.510644,0,0,OIF:SA:59:3686075,Europe/Paris,,OIF, +OIF:SP:59:3686076,1,"Guy Moquet",48.834306,2.510311,0,0,OIF:SA:59:3686076,Europe/Paris,,OIF, +OIF:SP:59:3686077,1,"Foch",48.832426,2.51104,0,0,OIF:SA:59:3686077,Europe/Paris,,OIF, +OIF:SP:59:3686078,1,"Résidence des Îles",48.832747,2.513192,0,0,OIF:SA:59:3686078,Europe/Paris,,OIF, +OIF:SP:59:3686079,1,"Maréchal Joffre - Pont de Bry",48.833713,2.516232,0,0,OIF:SA:59:3686079,Europe/Paris,,OIF, +OIF:SP:59:3686299,1,"École Vétérinaire de Maisons-Alfort",48.814799,2.422725,0,0,OIF:SA:59565,Europe/Paris,,OIF, +OIF:SP:59:3686303,1,"Général de Gaulle",48.814167,2.413851,0,0,OIF:SA:59:3686303,Europe/Paris,,OIF, +OIF:SP:59:3686304,1,"Général de Gaulle",48.814301,2.415498,0,0,OIF:SA:59:3686303,Europe/Paris,,OIF, +OIF:SP:59:3686305,1,"Rue de Seine",48.809772,2.414239,0,0,OIF:SA:59:3686305,Europe/Paris,,OIF, +OIF:SP:59:3686306,1,"Rue de Seine",48.810507,2.416962,0,0,OIF:SA:59:3686305,Europe/Paris,,OIF, +OIF:SP:59:3686307,1,"Union",48.807336,2.414739,0,0,OIF:SA:59:3686307,Europe/Paris,,OIF, +OIF:SP:59:3686308,1,"Union",48.807405,2.418168,0,0,OIF:SA:59:3686307,Europe/Paris,,OIF, +OIF:SP:59:3686309,1,"Salvador Allende",48.805322,2.415117,0,0,OIF:SA:59:3686309,Europe/Paris,,OIF, +OIF:SP:59:3686311,1,"Mairie d'Alfortville",48.804915,2.419471,0,0,OIF:SA:59:3619792,Europe/Paris,,OIF, +OIF:SP:59:3686314,1,"Maisons-Alfort - Alfortville RER",48.802538,2.425494,0,0,OIF:SA:8768115,Europe/Paris,,OIF, +OIF:SP:59:3686315,1,"Maisons-Alfort - Alfortville RER",48.802672,2.425617,0,0,OIF:SA:8768115,Europe/Paris,,OIF, +OIF:SP:59:3686316,1,"Camélias",48.80011,2.42696,0,0,OIF:SA:8768115,Europe/Paris,,OIF, +OIF:SP:59:3686317,1,"Camélias",48.800317,2.426987,0,0,OIF:SA:8768115,Europe/Paris,,OIF, +OIF:SP:59:3686318,1,"Flore",48.797889,2.427582,0,0,OIF:SA:59:3686318,Europe/Paris,,OIF, +OIF:SP:59:3686319,1,"Flore",48.797754,2.427785,0,0,OIF:SA:59:3686318,Europe/Paris,,OIF, +OIF:SP:59:3686320,1,"Achtarak",48.795141,2.425305,0,0,OIF:SA:59:3686320,Europe/Paris,,OIF, +OIF:SP:59:3686321,1,"Achtarak",48.795141,2.425455,0,0,OIF:SA:59:3686320,Europe/Paris,,OIF, +OIF:SP:59:3686322,1,"Roses",48.792822,2.425491,0,0,OIF:SA:59:3686322,Europe/Paris,,OIF, +OIF:SP:59:3686323,1,"Roses",48.793316,2.425615,0,0,OIF:SA:59:3686322,Europe/Paris,,OIF, +OIF:SP:59:3686324,1,"Place du Petit Pont",48.790197,2.425745,0,0,OIF:SA:59:3686324,Europe/Paris,,OIF, +OIF:SP:59:3686325,1,"Place du Petit Pont",48.790089,2.425936,0,0,OIF:SA:59:3686324,Europe/Paris,,OIF, +OIF:SP:59:3686326,1,"San Benedetto",48.786521,2.425793,0,0,OIF:SA:59:3686326,Europe/Paris,,OIF, +OIF:SP:59:3686327,1,"San Benedetto",48.787114,2.42574,0,0,OIF:SA:59:3686326,Europe/Paris,,OIF, +OIF:SP:59:3686328,1,"Cimetière d'Alfortville",48.783742,2.428006,0,0,OIF:SA:59:3686328,Europe/Paris,,OIF, +OIF:SP:59:3686329,1,"Cimetière d'Alfortville",48.784173,2.427979,0,0,OIF:SA:59:3686328,Europe/Paris,,OIF, +OIF:SP:59:3686330,1,"Val de Seine",48.782384,2.428561,0,0,OIF:SA:59:3686330,Europe/Paris,,OIF, +OIF:SP:59:3686331,1,"Val de Seine",48.78065,2.428871,0,0,OIF:SA:59:3686330,Europe/Paris,,OIF, +OIF:SP:59:3686332,1,"Digue - Révolution",48.782058,2.420264,0,0,OIF:SA:59:3686332,Europe/Paris,,OIF, +OIF:SP:59:3686333,1,"Digue - Révolution",48.778353,2.423427,0,0,OIF:SA:59:3686332,Europe/Paris,,OIF, +OIF:SP:59:3686334,1,"Cokerie",48.778546,2.417049,0,0,OIF:SA:59:3686334,Europe/Paris,,OIF, +OIF:SP:59:3686335,1,"Cokerie",48.77744,2.418121,0,0,OIF:SA:59:3686334,Europe/Paris,,OIF, +OIF:SP:59:3686336,1,"Mésanges",48.774583,2.415547,0,0,OIF:SA:59:3686336,Europe/Paris,,OIF, +OIF:SP:59:3686337,1,"Mésanges",48.774287,2.415614,0,0,OIF:SA:59:3686336,Europe/Paris,,OIF, +OIF:SP:59:3686338,1,"La Folie",48.771654,2.413666,0,0,OIF:SA:59:3686338,Europe/Paris,,OIF, +OIF:SP:59:3686339,1,"La Folie",48.772292,2.414251,0,0,OIF:SA:59:3686338,Europe/Paris,,OIF, +OIF:SP:59:3686340,1,"Jean Vilar",48.769848,2.413432,0,0,OIF:SA:59:3686340,Europe/Paris,,OIF, +OIF:SP:59:3686341,1,"Jean Vilar",48.770279,2.41365,0,0,OIF:SA:59:3686340,Europe/Paris,,OIF, +OIF:SP:59:3686342,1,"Pont de Choisy",48.76743,2.41404,0,0,OIF:SA:59:3686342,Europe/Paris,,OIF, +OIF:SP:59:3686343,1,"Pont de Choisy",48.767376,2.414326,0,0,OIF:SA:59:3686342,Europe/Paris,,OIF, +OIF:SP:59:3686348,1,"Rene Panhard",48.763213,2.400914,0,0,OIF:SA:59:3620239,Europe/Paris,,OIF, +OIF:SP:59:3686358,1,"Grands Champs",48.767222,2.381245,0,0,OIF:SA:59:3686358,Europe/Paris,,OIF, +OIF:SP:59:3686359,1,"Grands Champs",48.767312,2.380143,0,0,OIF:SA:59:3686358,Europe/Paris,,OIF, +OIF:SP:59:3686360,1,"Paul Langevin",48.768231,2.372829,0,0,OIF:SA:59:3686360,Europe/Paris,,OIF, +OIF:SP:59:3686361,1,"Paul Langevin",48.76788,2.374324,0,0,OIF:SA:59:3686360,Europe/Paris,,OIF, +OIF:SP:59:3686363,1,"Cimetière Parisien de Thiais",48.764997,2.367986,0,0,OIF:SA:59819,Europe/Paris,,OIF, +OIF:SP:59:3686367,1,"Porte de Thiais",48.759092,2.365984,0,0,OIF:SA:59821,Europe/Paris,,OIF, +OIF:SP:59:3686376,1,"Maisons-Alfort - École Vétérinaire",48.815117,2.418534,0,0,OIF:SA:59565,Europe/Paris,,OIF, +OIF:SP:59:3686426,1,"Stade d'Alfortville",48.778998,2.426257,0,0,OIF:SA:59:3686426,Europe/Paris,,OIF, +OIF:SP:59:3686458,1,"Mairie d'Alfortville",48.805327,2.421159,0,0,OIF:SA:59:3619792,Europe/Paris,,OIF, +OIF:SP:59:3686459,1,"Joseph Franceschi",48.80626,2.423351,0,0,OIF:SA:59:3686459,Europe/Paris,,OIF, +OIF:SP:59:3686460,1,"Square Bourdarias",48.809435,2.421056,0,0,OIF:SA:59:3686460,Europe/Paris,,OIF, +OIF:SP:59:3686463,1,"Maisons-Alfort - École Vétérinaire",48.814892,2.418439,0,0,OIF:SA:59565,Europe/Paris,,OIF, +OIF:SP:59:3686465,1,"Georges Halgoult",48.761218,2.400232,0,0,OIF:SA:59:3620236,Europe/Paris,,OIF, +OIF:SP:59:3686539,1,"École Vétérinaire de Maisons-Alfort",48.814232,2.423745,0,0,OIF:SA:59565,Europe/Paris,,OIF, +OIF:SP:59:3686542,1,"Ernest Renan",48.812,2.427715,0,0,OIF:SA:59:3686542,Europe/Paris,,OIF, +OIF:SP:59:3686559,1,"D'Estienne d'Orves",48.791234,2.462149,0,0,OIF:SA:59:3686559,Europe/Paris,,OIF, +OIF:SP:59:3686560,1,"D'Estienne d'Orves",48.791404,2.462353,0,0,OIF:SA:59:3686559,Europe/Paris,,OIF, +OIF:SP:59:3686561,1,"Gabriel Péri",48.789019,2.46602,0,0,OIF:SA:59:3686561,Europe/Paris,,OIF, +OIF:SP:59:3686562,1,"Gabriel Péri",48.789198,2.466184,0,0,OIF:SA:59:3686561,Europe/Paris,,OIF, +OIF:SP:59:3686563,1,"Rue du Barrage",48.785491,2.470078,0,0,OIF:SA:59:3686563,Europe/Paris,,OIF, +OIF:SP:59:3686564,1,"Rue du Barrage",48.78576,2.470093,0,0,OIF:SA:59:3686563,Europe/Paris,,OIF, +OIF:SP:59:3686565,1,"Edmond Fouinât",48.782701,2.472982,0,0,OIF:SA:59:3686565,Europe/Paris,,OIF, +OIF:SP:59:3686566,1,"Edmond Fouinât",48.782485,2.473484,0,0,OIF:SA:59:3686565,Europe/Paris,,OIF, +OIF:SP:59:3686567,1,"Deux Biches",48.78047,2.475233,0,0,OIF:SA:13:1347,Europe/Paris,,OIF, +OIF:SP:59:3686568,1,"Deux Biches",48.779722,2.476279,0,0,OIF:SA:13:1347,Europe/Paris,,OIF, +OIF:SP:59:3686574,1,"Mairie de Bonneuil",48.773355,2.487181,0,0,OIF:SA:59:3619308,Europe/Paris,,OIF, +OIF:SP:59:3686575,1,"Montaigne",48.771864,2.486048,0,0,OIF:SA:59:3686575,Europe/Paris,,OIF, +OIF:SP:59:3686578,1,"Verdun",48.768975,2.481974,0,0,OIF:SA:59:3619707,Europe/Paris,,OIF, +OIF:SP:59:3686579,1,"Verdun",48.769002,2.482151,0,0,OIF:SA:59:3619707,Europe/Paris,,OIF, +OIF:SP:59:3686580,1,"I.U.F.M.",48.766149,2.484944,0,0,OIF:SA:59:3686580,Europe/Paris,,OIF, +OIF:SP:59:3686581,1,"I.U.F.M.",48.766203,2.485107,0,0,OIF:SA:59:3686580,Europe/Paris,,OIF, +OIF:SP:59:3686582,1,"Place des Libertés",48.765258,2.485893,0,0,OIF:SA:59:3686582,Europe/Paris,,OIF, +OIF:SP:59:3686583,1,"Place des Libertés",48.765339,2.485989,0,0,OIF:SA:59:3686582,Europe/Paris,,OIF, +OIF:SP:59:3686584,1,"Bicentenaire",48.764213,2.48793,0,0,OIF:SA:59:3686584,Europe/Paris,,OIF, +OIF:SP:59:3686585,1,"Bicentenaire",48.764878,2.487836,0,0,OIF:SA:59:3686584,Europe/Paris,,OIF, +OIF:SP:59:3686587,1,"Petits Carreaux",48.771592,2.494764,0,0,OIF:SA:35:1318,Europe/Paris,,OIF, +OIF:SP:59:3686588,1,"Petits Carreaux",48.771512,2.494464,0,0,OIF:SA:35:1318,Europe/Paris,,OIF, +OIF:SP:59:3686589,1,"Portes de Sucy",48.771409,2.503833,0,0,OIF:SA:8775819,Europe/Paris,,OIF, +OIF:SP:59:3686592,1,"Marronniers",48.766839,2.49377,0,0,OIF:SA:59:3686592,Europe/Paris,,OIF, +OIF:SP:59:3686594,1,"Pierre Curie",48.810475,2.424229,0,0,OIF:SA:59:3619747,Europe/Paris,,OIF, +OIF:SP:59:3686595,1,"Bouley-Ecole Vétérinaire",48.813443,2.421716,0,0,OIF:SA:59565,Europe/Paris,,OIF, +OIF:SP:59:3686596,1,"Sucy-Bonneuil RER",48.772494,2.505631,0,0,OIF:SA:8775819,Europe/Paris,,OIF, +OIF:SP:59:3686598,1,"Ateliers RATP",48.764984,2.502874,0,0,OIF:SA:59:3686598,Europe/Paris,,OIF, +OIF:SP:59:3686714,1,"Charenton-Écoles",48.821806,2.415564,0,0,OIF:SA:59482,Europe/Paris,,OIF, +OIF:SP:59:3686715,1,"Rue Gabrielle",48.820961,2.414868,0,0,OIF:SA:59482,Europe/Paris,,OIF, +OIF:SP:59:3686730,1,"Voisin - République",48.812728,2.466351,0,0,OIF:SA:59:3686730,Europe/Paris,,OIF, +OIF:SP:59:3686751,1,"La Varenne - Chennevières RER",48.794879,2.514397,0,0,OIF:SA:8775818,Europe/Paris,,OIF, +OIF:SP:59:3686986,1,"Hôtel de Ville de Créteil",48.777894,2.45533,0,0,OIF:SA:59:3619728,Europe/Paris,,OIF, +OIF:SP:59:3686987,1,"Hôtel de Ville de Créteil",48.777876,2.455086,0,0,OIF:SA:59:3619728,Europe/Paris,,OIF, +OIF:SP:59:3686989,1,"Centre Commercial Régional",48.779296,2.454994,0,0,OIF:SA:13:660,Europe/Paris,,OIF, +OIF:SP:59:3686991,1,"Croix des Meches",48.78549,2.453566,0,0,OIF:SA:59:3619735,Europe/Paris,,OIF, +OIF:SP:59:3686992,1,"Croix des Meches",48.785294,2.452423,0,0,OIF:SA:59:3619735,Europe/Paris,,OIF, +OIF:SP:59:3686993,1,"Créteil - Université",48.790119,2.453712,0,0,OIF:SA:59564,Europe/Paris,,OIF, +OIF:SP:59:3686994,1,"Créteil - Université",48.789651,2.453983,0,0,OIF:SA:59564,Europe/Paris,,OIF, +OIF:SP:59:3686996,1,"Château",48.792003,2.456764,0,0,OIF:SA:59:3686996,Europe/Paris,,OIF, +OIF:SP:59:3687001,1,"Docteur Tourasse",48.799257,2.472862,0,0,OIF:SA:59:3687001,Europe/Paris,,OIF, +OIF:SP:59:3687002,1,"Beaujeu",48.798162,2.479321,0,0,OIF:SA:59:3687002,Europe/Paris,,OIF, +OIF:SP:59:3687003,1,"Beaujeu",48.798288,2.479199,0,0,OIF:SA:59:3687002,Europe/Paris,,OIF, +OIF:SP:59:3687004,1,"Théâtre de Saint-Maur",48.798271,2.485961,0,0,OIF:SA:59:3687004,Europe/Paris,,OIF, +OIF:SP:59:3687005,1,"Théâtre de Saint-Maur",48.798164,2.485022,0,0,OIF:SA:59:3687004,Europe/Paris,,OIF, +OIF:SP:59:3687008,1,"Le Parc de Saint-Maur RER",48.804121,2.48674,0,0,OIF:SA:8775816,Europe/Paris,,OIF, +OIF:SP:59:3687011,1,"Libération - Rabelais",48.807118,2.476243,0,0,OIF:SA:59:3663657,Europe/Paris,,OIF, +OIF:SP:59:3687013,1,"Marinville",48.809112,2.476888,0,0,OIF:SA:59:3687013,Europe/Paris,,OIF, +OIF:SP:59:3687014,1,"Marinville",48.809303,2.475229,0,0,OIF:SA:59:3687013,Europe/Paris,,OIF, +OIF:SP:59:3687015,1,"Libération - Condé",48.810729,2.478145,0,0,OIF:SA:59:3687015,Europe/Paris,,OIF, +OIF:SP:59:3687016,1,"Libération - Condé",48.811117,2.476608,0,0,OIF:SA:59:3687015,Europe/Paris,,OIF, +OIF:SP:59:3687024,1,"Général de Gaulle - Stalingrad",48.823487,2.495425,0,0,OIF:SA:59:3619640,Europe/Paris,,OIF, +OIF:SP:59:3687032,1,"42E de Ligne",48.819388,2.482374,0,0,OIF:SA:59:3687032,Europe/Paris,,OIF, +OIF:SP:59:3687033,1,"Charles Floquet - Diderot",48.815138,2.481273,0,0,OIF:SA:59:3687033,Europe/Paris,,OIF, +OIF:SP:59:3687034,1,"Pont de Créteil",48.800508,2.471491,0,0,OIF:SA:59:3663699,Europe/Paris,,OIF, +OIF:SP:59:3687036,1,"Préfecture du Val-de-Marne",48.783335,2.452174,0,0,OIF:SA:13:659,Europe/Paris,,OIF, +OIF:SP:59:3687038,1,"Centre Commercial Régional",48.779467,2.455157,0,0,OIF:SA:13:660,Europe/Paris,,OIF, +OIF:SP:59:3687042,1,"Château",48.791734,2.456845,0,0,OIF:SA:59:3686996,Europe/Paris,,OIF, +OIF:SP:59:3687044,1,"Hôpital Intercommunal",48.797711,2.464668,0,0,OIF:SA:59:3663578,Europe/Paris,,OIF, +OIF:SP:59:3687045,1,"Docteur Tourasse",48.799654,2.471394,0,0,OIF:SA:59:3687001,Europe/Paris,,OIF, +OIF:SP:59:3687049,1,"Le Parc de Saint-Maur RER",48.804742,2.486034,0,0,OIF:SA:8775816,Europe/Paris,,OIF, +OIF:SP:59:3687059,1,"Gambetta",48.86501,2.397798,0,0,OIF:SA:59325,Europe/Paris,,OIF, +OIF:SP:59:3687060,1,"Gambetta",48.864839,2.397729,0,0,OIF:SA:59325,Europe/Paris,,OIF, +OIF:SP:59:3687062,1,"Martin Nadaud",48.864769,2.39525,0,0,OIF:SA:59325,Europe/Paris,,OIF, +OIF:SP:59:3687072,1,"Chemin Vert - Parmentier",48.860049,2.377592,0,0,OIF:SA:59:3687072,Europe/Paris,,OIF, +OIF:SP:59:3687073,1,"Popincourt",48.859124,2.374662,0,0,OIF:SA:59336,Europe/Paris,,OIF, +OIF:SP:59:3687074,1,"Popincourt",48.856876,2.378338,0,0,OIF:SA:59336,Europe/Paris,,OIF, +OIF:SP:59:3687075,1,"Richard Lenoir",48.857993,2.371338,0,0,OIF:SA:59336,Europe/Paris,,OIF, +OIF:SP:59:3687076,1,"Beaumarchais",48.857059,2.368491,0,0,OIF:SA:59473,Europe/Paris,,OIF, +OIF:SP:59:3687077,1,"Pasteur - Wagner",48.855369,2.368435,0,0,OIF:SA:59:3687077,Europe/Paris,,OIF, +OIF:SP:59:3687078,1,"Bastille - Rue Saint-Antoine",48.853374,2.368543,0,0,OIF:SA:59238,Europe/Paris,,OIF, +OIF:SP:59:3687079,1,"Bastille - Rue Saint-Antoine",48.853194,2.368203,0,0,OIF:SA:59238,Europe/Paris,,OIF, +OIF:SP:59:3687084,1,"Rue Vieille du Temple - Mairie du 4ème",48.856208,2.357227,0,0,OIF:SA:59:3687084,Europe/Paris,,OIF, +OIF:SP:59:3687086,1,"Hôtel de Ville",48.856065,2.350321,0,0,OIF:SA:59590,Europe/Paris,,OIF, +OIF:SP:59:3687087,1,"Châtelet",48.858411,2.348864,0,0,OIF:SA:59566,Europe/Paris,,OIF, +OIF:SP:59:3687088,1,"Châtelet",48.856784,2.348278,0,0,OIF:SA:59566,Europe/Paris,,OIF, +OIF:SP:59:3687089,1,"Rivoli - Pont Neuf",48.859786,2.344588,0,0,OIF:SA:59566,Europe/Paris,,OIF, +OIF:SP:59:3687092,1,"Musée du Louvre",48.860937,2.333623,0,0,OIF:SA:59:3687092,Europe/Paris,,OIF, +OIF:SP:59:3687093,1,"Pont du Carrousel - Quai Voltaire",48.858896,2.331593,0,0,OIF:SA:59:3687093,Europe/Paris,,OIF, +OIF:SP:59:3687095,1,"Pont Royal - Quai Voltaire",48.859013,2.329033,0,0,OIF:SA:8754730,Europe/Paris,,OIF, +OIF:SP:59:3687096,1,"Musée d'Orsay",48.860954,2.325722,0,0,OIF:SA:8754730,Europe/Paris,,OIF, +OIF:SP:59:3687097,1,"Solferino - Bellechasse",48.857611,2.323789,0,0,OIF:SA:59599,Europe/Paris,,OIF, +OIF:SP:59:3687098,1,"Solferino - Bellechasse",48.857889,2.323244,0,0,OIF:SA:59599,Europe/Paris,,OIF, +OIF:SP:59:3687099,1,"Rue du Bac - Rene Char",48.855768,2.325315,0,0,OIF:SA:59511,Europe/Paris,,OIF, +OIF:SP:59:3687100,1,"Rue du Bac - Rene Char",48.856254,2.32635,0,0,OIF:SA:59511,Europe/Paris,,OIF, +OIF:SP:59:3687101,1,"Grenelle - Bellechasse",48.856613,2.32082,0,0,OIF:SA:59:3687101,Europe/Paris,,OIF, +OIF:SP:59:3687102,1,"Bourgogne",48.857718,2.317033,0,0,OIF:SA:59531,Europe/Paris,,OIF, +OIF:SP:59:3687103,1,"Bourgogne",48.859192,2.319879,0,0,OIF:SA:59531,Europe/Paris,,OIF, +OIF:SP:59:3687104,1,"Esplanade des Invalides",48.858409,2.31405,0,0,OIF:SA:8739303,Europe/Paris,,OIF, +OIF:SP:59:3687105,1,"Esplanade des Invalides",48.859901,2.314267,0,0,OIF:SA:8739303,Europe/Paris,,OIF, +OIF:SP:59:3687106,1,"Invalides - la Tour-Maubourg",48.858094,2.30976,0,0,OIF:SA:59658,Europe/Paris,,OIF, +OIF:SP:59:3687107,1,"Saint-Pierre du Gros Caillou",48.857841,2.306423,0,0,OIF:SA:59:3687107,Europe/Paris,,OIF, +OIF:SP:59:3687108,1,"Saint-Pierre du Gros Caillou",48.859306,2.305795,0,0,OIF:SA:59:3687107,Europe/Paris,,OIF, +OIF:SP:59:3687109,1,"Bosquet - Grenelle",48.857032,2.303917,0,0,OIF:SA:59:3687109,Europe/Paris,,OIF, +OIF:SP:59:3687110,1,"Champ de Mars - la Bourdonnais",48.856905,2.30152,0,0,OIF:SA:59:3687110,Europe/Paris,,OIF, +OIF:SP:59:3687111,1,"Rapp - la Bourdonnais",48.857435,2.299517,0,0,OIF:SA:59:3687111,Europe/Paris,,OIF, +OIF:SP:59:3687112,1,"Rapp - la Bourdonnais",48.857183,2.299967,0,0,OIF:SA:59:3687111,Europe/Paris,,OIF, +OIF:SP:59:3687113,1,"Champ de Mars",48.855079,2.296046,0,0,OIF:SA:8739305,Europe/Paris,,OIF, +OIF:SP:59:3687114,1,"Champ de Mars",48.854872,2.296564,0,0,OIF:SA:8739305,Europe/Paris,,OIF, +OIF:SP:59:3687115,1,"Bosquet - Saint-Dominique",48.858865,2.303861,0,0,OIF:SA:59:3687115,Europe/Paris,,OIF, +OIF:SP:59:3687116,1,"La Tour-Maubourg - Saint-Dominique",48.859873,2.310508,0,0,OIF:SA:59:3687116,Europe/Paris,,OIF, +OIF:SP:59:3687120,1,"Pont Neuf - Quai du Louvre",48.858618,2.34125,0,0,OIF:SA:59664,Europe/Paris,,OIF, +OIF:SP:59:3687121,1,"Église Saint-Gervais",48.855848,2.355034,0,0,OIF:SA:59:3687121,Europe/Paris,,OIF, +OIF:SP:59:3687123,1,"Bastille",48.852817,2.368815,0,0,OIF:SA:59238,Europe/Paris,,OIF, +OIF:SP:59:3687124,1,"Bréguet - Sabin",48.854425,2.371881,0,0,OIF:SA:59637,Europe/Paris,,OIF, +OIF:SP:59:3687125,1,"Commandant Lamy",48.855861,2.375505,0,0,OIF:SA:59:3687125,Europe/Paris,,OIF, +OIF:SP:59:3687238,1,"Louvre - Rivoli",48.860361,2.34091,0,0,OIF:SA:59231,Europe/Paris,,OIF, +OIF:SP:59:3687249,1,"Birague",48.85377,2.365002,0,0,OIF:SA:59:3687249,Europe/Paris,,OIF, +OIF:SP:59:3687250,1,"Birague",48.853869,2.365357,0,0,OIF:SA:59:3687249,Europe/Paris,,OIF, +OIF:SP:59:3687253,1,"Bastille - Faubourg Saint-Antoine",48.852852,2.37079,0,0,OIF:SA:59238,Europe/Paris,,OIF, +OIF:SP:59:3687254,1,"La Boule Blanche",48.85189,2.373377,0,0,OIF:SA:59:3687254,Europe/Paris,,OIF, +OIF:SP:59:3687256,1,"Ledru Rollin - Faubourg Saint-Antoine",48.851601,2.375297,0,0,OIF:SA:59468,Europe/Paris,,OIF, +OIF:SP:59:3687257,1,"Charonne - Keller",48.853182,2.377777,0,0,OIF:SA:59:3673592,Europe/Paris,,OIF, +OIF:SP:59:3687258,1,"Charonne - Keller",48.853129,2.377096,0,0,OIF:SA:59:3673592,Europe/Paris,,OIF, +OIF:SP:59:3687259,1,"Faidherbe",48.853765,2.381795,0,0,OIF:SA:59:3687259,Europe/Paris,,OIF, +OIF:SP:59:3687260,1,"Faidherbe",48.854214,2.382858,0,0,OIF:SA:59:3687259,Europe/Paris,,OIF, +OIF:SP:59:3687261,1,"Charonne - Voltaire",48.854743,2.3858,0,0,OIF:SA:59499,Europe/Paris,,OIF, +OIF:SP:59:3687262,1,"Charonne - Voltaire",48.854815,2.38561,0,0,OIF:SA:59499,Europe/Paris,,OIF, +OIF:SP:59:3687263,1,"Charonne - Philippe Auguste",48.855568,2.390486,0,0,OIF:SA:59:3687263,Europe/Paris,,OIF, +OIF:SP:59:3687264,1,"Charonne - Philippe Auguste",48.855765,2.390963,0,0,OIF:SA:59:3687263,Europe/Paris,,OIF, +OIF:SP:59:3687265,1,"Charonne - Bagnolet",48.856034,2.392966,0,0,OIF:SA:59425,Europe/Paris,,OIF, +OIF:SP:59:3687266,1,"La Réunion",48.857182,2.398674,0,0,OIF:SA:59:3687266,Europe/Paris,,OIF, +OIF:SP:59:3687267,1,"La Réunion",48.857712,2.399424,0,0,OIF:SA:59:3687266,Europe/Paris,,OIF, +OIF:SP:59:3687268,1,"Pyrénées - Bagnolet",48.859417,2.402776,0,0,OIF:SA:59:3687268,Europe/Paris,,OIF, +OIF:SP:59:3687269,1,"Pyrénées - Bagnolet",48.859409,2.402477,0,0,OIF:SA:59:3687268,Europe/Paris,,OIF, +OIF:SP:59:3687275,1,"Général de Gaulle",48.862915,2.415653,0,0,OIF:SA:59448,Europe/Paris,,OIF, +OIF:SP:59:3687276,1,"Général de Gaulle",48.86269,2.415735,0,0,OIF:SA:59448,Europe/Paris,,OIF, +OIF:SP:59:3687277,1,"Gallieni",48.864037,2.417085,0,0,OIF:SA:59448,Europe/Paris,,OIF, +OIF:SP:59:3687278,1,"Gallieni",48.863741,2.41669,0,0,OIF:SA:59448,Europe/Paris,,OIF, +OIF:SP:59:3687281,1,"Église de Bagnolet",48.869895,2.420432,0,0,OIF:SA:59:3687281,Europe/Paris,,OIF, +OIF:SP:59:3687285,1,"Descartes",48.869019,2.426221,0,0,OIF:SA:59:3687285,Europe/Paris,,OIF, +OIF:SP:59:3687286,1,"Descartes",48.868938,2.426057,0,0,OIF:SA:59:3687285,Europe/Paris,,OIF, +OIF:SP:59:3687287,1,"Les Malassis",48.870978,2.426347,0,0,OIF:SA:59:3687287,Europe/Paris,,OIF, +OIF:SP:59:3687288,1,"Les Malassis",48.870735,2.42685,0,0,OIF:SA:59:3687287,Europe/Paris,,OIF, +OIF:SP:59:3687289,1,"Stalingrad",48.87227,2.428229,0,0,OIF:SA:59:3687289,Europe/Paris,,OIF, +OIF:SP:59:3687290,1,"Stalingrad",48.872423,2.428311,0,0,OIF:SA:59:3687289,Europe/Paris,,OIF, +OIF:SP:59:3687291,1,"Girardot",48.873787,2.430793,0,0,OIF:SA:59:3687291,Europe/Paris,,OIF, +OIF:SP:59:3687292,1,"Girardot",48.873743,2.430616,0,0,OIF:SA:59:3687291,Europe/Paris,,OIF, +OIF:SP:59:3687298,1,"Charonne - Bagnolet",48.856456,2.39396,0,0,OIF:SA:59425,Europe/Paris,,OIF, +OIF:SP:59:3687299,1,"La Boule Blanche",48.852015,2.37365,0,0,OIF:SA:59:3687254,Europe/Paris,,OIF, +OIF:SP:59:3687300,1,"Bastille - Faubourg Saint-Antoine",48.853122,2.370777,0,0,OIF:SA:59238,Europe/Paris,,OIF, +OIF:SP:59:3687413,1,"Place du 18 Juin 1940",48.843626,2.323602,0,0,OIF:SA:8739100,Europe/Paris,,OIF, +OIF:SP:59:3687414,1,"Rennes - Littré",48.844552,2.324732,0,0,OIF:SA:8739100,Europe/Paris,,OIF, +OIF:SP:59:3687415,1,"Rennes - Littré",48.84484,2.32465,0,0,OIF:SA:8739100,Europe/Paris,,OIF, +OIF:SP:59:3687416,1,"Rennes - Saint-Placide",48.846386,2.326502,0,0,OIF:SA:59256,Europe/Paris,,OIF, +OIF:SP:59:3687417,1,"Rennes - Saint-Placide",48.846107,2.325889,0,0,OIF:SA:59256,Europe/Paris,,OIF, +OIF:SP:59:3687418,1,"Rennes - d'Assas",48.849145,2.329048,0,0,OIF:SA:59510,Europe/Paris,,OIF, +OIF:SP:59:3687419,1,"Rennes - d'Assas",48.848794,2.328421,0,0,OIF:SA:59510,Europe/Paris,,OIF, +OIF:SP:59:3687420,1,"Michel Debré",48.851311,2.331036,0,0,OIF:SA:59257,Europe/Paris,,OIF, +OIF:SP:59:3687421,1,"Michel Debré",48.85141,2.330777,0,0,OIF:SA:59257,Europe/Paris,,OIF, +OIF:SP:59:3687422,1,"Bonaparte - Saint-Germain",48.852596,2.333446,0,0,OIF:SA:59353,Europe/Paris,,OIF, +OIF:SP:59:3687423,1,"Seine - Buci",48.852902,2.336579,0,0,OIF:SA:59263,Europe/Paris,,OIF, +OIF:SP:59:3687424,1,"Saint-Germain - Odéon",48.8523,2.339207,0,0,OIF:SA:59263,Europe/Paris,,OIF, +OIF:SP:59:3687425,1,"Saint-Germain - Odéon",48.852237,2.338962,0,0,OIF:SA:59263,Europe/Paris,,OIF, +OIF:SP:59:3687426,1,"Saint-Michel - Saint-Germain",48.852344,2.343797,0,0,OIF:SA:8754731,Europe/Paris,,OIF, +OIF:SP:59:3687427,1,"Cité - Palais de Justice",48.855346,2.346126,0,0,OIF:SA:59628,Europe/Paris,,OIF, +OIF:SP:59:3687432,1,"Rue de Jouy",48.855479,2.357567,0,0,OIF:SA:59:3687432,Europe/Paris,,OIF, +OIF:SP:59:3687433,1,"Saint-Paul",48.854814,2.362034,0,0,OIF:SA:59225,Europe/Paris,,OIF, +OIF:SP:59:3687434,1,"Saint-Paul",48.854993,2.362075,0,0,OIF:SA:59225,Europe/Paris,,OIF, +OIF:SP:59:3687435,1,"Place des Vosges",48.856646,2.3645,0,0,OIF:SA:59:3687435,Europe/Paris,,OIF, +OIF:SP:59:3687436,1,"Place des Vosges",48.856862,2.36435,0,0,OIF:SA:59:3687435,Europe/Paris,,OIF, +OIF:SP:59:3687437,1,"Saint-Claude",48.859945,2.364638,0,0,OIF:SA:59558,Europe/Paris,,OIF, +OIF:SP:59:3687438,1,"Saint-Claude",48.859864,2.364447,0,0,OIF:SA:59558,Europe/Paris,,OIF, +OIF:SP:59:3687439,1,"Bretagne",48.861886,2.365729,0,0,OIF:SA:59:3687439,Europe/Paris,,OIF, +OIF:SP:59:3687440,1,"Bretagne",48.862281,2.365075,0,0,OIF:SA:59:3687439,Europe/Paris,,OIF, +OIF:SP:59:3687441,1,"Oberkampf - Filles du Calvaire",48.862461,2.367146,0,0,OIF:SA:59472,Europe/Paris,,OIF, +OIF:SP:59:3687442,1,"Oberkampf - Richard Lenoir",48.863565,2.369803,0,0,OIF:SA:59:3687442,Europe/Paris,,OIF, +OIF:SP:59:3687443,1,"Parmentier - République",48.864769,2.37355,0,0,OIF:SA:59434,Europe/Paris,,OIF, +OIF:SP:59:3687444,1,"Saint-Maur - Jean Aicard",48.866115,2.379708,0,0,OIF:SA:59:3687444,Europe/Paris,,OIF, +OIF:SP:59:3687445,1,"Belleville - Ménilmontant",48.866994,2.383251,0,0,OIF:SA:59655,Europe/Paris,,OIF, +OIF:SP:59:3687446,1,"Julien Lacroix",48.8679,2.386848,0,0,OIF:SA:59:3687446,Europe/Paris,,OIF, +OIF:SP:59:3687447,1,"Julien Lacroix",48.868107,2.386889,0,0,OIF:SA:59:3687446,Europe/Paris,,OIF, +OIF:SP:59:3687448,1,"Henri Chevreau",48.868528,2.389505,0,0,OIF:SA:59:3687448,Europe/Paris,,OIF, +OIF:SP:59:3687449,1,"Henri Chevreau",48.868618,2.389083,0,0,OIF:SA:59:3687448,Europe/Paris,,OIF, +OIF:SP:59:3687450,1,"Pyrénées - Ménilmontant",48.869748,2.394029,0,0,OIF:SA:59:3687450,Europe/Paris,,OIF, +OIF:SP:59:3687451,1,"Pyrénées - Ménilmontant",48.869883,2.393852,0,0,OIF:SA:59:3687450,Europe/Paris,,OIF, +OIF:SP:59:3687452,1,"Ménilmontant - Pelleport",48.870788,2.399494,0,0,OIF:SA:59:3687452,Europe/Paris,,OIF, +OIF:SP:59:3687453,1,"Ménilmontant - Pelleport",48.870717,2.398812,0,0,OIF:SA:59:3687452,Europe/Paris,,OIF, +OIF:SP:59:3687454,1,"Saint-Fargeau",48.872116,2.404632,0,0,OIF:SA:59326,Europe/Paris,,OIF, +OIF:SP:59:3687460,1,"Porte des Lilas",48.877092,2.409107,0,0,OIF:SA:59327,Europe/Paris,,OIF, +OIF:SP:59:3687462,1,"Belleville - Ménilmontant",48.867345,2.383101,0,0,OIF:SA:59:3687462,Europe/Paris,,OIF, +OIF:SP:59:3687463,1,"Couronnes",48.868865,2.380214,0,0,OIF:SA:59429,Europe/Paris,,OIF, +OIF:SP:59:3687464,1,"Maison des Métallos",48.867769,2.37753,0,0,OIF:SA:59:3687464,Europe/Paris,,OIF, +OIF:SP:59:3687465,1,"Parmentier",48.866647,2.373183,0,0,OIF:SA:59434,Europe/Paris,,OIF, +OIF:SP:59:3687466,1,"Jean-Pierre Timbaud - Richard Lenoir",48.865731,2.369654,0,0,OIF:SA:59:3687466,Europe/Paris,,OIF, +OIF:SP:59:3687467,1,"Oberkampf - Filles du Calvaire",48.863333,2.366479,0,0,OIF:SA:59472,Europe/Paris,,OIF, +OIF:SP:59:3687469,1,"Châtelet - Hôtel de Ville",48.857476,2.350267,0,0,OIF:SA:59566,Europe/Paris,,OIF, +OIF:SP:59:3687470,1,"Cité - Palais de Justice",48.855418,2.345826,0,0,OIF:SA:59628,Europe/Paris,,OIF, +OIF:SP:59:3687471,1,"Saint-Michel",48.853639,2.343974,0,0,OIF:SA:8754731,Europe/Paris,,OIF, +OIF:SP:59:3687472,1,"Église Saint-Sulpice",48.851347,2.333514,0,0,OIF:SA:59257,Europe/Paris,,OIF, +OIF:SP:59:3687473,1,"Place du 18 Juin 1940 - Rue de l'Arrivée",48.843815,2.322404,0,0,OIF:SA:8739100,Europe/Paris,,OIF, +OIF:SP:59:3687659,1,"Porte des Lilas - Métro",48.876518,2.40769,0,0,OIF:SA:59327,Europe/Paris,,OIF, +OIF:SP:59:3687660,1,"Porte des Lilas - Métro",48.877182,2.408494,0,0,OIF:SA:59327,Europe/Paris,,OIF, +OIF:SP:59:3687661,1,"Chassagnole",48.876433,2.413276,0,0,OIF:SA:59:3687661,Europe/Paris,,OIF, +OIF:SP:59:3687662,1,"Chassagnole",48.876415,2.414134,0,0,OIF:SA:59:3687661,Europe/Paris,,OIF, +OIF:SP:59:3687663,1,"Rue de Noisy-le-Sec",48.875963,2.418167,0,0,OIF:SA:59:3687663,Europe/Paris,,OIF, +OIF:SP:59:3687664,1,"Rue de Pantin",48.876104,2.421832,0,0,OIF:SA:59:3687664,Europe/Paris,,OIF, +OIF:SP:59:3687665,1,"Rue de Pantin",48.876274,2.422159,0,0,OIF:SA:59:3687664,Europe/Paris,,OIF, +OIF:SP:59:3687666,1,"Girardot",48.875167,2.424406,0,0,OIF:SA:59:3687291,Europe/Paris,,OIF, +OIF:SP:59:3687667,1,"Girardot",48.875923,2.423985,0,0,OIF:SA:59:3687291,Europe/Paris,,OIF, +OIF:SP:59:3687668,1,"Les Malassis",48.872237,2.424946,0,0,OIF:SA:59:3687287,Europe/Paris,,OIF, +OIF:SP:59:3687669,1,"Les Malassis",48.872534,2.424837,0,0,OIF:SA:59:3687287,Europe/Paris,,OIF, +OIF:SP:59:3687672,1,"Les Rigondes",48.871496,2.430299,0,0,OIF:SA:59:3687672,Europe/Paris,,OIF, +OIF:SP:59:3687673,1,"Les Rigondes",48.871765,2.430449,0,0,OIF:SA:59:3687672,Europe/Paris,,OIF, +OIF:SP:59:3687674,1,"Général de Gaulle",48.868744,2.433032,0,0,OIF:SA:59:3687674,Europe/Paris,,OIF, +OIF:SP:59:3687675,1,"Général de Gaulle",48.869004,2.433169,0,0,OIF:SA:59:3687674,Europe/Paris,,OIF, +OIF:SP:59:3687676,1,"Hoche",48.865163,2.437684,0,0,OIF:SA:59:3687676,Europe/Paris,,OIF, +OIF:SP:59:3687677,1,"Hoche",48.864857,2.438392,0,0,OIF:SA:59:3687676,Europe/Paris,,OIF, +OIF:SP:59:3687678,1,"Mairie de Montreuil - Pasteur",48.862949,2.440976,0,0,OIF:SA:59507,Europe/Paris,,OIF, +OIF:SP:59:3687679,1,"Mairie de Montreuil - Pasteur",48.862895,2.441262,0,0,OIF:SA:59507,Europe/Paris,,OIF, +OIF:SP:59:3687680,1,"Mairie de Montreuil - Rouget de Lisle",48.862104,2.441315,0,0,OIF:SA:59507,Europe/Paris,,OIF, +OIF:SP:59:3687681,1,"Victor Hugo",48.860147,2.438996,0,0,OIF:SA:59:3687681,Europe/Paris,,OIF, +OIF:SP:59:3687682,1,"Victor Hugo",48.860802,2.440073,0,0,OIF:SA:59:3687681,Europe/Paris,,OIF, +OIF:SP:59:3687683,1,"Croix de Chavaux - Rouget de Lisle",48.858567,2.437099,0,0,OIF:SA:59506,Europe/Paris,,OIF, +OIF:SP:59:3687684,1,"Croix de Chavaux - Rouget de Lisle",48.858512,2.437358,0,0,OIF:SA:59506,Europe/Paris,,OIF, +OIF:SP:59:3687685,1,"Wilson - Gabriel Péri",48.856946,2.439875,0,0,OIF:SA:59:3685921,Europe/Paris,,OIF, +OIF:SP:59:3687686,1,"Wilson - Gabriel Péri",48.857603,2.439808,0,0,OIF:SA:59:3685921,Europe/Paris,,OIF, +OIF:SP:59:3687687,1,"Colmet - Lépinay",48.854727,2.439217,0,0,OIF:SA:59:3687687,Europe/Paris,,OIF, +OIF:SP:59:3687688,1,"Colmet - Lépinay",48.854961,2.43949,0,0,OIF:SA:59:3687687,Europe/Paris,,OIF, +OIF:SP:59:3687689,1,"Solidarité",48.85275,2.438641,0,0,OIF:SA:59:3687689,Europe/Paris,,OIF, +OIF:SP:59:3687690,1,"Rue de Montreuil",48.849788,2.434263,0,0,OIF:SA:8775811,Europe/Paris,,OIF, +OIF:SP:59:3687691,1,"Rue de Montreuil",48.850156,2.435081,0,0,OIF:SA:8775811,Europe/Paris,,OIF, +OIF:SP:59:3687692,1,"Fraternité",48.848432,2.433103,0,0,OIF:SA:8775811,Europe/Paris,,OIF, +OIF:SP:59:3687694,1,"Vincennes RER",48.847,2.436955,0,0,OIF:SA:8775811,Europe/Paris,,OIF, +OIF:SP:59:3687696,1,"Avenue du Château",48.844852,2.436882,0,0,OIF:SA:59:3685790,Europe/Paris,,OIF, +OIF:SP:59:3687698,1,"Château de Vincennes",48.84412,2.441674,0,0,OIF:SA:59595,Europe/Paris,,OIF, +OIF:SP:59:3687699,1,"Solidarité",48.853361,2.43901,0,0,OIF:SA:59:3687699,Europe/Paris,,OIF, +OIF:SP:59:3687700,1,"Rue de Noisy-le-Sec",48.876116,2.416995,0,0,OIF:SA:59:3687700,Europe/Paris,,OIF, +OIF:SP:59:3687724,1,"Lycée Jean Jaurès",48.863579,2.450064,0,0,OIF:SA:59:3687724,Europe/Paris,,OIF, +OIF:SP:59:3687725,1,"Danton",48.865139,2.453963,0,0,OIF:SA:59:3687725,Europe/Paris,,OIF, +OIF:SP:59:3687726,1,"Edouard Branly",48.867561,2.458083,0,0,OIF:SA:59:3687726,Europe/Paris,,OIF, +OIF:SP:59:3687727,1,"Nouvelle France",48.868851,2.462132,0,0,OIF:SA:59:3687727,Europe/Paris,,OIF, +OIF:SP:59:3687728,1,"Acacia",48.86989,2.465649,0,0,OIF:SA:59:3687728,Europe/Paris,,OIF, +OIF:SP:59:3687729,1,"Fort de Rosny",48.870928,2.469984,0,0,OIF:SA:59:3687729,Europe/Paris,,OIF, +OIF:SP:59:3687730,1,"Grand Verger",48.872645,2.477509,0,0,OIF:SA:59:3687730,Europe/Paris,,OIF, +OIF:SP:59:3687731,1,"Église de Rosny",48.874256,2.482773,0,0,OIF:SA:59:3687731,Europe/Paris,,OIF, +OIF:SP:59:3687739,1,"Château de Villemomble (Descente)",48.884294,2.510492,0,0,OIF:SA:59:3687739,Europe/Paris,,OIF, +OIF:SP:59:3688518,1,"Val de Fontenay-RER",48.853067,2.48718,0,0,OIF:SA:8711371,Europe/Paris,,OIF, +OIF:SP:59:3688523,1,"Charles Garcia",48.853299,2.481693,0,0,OIF:SA:59:3685702,Europe/Paris,,OIF, +OIF:SP:59:3688528,1,"Descartes",48.858312,2.475795,0,0,OIF:SA:59:3688528,Europe/Paris,,OIF, +OIF:SP:59:3688529,1,"Descartes",48.858221,2.476326,0,0,OIF:SA:59:3688528,Europe/Paris,,OIF, +OIF:SP:59:3688532,1,"Verdun",48.854193,2.470214,0,0,OIF:SA:59:3685698,Europe/Paris,,OIF, +OIF:SP:59:3688533,1,"Verdun",48.853995,2.470322,0,0,OIF:SA:59:3685698,Europe/Paris,,OIF, +OIF:SP:59:3688534,1,"Ernest Renan",48.857306,2.467334,0,0,OIF:SA:59:3688534,Europe/Paris,,OIF, +OIF:SP:59:3688542,1,"Saint-Exupéry",48.869372,2.470661,0,0,OIF:SA:59:3688542,Europe/Paris,,OIF, +OIF:SP:59:3688543,1,"Fort de Rosny",48.870882,2.47102,0,0,OIF:SA:59:3688543,Europe/Paris,,OIF, +OIF:SP:59:3688546,1,"Salvador Allende",48.877335,2.462616,0,0,OIF:SA:59:3688546,Europe/Paris,,OIF, +OIF:SP:59:3688548,1,"La Boissière",48.87824,2.456827,0,0,OIF:SA:59:3688548,Europe/Paris,,OIF, +OIF:SP:59:3688549,1,"La Boissière",48.877915,2.457916,0,0,OIF:SA:59:3688548,Europe/Paris,,OIF, +OIF:SP:59:3688552,1,"Frères Lumière",48.883423,2.455198,0,0,OIF:SA:59:3688552,Europe/Paris,,OIF, +OIF:SP:59:3688553,1,"Frères Lumière",48.882987,2.45493,0,0,OIF:SA:59:3688552,Europe/Paris,,OIF, +OIF:SP:59:3688558,1,"Chaâlons",48.891297,2.448325,0,0,OIF:SA:59:3688558,Europe/Paris,,OIF, +OIF:SP:59:3688559,1,"Chaâlons",48.891054,2.448693,0,0,OIF:SA:59:3688558,Europe/Paris,,OIF, +OIF:SP:59:3688565,1,"Louise Michel",48.902484,2.440647,0,0,OIF:SA:59:3688565,Europe/Paris,,OIF, +OIF:SP:59:3688566,1,"Louise Michel",48.90217,2.440455,0,0,OIF:SA:59:3688565,Europe/Paris,,OIF, +OIF:SP:59:3688567,1,"Conservatoire Jean Wiener",48.906377,2.439537,0,0,OIF:SA:59072,Europe/Paris,,OIF, +OIF:SP:59:3688568,1,"Conservatoire Jean Wiener",48.906512,2.43951,0,0,OIF:SA:59072,Europe/Paris,,OIF, +OIF:SP:59:3688569,1,"Hôtel de Ville de Bobigny",48.906571,2.443763,0,0,OIF:SA:59070,Europe/Paris,,OIF, +OIF:SP:59:3688570,1,"Hôtel de Ville de Bobigny",48.906714,2.444118,0,0,OIF:SA:59070,Europe/Paris,,OIF, +OIF:SP:59:3688571,1,"Bobigny - Pablo Picasso",48.906781,2.450131,0,0,OIF:SA:59342,Europe/Paris,,OIF, +OIF:SP:59:3688573,1,"Maurice Thorez",48.906766,2.446709,0,0,OIF:SA:59:3688573,Europe/Paris,,OIF, +OIF:SP:59:3688575,1,"Trois Communes",48.878543,2.450015,0,0,OIF:SA:59:3688575,Europe/Paris,,OIF, +OIF:SP:59:3688576,1,"Hôpital André Grégoire",48.878342,2.453271,0,0,OIF:SA:59:3688576,Europe/Paris,,OIF, +OIF:SP:59:3688577,1,"Fort de Rosny",48.871385,2.470721,0,0,OIF:SA:59:3687729,Europe/Paris,,OIF, +OIF:SP:59:3689892,1,"Mairie de Montreuil",48.862803,2.444014,0,0,OIF:SA:59507,Europe/Paris,,OIF, +OIF:SP:59:3689893,1,"Mairie de Montreuil",48.863047,2.441562,0,0,OIF:SA:59507,Europe/Paris,,OIF, +OIF:SP:59:3689894,1,"Place François Mitterrand",48.865697,2.44338,0,0,OIF:SA:59:3689894,Europe/Paris,,OIF, +OIF:SP:59:3689895,1,"Place François Mitterrand",48.864969,2.442997,0,0,OIF:SA:59:3689894,Europe/Paris,,OIF, +OIF:SP:59:3689896,1,"Victor Beausse",48.867505,2.442225,0,0,OIF:SA:59:3689896,Europe/Paris,,OIF, +OIF:SP:59:3689897,1,"Victor Beausse",48.868233,2.441478,0,0,OIF:SA:59:3689896,Europe/Paris,,OIF, +OIF:SP:59:3689898,1,"Berlioz",48.872063,2.439959,0,0,OIF:SA:59:3689898,Europe/Paris,,OIF, +OIF:SP:59:3689899,1,"Berlioz",48.871614,2.439563,0,0,OIF:SA:59:3689898,Europe/Paris,,OIF, +OIF:SP:59:3689900,1,"Alexandre Dumas",48.874974,2.440905,0,0,OIF:SA:59:3689900,Europe/Paris,,OIF, +OIF:SP:59:3689901,1,"Alexandre Dumas",48.876331,2.44099,0,0,OIF:SA:59:3689900,Europe/Paris,,OIF, +OIF:SP:59:3689902,1,"Sente des Mares",48.879108,2.441404,0,0,OIF:SA:59:3689902,Europe/Paris,,OIF, +OIF:SP:59:3689903,1,"Sente des Mares",48.880223,2.441025,0,0,OIF:SA:59:3689902,Europe/Paris,,OIF, +OIF:SP:59:3689906,1,"Rue du Parc",48.885065,2.442738,0,0,OIF:SA:59:3689906,Europe/Paris,,OIF, +OIF:SP:59:3689907,1,"Rue du Parc",48.885837,2.444375,0,0,OIF:SA:59:3689906,Europe/Paris,,OIF, +OIF:SP:59:3689908,1,"Jura",48.889412,2.446113,0,0,OIF:SA:59:3689908,Europe/Paris,,OIF, +OIF:SP:59:3689909,1,"Jura",48.889403,2.4458,0,0,OIF:SA:59:3689908,Europe/Paris,,OIF, +OIF:SP:59:3689910,1,"Rue du Parc - Vaillant-Couturier",48.892505,2.444852,0,0,OIF:SA:59:3446775,Europe/Paris,,OIF, +OIF:SP:59:3689911,1,"Rue du Parc - Vaillant-Couturier",48.892595,2.444443,0,0,OIF:SA:59:3446775,Europe/Paris,,OIF, +OIF:SP:59:3689912,1,"Avenue de Bobigny",48.895112,2.443726,0,0,OIF:SA:59:3689912,Europe/Paris,,OIF, +OIF:SP:59:3689913,1,"Avenue de Bobigny",48.895086,2.443372,0,0,OIF:SA:59:3689912,Europe/Paris,,OIF, +OIF:SP:59:3689914,1,"La Folie",48.899014,2.442112,0,0,OIF:SA:59:3682084,Europe/Paris,,OIF, +OIF:SP:59:3689915,1,"Jean Jaurès",48.900901,2.442511,0,0,OIF:SA:59:3689915,Europe/Paris,,OIF, +OIF:SP:59:3689916,1,"Jean Jaurès",48.901054,2.442062,0,0,OIF:SA:59:3689915,Europe/Paris,,OIF, +OIF:SP:59:3689917,1,"Archives Départementales",48.903316,2.445761,0,0,OIF:SA:59:3689917,Europe/Paris,,OIF, +OIF:SP:59:3689918,1,"Centre Commercial de Bobigny",48.906255,2.445699,0,0,OIF:SA:59:3688573,Europe/Paris,,OIF, +OIF:SP:59:3689920,1,"Bobigny - Pablo Picasso",48.90706,2.448836,0,0,OIF:SA:59342,Europe/Paris,,OIF, +OIF:SP:59:3689922,1,"Karl Marx",48.903973,2.444835,0,0,OIF:SA:59:3689922,Europe/Paris,,OIF, +OIF:SP:59:3689923,1,"La Folie",48.898025,2.442178,0,0,OIF:SA:59:3682026,Europe/Paris,,OIF, +OIF:SP:59:3690050,1,"Gambetta",48.864722,2.398124,0,0,OIF:SA:59325,Europe/Paris,,OIF, +OIF:SP:59:3690052,1,"Cour des Noues",48.864316,2.401706,0,0,OIF:SA:59325,Europe/Paris,,OIF, +OIF:SP:59:3690053,1,"Indre",48.863146,2.40432,0,0,OIF:SA:59:3690053,Europe/Paris,,OIF, +OIF:SP:59:3690054,1,"Indre",48.863353,2.404212,0,0,OIF:SA:59:3690053,Europe/Paris,,OIF, +OIF:SP:59:3690055,1,"Pelleport - Bagnolet",48.862085,2.405967,0,0,OIF:SA:59:3690055,Europe/Paris,,OIF, +OIF:SP:59:3690056,1,"Pelleport - Bagnolet",48.862022,2.406185,0,0,OIF:SA:59:3690055,Europe/Paris,,OIF, +OIF:SP:59:3690057,1,"Église Saint-Germain de Charonne",48.859911,2.403444,0,0,OIF:SA:59:3690057,Europe/Paris,,OIF, +OIF:SP:59:3690058,1,"Albert Marquet",48.857708,2.405049,0,0,OIF:SA:59:3690058,Europe/Paris,,OIF, +OIF:SP:59:3690059,1,"Albert Marquet",48.857664,2.404123,0,0,OIF:SA:59:3690058,Europe/Paris,,OIF, +OIF:SP:59:3690060,1,"Orteaux - Maraîchers",48.856018,2.406027,0,0,OIF:SA:59:3690060,Europe/Paris,,OIF, +OIF:SP:59:3690061,1,"Hôpital de la Croix Saint-Simon",48.855531,2.409118,0,0,OIF:SA:59491,Europe/Paris,,OIF, +OIF:SP:59:3690063,1,"Porte de Montreuil",48.853166,2.411921,0,0,OIF:SA:59491,Europe/Paris,,OIF, +OIF:SP:59:3690064,1,"Schubert - Paganini",48.851602,2.411741,0,0,OIF:SA:59:3690064,Europe/Paris,,OIF, +OIF:SP:59:3690065,1,"Hilsz - Lagny",48.849193,2.412582,0,0,OIF:SA:59228,Europe/Paris,,OIF, +OIF:SP:59:3690069,1,"Square Sarah Bernhardt",48.848946,2.404683,0,0,OIF:SA:59:3690069,Europe/Paris,,OIF, +OIF:SP:59:3690070,1,"Plaine",48.849828,2.402369,0,0,OIF:SA:59:3690070,Europe/Paris,,OIF, +OIF:SP:59:3690071,1,"Buzenval",48.852642,2.401038,0,0,OIF:SA:59498,Europe/Paris,,OIF, +OIF:SP:59:3690072,1,"Vignoles",48.854152,2.400182,0,0,OIF:SA:59498,Europe/Paris,,OIF, +OIF:SP:59:3690074,1,"Place de la Réunion",48.855607,2.402077,0,0,OIF:SA:59:3690074,Europe/Paris,,OIF, +OIF:SP:59:3690075,1,"Orteaux - Vitruve",48.856874,2.402868,0,0,OIF:SA:59:3690075,Europe/Paris,,OIF, +OIF:SP:59:3690076,1,"Place des Grès",48.858526,2.405418,0,0,OIF:SA:59:3690076,Europe/Paris,,OIF, +OIF:SP:59:3690077,1,"Vitruve - Balkans",48.859747,2.407326,0,0,OIF:SA:59:3690077,Europe/Paris,,OIF, +OIF:SP:59:3690078,1,"Debrousse - Centre de Santé",48.861267,2.406456,0,0,OIF:SA:59:3690078,Europe/Paris,,OIF, +OIF:SP:59:3690079,1,"Pelleport",48.864791,2.403682,0,0,OIF:SA:59328,Europe/Paris,,OIF, +OIF:SP:59:3690080,1,"Hôpital Tenon",48.865997,2.400414,0,0,OIF:SA:59325,Europe/Paris,,OIF, +OIF:SP:59:3690329,1,"Les Parapluies",48.852273,2.449848,0,0,OIF:SA:59:3685871,Europe/Paris,,OIF, +OIF:SP:59:3690335,1,"Roublot",48.850709,2.459174,0,0,OIF:SA:59:3685900,Europe/Paris,,OIF, +OIF:SP:59:3690336,1,"Gambetta - André Laurent",48.853614,2.457206,0,0,OIF:SA:59:3690336,Europe/Paris,,OIF, +OIF:SP:59:3690337,1,"Edouard Maury",48.855105,2.45819,0,0,OIF:SA:59:3690337,Europe/Paris,,OIF, +OIF:SP:59:3690338,1,"Eugène Héricourt",48.853419,2.462803,0,0,OIF:SA:59:3690338,Europe/Paris,,OIF, +OIF:SP:59:3690341,1,"Église Saint-Germain",48.847432,2.471994,0,0,OIF:SA:59:3690341,Europe/Paris,,OIF, +OIF:SP:59:3690344,1,"Hôtel de Ville de Fontenay",48.849667,2.474669,0,0,OIF:SA:59:3685887,Europe/Paris,,OIF, +OIF:SP:59:3690345,1,"Médiathèque Aragon",48.850727,2.475407,0,0,OIF:SA:59:3690345,Europe/Paris,,OIF, +OIF:SP:59:3690346,1,"Place Michelet",48.852384,2.472198,0,0,OIF:SA:59:3690346,Europe/Paris,,OIF, +OIF:SP:59:3690347,1,"Place Michelet",48.852277,2.47202,0,0,OIF:SA:59:3690346,Europe/Paris,,OIF, +OIF:SP:59:3690349,1,"Verdun",48.854084,2.470963,0,0,OIF:SA:59:3685698,Europe/Paris,,OIF, +OIF:SP:59:3690350,1,"Émile Zola",48.856672,2.471228,0,0,OIF:SA:59:3690350,Europe/Paris,,OIF, +OIF:SP:59:3690352,1,"Victor Hugo",48.858908,2.473413,0,0,OIF:SA:59:3690352,Europe/Paris,,OIF, +OIF:SP:59:3690353,1,"Victor Hugo",48.859078,2.47389,0,0,OIF:SA:59:3690352,Europe/Paris,,OIF, +OIF:SP:59:3690354,1,"Jean Moulin - Cimetière de Vincennes",48.859259,2.480265,0,0,OIF:SA:59:3690354,Europe/Paris,,OIF, +OIF:SP:59:3690356,1,"Aimée Matterraz",48.856489,2.474347,0,0,OIF:SA:59:3690356,Europe/Paris,,OIF, +OIF:SP:59:3690359,1,"Charles Garcia - Collège Jean Macé",48.855412,2.481113,0,0,OIF:SA:59:3690359,Europe/Paris,,OIF, +OIF:SP:59:3690360,1,"Charles Garcia - Collège Jean Macé",48.856453,2.481783,0,0,OIF:SA:59:3690359,Europe/Paris,,OIF, +OIF:SP:59:3690362,1,"Jean Zay",48.857536,2.485804,0,0,OIF:SA:59:3690362,Europe/Paris,,OIF, +OIF:SP:59:3690363,1,"Pablo Picasso",48.855188,2.487473,0,0,OIF:SA:59:3690363,Europe/Paris,,OIF, +OIF:SP:59:3690364,1,"Pablo Picasso",48.855306,2.486833,0,0,OIF:SA:59:3690363,Europe/Paris,,OIF, +OIF:SP:59:3690365,1,"Val-de-Fontenay RER",48.853902,2.487796,0,0,OIF:SA:8711371,Europe/Paris,,OIF, +OIF:SP:59:3690366,1,"Val-de-Fontenay RER",48.85339,2.487753,0,0,OIF:SA:8711371,Europe/Paris,,OIF, +OIF:SP:59:3690367,1,"Val de Fontenay RER - Louison Bobet",48.852283,2.489316,0,0,OIF:SA:8711371,Europe/Paris,,OIF, +OIF:SP:59:3690369,1,"Louis Auroux",48.854208,2.494484,0,0,OIF:SA:59:3690369,Europe/Paris,,OIF, +OIF:SP:59:3690372,1,"Les Alouettes",48.858126,2.495395,0,0,OIF:SA:59:3690372,Europe/Paris,,OIF, +OIF:SP:59:3690374,1,"De Lattre de Tassigny",48.856171,2.492052,0,0,OIF:SA:59:3690374,Europe/Paris,,OIF, +OIF:SP:59:3690375,1,"Saint-Germain",48.851286,2.473938,0,0,OIF:SA:59:3690375,Europe/Paris,,OIF, +OIF:SP:59:3690376,1,"Cimetière de Fontenay-sous-Bois",48.848198,2.478042,0,0,OIF:SA:59:3690376,Europe/Paris,,OIF, +OIF:SP:59:3690377,1,"Maison du Citoyen",48.846582,2.476513,0,0,OIF:SA:59:3690377,Europe/Paris,,OIF, +OIF:SP:59:3690378,1,"Molière",48.846325,2.473366,0,0,OIF:SA:59:3690378,Europe/Paris,,OIF, +OIF:SP:59:3690380,1,"Maurice Couderchet",48.845701,2.46932,0,0,OIF:SA:59:3690380,Europe/Paris,,OIF, +OIF:SP:59:3690383,1,"Jean-Jacques Rousseau",48.84618,2.457924,0,0,OIF:SA:59:3690383,Europe/Paris,,OIF, +OIF:SP:59:3690384,1,"Georges le Tiec",48.852982,2.450599,0,0,OIF:SA:59:3690384,Europe/Paris,,OIF, +OIF:SP:59:3690395,1,"Gambetta",48.850948,2.462497,0,0,OIF:SA:59:3690395,Europe/Paris,,OIF, +OIF:SP:59:3690396,1,"Charles Bassée",48.848776,2.46798,0,0,OIF:SA:59:3690396,Europe/Paris,,OIF, +OIF:SP:59:3690409,1,"Aimée Matterraz",48.856471,2.474169,0,0,OIF:SA:59:3690356,Europe/Paris,,OIF, +OIF:SP:59:3690411,1,"Jean Macé - Martin Luther King",48.856647,2.477466,0,0,OIF:SA:59:3690411,Europe/Paris,,OIF, +OIF:SP:59:3690415,1,"Jean Zay",48.857419,2.48579,0,0,OIF:SA:59:3690362,Europe/Paris,,OIF, +OIF:SP:59:3690424,1,"La Prairie",48.856183,2.496547,0,0,OIF:SA:59:3690424,Europe/Paris,,OIF, +OIF:SP:59:3690440,1,"Bois Galon",48.859127,2.492769,0,0,OIF:SA:59:3690440,Europe/Paris,,OIF, +OIF:SP:59:3690450,1,"Émile Zola",48.856754,2.470983,0,0,OIF:SA:59:3690350,Europe/Paris,,OIF, +OIF:SP:59:3690461,1,"Mallier - Gaucher",48.845548,2.461204,0,0,OIF:SA:59:3690461,Europe/Paris,,OIF, +OIF:SP:59:3690466,1,"Les Parapluies",48.853047,2.448924,0,0,OIF:SA:59:3685871,Europe/Paris,,OIF, +OIF:SP:59:3690475,1,"Jean Macé - Martin Luther King",48.856773,2.477521,0,0,OIF:SA:59:3690411,Europe/Paris,,OIF, +OIF:SP:59:3708130,1,"Nogent-sur-Marne RER",48.835354,2.471568,0,0,OIF:SA:8775813,Europe/Paris,,OIF, +OIF:SP:59:3708133,1,"Sous-Préfecture - Jules Ferry",48.836644,2.482749,0,0,OIF:SA:59:3708133,Europe/Paris,,OIF, +OIF:SP:59:3708134,1,"Marche de Nogent-sur-Marne",48.837492,2.487489,0,0,OIF:SA:59:3708134,Europe/Paris,,OIF, +OIF:SP:59:3708135,1,"Mairie de Nogent-sur-Marne",48.838187,2.491644,0,0,OIF:SA:59:3708135,Europe/Paris,,OIF, +OIF:SP:59:3708137,1,"Les Parclairs",48.835149,2.498973,0,0,OIF:SA:59:3708137,Europe/Paris,,OIF, +OIF:SP:59:3708138,1,"Alma",48.834808,2.5045,0,0,OIF:SA:59:3708138,Europe/Paris,,OIF, +OIF:SP:59:3708139,1,"Guy Moquet",48.834422,2.510816,0,0,OIF:SA:59:3686076,Europe/Paris,,OIF, +OIF:SP:59:3708140,1,"Mail Meyer",48.834265,2.513456,0,0,OIF:SA:59:3708140,Europe/Paris,,OIF, +OIF:SP:59:3708141,1,"Maréchal Joffre - Pont de Bry",48.8341,2.516042,0,0,OIF:SA:59:3686079,Europe/Paris,,OIF, +OIF:SP:59:3715235,1,"Trois Communes",48.874082,2.52941,0,0,OIF:SA:59:3715235,Europe/Paris,,OIF, +OIF:SP:59:3715236,1,"Lycée Georges Clemenceau",48.877172,2.524966,0,0,OIF:SA:59:3715236,Europe/Paris,,OIF, +OIF:SP:59:3716665,1,"Simone Bigot",48.860544,2.536879,0,0,OIF:SA:59:3685969,Europe/Paris,,OIF, +OIF:SP:59:3716666,1,"Place des Victoires",48.864097,2.535135,0,0,OIF:SA:59:3685968,Europe/Paris,,OIF, +OIF:SP:59:3716667,1,"Roussillon",48.865897,2.533548,0,0,OIF:SA:59:3685967,Europe/Paris,,OIF, +OIF:SP:59:3716671,1,"Charles de Gaulle",48.884732,2.535105,0,0,OIF:SA:59:3616914,Europe/Paris,,OIF, +OIF:SP:59:3716873,1,"Gare Saint-Lazare",48.875001,2.32437,0,0,OIF:SA:8738400,Europe/Paris,,OIF, +OIF:SP:59:3716874,1,"Havre - Haussmann",48.873312,2.326646,0,0,OIF:SA:59442,Europe/Paris,,OIF, +OIF:SP:59:3716877,1,"Concorde",48.866966,2.321321,0,0,OIF:SA:59235,Europe/Paris,,OIF, +OIF:SP:59:3716884,1,"Pont Neuf - Quai des Orfèvres",48.856308,2.341686,0,0,OIF:SA:59664,Europe/Paris,,OIF, +OIF:SP:59:3716885,1,"Pont Saint-Michel - Quai des Orfèvres",48.854636,2.343974,0,0,OIF:SA:8754731,Europe/Paris,,OIF, +OIF:SP:59:3716889,1,"Saint-Germain - Cardinal Lemoine",48.849323,2.354991,0,0,OIF:SA:59:3716889,Europe/Paris,,OIF, +OIF:SP:59:3716890,1,"Université Paris VI",48.848703,2.358014,0,0,OIF:SA:59:3716890,Europe/Paris,,OIF, +OIF:SP:59:3716891,1,"Cuvier",48.847058,2.360437,0,0,OIF:SA:59:3716891,Europe/Paris,,OIF, +OIF:SP:59:3716892,1,"Jardin des Plantes",48.844612,2.363786,0,0,OIF:SA:8754700,Europe/Paris,,OIF, +OIF:SP:59:3716893,1,"Gare d'Austerlitz",48.843632,2.365079,0,0,OIF:SA:8754700,Europe/Paris,,OIF, +OIF:SP:59:3716894,1,"Van Gogh",48.844044,2.372146,0,0,OIF:SA:8768600,Europe/Paris,,OIF, +OIF:SP:59:3716895,1,"Gare de Lyon",48.843693,2.373303,0,0,OIF:SA:8768600,Europe/Paris,,OIF, +OIF:SP:59:3716896,1,"Ministère de l'Économie et des Finances",48.840797,2.378339,0,0,OIF:SA:59410,Europe/Paris,,OIF, +OIF:SP:59:3716897,1,"Gare de Bercy - Popb",48.837731,2.382231,0,0,OIF:SA:59410,Europe/Paris,,OIF, +OIF:SP:59:3716898,1,"Dijon - Lachambeaudie",48.835474,2.385918,0,0,OIF:SA:59:3716898,Europe/Paris,,OIF, +OIF:SP:59:3716899,1,"Baron le Roy",48.834268,2.388368,0,0,OIF:SA:59726,Europe/Paris,,OIF, +OIF:SP:59:3716900,1,"Terroirs de France",48.831851,2.388025,0,0,OIF:SA:59:3716900,Europe/Paris,,OIF, +OIF:SP:59:3716901,1,"Parc de Bercy",48.8249,2.39477,0,0,OIF:SA:59:3716901,Europe/Paris,,OIF, +OIF:SP:59:3716902,1,"Port aux Lions",48.822076,2.398455,0,0,OIF:SA:59:3716902,Europe/Paris,,OIF, +OIF:SP:59:3716903,1,"Pont Nelson Mandela",48.82069,2.402101,0,0,OIF:SA:59:3716903,Europe/Paris,,OIF, +OIF:SP:59:3716905,1,"Les Berges de Charenton",48.818952,2.408033,0,0,OIF:SA:59:3716905,Europe/Paris,,OIF, +OIF:SP:59:3716907,1,"Charenton-Écoles",48.821286,2.413113,0,0,OIF:SA:59482,Europe/Paris,,OIF, +OIF:SP:59:3716913,1,"Charenton-Écoles",48.821609,2.414216,0,0,OIF:SA:59482,Europe/Paris,,OIF, +OIF:SP:59:3716914,1,"Victor Hugo",48.818995,2.411,0,0,OIF:SA:59:3716914,Europe/Paris,,OIF, +OIF:SP:59:3716915,1,"Les Berges de Charenton",48.819411,2.407231,0,0,OIF:SA:59:3716905,Europe/Paris,,OIF, +OIF:SP:59:3716916,1,"Pont Nelson Mandela",48.820879,2.401911,0,0,OIF:SA:59:3716903,Europe/Paris,,OIF, +OIF:SP:59:3716917,1,"Port aux Lions",48.822247,2.398496,0,0,OIF:SA:59:3716902,Europe/Paris,,OIF, +OIF:SP:59:3716920,1,"Terroirs de France",48.831941,2.38861,0,0,OIF:SA:59:3716900,Europe/Paris,,OIF, +OIF:SP:59:3716921,1,"Baron le Roy",48.833909,2.389048,0,0,OIF:SA:59726,Europe/Paris,,OIF, +OIF:SP:59:3716922,1,"Lachambeaudie",48.835923,2.385851,0,0,OIF:SA:59:3716922,Europe/Paris,,OIF, +OIF:SP:59:3716923,1,"Gare de Bercy - Popb",48.838352,2.3817,0,0,OIF:SA:59410,Europe/Paris,,OIF, +OIF:SP:59:3716924,1,"Gare de Bercy",48.840095,2.381988,0,0,OIF:SA:59410,Europe/Paris,,OIF, +OIF:SP:59:3716925,1,"Ministère de l'Économie et des Finances",48.841067,2.378339,0,0,OIF:SA:59410,Europe/Paris,,OIF, +OIF:SP:59:3716926,1,"Gare de Lyon",48.843747,2.373644,0,0,OIF:SA:8768600,Europe/Paris,,OIF, +OIF:SP:59:3716928,1,"Gare d'Austerlitz",48.8449,2.364589,0,0,OIF:SA:8754700,Europe/Paris,,OIF, +OIF:SP:59:3716929,1,"Cuvier",48.846986,2.360995,0,0,OIF:SA:59:3716891,Europe/Paris,,OIF, +OIF:SP:59:3716930,1,"Université Paris VI",48.849017,2.357973,0,0,OIF:SA:59:3716890,Europe/Paris,,OIF, +OIF:SP:59:3716931,1,"Pont de la Tournelle - Cardinal Lemoine",48.849827,2.355794,0,0,OIF:SA:59:3716931,Europe/Paris,,OIF, +OIF:SP:59:3716932,1,"Pont de l'Archevêché",48.851103,2.351655,0,0,OIF:SA:59:3716932,Europe/Paris,,OIF, +OIF:SP:59:3716933,1,"Notre-Dame - Quai de Montebello",48.852587,2.348019,0,0,OIF:SA:8754731,Europe/Paris,,OIF, +OIF:SP:59:3716935,1,"Saint-Michel",48.85416,2.343661,0,0,OIF:SA:8754731,Europe/Paris,,OIF, +OIF:SP:59:3716936,1,"Pont Neuf - Quai des Grands Augustins",48.855841,2.340951,0,0,OIF:SA:59:3442419,Europe/Paris,,OIF, +OIF:SP:59:3716939,1,"Pont Royal - Quai Voltaire",48.860172,2.327997,0,0,OIF:SA:8754730,Europe/Paris,,OIF, +OIF:SP:59:3716941,1,"Assemblée Nationale",48.862544,2.32026,0,0,OIF:SA:59603,Europe/Paris,,OIF, +OIF:SP:59:3716942,1,"Concorde",48.867299,2.322642,0,0,OIF:SA:59235,Europe/Paris,,OIF, +OIF:SP:59:3716944,1,"Havre - Haussmann",48.873222,2.326905,0,0,OIF:SA:59442,Europe/Paris,,OIF, +OIF:SP:59:3716951,1,"Pont de Charenton",48.818154,2.419886,0,0,OIF:SA:59:3716951,Europe/Paris,,OIF, +OIF:SP:59:3718002,1,"Place de la Résistance",48.814032,2.557603,0,0,OIF:SA:59:3718002,Europe/Paris,,OIF, +OIF:SP:59:3718004,1,"Paul Venzac",48.811294,2.555945,0,0,OIF:SA:59:3718004,Europe/Paris,,OIF, +OIF:SP:59:3718005,1,"Paul Venzac",48.811427,2.55683,0,0,OIF:SA:59:3718004,Europe/Paris,,OIF, +OIF:SP:59:3718006,1,"Châteaudun",48.81157,2.552435,0,0,OIF:SA:59:3718006,Europe/Paris,,OIF, +OIF:SP:59:3718007,1,"Châteaudun",48.811508,2.551741,0,0,OIF:SA:59:3718006,Europe/Paris,,OIF, +OIF:SP:59:3718008,1,"Rond-Point du Château",48.810459,2.545246,0,0,OIF:SA:59:3718008,Europe/Paris,,OIF, +OIF:SP:59:3718009,1,"Rond-Point du Château",48.810333,2.545313,0,0,OIF:SA:59:3718008,Europe/Paris,,OIF, +OIF:SP:59:3718010,1,"Colombe - Hardelet",48.810347,2.542333,0,0,OIF:SA:59:3619363,Europe/Paris,,OIF, +OIF:SP:59:3718011,1,"Colombe - Hardelet",48.810222,2.542278,0,0,OIF:SA:59:3619363,Europe/Paris,,OIF, +OIF:SP:59:3718012,1,"Rue du Bois l'Abbé - Louise Collet",48.811134,2.539696,0,0,OIF:SA:59:3718012,Europe/Paris,,OIF, +OIF:SP:59:3718013,1,"Rue du Bois l'Abbé - Louise Collet",48.81089,2.540239,0,0,OIF:SA:59:3718012,Europe/Paris,,OIF, +OIF:SP:59:3718018,1,"Fort de Champigny",48.806203,2.532424,0,0,OIF:SA:59:3718018,Europe/Paris,,OIF, +OIF:SP:59:3718019,1,"Musée de la Résistance",48.807031,2.526236,0,0,OIF:SA:49:60450,Europe/Paris,,OIF, +OIF:SP:59:3718020,1,"Musée de la Résistance",48.806544,2.526724,0,0,OIF:SA:49:60450,Europe/Paris,,OIF, +OIF:SP:59:3718021,1,"La Cascade",48.808498,2.524785,0,0,OIF:SA:49:60442,Europe/Paris,,OIF, +OIF:SP:59:3718022,1,"Martelet",48.810797,2.520289,0,0,OIF:SA:49:63630,Europe/Paris,,OIF, +OIF:SP:59:3718023,1,"Martelet",48.810257,2.520954,0,0,OIF:SA:49:63630,Europe/Paris,,OIF, +OIF:SP:59:3718024,1,"Rue du Monument",48.812503,2.515655,0,0,OIF:SA:49:53450,Europe/Paris,,OIF, +OIF:SP:59:3718025,1,"Rue du Monument",48.812269,2.5156,0,0,OIF:SA:49:53450,Europe/Paris,,OIF, +OIF:SP:59:3718028,1,"Mairie de Champigny - Marche",48.813167,2.509792,0,0,OIF:SA:49:63400,Europe/Paris,,OIF, +OIF:SP:59:3718029,1,"Marche",48.810938,2.510152,0,0,OIF:SA:49:60400,Europe/Paris,,OIF, +OIF:SP:59:3718030,1,"Marche",48.810928,2.510424,0,0,OIF:SA:49:60400,Europe/Paris,,OIF, +OIF:SP:59:3718032,1,"Champigny - Saint-Maur RER",48.807082,2.510411,0,0,OIF:SA:8775817,Europe/Paris,,OIF, +OIF:SP:59:3718034,1,"Place de Verdun",48.805169,2.585324,0,0,OIF:SA:59:3718034,Europe/Paris,,OIF, +OIF:SP:59:3718035,1,"Place de Verdun",48.805325,2.584154,0,0,OIF:SA:59:3718034,Europe/Paris,,OIF, +OIF:SP:59:3718036,1,"Avenue Bertrand",48.806372,2.581642,0,0,OIF:SA:59:3718036,Europe/Paris,,OIF, +OIF:SP:59:3718037,1,"Avenue Bertrand",48.806228,2.581927,0,0,OIF:SA:59:3718036,Europe/Paris,,OIF, +OIF:SP:59:3718038,1,"Avenue Ardouin",48.806377,2.57507,0,0,OIF:SA:59:3718038,Europe/Paris,,OIF, +OIF:SP:59:3718039,1,"Avenue Ardouin",48.806215,2.574987,0,0,OIF:SA:59:3718038,Europe/Paris,,OIF, +OIF:SP:59:3718040,1,"Collège Albert Camus - ZA Ponroy",48.8048,2.572409,0,0,OIF:SA:59:3718040,Europe/Paris,,OIF, +OIF:SP:59:3718041,1,"Collège Albert Camus - ZA Ponroy",48.805392,2.572874,0,0,OIF:SA:59:3718040,Europe/Paris,,OIF, +OIF:SP:59:3718042,1,"Centre Commercial de Pincevent",48.795277,2.561156,0,0,OIF:SA:59:3718042,Europe/Paris,,OIF, +OIF:SP:59:3718043,1,"Centre Commercial de Pincevent",48.79507,2.561155,0,0,OIF:SA:59:3718042,Europe/Paris,,OIF, +OIF:SP:59:3718044,1,"Lycée Champlain",48.798577,2.555538,0,0,OIF:SA:35:1137,Europe/Paris,,OIF, +OIF:SP:59:3718045,1,"Lycée Champlain",48.798478,2.555673,0,0,OIF:SA:35:1137,Europe/Paris,,OIF, +OIF:SP:59:3718048,1,"Jean Mermoz",48.802867,2.554114,0,0,OIF:SA:59:3718048,Europe/Paris,,OIF, +OIF:SP:59:3718049,1,"Jean Mermoz",48.802867,2.553814,0,0,OIF:SA:59:3718048,Europe/Paris,,OIF, +OIF:SP:59:3718050,1,"Jean de la Fontaine",48.805545,2.559159,0,0,OIF:SA:59:3718050,Europe/Paris,,OIF, +OIF:SP:59:3718051,1,"Jean de la Fontaine",48.8055,2.558887,0,0,OIF:SA:59:3718050,Europe/Paris,,OIF, +OIF:SP:59:3718055,1,"Houdon",48.806416,2.554292,0,0,OIF:SA:59:3718055,Europe/Paris,,OIF, +OIF:SP:59:3718056,1,"Houdon",48.806911,2.553981,0,0,OIF:SA:59:3718055,Europe/Paris,,OIF, +OIF:SP:59:3718081,1,"Champigny - Saint-Maur RER",48.806919,2.510887,0,0,OIF:SA:8775817,Europe/Paris,,OIF, +OIF:SP:59:3718082,1,"Fort de Champigny",48.805518,2.533619,0,0,OIF:SA:59:3718082,Europe/Paris,,OIF, +OIF:SP:59:3718101,1,"Bois l'Abbé",48.80677,2.55726,0,0,OIF:SA:59:3718101,Europe/Paris,,OIF, +OIF:SP:59:3724087,1,"Charenton-Écoles",48.821222,2.414733,0,0,OIF:SA:59482,Europe/Paris,,OIF, +OIF:SP:59:3729698,1,"Victor Hugo",48.823203,2.307791,0,0,OIF:SA:59:3619134,Europe/Paris,,OIF, +OIF:SP:59:3729699,1,"Depinoy",48.821749,2.313032,0,0,OIF:SA:59:3729699,Europe/Paris,,OIF, +OIF:SP:59:3729702,1,"Pierre Brossolette - Augustin Dumont",48.817568,2.307481,0,0,OIF:SA:59:3729702,Europe/Paris,,OIF, +OIF:SP:59:3729703,1,"Joliot Curie",48.815445,2.300949,0,0,OIF:SA:59:3729703,Europe/Paris,,OIF, +OIF:SP:59:3729706,1,"Augustin Dumont",48.817908,2.301873,0,0,OIF:SA:59:3729706,Europe/Paris,,OIF, +OIF:SP:59:3729707,1,"Hôtel de Ville de Malakoff.",48.820559,2.301681,0,0,OIF:SA:59:3681978,Europe/Paris,,OIF, +OIF:SP:59:3730041,1,"La Croix de Berny-RER",48.762894,2.305092,0,0,OIF:SA:8775874,Europe/Paris,,OIF, +OIF:SP:59:3730042,1,"La Croix de Berny-RER",48.762768,2.304738,0,0,OIF:SA:8775874,Europe/Paris,,OIF, +OIF:SP:59:3730049,1,"Le Clos la Garenne",48.757496,2.327784,0,0,OIF:SA:59:3730049,Europe/Paris,,OIF, +OIF:SP:59:3730050,1,"Le Clos la Garenne",48.758035,2.327988,0,0,OIF:SA:59:3730049,Europe/Paris,,OIF, +OIF:SP:59:3730051,1,"Montjean",48.754521,2.326806,0,0,OIF:SA:59:3730051,Europe/Paris,,OIF, +OIF:SP:59:3730052,1,"Montjean",48.754215,2.326969,0,0,OIF:SA:59:3730051,Europe/Paris,,OIF, +OIF:SP:59:3730053,1,"Parc Médicis",48.753604,2.339556,0,0,OIF:SA:59:3730053,Europe/Paris,,OIF, +OIF:SP:59:3730054,1,"Parc Médicis",48.753865,2.339352,0,0,OIF:SA:59:3730053,Europe/Paris,,OIF, +OIF:SP:59:3730065,1,"La Belle Epine",48.756448,2.373867,0,0,OIF:SA:59:3730065,Europe/Paris,,OIF, +OIF:SP:59:3730066,1,"La Belle Epine",48.756456,2.374316,0,0,OIF:SA:59:3730065,Europe/Paris,,OIF, +OIF:SP:59:3730067,1,"Alouettes",48.752671,2.377535,0,0,OIF:SA:59:3730067,Europe/Paris,,OIF, +OIF:SP:59:3730068,1,"Alouettes",48.752869,2.377521,0,0,OIF:SA:59:3730067,Europe/Paris,,OIF, +OIF:SP:59:3730069,1,"Carrefour de la Résistance",48.75655,2.388019,0,0,OIF:SA:59:3620233,Europe/Paris,,OIF, +OIF:SP:59:3730070,1,"Carrefour de la Résistance",48.757359,2.388577,0,0,OIF:SA:59:3620233,Europe/Paris,,OIF, +OIF:SP:59:3730071,1,"Victor Basch",48.758327,2.393567,0,0,OIF:SA:59:3730071,Europe/Paris,,OIF, +OIF:SP:59:3730072,1,"Victor Basch",48.758337,2.392126,0,0,OIF:SA:59:3730071,Europe/Paris,,OIF, +OIF:SP:59:3730074,1,"Georges Halgoult",48.759961,2.397906,0,0,OIF:SA:59:3620236,Europe/Paris,,OIF, +OIF:SP:59:3730080,1,"Pasteur",48.767545,2.417059,0,0,OIF:SA:59:3730080,Europe/Paris,,OIF, +OIF:SP:59:3730081,1,"Pasteur",48.767778,2.416706,0,0,OIF:SA:59:3730080,Europe/Paris,,OIF, +OIF:SP:59:3730082,1,"Marcellin Berthelot",48.768719,2.421045,0,0,OIF:SA:59:3730082,Europe/Paris,,OIF, +OIF:SP:59:3730083,1,"Marcellin Berthelot",48.769007,2.420814,0,0,OIF:SA:59:3730082,Europe/Paris,,OIF, +OIF:SP:59:3730091,1,"La Haye aux Moines",48.786096,2.449596,0,0,OIF:SA:32:45087,Europe/Paris,,OIF, +OIF:SP:59:3730092,1,"La Haye aux Moines",48.786267,2.449161,0,0,OIF:SA:32:45087,Europe/Paris,,OIF, +OIF:SP:59:3730099,1,"Pont de Créteil",48.800696,2.472049,0,0,OIF:SA:59:3663699,Europe/Paris,,OIF, +OIF:SP:59:3730101,1,"Saint-Maur - Créteil RER",48.80644,2.471738,0,0,OIF:SA:8775815,Europe/Paris,,OIF, +OIF:SP:59:3730102,1,"Saint-Maur - Créteil RER",48.806133,2.472485,0,0,OIF:SA:8775815,Europe/Paris,,OIF, +OIF:SP:59:3730327,1,"Porte d'Orléans",48.821678,2.324356,0,0,OIF:SA:59624,Europe/Paris,,OIF, +OIF:SP:59:3730328,1,"Porte d'Orléans",48.8214,2.325554,0,0,OIF:SA:59624,Europe/Paris,,OIF, +OIF:SP:59:3730345,1,"Division Leclerc - Camille Desmoulins",48.790275,2.331356,0,0,OIF:SA:59:3730345,Europe/Paris,,OIF, +OIF:SP:59:3730347,1,"La Plaine",48.785682,2.328867,0,0,OIF:SA:59:3730347,Europe/Paris,,OIF, +OIF:SP:59:3730350,1,"Strasbourg",48.783031,2.327983,0,0,OIF:SA:59:3730350,Europe/Paris,,OIF, +OIF:SP:59:3730351,1,"Petit Robinson",48.778843,2.327998,0,0,OIF:SA:59:3730351,Europe/Paris,,OIF, +OIF:SP:59:3730352,1,"Petit Robinson",48.780056,2.328038,0,0,OIF:SA:59:3730351,Europe/Paris,,OIF, +OIF:SP:59:3730353,1,"Barbusse - Larroumès",48.775112,2.326094,0,0,OIF:SA:59:3730353,Europe/Paris,,OIF, +OIF:SP:59:3730354,1,"Barbusse - Larroumès",48.775733,2.326407,0,0,OIF:SA:59:3730353,Europe/Paris,,OIF, +OIF:SP:59:3730358,1,"Commandant l'Herminier",48.771634,2.323321,0,0,OIF:SA:59:3730358,Europe/Paris,,OIF, +OIF:SP:59:3730360,1,"Rue Geneviève",48.769386,2.32169,0,0,OIF:SA:59:3730360,Europe/Paris,,OIF, +OIF:SP:59:3730361,1,"Marc Sangnier",48.767454,2.319216,0,0,OIF:SA:59:3730361,Europe/Paris,,OIF, +OIF:SP:59:3730362,1,"Marc Sangnier",48.767355,2.319325,0,0,OIF:SA:59:3730361,Europe/Paris,,OIF, +OIF:SP:59:3730363,1,"Maison d'Arrêt",48.764029,2.318075,0,0,OIF:SA:59:3730363,Europe/Paris,,OIF, +OIF:SP:59:3730364,1,"Maison d'Arrêt",48.764047,2.318265,0,0,OIF:SA:59:3730363,Europe/Paris,,OIF, +OIF:SP:59:3730365,1,"Carrefour de la Déportation",48.761512,2.318294,0,0,OIF:SA:59:3730365,Europe/Paris,,OIF, +OIF:SP:59:3730366,1,"Carrefour de la Déportation",48.761755,2.318416,0,0,OIF:SA:59:3730365,Europe/Paris,,OIF, +OIF:SP:59:3730367,1,"Tuilerie",48.759598,2.319341,0,0,OIF:SA:59:3730367,Europe/Paris,,OIF, +OIF:SP:59:3730368,1,"Tuilerie",48.760173,2.319178,0,0,OIF:SA:59:3730367,Europe/Paris,,OIF, +OIF:SP:59:3730374,1,"Charcot - Zola",48.761028,2.328939,0,0,OIF:SA:59:3730374,Europe/Paris,,OIF, +OIF:SP:59:3730627,1,"Villejuif - Louis Aragon",48.787431,2.367483,0,0,OIF:SA:59809,Europe/Paris,,OIF, +OIF:SP:59:3730628,1,"Villejuif - Louis Aragon",48.787952,2.368204,0,0,OIF:SA:59809,Europe/Paris,,OIF, +OIF:SP:59:3730630,1,"Les Bons Enfants",48.784511,2.366244,0,0,OIF:SA:59811,Europe/Paris,,OIF, +OIF:SP:59:3730632,1,"Place Auguste Delaune",48.784152,2.362285,0,0,OIF:SA:59:3730632,Europe/Paris,,OIF, +OIF:SP:59:3730634,1,"Lamartine",48.780881,2.361291,0,0,OIF:SA:59811,Europe/Paris,,OIF, +OIF:SP:59:3730636,1,"Gustave Charpentier",48.778445,2.359563,0,0,OIF:SA:59:3730636,Europe/Paris,,OIF, +OIF:SP:59:3730638,1,"Poitou",48.776486,2.358311,0,0,OIF:SA:59:3730638,Europe/Paris,,OIF, +OIF:SP:59:3730641,1,"Rue de Bicetre",48.776199,2.35317,0,0,OIF:SA:59:3730641,Europe/Paris,,OIF, +OIF:SP:59:3730643,1,"Jules Ferry-Ferrer",48.777952,2.348846,0,0,OIF:SA:59:3730643,Europe/Paris,,OIF, +OIF:SP:59:3730644,1,"Henri Thirard-Leon Jouhaux",48.77842,2.341094,0,0,OIF:SA:59:3730644,Europe/Paris,,OIF, +OIF:SP:59:3730645,1,"Henri Thirard-Leon Jouhaux",48.778259,2.341366,0,0,OIF:SA:59:3730644,Europe/Paris,,OIF, +OIF:SP:59:3730646,1,"Tournelles",48.775895,2.339789,0,0,OIF:SA:59:3730646,Europe/Paris,,OIF, +OIF:SP:59:3730647,1,"Tournelles",48.775814,2.340128,0,0,OIF:SA:59:3730646,Europe/Paris,,OIF, +OIF:SP:59:3730653,1,"Stade de la Paix",48.763914,2.331753,0,0,OIF:SA:59:3730653,Europe/Paris,,OIF, +OIF:SP:59:3730654,1,"Stade de la Paix",48.76386,2.331889,0,0,OIF:SA:59:3730653,Europe/Paris,,OIF, +OIF:SP:59:3730655,1,"Gallieni",48.761136,2.329986,0,0,OIF:SA:59:3730655,Europe/Paris,,OIF, +OIF:SP:59:3730656,1,"Gallieni",48.761334,2.330203,0,0,OIF:SA:59:3730655,Europe/Paris,,OIF, +OIF:SP:59:3730661,1,"La Tour aux Chartiers",48.75345,2.319289,0,0,OIF:SA:59:3730661,Europe/Paris,,OIF, +OIF:SP:59:3730662,1,"La Tour aux Chartiers",48.753351,2.319397,0,0,OIF:SA:59:3730661,Europe/Paris,,OIF, +OIF:SP:59:3730663,1,"Parc des Sports",48.752074,2.31619,0,0,OIF:SA:59:3730663,Europe/Paris,,OIF, +OIF:SP:59:3730664,1,"Parc des Sports",48.751985,2.316122,0,0,OIF:SA:59:3730663,Europe/Paris,,OIF, +OIF:SP:59:3730668,1,"Antony RER",48.755882,2.301874,0,0,OIF:SA:8775875,Europe/Paris,,OIF, +OIF:SP:59:3730670,1,"Lycee-les Fleurs",48.749952,2.3093,0,0,OIF:SA:59:3730670,Europe/Paris,,OIF, +OIF:SP:59:3730673,1,"Camelias-Dauvin",48.766727,2.3342,0,0,OIF:SA:59:3730673,Europe/Paris,,OIF, +OIF:SP:59:3730677,1,"Les Bons Enfants",48.784618,2.366053,0,0,OIF:SA:59811,Europe/Paris,,OIF, +OIF:SP:59:3730678,1,"Place Auguste Delaune",48.783379,2.362108,0,0,OIF:SA:59:3730632,Europe/Paris,,OIF, +OIF:SP:59:3730679,1,"Lamartine",48.780791,2.36106,0,0,OIF:SA:59811,Europe/Paris,,OIF, +OIF:SP:59:3731627,1,"Porte de Pantin",48.888774,2.395863,0,0,OIF:SA:59551,Europe/Paris,,OIF, +OIF:SP:59:3731628,1,"Petits Ponts",48.890345,2.399422,0,0,OIF:SA:59:3731628,Europe/Paris,,OIF, +OIF:SP:59:3731644,1,"Henri Gautier",48.906407,2.423572,0,0,OIF:SA:59:3664380,Europe/Paris,,OIF, +OIF:SP:59:3731645,1,"Henri Gautier",48.906112,2.422399,0,0,OIF:SA:59:3664380,Europe/Paris,,OIF, +OIF:SP:59:3731646,1,"Lycée Alfred Costes",48.908705,2.428321,0,0,OIF:SA:59:3731646,Europe/Paris,,OIF, +OIF:SP:59:3731647,1,"Lycée Alfred Costes",48.908615,2.427611,0,0,OIF:SA:59:3731646,Europe/Paris,,OIF, +OIF:SP:59:3731648,1,"Gare - Grande Ceinture",48.910293,2.431746,0,0,OIF:SA:59:3731648,Europe/Paris,,OIF, +OIF:SP:59:3731649,1,"Gare - Grande Ceinture",48.910069,2.430668,0,0,OIF:SA:59:3731648,Europe/Paris,,OIF, +OIF:SP:59:3731652,1,"Escadrille Normandie-Niemen - Paul Vaillant-Couturier-Tramway",48.913209,2.437791,0,0,OIF:SA:59076,Europe/Paris,,OIF, +OIF:SP:59:3731653,1,"Escadrille Normandie-Niemen - Paul Vaillant-Couturier-Tramway",48.913433,2.437669,0,0,OIF:SA:59076,Europe/Paris,,OIF, +OIF:SP:59:3731654,1,"Paul Belwo",48.914491,2.440521,0,0,OIF:SA:59:3731654,Europe/Paris,,OIF, +OIF:SP:59:3731655,1,"Paul Belwo",48.914734,2.440399,0,0,OIF:SA:59:3731654,Europe/Paris,,OIF, +OIF:SP:59:3731657,1,"Charles Gide",48.916259,2.443702,0,0,OIF:SA:59:3731657,Europe/Paris,,OIF, +OIF:SP:59:3731662,1,"Auguste Blanqui",48.921039,2.45488,0,0,OIF:SA:59:3731662,Europe/Paris,,OIF, +OIF:SP:59:3731664,1,"Edouard Lievin",48.919974,2.458492,0,0,OIF:SA:59:3731664,Europe/Paris,,OIF, +OIF:SP:59:3731665,1,"Edouard Lievin",48.920019,2.458696,0,0,OIF:SA:59:3731664,Europe/Paris,,OIF, +OIF:SP:59:3731666,1,"Jules Auffret",48.919189,2.461708,0,0,OIF:SA:59:3731666,Europe/Paris,,OIF, +OIF:SP:59:3731667,1,"Jules Auffret",48.919288,2.461613,0,0,OIF:SA:59:3731666,Europe/Paris,,OIF, +OIF:SP:59:3731668,1,"Marcel Cachin",48.918016,2.466082,0,0,OIF:SA:59:3731668,Europe/Paris,,OIF, +OIF:SP:59:3731669,1,"Marcel Cachin",48.918169,2.466015,0,0,OIF:SA:59:3731668,Europe/Paris,,OIF, +OIF:SP:59:3731670,1,"Argonne - Bois de Groslay",48.91779,2.467909,0,0,OIF:SA:59:3731670,Europe/Paris,,OIF, +OIF:SP:59:3731671,1,"Argonne - Bois de Groslay",48.917933,2.467869,0,0,OIF:SA:59:3731670,Europe/Paris,,OIF, +OIF:SP:59:3731672,1,"Surcouf - Lejeune",48.920391,2.472348,0,0,OIF:SA:59:3731672,Europe/Paris,,OIF, +OIF:SP:59:3731674,1,"Jouhaux - Blum",48.917966,2.478941,0,0,OIF:SA:59:3682338,Europe/Paris,,OIF, +OIF:SP:59:3731675,1,"Jouhaux - Blum",48.918163,2.479078,0,0,OIF:SA:59:3682338,Europe/Paris,,OIF, +OIF:SP:59:3731677,1,"Surcouf - Jean Jaurès",48.920931,2.471435,0,0,OIF:SA:59:3672130,Europe/Paris,,OIF, +OIF:SP:59:3731678,1,"Chemin des Vignes",48.903419,2.416819,0,0,OIF:SA:59:3731678,Europe/Paris,,OIF, +OIF:SP:59:3731679,1,"Petits Ponts",48.890453,2.399,0,0,OIF:SA:59:3731679,Europe/Paris,,OIF, +OIF:SP:59:3731680,1,"Porte de Pantin",48.888963,2.395563,0,0,OIF:SA:59:3731680,Europe/Paris,,OIF, +OIF:SP:59:3740295,1,"Gare de l'Est",48.875593,2.358038,0,0,OIF:SA:8711300,Europe/Paris,,OIF, +OIF:SP:59:3740296,1,"La Fayette - Magenta - Gare du Nord",48.87811,2.354605,0,0,OIF:SA:8727100,Europe/Paris,,OIF, +OIF:SP:59:3740298,1,"Magenta - Maubeuge - Gare du Nord",48.881337,2.351731,0,0,OIF:SA:8727100,Europe/Paris,,OIF, +OIF:SP:59:3740299,1,"Magenta - Maubeuge - Gare du Nord",48.880879,2.351745,0,0,OIF:SA:8727100,Europe/Paris,,OIF, +OIF:SP:59:3740300,1,"Barbes - Rochechouart",48.883252,2.34996,0,0,OIF:SA:59632,Europe/Paris,,OIF, +OIF:SP:59:3740301,1,"Rochechouart - Clignancourt",48.883468,2.346117,0,0,OIF:SA:59:3740301,Europe/Paris,,OIF, +OIF:SP:59:3740302,1,"Anvers - Sacre Cœur",48.883054,2.344046,0,0,OIF:SA:59426,Europe/Paris,,OIF, +OIF:SP:59:3740303,1,"Rochechouart - Martyrs",48.8823,2.340258,0,0,OIF:SA:59:3740303,Europe/Paris,,OIF, +OIF:SP:59:3740304,1,"Pigalle",48.882587,2.33745,0,0,OIF:SA:59420,Europe/Paris,,OIF, +OIF:SP:59:3740306,1,"Place de Clichy - Caulaincourt",48.884591,2.329288,0,0,OIF:SA:59421,Europe/Paris,,OIF, +OIF:SP:59:3740307,1,"Place de Clichy",48.883638,2.326971,0,0,OIF:SA:59421,Europe/Paris,,OIF, +OIF:SP:59:3740308,1,"Turin - Batignolles",48.883144,2.324505,0,0,OIF:SA:59:3740308,Europe/Paris,,OIF, +OIF:SP:59:3740309,1,"Rome - Batignolles",48.882361,2.320594,0,0,OIF:SA:59418,Europe/Paris,,OIF, +OIF:SP:59:3740310,1,"Villiers",48.881597,2.316901,0,0,OIF:SA:59415,Europe/Paris,,OIF, +OIF:SP:59:3740311,1,"Malesherbes - Courcelles",48.880922,2.311982,0,0,OIF:SA:59:3740311,Europe/Paris,,OIF, +OIF:SP:59:3740312,1,"Monceau",48.880598,2.309366,0,0,OIF:SA:59422,Europe/Paris,,OIF, +OIF:SP:59:3740313,1,"Courcelles",48.879401,2.303835,0,0,OIF:SA:59424,Europe/Paris,,OIF, +OIF:SP:59:3740314,1,"Ternes",48.878438,2.299339,0,0,OIF:SA:59416,Europe/Paris,,OIF, +OIF:SP:59:3740315,1,"Charles de Gaulle - Etoile - Wagram",48.874644,2.295486,0,0,OIF:SA:8775800,Europe/Paris,,OIF, +OIF:SP:59:3740316,1,"Charles de Gaulle - Etoile - Kléber",48.872811,2.294165,0,0,OIF:SA:8775800,Europe/Paris,,OIF, +OIF:SP:59:3740317,1,"Charles de Gaulle - Etoile - Kléber",48.872972,2.294615,0,0,OIF:SA:8775800,Europe/Paris,,OIF, +OIF:SP:59:3740321,1,"Trocadéro",48.864126,2.287825,0,0,OIF:SA:59617,Europe/Paris,,OIF, +OIF:SP:59:3740322,1,"Trocadéro",48.863731,2.287948,0,0,OIF:SA:59617,Europe/Paris,,OIF, +OIF:SP:59:3740323,1,"Trocadéro.",48.863946,2.287675,0,0,OIF:SA:59617,Europe/Paris,,OIF, +OIF:SP:59:3740325,1,"Charles de Gaulle - Etoile - Wagram",48.874788,2.295962,0,0,OIF:SA:8775800,Europe/Paris,,OIF, +OIF:SP:59:3740326,1,"Ternes",48.878205,2.299257,0,0,OIF:SA:59416,Europe/Paris,,OIF, +OIF:SP:59:3740327,1,"Courcelles",48.87915,2.30359,0,0,OIF:SA:59424,Europe/Paris,,OIF, +OIF:SP:59:3740328,1,"Monceau",48.880337,2.309053,0,0,OIF:SA:59422,Europe/Paris,,OIF, +OIF:SP:59:3740329,1,"Malesherbes - Courcelles",48.880752,2.313045,0,0,OIF:SA:59:3740311,Europe/Paris,,OIF, +OIF:SP:59:3740331,1,"Rome - Batignolles",48.881966,2.320853,0,0,OIF:SA:59418,Europe/Paris,,OIF, +OIF:SP:59:3740332,1,"Turin - Batignolles",48.882712,2.324682,0,0,OIF:SA:59:3740308,Europe/Paris,,OIF, +OIF:SP:59:3740333,1,"Place de Clichy",48.883432,2.327884,0,0,OIF:SA:59421,Europe/Paris,,OIF, +OIF:SP:59:3740334,1,"Blanche",48.883836,2.331577,0,0,OIF:SA:59428,Europe/Paris,,OIF, +OIF:SP:59:3740335,1,"Pigalle",48.882219,2.337232,0,0,OIF:SA:59420,Europe/Paris,,OIF, +OIF:SP:59:3740336,1,"Rochechouart - Martyrs",48.881895,2.340285,0,0,OIF:SA:59:3740303,Europe/Paris,,OIF, +OIF:SP:59:3740339,1,"Barbes - Rochechouart",48.883467,2.348952,0,0,OIF:SA:59632,Europe/Paris,,OIF, +OIF:SP:59:3740501,1,"Gare de l'Est",48.875225,2.357479,0,0,OIF:SA:8711300,Europe/Paris,,OIF, +OIF:SP:59:3740503,1,"Faubourg Saint-Denis",48.874524,2.354877,0,0,OIF:SA:59:3740503,Europe/Paris,,OIF, +OIF:SP:59:3740504,1,"Hauteville",48.875477,2.35034,0,0,OIF:SA:59:3740504,Europe/Paris,,OIF, +OIF:SP:59:3740505,1,"Square Montholon",48.876206,2.347383,0,0,OIF:SA:59304,Europe/Paris,,OIF, +OIF:SP:59:3740507,1,"Cadet",48.876601,2.343582,0,0,OIF:SA:59304,Europe/Paris,,OIF, +OIF:SP:59:3740508,1,"Cadet",48.875622,2.342478,0,0,OIF:SA:59304,Europe/Paris,,OIF, +OIF:SP:59:3740509,1,"Carrefour de Châteaudun",48.876035,2.339331,0,0,OIF:SA:59515,Europe/Paris,,OIF, +OIF:SP:59:3740510,1,"Carrefour de Châteaudun",48.875829,2.339222,0,0,OIF:SA:59515,Europe/Paris,,OIF, +OIF:SP:59:3740511,1,"Saint-Georges - Châteaudun",48.876251,2.335979,0,0,OIF:SA:59515,Europe/Paris,,OIF, +OIF:SP:59:3740512,1,"Saint-Georges - Châteaudun",48.876009,2.33681,0,0,OIF:SA:59515,Europe/Paris,,OIF, +OIF:SP:59:3740513,1,"Trinité",48.876359,2.33181,0,0,OIF:SA:59600,Europe/Paris,,OIF, +OIF:SP:59:3740514,1,"Trinité",48.876242,2.332382,0,0,OIF:SA:59600,Europe/Paris,,OIF, +OIF:SP:59:3740515,1,"Gare Saint-Lazare - Budapest",48.875721,2.327204,0,0,OIF:SA:8738400,Europe/Paris,,OIF, +OIF:SP:59:3740516,1,"Rome - Haussmann",48.873959,2.326591,0,0,OIF:SA:8728189,Europe/Paris,,OIF, +OIF:SP:59:3740517,1,"Pasquier - Anjou",48.874327,2.323648,0,0,OIF:SA:8738400,Europe/Paris,,OIF, +OIF:SP:59:3740518,1,"Saint-Augustin",48.874624,2.3214,0,0,OIF:SA:59489,Europe/Paris,,OIF, +OIF:SP:59:3740519,1,"Saint-Augustin",48.874866,2.320814,0,0,OIF:SA:59489,Europe/Paris,,OIF, +OIF:SP:59:3740521,1,"Saint-Philippe-du-Roule",48.873238,2.311714,0,0,OIF:SA:59490,Europe/Paris,,OIF, +OIF:SP:59:3740522,1,"La Boétie - Champs-Élysées",48.870747,2.305652,0,0,OIF:SA:59:3740522,Europe/Paris,,OIF, +OIF:SP:59:3740523,1,"La Boétie - Champs-Élysées",48.87028,2.305612,0,0,OIF:SA:59:3740522,Europe/Paris,,OIF, +OIF:SP:59:3740524,1,"Pierre Charron - François 1er",48.868742,2.301553,0,0,OIF:SA:59:3740524,Europe/Paris,,OIF, +OIF:SP:59:3740525,1,"Pierre Charron - François 1er",48.86876,2.302098,0,0,OIF:SA:59:3740524,Europe/Paris,,OIF, +OIF:SP:59:3740526,1,"Marceau - Pierre 1er de Serbie - Place de Beyrouth",48.867716,2.299537,0,0,OIF:SA:59:3740526,Europe/Paris,,OIF, +OIF:SP:59:3740527,1,"Iéna",48.865279,2.294757,0,0,OIF:SA:59619,Europe/Paris,,OIF, +OIF:SP:59:3740528,1,"Iéna",48.86519,2.29503,0,0,OIF:SA:59619,Europe/Paris,,OIF, +OIF:SP:59:3740529,1,"Albert de Mun",48.864073,2.290536,0,0,OIF:SA:59:3740529,Europe/Paris,,OIF, +OIF:SP:59:3740531,1,"Albert de Mun",48.863795,2.291026,0,0,OIF:SA:59:3740529,Europe/Paris,,OIF, +OIF:SP:59:3740532,1,"Trocadéro",48.863425,2.288289,0,0,OIF:SA:59617,Europe/Paris,,OIF, +OIF:SP:59:3740533,1,"Trocadéro",48.863093,2.288493,0,0,OIF:SA:59617,Europe/Paris,,OIF, +OIF:SP:59:3740535,1,"Scheffer",48.860216,2.285867,0,0,OIF:SA:59:3740535,Europe/Paris,,OIF, +OIF:SP:59:3740538,1,"La Muette - Boulainvilliers",48.858287,2.273842,0,0,OIF:SA:59207,Europe/Paris,,OIF, +OIF:SP:59:3740539,1,"La Muette - Boulainvilliers",48.858098,2.273747,0,0,OIF:SA:59207,Europe/Paris,,OIF, +OIF:SP:59:3740540,1,"Ranelagh",48.858141,2.269429,0,0,OIF:SA:59493,Europe/Paris,,OIF, +OIF:SP:59:3740541,1,"Porte de Passy",48.857329,2.26514,0,0,OIF:SA:59:3740541,Europe/Paris,,OIF, +OIF:SP:59:3740542,1,"Porte de Passy",48.857653,2.26503,0,0,OIF:SA:59:3740541,Europe/Paris,,OIF, +OIF:SP:59:3740543,1,"Raffet",48.853472,2.261999,0,0,OIF:SA:59:3740543,Europe/Paris,,OIF, +OIF:SP:59:3740544,1,"Raffet",48.852834,2.261918,0,0,OIF:SA:59:3740543,Europe/Paris,,OIF, +OIF:SP:59:3740545,1,"Alfred Capus",48.85028,2.259988,0,0,OIF:SA:59:3740545,Europe/Paris,,OIF, +OIF:SP:59:3740546,1,"Alfred Capus",48.850325,2.260315,0,0,OIF:SA:59:3740545,Europe/Paris,,OIF, +OIF:SP:59:3740547,1,"Porte d'Auteuil",48.847492,2.257759,0,0,OIF:SA:59668,Europe/Paris,,OIF, +OIF:SP:59:3740548,1,"Porte d'Auteuil",48.847394,2.257895,0,0,OIF:SA:59668,Europe/Paris,,OIF, +OIF:SP:59:3740549,1,"Gare d'Auteuil",48.848293,2.259446,0,0,OIF:SA:59668,Europe/Paris,,OIF, +OIF:SP:59:3740550,1,"Louis Boilly",48.859002,2.267548,0,0,OIF:SA:59:3740550,Europe/Paris,,OIF, +OIF:SP:59:3740551,1,"Passy - Boulainvilliers",48.858045,2.27549,0,0,OIF:SA:59207,Europe/Paris,,OIF, +OIF:SP:59:3740552,1,"Place de Passy",48.857857,2.277751,0,0,OIF:SA:59:3740552,Europe/Paris,,OIF, +OIF:SP:59:3740553,1,"Jean Bologne",48.857742,2.280285,0,0,OIF:SA:59:3740553,Europe/Paris,,OIF, +OIF:SP:59:3740554,1,"Passy - la Tour",48.858283,2.283608,0,0,OIF:SA:59451,Europe/Paris,,OIF, +OIF:SP:59:3740555,1,"Marceau - Pierre 1er de Serbie - Place de Beyrouth",48.867024,2.298639,0,0,OIF:SA:59:3740526,Europe/Paris,,OIF, +OIF:SP:59:3740556,1,"Rond-Point des Champs-Élysées - Matignon",48.869697,2.311743,0,0,OIF:SA:59232,Europe/Paris,,OIF, +OIF:SP:59:3740557,1,"Matignon - Saint-Honoré",48.873113,2.314738,0,0,OIF:SA:59494,Europe/Paris,,OIF, +OIF:SP:59:3740558,1,"Haussmann - Miromesnil",48.874479,2.314547,0,0,OIF:SA:59494,Europe/Paris,,OIF, +OIF:SP:59:3740559,1,"Gare Saint-Lazare",48.875325,2.325501,0,0,OIF:SA:8738400,Europe/Paris,,OIF, +OIF:SP:59:3740974,1,"Porte de la Chapelle",48.898124,2.359519,0,0,OIF:SA:59513,Europe/Paris,,OIF, +OIF:SP:59:3740975,1,"Porte de la Chapelle",48.89816,2.358961,0,0,OIF:SA:59513,Europe/Paris,,OIF, +OIF:SP:59:3740988,1,"Léo Lagrange",48.962481,2.383909,0,0,OIF:SA:59:3740988,Europe/Paris,,OIF, +OIF:SP:59:3740991,1,"Pierre Semard",48.967241,2.391953,0,0,OIF:SA:59:3740991,Europe/Paris,,OIF, +OIF:SP:59:3740992,1,"Pierre Semard",48.967322,2.391803,0,0,OIF:SA:59:3740991,Europe/Paris,,OIF, +OIF:SP:59:3740993,1,"Bellevue",48.969163,2.393361,0,0,OIF:SA:59:3740993,Europe/Paris,,OIF, +OIF:SP:59:3740994,1,"Bellevue",48.968957,2.393047,0,0,OIF:SA:59:3740993,Europe/Paris,,OIF, +OIF:SP:59:3740995,1,"Plein Midi",48.971516,2.395684,0,0,OIF:SA:59:3740995,Europe/Paris,,OIF, +OIF:SP:59:3740996,1,"Plein Midi",48.971526,2.395397,0,0,OIF:SA:59:3740995,Europe/Paris,,OIF, +OIF:SP:59:3741051,1,"Gare du Nord",48.882064,2.357918,0,0,OIF:SA:8727100,Europe/Paris,,OIF, +OIF:SP:59:3741052,1,"Gare du Nord",48.880977,2.3574,0,0,OIF:SA:8727100,Europe/Paris,,OIF, +OIF:SP:59:3741053,1,"Gare du Nord.",48.880716,2.357958,0,0,OIF:SA:8728187,Europe/Paris,,OIF, +OIF:SP:59:3741054,1,"Cail - Demarquay",48.881803,2.358586,0,0,OIF:SA:8728187,Europe/Paris,,OIF, +OIF:SP:59:3741055,1,"Cail - Demarquay",48.882693,2.358818,0,0,OIF:SA:8728187,Europe/Paris,,OIF, +OIF:SP:59:3741057,1,"Saint-Bruno",48.886216,2.356666,0,0,OIF:SA:59:3741057,Europe/Paris,,OIF, +OIF:SP:59:3741058,1,"Saint-Bruno",48.886145,2.356489,0,0,OIF:SA:59:3741057,Europe/Paris,,OIF, +OIF:SP:59:3741059,1,"Doudeauville",48.888859,2.356067,0,0,OIF:SA:59:3741059,Europe/Paris,,OIF, +OIF:SP:59:3741060,1,"Doudeauville",48.888203,2.356067,0,0,OIF:SA:59:3741059,Europe/Paris,,OIF, +OIF:SP:59:3741061,1,"Pont Marcadet",48.889838,2.355945,0,0,OIF:SA:59:3741061,Europe/Paris,,OIF, +OIF:SP:59:3741063,1,"Marcadet - Poissonniers",48.891511,2.35183,0,0,OIF:SA:59252,Europe/Paris,,OIF, +OIF:SP:59:3741064,1,"Marcadet - Poissonniers",48.891582,2.35168,0,0,OIF:SA:59252,Europe/Paris,,OIF, +OIF:SP:59:3741065,1,"Championnet",48.894836,2.352962,0,0,OIF:SA:59:3741065,Europe/Paris,,OIF, +OIF:SP:59:3741066,1,"Championnet",48.894737,2.352812,0,0,OIF:SA:59:3741065,Europe/Paris,,OIF, +OIF:SP:59:3741067,1,"Porte des Poissonniers",48.898269,2.352881,0,0,OIF:SA:59:3741067,Europe/Paris,,OIF, +OIF:SP:59:3741068,1,"Porte des Poissonniers",48.897667,2.352445,0,0,OIF:SA:59:3741067,Europe/Paris,,OIF, +OIF:SP:59:3741069,1,"Porte de la Chapelle",48.898358,2.357025,0,0,OIF:SA:59513,Europe/Paris,,OIF, +OIF:SP:59:3741070,1,"Porte de la Chapelle",48.898816,2.357679,0,0,OIF:SA:59513,Europe/Paris,,OIF, +OIF:SP:59:3741071,1,"Pont Hainguerlot",48.902833,2.359181,0,0,OIF:SA:59:3741071,Europe/Paris,,OIF, +OIF:SP:59:3741072,1,"Pont Hainguerlot",48.901962,2.358281,0,0,OIF:SA:59:3741071,Europe/Paris,,OIF, +OIF:SP:59:3741073,1,"Proudhon",48.905961,2.358909,0,0,OIF:SA:59:3741073,Europe/Paris,,OIF, +OIF:SP:59:3741074,1,"Proudhon",48.905916,2.358023,0,0,OIF:SA:59:3741073,Europe/Paris,,OIF, +OIF:SP:59:3741075,1,"Église de la Plaine",48.908828,2.358679,0,0,OIF:SA:59:3741075,Europe/Paris,,OIF, +OIF:SP:59:3741076,1,"Église de la Plaine",48.908163,2.357847,0,0,OIF:SA:59:3741075,Europe/Paris,,OIF, +OIF:SP:59:3741077,1,"Encyclopédie - Métallurgie",48.910293,2.358557,0,0,OIF:SA:59:3741077,Europe/Paris,,OIF, +OIF:SP:59:3741078,1,"Encyclopédie - Métallurgie",48.909321,2.361569,0,0,OIF:SA:59:3741077,Europe/Paris,,OIF, +OIF:SP:59:3741079,1,"Maraîchers",48.914012,2.363085,0,0,OIF:SA:59:3741079,Europe/Paris,,OIF, +OIF:SP:59:3741080,1,"Maraîchers",48.913985,2.362908,0,0,OIF:SA:59:3741079,Europe/Paris,,OIF, +OIF:SP:59:3741081,1,"La Plaine - Stade de France RER",48.918362,2.361983,0,0,OIF:SA:8716479,Europe/Paris,,OIF, +OIF:SP:59:3741083,1,"Bergeries - Franc Moisin",48.922854,2.369799,0,0,OIF:SA:59:3741083,Europe/Paris,,OIF, +OIF:SP:59:3741084,1,"Collège Frederico Garcia Lorca",48.924147,2.372828,0,0,OIF:SA:59:3741084,Europe/Paris,,OIF, +OIF:SP:59:3741085,1,"Collège Frederico Garcia Lorca",48.924938,2.374151,0,0,OIF:SA:59:3741084,Europe/Paris,,OIF, +OIF:SP:59:3741090,1,"6 Routes-Tramway",48.928079,2.384846,0,0,OIF:SA:59090,Europe/Paris,,OIF, +OIF:SP:59:3741094,1,"Bergeries - Franc Moisin",48.923106,2.369718,0,0,OIF:SA:59:3741094,Europe/Paris,,OIF, +OIF:SP:59:3743479,1,"Jean-Baptiste Clément",48.817013,2.497692,0,0,OIF:SA:59:3619417,Europe/Paris,,OIF, +OIF:SP:59:3743492,1,"Groupe Scolaire Rousseau",48.800595,2.54805,0,0,OIF:SA:59:3743492,Europe/Paris,,OIF, +OIF:SP:59:3743494,1,"Rue des Fusilles de Chateaubriant",48.799605,2.543569,0,0,OIF:SA:49:51490,Europe/Paris,,OIF, +OIF:SP:59:3743496,1,"Avenue Georges",48.801921,2.539755,0,0,OIF:SA:35:1101,Europe/Paris,,OIF, +OIF:SP:59:3743518,1,"Collège Boileau",48.805346,2.554845,0,0,OIF:SA:59:3743518,Europe/Paris,,OIF, +OIF:SP:59:3747809,1,"Gare Saint-Lazare",48.874669,2.32467,0,0,OIF:SA:8738400,Europe/Paris,,OIF, +OIF:SP:59:3747811,1,"Havre - Haussmann",48.873384,2.327504,0,0,OIF:SA:59442,Europe/Paris,,OIF, +OIF:SP:59:3747812,1,"Havre - Haussmann",48.873519,2.327695,0,0,OIF:SA:59442,Europe/Paris,,OIF, +OIF:SP:59:3747813,1,"Auber",48.872036,2.329916,0,0,OIF:SA:8775859,Europe/Paris,,OIF, +OIF:SP:59:3747814,1,"Auber",48.872198,2.330052,0,0,OIF:SA:8775859,Europe/Paris,,OIF, +OIF:SP:59:3747815,1,"Opéra",48.871236,2.33136,0,0,OIF:SA:59209,Europe/Paris,,OIF, +OIF:SP:59:3747816,1,"Opéra",48.87129,2.331728,0,0,OIF:SA:59209,Europe/Paris,,OIF, +OIF:SP:59:3747817,1,"Opéra - 4 Septembre",48.870104,2.333159,0,0,OIF:SA:59209,Europe/Paris,,OIF, +OIF:SP:59:3747818,1,"Opéra - 4 Septembre",48.86978,2.332846,0,0,OIF:SA:59209,Europe/Paris,,OIF, +OIF:SP:59:3747821,1,"Mairie du II",48.866401,2.340025,0,0,OIF:SA:59:3747821,Europe/Paris,,OIF, +OIF:SP:59:3747822,1,"Victoires",48.86552,2.341741,0,0,OIF:SA:59:3747822,Europe/Paris,,OIF, +OIF:SP:59:3747823,1,"Etienne Marcel - Montmartre",48.865035,2.34373,0,0,OIF:SA:59:3747823,Europe/Paris,,OIF, +OIF:SP:59:3747824,1,"Turbigo - Etienne Marcel",48.863965,2.348198,0,0,OIF:SA:59261,Europe/Paris,,OIF, +OIF:SP:59:3747825,1,"Sébastopol - Etienne Marcel",48.863093,2.351794,0,0,OIF:SA:59:3747825,Europe/Paris,,OIF, +OIF:SP:59:3747826,1,"Grenier Saint-Lazare - Quartier de l'Horloge",48.862868,2.352775,0,0,OIF:SA:59403,Europe/Paris,,OIF, +OIF:SP:59:3747827,1,"Grenier Saint-Lazare - Quartier de l'Horloge",48.86294,2.353293,0,0,OIF:SA:59403,Europe/Paris,,OIF, +OIF:SP:59:3747828,1,"Centre Georges Pompidou",48.860998,2.353919,0,0,OIF:SA:59403,Europe/Paris,,OIF, +OIF:SP:59:3747829,1,"Archives - Rambuteau",48.860108,2.356629,0,0,OIF:SA:59:3747829,Europe/Paris,,OIF, +OIF:SP:59:3747830,1,"Rue Vieille du Temple",48.858796,2.358494,0,0,OIF:SA:59:3747830,Europe/Paris,,OIF, +OIF:SP:59:3747831,1,"Payenne",48.857105,2.36198,0,0,OIF:SA:59:3747831,Europe/Paris,,OIF, +OIF:SP:59:3747832,1,"Place des Vosges",48.856305,2.364691,0,0,OIF:SA:59:3687435,Europe/Paris,,OIF, +OIF:SP:59:3747834,1,"Bastille - Beaumarchais",48.853859,2.368761,0,0,OIF:SA:59238,Europe/Paris,,OIF, +OIF:SP:59:3747836,1,"Lyon - Ledru Rollin",48.848709,2.370951,0,0,OIF:SA:59:3747836,Europe/Paris,,OIF, +OIF:SP:59:3747837,1,"Gare de Lyon - Diderot",48.845634,2.372869,0,0,OIF:SA:8768600,Europe/Paris,,OIF, +OIF:SP:59:3747838,1,"Daumesnil - Diderot",48.846037,2.377771,0,0,OIF:SA:59:3747838,Europe/Paris,,OIF, +OIF:SP:59:3747840,1,"Rambouillet",48.844463,2.380984,0,0,OIF:SA:59:3747840,Europe/Paris,,OIF, +OIF:SP:59:3747841,1,"Rambouillet",48.844499,2.381406,0,0,OIF:SA:59:3747840,Europe/Paris,,OIF, +OIF:SP:59:3747842,1,"Charles Bossut",48.843051,2.383924,0,0,OIF:SA:59:3747842,Europe/Paris,,OIF, +OIF:SP:59:3747843,1,"Charles Bossut",48.843321,2.383774,0,0,OIF:SA:59:3747842,Europe/Paris,,OIF, +OIF:SP:59:3747844,1,"Mairie du 12ème",48.841126,2.388538,0,0,OIF:SA:59:3747844,Europe/Paris,,OIF, +OIF:SP:59:3747845,1,"Mairie du 12ème",48.841666,2.387231,0,0,OIF:SA:59:3747844,Europe/Paris,,OIF, +OIF:SP:59:3747846,1,"Dubrunfaut",48.840586,2.390838,0,0,OIF:SA:59:3747846,Europe/Paris,,OIF, +OIF:SP:59:3747847,1,"Dubrunfaut",48.840765,2.390907,0,0,OIF:SA:59:3747846,Europe/Paris,,OIF, +OIF:SP:59:3747848,1,"Daumesnil - Félix Eboue",48.839793,2.394528,0,0,OIF:SA:59561,Europe/Paris,,OIF, +OIF:SP:59:3747849,1,"Daumesnil - Félix Eboue",48.839964,2.394637,0,0,OIF:SA:59561,Europe/Paris,,OIF, +OIF:SP:59:3747850,1,"Docteur Goujon - Reuilly",48.839495,2.396624,0,0,OIF:SA:59561,Europe/Paris,,OIF, +OIF:SP:59:3747851,1,"Docteur Goujon - Reuilly",48.839711,2.396611,0,0,OIF:SA:59561,Europe/Paris,,OIF, +OIF:SP:59:3747852,1,"Picpus - Reuilly",48.839494,2.399524,0,0,OIF:SA:59460,Europe/Paris,,OIF, +OIF:SP:59:3747853,1,"Picpus - Reuilly",48.839782,2.399252,0,0,OIF:SA:59460,Europe/Paris,,OIF, +OIF:SP:59:3747854,1,"Hôpital Rothschild",48.84291,2.39739,0,0,OIF:SA:59460,Europe/Paris,,OIF, +OIF:SP:59:3747855,1,"Hôpital Rothschild",48.842524,2.397553,0,0,OIF:SA:59460,Europe/Paris,,OIF, +OIF:SP:59:3747856,1,"Fabre d'Églantine",48.845436,2.395977,0,0,OIF:SA:59:3747856,Europe/Paris,,OIF, +OIF:SP:59:3747857,1,"Fabre d'Églantine",48.84567,2.396386,0,0,OIF:SA:59:3747856,Europe/Paris,,OIF, +OIF:SP:59:3747859,1,"Picpus",48.845254,2.401301,0,0,OIF:SA:59453,Europe/Paris,,OIF, +OIF:SP:59:3747860,1,"Docteur Netter",48.844541,2.406026,0,0,OIF:SA:59228,Europe/Paris,,OIF, +OIF:SP:59:3747861,1,"Docteur Netter",48.844738,2.406884,0,0,OIF:SA:59228,Europe/Paris,,OIF, +OIF:SP:59:3747864,1,"Jules Lemaître - Maurice Ravel",48.842111,2.41151,0,0,OIF:SA:59734,Europe/Paris,,OIF, +OIF:SP:59:3747865,1,"Porte de Montempoivre",48.841032,2.412039,0,0,OIF:SA:59:3747865,Europe/Paris,,OIF, +OIF:SP:59:3747868,1,"Bastille",48.852394,2.369564,0,0,OIF:SA:59238,Europe/Paris,,OIF, +OIF:SP:59:3747869,1,"Bastille - Beaumarchais",48.853859,2.369088,0,0,OIF:SA:59238,Europe/Paris,,OIF, +OIF:SP:59:3747870,1,"Pasteur - Wagner",48.856025,2.368586,0,0,OIF:SA:59:3687077,Europe/Paris,,OIF, +OIF:SP:59:3747871,1,"Tournelles - Saint-Gilles",48.857724,2.367538,0,0,OIF:SA:59473,Europe/Paris,,OIF, +OIF:SP:59:3747872,1,"Turenne - Saint-Gilles",48.858273,2.364201,0,0,OIF:SA:59:3747872,Europe/Paris,,OIF, +OIF:SP:59:3747873,1,"Rue Vieille du Temple",48.860197,2.360388,0,0,OIF:SA:59:3747830,Europe/Paris,,OIF, +OIF:SP:59:3747874,1,"Archives - Haudriettes",48.861034,2.358686,0,0,OIF:SA:59:3747874,Europe/Paris,,OIF, +OIF:SP:59:3747875,1,"Sébastopol - Etienne Marcel",48.863596,2.350527,0,0,OIF:SA:59261,Europe/Paris,,OIF, +OIF:SP:59:3747876,1,"Turbigo - Etienne Marcel",48.864073,2.348525,0,0,OIF:SA:59261,Europe/Paris,,OIF, +OIF:SP:59:3747877,1,"Etienne Marcel - Montmartre",48.864765,2.345733,0,0,OIF:SA:8775860,Europe/Paris,,OIF, +OIF:SP:59:3747878,1,"Louvre - Etienne Marcel",48.865313,2.343376,0,0,OIF:SA:59:3747878,Europe/Paris,,OIF, +OIF:SP:59:3747879,1,"Victoires",48.865961,2.340543,0,0,OIF:SA:59:3747822,Europe/Paris,,OIF, +OIF:SP:59:3747880,1,"Bibliothèque Nationale",48.866572,2.3379,0,0,OIF:SA:59:3747880,Europe/Paris,,OIF, +OIF:SP:59:3747905,1,"Gare du Nord",48.88068,2.357277,0,0,OIF:SA:8727100,Europe/Paris,,OIF, +OIF:SP:59:3747908,1,"Gare de l'Est",48.87624,2.357016,0,0,OIF:SA:8711300,Europe/Paris,,OIF, +OIF:SP:59:3747909,1,"Gare de l'Est",48.876249,2.358352,0,0,OIF:SA:8711300,Europe/Paris,,OIF, +OIF:SP:59:3747911,1,"Verdun",48.876384,2.360573,0,0,OIF:SA:8711300,Europe/Paris,,OIF, +OIF:SP:59:3747914,1,"Canal Saint-Martin",48.876984,2.366309,0,0,OIF:SA:59296,Europe/Paris,,OIF, +OIF:SP:59:3747915,1,"Canal Saint-Martin",48.880328,2.366666,0,0,OIF:SA:59296,Europe/Paris,,OIF, +OIF:SP:59:3747916,1,"Grange aux Belles - Juliette Dodu",48.875492,2.368965,0,0,OIF:SA:59:3747916,Europe/Paris,,OIF, +OIF:SP:59:3747917,1,"Hôpital Saint-Louis",48.873155,2.369931,0,0,OIF:SA:59:3747917,Europe/Paris,,OIF, +OIF:SP:59:3747918,1,"Hôpital Saint-Louis",48.872463,2.369917,0,0,OIF:SA:59:3747917,Europe/Paris,,OIF, +OIF:SP:59:3747919,1,"Alibert",48.871402,2.369862,0,0,OIF:SA:59:3747919,Europe/Paris,,OIF, +OIF:SP:59:3747920,1,"Goncourt",48.869604,2.371196,0,0,OIF:SA:59640,Europe/Paris,,OIF, +OIF:SP:59:3747921,1,"Fontaine au Roi",48.867888,2.372462,0,0,OIF:SA:59:3747921,Europe/Paris,,OIF, +OIF:SP:59:3747922,1,"Fontaine au Roi",48.86751,2.373075,0,0,OIF:SA:59:3747921,Europe/Paris,,OIF, +OIF:SP:59:3747923,1,"Parmentier - République",48.864642,2.374871,0,0,OIF:SA:59434,Europe/Paris,,OIF, +OIF:SP:59:3747924,1,"Parmentier - République",48.864732,2.375116,0,0,OIF:SA:59434,Europe/Paris,,OIF, +OIF:SP:59:3747925,1,"Saint-Ambroise",48.862125,2.376694,0,0,OIF:SA:59488,Europe/Paris,,OIF, +OIF:SP:59:3747926,1,"Saint-Ambroise",48.862251,2.376953,0,0,OIF:SA:59488,Europe/Paris,,OIF, +OIF:SP:59:3747927,1,"Chemin Vert",48.860048,2.378668,0,0,OIF:SA:59473,Europe/Paris,,OIF, +OIF:SP:59:3747928,1,"Chemin Vert",48.860471,2.378654,0,0,OIF:SA:59473,Europe/Paris,,OIF, +OIF:SP:59:3747929,1,"Voltaire - Léon Blum",48.858547,2.379756,0,0,OIF:SA:59616,Europe/Paris,,OIF, +OIF:SP:59:3747930,1,"Voltaire - Léon Blum",48.858286,2.380546,0,0,OIF:SA:59616,Europe/Paris,,OIF, +OIF:SP:59:3747931,1,"Gymnase Japy",48.856012,2.381429,0,0,OIF:SA:59:3747931,Europe/Paris,,OIF, +OIF:SP:59:3747932,1,"Charonne - Chanzy",48.853603,2.382449,0,0,OIF:SA:59:3747932,Europe/Paris,,OIF, +OIF:SP:59:3747933,1,"Charonne - Chanzy",48.853639,2.382776,0,0,OIF:SA:59:3747932,Europe/Paris,,OIF, +OIF:SP:59:3747934,1,"Faidherbe - Chaligny",48.849585,2.384951,0,0,OIF:SA:59471,Europe/Paris,,OIF, +OIF:SP:59:3747935,1,"Faidherbe - Chaligny",48.849737,2.385047,0,0,OIF:SA:59471,Europe/Paris,,OIF, +OIF:SP:59:3747936,1,"Reuilly - Diderot",48.846762,2.387168,0,0,OIF:SA:59227,Europe/Paris,,OIF, +OIF:SP:59:3747937,1,"Reuilly - Diderot",48.846905,2.387223,0,0,OIF:SA:59227,Europe/Paris,,OIF, +OIF:SP:59:3747938,1,"Montgallet",48.844181,2.390229,0,0,OIF:SA:59467,Europe/Paris,,OIF, +OIF:SP:59:3747939,1,"Montgallet",48.844172,2.390447,0,0,OIF:SA:59467,Europe/Paris,,OIF, +OIF:SP:59:3747940,1,"Rue de la Gare de Reuilly",48.841438,2.393549,0,0,OIF:SA:59:3747940,Europe/Paris,,OIF, +OIF:SP:59:3747941,1,"Rue de la Gare de Reuilly",48.841537,2.393604,0,0,OIF:SA:59:3747940,Europe/Paris,,OIF, +OIF:SP:59:3747942,1,"Daumesnil - Félix Eboue",48.839019,2.396828,0,0,OIF:SA:59561,Europe/Paris,,OIF, +OIF:SP:59:3747943,1,"Daumesnil - Félix Eboue",48.839154,2.397087,0,0,OIF:SA:59561,Europe/Paris,,OIF, +OIF:SP:59:3747944,1,"Sidi Brahim",48.838155,2.399128,0,0,OIF:SA:59:3747944,Europe/Paris,,OIF, +OIF:SP:59:3747945,1,"Sidi Brahim",48.838254,2.399509,0,0,OIF:SA:59:3747944,Europe/Paris,,OIF, +OIF:SP:59:3747946,1,"Michel Bizot",48.83676,2.402925,0,0,OIF:SA:59466,Europe/Paris,,OIF, +OIF:SP:59:3747948,1,"Porte Dorée",48.835023,2.407157,0,0,OIF:SA:59559,Europe/Paris,,OIF, +OIF:SP:59:3747950,1,"Parc Zoologique",48.833634,2.414847,0,0,OIF:SA:59:3747950,Europe/Paris,,OIF, +OIF:SP:59:3747952,1,"Alphand",48.83419,2.416985,0,0,OIF:SA:59:3747952,Europe/Paris,,OIF, +OIF:SP:59:3747954,1,"Saint-Mandé - Demi Lune - Parc Zoologique",48.83505,2.420404,0,0,OIF:SA:59:3747954,Europe/Paris,,OIF, +OIF:SP:59:3747955,1,"Tourelle - Daumesnil",48.839375,2.430323,0,0,OIF:SA:59:3747955,Europe/Paris,,OIF, +OIF:SP:59:3747956,1,"Tourelle - Daumesnil",48.839375,2.429547,0,0,OIF:SA:59:3747955,Europe/Paris,,OIF, +OIF:SP:59:3747957,1,"Parc Floral",48.84086,2.438822,0,0,OIF:SA:59:3747957,Europe/Paris,,OIF, +OIF:SP:59:3747958,1,"Parc Floral",48.84024,2.438412,0,0,OIF:SA:59:3747957,Europe/Paris,,OIF, +OIF:SP:59:3747960,1,"Château de Vincennes",48.844139,2.440367,0,0,OIF:SA:59595,Europe/Paris,,OIF, +OIF:SP:59:3747961,1,"Saint-Mandé - Demi Lune - Parc Zoologique",48.835562,2.421208,0,0,OIF:SA:59:3747961,Europe/Paris,,OIF, +OIF:SP:59:3747962,1,"Parc Zoologique",48.833896,2.412328,0,0,OIF:SA:59:3747962,Europe/Paris,,OIF, +OIF:SP:59:3747963,1,"Place Edouard Renard",48.835643,2.407198,0,0,OIF:SA:59559,Europe/Paris,,OIF, +OIF:SP:59:3747964,1,"Godefroy - Cavaignac",48.854673,2.381633,0,0,OIF:SA:59:3747964,Europe/Paris,,OIF, +OIF:SP:59:3747965,1,"Goncourt",48.870395,2.370924,0,0,OIF:SA:59640,Europe/Paris,,OIF, +OIF:SP:59:3747966,1,"Sambre et Meuse",48.87568,2.370451,0,0,OIF:SA:59:3747966,Europe/Paris,,OIF, +OIF:SP:59:3747967,1,"Colonel Fabien",48.87825,2.370875,0,0,OIF:SA:59423,Europe/Paris,,OIF, +OIF:SP:59:3748041,1,"Saint-Germain-des-Prés",48.853432,2.334386,0,0,OIF:SA:59623,Europe/Paris,,OIF, +OIF:SP:59:3748044,1,"Saint-Germain - Odéon",48.852165,2.339725,0,0,OIF:SA:59263,Europe/Paris,,OIF, +OIF:SP:59:3748045,1,"Saint-Germain - Odéon",48.851653,2.340106,0,0,OIF:SA:59263,Europe/Paris,,OIF, +OIF:SP:59:3748046,1,"Cluny",48.851167,2.343728,0,0,OIF:SA:59377,Europe/Paris,,OIF, +OIF:SP:59:3748047,1,"Cluny",48.850134,2.343388,0,0,OIF:SA:59377,Europe/Paris,,OIF, +OIF:SP:59:3748050,1,"Saint-Germain - Cardinal Lemoine",48.849369,2.353765,0,0,OIF:SA:59:3716889,Europe/Paris,,OIF, +OIF:SP:59:3748051,1,"Pont Sully - Quai de Béthune",48.850123,2.359417,0,0,OIF:SA:59281,Europe/Paris,,OIF, +OIF:SP:59:3748052,1,"Pont Sully - Quai de Béthune",48.850293,2.359294,0,0,OIF:SA:59281,Europe/Paris,,OIF, +OIF:SP:59:3748053,1,"Sully - Morland",48.851245,2.363094,0,0,OIF:SA:59281,Europe/Paris,,OIF, +OIF:SP:59:3748054,1,"Sully - Morland",48.851407,2.362945,0,0,OIF:SA:59281,Europe/Paris,,OIF, +OIF:SP:59:3748055,1,"La Cerisaie",48.852206,2.366227,0,0,OIF:SA:59:3748055,Europe/Paris,,OIF, +OIF:SP:59:3748056,1,"La Cerisaie",48.852503,2.366527,0,0,OIF:SA:59:3748055,Europe/Paris,,OIF, +OIF:SP:59:3748059,1,"Ledru Rollin - Faubourg Saint-Antoine",48.851314,2.375665,0,0,OIF:SA:59468,Europe/Paris,,OIF, +OIF:SP:59:3748060,1,"Crozatier",48.850729,2.378034,0,0,OIF:SA:59468,Europe/Paris,,OIF, +OIF:SP:59:3748061,1,"Crozatier",48.850674,2.379314,0,0,OIF:SA:59468,Europe/Paris,,OIF, +OIF:SP:59:3748062,1,"Hôpital Saint-Antoine",48.850242,2.382528,0,0,OIF:SA:59471,Europe/Paris,,OIF, +OIF:SP:59:3748063,1,"Faidherbe - Chaligny",48.849845,2.385605,0,0,OIF:SA:59471,Europe/Paris,,OIF, +OIF:SP:59:3748064,1,"Claude Tillier",48.849196,2.389826,0,0,OIF:SA:59:3748064,Europe/Paris,,OIF, +OIF:SP:59:3748065,1,"Chevreul",48.848691,2.393148,0,0,OIF:SA:59:3748065,Europe/Paris,,OIF, +OIF:SP:59:3748066,1,"Nation - Trone",48.848051,2.397042,0,0,OIF:SA:8775810,Europe/Paris,,OIF, +OIF:SP:59:3748068,1,"Marsoulan",48.847662,2.40283,0,0,OIF:SA:59:3748068,Europe/Paris,,OIF, +OIF:SP:59:3748071,1,"Saint-Mandé - Tourelle",48.846215,2.41748,0,0,OIF:SA:59662,Europe/Paris,,OIF, +OIF:SP:59:3748072,1,"Saint-Mandé - Tourelle",48.845855,2.417711,0,0,OIF:SA:59662,Europe/Paris,,OIF, +OIF:SP:59:3748073,1,"Mairie de Saint-Mandé",48.842925,2.417543,0,0,OIF:SA:59:3748073,Europe/Paris,,OIF, +OIF:SP:59:3748074,1,"Mairie de Saint-Mandé",48.843365,2.417871,0,0,OIF:SA:59:3748073,Europe/Paris,,OIF, +OIF:SP:59:3748075,1,"Église de Saint-Mandé",48.839816,2.417416,0,0,OIF:SA:59:3748075,Europe/Paris,,OIF, +OIF:SP:59:3748076,1,"Église de Saint-Mandé",48.839995,2.417661,0,0,OIF:SA:59:3748075,Europe/Paris,,OIF, +OIF:SP:59:3748077,1,"Jean Mermoz",48.838144,2.417617,0,0,OIF:SA:59:3748077,Europe/Paris,,OIF, +OIF:SP:59:3748078,1,"Jean Mermoz",48.838296,2.417822,0,0,OIF:SA:59:3748077,Europe/Paris,,OIF, +OIF:SP:59:3748079,1,"Saint-Mandé - Demi Lune - Parc Zoologique",48.835248,2.420309,0,0,OIF:SA:59:3747961,Europe/Paris,,OIF, +OIF:SP:59:3748083,1,"Marsoulan",48.847877,2.40283,0,0,OIF:SA:59:3748068,Europe/Paris,,OIF, +OIF:SP:59:3748084,1,"Nation - Trone",48.848492,2.397247,0,0,OIF:SA:8775810,Europe/Paris,,OIF, +OIF:SP:59:3748086,1,"Nation - Saint-Antoine",48.848673,2.394674,0,0,OIF:SA:8775810,Europe/Paris,,OIF, +OIF:SP:59:3748087,1,"Chevreul",48.848979,2.392522,0,0,OIF:SA:59:3748065,Europe/Paris,,OIF, +OIF:SP:59:3748088,1,"Claude Tillier",48.849511,2.389105,0,0,OIF:SA:59:3748064,Europe/Paris,,OIF, +OIF:SP:59:3748089,1,"Faidherbe - Chaligny",48.850016,2.385714,0,0,OIF:SA:59471,Europe/Paris,,OIF, +OIF:SP:59:3748090,1,"Hôpital Saint-Antoine",48.850286,2.383753,0,0,OIF:SA:59471,Europe/Paris,,OIF, +OIF:SP:59:3748091,1,"Ledru Rollin - Faubourg Saint-Antoine",48.851295,2.376577,0,0,OIF:SA:59468,Europe/Paris,,OIF, +OIF:SP:59:3748094,1,"Bastille - Rue Saint-Antoine",48.853059,2.368325,0,0,OIF:SA:59238,Europe/Paris,,OIF, +OIF:SP:59:3748095,1,"Institut du Monde Arabe",48.848991,2.355467,0,0,OIF:SA:59:3748095,Europe/Paris,,OIF, +OIF:SP:59:3749638,1,"Mairie du 18ème - Jules Joffrin",48.892581,2.344988,0,0,OIF:SA:59518,Europe/Paris,,OIF, +OIF:SP:59:3749639,1,"Mairie du 18ème - Jules Joffrin",48.893138,2.344756,0,0,OIF:SA:59518,Europe/Paris,,OIF, +OIF:SP:59:3749640,1,"Marcadet",48.890145,2.345669,0,0,OIF:SA:59:3749640,Europe/Paris,,OIF, +OIF:SP:59:3749641,1,"Custine - Ramey",48.889049,2.345832,0,0,OIF:SA:59:3749641,Europe/Paris,,OIF, +OIF:SP:59:3749642,1,"Custine - Mont-Cenis",48.889714,2.343461,0,0,OIF:SA:59:3749642,Europe/Paris,,OIF, +OIF:SP:59:3749643,1,"Custine - Mont-Cenis",48.889966,2.343175,0,0,OIF:SA:59:3749642,Europe/Paris,,OIF, +OIF:SP:59:3749644,1,"Lamarck - Caulaincourt",48.889525,2.340435,0,0,OIF:SA:59519,Europe/Paris,,OIF, +OIF:SP:59:3749645,1,"Lamarck - Caulaincourt",48.88957,2.338841,0,0,OIF:SA:59519,Europe/Paris,,OIF, +OIF:SP:59:3749646,1,"Lamarck - Mont Cenis",48.889103,2.34267,0,0,OIF:SA:59:3749646,Europe/Paris,,OIF, +OIF:SP:59:3749647,1,"Lamarck - Becquerel",48.888366,2.344019,0,0,OIF:SA:59:3749647,Europe/Paris,,OIF, +OIF:SP:59:3749648,1,"Chevalier de la Barre",48.887161,2.344428,0,0,OIF:SA:59:3749648,Europe/Paris,,OIF, +OIF:SP:59:3749649,1,"Utrillo",48.886236,2.343869,0,0,OIF:SA:59:3749649,Europe/Paris,,OIF, +OIF:SP:59:3749650,1,"Funiculaire",48.885903,2.342888,0,0,OIF:SA:59:3749650,Europe/Paris,,OIF, +OIF:SP:59:3749651,1,"Place du Tertre - Norvins",48.886533,2.341457,0,0,OIF:SA:59:3749651,Europe/Paris,,OIF, +OIF:SP:59:3749652,1,"Place du Tertre - Norvins",48.88682,2.339345,0,0,OIF:SA:59:3749651,Europe/Paris,,OIF, +OIF:SP:59:3749653,1,"Mont Cenis - Cortot",48.887386,2.341566,0,0,OIF:SA:59:3749653,Europe/Paris,,OIF, +OIF:SP:59:3749654,1,"Saules - Cortot",48.8878,2.339945,0,0,OIF:SA:59:3749654,Europe/Paris,,OIF, +OIF:SP:59:3749655,1,"Abreuvoir - Girardon",48.888393,2.337941,0,0,OIF:SA:59:3749655,Europe/Paris,,OIF, +OIF:SP:59:3749657,1,"Gabrielle",48.886524,2.338595,0,0,OIF:SA:59:3749657,Europe/Paris,,OIF, +OIF:SP:59:3749658,1,"Drevet",48.885589,2.340558,0,0,OIF:SA:59:3749658,Europe/Paris,,OIF, +OIF:SP:59:3749659,1,"Chappe",48.885005,2.341621,0,0,OIF:SA:59:3749659,Europe/Paris,,OIF, +OIF:SP:59:3749660,1,"Yvonne le Tac",48.884106,2.340898,0,0,OIF:SA:59:3749660,Europe/Paris,,OIF, +OIF:SP:59:3749661,1,"Abbesses",48.884358,2.338963,0,0,OIF:SA:59521,Europe/Paris,,OIF, +OIF:SP:59:3749662,1,"Abbesses",48.88487,2.337737,0,0,OIF:SA:59521,Europe/Paris,,OIF, +OIF:SP:59:3749665,1,"Martyrs",48.882461,2.339794,0,0,OIF:SA:59:3749665,Europe/Paris,,OIF, +OIF:SP:59:3749666,1,"Orsel",48.883387,2.339862,0,0,OIF:SA:59:3749666,Europe/Paris,,OIF, +OIF:SP:59:3749667,1,"Durantin - Burq",48.886245,2.336497,0,0,OIF:SA:59:3749667,Europe/Paris,,OIF, +OIF:SP:59:3749668,1,"Tholoze",48.885948,2.334725,0,0,OIF:SA:59:3749668,Europe/Paris,,OIF, +OIF:SP:59:3749669,1,"Tourlaque",48.887225,2.334057,0,0,OIF:SA:59:3749669,Europe/Paris,,OIF, +OIF:SP:59:3749670,1,"N0 88 Rue Lepic",48.887297,2.336401,0,0,OIF:SA:59:3749670,Europe/Paris,,OIF, +OIF:SP:59:3749671,1,"Moulin de la Galette",48.887162,2.337491,0,0,OIF:SA:59:3749671,Europe/Paris,,OIF, +OIF:SP:59:3749672,1,"Les Vignes",48.888078,2.339767,0,0,OIF:SA:59:3749672,Europe/Paris,,OIF, +OIF:SP:59:3749675,1,"Gare du Nord",48.881741,2.357782,0,0,OIF:SA:8727100,Europe/Paris,,OIF, +OIF:SP:59:3749677,1,"Gare du Nord - Dunkerque",48.88006,2.355015,0,0,OIF:SA:8727100,Europe/Paris,,OIF, +OIF:SP:59:3749681,1,"Châteaudun - Lamartine",48.8767,2.341375,0,0,OIF:SA:59515,Europe/Paris,,OIF, +OIF:SP:59:3749686,1,"Trinité",48.876323,2.331537,0,0,OIF:SA:59600,Europe/Paris,,OIF, +OIF:SP:59:3749687,1,"Trinité",48.876098,2.331428,0,0,OIF:SA:59600,Europe/Paris,,OIF, +OIF:SP:59:3749689,1,"Gare Saint-Lazare-Havre",48.874363,2.326728,0,0,OIF:SA:8738400,Europe/Paris,,OIF, +OIF:SP:59:3749691,1,"Pasquier - Anjou",48.874264,2.324166,0,0,OIF:SA:8738400,Europe/Paris,,OIF, +OIF:SP:59:3749694,1,"Haussmann - Miromesnil",48.875296,2.313061,0,0,OIF:SA:59494,Europe/Paris,,OIF, +OIF:SP:59:3749695,1,"Haussmann - Miromesnil",48.875135,2.314656,0,0,OIF:SA:59494,Europe/Paris,,OIF, +OIF:SP:59:3749696,1,"Haussmann - Courcelles",48.875125,2.308497,0,0,OIF:SA:59:3749696,Europe/Paris,,OIF, +OIF:SP:59:3749697,1,"Haussmann - Courcelles",48.874936,2.30971,0,0,OIF:SA:59:3749696,Europe/Paris,,OIF, +OIF:SP:59:3749698,1,"Friedland - Haussmann",48.875052,2.306276,0,0,OIF:SA:59:3749698,Europe/Paris,,OIF, +OIF:SP:59:3749699,1,"Friedland - Haussmann",48.874791,2.306304,0,0,OIF:SA:59:3749698,Europe/Paris,,OIF, +OIF:SP:59:3749702,1,"Ternes",48.878078,2.297186,0,0,OIF:SA:59416,Europe/Paris,,OIF, +OIF:SP:59:3749703,1,"Ternes - Mac Mahon",48.878635,2.294787,0,0,OIF:SA:59416,Europe/Paris,,OIF, +OIF:SP:59:3749704,1,"Ternes - Mac Mahon",48.878419,2.294679,0,0,OIF:SA:59416,Europe/Paris,,OIF, +OIF:SP:59:3749705,1,"Église Saint-Ferdinand",48.879586,2.290603,0,0,OIF:SA:59:3749705,Europe/Paris,,OIF, +OIF:SP:59:3749706,1,"Église Saint-Ferdinand",48.879262,2.291067,0,0,OIF:SA:59:3749705,Europe/Paris,,OIF, +OIF:SP:59:3749707,1,"Pereire - Porte Maillot",48.880115,2.288273,0,0,OIF:SA:59:3749707,Europe/Paris,,OIF, +OIF:SP:59:3749708,1,"Pereire - Porte Maillot",48.879962,2.287946,0,0,OIF:SA:59:3749707,Europe/Paris,,OIF, +OIF:SP:59:3749709,1,"Général Koenig - Palais des Congres",48.880913,2.284852,0,0,OIF:SA:59:3749709,Europe/Paris,,OIF, +OIF:SP:59:3749710,1,"Général Koenig - Palais des Congres",48.880689,2.284934,0,0,OIF:SA:59:3749709,Europe/Paris,,OIF, +OIF:SP:59:3749711,1,"Montrosier - Parmentier",48.88181,2.280913,0,0,OIF:SA:59:3749711,Europe/Paris,,OIF, +OIF:SP:59:3749712,1,"Chartres",48.882653,2.277001,0,0,OIF:SA:59:3749712,Europe/Paris,,OIF, +OIF:SP:59:3749713,1,"Chartres",48.882572,2.276674,0,0,OIF:SA:59:3749712,Europe/Paris,,OIF, +OIF:SP:59:3749714,1,"Église Saint-Pierre",48.883819,2.272121,0,0,OIF:SA:59:3749714,Europe/Paris,,OIF, +OIF:SP:59:3749715,1,"Église Saint-Pierre",48.883657,2.271835,0,0,OIF:SA:59:3749714,Europe/Paris,,OIF, +OIF:SP:59:3749716,1,"Sainte-Foy",48.884814,2.267677,0,0,OIF:SA:59:3749716,Europe/Paris,,OIF, +OIF:SP:59:3749717,1,"Sainte-Foy",48.884527,2.267991,0,0,OIF:SA:59:3749716,Europe/Paris,,OIF, +OIF:SP:59:3749718,1,"Général Gouraud",48.886231,2.262224,0,0,OIF:SA:59661,Europe/Paris,,OIF, +OIF:SP:59:3749724,1,"Rue du Bois de Boulogne",48.881076,2.254287,0,0,OIF:SA:59:3749724,Europe/Paris,,OIF, +OIF:SP:59:3749729,1,"Place de Bagatelle",48.876868,2.251024,0,0,OIF:SA:59:3749729,Europe/Paris,,OIF, +OIF:SP:59:3749730,1,"Bagatelle",48.877189,2.247549,0,0,OIF:SA:59:3749729,Europe/Paris,,OIF, +OIF:SP:59:3749733,1,"Montrosier - Parmentier",48.881819,2.279768,0,0,OIF:SA:59:3749733,Europe/Paris,,OIF, +OIF:SP:59:3749734,1,"Ternes",48.877548,2.298604,0,0,OIF:SA:59416,Europe/Paris,,OIF, +OIF:SP:59:3749739,1,"Porte des Lilas",48.877038,2.408903,0,0,OIF:SA:59327,Europe/Paris,,OIF, +OIF:SP:59:3749742,1,"Rene Fonck",48.878512,2.409055,0,0,OIF:SA:59:3673614,Europe/Paris,,OIF, +OIF:SP:59:3749743,1,"Jean Jaurès",48.880247,2.408403,0,0,OIF:SA:59:3749743,Europe/Paris,,OIF, +OIF:SP:59:3749744,1,"Jean Jaurès",48.880337,2.407286,0,0,OIF:SA:59:3749743,Europe/Paris,,OIF, +OIF:SP:59:3749745,1,"Les Marronniers",48.881544,2.403595,0,0,OIF:SA:59:3749745,Europe/Paris,,OIF, +OIF:SP:59:3749746,1,"Les Marronniers",48.881508,2.403458,0,0,OIF:SA:59:3749745,Europe/Paris,,OIF, +OIF:SP:59:3749747,1,"Hôpital R. Debré - Pré Saint-Gervais",48.879361,2.401507,0,0,OIF:SA:59752,Europe/Paris,,OIF, +OIF:SP:59:3749748,1,"Hôpital R. Debré - Pré Saint-Gervais",48.879289,2.401875,0,0,OIF:SA:59752,Europe/Paris,,OIF, +OIF:SP:59:3749749,1,"Rue des Bois",48.878571,2.399803,0,0,OIF:SA:59752,Europe/Paris,,OIF, +OIF:SP:59:3749750,1,"Place des Fetes",48.877567,2.394106,0,0,OIF:SA:59638,Europe/Paris,,OIF, +OIF:SP:59:3749751,1,"Place des Fetes",48.876148,2.393464,0,0,OIF:SA:59638,Europe/Paris,,OIF, +OIF:SP:59:3749752,1,"Botzaris",48.87943,2.38983,0,0,OIF:SA:59332,Europe/Paris,,OIF, +OIF:SP:59:3749753,1,"Botzaris",48.879268,2.389639,0,0,OIF:SA:59332,Europe/Paris,,OIF, +OIF:SP:59:3749754,1,"Manin",48.882514,2.386222,0,0,OIF:SA:59:3749754,Europe/Paris,,OIF, +OIF:SP:59:3749755,1,"Manin",48.882496,2.386003,0,0,OIF:SA:59:3749754,Europe/Paris,,OIF, +OIF:SP:59:3749756,1,"Armand Carrel - Mairie du 19ème",48.882408,2.382242,0,0,OIF:SA:59:3749756,Europe/Paris,,OIF, +OIF:SP:59:3749757,1,"Armand Carrel - Mairie du 19ème",48.882434,2.382651,0,0,OIF:SA:59:3749756,Europe/Paris,,OIF, +OIF:SP:59:3749758,1,"Rue de Meaux",48.882878,2.374993,0,0,OIF:SA:59:3749758,Europe/Paris,,OIF, +OIF:SP:59:3749759,1,"Rue de Meaux",48.882761,2.375088,0,0,OIF:SA:59:3749758,Europe/Paris,,OIF, +OIF:SP:59:3749760,1,"Jaurès",48.883409,2.3722,0,0,OIF:SA:59635,Europe/Paris,,OIF, +OIF:SP:59:3749761,1,"Jaurès",48.882933,2.371232,0,0,OIF:SA:59635,Europe/Paris,,OIF, +OIF:SP:59:3749762,1,"Stalingrad",48.884417,2.367267,0,0,OIF:SA:59279,Europe/Paris,,OIF, +OIF:SP:59:3749763,1,"Chapelle - Caillié",48.88457,2.364079,0,0,OIF:SA:59:3749763,Europe/Paris,,OIF, +OIF:SP:59:3749764,1,"Place de la Chapelle",48.884589,2.360604,0,0,OIF:SA:59218,Europe/Paris,,OIF, +OIF:SP:59:3749771,1,"La Fayette - Poissonnière",48.878039,2.349032,0,0,OIF:SA:59574,Europe/Paris,,OIF, +OIF:SP:59:3749772,1,"Paradis",48.875891,2.348173,0,0,OIF:SA:59:3749772,Europe/Paris,,OIF, +OIF:SP:59:3749773,1,"Petites Écuries",48.873797,2.347819,0,0,OIF:SA:59:3749773,Europe/Paris,,OIF, +OIF:SP:59:3749776,1,"Richelieu - Drouot",48.871578,2.33978,0,0,OIF:SA:59463,Europe/Paris,,OIF, +OIF:SP:59:3749777,1,"Richelieu - 4 Septembre",48.870095,2.339072,0,0,OIF:SA:59437,Europe/Paris,,OIF, +OIF:SP:59:3749779,1,"Palais Royal - Comédie Française",48.863507,2.33557,0,0,OIF:SA:59591,Europe/Paris,,OIF, +OIF:SP:59:3749780,1,"Palais Royal - Musée du Louvre",48.862465,2.337818,0,0,OIF:SA:59591,Europe/Paris,,OIF, +OIF:SP:59:3749782,1,"Coquillière",48.86437,2.340297,0,0,OIF:SA:59:3749782,Europe/Paris,,OIF, +OIF:SP:59:3749784,1,"Réaumur - Montmartre",48.86863,2.343513,0,0,OIF:SA:59:3749784,Europe/Paris,,OIF, +OIF:SP:59:3749785,1,"Grands Boulevards",48.87067,2.342954,0,0,OIF:SA:59464,Europe/Paris,,OIF, +OIF:SP:59:3749786,1,"Provence - Faubourg Montmartre",48.873887,2.342682,0,0,OIF:SA:59:3749786,Europe/Paris,,OIF, +OIF:SP:59:3749792,1,"Philippe de Girard",48.884202,2.361885,0,0,OIF:SA:59:3749792,Europe/Paris,,OIF, +OIF:SP:59:3749793,1,"Château Landon",48.884148,2.365237,0,0,OIF:SA:59572,Europe/Paris,,OIF, +OIF:SP:59:3749794,1,"Stalingrad",48.883527,2.368793,0,0,OIF:SA:59279,Europe/Paris,,OIF, +OIF:SP:59:3749795,1,"Louise Thuliez",48.878123,2.396628,0,0,OIF:SA:59:3749795,Europe/Paris,,OIF, +OIF:SP:59:3749796,1,"Pré-Saint-Gervais - Allés",48.87921,2.398714,0,0,OIF:SA:59645,Europe/Paris,,OIF, +OIF:SP:59:3749797,1,"Mouzaïa",48.87992,2.399028,0,0,OIF:SA:59645,Europe/Paris,,OIF, +OIF:SP:59:3749875,1,"Porte de Versailles",48.833074,2.28686,0,0,OIF:SA:59514,Europe/Paris,,OIF, +OIF:SP:59:3749876,1,"Porte de Versailles",48.833191,2.286642,0,0,OIF:SA:59514,Europe/Paris,,OIF, +OIF:SP:59:3749877,1,"Porte de Versailles.",48.832877,2.288862,0,0,OIF:SA:59514,Europe/Paris,,OIF, +OIF:SP:59:3749880,1,"Convention - Vaugirard",48.8375,2.297176,0,0,OIF:SA:59520,Europe/Paris,,OIF, +OIF:SP:59:3749883,1,"Vaugirard - Favorites",48.839595,2.301695,0,0,OIF:SA:59601,Europe/Paris,,OIF, +OIF:SP:59:3749884,1,"Cambronne - Vaugirard",48.840675,2.304227,0,0,OIF:SA:59:3749884,Europe/Paris,,OIF, +OIF:SP:59:3749886,1,"Cambronne - Lecourbe",48.843002,2.302428,0,0,OIF:SA:59:3749886,Europe/Paris,,OIF, +OIF:SP:59:3749887,1,"Mairie du 15ème",48.841823,2.29912,0,0,OIF:SA:59:3749887,Europe/Paris,,OIF, +OIF:SP:59:3749888,1,"Mairie du 15ème",48.841869,2.299787,0,0,OIF:SA:59:3749887,Europe/Paris,,OIF, +OIF:SP:59:3749889,1,"Péclet",48.843737,2.298111,0,0,OIF:SA:59:3749889,Europe/Paris,,OIF, +OIF:SP:59:3749890,1,"Fondary",48.845364,2.298001,0,0,OIF:SA:59:3749890,Europe/Paris,,OIF, +OIF:SP:59:3749891,1,"Cambronne",48.848367,2.300804,0,0,OIF:SA:59459,Europe/Paris,,OIF, +OIF:SP:59:3749892,1,"Cambronne",48.847064,2.301568,0,0,OIF:SA:59459,Europe/Paris,,OIF, +OIF:SP:59:3749893,1,"La Motte Picquet - Grenelle",48.849436,2.298529,0,0,OIF:SA:59346,Europe/Paris,,OIF, +OIF:SP:59:3749894,1,"La Motte Picquet - Grenelle",48.848771,2.298162,0,0,OIF:SA:59346,Europe/Paris,,OIF, +OIF:SP:59:3749895,1,"Général de Bollardiere",48.851423,2.301496,0,0,OIF:SA:59:3749895,Europe/Paris,,OIF, +OIF:SP:59:3749896,1,"École Militaire",48.854749,2.305607,0,0,OIF:SA:59470,Europe/Paris,,OIF, +OIF:SP:59:3749897,1,"École Militaire",48.854093,2.304981,0,0,OIF:SA:59470,Europe/Paris,,OIF, +OIF:SP:59:3749898,1,"Bosquet - Grenelle",48.856879,2.304653,0,0,OIF:SA:59:3687109,Europe/Paris,,OIF, +OIF:SP:59:3749899,1,"Bosquet - Grenelle",48.856564,2.304312,0,0,OIF:SA:59:3687109,Europe/Paris,,OIF, +OIF:SP:59:3749900,1,"Bosquet - Saint-Dominique",48.859072,2.303616,0,0,OIF:SA:59:3687115,Europe/Paris,,OIF, +OIF:SP:59:3749901,1,"Bosquet - Saint-Dominique",48.858515,2.303412,0,0,OIF:SA:59:3687115,Europe/Paris,,OIF, +OIF:SP:59:3749902,1,"Bosquet - Rapp",48.862073,2.302143,0,0,OIF:SA:59:3749902,Europe/Paris,,OIF, +OIF:SP:59:3749903,1,"Bosquet - Rapp",48.861381,2.30213,0,0,OIF:SA:59:3749902,Europe/Paris,,OIF, +OIF:SP:59:3749904,1,"Alma - Marceau",48.865273,2.303122,0,0,OIF:SA:59500,Europe/Paris,,OIF, +OIF:SP:59:3749905,1,"Alma - Marceau",48.865075,2.302373,0,0,OIF:SA:59500,Europe/Paris,,OIF, +OIF:SP:59:3749906,1,"Montaigne - François 1er",48.867161,2.306799,0,0,OIF:SA:59:3749906,Europe/Paris,,OIF, +OIF:SP:59:3749907,1,"Montaigne - François 1er",48.866837,2.30575,0,0,OIF:SA:59:3749906,Europe/Paris,,OIF, +OIF:SP:59:3749908,1,"Rond-Point des Champs-Élysées",48.868303,2.308991,0,0,OIF:SA:59232,Europe/Paris,,OIF, +OIF:SP:59:3749909,1,"Rond-Point des Champs-Élysées",48.868851,2.308964,0,0,OIF:SA:59232,Europe/Paris,,OIF, +OIF:SP:59:3749915,1,"Gare Saint-Lazare",48.877113,2.323253,0,0,OIF:SA:8738400,Europe/Paris,,OIF, +OIF:SP:59:3749916,1,"Gare Saint-Lazare",48.875765,2.323675,0,0,OIF:SA:8738400,Europe/Paris,,OIF, +OIF:SP:59:3749918,1,"Europe",48.878497,2.322871,0,0,OIF:SA:59443,Europe/Paris,,OIF, +OIF:SP:59:3749920,1,"Bucarest",48.881203,2.325023,0,0,OIF:SA:59:3749920,Europe/Paris,,OIF, +OIF:SP:59:3749921,1,"Place de Clichy",48.883072,2.326303,0,0,OIF:SA:59421,Europe/Paris,,OIF, +OIF:SP:59:3749923,1,"Clichy - Caulaincourt",48.885184,2.330637,0,0,OIF:SA:59:3749923,Europe/Paris,,OIF, +OIF:SP:59:3749924,1,"Damrémont - Caulaincourt",48.887575,2.333512,0,0,OIF:SA:59:3749924,Europe/Paris,,OIF, +OIF:SP:59:3749925,1,"Damrémont - Caulaincourt",48.887638,2.333362,0,0,OIF:SA:59:3749924,Europe/Paris,,OIF, +OIF:SP:59:3749926,1,"Square Caulaincourt",48.889489,2.33591,0,0,OIF:SA:59:3749926,Europe/Paris,,OIF, +OIF:SP:59:3749927,1,"Square Caulaincourt",48.889561,2.335542,0,0,OIF:SA:59:3749926,Europe/Paris,,OIF, +OIF:SP:59:3749929,1,"Lamarck - Caulaincourt",48.889759,2.340326,0,0,OIF:SA:59519,Europe/Paris,,OIF, +OIF:SP:59:3749933,1,"Mairie du 18ème - Jules Joffrin",48.892958,2.34522,0,0,OIF:SA:59518,Europe/Paris,,OIF, +OIF:SP:59:3749937,1,"Pasquier - Anjou",48.874669,2.323771,0,0,OIF:SA:8738400,Europe/Paris,,OIF, +OIF:SP:59:3749941,1,"Général de Bollardiere",48.850964,2.300475,0,0,OIF:SA:59:3749941,Europe/Paris,,OIF, +OIF:SP:59:3749942,1,"Miollis",48.845123,2.301991,0,0,OIF:SA:59:3749942,Europe/Paris,,OIF, +OIF:SP:59:3749943,1,"Convention - Lecourbe",48.839151,2.291211,0,0,OIF:SA:59:3749943,Europe/Paris,,OIF, +OIF:SP:59:3749944,1,"Duranton",48.83809,2.289197,0,0,OIF:SA:59:3749944,Europe/Paris,,OIF, +OIF:SP:59:3749945,1,"Hameau",48.835268,2.289091,0,0,OIF:SA:59:3749945,Europe/Paris,,OIF, +OIF:SP:59:3749946,1,"Boulevard Victor",48.833694,2.286737,0,0,OIF:SA:59:3749946,Europe/Paris,,OIF, +OIF:SP:59:3749947,1,"Porte de Clignancourt",48.898953,2.343994,0,0,OIF:SA:59258,Europe/Paris,,OIF, +OIF:SP:59:3749949,1,"Porte de Montmartre",48.897874,2.335747,0,0,OIF:SA:59:3749949,Europe/Paris,,OIF, +OIF:SP:59:3749950,1,"Porte de Montmartre",48.897686,2.337001,0,0,OIF:SA:59:3749949,Europe/Paris,,OIF, +OIF:SP:59:3749951,1,"Porte de Saint-Ouen - Hôpital Bichat",48.898063,2.329313,0,0,OIF:SA:59526,Europe/Paris,,OIF, +OIF:SP:59:3749952,1,"Porte de Saint-Ouen - Hôpital Bichat",48.897461,2.329994,0,0,OIF:SA:59526,Europe/Paris,,OIF, +OIF:SP:59:3749953,1,"Toulouse-Lautrec",48.90102,2.329026,0,0,OIF:SA:59:3749953,Europe/Paris,,OIF, +OIF:SP:59:3749954,1,"Colisée",48.90101,2.324841,0,0,OIF:SA:59:3749954,Europe/Paris,,OIF, +OIF:SP:59:3749955,1,"Touzet - Gaillard",48.901334,2.322278,0,0,OIF:SA:59:3749955,Europe/Paris,,OIF, +OIF:SP:59:3749956,1,"Touzet - Gaillard",48.901109,2.32161,0,0,OIF:SA:59:3749955,Europe/Paris,,OIF, +OIF:SP:59:3749960,1,"Victor Hugo - Sanzillon",48.903023,2.318515,0,0,OIF:SA:8727124,Europe/Paris,,OIF, +OIF:SP:59:3749961,1,"Georges Boisseau",48.903742,2.317343,0,0,OIF:SA:59:3749961,Europe/Paris,,OIF, +OIF:SP:59:3749962,1,"Georges Boisseau",48.90331,2.317806,0,0,OIF:SA:59:3749961,Europe/Paris,,OIF, +OIF:SP:59:3749963,1,"Fondation Roguet",48.906841,2.313415,0,0,OIF:SA:59:3749963,Europe/Paris,,OIF, +OIF:SP:59:3749964,1,"Fondation Roguet",48.906707,2.313347,0,0,OIF:SA:59:3749963,Europe/Paris,,OIF, +OIF:SP:59:3749965,1,"Cimetière de Clichy",48.90881,2.313032,0,0,OIF:SA:59:3749965,Europe/Paris,,OIF, +OIF:SP:59:3749966,1,"Cimetière de Clichy",48.908135,2.312801,0,0,OIF:SA:59:3749965,Europe/Paris,,OIF, +OIF:SP:59:3749967,1,"Rue Pierre",48.910409,2.313086,0,0,OIF:SA:59:3749967,Europe/Paris,,OIF, +OIF:SP:59:3749968,1,"Rue Pierre",48.910059,2.312759,0,0,OIF:SA:59:3749967,Europe/Paris,,OIF, +OIF:SP:59:3749970,1,"Claude Debussy",48.909896,2.310114,0,0,OIF:SA:59:3749970,Europe/Paris,,OIF, +OIF:SP:59:3749973,1,"Villeneuve - Général Leclerc",48.905843,2.308794,0,0,OIF:SA:59:3749973,Europe/Paris,,OIF, +OIF:SP:59:3749976,1,"Gare de Clichy - Levallois",48.896583,2.29784,0,0,OIF:SA:8738112,Europe/Paris,,OIF, +OIF:SP:59:3749977,1,"Gare de Clichy - Levallois",48.896664,2.298562,0,0,OIF:SA:8738112,Europe/Paris,,OIF, +OIF:SP:59:3749978,1,"Porte d'Asnières",48.891363,2.30196,0,0,OIF:SA:8798223,Europe/Paris,,OIF, +OIF:SP:59:3749979,1,"Porte d'Asnières",48.890725,2.303187,0,0,OIF:SA:8798223,Europe/Paris,,OIF, +OIF:SP:59:3749982,1,"Charles de Gaulle - Etoile",48.874564,2.29663,0,0,OIF:SA:8775800,Europe/Paris,,OIF, +OIF:SP:59:3749984,1,"Pereire",48.885304,2.297848,0,0,OIF:SA:59219,Europe/Paris,,OIF, +OIF:SP:59:3749986,1,"Citroën",48.904811,2.31557,0,0,OIF:SA:59:3749986,Europe/Paris,,OIF, +OIF:SP:59:3749987,1,"Victor Hugo - Sanzillon",48.902834,2.319415,0,0,OIF:SA:8727124,Europe/Paris,,OIF, +OIF:SP:59:3749990,1,"Bois le Prêtre",48.899168,2.322238,0,0,OIF:SA:59:3749990,Europe/Paris,,OIF, +OIF:SP:59:3749994,1,"Porte de Saint-Ouen - Hôpital Bichat",48.898108,2.328945,0,0,OIF:SA:59526,Europe/Paris,,OIF, +OIF:SP:59:3749995,1,"Firmin Gemier",48.895385,2.330663,0,0,OIF:SA:59:3749995,Europe/Paris,,OIF, +OIF:SP:59:3749996,1,"Jacques Cartier",48.894172,2.329736,0,0,OIF:SA:59608,Europe/Paris,,OIF, +OIF:SP:59:3749997,1,"Guy Moquet",48.892832,2.328291,0,0,OIF:SA:59608,Europe/Paris,,OIF, +OIF:SP:59:3749998,1,"Coysevox",48.892473,2.330077,0,0,OIF:SA:59:3749998,Europe/Paris,,OIF, +OIF:SP:59:3749999,1,"Hôpital Bretonneau",48.891287,2.330813,0,0,OIF:SA:59:3749999,Europe/Paris,,OIF, +OIF:SP:59:3750000,1,"Villa Saint-Michel",48.889291,2.32821,0,0,OIF:SA:59:3750000,Europe/Paris,,OIF, +OIF:SP:59:3750001,1,"Lycée Auguste Renoir",48.887755,2.328006,0,0,OIF:SA:59:3750001,Europe/Paris,,OIF, +OIF:SP:59:3750002,1,"Ganneron - Dames",48.885517,2.325812,0,0,OIF:SA:59:3750002,Europe/Paris,,OIF, +OIF:SP:59:3750003,1,"Mairie du 17ème",48.884411,2.321902,0,0,OIF:SA:59418,Europe/Paris,,OIF, +OIF:SP:59:3750004,1,"Lobligeois",48.886163,2.319025,0,0,OIF:SA:59:3750004,Europe/Paris,,OIF, +OIF:SP:59:3750005,1,"Legendre",48.885947,2.317172,0,0,OIF:SA:8738111,Europe/Paris,,OIF, +OIF:SP:59:3750006,1,"Place de Levis",48.884131,2.314052,0,0,OIF:SA:59:3750006,Europe/Paris,,OIF, +OIF:SP:59:3750007,1,"Tocqueville",48.885245,2.311176,0,0,OIF:SA:59:3750007,Europe/Paris,,OIF, +OIF:SP:59:3750008,1,"Pont Cardinet",48.887025,2.313097,0,0,OIF:SA:8738111,Europe/Paris,,OIF, +OIF:SP:59:3750009,1,"Legendre.",48.885578,2.315782,0,0,OIF:SA:59:3750009,Europe/Paris,,OIF, +OIF:SP:59:3750010,1,"La Condamine",48.884312,2.319326,0,0,OIF:SA:59418,Europe/Paris,,OIF, +OIF:SP:59:3750011,1,"Truffaut",48.885543,2.321492,0,0,OIF:SA:59:3750011,Europe/Paris,,OIF, +OIF:SP:59:3750012,1,"Nollet",48.887511,2.320511,0,0,OIF:SA:59:3750012,Europe/Paris,,OIF, +OIF:SP:59:3750013,1,"Marche des Batignolles",48.889191,2.318398,0,0,OIF:SA:59:3750013,Europe/Paris,,OIF, +OIF:SP:59:3750014,1,"Brochant",48.891106,2.320809,0,0,OIF:SA:59535,Europe/Paris,,OIF, +OIF:SP:59:3750015,1,"Davy",48.891044,2.325007,0,0,OIF:SA:59:3750015,Europe/Paris,,OIF, +OIF:SP:59:3750016,1,"Guy Moquet",48.893192,2.32701,0,0,OIF:SA:59608,Europe/Paris,,OIF, +OIF:SP:59:3750017,1,"Collège Mallarmé",48.893578,2.323112,0,0,OIF:SA:59:3750017,Europe/Paris,,OIF, +OIF:SP:59:3750018,1,"Lantiez",48.895357,2.324215,0,0,OIF:SA:59:3750018,Europe/Paris,,OIF, +OIF:SP:59:3750019,1,"Porte Pouchet",48.8972,2.324583,0,0,OIF:SA:59:3750019,Europe/Paris,,OIF, +OIF:SP:59:3750020,1,"Frédéric Brunet",48.898584,2.326055,0,0,OIF:SA:59:3750020,Europe/Paris,,OIF, +OIF:SP:59:3750021,1,"Hôpital Bichat.",48.898899,2.32874,0,0,OIF:SA:59:3749993,Europe/Paris,,OIF, +OIF:SP:59:3750022,1,"Porte d'Aubervilliers - Oberlé",48.899667,2.370821,0,0,OIF:SA:59768,Europe/Paris,,OIF, +OIF:SP:59:3750023,1,"Duchesne - Bollaert",48.899603,2.373983,0,0,OIF:SA:59:3750023,Europe/Paris,,OIF, +OIF:SP:59:3750024,1,"Macdonald",48.898831,2.372756,0,0,OIF:SA:8765479,Europe/Paris,,OIF, +OIF:SP:59:3750026,1,"Évangile - Aubervilliers",48.896432,2.370532,0,0,OIF:SA:8765479,Europe/Paris,,OIF, +OIF:SP:59:3750027,1,"Crimée - Aubervilliers",48.895119,2.37124,0,0,OIF:SA:8765479,Europe/Paris,,OIF, +OIF:SP:59:3750028,1,"Radiguet",48.892729,2.369385,0,0,OIF:SA:59:3750028,Europe/Paris,,OIF, +OIF:SP:59:3750029,1,"Riquet",48.88989,2.368157,0,0,OIF:SA:59285,Europe/Paris,,OIF, +OIF:SP:59:3750030,1,"Maroc",48.887059,2.366847,0,0,OIF:SA:59:3750030,Europe/Paris,,OIF, +OIF:SP:59:3750033,1,"Pajol - Département",48.886836,2.361368,0,0,OIF:SA:59:3750033,Europe/Paris,,OIF, +OIF:SP:59:3750034,1,"Pajol",48.888813,2.362527,0,0,OIF:SA:59:3750034,Europe/Paris,,OIF, +OIF:SP:59:3750035,1,"Pajol - Riquet",48.889846,2.363727,0,0,OIF:SA:59:3750035,Europe/Paris,,OIF, +OIF:SP:59:3750036,1,"Riquet.",48.889674,2.367679,0,0,OIF:SA:59285,Europe/Paris,,OIF, +OIF:SP:59:3750037,1,"Curial - Archereau",48.889565,2.371509,0,0,OIF:SA:59:3750037,Europe/Paris,,OIF, +OIF:SP:59:3750038,1,"Mathis",48.891434,2.372355,0,0,OIF:SA:59:3750038,Europe/Paris,,OIF, +OIF:SP:59:3750039,1,"Curial - Crimée",48.893357,2.373243,0,0,OIF:SA:59:3750039,Europe/Paris,,OIF, +OIF:SP:59:3750040,1,"Évangile - Aubervilliers",48.895092,2.371417,0,0,OIF:SA:8765479,Europe/Paris,,OIF, +OIF:SP:59:3750041,1,"Porte d'Aubervilliers.",48.898769,2.369034,0,0,OIF:SA:59768,Europe/Paris,,OIF, +OIF:SP:59:3750043,1,"Porte de la Chapelle",48.898708,2.359533,0,0,OIF:SA:59513,Europe/Paris,,OIF, +OIF:SP:59:3750044,1,"Abeille",48.901574,2.36207,0,0,OIF:SA:59:3750044,Europe/Paris,,OIF, +OIF:SP:59:3750045,1,"Porte de la Chapelle.",48.898304,2.359874,0,0,OIF:SA:59513,Europe/Paris,,OIF, +OIF:SP:59:3750046,1,"Charles Hermite - Ney",48.898941,2.36489,0,0,OIF:SA:59770,Europe/Paris,,OIF, +OIF:SP:59:3750047,1,"Charles Hermite",48.899757,2.368531,0,0,OIF:SA:59768,Europe/Paris,,OIF, +OIF:SP:59:3750048,1,"Porte d'Aubervilliers - Oberlé.",48.899685,2.370602,0,0,OIF:SA:59768,Europe/Paris,,OIF, +OIF:SP:59:3754199,1,"Denfert-Rochereau - Métro-RER",48.833453,2.333366,0,0,OIF:SA:8775863,Europe/Paris,,OIF, +OIF:SP:59:3754201,1,"Dareau - Saint-Jacques",48.832123,2.33892,0,0,OIF:SA:59:3754201,Europe/Paris,,OIF, +OIF:SP:59:3754202,1,"Glacière - Tolbiac",48.82593,2.341112,0,0,OIF:SA:59:3754202,Europe/Paris,,OIF, +OIF:SP:59:3754203,1,"Stade Charléty - Porte de Gentilly",48.819108,2.34435,0,0,OIF:SA:59120,Europe/Paris,,OIF, +OIF:SP:59:3754205,1,"Orly Sud",48.728981,2.369853,0,0,OIF:SA:59675,Europe/Paris,,OIF, +OIF:SP:59:3754207,1,"Orly Ouest",48.72928,2.359881,0,0,OIF:SA:59673,Europe/Paris,,OIF, +OIF:SP:59:3754208,1,"Montsouris - Tombe Issoire",48.822506,2.330604,0,0,OIF:SA:59624,Europe/Paris,,OIF, +OIF:SP:59:3754209,1,"Parc Montsouris",48.824995,2.336048,0,0,OIF:SA:59:3754209,Europe/Paris,,OIF, +OIF:SP:59:3754210,1,"Alésia - Rene Coty",48.827656,2.335095,0,0,OIF:SA:59:3754210,Europe/Paris,,OIF, +OIF:SP:59:3754263,1,"Place de l'Abbé Georges Henocque",48.823817,2.353689,0,0,OIF:SA:59:3754263,Europe/Paris,,OIF, +OIF:SP:59:3754264,1,"Bobillot",48.823889,2.348312,0,0,OIF:SA:59:3754264,Europe/Paris,,OIF, +OIF:SP:59:3754265,1,"Rungis",48.823009,2.347414,0,0,OIF:SA:59:3754265,Europe/Paris,,OIF, +OIF:SP:59:3754266,1,"Barrault",48.824627,2.34676,0,0,OIF:SA:59:3754266,Europe/Paris,,OIF, +OIF:SP:59:3754267,1,"Vergniaud - Tolbiac",48.826074,2.34495,0,0,OIF:SA:59:3754267,Europe/Paris,,OIF, +OIF:SP:59:3754268,1,"Glacière - Tolbiac",48.826478,2.342146,0,0,OIF:SA:59:3754202,Europe/Paris,,OIF, +OIF:SP:59:3754270,1,"La Sibelle",48.824573,2.338661,0,0,OIF:SA:59:3754270,Europe/Paris,,OIF, +OIF:SP:59:3754271,1,"Parc Montsouris",48.82433,2.336524,0,0,OIF:SA:59:3754209,Europe/Paris,,OIF, +OIF:SP:59:3754272,1,"Place Jules Henaffe",48.823953,2.331325,0,0,OIF:SA:59:3754272,Europe/Paris,,OIF, +OIF:SP:59:3754273,1,"Prisse d'Avennes",48.825067,2.328657,0,0,OIF:SA:59624,Europe/Paris,,OIF, +OIF:SP:59:3754274,1,"Alésia - Général Leclerc",48.827359,2.326778,0,0,OIF:SA:59631,Europe/Paris,,OIF, +OIF:SP:59:3754275,1,"Alésia - Général Leclerc.",48.827763,2.327445,0,0,OIF:SA:59631,Europe/Paris,,OIF, +OIF:SP:59:3754276,1,"La Tombe Issoire",48.827737,2.331529,0,0,OIF:SA:59:3754276,Europe/Paris,,OIF, +OIF:SP:59:3754277,1,"Douanier Rousseau",48.826038,2.33142,0,0,OIF:SA:59:3754277,Europe/Paris,,OIF, +OIF:SP:59:3754278,1,"Père Corentin",48.825418,2.329596,0,0,OIF:SA:59:3754278,Europe/Paris,,OIF, +OIF:SP:59:3754279,1,"Paul Fort",48.823962,2.32814,0,0,OIF:SA:59624,Europe/Paris,,OIF, +OIF:SP:59:3754280,1,"Place Jules Henaffe.",48.823674,2.33172,0,0,OIF:SA:59:3754272,Europe/Paris,,OIF, +OIF:SP:59:3754281,1,"Parc Montsouris.",48.824205,2.336524,0,0,OIF:SA:59:3754209,Europe/Paris,,OIF, +OIF:SP:59:3754282,1,"La Sibelle.",48.824717,2.338362,0,0,OIF:SA:59:3754270,Europe/Paris,,OIF, +OIF:SP:59:3754283,1,"Thomas Francine",48.82646,2.33858,0,0,OIF:SA:59:3754283,Europe/Paris,,OIF, +OIF:SP:59:3754284,1,"Glacière - Tolbiac.",48.826478,2.341071,0,0,OIF:SA:59:3754202,Europe/Paris,,OIF, +OIF:SP:59:3754285,1,"Boussingault",48.825472,2.342786,0,0,OIF:SA:59:3754285,Europe/Paris,,OIF, +OIF:SP:59:3754286,1,"Vergniaud",48.823872,2.344664,0,0,OIF:SA:59:3754286,Europe/Paris,,OIF, +OIF:SP:59:3754287,1,"Place de Rungis",48.822416,2.346297,0,0,OIF:SA:59:3754287,Europe/Paris,,OIF, +OIF:SP:59:3754288,1,"Küss",48.822119,2.350367,0,0,OIF:SA:59064,Europe/Paris,,OIF, +OIF:SP:59:3754289,1,"Peupliers",48.822082,2.353048,0,0,OIF:SA:59064,Europe/Paris,,OIF, +OIF:SP:59:3754290,1,"Moulin de la Pointe",48.822073,2.356859,0,0,OIF:SA:59298,Europe/Paris,,OIF, +OIF:SP:59:3754291,1,"Docteur Laurent",48.825003,2.356602,0,0,OIF:SA:59283,Europe/Paris,,OIF, +OIF:SP:59:3754292,1,"Place de l'Abbé Georges Henocque.",48.824212,2.353907,0,0,OIF:SA:59:3754263,Europe/Paris,,OIF, +OIF:SP:59:3754318,1,"Fraysse",48.809869,2.341764,0,0,OIF:SA:59:3754318,Europe/Paris,,OIF, +OIF:SP:59:3754319,1,"Benoit Malon",48.810867,2.338634,0,0,OIF:SA:59:3754319,Europe/Paris,,OIF, +OIF:SP:59:3754326,1,"Leclerc - Thomas",48.810182,2.357957,0,0,OIF:SA:59:3754326,Europe/Paris,,OIF, +OIF:SP:59:3754327,1,"Espace Culturel André Malraux",48.809211,2.360393,0,0,OIF:SA:59578,Europe/Paris,,OIF, +OIF:SP:59:3754328,1,"Hôpital du Kremlin-Bicêtre",48.809292,2.358107,0,0,OIF:SA:59:3754328,Europe/Paris,,OIF, +OIF:SP:59:3754329,1,"Barnufles-la Piscine",48.807208,2.352731,0,0,OIF:SA:59:3754329,Europe/Paris,,OIF, +OIF:SP:59:3754330,1,"Benoit Malon - Martinets",48.805302,2.350485,0,0,OIF:SA:59:3754330,Europe/Paris,,OIF, +OIF:SP:59:3754331,1,"Lycée Darius Milhaud - Benoit Malon",48.804089,2.349138,0,0,OIF:SA:59:3754331,Europe/Paris,,OIF, +OIF:SP:59:3754332,1,"Léo Lagrange",48.802535,2.346756,0,0,OIF:SA:59:3754332,Europe/Paris,,OIF, +OIF:SP:59:3754333,1,"Lycée Darius Milhaud - Charles Gide",48.80515,2.346662,0,0,OIF:SA:59:3754333,Europe/Paris,,OIF, +OIF:SP:59:3754334,1,"Marcel Sembat - Collège Albert Cron",48.807702,2.349792,0,0,OIF:SA:59:3754334,Europe/Paris,,OIF, +OIF:SP:59:3754335,1,"Bensérade - C.H.U. de Bicetre",48.810569,2.350364,0,0,OIF:SA:59:3754335,Europe/Paris,,OIF, +OIF:SP:59:3754336,1,"Convention - Jaurès",48.812259,2.353494,0,0,OIF:SA:59:3754336,Europe/Paris,,OIF, +OIF:SP:59:3754337,1,"Mairie du Kremlin-Bicêtre",48.812474,2.357346,0,0,OIF:SA:59:3754337,Europe/Paris,,OIF, +OIF:SP:59:3754338,1,"Général Leclerc - 14 Juillet",48.813965,2.359333,0,0,OIF:SA:59:3754338,Europe/Paris,,OIF, +OIF:SP:59:3754339,1,"Leclerc - Thomas.",48.810308,2.357957,0,0,OIF:SA:59:3754326,Europe/Paris,,OIF, +OIF:SP:59:3755000,1,"Hôtel de Ville - Centre",48.806247,2.337327,0,0,OIF:SA:59:3755000,Europe/Paris,,OIF, +OIF:SP:59:3755002,1,"Colonel Fabien",48.79992,2.338606,0,0,OIF:SA:59:3755002,Europe/Paris,,OIF, +OIF:SP:59:3755003,1,"Quatre Chemins - Pauline Kergomard",48.800027,2.344021,0,0,OIF:SA:59:3755003,Europe/Paris,,OIF, +OIF:SP:59:3755004,1,"Ricardo - le Plateau",48.802616,2.343954,0,0,OIF:SA:59:3755004,Europe/Paris,,OIF, +OIF:SP:59:3755005,1,"Ricardo",48.802517,2.343328,0,0,OIF:SA:59:3755005,Europe/Paris,,OIF, +OIF:SP:59:3755006,1,"Quatre Chemins",48.800953,2.343205,0,0,OIF:SA:59:3755006,Europe/Paris,,OIF, +OIF:SP:59:3755007,1,"Colonel Fabien.",48.800018,2.338661,0,0,OIF:SA:59:3755007,Europe/Paris,,OIF, +OIF:SP:59:3755008,1,"Maison du Grand Cèdre.",48.802814,2.338389,0,0,OIF:SA:59:3755008,Europe/Paris,,OIF, +OIF:SP:59:3755010,1,"Henri Barbusse",48.808898,2.338552,0,0,OIF:SA:59:3755010,Europe/Paris,,OIF, +OIF:SP:59:3755011,1,"Hôtel de Ville - Centre.",48.806328,2.337232,0,0,OIF:SA:59:3755000,Europe/Paris,,OIF, +OIF:SP:59:3755013,1,"Maison des Gardes",48.802706,2.334307,0,0,OIF:SA:59:3755013,Europe/Paris,,OIF, +OIF:SP:59:3755014,1,"Bibliothèque",48.804944,2.334402,0,0,OIF:SA:59:3755014,Europe/Paris,,OIF, +OIF:SP:59:3755015,1,"La Poste",48.80427,2.333055,0,0,OIF:SA:59:3755015,Europe/Paris,,OIF, +OIF:SP:59:3755016,1,"Émile Raspail",48.800782,2.331586,0,0,OIF:SA:59:3755016,Europe/Paris,,OIF, +OIF:SP:59:3755017,1,"Cachan RER",48.800468,2.328701,0,0,OIF:SA:8775867,Europe/Paris,,OIF, +OIF:SP:59:3755018,1,"Centre de Santé",48.803227,2.330184,0,0,OIF:SA:59:3755018,Europe/Paris,,OIF, +OIF:SP:59:3755019,1,"Croix d'Arcueil",48.804611,2.328837,0,0,OIF:SA:59:3755019,Europe/Paris,,OIF, +OIF:SP:59:3755022,1,"Chaperon Vert",48.81093,2.33613,0,0,OIF:SA:59:3755022,Europe/Paris,,OIF, +OIF:SP:59:3755023,1,"Benoit Malon",48.810867,2.337532,0,0,OIF:SA:59:3754319,Europe/Paris,,OIF, +OIF:SP:59:3757174,1,"Massy-Palaiseau-RER",48.724763,2.26054,0,0,OIF:SA:8739357,Europe/Paris,,OIF, +OIF:SP:59:3757176,1,"Rue de Paris",48.722849,2.261847,0,0,OIF:SA:8739357,Europe/Paris,,OIF, +OIF:SP:59:3757177,1,"Rue de Paris",48.722868,2.262187,0,0,OIF:SA:8739357,Europe/Paris,,OIF, +OIF:SP:59:3757185,1,"Butte Chaumont",48.710599,2.263889,0,0,OIF:SA:59:3757185,Europe/Paris,,OIF, +OIF:SP:59:3757186,1,"Butte Chaumont",48.710861,2.265654,0,0,OIF:SA:59:3757185,Europe/Paris,,OIF, +OIF:SP:59:3757187,1,"La Fontaine",48.708931,2.269812,0,0,OIF:SA:59:3757187,Europe/Paris,,OIF, +OIF:SP:59:3757188,1,"La Fontaine",48.709488,2.268983,0,0,OIF:SA:59:3757187,Europe/Paris,,OIF, +OIF:SP:59:3757189,1,"Mairie de Champlan",48.706596,2.273428,0,0,OIF:SA:59:3757189,Europe/Paris,,OIF, +OIF:SP:59:3757190,1,"Mairie de Champlan",48.708709,2.273656,0,0,OIF:SA:59:3757189,Europe/Paris,,OIF, +OIF:SP:59:3757191,1,"Petit Champlan",48.703822,2.280588,0,0,OIF:SA:59:3757191,Europe/Paris,,OIF, +OIF:SP:59:3757192,1,"Petit Champlan",48.703921,2.280819,0,0,OIF:SA:59:3757191,Europe/Paris,,OIF, +OIF:SP:59:3757193,1,"Route de Versailles N0 21-30",48.69988,2.288971,0,0,OIF:SA:59:3757193,Europe/Paris,,OIF, +OIF:SP:59:3757194,1,"Route de Versailles N0 21-30",48.700123,2.288862,0,0,OIF:SA:59:3757193,Europe/Paris,,OIF, +OIF:SP:59:3757199,1,"Pablo Picasso",48.690366,2.27991,0,0,OIF:SA:46:11099,Europe/Paris,,OIF, +OIF:SP:59:3757201,1,"Barbusse-Baudot",48.720486,2.261905,0,0,OIF:SA:59:3757201,Europe/Paris,,OIF, +OIF:SP:59:3757206,1,"Barbusse-Baudot",48.720459,2.261756,0,0,OIF:SA:59:3757206,Europe/Paris,,OIF, +OIF:SP:59:3757207,1,"Cosmonautes-Flaubert",48.717204,2.260361,0,0,OIF:SA:46:10597,Europe/Paris,,OIF, +OIF:SP:59:3757208,1,"Cosmonautes-Flaubert",48.717258,2.260565,0,0,OIF:SA:46:10597,Europe/Paris,,OIF, +OIF:SP:59:3757209,1,"Cosmonautes-Stalingrad",48.714677,2.258653,0,0,OIF:SA:46:10599,Europe/Paris,,OIF, +OIF:SP:59:3757210,1,"Cosmonautes-Stalingrad",48.714623,2.258776,0,0,OIF:SA:46:10599,Europe/Paris,,OIF, +OIF:SP:59:3757211,1,"Pierre Curie",48.712584,2.26159,0,0,OIF:SA:59:3757211,Europe/Paris,,OIF, +OIF:SP:59:3757212,1,"Pierre Curie",48.713841,2.259198,0,0,OIF:SA:59:3757211,Europe/Paris,,OIF, +OIF:SP:59:3757223,1,"Place Charles Steber",48.697464,2.293345,0,0,OIF:SA:29:497,Europe/Paris,,OIF, +OIF:SP:59:3757224,1,"Place Charles Steber",48.69732,2.292843,0,0,OIF:SA:29:497,Europe/Paris,,OIF, +OIF:SP:59:3757225,1,"Canal de l'Yvette",48.696141,2.289354,0,0,OIF:SA:59:3757225,Europe/Paris,,OIF, +OIF:SP:59:3757226,1,"Canal de l'Yvette",48.696258,2.289544,0,0,OIF:SA:59:3757225,Europe/Paris,,OIF, +OIF:SP:59:3757227,1,"Hôpital de Longjumeau",48.691602,2.289874,0,0,OIF:SA:46:9966,Europe/Paris,,OIF, +OIF:SP:59:3757228,1,"Hôpital de Longjumeau",48.691962,2.290336,0,0,OIF:SA:46:9966,Europe/Paris,,OIF, +OIF:SP:59:3757229,1,"Les Arcades",48.689938,2.288668,0,0,OIF:SA:46:14941,Europe/Paris,,OIF, +OIF:SP:59:3757230,1,"Les Arcades",48.689399,2.288465,0,0,OIF:SA:46:14941,Europe/Paris,,OIF, +OIF:SP:59:3757231,1,"Docteur Cathelin",48.687485,2.289172,0,0,OIF:SA:46:14947,Europe/Paris,,OIF, +OIF:SP:59:3757232,1,"Docteur Cathelin",48.688455,2.2878,0,0,OIF:SA:46:14947,Europe/Paris,,OIF, +OIF:SP:59:3757233,1,"Résidence Fontanges",48.686659,2.291454,0,0,OIF:SA:46:14987,Europe/Paris,,OIF, +OIF:SP:59:3757234,1,"Résidence Fontanges",48.686901,2.291006,0,0,OIF:SA:46:14987,Europe/Paris,,OIF, +OIF:SP:59:3757235,1,"Résidence la Rocade",48.68746,2.294467,0,0,OIF:SA:46:14758,Europe/Paris,,OIF, +OIF:SP:59:3757236,1,"Résidence la Rocade",48.687424,2.294209,0,0,OIF:SA:46:14758,Europe/Paris,,OIF, +OIF:SP:59:3757237,1,"La Rocade-Lycee",48.688269,2.295512,0,0,OIF:SA:59:3757237,Europe/Paris,,OIF, +OIF:SP:59:3763974,1,"Porte d'Orléans - Métro",48.82246,2.325499,0,0,OIF:SA:59624,Europe/Paris,,OIF, +OIF:SP:59:3763984,1,"Carnot - Aristide Briand",48.79875,2.322634,0,0,OIF:SA:59:3763984,Europe/Paris,,OIF, +OIF:SP:59:3763988,1,"Place de la Résistance - Charles de Gaulle",48.785969,2.317074,0,0,OIF:SA:59:3763988,Europe/Paris,,OIF, +OIF:SP:59:3763989,1,"Rue du 8 Mai 1945",48.782715,2.314818,0,0,OIF:SA:59:3763989,Europe/Paris,,OIF, +OIF:SP:59:3763990,1,"Rue du 8 Mai 1945",48.782661,2.316831,0,0,OIF:SA:59:3763989,Europe/Paris,,OIF, +OIF:SP:59:3764017,1,"Place de France",48.733956,2.290353,0,0,OIF:SA:59:3764017,Europe/Paris,,OIF, +OIF:SP:59:3764018,1,"Place de France",48.733929,2.290774,0,0,OIF:SA:59:3764017,Europe/Paris,,OIF, +OIF:SP:59:3764019,1,"Massy - Opera-Theatre",48.731772,2.290884,0,0,OIF:SA:59:3764019,Europe/Paris,,OIF, +OIF:SP:59:3764026,1,"Cité Jardins",48.78996,2.31963,0,0,OIF:SA:59:3764026,Europe/Paris,,OIF, +OIF:SP:59:3764027,1,"Pont Royal - RER",48.793564,2.321044,0,0,OIF:SA:8775868,Europe/Paris,,OIF, +OIF:SP:59:3764028,1,"Marcel Bonnet",48.796917,2.322321,0,0,OIF:SA:59:3764028,Europe/Paris,,OIF, +OIF:SP:59:3764089,1,"Marche d'Antony",48.752314,2.302094,0,0,OIF:SA:59:3764089,Europe/Paris,,OIF, +OIF:SP:59:3764098,1,"Pierre Kolhmann",48.770311,2.316224,0,0,OIF:SA:59:3764098,Europe/Paris,,OIF, +OIF:SP:59:3764102,1,"Massy-Palaiseau RER",48.72503,2.255853,0,0,OIF:SA:8739357,Europe/Paris,,OIF, +OIF:SP:59:3764104,1,"Les Ruelles",48.728687,2.254271,0,0,OIF:SA:59:3764104,Europe/Paris,,OIF, +OIF:SP:59:3764105,1,"Les Ruelles",48.72839,2.253157,0,0,OIF:SA:59:3764104,Europe/Paris,,OIF, +OIF:SP:59:3764106,1,"Président Allende",48.730361,2.257353,0,0,OIF:SA:24:15077,Europe/Paris,,OIF, +OIF:SP:59:3764107,1,"Président Allende",48.730423,2.256863,0,0,OIF:SA:24:15077,Europe/Paris,,OIF, +OIF:SP:59:3764108,1,"Lycée de Vilgénis",48.73196,2.255774,0,0,OIF:SA:57:8050,Europe/Paris,,OIF, +OIF:SP:59:3764109,1,"Lycée de Vilgénis",48.73195,2.255217,0,0,OIF:SA:57:8050,Europe/Paris,,OIF, +OIF:SP:59:3764110,1,"Georges Mandel",48.734307,2.257387,0,0,OIF:SA:59:3764110,Europe/Paris,,OIF, +OIF:SP:59:3764111,1,"Georges Mandel",48.73446,2.257401,0,0,OIF:SA:59:3764110,Europe/Paris,,OIF, +OIF:SP:59:3764112,1,"Boulevard du 1er Mai",48.733627,2.262593,0,0,OIF:SA:59:3764112,Europe/Paris,,OIF, +OIF:SP:59:3764113,1,"Boulevard du 1er Mai",48.733753,2.26247,0,0,OIF:SA:59:3764112,Europe/Paris,,OIF, +OIF:SP:59:3764114,1,"Émile Zola",48.736836,2.263267,0,0,OIF:SA:59:3764114,Europe/Paris,,OIF, +OIF:SP:59:3764115,1,"Émile Zola",48.736458,2.262697,0,0,OIF:SA:59:3764114,Europe/Paris,,OIF, +OIF:SP:59:3764128,1,"Rue des Grillons",48.756816,2.276412,0,0,OIF:SA:59:3764128,Europe/Paris,,OIF, +OIF:SP:59:3764129,1,"Les Godets",48.757643,2.277594,0,0,OIF:SA:59:3764129,Europe/Paris,,OIF, +OIF:SP:59:3764130,1,"Les Godets",48.757545,2.278178,0,0,OIF:SA:59:3764129,Europe/Paris,,OIF, +OIF:SP:59:3764131,1,"Marcel Maillard",48.756459,2.281863,0,0,OIF:SA:59:3764131,Europe/Paris,,OIF, +OIF:SP:59:3764132,1,"Marcel Maillard",48.756692,2.281401,0,0,OIF:SA:59:3764131,Europe/Paris,,OIF, +OIF:SP:59:3764133,1,"Julien Perin",48.755364,2.286989,0,0,OIF:SA:59:3764133,Europe/Paris,,OIF, +OIF:SP:59:3764134,1,"Julien Perin",48.755607,2.286187,0,0,OIF:SA:59:3764133,Europe/Paris,,OIF, +OIF:SP:59:3764135,1,"François Môle",48.754342,2.291381,0,0,OIF:SA:59:3764135,Europe/Paris,,OIF, +OIF:SP:59:3764136,1,"François Môle",48.754414,2.29168,0,0,OIF:SA:59:3764135,Europe/Paris,,OIF, +OIF:SP:59:3764140,1,"Antony RER",48.755208,2.30129,0,0,OIF:SA:8775875,Europe/Paris,,OIF, +OIF:SP:59:3764141,1,"Rue des Grillons",48.755943,2.275448,0,0,OIF:SA:59:3764141,Europe/Paris,,OIF, +OIF:SP:59:3764143,1,"D'Estienne d'Orves - Général Leclerc",48.746086,2.264817,0,0,OIF:SA:59:3764143,Europe/Paris,,OIF, +OIF:SP:59:3764144,1,"Vallée de la Bièvre",48.73781,2.267615,0,0,OIF:SA:59:3764144,Europe/Paris,,OIF, +OIF:SP:59:3764430,1,"Montsouris-Tombe Issoire",48.823692,2.331842,0,0,OIF:SA:59108,Europe/Paris,,OIF, +OIF:SP:59:3764433,1,"Parc Montsouris",48.824699,2.335803,0,0,OIF:SA:59:3754209,Europe/Paris,,OIF, +OIF:SP:59:3764436,1,"Dareau-Rene Coty",48.83055,2.33357,0,0,OIF:SA:59:3764436,Europe/Paris,,OIF, +OIF:SP:59:3764437,1,"Denfert-Rochereau - Métro-RER",48.833165,2.333066,0,0,OIF:SA:8775863,Europe/Paris,,OIF, +OIF:SP:59:3764438,1,"Denfert-Rochereau-Froidevaux",48.834675,2.331664,0,0,OIF:SA:8775863,Europe/Paris,,OIF, +OIF:SP:59:3764439,1,"Denfert-Rochereau-Froidevaux",48.834226,2.330752,0,0,OIF:SA:8775863,Europe/Paris,,OIF, +OIF:SP:59:3764440,1,"Froidevaux-Gassendi",48.836212,2.327212,0,0,OIF:SA:59:3764440,Europe/Paris,,OIF, +OIF:SP:59:3764441,1,"Froidevaux-Gassendi",48.836167,2.326994,0,0,OIF:SA:59:3764440,Europe/Paris,,OIF, +OIF:SP:59:3764444,1,"Vercingétorix",48.837424,2.319424,0,0,OIF:SA:59529,Europe/Paris,,OIF, +OIF:SP:59:3764445,1,"Vercingétorix",48.83728,2.319233,0,0,OIF:SA:59529,Europe/Paris,,OIF, +OIF:SP:59:3764446,1,"Montparnasse 2 - Gare TGV",48.838718,2.31704,0,0,OIF:SA:8739110,Europe/Paris,,OIF, +OIF:SP:59:3764447,1,"Montparnasse 2 - Gare TGV",48.838691,2.316741,0,0,OIF:SA:8739110,Europe/Paris,,OIF, +OIF:SP:59:3764448,1,"Armorique-Pasteur",48.840093,2.314739,0,0,OIF:SA:59:3764448,Europe/Paris,,OIF, +OIF:SP:59:3764449,1,"Cotentin-Montparnasse 3",48.8387,2.313991,0,0,OIF:SA:8739110,Europe/Paris,,OIF, +OIF:SP:59:3764450,1,"Institut Pasteur",48.839391,2.309837,0,0,OIF:SA:59:3764450,Europe/Paris,,OIF, +OIF:SP:59:3764451,1,"Institut Pasteur",48.838987,2.311866,0,0,OIF:SA:59:3764450,Europe/Paris,,OIF, +OIF:SP:59:3764452,1,"Procession",48.837943,2.307987,0,0,OIF:SA:14:14953,Europe/Paris,,OIF, +OIF:SP:59:3764453,1,"Alleray",48.836936,2.306993,0,0,OIF:SA:14:14954,Europe/Paris,,OIF, +OIF:SP:59:3764454,1,"Alleray",48.837026,2.306095,0,0,OIF:SA:14:14954,Europe/Paris,,OIF, +OIF:SP:59:3764455,1,"Alleray-la Quintinie",48.837115,2.302636,0,0,OIF:SA:59:3764455,Europe/Paris,,OIF, +OIF:SP:59:3764456,1,"Vaugirard",48.838993,2.300334,0,0,OIF:SA:59601,Europe/Paris,,OIF, +OIF:SP:59:3764457,1,"Mairie du 15ème",48.842039,2.299052,0,0,OIF:SA:59:3749887,Europe/Paris,,OIF, +OIF:SP:59:3764458,1,"Mairie du 15ème",48.841895,2.298916,0,0,OIF:SA:59:3749887,Europe/Paris,,OIF, +OIF:SP:59:3764460,1,"Péclet",48.842893,2.29837,0,0,OIF:SA:59:3749889,Europe/Paris,,OIF, +OIF:SP:59:3764461,1,"Félix Faure",48.843574,2.293754,0,0,OIF:SA:59474,Europe/Paris,,OIF, +OIF:SP:59:3764462,1,"Félix Faure",48.843341,2.29374,0,0,OIF:SA:59474,Europe/Paris,,OIF, +OIF:SP:59:3764463,1,"Violet",48.84502,2.289804,0,0,OIF:SA:59474,Europe/Paris,,OIF, +OIF:SP:59:3764464,1,"Violet",48.844786,2.290022,0,0,OIF:SA:59474,Europe/Paris,,OIF, +OIF:SP:59:3764465,1,"Charles Michels",48.846357,2.286439,0,0,OIF:SA:59386,Europe/Paris,,OIF, +OIF:SP:59:3764466,1,"Charles Michels",48.846348,2.286194,0,0,OIF:SA:59386,Europe/Paris,,OIF, +OIF:SP:59:3764467,1,"Émile Zola-Javel",48.8464,2.281332,0,0,OIF:SA:59:3764467,Europe/Paris,,OIF, +OIF:SP:59:3764468,1,"Émile Zola-Javel",48.846202,2.281305,0,0,OIF:SA:59:3764467,Europe/Paris,,OIF, +OIF:SP:59:3764469,1,"Javel",48.845957,2.276635,0,0,OIF:SA:59548,Europe/Paris,,OIF, +OIF:SP:59:3764470,1,"Javel",48.846039,2.277833,0,0,OIF:SA:59548,Europe/Paris,,OIF, +OIF:SP:59:3764471,1,"Cauchy",48.84256,2.277034,0,0,OIF:SA:59:3764471,Europe/Paris,,OIF, +OIF:SP:59:3764472,1,"Cauchy",48.84274,2.277619,0,0,OIF:SA:59:3764471,Europe/Paris,,OIF, +OIF:SP:59:3764473,1,"Parc André Citroën",48.840584,2.277853,0,0,OIF:SA:59:3764473,Europe/Paris,,OIF, +OIF:SP:59:3764474,1,"Parc André Citroën",48.839946,2.27814,0,0,OIF:SA:59:3764473,Europe/Paris,,OIF, +OIF:SP:59:3764475,1,"Place Balard",48.836971,2.278415,0,0,OIF:SA:59477,Europe/Paris,,OIF, +OIF:SP:59:3764476,1,"Place Balard",48.837285,2.277448,0,0,OIF:SA:59477,Europe/Paris,,OIF, +OIF:SP:59:3764477,1,"Rue Leblanc",48.839467,2.274559,0,0,OIF:SA:59:3764477,Europe/Paris,,OIF, +OIF:SP:59:3764478,1,"Rue Leblanc",48.839449,2.274287,0,0,OIF:SA:59:3764477,Europe/Paris,,OIF, +OIF:SP:59:3764479,1,"Hôpital Européen Georges Pompidou",48.839996,2.272271,0,0,OIF:SA:8739332,Europe/Paris,,OIF, +OIF:SP:59:3764480,1,"Hôpital Européen Georges Pompidou",48.839844,2.272312,0,0,OIF:SA:8739332,Europe/Paris,,OIF, +OIF:SP:59:3764483,1,"Cambronne - Vaugirard",48.840036,2.304364,0,0,OIF:SA:59:3749884,Europe/Paris,,OIF, +OIF:SP:59:3764484,1,"Falguière",48.836461,2.31037,0,0,OIF:SA:59602,Europe/Paris,,OIF, +OIF:SP:59:3764485,1,"Pasteur - Falguière",48.840928,2.313894,0,0,OIF:SA:59452,Europe/Paris,,OIF, +OIF:SP:59:3764486,1,"Denfert-Rochereau",48.833408,2.332372,0,0,OIF:SA:8775863,Europe/Paris,,OIF, +OIF:SP:59:3764488,1,"Jourdan-Montsouris",48.821643,2.334469,0,0,OIF:SA:59108,Europe/Paris,,OIF, +OIF:SP:59:3764494,1,"Pigalle",48.882192,2.337396,0,0,OIF:SA:59420,Europe/Paris,,OIF, +OIF:SP:59:3764496,1,"Navarin",48.880179,2.337301,0,0,OIF:SA:59:3764496,Europe/Paris,,OIF, +OIF:SP:59:3764497,1,"Navarin",48.879253,2.340067,0,0,OIF:SA:59:3764496,Europe/Paris,,OIF, +OIF:SP:59:3764498,1,"Saint-Georges",48.878696,2.337055,0,0,OIF:SA:59512,Europe/Paris,,OIF, +OIF:SP:59:3764499,1,"Saint-Georges - Châteaudun",48.876566,2.336987,0,0,OIF:SA:59515,Europe/Paris,,OIF, +OIF:SP:59:3764501,1,"Carrefour de Châteaudun",48.876413,2.339821,0,0,OIF:SA:59515,Europe/Paris,,OIF, +OIF:SP:59:3764502,1,"Provence - Drouot",48.874579,2.340748,0,0,OIF:SA:59515,Europe/Paris,,OIF, +OIF:SP:59:3764503,1,"Richelieu - Drouot - Mairie du 9ème",48.872225,2.340066,0,0,OIF:SA:59463,Europe/Paris,,OIF, +OIF:SP:59:3764505,1,"Bibliothèque Nationale",48.867965,2.337968,0,0,OIF:SA:59437,Europe/Paris,,OIF, +OIF:SP:59:3764506,1,"Palais Royal - Comédie Française",48.862914,2.336129,0,0,OIF:SA:59591,Europe/Paris,,OIF, +OIF:SP:59:3764507,1,"Louvre - Rivoli",48.860559,2.340597,0,0,OIF:SA:59231,Europe/Paris,,OIF, +OIF:SP:59:3764508,1,"Louvre - Rivoli",48.861494,2.341292,0,0,OIF:SA:59231,Europe/Paris,,OIF, +OIF:SP:59:3764509,1,"Pont Neuf - Quai du Louvre",48.85824,2.342953,0,0,OIF:SA:59664,Europe/Paris,,OIF, +OIF:SP:59:3764513,1,"Hôtel de Ville",48.857269,2.352814,0,0,OIF:SA:59590,Europe/Paris,,OIF, +OIF:SP:59:3764514,1,"Pont Louis Philippe",48.854455,2.354407,0,0,OIF:SA:59:3764514,Europe/Paris,,OIF, +OIF:SP:59:3764515,1,"Île Saint-Louis",48.85166,2.356244,0,0,OIF:SA:59576,Europe/Paris,,OIF, +OIF:SP:59:3764516,1,"Institut du Monde Arabe",48.849108,2.355631,0,0,OIF:SA:59:3748095,Europe/Paris,,OIF, +OIF:SP:59:3764517,1,"Institut du Monde Arabe",48.849045,2.355794,0,0,OIF:SA:59:3748095,Europe/Paris,,OIF, +OIF:SP:59:3764518,1,"Jussieu",48.84625,2.35439,0,0,OIF:SA:59300,Europe/Paris,,OIF, +OIF:SP:59:3764519,1,"Jussieu",48.846205,2.354595,0,0,OIF:SA:59300,Europe/Paris,,OIF, +OIF:SP:59:3764522,1,"Saint-Marcel - Jeanne d'Arc",48.838161,2.356512,0,0,OIF:SA:59:3764522,Europe/Paris,,OIF, +OIF:SP:59:3764527,1,"Place d'Italie",48.831501,2.354699,0,0,OIF:SA:59275,Europe/Paris,,OIF, +OIF:SP:59:3764535,1,"Rungis",48.822721,2.347359,0,0,OIF:SA:59:3754265,Europe/Paris,,OIF, +OIF:SP:59:3764536,1,"Amiral Mouchez",48.821769,2.343861,0,0,OIF:SA:59120,Europe/Paris,,OIF, +OIF:SP:59:3764537,1,"Amiral Mouchez",48.821526,2.34318,0,0,OIF:SA:59120,Europe/Paris,,OIF, +OIF:SP:59:3764538,1,"Stade Charléty - Porte de Gentilly",48.820277,2.34382,0,0,OIF:SA:59120,Europe/Paris,,OIF, +OIF:SP:59:3764540,1,"Place d'Italie - Mairie du 13ème",48.832202,2.35621,0,0,OIF:SA:59275,Europe/Paris,,OIF, +OIF:SP:59:3764541,1,"Saint-Marcel - Jeanne d'Arc",48.838736,2.357016,0,0,OIF:SA:59:3764541,Europe/Paris,,OIF, +OIF:SP:59:3764542,1,"Buffon - la Mosquée",48.841693,2.355846,0,0,OIF:SA:59:3764542,Europe/Paris,,OIF, +OIF:SP:59:3764543,1,"Cuvier - Jardin des Plantes",48.844138,2.354921,0,0,OIF:SA:59277,Europe/Paris,,OIF, +OIF:SP:59:3764546,1,"Pont Marie",48.853664,2.357239,0,0,OIF:SA:59576,Europe/Paris,,OIF, +OIF:SP:59:3764547,1,"Rue Vieille du Temple - Mairie du 4ème",48.856414,2.356382,0,0,OIF:SA:59:3687084,Europe/Paris,,OIF, +OIF:SP:59:3764548,1,"Rivoli - Pont Neuf",48.859885,2.344302,0,0,OIF:SA:59566,Europe/Paris,,OIF, +OIF:SP:59:3764549,1,"Coquillière - les Halles",48.863363,2.342259,0,0,OIF:SA:59:3764549,Europe/Paris,,OIF, +OIF:SP:59:3764550,1,"Louvre - Etienne Marcel",48.865655,2.343403,0,0,OIF:SA:59:3747878,Europe/Paris,,OIF, +OIF:SP:59:3764551,1,"Réaumur - Montmartre",48.868306,2.343663,0,0,OIF:SA:59:3749784,Europe/Paris,,OIF, +OIF:SP:59:3764552,1,"Grands Boulevards",48.870535,2.342914,0,0,OIF:SA:59464,Europe/Paris,,OIF, +OIF:SP:59:3764553,1,"Provence - Faubourg Montmartre",48.874247,2.342205,0,0,OIF:SA:59:3749786,Europe/Paris,,OIF, +OIF:SP:59:3764554,1,"Rochechouart-Martyrs",48.881392,2.339999,0,0,OIF:SA:59:3740303,Europe/Paris,,OIF, +OIF:SP:59:3764604,1,"Gare du Nord",48.881174,2.357509,0,0,OIF:SA:8727100,Europe/Paris,,OIF, +OIF:SP:59:3764610,1,"Mairie du 10ème",48.872439,2.357424,0,0,OIF:SA:59630,Europe/Paris,,OIF, +OIF:SP:59:3764611,1,"Porte Saint-Martin",48.868781,2.355352,0,0,OIF:SA:59253,Europe/Paris,,OIF, +OIF:SP:59:3764615,1,"Hôtel de Ville",48.857521,2.350431,0,0,OIF:SA:59590,Europe/Paris,,OIF, +OIF:SP:59:3764616,1,"Châtelet",48.857557,2.348742,0,0,OIF:SA:59566,Europe/Paris,,OIF, +OIF:SP:59:3764617,1,"Châtelet",48.857907,2.348074,0,0,OIF:SA:59566,Europe/Paris,,OIF, +OIF:SP:59:3764619,1,"Saint-Michel - Saint-Germain",48.85238,2.343483,0,0,OIF:SA:8754731,Europe/Paris,,OIF, +OIF:SP:59:3764620,1,"Les Écoles",48.849792,2.342121,0,0,OIF:SA:59377,Europe/Paris,,OIF, +OIF:SP:59:3764621,1,"Luxembourg",48.846638,2.340269,0,0,OIF:SA:8775861,Europe/Paris,,OIF, +OIF:SP:59:3764622,1,"Auguste Comte",48.844148,2.338894,0,0,OIF:SA:59:3764622,Europe/Paris,,OIF, +OIF:SP:59:3764623,1,"Val de Grâce",48.842081,2.337763,0,0,OIF:SA:59:3764623,Europe/Paris,,OIF, +OIF:SP:59:3764624,1,"Observatoire - Port Royal",48.840292,2.336511,0,0,OIF:SA:8775862,Europe/Paris,,OIF, +OIF:SP:59:3764625,1,"Hôpital Saint-Vincent de Paul",48.837371,2.335136,0,0,OIF:SA:59:3764625,Europe/Paris,,OIF, +OIF:SP:59:3764626,1,"Hôpital Saint-Vincent de Paul",48.837228,2.335449,0,0,OIF:SA:59:3764625,Europe/Paris,,OIF, +OIF:SP:59:3764627,1,"Denfert-Rochereau - Arago",48.834873,2.332753,0,0,OIF:SA:8775863,Europe/Paris,,OIF, +OIF:SP:59:3764628,1,"Denfert-Rochereau - Arago",48.834801,2.333053,0,0,OIF:SA:8775863,Europe/Paris,,OIF, +OIF:SP:59:3764630,1,"Mouton - Duvernet",48.83161,2.330003,0,0,OIF:SA:59260,Europe/Paris,,OIF, +OIF:SP:59:3764633,1,"Alésia - Général Leclerc",48.826891,2.326288,0,0,OIF:SA:59631,Europe/Paris,,OIF, +OIF:SP:59:3764635,1,"Porte d'Orléans",48.823692,2.327146,0,0,OIF:SA:59624,Europe/Paris,,OIF, +OIF:SP:59:3764636,1,"Porte d'Orléans",48.82362,2.326316,0,0,OIF:SA:59624,Europe/Paris,,OIF, +OIF:SP:59:3764637,1,"Denfert-Rochereau - Daguerre",48.832257,2.330902,0,0,OIF:SA:59260,Europe/Paris,,OIF, +OIF:SP:59:3764638,1,"Observatoire - Port Royal",48.839259,2.336783,0,0,OIF:SA:8775862,Europe/Paris,,OIF, +OIF:SP:59:3764639,1,"Val de Grâce",48.841955,2.338076,0,0,OIF:SA:59:3764623,Europe/Paris,,OIF, +OIF:SP:59:3764640,1,"Auguste Comte",48.843555,2.338948,0,0,OIF:SA:59:3764622,Europe/Paris,,OIF, +OIF:SP:59:3764641,1,"Luxembourg",48.846044,2.340296,0,0,OIF:SA:8775861,Europe/Paris,,OIF, +OIF:SP:59:3764642,1,"Les Écoles",48.850071,2.342571,0,0,OIF:SA:59:3764642,Europe/Paris,,OIF, +OIF:SP:59:3764647,1,"Réaumur - Sébastopol",48.86587,2.352476,0,0,OIF:SA:59586,Europe/Paris,,OIF, +OIF:SP:59:3764648,1,"Strasbourg - Saint-Denis",48.868341,2.35388,0,0,OIF:SA:59253,Europe/Paris,,OIF, +OIF:SP:59:3764649,1,"Château d'Eau",48.87234,2.356102,0,0,OIF:SA:59630,Europe/Paris,,OIF, +OIF:SP:59:3764675,1,"Porte d'Orléans",48.823836,2.327309,0,0,OIF:SA:59624,Europe/Paris,,OIF, +OIF:SP:59:3764694,1,"Porte d'Orléans",48.823881,2.326397,0,0,OIF:SA:59624,Europe/Paris,,OIF, +OIF:SP:59:3764698,1,"Alésia - Maine",48.828572,2.326723,0,0,OIF:SA:59631,Europe/Paris,,OIF, +OIF:SP:59:3764699,1,"Alésia - Maine",48.828428,2.326492,0,0,OIF:SA:59631,Europe/Paris,,OIF, +OIF:SP:59:3764700,1,"Mairie du 14ème",48.832131,2.325266,0,0,OIF:SA:59:3764700,Europe/Paris,,OIF, +OIF:SP:59:3764701,1,"Mairie du 14ème",48.832095,2.32498,0,0,OIF:SA:59:3764700,Europe/Paris,,OIF, +OIF:SP:59:3764702,1,"Château - Mairie du 14ème",48.833848,2.324557,0,0,OIF:SA:59:3764702,Europe/Paris,,OIF, +OIF:SP:59:3764704,1,"Losserand - Maine",48.835564,2.32389,0,0,OIF:SA:59:3764704,Europe/Paris,,OIF, +OIF:SP:59:3764705,1,"Losserand - Maine",48.836436,2.323223,0,0,OIF:SA:59:3764704,Europe/Paris,,OIF, +OIF:SP:59:3764711,1,"Place du 18 Juin 1940 - Rue de l'Arrivée",48.844399,2.322635,0,0,OIF:SA:8739100,Europe/Paris,,OIF, +OIF:SP:59:3764712,1,"Maine - Vaugirard",48.84598,2.318495,0,0,OIF:SA:59:3764712,Europe/Paris,,OIF, +OIF:SP:59:3764713,1,"Hôpital des Enfants Malades",48.8466,2.315526,0,0,OIF:SA:59602,Europe/Paris,,OIF, +OIF:SP:59:3764714,1,"Breteuil",48.847255,2.312257,0,0,OIF:SA:59:3764714,Europe/Paris,,OIF, +OIF:SP:59:3764715,1,"El Salvador",48.851057,2.311438,0,0,OIF:SA:59:3764715,Europe/Paris,,OIF, +OIF:SP:59:3764716,1,"El Salvador",48.850751,2.311425,0,0,OIF:SA:59:3764715,Europe/Paris,,OIF, +OIF:SP:59:3764719,1,"Duquesne - Lowendal",48.853015,2.308428,0,0,OIF:SA:59:3764719,Europe/Paris,,OIF, +OIF:SP:59:3764720,1,"Duquesne - Lowendal",48.852503,2.308115,0,0,OIF:SA:59:3764719,Europe/Paris,,OIF, +OIF:SP:59:3764721,1,"École Militaire",48.854759,2.306438,0,0,OIF:SA:59470,Europe/Paris,,OIF, +OIF:SP:59:3764722,1,"École Militaire",48.854093,2.306084,0,0,OIF:SA:59470,Europe/Paris,,OIF, +OIF:SP:59:3764723,1,"Invalides - la Tour Maubourg",48.856826,2.309529,0,0,OIF:SA:59658,Europe/Paris,,OIF, +OIF:SP:59:3764724,1,"Invalides - la Tour Maubourg",48.857105,2.309515,0,0,OIF:SA:59658,Europe/Paris,,OIF, +OIF:SP:59:3764725,1,"La Tour Maubourg - Saint-Dominique",48.860341,2.310331,0,0,OIF:SA:59:3687116,Europe/Paris,,OIF, +OIF:SP:59:3764726,1,"La Tour Maubourg - Saint-Dominique",48.859649,2.309977,0,0,OIF:SA:59:3687116,Europe/Paris,,OIF, +OIF:SP:59:3764727,1,"Pont des Invalides - Place de Finlande",48.8623,2.310534,0,0,OIF:SA:59:3764727,Europe/Paris,,OIF, +OIF:SP:59:3764728,1,"Pont des Invalides - Place de Finlande",48.862003,2.310207,0,0,OIF:SA:59:3764727,Europe/Paris,,OIF, +OIF:SP:59:3764729,1,"Palais de la Découverte",48.865257,2.310437,0,0,OIF:SA:59:3764729,Europe/Paris,,OIF, +OIF:SP:59:3764730,1,"Palais de la Découverte",48.865212,2.310069,0,0,OIF:SA:59:3764729,Europe/Paris,,OIF, +OIF:SP:59:3764732,1,"Rond-Point des Champs-Élysées",48.868537,2.309986,0,0,OIF:SA:59232,Europe/Paris,,OIF, +OIF:SP:59:3764736,1,"Saint-Augustin",48.874875,2.318294,0,0,OIF:SA:59489,Europe/Paris,,OIF, +OIF:SP:59:3764738,1,"Gare Saint-Lazare",48.875558,2.323307,0,0,OIF:SA:8738400,Europe/Paris,,OIF, +OIF:SP:59:3764739,1,"Gare Saint-Lazare",48.875514,2.32343,0,0,OIF:SA:8738400,Europe/Paris,,OIF, +OIF:SP:59:3764742,1,"Rond-Point des Champs-Élysées - Franklin D. Roosevelt",48.869436,2.309903,0,0,OIF:SA:59232,Europe/Paris,,OIF, +OIF:SP:59:3764746,1,"Maine - Vaugirard",48.845531,2.318835,0,0,OIF:SA:59602,Europe/Paris,,OIF, +OIF:SP:59:3764747,1,"Place du 18 Juin 1940",48.844246,2.322376,0,0,OIF:SA:8739100,Europe/Paris,,OIF, +OIF:SP:59:3764763,1,"Fontenoy - Unesco",48.851128,2.306631,0,0,OIF:SA:59:3764763,Europe/Paris,,OIF, +OIF:SP:59:3764765,1,"École Militaire",48.854354,2.306057,0,0,OIF:SA:59470,Europe/Paris,,OIF, +OIF:SP:59:3764768,1,"La Boétie - Miromesnil",48.87412,2.316386,0,0,OIF:SA:59494,Europe/Paris,,OIF, +OIF:SP:59:3764776,1,"Rue Cler",48.855577,2.307282,0,0,OIF:SA:59:3764776,Europe/Paris,,OIF, +OIF:SP:59:3764779,1,"Fontenoy - Unesco",48.851038,2.307421,0,0,OIF:SA:59:3764763,Europe/Paris,,OIF, +OIF:SP:59:3764781,1,"Breteuil",48.84686,2.311481,0,0,OIF:SA:59:3764714,Europe/Paris,,OIF, +OIF:SP:59:3764794,1,"Gare Saint-Lazare",48.875172,2.324834,0,0,OIF:SA:8738400,Europe/Paris,,OIF, +OIF:SP:59:3764800,1,"Opéra",48.871092,2.331606,0,0,OIF:SA:59209,Europe/Paris,,OIF, +OIF:SP:59:3764802,1,"Opéra - 4 Septembre",48.869609,2.332573,0,0,OIF:SA:59209,Europe/Paris,,OIF, +OIF:SP:59:3764804,1,"Pyramides",48.866994,2.33369,0,0,OIF:SA:59290,Europe/Paris,,OIF, +OIF:SP:59:3764805,1,"Pyramides",48.866239,2.334372,0,0,OIF:SA:59290,Europe/Paris,,OIF, +OIF:SP:59:3764806,1,"Palais Royal - Comédie Française",48.863777,2.33474,0,0,OIF:SA:59591,Europe/Paris,,OIF, +OIF:SP:59:3764807,1,"Saint-Honoré - Valois",48.862249,2.338567,0,0,OIF:SA:59591,Europe/Paris,,OIF, +OIF:SP:59:3764809,1,"Louvre - Rivoli",48.861134,2.34042,0,0,OIF:SA:59231,Europe/Paris,,OIF, +OIF:SP:59:3764811,1,"Châtelet",48.857332,2.346331,0,0,OIF:SA:59566,Europe/Paris,,OIF, +OIF:SP:59:3764816,1,"Luxembourg",48.846332,2.340868,0,0,OIF:SA:8775861,Europe/Paris,,OIF, +OIF:SP:59:3764817,1,"Luxembourg",48.846422,2.341141,0,0,OIF:SA:8775861,Europe/Paris,,OIF, +OIF:SP:59:3764818,1,"Saint-Jacques - Gay-Lussac",48.843851,2.342134,0,0,OIF:SA:59:3764818,Europe/Paris,,OIF, +OIF:SP:59:3764819,1,"Saint-Jacques - Gay-Lussac",48.843878,2.342407,0,0,OIF:SA:59:3764818,Europe/Paris,,OIF, +OIF:SP:59:3764820,1,"Feuillantines",48.841694,2.343223,0,0,OIF:SA:59:3764820,Europe/Paris,,OIF, +OIF:SP:59:3764821,1,"Feuillantines",48.84164,2.343523,0,0,OIF:SA:59:3764820,Europe/Paris,,OIF, +OIF:SP:59:3764822,1,"Berthollet - Vauquelin",48.839897,2.345837,0,0,OIF:SA:59:3764822,Europe/Paris,,OIF, +OIF:SP:59:3764823,1,"Berthollet - Vauquelin",48.840472,2.345878,0,0,OIF:SA:59:3764822,Europe/Paris,,OIF, +OIF:SP:59:3764824,1,"Port Royal - Berthollet",48.837317,2.345292,0,0,OIF:SA:59:3764824,Europe/Paris,,OIF, +OIF:SP:59:3764825,1,"Glacière - Arago",48.834612,2.344788,0,0,OIF:SA:59:3764825,Europe/Paris,,OIF, +OIF:SP:59:3764826,1,"Glacière - Arago",48.835502,2.34521,0,0,OIF:SA:59:3764825,Europe/Paris,,OIF, +OIF:SP:59:3764827,1,"Glacière - Nordmann",48.83277,2.344407,0,0,OIF:SA:59651,Europe/Paris,,OIF, +OIF:SP:59:3764828,1,"Glacière - Nordmann",48.832985,2.34472,0,0,OIF:SA:59651,Europe/Paris,,OIF, +OIF:SP:59:3764829,1,"Glacière - Auguste Blanqui",48.830577,2.343916,0,0,OIF:SA:59651,Europe/Paris,,OIF, +OIF:SP:59:3764830,1,"Glacière - Auguste Blanqui",48.830999,2.344189,0,0,OIF:SA:59651,Europe/Paris,,OIF, +OIF:SP:59:3764831,1,"Daviel",48.828833,2.342541,0,0,OIF:SA:59651,Europe/Paris,,OIF, +OIF:SP:59:3764832,1,"Daviel",48.828779,2.343222,0,0,OIF:SA:59651,Europe/Paris,,OIF, +OIF:SP:59:3764834,1,"Parc Montsouris",48.824169,2.339941,0,0,OIF:SA:59:3754209,Europe/Paris,,OIF, +OIF:SP:59:3764836,1,"Stade Charléty - Porte de Gentilly",48.819648,2.343738,0,0,OIF:SA:59120,Europe/Paris,,OIF, +OIF:SP:59:3764838,1,"Amiral Mouchez - Charbonnel",48.822371,2.341969,0,0,OIF:SA:59:3764838,Europe/Paris,,OIF, +OIF:SP:59:3764839,1,"Parc Montsouris",48.824645,2.341629,0,0,OIF:SA:59:3754209,Europe/Paris,,OIF, +OIF:SP:59:3764840,1,"Glacière - Tolbiac",48.826685,2.342037,0,0,OIF:SA:59:3754202,Europe/Paris,,OIF, +OIF:SP:59:3764841,1,"Port Royal - Berthollet",48.837964,2.345633,0,0,OIF:SA:59:3764824,Europe/Paris,,OIF, +OIF:SP:59:3764963,1,"Montparnasse 2 - Gare TGV",48.83879,2.316986,0,0,OIF:SA:8739110,Europe/Paris,,OIF, +OIF:SP:59:3764965,1,"Armorique - Musée Postal",48.840776,2.316427,0,0,OIF:SA:59:3764965,Europe/Paris,,OIF, +OIF:SP:59:3764966,1,"Gare Montparnasse",48.841882,2.32028,0,0,OIF:SA:8739100,Europe/Paris,,OIF, +OIF:SP:59:3764967,1,"Place du 18 Juin 1940",48.8435,2.32382,0,0,OIF:SA:8739100,Europe/Paris,,OIF, +OIF:SP:59:3764969,1,"Campagne Première",48.840364,2.334141,0,0,OIF:SA:59:3764969,Europe/Paris,,OIF, +OIF:SP:59:3764970,1,"Observatoire - Port Royal",48.839439,2.337123,0,0,OIF:SA:8775862,Europe/Paris,,OIF, +OIF:SP:59:3764971,1,"Port Royal - Saint-Jacques",48.838729,2.339928,0,0,OIF:SA:8775862,Europe/Paris,,OIF, +OIF:SP:59:3764972,1,"Port Royal - Berthollet",48.837596,2.345156,0,0,OIF:SA:59:3764824,Europe/Paris,,OIF, +OIF:SP:59:3764973,1,"Les Gobelins",48.836921,2.352631,0,0,OIF:SA:59294,Europe/Paris,,OIF, +OIF:SP:59:3764975,1,"Saint-Marcel - la Pitié",48.839607,2.361046,0,0,OIF:SA:59335,Europe/Paris,,OIF, +OIF:SP:59:3764976,1,"Gare d'Austerlitz",48.842608,2.364016,0,0,OIF:SA:8754700,Europe/Paris,,OIF, +OIF:SP:59:3764981,1,"Lyon - Ledru Rollin",48.848879,2.372285,0,0,OIF:SA:59:3747836,Europe/Paris,,OIF, +OIF:SP:59:3764984,1,"Bastille",48.85234,2.369251,0,0,OIF:SA:59238,Europe/Paris,,OIF, +OIF:SP:59:3764985,1,"Gare d'Austerlitz",48.84312,2.364016,0,0,OIF:SA:8754700,Europe/Paris,,OIF, +OIF:SP:59:3764986,1,"Saint-Marcel - la Pitié",48.839787,2.360883,0,0,OIF:SA:59335,Europe/Paris,,OIF, +OIF:SP:59:3764987,1,"Saint-Marcel - Jeanne d'Arc",48.838269,2.356185,0,0,OIF:SA:59:3764541,Europe/Paris,,OIF, +OIF:SP:59:3764988,1,"Les Gobelins",48.837029,2.352277,0,0,OIF:SA:59294,Europe/Paris,,OIF, +OIF:SP:59:3764989,1,"Port Royal - Berthollet",48.837794,2.345184,0,0,OIF:SA:59:3764824,Europe/Paris,,OIF, +OIF:SP:59:3764990,1,"Port Royal - Saint-Jacques",48.839097,2.339315,0,0,OIF:SA:8775862,Europe/Paris,,OIF, +OIF:SP:59:3764991,1,"Observatoire - Port Royal",48.839654,2.337368,0,0,OIF:SA:8775862,Europe/Paris,,OIF, +OIF:SP:59:3764992,1,"Campagne Première",48.840948,2.333284,0,0,OIF:SA:59:3764969,Europe/Paris,,OIF, +OIF:SP:59:3764996,1,"Gare Montparnasse",48.840606,2.321492,0,0,OIF:SA:8739100,Europe/Paris,,OIF, +OIF:SP:59:3764997,1,"Place de Catalogne",48.83888,2.320009,0,0,OIF:SA:59:3764997,Europe/Paris,,OIF, +OIF:SP:59:3765147,1,"Opéra",48.871928,2.332832,0,0,OIF:SA:59209,Europe/Paris,,OIF, +OIF:SP:59:3765148,1,"Opéra",48.871191,2.332123,0,0,OIF:SA:59209,Europe/Paris,,OIF, +OIF:SP:59:3765149,1,"Gluck - Haussmann",48.872809,2.331946,0,0,OIF:SA:59568,Europe/Paris,,OIF, +OIF:SP:59:3765150,1,"Havre - Caumartin",48.873743,2.328008,0,0,OIF:SA:59442,Europe/Paris,,OIF, +OIF:SP:59:3765152,1,"Gare Saint-Lazare",48.877464,2.323062,0,0,OIF:SA:8738400,Europe/Paris,,OIF, +OIF:SP:59:3765154,1,"Europe",48.879108,2.322176,0,0,OIF:SA:59443,Europe/Paris,,OIF, +OIF:SP:59:3765155,1,"Europe",48.879045,2.321917,0,0,OIF:SA:59443,Europe/Paris,,OIF, +OIF:SP:59:3765156,1,"Rome - Batignolles",48.881813,2.320758,0,0,OIF:SA:59418,Europe/Paris,,OIF, +OIF:SP:59:3765157,1,"Legendre",48.885551,2.317104,0,0,OIF:SA:8738111,Europe/Paris,,OIF, +OIF:SP:59:3765158,1,"Legendre",48.885758,2.316545,0,0,OIF:SA:8738111,Europe/Paris,,OIF, +OIF:SP:59:3765159,1,"Pont Cardinet",48.887222,2.313329,0,0,OIF:SA:8738111,Europe/Paris,,OIF, +OIF:SP:59:3765161,1,"Jouffroy - Tocqueville",48.886161,2.309404,0,0,OIF:SA:59:3765161,Europe/Paris,,OIF, +OIF:SP:59:3765162,1,"Jouffroy - Tocqueville",48.886314,2.308982,0,0,OIF:SA:59:3765161,Europe/Paris,,OIF, +OIF:SP:59:3765163,1,"Pereire - Tocqueville",48.887832,2.3065,0,0,OIF:SA:59:3765163,Europe/Paris,,OIF, +OIF:SP:59:3765164,1,"Pereire - Tocqueville",48.887419,2.307128,0,0,OIF:SA:59:3765163,Europe/Paris,,OIF, +OIF:SP:59:3765165,1,"Juliette Lamber",48.888272,2.304565,0,0,OIF:SA:59:3765165,Europe/Paris,,OIF, +OIF:SP:59:3765166,1,"Juliette Lamber",48.888362,2.304251,0,0,OIF:SA:59:3765165,Europe/Paris,,OIF, +OIF:SP:59:3765171,1,"Victor Hugo - Jean Jaurès",48.895307,2.297323,0,0,OIF:SA:59:3765171,Europe/Paris,,OIF, +OIF:SP:59:3765172,1,"Victor Hugo - Jean Jaurès",48.895055,2.297241,0,0,OIF:SA:59:3765171,Europe/Paris,,OIF, +OIF:SP:59:3765175,1,"Marjolin",48.894289,2.292485,0,0,OIF:SA:59:3765175,Europe/Paris,,OIF, +OIF:SP:59:3765176,1,"Marjolin",48.892815,2.292268,0,0,OIF:SA:59:3765175,Europe/Paris,,OIF, +OIF:SP:59:3765177,1,"Aristide Briand",48.893192,2.289883,0,0,OIF:SA:59:3765177,Europe/Paris,,OIF, +OIF:SP:59:3765180,1,"Vaillant-Couturier",48.896373,2.287658,0,0,OIF:SA:59:3765180,Europe/Paris,,OIF, +OIF:SP:59:3765181,1,"Baudin",48.897423,2.285871,0,0,OIF:SA:59:3765181,Europe/Paris,,OIF, +OIF:SP:59:3765182,1,"Place Marie-Jeanne Bassot",48.897467,2.28305,0,0,OIF:SA:59:3765182,Europe/Paris,,OIF, +OIF:SP:59:3765183,1,"Parc Mathilde Girault",48.896828,2.28136,0,0,OIF:SA:59589,Europe/Paris,,OIF, +OIF:SP:59:3765186,1,"Pont de Levallois",48.897376,2.280037,0,0,OIF:SA:59589,Europe/Paris,,OIF, +OIF:SP:59:3765187,1,"Anatole France - Paul Vaillant-Couturier",48.895409,2.282316,0,0,OIF:SA:59:3765187,Europe/Paris,,OIF, +OIF:SP:59:3765188,1,"Parc de la Planchette",48.896327,2.285722,0,0,OIF:SA:59:3765188,Europe/Paris,,OIF, +OIF:SP:59:3765189,1,"Rouquier - Rivay",48.892554,2.290933,0,0,OIF:SA:59:3765189,Europe/Paris,,OIF, +OIF:SP:59:3765190,1,"Rome - Batignolles",48.882334,2.320035,0,0,OIF:SA:59418,Europe/Paris,,OIF, +OIF:SP:59:3765191,1,"Havre - Haussmann",48.873303,2.327654,0,0,OIF:SA:59442,Europe/Paris,,OIF, +OIF:SP:59:3765193,1,"Gare de Lyon",48.843864,2.373412,0,0,OIF:SA:8768600,Europe/Paris,,OIF, +OIF:SP:59:3765194,1,"Gare de Lyon",48.842533,2.375427,0,0,OIF:SA:8768600,Europe/Paris,,OIF, +OIF:SP:59:3765201,1,"Institut du Monde Arabe",48.849054,2.355549,0,0,OIF:SA:59:3748095,Europe/Paris,,OIF, +OIF:SP:59:3765202,1,"Monge - Mutualité",48.848407,2.349747,0,0,OIF:SA:59:3765202,Europe/Paris,,OIF, +OIF:SP:59:3765203,1,"Collège de France",48.849325,2.346234,0,0,OIF:SA:59:3765203,Europe/Paris,,OIF, +OIF:SP:59:3765209,1,"Michel Debré",48.851742,2.330845,0,0,OIF:SA:59257,Europe/Paris,,OIF, +OIF:SP:59:3765210,1,"Sevres - Babylone",48.851796,2.327631,0,0,OIF:SA:59362,Europe/Paris,,OIF, +OIF:SP:59:3765211,1,"Varenne - Raspail",48.853647,2.326391,0,0,OIF:SA:59:3765211,Europe/Paris,,OIF, +OIF:SP:59:3765212,1,"Rue du Bac - Rene Char",48.856407,2.325601,0,0,OIF:SA:59511,Europe/Paris,,OIF, +OIF:SP:59:3765213,1,"Rue du Bac - Rene Char",48.855867,2.326037,0,0,OIF:SA:59511,Europe/Paris,,OIF, +OIF:SP:59:3765214,1,"Solferino - Bellechasse",48.858087,2.323666,0,0,OIF:SA:59599,Europe/Paris,,OIF, +OIF:SP:59:3765218,1,"Assemblée Nationale",48.861718,2.320246,0,0,OIF:SA:59603,Europe/Paris,,OIF, +OIF:SP:59:3765219,1,"Assemblée Nationale",48.861547,2.320056,0,0,OIF:SA:59603,Europe/Paris,,OIF, +OIF:SP:59:3765220,1,"Invalides",48.862948,2.314252,0,0,OIF:SA:8739303,Europe/Paris,,OIF, +OIF:SP:59:3765221,1,"Invalides",48.862759,2.314429,0,0,OIF:SA:8739303,Europe/Paris,,OIF, +OIF:SP:59:3765223,1,"Pont des Invalides - Place de Finlande",48.862597,2.311228,0,0,OIF:SA:59:3764727,Europe/Paris,,OIF, +OIF:SP:59:3765224,1,"Jean Nicot - Église Américaine",48.862577,2.305739,0,0,OIF:SA:59:3765224,Europe/Paris,,OIF, +OIF:SP:59:3765225,1,"Jean Nicot - Église Américaine",48.862389,2.305957,0,0,OIF:SA:59:3765224,Europe/Paris,,OIF, +OIF:SP:59:3765226,1,"Bosquet - Rapp",48.862496,2.302293,0,0,OIF:SA:59:3749902,Europe/Paris,,OIF, +OIF:SP:59:3765227,1,"Bosquet - Rapp",48.862298,2.302279,0,0,OIF:SA:59:3749902,Europe/Paris,,OIF, +OIF:SP:59:3765228,1,"Alma - Marceau",48.864931,2.300534,0,0,OIF:SA:59500,Europe/Paris,,OIF, +OIF:SP:59:3765229,1,"Iéna",48.865028,2.295343,0,0,OIF:SA:59619,Europe/Paris,,OIF, +OIF:SP:59:3765230,1,"Iéna",48.864659,2.294785,0,0,OIF:SA:59619,Europe/Paris,,OIF, +OIF:SP:59:3765235,1,"Georges Mandel - Trocadéro",48.863335,2.285905,0,0,OIF:SA:59617,Europe/Paris,,OIF, +OIF:SP:59:3765236,1,"Georges Mandel - Trocadéro",48.862966,2.285851,0,0,OIF:SA:59617,Europe/Paris,,OIF, +OIF:SP:59:3765237,1,"Sablons - Cortambert",48.863872,2.281218,0,0,OIF:SA:59:3765237,Europe/Paris,,OIF, +OIF:SP:59:3765238,1,"Sablons - Cortambert",48.86336,2.282349,0,0,OIF:SA:59:3765237,Europe/Paris,,OIF, +OIF:SP:59:3765239,1,"Pompe - Mairie du XVI",48.864238,2.27709,0,0,OIF:SA:59485,Europe/Paris,,OIF, +OIF:SP:59:3765240,1,"Pompe - Mairie du XVI",48.863825,2.278221,0,0,OIF:SA:59485,Europe/Paris,,OIF, +OIF:SP:59:3765241,1,"Victor Hugo - Henri Martin",48.864416,2.273616,0,0,OIF:SA:8738104,Europe/Paris,,OIF, +OIF:SP:59:3765242,1,"Victor Hugo - Henri Martin",48.864065,2.273154,0,0,OIF:SA:8738104,Europe/Paris,,OIF, +OIF:SP:59:3765243,1,"Octave Feuillet",48.863282,2.269817,0,0,OIF:SA:59:3765243,Europe/Paris,,OIF, +OIF:SP:59:3765244,1,"Octave Feuillet",48.862913,2.269355,0,0,OIF:SA:59:3765243,Europe/Paris,,OIF, +OIF:SP:59:3765245,1,"Porte de la Muette",48.862382,2.268157,0,0,OIF:SA:59:3765245,Europe/Paris,,OIF, +OIF:SP:59:3765247,1,"Alma - Marceau",48.864814,2.300534,0,0,OIF:SA:59500,Europe/Paris,,OIF, +OIF:SP:59:3765248,1,"Saint-Guillaume",48.854627,2.329496,0,0,OIF:SA:59:3765248,Europe/Paris,,OIF, +OIF:SP:59:3765249,1,"Saint-Germain-des-Prés",48.853558,2.333814,0,0,OIF:SA:59623,Europe/Paris,,OIF, +OIF:SP:59:3765250,1,"Seine - Buci",48.852713,2.337396,0,0,OIF:SA:59263,Europe/Paris,,OIF, +OIF:SP:59:3765251,1,"Dante",48.850601,2.346003,0,0,OIF:SA:59377,Europe/Paris,,OIF, +OIF:SP:59:3765252,1,"Maubert - Mutualité",48.849693,2.349707,0,0,OIF:SA:59357,Europe/Paris,,OIF, +OIF:SP:59:3765255,1,"Gare d'Austerlitz",48.843542,2.365514,0,0,OIF:SA:8754700,Europe/Paris,,OIF, +OIF:SP:59:3765257,1,"Gare de Lyon.",48.84363,2.373412,0,0,OIF:SA:8768600,Europe/Paris,,OIF, +OIF:SP:59:3765258,1,"Place d'Italie",48.831573,2.356455,0,0,OIF:SA:59275,Europe/Paris,,OIF, +OIF:SP:59:3765259,1,"Parc de Choisy",48.827654,2.358604,0,0,OIF:SA:59:3765259,Europe/Paris,,OIF, +OIF:SP:59:3765260,1,"Choisy - Tolbiac",48.826197,2.361108,0,0,OIF:SA:59:3765260,Europe/Paris,,OIF, +OIF:SP:59:3765261,1,"Tolbiac - Baudricourt",48.82661,2.364307,0,0,OIF:SA:59:3765261,Europe/Paris,,OIF, +OIF:SP:59:3765262,1,"Olympiades",48.827032,2.36737,0,0,OIF:SA:59552,Europe/Paris,,OIF, +OIF:SP:59:3765263,1,"Patay - Tolbiac",48.82774,2.371754,0,0,OIF:SA:59:3765263,Europe/Paris,,OIF, +OIF:SP:59:3765264,1,"Bibliothèque Chevaleret",48.829465,2.374954,0,0,OIF:SA:8732832,Europe/Paris,,OIF, +OIF:SP:59:3765265,1,"Pont de Tolbiac",48.831908,2.379421,0,0,OIF:SA:59:3765265,Europe/Paris,,OIF, +OIF:SP:59:3765266,1,"Parc de Bercy",48.833803,2.382881,0,0,OIF:SA:59:3765266,Europe/Paris,,OIF, +OIF:SP:59:3765268,1,"Charenton - Wattignies",48.837179,2.390644,0,0,OIF:SA:59:3765268,Europe/Paris,,OIF, +OIF:SP:59:3765269,1,"Daumesnil - Félix Eboue",48.838939,2.393996,0,0,OIF:SA:59561,Europe/Paris,,OIF, +OIF:SP:59:3765272,1,"Louis Braille",48.83968,2.40365,0,0,OIF:SA:59460,Europe/Paris,,OIF, +OIF:SP:59:3765273,1,"Hôpital Trousseau",48.84216,2.405178,0,0,OIF:SA:59:3765273,Europe/Paris,,OIF, +OIF:SP:59:3765274,1,"Avenue de Saint-Mandé",48.844919,2.405944,0,0,OIF:SA:59228,Europe/Paris,,OIF, +OIF:SP:59:3765275,1,"Cours de Vincennes",48.84792,2.40652,0,0,OIF:SA:59228,Europe/Paris,,OIF, +OIF:SP:59:3765276,1,"La Plaine",48.851174,2.406457,0,0,OIF:SA:59:3765276,Europe/Paris,,OIF, +OIF:SP:59:3765277,1,"Maraîchers",48.853142,2.406132,0,0,OIF:SA:59501,Europe/Paris,,OIF, +OIF:SP:59:3765278,1,"Orteaux",48.856531,2.404884,0,0,OIF:SA:59:3765278,Europe/Paris,,OIF, +OIF:SP:59:3765279,1,"Pyrénées - Bagnolet",48.85949,2.401905,0,0,OIF:SA:59:3687268,Europe/Paris,,OIF, +OIF:SP:59:3765280,1,"Ramus",48.862034,2.40026,0,0,OIF:SA:59:3765280,Europe/Paris,,OIF, +OIF:SP:59:3765282,1,"Gambetta",48.865144,2.399855,0,0,OIF:SA:59325,Europe/Paris,,OIF, +OIF:SP:59:3765283,1,"Gambetta - Mairie du 20ème",48.864479,2.398655,0,0,OIF:SA:59325,Europe/Paris,,OIF, +OIF:SP:59:3765284,1,"Ramus",48.861306,2.400191,0,0,OIF:SA:59:3765280,Europe/Paris,,OIF, +OIF:SP:59:3765285,1,"Pyrénées - Bagnolet",48.858833,2.402353,0,0,OIF:SA:59:3687268,Europe/Paris,,OIF, +OIF:SP:59:3765286,1,"Orteaux",48.85601,2.40491,0,0,OIF:SA:59:3765278,Europe/Paris,,OIF, +OIF:SP:59:3765287,1,"Maraîchers",48.852208,2.406077,0,0,OIF:SA:59501,Europe/Paris,,OIF, +OIF:SP:59:3765288,1,"La Plaine",48.850275,2.406292,0,0,OIF:SA:59:3765276,Europe/Paris,,OIF, +OIF:SP:59:3765289,1,"Cours de Vincennes",48.847956,2.406262,0,0,OIF:SA:59228,Europe/Paris,,OIF, +OIF:SP:59:3765290,1,"Avenue de Saint-Mandé",48.844443,2.405535,0,0,OIF:SA:59228,Europe/Paris,,OIF, +OIF:SP:59:3765291,1,"Hôpital Trousseau",48.842115,2.404892,0,0,OIF:SA:59:3765273,Europe/Paris,,OIF, +OIF:SP:59:3765292,1,"Louis Braille",48.839797,2.403732,0,0,OIF:SA:59460,Europe/Paris,,OIF, +OIF:SP:59:3765295,1,"Daumesnil - Félix Eboue",48.839092,2.393832,0,0,OIF:SA:59561,Europe/Paris,,OIF, +OIF:SP:59:3765296,1,"Charenton - Wattignies",48.837251,2.390495,0,0,OIF:SA:59:3765268,Europe/Paris,,OIF, +OIF:SP:59:3765297,1,"Dijon - Lachambeaudie",48.835564,2.385741,0,0,OIF:SA:59:3716898,Europe/Paris,,OIF, +OIF:SP:59:3765298,1,"Parc de Bercy",48.833857,2.382554,0,0,OIF:SA:59:3765266,Europe/Paris,,OIF, +OIF:SP:59:3765299,1,"Pont de Tolbiac",48.831998,2.378945,0,0,OIF:SA:59:3765265,Europe/Paris,,OIF, +OIF:SP:59:3765300,1,"Bibliothèque Chevaleret",48.830103,2.375676,0,0,OIF:SA:8732832,Europe/Paris,,OIF, +OIF:SP:59:3765301,1,"Patay - Tolbiac",48.827651,2.370501,0,0,OIF:SA:59:3765263,Europe/Paris,,OIF, +OIF:SP:59:3765302,1,"Olympiades",48.827131,2.366662,0,0,OIF:SA:59552,Europe/Paris,,OIF, +OIF:SP:59:3765303,1,"Tolbiac - Baudricourt",48.826906,2.365015,0,0,OIF:SA:59:3765261,Europe/Paris,,OIF, +OIF:SP:59:3765304,1,"Choisy - Tolbiac",48.826377,2.361122,0,0,OIF:SA:59:3765260,Europe/Paris,,OIF, +OIF:SP:59:3765305,1,"Parc de Choisy",48.827708,2.358904,0,0,OIF:SA:59:3765259,Europe/Paris,,OIF, +OIF:SP:59:3765417,1,"Panthéon",48.846817,2.346125,0,0,OIF:SA:59:3765417,Europe/Paris,,OIF, +OIF:SP:59:3765419,1,"Mairie du Ve - Panthéon",48.846709,2.344218,0,0,OIF:SA:59:3765419,Europe/Paris,,OIF, +OIF:SP:59:3765420,1,"Mairie du Ve - Panthéon",48.846566,2.343919,0,0,OIF:SA:59:3765419,Europe/Paris,,OIF, +OIF:SP:59:3765421,1,"Luxembourg",48.847671,2.340364,0,0,OIF:SA:8775861,Europe/Paris,,OIF, +OIF:SP:59:3765422,1,"Luxembourg",48.847402,2.340133,0,0,OIF:SA:8775861,Europe/Paris,,OIF, +OIF:SP:59:3765423,1,"Sénat",48.849352,2.335693,0,0,OIF:SA:59:3765423,Europe/Paris,,OIF, +OIF:SP:59:3765425,1,"Musée du Luxembourg",48.849046,2.332834,0,0,OIF:SA:59:3442426,Europe/Paris,,OIF, +OIF:SP:59:3765427,1,"Saint-Sulpice",48.850646,2.332874,0,0,OIF:SA:59257,Europe/Paris,,OIF, +OIF:SP:59:3765428,1,"Saint-Sulpice",48.850889,2.332779,0,0,OIF:SA:59257,Europe/Paris,,OIF, +OIF:SP:59:3765430,1,"Michel Debré",48.852255,2.331185,0,0,OIF:SA:59257,Europe/Paris,,OIF, +OIF:SP:59:3765433,1,"Varenne - Raspail",48.853863,2.325983,0,0,OIF:SA:59:3765211,Europe/Paris,,OIF, +OIF:SP:59:3765435,1,"Rue du Bac - Rene Char",48.856335,2.325247,0,0,OIF:SA:59511,Europe/Paris,,OIF, +OIF:SP:59:3765436,1,"Solferino - Bellechasse",48.858267,2.323516,0,0,OIF:SA:59599,Europe/Paris,,OIF, +OIF:SP:59:3765437,1,"Solferino - Bellechasse",48.858222,2.323189,0,0,OIF:SA:59599,Europe/Paris,,OIF, +OIF:SP:59:3765438,1,"Musée d'Orsay",48.861466,2.32402,0,0,OIF:SA:8754730,Europe/Paris,,OIF, +OIF:SP:59:3765442,1,"Concorde",48.866903,2.322029,0,0,OIF:SA:59235,Europe/Paris,,OIF, +OIF:SP:59:3765443,1,"Madeleine",48.869816,2.325244,0,0,OIF:SA:59412,Europe/Paris,,OIF, +OIF:SP:59:3765444,1,"Madeleine",48.868791,2.323377,0,0,OIF:SA:59412,Europe/Paris,,OIF, +OIF:SP:59:3765445,1,"Anjou - Chauveau Lagarde",48.872485,2.321728,0,0,OIF:SA:59:3765445,Europe/Paris,,OIF, +OIF:SP:59:3765446,1,"Anjou - Chauveau Lagarde",48.872278,2.32151,0,0,OIF:SA:59:3765445,Europe/Paris,,OIF, +OIF:SP:59:3765447,1,"Saint-Augustin",48.874416,2.318103,0,0,OIF:SA:59489,Europe/Paris,,OIF, +OIF:SP:59:3765448,1,"Saint-Augustin",48.874354,2.320051,0,0,OIF:SA:59489,Europe/Paris,,OIF, +OIF:SP:59:3765449,1,"Haussmann - Miromesnil",48.875593,2.315146,0,0,OIF:SA:59494,Europe/Paris,,OIF, +OIF:SP:59:3765451,1,"Ruysdaël - Parc Monceau",48.87756,2.30915,0,0,OIF:SA:59:3765451,Europe/Paris,,OIF, +OIF:SP:59:3765452,1,"Ruysdaël - Parc Monceau",48.87695,2.311507,0,0,OIF:SA:59:3765451,Europe/Paris,,OIF, +OIF:SP:59:3765453,1,"Murillo",48.87791,2.305716,0,0,OIF:SA:59:3765453,Europe/Paris,,OIF, +OIF:SP:59:3765454,1,"Murillo",48.877766,2.305512,0,0,OIF:SA:59:3765453,Europe/Paris,,OIF, +OIF:SP:59:3765455,1,"Courcelles",48.87897,2.303685,0,0,OIF:SA:59424,Europe/Paris,,OIF, +OIF:SP:59:3765456,1,"Wagram - Courcelles",48.881998,2.30044,0,0,OIF:SA:59:3765456,Europe/Paris,,OIF, +OIF:SP:59:3765457,1,"Wagram - Courcelles",48.881899,2.300208,0,0,OIF:SA:59:3765456,Europe/Paris,,OIF, +OIF:SP:59:3765458,1,"Pereire - Maréchal Juin",48.884199,2.298244,0,0,OIF:SA:59219,Europe/Paris,,OIF, +OIF:SP:59:3765459,1,"Pereire - Maréchal Juin",48.884109,2.297972,0,0,OIF:SA:59219,Europe/Paris,,OIF, +OIF:SP:59:3765461,1,"Porte de Champerret",48.88568,2.292383,0,0,OIF:SA:59436,Europe/Paris,,OIF, +OIF:SP:59:3765463,1,"Porte de Courcelles",48.887262,2.29478,0,0,OIF:SA:59436,Europe/Paris,,OIF, +OIF:SP:59:3765464,1,"Pereire - le Chatelier",48.885591,2.296485,0,0,OIF:SA:59219,Europe/Paris,,OIF, +OIF:SP:59:3765465,1,"Courcelles",48.879401,2.30269,0,0,OIF:SA:59424,Europe/Paris,,OIF, +OIF:SP:59:3765466,1,"Lille - Université",48.85966,2.321827,0,0,OIF:SA:59599,Europe/Paris,,OIF, +OIF:SP:59:3765467,1,"Sevres - Babylone",48.851661,2.327849,0,0,OIF:SA:59362,Europe/Paris,,OIF, +OIF:SP:59:3781622,1,"Porte d'Orléans - Métro",48.82264,2.325526,0,0,OIF:SA:59624,Europe/Paris,,OIF, +OIF:SP:59:3781624,1,"Gabriel Péri",48.817391,2.326154,0,0,OIF:SA:41:6491,Europe/Paris,,OIF, +OIF:SP:59:3781626,1,"Barbes - Ory",48.81714,2.329366,0,0,OIF:SA:59:3781626,Europe/Paris,,OIF, +OIF:SP:59:3781627,1,"Barbes - Ory",48.817374,2.328495,0,0,OIF:SA:59:3781626,Europe/Paris,,OIF, +OIF:SP:59:3781628,1,"Chaperon Vert - Lénine",48.816583,2.335436,0,0,OIF:SA:59:3781628,Europe/Paris,,OIF, +OIF:SP:59:3781631,1,"Mairie de Gentilly",48.815099,2.348242,0,0,OIF:SA:59:3781631,Europe/Paris,,OIF, +OIF:SP:59:3781632,1,"Mairie de Gentilly",48.815126,2.347834,0,0,OIF:SA:59:3781631,Europe/Paris,,OIF, +OIF:SP:59:3781633,1,"Raspail-Jaures",48.813095,2.351045,0,0,OIF:SA:59:3781633,Europe/Paris,,OIF, +OIF:SP:59:3781634,1,"Raspail-Jaures",48.814434,2.349685,0,0,OIF:SA:59:3781633,Europe/Paris,,OIF, +OIF:SP:59:3781636,1,"Convention - Jaurès",48.812357,2.354107,0,0,OIF:SA:59:3754336,Europe/Paris,,OIF, +OIF:SP:59:3781640,1,"Roger Salengro - Fontainebleau",48.814693,2.36147,0,0,OIF:SA:59:3781640,Europe/Paris,,OIF, +OIF:SP:59:3781641,1,"Verdun - Marques",48.817505,2.367936,0,0,OIF:SA:59:3781641,Europe/Paris,,OIF, +OIF:SP:59:3781642,1,"Jules Ferry",48.81753,2.373489,0,0,OIF:SA:59:3781642,Europe/Paris,,OIF, +OIF:SP:59:3781643,1,"Jules Ferry",48.817171,2.37176,0,0,OIF:SA:59:3781642,Europe/Paris,,OIF, +OIF:SP:59:3781644,1,"Pierre et Marie Curie - Métro",48.814905,2.375774,0,0,OIF:SA:59556,Europe/Paris,,OIF, +OIF:SP:59:3781645,1,"Pierre et Marie Curie - Métro",48.816019,2.377272,0,0,OIF:SA:59556,Europe/Paris,,OIF, +OIF:SP:59:3781652,1,"Ivry-sur-Seine RER",48.813632,2.389382,0,0,OIF:SA:8754530,Europe/Paris,,OIF, +OIF:SP:59:3781653,1,"Ivry-sur-Seine RER",48.813713,2.388919,0,0,OIF:SA:8754530,Europe/Paris,,OIF, +OIF:SP:59:3781654,1,"Molière",48.815706,2.39378,0,0,OIF:SA:8754530,Europe/Paris,,OIF, +OIF:SP:59:3781655,1,"Molière",48.815617,2.392732,0,0,OIF:SA:8754530,Europe/Paris,,OIF, +OIF:SP:59:3781661,1,"Pont d'Ivry - Rive Gauche",48.81445,2.406911,0,0,OIF:SA:59:3781661,Europe/Paris,,OIF, +OIF:SP:59:3781662,1,"Pont d'Ivry - Rive Gauche",48.814648,2.407129,0,0,OIF:SA:59:3781661,Europe/Paris,,OIF, +OIF:SP:59:3781663,1,"Général de Gaulle",48.814427,2.414328,0,0,OIF:SA:59:3686303,Europe/Paris,,OIF, +OIF:SP:59:3781664,1,"Général de Gaulle",48.814616,2.414709,0,0,OIF:SA:59:3686303,Europe/Paris,,OIF, +OIF:SP:59:3781667,1,"École Vétérinaire de Maisons-Alfort",48.815007,2.421378,0,0,OIF:SA:59565,Europe/Paris,,OIF, +OIF:SP:59:3781668,1,"École Vétérinaire de Maisons-Alfort",48.814295,2.423609,0,0,OIF:SA:59565,Europe/Paris,,OIF, +OIF:SP:59:3781669,1,"Chinagora",48.814626,2.4123,0,0,OIF:SA:59:3781669,Europe/Paris,,OIF, +OIF:SP:59:3781670,1,"Vaillant-Couturier - Westermeyer",48.818779,2.396219,0,0,OIF:SA:59:3781670,Europe/Paris,,OIF, +OIF:SP:59:3781671,1,"Jean-Jacques Rousseau",48.81781,2.393537,0,0,OIF:SA:59:3781671,Europe/Paris,,OIF, +OIF:SP:59:3781672,1,"Hôpital Jean Rostand",48.813411,2.380427,0,0,OIF:SA:59:3781672,Europe/Paris,,OIF, +OIF:SP:59:3781673,1,"Maurice Thorez-Barbes",48.818455,2.374306,0,0,OIF:SA:59:3781673,Europe/Paris,,OIF, +OIF:SP:59:3781674,1,"Verdun - Châteaudun",48.815896,2.366874,0,0,OIF:SA:59:3781674,Europe/Paris,,OIF, +OIF:SP:59:3781675,1,"Avenue du Docteur Lacroix-Mairie",48.81393,2.357877,0,0,OIF:SA:59:3781675,Europe/Paris,,OIF, +OIF:SP:59:3781676,1,"Henri Gautherot",48.815414,2.345058,0,0,OIF:SA:59:3781676,Europe/Paris,,OIF, +OIF:SP:59:3781677,1,"Gentilly RER",48.81643,2.341125,0,0,OIF:SA:8775865,Europe/Paris,,OIF, +OIF:SP:59:3781678,1,"Chaperon Vert - Lénine",48.816817,2.334129,0,0,OIF:SA:59:3781678,Europe/Paris,,OIF, +OIF:SP:59:3785916,1,"Hôtel de Ville d'Ivry",48.81225,2.385815,0,0,OIF:SA:59322,Europe/Paris,,OIF, +OIF:SP:59:3785918,1,"Saint-Just",48.810082,2.389514,0,0,OIF:SA:59:3785918,Europe/Paris,,OIF, +OIF:SP:59:3785920,1,"Parmentier",48.806971,2.392069,0,0,OIF:SA:59:3785920,Europe/Paris,,OIF, +OIF:SP:59:3785922,1,"Hôpital Charles Foix",48.805469,2.393918,0,0,OIF:SA:59:3785922,Europe/Paris,,OIF, +OIF:SP:59:3785923,1,"Félix Faure",48.802564,2.397344,0,0,OIF:SA:59:3785923,Europe/Paris,,OIF, +OIF:SP:59:3785926,1,"République - Vaillant Couturier",48.799695,2.400823,0,0,OIF:SA:8754529,Europe/Paris,,OIF, +OIF:SP:59:3785928,1,"Gabriel Péri",48.798267,2.40006,0,0,OIF:SA:8754529,Europe/Paris,,OIF, +OIF:SP:59:3785930,1,"Jean Jaurès",48.794456,2.40049,0,0,OIF:SA:59:3785930,Europe/Paris,,OIF, +OIF:SP:59:3785932,1,"Danielle Casanova",48.789331,2.402742,0,0,OIF:SA:59:3785932,Europe/Paris,,OIF, +OIF:SP:59:3785934,1,"Paul Froment",48.786455,2.402616,0,0,OIF:SA:59:3785934,Europe/Paris,,OIF, +OIF:SP:59:3785936,1,"Jean Pierre Timbaud",48.785994,2.407689,0,0,OIF:SA:8798326,Europe/Paris,,OIF, +OIF:SP:59:3785938,1,"Les Ardoines RER",48.783738,2.40789,0,0,OIF:SA:8749210,Europe/Paris,,OIF, +OIF:SP:59:3785940,1,"Anselme Rondenay",48.780451,2.403615,0,0,OIF:SA:59:3785940,Europe/Paris,,OIF, +OIF:SP:59:3785942,1,"Cité Balzac",48.77841,2.405067,0,0,OIF:SA:59:3785942,Europe/Paris,,OIF, +OIF:SP:59:3785944,1,"Descartes",48.777652,2.408793,0,0,OIF:SA:59:3785944,Europe/Paris,,OIF, +OIF:SP:59:3785946,1,"Léon Geffroy",48.775648,2.409334,0,0,OIF:SA:59:3785946,Europe/Paris,,OIF, +OIF:SP:59:3785947,1,"Docteur Roux",48.771325,2.408811,0,0,OIF:SA:4:53,Europe/Paris,,OIF, +OIF:SP:59:3785948,1,"Docteur Roux",48.771819,2.409288,0,0,OIF:SA:4:53,Europe/Paris,,OIF, +OIF:SP:59:3785949,1,"8 Mai 1945",48.768682,2.408712,0,0,OIF:SA:4:45,Europe/Paris,,OIF, +OIF:SP:59:3785950,1,"8 Mai 1945",48.768664,2.409093,0,0,OIF:SA:4:45,Europe/Paris,,OIF, +OIF:SP:59:3785951,1,"Choisy-le-Roi RER",48.766004,2.409307,0,0,OIF:SA:8754528,Europe/Paris,,OIF, +OIF:SP:59:3785952,1,"Choisy-le-Roi RER",48.766075,2.409647,0,0,OIF:SA:8754528,Europe/Paris,,OIF, +OIF:SP:59:3785954,1,"Pont de Choisy",48.766962,2.413754,0,0,OIF:SA:59:3686342,Europe/Paris,,OIF, +OIF:SP:59:3785955,1,"Pont de Choisy - Piscine",48.766189,2.415058,0,0,OIF:SA:59:3785955,Europe/Paris,,OIF, +OIF:SP:59:3785956,1,"Fusilles",48.764858,2.415981,0,0,OIF:SA:32:45511,Europe/Paris,,OIF, +OIF:SP:59:3785957,1,"Fusilles",48.76493,2.416185,0,0,OIF:SA:32:45511,Europe/Paris,,OIF, +OIF:SP:59:3785958,1,"Théophile Ducloux",48.761844,2.419633,0,0,OIF:SA:32:45509,Europe/Paris,,OIF, +OIF:SP:59:3785959,1,"Théophile Ducloux",48.76233,2.419376,0,0,OIF:SA:32:45509,Europe/Paris,,OIF, +OIF:SP:59:3785960,1,"Auberge de la Jeunesse",48.759011,2.423095,0,0,OIF:SA:32:45506,Europe/Paris,,OIF, +OIF:SP:59:3785961,1,"Auberge de la Jeunesse",48.759928,2.422268,0,0,OIF:SA:32:45506,Europe/Paris,,OIF, +OIF:SP:59:3785962,1,"Usines Renault",48.756006,2.42672,0,0,OIF:SA:59:3785962,Europe/Paris,,OIF, +OIF:SP:59:3785963,1,"Usines Renault",48.756248,2.426748,0,0,OIF:SA:59:3785962,Europe/Paris,,OIF, +OIF:SP:59:3785964,1,"Paul Bert",48.753712,2.42953,0,0,OIF:SA:32:45344,Europe/Paris,,OIF, +OIF:SP:59:3785965,1,"Paul Bert",48.754125,2.429354,0,0,OIF:SA:32:45344,Europe/Paris,,OIF, +OIF:SP:59:3785966,1,"Amélie",48.751228,2.432556,0,0,OIF:SA:32:45354,Europe/Paris,,OIF, +OIF:SP:59:3785967,1,"Amélie",48.751876,2.432109,0,0,OIF:SA:32:45354,Europe/Paris,,OIF, +OIF:SP:59:3785968,1,"Mairie Annexe",48.748458,2.435242,0,0,OIF:SA:32:45342,Europe/Paris,,OIF, +OIF:SP:59:3785969,1,"Mairie Annexe",48.748799,2.43523,0,0,OIF:SA:32:45342,Europe/Paris,,OIF, +OIF:SP:59:3785970,1,"Villeneuve-Triage RER",48.747144,2.437116,0,0,OIF:SA:8768180,Europe/Paris,,OIF, +OIF:SP:59:3785972,1,"Mairie d'Ivry - Métro",48.810839,2.384371,0,0,OIF:SA:59322,Europe/Paris,,OIF, +OIF:SP:59:3785973,1,"Saint-Just",48.808204,2.387947,0,0,OIF:SA:59:3785918,Europe/Paris,,OIF, +OIF:SP:59:3785974,1,"Parmentier",48.806908,2.391947,0,0,OIF:SA:59:3785920,Europe/Paris,,OIF, +OIF:SP:59:3785975,1,"Hôpital Charles Foix",48.805442,2.393755,0,0,OIF:SA:59:3785922,Europe/Paris,,OIF, +OIF:SP:59:3785976,1,"Félix Faure",48.802259,2.397479,0,0,OIF:SA:59:3785976,Europe/Paris,,OIF, +OIF:SP:59:3785977,1,"République - Vaillant Couturier",48.800028,2.400184,0,0,OIF:SA:8754529,Europe/Paris,,OIF, +OIF:SP:59:3785978,1,"Gabriel Péri",48.798303,2.399896,0,0,OIF:SA:8754529,Europe/Paris,,OIF, +OIF:SP:59:3785979,1,"Jean Jaurès",48.79371,2.400721,0,0,OIF:SA:59:3785930,Europe/Paris,,OIF, +OIF:SP:59:3785980,1,"Danielle Casanova",48.789682,2.402647,0,0,OIF:SA:59:3785932,Europe/Paris,,OIF, +OIF:SP:59:3785981,1,"Paul Froment",48.786366,2.402004,0,0,OIF:SA:59:3785934,Europe/Paris,,OIF, +OIF:SP:59:3785982,1,"Jean Pierre Timbaud",48.786678,2.406901,0,0,OIF:SA:8798326,Europe/Paris,,OIF, +OIF:SP:59:3785983,1,"Les Ardoines RER",48.783963,2.407496,0,0,OIF:SA:8749210,Europe/Paris,,OIF, +OIF:SP:59:3785984,1,"Anselme Rondenay",48.780379,2.403519,0,0,OIF:SA:59:3785940,Europe/Paris,,OIF, +OIF:SP:59:3785985,1,"Cité Balzac",48.778032,2.405176,0,0,OIF:SA:59:3785942,Europe/Paris,,OIF, +OIF:SP:59:3785986,1,"Descartes",48.777581,2.408466,0,0,OIF:SA:59:3785944,Europe/Paris,,OIF, +OIF:SP:59:3785987,1,"Léon Geffroy",48.775981,2.408872,0,0,OIF:SA:59:3785946,Europe/Paris,,OIF, +OIF:SP:59:3786050,1,"Porte d'Italie - Métro",48.817992,2.360002,0,0,OIF:SA:59666,Europe/Paris,,OIF, +OIF:SP:59:3786064,1,"Hautes Bruyères",48.793475,2.344088,0,0,OIF:SA:59:3786064,Europe/Paris,,OIF, +OIF:SP:59:3786065,1,"Lunain",48.789098,2.343408,0,0,OIF:SA:59:3786065,Europe/Paris,,OIF, +OIF:SP:59:3786066,1,"Convention - Jaurès",48.812088,2.351752,0,0,OIF:SA:59:3786066,Europe/Paris,,OIF, +OIF:SP:59:3786067,1,"Bensérade - C.H.U. de Bicetre",48.810875,2.349969,0,0,OIF:SA:59:3786067,Europe/Paris,,OIF, +OIF:SP:59:3786068,1,"Cité des H.B.M.",48.807954,2.347098,0,0,OIF:SA:59:3786068,Europe/Paris,,OIF, +OIF:SP:59:3786072,1,"Colonel Fabien",48.79761,2.343055,0,0,OIF:SA:59:3786072,Europe/Paris,,OIF, +OIF:SP:59:3786073,1,"Hautes Bruyères",48.793232,2.343843,0,0,OIF:SA:59:3786073,Europe/Paris,,OIF, +OIF:SP:59:3786074,1,"Lunain",48.788226,2.342836,0,0,OIF:SA:59:3786074,Europe/Paris,,OIF, +OIF:SP:59:3786075,1,"Belvédère",48.783903,2.341176,0,0,OIF:SA:59:3786075,Europe/Paris,,OIF, +OIF:SP:59:3786076,1,"Belvédère",48.784892,2.341693,0,0,OIF:SA:59:3786075,Europe/Paris,,OIF, +OIF:SP:59:3786077,1,"Eugène Varlin",48.781216,2.341407,0,0,OIF:SA:59:3786077,Europe/Paris,,OIF, +OIF:SP:59:3786078,1,"De Gaulle - Gounod - Tabanou",48.780182,2.340904,0,0,OIF:SA:59:3786078,Europe/Paris,,OIF, +OIF:SP:59:3786079,1,"Henri Thirard - Léon Jouhaux",48.77896,2.340605,0,0,OIF:SA:59:3730644,Europe/Paris,,OIF, +OIF:SP:59:3786080,1,"Henri Thirard - Léon Jouhaux",48.77887,2.340945,0,0,OIF:SA:59:3730644,Europe/Paris,,OIF, +OIF:SP:59:3786089,1,"Allée du Plateau",48.763033,2.333534,0,0,OIF:SA:59:3786089,Europe/Paris,,OIF, +OIF:SP:59:3786090,1,"Allée du Plateau",48.763105,2.333928,0,0,OIF:SA:59:3786089,Europe/Paris,,OIF, +OIF:SP:59:3786091,1,"La Fresnaie",48.759941,2.331522,0,0,OIF:SA:59:3786091,Europe/Paris,,OIF, +OIF:SP:59:3786092,1,"La Fresnaie",48.759932,2.331862,0,0,OIF:SA:59:3786091,Europe/Paris,,OIF, +OIF:SP:59:3786093,1,"Rond-Point Roosevelt",48.758242,2.329632,0,0,OIF:SA:59:3786093,Europe/Paris,,OIF, +OIF:SP:59:3786094,1,"Rond-Point Roosevelt",48.757981,2.329972,0,0,OIF:SA:59:3786093,Europe/Paris,,OIF, +OIF:SP:59:3786095,1,"Porte d'Italie - Métro",48.818917,2.360519,0,0,OIF:SA:59666,Europe/Paris,,OIF, +OIF:SP:59:3786097,1,"Roger Salengro - Fontainebleau",48.814774,2.361021,0,0,OIF:SA:59:3781640,Europe/Paris,,OIF, +OIF:SP:59:3786098,1,"Convention - Fontainebleau",48.813147,2.361524,0,0,OIF:SA:59578,Europe/Paris,,OIF, +OIF:SP:59:3786099,1,"Pierre Brossolette",48.814927,2.360028,0,0,OIF:SA:59:3786099,Europe/Paris,,OIF, +OIF:SP:59:3786100,1,"Mairie du Kremlin-Bicêtre",48.812348,2.358108,0,0,OIF:SA:59:3754337,Europe/Paris,,OIF, +OIF:SP:59:3786101,1,"Mairie du Kremlin-Bicêtre",48.812069,2.357087,0,0,OIF:SA:59:3754337,Europe/Paris,,OIF, +OIF:SP:59:3786104,1,"Cité des H.B.M.",48.807936,2.347778,0,0,OIF:SA:59:3786104,Europe/Paris,,OIF, +OIF:SP:59:3786105,1,"Trois Communes",48.805195,2.345178,0,0,OIF:SA:59:3786105,Europe/Paris,,OIF, +OIF:SP:59:3786108,1,"Colonel Fabien",48.797367,2.343327,0,0,OIF:SA:59:3755002,Europe/Paris,,OIF, +OIF:SP:59:3786114,1,"Trois Communes",48.805429,2.344689,0,0,OIF:SA:59:3786114,Europe/Paris,,OIF, +OIF:SP:59:3786128,1,"Jean Mermoz - Général de Gaulle",48.772398,2.338986,0,0,OIF:SA:59:3786128,Europe/Paris,,OIF, +OIF:SP:59:3786129,1,"Jean Mermoz - Général de Gaulle",48.773162,2.339707,0,0,OIF:SA:59:3786128,Europe/Paris,,OIF, +OIF:SP:59:3786130,1,"Croix du Sud - Centre de Pneumologie",48.769918,2.337545,0,0,OIF:SA:59:3786130,Europe/Paris,,OIF, +OIF:SP:59:3786131,1,"Croix du Sud - Centre de Pneumologie",48.769927,2.337912,0,0,OIF:SA:59:3786130,Europe/Paris,,OIF, +OIF:SP:59:3786132,1,"Louis Blériot - Cimetière Intercommunal",48.767644,2.336198,0,0,OIF:SA:59:3786132,Europe/Paris,,OIF, +OIF:SP:59:3786133,1,"Louis Blériot - Cimetière Intercommunal",48.768066,2.33681,0,0,OIF:SA:59:3786132,Europe/Paris,,OIF, +OIF:SP:59:3786294,1,"Centre Ville",48.794949,2.333994,0,0,OIF:SA:59:3786294,Europe/Paris,,OIF, +OIF:SP:59:3786297,1,"Les Lumières",48.796423,2.325369,0,0,OIF:SA:59:3786297,Europe/Paris,,OIF, +OIF:SP:59:3786298,1,"Paul Bert",48.793026,2.330009,0,0,OIF:SA:59:3786298,Europe/Paris,,OIF, +OIF:SP:59:3786299,1,"Jean Jaurès",48.791713,2.327778,0,0,OIF:SA:59:3786299,Europe/Paris,,OIF, +OIF:SP:59:3786300,1,"Pont Royal",48.792674,2.321588,0,0,OIF:SA:8775868,Europe/Paris,,OIF, +OIF:SP:59:3786301,1,"Aristide Briand",48.790373,2.321208,0,0,OIF:SA:59:3786301,Europe/Paris,,OIF, +OIF:SP:59:3786302,1,"Cité Jardins - Victor Hugo",48.789502,2.322759,0,0,OIF:SA:59:3786302,Europe/Paris,,OIF, +OIF:SP:59:3786303,1,"Cité Jardins - Pierre Curie",48.788046,2.322079,0,0,OIF:SA:59:3786303,Europe/Paris,,OIF, +OIF:SP:59:3786304,1,"Piscine",48.786006,2.327412,0,0,OIF:SA:59:3786304,Europe/Paris,,OIF, +OIF:SP:59:3786305,1,"Place Edouard Herriot",48.78588,2.329833,0,0,OIF:SA:59:3786305,Europe/Paris,,OIF, +OIF:SP:59:3786306,1,"La Plaine",48.788226,2.334008,0,0,OIF:SA:59:3730347,Europe/Paris,,OIF, +OIF:SP:59:3786307,1,"RPA le Moulin",48.790159,2.335885,0,0,OIF:SA:59:3786307,Europe/Paris,,OIF, +OIF:SP:59:3786309,1,"Centre Ville.",48.794922,2.334756,0,0,OIF:SA:59:3786294,Europe/Paris,,OIF, +OIF:SP:59:3786326,1,"Blum - Saussaies",48.78704,2.337191,0,0,OIF:SA:59:3786326,Europe/Paris,,OIF, +OIF:SP:59:3786327,1,"Le Coteau - Courbet",48.786168,2.341285,0,0,OIF:SA:59:3786327,Europe/Paris,,OIF, +OIF:SP:59:3786328,1,"Le Coteau - Lunain",48.788766,2.340265,0,0,OIF:SA:59:3786328,Europe/Paris,,OIF, +OIF:SP:59:3786329,1,"Le Coteau - Pléiade",48.789431,2.33949,0,0,OIF:SA:59:3786329,Europe/Paris,,OIF, +OIF:SP:59:3786330,1,"Le Coteau - Panorama",48.792963,2.342225,0,0,OIF:SA:59:3786330,Europe/Paris,,OIF, +OIF:SP:59:3786331,1,"Le Coteau - Défait",48.796953,2.341191,0,0,OIF:SA:59:3786331,Europe/Paris,,OIF, +OIF:SP:59:3786332,1,"La Citadelle",48.797996,2.338144,0,0,OIF:SA:59:3786332,Europe/Paris,,OIF, +OIF:SP:59:3786333,1,"Saint-Joseph",48.798499,2.334117,0,0,OIF:SA:59:3786333,Europe/Paris,,OIF, +OIF:SP:59:3807561,1,"Gare du Nord",48.882262,2.357714,0,0,OIF:SA:8727100,Europe/Paris,,OIF, +OIF:SP:59:3807568,1,"Porte Saint-Martin",48.869249,2.354875,0,0,OIF:SA:59253,Europe/Paris,,OIF, +OIF:SP:59:3807577,1,"Palais Royal - Comédie Française",48.86428,2.335189,0,0,OIF:SA:59591,Europe/Paris,,OIF, +OIF:SP:59:3807578,1,"Musée du Louvre",48.860775,2.333527,0,0,OIF:SA:59:3687092,Europe/Paris,,OIF, +OIF:SP:59:3807579,1,"Musée du Louvre",48.860838,2.334004,0,0,OIF:SA:59:3687092,Europe/Paris,,OIF, +OIF:SP:59:3807580,1,"Pont du Carrousel - Quai Voltaire",48.857989,2.332955,0,0,OIF:SA:59:3687093,Europe/Paris,,OIF, +OIF:SP:59:3807581,1,"Jacob",48.856011,2.331308,0,0,OIF:SA:59:3807581,Europe/Paris,,OIF, +OIF:SP:59:3807582,1,"Saint-Germain-des-Prés",48.853288,2.33252,0,0,OIF:SA:59623,Europe/Paris,,OIF, +OIF:SP:59:3807583,1,"Saint-Germain-des-Prés",48.854367,2.333691,0,0,OIF:SA:59623,Europe/Paris,,OIF, +OIF:SP:59:3807584,1,"Michel Debré",48.851787,2.330722,0,0,OIF:SA:59257,Europe/Paris,,OIF, +OIF:SP:59:3807585,1,"Michel Debré",48.852237,2.330995,0,0,OIF:SA:59257,Europe/Paris,,OIF, +OIF:SP:59:3807586,1,"Sevres - Babylone",48.851095,2.325929,0,0,OIF:SA:59362,Europe/Paris,,OIF, +OIF:SP:59:3807587,1,"Bac - Saint-Placide",48.849738,2.322933,0,0,OIF:SA:59:3807587,Europe/Paris,,OIF, +OIF:SP:59:3807588,1,"Vaneau - Saint-Romain",48.848218,2.319924,0,0,OIF:SA:59365,Europe/Paris,,OIF, +OIF:SP:59:3807595,1,"Abbé Groult",48.84069,2.296125,0,0,OIF:SA:59:3807595,Europe/Paris,,OIF, +OIF:SP:59:3807596,1,"Abbé Groult",48.838372,2.298782,0,0,OIF:SA:59:3807595,Europe/Paris,,OIF, +OIF:SP:59:3807598,1,"Duranton",48.838449,2.288557,0,0,OIF:SA:59:3749944,Europe/Paris,,OIF, +OIF:SP:59:3807599,1,"Lycée Louis Armand",48.83727,2.284365,0,0,OIF:SA:59:3807599,Europe/Paris,,OIF, +OIF:SP:59:3807601,1,"Balard",48.836458,2.278266,0,0,OIF:SA:59477,Europe/Paris,,OIF, +OIF:SP:59:3807602,1,"Louis Armand",48.832333,2.278475,0,0,OIF:SA:59:3807602,Europe/Paris,,OIF, +OIF:SP:59:3807604,1,"Frères Voisin",48.828862,2.273878,0,0,OIF:SA:59:3807604,Europe/Paris,,OIF, +OIF:SP:59:3807605,1,"Frères Voisin",48.828511,2.273361,0,0,OIF:SA:59:3807604,Europe/Paris,,OIF, +OIF:SP:59:3807609,1,"Desnouettes",48.834655,2.284463,0,0,OIF:SA:59143,Europe/Paris,,OIF, +OIF:SP:59:3807610,1,"Desnouettes - Vasco de Gama",48.835698,2.286681,0,0,OIF:SA:59143,Europe/Paris,,OIF, +OIF:SP:59:3807611,1,"Hameau",48.835789,2.289349,0,0,OIF:SA:59:3749945,Europe/Paris,,OIF, +OIF:SP:59:3807612,1,"Vaugirard - Croix-Nivert",48.834334,2.291025,0,0,OIF:SA:59:3807612,Europe/Paris,,OIF, +OIF:SP:59:3807613,1,"Hôpital de Vaugirard",48.835584,2.293134,0,0,OIF:SA:59:3807613,Europe/Paris,,OIF, +OIF:SP:59:3807616,1,"Cambronne - Vaugirard",48.840387,2.304486,0,0,OIF:SA:59:3749884,Europe/Paris,,OIF, +OIF:SP:59:3807623,1,"Jacob",48.856128,2.334495,0,0,OIF:SA:59:3807581,Europe/Paris,,OIF, +OIF:SP:59:3807625,1,"Sainte-Anne - Petits Champs",48.867192,2.336047,0,0,OIF:SA:59290,Europe/Paris,,OIF, +OIF:SP:59:3807629,1,"Réaumur - Sébastopol",48.866382,2.352762,0,0,OIF:SA:59586,Europe/Paris,,OIF, +OIF:SP:59:3807632,1,"Valenciennes",48.877822,2.356513,0,0,OIF:SA:8711300,Europe/Paris,,OIF, +OIF:SP:59:3811223,1,"Gare du Nord",48.880833,2.357332,0,0,OIF:SA:8727100,Europe/Paris,,OIF, +OIF:SP:59:3811225,1,"Magenta - Maubeuge",48.880393,2.351554,0,0,OIF:SA:59:3811225,Europe/Paris,,OIF, +OIF:SP:59:3811226,1,"Condorcet",48.879333,2.348065,0,0,OIF:SA:59:3811226,Europe/Paris,,OIF, +OIF:SP:59:3811227,1,"Maubeuge - Rochechouart",48.878246,2.344577,0,0,OIF:SA:59:3811227,Europe/Paris,,OIF, +OIF:SP:59:3811229,1,"Le Peletier - Haussmann",48.874472,2.339154,0,0,OIF:SA:59515,Europe/Paris,,OIF, +OIF:SP:59:3811230,1,"Chaussée d'Antin",48.872899,2.334221,0,0,OIF:SA:59568,Europe/Paris,,OIF, +OIF:SP:59:3811231,1,"Chaussée d'Antin",48.872575,2.333159,0,0,OIF:SA:59568,Europe/Paris,,OIF, +OIF:SP:59:3811232,1,"Opéra - Scribe",48.87262,2.330802,0,0,OIF:SA:8775859,Europe/Paris,,OIF, +OIF:SP:59:3811233,1,"Capucines - Caumartin",48.870265,2.329358,0,0,OIF:SA:59:3811233,Europe/Paris,,OIF, +OIF:SP:59:3811234,1,"Madeleine - Vignon",48.87075,2.325475,0,0,OIF:SA:59412,Europe/Paris,,OIF, +OIF:SP:59:3811236,1,"Concorde",48.867002,2.321157,0,0,OIF:SA:59235,Europe/Paris,,OIF, +OIF:SP:59:3811238,1,"Concorde - Cours la Reine",48.866139,2.319332,0,0,OIF:SA:59235,Europe/Paris,,OIF, +OIF:SP:59:3811239,1,"Concorde - Cours la Reine",48.865636,2.320259,0,0,OIF:SA:59235,Europe/Paris,,OIF, +OIF:SP:59:3811240,1,"Champs-Élysées - Clemenceau",48.868035,2.313487,0,0,OIF:SA:59592,Europe/Paris,,OIF, +OIF:SP:59:3811243,1,"Rond-Point des Champs-Élysées",48.868411,2.309373,0,0,OIF:SA:59232,Europe/Paris,,OIF, +OIF:SP:59:3811248,1,"Bosquet - Rapp",48.862432,2.300658,0,0,OIF:SA:59:3749902,Europe/Paris,,OIF, +OIF:SP:59:3811249,1,"Bosquet - Rapp",48.86281,2.301925,0,0,OIF:SA:59:3749902,Europe/Paris,,OIF, +OIF:SP:59:3811250,1,"Tour Eiffel",48.860319,2.295892,0,0,OIF:SA:8739305,Europe/Paris,,OIF, +OIF:SP:59:3811251,1,"Tour Eiffel",48.860534,2.295756,0,0,OIF:SA:8739305,Europe/Paris,,OIF, +OIF:SP:59:3811252,1,"Monttessuy",48.858917,2.298073,0,0,OIF:SA:59:3811252,Europe/Paris,,OIF, +OIF:SP:59:3811253,1,"Monttessuy",48.858846,2.298399,0,0,OIF:SA:59:3811252,Europe/Paris,,OIF, +OIF:SP:59:3811256,1,"Champ de Mars - Suffren",48.854917,2.295747,0,0,OIF:SA:59:3811256,Europe/Paris,,OIF, +OIF:SP:59:3811257,1,"Champ de Mars - Suffren",48.855178,2.297027,0,0,OIF:SA:59:3811256,Europe/Paris,,OIF, +OIF:SP:59:3811258,1,"Desaix",48.853101,2.293174,0,0,OIF:SA:59:3811258,Europe/Paris,,OIF, +OIF:SP:59:3811259,1,"Desaix",48.853299,2.293664,0,0,OIF:SA:59:3811258,Europe/Paris,,OIF, +OIF:SP:59:3811260,1,"Dupleix",48.851204,2.291664,0,0,OIF:SA:59455,Europe/Paris,,OIF, +OIF:SP:59:3811261,1,"Dupleix",48.852004,2.292099,0,0,OIF:SA:59455,Europe/Paris,,OIF, +OIF:SP:59:3811262,1,"Rue Rouelle",48.849379,2.291175,0,0,OIF:SA:59:3811262,Europe/Paris,,OIF, +OIF:SP:59:3811263,1,"Rue Rouelle",48.850169,2.288682,0,0,OIF:SA:59:3811262,Europe/Paris,,OIF, +OIF:SP:59:3811264,1,"Théâtre",48.847923,2.289937,0,0,OIF:SA:59:3811264,Europe/Paris,,OIF, +OIF:SP:59:3811265,1,"Théâtre",48.849198,2.287866,0,0,OIF:SA:59:3811264,Europe/Paris,,OIF, +OIF:SP:59:3811266,1,"Charles Michels",48.845459,2.28772,0,0,OIF:SA:59386,Europe/Paris,,OIF, +OIF:SP:59:3811267,1,"Charles Michels",48.846941,2.285894,0,0,OIF:SA:59386,Europe/Paris,,OIF, +OIF:SP:59:3811268,1,"Convention - Boucicaut",48.841629,2.284973,0,0,OIF:SA:59:3811268,Europe/Paris,,OIF, +OIF:SP:59:3811269,1,"Convention - Boucicaut",48.843813,2.28316,0,0,OIF:SA:59:3811268,Europe/Paris,,OIF, +OIF:SP:59:3811270,1,"Lourmel - Félix Faure",48.839094,2.282239,0,0,OIF:SA:59478,Europe/Paris,,OIF, +OIF:SP:59:3811271,1,"Vasco de Gama - Lourmel",48.837709,2.281995,0,0,OIF:SA:59477,Europe/Paris,,OIF, +OIF:SP:59:3811272,1,"Lecourbe - Vasco de Gama",48.837009,2.283371,0,0,OIF:SA:59478,Europe/Paris,,OIF, +OIF:SP:59:3811273,1,"Balard - Lecourbe",48.836361,2.281044,0,0,OIF:SA:59:3811273,Europe/Paris,,OIF, +OIF:SP:59:3811279,1,"Hôpital Européen Georges Pompidou",48.839915,2.272149,0,0,OIF:SA:8739332,Europe/Paris,,OIF, +OIF:SP:59:3811281,1,"Saint-Charles - Balard",48.838715,2.27874,0,0,OIF:SA:59:3811281,Europe/Paris,,OIF, +OIF:SP:59:3811282,1,"Rond-Point Saint-Charles",48.841826,2.281446,0,0,OIF:SA:59:3811282,Europe/Paris,,OIF, +OIF:SP:59:3811283,1,"Docteur Finlay",48.851841,2.290152,0,0,OIF:SA:59:3811283,Europe/Paris,,OIF, +OIF:SP:59:3811284,1,"Madeleine",48.86942,2.325502,0,0,OIF:SA:59412,Europe/Paris,,OIF, +OIF:SP:59:3811285,1,"Capucines - Caumartin",48.870095,2.329712,0,0,OIF:SA:59:3811233,Europe/Paris,,OIF, +OIF:SP:59:3811286,1,"Opéra",48.871739,2.33275,0,0,OIF:SA:59209,Europe/Paris,,OIF, +OIF:SP:59:3811287,1,"Saint-Georges - Provence",48.873771,2.336211,0,0,OIF:SA:59515,Europe/Paris,,OIF, +OIF:SP:59:3811288,1,"Le Peletier",48.874436,2.338786,0,0,OIF:SA:59515,Europe/Paris,,OIF, +OIF:SP:59:3811289,1,"Cadet",48.875595,2.343241,0,0,OIF:SA:59304,Europe/Paris,,OIF, +OIF:SP:59:3811290,1,"Square Montholon",48.876547,2.347015,0,0,OIF:SA:59304,Europe/Paris,,OIF, +OIF:SP:59:3811291,1,"Place Franz Liszt",48.877949,2.352207,0,0,OIF:SA:59574,Europe/Paris,,OIF, +OIF:SP:59:3811292,1,"La Fayette - Magenta",48.878721,2.355246,0,0,OIF:SA:8727100,Europe/Paris,,OIF, +OIF:SP:59:3812918,1,"Hôtel de Ville",48.857665,2.349518,0,0,OIF:SA:59590,Europe/Paris,,OIF, +OIF:SP:59:3812934,1,"Sevres - Lecourbe",48.844738,2.309453,0,0,OIF:SA:59648,Europe/Paris,,OIF, +OIF:SP:59:3812935,1,"Sevres - Lecourbe",48.844963,2.311332,0,0,OIF:SA:59648,Europe/Paris,,OIF, +OIF:SP:59:3812936,1,"Volontaires - Lecourbe",48.843965,2.306921,0,0,OIF:SA:59:3812936,Europe/Paris,,OIF, +OIF:SP:59:3812937,1,"Cambronne - Lecourbe",48.842507,2.301979,0,0,OIF:SA:59:3749886,Europe/Paris,,OIF, +OIF:SP:59:3812946,1,"Charles Michels",48.847022,2.285335,0,0,OIF:SA:59386,Europe/Paris,,OIF, +OIF:SP:59:3812948,1,"Pont de Grenelle - Place Fernand Forest",48.848953,2.282283,0,0,OIF:SA:59:3812948,Europe/Paris,,OIF, +OIF:SP:59:3812949,1,"Pont de Grenelle - Place Fernand Forest",48.848971,2.282051,0,0,OIF:SA:59:3812948,Europe/Paris,,OIF, +OIF:SP:59:3812950,1,"Pont de Grenelle - Maurice Bourdet",48.851046,2.279067,0,0,OIF:SA:59:3812950,Europe/Paris,,OIF, +OIF:SP:59:3812951,1,"Pont de Grenelle - Maurice Bourdet",48.850947,2.278822,0,0,OIF:SA:59:3812950,Europe/Paris,,OIF, +OIF:SP:59:3812952,1,"Radio France",48.853095,2.279936,0,0,OIF:SA:8754320,Europe/Paris,,OIF, +OIF:SP:59:3812953,1,"Radio France",48.853194,2.279541,0,0,OIF:SA:8754320,Europe/Paris,,OIF, +OIF:SP:59:3812954,1,"Raynouard - Ranelagh",48.853516,2.276926,0,0,OIF:SA:8754320,Europe/Paris,,OIF, +OIF:SP:59:3812955,1,"Place du Docteur Hayem - Radio France",48.852662,2.275837,0,0,OIF:SA:59:3812955,Europe/Paris,,OIF, +OIF:SP:59:3812958,1,"Volontaires - Vaugirard",48.841538,2.308352,0,0,OIF:SA:59509,Europe/Paris,,OIF, +OIF:SP:59:3812959,1,"Pasteur - Lycée Buffon",48.84322,2.312722,0,0,OIF:SA:59452,Europe/Paris,,OIF, +OIF:SP:59:3812967,1,"Châtelet",48.857018,2.347488,0,0,OIF:SA:59566,Europe/Paris,,OIF, +OIF:SP:59:3812968,1,"Luxembourg",48.847312,2.340215,0,0,OIF:SA:8775861,Europe/Paris,,OIF, +OIF:SP:59:3812969,1,"Auguste Comte",48.844157,2.338322,0,0,OIF:SA:59:3764622,Europe/Paris,,OIF, +OIF:SP:59:3812970,1,"Auguste Comte",48.844004,2.338458,0,0,OIF:SA:59:3764622,Europe/Paris,,OIF, +OIF:SP:59:3812971,1,"Guynemer - Vavin",48.844597,2.332834,0,0,OIF:SA:59:3812971,Europe/Paris,,OIF, +OIF:SP:59:3812972,1,"Guynemer - Vavin",48.844283,2.333964,0,0,OIF:SA:59:3812971,Europe/Paris,,OIF, +OIF:SP:59:3812973,1,"Bréa - Notre-Dame-des-Champs",48.843797,2.330233,0,0,OIF:SA:59:3812973,Europe/Paris,,OIF, +OIF:SP:59:3812976,1,"Place du 18 Juin 1940 - Rue de l'Arrivée",48.844327,2.322839,0,0,OIF:SA:8739100,Europe/Paris,,OIF, +OIF:SP:59:3812978,1,"Duroc",48.84731,2.316452,0,0,OIF:SA:59349,Europe/Paris,,OIF, +OIF:SP:59:3812979,1,"Duroc",48.847373,2.31607,0,0,OIF:SA:59349,Europe/Paris,,OIF, +OIF:SP:59:3812980,1,"Oudinot",48.849763,2.315116,0,0,OIF:SA:59:3812980,Europe/Paris,,OIF, +OIF:SP:59:3812981,1,"Oudinot",48.848972,2.315198,0,0,OIF:SA:59:3812980,Europe/Paris,,OIF, +OIF:SP:59:3812982,1,"Saint-François-Xavier",48.851678,2.314094,0,0,OIF:SA:59524,Europe/Paris,,OIF, +OIF:SP:59:3812987,1,"École Militaire",48.854138,2.305894,0,0,OIF:SA:59470,Europe/Paris,,OIF, +OIF:SP:59:3812988,1,"Général de Bollardiere",48.851531,2.301197,0,0,OIF:SA:59:3749895,Europe/Paris,,OIF, +OIF:SP:59:3812990,1,"Général Détrie",48.85321,2.297886,0,0,OIF:SA:59:3812990,Europe/Paris,,OIF, +OIF:SP:59:3812991,1,"Champ de Mars - Suffren",48.854899,2.29527,0,0,OIF:SA:59:3811256,Europe/Paris,,OIF, +OIF:SP:59:3812992,1,"Champ de Mars",48.857154,2.291822,0,0,OIF:SA:8739305,Europe/Paris,,OIF, +OIF:SP:59:3812993,1,"Tour Eiffel",48.858214,2.292516,0,0,OIF:SA:8739305,Europe/Paris,,OIF, +OIF:SP:59:3812994,1,"Tour Eiffel",48.859212,2.292774,0,0,OIF:SA:8739305,Europe/Paris,,OIF, +OIF:SP:59:3812995,1,"Varsovie",48.861153,2.291601,0,0,OIF:SA:59:3812995,Europe/Paris,,OIF, +OIF:SP:59:3812996,1,"Varsovie",48.861207,2.291274,0,0,OIF:SA:59:3812995,Europe/Paris,,OIF, +OIF:SP:59:3812997,1,"Iéna",48.864137,2.293587,0,0,OIF:SA:59619,Europe/Paris,,OIF, +OIF:SP:59:3812998,1,"Iéna",48.864074,2.293056,0,0,OIF:SA:59619,Europe/Paris,,OIF, +OIF:SP:59:3812999,1,"Lübeck",48.865997,2.292087,0,0,OIF:SA:59:3812999,Europe/Paris,,OIF, +OIF:SP:59:3813000,1,"Lübeck",48.865539,2.292714,0,0,OIF:SA:59:3812999,Europe/Paris,,OIF, +OIF:SP:59:3813001,1,"Kléber - Boissière",48.867453,2.290696,0,0,OIF:SA:59652,Europe/Paris,,OIF, +OIF:SP:59:3813002,1,"Kléber - Boissière",48.866886,2.289648,0,0,OIF:SA:59652,Europe/Paris,,OIF, +OIF:SP:59:3813003,1,"Lauriston",48.869232,2.289359,0,0,OIF:SA:59:3813003,Europe/Paris,,OIF, +OIF:SP:59:3813004,1,"Victor Hugo - Poincaré",48.870371,2.285312,0,0,OIF:SA:59417,Europe/Paris,,OIF, +OIF:SP:59:3813005,1,"Victor Hugo - Poincaré",48.869275,2.285817,0,0,OIF:SA:59417,Europe/Paris,,OIF, +OIF:SP:59:3813006,1,"Foch",48.871953,2.284915,0,0,OIF:SA:59:3813006,Europe/Paris,,OIF, +OIF:SP:59:3813007,1,"Foch",48.87162,2.284711,0,0,OIF:SA:59:3813006,Europe/Paris,,OIF, +OIF:SP:59:3813008,1,"Alphand",48.874316,2.284286,0,0,OIF:SA:59:3813008,Europe/Paris,,OIF, +OIF:SP:59:3813009,1,"Alphand",48.874262,2.284041,0,0,OIF:SA:59:3813008,Europe/Paris,,OIF, +OIF:SP:59:3813010,1,"Porte Maillot",48.876788,2.28363,0,0,OIF:SA:8738102,Europe/Paris,,OIF, +OIF:SP:59:3813011,1,"Porte Maillot",48.876185,2.283508,0,0,OIF:SA:8738102,Europe/Paris,,OIF, +OIF:SP:59:3813012,1,"Porte Maillot - Palais des Congres",48.878154,2.283683,0,0,OIF:SA:8738102,Europe/Paris,,OIF, +OIF:SP:59:3813013,1,"Parmentier",48.880219,2.27962,0,0,OIF:SA:59:3813013,Europe/Paris,,OIF, +OIF:SP:59:3813014,1,"Parmentier",48.880704,2.27887,0,0,OIF:SA:59:3813013,Europe/Paris,,OIF, +OIF:SP:59:3813021,1,"Château",48.887867,2.263544,0,0,OIF:SA:59:3813021,Europe/Paris,,OIF, +OIF:SP:59:3813023,1,"La Saussaye - d'Argenson",48.888892,2.26297,0,0,OIF:SA:59:3813023,Europe/Paris,,OIF, +OIF:SP:59:3813024,1,"Perronet",48.890627,2.265325,0,0,OIF:SA:59:3813024,Europe/Paris,,OIF, +OIF:SP:59:3813025,1,"Perronet",48.888857,2.265859,0,0,OIF:SA:59:3813024,Europe/Paris,,OIF, +OIF:SP:59:3813026,1,"Bineau - la Saussaye",48.892625,2.269834,0,0,OIF:SA:59:3813026,Europe/Paris,,OIF, +OIF:SP:59:3813027,1,"Hôpital Américain",48.893409,2.273295,0,0,OIF:SA:59:3813027,Europe/Paris,,OIF, +OIF:SP:59:3813029,1,"Bineau - Château",48.890576,2.269905,0,0,OIF:SA:59:3813029,Europe/Paris,,OIF, +OIF:SP:59:3813030,1,"Général Gouraud",48.885988,2.26217,0,0,OIF:SA:59661,Europe/Paris,,OIF, +OIF:SP:59:3813031,1,"Rue de l'Église",48.885387,2.264174,0,0,OIF:SA:59:3813031,Europe/Paris,,OIF, +OIF:SP:59:3813032,1,"André Maurois",48.877981,2.279404,0,0,OIF:SA:8738102,Europe/Paris,,OIF, +OIF:SP:59:3813033,1,"Palais des Congres",48.877137,2.280523,0,0,OIF:SA:8738102,Europe/Paris,,OIF, +OIF:SP:59:3813034,1,"Champ de Mars",48.857189,2.291359,0,0,OIF:SA:8739305,Europe/Paris,,OIF, +OIF:SP:59:3813035,1,"Champ de Mars - Suffren",48.854495,2.295583,0,0,OIF:SA:59:3811256,Europe/Paris,,OIF, +OIF:SP:59:3813036,1,"Général Détrie",48.852626,2.298459,0,0,OIF:SA:59:3813036,Europe/Paris,,OIF, +OIF:SP:59:3813041,1,"Notre-Dame-des-Champs",48.844624,2.328953,0,0,OIF:SA:59516,Europe/Paris,,OIF, +OIF:SP:59:3813042,1,"Assas - Duguay Trouin",48.846215,2.330424,0,0,OIF:SA:59516,Europe/Paris,,OIF, +OIF:SP:59:3813044,1,"Champ de Mars",48.854711,2.296346,0,0,OIF:SA:8739305,Europe/Paris,,OIF, +OIF:SP:59:3813048,1,"Champ de Mars - la Bourdonnais",48.855585,2.303196,0,0,OIF:SA:59:3687110,Europe/Paris,,OIF, +OIF:SP:59:3813052,1,"Duquesne - Lowendal",48.85244,2.308796,0,0,OIF:SA:59:3764719,Europe/Paris,,OIF, +OIF:SP:59:3813055,1,"Saint-François-Xavier",48.850599,2.314067,0,0,OIF:SA:59524,Europe/Paris,,OIF, +OIF:SP:59:3813056,1,"Saint-François-Xavier",48.851848,2.314897,0,0,OIF:SA:59524,Europe/Paris,,OIF, +OIF:SP:59:3813059,1,"Vaneau - Saint-Romain",48.848533,2.320972,0,0,OIF:SA:59365,Europe/Paris,,OIF, +OIF:SP:59:3813060,1,"Bac - Saint-Placide",48.849585,2.323069,0,0,OIF:SA:59365,Europe/Paris,,OIF, +OIF:SP:59:3813061,1,"Sevres - Babylone",48.850762,2.325711,0,0,OIF:SA:59362,Europe/Paris,,OIF, +OIF:SP:59:3813071,1,"Maubert - Mutualité",48.850169,2.347759,0,0,OIF:SA:59357,Europe/Paris,,OIF, +OIF:SP:59:3813082,1,"Gare de Lyon - Diderot",48.846129,2.372066,0,0,OIF:SA:8768600,Europe/Paris,,OIF, +OIF:SP:59:3813084,1,"Gare de Lyon - Van Gogh",48.844898,2.371547,0,0,OIF:SA:8768600,Europe/Paris,,OIF, +OIF:SP:59:3813089,1,"Gare de Bercy",48.840005,2.381348,0,0,OIF:SA:59410,Europe/Paris,,OIF, +OIF:SP:59:3813091,1,"Dugommier",48.838843,2.387923,0,0,OIF:SA:59461,Europe/Paris,,OIF, +OIF:SP:59:3813092,1,"Dugommier",48.839032,2.388645,0,0,OIF:SA:59461,Europe/Paris,,OIF, +OIF:SP:59:3813094,1,"Charenton - Wattignies",48.83771,2.39089,0,0,OIF:SA:59:3765268,Europe/Paris,,OIF, +OIF:SP:59:3813095,1,"Nicolaï",48.835138,2.392834,0,0,OIF:SA:59:3813095,Europe/Paris,,OIF, +OIF:SP:59:3813096,1,"Nicolaï",48.836369,2.394374,0,0,OIF:SA:59:3813095,Europe/Paris,,OIF, +OIF:SP:59:3813098,1,"Porte de Charenton",48.83226,2.397678,0,0,OIF:SA:59465,Europe/Paris,,OIF, +OIF:SP:59:3813099,1,"Porte de Reuilly",48.834155,2.400212,0,0,OIF:SA:59:3813099,Europe/Paris,,OIF, +OIF:SP:59:3813100,1,"Porte de Reuilly",48.834325,2.400485,0,0,OIF:SA:59:3813099,Europe/Paris,,OIF, +OIF:SP:59:3813101,1,"Wattignies - Gravelle",48.835567,2.397518,0,0,OIF:SA:59:3813101,Europe/Paris,,OIF, +OIF:SP:59:3813109,1,"Bac - Babylone",48.85176,2.324158,0,0,OIF:SA:59:3813109,Europe/Paris,,OIF, +OIF:SP:59:3813110,1,"Vaneau - Babylone",48.851777,2.318615,0,0,OIF:SA:59:3813110,Europe/Paris,,OIF, +OIF:SP:59:3813111,1,"Breteuil",48.851569,2.310853,0,0,OIF:SA:59:3764714,Europe/Paris,,OIF, +OIF:SP:59:3813112,1,"Gare Montparnasse",48.842026,2.320716,0,0,OIF:SA:8739100,Europe/Paris,,OIF, +OIF:SP:59:3813114,1,"Place du 18 Juin 1940",48.843725,2.323411,0,0,OIF:SA:8739100,Europe/Paris,,OIF, +OIF:SP:59:3813124,1,"Vauban - Hôtel des Invalides",48.853574,2.31299,0,0,OIF:SA:59:3813124,Europe/Paris,,OIF, +OIF:SP:59:3813125,1,"Vauban - Hôtel des Invalides",48.853448,2.311287,0,0,OIF:SA:59:3813124,Europe/Paris,,OIF, +OIF:SP:59:3813135,1,"Marceau - Pierre 1er de Serbie - Place de Beyrouth",48.867788,2.299346,0,0,OIF:SA:59:3740526,Europe/Paris,,OIF, +OIF:SP:59:3813136,1,"Bassano",48.870197,2.298132,0,0,OIF:SA:59:3813136,Europe/Paris,,OIF, +OIF:SP:59:3813137,1,"Charles de Gaulle - Etoile - Marceau",48.87309,2.295909,0,0,OIF:SA:8775800,Europe/Paris,,OIF, +OIF:SP:59:3813138,1,"Charles de Gaulle - Etoile - Mac Mahon",48.875031,2.294995,0,0,OIF:SA:8775800,Europe/Paris,,OIF, +OIF:SP:59:3813139,1,"Charles de Gaulle - Etoile - Mac Mahon",48.875022,2.294668,0,0,OIF:SA:8775800,Europe/Paris,,OIF, +OIF:SP:59:3813140,1,"Ternes - Mac Mahon",48.879012,2.294569,0,0,OIF:SA:59416,Europe/Paris,,OIF, +OIF:SP:59:3813141,1,"Ternes - Mac Mahon",48.878994,2.294201,0,0,OIF:SA:59416,Europe/Paris,,OIF, +OIF:SP:59:3813142,1,"Pierre Demours",48.881493,2.295834,0,0,OIF:SA:59:3813142,Europe/Paris,,OIF, +OIF:SP:59:3813143,1,"Pierre Demours",48.881052,2.295249,0,0,OIF:SA:59:3813142,Europe/Paris,,OIF, +OIF:SP:59:3813144,1,"Pereire - Maréchal Juin",48.884055,2.297113,0,0,OIF:SA:59219,Europe/Paris,,OIF, +OIF:SP:59:3813147,1,"Porte de Champerret",48.885949,2.292724,0,0,OIF:SA:59436,Europe/Paris,,OIF, +OIF:SP:59:3813151,1,"Charles de Gaulle - Etoile - Marceau",48.872604,2.295937,0,0,OIF:SA:8775800,Europe/Paris,,OIF, +OIF:SP:59:3813152,1,"Bassano",48.870502,2.297492,0,0,OIF:SA:59:3813136,Europe/Paris,,OIF, +OIF:SP:59:3813153,1,"Marceau - Pierre 1er de Serbie - Place de Beyrouth",48.86706,2.299102,0,0,OIF:SA:59:3740526,Europe/Paris,,OIF, +OIF:SP:59:3813157,1,"Pont du Garigliano - Hôpital Européen Georges Pompidou",48.838548,2.270503,0,0,OIF:SA:8739332,Europe/Paris,,OIF, +OIF:SP:59:3813158,1,"Pont du Garigliano - Hôpital Européen Georges Pompidou",48.838306,2.270299,0,0,OIF:SA:8739332,Europe/Paris,,OIF, +OIF:SP:59:3813159,1,"Versailles - Exelmans",48.840495,2.264237,0,0,OIF:SA:29:456,Europe/Paris,,OIF, +OIF:SP:59:3813160,1,"Versailles - Exelmans",48.840414,2.264673,0,0,OIF:SA:29:456,Europe/Paris,,OIF, +OIF:SP:59:3813161,1,"Versailles - Chardon Lagache",48.839208,2.261202,0,0,OIF:SA:59:3813161,Europe/Paris,,OIF, +OIF:SP:59:3813162,1,"Versailles - Chardon Lagache",48.83884,2.262496,0,0,OIF:SA:59:3813161,Europe/Paris,,OIF, +OIF:SP:59:3813165,1,"Porte de Saint-Cloud - Michel Ange",48.839196,2.256845,0,0,OIF:SA:59492,Europe/Paris,,OIF, +OIF:SP:59:3813166,1,"Porte de Saint-Cloud - Michel Ange",48.839007,2.256587,0,0,OIF:SA:59492,Europe/Paris,,OIF, +OIF:SP:59:3813167,1,"Lycée Claude Bernard",48.842126,2.256215,0,0,OIF:SA:59:3813167,Europe/Paris,,OIF, +OIF:SP:59:3813168,1,"Lycée Claude Bernard",48.841613,2.25597,0,0,OIF:SA:59:3813167,Europe/Paris,,OIF, +OIF:SP:59:3813169,1,"Porte Molitor",48.844931,2.25749,0,0,OIF:SA:59:3813169,Europe/Paris,,OIF, +OIF:SP:59:3813170,1,"Porte Molitor",48.844859,2.257164,0,0,OIF:SA:59:3813169,Europe/Paris,,OIF, +OIF:SP:59:3813171,1,"Porte d'Auteuil",48.847052,2.258604,0,0,OIF:SA:59668,Europe/Paris,,OIF, +OIF:SP:59:3813172,1,"Porte d'Auteuil",48.846881,2.258155,0,0,OIF:SA:59668,Europe/Paris,,OIF, +OIF:SP:59:3813178,1,"Porte de Passy",48.857077,2.264323,0,0,OIF:SA:59:3740541,Europe/Paris,,OIF, +OIF:SP:59:3813179,1,"Ernest Hébert",48.860764,2.267015,0,0,OIF:SA:59:3813179,Europe/Paris,,OIF, +OIF:SP:59:3813180,1,"Ernest Hébert",48.860682,2.266633,0,0,OIF:SA:59:3813179,Europe/Paris,,OIF, +OIF:SP:59:3813181,1,"Porte de la Muette",48.863245,2.26885,0,0,OIF:SA:59:3765245,Europe/Paris,,OIF, +OIF:SP:59:3813182,1,"Porte de la Muette",48.86347,2.268673,0,0,OIF:SA:59:3765245,Europe/Paris,,OIF, +OIF:SP:59:3813183,1,"Dufrénoy",48.866177,2.271435,0,0,OIF:SA:8738104,Europe/Paris,,OIF, +OIF:SP:59:3813184,1,"Dufrénoy",48.866293,2.271162,0,0,OIF:SA:8738104,Europe/Paris,,OIF, +OIF:SP:59:3813185,1,"Longchamp",48.868317,2.273244,0,0,OIF:SA:59:3813185,Europe/Paris,,OIF, +OIF:SP:59:3813186,1,"Longchamp",48.869162,2.273583,0,0,OIF:SA:59:3813185,Europe/Paris,,OIF, +OIF:SP:59:3813187,1,"Porte Dauphine - Maréchal de Lattre de Tassigny",48.870807,2.27523,0,0,OIF:SA:59213,Europe/Paris,,OIF, +OIF:SP:59:3813188,1,"Porte Dauphine - Maréchal de Lattre de Tassigny",48.87069,2.274508,0,0,OIF:SA:59213,Europe/Paris,,OIF, +OIF:SP:59:3813189,1,"Marbeau",48.874979,2.279285,0,0,OIF:SA:59:3813189,Europe/Paris,,OIF, +OIF:SP:59:3813190,1,"Marbeau",48.875357,2.279571,0,0,OIF:SA:59:3813189,Europe/Paris,,OIF, +OIF:SP:59:3813191,1,"Porte Maillot - Malakoff",48.876401,2.282486,0,0,OIF:SA:59:3813191,Europe/Paris,,OIF, +OIF:SP:59:3813192,1,"Porte Maillot - Malakoff",48.876338,2.282118,0,0,OIF:SA:59:3813191,Europe/Paris,,OIF, +OIF:SP:59:3813194,1,"Porte Maillot - Palais des Congres",48.878711,2.284254,0,0,OIF:SA:8738102,Europe/Paris,,OIF, +OIF:SP:59:3813195,1,"Porte Maillot - Pershing",48.880589,2.284035,0,0,OIF:SA:59:3813195,Europe/Paris,,OIF, +OIF:SP:59:3813196,1,"Général Koenig - Palais des Congres",48.881516,2.285301,0,0,OIF:SA:59:3749709,Europe/Paris,,OIF, +OIF:SP:59:3813197,1,"Général Koenig - Palais des Congres",48.881003,2.285288,0,0,OIF:SA:59:3749709,Europe/Paris,,OIF, +OIF:SP:59:3813198,1,"Porte de Villiers",48.883953,2.289169,0,0,OIF:SA:59:3813198,Europe/Paris,,OIF, +OIF:SP:59:3813199,1,"Porte de Villiers",48.883332,2.287725,0,0,OIF:SA:59:3813198,Europe/Paris,,OIF, +OIF:SP:59:3813200,1,"Porte de Champerret",48.886228,2.29286,0,0,OIF:SA:59436,Europe/Paris,,OIF, +OIF:SP:59:3813201,1,"Porte de Champerret",48.885968,2.294114,0,0,OIF:SA:59436,Europe/Paris,,OIF, +OIF:SP:59:3813202,1,"Porte de Champerret - Stéphane Mallarmé",48.886012,2.291865,0,0,OIF:SA:59436,Europe/Paris,,OIF, +OIF:SP:59:3813203,1,"Porte de Saint-Cloud",48.837982,2.25599,0,0,OIF:SA:59492,Europe/Paris,,OIF, +OIF:SP:59:3864877,1,"Roger Salengro - Fontainebleau",48.814765,2.36064,0,0,OIF:SA:59:3781640,Europe/Paris,,OIF, +OIF:SP:59:3864881,1,"Le Kremlin-Bicêtre - Métro",48.809741,2.361359,0,0,OIF:SA:59578,Europe/Paris,,OIF, +OIF:SP:59:3864882,1,"Le Kremlin-Bicêtre - Métro",48.810504,2.362339,0,0,OIF:SA:59578,Europe/Paris,,OIF, +OIF:SP:59:3864884,1,"Hôpital du Kremlin-Bicêtre",48.809436,2.358664,0,0,OIF:SA:59:3754328,Europe/Paris,,OIF, +OIF:SP:59:3864893,1,"Verdun - Hautes Bruyères",48.790679,2.353664,0,0,OIF:SA:59:3864893,Europe/Paris,,OIF, +OIF:SP:59:3864894,1,"Verdun - Hautes Bruyères",48.79129,2.353746,0,0,OIF:SA:59:3864893,Europe/Paris,,OIF, +OIF:SP:59:3864898,1,"Les Lozaits",48.784908,2.354601,0,0,OIF:SA:59:3864898,Europe/Paris,,OIF, +OIF:SP:59:3864901,1,"Les Dahlias",48.777574,2.354653,0,0,OIF:SA:59:3864901,Europe/Paris,,OIF, +OIF:SP:59:3864902,1,"Les Dahlias",48.777349,2.354993,0,0,OIF:SA:59:3864901,Europe/Paris,,OIF, +OIF:SP:59:3864905,1,"Mairie de Chevilly-Larue",48.771391,2.349008,0,0,OIF:SA:59:3864905,Europe/Paris,,OIF, +OIF:SP:59:3864906,1,"Lycée Pauline Roland",48.772857,2.340169,0,0,OIF:SA:59:3864906,Europe/Paris,,OIF, +OIF:SP:59:3864913,1,"Parc des Sports",48.763455,2.339135,0,0,OIF:SA:59:3864913,Europe/Paris,,OIF, +OIF:SP:59:3864914,1,"Parc des Sports",48.764084,2.339258,0,0,OIF:SA:59:3864913,Europe/Paris,,OIF, +OIF:SP:59:3864915,1,"Marche de Rungis - Entrée E1",48.760642,2.341025,0,0,OIF:SA:59:3864915,Europe/Paris,,OIF, +OIF:SP:59:3864916,1,"Marche de Rungis - Entrée E1",48.760381,2.342044,0,0,OIF:SA:59:3864915,Europe/Paris,,OIF, +OIF:SP:59:3864917,1,"Le Delta",48.757999,2.343947,0,0,OIF:SA:59:3864917,Europe/Paris,,OIF, +OIF:SP:59:3864918,1,"Le Delta",48.758323,2.344002,0,0,OIF:SA:59:3864917,Europe/Paris,,OIF, +OIF:SP:59:3864920,1,"Les Closeaux",48.755941,2.346516,0,0,OIF:SA:59:3864920,Europe/Paris,,OIF, +OIF:SP:59:3864921,1,"Les Antes",48.752642,2.345333,0,0,OIF:SA:59:3864921,Europe/Paris,,OIF, +OIF:SP:59:3864922,1,"Les Antes",48.752426,2.345537,0,0,OIF:SA:59:3864921,Europe/Paris,,OIF, +OIF:SP:59:3864923,1,"Place Louis XIII",48.750422,2.347304,0,0,OIF:SA:59:3864923,Europe/Paris,,OIF, +OIF:SP:59:3864924,1,"Place Louis XIII",48.75053,2.347372,0,0,OIF:SA:59:3864923,Europe/Paris,,OIF, +OIF:SP:59:3864925,1,"Mairie de Rungis",48.747644,2.349179,0,0,OIF:SA:59:3864925,Europe/Paris,,OIF, +OIF:SP:59:3864926,1,"Traversière",48.746979,2.351475,0,0,OIF:SA:59831,Europe/Paris,,OIF, +OIF:SP:59:3864927,1,"Traversière",48.747168,2.35119,0,0,OIF:SA:59831,Europe/Paris,,OIF, +OIF:SP:59:3864932,1,"Rungis - la Fraternelle RER",48.740552,2.35271,0,0,OIF:SA:8754629,Europe/Paris,,OIF, +OIF:SP:59:3864934,1,"Général de Gaulle",48.7491,2.35096,0,0,OIF:SA:59:3864934,Europe/Paris,,OIF, +OIF:SP:59:3864935,1,"Mairie de Chevilly-Larue",48.771319,2.347865,0,0,OIF:SA:59:3864935,Europe/Paris,,OIF, +OIF:SP:59:3864936,1,"Les Coquettes",48.803423,2.358526,0,0,OIF:SA:59:3864936,Europe/Paris,,OIF, +OIF:SP:59:3864937,1,"Chastenet de Géry",48.806155,2.357996,0,0,OIF:SA:59:3864937,Europe/Paris,,OIF, +OIF:SP:59:3877767,1,"Pont de Neuilly - Métro",48.885474,2.259172,0,0,OIF:SA:59661,Europe/Paris,,OIF, +OIF:SP:59:3877769,1,"Pont de Neuilly - Rive Gauche",48.887196,2.253528,0,0,OIF:SA:59:3877769,Europe/Paris,,OIF, +OIF:SP:59:3877772,1,"Soljénitsyne",48.88464,2.248299,0,0,OIF:SA:59:3877772,Europe/Paris,,OIF, +OIF:SP:59:3877775,1,"Paul Lafargue",48.885618,2.246294,0,0,OIF:SA:59:3877775,Europe/Paris,,OIF, +OIF:SP:59:3877777,1,"Rousselle",48.886101,2.243663,0,0,OIF:SA:59:3877777,Europe/Paris,,OIF, +OIF:SP:59:3877784,1,"Craïova",48.885668,2.221096,0,0,OIF:SA:59:3877784,Europe/Paris,,OIF, +OIF:SP:59:3877785,1,"Les Fontenelles",48.885917,2.218969,0,0,OIF:SA:59:3877785,Europe/Paris,,OIF, +OIF:SP:59:3877786,1,"Les Fontenelles",48.885532,2.220074,0,0,OIF:SA:59:3877785,Europe/Paris,,OIF, +OIF:SP:59:3877792,1,"La Source",48.886675,2.204563,0,0,OIF:SA:59:3877792,Europe/Paris,,OIF, +OIF:SP:59:3877797,1,"Foch",48.888315,2.192729,0,0,OIF:SA:59:3877797,Europe/Paris,,OIF, +OIF:SP:59:3877798,1,"Foch",48.888108,2.192661,0,0,OIF:SA:59:3877797,Europe/Paris,,OIF, +OIF:SP:59:3877799,1,"Les Goulvents",48.88795,2.188287,0,0,OIF:SA:59:3877799,Europe/Paris,,OIF, +OIF:SP:59:3877800,1,"Les Goulvents",48.887734,2.188138,0,0,OIF:SA:59:3877799,Europe/Paris,,OIF, +OIF:SP:59:3877801,1,"Rue du Mans",48.888197,2.184688,0,0,OIF:SA:59:3877801,Europe/Paris,,OIF, +OIF:SP:59:3877802,1,"Cité du Vieux Pont",48.889972,2.181112,0,0,OIF:SA:59:3877802,Europe/Paris,,OIF, +OIF:SP:59:3877803,1,"Pereire",48.889718,2.179178,0,0,OIF:SA:59:3877803,Europe/Paris,,OIF, +OIF:SP:59:3877804,1,"Rueil-Malmaison RER",48.887137,2.171459,0,0,OIF:SA:8775805,Europe/Paris,,OIF, +OIF:SP:59:3877805,1,"Rueil-Malmaison RER",48.887101,2.171718,0,0,OIF:SA:8775805,Europe/Paris,,OIF, +OIF:SP:59:3877806,1,"D'Estienne d'Orves",48.887086,2.179908,0,0,OIF:SA:59:3877806,Europe/Paris,,OIF, +OIF:SP:59:3877807,1,"Rue du Mans",48.887415,2.184064,0,0,OIF:SA:59:3877807,Europe/Paris,,OIF, +OIF:SP:59:3887743,1,"Porte de France",48.827459,2.37988,0,0,OIF:SA:59724,Europe/Paris,,OIF, +OIF:SP:59:3887745,1,"Bibliothèque Rue Mann",48.829293,2.378153,0,0,OIF:SA:8732832,Europe/Paris,,OIF, +OIF:SP:59:3887746,1,"Bibliothèque Rue Mann",48.828817,2.378112,0,0,OIF:SA:8732832,Europe/Paris,,OIF, +OIF:SP:59:3887747,1,"Bibliothèque François Mitterrand",48.83039,2.377051,0,0,OIF:SA:8732832,Europe/Paris,,OIF, +OIF:SP:59:3887748,1,"Émile Durkheim",48.831262,2.376262,0,0,OIF:SA:8732832,Europe/Paris,,OIF, +OIF:SP:59:3887749,1,"Bibliothèque Nationale de France",48.834355,2.373378,0,0,OIF:SA:59:3887749,Europe/Paris,,OIF, +OIF:SP:59:3887750,1,"Bibliothèque Nationale de France",48.834696,2.373447,0,0,OIF:SA:59:3887749,Europe/Paris,,OIF, +OIF:SP:59:3887753,1,"Vincent Auriol",48.83671,2.371147,0,0,OIF:SA:59450,Europe/Paris,,OIF, +OIF:SP:59:3887754,1,"Vincent Auriol",48.836854,2.370916,0,0,OIF:SA:59450,Europe/Paris,,OIF, +OIF:SP:59:3887755,1,"Cité de la Mode et du Design",48.840585,2.368835,0,0,OIF:SA:59:3887755,Europe/Paris,,OIF, +OIF:SP:59:3887756,1,"Cité de la Mode et du Design",48.840369,2.368848,0,0,OIF:SA:59:3887755,Europe/Paris,,OIF, +OIF:SP:59:3887757,1,"Gare d'Austerlitz",48.843507,2.364302,0,0,OIF:SA:8754700,Europe/Paris,,OIF, +OIF:SP:59:3887758,1,"Buffon - Jardin des Plantes",48.842115,2.359386,0,0,OIF:SA:59:3887758,Europe/Paris,,OIF, +OIF:SP:59:3887762,1,"Cardinal Lemoine - Monge",48.846376,2.35119,0,0,OIF:SA:59380,Europe/Paris,,OIF, +OIF:SP:59:3887763,1,"Cardinal Lemoine - Monge",48.8467,2.351885,0,0,OIF:SA:59380,Europe/Paris,,OIF, +OIF:SP:59:3887764,1,"Lycée Henri IV",48.846233,2.348916,0,0,OIF:SA:59:3887764,Europe/Paris,,OIF, +OIF:SP:59:3887765,1,"Lycée Henri IV",48.846134,2.348916,0,0,OIF:SA:59:3887764,Europe/Paris,,OIF, +OIF:SP:59:3887770,1,"Sénat",48.849379,2.337477,0,0,OIF:SA:59:3765423,Europe/Paris,,OIF, +OIF:SP:59:3887772,1,"Musée du Luxembourg",48.848597,2.332044,0,0,OIF:SA:59:3442426,Europe/Paris,,OIF, +OIF:SP:59:3887774,1,"Rennes - Raspail",48.847554,2.328381,0,0,OIF:SA:59510,Europe/Paris,,OIF, +OIF:SP:59:3887775,1,"Rennes - Raspail",48.847455,2.328694,0,0,OIF:SA:59510,Europe/Paris,,OIF, +OIF:SP:59:3887785,1,"Cambronne - Lecourbe",48.842319,2.302755,0,0,OIF:SA:59:3749886,Europe/Paris,,OIF, +OIF:SP:59:3887789,1,"Alleray",48.836963,2.306285,0,0,OIF:SA:14:14954,Europe/Paris,,OIF, +OIF:SP:59:3887790,1,"Brancion - Vouillé",48.83424,2.30468,0,0,OIF:SA:59:3887790,Europe/Paris,,OIF, +OIF:SP:59:3887791,1,"Brancion - Vouillé",48.835022,2.305524,0,0,OIF:SA:59:3887790,Europe/Paris,,OIF, +OIF:SP:59:3887792,1,"Brancion - Morillons",48.832271,2.302612,0,0,OIF:SA:59:3887792,Europe/Paris,,OIF, +OIF:SP:59:3887793,1,"Morillons - Dantzig",48.833348,2.298473,0,0,OIF:SA:59:3887793,Europe/Paris,,OIF, +OIF:SP:59:3887794,1,"Morillons - Dantzig",48.833204,2.299222,0,0,OIF:SA:59:3887793,Europe/Paris,,OIF, +OIF:SP:59:3887795,1,"Georges Brassens",48.830138,2.29563,0,0,OIF:SA:59112,Europe/Paris,,OIF, +OIF:SP:59:3887796,1,"Georges Brassens",48.830022,2.295862,0,0,OIF:SA:59112,Europe/Paris,,OIF, +OIF:SP:59:3887797,1,"Théâtre de la Plaine - Guillaumat",48.82825,2.2931,0,0,OIF:SA:59:3887797,Europe/Paris,,OIF, +OIF:SP:59:3887798,1,"Théâtre de la Plaine - Guillaumat",48.828115,2.293331,0,0,OIF:SA:59:3887797,Europe/Paris,,OIF, +OIF:SP:59:3887799,1,"Carrefour Albert Legris",48.825607,2.292326,0,0,OIF:SA:24:15294,Europe/Paris,,OIF, +OIF:SP:59:3887800,1,"Carrefour Albert Legris",48.825697,2.292557,0,0,OIF:SA:24:15294,Europe/Paris,,OIF, +OIF:SP:59:3887801,1,"Avenue Marcel Martinie",48.823441,2.292586,0,0,OIF:SA:59:3887801,Europe/Paris,,OIF, +OIF:SP:59:3887802,1,"Avenue Marcel Martinie",48.823307,2.292764,0,0,OIF:SA:59:3887801,Europe/Paris,,OIF, +OIF:SP:59:3887803,1,"Square de l'Insurrection",48.821077,2.29105,0,0,OIF:SA:8739153,Europe/Paris,,OIF, +OIF:SP:59:3887804,1,"Square de l'Insurrection",48.820834,2.291105,0,0,OIF:SA:8739153,Europe/Paris,,OIF, +OIF:SP:59:3887805,1,"Gare de Vanves-Malakoff",48.819226,2.292781,0,0,OIF:SA:8739153,Europe/Paris,,OIF, +OIF:SP:59:3887808,1,"Place Charles Vallin",48.835111,2.302665,0,0,OIF:SA:59:3887808,Europe/Paris,,OIF, +OIF:SP:59:3887810,1,"Pasteur - Lycée Buffon",48.842986,2.313076,0,0,OIF:SA:59452,Europe/Paris,,OIF, +OIF:SP:59:3887811,1,"Maine - Vaugirard",48.844758,2.319312,0,0,OIF:SA:59602,Europe/Paris,,OIF, +OIF:SP:59:3893335,1,"Gare Saint-Lazare",48.875127,2.324765,0,0,OIF:SA:8738400,Europe/Paris,,OIF, +OIF:SP:59:3893347,1,"Palais Royal - Comédie Française",48.864037,2.335012,0,0,OIF:SA:59591,Europe/Paris,,OIF, +OIF:SP:59:3893351,1,"Pont Neuf - Quai du Louvre",48.858654,2.341019,0,0,OIF:SA:59664,Europe/Paris,,OIF, +OIF:SP:59:3893352,1,"Pont Neuf - Quai des Orfèvres",48.856578,2.3414,0,0,OIF:SA:59664,Europe/Paris,,OIF, +OIF:SP:59:3893362,1,"Berthollet - Vauquelin",48.840031,2.346382,0,0,OIF:SA:59:3764822,Europe/Paris,,OIF, +OIF:SP:59:3893364,1,"Monge - Claude Bernard",48.838593,2.350126,0,0,OIF:SA:59:3893364,Europe/Paris,,OIF, +OIF:SP:59:3893365,1,"Monge - Claude Bernard",48.838773,2.350221,0,0,OIF:SA:59:3893364,Europe/Paris,,OIF, +OIF:SP:59:3893366,1,"Les Gobelins",48.836391,2.351936,0,0,OIF:SA:59294,Europe/Paris,,OIF, +OIF:SP:59:3893367,1,"Banquier",48.83418,2.353501,0,0,OIF:SA:59:3893367,Europe/Paris,,OIF, +OIF:SP:59:3893368,1,"Banquier",48.834251,2.353801,0,0,OIF:SA:59:3893367,Europe/Paris,,OIF, +OIF:SP:59:3893369,1,"Place d'Italie - Mairie du 13ème",48.831753,2.354835,0,0,OIF:SA:59275,Europe/Paris,,OIF, +OIF:SP:59:3893370,1,"Place d'Italie",48.830908,2.357053,0,0,OIF:SA:59275,Europe/Paris,,OIF, +OIF:SP:59:3893371,1,"Place d'Italie",48.831069,2.35689,0,0,OIF:SA:59275,Europe/Paris,,OIF, +OIF:SP:59:3893372,1,"Les Alpes",48.831743,2.359531,0,0,OIF:SA:59:3893372,Europe/Paris,,OIF, +OIF:SP:59:3893373,1,"Les Alpes",48.831851,2.359273,0,0,OIF:SA:59:3893372,Europe/Paris,,OIF, +OIF:SP:59:3893374,1,"Nationale",48.832776,2.362609,0,0,OIF:SA:59454,Europe/Paris,,OIF, +OIF:SP:59:3893375,1,"Nationale",48.832875,2.362323,0,0,OIF:SA:59454,Europe/Paris,,OIF, +OIF:SP:59:3893376,1,"Clisson",48.830744,2.366882,0,0,OIF:SA:59:3893376,Europe/Paris,,OIF, +OIF:SP:59:3893377,1,"Clisson",48.831598,2.36612,0,0,OIF:SA:59:3893376,Europe/Paris,,OIF, +OIF:SP:59:3893378,1,"Jeanne d'Arc - Église de la Gare",48.829116,2.369087,0,0,OIF:SA:59:3893378,Europe/Paris,,OIF, +OIF:SP:59:3893379,1,"Jeanne d'Arc - Église de la Gare",48.829269,2.36925,0,0,OIF:SA:59:3893378,Europe/Paris,,OIF, +OIF:SP:59:3893380,1,"Patay - Tolbiac",48.827453,2.371549,0,0,OIF:SA:59:3765263,Europe/Paris,,OIF, +OIF:SP:59:3893381,1,"Patay - Tolbiac",48.828037,2.371019,0,0,OIF:SA:59:3765263,Europe/Paris,,OIF, +OIF:SP:59:3893382,1,"Oudiné",48.826104,2.37355,0,0,OIF:SA:59:3893382,Europe/Paris,,OIF, +OIF:SP:59:3893383,1,"Oudiné",48.826536,2.373305,0,0,OIF:SA:59:3893382,Europe/Paris,,OIF, +OIF:SP:59:3893384,1,"Regnault",48.824513,2.376026,0,0,OIF:SA:59722,Europe/Paris,,OIF, +OIF:SP:59:3893385,1,"Regnault",48.82462,2.376257,0,0,OIF:SA:59722,Europe/Paris,,OIF, +OIF:SP:59:3893386,1,"Porte de Vitry",48.82311,2.377563,0,0,OIF:SA:59722,Europe/Paris,,OIF, +OIF:SP:59:3893387,1,"Porte de Vitry",48.823757,2.376515,0,0,OIF:SA:59722,Europe/Paris,,OIF, +OIF:SP:59:3893388,1,"Claude Régaud",48.821709,2.373206,0,0,OIF:SA:59:3893388,Europe/Paris,,OIF, +OIF:SP:59:3893389,1,"Porte d'Ivry",48.820595,2.371409,0,0,OIF:SA:59287,Europe/Paris,,OIF, +OIF:SP:59:3893390,1,"Porte d'Ivry",48.821387,2.369776,0,0,OIF:SA:59287,Europe/Paris,,OIF, +OIF:SP:59:3893391,1,"Masséna - Darmesteter",48.823237,2.374895,0,0,OIF:SA:59:3893391,Europe/Paris,,OIF, +OIF:SP:59:3893392,1,"Les Gobelins",48.837254,2.351692,0,0,OIF:SA:59294,Europe/Paris,,OIF, +OIF:SP:59:3893397,1,"Pont des Arts - Quai de Conti",48.857692,2.337464,0,0,OIF:SA:59:3893397,Europe/Paris,,OIF, +OIF:SP:59:3893398,1,"Pont du Carrousel - Quai Voltaire",48.858267,2.333732,0,0,OIF:SA:59:3687093,Europe/Paris,,OIF, +OIF:SP:59:3893399,1,"Musée du Louvre",48.862087,2.334944,0,0,OIF:SA:59:3687092,Europe/Paris,,OIF, +OIF:SP:59:3893400,1,"Petits Champs - Danielle Casanova",48.868181,2.33354,0,0,OIF:SA:59:3893400,Europe/Paris,,OIF, +OIF:SP:59:3893401,1,"Friedland - Haussmann",48.874818,2.306549,0,0,OIF:SA:59:3749698,Europe/Paris,,OIF, +OIF:SP:59:3893403,1,"Haussmann - Courcelles",48.874873,2.308102,0,0,OIF:SA:59:3749696,Europe/Paris,,OIF, +OIF:SP:59:3893405,1,"Saint-Philippe-du-Roule",48.87295,2.309874,0,0,OIF:SA:59490,Europe/Paris,,OIF, +OIF:SP:59:3893406,1,"Saint-Philippe-du-Roule",48.873184,2.310174,0,0,OIF:SA:59490,Europe/Paris,,OIF, +OIF:SP:59:3893407,1,"Rond-Point des Champs-Élysées - Franklin D. Roosevelt",48.870263,2.309876,0,0,OIF:SA:59232,Europe/Paris,,OIF, +OIF:SP:59:3893408,1,"Champs-Élysées - Clemenceau",48.867846,2.313228,0,0,OIF:SA:59592,Europe/Paris,,OIF, +OIF:SP:59:3893409,1,"Grand Palais",48.865293,2.313556,0,0,OIF:SA:8739303,Europe/Paris,,OIF, +OIF:SP:59:3893415,1,"Lille - Université",48.86072,2.321186,0,0,OIF:SA:59599,Europe/Paris,,OIF, +OIF:SP:59:3893419,1,"Rue du Bac - Rene Char",48.856505,2.325451,0,0,OIF:SA:59511,Europe/Paris,,OIF, +OIF:SP:59:3893422,1,"Sevres - Babylone",48.852057,2.326514,0,0,OIF:SA:59362,Europe/Paris,,OIF, +OIF:SP:59:3893423,1,"Sevres - Babylone",48.851913,2.326855,0,0,OIF:SA:59362,Europe/Paris,,OIF, +OIF:SP:59:3893424,1,"Rennes - d'Assas",48.849217,2.328503,0,0,OIF:SA:59510,Europe/Paris,,OIF, +OIF:SP:59:3893425,1,"Rennes - d'Assas",48.849316,2.328598,0,0,OIF:SA:59510,Europe/Paris,,OIF, +OIF:SP:59:3893426,1,"Fleurus",48.847249,2.329988,0,0,OIF:SA:59256,Europe/Paris,,OIF, +OIF:SP:59:3893427,1,"Fleurus",48.846799,2.330641,0,0,OIF:SA:59256,Europe/Paris,,OIF, +OIF:SP:59:3893428,1,"Guynemer - Vavin",48.845128,2.332044,0,0,OIF:SA:59:3812971,Europe/Paris,,OIF, +OIF:SP:59:3893430,1,"Michelet",48.842144,2.334945,0,0,OIF:SA:59:3893430,Europe/Paris,,OIF, +OIF:SP:59:3893431,1,"Michelet",48.842863,2.334441,0,0,OIF:SA:59:3893430,Europe/Paris,,OIF, +OIF:SP:59:3893432,1,"Observatoire - Assas",48.840616,2.336456,0,0,OIF:SA:8775862,Europe/Paris,,OIF, +OIF:SP:59:3893433,1,"Observatoire - Assas",48.840796,2.336456,0,0,OIF:SA:8775862,Europe/Paris,,OIF, +OIF:SP:59:3893437,1,"Glacière - Arago",48.834882,2.345428,0,0,OIF:SA:59:3764825,Europe/Paris,,OIF, +OIF:SP:59:3893439,1,"Pascal",48.835448,2.348029,0,0,OIF:SA:59:3893439,Europe/Paris,,OIF, +OIF:SP:59:3893440,1,"Pascal",48.835609,2.347811,0,0,OIF:SA:59:3893439,Europe/Paris,,OIF, +OIF:SP:59:3893441,1,"Les Gobelins",48.83649,2.351228,0,0,OIF:SA:59294,Europe/Paris,,OIF, +OIF:SP:59:3893442,1,"Les Gobelins",48.836571,2.350806,0,0,OIF:SA:59294,Europe/Paris,,OIF, +OIF:SP:59:3893446,1,"Place d'Italie - Mairie du 13ème",48.832283,2.355162,0,0,OIF:SA:59275,Europe/Paris,,OIF, +OIF:SP:59:3893449,1,"Institut Dentaire",48.830233,2.359109,0,0,OIF:SA:59:3893449,Europe/Paris,,OIF, +OIF:SP:59:3893450,1,"Institut Dentaire",48.830341,2.359231,0,0,OIF:SA:59:3893449,Europe/Paris,,OIF, +OIF:SP:59:3893451,1,"Lycée Claude Monet",48.827204,2.362824,0,0,OIF:SA:59:3893451,Europe/Paris,,OIF, +OIF:SP:59:3893452,1,"Lycée Claude Monet",48.827212,2.363042,0,0,OIF:SA:59:3893451,Europe/Paris,,OIF, +OIF:SP:59:3893456,1,"Ponscarme",48.826258,2.369044,0,0,OIF:SA:59552,Europe/Paris,,OIF, +OIF:SP:59:3893457,1,"Ponscarme",48.825486,2.367396,0,0,OIF:SA:59552,Europe/Paris,,OIF, +OIF:SP:59:3893458,1,"Marcel Duchamp",48.824946,2.369833,0,0,OIF:SA:59:3893458,Europe/Paris,,OIF, +OIF:SP:59:3893459,1,"Regnault",48.822654,2.371301,0,0,OIF:SA:59722,Europe/Paris,,OIF, +OIF:SP:59:3893460,1,"Regnault",48.823167,2.368647,0,0,OIF:SA:59722,Europe/Paris,,OIF, +OIF:SP:59:3893464,1,"Porte d'Ivry",48.821225,2.370103,0,0,OIF:SA:59287,Europe/Paris,,OIF, +OIF:SP:59:3893465,1,"Nationale",48.821989,2.3693,0,0,OIF:SA:59287,Europe/Paris,,OIF, +OIF:SP:59:3893469,1,"Pont des Invalides - Place de Finlande",48.86283,2.31116,0,0,OIF:SA:59:3764727,Europe/Paris,,OIF, +OIF:SP:59:3893471,1,"Rond-Point des Champs-Élysées",48.868205,2.310326,0,0,OIF:SA:59232,Europe/Paris,,OIF, +OIF:SP:59:3893473,1,"Matignon - Saint-Honoré",48.871872,2.314385,0,0,OIF:SA:59494,Europe/Paris,,OIF, +OIF:SP:59:3908815,1,"Mairie d'Aubervilliers",48.915724,2.380785,0,0,OIF:SA:59:3908815,Europe/Paris,,OIF, +OIF:SP:59:3908817,1,"Heurtault",48.91559,2.376912,0,0,OIF:SA:59:3908817,Europe/Paris,,OIF, +OIF:SP:59:3908818,1,"Heurtault",48.915105,2.376353,0,0,OIF:SA:59:3908817,Europe/Paris,,OIF, +OIF:SP:59:3908819,1,"Canal",48.915376,2.370885,0,0,OIF:SA:59:3908819,Europe/Paris,,OIF, +OIF:SP:59:3908820,1,"Canal",48.915242,2.37079,0,0,OIF:SA:59:3908819,Europe/Paris,,OIF, +OIF:SP:59:3908821,1,"Front Populaire-Gardinoux",48.907064,2.366858,0,0,OIF:SA:59774,Europe/Paris,,OIF, +OIF:SP:59:3908824,1,"Saint-Gobain",48.912646,2.366302,0,0,OIF:SA:59:3908824,Europe/Paris,,OIF, +OIF:SP:59:3909002,1,"Division Leclerc",48.793719,2.273131,0,0,OIF:SA:41:6487,Europe/Paris,,OIF, +OIF:SP:59:3909005,1,"Bellevue - Vildé",48.789022,2.280306,0,0,OIF:SA:59:3909005,Europe/Paris,,OIF, +OIF:SP:59:3909007,1,"Abbé Grandjean",48.786722,2.283001,0,0,OIF:SA:59:3909007,Europe/Paris,,OIF, +OIF:SP:59:3909008,1,"Pierre Bonnard",48.78416,2.281657,0,0,OIF:SA:59:3909008,Europe/Paris,,OIF, +OIF:SP:59:3909015,1,"Les Blagis",48.785705,2.302534,0,0,OIF:SA:59:3909015,Europe/Paris,,OIF, +OIF:SP:59:3909017,1,"École de la Roue",48.788867,2.2989,0,0,OIF:SA:59:3909017,Europe/Paris,,OIF, +OIF:SP:59:3909018,1,"Centre Commercial Scarron",48.791788,2.29732,0,0,OIF:SA:59:3909018,Europe/Paris,,OIF, +OIF:SP:59:3909022,1,"Cms Centre Municipal de Santé",48.789124,2.287868,0,0,OIF:SA:59:3909022,Europe/Paris,,OIF, +OIF:SP:59:3909023,1,"Carnot - Jean Jaurès.",48.790651,2.285201,0,0,OIF:SA:59:3909023,Europe/Paris,,OIF, +OIF:SP:59:3909025,1,"André Salel",48.793994,2.283837,0,0,OIF:SA:59:3909025,Europe/Paris,,OIF, +OIF:SP:59:3909026,1,"Pervenches",48.794873,2.280544,0,0,OIF:SA:59:3909026,Europe/Paris,,OIF, +OIF:SP:59:3909027,1,"Jean Monnet",48.793236,2.277757,0,0,OIF:SA:59:3909027,Europe/Paris,,OIF, +OIF:SP:59:3909028,1,"Stade du Panorama",48.791894,2.272834,0,0,OIF:SA:59:3909028,Europe/Paris,,OIF, +OIF:SP:59:3909029,1,"Division Leclerc.",48.793782,2.27305,0,0,OIF:SA:41:6487,Europe/Paris,,OIF, +OIF:SP:59:3909030,1,"Gare de Clamart",48.813914,2.272031,0,0,OIF:SA:8739156,Europe/Paris,,OIF, +OIF:SP:59:3909032,1,"Centre d'Arts Plastiques - Albert Chanot",48.812608,2.266263,0,0,OIF:SA:59:3909032,Europe/Paris,,OIF, +OIF:SP:59:3909033,1,"Gymnase Condorcet",48.811537,2.263869,0,0,OIF:SA:59:3909033,Europe/Paris,,OIF, +OIF:SP:59:3909034,1,"Gymnase Condorcet",48.811743,2.262984,0,0,OIF:SA:59:3909033,Europe/Paris,,OIF, +OIF:SP:59:3909035,1,"Pont d'Amour - Hôpital Percy",48.812701,2.258342,0,0,OIF:SA:59:3909035,Europe/Paris,,OIF, +OIF:SP:59:3909036,1,"Pont d'Amour - Hôpital Percy",48.812612,2.25852,0,0,OIF:SA:59:3909035,Europe/Paris,,OIF, +OIF:SP:59:3909037,1,"Fleury",48.810714,2.257053,0,0,OIF:SA:59:3909037,Europe/Paris,,OIF, +OIF:SP:59:3909038,1,"Fleury",48.811488,2.258303,0,0,OIF:SA:59:3909037,Europe/Paris,,OIF, +OIF:SP:59:3909039,1,"Vallée du Bois - Lily",48.808844,2.255436,0,0,OIF:SA:59:3909039,Europe/Paris,,OIF, +OIF:SP:59:3909042,1,"Vallée du Bois",48.806283,2.256529,0,0,OIF:SA:59:3909042,Europe/Paris,,OIF, +OIF:SP:59:3909051,1,"Place Hunebelle",48.80039,2.261722,0,0,OIF:SA:59:3909051,Europe/Paris,,OIF, +OIF:SP:59:3909052,1,"Mairie de Clamart.",48.799654,2.263056,0,0,OIF:SA:59:3909052,Europe/Paris,,OIF, +OIF:SP:59:3909053,1,"Rue de Bièvres",48.799062,2.265247,0,0,OIF:SA:59:3909053,Europe/Paris,,OIF, +OIF:SP:59:3909054,1,"Plessis - Piquet",48.798255,2.267942,0,0,OIF:SA:59:3909054,Europe/Paris,,OIF, +OIF:SP:59:3909055,1,"Pierre Corby - Fontenay",48.799361,2.268934,0,0,OIF:SA:59:3909055,Europe/Paris,,OIF, +OIF:SP:59:3909056,1,"Rue de Fontenay",48.798049,2.270051,0,0,OIF:SA:59:3909056,Europe/Paris,,OIF, +OIF:SP:59:3909057,1,"Gymnase du Fort",48.796712,2.274243,0,0,OIF:SA:59:3909057,Europe/Paris,,OIF, +OIF:SP:59:3909058,1,"Lycée Monod",48.795534,2.272299,0,0,OIF:SA:59:3909058,Europe/Paris,,OIF, +OIF:SP:59:3909059,1,"Cimetière Communal",48.794552,2.268913,0,0,OIF:SA:59:3909059,Europe/Paris,,OIF, +OIF:SP:59:3909060,1,"Cimetière Communal",48.794382,2.268668,0,0,OIF:SA:59:3909059,Europe/Paris,,OIF, +OIF:SP:59:3909061,1,"Cimetière de Clamart",48.79376,2.265962,0,0,OIF:SA:59:3909059,Europe/Paris,,OIF, +OIF:SP:59:3909062,1,"Soleil Levant",48.791655,2.263054,0,0,OIF:SA:59856,Europe/Paris,,OIF, +OIF:SP:59:3909063,1,"Soleil Levant",48.791772,2.263788,0,0,OIF:SA:59856,Europe/Paris,,OIF, +OIF:SP:59:3909064,1,"Gymnase du Jardin Parisien",48.792255,2.259122,0,0,OIF:SA:59:3909064,Europe/Paris,,OIF, +OIF:SP:59:3909065,1,"Gymnase du Jardin Parisien",48.79274,2.258944,0,0,OIF:SA:59:3909064,Europe/Paris,,OIF, +OIF:SP:59:3909066,1,"Rue du Parc",48.792315,2.255625,0,0,OIF:SA:59:3909066,Europe/Paris,,OIF, +OIF:SP:59:3909067,1,"Rue du Parc",48.792243,2.255898,0,0,OIF:SA:59:3909066,Europe/Paris,,OIF, +OIF:SP:59:3909068,1,"Jardin Parisien - Hôpital Antoine Beclere",48.789887,2.253249,0,0,OIF:SA:59:3909068,Europe/Paris,,OIF, +OIF:SP:59:3909069,1,"Jardin Parisien - Hôpital Antoine Beclere",48.789977,2.254255,0,0,OIF:SA:59:3909068,Europe/Paris,,OIF, +OIF:SP:59:3909070,1,"Champagne",48.787323,2.249662,0,0,OIF:SA:59:3909070,Europe/Paris,,OIF, +OIF:SP:59:3909071,1,"Champagne",48.787718,2.249852,0,0,OIF:SA:59:3909070,Europe/Paris,,OIF, +OIF:SP:59:3909072,1,"Parc Auzelle",48.785343,2.246346,0,0,OIF:SA:59860,Europe/Paris,,OIF, +OIF:SP:59:3909073,1,"Parc Auzelle",48.78483,2.245531,0,0,OIF:SA:59860,Europe/Paris,,OIF, +OIF:SP:59:3909074,1,"Cité de la Plaine",48.784577,2.244131,0,0,OIF:SA:59:3909074,Europe/Paris,,OIF, +OIF:SP:59:3909075,1,"Île de France",48.784593,2.241628,0,0,OIF:SA:59864,Europe/Paris,,OIF, +OIF:SP:59:3909076,1,"Creche de Normandie",48.783494,2.238556,0,0,OIF:SA:59864,Europe/Paris,,OIF, +OIF:SP:59:3909077,1,"République",48.782592,2.234206,0,0,OIF:SA:59:3909077,Europe/Paris,,OIF, +OIF:SP:59:3909078,1,"République",48.78225,2.234179,0,0,OIF:SA:59:3909077,Europe/Paris,,OIF, +OIF:SP:59:3909079,1,"Maison de Quartier du Petit Clamart",48.780658,2.232986,0,0,OIF:SA:59:3909079,Europe/Paris,,OIF, +OIF:SP:59:3909080,1,"Maison de Quartier du Petit Clamart",48.780622,2.232782,0,0,OIF:SA:59:3909079,Europe/Paris,,OIF, +OIF:SP:59:3909081,1,"Gaite",48.778833,2.232636,0,0,OIF:SA:59:3909081,Europe/Paris,,OIF, +OIF:SP:59:3909082,1,"Maison de Quartier - André Charre",48.777815,2.230108,0,0,OIF:SA:59:3909082,Europe/Paris,,OIF, +OIF:SP:59:3909084,1,"Pasteur",48.779964,2.230403,0,0,OIF:SA:59:3909084,Europe/Paris,,OIF, +OIF:SP:59:3909085,1,"Voltaire",48.781471,2.237703,0,0,OIF:SA:59862,Europe/Paris,,OIF, +OIF:SP:59:3909086,1,"Bretagne",48.782147,2.239728,0,0,OIF:SA:59862,Europe/Paris,,OIF, +OIF:SP:59:3909087,1,"Place Aime Césaire",48.784074,2.244499,0,0,OIF:SA:59860,Europe/Paris,,OIF, +OIF:SP:59:3909088,1,"Cimetière Intercommunal",48.786565,2.245977,0,0,OIF:SA:59:3681977,Europe/Paris,,OIF, +OIF:SP:59:3909089,1,"Eugène Beaujard",48.789266,2.252026,0,0,OIF:SA:59:3909089,Europe/Paris,,OIF, +OIF:SP:59:3909090,1,"Lycée Monod",48.795507,2.272639,0,0,OIF:SA:59854,Europe/Paris,,OIF, +OIF:SP:59:3909091,1,"Savoie",48.798412,2.275166,0,0,OIF:SA:59:3909091,Europe/Paris,,OIF, +OIF:SP:59:3909092,1,"Paul Padé",48.799237,2.271342,0,0,OIF:SA:59:3909092,Europe/Paris,,OIF, +OIF:SP:59:3909093,1,"Pierre Corby",48.800071,2.26862,0,0,OIF:SA:59:3909093,Europe/Paris,,OIF, +OIF:SP:59:3909094,1,"Saint-Christophe",48.799306,2.266376,0,0,OIF:SA:59:3909094,Europe/Paris,,OIF, +OIF:SP:59:3909095,1,"Jean Georget",48.80844,2.25707,0,0,OIF:SA:59:3909095,Europe/Paris,,OIF, +OIF:SP:59:3909096,1,"Rue des Tricots",48.811197,2.266605,0,0,OIF:SA:59:3909096,Europe/Paris,,OIF, +OIF:SP:59:3909097,1,"Fleury - Tricots",48.813553,2.269392,0,0,OIF:SA:59:3909097,Europe/Paris,,OIF, +OIF:SP:59:3909099,1,"Léonie Laporte",48.791985,2.275392,0,0,OIF:SA:59:3909099,Europe/Paris,,OIF, +OIF:SP:59:3909100,1,"Tennis - Général Leclerc",48.791745,2.279582,0,0,OIF:SA:59:3909100,Europe/Paris,,OIF, +OIF:SP:59:3909109,1,"Potiers",48.785882,2.294509,0,0,OIF:SA:59:3909109,Europe/Paris,,OIF, +OIF:SP:59:3909115,1,"Georges Bailly",48.792587,2.294572,0,0,OIF:SA:59:3909115,Europe/Paris,,OIF, +OIF:SP:59:3909117,1,"Théâtre des Sources",48.791264,2.289308,0,0,OIF:SA:59:3909117,Europe/Paris,,OIF, +OIF:SP:59:3909125,1,"Division Leclerc.",48.794051,2.272804,0,0,OIF:SA:41:6487,Europe/Paris,,OIF, +OIF:SP:59:3909812,1,"La Boursidière",48.773636,2.240316,0,0,OIF:SA:59:3909812,Europe/Paris,,OIF, +OIF:SP:59:3909814,1,"Galilée",48.776714,2.24662,0,0,OIF:SA:59:3909814,Europe/Paris,,OIF, +OIF:SP:59:3909815,1,"Galilée",48.777072,2.244593,0,0,OIF:SA:59:3909814,Europe/Paris,,OIF, +OIF:SP:59:3909816,1,"Langevin",48.776402,2.249231,0,0,OIF:SA:59:3909816,Europe/Paris,,OIF, +OIF:SP:59:3909817,1,"Langevin",48.776626,2.24832,0,0,OIF:SA:59:3909816,Europe/Paris,,OIF, +OIF:SP:59:3909819,1,"Cité Jardins - Place des Allies",48.776803,2.257064,0,0,OIF:SA:59:3909819,Europe/Paris,,OIF, +OIF:SP:59:3909820,1,"Charles Pasqua",48.779313,2.261412,0,0,OIF:SA:59:3909820,Europe/Paris,,OIF, +OIF:SP:59:3909821,1,"Charles Pasqua",48.778971,2.260175,0,0,OIF:SA:59:3909820,Europe/Paris,,OIF, +OIF:SP:59:3909822,1,"Robinson RER",48.779746,2.280479,0,0,OIF:SA:8775872,Europe/Paris,,OIF, +OIF:SP:59:3922294,1,"Château de Vincennes",48.844569,2.441689,0,0,OIF:SA:59595,Europe/Paris,,OIF, +OIF:SP:59:3922295,1,"Tremblay - Pépinière",48.841677,2.449635,0,0,OIF:SA:59:3686058,Europe/Paris,,OIF, +OIF:SP:59:3922297,1,"Nogent-sur-Marne RER - Pierre Semard",48.835947,2.470984,0,0,OIF:SA:8775813,Europe/Paris,,OIF, +OIF:SP:59:3922298,1,"Place du Général Leclerc",48.835476,2.474822,0,0,OIF:SA:59:3682989,Europe/Paris,,OIF, +OIF:SP:59:3922303,1,"Nogent-le-Perreux RER",48.838004,2.494476,0,0,OIF:SA:8711374,Europe/Paris,,OIF, +OIF:SP:59:3922305,1,"Ledru Rollin - Général de Gaulle",48.842728,2.503313,0,0,OIF:SA:59:3922305,Europe/Paris,,OIF, +OIF:SP:59:3922314,1,"Rue du Pressoir",48.836851,2.520899,0,0,OIF:SA:59:3922314,Europe/Paris,,OIF, +OIF:SP:59:3922317,1,"Bry-sur-Marne RER",48.844627,2.526074,0,0,OIF:SA:8775832,Europe/Paris,,OIF, +OIF:SP:59:3922450,1,"Porte d'Aubervilliers - Macdonald",48.898049,2.370192,0,0,OIF:SA:8765479,Europe/Paris,,OIF, +OIF:SP:59:3926174,1,"Porte de Vanves",48.826384,2.304658,0,0,OIF:SA:59527,Europe/Paris,,OIF, +OIF:SP:59:3926176,1,"Porte de Vanves.",48.827436,2.305284,0,0,OIF:SA:59527,Europe/Paris,,OIF, +OIF:SP:59:3926177,1,"Chauvelot",48.828883,2.304303,0,0,OIF:SA:59527,Europe/Paris,,OIF, +OIF:SP:59:3926178,1,"Morillons",48.831373,2.305649,0,0,OIF:SA:14:14969,Europe/Paris,,OIF, +OIF:SP:59:3926179,1,"Labrouste - Vouillé",48.834088,2.308329,0,0,OIF:SA:59:3926179,Europe/Paris,,OIF, +OIF:SP:59:3926182,1,"Institut Pasteur",48.84002,2.310123,0,0,OIF:SA:59:3764450,Europe/Paris,,OIF, +OIF:SP:59:3926185,1,"Armorique - Musée Postal",48.8411,2.316481,0,0,OIF:SA:59:3764965,Europe/Paris,,OIF, +OIF:SP:59:3926186,1,"Gare Montparnasse",48.841855,2.320089,0,0,OIF:SA:8739100,Europe/Paris,,OIF, +OIF:SP:59:3926187,1,"Gare Montparnasse",48.841963,2.319517,0,0,OIF:SA:8739100,Europe/Paris,,OIF, +OIF:SP:59:3926196,1,"Michel Debré",48.851338,2.330709,0,0,OIF:SA:59257,Europe/Paris,,OIF, +OIF:SP:59:3926206,1,"Pyramides",48.866841,2.333772,0,0,OIF:SA:59290,Europe/Paris,,OIF, +OIF:SP:59:3926210,1,"Opéra",48.871074,2.332518,0,0,OIF:SA:59209,Europe/Paris,,OIF, +OIF:SP:59:3926217,1,"Gare Saint-Lazare",48.874984,2.326564,0,0,OIF:SA:8738400,Europe/Paris,,OIF, +OIF:SP:59:3926218,1,"Europe",48.8783,2.322993,0,0,OIF:SA:59443,Europe/Paris,,OIF, +OIF:SP:59:3926219,1,"Bucarest",48.880241,2.324533,0,0,OIF:SA:59:3749920,Europe/Paris,,OIF, +OIF:SP:59:3926221,1,"Place de Clichy",48.882767,2.327012,0,0,OIF:SA:59421,Europe/Paris,,OIF, +OIF:SP:59:3926222,1,"Clichy - Caulaincourt",48.885023,2.330405,0,0,OIF:SA:59:3749923,Europe/Paris,,OIF, +OIF:SP:59:3926223,1,"Damrémont - Caulaincourt",48.886982,2.332599,0,0,OIF:SA:59:3749924,Europe/Paris,,OIF, +OIF:SP:59:3926224,1,"Damrémont - Caulaincourt",48.886946,2.332313,0,0,OIF:SA:59:3749924,Europe/Paris,,OIF, +OIF:SP:59:3926225,1,"Place Jacques Froment",48.890873,2.331917,0,0,OIF:SA:59:3926225,Europe/Paris,,OIF, +OIF:SP:59:3926226,1,"Place Jacques Froment",48.891089,2.33159,0,0,OIF:SA:59:3926225,Europe/Paris,,OIF, +OIF:SP:59:3926227,1,"Damrémont - Lamarck",48.89055,2.333934,0,0,OIF:SA:59:3926227,Europe/Paris,,OIF, +OIF:SP:59:3926228,1,"Damrémont - Marcadet",48.892015,2.33527,0,0,OIF:SA:59:3926228,Europe/Paris,,OIF, +OIF:SP:59:3926229,1,"Damrémont - Marcadet",48.891871,2.333648,0,0,OIF:SA:59:3926228,Europe/Paris,,OIF, +OIF:SP:59:3926231,1,"Damrémont - Ordener",48.893183,2.335965,0,0,OIF:SA:59:3926231,Europe/Paris,,OIF, +OIF:SP:59:3926239,1,"Porte de Montmartre",48.900391,2.33452,0,0,OIF:SA:59:3749949,Europe/Paris,,OIF, +OIF:SP:59:3926242,1,"Liege",48.88052,2.326944,0,0,OIF:SA:59606,Europe/Paris,,OIF, +OIF:SP:59:3926243,1,"Gare Saint-Lazare - Budapest",48.877311,2.326795,0,0,OIF:SA:8738400,Europe/Paris,,OIF, +OIF:SP:59:3926247,1,"Pasteur - Docteur Roux",48.841629,2.31226,0,0,OIF:SA:59452,Europe/Paris,,OIF, +OIF:SP:59:3926251,1,"Morillons - Brancion",48.831695,2.302613,0,0,OIF:SA:59:3926251,Europe/Paris,,OIF, +OIF:SP:59:3926252,1,"Brancion",48.829026,2.301457,0,0,OIF:SA:59060,Europe/Paris,,OIF, +OIF:SP:59:3926253,1,"Bartholome",48.827003,2.300669,0,0,OIF:SA:59:3926253,Europe/Paris,,OIF, +OIF:SP:59:3926256,1,"Porte de Montreuil",48.852995,2.411743,0,0,OIF:SA:59491,Europe/Paris,,OIF, +OIF:SP:59:3926258,1,"Place de la Porte de Montreuil",48.853624,2.411935,0,0,OIF:SA:59491,Europe/Paris,,OIF, +OIF:SP:59:3926261,1,"Elsa Triolet - Erignac",48.851267,2.41614,0,0,OIF:SA:59:3926261,Europe/Paris,,OIF, +OIF:SP:59:3926262,1,"Elsa Triolet - Erignac",48.851069,2.41603,0,0,OIF:SA:59:3926261,Europe/Paris,,OIF, +OIF:SP:59:3926263,1,"Progrès - Armand Carrel",48.85166,2.41866,0,0,OIF:SA:59:3926263,Europe/Paris,,OIF, +OIF:SP:59:3926264,1,"Progrès - Émile Zola",48.851865,2.421861,0,0,OIF:SA:59:3926264,Europe/Paris,,OIF, +OIF:SP:59:3926265,1,"Cuvier",48.850649,2.424787,0,0,OIF:SA:59:3926265,Europe/Paris,,OIF, +OIF:SP:59:3926266,1,"Les Laitières",48.849552,2.425752,0,0,OIF:SA:59:3926266,Europe/Paris,,OIF, +OIF:SP:59:3926267,1,"Les Laitières",48.849453,2.426024,0,0,OIF:SA:59:3926266,Europe/Paris,,OIF, +OIF:SP:59:3926268,1,"Vincennes RER - République",48.847158,2.429792,0,0,OIF:SA:8775811,Europe/Paris,,OIF, +OIF:SP:59:3926270,1,"Cuvier - Émile Zola",48.851046,2.422635,0,0,OIF:SA:59:3926270,Europe/Paris,,OIF, +OIF:SP:59:3926271,1,"Valmy - Armand Carrel",48.850771,2.417746,0,0,OIF:SA:59:3926271,Europe/Paris,,OIF, +OIF:SP:59:3926272,1,"Porte de Bagnolet - Louis Ganne",48.863395,2.410015,0,0,OIF:SA:59435,Europe/Paris,,OIF, +OIF:SP:59:3926273,1,"Porte de Bagnolet - Louis Ganne",48.863377,2.40981,0,0,OIF:SA:59435,Europe/Paris,,OIF, +OIF:SP:59:3926274,1,"Serpollet",48.860437,2.411155,0,0,OIF:SA:59:3926274,Europe/Paris,,OIF, +OIF:SP:59:3926275,1,"Serpollet",48.860752,2.410842,0,0,OIF:SA:59:3926274,Europe/Paris,,OIF, +OIF:SP:59:3926276,1,"Stade Déjérine",48.856761,2.411517,0,0,OIF:SA:59:3926276,Europe/Paris,,OIF, +OIF:SP:59:3926277,1,"Place de la Porte de Montreuil",48.853759,2.411458,0,0,OIF:SA:59491,Europe/Paris,,OIF, +OIF:SP:59:3926278,1,"Porte de Montreuil",48.853517,2.410082,0,0,OIF:SA:59491,Europe/Paris,,OIF, +OIF:SP:59:3926279,1,"Porte de Montreuil",48.853293,2.409946,0,0,OIF:SA:59491,Europe/Paris,,OIF, +OIF:SP:59:3926280,1,"Maraîchers",48.852711,2.40556,0,0,OIF:SA:59501,Europe/Paris,,OIF, +OIF:SP:59:3926281,1,"Maraîchers",48.852495,2.4056,0,0,OIF:SA:59501,Europe/Paris,,OIF, +OIF:SP:59:3926282,1,"Buzenval",48.851878,2.400874,0,0,OIF:SA:59498,Europe/Paris,,OIF, +OIF:SP:59:3926283,1,"Buzenval",48.851886,2.401963,0,0,OIF:SA:59498,Europe/Paris,,OIF, +OIF:SP:59:3926284,1,"Avron",48.851439,2.398762,0,0,OIF:SA:59427,Europe/Paris,,OIF, +OIF:SP:59:3926285,1,"Avron",48.851133,2.398707,0,0,OIF:SA:59427,Europe/Paris,,OIF, +OIF:SP:59:3926286,1,"Nation - Taillebourg",48.849013,2.396703,0,0,OIF:SA:8775810,Europe/Paris,,OIF, +OIF:SP:59:3926287,1,"Nation - Taillebourg",48.84886,2.39688,0,0,OIF:SA:8775810,Europe/Paris,,OIF, +OIF:SP:59:3926288,1,"Nation - Diderot",48.848313,2.394605,0,0,OIF:SA:8775810,Europe/Paris,,OIF, +OIF:SP:59:3926289,1,"Nation - Diderot",48.848142,2.394659,0,0,OIF:SA:8775810,Europe/Paris,,OIF, +OIF:SP:59:3926290,1,"Pierre Bourdan",48.847902,2.390492,0,0,OIF:SA:59:3926290,Europe/Paris,,OIF, +OIF:SP:59:3926291,1,"Pierre Bourdan",48.847695,2.391268,0,0,OIF:SA:59:3926290,Europe/Paris,,OIF, +OIF:SP:59:3926292,1,"Reuilly - Diderot",48.847525,2.387509,0,0,OIF:SA:59227,Europe/Paris,,OIF, +OIF:SP:59:3926293,1,"Reuilly - Diderot",48.847184,2.386324,0,0,OIF:SA:59227,Europe/Paris,,OIF, +OIF:SP:59:3926294,1,"Hôpital Saint-Antoine",48.846818,2.381285,0,0,OIF:SA:59471,Europe/Paris,,OIF, +OIF:SP:59:3926295,1,"Hôpital Saint-Antoine",48.846719,2.382238,0,0,OIF:SA:59471,Europe/Paris,,OIF, +OIF:SP:59:3926296,1,"Daumesnil - Diderot",48.846451,2.37735,0,0,OIF:SA:59:3747838,Europe/Paris,,OIF, +OIF:SP:59:3926297,1,"Daumesnil - Diderot",48.846136,2.376886,0,0,OIF:SA:59:3747838,Europe/Paris,,OIF, +OIF:SP:59:3926302,1,"Saint-Marcel - la Pitié",48.839166,2.361032,0,0,OIF:SA:59335,Europe/Paris,,OIF, +OIF:SP:59:3926303,1,"Saint-Marcel - la Pitié",48.838996,2.361223,0,0,OIF:SA:59335,Europe/Paris,,OIF, +OIF:SP:59:3926304,1,"Jenner - Jeanne d'Arc",48.8363,2.358907,0,0,OIF:SA:59339,Europe/Paris,,OIF, +OIF:SP:59:3926305,1,"Jenner - Jeanne d'Arc",48.836336,2.359275,0,0,OIF:SA:59339,Europe/Paris,,OIF, +OIF:SP:59:3926306,1,"Rubens - École des Arts et Métiers",48.833865,2.357082,0,0,OIF:SA:59339,Europe/Paris,,OIF, +OIF:SP:59:3926307,1,"Rubens - École des Arts et Métiers",48.834377,2.357844,0,0,OIF:SA:59339,Europe/Paris,,OIF, +OIF:SP:59:3926309,1,"Place d'Italie",48.830665,2.354875,0,0,OIF:SA:59275,Europe/Paris,,OIF, +OIF:SP:59:3926310,1,"Moulin des Pres",48.829884,2.352697,0,0,OIF:SA:59275,Europe/Paris,,OIF, +OIF:SP:59:3926311,1,"Verlaine",48.827799,2.352233,0,0,OIF:SA:59458,Europe/Paris,,OIF, +OIF:SP:59:3926312,1,"Verlaine",48.82832,2.352955,0,0,OIF:SA:59458,Europe/Paris,,OIF, +OIF:SP:59:3926313,1,"Bobillot - Tolbiac",48.825138,2.351225,0,0,OIF:SA:59:3926313,Europe/Paris,,OIF, +OIF:SP:59:3926314,1,"Abbé Georges Henocque",48.823493,2.353076,0,0,OIF:SA:59:3926314,Europe/Paris,,OIF, +OIF:SP:59:3926315,1,"Abbé Georges Henocque",48.824149,2.353525,0,0,OIF:SA:59:3926314,Europe/Paris,,OIF, +OIF:SP:59:3926316,1,"Poterne des Peupliers",48.819853,2.352857,0,0,OIF:SA:59064,Europe/Paris,,OIF, +OIF:SP:59:3926317,1,"Poterne des Peupliers",48.819961,2.353102,0,0,OIF:SA:59064,Europe/Paris,,OIF, +OIF:SP:59:3926321,1,"Cité Verte",48.812763,2.344281,0,0,OIF:SA:59:3926321,Europe/Paris,,OIF, +OIF:SP:59:3926322,1,"Rue d'Arcueil",48.811019,2.341968,0,0,OIF:SA:59:3926322,Europe/Paris,,OIF, +OIF:SP:59:3926327,1,"Chaperon Vert",48.811011,2.335463,0,0,OIF:SA:59:3755022,Europe/Paris,,OIF, +OIF:SP:59:3926329,1,"Laplace RER",48.809267,2.334606,0,0,OIF:SA:8775866,Europe/Paris,,OIF, +OIF:SP:59:3926331,1,"Laplace RER.",48.808764,2.334483,0,0,OIF:SA:8775866,Europe/Paris,,OIF, +OIF:SP:59:3926336,1,"Moulin des Pres - Tolbiac",48.826145,2.353635,0,0,OIF:SA:59:3926336,Europe/Paris,,OIF, +OIF:SP:59:3926340,1,"Stade Déjérine",48.857381,2.411573,0,0,OIF:SA:59:3926276,Europe/Paris,,OIF, +OIF:SP:59:3926377,1,"Porte de Vincennes",48.84701,2.41025,0,0,OIF:SA:59228,Europe/Paris,,OIF, +OIF:SP:59:3926384,1,"Pont Neuf",48.860137,2.340352,0,0,OIF:SA:59664,Europe/Paris,,OIF, +OIF:SP:59:3926389,1,"Hôtel de Ville",48.857808,2.350853,0,0,OIF:SA:59590,Europe/Paris,,OIF, +OIF:SP:59:3926390,1,"La Verrerie",48.857619,2.354462,0,0,OIF:SA:59:3926390,Europe/Paris,,OIF, +OIF:SP:59:3926391,1,"Archives - Rambuteau",48.859695,2.356561,0,0,OIF:SA:59:3747829,Europe/Paris,,OIF, +OIF:SP:59:3926392,1,"Archives - Haudriettes",48.861752,2.358891,0,0,OIF:SA:59:3747874,Europe/Paris,,OIF, +OIF:SP:59:3926393,1,"Square du Temple - Mairie du 3ème - Carreau du Temple",48.864062,2.360744,0,0,OIF:SA:59:3926393,Europe/Paris,,OIF, +OIF:SP:59:3926395,1,"Turbigo - République",48.866812,2.361699,0,0,OIF:SA:59438,Europe/Paris,,OIF, +OIF:SP:59:3926396,1,"République",48.868142,2.362803,0,0,OIF:SA:59557,Europe/Paris,,OIF, +OIF:SP:59:3926397,1,"République",48.868043,2.363975,0,0,OIF:SA:59557,Europe/Paris,,OIF, +OIF:SP:59:3926398,1,"Jules Ferry",48.86912,2.367477,0,0,OIF:SA:59:3926398,Europe/Paris,,OIF, +OIF:SP:59:3926399,1,"Jules Ferry",48.868976,2.367803,0,0,OIF:SA:59:3926398,Europe/Paris,,OIF, +OIF:SP:59:3926400,1,"Alibert",48.871152,2.365897,0,0,OIF:SA:59:3747919,Europe/Paris,,OIF, +OIF:SP:59:3926402,1,"Avenue Richerand",48.872212,2.366184,0,0,OIF:SA:59:3926402,Europe/Paris,,OIF, +OIF:SP:59:3926406,1,"Colonel Fabien",48.878008,2.371147,0,0,OIF:SA:59423,Europe/Paris,,OIF, +OIF:SP:59:3926408,1,"Mathurin Moreau - Simon Bolivar",48.878384,2.374499,0,0,OIF:SA:59334,Europe/Paris,,OIF, +OIF:SP:59:3926409,1,"Mathurin Moreau - Simon Bolivar",48.878402,2.373818,0,0,OIF:SA:59334,Europe/Paris,,OIF, +OIF:SP:59:3926410,1,"Secrétan - Buttes Chaumont",48.878787,2.378001,0,0,OIF:SA:59:3926410,Europe/Paris,,OIF, +OIF:SP:59:3926411,1,"Secrétan - Buttes Chaumont",48.878877,2.377893,0,0,OIF:SA:59:3926410,Europe/Paris,,OIF, +OIF:SP:59:3926412,1,"Jean Ménans - Buttes Chaumont",48.880198,2.379542,0,0,OIF:SA:59:3926412,Europe/Paris,,OIF, +OIF:SP:59:3926413,1,"Jean Ménans - Buttes Chaumont",48.880234,2.379365,0,0,OIF:SA:59:3926412,Europe/Paris,,OIF, +OIF:SP:59:3926416,1,"D'Hautpoul",48.883125,2.387421,0,0,OIF:SA:59:3926416,Europe/Paris,,OIF, +OIF:SP:59:3926417,1,"D'Hautpoul",48.88307,2.388511,0,0,OIF:SA:59:3926416,Europe/Paris,,OIF, +OIF:SP:59:3926418,1,"Rhin et Danube",48.881837,2.393075,0,0,OIF:SA:59331,Europe/Paris,,OIF, +OIF:SP:59:3926419,1,"Rhin et Danube",48.882205,2.392871,0,0,OIF:SA:59331,Europe/Paris,,OIF, +OIF:SP:59:3926420,1,"Lycée Diderot",48.881395,2.39565,0,0,OIF:SA:59331,Europe/Paris,,OIF, +OIF:SP:59:3926421,1,"Lycée Diderot",48.88144,2.395977,0,0,OIF:SA:59331,Europe/Paris,,OIF, +OIF:SP:59:3926422,1,"Porte Brunet",48.883615,2.394999,0,0,OIF:SA:59754,Europe/Paris,,OIF, +OIF:SP:59:3926423,1,"Porte Brunet",48.883517,2.394753,0,0,OIF:SA:59754,Europe/Paris,,OIF, +OIF:SP:59:3926424,1,"Général Cochet",48.886276,2.395083,0,0,OIF:SA:59:3926424,Europe/Paris,,OIF, +OIF:SP:59:3926425,1,"Général Cochet",48.885961,2.394224,0,0,OIF:SA:59:3926424,Europe/Paris,,OIF, +OIF:SP:59:3926426,1,"Porte Chaumont",48.886185,2.396078,0,0,OIF:SA:59754,Europe/Paris,,OIF, +OIF:SP:59:3926427,1,"Porte Chaumont",48.886374,2.396065,0,0,OIF:SA:59754,Europe/Paris,,OIF, +OIF:SP:59:3926428,1,"Marseillaise - Cheminets",48.886211,2.398245,0,0,OIF:SA:59:3926428,Europe/Paris,,OIF, +OIF:SP:59:3926429,1,"Marseillaise - Cheminets",48.886337,2.398068,0,0,OIF:SA:59:3926428,Europe/Paris,,OIF, +OIF:SP:59:3926430,1,"Porte de Pantin - Marseillaise",48.889357,2.398031,0,0,OIF:SA:59:3926430,Europe/Paris,,OIF, +OIF:SP:59:3926431,1,"Porte de Pantin - Marseillaise",48.889069,2.397867,0,0,OIF:SA:59:3926430,Europe/Paris,,OIF, +OIF:SP:59:3926433,1,"Porte de Pantin",48.88898,2.395863,0,0,OIF:SA:59551,Europe/Paris,,OIF, +OIF:SP:59:3926435,1,"Goncourt",48.869901,2.370406,0,0,OIF:SA:59640,Europe/Paris,,OIF, +OIF:SP:59:3926436,1,"Arts et Métiers",48.865815,2.35723,0,0,OIF:SA:59588,Europe/Paris,,OIF, +OIF:SP:59:3926437,1,"Grenier Saint-Lazare - Quartier de l'Horloge",48.862877,2.354232,0,0,OIF:SA:59403,Europe/Paris,,OIF, +OIF:SP:59:3926438,1,"Centre Georges Pompidou",48.859749,2.352515,0,0,OIF:SA:59403,Europe/Paris,,OIF, +OIF:SP:59:3926664,1,"Hôpital Robert Debré",48.879352,2.400935,0,0,OIF:SA:59752,Europe/Paris,,OIF, +OIF:SP:59:3952750,1,"La Chapelle",48.884742,2.361517,0,0,OIF:SA:59218,Europe/Paris,,OIF, +OIF:SP:59:3970585,1,"Gabriel Péri - Soleil Levant",48.808557,2.345805,0,0,OIF:SA:59:3970585,Europe/Paris,,OIF, +OIF:SP:59:3970588,1,"Raspail - Calmus",48.814659,2.351685,0,0,OIF:SA:59:3970588,Europe/Paris,,OIF, +OIF:SP:59:3970591,1,"Division Leclerc - Médiathèque",48.81438,2.347276,0,0,OIF:SA:59:3970591,Europe/Paris,,OIF, +OIF:SP:59:3970595,1,"Chaperon Vert - Marcel Cachin",48.812502,2.332741,0,0,OIF:SA:59:3970595,Europe/Paris,,OIF, +OIF:SP:59:3970596,1,"Chaperon Vert - Marcel Cachin.",48.813204,2.333422,0,0,OIF:SA:59:3970595,Europe/Paris,,OIF, +OIF:SP:59:3970598,1,"Chaperon Vert.",48.810894,2.335735,0,0,OIF:SA:59:3755022,Europe/Paris,,OIF, +OIF:SP:59:3970599,1,"Gentilly RER",48.816259,2.341097,0,0,OIF:SA:8775865,Europe/Paris,,OIF, +OIF:SP:59:3970600,1,"Gautherot - Carrefour Mazagran",48.815612,2.343996,0,0,OIF:SA:59:3970600,Europe/Paris,,OIF, +OIF:SP:59:3970601,1,"Val de Marne",48.816519,2.348215,0,0,OIF:SA:59:3970601,Europe/Paris,,OIF, +OIF:SP:59:3970602,1,"Verdun - Victor Hugo.",48.816591,2.352992,0,0,OIF:SA:59:3970602,Europe/Paris,,OIF, +OIF:SP:59:3970603,1,"Mairie de Gentilly.",48.815566,2.350937,0,0,OIF:SA:59:3781631,Europe/Paris,,OIF, +OIF:SP:59:3970604,1,"Jean Jaurès - Saint-Eloi",48.813526,2.350201,0,0,OIF:SA:59:3970604,Europe/Paris,,OIF, +OIF:SP:59:3970605,1,"Allende - Reine Blanche",48.812403,2.347806,0,0,OIF:SA:59:3970605,Europe/Paris,,OIF, +OIF:SP:59:3970606,1,"Fondation Vallée",48.810462,2.347846,0,0,OIF:SA:59:3970606,Europe/Paris,,OIF, +OIF:SP:59:3970607,1,"Gabriel Péri - Soleil Levant.",48.808431,2.345628,0,0,OIF:SA:59:3970585,Europe/Paris,,OIF, +OIF:SP:59:3970614,1,"Gentilly RER - Plateau",48.813833,2.340825,0,0,OIF:SA:8775865,Europe/Paris,,OIF, +OIF:SP:59:3972544,1,"Porte de la Villette",48.897415,2.386454,0,0,OIF:SA:59288,Europe/Paris,,OIF, +OIF:SP:59:3972545,1,"Porte de la Villette",48.897415,2.386168,0,0,OIF:SA:59288,Europe/Paris,,OIF, +OIF:SP:59:3972547,1,"Quatre Chemins - République",48.903982,2.391818,0,0,OIF:SA:59318,Europe/Paris,,OIF, +OIF:SP:59:3972548,1,"Quatre Chemins - République",48.903892,2.391613,0,0,OIF:SA:59318,Europe/Paris,,OIF, +OIF:SP:59:3972555,1,"Mairie d'Aubervilliers",48.913512,2.382597,0,0,OIF:SA:59:3908815,Europe/Paris,,OIF, +OIF:SP:59:3972556,1,"Mairie d'Aubervilliers",48.914061,2.381779,0,0,OIF:SA:59:3908815,Europe/Paris,,OIF, +OIF:SP:59:3972557,1,"Crevecœur",48.919992,2.382957,0,0,OIF:SA:59:3972557,Europe/Paris,,OIF, +OIF:SP:59:3972563,1,"Six Routes - Tramway",48.92834,2.385324,0,0,OIF:SA:59090,Europe/Paris,,OIF, +OIF:SP:59:3972565,1,"Parc des Sports",48.932841,2.386938,0,0,OIF:SA:59:3972565,Europe/Paris,,OIF, +OIF:SP:59:3972566,1,"Parc des Sports",48.932752,2.386569,0,0,OIF:SA:59:3972565,Europe/Paris,,OIF, +OIF:SP:59:3972567,1,"Cité Floréal",48.941477,2.387778,0,0,OIF:SA:59:3972567,Europe/Paris,,OIF, +OIF:SP:59:3972571,1,"Le Globe",48.949333,2.385848,0,0,OIF:SA:59:3972571,Europe/Paris,,OIF, +OIF:SP:59:3972578,1,"Jean Jaurès - Aristide Briand",48.962771,2.378901,0,0,OIF:SA:59:3972578,Europe/Paris,,OIF, +OIF:SP:59:4000519,1,"Porte de la Chapelle",48.897513,2.359587,0,0,OIF:SA:59513,Europe/Paris,,OIF, +OIF:SP:59:4000527,1,"La Montjoie",48.911389,2.358489,0,0,OIF:SA:59:4000527,Europe/Paris,,OIF, +OIF:SP:59:4000528,1,"La Montjoie",48.911254,2.357603,0,0,OIF:SA:59:4000527,Europe/Paris,,OIF, +OIF:SP:59:4000529,1,"Pont de Soissons",48.914687,2.358231,0,0,OIF:SA:59:4000529,Europe/Paris,,OIF, +OIF:SP:59:4000530,1,"Pont de Soissons",48.914481,2.357399,0,0,OIF:SA:59:4000529,Europe/Paris,,OIF, +OIF:SP:59:4000534,1,"La Plaine - Stade de France RER",48.918416,2.361696,0,0,OIF:SA:8716479,Europe/Paris,,OIF, +OIF:SP:59:4000537,1,"Cornillon Sud",48.920691,2.357729,0,0,OIF:SA:59:4000537,Europe/Paris,,OIF, +OIF:SP:59:4000540,1,"Pont du Canal",48.925274,2.35649,0,0,OIF:SA:59:4000540,Europe/Paris,,OIF, +OIF:SP:59:4000552,1,"Marville - Hôpital Delafontaine",48.93734,2.37341,0,0,OIF:SA:59:4000552,Europe/Paris,,OIF, +OIF:SP:59:4000553,1,"Marville - Hôpital Delafontaine",48.937394,2.3724,0,0,OIF:SA:59:4000552,Europe/Paris,,OIF, +OIF:SP:59:4000554,1,"Romain Rolland",48.938085,2.37693,0,0,OIF:SA:59:4000554,Europe/Paris,,OIF, +OIF:SP:59:4000555,1,"Romain Rolland",48.938426,2.377067,0,0,OIF:SA:59:4000554,Europe/Paris,,OIF, +OIF:SP:59:4000556,1,"La Courtille",48.93987,2.383889,0,0,OIF:SA:59:4000556,Europe/Paris,,OIF, +OIF:SP:59:4000557,1,"La Courtille",48.940544,2.384776,0,0,OIF:SA:59:4000556,Europe/Paris,,OIF, +OIF:SP:59:4000558,1,"Cité Floréal",48.943124,2.383537,0,0,OIF:SA:59:4000558,Europe/Paris,,OIF, +OIF:SP:59:4000560,1,"Chemin Vert",48.944922,2.381642,0,0,OIF:SA:59:4000560,Europe/Paris,,OIF, +OIF:SP:59:4000562,1,"Croix Blanche",48.94643,2.385887,0,0,OIF:SA:59:4000562,Europe/Paris,,OIF, +OIF:SP:59:4000563,1,"Croix Blanche",48.946583,2.385696,0,0,OIF:SA:59:4000562,Europe/Paris,,OIF, +OIF:SP:59:4000564,1,"Monmousseau - Renelle",48.948118,2.388358,0,0,OIF:SA:59:4000564,Europe/Paris,,OIF, +OIF:SP:59:4000565,1,"Monmousseau - Renelle",48.948208,2.388235,0,0,OIF:SA:59:4000564,Europe/Paris,,OIF, +OIF:SP:59:4000566,1,"Trois Rivières",48.949806,2.391948,0,0,OIF:SA:59:4000566,Europe/Paris,,OIF, +OIF:SP:59:4000567,1,"Trois Rivières",48.949771,2.391648,0,0,OIF:SA:59:4000566,Europe/Paris,,OIF, +OIF:SP:59:4000568,1,"Moulin Neuf",48.951378,2.39311,0,0,OIF:SA:59:4000568,Europe/Paris,,OIF, +OIF:SP:59:4008202,1,"Opéra",48.871793,2.333431,0,0,OIF:SA:59209,Europe/Paris,,OIF, +OIF:SP:59:4008203,1,"Opéra",48.871847,2.333322,0,0,OIF:SA:59209,Europe/Paris,,OIF, +OIF:SP:59:4008204,1,"Opéra.",48.870859,2.332941,0,0,OIF:SA:59209,Europe/Paris,,OIF, +OIF:SP:59:4008207,1,"Madeleine",48.870238,2.323649,0,0,OIF:SA:59412,Europe/Paris,,OIF, +OIF:SP:59:4008208,1,"Concorde",48.867047,2.32098,0,0,OIF:SA:59235,Europe/Paris,,OIF, +OIF:SP:59:4008209,1,"Grand Palais",48.868413,2.316402,0,0,OIF:SA:8739303,Europe/Paris,,OIF, +OIF:SP:59:4008210,1,"Rond-Point des Champs-Élysées",48.869805,2.312546,0,0,OIF:SA:59232,Europe/Paris,,OIF, +OIF:SP:59:4008212,1,"Matignon - Saint-Honoré",48.8718,2.313635,0,0,OIF:SA:59494,Europe/Paris,,OIF, +OIF:SP:59:4008213,1,"La Boétie - Percier",48.873697,2.31388,0,0,OIF:SA:59494,Europe/Paris,,OIF, +OIF:SP:59:4008215,1,"Saint-Philippe-du-Roule",48.872878,2.31031,0,0,OIF:SA:59490,Europe/Paris,,OIF, +OIF:SP:59:4008218,1,"Friedland - Haussmann",48.874953,2.304805,0,0,OIF:SA:59:3749698,Europe/Paris,,OIF, +OIF:SP:59:4008219,1,"Friedland - Haussmann",48.8748,2.30565,0,0,OIF:SA:59:3749698,Europe/Paris,,OIF, +OIF:SP:59:4008220,1,"Balzac",48.874584,2.301889,0,0,OIF:SA:59:4008220,Europe/Paris,,OIF, +OIF:SP:59:4008221,1,"Balzac",48.874431,2.302148,0,0,OIF:SA:59:4008220,Europe/Paris,,OIF, +OIF:SP:59:4008222,1,"Charles de Gaulle - Etoile - Friedland",48.874016,2.296576,0,0,OIF:SA:8775800,Europe/Paris,,OIF, +OIF:SP:59:4008223,1,"Charles de Gaulle - Etoile - Friedland",48.8738,2.296563,0,0,OIF:SA:8775800,Europe/Paris,,OIF, +OIF:SP:59:4008224,1,"Charles de Gaulle - Etoile - Victor Hugo",48.873233,2.293498,0,0,OIF:SA:8775800,Europe/Paris,,OIF, +OIF:SP:59:4008225,1,"Charles de Gaulle - Etoile - Victor Hugo",48.873242,2.294015,0,0,OIF:SA:8775800,Europe/Paris,,OIF, +OIF:SP:59:4008226,1,"Victor Hugo - Paul Valéry",48.871398,2.289194,0,0,OIF:SA:59:4008226,Europe/Paris,,OIF, +OIF:SP:59:4008227,1,"Victor Hugo - Paul Valéry",48.87111,2.289085,0,0,OIF:SA:59:4008226,Europe/Paris,,OIF, +OIF:SP:59:4008228,1,"Victor Hugo - Poincaré",48.869886,2.284427,0,0,OIF:SA:59417,Europe/Paris,,OIF, +OIF:SP:59:4008229,1,"Victor Hugo - Poincaré",48.869895,2.286144,0,0,OIF:SA:59417,Europe/Paris,,OIF, +OIF:SP:59:4008230,1,"Bugeaud",48.86993,2.28252,0,0,OIF:SA:59:4008230,Europe/Paris,,OIF, +OIF:SP:59:4008231,1,"Place Jean Monnet",48.867278,2.280533,0,0,OIF:SA:59:4008231,Europe/Paris,,OIF, +OIF:SP:59:4008232,1,"Place Jean Monnet",48.86797,2.281582,0,0,OIF:SA:59:4008231,Europe/Paris,,OIF, +OIF:SP:59:4008233,1,"Lycée Janson de Sailly",48.865749,2.279404,0,0,OIF:SA:59:4008233,Europe/Paris,,OIF, +OIF:SP:59:4008234,1,"Lycée Janson de Sailly",48.865722,2.279609,0,0,OIF:SA:59:4008233,Europe/Paris,,OIF, +OIF:SP:59:4008235,1,"Pompe - Mairie du 16ème",48.863735,2.277036,0,0,OIF:SA:59485,Europe/Paris,,OIF, +OIF:SP:59:4008236,1,"Pompe - Mairie du 16ème",48.863744,2.277227,0,0,OIF:SA:59485,Europe/Paris,,OIF, +OIF:SP:59:4008237,1,"Nicolo - Jean Richepin",48.861415,2.275459,0,0,OIF:SA:59:4008237,Europe/Paris,,OIF, +OIF:SP:59:4008238,1,"Nicolo - Jean Richepin",48.861083,2.275446,0,0,OIF:SA:59:4008237,Europe/Paris,,OIF, +OIF:SP:59:4008239,1,"La Muette - Boulainvilliers RER",48.858566,2.274918,0,0,OIF:SA:59207,Europe/Paris,,OIF, +OIF:SP:59:4008240,1,"La Muette - Boulainvilliers RER",48.85782,2.27406,0,0,OIF:SA:59207,Europe/Paris,,OIF, +OIF:SP:59:4008241,1,"Les Vignes - Boulainvilliers RER",48.856283,2.274675,0,0,OIF:SA:8754318,Europe/Paris,,OIF, +OIF:SP:59:4008242,1,"Assomption - Radio France",48.853156,2.275687,0,0,OIF:SA:59:4008242,Europe/Paris,,OIF, +OIF:SP:59:4008243,1,"Léopold II",48.850988,2.271822,0,0,OIF:SA:59:4008243,Europe/Paris,,OIF, +OIF:SP:59:4008244,1,"George Sand - la Fontaine",48.849701,2.268228,0,0,OIF:SA:59:4008244,Europe/Paris,,OIF, +OIF:SP:59:4008245,1,"Mozart - la Fontaine",48.84898,2.265641,0,0,OIF:SA:59360,Europe/Paris,,OIF, +OIF:SP:59:4008246,1,"Michel-Ange - Auteuil",48.848781,2.263844,0,0,OIF:SA:59360,Europe/Paris,,OIF, +OIF:SP:59:4008247,1,"Michel-Ange - Auteuil",48.847811,2.265071,0,0,OIF:SA:59360,Europe/Paris,,OIF, +OIF:SP:59:4008248,1,"Gare d'Auteuil",48.848258,2.260059,0,0,OIF:SA:59668,Europe/Paris,,OIF, +OIF:SP:59:4008249,1,"Gare d'Auteuil",48.847845,2.260591,0,0,OIF:SA:59668,Europe/Paris,,OIF, +OIF:SP:59:4008250,1,"Porte d'Auteuil",48.84725,2.25829,0,0,OIF:SA:59668,Europe/Paris,,OIF, +OIF:SP:59:4008251,1,"Porte d'Auteuil",48.847492,2.257977,0,0,OIF:SA:59668,Europe/Paris,,OIF, +OIF:SP:59:4008252,1,"Porte Molitor",48.845486,2.25542,0,0,OIF:SA:59:3813169,Europe/Paris,,OIF, +OIF:SP:59:4008253,1,"Porte Molitor",48.845766,2.256168,0,0,OIF:SA:59:3813169,Europe/Paris,,OIF, +OIF:SP:59:4008254,1,"La Tourelle",48.84454,2.251186,0,0,OIF:SA:59:4008254,Europe/Paris,,OIF, +OIF:SP:59:4008255,1,"La Tourelle",48.844495,2.251799,0,0,OIF:SA:59:4008254,Europe/Paris,,OIF, +OIF:SP:59:4008256,1,"Denfert Rochereau",48.843611,2.246708,0,0,OIF:SA:59:4008256,Europe/Paris,,OIF, +OIF:SP:59:4008257,1,"Denfert Rochereau",48.843431,2.246681,0,0,OIF:SA:59:4008256,Europe/Paris,,OIF, +OIF:SP:59:4008258,1,"Rue de l'Est",48.842979,2.243414,0,0,OIF:SA:59:4008258,Europe/Paris,,OIF, +OIF:SP:59:4008259,1,"Rue de l'Est",48.84279,2.2434,0,0,OIF:SA:59:4008258,Europe/Paris,,OIF, +OIF:SP:59:4008260,1,"Jean Jaurès - Métro",48.841986,2.238336,0,0,OIF:SA:59398,Europe/Paris,,OIF, +OIF:SP:59:4008261,1,"Rue de Billancourt",48.841714,2.235491,0,0,OIF:SA:59:4008261,Europe/Paris,,OIF, +OIF:SP:59:4008262,1,"Rue de Billancourt",48.841552,2.235192,0,0,OIF:SA:59:4008261,Europe/Paris,,OIF, +OIF:SP:59:4008263,1,"Rue de Silly",48.841495,2.231788,0,0,OIF:SA:59:4008263,Europe/Paris,,OIF, +OIF:SP:59:4008264,1,"Rue de Silly",48.841306,2.231502,0,0,OIF:SA:59:4008263,Europe/Paris,,OIF, +OIF:SP:59:4008265,1,"Pont de Saint-Cloud - Albert Kahn",48.841096,2.227023,0,0,OIF:SA:59400,Europe/Paris,,OIF, +OIF:SP:59:4008266,1,"Parc de Saint-Cloud",48.843123,2.22258,0,0,OIF:SA:59010,Europe/Paris,,OIF, +OIF:SP:59:4008271,1,"Rhin et Danube - Métro.",48.840864,2.229366,0,0,OIF:SA:59400,Europe/Paris,,OIF, +OIF:SP:59:4008272,1,"Jean Jaurès",48.842005,2.239358,0,0,OIF:SA:59398,Europe/Paris,,OIF, +OIF:SP:59:4008273,1,"Église d'Auteuil",48.847976,2.269742,0,0,OIF:SA:59667,Europe/Paris,,OIF, +OIF:SP:59:4008274,1,"Perrichont",48.849622,2.271605,0,0,OIF:SA:59:4008274,Europe/Paris,,OIF, +OIF:SP:59:4008275,1,"La Fontaine - Radio France",48.852094,2.273618,0,0,OIF:SA:59:4008275,Europe/Paris,,OIF, +OIF:SP:59:4008276,1,"Rodin",48.853531,2.27047,0,0,OIF:SA:59:4008276,Europe/Paris,,OIF, +OIF:SP:59:4008277,1,"Ranelagh",48.855715,2.270576,0,0,OIF:SA:59493,Europe/Paris,,OIF, +OIF:SP:59:4008278,1,"Beauvau",48.87119,2.315924,0,0,OIF:SA:59:4008278,Europe/Paris,,OIF, +OIF:SP:59:4008279,1,"D'Aguesseau",48.869491,2.319181,0,0,OIF:SA:59:4008279,Europe/Paris,,OIF, +OIF:SP:59:4008280,1,"Boissy d'Anglas",48.8688,2.32147,0,0,OIF:SA:59:4008280,Europe/Paris,,OIF, +OIF:SP:59:4008283,1,"Opéra Rue de la Paix",48.870454,2.331674,0,0,OIF:SA:59209,Europe/Paris,,OIF, +OIF:SP:59:4008834,1,"Opéra",48.872414,2.332655,0,0,OIF:SA:59209,Europe/Paris,,OIF, +OIF:SP:59:4008841,1,"Haussmann - Miromesnil",48.87509,2.31347,0,0,OIF:SA:59494,Europe/Paris,,OIF, +OIF:SP:59:4008852,1,"Kléber - Paul Valéry",48.86952,2.291784,0,0,OIF:SA:59:4008852,Europe/Paris,,OIF, +OIF:SP:59:4008853,1,"Kléber - Paul Valéry",48.869386,2.292111,0,0,OIF:SA:59:4008852,Europe/Paris,,OIF, +OIF:SP:59:4008854,1,"Kléber - Boissière",48.866527,2.28958,0,0,OIF:SA:59652,Europe/Paris,,OIF, +OIF:SP:59:4008855,1,"Trocadéro",48.863758,2.287566,0,0,OIF:SA:59617,Europe/Paris,,OIF, +OIF:SP:59:4008857,1,"Scheffer",48.861222,2.283687,0,0,OIF:SA:59:3740535,Europe/Paris,,OIF, +OIF:SP:59:4008858,1,"Scheffer",48.861195,2.284286,0,0,OIF:SA:59:3740535,Europe/Paris,,OIF, +OIF:SP:59:4008859,1,"La Tour",48.860232,2.280636,0,0,OIF:SA:59:4008859,Europe/Paris,,OIF, +OIF:SP:59:4008860,1,"La Tour",48.860304,2.281535,0,0,OIF:SA:59:4008859,Europe/Paris,,OIF, +OIF:SP:59:4008861,1,"Place Possoz",48.859448,2.277613,0,0,OIF:SA:59:4008861,Europe/Paris,,OIF, +OIF:SP:59:4008862,1,"Place Possoz",48.859224,2.277655,0,0,OIF:SA:59:4008861,Europe/Paris,,OIF, +OIF:SP:59:4008863,1,"La Muette - Boulainvilliers",48.858548,2.275204,0,0,OIF:SA:59207,Europe/Paris,,OIF, +OIF:SP:59:4008867,1,"Théophile Gautier - Rue Gros",48.851061,2.274858,0,0,OIF:SA:59:4008867,Europe/Paris,,OIF, +OIF:SP:59:4008868,1,"Perrichont",48.849793,2.271714,0,0,OIF:SA:59:4008274,Europe/Paris,,OIF, +OIF:SP:59:4008869,1,"Église d'Auteuil",48.847967,2.269524,0,0,OIF:SA:59667,Europe/Paris,,OIF, +OIF:SP:59:4008870,1,"Église d'Auteuil",48.848327,2.270518,0,0,OIF:SA:59667,Europe/Paris,,OIF, +OIF:SP:59:4008873,1,"Versailles - Chardon Lagache",48.839541,2.262196,0,0,OIF:SA:59:3813161,Europe/Paris,,OIF, +OIF:SP:59:4008877,1,"Porte de Saint-Cloud",48.838036,2.25584,0,0,OIF:SA:59492,Europe/Paris,,OIF, +OIF:SP:59:4008879,1,"Versailles - Exelmans",48.840954,2.265707,0,0,OIF:SA:29:456,Europe/Paris,,OIF, +OIF:SP:59:4008880,1,"Victorien Sardou",48.84306,2.269503,0,0,OIF:SA:59:4008880,Europe/Paris,,OIF, +OIF:SP:59:4008881,1,"Wilhem",48.844642,2.271149,0,0,OIF:SA:59:4008881,Europe/Paris,,OIF, +OIF:SP:59:4008882,1,"Pont Mirabeau",48.847753,2.273065,0,0,OIF:SA:59374,Europe/Paris,,OIF, +OIF:SP:59:4008883,1,"George Sand - la Fontaine",48.84989,2.268405,0,0,OIF:SA:59:4008244,Europe/Paris,,OIF, +OIF:SP:59:4008884,1,"Jasmin",48.851938,2.267953,0,0,OIF:SA:59495,Europe/Paris,,OIF, +OIF:SP:59:4008887,1,"Kléber - Boissière",48.866913,2.290261,0,0,OIF:SA:59652,Europe/Paris,,OIF, +OIF:SP:59:4008888,1,"Gare Saint-Lazare",48.875415,2.326101,0,0,OIF:SA:8738400,Europe/Paris,,OIF, +OIF:SP:59:4008891,1,"Pont de Sevres",48.829541,2.230274,0,0,OIF:SA:59621,Europe/Paris,,OIF, +OIF:SP:59:4008914,1,"Gare de Chaville Rive Droite",48.812328,2.18736,0,0,OIF:SA:8738233,Europe/Paris,,OIF, +OIF:SP:59:4008916,1,"Collège Jean Moulin",48.81094,2.184194,0,0,OIF:SA:36:1016,Europe/Paris,,OIF, +OIF:SP:59:4008917,1,"Sécurité Sociale",48.809477,2.186416,0,0,OIF:SA:59:4008917,Europe/Paris,,OIF, +OIF:SP:59:4008932,1,"Marivel",48.818083,2.196898,0,0,OIF:SA:59:4008932,Europe/Paris,,OIF, +OIF:SP:59:4008933,1,"Marivel",48.818695,2.198244,0,0,OIF:SA:59:4008932,Europe/Paris,,OIF, +OIF:SP:59:4008934,1,"Guilleminot",48.815553,2.193571,0,0,OIF:SA:59:4008934,Europe/Paris,,OIF, +OIF:SP:59:4008935,1,"Guilleminot",48.816192,2.194522,0,0,OIF:SA:59:4008934,Europe/Paris,,OIF, +OIF:SP:59:4008936,1,"Atrium",48.812945,2.191863,0,0,OIF:SA:8741461,Europe/Paris,,OIF, +OIF:SP:59:4008937,1,"Atrium",48.813296,2.192393,0,0,OIF:SA:8741461,Europe/Paris,,OIF, +OIF:SP:59:4008938,1,"Cours Général de Gaulle",48.810535,2.191067,0,0,OIF:SA:59:4008938,Europe/Paris,,OIF, +OIF:SP:59:4008939,1,"Cours Général de Gaulle",48.810823,2.191733,0,0,OIF:SA:59:4008938,Europe/Paris,,OIF, +OIF:SP:59:4008940,1,"Puits Sans Vin",48.809399,2.188648,0,0,OIF:SA:17:1510,Europe/Paris,,OIF, +OIF:SP:59:4008941,1,"Puits Sans Vin",48.808778,2.187969,0,0,OIF:SA:17:1510,Europe/Paris,,OIF, +OIF:SP:59:4008942,1,"Gare de Chaville Rive Gauche",48.804896,2.188348,0,0,OIF:SA:8739320,Europe/Paris,,OIF, +OIF:SP:59:4008944,1,"Pont de Sevres",48.829478,2.230397,0,0,OIF:SA:59621,Europe/Paris,,OIF, +OIF:SP:59:4008945,1,"Pont de Sevres",48.829379,2.23041,0,0,OIF:SA:59621,Europe/Paris,,OIF, +OIF:SP:59:4008946,1,"Musée de Sevres",48.827954,2.224764,0,0,OIF:SA:59045,Europe/Paris,,OIF, +OIF:SP:59:4008947,1,"Musée de Sevres",48.827197,2.223255,0,0,OIF:SA:59045,Europe/Paris,,OIF, +OIF:SP:59:4008948,1,"Parc de Saint-Cloud",48.826429,2.218669,0,0,OIF:SA:59:4008948,Europe/Paris,,OIF, +OIF:SP:59:4008949,1,"Parc de Saint-Cloud",48.82652,2.219853,0,0,OIF:SA:59:4008948,Europe/Paris,,OIF, +OIF:SP:59:4008950,1,"Mairie de Sevres",48.824707,2.213392,0,0,OIF:SA:59:4008950,Europe/Paris,,OIF, +OIF:SP:59:4008951,1,"Mairie de Sevres",48.824753,2.214331,0,0,OIF:SA:59:4008950,Europe/Paris,,OIF, +OIF:SP:59:4008952,1,"Marche Saint-Romain",48.823103,2.209339,0,0,OIF:SA:59:4008952,Europe/Paris,,OIF, +OIF:SP:59:4008953,1,"Marche Saint-Romain",48.823221,2.210251,0,0,OIF:SA:59:4008952,Europe/Paris,,OIF, +OIF:SP:59:4008954,1,"Place Gabriel Péri",48.822228,2.206973,0,0,OIF:SA:59:4008954,Europe/Paris,,OIF, +OIF:SP:59:4008955,1,"Place Gabriel Péri",48.821941,2.206783,0,0,OIF:SA:59:4008954,Europe/Paris,,OIF, +OIF:SP:59:4008956,1,"Hôpital Jean Rostand",48.820352,2.200581,0,0,OIF:SA:8741458,Europe/Paris,,OIF, +OIF:SP:59:4008957,1,"Hôpital Jean Rostand",48.820893,2.201927,0,0,OIF:SA:8741458,Europe/Paris,,OIF, +OIF:SP:59:4008966,1,"Puits Sans Vin",48.808454,2.187086,0,0,OIF:SA:17:1510,Europe/Paris,,OIF, +OIF:SP:59:4008968,1,"Pointe de Chaville",48.805574,2.184005,0,0,OIF:SA:59:4008968,Europe/Paris,,OIF, +OIF:SP:59:4008969,1,"Pointe de Chaville",48.805871,2.184726,0,0,OIF:SA:59:4008968,Europe/Paris,,OIF, +OIF:SP:59:4008970,1,"Les Fleurs",48.804813,2.179817,0,0,OIF:SA:59:4008970,Europe/Paris,,OIF, +OIF:SP:59:4008971,1,"Les Fleurs",48.804634,2.180117,0,0,OIF:SA:59:4008970,Europe/Paris,,OIF, +OIF:SP:59:4008972,1,"Grâce de Dieu",48.80407,2.175179,0,0,OIF:SA:8741460,Europe/Paris,,OIF, +OIF:SP:59:4008973,1,"Grâce de Dieu",48.804154,2.17722,0,0,OIF:SA:8741460,Europe/Paris,,OIF, +OIF:SP:59:4008974,1,"Gabriel Péri",48.804152,2.169138,0,0,OIF:SA:8738288,Europe/Paris,,OIF, +OIF:SP:59:4008975,1,"Gabriel Péri",48.803972,2.169342,0,0,OIF:SA:8738288,Europe/Paris,,OIF, +OIF:SP:59:4008976,1,"Président Doumer",48.80314,2.165903,0,0,OIF:SA:2:1262,Europe/Paris,,OIF, +OIF:SP:59:4008977,1,"Président Doumer",48.802754,2.165741,0,0,OIF:SA:2:1262,Europe/Paris,,OIF, +OIF:SP:59:4008978,1,"Pierre Edouard",48.800852,2.162019,0,0,OIF:SA:8741452,Europe/Paris,,OIF, +OIF:SP:59:4008979,1,"Pierre Edouard",48.801168,2.16297,0,0,OIF:SA:8741452,Europe/Paris,,OIF, +OIF:SP:59:4008980,1,"Place Louis XIV",48.799185,2.159236,0,0,OIF:SA:2:444,Europe/Paris,,OIF, +OIF:SP:59:4008981,1,"Place Louis XIV",48.799338,2.159834,0,0,OIF:SA:2:444,Europe/Paris,,OIF, +OIF:SP:59:4008982,1,"Porchefontaine",48.798528,2.153157,0,0,OIF:SA:8739316,Europe/Paris,,OIF, +OIF:SP:59:4008983,1,"Porchefontaine",48.798204,2.152532,0,0,OIF:SA:8739316,Europe/Paris,,OIF, +OIF:SP:59:4008984,1,"Jean Mermoz",48.798738,2.143619,0,0,OIF:SA:2:518,Europe/Paris,,OIF, +OIF:SP:59:4008985,1,"Jean Mermoz",48.79828,2.14411,0,0,OIF:SA:2:518,Europe/Paris,,OIF, +OIF:SP:59:4008986,1,"Vergennes",48.800409,2.137544,0,0,OIF:SA:2:1113,Europe/Paris,,OIF, +OIF:SP:59:4008987,1,"Vergennes",48.799826,2.138363,0,0,OIF:SA:2:1113,Europe/Paris,,OIF, +OIF:SP:59:4008988,1,"Hôtel de Ville de Versailles",48.802052,2.131293,0,0,OIF:SA:8739315,Europe/Paris,,OIF, +OIF:SP:59:4008989,1,"Hôtel de Ville de Versailles",48.801683,2.131158,0,0,OIF:SA:8739315,Europe/Paris,,OIF, +OIF:SP:59:4008990,1,"Château de Versailles",48.803114,2.127329,0,0,OIF:SA:2:911,Europe/Paris,,OIF, +OIF:SP:59:4008991,1,"Château de Versailles",48.802746,2.127399,0,0,OIF:SA:2:911,Europe/Paris,,OIF, +OIF:SP:59:4009041,1,"Porte des Lilas",48.876877,2.408221,0,0,OIF:SA:59327,Europe/Paris,,OIF, +OIF:SP:59:4009042,1,"Les Bruyères",48.878367,2.410976,0,0,OIF:SA:59:4009042,Europe/Paris,,OIF, +OIF:SP:59:4009043,1,"Jean Jaurès",48.880426,2.409793,0,0,OIF:SA:59:3673620,Europe/Paris,,OIF, +OIF:SP:59:4009045,1,"Mairie du Pré-Saint-Gervais",48.882272,2.402846,0,0,OIF:SA:59:4009045,Europe/Paris,,OIF, +OIF:SP:59:4009046,1,"D'Estienne d'Orves",48.886657,2.404051,0,0,OIF:SA:59:4009046,Europe/Paris,,OIF, +OIF:SP:59:4009047,1,"Franklin",48.888095,2.403835,0,0,OIF:SA:59:4009047,Europe/Paris,,OIF, +OIF:SP:59:4009051,1,"Pantin RER - Mairie",48.8973,2.399785,0,0,OIF:SA:8711320,Europe/Paris,,OIF, +OIF:SP:59:4009054,1,"Quatre Chemins - Edouard Vaillant",48.9032,2.392594,0,0,OIF:SA:59318,Europe/Paris,,OIF, +OIF:SP:59:4009056,1,"Hôpital la Roseraie",48.906517,2.389325,0,0,OIF:SA:59:4009056,Europe/Paris,,OIF, +OIF:SP:59:4009057,1,"Rue des Cités",48.908244,2.387718,0,0,OIF:SA:59:4009057,Europe/Paris,,OIF, +OIF:SP:59:4009058,1,"André Karman",48.910509,2.385525,0,0,OIF:SA:59:4009058,Europe/Paris,,OIF, +OIF:SP:59:4009059,1,"Mairie d'Aubervilliers",48.914204,2.381888,0,0,OIF:SA:59:3908815,Europe/Paris,,OIF, +OIF:SP:59:4009061,1,"Heurtault",48.919499,2.378129,0,0,OIF:SA:59:3908817,Europe/Paris,,OIF, +OIF:SP:59:4009062,1,"Pont du Chemin de Fer",48.9219,2.375049,0,0,OIF:SA:59:4009062,Europe/Paris,,OIF, +OIF:SP:59:4009063,1,"Bergeries - Francs Moisins",48.92369,2.369541,0,0,OIF:SA:59:3741083,Europe/Paris,,OIF, +OIF:SP:59:4009064,1,"Rue du Progrès",48.926036,2.366964,0,0,OIF:SA:59:4009064,Europe/Paris,,OIF, +OIF:SP:59:4009065,1,"Charles Cros",48.927322,2.364551,0,0,OIF:SA:59:4009065,Europe/Paris,,OIF, +OIF:SP:59:4009066,1,"Hôpital",48.929066,2.362343,0,0,OIF:SA:59096,Europe/Paris,,OIF, +OIF:SP:59:4009067,1,"Porte de Paris - Stade de France",48.930082,2.357119,0,0,OIF:SA:59542,Europe/Paris,,OIF, +OIF:SP:59:4009069,1,"Square de Geyter",48.93047,2.35049,0,0,OIF:SA:59886,Europe/Paris,,OIF, +OIF:SP:59:4009070,1,"Gare de Saint-Denis RER",48.934173,2.347695,0,0,OIF:SA:8727101,Europe/Paris,,OIF, +OIF:SP:59:4009071,1,"Gare de Saint-Denis RER",48.934065,2.347354,0,0,OIF:SA:8727101,Europe/Paris,,OIF, +OIF:SP:59:4009072,1,"Square de Geyter",48.930416,2.350245,0,0,OIF:SA:59886,Europe/Paris,,OIF, +OIF:SP:59:4009074,1,"Hôpital",48.929371,2.361647,0,0,OIF:SA:59096,Europe/Paris,,OIF, +OIF:SP:59:4009075,1,"Charles Cros",48.926872,2.365178,0,0,OIF:SA:59:4009065,Europe/Paris,,OIF, +OIF:SP:59:4009076,1,"Rue du Progrès",48.925578,2.366964,0,0,OIF:SA:59:4009064,Europe/Paris,,OIF, +OIF:SP:59:4009077,1,"Bergeries - Francs Moisins",48.92387,2.368804,0,0,OIF:SA:59:3741094,Europe/Paris,,OIF, +OIF:SP:59:4009078,1,"Pont du Chemin de Fer",48.921756,2.374531,0,0,OIF:SA:59:4009062,Europe/Paris,,OIF, +OIF:SP:59:4009079,1,"Heurtault",48.918591,2.378524,0,0,OIF:SA:59:3908817,Europe/Paris,,OIF, +OIF:SP:59:4009080,1,"Schaeffer",48.91656,2.379872,0,0,OIF:SA:59:4009080,Europe/Paris,,OIF, +OIF:SP:59:4009081,1,"Mairie d'Aubervilliers",48.914366,2.381479,0,0,OIF:SA:59:3908815,Europe/Paris,,OIF, +OIF:SP:59:4009083,1,"Rue des Cités",48.908145,2.387514,0,0,OIF:SA:59:4009057,Europe/Paris,,OIF, +OIF:SP:59:4009086,1,"Quatre Chemins - Edouard Vaillant",48.902885,2.392621,0,0,OIF:SA:59318,Europe/Paris,,OIF, +OIF:SP:59:4009093,1,"Franklin",48.888194,2.403644,0,0,OIF:SA:59:4009093,Europe/Paris,,OIF, +OIF:SP:59:4009094,1,"D'Estienne d'Orves",48.886657,2.403901,0,0,OIF:SA:59:4009046,Europe/Paris,,OIF, +OIF:SP:59:4009095,1,"Mairie du Pré-Saint-Gervais",48.882596,2.402983,0,0,OIF:SA:59:4009045,Europe/Paris,,OIF, +OIF:SP:59:4009096,1,"Les Marronniers",48.881499,2.404153,0,0,OIF:SA:59:4009096,Europe/Paris,,OIF, +OIF:SP:59:4009098,1,"Faidherbe - Belvédère",48.879031,2.411767,0,0,OIF:SA:59:4009098,Europe/Paris,,OIF, +OIF:SP:59:4009099,1,"Porte des Lilas",48.877074,2.408576,0,0,OIF:SA:59327,Europe/Paris,,OIF, +OIF:SP:59:4009100,1,"Gare de Bellevue",48.819267,2.229533,0,0,OIF:SA:8739311,Europe/Paris,,OIF, +OIF:SP:59:4009102,1,"Capucins - Bel Air",48.814125,2.228849,0,0,OIF:SA:59:4009102,Europe/Paris,,OIF, +OIF:SP:59:4009104,1,"Châtelet - Bel Air",48.81521,2.225309,0,0,OIF:SA:59:4009104,Europe/Paris,,OIF, +OIF:SP:59:4009105,1,"Gardes - Bel Air",48.815523,2.224151,0,0,OIF:SA:59:4009105,Europe/Paris,,OIF, +OIF:SP:59:4009108,1,"11 Novembre",48.821323,2.227228,0,0,OIF:SA:59:4009108,Europe/Paris,,OIF, +OIF:SP:59:4009109,1,"Gare de Bellevue.",48.818853,2.229275,0,0,OIF:SA:8739311,Europe/Paris,,OIF, +OIF:SP:59:4009113,1,"Trivaux - Vertugadins",48.803201,2.234668,0,0,OIF:SA:59:4009113,Europe/Paris,,OIF, +OIF:SP:59:4009114,1,"Lycée Rabelais",48.802404,2.237609,0,0,OIF:SA:59:4009114,Europe/Paris,,OIF, +OIF:SP:59:4009117,1,"Larris",48.806974,2.243465,0,0,OIF:SA:8739308,Europe/Paris,,OIF, +OIF:SP:59:4009120,1,"Rivoli",48.810422,2.249732,0,0,OIF:SA:59:4009120,Europe/Paris,,OIF, +OIF:SP:59:4009121,1,"Petite Fontaine",48.811313,2.252357,0,0,OIF:SA:59:4009121,Europe/Paris,,OIF, +OIF:SP:59:4009122,1,"Borne Sud",48.812553,2.251429,0,0,OIF:SA:59:4009122,Europe/Paris,,OIF, +OIF:SP:59:4009124,1,"Vignes - Belgique",48.810716,2.247527,0,0,OIF:SA:59:4009124,Europe/Paris,,OIF, +OIF:SP:59:4009125,1,"Viaduc",48.812981,2.246366,0,0,OIF:SA:59:4009125,Europe/Paris,,OIF, +OIF:SP:59:4009126,1,"Commissariat de Police",48.810567,2.240152,0,0,OIF:SA:59:4009126,Europe/Paris,,OIF, +OIF:SP:59:4009128,1,"Église de Meudon.",48.807077,2.236375,0,0,OIF:SA:59:4009128,Europe/Paris,,OIF, +OIF:SP:59:4009129,1,"Maison Rouge - Nouvelle Poste",48.808964,2.236276,0,0,OIF:SA:59:4009129,Europe/Paris,,OIF, +OIF:SP:59:4009130,1,"Rabelais",48.811086,2.236885,0,0,OIF:SA:59:4009114,Europe/Paris,,OIF, +OIF:SP:59:4009132,1,"Gare de Meudon",48.814729,2.241273,0,0,OIF:SA:8739310,Europe/Paris,,OIF, +OIF:SP:59:4009134,1,"Jules Gérard",48.817357,2.245746,0,0,OIF:SA:59:4009134,Europe/Paris,,OIF, +OIF:SP:59:4009135,1,"Carrefour de la Ferme",48.818024,2.248494,0,0,OIF:SA:59:4009135,Europe/Paris,,OIF, +OIF:SP:59:4009139,1,"Gare de Bellevue..",48.819249,2.229683,0,0,OIF:SA:8739311,Europe/Paris,,OIF, +OIF:SP:59:4009141,1,"Gardes - Capucins",48.816344,2.227266,0,0,OIF:SA:59:4009141,Europe/Paris,,OIF, +OIF:SP:59:4009143,1,"Collège - Bel Air",48.814373,2.224793,0,0,OIF:SA:59:4009143,Europe/Paris,,OIF, +OIF:SP:59:4009146,1,"Hameau",48.815494,2.221511,0,0,OIF:SA:59:4009146,Europe/Paris,,OIF, +OIF:SP:59:4009147,1,"Tour",48.817831,2.222037,0,0,OIF:SA:59:4009147,Europe/Paris,,OIF, +OIF:SP:59:4009150,1,"Jeanne d'Arc",48.816618,2.231729,0,0,OIF:SA:59:4009150,Europe/Paris,,OIF, +OIF:SP:59:4009151,1,"Stalingrad",48.814993,2.233965,0,0,OIF:SA:59:4009151,Europe/Paris,,OIF, +OIF:SP:59:4009152,1,"Rabelais",48.81184,2.23691,0,0,OIF:SA:59:4009114,Europe/Paris,,OIF, +OIF:SP:59:4009153,1,"Observatoire",48.809697,2.232138,0,0,OIF:SA:59:4009153,Europe/Paris,,OIF, +OIF:SP:59:4009154,1,"Terre Neuve",48.808404,2.233243,0,0,OIF:SA:59:4009154,Europe/Paris,,OIF, +OIF:SP:59:4009166,1,"Paul Bert",48.811293,2.248832,0,0,OIF:SA:59:4009166,Europe/Paris,,OIF, +OIF:SP:59:4009170,1,"Maison Rouge - Rue de Paris",48.809236,2.238943,0,0,OIF:SA:59:4009170,Europe/Paris,,OIF, +OIF:SP:59:4009173,1,"Rabelais.",48.811562,2.23702,0,0,OIF:SA:59:4009114,Europe/Paris,,OIF, +OIF:SP:59:4009174,1,"Claude Dalsème",48.81329,2.24046,0,0,OIF:SA:59:4009174,Europe/Paris,,OIF, +OIF:SP:59:4009176,1,"Sorrières",48.816322,2.243761,0,0,OIF:SA:59:4009176,Europe/Paris,,OIF, +OIF:SP:59:4009179,1,"Groupe Scolaire Brossolette",48.818803,2.244478,0,0,OIF:SA:59:4009179,Europe/Paris,,OIF, +OIF:SP:59:4009223,1,"Jean Jaures-Mairie - Métro",48.823999,2.273598,0,0,OIF:SA:59522,Europe/Paris,,OIF, +OIF:SP:59:4009224,1,"Place de l'Église",48.82285,2.276185,0,0,OIF:SA:59:4009224,Europe/Paris,,OIF, +OIF:SP:59:4009225,1,"Place d'Alembert",48.822023,2.276676,0,0,OIF:SA:59:4009225,Europe/Paris,,OIF, +OIF:SP:59:4009226,1,"Abbé Derry",48.822348,2.279616,0,0,OIF:SA:59:4009226,Europe/Paris,,OIF, +OIF:SP:59:4009227,1,"Marcel Burgun - Carnot",48.821819,2.280705,0,0,OIF:SA:59:4009227,Europe/Paris,,OIF, +OIF:SP:59:4009228,1,"Jules Guesde",48.819904,2.279183,0,0,OIF:SA:59:4009228,Europe/Paris,,OIF, +OIF:SP:59:4009229,1,"Place de l'Église.",48.823084,2.27609,0,0,OIF:SA:59:4009224,Europe/Paris,,OIF, +OIF:SP:59:4009230,1,"Etienne Dolet",48.82319,2.273748,0,0,OIF:SA:59522,Europe/Paris,,OIF, +OIF:SP:59:4009231,1,"Mairie d'Issy - Métro.",48.824529,2.272576,0,0,OIF:SA:59522,Europe/Paris,,OIF, +OIF:SP:59:4009232,1,"Victor Hugo",48.827504,2.27328,0,0,OIF:SA:59:3442569,Europe/Paris,,OIF, +OIF:SP:59:4009235,1,"Renan - Foucher Lepelletier",48.829171,2.281991,0,0,OIF:SA:59:4009235,Europe/Paris,,OIF, +OIF:SP:59:4009236,1,"Maurice Hartmann",48.827473,2.283313,0,0,OIF:SA:59:4009236,Europe/Paris,,OIF, +OIF:SP:59:4009237,1,"Collège Henri Matisse",48.828155,2.281052,0,0,OIF:SA:59:4009237,Europe/Paris,,OIF, +OIF:SP:59:4009238,1,"Corentin Celton - Métro",48.827372,2.278644,0,0,OIF:SA:59523,Europe/Paris,,OIF, +OIF:SP:59:4009239,1,"Général Leclerc - Vaudétard",48.82605,2.277692,0,0,OIF:SA:59523,Europe/Paris,,OIF, +OIF:SP:59:4009256,1,"Cresson - Gallieni",48.822998,2.268073,0,0,OIF:SA:59:4009256,Europe/Paris,,OIF, +OIF:SP:59:4009257,1,"Capitaine Ferber",48.825981,2.266109,0,0,OIF:SA:59:4009257,Europe/Paris,,OIF, +OIF:SP:59:4009258,1,"Jacques Henri Lartigue-Tramway",48.824495,2.26121,0,0,OIF:SA:59136,Europe/Paris,,OIF, +OIF:SP:59:4009259,1,"Jean-Jacques Rousseau",48.822741,2.258926,0,0,OIF:SA:59136,Europe/Paris,,OIF, +OIF:SP:59:4009260,1,"Rue de la Gare",48.822388,2.255646,0,0,OIF:SA:59:4009260,Europe/Paris,,OIF, +OIF:SP:59:4009261,1,"Les Moulineaux-Tramway",48.82164,2.252694,0,0,OIF:SA:59017,Europe/Paris,,OIF, +OIF:SP:59:4009262,1,"Bas Meudon",48.823067,2.248703,0,0,OIF:SA:59:4009262,Europe/Paris,,OIF, +OIF:SP:59:4009263,1,"Stade Île Saint-Germain",48.822336,2.245547,0,0,OIF:SA:59:4009263,Europe/Paris,,OIF, +OIF:SP:59:4009264,1,"Sainte-Eudoxie",48.821085,2.242773,0,0,OIF:SA:59:4009264,Europe/Paris,,OIF, +OIF:SP:59:4009265,1,"Allée des Moulineaux",48.821816,2.246827,0,0,OIF:SA:59:4009265,Europe/Paris,,OIF, +OIF:SP:59:4009266,1,"Pierre Poli",48.822303,2.248855,0,0,OIF:SA:59:4009266,Europe/Paris,,OIF, +OIF:SP:59:4009267,1,"Les Trois Moulins",48.821272,2.253348,0,0,OIF:SA:59:4009267,Europe/Paris,,OIF, +OIF:SP:59:4009268,1,"Collège Victor Hugo",48.821957,2.255443,0,0,OIF:SA:59:4009268,Europe/Paris,,OIF, +OIF:SP:59:4009270,1,"Roger Salengro",48.824084,2.264246,0,0,OIF:SA:59136,Europe/Paris,,OIF, +OIF:SP:59:4009271,1,"Gallieni",48.823285,2.267024,0,0,OIF:SA:59:4009271,Europe/Paris,,OIF, +OIF:SP:59:4009534,1,"Hippodrome",48.795955,2.563798,0,0,OIF:SA:59:4009534,Europe/Paris,,OIF, +OIF:SP:59:4009535,1,"Hippodrome",48.795793,2.563865,0,0,OIF:SA:59:4009535,Europe/Paris,,OIF, +OIF:SP:59:4009536,1,"Hôpital des Enfants Malades",48.846429,2.315608,0,0,OIF:SA:59349,Europe/Paris,,OIF, +OIF:SP:59:4009616,1,"Gare Montparnasse",48.84199,2.320593,0,0,OIF:SA:8739100,Europe/Paris,,OIF, +OIF:SP:59:4009623,1,"Rennes - Raspail",48.848642,2.327809,0,0,OIF:SA:59510,Europe/Paris,,OIF, +OIF:SP:59:4009624,1,"Rennes - Raspail",48.848264,2.327645,0,0,OIF:SA:59510,Europe/Paris,,OIF, +OIF:SP:59:4009625,1,"Rue du Cherche Midi",48.849927,2.327413,0,0,OIF:SA:59362,Europe/Paris,,OIF, +OIF:SP:59:4009643,1,"Saint-Augustin",48.874713,2.320773,0,0,OIF:SA:59489,Europe/Paris,,OIF, +OIF:SP:59:4009645,1,"Lisbonne - Mairie du 8ème",48.877643,2.316671,0,0,OIF:SA:59:4009645,Europe/Paris,,OIF, +OIF:SP:59:4009646,1,"Lisbonne - Mairie du 8ème",48.877562,2.316331,0,0,OIF:SA:59:4009645,Europe/Paris,,OIF, +OIF:SP:59:4009647,1,"Malesherbes - Courcelles",48.880644,2.312991,0,0,OIF:SA:59:3740311,Europe/Paris,,OIF, +OIF:SP:59:4009648,1,"Malesherbes - Courcelles",48.880554,2.312664,0,0,OIF:SA:59:3740311,Europe/Paris,,OIF, +OIF:SP:59:4009649,1,"Place du Général Catroux",48.883168,2.30991,0,0,OIF:SA:59441,Europe/Paris,,OIF, +OIF:SP:59:4009650,1,"Place du Général Catroux",48.883016,2.309733,0,0,OIF:SA:59441,Europe/Paris,,OIF, +OIF:SP:59:4009651,1,"Jouffroy - Malesherbes",48.885576,2.306965,0,0,OIF:SA:59:4009651,Europe/Paris,,OIF, +OIF:SP:59:4009652,1,"Jouffroy - Malesherbes",48.884768,2.307579,0,0,OIF:SA:59:4009651,Europe/Paris,,OIF, +OIF:SP:59:4009653,1,"Wagram - Pereire",48.887418,2.305206,0,0,OIF:SA:59:4009653,Europe/Paris,,OIF, +OIF:SP:59:4009654,1,"Wagram - Pereire",48.886609,2.305315,0,0,OIF:SA:59:4009653,Europe/Paris,,OIF, +OIF:SP:59:4009659,1,"Reims - Hôtel des Impôts",48.891991,2.300324,0,0,OIF:SA:59:4009659,Europe/Paris,,OIF, +OIF:SP:59:4009660,1,"Curnonsky",48.889968,2.296673,0,0,OIF:SA:59:4009660,Europe/Paris,,OIF, +OIF:SP:59:4009661,1,"Louison Bobet",48.891559,2.296058,0,0,OIF:SA:59:4009661,Europe/Paris,,OIF, +OIF:SP:59:4009666,1,"Sevres - Babylone",48.851095,2.326787,0,0,OIF:SA:59362,Europe/Paris,,OIF, +OIF:SP:59:4015688,1,"Place Voltaire",48.913235,2.295741,0,0,OIF:SA:59:4015688,Europe/Paris,,OIF, +OIF:SP:59:4015690,1,"Dussau",48.915266,2.293694,0,0,OIF:SA:59613,Europe/Paris,,OIF, +OIF:SP:59:4015691,1,"Dussau",48.915104,2.293558,0,0,OIF:SA:59613,Europe/Paris,,OIF, +OIF:SP:59:4015695,1,"Guillemin",48.917985,2.284051,0,0,OIF:SA:59:4015695,Europe/Paris,,OIF, +OIF:SP:59:4015696,1,"Bourguignons",48.918927,2.281473,0,0,OIF:SA:59:4015696,Europe/Paris,,OIF, +OIF:SP:59:4015697,1,"Bourguignons",48.918658,2.281691,0,0,OIF:SA:59:4015696,Europe/Paris,,OIF, +OIF:SP:59:4015710,1,"Paul Vaillant Couturier",48.94419,2.251198,0,0,OIF:SA:18:153,Europe/Paris,,OIF, +OIF:SP:59:4015711,1,"Paul Vaillant Couturier",48.943902,2.251117,0,0,OIF:SA:18:153,Europe/Paris,,OIF, +OIF:SP:59:4015716,1,"Gare d'Argenteuil",48.945956,2.257772,0,0,OIF:SA:8738184,Europe/Paris,,OIF, +OIF:SP:59:4015717,1,"Gare d'Argenteuil",48.946189,2.25758,0,0,OIF:SA:8738184,Europe/Paris,,OIF, +OIF:SP:59:4015720,1,"Gramme",48.923337,2.275685,0,0,OIF:SA:59:4015720,Europe/Paris,,OIF, +OIF:SP:59:4015729,1,"Alma",48.916881,2.288347,0,0,OIF:SA:59:4015729,Europe/Paris,,OIF, +OIF:SP:59:4015730,1,"Alma",48.916935,2.287406,0,0,OIF:SA:59:4015729,Europe/Paris,,OIF, +OIF:SP:59:4015731,1,"Guillemin",48.917976,2.284665,0,0,OIF:SA:59:4015695,Europe/Paris,,OIF, +OIF:SP:59:4015735,1,"Jaurès",48.920957,2.278838,0,0,OIF:SA:59:4015735,Europe/Paris,,OIF, +OIF:SP:59:4015751,1,"Petit Gennevilliers",48.936987,2.258659,0,0,OIF:SA:59:4015751,Europe/Paris,,OIF, +OIF:SP:59:4015755,1,"Louis Melotte",48.915966,2.290612,0,0,OIF:SA:59:4015755,Europe/Paris,,OIF, +OIF:SP:59:4015756,1,"Porte de Saint-Cloud",48.837874,2.255731,0,0,OIF:SA:59492,Europe/Paris,,OIF, +OIF:SP:59:4015758,1,"Henri Martin",48.836425,2.251976,0,0,OIF:SA:59:4015758,Europe/Paris,,OIF, +OIF:SP:59:4015759,1,"Henri Martin",48.836128,2.252235,0,0,OIF:SA:59:4015758,Europe/Paris,,OIF, +OIF:SP:59:4015760,1,"Rene Descartes",48.835091,2.247621,0,0,OIF:SA:59:4015760,Europe/Paris,,OIF, +OIF:SP:59:4015761,1,"Rene Descartes",48.834849,2.247935,0,0,OIF:SA:59:4015760,Europe/Paris,,OIF, +OIF:SP:59:4015771,1,"Parc de Saint-Cloud",48.841802,2.222814,0,0,OIF:SA:59010,Europe/Paris,,OIF, +OIF:SP:59:4015772,1,"Parc de Saint-Cloud",48.842286,2.222146,0,0,OIF:SA:59010,Europe/Paris,,OIF, +OIF:SP:59:4015773,1,"Feudon",48.846755,2.223974,0,0,OIF:SA:59:4015773,Europe/Paris,,OIF, +OIF:SP:59:4015774,1,"Feudon",48.845811,2.223105,0,0,OIF:SA:59:4015773,Europe/Paris,,OIF, +OIF:SP:59:4015775,1,"Parc de Béarn",48.849182,2.224092,0,0,OIF:SA:59:4015775,Europe/Paris,,OIF, +OIF:SP:59:4015776,1,"Parc de Béarn",48.849182,2.223819,0,0,OIF:SA:59:4015775,Europe/Paris,,OIF, +OIF:SP:59:4015777,1,"L'Aqueduc",48.853135,2.222925,0,0,OIF:SA:59:4015777,Europe/Paris,,OIF, +OIF:SP:59:4015778,1,"L'Aqueduc",48.852578,2.22275,0,0,OIF:SA:59:4015777,Europe/Paris,,OIF, +OIF:SP:59:4015779,1,"Avenue de Longchamp",48.856848,2.223503,0,0,OIF:SA:59041,Europe/Paris,,OIF, +OIF:SP:59:4015780,1,"Avenue de Longchamp",48.855939,2.222987,0,0,OIF:SA:59041,Europe/Paris,,OIF, +OIF:SP:59:4015781,1,"Rue du Val d'Or",48.859868,2.224559,0,0,OIF:SA:59:4015781,Europe/Paris,,OIF, +OIF:SP:59:4015782,1,"Clavel",48.862503,2.225915,0,0,OIF:SA:59:4015782,Europe/Paris,,OIF, +OIF:SP:59:4015783,1,"Clavel",48.861595,2.225223,0,0,OIF:SA:59:4015782,Europe/Paris,,OIF, +OIF:SP:59:4015784,1,"Pont de Suresnes",48.86762,2.22901,0,0,OIF:SA:59:4015784,Europe/Paris,,OIF, +OIF:SP:59:4015785,1,"Pont de Suresnes",48.866621,2.227746,0,0,OIF:SA:59:4015784,Europe/Paris,,OIF, +OIF:SP:59:4015786,1,"Nieuport",48.87004,2.231607,0,0,OIF:SA:59:4015786,Europe/Paris,,OIF, +OIF:SP:59:4015787,1,"Nieuport",48.869544,2.230559,0,0,OIF:SA:59:4015786,Europe/Paris,,OIF, +OIF:SP:59:4015788,1,"Pompidou",48.873918,2.236723,0,0,OIF:SA:59:4015788,Europe/Paris,,OIF, +OIF:SP:59:4015789,1,"Pont de Puteaux",48.878497,2.243159,0,0,OIF:SA:59:4015789,Europe/Paris,,OIF, +OIF:SP:59:4015795,1,"RD 7 - Pont de Neuilly",48.887429,2.253459,0,0,OIF:SA:59:4015795,Europe/Paris,,OIF, +OIF:SP:59:4015798,1,"Victor Hugo",48.892418,2.254174,0,0,OIF:SA:59:4015798,Europe/Paris,,OIF, +OIF:SP:59:4015800,1,"Mairie de Courbevoie",48.89543,2.256636,0,0,OIF:SA:59:4015800,Europe/Paris,,OIF, +OIF:SP:59:4015801,1,"Mairie de Courbevoie",48.895762,2.25624,0,0,OIF:SA:59:4015800,Europe/Paris,,OIF, +OIF:SP:59:4015802,1,"La Montagne",48.896158,2.25718,0,0,OIF:SA:59:4015802,Europe/Paris,,OIF, +OIF:SP:59:4015803,1,"La Montagne",48.896744,2.259973,0,0,OIF:SA:59:4015802,Europe/Paris,,OIF, +OIF:SP:59:4015804,1,"Pont Bineau",48.898059,2.264102,0,0,OIF:SA:59:4015804,Europe/Paris,,OIF, +OIF:SP:59:4015805,1,"Pont Bineau",48.898086,2.263638,0,0,OIF:SA:59:4015804,Europe/Paris,,OIF, +OIF:SP:59:4015806,1,"Franklin",48.90003,2.268884,0,0,OIF:SA:59:4015806,Europe/Paris,,OIF, +OIF:SP:59:4015807,1,"Franklin",48.900408,2.269374,0,0,OIF:SA:59:4015806,Europe/Paris,,OIF, +OIF:SP:59:4015808,1,"Place Mermoz",48.902748,2.275301,0,0,OIF:SA:59:4015808,Europe/Paris,,OIF, +OIF:SP:59:4015809,1,"Place Mermoz",48.902478,2.27417,0,0,OIF:SA:59:4015808,Europe/Paris,,OIF, +OIF:SP:59:4015810,1,"Haussmann",48.904268,2.278721,0,0,OIF:SA:59:4015810,Europe/Paris,,OIF, +OIF:SP:59:4015811,1,"Haussmann",48.903755,2.277113,0,0,OIF:SA:59:4015810,Europe/Paris,,OIF, +OIF:SP:59:4015812,1,"Gare d'Asnières",48.906382,2.281827,0,0,OIF:SA:8738113,Europe/Paris,,OIF, +OIF:SP:59:4015813,1,"Gare d'Asnières",48.90604,2.280968,0,0,OIF:SA:8738113,Europe/Paris,,OIF, +OIF:SP:59:4015814,1,"Gallieni",48.909628,2.286923,0,0,OIF:SA:59:4015814,Europe/Paris,,OIF, +OIF:SP:59:4015815,1,"Gallieni",48.909421,2.285859,0,0,OIF:SA:59:4015814,Europe/Paris,,OIF, +OIF:SP:59:4015816,1,"Mairie d'Asnières",48.910321,2.289581,0,0,OIF:SA:59:4015816,Europe/Paris,,OIF, +OIF:SP:59:4015817,1,"Mairie d'Asnières",48.910375,2.289049,0,0,OIF:SA:59:4015816,Europe/Paris,,OIF, +OIF:SP:59:4015818,1,"Place des Victoires-Marche",48.910907,2.292293,0,0,OIF:SA:59:4015818,Europe/Paris,,OIF, +OIF:SP:59:4015819,1,"Place des Victoires-Marche",48.910861,2.291284,0,0,OIF:SA:59:4015818,Europe/Paris,,OIF, +OIF:SP:59:4015821,1,"Place Voltaire",48.912202,2.295046,0,0,OIF:SA:59:4015688,Europe/Paris,,OIF, +OIF:SP:59:4015823,1,"Gabriel Péri - Métro",48.916048,2.294512,0,0,OIF:SA:59613,Europe/Paris,,OIF, +OIF:SP:59:4015824,1,"RD 7 - Pont de Neuilly",48.887159,2.25222,0,0,OIF:SA:59:4015824,Europe/Paris,,OIF, +OIF:SP:59:4015825,1,"Bellini",48.884965,2.250451,0,0,OIF:SA:59593,Europe/Paris,,OIF, +OIF:SP:59:4015826,1,"Godefroy",48.880098,2.244273,0,0,OIF:SA:59:4015826,Europe/Paris,,OIF, +OIF:SP:59:4015827,1,"Pompidou",48.873602,2.235606,0,0,OIF:SA:17:1622,Europe/Paris,,OIF, +OIF:SP:59:4015828,1,"Rue du Val d'Or",48.859284,2.22392,0,0,OIF:SA:29:427,Europe/Paris,,OIF, +OIF:SP:59:4015831,1,"Pont de Saint-Cloud - Albert Kahn",48.840853,2.22686,0,0,OIF:SA:59400,Europe/Paris,,OIF, +OIF:SP:59:4015880,1,"Gabriel Péri - Métro",48.916138,2.295957,0,0,OIF:SA:59613,Europe/Paris,,OIF, +OIF:SP:59:4015882,1,"Gabriel Péri-Henri Barbusse",48.917864,2.295669,0,0,OIF:SA:59:4015882,Europe/Paris,,OIF, +OIF:SP:59:4015883,1,"Basly",48.919949,2.295381,0,0,OIF:SA:59:4015883,Europe/Paris,,OIF, +OIF:SP:59:4015884,1,"Basly",48.92002,2.295108,0,0,OIF:SA:59:4015883,Europe/Paris,,OIF, +OIF:SP:59:4015885,1,"8 Mai 1945",48.921611,2.295148,0,0,OIF:SA:59:4015885,Europe/Paris,,OIF, +OIF:SP:59:4015886,1,"8 Mai 1945",48.921314,2.294794,0,0,OIF:SA:59:4015885,Europe/Paris,,OIF, +OIF:SP:59:4015887,1,"Mairie de Gennevilliers",48.924038,2.294778,0,0,OIF:SA:59:4015887,Europe/Paris,,OIF, +OIF:SP:59:4015889,1,"Camelinat-Jaures",48.927578,2.294952,0,0,OIF:SA:59:4015889,Europe/Paris,,OIF, +OIF:SP:59:4015890,1,"Camelinat-Jaures",48.927956,2.294775,0,0,OIF:SA:59:4015889,Europe/Paris,,OIF, +OIF:SP:59:4015891,1,"Deslandes",48.930535,2.295182,0,0,OIF:SA:59:4015891,Europe/Paris,,OIF, +OIF:SP:59:4015892,1,"Deslandes",48.930544,2.294936,0,0,OIF:SA:59:4015891,Europe/Paris,,OIF, +OIF:SP:59:4015893,1,"Le Village",48.934013,2.293856,0,0,OIF:SA:59701,Europe/Paris,,OIF, +OIF:SP:59:4015894,1,"Le Village",48.93377,2.293788,0,0,OIF:SA:59701,Europe/Paris,,OIF, +OIF:SP:59:4015895,1,"Villebois-Mareuil",48.934956,2.291986,0,0,OIF:SA:59:4015895,Europe/Paris,,OIF, +OIF:SP:59:4015896,1,"Villebois-Mareuil",48.934848,2.291904,0,0,OIF:SA:59:4015895,Europe/Paris,,OIF, +OIF:SP:59:4015897,1,"Cité du Luth-Verlaine",48.933499,2.289109,0,0,OIF:SA:59703,Europe/Paris,,OIF, +OIF:SP:59:4015898,1,"Cité du Luth-Verlaine",48.933364,2.289355,0,0,OIF:SA:59703,Europe/Paris,,OIF, +OIF:SP:59:4015901,1,"Les Courtilles",48.930216,2.283847,0,0,OIF:SA:59582,Europe/Paris,,OIF, +OIF:SP:59:4015902,1,"Quartier des Fleurs",48.931033,2.281241,0,0,OIF:SA:59582,Europe/Paris,,OIF, +OIF:SP:59:4015903,1,"Quartier des Fleurs",48.929946,2.281679,0,0,OIF:SA:59582,Europe/Paris,,OIF, +OIF:SP:59:4015905,1,"Fleming",48.931886,2.280258,0,0,OIF:SA:59:4015905,Europe/Paris,,OIF, +OIF:SP:59:4015907,1,"Mourinoux",48.932253,2.276671,0,0,OIF:SA:59:4015907,Europe/Paris,,OIF, +OIF:SP:59:4015912,1,"Gare du Stade",48.930105,2.260851,0,0,OIF:SA:8738109,Europe/Paris,,OIF, +OIF:SP:59:4015913,1,"Gare du Stade",48.930734,2.260932,0,0,OIF:SA:8738109,Europe/Paris,,OIF, +OIF:SP:59:4015914,1,"Président Kennedy",48.929069,2.257593,0,0,OIF:SA:59:4015914,Europe/Paris,,OIF, +OIF:SP:59:4015916,1,"Valmy-Gambetta",48.927683,2.254826,0,0,OIF:SA:59:4015916,Europe/Paris,,OIF, +OIF:SP:59:4015917,1,"Valmy-Gambetta",48.927503,2.254308,0,0,OIF:SA:59:4015916,Europe/Paris,,OIF, +OIF:SP:59:4015918,1,"Cité des Musiciens",48.928076,2.250748,0,0,OIF:SA:59:4015918,Europe/Paris,,OIF, +OIF:SP:59:4015919,1,"Cité des Musiciens",48.927996,2.251457,0,0,OIF:SA:59:4015918,Europe/Paris,,OIF, +OIF:SP:59:4015921,1,"Audra",48.927435,2.24738,0,0,OIF:SA:59:4015921,Europe/Paris,,OIF, +OIF:SP:59:4015924,1,"Europe",48.924994,2.239556,0,0,OIF:SA:59:4015924,Europe/Paris,,OIF, +OIF:SP:59:4015926,1,"Stalingrad-Jean Jacques Rousseau",48.932417,2.264872,0,0,OIF:SA:59:4015926,Europe/Paris,,OIF, +OIF:SP:59:4016021,1,"Hôpital Beaujon",48.908898,2.307061,0,0,OIF:SA:59:4016021,Europe/Paris,,OIF, +OIF:SP:59:4016029,1,"Gabriel Péri - Métro",48.916183,2.294321,0,0,OIF:SA:59613,Europe/Paris,,OIF, +OIF:SP:59:4016030,1,"Danielle Casanova",48.904592,2.302346,0,0,OIF:SA:59:4016030,Europe/Paris,,OIF, +OIF:SP:59:4016032,1,"Bateliers",48.907441,2.304321,0,0,OIF:SA:59:4016032,Europe/Paris,,OIF, +OIF:SP:59:4016033,1,"Berges de Seine",48.911298,2.3089,0,0,OIF:SA:59:4016033,Europe/Paris,,OIF, +OIF:SP:59:4016039,1,"Landy - Martre",48.90488,2.305004,0,0,OIF:SA:59583,Europe/Paris,,OIF, +OIF:SP:59:4016041,1,"Léon Blum",48.907225,2.30229,0,0,OIF:SA:59:4016041,Europe/Paris,,OIF, +OIF:SP:59:4016042,1,"Léon Blum",48.906721,2.300654,0,0,OIF:SA:59:4016041,Europe/Paris,,OIF, +OIF:SP:59:4016043,1,"Gabriel Péri - Métro",48.916426,2.295929,0,0,OIF:SA:59613,Europe/Paris,,OIF, +OIF:SP:59:4016045,1,"République",48.91977,2.298354,0,0,OIF:SA:59:4016045,Europe/Paris,,OIF, +OIF:SP:59:4016046,1,"République",48.919374,2.297727,0,0,OIF:SA:59:4016045,Europe/Paris,,OIF, +OIF:SP:59:4016047,1,"Rue Brenu",48.923329,2.300111,0,0,OIF:SA:59:4016047,Europe/Paris,,OIF, +OIF:SP:59:4016048,1,"Rue Brenu",48.922583,2.299784,0,0,OIF:SA:59:4016047,Europe/Paris,,OIF, +OIF:SP:59:4016049,1,"Sévines",48.926672,2.300258,0,0,OIF:SA:59:4016049,Europe/Paris,,OIF, +OIF:SP:59:4016050,1,"Sévines",48.926241,2.299945,0,0,OIF:SA:59:4016049,Europe/Paris,,OIF, +OIF:SP:59:4016051,1,"Caserne des Pompiers",48.929611,2.300925,0,0,OIF:SA:59:4016051,Europe/Paris,,OIF, +OIF:SP:59:4016058,1,"Iftim",48.94141,2.295855,0,0,OIF:SA:59:4016058,Europe/Paris,,OIF, +OIF:SP:59:4016059,1,"Iftim",48.941221,2.295405,0,0,OIF:SA:59:4016058,Europe/Paris,,OIF, +OIF:SP:59:4016060,1,"Darse N0 5",48.9414,2.294054,0,0,OIF:SA:59:4016060,Europe/Paris,,OIF, +OIF:SP:59:4016061,1,"Darse N0 5",48.941085,2.294027,0,0,OIF:SA:59:4016060,Europe/Paris,,OIF, +OIF:SP:59:4016062,1,"Môle Central",48.939644,2.285939,0,0,OIF:SA:59:4016062,Europe/Paris,,OIF, +OIF:SP:59:4016063,1,"Môle Central",48.939573,2.287207,0,0,OIF:SA:59:4016062,Europe/Paris,,OIF, +OIF:SP:59:4016065,1,"Bassin N0 2",48.938357,2.281043,0,0,OIF:SA:59:4016065,Europe/Paris,,OIF, +OIF:SP:59:4016074,1,"Petit Gennevilliers",48.937553,2.258317,0,0,OIF:SA:59:4016074,Europe/Paris,,OIF, +OIF:SP:59:4016090,1,"Rue Martre - Mairie de Clichy",48.903281,2.306123,0,0,OIF:SA:59583,Europe/Paris,,OIF, +OIF:SP:59:4016093,1,"Théâtre Rutebeuf - Hôpital Gouin",48.901808,2.308428,0,0,OIF:SA:59:4016093,Europe/Paris,,OIF, +OIF:SP:59:4016094,1,"Henri Barbusse - Jean Jaurès",48.900387,2.305771,0,0,OIF:SA:59:4016094,Europe/Paris,,OIF, +OIF:SP:59:4016095,1,"Émile Roux",48.898204,2.308839,0,0,OIF:SA:59:4016095,Europe/Paris,,OIF, +OIF:SP:59:4016096,1,"Victor Hugo",48.898555,2.310379,0,0,OIF:SA:59:4016096,Europe/Paris,,OIF, +OIF:SP:59:4016097,1,"Dispensaire",48.899652,2.314277,0,0,OIF:SA:59:4016097,Europe/Paris,,OIF, +OIF:SP:59:4016098,1,"Maison du Peuple",48.90064,2.314413,0,0,OIF:SA:59:4016098,Europe/Paris,,OIF, +OIF:SP:59:4016100,1,"Georges Boisseau",48.903526,2.318079,0,0,OIF:SA:59:3749961,Europe/Paris,,OIF, +OIF:SP:59:4016101,1,"Parc Mozart",48.906896,2.317778,0,0,OIF:SA:59:4016101,Europe/Paris,,OIF, +OIF:SP:59:4016107,1,"Quartier Nord",48.908232,2.302971,0,0,OIF:SA:59:4016107,Europe/Paris,,OIF, +OIF:SP:59:4016108,1,"Gabriel Péri",48.9062,2.301077,0,0,OIF:SA:59:4016108,Europe/Paris,,OIF, +OIF:SP:59:4016112,1,"Rue Martre - Mairie de Clichy.",48.903389,2.306041,0,0,OIF:SA:59583,Europe/Paris,,OIF, +OIF:SP:59:4016114,1,"Ancienne Mairie de Clichy",48.903316,2.302811,0,0,OIF:SA:59583,Europe/Paris,,OIF, +OIF:SP:59:4016115,1,"Fournier",48.904061,2.298897,0,0,OIF:SA:59:4016115,Europe/Paris,,OIF, +OIF:SP:59:4016116,1,"Piscine",48.90282,2.297303,0,0,OIF:SA:59:4016116,Europe/Paris,,OIF, +OIF:SP:59:4016117,1,"Pasteur",48.90185,2.299281,0,0,OIF:SA:59:4016117,Europe/Paris,,OIF, +OIF:SP:59:4016118,1,"Neuilly - Castérès",48.900485,2.301722,0,0,OIF:SA:59:4016118,Europe/Paris,,OIF, +OIF:SP:59:4016119,1,"Castérès",48.898804,2.303154,0,0,OIF:SA:59:4016119,Europe/Paris,,OIF, +OIF:SP:59:4016120,1,"Cimetière Sud",48.897322,2.303237,0,0,OIF:SA:59:4016120,Europe/Paris,,OIF, +OIF:SP:59:4016121,1,"Cailloux",48.896361,2.306155,0,0,OIF:SA:59:4016121,Europe/Paris,,OIF, +OIF:SP:59:4016122,1,"Castérès.",48.89876,2.303032,0,0,OIF:SA:59:4016119,Europe/Paris,,OIF, +OIF:SP:59:4016124,1,"Rue de Neuilly",48.899153,2.296747,0,0,OIF:SA:8738112,Europe/Paris,,OIF, +OIF:SP:59:4016125,1,"Rue Petit",48.901498,2.294169,0,0,OIF:SA:59:4016125,Europe/Paris,,OIF, +OIF:SP:59:4016126,1,"Rue des Chasses",48.901129,2.292329,0,0,OIF:SA:59:4016126,Europe/Paris,,OIF, +OIF:SP:59:4016128,1,"Rue du Port",48.906073,2.297274,0,0,OIF:SA:59:4016128,Europe/Paris,,OIF, +OIF:SP:59:4016265,1,"Hôtel de Ville",48.857179,2.350104,0,0,OIF:SA:59590,Europe/Paris,,OIF, +OIF:SP:59:4016272,1,"Coquillière - les Halles",48.863309,2.341932,0,0,OIF:SA:59:3764549,Europe/Paris,,OIF, +OIF:SP:59:4016275,1,"Réaumur - Montmartre",48.867893,2.343594,0,0,OIF:SA:59:3749784,Europe/Paris,,OIF, +OIF:SP:59:4016280,1,"Saint-Georges",48.878103,2.337914,0,0,OIF:SA:59512,Europe/Paris,,OIF, +OIF:SP:59:4016282,1,"Pigalle - Chaptal",48.880736,2.33493,0,0,OIF:SA:59:4016282,Europe/Paris,,OIF, +OIF:SP:59:4016283,1,"Blanche",48.883279,2.332913,0,0,OIF:SA:59428,Europe/Paris,,OIF, +OIF:SP:59:4016286,1,"Ganneron",48.885328,2.326739,0,0,OIF:SA:59533,Europe/Paris,,OIF, +OIF:SP:59:4016287,1,"La Fourche",48.887835,2.325171,0,0,OIF:SA:59533,Europe/Paris,,OIF, +OIF:SP:59:4016288,1,"La Fourche",48.88779,2.324885,0,0,OIF:SA:59533,Europe/Paris,,OIF, +OIF:SP:59:4016289,1,"Legendre",48.889345,2.322582,0,0,OIF:SA:8738111,Europe/Paris,,OIF, +OIF:SP:59:4016290,1,"Legendre",48.889417,2.322023,0,0,OIF:SA:8738111,Europe/Paris,,OIF, +OIF:SP:59:4016292,1,"Brochant - Cardinet",48.891861,2.318083,0,0,OIF:SA:59535,Europe/Paris,,OIF, +OIF:SP:59:4016293,1,"Brochant - Cardinet",48.891322,2.318669,0,0,OIF:SA:59535,Europe/Paris,,OIF, +OIF:SP:59:4016294,1,"Boulay",48.89284,2.316447,0,0,OIF:SA:8711127,Europe/Paris,,OIF, +OIF:SP:59:4016295,1,"Boulay",48.892948,2.315779,0,0,OIF:SA:8711127,Europe/Paris,,OIF, +OIF:SP:59:4016305,1,"République - François Mitterrand",48.902528,2.313553,0,0,OIF:SA:59:4016305,Europe/Paris,,OIF, +OIF:SP:59:4016306,1,"Général Leclerc - Villeneuve-Hopital Beaujon",48.90587,2.30983,0,0,OIF:SA:59:4016306,Europe/Paris,,OIF, +OIF:SP:59:4016307,1,"Général Leclerc - Villeneuve-Hopital Beaujon",48.905124,2.310376,0,0,OIF:SA:59:4016306,Europe/Paris,,OIF, +OIF:SP:59:4016308,1,"Hôpital Beaujon",48.908862,2.307442,0,0,OIF:SA:59:4016021,Europe/Paris,,OIF, +OIF:SP:59:4016309,1,"Hôpital Beaujon",48.908269,2.307579,0,0,OIF:SA:59:4016021,Europe/Paris,,OIF, +OIF:SP:59:4016310,1,"Clichy - Berges de Seine",48.91119,2.308968,0,0,OIF:SA:59:4016033,Europe/Paris,,OIF, +OIF:SP:59:4016312,1,"Claude Debussy",48.909932,2.309623,0,0,OIF:SA:59:3749970,Europe/Paris,,OIF, +OIF:SP:59:4016313,1,"Ganneron",48.885903,2.326153,0,0,OIF:SA:59533,Europe/Paris,,OIF, +OIF:SP:59:4016316,1,"La Bruyère",48.879747,2.332463,0,0,OIF:SA:59:4016316,Europe/Paris,,OIF, +OIF:SP:59:4016322,1,"Louvre - Etienne Marcel",48.864558,2.342545,0,0,OIF:SA:59:3747878,Europe/Paris,,OIF, +OIF:SP:59:4016325,1,"Châtelet",48.858195,2.347448,0,0,OIF:SA:59566,Europe/Paris,,OIF, +OIF:SP:59:4016338,1,"Haussmann - Mogador",48.874049,2.331374,0,0,OIF:SA:59:4016338,Europe/Paris,,OIF, +OIF:SP:59:4016339,1,"Trinité",48.875847,2.331251,0,0,OIF:SA:59600,Europe/Paris,,OIF, +OIF:SP:59:4016341,1,"Place de Clichy",48.882928,2.327871,0,0,OIF:SA:59421,Europe/Paris,,OIF, +OIF:SP:59:4016343,1,"La Fourche",48.888105,2.325948,0,0,OIF:SA:59533,Europe/Paris,,OIF, +OIF:SP:59:4016344,1,"Davy",48.89019,2.326643,0,0,OIF:SA:59:3750015,Europe/Paris,,OIF, +OIF:SP:59:4016345,1,"Guy Moquet",48.89276,2.327515,0,0,OIF:SA:59608,Europe/Paris,,OIF, +OIF:SP:59:4016346,1,"Navier",48.896086,2.328618,0,0,OIF:SA:59:4016346,Europe/Paris,,OIF, +OIF:SP:59:4016348,1,"Porte de Saint-Ouen",48.899231,2.329681,0,0,OIF:SA:59526,Europe/Paris,,OIF, +OIF:SP:59:4016349,1,"Porte de Saint-Ouen",48.899177,2.32934,0,0,OIF:SA:59526,Europe/Paris,,OIF, +OIF:SP:59:4016351,1,"Navier",48.895286,2.328059,0,0,OIF:SA:59:4016346,Europe/Paris,,OIF, +OIF:SP:59:4016352,1,"Guy Moquet",48.892733,2.327215,0,0,OIF:SA:59608,Europe/Paris,,OIF, +OIF:SP:59:4016353,1,"Davy",48.890352,2.326384,0,0,OIF:SA:59:3750015,Europe/Paris,,OIF, +OIF:SP:59:4016354,1,"La Fourche",48.887907,2.32558,0,0,OIF:SA:59533,Europe/Paris,,OIF, +OIF:SP:59:4016536,1,"Porte de Clignancourt",48.89862,2.344007,0,0,OIF:SA:59258,Europe/Paris,,OIF, +OIF:SP:59:4016538,1,"Camille Flammarion",48.897955,2.339577,0,0,OIF:SA:59:4016538,Europe/Paris,,OIF, +OIF:SP:59:4016539,1,"Camille Flammarion",48.897731,2.338855,0,0,OIF:SA:59:4016538,Europe/Paris,,OIF, +OIF:SP:59:4016542,1,"Gérard de Nerval",48.900741,2.335488,0,0,OIF:SA:59:4016542,Europe/Paris,,OIF, +OIF:SP:59:4016543,1,"Gérard de Nerval",48.900723,2.335215,0,0,OIF:SA:59:4016542,Europe/Paris,,OIF, +OIF:SP:59:4016544,1,"Kléber",48.902925,2.334165,0,0,OIF:SA:59:4016544,Europe/Paris,,OIF, +OIF:SP:59:4016545,1,"Kléber",48.903123,2.333865,0,0,OIF:SA:59:4016544,Europe/Paris,,OIF, +OIF:SP:59:4016546,1,"Garibaldi",48.906241,2.332188,0,0,OIF:SA:59543,Europe/Paris,,OIF, +OIF:SP:59:4016547,1,"Garibaldi",48.906053,2.332147,0,0,OIF:SA:59543,Europe/Paris,,OIF, +OIF:SP:59:4016549,1,"Ernest Renan",48.908012,2.332379,0,0,OIF:SA:59543,Europe/Paris,,OIF, +OIF:SP:59:4016550,1,"Mairie de Saint-Ouen - Métro",48.911688,2.334178,0,0,OIF:SA:59545,Europe/Paris,,OIF, +OIF:SP:59:4016556,1,"Boulevard Marcel Paul",48.919883,2.327141,0,0,OIF:SA:59:4016556,Europe/Paris,,OIF, +OIF:SP:59:4016557,1,"Boulevard Marcel Paul",48.919371,2.327591,0,0,OIF:SA:59:4016556,Europe/Paris,,OIF, +OIF:SP:59:4016567,1,"Boulevard Gallieni-Ecoles",48.932573,2.332581,0,0,OIF:SA:59:4016567,Europe/Paris,,OIF, +OIF:SP:59:4016568,1,"Boulevard Gallieni-Ecoles",48.932358,2.33235,0,0,OIF:SA:59:4016567,Europe/Paris,,OIF, +OIF:SP:59:4016569,1,"Mairie de Villeneuve-la-Garenne-Gallieni",48.934865,2.333004,0,0,OIF:SA:59689,Europe/Paris,,OIF, +OIF:SP:59:4016570,1,"Mairie de Villeneuve-la-Garenne-Gallieni",48.93509,2.332786,0,0,OIF:SA:59689,Europe/Paris,,OIF, +OIF:SP:59:4016571,1,"Mairie de Villeneuve-la-Garenne",48.936285,2.333059,0,0,OIF:SA:59689,Europe/Paris,,OIF, +OIF:SP:59:4016572,1,"Mairie de Villeneuve-la-Garenne",48.936051,2.333577,0,0,OIF:SA:59689,Europe/Paris,,OIF, +OIF:SP:59:4016573,1,"Mathilde Milliard",48.938388,2.332867,0,0,OIF:SA:59:4016573,Europe/Paris,,OIF, +OIF:SP:59:4016574,1,"Mathilde Milliard",48.938657,2.332499,0,0,OIF:SA:59:4016573,Europe/Paris,,OIF, +OIF:SP:59:4016575,1,"Jean Moulin",48.939736,2.332035,0,0,OIF:SA:59:4016575,Europe/Paris,,OIF, +OIF:SP:59:4016576,1,"Jean Moulin",48.940437,2.330657,0,0,OIF:SA:59:4016575,Europe/Paris,,OIF, +OIF:SP:59:4016577,1,"Place Paul Herbe",48.940553,2.327478,0,0,OIF:SA:59:4016577,Europe/Paris,,OIF, +OIF:SP:59:4016578,1,"Place Paul Herbe",48.940446,2.32726,0,0,OIF:SA:59:4016577,Europe/Paris,,OIF, +OIF:SP:59:4016579,1,"Piscine",48.941991,2.323986,0,0,OIF:SA:59:4016579,Europe/Paris,,OIF, +OIF:SP:59:4016580,1,"Piscine",48.941883,2.324927,0,0,OIF:SA:59:4016579,Europe/Paris,,OIF, +OIF:SP:59:4016582,1,"Parc Départemental",48.941236,2.321762,0,0,OIF:SA:59:4016582,Europe/Paris,,OIF, +OIF:SP:59:4016586,1,"Mairie de Saint-Ouen",48.912182,2.333524,0,0,OIF:SA:59545,Europe/Paris,,OIF, +OIF:SP:59:4016587,1,"Debain",48.902691,2.349788,0,0,OIF:SA:59:4016587,Europe/Paris,,OIF, +OIF:SP:59:4016589,1,"Place Debain",48.902781,2.348779,0,0,OIF:SA:59:4016589,Europe/Paris,,OIF, +OIF:SP:59:4016591,1,"Michelet - Docteur Bauer",48.905001,2.344744,0,0,OIF:SA:59:4016591,Europe/Paris,,OIF, +OIF:SP:59:4016597,1,"Jaurès - Dhalenne",48.913036,2.335324,0,0,OIF:SA:59:4016597,Europe/Paris,,OIF, +OIF:SP:59:4016598,1,"Jaurès - Dhalenne",48.913395,2.335351,0,0,OIF:SA:59:4016597,Europe/Paris,,OIF, +OIF:SP:59:4016600,1,"Clinique du Landy",48.916693,2.334246,0,0,OIF:SA:59:4016600,Europe/Paris,,OIF, +OIF:SP:59:4016601,1,"Saint-Denis Rousseau",48.918257,2.332978,0,0,OIF:SA:59:4016601,Europe/Paris,,OIF, +OIF:SP:59:4016604,1,"Stade Pablo Neruda",48.916972,2.336169,0,0,OIF:SA:59:4016604,Europe/Paris,,OIF, +OIF:SP:59:4016605,1,"Landy - Jaurès",48.915058,2.337396,0,0,OIF:SA:59:4016605,Europe/Paris,,OIF, +OIF:SP:59:4016607,1,"Jaurès - Dhalenne.",48.913485,2.33546,0,0,OIF:SA:59:4016597,Europe/Paris,,OIF, +OIF:SP:59:4016608,1,"Jaurès - Dhalenne.",48.912928,2.335215,0,0,OIF:SA:59:4016597,Europe/Paris,,OIF, +OIF:SP:59:4016612,1,"Garibaldi Ottino",48.90537,2.331466,0,0,OIF:SA:59543,Europe/Paris,,OIF, +OIF:SP:59:4016613,1,"Pasteur",48.901146,2.329789,0,0,OIF:SA:59:4016613,Europe/Paris,,OIF, +OIF:SP:59:4016614,1,"Payret",48.902188,2.326559,0,0,OIF:SA:59:4016614,Europe/Paris,,OIF, +OIF:SP:59:4016616,1,"Farcot",48.906277,2.331466,0,0,OIF:SA:59543,Europe/Paris,,OIF, +OIF:SP:59:4016618,1,"Bourdarias",48.901819,2.348084,0,0,OIF:SA:59:4016618,Europe/Paris,,OIF, +OIF:SP:59:4016736,1,"La Défense - Métro-RER-Tramway",48.890395,2.24097,0,0,OIF:SA:8738221,Europe/Paris,,OIF, +OIF:SP:59:4016742,1,"Pont de Neuilly - Métro",48.885267,2.258246,0,0,OIF:SA:59661,Europe/Paris,,OIF, +OIF:SP:59:4016743,1,"Pont de Neuilly - Métro",48.885555,2.258941,0,0,OIF:SA:59661,Europe/Paris,,OIF, +OIF:SP:59:4016750,1,"Église Saint-Pierre",48.883621,2.272026,0,0,OIF:SA:59:3749714,Europe/Paris,,OIF, +OIF:SP:59:4016752,1,"Lycée Pasteur",48.88533,2.274259,0,0,OIF:SA:59:4016752,Europe/Paris,,OIF, +OIF:SP:59:4016753,1,"Lycée Pasteur",48.885492,2.274095,0,0,OIF:SA:59:4016752,Europe/Paris,,OIF, +OIF:SP:59:4016754,1,"Inkermann - Bineau",48.888261,2.275822,0,0,OIF:SA:59:4016754,Europe/Paris,,OIF, +OIF:SP:59:4016755,1,"Inkermann - Bineau",48.887865,2.275359,0,0,OIF:SA:59:4016754,Europe/Paris,,OIF, +OIF:SP:59:4016757,1,"Voltaire - Villiers",48.890114,2.279841,0,0,OIF:SA:59:4016757,Europe/Paris,,OIF, +OIF:SP:59:4016758,1,"Anatole France",48.892039,2.284595,0,0,OIF:SA:59447,Europe/Paris,,OIF, +OIF:SP:59:4016759,1,"Anatole France",48.891204,2.285359,0,0,OIF:SA:59447,Europe/Paris,,OIF, +OIF:SP:59:4016760,1,"Mairie de Levallois",48.893245,2.287429,0,0,OIF:SA:59:4016760,Europe/Paris,,OIF, +OIF:SP:59:4016761,1,"Mairie de Levallois",48.892364,2.288016,0,0,OIF:SA:59:4016760,Europe/Paris,,OIF, +OIF:SP:59:4016762,1,"Aristide Briand",48.893821,2.289855,0,0,OIF:SA:59:3765177,Europe/Paris,,OIF, +OIF:SP:59:4016765,1,"Trezel",48.894443,2.295879,0,0,OIF:SA:59:4016765,Europe/Paris,,OIF, +OIF:SP:59:4016766,1,"Trezel",48.895414,2.295046,0,0,OIF:SA:59:4016765,Europe/Paris,,OIF, +OIF:SP:59:4016767,1,"Jean Jaurès - Victor Hugo",48.895792,2.296777,0,0,OIF:SA:59:4016767,Europe/Paris,,OIF, +OIF:SP:59:4016768,1,"Jean Jaurès - Victor Hugo",48.89643,2.295891,0,0,OIF:SA:59:4016767,Europe/Paris,,OIF, +OIF:SP:59:4016770,1,"Collange",48.898936,2.29364,0,0,OIF:SA:59:4016770,Europe/Paris,,OIF, +OIF:SP:59:4016771,1,"Rue Petit",48.901408,2.294305,0,0,OIF:SA:59:4016125,Europe/Paris,,OIF, +OIF:SP:59:4016773,1,"Fournier",48.904501,2.299156,0,0,OIF:SA:59:4016115,Europe/Paris,,OIF, +OIF:SP:59:4016775,1,"Rue du Port",48.905597,2.298037,0,0,OIF:SA:59:4016128,Europe/Paris,,OIF, +OIF:SP:59:4016786,1,"Georges Boisseau",48.903616,2.317097,0,0,OIF:SA:59:3749961,Europe/Paris,,OIF, +OIF:SP:59:4016787,1,"Saint-Ouen RER",48.90482,2.320491,0,0,OIF:SA:8727124,Europe/Paris,,OIF, +OIF:SP:59:4016789,1,"Victor Hugo - Sanzillon",48.903859,2.31996,0,0,OIF:SA:8727124,Europe/Paris,,OIF, +OIF:SP:59:4016791,1,"Gabriel Péri",48.906345,2.303258,0,0,OIF:SA:59:4016108,Europe/Paris,,OIF, +OIF:SP:59:4016792,1,"Hôpital du Perpétuel Secours",48.891749,2.278149,0,0,OIF:SA:59:4016792,Europe/Paris,,OIF, +OIF:SP:59:4016794,1,"Hôpital Américain",48.892115,2.2744,0,0,OIF:SA:59:3813027,Europe/Paris,,OIF, +OIF:SP:59:4016798,1,"Gabriel Péri - Métro",48.916443,2.293898,0,0,OIF:SA:59613,Europe/Paris,,OIF, +OIF:SP:59:4016800,1,"Place Voltaire",48.912732,2.296628,0,0,OIF:SA:59:4015688,Europe/Paris,,OIF, +OIF:SP:59:4016801,1,"Marche de Gennevilliers",48.914567,2.300799,0,0,OIF:SA:59:4016801,Europe/Paris,,OIF, +OIF:SP:59:4016802,1,"Cité Jardins",48.915943,2.304111,0,0,OIF:SA:59:4016802,Europe/Paris,,OIF, +OIF:SP:59:4016803,1,"Gresillons-Felix Eboue",48.916869,2.306552,0,0,OIF:SA:8798250,Europe/Paris,,OIF, +OIF:SP:59:4016804,1,"Tour d'Asnières - Laurent Cély",48.917814,2.309033,0,0,OIF:SA:59:4016804,Europe/Paris,,OIF, +OIF:SP:59:4016805,1,"Pierre Curie",48.91874,2.311296,0,0,OIF:SA:59:4016805,Europe/Paris,,OIF, +OIF:SP:59:4016806,1,"Les Grésillons RER",48.919711,2.314118,0,0,OIF:SA:8727214,Europe/Paris,,OIF, +OIF:SP:59:4016807,1,"Cabœufs",48.920835,2.318086,0,0,OIF:SA:8727214,Europe/Paris,,OIF, +OIF:SP:59:4016809,1,"Quatre Chemins",48.923613,2.321931,0,0,OIF:SA:59:4016809,Europe/Paris,,OIF, +OIF:SP:59:4016810,1,"Quatre Chemins",48.9231,2.320881,0,0,OIF:SA:59:4016809,Europe/Paris,,OIF, +OIF:SP:59:4016812,1,"Lycée Petiet - C.Commercial",48.927127,2.330141,0,0,OIF:SA:59:4016812,Europe/Paris,,OIF, +OIF:SP:59:4016813,1,"Lycée Petiet - C.Commercial",48.927316,2.330086,0,0,OIF:SA:59:4016812,Europe/Paris,,OIF, +OIF:SP:59:4016814,1,"Maurice Ravel",48.930156,2.332186,0,0,OIF:SA:59:4016814,Europe/Paris,,OIF, +OIF:SP:59:4016815,1,"Maurice Ravel",48.930003,2.331927,0,0,OIF:SA:59:4016814,Europe/Paris,,OIF, +OIF:SP:59:4016816,1,"Pointet",48.932843,2.330099,0,0,OIF:SA:59:4016816,Europe/Paris,,OIF, +OIF:SP:59:4016817,1,"Pointet",48.932771,2.32984,0,0,OIF:SA:59:4016816,Europe/Paris,,OIF, +OIF:SP:59:4016818,1,"La Noue",48.934119,2.329239,0,0,OIF:SA:59691,Europe/Paris,,OIF, +OIF:SP:59:4016819,1,"La Noue",48.934128,2.328939,0,0,OIF:SA:59691,Europe/Paris,,OIF, +OIF:SP:59:4016820,1,"Gérard Philipe",48.937723,2.328448,0,0,OIF:SA:59:4016820,Europe/Paris,,OIF, +OIF:SP:59:4016821,1,"Stade de Villeneuve-la-Garenne",48.938603,2.328079,0,0,OIF:SA:59:4016821,Europe/Paris,,OIF, +OIF:SP:59:4016822,1,"Stade de Villeneuve-la-Garenne",48.938028,2.328188,0,0,OIF:SA:59:4016821,Europe/Paris,,OIF, +OIF:SP:59:4016823,1,"Place Paul Herbe",48.940275,2.327042,0,0,OIF:SA:59:4016577,Europe/Paris,,OIF, +OIF:SP:59:4016824,1,"Place Paul Herbe",48.94014,2.327329,0,0,OIF:SA:59:4016577,Europe/Paris,,OIF, +OIF:SP:59:4016825,1,"Saint-Exupéry",48.939933,2.325541,0,0,OIF:SA:59:4016825,Europe/Paris,,OIF, +OIF:SP:59:4016826,1,"Saint-Exupéry",48.939708,2.325037,0,0,OIF:SA:59:4016825,Europe/Paris,,OIF, +OIF:SP:59:4016832,1,"Mairie de Villeneuve-la-Garenne",48.935916,2.331544,0,0,OIF:SA:59689,Europe/Paris,,OIF, +OIF:SP:59:4016834,1,"Les Grésillons RER",48.920223,2.315059,0,0,OIF:SA:8727214,Europe/Paris,,OIF, +OIF:SP:59:4016835,1,"Pierre Curie",48.918875,2.311023,0,0,OIF:SA:59:4016835,Europe/Paris,,OIF, +OIF:SP:59:4016837,1,"Gresillons-Felix Eboue",48.917292,2.307151,0,0,OIF:SA:59:4016837,Europe/Paris,,OIF, +OIF:SP:59:4016838,1,"Cité Jardins",48.916042,2.303893,0,0,OIF:SA:59:4016838,Europe/Paris,,OIF, +OIF:SP:59:4016839,1,"Marche de Gennevilliers",48.91445,2.300185,0,0,OIF:SA:59:4016839,Europe/Paris,,OIF, +OIF:SP:59:4016840,1,"Place Voltaire",48.912948,2.296587,0,0,OIF:SA:59:4016840,Europe/Paris,,OIF, +OIF:SP:59:4016997,1,"Gare de Saint-Denis RER",48.934137,2.344489,0,0,OIF:SA:8727101,Europe/Paris,,OIF, +OIF:SP:59:4016998,1,"Gare de Saint-Denis RER",48.934658,2.343958,0,0,OIF:SA:8727101,Europe/Paris,,OIF, +OIF:SP:59:4016999,1,"Place Jean Poulmarch",48.933068,2.342048,0,0,OIF:SA:59:4016999,Europe/Paris,,OIF, +OIF:SP:59:4017000,1,"Place Jean Poulmarch",48.932726,2.342948,0,0,OIF:SA:59:4016999,Europe/Paris,,OIF, +OIF:SP:59:4017001,1,"Quai de Saint-Ouen",48.930147,2.340861,0,0,OIF:SA:59:4017001,Europe/Paris,,OIF, +OIF:SP:59:4017002,1,"Quai de Saint-Ouen",48.929392,2.342143,0,0,OIF:SA:59:4017001,Europe/Paris,,OIF, +OIF:SP:59:4017003,1,"Jules Genovesi",48.926058,2.341774,0,0,OIF:SA:59:4017003,Europe/Paris,,OIF, +OIF:SP:59:4017004,1,"Jules Genovesi",48.926444,2.341965,0,0,OIF:SA:59:4017003,Europe/Paris,,OIF, +OIF:SP:59:4017005,1,"Ampère",48.924593,2.342224,0,0,OIF:SA:59:4017005,Europe/Paris,,OIF, +OIF:SP:59:4017006,1,"Ampère",48.9248,2.342483,0,0,OIF:SA:59:4017005,Europe/Paris,,OIF, +OIF:SP:59:4017007,1,"Carrefour Pleyel",48.919452,2.342851,0,0,OIF:SA:59544,Europe/Paris,,OIF, +OIF:SP:59:4017013,1,"Mairie de Saint-Ouen",48.911301,2.332542,0,0,OIF:SA:59545,Europe/Paris,,OIF, +OIF:SP:59:4017014,1,"Les Bateliers",48.909549,2.329734,0,0,OIF:SA:59:4017014,Europe/Paris,,OIF, +OIF:SP:59:4017015,1,"Les Bateliers",48.909459,2.330006,0,0,OIF:SA:59:4017014,Europe/Paris,,OIF, +OIF:SP:59:4017016,1,"Capitaine Glarner",48.907913,2.327007,0,0,OIF:SA:59:4017016,Europe/Paris,,OIF, +OIF:SP:59:4017017,1,"Capitaine Glarner",48.907652,2.32713,0,0,OIF:SA:59:4017016,Europe/Paris,,OIF, +OIF:SP:59:4017018,1,"Saint-Ouen RER",48.905171,2.322359,0,0,OIF:SA:8727124,Europe/Paris,,OIF, +OIF:SP:59:4017019,1,"Saint-Ouen RER",48.905306,2.323341,0,0,OIF:SA:8727124,Europe/Paris,,OIF, +OIF:SP:59:4017023,1,"République - François Mitterrand",48.903795,2.312312,0,0,OIF:SA:59:4016305,Europe/Paris,,OIF, +OIF:SP:59:4017024,1,"République - François Mitterrand",48.903193,2.313894,0,0,OIF:SA:59:4016305,Europe/Paris,,OIF, +OIF:SP:59:4017030,1,"Chance - Milly",48.898373,2.302105,0,0,OIF:SA:59:4017030,Europe/Paris,,OIF, +OIF:SP:59:4017031,1,"Chance - Milly",48.898004,2.301696,0,0,OIF:SA:59:4017030,Europe/Paris,,OIF, +OIF:SP:59:4017042,1,"Voltaire - Villiers",48.889997,2.279991,0,0,OIF:SA:59:4016757,Europe/Paris,,OIF, +OIF:SP:59:4017043,1,"Voltaire - Villiers",48.890312,2.279963,0,0,OIF:SA:59:4016757,Europe/Paris,,OIF, +OIF:SP:59:4017047,1,"Mairie de Clichy - Métro",48.903703,2.306437,0,0,OIF:SA:59583,Europe/Paris,,OIF, +OIF:SP:59:4017048,1,"Victor Hugo - Sanzillon",48.904075,2.321364,0,0,OIF:SA:8727124,Europe/Paris,,OIF, +OIF:SP:59:4017050,1,"Landy-Jaures",48.915498,2.338337,0,0,OIF:SA:59:4017050,Europe/Paris,,OIF, +OIF:SP:59:4017054,1,"Moulin de Cage",48.929074,2.308795,0,0,OIF:SA:59699,Europe/Paris,,OIF, +OIF:SP:59:4017055,1,"Moulin de Cage",48.929506,2.309367,0,0,OIF:SA:59699,Europe/Paris,,OIF, +OIF:SP:59:4017056,1,"Fosse Blanc",48.924751,2.307897,0,0,OIF:SA:59:4017056,Europe/Paris,,OIF, +OIF:SP:59:4017057,1,"Fosse Blanc",48.925677,2.307774,0,0,OIF:SA:59:4017056,Europe/Paris,,OIF, +OIF:SP:59:4017058,1,"Olympe de Couges",48.922012,2.31454,0,0,OIF:SA:59:4017058,Europe/Paris,,OIF, +OIF:SP:59:4017059,1,"Cabœufs",48.920781,2.317295,0,0,OIF:SA:8727214,Europe/Paris,,OIF, +OIF:SP:59:4017061,1,"Louis Armand",48.91643,2.310929,0,0,OIF:SA:59:4017061,Europe/Paris,,OIF, +OIF:SP:59:4017062,1,"Louis Armand",48.916169,2.310452,0,0,OIF:SA:59:4017061,Europe/Paris,,OIF, +OIF:SP:59:4017063,1,"River Plaza",48.914119,2.306117,0,0,OIF:SA:59:4017063,Europe/Paris,,OIF, +OIF:SP:59:4017064,1,"River Plaza",48.913832,2.306608,0,0,OIF:SA:59:4017063,Europe/Paris,,OIF, +OIF:SP:59:4017065,1,"Gabriel Péri - Métro",48.916291,2.294157,0,0,OIF:SA:59613,Europe/Paris,,OIF, +OIF:SP:59:4017068,1,"Olympe de Gouges",48.922677,2.313162,0,0,OIF:SA:59:4017058,Europe/Paris,,OIF, +OIF:SP:59:4022883,1,"Musée d'Orsay",48.860774,2.323979,0,0,OIF:SA:8754730,Europe/Paris,,OIF, +OIF:SP:59:4022892,1,"Rond-Point des Champs-Élysées",48.869463,2.308991,0,0,OIF:SA:59232,Europe/Paris,,OIF, +OIF:SP:59:4022893,1,"Rond-Point des Champs-Élysées",48.869247,2.308882,0,0,OIF:SA:59232,Europe/Paris,,OIF, +OIF:SP:59:4022894,1,"La Boétie - Champs-Élysées",48.870477,2.305734,0,0,OIF:SA:59:3740522,Europe/Paris,,OIF, +OIF:SP:59:4022896,1,"George V",48.872192,2.300324,0,0,OIF:SA:59234,Europe/Paris,,OIF, +OIF:SP:59:4022897,1,"George V",48.871591,2.301455,0,0,OIF:SA:59234,Europe/Paris,,OIF, +OIF:SP:59:4022898,1,"Charles de Gaulle - Etoile - Champs-Élysées",48.873396,2.296631,0,0,OIF:SA:8775800,Europe/Paris,,OIF, +OIF:SP:59:4022899,1,"Charles de Gaulle - Etoile - Champs-Élysées",48.873144,2.296672,0,0,OIF:SA:8775800,Europe/Paris,,OIF, +OIF:SP:59:4022900,1,"Charles de Gaulle - Etoile - Grande Armée",48.874311,2.293701,0,0,OIF:SA:8775800,Europe/Paris,,OIF, +OIF:SP:59:4022901,1,"Argentine",48.875864,2.288849,0,0,OIF:SA:59237,Europe/Paris,,OIF, +OIF:SP:59:4022904,1,"Marche de Neuilly-sur-Seine",48.8801,2.276159,0,0,OIF:SA:59:4022904,Europe/Paris,,OIF, +OIF:SP:59:4022905,1,"Marche de Neuilly-sur-Seine",48.879938,2.274906,0,0,OIF:SA:59:4022904,Europe/Paris,,OIF, +OIF:SP:59:4022906,1,"Les Sablons",48.881321,2.272328,0,0,OIF:SA:59250,Europe/Paris,,OIF, +OIF:SP:59:4022907,1,"Les Sablons",48.881051,2.271579,0,0,OIF:SA:59250,Europe/Paris,,OIF, +OIF:SP:59:4022908,1,"Rue de L'Hôtel de Ville",48.882918,2.267325,0,0,OIF:SA:59:4022908,Europe/Paris,,OIF, +OIF:SP:59:4022909,1,"Rue de L'Hôtel de Ville",48.882136,2.268198,0,0,OIF:SA:59:4022908,Europe/Paris,,OIF, +OIF:SP:59:4022910,1,"Les Graviers",48.883474,2.26558,0,0,OIF:SA:59:4022910,Europe/Paris,,OIF, +OIF:SP:59:4022911,1,"Les Graviers",48.882997,2.265472,0,0,OIF:SA:59:4022910,Europe/Paris,,OIF, +OIF:SP:59:4022919,1,"La Défense - Métro-RER-Tramway.",48.89122,2.238556,0,0,OIF:SA:8738221,Europe/Paris,,OIF, +OIF:SP:59:4022920,1,"La Défense - Métro-RER-Tramway.",48.892074,2.239045,0,0,OIF:SA:8738221,Europe/Paris,,OIF, +OIF:SP:59:4022921,1,"Caron",48.894968,2.239299,0,0,OIF:SA:59708,Europe/Paris,,OIF, +OIF:SP:59:4022922,1,"Caron",48.8954,2.240252,0,0,OIF:SA:59708,Europe/Paris,,OIF, +OIF:SP:59:4022924,1,"Léonard de Vinci",48.897088,2.237686,0,0,OIF:SA:59:4022924,Europe/Paris,,OIF, +OIF:SP:59:4022925,1,"Léonard de Vinci",48.896908,2.237605,0,0,OIF:SA:59:4022924,Europe/Paris,,OIF, +OIF:SP:59:4022926,1,"Rue des Étudiants",48.897273,2.234333,0,0,OIF:SA:59:4022926,Europe/Paris,,OIF, +OIF:SP:59:4022927,1,"Rue des Étudiants",48.897282,2.234156,0,0,OIF:SA:59:4022926,Europe/Paris,,OIF, +OIF:SP:59:4022928,1,"Puvis de Chavannes",48.898865,2.235066,0,0,OIF:SA:59:4022928,Europe/Paris,,OIF, +OIF:SP:59:4022929,1,"Puvis de Chavannes",48.899432,2.236878,0,0,OIF:SA:59:4022928,Europe/Paris,,OIF, +OIF:SP:59:4022930,1,"Les Fauvelles",48.901744,2.238809,0,0,OIF:SA:59710,Europe/Paris,,OIF, +OIF:SP:59:4022933,1,"La Garenne-Colombes - Charlebourg",48.906759,2.239604,0,0,OIF:SA:59712,Europe/Paris,,OIF, +OIF:SP:59:4022935,1,"Les Fauvelles",48.901789,2.238645,0,0,OIF:SA:59:4022935,Europe/Paris,,OIF, +OIF:SP:59:4022936,1,"Faubourg de l'Arche",48.896775,2.240018,0,0,OIF:SA:59708,Europe/Paris,,OIF, +OIF:SP:59:4022943,1,"Porte Maillot",48.877093,2.284161,0,0,OIF:SA:8738102,Europe/Paris,,OIF, +OIF:SP:59:4022944,1,"Argentine",48.875541,2.289149,0,0,OIF:SA:59237,Europe/Paris,,OIF, +OIF:SP:59:4022945,1,"Charles de Gaulle - Etoile - Grande Armée",48.874149,2.29351,0,0,OIF:SA:8775800,Europe/Paris,,OIF, +OIF:SP:59:4022947,1,"Invalides",48.861474,2.314498,0,0,OIF:SA:8739303,Europe/Paris,,OIF, +OIF:SP:59:4022949,1,"Invalides.",48.862939,2.314157,0,0,OIF:SA:8739303,Europe/Paris,,OIF, +OIF:SP:59:4022950,1,"Invalides.",48.86275,2.314307,0,0,OIF:SA:8739303,Europe/Paris,,OIF, +OIF:SP:59:4022973,1,"Pereire - le Chatelier",48.885214,2.295981,0,0,OIF:SA:59219,Europe/Paris,,OIF, +OIF:SP:59:4022974,1,"Porte de Champerret",48.885653,2.292601,0,0,OIF:SA:59436,Europe/Paris,,OIF, +OIF:SP:59:4022975,1,"Porte de Champerret",48.885401,2.292779,0,0,OIF:SA:59436,Europe/Paris,,OIF, +OIF:SP:59:4022976,1,"L'Yser et la Somme",48.88602,2.289616,0,0,OIF:SA:59:4022976,Europe/Paris,,OIF, +OIF:SP:59:4022977,1,"L'Yser et la Somme",48.885822,2.289658,0,0,OIF:SA:59:4022976,Europe/Paris,,OIF, +OIF:SP:59:4022978,1,"Villiers - Bineau",48.886988,2.283197,0,0,OIF:SA:59:4022978,Europe/Paris,,OIF, +OIF:SP:59:4022979,1,"Villiers - Bineau",48.886619,2.282897,0,0,OIF:SA:59:4022978,Europe/Paris,,OIF, +OIF:SP:59:4022980,1,"Louis Rouquier",48.888614,2.281437,0,0,OIF:SA:59:4022980,Europe/Paris,,OIF, +OIF:SP:59:4022983,1,"Place de la Libération",48.893213,2.276062,0,0,OIF:SA:59:4022983,Europe/Paris,,OIF, +OIF:SP:59:4022984,1,"Place de la Libération",48.893015,2.276117,0,0,OIF:SA:59:4022983,Europe/Paris,,OIF, +OIF:SP:59:4022985,1,"Hôpital Américain",48.893212,2.273731,0,0,OIF:SA:59:3813027,Europe/Paris,,OIF, +OIF:SP:59:4022986,1,"Hôpital Américain",48.893032,2.273609,0,0,OIF:SA:59:3813027,Europe/Paris,,OIF, +OIF:SP:59:4022987,1,"Villiers",48.896015,2.272978,0,0,OIF:SA:59:4022987,Europe/Paris,,OIF, +OIF:SP:59:4022988,1,"Villiers",48.89588,2.272665,0,0,OIF:SA:59:4022987,Europe/Paris,,OIF, +OIF:SP:59:4022989,1,"Pont de la Grande Jatte",48.893396,2.266684,0,0,OIF:SA:59:4022989,Europe/Paris,,OIF, +OIF:SP:59:4022990,1,"Pont de la Grande Jatte",48.893037,2.266971,0,0,OIF:SA:59:4022989,Europe/Paris,,OIF, +OIF:SP:59:4022991,1,"Collège André Maurois",48.889933,2.261346,0,0,OIF:SA:59:4022991,Europe/Paris,,OIF, +OIF:SP:59:4022992,1,"Château",48.887832,2.263871,0,0,OIF:SA:59:3813021,Europe/Paris,,OIF, +OIF:SP:59:4022993,1,"Château",48.888479,2.264306,0,0,OIF:SA:59:3813021,Europe/Paris,,OIF, +OIF:SP:59:4022994,1,"Pont de Neuilly",48.885187,2.260604,0,0,OIF:SA:59661,Europe/Paris,,OIF, +OIF:SP:59:4022995,1,"Pont de Neuilly",48.885277,2.260917,0,0,OIF:SA:59661,Europe/Paris,,OIF, +OIF:SP:59:4022996,1,"Maurice Barres",48.88134,2.258783,0,0,OIF:SA:59:4022996,Europe/Paris,,OIF, +OIF:SP:59:4022997,1,"Maurice Barres",48.881232,2.258961,0,0,OIF:SA:59:4022996,Europe/Paris,,OIF, +OIF:SP:59:4022999,1,"Rue du Bois de Boulogne",48.880978,2.255827,0,0,OIF:SA:59:3749724,Europe/Paris,,OIF, +OIF:SP:59:4023000,1,"Rue du Centre",48.8797,2.253199,0,0,OIF:SA:59:4023000,Europe/Paris,,OIF, +OIF:SP:59:4023001,1,"Rue du Centre",48.879233,2.253718,0,0,OIF:SA:59:4023000,Europe/Paris,,OIF, +OIF:SP:59:4023002,1,"Place de Bagatelle",48.876526,2.250466,0,0,OIF:SA:59:3749729,Europe/Paris,,OIF, +OIF:SP:59:4023012,1,"Henri IV",48.870512,2.227547,0,0,OIF:SA:17:1624,Europe/Paris,,OIF, +OIF:SP:59:4023013,1,"Pont de Suresnes",48.867961,2.228901,0,0,OIF:SA:59:4015784,Europe/Paris,,OIF, +OIF:SP:59:4023015,1,"Suresnes-de Gaulle",48.869044,2.224212,0,0,OIF:SA:59053,Europe/Paris,,OIF, +OIF:SP:59:4023017,1,"Mairie de Suresnes",48.871166,2.224998,0,0,OIF:SA:8738237,Europe/Paris,,OIF, +OIF:SP:59:4023019,1,"Berty Albrecht",48.875771,2.228816,0,0,OIF:SA:59049,Europe/Paris,,OIF, +OIF:SP:59:4023023,1,"Bagatelle",48.877287,2.247657,0,0,OIF:SA:59:3749729,Europe/Paris,,OIF, +OIF:SP:59:4023024,1,"Centre Hospitalier",48.890517,2.26155,0,0,OIF:SA:59:4023024,Europe/Paris,,OIF, +OIF:SP:59:4023025,1,"Centre des Impôts",48.894845,2.270458,0,0,OIF:SA:59:4023025,Europe/Paris,,OIF, +OIF:SP:59:4023026,1,"Hôpital du Perpétuel Secours",48.891578,2.277999,0,0,OIF:SA:59:4023026,Europe/Paris,,OIF, +OIF:SP:59:4023027,1,"Voltaire - Villiers",48.890024,2.279623,0,0,OIF:SA:59:4023027,Europe/Paris,,OIF, +OIF:SP:59:4023028,1,"Louis Rouquier",48.888066,2.281669,0,0,OIF:SA:59:4023028,Europe/Paris,,OIF, +OIF:SP:59:4023029,1,"Pereire - le Chatelier",48.88507,2.295382,0,0,OIF:SA:59219,Europe/Paris,,OIF, +OIF:SP:59:4023193,1,"Les Rosiers",48.88865,2.228762,0,0,OIF:SA:59:4023193,Europe/Paris,,OIF, +OIF:SP:59:4023194,1,"Les Rosiers",48.888551,2.228953,0,0,OIF:SA:59:4023193,Europe/Paris,,OIF, +OIF:SP:59:4023195,1,"Les Fontenelles",48.888716,2.222438,0,0,OIF:SA:59:3877785,Europe/Paris,,OIF, +OIF:SP:59:4023196,1,"Les Fontenelles",48.888519,2.223284,0,0,OIF:SA:59:3877785,Europe/Paris,,OIF, +OIF:SP:59:4023197,1,"Fernand Léger",48.889846,2.219724,0,0,OIF:SA:59:4023197,Europe/Paris,,OIF, +OIF:SP:59:4023198,1,"Fernand Léger",48.889621,2.219656,0,0,OIF:SA:59:4023197,Europe/Paris,,OIF, +OIF:SP:59:4023199,1,"Liberté",48.89145,2.215086,0,0,OIF:SA:59:4023199,Europe/Paris,,OIF, +OIF:SP:59:4023200,1,"Liberté",48.891261,2.215059,0,0,OIF:SA:59:4023199,Europe/Paris,,OIF, +OIF:SP:59:4023211,1,"Eugène Sue",48.876777,2.20144,0,0,OIF:SA:59:4023211,Europe/Paris,,OIF, +OIF:SP:59:4023212,1,"Eugène Sue",48.876579,2.201318,0,0,OIF:SA:59:4023211,Europe/Paris,,OIF, +OIF:SP:59:4023215,1,"Collège Passy - Buzenval",48.859498,2.182621,0,0,OIF:SA:59:4023215,Europe/Paris,,OIF, +OIF:SP:59:4023217,1,"Centre Madeleine Danielou",48.861093,2.172182,0,0,OIF:SA:16:19349,Europe/Paris,,OIF, +OIF:SP:59:4023264,1,"Porte de Champerret",48.885832,2.292424,0,0,OIF:SA:59436,Europe/Paris,,OIF, +OIF:SP:59:4023289,1,"Jean Bonal",48.908452,2.255552,0,0,OIF:SA:59:4023289,Europe/Paris,,OIF, +OIF:SP:59:4023290,1,"Jean Bonal",48.907912,2.255389,0,0,OIF:SA:59:4023289,Europe/Paris,,OIF, +OIF:SP:59:4023291,1,"Rue de l'Aigle",48.910617,2.254949,0,0,OIF:SA:59:4023291,Europe/Paris,,OIF, +OIF:SP:59:4023292,1,"Rue de l'Aigle",48.910689,2.254622,0,0,OIF:SA:59:4023291,Europe/Paris,,OIF, +OIF:SP:59:4023293,1,"Pont de la Puce",48.9128,2.2538,0,0,OIF:SA:59:4023293,Europe/Paris,,OIF, +OIF:SP:59:4023294,1,"Pont de la Puce",48.912827,2.253473,0,0,OIF:SA:59:4023293,Europe/Paris,,OIF, +OIF:SP:59:4023295,1,"Félix Faure",48.9151,2.252965,0,0,OIF:SA:59:4023295,Europe/Paris,,OIF, +OIF:SP:59:4023296,1,"Félix Faure",48.915172,2.252678,0,0,OIF:SA:59:4023295,Europe/Paris,,OIF, +OIF:SP:59:4023297,1,"Prague",48.918839,2.252781,0,0,OIF:SA:59:4023297,Europe/Paris,,OIF, +OIF:SP:59:4023298,1,"Prague",48.91874,2.252522,0,0,OIF:SA:59:4023297,Europe/Paris,,OIF, +OIF:SP:59:4023299,1,"Mairie de Colombes",48.922218,2.252789,0,0,OIF:SA:59:4023299,Europe/Paris,,OIF, +OIF:SP:59:4023300,1,"Église de Colombes",48.923196,2.250906,0,0,OIF:SA:59:4023300,Europe/Paris,,OIF, +OIF:SP:59:4023304,1,"Robert Schuman",48.928675,2.246737,0,0,OIF:SA:59:4023304,Europe/Paris,,OIF, +OIF:SP:59:4023305,1,"Robert Schuman",48.928468,2.246505,0,0,OIF:SA:59:4023304,Europe/Paris,,OIF, +OIF:SP:59:4023306,1,"Les Saules",48.929978,2.245971,0,0,OIF:SA:59:4023306,Europe/Paris,,OIF, +OIF:SP:59:4023307,1,"Les Saules",48.929942,2.245643,0,0,OIF:SA:59:4023306,Europe/Paris,,OIF, +OIF:SP:59:4023308,1,"Place du 11 Novembre",48.935894,2.23854,0,0,OIF:SA:59:4023308,Europe/Paris,,OIF, +OIF:SP:59:4023309,1,"Place du 11 Novembre",48.935544,2.238499,0,0,OIF:SA:59:4023308,Europe/Paris,,OIF, +OIF:SP:59:4023310,1,"Ferdinand Berthoud",48.937959,2.236435,0,0,OIF:SA:59:4023310,Europe/Paris,,OIF, +OIF:SP:59:4023311,1,"Ferdinand Berthoud",48.937456,2.236641,0,0,OIF:SA:59:4023310,Europe/Paris,,OIF, +OIF:SP:59:4023312,1,"Maurice Utrillo",48.939683,2.234767,0,0,OIF:SA:18:37,Europe/Paris,,OIF, +OIF:SP:59:4023313,1,"Maurice Utrillo",48.939989,2.234371,0,0,OIF:SA:18:37,Europe/Paris,,OIF, +OIF:SP:59:4023314,1,"Les Messiers",48.942272,2.23468,0,0,OIF:SA:59:4023314,Europe/Paris,,OIF, +OIF:SP:59:4023315,1,"Les Messiers",48.942343,2.234421,0,0,OIF:SA:59:4023314,Europe/Paris,,OIF, +OIF:SP:59:4023316,1,"Place François Rabelais",48.946647,2.233034,0,0,OIF:SA:18:163,Europe/Paris,,OIF, +OIF:SP:59:4023317,1,"Place François Rabelais",48.946575,2.232734,0,0,OIF:SA:18:163,Europe/Paris,,OIF, +OIF:SP:59:4023318,1,"Gare du Val d'Argenteuil",48.950769,2.230406,0,0,OIF:SA:8738179,Europe/Paris,,OIF, +OIF:SP:59:4023319,1,"Gare du Val d'Argenteuil",48.950194,2.230585,0,0,OIF:SA:8738179,Europe/Paris,,OIF, +OIF:SP:59:4023320,1,"Jean Lurçat",48.952367,2.22837,0,0,OIF:SA:18:800,Europe/Paris,,OIF, +OIF:SP:59:4023321,1,"Jean Lurçat",48.952304,2.228206,0,0,OIF:SA:18:800,Europe/Paris,,OIF, +OIF:SP:59:4023322,1,"Bérionne",48.953196,2.221286,0,0,OIF:SA:18:29,Europe/Paris,,OIF, +OIF:SP:59:4023323,1,"Bérionne",48.952415,2.221752,0,0,OIF:SA:18:29,Europe/Paris,,OIF, +OIF:SP:59:4023324,1,"Beethoven",48.954471,2.219755,0,0,OIF:SA:18:21,Europe/Paris,,OIF, +OIF:SP:59:4023325,1,"Beethoven",48.953977,2.220097,0,0,OIF:SA:18:21,Europe/Paris,,OIF, +OIF:SP:59:4023326,1,"Collège Claude Monet",48.955295,2.216874,0,0,OIF:SA:18:58,Europe/Paris,,OIF, +OIF:SP:59:4023367,1,"Pont de Neuilly - Métro",48.885743,2.258382,0,0,OIF:SA:59661,Europe/Paris,,OIF, +OIF:SP:59:4023368,1,"Pont de Neuilly - Métro",48.885159,2.258532,0,0,OIF:SA:59661,Europe/Paris,,OIF, +OIF:SP:59:4023369,1,"Pont de Neuilly - Rive Gauche",48.887151,2.253637,0,0,OIF:SA:59:3877769,Europe/Paris,,OIF, +OIF:SP:59:4023370,1,"Paul Doumer",48.890828,2.255471,0,0,OIF:SA:59:4023370,Europe/Paris,,OIF, +OIF:SP:59:4023371,1,"Paul Doumer",48.890271,2.255785,0,0,OIF:SA:59:4023370,Europe/Paris,,OIF, +OIF:SP:59:4023372,1,"Victor Hugo",48.892759,2.253328,0,0,OIF:SA:59:4015798,Europe/Paris,,OIF, +OIF:SP:59:4023373,1,"Victor Hugo",48.891986,2.253765,0,0,OIF:SA:59:4015798,Europe/Paris,,OIF, +OIF:SP:59:4023374,1,"Place Charras",48.895596,2.249589,0,0,OIF:SA:59:4023374,Europe/Paris,,OIF, +OIF:SP:59:4023375,1,"Place Charras",48.894761,2.250258,0,0,OIF:SA:59:4023374,Europe/Paris,,OIF, +OIF:SP:59:4023376,1,"Gare de Courbevoie",48.897644,2.247718,0,0,OIF:SA:8738220,Europe/Paris,,OIF, +OIF:SP:59:4023377,1,"Gare de Courbevoie",48.897652,2.247404,0,0,OIF:SA:8738220,Europe/Paris,,OIF, +OIF:SP:59:4023378,1,"Place du 8 Mai 1945",48.900464,2.245027,0,0,OIF:SA:59:4023378,Europe/Paris,,OIF, +OIF:SP:59:4023379,1,"Place du 8 Mai 1945",48.900912,2.24425,0,0,OIF:SA:59:4023378,Europe/Paris,,OIF, +OIF:SP:59:4023380,1,"Rhin et Danube",48.902996,2.242501,0,0,OIF:SA:59:4023380,Europe/Paris,,OIF, +OIF:SP:59:4023381,1,"Rhin et Danube",48.902915,2.242324,0,0,OIF:SA:59:4023380,Europe/Paris,,OIF, +OIF:SP:59:4023382,1,"Nordmann",48.905007,2.239634,0,0,OIF:SA:59:4023382,Europe/Paris,,OIF, +OIF:SP:59:4023383,1,"Nordmann",48.904773,2.239662,0,0,OIF:SA:59:4023382,Europe/Paris,,OIF, +OIF:SP:59:4023386,1,"Gare de la Garenne-Colombes",48.909707,2.23938,0,0,OIF:SA:59714,Europe/Paris,,OIF, +OIF:SP:59:4023388,1,"Rue du Commerce",48.910572,2.242037,0,0,OIF:SA:59:4023388,Europe/Paris,,OIF, +OIF:SP:59:4023389,1,"Rue du Commerce",48.91315,2.240219,0,0,OIF:SA:59:4023388,Europe/Paris,,OIF, +OIF:SP:59:4023390,1,"Rue de l'Industrie",48.914232,2.245862,0,0,OIF:SA:59:4023390,Europe/Paris,,OIF, +OIF:SP:59:4023391,1,"Ostyn",48.918117,2.248992,0,0,OIF:SA:59:4023391,Europe/Paris,,OIF, +OIF:SP:59:4023393,1,"Jacques Eleonor Ferme",48.921209,2.2499,0,0,OIF:SA:59:4023393,Europe/Paris,,OIF, +OIF:SP:59:4023406,1,"Gros Grès",48.916441,2.242654,0,0,OIF:SA:59:4023406,Europe/Paris,,OIF, +OIF:SP:59:4023407,1,"Colbert",48.911196,2.23635,0,0,OIF:SA:59716,Europe/Paris,,OIF, +OIF:SP:59:4023493,1,"Yser",48.924401,2.202584,0,0,OIF:SA:59:4023493,Europe/Paris,,OIF, +OIF:SP:59:4023494,1,"Yser",48.924274,2.201534,0,0,OIF:SA:59:4023493,Europe/Paris,,OIF, +OIF:SP:59:4023495,1,"Paul Bert - Joseph Bara",48.92497,2.197346,0,0,OIF:SA:59:4023495,Europe/Paris,,OIF, +OIF:SP:59:4023496,1,"Paul Bert - Joseph Bara",48.924719,2.197496,0,0,OIF:SA:59:4023495,Europe/Paris,,OIF, +OIF:SP:59:4023497,1,"Les Blanches",48.926762,2.19269,0,0,OIF:SA:16:19517,Europe/Paris,,OIF, +OIF:SP:59:4023498,1,"Les Blanches",48.926573,2.192636,0,0,OIF:SA:16:19517,Europe/Paris,,OIF, +OIF:SP:59:4023499,1,"Edouard Branly",48.928797,2.188838,0,0,OIF:SA:59:4023499,Europe/Paris,,OIF, +OIF:SP:59:4023500,1,"Edouard Branly",48.928886,2.188238,0,0,OIF:SA:59:4023499,Europe/Paris,,OIF, +OIF:SP:59:4023501,1,"Camille Pelletan",48.930922,2.184877,0,0,OIF:SA:16:19515,Europe/Paris,,OIF, +OIF:SP:59:4023502,1,"Camille Pelletan",48.93067,2.184891,0,0,OIF:SA:16:19515,Europe/Paris,,OIF, +OIF:SP:59:4023503,1,"Général Négrier",48.933782,2.179371,0,0,OIF:SA:59:4023503,Europe/Paris,,OIF, +OIF:SP:59:4023504,1,"Général Négrier",48.933593,2.179317,0,0,OIF:SA:59:4023503,Europe/Paris,,OIF, +OIF:SP:59:4023505,1,"Voltaire",48.938649,2.170271,0,0,OIF:SA:18:765,Europe/Paris,,OIF, +OIF:SP:59:4023506,1,"Voltaire",48.937555,2.171775,0,0,OIF:SA:18:765,Europe/Paris,,OIF, +OIF:SP:59:4023507,1,"Jean Mermoz",48.940173,2.167374,0,0,OIF:SA:59:4023507,Europe/Paris,,OIF, +OIF:SP:59:4023508,1,"Jean Mermoz",48.939993,2.167183,0,0,OIF:SA:59:4023507,Europe/Paris,,OIF, +OIF:SP:59:4023509,1,"Stalingrad",48.942647,2.162686,0,0,OIF:SA:59:4023509,Europe/Paris,,OIF, +OIF:SP:59:4023510,1,"Stalingrad",48.941203,2.164928,0,0,OIF:SA:59:4023509,Europe/Paris,,OIF, +OIF:SP:59:4023511,1,"Château",48.945789,2.15453,0,0,OIF:SA:20:216,Europe/Paris,,OIF, +OIF:SP:59:4023512,1,"Château",48.945601,2.154872,0,0,OIF:SA:20:216,Europe/Paris,,OIF, +OIF:SP:59:4023513,1,"Rue du Mesnil",48.947353,2.148822,0,0,OIF:SA:59:4023513,Europe/Paris,,OIF, +OIF:SP:59:4023514,1,"Rue du Mesnil",48.946814,2.149438,0,0,OIF:SA:59:4023513,Europe/Paris,,OIF, +OIF:SP:59:4023516,1,"Gare de Maisons-Laffitte-RER",48.945727,2.143766,0,0,OIF:SA:8738642,Europe/Paris,,OIF, +OIF:SP:59:4023608,1,"Nanterre-Ville RER",48.89505,2.195627,0,0,OIF:SA:8775804,Europe/Paris,,OIF, +OIF:SP:59:4023609,1,"Jules Quentin",48.894967,2.193583,0,0,OIF:SA:8775804,Europe/Paris,,OIF, +OIF:SP:59:4023611,1,"Hoche",48.898947,2.200115,0,0,OIF:SA:59:4023611,Europe/Paris,,OIF, +OIF:SP:59:4023612,1,"Hoche",48.89881,2.198398,0,0,OIF:SA:59:4023611,Europe/Paris,,OIF, +OIF:SP:59:4023613,1,"Jean Baillet",48.903061,2.206457,0,0,OIF:SA:59:4023613,Europe/Paris,,OIF, +OIF:SP:59:4023614,1,"Jean Baillet",48.903436,2.204738,0,0,OIF:SA:59:4023613,Europe/Paris,,OIF, +OIF:SP:59:4023615,1,"Université Paris 10",48.905446,2.210104,0,0,OIF:SA:59:4023615,Europe/Paris,,OIF, +OIF:SP:59:4023616,1,"Université Paris 10",48.905877,2.209408,0,0,OIF:SA:59:4023615,Europe/Paris,,OIF, +OIF:SP:59:4023617,1,"Pont de Rouen",48.907634,2.213371,0,0,OIF:SA:59:4023617,Europe/Paris,,OIF, +OIF:SP:59:4023618,1,"Pont de Rouen",48.908604,2.213491,0,0,OIF:SA:59:4023617,Europe/Paris,,OIF, +OIF:SP:59:4023619,1,"Les Saules",48.909525,2.217511,0,0,OIF:SA:59:4023619,Europe/Paris,,OIF, +OIF:SP:59:4023620,1,"Les Saules",48.909416,2.216353,0,0,OIF:SA:59:4023619,Europe/Paris,,OIF, +OIF:SP:59:4023621,1,"Les Ormes",48.910489,2.219854,0,0,OIF:SA:59:4023621,Europe/Paris,,OIF, +OIF:SP:59:4023622,1,"Les Ormes",48.910318,2.218982,0,0,OIF:SA:59:4023621,Europe/Paris,,OIF, +OIF:SP:59:4023623,1,"Hôpital de Nanterre",48.91221,2.224009,0,0,OIF:SA:59:4023623,Europe/Paris,,OIF, +OIF:SP:59:4023624,1,"Hôpital de Nanterre",48.912281,2.223668,0,0,OIF:SA:59:4023623,Europe/Paris,,OIF, +OIF:SP:59:4023626,1,"Victor Basch",48.91438,2.22834,0,0,OIF:SA:59716,Europe/Paris,,OIF, +OIF:SP:59:4023627,1,"Colbert",48.915777,2.232824,0,0,OIF:SA:59716,Europe/Paris,,OIF, +OIF:SP:59:4023628,1,"Colbert",48.915641,2.231801,0,0,OIF:SA:59716,Europe/Paris,,OIF, +OIF:SP:59:4023630,1,"Écoles du Petit Colombes",48.917893,2.237797,0,0,OIF:SA:59:4023630,Europe/Paris,,OIF, +OIF:SP:59:4023632,1,"Égalité",48.919937,2.24247,0,0,OIF:SA:59:4023632,Europe/Paris,,OIF, +OIF:SP:59:4023634,1,"Cimetière de Colombes",48.922439,2.247389,0,0,OIF:SA:59:4023634,Europe/Paris,,OIF, +OIF:SP:59:4023635,1,"Église de Colombes",48.922954,2.251629,0,0,OIF:SA:59:4023300,Europe/Paris,,OIF, +OIF:SP:59:4023640,1,"Rhin et Danube",48.923245,2.256497,0,0,OIF:SA:8738108,Europe/Paris,,OIF, +OIF:SP:59:4023643,1,"Beauséjour",48.92422,2.263915,0,0,OIF:SA:59:4023643,Europe/Paris,,OIF, +OIF:SP:59:4023644,1,"Beauséjour",48.924553,2.264651,0,0,OIF:SA:59:4023643,Europe/Paris,,OIF, +OIF:SP:59:4023645,1,"Gramme",48.925221,2.268673,0,0,OIF:SA:59:4023645,Europe/Paris,,OIF, +OIF:SP:59:4023646,1,"Gramme",48.925013,2.267241,0,0,OIF:SA:59:4023645,Europe/Paris,,OIF, +OIF:SP:59:4023647,1,"Quatre Routes",48.927578,2.272625,0,0,OIF:SA:59:4023647,Europe/Paris,,OIF, +OIF:SP:59:4023649,1,"Freycinet",48.928038,2.276594,0,0,OIF:SA:59:4023649,Europe/Paris,,OIF, +OIF:SP:59:4023652,1,"Les Courtilles",48.929955,2.283629,0,0,OIF:SA:59582,Europe/Paris,,OIF, +OIF:SP:59:4023653,1,"Les Courtilles",48.929882,2.280711,0,0,OIF:SA:59582,Europe/Paris,,OIF, +OIF:SP:59:4023654,1,"Quatre Routes - la Redoute",48.927291,2.274153,0,0,OIF:SA:59:4023654,Europe/Paris,,OIF, +OIF:SP:59:4023655,1,"Les Grands Pres",48.909513,2.214376,0,0,OIF:SA:59:4023655,Europe/Paris,,OIF, +OIF:SP:59:4023656,1,"Faidherbe",48.897066,2.197775,0,0,OIF:SA:8775804,Europe/Paris,,OIF, +OIF:SP:59:4023676,1,"Gare d'Argenteuil",48.946252,2.25773,0,0,OIF:SA:8738184,Europe/Paris,,OIF, +OIF:SP:59:4023682,1,"Belin",48.945598,2.246926,0,0,OIF:SA:59:4023682,Europe/Paris,,OIF, +OIF:SP:59:4023683,1,"Belin",48.945895,2.247703,0,0,OIF:SA:59:4023682,Europe/Paris,,OIF, +OIF:SP:59:4023684,1,"Calais",48.944041,2.244636,0,0,OIF:SA:18:39,Europe/Paris,,OIF, +OIF:SP:59:4023685,1,"Calais",48.944437,2.245522,0,0,OIF:SA:18:39,Europe/Paris,,OIF, +OIF:SP:59:4023686,1,"Clément Ader",48.942378,2.243289,0,0,OIF:SA:18:14,Europe/Paris,,OIF, +OIF:SP:59:4023689,1,"Charles de Gaulle - Henri Barbusse",48.940438,2.245257,0,0,OIF:SA:59:4023689,Europe/Paris,,OIF, +OIF:SP:59:4023690,1,"Jean Moulin - Henri Barbusse",48.938729,2.242886,0,0,OIF:SA:59:4023690,Europe/Paris,,OIF, +OIF:SP:59:4023692,1,"Place du 11 Novembre",48.935858,2.23768,0,0,OIF:SA:59:4023308,Europe/Paris,,OIF, +OIF:SP:59:4023693,1,"Place du 11 Novembre",48.936299,2.238743,0,0,OIF:SA:59:4023308,Europe/Paris,,OIF, +OIF:SP:59:4023694,1,"Avenue du Château",48.932977,2.232366,0,0,OIF:SA:59:4023694,Europe/Paris,,OIF, +OIF:SP:59:4023696,1,"Général Delambre",48.930916,2.228592,0,0,OIF:SA:18:19683,Europe/Paris,,OIF, +OIF:SP:59:4023697,1,"Victor Hugo",48.927568,2.223062,0,0,OIF:SA:18:239,Europe/Paris,,OIF, +OIF:SP:59:4023698,1,"Victor Hugo",48.927478,2.223157,0,0,OIF:SA:18:239,Europe/Paris,,OIF, +OIF:SP:59:4023700,1,"Jaurès - Branchard",48.924294,2.220205,0,0,OIF:SA:59:4023700,Europe/Paris,,OIF, +OIF:SP:59:4023705,1,"Place des Droits de l'Homme",48.931448,2.211909,0,0,OIF:SA:59:4023705,Europe/Paris,,OIF, +OIF:SP:59:4023706,1,"Place des Droits de l'Homme",48.930819,2.212266,0,0,OIF:SA:59:4023705,Europe/Paris,,OIF, +OIF:SP:59:4023710,1,"La Berthie",48.937895,2.206915,0,0,OIF:SA:18:1020,Europe/Paris,,OIF, +OIF:SP:59:4023712,1,"Condorcet",48.941647,2.20258,0,0,OIF:SA:18:668,Europe/Paris,,OIF, +OIF:SP:59:4023713,1,"Condorcet",48.941547,2.201994,0,0,OIF:SA:18:668,Europe/Paris,,OIF, +OIF:SP:59:4023714,1,"Romain Rolland",48.94233,2.202401,0,0,OIF:SA:18:803,Europe/Paris,,OIF, +OIF:SP:59:4023715,1,"Romain Rolland",48.942473,2.20236,0,0,OIF:SA:18:803,Europe/Paris,,OIF, +OIF:SP:59:4023717,1,"Berry",48.94608,2.204847,0,0,OIF:SA:18:647,Europe/Paris,,OIF, +OIF:SP:59:4023718,1,"Péguy",48.94548,2.198846,0,0,OIF:SA:59:4023718,Europe/Paris,,OIF, +OIF:SP:59:4023720,1,"Bourquelot",48.942459,2.197503,0,0,OIF:SA:59:4023720,Europe/Paris,,OIF, +OIF:SP:59:4023721,1,"Bourquelot",48.942522,2.197721,0,0,OIF:SA:59:4023720,Europe/Paris,,OIF, +OIF:SP:59:4023725,1,"Rue de Chatou",48.942864,2.190954,0,0,OIF:SA:18:658,Europe/Paris,,OIF, +OIF:SP:59:4023726,1,"Charles de Gaulle",48.944902,2.181643,0,0,OIF:SA:18:698,Europe/Paris,,OIF, +OIF:SP:59:4023728,1,"Picardie",48.945076,2.177945,0,0,OIF:SA:18:732,Europe/Paris,,OIF, +OIF:SP:59:4023729,1,"Picardie",48.944897,2.177905,0,0,OIF:SA:18:732,Europe/Paris,,OIF, +OIF:SP:59:4023730,1,"Église de Sartrouville",48.94578,2.173604,0,0,OIF:SA:18:680,Europe/Paris,,OIF, +OIF:SP:59:4023731,1,"Église de Sartrouville",48.94526,2.173947,0,0,OIF:SA:18:680,Europe/Paris,,OIF, +OIF:SP:59:4023741,1,"Poste",48.941117,2.161313,0,0,OIF:SA:18:740,Europe/Paris,,OIF, +OIF:SP:59:4023742,1,"Gare de Sartrouville-RER",48.938262,2.157149,0,0,OIF:SA:8738641,Europe/Paris,,OIF, +OIF:SP:59:4023743,1,"Gare de Sartrouville-RER",48.936807,2.158204,0,0,OIF:SA:8738641,Europe/Paris,,OIF, +OIF:SP:59:4023744,1,"Val Notre-Dame",48.941094,2.206661,0,0,OIF:SA:59:4023744,Europe/Paris,,OIF, +OIF:SP:59:4023745,1,"Général Delambre",48.930196,2.22753,0,0,OIF:SA:59:4023745,Europe/Paris,,OIF, +OIF:SP:59:4023748,1,"Labriere",48.945756,2.254307,0,0,OIF:SA:59:4023748,Europe/Paris,,OIF, +OIF:SP:59:4023750,1,"Borderel",48.942771,2.252633,0,0,OIF:SA:18:19687,Europe/Paris,,OIF, +OIF:SP:59:4023751,1,"Borderel",48.942735,2.252347,0,0,OIF:SA:18:19687,Europe/Paris,,OIF, +OIF:SP:59:4023759,1,"Clément Ader",48.942584,2.243438,0,0,OIF:SA:18:14,Europe/Paris,,OIF, +OIF:SP:59:4023760,1,"Charles de Gaulle - Henri Barbusse",48.940393,2.244916,0,0,OIF:SA:59:4023689,Europe/Paris,,OIF, +OIF:SP:59:4023763,1,"Jean Moulin - Henri Barbusse",48.938342,2.242396,0,0,OIF:SA:59:4023690,Europe/Paris,,OIF, +OIF:SP:59:4023767,1,"Avenue du Château",48.933328,2.233238,0,0,OIF:SA:59:4023694,Europe/Paris,,OIF, +OIF:SP:59:4023771,1,"Jaurès - Branchard",48.924374,2.220096,0,0,OIF:SA:59:4023700,Europe/Paris,,OIF, +OIF:SP:59:4023773,1,"Pont de Bezons",48.92324,2.217725,0,0,OIF:SA:59720,Europe/Paris,,OIF, +OIF:SP:59:4023774,1,"Pont de Bezons",48.923167,2.217384,0,0,OIF:SA:59720,Europe/Paris,,OIF, +OIF:SP:59:4023775,1,"La Grâce de Dieu",48.927632,2.215724,0,0,OIF:SA:59:4023775,Europe/Paris,,OIF, +OIF:SP:59:4023776,1,"La Grâce de Dieu",48.927479,2.215479,0,0,OIF:SA:59:4023775,Europe/Paris,,OIF, +OIF:SP:59:4023779,1,"Albert 1er",48.934752,2.208791,0,0,OIF:SA:18:19561,Europe/Paris,,OIF, +OIF:SP:59:4023780,1,"Albert 1er",48.933512,2.209667,0,0,OIF:SA:18:19561,Europe/Paris,,OIF, +OIF:SP:59:4023783,1,"Val Notre-Dame",48.941497,2.205009,0,0,OIF:SA:18:19563,Europe/Paris,,OIF, +OIF:SP:59:4023788,1,"Berry",48.946188,2.205038,0,0,OIF:SA:18:647,Europe/Paris,,OIF, +OIF:SP:59:4023791,1,"Péguy",48.945345,2.198942,0,0,OIF:SA:59:4023718,Europe/Paris,,OIF, +OIF:SP:59:4023795,1,"Clemenceau",48.942348,2.195157,0,0,OIF:SA:18:662,Europe/Paris,,OIF, +OIF:SP:59:4023799,1,"Charles de Gaulle",48.944533,2.181699,0,0,OIF:SA:18:698,Europe/Paris,,OIF, +OIF:SP:59:4023804,1,"Edouard Vaillant",48.942508,2.172619,0,0,OIF:SA:18:760,Europe/Paris,,OIF, +OIF:SP:59:4023805,1,"Edouard Vaillant",48.942167,2.172688,0,0,OIF:SA:18:760,Europe/Paris,,OIF, +OIF:SP:59:4023807,1,"Voltaire",48.938551,2.170899,0,0,OIF:SA:18:765,Europe/Paris,,OIF, +OIF:SP:59:4023810,1,"Stalingrad",48.941643,2.164586,0,0,OIF:SA:59:4023509,Europe/Paris,,OIF, +OIF:SP:59:4023812,1,"Poste",48.941251,2.161136,0,0,OIF:SA:18:740,Europe/Paris,,OIF, +OIF:SP:59:4023818,1,"Hôtel de Ville d'Argenteuil",48.946066,2.248971,0,0,OIF:SA:59:4023818,Europe/Paris,,OIF, +OIF:SP:59:4023823,1,"La Berthie",48.937841,2.207174,0,0,OIF:SA:18:1020,Europe/Paris,,OIF, +OIF:SP:59:4023830,1,"Clemenceau",48.942714,2.193301,0,0,OIF:SA:18:662,Europe/Paris,,OIF, +OIF:SP:59:4023831,1,"Rue de Chatou",48.943035,2.190885,0,0,OIF:SA:18:658,Europe/Paris,,OIF, +OIF:SP:59:4023966,1,"Mairie de Puteaux",48.884623,2.238664,0,0,OIF:SA:59:4023966,Europe/Paris,,OIF, +OIF:SP:59:4023975,1,"Liberté - Plaideurs",48.879679,2.217989,0,0,OIF:SA:59:4023975,Europe/Paris,,OIF, +OIF:SP:59:4023976,1,"Romain Rolland",48.879902,2.216312,0,0,OIF:SA:59:4023976,Europe/Paris,,OIF, +OIF:SP:59:4023977,1,"Romain Rolland",48.879839,2.215849,0,0,OIF:SA:59:4023976,Europe/Paris,,OIF, +OIF:SP:59:4023978,1,"Plaideurs - Vaillant-Couturier",48.878736,2.209447,0,0,OIF:SA:59:4023978,Europe/Paris,,OIF, +OIF:SP:59:4023979,1,"Plaideurs - Vaillant-Couturier",48.878628,2.209884,0,0,OIF:SA:59:4023978,Europe/Paris,,OIF, +OIF:SP:59:4023980,1,"Les Chailliers",48.878129,2.205211,0,0,OIF:SA:59:4023980,Europe/Paris,,OIF, +OIF:SP:59:4023981,1,"Les Chailliers",48.878084,2.205552,0,0,OIF:SA:59:4023980,Europe/Paris,,OIF, +OIF:SP:59:4023987,1,"Rue des Folies",48.875254,2.19094,0,0,OIF:SA:59:4023987,Europe/Paris,,OIF, +OIF:SP:59:4023988,1,"Rue des Folies",48.87494,2.190804,0,0,OIF:SA:59:4023987,Europe/Paris,,OIF, +OIF:SP:59:4023989,1,"Edmond Rostand",48.873034,2.190523,0,0,OIF:SA:59:4023989,Europe/Paris,,OIF, +OIF:SP:59:4023992,1,"Saint-Exupéry",48.872335,2.192555,0,0,OIF:SA:59:4023992,Europe/Paris,,OIF, +OIF:SP:59:4023999,1,"Victorien Sardou",48.865493,2.19737,0,0,OIF:SA:59:4023999,Europe/Paris,,OIF, +OIF:SP:59:4024000,1,"Victorien Sardou",48.865313,2.19752,0,0,OIF:SA:59:4023999,Europe/Paris,,OIF, +OIF:SP:59:4024001,1,"Les Mazurieres",48.863281,2.196708,0,0,OIF:SA:59:4024001,Europe/Paris,,OIF, +OIF:SP:59:4024002,1,"Les Mazurieres",48.862607,2.19656,0,0,OIF:SA:59:4024001,Europe/Paris,,OIF, +OIF:SP:59:4024003,1,"Fouilleuse",48.862569,2.195007,0,0,OIF:SA:59:4024003,Europe/Paris,,OIF, +OIF:SP:59:4024004,1,"Fouilleuse",48.862371,2.194422,0,0,OIF:SA:59:4024003,Europe/Paris,,OIF, +OIF:SP:59:4024005,1,"Carrey de Bellemare",48.8626,2.190689,0,0,OIF:SA:59:4024005,Europe/Paris,,OIF, +OIF:SP:59:4024006,1,"Carrey de Bellemare",48.862501,2.190853,0,0,OIF:SA:59:4024005,Europe/Paris,,OIF, +OIF:SP:59:4024008,1,"Dumouriez",48.861189,2.190611,0,0,OIF:SA:59:4024008,Europe/Paris,,OIF, +OIF:SP:59:4024009,1,"Henri Regnault",48.859228,2.189772,0,0,OIF:SA:59:4024009,Europe/Paris,,OIF, +OIF:SP:59:4024010,1,"Henri Regnault",48.859382,2.190167,0,0,OIF:SA:59:4024009,Europe/Paris,,OIF, +OIF:SP:59:4024011,1,"Otis Mygatt",48.861748,2.184834,0,0,OIF:SA:59:4024011,Europe/Paris,,OIF, +OIF:SP:59:4024012,1,"Otis Mygatt",48.861909,2.184153,0,0,OIF:SA:59:4024011,Europe/Paris,,OIF, +OIF:SP:59:4024013,1,"Lycée de Rueil",48.86459,2.179867,0,0,OIF:SA:59:4024013,Europe/Paris,,OIF, +OIF:SP:59:4024014,1,"Lycée de Rueil",48.864339,2.179963,0,0,OIF:SA:59:4024013,Europe/Paris,,OIF, +OIF:SP:59:4024017,1,"Félix Faure",48.882434,2.223256,0,0,OIF:SA:59:4024017,Europe/Paris,,OIF, +OIF:SP:59:4024084,1,"Général Leclerc",48.897243,2.195812,0,0,OIF:SA:59:4024084,Europe/Paris,,OIF, +OIF:SP:59:4024085,1,"Général Leclerc",48.897504,2.195866,0,0,OIF:SA:59:4024084,Europe/Paris,,OIF, +OIF:SP:59:4024086,1,"Nanterre - Ville RER - Faidherbe",48.896057,2.196183,0,0,OIF:SA:8775804,Europe/Paris,,OIF, +OIF:SP:59:4024088,1,"Jules Quentin",48.894893,2.192493,0,0,OIF:SA:8775804,Europe/Paris,,OIF, +OIF:SP:59:4024095,1,"Place de la Boule - Lénine",48.887451,2.199396,0,0,OIF:SA:59:4024095,Europe/Paris,,OIF, +OIF:SP:59:4024109,1,"La Défense - Métro-RER-Tramway",48.890466,2.240766,0,0,OIF:SA:8738221,Europe/Paris,,OIF, +OIF:SP:59:4024112,1,"Boieldieu",48.887588,2.237296,0,0,OIF:SA:59:4024112,Europe/Paris,,OIF, +OIF:SP:59:4024118,1,"Palissy",48.884417,2.228771,0,0,OIF:SA:59:4024118,Europe/Paris,,OIF, +OIF:SP:59:4024119,1,"Les Bergères",48.884819,2.226235,0,0,OIF:SA:59:4024119,Europe/Paris,,OIF, +OIF:SP:59:4024138,1,"Saint-Exupéry",48.871779,2.193456,0,0,OIF:SA:59:4023992,Europe/Paris,,OIF, +OIF:SP:59:4024144,1,"Avenue du Mont Valerien",48.867697,2.199366,0,0,OIF:SA:59:4024144,Europe/Paris,,OIF, +OIF:SP:59:4024145,1,"Avenue du Mont Valerien",48.867473,2.199966,0,0,OIF:SA:59:4024144,Europe/Paris,,OIF, +OIF:SP:59:4024154,1,"Dumouriez",48.860838,2.190449,0,0,OIF:SA:59:4024008,Europe/Paris,,OIF, +OIF:SP:59:4024168,1,"La Défense - Métro-RER-Tramway",48.890646,2.240097,0,0,OIF:SA:8738221,Europe/Paris,,OIF, +OIF:SP:59:4024185,1,"Suresnes de Gaulle",48.869611,2.224306,0,0,OIF:SA:59053,Europe/Paris,,OIF, +OIF:SP:59:4024186,1,"Mairie de Suresnes",48.870797,2.224998,0,0,OIF:SA:8738237,Europe/Paris,,OIF, +OIF:SP:59:4024189,1,"Pompidou",48.87617,2.232413,0,0,OIF:SA:59:4015788,Europe/Paris,,OIF, +OIF:SP:59:4024205,1,"De Pressensé",48.877564,2.233704,0,0,OIF:SA:59:4024205,Europe/Paris,,OIF, +OIF:SP:59:4024216,1,"Val d'Or",48.860073,2.213566,0,0,OIF:SA:59:4015781,Europe/Paris,,OIF, +OIF:SP:59:4024217,1,"Val d'Or",48.859832,2.215051,0,0,OIF:SA:59:4015781,Europe/Paris,,OIF, +OIF:SP:59:4024218,1,"Croix du Roy",48.861852,2.212649,0,0,OIF:SA:59:4024218,Europe/Paris,,OIF, +OIF:SP:59:4024219,1,"Croix du Roy",48.861689,2.212159,0,0,OIF:SA:59:4024218,Europe/Paris,,OIF, +OIF:SP:59:4024221,1,"Place Jean Jaurès",48.862756,2.209228,0,0,OIF:SA:59:4024221,Europe/Paris,,OIF, +OIF:SP:59:4024225,1,"Lieutenant-Colonel de Montbrison",48.867551,2.197732,0,0,OIF:SA:59:4024225,Europe/Paris,,OIF, +OIF:SP:59:4024226,1,"Lieutenant-Colonel de Montbrison",48.86713,2.198632,0,0,OIF:SA:59:4024225,Europe/Paris,,OIF, +OIF:SP:59:4024227,1,"Dunant",48.868174,2.192376,0,0,OIF:SA:59:4024227,Europe/Paris,,OIF, +OIF:SP:59:4024228,1,"Dunant",48.86787,2.193699,0,0,OIF:SA:59:4024227,Europe/Paris,,OIF, +OIF:SP:59:4024230,1,"Place Besche",48.868815,2.187143,0,0,OIF:SA:59:4024230,Europe/Paris,,OIF, +OIF:SP:59:4024243,1,"Rueil-Malmaison RER",48.887228,2.17214,0,0,OIF:SA:8775805,Europe/Paris,,OIF, +OIF:SP:59:4024244,1,"Rueil-Malmaison RER",48.887272,2.171881,0,0,OIF:SA:8775805,Europe/Paris,,OIF, +OIF:SP:59:4024249,1,"Henri IV",48.870018,2.227343,0,0,OIF:SA:17:1624,Europe/Paris,,OIF, +OIF:SP:59:4024250,1,"Pages",48.871486,2.230487,0,0,OIF:SA:17:1634,Europe/Paris,,OIF, +OIF:SP:59:4024251,1,"Commandant Rivière",48.873546,2.233235,0,0,OIF:SA:17:1635,Europe/Paris,,OIF, +OIF:SP:59:4024253,1,"De Pressensé",48.877528,2.234031,0,0,OIF:SA:59:4024253,Europe/Paris,,OIF, +OIF:SP:59:4024255,1,"Wallace - Eugène Eichenberger",48.88144,2.236708,0,0,OIF:SA:59:4024255,Europe/Paris,,OIF, +OIF:SP:59:4024259,1,"La Défense - Métro-RER-Tramway",48.890583,2.240288,0,0,OIF:SA:8738221,Europe/Paris,,OIF, +OIF:SP:59:4024260,1,"Boieldieu",48.886628,2.239478,0,0,OIF:SA:59:4024112,Europe/Paris,,OIF, +OIF:SP:59:4024265,1,"Pompidou",48.875675,2.231637,0,0,OIF:SA:17:1622,Europe/Paris,,OIF, +OIF:SP:59:4024266,1,"Jean Macé",48.872967,2.229108,0,0,OIF:SA:17:1623,Europe/Paris,,OIF, +OIF:SP:59:4024267,1,"D'Estienne d'Orves",48.872013,2.227884,0,0,OIF:SA:59:4024267,Europe/Paris,,OIF, +OIF:SP:59:4024268,1,"Mairie de Suresnes - Carnot",48.871561,2.225024,0,0,OIF:SA:59:4024268,Europe/Paris,,OIF, +OIF:SP:59:4024269,1,"Suresnes de Gaulle",48.869313,2.223816,0,0,OIF:SA:59053,Europe/Paris,,OIF, +OIF:SP:59:4024270,1,"Longchamp",48.868063,2.222075,0,0,OIF:SA:59053,Europe/Paris,,OIF, +OIF:SP:59:4024274,1,"Place Jean Jaurès",48.862873,2.209241,0,0,OIF:SA:59:4024221,Europe/Paris,,OIF, +OIF:SP:59:4024288,1,"Pont de Neuilly - Métro",48.885313,2.259772,0,0,OIF:SA:59661,Europe/Paris,,OIF, +OIF:SP:59:4024293,1,"Soljénitsyne",48.883328,2.248478,0,0,OIF:SA:59:3877772,Europe/Paris,,OIF, +OIF:SP:59:4024294,1,"Soljénitsyne",48.884119,2.249881,0,0,OIF:SA:59:3877772,Europe/Paris,,OIF, +OIF:SP:59:4024295,1,"Square Léon Blum",48.881825,2.246478,0,0,OIF:SA:59:4024295,Europe/Paris,,OIF, +OIF:SP:59:4024296,1,"Square Léon Blum",48.881861,2.246955,0,0,OIF:SA:59:4024295,Europe/Paris,,OIF, +OIF:SP:59:4024299,1,"Hôpital - Pont de Puteaux",48.878667,2.241932,0,0,OIF:SA:59:4024299,Europe/Paris,,OIF, +OIF:SP:59:4024301,1,"Wallace - Jean Jaurès",48.880408,2.238441,0,0,OIF:SA:59:4024301,Europe/Paris,,OIF, +OIF:SP:59:4024303,1,"Gare de Puteaux",48.882283,2.234935,0,0,OIF:SA:8738238,Europe/Paris,,OIF, +OIF:SP:59:4024304,1,"Victor Hugo",48.880033,2.231219,0,0,OIF:SA:59:4024304,Europe/Paris,,OIF, +OIF:SP:59:4024305,1,"Victor Hugo",48.879827,2.232351,0,0,OIF:SA:59:4024304,Europe/Paris,,OIF, +OIF:SP:59:4024307,1,"Capitaine Ferber",48.878969,2.226888,0,0,OIF:SA:59:4024307,Europe/Paris,,OIF, +OIF:SP:59:4024308,1,"Lycée Paul Langevin",48.878211,2.223674,0,0,OIF:SA:59:4024308,Europe/Paris,,OIF, +OIF:SP:59:4024311,1,"Liberté - Plaideurs",48.880192,2.218778,0,0,OIF:SA:59:4023975,Europe/Paris,,OIF, +OIF:SP:59:4024313,1,"Verdun",48.882195,2.21752,0,0,OIF:SA:59:4024313,Europe/Paris,,OIF, +OIF:SP:59:4024314,1,"Les Alouettes",48.884618,2.213739,0,0,OIF:SA:59:4024314,Europe/Paris,,OIF, +OIF:SP:59:4024315,1,"Les Alouettes",48.884349,2.214053,0,0,OIF:SA:59:4024314,Europe/Paris,,OIF, +OIF:SP:59:4024316,1,"Clemenceau - Sadi Carnot",48.886958,2.208569,0,0,OIF:SA:59:4024316,Europe/Paris,,OIF, +OIF:SP:59:4024317,1,"Clemenceau - Sadi Carnot",48.886007,2.209893,0,0,OIF:SA:59:4024316,Europe/Paris,,OIF, +OIF:SP:59:4024318,1,"Sadi Carnot - Joliot Curie",48.888635,2.205389,0,0,OIF:SA:59:4024318,Europe/Paris,,OIF, +OIF:SP:59:4024329,1,"Voltaire",48.900055,2.195,0,0,OIF:SA:59:4024329,Europe/Paris,,OIF, +OIF:SP:59:4024330,1,"Voltaire",48.899255,2.195084,0,0,OIF:SA:59:4024329,Europe/Paris,,OIF, +OIF:SP:59:4024331,1,"Lannes",48.902085,2.194272,0,0,OIF:SA:59:4024331,Europe/Paris,,OIF, +OIF:SP:59:4024332,1,"Lannes",48.901861,2.194164,0,0,OIF:SA:59:4024331,Europe/Paris,,OIF, +OIF:SP:59:4024333,1,"Boulevard de la Seine",48.903307,2.193396,0,0,OIF:SA:59:4024333,Europe/Paris,,OIF, +OIF:SP:59:4024334,1,"Boulevard de la Seine",48.903612,2.193559,0,0,OIF:SA:59:4024333,Europe/Paris,,OIF, +OIF:SP:59:4024335,1,"Boulevard de la Seine.",48.903307,2.19341,0,0,OIF:SA:59:4024333,Europe/Paris,,OIF, +OIF:SP:59:4024340,1,"Carriers",48.887576,2.206755,0,0,OIF:SA:59:4024340,Europe/Paris,,OIF, +OIF:SP:59:4024341,1,"Liberté - Plaideurs",48.87933,2.219121,0,0,OIF:SA:59:4024341,Europe/Paris,,OIF, +OIF:SP:59:4024343,1,"Pont de Neuilly - Rive Gauche",48.886827,2.252533,0,0,OIF:SA:59:4024343,Europe/Paris,,OIF, +OIF:SP:59:4024344,1,"La Défense - Métro-RER-Tramway",48.890421,2.240152,0,0,OIF:SA:8738221,Europe/Paris,,OIF, +OIF:SP:59:4024348,1,"Les Graviers",48.887701,2.233112,0,0,OIF:SA:59:4024348,Europe/Paris,,OIF, +OIF:SP:59:4024365,1,"Soufflot",48.898934,2.213501,0,0,OIF:SA:59:4024365,Europe/Paris,,OIF, +OIF:SP:59:4024366,1,"Soufflot",48.897855,2.213081,0,0,OIF:SA:59:4024365,Europe/Paris,,OIF, +OIF:SP:59:4024369,1,"Gounod",48.896921,2.205232,0,0,OIF:SA:59:4024369,Europe/Paris,,OIF, +OIF:SP:59:4024371,1,"Victor Hugo - Mairie",48.893817,2.201832,0,0,OIF:SA:59:4024371,Europe/Paris,,OIF, +OIF:SP:59:4024372,1,"Victor Hugo - Mairie",48.893237,2.205432,0,0,OIF:SA:59:4024371,Europe/Paris,,OIF, +OIF:SP:59:4024380,1,"Jules Quentin",48.894606,2.192807,0,0,OIF:SA:8775804,Europe/Paris,,OIF, +OIF:SP:59:4024381,1,"Paul Lescop",48.89372,2.18838,0,0,OIF:SA:59:4024381,Europe/Paris,,OIF, +OIF:SP:59:4024382,1,"Paul Lescop",48.89237,2.186407,0,0,OIF:SA:59:4024381,Europe/Paris,,OIF, +OIF:SP:59:4024383,1,"Pont de Biais",48.892608,2.18319,0,0,OIF:SA:59:4024383,Europe/Paris,,OIF, +OIF:SP:59:4024384,1,"Rue du Port",48.892397,2.179483,0,0,OIF:SA:59:4024384,Europe/Paris,,OIF, +OIF:SP:59:4024385,1,"Route de Chatou",48.891226,2.177756,0,0,OIF:SA:59:4024385,Europe/Paris,,OIF, +OIF:SP:59:4024386,1,"Cité du Vieux Pont",48.89008,2.181098,0,0,OIF:SA:59:3877802,Europe/Paris,,OIF, +OIF:SP:59:4024388,1,"Route de Chatou",48.891262,2.178083,0,0,OIF:SA:59:4024385,Europe/Paris,,OIF, +OIF:SP:59:4024392,1,"Lycée E.J. Marey",48.831935,2.234135,0,0,OIF:SA:59:4024392,Europe/Paris,,OIF, +OIF:SP:59:4024393,1,"Lycée E.J. Marey",48.832231,2.233822,0,0,OIF:SA:59:4024392,Europe/Paris,,OIF, +OIF:SP:59:4024394,1,"Silly - Gallieni",48.836409,2.232411,0,0,OIF:SA:59:4024394,Europe/Paris,,OIF, +OIF:SP:59:4024395,1,"Silly - Gallieni",48.835789,2.232317,0,0,OIF:SA:59:4024394,Europe/Paris,,OIF, +OIF:SP:59:4024396,1,"André Morizet",48.838476,2.232216,0,0,OIF:SA:59:4024396,Europe/Paris,,OIF, +OIF:SP:59:4024397,1,"André Morizet",48.838629,2.232039,0,0,OIF:SA:59:4024396,Europe/Paris,,OIF, +OIF:SP:59:4024411,1,"Marche de Saint-Cloud",48.844369,2.210662,0,0,OIF:SA:29:429,Europe/Paris,,OIF, +OIF:SP:59:4024412,1,"Marche de Saint-Cloud",48.844512,2.21009,0,0,OIF:SA:29:429,Europe/Paris,,OIF, +OIF:SP:59:4024413,1,"Montretout",48.846943,2.21436,0,0,OIF:SA:17:1545,Europe/Paris,,OIF, +OIF:SP:59:4024414,1,"Montretout",48.847159,2.214114,0,0,OIF:SA:17:1545,Europe/Paris,,OIF, +OIF:SP:59:4024415,1,"Lycée de Saint-Cloud",48.849648,2.213795,0,0,OIF:SA:17:1543,Europe/Paris,,OIF, +OIF:SP:59:4024416,1,"Lycée de Saint-Cloud",48.848875,2.213783,0,0,OIF:SA:17:1543,Europe/Paris,,OIF, +OIF:SP:59:4024417,1,"Marie Bonaparte",48.852864,2.212739,0,0,OIF:SA:17:1542,Europe/Paris,,OIF, +OIF:SP:59:4024418,1,"Marie Bonaparte",48.852298,2.212563,0,0,OIF:SA:17:1542,Europe/Paris,,OIF, +OIF:SP:59:4024419,1,"La Bérengère",48.857006,2.211285,0,0,OIF:SA:17:1541,Europe/Paris,,OIF, +OIF:SP:59:4024420,1,"La Bérengère",48.856664,2.211123,0,0,OIF:SA:17:1541,Europe/Paris,,OIF, +OIF:SP:59:4024422,1,"Croix du Roy",48.862041,2.212989,0,0,OIF:SA:59:4024218,Europe/Paris,,OIF, +OIF:SP:59:4024423,1,"Edouard Vaillant",48.86427,2.213515,0,0,OIF:SA:59:4024423,Europe/Paris,,OIF, +OIF:SP:59:4024424,1,"Edouard Vaillant",48.863802,2.21259,0,0,OIF:SA:59:4024423,Europe/Paris,,OIF, +OIF:SP:59:4024425,1,"Les Bons Raisins",48.86598,2.215595,0,0,OIF:SA:59:4024425,Europe/Paris,,OIF, +OIF:SP:59:4024426,1,"Les Bons Raisins",48.865611,2.21482,0,0,OIF:SA:59:4024425,Europe/Paris,,OIF, +OIF:SP:59:4024427,1,"Cluseret - Hôpital Foch",48.87018,2.218024,0,0,OIF:SA:59:4024427,Europe/Paris,,OIF, +OIF:SP:59:4024428,1,"Cluseret - Hôpital Foch",48.869505,2.217345,0,0,OIF:SA:59:4024427,Europe/Paris,,OIF, +OIF:SP:59:4024429,1,"Mont Valerien",48.874682,2.217823,0,0,OIF:SA:59:4024429,Europe/Paris,,OIF, +OIF:SP:59:4024430,1,"Mont Valerien",48.874808,2.21755,0,0,OIF:SA:59:4024429,Europe/Paris,,OIF, +OIF:SP:59:4024467,1,"Croix du Roy",48.860944,2.212828,0,0,OIF:SA:59:4024467,Europe/Paris,,OIF, +OIF:SP:59:4024468,1,"Val d'Or",48.859326,2.212546,0,0,OIF:SA:8738236,Europe/Paris,,OIF, +OIF:SP:59:4024471,1,"Rhin et Danube.",48.840799,2.227133,0,0,OIF:SA:59400,Europe/Paris,,OIF, +OIF:SP:59:4024523,1,"Porte d'Auteuil - Métro",48.84769,2.257622,0,0,OIF:SA:59668,Europe/Paris,,OIF, +OIF:SP:59:4024525,1,"Fleuriste Municipal",48.848081,2.251657,0,0,OIF:SA:59:4024525,Europe/Paris,,OIF, +OIF:SP:59:4024526,1,"Fleuriste Municipal",48.847884,2.251807,0,0,OIF:SA:59:4024525,Europe/Paris,,OIF, +OIF:SP:59:4024527,1,"Suzanne Lenglen",48.848088,2.247898,0,0,OIF:SA:59:4024527,Europe/Paris,,OIF, +OIF:SP:59:4024528,1,"Suzanne Lenglen",48.847908,2.248471,0,0,OIF:SA:59:4024527,Europe/Paris,,OIF, +OIF:SP:59:4024531,1,"Hôpital Ambroise Pare",48.850596,2.237203,0,0,OIF:SA:59:3681821,Europe/Paris,,OIF, +OIF:SP:59:4024532,1,"Hôpital Ambroise Pare",48.850442,2.23685,0,0,OIF:SA:59:3681821,Europe/Paris,,OIF, +OIF:SP:59:4024533,1,"Passerelle de l'Avre",48.853723,2.226465,0,0,OIF:SA:59:4024533,Europe/Paris,,OIF, +OIF:SP:59:4024534,1,"Hippodrome de Longchamp",48.861346,2.228996,0,0,OIF:SA:59:4024534,Europe/Paris,,OIF, +OIF:SP:59:4024535,1,"Hippodrome de Longchamp",48.861904,2.228968,0,0,OIF:SA:59:4024534,Europe/Paris,,OIF, +OIF:SP:59:4024536,1,"Étang de l'Abbaye",48.867138,2.233112,0,0,OIF:SA:59:4024536,Europe/Paris,,OIF, +OIF:SP:59:4024537,1,"Les Moulins - Camping",48.865521,2.233783,0,0,OIF:SA:59:4024537,Europe/Paris,,OIF, +OIF:SP:59:4024538,1,"Rue des Bourets - Pont de Suresnes",48.867681,2.226831,0,0,OIF:SA:59:4024538,Europe/Paris,,OIF, +OIF:SP:59:4024543,1,"Mairie de Suresnes",48.870563,2.224304,0,0,OIF:SA:8738237,Europe/Paris,,OIF, +OIF:SP:59:4024545,1,"Gare du Mont Valerien - Hôpital Foch",48.871944,2.221236,0,0,OIF:SA:8738237,Europe/Paris,,OIF, +OIF:SP:59:4024546,1,"Jacques Decour",48.874353,2.221026,0,0,OIF:SA:59:4024546,Europe/Paris,,OIF, +OIF:SP:59:4024547,1,"Jacques Decour",48.874361,2.220467,0,0,OIF:SA:59:4024546,Europe/Paris,,OIF, +OIF:SP:59:4024559,1,"Stresemann",48.863038,2.204446,0,0,OIF:SA:59:4024559,Europe/Paris,,OIF, +OIF:SP:59:4024560,1,"Stresemann",48.863012,2.204841,0,0,OIF:SA:59:4024559,Europe/Paris,,OIF, +OIF:SP:59:4024561,1,"Stalingrad",48.863593,2.202238,0,0,OIF:SA:59:4024561,Europe/Paris,,OIF, +OIF:SP:59:4024562,1,"Stalingrad",48.86308,2.201599,0,0,OIF:SA:59:4024561,Europe/Paris,,OIF, +OIF:SP:59:4024563,1,"Grotius",48.861561,2.201589,0,0,OIF:SA:59:4024563,Europe/Paris,,OIF, +OIF:SP:59:4024568,1,"Avenue du Mont Valérien",48.867789,2.201423,0,0,OIF:SA:59:4024144,Europe/Paris,,OIF, +OIF:SP:59:4024572,1,"Les Géraniums",48.872994,2.202172,0,0,OIF:SA:59:4024572,Europe/Paris,,OIF, +OIF:SP:59:4024574,1,"Eugène Sue",48.875922,2.201048,0,0,OIF:SA:59:4023211,Europe/Paris,,OIF, +OIF:SP:59:4024576,1,"Voltaire",48.877447,2.198659,0,0,OIF:SA:59:4024576,Europe/Paris,,OIF, +OIF:SP:59:4024577,1,"Voltaire",48.877026,2.199314,0,0,OIF:SA:59:4024576,Europe/Paris,,OIF, +OIF:SP:59:4024578,1,"Fabre d'Églantine",48.877876,2.196464,0,0,OIF:SA:59:4024578,Europe/Paris,,OIF, +OIF:SP:59:4024579,1,"Fabre d'Églantine",48.877813,2.196342,0,0,OIF:SA:59:4024578,Europe/Paris,,OIF, +OIF:SP:59:4024580,1,"Danton-Gambetta",48.878545,2.192225,0,0,OIF:SA:59:4024580,Europe/Paris,,OIF, +OIF:SP:59:4024581,1,"Danton-Gambetta",48.878367,2.193056,0,0,OIF:SA:59:4024580,Europe/Paris,,OIF, +OIF:SP:59:4024582,1,"Lienard",48.878989,2.187686,0,0,OIF:SA:59:4024582,Europe/Paris,,OIF, +OIF:SP:59:4024583,1,"Lienard",48.878872,2.187673,0,0,OIF:SA:59:4024582,Europe/Paris,,OIF, +OIF:SP:59:4024584,1,"Le Gué",48.880334,2.185284,0,0,OIF:SA:59:4024584,Europe/Paris,,OIF, +OIF:SP:59:4024585,1,"Le Gué",48.879355,2.185709,0,0,OIF:SA:59:4024584,Europe/Paris,,OIF, +OIF:SP:59:4024586,1,"Brossolette",48.881528,2.184367,0,0,OIF:SA:59:4024586,Europe/Paris,,OIF, +OIF:SP:59:4024588,1,"Baudin",48.88454,2.178158,0,0,OIF:SA:59:4024588,Europe/Paris,,OIF, +OIF:SP:59:4024592,1,"Rueil-Malmaison RER",48.886987,2.173122,0,0,OIF:SA:8775805,Europe/Paris,,OIF, +OIF:SP:59:4024593,1,"Rueil-Malmaison RER",48.88713,2.17289,0,0,OIF:SA:8775805,Europe/Paris,,OIF, +OIF:SP:59:4024594,1,"Maistrasse",48.861586,2.199955,0,0,OIF:SA:59:4024594,Europe/Paris,,OIF, +OIF:SP:59:4024598,1,"Passerelle de l'Avre",48.852645,2.226849,0,0,OIF:SA:59:4024598,Europe/Paris,,OIF, +OIF:SP:59:4024602,1,"Brossolette",48.881743,2.183713,0,0,OIF:SA:59:4024586,Europe/Paris,,OIF, +OIF:SP:59:4024608,1,"Eugène Sue",48.875769,2.200884,0,0,OIF:SA:59:4023211,Europe/Paris,,OIF, +OIF:SP:59:4024609,1,"Les Géraniums",48.873137,2.201872,0,0,OIF:SA:59:4024572,Europe/Paris,,OIF, +OIF:SP:59:4024611,1,"Avenue du Mont Valerien",48.867618,2.200756,0,0,OIF:SA:59:4024144,Europe/Paris,,OIF, +OIF:SP:59:4024617,1,"Place de la Paix",48.864864,2.205586,0,0,OIF:SA:59:4024617,Europe/Paris,,OIF, +OIF:SP:59:4024791,1,"La Défense - Métro-RER-Tramway",48.890511,2.24052,0,0,OIF:SA:8738221,Europe/Paris,,OIF, +OIF:SP:59:4024792,1,"La Défense - Métro-RER-Tramway",48.891255,2.238406,0,0,OIF:SA:8738221,Europe/Paris,,OIF, +OIF:SP:59:4024802,1,"Paix - Verdun",48.900574,2.261399,0,0,OIF:SA:59:4024802,Europe/Paris,,OIF, +OIF:SP:59:4024804,1,"Ulbach",48.901771,2.26456,0,0,OIF:SA:59:4024804,Europe/Paris,,OIF, +OIF:SP:59:4024805,1,"Ulbach",48.901591,2.263865,0,0,OIF:SA:59:4024804,Europe/Paris,,OIF, +OIF:SP:59:4024806,1,"Place de Belgique",48.903229,2.268457,0,0,OIF:SA:8738200,Europe/Paris,,OIF, +OIF:SP:59:4024807,1,"Place de Belgique",48.903382,2.268538,0,0,OIF:SA:8738200,Europe/Paris,,OIF, +OIF:SP:59:4024819,1,"Stade de Gennevilliers",48.899008,2.257939,0,0,OIF:SA:59:4024819,Europe/Paris,,OIF, +OIF:SP:59:4024822,1,"Carnot",48.893204,2.247453,0,0,OIF:SA:59:4024822,Europe/Paris,,OIF, +OIF:SP:59:4024823,1,"Place Charras",48.895354,2.250502,0,0,OIF:SA:59:4023374,Europe/Paris,,OIF, +OIF:SP:59:4024825,1,"Alma Baudin",48.89656,2.253513,0,0,OIF:SA:59:4024825,Europe/Paris,,OIF, +OIF:SP:59:4024827,1,"Hérold - Mairie de Courbevoie",48.897587,2.256633,0,0,OIF:SA:59:4024827,Europe/Paris,,OIF, +OIF:SP:59:4024829,1,"Stade de Courbevoie",48.899629,2.258824,0,0,OIF:SA:59:4024829,Europe/Paris,,OIF, +OIF:SP:59:4024835,1,"Europe",48.904777,2.25673,0,0,OIF:SA:59:4024835,Europe/Paris,,OIF, +OIF:SP:59:4024836,1,"Europe",48.90457,2.256485,0,0,OIF:SA:59:4024835,Europe/Paris,,OIF, +OIF:SP:59:4024839,1,"Les Bruyères",48.905932,2.264336,0,0,OIF:SA:59:4024839,Europe/Paris,,OIF, +OIF:SP:59:4024841,1,"Europe",48.90572,2.256715,0,0,OIF:SA:59:4024841,Europe/Paris,,OIF, +OIF:SP:59:4024843,1,"La Défense - Métro-RER-Tramway",48.890502,2.239934,0,0,OIF:SA:8738221,Europe/Paris,,OIF, +OIF:SP:59:4024851,1,"Félix Faure",48.882533,2.223079,0,0,OIF:SA:59:4024017,Europe/Paris,,OIF, +OIF:SP:59:4024852,1,"Liberté - Plaideurs",48.879473,2.218357,0,0,OIF:SA:59:4023975,Europe/Paris,,OIF, +OIF:SP:59:4024862,1,"Val d'Or",48.858204,2.214211,0,0,OIF:SA:8738236,Europe/Paris,,OIF, +OIF:SP:59:4024863,1,"Marie Bonaparte",48.853479,2.215625,0,0,OIF:SA:17:1542,Europe/Paris,,OIF, +OIF:SP:59:4024865,1,"Pont des Trois Pierrots",48.850784,2.216857,0,0,OIF:SA:59037,Europe/Paris,,OIF, +OIF:SP:59:4024867,1,"Montretout",48.84731,2.212888,0,0,OIF:SA:17:1545,Europe/Paris,,OIF, +OIF:SP:59:4024870,1,"Église de Saint-Cloud",48.847629,2.208366,0,0,OIF:SA:17:1574,Europe/Paris,,OIF, +OIF:SP:59:4024872,1,"Cimetière de Saint-Cloud",48.847913,2.204988,0,0,OIF:SA:17:1575,Europe/Paris,,OIF, +OIF:SP:59:4024873,1,"Foch-19 Janvier",48.849202,2.200763,0,0,OIF:SA:59:4024873,Europe/Paris,,OIF, +OIF:SP:59:4024874,1,"Foch-19 Janvier",48.849139,2.200546,0,0,OIF:SA:59:4024873,Europe/Paris,,OIF, +OIF:SP:59:4024875,1,"Les Cliquets",48.849937,2.198406,0,0,OIF:SA:59:4024875,Europe/Paris,,OIF, +OIF:SP:59:4024876,1,"Les Cliquets",48.849856,2.198338,0,0,OIF:SA:59:4024875,Europe/Paris,,OIF, +OIF:SP:59:4024877,1,"La Verboise",48.851269,2.192505,0,0,OIF:SA:59:4024877,Europe/Paris,,OIF, +OIF:SP:59:4024878,1,"La Verboise",48.851152,2.192505,0,0,OIF:SA:59:4024877,Europe/Paris,,OIF, +OIF:SP:59:4024879,1,"Regnault",48.850296,2.19116,0,0,OIF:SA:59:4024879,Europe/Paris,,OIF, +OIF:SP:59:4024880,1,"Regnault",48.850665,2.190968,0,0,OIF:SA:59:4024879,Europe/Paris,,OIF, +OIF:SP:59:4024881,1,"Quatre Vents",48.847991,2.194979,0,0,OIF:SA:59:4024881,Europe/Paris,,OIF, +OIF:SP:59:4024882,1,"Quatre Vents",48.848189,2.195128,0,0,OIF:SA:59:4024881,Europe/Paris,,OIF, +OIF:SP:59:4024883,1,"Sylvain Vigneras",48.846893,2.193579,0,0,OIF:SA:59:4024883,Europe/Paris,,OIF, +OIF:SP:59:4024884,1,"Sylvain Vigneras",48.846794,2.193607,0,0,OIF:SA:59:4024883,Europe/Paris,,OIF, +OIF:SP:59:4024885,1,"Piscine",48.845773,2.188667,0,0,OIF:SA:17:1602,Europe/Paris,,OIF, +OIF:SP:59:4024886,1,"Piscine",48.845692,2.188789,0,0,OIF:SA:17:1602,Europe/Paris,,OIF, +OIF:SP:59:4024887,1,"Charles Devos",48.84425,2.185553,0,0,OIF:SA:59:4024887,Europe/Paris,,OIF, +OIF:SP:59:4024888,1,"Charles Devos",48.843955,2.186915,0,0,OIF:SA:59:4024887,Europe/Paris,,OIF, +OIF:SP:59:4024889,1,"Mairie de Garches",48.842813,2.186333,0,0,OIF:SA:17:1350,Europe/Paris,,OIF, +OIF:SP:59:4024890,1,"Mairie de Garches",48.842409,2.18647,0,0,OIF:SA:17:1350,Europe/Paris,,OIF, +OIF:SP:59:4024891,1,"Gare de Garches - Marnes la Coquette",48.838615,2.186236,0,0,OIF:SA:8738225,Europe/Paris,,OIF, +OIF:SP:59:4024892,1,"Pasteur",48.838257,2.17977,0,0,OIF:SA:17:1353,Europe/Paris,,OIF, +OIF:SP:59:4024895,1,"Hôpital de Garches.",48.83829,2.171424,0,0,OIF:SA:17:1354,Europe/Paris,,OIF, +OIF:SP:59:4024896,1,"Pasteur",48.838067,2.179471,0,0,OIF:SA:59:4024896,Europe/Paris,,OIF, +OIF:SP:59:4024897,1,"Gare de Garches - Marnes la Coquette",48.838355,2.186332,0,0,OIF:SA:8738225,Europe/Paris,,OIF, +OIF:SP:59:4024898,1,"Joffre",48.839837,2.18592,0,0,OIF:SA:8738225,Europe/Paris,,OIF, +OIF:SP:59:4024903,1,"Liberté - Plaideurs",48.880454,2.220222,0,0,OIF:SA:59:4024341,Europe/Paris,,OIF, +OIF:SP:59:4024905,1,"Pont de Bezons",48.923214,2.218748,0,0,OIF:SA:59720,Europe/Paris,,OIF, +OIF:SP:59:4024907,1,"Hautes Patures",48.918156,2.220532,0,0,OIF:SA:59:4024907,Europe/Paris,,OIF, +OIF:SP:59:4024908,1,"Hautes Patures",48.918183,2.220914,0,0,OIF:SA:59:4024907,Europe/Paris,,OIF, +OIF:SP:59:4024909,1,"Periparc",48.916204,2.219187,0,0,OIF:SA:59:4024909,Europe/Paris,,OIF, +OIF:SP:59:4024910,1,"Periparc",48.916367,2.219773,0,0,OIF:SA:59:4024909,Europe/Paris,,OIF, +OIF:SP:59:4024911,1,"Rue des Hautes Patures N0 11",48.913828,2.215933,0,0,OIF:SA:59:4024911,Europe/Paris,,OIF, +OIF:SP:59:4024912,1,"Rue des Hautes Patures N0 11",48.914396,2.216982,0,0,OIF:SA:59:4024911,Europe/Paris,,OIF, +OIF:SP:59:4024913,1,"Les Peupliers",48.912597,2.215323,0,0,OIF:SA:59:4024913,Europe/Paris,,OIF, +OIF:SP:59:4024914,1,"Les Peupliers",48.912884,2.21524,0,0,OIF:SA:59:4024913,Europe/Paris,,OIF, +OIF:SP:59:4024915,1,"Les Saules",48.910512,2.215423,0,0,OIF:SA:59:4023619,Europe/Paris,,OIF, +OIF:SP:59:4024917,1,"Les Pâquerettes",48.908768,2.215182,0,0,OIF:SA:59:4024917,Europe/Paris,,OIF, +OIF:SP:59:4024918,1,"Les Pâquerettes",48.908696,2.215482,0,0,OIF:SA:59:4024917,Europe/Paris,,OIF, +OIF:SP:59:4024919,1,"Dequéant",48.906848,2.218104,0,0,OIF:SA:59:4024919,Europe/Paris,,OIF, +OIF:SP:59:4024920,1,"Dequéant",48.907045,2.218131,0,0,OIF:SA:59:4024919,Europe/Paris,,OIF, +OIF:SP:59:4024921,1,"Pont des Fondrières",48.906546,2.222331,0,0,OIF:SA:59:4024921,Europe/Paris,,OIF, +OIF:SP:59:4024922,1,"Pont des Fondrières",48.906744,2.221976,0,0,OIF:SA:59:4024921,Europe/Paris,,OIF, +OIF:SP:59:4024923,1,"Noël Pons",48.905026,2.220971,0,0,OIF:SA:59:4024923,Europe/Paris,,OIF, +OIF:SP:59:4024924,1,"Noël Pons",48.904856,2.221162,0,0,OIF:SA:59:4024923,Europe/Paris,,OIF, +OIF:SP:59:4024925,1,"Nanterre - Université RER",48.900094,2.214043,0,0,OIF:SA:8738631,Europe/Paris,,OIF, +OIF:SP:59:4024929,1,"Pascal",48.899379,2.208756,0,0,OIF:SA:59:4024929,Europe/Paris,,OIF, +OIF:SP:59:4024930,1,"Pascal",48.899262,2.208879,0,0,OIF:SA:59:4024929,Europe/Paris,,OIF, +OIF:SP:59:4024933,1,"Nanterre-Ville RER",48.894779,2.194687,0,0,OIF:SA:8775804,Europe/Paris,,OIF, +OIF:SP:59:4024935,1,"Jules Quentin",48.895135,2.19181,0,0,OIF:SA:8775804,Europe/Paris,,OIF, +OIF:SP:59:4024937,1,"Ernest Renan",48.896139,2.189163,0,0,OIF:SA:59:4024937,Europe/Paris,,OIF, +OIF:SP:59:4024938,1,"Ernest Renan",48.89569,2.189751,0,0,OIF:SA:59:4024937,Europe/Paris,,OIF, +OIF:SP:59:4024939,1,"Paul Lescop",48.896664,2.184991,0,0,OIF:SA:59:4024381,Europe/Paris,,OIF, +OIF:SP:59:4024940,1,"Paul Lescop",48.895872,2.18423,0,0,OIF:SA:59:4024381,Europe/Paris,,OIF, +OIF:SP:59:4024941,1,"Les Guilleraies",48.894656,2.182311,0,0,OIF:SA:59:4024941,Europe/Paris,,OIF, +OIF:SP:59:4024943,1,"Parc de l'Île",48.893698,2.178266,0,0,OIF:SA:59:4024943,Europe/Paris,,OIF, +OIF:SP:59:4024944,1,"Parc de l'Île",48.893079,2.17929,0,0,OIF:SA:59:4024943,Europe/Paris,,OIF, +OIF:SP:59:4024945,1,"Lavoisier",48.89495,2.173955,0,0,OIF:SA:59:4024945,Europe/Paris,,OIF, +OIF:SP:59:4024947,1,"Sainte-Claire Deville",48.893284,2.171453,0,0,OIF:SA:59:4024947,Europe/Paris,,OIF, +OIF:SP:59:4024948,1,"Sainte-Claire Deville",48.893006,2.17159,0,0,OIF:SA:59:4024947,Europe/Paris,,OIF, +OIF:SP:59:4024949,1,"Claude Monet",48.890646,2.167658,0,0,OIF:SA:59:4024949,Europe/Paris,,OIF, +OIF:SP:59:4024951,1,"Edouard Belin",48.887601,2.169167,0,0,OIF:SA:8775805,Europe/Paris,,OIF, +OIF:SP:59:4024952,1,"Rueil-Malmaison RER",48.887351,2.170395,0,0,OIF:SA:8775805,Europe/Paris,,OIF, +OIF:SP:59:4024953,1,"Rueil-Malmaison RER",48.88764,2.170912,0,0,OIF:SA:8775805,Europe/Paris,,OIF, +OIF:SP:59:4024971,1,"Claude Monet",48.89061,2.167945,0,0,OIF:SA:59:4024949,Europe/Paris,,OIF, +OIF:SP:59:4024973,1,"Lavoisier",48.894898,2.174719,0,0,OIF:SA:59:4024945,Europe/Paris,,OIF, +OIF:SP:59:4024975,1,"Les Guilleraies",48.89435,2.182258,0,0,OIF:SA:59:4024941,Europe/Paris,,OIF, +OIF:SP:59:4024979,1,"Nanterre-Ville RER",48.895383,2.196117,0,0,OIF:SA:8775804,Europe/Paris,,OIF, +OIF:SP:59:4024982,1,"Sous Préfecture",48.831347,2.230325,0,0,OIF:SA:59:4024982,Europe/Paris,,OIF, +OIF:SP:59:4024983,1,"Sous Préfecture",48.83132,2.230134,0,0,OIF:SA:59:4024982,Europe/Paris,,OIF, +OIF:SP:59:4024984,1,"Gallieni",48.834635,2.228303,0,0,OIF:SA:59:3681811,Europe/Paris,,OIF, +OIF:SP:59:4024985,1,"Gallieni",48.834671,2.228085,0,0,OIF:SA:59:3681811,Europe/Paris,,OIF, +OIF:SP:59:4024986,1,"Stade de Boulogne-Billancourt",48.836684,2.227999,0,0,OIF:SA:59:4024986,Europe/Paris,,OIF, +OIF:SP:59:4024987,1,"Stade de Boulogne-Billancourt",48.836666,2.227863,0,0,OIF:SA:59:4024986,Europe/Paris,,OIF, +OIF:SP:59:4024988,1,"Rhin et Danube - Béranger",48.840082,2.228673,0,0,OIF:SA:59400,Europe/Paris,,OIF, +OIF:SP:59:4024989,1,"Rhin et Danube - Béranger",48.840108,2.228428,0,0,OIF:SA:59400,Europe/Paris,,OIF, +OIF:SP:59:4024999,1,"Général Leclerc",48.842342,2.206269,0,0,OIF:SA:17:1345,Europe/Paris,,OIF, +OIF:SP:59:4025000,1,"Général Leclerc",48.842308,2.20778,0,0,OIF:SA:17:1345,Europe/Paris,,OIF, +OIF:SP:59:4025001,1,"Lelégard",48.841969,2.202621,0,0,OIF:SA:17:1346,Europe/Paris,,OIF, +OIF:SP:59:4025002,1,"Lelégard",48.841781,2.202621,0,0,OIF:SA:17:1346,Europe/Paris,,OIF, +OIF:SP:59:4025003,1,"Porte Jaune - Pasteur",48.841679,2.199789,0,0,OIF:SA:59:4025003,Europe/Paris,,OIF, +OIF:SP:59:4025004,1,"Porte Jaune - Pasteur",48.841554,2.200811,0,0,OIF:SA:59:4025003,Europe/Paris,,OIF, +OIF:SP:59:4025005,1,"Grande Rue",48.843287,2.199186,0,0,OIF:SA:59:4025005,Europe/Paris,,OIF, +OIF:SP:59:4025006,1,"Les Croissants",48.845119,2.19835,0,0,OIF:SA:59:4025006,Europe/Paris,,OIF, +OIF:SP:59:4025007,1,"Tahère",48.847006,2.198018,0,0,OIF:SA:59:4025007,Europe/Paris,,OIF, +OIF:SP:59:4025011,1,"Les Suisses",48.8547,2.198298,0,0,OIF:SA:59:4025011,Europe/Paris,,OIF, +OIF:SP:59:4025012,1,"Église de Buzenval",48.857076,2.19332,0,0,OIF:SA:59:4025012,Europe/Paris,,OIF, +OIF:SP:59:4025013,1,"Église de Buzenval",48.856133,2.194003,0,0,OIF:SA:59:4025012,Europe/Paris,,OIF, +OIF:SP:59:4025014,1,"Henri Regnault",48.858995,2.190018,0,0,OIF:SA:59:4024009,Europe/Paris,,OIF, +OIF:SP:59:4025015,1,"Henri Regnault",48.857197,2.189873,0,0,OIF:SA:59:4024009,Europe/Paris,,OIF, +OIF:SP:59:4025016,1,"Collège Passy - Buzenval",48.85956,2.182007,0,0,OIF:SA:59:4023215,Europe/Paris,,OIF, +OIF:SP:59:4025017,1,"Collège Passy - Buzenval",48.859443,2.181994,0,0,OIF:SA:59:4023215,Europe/Paris,,OIF, +OIF:SP:59:4025018,1,"Piscine Buzenval",48.860417,2.177632,0,0,OIF:SA:59:4025018,Europe/Paris,,OIF, +OIF:SP:59:4025019,1,"Piscine Buzenval",48.860291,2.177755,0,0,OIF:SA:59:4025018,Europe/Paris,,OIF, +OIF:SP:59:4025020,1,"Saint-Cucufa",48.863015,2.171427,0,0,OIF:SA:17:1444,Europe/Paris,,OIF, +OIF:SP:59:4025021,1,"Saint-Cucufa",48.862126,2.171702,0,0,OIF:SA:17:1444,Europe/Paris,,OIF, +OIF:SP:59:4025022,1,"Bretagne",48.864644,2.172824,0,0,OIF:SA:59:4025022,Europe/Paris,,OIF, +OIF:SP:59:4025023,1,"Bretagne",48.86458,2.172566,0,0,OIF:SA:59:4025022,Europe/Paris,,OIF, +OIF:SP:59:4025024,1,"Général de Miribel",48.867433,2.175431,0,0,OIF:SA:59:4025024,Europe/Paris,,OIF, +OIF:SP:59:4025025,1,"Général de Miribel",48.86703,2.17659,0,0,OIF:SA:59:4025024,Europe/Paris,,OIF, +OIF:SP:59:4025026,1,"Collège Jules Verne",48.865002,2.178858,0,0,OIF:SA:59:4025026,Europe/Paris,,OIF, +OIF:SP:59:4025027,1,"Collège Jules Verne",48.866008,2.177847,0,0,OIF:SA:59:4025026,Europe/Paris,,OIF, +OIF:SP:59:4025028,1,"Lycée de Rueil",48.867316,2.181657,0,0,OIF:SA:59:4024013,Europe/Paris,,OIF, +OIF:SP:59:4025029,1,"Lycée de Rueil",48.86664,2.180392,0,0,OIF:SA:59:4024013,Europe/Paris,,OIF, +OIF:SP:59:4025030,1,"Place Besche",48.869227,2.186365,0,0,OIF:SA:59:4024230,Europe/Paris,,OIF, +OIF:SP:59:4025031,1,"Place Besche",48.868992,2.185589,0,0,OIF:SA:59:4024230,Europe/Paris,,OIF, +OIF:SP:59:4025032,1,"Zurich",48.871794,2.183415,0,0,OIF:SA:59:4025032,Europe/Paris,,OIF, +OIF:SP:59:4025033,1,"Zurich",48.870878,2.183854,0,0,OIF:SA:59:4025032,Europe/Paris,,OIF, +OIF:SP:59:4025034,1,"Place Richelieu",48.873762,2.183069,0,0,OIF:SA:59:4025034,Europe/Paris,,OIF, +OIF:SP:59:4025035,1,"Place Richelieu",48.87323,2.181939,0,0,OIF:SA:59:4025034,Europe/Paris,,OIF, +OIF:SP:59:4025036,1,"Hôpital Stell",48.876613,2.185336,0,0,OIF:SA:17:1597,Europe/Paris,,OIF, +OIF:SP:59:4025037,1,"Mairie de Rueil",48.87794,2.18232,0,0,OIF:SA:17:1460,Europe/Paris,,OIF, +OIF:SP:59:4025038,1,"Mairie de Rueil",48.878189,2.180208,0,0,OIF:SA:17:1460,Europe/Paris,,OIF, +OIF:SP:59:4025039,1,"Albert 1er - Rueil - Ville",48.880677,2.179682,0,0,OIF:SA:59:4025039,Europe/Paris,,OIF, +OIF:SP:59:4025040,1,"Baudin",48.883915,2.174685,0,0,OIF:SA:59:4024588,Europe/Paris,,OIF, +OIF:SP:59:4025041,1,"Baudin",48.884521,2.177749,0,0,OIF:SA:59:4024588,Europe/Paris,,OIF, +OIF:SP:59:4025042,1,"Colmar",48.886369,2.175277,0,0,OIF:SA:59:4025042,Europe/Paris,,OIF, +OIF:SP:59:4025043,1,"Colmar",48.88601,2.175387,0,0,OIF:SA:59:4025042,Europe/Paris,,OIF, +OIF:SP:59:4025044,1,"Rueil-Malmaison RER",48.88695,2.172863,0,0,OIF:SA:8775805,Europe/Paris,,OIF, +OIF:SP:59:4025045,1,"Rueil-Malmaison RER",48.887147,2.172467,0,0,OIF:SA:8775805,Europe/Paris,,OIF, +OIF:SP:59:4025046,1,"Rueil - Ville",48.880337,2.180869,0,0,OIF:SA:17:1273,Europe/Paris,,OIF, +OIF:SP:59:4025047,1,"Église de Rueil",48.876283,2.180322,0,0,OIF:SA:17:1461,Europe/Paris,,OIF, +OIF:SP:59:4025048,1,"Le Champtier",48.858008,2.18445,0,0,OIF:SA:59:4025048,Europe/Paris,,OIF, +OIF:SP:59:4025051,1,"Champ de Courses",48.85122,2.204871,0,0,OIF:SA:59:4025051,Europe/Paris,,OIF, +OIF:SP:59:4025052,1,"Foch - 19 Janvier",48.849158,2.201118,0,0,OIF:SA:59:4024873,Europe/Paris,,OIF, +OIF:SP:59:4025053,1,"Tahère",48.846988,2.197705,0,0,OIF:SA:59:4025053,Europe/Paris,,OIF, +OIF:SP:59:4025054,1,"Les Croissants",48.84502,2.198146,0,0,OIF:SA:59:4025054,Europe/Paris,,OIF, +OIF:SP:59:4025055,1,"Grande Rue",48.842424,2.198875,0,0,OIF:SA:59:4025055,Europe/Paris,,OIF, +OIF:SP:59:4025078,1,"Henri Regnault.",48.858932,2.190168,0,0,OIF:SA:59:4024009,Europe/Paris,,OIF, +OIF:SP:59:4025231,1,"Chemin de l'Île",48.899501,2.190449,0,0,OIF:SA:59:4025231,Europe/Paris,,OIF, +OIF:SP:59:4025233,1,"Zilina",48.897815,2.193071,0,0,OIF:SA:59:4025233,Europe/Paris,,OIF, +OIF:SP:59:4025234,1,"Benoit Frachon",48.895197,2.191101,0,0,OIF:SA:59:4025234,Europe/Paris,,OIF, +OIF:SP:59:4025240,1,"Thomas Lemaître",48.890074,2.190244,0,0,OIF:SA:59:4025240,Europe/Paris,,OIF, +OIF:SP:59:4025245,1,"Saint-Cloud",48.882645,2.201098,0,0,OIF:SA:59:4025245,Europe/Paris,,OIF, +OIF:SP:59:4025246,1,"Saint-Cloud",48.882663,2.201439,0,0,OIF:SA:59:4025245,Europe/Paris,,OIF, +OIF:SP:59:4025250,1,"Les Chailliers",48.878227,2.204843,0,0,OIF:SA:59:4023980,Europe/Paris,,OIF, +OIF:SP:59:4025254,1,"Cimetière du Mont Valérien",48.876254,2.208241,0,0,OIF:SA:59:4025254,Europe/Paris,,OIF, +OIF:SP:59:4025256,1,"Gambetta",48.88773,2.199926,0,0,OIF:SA:59:4025256,Europe/Paris,,OIF, +OIF:SP:59:4025313,1,"Collège la Malmaison",48.873554,2.168927,0,0,OIF:SA:59:4025313,Europe/Paris,,OIF, +OIF:SP:59:4025314,1,"Place Osiris",48.87465,2.169073,0,0,OIF:SA:59:4025314,Europe/Paris,,OIF, +OIF:SP:59:4025315,1,"Bois Préau",48.874812,2.175204,0,0,OIF:SA:17:1275,Europe/Paris,,OIF, +OIF:SP:59:4025316,1,"Église de Rueil",48.875852,2.179983,0,0,OIF:SA:17:1461,Europe/Paris,,OIF, +OIF:SP:59:4025317,1,"Place Richelieu",48.873561,2.181107,0,0,OIF:SA:59:4025034,Europe/Paris,,OIF, +OIF:SP:59:4025318,1,"George Sand",48.87182,2.176167,0,0,OIF:SA:59:4025318,Europe/Paris,,OIF, +OIF:SP:59:4025319,1,"Tuck Stell",48.869074,2.172361,0,0,OIF:SA:59:4025319,Europe/Paris,,OIF, +OIF:SP:59:4025320,1,"Bretagne",48.866884,2.168376,0,0,OIF:SA:59:4025022,Europe/Paris,,OIF, +OIF:SP:59:4025321,1,"Bois Saint-Père",48.863978,2.165798,0,0,OIF:SA:59:4025321,Europe/Paris,,OIF, +OIF:SP:59:4025322,1,"Bergerie",48.863416,2.162952,0,0,OIF:SA:59:4025322,Europe/Paris,,OIF, +OIF:SP:59:4025323,1,"Les Pince-Vins",48.862,2.159116,0,0,OIF:SA:59:4025323,Europe/Paris,,OIF, +OIF:SP:59:4025324,1,"Bergerie.",48.863218,2.162899,0,0,OIF:SA:59:4025322,Europe/Paris,,OIF, +OIF:SP:59:4025325,1,"Bois Saint-Père.",48.864104,2.16607,0,0,OIF:SA:59:4025321,Europe/Paris,,OIF, +OIF:SP:59:4025326,1,"Bretagne.",48.866597,2.168295,0,0,OIF:SA:59:4025022,Europe/Paris,,OIF, +OIF:SP:59:4025327,1,"Tuck Stell.",48.869056,2.172606,0,0,OIF:SA:59:4025319,Europe/Paris,,OIF, +OIF:SP:59:4025328,1,"Collège la Malmaison.",48.87341,2.168982,0,0,OIF:SA:59:4025313,Europe/Paris,,OIF, +OIF:SP:59:4025336,1,"Place Besche",48.868939,2.186135,0,0,OIF:SA:59:4024230,Europe/Paris,,OIF, +OIF:SP:59:4025338,1,"Fond Louvet",48.866142,2.184562,0,0,OIF:SA:59:4025338,Europe/Paris,,OIF, +OIF:SP:59:4025339,1,"Primevères",48.864834,2.187386,0,0,OIF:SA:59:4025339,Europe/Paris,,OIF, +OIF:SP:59:4025340,1,"Primevères",48.865364,2.18748,0,0,OIF:SA:59:4025339,Europe/Paris,,OIF, +OIF:SP:59:4025341,1,"19 Janvier",48.863435,2.19051,0,0,OIF:SA:59:4025341,Europe/Paris,,OIF, +OIF:SP:59:4025342,1,"19 Janvier",48.863705,2.190468,0,0,OIF:SA:59:4025341,Europe/Paris,,OIF, +OIF:SP:59:4025345,1,"Dumouriez",48.859935,2.194783,0,0,OIF:SA:59:4024008,Europe/Paris,,OIF, +OIF:SP:59:4025346,1,"Dumouriez",48.859423,2.194757,0,0,OIF:SA:59:4024008,Europe/Paris,,OIF, +OIF:SP:59:4025348,1,"Place de Buzenval",48.857395,2.190132,0,0,OIF:SA:59:4025348,Europe/Paris,,OIF, +OIF:SP:59:4025349,1,"Église de Buzenval",48.856977,2.193266,0,0,OIF:SA:59:4025012,Europe/Paris,,OIF, +OIF:SP:59:4025352,1,"Mairie de Rueil.",48.877931,2.18232,0,0,OIF:SA:17:1460,Europe/Paris,,OIF, +OIF:SP:59:4025353,1,"Droits de l'Homme",48.895621,2.216139,0,0,OIF:SA:59:4025353,Europe/Paris,,OIF, +OIF:SP:59:4025355,1,"Nanterre - Préfecture RER",48.896086,2.222926,0,0,OIF:SA:8775802,Europe/Paris,,OIF, +OIF:SP:59:4025356,1,"Les Terrasses",48.894768,2.227032,0,0,OIF:SA:59:4025356,Europe/Paris,,OIF, +OIF:SP:59:4025357,1,"Les Terrasses",48.89493,2.227168,0,0,OIF:SA:59:4025356,Europe/Paris,,OIF, +OIF:SP:59:4025359,1,"Maxime Gorki",48.890951,2.229139,0,0,OIF:SA:59:4025359,Europe/Paris,,OIF, +OIF:SP:59:4025363,1,"Watford",48.885923,2.224829,0,0,OIF:SA:59:4025363,Europe/Paris,,OIF, +OIF:SP:59:4025367,1,"Rue des Écoles",48.887336,2.217249,0,0,OIF:SA:59:4025367,Europe/Paris,,OIF, +OIF:SP:59:4025371,1,"Luaps",48.880669,2.210369,0,0,OIF:SA:59:4025371,Europe/Paris,,OIF, +OIF:SP:59:4025372,1,"Les Damades",48.88312,2.208156,0,0,OIF:SA:59:4025372,Europe/Paris,,OIF, +OIF:SP:59:4025378,1,"Place de la Boule - Gambetta",48.887371,2.199941,0,0,OIF:SA:59:4025378,Europe/Paris,,OIF, +OIF:SP:59:4025384,1,"Pasteur",48.885325,2.219707,0,0,OIF:SA:59:4025384,Europe/Paris,,OIF, +OIF:SP:59:4025386,1,"Nanterre - Préfecture RER",48.896033,2.223703,0,0,OIF:SA:8775802,Europe/Paris,,OIF, +OIF:SP:59:4028764,1,"Château de Vincennes",48.844542,2.441974,0,0,OIF:SA:59595,Europe/Paris,,OIF, +OIF:SP:59:4028766,1,"Tremblay - Pépinière",48.842486,2.448847,0,0,OIF:SA:59:3686058,Europe/Paris,,OIF, +OIF:SP:59:4028768,1,"Charmes - Pépinière",48.845917,2.451223,0,0,OIF:SA:59:3686059,Europe/Paris,,OIF, +OIF:SP:59:4028772,1,"Fontenay-sous-Bois RER",48.843856,2.462943,0,0,OIF:SA:8775812,Europe/Paris,,OIF, +OIF:SP:59:4028774,1,"Porte Jaune",48.838942,2.460875,0,0,OIF:SA:59:3686063,Europe/Paris,,OIF, +OIF:SP:59:4028776,1,"Nogent-sur-Marne RER - Pierre Semard",48.835775,2.472903,0,0,OIF:SA:8775813,Europe/Paris,,OIF, +OIF:SP:59:4028778,1,"Place du Général Leclerc",48.835745,2.475177,0,0,OIF:SA:59:3682989,Europe/Paris,,OIF, +OIF:SP:59:4028786,1,"Viaduc",48.835678,2.492644,0,0,OIF:SA:59:3686069,Europe/Paris,,OIF, +OIF:SP:59:4028793,1,"Mairie du Perreux-sur-Marne",48.840368,2.507105,0,0,OIF:SA:59:3686073,Europe/Paris,,OIF, +OIF:SP:59:4028795,1,"Montaigne",48.838414,2.50959,0,0,OIF:SA:59:3686074,Europe/Paris,,OIF, +OIF:SP:59:4028797,1,"Place Beaufranchet",48.836397,2.512088,0,0,OIF:SA:59:3686075,Europe/Paris,,OIF, +OIF:SP:59:4028802,1,"Maréchal Joffre - Pont de Bry",48.834279,2.516029,0,0,OIF:SA:59:3686079,Europe/Paris,,OIF, +OIF:SP:59:4028831,1,"Villiers-sur-Marne - le Plessis-Trévise RER",48.823899,2.543653,0,0,OIF:SA:8711379,Europe/Paris,,OIF, +OIF:SP:59:4028833,1,"Rue de la Marne",48.840458,2.51906,0,0,OIF:SA:59:4028833,Europe/Paris,,OIF, +OIF:SP:59:4028834,1,"Avenue de Rigny",48.837934,2.518479,0,0,OIF:SA:59:4028834,Europe/Paris,,OIF, +OIF:SP:59:4028846,1,"Rue de Beauté",48.836315,2.47948,0,0,OIF:SA:59:4028846,Europe/Paris,,OIF, +OIF:SP:59:4028847,1,"Rue de Beauté",48.836521,2.479767,0,0,OIF:SA:59:4028846,Europe/Paris,,OIF, +OIF:SP:59:4028848,1,"Sous-Préfecture - Jules Ferry",48.836159,2.482176,0,0,OIF:SA:59:3708133,Europe/Paris,,OIF, +OIF:SP:59:4028849,1,"Sous-Préfecture - Jules Ferry",48.83641,2.482612,0,0,OIF:SA:59:3708133,Europe/Paris,,OIF, +OIF:SP:59:4028850,1,"Rue du Port",48.835737,2.489132,0,0,OIF:SA:59:4028850,Europe/Paris,,OIF, +OIF:SP:59:4028851,1,"Rue du Port",48.836161,2.487758,0,0,OIF:SA:59:4028850,Europe/Paris,,OIF, +OIF:SP:59:4028855,1,"Nogent-le-Perreux RER",48.838354,2.494531,0,0,OIF:SA:8711374,Europe/Paris,,OIF, +OIF:SP:59:4028885,1,"2 Décembre 1870",48.833941,2.525313,0,0,OIF:SA:59:4028885,Europe/Paris,,OIF, +OIF:SP:59:4028887,1,"Hôpital Saint-Camille",48.832553,2.52799,0,0,OIF:SA:59:4028887,Europe/Paris,,OIF, +OIF:SP:59:4028889,1,"Georges Méliès",48.832268,2.531815,0,0,OIF:SA:59:4028889,Europe/Paris,,OIF, +OIF:SP:59:4028891,1,"Route de Bry - Aristide Briand",48.831221,2.534697,0,0,OIF:SA:59:4028891,Europe/Paris,,OIF, +OIF:SP:59:4028893,1,"Friedberg",48.82983,2.53849,0,0,OIF:SA:8798693,Europe/Paris,,OIF, +OIF:SP:59:4028895,1,"Mairie de Villiers-sur-Marne",48.826295,2.540273,0,0,OIF:SA:59:4028895,Europe/Paris,,OIF, +OIF:SP:59:4028904,1,"Mairie de Villiers-sur-Marne",48.82607,2.540544,0,0,OIF:SA:59:4028895,Europe/Paris,,OIF, +OIF:SP:59:4028905,1,"Église de Villiers-sur-Marne",48.827245,2.542019,0,0,OIF:SA:59:4028905,Europe/Paris,,OIF, +OIF:SP:59:4028906,1,"Friedberg",48.829929,2.538749,0,0,OIF:SA:8798693,Europe/Paris,,OIF, +OIF:SP:59:4028907,1,"Route de Bry - Aristide Briand",48.831482,2.534548,0,0,OIF:SA:59:4028891,Europe/Paris,,OIF, +OIF:SP:59:4035029,1,"Rueil-Malmaison RER",48.886642,2.171079,0,0,OIF:SA:8775805,Europe/Paris,,OIF, +OIF:SP:59:4035479,1,"Maison des Jeunes",48.902683,2.568287,0,0,OIF:SA:59:4035479,Europe/Paris,,OIF, +OIF:SP:59:4035480,1,"Tuilerie",48.904388,2.564873,0,0,OIF:SA:59:4035480,Europe/Paris,,OIF, +OIF:SP:59:4035483,1,"Émile Zola",48.907099,2.556691,0,0,OIF:SA:59:4035483,Europe/Paris,,OIF, +OIF:SP:59:4035486,1,"La Pelouse",48.909487,2.553524,0,0,OIF:SA:59:3682259,Europe/Paris,,OIF, +OIF:SP:59:4035488,1,"Les Marronniers",48.911907,2.552116,0,0,OIF:SA:59:3682260,Europe/Paris,,OIF, +OIF:SP:59:4035489,1,"La Lorette",48.90988,2.549599,0,0,OIF:SA:59:4035489,Europe/Paris,,OIF, +OIF:SP:59:4035490,1,"La Lorette",48.909259,2.550251,0,0,OIF:SA:59:4035489,Europe/Paris,,OIF, +OIF:SP:59:4035500,1,"Salengro",48.908949,2.526322,0,0,OIF:SA:59:3682204,Europe/Paris,,OIF, +OIF:SP:59:4035503,1,"Allée des Bosquets",48.901913,2.519644,0,0,OIF:SA:59:4035503,Europe/Paris,,OIF, +OIF:SP:59:4035504,1,"Allée des Bosquets",48.9015,2.519561,0,0,OIF:SA:59:4035503,Europe/Paris,,OIF, +OIF:SP:59:4035509,1,"Gare des Pavillons-sous-Bois",48.902242,2.510198,0,0,OIF:SA:8711385,Europe/Paris,,OIF, +OIF:SP:59:4035510,1,"Gare des Pavillons-sous-Bois",48.902026,2.510265,0,0,OIF:SA:8711385,Europe/Paris,,OIF, +OIF:SP:59:4035511,1,"Président Wilson - Mairie",48.903135,2.507883,0,0,OIF:SA:59:4035511,Europe/Paris,,OIF, +OIF:SP:59:4035512,1,"Président Wilson - Mairie",48.902901,2.507883,0,0,OIF:SA:59:4035511,Europe/Paris,,OIF, +OIF:SP:59:4035513,1,"Pierre Brossolette - la Basoche",48.904163,2.505215,0,0,OIF:SA:59:4035513,Europe/Paris,,OIF, +OIF:SP:59:4035514,1,"Pierre Brossolette - la Basoche",48.904453,2.503975,0,0,OIF:SA:59:4035513,Europe/Paris,,OIF, +OIF:SP:59:4035515,1,"Jean-Baptiste Clément - Jaurès",48.905733,2.50113,0,0,OIF:SA:59:4035515,Europe/Paris,,OIF, +OIF:SP:59:4035516,1,"Jean-Baptiste Clément - Jaurès",48.905941,2.500094,0,0,OIF:SA:59:4035515,Europe/Paris,,OIF, +OIF:SP:59:4035517,1,"Pavillons de Garde",48.907789,2.495847,0,0,OIF:SA:59:4035517,Europe/Paris,,OIF, +OIF:SP:59:4035519,1,"La Fourche",48.907214,2.496036,0,0,OIF:SA:59:3682174,Europe/Paris,,OIF, +OIF:SP:59:4035526,1,"Pont de Bondy",48.905854,2.468615,0,0,OIF:SA:59:4035526,Europe/Paris,,OIF, +OIF:SP:59:4035527,1,"Pont de Bondy",48.905557,2.469064,0,0,OIF:SA:59:4035526,Europe/Paris,,OIF, +OIF:SP:59:4035542,1,"Avenue de Metz",48.896874,2.43228,0,0,OIF:SA:59:4035542,Europe/Paris,,OIF, +OIF:SP:59:4035543,1,"Raymond Queneau - Métro",48.895648,2.425449,0,0,OIF:SA:59343,Europe/Paris,,OIF, +OIF:SP:59:4035544,1,"Pierre Brossolette",48.894475,2.419409,0,0,OIF:SA:59:3682022,Europe/Paris,,OIF, +OIF:SP:59:4035546,1,"Église de Pantin - Métro",48.893392,2.413696,0,0,OIF:SA:59344,Europe/Paris,,OIF, +OIF:SP:59:4035547,1,"Église de Pantin - Métro",48.892809,2.412128,0,0,OIF:SA:59344,Europe/Paris,,OIF, +OIF:SP:59:4035549,1,"Porte de Pantin - Métro",48.888748,2.392565,0,0,OIF:SA:59756,Europe/Paris,,OIF, +OIF:SP:59:4035550,1,"Porte de Pantin - Métro",48.888533,2.392565,0,0,OIF:SA:59756,Europe/Paris,,OIF, +OIF:SP:59:4035551,1,"Ourcq",48.887429,2.387521,0,0,OIF:SA:59337,Europe/Paris,,OIF, +OIF:SP:59:4035552,1,"Ourcq",48.886953,2.386621,0,0,OIF:SA:59337,Europe/Paris,,OIF, +OIF:SP:59:4035559,1,"Château Landon",48.878387,2.361773,0,0,OIF:SA:59572,Europe/Paris,,OIF, +OIF:SP:59:4035560,1,"Château Landon",48.878639,2.362277,0,0,OIF:SA:59572,Europe/Paris,,OIF, +OIF:SP:59:4035561,1,"Gare de l'Est",48.876195,2.358651,0,0,OIF:SA:8711300,Europe/Paris,,OIF, +OIF:SP:59:4035562,1,"Gare de l'Est",48.875207,2.357752,0,0,OIF:SA:8711300,Europe/Paris,,OIF, +OIF:SP:59:4035564,1,"Hoche - Métro",48.891178,2.403021,0,0,OIF:SA:59345,Europe/Paris,,OIF, +OIF:SP:59:4035572,1,"Les Gazelles",48.902942,2.564117,0,0,OIF:SA:59:4035572,Europe/Paris,,OIF, +OIF:SP:59:4035573,1,"Paul Bert",48.900277,2.566886,0,0,OIF:SA:59:4035573,Europe/Paris,,OIF, +OIF:SP:59:4035650,1,"Gare de Sarcelles-Saint-Brice",48.99473,2.368425,0,0,OIF:SA:8727638,Europe/Paris,,OIF, +OIF:SP:59:4035676,1,"L'Avenir",48.96451,2.388661,0,0,OIF:SA:59:4035676,Europe/Paris,,OIF, +OIF:SP:59:4035677,1,"L'Avenir",48.96433,2.388647,0,0,OIF:SA:59:4035676,Europe/Paris,,OIF, +OIF:SP:59:4035679,1,"Léo Lagrange",48.96267,2.38451,0,0,OIF:SA:59:3740988,Europe/Paris,,OIF, +OIF:SP:59:4035686,1,"Le Globe",48.949225,2.385848,0,0,OIF:SA:59:3972571,Europe/Paris,,OIF, +OIF:SP:59:4035690,1,"Cité Floréal",48.941585,2.387315,0,0,OIF:SA:59:4000558,Europe/Paris,,OIF, +OIF:SP:59:4035697,1,"La Courneuve - Aubervilliers RER",48.922759,2.383641,0,0,OIF:SA:8727130,Europe/Paris,,OIF, +OIF:SP:59:4035699,1,"Crevecœur",48.918904,2.382342,0,0,OIF:SA:59:4035699,Europe/Paris,,OIF, +OIF:SP:59:4035700,1,"Mairie d'Aubervilliers",48.915786,2.381331,0,0,OIF:SA:59:3908815,Europe/Paris,,OIF, +OIF:SP:59:4035701,1,"Mairie d'Aubervilliers",48.913845,2.380838,0,0,OIF:SA:59:3908815,Europe/Paris,,OIF, +OIF:SP:59:4035710,1,"Skanderbeg",48.900072,2.370098,0,0,OIF:SA:59:4035710,Europe/Paris,,OIF, +OIF:SP:59:4035711,1,"Porte d'Aubervilliers",48.898778,2.369211,0,0,OIF:SA:59768,Europe/Paris,,OIF, +OIF:SP:59:4035712,1,"Émile Bertin",48.898716,2.365013,0,0,OIF:SA:59770,Europe/Paris,,OIF, +OIF:SP:59:4035713,1,"Émile Bertin",48.898428,2.365476,0,0,OIF:SA:59770,Europe/Paris,,OIF, +OIF:SP:59:4035716,1,"Boucry",48.895644,2.35915,0,0,OIF:SA:59:4035716,Europe/Paris,,OIF, +OIF:SP:59:4035717,1,"Boucry",48.894987,2.359545,0,0,OIF:SA:59:4035716,Europe/Paris,,OIF, +OIF:SP:59:4035718,1,"Les Roses",48.892992,2.35949,0,0,OIF:SA:59:4035718,Europe/Paris,,OIF, +OIF:SP:59:4035719,1,"Les Roses",48.892678,2.359885,0,0,OIF:SA:59:4035718,Europe/Paris,,OIF, +OIF:SP:59:4035720,1,"Ordener - Marx Dormoy",48.889829,2.359734,0,0,OIF:SA:59517,Europe/Paris,,OIF, +OIF:SP:59:4035722,1,"Département - Marx Dormoy",48.887321,2.359596,0,0,OIF:SA:59:4035722,Europe/Paris,,OIF, +OIF:SP:59:4035723,1,"Département - Marx Dormoy",48.886917,2.359773,0,0,OIF:SA:59:4035722,Europe/Paris,,OIF, +OIF:SP:59:4035730,1,"Gare de l'Est",48.875593,2.357711,0,0,OIF:SA:8711300,Europe/Paris,,OIF, +OIF:SP:59:4035734,1,"Porte d'Aubervilliers",48.898382,2.369457,0,0,OIF:SA:59768,Europe/Paris,,OIF, +OIF:SP:59:4035735,1,"Skanderbeg",48.899945,2.371243,0,0,OIF:SA:59:4035710,Europe/Paris,,OIF, +OIF:SP:59:4035741,1,"Garonor",48.956588,2.465756,0,0,OIF:SA:59:3666786,Europe/Paris,,OIF, +OIF:SP:59:4035743,1,"Robert Bremond",48.954341,2.457453,0,0,OIF:SA:59:3666784,Europe/Paris,,OIF, +OIF:SP:59:4035749,1,"Cimetière du Blanc-Mesnil",48.950189,2.457512,0,0,OIF:SA:59:4035749,Europe/Paris,,OIF, +OIF:SP:59:4035750,1,"Cosmonautes",48.949563,2.45515,0,0,OIF:SA:59:4035750,Europe/Paris,,OIF, +OIF:SP:59:4035777,1,"Le Bourget RER",48.931676,2.428143,0,0,OIF:SA:8727139,Europe/Paris,,OIF, +OIF:SP:59:4035778,1,"Le Bourget RER",48.930922,2.425823,0,0,OIF:SA:8727139,Europe/Paris,,OIF, +OIF:SP:59:4035781,1,"Avenue Paul Vaillant Couturier N0 176-191",48.92701,2.417142,0,0,OIF:SA:59:4035781,Europe/Paris,,OIF, +OIF:SP:59:4035782,1,"Avenue Paul Vaillant Couturier N0 176-191",48.928088,2.418821,0,0,OIF:SA:59:4035781,Europe/Paris,,OIF, +OIF:SP:59:4035799,1,"Porte de la Villette",48.898799,2.386632,0,0,OIF:SA:59288,Europe/Paris,,OIF, +OIF:SP:59:4035800,1,"Flandre-Alphonse Karr",48.894729,2.382021,0,0,OIF:SA:59302,Europe/Paris,,OIF, +OIF:SP:59:4035801,1,"Flandre-Alphonse Karr",48.894433,2.382062,0,0,OIF:SA:59302,Europe/Paris,,OIF, +OIF:SP:59:4035802,1,"Crimée",48.890211,2.376402,0,0,OIF:SA:59570,Europe/Paris,,OIF, +OIF:SP:59:4035803,1,"Crimée",48.890875,2.377589,0,0,OIF:SA:59570,Europe/Paris,,OIF, +OIF:SP:59:4035804,1,"Riquet",48.887956,2.373498,0,0,OIF:SA:59285,Europe/Paris,,OIF, +OIF:SP:59:4035805,1,"Riquet",48.888549,2.374616,0,0,OIF:SA:59285,Europe/Paris,,OIF, +OIF:SP:59:4035806,1,"Maroc - Flandre",48.885997,2.37103,0,0,OIF:SA:59:4035806,Europe/Paris,,OIF, +OIF:SP:59:4035807,1,"Maroc - Flandre",48.885809,2.371125,0,0,OIF:SA:59:4035806,Europe/Paris,,OIF, +OIF:SP:59:4035808,1,"Quai de la Seine - Stalingrad",48.884506,2.369189,0,0,OIF:SA:59279,Europe/Paris,,OIF, +OIF:SP:59:4035809,1,"Quai de la Seine - Stalingrad",48.884542,2.36953,0,0,OIF:SA:59279,Europe/Paris,,OIF, +OIF:SP:59:4035811,1,"Louis Blanc",48.880715,2.364499,0,0,OIF:SA:59296,Europe/Paris,,OIF, +OIF:SP:59:4035812,1,"Louis Blanc",48.881649,2.366366,0,0,OIF:SA:59296,Europe/Paris,,OIF, +OIF:SP:59:4035815,1,"Gare de l'Est",48.875782,2.358188,0,0,OIF:SA:8711300,Europe/Paris,,OIF, +OIF:SP:59:4035817,1,"Verdun",48.876285,2.360845,0,0,OIF:SA:8711300,Europe/Paris,,OIF, +OIF:SP:59:4035818,1,"Jaurès - Stalingrad",48.88234,2.369038,0,0,OIF:SA:59635,Europe/Paris,,OIF, +OIF:SP:59:4035819,1,"Porte de la Villette - Macdonald",48.898197,2.386318,0,0,OIF:SA:59288,Europe/Paris,,OIF, +OIF:SP:59:4035826,1,"Mairie de Drancy",48.923708,2.445081,0,0,OIF:SA:59:4035826,Europe/Paris,,OIF, +OIF:SP:59:4035827,1,"Rond-Point de la Division Leclerc",48.947618,2.458529,0,0,OIF:SA:59:4035827,Europe/Paris,,OIF, +OIF:SP:59:4035926,1,"Nogent-le-Perreux RER",48.838354,2.494368,0,0,OIF:SA:8711374,Europe/Paris,,OIF, +OIF:SP:59:4035928,1,"Viaduc",48.835201,2.4935,0,0,OIF:SA:59:3686069,Europe/Paris,,OIF, +OIF:SP:59:4035934,1,"Les Marronniers",48.822431,2.491965,0,0,OIF:SA:59:4035934,Europe/Paris,,OIF, +OIF:SP:59:4035935,1,"Les Marronniers",48.822359,2.492495,0,0,OIF:SA:59:4035934,Europe/Paris,,OIF, +OIF:SP:59:4035936,1,"La Fourchette de Champigny",48.82049,2.485344,0,0,OIF:SA:59:4035936,Europe/Paris,,OIF, +OIF:SP:59:4035937,1,"La Fourchette de Champigny",48.820184,2.485207,0,0,OIF:SA:59:4035936,Europe/Paris,,OIF, +OIF:SP:59:4035944,1,"Croix Souris",48.809407,2.470888,0,0,OIF:SA:59:4035944,Europe/Paris,,OIF, +OIF:SP:59:4035945,1,"Saint-Maur-Creteil RER",48.807097,2.471005,0,0,OIF:SA:8775815,Europe/Paris,,OIF, +OIF:SP:59:4035958,1,"Viet",48.800935,2.450376,0,0,OIF:SA:59:4035958,Europe/Paris,,OIF, +OIF:SP:59:4035959,1,"Les Juilliottes - Métro",48.805022,2.44267,0,0,OIF:SA:59483,Europe/Paris,,OIF, +OIF:SP:59:4035960,1,"Les Juilliottes - Métro",48.804888,2.442357,0,0,OIF:SA:59483,Europe/Paris,,OIF, +OIF:SP:59:4035961,1,"République - Général Leclerc",48.805526,2.441705,0,0,OIF:SA:59:3619909,Europe/Paris,,OIF, +OIF:SP:59:4035962,1,"République - Général Leclerc",48.805482,2.441174,0,0,OIF:SA:59:3619909,Europe/Paris,,OIF, +OIF:SP:59:4035963,1,"Cécile",48.807345,2.438239,0,0,OIF:SA:59484,Europe/Paris,,OIF, +OIF:SP:59:4035964,1,"Cécile",48.807751,2.436879,0,0,OIF:SA:59484,Europe/Paris,,OIF, +OIF:SP:59:4035965,1,"Stade - Métro",48.809118,2.434868,0,0,OIF:SA:59484,Europe/Paris,,OIF, +OIF:SP:59:4035966,1,"Stade - Métro",48.809029,2.434514,0,0,OIF:SA:59484,Europe/Paris,,OIF, +OIF:SP:59:4035967,1,"8 Mai 1945",48.810955,2.431415,0,0,OIF:SA:59:4035967,Europe/Paris,,OIF, +OIF:SP:59:4035968,1,"8 Mai 1945",48.809911,2.432814,0,0,OIF:SA:59:4035967,Europe/Paris,,OIF, +OIF:SP:59:4035969,1,"École Vétérinaire de Maisons-Alfort - Métro",48.814547,2.423473,0,0,OIF:SA:59565,Europe/Paris,,OIF, +OIF:SP:59:4035970,1,"École Vétérinaire de Maisons-Alfort - Métro",48.814827,2.421868,0,0,OIF:SA:59565,Europe/Paris,,OIF, +OIF:SP:59:4035971,1,"Victor Hugo",48.818878,2.411123,0,0,OIF:SA:59:3716914,Europe/Paris,,OIF, +OIF:SP:59:4035972,1,"Charenton Écoles",48.822185,2.412869,0,0,OIF:SA:59482,Europe/Paris,,OIF, +OIF:SP:59:4035973,1,"Théâtre de Charenton",48.823327,2.411102,0,0,OIF:SA:59:4035973,Europe/Paris,,OIF, +OIF:SP:59:4035974,1,"Théâtre de Charenton",48.823669,2.410122,0,0,OIF:SA:59:4035973,Europe/Paris,,OIF, +OIF:SP:59:4035975,1,"Liberté - Métro",48.826296,2.406573,0,0,OIF:SA:59562,Europe/Paris,,OIF, +OIF:SP:59:4035976,1,"Liberté - Métro",48.825532,2.40728,0,0,OIF:SA:59562,Europe/Paris,,OIF, +OIF:SP:59:4035977,1,"Félix Langlais",48.828986,2.402343,0,0,OIF:SA:59:4035977,Europe/Paris,,OIF, +OIF:SP:59:4035978,1,"Félix Langlais",48.829166,2.401595,0,0,OIF:SA:59:4035977,Europe/Paris,,OIF, +OIF:SP:59:4035979,1,"Porte de Charenton",48.83163,2.398208,0,0,OIF:SA:59465,Europe/Paris,,OIF, +OIF:SP:59:4035980,1,"Porte de Charenton",48.831343,2.398194,0,0,OIF:SA:59465,Europe/Paris,,OIF, +OIF:SP:59:4035988,1,"Gare de Lyon",48.843981,2.373208,0,0,OIF:SA:8768600,Europe/Paris,,OIF, +OIF:SP:59:4035992,1,"Gare de Lyon - Diderot.",48.845922,2.373523,0,0,OIF:SA:8768600,Europe/Paris,,OIF, +OIF:SP:59:4035993,1,"Charenton - Jardiniers",48.833376,2.395106,0,0,OIF:SA:59:4035993,Europe/Paris,,OIF, +OIF:SP:59:4035994,1,"Charenton-Écoles",48.821223,2.412718,0,0,OIF:SA:59482,Europe/Paris,,OIF, +OIF:SP:59:4035995,1,"Pont de Charenton",48.81775,2.418674,0,0,OIF:SA:59:4035995,Europe/Paris,,OIF, +OIF:SP:59:4035996,1,"Ernest Renan",48.812656,2.427594,0,0,OIF:SA:59:3686542,Europe/Paris,,OIF, +OIF:SP:59:4035999,1,"Charles Floquet - Diderot",48.815173,2.481491,0,0,OIF:SA:59:3619482,Europe/Paris,,OIF, +OIF:SP:59:4036000,1,"42E de Ligne",48.81919,2.482523,0,0,OIF:SA:59:4036000,Europe/Paris,,OIF, +OIF:SP:59:4036001,1,"Pierre Brossolette",48.82962,2.49332,0,0,OIF:SA:59:4036001,Europe/Paris,,OIF, +OIF:SP:59:4036168,1,"Docteur Bring",48.817589,2.538837,0,0,OIF:SA:59:3619370,Europe/Paris,,OIF, +OIF:SP:59:4036169,1,"Voltaire",48.814921,2.537874,0,0,OIF:SA:59:4036169,Europe/Paris,,OIF, +OIF:SP:59:4036183,1,"La Fourchette de Champigny",48.819761,2.485519,0,0,OIF:SA:59:4035936,Europe/Paris,,OIF, +OIF:SP:59:4036184,1,"Les Platanes",48.820166,2.477993,0,0,OIF:SA:59:4036184,Europe/Paris,,OIF, +OIF:SP:59:4036185,1,"Verdun",48.82053,2.473829,0,0,OIF:SA:59:3619394,Europe/Paris,,OIF, +OIF:SP:59:4036193,1,"Vignerons",48.845233,2.432703,0,0,OIF:SA:8775811,Europe/Paris,,OIF, +OIF:SP:59:4036195,1,"Aubert",48.845465,2.422136,0,0,OIF:SA:59:4036195,Europe/Paris,,OIF, +OIF:SP:59:4036196,1,"Mairie de Saint-Mandé",48.843797,2.417218,0,0,OIF:SA:59:3748073,Europe/Paris,,OIF, +OIF:SP:59:4036198,1,"Montempoivre",48.840064,2.408784,0,0,OIF:SA:59732,Europe/Paris,,OIF, +OIF:SP:59:4036199,1,"Porte Dorée",48.835751,2.406341,0,0,OIF:SA:59559,Europe/Paris,,OIF, +OIF:SP:59:4036200,1,"Michel Bizot",48.837083,2.402653,0,0,OIF:SA:59466,Europe/Paris,,OIF, +OIF:SP:59:4036212,1,"Porte Dorée",48.835599,2.406082,0,0,OIF:SA:59559,Europe/Paris,,OIF, +OIF:SP:59:4036213,1,"Montempoivre",48.840567,2.409247,0,0,OIF:SA:59732,Europe/Paris,,OIF, +OIF:SP:59:4036215,1,"Mairie de Saint-Mandé",48.843796,2.418892,0,0,OIF:SA:59:3748073,Europe/Paris,,OIF, +OIF:SP:59:4036216,1,"Aubert",48.845806,2.423975,0,0,OIF:SA:59:4036195,Europe/Paris,,OIF, +OIF:SP:59:4036217,1,"Bérault - Métro",48.845525,2.427311,0,0,OIF:SA:59596,Europe/Paris,,OIF, +OIF:SP:59:4036218,1,"Vignerons",48.845089,2.432035,0,0,OIF:SA:8775811,Europe/Paris,,OIF, +OIF:SP:59:4036225,1,"Carrefour de la Résistance",48.82006,2.46803,0,0,OIF:SA:59:3619476,Europe/Paris,,OIF, +OIF:SP:59:4036226,1,"Verdun",48.819712,2.474195,0,0,OIF:SA:59:3619394,Europe/Paris,,OIF, +OIF:SP:59:4036227,1,"Les Platanes",48.819958,2.478864,0,0,OIF:SA:59:4036184,Europe/Paris,,OIF, +OIF:SP:59:4036228,1,"La Fourchette de Champigny",48.8196,2.485301,0,0,OIF:SA:59:4035936,Europe/Paris,,OIF, +OIF:SP:59:4036238,1,"Fort de Champigny",48.806029,2.534274,0,0,OIF:SA:59:3718082,Europe/Paris,,OIF, +OIF:SP:59:4036241,1,"Voltaire",48.814543,2.537899,0,0,OIF:SA:59:4036169,Europe/Paris,,OIF, +OIF:SP:59:4036622,1,"Fraternité",48.859845,2.423113,0,0,OIF:SA:59:4036622,Europe/Paris,,OIF, +OIF:SP:59:4036623,1,"République - Robespierre",48.860629,2.420009,0,0,OIF:SA:59:4036623,Europe/Paris,,OIF, +OIF:SP:59:4036628,1,"Gambetta",48.865055,2.398056,0,0,OIF:SA:59325,Europe/Paris,,OIF, +OIF:SP:59:4036657,1,"Opéra",48.870886,2.33305,0,0,OIF:SA:59209,Europe/Paris,,OIF, +OIF:SP:59:4036661,1,"Gare Saint-Lazare",48.874525,2.32542,0,0,OIF:SA:8738400,Europe/Paris,,OIF, +OIF:SP:59:4036663,1,"Villiers",48.881956,2.313958,0,0,OIF:SA:59415,Europe/Paris,,OIF, +OIF:SP:59:4036666,1,"Porte de Courcelles",48.8879,2.294575,0,0,OIF:SA:59436,Europe/Paris,,OIF, +OIF:SP:59:4036667,1,"Mairie de Levallois",48.893183,2.289515,0,0,OIF:SA:59:4016760,Europe/Paris,,OIF, +OIF:SP:59:4036668,1,"Vaillant-Couturier",48.895402,2.287536,0,0,OIF:SA:59:3765180,Europe/Paris,,OIF, +OIF:SP:59:4036731,1,"Porte de Clichy",48.894502,2.312889,0,0,OIF:SA:8711127,Europe/Paris,,OIF, +OIF:SP:59:4036741,1,"Place de Clichy",48.882847,2.326344,0,0,OIF:SA:59421,Europe/Paris,,OIF, +OIF:SP:59:4036749,1,"Gare Saint-Lazare.",48.875316,2.325379,0,0,OIF:SA:8738400,Europe/Paris,,OIF, +OIF:SP:59:4036758,1,"Bourse",48.868603,2.341088,0,0,OIF:SA:59444,Europe/Paris,,OIF, +OIF:SP:59:4036769,1,"Châtelet.",48.857098,2.350376,0,0,OIF:SA:59566,Europe/Paris,,OIF, +OIF:SP:59:4036773,1,"Maubert - Mutualité",48.849414,2.349285,0,0,OIF:SA:59357,Europe/Paris,,OIF, +OIF:SP:59:4036774,1,"Maubert - Mutualité",48.84945,2.349543,0,0,OIF:SA:59357,Europe/Paris,,OIF, +OIF:SP:59:4036775,1,"Cardinal Lemoine",48.846214,2.351653,0,0,OIF:SA:59380,Europe/Paris,,OIF, +OIF:SP:59:4036776,1,"Cardinal Lemoine",48.846897,2.351531,0,0,OIF:SA:59380,Europe/Paris,,OIF, +OIF:SP:59:4036777,1,"Monge",48.843536,2.352102,0,0,OIF:SA:59277,Europe/Paris,,OIF, +OIF:SP:59:4036778,1,"Monge",48.842889,2.352306,0,0,OIF:SA:59277,Europe/Paris,,OIF, +OIF:SP:59:4036779,1,"Censier - Daubenton",48.840974,2.351774,0,0,OIF:SA:59306,Europe/Paris,,OIF, +OIF:SP:59:4036780,1,"Censier - Daubenton",48.841019,2.352033,0,0,OIF:SA:59306,Europe/Paris,,OIF, +OIF:SP:59:4036781,1,"Monge - Claude Bernard",48.838916,2.350698,0,0,OIF:SA:59:3893364,Europe/Paris,,OIF, +OIF:SP:59:4036782,1,"Monge - Claude Bernard",48.838961,2.350998,0,0,OIF:SA:59:3893364,Europe/Paris,,OIF, +OIF:SP:59:4036788,1,"Vandrezanne",48.827645,2.356698,0,0,OIF:SA:59:4036788,Europe/Paris,,OIF, +OIF:SP:59:4036789,1,"Vandrezanne",48.828175,2.356848,0,0,OIF:SA:59:4036788,Europe/Paris,,OIF, +OIF:SP:59:4036790,1,"Italie - Tolbiac",48.825803,2.357269,0,0,OIF:SA:59283,Europe/Paris,,OIF, +OIF:SP:59:4036791,1,"Italie - Tolbiac",48.826414,2.357419,0,0,OIF:SA:59283,Europe/Paris,,OIF, +OIF:SP:59:4036792,1,"Maison Blanche",48.822522,2.358289,0,0,OIF:SA:59298,Europe/Paris,,OIF, +OIF:SP:59:4036794,1,"Porte d'Italie",48.819412,2.359254,0,0,OIF:SA:59666,Europe/Paris,,OIF, +OIF:SP:59:4036795,1,"Porte d'Italie",48.819466,2.359553,0,0,OIF:SA:59666,Europe/Paris,,OIF, +OIF:SP:59:4036796,1,"Porte d'Italie - Hélène Boucher",48.818441,2.359512,0,0,OIF:SA:59666,Europe/Paris,,OIF, +OIF:SP:59:4036797,1,"Porte d'Italie - Hélène Boucher",48.818522,2.359812,0,0,OIF:SA:59666,Europe/Paris,,OIF, +OIF:SP:59:4036802,1,"Le Kremlin-Bicêtre - Métro",48.810478,2.361958,0,0,OIF:SA:59578,Europe/Paris,,OIF, +OIF:SP:59:4036804,1,"Dauphin - Anatole France",48.80504,2.363615,0,0,OIF:SA:59580,Europe/Paris,,OIF, +OIF:SP:59:4036805,1,"Dauphin - Anatole France",48.804833,2.364105,0,0,OIF:SA:59580,Europe/Paris,,OIF, +OIF:SP:59:4036806,1,"Henri Barbusse",48.802379,2.364403,0,0,OIF:SA:59580,Europe/Paris,,OIF, +OIF:SP:59:4036807,1,"Henri Barbusse",48.803143,2.364703,0,0,OIF:SA:59580,Europe/Paris,,OIF, +OIF:SP:59:4036808,1,"Dispensaire Danielle Casanova",48.798226,2.365898,0,0,OIF:SA:59:4036808,Europe/Paris,,OIF, +OIF:SP:59:4036809,1,"Dispensaire Danielle Casanova",48.799251,2.366715,0,0,OIF:SA:59:4036808,Europe/Paris,,OIF, +OIF:SP:59:4036819,1,"Lagrange",48.851823,2.34795,0,0,OIF:SA:59:4036819,Europe/Paris,,OIF, +OIF:SP:59:4036870,1,"Châtelet",48.857548,2.347884,0,0,OIF:SA:59566,Europe/Paris,,OIF, +OIF:SP:59:4036879,1,"Vavin",48.841667,2.329539,0,0,OIF:SA:59254,Europe/Paris,,OIF, +OIF:SP:59:4036880,1,"Vavin",48.841533,2.329907,0,0,OIF:SA:59254,Europe/Paris,,OIF, +OIF:SP:59:4036883,1,"Victor Considérant",48.835214,2.331936,0,0,OIF:SA:8775863,Europe/Paris,,OIF, +OIF:SP:59:4036884,1,"Victor Considérant",48.835098,2.332304,0,0,OIF:SA:8775863,Europe/Paris,,OIF, +OIF:SP:59:4036885,1,"Denfert-Rochereau",48.833776,2.33146,0,0,OIF:SA:8775863,Europe/Paris,,OIF, +OIF:SP:59:4036891,1,"Porte d'Orléans",48.823764,2.325458,0,0,OIF:SA:59624,Europe/Paris,,OIF, +OIF:SP:59:4036892,1,"Porte d'Orléans",48.823566,2.325717,0,0,OIF:SA:59624,Europe/Paris,,OIF, +OIF:SP:59:4036893,1,"Porte d'Orléans - Métro",48.822739,2.325227,0,0,OIF:SA:59624,Europe/Paris,,OIF, +OIF:SP:59:4036917,1,"Carnot - Aristide Briand",48.799155,2.323192,0,0,OIF:SA:59:4036917,Europe/Paris,,OIF, +OIF:SP:59:4036919,1,"Croix d'Arcueil",48.805276,2.325653,0,0,OIF:SA:59:3755019,Europe/Paris,,OIF, +OIF:SP:59:4036922,1,"Observatoire - Port Royal",48.840212,2.337069,0,0,OIF:SA:8775862,Europe/Paris,,OIF, +OIF:SP:59:4036960,1,"Centre National de la Danse",48.895502,2.401077,0,0,OIF:SA:59758,Europe/Paris,,OIF, +OIF:SP:59:4036961,1,"Centre National de la Danse",48.895439,2.401309,0,0,OIF:SA:59758,Europe/Paris,,OIF, +OIF:SP:59:4036985,1,"Châtelet",48.857467,2.349082,0,0,OIF:SA:59566,Europe/Paris,,OIF, +OIF:SP:59:4037029,1,"Porte de Versailles",48.832913,2.288916,0,0,OIF:SA:59514,Europe/Paris,,OIF, +OIF:SP:59:4037160,1,"Château de Vincennes",48.84422,2.440272,0,0,OIF:SA:59595,Europe/Paris,,OIF, +OIF:SP:59:4037167,1,"Aubert",48.846103,2.422859,0,0,OIF:SA:59:4037167,Europe/Paris,,OIF, +OIF:SP:59:4037197,1,"Châtelet",48.857539,2.348851,0,0,OIF:SA:59566,Europe/Paris,,OIF, +OIF:SP:59:4037230,1,"Pont de Neuilly - Métro",48.88463,2.260209,0,0,OIF:SA:59661,Europe/Paris,,OIF, +OIF:SP:59:4037248,1,"Tourelle - Métro",48.846123,2.420163,0,0,OIF:SA:59662,Europe/Paris,,OIF, +OIF:SP:59:4037266,1,"Saint-Gilles - Chemin Vert",48.857275,2.3683,0,0,OIF:SA:59473,Europe/Paris,,OIF, +OIF:SP:59:4037267,1,"Oberkampf - Filles du Calvaire",48.861975,2.367145,0,0,OIF:SA:59472,Europe/Paris,,OIF, +OIF:SP:59:4037278,1,"Blanche",48.88372,2.333608,0,0,OIF:SA:59428,Europe/Paris,,OIF, +OIF:SP:59:4037279,1,"Place de Clichy - Caulaincourt",48.884501,2.329001,0,0,OIF:SA:59421,Europe/Paris,,OIF, +OIF:SP:59:4037298,1,"Gare Montparnasse.",48.842179,2.320253,0,0,OIF:SA:8739100,Europe/Paris,,OIF, +OIF:SP:59:4037717,1,"Grand Cerf",48.923337,2.208029,0,0,OIF:SA:8743282,Europe/Paris,,OIF, +OIF:SP:59:4037719,1,"Émile Zola",48.924354,2.208953,0,0,OIF:SA:59:4037719,Europe/Paris,,OIF, +OIF:SP:59:4037720,1,"Henri Barbusse",48.925372,2.211024,0,0,OIF:SA:18:19514,Europe/Paris,,OIF, +OIF:SP:59:4037721,1,"Henri Barbusse",48.925326,2.210656,0,0,OIF:SA:18:19514,Europe/Paris,,OIF, +OIF:SP:59:4037722,1,"La Grâce de Dieu",48.926967,2.215153,0,0,OIF:SA:59:4023775,Europe/Paris,,OIF, +OIF:SP:59:4037723,1,"La Grâce de Dieu",48.927065,2.21503,0,0,OIF:SA:59:4023775,Europe/Paris,,OIF, +OIF:SP:59:4037726,1,"Parc Pierre Lagravère",48.91762,2.224311,0,0,OIF:SA:59718,Europe/Paris,,OIF, +OIF:SP:59:4037728,1,"Victor Basch",48.91377,2.229555,0,0,OIF:SA:59716,Europe/Paris,,OIF, +OIF:SP:59:4037729,1,"Victor Basch",48.914928,2.228871,0,0,OIF:SA:59716,Europe/Paris,,OIF, +OIF:SP:59:4037730,1,"Jacqueline Auriol",48.911534,2.232505,0,0,OIF:SA:59714,Europe/Paris,,OIF, +OIF:SP:59:4037731,1,"Jacqueline Auriol",48.911059,2.233978,0,0,OIF:SA:59714,Europe/Paris,,OIF, +OIF:SP:59:4037732,1,"Gare de la Garenne-Colombes",48.910044,2.234594,0,0,OIF:SA:59714,Europe/Paris,,OIF, +OIF:SP:59:4037738,1,"Les Fauvelles",48.90196,2.239395,0,0,OIF:SA:59:4022935,Europe/Paris,,OIF, +OIF:SP:59:4037739,1,"Les Fauvelles",48.901987,2.239695,0,0,OIF:SA:59:4022935,Europe/Paris,,OIF, +OIF:SP:59:4037740,1,"Dieppe",48.899615,2.23974,0,0,OIF:SA:59:4037740,Europe/Paris,,OIF, +OIF:SP:59:4037741,1,"Dieppe",48.900253,2.239957,0,0,OIF:SA:59:4037740,Europe/Paris,,OIF, +OIF:SP:59:4037743,1,"Faubourg de l'Arche",48.896829,2.24044,0,0,OIF:SA:59708,Europe/Paris,,OIF, +OIF:SP:59:4037745,1,"Caron",48.895805,2.240592,0,0,OIF:SA:59708,Europe/Paris,,OIF, +OIF:SP:59:4037799,1,"Alsace",48.889979,2.24998,0,0,OIF:SA:59593,Europe/Paris,,OIF, +OIF:SP:59:4037800,1,"Gambetta",48.891924,2.24293,0,0,OIF:SA:59:4037800,Europe/Paris,,OIF, +OIF:SP:59:4037801,1,"Émile Zola",48.924777,2.209471,0,0,OIF:SA:59:4037719,Europe/Paris,,OIF, +OIF:SP:59:4044988,1,"Gare de l'Est",48.875818,2.357902,0,0,OIF:SA:8711300,Europe/Paris,,OIF, +OIF:SP:59:4044990,1,"République",48.867144,2.364955,0,0,OIF:SA:59557,Europe/Paris,,OIF, +OIF:SP:59:4044991,1,"Oberkampf - Filles du Calvaire",48.862164,2.366805,0,0,OIF:SA:59472,Europe/Paris,,OIF, +OIF:SP:59:4044992,1,"Saint-Gilles - Chemin Vert",48.857284,2.367987,0,0,OIF:SA:59473,Europe/Paris,,OIF, +OIF:SP:59:4045023,1,"Trinité",48.877069,2.330842,0,0,OIF:SA:59600,Europe/Paris,,OIF, +OIF:SP:59:4045029,1,"Anvers - Sacre Cœur",48.882677,2.344278,0,0,OIF:SA:59426,Europe/Paris,,OIF, +OIF:SP:59:4045030,1,"Rochechouart - Clignancourt",48.883054,2.346185,0,0,OIF:SA:59:3740301,Europe/Paris,,OIF, +OIF:SP:59:4045034,1,"Gare de l'Est.",48.876007,2.358025,0,0,OIF:SA:8711300,Europe/Paris,,OIF, +OIF:SP:59:4075434,1,"Terminal 2A-2C",49.003432,2.564708,0,0,OIF:SA:8700147,Europe/Paris,,OIF, +OIF:SP:59:4075438,1,"Terminal 1",49.015264,2.541508,0,0,OIF:SA:59685,Europe/Paris,,OIF, +OIF:SP:59:4109728,1,"Château de Vincennes",48.844147,2.441361,0,0,OIF:SA:59595,Europe/Paris,,OIF, +OIF:SP:59:4109752,1,"Bellevue",48.845995,2.506796,0,0,OIF:SA:59:4109752,Europe/Paris,,OIF, +OIF:SP:59:4109754,1,"Bords de Marne",48.849281,2.508741,0,0,OIF:SA:59:4109754,Europe/Paris,,OIF, +OIF:SP:59:4109755,1,"Neuilly-Plaisance RER",48.852699,2.513505,0,0,OIF:SA:8775831,Europe/Paris,,OIF, +OIF:SP:59:4109756,1,"Neuilly-Plaisance RER",48.853121,2.513411,0,0,OIF:SA:8775831,Europe/Paris,,OIF, +OIF:SP:59:4109757,1,"Raspail - RER",48.853541,2.514925,0,0,OIF:SA:8775831,Europe/Paris,,OIF, +OIF:SP:59:4109765,1,"Georges Pompidou",48.864314,2.51691,0,0,OIF:SA:59:4109765,Europe/Paris,,OIF, +OIF:SP:59:4109767,1,"Marcel Dassault",48.865539,2.515661,0,0,OIF:SA:59:4109767,Europe/Paris,,OIF, +OIF:SP:59:4109769,1,"Alexander Fleming",48.864869,2.512675,0,0,OIF:SA:59:4109769,Europe/Paris,,OIF, +OIF:SP:59:4109771,1,"Kennedy - Renouillères",48.865383,2.511737,0,0,OIF:SA:59:4109771,Europe/Paris,,OIF, +OIF:SP:59:4109773,1,"Rue des Hersiers",48.86677,2.50918,0,0,OIF:SA:59:4109773,Europe/Paris,,OIF, +OIF:SP:59:4109775,1,"Etienne Dolet",48.866828,2.506579,0,0,OIF:SA:59:4109775,Europe/Paris,,OIF, +OIF:SP:59:4109777,1,"Bel Air",48.870029,2.505717,0,0,OIF:SA:59:4109777,Europe/Paris,,OIF, +OIF:SP:59:4109779,1,"Avenue de Rosny",48.872497,2.508014,0,0,OIF:SA:59:4109779,Europe/Paris,,OIF, +OIF:SP:59:4109781,1,"Plateau d'Avron - Place de Stalingrad",48.872808,2.510604,0,0,OIF:SA:59:4109781,Europe/Paris,,OIF, +OIF:SP:59:4109783,1,"Parmentier",48.876146,2.507917,0,0,OIF:SA:59:4109783,Europe/Paris,,OIF, +OIF:SP:59:4109784,1,"Marcel Douret",48.879701,2.510777,0,0,OIF:SA:59:4109784,Europe/Paris,,OIF, +OIF:SP:59:4109785,1,"Hoche",48.881559,2.512064,0,0,OIF:SA:59:4109785,Europe/Paris,,OIF, +OIF:SP:59:4109788,1,"Général Leclerc",48.886198,2.51103,0,0,OIF:SA:59:4109788,Europe/Paris,,OIF, +OIF:SP:59:4109790,1,"Le Raincy-Villemomble-Montfermeil RER",48.888607,2.511175,0,0,OIF:SA:8711347,Europe/Paris,,OIF, +OIF:SP:59:4109792,1,"Gallieni-le Raincy-Villemomble-Montfermeil RER",48.889874,2.511042,0,0,OIF:SA:8711347,Europe/Paris,,OIF, +OIF:SP:59:4109793,1,"Gallieni-le Raincy-Villemomble-Montfermeil RER",48.889632,2.511083,0,0,OIF:SA:8711347,Europe/Paris,,OIF, +OIF:SP:59:4109794,1,"Marius Gonin",48.891525,2.507027,0,0,OIF:SA:59:4109794,Europe/Paris,,OIF, +OIF:SP:59:4109795,1,"Marius Gonin",48.89157,2.506564,0,0,OIF:SA:59:4109794,Europe/Paris,,OIF, +OIF:SP:59:4109796,1,"Les Coquetiers",48.893238,2.502821,0,0,OIF:SA:8711384,Europe/Paris,,OIF, +OIF:SP:59:4109798,1,"Allée de la Tour",48.896092,2.505625,0,0,OIF:SA:8711387,Europe/Paris,,OIF, +OIF:SP:59:4109799,1,"Charles Hildevert",48.893996,2.506899,0,0,OIF:SA:59:4109799,Europe/Paris,,OIF, +OIF:SP:59:4109802,1,"Caves d'Avron",48.874639,2.51204,0,0,OIF:SA:59:4109802,Europe/Paris,,OIF, +OIF:SP:59:4109803,1,"Mairie de Neuilly-Plaisance",48.860179,2.505808,0,0,OIF:SA:59:4109803,Europe/Paris,,OIF, +OIF:SP:59:4109804,1,"Jean Jaurès - Victor Hugo",48.85883,2.506307,0,0,OIF:SA:59:4109804,Europe/Paris,,OIF, +OIF:SP:59:4109805,1,"La Maltournée",48.851247,2.5106,0,0,OIF:SA:59:4109805,Europe/Paris,,OIF, +OIF:SP:59:4109806,1,"Hôtel des Coignard",48.838335,2.488336,0,0,OIF:SA:59:4109806,Europe/Paris,,OIF, +OIF:SP:59:4109808,1,"Le Raincy-Villemomble-Montfermeil RER",48.888671,2.510357,0,0,OIF:SA:8711347,Europe/Paris,,OIF, +OIF:SP:59:4109809,1,"Général Leclerc",48.886373,2.508564,0,0,OIF:SA:59:4109788,Europe/Paris,,OIF, +OIF:SP:59:4109810,1,"Château de Villemomble",48.883962,2.510328,0,0,OIF:SA:59:4109810,Europe/Paris,,OIF, +OIF:SP:59:4109811,1,"Marceau",48.882509,2.514234,0,0,OIF:SA:59:4109811,Europe/Paris,,OIF, +OIF:SP:59:4109812,1,"Lucien Berneux",48.877734,2.515703,0,0,OIF:SA:59:4109812,Europe/Paris,,OIF, +OIF:SP:59:4109814,1,"Plateau d'Avron - Place de Stalingrad",48.873105,2.510564,0,0,OIF:SA:59:4109781,Europe/Paris,,OIF, +OIF:SP:59:4109815,1,"Avenue de Rosny",48.871995,2.50744,0,0,OIF:SA:59:4109779,Europe/Paris,,OIF, +OIF:SP:59:4109816,1,"Bel Air",48.869751,2.505335,0,0,OIF:SA:59:4109777,Europe/Paris,,OIF, +OIF:SP:59:4109817,1,"Etienne Dolet",48.868062,2.505057,0,0,OIF:SA:59:4109775,Europe/Paris,,OIF, +OIF:SP:59:4109818,1,"Rue des Hersiers",48.866662,2.509507,0,0,OIF:SA:59:4109773,Europe/Paris,,OIF, +OIF:SP:59:4109819,1,"Kennedy - Renouillères",48.865419,2.511573,0,0,OIF:SA:59:4109771,Europe/Paris,,OIF, +OIF:SP:59:4109820,1,"Alexander Fleming",48.864761,2.512715,0,0,OIF:SA:59:4109769,Europe/Paris,,OIF, +OIF:SP:59:4109821,1,"Marcel Dassault",48.86545,2.515143,0,0,OIF:SA:59:4109767,Europe/Paris,,OIF, +OIF:SP:59:4109822,1,"Georges Pompidou",48.864072,2.516446,0,0,OIF:SA:59:4109765,Europe/Paris,,OIF, +OIF:SP:59:4109823,1,"Cimetière de Neuilly-Plaisance",48.863089,2.512723,0,0,OIF:SA:59:4109823,Europe/Paris,,OIF, +OIF:SP:59:4109824,1,"Square Jean Mermoz",48.860921,2.507935,0,0,OIF:SA:59:3685949,Europe/Paris,,OIF, +OIF:SP:59:4109827,1,"Faidherbe - Église",48.857102,2.507718,0,0,OIF:SA:59:4109827,Europe/Paris,,OIF, +OIF:SP:59:4109832,1,"Docteur Charcot",48.882382,2.199096,0,0,OIF:SA:59:4109832,Europe/Paris,,OIF, +OIF:SP:59:4109833,1,"Docteur Charcot",48.882418,2.19945,0,0,OIF:SA:59:4109832,Europe/Paris,,OIF, +OIF:SP:59:4109834,1,"Les Gibets",48.880401,2.19594,0,0,OIF:SA:59:4109834,Europe/Paris,,OIF, +OIF:SP:59:4109835,1,"Les Gibets",48.880527,2.196321,0,0,OIF:SA:59:4109834,Europe/Paris,,OIF, +OIF:SP:59:4109836,1,"Danton - Gambetta",48.878628,2.19371,0,0,OIF:SA:59:4024580,Europe/Paris,,OIF, +OIF:SP:59:4109837,1,"Danton - Gambetta",48.878655,2.193941,0,0,OIF:SA:59:4024580,Europe/Paris,,OIF, +OIF:SP:59:4109840,1,"Voltaire",48.877016,2.198647,0,0,OIF:SA:59:4024576,Europe/Paris,,OIF, +OIF:SP:59:4109842,1,"Le Brix",48.874767,2.19635,0,0,OIF:SA:59:4109842,Europe/Paris,,OIF, +OIF:SP:59:4109843,1,"Le Brix",48.874776,2.196568,0,0,OIF:SA:59:4109842,Europe/Paris,,OIF, +OIF:SP:59:4109845,1,"Les Godardes",48.872986,2.195074,0,0,OIF:SA:59:4109845,Europe/Paris,,OIF, +OIF:SP:59:4109846,1,"La Paix",48.870452,2.196021,0,0,OIF:SA:59:4109846,Europe/Paris,,OIF, +OIF:SP:59:4109847,1,"La Paix",48.870605,2.196157,0,0,OIF:SA:59:4109846,Europe/Paris,,OIF, +OIF:SP:59:4109848,1,"Racine",48.869026,2.19796,0,0,OIF:SA:59:4109848,Europe/Paris,,OIF, +OIF:SP:59:4109849,1,"Racine",48.869214,2.198122,0,0,OIF:SA:59:4109848,Europe/Paris,,OIF, +OIF:SP:59:4109850,1,"La Chapelle",48.870313,2.199836,0,0,OIF:SA:59:4109850,Europe/Paris,,OIF, +OIF:SP:59:4109851,1,"La Chapelle",48.870502,2.199795,0,0,OIF:SA:59:4109850,Europe/Paris,,OIF, +OIF:SP:59:4109852,1,"Place du 8 Mai 1945",48.871198,2.204112,0,0,OIF:SA:59:4109852,Europe/Paris,,OIF, +OIF:SP:59:4109853,1,"Place du 8 Mai 1945",48.871306,2.203893,0,0,OIF:SA:59:4109852,Europe/Paris,,OIF, +OIF:SP:59:4109854,1,"Buffon",48.869892,2.209578,0,0,OIF:SA:59:4109854,Europe/Paris,,OIF, +OIF:SP:59:4109855,1,"Buffon",48.870009,2.209305,0,0,OIF:SA:59:4109854,Europe/Paris,,OIF, +OIF:SP:59:4109856,1,"Avenue des Landes",48.868225,2.213533,0,0,OIF:SA:59:4109856,Europe/Paris,,OIF, +OIF:SP:59:4109857,1,"Washington",48.869801,2.21714,0,0,OIF:SA:59:4109857,Europe/Paris,,OIF, +OIF:SP:59:4109858,1,"Washington",48.870602,2.217669,0,0,OIF:SA:59:4109857,Europe/Paris,,OIF, +OIF:SP:59:4109859,1,"Worth",48.868204,2.219732,0,0,OIF:SA:59053,Europe/Paris,,OIF, +OIF:SP:59:4109860,1,"Hôpital Foch",48.870084,2.220899,0,0,OIF:SA:59053,Europe/Paris,,OIF, +OIF:SP:59:4109861,1,"Suresnes de Gaulle",48.870177,2.224496,0,0,OIF:SA:59053,Europe/Paris,,OIF, +OIF:SP:59:4109863,1,"Gare de Suresnes - Mont Valerien",48.871531,2.221305,0,0,OIF:SA:8738237,Europe/Paris,,OIF, +OIF:SP:59:4109864,1,"Mont Valerien",48.870524,2.212492,0,0,OIF:SA:59:4024429,Europe/Paris,,OIF, +OIF:SP:59:4109865,1,"École Jules Ferry",48.883356,2.202268,0,0,OIF:SA:59:4109865,Europe/Paris,,OIF, +OIF:SP:59:4117655,1,"Bobigny - Pablo Picasso",48.907177,2.449286,0,0,OIF:SA:59342,Europe/Paris,,OIF, +OIF:SP:59:4117657,1,"Maurice Thorez",48.906766,2.446572,0,0,OIF:SA:59:3688573,Europe/Paris,,OIF, +OIF:SP:59:4117664,1,"Escadrille Normandie-Niemen - Roger Salengro-Tramway",48.91338,2.436401,0,0,OIF:SA:59:4117664,Europe/Paris,,OIF, +OIF:SP:59:4117665,1,"Escadrille Normandie-Niemen - Roger Salengro-Tramway",48.913758,2.436224,0,0,OIF:SA:59:4117664,Europe/Paris,,OIF, +OIF:SP:59:4117666,1,"Chavez - Nieuport",48.91702,2.436258,0,0,OIF:SA:59:4117666,Europe/Paris,,OIF, +OIF:SP:59:4117667,1,"Chavez - Nieuport",48.917209,2.436081,0,0,OIF:SA:59:4117666,Europe/Paris,,OIF, +OIF:SP:59:4117668,1,"Danton",48.919688,2.438554,0,0,OIF:SA:59:4117668,Europe/Paris,,OIF, +OIF:SP:59:4117669,1,"Danton",48.919571,2.437981,0,0,OIF:SA:59:4117668,Europe/Paris,,OIF, +OIF:SP:59:4117670,1,"Georges Ducerf",48.920908,2.440616,0,0,OIF:SA:59:4117670,Europe/Paris,,OIF, +OIF:SP:59:4117671,1,"Georges Ducerf",48.921501,2.440889,0,0,OIF:SA:59:4117670,Europe/Paris,,OIF, +OIF:SP:59:4117672,1,"Charles Gide",48.921686,2.444858,0,0,OIF:SA:59:3731657,Europe/Paris,,OIF, +OIF:SP:59:4117673,1,"Charles Gide",48.921821,2.444831,0,0,OIF:SA:59:3731657,Europe/Paris,,OIF, +OIF:SP:59:4117675,1,"Mairie de Drancy",48.923069,2.445748,0,0,OIF:SA:59:4035826,Europe/Paris,,OIF, +OIF:SP:59:4117676,1,"Cimetière de Drancy",48.924829,2.447824,0,0,OIF:SA:59:4117676,Europe/Paris,,OIF, +OIF:SP:59:4117677,1,"Cimetière de Drancy",48.924766,2.447442,0,0,OIF:SA:59:4117676,Europe/Paris,,OIF, +OIF:SP:59:4117678,1,"Henri Rouanet",48.927306,2.45143,0,0,OIF:SA:59:4117678,Europe/Paris,,OIF, +OIF:SP:59:4117679,1,"Henri Rouanet",48.927064,2.450871,0,0,OIF:SA:59:4117678,Europe/Paris,,OIF, +OIF:SP:59:4117680,1,"Brement",48.930376,2.45497,0,0,OIF:SA:59:4117680,Europe/Paris,,OIF, +OIF:SP:59:4117681,1,"Brement",48.929964,2.453987,0,0,OIF:SA:59:4117680,Europe/Paris,,OIF, +OIF:SP:59:4117697,1,"Altrincham",48.948776,2.450986,0,0,OIF:SA:59:4117697,Europe/Paris,,OIF, +OIF:SP:59:4117699,1,"Altrincham - Lénine",48.947826,2.448597,0,0,OIF:SA:59:4117699,Europe/Paris,,OIF, +OIF:SP:59:4117701,1,"Église Saint-Charles",48.946211,2.445223,0,0,OIF:SA:59:4117701,Europe/Paris,,OIF, +OIF:SP:59:4117702,1,"Louis Blériot",48.946808,2.440927,0,0,OIF:SA:59:4117702,Europe/Paris,,OIF, +OIF:SP:59:4117704,1,"Musée de l'Air et de l'Espace",48.947394,2.438827,0,0,OIF:SA:59:3666571,Europe/Paris,,OIF, +OIF:SP:59:4118154,1,"Victor Hugo - Jean Moulin",48.910562,2.511426,0,0,OIF:SA:55:65,Europe/Paris,,OIF, +OIF:SP:59:4118155,1,"Église des Pavillons-sous-Bois",48.909396,2.503473,0,0,OIF:SA:55:60,Europe/Paris,,OIF, +OIF:SP:59:4118161,1,"Lille",48.907729,2.471892,0,0,OIF:SA:59:4118161,Europe/Paris,,OIF, +OIF:SP:59:4118169,1,"Robert Schuman.",48.916216,2.497795,0,0,OIF:SA:59:4118169,Europe/Paris,,OIF, +OIF:SP:59:4124820,1,"Carrefour des Poulets",48.786078,2.332227,0,0,OIF:SA:59:4124820,Europe/Paris,,OIF, +OIF:SP:59:4124821,1,"La Plaine",48.786312,2.329343,0,0,OIF:SA:59:3730347,Europe/Paris,,OIF, +OIF:SP:59:4124822,1,"Division Leclerc - Camille Desmoulins",48.790168,2.331519,0,0,OIF:SA:59:3730345,Europe/Paris,,OIF, +OIF:SP:59:4124823,1,"Mairie de Cachan",48.794041,2.334294,0,0,OIF:SA:59:4124823,Europe/Paris,,OIF, +OIF:SP:59:4124824,1,"Cousin de Méricourt",48.798014,2.333123,0,0,OIF:SA:59:4124824,Europe/Paris,,OIF, +OIF:SP:59:4124828,1,"Fraysse",48.810103,2.3439,0,0,OIF:SA:59:3754318,Europe/Paris,,OIF, +OIF:SP:59:4124829,1,"Bout du Rang - Picasso",48.811756,2.346078,0,0,OIF:SA:59:4124829,Europe/Paris,,OIF, +OIF:SP:59:4124830,1,"Reine Blanche",48.813643,2.347861,0,0,OIF:SA:59:4124830,Europe/Paris,,OIF, +OIF:SP:59:4124831,1,"Raspail - Jean Jaurès",48.814263,2.350134,0,0,OIF:SA:59:3781633,Europe/Paris,,OIF, +OIF:SP:59:4124832,1,"Verdun",48.816887,2.353482,0,0,OIF:SA:59:4124832,Europe/Paris,,OIF, +OIF:SP:59:4124833,1,"Poterne des Peupliers",48.820851,2.351047,0,0,OIF:SA:59064,Europe/Paris,,OIF, +OIF:SP:59:4124834,1,"Damesme",48.820176,2.356124,0,0,OIF:SA:59:4124834,Europe/Paris,,OIF, +OIF:SP:59:4130576,1,"Maison Blanche",48.822477,2.358602,0,0,OIF:SA:59298,Europe/Paris,,OIF, +OIF:SP:59:4130585,1,"Collège Boileau",48.806001,2.555596,0,0,OIF:SA:59:3743518,Europe/Paris,,OIF, +OIF:SP:59:4146013,1,"Quatre Chemins",48.944007,2.185166,0,0,OIF:SA:59:4146013,Europe/Paris,,OIF, +OIF:SP:59:4146143,1,"Erignac",48.851671,2.415596,0,0,OIF:SA:59:3672240,Europe/Paris,,OIF, +OIF:SP:59:4146145,1,"Porte de Vincennes",48.847199,2.41036,0,0,OIF:SA:59228,Europe/Paris,,OIF, +OIF:SP:59:4146240,1,"Roger Semât",48.944974,2.35722,0,0,OIF:SA:59781,Europe/Paris,,OIF, +OIF:SP:59:4179702,1,"La Courneuve - Aubervilliers RER",48.923226,2.384324,0,0,OIF:SA:8727130,Europe/Paris,,OIF, +OIF:SP:59:4179705,1,"Langevin - Wallon",48.927021,2.379935,0,0,OIF:SA:59:4179705,Europe/Paris,,OIF, +OIF:SP:59:4179706,1,"Genève",48.925907,2.376525,0,0,OIF:SA:59:4179706,Europe/Paris,,OIF, +OIF:SP:59:4179707,1,"Federico Garcia Lorca",48.925306,2.374547,0,0,OIF:SA:59:3741084,Europe/Paris,,OIF, +OIF:SP:59:4179708,1,"Federico Garcia Lorca",48.925899,2.373879,0,0,OIF:SA:59:3741084,Europe/Paris,,OIF, +OIF:SP:59:4179709,1,"Rû de Montfort",48.9283,2.369503,0,0,OIF:SA:59:4179709,Europe/Paris,,OIF, +OIF:SP:59:4179710,1,"Rû de Montfort",48.927275,2.371862,0,0,OIF:SA:59:4179709,Europe/Paris,,OIF, +OIF:SP:59:4179711,1,"Lycée Suger",48.928939,2.366448,0,0,OIF:SA:59:4179711,Europe/Paris,,OIF, +OIF:SP:59:4179712,1,"Lycée Suger",48.929209,2.365957,0,0,OIF:SA:59:4179711,Europe/Paris,,OIF, +OIF:SP:59:4179713,1,"Parc de la Légion d'Honneur",48.931294,2.363626,0,0,OIF:SA:59:4179713,Europe/Paris,,OIF, +OIF:SP:59:4179714,1,"Parc de la Légion d'Honneur",48.931177,2.364608,0,0,OIF:SA:59:4179713,Europe/Paris,,OIF, +OIF:SP:59:4179718,1,"Place Lanne",48.932581,2.357488,0,0,OIF:SA:59:4179718,Europe/Paris,,OIF, +OIF:SP:59:4179719,1,"Légion d'Honneur",48.934971,2.358049,0,0,OIF:SA:59541,Europe/Paris,,OIF, +OIF:SP:59:4179720,1,"Basilique de Saint-Denis - Hôtel de Ville - Métro-Tramway",48.936831,2.36015,0,0,OIF:SA:59541,Europe/Paris,,OIF, +OIF:SP:59:4179721,1,"Basilique de Saint-Denis - Hôtel de Ville - Métro-Tramway",48.936921,2.360205,0,0,OIF:SA:59541,Europe/Paris,,OIF, +OIF:SP:59:4179722,1,"Cimetière de Saint-Denis-Tramway",48.936183,2.363628,0,0,OIF:SA:59098,Europe/Paris,,OIF, +OIF:SP:59:4179723,1,"Cimetière de Saint-Denis-Tramway",48.936165,2.364965,0,0,OIF:SA:59098,Europe/Paris,,OIF, +OIF:SP:59:4179724,1,"Avenue Saint-Rémy",48.935661,2.36832,0,0,OIF:SA:59:4179724,Europe/Paris,,OIF, +OIF:SP:59:4179725,1,"Avenue Saint-Rémy",48.936002,2.368443,0,0,OIF:SA:59:4179724,Europe/Paris,,OIF, +OIF:SP:59:4179726,1,"Marville",48.937673,2.37195,0,0,OIF:SA:59:4179726,Europe/Paris,,OIF, +OIF:SP:59:4179727,1,"Marville",48.936774,2.370831,0,0,OIF:SA:59:4179726,Europe/Paris,,OIF, +OIF:SP:59:4179728,1,"Clovis Hugues",48.941636,2.372199,0,0,OIF:SA:59:4179728,Europe/Paris,,OIF, +OIF:SP:59:4179729,1,"Clovis Hugues",48.941753,2.371953,0,0,OIF:SA:59:4179728,Europe/Paris,,OIF, +OIF:SP:59:4179730,1,"Henri Barbusse",48.94692,2.370974,0,0,OIF:SA:59:4179730,Europe/Paris,,OIF, +OIF:SP:59:4179731,1,"Henri Barbusse",48.946786,2.371288,0,0,OIF:SA:59:4179730,Europe/Paris,,OIF, +OIF:SP:59:4179732,1,"Saint-Denis - Université",48.946105,2.363934,0,0,OIF:SA:59540,Europe/Paris,,OIF, +OIF:SP:59:4179733,1,"Saint-Denis - Université",48.945952,2.364056,0,0,OIF:SA:59540,Europe/Paris,,OIF, +OIF:SP:59:4179736,1,"Émile Zola",48.952627,2.3699,0,0,OIF:SA:59:4179736,Europe/Paris,,OIF, +OIF:SP:59:4179737,1,"Émile Zola",48.952807,2.370023,0,0,OIF:SA:59:4179736,Europe/Paris,,OIF, +OIF:SP:59:4179738,1,"Charles Péguy",48.953516,2.374895,0,0,OIF:SA:59:4179738,Europe/Paris,,OIF, +OIF:SP:59:4179739,1,"Charles Péguy",48.95339,2.375086,0,0,OIF:SA:59:4179738,Europe/Paris,,OIF, +OIF:SP:59:4179740,1,"Nelson Mandela",48.951143,2.375998,0,0,OIF:SA:59:4179740,Europe/Paris,,OIF, +OIF:SP:59:4179741,1,"Nelson Mandela",48.951287,2.375153,0,0,OIF:SA:59:4179740,Europe/Paris,,OIF, +OIF:SP:59:4179742,1,"Marcel Pointet",48.951293,2.381784,0,0,OIF:SA:59:4179742,Europe/Paris,,OIF, +OIF:SP:59:4179743,1,"Marcel Pointet",48.952165,2.381553,0,0,OIF:SA:59:4179742,Europe/Paris,,OIF, +OIF:SP:59:4179744,1,"François Begue",48.952469,2.38491,0,0,OIF:SA:59:4179744,Europe/Paris,,OIF, +OIF:SP:59:4179745,1,"Mairie de Stains",48.954896,2.383643,0,0,OIF:SA:59:4179745,Europe/Paris,,OIF, +OIF:SP:59:4179746,1,"Mairie de Stains",48.953863,2.382318,0,0,OIF:SA:59:4179745,Europe/Paris,,OIF, +OIF:SP:59:4179747,1,"Marcel Cachin - Desnos",48.938779,2.369755,0,0,OIF:SA:59:4179747,Europe/Paris,,OIF, +OIF:SP:59:4179748,1,"Marche - République",48.936175,2.35663,0,0,OIF:SA:59541,Europe/Paris,,OIF, +OIF:SP:59:4179749,1,"Gabriel Péri - Franklin",48.934738,2.35577,0,0,OIF:SA:59:4179749,Europe/Paris,,OIF, +OIF:SP:59:4179750,1,"Place de la Résistance",48.932788,2.355006,0,0,OIF:SA:59886,Europe/Paris,,OIF, +OIF:SP:59:4179752,1,"Hôpital",48.929929,2.36207,0,0,OIF:SA:59096,Europe/Paris,,OIF, +OIF:SP:59:4179753,1,"Genève",48.926123,2.377698,0,0,OIF:SA:59:4179753,Europe/Paris,,OIF, +OIF:SP:59:4180925,1,"Bois l'Abbé",48.806906,2.557124,0,0,OIF:SA:59:3718101,Europe/Paris,,OIF, +OIF:SP:59:4180931,1,"Groupe Scolaire Rousseau",48.800999,2.548051,0,0,OIF:SA:59:3743492,Europe/Paris,,OIF, +OIF:SP:59:4180932,1,"Rue des Fusilles de Chateaubriant",48.79964,2.5441,0,0,OIF:SA:49:51490,Europe/Paris,,OIF, +OIF:SP:59:4180933,1,"Avenue Georges",48.802227,2.539743,0,0,OIF:SA:35:1101,Europe/Paris,,OIF, +OIF:SP:59:4180934,1,"Collège Molière",48.803507,2.53753,0,0,OIF:SA:59:4180934,Europe/Paris,,OIF, +OIF:SP:59:4180943,1,"Champigny - Saint-Maur RER",48.807208,2.510017,0,0,OIF:SA:8775817,Europe/Paris,,OIF, +OIF:SP:59:4199315,1,"Gallieni - Métro",48.864361,2.417263,0,0,OIF:SA:59448,Europe/Paris,,OIF, +OIF:SP:59:4199316,1,"Gallieni - Métro",48.864037,2.416827,0,0,OIF:SA:59448,Europe/Paris,,OIF, +OIF:SP:59:4199317,1,"Mairie de Bagnolet",48.868161,2.418876,0,0,OIF:SA:59:4199317,Europe/Paris,,OIF, +OIF:SP:59:4199318,1,"Mairie de Bagnolet",48.869242,2.415581,0,0,OIF:SA:59:4199317,Europe/Paris,,OIF, +OIF:SP:59:4199320,1,"Église de Bagnolet",48.870065,2.420882,0,0,OIF:SA:59:3687281,Europe/Paris,,OIF, +OIF:SP:59:4199321,1,"Pierre Curie",48.868957,2.423837,0,0,OIF:SA:59:4199321,Europe/Paris,,OIF, +OIF:SP:59:4199322,1,"Pierre Curie",48.868993,2.424422,0,0,OIF:SA:59:4199321,Europe/Paris,,OIF, +OIF:SP:59:4199323,1,"Charles Delescluze",48.865621,2.426079,0,0,OIF:SA:59:4199323,Europe/Paris,,OIF, +OIF:SP:59:4199324,1,"Charles Delescluze",48.865783,2.42627,0,0,OIF:SA:59:4199323,Europe/Paris,,OIF, +OIF:SP:59:4199325,1,"La Noue",48.865989,2.42785,0,0,OIF:SA:59:4199325,Europe/Paris,,OIF, +OIF:SP:59:4199326,1,"La Noue",48.866096,2.428014,0,0,OIF:SA:59:4199325,Europe/Paris,,OIF, +OIF:SP:59:4199327,1,"Delpeche",48.864037,2.430026,0,0,OIF:SA:59:4199327,Europe/Paris,,OIF, +OIF:SP:59:4199328,1,"Delpeche",48.864199,2.429795,0,0,OIF:SA:59:4199327,Europe/Paris,,OIF, +OIF:SP:59:4199329,1,"Clos Français",48.865527,2.432209,0,0,OIF:SA:59:4199329,Europe/Paris,,OIF, +OIF:SP:59:4199330,1,"Clos Français",48.86559,2.432005,0,0,OIF:SA:59:4199329,Europe/Paris,,OIF, +OIF:SP:59:4199331,1,"Rabelais",48.863007,2.436522,0,0,OIF:SA:59:4199331,Europe/Paris,,OIF, +OIF:SP:59:4199332,1,"Rabelais",48.86271,2.436985,0,0,OIF:SA:59:4199331,Europe/Paris,,OIF, +OIF:SP:59:4199333,1,"Croix de Chavaux - Métro",48.858882,2.436569,0,0,OIF:SA:59506,Europe/Paris,,OIF, +OIF:SP:59:4199334,1,"Croix de Chavaux - Métro",48.858863,2.436964,0,0,OIF:SA:59506,Europe/Paris,,OIF, +OIF:SP:59:4199339,1,"Mairie de Montreuil",48.861547,2.440987,0,0,OIF:SA:59507,Europe/Paris,,OIF, +OIF:SP:59:4199340,1,"Eugène Varlin",48.860822,2.447701,0,0,OIF:SA:59:4199340,Europe/Paris,,OIF, +OIF:SP:59:4199341,1,"Eugène Varlin",48.860912,2.447756,0,0,OIF:SA:59:4199340,Europe/Paris,,OIF, +OIF:SP:59:4199342,1,"Collège Jean Moulin",48.859813,2.449851,0,0,OIF:SA:59:4199342,Europe/Paris,,OIF, +OIF:SP:59:4199343,1,"Collège Jean Moulin",48.859984,2.449756,0,0,OIF:SA:59:4199342,Europe/Paris,,OIF, +OIF:SP:59:4199344,1,"Nouveau Cimetière de Montreuil",48.861346,2.453777,0,0,OIF:SA:59:4199344,Europe/Paris,,OIF, +OIF:SP:59:4199345,1,"Nouveau Cimetière de Montreuil",48.861159,2.452755,0,0,OIF:SA:59:4199344,Europe/Paris,,OIF, +OIF:SP:59:4199346,1,"Saint-Just",48.861245,2.456093,0,0,OIF:SA:59:4199346,Europe/Paris,,OIF, +OIF:SP:59:4199347,1,"Saint-Just",48.8612,2.456311,0,0,OIF:SA:59:4199346,Europe/Paris,,OIF, +OIF:SP:59:4199348,1,"Lenain de Tillemont",48.860944,2.460396,0,0,OIF:SA:59:4199348,Europe/Paris,,OIF, +OIF:SP:59:4199349,1,"Lenain de Tillemont",48.860469,2.45921,0,0,OIF:SA:59:4199348,Europe/Paris,,OIF, +OIF:SP:59:4199350,1,"Nouvelle France",48.862999,2.463848,0,0,OIF:SA:59:3687727,Europe/Paris,,OIF, +OIF:SP:59:4199351,1,"Nouvelle France",48.862936,2.463684,0,0,OIF:SA:59:3687727,Europe/Paris,,OIF, +OIF:SP:59:4199352,1,"Les Ruffins",48.863588,2.467105,0,0,OIF:SA:59:4199352,Europe/Paris,,OIF, +OIF:SP:59:4199353,1,"Les Ruffins",48.864235,2.467365,0,0,OIF:SA:59:4199352,Europe/Paris,,OIF, +OIF:SP:59:4199354,1,"Parc de Montreau",48.866614,2.469987,0,0,OIF:SA:59:4199354,Europe/Paris,,OIF, +OIF:SP:59:4199355,1,"Parc de Montreau",48.866013,2.469154,0,0,OIF:SA:59:4199354,Europe/Paris,,OIF, +OIF:SP:59:4199356,1,"Babeuf",48.866941,2.474728,0,0,OIF:SA:59:4199356,Europe/Paris,,OIF, +OIF:SP:59:4199358,1,"Charles Delavacquerie",48.865887,2.477246,0,0,OIF:SA:59:4199358,Europe/Paris,,OIF, +OIF:SP:59:4199360,1,"Le Morillon",48.864267,2.479094,0,0,OIF:SA:59:4199360,Europe/Paris,,OIF, +OIF:SP:59:4199364,1,"La Fontaine",48.857343,2.48169,0,0,OIF:SA:59:4199364,Europe/Paris,,OIF, +OIF:SP:59:4199366,1,"Jean Macé",48.856238,2.481782,0,0,OIF:SA:59:4199366,Europe/Paris,,OIF, +OIF:SP:59:4199368,1,"Pablo Picasso",48.855226,2.485975,0,0,OIF:SA:59:3690363,Europe/Paris,,OIF, +OIF:SP:59:4199369,1,"Val-de-Fontenay RER",48.853803,2.488436,0,0,OIF:SA:8711371,Europe/Paris,,OIF, +OIF:SP:59:4199370,1,"Val-de-Fontenay RER",48.853686,2.488367,0,0,OIF:SA:8711371,Europe/Paris,,OIF, +OIF:SP:59:4199371,1,"Général de Gaulle",48.852611,2.485327,0,0,OIF:SA:8711371,Europe/Paris,,OIF, +OIF:SP:59:4199372,1,"Charles Garcia",48.853326,2.481965,0,0,OIF:SA:59:3685702,Europe/Paris,,OIF, +OIF:SP:59:4199375,1,"Louise Michel",48.867773,2.470725,0,0,OIF:SA:59:4199375,Europe/Paris,,OIF, +OIF:SP:59:4199378,1,"Marie-Anne Colombier",48.870544,2.416973,0,0,OIF:SA:59:4199378,Europe/Paris,,OIF, +OIF:SP:59:4208517,1,"Bry-sur-Marne RER",48.844204,2.52614,0,0,OIF:SA:8775832,Europe/Paris,,OIF, +OIF:SP:59:4208521,1,"Verdun",48.846863,2.532618,0,0,OIF:SA:59:3682638,Europe/Paris,,OIF, +OIF:SP:59:4208523,1,"Route de Neuilly",48.84677,2.539808,0,0,OIF:SA:59:4208523,Europe/Paris,,OIF, +OIF:SP:59:4208524,1,"Route de Neuilly",48.848059,2.537593,0,0,OIF:SA:59:4208523,Europe/Paris,,OIF, +OIF:SP:59:4208525,1,"Pasteur",48.847078,2.548579,0,0,OIF:SA:59:4208525,Europe/Paris,,OIF, +OIF:SP:59:4208536,1,"Les Rosiers",48.855592,2.576004,0,0,OIF:SA:59:4208536,Europe/Paris,,OIF, +OIF:SP:59:4208538,1,"Place Churchill",48.858404,2.580879,0,0,OIF:SA:59:4208538,Europe/Paris,,OIF, +OIF:SP:59:4208551,1,"Les Deux Parcs",48.85213,2.613808,0,0,OIF:SA:59:4208551,Europe/Paris,,OIF, +OIF:SP:59:4208552,1,"Le Carre du Faon",48.850737,2.613869,0,0,OIF:SA:59:4208552,Europe/Paris,,OIF, +OIF:SP:59:4208553,1,"Le Carre du Faon",48.850791,2.614005,0,0,OIF:SA:59:4208552,Europe/Paris,,OIF, +OIF:SP:59:4208554,1,"Square de Diane",48.849573,2.61596,0,0,OIF:SA:59:4208554,Europe/Paris,,OIF, +OIF:SP:59:4208555,1,"Square de Diane",48.849402,2.616109,0,0,OIF:SA:59:4208554,Europe/Paris,,OIF, +OIF:SP:59:4208580,1,"Ferme du Couvent",48.853033,2.655284,0,0,OIF:SA:59:4208580,Europe/Paris,,OIF, +OIF:SP:59:4208581,1,"Ferme du Couvent",48.852558,2.654995,0,0,OIF:SA:59:4208580,Europe/Paris,,OIF, +OIF:SP:59:4208582,1,"Le Clos",48.855277,2.656578,0,0,OIF:SA:59:4208582,Europe/Paris,,OIF, +OIF:SP:59:4208583,1,"Le Clos",48.855422,2.656048,0,0,OIF:SA:59:4208582,Europe/Paris,,OIF, +OIF:SP:59:4208584,1,"Les Bondrolles",48.851533,2.658312,0,0,OIF:SA:59:4208584,Europe/Paris,,OIF, +OIF:SP:59:4208585,1,"Les Bondrolles",48.85173,2.658545,0,0,OIF:SA:59:4208584,Europe/Paris,,OIF, +OIF:SP:59:4208598,1,"Les Deux Parcs",48.852292,2.614,0,0,OIF:SA:59:4208598,Europe/Paris,,OIF, +OIF:SP:59:4208600,1,"Chemin de la Baronnerie",48.848411,2.541762,0,0,OIF:SA:59:4208600,Europe/Paris,,OIF, +OIF:SP:59:4208610,1,"Pesaro",48.893339,2.226681,0,0,OIF:SA:59:4208610,Europe/Paris,,OIF, +OIF:SP:59:4208612,1,"Maxime Gorki",48.891553,2.22926,0,0,OIF:SA:59:4025359,Europe/Paris,,OIF, +OIF:SP:59:4208616,1,"Watford",48.885877,2.224216,0,0,OIF:SA:59:4025363,Europe/Paris,,OIF, +OIF:SP:59:4208617,1,"Craïova",48.886763,2.22018,0,0,OIF:SA:59:3877784,Europe/Paris,,OIF, +OIF:SP:59:4208618,1,"Craïova",48.88653,2.22089,0,0,OIF:SA:59:3877784,Europe/Paris,,OIF, +OIF:SP:59:4208620,1,"Champs Pierreux",48.886564,2.209932,0,0,OIF:SA:59:4208620,Europe/Paris,,OIF, +OIF:SP:59:4208621,1,"Suresnes",48.88355,2.215677,0,0,OIF:SA:59:4208621,Europe/Paris,,OIF, +OIF:SP:59:4208622,1,"Paul Bertin",48.881868,2.214005,0,0,OIF:SA:59:4208622,Europe/Paris,,OIF, +OIF:SP:59:4208625,1,"Libération",48.884961,2.206639,0,0,OIF:SA:59:4208625,Europe/Paris,,OIF, +OIF:SP:59:4208626,1,"La Source",48.887035,2.204535,0,0,OIF:SA:59:3877792,Europe/Paris,,OIF, +OIF:SP:59:4208632,1,"Plainchamp-Rochet",48.89138,2.200476,0,0,OIF:SA:59:4208632,Europe/Paris,,OIF, +OIF:SP:59:4208637,1,"Les Chènevreux",48.885537,2.207278,0,0,OIF:SA:59:4208637,Europe/Paris,,OIF, +OIF:SP:59:4208638,1,"Daniel Becker",48.882762,2.209438,0,0,OIF:SA:59:4208638,Europe/Paris,,OIF, +OIF:SP:59:4208639,1,"Les Louvetiers",48.881337,2.213148,0,0,OIF:SA:59:4208639,Europe/Paris,,OIF, +OIF:SP:59:4208640,1,"Verdun",48.882716,2.217464,0,0,OIF:SA:59:4024313,Europe/Paris,,OIF, +OIF:SP:59:4208642,1,"Aime Césaire",48.893277,2.227512,0,0,OIF:SA:59:4208642,Europe/Paris,,OIF, +OIF:SP:59:4211734,1,"Garges-Sarcelles RER",48.977109,2.390598,0,0,OIF:SA:59:4211734,Europe/Paris,,OIF, +OIF:SP:59:4211738,1,"Paul Valéry",48.979242,2.380743,0,0,OIF:SA:59803,Europe/Paris,,OIF, +OIF:SP:59:4211740,1,"Les Flanades",48.976916,2.378462,0,0,OIF:SA:59801,Europe/Paris,,OIF, +OIF:SP:59:4211741,1,"Les Flanades",48.976889,2.378762,0,0,OIF:SA:59801,Europe/Paris,,OIF, +OIF:SP:59:4211742,1,"Raoul Dufy",48.973124,2.375851,0,0,OIF:SA:59:4211742,Europe/Paris,,OIF, +OIF:SP:59:4211743,1,"Raoul Dufy",48.973178,2.376124,0,0,OIF:SA:59:4211742,Europe/Paris,,OIF, +OIF:SP:59:4211752,1,"Suzanne Valadon",48.958498,2.358508,0,0,OIF:SA:59789,Europe/Paris,,OIF, +OIF:SP:59:4211754,1,"Joncherolles",48.956575,2.358262,0,0,OIF:SA:59787,Europe/Paris,,OIF, +OIF:SP:59:4211755,1,"Petit Pierrefitte",48.952558,2.357796,0,0,OIF:SA:59785,Europe/Paris,,OIF, +OIF:SP:59:4211761,1,"Lycée Paul Éluard",48.941593,2.364763,0,0,OIF:SA:59:4211761,Europe/Paris,,OIF, +OIF:SP:59:4211762,1,"Cité Langevin",48.938961,2.360806,0,0,OIF:SA:59:4211762,Europe/Paris,,OIF, +OIF:SP:59:4211763,1,"Marche de Saint-Denis-Tramway",48.938755,2.355731,0,0,OIF:SA:59101,Europe/Paris,,OIF, +OIF:SP:59:4211764,1,"Marche de Saint-Denis-Tramway",48.938386,2.355554,0,0,OIF:SA:59101,Europe/Paris,,OIF, +OIF:SP:59:4211765,1,"Église - Théâtre Gérard Philipe",48.935161,2.349919,0,0,OIF:SA:8727101,Europe/Paris,,OIF, +OIF:SP:59:4211766,1,"Église - Théâtre Gérard Philipe",48.936158,2.350137,0,0,OIF:SA:8727101,Europe/Paris,,OIF, +OIF:SP:59:4211767,1,"Denfert-Rochereau",48.934253,2.349987,0,0,OIF:SA:59:4211767,Europe/Paris,,OIF, +OIF:SP:59:4211771,1,"Ambroise Croizat",48.927162,2.352208,0,0,OIF:SA:59:4211771,Europe/Paris,,OIF, +OIF:SP:59:4211772,1,"Carrefour Pleyel",48.919749,2.343219,0,0,OIF:SA:59544,Europe/Paris,,OIF, +OIF:SP:59:4211773,1,"Carrefour Pleyel",48.919956,2.34386,0,0,OIF:SA:59544,Europe/Paris,,OIF, +OIF:SP:59:4211774,1,"Les Renouillères",48.917322,2.340219,0,0,OIF:SA:59:4211774,Europe/Paris,,OIF, +OIF:SP:59:4211775,1,"Les Renouillères",48.91734,2.340614,0,0,OIF:SA:59:4211774,Europe/Paris,,OIF, +OIF:SP:59:4211780,1,"Mairie de Saint-Ouen",48.911796,2.334342,0,0,OIF:SA:59545,Europe/Paris,,OIF, +OIF:SP:59:4211793,1,"Porte de Clignancourt",48.897263,2.344729,0,0,OIF:SA:59258,Europe/Paris,,OIF, +OIF:SP:59:4211794,1,"Porte de Clignancourt",48.897065,2.345302,0,0,OIF:SA:59258,Europe/Paris,,OIF, +OIF:SP:59:4211810,1,"La Plaine Saulnier",48.925167,2.351116,0,0,OIF:SA:59:4211810,Europe/Paris,,OIF, +OIF:SP:59:4211813,1,"Porte de Paris",48.930631,2.355073,0,0,OIF:SA:59542,Europe/Paris,,OIF, +OIF:SP:59:4211814,1,"Denfert-Rochereau",48.934091,2.3503,0,0,OIF:SA:59:4211767,Europe/Paris,,OIF, +OIF:SP:59:4211815,1,"Baudelaire",48.942844,2.356974,0,0,OIF:SA:59781,Europe/Paris,,OIF, +OIF:SP:59:4230051,1,"Sous-Préfecture",48.989246,2.375973,0,0,OIF:SA:59:4230051,Europe/Paris,,OIF, +OIF:SP:59:4230052,1,"Sous-Préfecture",48.989336,2.376532,0,0,OIF:SA:59:4230051,Europe/Paris,,OIF, +OIF:SP:59:4230053,1,"My Place",48.986739,2.375315,0,0,OIF:SA:59:4230053,Europe/Paris,,OIF, +OIF:SP:59:4230055,1,"Raymond Rochon",48.982642,2.371626,0,0,OIF:SA:59:4230055,Europe/Paris,,OIF, +OIF:SP:59:4230056,1,"Raymond Rochon",48.982768,2.371489,0,0,OIF:SA:59:4230055,Europe/Paris,,OIF, +OIF:SP:59:4230057,1,"Collège Chantereine",48.982381,2.37381,0,0,OIF:SA:59:4230057,Europe/Paris,,OIF, +OIF:SP:59:4230058,1,"Collège Chantereine",48.98257,2.373278,0,0,OIF:SA:59:4230057,Europe/Paris,,OIF, +OIF:SP:59:4230059,1,"Louis Lebrun",48.980476,2.372689,0,0,OIF:SA:59:4230059,Europe/Paris,,OIF, +OIF:SP:59:4230060,1,"Louis Lebrun",48.980323,2.372976,0,0,OIF:SA:59:4230059,Europe/Paris,,OIF, +OIF:SP:59:4230061,1,"Les Cholettes",48.97805,2.371186,0,0,OIF:SA:59799,Europe/Paris,,OIF, +OIF:SP:59:4230062,1,"Les Cholettes",48.977978,2.371322,0,0,OIF:SA:59799,Europe/Paris,,OIF, +OIF:SP:59:4230069,1,"Suzanne Valadon",48.972305,2.38127,0,0,OIF:SA:59:4230069,Europe/Paris,,OIF, +OIF:SP:59:4230070,1,"Suzanne Valadon",48.972691,2.381707,0,0,OIF:SA:59:4230069,Europe/Paris,,OIF, +OIF:SP:59:4230071,1,"Maurice Ravel",48.975899,2.382706,0,0,OIF:SA:59:4230071,Europe/Paris,,OIF, +OIF:SP:59:4230072,1,"Maurice Ravel",48.9758,2.382665,0,0,OIF:SA:59:4230071,Europe/Paris,,OIF, +OIF:SP:59:4230073,1,"Les Flanades",48.976493,2.378843,0,0,OIF:SA:59801,Europe/Paris,,OIF, +OIF:SP:59:4230074,1,"Les Flanades",48.976367,2.37883,0,0,OIF:SA:59801,Europe/Paris,,OIF, +OIF:SP:59:4230075,1,"Forum des Cholettes",48.978049,2.376292,0,0,OIF:SA:59801,Europe/Paris,,OIF, +OIF:SP:59:4230076,1,"Forum des Cholettes",48.97821,2.378954,0,0,OIF:SA:59801,Europe/Paris,,OIF, +OIF:SP:59:4230105,1,"Garges - Sarcelles RER",48.977306,2.390312,0,0,OIF:SA:8727619,Europe/Paris,,OIF, +OIF:SP:59:4230107,1,"Raoul Dufy",48.973079,2.375537,0,0,OIF:SA:59:4211742,Europe/Paris,,OIF, +OIF:SP:59:4238635,1,"Bois d'Ecouen",49.012478,2.367985,0,0,OIF:SA:59:4238635,Europe/Paris,,OIF, +OIF:SP:59:4238637,1,"Avenue du Rond-Point",49.00856,2.368433,0,0,OIF:SA:59:4238637,Europe/Paris,,OIF, +OIF:SP:59:4238638,1,"Bel Air - Gosserots",49.005737,2.372543,0,0,OIF:SA:59:4238638,Europe/Paris,,OIF, +OIF:SP:59:4238639,1,"Bel Air - Gosserots",49.006636,2.372161,0,0,OIF:SA:59:4238638,Europe/Paris,,OIF, +OIF:SP:59:4238640,1,"Champ de Chartres",49.004407,2.373047,0,0,OIF:SA:59:4238640,Europe/Paris,,OIF, +OIF:SP:59:4238641,1,"Champ de Chartres",49.00544,2.374373,0,0,OIF:SA:59:4238640,Europe/Paris,,OIF, +OIF:SP:59:4238642,1,"École Jules Ferry",49.002205,2.373592,0,0,OIF:SA:59:4238642,Europe/Paris,,OIF, +OIF:SP:59:4238643,1,"École Jules Ferry",49.003346,2.376707,0,0,OIF:SA:59:4238642,Europe/Paris,,OIF, +OIF:SP:59:4238644,1,"Rue des Fauvettes",49.001135,2.375162,0,0,OIF:SA:59:4238644,Europe/Paris,,OIF, +OIF:SP:59:4238645,1,"Rue des Fauvettes",49.001108,2.375312,0,0,OIF:SA:59:4238644,Europe/Paris,,OIF, +OIF:SP:59:4238646,1,"Maison de Retraite",48.997892,2.373329,0,0,OIF:SA:59:4238646,Europe/Paris,,OIF, +OIF:SP:59:4238647,1,"Maison de Retraite",48.998215,2.374136,0,0,OIF:SA:59:4238646,Europe/Paris,,OIF, +OIF:SP:59:4238648,1,"Galvani - Voltaire",48.996041,2.370884,0,0,OIF:SA:59:4238648,Europe/Paris,,OIF, +OIF:SP:59:4238649,1,"Galvani - Gare de Sarcelles - Saint-Brice",48.996257,2.371498,0,0,OIF:SA:8727638,Europe/Paris,,OIF, +OIF:SP:59:4238682,1,"Léo Lagrange",48.956623,2.416219,0,0,OIF:SA:59:4238682,Europe/Paris,,OIF, +OIF:SP:59:4238684,1,"Gabriel Péri",48.955059,2.416407,0,0,OIF:SA:59:4238684,Europe/Paris,,OIF, +OIF:SP:59:4238691,1,"Cimetière du Bourget",48.93885,2.424322,0,0,OIF:SA:59:4238691,Europe/Paris,,OIF, +OIF:SP:59:4238692,1,"Cimetière du Bourget",48.939336,2.4239,0,0,OIF:SA:59:4238691,Europe/Paris,,OIF, +OIF:SP:59:4238699,1,"Le Bourget RER",48.931004,2.4254,0,0,OIF:SA:8727139,Europe/Paris,,OIF, +OIF:SP:59:4238701,1,"Chemin des Coutures",49.008461,2.370113,0,0,OIF:SA:59:4238701,Europe/Paris,,OIF, +OIF:SP:59:4238704,1,"Carnot",48.992842,2.373053,0,0,OIF:SA:59:4238704,Europe/Paris,,OIF, +OIF:SP:59:4238705,1,"Carnot",48.993614,2.372958,0,0,OIF:SA:59:4238704,Europe/Paris,,OIF, +OIF:SP:59:4238706,1,"Théodore Bullier",48.991448,2.374199,0,0,OIF:SA:59:4238706,Europe/Paris,,OIF, +OIF:SP:59:4238707,1,"Théodore Bullier",48.991556,2.37465,0,0,OIF:SA:59:4238706,Europe/Paris,,OIF, +OIF:SP:59:4238708,1,"Mozart - Malesherbes",48.987601,2.378839,0,0,OIF:SA:59:4238708,Europe/Paris,,OIF, +OIF:SP:59:4238709,1,"Mozart - Malesherbes",48.987933,2.378894,0,0,OIF:SA:59:4238708,Europe/Paris,,OIF, +OIF:SP:59:4238710,1,"Piscine",48.983475,2.379668,0,0,OIF:SA:59:4238710,Europe/Paris,,OIF, +OIF:SP:59:4238711,1,"Piscine",48.984014,2.380529,0,0,OIF:SA:59:4238710,Europe/Paris,,OIF, +OIF:SP:59:4238712,1,"Paul Valéry - de Lattre de Tassigny",48.97981,2.377836,0,0,OIF:SA:59803,Europe/Paris,,OIF, +OIF:SP:59:4238713,1,"Paul Valéry - de Lattre de Tassigny",48.979854,2.378177,0,0,OIF:SA:59803,Europe/Paris,,OIF, +OIF:SP:59:4238714,1,"Paul Valéry",48.979153,2.380498,0,0,OIF:SA:59803,Europe/Paris,,OIF, +OIF:SP:59:4238715,1,"Paul Valéry",48.979504,2.379269,0,0,OIF:SA:59803,Europe/Paris,,OIF, +OIF:SP:59:4238716,1,"Lochères",48.978324,2.385848,0,0,OIF:SA:59805,Europe/Paris,,OIF, +OIF:SP:59:4238717,1,"Lochères",48.978287,2.386804,0,0,OIF:SA:59805,Europe/Paris,,OIF, +OIF:SP:59:4238718,1,"Garges - Sarcelles RER",48.976686,2.390884,0,0,OIF:SA:8727619,Europe/Paris,,OIF, +OIF:SP:59:4238719,1,"Garges - Sarcelles RER",48.976812,2.391554,0,0,OIF:SA:8727619,Europe/Paris,,OIF, +OIF:SP:59:4238720,1,"Jean-Baptiste Corot - Lamartine",48.975695,2.396139,0,0,OIF:SA:59:4238720,Europe/Paris,,OIF, +OIF:SP:59:4238721,1,"Jean-Baptiste Corot - Lamartine",48.975965,2.395962,0,0,OIF:SA:59:4238720,Europe/Paris,,OIF, +OIF:SP:59:4238722,1,"De Gaulle - Mitterrand",48.973465,2.398239,0,0,OIF:SA:59:4238722,Europe/Paris,,OIF, +OIF:SP:59:4238723,1,"De Gaulle - Mitterrand",48.973564,2.398621,0,0,OIF:SA:59:4238722,Europe/Paris,,OIF, +OIF:SP:59:4238724,1,"Hôtel de Ville de Garges-lès-Gonesse",48.971578,2.398332,0,0,OIF:SA:59:4238724,Europe/Paris,,OIF, +OIF:SP:59:4238725,1,"Hôtel de Ville de Garges-lès-Gonesse",48.971794,2.398455,0,0,OIF:SA:59:4238724,Europe/Paris,,OIF, +OIF:SP:59:4238726,1,"Les Mûriers",48.970327,2.402453,0,0,OIF:SA:59:4238726,Europe/Paris,,OIF, +OIF:SP:59:4238727,1,"Les Mûriers",48.970425,2.402672,0,0,OIF:SA:59:4238726,Europe/Paris,,OIF, +OIF:SP:59:4238728,1,"Lino Ventura",48.967799,2.407118,0,0,OIF:SA:59:4238728,Europe/Paris,,OIF, +OIF:SP:59:4238729,1,"Lino Ventura",48.968176,2.407009,0,0,OIF:SA:59:4238728,Europe/Paris,,OIF, +OIF:SP:59:4238730,1,"Place du 19 Mars 1962",48.966171,2.409559,0,0,OIF:SA:59:4238730,Europe/Paris,,OIF, +OIF:SP:59:4238731,1,"Place du 19 Mars 1962",48.966,2.409955,0,0,OIF:SA:59:4238730,Europe/Paris,,OIF, +OIF:SP:59:4238732,1,"Declemy",48.962619,2.413143,0,0,OIF:SA:59:4238732,Europe/Paris,,OIF, +OIF:SP:59:4238733,1,"Declemy",48.962789,2.413267,0,0,OIF:SA:59:4238732,Europe/Paris,,OIF, +OIF:SP:59:4238743,1,"La Comète",48.941161,2.422061,0,0,OIF:SA:59:4238743,Europe/Paris,,OIF, +OIF:SP:59:4238763,1,"Gare de Sarcelles-Saint-Brice",48.994901,2.368493,0,0,OIF:SA:8727638,Europe/Paris,,OIF, +OIF:SP:59:4238783,1,"La Comète",48.941162,2.421134,0,0,OIF:SA:59:4238743,Europe/Paris,,OIF, +OIF:SP:59:4238788,1,"Le Bourget RER",48.931354,2.425373,0,0,OIF:SA:8727139,Europe/Paris,,OIF, +OIF:SP:59:4274230,1,"Audra",48.927633,2.247039,0,0,OIF:SA:59:4015921,Europe/Paris,,OIF, +OIF:SP:59:4274232,1,"Audra.",48.926923,2.246972,0,0,OIF:SA:59:4015921,Europe/Paris,,OIF, +OIF:SP:59:4274235,1,"Église de Colombes",48.922954,2.251534,0,0,OIF:SA:59:4023300,Europe/Paris,,OIF, +OIF:SP:59:4274236,1,"Église de Colombes",48.923241,2.251274,0,0,OIF:SA:59:4023300,Europe/Paris,,OIF, +OIF:SP:59:4274237,1,"Mairie de Colombes",48.922938,2.254466,0,0,OIF:SA:59:4023299,Europe/Paris,,OIF, +OIF:SP:59:4274238,1,"Mairie de Colombes",48.923225,2.254029,0,0,OIF:SA:59:4023299,Europe/Paris,,OIF, +OIF:SP:59:4274239,1,"Rhin et Danube",48.923272,2.257015,0,0,OIF:SA:8738108,Europe/Paris,,OIF, +OIF:SP:59:4274241,1,"Gare de Colombes",48.923409,2.259743,0,0,OIF:SA:8738108,Europe/Paris,,OIF, +OIF:SP:59:4274242,1,"Gare de Colombes",48.92366,2.259333,0,0,OIF:SA:8738108,Europe/Paris,,OIF, +OIF:SP:59:4274243,1,"Victor Hugo",48.920841,2.263729,0,0,OIF:SA:59:4274243,Europe/Paris,,OIF, +OIF:SP:59:4274244,1,"Victor Hugo",48.922782,2.262649,0,0,OIF:SA:59:4274243,Europe/Paris,,OIF, +OIF:SP:59:4274245,1,"Cuny",48.919208,2.267631,0,0,OIF:SA:59:4274245,Europe/Paris,,OIF, +OIF:SP:59:4274246,1,"Cuny",48.920791,2.270684,0,0,OIF:SA:59:4274245,Europe/Paris,,OIF, +OIF:SP:59:4274247,1,"Amiral Courbet",48.917269,2.271725,0,0,OIF:SA:59:4274247,Europe/Paris,,OIF, +OIF:SP:59:4274248,1,"Amiral Courbet",48.919328,2.272977,0,0,OIF:SA:59:4274247,Europe/Paris,,OIF, +OIF:SP:59:4274250,1,"Gare de Bois-Colombes",48.915309,2.269927,0,0,OIF:SA:8738107,Europe/Paris,,OIF, +OIF:SP:59:4274252,1,"Hôtel de Ville de Bois-Colombes",48.91556,2.268413,0,0,OIF:SA:8738107,Europe/Paris,,OIF, +OIF:SP:59:4274253,1,"Hôtel de Ville de Bois-Colombes",48.914095,2.268129,0,0,OIF:SA:8738107,Europe/Paris,,OIF, +OIF:SP:59:4274254,1,"Cloarec - Piscine",48.913194,2.265321,0,0,OIF:SA:59:4274254,Europe/Paris,,OIF, +OIF:SP:59:4274255,1,"Cloarec - Piscine",48.912979,2.265458,0,0,OIF:SA:59:4274254,Europe/Paris,,OIF, +OIF:SP:59:4274256,1,"Joigneaux - Camus",48.910453,2.264671,0,0,OIF:SA:59:4274256,Europe/Paris,,OIF, +OIF:SP:59:4274257,1,"Joigneaux - Camus",48.910417,2.26493,0,0,OIF:SA:59:4274256,Europe/Paris,,OIF, +OIF:SP:59:4274259,1,"Moulin des Bruyères",48.906434,2.261513,0,0,OIF:SA:59:4274259,Europe/Paris,,OIF, +OIF:SP:59:4274261,1,"Michel Ricard",48.905385,2.265646,0,0,OIF:SA:59:4274261,Europe/Paris,,OIF, +OIF:SP:59:4274262,1,"Michel Ricard",48.905564,2.265754,0,0,OIF:SA:59:4274261,Europe/Paris,,OIF, +OIF:SP:59:4274268,1,"Pont de Levallois - Métro",48.896684,2.280679,0,0,OIF:SA:59589,Europe/Paris,,OIF, +OIF:SP:59:4274270,1,"Chevreul",48.907973,2.265887,0,0,OIF:SA:59:4274270,Europe/Paris,,OIF, +OIF:SP:59:4274271,1,"Gare de Bois-Colombes.",48.915093,2.269832,0,0,OIF:SA:8738107,Europe/Paris,,OIF, +OIF:SP:59:4274272,1,"Cayron - Chefson",48.917047,2.277752,0,0,OIF:SA:59:4274272,Europe/Paris,,OIF, +OIF:SP:59:4274273,1,"Garonor",48.956643,2.465442,0,0,OIF:SA:59:3666786,Europe/Paris,,OIF, +OIF:SP:59:4274279,1,"Anatole Sigonneau - Centre d'Affaires",48.952539,2.462184,0,0,OIF:SA:59:4274279,Europe/Paris,,OIF, +OIF:SP:59:4274280,1,"Anatole Sigonneau - Centre d'Affaires",48.952728,2.462021,0,0,OIF:SA:59:4274279,Europe/Paris,,OIF, +OIF:SP:59:4274281,1,"Descartes - Renault",48.950668,2.464172,0,0,OIF:SA:59:4274281,Europe/Paris,,OIF, +OIF:SP:59:4274282,1,"Descartes - Renault",48.950308,2.464157,0,0,OIF:SA:59:4274281,Europe/Paris,,OIF, +OIF:SP:59:4274284,1,"Cimetière du Blanc-Mesnil",48.950028,2.45773,0,0,OIF:SA:59:4035749,Europe/Paris,,OIF, +OIF:SP:59:4274285,1,"Louis Blériot",48.946808,2.44049,0,0,OIF:SA:59:4117702,Europe/Paris,,OIF, +OIF:SP:59:4274286,1,"Maria Valtat",48.945528,2.445222,0,0,OIF:SA:59:4274286,Europe/Paris,,OIF, +OIF:SP:59:4274287,1,"Altrincham - Lénine",48.947754,2.448801,0,0,OIF:SA:59:4117699,Europe/Paris,,OIF, +OIF:SP:59:4274288,1,"Altrincham",48.947859,2.451517,0,0,OIF:SA:59:4117697,Europe/Paris,,OIF, +OIF:SP:59:4274289,1,"Cosmonautes",48.949194,2.455736,0,0,OIF:SA:59:4035750,Europe/Paris,,OIF, +OIF:SP:59:4274290,1,"Cosmonautes",48.948869,2.456663,0,0,OIF:SA:59:4035750,Europe/Paris,,OIF, +OIF:SP:59:4274291,1,"Division Leclerc - Wallon",48.947601,2.458174,0,0,OIF:SA:59:4274291,Europe/Paris,,OIF, +OIF:SP:59:4274292,1,"Division Leclerc - Langevin",48.946746,2.459373,0,0,OIF:SA:59:4274292,Europe/Paris,,OIF, +OIF:SP:59:4274293,1,"Libération",48.94381,2.464687,0,0,OIF:SA:59:4274293,Europe/Paris,,OIF, +OIF:SP:59:4274294,1,"Libération",48.943495,2.465723,0,0,OIF:SA:59:4274293,Europe/Paris,,OIF, +OIF:SP:59:4274295,1,"Audran",48.940532,2.462796,0,0,OIF:SA:59:4274295,Europe/Paris,,OIF, +OIF:SP:59:4274296,1,"Audran",48.940236,2.462714,0,0,OIF:SA:59:4274295,Europe/Paris,,OIF, +OIF:SP:59:4274297,1,"Hôtel de Ville du Blanc-Mesnil",48.938755,2.4608,0,0,OIF:SA:59:4274297,Europe/Paris,,OIF, +OIF:SP:59:4274298,1,"Hôtel de Ville du Blanc-Mesnil",48.939069,2.461347,0,0,OIF:SA:59:4274297,Europe/Paris,,OIF, +OIF:SP:59:4274299,1,"Ancienne Mairie du Blanc-Mesnil",48.937121,2.458764,0,0,OIF:SA:59:4274299,Europe/Paris,,OIF, +OIF:SP:59:4274300,1,"Ancienne Mairie du Blanc-Mesnil",48.937031,2.458886,0,0,OIF:SA:59:4274299,Europe/Paris,,OIF, +OIF:SP:59:4274307,1,"Madelon",48.92692,2.459844,0,0,OIF:SA:59:4274307,Europe/Paris,,OIF, +OIF:SP:59:4274308,1,"Cité des Coquelicots",48.92513,2.461286,0,0,OIF:SA:59:4274308,Europe/Paris,,OIF, +OIF:SP:59:4274309,1,"Lycée Eugène Delacroix",48.923623,2.458814,0,0,OIF:SA:59:4274309,Europe/Paris,,OIF, +OIF:SP:59:4274310,1,"Stade Charles Sage",48.925816,2.458833,0,0,OIF:SA:59:4274310,Europe/Paris,,OIF, +OIF:SP:59:4274312,1,"Haussonville",48.927209,2.45889,0,0,OIF:SA:59:4274312,Europe/Paris,,OIF, +OIF:SP:59:4274313,1,"Émile Desprez",48.929223,2.457299,0,0,OIF:SA:59:4274313,Europe/Paris,,OIF, +OIF:SP:59:4274392,1,"Yvon - Pasteur",48.75522,2.31313,0,0,OIF:SA:59:4274392,Europe/Paris,,OIF, +OIF:SP:59:4274393,1,"8 Mai 1945",48.752739,2.313186,0,0,OIF:SA:59:4274393,Europe/Paris,,OIF, +OIF:SP:59:4274397,1,"Centre Administratif",48.756048,2.321422,0,0,OIF:SA:59:4274397,Europe/Paris,,OIF, +OIF:SP:59:4274398,1,"Albert Roper",48.753864,2.32527,0,0,OIF:SA:59:4274398,Europe/Paris,,OIF, +OIF:SP:59:4274399,1,"Clos la Garenne",48.755249,2.327703,0,0,OIF:SA:59:4274399,Europe/Paris,,OIF, +OIF:SP:59:4274400,1,"Cimetière de Fresnes",48.758817,2.334268,0,0,OIF:SA:59:4274400,Europe/Paris,,OIF, +OIF:SP:59:4274403,1,"Avara - Gymnase Vallée aux Renards",48.766034,2.323431,0,0,OIF:SA:59:4274403,Europe/Paris,,OIF, +OIF:SP:59:4274414,1,"Tennis",48.782042,2.343651,0,0,OIF:SA:59:4274414,Europe/Paris,,OIF, +OIF:SP:59:4274415,1,"Centre Commercial de l'Haÿ-les-Roses",48.784784,2.345175,0,0,OIF:SA:59:4274415,Europe/Paris,,OIF, +OIF:SP:59:4274418,1,"Stade l'Hayette",48.775823,2.343283,0,0,OIF:SA:59:4274418,Europe/Paris,,OIF, +OIF:SP:59:4274419,1,"Chevilly - Dahlias",48.774591,2.348682,0,0,OIF:SA:59:4274419,Europe/Paris,,OIF, +OIF:SP:59:4274422,1,"Rue de Lallier",48.774698,2.354978,0,0,OIF:SA:59:4274422,Europe/Paris,,OIF, +OIF:SP:59:4274423,1,"Rue Paul Hochart",48.777115,2.360908,0,0,OIF:SA:59:4274423,Europe/Paris,,OIF, +OIF:SP:59:4274424,1,"Domaine Chérioux",48.779163,2.366798,0,0,OIF:SA:59:4274424,Europe/Paris,,OIF, +OIF:SP:59:4284928,1,"Lamartine",48.782964,2.366936,0,0,OIF:SA:59811,Europe/Paris,,OIF, +OIF:SP:59:4293177,1,"Ambroise Croizat",48.800763,2.355328,0,0,OIF:SA:59:4293177,Europe/Paris,,OIF, +OIF:SP:59:4293178,1,"Ambroise Croizat",48.800538,2.35545,0,0,OIF:SA:59:4293177,Europe/Paris,,OIF, +OIF:SP:59:4293179,1,"Place du 8 Mai 1945",48.797986,2.354864,0,0,OIF:SA:59:4293179,Europe/Paris,,OIF, +OIF:SP:59:4293180,1,"Place du 8 Mai 1945",48.798327,2.355068,0,0,OIF:SA:59:4293179,Europe/Paris,,OIF, +OIF:SP:59:4293181,1,"Verdun - Grosménil",48.796098,2.354469,0,0,OIF:SA:59:4293181,Europe/Paris,,OIF, +OIF:SP:59:4293182,1,"Verdun - Grosménil",48.795667,2.354564,0,0,OIF:SA:59:4293181,Europe/Paris,,OIF, +OIF:SP:59:4293195,1,"Laplace RER",48.80888,2.334674,0,0,OIF:SA:8775866,Europe/Paris,,OIF, +OIF:SP:59:4293196,1,"Laplace RER.",48.808116,2.333,0,0,OIF:SA:8775866,Europe/Paris,,OIF, +OIF:SP:59:4293197,1,"Docteur Durand",48.807766,2.330537,0,0,OIF:SA:59:4293197,Europe/Paris,,OIF, +OIF:SP:59:4293198,1,"Docteur Durand",48.806867,2.330483,0,0,OIF:SA:59:4293197,Europe/Paris,,OIF, +OIF:SP:59:4293201,1,"Carnot - Aristide Briand",48.799829,2.323654,0,0,OIF:SA:59:4036917,Europe/Paris,,OIF, +OIF:SP:59:4293203,1,"Arcueil-Cachan RER",48.797933,2.328484,0,0,OIF:SA:8775867,Europe/Paris,,OIF, +OIF:SP:59:4293206,1,"Mairie de Cachan",48.794949,2.333613,0,0,OIF:SA:59:4124823,Europe/Paris,,OIF, +OIF:SP:59:4293207,1,"Mairie de Cachan",48.795039,2.334239,0,0,OIF:SA:59:4124823,Europe/Paris,,OIF, +OIF:SP:59:4293208,1,"Place Jacques Carat - Théâtre",48.792882,2.335817,0,0,OIF:SA:59:4293208,Europe/Paris,,OIF, +OIF:SP:59:4293209,1,"Place Jacques Carat - Théâtre",48.79281,2.336497,0,0,OIF:SA:59:4293208,Europe/Paris,,OIF, +OIF:SP:59:4293210,1,"Blum - Belgrand",48.789862,2.336729,0,0,OIF:SA:59:4293210,Europe/Paris,,OIF, +OIF:SP:59:4293211,1,"Blum - Belgrand",48.790105,2.336878,0,0,OIF:SA:59:4293210,Europe/Paris,,OIF, +OIF:SP:59:4293213,1,"Blum - Saussaies",48.786977,2.337382,0,0,OIF:SA:59:3786326,Europe/Paris,,OIF, +OIF:SP:59:4293214,1,"Blum - Frette",48.784541,2.338456,0,0,OIF:SA:59:4293214,Europe/Paris,,OIF, +OIF:SP:59:4293215,1,"Blum - Frette",48.784766,2.338456,0,0,OIF:SA:59:4293214,Europe/Paris,,OIF, +OIF:SP:59:4293216,1,"Rue du 11 Novembre 1918",48.781989,2.337436,0,0,OIF:SA:59:4293216,Europe/Paris,,OIF, +OIF:SP:59:4293217,1,"Rue du 11 Novembre 1918",48.781845,2.337599,0,0,OIF:SA:59:4293216,Europe/Paris,,OIF, +OIF:SP:59:4293220,1,"Quartier de la Gare",48.802777,2.324633,0,0,OIF:SA:59:4293220,Europe/Paris,,OIF, +OIF:SP:59:4293222,1,"Jean Jaurès",48.810184,2.330646,0,0,OIF:SA:59:4293222,Europe/Paris,,OIF, +OIF:SP:59:4293247,1,"Piscine",48.808259,2.356092,0,0,OIF:SA:59:4293247,Europe/Paris,,OIF, +OIF:SP:59:4294128,1,"Gendarmerie",49.015086,2.529443,0,0,OIF:SA:59:3666715,Europe/Paris,,OIF, +OIF:SP:59:4296818,1,"Les Gibets",48.879813,2.200206,0,0,OIF:SA:59:4296818,Europe/Paris,,OIF, +OIF:SP:59:4298517,1,"Pereire - Maréchal Juin",48.884064,2.2968,0,0,OIF:SA:59219,Europe/Paris,,OIF, +OIF:SP:59:4314737,1,"Massy-Palaiseau RER",48.724925,2.260717,0,0,OIF:SA:8739357,Europe/Paris,,OIF, +OIF:SP:59:4314742,1,"Cimetière de Massy",48.719547,2.270166,0,0,OIF:SA:59:4314742,Europe/Paris,,OIF, +OIF:SP:59:4314744,1,"Galvani Sud",48.722576,2.271289,0,0,OIF:SA:59:4314744,Europe/Paris,,OIF, +OIF:SP:59:4314745,1,"Galvani Sud",48.722702,2.2708,0,0,OIF:SA:59:4314744,Europe/Paris,,OIF, +OIF:SP:59:4314747,1,"Galvani Nord",48.724193,2.268842,0,0,OIF:SA:59:4314747,Europe/Paris,,OIF, +OIF:SP:59:4314750,1,"8 Mai 1945",48.727953,2.273891,0,0,OIF:SA:29:421,Europe/Paris,,OIF, +OIF:SP:59:4314751,1,"8 Mai 1945",48.728061,2.273809,0,0,OIF:SA:29:421,Europe/Paris,,OIF, +OIF:SP:59:4314752,1,"Gabriel Péri",48.729284,2.276023,0,0,OIF:SA:59:4314752,Europe/Paris,,OIF, +OIF:SP:59:4314753,1,"Gabriel Péri",48.729356,2.27624,0,0,OIF:SA:59:4314752,Europe/Paris,,OIF, +OIF:SP:59:4314754,1,"Jean Mermoz",48.728046,2.27938,0,0,OIF:SA:59:4314754,Europe/Paris,,OIF, +OIF:SP:59:4314755,1,"Jean Mermoz",48.72818,2.279366,0,0,OIF:SA:59:4314754,Europe/Paris,,OIF, +OIF:SP:59:4314756,1,"Australie",48.72785,2.283388,0,0,OIF:SA:59:4314756,Europe/Paris,,OIF, +OIF:SP:59:4314757,1,"Australie",48.727886,2.283103,0,0,OIF:SA:59:4314756,Europe/Paris,,OIF, +OIF:SP:59:4314758,1,"Moscou - Rome",48.729621,2.285424,0,0,OIF:SA:59:4314758,Europe/Paris,,OIF, +OIF:SP:59:4314759,1,"Moscou - Rome",48.730151,2.284636,0,0,OIF:SA:59:4314758,Europe/Paris,,OIF, +OIF:SP:59:4314760,1,"Hélène Boucher",48.732255,2.285395,0,0,OIF:SA:59:4314760,Europe/Paris,,OIF, +OIF:SP:59:4314761,1,"Hélène Boucher",48.731472,2.283874,0,0,OIF:SA:59:4314760,Europe/Paris,,OIF, +OIF:SP:59:4314762,1,"Avenue Saint-Marc",48.732948,2.286807,0,0,OIF:SA:59:4314762,Europe/Paris,,OIF, +OIF:SP:59:4314763,1,"Avenue Saint-Marc",48.733182,2.287242,0,0,OIF:SA:59:4314762,Europe/Paris,,OIF, +OIF:SP:59:4314764,1,"Place de France",48.733704,2.289877,0,0,OIF:SA:59:3764017,Europe/Paris,,OIF, +OIF:SP:59:4314765,1,"Place de France",48.733614,2.289076,0,0,OIF:SA:59:3764017,Europe/Paris,,OIF, +OIF:SP:59:4314766,1,"Massy-Opera Théâtre",48.731727,2.290681,0,0,OIF:SA:59:3764019,Europe/Paris,,OIF, +OIF:SP:59:4314768,1,"Mail Ampère",48.721933,2.263153,0,0,OIF:SA:59:4314768,Europe/Paris,,OIF, +OIF:SP:59:4314772,1,"Ampère Sud",48.719545,2.266457,0,0,OIF:SA:59:4314772,Europe/Paris,,OIF, +OIF:SP:59:4314773,1,"Ampère Sud",48.719257,2.26624,0,0,OIF:SA:59:4314772,Europe/Paris,,OIF, +OIF:SP:59:4314775,1,"Cimetière de Massy",48.719484,2.269758,0,0,OIF:SA:59:4314742,Europe/Paris,,OIF, +OIF:SP:59:4314778,1,"Galvani Nord",48.724202,2.269154,0,0,OIF:SA:59:4314747,Europe/Paris,,OIF, +OIF:SP:59:4314780,1,"La Tuilerie",48.725443,2.270321,0,0,OIF:SA:49:60460,Europe/Paris,,OIF, +OIF:SP:59:4314781,1,"La Tuilerie",48.725749,2.270443,0,0,OIF:SA:49:60460,Europe/Paris,,OIF, +OIF:SP:59:4314798,1,"Biarritz",48.73482,2.294211,0,0,OIF:SA:59:4314798,Europe/Paris,,OIF, +OIF:SP:59:4314799,1,"Biarritz",48.734892,2.294021,0,0,OIF:SA:59:4314798,Europe/Paris,,OIF, +OIF:SP:59:4314800,1,"Périgord",48.735738,2.297893,0,0,OIF:SA:59:4314800,Europe/Paris,,OIF, +OIF:SP:59:4314801,1,"Périgord",48.736646,2.297715,0,0,OIF:SA:59:4314800,Europe/Paris,,OIF, +OIF:SP:59:4314802,1,"Saussaye - Mirabeau",48.738804,2.298978,0,0,OIF:SA:59:4314802,Europe/Paris,,OIF, +OIF:SP:59:4314803,1,"Petit Massy",48.740216,2.301749,0,0,OIF:SA:59:4314803,Europe/Paris,,OIF, +OIF:SP:59:4314804,1,"Léon Jouhaux",48.736018,2.302689,0,0,OIF:SA:59:4314804,Europe/Paris,,OIF, +OIF:SP:59:4314805,1,"Léon Jouhaux",48.736252,2.302499,0,0,OIF:SA:59:4314804,Europe/Paris,,OIF, +OIF:SP:59:4314806,1,"Lycée Monod",48.734914,2.308424,0,0,OIF:SA:59:4314806,Europe/Paris,,OIF, +OIF:SP:59:4314807,1,"Lycée Monod",48.735175,2.308003,0,0,OIF:SA:59:4314806,Europe/Paris,,OIF, +OIF:SP:59:4314808,1,"Antonypôle",48.733855,2.313643,0,0,OIF:SA:59:4314808,Europe/Paris,,OIF, +OIF:SP:59:4314809,1,"Antonypôle",48.734043,2.31371,0,0,OIF:SA:59:4314808,Europe/Paris,,OIF, +OIF:SP:59:4314810,1,"Villemilan",48.733316,2.316442,0,0,OIF:SA:59:4314810,Europe/Paris,,OIF, +OIF:SP:59:4314811,1,"Villemilan",48.733109,2.318249,0,0,OIF:SA:59:4314810,Europe/Paris,,OIF, +OIF:SP:59:4314812,1,"Docteur Ténine",48.731654,2.325125,0,0,OIF:SA:59:4314812,Europe/Paris,,OIF, +OIF:SP:59:4314813,1,"Docteur Ténine",48.731825,2.324758,0,0,OIF:SA:59:4314812,Europe/Paris,,OIF, +OIF:SP:59:4314814,1,"Mairie de Wissous",48.731636,2.327489,0,0,OIF:SA:59:4314814,Europe/Paris,,OIF, +OIF:SP:59:4314815,1,"La Poste",48.734827,2.324377,0,0,OIF:SA:59:4314815,Europe/Paris,,OIF, +OIF:SP:59:4314816,1,"Jumelages",48.735915,2.327026,0,0,OIF:SA:59:4314816,Europe/Paris,,OIF, +OIF:SP:59:4314817,1,"Montjean",48.738863,2.332217,0,0,OIF:SA:59:4314817,Europe/Paris,,OIF, +OIF:SP:59:4314818,1,"Montjean",48.73898,2.332122,0,0,OIF:SA:59:4314817,Europe/Paris,,OIF, +OIF:SP:59:4314819,1,"Cucheron",48.73436,2.335438,0,0,OIF:SA:59:4314819,Europe/Paris,,OIF, +OIF:SP:59:4314820,1,"Cucheron",48.734396,2.335669,0,0,OIF:SA:59:4314819,Europe/Paris,,OIF, +OIF:SP:59:4314821,1,"La Fraternelle-RER",48.742197,2.353268,0,0,OIF:SA:8754629,Europe/Paris,,OIF, +OIF:SP:59:4314822,1,"La Fraternelle-RER",48.741532,2.352847,0,0,OIF:SA:8754629,Europe/Paris,,OIF, +OIF:SP:59:4314823,1,"Les Solets",48.7435,2.355076,0,0,OIF:SA:59:4314823,Europe/Paris,,OIF, +OIF:SP:59:4314824,1,"Les Solets",48.743383,2.354967,0,0,OIF:SA:59:4314823,Europe/Paris,,OIF, +OIF:SP:59:4314831,1,"Les Avernaises",48.744379,2.364005,0,0,OIF:SA:59:4314831,Europe/Paris,,OIF, +OIF:SP:59:4314832,1,"Les Avernaises",48.744065,2.362864,0,0,OIF:SA:59:4314831,Europe/Paris,,OIF, +OIF:SP:59:4314834,1,"Hauts Flouviers",48.748926,2.370287,0,0,OIF:SA:8754619,Europe/Paris,,OIF, +OIF:SP:59:4314835,1,"Hauts Flouviers",48.748827,2.369988,0,0,OIF:SA:8754619,Europe/Paris,,OIF, +OIF:SP:59:4314836,1,"Les Alouettes-Pont d'Espagne",48.752466,2.374068,0,0,OIF:SA:59:4314836,Europe/Paris,,OIF, +OIF:SP:59:4314837,1,"Les Alouettes-Pont d'Espagne",48.752664,2.373838,0,0,OIF:SA:59:4314836,Europe/Paris,,OIF, +OIF:SP:59:4314838,1,"Belle Epine Sud",48.756197,2.369245,0,0,OIF:SA:59:4314838,Europe/Paris,,OIF, +OIF:SP:59:4314839,1,"Belle Epine Sud",48.755748,2.368919,0,0,OIF:SA:59:4314838,Europe/Paris,,OIF, +OIF:SP:59:4314840,1,"Belle Epine Nord",48.758471,2.370824,0,0,OIF:SA:59:4314840,Europe/Paris,,OIF, +OIF:SP:59:4314841,1,"Belle Epine Nord",48.758633,2.370144,0,0,OIF:SA:59:4314840,Europe/Paris,,OIF, +OIF:SP:59:4314843,1,"Le Cor de Chasse",48.759208,2.369465,0,0,OIF:SA:59:4314843,Europe/Paris,,OIF, +OIF:SP:59:4314844,1,"Porte de Thiais",48.75965,2.36559,0,0,OIF:SA:59821,Europe/Paris,,OIF, +OIF:SP:59:4314845,1,"Porte de Thiais",48.759119,2.366583,0,0,OIF:SA:59821,Europe/Paris,,OIF, +OIF:SP:59:4314846,1,"Marche International de Rungis",48.76339,2.35836,0,0,OIF:SA:59:4314846,Europe/Paris,,OIF, +OIF:SP:59:4314848,1,"Pont de Rungis-RER",48.747218,2.369063,0,0,OIF:SA:59:4314848,Europe/Paris,,OIF, +OIF:SP:59:4314849,1,"Jumelages",48.736787,2.328847,0,0,OIF:SA:59:4314816,Europe/Paris,,OIF, +OIF:SP:59:4314850,1,"Mouchez",48.732904,2.32734,0,0,OIF:SA:59:4314850,Europe/Paris,,OIF, +OIF:SP:59:4314851,1,"Petit Massy",48.740422,2.301789,0,0,OIF:SA:59:4314851,Europe/Paris,,OIF, +OIF:SP:59:4314852,1,"Saussaye - Mirabeau",48.73892,2.298814,0,0,OIF:SA:59:4314852,Europe/Paris,,OIF, +OIF:SP:59:4364016,1,"Grand Verger",48.872842,2.477769,0,0,OIF:SA:59:3687730,Europe/Paris,,OIF, +OIF:SP:59:4364018,1,"Église de Rosny",48.874131,2.482078,0,0,OIF:SA:59:3687731,Europe/Paris,,OIF, +OIF:SP:59:4364024,1,"Les Marnaudes",48.883243,2.490498,0,0,OIF:SA:59:4364024,Europe/Paris,,OIF, +OIF:SP:59:4364025,1,"Les Marnaudes",48.882844,2.492854,0,0,OIF:SA:59:4364024,Europe/Paris,,OIF, +OIF:SP:59:4364033,1,"Château de Villemomble",48.884159,2.510519,0,0,OIF:SA:59:4109810,Europe/Paris,,OIF, +OIF:SP:59:4364040,1,"Avenue Lucie",48.879738,2.527578,0,0,OIF:SA:59:4364040,Europe/Paris,,OIF, +OIF:SP:59:4364041,1,"Lycée Georges Clemenceau",48.876461,2.525645,0,0,OIF:SA:59:3715236,Europe/Paris,,OIF, +OIF:SP:59:4373696,1,"Lycée de Morangis",48.706109,2.32676,0,0,OIF:SA:59:4373696,Europe/Paris,,OIF, +OIF:SP:59:4373698,1,"Gabriel Fontaine",48.707089,2.329042,0,0,OIF:SA:59:4373698,Europe/Paris,,OIF, +OIF:SP:59:4373702,1,"Place Lucien Boilleau",48.704896,2.335357,0,0,OIF:SA:59:4373702,Europe/Paris,,OIF, +OIF:SP:59:4373703,1,"Place Lucien Boilleau",48.70495,2.335493,0,0,OIF:SA:59:4373702,Europe/Paris,,OIF, +OIF:SP:59:4373704,1,"Rue de Savigny",48.700779,2.335303,0,0,OIF:SA:59:4373704,Europe/Paris,,OIF, +OIF:SP:59:4373705,1,"Rue de Savigny",48.700869,2.335439,0,0,OIF:SA:59:4373704,Europe/Paris,,OIF, +OIF:SP:59:4373706,1,"Eiffel - Lesseps",48.699827,2.338535,0,0,OIF:SA:59:4373706,Europe/Paris,,OIF, +OIF:SP:59:4373707,1,"Eiffel - Lesseps",48.700393,2.338222,0,0,OIF:SA:59:4373706,Europe/Paris,,OIF, +OIF:SP:59:4373708,1,"Docteur Schweitzer",48.697481,2.337543,0,0,OIF:SA:59:4373708,Europe/Paris,,OIF, +OIF:SP:59:4373709,1,"Docteur Schweitzer",48.698236,2.338032,0,0,OIF:SA:59:4373708,Europe/Paris,,OIF, +OIF:SP:59:4373710,1,"Le Montoire",48.695872,2.336905,0,0,OIF:SA:59:4373710,Europe/Paris,,OIF, +OIF:SP:59:4373711,1,"Le Montoire",48.695944,2.337109,0,0,OIF:SA:59:4373710,Europe/Paris,,OIF, +OIF:SP:59:4373712,1,"Commissariat de Savigny-sur-Orge",48.692708,2.337679,0,0,OIF:SA:59:4373712,Europe/Paris,,OIF, +OIF:SP:59:4373713,1,"Réservoir",48.689993,2.339431,0,0,OIF:SA:59:4373713,Europe/Paris,,OIF, +OIF:SP:59:4373714,1,"Réservoir",48.689885,2.339688,0,0,OIF:SA:59:4373713,Europe/Paris,,OIF, +OIF:SP:59:4373715,1,"Glycines",48.68655,2.341345,0,0,OIF:SA:59:4373715,Europe/Paris,,OIF, +OIF:SP:59:4373716,1,"Glycines",48.68655,2.34148,0,0,OIF:SA:59:4373715,Europe/Paris,,OIF, +OIF:SP:59:4373717,1,"Allemane - Boileau",48.684402,2.342213,0,0,OIF:SA:59:4373717,Europe/Paris,,OIF, +OIF:SP:59:4373718,1,"Allemane - Boileau",48.684312,2.342362,0,0,OIF:SA:59:4373717,Europe/Paris,,OIF, +OIF:SP:59:4373719,1,"Briand - Salengro",48.680375,2.343217,0,0,OIF:SA:59:4373719,Europe/Paris,,OIF, +OIF:SP:59:4373720,1,"Briand - Salengro",48.680914,2.342851,0,0,OIF:SA:59:4373719,Europe/Paris,,OIF, +OIF:SP:59:4373721,1,"Centre Administratif",48.678739,2.346258,0,0,OIF:SA:59:4373721,Europe/Paris,,OIF, +OIF:SP:59:4373722,1,"Centre Administratif",48.679665,2.344819,0,0,OIF:SA:59:4373721,Europe/Paris,,OIF, +OIF:SP:59:4373723,1,"Savigny-sur-Orge - Carnot - RER",48.677085,2.349298,0,0,OIF:SA:8754523,Europe/Paris,,OIF, +OIF:SP:59:4373725,1,"Chateaubriand",48.677443,2.356369,0,0,OIF:SA:59:4373725,Europe/Paris,,OIF, +OIF:SP:59:4373726,1,"Chateaubriand",48.677677,2.356478,0,0,OIF:SA:59:4373725,Europe/Paris,,OIF, +OIF:SP:59:4373727,1,"Pres Saint-Martin",48.679743,2.364053,0,0,OIF:SA:59:4373727,Europe/Paris,,OIF, +OIF:SP:59:4373728,1,"Pres Saint-Martin",48.680399,2.364922,0,0,OIF:SA:59:4373727,Europe/Paris,,OIF, +OIF:SP:59:4373729,1,"Savigny-sur-Orge RER",48.676284,2.351646,0,0,OIF:SA:8754523,Europe/Paris,,OIF, +OIF:SP:59:4377607,1,"Porte de l'Essonne",48.714518,2.371936,0,0,OIF:SA:59844,Europe/Paris,,OIF, +OIF:SP:59:4377615,1,"Les Fleurs",48.705102,2.354465,0,0,OIF:SA:59:4377615,Europe/Paris,,OIF, +OIF:SP:59:4377616,1,"Les Fleurs",48.705173,2.354723,0,0,OIF:SA:59:4377615,Europe/Paris,,OIF, +OIF:SP:59:4377617,1,"Boulevard des Belges",48.701363,2.352522,0,0,OIF:SA:59:4377617,Europe/Paris,,OIF, +OIF:SP:59:4377618,1,"Boulevard des Belges",48.701381,2.352671,0,0,OIF:SA:59:4377617,Europe/Paris,,OIF, +OIF:SP:59:4377619,1,"Cimetière du Plateau",48.696743,2.349099,0,0,OIF:SA:59:4377619,Europe/Paris,,OIF, +OIF:SP:59:4377625,1,"Les Bleuets",48.68894,2.355138,0,0,OIF:SA:59:4377625,Europe/Paris,,OIF, +OIF:SP:59:4377626,1,"Les Bleuets",48.689381,2.354473,0,0,OIF:SA:59:4377625,Europe/Paris,,OIF, +OIF:SP:59:4377627,1,"Aristide Briand - Champagne",48.688059,2.357242,0,0,OIF:SA:59:4377627,Europe/Paris,,OIF, +OIF:SP:59:4377628,1,"Aristide Briand - Champagne",48.688167,2.357337,0,0,OIF:SA:59:4377627,Europe/Paris,,OIF, +OIF:SP:59:4377629,1,"Montagne Pavée",48.682944,2.360037,0,0,OIF:SA:59:4377629,Europe/Paris,,OIF, +OIF:SP:59:4377631,1,"Rue des Artistes",48.680598,2.355461,0,0,OIF:SA:59:4377631,Europe/Paris,,OIF, +OIF:SP:59:4377633,1,"Savigny-sur-Orge - Carnot - RER",48.677049,2.349868,0,0,OIF:SA:8754523,Europe/Paris,,OIF, +OIF:SP:59:4377637,1,"Salengro - Dunant",48.681211,2.341901,0,0,OIF:SA:59:4377637,Europe/Paris,,OIF, +OIF:SP:59:4377638,1,"Salengro - Dunant",48.681067,2.341901,0,0,OIF:SA:59:4377637,Europe/Paris,,OIF, +OIF:SP:59:4377639,1,"Marguerites - Salvador Allende",48.683638,2.337408,0,0,OIF:SA:59:4377639,Europe/Paris,,OIF, +OIF:SP:59:4377641,1,"Collège les Gâtines",48.685202,2.332534,0,0,OIF:SA:59:4377641,Europe/Paris,,OIF, +OIF:SP:59:4377643,1,"Meuniers",48.687629,2.331665,0,0,OIF:SA:59:4377643,Europe/Paris,,OIF, +OIF:SP:59:4377645,1,"Père Coindreau",48.689849,2.332982,0,0,OIF:SA:59:4377645,Europe/Paris,,OIF, +OIF:SP:59:4377646,1,"Père Coindreau",48.689615,2.331882,0,0,OIF:SA:59:4377645,Europe/Paris,,OIF, +OIF:SP:59:4377647,1,"ZAC les Gâtines - Capitaine Jean d'Hers",48.691773,2.334163,0,0,OIF:SA:59:4377647,Europe/Paris,,OIF, +OIF:SP:59:4377716,1,"La Croix de Berny RER",48.762606,2.304181,0,0,OIF:SA:8775874,Europe/Paris,,OIF, +OIF:SP:59:4377723,1,"Auguste Mounié - Division Leclerc",48.754013,2.305083,0,0,OIF:SA:59:4377723,Europe/Paris,,OIF, +OIF:SP:59:4377724,1,"Pont d'Antony",48.751137,2.305072,0,0,OIF:SA:59:4377724,Europe/Paris,,OIF, +OIF:SP:59:4377727,1,"Pasteur",48.753961,2.312397,0,0,OIF:SA:59:4377727,Europe/Paris,,OIF, +OIF:SP:59:4377733,1,"Albert Roper",48.754107,2.325215,0,0,OIF:SA:59:4274398,Europe/Paris,,OIF, +OIF:SP:59:4377734,1,"Cerisaie",48.752939,2.328709,0,0,OIF:SA:59:4377734,Europe/Paris,,OIF, +OIF:SP:59:4377735,1,"Cerisaie",48.75319,2.328559,0,0,OIF:SA:59:4377734,Europe/Paris,,OIF, +OIF:SP:59:4377736,1,"Parc de Médicis",48.753029,2.333779,0,0,OIF:SA:59:3730053,Europe/Paris,,OIF, +OIF:SP:59:4377737,1,"Parc de Médicis",48.753227,2.333888,0,0,OIF:SA:59:3730053,Europe/Paris,,OIF, +OIF:SP:59:4377738,1,"Voie des Laitières",48.751276,2.338333,0,0,OIF:SA:59:4377738,Europe/Paris,,OIF, +OIF:SP:59:4377739,1,"Voie des Laitières",48.751267,2.338686,0,0,OIF:SA:59:4377738,Europe/Paris,,OIF, +OIF:SP:59:4377740,1,"Ormeteau",48.748984,2.343199,0,0,OIF:SA:59:4377740,Europe/Paris,,OIF, +OIF:SP:59:4377741,1,"Ormeteau",48.748427,2.341907,0,0,OIF:SA:59:4377740,Europe/Paris,,OIF, +OIF:SP:59:4377742,1,"La Grange",48.748768,2.346311,0,0,OIF:SA:59:4377742,Europe/Paris,,OIF, +OIF:SP:59:4377743,1,"La Grange",48.749119,2.345876,0,0,OIF:SA:59:4377742,Europe/Paris,,OIF, +OIF:SP:59:4377747,1,"Robert Schuman",48.74599,2.354506,0,0,OIF:SA:59831,Europe/Paris,,OIF, +OIF:SP:59:4377748,1,"Robert Schuman",48.746125,2.354465,0,0,OIF:SA:59831,Europe/Paris,,OIF, +OIF:SP:59:4377749,1,"Rue d'Arcueil",48.746718,2.356328,0,0,OIF:SA:59:4377749,Europe/Paris,,OIF, +OIF:SP:59:4377750,1,"Rue d'Arcueil",48.746726,2.356939,0,0,OIF:SA:59:4377749,Europe/Paris,,OIF, +OIF:SP:59:4377751,1,"Lindbergh",48.744793,2.359833,0,0,OIF:SA:59:4377751,Europe/Paris,,OIF, +OIF:SP:59:4377752,1,"Lindbergh",48.744847,2.359684,0,0,OIF:SA:59:4377751,Europe/Paris,,OIF, +OIF:SP:59:4377756,1,"Cité Jardins",48.746182,2.37719,0,0,OIF:SA:8754619,Europe/Paris,,OIF, +OIF:SP:59:4377757,1,"Cité Jardins",48.746326,2.375845,0,0,OIF:SA:8754619,Europe/Paris,,OIF, +OIF:SP:59:4377758,1,"Rue des Quinze Arpents",48.746207,2.383252,0,0,OIF:SA:59:4377758,Europe/Paris,,OIF, +OIF:SP:59:4377759,1,"Rue des Quinze Arpents",48.74653,2.382871,0,0,OIF:SA:59:4377758,Europe/Paris,,OIF, +OIF:SP:59:4377760,1,"Rue du Puits Dixme",48.74731,2.388961,0,0,OIF:SA:59:4377760,Europe/Paris,,OIF, +OIF:SP:59:4377761,1,"Rue du Puits Dixme",48.747391,2.388553,0,0,OIF:SA:59:4377760,Europe/Paris,,OIF, +OIF:SP:59:4377762,1,"Rue des Oliviers",48.751256,2.388449,0,0,OIF:SA:59:4377762,Europe/Paris,,OIF, +OIF:SP:59:4377763,1,"Rue des Oliviers",48.751103,2.388217,0,0,OIF:SA:59:4377762,Europe/Paris,,OIF, +OIF:SP:59:4377764,1,"Centre Bus de Thiais",48.753818,2.386779,0,0,OIF:SA:59:4377764,Europe/Paris,,OIF, +OIF:SP:59:4377765,1,"Centre Bus de Thiais",48.753567,2.386575,0,0,OIF:SA:59:4377764,Europe/Paris,,OIF, +OIF:SP:59:4377766,1,"Rue du Bas Marin",48.754476,2.383531,0,0,OIF:SA:59:4377766,Europe/Paris,,OIF, +OIF:SP:59:4377767,1,"Rue du Bas Marin",48.754386,2.383776,0,0,OIF:SA:59:4377766,Europe/Paris,,OIF, +OIF:SP:59:4377776,1,"Marche International de Rungis",48.763849,2.35753,0,0,OIF:SA:59:4314846,Europe/Paris,,OIF, +OIF:SP:59:4377777,1,"Marche International de Rungis",48.763714,2.357231,0,0,OIF:SA:59:4314846,Europe/Paris,,OIF, +OIF:SP:59:4377780,1,"Lucien Grelinger",48.749999,2.347208,0,0,OIF:SA:59:4377780,Europe/Paris,,OIF, +OIF:SP:59:4377781,1,"Auguste Mounié - Division Leclerc",48.753411,2.305492,0,0,OIF:SA:59:4377723,Europe/Paris,,OIF, +OIF:SP:59:4377976,1,"Foyer Émile Roux",48.756874,2.318023,0,0,OIF:SA:59:4377976,Europe/Paris,,OIF, +OIF:SP:59:4377982,1,"8 Mai 1945",48.752883,2.313158,0,0,OIF:SA:59:4274393,Europe/Paris,,OIF, +OIF:SP:59:4377985,1,"Thibaudes",48.749882,2.32315,0,0,OIF:SA:59:4377985,Europe/Paris,,OIF, +OIF:SP:59:4377986,1,"Thibaudes",48.749882,2.32387,0,0,OIF:SA:59:4377985,Europe/Paris,,OIF, +OIF:SP:59:4377987,1,"Maison de Retraite",48.752813,2.323802,0,0,OIF:SA:59:4377987,Europe/Paris,,OIF, +OIF:SP:59:4377988,1,"Maison de Retraite",48.752857,2.323652,0,0,OIF:SA:59:4377987,Europe/Paris,,OIF, +OIF:SP:59:4377993,1,"Clos la Garenne",48.755725,2.327716,0,0,OIF:SA:59:4274399,Europe/Paris,,OIF, +OIF:SP:59:4377998,1,"Poste Annexe",48.764965,2.327402,0,0,OIF:SA:59:4377998,Europe/Paris,,OIF, +OIF:SP:59:4378000,1,"Avara - Gymnase Vallée aux Renards",48.765144,2.32354,0,0,OIF:SA:59:4274403,Europe/Paris,,OIF, +OIF:SP:59:4378001,1,"A.R.E.P.A.",48.769153,2.324695,0,0,OIF:SA:59:4378001,Europe/Paris,,OIF, +OIF:SP:59:4378002,1,"A.R.E.P.A.",48.768344,2.324056,0,0,OIF:SA:59:4378001,Europe/Paris,,OIF, +OIF:SP:59:4378005,1,"Collège Ronsard",48.77362,2.324409,0,0,OIF:SA:59:4378005,Europe/Paris,,OIF, +OIF:SP:59:4378006,1,"Collège Ronsard",48.772667,2.32362,0,0,OIF:SA:59:4378005,Europe/Paris,,OIF, +OIF:SP:59:4378009,1,"Petit Robinson",48.779274,2.32846,0,0,OIF:SA:59:3730351,Europe/Paris,,OIF, +OIF:SP:59:4378010,1,"Petit Robinson",48.779364,2.328623,0,0,OIF:SA:59:3730351,Europe/Paris,,OIF, +OIF:SP:59:4378018,1,"De Gaulle - Gounod - Tabanou",48.781251,2.34225,0,0,OIF:SA:59:3786078,Europe/Paris,,OIF, +OIF:SP:59:4378024,1,"De Gaulle - Gounod - Tabanou.",48.780038,2.34085,0,0,OIF:SA:59:3786078,Europe/Paris,,OIF, +OIF:SP:59:4378025,1,"De Gaulle - Gounod - Tabanou.",48.780461,2.341244,0,0,OIF:SA:59:3786078,Europe/Paris,,OIF, +OIF:SP:59:4378026,1,"Henri Thirard - Léon Jouhaux.",48.778906,2.340564,0,0,OIF:SA:59:3730644,Europe/Paris,,OIF, +OIF:SP:59:4378027,1,"Henri Thirard - Léon Jouhaux.",48.778789,2.340904,0,0,OIF:SA:59:3730644,Europe/Paris,,OIF, +OIF:SP:59:4378029,1,"Stade l'Hayette",48.775904,2.343338,0,0,OIF:SA:59:4274418,Europe/Paris,,OIF, +OIF:SP:59:4378031,1,"Chevilly - Dahlias",48.774735,2.348587,0,0,OIF:SA:59:4274419,Europe/Paris,,OIF, +OIF:SP:59:4378032,1,"Les Coquelicots",48.775588,2.353292,0,0,OIF:SA:59:4378032,Europe/Paris,,OIF, +OIF:SP:59:4378038,1,"Domaine Chérioux",48.778785,2.367179,0,0,OIF:SA:59813,Europe/Paris,,OIF, +OIF:SP:59:4378039,1,"Domaine Chérioux",48.778731,2.367179,0,0,OIF:SA:59:4274424,Europe/Paris,,OIF, +OIF:SP:59:4378040,1,"Rue Paul Hochart",48.777564,2.361915,0,0,OIF:SA:59:4378040,Europe/Paris,,OIF, +OIF:SP:59:4378042,1,"Sous-Préfecture",48.777728,2.333383,0,0,OIF:SA:59:4378042,Europe/Paris,,OIF, +OIF:SP:59:4378043,1,"Marche Nord",48.762844,2.330774,0,0,OIF:SA:59:4378043,Europe/Paris,,OIF, +OIF:SP:59:4378044,1,"Ferme de Cottinville",48.755231,2.326968,0,0,OIF:SA:59:4378044,Europe/Paris,,OIF, +OIF:SP:59:4378051,1,"Mairie de Villejuif",48.79251,2.36384,0,0,OIF:SA:59:4378051,Europe/Paris,,OIF, +OIF:SP:59:4378052,1,"Edouard Vaillant - Cimetière",48.793141,2.355338,0,0,OIF:SA:59:4378052,Europe/Paris,,OIF, +OIF:SP:59:4378054,1,"Verdun - Grosménil",48.794408,2.3564,0,0,OIF:SA:59:4293181,Europe/Paris,,OIF, +OIF:SP:59:4378055,1,"Groupe Hospitalier Paul Brousse",48.794758,2.359706,0,0,OIF:SA:59:4378055,Europe/Paris,,OIF, +OIF:SP:59:4378056,1,"Guy Moquet",48.797527,2.358088,0,0,OIF:SA:59:4378056,Europe/Paris,,OIF, +OIF:SP:59:4378057,1,"Ambroise Croizat",48.800286,2.356497,0,0,OIF:SA:59:4293177,Europe/Paris,,OIF, +OIF:SP:59:4378059,1,"Rue des Guipons",48.805049,2.361847,0,0,OIF:SA:59:4378059,Europe/Paris,,OIF, +OIF:SP:59:4378060,1,"Dauphin - RN7",48.805812,2.364446,0,0,OIF:SA:59:4378060,Europe/Paris,,OIF, +OIF:SP:59:4378061,1,"Groupe Scolaire Pasteur",48.804643,2.366337,0,0,OIF:SA:59580,Europe/Paris,,OIF, +OIF:SP:59:4378062,1,"Henri Barbusse",48.804238,2.368595,0,0,OIF:SA:59580,Europe/Paris,,OIF, +OIF:SP:59:4378063,1,"Émile Zola",48.803024,2.370608,0,0,OIF:SA:59:4378063,Europe/Paris,,OIF, +OIF:SP:59:4378064,1,"Beaumarchais",48.798989,2.369884,0,0,OIF:SA:59:4378064,Europe/Paris,,OIF, +OIF:SP:59:4378065,1,"Clément-Bizet",48.796742,2.370699,0,0,OIF:SA:59579,Europe/Paris,,OIF, +OIF:SP:59:4378066,1,"Paul Vaillant-Couturier - Métro",48.795547,2.367379,0,0,OIF:SA:59579,Europe/Paris,,OIF, +OIF:SP:59:4378067,1,"Guynemer - Place des Fusilles.",48.792815,2.366452,0,0,OIF:SA:59:4378067,Europe/Paris,,OIF, +OIF:SP:59:4378069,1,"Villejuif - Louis Aragon.",48.788195,2.367905,0,0,OIF:SA:59323,Europe/Paris,,OIF, +OIF:SP:59:4378072,1,"Auguste Delaune - Stade Nautique",48.784593,2.36015,0,0,OIF:SA:59:4378072,Europe/Paris,,OIF, +OIF:SP:59:4378073,1,"Auguste Delaune - Stade Nautique",48.784467,2.360749,0,0,OIF:SA:59:4378072,Europe/Paris,,OIF, +OIF:SP:59:4378074,1,"Les Lozaits",48.784117,2.354519,0,0,OIF:SA:59:3864898,Europe/Paris,,OIF, +OIF:SP:59:4378075,1,"Les Lozaits",48.784522,2.355104,0,0,OIF:SA:59:3864898,Europe/Paris,,OIF, +OIF:SP:59:4378076,1,"Youri Gagarine",48.78036,2.355347,0,0,OIF:SA:59:4378076,Europe/Paris,,OIF, +OIF:SP:59:4378077,1,"Youri Gagarine",48.781529,2.355565,0,0,OIF:SA:59:4378076,Europe/Paris,,OIF, +OIF:SP:59:4378080,1,"Marche International de Rungis",48.763966,2.357762,0,0,OIF:SA:59:4314846,Europe/Paris,,OIF, +OIF:SP:59:4378082,1,"Mairie de Chevilly-Larue",48.77025,2.348599,0,0,OIF:SA:59:3864935,Europe/Paris,,OIF, +OIF:SP:59:4378087,1,"Dareau-Rene Coty",48.830343,2.334088,0,0,OIF:SA:59:3764436,Europe/Paris,,OIF, +OIF:SP:59:4378089,1,"Denfert-Rochereau - Métro-RER",48.833525,2.333774,0,0,OIF:SA:8775863,Europe/Paris,,OIF, +OIF:SP:59:4378092,1,"Cité Universitaire",48.821571,2.340907,0,0,OIF:SA:59109,Europe/Paris,,OIF, +OIF:SP:59:4378095,1,"Le Delta",48.758718,2.346462,0,0,OIF:SA:59:4378095,Europe/Paris,,OIF, +OIF:SP:59:4378096,1,"Les Closeaux",48.755356,2.346584,0,0,OIF:SA:59:3864920,Europe/Paris,,OIF, +OIF:SP:59:4378097,1,"Carrefour de l'Europe",48.753756,2.348161,0,0,OIF:SA:59:4378097,Europe/Paris,,OIF, +OIF:SP:59:4378099,1,"Porte de Rungis",48.753064,2.354169,0,0,OIF:SA:59827,Europe/Paris,,OIF, +OIF:SP:59:4378100,1,"Concarneau",48.754843,2.353082,0,0,OIF:SA:59:4378100,Europe/Paris,,OIF, +OIF:SP:59:4378101,1,"Marche de Rungis-Pondorly",48.758439,2.349181,0,0,OIF:SA:59:4378101,Europe/Paris,,OIF, +OIF:SP:59:4378102,1,"Viaduc",48.761181,2.349196,0,0,OIF:SA:59:4378102,Europe/Paris,,OIF, +OIF:SP:59:4378103,1,"Agen",48.763176,2.349264,0,0,OIF:SA:59:4378103,Europe/Paris,,OIF, +OIF:SP:59:4378104,1,"Chateaurenard",48.764695,2.35265,0,0,OIF:SA:59:4378104,Europe/Paris,,OIF, +OIF:SP:59:4378111,1,"Porte de l'Hay-Lyonnais",48.76092,2.343431,0,0,OIF:SA:59:4378111,Europe/Paris,,OIF, +OIF:SP:59:4378116,1,"Saarinen",48.74972,2.355336,0,0,OIF:SA:59829,Europe/Paris,,OIF, +OIF:SP:59:4378266,1,"La Fontaine",48.770337,2.311478,0,0,OIF:SA:8775873,Europe/Paris,,OIF, +OIF:SP:59:4378267,1,"La Fontaine",48.770706,2.312334,0,0,OIF:SA:8775873,Europe/Paris,,OIF, +OIF:SP:59:4378271,1,"Berny-Raymond Aron",48.763048,2.309619,0,0,OIF:SA:59:4378271,Europe/Paris,,OIF, +OIF:SP:59:4378272,1,"Berny-Raymond Aron",48.763722,2.3097,0,0,OIF:SA:59:4378271,Europe/Paris,,OIF, +OIF:SP:59:4378273,1,"Docteur Ténine",48.760443,2.318607,0,0,OIF:SA:59:4378273,Europe/Paris,,OIF, +OIF:SP:59:4378274,1,"Docteur Ténine",48.760785,2.31949,0,0,OIF:SA:59:4378273,Europe/Paris,,OIF, +OIF:SP:59:4378275,1,"Le Petit Fresnes",48.759194,2.322427,0,0,OIF:SA:59:4378275,Europe/Paris,,OIF, +OIF:SP:59:4378276,1,"Le Petit Fresnes",48.759311,2.324113,0,0,OIF:SA:59:4378275,Europe/Paris,,OIF, +OIF:SP:59:4378283,1,"Le Delta",48.7587,2.344641,0,0,OIF:SA:59:3864917,Europe/Paris,,OIF, +OIF:SP:59:4378284,1,"Le Delta",48.758592,2.343947,0,0,OIF:SA:59:3864917,Europe/Paris,,OIF, +OIF:SP:59:4378285,1,"Mairie de Chevilly-Larue",48.770061,2.34879,0,0,OIF:SA:59:3864935,Europe/Paris,,OIF, +OIF:SP:59:4378287,1,"Marche International de Rungis",48.763301,2.357938,0,0,OIF:SA:59:4314846,Europe/Paris,,OIF, +OIF:SP:59:4378303,1,"Rene Panhard",48.76306,2.401974,0,0,OIF:SA:59:3620239,Europe/Paris,,OIF, +OIF:SP:59:4378312,1,"Parc Interdépartemental des Sports",48.770432,2.426663,0,0,OIF:SA:59:4378312,Europe/Paris,,OIF, +OIF:SP:59:4378313,1,"Parc Interdépartemental des Sports",48.770756,2.426351,0,0,OIF:SA:59:4378312,Europe/Paris,,OIF, +OIF:SP:59:4378314,1,"Pompadour",48.772897,2.434881,0,0,OIF:SA:8760880,Europe/Paris,,OIF, +OIF:SP:59:4378315,1,"Pompadour",48.773113,2.434664,0,0,OIF:SA:8760880,Europe/Paris,,OIF, +OIF:SP:59:4378316,1,"Base de Loisirs de Créteil",48.779702,2.444074,0,0,OIF:SA:59:4378316,Europe/Paris,,OIF, +OIF:SP:59:4378317,1,"Base de Loisirs de Créteil",48.779702,2.44353,0,0,OIF:SA:59:4378316,Europe/Paris,,OIF, +OIF:SP:59:4378318,1,"Préfecture du Val-de-Marne",48.783438,2.447319,0,0,OIF:SA:13:659,Europe/Paris,,OIF, +OIF:SP:59:4378319,1,"Préfecture du Val-de-Marne",48.783825,2.447075,0,0,OIF:SA:13:659,Europe/Paris,,OIF, +OIF:SP:59:4378322,1,"Créteil - Université - Métro",48.789922,2.452977,0,0,OIF:SA:59564,Europe/Paris,,OIF, +OIF:SP:59:4378323,1,"Créteil - Université - Métro",48.78994,2.452393,0,0,OIF:SA:59564,Europe/Paris,,OIF, +OIF:SP:59:4378324,1,"Église de Créteil",48.793922,2.46172,0,0,OIF:SA:59:4378324,Europe/Paris,,OIF, +OIF:SP:59:4378325,1,"Église de Créteil",48.793366,2.460263,0,0,OIF:SA:59:4378324,Europe/Paris,,OIF, +OIF:SP:59:4378326,1,"Hôpital Intercommunal",48.797882,2.464777,0,0,OIF:SA:59:3663578,Europe/Paris,,OIF, +OIF:SP:59:4378327,1,"Hôpital Intercommunal",48.797236,2.463796,0,0,OIF:SA:59:3663578,Europe/Paris,,OIF, +OIF:SP:59:4378353,1,"Porte d'Italie - Métro",48.817929,2.360165,0,0,OIF:SA:59666,Europe/Paris,,OIF, +OIF:SP:59:4378364,1,"Villejuif Division Leclerc",48.784636,2.36774,0,0,OIF:SA:59811,Europe/Paris,,OIF, +OIF:SP:59:4378365,1,"Lurçat - Luisette",48.784105,2.371317,0,0,OIF:SA:59:4378365,Europe/Paris,,OIF, +OIF:SP:59:4378366,1,"Edouard Tremblay",48.781669,2.37258,0,0,OIF:SA:59:4378366,Europe/Paris,,OIF, +OIF:SP:59:4378367,1,"Julian Grimau - Voie Verte",48.779457,2.374441,0,0,OIF:SA:59:4378367,Europe/Paris,,OIF, +OIF:SP:59:4378368,1,"Paul Armangot",48.776967,2.376452,0,0,OIF:SA:59:4378368,Europe/Paris,,OIF, +OIF:SP:59:4378369,1,"Camille Risch",48.775125,2.373813,0,0,OIF:SA:59:4378369,Europe/Paris,,OIF, +OIF:SP:59:4378370,1,"Cité du Moulin Vert",48.772572,2.376272,0,0,OIF:SA:59815,Europe/Paris,,OIF, +OIF:SP:59:4378371,1,"Piscine",48.769307,2.382103,0,0,OIF:SA:59:4378371,Europe/Paris,,OIF, +OIF:SP:59:4378372,1,"Louis Duperrey",48.766555,2.385513,0,0,OIF:SA:59:4378372,Europe/Paris,,OIF, +OIF:SP:59:4378373,1,"Perreux",48.76596,2.389904,0,0,OIF:SA:59:4378373,Europe/Paris,,OIF, +OIF:SP:59:4378374,1,"Mairie de Thiais",48.764197,2.393166,0,0,OIF:SA:59:4378374,Europe/Paris,,OIF, +OIF:SP:59:4378375,1,"Panhard - Hugo",48.763529,2.397883,0,0,OIF:SA:59:4378375,Europe/Paris,,OIF, +OIF:SP:59:4378376,1,"Rene Panhard",48.762404,2.401933,0,0,OIF:SA:59:4378376,Europe/Paris,,OIF, +OIF:SP:59:4378377,1,"Général Leclerc",48.762131,2.406405,0,0,OIF:SA:4:47,Europe/Paris,,OIF, +OIF:SP:59:4378378,1,"Choisy-le-Roi RER",48.764699,2.411847,0,0,OIF:SA:8754528,Europe/Paris,,OIF, +OIF:SP:59:4378381,1,"Creche Jean Effel",48.75552,2.414539,0,0,OIF:SA:59:4378381,Europe/Paris,,OIF, +OIF:SP:59:4390966,1,"Jean Mermoz - Général de Gaulle",48.772632,2.339802,0,0,OIF:SA:59:3786128,Europe/Paris,,OIF, +OIF:SP:59:4390967,1,"Cimetière Communal",48.771958,2.343963,0,0,OIF:SA:59:4390967,Europe/Paris,,OIF, +OIF:SP:59:4390970,1,"Église de Chevilly-Larue",48.770851,2.354365,0,0,OIF:SA:59:4390970,Europe/Paris,,OIF, +OIF:SP:59:4390971,1,"Cité des Sorbiers",48.771776,2.358717,0,0,OIF:SA:59:4390971,Europe/Paris,,OIF, +OIF:SP:59:4390972,1,"Jacques Brel",48.770193,2.363897,0,0,OIF:SA:59:4390972,Europe/Paris,,OIF, +OIF:SP:59:4390973,1,"Bretagne",48.768206,2.367812,0,0,OIF:SA:59817,Europe/Paris,,OIF, +OIF:SP:59:4390975,1,"Le Cor de Chasse - la Belle Epine",48.759757,2.368187,0,0,OIF:SA:59821,Europe/Paris,,OIF, +OIF:SP:59:4394963,1,"Cité des Tilleuls",48.692896,2.345975,0,0,OIF:SA:59:4394963,Europe/Paris,,OIF, +OIF:SP:59:4394974,1,"ZAC les Gâtines - Capitaine Jean d'Hers",48.691692,2.334203,0,0,OIF:SA:59:4377647,Europe/Paris,,OIF, +OIF:SP:59:4394976,1,"Meuniers",48.686784,2.330633,0,0,OIF:SA:59:4377643,Europe/Paris,,OIF, +OIF:SP:59:4394978,1,"Marguerites - Salvador Allende",48.683395,2.337638,0,0,OIF:SA:59:4377639,Europe/Paris,,OIF, +OIF:SP:59:4394982,1,"Rue des Artistes",48.680185,2.354959,0,0,OIF:SA:59:4377631,Europe/Paris,,OIF, +OIF:SP:59:4394983,1,"Montagne Pavée",48.682845,2.360118,0,0,OIF:SA:59:4377629,Europe/Paris,,OIF, +OIF:SP:59:4394986,1,"Place de la République",48.690981,2.350767,0,0,OIF:SA:59:4394986,Europe/Paris,,OIF, +OIF:SP:59:4394987,1,"Cité des Tilleuls",48.693292,2.346056,0,0,OIF:SA:59:4394963,Europe/Paris,,OIF, +OIF:SP:59:4394988,1,"Cimetière du Plateau",48.697138,2.349723,0,0,OIF:SA:59:4377619,Europe/Paris,,OIF, +OIF:SP:59:4394994,1,"Porte de l'Essonne",48.714347,2.372017,0,0,OIF:SA:59844,Europe/Paris,,OIF, +OIF:SP:59:4394997,1,"Place de la République",48.69037,2.351812,0,0,OIF:SA:59:4394986,Europe/Paris,,OIF, +OIF:SP:59:4423346,1,"Gustave Charpentier",48.779182,2.359876,0,0,OIF:SA:59:3730636,Europe/Paris,,OIF, +OIF:SP:59:4423347,1,"Poitou",48.775578,2.356624,0,0,OIF:SA:59:3730638,Europe/Paris,,OIF, +OIF:SP:59:4423348,1,"Rue de Lallier",48.775156,2.35419,0,0,OIF:SA:59:4423348,Europe/Paris,,OIF, +OIF:SP:59:4423349,1,"Rue de Bicetre",48.776118,2.353741,0,0,OIF:SA:59:3730641,Europe/Paris,,OIF, +OIF:SP:59:4423350,1,"Jules Ferry-Ferrer",48.778114,2.347132,0,0,OIF:SA:59:3730643,Europe/Paris,,OIF, +OIF:SP:59:4423355,1,"Camelias-Dauvin",48.766934,2.334091,0,0,OIF:SA:59:4423355,Europe/Paris,,OIF, +OIF:SP:59:4423358,1,"Émile Zola",48.758583,2.32376,0,0,OIF:SA:59:4423358,Europe/Paris,,OIF, +OIF:SP:59:4423359,1,"Mairie de Fresnes",48.755877,2.322102,0,0,OIF:SA:59:4423359,Europe/Paris,,OIF, +OIF:SP:59:4458754,1,"Père Brottier - Charles Infroit",48.806186,2.246256,0,0,OIF:SA:59:4458754,Europe/Paris,,OIF, +OIF:SP:59:4458755,1,"Rue des Peupliers",48.807689,2.250036,0,0,OIF:SA:59:4458755,Europe/Paris,,OIF, +OIF:SP:59:4458756,1,"Hôpital Sainte-Émilie",48.807592,2.251615,0,0,OIF:SA:59:4458756,Europe/Paris,,OIF, +OIF:SP:59:4458757,1,"Vallée du Bois",48.80691,2.253766,0,0,OIF:SA:59:3909042,Europe/Paris,,OIF, +OIF:SP:59:4458758,1,"Marquis",48.804874,2.259715,0,0,OIF:SA:59:4458758,Europe/Paris,,OIF, +OIF:SP:59:4458759,1,"Trosy",48.803015,2.262303,0,0,OIF:SA:59:4458759,Europe/Paris,,OIF, +OIF:SP:59:4458760,1,"Marche de Clamart",48.801561,2.266183,0,0,OIF:SA:59:3619155,Europe/Paris,,OIF, +OIF:SP:59:4458761,1,"Pierre Corby",48.801646,2.271856,0,0,OIF:SA:59:3909093,Europe/Paris,,OIF, +OIF:SP:59:4458763,1,"Général de Gaulle",48.800151,2.284579,0,0,OIF:SA:59852,Europe/Paris,,OIF, +OIF:SP:59:4458767,1,"Chartres - Blanchard",48.795768,2.291522,0,0,OIF:SA:59:4458767,Europe/Paris,,OIF, +OIF:SP:59:4458768,1,"Liberté",48.798196,2.294771,0,0,OIF:SA:59:4458768,Europe/Paris,,OIF, +OIF:SP:59:4458769,1,"Dampierre",48.795456,2.301181,0,0,OIF:SA:59:4458769,Europe/Paris,,OIF, +OIF:SP:59:4458770,1,"Rosenberg",48.796868,2.302282,0,0,OIF:SA:59:4458770,Europe/Paris,,OIF, +OIF:SP:59:4458771,1,"Rue des Olivettes",48.797264,2.306554,0,0,OIF:SA:59:4458771,Europe/Paris,,OIF, +OIF:SP:59:4458772,1,"Les Iris",48.797895,2.31258,0,0,OIF:SA:59:4458772,Europe/Paris,,OIF, +OIF:SP:59:4458773,1,"Pasteur - Meuniers",48.798058,2.317627,0,0,OIF:SA:59:4458773,Europe/Paris,,OIF, +OIF:SP:59:4458774,1,"Verdun - Pasteur",48.801887,2.319939,0,0,OIF:SA:59:4458774,Europe/Paris,,OIF, +OIF:SP:59:4458775,1,"Grange Ory",48.801483,2.323708,0,0,OIF:SA:59:4458775,Europe/Paris,,OIF, +OIF:SP:59:4458776,1,"Carnot - Aristide Briand",48.799694,2.323749,0,0,OIF:SA:59:4036917,Europe/Paris,,OIF, +OIF:SP:59:4458777,1,"Arcueil-Cachan RER",48.797843,2.32843,0,0,OIF:SA:8775867,Europe/Paris,,OIF, +OIF:SP:59:4458778,1,"Wilson - Provigny",48.796666,2.331355,0,0,OIF:SA:59:4458778,Europe/Paris,,OIF, +OIF:SP:59:4458786,1,"Institut Gustave Roussy - Hautes Bruyères",48.796512,2.350592,0,0,OIF:SA:59:4458786,Europe/Paris,,OIF, +OIF:SP:59:4458788,1,"Groupe Hospitalier Paul Brousse",48.794641,2.362563,0,0,OIF:SA:59:4378055,Europe/Paris,,OIF, +OIF:SP:59:4458789,1,"Paul Vaillant-Couturier - Métro",48.795493,2.367569,0,0,OIF:SA:59579,Europe/Paris,,OIF, +OIF:SP:59:4458790,1,"Guynemer - Maxime Gorki",48.792383,2.369214,0,0,OIF:SA:59:4458790,Europe/Paris,,OIF, +OIF:SP:59:4458792,1,"Villejuif - Louis Aragon - Métro",48.787629,2.367578,0,0,OIF:SA:59323,Europe/Paris,,OIF, +OIF:SP:59:4458793,1,"Guynemer - Place des Fusilles",48.792213,2.366656,0,0,OIF:SA:59:4378067,Europe/Paris,,OIF, +OIF:SP:59:4458794,1,"Guynemer - Maxime Gorki",48.793857,2.369323,0,0,OIF:SA:59:4458790,Europe/Paris,,OIF, +OIF:SP:59:4458796,1,"Groupe Hospitalier Paul Brousse",48.794847,2.36327,0,0,OIF:SA:59:4378055,Europe/Paris,,OIF, +OIF:SP:59:4458797,1,"Verdun - Grosménil",48.794768,2.355203,0,0,OIF:SA:59:4293181,Europe/Paris,,OIF, +OIF:SP:59:4458798,1,"Institut Gustave Roussy - Hautes Bruyères",48.796611,2.350728,0,0,OIF:SA:59:4458786,Europe/Paris,,OIF, +OIF:SP:59:4458805,1,"Wilson - Provigny",48.797016,2.330838,0,0,OIF:SA:59:4458778,Europe/Paris,,OIF, +OIF:SP:59:4458806,1,"Arcueil-Cachan RER",48.797789,2.328852,0,0,OIF:SA:8775867,Europe/Paris,,OIF, +OIF:SP:59:4458808,1,"Pasteur - Meuniers",48.797905,2.317015,0,0,OIF:SA:59:4458773,Europe/Paris,,OIF, +OIF:SP:59:4458809,1,"Les Iris",48.798057,2.31326,0,0,OIF:SA:59:4458772,Europe/Paris,,OIF, +OIF:SP:59:4458810,1,"Rue des Olivettes",48.797498,2.306404,0,0,OIF:SA:59:4458771,Europe/Paris,,OIF, +OIF:SP:59:4458811,1,"Rosenberg",48.797021,2.302323,0,0,OIF:SA:59:4458770,Europe/Paris,,OIF, +OIF:SP:59:4458812,1,"Rue Froide",48.797317,2.300187,0,0,OIF:SA:59:4458812,Europe/Paris,,OIF, +OIF:SP:59:4458814,1,"Chartres - Blanchard",48.796325,2.29231,0,0,OIF:SA:59:4458814,Europe/Paris,,OIF, +OIF:SP:59:4458820,1,"Pierre Corby",48.801835,2.272223,0,0,OIF:SA:59:3909093,Europe/Paris,,OIF, +OIF:SP:59:4458821,1,"Marche de Clamart",48.801831,2.266005,0,0,OIF:SA:59:3619155,Europe/Paris,,OIF, +OIF:SP:59:4458822,1,"Trosy",48.803069,2.262534,0,0,OIF:SA:59:4458759,Europe/Paris,,OIF, +OIF:SP:59:4458823,1,"Marquis",48.805547,2.258571,0,0,OIF:SA:59:4458758,Europe/Paris,,OIF, +OIF:SP:59:4458824,1,"Vallée du Bois",48.807018,2.25397,0,0,OIF:SA:59:3909042,Europe/Paris,,OIF, +OIF:SP:59:4458825,1,"Hôpital Sainte-Émilie",48.807547,2.252349,0,0,OIF:SA:59:4458756,Europe/Paris,,OIF, +OIF:SP:59:4458828,1,"Paul Bert",48.810095,2.246303,0,0,OIF:SA:59:4009166,Europe/Paris,,OIF, +OIF:SP:59:4458829,1,"Val Fleury RER",48.807647,2.241545,0,0,OIF:SA:8739308,Europe/Paris,,OIF, +OIF:SP:59:4459234,1,"Anatole France",48.892327,2.284704,0,0,OIF:SA:59447,Europe/Paris,,OIF, +OIF:SP:59:4459236,1,"Pereire - le Chatelier",48.884702,2.298298,0,0,OIF:SA:59219,Europe/Paris,,OIF, +OIF:SP:59:4459237,1,"Villiers",48.881202,2.317119,0,0,OIF:SA:59415,Europe/Paris,,OIF, +OIF:SP:59:4459271,1,"Gambetta",48.864668,2.398982,0,0,OIF:SA:59325,Europe/Paris,,OIF, +OIF:SP:59:4459272,1,"Pelleport",48.864566,2.404976,0,0,OIF:SA:59328,Europe/Paris,,OIF, +OIF:SP:59:4459275,1,"Général de Gaulle",48.861754,2.416891,0,0,OIF:SA:59448,Europe/Paris,,OIF, +OIF:SP:59:4459276,1,"République - Robespierre",48.860197,2.420866,0,0,OIF:SA:59:4036623,Europe/Paris,,OIF, +OIF:SP:59:4459277,1,"Fraternité",48.859413,2.424011,0,0,OIF:SA:59:4459277,Europe/Paris,,OIF, +OIF:SP:59:4459278,1,"Sorins",48.858556,2.42781,0,0,OIF:SA:59:4459278,Europe/Paris,,OIF, +OIF:SP:59:4459279,1,"Marche de Montreuil",48.858391,2.432318,0,0,OIF:SA:59:4459279,Europe/Paris,,OIF, +OIF:SP:59:4459282,1,"Mairie de Montreuil",48.862426,2.442501,0,0,OIF:SA:59507,Europe/Paris,,OIF, +OIF:SP:59:4471740,1,"Porte de Vitry",48.824135,2.376339,0,0,OIF:SA:59722,Europe/Paris,,OIF, +OIF:SP:59:4471741,1,"Porte d'Ivry-Massena",48.821432,2.368292,0,0,OIF:SA:59287,Europe/Paris,,OIF, +OIF:SP:59:4471742,1,"Porte de Choisy",48.820049,2.363977,0,0,OIF:SA:59663,Europe/Paris,,OIF, +OIF:SP:59:4471747,1,"Centre Bus de Vitry",48.803274,2.37752,0,0,OIF:SA:59:4471747,Europe/Paris,,OIF, +OIF:SP:59:4471748,1,"Malassis",48.801494,2.378947,0,0,OIF:SA:59:4471748,Europe/Paris,,OIF, +OIF:SP:59:4471749,1,"La Civette",48.798653,2.38134,0,0,OIF:SA:59:4471749,Europe/Paris,,OIF, +OIF:SP:59:4471750,1,"Charles Infroit",48.79467,2.384356,0,0,OIF:SA:59:4471750,Europe/Paris,,OIF, +OIF:SP:59:4471751,1,"Musée Mac Val",48.792746,2.386055,0,0,OIF:SA:59:4471751,Europe/Paris,,OIF, +OIF:SP:59:4471753,1,"Camille Groult",48.785634,2.39172,0,0,OIF:SA:59:4471753,Europe/Paris,,OIF, +OIF:SP:59:4471754,1,"Constant Coquelin",48.782892,2.393635,0,0,OIF:SA:59:4471754,Europe/Paris,,OIF, +OIF:SP:59:4471755,1,"Les Plâtrières",48.77783,2.39658,0,0,OIF:SA:59:4471755,Europe/Paris,,OIF, +OIF:SP:59:4471769,1,"Parc Méliès",48.744864,2.39218,0,0,OIF:SA:59:4471769,Europe/Paris,,OIF, +OIF:SP:59:4471770,1,"Cimetière Paysager",48.745333,2.387709,0,0,OIF:SA:59:4471770,Europe/Paris,,OIF, +OIF:SP:59:4471780,1,"Belle Epine Sud",48.755649,2.368525,0,0,OIF:SA:59823,Europe/Paris,,OIF, +OIF:SP:59:4471782,1,"Paray-Vieille-Poste Pont de Rungis",48.744002,2.364209,0,0,OIF:SA:59:4471782,Europe/Paris,,OIF, +OIF:SP:59:4471783,1,"Hangar N0 6",48.743525,2.364753,0,0,OIF:SA:59:4471783,Europe/Paris,,OIF, +OIF:SP:59:4471784,1,"Caroline Aigle",48.736836,2.369682,0,0,OIF:SA:59:4471784,Europe/Paris,,OIF, +OIF:SP:59:4471786,1,"Aéroport d'Orly-Terminal Sud",48.728882,2.369174,0,0,OIF:SA:59675,Europe/Paris,,OIF, +OIF:SP:59:4471790,1,"Hangar N0 6",48.743597,2.364929,0,0,OIF:SA:59:4471783,Europe/Paris,,OIF, +OIF:SP:59:4471791,1,"Pont de Rungis-RER",48.746526,2.369525,0,0,OIF:SA:8754619,Europe/Paris,,OIF, +OIF:SP:59:4471792,1,"S.E.N.I.A.",48.751128,2.369256,0,0,OIF:SA:59:4471792,Europe/Paris,,OIF, +OIF:SP:59:4471795,1,"Auguste Perret",48.763783,2.369427,0,0,OIF:SA:59:4471795,Europe/Paris,,OIF, +OIF:SP:59:4471802,1,"Rue des Quinze Arpents",48.745668,2.382708,0,0,OIF:SA:59:4377758,Europe/Paris,,OIF, +OIF:SP:59:4471803,1,"Cimetière Paysager",48.745252,2.387546,0,0,OIF:SA:59:4471770,Europe/Paris,,OIF, +OIF:SP:59:4471804,1,"Parc Méliès",48.744747,2.392234,0,0,OIF:SA:59:4471769,Europe/Paris,,OIF, +OIF:SP:59:4471805,1,"Mairie d'Orly",48.744455,2.400646,0,0,OIF:SA:8754620,Europe/Paris,,OIF, +OIF:SP:59:4471818,1,"Les Plâtrières",48.778028,2.396785,0,0,OIF:SA:59:4471755,Europe/Paris,,OIF, +OIF:SP:59:4471819,1,"Constant Coquelin",48.782981,2.394206,0,0,OIF:SA:59:4471754,Europe/Paris,,OIF, +OIF:SP:59:4471820,1,"Camille Groult",48.786874,2.391381,0,0,OIF:SA:59:4471753,Europe/Paris,,OIF, +OIF:SP:59:4471822,1,"Musée Mac Val",48.793123,2.386327,0,0,OIF:SA:59:4471751,Europe/Paris,,OIF, +OIF:SP:59:4471823,1,"Charles Infroit",48.794957,2.384697,0,0,OIF:SA:59:4471750,Europe/Paris,,OIF, +OIF:SP:59:4471824,1,"La Civette",48.798131,2.382359,0,0,OIF:SA:59:4471749,Europe/Paris,,OIF, +OIF:SP:59:4471825,1,"Malassis",48.801035,2.379954,0,0,OIF:SA:59:4471825,Europe/Paris,,OIF, +OIF:SP:59:4471826,1,"Centre Bus de Vitry",48.804074,2.377494,0,0,OIF:SA:59:4471826,Europe/Paris,,OIF, +OIF:SP:59:4471831,1,"Porte de Choisy",48.819986,2.366141,0,0,OIF:SA:59663,Europe/Paris,,OIF, +OIF:SP:59:4471832,1,"Porte d'Ivry-Massena",48.821647,2.370171,0,0,OIF:SA:59287,Europe/Paris,,OIF, +OIF:SP:59:4471833,1,"Château des Rentiers",48.822384,2.372254,0,0,OIF:SA:59287,Europe/Paris,,OIF, +OIF:SP:59:4471839,1,"Place d'Italie",48.831654,2.3564,0,0,OIF:SA:59275,Europe/Paris,,OIF, +OIF:SP:59:4472645,1,"Gare de la Garenne-Colombes",48.909641,2.23604,0,0,OIF:SA:59714,Europe/Paris,,OIF, +OIF:SP:59:4472646,1,"La Garenne-Colombes - Charlebourg",48.906103,2.238787,0,0,OIF:SA:59712,Europe/Paris,,OIF, +OIF:SP:59:4472647,1,"La Garenne-Colombes - Charlebourg",48.906354,2.239059,0,0,OIF:SA:59712,Europe/Paris,,OIF, +OIF:SP:59:4472648,1,"Nordmann",48.904746,2.238967,0,0,OIF:SA:59:4023382,Europe/Paris,,OIF, +OIF:SP:59:4472649,1,"Nordmann",48.905312,2.239198,0,0,OIF:SA:59:4023382,Europe/Paris,,OIF, +OIF:SP:59:4472658,1,"La Défense - Métro-RER-Tramway",48.891805,2.239809,0,0,OIF:SA:8738221,Europe/Paris,,OIF, +OIF:SP:59:4472660,1,"Boieldieu",48.888022,2.240416,0,0,OIF:SA:59:4024112,Europe/Paris,,OIF, +OIF:SP:59:4472661,1,"Gallieni",48.88718,2.244111,0,0,OIF:SA:59:4472661,Europe/Paris,,OIF, +OIF:SP:59:4472662,1,"Bellini",48.886661,2.247818,0,0,OIF:SA:59593,Europe/Paris,,OIF, +OIF:SP:59:4472663,1,"Pont de Neuilly - Rive Gauche",48.887114,2.25192,0,0,OIF:SA:59:4024343,Europe/Paris,,OIF, +OIF:SP:59:4472697,1,"Montrosier",48.879167,2.279144,0,0,OIF:SA:59:4472697,Europe/Paris,,OIF, +OIF:SP:59:4472698,1,"Pont de Neuilly - Rive Gauche",48.887115,2.25376,0,0,OIF:SA:59:3877769,Europe/Paris,,OIF, +OIF:SP:59:4472712,1,"Joffre - de Lattre de Tassigny",48.959331,2.300877,0,0,OIF:SA:59:4472712,Europe/Paris,,OIF, +OIF:SP:59:4472713,1,"Joffre - de Lattre de Tassigny",48.959555,2.300945,0,0,OIF:SA:59:4472712,Europe/Paris,,OIF, +OIF:SP:59:4472714,1,"Place Fitzelin",48.959431,2.304534,0,0,OIF:SA:59:4472714,Europe/Paris,,OIF, +OIF:SP:59:4472715,1,"Place Fitzelin",48.959664,2.30321,0,0,OIF:SA:59:4472714,Europe/Paris,,OIF, +OIF:SP:59:4472719,1,"Lacépède",48.955811,2.311864,0,0,OIF:SA:59912,Europe/Paris,,OIF, +OIF:SP:59:4472724,1,"Sablons",48.956317,2.331965,0,0,OIF:SA:59:4472724,Europe/Paris,,OIF, +OIF:SP:59:4472725,1,"Yser",48.953827,2.335404,0,0,OIF:SA:59:4472725,Europe/Paris,,OIF, +OIF:SP:59:4472726,1,"76 Route de Saint-Leu",48.951949,2.338215,0,0,OIF:SA:59:4472726,Europe/Paris,,OIF, +OIF:SP:59:4472728,1,"César",48.949442,2.341667,0,0,OIF:SA:59:4472728,Europe/Paris,,OIF, +OIF:SP:59:4472746,1,"Les Courtilles",48.929956,2.284352,0,0,OIF:SA:59582,Europe/Paris,,OIF, +OIF:SP:59:4472749,1,"Les Agnettes - Métro",48.92318,2.286078,0,0,OIF:SA:59597,Europe/Paris,,OIF, +OIF:SP:59:4472750,1,"Les Agnettes - Métro",48.923333,2.286323,0,0,OIF:SA:59597,Europe/Paris,,OIF, +OIF:SP:59:4472758,1,"Mairie de Clichy",48.902534,2.304052,0,0,OIF:SA:59583,Europe/Paris,,OIF, +OIF:SP:59:4472759,1,"Mairie de Clichy",48.903164,2.306232,0,0,OIF:SA:59583,Europe/Paris,,OIF, +OIF:SP:59:4472760,1,"Jaurès - Barbusse",48.900755,2.30547,0,0,OIF:SA:59:4016094,Europe/Paris,,OIF, +OIF:SP:59:4472765,1,"Brochant - Cardinet",48.89116,2.317933,0,0,OIF:SA:59535,Europe/Paris,,OIF, +OIF:SP:59:4472767,1,"Pont Cardinet",48.887627,2.314432,0,0,OIF:SA:8738111,Europe/Paris,,OIF, +OIF:SP:59:4472776,1,"Parc Martin Luther King",48.888922,2.316122,0,0,OIF:SA:8738111,Europe/Paris,,OIF, +OIF:SP:59:4472779,1,"Barbusse - Martre",48.901151,2.307965,0,0,OIF:SA:59:4472779,Europe/Paris,,OIF, +OIF:SP:59:4472780,1,"Landy - Martre",48.904503,2.304991,0,0,OIF:SA:59583,Europe/Paris,,OIF, +OIF:SP:59:4472790,1,"Sablons",48.956595,2.331952,0,0,OIF:SA:59:4472790,Europe/Paris,,OIF, +OIF:SP:59:4472898,1,"Rue des Fleurs",48.716781,2.295951,0,0,OIF:SA:49:63650,Europe/Paris,,OIF, +OIF:SP:59:4472899,1,"Rue des Fleurs",48.717086,2.294918,0,0,OIF:SA:49:63650,Europe/Paris,,OIF, +OIF:SP:59:4472900,1,"La Bonde",48.723348,2.286979,0,0,OIF:SA:49:64390,Europe/Paris,,OIF, +OIF:SP:59:4472901,1,"La Bonde",48.72262,2.28732,0,0,OIF:SA:49:64390,Europe/Paris,,OIF, +OIF:SP:59:4472902,1,"Avenue de l'Europe - Centre Commercial",48.727038,2.277438,0,0,OIF:SA:29:423,Europe/Paris,,OIF, +OIF:SP:59:4472903,1,"Avenue de l'Europe - Centre Commercial",48.726894,2.276909,0,0,OIF:SA:29:423,Europe/Paris,,OIF, +OIF:SP:59:4472925,1,"Petit Massy",48.741528,2.302754,0,0,OIF:SA:59:4314851,Europe/Paris,,OIF, +OIF:SP:59:4472926,1,"Petit Massy",48.741294,2.302373,0,0,OIF:SA:59:4314851,Europe/Paris,,OIF, +OIF:SP:59:4472927,1,"Blanche de Castille",48.744396,2.303336,0,0,OIF:SA:59:4472927,Europe/Paris,,OIF, +OIF:SP:59:4472928,1,"Blanche de Castille",48.745079,2.303186,0,0,OIF:SA:59:4472927,Europe/Paris,,OIF, +OIF:SP:59:4472929,1,"Pont d'Antony",48.750256,2.304542,0,0,OIF:SA:59:4377724,Europe/Paris,,OIF, +OIF:SP:59:4472930,1,"Pont d'Antony",48.750436,2.30427,0,0,OIF:SA:59:4377724,Europe/Paris,,OIF, +OIF:SP:59:4472931,1,"Auguste Mounié - Division Leclerc",48.754256,2.305464,0,0,OIF:SA:59:4377723,Europe/Paris,,OIF, +OIF:SP:59:4472932,1,"Fernand Fenzy",48.758211,2.307066,0,0,OIF:SA:59:4472932,Europe/Paris,,OIF, +OIF:SP:59:4472933,1,"Fernand Fenzy",48.75813,2.306671,0,0,OIF:SA:59:4472932,Europe/Paris,,OIF, +OIF:SP:59:4472934,1,"Morteaux",48.760144,2.307839,0,0,OIF:SA:59:4472934,Europe/Paris,,OIF, +OIF:SP:59:4472935,1,"Morteaux",48.760369,2.307595,0,0,OIF:SA:59:4472934,Europe/Paris,,OIF, +OIF:SP:59:4472936,1,"Général de Gaulle - Croix de Berny",48.762634,2.30879,0,0,OIF:SA:59:4472936,Europe/Paris,,OIF, +OIF:SP:59:4472937,1,"Général de Gaulle - Croix de Berny",48.7624,2.308368,0,0,OIF:SA:59:4472936,Europe/Paris,,OIF, +OIF:SP:59:4472938,1,"Normandie",48.76818,2.311044,0,0,OIF:SA:8775873,Europe/Paris,,OIF, +OIF:SP:59:4472939,1,"Normandie",48.765978,2.309713,0,0,OIF:SA:8775873,Europe/Paris,,OIF, +OIF:SP:59:4472957,1,"Carrefour des Poulets",48.785647,2.332988,0,0,OIF:SA:59:4124820,Europe/Paris,,OIF, +OIF:SP:59:4472959,1,"Division Leclerc - Camille Desmoulins",48.790428,2.331451,0,0,OIF:SA:59:3730345,Europe/Paris,,OIF, +OIF:SP:59:4472961,1,"Mairie de Cachan",48.794572,2.334566,0,0,OIF:SA:59:4124823,Europe/Paris,,OIF, +OIF:SP:59:4472963,1,"Cousin de Méricourt",48.797097,2.333831,0,0,OIF:SA:59:4124824,Europe/Paris,,OIF, +OIF:SP:59:4472974,1,"Léon Gambetta",48.813536,2.326141,0,0,OIF:SA:59:4472974,Europe/Paris,,OIF, +OIF:SP:59:4472975,1,"Léon Gambetta",48.813464,2.325651,0,0,OIF:SA:59:4472974,Europe/Paris,,OIF, +OIF:SP:59:4472976,1,"Gabriel Péri",48.818065,2.325813,0,0,OIF:SA:41:6491,Europe/Paris,,OIF, +OIF:SP:59:4472977,1,"Gabriel Péri",48.818173,2.325323,0,0,OIF:SA:41:6491,Europe/Paris,,OIF, +OIF:SP:59:4472982,1,"Mouton - Duvernet",48.830577,2.329432,0,0,OIF:SA:59260,Europe/Paris,,OIF, +OIF:SP:59:4472993,1,"Gare Montparnasse",48.841801,2.319844,0,0,OIF:SA:8739100,Europe/Paris,,OIF, +OIF:SP:59:4472998,1,"Denfert-Rochereau",48.833902,2.331923,0,0,OIF:SA:8775863,Europe/Paris,,OIF, +OIF:SP:59:4472999,1,"Alésia - Maine",48.8293,2.327975,0,0,OIF:SA:59631,Europe/Paris,,OIF, +OIF:SP:59:4473004,1,"Bourg-la-Reine RER",48.779335,2.313364,0,0,OIF:SA:8775869,Europe/Paris,,OIF, +OIF:SP:59:4473005,1,"Les Cottages",48.774472,2.313108,0,0,OIF:SA:59:4473005,Europe/Paris,,OIF, +OIF:SP:59:4473008,1,"Mairie d'Issy - Métro",48.824772,2.273991,0,0,OIF:SA:59522,Europe/Paris,,OIF, +OIF:SP:59:4473029,1,"Gare Montparnasse.",48.841945,2.320443,0,0,OIF:SA:8739100,Europe/Paris,,OIF, +OIF:SP:59:4473064,1,"Boulevard National",48.883883,2.191433,0,0,OIF:SA:59:4473064,Europe/Paris,,OIF, +OIF:SP:59:4473065,1,"Gabriel Péri",48.88262,2.187866,0,0,OIF:SA:59:4473065,Europe/Paris,,OIF, +OIF:SP:59:4473066,1,"Gabriel Péri",48.882522,2.188357,0,0,OIF:SA:59:4473065,Europe/Paris,,OIF, +OIF:SP:59:4473069,1,"Hôpital Stell",48.876137,2.185351,0,0,OIF:SA:17:1597,Europe/Paris,,OIF, +OIF:SP:59:4473071,1,"Place Richelieu",48.872817,2.182445,0,0,OIF:SA:59:4025034,Europe/Paris,,OIF, +OIF:SP:59:4473096,1,"Les Moulins - Camping",48.864838,2.234043,0,0,OIF:SA:59:4024537,Europe/Paris,,OIF, +OIF:SP:59:4473106,1,"Hoche - Saint-Honoré",48.876273,2.302133,0,0,OIF:SA:59:4473106,Europe/Paris,,OIF, +OIF:SP:59:4473107,1,"Hoche - Saint-Honoré",48.877109,2.300689,0,0,OIF:SA:59:4473106,Europe/Paris,,OIF, +OIF:SP:59:4473133,1,"Place de la Republique-Orsay RER",48.696466,2.184747,0,0,OIF:SA:46:14568,Europe/Paris,,OIF, +OIF:SP:59:4473134,1,"Les Suisses - Lozère RER",48.69988,2.214611,0,0,OIF:SA:59:4473134,Europe/Paris,,OIF, +OIF:SP:59:4473135,1,"Les Suisses - Lozère RER",48.700051,2.214624,0,0,OIF:SA:59:4473134,Europe/Paris,,OIF, +OIF:SP:59:4473136,1,"Palaiseau-Villebon RER",48.706536,2.238593,0,0,OIF:SA:8775881,Europe/Paris,,OIF, +OIF:SP:59:4473137,1,"Palaiseau-Villebon RER",48.706662,2.238457,0,0,OIF:SA:8775881,Europe/Paris,,OIF, +OIF:SP:59:4473138,1,"Edouard Branly-Palaiseau RER",48.716342,2.248531,0,0,OIF:SA:8775880,Europe/Paris,,OIF, +OIF:SP:59:4473139,1,"Edouard Branly-Palaiseau RER",48.716476,2.248327,0,0,OIF:SA:8775880,Europe/Paris,,OIF, +OIF:SP:59:4473158,1,"Le Vésinet - le Pecq RER",48.896555,2.120531,0,0,OIF:SA:8775808,Europe/Paris,,OIF, +OIF:SP:59:4473159,1,"Le Vésinet - le Pecq RER",48.896628,2.121322,0,0,OIF:SA:8775808,Europe/Paris,,OIF, +OIF:SP:59:4473160,1,"Hôtel de Ville-le Vésinet Centre-RER",48.894231,2.132985,0,0,OIF:SA:59:4473160,Europe/Paris,,OIF, +OIF:SP:59:4473161,1,"Hôtel de Ville-le Vésinet Centre-RER",48.894189,2.134485,0,0,OIF:SA:59:4473160,Europe/Paris,,OIF, +OIF:SP:59:4473162,1,"Mairie - Chatou - Croissy RER",48.889193,2.157714,0,0,OIF:SA:59:4473162,Europe/Paris,,OIF, +OIF:SP:59:4473163,1,"Mairie - Chatou - Croissy RER",48.889508,2.15804,0,0,OIF:SA:59:4473162,Europe/Paris,,OIF, +OIF:SP:59:4473166,1,"Jules Quentin-Nanterre Ville-RER",48.894822,2.193174,0,0,OIF:SA:8775804,Europe/Paris,,OIF, +OIF:SP:59:4473167,1,"Jules Quentin-Nanterre Ville-RER",48.895145,2.19256,0,0,OIF:SA:8775804,Europe/Paris,,OIF, +OIF:SP:59:4473210,1,"Cécile Faguet",48.889784,2.419756,0,0,OIF:SA:59:4473210,Europe/Paris,,OIF, +OIF:SP:59:4473211,1,"Meudon sur Seine-Tramway",48.818898,2.238884,0,0,OIF:SA:59021,Europe/Paris,,OIF, +OIF:SP:59:4473350,1,"Hôpital Européen Georges Pompidou",48.839772,2.272476,0,0,OIF:SA:8739332,Europe/Paris,,OIF, +OIF:SP:59:4473354,1,"Leblanc - Delbarre",48.837994,2.275419,0,0,OIF:SA:59:4473354,Europe/Paris,,OIF, +OIF:SP:59:4473356,1,"Balard",48.835739,2.278267,0,0,OIF:SA:59477,Europe/Paris,,OIF, +OIF:SP:59:4473358,1,"Colonel Pierre Avia",48.829815,2.275469,0,0,OIF:SA:59:4473358,Europe/Paris,,OIF, +OIF:SP:59:4473360,1,"Victor Hugo",48.827388,2.273689,0,0,OIF:SA:59:3442569,Europe/Paris,,OIF, +OIF:SP:59:4473362,1,"Mairie d'Issy - Métro",48.825581,2.273364,0,0,OIF:SA:59522,Europe/Paris,,OIF, +OIF:SP:59:4473370,1,"Gare de Clamart",48.814543,2.271786,0,0,OIF:SA:8739156,Europe/Paris,,OIF, +OIF:SP:59:4473372,1,"E. Duployé",48.814961,2.264776,0,0,OIF:SA:59:4473372,Europe/Paris,,OIF, +OIF:SP:59:4473373,1,"Verdi",48.817415,2.26514,0,0,OIF:SA:59:4473373,Europe/Paris,,OIF, +OIF:SP:59:4473374,1,"Verdi",48.817262,2.264977,0,0,OIF:SA:59:4473373,Europe/Paris,,OIF, +OIF:SP:59:4473379,1,"Hôpital Percy",48.814651,2.257564,0,0,OIF:SA:59:4473379,Europe/Paris,,OIF, +OIF:SP:59:4473380,1,"Hôpital Percy",48.814741,2.257768,0,0,OIF:SA:59:4473379,Europe/Paris,,OIF, +OIF:SP:59:4473383,1,"Rivoli",48.809786,2.253013,0,0,OIF:SA:59:4009120,Europe/Paris,,OIF, +OIF:SP:59:4473384,1,"Rue des Peupliers",48.807824,2.24975,0,0,OIF:SA:59:4473384,Europe/Paris,,OIF, +OIF:SP:59:4473385,1,"Orphelinat",48.808335,2.248103,0,0,OIF:SA:59:4473385,Europe/Paris,,OIF, +OIF:SP:59:4473386,1,"Orphelinat",48.80838,2.247912,0,0,OIF:SA:59:4473385,Europe/Paris,,OIF, +OIF:SP:59:4473388,1,"Paul Bert",48.810078,2.24663,0,0,OIF:SA:59:4009166,Europe/Paris,,OIF, +OIF:SP:59:4473389,1,"Val Fleury RER",48.808015,2.241544,0,0,OIF:SA:8739308,Europe/Paris,,OIF, +OIF:SP:59:4473390,1,"Val Fleury RER",48.807835,2.240606,0,0,OIF:SA:8739308,Europe/Paris,,OIF, +OIF:SP:59:4473391,1,"Victor Hugo",48.806036,2.238282,0,0,OIF:SA:59:4473391,Europe/Paris,,OIF, +OIF:SP:59:4473392,1,"Victor Hugo",48.806359,2.238703,0,0,OIF:SA:59:4473391,Europe/Paris,,OIF, +OIF:SP:59:4473393,1,"Lycée Rabelais",48.802709,2.236819,0,0,OIF:SA:59:4009114,Europe/Paris,,OIF, +OIF:SP:59:4473394,1,"Victor Hugo.",48.806332,2.238037,0,0,OIF:SA:59:4473391,Europe/Paris,,OIF, +OIF:SP:59:4473395,1,"Église de Meudon",48.807068,2.236443,0,0,OIF:SA:59:4009128,Europe/Paris,,OIF, +OIF:SP:59:4473399,1,"Stalingrad",48.814346,2.234973,0,0,OIF:SA:59:4009151,Europe/Paris,,OIF, +OIF:SP:59:4473401,1,"Jeanne d'Arc",48.816411,2.232356,0,0,OIF:SA:59:4009150,Europe/Paris,,OIF, +OIF:SP:59:4473403,1,"Gare de Bellevue",48.818962,2.22967,0,0,OIF:SA:8739311,Europe/Paris,,OIF, +OIF:SP:59:4473404,1,"Gare de Bellevue",48.818781,2.229316,0,0,OIF:SA:8739311,Europe/Paris,,OIF, +OIF:SP:59:4473405,1,"11 Novembre",48.821772,2.226873,0,0,OIF:SA:59:4009108,Europe/Paris,,OIF, +OIF:SP:59:4473410,1,"Parc de Saint-Cloud",48.826097,2.21935,0,0,OIF:SA:59:4008948,Europe/Paris,,OIF, +OIF:SP:59:4473414,1,"Pont de Sevres",48.829351,2.229566,0,0,OIF:SA:59621,Europe/Paris,,OIF, +OIF:SP:59:4473416,1,"André Schock",48.808475,2.243272,0,0,OIF:SA:8739308,Europe/Paris,,OIF, +OIF:SP:59:4473418,1,"Rivoli",48.809687,2.253122,0,0,OIF:SA:59:4473418,Europe/Paris,,OIF, +OIF:SP:59:4473419,1,"Gare de Clamart",48.814544,2.272765,0,0,OIF:SA:8739156,Europe/Paris,,OIF, +OIF:SP:59:4473420,1,"Maison de Retraite",48.828377,2.274994,0,0,OIF:SA:59:4473420,Europe/Paris,,OIF, +OIF:SP:59:4473421,1,"Séverine",48.83067,2.278463,0,0,OIF:SA:59:4473421,Europe/Paris,,OIF, +OIF:SP:59:4473422,1,"Porte d'Issy",48.83184,2.280449,0,0,OIF:SA:59128,Europe/Paris,,OIF, +OIF:SP:59:4473423,1,"Suzanne Lenglen",48.833312,2.277425,0,0,OIF:SA:59130,Europe/Paris,,OIF, +OIF:SP:59:4473547,1,"Issy-Val de Seine RER",48.829989,2.264864,0,0,OIF:SA:59134,Europe/Paris,,OIF, +OIF:SP:59:4473550,1,"Président Robert Schuman",48.828687,2.267589,0,0,OIF:SA:59:3442571,Europe/Paris,,OIF, +OIF:SP:59:4473551,1,"Marceau",48.827189,2.271497,0,0,OIF:SA:59:4473551,Europe/Paris,,OIF, +OIF:SP:59:4473552,1,"Marceau",48.827449,2.271484,0,0,OIF:SA:59:4473551,Europe/Paris,,OIF, +OIF:SP:59:4473555,1,"Musée",48.821896,2.273342,0,0,OIF:SA:59522,Europe/Paris,,OIF, +OIF:SP:59:4473556,1,"Rue du Fort",48.819326,2.274216,0,0,OIF:SA:59:4473556,Europe/Paris,,OIF, +OIF:SP:59:4473557,1,"Rue du Fort",48.819425,2.274502,0,0,OIF:SA:59:4473556,Europe/Paris,,OIF, +OIF:SP:59:4473558,1,"Général de Gaulle",48.816729,2.274614,0,0,OIF:SA:59:4473558,Europe/Paris,,OIF, +OIF:SP:59:4473559,1,"Général de Gaulle",48.816864,2.274831,0,0,OIF:SA:59:4473558,Europe/Paris,,OIF, +OIF:SP:59:4473560,1,"Clos Montholon",48.81434,2.279638,0,0,OIF:SA:59:4473560,Europe/Paris,,OIF, +OIF:SP:59:4473561,1,"Clos Montholon",48.814376,2.278903,0,0,OIF:SA:59:4473560,Europe/Paris,,OIF, +OIF:SP:59:4473562,1,"Louis Girard",48.814953,2.282986,0,0,OIF:SA:59:4473562,Europe/Paris,,OIF, +OIF:SP:59:4473563,1,"Louis Girard",48.815106,2.282917,0,0,OIF:SA:59:4473562,Europe/Paris,,OIF, +OIF:SP:59:4473564,1,"Rond-Point Henri Barbusse",48.813777,2.286933,0,0,OIF:SA:59:4473564,Europe/Paris,,OIF, +OIF:SP:59:4473565,1,"Rond-Point Henri Barbusse",48.81411,2.287804,0,0,OIF:SA:59:4473564,Europe/Paris,,OIF, +OIF:SP:59:4473567,1,"Barbusse-Vedrines",48.810856,2.285466,0,0,OIF:SA:59:3619145,Europe/Paris,,OIF, +OIF:SP:59:4473569,1,"Jean Mermoz",48.808836,2.291306,0,0,OIF:SA:59:4473569,Europe/Paris,,OIF, +OIF:SP:59:4473570,1,"Rond-Point Gagarine",48.811848,2.29442,0,0,OIF:SA:59:4473570,Europe/Paris,,OIF, +OIF:SP:59:4473571,1,"Rond-Point Gagarine",48.812028,2.294365,0,0,OIF:SA:59:4473570,Europe/Paris,,OIF, +OIF:SP:59:4473573,1,"Maison Blanche",48.811184,2.298721,0,0,OIF:SA:59614,Europe/Paris,,OIF, +OIF:SP:59:4473578,1,"Cimetière de Bagneux",48.810136,2.313255,0,0,OIF:SA:59:4473578,Europe/Paris,,OIF, +OIF:SP:59:4473579,1,"Avenue Henri Ginoux",48.809778,2.318127,0,0,OIF:SA:59:4473579,Europe/Paris,,OIF, +OIF:SP:59:4473592,1,"Malleret-Joinville",48.8024,2.339749,0,0,OIF:SA:59:4473592,Europe/Paris,,OIF, +OIF:SP:59:4473594,1,"Barnufles-la Piscine",48.807279,2.354405,0,0,OIF:SA:59:3754329,Europe/Paris,,OIF, +OIF:SP:59:4473598,1,"Le Kremlin-Bicêtre - Métro",48.810136,2.363033,0,0,OIF:SA:59578,Europe/Paris,,OIF, +OIF:SP:59:4473599,1,"Le Kremlin-Bicêtre - Métro",48.81001,2.362665,0,0,OIF:SA:59578,Europe/Paris,,OIF, +OIF:SP:59:4473600,1,"Cimetière Parisien - Place du Général de Gaulle",48.812704,2.370329,0,0,OIF:SA:59:4473600,Europe/Paris,,OIF, +OIF:SP:59:4473601,1,"Cimetière Parisien - Place du Général de Gaulle",48.812983,2.36973,0,0,OIF:SA:59:4473600,Europe/Paris,,OIF, +OIF:SP:59:4473602,1,"Carnot",48.808398,2.373673,0,0,OIF:SA:59:4473602,Europe/Paris,,OIF, +OIF:SP:59:4473604,1,"Verdun-Barbusse",48.808218,2.37585,0,0,OIF:SA:59:4473604,Europe/Paris,,OIF, +OIF:SP:59:4473605,1,"Verdun-Barbusse",48.808281,2.375673,0,0,OIF:SA:59:4473604,Europe/Paris,,OIF, +OIF:SP:59:4473607,1,"Jean le Galleu",48.810463,2.379689,0,0,OIF:SA:59:4473607,Europe/Paris,,OIF, +OIF:SP:59:4473608,1,"Mairie d'Ivry - Métro",48.811405,2.384453,0,0,OIF:SA:59322,Europe/Paris,,OIF, +OIF:SP:59:4473609,1,"Mairie d'Ivry - Métro",48.81128,2.38365,0,0,OIF:SA:59322,Europe/Paris,,OIF, +OIF:SP:59:4473610,1,"Hôtel de Ville d'Ivry",48.812689,2.387299,0,0,OIF:SA:59322,Europe/Paris,,OIF, +OIF:SP:59:4473614,1,"Molière",48.81514,2.393697,0,0,OIF:SA:8754530,Europe/Paris,,OIF, +OIF:SP:59:4473617,1,"Insurrection d'Août 1944",48.814599,2.396609,0,0,OIF:SA:59:4473617,Europe/Paris,,OIF, +OIF:SP:59:4473618,1,"Gambetta",48.814507,2.400828,0,0,OIF:SA:59:4473618,Europe/Paris,,OIF, +OIF:SP:59:4473621,1,"Prieur de la Cote d'Or",48.809707,2.325597,0,0,OIF:SA:59:4473621,Europe/Paris,,OIF, +OIF:SP:59:4473622,1,"Avenue et Fort de Montrouge",48.80985,2.322345,0,0,OIF:SA:59:4473622,Europe/Paris,,OIF, +OIF:SP:59:4473623,1,"Avenue Henri Ginoux",48.810065,2.318235,0,0,OIF:SA:59:4473623,Europe/Paris,,OIF, +OIF:SP:59:4473625,1,"Maurice Arnoux",48.810845,2.307321,0,0,OIF:SA:59:4473625,Europe/Paris,,OIF, +OIF:SP:59:4473639,1,"Jean Mermoz",48.808737,2.29068,0,0,OIF:SA:59:4473569,Europe/Paris,,OIF, +OIF:SP:59:4473641,1,"Maison Blanche",48.811023,2.298748,0,0,OIF:SA:59614,Europe/Paris,,OIF, +OIF:SP:59:4473643,1,"Châtillon-Montrouge - Métro",48.811024,2.302123,0,0,OIF:SA:59614,Europe/Paris,,OIF, +OIF:SP:59:4473644,1,"Maurice Arnoux",48.810513,2.308669,0,0,OIF:SA:59:4473644,Europe/Paris,,OIF, +OIF:SP:59:4473647,1,"Avenue et Fort de Montrouge",48.809572,2.322917,0,0,OIF:SA:59:4473622,Europe/Paris,,OIF, +OIF:SP:59:4473648,1,"Prieur de la Cote d'Or",48.809464,2.325638,0,0,OIF:SA:59:4473648,Europe/Paris,,OIF, +OIF:SP:59:4473654,1,"Malleret-Joinville",48.802086,2.3396,0,0,OIF:SA:59:4473592,Europe/Paris,,OIF, +OIF:SP:59:4473667,1,"Insurrection d'Août 1944",48.8145,2.398637,0,0,OIF:SA:59:4473617,Europe/Paris,,OIF, +OIF:SP:59:4480118,1,"Bretagne",48.768583,2.368777,0,0,OIF:SA:59:4480118,Europe/Paris,,OIF, +OIF:SP:59:4492570,1,"Mairie de Montreuil",48.861412,2.441314,0,0,OIF:SA:59507,Europe/Paris,,OIF, +OIF:SP:59:4532987,1,"Gare de Saint-Cloud",48.845795,2.216215,0,0,OIF:SA:8738235,Europe/Paris,,OIF, +OIF:SP:59:4532990,1,"Église de Saint-Cloud",48.847737,2.208543,0,0,OIF:SA:17:1574,Europe/Paris,,OIF, +OIF:SP:59:4532991,1,"Cimetière de Saint-Cloud",48.848065,2.204552,0,0,OIF:SA:17:1575,Europe/Paris,,OIF, +OIF:SP:59:4532992,1,"Foch - 19 Janvier",48.849158,2.201376,0,0,OIF:SA:59:4532992,Europe/Paris,,OIF, +OIF:SP:59:4532993,1,"Champ de Courses",48.851284,2.205375,0,0,OIF:SA:59:4532993,Europe/Paris,,OIF, +OIF:SP:59:4532994,1,"Laboratoire Débat",48.853238,2.201379,0,0,OIF:SA:59:4532994,Europe/Paris,,OIF, +OIF:SP:59:4532998,1,"Henri Regnault",48.858527,2.189597,0,0,OIF:SA:59:4024009,Europe/Paris,,OIF, +OIF:SP:59:4533000,1,"Les Suisses",48.854547,2.198284,0,0,OIF:SA:59:4533000,Europe/Paris,,OIF, +OIF:SP:59:4533001,1,"Laboratoire Débat",48.853086,2.201284,0,0,OIF:SA:59:4533001,Europe/Paris,,OIF, +OIF:SP:59:4533002,1,"Champ de Courses",48.851482,2.206287,0,0,OIF:SA:59:4532993,Europe/Paris,,OIF, +OIF:SP:59:4533003,1,"Bucourt",48.849178,2.211195,0,0,OIF:SA:59:4533003,Europe/Paris,,OIF, +OIF:SP:59:4533004,1,"Lycée de Saint-Cloud",48.849478,2.214327,0,0,OIF:SA:17:1543,Europe/Paris,,OIF, +OIF:SP:59:4533006,1,"Les Coteaux-Tramway",48.856952,2.220288,0,0,OIF:SA:59041,Europe/Paris,,OIF, +OIF:SP:59:4533007,1,"Avenue de Suresnes",48.859721,2.220691,0,0,OIF:SA:59:4533007,Europe/Paris,,OIF, +OIF:SP:59:4533008,1,"Avenue de Suresnes",48.859882,2.220323,0,0,OIF:SA:59:4533007,Europe/Paris,,OIF, +OIF:SP:59:4533010,1,"Val d'Or",48.859021,2.212751,0,0,OIF:SA:8738236,Europe/Paris,,OIF, +OIF:SP:59:4533018,1,"Montretout",48.846386,2.213871,0,0,OIF:SA:17:1545,Europe/Paris,,OIF, +OIF:SP:59:4533022,1,"Général Leclerc",48.842037,2.206896,0,0,OIF:SA:17:1345,Europe/Paris,,OIF, +OIF:SP:59:4533024,1,"Parc du Pré Saint-Jean",48.838601,2.204536,0,0,OIF:SA:59:4533024,Europe/Paris,,OIF, +OIF:SP:59:4533025,1,"Parc du Pré Saint-Jean",48.838404,2.204591,0,0,OIF:SA:59:4533024,Europe/Paris,,OIF, +OIF:SP:59:4533026,1,"Pradier",48.829655,2.193967,0,0,OIF:SA:2:1118,Europe/Paris,,OIF, +OIF:SP:59:4533027,1,"Corot",48.828492,2.190908,0,0,OIF:SA:59:4533027,Europe/Paris,,OIF, +OIF:SP:59:4533028,1,"Corot",48.828312,2.190745,0,0,OIF:SA:59:4533027,Europe/Paris,,OIF, +OIF:SP:59:4533029,1,"Église de Ville d'Avray",48.82653,2.188245,0,0,OIF:SA:17:1403,Europe/Paris,,OIF, +OIF:SP:59:4533030,1,"Église de Ville d'Avray",48.826449,2.188477,0,0,OIF:SA:17:1403,Europe/Paris,,OIF, +OIF:SP:59:4533031,1,"Jean Rostand",48.824721,2.186345,0,0,OIF:SA:17:1492,Europe/Paris,,OIF, +OIF:SP:59:4533032,1,"Jean Rostand",48.824721,2.186631,0,0,OIF:SA:17:1492,Europe/Paris,,OIF, +OIF:SP:59:4533033,1,"Les Étangs",48.821848,2.18178,0,0,OIF:SA:17:1491,Europe/Paris,,OIF, +OIF:SP:59:4533034,1,"Les Étangs",48.821822,2.182392,0,0,OIF:SA:17:1491,Europe/Paris,,OIF, +OIF:SP:59:4533035,1,"Les Sapins Bleus",48.821246,2.175548,0,0,OIF:SA:17:1490,Europe/Paris,,OIF, +OIF:SP:59:4533036,1,"Les Sapins Bleus",48.82103,2.17499,0,0,OIF:SA:17:1490,Europe/Paris,,OIF, +OIF:SP:59:4533037,1,"Les Peupliers",48.819466,2.168721,0,0,OIF:SA:17:1489,Europe/Paris,,OIF, +OIF:SP:59:4533038,1,"Les Peupliers",48.819557,2.169646,0,0,OIF:SA:17:1489,Europe/Paris,,OIF, +OIF:SP:59:4533039,1,"Fausses Reposes",48.818302,2.16539,0,0,OIF:SA:17:1488,Europe/Paris,,OIF, +OIF:SP:59:4533040,1,"Fausses Reposes",48.818538,2.166655,0,0,OIF:SA:17:1488,Europe/Paris,,OIF, +OIF:SP:59:4533041,1,"Porte Verte",48.817417,2.162834,0,0,OIF:SA:17:1487,Europe/Paris,,OIF, +OIF:SP:59:4533042,1,"Porte Verte",48.817454,2.163447,0,0,OIF:SA:17:1487,Europe/Paris,,OIF, +OIF:SP:59:4533043,1,"Porte des Hauts-de-Seine",48.814506,2.157047,0,0,OIF:SA:59:4533043,Europe/Paris,,OIF, +OIF:SP:59:4533044,1,"Porte des Hauts-de-Seine",48.814741,2.157876,0,0,OIF:SA:59:4533043,Europe/Paris,,OIF, +OIF:SP:59:4533045,1,"Gauthier de Clagny",48.81292,2.154153,0,0,OIF:SA:2:177,Europe/Paris,,OIF, +OIF:SP:59:4533046,1,"Gauthier de Clagny",48.813218,2.155091,0,0,OIF:SA:2:177,Europe/Paris,,OIF, +OIF:SP:59:4533047,1,"Université",48.811036,2.150799,0,0,OIF:SA:2:1112,Europe/Paris,,OIF, +OIF:SP:59:4533048,1,"Université",48.810955,2.151044,0,0,OIF:SA:2:1112,Europe/Paris,,OIF, +OIF:SP:59:4533049,1,"Gare de Versailles - Rive Droite",48.809804,2.134066,0,0,OIF:SA:8738286,Europe/Paris,,OIF, +OIF:SP:59:4533051,1,"Pradier",48.829431,2.194022,0,0,OIF:SA:59:4533051,Europe/Paris,,OIF, +OIF:SP:59:4533052,1,"Les Coteaux-Senard (T2)",48.856872,2.220983,0,0,OIF:SA:59041,Europe/Paris,,OIF, +OIF:SP:59:4614203,1,"Nogent-sur-Marne RER",48.835219,2.471567,0,0,OIF:SA:8775813,Europe/Paris,,OIF, +OIF:SP:59:4614207,1,"Rue de Beauté",48.836728,2.479849,0,0,OIF:SA:59:4028846,Europe/Paris,,OIF, +OIF:SP:59:4614209,1,"Sous-Préfecture - Jules Ferry",48.837534,2.482534,0,0,OIF:SA:59:3708133,Europe/Paris,,OIF, +OIF:SP:59:4614211,1,"Marche de Nogent-sur-Marne",48.838249,2.485749,0,0,OIF:SA:59:3708134,Europe/Paris,,OIF, +OIF:SP:59:4614213,1,"Mairie de Nogent-sur-Marne",48.838304,2.491399,0,0,OIF:SA:59:3708135,Europe/Paris,,OIF, +OIF:SP:59:4614217,1,"Les Parclairs",48.835292,2.499382,0,0,OIF:SA:59:3708137,Europe/Paris,,OIF, +OIF:SP:59:4614219,1,"Alma",48.835016,2.503847,0,0,OIF:SA:59:3708138,Europe/Paris,,OIF, +OIF:SP:59:4614221,1,"Guy Moquet",48.834639,2.509959,0,0,OIF:SA:59:3686076,Europe/Paris,,OIF, +OIF:SP:59:4614223,1,"Mail Meyer",48.834446,2.51298,0,0,OIF:SA:59:3708140,Europe/Paris,,OIF, +OIF:SP:59:4614226,1,"Mairie de Bry-sur-Marne",48.834247,2.519419,0,0,OIF:SA:59:4614226,Europe/Paris,,OIF, +OIF:SP:59:4614227,1,"Mairie de Bry-sur-Marne",48.834777,2.519639,0,0,OIF:SA:59:4614226,Europe/Paris,,OIF, +OIF:SP:59:4614229,1,"Château",48.839716,2.522475,0,0,OIF:SA:59:4614229,Europe/Paris,,OIF, +OIF:SP:59:4614230,1,"Château",48.839995,2.522081,0,0,OIF:SA:59:4614229,Europe/Paris,,OIF, +OIF:SP:59:4614231,1,"Place Carnot",48.842187,2.52296,0,0,OIF:SA:59:4614231,Europe/Paris,,OIF, +OIF:SP:59:4614232,1,"Place Carnot",48.842932,2.523167,0,0,OIF:SA:59:4614231,Europe/Paris,,OIF, +OIF:SP:59:4614233,1,"Bry-sur-Marne RER",48.84415,2.525949,0,0,OIF:SA:8775832,Europe/Paris,,OIF, +OIF:SP:59:4614234,1,"Bry-sur-Marne RER",48.844087,2.526222,0,0,OIF:SA:8775832,Europe/Paris,,OIF, +OIF:SP:59:4614235,1,"Cimetière - Funérarium de Bry",48.840807,2.525896,0,0,OIF:SA:59:4614235,Europe/Paris,,OIF, +OIF:SP:59:4614236,1,"Cimetière - Funérarium de Bry",48.840933,2.525597,0,0,OIF:SA:59:4614235,Europe/Paris,,OIF, +OIF:SP:59:4614237,1,"Chemin des Moines",48.840326,2.528931,0,0,OIF:SA:59:4614237,Europe/Paris,,OIF, +OIF:SP:59:4614238,1,"Chemin des Moines",48.840785,2.528688,0,0,OIF:SA:59:4614237,Europe/Paris,,OIF, +OIF:SP:59:4614239,1,"Docteur Armand Brillard",48.837201,2.527449,0,0,OIF:SA:59:4614239,Europe/Paris,,OIF, +OIF:SP:59:4614240,1,"Docteur Armand Brillard",48.836796,2.527339,0,0,OIF:SA:59:4614239,Europe/Paris,,OIF, +OIF:SP:59:4614241,1,"Hôpital Saint-Camille",48.83437,2.526867,0,0,OIF:SA:59:4028887,Europe/Paris,,OIF, +OIF:SP:59:4614242,1,"Hôpital Saint-Camille",48.832563,2.5275,0,0,OIF:SA:59:4028887,Europe/Paris,,OIF, +OIF:SP:59:4614243,1,"Europe",48.834536,2.530067,0,0,OIF:SA:59:3616875,Europe/Paris,,OIF, +OIF:SP:59:4614244,1,"Europe",48.834437,2.530243,0,0,OIF:SA:59:3616875,Europe/Paris,,OIF, +OIF:SP:59:4614245,1,"Molière",48.83624,2.53251,0,0,OIF:SA:59:4614245,Europe/Paris,,OIF, +OIF:SP:59:4614246,1,"Molière",48.83615,2.532183,0,0,OIF:SA:59:4614245,Europe/Paris,,OIF, +OIF:SP:59:4614247,1,"La Fontaine",48.837988,2.534968,0,0,OIF:SA:59:4614247,Europe/Paris,,OIF, +OIF:SP:59:4614248,1,"La Fontaine",48.838141,2.534995,0,0,OIF:SA:59:4614247,Europe/Paris,,OIF, +OIF:SP:59:4614249,1,"Hôpital Prive de Marne la Vallée",48.838772,2.539082,0,0,OIF:SA:59:4614249,Europe/Paris,,OIF, +OIF:SP:59:4614250,1,"Hôpital Prive de Marne la Vallée",48.839087,2.539056,0,0,OIF:SA:59:4614249,Europe/Paris,,OIF, +OIF:SP:59:4614251,1,"Le Théâtre",48.842073,2.543208,0,0,OIF:SA:59:4614251,Europe/Paris,,OIF, +OIF:SP:59:4614252,1,"Le Théâtre",48.841939,2.542594,0,0,OIF:SA:59:4614251,Europe/Paris,,OIF, +OIF:SP:59:4614255,1,"Georges Méliès",48.832782,2.53104,0,0,OIF:SA:59:4028889,Europe/Paris,,OIF, +OIF:SP:59:4614256,1,"2 Décembre 1870",48.833483,2.525393,0,0,OIF:SA:59:4028885,Europe/Paris,,OIF, +OIF:SP:59:4614261,1,"Noisy-le-Grand - Mont d'Est RER",48.840761,2.552856,0,0,OIF:SA:8775833,Europe/Paris,,OIF, +OIF:SP:59:4614268,1,"Friedberg",48.830529,2.539881,0,0,OIF:SA:8798693,Europe/Paris,,OIF, +OIF:SP:59:4614269,1,"Friedberg",48.830223,2.539948,0,0,OIF:SA:8798693,Europe/Paris,,OIF, +OIF:SP:59:4614272,1,"Villiers-sur-Marne - le Plessis-Trévise RER",48.823782,2.543693,0,0,OIF:SA:8711379,Europe/Paris,,OIF, +OIF:SP:59:4614273,1,"Villiers-sur-Marne - le Plessis-Trévise RER",48.823943,2.543884,0,0,OIF:SA:8711379,Europe/Paris,,OIF, +OIF:SP:59:4614275,1,"Georges Demesy",48.822917,2.550182,0,0,OIF:SA:8798490,Europe/Paris,,OIF, +OIF:SP:59:4614277,1,"La Dame Blanche",48.818614,2.558644,0,0,OIF:SA:59:4614277,Europe/Paris,,OIF, +OIF:SP:59:4614280,1,"Michel Bony",48.813684,2.565672,0,0,OIF:SA:59:4614280,Europe/Paris,,OIF, +OIF:SP:59:4614281,1,"Maurice Berteaux - Général Leclerc",48.810136,2.569249,0,0,OIF:SA:59:4614281,Europe/Paris,,OIF, +OIF:SP:59:4614282,1,"Maurice Berteaux - Général Leclerc",48.810253,2.569195,0,0,OIF:SA:59:4614281,Europe/Paris,,OIF, +OIF:SP:59:4614283,1,"Mairie du Plessis-Trévise",48.809625,2.573002,0,0,OIF:SA:59:4614283,Europe/Paris,,OIF, +OIF:SP:59:4614284,1,"Mairie du Plessis-Trévise",48.8094,2.573505,0,0,OIF:SA:59:4614283,Europe/Paris,,OIF, +OIF:SP:59:4614285,1,"Jean Kiffer",48.806319,2.576933,0,0,OIF:SA:59:4614285,Europe/Paris,,OIF, +OIF:SP:59:4614286,1,"Jean Kiffer",48.806526,2.576934,0,0,OIF:SA:59:4614285,Europe/Paris,,OIF, +OIF:SP:59:4614289,1,"Place de Verdun",48.805098,2.585242,0,0,OIF:SA:59:3718034,Europe/Paris,,OIF, +OIF:SP:59:4614290,1,"Place de Verdun",48.805133,2.585459,0,0,OIF:SA:59:3718034,Europe/Paris,,OIF, +OIF:SP:59:4614291,1,"Gonzalve",48.803913,2.588556,0,0,OIF:SA:59:4614291,Europe/Paris,,OIF, +OIF:SP:59:4614292,1,"Gonzalve",48.804185,2.587673,0,0,OIF:SA:59:4614291,Europe/Paris,,OIF, +OIF:SP:59:4614293,1,"Village Anglais",48.805602,2.597272,0,0,OIF:SA:59:4614293,Europe/Paris,,OIF, +OIF:SP:59:4614294,1,"Village Anglais",48.805736,2.597586,0,0,OIF:SA:59:4614293,Europe/Paris,,OIF, +OIF:SP:59:4614295,1,"Bois la Croix",48.804606,2.600479,0,0,OIF:SA:59:4614295,Europe/Paris,,OIF, +OIF:SP:59:4614296,1,"Bois la Croix",48.804804,2.600507,0,0,OIF:SA:59:4614295,Europe/Paris,,OIF, +OIF:SP:59:4614297,1,"Stade Lucien Morane",48.801927,2.605023,0,0,OIF:SA:48:5493,Europe/Paris,,OIF, +OIF:SP:59:4614298,1,"Stade Lucien Morane",48.802,2.604629,0,0,OIF:SA:48:5493,Europe/Paris,,OIF, +OIF:SP:59:4614299,1,"Centre Commercial 2000",48.800366,2.607546,0,0,OIF:SA:48:7307,Europe/Paris,,OIF, +OIF:SP:59:4614300,1,"Les Bleuets",48.797046,2.608984,0,0,OIF:SA:59:4614300,Europe/Paris,,OIF, +OIF:SP:59:4614301,1,"Les Bleuets",48.79783,2.608185,0,0,OIF:SA:59:4614300,Europe/Paris,,OIF, +OIF:SP:59:4614302,1,"Salle des Fetes Jacques Brel",48.795602,2.611833,0,0,OIF:SA:48:5487,Europe/Paris,,OIF, +OIF:SP:59:4614303,1,"Salle des Fetes Jacques Brel",48.795638,2.61167,0,0,OIF:SA:48:5487,Europe/Paris,,OIF, +OIF:SP:59:4614304,1,"L'Orme au Charron",48.797149,2.614957,0,0,OIF:SA:48:6083,Europe/Paris,,OIF, +OIF:SP:59:4614305,1,"L'Orme au Charron",48.797239,2.615107,0,0,OIF:SA:48:6083,Europe/Paris,,OIF, +OIF:SP:59:4614306,1,"Résidence des Tilleuls",48.798358,2.616882,0,0,OIF:SA:48:7087,Europe/Paris,,OIF, +OIF:SP:59:4614307,1,"Résidence des Tilleuls",48.798305,2.616623,0,0,OIF:SA:48:7087,Europe/Paris,,OIF, +OIF:SP:59:4614308,1,"Masséna",48.800223,2.618946,0,0,OIF:SA:48:5721,Europe/Paris,,OIF, +OIF:SP:59:4614309,1,"Masséna",48.800179,2.618688,0,0,OIF:SA:48:5721,Europe/Paris,,OIF, +OIF:SP:59:4614310,1,"Collège Condorcet",48.802204,2.621066,0,0,OIF:SA:48:7091,Europe/Paris,,OIF, +OIF:SP:59:4614311,1,"Collège Condorcet",48.801685,2.620356,0,0,OIF:SA:48:7091,Europe/Paris,,OIF, +OIF:SP:59:4614312,1,"Place de Beilstein",48.80418,2.621567,0,0,OIF:SA:8711604,Europe/Paris,,OIF, +OIF:SP:59:4614313,1,"Place de Beilstein",48.804181,2.621322,0,0,OIF:SA:8711604,Europe/Paris,,OIF, +OIF:SP:59:4614314,1,"Emerainville-Pontault-Combault RER",48.806177,2.617414,0,0,OIF:SA:8711604,Europe/Paris,,OIF, +OIF:SP:59:4614316,1,"Marche de Pontault-Combault",48.80506,2.618347,0,0,OIF:SA:8711604,Europe/Paris,,OIF, +OIF:SP:59:4614317,1,"Hôtel de Ville de Pontault-Combault",48.799442,2.606888,0,0,OIF:SA:35:54410,Europe/Paris,,OIF, +OIF:SP:59:4614319,1,"Maurice Berteaux - Tramway",48.81436,2.565063,0,0,OIF:SA:59:4614319,Europe/Paris,,OIF, +OIF:SP:59:4614320,1,"Georges Courteline",48.815965,2.562348,0,0,OIF:SA:59:4614320,Europe/Paris,,OIF, +OIF:SP:59:4614321,1,"Les Mousquetaires",48.820343,2.556936,0,0,OIF:SA:59:4614321,Europe/Paris,,OIF, +OIF:SP:59:4614327,1,"Square des Allobroges",48.832769,2.54377,0,0,OIF:SA:59:4614327,Europe/Paris,,OIF, +OIF:SP:59:4614331,1,"Georges Demesy",48.822746,2.550168,0,0,OIF:SA:8798490,Europe/Paris,,OIF, +OIF:SP:59:4614332,1,"Les Mousquetaires",48.821118,2.555605,0,0,OIF:SA:59:4614332,Europe/Paris,,OIF, +OIF:SP:59:4614342,1,"Paul Valéry",48.787967,2.576209,0,0,OIF:SA:35:581,Europe/Paris,,OIF, +OIF:SP:59:4614343,1,"Hôtel de Ville de la Queue-en-Brie",48.789994,2.573906,0,0,OIF:SA:59:4614343,Europe/Paris,,OIF, +OIF:SP:59:4614344,1,"Saint-Jean - les Bordes",48.792205,2.573671,0,0,OIF:SA:59:4614344,Europe/Paris,,OIF, +OIF:SP:59:4614345,1,"Pierre de Coubertin",48.791911,2.57684,0,0,OIF:SA:35:63750,Europe/Paris,,OIF, +OIF:SP:59:4614346,1,"Plessis - Saint-Antoine",48.800964,2.575929,0,0,OIF:SA:59:4614346,Europe/Paris,,OIF, +OIF:SP:59:4614348,1,"Ardouin - Saint-Pierre",48.806978,2.57544,0,0,OIF:SA:59:4614348,Europe/Paris,,OIF, +OIF:SP:59:4614351,1,"Georges Foureau",48.812423,2.567163,0,0,OIF:SA:59:4614351,Europe/Paris,,OIF, +OIF:SP:59:4614354,1,"La Dame Blanche",48.819037,2.558509,0,0,OIF:SA:59:4614277,Europe/Paris,,OIF, +OIF:SP:59:4614360,1,"Courts Sillons",48.827103,2.546306,0,0,OIF:SA:59:4614360,Europe/Paris,,OIF, +OIF:SP:59:4614361,1,"Avenue de Gaumont",48.826711,2.54949,0,0,OIF:SA:8798496,Europe/Paris,,OIF, +OIF:SP:59:4614362,1,"Les Stades",48.829168,2.552536,0,0,OIF:SA:59:4614362,Europe/Paris,,OIF, +OIF:SP:59:4614363,1,"Collège les Prunais",48.830486,2.549315,0,0,OIF:SA:59:4614363,Europe/Paris,,OIF, +OIF:SP:59:4614364,1,"Square des Allobroges",48.832947,2.544887,0,0,OIF:SA:59:4614327,Europe/Paris,,OIF, +OIF:SP:59:4614370,1,"Moulin à Vent",48.834185,2.54658,0,0,OIF:SA:59:4614370,Europe/Paris,,OIF, +OIF:SP:59:4614371,1,"Square des Allobroges",48.832381,2.544612,0,0,OIF:SA:59:4614327,Europe/Paris,,OIF, +OIF:SP:59:4614372,1,"Collège les Prunais",48.830423,2.549097,0,0,OIF:SA:59:4614363,Europe/Paris,,OIF, +OIF:SP:59:4614373,1,"Les Stades",48.8286,2.553609,0,0,OIF:SA:59:4614362,Europe/Paris,,OIF, +OIF:SP:59:4614374,1,"Avenue de Gaumont",48.826891,2.549001,0,0,OIF:SA:8798496,Europe/Paris,,OIF, +OIF:SP:59:4614375,1,"Courts Sillons",48.827264,2.546416,0,0,OIF:SA:59:4614360,Europe/Paris,,OIF, +OIF:SP:59:4614376,1,"République",48.828232,2.542799,0,0,OIF:SA:59:4614376,Europe/Paris,,OIF, +OIF:SP:59:4614382,1,"Georges Courteline",48.815334,2.563012,0,0,OIF:SA:59:4614382,Europe/Paris,,OIF, +OIF:SP:59:4614386,1,"Ardouin - Saint-Pierre",48.807131,2.575413,0,0,OIF:SA:59:4614348,Europe/Paris,,OIF, +OIF:SP:59:4614388,1,"Plessis - Saint-Antoine",48.800677,2.575873,0,0,OIF:SA:59:4614346,Europe/Paris,,OIF, +OIF:SP:59:4614389,1,"Pierre de Coubertin",48.791731,2.57722,0,0,OIF:SA:35:63750,Europe/Paris,,OIF, +OIF:SP:59:4614390,1,"Saint-Jean - les Bordes",48.792393,2.57423,0,0,OIF:SA:59:4614344,Europe/Paris,,OIF, +OIF:SP:59:4614391,1,"Hôtel de Ville de la Queue-en-Brie",48.789349,2.572951,0,0,OIF:SA:59:4614343,Europe/Paris,,OIF, +OIF:SP:59:4614392,1,"Paul Valéry",48.787436,2.57652,0,0,OIF:SA:35:581,Europe/Paris,,OIF, +OIF:SP:59:4614393,1,"Hôpital de la Queue-en-Brie",48.785603,2.580605,0,0,OIF:SA:59:4614393,Europe/Paris,,OIF, +OIF:SP:59:4614394,1,"Saint-Maur-Creteil-RER",48.806017,2.472349,0,0,OIF:SA:8775815,Europe/Paris,,OIF, +OIF:SP:59:4614397,1,"Croix Souris",48.810018,2.471162,0,0,OIF:SA:59:4035944,Europe/Paris,,OIF, +OIF:SP:59:4614399,1,"Maurice Berteaux",48.811241,2.46994,0,0,OIF:SA:59:4614399,Europe/Paris,,OIF, +OIF:SP:59:4614400,1,"Maurice Berteaux",48.810594,2.469762,0,0,OIF:SA:59:4614399,Europe/Paris,,OIF, +OIF:SP:59:4614401,1,"Place d'Armes",48.812325,2.47344,0,0,OIF:SA:59:4614401,Europe/Paris,,OIF, +OIF:SP:59:4614402,1,"Place d'Armes",48.812406,2.473604,0,0,OIF:SA:59:4614401,Europe/Paris,,OIF, +OIF:SP:59:4614403,1,"Libération - Condé",48.810926,2.478581,0,0,OIF:SA:59:3687015,Europe/Paris,,OIF, +OIF:SP:59:4614404,1,"Libération - Condé",48.81125,2.477806,0,0,OIF:SA:59:3687015,Europe/Paris,,OIF, +OIF:SP:59:4614405,1,"Bourgogne",48.809879,2.482347,0,0,OIF:SA:59:4614405,Europe/Paris,,OIF, +OIF:SP:59:4614406,1,"Bourgogne",48.810167,2.481749,0,0,OIF:SA:59:4614405,Europe/Paris,,OIF, +OIF:SP:59:4614407,1,"Cimetière de Saint-Maur-des-Fossés",48.808948,2.485923,0,0,OIF:SA:59:4614407,Europe/Paris,,OIF, +OIF:SP:59:4614408,1,"Cimetière de Saint-Maur-des-Fossés",48.80912,2.485679,0,0,OIF:SA:59:4614407,Europe/Paris,,OIF, +OIF:SP:59:4614409,1,"Neptune",48.807791,2.491132,0,0,OIF:SA:59:4614409,Europe/Paris,,OIF, +OIF:SP:59:4614410,1,"Neptune",48.807826,2.492207,0,0,OIF:SA:59:4614409,Europe/Paris,,OIF, +OIF:SP:59:4614411,1,"Anatole France-Pierre Brossolette",48.806769,2.495986,0,0,OIF:SA:59:4614411,Europe/Paris,,OIF, +OIF:SP:59:4614412,1,"Anatole France-Pierre Brossolette",48.807578,2.496383,0,0,OIF:SA:59:4614411,Europe/Paris,,OIF, +OIF:SP:59:4614413,1,"Les Marronniers",48.805707,2.497017,0,0,OIF:SA:59:4614413,Europe/Paris,,OIF, +OIF:SP:59:4614414,1,"Les Marronniers",48.805789,2.496786,0,0,OIF:SA:59:4614413,Europe/Paris,,OIF, +OIF:SP:59:4614415,1,"Les Tilleuls",48.80625,2.500897,0,0,OIF:SA:59:4614415,Europe/Paris,,OIF, +OIF:SP:59:4614416,1,"Les Tilleuls",48.80634,2.500748,0,0,OIF:SA:59:4614415,Europe/Paris,,OIF, +OIF:SP:59:4614417,1,"Général Leclerc",48.806918,2.505662,0,0,OIF:SA:59:4614417,Europe/Paris,,OIF, +OIF:SP:59:4614418,1,"Général Leclerc",48.807457,2.505772,0,0,OIF:SA:59:4614417,Europe/Paris,,OIF, +OIF:SP:59:4614419,1,"Champigny - Saint-Maur RER",48.807289,2.509759,0,0,OIF:SA:8775817,Europe/Paris,,OIF, +OIF:SP:59:4614420,1,"Champigny - Saint-Maur RER",48.807325,2.509691,0,0,OIF:SA:8775817,Europe/Paris,,OIF, +OIF:SP:59:4614425,1,"Rue du Monument",48.812664,2.515737,0,0,OIF:SA:49:53450,Europe/Paris,,OIF, +OIF:SP:59:4614426,1,"Rue du Monument",48.812798,2.516636,0,0,OIF:SA:49:53450,Europe/Paris,,OIF, +OIF:SP:59:4614427,1,"Beau Site",48.812282,2.519097,0,0,OIF:SA:59:4614427,Europe/Paris,,OIF, +OIF:SP:59:4614428,1,"Beau Site",48.812471,2.518608,0,0,OIF:SA:59:4614427,Europe/Paris,,OIF, +OIF:SP:59:4614429,1,"Les Glaisières",48.812135,2.521097,0,0,OIF:SA:59:4614429,Europe/Paris,,OIF, +OIF:SP:59:4614430,1,"Les Glaisières",48.812386,2.521193,0,0,OIF:SA:59:4614429,Europe/Paris,,OIF, +OIF:SP:59:4614431,1,"Le Plateau",48.81245,2.526392,0,0,OIF:SA:59:4614431,Europe/Paris,,OIF, +OIF:SP:59:4614432,1,"Le Plateau",48.812764,2.526965,0,0,OIF:SA:59:4614431,Europe/Paris,,OIF, +OIF:SP:59:4614433,1,"Sonia Delaunay",48.814273,2.527378,0,0,OIF:SA:59:4614433,Europe/Paris,,OIF, +OIF:SP:59:4614434,1,"Sonia Delaunay",48.814363,2.527134,0,0,OIF:SA:59:4614433,Europe/Paris,,OIF, +OIF:SP:59:4614435,1,"Parc Départemental",48.817031,2.528164,0,0,OIF:SA:59:4614435,Europe/Paris,,OIF, +OIF:SP:59:4614436,1,"Parc Départemental",48.817084,2.528491,0,0,OIF:SA:59:4614435,Europe/Paris,,OIF, +OIF:SP:59:4614437,1,"Rue de Bernaü",48.816601,2.533103,0,0,OIF:SA:59:3619661,Europe/Paris,,OIF, +OIF:SP:59:4614438,1,"Rue de Bernaü",48.816735,2.53324,0,0,OIF:SA:59:3619661,Europe/Paris,,OIF, +OIF:SP:59:4614441,1,"Luats-Amitie",48.82185,2.532442,0,0,OIF:SA:59:4614441,Europe/Paris,,OIF, +OIF:SP:59:4614442,1,"Luats-Amitie",48.821635,2.532033,0,0,OIF:SA:59:4614441,Europe/Paris,,OIF, +OIF:SP:59:4614443,1,"Henri Dunant",48.823644,2.535171,0,0,OIF:SA:59:4614443,Europe/Paris,,OIF, +OIF:SP:59:4614444,1,"Henri Dunant",48.823842,2.534832,0,0,OIF:SA:59:4614443,Europe/Paris,,OIF, +OIF:SP:59:4614448,1,"Aristide Briand-General de Gaulle",48.827731,2.53629,0,0,OIF:SA:59:4614448,Europe/Paris,,OIF, +OIF:SP:59:4614449,1,"Aristide Briand-General de Gaulle",48.827659,2.53614,0,0,OIF:SA:59:4614448,Europe/Paris,,OIF, +OIF:SP:59:4614452,1,"Place de Flore",48.834208,2.538438,0,0,OIF:SA:59:4614452,Europe/Paris,,OIF, +OIF:SP:59:4614453,1,"Place de Flore",48.833339,2.536788,0,0,OIF:SA:59:4614452,Europe/Paris,,OIF, +OIF:SP:59:4614454,1,"Les Trois Musiciens",48.834653,2.540523,0,0,OIF:SA:59:4614454,Europe/Paris,,OIF, +OIF:SP:59:4614455,1,"Les Trois Musiciens",48.834724,2.541123,0,0,OIF:SA:59:4614454,Europe/Paris,,OIF, +OIF:SP:59:4614457,1,"Square des Allobroges",48.83339,2.543649,0,0,OIF:SA:59:4614327,Europe/Paris,,OIF, +OIF:SP:59:4614458,1,"Moulin à Vent",48.835207,2.547537,0,0,OIF:SA:59:4614458,Europe/Paris,,OIF, +OIF:SP:59:4614459,1,"Cimetière de Noisy-le-Grand",48.839741,2.550292,0,0,OIF:SA:59:4614459,Europe/Paris,,OIF, +OIF:SP:59:4614460,1,"Cimetière de Noisy-le-Grand",48.83881,2.548654,0,0,OIF:SA:59:4614459,Europe/Paris,,OIF, +OIF:SP:59:4614462,1,"Noisy-le-Grand - Mont d'Est RER",48.840762,2.552271,0,0,OIF:SA:8775833,Europe/Paris,,OIF, +OIF:SP:59:4614468,1,"Victor Hugo",48.826692,2.573842,0,0,OIF:SA:59:4614468,Europe/Paris,,OIF, +OIF:SP:59:4614469,1,"Victor Hugo",48.826205,2.574698,0,0,OIF:SA:59:4614468,Europe/Paris,,OIF, +OIF:SP:59:4614470,1,"Les Richardets - Centre",48.829312,2.56668,0,0,OIF:SA:59:4614470,Europe/Paris,,OIF, +OIF:SP:59:4614471,1,"Les Richardets - Centre",48.82915,2.566693,0,0,OIF:SA:59:4614470,Europe/Paris,,OIF, +OIF:SP:59:4614472,1,"Place du Combat",48.829776,2.563565,0,0,OIF:SA:59:4614472,Europe/Paris,,OIF, +OIF:SP:59:4614473,1,"Place du Combat",48.829515,2.564122,0,0,OIF:SA:59:4614472,Europe/Paris,,OIF, +OIF:SP:59:4614474,1,"Cité des Hêtres",48.830469,2.558749,0,0,OIF:SA:59:4614474,Europe/Paris,,OIF, +OIF:SP:59:4614475,1,"Cité des Hêtres",48.830505,2.558449,0,0,OIF:SA:59:4614474,Europe/Paris,,OIF, +OIF:SP:59:4614476,1,"Le Fort",48.83209,2.556686,0,0,OIF:SA:59:4614476,Europe/Paris,,OIF, +OIF:SP:59:4614477,1,"Le Fort",48.831973,2.556795,0,0,OIF:SA:59:4614476,Europe/Paris,,OIF, +OIF:SP:59:4614478,1,"Paul Belmondo",48.832971,2.551775,0,0,OIF:SA:59:4614478,Europe/Paris,,OIF, +OIF:SP:59:4614479,1,"Paul Belmondo",48.832818,2.55172,0,0,OIF:SA:59:4614478,Europe/Paris,,OIF, +OIF:SP:59:4614481,1,"Moulin à Vent",48.834883,2.548284,0,0,OIF:SA:59:4614458,Europe/Paris,,OIF, +OIF:SP:59:4614484,1,"Noisy-le-Grand - Mont d'Est RER",48.840931,2.553252,0,0,OIF:SA:8775833,Europe/Paris,,OIF, +OIF:SP:59:4614491,1,"Mairie de Noisy-le-Grand",48.848895,2.552904,0,0,OIF:SA:59:4614491,Europe/Paris,,OIF, +OIF:SP:59:4614492,1,"Carrefour de Malnoue",48.848579,2.558499,0,0,OIF:SA:59:4614492,Europe/Paris,,OIF, +OIF:SP:59:4614493,1,"Carrefour de Malnoue",48.848825,2.556635,0,0,OIF:SA:59:4614492,Europe/Paris,,OIF, +OIF:SP:59:4614494,1,"Rouget de Lisle",48.845506,2.563116,0,0,OIF:SA:59:4614494,Europe/Paris,,OIF, +OIF:SP:59:4614495,1,"Rouget de Lisle",48.845487,2.563334,0,0,OIF:SA:59:4614494,Europe/Paris,,OIF, +OIF:SP:59:4614496,1,"La Haute Maison",48.842342,2.567841,0,0,OIF:SA:59:4614496,Europe/Paris,,OIF, +OIF:SP:59:4614497,1,"La Haute Maison",48.842747,2.567461,0,0,OIF:SA:59:4614496,Europe/Paris,,OIF, +OIF:SP:59:4614498,1,"Les Hauts Châteaux",48.842243,2.572375,0,0,OIF:SA:59:4614498,Europe/Paris,,OIF, +OIF:SP:59:4614499,1,"Les Hauts Châteaux",48.84244,2.572662,0,0,OIF:SA:59:4614498,Europe/Paris,,OIF, +OIF:SP:59:4614500,1,"Noisy - Champs RER",48.84243,2.578026,0,0,OIF:SA:8775834,Europe/Paris,,OIF, +OIF:SP:59:4614502,1,"Noisy-le-Grand - Mont d'Est RER",48.840941,2.552843,0,0,OIF:SA:8775833,Europe/Paris,,OIF, +OIF:SP:59:4614512,1,"Pointe de Gournay",48.849223,2.564835,0,0,OIF:SA:59:4614512,Europe/Paris,,OIF, +OIF:SP:59:4614513,1,"Pointe de Gournay",48.849511,2.565027,0,0,OIF:SA:59:4614512,Europe/Paris,,OIF, +OIF:SP:59:4614514,1,"Charles Pranard",48.847613,2.57037,0,0,OIF:SA:59:4614514,Europe/Paris,,OIF, +OIF:SP:59:4614515,1,"Charles Pranard",48.847999,2.570304,0,0,OIF:SA:59:4614514,Europe/Paris,,OIF, +OIF:SP:59:4614516,1,"Les Cormiers",48.845614,2.571941,0,0,OIF:SA:59:4614516,Europe/Paris,,OIF, +OIF:SP:59:4614517,1,"Les Cormiers",48.845857,2.571928,0,0,OIF:SA:59:4614516,Europe/Paris,,OIF, +OIF:SP:59:4614518,1,"Les Hauts Bâtons",48.847339,2.576783,0,0,OIF:SA:59:4614518,Europe/Paris,,OIF, +OIF:SP:59:4614519,1,"Les Hauts Bâtons",48.847566,2.575953,0,0,OIF:SA:59:4614518,Europe/Paris,,OIF, +OIF:SP:59:4614520,1,"Les Hauts Roseaux",48.844742,2.576989,0,0,OIF:SA:59:4614520,Europe/Paris,,OIF, +OIF:SP:59:4614521,1,"Les Hauts Roseaux",48.84449,2.57677,0,0,OIF:SA:59:4614520,Europe/Paris,,OIF, +OIF:SP:59:4614522,1,"Les Hauts Châteaux",48.842916,2.572977,0,0,OIF:SA:59:4614498,Europe/Paris,,OIF, +OIF:SP:59:4614523,1,"Les Hauts Châteaux",48.843213,2.572842,0,0,OIF:SA:59:4614498,Europe/Paris,,OIF, +OIF:SP:59:4614525,1,"La Butte Verte",48.839321,2.572824,0,0,OIF:SA:59:4614525,Europe/Paris,,OIF, +OIF:SP:59:4614526,1,"La Butte Verte",48.839554,2.573438,0,0,OIF:SA:59:4614525,Europe/Paris,,OIF, +OIF:SP:59:4614527,1,"Le Closeau",48.837012,2.572651,0,0,OIF:SA:59:4614527,Europe/Paris,,OIF, +OIF:SP:59:4614528,1,"Le Closeau",48.83712,2.572733,0,0,OIF:SA:59:4614527,Europe/Paris,,OIF, +OIF:SP:59:4614529,1,"La Butte aux Cailles",48.837146,2.577239,0,0,OIF:SA:59:4614529,Europe/Paris,,OIF, +OIF:SP:59:4614530,1,"La Butte aux Cailles",48.837264,2.576981,0,0,OIF:SA:59:4614529,Europe/Paris,,OIF, +OIF:SP:59:4614531,1,"Rue du Ballon",48.83318,2.578678,0,0,OIF:SA:59:4614531,Europe/Paris,,OIF, +OIF:SP:59:4614532,1,"Rue du Ballon",48.833316,2.578147,0,0,OIF:SA:59:4614531,Europe/Paris,,OIF, +OIF:SP:59:4614533,1,"Rue des Aérostiers",48.831691,2.581462,0,0,OIF:SA:59:4614533,Europe/Paris,,OIF, +OIF:SP:59:4614534,1,"Rue des Aérostiers",48.831646,2.581625,0,0,OIF:SA:59:4614533,Europe/Paris,,OIF, +OIF:SP:59:4614541,1,"Les Richardets Centre",48.829508,2.567566,0,0,OIF:SA:59:4614470,Europe/Paris,,OIF, +OIF:SP:59:4614542,1,"Les Richardets Centre",48.829508,2.567416,0,0,OIF:SA:59:4614470,Europe/Paris,,OIF, +OIF:SP:59:4614543,1,"Gabriel Péri",48.83208,2.566693,0,0,OIF:SA:59:4614543,Europe/Paris,,OIF, +OIF:SP:59:4614544,1,"Gabriel Péri",48.831514,2.566731,0,0,OIF:SA:59:4614543,Europe/Paris,,OIF, +OIF:SP:59:4614545,1,"Rue de la Chapelle",48.833726,2.566155,0,0,OIF:SA:59:4614545,Europe/Paris,,OIF, +OIF:SP:59:4614546,1,"Rue de la Chapelle",48.834185,2.565831,0,0,OIF:SA:59:4614545,Europe/Paris,,OIF, +OIF:SP:59:4614547,1,"Etienne Dolet",48.838742,2.561249,0,0,OIF:SA:59:4614547,Europe/Paris,,OIF, +OIF:SP:59:4614548,1,"Etienne Dolet",48.838931,2.560596,0,0,OIF:SA:59:4614547,Europe/Paris,,OIF, +OIF:SP:59:4614549,1,"Victor Basch",48.840633,2.558888,0,0,OIF:SA:59:4614549,Europe/Paris,,OIF, +OIF:SP:59:4614550,1,"Victor Basch",48.84032,2.558369,0,0,OIF:SA:59:4614549,Europe/Paris,,OIF, +OIF:SP:59:4614551,1,"Noisy-le-Grand - Mont d'Est RER.",48.840933,2.552585,0,0,OIF:SA:59:4614551,Europe/Paris,,OIF, +OIF:SP:59:4614552,1,"Noisy-le-Grand - Mont d'Est RER.",48.840931,2.553701,0,0,OIF:SA:59:4614551,Europe/Paris,,OIF, +OIF:SP:59:4614568,1,"Épi d'Or",48.860653,2.530654,0,0,OIF:SA:59:4614568,Europe/Paris,,OIF, +OIF:SP:59:4614569,1,"Épi d'Or",48.860186,2.530421,0,0,OIF:SA:59:4614568,Europe/Paris,,OIF, +OIF:SP:59:4614570,1,"Cimetière de Neuilly-sur-Marne",48.863628,2.530284,0,0,OIF:SA:59:4614570,Europe/Paris,,OIF, +OIF:SP:59:4614571,1,"Cimetière de Neuilly-sur-Marne",48.862515,2.529967,0,0,OIF:SA:59:4614570,Europe/Paris,,OIF, +OIF:SP:59:4614578,1,"Cité des Bouleaux",48.872027,2.533367,0,0,OIF:SA:59:3682860,Europe/Paris,,OIF, +OIF:SP:59:4614579,1,"Cité des Bouleaux",48.872027,2.533177,0,0,OIF:SA:59:3682860,Europe/Paris,,OIF, +OIF:SP:59:4614581,1,"Trois Communes",48.873975,2.529219,0,0,OIF:SA:59:3715235,Europe/Paris,,OIF, +OIF:SP:59:4614584,1,"Avenue Lucie",48.87958,2.52507,0,0,OIF:SA:59:4614584,Europe/Paris,,OIF, +OIF:SP:59:4614585,1,"Gagny RER",48.88279,2.524578,0,0,OIF:SA:8711351,Europe/Paris,,OIF, +OIF:SP:59:4614587,1,"Pottier",48.884122,2.517006,0,0,OIF:SA:59:4614587,Europe/Paris,,OIF, +OIF:SP:59:4614588,1,"Pottier",48.883898,2.516664,0,0,OIF:SA:59:4614587,Europe/Paris,,OIF, +OIF:SP:59:4614589,1,"Gustave Rodet",48.886456,2.512816,0,0,OIF:SA:59:4614589,Europe/Paris,,OIF, +OIF:SP:59:4614591,1,"Avenue du Raincy",48.886786,2.508579,0,0,OIF:SA:59:3616902,Europe/Paris,,OIF, +OIF:SP:59:4614593,1,"François Coppée",48.887663,2.504943,0,0,OIF:SA:59:4614593,Europe/Paris,,OIF, +OIF:SP:59:4614595,1,"Masséna",48.88864,2.500558,0,0,OIF:SA:59:4614595,Europe/Paris,,OIF, +OIF:SP:59:4614596,1,"Les Marnaudes",48.889087,2.495203,0,0,OIF:SA:59:4614596,Europe/Paris,,OIF, +OIF:SP:59:4614598,1,"8 Mai 1945",48.886567,2.491284,0,0,OIF:SA:59:4614598,Europe/Paris,,OIF, +OIF:SP:59:4614606,1,"Varsovie",48.893672,2.479843,0,0,OIF:SA:8711340,Europe/Paris,,OIF, +OIF:SP:59:4614607,1,"Varsovie",48.893638,2.478766,0,0,OIF:SA:8711340,Europe/Paris,,OIF, +OIF:SP:59:4614608,1,"Gare de Bondy RER",48.895004,2.478401,0,0,OIF:SA:8711340,Europe/Paris,,OIF, +OIF:SP:59:4614609,1,"Gare de Bondy RER",48.895563,2.477258,0,0,OIF:SA:8711340,Europe/Paris,,OIF, +OIF:SP:59:4614612,1,"Église de Bondy",48.903072,2.480973,0,0,OIF:SA:59:3682351,Europe/Paris,,OIF, +OIF:SP:59:4614613,1,"Église de Bondy",48.903235,2.479378,0,0,OIF:SA:59:3682351,Europe/Paris,,OIF, +OIF:SP:59:4614626,1,"Bobigny - Pablo Picasso",48.907285,2.449041,0,0,OIF:SA:59342,Europe/Paris,,OIF, +OIF:SP:59:4614634,1,"Mairie de Noisy le Grand - Jean Vaquier",48.846878,2.550131,0,0,OIF:SA:59:4614634,Europe/Paris,,OIF, +OIF:SP:59:4614635,1,"Noisy-le-Grand - Mont d'Est RER",48.84076,2.553482,0,0,OIF:SA:8775833,Europe/Paris,,OIF, +OIF:SP:59:4614638,1,"Mairie de Noisy-le-Grand",48.849238,2.552047,0,0,OIF:SA:59:4614491,Europe/Paris,,OIF, +OIF:SP:59:4614639,1,"Église de Noisy-le-Grand",48.849436,2.546927,0,0,OIF:SA:59:4614639,Europe/Paris,,OIF, +OIF:SP:59:4614640,1,"Route de Neuilly",48.848253,2.539991,0,0,OIF:SA:59:4208523,Europe/Paris,,OIF, +OIF:SP:59:4614641,1,"Rene Navier",48.850597,2.535438,0,0,OIF:SA:59:4614641,Europe/Paris,,OIF, +OIF:SP:59:4614644,1,"Noisy-le-Grand - Mont d'Est RER",48.840763,2.552121,0,0,OIF:SA:8775833,Europe/Paris,,OIF, +OIF:SP:59:4614646,1,"République",48.845136,2.549307,0,0,OIF:SA:59:4614646,Europe/Paris,,OIF, +OIF:SP:59:4614648,1,"Espace Michel Simon",48.846182,2.55198,0,0,OIF:SA:59:4614648,Europe/Paris,,OIF, +OIF:SP:59:4614652,1,"Route de Neuilly",48.847138,2.540136,0,0,OIF:SA:59:4208523,Europe/Paris,,OIF, +OIF:SP:59:4614656,1,"Place de la Résistance",48.856554,2.531225,0,0,OIF:SA:59:3682819,Europe/Paris,,OIF, +OIF:SP:59:4614672,1,"Lycée Georges Clemenceau",48.876966,2.524448,0,0,OIF:SA:59:3715236,Europe/Paris,,OIF, +OIF:SP:59:4614674,1,"Gagny RER",48.882178,2.525025,0,0,OIF:SA:8711351,Europe/Paris,,OIF, +OIF:SP:59:4614688,1,"8 Mai 1945",48.885457,2.494592,0,0,OIF:SA:59:4614598,Europe/Paris,,OIF, +OIF:SP:59:4614689,1,"Denis Papin",48.887324,2.489556,0,0,OIF:SA:59:4614689,Europe/Paris,,OIF, +OIF:SP:59:4614690,1,"Denis Papin",48.887747,2.489584,0,0,OIF:SA:59:4614689,Europe/Paris,,OIF, +OIF:SP:59:4614693,1,"L'Etoile",48.892838,2.485756,0,0,OIF:SA:8798870,Europe/Paris,,OIF, +OIF:SP:59:4614720,1,"8 Mai 1945",48.885223,2.495014,0,0,OIF:SA:59:4614720,Europe/Paris,,OIF, +OIF:SP:59:4614771,1,"8 Mai 1945",48.886755,2.491639,0,0,OIF:SA:59:4614598,Europe/Paris,,OIF, +OIF:SP:59:4614772,1,"Les Marnaudes",48.889105,2.495762,0,0,OIF:SA:59:4614596,Europe/Paris,,OIF, +OIF:SP:59:4614773,1,"Meissonier",48.886465,2.50051,0,0,OIF:SA:59:3616900,Europe/Paris,,OIF, +OIF:SP:59:4614774,1,"François Coppée",48.887411,2.505188,0,0,OIF:SA:59:4614593,Europe/Paris,,OIF, +OIF:SP:59:4614775,1,"Avenue du Raincy",48.886516,2.50911,0,0,OIF:SA:59:3616902,Europe/Paris,,OIF, +OIF:SP:59:4614776,1,"Gustave Rodet",48.885595,2.512023,0,0,OIF:SA:59:4614589,Europe/Paris,,OIF, +OIF:SP:59:4614779,1,"Gagny RER",48.882394,2.52474,0,0,OIF:SA:8711351,Europe/Paris,,OIF, +OIF:SP:59:4651135,1,"Châtelet.",48.857638,2.348469,0,0,OIF:SA:59566,Europe/Paris,,OIF, +OIF:SP:59:4658156,1,"Porte de la Villette",48.897406,2.386713,0,0,OIF:SA:59288,Europe/Paris,,OIF, +OIF:SP:59:4658182,1,"Michelet - Parc des Expositions",48.943148,2.433675,0,0,OIF:SA:59:4658182,Europe/Paris,,OIF, +OIF:SP:59:4658183,1,"Diderot",48.944809,2.435124,0,0,OIF:SA:59:4658183,Europe/Paris,,OIF, +OIF:SP:59:4658186,1,"Chemin Notre-Dame",48.95308,2.442427,0,0,OIF:SA:59:4658186,Europe/Paris,,OIF, +OIF:SP:59:4658187,1,"Pont Yblon - Santos Dumont",48.954534,2.443712,0,0,OIF:SA:59:4658187,Europe/Paris,,OIF, +OIF:SP:59:4658188,1,"Pont Yblon - Santos Dumont",48.954436,2.443275,0,0,OIF:SA:59:4658187,Europe/Paris,,OIF, +OIF:SP:59:4658189,1,"Colonel Fabien",48.956106,2.445176,0,0,OIF:SA:59:4658189,Europe/Paris,,OIF, +OIF:SP:59:4658190,1,"Colonel Fabien",48.955684,2.444397,0,0,OIF:SA:59:4658189,Europe/Paris,,OIF, +OIF:SP:59:4658191,1,"Manouchian",48.955519,2.447399,0,0,OIF:SA:59:4658191,Europe/Paris,,OIF, +OIF:SP:59:4658192,1,"Manouchian",48.955744,2.447331,0,0,OIF:SA:59:4658191,Europe/Paris,,OIF, +OIF:SP:59:4658193,1,"ZA du Pont Yblon",48.954124,2.450098,0,0,OIF:SA:59:4658193,Europe/Paris,,OIF, +OIF:SP:59:4658194,1,"ZA du Pont Yblon",48.954295,2.449702,0,0,OIF:SA:59:4658193,Europe/Paris,,OIF, +OIF:SP:59:4658208,1,"Magenta",48.901296,2.389729,0,0,OIF:SA:59:4658208,Europe/Paris,,OIF, +OIF:SP:59:4658209,1,"Quatre Chemins - Métro",48.903865,2.392581,0,0,OIF:SA:59318,Europe/Paris,,OIF, +OIF:SP:59:4658210,1,"Condorcet",48.905967,2.394833,0,0,OIF:SA:59:4658210,Europe/Paris,,OIF, +OIF:SP:59:4658211,1,"Cimetière Parisien",48.909101,2.398245,0,0,OIF:SA:59:4658211,Europe/Paris,,OIF, +OIF:SP:59:4658215,1,"Fort d'Aubervilliers - Métro",48.914401,2.403487,0,0,OIF:SA:59316,Europe/Paris,,OIF, +OIF:SP:59:4658217,1,"Edouard Vaillant - Jean Jaurès",48.918442,2.408292,0,0,OIF:SA:59:4658217,Europe/Paris,,OIF, +OIF:SP:59:4658218,1,"La Courneuve-8 Mai 1945",48.920382,2.410477,0,0,OIF:SA:59320,Europe/Paris,,OIF, +OIF:SP:59:4658219,1,"La Courneuve-8 Mai 1945",48.921191,2.410873,0,0,OIF:SA:59320,Europe/Paris,,OIF, +OIF:SP:59:4658220,1,"Rue Rateau",48.924971,2.415393,0,0,OIF:SA:59:4658220,Europe/Paris,,OIF, +OIF:SP:59:4658221,1,"Rue Rateau",48.925223,2.415216,0,0,OIF:SA:59:4658220,Europe/Paris,,OIF, +OIF:SP:59:4658224,1,"Jean Jaurès - Division Leclerc",48.932856,2.423944,0,0,OIF:SA:44:99,Europe/Paris,,OIF, +OIF:SP:59:4658225,1,"Jean Jaurès - Division Leclerc",48.933063,2.423685,0,0,OIF:SA:44:99,Europe/Paris,,OIF, +OIF:SP:59:4658226,1,"Anizan Cavillon - Hôtel de Ville",48.934383,2.425583,0,0,OIF:SA:59:4658226,Europe/Paris,,OIF, +OIF:SP:59:4658227,1,"Anizan Cavillon - Hôtel de Ville",48.934473,2.425283,0,0,OIF:SA:59:4658226,Europe/Paris,,OIF, +OIF:SP:59:4658228,1,"Pierre Curie",48.936924,2.428029,0,0,OIF:SA:59:4658228,Europe/Paris,,OIF, +OIF:SP:59:4658229,1,"Pierre Curie",48.936466,2.427196,0,0,OIF:SA:59:4658228,Europe/Paris,,OIF, +OIF:SP:59:4658230,1,"Église du Bourget",48.938873,2.429833,0,0,OIF:SA:59:4658230,Europe/Paris,,OIF, +OIF:SP:59:4658231,1,"Église du Bourget",48.939466,2.429971,0,0,OIF:SA:59:4658230,Europe/Paris,,OIF, +OIF:SP:59:4658241,1,"Ferme Saint-Simon",48.962343,2.453623,0,0,OIF:SA:59:4658241,Europe/Paris,,OIF, +OIF:SP:59:4658242,1,"Ferme Saint-Simon",48.962694,2.453965,0,0,OIF:SA:59:4658241,Europe/Paris,,OIF, +OIF:SP:59:4658243,1,"Route des Parcs",48.964325,2.458036,0,0,OIF:SA:59:4658243,Europe/Paris,,OIF, +OIF:SP:59:4658244,1,"Route des Parcs",48.964343,2.457736,0,0,OIF:SA:59:4658243,Europe/Paris,,OIF, +OIF:SP:59:4658245,1,"21ème Siècle",48.965923,2.460046,0,0,OIF:SA:11:203,Europe/Paris,,OIF, +OIF:SP:59:4658246,1,"21ème Siècle",48.965923,2.459705,0,0,OIF:SA:11:203,Europe/Paris,,OIF, +OIF:SP:59:4658247,1,"ZAC des Tulipes Nord",48.967718,2.46233,0,0,OIF:SA:11:205,Europe/Paris,,OIF, +OIF:SP:59:4658248,1,"ZAC des Tulipes Nord",48.96744,2.461565,0,0,OIF:SA:11:205,Europe/Paris,,OIF, +OIF:SP:59:4658249,1,"Chemin Notre-Dame",48.953053,2.442031,0,0,OIF:SA:59:4658249,Europe/Paris,,OIF, +OIF:SP:59:4658250,1,"Lénine",48.95017,2.439473,0,0,OIF:SA:59:4658250,Europe/Paris,,OIF, +OIF:SP:59:4658251,1,"Musée de l'Air et de l'Espace",48.947171,2.43678,0,0,OIF:SA:59:4658251,Europe/Paris,,OIF, +OIF:SP:59:4658253,1,"Michelet - Parc des Expositions",48.943211,2.433156,0,0,OIF:SA:59:4658253,Europe/Paris,,OIF, +OIF:SP:59:4658257,1,"Condorcet",48.906137,2.394587,0,0,OIF:SA:59:4658257,Europe/Paris,,OIF, +OIF:SP:59:4658258,1,"Quatre Chemins - Métro",48.904152,2.392295,0,0,OIF:SA:59318,Europe/Paris,,OIF, +OIF:SP:59:4658259,1,"Magenta",48.902356,2.390398,0,0,OIF:SA:59:4658259,Europe/Paris,,OIF, +OIF:SP:59:4668116,1,"11 Novembre",48.881286,2.495629,0,0,OIF:SA:59:3446799,Europe/Paris,,OIF, +OIF:SP:59:4677616,1,"Porte de Champerret",48.885734,2.292847,0,0,OIF:SA:59436,Europe/Paris,,OIF, +OIF:SP:59:4677619,1,"Porte de Courcelles",48.88746,2.294303,0,0,OIF:SA:59436,Europe/Paris,,OIF, +OIF:SP:59:4677620,1,"Wilson - Courcelles",48.89038,2.292093,0,0,OIF:SA:59:4677620,Europe/Paris,,OIF, +OIF:SP:59:4677623,1,"Jules Guesde",48.897074,2.289675,0,0,OIF:SA:59:4677623,Europe/Paris,,OIF, +OIF:SP:59:4677624,1,"Jules Guesde",48.89667,2.289525,0,0,OIF:SA:59:4677623,Europe/Paris,,OIF, +OIF:SP:59:4677625,1,"Collange",48.898604,2.294212,0,0,OIF:SA:59:4016770,Europe/Paris,,OIF, +OIF:SP:59:4677626,1,"Collange",48.899186,2.288282,0,0,OIF:SA:59:4016770,Europe/Paris,,OIF, +OIF:SP:59:4677628,1,"Rue des Chasses",48.901155,2.291906,0,0,OIF:SA:59:4016126,Europe/Paris,,OIF, +OIF:SP:59:4677630,1,"Quai de Clichy",48.902997,2.289901,0,0,OIF:SA:59:4677630,Europe/Paris,,OIF, +OIF:SP:59:4677631,1,"Rue de la Station",48.90642,2.286299,0,0,OIF:SA:8738113,Europe/Paris,,OIF, +OIF:SP:59:4677632,1,"Rue de la Station",48.906779,2.285617,0,0,OIF:SA:8738113,Europe/Paris,,OIF, +OIF:SP:59:4677633,1,"Gallieni",48.910005,2.286241,0,0,OIF:SA:59:4015814,Europe/Paris,,OIF, +OIF:SP:59:4677634,1,"Gallieni",48.909745,2.286145,0,0,OIF:SA:59:4015814,Europe/Paris,,OIF, +OIF:SP:59:4677635,1,"Comète",48.912872,2.284383,0,0,OIF:SA:59:4677635,Europe/Paris,,OIF, +OIF:SP:59:4677636,1,"Comète",48.912153,2.284602,0,0,OIF:SA:59:4677635,Europe/Paris,,OIF, +OIF:SP:59:4677637,1,"Rue des Champs",48.915594,2.282812,0,0,OIF:SA:59:4677637,Europe/Paris,,OIF, +OIF:SP:59:4677638,1,"Rue des Champs",48.915405,2.282608,0,0,OIF:SA:59:4677637,Europe/Paris,,OIF, +OIF:SP:59:4677639,1,"Bourguignons",48.918424,2.281378,0,0,OIF:SA:59:4015696,Europe/Paris,,OIF, +OIF:SP:59:4677640,1,"Bourguignons",48.918747,2.280859,0,0,OIF:SA:59:4015696,Europe/Paris,,OIF, +OIF:SP:59:4677644,1,"Robert Lavergne",48.928224,2.272324,0,0,OIF:SA:59:4677644,Europe/Paris,,OIF, +OIF:SP:59:4677646,1,"Henri Robert",48.929662,2.272405,0,0,OIF:SA:59:4677646,Europe/Paris,,OIF, +OIF:SP:59:4677647,1,"Asnières-18 Juin 1940",48.931058,2.277818,0,0,OIF:SA:59:4677647,Europe/Paris,,OIF, +OIF:SP:59:4677653,1,"Jaurès",48.920894,2.27847,0,0,OIF:SA:59:4677653,Europe/Paris,,OIF, +OIF:SP:59:4677654,1,"Aristide Briand",48.893606,2.292186,0,0,OIF:SA:59:3765177,Europe/Paris,,OIF, +OIF:SP:59:4677655,1,"Eiffel",48.891279,2.294368,0,0,OIF:SA:59:4677655,Europe/Paris,,OIF, +OIF:SP:59:4677656,1,"Wilson - Courcelles",48.889203,2.292871,0,0,OIF:SA:59:4677656,Europe/Paris,,OIF, +OIF:SP:59:4677657,1,"Porte de Choisy",48.819402,2.363174,0,0,OIF:SA:59663,Europe/Paris,,OIF, +OIF:SP:59:4677674,1,"Rouget de Lisle",48.764802,2.404927,0,0,OIF:SA:4:52,Europe/Paris,,OIF, +OIF:SP:59:4677675,1,"Porte de Choisy",48.819546,2.36316,0,0,OIF:SA:59663,Europe/Paris,,OIF, +OIF:SP:59:4677676,1,"Porte de Choisy",48.819366,2.364126,0,0,OIF:SA:59663,Europe/Paris,,OIF, +OIF:SP:59:4677701,1,"Trois Communes",48.773667,2.399295,0,0,OIF:SA:59:4677701,Europe/Paris,,OIF, +OIF:SP:59:4677702,1,"Docteur Roux",48.770421,2.401413,0,0,OIF:SA:59:4677702,Europe/Paris,,OIF, +OIF:SP:59:4677703,1,"Verdun - Hoche",48.767166,2.403516,0,0,OIF:SA:59:4677703,Europe/Paris,,OIF, +OIF:SP:59:4677706,1,"Waldeck Rousseau",48.760917,2.407532,0,0,OIF:SA:59:4677706,Europe/Paris,,OIF, +OIF:SP:59:4677707,1,"Waldeck Rousseau",48.76134,2.407669,0,0,OIF:SA:59:4677706,Europe/Paris,,OIF, +OIF:SP:59:4677710,1,"Lamartine",48.755936,2.410774,0,0,OIF:SA:59:4677710,Europe/Paris,,OIF, +OIF:SP:59:4677712,1,"Robert Peary",48.75385,2.412144,0,0,OIF:SA:59:4677712,Europe/Paris,,OIF, +OIF:SP:59:4677730,1,"Thiais Pont de Rungis",48.746274,2.369905,0,0,OIF:SA:59:4677730,Europe/Paris,,OIF, +OIF:SP:59:4677739,1,"Orly Pont de Rungis",48.746022,2.370014,0,0,OIF:SA:8754619,Europe/Paris,,OIF, +OIF:SP:59:4677740,1,"Verdun - Hoche",48.767957,2.403327,0,0,OIF:SA:59:4677740,Europe/Paris,,OIF, +OIF:SP:59:4677741,1,"Docteur Roux",48.770862,2.40144,0,0,OIF:SA:4:53,Europe/Paris,,OIF, +OIF:SP:59:4677742,1,"Trois Communes",48.773928,2.399404,0,0,OIF:SA:59:4677742,Europe/Paris,,OIF, +OIF:SP:59:4677747,1,"Verdun - Châteaudun",48.816462,2.367364,0,0,OIF:SA:59:3781674,Europe/Paris,,OIF, +OIF:SP:59:4677748,1,"Verdun - Châteaudun",48.816867,2.367391,0,0,OIF:SA:59:3781674,Europe/Paris,,OIF, +OIF:SP:59:4677749,1,"Cimetière Parisien - Place du Général de Gaulle",48.812615,2.370383,0,0,OIF:SA:59:4473600,Europe/Paris,,OIF, +OIF:SP:59:4677750,1,"Cimetière Parisien - Place du Général de Gaulle",48.813316,2.370193,0,0,OIF:SA:59:4473600,Europe/Paris,,OIF, +OIF:SP:59:4677751,1,"Carnot",48.808587,2.373537,0,0,OIF:SA:59:4473602,Europe/Paris,,OIF, +OIF:SP:59:4677752,1,"Carnot",48.809594,2.37332,0,0,OIF:SA:59:4473602,Europe/Paris,,OIF, +OIF:SP:59:4677753,1,"La Briqueterie",48.807005,2.374788,0,0,OIF:SA:59:4677753,Europe/Paris,,OIF, +OIF:SP:59:4677754,1,"La Briqueterie",48.807328,2.375074,0,0,OIF:SA:59:4677753,Europe/Paris,,OIF, +OIF:SP:59:4677774,1,"Rouget de Lisle",48.764595,2.40509,0,0,OIF:SA:4:52,Europe/Paris,,OIF, +OIF:SP:59:4677778,1,"Parmentier",48.758391,2.40916,0,0,OIF:SA:59:4677778,Europe/Paris,,OIF, +OIF:SP:59:4677779,1,"Parmentier",48.758633,2.409446,0,0,OIF:SA:59:4677778,Europe/Paris,,OIF, +OIF:SP:59:4677781,1,"Lamartine",48.756178,2.41106,0,0,OIF:SA:59:4677710,Europe/Paris,,OIF, +OIF:SP:59:4677784,1,"Jean Mermoz",48.750334,2.413838,0,0,OIF:SA:59:4677784,Europe/Paris,,OIF, +OIF:SP:59:4677785,1,"Jean Mermoz",48.751027,2.413595,0,0,OIF:SA:59:4677784,Europe/Paris,,OIF, +OIF:SP:59:4677786,1,"Les Saules RER",48.747474,2.416675,0,0,OIF:SA:8754622,Europe/Paris,,OIF, +OIF:SP:59:4677787,1,"Les Saules RER",48.74751,2.416851,0,0,OIF:SA:8754622,Europe/Paris,,OIF, +OIF:SP:59:4677788,1,"Marcel Cachin - Voie des Saules",48.745608,2.410746,0,0,OIF:SA:59:4677788,Europe/Paris,,OIF, +OIF:SP:59:4677789,1,"Marcel Cachin - Voie des Saules",48.745599,2.411127,0,0,OIF:SA:59:4677788,Europe/Paris,,OIF, +OIF:SP:59:4677790,1,"Fer à Cheval",48.744748,2.407279,0,0,OIF:SA:8749573,Europe/Paris,,OIF, +OIF:SP:59:4677791,1,"Fer à Cheval",48.744855,2.408366,0,0,OIF:SA:8749573,Europe/Paris,,OIF, +OIF:SP:59:4677792,1,"Mairie d'Orly",48.743089,2.400047,0,0,OIF:SA:8754620,Europe/Paris,,OIF, +OIF:SP:59:4677793,1,"Mairie d'Orly",48.743421,2.400346,0,0,OIF:SA:8754620,Europe/Paris,,OIF, +OIF:SP:59:4687322,1,"Porte de Saint-Cloud - Métro",48.837272,2.256222,0,0,OIF:SA:59492,Europe/Paris,,OIF, +OIF:SP:59:4687323,1,"Porte de Saint-Cloud - Métro",48.837533,2.256072,0,0,OIF:SA:59492,Europe/Paris,,OIF, +OIF:SP:59:4687324,1,"Pierre de Coubertin",48.834648,2.256226,0,0,OIF:SA:59:4687324,Europe/Paris,,OIF, +OIF:SP:59:4687325,1,"Pierre de Coubertin",48.83489,2.255872,0,0,OIF:SA:59:4687324,Europe/Paris,,OIF, +OIF:SP:59:4687326,1,"Abel Gance",48.834227,2.2591,0,0,OIF:SA:59:4687326,Europe/Paris,,OIF, +OIF:SP:59:4687327,1,"Abel Gance",48.83447,2.258105,0,0,OIF:SA:59:4687326,Europe/Paris,,OIF, +OIF:SP:59:4687328,1,"Voie Lactée",48.833698,2.26072,0,0,OIF:SA:59:4687328,Europe/Paris,,OIF, +OIF:SP:59:4687329,1,"Quai du Point du Jour",48.830874,2.257512,0,0,OIF:SA:59:3442575,Europe/Paris,,OIF, +OIF:SP:59:4687342,1,"République",48.820922,2.285252,0,0,OIF:SA:24:15301,Europe/Paris,,OIF, +OIF:SP:59:4687343,1,"République",48.820958,2.286015,0,0,OIF:SA:24:15301,Europe/Paris,,OIF, +OIF:SP:59:4687350,1,"Hébert - Gare",48.812953,2.273298,0,0,OIF:SA:8739156,Europe/Paris,,OIF, +OIF:SP:59:4687351,1,"Hébert - Gare",48.812827,2.273516,0,0,OIF:SA:8739156,Europe/Paris,,OIF, +OIF:SP:59:4687352,1,"Lazare - Carnot",48.810192,2.269396,0,0,OIF:SA:59:3619150,Europe/Paris,,OIF, +OIF:SP:59:4687353,1,"Lazare - Carnot",48.809942,2.272213,0,0,OIF:SA:59:3619150,Europe/Paris,,OIF, +OIF:SP:59:4687354,1,"Pierre Louvrier",48.806586,2.267428,0,0,OIF:SA:59:4687354,Europe/Paris,,OIF, +OIF:SP:59:4687355,1,"Pierre Louvrier",48.806246,2.269537,0,0,OIF:SA:59:4687354,Europe/Paris,,OIF, +OIF:SP:59:4687356,1,"Gabriel Péri",48.804285,2.266057,0,0,OIF:SA:59:4687356,Europe/Paris,,OIF, +OIF:SP:59:4687357,1,"Gabriel Péri",48.80389,2.267118,0,0,OIF:SA:59:4687356,Europe/Paris,,OIF, +OIF:SP:59:4687358,1,"Centre Culturel Jean Arp",48.802603,2.264793,0,0,OIF:SA:59:4687358,Europe/Paris,,OIF, +OIF:SP:59:4687361,1,"Plessis - Piquet",48.798075,2.267439,0,0,OIF:SA:59:3909054,Europe/Paris,,OIF, +OIF:SP:59:4687364,1,"Cimetière de Clamart",48.794272,2.266369,0,0,OIF:SA:59:3909059,Europe/Paris,,OIF, +OIF:SP:59:4687367,1,"Jardin Parisien - Coquelicots",48.790951,2.258552,0,0,OIF:SA:59:4687367,Europe/Paris,,OIF, +OIF:SP:59:4687368,1,"Jardin Parisien - Coquelicots",48.790907,2.259491,0,0,OIF:SA:59:4687367,Europe/Paris,,OIF, +OIF:SP:59:4687375,1,"Georges Pompidou",48.785282,2.237356,0,0,OIF:SA:59864,Europe/Paris,,OIF, +OIF:SP:59:4687378,1,"Le Jour Se Leve",48.8343,2.26008,0,0,OIF:SA:59:4687378,Europe/Paris,,OIF, +OIF:SP:59:4687379,1,"Rhin et Danube - Métro",48.841044,2.229433,0,0,OIF:SA:59400,Europe/Paris,,OIF, +OIF:SP:59:4695639,1,"Les Chardonnerettes",49.002625,2.380995,0,0,OIF:SA:59:4695639,Europe/Paris,,OIF, +OIF:SP:59:4695643,1,"Champ de Chartres.",49.004569,2.373006,0,0,OIF:SA:59:4238640,Europe/Paris,,OIF, +OIF:SP:59:4695644,1,"École Jules Ferry.",49.002088,2.373688,0,0,OIF:SA:59:4238642,Europe/Paris,,OIF, +OIF:SP:59:4695645,1,"Avenue du Nid",49.002141,2.37646,0,0,OIF:SA:59:4695645,Europe/Paris,,OIF, +OIF:SP:59:4695646,1,"Les Chardonnerettes.",49.002068,2.3812,0,0,OIF:SA:59:4695639,Europe/Paris,,OIF, +OIF:SP:59:4695647,1,"Place du Souvenir Français.",48.998725,2.379899,0,0,OIF:SA:59:4695647,Europe/Paris,,OIF, +OIF:SP:59:4695649,1,"Lycée Jean-Jacques Rousseau.",48.994061,2.382354,0,0,OIF:SA:59:4695649,Europe/Paris,,OIF, +OIF:SP:59:4695663,1,"Lycée Jean-Jacques Rousseau.",48.994294,2.383064,0,0,OIF:SA:59:4695649,Europe/Paris,,OIF, +OIF:SP:59:4695676,1,"Marcelin Berthelot - Victor Hugo.",48.996927,2.381837,0,0,OIF:SA:59:4695676,Europe/Paris,,OIF, +OIF:SP:59:4723801,1,"Terroirs de France",48.831734,2.387875,0,0,OIF:SA:59:3716900,Europe/Paris,,OIF, +OIF:SP:59:4723802,1,"Terroirs de France",48.831599,2.388106,0,0,OIF:SA:59:3716900,Europe/Paris,,OIF, +OIF:SP:59:4723803,1,"Bercy",48.827553,2.392935,0,0,OIF:SA:59726,Europe/Paris,,OIF, +OIF:SP:59:4723804,1,"Baron le Roy",48.829971,2.392379,0,0,OIF:SA:59726,Europe/Paris,,OIF, +OIF:SP:59:4723805,1,"Baron le Roy",48.830312,2.392761,0,0,OIF:SA:59726,Europe/Paris,,OIF, +OIF:SP:59:4723852,1,"Beaujeu",48.796665,2.475698,0,0,OIF:SA:59:3687002,Europe/Paris,,OIF, +OIF:SP:59:4723853,1,"Beaujeu",48.796422,2.476119,0,0,OIF:SA:59:3687002,Europe/Paris,,OIF, +OIF:SP:59:4723854,1,"Galilée",48.794363,2.476985,0,0,OIF:SA:59:4723854,Europe/Paris,,OIF, +OIF:SP:59:4723855,1,"Galilée",48.794074,2.477814,0,0,OIF:SA:59:4723854,Europe/Paris,,OIF, +OIF:SP:59:4723856,1,"Arromanches",48.791376,2.479262,0,0,OIF:SA:59:4723856,Europe/Paris,,OIF, +OIF:SP:59:4723857,1,"La Pie",48.788578,2.48158,0,0,OIF:SA:59:3663593,Europe/Paris,,OIF, +OIF:SP:59:4723858,1,"Jean Jaurès",48.786346,2.4839,0,0,OIF:SA:59:4723858,Europe/Paris,,OIF, +OIF:SP:59:4723859,1,"Docteur Roux - Chambre des Métiers",48.786017,2.488251,0,0,OIF:SA:59:4723859,Europe/Paris,,OIF, +OIF:SP:59:4723860,1,"Docteur Roux - Chambre des Métiers",48.788722,2.489062,0,0,OIF:SA:59:4723859,Europe/Paris,,OIF, +OIF:SP:59:4723861,1,"Corneilles",48.785807,2.491202,0,0,OIF:SA:59:4723861,Europe/Paris,,OIF, +OIF:SP:59:4723862,1,"Corneilles",48.78754,2.491983,0,0,OIF:SA:59:4723861,Europe/Paris,,OIF, +OIF:SP:59:4723863,1,"Alma",48.785884,2.494345,0,0,OIF:SA:59:4723863,Europe/Paris,,OIF, +OIF:SP:59:4723864,1,"Alma",48.787609,2.494635,0,0,OIF:SA:59:4723863,Europe/Paris,,OIF, +OIF:SP:59:4723865,1,"Sorbiers",48.786192,2.498997,0,0,OIF:SA:59:4723865,Europe/Paris,,OIF, +OIF:SP:59:4723866,1,"Sorbiers",48.787676,2.497927,0,0,OIF:SA:59:4723865,Europe/Paris,,OIF, +OIF:SP:59:4723867,1,"Falonnières",48.787059,2.502265,0,0,OIF:SA:59:4723867,Europe/Paris,,OIF, +OIF:SP:59:4723868,1,"Place de Molènes",48.788738,2.503385,0,0,OIF:SA:59:4723868,Europe/Paris,,OIF, +OIF:SP:59:4723869,1,"Place de Molènes",48.789468,2.502041,0,0,OIF:SA:59:4723868,Europe/Paris,,OIF, +OIF:SP:59:4723870,1,"Avenue de Bonneuil",48.79101,2.504902,0,0,OIF:SA:59:4723870,Europe/Paris,,OIF, +OIF:SP:59:4723871,1,"Avenue de Bonneuil",48.791273,2.503176,0,0,OIF:SA:59:4723870,Europe/Paris,,OIF, +OIF:SP:59:4723872,1,"Voltaire",48.790386,2.507975,0,0,OIF:SA:59:4723872,Europe/Paris,,OIF, +OIF:SP:59:4723873,1,"Voltaire",48.790674,2.507364,0,0,OIF:SA:59:4723872,Europe/Paris,,OIF, +OIF:SP:59:4723874,1,"Église de la Varenne",48.790164,2.5123,0,0,OIF:SA:59:4723874,Europe/Paris,,OIF, +OIF:SP:59:4723877,1,"Capitaine Charton",48.797106,2.516132,0,0,OIF:SA:59:4723877,Europe/Paris,,OIF, +OIF:SP:59:4723878,1,"Capitaine Charton",48.796783,2.515682,0,0,OIF:SA:59:4723877,Europe/Paris,,OIF, +OIF:SP:59:4723879,1,"Charles Péguy",48.800499,2.518729,0,0,OIF:SA:59:4723879,Europe/Paris,,OIF, +OIF:SP:59:4723880,1,"Charles Péguy",48.800958,2.518608,0,0,OIF:SA:59:4723879,Europe/Paris,,OIF, +OIF:SP:59:4723881,1,"Thiers",48.80316,2.518181,0,0,OIF:SA:59:4723881,Europe/Paris,,OIF, +OIF:SP:59:4723882,1,"Thiers",48.80352,2.517896,0,0,OIF:SA:59:4723881,Europe/Paris,,OIF, +OIF:SP:59:4723883,1,"Gustave Goublier",48.805678,2.517196,0,0,OIF:SA:59:4723883,Europe/Paris,,OIF, +OIF:SP:59:4723884,1,"Gustave Goublier",48.805589,2.517182,0,0,OIF:SA:59:4723883,Europe/Paris,,OIF, +OIF:SP:59:4723885,1,"Champigny - Saint-Maur RER",48.806856,2.511036,0,0,OIF:SA:8775817,Europe/Paris,,OIF, +OIF:SP:59:4723887,1,"Alexandre Dumas",48.806872,2.512356,0,0,OIF:SA:59:4723887,Europe/Paris,,OIF, +OIF:SP:59:4723889,1,"Arago",48.790518,2.510016,0,0,OIF:SA:59:4723889,Europe/Paris,,OIF, +OIF:SP:59:4723890,1,"Guynemer",48.789884,2.486454,0,0,OIF:SA:59:4723890,Europe/Paris,,OIF, +OIF:SP:59:4723891,1,"Bourbaki",48.791696,2.482242,0,0,OIF:SA:59:3663613,Europe/Paris,,OIF, +OIF:SP:59:4723892,1,"Pont de Charenton",48.818387,2.420295,0,0,OIF:SA:59:3716951,Europe/Paris,,OIF, +OIF:SP:59:4726696,1,"Marronniers",48.766685,2.494069,0,0,OIF:SA:59:3686592,Europe/Paris,,OIF, +OIF:SP:59:4726757,1,"Saint-François-Xavier",48.851606,2.313808,0,0,OIF:SA:59524,Europe/Paris,,OIF, +OIF:SP:59:4726914,1,"Gare Saint-Lazare",48.875622,2.324861,0,0,OIF:SA:8738400,Europe/Paris,,OIF, +OIF:SP:59:4726915,1,"Gare Saint-Lazare",48.875891,2.32625,0,0,OIF:SA:8738400,Europe/Paris,,OIF, +OIF:SP:59:4726923,1,"Richelieu - 4 Septembre",48.869178,2.3382,0,0,OIF:SA:59437,Europe/Paris,,OIF, +OIF:SP:59:4726924,1,"Bourse",48.868693,2.340652,0,0,OIF:SA:59444,Europe/Paris,,OIF, +OIF:SP:59:4726925,1,"Réaumur - Montmartre",48.868126,2.343281,0,0,OIF:SA:59:3749784,Europe/Paris,,OIF, +OIF:SP:59:4726926,1,"Sentier",48.867407,2.346605,0,0,OIF:SA:59440,Europe/Paris,,OIF, +OIF:SP:59:4726927,1,"Réaumur - Sébastopol",48.86649,2.350896,0,0,OIF:SA:59586,Europe/Paris,,OIF, +OIF:SP:59:4726928,1,"Réaumur - Arts et Métiers",48.865825,2.353947,0,0,OIF:SA:59586,Europe/Paris,,OIF, +OIF:SP:59:4726929,1,"Arts et Métiers",48.865195,2.356958,0,0,OIF:SA:59588,Europe/Paris,,OIF, +OIF:SP:59:4726930,1,"Square du Temple - Mairie du 3ème - Carreau du Temple",48.864862,2.360023,0,0,OIF:SA:59438,Europe/Paris,,OIF, +OIF:SP:59:4726931,1,"Turbigo - République",48.866255,2.361481,0,0,OIF:SA:59438,Europe/Paris,,OIF, +OIF:SP:59:4726932,1,"République",48.866685,2.364206,0,0,OIF:SA:59557,Europe/Paris,,OIF, +OIF:SP:59:4726933,1,"Jean-Pierre Timbaud",48.864834,2.365512,0,0,OIF:SA:59338,Europe/Paris,,OIF, +OIF:SP:59:4726935,1,"Saint-Claude",48.859872,2.367349,0,0,OIF:SA:59558,Europe/Paris,,OIF, +OIF:SP:59:4726947,1,"Gare de Lyon.",48.842668,2.375576,0,0,OIF:SA:8768600,Europe/Paris,,OIF, +OIF:SP:59:4726952,1,"Saint-Claude",48.859773,2.367716,0,0,OIF:SA:59:4726952,Europe/Paris,,OIF, +OIF:SP:59:4726954,1,"Jean-Pierre Timbaud",48.864977,2.365771,0,0,OIF:SA:59338,Europe/Paris,,OIF, +OIF:SP:59:4726955,1,"République - Temple",48.866128,2.365091,0,0,OIF:SA:59557,Europe/Paris,,OIF, +OIF:SP:59:4726956,1,"Lancry-Saint-Martin",48.868412,2.35997,0,0,OIF:SA:59:4726956,Europe/Paris,,OIF, +OIF:SP:59:4726957,1,"Porte Saint-Martin",48.869006,2.356169,0,0,OIF:SA:59253,Europe/Paris,,OIF, +OIF:SP:59:4726958,1,"Porte Saint-Denis",48.869905,2.352041,0,0,OIF:SA:59253,Europe/Paris,,OIF, +OIF:SP:59:4726959,1,"Poissonnière - Bonne Nouvelle",48.870849,2.347505,0,0,OIF:SA:59475,Europe/Paris,,OIF, +OIF:SP:59:4726960,1,"Grands Boulevards",48.871542,2.343377,0,0,OIF:SA:59464,Europe/Paris,,OIF, +OIF:SP:59:4726961,1,"Richelieu - Drouot",48.871955,2.339262,0,0,OIF:SA:59463,Europe/Paris,,OIF, +OIF:SP:59:4726962,1,"Choiseul",48.871434,2.336238,0,0,OIF:SA:59:4726962,Europe/Paris,,OIF, +OIF:SP:59:4726963,1,"Gare Saint-Lazare.",48.874921,2.326578,0,0,OIF:SA:8738400,Europe/Paris,,OIF, +OIF:SP:59:4745079,1,"Noisy - Champs RER",48.842484,2.577754,0,0,OIF:SA:8775834,Europe/Paris,,OIF, +OIF:SP:59:4758933,1,"Porte de Clichy - Métro",48.896155,2.311089,0,0,OIF:SA:8711127,Europe/Paris,,OIF, +OIF:SP:59:4758935,1,"Bois le Prêtre",48.899329,2.320984,0,0,OIF:SA:59:3749990,Europe/Paris,,OIF, +OIF:SP:59:4758946,1,"Mairie de Saint-Ouen - Métro",48.911391,2.333156,0,0,OIF:SA:59545,Europe/Paris,,OIF, +OIF:SP:59:4758949,1,"Landy - Jaurès",48.914968,2.338119,0,0,OIF:SA:59:4016605,Europe/Paris,,OIF, +OIF:SP:59:4758951,1,"Landy - Ornano",48.914114,2.343014,0,0,OIF:SA:59:4758951,Europe/Paris,,OIF, +OIF:SP:59:4758952,1,"Landy - Ornano",48.914195,2.343941,0,0,OIF:SA:59:4758951,Europe/Paris,,OIF, +OIF:SP:59:4758953,1,"Landy - Pleyel",48.914581,2.3484,0,0,OIF:SA:59:4758953,Europe/Paris,,OIF, +OIF:SP:59:4758954,1,"Landy - Pleyel",48.914608,2.347691,0,0,OIF:SA:59:4758953,Europe/Paris,,OIF, +OIF:SP:59:4758955,1,"Landy - Cheminots",48.915551,2.352777,0,0,OIF:SA:59:4758955,Europe/Paris,,OIF, +OIF:SP:59:4758956,1,"Landy - Cheminots",48.915641,2.352627,0,0,OIF:SA:59:4758955,Europe/Paris,,OIF, +OIF:SP:59:4758957,1,"Stade de France - Saint-Denis RER",48.918067,2.353323,0,0,OIF:SA:8716478,Europe/Paris,,OIF, +OIF:SP:59:4758958,1,"Stade de France - Saint-Denis RER",48.917978,2.352233,0,0,OIF:SA:8716478,Europe/Paris,,OIF, +OIF:SP:59:4758959,1,"Avenue des Fruitiers",48.918058,2.355178,0,0,OIF:SA:59:4758959,Europe/Paris,,OIF, +OIF:SP:59:4758960,1,"Avenue des Fruitiers",48.918238,2.354101,0,0,OIF:SA:59:4758959,Europe/Paris,,OIF, +OIF:SP:59:4758961,1,"Wilson - de Pressensé",48.918237,2.358574,0,0,OIF:SA:59:4758961,Europe/Paris,,OIF, +OIF:SP:59:4758962,1,"Wilson - de Pressensé",48.918381,2.358315,0,0,OIF:SA:59:4758961,Europe/Paris,,OIF, +OIF:SP:59:4758963,1,"La Plaine - Stade de France RER",48.918587,2.361683,0,0,OIF:SA:8716479,Europe/Paris,,OIF, +OIF:SP:59:4758964,1,"La Plaine - Stade de France RER",48.919108,2.361915,0,0,OIF:SA:8716479,Europe/Paris,,OIF, +OIF:SP:59:4758965,1,"Murger",48.915342,2.364558,0,0,OIF:SA:59:4758965,Europe/Paris,,OIF, +OIF:SP:59:4758966,1,"Murger",48.915477,2.365813,0,0,OIF:SA:59:4758965,Europe/Paris,,OIF, +OIF:SP:59:4758971,1,"Mairie d'Aubervilliers",48.914187,2.38167,0,0,OIF:SA:59:3908815,Europe/Paris,,OIF, +OIF:SP:59:4758972,1,"Mairie d'Aubervilliers",48.914771,2.381984,0,0,OIF:SA:59:3908815,Europe/Paris,,OIF, +OIF:SP:59:4758973,1,"Rue des Cités",48.913941,2.388788,0,0,OIF:SA:59:4009057,Europe/Paris,,OIF, +OIF:SP:59:4758974,1,"Square Lucien Brun",48.915272,2.386294,0,0,OIF:SA:59:4758974,Europe/Paris,,OIF, +OIF:SP:59:4758975,1,"Square Lucien Brun",48.915542,2.386212,0,0,OIF:SA:59:4758974,Europe/Paris,,OIF, +OIF:SP:59:4758976,1,"Hemet",48.919001,2.387524,0,0,OIF:SA:59:4758976,Europe/Paris,,OIF, +OIF:SP:59:4758977,1,"Hemet",48.918723,2.386951,0,0,OIF:SA:59:4758976,Europe/Paris,,OIF, +OIF:SP:59:4758979,1,"Danielle Casanova - Pont Blanc",48.918324,2.393783,0,0,OIF:SA:59:4758979,Europe/Paris,,OIF, +OIF:SP:59:4758980,1,"Balzac",48.915373,2.400175,0,0,OIF:SA:59:4758980,Europe/Paris,,OIF, +OIF:SP:59:4758981,1,"Balzac",48.915652,2.399807,0,0,OIF:SA:59:4758980,Europe/Paris,,OIF, +OIF:SP:59:4758984,1,"Hélène Cochennec",48.916727,2.406394,0,0,OIF:SA:59:4758984,Europe/Paris,,OIF, +OIF:SP:59:4758986,1,"La Courneuve-8 Mai 1945",48.920104,2.410204,0,0,OIF:SA:59320,Europe/Paris,,OIF, +OIF:SP:59:4758987,1,"La Courneuve-8 Mai 1945",48.920248,2.409727,0,0,OIF:SA:59320,Europe/Paris,,OIF, +OIF:SP:59:4758988,1,"La Courneuve-8 Mai 1945.",48.920185,2.410286,0,0,OIF:SA:59320,Europe/Paris,,OIF, +OIF:SP:59:4758989,1,"Edouard Vaillant - Jean Jaurès",48.917787,2.407159,0,0,OIF:SA:59:4758989,Europe/Paris,,OIF, +OIF:SP:59:4758990,1,"Hélène Cochennec",48.916152,2.405357,0,0,OIF:SA:59316,Europe/Paris,,OIF, +OIF:SP:59:4758991,1,"Schaeffer",48.916668,2.380104,0,0,OIF:SA:59:4009080,Europe/Paris,,OIF, +OIF:SP:59:4758993,1,"Victor Hugo - Sanzillon",48.902969,2.319156,0,0,OIF:SA:8727124,Europe/Paris,,OIF, +OIF:SP:59:4758994,1,"Curton",48.898771,2.312437,0,0,OIF:SA:59:4758994,Europe/Paris,,OIF, +OIF:SP:59:4758995,1,"Victor Hugo - Jean Jaurès",48.897728,2.310734,0,0,OIF:SA:59:4758995,Europe/Paris,,OIF, +OIF:SP:59:4766795,1,"Alsace",48.893204,2.299641,0,0,OIF:SA:59:4766795,Europe/Paris,,OIF, +OIF:SP:59:4766796,1,"Alsace",48.893905,2.299164,0,0,OIF:SA:59:4766795,Europe/Paris,,OIF, +OIF:SP:59:4770081,1,"Route de Massy - les Champarts",48.714463,2.30015,0,0,OIF:SA:59:4770081,Europe/Paris,,OIF, +OIF:SP:59:4770082,1,"Route de Massy - les Champarts",48.713205,2.30193,0,0,OIF:SA:59:4770081,Europe/Paris,,OIF, +OIF:SP:59:4770127,1,"Les Cottages",48.772243,2.312687,0,0,OIF:SA:8775873,Europe/Paris,,OIF, +OIF:SP:59:4770149,1,"Cité Jardins",48.80063,2.333395,0,0,OIF:SA:59:4770149,Europe/Paris,,OIF, +OIF:SP:59:4770150,1,"Cité Jardins",48.801627,2.333504,0,0,OIF:SA:59:4770149,Europe/Paris,,OIF, +OIF:SP:59:4770151,1,"Robespierre",48.801879,2.335205,0,0,OIF:SA:59:4770151,Europe/Paris,,OIF, +OIF:SP:59:4770152,1,"Auguste Delaune",48.801942,2.338348,0,0,OIF:SA:59:4770152,Europe/Paris,,OIF, +OIF:SP:59:4770153,1,"Auguste Delaune",48.802032,2.338239,0,0,OIF:SA:59:4770152,Europe/Paris,,OIF, +OIF:SP:59:4770154,1,"Hôtel de Ville d'Arcueil",48.806696,2.33696,0,0,OIF:SA:8775866,Europe/Paris,,OIF, +OIF:SP:59:4770155,1,"Hôtel de Ville d'Arcueil",48.80658,2.336838,0,0,OIF:SA:8775866,Europe/Paris,,OIF, +OIF:SP:59:4770156,1,"Laplace RER",48.808188,2.332796,0,0,OIF:SA:8775866,Europe/Paris,,OIF, +OIF:SP:59:4770157,1,"Laplace RER",48.807847,2.333041,0,0,OIF:SA:8775866,Europe/Paris,,OIF, +OIF:SP:59:4770183,1,"Hôtel de Ville",48.857026,2.350607,0,0,OIF:SA:59590,Europe/Paris,,OIF, +OIF:SP:59:4798781,1,"Villiers-sur-Marne - le Plessis-Trévise RER",48.823853,2.544033,0,0,OIF:SA:8711379,Europe/Paris,,OIF, +OIF:SP:59:4798782,1,"Villiers-sur-Marne - le Plessis-Trévise RER",48.823916,2.544279,0,0,OIF:SA:8711379,Europe/Paris,,OIF, +OIF:SP:59:4798804,1,"Le Parc",48.840938,2.49812,0,0,OIF:SA:59:4798804,Europe/Paris,,OIF, +OIF:SP:59:4798805,1,"Ledru-Rollin - Général de Gaulle",48.842549,2.502755,0,0,OIF:SA:59:3922305,Europe/Paris,,OIF, +OIF:SP:59:4798806,1,"Bellevue",48.846326,2.507478,0,0,OIF:SA:59:4109752,Europe/Paris,,OIF, +OIF:SP:59:4798807,1,"Bords de Marne",48.848949,2.508794,0,0,OIF:SA:59:4109754,Europe/Paris,,OIF, +OIF:SP:59:4798808,1,"La Maltournée",48.851633,2.511227,0,0,OIF:SA:59:4109805,Europe/Paris,,OIF, +OIF:SP:59:4798811,1,"Faidherbe - Église",48.856756,2.510713,0,0,OIF:SA:59:4109827,Europe/Paris,,OIF, +OIF:SP:59:4798812,1,"Alexandre 1er",48.858341,2.508417,0,0,OIF:SA:59:4798812,Europe/Paris,,OIF, +OIF:SP:59:4798813,1,"Square Jean Mermoz",48.861431,2.509571,0,0,OIF:SA:59:3685949,Europe/Paris,,OIF, +OIF:SP:59:4798814,1,"Cimetière de Neuilly-Plaisance",48.863276,2.514127,0,0,OIF:SA:59:4109823,Europe/Paris,,OIF, +OIF:SP:59:4798815,1,"Georges Pompidou",48.864107,2.517181,0,0,OIF:SA:59:4109765,Europe/Paris,,OIF, +OIF:SP:59:4798850,1,"Pont de Bezons",48.922988,2.217794,0,0,OIF:SA:59720,Europe/Paris,,OIF, +OIF:SP:59:4798854,1,"Grand Cerf",48.92384,2.207482,0,0,OIF:SA:8743282,Europe/Paris,,OIF, +OIF:SP:59:4798880,1,"Bibliothèque François Mitterrand",48.830184,2.376792,0,0,OIF:SA:8732832,Europe/Paris,,OIF, +OIF:SP:59:4798883,1,"Hôpital Jean Rostand",48.812432,2.378153,0,0,OIF:SA:59:3781672,Europe/Paris,,OIF, +OIF:SP:59:4798887,1,"Pelleport - Gambetta",48.868783,2.40193,0,0,OIF:SA:59328,Europe/Paris,,OIF, +OIF:SP:59:4834508,1,"Pont de Sevres",48.829522,2.229743,0,0,OIF:SA:59621,Europe/Paris,,OIF, +OIF:SP:59:4834515,1,"Square de la Forge",48.824387,2.208002,0,0,OIF:SA:17:1422,Europe/Paris,,OIF, +OIF:SP:59:4834516,1,"Square de la Forge",48.824216,2.207894,0,0,OIF:SA:17:1422,Europe/Paris,,OIF, +OIF:SP:59:4834517,1,"Pré Verdy",48.825885,2.205848,0,0,OIF:SA:59:4834517,Europe/Paris,,OIF, +OIF:SP:59:4834518,1,"Pré Verdy",48.825776,2.204323,0,0,OIF:SA:59:4834517,Europe/Paris,,OIF, +OIF:SP:59:4834519,1,"Sevres-Ville d'Avray - Gare SNCF Rive Droite",48.825987,2.200838,0,0,OIF:SA:8738234,Europe/Paris,,OIF, +OIF:SP:59:4834520,1,"Parc de Lesser",48.826223,2.19478,0,0,OIF:SA:59:4834520,Europe/Paris,,OIF, +OIF:SP:59:4834521,1,"Parc de Lesser",48.826052,2.194794,0,0,OIF:SA:59:4834520,Europe/Paris,,OIF, +OIF:SP:59:4834523,1,"Église de Ville d'Avray",48.826648,2.189824,0,0,OIF:SA:17:1403,Europe/Paris,,OIF, +OIF:SP:59:4834524,1,"Château de Ville d'Avray",48.828357,2.183721,0,0,OIF:SA:59:4834524,Europe/Paris,,OIF, +OIF:SP:59:4834525,1,"Château de Ville d'Avray",48.827352,2.184581,0,0,OIF:SA:59:4834524,Europe/Paris,,OIF, +OIF:SP:59:4834526,1,"Mairie de Marnes",48.830344,2.177357,0,0,OIF:SA:17:1405,Europe/Paris,,OIF, +OIF:SP:59:4834527,1,"Hôpital de Garches",48.838551,2.171368,0,0,OIF:SA:17:1354,Europe/Paris,,OIF, +OIF:SP:59:4834529,1,"Stade de la Marche",48.837827,2.162099,0,0,OIF:SA:17:1355,Europe/Paris,,OIF, +OIF:SP:59:4834530,1,"Fer Rouge",48.837683,2.155319,0,0,OIF:SA:17:1356,Europe/Paris,,OIF, +OIF:SP:59:4834531,1,"Fer Rouge",48.83754,2.156313,0,0,OIF:SA:17:1356,Europe/Paris,,OIF, +OIF:SP:59:4834532,1,"Vaucresson - Gare SNCF",48.837399,2.152284,0,0,OIF:SA:8738226,Europe/Paris,,OIF, +OIF:SP:59:4834533,1,"Vaucresson - Gare SNCF",48.837193,2.152284,0,0,OIF:SA:8738226,Europe/Paris,,OIF, +OIF:SP:59:4834534,1,"Route des Puits",48.83702,2.145328,0,0,OIF:SA:17:1358,Europe/Paris,,OIF, +OIF:SP:59:4834535,1,"Place de Verdun",48.836454,2.140129,0,0,OIF:SA:17:1359,Europe/Paris,,OIF, +OIF:SP:59:4834536,1,"Jules Verne",48.835415,2.131746,0,0,OIF:SA:17:1360,Europe/Paris,,OIF, +OIF:SP:59:4834537,1,"Bel Air",48.83685,2.12978,0,0,OIF:SA:17:1361,Europe/Paris,,OIF, +OIF:SP:59:4834538,1,"Bel Air",48.835591,2.12939,0,0,OIF:SA:17:1361,Europe/Paris,,OIF, +OIF:SP:59:4834539,1,"Puits d'Angle",48.838576,2.1301,0,0,OIF:SA:17:1304,Europe/Paris,,OIF, +OIF:SP:59:4834540,1,"Puits d'Angle",48.838558,2.129828,0,0,OIF:SA:17:1304,Europe/Paris,,OIF, +OIF:SP:59:4834541,1,"Grande Terrasse",48.841122,2.131261,0,0,OIF:SA:8738243,Europe/Paris,,OIF, +OIF:SP:59:4834542,1,"Grande Terrasse",48.841256,2.131042,0,0,OIF:SA:8738243,Europe/Paris,,OIF, +OIF:SP:59:4834543,1,"Guibert",48.844442,2.133549,0,0,OIF:SA:8738243,Europe/Paris,,OIF, +OIF:SP:59:4834544,1,"Guibert",48.84436,2.133045,0,0,OIF:SA:8738243,Europe/Paris,,OIF, +OIF:SP:59:4834546,1,"La Celle Saint-Cloud - Gare SNCF",48.843497,2.138346,0,0,OIF:SA:8738243,Europe/Paris,,OIF, +OIF:SP:59:4834548,1,"Pierre Corneille",48.846318,2.137232,0,0,OIF:SA:2:1131,Europe/Paris,,OIF, +OIF:SP:59:4834549,1,"Hôtel de Ville de la Celle-Saint-Cloud",48.847025,2.135609,0,0,OIF:SA:16:19140,Europe/Paris,,OIF, +OIF:SP:59:4834550,1,"Jules Verne",48.835383,2.134034,0,0,OIF:SA:2:241,Europe/Paris,,OIF, +OIF:SP:59:4834551,1,"Place de Verdun",48.836248,2.140334,0,0,OIF:SA:59:4834551,Europe/Paris,,OIF, +OIF:SP:59:4834552,1,"Route des Puits",48.836797,2.146377,0,0,OIF:SA:59:4834552,Europe/Paris,,OIF, +OIF:SP:59:4834553,1,"Stade de la Marche",48.837539,2.161541,0,0,OIF:SA:59:4834553,Europe/Paris,,OIF, +OIF:SP:59:4834554,1,"Rue de Versailles",48.829423,2.174352,0,0,OIF:SA:59:4834554,Europe/Paris,,OIF, +OIF:SP:59:4834555,1,"Cimetière de Ville-d'Avray",48.827808,2.175963,0,0,OIF:SA:59:4834555,Europe/Paris,,OIF, +OIF:SP:59:4834556,1,"Matignon",48.827705,2.179652,0,0,OIF:SA:59:4834556,Europe/Paris,,OIF, +OIF:SP:59:4834557,1,"Sevres-Ville d'Avray - Gare SNCF Rive Droite",48.825878,2.199695,0,0,OIF:SA:8738234,Europe/Paris,,OIF, +OIF:SP:59:4834558,1,"Place du Théâtre - Marche Saint-Romain",48.824246,2.211269,0,0,OIF:SA:17:1423,Europe/Paris,,OIF, +OIF:SP:59:4834573,1,"Petit Chambord",48.776288,2.313053,0,0,OIF:SA:59:4834573,Europe/Paris,,OIF, +OIF:SP:59:4834574,1,"Condorcet - Mairie-RER",48.779066,2.316125,0,0,OIF:SA:59:4834574,Europe/Paris,,OIF, +OIF:SP:59:4834576,1,"Galois",48.777008,2.322681,0,0,OIF:SA:59:4834576,Europe/Paris,,OIF, +OIF:SP:59:4834577,1,"Galois",48.777539,2.322,0,0,OIF:SA:59:4834576,Europe/Paris,,OIF, +OIF:SP:59:4834578,1,"Barbusse - Larroumès",48.775562,2.325754,0,0,OIF:SA:59:3730353,Europe/Paris,,OIF, +OIF:SP:59:4834579,1,"Barbusse - Larroumès",48.775625,2.326094,0,0,OIF:SA:59:3730353,Europe/Paris,,OIF, +OIF:SP:59:4834580,1,"Sous-Préfecture - Roseraie",48.776317,2.331262,0,0,OIF:SA:59:4834580,Europe/Paris,,OIF, +OIF:SP:59:4834581,1,"Sous-Préfecture - Roseraie",48.776308,2.330786,0,0,OIF:SA:59:4834580,Europe/Paris,,OIF, +OIF:SP:59:4834582,1,"Sous-Préfecture - Église de l'Haÿ-les-Roses",48.778277,2.335056,0,0,OIF:SA:59:4834582,Europe/Paris,,OIF, +OIF:SP:59:4834583,1,"Sous-Préfecture - Église de l'Haÿ-les-Roses",48.778384,2.334893,0,0,OIF:SA:59:4834582,Europe/Paris,,OIF, +OIF:SP:59:4834593,1,"Église de Chevilly-Larue",48.771094,2.354678,0,0,OIF:SA:59:4390970,Europe/Paris,,OIF, +OIF:SP:59:4834595,1,"Cité des Sorbiers",48.772001,2.358377,0,0,OIF:SA:59:4390971,Europe/Paris,,OIF, +OIF:SP:59:4834597,1,"Jacques Brel",48.770625,2.363176,0,0,OIF:SA:59:4390972,Europe/Paris,,OIF, +OIF:SP:59:4834599,1,"Bretagne",48.769384,2.366534,0,0,OIF:SA:59817,Europe/Paris,,OIF, +OIF:SP:59:4834605,1,"Rue de la Bresse",48.758356,2.361172,0,0,OIF:SA:59:4834605,Europe/Paris,,OIF, +OIF:SP:59:4834606,1,"Trois Marches",48.761512,2.356197,0,0,OIF:SA:59:4834606,Europe/Paris,,OIF, +OIF:SP:59:4834607,1,"Marée",48.759535,2.351588,0,0,OIF:SA:59:4834607,Europe/Paris,,OIF, +OIF:SP:59:4834611,1,"Marche International de Rungis",48.763301,2.357326,0,0,OIF:SA:59:4314846,Europe/Paris,,OIF, +OIF:SP:59:4834613,1,"Rue de la Bresse",48.758204,2.361253,0,0,OIF:SA:59:4834613,Europe/Paris,,OIF, +OIF:SP:59:4834619,1,"Henri Thirard-Leon Jouhaux",48.778546,2.339843,0,0,OIF:SA:59:3730644,Europe/Paris,,OIF, +OIF:SP:59:4834623,1,"Lycée Lakanal",48.777527,2.307,0,0,OIF:SA:59:4834623,Europe/Paris,,OIF, +OIF:SP:59:4834624,1,"Robinson RER",48.779909,2.281458,0,0,OIF:SA:8775872,Europe/Paris,,OIF, +OIF:SP:59:4834625,1,"Robinson RER",48.780025,2.281539,0,0,OIF:SA:8775872,Europe/Paris,,OIF, +OIF:SP:59:4834630,1,"Fontenay - Houdan",48.778727,2.291863,0,0,OIF:SA:59:4834630,Europe/Paris,,OIF, +OIF:SP:59:4834632,1,"Église de Sceaux",48.778441,2.297167,0,0,OIF:SA:59:4834632,Europe/Paris,,OIF, +OIF:SP:59:4834633,1,"Église de Sceaux",48.778665,2.296337,0,0,OIF:SA:59:4834632,Europe/Paris,,OIF, +OIF:SP:59:4834634,1,"Parc de Sceaux",48.778317,2.302172,0,0,OIF:SA:59:4834634,Europe/Paris,,OIF, +OIF:SP:59:4834635,1,"Parc de Sceaux",48.778434,2.302825,0,0,OIF:SA:59:4834634,Europe/Paris,,OIF, +OIF:SP:59:4834636,1,"Lycée Lakanal",48.777491,2.306429,0,0,OIF:SA:59:4834636,Europe/Paris,,OIF, +OIF:SP:59:4834666,1,"Le Cor de Chasse",48.759451,2.369343,0,0,OIF:SA:59:4314843,Europe/Paris,,OIF, +OIF:SP:59:4834674,1,"Cimetière Communal",48.772155,2.34399,0,0,OIF:SA:59:4834674,Europe/Paris,,OIF, +OIF:SP:59:4834679,1,"Petit Chambord",48.776791,2.313556,0,0,OIF:SA:59:4834679,Europe/Paris,,OIF, +OIF:SP:59:4843403,1,"Bibliothèque François Mitterrand",48.829788,2.377623,0,0,OIF:SA:8732832,Europe/Paris,,OIF, +OIF:SP:59:4843404,1,"Bibliothèque François Mitterrand",48.829356,2.377595,0,0,OIF:SA:8732832,Europe/Paris,,OIF, +OIF:SP:59:4843414,1,"Porte de Vitry",48.82373,2.377386,0,0,OIF:SA:59722,Europe/Paris,,OIF, +OIF:SP:59:4843416,1,"Rue des Jardins",48.820557,2.379643,0,0,OIF:SA:59:4843416,Europe/Paris,,OIF, +OIF:SP:59:4843418,1,"Louis Bertrand",48.81786,2.381492,0,0,OIF:SA:59:4843418,Europe/Paris,,OIF, +OIF:SP:59:4843420,1,"Ledru Rollin",48.815675,2.383219,0,0,OIF:SA:59:4843420,Europe/Paris,,OIF, +OIF:SP:59:4843442,1,"Voltaire",48.812681,2.385856,0,0,OIF:SA:59:4843442,Europe/Paris,,OIF, +OIF:SP:59:4843453,1,"Voltaire",48.812978,2.38587,0,0,OIF:SA:59:4843442,Europe/Paris,,OIF, +OIF:SP:59:4843460,1,"Fort d'Ivry",48.805184,2.388951,0,0,OIF:SA:59:4843460,Europe/Paris,,OIF, +OIF:SP:59:4843463,1,"Place de la Liberté",48.800412,2.386974,0,0,OIF:SA:59:4843463,Europe/Paris,,OIF, +OIF:SP:59:4843465,1,"Lavoisier - Carrières",48.799278,2.391326,0,0,OIF:SA:59:4843465,Europe/Paris,,OIF, +OIF:SP:59:4843467,1,"Malraux - Charles Infroit",48.795233,2.391785,0,0,OIF:SA:59:4843467,Europe/Paris,,OIF, +OIF:SP:59:4843469,1,"Exploradôme",48.7933,2.39283,0,0,OIF:SA:59:4843469,Europe/Paris,,OIF, +OIF:SP:59:4843477,1,"Edouard Til",48.787829,2.386635,0,0,OIF:SA:59:4843477,Europe/Paris,,OIF, +OIF:SP:59:4843479,1,"Utrillo",48.789601,2.384256,0,0,OIF:SA:59:4843479,Europe/Paris,,OIF, +OIF:SP:59:4843513,1,"Colonel Fabien",48.788202,2.375509,0,0,OIF:SA:59:4843513,Europe/Paris,,OIF, +OIF:SP:59:4843515,1,"Edouard Tremblay",48.785541,2.377955,0,0,OIF:SA:59:4378366,Europe/Paris,,OIF, +OIF:SP:59:4843517,1,"Groupe Scolaire Jean - Jacques Rousseau",48.782915,2.380551,0,0,OIF:SA:59:4843517,Europe/Paris,,OIF, +OIF:SP:59:4843519,1,"Julian Grimau - Voie Verte",48.78005,2.374238,0,0,OIF:SA:59:4378367,Europe/Paris,,OIF, +OIF:SP:59:4843525,1,"Cité Jardin",48.773481,2.37169,0,0,OIF:SA:59815,Europe/Paris,,OIF, +OIF:SP:59:4843527,1,"Moulin Vert",48.772143,2.368004,0,0,OIF:SA:59815,Europe/Paris,,OIF, +OIF:SP:59:4843528,1,"Colonel Fabien",48.788265,2.375672,0,0,OIF:SA:59:4843528,Europe/Paris,,OIF, +OIF:SP:59:4843529,1,"Solidarité - Amédée Huon",48.803883,2.384433,0,0,OIF:SA:59:4843529,Europe/Paris,,OIF, +OIF:SP:59:4843530,1,"Gymnase Auguste Delaune",48.808493,2.386342,0,0,OIF:SA:59:4843530,Europe/Paris,,OIF, +OIF:SP:59:4843809,1,"Rue des Jardins",48.819901,2.379792,0,0,OIF:SA:59:4843416,Europe/Paris,,OIF, +OIF:SP:59:4843810,1,"Louis Bertrand",48.816826,2.381968,0,0,OIF:SA:59:4843418,Europe/Paris,,OIF, +OIF:SP:59:4843811,1,"Ledru Rollin",48.815306,2.383286,0,0,OIF:SA:59:4843420,Europe/Paris,,OIF, +OIF:SP:59:4843814,1,"Jean le Galleu",48.810104,2.380111,0,0,OIF:SA:59:4473607,Europe/Paris,,OIF, +OIF:SP:59:4843815,1,"Lucien Selva",48.807946,2.383035,0,0,OIF:SA:59:4843815,Europe/Paris,,OIF, +OIF:SP:59:4843816,1,"Maurice Coutant",48.80621,2.386353,0,0,OIF:SA:59:4843816,Europe/Paris,,OIF, +OIF:SP:59:4843817,1,"Fort d'Ivry",48.805184,2.388366,0,0,OIF:SA:59:4843460,Europe/Paris,,OIF, +OIF:SP:59:4843818,1,"Solidarité - Amédée Huon",48.804089,2.384732,0,0,OIF:SA:59:4843818,Europe/Paris,,OIF, +OIF:SP:59:4843819,1,"Place de la Liberté",48.800233,2.386443,0,0,OIF:SA:59:4843463,Europe/Paris,,OIF, +OIF:SP:59:4843820,1,"Lavoisier - Carrières",48.798721,2.391339,0,0,OIF:SA:59:4843465,Europe/Paris,,OIF, +OIF:SP:59:4843821,1,"Malraux - Charles Infroit",48.79499,2.39173,0,0,OIF:SA:59:4843467,Europe/Paris,,OIF, +OIF:SP:59:4843822,1,"Exploradôme",48.793255,2.392667,0,0,OIF:SA:59:4843469,Europe/Paris,,OIF, +OIF:SP:59:4843825,1,"Edouard Til",48.787884,2.385792,0,0,OIF:SA:59:4843477,Europe/Paris,,OIF, +OIF:SP:59:4843826,1,"Utrillo",48.790203,2.38442,0,0,OIF:SA:59:4843479,Europe/Paris,,OIF, +OIF:SP:59:4843829,1,"Edouard Tremblay",48.785685,2.377602,0,0,OIF:SA:59:4378366,Europe/Paris,,OIF, +OIF:SP:59:4843830,1,"Groupe Scolaire Jean - Jacques Rousseau",48.782475,2.380333,0,0,OIF:SA:59:4843517,Europe/Paris,,OIF, +OIF:SP:59:4843834,1,"Cité Jardin",48.773508,2.371405,0,0,OIF:SA:59815,Europe/Paris,,OIF, +OIF:SP:59:4843835,1,"Moulin Vert",48.772331,2.368086,0,0,OIF:SA:59815,Europe/Paris,,OIF, +OIF:SP:59:4889457,1,"Bobigny - Pablo Picasso",48.906988,2.44904,0,0,OIF:SA:59342,Europe/Paris,,OIF, +OIF:SP:59:4889460,1,"Pierre Semard - Indépendance",48.91081,2.446676,0,0,OIF:SA:59:4889460,Europe/Paris,,OIF, +OIF:SP:59:4889461,1,"Pierre Semard - Indépendance",48.910738,2.446526,0,0,OIF:SA:59:4889460,Europe/Paris,,OIF, +OIF:SP:59:4889462,1,"Les Limites",48.914333,2.446288,0,0,OIF:SA:59:4889462,Europe/Paris,,OIF, +OIF:SP:59:4889463,1,"Charles Gide",48.916635,2.444889,0,0,OIF:SA:59:3731657,Europe/Paris,,OIF, +OIF:SP:59:4889464,1,"Charles Gide",48.916321,2.444793,0,0,OIF:SA:59:3731657,Europe/Paris,,OIF, +OIF:SP:59:4889471,1,"Daniel Fery",48.923611,2.461541,0,0,OIF:SA:59:3664407,Europe/Paris,,OIF, +OIF:SP:59:4889473,1,"Angélus - Fabien",48.924507,2.463889,0,0,OIF:SA:59:4889473,Europe/Paris,,OIF, +OIF:SP:59:4889474,1,"Angélus - Fabien",48.924822,2.463931,0,0,OIF:SA:59:4889473,Europe/Paris,,OIF, +OIF:SP:59:4889481,1,"Québec",48.928072,2.475177,0,0,OIF:SA:59:4889481,Europe/Paris,,OIF, +OIF:SP:59:4889482,1,"Québec",48.928466,2.475656,0,0,OIF:SA:59:4889481,Europe/Paris,,OIF, +OIF:SP:59:4889483,1,"Rond-Point Pierre Semard - Paul Vaillant-Couturier",48.929216,2.4799,0,0,OIF:SA:59:4889483,Europe/Paris,,OIF, +OIF:SP:59:4889484,1,"Rond-Point Pierre Semard - Paul Vaillant-Couturier",48.92936,2.479573,0,0,OIF:SA:59:4889483,Europe/Paris,,OIF, +OIF:SP:59:4889501,1,"Jane Joye",48.918008,2.447796,0,0,OIF:SA:59:4889501,Europe/Paris,,OIF, +OIF:SP:59:4889502,1,"Jane Joye",48.918322,2.447947,0,0,OIF:SA:59:4889501,Europe/Paris,,OIF, +OIF:SP:59:4889619,1,"Porte d'Orléans",48.821687,2.324533,0,0,OIF:SA:59624,Europe/Paris,,OIF, +OIF:SP:59:4889626,1,"Vache Noire",48.810624,2.326917,0,0,OIF:SA:59:4889626,Europe/Paris,,OIF, +OIF:SP:59:4889627,1,"Jean-Marin Naudin",48.805195,2.322999,0,0,OIF:SA:59:4889627,Europe/Paris,,OIF, +OIF:SP:59:4889628,1,"Jean-Marin Naudin",48.805051,2.323217,0,0,OIF:SA:59:4889627,Europe/Paris,,OIF, +OIF:SP:59:4889629,1,"Martyrs de Chateaubriant",48.802228,2.318646,0,0,OIF:SA:59:4889629,Europe/Paris,,OIF, +OIF:SP:59:4889630,1,"Martyrs de Chateaubriant",48.801797,2.318796,0,0,OIF:SA:59:4889629,Europe/Paris,,OIF, +OIF:SP:59:4889633,1,"Pasteur - Meuniers",48.798067,2.317287,0,0,OIF:SA:59:4458773,Europe/Paris,,OIF, +OIF:SP:59:4889644,1,"Les Blagis-Gabriel Péri",48.785867,2.302969,0,0,OIF:SA:59:4889644,Europe/Paris,,OIF, +OIF:SP:59:4889645,1,"Rue des Brugnauts",48.78841,2.301349,0,0,OIF:SA:59:4889645,Europe/Paris,,OIF, +OIF:SP:59:4889646,1,"Collège Romain Rolland",48.791771,2.299333,0,0,OIF:SA:59:4889646,Europe/Paris,,OIF, +OIF:SP:59:4889648,1,"Dampierre",48.795204,2.300038,0,0,OIF:SA:59:4458769,Europe/Paris,,OIF, +OIF:SP:59:4889649,1,"Rosenberg",48.797641,2.302662,0,0,OIF:SA:59:4458770,Europe/Paris,,OIF, +OIF:SP:59:4889652,1,"Collège Romain Rolland",48.791896,2.29898,0,0,OIF:SA:59:4889652,Europe/Paris,,OIF, +OIF:SP:59:4889653,1,"Rue des Brugnauts",48.788589,2.300995,0,0,OIF:SA:59:4889653,Europe/Paris,,OIF, +OIF:SP:59:4889656,1,"Les Bas Coquarts",48.785536,2.31075,0,0,OIF:SA:59:4889656,Europe/Paris,,OIF, +OIF:SP:59:4890510,1,"Place de la Résistance - Charles de Gaulle",48.786922,2.318448,0,0,OIF:SA:59:3763988,Europe/Paris,,OIF, +OIF:SP:59:4890514,1,"Petit Chambord - Lycée Lakanal",48.777079,2.31346,0,0,OIF:SA:59:4890514,Europe/Paris,,OIF, +OIF:SP:59:4890515,1,"Petit Chambord - Lycée Lakanal",48.777142,2.314521,0,0,OIF:SA:59:4890514,Europe/Paris,,OIF, +OIF:SP:59:4890534,1,"Antony RER",48.755343,2.301467,0,0,OIF:SA:8775875,Europe/Paris,,OIF, +OIF:SP:59:4890539,1,"Les Rabats",48.745612,2.314616,0,0,OIF:SA:59:4890539,Europe/Paris,,OIF, +OIF:SP:59:4890540,1,"Les Rabats",48.745486,2.315092,0,0,OIF:SA:59:4890539,Europe/Paris,,OIF, +OIF:SP:59:4890542,1,"Pascal",48.743482,2.317281,0,0,OIF:SA:59:4890542,Europe/Paris,,OIF, +OIF:SP:59:4890545,1,"La Poste",48.734944,2.324105,0,0,OIF:SA:59:4314815,Europe/Paris,,OIF, +OIF:SP:59:4890546,1,"Mairie de Wissous",48.731385,2.326185,0,0,OIF:SA:59:4314814,Europe/Paris,,OIF, +OIF:SP:59:4890548,1,"Cucheron",48.733704,2.334867,0,0,OIF:SA:59:4314819,Europe/Paris,,OIF, +OIF:SP:59:4890552,1,"Montavas",48.72573,2.316771,0,0,OIF:SA:59:4890552,Europe/Paris,,OIF, +OIF:SP:59:4890554,1,"Vieille Remise",48.716398,2.309956,0,0,OIF:SA:56:11811,Europe/Paris,,OIF, +OIF:SP:59:4890555,1,"Vieille Remise",48.715572,2.309997,0,0,OIF:SA:56:11811,Europe/Paris,,OIF, +OIF:SP:59:4890563,1,"Place de la Libération",48.70281,2.320229,0,0,OIF:SA:59:4890563,Europe/Paris,,OIF, +OIF:SP:59:4890564,1,"Division Leclerc",48.699726,2.31617,0,0,OIF:SA:59:4890564,Europe/Paris,,OIF, +OIF:SP:59:4890565,1,"Division Leclerc",48.699645,2.316537,0,0,OIF:SA:59:4890564,Europe/Paris,,OIF, +OIF:SP:59:4890566,1,"Elisee Reclus",48.696579,2.312559,0,0,OIF:SA:59:4890566,Europe/Paris,,OIF, +OIF:SP:59:4890567,1,"Elisee Reclus",48.69684,2.313021,0,0,OIF:SA:59:4890566,Europe/Paris,,OIF, +OIF:SP:59:4890568,1,"Grand Jardin",48.694485,2.310768,0,0,OIF:SA:59:4890568,Europe/Paris,,OIF, +OIF:SP:59:4890569,1,"Grand Jardin",48.694521,2.310972,0,0,OIF:SA:59:4890568,Europe/Paris,,OIF, +OIF:SP:59:4890570,1,"Saint-Eloi",48.695401,2.307957,0,0,OIF:SA:59:4890570,Europe/Paris,,OIF, +OIF:SP:59:4890571,1,"Saint-Eloi",48.695473,2.307617,0,0,OIF:SA:59:4890570,Europe/Paris,,OIF, +OIF:SP:59:4890572,1,"Chilly-Mazarin RER",48.699589,2.307031,0,0,OIF:SA:8739363,Europe/Paris,,OIF, +OIF:SP:59:4890573,1,"Rue de Chilly",48.699652,2.304723,0,0,OIF:SA:59:4890573,Europe/Paris,,OIF, +OIF:SP:59:4890574,1,"Rue de Chilly",48.698779,2.303325,0,0,OIF:SA:59:4890573,Europe/Paris,,OIF, +OIF:SP:59:4890586,1,"Place Charles Steber",48.697428,2.292816,0,0,OIF:SA:29:497,Europe/Paris,,OIF, +OIF:SP:59:4890587,1,"Chilly-Mazarin RER",48.699697,2.30695,0,0,OIF:SA:8739363,Europe/Paris,,OIF, +OIF:SP:59:4890598,1,"Grange Ory",48.801663,2.324211,0,0,OIF:SA:59:4890598,Europe/Paris,,OIF, +OIF:SP:59:4890603,1,"Vache Noire",48.808637,2.326183,0,0,OIF:SA:59:4889626,Europe/Paris,,OIF, +OIF:SP:59:4890604,1,"Croix d'Arcueil",48.805743,2.32534,0,0,OIF:SA:59:4890604,Europe/Paris,,OIF, +OIF:SP:59:4890607,1,"Marcel Bonnet",48.795739,2.321451,0,0,OIF:SA:59:4890607,Europe/Paris,,OIF, +OIF:SP:59:4890608,1,"Pont Royal - RER",48.793699,2.320622,0,0,OIF:SA:8775868,Europe/Paris,,OIF, +OIF:SP:59:4890609,1,"Cité Jardins",48.789573,2.319127,0,0,OIF:SA:59:4890609,Europe/Paris,,OIF, +OIF:SP:59:4890624,1,"Pascal",48.743023,2.317485,0,0,OIF:SA:59:4890542,Europe/Paris,,OIF, +OIF:SP:59:4890625,1,"Fribouli",48.739887,2.32178,0,0,OIF:SA:59:4890625,Europe/Paris,,OIF, +OIF:SP:59:4890629,1,"Victor Baloche",48.727151,2.323319,0,0,OIF:SA:59:4890629,Europe/Paris,,OIF, +OIF:SP:59:4890643,1,"Place de la Libération.",48.702225,2.320189,0,0,OIF:SA:59:4890563,Europe/Paris,,OIF, +OIF:SP:59:4890687,1,"Montavas",48.72564,2.317124,0,0,OIF:SA:59:4890552,Europe/Paris,,OIF, +OIF:SP:59:4890688,1,"Victor Baloche",48.727349,2.323754,0,0,OIF:SA:59:4890629,Europe/Paris,,OIF, +OIF:SP:59:4890689,1,"Mondétour",48.729371,2.32643,0,0,OIF:SA:59:4890689,Europe/Paris,,OIF, +OIF:SP:59:4890694,1,"Fribouli",48.739627,2.322582,0,0,OIF:SA:59:4890625,Europe/Paris,,OIF, +OIF:SP:59:4890700,1,"Antony RER",48.75599,2.301969,0,0,OIF:SA:8775875,Europe/Paris,,OIF, +OIF:SP:59:4909843,1,"Ferme de Grignon",48.754606,2.394882,0,0,OIF:SA:59:4909843,Europe/Paris,,OIF, +OIF:SP:59:4909845,1,"Stade Mimoun",48.752707,2.398998,0,0,OIF:SA:4:88,Europe/Paris,,OIF, +OIF:SP:59:4909846,1,"Hélène Muller",48.756734,2.397712,0,0,OIF:SA:59:4909846,Europe/Paris,,OIF, +OIF:SP:59:4909847,1,"Hélène Muller",48.756501,2.397643,0,0,OIF:SA:59:4909846,Europe/Paris,,OIF, +OIF:SP:59:4909848,1,"Victor Hugo",48.76068,2.398437,0,0,OIF:SA:59:4909848,Europe/Paris,,OIF, +OIF:SP:59:4909849,1,"Victor Hugo",48.760455,2.398341,0,0,OIF:SA:59:4909848,Europe/Paris,,OIF, +OIF:SP:59:4909851,1,"Panhard - Hugo",48.763692,2.396918,0,0,OIF:SA:59:4378375,Europe/Paris,,OIF, +OIF:SP:59:4909858,1,"La Galaise",48.762465,2.385713,0,0,OIF:SA:59:4909858,Europe/Paris,,OIF, +OIF:SP:59:4996974,1,"Gare de Lyon",48.844107,2.37299,0,0,OIF:SA:8768600,Europe/Paris,,OIF, +OIF:SP:59:4996992,1,"Strasbourg - Magenta",48.873508,2.358718,0,0,OIF:SA:59:4996992,Europe/Paris,,OIF, +OIF:SP:59:4997009,1,"Porte de la Chapelle",48.897036,2.359369,0,0,OIF:SA:59513,Europe/Paris,,OIF, +OIF:SP:59:4997014,1,"République - Magenta",48.869014,2.362449,0,0,OIF:SA:59:4997014,Europe/Paris,,OIF, +OIF:SP:59:5009395,1,"Asnières - Bords de Seine",48.917878,2.31476,0,0,OIF:SA:59:5009395,Europe/Paris,,OIF, +OIF:SP:59:5009396,1,"Les Grésillons RER",48.919262,2.31345,0,0,OIF:SA:8727214,Europe/Paris,,OIF, +OIF:SP:59:5009398,1,"Tour d'Asnières - Laurent Cély",48.917921,2.308828,0,0,OIF:SA:59:4016804,Europe/Paris,,OIF, +OIF:SP:59:5009399,1,"Georges Corète",48.918855,2.305719,0,0,OIF:SA:59:5009399,Europe/Paris,,OIF, +OIF:SP:59:5009400,1,"Lycée Galilée",48.920391,2.303236,0,0,OIF:SA:59:5009400,Europe/Paris,,OIF, +OIF:SP:59:5009401,1,"Barbusse",48.922116,2.299607,0,0,OIF:SA:59:5009401,Europe/Paris,,OIF, +OIF:SP:59:5009402,1,"Debussy - Chandon",48.923544,2.296715,0,0,OIF:SA:59:5009402,Europe/Paris,,OIF, +OIF:SP:59:5009403,1,"Jaurès - Camelinat - Mairie",48.926778,2.29408,0,0,OIF:SA:59:5009403,Europe/Paris,,OIF, +OIF:SP:59:5009404,1,"Couture d'Auxerre",48.924799,2.289363,0,0,OIF:SA:59:5009404,Europe/Paris,,OIF, +OIF:SP:59:5009405,1,"Les Agnettes",48.923099,2.285682,0,0,OIF:SA:59597,Europe/Paris,,OIF, +OIF:SP:59:5009406,1,"Rouveyrol",48.922092,2.283119,0,0,OIF:SA:59:5009406,Europe/Paris,,OIF, +OIF:SP:59:5009407,1,"Abbé Lemire",48.924247,2.27878,0,0,OIF:SA:59:5009407,Europe/Paris,,OIF, +OIF:SP:59:5009410,1,"Henri Robert",48.929394,2.27471,0,0,OIF:SA:59:4677646,Europe/Paris,,OIF, +OIF:SP:59:5009411,1,"Mourinoux",48.932225,2.274816,0,0,OIF:SA:59:4015907,Europe/Paris,,OIF, +OIF:SP:59:5009436,1,"Gare de Colombes",48.924056,2.259415,0,0,OIF:SA:8738108,Europe/Paris,,OIF, +OIF:SP:59:5018152,1,"Mairie du 18ème - Jules Joffrin",48.892563,2.344592,0,0,OIF:SA:59518,Europe/Paris,,OIF, +OIF:SP:59:5018153,1,"Mairie du 18ème - Jules Joffrin",48.892221,2.345424,0,0,OIF:SA:59518,Europe/Paris,,OIF, +OIF:SP:59:5018156,1,"Damrémont - Ordener",48.893624,2.337042,0,0,OIF:SA:59:3926231,Europe/Paris,,OIF, +OIF:SP:59:5018158,1,"Vauvenargues",48.8941,2.331917,0,0,OIF:SA:59:5018158,Europe/Paris,,OIF, +OIF:SP:59:5018159,1,"Vauvenargues",48.893983,2.333157,0,0,OIF:SA:59:5018158,Europe/Paris,,OIF, +OIF:SP:59:5018160,1,"Guy Moquet",48.892904,2.326547,0,0,OIF:SA:59608,Europe/Paris,,OIF, +OIF:SP:59:5018161,1,"Moines - Davy",48.892068,2.322703,0,0,OIF:SA:59:5018161,Europe/Paris,,OIF, +OIF:SP:59:5018162,1,"Moines - Davy",48.892239,2.324353,0,0,OIF:SA:59:5018161,Europe/Paris,,OIF, +OIF:SP:59:5018164,1,"Brochant - Cardinet",48.891205,2.318288,0,0,OIF:SA:59535,Europe/Paris,,OIF, +OIF:SP:59:5018165,1,"Parc Martin Luther King",48.888796,2.315672,0,0,OIF:SA:8738111,Europe/Paris,,OIF, +OIF:SP:59:5018169,1,"Jouffroy d'Abbans - Tocqueville",48.885918,2.309227,0,0,OIF:SA:59:5018169,Europe/Paris,,OIF, +OIF:SP:59:5018170,1,"Jouffroy d'Abbans - Tocqueville",48.886107,2.310235,0,0,OIF:SA:59:5018169,Europe/Paris,,OIF, +OIF:SP:59:5018171,1,"Jouffroy d'Abbans - Malesherbes",48.885001,2.306734,0,0,OIF:SA:59439,Europe/Paris,,OIF, +OIF:SP:59:5018172,1,"Jouffroy d'Abbans - Malesherbes",48.885361,2.307865,0,0,OIF:SA:59439,Europe/Paris,,OIF, +OIF:SP:59:5018173,1,"Jouffroy d'Abbans - Villiers",48.883338,2.303805,0,0,OIF:SA:59439,Europe/Paris,,OIF, +OIF:SP:59:5018174,1,"Jouffroy d'Abbans - Villiers",48.884021,2.305222,0,0,OIF:SA:59439,Europe/Paris,,OIF, +OIF:SP:59:5018175,1,"Wagram - Prony",48.883167,2.30236,0,0,OIF:SA:59:5018175,Europe/Paris,,OIF, +OIF:SP:59:5018176,1,"Wagram - Prony",48.883023,2.302401,0,0,OIF:SA:59:5018175,Europe/Paris,,OIF, +OIF:SP:59:5018177,1,"Wagram - Courcelles",48.881207,2.300291,0,0,OIF:SA:59:3765456,Europe/Paris,,OIF, +OIF:SP:59:5018178,1,"Wagram - Courcelles",48.881081,2.300536,0,0,OIF:SA:59:3765456,Europe/Paris,,OIF, +OIF:SP:59:5018180,1,"Hoche - Saint-Honoré",48.876246,2.30058,0,0,OIF:SA:59:4473106,Europe/Paris,,OIF, +OIF:SP:59:5018181,1,"Charles de Gaulle - Etoile",48.875068,2.29772,0,0,OIF:SA:8775800,Europe/Paris,,OIF, +OIF:SP:59:5018182,1,"Charles de Gaulle - Etoile",48.874807,2.297093,0,0,OIF:SA:8775800,Europe/Paris,,OIF, +OIF:SP:59:5018184,1,"Ternes",48.879085,2.299066,0,0,OIF:SA:59416,Europe/Paris,,OIF, +OIF:SP:59:5018185,1,"Guy Moquet",48.893255,2.329,0,0,OIF:SA:59608,Europe/Paris,,OIF, +OIF:SP:59:5018186,1,"Opéra",48.871443,2.332614,0,0,OIF:SA:59209,Europe/Paris,,OIF, +OIF:SP:59:5018196,1,"Bucarest",48.880987,2.32441,0,0,OIF:SA:59:3749920,Europe/Paris,,OIF, +OIF:SP:59:5018197,1,"Boulevard des Batignolles",48.88318,2.323932,0,0,OIF:SA:59:5018197,Europe/Paris,,OIF, +OIF:SP:59:5018199,1,"Mairie du 17ème",48.882415,2.319967,0,0,OIF:SA:59418,Europe/Paris,,OIF, +OIF:SP:59:5018201,1,"Square des Batignolles",48.887457,2.317676,0,0,OIF:SA:59:5018201,Europe/Paris,,OIF, +OIF:SP:59:5018202,1,"Square des Batignolles",48.885686,2.316614,0,0,OIF:SA:59:5018201,Europe/Paris,,OIF, +OIF:SP:59:5018204,1,"Parc Martin Luther King",48.888274,2.31604,0,0,OIF:SA:8738111,Europe/Paris,,OIF, +OIF:SP:59:5018207,1,"La Jonquière",48.894467,2.320876,0,0,OIF:SA:59:5018207,Europe/Paris,,OIF, +OIF:SP:59:5018208,1,"La Jonquière",48.89409,2.320413,0,0,OIF:SA:59:5018207,Europe/Paris,,OIF, +OIF:SP:59:5018209,1,"Navier",48.895816,2.322675,0,0,OIF:SA:59:4016346,Europe/Paris,,OIF, +OIF:SP:59:5018211,1,"Porte Pouchet",48.896813,2.322579,0,0,OIF:SA:59:3750019,Europe/Paris,,OIF, +OIF:SP:59:5018213,1,"Bois le Prêtre",48.898997,2.321447,0,0,OIF:SA:59:3749990,Europe/Paris,,OIF, +OIF:SP:59:5018214,1,"Floréal",48.899931,2.318585,0,0,OIF:SA:59:5018214,Europe/Paris,,OIF, +OIF:SP:59:5018215,1,"Général Leclerc - Victor Hugo",48.900596,2.31673,0,0,OIF:SA:59:5018215,Europe/Paris,,OIF, +OIF:SP:59:5018216,1,"Clichy - Victor Hugo",48.901405,2.317044,0,0,OIF:SA:59:5018216,Europe/Paris,,OIF, +OIF:SP:59:5018218,1,"Victor Hugo - Morel",48.901809,2.317739,0,0,OIF:SA:59:5018218,Europe/Paris,,OIF, +OIF:SP:59:5018219,1,"Floréal",48.899922,2.318925,0,0,OIF:SA:59:5018219,Europe/Paris,,OIF, +OIF:SP:59:5018220,1,"La Condamine",48.884698,2.319258,0,0,OIF:SA:59418,Europe/Paris,,OIF, +OIF:SP:59:5018221,1,"Boulevard des Batignolles",48.882173,2.323592,0,0,OIF:SA:59418,Europe/Paris,,OIF, +OIF:SP:59:5018330,1,"Gare de l'Est",48.875935,2.358297,0,0,OIF:SA:8711300,Europe/Paris,,OIF, +OIF:SP:59:5018331,1,"Gare de l'Est",48.87562,2.357875,0,0,OIF:SA:8711300,Europe/Paris,,OIF, +OIF:SP:59:5018332,1,"Magenta - Saint-Martin",48.874443,2.358528,0,0,OIF:SA:59:5018332,Europe/Paris,,OIF, +OIF:SP:59:5018339,1,"Cité - Parvis Notre-Dame",48.853764,2.347093,0,0,OIF:SA:8754731,Europe/Paris,,OIF, +OIF:SP:59:5018340,1,"Petit Pont",48.852416,2.34633,0,0,OIF:SA:8754731,Europe/Paris,,OIF, +OIF:SP:59:5018357,1,"Centre Commercial Italie 2",48.830548,2.355801,0,0,OIF:SA:59275,Europe/Paris,,OIF, +OIF:SP:59:5018380,1,"Fort du Kremlin-Bicêtre",48.805096,2.346471,0,0,OIF:SA:59:5018380,Europe/Paris,,OIF, +OIF:SP:59:5018387,1,"Les Halles - Centre Georges Pompidou",48.860702,2.349587,0,0,OIF:SA:59:5018387,Europe/Paris,,OIF, +OIF:SP:59:5018388,1,"Turbigo - Etienne Marcel",48.864,2.351427,0,0,OIF:SA:59:5018388,Europe/Paris,,OIF, +OIF:SP:59:5020420,1,"Georges Corète",48.918002,2.306537,0,0,OIF:SA:59:5009399,Europe/Paris,,OIF, +OIF:SP:59:5020422,1,"Lycée Galilée",48.920257,2.303236,0,0,OIF:SA:59:5009400,Europe/Paris,,OIF, +OIF:SP:59:5020424,1,"Barbusse",48.921676,2.300207,0,0,OIF:SA:59:5009401,Europe/Paris,,OIF, +OIF:SP:59:5020426,1,"Debussy - Chandon",48.923023,2.297465,0,0,OIF:SA:59:5009402,Europe/Paris,,OIF, +OIF:SP:59:5020429,1,"Couture d'Auxerre",48.924827,2.29014,0,0,OIF:SA:59:5009404,Europe/Paris,,OIF, +OIF:SP:59:5020431,1,"Les Agnettes",48.922938,2.285641,0,0,OIF:SA:59597,Europe/Paris,,OIF, +OIF:SP:59:5020434,1,"Abbé Lemire",48.925784,2.280347,0,0,OIF:SA:59:5009407,Europe/Paris,,OIF, +OIF:SP:59:5020440,1,"Louise Michel",48.932457,2.271201,0,0,OIF:SA:59:5020440,Europe/Paris,,OIF, +OIF:SP:59:5020441,1,"Louise Michel",48.932215,2.27251,0,0,OIF:SA:59:5020440,Europe/Paris,,OIF, +OIF:SP:59:5020442,1,"Solferino",48.93187,2.26715,0,0,OIF:SA:59:5020442,Europe/Paris,,OIF, +OIF:SP:59:5020443,1,"Solferino",48.931745,2.267573,0,0,OIF:SA:59:5020442,Europe/Paris,,OIF, +OIF:SP:59:5020444,1,"Mairie de Quartier - C.A.F.",48.931016,2.266974,0,0,OIF:SA:59:5020444,Europe/Paris,,OIF, +OIF:SP:59:5020445,1,"Mairie de Quartier - C.A.F.",48.92984,2.267985,0,0,OIF:SA:59:5020444,Europe/Paris,,OIF, +OIF:SP:59:5020446,1,"Marche Marceau",48.929452,2.265381,0,0,OIF:SA:59:5020446,Europe/Paris,,OIF, +OIF:SP:59:5020447,1,"Marche Marceau",48.929344,2.265599,0,0,OIF:SA:59:5020446,Europe/Paris,,OIF, +OIF:SP:59:5020448,1,"Gare du Stade",48.931488,2.259976,0,0,OIF:SA:8738109,Europe/Paris,,OIF, +OIF:SP:59:5020449,1,"Gare du Stade",48.930366,2.261192,0,0,OIF:SA:8738109,Europe/Paris,,OIF, +OIF:SP:59:5020450,1,"Collège Jean-Baptiste Clément",48.931451,2.258203,0,0,OIF:SA:59:5020450,Europe/Paris,,OIF, +OIF:SP:59:5020451,1,"Président Kennedy",48.928352,2.259435,0,0,OIF:SA:59:4015914,Europe/Paris,,OIF, +OIF:SP:59:5020457,1,"Église de Colombes",48.922963,2.251356,0,0,OIF:SA:59:4023300,Europe/Paris,,OIF, +OIF:SP:59:5020458,1,"Général Leclerc",48.924267,2.2528,0,0,OIF:SA:59:5020458,Europe/Paris,,OIF, +OIF:SP:59:5020459,1,"Fraternité",48.925921,2.253097,0,0,OIF:SA:59:5020459,Europe/Paris,,OIF, +OIF:SP:59:5020460,1,"Besson-Gare de Colombes",48.925655,2.25828,0,0,OIF:SA:8738108,Europe/Paris,,OIF, +OIF:SP:59:5020461,1,"4 Routes - Zola",48.927184,2.27624,0,0,OIF:SA:59:5020461,Europe/Paris,,OIF, +OIF:SP:59:5020462,1,"Mairie de Gennevilliers",48.924873,2.294382,0,0,OIF:SA:59:4015887,Europe/Paris,,OIF, +OIF:SP:59:5020464,1,"Olympe de Gouges",48.918157,2.318414,0,0,OIF:SA:59:5020464,Europe/Paris,,OIF, +OIF:SP:59:5020466,1,"Jean Wiener",48.91498,2.248547,0,0,OIF:SA:59:5020466,Europe/Paris,,OIF, +OIF:SP:59:5020467,1,"Félix Faure",48.914822,2.25377,0,0,OIF:SA:59:4023295,Europe/Paris,,OIF, +OIF:SP:59:5020468,1,"Les Vallées",48.915014,2.257805,0,0,OIF:SA:8738630,Europe/Paris,,OIF, +OIF:SP:59:5020469,1,"Monts Clairs",48.91771,2.258579,0,0,OIF:SA:59:5020469,Europe/Paris,,OIF, +OIF:SP:59:5020470,1,"Litolff",48.917344,2.261306,0,0,OIF:SA:59:5020470,Europe/Paris,,OIF, +OIF:SP:59:5020471,1,"Maréchal Joffre",48.919761,2.261207,0,0,OIF:SA:59:5020471,Europe/Paris,,OIF, +OIF:SP:59:5020472,1,"Julien Galle",48.923085,2.25883,0,0,OIF:SA:8738108,Europe/Paris,,OIF, +OIF:SP:59:5020476,1,"Jacques Eleonor Ferme",48.921505,2.248277,0,0,OIF:SA:59:4023393,Europe/Paris,,OIF, +OIF:SP:59:5020477,1,"Ostyn",48.918302,2.244464,0,0,OIF:SA:59:4023391,Europe/Paris,,OIF, +OIF:SP:59:5020478,1,"Square Médéric",48.915305,2.238456,0,0,OIF:SA:59:5020478,Europe/Paris,,OIF, +OIF:SP:59:5020479,1,"Rue Moslard",48.913373,2.239005,0,0,OIF:SA:59:5020479,Europe/Paris,,OIF, +OIF:SP:59:5020480,1,"Général Crémer",48.913177,2.240996,0,0,OIF:SA:59:5020480,Europe/Paris,,OIF, +OIF:SP:59:5020481,1,"Rue de l'Industrie.",48.914151,2.24578,0,0,OIF:SA:59:4023390,Europe/Paris,,OIF, +OIF:SP:59:5020483,1,"Église de Colombes",48.922945,2.251125,0,0,OIF:SA:59:4023300,Europe/Paris,,OIF, +OIF:SP:59:5020484,1,"Cimetière de Colombes",48.922753,2.247061,0,0,OIF:SA:59:4023634,Europe/Paris,,OIF, +OIF:SP:59:5020485,1,"Cimetière de Colombes",48.9226,2.246979,0,0,OIF:SA:59:4023634,Europe/Paris,,OIF, +OIF:SP:59:5020486,1,"Égalité",48.923332,2.240977,0,0,OIF:SA:59:4023632,Europe/Paris,,OIF, +OIF:SP:59:5020487,1,"Égalité",48.923566,2.240636,0,0,OIF:SA:59:4023632,Europe/Paris,,OIF, +OIF:SP:59:5020488,1,"Hôpital",48.925219,2.240469,0,0,OIF:SA:59:5020488,Europe/Paris,,OIF, +OIF:SP:59:5020489,1,"Hôpital",48.925489,2.240673,0,0,OIF:SA:59:5020488,Europe/Paris,,OIF, +OIF:SP:59:5020496,1,"Parc Pierre Lagravère",48.930298,2.241796,0,0,OIF:SA:59718,Europe/Paris,,OIF, +OIF:SP:59:5020497,1,"Parc Pierre Lagravère",48.930388,2.242219,0,0,OIF:SA:59718,Europe/Paris,,OIF, +OIF:SP:59:5020498,1,"Tennis",48.927427,2.236319,0,0,OIF:SA:59:5020498,Europe/Paris,,OIF, +OIF:SP:59:5020499,1,"Tennis",48.927337,2.236483,0,0,OIF:SA:59:5020498,Europe/Paris,,OIF, +OIF:SP:59:5020500,1,"Piscine - Patinoire",48.926409,2.234234,0,0,OIF:SA:59:5020500,Europe/Paris,,OIF, +OIF:SP:59:5027603,1,"Fleming",48.932111,2.280285,0,0,OIF:SA:59:4015905,Europe/Paris,,OIF, +OIF:SP:59:5067187,1,"Europe Sud",48.779384,2.208209,0,0,OIF:SA:24:14922,Europe/Paris,,OIF, +OIF:SP:59:5067249,1,"Liaison Inovel Sud",48.778277,2.215066,0,0,OIF:SA:59:5067249,Europe/Paris,,OIF, +OIF:SP:59:5067271,1,"Liaison Inovel Sud",48.778915,2.214765,0,0,OIF:SA:59:5067249,Europe/Paris,,OIF, +OIF:SP:59:5067287,1,"Vélizy 2",48.784312,2.219336,0,0,OIF:SA:59870,Europe/Paris,,OIF, +OIF:SP:59:5067300,1,"Vélizy 2",48.785211,2.219076,0,0,OIF:SA:59870,Europe/Paris,,OIF, +OIF:SP:59:5067322,1,"De Lattre de Tassigny",48.785621,2.224379,0,0,OIF:SA:57:8460,Europe/Paris,,OIF, +OIF:SP:59:5067329,1,"Roseraie",48.786925,2.225424,0,0,OIF:SA:59:5067329,Europe/Paris,,OIF, +OIF:SP:59:5067344,1,"Roseraie",48.787068,2.225192,0,0,OIF:SA:59:5067329,Europe/Paris,,OIF, +OIF:SP:59:5067364,1,"Église de Meudon-la-Forêt",48.787962,2.228999,0,0,OIF:SA:59:5067364,Europe/Paris,,OIF, +OIF:SP:59:5067372,1,"Église de Meudon-la-Forêt",48.788069,2.228659,0,0,OIF:SA:59:5067364,Europe/Paris,,OIF, +OIF:SP:59:5067384,1,"Georges Pompidou",48.785749,2.237382,0,0,OIF:SA:59864,Europe/Paris,,OIF, +OIF:SP:59:5067403,1,"Georges Pompidou",48.786954,2.237516,0,0,OIF:SA:59864,Europe/Paris,,OIF, +OIF:SP:59:5067418,1,"Île de France",48.785518,2.24111,0,0,OIF:SA:59864,Europe/Paris,,OIF, +OIF:SP:59:5067432,1,"Cimetière Intercommunal",48.786879,2.245949,0,0,OIF:SA:59:3681977,Europe/Paris,,OIF, +OIF:SP:59:5067453,1,"Moulin de la Tour",48.785253,2.258602,0,0,OIF:SA:59:5067453,Europe/Paris,,OIF, +OIF:SP:59:5067454,1,"Moulin de la Tour",48.785136,2.258847,0,0,OIF:SA:59:5067453,Europe/Paris,,OIF, +OIF:SP:59:5067455,1,"Daniel de Foe",48.781109,2.258757,0,0,OIF:SA:59:5067455,Europe/Paris,,OIF, +OIF:SP:59:5067456,1,"Daniel de Foe",48.780678,2.258949,0,0,OIF:SA:59:5067455,Europe/Paris,,OIF, +OIF:SP:59:5067466,1,"Hôpital Marie Lannelongue",48.783204,2.274232,0,0,OIF:SA:59:5067466,Europe/Paris,,OIF, +OIF:SP:59:5067469,1,"Carrefour des Mouillebœufs",48.783451,2.282964,0,0,OIF:SA:59:5067469,Europe/Paris,,OIF, +OIF:SP:59:5067470,1,"Carrefour des Mouillebœufs",48.783656,2.281236,0,0,OIF:SA:59:5067469,Europe/Paris,,OIF, +OIF:SP:59:5067471,1,"Augustin Claude",48.783327,2.288636,0,0,OIF:SA:59:5067471,Europe/Paris,,OIF, +OIF:SP:59:5067472,1,"Augustin Claude",48.783624,2.289642,0,0,OIF:SA:59:5067471,Europe/Paris,,OIF, +OIF:SP:59:5067473,1,"Avenue Lombart",48.784246,2.294606,0,0,OIF:SA:59:5067473,Europe/Paris,,OIF, +OIF:SP:59:5067475,1,"Les Blagis",48.785193,2.303691,0,0,OIF:SA:59:5067475,Europe/Paris,,OIF, +OIF:SP:59:5067476,1,"Clemenceau",48.784835,2.308587,0,0,OIF:SA:59:5067476,Europe/Paris,,OIF, +OIF:SP:59:5067480,1,"Bourg-la-Reine RER",48.780045,2.313105,0,0,OIF:SA:8775869,Europe/Paris,,OIF, +OIF:SP:59:5067482,1,"Clemenceau",48.784987,2.308601,0,0,OIF:SA:59:5067482,Europe/Paris,,OIF, +OIF:SP:59:5067486,1,"Île de France",48.78532,2.239763,0,0,OIF:SA:59864,Europe/Paris,,OIF, +OIF:SP:59:5067488,1,"Centre Commercial de Vélizy-Villacoublay",48.782155,2.218525,0,0,OIF:SA:59870,Europe/Paris,,OIF, +OIF:SP:59:5067571,1,"Issy - Val de Seine RER",48.829665,2.264375,0,0,OIF:SA:8739330,Europe/Paris,,OIF, +OIF:SP:59:5067575,1,"Rosier Rouge",48.822583,2.282106,0,0,OIF:SA:59:5067575,Europe/Paris,,OIF, +OIF:SP:59:5067576,1,"Rosier Rouge",48.822664,2.282392,0,0,OIF:SA:59:5067575,Europe/Paris,,OIF, +OIF:SP:59:5067578,1,"Jules Guesde",48.819805,2.279455,0,0,OIF:SA:59:4009228,Europe/Paris,,OIF, +OIF:SP:59:5067579,1,"Gare de Clamart",48.814337,2.272929,0,0,OIF:SA:8739156,Europe/Paris,,OIF, +OIF:SP:59:5067583,1,"Félix Faure",48.805976,2.286329,0,0,OIF:SA:59:5067583,Europe/Paris,,OIF, +OIF:SP:59:5067591,1,"Division Leclerc - Fosse Bazin",48.79317,2.272316,0,0,OIF:SA:59:3909058,Europe/Paris,,OIF, +OIF:SP:59:5067592,1,"Stade du Panorama",48.791068,2.273923,0,0,OIF:SA:59:3909028,Europe/Paris,,OIF, +OIF:SP:59:5067595,1,"Léonie Laporte",48.792111,2.275555,0,0,OIF:SA:59:3909099,Europe/Paris,,OIF, +OIF:SP:59:5067597,1,"Tennis - Général Leclerc",48.791583,2.278915,0,0,OIF:SA:59:3909100,Europe/Paris,,OIF, +OIF:SP:59:5067598,1,"Jacquemin",48.79286,2.280723,0,0,OIF:SA:59:5067598,Europe/Paris,,OIF, +OIF:SP:59:5067599,1,"Jacquemin",48.792941,2.280369,0,0,OIF:SA:59:5067598,Europe/Paris,,OIF, +OIF:SP:59:5067601,1,"André Salel",48.793607,2.283946,0,0,OIF:SA:59:3909025,Europe/Paris,,OIF, +OIF:SP:59:5067604,1,"Château Sainte-Barbe",48.790402,2.291513,0,0,OIF:SA:59:5067604,Europe/Paris,,OIF, +OIF:SP:59:5067609,1,"Léon Blum",48.784616,2.29772,0,0,OIF:SA:59:5067609,Europe/Paris,,OIF, +OIF:SP:59:5067613,1,"Les Blagis",48.785363,2.302398,0,0,OIF:SA:59:3909015,Europe/Paris,,OIF, +OIF:SP:59:5067614,1,"Léon Blum",48.784714,2.296945,0,0,OIF:SA:59:5067614,Europe/Paris,,OIF, +OIF:SP:59:5067615,1,"Mairie de Fontenay-aux-Roses",48.791541,2.286751,0,0,OIF:SA:59:5067615,Europe/Paris,,OIF, +OIF:SP:59:5067618,1,"Hébert",48.811409,2.276444,0,0,OIF:SA:59:5067618,Europe/Paris,,OIF, +OIF:SP:59:5081719,1,"Porte de Clichy - Métro",48.895967,2.31113,0,0,OIF:SA:8711127,Europe/Paris,,OIF, +OIF:SP:59:5081721,1,"Victor Hugo - Jean Jaurès",48.897521,2.310816,0,0,OIF:SA:59:4758995,Europe/Paris,,OIF, +OIF:SP:59:5081723,1,"Curton",48.898636,2.312587,0,0,OIF:SA:59:4758994,Europe/Paris,,OIF, +OIF:SP:59:5081725,1,"Général Leclerc - Victor Hugo",48.901207,2.315531,0,0,OIF:SA:59:5018215,Europe/Paris,,OIF, +OIF:SP:59:5081726,1,"Général Leclerc - Victor Hugo",48.900704,2.315531,0,0,OIF:SA:59:5018215,Europe/Paris,,OIF, +OIF:SP:59:5081727,1,"République - François Mitterrand",48.903633,2.313089,0,0,OIF:SA:59:4016305,Europe/Paris,,OIF, +OIF:SP:59:5081729,1,"Villeneuve",48.905799,2.313061,0,0,OIF:SA:59:5081729,Europe/Paris,,OIF, +OIF:SP:59:5081730,1,"Villeneuve",48.905826,2.312788,0,0,OIF:SA:59:5081729,Europe/Paris,,OIF, +OIF:SP:59:5081733,1,"Quai de Clichy",48.911919,2.31194,0,0,OIF:SA:59:5081733,Europe/Paris,,OIF, +OIF:SP:59:5081734,1,"Quai de Clichy",48.911721,2.311749,0,0,OIF:SA:59:5081733,Europe/Paris,,OIF, +OIF:SP:59:5081735,1,"Pierre Boudou",48.916978,2.308801,0,0,OIF:SA:59:5081735,Europe/Paris,,OIF, +OIF:SP:59:5081736,1,"Pierre Boudou",48.916429,2.307847,0,0,OIF:SA:59:5081735,Europe/Paris,,OIF, +OIF:SP:59:5081737,1,"Grésillons - Laurent Cély",48.918281,2.307901,0,0,OIF:SA:59:5081737,Europe/Paris,,OIF, +OIF:SP:59:5081738,1,"Grésillons - Laurent Cély",48.91811,2.307096,0,0,OIF:SA:59:5081737,Europe/Paris,,OIF, +OIF:SP:59:5081739,1,"Paul Vaillant Couturier",48.922576,2.306057,0,0,OIF:SA:59:5081739,Europe/Paris,,OIF, +OIF:SP:59:5081740,1,"Paul Vaillant Couturier",48.921264,2.305922,0,0,OIF:SA:59:5081739,Europe/Paris,,OIF, +OIF:SP:59:5081741,1,"Parc des Sévines",48.927617,2.30349,0,0,OIF:SA:59:5081741,Europe/Paris,,OIF, +OIF:SP:59:5081742,1,"Parc des Sévines",48.927329,2.302877,0,0,OIF:SA:59:5081741,Europe/Paris,,OIF, +OIF:SP:59:5081744,1,"Moulin de Cage",48.930447,2.301674,0,0,OIF:SA:59699,Europe/Paris,,OIF, +OIF:SP:59:5081745,1,"Rond-Point Pierre Timbaud",48.933728,2.302954,0,0,OIF:SA:59699,Europe/Paris,,OIF, +OIF:SP:59:5081746,1,"Rond-Point Pierre Timbaud",48.933809,2.302518,0,0,OIF:SA:59699,Europe/Paris,,OIF, +OIF:SP:59:5081751,1,"Champs Fourgons",48.943173,2.303357,0,0,OIF:SA:59:5081751,Europe/Paris,,OIF, +OIF:SP:59:5081754,1,"Dequevauvilliers",48.945627,2.304011,0,0,OIF:SA:59:5081754,Europe/Paris,,OIF, +OIF:SP:59:5081763,1,"Cygne d'Enghien",48.961459,2.294406,0,0,OIF:SA:8798657,Europe/Paris,,OIF, +OIF:SP:59:5081764,1,"Cygne d'Enghien",48.961477,2.294843,0,0,OIF:SA:8798657,Europe/Paris,,OIF, +OIF:SP:59:5081765,1,"Gros Buisson",48.96108,2.290954,0,0,OIF:SA:59:5081765,Europe/Paris,,OIF, +OIF:SP:59:5081766,1,"Gros Buisson",48.961142,2.290107,0,0,OIF:SA:59:5081765,Europe/Paris,,OIF, +OIF:SP:59:5081767,1,"Saint-Gratien - RER",48.962902,2.285834,0,0,OIF:SA:8727617,Europe/Paris,,OIF, +OIF:SP:59:5081768,1,"Saint-Gratien - RER",48.962848,2.285329,0,0,OIF:SA:8727617,Europe/Paris,,OIF, +OIF:SP:59:5081769,1,"Berthie Albrecht",48.965912,2.28377,0,0,OIF:SA:8727617,Europe/Paris,,OIF, +OIF:SP:59:5081770,1,"Berthie Albrecht",48.966091,2.283524,0,0,OIF:SA:8727617,Europe/Paris,,OIF, +OIF:SP:59:5081771,1,"Forum",48.969399,2.286032,0,0,OIF:SA:59:5081771,Europe/Paris,,OIF, +OIF:SP:59:5081772,1,"Forum",48.968536,2.284982,0,0,OIF:SA:59:5081771,Europe/Paris,,OIF, +OIF:SP:59:5081773,1,"Cité Jean Moulin",48.972003,2.279559,0,0,OIF:SA:59:5081773,Europe/Paris,,OIF, +OIF:SP:59:5081774,1,"Cité Jean Moulin",48.971912,2.278768,0,0,OIF:SA:59:5081773,Europe/Paris,,OIF, +OIF:SP:59:5081775,1,"Stade Michel Hidalgo",48.975055,2.273372,0,0,OIF:SA:59:5081775,Europe/Paris,,OIF, +OIF:SP:59:5081776,1,"Stade Michel Hidalgo",48.97421,2.273769,0,0,OIF:SA:59:5081775,Europe/Paris,,OIF, +OIF:SP:59:5081777,1,"Rue de Soisy",48.977867,2.271389,0,0,OIF:SA:51:508,Europe/Paris,,OIF, +OIF:SP:59:5081778,1,"Rue de Soisy",48.97766,2.271212,0,0,OIF:SA:51:508,Europe/Paris,,OIF, +OIF:SP:59:5081779,1,"Ermont-Eaubonne RER",48.980131,2.270976,0,0,OIF:SA:8727605,Europe/Paris,,OIF, +OIF:SP:59:5091939,1,"Issy - Val de Seine",48.829548,2.264225,0,0,OIF:SA:59134,Europe/Paris,,OIF, +OIF:SP:59:5091945,1,"Mairie d'Issy",48.825123,2.273678,0,0,OIF:SA:59522,Europe/Paris,,OIF, +OIF:SP:59:5091946,1,"Mairie d'Issy",48.824331,2.272726,0,0,OIF:SA:59522,Europe/Paris,,OIF, +OIF:SP:59:5091947,1,"Musée",48.821195,2.273315,0,0,OIF:SA:59522,Europe/Paris,,OIF, +OIF:SP:59:5091948,1,"Parc Henri Barbusse",48.819816,2.266906,0,0,OIF:SA:59:5091948,Europe/Paris,,OIF, +OIF:SP:59:5091949,1,"Parc Henri Barbusse",48.819591,2.266743,0,0,OIF:SA:59:5091948,Europe/Paris,,OIF, +OIF:SP:59:5091950,1,"Défense - Égalité",48.819266,2.263954,0,0,OIF:SA:59:5091950,Europe/Paris,,OIF, +OIF:SP:59:5091951,1,"Défense - Égalité",48.818969,2.263695,0,0,OIF:SA:59:5091950,Europe/Paris,,OIF, +OIF:SP:59:5091952,1,"Épinettes",48.817251,2.26099,0,0,OIF:SA:59:5091952,Europe/Paris,,OIF, +OIF:SP:59:5091953,1,"Épinettes",48.817089,2.261167,0,0,OIF:SA:59:5091952,Europe/Paris,,OIF, +OIF:SP:59:5091956,1,"Marquis",48.805952,2.258965,0,0,OIF:SA:59:4458758,Europe/Paris,,OIF, +OIF:SP:59:5091957,1,"Marquis",48.805017,2.25932,0,0,OIF:SA:59:4458758,Europe/Paris,,OIF, +OIF:SP:59:5091958,1,"Place du Garde",48.803344,2.25671,0,0,OIF:SA:24:15051,Europe/Paris,,OIF, +OIF:SP:59:5091959,1,"Place du Garde",48.803524,2.257554,0,0,OIF:SA:24:15051,Europe/Paris,,OIF, +OIF:SP:59:5091960,1,"Jardin Parisien - Hôpital Antoine Beclere",48.790273,2.252459,0,0,OIF:SA:59:3909068,Europe/Paris,,OIF, +OIF:SP:59:5091961,1,"Jardin Parisien - Hôpital Antoine Beclere",48.790767,2.252798,0,0,OIF:SA:59:3909068,Europe/Paris,,OIF, +OIF:SP:59:5091969,1,"Pave Blanc",48.779856,2.240617,0,0,OIF:SA:59:5091969,Europe/Paris,,OIF, +OIF:SP:59:5091970,1,"Réaumur",48.777751,2.23956,0,0,OIF:SA:59:5091970,Europe/Paris,,OIF, +OIF:SP:59:5091972,1,"La Boursidière",48.774103,2.240342,0,0,OIF:SA:59:3909812,Europe/Paris,,OIF, +OIF:SP:59:5091973,1,"Réaumur",48.777806,2.239737,0,0,OIF:SA:59:5091973,Europe/Paris,,OIF, +OIF:SP:59:5091974,1,"Pave Blanc",48.779532,2.240209,0,0,OIF:SA:59862,Europe/Paris,,OIF, +OIF:SP:59:5091975,1,"Newton - Galilée",48.778772,2.246127,0,0,OIF:SA:59:5091975,Europe/Paris,,OIF, +OIF:SP:59:5091977,1,"Robespierre",48.8214,2.271287,0,0,OIF:SA:59:5091977,Europe/Paris,,OIF, +OIF:SP:59:5091978,1,"André Chénier",48.822407,2.271258,0,0,OIF:SA:59:5091978,Europe/Paris,,OIF, +OIF:SP:59:5091979,1,"Gallieni - Camille Desmoulins",48.830969,2.266224,0,0,OIF:SA:59:5091979,Europe/Paris,,OIF, +OIF:SP:59:5091985,1,"Mairie de Saint-Ouen",48.912317,2.333797,0,0,OIF:SA:59545,Europe/Paris,,OIF, +OIF:SP:59:5091992,1,"Boulevard Marcel Paul",48.919542,2.328696,0,0,OIF:SA:59:4016556,Europe/Paris,,OIF, +OIF:SP:59:5091993,1,"Boulevard Marcel Paul",48.91965,2.328669,0,0,OIF:SA:59:4016556,Europe/Paris,,OIF, +OIF:SP:59:5091994,1,"Centre Commercial de l'Île-Saint-Denis",48.922041,2.331287,0,0,OIF:SA:59:5091994,Europe/Paris,,OIF, +OIF:SP:59:5091995,1,"Centre Commercial de l'Île-Saint-Denis",48.922023,2.331069,0,0,OIF:SA:59:5091994,Europe/Paris,,OIF, +OIF:SP:59:5091996,1,"Quai du Chatelier N0 9",48.92435,2.333455,0,0,OIF:SA:59:5091996,Europe/Paris,,OIF, +OIF:SP:59:5091997,1,"Quai du Chatelier N0 9",48.924386,2.333291,0,0,OIF:SA:59:5091996,Europe/Paris,,OIF, +OIF:SP:59:5091998,1,"Quai du Chatelier N0 15",48.928377,2.337233,0,0,OIF:SA:59:5091998,Europe/Paris,,OIF, +OIF:SP:59:5091999,1,"Quai du Chatelier N0 15",48.928421,2.337096,0,0,OIF:SA:59:5091998,Europe/Paris,,OIF, +OIF:SP:59:5092000,1,"Rue de l'Ortebout",48.931926,2.340274,0,0,OIF:SA:59:5092000,Europe/Paris,,OIF, +OIF:SP:59:5092001,1,"Rue de l'Ortebout",48.93189,2.34007,0,0,OIF:SA:59:5092000,Europe/Paris,,OIF, +OIF:SP:59:5092002,1,"Mairie de l'Île Saint-Denis",48.935305,2.341025,0,0,OIF:SA:59687,Europe/Paris,,OIF, +OIF:SP:59:5092003,1,"Mairie de l'Île Saint-Denis",48.935117,2.340888,0,0,OIF:SA:59687,Europe/Paris,,OIF, +OIF:SP:59:5092004,1,"Rene et Isa Lefèvre",48.938891,2.339866,0,0,OIF:SA:59:5092004,Europe/Paris,,OIF, +OIF:SP:59:5092005,1,"Rene et Isa Lefèvre",48.938118,2.339988,0,0,OIF:SA:59:5092004,Europe/Paris,,OIF, +OIF:SP:59:5092006,1,"Rue Berthelot",48.94218,2.337683,0,0,OIF:SA:59:5092006,Europe/Paris,,OIF, +OIF:SP:59:5092007,1,"Rue Berthelot",48.942117,2.33756,0,0,OIF:SA:59:5092006,Europe/Paris,,OIF, +OIF:SP:59:5092008,1,"Cimetière de l'Île-Saint-Denis",48.943852,2.335555,0,0,OIF:SA:59:5092008,Europe/Paris,,OIF, +OIF:SP:59:5092009,1,"Cimetière de l'Île-Saint-Denis",48.943331,2.336169,0,0,OIF:SA:59:5092008,Europe/Paris,,OIF, +OIF:SP:59:5092010,1,"Collège Sisley",48.946296,2.327573,0,0,OIF:SA:59:5092010,Europe/Paris,,OIF, +OIF:SP:59:5092012,1,"Parc de l'Île Saint-Denis",48.949673,2.312945,0,0,OIF:SA:59:5092012,Europe/Paris,,OIF, +OIF:SP:59:5092013,1,"Parc de l'Île Saint-Denis",48.949565,2.312877,0,0,OIF:SA:59:5092012,Europe/Paris,,OIF, +OIF:SP:59:5092014,1,"Gilbert Bonnemaison",48.955163,2.307307,0,0,OIF:SA:59912,Europe/Paris,,OIF, +OIF:SP:59:5092015,1,"Gilbert Bonnemaison",48.954812,2.307321,0,0,OIF:SA:59912,Europe/Paris,,OIF, +OIF:SP:59:5092016,1,"Épinay-sur-Seine - Gare",48.95499,2.301289,0,0,OIF:SA:8727114,Europe/Paris,,OIF, +OIF:SP:59:5092017,1,"Épinay-sur-Seine - Gare",48.954334,2.301617,0,0,OIF:SA:8727114,Europe/Paris,,OIF, +OIF:SP:59:5121003,1,"Pont de Sevres",48.829243,2.22958,0,0,OIF:SA:59621,Europe/Paris,,OIF, +OIF:SP:59:5121004,1,"Aérodrome Morane",48.785977,2.221128,0,0,OIF:SA:59:5121004,Europe/Paris,,OIF, +OIF:SP:59:5121005,1,"Vélizy 2",48.785588,2.218694,0,0,OIF:SA:59870,Europe/Paris,,OIF, +OIF:SP:59:5121006,1,"Dewoitine",48.784757,2.214153,0,0,OIF:SA:59872,Europe/Paris,,OIF, +OIF:SP:59:5121007,1,"Dassault",48.785984,2.21075,0,0,OIF:SA:59:5121007,Europe/Paris,,OIF, +OIF:SP:59:5121008,1,"Le Bois",48.78644,2.208042,0,0,OIF:SA:59:5121008,Europe/Paris,,OIF, +OIF:SP:59:5121011,1,"Vélizy 2",48.784824,2.218641,0,0,OIF:SA:59870,Europe/Paris,,OIF, +OIF:SP:59:5121012,1,"La Cheminée",48.783993,2.20613,0,0,OIF:SA:59:5121012,Europe/Paris,,OIF, +OIF:SP:59:5121013,1,"Le Bois",48.786323,2.208246,0,0,OIF:SA:59:5121008,Europe/Paris,,OIF, +OIF:SP:59:5121014,1,"Dassault",48.785742,2.211036,0,0,OIF:SA:59:5121007,Europe/Paris,,OIF, +OIF:SP:59:5121015,1,"Dewoitine",48.784604,2.214221,0,0,OIF:SA:59872,Europe/Paris,,OIF, +OIF:SP:59:5121021,1,"Vélizy 2",48.785157,2.218913,0,0,OIF:SA:59870,Europe/Paris,,OIF, +OIF:SP:59:5121023,1,"Meudon-la-Forêt",48.783383,2.225037,0,0,OIF:SA:59:5121023,Europe/Paris,,OIF, +OIF:SP:59:5121024,1,"Avenue de la Sygrie",48.781659,2.226482,0,0,OIF:SA:59:5121024,Europe/Paris,,OIF, +OIF:SP:59:5121028,1,"La Boursidière",48.775998,2.238326,0,0,OIF:SA:59:3909812,Europe/Paris,,OIF, +OIF:SP:59:5121029,1,"Ferme de Malabry",48.770711,2.247011,0,0,OIF:SA:59:5121029,Europe/Paris,,OIF, +OIF:SP:59:5121030,1,"Ferme de Malabry",48.769957,2.249011,0,0,OIF:SA:59:5121029,Europe/Paris,,OIF, +OIF:SP:59:5121035,1,"Butte Rouge - Cité Jardins",48.765417,2.259678,0,0,OIF:SA:59:5121035,Europe/Paris,,OIF, +OIF:SP:59:5121037,1,"Général Duval",48.764683,2.265458,0,0,OIF:SA:59:5121037,Europe/Paris,,OIF, +OIF:SP:59:5121043,1,"Carrefour du 19 Mars 1962",48.762248,2.283625,0,0,OIF:SA:59:5121043,Europe/Paris,,OIF, +OIF:SP:59:5121044,1,"Carrefour du 19 Mars 1962",48.762661,2.281789,0,0,OIF:SA:59:5121043,Europe/Paris,,OIF, +OIF:SP:59:5121045,1,"Carrefour de l'Europe",48.7612,2.291457,0,0,OIF:SA:59:5121045,Europe/Paris,,OIF, +OIF:SP:59:5121046,1,"Parc de Sceaux - sous-Préfecture",48.761589,2.299845,0,0,OIF:SA:59:5121046,Europe/Paris,,OIF, +OIF:SP:59:5121047,1,"Parc de Sceaux - sous-Préfecture",48.762146,2.300075,0,0,OIF:SA:59:5121046,Europe/Paris,,OIF, +OIF:SP:59:5121048,1,"La Croix de Berny RER",48.762255,2.302903,0,0,OIF:SA:8775874,Europe/Paris,,OIF, +OIF:SP:59:5121050,1,"Carrefour de l'Europe",48.761505,2.290274,0,0,OIF:SA:59:5121050,Europe/Paris,,OIF, +OIF:SP:59:5121051,1,"Président Allende",48.764066,2.271455,0,0,OIF:SA:59:5121051,Europe/Paris,,OIF, +OIF:SP:59:5121052,1,"Avenue Galilée",48.772686,2.244111,0,0,OIF:SA:59:5121052,Europe/Paris,,OIF, +OIF:SP:59:5121053,1,"Avenue de la Sygrie",48.782243,2.22644,0,0,OIF:SA:59868,Europe/Paris,,OIF, +OIF:SP:59:5121055,1,"Vélizy 2.",48.785687,2.219047,0,0,OIF:SA:59870,Europe/Paris,,OIF, +OIF:SP:59:5121305,1,"Georges Pompidou",48.785254,2.237152,0,0,OIF:SA:59864,Europe/Paris,,OIF, +OIF:SP:59:5121307,1,"Espace Culturel - Robert Doisneau",48.787588,2.233693,0,0,OIF:SA:59:5121307,Europe/Paris,,OIF, +OIF:SP:59:5121310,1,"Le Lac",48.785895,2.229561,0,0,OIF:SA:59:5121310,Europe/Paris,,OIF, +OIF:SP:59:5121340,1,"Billancourt",48.83165,2.23758,0,0,OIF:SA:59504,Europe/Paris,,OIF, +OIF:SP:59:5121341,1,"Marcel Sembat - Métro",48.833822,2.24471,0,0,OIF:SA:59505,Europe/Paris,,OIF, +OIF:SP:59:5121342,1,"Marcel Sembat - Métro",48.834109,2.244573,0,0,OIF:SA:59505,Europe/Paris,,OIF, +OIF:SP:59:5121363,1,"Charles Michels",48.846465,2.286847,0,0,OIF:SA:59386,Europe/Paris,,OIF, +OIF:SP:59:5121374,1,"Gare Montparnasse.",48.842134,2.320838,0,0,OIF:SA:8739100,Europe/Paris,,OIF, +OIF:SP:59:5121380,1,"Pont de Sevres",48.830252,2.232001,0,0,OIF:SA:59621,Europe/Paris,,OIF, +OIF:SP:59:5121383,1,"Gare Montparnasse.",48.841927,2.319354,0,0,OIF:SA:8739100,Europe/Paris,,OIF, +OIF:SP:59:5121388,1,"Jean Zay - Maine",48.837559,2.322187,0,0,OIF:SA:59609,Europe/Paris,,OIF, +OIF:SP:59:5121389,1,"Jean Zay - Maine",48.837649,2.322065,0,0,OIF:SA:59609,Europe/Paris,,OIF, +OIF:SP:59:5121407,1,"12 Février 1934",48.817505,2.307386,0,0,OIF:SA:59:5121407,Europe/Paris,,OIF, +OIF:SP:59:5121409,1,"Etienne Dolet",48.813549,2.301971,0,0,OIF:SA:59538,Europe/Paris,,OIF, +OIF:SP:59:5121412,1,"Vauban",48.806913,2.293213,0,0,OIF:SA:59848,Europe/Paris,,OIF, +OIF:SP:59:5121413,1,"Centre de Châtillon",48.804242,2.288725,0,0,OIF:SA:59850,Europe/Paris,,OIF, +OIF:SP:59:5121420,1,"Hôpital Antoine Beclere",48.786921,2.25358,0,0,OIF:SA:59858,Europe/Paris,,OIF, +OIF:SP:59:5121421,1,"Hôpital Antoine Beclere",48.786886,2.255389,0,0,OIF:SA:59858,Europe/Paris,,OIF, +OIF:SP:59:5121427,1,"Georges Millandy",48.783668,2.231361,0,0,OIF:SA:59866,Europe/Paris,,OIF, +OIF:SP:59:5121428,1,"Georges Millandy",48.78347,2.231538,0,0,OIF:SA:59866,Europe/Paris,,OIF, +OIF:SP:59:5121431,1,"Vélizy 2",48.785633,2.218898,0,0,OIF:SA:59870,Europe/Paris,,OIF, +OIF:SP:59:5121433,1,"Dewoitine",48.783804,2.214359,0,0,OIF:SA:59872,Europe/Paris,,OIF, +OIF:SP:59:5121434,1,"Dewoitine",48.783499,2.214945,0,0,OIF:SA:59872,Europe/Paris,,OIF, +OIF:SP:59:5121435,1,"Inovel Parc Nord",48.781623,2.209115,0,0,OIF:SA:59874,Europe/Paris,,OIF, +OIF:SP:59:5121436,1,"Inovel Parc Nord",48.781256,2.209632,0,0,OIF:SA:59874,Europe/Paris,,OIF, +OIF:SP:59:5121437,1,"Louvois",48.780155,2.197993,0,0,OIF:SA:59876,Europe/Paris,,OIF, +OIF:SP:59:5121438,1,"Louvois",48.779704,2.196825,0,0,OIF:SA:59876,Europe/Paris,,OIF, +OIF:SP:59:5121439,1,"Mairie de Vélizy",48.780624,2.191586,0,0,OIF:SA:59878,Europe/Paris,,OIF, +OIF:SP:59:5121440,1,"Mairie de Vélizy",48.780119,2.190826,0,0,OIF:SA:59878,Europe/Paris,,OIF, +OIF:SP:59:5121441,1,"L'Onde",48.781823,2.180662,0,0,OIF:SA:59880,Europe/Paris,,OIF, +OIF:SP:59:5121442,1,"L'Onde",48.781688,2.18039,0,0,OIF:SA:59880,Europe/Paris,,OIF, +OIF:SP:59:5121443,1,"Robert Wagner",48.78494,2.179074,0,0,OIF:SA:59882,Europe/Paris,,OIF, +OIF:SP:59:5121460,1,"Pont de Levallois - Becon",48.897196,2.280201,0,0,OIF:SA:59589,Europe/Paris,,OIF, +OIF:SP:59:5121468,1,"Rue de la Station",48.906339,2.286408,0,0,OIF:SA:8738113,Europe/Paris,,OIF, +OIF:SP:59:5121469,1,"Rue de la Station",48.906968,2.285616,0,0,OIF:SA:8738113,Europe/Paris,,OIF, +OIF:SP:59:5121478,1,"Ménil",48.921301,2.283897,0,0,OIF:SA:59597,Europe/Paris,,OIF, +OIF:SP:59:5121479,1,"Ménil",48.920878,2.282807,0,0,OIF:SA:59597,Europe/Paris,,OIF, +OIF:SP:59:5121488,1,"Bassin N0 2",48.938482,2.280128,0,0,OIF:SA:59:4016065,Europe/Paris,,OIF, +OIF:SP:59:5121493,1,"Bassin N0 5",48.944842,2.295307,0,0,OIF:SA:59:5121493,Europe/Paris,,OIF, +OIF:SP:59:5121494,1,"Bassin N0 5",48.944312,2.295089,0,0,OIF:SA:59:5121493,Europe/Paris,,OIF, +OIF:SP:59:5121495,1,"Chemin des Petits Marais",48.946299,2.29843,0,0,OIF:SA:59:5121495,Europe/Paris,,OIF, +OIF:SP:59:5121496,1,"Chemin des Petits Marais",48.946425,2.29828,0,0,OIF:SA:59:5121495,Europe/Paris,,OIF, +OIF:SP:59:5121498,1,"Dequevauvilliers",48.946265,2.302578,0,0,OIF:SA:59:5081754,Europe/Paris,,OIF, +OIF:SP:59:5121499,1,"Pont d'Epinay",48.950094,2.306846,0,0,OIF:SA:59:5121499,Europe/Paris,,OIF, +OIF:SP:59:5121500,1,"Pont d'Epinay",48.950211,2.306587,0,0,OIF:SA:59:5121499,Europe/Paris,,OIF, +OIF:SP:59:5121503,1,"Épinay-sur-Seine - Gare",48.955853,2.300879,0,0,OIF:SA:8727114,Europe/Paris,,OIF, +OIF:SP:59:5121504,1,"Épinay-sur-Seine - Gare",48.955745,2.301507,0,0,OIF:SA:8727114,Europe/Paris,,OIF, +OIF:SP:59:5121505,1,"Épinay - Orgemont",48.955456,2.295544,0,0,OIF:SA:59916,Europe/Paris,,OIF, +OIF:SP:59:5121506,1,"Épinay - Orgemont",48.955303,2.295312,0,0,OIF:SA:59916,Europe/Paris,,OIF, +OIF:SP:59:5121507,1,"Rue de Marseille",48.956812,2.294055,0,0,OIF:SA:59916,Europe/Paris,,OIF, +OIF:SP:59:5121508,1,"Rue de Marseille",48.95648,2.293892,0,0,OIF:SA:59916,Europe/Paris,,OIF, +OIF:SP:59:5121509,1,"Dunkerque",48.960676,2.293574,0,0,OIF:SA:18:19669,Europe/Paris,,OIF, +OIF:SP:59:5121510,1,"Dunkerque",48.960613,2.293411,0,0,OIF:SA:18:19669,Europe/Paris,,OIF, +OIF:SP:59:5121515,1,"Asnières - Gennevilliers - les Courtilles",48.930639,2.284038,0,0,OIF:SA:59582,Europe/Paris,,OIF, +OIF:SP:59:5121561,1,"Porte de Saint-Cloud - Métro",48.837578,2.255895,0,0,OIF:SA:59492,Europe/Paris,,OIF, +OIF:SP:59:5121563,1,"Les Peupliers",48.834188,2.254335,0,0,OIF:SA:59:5121563,Europe/Paris,,OIF, +OIF:SP:59:5121564,1,"Les Peupliers",48.834422,2.254852,0,0,OIF:SA:59:5121563,Europe/Paris,,OIF, +OIF:SP:59:5121566,1,"Rue du Point du Jour",48.832426,2.253439,0,0,OIF:SA:59:3442577,Europe/Paris,,OIF, +OIF:SP:59:5121568,1,"Rue de Seine",48.827939,2.250288,0,0,OIF:SA:59:5121568,Europe/Paris,,OIF, +OIF:SP:59:5121570,1,"Pont de Billancourt",48.825529,2.24859,0,0,OIF:SA:24:14942,Europe/Paris,,OIF, +OIF:SP:59:5121576,1,"Carrefour de la Ferme",48.817215,2.248305,0,0,OIF:SA:59:4009135,Europe/Paris,,OIF, +OIF:SP:59:5121577,1,"Carrefour de la Ferme",48.817117,2.248496,0,0,OIF:SA:59:4009135,Europe/Paris,,OIF, +OIF:SP:59:5121578,1,"Viaduc",48.812684,2.245863,0,0,OIF:SA:59:4009125,Europe/Paris,,OIF, +OIF:SP:59:5121580,1,"Saint-Germain - Jean-Jaurès",48.809535,2.242263,0,0,OIF:SA:59:5121580,Europe/Paris,,OIF, +OIF:SP:59:5121581,1,"Val Fleury RER",48.808384,2.241149,0,0,OIF:SA:8739308,Europe/Paris,,OIF, +OIF:SP:59:5121583,1,"Victor Hugo",48.806341,2.237833,0,0,OIF:SA:59:4473391,Europe/Paris,,OIF, +OIF:SP:59:5121599,1,"Georges Pompidou",48.784823,2.237221,0,0,OIF:SA:59864,Europe/Paris,,OIF, +OIF:SP:59:5121602,1,"D'Alembert - Vertugadins - Lycée",48.802727,2.237513,0,0,OIF:SA:59:5121602,Europe/Paris,,OIF, +OIF:SP:59:5121603,1,"Saint-Germain - Jean Jaurès",48.810156,2.243432,0,0,OIF:SA:59:5121580,Europe/Paris,,OIF, +OIF:SP:59:5121604,1,"Verdun - Jean-Pierre Timbaud",48.81781,2.250386,0,0,OIF:SA:59:5121604,Europe/Paris,,OIF, +OIF:SP:59:5121605,1,"Verdun - Docteur Lombard",48.818782,2.251705,0,0,OIF:SA:59:5121605,Europe/Paris,,OIF, +OIF:SP:59:5121764,1,"Gare de Vanves-Malakoff",48.818741,2.291924,0,0,OIF:SA:8739153,Europe/Paris,,OIF, +OIF:SP:59:5121766,1,"Paul Bert",48.816755,2.294865,0,0,OIF:SA:8739153,Europe/Paris,,OIF, +OIF:SP:59:5121767,1,"Paul Bert",48.817016,2.294456,0,0,OIF:SA:8739153,Europe/Paris,,OIF, +OIF:SP:59:5121768,1,"Rue Etienne Dolet",48.814285,2.297126,0,0,OIF:SA:59538,Europe/Paris,,OIF, +OIF:SP:59:5121769,1,"Rue Etienne Dolet",48.815012,2.296676,0,0,OIF:SA:59538,Europe/Paris,,OIF, +OIF:SP:59:5121770,1,"Maison Blanche",48.811688,2.299823,0,0,OIF:SA:59:5121770,Europe/Paris,,OIF, +OIF:SP:59:5121771,1,"Maison Blanche",48.81185,2.300027,0,0,OIF:SA:59:5121770,Europe/Paris,,OIF, +OIF:SP:59:5121772,1,"Châtillon-Montrouge - Métro",48.811149,2.301878,0,0,OIF:SA:59614,Europe/Paris,,OIF, +OIF:SP:59:5121773,1,"Maurice Arnoux",48.810755,2.305824,0,0,OIF:SA:59:4473644,Europe/Paris,,OIF, +OIF:SP:59:5121774,1,"Pluchet",48.799546,2.30062,0,0,OIF:SA:59:5121774,Europe/Paris,,OIF, +OIF:SP:59:5121775,1,"Pluchet",48.799438,2.300797,0,0,OIF:SA:59:5121774,Europe/Paris,,OIF, +OIF:SP:59:5121777,1,"Rue Froide",48.798027,2.300757,0,0,OIF:SA:59:4458812,Europe/Paris,,OIF, +OIF:SP:59:5121778,1,"Dampierre",48.794935,2.301494,0,0,OIF:SA:59:4458769,Europe/Paris,,OIF, +OIF:SP:59:5121779,1,"Dampierre",48.795879,2.300446,0,0,OIF:SA:59:4458769,Europe/Paris,,OIF, +OIF:SP:59:5121780,1,"Mathurins",48.794981,2.305657,0,0,OIF:SA:59:5121780,Europe/Paris,,OIF, +OIF:SP:59:5121781,1,"Mathurins",48.794811,2.306609,0,0,OIF:SA:59:5121780,Europe/Paris,,OIF, +OIF:SP:59:5121782,1,"Porte-d'en-Bas",48.793013,2.306039,0,0,OIF:SA:59:5121782,Europe/Paris,,OIF, +OIF:SP:59:5121783,1,"Porte-d'en-Bas",48.793157,2.306692,0,0,OIF:SA:59:5121782,Europe/Paris,,OIF, +OIF:SP:59:5121784,1,"Sentier des Brugnauts",48.792177,2.304094,0,0,OIF:SA:59:5121784,Europe/Paris,,OIF, +OIF:SP:59:5121785,1,"Sentier des Brugnauts",48.791997,2.30438,0,0,OIF:SA:59:5121784,Europe/Paris,,OIF, +OIF:SP:59:5121786,1,"Fontaine - Gueffier",48.7901,2.303769,0,0,OIF:SA:59:5121786,Europe/Paris,,OIF, +OIF:SP:59:5121787,1,"Fontaine - Gueffier",48.78957,2.304232,0,0,OIF:SA:59:5121786,Europe/Paris,,OIF, +OIF:SP:59:5121788,1,"Cuverons",48.787934,2.304097,0,0,OIF:SA:59:5121788,Europe/Paris,,OIF, +OIF:SP:59:5121789,1,"Cuverons",48.787098,2.304506,0,0,OIF:SA:59:5121788,Europe/Paris,,OIF, +OIF:SP:59:5121793,1,"Frères Lumière",48.788529,2.310463,0,0,OIF:SA:59:5121793,Europe/Paris,,OIF, +OIF:SP:59:5121794,1,"Frères Lumière",48.788394,2.310163,0,0,OIF:SA:59:5121793,Europe/Paris,,OIF, +OIF:SP:59:5121796,1,"Port Galand",48.789348,2.314584,0,0,OIF:SA:59:5121796,Europe/Paris,,OIF, +OIF:SP:59:5121798,1,"Albert Petit",48.79582,2.317479,0,0,OIF:SA:59:5121798,Europe/Paris,,OIF, +OIF:SP:59:5121800,1,"Pont Royal RER",48.793438,2.320527,0,0,OIF:SA:8775868,Europe/Paris,,OIF, +OIF:SP:59:5121805,1,"Les Blagis",48.785373,2.303663,0,0,OIF:SA:59:5121805,Europe/Paris,,OIF, +OIF:SP:59:5121807,1,"Châtillon-Montrouge - Métro",48.811428,2.301932,0,0,OIF:SA:59614,Europe/Paris,,OIF, +OIF:SP:59:5121808,1,"Pont de Sevres",48.829361,2.229988,0,0,OIF:SA:59621,Europe/Paris,,OIF, +OIF:SP:59:5121811,1,"Brimborion - Division Leclerc",48.822882,2.22174,0,0,OIF:SA:17:1520,Europe/Paris,,OIF, +OIF:SP:59:5121812,1,"Gare de Sevres - Rive Gauche",48.820883,2.218546,0,0,OIF:SA:8739312,Europe/Paris,,OIF, +OIF:SP:59:5121813,1,"Les Capucins",48.817322,2.216403,0,0,OIF:SA:59:5121813,Europe/Paris,,OIF, +OIF:SP:59:5121814,1,"Rond-Point des Bruyères",48.812772,2.214386,0,0,OIF:SA:59:5121814,Europe/Paris,,OIF, +OIF:SP:59:5121815,1,"Docteur Roux",48.811691,2.212048,0,0,OIF:SA:59:5121815,Europe/Paris,,OIF, +OIF:SP:59:5121819,1,"Rond-Point du Petit Clamart",48.777725,2.229523,0,0,OIF:SA:57:8440,Europe/Paris,,OIF, +OIF:SP:59:5121822,1,"Cyrano de Bergerac",48.769752,2.250575,0,0,OIF:SA:59:5121822,Europe/Paris,,OIF, +OIF:SP:59:5121823,1,"Séverine",48.771855,2.251224,0,0,OIF:SA:59:5121823,Europe/Paris,,OIF, +OIF:SP:59:5121824,1,"Léon Blum",48.774113,2.253709,0,0,OIF:SA:59:5121824,Europe/Paris,,OIF, +OIF:SP:59:5121825,1,"Cité Jardins - Place des Allies",48.776893,2.257934,0,0,OIF:SA:59:3909819,Europe/Paris,,OIF, +OIF:SP:59:5121828,1,"L'Escalier",48.782795,2.266861,0,0,OIF:SA:59:5121828,Europe/Paris,,OIF, +OIF:SP:59:5121831,1,"Robinson RER",48.779567,2.281825,0,0,OIF:SA:8775872,Europe/Paris,,OIF, +OIF:SP:59:5121832,1,"Robinson RER.",48.779423,2.281445,0,0,OIF:SA:8775872,Europe/Paris,,OIF, +OIF:SP:59:5121833,1,"Robinson RER",48.779639,2.281417,0,0,OIF:SA:8775872,Europe/Paris,,OIF, +OIF:SP:59:5121835,1,"Cité Basse",48.782195,2.27052,0,0,OIF:SA:59:5121835,Europe/Paris,,OIF, +OIF:SP:59:5121840,1,"Léon Blum",48.774158,2.253383,0,0,OIF:SA:59:5121824,Europe/Paris,,OIF, +OIF:SP:59:5121841,1,"Séverine",48.771873,2.250993,0,0,OIF:SA:59:5121841,Europe/Paris,,OIF, +OIF:SP:59:5121842,1,"Cyrano de Bergerac",48.77012,2.250452,0,0,OIF:SA:59:5121822,Europe/Paris,,OIF, +OIF:SP:59:5121846,1,"Rond-Point du Petit Clamart",48.777788,2.229768,0,0,OIF:SA:57:8440,Europe/Paris,,OIF, +OIF:SP:59:5121848,1,"De Lattre de Tassigny",48.785441,2.224475,0,0,OIF:SA:57:8460,Europe/Paris,,OIF, +OIF:SP:59:5121849,1,"Vélizy 2",48.785301,2.219116,0,0,OIF:SA:59870,Europe/Paris,,OIF, +OIF:SP:59:5121850,1,"De Lattre de Tassigny.",48.785495,2.224448,0,0,OIF:SA:57:8460,Europe/Paris,,OIF, +OIF:SP:59:5121851,1,"Aérodrome Morane",48.78757,2.222865,0,0,OIF:SA:59:5121004,Europe/Paris,,OIF, +OIF:SP:59:5121852,1,"Ermitage de Villebon",48.794235,2.218987,0,0,OIF:SA:59:5121852,Europe/Paris,,OIF, +OIF:SP:59:5121853,1,"Rond-Point des Bruyères",48.813033,2.214522,0,0,OIF:SA:59:5121814,Europe/Paris,,OIF, +OIF:SP:59:5121854,1,"Les Capucins",48.816855,2.216445,0,0,OIF:SA:59:5121813,Europe/Paris,,OIF, +OIF:SP:59:5121855,1,"Gare de Sevres - Rive Gauche",48.821037,2.219566,0,0,OIF:SA:8739312,Europe/Paris,,OIF, +OIF:SP:59:5121856,1,"Brimborion - Division Leclerc",48.823133,2.221467,0,0,OIF:SA:17:1520,Europe/Paris,,OIF, +OIF:SP:59:5121944,1,"Vallée de la Bièvre",48.738331,2.267464,0,0,OIF:SA:59:5121944,Europe/Paris,,OIF, +OIF:SP:59:5121945,1,"Carnot",48.741287,2.265164,0,0,OIF:SA:24:15073,Europe/Paris,,OIF, +OIF:SP:59:5121946,1,"Carnot",48.741116,2.265205,0,0,OIF:SA:24:15073,Europe/Paris,,OIF, +OIF:SP:59:5121982,1,"Liberté",48.797953,2.294146,0,0,OIF:SA:59:4458768,Europe/Paris,,OIF, +OIF:SP:59:5121991,1,"Plateau de Vanves",48.822959,2.299583,0,0,OIF:SA:59536,Europe/Paris,,OIF, +OIF:SP:59:5121992,1,"Plateau de Vanves",48.822518,2.298644,0,0,OIF:SA:59536,Europe/Paris,,OIF, +OIF:SP:59:5121994,1,"Porte de Vanves",48.827364,2.305202,0,0,OIF:SA:59527,Europe/Paris,,OIF, +OIF:SP:59:5121995,1,"Porte de Vanves",48.827535,2.304861,0,0,OIF:SA:59527,Europe/Paris,,OIF, +OIF:SP:59:5121996,1,"Plaisance",48.83124,2.313082,0,0,OIF:SA:59529,Europe/Paris,,OIF, +OIF:SP:59:5121997,1,"Plaisance",48.833037,2.311801,0,0,OIF:SA:59529,Europe/Paris,,OIF, +OIF:SP:59:5121998,1,"Pernety",48.833793,2.317941,0,0,OIF:SA:59604,Europe/Paris,,OIF, +OIF:SP:59:5121999,1,"Pernety",48.83506,2.314618,0,0,OIF:SA:59604,Europe/Paris,,OIF, +OIF:SP:59:5122000,1,"Losserand - Maine",48.836544,2.322896,0,0,OIF:SA:59:3764704,Europe/Paris,,OIF, +OIF:SP:59:5122008,1,"Gare Montparnasse.",48.841918,2.320552,0,0,OIF:SA:8739100,Europe/Paris,,OIF, +OIF:SP:59:5122010,1,"République - Liberté",48.801296,2.294143,0,0,OIF:SA:59:5122010,Europe/Paris,,OIF, +OIF:SP:59:5122015,1,"Porte d'Orléans",48.822532,2.325173,0,0,OIF:SA:59624,Europe/Paris,,OIF, +OIF:SP:59:5122016,1,"Porte d'Orléans",48.823242,2.324505,0,0,OIF:SA:59624,Europe/Paris,,OIF, +OIF:SP:59:5122047,1,"Pasteur",48.785723,2.278854,0,0,OIF:SA:59:5122047,Europe/Paris,,OIF, +OIF:SP:59:5122049,1,"Edmond About",48.784311,2.277291,0,0,OIF:SA:59:5122049,Europe/Paris,,OIF, +OIF:SP:59:5122067,1,"Butte Rouge - Cité Jardins",48.765641,2.259433,0,0,OIF:SA:59:5121035,Europe/Paris,,OIF, +OIF:SP:59:5122069,1,"Francis de Pressensé",48.76634,2.255666,0,0,OIF:SA:24:15063,Europe/Paris,,OIF, +OIF:SP:59:5122071,1,"Lycée Polyvalent",48.767408,2.254006,0,0,OIF:SA:59:5122071,Europe/Paris,,OIF, +OIF:SP:59:5122073,1,"Robinson RER",48.780025,2.280574,0,0,OIF:SA:8775872,Europe/Paris,,OIF, +OIF:SP:59:5122076,1,"Le Plateau",48.796277,2.285345,0,0,OIF:SA:59:5122076,Europe/Paris,,OIF, +OIF:SP:59:5122080,1,"Pierre Brossolette - Gabriel Péri",48.819186,2.310093,0,0,OIF:SA:59:5122080,Europe/Paris,,OIF, +OIF:SP:59:5122145,1,"Pave Blanc",48.779576,2.240046,0,0,OIF:SA:59862,Europe/Paris,,OIF, +OIF:SP:59:5122147,1,"Réaumur",48.777518,2.240104,0,0,OIF:SA:59:5091973,Europe/Paris,,OIF, +OIF:SP:59:5122148,1,"Réaumur",48.777671,2.23975,0,0,OIF:SA:59:5091973,Europe/Paris,,OIF, +OIF:SP:59:5122153,1,"Parc des Sports",48.779711,2.252041,0,0,OIF:SA:59:5122153,Europe/Paris,,OIF, +OIF:SP:59:5122154,1,"Parc des Sports",48.778722,2.2509,0,0,OIF:SA:59:5122153,Europe/Paris,,OIF, +OIF:SP:59:5122155,1,"Parc Technologique",48.782049,2.25318,0,0,OIF:SA:59:5122155,Europe/Paris,,OIF, +OIF:SP:59:5122156,1,"Parc Technologique",48.781887,2.252813,0,0,OIF:SA:59:5122155,Europe/Paris,,OIF, +OIF:SP:59:5122157,1,"Le Hameau",48.78135,2.255765,0,0,OIF:SA:59:5122157,Europe/Paris,,OIF, +OIF:SP:59:5122158,1,"Le Hameau",48.781782,2.256145,0,0,OIF:SA:59:5122157,Europe/Paris,,OIF, +OIF:SP:59:5122159,1,"La Poste",48.780201,2.25782,0,0,OIF:SA:59:5122159,Europe/Paris,,OIF, +OIF:SP:59:5122160,1,"La Poste",48.780381,2.257779,0,0,OIF:SA:59:5122159,Europe/Paris,,OIF, +OIF:SP:59:5122162,1,"Charles Pasqua",48.779448,2.261018,0,0,OIF:SA:59:3909820,Europe/Paris,,OIF, +OIF:SP:59:5122163,1,"Cœur de Ville",48.781508,2.263911,0,0,OIF:SA:59:5122163,Europe/Paris,,OIF, +OIF:SP:59:5122164,1,"Cœur de Ville",48.78167,2.263571,0,0,OIF:SA:59:5122163,Europe/Paris,,OIF, +OIF:SP:59:5122165,1,"L'Escalier",48.78302,2.267242,0,0,OIF:SA:59:5121828,Europe/Paris,,OIF, +OIF:SP:59:5122166,1,"L'Escalier",48.782911,2.265882,0,0,OIF:SA:59:5121828,Europe/Paris,,OIF, +OIF:SP:59:5122167,1,"Tour de l'Étang",48.783391,2.271539,0,0,OIF:SA:59:5122167,Europe/Paris,,OIF, +OIF:SP:59:5122168,1,"Tour de l'Étang",48.783642,2.270437,0,0,OIF:SA:59:5122167,Europe/Paris,,OIF, +OIF:SP:59:5122169,1,"Hôpital Marie Lannelongue",48.783024,2.274328,0,0,OIF:SA:59:5067466,Europe/Paris,,OIF, +OIF:SP:59:5122171,1,"Edmond About",48.783376,2.277959,0,0,OIF:SA:59:5122049,Europe/Paris,,OIF, +OIF:SP:59:5122172,1,"Edmond About",48.783465,2.276408,0,0,OIF:SA:59:5122049,Europe/Paris,,OIF, +OIF:SP:59:5122175,1,"Robinson RER",48.781077,2.282177,0,0,OIF:SA:8775872,Europe/Paris,,OIF, +OIF:SP:59:5122176,1,"Robinson RER",48.779881,2.280533,0,0,OIF:SA:8775872,Europe/Paris,,OIF, +OIF:SP:59:5122177,1,"Cimetière de Sceaux",48.77893,2.284097,0,0,OIF:SA:8775872,Europe/Paris,,OIF, +OIF:SP:59:5122178,1,"Cimetière de Sceaux",48.7791,2.283186,0,0,OIF:SA:8775872,Europe/Paris,,OIF, +OIF:SP:59:5122179,1,"Mairie de Sceaux",48.778761,2.288286,0,0,OIF:SA:59:5122179,Europe/Paris,,OIF, +OIF:SP:59:5122180,1,"Mairie de Sceaux",48.778896,2.288068,0,0,OIF:SA:59:5122179,Europe/Paris,,OIF, +OIF:SP:59:5122181,1,"Fontenay - Houdan",48.778403,2.291061,0,0,OIF:SA:59:4834630,Europe/Paris,,OIF, +OIF:SP:59:5122182,1,"Fontenay - Houdan",48.779023,2.290979,0,0,OIF:SA:59:4834630,Europe/Paris,,OIF, +OIF:SP:59:5122183,1,"I.U.T.",48.775696,2.288452,0,0,OIF:SA:59:5122183,Europe/Paris,,OIF, +OIF:SP:59:5122184,1,"I.U.T.",48.775382,2.288684,0,0,OIF:SA:59:5122183,Europe/Paris,,OIF, +OIF:SP:59:5122185,1,"Croix Blanche",48.770572,2.28654,0,0,OIF:SA:59:5122185,Europe/Paris,,OIF, +OIF:SP:59:5122186,1,"Grande Voie des Vignes - École Centrale",48.766232,2.290229,0,0,OIF:SA:59:5122186,Europe/Paris,,OIF, +OIF:SP:59:5122187,1,"Carrefour de l'Europe",48.762233,2.291007,0,0,OIF:SA:59:5121050,Europe/Paris,,OIF, +OIF:SP:59:5122188,1,"Cimetière d'Antony",48.759078,2.290656,0,0,OIF:SA:59:5122188,Europe/Paris,,OIF, +OIF:SP:59:5122189,1,"Cimetière d'Antony",48.759141,2.290915,0,0,OIF:SA:59:5122188,Europe/Paris,,OIF, +OIF:SP:59:5122192,1,"Antony RER",48.755109,2.300978,0,0,OIF:SA:8775875,Europe/Paris,,OIF, +OIF:SP:59:5122193,1,"Antony RER",48.755073,2.301222,0,0,OIF:SA:8775875,Europe/Paris,,OIF, +OIF:SP:59:5122194,1,"Carrefour de l'Europe",48.762188,2.291388,0,0,OIF:SA:59:5121045,Europe/Paris,,OIF, +OIF:SP:59:5122195,1,"Grande Voie des Vignes - École Centrale",48.766871,2.290146,0,0,OIF:SA:59:5122195,Europe/Paris,,OIF, +OIF:SP:59:5122196,1,"Croix Blanche",48.770707,2.28692,0,0,OIF:SA:59:5122196,Europe/Paris,,OIF, +OIF:SP:59:5122197,1,"Bois Brule",48.782356,2.254594,0,0,OIF:SA:24:15049,Europe/Paris,,OIF, +OIF:SP:59:5137968,1,"Jean Moulin",48.823817,2.31819,0,0,OIF:SA:59063,Europe/Paris,,OIF, +OIF:SP:59:5137972,1,"Augustin Dumont",48.816103,2.305427,0,0,OIF:SA:59:3729706,Europe/Paris,,OIF, +OIF:SP:59:5137975,1,"Maison Blanche",48.808829,2.298233,0,0,OIF:SA:59614,Europe/Paris,,OIF, +OIF:SP:59:5137983,1,"Rue des Olivettes",48.79766,2.307683,0,0,OIF:SA:59:4458771,Europe/Paris,,OIF, +OIF:SP:59:5137984,1,"Jean Longuet",48.800547,2.313763,0,0,OIF:SA:59:5137984,Europe/Paris,,OIF, +OIF:SP:59:5137986,1,"Cosson - Longuet",48.800134,2.317844,0,0,OIF:SA:59:5137986,Europe/Paris,,OIF, +OIF:SP:59:5137988,1,"Albert Petit",48.795613,2.316839,0,0,OIF:SA:59:5121798,Europe/Paris,,OIF, +OIF:SP:59:5137989,1,"Les Blains",48.792979,2.315643,0,0,OIF:SA:59:5137989,Europe/Paris,,OIF, +OIF:SP:59:5137990,1,"Port Galand",48.789716,2.314053,0,0,OIF:SA:59:5121796,Europe/Paris,,OIF, +OIF:SP:59:5137992,1,"Les Bas Coquarts",48.785824,2.310668,0,0,OIF:SA:59:5137992,Europe/Paris,,OIF, +OIF:SP:59:5137993,1,"Pierre Loti",48.784296,2.3126,0,0,OIF:SA:59:5137993,Europe/Paris,,OIF, +OIF:SP:59:5137995,1,"Bourg-la-Reine RER",48.779937,2.313078,0,0,OIF:SA:8775869,Europe/Paris,,OIF, +OIF:SP:59:5137997,1,"Rue du 8 Mai 1945",48.782805,2.316028,0,0,OIF:SA:59:3763989,Europe/Paris,,OIF, +OIF:SP:59:5137998,1,"Les Bas Coquarts",48.785662,2.310872,0,0,OIF:SA:59:4889656,Europe/Paris,,OIF, +OIF:SP:59:5138000,1,"Port Galand",48.789761,2.314339,0,0,OIF:SA:59:5121796,Europe/Paris,,OIF, +OIF:SP:59:5138001,1,"Les Blains",48.792871,2.315888,0,0,OIF:SA:59:5137989,Europe/Paris,,OIF, +OIF:SP:59:5138002,1,"Albert Petit",48.796152,2.317329,0,0,OIF:SA:59:5121798,Europe/Paris,,OIF, +OIF:SP:59:5138004,1,"Cosson - Longuet",48.800035,2.318157,0,0,OIF:SA:59:5137986,Europe/Paris,,OIF, +OIF:SP:59:5138006,1,"Jean Longuet",48.80087,2.313926,0,0,OIF:SA:59:5137984,Europe/Paris,,OIF, +OIF:SP:59:5138010,1,"Liberté",48.798483,2.294009,0,0,OIF:SA:59:4458768,Europe/Paris,,OIF, +OIF:SP:59:5138011,1,"Mairie de Châtillon",48.799749,2.291015,0,0,OIF:SA:59:5138011,Europe/Paris,,OIF, +OIF:SP:59:5138012,1,"République - Liberté",48.801107,2.294143,0,0,OIF:SA:59:5122010,Europe/Paris,,OIF, +OIF:SP:59:5138015,1,"Maison Blanche",48.809279,2.298491,0,0,OIF:SA:59614,Europe/Paris,,OIF, +OIF:SP:59:5138017,1,"Etienne Dolet",48.813378,2.302298,0,0,OIF:SA:59:5138017,Europe/Paris,,OIF, +OIF:SP:59:5138018,1,"Augustin Dumont",48.816552,2.306474,0,0,OIF:SA:59:5138018,Europe/Paris,,OIF, +OIF:SP:59:5138019,1,"12 Février 1934",48.81809,2.308624,0,0,OIF:SA:59:5138019,Europe/Paris,,OIF, +OIF:SP:59:5138021,1,"Depinoy",48.821937,2.313807,0,0,OIF:SA:59:5138021,Europe/Paris,,OIF, +OIF:SP:59:5138022,1,"Jean Moulin",48.823718,2.318053,0,0,OIF:SA:59063,Europe/Paris,,OIF, +OIF:SP:59:5138023,1,"Porte d'Orléans - Ernest Reyer",48.823332,2.323158,0,0,OIF:SA:59624,Europe/Paris,,OIF, +OIF:SP:59:5138025,1,"Place de Clichy",48.883135,2.327748,0,0,OIF:SA:59421,Europe/Paris,,OIF, +OIF:SP:59:5138027,1,"Blanche - Calais",48.881913,2.331618,0,0,OIF:SA:59428,Europe/Paris,,OIF, +OIF:SP:59:5138029,1,"Trinité",48.87591,2.331878,0,0,OIF:SA:59600,Europe/Paris,,OIF, +OIF:SP:59:5138040,1,"Rue du Bac - Rene Char",48.855643,2.325519,0,0,OIF:SA:59511,Europe/Paris,,OIF, +OIF:SP:59:5138044,1,"Notre-Dame-des-Champs",48.844912,2.328599,0,0,OIF:SA:59516,Europe/Paris,,OIF, +OIF:SP:59:5138046,1,"Raspail - Edgar Quinet",48.838225,2.330833,0,0,OIF:SA:59251,Europe/Paris,,OIF, +OIF:SP:59:5138053,1,"Porte d'Orléans - Ernest Reyer",48.82095,2.324275,0,0,OIF:SA:59624,Europe/Paris,,OIF, +OIF:SP:59:5138057,1,"Jean Jaurès",48.815025,2.310789,0,0,OIF:SA:59:5138057,Europe/Paris,,OIF, +OIF:SP:59:5138058,1,"Jules Guesde",48.812472,2.309294,0,0,OIF:SA:59:5138058,Europe/Paris,,OIF, +OIF:SP:59:5138080,1,"Cuvier - Jardin des Plantes",48.843904,2.354825,0,0,OIF:SA:59277,Europe/Paris,,OIF, +OIF:SP:59:5138081,1,"Buffon - la Mosquée",48.841037,2.355954,0,0,OIF:SA:59:3764542,Europe/Paris,,OIF, +OIF:SP:59:5138082,1,"Ledru Rollin - Faubourg Saint-Antoine",48.850981,2.375637,0,0,OIF:SA:59468,Europe/Paris,,OIF, +OIF:SP:59:5138085,1,"Charonne - Keller",48.854099,2.377642,0,0,OIF:SA:59:3673592,Europe/Paris,,OIF, +OIF:SP:59:5138161,1,"Blanche",48.883198,2.332122,0,0,OIF:SA:59428,Europe/Paris,,OIF, +OIF:SP:59:5138163,1,"Moncey",48.879756,2.331346,0,0,OIF:SA:59:5138163,Europe/Paris,,OIF, +OIF:SP:59:5138166,1,"Chaussée d'Antin",48.874472,2.332491,0,0,OIF:SA:59568,Europe/Paris,,OIF, +OIF:SP:59:5138171,1,"Pyramides",48.867219,2.333949,0,0,OIF:SA:59290,Europe/Paris,,OIF, +OIF:SP:59:5138191,1,"Raspail - Edgar Quinet",48.838989,2.330833,0,0,OIF:SA:59251,Europe/Paris,,OIF, +OIF:SP:59:5138195,1,"Denfert-Rochereau",48.833291,2.332835,0,0,OIF:SA:8775863,Europe/Paris,,OIF, +OIF:SP:59:5138214,1,"Châtillon - Montrouge - Métro",48.811078,2.304749,0,0,OIF:SA:59:5138214,Europe/Paris,,OIF, +OIF:SP:59:5138216,1,"Jean Monnet",48.811941,2.30415,0,0,OIF:SA:59:5138216,Europe/Paris,,OIF, +OIF:SP:59:5138221,1,"Pyramides - Saint-Honoré",48.864406,2.332642,0,0,OIF:SA:59:5138221,Europe/Paris,,OIF, +OIF:SP:59:5138225,1,"Liege",48.880322,2.329029,0,0,OIF:SA:59606,Europe/Paris,,OIF, +OIF:SP:59:5144685,1,"Moulin de la Galette",48.887413,2.337205,0,0,OIF:SA:59:3749671,Europe/Paris,,OIF, +OIF:SP:59:5150143,1,"Bobillot - Tolbiac",48.825489,2.349959,0,0,OIF:SA:59:3926313,Europe/Paris,,OIF, +OIF:SP:59:5150144,1,"Bobillot - Tolbiac",48.8261,2.350776,0,0,OIF:SA:59:3926313,Europe/Paris,,OIF, +OIF:SP:59:5150147,1,"Porte de Clichy",48.895167,2.31248,0,0,OIF:SA:8711127,Europe/Paris,,OIF, +OIF:SP:59:5150149,1,"Alésia - Rene Coty",48.827251,2.33485,0,0,OIF:SA:59:3754210,Europe/Paris,,OIF, +OIF:SP:59:5150150,1,"Champigny - Saint-Maur RER",48.80728,2.509908,0,0,OIF:SA:8775817,Europe/Paris,,OIF, +OIF:SP:59:5150151,1,"Fabre d'Églantine",48.877695,2.195225,0,0,OIF:SA:59:4024578,Europe/Paris,,OIF, +OIF:SP:59:5150172,1,"Nanterre - Ville RER",48.895661,2.195217,0,0,OIF:SA:8775804,Europe/Paris,,OIF, +OIF:SP:59:5150174,1,"Joliot-Curie - Courbevoie",48.89328,2.212356,0,0,OIF:SA:59:5150174,Europe/Paris,,OIF, +OIF:SP:59:5150246,1,"Foch - Leclerc",48.744568,2.266247,0,0,OIF:SA:59:5150246,Europe/Paris,,OIF, +OIF:SP:59:5150290,1,"Noisy-le-Grand - Mont d'Est RER",48.840682,2.55193,0,0,OIF:SA:8775833,Europe/Paris,,OIF, +OIF:SP:59:5150319,1,"Dolet - Zola",48.800356,2.422497,0,0,OIF:SA:59:3619834,Europe/Paris,,OIF, +OIF:SP:59:5150320,1,"Paul Vaillant Couturier - Kennedy",48.80237,2.420991,0,0,OIF:SA:59:3619791,Europe/Paris,,OIF, +OIF:SP:59:5150445,1,"Division Leclerc - Courtillières",48.913643,2.408476,0,0,OIF:SA:59:5150445,Europe/Paris,,OIF, +OIF:SP:59:5150446,1,"Place du Marche",48.913965,2.411054,0,0,OIF:SA:59:5150446,Europe/Paris,,OIF, +OIF:SP:59:5150459,1,"Pont de Bondy - Anatole France",48.906797,2.46934,0,0,OIF:SA:59:4035526,Europe/Paris,,OIF, +OIF:SP:59:5150460,1,"Avenue Marcelle",48.909495,2.467629,0,0,OIF:SA:59:5150460,Europe/Paris,,OIF, +OIF:SP:59:5150462,1,"Etienne Dolet",48.910393,2.475635,0,0,OIF:SA:59:5150462,Europe/Paris,,OIF, +OIF:SP:59:5150464,1,"Maison de Retraite",48.911282,2.484118,0,0,OIF:SA:59:5150464,Europe/Paris,,OIF, +OIF:SP:59:5150465,1,"Ronsard - Villon",48.91321,2.48715,0,0,OIF:SA:59:5150465,Europe/Paris,,OIF, +OIF:SP:59:5150702,1,"Rond-Point Pierre Semard - Turgot",48.930802,2.483778,0,0,OIF:SA:59:3664425,Europe/Paris,,OIF, +OIF:SP:59:5150705,1,"Galilée",48.777262,2.245885,0,0,OIF:SA:59:3909814,Europe/Paris,,OIF, +OIF:SP:59:5150706,1,"Colombe-Hardelet",48.809439,2.542629,0,0,OIF:SA:59:3619363,Europe/Paris,,OIF, +OIF:SP:59:5150707,1,"Préfecture du Val-de-Marne",48.784303,2.454162,0,0,OIF:SA:13:659,Europe/Paris,,OIF, +OIF:SP:59:5150709,1,"Lycée Darius Milhaud - Charles Gide",48.805078,2.345369,0,0,OIF:SA:59:3754333,Europe/Paris,,OIF, +OIF:SP:59:5150710,1,"Gare de Saint-Denis RER",48.934559,2.344176,0,0,OIF:SA:8727101,Europe/Paris,,OIF, +OIF:SP:59:5150713,1,"Rue du Port",48.936572,2.34258,0,0,OIF:SA:59:5150713,Europe/Paris,,OIF, +OIF:SP:59:5150714,1,"La Briche",48.943061,2.339852,0,0,OIF:SA:59:5150714,Europe/Paris,,OIF, +OIF:SP:59:5150715,1,"La Briche",48.94263,2.340152,0,0,OIF:SA:59:5150714,Europe/Paris,,OIF, +OIF:SP:59:5150716,1,"Rue de l'Union",48.947788,2.332362,0,0,OIF:SA:59904,Europe/Paris,,OIF, +OIF:SP:59:5150717,1,"Rue de l'Union",48.94777,2.331993,0,0,OIF:SA:59904,Europe/Paris,,OIF, +OIF:SP:59:5150718,1,"Les Mobiles",48.949477,2.329674,0,0,OIF:SA:59904,Europe/Paris,,OIF, +OIF:SP:59:5150719,1,"Les Mobiles",48.949558,2.329087,0,0,OIF:SA:59904,Europe/Paris,,OIF, +OIF:SP:59:5150720,1,"Avenue de la Marne - Commandant Louis Bouchet",48.952793,2.326985,0,0,OIF:SA:59:5150720,Europe/Paris,,OIF, +OIF:SP:59:5150721,1,"Avenue de la Marne - Commandant Louis Bouchet",48.952407,2.327585,0,0,OIF:SA:59:5150720,Europe/Paris,,OIF, +OIF:SP:59:5150722,1,"Lycée d'Epinay-sur-Seine",48.953054,2.322141,0,0,OIF:SA:59906,Europe/Paris,,OIF, +OIF:SP:59:5150723,1,"Lycée d'Epinay-sur-Seine",48.952847,2.321486,0,0,OIF:SA:59906,Europe/Paris,,OIF, +OIF:SP:59:5150726,1,"Rose Bertin",48.952837,2.316423,0,0,OIF:SA:59908,Europe/Paris,,OIF, +OIF:SP:59:5150727,1,"Rose Bertin",48.952621,2.315714,0,0,OIF:SA:59908,Europe/Paris,,OIF, +OIF:SP:59:5150729,1,"Lacépède",48.956008,2.311032,0,0,OIF:SA:59912,Europe/Paris,,OIF, +OIF:SP:59:5150736,1,"Rue de Saint-Gratien",48.963401,2.297694,0,0,OIF:SA:18:403,Europe/Paris,,OIF, +OIF:SP:59:5150737,1,"Rue de Saint-Gratien",48.963212,2.297066,0,0,OIF:SA:18:403,Europe/Paris,,OIF, +OIF:SP:59:5150738,1,"Limite des Départements",48.965397,2.300272,0,0,OIF:SA:18:365,Europe/Paris,,OIF, +OIF:SP:59:5150739,1,"Limite des Départements",48.965397,2.299944,0,0,OIF:SA:18:365,Europe/Paris,,OIF, +OIF:SP:59:5150742,1,"Mairie d'Enghien-les-Bains",48.969883,2.308936,0,0,OIF:SA:18:388,Europe/Paris,,OIF, +OIF:SP:59:5150743,1,"Gare d'Enghien-les-Bains",48.971887,2.308212,0,0,OIF:SA:8727602,Europe/Paris,,OIF, +OIF:SP:59:5150745,1,"Nanterre - Ville RER - Faidherbe",48.896588,2.196618,0,0,OIF:SA:8775804,Europe/Paris,,OIF, +OIF:SP:59:5150749,1,"Général de Gaulle - Croix de Berny",48.763883,2.30834,0,0,OIF:SA:59:4472936,Europe/Paris,,OIF, +OIF:SP:59:5150751,1,"Hôtel de Ville de la Celle-Saint-Cloud",48.84717,2.136316,0,0,OIF:SA:16:19140,Europe/Paris,,OIF, +OIF:SP:59:5150752,1,"Savigny-sur-Orge RER",48.676329,2.35189,0,0,OIF:SA:8754523,Europe/Paris,,OIF, +OIF:SP:59:5150760,1,"Garges - Sarcelles RER",48.976767,2.390748,0,0,OIF:SA:8727619,Europe/Paris,,OIF, +OIF:SP:59:5150763,1,"Gare de Lyon - Van Gogh",48.845176,2.37167,0,0,OIF:SA:8768600,Europe/Paris,,OIF, +OIF:SP:59:5150765,1,"C.S.T.B. - Matteotti",48.856058,2.589367,0,0,OIF:SA:59:5150765,Europe/Paris,,OIF, +OIF:SP:59:5150769,1,"Berthie Albrecht",48.965049,2.284098,0,0,OIF:SA:8727617,Europe/Paris,,OIF, +OIF:SP:59:5150773,1,"Cygne d'Enghien - Joffre",48.961315,2.295757,0,0,OIF:SA:59:5150773,Europe/Paris,,OIF, +OIF:SP:59:5150774,1,"Cygne d'Enghien - Joffre",48.96145,2.296112,0,0,OIF:SA:59:5150773,Europe/Paris,,OIF, +OIF:SP:59:5150778,1,"Gilbert Bonnemaison",48.955262,2.307088,0,0,OIF:SA:59912,Europe/Paris,,OIF, +OIF:SP:59:5150781,1,"Dequevauvilliers",48.945915,2.305511,0,0,OIF:SA:59:5081754,Europe/Paris,,OIF, +OIF:SP:59:5150787,1,"Zone Industrielle Nord",48.942943,2.317969,0,0,OIF:SA:59:5150787,Europe/Paris,,OIF, +OIF:SP:59:5150791,1,"Maréchal Leclerc",48.937228,2.324533,0,0,OIF:SA:59691,Europe/Paris,,OIF, +OIF:SP:59:5150795,1,"Acacias",48.933598,2.327125,0,0,OIF:SA:59691,Europe/Paris,,OIF, +OIF:SP:59:5150796,1,"Ampère",48.930865,2.325407,0,0,OIF:SA:59691,Europe/Paris,,OIF, +OIF:SP:59:5150797,1,"Ampère",48.930973,2.327385,0,0,OIF:SA:59691,Europe/Paris,,OIF, +OIF:SP:59:5150798,1,"Longue Bertrane",48.930308,2.320415,0,0,OIF:SA:59693,Europe/Paris,,OIF, +OIF:SP:59:5150800,1,"Henri Colin",48.925913,2.322449,0,0,OIF:SA:59:5150800,Europe/Paris,,OIF, +OIF:SP:59:5150801,1,"Henri Colin",48.926075,2.322517,0,0,OIF:SA:59:5150800,Europe/Paris,,OIF, +OIF:SP:59:5150806,1,"Gare de Franconville",48.993989,2.233431,0,0,OIF:SA:8727607,Europe/Paris,,OIF, +OIF:SP:59:5150807,1,"La Garancière",48.990569,2.228085,0,0,OIF:SA:51:378,Europe/Paris,,OIF, +OIF:SP:59:5150808,1,"Clos Milons",48.986046,2.224708,0,0,OIF:SA:59:5150808,Europe/Paris,,OIF, +OIF:SP:59:5150809,1,"Place Charles de Gaulle",48.983811,2.227553,0,0,OIF:SA:51:100,Europe/Paris,,OIF, +OIF:SP:59:5150810,1,"Église de Franconville",48.9833,2.229192,0,0,OIF:SA:51:17,Europe/Paris,,OIF, +OIF:SP:59:5150811,1,"Maison Bleue",48.979729,2.235917,0,0,OIF:SA:51:19,Europe/Paris,,OIF, +OIF:SP:59:5150812,1,"Maison Bleue",48.980582,2.234755,0,0,OIF:SA:51:19,Europe/Paris,,OIF, +OIF:SP:59:5150813,1,"Collège Jean Moulin",48.977945,2.240958,0,0,OIF:SA:51:21,Europe/Paris,,OIF, +OIF:SP:59:5150814,1,"Gambetta",48.974878,2.2494,0,0,OIF:SA:59:5150814,Europe/Paris,,OIF, +OIF:SP:59:5150815,1,"Gambetta",48.975049,2.249468,0,0,OIF:SA:59:5150814,Europe/Paris,,OIF, +OIF:SP:59:5150816,1,"Mairie de Sannois",48.9719,2.25679,0,0,OIF:SA:51:25,Europe/Paris,,OIF, +OIF:SP:59:5150817,1,"Mairie de Sannois",48.971532,2.258388,0,0,OIF:SA:51:25,Europe/Paris,,OIF, +OIF:SP:59:5150818,1,"Gare de Sannois",48.969972,2.263591,0,0,OIF:SA:8727618,Europe/Paris,,OIF, +OIF:SP:59:5150819,1,"Gare de Sannois",48.970016,2.262772,0,0,OIF:SA:8727618,Europe/Paris,,OIF, +OIF:SP:59:5150820,1,"Gare de Sannois - Maréchal Foch",48.969703,2.264356,0,0,OIF:SA:8727618,Europe/Paris,,OIF, +OIF:SP:59:5150821,1,"Gare de Sannois - Maréchal Foch",48.970718,2.2643,0,0,OIF:SA:8727618,Europe/Paris,,OIF, +OIF:SP:59:5150822,1,"Léon Protais",48.967631,2.271197,0,0,OIF:SA:59:5150822,Europe/Paris,,OIF, +OIF:SP:59:5150823,1,"Léon Protais",48.967721,2.271347,0,0,OIF:SA:59:5150822,Europe/Paris,,OIF, +OIF:SP:59:5150824,1,"Liberté",48.965982,2.279484,0,0,OIF:SA:8727617,Europe/Paris,,OIF, +OIF:SP:59:5150825,1,"Liberté",48.966251,2.279224,0,0,OIF:SA:8727617,Europe/Paris,,OIF, +OIF:SP:59:5150827,1,"Berthie Albrecht",48.965274,2.284412,0,0,OIF:SA:8727617,Europe/Paris,,OIF, +OIF:SP:59:5150828,1,"Saint-Gratien-RER-Guynemer",48.964054,2.288849,0,0,OIF:SA:8727617,Europe/Paris,,OIF, +OIF:SP:59:5150829,1,"Saint-Gratien-RER-Guynemer",48.964153,2.289081,0,0,OIF:SA:8727617,Europe/Paris,,OIF, +OIF:SP:59:5150832,1,"Joffre Cinéma",48.958028,2.301724,0,0,OIF:SA:59:5150832,Europe/Paris,,OIF, +OIF:SP:59:5150833,1,"Joffre Cinéma",48.958235,2.301833,0,0,OIF:SA:59:5150832,Europe/Paris,,OIF, +OIF:SP:59:5150834,1,"Gilbert Bonnemaison",48.954399,2.307676,0,0,OIF:SA:59912,Europe/Paris,,OIF, +OIF:SP:59:5150839,1,"Dequevauvilliers",48.946643,2.304842,0,0,OIF:SA:59:5081754,Europe/Paris,,OIF, +OIF:SP:59:5150840,1,"ZI du Val de Seine",48.944523,2.31127,0,0,OIF:SA:59:5150840,Europe/Paris,,OIF, +OIF:SP:59:5150841,1,"Commandant d'Estienne d'Orves",48.943428,2.315458,0,0,OIF:SA:59:5150841,Europe/Paris,,OIF, +OIF:SP:59:5150842,1,"Commandant d'Estienne d'Orves",48.943769,2.314831,0,0,OIF:SA:59:5150841,Europe/Paris,,OIF, +OIF:SP:59:5150843,1,"Zone Industrielle Nord",48.942754,2.31771,0,0,OIF:SA:59:5150787,Europe/Paris,,OIF, +OIF:SP:59:5150845,1,"Parc Départemental",48.940948,2.322308,0,0,OIF:SA:59:4016582,Europe/Paris,,OIF, +OIF:SP:59:5150846,1,"Parc Départemental",48.941452,2.321967,0,0,OIF:SA:59:4016582,Europe/Paris,,OIF, +OIF:SP:59:5150847,1,"Maréchal Leclerc",48.937084,2.324246,0,0,OIF:SA:59691,Europe/Paris,,OIF, +OIF:SP:59:5150851,1,"Acacias",48.933121,2.327057,0,0,OIF:SA:59691,Europe/Paris,,OIF, +OIF:SP:59:5150856,1,"Longue Bertrane",48.929921,2.32047,0,0,OIF:SA:59693,Europe/Paris,,OIF, +OIF:SP:59:5150860,1,"Bongarde",48.925168,2.326186,0,0,OIF:SA:59:5150860,Europe/Paris,,OIF, +OIF:SP:59:5150861,1,"ZI du Val de Seine",48.944748,2.311092,0,0,OIF:SA:59:5150861,Europe/Paris,,OIF, +OIF:SP:59:5150862,1,"Collège Jean Moulin",48.978071,2.241272,0,0,OIF:SA:51:21,Europe/Paris,,OIF, +OIF:SP:59:5150863,1,"Place de Charles de Gaulle",48.984134,2.22758,0,0,OIF:SA:51:100,Europe/Paris,,OIF, +OIF:SP:59:5150864,1,"Marche de Franconville",48.985797,2.228204,0,0,OIF:SA:51:110,Europe/Paris,,OIF, +OIF:SP:59:5150865,1,"Maurice Berteaux",48.989143,2.230887,0,0,OIF:SA:51:595,Europe/Paris,,OIF, +OIF:SP:59:5150868,1,"Mairie de Villeneuve-la-Garenne",48.935746,2.334382,0,0,OIF:SA:59689,Europe/Paris,,OIF, +OIF:SP:59:5151247,1,"Pompidou",48.896476,2.278171,0,0,OIF:SA:59:5151247,Europe/Paris,,OIF, +OIF:SP:59:5151251,1,"Paix - Verdun",48.900268,2.260254,0,0,OIF:SA:59:4024802,Europe/Paris,,OIF, +OIF:SP:59:5151252,1,"Stade de Courbevoie",48.899007,2.256862,0,0,OIF:SA:59:4024829,Europe/Paris,,OIF, +OIF:SP:59:5151253,1,"Hérold - Mairie de Courbevoie",48.896966,2.255979,0,0,OIF:SA:59:4024827,Europe/Paris,,OIF, +OIF:SP:59:5151254,1,"Alma Baudin",48.896388,2.251809,0,0,OIF:SA:59:4024825,Europe/Paris,,OIF, +OIF:SP:59:5151255,1,"Place Charras",48.894904,2.249344,0,0,OIF:SA:59:4023374,Europe/Paris,,OIF, +OIF:SP:59:5151445,1,"Robinson RER",48.780367,2.281716,0,0,OIF:SA:8775872,Europe/Paris,,OIF, +OIF:SP:59:5151447,1,"Robinson",48.780048,2.27357,0,0,OIF:SA:24:15047,Europe/Paris,,OIF, +OIF:SP:59:5151448,1,"Robinson",48.779671,2.274141,0,0,OIF:SA:24:15047,Europe/Paris,,OIF, +OIF:SP:59:5151450,1,"Cité Basse",48.781916,2.270317,0,0,OIF:SA:59:5121835,Europe/Paris,,OIF, +OIF:SP:59:5151462,1,"La Cavée",48.787805,2.258421,0,0,OIF:SA:59:5151462,Europe/Paris,,OIF, +OIF:SP:59:5151463,1,"Soleil Levant",48.790271,2.263668,0,0,OIF:SA:59856,Europe/Paris,,OIF, +OIF:SP:59:5151465,1,"Général de Gaulle",48.801094,2.283286,0,0,OIF:SA:59852,Europe/Paris,,OIF, +OIF:SP:59:5151466,1,"Général de Gaulle",48.800582,2.282837,0,0,OIF:SA:59852,Europe/Paris,,OIF, +OIF:SP:59:5151467,1,"Jeanne d'Arc",48.801209,2.278619,0,0,OIF:SA:59:5151467,Europe/Paris,,OIF, +OIF:SP:59:5151468,1,"Jeanne d'Arc",48.801065,2.278578,0,0,OIF:SA:59:5151467,Europe/Paris,,OIF, +OIF:SP:59:5151481,1,"Clos Montholon",48.813935,2.27723,0,0,OIF:SA:59:4473560,Europe/Paris,,OIF, +OIF:SP:59:5151482,1,"Clos Montholon",48.814268,2.277733,0,0,OIF:SA:59:4473560,Europe/Paris,,OIF, +OIF:SP:59:5151483,1,"Stade de Vanves",48.816147,2.279922,0,0,OIF:SA:24:15312,Europe/Paris,,OIF, +OIF:SP:59:5151484,1,"Stade de Vanves",48.816417,2.279908,0,0,OIF:SA:24:15312,Europe/Paris,,OIF, +OIF:SP:59:5151485,1,"Rue de Châtillon",48.817965,2.284384,0,0,OIF:SA:59:5151485,Europe/Paris,,OIF, +OIF:SP:59:5151486,1,"Rue de Châtillon",48.817757,2.283282,0,0,OIF:SA:59:5151485,Europe/Paris,,OIF, +OIF:SP:59:5151526,1,"Victor Hugo",48.827747,2.274369,0,0,OIF:SA:59:3442569,Europe/Paris,,OIF, +OIF:SP:59:5156448,1,"Musée",48.82284,2.273667,0,0,OIF:SA:59522,Europe/Paris,,OIF, +OIF:SP:59:5156520,1,"Pierre de Geyter",48.931889,2.352714,0,0,OIF:SA:59886,Europe/Paris,,OIF, +OIF:SP:59:5157025,1,"Pierre de Geyter",48.932042,2.352987,0,0,OIF:SA:59886,Europe/Paris,,OIF, +OIF:SP:59:5157986,1,"Casino",48.969558,2.303982,0,0,OIF:SA:59:5157986,Europe/Paris,,OIF, +OIF:SP:59:5157987,1,"Casino",48.968813,2.305415,0,0,OIF:SA:59:5157986,Europe/Paris,,OIF, +OIF:SP:59:5158002,1,"Gilbert Bonnemaison",48.955145,2.30818,0,0,OIF:SA:59912,Europe/Paris,,OIF, +OIF:SP:59:5158008,1,"Les Béatus",48.951517,2.320231,0,0,OIF:SA:59906,Europe/Paris,,OIF, +OIF:SP:59:5158009,1,"Les Béatus",48.951822,2.320395,0,0,OIF:SA:59906,Europe/Paris,,OIF, +OIF:SP:59:5158012,1,"Avenue de la Marne - Commandant Louis Bouchet",48.953126,2.32749,0,0,OIF:SA:59:5150720,Europe/Paris,,OIF, +OIF:SP:59:5158014,1,"Rue des Presles",48.956325,2.326343,0,0,OIF:SA:8727112,Europe/Paris,,OIF, +OIF:SP:59:5158015,1,"Rue des Presles",48.955876,2.326288,0,0,OIF:SA:8727112,Europe/Paris,,OIF, +OIF:SP:59:5158016,1,"Gare d'Epinay-Villetaneuse",48.958069,2.329017,0,0,OIF:SA:8727112,Europe/Paris,,OIF, +OIF:SP:59:5158022,1,"César",48.949612,2.341804,0,0,OIF:SA:59:4472728,Europe/Paris,,OIF, +OIF:SP:59:5158023,1,"Blumenthal",48.946808,2.342663,0,0,OIF:SA:59:5158023,Europe/Paris,,OIF, +OIF:SP:59:5158024,1,"Blumenthal",48.946764,2.343018,0,0,OIF:SA:59:5158023,Europe/Paris,,OIF, +OIF:SP:59:5158025,1,"La Briche",48.941776,2.341407,0,0,OIF:SA:59:5150714,Europe/Paris,,OIF, +OIF:SP:59:5158026,1,"La Briche",48.942063,2.341762,0,0,OIF:SA:59:5150714,Europe/Paris,,OIF, +OIF:SP:59:5158028,1,"Rue du Port",48.936635,2.342771,0,0,OIF:SA:59:5150713,Europe/Paris,,OIF, +OIF:SP:59:5158029,1,"L'Île-Saint-Denis",48.935854,2.339702,0,0,OIF:SA:59687,Europe/Paris,,OIF, +OIF:SP:59:5158030,1,"L'Île-Saint-Denis",48.935674,2.339824,0,0,OIF:SA:59687,Europe/Paris,,OIF, +OIF:SP:59:5158032,1,"Mairie de Villeneuve-la-Garenne",48.935395,2.334027,0,0,OIF:SA:59689,Europe/Paris,,OIF, +OIF:SP:59:5158033,1,"La Noue",48.935107,2.326606,0,0,OIF:SA:59691,Europe/Paris,,OIF, +OIF:SP:59:5158034,1,"La Noue",48.93473,2.325952,0,0,OIF:SA:59691,Europe/Paris,,OIF, +OIF:SP:59:5158035,1,"Chemin des Reniers",48.934792,2.322091,0,0,OIF:SA:59693,Europe/Paris,,OIF, +OIF:SP:59:5158036,1,"Parc des Chanteraines",48.934045,2.313253,0,0,OIF:SA:59695,Europe/Paris,,OIF, +OIF:SP:59:5158037,1,"Parc des Chanteraines",48.933703,2.313089,0,0,OIF:SA:59695,Europe/Paris,,OIF, +OIF:SP:59:5158041,1,"Le Village",48.933231,2.29372,0,0,OIF:SA:59701,Europe/Paris,,OIF, +OIF:SP:59:5158042,1,"Le Village",48.933006,2.293911,0,0,OIF:SA:59701,Europe/Paris,,OIF, +OIF:SP:59:5158043,1,"Le Luth",48.931611,2.288156,0,0,OIF:SA:59703,Europe/Paris,,OIF, +OIF:SP:59:5158044,1,"Le Luth",48.931377,2.288061,0,0,OIF:SA:59703,Europe/Paris,,OIF, +OIF:SP:59:5158046,1,"Les Courtilles",48.930423,2.285048,0,0,OIF:SA:59582,Europe/Paris,,OIF, +OIF:SP:59:5158051,1,"Gillet",48.92018,2.288644,0,0,OIF:SA:59:5158051,Europe/Paris,,OIF, +OIF:SP:59:5158052,1,"Gillet",48.920369,2.28878,0,0,OIF:SA:59:5158051,Europe/Paris,,OIF, +OIF:SP:59:5158054,1,"Gabriel Péri - Métro",48.916668,2.295043,0,0,OIF:SA:59613,Europe/Paris,,OIF, +OIF:SP:59:5158062,1,"Victor Hugo - Jean Jaurès",48.897018,2.308921,0,0,OIF:SA:59:4758995,Europe/Paris,,OIF, +OIF:SP:59:5158082,1,"Gare Saint-Lazare",48.874426,2.325556,0,0,OIF:SA:8738400,Europe/Paris,,OIF, +OIF:SP:59:5158084,1,"Rue des Moines",48.89045,2.320632,0,0,OIF:SA:59535,Europe/Paris,,OIF, +OIF:SP:59:5158085,1,"Victor Hugo - 8 Mai 1945",48.898465,2.310215,0,0,OIF:SA:59:5158085,Europe/Paris,,OIF, +OIF:SP:59:5158090,1,"Timbaud - Félicie",48.932631,2.301509,0,0,OIF:SA:59699,Europe/Paris,,OIF, +OIF:SP:59:5158091,1,"Chemin des Reniers",48.934271,2.319514,0,0,OIF:SA:59:5158091,Europe/Paris,,OIF, +OIF:SP:59:5158092,1,"Jean-Baptiste Clément - Carnot",48.953126,2.336851,0,0,OIF:SA:59:5158092,Europe/Paris,,OIF, +OIF:SP:59:5158093,1,"Yser",48.954438,2.334872,0,0,OIF:SA:59:5158093,Europe/Paris,,OIF, +OIF:SP:59:5158094,1,"Gare d'Epinay-Villetaneuse",48.957934,2.330205,0,0,OIF:SA:8727112,Europe/Paris,,OIF, +OIF:SP:59:5161412,1,"Mairie de Montrouge - Métro",48.817858,2.322043,0,0,OIF:SA:59776,Europe/Paris,,OIF, +OIF:SP:59:5161414,1,"Verdier",48.8142,2.320153,0,0,OIF:SA:59:5161414,Europe/Paris,,OIF, +OIF:SP:59:5161415,1,"Boileau",48.811405,2.318398,0,0,OIF:SA:59:5161415,Europe/Paris,,OIF, +OIF:SP:59:5161416,1,"Boileau",48.81224,2.315948,0,0,OIF:SA:59:5161415,Europe/Paris,,OIF, +OIF:SP:59:5161417,1,"Cimetière Parisien",48.809301,2.316739,0,0,OIF:SA:59:5161417,Europe/Paris,,OIF, +OIF:SP:59:5161418,1,"Jean-Marin Naudin",48.805768,2.313311,0,0,OIF:SA:59:4889627,Europe/Paris,,OIF, +OIF:SP:59:5161419,1,"Jean-Marin Naudin",48.806209,2.313978,0,0,OIF:SA:59:4889627,Europe/Paris,,OIF, +OIF:SP:59:5161420,1,"Pasteur",48.801894,2.310497,0,0,OIF:SA:59:5161420,Europe/Paris,,OIF, +OIF:SP:59:5161421,1,"Pasteur",48.802029,2.310959,0,0,OIF:SA:59:5161420,Europe/Paris,,OIF, +OIF:SP:59:5161422,1,"Rue de l'Égalité",48.800393,2.30847,0,0,OIF:SA:59:5161422,Europe/Paris,,OIF, +OIF:SP:59:5161423,1,"Rue de l'Égalité",48.800465,2.30896,0,0,OIF:SA:59:5161422,Europe/Paris,,OIF, +OIF:SP:59:5161424,1,"Hôtel de Ville de Bagneux",48.798459,2.303886,0,0,OIF:SA:59:5161424,Europe/Paris,,OIF, +OIF:SP:59:5161425,1,"Hôtel de Ville de Bagneux",48.798702,2.304988,0,0,OIF:SA:59:5161424,Europe/Paris,,OIF, +OIF:SP:59:5161428,1,"Dampierre",48.795627,2.301548,0,0,OIF:SA:59:4458769,Europe/Paris,,OIF, +OIF:SP:59:5161429,1,"Sentier des Lilas",48.793046,2.295836,0,0,OIF:SA:59:5161429,Europe/Paris,,OIF, +OIF:SP:59:5161430,1,"Sentier des Lilas",48.79328,2.296938,0,0,OIF:SA:59:5161429,Europe/Paris,,OIF, +OIF:SP:59:5161431,1,"Château Sainte-Barbe",48.789405,2.292697,0,0,OIF:SA:59:5067604,Europe/Paris,,OIF, +OIF:SP:59:5161432,1,"Château Sainte-Barbe",48.790744,2.292233,0,0,OIF:SA:59:5067604,Europe/Paris,,OIF, +OIF:SP:59:5161433,1,"Fontenay-aux-Roses RER",48.788245,2.293283,0,0,OIF:SA:8775871,Europe/Paris,,OIF, +OIF:SP:59:5161434,1,"Fontenay-aux-Roses RER",48.787787,2.293569,0,0,OIF:SA:8775871,Europe/Paris,,OIF, +OIF:SP:59:5161435,1,"Gambetta",48.784938,2.293313,0,0,OIF:SA:59:5161435,Europe/Paris,,OIF, +OIF:SP:59:5161436,1,"Gambetta",48.784947,2.293585,0,0,OIF:SA:59:5161435,Europe/Paris,,OIF, +OIF:SP:59:5161437,1,"Rue du Lycée",48.781459,2.293193,0,0,OIF:SA:59:5161437,Europe/Paris,,OIF, +OIF:SP:59:5161438,1,"Rue du Lycée",48.781792,2.29356,0,0,OIF:SA:59:5161437,Europe/Paris,,OIF, +OIF:SP:59:5161440,1,"Fontenay - Houdan",48.779347,2.292012,0,0,OIF:SA:59:4834630,Europe/Paris,,OIF, +OIF:SP:59:5161447,1,"Rosenberg",48.797461,2.302445,0,0,OIF:SA:59:4458770,Europe/Paris,,OIF, +OIF:SP:59:5161448,1,"Cimetière Parisien",48.810128,2.317283,0,0,OIF:SA:59:5161417,Europe/Paris,,OIF, +OIF:SP:59:5161453,1,"Fleury",48.810553,2.258237,0,0,OIF:SA:59:3909037,Europe/Paris,,OIF, +OIF:SP:59:5161464,1,"Cimetière de Fontenay-aux-Roses",48.794743,2.291373,0,0,OIF:SA:59:5161464,Europe/Paris,,OIF, +OIF:SP:59:5161465,1,"Cimetière de Fontenay-aux-Roses",48.794419,2.291496,0,0,OIF:SA:59:5161464,Europe/Paris,,OIF, +OIF:SP:59:5161470,1,"Augustin Claude",48.786292,2.286905,0,0,OIF:SA:59:5067471,Europe/Paris,,OIF, +OIF:SP:59:5161471,1,"Augustin Claude",48.786221,2.287123,0,0,OIF:SA:59:5067471,Europe/Paris,,OIF, +OIF:SP:59:5161475,1,"Professeur Einstein",48.775565,2.277573,0,0,OIF:SA:59:5161475,Europe/Paris,,OIF, +OIF:SP:59:5161476,1,"Professeur Einstein",48.7757,2.277954,0,0,OIF:SA:59:5161475,Europe/Paris,,OIF, +OIF:SP:59:5161480,1,"Jean Jaurès",48.770045,2.274262,0,0,OIF:SA:59:5161480,Europe/Paris,,OIF, +OIF:SP:59:5161485,1,"Président Allende",48.764327,2.271903,0,0,OIF:SA:59:5121051,Europe/Paris,,OIF, +OIF:SP:59:5161486,1,"Président Allende",48.764435,2.272202,0,0,OIF:SA:59:5121051,Europe/Paris,,OIF, +OIF:SP:59:5161508,1,"Amblainvilliers",48.737066,2.244841,0,0,OIF:SA:59:5161508,Europe/Paris,,OIF, +OIF:SP:59:5161510,1,"Rond-Point des Vallées",48.736098,2.237056,0,0,OIF:SA:59:5161510,Europe/Paris,,OIF, +OIF:SP:59:5161511,1,"Kennedy - Bellevue",48.738222,2.229945,0,0,OIF:SA:59:5161511,Europe/Paris,,OIF, +OIF:SP:59:5161512,1,"Kennedy - Bellevue",48.738078,2.229891,0,0,OIF:SA:59:5161511,Europe/Paris,,OIF, +OIF:SP:59:5161518,1,"Groupe Scolaire Sophie Barat",48.758017,2.269831,0,0,OIF:SA:59:5161518,Europe/Paris,,OIF, +OIF:SP:59:5161521,1,"Vache Noire - Centre Commercial",48.809806,2.32738,0,0,OIF:SA:59:5161521,Europe/Paris,,OIF, +OIF:SP:59:5161522,1,"Vache Noire - Centre Commercial",48.810004,2.327489,0,0,OIF:SA:59:5161521,Europe/Paris,,OIF, +OIF:SP:59:5161523,1,"Lénine",48.808566,2.330959,0,0,OIF:SA:59:5161523,Europe/Paris,,OIF, +OIF:SP:59:5161528,1,"Maison du Grand Cèdre",48.803209,2.33813,0,0,OIF:SA:59:3755008,Europe/Paris,,OIF, +OIF:SP:59:5161529,1,"Maison du Grand Cèdre",48.802957,2.338348,0,0,OIF:SA:59:3755008,Europe/Paris,,OIF, +OIF:SP:59:5161530,1,"Quatre Chemins",48.799092,2.344715,0,0,OIF:SA:59:3755006,Europe/Paris,,OIF, +OIF:SP:59:5161531,1,"Quatre Chemins",48.799946,2.343232,0,0,OIF:SA:59:3755006,Europe/Paris,,OIF, +OIF:SP:59:5161532,1,"Belvédère",48.797384,2.348592,0,0,OIF:SA:59:5161532,Europe/Paris,,OIF, +OIF:SP:59:5161533,1,"Belvédère",48.797879,2.347871,0,0,OIF:SA:59:5161532,Europe/Paris,,OIF, +OIF:SP:59:5161534,1,"Institut Gustave Roussy",48.794642,2.354223,0,0,OIF:SA:59:4458786,Europe/Paris,,OIF, +OIF:SP:59:5161535,1,"Institut Gustave Roussy",48.79404,2.354278,0,0,OIF:SA:59:4458786,Europe/Paris,,OIF, +OIF:SP:59:5161536,1,"Institut Gustave Roussy - Entrée Principale",48.793861,2.34972,0,0,OIF:SA:59:4458786,Europe/Paris,,OIF, +OIF:SP:59:5161537,1,"Institut Gustave Roussy - Entrée Principale",48.79369,2.35006,0,0,OIF:SA:59:4458786,Europe/Paris,,OIF, +OIF:SP:59:5161540,1,"Verdun - République",48.787425,2.354779,0,0,OIF:SA:59:5161540,Europe/Paris,,OIF, +OIF:SP:59:5161541,1,"Verdun - République",48.787641,2.354956,0,0,OIF:SA:59:5161540,Europe/Paris,,OIF, +OIF:SP:59:5161542,1,"Hôpital Paul Guiraud",48.788395,2.359227,0,0,OIF:SA:59:5161542,Europe/Paris,,OIF, +OIF:SP:59:5161543,1,"Hôpital Paul Guiraud",48.78835,2.357853,0,0,OIF:SA:59:5161542,Europe/Paris,,OIF, +OIF:SP:59:5161544,1,"Auguste Delaune",48.788421,2.362301,0,0,OIF:SA:59:5161544,Europe/Paris,,OIF, +OIF:SP:59:5161545,1,"Auguste Delaune",48.788565,2.361186,0,0,OIF:SA:59:5161544,Europe/Paris,,OIF, +OIF:SP:59:5161546,1,"Villejuif - Louis Aragon",48.787953,2.367769,0,0,OIF:SA:59809,Europe/Paris,,OIF, +OIF:SP:59:5161547,1,"Villejuif - Louis Aragon",48.787305,2.367429,0,0,OIF:SA:59809,Europe/Paris,,OIF, +OIF:SP:59:5207674,1,"Joffre",48.840125,2.185606,0,0,OIF:SA:8738225,Europe/Paris,,OIF, +OIF:SP:59:5221744,1,"Pierre Brossolette - Gabriel Péri",48.819465,2.310052,0,0,OIF:SA:59:3442551,Europe/Paris,,OIF, +OIF:SP:59:5221750,1,"Marcelin Berthelot",48.809566,2.296449,0,0,OIF:SA:59:5221750,Europe/Paris,,OIF, +OIF:SP:59:5221751,1,"Marcelin Berthelot",48.809395,2.296518,0,0,OIF:SA:59:5221750,Europe/Paris,,OIF, +OIF:SP:59:5221752,1,"Jean Mermoz",48.808782,2.291783,0,0,OIF:SA:59:4473569,Europe/Paris,,OIF, +OIF:SP:59:5221753,1,"Jean Mermoz",48.80881,2.292926,0,0,OIF:SA:59:4473569,Europe/Paris,,OIF, +OIF:SP:59:5221754,1,"Stade de Châtillon",48.808287,2.288653,0,0,OIF:SA:59:5221754,Europe/Paris,,OIF, +OIF:SP:59:5221755,1,"Stade de Châtillon",48.808098,2.288504,0,0,OIF:SA:59:5221754,Europe/Paris,,OIF, +OIF:SP:59:5221758,1,"Centre de Châtillon - Marche",48.802111,2.287366,0,0,OIF:SA:59850,Europe/Paris,,OIF, +OIF:SP:59:5221759,1,"Centre de Châtillon - Marche",48.801914,2.28753,0,0,OIF:SA:59850,Europe/Paris,,OIF, +OIF:SP:59:5221762,1,"Pierrelais",48.797842,2.286758,0,0,OIF:SA:59:5221762,Europe/Paris,,OIF, +OIF:SP:59:5221763,1,"Pierrelais",48.797977,2.287234,0,0,OIF:SA:59:5221762,Europe/Paris,,OIF, +OIF:SP:59:5221764,1,"Le Plateau",48.796385,2.285141,0,0,OIF:SA:59:5221764,Europe/Paris,,OIF, +OIF:SP:59:5221765,1,"André Salel",48.793203,2.284232,0,0,OIF:SA:59:3909025,Europe/Paris,,OIF, +OIF:SP:59:5221766,1,"André Salel",48.793841,2.284545,0,0,OIF:SA:59:3909025,Europe/Paris,,OIF, +OIF:SP:59:5221767,1,"Carnot - Jean Jaurès",48.790552,2.284276,0,0,OIF:SA:59:3909023,Europe/Paris,,OIF, +OIF:SP:59:5221768,1,"Carnot - Jean Jaurès",48.791019,2.284888,0,0,OIF:SA:59:3909023,Europe/Paris,,OIF, +OIF:SP:59:5221770,1,"Abbé Grandjean",48.787424,2.283966,0,0,OIF:SA:59:3909007,Europe/Paris,,OIF, +OIF:SP:59:5221792,1,"Pasteur",48.785498,2.27918,0,0,OIF:SA:59:5221792,Europe/Paris,,OIF, +OIF:SP:59:5231529,1,"Cités Unies",48.839096,2.657717,0,0,OIF:SA:59:5231529,Europe/Paris,,OIF, +OIF:SP:59:5231530,1,"Salvador Allende",48.842389,2.656294,0,0,OIF:SA:59:5231530,Europe/Paris,,OIF, +OIF:SP:59:5231531,1,"Rives de Maubuée",48.845263,2.653616,0,0,OIF:SA:59:5231531,Europe/Paris,,OIF, +OIF:SP:59:5231532,1,"Jacques Prévert",48.847065,2.652224,0,0,OIF:SA:59:5231532,Europe/Paris,,OIF, +OIF:SP:59:5231533,1,"Rue des Épinettes",48.848177,2.656316,0,0,OIF:SA:59:5231533,Europe/Paris,,OIF, +OIF:SP:59:5231534,1,"La Mare aux Marchais",48.850763,2.657395,0,0,OIF:SA:59:5231534,Europe/Paris,,OIF, +OIF:SP:59:5231535,1,"Mairie de Torcy",48.850885,2.652043,0,0,OIF:SA:59:5231535,Europe/Paris,,OIF, +OIF:SP:59:5231536,1,"Les Tilleuls",48.850331,2.647505,0,0,OIF:SA:59:5231536,Europe/Paris,,OIF, +OIF:SP:59:5231537,1,"Bel Air",48.84962,2.640882,0,0,OIF:SA:59:5231537,Europe/Paris,,OIF, +OIF:SP:59:5231538,1,"La Mogotte",48.849841,2.638609,0,0,OIF:SA:59:3681471,Europe/Paris,,OIF, +OIF:SP:59:5231539,1,"Cité Scolaire",48.850294,2.633709,0,0,OIF:SA:59:5231539,Europe/Paris,,OIF, +OIF:SP:59:5231543,1,"Maison de Retraite",48.85259,2.609344,0,0,OIF:SA:59:5231543,Europe/Paris,,OIF, +OIF:SP:59:5231544,1,"Mairie de Champs",48.852392,2.601402,0,0,OIF:SA:59:5231544,Europe/Paris,,OIF, +OIF:SP:59:5231546,1,"Les Iris",48.85543,2.593083,0,0,OIF:SA:59:5231546,Europe/Paris,,OIF, +OIF:SP:59:5231548,1,"Rond-Point des Pyramides",48.855513,2.583658,0,0,OIF:SA:59:5231548,Europe/Paris,,OIF, +OIF:SP:59:5231551,1,"Les Prévoyants",48.852865,2.573295,0,0,OIF:SA:59:5231551,Europe/Paris,,OIF, +OIF:SP:59:5231557,1,"Noisy-le-Grand - Mont d'Est RER",48.840789,2.552352,0,0,OIF:SA:8775833,Europe/Paris,,OIF, +OIF:SP:59:5231558,1,"Route de Neuilly",48.848291,2.53882,0,0,OIF:SA:59:4208523,Europe/Paris,,OIF, +OIF:SP:59:5231565,1,"Neuilly-Plaisance RER",48.853129,2.513956,0,0,OIF:SA:8775831,Europe/Paris,,OIF, +OIF:SP:59:5231569,1,"Croix d'Eau",48.849992,2.49567,0,0,OIF:SA:59:5231569,Europe/Paris,,OIF, +OIF:SP:59:5231570,1,"Val de Fontenay RER - Louison Bobet",48.852536,2.487805,0,0,OIF:SA:8711371,Europe/Paris,,OIF, +OIF:SP:59:5231571,1,"Val de Fontenay RER",48.8534,2.487359,0,0,OIF:SA:8711371,Europe/Paris,,OIF, +OIF:SP:59:5231572,1,"Pablo Picasso",48.855353,2.484681,0,0,OIF:SA:59:3690363,Europe/Paris,,OIF, +OIF:SP:59:5231573,1,"Jean Macé",48.856246,2.482109,0,0,OIF:SA:59:4199366,Europe/Paris,,OIF, +OIF:SP:59:5231574,1,"La Fontaine",48.858423,2.480944,0,0,OIF:SA:59:4199364,Europe/Paris,,OIF, +OIF:SP:59:5231575,1,"Cimetière de Vincennes",48.859951,2.480812,0,0,OIF:SA:59:5231575,Europe/Paris,,OIF, +OIF:SP:59:5231577,1,"Le Morillon",48.864645,2.47821,0,0,OIF:SA:59:4199360,Europe/Paris,,OIF, +OIF:SP:59:5231578,1,"Charles Delavacquerie",48.866543,2.477125,0,0,OIF:SA:59:4199358,Europe/Paris,,OIF, +OIF:SP:59:5231579,1,"Babeuf",48.866968,2.474987,0,0,OIF:SA:59:4199356,Europe/Paris,,OIF, +OIF:SP:59:5231580,1,"Saint-Exupéry",48.869013,2.47081,0,0,OIF:SA:59:3688542,Europe/Paris,,OIF, +OIF:SP:59:5231581,1,"Fort de Rosny",48.871045,2.469644,0,0,OIF:SA:59:3687729,Europe/Paris,,OIF, +OIF:SP:59:5231582,1,"Acacia",48.869748,2.464423,0,0,OIF:SA:59:3687728,Europe/Paris,,OIF, +OIF:SP:59:5231583,1,"Nouvelle France",48.868467,2.460183,0,0,OIF:SA:59:3687727,Europe/Paris,,OIF, +OIF:SP:59:5231584,1,"Edouard Branly",48.867248,2.456665,0,0,OIF:SA:59:3687726,Europe/Paris,,OIF, +OIF:SP:59:5231585,1,"Danton",48.864744,2.452981,0,0,OIF:SA:59:3687725,Europe/Paris,,OIF, +OIF:SP:59:5231586,1,"Lycée Jean Jaurès",48.863427,2.449287,0,0,OIF:SA:59:3687724,Europe/Paris,,OIF, +OIF:SP:59:5231587,1,"Centre Administratif",48.860825,2.443901,0,0,OIF:SA:59:5231587,Europe/Paris,,OIF, +OIF:SP:59:5231588,1,"Mairie de Montreuil - Rouget de Lisle",48.861978,2.441165,0,0,OIF:SA:59507,Europe/Paris,,OIF, +OIF:SP:59:5231591,1,"Marche de Montreuil",48.858507,2.43349,0,0,OIF:SA:59:4459279,Europe/Paris,,OIF, +OIF:SP:59:5231592,1,"Sorins",48.858708,2.428532,0,0,OIF:SA:59:4459278,Europe/Paris,,OIF, +OIF:SP:59:5231598,1,"Hôpital Tenon",48.864901,2.400876,0,0,OIF:SA:59325,Europe/Paris,,OIF, +OIF:SP:59:5231603,1,"Folie Regnault - Chemin Vert",48.861709,2.385425,0,0,OIF:SA:59:5231603,Europe/Paris,,OIF, +OIF:SP:59:5231604,1,"Roquette - Père Lachaise",48.859659,2.386568,0,0,OIF:SA:59:5231604,Europe/Paris,,OIF, +OIF:SP:59:5231620,1,"Roquette - Père Lachaise",48.860458,2.38883,0,0,OIF:SA:59584,Europe/Paris,,OIF, +OIF:SP:59:5231653,1,"Avron",48.849762,2.499155,0,0,OIF:SA:59:5231653,Europe/Paris,,OIF, +OIF:SP:59:5231654,1,"Jules Ferry",48.850798,2.504252,0,0,OIF:SA:59:3682878,Europe/Paris,,OIF, +OIF:SP:59:5231655,1,"Jouleau",48.851646,2.508177,0,0,OIF:SA:59:3682880,Europe/Paris,,OIF, +OIF:SP:59:5231656,1,"Neuilly-Plaisance RER",48.852833,2.514187,0,0,OIF:SA:8775831,Europe/Paris,,OIF, +OIF:SP:59:5231662,1,"Rene Navier",48.849823,2.536184,0,0,OIF:SA:59:4614641,Europe/Paris,,OIF, +OIF:SP:59:5231663,1,"Route de Neuilly",48.847111,2.54015,0,0,OIF:SA:59:4208523,Europe/Paris,,OIF, +OIF:SP:59:5231664,1,"Noisy-le-Grand - Mont d'Est RER",48.840923,2.553061,0,0,OIF:SA:8775833,Europe/Paris,,OIF, +OIF:SP:59:5231665,1,"République",48.845198,2.549498,0,0,OIF:SA:59:4614646,Europe/Paris,,OIF, +OIF:SP:59:5231666,1,"Espace Michel Simon",48.846199,2.55292,0,0,OIF:SA:59:4614648,Europe/Paris,,OIF, +OIF:SP:59:5231667,1,"Mairie de Noisy-le-Grand",48.848778,2.552944,0,0,OIF:SA:59:4614491,Europe/Paris,,OIF, +OIF:SP:59:5231668,1,"Carrefour de Malnoue",48.848903,2.558582,0,0,OIF:SA:59:4614492,Europe/Paris,,OIF, +OIF:SP:59:5231669,1,"Pointe de Gournay",48.849266,2.565843,0,0,OIF:SA:59:4614512,Europe/Paris,,OIF, +OIF:SP:59:5231670,1,"Les Prévoyants",48.853232,2.573882,0,0,OIF:SA:59:5231551,Europe/Paris,,OIF, +OIF:SP:59:5231671,1,"Les Rosiers",48.856155,2.577137,0,0,OIF:SA:59:4208536,Europe/Paris,,OIF, +OIF:SP:59:5231672,1,"Place Churchill",48.85843,2.58137,0,0,OIF:SA:59:4208538,Europe/Paris,,OIF, +OIF:SP:59:5231673,1,"Rond-Point des Pyramides",48.855414,2.583848,0,0,OIF:SA:59:5231548,Europe/Paris,,OIF, +OIF:SP:59:5231674,1,"C.S.T.B. - Matteotti",48.855867,2.590511,0,0,OIF:SA:59:5150765,Europe/Paris,,OIF, +OIF:SP:59:5231675,1,"Les Iris",48.855223,2.593286,0,0,OIF:SA:59:5231546,Europe/Paris,,OIF, +OIF:SP:59:5231677,1,"Mairie de Champs",48.852239,2.601633,0,0,OIF:SA:59:5231544,Europe/Paris,,OIF, +OIF:SP:59:5231678,1,"Maison de Retraite",48.852437,2.609588,0,0,OIF:SA:59:5231543,Europe/Paris,,OIF, +OIF:SP:59:5231682,1,"Cité Scolaire",48.850132,2.633653,0,0,OIF:SA:59:5231539,Europe/Paris,,OIF, +OIF:SP:59:5231683,1,"La Mogotte",48.849625,2.638935,0,0,OIF:SA:59:3681471,Europe/Paris,,OIF, +OIF:SP:59:5231684,1,"Bel Air",48.849375,2.641507,0,0,OIF:SA:59:5231537,Europe/Paris,,OIF, +OIF:SP:59:5231685,1,"Les Tilleuls",48.850186,2.647858,0,0,OIF:SA:59:5231536,Europe/Paris,,OIF, +OIF:SP:59:5231686,1,"Mairie de Torcy",48.850714,2.652097,0,0,OIF:SA:59:5231535,Europe/Paris,,OIF, +OIF:SP:59:5231687,1,"La Mare aux Marchais",48.850601,2.657448,0,0,OIF:SA:59:5231534,Europe/Paris,,OIF, +OIF:SP:59:5231688,1,"Rue des Épinettes",48.84867,2.656742,0,0,OIF:SA:59:5231533,Europe/Paris,,OIF, +OIF:SP:59:5231689,1,"Jacques Prévert",48.846948,2.652128,0,0,OIF:SA:59:5231532,Europe/Paris,,OIF, +OIF:SP:59:5231690,1,"Rives de Maubuée",48.845084,2.653574,0,0,OIF:SA:59:5231531,Europe/Paris,,OIF, +OIF:SP:59:5231691,1,"Salvador Allende",48.842841,2.655467,0,0,OIF:SA:59:5231530,Europe/Paris,,OIF, +OIF:SP:59:5231692,1,"Cités Unies",48.839249,2.657419,0,0,OIF:SA:59:5231529,Europe/Paris,,OIF, +OIF:SP:59:5231693,1,"Torcy-RER",48.839231,2.654396,0,0,OIF:SA:8775837,Europe/Paris,,OIF, +OIF:SP:59:5231694,1,"Amblainvilliers",48.738639,2.24409,0,0,OIF:SA:59:5231694,Europe/Paris,,OIF, +OIF:SP:59:5231705,1,"Grands Chênes",48.742777,2.262688,0,0,OIF:SA:59:5231705,Europe/Paris,,OIF, +OIF:SP:59:5231722,1,"Theatre-Mairie",48.754919,2.296641,0,0,OIF:SA:59:5231722,Europe/Paris,,OIF, +OIF:SP:59:5231723,1,"Theatre-Mairie",48.755054,2.296777,0,0,OIF:SA:59:5231722,Europe/Paris,,OIF, +OIF:SP:59:5231725,1,"Antony RER",48.755576,2.301494,0,0,OIF:SA:8775875,Europe/Paris,,OIF, +OIF:SP:59:5244890,1,"Centre Sportif Lionel Terray",48.735006,2.287675,0,0,OIF:SA:59:5244890,Europe/Paris,,OIF, +OIF:SP:59:5244894,1,"Collège des Rabats",48.739336,2.305609,0,0,OIF:SA:59:5244894,Europe/Paris,,OIF, +OIF:SP:59:5244895,1,"Aubépine",48.743283,2.311111,0,0,OIF:SA:59:5244895,Europe/Paris,,OIF, +OIF:SP:59:5244896,1,"Les Rabats - Armand Guillebaud",48.745342,2.313801,0,0,OIF:SA:59:5244896,Europe/Paris,,OIF, +OIF:SP:59:5244897,1,"Descartes",48.74819,2.308702,0,0,OIF:SA:59:5244897,Europe/Paris,,OIF, +OIF:SP:59:5244898,1,"Descartes",48.747885,2.309314,0,0,OIF:SA:59:5244897,Europe/Paris,,OIF, +OIF:SP:59:5244899,1,"Les Rabats - Armand Guillebaud",48.74545,2.313705,0,0,OIF:SA:59:5244896,Europe/Paris,,OIF, +OIF:SP:59:5244900,1,"Aubépine",48.743526,2.31126,0,0,OIF:SA:59:5244895,Europe/Paris,,OIF, +OIF:SP:59:5244901,1,"Collège des Rabats",48.739327,2.305405,0,0,OIF:SA:59:5244894,Europe/Paris,,OIF, +OIF:SP:59:5244903,1,"Baconnets - Mirabeau",48.740385,2.298392,0,0,OIF:SA:59:5244903,Europe/Paris,,OIF, +OIF:SP:59:5244904,1,"Rue de Massy-Mirabeau",48.742039,2.296556,0,0,OIF:SA:8775876,Europe/Paris,,OIF, +OIF:SP:59:5244905,1,"Les Baconnets-RER",48.739726,2.289274,0,0,OIF:SA:8775877,Europe/Paris,,OIF, +OIF:SP:59:5244906,1,"Centre Commercial des Baconnets",48.738306,2.290158,0,0,OIF:SA:59:5244906,Europe/Paris,,OIF, +OIF:SP:59:5244907,1,"Mont Blanc",48.737694,2.287699,0,0,OIF:SA:59:5244907,Europe/Paris,,OIF, +OIF:SP:59:5244908,1,"Centre Commercial - Noyer Dore",48.735625,2.284698,0,0,OIF:SA:59:5244908,Europe/Paris,,OIF, +OIF:SP:59:5244910,1,"Kennedy - Bourgogne",48.736275,2.292253,0,0,OIF:SA:59:5244910,Europe/Paris,,OIF, +OIF:SP:59:5250524,1,"Sophie Barat",48.757702,2.270008,0,0,OIF:SA:59:5250524,Europe/Paris,,OIF, +OIF:SP:59:5250603,1,"Rue Geneviève",48.77024,2.322247,0,0,OIF:SA:59:3730360,Europe/Paris,,OIF, +OIF:SP:59:5250727,1,"Terre Ciel",48.878313,2.612913,0,0,OIF:SA:59:3677720,Europe/Paris,,OIF, +OIF:SP:59:5251748,1,"Porte Maillot - Métro - RER",48.878161,2.280467,0,0,OIF:SA:8738102,Europe/Paris,,OIF, +OIF:SP:59:5251750,1,"Jardin d'Acclimatation",48.874948,2.270838,0,0,OIF:SA:59:5251750,Europe/Paris,,OIF, +OIF:SP:59:5251751,1,"Jardin d'Acclimatation",48.874984,2.271614,0,0,OIF:SA:59:5251750,Europe/Paris,,OIF, +OIF:SP:59:5251752,1,"Route de la Muette",48.872508,2.264097,0,0,OIF:SA:59:5251752,Europe/Paris,,OIF, +OIF:SP:59:5251753,1,"Route de la Muette",48.872644,2.265077,0,0,OIF:SA:59:5251752,Europe/Paris,,OIF, +OIF:SP:59:5251754,1,"Route des Lacs",48.870573,2.258745,0,0,OIF:SA:59:5251754,Europe/Paris,,OIF, +OIF:SP:59:5251755,1,"Route des Lacs",48.870762,2.25978,0,0,OIF:SA:59:5251754,Europe/Paris,,OIF, +OIF:SP:59:5251756,1,"Bagatelle - Pré Catelan",48.867043,2.248874,0,0,OIF:SA:59:5251756,Europe/Paris,,OIF, +OIF:SP:59:5251757,1,"Bagatelle - Pré Catelan",48.866719,2.248656,0,0,OIF:SA:59:5251756,Europe/Paris,,OIF, +OIF:SP:59:5251758,1,"Carrefour de Longchamp",48.864368,2.241441,0,0,OIF:SA:59:5251758,Europe/Paris,,OIF, +OIF:SP:59:5251759,1,"Carrefour de Longchamp",48.864116,2.241332,0,0,OIF:SA:59:5251758,Europe/Paris,,OIF, +OIF:SP:59:5251761,1,"Les Moulins - Camping",48.864767,2.234738,0,0,OIF:SA:59:4024537,Europe/Paris,,OIF, +OIF:SP:59:5251763,1,"Rue des Bourets - Pont de Suresnes",48.867679,2.225564,0,0,OIF:SA:59:4024538,Europe/Paris,,OIF, +OIF:SP:59:5251764,1,"Suresnes de Gaulle",48.868559,2.224431,0,0,OIF:SA:59053,Europe/Paris,,OIF, +OIF:SP:59:5251765,1,"Suresnes de Gaulle",48.868217,2.223805,0,0,OIF:SA:59053,Europe/Paris,,OIF, +OIF:SP:59:5251767,1,"Longchamp",48.866768,2.221206,0,0,OIF:SA:59053,Europe/Paris,,OIF, +OIF:SP:59:5251768,1,"Garibaldi",48.862936,2.218,0,0,OIF:SA:17:1627,Europe/Paris,,OIF, +OIF:SP:59:5251769,1,"Garibaldi",48.86281,2.218518,0,0,OIF:SA:17:1627,Europe/Paris,,OIF, +OIF:SP:59:5251775,1,"Place Jean Jaurès",48.863717,2.208762,0,0,OIF:SA:59:4024221,Europe/Paris,,OIF, +OIF:SP:59:5251777,1,"Les Houtraits",48.867981,2.203739,0,0,OIF:SA:59:5251777,Europe/Paris,,OIF, +OIF:SP:59:5251778,1,"Les Houtraits",48.867055,2.203673,0,0,OIF:SA:59:5251777,Europe/Paris,,OIF, +OIF:SP:59:5251781,1,"Rue de la Paix",48.872243,2.197856,0,0,OIF:SA:59:5251781,Europe/Paris,,OIF, +OIF:SP:59:5251782,1,"Rue de la Paix",48.872037,2.198496,0,0,OIF:SA:59:5251781,Europe/Paris,,OIF, +OIF:SP:59:5251785,1,"Edmond Rostand",48.87368,2.189568,0,0,OIF:SA:59:4023989,Europe/Paris,,OIF, +OIF:SP:59:5251786,1,"Edmond Rostand",48.873519,2.190318,0,0,OIF:SA:59:4023989,Europe/Paris,,OIF, +OIF:SP:59:5251787,1,"Hôpital Stell",48.876426,2.186235,0,0,OIF:SA:17:1597,Europe/Paris,,OIF, +OIF:SP:59:5251788,1,"Hôpital Stell",48.875985,2.186073,0,0,OIF:SA:17:1597,Europe/Paris,,OIF, +OIF:SP:59:5251791,1,"Rueil - Ville",48.880627,2.182367,0,0,OIF:SA:17:1273,Europe/Paris,,OIF, +OIF:SP:59:5251792,1,"Rueil - Ville",48.880375,2.182449,0,0,OIF:SA:17:1273,Europe/Paris,,OIF, +OIF:SP:59:5251795,1,"Rueil-Malmaison RER",48.887059,2.173312,0,0,OIF:SA:8775805,Europe/Paris,,OIF, +OIF:SP:59:5251796,1,"Rueil-Malmaison RER",48.887211,2.173039,0,0,OIF:SA:8775805,Europe/Paris,,OIF, +OIF:SP:59:5251799,1,"Place de la Paix",48.8649,2.205449,0,0,OIF:SA:59:4024617,Europe/Paris,,OIF, +OIF:SP:59:5252679,1,"Orly Ouest",48.728201,2.359486,0,0,OIF:SA:59673,Europe/Paris,,OIF, +OIF:SP:59:5276846,1,"Bongarde",48.925321,2.326431,0,0,OIF:SA:59:5150860,Europe/Paris,,OIF, +OIF:SP:59:5276847,1,"Bongarde",48.925258,2.325736,0,0,OIF:SA:59:5276847,Europe/Paris,,OIF, +OIF:SP:59:5290097,1,"Mairie de Chelles",48.877793,2.592389,0,0,OIF:SA:53:2277,Europe/Paris,,OIF, +OIF:SP:59:5298004,1,"Léonard de Vinci",48.721477,2.267079,0,0,OIF:SA:59:5298004,Europe/Paris,,OIF, +OIF:SP:59:5298005,1,"Léonard de Vinci",48.721549,2.267188,0,0,OIF:SA:59:5298004,Europe/Paris,,OIF, +OIF:SP:59:5315278,1,"Notre-Dame du Calvaire",48.807979,2.284639,0,0,OIF:SA:59:5315278,Europe/Paris,,OIF, +OIF:SP:59:5315279,1,"Notre-Dame du Calvaire",48.808249,2.284067,0,0,OIF:SA:59:5315278,Europe/Paris,,OIF, +OIF:SP:59:5315280,1,"Piscine",48.809731,2.282923,0,0,OIF:SA:59:5315280,Europe/Paris,,OIF, +OIF:SP:59:5315281,1,"Piscine",48.810306,2.282038,0,0,OIF:SA:59:5315280,Europe/Paris,,OIF, +OIF:SP:59:5315282,1,"Prévoyants",48.808571,2.281155,0,0,OIF:SA:59:5315282,Europe/Paris,,OIF, +OIF:SP:59:5315283,1,"Béranger - Petite Enfance",48.806225,2.281198,0,0,OIF:SA:59:5315283,Europe/Paris,,OIF, +OIF:SP:59:5315285,1,"École Marcel Doret",48.80477,2.282683,0,0,OIF:SA:59:5315285,Europe/Paris,,OIF, +OIF:SP:59:5315286,1,"Collège George Sand",48.805676,2.280097,0,0,OIF:SA:59:5315286,Europe/Paris,,OIF, +OIF:SP:59:5315287,1,"Collège George Sand",48.80608,2.27796,0,0,OIF:SA:59:5315286,Europe/Paris,,OIF, +OIF:SP:59:5315288,1,"Lasègue",48.803015,2.2781,0,0,OIF:SA:59:5315288,Europe/Paris,,OIF, +OIF:SP:59:5315289,1,"Lasègue",48.803464,2.27712,0,0,OIF:SA:59:5315288,Europe/Paris,,OIF, +OIF:SP:59:5315290,1,"Cimetière de Châtillon",48.802019,2.281938,0,0,OIF:SA:59852,Europe/Paris,,OIF, +OIF:SP:59:5315291,1,"Cimetière de Châtillon",48.802387,2.280985,0,0,OIF:SA:59852,Europe/Paris,,OIF, +OIF:SP:59:5315292,1,"Jean-Pierre Timbaud",48.802919,2.285229,0,0,OIF:SA:59:5315292,Europe/Paris,,OIF, +OIF:SP:59:5315293,1,"Jean-Pierre Timbaud",48.802686,2.285951,0,0,OIF:SA:59:5315292,Europe/Paris,,OIF, +OIF:SP:59:5315296,1,"Conservatoire",48.804224,2.289501,0,0,OIF:SA:59850,Europe/Paris,,OIF, +OIF:SP:59:5315297,1,"Conservatoire",48.804162,2.290344,0,0,OIF:SA:59850,Europe/Paris,,OIF, +OIF:SP:59:5315298,1,"Henri Gatinot",48.80401,2.291555,0,0,OIF:SA:59850,Europe/Paris,,OIF, +OIF:SP:59:5315299,1,"Henri Gatinot",48.804252,2.292344,0,0,OIF:SA:59850,Europe/Paris,,OIF, +OIF:SP:59:5315300,1,"Liberté",48.801224,2.293122,0,0,OIF:SA:59:5315300,Europe/Paris,,OIF, +OIF:SP:59:5315301,1,"Liberté",48.801377,2.293258,0,0,OIF:SA:59:5315300,Europe/Paris,,OIF, +OIF:SP:59:5315303,1,"Mairie de Châtillon",48.799947,2.291069,0,0,OIF:SA:59:5138011,Europe/Paris,,OIF, +OIF:SP:59:5315304,1,"Paul Éluard",48.798455,2.292336,0,0,OIF:SA:59:5315304,Europe/Paris,,OIF, +OIF:SP:59:5315305,1,"Bagneux",48.798941,2.29443,0,0,OIF:SA:59:5315305,Europe/Paris,,OIF, +OIF:SP:59:5315306,1,"Etienne Deforges",48.805529,2.29433,0,0,OIF:SA:59848,Europe/Paris,,OIF, +OIF:SP:59:5315307,1,"Marie Doffe",48.804029,2.274996,0,0,OIF:SA:59:3619152,Europe/Paris,,OIF, +OIF:SP:59:5315308,1,"Lazare-Carnot",48.808021,2.277686,0,0,OIF:SA:59:3619150,Europe/Paris,,OIF, +OIF:SP:59:5315309,1,"Malakoff",48.811033,2.280105,0,0,OIF:SA:59:5315309,Europe/Paris,,OIF, +OIF:SP:59:5325151,1,"Terroirs de France",48.831608,2.387698,0,0,OIF:SA:59:3716900,Europe/Paris,,OIF, +OIF:SP:59:5325157,1,"Pont Nelson Mandela - Rive Droite",48.82246,2.40322,0,0,OIF:SA:59:5325157,Europe/Paris,,OIF, +OIF:SP:59:5325158,1,"Archevêché",48.823538,2.404582,0,0,OIF:SA:59:5325158,Europe/Paris,,OIF, +OIF:SP:59:5325159,1,"Archevêché",48.823574,2.404242,0,0,OIF:SA:59:5325158,Europe/Paris,,OIF, +OIF:SP:59:5325160,1,"Churchill",48.825489,2.403523,0,0,OIF:SA:59562,Europe/Paris,,OIF, +OIF:SP:59:5325161,1,"Liberte-Chanzy",48.82725,2.404355,0,0,OIF:SA:59562,Europe/Paris,,OIF, +OIF:SP:59:5325165,1,"Pont Nelson Mandela - Rives de Bercy",48.822489,2.400334,0,0,OIF:SA:59:5325165,Europe/Paris,,OIF, +OIF:SP:59:5325167,1,"Pont Nelson Mandela - Rive Droite",48.823108,2.402431,0,0,OIF:SA:59:5325157,Europe/Paris,,OIF, +OIF:SP:59:5325170,1,"Porte d'Orléans - Métro",48.821795,2.324438,0,0,OIF:SA:59624,Europe/Paris,,OIF, +OIF:SP:59:5355344,1,"Porte de la Villette",48.897423,2.38704,0,0,OIF:SA:59288,Europe/Paris,,OIF, +OIF:SP:59:5355346,1,"Place Auguste Baron",48.901153,2.386321,0,0,OIF:SA:59:5355346,Europe/Paris,,OIF, +OIF:SP:59:5355347,1,"Place Auguste Baron",48.901082,2.386157,0,0,OIF:SA:59:5355346,Europe/Paris,,OIF, +OIF:SP:59:5355348,1,"Karman - Félix Faure",48.903132,2.383774,0,0,OIF:SA:59:5355348,Europe/Paris,,OIF, +OIF:SP:59:5355349,1,"Karman - Félix Faure",48.903311,2.383378,0,0,OIF:SA:59:5355348,Europe/Paris,,OIF, +OIF:SP:59:5355350,1,"Félix Faure - Rue des Écoles",48.906647,2.380082,0,0,OIF:SA:59:5355350,Europe/Paris,,OIF, +OIF:SP:59:5355351,1,"Félix Faure - Rue des Écoles",48.906521,2.380055,0,0,OIF:SA:59:5355350,Europe/Paris,,OIF, +OIF:SP:59:5355352,1,"Victor Hugo - Félix Faure",48.908337,2.377616,0,0,OIF:SA:59:5355352,Europe/Paris,,OIF, +OIF:SP:59:5355353,1,"Victor Hugo - Félix Faure",48.908157,2.378379,0,0,OIF:SA:59:5355352,Europe/Paris,,OIF, +OIF:SP:59:5355354,1,"Quai Lucien Lefranc",48.907511,2.376197,0,0,OIF:SA:59:5355354,Europe/Paris,,OIF, +OIF:SP:59:5355355,1,"Centre Bus Aubervilliers",48.910433,2.372927,0,0,OIF:SA:59:5355355,Europe/Paris,,OIF, +OIF:SP:59:5355356,1,"Centre Bus Aubervilliers",48.909921,2.372409,0,0,OIF:SA:59:5355355,Europe/Paris,,OIF, +OIF:SP:59:5355357,1,"18 Rue du Pilier",48.908178,2.368617,0,0,OIF:SA:59:5355357,Europe/Paris,,OIF, +OIF:SP:59:5355358,1,"18 Rue du Pilier",48.908322,2.369231,0,0,OIF:SA:59:5355357,Europe/Paris,,OIF, +OIF:SP:59:5355360,1,"Front Populaire-Gardinoux",48.906975,2.367022,0,0,OIF:SA:59774,Europe/Paris,,OIF, +OIF:SP:59:5355364,1,"La Montjoie - Germaine Tillion",48.910902,2.365974,0,0,OIF:SA:59:5355364,Europe/Paris,,OIF, +OIF:SP:59:5355380,1,"Rue Pleyel",48.91761,2.345796,0,0,OIF:SA:59:5355380,Europe/Paris,,OIF, +OIF:SP:59:5355381,1,"Rue Pleyel",48.917295,2.345782,0,0,OIF:SA:59:5355380,Europe/Paris,,OIF, +OIF:SP:59:5355384,1,"Rue Ampère",48.922769,2.340219,0,0,OIF:SA:59:5355384,Europe/Paris,,OIF, +OIF:SP:59:5355385,1,"Rue Ampère",48.922939,2.340737,0,0,OIF:SA:59:5355384,Europe/Paris,,OIF, +OIF:SP:59:5355386,1,"Rue Nicolau",48.920639,2.336469,0,0,OIF:SA:59:5355386,Europe/Paris,,OIF, +OIF:SP:59:5355387,1,"Rue Nicolau",48.920028,2.335651,0,0,OIF:SA:59:5355386,Europe/Paris,,OIF, +OIF:SP:59:5355389,1,"Quai de Seine",48.918518,2.333278,0,0,OIF:SA:59:5355389,Europe/Paris,,OIF, +OIF:SP:59:5355390,1,"Quai de Seine.",48.918401,2.333155,0,0,OIF:SA:59:5355389,Europe/Paris,,OIF, +OIF:SP:59:5355393,1,"Front Populaire-Proudhon",48.906589,2.364267,0,0,OIF:SA:59774,Europe/Paris,,OIF, +OIF:SP:59:5355394,1,"Rue de la Haie-Coq",48.906793,2.372857,0,0,OIF:SA:59:5355394,Europe/Paris,,OIF, +OIF:SP:59:5370692,1,"Rue de Paradis",48.786872,2.299854,0,0,OIF:SA:59:5370692,Europe/Paris,,OIF, +OIF:SP:59:5370694,1,"Avenue Lombart",48.784246,2.293137,0,0,OIF:SA:59:5370694,Europe/Paris,,OIF, +OIF:SP:59:5370700,1,"Les Ormeaux",48.789401,2.284726,0,0,OIF:SA:59:5370700,Europe/Paris,,OIF, +OIF:SP:59:5370708,1,"Félix Faure",48.805877,2.286737,0,0,OIF:SA:59:5067583,Europe/Paris,,OIF, +OIF:SP:59:5396937,1,"Marche International de Rungis",48.76277,2.35787,0,0,OIF:SA:59:4314846,Europe/Paris,,OIF, +OIF:SP:59:5408981,1,"Le Stade",48.751455,2.353869,0,0,OIF:SA:59827,Europe/Paris,,OIF, +OIF:SP:59:5419720,1,"Pont de Sevres",48.82919,2.230683,0,0,OIF:SA:59621,Europe/Paris,,OIF, +OIF:SP:59:5419721,1,"Pont de Sevres",48.829657,2.230178,0,0,OIF:SA:59621,Europe/Paris,,OIF, +OIF:SP:59:5419722,1,"Pont de Sevres",48.829154,2.230547,0,0,OIF:SA:59621,Europe/Paris,,OIF, +OIF:SP:59:5419726,1,"Jaurès - Barbusse",48.899668,2.305716,0,0,OIF:SA:59:4016094,Europe/Paris,,OIF, +OIF:SP:59:5419727,1,"Place de la Boule - Joliot Curie",48.887642,2.201017,0,0,OIF:SA:59:5419727,Europe/Paris,,OIF, +OIF:SP:59:5421670,1,"Porte de Courcelles",48.886211,2.294822,0,0,OIF:SA:59436,Europe/Paris,,OIF, +OIF:SP:59:5423654,1,"Gare de Pierrefitte - Stains RER",48.963483,2.370903,0,0,OIF:SA:8727116,Europe/Paris,,OIF, +OIF:SP:59:5423664,1,"Liberté",48.797971,2.293765,0,0,OIF:SA:59:5315300,Europe/Paris,,OIF, +OIF:SP:59:5423687,1,"Charles Pasqua",48.778764,2.260556,0,0,OIF:SA:59:3909820,Europe/Paris,,OIF, +OIF:SP:59:5423691,1,"Moulin Fidel",48.773711,2.257164,0,0,OIF:SA:59:5423691,Europe/Paris,,OIF, +OIF:SP:59:5423692,1,"Maximilien Robespierre",48.772001,2.253862,0,0,OIF:SA:59:5423692,Europe/Paris,,OIF, +OIF:SP:59:5423694,1,"Cyrano de Bergerac",48.768853,2.250414,0,0,OIF:SA:59:5121822,Europe/Paris,,OIF, +OIF:SP:59:5423695,1,"Cyrano de Bergerac",48.768727,2.250985,0,0,OIF:SA:59:5121822,Europe/Paris,,OIF, +OIF:SP:59:5423696,1,"Francis de Pressensé",48.766222,2.254932,0,0,OIF:SA:24:15063,Europe/Paris,,OIF, +OIF:SP:59:5423697,1,"Francis de Pressensé",48.766654,2.254619,0,0,OIF:SA:24:15063,Europe/Paris,,OIF, +OIF:SP:59:5423698,1,"Butte Rouge - Cité Jardins",48.765238,2.260794,0,0,OIF:SA:59:5121035,Europe/Paris,,OIF, +OIF:SP:59:5423699,1,"Butte Rouge - Cité Jardins",48.765471,2.260698,0,0,OIF:SA:59:5121035,Europe/Paris,,OIF, +OIF:SP:59:5423700,1,"Général Duval",48.76463,2.265839,0,0,OIF:SA:59:5121037,Europe/Paris,,OIF, +OIF:SP:59:5423701,1,"Général Duval",48.764944,2.264995,0,0,OIF:SA:59:5121037,Europe/Paris,,OIF, +OIF:SP:59:5423702,1,"Les Vallées",48.763582,2.273658,0,0,OIF:SA:59:5423702,Europe/Paris,,OIF, +OIF:SP:59:5423703,1,"Les Vallées",48.763655,2.27431,0,0,OIF:SA:59:5423702,Europe/Paris,,OIF, +OIF:SP:59:5423704,1,"La Briaude",48.762794,2.279478,0,0,OIF:SA:59:5423704,Europe/Paris,,OIF, +OIF:SP:59:5423705,1,"La Briaude",48.762947,2.279654,0,0,OIF:SA:59:5423704,Europe/Paris,,OIF, +OIF:SP:59:5423706,1,"Carrefour du 19 Mars 1962",48.763128,2.282591,0,0,OIF:SA:59:5121043,Europe/Paris,,OIF, +OIF:SP:59:5423707,1,"Carrefour du 19 Mars 1962",48.762787,2.282523,0,0,OIF:SA:59:5121043,Europe/Paris,,OIF, +OIF:SP:59:5423708,1,"Rue des Vignes",48.765681,2.281582,0,0,OIF:SA:59:5423708,Europe/Paris,,OIF, +OIF:SP:59:5423712,1,"Pres Hauts",48.770668,2.280652,0,0,OIF:SA:59:5423712,Europe/Paris,,OIF, +OIF:SP:59:5423714,1,"Hélène Roederer",48.773024,2.28103,0,0,OIF:SA:59:5423714,Europe/Paris,,OIF, +OIF:SP:59:5423715,1,"Hélène Roederer",48.772718,2.280867,0,0,OIF:SA:59:5423714,Europe/Paris,,OIF, +OIF:SP:59:5423719,1,"Robinson RER",48.779513,2.281431,0,0,OIF:SA:8775872,Europe/Paris,,OIF, +OIF:SP:59:5423726,1,"Pierrelais - Blanchard",48.794823,2.288938,0,0,OIF:SA:59:5423726,Europe/Paris,,OIF, +OIF:SP:59:5423774,1,"D'Estienne d'Orves",48.88748,2.179335,0,0,OIF:SA:59:3877806,Europe/Paris,,OIF, +OIF:SP:59:5454890,1,"Sully - Morland",48.851488,2.362237,0,0,OIF:SA:59281,Europe/Paris,,OIF, +OIF:SP:59:5478215,1,"Mairie de Châtenay-Malabry",48.767315,2.279541,0,0,OIF:SA:59:5478215,Europe/Paris,,OIF, +OIF:SP:59:5478216,1,"Rue des Vignes",48.766561,2.280643,0,0,OIF:SA:59:5423708,Europe/Paris,,OIF, +OIF:SP:59:5478225,1,"Maximilien Robespierre",48.771803,2.253903,0,0,OIF:SA:59:5423692,Europe/Paris,,OIF, +OIF:SP:59:5478310,1,"Voisin - République",48.813556,2.465809,0,0,OIF:SA:59:3686730,Europe/Paris,,OIF, +OIF:SP:59:5478312,1,"Maurice Berteaux",48.812151,2.468282,0,0,OIF:SA:59:4614399,Europe/Paris,,OIF, +OIF:SP:59:5478345,1,"La Varenne - Chennevières RER",48.794906,2.514411,0,0,OIF:SA:8775818,Europe/Paris,,OIF, +OIF:SP:59:5478346,1,"La Varenne - Chennevières RER",48.795041,2.514316,0,0,OIF:SA:8775818,Europe/Paris,,OIF, +OIF:SP:59:5478358,1,"Avenue des Piliers",48.792989,2.510296,0,0,OIF:SA:59:5478358,Europe/Paris,,OIF, +OIF:SP:59:5478378,1,"Verdun",48.822234,2.420083,0,0,OIF:SA:59:5478378,Europe/Paris,,OIF, +OIF:SP:59:5478379,1,"Hôpital National de Saint-Maurice",48.821944,2.423241,0,0,OIF:SA:59:5478379,Europe/Paris,,OIF, +OIF:SP:59:5478380,1,"Épinettes",48.82003,2.423238,0,0,OIF:SA:59:5478380,Europe/Paris,,OIF, +OIF:SP:59:5478381,1,"Val d'Osne",48.818357,2.424283,0,0,OIF:SA:59:5478381,Europe/Paris,,OIF, +OIF:SP:59:5478382,1,"Mairie de Saint-Maurice",48.817853,2.425793,0,0,OIF:SA:59:5478382,Europe/Paris,,OIF, +OIF:SP:59:5478383,1,"Mairie de Saint-Maurice",48.817969,2.426569,0,0,OIF:SA:59:5478382,Europe/Paris,,OIF, +OIF:SP:59:5478384,1,"Hôpital Esquirol",48.817957,2.430053,0,0,OIF:SA:59:5478384,Europe/Paris,,OIF, +OIF:SP:59:5478385,1,"Hôpital Esquirol",48.818047,2.430107,0,0,OIF:SA:59:5478384,Europe/Paris,,OIF, +OIF:SP:59:5478386,1,"Passerelle de Saint-Maurice",48.818045,2.433333,0,0,OIF:SA:59:5478386,Europe/Paris,,OIF, +OIF:SP:59:5478387,1,"Passerelle de Saint-Maurice",48.818153,2.433183,0,0,OIF:SA:59:5478386,Europe/Paris,,OIF, +OIF:SP:59:5478388,1,"Maréchal Leclerc",48.818029,2.441063,0,0,OIF:SA:59:5478388,Europe/Paris,,OIF, +OIF:SP:59:5478389,1,"Maréchal Leclerc",48.818336,2.439077,0,0,OIF:SA:59:5478388,Europe/Paris,,OIF, +OIF:SP:59:5478390,1,"Passerelle de Charentonneau",48.817838,2.443908,0,0,OIF:SA:59:5478390,Europe/Paris,,OIF, +OIF:SP:59:5478391,1,"Passerelle de Charentonneau",48.817946,2.443636,0,0,OIF:SA:59:5478390,Europe/Paris,,OIF, +OIF:SP:59:5478392,1,"CFA - Andrieu",48.817872,2.446058,0,0,OIF:SA:59:5478392,Europe/Paris,,OIF, +OIF:SP:59:5478393,1,"CFA - Andrieu",48.817996,2.448168,0,0,OIF:SA:59:5478392,Europe/Paris,,OIF, +OIF:SP:59:5478394,1,"Roseraie",48.817462,2.451746,0,0,OIF:SA:59:5478394,Europe/Paris,,OIF, +OIF:SP:59:5478395,1,"Roseraie",48.817642,2.451433,0,0,OIF:SA:59:5478394,Europe/Paris,,OIF, +OIF:SP:59:5478398,1,"Place de l'Ecluse",48.814779,2.456122,0,0,OIF:SA:59:5478398,Europe/Paris,,OIF, +OIF:SP:59:5478408,1,"Stade Léo Lagrange",48.836579,2.441441,0,0,OIF:SA:59:5478408,Europe/Paris,,OIF, +OIF:SP:59:5478409,1,"Stade Léo Lagrange",48.837065,2.440979,0,0,OIF:SA:59:5478408,Europe/Paris,,OIF, +OIF:SP:59:5478410,1,"Plaine de la Faluère",48.83442,2.444241,0,0,OIF:SA:59:5478410,Europe/Paris,,OIF, +OIF:SP:59:5478411,1,"Plaine de la Faluère",48.834627,2.444174,0,0,OIF:SA:59:5478410,Europe/Paris,,OIF, +OIF:SP:59:5478412,1,"Cartoucherie",48.834622,2.449279,0,0,OIF:SA:59:5478412,Europe/Paris,,OIF, +OIF:SP:59:5478413,1,"Cartoucherie",48.834631,2.448857,0,0,OIF:SA:59:5478412,Europe/Paris,,OIF, +OIF:SP:59:5478414,1,"Champ de Manœuvre - Tremblay",48.835445,2.453324,0,0,OIF:SA:59:5478414,Europe/Paris,,OIF, +OIF:SP:59:5478415,1,"Champ de Manœuvre - Tremblay",48.835643,2.452426,0,0,OIF:SA:59:5478414,Europe/Paris,,OIF, +OIF:SP:59:5478416,1,"Insep",48.832835,2.456354,0,0,OIF:SA:59:5478416,Europe/Paris,,OIF, +OIF:SP:59:5478417,1,"Insep",48.832826,2.456736,0,0,OIF:SA:59:5478416,Europe/Paris,,OIF, +OIF:SP:59:5478418,1,"Mortemart",48.829622,2.461193,0,0,OIF:SA:59:5478418,Europe/Paris,,OIF, +OIF:SP:59:5478419,1,"Mortemart",48.829603,2.461642,0,0,OIF:SA:59:5478418,Europe/Paris,,OIF, +OIF:SP:59:5478420,1,"Carrefour de Beauté",48.827354,2.464115,0,0,OIF:SA:59:5478420,Europe/Paris,,OIF, +OIF:SP:59:5478421,1,"Carrefour de Beauté",48.827434,2.464428,0,0,OIF:SA:59:5478420,Europe/Paris,,OIF, +OIF:SP:59:5478422,1,"Joinville-le-Pont RER",48.820173,2.464015,0,0,OIF:SA:8775814,Europe/Paris,,OIF, +OIF:SP:59:5478423,1,"Joinville-le-Pont RER",48.819525,2.464259,0,0,OIF:SA:8775814,Europe/Paris,,OIF, +OIF:SP:59:5478424,1,"Eugène Voisin - Marche",48.816673,2.467191,0,0,OIF:SA:59:5478424,Europe/Paris,,OIF, +OIF:SP:59:5478425,1,"Eugène Voisin - Marche",48.817222,2.466444,0,0,OIF:SA:59:5478424,Europe/Paris,,OIF, +OIF:SP:59:5478426,1,"République",48.814848,2.467718,0,0,OIF:SA:59:5478426,Europe/Paris,,OIF, +OIF:SP:59:5478427,1,"République",48.814803,2.468071,0,0,OIF:SA:59:5478426,Europe/Paris,,OIF, +OIF:SP:59:5478428,1,"Maurice Berteaux",48.81072,2.469585,0,0,OIF:SA:59:4614399,Europe/Paris,,OIF, +OIF:SP:59:5478429,1,"Maurice Berteaux",48.81242,2.468882,0,0,OIF:SA:59:4614399,Europe/Paris,,OIF, +OIF:SP:59:5478431,1,"Croix Souris",48.80929,2.471255,0,0,OIF:SA:59:4035944,Europe/Paris,,OIF, +OIF:SP:59:5478432,1,"Saint-Maur - Créteil RER",48.806863,2.471045,0,0,OIF:SA:8775815,Europe/Paris,,OIF, +OIF:SP:59:5478433,1,"Saint-Maur - Créteil RER",48.806332,2.471465,0,0,OIF:SA:8775815,Europe/Paris,,OIF, +OIF:SP:59:5478434,1,"Rue des Remises",48.80387,2.47135,0,0,OIF:SA:59:3663655,Europe/Paris,,OIF, +OIF:SP:59:5478435,1,"Rue des Remises",48.804373,2.471773,0,0,OIF:SA:59:3663655,Europe/Paris,,OIF, +OIF:SP:59:5478436,1,"Chemin Vert",48.80094,2.47107,0,0,OIF:SA:59:5478436,Europe/Paris,,OIF, +OIF:SP:59:5478437,1,"Pont de Créteil",48.799115,2.471623,0,0,OIF:SA:59:3663699,Europe/Paris,,OIF, +OIF:SP:59:5478438,1,"Pont de Créteil",48.800535,2.47194,0,0,OIF:SA:59:3663699,Europe/Paris,,OIF, +OIF:SP:59:5478442,1,"Garibaldi",48.795811,2.48375,0,0,OIF:SA:59:3663588,Europe/Paris,,OIF, +OIF:SP:59:5478444,1,"Adamville",48.793982,2.487132,0,0,OIF:SA:59:3663589,Europe/Paris,,OIF, +OIF:SP:59:5478445,1,"Docteur Roux",48.793725,2.491593,0,0,OIF:SA:59:5478445,Europe/Paris,,OIF, +OIF:SP:59:5478446,1,"Docteur Roux",48.793841,2.491757,0,0,OIF:SA:59:5478445,Europe/Paris,,OIF, +OIF:SP:59:5478447,1,"Place Rimini",48.793792,2.494872,0,0,OIF:SA:59:5478447,Europe/Paris,,OIF, +OIF:SP:59:5478448,1,"Place Rimini",48.793909,2.495022,0,0,OIF:SA:59:5478447,Europe/Paris,,OIF, +OIF:SP:59:5478449,1,"Delerue",48.795704,2.497109,0,0,OIF:SA:59:5478449,Europe/Paris,,OIF, +OIF:SP:59:5478450,1,"Edgar Quinet",48.797804,2.49921,0,0,OIF:SA:59:5478450,Europe/Paris,,OIF, +OIF:SP:59:5478451,1,"Edgar Quinet",48.797912,2.49898,0,0,OIF:SA:59:5478450,Europe/Paris,,OIF, +OIF:SP:59:5478452,1,"Place Jean Moulin",48.797755,2.501918,0,0,OIF:SA:59:5478452,Europe/Paris,,OIF, +OIF:SP:59:5478453,1,"Place Jean Moulin",48.797492,2.504012,0,0,OIF:SA:59:5478452,Europe/Paris,,OIF, +OIF:SP:59:5478454,1,"Avenue de Bonneuil",48.795815,2.507884,0,0,OIF:SA:59:4723870,Europe/Paris,,OIF, +OIF:SP:59:5478455,1,"Avenue de Bonneuil",48.79631,2.507069,0,0,OIF:SA:59:4723870,Europe/Paris,,OIF, +OIF:SP:59:5478456,1,"École Michelet",48.794786,2.510492,0,0,OIF:SA:59:5478456,Europe/Paris,,OIF, +OIF:SP:59:5478458,1,"La Varenne - Chennevières RER",48.794054,2.51351,0,0,OIF:SA:8775818,Europe/Paris,,OIF, +OIF:SP:59:5478459,1,"Avenue Victoria",48.796874,2.495929,0,0,OIF:SA:59:5478459,Europe/Paris,,OIF, +OIF:SP:59:5478460,1,"Carrefour de la Résistance",48.820583,2.467106,0,0,OIF:SA:59:3619476,Europe/Paris,,OIF, +OIF:SP:59:5478461,1,"Jean Jaurès - Chapsal",48.822768,2.465818,0,0,OIF:SA:8775814,Europe/Paris,,OIF, +OIF:SP:59:5545677,1,"Jean-Jacques Rousseau.",48.822633,2.259022,0,0,OIF:SA:59136,Europe/Paris,,OIF, +OIF:SP:59:5545778,1,"Chevalier de la Barre",48.821278,2.277603,0,0,OIF:SA:59:5545778,Europe/Paris,,OIF, +OIF:SP:59:5549448,1,"Hôtel de Ville de Boulogne-Billancourt",48.835804,2.239043,0,0,OIF:SA:59:3442583,Europe/Paris,,OIF, +OIF:SP:59:5549461,1,"Avenue Victor Hugo - Marcel Sembat",48.834118,2.244042,0,0,OIF:SA:59505,Europe/Paris,,OIF, +OIF:SP:59:5549465,1,"Victor Hugo - Gallieni",48.837562,2.246065,0,0,OIF:SA:59:5549465,Europe/Paris,,OIF, +OIF:SP:59:5549468,1,"Avenue Victor Hugo - Reine",48.839252,2.247069,0,0,OIF:SA:59:5549468,Europe/Paris,,OIF, +OIF:SP:59:5549472,1,"Rond-Point André Malraux",48.840699,2.247543,0,0,OIF:SA:59:5549472,Europe/Paris,,OIF, +OIF:SP:59:5549475,1,"Place Denfert-Rochereau",48.843691,2.246122,0,0,OIF:SA:59:5549475,Europe/Paris,,OIF, +OIF:SP:59:5549476,1,"Denfert-Rochereau - Porte de Boulogne",48.847239,2.242861,0,0,OIF:SA:59:5549476,Europe/Paris,,OIF, +OIF:SP:59:5549477,1,"Alsace Lorraine - Porte de Boulogne",48.849187,2.240161,0,0,OIF:SA:59:5549477,Europe/Paris,,OIF, +OIF:SP:59:5549478,1,"Hôpital Ambroise Pare",48.849086,2.237288,0,0,OIF:SA:59:3681821,Europe/Paris,,OIF, +OIF:SP:59:5549479,1,"Parchamp",48.846856,2.236748,0,0,OIF:SA:59:5549479,Europe/Paris,,OIF, +OIF:SP:59:5549516,1,"Hôtel de Ville-les Passages",48.836514,2.239491,0,0,OIF:SA:59505,Europe/Paris,,OIF, +OIF:SP:59:5549517,1,"Gallieni - Belle Feuille",48.836885,2.242853,0,0,OIF:SA:59:5549517,Europe/Paris,,OIF, +OIF:SP:59:5549518,1,"Gallieni - Thiers",48.837473,2.247658,0,0,OIF:SA:59:5549518,Europe/Paris,,OIF, +OIF:SP:59:5549519,1,"Thiers-Vaillant",48.836386,2.248708,0,0,OIF:SA:59:5549519,Europe/Paris,,OIF, +OIF:SP:59:5549520,1,"Thiers - Maison du Combattant",48.834203,2.250318,0,0,OIF:SA:59:5549520,Europe/Paris,,OIF, +OIF:SP:59:5549521,1,"Rue du Point du Jour",48.831707,2.252664,0,0,OIF:SA:59:3442577,Europe/Paris,,OIF, +OIF:SP:59:5549522,1,"Rue de Seine",48.828685,2.250586,0,0,OIF:SA:59:5121568,Europe/Paris,,OIF, +OIF:SP:59:5549523,1,"Pont de Billancourt",48.825655,2.248413,0,0,OIF:SA:24:14942,Europe/Paris,,OIF, +OIF:SP:59:5549551,1,"Parc de Boulogne - Edmond de Rothschild",48.847411,2.233165,0,0,OIF:SA:59:5549551,Europe/Paris,,OIF, +OIF:SP:59:5549552,1,"Dispensaire Saint-Denis",48.846385,2.232622,0,0,OIF:SA:59:5549552,Europe/Paris,,OIF, +OIF:SP:59:5549553,1,"Saint-Denis - Anna Jacquin",48.844605,2.231605,0,0,OIF:SA:59:5549553,Europe/Paris,,OIF, +OIF:SP:59:5549554,1,"Saint-Denis - Jean-Baptiste Clément",48.842753,2.230764,0,0,OIF:SA:59:5549554,Europe/Paris,,OIF, +OIF:SP:59:5549555,1,"Rue de Silly - Rue de Paris",48.841037,2.23134,0,0,OIF:SA:59:5549555,Europe/Paris,,OIF, +OIF:SP:59:5549556,1,"Silly - Morizet",48.839509,2.231751,0,0,OIF:SA:59:5549556,Europe/Paris,,OIF, +OIF:SP:59:5549558,1,"Gallieni - Billancourt",48.836116,2.236796,0,0,OIF:SA:59:5549558,Europe/Paris,,OIF, +OIF:SP:59:5549561,1,"Traversière",48.824394,2.244645,0,0,OIF:SA:59:5549561,Europe/Paris,,OIF, +OIF:SP:59:5549562,1,"Place Jules Guesde",48.827573,2.241794,0,0,OIF:SA:59:5549562,Europe/Paris,,OIF, +OIF:SP:59:5549563,1,"Place Bir-Hakeim",48.829989,2.239612,0,0,OIF:SA:59:5549563,Europe/Paris,,OIF, +OIF:SP:59:5549564,1,"Castéja",48.829699,2.237094,0,0,OIF:SA:59:5549564,Europe/Paris,,OIF, +OIF:SP:59:5549566,1,"Pont de Sevres - Métro",48.828678,2.230779,0,0,OIF:SA:59621,Europe/Paris,,OIF, +OIF:SP:59:5549568,1,"Pyramide",48.8344,2.237575,0,0,OIF:SA:59:5549568,Europe/Paris,,OIF, +OIF:SP:59:5582576,1,"Raoul Dufy",48.972972,2.375496,0,0,OIF:SA:59:4211742,Europe/Paris,,OIF, +OIF:SP:59:5582589,1,"Quai de la Gare",48.837204,2.374143,0,0,OIF:SA:59450,Europe/Paris,,OIF, +OIF:SP:59:5582590,1,"Quai de la Gare",48.837096,2.373884,0,0,OIF:SA:59450,Europe/Paris,,OIF, +OIF:SP:59:5604540,1,"Centre Médical de Santé",48.82092,2.304988,0,0,OIF:SA:59:5604540,Europe/Paris,,OIF, +OIF:SP:59:5605600,1,"Fort d'Aubervilliers - Métro",48.914077,2.404441,0,0,OIF:SA:59316,Europe/Paris,,OIF, +OIF:SP:59:5605601,1,"Fort d'Aubervilliers - Métro",48.913978,2.404277,0,0,OIF:SA:59316,Europe/Paris,,OIF, +OIF:SP:59:5605602,1,"Maison de Quartier - Courtillières",48.913644,2.407249,0,0,OIF:SA:59:5605602,Europe/Paris,,OIF, +OIF:SP:59:5605603,1,"Maison de Quartier - Courtillières",48.913814,2.407509,0,0,OIF:SA:59:5605602,Europe/Paris,,OIF, +OIF:SP:59:5605604,1,"Division Leclerc - Stendhal",48.911421,2.412237,0,0,OIF:SA:59:5605604,Europe/Paris,,OIF, +OIF:SP:59:5605605,1,"Division Leclerc - Stendhal",48.911547,2.412414,0,0,OIF:SA:59:5605604,Europe/Paris,,OIF, +OIF:SP:59:5605610,1,"IUT Paris 13",48.914572,2.417259,0,0,OIF:SA:59:5605610,Europe/Paris,,OIF, +OIF:SP:59:5605611,1,"IUT Paris 13",48.914509,2.417041,0,0,OIF:SA:59:5605610,Europe/Paris,,OIF, +OIF:SP:59:5605612,1,"Cité de la Résistance",48.919055,2.419611,0,0,OIF:SA:59080,Europe/Paris,,OIF, +OIF:SP:59:5605613,1,"Cité de la Résistance",48.918355,2.418533,0,0,OIF:SA:59080,Europe/Paris,,OIF, +OIF:SP:59:5605614,1,"Place de l'Amitié",48.921624,2.421293,0,0,OIF:SA:59:5605614,Europe/Paris,,OIF, +OIF:SP:59:5605616,1,"Cité de la Résistance.",48.918283,2.418465,0,0,OIF:SA:59080,Europe/Paris,,OIF, +OIF:SP:59:5605617,1,"Cité de la Résistance.",48.918983,2.419529,0,0,OIF:SA:59080,Europe/Paris,,OIF, +OIF:SP:59:5605618,1,"Hôpital Avicenne",48.915726,2.42551,0,0,OIF:SA:59:5605618,Europe/Paris,,OIF, +OIF:SP:59:5605619,1,"Carrefour Repiquet",48.915335,2.431087,0,0,OIF:SA:59078,Europe/Paris,,OIF, +OIF:SP:59:5605620,1,"Diderot-Bize",48.917511,2.429713,0,0,OIF:SA:59:5605620,Europe/Paris,,OIF, +OIF:SP:59:5605621,1,"Gutenberg - Diderot",48.920244,2.428927,0,0,OIF:SA:59:5605621,Europe/Paris,,OIF, +OIF:SP:59:5605622,1,"Gutenberg - Guynemer",48.92151,2.429652,0,0,OIF:SA:59:5605622,Europe/Paris,,OIF, +OIF:SP:59:5605623,1,"Gutenberg - Danton",48.923109,2.431183,0,0,OIF:SA:59:5605623,Europe/Paris,,OIF, +OIF:SP:59:5605624,1,"Gutenberg - Ferry",48.924626,2.43289,0,0,OIF:SA:59:5605624,Europe/Paris,,OIF, +OIF:SP:59:5605625,1,"Cité Pierre Semard",48.925235,2.435919,0,0,OIF:SA:59:5605625,Europe/Paris,,OIF, +OIF:SP:59:5605626,1,"Centre Culturel",48.926149,2.438512,0,0,OIF:SA:59:5605626,Europe/Paris,,OIF, +OIF:SP:59:5605627,1,"Centre Culturel",48.9265,2.438731,0,0,OIF:SA:59:5605626,Europe/Paris,,OIF, +OIF:SP:59:5605634,1,"Auguste Blanqui",48.921443,2.455018,0,0,OIF:SA:59:3731662,Europe/Paris,,OIF, +OIF:SP:59:5605635,1,"Auguste Blanqui",48.921147,2.453885,0,0,OIF:SA:59:3731662,Europe/Paris,,OIF, +OIF:SP:59:5605637,1,"Barbusse - Croizat",48.922654,2.456793,0,0,OIF:SA:59:3664404,Europe/Paris,,OIF, +OIF:SP:59:5605640,1,"Stade Charles Sage",48.926362,2.460293,0,0,OIF:SA:59:4274310,Europe/Paris,,OIF, +OIF:SP:59:5605646,1,"Faidherbe - Ferry",48.924507,2.436013,0,0,OIF:SA:59:5605646,Europe/Paris,,OIF, +OIF:SP:59:5605647,1,"Faidherbe - Danton",48.921445,2.432789,0,0,OIF:SA:59:5605647,Europe/Paris,,OIF, +OIF:SP:59:5605648,1,"Faidherbe - Bize",48.917393,2.430927,0,0,OIF:SA:59:5605648,Europe/Paris,,OIF, +OIF:SP:59:5605649,1,"Hôpital Avicenne",48.915896,2.425674,0,0,OIF:SA:59014,Europe/Paris,,OIF, +OIF:SP:59:5653471,1,"Craïova",48.885327,2.221846,0,0,OIF:SA:59:3877784,Europe/Paris,,OIF, +OIF:SP:59:5657267,1,"Gare Saint-Lazare",48.875613,2.324684,0,0,OIF:SA:8738400,Europe/Paris,,OIF, +OIF:SP:59:5657278,1,"La Fayette - Saint-Quentin - Gare du Nord",48.879036,2.356445,0,0,OIF:SA:8727100,Europe/Paris,,OIF, +OIF:SP:59:5657279,1,"La Fayette - Dunkerque",48.879565,2.358544,0,0,OIF:SA:8727100,Europe/Paris,,OIF, +OIF:SP:59:5657280,1,"La Fayette - Dunkerque",48.879736,2.358326,0,0,OIF:SA:8727100,Europe/Paris,,OIF, +OIF:SP:59:5657281,1,"Château Landon",48.880805,2.363232,0,0,OIF:SA:59572,Europe/Paris,,OIF, +OIF:SP:59:5657282,1,"Château Landon",48.880643,2.36176,0,0,OIF:SA:59572,Europe/Paris,,OIF, +OIF:SP:59:5657284,1,"Louis Blanc",48.881523,2.36514,0,0,OIF:SA:59296,Europe/Paris,,OIF, +OIF:SP:59:5657286,1,"Marche Secrétan",48.880559,2.373969,0,0,OIF:SA:59334,Europe/Paris,,OIF, +OIF:SP:59:5657287,1,"Marche Secrétan",48.881045,2.373765,0,0,OIF:SA:59334,Europe/Paris,,OIF, +OIF:SP:59:5657288,1,"Mathurin Moreau - Simon Bolivar",48.87878,2.374241,0,0,OIF:SA:59334,Europe/Paris,,OIF, +OIF:SP:59:5657289,1,"Mathurin Moreau - Simon Bolivar",48.878591,2.374363,0,0,OIF:SA:59334,Europe/Paris,,OIF, +OIF:SP:59:5657290,1,"Atlas",48.876307,2.376269,0,0,OIF:SA:59:5657290,Europe/Paris,,OIF, +OIF:SP:59:5657291,1,"Atlas",48.876388,2.376065,0,0,OIF:SA:59:5657290,Europe/Paris,,OIF, +OIF:SP:59:5657292,1,"Botzaris - Buttes Chaumont",48.876153,2.38007,0,0,OIF:SA:59:5657292,Europe/Paris,,OIF, +OIF:SP:59:5657293,1,"Botzaris - Buttes Chaumont",48.876153,2.380929,0,0,OIF:SA:59:5657292,Europe/Paris,,OIF, +OIF:SP:59:5657294,1,"Pyrénées - Belleville",48.873805,2.385859,0,0,OIF:SA:59402,Europe/Paris,,OIF, +OIF:SP:59:5657295,1,"Jourdain",48.87366,2.389061,0,0,OIF:SA:59405,Europe/Paris,,OIF, +OIF:SP:59:5657296,1,"Jourdain",48.873543,2.390001,0,0,OIF:SA:59405,Europe/Paris,,OIF, +OIF:SP:59:5657297,1,"L'Ermitage",48.872086,2.391471,0,0,OIF:SA:59:5657297,Europe/Paris,,OIF, +OIF:SP:59:5657298,1,"L'Ermitage",48.871897,2.392111,0,0,OIF:SA:59:5657297,Europe/Paris,,OIF, +OIF:SP:59:5657299,1,"Pyrénées - Ménilmontant",48.869541,2.394697,0,0,OIF:SA:59:3687450,Europe/Paris,,OIF, +OIF:SP:59:5657300,1,"Pyrénées - Ménilmontant",48.87018,2.394411,0,0,OIF:SA:59:3687450,Europe/Paris,,OIF, +OIF:SP:59:5657301,1,"Villiers de l'Isle Adam",48.867177,2.39656,0,0,OIF:SA:59325,Europe/Paris,,OIF, +OIF:SP:59:5657303,1,"Gambetta - Mairie du 20ème",48.865414,2.398234,0,0,OIF:SA:59325,Europe/Paris,,OIF, +OIF:SP:59:5657318,1,"Nation - Trone",48.848455,2.39801,0,0,OIF:SA:8775810,Europe/Paris,,OIF, +OIF:SP:59:5657320,1,"Villiers de l'Isle-Adam",48.867761,2.396384,0,0,OIF:SA:59:5657320,Europe/Paris,,OIF, +OIF:SP:59:5657321,1,"Pyrénées - Belleville",48.874021,2.384878,0,0,OIF:SA:59402,Europe/Paris,,OIF, +OIF:SP:59:5657322,1,"Jaurès - Stalingrad",48.882313,2.371027,0,0,OIF:SA:59635,Europe/Paris,,OIF, +OIF:SP:59:5673008,1,"Choisy-le-Roi RER",48.763891,2.410215,0,0,OIF:SA:8754528,Europe/Paris,,OIF, +OIF:SP:59:5673009,1,"Quartier du Port",48.761992,2.413407,0,0,OIF:SA:8754528,Europe/Paris,,OIF, +OIF:SP:59:5673010,1,"C.T.M.",48.755049,2.419554,0,0,OIF:SA:59:5673010,Europe/Paris,,OIF, +OIF:SP:59:5673011,1,"Prairie",48.754196,2.41939,0,0,OIF:SA:59:5673011,Europe/Paris,,OIF, +OIF:SP:59:5673012,1,"Charles Jules Vaillant",48.758693,2.413932,0,0,OIF:SA:59:5673012,Europe/Paris,,OIF, +OIF:SP:59:5673014,1,"Église Saint-Martin",48.752382,2.416084,0,0,OIF:SA:59:5673014,Europe/Paris,,OIF, +OIF:SP:59:5673015,1,"Robert Peary",48.753939,2.412511,0,0,OIF:SA:59:4677712,Europe/Paris,,OIF, +OIF:SP:59:5673016,1,"Briand - Pelloutier",48.754678,2.410446,0,0,OIF:SA:59:5673016,Europe/Paris,,OIF, +OIF:SP:59:5673017,1,"Rue du Four",48.754149,2.407292,0,0,OIF:SA:59:5673017,Europe/Paris,,OIF, +OIF:SP:59:5673018,1,"Spinoza",48.755382,2.40501,0,0,OIF:SA:59:5673018,Europe/Paris,,OIF, +OIF:SP:59:5673019,1,"De Lattre de Tassigny",48.757612,2.404415,0,0,OIF:SA:59:5673019,Europe/Paris,,OIF, +OIF:SP:59:5673020,1,"Rue Yves Léger",48.760342,2.407463,0,0,OIF:SA:59:5673020,Europe/Paris,,OIF, +OIF:SP:59:5673021,1,"Mairie de Choisy-le-Roi",48.762724,2.4068,0,0,OIF:SA:59:5673021,Europe/Paris,,OIF, +OIF:SP:59:5673022,1,"Rouget de Lisle",48.764927,2.405417,0,0,OIF:SA:4:52,Europe/Paris,,OIF, +OIF:SP:59:5673023,1,"Auguste Franchot",48.767022,2.404359,0,0,OIF:SA:59:5673023,Europe/Paris,,OIF, +OIF:SP:59:5673024,1,"Émile Zola",48.767812,2.406236,0,0,OIF:SA:59:5673024,Europe/Paris,,OIF, +OIF:SP:59:5673025,1,"Cimetière de Choisy-le-Roi",48.772749,2.402259,0,0,OIF:SA:59:5673025,Europe/Paris,,OIF, +OIF:SP:59:5673026,1,"Conservatoire",48.771013,2.403902,0,0,OIF:SA:59:5673026,Europe/Paris,,OIF, +OIF:SP:59:5673027,1,"Anciennes Cristalleries",48.77004,2.407681,0,0,OIF:SA:59:5673027,Europe/Paris,,OIF, +OIF:SP:59:5673029,1,"Clemenceau",48.767351,2.410342,0,0,OIF:SA:4:189,Europe/Paris,,OIF, +OIF:SP:59:5673030,1,"Choisy-le-Roi RER.",48.766129,2.409592,0,0,OIF:SA:8754528,Europe/Paris,,OIF, +OIF:SP:59:5673031,1,"Hugo Mirabeau",48.767705,2.418786,0,0,OIF:SA:59:5673031,Europe/Paris,,OIF, +OIF:SP:59:5673032,1,"Lycée Mirabeau",48.764315,2.421092,0,0,OIF:SA:59:5673032,Europe/Paris,,OIF, +OIF:SP:59:5673034,1,"Parc Paysager des Gondoles",48.762883,2.424788,0,0,OIF:SA:59:5673034,Europe/Paris,,OIF, +OIF:SP:59:5673035,1,"Stade Jean Bouin",48.766623,2.424223,0,0,OIF:SA:59:5673035,Europe/Paris,,OIF, +OIF:SP:59:5673036,1,"Rue Pompadour",48.768727,2.422799,0,0,OIF:SA:59:5673036,Europe/Paris,,OIF, +OIF:SP:59:5673037,1,"Collège Jules Vallès",48.772054,2.420805,0,0,OIF:SA:59:5673037,Europe/Paris,,OIF, +OIF:SP:59:5673038,1,"Choisy-le-Roi RER..",48.76595,2.40932,0,0,OIF:SA:8754528,Europe/Paris,,OIF, +OIF:SP:59:5673039,1,"Choisy-le-Roi RER...",48.76399,2.410147,0,0,OIF:SA:8754528,Europe/Paris,,OIF, +OIF:SP:59:5675599,1,"Rue de Brévannes - Chere Année",48.762878,2.511201,0,0,OIF:SA:59:5675599,Europe/Paris,,OIF, +OIF:SP:59:5675600,1,"Pierre Brossolette",48.766116,2.509363,0,0,OIF:SA:35:1030,Europe/Paris,,OIF, +OIF:SP:59:5675601,1,"Sucy - Bonneuil RER",48.771151,2.508047,0,0,OIF:SA:8775819,Europe/Paris,,OIF, +OIF:SP:59:5675602,1,"Petits Carreaux",48.773316,2.495857,0,0,OIF:SA:35:1318,Europe/Paris,,OIF, +OIF:SP:59:5675603,1,"Rhin et Danube",48.77282,2.490212,0,0,OIF:SA:59:3619704,Europe/Paris,,OIF, +OIF:SP:59:5675605,1,"Stade de Bonneuil",48.765794,2.481245,0,0,OIF:SA:13:666,Europe/Paris,,OIF, +OIF:SP:59:5675606,1,"Europarc",48.767281,2.470548,0,0,OIF:SA:13:664,Europe/Paris,,OIF, +OIF:SP:59:5675607,1,"Pointe du Lac",48.768744,2.463713,0,0,OIF:SA:59686,Europe/Paris,,OIF, +OIF:SP:59:5675609,1,"Griffons",48.771732,2.459681,0,0,OIF:SA:59:5675609,Europe/Paris,,OIF, +OIF:SP:59:5675610,1,"Billotte - Falkirk",48.772732,2.458011,0,0,OIF:SA:59:5675610,Europe/Paris,,OIF, +OIF:SP:59:5675611,1,"Port",48.774629,2.456955,0,0,OIF:SA:59:5675611,Europe/Paris,,OIF, +OIF:SP:59:5675612,1,"Hôtel de Ville de Créteil",48.777461,2.456173,0,0,OIF:SA:59:3619728,Europe/Paris,,OIF, +OIF:SP:59:5675613,1,"John Kennedy",48.777715,2.463191,0,0,OIF:SA:59:5675613,Europe/Paris,,OIF, +OIF:SP:59:5675614,1,"Rene Arcos",48.777828,2.466305,0,0,OIF:SA:59:3619296,Europe/Paris,,OIF, +OIF:SP:59:5675615,1,"Casalis - Savar",48.780445,2.465414,0,0,OIF:SA:59:3619773,Europe/Paris,,OIF, +OIF:SP:59:5675616,1,"Henri Cardinaud",48.782693,2.464291,0,0,OIF:SA:59:5675616,Europe/Paris,,OIF, +OIF:SP:59:5675617,1,"Orme au Chat",48.785193,2.462964,0,0,OIF:SA:59:5675617,Europe/Paris,,OIF, +OIF:SP:59:5675618,1,"Hôpital Chenevier",48.78896,2.461599,0,0,OIF:SA:59:5675618,Europe/Paris,,OIF, +OIF:SP:59:5675619,1,"Bretagne",48.790912,2.460611,0,0,OIF:SA:59:5675619,Europe/Paris,,OIF, +OIF:SP:59:5675620,1,"Église de Créteil",48.794273,2.460633,0,0,OIF:SA:59:4378324,Europe/Paris,,OIF, +OIF:SP:59:5675621,1,"Général Gallieni",48.796766,2.457455,0,0,OIF:SA:59:5675621,Europe/Paris,,OIF, +OIF:SP:59:5675622,1,"Henri Mondor - Laferrière",48.799386,2.453339,0,0,OIF:SA:59:3619860,Europe/Paris,,OIF, +OIF:SP:59:5675633,1,"Parc de Bercy",48.824829,2.394225,0,0,OIF:SA:59:3716901,Europe/Paris,,OIF, +OIF:SP:59:5675634,1,"Pont National - Quai de Bercy",48.828147,2.390036,0,0,OIF:SA:59726,Europe/Paris,,OIF, +OIF:SP:59:5675643,1,"Gare de Lyon - Diderot.",48.845707,2.371398,0,0,OIF:SA:8768600,Europe/Paris,,OIF, +OIF:SP:59:5675661,1,"Henri Mondor - Laferrière",48.798693,2.454045,0,0,OIF:SA:59:3619860,Europe/Paris,,OIF, +OIF:SP:59:5675662,1,"Général Gallieni",48.796875,2.456938,0,0,OIF:SA:59:5675621,Europe/Paris,,OIF, +OIF:SP:59:5675663,1,"Église de Créteil",48.793968,2.460537,0,0,OIF:SA:59:4378324,Europe/Paris,,OIF, +OIF:SP:59:5675664,1,"Bretagne",48.791316,2.460653,0,0,OIF:SA:59:5675619,Europe/Paris,,OIF, +OIF:SP:59:5675665,1,"Hôpital Chenevier",48.788457,2.461666,0,0,OIF:SA:59:5675618,Europe/Paris,,OIF, +OIF:SP:59:5675666,1,"Orme au Chat",48.785148,2.462801,0,0,OIF:SA:59:5675617,Europe/Paris,,OIF, +OIF:SP:59:5675667,1,"Henri Cardinaud",48.782154,2.464425,0,0,OIF:SA:59:5675616,Europe/Paris,,OIF, +OIF:SP:59:5675668,1,"Casalis - Savar",48.779806,2.465548,0,0,OIF:SA:59:3619773,Europe/Paris,,OIF, +OIF:SP:59:5675669,1,"Rene Arcos",48.778008,2.46602,0,0,OIF:SA:59:3619296,Europe/Paris,,OIF, +OIF:SP:59:5675670,1,"John Kennedy",48.777903,2.463218,0,0,OIF:SA:59:5675613,Europe/Paris,,OIF, +OIF:SP:59:5675671,1,"Hôtel de Ville de Créteil",48.777668,2.455942,0,0,OIF:SA:59:3619728,Europe/Paris,,OIF, +OIF:SP:59:5675672,1,"Port",48.77436,2.457063,0,0,OIF:SA:59:5675611,Europe/Paris,,OIF, +OIF:SP:59:5675673,1,"Billotte - Falkirk",48.772903,2.45793,0,0,OIF:SA:59:5675610,Europe/Paris,,OIF, +OIF:SP:59:5675674,1,"Griffons",48.771381,2.460279,0,0,OIF:SA:59:5675609,Europe/Paris,,OIF, +OIF:SP:59:5675675,1,"La Source",48.770607,2.461174,0,0,OIF:SA:59:5675675,Europe/Paris,,OIF, +OIF:SP:59:5675676,1,"Pointe du Lac",48.768618,2.463794,0,0,OIF:SA:59686,Europe/Paris,,OIF, +OIF:SP:59:5675677,1,"Europarc",48.767092,2.470385,0,0,OIF:SA:13:664,Europe/Paris,,OIF, +OIF:SP:59:5675678,1,"Stade de Bonneuil",48.765748,2.481897,0,0,OIF:SA:13:666,Europe/Paris,,OIF, +OIF:SP:59:5675679,1,"Messidor - Libertés",48.767782,2.486947,0,0,OIF:SA:13:668,Europe/Paris,,OIF, +OIF:SP:59:5675680,1,"Rhin et Danube",48.77273,2.490633,0,0,OIF:SA:59:3619704,Europe/Paris,,OIF, +OIF:SP:59:5675681,1,"Petits Carreaux",48.773055,2.496441,0,0,OIF:SA:35:1318,Europe/Paris,,OIF, +OIF:SP:59:5675682,1,"Sucy - Bonneuil RER",48.770539,2.508562,0,0,OIF:SA:8775819,Europe/Paris,,OIF, +OIF:SP:59:5675683,1,"Pierre Brossolette",48.7668,2.508672,0,0,OIF:SA:35:1030,Europe/Paris,,OIF, +OIF:SP:59:5675684,1,"Rue de Brévannes - Chere Année",48.76321,2.511243,0,0,OIF:SA:59:5675599,Europe/Paris,,OIF, +OIF:SP:59:5675685,1,"Boissy-Saint-Léger RER",48.753807,2.50572,0,0,OIF:SA:8775820,Europe/Paris,,OIF, +OIF:SP:59:5688789,1,"Bourg-la-Reine RER",48.780171,2.313105,0,0,OIF:SA:8775869,Europe/Paris,,OIF, +OIF:SP:59:5688791,1,"Condorcet - Mairie-RER",48.779605,2.315526,0,0,OIF:SA:59:4834574,Europe/Paris,,OIF, +OIF:SP:59:5688792,1,"Institut-Notre-Dame",48.781331,2.318354,0,0,OIF:SA:59:5688792,Europe/Paris,,OIF, +OIF:SP:59:5688793,1,"Institut-Notre-Dame",48.781538,2.318422,0,0,OIF:SA:59:5688792,Europe/Paris,,OIF, +OIF:SP:59:5688794,1,"Maréchal de Lattre",48.780064,2.323401,0,0,OIF:SA:59:5688794,Europe/Paris,,OIF, +OIF:SP:59:5688795,1,"Maréchal de Lattre",48.780289,2.32321,0,0,OIF:SA:59:5688794,Europe/Paris,,OIF, +OIF:SP:59:5688798,1,"Commissariat de l'Haÿ-les-Roses",48.777207,2.330663,0,0,OIF:SA:59:5688798,Europe/Paris,,OIF, +OIF:SP:59:5688799,1,"Commissariat de l'Haÿ-les-Roses",48.777405,2.331017,0,0,OIF:SA:59:5688798,Europe/Paris,,OIF, +OIF:SP:59:5688804,1,"Mairie de l'Haÿ-les-Roses",48.778825,2.337667,0,0,OIF:SA:59:3864905,Europe/Paris,,OIF, +OIF:SP:59:5688805,1,"Mairie de l'Haÿ-les-Roses",48.779849,2.337708,0,0,OIF:SA:59:3864905,Europe/Paris,,OIF, +OIF:SP:59:5688807,1,"Centre Commercial de l'Haÿ-les-Roses",48.78375,2.346209,0,0,OIF:SA:59:4274415,Europe/Paris,,OIF, +OIF:SP:59:5688808,1,"Centre Commercial de l'Haÿ-les-Roses",48.783363,2.345202,0,0,OIF:SA:59:4274415,Europe/Paris,,OIF, +OIF:SP:59:5688809,1,"République-Gaïté",48.786724,2.351786,0,0,OIF:SA:59:5688809,Europe/Paris,,OIF, +OIF:SP:59:5688810,1,"République-Gaïté",48.787021,2.35233,0,0,OIF:SA:59:5688809,Europe/Paris,,OIF, +OIF:SP:59:5688817,1,"Villejuif - Louis Aragon",48.788438,2.367456,0,0,OIF:SA:59809,Europe/Paris,,OIF, +OIF:SP:59:5688818,1,"Villejuif - Louis Aragon",48.788645,2.36713,0,0,OIF:SA:59809,Europe/Paris,,OIF, +OIF:SP:59:5688823,1,"Musée Mac Val",48.791964,2.386408,0,0,OIF:SA:59:4471751,Europe/Paris,,OIF, +OIF:SP:59:5688824,1,"Musée Mac Val",48.792099,2.384844,0,0,OIF:SA:59:4471751,Europe/Paris,,OIF, +OIF:SP:59:5688825,1,"Henri de Vilmorin",48.792565,2.389306,0,0,OIF:SA:59:5688825,Europe/Paris,,OIF, +OIF:SP:59:5688826,1,"Henri de Vilmorin",48.792682,2.388177,0,0,OIF:SA:59:5688825,Europe/Paris,,OIF, +OIF:SP:59:5688827,1,"Exploradôme",48.792761,2.392435,0,0,OIF:SA:59:4843469,Europe/Paris,,OIF, +OIF:SP:59:5688828,1,"Gabriel Péri",48.794114,2.401224,0,0,OIF:SA:8754529,Europe/Paris,,OIF, +OIF:SP:59:5688829,1,"Gabriel Péri",48.794123,2.400204,0,0,OIF:SA:8754529,Europe/Paris,,OIF, +OIF:SP:59:5688830,1,"Charles Heller",48.795601,2.409402,0,0,OIF:SA:4:94,Europe/Paris,,OIF, +OIF:SP:59:5688831,1,"Charles Heller",48.79579,2.409525,0,0,OIF:SA:4:94,Europe/Paris,,OIF, +OIF:SP:59:5688832,1,"Pont de Vitry",48.795912,2.415634,0,0,OIF:SA:4:102,Europe/Paris,,OIF, +OIF:SP:59:5688833,1,"Pont de Vitry",48.79637,2.41607,0,0,OIF:SA:4:102,Europe/Paris,,OIF, +OIF:SP:59:5688834,1,"Dolet - Zola",48.798872,2.4241,0,0,OIF:SA:59:3619834,Europe/Paris,,OIF, +OIF:SP:59:5688836,1,"Camélias",48.799589,2.425966,0,0,OIF:SA:8768115,Europe/Paris,,OIF, +OIF:SP:59:5688837,1,"Camélias",48.799814,2.426211,0,0,OIF:SA:8768115,Europe/Paris,,OIF, +OIF:SP:59:5688838,1,"Maisons-Alfort - Alfortville RER",48.800046,2.428551,0,0,OIF:SA:8768115,Europe/Paris,,OIF, +OIF:SP:59:5688839,1,"Maisons-Alfort - Alfortville RER",48.800181,2.428375,0,0,OIF:SA:8768115,Europe/Paris,,OIF, +OIF:SP:59:5688840,1,"Mairie de Maisons-Alfort",48.801086,2.432145,0,0,OIF:SA:59:3619751,Europe/Paris,,OIF, +OIF:SP:59:5688842,1,"Hugo - Blum",48.80039,2.435763,0,0,OIF:SA:59:3619777,Europe/Paris,,OIF, +OIF:SP:59:5688843,1,"Hugo - Blum",48.800462,2.436062,0,0,OIF:SA:59:3619777,Europe/Paris,,OIF, +OIF:SP:59:5688844,1,"Hector Berlioz",48.797241,2.440328,0,0,OIF:SA:59:5688844,Europe/Paris,,OIF, +OIF:SP:59:5688845,1,"Hector Berlioz",48.797349,2.440396,0,0,OIF:SA:59:5688844,Europe/Paris,,OIF, +OIF:SP:59:5688846,1,"Collège Guyard",48.794603,2.445411,0,0,OIF:SA:59:5688846,Europe/Paris,,OIF, +OIF:SP:59:5688847,1,"Collège Guyard",48.795215,2.444079,0,0,OIF:SA:59:5688846,Europe/Paris,,OIF, +OIF:SP:59:5688848,1,"Saint-Simon",48.794897,2.447533,0,0,OIF:SA:59:3619866,Europe/Paris,,OIF, +OIF:SP:59:5688849,1,"Créteil - l'Echat",48.796784,2.448231,0,0,OIF:SA:59563,Europe/Paris,,OIF, +OIF:SP:59:5688850,1,"Créteil - l'Echat",48.79691,2.447837,0,0,OIF:SA:59563,Europe/Paris,,OIF, +OIF:SP:59:5688851,1,"Hôpital Henri Mondor",48.798508,2.450425,0,0,OIF:SA:59:5688851,Europe/Paris,,OIF, +OIF:SP:59:5688852,1,"Hôpital Henri Mondor",48.798804,2.450739,0,0,OIF:SA:59:5688851,Europe/Paris,,OIF, +OIF:SP:59:5688856,1,"La Tournelle",48.780515,2.340102,0,0,OIF:SA:59:5688856,Europe/Paris,,OIF, +OIF:SP:59:5709847,1,"Bibliothèque François Mitterrand",48.830803,2.377378,0,0,OIF:SA:8732832,Europe/Paris,,OIF, +OIF:SP:59:5709851,1,"Thomas Mann",48.830406,2.381898,0,0,OIF:SA:59:5709851,Europe/Paris,,OIF, +OIF:SP:59:5709852,1,"Thomas Mann",48.830892,2.381694,0,0,OIF:SA:59:5709851,Europe/Paris,,OIF, +OIF:SP:59:5709853,1,"Watt",48.828698,2.384061,0,0,OIF:SA:59:5709853,Europe/Paris,,OIF, +OIF:SP:59:5709854,1,"Watt",48.82912,2.383911,0,0,OIF:SA:59:5709853,Europe/Paris,,OIF, +OIF:SP:59:5709855,1,"Bruneseau",48.824561,2.389461,0,0,OIF:SA:59:5709855,Europe/Paris,,OIF, +OIF:SP:59:5709856,1,"Bruneseau",48.824786,2.389434,0,0,OIF:SA:59:5709855,Europe/Paris,,OIF, +OIF:SP:59:5709857,1,"Victor Hugo - Bretagne",48.822772,2.391909,0,0,OIF:SA:59:5709857,Europe/Paris,,OIF, +OIF:SP:59:5709858,1,"Victor Hugo - Bretagne",48.822771,2.392344,0,0,OIF:SA:59:5709857,Europe/Paris,,OIF, +OIF:SP:59:5709859,1,"Jules Vanzuppe",48.821503,2.393854,0,0,OIF:SA:59:5709859,Europe/Paris,,OIF, +OIF:SP:59:5709860,1,"Jules Vanzuppe",48.820307,2.395608,0,0,OIF:SA:59:5709859,Europe/Paris,,OIF, +OIF:SP:59:5709873,1,"Edmond Nocard",48.821847,2.419988,0,0,OIF:SA:59:5709873,Europe/Paris,,OIF, +OIF:SP:59:5709874,1,"Avenue de Gravelle",48.823672,2.420113,0,0,OIF:SA:59:5709874,Europe/Paris,,OIF, +OIF:SP:59:5709875,1,"Caserne des Gardes",48.827753,2.419589,0,0,OIF:SA:59:5709875,Europe/Paris,,OIF, +OIF:SP:59:5709876,1,"Caserne des Gardes",48.82893,2.419591,0,0,OIF:SA:59:5709875,Europe/Paris,,OIF, +OIF:SP:59:5709877,1,"Demi Lune - Parc Zoologique",48.834313,2.420402,0,0,OIF:SA:59:5709877,Europe/Paris,,OIF, +OIF:SP:59:5709888,1,"Bérault - Métro",48.845695,2.427447,0,0,OIF:SA:59596,Europe/Paris,,OIF, +OIF:SP:59:5709894,1,"Château de Vincennes",48.843967,2.441647,0,0,OIF:SA:59595,Europe/Paris,,OIF, +OIF:SP:59:5709896,1,"Demi Lune - Parc Zoologique",48.835132,2.419532,0,0,OIF:SA:59:3747961,Europe/Paris,,OIF, +OIF:SP:59:5709897,1,"Avenue de Gravelle",48.823465,2.419663,0,0,OIF:SA:59:5709897,Europe/Paris,,OIF, +OIF:SP:59:5709898,1,"Charenton - Écoles",48.82168,2.414448,0,0,OIF:SA:59482,Europe/Paris,,OIF, +OIF:SP:59:5709902,1,"Vaillant-Couturier - Westermeyer",48.819291,2.396805,0,0,OIF:SA:59:3781670,Europe/Paris,,OIF, +OIF:SP:59:5709971,1,"Luxembourg",48.846116,2.340623,0,0,OIF:SA:8775861,Europe/Paris,,OIF, +OIF:SP:59:5709990,1,"Cadet",48.875999,2.343922,0,0,OIF:SA:59304,Europe/Paris,,OIF, +OIF:SP:59:5709991,1,"Maubeuge - Rochechouart",48.878938,2.345558,0,0,OIF:SA:59:3811227,Europe/Paris,,OIF, +OIF:SP:59:5709993,1,"Rochechouart - Clignancourt",48.883872,2.347126,0,0,OIF:SA:59:3740301,Europe/Paris,,OIF, +OIF:SP:59:5709995,1,"Muller",48.886667,2.347467,0,0,OIF:SA:59629,Europe/Paris,,OIF, +OIF:SP:59:5709997,1,"Eugène Sue",48.891349,2.348749,0,0,OIF:SA:59252,Europe/Paris,,OIF, +OIF:SP:59:5709998,1,"Mairie du 18ème - Jules Joffrin",48.892787,2.344552,0,0,OIF:SA:59518,Europe/Paris,,OIF, +OIF:SP:59:5709999,1,"Mairie du 18ème - Jules Joffrin",48.892787,2.34511,0,0,OIF:SA:59518,Europe/Paris,,OIF, +OIF:SP:59:5710000,1,"Albert Kahn",48.895322,2.345983,0,0,OIF:SA:59622,Europe/Paris,,OIF, +OIF:SP:59:5710001,1,"Albert Kahn",48.894908,2.346269,0,0,OIF:SA:59622,Europe/Paris,,OIF, +OIF:SP:59:5710004,1,"Michelet - Rosiers",48.900076,2.344457,0,0,OIF:SA:59258,Europe/Paris,,OIF, +OIF:SP:59:5710005,1,"Michelet - Rosiers",48.900993,2.343912,0,0,OIF:SA:59258,Europe/Paris,,OIF, +OIF:SP:59:5710010,1,"Eugène Lumeau - les Écoles",48.905478,2.337001,0,0,OIF:SA:59:5710010,Europe/Paris,,OIF, +OIF:SP:59:5710014,1,"Mairie de Saint-Ouen",48.911975,2.333374,0,0,OIF:SA:59545,Europe/Paris,,OIF, +OIF:SP:59:5710015,1,"Mairie de Saint-Ouen",48.911472,2.333319,0,0,OIF:SA:59545,Europe/Paris,,OIF, +OIF:SP:59:5710016,1,"Parvis des Bateliers",48.91246,2.327484,0,0,OIF:SA:59:5710016,Europe/Paris,,OIF, +OIF:SP:59:5710017,1,"Parvis des Bateliers",48.912406,2.327361,0,0,OIF:SA:59:5710016,Europe/Paris,,OIF, +OIF:SP:59:5710019,1,"Saint-Ouen - les Docks",48.914779,2.324783,0,0,OIF:SA:59:5710019,Europe/Paris,,OIF, +OIF:SP:59:5710021,1,"Custine - Ramey",48.888725,2.346527,0,0,OIF:SA:59:3749641,Europe/Paris,,OIF, +OIF:SP:59:5710023,1,"Rochechouart - Clignancourt",48.882856,2.34624,0,0,OIF:SA:59:3740301,Europe/Paris,,OIF, +OIF:SP:59:5710024,1,"Trudaine",48.881086,2.344155,0,0,OIF:SA:59:5710024,Europe/Paris,,OIF, +OIF:SP:59:5710050,1,"Condorcet-Trudaine",48.880313,2.346376,0,0,OIF:SA:59:5710050,Europe/Paris,,OIF, +OIF:SP:59:5710052,1,"Muller",48.887368,2.347863,0,0,OIF:SA:59629,Europe/Paris,,OIF, +OIF:SP:59:5710054,1,"Labat",48.889291,2.348285,0,0,OIF:SA:59:5710054,Europe/Paris,,OIF, +OIF:SP:59:5710064,1,"Marche aux Puces",48.90226,2.342399,0,0,OIF:SA:59:5710064,Europe/Paris,,OIF, +OIF:SP:59:5710065,1,"Marche aux Puces",48.901775,2.343149,0,0,OIF:SA:59:5710064,Europe/Paris,,OIF, +OIF:SP:59:5710066,1,"Paul Bert",48.903599,2.339795,0,0,OIF:SA:59:5710066,Europe/Paris,,OIF, +OIF:SP:59:5710067,1,"Paul Bert",48.903078,2.34045,0,0,OIF:SA:59:5710066,Europe/Paris,,OIF, +OIF:SP:59:5710069,1,"Eugène Lumeau - les Écoles",48.905082,2.337382,0,0,OIF:SA:59:5710010,Europe/Paris,,OIF, +OIF:SP:59:5710070,1,"Ernest Renan",48.909009,2.332979,0,0,OIF:SA:59543,Europe/Paris,,OIF, +OIF:SP:59:5710071,1,"Ernest Renan",48.908111,2.333006,0,0,OIF:SA:59543,Europe/Paris,,OIF, +OIF:SP:59:5710076,1,"Saint-Ouen - les Docks",48.915722,2.323542,0,0,OIF:SA:59:5710019,Europe/Paris,,OIF, +OIF:SP:59:5710083,1,"La Tour d'Auvergne",48.87937,2.343214,0,0,OIF:SA:59:5710083,Europe/Paris,,OIF, +OIF:SP:59:5726232,1,"Michelet - Docteur Bauer",48.904938,2.344608,0,0,OIF:SA:59:4016591,Europe/Paris,,OIF, +OIF:SP:59:5726234,1,"Cimetière Parisien",48.907814,2.344022,0,0,OIF:SA:59:5726234,Europe/Paris,,OIF, +OIF:SP:59:5726236,1,"Godillot",48.910744,2.34405,0,0,OIF:SA:59:5726236,Europe/Paris,,OIF, +OIF:SP:59:5726237,1,"Landy - Ornano",48.915453,2.344391,0,0,OIF:SA:59:4758951,Europe/Paris,,OIF, +OIF:SP:59:5726239,1,"Docteur Finot",48.917673,2.344119,0,0,OIF:SA:59:5726239,Europe/Paris,,OIF, +OIF:SP:59:5726240,1,"Carrefour Pleyel",48.919506,2.344433,0,0,OIF:SA:59544,Europe/Paris,,OIF, +OIF:SP:59:5726243,1,"La Plaine Saulnier",48.925598,2.353149,0,0,OIF:SA:59:4211810,Europe/Paris,,OIF, +OIF:SP:59:5726245,1,"Pont du Canal",48.927413,2.356463,0,0,OIF:SA:59:4000540,Europe/Paris,,OIF, +OIF:SP:59:5726257,1,"Lycée Paul Éluard",48.941287,2.364763,0,0,OIF:SA:59:4211761,Europe/Paris,,OIF, +OIF:SP:59:5726260,1,"Saint-Denis - Université",48.946077,2.364684,0,0,OIF:SA:59540,Europe/Paris,,OIF, +OIF:SP:59:5726262,1,"Henri Barbusse",48.946938,2.371111,0,0,OIF:SA:59:4179730,Europe/Paris,,OIF, +OIF:SP:59:5726263,1,"Clos Hanot",48.947647,2.375859,0,0,OIF:SA:59:5726263,Europe/Paris,,OIF, +OIF:SP:59:5726265,1,"Paul Vaillant-Couturier",48.948535,2.380663,0,0,OIF:SA:59:5726265,Europe/Paris,,OIF, +OIF:SP:59:5726266,1,"Paul Vaillant-Couturier",48.948858,2.381031,0,0,OIF:SA:59:5726265,Europe/Paris,,OIF, +OIF:SP:59:5726267,1,"Le Globe",48.950393,2.385918,0,0,OIF:SA:59:3972571,Europe/Paris,,OIF, +OIF:SP:59:5726268,1,"Le Globe",48.949639,2.385166,0,0,OIF:SA:59:3972571,Europe/Paris,,OIF, +OIF:SP:59:5726270,1,"François Begue",48.951795,2.384909,0,0,OIF:SA:59:4179744,Europe/Paris,,OIF, +OIF:SP:59:5726271,1,"Mairie de Stains",48.956218,2.383289,0,0,OIF:SA:59:4179745,Europe/Paris,,OIF, +OIF:SP:59:5726272,1,"Mairie de Stains",48.955049,2.383193,0,0,OIF:SA:59:4179745,Europe/Paris,,OIF, +OIF:SP:59:5726273,1,"Les Parouzets",48.960424,2.382092,0,0,OIF:SA:59:5726273,Europe/Paris,,OIF, +OIF:SP:59:5726274,1,"Les Parouzets",48.9601,2.381887,0,0,OIF:SA:59:5726273,Europe/Paris,,OIF, +OIF:SP:59:5726277,1,"Pierre Semard",48.96734,2.391462,0,0,OIF:SA:59:3740991,Europe/Paris,,OIF, +OIF:SP:59:5726279,1,"Rond-Point de la Lutèce",48.968662,2.389088,0,0,OIF:SA:59:5726279,Europe/Paris,,OIF, +OIF:SP:59:5726280,1,"Les Prévoyants",48.970057,2.38378,0,0,OIF:SA:59:5726280,Europe/Paris,,OIF, +OIF:SP:59:5726281,1,"République",48.96614,2.381606,0,0,OIF:SA:59:5726281,Europe/Paris,,OIF, +OIF:SP:59:5726282,1,"Jean Jaurès - Aristide Briand",48.96206,2.379855,0,0,OIF:SA:59:3972578,Europe/Paris,,OIF, +OIF:SP:59:5726283,1,"Porte de Paris",48.930074,2.355428,0,0,OIF:SA:59542,Europe/Paris,,OIF, +OIF:SP:59:5726284,1,"Landy - Ornano",48.913719,2.344091,0,0,OIF:SA:59:5726284,Europe/Paris,,OIF, +OIF:SP:59:5726285,1,"Place Debain",48.902961,2.348152,0,0,OIF:SA:59:4016589,Europe/Paris,,OIF, +OIF:SP:59:5726286,1,"Porte de Clignancourt",48.899528,2.34488,0,0,OIF:SA:59258,Europe/Paris,,OIF, +OIF:SP:59:5726310,1,"Jean Jaurès - Aristide Briand",48.962941,2.380156,0,0,OIF:SA:59:3972578,Europe/Paris,,OIF, +OIF:SP:59:5726311,1,"République",48.966238,2.381824,0,0,OIF:SA:59:5726281,Europe/Paris,,OIF, +OIF:SP:59:5726312,1,"Les Prévoyants",48.969581,2.383806,0,0,OIF:SA:59:5726280,Europe/Paris,,OIF, +OIF:SP:59:5726314,1,"Michelet - Docteur Bauer",48.905576,2.344308,0,0,OIF:SA:59:4016591,Europe/Paris,,OIF, +OIF:SP:59:5726315,1,"Cimetière Parisien",48.907535,2.344308,0,0,OIF:SA:59:5726234,Europe/Paris,,OIF, +OIF:SP:59:5726316,1,"Godillot",48.910627,2.34435,0,0,OIF:SA:59:5726236,Europe/Paris,,OIF, +OIF:SP:59:5726318,1,"Docteur Finot",48.916531,2.344419,0,0,OIF:SA:59:5726239,Europe/Paris,,OIF, +OIF:SP:59:5726327,1,"Cité Langevin",48.938736,2.360601,0,0,OIF:SA:59:4211762,Europe/Paris,,OIF, +OIF:SP:59:5726329,1,"Saint-Denis - Université",48.946104,2.364875,0,0,OIF:SA:59540,Europe/Paris,,OIF, +OIF:SP:59:5726330,1,"Henri Barbusse",48.946759,2.371083,0,0,OIF:SA:59:4179730,Europe/Paris,,OIF, +OIF:SP:59:5726335,1,"Mairie de Stains",48.955598,2.383289,0,0,OIF:SA:59:4179745,Europe/Paris,,OIF, +OIF:SP:59:5727628,1,"Châtelet",48.859031,2.346958,0,0,OIF:SA:59566,Europe/Paris,,OIF, +OIF:SP:59:5727629,1,"Rivoli - Pont Neuf",48.859849,2.344383,0,0,OIF:SA:59566,Europe/Paris,,OIF, +OIF:SP:59:5727630,1,"Louvre - Rivoli",48.861233,2.340161,0,0,OIF:SA:59231,Europe/Paris,,OIF, +OIF:SP:59:5727631,1,"Palais Royal - Musée du Louvre",48.862581,2.336047,0,0,OIF:SA:59591,Europe/Paris,,OIF, +OIF:SP:59:5727632,1,"Pyramides - Tuileries",48.864037,2.331606,0,0,OIF:SA:59:5727632,Europe/Paris,,OIF, +OIF:SP:59:5727633,1,"Castiglione",48.86552,2.326961,0,0,OIF:SA:59:5727633,Europe/Paris,,OIF, +OIF:SP:59:5727635,1,"Cours la Reine - Chevaux de Marly",48.865123,2.317602,0,0,OIF:SA:59:5727635,Europe/Paris,,OIF, +OIF:SP:59:5727636,1,"Grand Palais",48.865042,2.312889,0,0,OIF:SA:8739303,Europe/Paris,,OIF, +OIF:SP:59:5727637,1,"Grand Palais",48.864601,2.31417,0,0,OIF:SA:8739303,Europe/Paris,,OIF, +OIF:SP:59:5727638,1,"Palais de la Découverte",48.864942,2.309238,0,0,OIF:SA:59:3764729,Europe/Paris,,OIF, +OIF:SP:59:5727639,1,"Palais de la Découverte",48.864538,2.310873,0,0,OIF:SA:59:3764729,Europe/Paris,,OIF, +OIF:SP:59:5727640,1,"Alma - Marceau",48.864815,2.302809,0,0,OIF:SA:59500,Europe/Paris,,OIF, +OIF:SP:59:5727641,1,"Alma - Marceau",48.864104,2.301243,0,0,OIF:SA:59500,Europe/Paris,,OIF, +OIF:SP:59:5727642,1,"Musée d'Art Moderne - Palais de Tokyo",48.8635,2.29653,0,0,OIF:SA:59:5727642,Europe/Paris,,OIF, +OIF:SP:59:5727643,1,"Musée d'Art Moderne - Palais de Tokyo",48.862889,2.295754,0,0,OIF:SA:59:5727642,Europe/Paris,,OIF, +OIF:SP:59:5727644,1,"Pont d'Iena",48.861198,2.29175,0,0,OIF:SA:59:5727644,Europe/Paris,,OIF, +OIF:SP:59:5727645,1,"Pont d'Iena",48.860821,2.292187,0,0,OIF:SA:59:5727644,Europe/Paris,,OIF, +OIF:SP:59:5727646,1,"Le Notre",48.858905,2.289001,0,0,OIF:SA:59:5727646,Europe/Paris,,OIF, +OIF:SP:59:5727647,1,"Pont de Bir-Hakeim",48.856459,2.285857,0,0,OIF:SA:59451,Europe/Paris,,OIF, +OIF:SP:59:5727648,1,"Pont de Bir-Hakeim",48.856585,2.286606,0,0,OIF:SA:59451,Europe/Paris,,OIF, +OIF:SP:59:5727649,1,"Lamballe - Ankara",48.854229,2.283026,0,0,OIF:SA:59:5727649,Europe/Paris,,OIF, +OIF:SP:59:5727650,1,"Lamballe - Ankara",48.854382,2.283625,0,0,OIF:SA:59:5727649,Europe/Paris,,OIF, +OIF:SP:59:5727652,1,"Radio France",48.853105,2.281216,0,0,OIF:SA:8754320,Europe/Paris,,OIF, +OIF:SP:59:5727656,1,"Radio France",48.85306,2.281625,0,0,OIF:SA:8754320,Europe/Paris,,OIF, +OIF:SP:59:5727659,1,"Radio France - Pont de Grenelle",48.852115,2.279515,0,0,OIF:SA:59:5727659,Europe/Paris,,OIF, +OIF:SP:59:5727662,1,"Radio France - Pont de Grenelle",48.850964,2.278154,0,0,OIF:SA:59:5727659,Europe/Paris,,OIF, +OIF:SP:59:5727664,1,"Degas",48.848905,2.275038,0,0,OIF:SA:59:5727664,Europe/Paris,,OIF, +OIF:SP:59:5727665,1,"Degas",48.848851,2.275392,0,0,OIF:SA:59:5727664,Europe/Paris,,OIF, +OIF:SP:59:5727666,1,"Pont Mirabeau",48.847016,2.27312,0,0,OIF:SA:59374,Europe/Paris,,OIF, +OIF:SP:59:5727667,1,"Pont Mirabeau",48.847043,2.273597,0,0,OIF:SA:59374,Europe/Paris,,OIF, +OIF:SP:59:5727668,1,"Wilhem",48.844714,2.270822,0,0,OIF:SA:59:4008881,Europe/Paris,,OIF, +OIF:SP:59:5727670,1,"Victorien Sardou",48.843239,2.269326,0,0,OIF:SA:59:4008880,Europe/Paris,,OIF, +OIF:SP:59:5727672,1,"Versailles - Exelmans",48.841341,2.265992,0,0,OIF:SA:29:456,Europe/Paris,,OIF, +OIF:SP:59:5727676,1,"Porte de Saint-Cloud - Murat",48.83828,2.25814,0,0,OIF:SA:59:5727676,Europe/Paris,,OIF, +OIF:SP:59:5727677,1,"Porte de Saint-Cloud - Murat",48.837184,2.259,0,0,OIF:SA:59:5727676,Europe/Paris,,OIF, +OIF:SP:59:5727678,1,"Porte de Saint-Cloud",48.838387,2.255962,0,0,OIF:SA:59492,Europe/Paris,,OIF, +OIF:SP:59:5727679,1,"Porte de Saint-Cloud",48.838198,2.255526,0,0,OIF:SA:59492,Europe/Paris,,OIF, +OIF:SP:59:5727680,1,"La Tourelle",48.83885,2.250705,0,0,OIF:SA:59:4008254,Europe/Paris,,OIF, +OIF:SP:59:5727681,1,"La Tourelle",48.83859,2.251223,0,0,OIF:SA:59:4008254,Europe/Paris,,OIF, +OIF:SP:59:5727682,1,"Victor Hugo",48.839225,2.246389,0,0,OIF:SA:59:5727682,Europe/Paris,,OIF, +OIF:SP:59:5727683,1,"Victor Hugo",48.839054,2.246035,0,0,OIF:SA:59:5727682,Europe/Paris,,OIF, +OIF:SP:59:5727684,1,"Route de la Reine - Jean Jaurès",48.839857,2.239266,0,0,OIF:SA:59:3681813,Europe/Paris,,OIF, +OIF:SP:59:5727685,1,"Route de la Reine - Jean Jaurès",48.839544,2.240506,0,0,OIF:SA:59:3681813,Europe/Paris,,OIF, +OIF:SP:59:5727686,1,"Ancienne Mairie de Boulogne-Billancourt",48.840285,2.234568,0,0,OIF:SA:59:3442585,Europe/Paris,,OIF, +OIF:SP:59:5727687,1,"Ancienne Mairie de Boulogne-Billancourt",48.840105,2.234283,0,0,OIF:SA:59:3442585,Europe/Paris,,OIF, +OIF:SP:59:5727688,1,"Rhin et Danube",48.840739,2.229761,0,0,OIF:SA:59400,Europe/Paris,,OIF, +OIF:SP:59:5727689,1,"Rhin et Danube",48.840469,2.229707,0,0,OIF:SA:59400,Europe/Paris,,OIF, +OIF:SP:59:5727691,1,"Parc de Saint-Cloud",48.842754,2.222363,0,0,OIF:SA:59010,Europe/Paris,,OIF, +OIF:SP:59:5727696,1,"Concorde - Quai des Tuileries",48.863785,2.320845,0,0,OIF:SA:59:5727696,Europe/Paris,,OIF, +OIF:SP:59:5727697,1,"Pont de Solferino - Quai des Tuileries",48.862302,2.325245,0,0,OIF:SA:8754730,Europe/Paris,,OIF, +OIF:SP:59:5727698,1,"Pont Royal",48.860559,2.33079,0,0,OIF:SA:59:5727698,Europe/Paris,,OIF, +OIF:SP:59:5727699,1,"Quai François Mitterrand",48.859876,2.333868,0,0,OIF:SA:59:5727699,Europe/Paris,,OIF, +OIF:SP:59:5727700,1,"Pont des Arts",48.859049,2.338513,0,0,OIF:SA:59:5727700,Europe/Paris,,OIF, +OIF:SP:59:5727701,1,"Pont Neuf - Quai du Louvre",48.858061,2.34358,0,0,OIF:SA:59664,Europe/Paris,,OIF, +OIF:SP:59:5747132,1,"Villeparisis - Mitry-le-Neuf RER",48.953674,2.603271,0,0,OIF:SA:8727151,Europe/Paris,,OIF, +OIF:SP:59:5747134,1,"Lavoisier",48.952833,2.588993,0,0,OIF:SA:59:5747134,Europe/Paris,,OIF, +OIF:SP:59:5747135,1,"Lavoisier",48.952609,2.588801,0,0,OIF:SA:59:5747134,Europe/Paris,,OIF, +OIF:SP:59:5747136,1,"Cité des Douaniers",48.949875,2.576521,0,0,OIF:SA:59:5747136,Europe/Paris,,OIF, +OIF:SP:59:5747137,1,"Cité des Douaniers",48.949669,2.576384,0,0,OIF:SA:59:5747136,Europe/Paris,,OIF, +OIF:SP:59:5747138,1,"Vert Galant RER",48.944941,2.567534,0,0,OIF:SA:8727143,Europe/Paris,,OIF, +OIF:SP:59:5747139,1,"Vert Galant RER",48.945416,2.568533,0,0,OIF:SA:8727143,Europe/Paris,,OIF, +OIF:SP:59:5747140,1,"Brazza",48.934344,2.563859,0,0,OIF:SA:55:191,Europe/Paris,,OIF, +OIF:SP:59:5747141,1,"Brazza",48.93467,2.56727,0,0,OIF:SA:55:191,Europe/Paris,,OIF, +OIF:SP:59:5747143,1,"Sevran - Livry RER",48.935797,2.535082,0,0,OIF:SA:8727142,Europe/Paris,,OIF, +OIF:SP:59:5747153,1,"Mairie de Livry - Gargan",48.918809,2.536531,0,0,OIF:SA:55:124,Europe/Paris,,OIF, +OIF:SP:59:5747154,1,"Mairie de Livry - Gargan",48.919103,2.53791,0,0,OIF:SA:55:124,Europe/Paris,,OIF, +OIF:SP:59:5747172,1,"Lycée Claude Nicolas Ledoux",48.914219,2.492621,0,0,OIF:SA:59:5747172,Europe/Paris,,OIF, +OIF:SP:59:5747173,1,"Villageoise",48.911228,2.491058,0,0,OIF:SA:59:5747173,Europe/Paris,,OIF, +OIF:SP:59:5747174,1,"Hôpital Jean Verdier",48.908965,2.490301,0,0,OIF:SA:59:5747174,Europe/Paris,,OIF, +OIF:SP:59:5747175,1,"Hôpital Jean Verdier",48.908695,2.490273,0,0,OIF:SA:59:5747174,Europe/Paris,,OIF, +OIF:SP:59:5747176,1,"Pasteur - Hôpital Jean Verdier",48.906956,2.487023,0,0,OIF:SA:59:5747176,Europe/Paris,,OIF, +OIF:SP:59:5747177,1,"Pasteur - Hôpital Jean Verdier",48.906588,2.486531,0,0,OIF:SA:59:5747176,Europe/Paris,,OIF, +OIF:SP:59:5747178,1,"Auguste Polissard",48.906172,2.480968,0,0,OIF:SA:59:5747178,Europe/Paris,,OIF, +OIF:SP:59:5747179,1,"Auguste Polissard",48.905795,2.480858,0,0,OIF:SA:59:5747178,Europe/Paris,,OIF, +OIF:SP:59:5747180,1,"Avenue de Rosny",48.904502,2.471693,0,0,OIF:SA:55:132,Europe/Paris,,OIF, +OIF:SP:59:5747181,1,"Avenue de Rosny",48.90391,2.471364,0,0,OIF:SA:55:132,Europe/Paris,,OIF, +OIF:SP:59:5747196,1,"Escadrille Normandie Niemen - Jean Jaures-Tramway",48.912357,2.435417,0,0,OIF:SA:59076,Europe/Paris,,OIF, +OIF:SP:59:5747197,1,"Escadrille Normandie Niemen - Jean Jaures-Tramway",48.912231,2.435812,0,0,OIF:SA:59076,Europe/Paris,,OIF, +OIF:SP:59:5747205,1,"Cimetière Parisien",48.901634,2.413054,0,0,OIF:SA:59:4658211,Europe/Paris,,OIF, +OIF:SP:59:5747206,1,"Cimetière Parisien",48.901902,2.414131,0,0,OIF:SA:59:4658211,Europe/Paris,,OIF, +OIF:SP:59:5747207,1,"Diderot",48.899973,2.409562,0,0,OIF:SA:59:5747207,Europe/Paris,,OIF, +OIF:SP:59:5747208,1,"Diderot",48.900027,2.41023,0,0,OIF:SA:59:5747207,Europe/Paris,,OIF, +OIF:SP:59:5747215,1,"Montgolfier",48.893947,2.401675,0,0,OIF:SA:59758,Europe/Paris,,OIF, +OIF:SP:59:5747216,1,"Montgolfier",48.893884,2.401839,0,0,OIF:SA:59758,Europe/Paris,,OIF, +OIF:SP:59:5747217,1,"Hoche - Métro",48.891457,2.402354,0,0,OIF:SA:59345,Europe/Paris,,OIF, +OIF:SP:59:5747218,1,"Hoche - Métro",48.891538,2.402476,0,0,OIF:SA:59345,Europe/Paris,,OIF, +OIF:SP:59:5747234,1,"Chemin des Vignes",48.903697,2.417883,0,0,OIF:SA:59:5747234,Europe/Paris,,OIF, +OIF:SP:59:5747237,1,"Gâtine RN3",48.905009,2.476288,0,0,OIF:SA:59:5747237,Europe/Paris,,OIF, +OIF:SP:59:5747238,1,"Villageoise",48.91183,2.491373,0,0,OIF:SA:59:5747238,Europe/Paris,,OIF, +OIF:SP:59:5747240,1,"Victor Hugo - Jean Moulin",48.910586,2.513362,0,0,OIF:SA:59:5747240,Europe/Paris,,OIF, +OIF:SP:59:5747242,1,"Maison de Quartier",48.786144,2.298562,0,0,OIF:SA:59:5747242,Europe/Paris,,OIF, +OIF:SP:59:5747257,1,"Bretagne",48.94601,2.234127,0,0,OIF:SA:18:35,Europe/Paris,,OIF, +OIF:SP:59:5747258,1,"Charcot Hôpital",48.946642,2.237701,0,0,OIF:SA:59:5747258,Europe/Paris,,OIF, +OIF:SP:59:5747259,1,"Charcot Hôpital",48.946884,2.237577,0,0,OIF:SA:59:5747258,Europe/Paris,,OIF, +OIF:SP:59:5747260,1,"Ernestine",48.947363,2.240414,0,0,OIF:SA:18:84,Europe/Paris,,OIF, +OIF:SP:59:5747261,1,"Ernestine",48.947597,2.240482,0,0,OIF:SA:18:84,Europe/Paris,,OIF, +OIF:SP:59:5747262,1,"Rechsteiner",48.947626,2.243716,0,0,OIF:SA:59:5747262,Europe/Paris,,OIF, +OIF:SP:59:5747263,1,"Rechsteiner",48.947725,2.243825,0,0,OIF:SA:59:5747262,Europe/Paris,,OIF, +OIF:SP:59:5747264,1,"Belin",48.946488,2.247374,0,0,OIF:SA:59:4023682,Europe/Paris,,OIF, +OIF:SP:59:5747265,1,"Belin",48.946703,2.24736,0,0,OIF:SA:59:4023682,Europe/Paris,,OIF, +OIF:SP:59:5747266,1,"Hôtel de Ville d'Argenteuil",48.946975,2.249789,0,0,OIF:SA:59:4023818,Europe/Paris,,OIF, +OIF:SP:59:5747267,1,"Hôtel de Ville d'Argenteuil",48.947019,2.249393,0,0,OIF:SA:59:4023818,Europe/Paris,,OIF, +OIF:SP:59:5747268,1,"Léon Feix",48.94828,2.252392,0,0,OIF:SA:18:87,Europe/Paris,,OIF, +OIF:SP:59:5747269,1,"Léon Feix",48.948441,2.252201,0,0,OIF:SA:18:87,Europe/Paris,,OIF, +OIF:SP:59:5747270,1,"Gare d'Argenteuil",48.946971,2.256624,0,0,OIF:SA:8738184,Europe/Paris,,OIF, +OIF:SP:59:5747271,1,"Gare d'Argenteuil",48.948129,2.255381,0,0,OIF:SA:8738184,Europe/Paris,,OIF, +OIF:SP:59:5747272,1,"Borderel - Heloise",48.942862,2.254229,0,0,OIF:SA:59:5747272,Europe/Paris,,OIF, +OIF:SP:59:5747273,1,"Borderel - Heloise",48.94261,2.254394,0,0,OIF:SA:59:5747272,Europe/Paris,,OIF, +OIF:SP:59:5747275,1,"Pont du Chemin de Fer",48.933953,2.263492,0,0,OIF:SA:59:5747275,Europe/Paris,,OIF, +OIF:SP:59:5747276,1,"Pont du Chemin de Fer",48.934501,2.263096,0,0,OIF:SA:59:5747275,Europe/Paris,,OIF, +OIF:SP:59:5747277,1,"Solferino",48.931376,2.266742,0,0,OIF:SA:59:5020442,Europe/Paris,,OIF, +OIF:SP:59:5747278,1,"Solferino",48.932068,2.266468,0,0,OIF:SA:59:5020442,Europe/Paris,,OIF, +OIF:SP:59:5747279,1,"Les Champarons",48.929121,2.268232,0,0,OIF:SA:59:5747279,Europe/Paris,,OIF, +OIF:SP:59:5747280,1,"Les Champarons",48.929121,2.268668,0,0,OIF:SA:59:5747279,Europe/Paris,,OIF, +OIF:SP:59:5747286,1,"Chanzy",48.909468,2.271543,0,0,OIF:SA:59:5747286,Europe/Paris,,OIF, +OIF:SP:59:5747287,1,"Chanzy",48.909657,2.272566,0,0,OIF:SA:59:5747286,Europe/Paris,,OIF, +OIF:SP:59:5747288,1,"Balzac",48.908703,2.269404,0,0,OIF:SA:59:5747288,Europe/Paris,,OIF, +OIF:SP:59:5747289,1,"Balzac",48.90846,2.269213,0,0,OIF:SA:59:5747288,Europe/Paris,,OIF, +OIF:SP:59:5747290,1,"Chevreul",48.906984,2.265834,0,0,OIF:SA:59:5747290,Europe/Paris,,OIF, +OIF:SP:59:5747293,1,"Place Mermoz",48.902343,2.274879,0,0,OIF:SA:59:4015808,Europe/Paris,,OIF, +OIF:SP:59:5747294,1,"Place Mermoz",48.902801,2.274333,0,0,OIF:SA:59:4015808,Europe/Paris,,OIF, +OIF:SP:59:5747295,1,"Pont de Levallois - Métro",48.896828,2.280542,0,0,OIF:SA:59589,Europe/Paris,,OIF, +OIF:SP:59:5747312,1,"Chevreul",48.907461,2.266447,0,0,OIF:SA:59:4274270,Europe/Paris,,OIF, +OIF:SP:59:5747313,1,"Gare de Bois-Colombes",48.912911,2.272684,0,0,OIF:SA:8738107,Europe/Paris,,OIF, +OIF:SP:59:5747315,1,"Bourguignons",48.918639,2.280164,0,0,OIF:SA:59:4015696,Europe/Paris,,OIF, +OIF:SP:59:5747317,1,"Gramme",48.923832,2.275671,0,0,OIF:SA:59:5747317,Europe/Paris,,OIF, +OIF:SP:59:5747320,1,"Labriere",48.945864,2.254511,0,0,OIF:SA:59:4023748,Europe/Paris,,OIF, +OIF:SP:59:5747327,1,"Bretagne",48.945749,2.2341,0,0,OIF:SA:18:35,Europe/Paris,,OIF, +OIF:SP:59:5747340,1,"Quatre Routes",48.925871,2.273828,0,0,OIF:SA:59:5747340,Europe/Paris,,OIF, +OIF:SP:59:5747350,1,"Pont de Levallois - Becon",48.897789,2.279669,0,0,OIF:SA:59589,Europe/Paris,,OIF, +OIF:SP:59:5747351,1,"Rue des Paradis",48.786657,2.299963,0,0,OIF:SA:59:5747351,Europe/Paris,,OIF, +OIF:SP:59:5747353,1,"Rue des Paradis.",48.786315,2.300086,0,0,OIF:SA:59:5747353,Europe/Paris,,OIF, +OIF:SP:59:5761270,1,"Rosa Parks - Curial",48.896312,2.378356,0,0,OIF:SA:59:5761270,Europe/Paris,,OIF, +OIF:SP:59:5761271,1,"Rosa Parks - Curial",48.895971,2.378792,0,0,OIF:SA:59:5761270,Europe/Paris,,OIF, +OIF:SP:59:5761272,1,"Rosa Parks",48.896044,2.373749,0,0,OIF:SA:8765479,Europe/Paris,,OIF, +OIF:SP:59:5761273,1,"Rosa Parks",48.896197,2.375235,0,0,OIF:SA:8765479,Europe/Paris,,OIF, +OIF:SP:59:5761276,1,"Parc du Millénaire",48.901338,2.372212,0,0,OIF:SA:59:5761276,Europe/Paris,,OIF, +OIF:SP:59:5761277,1,"Parc du Millénaire",48.901383,2.371939,0,0,OIF:SA:59:5761276,Europe/Paris,,OIF, +OIF:SP:59:5761278,1,"Magasins Généraux",48.902885,2.368751,0,0,OIF:SA:59:5761278,Europe/Paris,,OIF, +OIF:SP:59:5761279,1,"Net Squ@Re",48.903146,2.366079,0,0,OIF:SA:59:5761279,Europe/Paris,,OIF, +OIF:SP:59:5761280,1,"Net Squ@Re",48.903029,2.366024,0,0,OIF:SA:59:5761280,Europe/Paris,,OIF, +OIF:SP:59:5761281,1,"Modes et Médias",48.904566,2.366039,0,0,OIF:SA:59:5761281,Europe/Paris,,OIF, +OIF:SP:59:5761282,1,"Gardinoux",48.905977,2.366067,0,0,OIF:SA:59774,Europe/Paris,,OIF, +OIF:SP:59:5761283,1,"Front Populaire - Proudhon",48.906634,2.364486,0,0,OIF:SA:59774,Europe/Paris,,OIF, +OIF:SP:59:5761284,1,"Métallurgie",48.90897,2.365128,0,0,OIF:SA:59:5761284,Europe/Paris,,OIF, +OIF:SP:59:5761285,1,"Métallurgie",48.909087,2.365046,0,0,OIF:SA:59:5761284,Europe/Paris,,OIF, +OIF:SP:59:5761294,1,"Jesse Owens",48.923565,2.364604,0,0,OIF:SA:59:5761294,Europe/Paris,,OIF, +OIF:SP:59:5761295,1,"Jesse Owens",48.923404,2.364358,0,0,OIF:SA:59:5761294,Europe/Paris,,OIF, +OIF:SP:59:5761296,1,"Delaunay - Rimet",48.92628,2.362614,0,0,OIF:SA:59:5761296,Europe/Paris,,OIF, +OIF:SP:59:5761297,1,"Delaunay - Rimet",48.926109,2.362668,0,0,OIF:SA:59:5761296,Europe/Paris,,OIF, +OIF:SP:59:5761300,1,"Porte de Paris - Stade de France",48.928743,2.356818,0,0,OIF:SA:59542,Europe/Paris,,OIF, +OIF:SP:59:5761301,1,"Porte de Paris",48.930792,2.356737,0,0,OIF:SA:59542,Europe/Paris,,OIF, +OIF:SP:59:5761302,1,"Porte de Paris",48.930532,2.356355,0,0,OIF:SA:59542,Europe/Paris,,OIF, +OIF:SP:59:5761304,1,"Médiathèque",48.934459,2.358253,0,0,OIF:SA:59541,Europe/Paris,,OIF, +OIF:SP:59:5761309,1,"Saint-Gobain",48.912376,2.366098,0,0,OIF:SA:59:5761309,Europe/Paris,,OIF, +OIF:SP:59:5761310,1,"La Montjoie - Germaine Tillion",48.910911,2.365851,0,0,OIF:SA:59:5761310,Europe/Paris,,OIF, +OIF:SP:59:5761312,1,"Gardinoux",48.905968,2.365903,0,0,OIF:SA:59774,Europe/Paris,,OIF, +OIF:SP:59:5761313,1,"Modes et Médias",48.904539,2.365875,0,0,OIF:SA:59:5761313,Europe/Paris,,OIF, +OIF:SP:59:5761314,1,"Magasins Généraux",48.902615,2.369159,0,0,OIF:SA:59:5761278,Europe/Paris,,OIF, +OIF:SP:59:5761317,1,"Sevres-Ville d'Avray - Gare SNCF Rive Droite",48.827585,2.198792,0,0,OIF:SA:8738234,Europe/Paris,,OIF, +OIF:SP:59:5761318,1,"Jouet Lucot",48.828443,2.194896,0,0,OIF:SA:59:5761318,Europe/Paris,,OIF, +OIF:SP:59:5761319,1,"Jouet Lucot",48.827374,2.195457,0,0,OIF:SA:59:5761318,Europe/Paris,,OIF, +OIF:SP:59:5761320,1,"Mairie de Ville-d'Avray",48.828024,2.189997,0,0,OIF:SA:59:5761320,Europe/Paris,,OIF, +OIF:SP:59:5761321,1,"Église de Ville d'Avray",48.827105,2.188175,0,0,OIF:SA:17:1403,Europe/Paris,,OIF, +OIF:SP:59:5761322,1,"Église de Ville d'Avray",48.827357,2.188951,0,0,OIF:SA:17:1403,Europe/Paris,,OIF, +OIF:SP:59:5761323,1,"Monastère",48.825822,2.183007,0,0,OIF:SA:59:5761323,Europe/Paris,,OIF, +OIF:SP:59:5761327,1,"Jardin d'Acclimatation",48.877103,2.268355,0,0,OIF:SA:59:5251750,Europe/Paris,,OIF, +OIF:SP:59:5761328,1,"Jardin d'Acclimatation",48.877212,2.269704,0,0,OIF:SA:59:5251750,Europe/Paris,,OIF, +OIF:SP:59:5761329,1,"Fondation L. Vuitton",48.876211,2.263138,0,0,OIF:SA:59:5761329,Europe/Paris,,OIF, +OIF:SP:59:5761330,1,"Fondation L. Vuitton",48.875995,2.263097,0,0,OIF:SA:59:5761329,Europe/Paris,,OIF, +OIF:SP:59:5761331,1,"Porte de Madrid",48.873644,2.25468,0,0,OIF:SA:59:5761331,Europe/Paris,,OIF, +OIF:SP:59:5761332,1,"Porte de Madrid",48.874103,2.256069,0,0,OIF:SA:59:5761331,Europe/Paris,,OIF, +OIF:SP:59:5761356,1,"8 Mai 1945",48.870461,2.20346,0,0,OIF:SA:59:5761356,Europe/Paris,,OIF, +OIF:SP:59:5761357,1,"8 Mai 1945",48.870524,2.203282,0,0,OIF:SA:59:5761356,Europe/Paris,,OIF, +OIF:SP:59:5761360,1,"Les Godardes",48.872841,2.194421,0,0,OIF:SA:59:4109845,Europe/Paris,,OIF, +OIF:SP:59:5761361,1,"Les Godardes",48.872599,2.195184,0,0,OIF:SA:59:4109845,Europe/Paris,,OIF, +OIF:SP:59:5761375,1,"Les Martinets",48.883075,2.171349,0,0,OIF:SA:59:5761375,Europe/Paris,,OIF, +OIF:SP:59:5761376,1,"Geneviève Couturier",48.879809,2.175774,0,0,OIF:SA:59:5761376,Europe/Paris,,OIF, +OIF:SP:59:5761410,1,"Mairie d'Aubervilliers",48.913287,2.382515,0,0,OIF:SA:59:3908815,Europe/Paris,,OIF, +OIF:SP:59:5761411,1,"Mairie d'Aubervilliers",48.913485,2.382324,0,0,OIF:SA:59:3908815,Europe/Paris,,OIF, +OIF:SP:59:5761412,1,"André Karman",48.911076,2.384681,0,0,OIF:SA:59:4009058,Europe/Paris,,OIF, +OIF:SP:59:5761413,1,"Villebois - Mareuil",48.911042,2.379104,0,0,OIF:SA:59:5761413,Europe/Paris,,OIF, +OIF:SP:59:5761414,1,"Villebois - Mareuil",48.910889,2.379349,0,0,OIF:SA:59:5761413,Europe/Paris,,OIF, +OIF:SP:59:5761415,1,"Félix Faure - Victor Hugo",48.909335,2.37823,0,0,OIF:SA:59:5761415,Europe/Paris,,OIF, +OIF:SP:59:5761416,1,"Félix Faure - Victor Hugo",48.909496,2.378639,0,0,OIF:SA:59:5761415,Europe/Paris,,OIF, +OIF:SP:59:5761417,1,"Gardinoux",48.906639,2.375651,0,0,OIF:SA:59774,Europe/Paris,,OIF, +OIF:SP:59:5761418,1,"Gardinoux",48.906451,2.375815,0,0,OIF:SA:59774,Europe/Paris,,OIF, +OIF:SP:59:5761419,1,"La Haie Coq",48.904169,2.372718,0,0,OIF:SA:59:5355394,Europe/Paris,,OIF, +OIF:SP:59:5761420,1,"La Haie Coq",48.904807,2.373864,0,0,OIF:SA:59:5355394,Europe/Paris,,OIF, +OIF:SP:59:5761421,1,"Parc du Millénaire",48.901285,2.370031,0,0,OIF:SA:59:5761276,Europe/Paris,,OIF, +OIF:SP:59:5761422,1,"Porte d'Aubervilliers - Cité Ch. Hermite",48.8992,2.370125,0,0,OIF:SA:8765479,Europe/Paris,,OIF, +OIF:SP:59:5761444,1,"Gare de l'Est.",48.876141,2.358951,0,0,OIF:SA:8711300,Europe/Paris,,OIF, +OIF:SP:59:5761447,1,"Porte d'Aubervilliers - Macdonald",48.897807,2.370492,0,0,OIF:SA:59768,Europe/Paris,,OIF, +OIF:SP:59:5761449,1,"Parc du Millénaire",48.902677,2.371422,0,0,OIF:SA:59:5761449,Europe/Paris,,OIF, +OIF:SP:59:5761960,1,"Porte d'Aubervilliers",48.899568,2.371257,0,0,OIF:SA:59768,Europe/Paris,,OIF, +OIF:SP:59:5761961,1,"Porte d'Aubervilliers",48.899343,2.371284,0,0,OIF:SA:59768,Europe/Paris,,OIF, +OIF:SP:59:5761976,1,"Chaudron - Saint-Martin",48.882278,2.366476,0,0,OIF:SA:59296,Europe/Paris,,OIF, +OIF:SP:59:5761978,1,"Louis Blanc",48.881909,2.366326,0,0,OIF:SA:59296,Europe/Paris,,OIF, +OIF:SP:59:5762013,1,"Place Voltaire",48.912184,2.296587,0,0,OIF:SA:59:4015688,Europe/Paris,,OIF, +OIF:SP:59:5762014,1,"Place Voltaire",48.913029,2.295564,0,0,OIF:SA:59:4015688,Europe/Paris,,OIF, +OIF:SP:59:5762015,1,"Gabriel Péri - Métro",48.916327,2.295302,0,0,OIF:SA:59613,Europe/Paris,,OIF, +OIF:SP:59:5762016,1,"Gabriel Péri - Métro",48.915859,2.294321,0,0,OIF:SA:59613,Europe/Paris,,OIF, +OIF:SP:59:5770763,1,"Gambetta",48.865468,2.399596,0,0,OIF:SA:59325,Europe/Paris,,OIF, +OIF:SP:59:5770766,1,"Pelleport - Gambetta",48.86899,2.400895,0,0,OIF:SA:59328,Europe/Paris,,OIF, +OIF:SP:59:5770767,1,"Pelleport - Gambetta",48.867965,2.401043,0,0,OIF:SA:59328,Europe/Paris,,OIF, +OIF:SP:59:5770768,1,"Ménilmontant - Pelleport",48.871022,2.39914,0,0,OIF:SA:59:3687452,Europe/Paris,,OIF, +OIF:SP:59:5770769,1,"Ménilmontant - Pelleport",48.870573,2.39933,0,0,OIF:SA:59:3687452,Europe/Paris,,OIF, +OIF:SP:59:5770770,1,"Borrégo",48.87362,2.397958,0,0,OIF:SA:59:5770770,Europe/Paris,,OIF, +OIF:SP:59:5770773,1,"Pixérécourt",48.875464,2.395262,0,0,OIF:SA:59638,Europe/Paris,,OIF, +OIF:SP:59:5770774,1,"Pixérécourt",48.875392,2.395003,0,0,OIF:SA:59638,Europe/Paris,,OIF, +OIF:SP:59:5770783,1,"Laumière",48.884529,2.380118,0,0,OIF:SA:59636,Europe/Paris,,OIF, +OIF:SP:59:5770784,1,"Laumière",48.884404,2.3799,0,0,OIF:SA:59636,Europe/Paris,,OIF, +OIF:SP:59:5770785,1,"Jean Jaurès - Lorraine",48.885913,2.382654,0,0,OIF:SA:59:5770785,Europe/Paris,,OIF, +OIF:SP:59:5770786,1,"Jean Jaurès - Lorraine",48.885904,2.381768,0,0,OIF:SA:59:5770785,Europe/Paris,,OIF, +OIF:SP:59:5770787,1,"Ourcq - Jean Jaurès",48.887682,2.384646,0,0,OIF:SA:59337,Europe/Paris,,OIF, +OIF:SP:59:5770788,1,"Ourcq - Jean Jaurès",48.887547,2.384509,0,0,OIF:SA:59337,Europe/Paris,,OIF, +OIF:SP:59:5770789,1,"Canal de l'Ourcq",48.889804,2.383271,0,0,OIF:SA:59:5770789,Europe/Paris,,OIF, +OIF:SP:59:5770790,1,"Canal de l'Ourcq",48.890757,2.381909,0,0,OIF:SA:59:5770789,Europe/Paris,,OIF, +OIF:SP:59:5770791,1,"Flandre",48.892618,2.378748,0,0,OIF:SA:59:5770791,Europe/Paris,,OIF, +OIF:SP:59:5770792,1,"Flandre",48.892097,2.379416,0,0,OIF:SA:59:5770791,Europe/Paris,,OIF, +OIF:SP:59:5770793,1,"Cambrai",48.893581,2.3765,0,0,OIF:SA:59570,Europe/Paris,,OIF, +OIF:SP:59:5770794,1,"Crimée - Curial",48.89377,2.373952,0,0,OIF:SA:59:5770794,Europe/Paris,,OIF, +OIF:SP:59:5770795,1,"Crimée - Curial",48.893528,2.373488,0,0,OIF:SA:59:5770794,Europe/Paris,,OIF, +OIF:SP:59:5770796,1,"Crimée - Rosa Parks",48.894966,2.372453,0,0,OIF:SA:8765479,Europe/Paris,,OIF, +OIF:SP:59:5770797,1,"Crimée - Rosa Parks",48.894912,2.372167,0,0,OIF:SA:8765479,Europe/Paris,,OIF, +OIF:SP:59:5770798,1,"Évangile - Aubervilliers",48.895542,2.370463,0,0,OIF:SA:8765479,Europe/Paris,,OIF, +OIF:SP:59:5770799,1,"Évangile - Aubervilliers",48.895407,2.370409,0,0,OIF:SA:8765479,Europe/Paris,,OIF, +OIF:SP:59:5770800,1,"Tristan Tzara",48.894465,2.36621,0,0,OIF:SA:59:5770800,Europe/Paris,,OIF, +OIF:SP:59:5770801,1,"Tristan Tzara",48.894312,2.366156,0,0,OIF:SA:59:5770800,Europe/Paris,,OIF, +OIF:SP:59:5770802,1,"Place Hébert",48.892991,2.363102,0,0,OIF:SA:59:5770802,Europe/Paris,,OIF, +OIF:SP:59:5770803,1,"Place Hébert",48.89292,2.363252,0,0,OIF:SA:59:5770802,Europe/Paris,,OIF, +OIF:SP:59:5770804,1,"Place de Torcy",48.89141,2.361166,0,0,OIF:SA:59517,Europe/Paris,,OIF, +OIF:SP:59:5770805,1,"Place de Torcy",48.891347,2.361343,0,0,OIF:SA:59517,Europe/Paris,,OIF, +OIF:SP:59:5770806,1,"Ordener - Marx Dormoy",48.890359,2.359271,0,0,OIF:SA:59517,Europe/Paris,,OIF, +OIF:SP:59:5770807,1,"Ordener - Marx Dormoy",48.89053,2.360007,0,0,OIF:SA:59517,Europe/Paris,,OIF, +OIF:SP:59:5770808,1,"Pont Marcadet",48.890701,2.354637,0,0,OIF:SA:59:3741061,Europe/Paris,,OIF, +OIF:SP:59:5770809,1,"Pont Marcadet",48.890423,2.3554,0,0,OIF:SA:59:3741061,Europe/Paris,,OIF, +OIF:SP:59:5770810,1,"Marcadet - Poissonniers",48.891547,2.350221,0,0,OIF:SA:59252,Europe/Paris,,OIF, +OIF:SP:59:5770811,1,"Marcadet - Poissonniers",48.891385,2.350153,0,0,OIF:SA:59252,Europe/Paris,,OIF, +OIF:SP:59:5770814,1,"Duhesme - le Ruisseau",48.893237,2.339809,0,0,OIF:SA:59:5770814,Europe/Paris,,OIF, +OIF:SP:59:5770815,1,"Duhesme - le Ruisseau",48.892904,2.340899,0,0,OIF:SA:59:5770814,Europe/Paris,,OIF, +OIF:SP:59:5770816,1,"Damrémont - Ordener",48.893929,2.336728,0,0,OIF:SA:59:3926231,Europe/Paris,,OIF, +OIF:SP:59:5770817,1,"Damrémont - Ordener",48.89348,2.336974,0,0,OIF:SA:59:3926231,Europe/Paris,,OIF, +OIF:SP:59:5770818,1,"Damrémont - Championnet",48.89561,2.337928,0,0,OIF:SA:59:5770818,Europe/Paris,,OIF, +OIF:SP:59:5770819,1,"Damrémont - Championnet",48.895088,2.337246,0,0,OIF:SA:59:5770818,Europe/Paris,,OIF, +OIF:SP:59:5770820,1,"Poteau - Belliard",48.897075,2.338282,0,0,OIF:SA:59:5770820,Europe/Paris,,OIF, +OIF:SP:59:5770821,1,"Poteau - Belliard",48.896419,2.338173,0,0,OIF:SA:59:5770820,Europe/Paris,,OIF, +OIF:SP:59:5770822,1,"Porte de Montmartre - Boulevard Ney",48.89836,2.337123,0,0,OIF:SA:59:5770822,Europe/Paris,,OIF, +OIF:SP:59:5770823,1,"Porte de Montmartre - Boulevard Ney",48.898054,2.337028,0,0,OIF:SA:59:5770822,Europe/Paris,,OIF, +OIF:SP:59:5770824,1,"Rene Binet",48.899393,2.336292,0,0,OIF:SA:59:5770824,Europe/Paris,,OIF, +OIF:SP:59:5770825,1,"Rene Binet",48.899339,2.336006,0,0,OIF:SA:59:5770824,Europe/Paris,,OIF, +OIF:SP:59:5770826,1,"Porte de Montmartre",48.900517,2.33482,0,0,OIF:SA:59:3749949,Europe/Paris,,OIF, +OIF:SP:59:5770827,1,"Porte de Montmartre",48.900301,2.332543,0,0,OIF:SA:59:3749949,Europe/Paris,,OIF, +OIF:SP:59:5770828,1,"Crimée - Archereau",48.891775,2.375409,0,0,OIF:SA:59:5770828,Europe/Paris,,OIF, +OIF:SP:59:5775568,1,"La Défense - Métro-RER-Tramway",48.891005,2.240056,0,0,OIF:SA:8738221,Europe/Paris,,OIF, +OIF:SP:59:5775569,1,"La Défense - Métro-RER-Tramway",48.892038,2.239168,0,0,OIF:SA:8738221,Europe/Paris,,OIF, +OIF:SP:59:5775574,1,"Normandie",48.898691,2.242931,0,0,OIF:SA:59708,Europe/Paris,,OIF, +OIF:SP:59:5775575,1,"Normandie",48.898547,2.241964,0,0,OIF:SA:59708,Europe/Paris,,OIF, +OIF:SP:59:5775576,1,"Marceau",48.899737,2.246296,0,0,OIF:SA:59:5775576,Europe/Paris,,OIF, +OIF:SP:59:5775577,1,"Marceau",48.90006,2.246746,0,0,OIF:SA:59:5775576,Europe/Paris,,OIF, +OIF:SP:59:5775578,1,"D'Estienne d'Orves",48.901376,2.251215,0,0,OIF:SA:59:5775578,Europe/Paris,,OIF, +OIF:SP:59:5775579,1,"D'Estienne d'Orves",48.901727,2.251705,0,0,OIF:SA:59:5775578,Europe/Paris,,OIF, +OIF:SP:59:5775580,1,"République - Colombes",48.903123,2.256447,0,0,OIF:SA:59:5775580,Europe/Paris,,OIF, +OIF:SP:59:5775581,1,"République - Colombes",48.903293,2.255888,0,0,OIF:SA:59:5775580,Europe/Paris,,OIF, +OIF:SP:59:5775582,1,"Europe",48.905577,2.256893,0,0,OIF:SA:59:4024835,Europe/Paris,,OIF, +OIF:SP:59:5775583,1,"Moulin des Bruyères",48.906802,2.261976,0,0,OIF:SA:59:4274259,Europe/Paris,,OIF, +OIF:SP:59:5775584,1,"Moulin des Bruyères",48.906838,2.26094,0,0,OIF:SA:59:4274259,Europe/Paris,,OIF, +OIF:SP:59:5775591,1,"Cayron - Chefson",48.916706,2.277657,0,0,OIF:SA:59:5775591,Europe/Paris,,OIF, +OIF:SP:59:5775593,1,"Bourguignons",48.919843,2.280012,0,0,OIF:SA:59:4015696,Europe/Paris,,OIF, +OIF:SP:59:5775596,1,"Les Agnettes",48.922902,2.286801,0,0,OIF:SA:59597,Europe/Paris,,OIF, +OIF:SP:59:5775597,1,"Les Agnettes",48.923136,2.286569,0,0,OIF:SA:59597,Europe/Paris,,OIF, +OIF:SP:59:5775600,1,"Jaurès - Camelinat - Mairie",48.926761,2.294885,0,0,OIF:SA:59:5009403,Europe/Paris,,OIF, +OIF:SP:59:5775601,1,"Deslandes - Cabœufs",48.928739,2.299807,0,0,OIF:SA:59:5775601,Europe/Paris,,OIF, +OIF:SP:59:5775602,1,"Deslandes - Cabœufs",48.928568,2.29922,0,0,OIF:SA:59:5775601,Europe/Paris,,OIF, +OIF:SP:59:5775603,1,"Moulin de Cage",48.931185,2.302547,0,0,OIF:SA:59699,Europe/Paris,,OIF, +OIF:SP:59:5775604,1,"Moulin de Cage",48.930573,2.301224,0,0,OIF:SA:59699,Europe/Paris,,OIF, +OIF:SP:59:5775605,1,"Rond-Point Pierre Timbaud",48.933,2.302996,0,0,OIF:SA:59699,Europe/Paris,,OIF, +OIF:SP:59:5775606,1,"Rond-Point Pierre Timbaud",48.93336,2.303077,0,0,OIF:SA:59699,Europe/Paris,,OIF, +OIF:SP:59:5775607,1,"Gennevilliers RER",48.933109,2.307006,0,0,OIF:SA:8727120,Europe/Paris,,OIF, +OIF:SP:59:5775608,1,"Gennevilliers RER",48.933585,2.306692,0,0,OIF:SA:8727120,Europe/Paris,,OIF, +OIF:SP:59:5775609,1,"Parc des Chanteraines",48.933335,2.313089,0,0,OIF:SA:59695,Europe/Paris,,OIF, +OIF:SP:59:5775610,1,"Vieux Chemin de Saint-Denis - Centre Commercial",48.931368,2.320006,0,0,OIF:SA:59:5775610,Europe/Paris,,OIF, +OIF:SP:59:5775611,1,"Vieux Chemin de Saint-Denis - Centre Commercial",48.931476,2.320401,0,0,OIF:SA:59:5775610,Europe/Paris,,OIF, +OIF:SP:59:5775612,1,"Parc des Chanteraines",48.93356,2.313457,0,0,OIF:SA:59695,Europe/Paris,,OIF, +OIF:SP:59:5775613,1,"Rond-Point Pierre Timbaud - Jules Larose",48.932649,2.301768,0,0,OIF:SA:59699,Europe/Paris,,OIF, +OIF:SP:59:5775615,1,"Abbé Glatz",48.920139,2.277107,0,0,OIF:SA:59:5775615,Europe/Paris,,OIF, +OIF:SP:59:5775616,1,"La Paix",48.916649,2.272598,0,0,OIF:SA:8738107,Europe/Paris,,OIF, +OIF:SP:59:5775617,1,"Gare de Bois-Colombes",48.913549,2.27207,0,0,OIF:SA:8738107,Europe/Paris,,OIF, +OIF:SP:59:5775618,1,"Chevreul",48.907388,2.265057,0,0,OIF:SA:59:5747290,Europe/Paris,,OIF, +OIF:SP:59:5794239,1,"Rue des Trois Pavillons",48.911533,2.315199,0,0,OIF:SA:59:5794239,Europe/Paris,,OIF, +OIF:SP:59:5794605,1,"Rue de la Station",48.929521,2.425398,0,0,OIF:SA:59:5794605,Europe/Paris,,OIF, +OIF:SP:59:5794606,1,"République - Vinson",48.92623,2.426906,0,0,OIF:SA:59:5794606,Europe/Paris,,OIF, +OIF:SP:59:5794607,1,"Lamartine - François Rude",48.925373,2.431596,0,0,OIF:SA:59:5794607,Europe/Paris,,OIF, +OIF:SP:59:5794609,1,"Jean-Pierre Timbaud",48.923588,2.438466,0,0,OIF:SA:59:5794609,Europe/Paris,,OIF, +OIF:SP:59:5794612,1,"Fernand Pena",48.918198,2.435319,0,0,OIF:SA:59:5794612,Europe/Paris,,OIF, +OIF:SP:59:5794613,1,"André Sigonney",48.916269,2.432425,0,0,OIF:SA:59078,Europe/Paris,,OIF, +OIF:SP:59:5794614,1,"Voltaire",48.914328,2.431126,0,0,OIF:SA:59:5794614,Europe/Paris,,OIF, +OIF:SP:59:5794615,1,"Escadrille Normandie - Niemen-Stalingrad-Tramway",48.912797,2.435254,0,0,OIF:SA:59076,Europe/Paris,,OIF, +OIF:SP:59:5794616,1,"Escadrille Normandie Niemen - Paul Vaillant-Couturier-Tramway",48.912302,2.436876,0,0,OIF:SA:59076,Europe/Paris,,OIF, +OIF:SP:59:5794617,1,"Lieutenant Lebrun",48.910446,2.442094,0,0,OIF:SA:59:5794617,Europe/Paris,,OIF, +OIF:SP:59:5794618,1,"Pierre Semard",48.90947,2.447573,0,0,OIF:SA:59:5794618,Europe/Paris,,OIF, +OIF:SP:59:5794619,1,"Bobigny - Pablo Picasso",48.906881,2.448822,0,0,OIF:SA:59342,Europe/Paris,,OIF, +OIF:SP:59:5794633,1,"Centre Sportif - Piscine",48.900772,2.51356,0,0,OIF:SA:59:5794633,Europe/Paris,,OIF, +OIF:SP:59:5794634,1,"Rond-Point Thiers",48.899507,2.517891,0,0,OIF:SA:59:5794634,Europe/Paris,,OIF, +OIF:SP:59:5794635,1,"Gare de Gargan",48.907982,2.517811,0,0,OIF:SA:59:5794635,Europe/Paris,,OIF, +OIF:SP:59:5794636,1,"République - Marx Dormoy",48.906239,2.523845,0,0,OIF:SA:59:5794636,Europe/Paris,,OIF, +OIF:SP:59:5794637,1,"Salengro",48.910043,2.528003,0,0,OIF:SA:59:3682204,Europe/Paris,,OIF, +OIF:SP:59:5794638,1,"Jean-Baptiste Clément",48.908869,2.531026,0,0,OIF:SA:59:5794638,Europe/Paris,,OIF, +OIF:SP:59:5794639,1,"Collège Louise Michel",48.907786,2.533803,0,0,OIF:SA:59:5794639,Europe/Paris,,OIF, +OIF:SP:59:5794640,1,"Avenue Ladrette",48.904986,2.542531,0,0,OIF:SA:59:5794640,Europe/Paris,,OIF, +OIF:SP:59:5794641,1,"Gagarine",48.9048,2.546061,0,0,OIF:SA:59:5794641,Europe/Paris,,OIF, +OIF:SP:59:5794642,1,"Collège Romain Rolland",48.90576,2.551982,0,0,OIF:SA:59:5794642,Europe/Paris,,OIF, +OIF:SP:59:5794643,1,"Émile Zola",48.90646,2.557329,0,0,OIF:SA:59:4035483,Europe/Paris,,OIF, +OIF:SP:59:5794644,1,"Les Bosquets",48.903865,2.560903,0,0,OIF:SA:59:3682257,Europe/Paris,,OIF, +OIF:SP:59:5794645,1,"Le Bourget-RER",48.931164,2.427242,0,0,OIF:SA:8727139,Europe/Paris,,OIF, +OIF:SP:59:5794664,1,"Jean Jaurès - Division Leclerc",48.932541,2.424789,0,0,OIF:SA:44:99,Europe/Paris,,OIF, +OIF:SP:59:5794672,1,"Salengro",48.909344,2.526405,0,0,OIF:SA:59:3682204,Europe/Paris,,OIF, +OIF:SP:59:5794673,1,"République - Marx Dormoy",48.906113,2.523449,0,0,OIF:SA:59:5794636,Europe/Paris,,OIF, +OIF:SP:59:5794674,1,"Gare de Gargan",48.908289,2.517403,0,0,OIF:SA:8711386,Europe/Paris,,OIF, +OIF:SP:59:5794675,1,"Rond-Point Thiers",48.899813,2.51781,0,0,OIF:SA:59:5794634,Europe/Paris,,OIF, +OIF:SP:59:5794676,1,"Centre Sportif - Piscine",48.900979,2.513465,0,0,OIF:SA:59:5794633,Europe/Paris,,OIF, +OIF:SP:59:5794682,1,"La Fourche",48.907972,2.493557,0,0,OIF:SA:59:3682174,Europe/Paris,,OIF, +OIF:SP:59:5794685,1,"Avenue de Rosny",48.904297,2.470874,0,0,OIF:SA:55:132,Europe/Paris,,OIF, +OIF:SP:59:5794691,1,"Bobigny - Pablo Picasso",48.907483,2.448905,0,0,OIF:SA:59342,Europe/Paris,,OIF, +OIF:SP:59:5794693,1,"Pierre Semard",48.910272,2.445871,0,0,OIF:SA:59:5794618,Europe/Paris,,OIF, +OIF:SP:59:5794694,1,"Lieutenant Lebrun",48.911255,2.442028,0,0,OIF:SA:59:5794617,Europe/Paris,,OIF, +OIF:SP:59:5794695,1,"Escadrille Normandie Niemen - Paul Vaillant-Couturier-Tramway",48.912723,2.437531,0,0,OIF:SA:59076,Europe/Paris,,OIF, +OIF:SP:59:5794699,1,"Fernand Pena",48.917741,2.434732,0,0,OIF:SA:59:5794612,Europe/Paris,,OIF, +OIF:SP:59:5794702,1,"Jean-Pierre Timbaud",48.923426,2.438957,0,0,OIF:SA:59:5794609,Europe/Paris,,OIF, +OIF:SP:59:5794703,1,"Cité Pierre Semard",48.925505,2.435688,0,0,OIF:SA:59:5605625,Europe/Paris,,OIF, +OIF:SP:59:5794704,1,"Lamartine - François Rude",48.925544,2.431351,0,0,OIF:SA:59:5794607,Europe/Paris,,OIF, +OIF:SP:59:5794705,1,"République - Vinson",48.926365,2.426756,0,0,OIF:SA:59:5794606,Europe/Paris,,OIF, +OIF:SP:59:5794706,1,"Rue de la Station",48.929458,2.425534,0,0,OIF:SA:59:5794605,Europe/Paris,,OIF, +OIF:SP:59:5794709,1,"Le Bourget-RER",48.931282,2.425414,0,0,OIF:SA:8727139,Europe/Paris,,OIF, +OIF:SP:59:5794711,1,"Émile Zola",48.906766,2.557153,0,0,OIF:SA:59:4035483,Europe/Paris,,OIF, +OIF:SP:59:5794712,1,"Collège Romain Rolland",48.905475,2.550304,0,0,OIF:SA:59:5794642,Europe/Paris,,OIF, +OIF:SP:59:5794714,1,"Avenue Ladrette",48.905328,2.542001,0,0,OIF:SA:59:5794640,Europe/Paris,,OIF, +OIF:SP:59:5794715,1,"Collège Louise Michel",48.907966,2.533981,0,0,OIF:SA:59:5794639,Europe/Paris,,OIF, +OIF:SP:59:5794716,1,"Jean-Baptiste Clément",48.908886,2.531626,0,0,OIF:SA:59:5794638,Europe/Paris,,OIF, +OIF:SP:59:5816770,1,"Noyer Renard",48.70377,2.362789,0,0,OIF:SA:59:5816770,Europe/Paris,,OIF, +OIF:SP:59:5816772,1,"Condorcet",48.703348,2.357696,0,0,OIF:SA:59:5816772,Europe/Paris,,OIF, +OIF:SP:59:5816773,1,"Les Oiseaux",48.701092,2.358551,0,0,OIF:SA:59:5816773,Europe/Paris,,OIF, +OIF:SP:59:5816776,1,"Noyer Renard.",48.705145,2.36336,0,0,OIF:SA:59:5816770,Europe/Paris,,OIF, +OIF:SP:59:5816777,1,"Pasteur",48.705665,2.367353,0,0,OIF:SA:59:5816777,Europe/Paris,,OIF, +OIF:SP:59:5816778,1,"Belle Etoile",48.705736,2.370042,0,0,OIF:SA:46:8441,Europe/Paris,,OIF, +OIF:SP:59:5816779,1,"Belle Etoile - la Pompe",48.705934,2.372256,0,0,OIF:SA:59:5816779,Europe/Paris,,OIF, +OIF:SP:59:5816781,1,"Albert Sarraut",48.709031,2.383055,0,0,OIF:SA:59:5816781,Europe/Paris,,OIF, +OIF:SP:59:5816783,1,"Cimetière d'Athis-Mons",48.710916,2.388952,0,0,OIF:SA:59:5816783,Europe/Paris,,OIF, +OIF:SP:59:5816786,1,"Clos Nollet",48.711661,2.390379,0,0,OIF:SA:4:18,Europe/Paris,,OIF, +OIF:SP:59:5816789,1,"Place Henri Deudon",48.70911,2.386723,0,0,OIF:SA:59:5816789,Europe/Paris,,OIF, +OIF:SP:59:5816790,1,"Panorama",48.705606,2.383473,0,0,OIF:SA:59:5816790,Europe/Paris,,OIF, +OIF:SP:59:5816791,1,"Président Denis",48.702174,2.378174,0,0,OIF:SA:59:5816791,Europe/Paris,,OIF, +OIF:SP:59:5816792,1,"Trois Ormes",48.700288,2.376027,0,0,OIF:SA:59:5816792,Europe/Paris,,OIF, +OIF:SP:59:5816793,1,"Pyramide de Juvisy",48.69832,2.371436,0,0,OIF:SA:8741442,Europe/Paris,,OIF, +OIF:SP:59:5816794,1,"Coquelicots",48.698825,2.367213,0,0,OIF:SA:59:5816794,Europe/Paris,,OIF, +OIF:SP:59:5816795,1,"Progrès",48.699239,2.363629,0,0,OIF:SA:59:5816795,Europe/Paris,,OIF, +OIF:SP:59:5816800,1,"Normann",48.700182,2.366304,0,0,OIF:SA:59:5816800,Europe/Paris,,OIF, +OIF:SP:59:5816801,1,"Mutualité",48.699849,2.369305,0,0,OIF:SA:59:5816801,Europe/Paris,,OIF, +OIF:SP:59:5816802,1,"Pyramide de Juvisy",48.698347,2.372536,0,0,OIF:SA:8741442,Europe/Paris,,OIF, +OIF:SP:59:5816803,1,"Trois Ormes",48.700332,2.376394,0,0,OIF:SA:59:5816792,Europe/Paris,,OIF, +OIF:SP:59:5816804,1,"Président Denis",48.701995,2.37831,0,0,OIF:SA:59:5816791,Europe/Paris,,OIF, +OIF:SP:59:5816805,1,"Panorama",48.705363,2.383337,0,0,OIF:SA:59:5816790,Europe/Paris,,OIF, +OIF:SP:59:5816806,1,"La Poste",48.706468,2.386231,0,0,OIF:SA:59:5816806,Europe/Paris,,OIF, +OIF:SP:59:5816814,1,"Sembat",48.708474,2.381181,0,0,OIF:SA:59:5816814,Europe/Paris,,OIF, +OIF:SP:59:5816816,1,"Belle Etoile - la Pompe",48.706131,2.372297,0,0,OIF:SA:59:5816779,Europe/Paris,,OIF, +OIF:SP:59:5816817,1,"Belle Etoile",48.705889,2.370042,0,0,OIF:SA:46:8441,Europe/Paris,,OIF, +OIF:SP:59:5816818,1,"Pasteur",48.705818,2.36715,0,0,OIF:SA:59:5816777,Europe/Paris,,OIF, +OIF:SP:59:5816820,1,"Noyer Renard.",48.70377,2.363006,0,0,OIF:SA:59:5816770,Europe/Paris,,OIF, +OIF:SP:59:5821504,1,"Quai de Clichy",48.90315,2.290078,0,0,OIF:SA:59:4677630,Europe/Paris,,OIF, +OIF:SP:59:5821505,1,"Van Gogh",48.904014,2.294181,0,0,OIF:SA:59:5821505,Europe/Paris,,OIF, +OIF:SP:59:5851177,1,"Général de Gaulle",48.817062,2.275457,0,0,OIF:SA:24:15305,Europe/Paris,,OIF, +OIF:SP:59:5851178,1,"Général de Gaulle",48.816972,2.275729,0,0,OIF:SA:24:15305,Europe/Paris,,OIF, +OIF:SP:59:5922159,1,"Château de Vincennes",48.844093,2.441878,0,0,OIF:SA:59595,Europe/Paris,,OIF, +OIF:SP:59:5922162,1,"Vincennes RER",48.847095,2.4302,0,0,OIF:SA:8775811,Europe/Paris,,OIF, +OIF:SP:59:5922163,1,"Fraternité",48.848675,2.432137,0,0,OIF:SA:8775811,Europe/Paris,,OIF, +OIF:SP:59:5922165,1,"Cuvier",48.851764,2.424135,0,0,OIF:SA:59:3926265,Europe/Paris,,OIF, +OIF:SP:59:5922166,1,"Raspail - République",48.852969,2.423796,0,0,OIF:SA:59:5922166,Europe/Paris,,OIF, +OIF:SP:59:5922167,1,"Robespierre",48.855917,2.422902,0,0,OIF:SA:59508,Europe/Paris,,OIF, +OIF:SP:59:5922168,1,"Victor Hugo",48.858327,2.421503,0,0,OIF:SA:59:5922168,Europe/Paris,,OIF, +OIF:SP:59:5922170,1,"Général de Gaulle",48.861898,2.417055,0,0,OIF:SA:59448,Europe/Paris,,OIF, +OIF:SP:59:5922171,1,"Gallieni",48.863812,2.417044,0,0,OIF:SA:59448,Europe/Paris,,OIF, +OIF:SP:59:5922172,1,"Centre de Santé",48.867497,2.417799,0,0,OIF:SA:59:5922172,Europe/Paris,,OIF, +OIF:SP:59:5922173,1,"La Poste",48.868334,2.415444,0,0,OIF:SA:59:3672115,Europe/Paris,,OIF, +OIF:SP:59:5922174,1,"Mairie de Bagnolet",48.869098,2.415813,0,0,OIF:SA:59:4199317,Europe/Paris,,OIF, +OIF:SP:59:5922175,1,"Marie-Anne Colombier",48.870975,2.417791,0,0,OIF:SA:59:4199378,Europe/Paris,,OIF, +OIF:SP:59:5922176,1,"Gambetta - Rene Alazard",48.872547,2.419456,0,0,OIF:SA:59:5922176,Europe/Paris,,OIF, +OIF:SP:59:5922177,1,"Rene Alazard - Sadi Carnot",48.872752,2.421799,0,0,OIF:SA:59:5922177,Europe/Paris,,OIF, +OIF:SP:59:5922178,1,"Girardot",48.875231,2.423915,0,0,OIF:SA:59:3687291,Europe/Paris,,OIF, +OIF:SP:59:5922179,1,"Cimetière de Bagnolet",48.875877,2.425456,0,0,OIF:SA:59:5922179,Europe/Paris,,OIF, +OIF:SP:59:5922180,1,"Floréal",48.877933,2.426999,0,0,OIF:SA:59:5922180,Europe/Paris,,OIF, +OIF:SP:59:5922182,1,"Les Noyers",48.879276,2.434033,0,0,OIF:SA:59:5922182,Europe/Paris,,OIF, +OIF:SP:59:5922183,1,"Gabriel Husson",48.880388,2.436678,0,0,OIF:SA:59:5922183,Europe/Paris,,OIF, +OIF:SP:59:5922184,1,"Carnot",48.883225,2.44099,0,0,OIF:SA:59:5922184,Europe/Paris,,OIF, +OIF:SP:59:5922185,1,"Mairie de Romainville",48.885189,2.434739,0,0,OIF:SA:59:5922185,Europe/Paris,,OIF, +OIF:SP:59:5922186,1,"Vassou - Lénine",48.88503,2.430882,0,0,OIF:SA:59:5922186,Europe/Paris,,OIF, +OIF:SP:59:5922187,1,"Maneyrol",48.888915,2.428313,0,0,OIF:SA:59:5922187,Europe/Paris,,OIF, +OIF:SP:59:5922188,1,"Bretagnes",48.890848,2.42679,0,0,OIF:SA:59:5922188,Europe/Paris,,OIF, +OIF:SP:59:5922189,1,"Centre d'Activités",48.891863,2.427937,0,0,OIF:SA:59:5922189,Europe/Paris,,OIF, +OIF:SP:59:5922190,1,"Chantaloups",48.892317,2.433539,0,0,OIF:SA:59:5922190,Europe/Paris,,OIF, +OIF:SP:59:5922191,1,"Louise Dory",48.894033,2.434169,0,0,OIF:SA:59:3446771,Europe/Paris,,OIF, +OIF:SP:59:5922193,1,"Pantin - Raymond Queneau",48.895324,2.426511,0,0,OIF:SA:59343,Europe/Paris,,OIF, +OIF:SP:59:5922195,1,"Chantaloups",48.891289,2.437203,0,0,OIF:SA:59:5922190,Europe/Paris,,OIF, +OIF:SP:59:5922196,1,"Trou Vassou",48.891158,2.432965,0,0,OIF:SA:59:5922196,Europe/Paris,,OIF, +OIF:SP:59:5922197,1,"Centre d'Activités",48.89198,2.428182,0,0,OIF:SA:59:5922189,Europe/Paris,,OIF, +OIF:SP:59:5922198,1,"Bretagnes",48.890777,2.426558,0,0,OIF:SA:59:5922188,Europe/Paris,,OIF, +OIF:SP:59:5922199,1,"Maneyrol",48.889014,2.428204,0,0,OIF:SA:59:5922187,Europe/Paris,,OIF, +OIF:SP:59:5922200,1,"Fort de Romainville",48.885805,2.428362,0,0,OIF:SA:59:5922200,Europe/Paris,,OIF, +OIF:SP:59:5922201,1,"Vassou - Lénine",48.884742,2.431931,0,0,OIF:SA:59:5922186,Europe/Paris,,OIF, +OIF:SP:59:5922202,1,"Mairie de Romainville",48.885054,2.434997,0,0,OIF:SA:59:5922185,Europe/Paris,,OIF, +OIF:SP:59:5922204,1,"Gabriel Husson",48.880389,2.436378,0,0,OIF:SA:59:5922183,Europe/Paris,,OIF, +OIF:SP:59:5922205,1,"Les Noyers",48.878873,2.43226,0,0,OIF:SA:59:5922182,Europe/Paris,,OIF, +OIF:SP:59:5922208,1,"Rue de Pantin",48.875986,2.42269,0,0,OIF:SA:59:3687664,Europe/Paris,,OIF, +OIF:SP:59:5922209,1,"Gambetta - Rene Alazard",48.873777,2.420384,0,0,OIF:SA:59:5922176,Europe/Paris,,OIF, +OIF:SP:59:5922213,1,"Centre de Santé",48.866993,2.417989,0,0,OIF:SA:59:5922172,Europe/Paris,,OIF, +OIF:SP:59:5922215,1,"Général de Gaulle",48.861269,2.41655,0,0,OIF:SA:59448,Europe/Paris,,OIF, +OIF:SP:59:5922216,1,"Lieutenant Thomas",48.858501,2.417036,0,0,OIF:SA:59:5922216,Europe/Paris,,OIF, +OIF:SP:59:5922217,1,"Etienne Marcel",48.85637,2.418109,0,0,OIF:SA:59:5922217,Europe/Paris,,OIF, +OIF:SP:59:5922218,1,"Robespierre",48.855477,2.422888,0,0,OIF:SA:59508,Europe/Paris,,OIF, +OIF:SP:59:5922219,1,"Raspail - République",48.852933,2.423646,0,0,OIF:SA:59:5922166,Europe/Paris,,OIF, +OIF:SP:59:5922222,1,"Vincennes RER",48.846558,2.428089,0,0,OIF:SA:8775811,Europe/Paris,,OIF, +OIF:SP:59:5944484,1,"Fort d'Aubervilliers",48.914382,2.405,0,0,OIF:SA:59316,Europe/Paris,,OIF, +OIF:SP:59:5944486,1,"Réchossière",48.910898,2.39976,0,0,OIF:SA:59:5944486,Europe/Paris,,OIF, +OIF:SP:59:5944487,1,"Réchossière",48.911428,2.400688,0,0,OIF:SA:59:5944486,Europe/Paris,,OIF, +OIF:SP:59:5944488,1,"Cimetière Parisien",48.90903,2.397713,0,0,OIF:SA:59:5944488,Europe/Paris,,OIF, +OIF:SP:59:5944489,1,"Condorcet",48.905571,2.394887,0,0,OIF:SA:59:4658210,Europe/Paris,,OIF, +OIF:SP:59:5944491,1,"Cartier Bresson",48.902316,2.397705,0,0,OIF:SA:59:5944491,Europe/Paris,,OIF, +OIF:SP:59:5944496,1,"Centre National de la Danse",48.895305,2.399946,0,0,OIF:SA:59758,Europe/Paris,,OIF, +OIF:SP:59:5944498,1,"Congo",48.893355,2.399494,0,0,OIF:SA:59758,Europe/Paris,,OIF, +OIF:SP:59:5944499,1,"Hoche - Jean Lolive",48.891207,2.400636,0,0,OIF:SA:59345,Europe/Paris,,OIF, +OIF:SP:59:5944501,1,"Etienne Marcel",48.891689,2.406143,0,0,OIF:SA:59:5944501,Europe/Paris,,OIF, +OIF:SP:59:5944502,1,"Ciné 104",48.892289,2.409387,0,0,OIF:SA:59:5944502,Europe/Paris,,OIF, +OIF:SP:59:5944503,1,"Ciné 104",48.892469,2.408911,0,0,OIF:SA:59:5944502,Europe/Paris,,OIF, +OIF:SP:59:5944506,1,"Paul Bert - Cimetière",48.888937,2.410051,0,0,OIF:SA:59:5944506,Europe/Paris,,OIF, +OIF:SP:59:5944507,1,"Montigny - Maison de Retraite",48.887265,2.410062,0,0,OIF:SA:59:5944507,Europe/Paris,,OIF, +OIF:SP:59:5944508,1,"Maison de Quartier - Pommiers",48.885377,2.411436,0,0,OIF:SA:59:5944508,Europe/Paris,,OIF, +OIF:SP:59:5944509,1,"Pommiers - Cimetière",48.886326,2.417188,0,0,OIF:SA:59:5944509,Europe/Paris,,OIF, +OIF:SP:59:5944510,1,"Pommiers - Cimetière",48.888698,2.416796,0,0,OIF:SA:59:5944509,Europe/Paris,,OIF, +OIF:SP:59:5944511,1,"Charles Auray",48.889139,2.417138,0,0,OIF:SA:59:3673627,Europe/Paris,,OIF, +OIF:SP:59:5944512,1,"Charles Auray",48.889318,2.418351,0,0,OIF:SA:59:3673627,Europe/Paris,,OIF, +OIF:SP:59:5944513,1,"Jules Jaslin",48.890861,2.422129,0,0,OIF:SA:59:5944513,Europe/Paris,,OIF, +OIF:SP:59:5944514,1,"Jules Jaslin",48.890933,2.422006,0,0,OIF:SA:59:5944513,Europe/Paris,,OIF, +OIF:SP:59:5944515,1,"Raymond Queneau - Anatole France",48.894911,2.425584,0,0,OIF:SA:59343,Europe/Paris,,OIF, +OIF:SP:59:5944517,1,"Parc Henri Barbusse",48.885321,2.414038,0,0,OIF:SA:59:5944517,Europe/Paris,,OIF, +OIF:SP:59:5944518,1,"Rue Marcelle",48.883425,2.414022,0,0,OIF:SA:59:5944518,Europe/Paris,,OIF, +OIF:SP:59:5944523,1,"Etienne Marcel - Cornet",48.891824,2.405557,0,0,OIF:SA:59345,Europe/Paris,,OIF, +OIF:SP:59:5944527,1,"Quatre Chemins - la Poste",48.902867,2.393452,0,0,OIF:SA:59318,Europe/Paris,,OIF, +OIF:SP:59:5944529,1,"Fort d'Aubervilliers - Métro",48.914329,2.403855,0,0,OIF:SA:59316,Europe/Paris,,OIF, +OIF:SP:59:5944776,1,"La Source",48.771012,2.461434,0,0,OIF:SA:59:5675675,Europe/Paris,,OIF, +OIF:SP:59:5976284,1,"Escadrille Normandie - Niemen-Stalingrad-Tramway",48.913381,2.435705,0,0,OIF:SA:59076,Europe/Paris,,OIF, +OIF:SP:59:5976286,1,"Voltaire",48.914237,2.433471,0,0,OIF:SA:59:4117664,Europe/Paris,,OIF, +OIF:SP:59:5976287,1,"André Sigonney",48.916188,2.432588,0,0,OIF:SA:59078,Europe/Paris,,OIF, +OIF:SP:59:5976292,1,"Collège Liberté",48.91362,2.450364,0,0,OIF:SA:59:5976292,Europe/Paris,,OIF, +OIF:SP:59:5976624,1,"Pierre Semard - Châtillon-Montrouge",48.806493,2.298289,0,0,OIF:SA:59:5976624,Europe/Paris,,OIF, +OIF:SP:59:5976626,1,"Pierre Semard",48.806232,2.297976,0,0,OIF:SA:59:5976626,Europe/Paris,,OIF, +OIF:SP:59:5976627,1,"République - Deforges",48.803688,2.297488,0,0,OIF:SA:59:5976627,Europe/Paris,,OIF, +OIF:SP:59:5976628,1,"République - Deforges",48.803841,2.297855,0,0,OIF:SA:59:5976627,Europe/Paris,,OIF, +OIF:SP:59:5976629,1,"Perrotin",48.800308,2.295763,0,0,OIF:SA:59:5976629,Europe/Paris,,OIF, +OIF:SP:59:5976630,1,"Perrotin",48.800578,2.296157,0,0,OIF:SA:59:5976629,Europe/Paris,,OIF, +OIF:SP:59:5976636,1,"Théâtre des Sources",48.790904,2.289336,0,0,OIF:SA:59:3909117,Europe/Paris,,OIF, +OIF:SP:59:5976637,1,"Boulevard de la République",48.788531,2.287896,0,0,OIF:SA:59:5976637,Europe/Paris,,OIF, +OIF:SP:59:5976638,1,"Boulevard de la République",48.788963,2.288426,0,0,OIF:SA:59:5976637,Europe/Paris,,OIF, +OIF:SP:59:5976641,1,"Carrefour des Mouillebœufs",48.783064,2.281808,0,0,OIF:SA:59:5067469,Europe/Paris,,OIF, +OIF:SP:59:5976642,1,"Carrefour des Mouillebœufs",48.783792,2.282651,0,0,OIF:SA:59:5067469,Europe/Paris,,OIF, +OIF:SP:59:5976643,1,"Robinson RER",48.779387,2.280017,0,0,OIF:SA:8775872,Europe/Paris,,OIF, +OIF:SP:59:5976646,1,"Marc Sangnier",48.772454,2.275279,0,0,OIF:SA:59:5976646,Europe/Paris,,OIF, +OIF:SP:59:5976647,1,"Marc Sangnier",48.77303,2.276189,0,0,OIF:SA:59:5976646,Europe/Paris,,OIF, +OIF:SP:59:5976648,1,"Jean Jaurès",48.769946,2.273935,0,0,OIF:SA:59:5161480,Europe/Paris,,OIF, +OIF:SP:59:5976650,1,"Docteur le Savoureux",48.767824,2.272728,0,0,OIF:SA:59:5976650,Europe/Paris,,OIF, +OIF:SP:59:5976651,1,"Docteur le Savoureux",48.767851,2.273109,0,0,OIF:SA:59:5976650,Europe/Paris,,OIF, +OIF:SP:59:5976652,1,"Jules Verne",48.766691,2.272308,0,0,OIF:SA:59:5976652,Europe/Paris,,OIF, +OIF:SP:59:5976653,1,"Jules Verne",48.766269,2.272512,0,0,OIF:SA:59:5976652,Europe/Paris,,OIF, +OIF:SP:59:5976656,1,"Faculté de Pharmacie",48.761729,2.270737,0,0,OIF:SA:24:15067,Europe/Paris,,OIF, +OIF:SP:59:5976657,1,"Faculté de Pharmacie",48.76235,2.271253,0,0,OIF:SA:24:15067,Europe/Paris,,OIF, +OIF:SP:59:5976658,1,"Groupe Scolaire Sophie Barat",48.756597,2.271192,0,0,OIF:SA:59:5976658,Europe/Paris,,OIF, +OIF:SP:59:5976659,1,"Les Antes",48.75178,2.271946,0,0,OIF:SA:24:15069,Europe/Paris,,OIF, +OIF:SP:59:5976660,1,"Les Antes",48.751996,2.272503,0,0,OIF:SA:24:15069,Europe/Paris,,OIF, +OIF:SP:59:5976661,1,"Le Clos",48.749587,2.271962,0,0,OIF:SA:59:5976661,Europe/Paris,,OIF, +OIF:SP:59:5976662,1,"Le Clos",48.749857,2.272138,0,0,OIF:SA:59:5976661,Europe/Paris,,OIF, +OIF:SP:59:5976663,1,"Paron",48.745864,2.269031,0,0,OIF:SA:24:15071,Europe/Paris,,OIF, +OIF:SP:59:5976664,1,"Paron",48.746305,2.269751,0,0,OIF:SA:24:15071,Europe/Paris,,OIF, +OIF:SP:59:5976665,1,"Foch - Leclerc",48.743948,2.266125,0,0,OIF:SA:59:5150246,Europe/Paris,,OIF, +OIF:SP:59:5976666,1,"Foch - Leclerc",48.744398,2.267144,0,0,OIF:SA:59:5150246,Europe/Paris,,OIF, +OIF:SP:59:5976667,1,"Grands Chênes",48.742418,2.262594,0,0,OIF:SA:59:5231705,Europe/Paris,,OIF, +OIF:SP:59:5976668,1,"Grands Chênes",48.742832,2.26383,0,0,OIF:SA:59:5231705,Europe/Paris,,OIF, +OIF:SP:59:5976669,1,"Moulin de Grais",48.740598,2.256277,0,0,OIF:SA:59:5976669,Europe/Paris,,OIF, +OIF:SP:59:5976670,1,"Moulin de Grais",48.740536,2.257541,0,0,OIF:SA:59:5976669,Europe/Paris,,OIF, +OIF:SP:59:5976671,1,"Riantes Cités",48.740749,2.253559,0,0,OIF:SA:59:5976671,Europe/Paris,,OIF, +OIF:SP:59:5976672,1,"Riantes Cités",48.740471,2.254293,0,0,OIF:SA:59:5976671,Europe/Paris,,OIF, +OIF:SP:59:5976673,1,"Croix Belle Avoine",48.741079,2.250351,0,0,OIF:SA:59:5976673,Europe/Paris,,OIF, +OIF:SP:59:5976674,1,"Croix Belle Avoine",48.740954,2.251126,0,0,OIF:SA:59:5976673,Europe/Paris,,OIF, +OIF:SP:59:5976675,1,"Croix Pasquier",48.73954,2.247907,0,0,OIF:SA:59:5976675,Europe/Paris,,OIF, +OIF:SP:59:5976676,1,"Croix Pasquier",48.739712,2.248913,0,0,OIF:SA:59:5976675,Europe/Paris,,OIF, +OIF:SP:59:5976678,1,"Rond-Point des Vallées",48.736457,2.236851,0,0,OIF:SA:59:5161510,Europe/Paris,,OIF, +OIF:SP:59:5976682,1,"Place François Collet",48.74158,2.225874,0,0,OIF:SA:59:5976682,Europe/Paris,,OIF, +OIF:SP:59:5976697,1,"Pierrelais - Blanchard",48.794903,2.287877,0,0,OIF:SA:59:5976697,Europe/Paris,,OIF, +OIF:SP:59:5976698,1,"Pierrelais - Fontenay",48.79795,2.287874,0,0,OIF:SA:59:5976698,Europe/Paris,,OIF, +OIF:SP:59:5976699,1,"Pierrelais - Fontenay",48.797878,2.287643,0,0,OIF:SA:59:5976698,Europe/Paris,,OIF, +OIF:SP:59:5976700,1,"D'Estienne d'Orves - Division Leclerc",48.79972,2.286131,0,0,OIF:SA:59:5976700,Europe/Paris,,OIF, +OIF:SP:59:5976701,1,"D'Estienne d'Orves - Division Leclerc",48.799594,2.28594,0,0,OIF:SA:59:5976700,Europe/Paris,,OIF, +OIF:SP:59:5976704,1,"Les Sablons",48.797597,2.281847,0,0,OIF:SA:59:5976704,Europe/Paris,,OIF, +OIF:SP:59:5976705,1,"Les Sablons",48.797435,2.281943,0,0,OIF:SA:59:5976704,Europe/Paris,,OIF, +OIF:SP:59:5976706,1,"Centre Bus",48.795725,2.27585,0,0,OIF:SA:59:5976706,Europe/Paris,,OIF, +OIF:SP:59:5976707,1,"Division Leclerc",48.794545,2.272001,0,0,OIF:SA:59854,Europe/Paris,,OIF, +OIF:SP:59:5976709,1,"Louis Pergaud",48.789483,2.26911,0,0,OIF:SA:59:5976709,Europe/Paris,,OIF, +OIF:SP:59:5976710,1,"Rue du Midi",48.788348,2.263575,0,0,OIF:SA:59:5976710,Europe/Paris,,OIF, +OIF:SP:59:5976711,1,"Rue Gabrielle",48.786547,2.25928,0,0,OIF:SA:59:5976711,Europe/Paris,,OIF, +OIF:SP:59:5976720,1,"Moulin Fidel",48.773927,2.257082,0,0,OIF:SA:59:5423691,Europe/Paris,,OIF, +OIF:SP:59:5976740,1,"Mairie de Châtenay-Malabry",48.7671,2.279731,0,0,OIF:SA:59:5478215,Europe/Paris,,OIF, +OIF:SP:59:5976743,1,"Pres Hauts",48.770794,2.280475,0,0,OIF:SA:59:5423712,Europe/Paris,,OIF, +OIF:SP:59:5976746,1,"Edouard Depreux - Roger Salengro",48.776132,2.278701,0,0,OIF:SA:59:5976746,Europe/Paris,,OIF, +OIF:SP:59:5976747,1,"Edouard Depreux - Roger Salengro",48.776096,2.27847,0,0,OIF:SA:59:5976747,Europe/Paris,,OIF, +OIF:SP:59:5976752,1,"La Cavée",48.787976,2.258679,0,0,OIF:SA:59:5151462,Europe/Paris,,OIF, +OIF:SP:59:5976754,1,"Division Leclerc",48.794258,2.272954,0,0,OIF:SA:41:6487,Europe/Paris,,OIF, +OIF:SP:59:5976755,1,"Centre Bus",48.795383,2.275469,0,0,OIF:SA:59:5976755,Europe/Paris,,OIF, +OIF:SP:59:5991316,1,"La Courneuve - Aubervilliers RER",48.923325,2.384883,0,0,OIF:SA:8727130,Europe/Paris,,OIF, +OIF:SP:59:5991317,1,"La Courneuve - Aubervilliers RER",48.923145,2.384569,0,0,OIF:SA:8727130,Europe/Paris,,OIF, +OIF:SP:59:5991318,1,"Langevin - Wallon",48.92702,2.380617,0,0,OIF:SA:59:4179705,Europe/Paris,,OIF, +OIF:SP:59:5991319,1,"Langevin - Wallon",48.927506,2.380536,0,0,OIF:SA:59:4179705,Europe/Paris,,OIF, +OIF:SP:59:5991320,1,"Rue de l'Union",48.928278,2.382992,0,0,OIF:SA:59:5991320,Europe/Paris,,OIF, +OIF:SP:59:5991321,1,"6 Routes-Tramway",48.929741,2.386403,0,0,OIF:SA:59090,Europe/Paris,,OIF, +OIF:SP:59:5991322,1,"6 Routes-Tramway",48.930065,2.386471,0,0,OIF:SA:59090,Europe/Paris,,OIF, +OIF:SP:59:5991323,1,"Paul Verlaine",48.931698,2.391206,0,0,OIF:SA:59:5991323,Europe/Paris,,OIF, +OIF:SP:59:5991324,1,"Paul Verlaine",48.931815,2.391001,0,0,OIF:SA:59:5991323,Europe/Paris,,OIF, +OIF:SP:59:5991325,1,"Le Croult",48.93202,2.395148,0,0,OIF:SA:59:5991325,Europe/Paris,,OIF, +OIF:SP:59:5991326,1,"Le Croult",48.932191,2.395039,0,0,OIF:SA:59:5991325,Europe/Paris,,OIF, +OIF:SP:59:5991327,1,"Jean Mermoz - Henri Barbusse",48.931982,2.39969,0,0,OIF:SA:59:5991327,Europe/Paris,,OIF, +OIF:SP:59:5991328,1,"Jean Mermoz - Henri Barbusse",48.932179,2.399772,0,0,OIF:SA:59:5991327,Europe/Paris,,OIF, +OIF:SP:59:5991329,1,"Passage à Niveau - Jean Mermoz",48.932221,2.405201,0,0,OIF:SA:59:5991329,Europe/Paris,,OIF, +OIF:SP:59:5991330,1,"Passage à Niveau - Jean Mermoz",48.93249,2.406265,0,0,OIF:SA:59:5991329,Europe/Paris,,OIF, +OIF:SP:59:5991331,1,"Verdun",48.932755,2.413986,0,0,OIF:SA:59:5991331,Europe/Paris,,OIF, +OIF:SP:59:5991332,1,"École Normale",48.934189,2.420058,0,0,OIF:SA:59:5991332,Europe/Paris,,OIF, +OIF:SP:59:5991333,1,"École Normale",48.934495,2.419049,0,0,OIF:SA:59:5991332,Europe/Paris,,OIF, +OIF:SP:59:5991334,1,"Jean Jaurès - Division Leclerc",48.932702,2.425021,0,0,OIF:SA:44:99,Europe/Paris,,OIF, +OIF:SP:59:5991335,1,"Jean Jaurès - Division Leclerc",48.93344,2.42359,0,0,OIF:SA:44:99,Europe/Paris,,OIF, +OIF:SP:59:5991338,1,"Edouard Vaillant",48.9301,2.431495,0,0,OIF:SA:59:5991338,Europe/Paris,,OIF, +OIF:SP:59:5991339,1,"Edouard Vaillant",48.929938,2.432368,0,0,OIF:SA:59:5991338,Europe/Paris,,OIF, +OIF:SP:59:5991340,1,"Aristide Briand",48.926328,2.43929,0,0,OIF:SA:59:5991340,Europe/Paris,,OIF, +OIF:SP:59:5991341,1,"Aristide Briand",48.927237,2.438419,0,0,OIF:SA:59:5991340,Europe/Paris,,OIF, +OIF:SP:59:5991342,1,"Jean-Pierre Timbaud",48.924825,2.441714,0,0,OIF:SA:59:5794609,Europe/Paris,,OIF, +OIF:SP:59:5991343,1,"Jean-Pierre Timbaud",48.925491,2.44102,0,0,OIF:SA:59:5794609,Europe/Paris,,OIF, +OIF:SP:59:5991344,1,"Mairie de Drancy",48.92306,2.446375,0,0,OIF:SA:59:4035826,Europe/Paris,,OIF, +OIF:SP:59:5991345,1,"Mairie de Drancy",48.92305,2.446811,0,0,OIF:SA:59:4035826,Europe/Paris,,OIF, +OIF:SP:59:5991346,1,"Place du 19 Mars 1962",48.920036,2.450691,0,0,OIF:SA:59:3664400,Europe/Paris,,OIF, +OIF:SP:59:5991347,1,"Place du 19 Mars 1962",48.920072,2.451046,0,0,OIF:SA:59:3664400,Europe/Paris,,OIF, +OIF:SP:59:5991348,1,"Square de la Libération",48.91864,2.453661,0,0,OIF:SA:59:5991348,Europe/Paris,,OIF, +OIF:SP:59:5991349,1,"Square de la Libération",48.918532,2.454315,0,0,OIF:SA:59:5991348,Europe/Paris,,OIF, +OIF:SP:59:5991350,1,"Balzac",48.91656,2.457625,0,0,OIF:SA:59:5991350,Europe/Paris,,OIF, +OIF:SP:59:5991351,1,"Balzac",48.916227,2.45866,0,0,OIF:SA:59:5991350,Europe/Paris,,OIF, +OIF:SP:59:5991352,1,"Avenue du Bois d'Amour",48.914274,2.461342,0,0,OIF:SA:59:5991352,Europe/Paris,,OIF, +OIF:SP:59:5991353,1,"Avenue du Bois d'Amour",48.914327,2.461587,0,0,OIF:SA:59:5991352,Europe/Paris,,OIF, +OIF:SP:59:5991354,1,"Chemin du Tonneau",48.911097,2.465547,0,0,OIF:SA:59:5991354,Europe/Paris,,OIF, +OIF:SP:59:5991355,1,"Chemin du Tonneau",48.912248,2.464391,0,0,OIF:SA:59:5991354,Europe/Paris,,OIF, +OIF:SP:59:5991356,1,"Avenue Marcelle",48.909261,2.46756,0,0,OIF:SA:59:5150460,Europe/Paris,,OIF, +OIF:SP:59:5991358,1,"Pont de Bondy - Anatole France",48.906428,2.469257,0,0,OIF:SA:59:4035526,Europe/Paris,,OIF, +OIF:SP:59:5991360,1,"Pont de Bondy - Avenue de Rosny",48.903452,2.470531,0,0,OIF:SA:59000,Europe/Paris,,OIF, +OIF:SP:59:5991361,1,"Baudin",48.898563,2.470791,0,0,OIF:SA:59:5991361,Europe/Paris,,OIF, +OIF:SP:59:5991362,1,"Alsace - Lorraine",48.897652,2.465732,0,0,OIF:SA:59:5991362,Europe/Paris,,OIF, +OIF:SP:59:5991363,1,"Alsace - Lorraine",48.897553,2.466086,0,0,OIF:SA:59:5991362,Europe/Paris,,OIF, +OIF:SP:59:5991364,1,"Noisy-le-Sec RER",48.895904,2.46093,0,0,OIF:SA:8711321,Europe/Paris,,OIF, +OIF:SP:59:5991366,1,"11 Novembre 1918",48.892195,2.467013,0,0,OIF:SA:59:5991366,Europe/Paris,,OIF, +OIF:SP:59:5991367,1,"11 Novembre 1918",48.892447,2.466837,0,0,OIF:SA:59:5991366,Europe/Paris,,OIF, +OIF:SP:59:5991368,1,"Les Carrouges",48.889279,2.470876,0,0,OIF:SA:59:5991368,Europe/Paris,,OIF, +OIF:SP:59:5991369,1,"Les Carrouges",48.889675,2.470591,0,0,OIF:SA:59:5991368,Europe/Paris,,OIF, +OIF:SP:59:5991371,1,"Rosny 2 - Centre Commercial",48.883523,2.474377,0,0,OIF:SA:59:5991371,Europe/Paris,,OIF, +OIF:SP:59:5991372,1,"Rosny 2 - Centre Commercial",48.885214,2.473373,0,0,OIF:SA:59:5991371,Europe/Paris,,OIF, +OIF:SP:59:5991373,1,"Léon Blum",48.879448,2.477964,0,0,OIF:SA:59:5991373,Europe/Paris,,OIF, +OIF:SP:59:5991374,1,"Gabriel Péri - de Gaulle",48.877181,2.479879,0,0,OIF:SA:59:5991374,Europe/Paris,,OIF, +OIF:SP:59:5991375,1,"Gabriel Péri - de Gaulle",48.878638,2.47897,0,0,OIF:SA:59:5991374,Europe/Paris,,OIF, +OIF:SP:59:5991376,1,"Église de Rosny-sous-Bois",48.873798,2.482922,0,0,OIF:SA:59:3687731,Europe/Paris,,OIF, +OIF:SP:59:5991378,1,"Copernic",48.872788,2.485357,0,0,OIF:SA:59:5991378,Europe/Paris,,OIF, +OIF:SP:59:5991379,1,"Rosny-sous-Bois RER",48.870945,2.485584,0,0,OIF:SA:8711370,Europe/Paris,,OIF, +OIF:SP:59:5991381,1,"Gardebled",48.874929,2.484015,0,0,OIF:SA:59:5991381,Europe/Paris,,OIF, +OIF:SP:59:5991382,1,"Van Derheyden",48.877283,2.484253,0,0,OIF:SA:59:3685725,Europe/Paris,,OIF, +OIF:SP:59:5991384,1,"Baudin",48.900189,2.471027,0,0,OIF:SA:59:5991384,Europe/Paris,,OIF, +OIF:SP:59:5991385,1,"Pont de Bondy - Avenue de Rosny",48.90365,2.470777,0,0,OIF:SA:55:132,Europe/Paris,,OIF, +OIF:SP:59:5991387,1,"Verdun",48.93281,2.411627,0,0,OIF:SA:59:5991387,Europe/Paris,,OIF, +OIF:SP:59:5991388,1,"Saint-Just",48.925357,2.383425,0,0,OIF:SA:59:5991388,Europe/Paris,,OIF, +OIF:SP:59:6000769,1,"Châtillon-Montrouge",48.811284,2.300313,0,0,OIF:SA:59614,Europe/Paris,,OIF, +OIF:SP:59:6000770,1,"Châtillon-Montrouge",48.811221,2.299782,0,0,OIF:SA:59614,Europe/Paris,,OIF, +OIF:SP:59:6041757,1,"Centre Commercial des Baconnets",48.737713,2.290825,0,0,OIF:SA:59:5244906,Europe/Paris,,OIF, +OIF:SP:59:6041758,1,"Centre Commercial des Baconnets",48.738234,2.290648,0,0,OIF:SA:59:5244906,Europe/Paris,,OIF, +OIF:SP:59:6041759,1,"Président John Fitzgerald Kennedy",48.735853,2.291886,0,0,OIF:SA:59:6041759,Europe/Paris,,OIF, +OIF:SP:59:6041760,1,"Bourgogne",48.734415,2.292227,0,0,OIF:SA:59:6041760,Europe/Paris,,OIF, +OIF:SP:59:6041761,1,"Bourgogne",48.734343,2.292404,0,0,OIF:SA:59:6041760,Europe/Paris,,OIF, +OIF:SP:59:6041778,1,"Mairie de Massy",48.731035,2.27204,0,0,OIF:SA:49:49980,Europe/Paris,,OIF, +OIF:SP:59:6041780,1,"Charles de Gaulle",48.734189,2.269766,0,0,OIF:SA:24:15075,Europe/Paris,,OIF, +OIF:SP:59:6041781,1,"Lycée Fustel de Coulanges",48.732713,2.266426,0,0,OIF:SA:57:8030,Europe/Paris,,OIF, +OIF:SP:59:6041782,1,"Lycée Fustel de Coulanges",48.732343,2.265421,0,0,OIF:SA:57:8030,Europe/Paris,,OIF, +OIF:SP:59:6041791,1,"Raymond Aron",48.728942,2.259936,0,0,OIF:SA:57:9470,Europe/Paris,,OIF, +OIF:SP:59:6041792,1,"Raymond Aron",48.728691,2.259937,0,0,OIF:SA:57:9470,Europe/Paris,,OIF, +OIF:SP:59:6041793,1,"Massy-Palaiseau RER",48.725101,2.255608,0,0,OIF:SA:8739357,Europe/Paris,,OIF, +OIF:SP:59:6041797,1,"Clos de Villaine",48.729633,2.257259,0,0,OIF:SA:59:6041797,Europe/Paris,,OIF, +OIF:SP:59:6041798,1,"Président Allende.",48.730424,2.257162,0,0,OIF:SA:24:15077,Europe/Paris,,OIF, +OIF:SP:59:6041799,1,"Président Allende.",48.730361,2.257054,0,0,OIF:SA:24:15077,Europe/Paris,,OIF, +OIF:SP:59:6041800,1,"Lycée de Vilgénis.",48.731284,2.253723,0,0,OIF:SA:57:8050,Europe/Paris,,OIF, +OIF:SP:59:6041801,1,"Lycée de Vilgénis.",48.731077,2.253764,0,0,OIF:SA:57:8050,Europe/Paris,,OIF, +OIF:SP:59:6041802,1,"Parc de Vilgénis",48.731375,2.243003,0,0,OIF:SA:57:8060,Europe/Paris,,OIF, +OIF:SP:59:6041803,1,"Parc de Vilgénis",48.731231,2.243112,0,0,OIF:SA:57:8060,Europe/Paris,,OIF, +OIF:SP:59:6041804,1,"Rond-Point du Pileu",48.730106,2.24113,0,0,OIF:SA:57:8070,Europe/Paris,,OIF, +OIF:SP:59:6041805,1,"Centre Commercial de Massy",48.72903,2.244787,0,0,OIF:SA:59:6041805,Europe/Paris,,OIF, +OIF:SP:59:6041806,1,"Centre Commercial de Massy",48.729085,2.245045,0,0,OIF:SA:59:6041805,Europe/Paris,,OIF, +OIF:SP:59:6041807,1,"Clos Berthelot",48.726389,2.245987,0,0,OIF:SA:59:6041807,Europe/Paris,,OIF, +OIF:SP:59:6041808,1,"Clos Berthelot",48.726434,2.246245,0,0,OIF:SA:59:6041807,Europe/Paris,,OIF, +OIF:SP:59:6041809,1,"Parc de l'Effort Mutuel",48.727247,2.24047,0,0,OIF:SA:59:6041809,Europe/Paris,,OIF, +OIF:SP:59:6041810,1,"Parc de l'Effort Mutuel",48.727086,2.240877,0,0,OIF:SA:59:6041809,Europe/Paris,,OIF, +OIF:SP:59:6041811,1,"Marche du Pileu",48.727639,2.235877,0,0,OIF:SA:24:15083,Europe/Paris,,OIF, +OIF:SP:59:6041812,1,"Marche du Pileu",48.727522,2.23585,0,0,OIF:SA:24:15083,Europe/Paris,,OIF, +OIF:SP:59:6041813,1,"Cent Marches",48.727689,2.231189,0,0,OIF:SA:59:6041813,Europe/Paris,,OIF, +OIF:SP:59:6041814,1,"Yvette",48.729449,2.228998,0,0,OIF:SA:59:6041814,Europe/Paris,,OIF, +OIF:SP:59:6041815,1,"Le Gymnase",48.732307,2.22868,0,0,OIF:SA:57:8161,Europe/Paris,,OIF, +OIF:SP:59:6041816,1,"Le Gymnase",48.732191,2.229835,0,0,OIF:SA:57:8161,Europe/Paris,,OIF, +OIF:SP:59:6041817,1,"Jules Ferry - République",48.732212,2.223843,0,0,OIF:SA:57:8170,Europe/Paris,,OIF, +OIF:SP:59:6041818,1,"Jules Ferry - République",48.732104,2.22368,0,0,OIF:SA:57:8170,Europe/Paris,,OIF, +OIF:SP:59:6041819,1,"La Ferme",48.733414,2.221353,0,0,OIF:SA:57:8180,Europe/Paris,,OIF, +OIF:SP:59:6041820,1,"La Ferme",48.733099,2.221123,0,0,OIF:SA:57:8180,Europe/Paris,,OIF, +OIF:SP:59:6041821,1,"Albert Sarraut",48.736974,2.221835,0,0,OIF:SA:57:8190,Europe/Paris,,OIF, +OIF:SP:59:6041822,1,"Bouton d'Or",48.736269,2.217243,0,0,OIF:SA:57:8200,Europe/Paris,,OIF, +OIF:SP:59:6041823,1,"Les Castors",48.73578,2.214065,0,0,OIF:SA:57:8210,Europe/Paris,,OIF, +OIF:SP:59:6041824,1,"Les Castors",48.735519,2.213508,0,0,OIF:SA:57:8210,Europe/Paris,,OIF, +OIF:SP:59:6041825,1,"Mairie de Vauhallan",48.734161,2.204734,0,0,OIF:SA:57:8220,Europe/Paris,,OIF, +OIF:SP:59:6041826,1,"Mairie de Vauhallan",48.734008,2.204843,0,0,OIF:SA:57:8220,Europe/Paris,,OIF, +OIF:SP:59:6041827,1,"Grands Champs - Favreuse",48.733106,2.201923,0,0,OIF:SA:59:6041827,Europe/Paris,,OIF, +OIF:SP:59:6041828,1,"Grands Champs - Favreuse",48.733016,2.202005,0,0,OIF:SA:59:6041827,Europe/Paris,,OIF, +OIF:SP:59:6041829,1,"Abbaye Cimetière",48.732542,2.195946,0,0,OIF:SA:57:8680,Europe/Paris,,OIF, +OIF:SP:59:6041830,1,"Abbaye Cimetière",48.732335,2.196137,0,0,OIF:SA:57:8680,Europe/Paris,,OIF, +OIF:SP:59:6041831,1,"Bouton d'Or",48.735963,2.217027,0,0,OIF:SA:59:6041831,Europe/Paris,,OIF, +OIF:SP:59:6041832,1,"Ruchères",48.731412,2.233097,0,0,OIF:SA:57:3380,Europe/Paris,,OIF, +OIF:SP:59:6041833,1,"Igny Entreprises",48.730518,2.238548,0,0,OIF:SA:57:8150,Europe/Paris,,OIF, +OIF:SP:59:6041834,1,"Rue du Pileu",48.729987,2.238494,0,0,OIF:SA:57:8121,Europe/Paris,,OIF, +OIF:SP:59:6041835,1,"La Vieille Vigne",48.728565,2.236554,0,0,OIF:SA:57:8111,Europe/Paris,,OIF, +OIF:SP:59:6041836,1,"La Tuilerie",48.728445,2.270385,0,0,OIF:SA:49:60460,Europe/Paris,,OIF, +OIF:SP:59:6041837,1,"Président John Fitzgerald Kennedy",48.736473,2.291709,0,0,OIF:SA:59:6041837,Europe/Paris,,OIF, +OIF:SP:59:6041838,1,"Porte d'Orléans - Ernest Reyer",48.821067,2.324356,0,0,OIF:SA:59624,Europe/Paris,,OIF, +OIF:SP:59:6041840,1,"Les Frères Voisin",48.72276,2.302698,0,0,OIF:SA:59:6041840,Europe/Paris,,OIF, +OIF:SP:59:6041841,1,"Place de France",48.726294,2.306799,0,0,OIF:SA:59:6041841,Europe/Paris,,OIF, +OIF:SP:59:6041842,1,"Place de France",48.72695,2.306472,0,0,OIF:SA:59:6041841,Europe/Paris,,OIF, +OIF:SP:59:6041843,1,"Concorde",48.721592,2.304084,0,0,OIF:SA:59:6041843,Europe/Paris,,OIF, +OIF:SP:59:6041844,1,"Concorde",48.721062,2.303175,0,0,OIF:SA:59:6041843,Europe/Paris,,OIF, +OIF:SP:59:6041845,1,"Z.A.C. du Pérou",48.718813,2.297498,0,0,OIF:SA:59:6041845,Europe/Paris,,OIF, +OIF:SP:59:6041870,1,"Les Frères Voisin",48.722886,2.302548,0,0,OIF:SA:59:6041840,Europe/Paris,,OIF, +OIF:SP:59:6041877,1,"Les Coteaux",48.690498,2.294492,0,0,OIF:SA:46:9968,Europe/Paris,,OIF, +OIF:SP:59:6041878,1,"Les Coteaux",48.690911,2.293174,0,0,OIF:SA:46:9968,Europe/Paris,,OIF, +OIF:SP:59:6041879,1,"Léontine Sohier",48.694032,2.29772,0,0,OIF:SA:59:6041879,Europe/Paris,,OIF, +OIF:SP:59:6041880,1,"Léontine Sohier",48.694157,2.297516,0,0,OIF:SA:59:6041879,Europe/Paris,,OIF, +OIF:SP:59:6041881,1,"Général de Gaulle",48.697619,2.299781,0,0,OIF:SA:59:6041881,Europe/Paris,,OIF, +OIF:SP:59:6041882,1,"Général de Gaulle",48.697295,2.298899,0,0,OIF:SA:59:6041881,Europe/Paris,,OIF, +OIF:SP:59:6041895,1,"Place de la Libération",48.702208,2.320528,0,0,OIF:SA:59:4890563,Europe/Paris,,OIF, +OIF:SP:59:6041896,1,"Place de la Libération",48.702297,2.320256,0,0,OIF:SA:59:4890563,Europe/Paris,,OIF, +OIF:SP:59:6041911,1,"Square Henri Legrand",48.933293,2.548509,0,0,OIF:SA:59:6041911,Europe/Paris,,OIF, +OIF:SP:59:6041912,1,"Square Henri Legrand",48.933175,2.549436,0,0,OIF:SA:59:6041911,Europe/Paris,,OIF, +OIF:SP:59:6049847,1,"Square - Condorcet",48.706999,2.32782,0,0,OIF:SA:59:6049847,Europe/Paris,,OIF, +OIF:SP:59:6053474,1,"Commissariat de Savigny-sur-Orge",48.692789,2.337842,0,0,OIF:SA:59:4373712,Europe/Paris,,OIF, +OIF:SP:59:6075084,1,"Convention - Fontainebleau",48.81223,2.361401,0,0,OIF:SA:59578,Europe/Paris,,OIF, +OIF:SP:59:6075085,1,"Convention - Fontainebleau",48.812599,2.361701,0,0,OIF:SA:59578,Europe/Paris,,OIF, +OIF:SP:59:6075090,1,"Chastenet de Géry",48.805589,2.358227,0,0,OIF:SA:59:6075090,Europe/Paris,,OIF, +OIF:SP:59:6075091,1,"Les Coquettes",48.803486,2.358403,0,0,OIF:SA:59:6075091,Europe/Paris,,OIF, +OIF:SP:59:6075100,1,"Verdun - République",48.787057,2.354126,0,0,OIF:SA:59:5161540,Europe/Paris,,OIF, +OIF:SP:59:6075101,1,"Verdun - République",48.787659,2.354194,0,0,OIF:SA:59:5161540,Europe/Paris,,OIF, +OIF:SP:59:6075108,1,"Les Coquelicots",48.775579,2.353075,0,0,OIF:SA:59:4378032,Europe/Paris,,OIF, +OIF:SP:59:6075109,1,"Les Coquelicots",48.775139,2.352911,0,0,OIF:SA:59:4378032,Europe/Paris,,OIF, +OIF:SP:59:6075110,1,"Centre Culturel - André Malraux",48.770708,2.350367,0,0,OIF:SA:59:6075110,Europe/Paris,,OIF, +OIF:SP:59:6075111,1,"Mairie de Chevilly-Larue - Théâtre",48.770178,2.350462,0,0,OIF:SA:59:6075111,Europe/Paris,,OIF, +OIF:SP:59:6114729,1,"Hôtel de Ville de Paris",48.857539,2.350621,0,0,OIF:SA:59590,Europe/Paris,,OIF, +OIF:SP:59:6143542,1,"Villejuif - Louis Aragon - Métro",48.78753,2.367524,0,0,OIF:SA:59323,Europe/Paris,,OIF, +OIF:SP:59:6143543,1,"Rue de la Commune",48.788473,2.36985,0,0,OIF:SA:59:6143543,Europe/Paris,,OIF, +OIF:SP:59:6143544,1,"Colonel Fabien",48.788507,2.375999,0,0,OIF:SA:59:4843528,Europe/Paris,,OIF, +OIF:SP:59:6143545,1,"Camelinat",48.790465,2.380625,0,0,OIF:SA:59:6143545,Europe/Paris,,OIF, +OIF:SP:59:6143547,1,"Hôtel de Ville de Vitry",48.789905,2.388337,0,0,OIF:SA:59:6143547,Europe/Paris,,OIF, +OIF:SP:59:6143548,1,"Hôtel de Ville de Vitry - R. Derry",48.789455,2.389616,0,0,OIF:SA:59:6143548,Europe/Paris,,OIF, +OIF:SP:59:6143549,1,"Audigeois",48.790478,2.39246,0,0,OIF:SA:59:6143549,Europe/Paris,,OIF, +OIF:SP:59:6143550,1,"Église de Vitry",48.792023,2.39506,0,0,OIF:SA:59:6143550,Europe/Paris,,OIF, +OIF:SP:59:6143551,1,"Paul Vaillant-Couturier",48.795787,2.397975,0,0,OIF:SA:59:6143551,Europe/Paris,,OIF, +OIF:SP:59:6143553,1,"Vitry RER",48.801043,2.40239,0,0,OIF:SA:8754529,Europe/Paris,,OIF, +OIF:SP:59:6143555,1,"Rue de la Baignade",48.808448,2.404127,0,0,OIF:SA:59:6143555,Europe/Paris,,OIF, +OIF:SP:59:6143556,1,"Maurice Gunsbourg",48.8119,2.403056,0,0,OIF:SA:59:6143556,Europe/Paris,,OIF, +OIF:SP:59:6143557,1,"Gambetta",48.814875,2.401958,0,0,OIF:SA:59:4473618,Europe/Paris,,OIF, +OIF:SP:59:6143559,1,"Vaillant Couturier - Lénine",48.817915,2.398355,0,0,OIF:SA:59:6143559,Europe/Paris,,OIF, +OIF:SP:59:6143567,1,"Liberté",48.825577,2.406409,0,0,OIF:SA:59562,Europe/Paris,,OIF, +OIF:SP:59:6143575,1,"Port à l'Anglais",48.80478,2.405102,0,0,OIF:SA:59:3619783,Europe/Paris,,OIF, +OIF:SP:59:6143576,1,"Vitry RER",48.800836,2.401791,0,0,OIF:SA:8754529,Europe/Paris,,OIF, +OIF:SP:59:6143579,1,"Église de Vitry",48.792499,2.395128,0,0,OIF:SA:59:6143550,Europe/Paris,,OIF, +OIF:SP:59:6143581,1,"Hôtel de Ville de Vitry - R. Derry",48.78959,2.389357,0,0,OIF:SA:59:6143548,Europe/Paris,,OIF, +OIF:SP:59:6143582,1,"Hôtel de Ville de Vitry",48.790462,2.388488,0,0,OIF:SA:59:6143547,Europe/Paris,,OIF, +OIF:SP:59:6143585,1,"Colonel Fabien",48.788687,2.375972,0,0,OIF:SA:59:4843513,Europe/Paris,,OIF, +OIF:SP:59:6143586,1,"Villejuif - Louis Aragon",48.787854,2.367701,0,0,OIF:SA:59809,Europe/Paris,,OIF, +OIF:SP:59:6143592,1,"Vaillant-Couturier - Lénine",48.817807,2.39811,0,0,OIF:SA:59:6143559,Europe/Paris,,OIF, +OIF:SP:59:6143594,1,"Gambetta",48.814866,2.401563,0,0,OIF:SA:59:4473618,Europe/Paris,,OIF, +OIF:SP:59:6143595,1,"Maurice Gunsbourg",48.811396,2.403042,0,0,OIF:SA:59:6143556,Europe/Paris,,OIF, +OIF:SP:59:6143596,1,"Rue de la Baignade",48.8087,2.403869,0,0,OIF:SA:59:6143596,Europe/Paris,,OIF, +OIF:SP:59:6143600,1,"Paul Vaillant-Couturier",48.795248,2.397362,0,0,OIF:SA:59:6143551,Europe/Paris,,OIF, +OIF:SP:59:6143601,1,"Exploradôme",48.792986,2.392394,0,0,OIF:SA:59:4843469,Europe/Paris,,OIF, +OIF:SP:59:6143602,1,"Audigeois",48.790613,2.392215,0,0,OIF:SA:59:6143549,Europe/Paris,,OIF, +OIF:SP:59:6143606,1,"Camelinat",48.790528,2.380367,0,0,OIF:SA:59:6143545,Europe/Paris,,OIF, +OIF:SP:59:6161492,1,"Gustave Courbet",48.804053,2.320564,0,0,OIF:SA:59:6161492,Europe/Paris,,OIF, +OIF:SP:59:6161493,1,"Gustave Courbet",48.803873,2.320741,0,0,OIF:SA:59:6161492,Europe/Paris,,OIF, +OIF:SP:59:6187504,1,"17 Octobre 1961",48.898066,2.216543,0,0,OIF:SA:59:6187504,Europe/Paris,,OIF, +OIF:SP:59:6187505,1,"17 Octobre 1961",48.898066,2.216897,0,0,OIF:SA:59:6187504,Europe/Paris,,OIF, +OIF:SP:59:6187508,1,"Esplanade Charles de Gaulle",48.895896,2.221468,0,0,OIF:SA:8775802,Europe/Paris,,OIF, +OIF:SP:59:6187515,1,"Théâtre des Amandiers",48.892877,2.213406,0,0,OIF:SA:59:6187515,Europe/Paris,,OIF, +OIF:SP:59:6187518,1,"Les Champs Pierreux",48.889678,2.213918,0,0,OIF:SA:59:6187518,Europe/Paris,,OIF, +OIF:SP:59:6187519,1,"Les Champs Pierreux",48.889228,2.213469,0,0,OIF:SA:59:6187518,Europe/Paris,,OIF, +OIF:SP:59:6187520,1,"Le Chat Perche",48.889873,2.211069,0,0,OIF:SA:59:6187520,Europe/Paris,,OIF, +OIF:SP:59:6187521,1,"Le Chat Perche",48.889468,2.210552,0,0,OIF:SA:59:6187520,Europe/Paris,,OIF, +OIF:SP:59:6187522,1,"Carriers",48.887676,2.207736,0,0,OIF:SA:59:4024340,Europe/Paris,,OIF, +OIF:SP:59:6187523,1,"Carriers",48.88764,2.207913,0,0,OIF:SA:59:4024340,Europe/Paris,,OIF, +OIF:SP:59:6187525,1,"Sadi Carnot - Joliot Curie",48.88885,2.204475,0,0,OIF:SA:59:4024318,Europe/Paris,,OIF, +OIF:SP:59:6187527,1,"Place de la Boule - Joliot Curie",48.887399,2.201154,0,0,OIF:SA:59:5419727,Europe/Paris,,OIF, +OIF:SP:59:6187528,1,"Place de la Boule - Joffre",48.886786,2.199329,0,0,OIF:SA:59:6187528,Europe/Paris,,OIF, +OIF:SP:59:6187535,1,"Rueil - Ville",48.880437,2.181809,0,0,OIF:SA:17:1273,Europe/Paris,,OIF, +OIF:SP:59:6187537,1,"Danielle Casanova",48.878218,2.175602,0,0,OIF:SA:17:1274,Europe/Paris,,OIF, +OIF:SP:59:6187539,1,"Bois Préau",48.8771,2.172567,0,0,OIF:SA:17:1275,Europe/Paris,,OIF, +OIF:SP:59:6187540,1,"Bois Préau",48.8772,2.173602,0,0,OIF:SA:17:1275,Europe/Paris,,OIF, +OIF:SP:59:6187541,1,"Le Château",48.874494,2.166744,0,0,OIF:SA:59:6187541,Europe/Paris,,OIF, +OIF:SP:59:6187542,1,"Le Château",48.874666,2.167779,0,0,OIF:SA:59:6187541,Europe/Paris,,OIF, +OIF:SP:59:6187543,1,"École la Malmaison",48.87271,2.163166,0,0,OIF:SA:17:1277,Europe/Paris,,OIF, +OIF:SP:59:6187544,1,"École la Malmaison",48.873224,2.164772,0,0,OIF:SA:17:1277,Europe/Paris,,OIF, +OIF:SP:59:6187545,1,"Le Parc",48.871691,2.161044,0,0,OIF:SA:17:1278,Europe/Paris,,OIF, +OIF:SP:59:6187546,1,"Le Parc",48.871854,2.161984,0,0,OIF:SA:17:1278,Europe/Paris,,OIF, +OIF:SP:59:6187547,1,"La Jonchère",48.869608,2.156583,0,0,OIF:SA:59:6187547,Europe/Paris,,OIF, +OIF:SP:59:6187548,1,"La Jonchère",48.869925,2.158258,0,0,OIF:SA:59:6187547,Europe/Paris,,OIF, +OIF:SP:59:6187549,1,"Maison Rouge",48.868171,2.151316,0,0,OIF:SA:59:6187549,Europe/Paris,,OIF, +OIF:SP:59:6187550,1,"Maison Rouge",48.868519,2.149421,0,0,OIF:SA:59:6187550,Europe/Paris,,OIF, +OIF:SP:59:6187551,1,"La Chaussée - Musée Tourgueniev",48.868163,2.146411,0,0,OIF:SA:59:6187551,Europe/Paris,,OIF, +OIF:SP:59:6187552,1,"La Chaussée - Musée Tourgueniev",48.867939,2.146494,0,0,OIF:SA:59:6187551,Europe/Paris,,OIF, +OIF:SP:59:6187553,1,"Pont de Bougival",48.86762,2.138444,0,0,OIF:SA:16:19189,Europe/Paris,,OIF, +OIF:SP:59:6187554,1,"Pont de Bougival",48.867508,2.13587,0,0,OIF:SA:16:19189,Europe/Paris,,OIF, +OIF:SP:59:6187555,1,"La Passerelle",48.86874,2.131396,0,0,OIF:SA:59:6187555,Europe/Paris,,OIF, +OIF:SP:59:6187556,1,"La Passerelle",48.867766,2.134547,0,0,OIF:SA:59:6187555,Europe/Paris,,OIF, +OIF:SP:59:6187557,1,"La Machine",48.871989,2.123481,0,0,OIF:SA:59:6187557,Europe/Paris,,OIF, +OIF:SP:59:6187558,1,"La Machine",48.871495,2.123797,0,0,OIF:SA:59:6187557,Europe/Paris,,OIF, +OIF:SP:59:6187559,1,"Pavillon Halévy",48.874139,2.119726,0,0,OIF:SA:59:6187559,Europe/Paris,,OIF, +OIF:SP:59:6187560,1,"Pavillon Halévy",48.87578,2.117471,0,0,OIF:SA:59:6187559,Europe/Paris,,OIF, +OIF:SP:59:6187561,1,"Bas Prunay",48.876802,2.116349,0,0,OIF:SA:59:6187561,Europe/Paris,,OIF, +OIF:SP:59:6187562,1,"Bas Prunay",48.877359,2.116129,0,0,OIF:SA:59:6187562,Europe/Paris,,OIF, +OIF:SP:59:6187563,1,"Jaurès",48.880124,2.109944,0,0,OIF:SA:59:6187563,Europe/Paris,,OIF, +OIF:SP:59:6187564,1,"Jaurès",48.8792,2.110793,0,0,OIF:SA:59:6187563,Europe/Paris,,OIF, +OIF:SP:59:6187565,1,"Val André",48.883282,2.106919,0,0,OIF:SA:15:106,Europe/Paris,,OIF, +OIF:SP:59:6187566,1,"Val André",48.883057,2.106674,0,0,OIF:SA:15:106,Europe/Paris,,OIF, +OIF:SP:59:6187567,1,"L'Ermitage",48.887132,2.099242,0,0,OIF:SA:15:108,Europe/Paris,,OIF, +OIF:SP:59:6187568,1,"L'Ermitage",48.886763,2.099271,0,0,OIF:SA:15:108,Europe/Paris,,OIF, +OIF:SP:59:6187569,1,"Alexandre Bertrand",48.889369,2.098769,0,0,OIF:SA:21:643,Europe/Paris,,OIF, +OIF:SP:59:6187570,1,"Alexandre Bertrand",48.889361,2.099382,0,0,OIF:SA:15:40,Europe/Paris,,OIF, +OIF:SP:59:6187571,1,"Giraud Teulon",48.893908,2.099034,0,0,OIF:SA:15:396,Europe/Paris,,OIF, +OIF:SP:59:6187572,1,"Place Royale",48.896181,2.098601,0,0,OIF:SA:15:37,Europe/Paris,,OIF, +OIF:SP:59:6187573,1,"Place Royale",48.894606,2.097736,0,0,OIF:SA:15:37,Europe/Paris,,OIF, +OIF:SP:59:6187575,1,"Saint-Germain-en-Laye RER",48.897002,2.095871,0,0,OIF:SA:8775809,Europe/Paris,,OIF, +OIF:SP:59:6187652,1,"Porte de Champerret - Métro",48.885985,2.292492,0,0,OIF:SA:8738101,Europe/Paris,,OIF, +OIF:SP:59:6187654,1,"Veuve Lacroix",48.90275,2.227642,0,0,OIF:SA:59:6187654,Europe/Paris,,OIF, +OIF:SP:59:6187655,1,"Veuve Lacroix",48.903074,2.228732,0,0,OIF:SA:59:6187654,Europe/Paris,,OIF, +OIF:SP:59:6187656,1,"Arras",48.901147,2.224783,0,0,OIF:SA:59:6187656,Europe/Paris,,OIF, +OIF:SP:59:6187657,1,"Arras",48.901517,2.225954,0,0,OIF:SA:59:6187656,Europe/Paris,,OIF, +OIF:SP:59:6187660,1,"Dumont d'Urville - Belgique",48.907371,2.240898,0,0,OIF:SA:59:6187660,Europe/Paris,,OIF, +OIF:SP:59:6187662,1,"Île de la Jatte",48.894493,2.266969,0,0,OIF:SA:59:6187662,Europe/Paris,,OIF, +OIF:SP:59:6187663,1,"Île de la Jatte",48.894295,2.266615,0,0,OIF:SA:59:6187662,Europe/Paris,,OIF, +OIF:SP:59:6187664,1,"Paix - Verdun",48.90078,2.260594,0,0,OIF:SA:59:4024802,Europe/Paris,,OIF, +OIF:SP:59:6187665,1,"Paix - Verdun",48.900501,2.260513,0,0,OIF:SA:59:4024802,Europe/Paris,,OIF, +OIF:SP:59:6187666,1,"Mairie de la Garenne-Colombes",48.906898,2.245111,0,0,OIF:SA:59:6187666,Europe/Paris,,OIF, +OIF:SP:59:6187667,1,"Mairie de la Garenne-Colombes",48.906763,2.244621,0,0,OIF:SA:59:6187666,Europe/Paris,,OIF, +OIF:SP:59:6187668,1,"Préfecture des Hauts-de-Seine",48.89742,2.217975,0,0,OIF:SA:59:6187668,Europe/Paris,,OIF, +OIF:SP:59:6187669,1,"Préfecture des Hauts-de-Seine",48.897303,2.218248,0,0,OIF:SA:59:6187668,Europe/Paris,,OIF, +OIF:SP:59:6187670,1,"Victor Hugo",48.887714,2.277894,0,0,OIF:SA:59:6187670,Europe/Paris,,OIF, +OIF:SP:59:6187671,1,"Victor Hugo",48.887292,2.279094,0,0,OIF:SA:59:6187670,Europe/Paris,,OIF, +OIF:SP:59:6187672,1,"Inkermann - Bineau",48.888332,2.275182,0,0,OIF:SA:59:4016754,Europe/Paris,,OIF, +OIF:SP:59:6187673,1,"Inkermann - Bineau",48.887829,2.275973,0,0,OIF:SA:59:4016754,Europe/Paris,,OIF, +OIF:SP:59:6187674,1,"Chézy",48.889679,2.272659,0,0,OIF:SA:59:6187674,Europe/Paris,,OIF, +OIF:SP:59:6187675,1,"Chézy",48.889212,2.273041,0,0,OIF:SA:59:6187674,Europe/Paris,,OIF, +OIF:SP:59:6187676,1,"Pont Bineau",48.897457,2.263898,0,0,OIF:SA:59:4015804,Europe/Paris,,OIF, +OIF:SP:59:6187677,1,"Pont Bineau",48.897529,2.263434,0,0,OIF:SA:59:4015804,Europe/Paris,,OIF, +OIF:SP:59:6187678,1,"Europe",48.905073,2.256498,0,0,OIF:SA:59:4024835,Europe/Paris,,OIF, +OIF:SP:59:6187679,1,"Europe",48.904965,2.256103,0,0,OIF:SA:59:4024835,Europe/Paris,,OIF, +OIF:SP:59:6187680,1,"Souvenir Français",48.906326,2.249393,0,0,OIF:SA:59:6187680,Europe/Paris,,OIF, +OIF:SP:59:6187681,1,"Souvenir Français",48.906182,2.249094,0,0,OIF:SA:59:6187680,Europe/Paris,,OIF, +OIF:SP:59:6187683,1,"Bineau - Château",48.890954,2.270449,0,0,OIF:SA:59:3813029,Europe/Paris,,OIF, +OIF:SP:59:6187684,1,"Bineau - Château",48.890523,2.270518,0,0,OIF:SA:59:3813029,Europe/Paris,,OIF, +OIF:SP:59:6187685,1,"Plaisance",48.905772,2.25373,0,0,OIF:SA:59:6187685,Europe/Paris,,OIF, +OIF:SP:59:6187686,1,"Plaisance",48.905754,2.252489,0,0,OIF:SA:59:6187685,Europe/Paris,,OIF, +OIF:SP:59:6187687,1,"Bonnin",48.905164,2.233935,0,0,OIF:SA:59:6187687,Europe/Paris,,OIF, +OIF:SP:59:6187688,1,"Lens",48.899203,2.221406,0,0,OIF:SA:59:6187688,Europe/Paris,,OIF, +OIF:SP:59:6187689,1,"Lens",48.899014,2.22157,0,0,OIF:SA:59:6187688,Europe/Paris,,OIF, +OIF:SP:59:6187690,1,"La Saussaye - Bineau",48.892535,2.268893,0,0,OIF:SA:59:3813026,Europe/Paris,,OIF, +OIF:SP:59:6187691,1,"La Saussaye - Bineau",48.892346,2.26858,0,0,OIF:SA:59:3813026,Europe/Paris,,OIF, +OIF:SP:59:6187692,1,"Verdun - Rue Latérale",48.90246,2.258956,0,0,OIF:SA:59:6187692,Europe/Paris,,OIF, +OIF:SP:59:6187693,1,"Verdun - Rue Latérale",48.902226,2.25882,0,0,OIF:SA:59:6187692,Europe/Paris,,OIF, +OIF:SP:59:6187694,1,"Villiers - Bineau",48.886952,2.282365,0,0,OIF:SA:59:6187694,Europe/Paris,,OIF, +OIF:SP:59:6187695,1,"La Garenne-Colombes - Charlebourg",48.906659,2.237804,0,0,OIF:SA:59712,Europe/Paris,,OIF, +OIF:SP:59:6187696,1,"La Garenne-Colombes - Charlebourg",48.906687,2.239345,0,0,OIF:SA:59712,Europe/Paris,,OIF, +OIF:SP:59:6187697,1,"Collège les Champs Philippe",48.904227,2.231443,0,0,OIF:SA:59:6187697,Europe/Paris,,OIF, +OIF:SP:59:6187698,1,"Collège les Champs Philippe",48.90448,2.232778,0,0,OIF:SA:59:6187697,Europe/Paris,,OIF, +OIF:SP:59:6187702,1,"Verdun",48.905858,2.236388,0,0,OIF:SA:59:6187702,Europe/Paris,,OIF, +OIF:SP:59:6195713,1,"La Défense - Métro-RER-Tramway",48.890358,2.240371,0,0,OIF:SA:8738221,Europe/Paris,,OIF, +OIF:SP:59:6195717,1,"Place de la Boule - Clemenceau",48.887265,2.201318,0,0,OIF:SA:59:6195717,Europe/Paris,,OIF, +OIF:SP:59:6195723,1,"Félix Faure",48.886343,2.212986,0,0,OIF:SA:59:6195723,Europe/Paris,,OIF, +OIF:SP:59:6195724,1,"Félix Faure",48.885922,2.214404,0,0,OIF:SA:59:6195723,Europe/Paris,,OIF, +OIF:SP:59:6195726,1,"Danielle Casanova",48.878445,2.177018,0,0,OIF:SA:17:1274,Europe/Paris,,OIF, +OIF:SP:59:6195727,1,"Sainte-Geneviève",48.885109,2.194796,0,0,OIF:SA:59:6195727,Europe/Paris,,OIF, +OIF:SP:59:6195728,1,"Sainte-Geneviève",48.885462,2.196498,0,0,OIF:SA:59:6195727,Europe/Paris,,OIF, +OIF:SP:59:6195731,1,"Les Bergères",48.885675,2.228237,0,0,OIF:SA:59:4024119,Europe/Paris,,OIF, +OIF:SP:59:6195732,1,"Les Bergères",48.88554,2.228714,0,0,OIF:SA:59:4024119,Europe/Paris,,OIF, +OIF:SP:59:6195735,1,"Les Graviers",48.887755,2.233234,0,0,OIF:SA:59:4024348,Europe/Paris,,OIF, +OIF:SP:59:6195736,1,"Les Graviers",48.887531,2.233548,0,0,OIF:SA:59:4024348,Europe/Paris,,OIF, +OIF:SP:59:6195742,1,"Les Bouvets",48.888754,2.235345,0,0,OIF:SA:59:6195742,Europe/Paris,,OIF, +OIF:SP:59:6195743,1,"Les Bouvets",48.888756,2.236803,0,0,OIF:SA:59:6195742,Europe/Paris,,OIF, +OIF:SP:59:6195749,1,"Clemenceau - Sadi Carnot",48.886688,2.207983,0,0,OIF:SA:59:4024316,Europe/Paris,,OIF, +OIF:SP:59:6195750,1,"Clemenceau - Sadi Carnot",48.886285,2.209865,0,0,OIF:SA:59:4024316,Europe/Paris,,OIF, +OIF:SP:59:6195751,1,"La Jonchère",48.869177,2.156966,0,0,OIF:SA:17:1279,Europe/Paris,,OIF, +OIF:SP:59:6195753,1,"Les Bergères - Marche",48.885088,2.225581,0,0,OIF:SA:59:6195753,Europe/Paris,,OIF, +OIF:SP:59:6195756,1,"Parc des Grottes",48.69325,2.374623,0,0,OIF:SA:59:6195756,Europe/Paris,,OIF, +OIF:SP:59:6195757,1,"Raspail",48.693825,2.375914,0,0,OIF:SA:59:6195757,Europe/Paris,,OIF, +OIF:SP:59:6195760,1,"Pyramide de Juvisy",48.698482,2.372169,0,0,OIF:SA:8741442,Europe/Paris,,OIF, +OIF:SP:59:6195761,1,"Marche de Juvisy",48.691218,2.375871,0,0,OIF:SA:59:6195761,Europe/Paris,,OIF, +OIF:SP:59:6195765,1,"Utrillo",48.674038,2.338846,0,0,OIF:SA:59:6195765,Europe/Paris,,OIF, +OIF:SP:59:6195766,1,"Gare de Savigny-sur-Orge RER",48.675943,2.350953,0,0,OIF:SA:8754523,Europe/Paris,,OIF, +OIF:SP:59:6195768,1,"Gounod",48.68371,2.344819,0,0,OIF:SA:59:6195768,Europe/Paris,,OIF, +OIF:SP:59:6195769,1,"Collège les Gâtines",48.685049,2.333158,0,0,OIF:SA:59:4377641,Europe/Paris,,OIF, +OIF:SP:59:6195771,1,"Collège Jean Mermoz",48.673328,2.340244,0,0,OIF:SA:59:6195771,Europe/Paris,,OIF, +OIF:SP:59:6195775,1,"Pyramide de Juvisy",48.69797,2.371273,0,0,OIF:SA:8741442,Europe/Paris,,OIF, +OIF:SP:59:6195778,1,"Tourterelles",48.691276,2.362389,0,0,OIF:SA:59:6195778,Europe/Paris,,OIF, +OIF:SP:59:6195781,1,"Toulouse-Lautrec",48.676016,2.338575,0,0,OIF:SA:59:6195781,Europe/Paris,,OIF, +OIF:SP:59:6195782,1,"Gare d'Epinay-sur-Orge RER",48.669858,2.331802,0,0,OIF:SA:8754522,Europe/Paris,,OIF, +OIF:SP:59:6195784,1,"Billoir",48.673058,2.34513,0,0,OIF:SA:59:6195784,Europe/Paris,,OIF, +OIF:SP:59:6195785,1,"Billoir",48.67304,2.344872,0,0,OIF:SA:59:6195784,Europe/Paris,,OIF, +OIF:SP:59:6195786,1,"Gare de Savigny-sur-Orge RER",48.675844,2.350967,0,0,OIF:SA:8754523,Europe/Paris,,OIF, +OIF:SP:59:6195790,1,"Gounod",48.683467,2.344887,0,0,OIF:SA:59:6195768,Europe/Paris,,OIF, +OIF:SP:59:6195792,1,"Les Peupliers",48.685525,2.346951,0,0,OIF:SA:59:6195792,Europe/Paris,,OIF, +OIF:SP:59:6195793,1,"Les Peupliers",48.685768,2.347399,0,0,OIF:SA:59:6195792,Europe/Paris,,OIF, +OIF:SP:59:6195796,1,"Terrasse",48.69493,2.376824,0,0,OIF:SA:59:6195796,Europe/Paris,,OIF, +OIF:SP:59:6195797,1,"Collège Jean Mermoz",48.672699,2.34095,0,0,OIF:SA:59:6195771,Europe/Paris,,OIF, +OIF:SP:59:6195799,1,"Aristide Briand - Champagne",48.688733,2.359184,0,0,OIF:SA:59:4377627,Europe/Paris,,OIF, +OIF:SP:59:6195800,1,"Aristide Briand - Champagne",48.688157,2.358084,0,0,OIF:SA:59:4377627,Europe/Paris,,OIF, +OIF:SP:59:6195801,1,"Toulouse-Lautrec",48.675881,2.338588,0,0,OIF:SA:59:6195781,Europe/Paris,,OIF, +OIF:SP:59:6195805,1,"Cimetière de Juvisy-sur-Orge",48.694385,2.366369,0,0,OIF:SA:59:6195805,Europe/Paris,,OIF, +OIF:SP:59:6195806,1,"Botherel",48.695928,2.375549,0,0,OIF:SA:59:6195806,Europe/Paris,,OIF, +OIF:SP:59:6195807,1,"Utrillo",48.673885,2.338765,0,0,OIF:SA:59:6195765,Europe/Paris,,OIF, +OIF:SP:59:6195809,1,"Martinière",48.674586,2.346868,0,0,OIF:SA:59:6195809,Europe/Paris,,OIF, +OIF:SP:59:6195810,1,"Martinière",48.674658,2.346759,0,0,OIF:SA:59:6195809,Europe/Paris,,OIF, +OIF:SP:59:6195811,1,"Marche de Savigny-sur-Orge",48.686891,2.353631,0,0,OIF:SA:59:6195811,Europe/Paris,,OIF, +OIF:SP:59:6195812,1,"Marche de Savigny-sur-Orge",48.6869,2.353169,0,0,OIF:SA:59:6195811,Europe/Paris,,OIF, +OIF:SP:59:6195813,1,"Tourterelles",48.691365,2.362892,0,0,OIF:SA:59:6195778,Europe/Paris,,OIF, +OIF:SP:59:6195817,1,"Thiers",48.693988,2.372805,0,0,OIF:SA:59:6195817,Europe/Paris,,OIF, +OIF:SP:59:6195818,1,"Cimetière de Savigny-sur-Orge",48.693918,2.365608,0,0,OIF:SA:59:6195818,Europe/Paris,,OIF, +OIF:SP:59:6217334,1,"Nanterre - Anatole France",48.901159,2.209829,0,0,OIF:SA:59:6217334,Europe/Paris,,OIF, +OIF:SP:59:6217419,1,"Boulevard National",48.884253,2.193149,0,0,OIF:SA:17:1591,Europe/Paris,,OIF, +OIF:SP:59:6251679,1,"Massy-Palaiseau RER",48.724449,2.260446,0,0,OIF:SA:8739357,Europe/Paris,,OIF, +OIF:SP:59:6251681,1,"Chemin des Femmes",48.727849,2.264707,0,0,OIF:SA:49:49970,Europe/Paris,,OIF, +OIF:SP:59:6251682,1,"Chemin des Femmes",48.727057,2.263526,0,0,OIF:SA:49:49970,Europe/Paris,,OIF, +OIF:SP:59:6251683,1,"Mairie de Massy",48.72929,2.269895,0,0,OIF:SA:49:49980,Europe/Paris,,OIF, +OIF:SP:59:6251684,1,"Mairie de Massy",48.729317,2.270044,0,0,OIF:SA:49:49980,Europe/Paris,,OIF, +OIF:SP:59:6251686,1,"La Tuilerie",48.728023,2.27082,0,0,OIF:SA:49:60460,Europe/Paris,,OIF, +OIF:SP:59:6251687,1,"8 Mai 1945",48.727315,2.274965,0,0,OIF:SA:29:421,Europe/Paris,,OIF, +OIF:SP:59:6251688,1,"8 Mai 1945",48.727684,2.274381,0,0,OIF:SA:29:421,Europe/Paris,,OIF, +OIF:SP:59:6251705,1,"L'Avenir",48.70041,2.32596,0,0,OIF:SA:59:6251705,Europe/Paris,,OIF, +OIF:SP:59:6251706,1,"L'Avenir",48.700401,2.325268,0,0,OIF:SA:59:6251705,Europe/Paris,,OIF, +OIF:SP:59:6251707,1,"Pierre Loti",48.702136,2.328078,0,0,OIF:SA:59:6251707,Europe/Paris,,OIF, +OIF:SP:59:6251708,1,"Pierre Loti",48.701741,2.3274,0,0,OIF:SA:59:6251707,Europe/Paris,,OIF, +OIF:SP:59:6251709,1,"Pierre Brossolette",48.70397,2.330292,0,0,OIF:SA:59:6251709,Europe/Paris,,OIF, +OIF:SP:59:6251710,1,"Pierre Brossolette",48.704662,2.329966,0,0,OIF:SA:59:6251709,Europe/Paris,,OIF, +OIF:SP:59:6251713,1,"Mairie de Morangis",48.705957,2.333143,0,0,OIF:SA:59:6251713,Europe/Paris,,OIF, +OIF:SP:59:6251715,1,"Le Stade",48.705094,2.340192,0,0,OIF:SA:59:6251715,Europe/Paris,,OIF, +OIF:SP:59:6251716,1,"Le Stade",48.70531,2.338644,0,0,OIF:SA:59:6251715,Europe/Paris,,OIF, +OIF:SP:59:6251717,1,"Rue de la Paix",48.7053,2.346643,0,0,OIF:SA:59:6251717,Europe/Paris,,OIF, +OIF:SP:59:6251718,1,"Rue de la Paix",48.705489,2.346656,0,0,OIF:SA:59:6251717,Europe/Paris,,OIF, +OIF:SP:59:6251719,1,"Les Fleurs",48.70547,2.355416,0,0,OIF:SA:59:4377615,Europe/Paris,,OIF, +OIF:SP:59:6251720,1,"Les Fleurs",48.705614,2.354003,0,0,OIF:SA:59:4377615,Europe/Paris,,OIF, +OIF:SP:59:6251721,1,"Froides Bouillies",48.70554,2.363904,0,0,OIF:SA:59:6251721,Europe/Paris,,OIF, +OIF:SP:59:6251729,1,"Centre Administratif",48.705839,2.385918,0,0,OIF:SA:59:6251729,Europe/Paris,,OIF, +OIF:SP:59:6251730,1,"Centre Administratif",48.706018,2.386068,0,0,OIF:SA:59:6251729,Europe/Paris,,OIF, +OIF:SP:59:6251731,1,"Coubertin",48.70438,2.390969,0,0,OIF:SA:59:6251731,Europe/Paris,,OIF, +OIF:SP:59:6251732,1,"Coubertin",48.704767,2.391757,0,0,OIF:SA:59:6251731,Europe/Paris,,OIF, +OIF:SP:59:6251734,1,"Cité Mozart",48.702099,2.387517,0,0,OIF:SA:59:6251734,Europe/Paris,,OIF, +OIF:SP:59:6251736,1,"Docteur Guérin",48.699916,2.383876,0,0,OIF:SA:59:6251736,Europe/Paris,,OIF, +OIF:SP:59:6251737,1,"Lycée Marcel Pagnol",48.697472,2.381199,0,0,OIF:SA:59:6251737,Europe/Paris,,OIF, +OIF:SP:59:6251738,1,"Lycée Marcel Pagnol",48.697957,2.381783,0,0,OIF:SA:59:6251737,Europe/Paris,,OIF, +OIF:SP:59:6251742,1,"Marche de Juvisy",48.691927,2.378668,0,0,OIF:SA:59:6195761,Europe/Paris,,OIF, +OIF:SP:59:6251744,1,"Froides Bouillies",48.705765,2.362206,0,0,OIF:SA:59:6251744,Europe/Paris,,OIF, +OIF:SP:59:6251745,1,"Châtelet",48.857116,2.350308,0,0,OIF:SA:59566,Europe/Paris,,OIF, +OIF:SP:59:6251787,1,"Jean Jaurès",48.795251,2.366318,0,0,OIF:SA:59:6251787,Europe/Paris,,OIF, +OIF:SP:59:6251788,1,"Guynemer - Place des Fusilles",48.793067,2.366425,0,0,OIF:SA:59:4378067,Europe/Paris,,OIF, +OIF:SP:59:6251792,1,"Villejuif - Louis Aragon",48.78806,2.367823,0,0,OIF:SA:59809,Europe/Paris,,OIF, +OIF:SP:59:6251795,1,"Lamartine",48.78318,2.367276,0,0,OIF:SA:59811,Europe/Paris,,OIF, +OIF:SP:59:6251797,1,"Moulin Vert",48.772098,2.367556,0,0,OIF:SA:59:6251797,Europe/Paris,,OIF, +OIF:SP:59:6251806,1,"Marche International de Rungis",48.763534,2.358197,0,0,OIF:SA:59:4314846,Europe/Paris,,OIF, +OIF:SP:59:6251820,1,"S.E.N.I.A.",48.751011,2.368766,0,0,OIF:SA:59:6251820,Europe/Paris,,OIF, +OIF:SP:59:6251825,1,"Cœur d'Orly",48.734697,2.370591,0,0,OIF:SA:59839,Europe/Paris,,OIF, +OIF:SP:59:6251826,1,"Cœur d'Orly",48.734967,2.370958,0,0,OIF:SA:59839,Europe/Paris,,OIF, +OIF:SP:59:6251828,1,"Aérogare d'Orly Sud",48.729449,2.367843,0,0,OIF:SA:59675,Europe/Paris,,OIF, +OIF:SP:59:6251829,1,"Porte de l'Essonne",48.714661,2.372343,0,0,OIF:SA:59844,Europe/Paris,,OIF, +OIF:SP:59:6251830,1,"Porte de l'Essonne",48.714535,2.372371,0,0,OIF:SA:59844,Europe/Paris,,OIF, +OIF:SP:59:6251831,1,"Aristide Briand",48.708325,2.371212,0,0,OIF:SA:8749572,Europe/Paris,,OIF, +OIF:SP:59:6251834,1,"Marx Dormoy",48.703606,2.371453,0,0,OIF:SA:59:6251834,Europe/Paris,,OIF, +OIF:SP:59:6251835,1,"Marx Dormoy",48.703534,2.371915,0,0,OIF:SA:59:6251834,Europe/Paris,,OIF, +OIF:SP:59:6251836,1,"Marche des Gravilliers",48.700756,2.371614,0,0,OIF:SA:59:6251836,Europe/Paris,,OIF, +OIF:SP:59:6251837,1,"Marche des Gravilliers",48.700909,2.372062,0,0,OIF:SA:59:6251836,Europe/Paris,,OIF, +OIF:SP:59:6251849,1,"Aristide Briand",48.709197,2.371593,0,0,OIF:SA:59:6251849,Europe/Paris,,OIF, +OIF:SP:59:6251851,1,"Caroline Aigle",48.737034,2.36994,0,0,OIF:SA:59837,Europe/Paris,,OIF, +OIF:SP:59:6251854,1,"Belle Epine Sud",48.755029,2.368986,0,0,OIF:SA:59:4314838,Europe/Paris,,OIF, +OIF:SP:59:6251855,1,"Porte de Thiais.",48.75965,2.365577,0,0,OIF:SA:59821,Europe/Paris,,OIF, +OIF:SP:59:6251856,1,"Le Cor de Chasse - la Belle Epine",48.760044,2.36869,0,0,OIF:SA:59:6251856,Europe/Paris,,OIF, +OIF:SP:59:6251857,1,"Cimetière Parisien de Thiais",48.764619,2.368462,0,0,OIF:SA:59:4471795,Europe/Paris,,OIF, +OIF:SP:59:6251858,1,"Bretagne",48.769464,2.368152,0,0,OIF:SA:59:4480118,Europe/Paris,,OIF, +OIF:SP:59:6251859,1,"Moulin Vert",48.771792,2.368018,0,0,OIF:SA:59815,Europe/Paris,,OIF, +OIF:SP:59:6251860,1,"École Départementale",48.777958,2.367627,0,0,OIF:SA:59:6251860,Europe/Paris,,OIF, +OIF:SP:59:6251861,1,"Domaine Chérioux",48.779989,2.367547,0,0,OIF:SA:59:4274424,Europe/Paris,,OIF, +OIF:SP:59:6251881,1,"Belle Etoile",48.705206,2.371359,0,0,OIF:SA:46:8441,Europe/Paris,,OIF, +OIF:SP:59:6251882,1,"Belle Etoile",48.70668,2.3717,0,0,OIF:SA:46:8441,Europe/Paris,,OIF, +OIF:SP:59:6251887,1,"Pyramide de Juvisy",48.697529,2.371571,0,0,OIF:SA:59:6251887,Europe/Paris,,OIF, +OIF:SP:59:6251888,1,"Observatoire Camille Flammarion",48.695103,2.371054,0,0,OIF:SA:59:6251888,Europe/Paris,,OIF, +OIF:SP:59:6251889,1,"Observatoire Camille Flammarion",48.695372,2.371556,0,0,OIF:SA:59:6251888,Europe/Paris,,OIF, +OIF:SP:59:6251894,1,"Marche de Juvisy",48.690912,2.377622,0,0,OIF:SA:59:6195761,Europe/Paris,,OIF, +OIF:SP:59:6251896,1,"Hôpital de Juvisy",48.690832,2.374459,0,0,OIF:SA:59:6251896,Europe/Paris,,OIF, +OIF:SP:59:6251899,1,"Porte de l'Essonne",48.714455,2.372248,0,0,OIF:SA:59844,Europe/Paris,,OIF, +OIF:SP:59:6251901,1,"Centre Sportif",48.713027,2.366149,0,0,OIF:SA:59:6251901,Europe/Paris,,OIF, +OIF:SP:59:6251902,1,"Centre Sportif",48.712928,2.367643,0,0,OIF:SA:59:6251901,Europe/Paris,,OIF, +OIF:SP:59:6251903,1,"Henri Barbusse",48.713001,2.363758,0,0,OIF:SA:59:6251903,Europe/Paris,,OIF, +OIF:SP:59:6251904,1,"Henri Barbusse",48.71291,2.365728,0,0,OIF:SA:59:6251903,Europe/Paris,,OIF, +OIF:SP:59:6251905,1,"Mairie de Paray-Vieille-Poste",48.712273,2.363608,0,0,OIF:SA:59:6251905,Europe/Paris,,OIF, +OIF:SP:59:6251906,1,"Maxime Vedy",48.709586,2.359274,0,0,OIF:SA:59:6251906,Europe/Paris,,OIF, +OIF:SP:59:6251907,1,"Maxime Vedy",48.709514,2.359424,0,0,OIF:SA:59:6251906,Europe/Paris,,OIF, +OIF:SP:59:6251908,1,"Gabriel Péri",48.706008,2.362777,0,0,OIF:SA:59:6251908,Europe/Paris,,OIF, +OIF:SP:59:6251909,1,"Gabriel Péri",48.706107,2.362831,0,0,OIF:SA:59:6251908,Europe/Paris,,OIF, +OIF:SP:59:6251910,1,"Noyer - Renard",48.705136,2.363197,0,0,OIF:SA:59:5816770,Europe/Paris,,OIF, +OIF:SP:59:6251911,1,"Noyer - Renard",48.705073,2.36336,0,0,OIF:SA:59:5816770,Europe/Paris,,OIF, +OIF:SP:59:6251912,1,"Plein Midi",48.702269,2.362259,0,0,OIF:SA:59:6251912,Europe/Paris,,OIF, +OIF:SP:59:6251913,1,"Plein Midi",48.70217,2.362435,0,0,OIF:SA:59:6251912,Europe/Paris,,OIF, +OIF:SP:59:6251914,1,"Buisson",48.699644,2.361877,0,0,OIF:SA:59:6251914,Europe/Paris,,OIF, +OIF:SP:59:6251915,1,"Saint-Saëns - les Oiseaux",48.700184,2.358401,0,0,OIF:SA:59:6251915,Europe/Paris,,OIF, +OIF:SP:59:6251916,1,"Place Guynemer",48.698476,2.358047,0,0,OIF:SA:59:6251916,Europe/Paris,,OIF, +OIF:SP:59:6251917,1,"Place Guynemer",48.698072,2.358808,0,0,OIF:SA:59:6251916,Europe/Paris,,OIF, +OIF:SP:59:6251918,1,"Palombes",48.697875,2.35472,0,0,OIF:SA:59:6251918,Europe/Paris,,OIF, +OIF:SP:59:6251919,1,"Debussy - Champagne",48.695205,2.355643,0,0,OIF:SA:59:6251919,Europe/Paris,,OIF, +OIF:SP:59:6251920,1,"Debussy - Champagne",48.695421,2.355724,0,0,OIF:SA:59:6251919,Europe/Paris,,OIF, +OIF:SP:59:6251921,1,"Square Cheveaux",48.694674,2.357258,0,0,OIF:SA:59:6251921,Europe/Paris,,OIF, +OIF:SP:59:6251922,1,"Square Cheveaux",48.694818,2.358956,0,0,OIF:SA:59:6251921,Europe/Paris,,OIF, +OIF:SP:59:6251923,1,"Poste",48.694422,2.361793,0,0,OIF:SA:59:6251923,Europe/Paris,,OIF, +OIF:SP:59:6251924,1,"École Jean Jaurès",48.693378,2.368568,0,0,OIF:SA:59:6251924,Europe/Paris,,OIF, +OIF:SP:59:6251925,1,"École Jean Jaurès",48.693449,2.368758,0,0,OIF:SA:59:6251924,Europe/Paris,,OIF, +OIF:SP:59:6251926,1,"Mairie de Juvisy",48.691687,2.370468,0,0,OIF:SA:8741440,Europe/Paris,,OIF, +OIF:SP:59:6251927,1,"Mairie de Juvisy",48.691696,2.370766,0,0,OIF:SA:8741440,Europe/Paris,,OIF, +OIF:SP:59:6251928,1,"Piver",48.688927,2.372054,0,0,OIF:SA:59:6251928,Europe/Paris,,OIF, +OIF:SP:59:6251929,1,"Piver",48.688927,2.371335,0,0,OIF:SA:59:6251928,Europe/Paris,,OIF, +OIF:SP:59:6251930,1,"Marche de Juvisy",48.691065,2.378152,0,0,OIF:SA:59:6195761,Europe/Paris,,OIF, +OIF:SP:59:6251933,1,"Place Henri Barbusse",48.695653,2.364374,0,0,OIF:SA:59:6251933,Europe/Paris,,OIF, +OIF:SP:59:6251934,1,"Violettes",48.697918,2.361523,0,0,OIF:SA:59:6251934,Europe/Paris,,OIF, +OIF:SP:59:6251935,1,"Guynemer",48.696625,2.359011,0,0,OIF:SA:59:6251916,Europe/Paris,,OIF, +OIF:SP:59:6251936,1,"Palombes",48.69747,2.354666,0,0,OIF:SA:59:6251936,Europe/Paris,,OIF, +OIF:SP:59:6251937,1,"Saint-Saëns",48.69987,2.357668,0,0,OIF:SA:59:6251937,Europe/Paris,,OIF, +OIF:SP:59:6251938,1,"Jardiniers",48.699465,2.360125,0,0,OIF:SA:59:6251938,Europe/Paris,,OIF, +OIF:SP:59:6251943,1,"Belle Etoile",48.706194,2.371306,0,0,OIF:SA:46:8441,Europe/Paris,,OIF, +OIF:SP:59:6251947,1,"La Plaine",48.707541,2.377757,0,0,OIF:SA:59:6251947,Europe/Paris,,OIF, +OIF:SP:59:6251956,1,"Dagobert",48.718873,2.403291,0,0,OIF:SA:4:19,Europe/Paris,,OIF, +OIF:SP:59:6251957,1,"Rue d'Ablon",48.718071,2.40689,0,0,OIF:SA:4:38,Europe/Paris,,OIF, +OIF:SP:59:6251958,1,"Rue d'Ablon",48.71808,2.406604,0,0,OIF:SA:4:38,Europe/Paris,,OIF, +OIF:SP:59:6251960,1,"Caron",48.718959,2.409784,0,0,OIF:SA:59:6251960,Europe/Paris,,OIF, +OIF:SP:59:6251961,1,"Gunsbourg",48.719541,2.412706,0,0,OIF:SA:59:6251961,Europe/Paris,,OIF, +OIF:SP:59:6251962,1,"Caron - Gunsbourg",48.718455,2.41068,0,0,OIF:SA:59:6251962,Europe/Paris,,OIF, +OIF:SP:59:6251965,1,"Athis-Mons RER",48.712959,2.402604,0,0,OIF:SA:8754525,Europe/Paris,,OIF, +OIF:SP:59:6251966,1,"Athis-Mons RER",48.712949,2.403229,0,0,OIF:SA:8754525,Europe/Paris,,OIF, +OIF:SP:59:6251967,1,"Provence",48.709526,2.399802,0,0,OIF:SA:59:6251967,Europe/Paris,,OIF, +OIF:SP:59:6251968,1,"Provence",48.70914,2.399652,0,0,OIF:SA:59:6251967,Europe/Paris,,OIF, +OIF:SP:59:6251969,1,"Edouard Vaillant",48.707946,2.397519,0,0,OIF:SA:59:6251969,Europe/Paris,,OIF, +OIF:SP:59:6251970,1,"Edouard Vaillant",48.707838,2.3976,0,0,OIF:SA:59:6251969,Europe/Paris,,OIF, +OIF:SP:59:6251971,1,"Cottage",48.705449,2.392695,0,0,OIF:SA:59:6251971,Europe/Paris,,OIF, +OIF:SP:59:6251972,1,"Cottage",48.705467,2.393021,0,0,OIF:SA:59:6251971,Europe/Paris,,OIF, +OIF:SP:59:6251985,1,"Place de Mons",48.715638,2.400842,0,0,OIF:SA:4:29,Europe/Paris,,OIF, +OIF:SP:59:6251986,1,"Clos de Brétigny",48.713842,2.397566,0,0,OIF:SA:4:15,Europe/Paris,,OIF, +OIF:SP:59:6251993,1,"Centre Commercial - Rigolet",48.71112,2.371064,0,0,OIF:SA:59:6251993,Europe/Paris,,OIF, +OIF:SP:59:6251998,1,"La Plaine",48.707379,2.377852,0,0,OIF:SA:59:6251947,Europe/Paris,,OIF, +OIF:SP:59:6252004,1,"Clos Nollet",48.711931,2.391506,0,0,OIF:SA:4:18,Europe/Paris,,OIF, +OIF:SP:59:6252006,1,"Delalande Pasteur",48.712917,2.395324,0,0,OIF:SA:4:22,Europe/Paris,,OIF, +OIF:SP:59:6252007,1,"Delalande Pasteur",48.713214,2.395229,0,0,OIF:SA:4:22,Europe/Paris,,OIF, +OIF:SP:59:6252008,1,"ZA les Guyards",48.721505,2.405196,0,0,OIF:SA:4:43,Europe/Paris,,OIF, +OIF:SP:59:6252009,1,"ZA les Guyards",48.721712,2.405088,0,0,OIF:SA:4:43,Europe/Paris,,OIF, +OIF:SP:59:6252010,1,"Château d'Ablon",48.723461,2.411081,0,0,OIF:SA:59:6252010,Europe/Paris,,OIF, +OIF:SP:59:6252011,1,"Château d'Ablon",48.723353,2.411244,0,0,OIF:SA:59:6252010,Europe/Paris,,OIF, +OIF:SP:59:6252012,1,"Rue d'Ablon",48.719939,2.409052,0,0,OIF:SA:4:38,Europe/Paris,,OIF, +OIF:SP:59:6252013,1,"Rue d'Ablon",48.719876,2.409242,0,0,OIF:SA:4:38,Europe/Paris,,OIF, +OIF:SP:59:6252014,1,"Caron",48.719363,2.410573,0,0,OIF:SA:59:6251960,Europe/Paris,,OIF, +OIF:SP:59:6252018,1,"Les Fontaines",48.714836,2.404427,0,0,OIF:SA:8754525,Europe/Paris,,OIF, +OIF:SP:59:6252019,1,"Les Fontaines",48.71542,2.405514,0,0,OIF:SA:8754525,Europe/Paris,,OIF, +OIF:SP:59:6252037,1,"Lycée Jean Monnet",48.695414,2.380341,0,0,OIF:SA:59:6252037,Europe/Paris,,OIF, +OIF:SP:59:6252039,1,"Marche de Juvisy",48.692655,2.379036,0,0,OIF:SA:59:6195761,Europe/Paris,,OIF, +OIF:SP:59:6252045,1,"Place Henri Deudon",48.709281,2.386791,0,0,OIF:SA:59:5816789,Europe/Paris,,OIF, +OIF:SP:59:6252046,1,"Albert Sarraut",48.707701,2.382715,0,0,OIF:SA:59:5816781,Europe/Paris,,OIF, +OIF:SP:59:6252050,1,"Cité Mozart",48.701946,2.386987,0,0,OIF:SA:59:6251734,Europe/Paris,,OIF, +OIF:SP:59:6252052,1,"Docteur Guérin",48.699781,2.383482,0,0,OIF:SA:59:6251736,Europe/Paris,,OIF, +OIF:SP:59:6252056,1,"Lycée Jean Monnet",48.695244,2.379934,0,0,OIF:SA:59:6252037,Europe/Paris,,OIF, +OIF:SP:59:6252058,1,"Marche de Juvisy",48.691936,2.37837,0,0,OIF:SA:59:6195761,Europe/Paris,,OIF, +OIF:SP:59:6252061,1,"Place de l'Église",48.708462,2.389384,0,0,OIF:SA:59:6252061,Europe/Paris,,OIF, +OIF:SP:59:6252062,1,"Saint-Charles",48.70989,2.39092,0,0,OIF:SA:4:42,Europe/Paris,,OIF, +OIF:SP:59:6252063,1,"Cimetière d'Athis-Mons",48.710943,2.38849,0,0,OIF:SA:59:5816783,Europe/Paris,,OIF, +OIF:SP:59:6263446,1,"Pont de Sevres",48.829532,2.230859,0,0,OIF:SA:59621,Europe/Paris,,OIF, +OIF:SP:59:6263448,1,"Général Leclerc",48.829563,2.235706,0,0,OIF:SA:59:6263448,Europe/Paris,,OIF, +OIF:SP:59:6263449,1,"Général Leclerc",48.83021,2.235201,0,0,OIF:SA:59:6263448,Europe/Paris,,OIF, +OIF:SP:59:6263456,1,"Place Jules Guesde",48.826944,2.241795,0,0,OIF:SA:59:5549562,Europe/Paris,,OIF, +OIF:SP:59:6263457,1,"Place Jules Guesde",48.827438,2.241481,0,0,OIF:SA:59:5549562,Europe/Paris,,OIF, +OIF:SP:59:6263459,1,"Île Saint-Germain",48.822995,2.249316,0,0,OIF:SA:59:6263459,Europe/Paris,,OIF, +OIF:SP:59:6263460,1,"Île Saint-Germain",48.823409,2.249669,0,0,OIF:SA:59:6263459,Europe/Paris,,OIF, +OIF:SP:59:6263461,1,"Les Moulineaux",48.821557,2.249781,0,0,OIF:SA:59017,Europe/Paris,,OIF, +OIF:SP:59:6263462,1,"Les Moulineaux",48.821684,2.250639,0,0,OIF:SA:59017,Europe/Paris,,OIF, +OIF:SP:59:6263463,1,"Paul Besnard",48.818492,2.249392,0,0,OIF:SA:59:6263463,Europe/Paris,,OIF, +OIF:SP:59:6263485,1,"Square Médéric",48.789591,2.23173,0,0,OIF:SA:59:6263485,Europe/Paris,,OIF, +OIF:SP:59:6263487,1,"Acacias",48.79045,2.22694,0,0,OIF:SA:59:6263487,Europe/Paris,,OIF, +OIF:SP:59:6263488,1,"Acacias",48.79028,2.227756,0,0,OIF:SA:59:6263487,Europe/Paris,,OIF, +OIF:SP:59:6263492,1,"Lycée de Villebon",48.794255,2.220756,0,0,OIF:SA:59:6263492,Europe/Paris,,OIF, +OIF:SP:59:6263493,1,"Aérodrome Morane",48.787902,2.222402,0,0,OIF:SA:59:5121004,Europe/Paris,,OIF, +OIF:SP:59:6263503,1,"Centre Millandy",48.785637,2.232636,0,0,OIF:SA:59:6263503,Europe/Paris,,OIF, +OIF:SP:59:6263517,1,"Jules Guesde",48.813173,2.306313,0,0,OIF:SA:59:5138058,Europe/Paris,,OIF, +OIF:SP:59:6263518,1,"Jean Jaurès",48.815933,2.311592,0,0,OIF:SA:59:5138057,Europe/Paris,,OIF, +OIF:SP:59:6263519,1,"Saint-Jacques",48.81837,2.319988,0,0,OIF:SA:59776,Europe/Paris,,OIF, +OIF:SP:59:6263520,1,"Amaury Duval",48.81749,2.325147,0,0,OIF:SA:59:6263520,Europe/Paris,,OIF, +OIF:SP:59:6263521,1,"Barbes",48.81678,2.328644,0,0,OIF:SA:59:6263521,Europe/Paris,,OIF, +OIF:SP:59:6263522,1,"Vanne",48.81252,2.327652,0,0,OIF:SA:59:6263522,Europe/Paris,,OIF, +OIF:SP:59:6263523,1,"Maurice Genevoix",48.811163,2.324372,0,0,OIF:SA:59:6263523,Europe/Paris,,OIF, +OIF:SP:59:6263524,1,"Jules Ferry",48.812313,2.322821,0,0,OIF:SA:59:6263524,Europe/Paris,,OIF, +OIF:SP:59:6263525,1,"Buffalo",48.812933,2.320942,0,0,OIF:SA:59:6263525,Europe/Paris,,OIF, +OIF:SP:59:6263526,1,"Verdier",48.814703,2.320071,0,0,OIF:SA:59:5161414,Europe/Paris,,OIF, +OIF:SP:59:6263527,1,"Verdier - République",48.815521,2.317852,0,0,OIF:SA:59:6263527,Europe/Paris,,OIF, +OIF:SP:59:6263528,1,"Mairie de Montrouge - Métro",48.81793,2.319349,0,0,OIF:SA:59776,Europe/Paris,,OIF, +OIF:SP:59:6263529,1,"Cimetière de Montrouge",48.820896,2.321008,0,0,OIF:SA:59:3442596,Europe/Paris,,OIF, +OIF:SP:59:6263530,1,"Place des États-Unis",48.81766,2.316205,0,0,OIF:SA:59:6263530,Europe/Paris,,OIF, +OIF:SP:59:6263531,1,"Jean Jaurès.",48.814935,2.310776,0,0,OIF:SA:59:5138057,Europe/Paris,,OIF, +OIF:SP:59:6263532,1,"Molière",48.812796,2.309511,0,0,OIF:SA:59:6263532,Europe/Paris,,OIF, +OIF:SP:59:6263533,1,"Georges Messier",48.811071,2.314642,0,0,OIF:SA:59:6263533,Europe/Paris,,OIF, +OIF:SP:59:6263534,1,"Cimetière de Bagneux",48.810424,2.311785,0,0,OIF:SA:59:6263534,Europe/Paris,,OIF, +OIF:SP:59:6263535,1,"Châtillon - Montrouge - Métro.",48.811078,2.304872,0,0,OIF:SA:59:6263535,Europe/Paris,,OIF, +OIF:SP:59:6263540,1,"Porte de Bagnolet - Belgrand",48.864456,2.408204,0,0,OIF:SA:59435,Europe/Paris,,OIF, +OIF:SP:59:6263548,1,"Gallieni",48.863911,2.416758,0,0,OIF:SA:59448,Europe/Paris,,OIF, +OIF:SP:59:6263559,1,"Croix de Chavaux - Métro",48.858173,2.435382,0,0,OIF:SA:59506,Europe/Paris,,OIF, +OIF:SP:59:6263560,1,"Mairie de Montreuil",48.861825,2.441424,0,0,OIF:SA:59507,Europe/Paris,,OIF, +OIF:SP:59:6263565,1,"Collège Cesaria Évora",48.867958,2.457212,0,0,OIF:SA:59:6263565,Europe/Paris,,OIF, +OIF:SP:59:6263566,1,"Edouard Branly",48.869342,2.45667,0,0,OIF:SA:59:3687726,Europe/Paris,,OIF, +OIF:SP:59:6263568,1,"Rue Saint-Denis",48.870644,2.458185,0,0,OIF:SA:59:6263568,Europe/Paris,,OIF, +OIF:SP:59:6263569,1,"Rue Saint-Denis",48.870767,2.460542,0,0,OIF:SA:59:6263568,Europe/Paris,,OIF, +OIF:SP:59:6263570,1,"Rue des Roches",48.873634,2.460699,0,0,OIF:SA:59:6263570,Europe/Paris,,OIF, +OIF:SP:59:6263571,1,"Rue des Roches",48.873237,2.462429,0,0,OIF:SA:59:6263570,Europe/Paris,,OIF, +OIF:SP:59:6263572,1,"Salvador Allende",48.877101,2.463092,0,0,OIF:SA:59:3688546,Europe/Paris,,OIF, +OIF:SP:59:6263573,1,"Salvador Allende",48.87568,2.46426,0,0,OIF:SA:59:3688546,Europe/Paris,,OIF, +OIF:SP:59:6263574,1,"Etienne Dolet",48.876017,2.467722,0,0,OIF:SA:59:6263574,Europe/Paris,,OIF, +OIF:SP:59:6263575,1,"Etienne Dolet",48.876683,2.466879,0,0,OIF:SA:59:6263574,Europe/Paris,,OIF, +OIF:SP:59:6263577,1,"Saussaie Beauclair - Domus",48.882083,2.468827,0,0,OIF:SA:59:6263577,Europe/Paris,,OIF, +OIF:SP:59:6263580,1,"Gabriel Péri - de Gaulle",48.877351,2.480356,0,0,OIF:SA:59:5991374,Europe/Paris,,OIF, +OIF:SP:59:6263581,1,"Gabriel Péri - de Gaulle",48.877523,2.479049,0,0,OIF:SA:59:5991374,Europe/Paris,,OIF, +OIF:SP:59:6263582,1,"Van Derheyden",48.877365,2.483695,0,0,OIF:SA:59:3685725,Europe/Paris,,OIF, +OIF:SP:59:6263583,1,"Van Derheyden",48.877553,2.484376,0,0,OIF:SA:59:3685725,Europe/Paris,,OIF, +OIF:SP:59:6263584,1,"Bois-Perrier Sud",48.881541,2.486391,0,0,OIF:SA:59:6263584,Europe/Paris,,OIF, +OIF:SP:59:6263585,1,"Bois-Perrier Sud",48.881128,2.485899,0,0,OIF:SA:59:6263584,Europe/Paris,,OIF, +OIF:SP:59:6263586,1,"Alsace Lorraine",48.883031,2.48769,0,0,OIF:SA:59:6263586,Europe/Paris,,OIF, +OIF:SP:59:6263587,1,"Alsace Lorraine",48.883247,2.48765,0,0,OIF:SA:59:6263586,Europe/Paris,,OIF, +OIF:SP:59:6263590,1,"Bois-Perrier-RER - Rosny 2",48.882967,2.481394,0,0,OIF:SA:8711369,Europe/Paris,,OIF, +OIF:SP:59:6270776,1,"Messidor - Libertés",48.768034,2.486744,0,0,OIF:SA:13:668,Europe/Paris,,OIF, +OIF:SP:59:6309076,1,"Cimetière Nouveau",48.892262,2.22795,0,0,OIF:SA:59:6309076,Europe/Paris,,OIF, +OIF:SP:59:6309078,1,"Pergola",48.888311,2.231843,0,0,OIF:SA:59:6309078,Europe/Paris,,OIF, +OIF:SP:59:6309080,1,"Les Bergères",48.884433,2.226768,0,0,OIF:SA:59:4024119,Europe/Paris,,OIF, +OIF:SP:59:6309083,1,"Gutenberg",48.883373,2.227683,0,0,OIF:SA:59:6309083,Europe/Paris,,OIF, +OIF:SP:59:6309084,1,"Gare de Puteaux",48.88372,2.233869,0,0,OIF:SA:8738238,Europe/Paris,,OIF, +OIF:SP:59:6309088,1,"Bellini",48.886115,2.250504,0,0,OIF:SA:59593,Europe/Paris,,OIF, +OIF:SP:59:6309089,1,"Esplanade de la Défense - Métro",48.886779,2.248936,0,0,OIF:SA:59593,Europe/Paris,,OIF, +OIF:SP:59:6309090,1,"Paul Lafargue",48.885591,2.246798,0,0,OIF:SA:59:3877775,Europe/Paris,,OIF, +OIF:SP:59:6309092,1,"Rousselle",48.886155,2.243322,0,0,OIF:SA:59:3877777,Europe/Paris,,OIF, +OIF:SP:59:6309093,1,"Centre Medico Social - Françoise Dolto",48.885001,2.239154,0,0,OIF:SA:59:6309093,Europe/Paris,,OIF, +OIF:SP:59:6309094,1,"Marche de Puteaux",48.88261,2.238995,0,0,OIF:SA:59:6309094,Europe/Paris,,OIF, +OIF:SP:59:6309096,1,"Bas Rogers",48.879929,2.235662,0,0,OIF:SA:59:6309096,Europe/Paris,,OIF, +OIF:SP:59:6309097,1,"Voltaire",48.877964,2.239563,0,0,OIF:SA:59:6309097,Europe/Paris,,OIF, +OIF:SP:59:6309098,1,"Conservatoire-Pressense",48.875608,2.237319,0,0,OIF:SA:59:6309098,Europe/Paris,,OIF, +OIF:SP:59:6309099,1,"Conservatoire-Pressense",48.875958,2.236623,0,0,OIF:SA:59:6309098,Europe/Paris,,OIF, +OIF:SP:59:6309101,1,"Volta",48.87618,2.233503,0,0,OIF:SA:59:6309101,Europe/Paris,,OIF, +OIF:SP:59:6309102,1,"Résidence Verdun",48.878563,2.235324,0,0,OIF:SA:59:6309102,Europe/Paris,,OIF, +OIF:SP:59:6309103,1,"Bas Rogers",48.879858,2.23682,0,0,OIF:SA:59:6309096,Europe/Paris,,OIF, +OIF:SP:59:6309105,1,"Wallace - Jaurès",48.880443,2.237487,0,0,OIF:SA:59:4024301,Europe/Paris,,OIF, +OIF:SP:59:6309106,1,"Marche de Puteaux",48.882853,2.23894,0,0,OIF:SA:59:6309094,Europe/Paris,,OIF, +OIF:SP:59:6309110,1,"Le Moulin",48.884275,2.230815,0,0,OIF:SA:8738238,Europe/Paris,,OIF, +OIF:SP:59:6309111,1,"Palissy",48.884641,2.228443,0,0,OIF:SA:59:4024118,Europe/Paris,,OIF, +OIF:SP:59:6309113,1,"Jules Verne - Palais de la Jeunesse",48.8885,2.231815,0,0,OIF:SA:59:6309113,Europe/Paris,,OIF, +OIF:SP:59:6309119,1,"Edgar Quinet",48.886404,2.229748,0,0,OIF:SA:59:6309119,Europe/Paris,,OIF, +OIF:SP:59:6309124,1,"Mairie de Puteaux",48.884506,2.239005,0,0,OIF:SA:59:4023966,Europe/Paris,,OIF, +OIF:SP:59:6309125,1,"Roque de Fillol",48.882674,2.240657,0,0,OIF:SA:59:6309125,Europe/Paris,,OIF, +OIF:SP:59:6309126,1,"Arago - Jean Jaurès",48.884062,2.245493,0,0,OIF:SA:59:6309126,Europe/Paris,,OIF, +OIF:SP:59:6309132,1,"Wallace - Jaurès",48.880982,2.236872,0,0,OIF:SA:59:4024301,Europe/Paris,,OIF, +OIF:SP:59:6309163,1,"Wallace - Jean Jaurès",48.880606,2.23844,0,0,OIF:SA:59:4024301,Europe/Paris,,OIF, +OIF:SP:59:6309164,1,"Wallace Voilin",48.881718,2.236108,0,0,OIF:SA:59:6309164,Europe/Paris,,OIF, +OIF:SP:59:6309165,1,"Mairie - Église",48.883094,2.237441,0,0,OIF:SA:59:6309165,Europe/Paris,,OIF, +OIF:SP:59:6309166,1,"Gare de Puteaux",48.883973,2.234659,0,0,OIF:SA:8738238,Europe/Paris,,OIF, +OIF:SP:59:6309167,1,"Offenbach",48.882856,2.231936,0,0,OIF:SA:8738238,Europe/Paris,,OIF, +OIF:SP:59:6309168,1,"Cartault - Palissy",48.881712,2.229076,0,0,OIF:SA:59:6309168,Europe/Paris,,OIF, +OIF:SP:59:6309171,1,"Charles Lorilleux",48.886333,2.230947,0,0,OIF:SA:59:6309171,Europe/Paris,,OIF, +OIF:SP:59:6309174,1,"Les Bouvets.",48.888781,2.235426,0,0,OIF:SA:59:6195742,Europe/Paris,,OIF, +OIF:SP:59:6309175,1,"Les Graviers.",48.887809,2.233357,0,0,OIF:SA:59:4024348,Europe/Paris,,OIF, +OIF:SP:59:6309177,1,"Berthelot - Carre Vert",48.889478,2.230873,0,0,OIF:SA:59:6309177,Europe/Paris,,OIF, +OIF:SP:59:6327989,1,"Diderot",48.94498,2.434838,0,0,OIF:SA:59:6327989,Europe/Paris,,OIF, +OIF:SP:59:6364414,1,"Wilson - Gabriel Péri",48.858069,2.440367,0,0,OIF:SA:59:3685921,Europe/Paris,,OIF, +OIF:SP:59:6401770,1,"Champigny - Saint-Maur RER",48.807199,2.510126,0,0,OIF:SA:8775817,Europe/Paris,,OIF, +OIF:SP:59:6401773,1,"République - Stalingrad",48.816526,2.511627,0,0,OIF:SA:59:3619453,Europe/Paris,,OIF, +OIF:SP:59:6401774,1,"Jean Moulin",48.818075,2.509849,0,0,OIF:SA:59:6401774,Europe/Paris,,OIF, +OIF:SP:59:6401775,1,"Irène Joliot Curie",48.820615,2.505924,0,0,OIF:SA:59:6401775,Europe/Paris,,OIF, +OIF:SP:59:6401776,1,"Gabriel Péri - Henri Barbusse",48.819451,2.502436,0,0,OIF:SA:59:6401776,Europe/Paris,,OIF, +OIF:SP:59:6401777,1,"Aristide Briand",48.822567,2.497913,0,0,OIF:SA:59:6401777,Europe/Paris,,OIF, +OIF:SP:59:6401778,1,"Général de Gaulle - Stalingrad",48.825096,2.495743,0,0,OIF:SA:59:3619640,Europe/Paris,,OIF, +OIF:SP:59:6401779,1,"Parc du Tremblay",48.82801,2.494064,0,0,OIF:SA:8798466,Europe/Paris,,OIF, +OIF:SP:59:6401781,1,"Viaduc",48.834545,2.493635,0,0,OIF:SA:59:3686069,Europe/Paris,,OIF, +OIF:SP:59:6401786,1,"Rond-Point du Général Leclerc",48.848453,2.497108,0,0,OIF:SA:59:3682873,Europe/Paris,,OIF, +OIF:SP:59:6401787,1,"Lycée Louis Armand",48.847951,2.489263,0,0,OIF:SA:59:6401787,Europe/Paris,,OIF, +OIF:SP:59:6401790,1,"Val-de-Fontenay RER",48.852789,2.486676,0,0,OIF:SA:8711371,Europe/Paris,,OIF, +OIF:SP:59:6401792,1,"Croix d'Eau",48.850405,2.496025,0,0,OIF:SA:59:5231569,Europe/Paris,,OIF, +OIF:SP:59:6401797,1,"Victor Hugo",48.858892,2.506866,0,0,OIF:SA:59:6401797,Europe/Paris,,OIF, +OIF:SP:59:6401798,1,"Square Jean Mermoz",48.861317,2.5081,0,0,OIF:SA:59:3685949,Europe/Paris,,OIF, +OIF:SP:59:6401800,1,"Les Deux Communes",48.864492,2.499623,0,0,OIF:SA:59:6401800,Europe/Paris,,OIF, +OIF:SP:59:6401804,1,"Mairie - Rosny-sous-Bois RER",48.871034,2.487015,0,0,OIF:SA:8711370,Europe/Paris,,OIF, +OIF:SP:59:6401806,1,"Jean de Mailly - Hoffmann",48.878243,2.485346,0,0,OIF:SA:59:3446793,Europe/Paris,,OIF, +OIF:SP:59:6401807,1,"Bois-Perrier RER - Rosny 2",48.882409,2.482033,0,0,OIF:SA:8711369,Europe/Paris,,OIF, +OIF:SP:59:6401813,1,"Cités Jardins",48.821319,2.5102,0,0,OIF:SA:59:3619457,Europe/Paris,,OIF, +OIF:SP:59:6401826,1,"Commissariat",48.874701,2.486426,0,0,OIF:SA:59:6401826,Europe/Paris,,OIF, +OIF:SP:59:6401827,1,"Commissariat",48.875177,2.486659,0,0,OIF:SA:59:6401826,Europe/Paris,,OIF, +OIF:SP:59:6401828,1,"Mairie-Rosny sous Bois-RER",48.870693,2.486292,0,0,OIF:SA:8711370,Europe/Paris,,OIF, +OIF:SP:59:6401829,1,"Pascal",48.864409,2.487949,0,0,OIF:SA:59:6401829,Europe/Paris,,OIF, +OIF:SP:59:6401830,1,"Les 10 000 Rosiers",48.861878,2.492042,0,0,OIF:SA:59:3685943,Europe/Paris,,OIF, +OIF:SP:59:6401831,1,"Missak Manouchian",48.863553,2.496487,0,0,OIF:SA:59:6401831,Europe/Paris,,OIF, +OIF:SP:59:6401832,1,"Rue du Rhin",48.866876,2.497887,0,0,OIF:SA:59:6401832,Europe/Paris,,OIF, +OIF:SP:59:6401833,1,"Rue du Rhin",48.867038,2.498133,0,0,OIF:SA:59:6401832,Europe/Paris,,OIF, +OIF:SP:59:6401834,1,"Strasbourg",48.866953,2.500558,0,0,OIF:SA:59:6401834,Europe/Paris,,OIF, +OIF:SP:59:6401835,1,"Strasbourg",48.867079,2.50034,0,0,OIF:SA:59:6401834,Europe/Paris,,OIF, +OIF:SP:59:6401836,1,"Les Deux Communes",48.862777,2.498733,0,0,OIF:SA:59:6401836,Europe/Paris,,OIF, +OIF:SP:59:6401837,1,"Boureau - Guérinière",48.860966,2.501887,0,0,OIF:SA:59:3685945,Europe/Paris,,OIF, +OIF:SP:59:6401838,1,"Boureau - Guérinière",48.860164,2.503615,0,0,OIF:SA:59:3685945,Europe/Paris,,OIF, +OIF:SP:59:6401839,1,"Danielle Casanova",48.857991,2.50181,0,0,OIF:SA:59:6401839,Europe/Paris,,OIF, +OIF:SP:59:6401840,1,"Les Joncs Marins",48.855162,2.500343,0,0,OIF:SA:59:6401840,Europe/Paris,,OIF, +OIF:SP:59:6401841,1,"Les Joncs Marins",48.85384,2.501347,0,0,OIF:SA:59:6401840,Europe/Paris,,OIF, +OIF:SP:59:6401842,1,"Maréchal Lyautey",48.852378,2.49915,0,0,OIF:SA:59:6401842,Europe/Paris,,OIF, +OIF:SP:59:6401843,1,"Maréchal Lyautey",48.851462,2.498112,0,0,OIF:SA:59:6401842,Europe/Paris,,OIF, +OIF:SP:59:6401844,1,"Avron",48.850067,2.499415,0,0,OIF:SA:59:5231653,Europe/Paris,,OIF, +OIF:SP:59:6401854,1,"Lycée Louis Armand",48.847878,2.489739,0,0,OIF:SA:59:6401787,Europe/Paris,,OIF, +OIF:SP:59:6401856,1,"Raymond Poincaré",48.850101,2.494308,0,0,OIF:SA:59:6401856,Europe/Paris,,OIF, +OIF:SP:59:6401857,1,"Rond-Point du Général Leclerc",48.848544,2.496155,0,0,OIF:SA:59:3682873,Europe/Paris,,OIF, +OIF:SP:59:6401859,1,"Victor Basch",48.846563,2.499145,0,0,OIF:SA:59:6401859,Europe/Paris,,OIF, +OIF:SP:59:6401860,1,"Victor Basch",48.846202,2.499879,0,0,OIF:SA:59:6401859,Europe/Paris,,OIF, +OIF:SP:59:6401861,1,"Ledru-Rollin - Général de Gaulle",48.842882,2.50281,0,0,OIF:SA:59:3922305,Europe/Paris,,OIF, +OIF:SP:59:6401862,1,"Ledru-Rollin - Général de Gaulle",48.843942,2.502732,0,0,OIF:SA:59:3922305,Europe/Paris,,OIF, +OIF:SP:59:6401863,1,"Le Parc",48.841637,2.499416,0,0,OIF:SA:59:4798804,Europe/Paris,,OIF, +OIF:SP:59:6401869,1,"Parc du Tremblay",48.827588,2.493927,0,0,OIF:SA:8798466,Europe/Paris,,OIF, +OIF:SP:59:6401871,1,"Général de Gaulle - Stalingrad",48.82435,2.495931,0,0,OIF:SA:59:3619640,Europe/Paris,,OIF, +OIF:SP:59:6401873,1,"Aristide Briand",48.821532,2.498863,0,0,OIF:SA:59:6401777,Europe/Paris,,OIF, +OIF:SP:59:6401875,1,"Gabriel Péri - Henri Barbusse",48.820658,2.500643,0,0,OIF:SA:59:6401776,Europe/Paris,,OIF, +OIF:SP:59:6401877,1,"Irène Joliot Curie",48.8233,2.507294,0,0,OIF:SA:59:6401775,Europe/Paris,,OIF, +OIF:SP:59:6401879,1,"Louis Loucheur",48.823405,2.509227,0,0,OIF:SA:59:6401879,Europe/Paris,,OIF, +OIF:SP:59:6401894,1,"Lamartine - Marie",48.855355,2.503776,0,0,OIF:SA:59:6401894,Europe/Paris,,OIF, +OIF:SP:59:6401895,1,"Danielle Casanova",48.857151,2.504613,0,0,OIF:SA:59:6401895,Europe/Paris,,OIF, +OIF:SP:59:6401896,1,"Georges Clemenceau",48.861861,2.504274,0,0,OIF:SA:59:3685947,Europe/Paris,,OIF, +OIF:SP:59:6401899,1,"Paul Bert",48.86707,2.494087,0,0,OIF:SA:59:6401899,Europe/Paris,,OIF, +OIF:SP:59:6408746,1,"Mairie d'Issy - Métro",48.825266,2.273542,0,0,OIF:SA:59522,Europe/Paris,,OIF, +OIF:SP:59:6408747,1,"A. Gervais - Mairie",48.823388,2.273068,0,0,OIF:SA:59522,Europe/Paris,,OIF, +OIF:SP:59:6408748,1,"E. Zola",48.822093,2.272987,0,0,OIF:SA:59:6408748,Europe/Paris,,OIF, +OIF:SP:59:6408751,1,"Défense",48.819454,2.263014,0,0,OIF:SA:59:6408751,Europe/Paris,,OIF, +OIF:SP:59:6408752,1,"Épinettes",48.817727,2.260771,0,0,OIF:SA:59:5091952,Europe/Paris,,OIF, +OIF:SP:59:6408753,1,"E. Duployé",48.815061,2.265225,0,0,OIF:SA:59:4473372,Europe/Paris,,OIF, +OIF:SP:59:6408754,1,"Général Guichard",48.815951,2.266816,0,0,OIF:SA:59:6408754,Europe/Paris,,OIF, +OIF:SP:59:6408761,1,"Mairie d'Issy - Métro.",48.825365,2.27346,0,0,OIF:SA:59522,Europe/Paris,,OIF, +OIF:SP:59:6408762,1,"Horace Vernet - Mairie",48.824782,2.274931,0,0,OIF:SA:59522,Europe/Paris,,OIF, +OIF:SP:59:6408765,1,"Robespierre",48.821508,2.271205,0,0,OIF:SA:59:5091977,Europe/Paris,,OIF, +OIF:SP:59:6408771,1,"Belvédère",48.818199,2.26861,0,0,OIF:SA:59:6408771,Europe/Paris,,OIF, +OIF:SP:59:6408772,1,"Avenue de la Paix",48.818561,2.271917,0,0,OIF:SA:59:6408772,Europe/Paris,,OIF, +OIF:SP:59:6408773,1,"Parc Henri Barbusse.",48.81969,2.267206,0,0,OIF:SA:59:5091948,Europe/Paris,,OIF, +OIF:SP:59:6408774,1,"Robespierre.",48.82131,2.271069,0,0,OIF:SA:59:5091977,Europe/Paris,,OIF, +OIF:SP:59:6408778,1,"Rue des 2 Sœurs",49.012214,2.521728,0,0,OIF:SA:59:3666716,Europe/Paris,,OIF, +OIF:SP:59:6423444,1,"Porte de Clignancourt",48.897667,2.345098,0,0,OIF:SA:59258,Europe/Paris,,OIF, +OIF:SP:59:6423445,1,"Porte de Clignancourt",48.897703,2.34537,0,0,OIF:SA:59258,Europe/Paris,,OIF, +OIF:SP:59:6423446,1,"Albert Kahn",48.896014,2.345779,0,0,OIF:SA:59622,Europe/Paris,,OIF, +OIF:SP:59:6423447,1,"Albert Kahn",48.896355,2.346542,0,0,OIF:SA:59622,Europe/Paris,,OIF, +OIF:SP:59:6423448,1,"Simplon",48.894225,2.347291,0,0,OIF:SA:59622,Europe/Paris,,OIF, +OIF:SP:59:6423449,1,"Simplon",48.894809,2.347169,0,0,OIF:SA:59622,Europe/Paris,,OIF, +OIF:SP:59:6423450,1,"Marcadet - Poissonniers",48.891187,2.349458,0,0,OIF:SA:59252,Europe/Paris,,OIF, +OIF:SP:59:6423451,1,"Marcadet - Poissonniers",48.891394,2.349785,0,0,OIF:SA:59252,Europe/Paris,,OIF, +OIF:SP:59:6423452,1,"Château Rouge",48.887835,2.349389,0,0,OIF:SA:59629,Europe/Paris,,OIF, +OIF:SP:59:6423453,1,"Château Rouge",48.887745,2.34973,0,0,OIF:SA:59629,Europe/Paris,,OIF, +OIF:SP:59:6423454,1,"Barbes - Rochechouart",48.884096,2.349306,0,0,OIF:SA:59632,Europe/Paris,,OIF, +OIF:SP:59:6423455,1,"Barbes - Rochechouart",48.884267,2.349647,0,0,OIF:SA:59632,Europe/Paris,,OIF, +OIF:SP:59:6423458,1,"La Fayette - Magenta - Gare du Nord",48.878919,2.353488,0,0,OIF:SA:8727100,Europe/Paris,,OIF, +OIF:SP:59:6423463,1,"Jacques Bonsergent",48.871117,2.360502,0,0,OIF:SA:59340,Europe/Paris,,OIF, +OIF:SP:59:6423464,1,"Jacques Bonsergent",48.870919,2.36102,0,0,OIF:SA:59340,Europe/Paris,,OIF, +OIF:SP:59:6423468,1,"République - Voltaire",48.866362,2.365513,0,0,OIF:SA:59:6423468,Europe/Paris,,OIF, +OIF:SP:59:6423469,1,"République - Voltaire",48.866433,2.365867,0,0,OIF:SA:59:6423468,Europe/Paris,,OIF, +OIF:SP:59:6423470,1,"Jean-Pierre Timbaud",48.864968,2.367869,0,0,OIF:SA:59338,Europe/Paris,,OIF, +OIF:SP:59:6423471,1,"Jean-Pierre Timbaud",48.865354,2.367692,0,0,OIF:SA:59338,Europe/Paris,,OIF, +OIF:SP:59:6423472,1,"Oberkampf - Richard Lenoir",48.863502,2.370347,0,0,OIF:SA:59:3687442,Europe/Paris,,OIF, +OIF:SP:59:6423473,1,"Oberkampf - Richard Lenoir",48.863637,2.370552,0,0,OIF:SA:59:3687442,Europe/Paris,,OIF, +OIF:SP:59:6423474,1,"Saint-Ambroise",48.86111,2.374351,0,0,OIF:SA:59488,Europe/Paris,,OIF, +OIF:SP:59:6423475,1,"Saint-Ambroise",48.861299,2.374487,0,0,OIF:SA:59488,Europe/Paris,,OIF, +OIF:SP:59:6423476,1,"Chemin Vert",48.859852,2.376461,0,0,OIF:SA:59473,Europe/Paris,,OIF, +OIF:SP:59:6423477,1,"Chemin Vert",48.859716,2.377101,0,0,OIF:SA:59473,Europe/Paris,,OIF, +OIF:SP:59:6423478,1,"Voltaire - Léon Blum",48.857918,2.379756,0,0,OIF:SA:59616,Europe/Paris,,OIF, +OIF:SP:59:6423479,1,"Voltaire - Léon Blum",48.858062,2.379974,0,0,OIF:SA:59616,Europe/Paris,,OIF, +OIF:SP:59:6423480,1,"Gymnase Japy",48.856236,2.382533,0,0,OIF:SA:59:3747931,Europe/Paris,,OIF, +OIF:SP:59:6423481,1,"Gymnase Japy",48.856344,2.382792,0,0,OIF:SA:59:3747931,Europe/Paris,,OIF, +OIF:SP:59:6423482,1,"Charonne",48.854222,2.385881,0,0,OIF:SA:59499,Europe/Paris,,OIF, +OIF:SP:59:6423483,1,"Charonne",48.854348,2.386127,0,0,OIF:SA:59499,Europe/Paris,,OIF, +OIF:SP:59:6423484,1,"Rue des Boulets",48.85209,2.389461,0,0,OIF:SA:59486,Europe/Paris,,OIF, +OIF:SP:59:6423485,1,"Rue des Boulets",48.852279,2.389666,0,0,OIF:SA:59486,Europe/Paris,,OIF, +OIF:SP:59:6423486,1,"Nation - Voltaire",48.848906,2.39481,0,0,OIF:SA:8775810,Europe/Paris,,OIF, +OIF:SP:59:6423487,1,"Nation - Voltaire",48.849041,2.395028,0,0,OIF:SA:8775810,Europe/Paris,,OIF, +OIF:SP:59:6423490,1,"Picpus",48.844804,2.403003,0,0,OIF:SA:59453,Europe/Paris,,OIF, +OIF:SP:59:6423491,1,"Picpus",48.845478,2.401982,0,0,OIF:SA:59453,Europe/Paris,,OIF, +OIF:SP:59:6423494,1,"Porte de Saint-Mandé",48.844125,2.410832,0,0,OIF:SA:59228,Europe/Paris,,OIF, +OIF:SP:59:6423495,1,"Porte de Saint-Mandé",48.844305,2.410982,0,0,OIF:SA:59228,Europe/Paris,,OIF, +OIF:SP:59:6423507,1,"Château de Vincennes",48.84403,2.440911,0,0,OIF:SA:59595,Europe/Paris,,OIF, +OIF:SP:59:6423511,1,"Mont-Cenis",48.897865,2.346788,0,0,OIF:SA:59:6423511,Europe/Paris,,OIF, +OIF:SP:59:6423887,1,"Gare du Stade",48.930411,2.261042,0,0,OIF:SA:8738109,Europe/Paris,,OIF, +OIF:SP:59:6423890,1,"Pointe MÔLE1",48.941583,2.264327,0,0,OIF:SA:59:6423890,Europe/Paris,,OIF, +OIF:SP:59:6423891,1,"Môle 1-2",48.937042,2.27436,0,0,OIF:SA:59:6423891,Europe/Paris,,OIF, +OIF:SP:59:6423892,1,"Centre de Vie - Charbonnier",48.937654,2.27736,0,0,OIF:SA:59:6423892,Europe/Paris,,OIF, +OIF:SP:59:6423893,1,"Entrée Môle 2-3",48.939588,2.280141,0,0,OIF:SA:59:6423893,Europe/Paris,,OIF, +OIF:SP:59:6423898,1,"Pointe Môle Central",48.943687,2.281637,0,0,OIF:SA:59:6423898,Europe/Paris,,OIF, +OIF:SP:59:6423900,1,"Bassin N0 2.",48.9385,2.280033,0,0,OIF:SA:59:4016065,Europe/Paris,,OIF, +OIF:SP:59:6423901,1,"Quai des Entrepreneurs",48.936347,2.269395,0,0,OIF:SA:59:6423901,Europe/Paris,,OIF, +OIF:SP:59:6423902,1,"Direction du Port.",48.936184,2.266926,0,0,OIF:SA:59:6423902,Europe/Paris,,OIF, +OIF:SP:59:6423903,1,"Gare du Stade.",48.930455,2.260905,0,0,OIF:SA:8738109,Europe/Paris,,OIF, +OIF:SP:59:6423913,1,"Cœur Bassin N0 6",48.949271,2.289709,0,0,OIF:SA:59:6423913,Europe/Paris,,OIF, +OIF:SP:59:6423914,1,"Pointe Bassin N0 6",48.948477,2.283024,0,0,OIF:SA:59:6423914,Europe/Paris,,OIF, +OIF:SP:59:6423915,1,"Bassin N0 6",48.949228,2.295126,0,0,OIF:SA:59:6423915,Europe/Paris,,OIF, +OIF:SP:59:6423916,1,"Bassin N0 5.",48.944213,2.295061,0,0,OIF:SA:59:5121493,Europe/Paris,,OIF, +OIF:SP:59:6423917,1,"Darse N0 5.",48.941427,2.294163,0,0,OIF:SA:59:4016060,Europe/Paris,,OIF, +OIF:SP:59:6423918,1,"Cœur Route de la Seine",48.946068,2.282617,0,0,OIF:SA:59:6423918,Europe/Paris,,OIF, +OIF:SP:59:6423919,1,"Impasse de la Seine",48.946478,2.273994,0,0,OIF:SA:59:6423919,Europe/Paris,,OIF, +OIF:SP:59:6423920,1,"Môle Central.",48.93968,2.286089,0,0,OIF:SA:59:4016062,Europe/Paris,,OIF, +OIF:SP:59:6423922,1,"Centre de Vie.",48.937169,2.276897,0,0,OIF:SA:59:6423922,Europe/Paris,,OIF, +OIF:SP:59:6423923,1,"Mercières.",48.935773,2.272179,0,0,OIF:SA:59:6423923,Europe/Paris,,OIF, +OIF:SP:59:6423926,1,"Asnières - Gennevilliers - les Courtilles",48.930846,2.284365,0,0,OIF:SA:59582,Europe/Paris,,OIF, +OIF:SP:59:6423930,1,"Cœur Môle 1",48.93833,2.263868,0,0,OIF:SA:59:6423930,Europe/Paris,,OIF, +OIF:SP:59:6423935,1,"Pointe Môle 2-3",48.941483,2.277274,0,0,OIF:SA:59:6423935,Europe/Paris,,OIF, +OIF:SP:59:6423936,1,"Cœur Môle 2-3",48.943431,2.273301,0,0,OIF:SA:59:6423936,Europe/Paris,,OIF, +OIF:SP:59:6423938,1,"Cœur Môle Central",48.941118,2.286183,0,0,OIF:SA:59:6423938,Europe/Paris,,OIF, +OIF:SP:59:6423942,1,"Port de Gennevilliers - Centre de Vie.",48.937448,2.278274,0,0,OIF:SA:59:6423942,Europe/Paris,,OIF, +OIF:SP:59:6446061,1,"Porte d'Italie - Métro",48.818315,2.359893,0,0,OIF:SA:59666,Europe/Paris,,OIF, +OIF:SP:59:6446062,1,"Damesme",48.820428,2.356546,0,0,OIF:SA:59:4124834,Europe/Paris,,OIF, +OIF:SP:59:6446063,1,"Poterne des Peupliers",48.820159,2.351414,0,0,OIF:SA:59064,Europe/Paris,,OIF, +OIF:SP:59:6446064,1,"Verdun - Victor Hugo",48.816654,2.352856,0,0,OIF:SA:59:3970602,Europe/Paris,,OIF, +OIF:SP:59:6446065,1,"Mairie de Gentilly",48.815674,2.350202,0,0,OIF:SA:59:3781631,Europe/Paris,,OIF, +OIF:SP:59:6446067,1,"Bout du Rang",48.811666,2.346214,0,0,OIF:SA:59:6446067,Europe/Paris,,OIF, +OIF:SP:59:6446068,1,"Fraysse - Val de Bièvre",48.810076,2.343601,0,0,OIF:SA:59:6446068,Europe/Paris,,OIF, +OIF:SP:59:6446069,1,"Paul Doumer",48.805816,2.338702,0,0,OIF:SA:59:6446069,Europe/Paris,,OIF, +OIF:SP:59:6446070,1,"Louis Frebault",48.804557,2.336062,0,0,OIF:SA:59:6446070,Europe/Paris,,OIF, +OIF:SP:59:6446088,1,"Paul Doumer",48.805735,2.338865,0,0,OIF:SA:59:6446069,Europe/Paris,,OIF, +OIF:SP:59:6446090,1,"Louis Frebault",48.804413,2.336266,0,0,OIF:SA:59:6446070,Europe/Paris,,OIF, +OIF:SP:59:6446092,1,"Cité Jardins",48.801816,2.333735,0,0,OIF:SA:59:4770149,Europe/Paris,,OIF, +OIF:SP:59:6446101,1,"Rue des Jardins",48.780928,2.334729,0,0,OIF:SA:59:6446101,Europe/Paris,,OIF, +OIF:SP:59:6446102,1,"Rue des Jardins",48.780299,2.335287,0,0,OIF:SA:59:6446101,Europe/Paris,,OIF, +OIF:SP:59:6446107,1,"Leclerc - Chalais",48.774196,2.331684,0,0,OIF:SA:59:6446107,Europe/Paris,,OIF, +OIF:SP:59:6446108,1,"Leclerc - Chalais",48.774088,2.33133,0,0,OIF:SA:59:6446107,Europe/Paris,,OIF, +OIF:SP:59:6446109,1,"Bergère",48.771059,2.333846,0,0,OIF:SA:59:6446109,Europe/Paris,,OIF, +OIF:SP:59:6446110,1,"Charles Perrault",48.76705,2.330828,0,0,OIF:SA:59:6446110,Europe/Paris,,OIF, +OIF:SP:59:6446111,1,"Charcot",48.76501,2.329536,0,0,OIF:SA:59:6446111,Europe/Paris,,OIF, +OIF:SP:59:6446112,1,"Charcot - Zola",48.7611,2.32626,0,0,OIF:SA:59:3730374,Europe/Paris,,OIF, +OIF:SP:59:6446113,1,"Charcot - Zola",48.761064,2.326424,0,0,OIF:SA:59:3730374,Europe/Paris,,OIF, +OIF:SP:59:6446114,1,"Émile Zola",48.759338,2.32482,0,0,OIF:SA:59:4423358,Europe/Paris,,OIF, +OIF:SP:59:6446115,1,"Émile Zola",48.758439,2.324045,0,0,OIF:SA:59:4423358,Europe/Paris,,OIF, +OIF:SP:59:6446116,1,"Mairie de Fresnes",48.755976,2.322034,0,0,OIF:SA:59:4423359,Europe/Paris,,OIF, +OIF:SP:59:6446117,1,"Mairie de Fresnes",48.755751,2.321816,0,0,OIF:SA:59:4423359,Europe/Paris,,OIF, +OIF:SP:59:6446118,1,"Les Anémones",48.754915,2.317412,0,0,OIF:SA:59:6446118,Europe/Paris,,OIF, +OIF:SP:59:6446119,1,"Les Anémones",48.754951,2.318486,0,0,OIF:SA:59:6446118,Europe/Paris,,OIF, +OIF:SP:59:6446120,1,"Pasteur-Jaures",48.754366,2.312995,0,0,OIF:SA:59:6446120,Europe/Paris,,OIF, +OIF:SP:59:6446121,1,"Pasteur-Jaures",48.753934,2.313172,0,0,OIF:SA:59:6446120,Europe/Paris,,OIF, +OIF:SP:59:6446122,1,"La Peupleraie",48.756892,2.315549,0,0,OIF:SA:59:6446122,Europe/Paris,,OIF, +OIF:SP:59:6446123,1,"La Peupleraie",48.756964,2.315318,0,0,OIF:SA:59:6446122,Europe/Paris,,OIF, +OIF:SP:59:6446124,1,"Pasteur",48.759697,2.318634,0,0,OIF:SA:59:4377727,Europe/Paris,,OIF, +OIF:SP:59:6446125,1,"Pasteur",48.759724,2.318349,0,0,OIF:SA:59:4377727,Europe/Paris,,OIF, +OIF:SP:59:6446126,1,"Poste Annexe",48.764569,2.327674,0,0,OIF:SA:59:4377998,Europe/Paris,,OIF, +OIF:SP:59:6446127,1,"Chalais - Thérèse",48.766331,2.327973,0,0,OIF:SA:59:6446127,Europe/Paris,,OIF, +OIF:SP:59:6446128,1,"Blondeaux - Écoles",48.77069,2.329019,0,0,OIF:SA:59:6446128,Europe/Paris,,OIF, +OIF:SP:59:6448956,1,"Les Courtilles - Métro",48.930818,2.283874,0,0,OIF:SA:59582,Europe/Paris,,OIF, +OIF:SP:59:6449026,1,"Picasso",48.899362,2.280553,0,0,OIF:SA:59:6449026,Europe/Paris,,OIF, +OIF:SP:59:6449027,1,"Picasso",48.899668,2.280171,0,0,OIF:SA:59:6449026,Europe/Paris,,OIF, +OIF:SP:59:6449028,1,"Rivay - Quai Michelet",48.900586,2.284341,0,0,OIF:SA:59:6449028,Europe/Paris,,OIF, +OIF:SP:59:6449029,1,"Quai de Clichy",48.902682,2.288156,0,0,OIF:SA:59:4677630,Europe/Paris,,OIF, +OIF:SP:59:6449030,1,"Quai de Clichy",48.902583,2.287434,0,0,OIF:SA:59:4677630,Europe/Paris,,OIF, +OIF:SP:59:6449033,1,"Gallieni",48.909745,2.286404,0,0,OIF:SA:59:4015814,Europe/Paris,,OIF, +OIF:SP:59:6449034,1,"Gallieni",48.909844,2.286077,0,0,OIF:SA:59:4015814,Europe/Paris,,OIF, +OIF:SP:59:6449045,1,"Abbé Glatz",48.925247,2.285257,0,0,OIF:SA:59:6449045,Europe/Paris,,OIF, +OIF:SP:59:6449046,1,"Patinoire",48.928374,2.28475,0,0,OIF:SA:59:6449046,Europe/Paris,,OIF, +OIF:SP:59:6449062,1,"Ormeteau",48.943174,2.305226,0,0,OIF:SA:59:6449062,Europe/Paris,,OIF, +OIF:SP:59:6449063,1,"Ormeteau",48.943408,2.305554,0,0,OIF:SA:59:6449062,Europe/Paris,,OIF, +OIF:SP:59:6449064,1,"ZAC des Louvresses",48.9409,2.305855,0,0,OIF:SA:59:6449064,Europe/Paris,,OIF, +OIF:SP:59:6449065,1,"ZAC des Louvresses",48.94108,2.305773,0,0,OIF:SA:59:6449064,Europe/Paris,,OIF, +OIF:SP:59:6449067,1,"Patinoire",48.927988,2.284463,0,0,OIF:SA:59:6449067,Europe/Paris,,OIF, +OIF:SP:59:6449068,1,"Abbé Glatz",48.924977,2.285067,0,0,OIF:SA:59:6449068,Europe/Paris,,OIF, +OIF:SP:59:6456027,1,"La Défense - Métro-RER-Tramway",48.89017,2.240984,0,0,OIF:SA:8738221,Europe/Paris,,OIF, +OIF:SP:59:6456030,1,"Nanterre - Université RER",48.901094,2.215813,0,0,OIF:SA:8738631,Europe/Paris,,OIF, +OIF:SP:59:6456031,1,"François Harriot",48.901213,2.218008,0,0,OIF:SA:59:6456031,Europe/Paris,,OIF, +OIF:SP:59:6456033,1,"Défense Ouest",48.908557,2.230029,0,0,OIF:SA:59:6456033,Europe/Paris,,OIF, +OIF:SP:59:6456035,1,"Victor Basch",48.914704,2.22988,0,0,OIF:SA:59716,Europe/Paris,,OIF, +OIF:SP:59:6456037,1,"Écoles du Petit Colombes",48.917542,2.237402,0,0,OIF:SA:59:4023630,Europe/Paris,,OIF, +OIF:SP:59:6456038,1,"Égalité",48.920279,2.243547,0,0,OIF:SA:59:4023632,Europe/Paris,,OIF, +OIF:SP:59:6456039,1,"Cimetière de Colombes",48.922349,2.24773,0,0,OIF:SA:59:4023634,Europe/Paris,,OIF, +OIF:SP:59:6456040,1,"Église de Colombes",48.922936,2.250906,0,0,OIF:SA:59:4023300,Europe/Paris,,OIF, +OIF:SP:59:6456043,1,"Valmy - Gambetta - Stade",48.928105,2.25413,0,0,OIF:SA:59:6456043,Europe/Paris,,OIF, +OIF:SP:59:6456044,1,"Boulevard d'Achères",48.932429,2.255528,0,0,OIF:SA:59:6456044,Europe/Paris,,OIF, +OIF:SP:59:6456045,1,"Petit Gennevilliers",48.936313,2.257705,0,0,OIF:SA:59:4015751,Europe/Paris,,OIF, +OIF:SP:59:6456048,1,"Mercières",48.93563,2.27267,0,0,OIF:SA:59:6423923,Europe/Paris,,OIF, +OIF:SP:59:6456049,1,"Centre de Vie",48.937214,2.277224,0,0,OIF:SA:59:6423922,Europe/Paris,,OIF, +OIF:SP:59:6456050,1,"Port de Gennevilliers - Centre de Vie",48.937529,2.278233,0,0,OIF:SA:59:6423942,Europe/Paris,,OIF, +OIF:SP:59:6456053,1,"Port de Gennevilliers - Centre de Vie",48.937628,2.278738,0,0,OIF:SA:59:6423942,Europe/Paris,,OIF, +OIF:SP:59:6456054,1,"Centre de Vie",48.937178,2.276883,0,0,OIF:SA:59:6423922,Europe/Paris,,OIF, +OIF:SP:59:6456055,1,"Mercières",48.935737,2.272097,0,0,OIF:SA:59:6423923,Europe/Paris,,OIF, +OIF:SP:59:6456056,1,"Direction du Port",48.93613,2.267458,0,0,OIF:SA:59:6423902,Europe/Paris,,OIF, +OIF:SP:59:6456058,1,"Petit Gennevilliers",48.936285,2.256968,0,0,OIF:SA:59:4015751,Europe/Paris,,OIF, +OIF:SP:59:6456059,1,"Boulevard d'Achères",48.932105,2.255174,0,0,OIF:SA:59:6456044,Europe/Paris,,OIF, +OIF:SP:59:6456060,1,"Valmy - Gambetta - Stade",48.928474,2.25402,0,0,OIF:SA:59:6456043,Europe/Paris,,OIF, +OIF:SP:59:6456061,1,"Fraternité",48.926136,2.252838,0,0,OIF:SA:59:5020459,Europe/Paris,,OIF, +OIF:SP:59:6456069,1,"Défense Ouest",48.908683,2.229811,0,0,OIF:SA:59:6456069,Europe/Paris,,OIF, +OIF:SP:59:6456071,1,"Université Paris 10",48.903721,2.218711,0,0,OIF:SA:59:4023615,Europe/Paris,,OIF, +OIF:SP:59:6456072,1,"François Hanriot",48.901437,2.218034,0,0,OIF:SA:59:6456031,Europe/Paris,,OIF, +OIF:SP:59:6456075,1,"Nanterre - Préfecture RER",48.896695,2.220949,0,0,OIF:SA:8775802,Europe/Paris,,OIF, +OIF:SP:59:6456077,1,"Les Courtilles",48.930746,2.28397,0,0,OIF:SA:59582,Europe/Paris,,OIF, +OIF:SP:59:6456078,1,"Abbé Lemire",48.929424,2.281079,0,0,OIF:SA:59:5009407,Europe/Paris,,OIF, +OIF:SP:59:6456079,1,"Abbé Lemire",48.92928,2.281325,0,0,OIF:SA:59:5009407,Europe/Paris,,OIF, +OIF:SP:59:6456081,1,"Freycinet",48.928263,2.278012,0,0,OIF:SA:59:4023649,Europe/Paris,,OIF, +OIF:SP:59:6456095,1,"Les Renouillers",48.925431,2.247384,0,0,OIF:SA:59:6456095,Europe/Paris,,OIF, +OIF:SP:59:6456096,1,"Les Renouillers",48.925234,2.247166,0,0,OIF:SA:59:6456095,Europe/Paris,,OIF, +OIF:SP:59:6456097,1,"Audra",48.9273,2.24648,0,0,OIF:SA:59:4015921,Europe/Paris,,OIF, +OIF:SP:59:6456098,1,"Audra",48.927022,2.246931,0,0,OIF:SA:59:4015921,Europe/Paris,,OIF, +OIF:SP:59:6456099,1,"Tour d'Auvergne",48.926498,2.243795,0,0,OIF:SA:59:6456099,Europe/Paris,,OIF, +OIF:SP:59:6456100,1,"Tour d'Auvergne",48.926381,2.244054,0,0,OIF:SA:59:6456099,Europe/Paris,,OIF, +OIF:SP:59:6456101,1,"Europe",48.924913,2.239379,0,0,OIF:SA:59:4015924,Europe/Paris,,OIF, +OIF:SP:59:6456102,1,"Europe",48.924706,2.239406,0,0,OIF:SA:59:4015924,Europe/Paris,,OIF, +OIF:SP:59:6456103,1,"Hôpital Louis Mourier",48.923427,2.235904,0,0,OIF:SA:59:5020488,Europe/Paris,,OIF, +OIF:SP:59:6456104,1,"Hôpital Louis Mourier",48.923374,2.236381,0,0,OIF:SA:59:5020488,Europe/Paris,,OIF, +OIF:SP:59:6456105,1,"Rue de Seine",48.921356,2.230576,0,0,OIF:SA:59:6456105,Europe/Paris,,OIF, +OIF:SP:59:6456106,1,"Rue de Seine",48.921275,2.230903,0,0,OIF:SA:59:6456105,Europe/Paris,,OIF, +OIF:SP:59:6456107,1,"Zone Industrielle",48.919708,2.226979,0,0,OIF:SA:59:6456107,Europe/Paris,,OIF, +OIF:SP:59:6456108,1,"Zone Industrielle",48.919573,2.227211,0,0,OIF:SA:59:6456107,Europe/Paris,,OIF, +OIF:SP:59:6456109,1,"Parc Pierre Lagravère",48.918538,2.225059,0,0,OIF:SA:59718,Europe/Paris,,OIF, +OIF:SP:59:6456110,1,"Parc Pierre Lagravère",48.917343,2.225484,0,0,OIF:SA:59718,Europe/Paris,,OIF, +OIF:SP:59:6456124,1,"Jean Baillet",48.902675,2.206499,0,0,OIF:SA:59:4023613,Europe/Paris,,OIF, +OIF:SP:59:6456126,1,"Nanterre - Université RER",48.900722,2.212597,0,0,OIF:SA:8738631,Europe/Paris,,OIF, +OIF:SP:59:6456127,1,"Nanterre - Université RER",48.900812,2.212719,0,0,OIF:SA:8738631,Europe/Paris,,OIF, +OIF:SP:59:6456128,1,"Soufflot",48.898476,2.213611,0,0,OIF:SA:59:4024365,Europe/Paris,,OIF, +OIF:SP:59:6456129,1,"Soufflot",48.898126,2.214075,0,0,OIF:SA:59:4024365,Europe/Paris,,OIF, +OIF:SP:59:6456131,1,"Préfecture des Hauts-de-Seine",48.896527,2.214965,0,0,OIF:SA:59:6187668,Europe/Paris,,OIF, +OIF:SP:59:6456134,1,"Palais des Sports",48.892576,2.2097,0,0,OIF:SA:59:6456134,Europe/Paris,,OIF, +OIF:SP:59:6456135,1,"Palais des Sports",48.892766,2.210572,0,0,OIF:SA:59:6456134,Europe/Paris,,OIF, +OIF:SP:59:6456136,1,"Mairie de Nanterre",48.891091,2.2071,0,0,OIF:SA:59:6456136,Europe/Paris,,OIF, +OIF:SP:59:6456137,1,"Mairie de Nanterre",48.890515,2.206625,0,0,OIF:SA:59:6456136,Europe/Paris,,OIF, +OIF:SP:59:6456138,1,"Sadi Carnot - Joliot Curie",48.889659,2.20461,0,0,OIF:SA:59:4024318,Europe/Paris,,OIF, +OIF:SP:59:6456139,1,"Sadi Carnot - Joliot Curie",48.889804,2.205372,0,0,OIF:SA:59:4024318,Europe/Paris,,OIF, +OIF:SP:59:6456140,1,"Place de la Boule - Joliot Curie",48.888029,2.201725,0,0,OIF:SA:59:5419727,Europe/Paris,,OIF, +OIF:SP:59:6456141,1,"Place de la Boule - Joliot Curie",48.887841,2.201957,0,0,OIF:SA:59:5419727,Europe/Paris,,OIF, +OIF:SP:59:6456142,1,"Place de la Boule",48.887461,2.20035,0,0,OIF:SA:17:1590,Europe/Paris,,OIF, +OIF:SP:59:6456144,1,"Quatre Routes",48.927363,2.275135,0,0,OIF:SA:59:4023647,Europe/Paris,,OIF, +OIF:SP:59:6563549,1,"Choisy Sud",48.754767,2.411942,0,0,OIF:SA:59:6563549,Europe/Paris,,OIF, +OIF:SP:59:6563550,1,"Charles Jules Vaillant",48.758505,2.41332,0,0,OIF:SA:59:5673012,Europe/Paris,,OIF, +OIF:SP:59:6563551,1,"Quartier du Port",48.761911,2.413665,0,0,OIF:SA:8754528,Europe/Paris,,OIF, +OIF:SP:59:6563552,1,"Choisy-le-Roi RER",48.764546,2.412119,0,0,OIF:SA:8754528,Europe/Paris,,OIF, +OIF:SP:59:6563553,1,"Général Leclerc",48.762005,2.407248,0,0,OIF:SA:4:47,Europe/Paris,,OIF, +OIF:SP:59:6563555,1,"Panhard - Hugo",48.763862,2.396945,0,0,OIF:SA:59:4378375,Europe/Paris,,OIF, +OIF:SP:59:6563556,1,"Mairie de Thiais",48.764152,2.393533,0,0,OIF:SA:59:4378374,Europe/Paris,,OIF, +OIF:SP:59:6563557,1,"Perreux",48.766149,2.38985,0,0,OIF:SA:59:4378373,Europe/Paris,,OIF, +OIF:SP:59:6563558,1,"Louis Duperrey",48.766546,2.386642,0,0,OIF:SA:59:4378372,Europe/Paris,,OIF, +OIF:SP:59:6563559,1,"Piscine",48.769388,2.382225,0,0,OIF:SA:59:4378371,Europe/Paris,,OIF, +OIF:SP:59:6563560,1,"Cité du Moulin Vert",48.772832,2.376762,0,0,OIF:SA:59815,Europe/Paris,,OIF, +OIF:SP:59:6563561,1,"Camille Risch",48.775107,2.374044,0,0,OIF:SA:59:4378369,Europe/Paris,,OIF, +OIF:SP:59:6563562,1,"Paul Armangot",48.777695,2.376711,0,0,OIF:SA:59:4378368,Europe/Paris,,OIF, +OIF:SP:59:6563563,1,"Julian Grimau - Voie Verte",48.780419,2.373613,0,0,OIF:SA:59:4378367,Europe/Paris,,OIF, +OIF:SP:59:6563564,1,"Edouard Tremblay",48.78219,2.372145,0,0,OIF:SA:59:4378366,Europe/Paris,,OIF, +OIF:SP:59:6563565,1,"Lurçat - Luisette",48.784186,2.371453,0,0,OIF:SA:59:4378365,Europe/Paris,,OIF, +OIF:SP:59:6563566,1,"Division Leclerc",48.784672,2.367386,0,0,OIF:SA:59:6563566,Europe/Paris,,OIF, +OIF:SP:59:6563567,1,"Villejuif - Louis Aragon",48.787575,2.367021,0,0,OIF:SA:59809,Europe/Paris,,OIF, +OIF:SP:59:6563570,1,"Paul Vaillant-Couturier - Hôpital Paul Brousse - Métro",48.796275,2.368536,0,0,OIF:SA:59579,Europe/Paris,,OIF, +OIF:SP:59:6575219,1,"Porte des Lilas - Métro",48.87659,2.407499,0,0,OIF:SA:59327,Europe/Paris,,OIF, +OIF:SP:59:6575221,1,"Les Bruyères",48.878412,2.411153,0,0,OIF:SA:59:4009042,Europe/Paris,,OIF, +OIF:SP:59:6575222,1,"Les Bruyères",48.878914,2.412421,0,0,OIF:SA:59:4009042,Europe/Paris,,OIF, +OIF:SP:59:6575227,1,"Joseph Dépinay",48.881873,2.422645,0,0,OIF:SA:59:6575227,Europe/Paris,,OIF, +OIF:SP:59:6575234,1,"Hélène",48.888419,2.450867,0,0,OIF:SA:59:6575234,Europe/Paris,,OIF, +OIF:SP:59:6575237,1,"Jeanne d'Arc",48.889721,2.452206,0,0,OIF:SA:59:3446780,Europe/Paris,,OIF, +OIF:SP:59:6575238,1,"Salengro - Auffret",48.88853,2.457423,0,0,OIF:SA:59:6575238,Europe/Paris,,OIF, +OIF:SP:59:6575241,1,"Noisy-le-Sec RER",48.89603,2.460984,0,0,OIF:SA:8711321,Europe/Paris,,OIF, +OIF:SP:59:6575242,1,"Noisy-le-Sec RER",48.89551,2.459538,0,0,OIF:SA:8711321,Europe/Paris,,OIF, +OIF:SP:59:6575243,1,"Denis Papin",48.898804,2.463922,0,0,OIF:SA:59:6575243,Europe/Paris,,OIF, +OIF:SP:59:6575244,1,"Denis Papin",48.898885,2.463554,0,0,OIF:SA:59:6575243,Europe/Paris,,OIF, +OIF:SP:59:6575245,1,"Petit Noisy",48.899836,2.465069,0,0,OIF:SA:59002,Europe/Paris,,OIF, +OIF:SP:59:6575246,1,"Petit Noisy",48.9006,2.465426,0,0,OIF:SA:59002,Europe/Paris,,OIF, +OIF:SP:59:6575247,1,"Nouvelle Piscine",48.902206,2.467679,0,0,OIF:SA:59:6575247,Europe/Paris,,OIF, +OIF:SP:59:6575248,1,"Nouvelle Piscine",48.902386,2.467379,0,0,OIF:SA:59:6575247,Europe/Paris,,OIF, +OIF:SP:59:6575249,1,"Avenue de Rosny",48.903927,2.471514,0,0,OIF:SA:55:132,Europe/Paris,,OIF, +OIF:SP:59:6575250,1,"Avenue de Rosny",48.904422,2.471379,0,0,OIF:SA:55:132,Europe/Paris,,OIF, +OIF:SP:59:6575251,1,"Lycée Vionnet - Renoir",48.90406,2.473791,0,0,OIF:SA:59:6575251,Europe/Paris,,OIF, +OIF:SP:59:6575252,1,"Lycée Vionnet - Renoir",48.904266,2.473873,0,0,OIF:SA:59:6575251,Europe/Paris,,OIF, +OIF:SP:59:6575255,1,"Cimetière - Hôtel de Ville",48.901936,2.483682,0,0,OIF:SA:59:6575255,Europe/Paris,,OIF, +OIF:SP:59:6575256,1,"Cimetière - Hôtel de Ville",48.902242,2.48307,0,0,OIF:SA:59:6575255,Europe/Paris,,OIF, +OIF:SP:59:6575257,1,"Pierre Brossolette",48.901499,2.488084,0,0,OIF:SA:59:6575257,Europe/Paris,,OIF, +OIF:SP:59:6575258,1,"Pierre Brossolette",48.901825,2.486558,0,0,OIF:SA:59:6575257,Europe/Paris,,OIF, +OIF:SP:59:6575259,1,"Professeur Vaillant",48.900434,2.491326,0,0,OIF:SA:59:3682348,Europe/Paris,,OIF, +OIF:SP:59:6575260,1,"Professeur Vaillant",48.900713,2.491067,0,0,OIF:SA:59:3682348,Europe/Paris,,OIF, +OIF:SP:59:6575261,1,"Marcel Sembat",48.899638,2.495849,0,0,OIF:SA:59:6575261,Europe/Paris,,OIF, +OIF:SP:59:6575262,1,"Marcel Sembat",48.899754,2.496394,0,0,OIF:SA:59:6575261,Europe/Paris,,OIF, +OIF:SP:59:6575263,1,"Albert Thomas",48.899334,2.501055,0,0,OIF:SA:59:6575263,Europe/Paris,,OIF, +OIF:SP:59:6575264,1,"Albert Thomas",48.899631,2.500565,0,0,OIF:SA:59:6575263,Europe/Paris,,OIF, +OIF:SP:59:6575265,1,"Brackley",48.899885,2.505419,0,0,OIF:SA:59:6575265,Europe/Paris,,OIF, +OIF:SP:59:6575266,1,"Mairie des Pavillons-sous-Bois",48.902263,2.507826,0,0,OIF:SA:8711385,Europe/Paris,,OIF, +OIF:SP:59:6575267,1,"Mairie des Pavillons-sous-Bois",48.902604,2.508168,0,0,OIF:SA:8711385,Europe/Paris,,OIF, +OIF:SP:59:6575269,1,"Virginie",48.90264,2.502143,0,0,OIF:SA:59:6575269,Europe/Paris,,OIF, +OIF:SP:59:6575274,1,"Carnot",48.884618,2.44057,0,0,OIF:SA:59:6575274,Europe/Paris,,OIF, +OIF:SP:59:6578266,1,"Cours des Lacs",48.841798,2.631291,0,0,OIF:SA:8798717,Europe/Paris,,OIF, +OIF:SP:59:6578276,1,"Lognes RER.",48.838862,2.633466,0,0,OIF:SA:8775836,Europe/Paris,,OIF, +OIF:SP:59:6578281,1,"Rue de la Ferme",48.8363,2.630293,0,0,OIF:SA:59:6578281,Europe/Paris,,OIF, +OIF:SP:59:6578288,1,"Pelloutier",48.826594,2.63341,0,0,OIF:SA:59:6578288,Europe/Paris,,OIF, +OIF:SP:59:6578289,1,"Pelloutier",48.826684,2.633519,0,0,OIF:SA:59:6578288,Europe/Paris,,OIF, +OIF:SP:59:6578303,1,"Tour de Controle",48.824491,2.622359,0,0,OIF:SA:59:6578303,Europe/Paris,,OIF, +OIF:SP:59:6578304,1,"Aérodrome de Lognes",48.824034,2.618055,0,0,OIF:SA:59:6578304,Europe/Paris,,OIF, +OIF:SP:59:6578306,1,"Lognes RER",48.839401,2.633619,0,0,OIF:SA:8775836,Europe/Paris,,OIF, +OIF:SP:59:6578307,1,"Lognes RER",48.838826,2.633439,0,0,OIF:SA:8775836,Europe/Paris,,OIF, +OIF:SP:59:6578308,1,"Rue de la Ferme",48.83595,2.629924,0,0,OIF:SA:59:6578281,Europe/Paris,,OIF, +OIF:SP:59:6578309,1,"Rue de la Ferme",48.835992,2.630931,0,0,OIF:SA:59:6578281,Europe/Paris,,OIF, +OIF:SP:59:6578310,1,"Maison Rouge",48.83241,2.629413,0,0,OIF:SA:59:6578310,Europe/Paris,,OIF, +OIF:SP:59:6578311,1,"Maison Rouge",48.832967,2.629566,0,0,OIF:SA:59:6578310,Europe/Paris,,OIF, +OIF:SP:59:6578312,1,"La Madeleine",48.828114,2.62943,0,0,OIF:SA:59:6578312,Europe/Paris,,OIF, +OIF:SP:59:6578313,1,"La Madeleine",48.828113,2.62973,0,0,OIF:SA:59:6578312,Europe/Paris,,OIF, +OIF:SP:59:6578314,1,"Chambre de Commerce et d'Industrie",48.825553,2.629293,0,0,OIF:SA:59:6578314,Europe/Paris,,OIF, +OIF:SP:59:6578315,1,"Chambre de Commerce et d'Industrie",48.826038,2.629473,0,0,OIF:SA:59:6578314,Europe/Paris,,OIF, +OIF:SP:59:6578324,1,"Gabriel Péri",48.889382,2.198232,0,0,OIF:SA:59:6578324,Europe/Paris,,OIF, +OIF:SP:59:6578326,1,"Place de la Boule - Clemenceau",48.88686,2.201373,0,0,OIF:SA:59:6195717,Europe/Paris,,OIF, +OIF:SP:59:6578327,1,"La Source",48.886542,2.206321,0,0,OIF:SA:59:3877792,Europe/Paris,,OIF, +OIF:SP:59:6578331,1,"Verdun",48.883021,2.216864,0,0,OIF:SA:59:4024313,Europe/Paris,,OIF, +OIF:SP:59:6578332,1,"Garches",48.877899,2.208755,0,0,OIF:SA:59:6578332,Europe/Paris,,OIF, +OIF:SP:59:6578333,1,"Garches",48.878061,2.208523,0,0,OIF:SA:59:6578332,Europe/Paris,,OIF, +OIF:SP:59:6578336,1,"Camille Desmoulins",48.88005,2.203326,0,0,OIF:SA:59:6578336,Europe/Paris,,OIF, +OIF:SP:59:6578337,1,"Camille Desmoulins",48.880068,2.20304,0,0,OIF:SA:59:6578336,Europe/Paris,,OIF, +OIF:SP:59:6578340,1,"Place la Boule - Joffre",48.886814,2.200583,0,0,OIF:SA:59:6187528,Europe/Paris,,OIF, +OIF:SP:59:6578344,1,"Ombraies",48.88402,2.201204,0,0,OIF:SA:59:6578344,Europe/Paris,,OIF, +OIF:SP:59:6578350,1,"Gounod",48.897372,2.206444,0,0,OIF:SA:59:4024369,Europe/Paris,,OIF, +OIF:SP:59:6578353,1,"Politzer",48.892746,2.209031,0,0,OIF:SA:59:6578353,Europe/Paris,,OIF, +OIF:SP:59:6578354,1,"Hôtel de Ville - Cité Administrative",48.892239,2.205475,0,0,OIF:SA:59:6578354,Europe/Paris,,OIF, +OIF:SP:59:6578355,1,"Hôtel de Ville - Cité Administrative",48.892474,2.206252,0,0,OIF:SA:59:6578354,Europe/Paris,,OIF, +OIF:SP:59:6578356,1,"Rue des Amandiers",48.89151,2.203869,0,0,OIF:SA:59:6578356,Europe/Paris,,OIF, +OIF:SP:59:6578357,1,"Gabriel Péri",48.889912,2.197522,0,0,OIF:SA:59:6578324,Europe/Paris,,OIF, +OIF:SP:59:6578359,1,"Plainchamp",48.891434,2.200925,0,0,OIF:SA:17:1589,Europe/Paris,,OIF, +OIF:SP:59:6578362,1,"Zilina",48.897878,2.192757,0,0,OIF:SA:59:4025233,Europe/Paris,,OIF, +OIF:SP:59:6578365,1,"Stalingrad",48.894258,2.194471,0,0,OIF:SA:8775804,Europe/Paris,,OIF, +OIF:SP:59:6578366,1,"Jean-Baptiste Lebon",48.891507,2.193947,0,0,OIF:SA:59:6578366,Europe/Paris,,OIF, +OIF:SP:59:6578367,1,"Place des Marronniers",48.891603,2.191861,0,0,OIF:SA:59:6578367,Europe/Paris,,OIF, +OIF:SP:59:6578368,1,"Place Foch",48.888748,2.193586,0,0,OIF:SA:59:6578368,Europe/Paris,,OIF, +OIF:SP:59:6578383,1,"Église de Nanterre",48.890771,2.195039,0,0,OIF:SA:59:6578383,Europe/Paris,,OIF, +OIF:SP:59:6578384,1,"Parc des Anciennes Mairies",48.891887,2.195718,0,0,OIF:SA:59:6578384,Europe/Paris,,OIF, +OIF:SP:59:6578385,1,"Maurice Thorez",48.894205,2.195657,0,0,OIF:SA:8775804,Europe/Paris,,OIF, +OIF:SP:59:6591432,1,"Gagarine",48.883173,2.426559,0,0,OIF:SA:59:6591432,Europe/Paris,,OIF, +OIF:SP:59:6591433,1,"Carnot",48.883324,2.440718,0,0,OIF:SA:59:5922184,Europe/Paris,,OIF, +OIF:SP:59:6591434,1,"Carnot",48.884034,2.43986,0,0,OIF:SA:59:5922184,Europe/Paris,,OIF, +OIF:SP:59:6591437,1,"Floréal",48.87797,2.426849,0,0,OIF:SA:59:5922180,Europe/Paris,,OIF, +OIF:SP:59:6591438,1,"Cimetière de Bagnolet",48.876371,2.425212,0,0,OIF:SA:59:5922179,Europe/Paris,,OIF, +OIF:SP:59:6591442,1,"Porte des Lilas - Métro",48.876995,2.405742,0,0,OIF:SA:59327,Europe/Paris,,OIF, +OIF:SP:59:6591443,1,"Porte des Lilas - Métro",48.877281,2.40765,0,0,OIF:SA:59327,Europe/Paris,,OIF, +OIF:SP:59:6591444,1,"Pelleport - Belleville",48.875463,2.397456,0,0,OIF:SA:59404,Europe/Paris,,OIF, +OIF:SP:59:6591445,1,"Jourdain",48.87482,2.388449,0,0,OIF:SA:59405,Europe/Paris,,OIF, +OIF:SP:59:6591446,1,"Pyrénées",48.87412,2.385546,0,0,OIF:SA:59402,Europe/Paris,,OIF, +OIF:SP:59:6591447,1,"Belleville",48.872362,2.377533,0,0,OIF:SA:59406,Europe/Paris,,OIF, +OIF:SP:59:6591457,1,"Châtelet",48.858105,2.348197,0,0,OIF:SA:59566,Europe/Paris,,OIF, +OIF:SP:59:6591481,1,"Cambronne",48.84771,2.299688,0,0,OIF:SA:59459,Europe/Paris,,OIF, +OIF:SP:59:6591482,1,"Cambronne",48.847567,2.300056,0,0,OIF:SA:59459,Europe/Paris,,OIF, +OIF:SP:59:6591483,1,"Avenue Émile Zola",48.84698,2.29273,0,0,OIF:SA:59389,Europe/Paris,,OIF, +OIF:SP:59:6591484,1,"Avenue Émile Zola",48.846954,2.29544,0,0,OIF:SA:59389,Europe/Paris,,OIF, +OIF:SP:59:6591512,1,"Pont de Sevres",48.829983,2.232369,0,0,OIF:SA:59621,Europe/Paris,,OIF, +OIF:SP:59:6591527,1,"Parmentier - République",48.865316,2.376302,0,0,OIF:SA:59434,Europe/Paris,,OIF, +OIF:SP:59:6591530,1,"Couronnes",48.868864,2.381086,0,0,OIF:SA:59429,Europe/Paris,,OIF, +OIF:SP:59:6591531,1,"Belleville",48.872128,2.37741,0,0,OIF:SA:59406,Europe/Paris,,OIF, +OIF:SP:59:6591532,1,"Pyrénées",48.873707,2.38511,0,0,OIF:SA:59402,Europe/Paris,,OIF, +OIF:SP:59:6591533,1,"Jourdain",48.874775,2.388667,0,0,OIF:SA:59405,Europe/Paris,,OIF, +OIF:SP:59:6591534,1,"Pixérécourt",48.875212,2.395684,0,0,OIF:SA:59:6591534,Europe/Paris,,OIF, +OIF:SP:59:6591535,1,"Pelleport - Belleville",48.875551,2.399799,0,0,OIF:SA:59404,Europe/Paris,,OIF, +OIF:SP:59:6591537,1,"Paul de Kock",48.880752,2.419605,0,0,OIF:SA:59:6591537,Europe/Paris,,OIF, +OIF:SP:59:6591566,1,"Hoche",48.886382,2.447265,0,0,OIF:SA:59:6591566,Europe/Paris,,OIF, +OIF:SP:59:6591567,1,"Salengro - Auffret",48.887954,2.457381,0,0,OIF:SA:59:6575238,Europe/Paris,,OIF, +OIF:SP:59:6591568,1,"Square Stephenson",48.887742,2.462927,0,0,OIF:SA:59:6591568,Europe/Paris,,OIF, +OIF:SP:59:6591578,1,"Château de Villemomble",48.883853,2.510641,0,0,OIF:SA:59:4109810,Europe/Paris,,OIF, +OIF:SP:59:6591579,1,"Rue de Neuilly",48.882706,2.51478,0,0,OIF:SA:59:6591579,Europe/Paris,,OIF, +OIF:SP:59:6591582,1,"Jean Jaurès - Henri Barbusse",48.883524,2.532062,0,0,OIF:SA:59:3616912,Europe/Paris,,OIF, +OIF:SP:59:6591589,1,"Pointe de Gournay",48.865808,2.563286,0,0,OIF:SA:59:3682903,Europe/Paris,,OIF, +OIF:SP:59:6591711,1,"Pointe de Gournay",48.865879,2.563736,0,0,OIF:SA:59:3682903,Europe/Paris,,OIF, +OIF:SP:59:6591712,1,"Rue de la Pointe",48.869201,2.555958,0,0,OIF:SA:59:6591712,Europe/Paris,,OIF, +OIF:SP:59:6591729,1,"Rue de Neuilly",48.882876,2.515175,0,0,OIF:SA:59:6591579,Europe/Paris,,OIF, +OIF:SP:59:6591731,1,"Château de Villemomble",48.884078,2.510696,0,0,OIF:SA:59:4109810,Europe/Paris,,OIF, +OIF:SP:59:6591742,1,"Bois-Perrier Nord",48.884238,2.485472,0,0,OIF:SA:8711369,Europe/Paris,,OIF, +OIF:SP:59:6591748,1,"Brement",48.88718,2.467518,0,0,OIF:SA:59:3446785,Europe/Paris,,OIF, +OIF:SP:59:6591750,1,"Square Stephenson",48.888102,2.462042,0,0,OIF:SA:59:6591568,Europe/Paris,,OIF, +OIF:SP:59:6591752,1,"Salengro - Auffret",48.888196,2.458826,0,0,OIF:SA:59:6575238,Europe/Paris,,OIF, +OIF:SP:59:6591755,1,"Hélène",48.88824,2.450186,0,0,OIF:SA:59:6575234,Europe/Paris,,OIF, +OIF:SP:59:6591793,1,"Échangeur de Rosny",48.886518,2.472396,0,0,OIF:SA:59:6591793,Europe/Paris,,OIF, +OIF:SP:59:6591794,1,"Rue de la Pointe",48.869382,2.555428,0,0,OIF:SA:59:6591712,Europe/Paris,,OIF, +OIF:SP:59:6591806,1,"Jean Jaurès - Henri Barbusse",48.883577,2.532648,0,0,OIF:SA:59:3616912,Europe/Paris,,OIF, +OIF:SP:59:6591815,1,"Bois-Perrier Nord",48.884454,2.485391,0,0,OIF:SA:8711369,Europe/Paris,,OIF, +OIF:SP:59:6591824,1,"Hoche",48.886428,2.446638,0,0,OIF:SA:59:6591566,Europe/Paris,,OIF, +OIF:SP:59:6591831,1,"Jalencloud",48.879636,2.42211,0,0,OIF:SA:59:6591831,Europe/Paris,,OIF, +OIF:SP:59:6591832,1,"Maréchal Juin",48.880221,2.419836,0,0,OIF:SA:59408,Europe/Paris,,OIF, +OIF:SP:59:6591833,1,"Mairie des Lilas",48.879801,2.416892,0,0,OIF:SA:59408,Europe/Paris,,OIF, +OIF:SP:59:6595278,1,"Strasbourg",48.783337,2.327929,0,0,OIF:SA:59:6595278,Europe/Paris,,OIF, +OIF:SP:59:6613808,1,"Porte Maillot - Pershing",48.880446,2.283858,0,0,OIF:SA:59:3813195,Europe/Paris,,OIF, +OIF:SP:59:6613815,1,"Porte de Courcelles",48.886706,2.296212,0,0,OIF:SA:59436,Europe/Paris,,OIF, +OIF:SP:59:6613816,1,"Gourgaud - Paul Adam",48.887641,2.299128,0,0,OIF:SA:8738101,Europe/Paris,,OIF, +OIF:SP:59:6613817,1,"Gourgaud - Paul Adam",48.887929,2.299196,0,0,OIF:SA:8738101,Europe/Paris,,OIF, +OIF:SP:59:6613818,1,"Porte d'Asnières",48.889656,2.303542,0,0,OIF:SA:8798223,Europe/Paris,,OIF, +OIF:SP:59:6613819,1,"Porte d'Asnières",48.889583,2.302574,0,0,OIF:SA:8798223,Europe/Paris,,OIF, +OIF:SP:59:6613820,1,"Les Hauts de Malesherbes",48.891157,2.306676,0,0,OIF:SA:59:6613820,Europe/Paris,,OIF, +OIF:SP:59:6613821,1,"Les Hauts de Malesherbes",48.89158,2.306689,0,0,OIF:SA:59:6613820,Europe/Paris,,OIF, +OIF:SP:59:6613822,1,"Porte de Clichy",48.894412,2.314361,0,0,OIF:SA:8711127,Europe/Paris,,OIF, +OIF:SP:59:6613823,1,"Porte de Clichy",48.894322,2.312903,0,0,OIF:SA:8711127,Europe/Paris,,OIF, +OIF:SP:59:6613824,1,"Lycée Honore de Balzac",48.895914,2.318109,0,0,OIF:SA:59:6613824,Europe/Paris,,OIF, +OIF:SP:59:6613825,1,"Lycée Honore de Balzac",48.895635,2.316773,0,0,OIF:SA:59:6613824,Europe/Paris,,OIF, +OIF:SP:59:6613826,1,"Porte Pouchet",48.897433,2.323438,0,0,OIF:SA:59:3750019,Europe/Paris,,OIF, +OIF:SP:59:6613827,1,"Porte Pouchet",48.897604,2.322852,0,0,OIF:SA:59:3750019,Europe/Paris,,OIF, +OIF:SP:59:6613828,1,"Louis Loucheur",48.897443,2.325142,0,0,OIF:SA:59:6613828,Europe/Paris,,OIF, +OIF:SP:59:6613829,1,"Louis Loucheur",48.897649,2.324883,0,0,OIF:SA:59:6613828,Europe/Paris,,OIF, +OIF:SP:59:6613831,1,"Porte de Saint-Ouen - Hôpital Bichat",48.89782,2.329545,0,0,OIF:SA:59526,Europe/Paris,,OIF, +OIF:SP:59:6613832,1,"Faculté Xavier Bichat",48.897587,2.332707,0,0,OIF:SA:59:6613832,Europe/Paris,,OIF, +OIF:SP:59:6613833,1,"Faculté Xavier Bichat",48.897803,2.332584,0,0,OIF:SA:59:6613832,Europe/Paris,,OIF, +OIF:SP:59:6613836,1,"Camille Flammarion",48.897758,2.340259,0,0,OIF:SA:59:4016538,Europe/Paris,,OIF, +OIF:SP:59:6613838,1,"Porte de Clignancourt",48.898036,2.344948,0,0,OIF:SA:59258,Europe/Paris,,OIF, +OIF:SP:59:6613839,1,"Porte de Clignancourt",48.898171,2.344648,0,0,OIF:SA:59258,Europe/Paris,,OIF, +OIF:SP:59:6613841,1,"Porte des Poissonniers",48.898386,2.351545,0,0,OIF:SA:59:3741067,Europe/Paris,,OIF, +OIF:SP:59:6613842,1,"Porte de la Chapelle",48.898376,2.357543,0,0,OIF:SA:59513,Europe/Paris,,OIF, +OIF:SP:59:6613843,1,"Porte de la Chapelle",48.898619,2.357666,0,0,OIF:SA:59513,Europe/Paris,,OIF, +OIF:SP:59:6613850,1,"Porte de Champerret - Berthier",48.885779,2.293582,0,0,OIF:SA:59436,Europe/Paris,,OIF, +OIF:SP:59:6613854,1,"Pont de Choisy - Piscine",48.766252,2.414732,0,0,OIF:SA:59:3785955,Europe/Paris,,OIF, +OIF:SP:59:6640094,1,"Sablons",48.882088,2.423164,0,0,OIF:SA:59:6640094,Europe/Paris,,OIF, +OIF:SP:59:6640095,1,"Sablons",48.88252,2.423355,0,0,OIF:SA:59:6640094,Europe/Paris,,OIF, +OIF:SP:59:6640096,1,"Fort de Romainville",48.885618,2.426604,0,0,OIF:SA:59:5922200,Europe/Paris,,OIF, +OIF:SP:59:6640101,1,"Romainville - Carnot",48.883449,2.441481,0,0,OIF:SA:59:6640101,Europe/Paris,,OIF, +OIF:SP:59:6640102,1,"Romainville - Carnot",48.88371,2.441304,0,0,OIF:SA:59:6640101,Europe/Paris,,OIF, +OIF:SP:59:6640103,1,"Fort de Noisy",48.881999,2.445103,0,0,OIF:SA:59:6640103,Europe/Paris,,OIF, +OIF:SP:59:6640104,1,"Fort de Noisy",48.882385,2.44464,0,0,OIF:SA:59:6640103,Europe/Paris,,OIF, +OIF:SP:59:6640105,1,"Trois Communes",48.878049,2.449237,0,0,OIF:SA:59:3688575,Europe/Paris,,OIF, +OIF:SP:59:6640106,1,"Trois Communes",48.878112,2.449482,0,0,OIF:SA:59:3688575,Europe/Paris,,OIF, +OIF:SP:59:6640107,1,"Rue de Romainville",48.876782,2.449902,0,0,OIF:SA:59:6640107,Europe/Paris,,OIF, +OIF:SP:59:6640109,1,"Fernand Lamaze",48.877122,2.451061,0,0,OIF:SA:59:6640109,Europe/Paris,,OIF, +OIF:SP:59:6640110,1,"Hôpital André Grégoire",48.878088,2.455287,0,0,OIF:SA:59:3688576,Europe/Paris,,OIF, +OIF:SP:59:6640111,1,"Hôpital André Grégoire",48.876858,2.454099,0,0,OIF:SA:59:3688576,Europe/Paris,,OIF, +OIF:SP:59:6640112,1,"La Boissière",48.877592,2.456921,0,0,OIF:SA:59:3688548,Europe/Paris,,OIF, +OIF:SP:59:6640113,1,"La Boissière",48.876561,2.455283,0,0,OIF:SA:59:3688548,Europe/Paris,,OIF, +OIF:SP:59:6640114,1,"Saint-Denis",48.873587,2.4539,0,0,OIF:SA:59:6640114,Europe/Paris,,OIF, +OIF:SP:59:6640115,1,"Saint-Denis",48.873524,2.4542,0,0,OIF:SA:59:6640114,Europe/Paris,,OIF, +OIF:SP:59:6640116,1,"Paul Signac - Carrefour du 8 Mai 1945",48.870391,2.450419,0,0,OIF:SA:59:6640116,Europe/Paris,,OIF, +OIF:SP:59:6640117,1,"Paul Signac - Carrefour du 8 Mai 1945",48.870175,2.450623,0,0,OIF:SA:59:6640116,Europe/Paris,,OIF, +OIF:SP:59:6640118,1,"Sept Chemins",48.867896,2.446259,0,0,OIF:SA:59:6640118,Europe/Paris,,OIF, +OIF:SP:59:6640119,1,"Sept Chemins",48.868381,2.447363,0,0,OIF:SA:59:6640118,Europe/Paris,,OIF, +OIF:SP:59:6640120,1,"Place François Mitterrand",48.865607,2.443679,0,0,OIF:SA:59:3689894,Europe/Paris,,OIF, +OIF:SP:59:6640121,1,"Place François Mitterrand",48.865858,2.44432,0,0,OIF:SA:59:3689894,Europe/Paris,,OIF, +OIF:SP:59:6640124,1,"Rue de Romainville",48.877006,2.44963,0,0,OIF:SA:59:6640124,Europe/Paris,,OIF, +OIF:SP:59:6640125,1,"Fort de Romainville",48.885861,2.426618,0,0,OIF:SA:59:6640125,Europe/Paris,,OIF, +OIF:SP:59:6640126,1,"Mairie des Lilas",48.880062,2.41681,0,0,OIF:SA:59408,Europe/Paris,,OIF, +OIF:SP:59:6640127,1,"Louise Michel",48.87659,2.43242,0,0,OIF:SA:59:6640127,Europe/Paris,,OIF, +OIF:SP:59:6640128,1,"Louise Michel",48.876267,2.432188,0,0,OIF:SA:59:6640127,Europe/Paris,,OIF, +OIF:SP:59:6640129,1,"Vert Bois",48.872083,2.437235,0,0,OIF:SA:59:6640129,Europe/Paris,,OIF, +OIF:SP:59:6640130,1,"Vert Bois",48.872597,2.436241,0,0,OIF:SA:59:6640129,Europe/Paris,,OIF, +OIF:SP:59:6640131,1,"Oseraies",48.871773,2.442983,0,0,OIF:SA:59:6640131,Europe/Paris,,OIF, +OIF:SP:59:6640132,1,"Mirabeau",48.874878,2.448099,0,0,OIF:SA:59:6640132,Europe/Paris,,OIF, +OIF:SP:59:6640134,1,"Rue de Romainville",48.876522,2.449015,0,0,OIF:SA:59:6640107,Europe/Paris,,OIF, +OIF:SP:59:6640135,1,"Fernand Lamaze",48.876895,2.453104,0,0,OIF:SA:59:6640109,Europe/Paris,,OIF, +OIF:SP:59:6640137,1,"La Boissière",48.878293,2.457699,0,0,OIF:SA:59:3688548,Europe/Paris,,OIF, +OIF:SP:59:6640138,1,"La Boissière",48.878221,2.457372,0,0,OIF:SA:59:3688548,Europe/Paris,,OIF, +OIF:SP:59:6640139,1,"Ruelle Boissière",48.879505,2.467009,0,0,OIF:SA:59:6640139,Europe/Paris,,OIF, +OIF:SP:59:6640140,1,"Ruelle Boissière",48.879849,2.464802,0,0,OIF:SA:59:6640139,Europe/Paris,,OIF, +OIF:SP:59:6640141,1,"Nanteuil",48.878498,2.475781,0,0,OIF:SA:59:6640141,Europe/Paris,,OIF, +OIF:SP:59:6640142,1,"Nanteuil",48.877779,2.475575,0,0,OIF:SA:59:6640141,Europe/Paris,,OIF, +OIF:SP:59:6640144,1,"Saussaie Beauclair - Domus",48.882011,2.468745,0,0,OIF:SA:59:6263577,Europe/Paris,,OIF, +OIF:SP:59:6640145,1,"Elsa Triolet",48.884891,2.464324,0,0,OIF:SA:59:6640145,Europe/Paris,,OIF, +OIF:SP:59:6640146,1,"Elsa Triolet",48.884937,2.463779,0,0,OIF:SA:59:6640145,Europe/Paris,,OIF, +OIF:SP:59:6640147,1,"Nouveau Cimetière",48.883378,2.45966,0,0,OIF:SA:59:6640147,Europe/Paris,,OIF, +OIF:SP:59:6640148,1,"Nouveau Cimetière",48.883359,2.459891,0,0,OIF:SA:59:6640147,Europe/Paris,,OIF, +OIF:SP:59:6640149,1,"École Boissière",48.880854,2.457364,0,0,OIF:SA:59:6640149,Europe/Paris,,OIF, +OIF:SP:59:6640150,1,"École Boissière",48.880711,2.456942,0,0,OIF:SA:59:6640149,Europe/Paris,,OIF, +OIF:SP:59:6640151,1,"Place Saint-Martin",48.880632,2.455415,0,0,OIF:SA:59:6640151,Europe/Paris,,OIF, +OIF:SP:59:6640153,1,"École Boissière.",48.880729,2.457214,0,0,OIF:SA:59:6640149,Europe/Paris,,OIF, +OIF:SP:59:6640154,1,"École Boissière.",48.880881,2.457569,0,0,OIF:SA:59:6640149,Europe/Paris,,OIF, +OIF:SP:59:6640155,1,"Nouveau Cimetière.",48.883449,2.459796,0,0,OIF:SA:59:6640147,Europe/Paris,,OIF, +OIF:SP:59:6640156,1,"Nouveau Cimetière.",48.884115,2.458912,0,0,OIF:SA:59:6640147,Europe/Paris,,OIF, +OIF:SP:59:6640157,1,"École Paul Langevin",48.884817,2.458436,0,0,OIF:SA:59:6640157,Europe/Paris,,OIF, +OIF:SP:59:6640158,1,"École Paul Langevin",48.885627,2.45743,0,0,OIF:SA:59:6640157,Europe/Paris,,OIF, +OIF:SP:59:6640159,1,"Salengro - Auffret",48.887668,2.456549,0,0,OIF:SA:59:6575238,Europe/Paris,,OIF, +OIF:SP:59:6640160,1,"Salengro - Auffret",48.887497,2.45618,0,0,OIF:SA:59:6575238,Europe/Paris,,OIF, +OIF:SP:59:6640161,1,"Marceau",48.890981,2.459705,0,0,OIF:SA:59:6640161,Europe/Paris,,OIF, +OIF:SP:59:6640162,1,"Gambetta",48.893253,2.461155,0,0,OIF:SA:59:6640162,Europe/Paris,,OIF, +OIF:SP:59:6640165,1,"Saint-Jean",48.893626,2.457108,0,0,OIF:SA:59:6640165,Europe/Paris,,OIF, +OIF:SP:59:6640166,1,"Marche des Découvertes",48.891453,2.454472,0,0,OIF:SA:59:6640166,Europe/Paris,,OIF, +OIF:SP:59:6640167,1,"Jeanne d'Arc",48.889639,2.453678,0,0,OIF:SA:59:3446780,Europe/Paris,,OIF, +OIF:SP:59:6640168,1,"Hôpital André Grégoire",48.878486,2.453339,0,0,OIF:SA:59:6640168,Europe/Paris,,OIF, +OIF:SP:59:6640169,1,"Trois Communes",48.878714,2.450192,0,0,OIF:SA:59:6640169,Europe/Paris,,OIF, +OIF:SP:59:6640170,1,"Mirabeau",48.874842,2.447786,0,0,OIF:SA:59:6640170,Europe/Paris,,OIF, +OIF:SP:59:6640171,1,"Oseraies",48.8719,2.441839,0,0,OIF:SA:59:6640171,Europe/Paris,,OIF, +OIF:SP:59:6664354,1,"Nation - Trone",48.847844,2.39805,0,0,OIF:SA:8775810,Europe/Paris,,OIF, +OIF:SP:59:6664357,1,"Nation - Saint-Antoine",48.848484,2.394632,0,0,OIF:SA:8775810,Europe/Paris,,OIF, +OIF:SP:59:6673025,1,"Fort d'Aubervilliers",48.914149,2.403923,0,0,OIF:SA:59316,Europe/Paris,,OIF, +OIF:SP:59:6673026,1,"Fort d'Aubervilliers",48.913897,2.404127,0,0,OIF:SA:59316,Europe/Paris,,OIF, +OIF:SP:59:6673027,1,"Fort d'Aubervilliers - Danielle Casanova",48.914958,2.403092,0,0,OIF:SA:59316,Europe/Paris,,OIF, +OIF:SP:59:6673028,1,"Fort d'Aubervilliers - Danielle Casanova",48.914824,2.402997,0,0,OIF:SA:59316,Europe/Paris,,OIF, +OIF:SP:59:6673031,1,"Danielle Casanova - Pont Blanc",48.91881,2.393647,0,0,OIF:SA:59:4758979,Europe/Paris,,OIF, +OIF:SP:59:6673032,1,"Danielle Casanova - Pont Blanc",48.918019,2.393933,0,0,OIF:SA:59:4758979,Europe/Paris,,OIF, +OIF:SP:59:6673033,1,"Petit Chemin du Pont Blanc",48.920967,2.392531,0,0,OIF:SA:59:6673033,Europe/Paris,,OIF, +OIF:SP:59:6673035,1,"La Courneuve - Aubervilliers RER",48.923909,2.384283,0,0,OIF:SA:8727130,Europe/Paris,,OIF, +OIF:SP:59:6673036,1,"La Courneuve - Aubervilliers RER",48.923181,2.384801,0,0,OIF:SA:8727130,Europe/Paris,,OIF, +OIF:SP:59:6673037,1,"Michelet",48.92639,2.384954,0,0,OIF:SA:8727130,Europe/Paris,,OIF, +OIF:SP:59:6673038,1,"Michelet",48.926237,2.384667,0,0,OIF:SA:8727130,Europe/Paris,,OIF, +OIF:SP:59:6673039,1,"Six Routes - Tramway",48.92904,2.385802,0,0,OIF:SA:59090,Europe/Paris,,OIF, +OIF:SP:59:6673041,1,"Six Routes - Roger Salengro-Tramway",48.930442,2.386226,0,0,OIF:SA:59090,Europe/Paris,,OIF, +OIF:SP:59:6673045,1,"Croix Blanche",48.946906,2.386692,0,0,OIF:SA:59:4000562,Europe/Paris,,OIF, +OIF:SP:59:6673046,1,"Croix Blanche",48.946277,2.38635,0,0,OIF:SA:59:4000562,Europe/Paris,,OIF, +OIF:SP:59:6673047,1,"Le Globe",48.949324,2.386299,0,0,OIF:SA:59:3972571,Europe/Paris,,OIF, +OIF:SP:59:6673048,1,"Le Globe",48.949054,2.385875,0,0,OIF:SA:59:3972571,Europe/Paris,,OIF, +OIF:SP:59:6673049,1,"Louis Bordes",48.952908,2.390205,0,0,OIF:SA:59:6673049,Europe/Paris,,OIF, +OIF:SP:59:6673050,1,"Louis Bordes",48.953141,2.390082,0,0,OIF:SA:59:6673049,Europe/Paris,,OIF, +OIF:SP:59:6673051,1,"Avenue de Stalingrad N0 215",48.955629,2.394465,0,0,OIF:SA:59:6673051,Europe/Paris,,OIF, +OIF:SP:59:6673052,1,"Avenue de Stalingrad N0 215",48.955817,2.39422,0,0,OIF:SA:59:6673051,Europe/Paris,,OIF, +OIF:SP:59:6673056,1,"Croix Buard",48.966162,2.40919,0,0,OIF:SA:59:6673056,Europe/Paris,,OIF, +OIF:SP:59:6673057,1,"Croix Buard",48.965498,2.407838,0,0,OIF:SA:59:6673056,Europe/Paris,,OIF, +OIF:SP:59:6673058,1,"Verdun",48.968084,2.411295,0,0,OIF:SA:59:6673058,Europe/Paris,,OIF, +OIF:SP:59:6673059,1,"Verdun",48.968246,2.411104,0,0,OIF:SA:59:6673058,Europe/Paris,,OIF, +OIF:SP:59:6673060,1,"Carnot",48.970796,2.414398,0,0,OIF:SA:59:6673060,Europe/Paris,,OIF, +OIF:SP:59:6673061,1,"Carnot",48.970913,2.414111,0,0,OIF:SA:59:6673060,Europe/Paris,,OIF, +OIF:SP:59:6673062,1,"Collège Pablo Picasso",48.97269,2.417308,0,0,OIF:SA:59:6673062,Europe/Paris,,OIF, +OIF:SP:59:6673063,1,"Collège Pablo Picasso",48.972906,2.417022,0,0,OIF:SA:59:6673062,Europe/Paris,,OIF, +OIF:SP:59:6673064,1,"Rond-Point du Christ",48.975958,2.422323,0,0,OIF:SA:59:6673064,Europe/Paris,,OIF, +OIF:SP:59:6673065,1,"Rond-Point du Christ",48.976003,2.422009,0,0,OIF:SA:59:6673064,Europe/Paris,,OIF, +OIF:SP:59:6673066,1,"Mairie d'Arnouville",48.980458,2.42472,0,0,OIF:SA:59:6673066,Europe/Paris,,OIF, +OIF:SP:59:6673067,1,"Mairie d'Arnouville",48.979103,2.422711,0,0,OIF:SA:59:6673066,Europe/Paris,,OIF, +OIF:SP:59:6673068,1,"Léon Blum",48.981453,2.428818,0,0,OIF:SA:11:7,Europe/Paris,,OIF, +OIF:SP:59:6673069,1,"Léon Blum",48.981453,2.427807,0,0,OIF:SA:11:7,Europe/Paris,,OIF, +OIF:SP:59:6673070,1,"Lycée de Gonesse",48.982966,2.435142,0,0,OIF:SA:59:6673070,Europe/Paris,,OIF, +OIF:SP:59:6673071,1,"Lycée de Gonesse",48.983057,2.434555,0,0,OIF:SA:59:6673070,Europe/Paris,,OIF, +OIF:SP:59:6673072,1,"Chemin du Moulin d'Etif",48.983683,2.438161,0,0,OIF:SA:59:6673072,Europe/Paris,,OIF, +OIF:SP:59:6673073,1,"Chemin du Moulin d'Etif",48.983908,2.437806,0,0,OIF:SA:59:6673072,Europe/Paris,,OIF, +OIF:SP:59:6673074,1,"Jean Jaurès",48.983789,2.440591,0,0,OIF:SA:59:6673074,Europe/Paris,,OIF, +OIF:SP:59:6673075,1,"La Malmaison",48.981976,2.456576,0,0,OIF:SA:11:108,Europe/Paris,,OIF, +OIF:SP:59:6673076,1,"La Fontaine Cypierre",48.98493,2.459573,0,0,OIF:SA:59:6673076,Europe/Paris,,OIF, +OIF:SP:59:6673077,1,"La Fontaine Cypierre",48.985038,2.459122,0,0,OIF:SA:59:6673076,Europe/Paris,,OIF, +OIF:SP:59:6673078,1,"La Malmaison",48.982004,2.456152,0,0,OIF:SA:11:108,Europe/Paris,,OIF, +OIF:SP:59:6673079,1,"Jean Jaurès",48.98359,2.441164,0,0,OIF:SA:59:6673074,Europe/Paris,,OIF, +OIF:SP:59:6673082,1,"Saint-Rémy-lès-Chevreuse RER",48.703106,2.070697,0,0,OIF:SA:8775889,Europe/Paris,,OIF, +OIF:SP:59:6673084,1,"11 Novembre - Courcelle-sur-Yvette RER",48.699993,2.099188,0,0,OIF:SA:8775888,Europe/Paris,,OIF, +OIF:SP:59:6673085,1,"11 Novembre - Courcelle-sur-Yvette RER",48.700075,2.099487,0,0,OIF:SA:8775888,Europe/Paris,,OIF, +OIF:SP:59:6673086,1,"Gif-sur-Yvette RER",48.697771,2.137313,0,0,OIF:SA:8775887,Europe/Paris,,OIF, +OIF:SP:59:6673087,1,"Gif-sur-Yvette RER",48.69787,2.137055,0,0,OIF:SA:8775887,Europe/Paris,,OIF, +OIF:SP:59:6673088,1,"Bures-sur-Yvette RER - Université",48.69881,2.163326,0,0,OIF:SA:8775885,Europe/Paris,,OIF, +OIF:SP:59:6673089,1,"Bures-sur-Yvette RER - Université",48.698865,2.163829,0,0,OIF:SA:8775885,Europe/Paris,,OIF, +OIF:SP:59:6673090,1,"Mairie des Ulis - Place de la Liberté",48.682425,2.170766,0,0,OIF:SA:59:6673090,Europe/Paris,,OIF, +OIF:SP:59:6673091,1,"Mairie des Ulis - Place de la Liberté",48.682587,2.170711,0,0,OIF:SA:59:6673090,Europe/Paris,,OIF, +OIF:SP:59:6673092,1,"Rond-Point de Mondétour",48.684372,2.187945,0,0,OIF:SA:56:10578,Europe/Paris,,OIF, +OIF:SP:59:6673093,1,"Rond-Point de Mondétour",48.684504,2.186343,0,0,OIF:SA:56:10578,Europe/Paris,,OIF, +OIF:SP:59:6673109,1,"Châtelet",48.857602,2.348605,0,0,OIF:SA:59566,Europe/Paris,,OIF, +OIF:SP:59:6673115,1,"Mairie-Hopital-Orsay RER",48.698924,2.1877,0,0,OIF:SA:59:6673115,Europe/Paris,,OIF, +OIF:SP:59:6682453,1,"Porte des Lilas",48.877146,2.409271,0,0,OIF:SA:59327,Europe/Paris,,OIF, +OIF:SP:59:6682454,1,"Porte des Lilas",48.876939,2.408835,0,0,OIF:SA:59327,Europe/Paris,,OIF, +OIF:SP:59:6682456,1,"Convention",48.883417,2.411637,0,0,OIF:SA:59:6682456,Europe/Paris,,OIF, +OIF:SP:59:6682457,1,"Les Pommiers",48.885647,2.410904,0,0,OIF:SA:59:6682457,Europe/Paris,,OIF, +OIF:SP:59:6682459,1,"Montigny - Maison de Retraite",48.887337,2.410375,0,0,OIF:SA:59:6682459,Europe/Paris,,OIF, +OIF:SP:59:6682461,1,"Paul Bert - Cimetière",48.888712,2.410241,0,0,OIF:SA:59:3673624,Europe/Paris,,OIF, +OIF:SP:59:6682462,1,"8 Mai 1945",48.89059,2.410012,0,0,OIF:SA:59:6682462,Europe/Paris,,OIF, +OIF:SP:59:6682464,1,"Lycée Professionnel Simone Weil - Église de Pantin",48.892981,2.409702,0,0,OIF:SA:59344,Europe/Paris,,OIF, +OIF:SP:59:6682466,1,"Louis Nadot",48.89618,2.409597,0,0,OIF:SA:59:6682466,Europe/Paris,,OIF, +OIF:SP:59:6682467,1,"Louis Nadot",48.896091,2.409297,0,0,OIF:SA:59:6682466,Europe/Paris,,OIF, +OIF:SP:59:6682468,1,"Delizy",48.898169,2.405865,0,0,OIF:SA:59:6682468,Europe/Paris,,OIF, +OIF:SP:59:6682470,1,"Pantin RER - Mairie",48.896661,2.401474,0,0,OIF:SA:8711320,Europe/Paris,,OIF, +OIF:SP:59:6682471,1,"Pantin RER - Mairie",48.896473,2.401665,0,0,OIF:SA:8711320,Europe/Paris,,OIF, +OIF:SP:59:6682472,1,"Pantin RER - Mairie.",48.897211,2.399921,0,0,OIF:SA:8711320,Europe/Paris,,OIF, +OIF:SP:59:6682473,1,"Pantin RER - Mairie.",48.897274,2.399498,0,0,OIF:SA:8711320,Europe/Paris,,OIF, +OIF:SP:59:6682474,1,"Jean Moulin",48.899018,2.397347,0,0,OIF:SA:8711320,Europe/Paris,,OIF, +OIF:SP:59:6682476,1,"La Pérouse",48.901527,2.394228,0,0,OIF:SA:59:6682476,Europe/Paris,,OIF, +OIF:SP:59:6682480,1,"Quatre Chemins - République",48.904126,2.391668,0,0,OIF:SA:59318,Europe/Paris,,OIF, +OIF:SP:59:6682481,1,"Quatre Chemins - République",48.904,2.391518,0,0,OIF:SA:59318,Europe/Paris,,OIF, +OIF:SP:59:6682482,1,"Hôpital la Roseraie",48.906203,2.389898,0,0,OIF:SA:59:4009056,Europe/Paris,,OIF, +OIF:SP:59:6682484,1,"Paul Bert",48.909123,2.390801,0,0,OIF:SA:59:6682484,Europe/Paris,,OIF, +OIF:SP:59:6682486,1,"Les Roses",48.911765,2.39143,0,0,OIF:SA:59:6682486,Europe/Paris,,OIF, +OIF:SP:59:6682487,1,"Maison de Retraite",48.914676,2.392183,0,0,OIF:SA:59:6682487,Europe/Paris,,OIF, +OIF:SP:59:6682489,1,"Cimetière - Pont Blanc",48.916779,2.393018,0,0,OIF:SA:59:6682489,Europe/Paris,,OIF, +OIF:SP:59:6682495,1,"La Courneuve - Aubervilliers RER",48.923298,2.384706,0,0,OIF:SA:8727130,Europe/Paris,,OIF, +OIF:SP:59:6682497,1,"Général Schramm",48.924376,2.385457,0,0,OIF:SA:8727130,Europe/Paris,,OIF, +OIF:SP:59:6682498,1,"Général Schramm",48.924439,2.385061,0,0,OIF:SA:8727130,Europe/Paris,,OIF, +OIF:SP:59:6682499,1,"Mécano",48.925425,2.391677,0,0,OIF:SA:59088,Europe/Paris,,OIF, +OIF:SP:59:6682500,1,"Mécano",48.925488,2.391472,0,0,OIF:SA:59088,Europe/Paris,,OIF, +OIF:SP:59:6682501,1,"Hôtel de Ville - Centre Administratif",48.926773,2.392919,0,0,OIF:SA:59088,Europe/Paris,,OIF, +OIF:SP:59:6682502,1,"Hôtel de Ville - Centre Administratif",48.926431,2.392469,0,0,OIF:SA:59088,Europe/Paris,,OIF, +OIF:SP:59:6682503,1,"Chabrol",48.929952,2.39621,0,0,OIF:SA:59:6682503,Europe/Paris,,OIF, +OIF:SP:59:6682504,1,"Chabrol",48.930123,2.396196,0,0,OIF:SA:59:6682503,Europe/Paris,,OIF, +OIF:SP:59:6682506,1,"Cité Waldeck-Rochet",48.933464,2.401206,0,0,OIF:SA:59:6682506,Europe/Paris,,OIF, +OIF:SP:59:6682507,1,"Cité Waldeck-Rochet",48.933383,2.400592,0,0,OIF:SA:59:6682506,Europe/Paris,,OIF, +OIF:SP:59:6682508,1,"Cimetière de la Courneuve",48.937659,2.404758,0,0,OIF:SA:59:6682508,Europe/Paris,,OIF, +OIF:SP:59:6682509,1,"Cimetière de la Courneuve",48.937659,2.404294,0,0,OIF:SA:59:6682508,Europe/Paris,,OIF, +OIF:SP:59:6682510,1,"Centre des Essences",48.941699,2.410343,0,0,OIF:SA:59:6682510,Europe/Paris,,OIF, +OIF:SP:59:6682511,1,"Centre des Essences",48.941816,2.410084,0,0,OIF:SA:59:6682510,Europe/Paris,,OIF, +OIF:SP:59:6682514,1,"Albert Chardavoine",48.949703,2.415308,0,0,OIF:SA:59:6682514,Europe/Paris,,OIF, +OIF:SP:59:6682516,1,"Place du 16 Août 1943",48.951904,2.416853,0,0,OIF:SA:59:6682516,Europe/Paris,,OIF, +OIF:SP:59:6682523,1,"Jean Mermoz - Henri Barbusse",48.931758,2.398503,0,0,OIF:SA:59:5991327,Europe/Paris,,OIF, +OIF:SP:59:6682524,1,"Hôtel de Ville de la Courneuve-Tramway",48.927545,2.393452,0,0,OIF:SA:59088,Europe/Paris,,OIF, +OIF:SP:59:6682527,1,"Convention",48.88295,2.411255,0,0,OIF:SA:59:6682527,Europe/Paris,,OIF, +OIF:SP:59:6682534,1,"Dugny - Centre Ville",48.954394,2.415369,0,0,OIF:SA:59:6682534,Europe/Paris,,OIF, +OIF:SP:59:6682535,1,"Cité du Moulin",48.955941,2.413448,0,0,OIF:SA:59:6682535,Europe/Paris,,OIF, +OIF:SP:59:6682536,1,"Léo Lagrange",48.956111,2.415959,0,0,OIF:SA:59:4238682,Europe/Paris,,OIF, +OIF:SP:59:6682537,1,"Gabriel Péri",48.953909,2.416228,0,0,OIF:SA:59:4238684,Europe/Paris,,OIF, +OIF:SP:59:6682538,1,"Place du 16 Août 1943",48.951707,2.416607,0,0,OIF:SA:59:6682516,Europe/Paris,,OIF, +OIF:SP:59:6682539,1,"Albert Chardavoine",48.949362,2.414584,0,0,OIF:SA:59:6682514,Europe/Paris,,OIF, +OIF:SP:59:6682540,1,"Dugny - la Courneuve",48.943927,2.412707,0,0,OIF:SA:8769734,Europe/Paris,,OIF, +OIF:SP:59:6682551,1,"Petit Chemin du Pont Blanc",48.920994,2.392245,0,0,OIF:SA:59:6673033,Europe/Paris,,OIF, +OIF:SP:59:6682552,1,"Danielle Casanova - Pont Blanc",48.918837,2.393279,0,0,OIF:SA:59:4758979,Europe/Paris,,OIF, +OIF:SP:59:6682553,1,"Cimetière - Pont Blanc",48.91713,2.392772,0,0,OIF:SA:59:6682489,Europe/Paris,,OIF, +OIF:SP:59:6682554,1,"Maison de Retraite",48.914713,2.391502,0,0,OIF:SA:59:6682487,Europe/Paris,,OIF, +OIF:SP:59:6682555,1,"Nouvelle France",48.912899,2.388514,0,0,OIF:SA:59:6682555,Europe/Paris,,OIF, +OIF:SP:59:6682556,1,"Paul Bert",48.909133,2.388006,0,0,OIF:SA:59:6682484,Europe/Paris,,OIF, +OIF:SP:59:6682557,1,"Hôpital la Roseraie",48.905304,2.390251,0,0,OIF:SA:59:4009056,Europe/Paris,,OIF, +OIF:SP:59:6682560,1,"La Pérouse",48.901401,2.394051,0,0,OIF:SA:59:6682476,Europe/Paris,,OIF, +OIF:SP:59:6682561,1,"Jean Moulin",48.899315,2.396584,0,0,OIF:SA:8711320,Europe/Paris,,OIF, +OIF:SP:59:6682562,1,"Pantin RER - Mairie",48.897184,2.399607,0,0,OIF:SA:8711320,Europe/Paris,,OIF, +OIF:SP:59:6682563,1,"Pantin RER - Mairie.",48.89649,2.401856,0,0,OIF:SA:8711320,Europe/Paris,,OIF, +OIF:SP:59:6682564,1,"Delizy",48.897863,2.405756,0,0,OIF:SA:59:6682468,Europe/Paris,,OIF, +OIF:SP:59:6682565,1,"Cheval Blanc",48.895433,2.412704,0,0,OIF:SA:59:6682565,Europe/Paris,,OIF, +OIF:SP:59:6682566,1,"Lycée Professionnel Simone Weil - Église de Pantin",48.892981,2.409416,0,0,OIF:SA:59344,Europe/Paris,,OIF, +OIF:SP:59:6682567,1,"8 Mai 1945",48.890545,2.409848,0,0,OIF:SA:59:6682462,Europe/Paris,,OIF, +OIF:SP:59:6682569,1,"Montigny - Maison de Retraite",48.886914,2.410252,0,0,OIF:SA:59:6682459,Europe/Paris,,OIF, +OIF:SP:59:6682570,1,"Les Pommiers",48.885161,2.410945,0,0,OIF:SA:59:6682457,Europe/Paris,,OIF, +OIF:SP:59:6682578,1,"Pierre aux Moines",48.784994,2.227373,0,0,OIF:SA:59868,Europe/Paris,,OIF, +OIF:SP:59:6682581,1,"Petit Clamart - RD 906",48.77753,2.232461,0,0,OIF:SA:59:6682581,Europe/Paris,,OIF, +OIF:SP:59:6682582,1,"Charles Debry",48.778836,2.235723,0,0,OIF:SA:41:6483,Europe/Paris,,OIF, +OIF:SP:59:6682583,1,"Pave Blanc",48.780493,2.239691,0,0,OIF:SA:59862,Europe/Paris,,OIF, +OIF:SP:59:6682584,1,"Mail de la Plaine",48.783859,2.245887,0,0,OIF:SA:59860,Europe/Paris,,OIF, +OIF:SP:59:6682585,1,"Picardie",48.786223,2.245678,0,0,OIF:SA:59:6682585,Europe/Paris,,OIF, +OIF:SP:59:6682594,1,"Mairie de Clamart",48.80005,2.263586,0,0,OIF:SA:59:3909052,Europe/Paris,,OIF, +OIF:SP:59:6682595,1,"Place Hunebelle",48.800749,2.260905,0,0,OIF:SA:59:3909051,Europe/Paris,,OIF, +OIF:SP:59:6682596,1,"Poste",48.801557,2.259761,0,0,OIF:SA:59:6682596,Europe/Paris,,OIF, +OIF:SP:59:6682597,1,"Place du Garde",48.803695,2.257649,0,0,OIF:SA:24:15051,Europe/Paris,,OIF, +OIF:SP:59:6682599,1,"D'Estienne d'Orves",48.809277,2.258715,0,0,OIF:SA:59:6682599,Europe/Paris,,OIF, +OIF:SP:59:6682602,1,"Chemin des Vignes",48.817274,2.25575,0,0,OIF:SA:59:3681796,Europe/Paris,,OIF, +OIF:SP:59:6682603,1,"Issy-RER",48.818912,2.258592,0,0,OIF:SA:8739307,Europe/Paris,,OIF, +OIF:SP:59:6682604,1,"Place John Fitzgerald Kennedy",48.820785,2.263924,0,0,OIF:SA:59:6682604,Europe/Paris,,OIF, +OIF:SP:59:6682605,1,"Bourgain - Général Gallieni",48.821866,2.267693,0,0,OIF:SA:59:3681790,Europe/Paris,,OIF, +OIF:SP:59:6682606,1,"Mairie d'Issy - Métro",48.825347,2.273133,0,0,OIF:SA:59522,Europe/Paris,,OIF, +OIF:SP:59:6682607,1,"Mairie d'Issy",48.824961,2.273773,0,0,OIF:SA:59522,Europe/Paris,,OIF, +OIF:SP:59:6682608,1,"Bourgain - Général Gallieni",48.822261,2.267774,0,0,OIF:SA:59:3681790,Europe/Paris,,OIF, +OIF:SP:59:6682609,1,"Place John Fitzgerald Kennedy",48.821189,2.263869,0,0,OIF:SA:59:6682604,Europe/Paris,,OIF, +OIF:SP:59:6682610,1,"Issy-RER",48.819092,2.258591,0,0,OIF:SA:8739307,Europe/Paris,,OIF, +OIF:SP:59:6682611,1,"Chemin des Vignes",48.817202,2.254811,0,0,OIF:SA:59:3681796,Europe/Paris,,OIF, +OIF:SP:59:6682614,1,"D'Estienne d'Orves",48.807875,2.258649,0,0,OIF:SA:59:6682599,Europe/Paris,,OIF, +OIF:SP:59:6682617,1,"Poste",48.801378,2.259788,0,0,OIF:SA:59:6682596,Europe/Paris,,OIF, +OIF:SP:59:6682618,1,"Place Hunebelle",48.800228,2.260797,0,0,OIF:SA:59:3909051,Europe/Paris,,OIF, +OIF:SP:59:6682619,1,"Mairie de Clamart",48.799582,2.263002,0,0,OIF:SA:59:3909052,Europe/Paris,,OIF, +OIF:SP:59:6682627,1,"Île de France",48.785536,2.240593,0,0,OIF:SA:59864,Europe/Paris,,OIF, +OIF:SP:59:6682628,1,"Picardie",48.784576,2.242349,0,0,OIF:SA:59:6682585,Europe/Paris,,OIF, +OIF:SP:59:6682629,1,"Mail de la Plaine",48.783689,2.245833,0,0,OIF:SA:59860,Europe/Paris,,OIF, +OIF:SP:59:6682630,1,"Pave Blanc",48.780366,2.238861,0,0,OIF:SA:59862,Europe/Paris,,OIF, +OIF:SP:59:6682631,1,"Charles Debry",48.778529,2.234391,0,0,OIF:SA:41:6483,Europe/Paris,,OIF, +OIF:SP:59:6682632,1,"Rond-Point du Petit Clamart - RD 906",48.777556,2.231931,0,0,OIF:SA:59:6682581,Europe/Paris,,OIF, +OIF:SP:59:6682634,1,"Meudon-la-Forêt",48.784409,2.225946,0,0,OIF:SA:59868,Europe/Paris,,OIF, +OIF:SP:59:6682653,1,"Brement - Général de Gaulle",48.88731,2.471907,0,0,OIF:SA:59:3446785,Europe/Paris,,OIF, +OIF:SP:59:6682654,1,"Cité du 1er Mai",48.891705,2.471128,0,0,OIF:SA:59:6682654,Europe/Paris,,OIF, +OIF:SP:59:6682655,1,"Cité du 1er Mai",48.891184,2.470922,0,0,OIF:SA:59:6682654,Europe/Paris,,OIF, +OIF:SP:59:6682656,1,"David Léder",48.893257,2.474171,0,0,OIF:SA:59:6682656,Europe/Paris,,OIF, +OIF:SP:59:6682657,1,"David Léder",48.893409,2.47424,0,0,OIF:SA:59:6682656,Europe/Paris,,OIF, +OIF:SP:59:6682658,1,"Gare de Bondy RER",48.894932,2.478619,0,0,OIF:SA:8711340,Europe/Paris,,OIF, +OIF:SP:59:6682660,1,"Edouard Vaillant - Carnot",48.896656,2.48011,0,0,OIF:SA:59:6682660,Europe/Paris,,OIF, +OIF:SP:59:6682661,1,"Blanqui - Carnot",48.900078,2.481714,0,0,OIF:SA:59:3682330,Europe/Paris,,OIF, +OIF:SP:59:6682663,1,"Église de Bondy",48.902525,2.47954,0,0,OIF:SA:59:3682351,Europe/Paris,,OIF, +OIF:SP:59:6682664,1,"Auguste Polissard",48.906856,2.480438,0,0,OIF:SA:59:5747178,Europe/Paris,,OIF, +OIF:SP:59:6682665,1,"Auguste Polissard",48.906676,2.480192,0,0,OIF:SA:59:5747178,Europe/Paris,,OIF, +OIF:SP:59:6682666,1,"Paul Renaud",48.910621,2.480585,0,0,OIF:SA:59:6682666,Europe/Paris,,OIF, +OIF:SP:59:6682667,1,"Route d'Aulnay - Jean Moulin",48.912408,2.481749,0,0,OIF:SA:59:6682667,Europe/Paris,,OIF, +OIF:SP:59:6682673,1,"Jouhaux - Blum",48.918163,2.478887,0,0,OIF:SA:59:3682338,Europe/Paris,,OIF, +OIF:SP:59:6682674,1,"Jouhaux - Blum",48.917975,2.478805,0,0,OIF:SA:59:3682338,Europe/Paris,,OIF, +OIF:SP:59:6682686,1,"Foch - Gallieni",48.927975,2.465303,0,0,OIF:SA:59:6682686,Europe/Paris,,OIF, +OIF:SP:59:6682687,1,"Joffre - Madelon",48.928509,2.461635,0,0,OIF:SA:59:6682687,Europe/Paris,,OIF, +OIF:SP:59:6682688,1,"Joffre - Madelon",48.92841,2.461594,0,0,OIF:SA:59:6682687,Europe/Paris,,OIF, +OIF:SP:59:6682689,1,"Émile Desprez",48.93004,2.458665,0,0,OIF:SA:59:4274313,Europe/Paris,,OIF, +OIF:SP:59:6682690,1,"Émile Desprez",48.929221,2.459864,0,0,OIF:SA:59:4274313,Europe/Paris,,OIF, +OIF:SP:59:6682691,1,"Place Joffre",48.930753,2.455707,0,0,OIF:SA:59:6682691,Europe/Paris,,OIF, +OIF:SP:59:6682692,1,"Place Joffre",48.930743,2.456103,0,0,OIF:SA:59:6682691,Europe/Paris,,OIF, +OIF:SP:59:6682693,1,"Drancy RER",48.93317,2.455604,0,0,OIF:SA:8727140,Europe/Paris,,OIF, +OIF:SP:59:6682694,1,"Drancy RER",48.933063,2.455399,0,0,OIF:SA:8727140,Europe/Paris,,OIF, +OIF:SP:59:6682695,1,"Roger Salomon",48.935793,2.457287,0,0,OIF:SA:59:6682695,Europe/Paris,,OIF, +OIF:SP:59:6682696,1,"Roger Salomon",48.935191,2.456604,0,0,OIF:SA:59:6682695,Europe/Paris,,OIF, +OIF:SP:59:6682699,1,"Hôtel de Ville du Blanc-Mesnil",48.938045,2.461112,0,0,OIF:SA:59:4274297,Europe/Paris,,OIF, +OIF:SP:59:6682700,1,"Hôtel de Ville du Blanc-Mesnil",48.938188,2.461235,0,0,OIF:SA:59:4274297,Europe/Paris,,OIF, +OIF:SP:59:6682701,1,"Église du Blanc-Mesnil",48.936431,2.465269,0,0,OIF:SA:59:6682701,Europe/Paris,,OIF, +OIF:SP:59:6682702,1,"Église du Blanc-Mesnil",48.936836,2.464752,0,0,OIF:SA:59:6682701,Europe/Paris,,OIF, +OIF:SP:59:6682703,1,"République - Paladhile",48.936141,2.467833,0,0,OIF:SA:59:6682703,Europe/Paris,,OIF, +OIF:SP:59:6682704,1,"République - Paladhile",48.935915,2.468828,0,0,OIF:SA:59:6682703,Europe/Paris,,OIF, +OIF:SP:59:6682705,1,"Docteur Calmette",48.940172,2.471267,0,0,OIF:SA:59:6682705,Europe/Paris,,OIF, +OIF:SP:59:6682706,1,"Docteur Calmette",48.939102,2.472178,0,0,OIF:SA:59:6682705,Europe/Paris,,OIF, +OIF:SP:59:6682707,1,"Place de la Libération",48.943116,2.466486,0,0,OIF:SA:59:6682707,Europe/Paris,,OIF, +OIF:SP:59:6682709,1,"Les Lycées",48.943591,2.468152,0,0,OIF:SA:59:6682709,Europe/Paris,,OIF, +OIF:SP:59:6682710,1,"Foch - Marne",48.927029,2.467414,0,0,OIF:SA:59:6682710,Europe/Paris,,OIF, +OIF:SP:59:6682711,1,"Mathilde Emilie",48.922128,2.469679,0,0,OIF:SA:59:6682711,Europe/Paris,,OIF, +OIF:SP:59:6682712,1,"Jardins de la Noue",48.918598,2.476407,0,0,OIF:SA:59:3672129,Europe/Paris,,OIF, +OIF:SP:59:6682713,1,"Gueugnon",48.909562,2.479968,0,0,OIF:SA:59:6682713,Europe/Paris,,OIF, +OIF:SP:59:6682714,1,"Blanqui - Salengro",48.900846,2.478581,0,0,OIF:SA:59:6682714,Europe/Paris,,OIF, +OIF:SP:59:6682715,1,"Baudin",48.897953,2.477401,0,0,OIF:SA:59:5991384,Europe/Paris,,OIF, +OIF:SP:59:6682716,1,"Brement",48.887006,2.470353,0,0,OIF:SA:59:3446785,Europe/Paris,,OIF, +OIF:SP:59:6683005,1,"Maison de Quartier Edmond Michelet",48.946678,2.536175,0,0,OIF:SA:59:6683005,Europe/Paris,,OIF, +OIF:SP:59:6686067,1,"Avenue Ronsard",48.948276,2.537368,0,0,OIF:SA:59:6686067,Europe/Paris,,OIF, +OIF:SP:59:6687888,1,"Sénat",48.849208,2.337042,0,0,OIF:SA:59:3765423,Europe/Paris,,OIF, +OIF:SP:59:6687890,1,"Champs Fourgons",48.94223,2.302744,0,0,OIF:SA:59:5081751,Europe/Paris,,OIF, +OIF:SP:59:6687891,1,"Route du Port",48.940243,2.302268,0,0,OIF:SA:59:6687891,Europe/Paris,,OIF, +OIF:SP:59:6687892,1,"Les Barbanniers",48.936074,2.303457,0,0,OIF:SA:59:6687892,Europe/Paris,,OIF, +OIF:SP:59:6687896,1,"Avenue du Vieux Chemin de Saint-Denis",48.932104,2.312285,0,0,OIF:SA:59:6687896,Europe/Paris,,OIF, +OIF:SP:59:6687897,1,"Moulin de Cage",48.929614,2.311236,0,0,OIF:SA:59699,Europe/Paris,,OIF, +OIF:SP:59:6687898,1,"Avenue Louis Roche N0 115-116",48.927116,2.31391,0,0,OIF:SA:59:6687898,Europe/Paris,,OIF, +OIF:SP:59:6687899,1,"Rue des Noëls",48.925418,2.31713,0,0,OIF:SA:59:6687899,Europe/Paris,,OIF, +OIF:SP:59:6687900,1,"Quatre Chemins",48.9231,2.32159,0,0,OIF:SA:59:4016809,Europe/Paris,,OIF, +OIF:SP:59:6687901,1,"Quai des Grésillons",48.921609,2.324264,0,0,OIF:SA:59:6687901,Europe/Paris,,OIF, +OIF:SP:59:6687903,1,"Quai de Seine",48.917592,2.331614,0,0,OIF:SA:59:5355389,Europe/Paris,,OIF, +OIF:SP:59:6687904,1,"Soubise",48.914932,2.331492,0,0,OIF:SA:59:6687904,Europe/Paris,,OIF, +OIF:SP:59:6687905,1,"Jean Jaurès - Mairie",48.912029,2.33546,0,0,OIF:SA:59:6687905,Europe/Paris,,OIF, +OIF:SP:59:6687906,1,"Rue de l'Union",48.910618,2.337383,0,0,OIF:SA:59:6687906,Europe/Paris,,OIF, +OIF:SP:59:6687907,1,"Godillot",48.908731,2.339414,0,0,OIF:SA:59:5726236,Europe/Paris,,OIF, +OIF:SP:59:6687913,1,"Michelet - Docteur Bauer",48.904875,2.344335,0,0,OIF:SA:59:4016591,Europe/Paris,,OIF, +OIF:SP:59:6687916,1,"Jean Jaurès - Mairie",48.913108,2.334574,0,0,OIF:SA:59:6687905,Europe/Paris,,OIF, +OIF:SP:59:6687918,1,"Quai de Seine",48.917817,2.331601,0,0,OIF:SA:59:5355389,Europe/Paris,,OIF, +OIF:SP:59:6687924,1,"Moulin de Cage",48.929551,2.311372,0,0,OIF:SA:59699,Europe/Paris,,OIF, +OIF:SP:59:6687925,1,"Avenue du Vieux Chemin de Saint-Denis",48.931996,2.312435,0,0,OIF:SA:59:6687896,Europe/Paris,,OIF, +OIF:SP:59:6687927,1,"Gennevilliers RER",48.933369,2.306487,0,0,OIF:SA:8727120,Europe/Paris,,OIF, +OIF:SP:59:6687929,1,"Les Barbanniers",48.936829,2.304207,0,0,OIF:SA:59:6687892,Europe/Paris,,OIF, +OIF:SP:59:6687930,1,"Route du Port",48.939884,2.304205,0,0,OIF:SA:59:6687891,Europe/Paris,,OIF, +OIF:SP:59:6687932,1,"ZAC des Louvresses",48.941529,2.305036,0,0,OIF:SA:59:6449064,Europe/Paris,,OIF, +OIF:SP:59:6687936,1,"Godillot",48.908353,2.340123,0,0,OIF:SA:59:5726236,Europe/Paris,,OIF, +OIF:SP:59:6687937,1,"Rue de l'Union",48.910996,2.33741,0,0,OIF:SA:59:6687906,Europe/Paris,,OIF, +OIF:SP:59:6687939,1,"Soubise",48.914869,2.331956,0,0,OIF:SA:59:6687904,Europe/Paris,,OIF, +OIF:SP:59:6687942,1,"Quai des Grésillons",48.921815,2.324291,0,0,OIF:SA:59:6687901,Europe/Paris,,OIF, +OIF:SP:59:6687943,1,"Quatre Chemins",48.923594,2.321072,0,0,OIF:SA:59:4016809,Europe/Paris,,OIF, +OIF:SP:59:6687944,1,"Rue des Noëls",48.925571,2.317293,0,0,OIF:SA:59:6687899,Europe/Paris,,OIF, +OIF:SP:59:6687945,1,"Avenue Louis Roche N0 115-116",48.927161,2.314238,0,0,OIF:SA:59:6687898,Europe/Paris,,OIF, +OIF:SP:59:6706086,1,"Porte d'Ivry - Château des Rentiers",48.822473,2.372485,0,0,OIF:SA:59287,Europe/Paris,,OIF, +OIF:SP:59:6741216,1,"Cité Floréal",48.942539,2.38441,0,0,OIF:SA:59:4000558,Europe/Paris,,OIF, +OIF:SP:59:6741219,1,"Chemin Vert",48.944832,2.381519,0,0,OIF:SA:59:4000560,Europe/Paris,,OIF, +OIF:SP:59:6741220,1,"Aulnes",48.944878,2.377863,0,0,OIF:SA:59:6741220,Europe/Paris,,OIF, +OIF:SP:59:6741221,1,"Aulnes",48.944752,2.378136,0,0,OIF:SA:59:6741220,Europe/Paris,,OIF, +OIF:SP:59:6741222,1,"Clos Hanot",48.947665,2.374795,0,0,OIF:SA:59:5726263,Europe/Paris,,OIF, +OIF:SP:59:6741225,1,"Saint-Denis - Université",48.946347,2.364002,0,0,OIF:SA:59540,Europe/Paris,,OIF, +OIF:SP:59:6741227,1,"Roger Semât",48.944533,2.355992,0,0,OIF:SA:59781,Europe/Paris,,OIF, +OIF:SP:59:6741229,1,"Stade Auguste Delaune",48.945595,2.350672,0,0,OIF:SA:59892,Europe/Paris,,OIF, +OIF:SP:59:6741230,1,"Stade Auguste Delaune",48.945118,2.351872,0,0,OIF:SA:59892,Europe/Paris,,OIF, +OIF:SP:59:6741231,1,"Delaunay - Belleville",48.946278,2.347275,0,0,OIF:SA:59892,Europe/Paris,,OIF, +OIF:SP:59:6741232,1,"Delaunay - Belleville",48.945945,2.34782,0,0,OIF:SA:59892,Europe/Paris,,OIF, +OIF:SP:59:6741233,1,"Robinson - Limite de Saint-Denis",48.946781,2.345706,0,0,OIF:SA:59:6741233,Europe/Paris,,OIF, +OIF:SP:59:6741234,1,"Robinson - Limite de Saint-Denis",48.946898,2.345146,0,0,OIF:SA:59:6741233,Europe/Paris,,OIF, +OIF:SP:59:6741235,1,"César",48.948723,2.343032,0,0,OIF:SA:59:4472728,Europe/Paris,,OIF, +OIF:SP:59:6741236,1,"César",48.948471,2.343018,0,0,OIF:SA:59:4472728,Europe/Paris,,OIF, +OIF:SP:59:6741242,1,"Gare d'Epinay-Villetaneuse",48.95815,2.328908,0,0,OIF:SA:8727112,Europe/Paris,,OIF, +OIF:SP:59:6741243,1,"Les 3 Communes",48.960666,2.326424,0,0,OIF:SA:59:6741243,Europe/Paris,,OIF, +OIF:SP:59:6741244,1,"Les 3 Communes",48.960621,2.326178,0,0,OIF:SA:59:6741243,Europe/Paris,,OIF, +OIF:SP:59:6741245,1,"Maréchal Foch",48.965122,2.320199,0,0,OIF:SA:59:6741245,Europe/Paris,,OIF, +OIF:SP:59:6741246,1,"Maréchal Foch",48.965006,2.320035,0,0,OIF:SA:59:6741245,Europe/Paris,,OIF, +OIF:SP:59:6741253,1,"Marche des Mortefontaines",48.97224,2.321589,0,0,OIF:SA:59:6741253,Europe/Paris,,OIF, +OIF:SP:59:6741256,1,"Clos Hanot",48.947476,2.37489,0,0,OIF:SA:59:6741256,Europe/Paris,,OIF, +OIF:SP:59:6741257,1,"Saint-Denis - Université",48.945943,2.363879,0,0,OIF:SA:59540,Europe/Paris,,OIF, +OIF:SP:59:6741268,1,"Mairie de Pierrefitte",48.963863,2.359821,0,0,OIF:SA:59793,Europe/Paris,,OIF, +OIF:SP:59:6741269,1,"Mairie de Pierrefitte",48.963612,2.360094,0,0,OIF:SA:59793,Europe/Paris,,OIF, +OIF:SP:59:6741270,1,"Église de Pierrefitte",48.966262,2.361173,0,0,OIF:SA:59:6741270,Europe/Paris,,OIF, +OIF:SP:59:6741271,1,"Général Gallieni - République",48.968383,2.362567,0,0,OIF:SA:59:6741271,Europe/Paris,,OIF, +OIF:SP:59:6741272,1,"Général Gallieni - République",48.968167,2.362239,0,0,OIF:SA:59:6741271,Europe/Paris,,OIF, +OIF:SP:59:6741273,1,"Cimetière de Pierrefitte",48.970602,2.363987,0,0,OIF:SA:59:6741273,Europe/Paris,,OIF, +OIF:SP:59:6741274,1,"Cimetière de Pierrefitte",48.970827,2.363905,0,0,OIF:SA:59:6741273,Europe/Paris,,OIF, +OIF:SP:59:6741275,1,"Butte Pinson",48.973594,2.365654,0,0,OIF:SA:59797,Europe/Paris,,OIF, +OIF:SP:59:6741276,1,"Butte Pinson",48.973873,2.365572,0,0,OIF:SA:59797,Europe/Paris,,OIF, +OIF:SP:59:6741277,1,"Les Poiriers",48.97842,2.368415,0,0,OIF:SA:59:6741277,Europe/Paris,,OIF, +OIF:SP:59:6741278,1,"Les Poiriers",48.978698,2.36791,0,0,OIF:SA:59:6741277,Europe/Paris,,OIF, +OIF:SP:59:6741279,1,"My Place",48.985975,2.374987,0,0,OIF:SA:59:4230053,Europe/Paris,,OIF, +OIF:SP:59:6741280,1,"Chantepie",48.985958,2.371546,0,0,OIF:SA:59:6741280,Europe/Paris,,OIF, +OIF:SP:59:6741283,1,"Alcide d'Orbigny.",48.965426,2.362811,0,0,OIF:SA:59793,Europe/Paris,,OIF, +OIF:SP:59:6741284,1,"Butte Pinson",48.973082,2.365982,0,0,OIF:SA:59797,Europe/Paris,,OIF, +OIF:SP:59:6741285,1,"Jacques Prévert",48.970755,2.365789,0,0,OIF:SA:59795,Europe/Paris,,OIF, +OIF:SP:59:6741286,1,"Alcide d'Orbigny",48.965354,2.362756,0,0,OIF:SA:59793,Europe/Paris,,OIF, +OIF:SP:59:6741292,1,"Roger Semât",48.944138,2.357657,0,0,OIF:SA:59781,Europe/Paris,,OIF, +OIF:SP:59:6741294,1,"Noisy-Champs RER - Descartes",48.842565,2.582371,0,0,OIF:SA:8775834,Europe/Paris,,OIF, +OIF:SP:59:6741295,1,"Noisy-Champs RER - Descartes",48.843482,2.582253,0,0,OIF:SA:8775834,Europe/Paris,,OIF, +OIF:SP:59:6741296,1,"C.R.O.U.S.",48.841645,2.583973,0,0,OIF:SA:59:6741296,Europe/Paris,,OIF, +OIF:SP:59:6741297,1,"C.R.O.U.S.",48.841914,2.584056,0,0,OIF:SA:59:6741296,Europe/Paris,,OIF, +OIF:SP:59:6741298,1,"Nobel",48.838515,2.585007,0,0,OIF:SA:59:6741298,Europe/Paris,,OIF, +OIF:SP:59:6741299,1,"Nobel",48.838667,2.585157,0,0,OIF:SA:59:6741298,Europe/Paris,,OIF, +OIF:SP:59:6741300,1,"Espace Descartes",48.836194,2.585826,0,0,OIF:SA:59:6741300,Europe/Paris,,OIF, +OIF:SP:59:6741301,1,"Espace Descartes",48.835735,2.586423,0,0,OIF:SA:59:6741300,Europe/Paris,,OIF, +OIF:SP:59:6741302,1,"Einstein - Galilée",48.835318,2.592057,0,0,OIF:SA:59:6741302,Europe/Paris,,OIF, +OIF:SP:59:6741303,1,"Einstein - Galilée",48.835175,2.591784,0,0,OIF:SA:59:6741302,Europe/Paris,,OIF, +OIF:SP:59:6741304,1,"Bois de l'Étang - Université",48.838039,2.593119,0,0,OIF:SA:59:6741304,Europe/Paris,,OIF, +OIF:SP:59:6741305,1,"Bois de l'Étang - Université",48.83812,2.592956,0,0,OIF:SA:59:6741304,Europe/Paris,,OIF, +OIF:SP:59:6741306,1,"Bibliothèque",48.840712,2.591471,0,0,OIF:SA:59:6741306,Europe/Paris,,OIF, +OIF:SP:59:6741307,1,"Bibliothèque",48.840595,2.591675,0,0,OIF:SA:59:6741306,Europe/Paris,,OIF, +OIF:SP:59:6741308,1,"Frères Lumière - I.F.U.",48.83789,2.587155,0,0,OIF:SA:59:6741308,Europe/Paris,,OIF, +OIF:SP:59:6741309,1,"Frères Lumière - I.F.U.",48.838004,2.588585,0,0,OIF:SA:59:6741308,Europe/Paris,,OIF, +OIF:SP:59:6741310,1,"La Butte aux Cailles",48.837316,2.578003,0,0,OIF:SA:59:4614529,Europe/Paris,,OIF, +OIF:SP:59:6741311,1,"La Butte aux Cailles",48.83719,2.577866,0,0,OIF:SA:59:4614529,Europe/Paris,,OIF, +OIF:SP:59:6741312,1,"Montgolfière",48.83122,2.574557,0,0,OIF:SA:59:6741312,Europe/Paris,,OIF, +OIF:SP:59:6741313,1,"Montgolfière",48.831452,2.575552,0,0,OIF:SA:59:6741312,Europe/Paris,,OIF, +OIF:SP:59:6741314,1,"Victor-Hugo",48.828874,2.574451,0,0,OIF:SA:59:4614468,Europe/Paris,,OIF, +OIF:SP:59:6741315,1,"Victor-Hugo",48.829252,2.574358,0,0,OIF:SA:59:4614468,Europe/Paris,,OIF, +OIF:SP:59:6741316,1,"Les Yvris - Noisy-le-Grand RER",48.823479,2.580143,0,0,OIF:SA:8711380,Europe/Paris,,OIF, +OIF:SP:59:6741317,1,"Les Yvris - Noisy-le-Grand RER",48.823579,2.579736,0,0,OIF:SA:8711380,Europe/Paris,,OIF, +OIF:SP:59:6741318,1,"Collège des Yvris",48.825797,2.584891,0,0,OIF:SA:59:6741318,Europe/Paris,,OIF, +OIF:SP:59:6741319,1,"Collège des Yvris",48.825843,2.584647,0,0,OIF:SA:59:6741318,Europe/Paris,,OIF, +OIF:SP:59:6741328,1,"Les Vignes de Bailly",48.839782,2.60176,0,0,OIF:SA:59:6741328,Europe/Paris,,OIF, +OIF:SP:59:6741329,1,"Les Vignes de Bailly",48.839917,2.601802,0,0,OIF:SA:59:6741328,Europe/Paris,,OIF, +OIF:SP:59:6741330,1,"Place Pablo Picasso",48.841301,2.605662,0,0,OIF:SA:59:3681669,Europe/Paris,,OIF, +OIF:SP:59:6741331,1,"Place Pablo Picasso",48.841114,2.60494,0,0,OIF:SA:59:3681669,Europe/Paris,,OIF, +OIF:SP:59:6741332,1,"Fontaine aux Coulons",48.844988,2.60451,0,0,OIF:SA:59:6741332,Europe/Paris,,OIF, +OIF:SP:59:6741333,1,"Fontaine aux Coulons",48.84516,2.604293,0,0,OIF:SA:59:6741332,Europe/Paris,,OIF, +OIF:SP:59:6741334,1,"Rue de Malnoue",48.848465,2.601219,0,0,OIF:SA:59:6741334,Europe/Paris,,OIF, +OIF:SP:59:6741335,1,"Rue de Malnoue",48.848447,2.601056,0,0,OIF:SA:59:6741334,Europe/Paris,,OIF, +OIF:SP:59:6741336,1,"Mairie de Champs",48.851441,2.600608,0,0,OIF:SA:59:5231544,Europe/Paris,,OIF, +OIF:SP:59:6741337,1,"Mairie de Champs",48.851307,2.600471,0,0,OIF:SA:59:5231544,Europe/Paris,,OIF, +OIF:SP:59:6741338,1,"Pointe de Champs",48.854468,2.597491,0,0,OIF:SA:59:6741338,Europe/Paris,,OIF, +OIF:SP:59:6741339,1,"Pointe de Champs",48.854694,2.596688,0,0,OIF:SA:59:6741338,Europe/Paris,,OIF, +OIF:SP:59:6741340,1,"Les Pinsons",48.858438,2.594473,0,0,OIF:SA:59:6741340,Europe/Paris,,OIF, +OIF:SP:59:6741341,1,"Les Pinsons",48.858512,2.593574,0,0,OIF:SA:59:6741340,Europe/Paris,,OIF, +OIF:SP:59:6741342,1,"Albert Berthelot",48.859215,2.588293,0,0,OIF:SA:59:6741342,Europe/Paris,,OIF, +OIF:SP:59:6741343,1,"Albert Berthelot",48.859375,2.589329,0,0,OIF:SA:59:6741342,Europe/Paris,,OIF, +OIF:SP:59:6741344,1,"Vallaud - Jean Jaurès",48.857692,2.586161,0,0,OIF:SA:59:6741344,Europe/Paris,,OIF, +OIF:SP:59:6741345,1,"Vallaud - Jean Jaurès",48.857593,2.586242,0,0,OIF:SA:59:6741344,Europe/Paris,,OIF, +OIF:SP:59:6741346,1,"Rond-Point des Pyramides",48.855828,2.583496,0,0,OIF:SA:59:5231548,Europe/Paris,,OIF, +OIF:SP:59:6741347,1,"Rond-Point des Pyramides",48.855818,2.583741,0,0,OIF:SA:59:5231548,Europe/Paris,,OIF, +OIF:SP:59:6741348,1,"Collège Armand Lanoux",48.852717,2.584121,0,0,OIF:SA:59:6741348,Europe/Paris,,OIF, +OIF:SP:59:6741349,1,"Collège Armand Lanoux",48.852438,2.584474,0,0,OIF:SA:59:6741348,Europe/Paris,,OIF, +OIF:SP:59:6741350,1,"Général de Gaulle",48.850423,2.585036,0,0,OIF:SA:59:3681626,Europe/Paris,,OIF, +OIF:SP:59:6741351,1,"Général de Gaulle",48.850585,2.585255,0,0,OIF:SA:59:3681626,Europe/Paris,,OIF, +OIF:SP:59:6741352,1,"Bois de Grâce",48.848292,2.585448,0,0,OIF:SA:59:6741352,Europe/Paris,,OIF, +OIF:SP:59:6741353,1,"Bois de Grâce",48.848445,2.585585,0,0,OIF:SA:59:6741352,Europe/Paris,,OIF, +OIF:SP:59:6741354,1,"Lycée Rene Descartes",48.845237,2.585284,0,0,OIF:SA:59:6741354,Europe/Paris,,OIF, +OIF:SP:59:6741355,1,"Lycée Rene Descartes",48.845093,2.585515,0,0,OIF:SA:59:6741354,Europe/Paris,,OIF, +OIF:SP:59:6741356,1,"Ampère",48.844819,2.582953,0,0,OIF:SA:59:6741356,Europe/Paris,,OIF, +OIF:SP:59:6741357,1,"Ampère",48.844855,2.583103,0,0,OIF:SA:59:6741356,Europe/Paris,,OIF, +OIF:SP:59:6741358,1,"Noisy-Champs RER - Descartes.",48.842664,2.581963,0,0,OIF:SA:8775834,Europe/Paris,,OIF, +OIF:SP:59:6741359,1,"Noisy-Champs RER - Descartes.",48.843464,2.582035,0,0,OIF:SA:8775834,Europe/Paris,,OIF, +OIF:SP:59:6741373,1,"Place Roosevelt",48.861597,2.579342,0,0,OIF:SA:59:3681650,Europe/Paris,,OIF, +OIF:SP:59:6741374,1,"Place Churchill",48.858294,2.581655,0,0,OIF:SA:59:4208538,Europe/Paris,,OIF, +OIF:SP:59:6741375,1,"Place Churchill",48.858789,2.581644,0,0,OIF:SA:59:4208538,Europe/Paris,,OIF, +OIF:SP:59:6741376,1,"Rond-Point des Pyramides",48.855346,2.581955,0,0,OIF:SA:59:5231548,Europe/Paris,,OIF, +OIF:SP:59:6741377,1,"Rond-Point des Pyramides",48.855264,2.582213,0,0,OIF:SA:59:5231548,Europe/Paris,,OIF, +OIF:SP:59:6741379,1,"Claude Bernard",48.854481,2.578328,0,0,OIF:SA:59:3681653,Europe/Paris,,OIF, +OIF:SP:59:6741380,1,"Xavier Bichat",48.851147,2.57823,0,0,OIF:SA:59:6741380,Europe/Paris,,OIF, +OIF:SP:59:6741381,1,"Xavier Bichat",48.851246,2.578326,0,0,OIF:SA:59:6741380,Europe/Paris,,OIF, +OIF:SP:59:6741383,1,"Flandres - Dunkerque 1940",48.850537,2.582191,0,0,OIF:SA:59:3681625,Europe/Paris,,OIF, +OIF:SP:59:6741385,1,"Général de Gaulle",48.850235,2.584627,0,0,OIF:SA:59:3681626,Europe/Paris,,OIF, +OIF:SP:59:6741392,1,"Noisy-Champs RER - Descartes",48.842673,2.582045,0,0,OIF:SA:8775834,Europe/Paris,,OIF, +OIF:SP:59:6741393,1,"Noisy-Champs RER - Descartes",48.843438,2.581735,0,0,OIF:SA:8775834,Europe/Paris,,OIF, +OIF:SP:59:6741394,1,"Noisy-Champs RER - Descartes.",48.842556,2.582167,0,0,OIF:SA:8775834,Europe/Paris,,OIF, +OIF:SP:59:6741406,1,"Galilée - Pascal",48.84074,2.595243,0,0,OIF:SA:59:6741406,Europe/Paris,,OIF, +OIF:SP:59:6741407,1,"Galilée - Pascal",48.840839,2.59493,0,0,OIF:SA:59:6741406,Europe/Paris,,OIF, +OIF:SP:59:6741414,1,"Guy de Maupassant",48.8469,2.60964,0,0,OIF:SA:59:6741414,Europe/Paris,,OIF, +OIF:SP:59:6741415,1,"Guy de Maupassant",48.846965,2.608933,0,0,OIF:SA:59:6741414,Europe/Paris,,OIF, +OIF:SP:59:6741416,1,"Collège le Luzard",48.846765,2.613589,0,0,OIF:SA:59:6741416,Europe/Paris,,OIF, +OIF:SP:59:6741417,1,"Collège le Luzard",48.846792,2.613712,0,0,OIF:SA:59:6741416,Europe/Paris,,OIF, +OIF:SP:59:6741418,1,"Noisiel RER",48.843695,2.616078,0,0,OIF:SA:8775835,Europe/Paris,,OIF, +OIF:SP:59:6741419,1,"Noisiel RER",48.843793,2.616106,0,0,OIF:SA:8775835,Europe/Paris,,OIF, +OIF:SP:59:6741420,1,"Les Totems",48.840732,2.618581,0,0,OIF:SA:59:6741420,Europe/Paris,,OIF, +OIF:SP:59:6741421,1,"Les Totems",48.841406,2.618694,0,0,OIF:SA:59:6741420,Europe/Paris,,OIF, +OIF:SP:59:6741422,1,"Les Hameaux",48.840016,2.621219,0,0,OIF:SA:13:134,Europe/Paris,,OIF, +OIF:SP:59:6741423,1,"Les Hameaux",48.840276,2.621275,0,0,OIF:SA:13:134,Europe/Paris,,OIF, +OIF:SP:59:6741424,1,"Le Village",48.838597,2.628005,0,0,OIF:SA:59:6741424,Europe/Paris,,OIF, +OIF:SP:59:6741425,1,"Le Village",48.838867,2.628047,0,0,OIF:SA:59:6741424,Europe/Paris,,OIF, +OIF:SP:59:6741428,1,"Toussaint Louverture",48.949492,2.365532,0,0,OIF:SA:59:6741428,Europe/Paris,,OIF, +OIF:SP:59:6741429,1,"Toussaint Louverture",48.949654,2.364836,0,0,OIF:SA:59:6741428,Europe/Paris,,OIF, +OIF:SP:59:6741430,1,"Lycée de Pierrefitte-sur-Seine",48.953131,2.368659,0,0,OIF:SA:59:6741430,Europe/Paris,,OIF, +OIF:SP:59:6741431,1,"Lycée de Pierrefitte-sur-Seine",48.952205,2.368685,0,0,OIF:SA:59:6741430,Europe/Paris,,OIF, +OIF:SP:59:6741432,1,"Pierre Curie - Clinique de l'Estrée",48.956115,2.367801,0,0,OIF:SA:59:6741432,Europe/Paris,,OIF, +OIF:SP:59:6741433,1,"Gare de Pierrefitte - Stains",48.958146,2.368034,0,0,OIF:SA:8727116,Europe/Paris,,OIF, +OIF:SP:59:6741434,1,"Gare de Pierrefitte - Stains",48.958254,2.36843,0,0,OIF:SA:8727116,Europe/Paris,,OIF, +OIF:SP:59:6741435,1,"Gare de Pierrefitte - Stains RER",48.963384,2.370726,0,0,OIF:SA:8727116,Europe/Paris,,OIF, +OIF:SP:59:6741436,1,"Gare de Pierrefitte - Stains RER",48.964884,2.372951,0,0,OIF:SA:8727116,Europe/Paris,,OIF, +OIF:SP:59:6741437,1,"Jean Grignoux",48.968784,2.374415,0,0,OIF:SA:59:6741437,Europe/Paris,,OIF, +OIF:SP:59:6741438,1,"Les Sablons",48.971372,2.375522,0,0,OIF:SA:59:6741438,Europe/Paris,,OIF, +OIF:SP:59:6741439,1,"Camille Saint-Saëns",48.9738,2.371019,0,0,OIF:SA:59:6741439,Europe/Paris,,OIF, +OIF:SP:59:6741440,1,"Camille Saint-Saëns",48.973602,2.371347,0,0,OIF:SA:59:6741439,Europe/Paris,,OIF, +OIF:SP:59:6741441,1,"Place André Gide",48.976541,2.370816,0,0,OIF:SA:59799,Europe/Paris,,OIF, +OIF:SP:59:6741442,1,"Place André Gide",48.976541,2.369861,0,0,OIF:SA:59799,Europe/Paris,,OIF, +OIF:SP:59:6741443,1,"Les Cholettes",48.977439,2.371131,0,0,OIF:SA:59799,Europe/Paris,,OIF, +OIF:SP:59:6741444,1,"Les Cholettes",48.977385,2.37094,0,0,OIF:SA:59799,Europe/Paris,,OIF, +OIF:SP:59:6741447,1,"Chantepie",48.985752,2.37171,0,0,OIF:SA:59:6741280,Europe/Paris,,OIF, +OIF:SP:59:6741453,1,"Mairie de Sarcelles",48.996479,2.379638,0,0,OIF:SA:59:6741453,Europe/Paris,,OIF, +OIF:SP:59:6741454,1,"Mairie de Sarcelles",48.996156,2.379269,0,0,OIF:SA:59:6741453,Europe/Paris,,OIF, +OIF:SP:59:6741459,1,"Docteur Rampon",49.005914,2.382624,0,0,OIF:SA:59:6741459,Europe/Paris,,OIF, +OIF:SP:59:6741460,1,"Docteur Rampon",49.006039,2.382473,0,0,OIF:SA:59:6741459,Europe/Paris,,OIF, +OIF:SP:59:6741461,1,"Espérance - Julien Boursier",49.009867,2.38454,0,0,OIF:SA:59:6741461,Europe/Paris,,OIF, +OIF:SP:59:6741462,1,"Espérance - Julien Boursier",49.009974,2.384786,0,0,OIF:SA:59:6741461,Europe/Paris,,OIF, +OIF:SP:59:6741463,1,"Église de Villiers-le-Bel",49.00805,2.389264,0,0,OIF:SA:59:6741463,Europe/Paris,,OIF, +OIF:SP:59:6741464,1,"Église de Villiers-le-Bel",49.008085,2.389756,0,0,OIF:SA:59:6741463,Europe/Paris,,OIF, +OIF:SP:59:6741465,1,"Les Lierres - Louise Michel",49.006952,2.392583,0,0,OIF:SA:59:6741465,Europe/Paris,,OIF, +OIF:SP:59:6741467,1,"Henri Sellier",49.007803,2.398198,0,0,OIF:SA:59:6741467,Europe/Paris,,OIF, +OIF:SP:59:6741468,1,"Henri Sellier",49.007857,2.39802,0,0,OIF:SA:59:6741467,Europe/Paris,,OIF, +OIF:SP:59:6741469,1,"Puits la Marlière",49.008412,2.401327,0,0,OIF:SA:59:6741469,Europe/Paris,,OIF, +OIF:SP:59:6741470,1,"Puits la Marlière",49.008556,2.401217,0,0,OIF:SA:59:6741469,Europe/Paris,,OIF, +OIF:SP:59:6741472,1,"Place Berlioz",49.005366,2.400694,0,0,OIF:SA:59:6741472,Europe/Paris,,OIF, +OIF:SP:59:6741480,1,"Villiers le Bel - Gonesse - Arnouville RER",48.994815,2.416769,0,0,OIF:SA:8727622,Europe/Paris,,OIF, +OIF:SP:59:6741481,1,"Les Lierres - Hérivaux",49.00731,2.395247,0,0,OIF:SA:59:6741481,Europe/Paris,,OIF, +OIF:SP:59:6741482,1,"L'Espérance",49.00878,2.383295,0,0,OIF:SA:59:6741482,Europe/Paris,,OIF, +OIF:SP:59:6741483,1,"Les Sablons",48.972244,2.375646,0,0,OIF:SA:59:6741483,Europe/Paris,,OIF, +OIF:SP:59:6741484,1,"Jean Grignoux",48.968326,2.374032,0,0,OIF:SA:59:6741484,Europe/Paris,,OIF, +OIF:SP:59:6741486,1,"Etienne Dolet Pasteur",48.964626,2.365595,0,0,OIF:SA:59:6741486,Europe/Paris,,OIF, +OIF:SP:59:6741487,1,"Gare de Pierrefitte - Stains Pasteur",48.962711,2.369224,0,0,OIF:SA:8727116,Europe/Paris,,OIF, +OIF:SP:59:6741488,1,"Pierre Curie - Clinique de l'Estrée",48.95607,2.367623,0,0,OIF:SA:59:6741488,Europe/Paris,,OIF, +OIF:SP:59:6741605,1,"Guynemer",48.948308,2.357617,0,0,OIF:SA:59783,Europe/Paris,,OIF, +OIF:SP:59:6741606,1,"Petit Pierrefitte",48.952549,2.358151,0,0,OIF:SA:59785,Europe/Paris,,OIF, +OIF:SP:59:6741607,1,"Joncherolles",48.956539,2.358644,0,0,OIF:SA:59787,Europe/Paris,,OIF, +OIF:SP:59:6741608,1,"Suzanne Valadon",48.958453,2.358863,0,0,OIF:SA:59789,Europe/Paris,,OIF, +OIF:SP:59:6741609,1,"Mairie de Pierrefitte",48.963189,2.359903,0,0,OIF:SA:59793,Europe/Paris,,OIF, +OIF:SP:59:6741610,1,"Alcide d'Orbigny",48.965184,2.363015,0,0,OIF:SA:59793,Europe/Paris,,OIF, +OIF:SP:59:6741611,1,"Jacques Prévert",48.970871,2.366199,0,0,OIF:SA:59795,Europe/Paris,,OIF, +OIF:SP:59:6741612,1,"Butte Pinson",48.973001,2.366459,0,0,OIF:SA:59797,Europe/Paris,,OIF, +OIF:SP:59:6741624,1,"Victor Hugo",49.006033,2.396816,0,0,OIF:SA:59:6741624,Europe/Paris,,OIF, +OIF:SP:59:6741627,1,"Place Berlioz",49.005402,2.400244,0,0,OIF:SA:59:6741472,Europe/Paris,,OIF, +OIF:SP:59:6741628,1,"Pierre Semard",49.002858,2.401784,0,0,OIF:SA:59:6741628,Europe/Paris,,OIF, +OIF:SP:59:6741630,1,"Les Carreaux",48.998798,2.414563,0,0,OIF:SA:59:6741630,Europe/Paris,,OIF, +OIF:SP:59:6741631,1,"Villiers le Bel - Gonesse - Arnouville RER",48.994133,2.416058,0,0,OIF:SA:8727622,Europe/Paris,,OIF, +OIF:SP:59:6741644,1,"Saint-Denis - Université",48.946176,2.365175,0,0,OIF:SA:59540,Europe/Paris,,OIF, +OIF:SP:59:6741648,1,"Guynemer",48.948119,2.357222,0,0,OIF:SA:59783,Europe/Paris,,OIF, +OIF:SP:59:6741649,1,"Suzanne Valadon",48.960161,2.35784,0,0,OIF:SA:59789,Europe/Paris,,OIF, +OIF:SP:59:6741650,1,"Suzanne Valadon",48.960053,2.357786,0,0,OIF:SA:59789,Europe/Paris,,OIF, +OIF:SP:59:6741651,1,"Collège Lucie Aubrac",48.960135,2.351795,0,0,OIF:SA:59:6741651,Europe/Paris,,OIF, +OIF:SP:59:6741652,1,"Collège Lucie Aubrac",48.960126,2.352982,0,0,OIF:SA:59:6741651,Europe/Paris,,OIF, +OIF:SP:59:6741653,1,"Gymnase Jesse Owens",48.958275,2.349406,0,0,OIF:SA:59:6741653,Europe/Paris,,OIF, +OIF:SP:59:6741654,1,"Gymnase Jesse Owens",48.958077,2.349542,0,0,OIF:SA:59:6741653,Europe/Paris,,OIF, +OIF:SP:59:6741655,1,"Pablo Neruda",48.956829,2.344766,0,0,OIF:SA:59898,Europe/Paris,,OIF, +OIF:SP:59:6741656,1,"Pablo Neruda",48.956757,2.344479,0,0,OIF:SA:59898,Europe/Paris,,OIF, +OIF:SP:59:6741657,1,"Villetaneuse - Université",48.960891,2.342719,0,0,OIF:SA:59900,Europe/Paris,,OIF, +OIF:SP:59:6741658,1,"Villetaneuse - Université",48.960783,2.34261,0,0,OIF:SA:59900,Europe/Paris,,OIF, +OIF:SP:59:6741661,1,"Cité Grandcoing",48.965402,2.34448,0,0,OIF:SA:59:6741661,Europe/Paris,,OIF, +OIF:SP:59:6741662,1,"Cité Grandcoing",48.965429,2.344317,0,0,OIF:SA:59:6741661,Europe/Paris,,OIF, +OIF:SP:59:6741663,1,"Jean Missout",48.967235,2.344713,0,0,OIF:SA:59:6741663,Europe/Paris,,OIF, +OIF:SP:59:6741664,1,"Jean Missout",48.967595,2.344467,0,0,OIF:SA:59:6741663,Europe/Paris,,OIF, +OIF:SP:59:6741665,1,"Robert Foulon",48.971108,2.347525,0,0,OIF:SA:59:6741665,Europe/Paris,,OIF, +OIF:SP:59:6741666,1,"Robert Foulon",48.971854,2.347812,0,0,OIF:SA:59:6741665,Europe/Paris,,OIF, +OIF:SP:59:6741670,1,"Rue Haute",48.975638,2.331663,0,0,OIF:SA:59:6741670,Europe/Paris,,OIF, +OIF:SP:59:6741671,1,"Rue Haute",48.975278,2.332591,0,0,OIF:SA:59:6741670,Europe/Paris,,OIF, +OIF:SP:59:6741672,1,"Église de Deuil-la-Barre",48.975808,2.325998,0,0,OIF:SA:59:6741672,Europe/Paris,,OIF, +OIF:SP:59:6741673,1,"Église de Deuil-la-Barre",48.975772,2.326912,0,0,OIF:SA:59:6741672,Europe/Paris,,OIF, +OIF:SP:59:6741674,1,"La Poste",48.97366,2.323254,0,0,OIF:SA:59:6741674,Europe/Paris,,OIF, +OIF:SP:59:6741675,1,"La Poste",48.974325,2.323964,0,0,OIF:SA:59:6741674,Europe/Paris,,OIF, +OIF:SP:59:6741676,1,"Marche des Mortefontaines",48.972159,2.321071,0,0,OIF:SA:59:6741253,Europe/Paris,,OIF, +OIF:SP:59:6741677,1,"Le Stade",48.969463,2.32028,0,0,OIF:SA:59:6741677,Europe/Paris,,OIF, +OIF:SP:59:6741678,1,"Le Stade",48.969005,2.320143,0,0,OIF:SA:59:6741677,Europe/Paris,,OIF, +OIF:SP:59:6741679,1,"Place de la Barre",48.967126,2.317769,0,0,OIF:SA:8727117,Europe/Paris,,OIF, +OIF:SP:59:6741680,1,"Place de la Barre",48.967162,2.317073,0,0,OIF:SA:8727117,Europe/Paris,,OIF, +OIF:SP:59:6741681,1,"Les Coutures",48.970082,2.313332,0,0,OIF:SA:59:6741681,Europe/Paris,,OIF, +OIF:SP:59:6741682,1,"Les Coutures",48.969902,2.313223,0,0,OIF:SA:59:6741681,Europe/Paris,,OIF, +OIF:SP:59:6741683,1,"Gare d'Enghien-les-Bains",48.972552,2.307747,0,0,OIF:SA:8727602,Europe/Paris,,OIF, +OIF:SP:59:6741685,1,"Marche de Deuil-la-Barre",48.972016,2.322982,0,0,OIF:SA:59:6741685,Europe/Paris,,OIF, +OIF:SP:59:6742120,1,"Zone Artisanale du Moutier",48.969212,2.329603,0,0,OIF:SA:59:6742120,Europe/Paris,,OIF, +OIF:SP:59:6742122,1,"Gallieni - Jonas",48.965977,2.327501,0,0,OIF:SA:59:6742122,Europe/Paris,,OIF, +OIF:SP:59:6742123,1,"Gallieni - Jonas",48.966085,2.327747,0,0,OIF:SA:59:6742122,Europe/Paris,,OIF, +OIF:SP:59:6742124,1,"La Galathée",48.965177,2.329494,0,0,OIF:SA:59:6742124,Europe/Paris,,OIF, +OIF:SP:59:6742125,1,"La Galathée",48.965276,2.329685,0,0,OIF:SA:59:6742124,Europe/Paris,,OIF, +OIF:SP:59:6742126,1,"Louis Braille",48.96373,2.328866,0,0,OIF:SA:59:6742126,Europe/Paris,,OIF, +OIF:SP:59:6742127,1,"Louis Braille",48.963614,2.329522,0,0,OIF:SA:59:6742126,Europe/Paris,,OIF, +OIF:SP:59:6742128,1,"Abel Fauveau",48.961843,2.326819,0,0,OIF:SA:59:6742128,Europe/Paris,,OIF, +OIF:SP:59:6742129,1,"Abel Fauveau",48.961708,2.326874,0,0,OIF:SA:59:6742128,Europe/Paris,,OIF, +OIF:SP:59:6742130,1,"Gare d'Epinay - Villetaneuse",48.959282,2.327325,0,0,OIF:SA:8727112,Europe/Paris,,OIF, +OIF:SP:59:6742131,1,"Flammarion",48.960827,2.322371,0,0,OIF:SA:59:6742131,Europe/Paris,,OIF, +OIF:SP:59:6742132,1,"Chopin",48.962076,2.318631,0,0,OIF:SA:59:6742132,Europe/Paris,,OIF, +OIF:SP:59:6742133,1,"Progrès",48.963504,2.316678,0,0,OIF:SA:59:6742133,Europe/Paris,,OIF, +OIF:SP:59:6742134,1,"Progrès",48.963262,2.316078,0,0,OIF:SA:59:6742133,Europe/Paris,,OIF, +OIF:SP:59:6742135,1,"Place de la Barre",48.966695,2.318056,0,0,OIF:SA:8727117,Europe/Paris,,OIF, +OIF:SP:59:6742137,1,"18 Juin 1940",48.96993,2.31987,0,0,OIF:SA:59:6742137,Europe/Paris,,OIF, +OIF:SP:59:6742138,1,"18 Juin 1940",48.969822,2.319843,0,0,OIF:SA:59:6742137,Europe/Paris,,OIF, +OIF:SP:59:6742139,1,"Eugène Lamarre",48.972302,2.316702,0,0,OIF:SA:59:6742139,Europe/Paris,,OIF, +OIF:SP:59:6742140,1,"Eugène Lamarre",48.971646,2.316498,0,0,OIF:SA:59:6742139,Europe/Paris,,OIF, +OIF:SP:59:6742141,1,"Cimetière de Deuil-la-Barre",48.975277,2.318503,0,0,OIF:SA:59:6742141,Europe/Paris,,OIF, +OIF:SP:59:6742142,1,"Cimetière de Deuil-la-Barre",48.975448,2.318066,0,0,OIF:SA:59:6742141,Europe/Paris,,OIF, +OIF:SP:59:6742143,1,"Mathieu Chazotte",48.975152,2.321834,0,0,OIF:SA:59:6742143,Europe/Paris,,OIF, +OIF:SP:59:6742144,1,"Mathieu Chazotte",48.975358,2.32137,0,0,OIF:SA:59:6742143,Europe/Paris,,OIF, +OIF:SP:59:6742149,1,"Gare de Deuil - Montmagny",48.975162,2.336127,0,0,OIF:SA:8727634,Europe/Paris,,OIF, +OIF:SP:59:6742150,1,"Mairie de Montmagny",48.974272,2.346843,0,0,OIF:SA:59:6742150,Europe/Paris,,OIF, +OIF:SP:59:6742151,1,"Mairie de Montmagny",48.974946,2.345014,0,0,OIF:SA:59:6742150,Europe/Paris,,OIF, +OIF:SP:59:6742152,1,"Carrières - Bel Air",48.973435,2.351102,0,0,OIF:SA:59:6742152,Europe/Paris,,OIF, +OIF:SP:59:6742153,1,"Carrières - Bel Air",48.973705,2.350311,0,0,OIF:SA:59:6742152,Europe/Paris,,OIF, +OIF:SP:59:6742154,1,"Suzanne Valadon",48.970164,2.355701,0,0,OIF:SA:59:6742154,Europe/Paris,,OIF, +OIF:SP:59:6742155,1,"Suzanne Valadon",48.970101,2.355906,0,0,OIF:SA:59:6742154,Europe/Paris,,OIF, +OIF:SP:59:6742156,1,"Rue de la République",48.968006,2.360833,0,0,OIF:SA:59:6742156,Europe/Paris,,OIF, +OIF:SP:59:6742157,1,"Rue de la République",48.968087,2.360928,0,0,OIF:SA:59:6742156,Europe/Paris,,OIF, +OIF:SP:59:6742158,1,"Alcide d'Orbigny - de Gaullle",48.96708,2.364013,0,0,OIF:SA:59:6742158,Europe/Paris,,OIF, +OIF:SP:59:6742159,1,"Alcide d'Orbigny - de Gaullle",48.967169,2.364067,0,0,OIF:SA:59:6742158,Europe/Paris,,OIF, +OIF:SP:59:6742161,1,"Gare de Pierrefitte - Stains RER",48.963285,2.370576,0,0,OIF:SA:8727116,Europe/Paris,,OIF, +OIF:SP:59:6742164,1,"Gare de Deuil - Montmagny",48.975153,2.338516,0,0,OIF:SA:8727634,Europe/Paris,,OIF, +OIF:SP:59:6742165,1,"Maréchal Foch",48.96576,2.319012,0,0,OIF:SA:59:6741245,Europe/Paris,,OIF, +OIF:SP:59:6742166,1,"Alexandre Dumas",48.961167,2.31496,0,0,OIF:SA:59:6742166,Europe/Paris,,OIF, +OIF:SP:59:6742167,1,"Les Presles",48.959694,2.317499,0,0,OIF:SA:59:6742167,Europe/Paris,,OIF, +OIF:SP:59:6742168,1,"Saint-Exupéry",48.959083,2.320488,0,0,OIF:SA:59:6742168,Europe/Paris,,OIF, +OIF:SP:59:6742169,1,"Gare d'Epinay - Villetaneuse",48.958976,2.325878,0,0,OIF:SA:8727112,Europe/Paris,,OIF, +OIF:SP:59:6742170,1,"Village Artisanal",48.96923,2.330108,0,0,OIF:SA:59:6742170,Europe/Paris,,OIF, +OIF:SP:59:6742171,1,"Place Jean Moulin",48.971073,2.330694,0,0,OIF:SA:59:6742171,Europe/Paris,,OIF, +OIF:SP:59:6742261,1,"École Jean Jaurès",48.979105,2.387774,0,0,OIF:SA:59:6742261,Europe/Paris,,OIF, +OIF:SP:59:6742262,1,"École Jean Jaurès",48.979159,2.387542,0,0,OIF:SA:59:6742261,Europe/Paris,,OIF, +OIF:SP:59:6742264,1,"Haut du Roy",48.983103,2.388556,0,0,OIF:SA:59:6742264,Europe/Paris,,OIF, +OIF:SP:59:6742265,1,"Les Perreux",48.988216,2.389913,0,0,OIF:SA:59:6742265,Europe/Paris,,OIF, +OIF:SP:59:6742266,1,"Les Perreux",48.98845,2.389449,0,0,OIF:SA:59:6742265,Europe/Paris,,OIF, +OIF:SP:59:6742267,1,"Lycée Jean-Jacques Rousseau",48.994366,2.383173,0,0,OIF:SA:59:4695649,Europe/Paris,,OIF, +OIF:SP:59:6742268,1,"Lycée Jean-Jacques Rousseau",48.99398,2.382231,0,0,OIF:SA:59:4695649,Europe/Paris,,OIF, +OIF:SP:59:6742269,1,"Marcelin Berthelot - Victor Hugo",48.997242,2.381674,0,0,OIF:SA:59:6742269,Europe/Paris,,OIF, +OIF:SP:59:6742271,1,"Place du Souvenir Français",48.998635,2.380405,0,0,OIF:SA:59:4695647,Europe/Paris,,OIF, +OIF:SP:59:6742273,1,"Les Chardonnerettes",49.002661,2.381569,0,0,OIF:SA:59:4695639,Europe/Paris,,OIF, +OIF:SP:59:6742277,1,"L'Espérance",49.010388,2.38424,0,0,OIF:SA:59:6741482,Europe/Paris,,OIF, +OIF:SP:59:6742279,1,"Rue de Paris",49.01676,2.383426,0,0,OIF:SA:59:6742279,Europe/Paris,,OIF, +OIF:SP:59:6742281,1,"Général Leclerc",49.018899,2.38258,0,0,OIF:SA:59:6742281,Europe/Paris,,OIF, +OIF:SP:59:6742283,1,"Route d'Ezanville",49.021245,2.37959,0,0,OIF:SA:59:6742283,Europe/Paris,,OIF, +OIF:SP:59:6742284,1,"Rue de la Libération N0 20",49.022919,2.373593,0,0,OIF:SA:59:6742284,Europe/Paris,,OIF, +OIF:SP:59:6742286,1,"Maréchal Foch",49.026524,2.366941,0,0,OIF:SA:59:6742286,Europe/Paris,,OIF, +OIF:SP:59:6742287,1,"Gare d'Ecouen - Ézanville",49.023182,2.363482,0,0,OIF:SA:8727639,Europe/Paris,,OIF, +OIF:SP:59:6742288,1,"Gare d'Ecouen - Ézanville",49.02284,2.363769,0,0,OIF:SA:8727639,Europe/Paris,,OIF, +OIF:SP:59:6742289,1,"Place de la Libération",49.026085,2.359083,0,0,OIF:SA:59:6742289,Europe/Paris,,OIF, +OIF:SP:59:6742290,1,"Place de la Libération",49.025789,2.359138,0,0,OIF:SA:59:6742289,Europe/Paris,,OIF, +OIF:SP:59:6742291,1,"Place de la République",49.028701,2.356488,0,0,OIF:SA:59:6742291,Europe/Paris,,OIF, +OIF:SP:59:6742292,1,"Place de la République",49.028611,2.35642,0,0,OIF:SA:59:6742291,Europe/Paris,,OIF, +OIF:SP:59:6742293,1,"Hôtel de Ville d'Ezanville",49.031683,2.361354,0,0,OIF:SA:59:6742293,Europe/Paris,,OIF, +OIF:SP:59:6742294,1,"Reims - Domont",49.032646,2.357774,0,0,OIF:SA:59:6742294,Europe/Paris,,OIF, +OIF:SP:59:6742295,1,"Reims - Domont",49.032017,2.357842,0,0,OIF:SA:59:6742294,Europe/Paris,,OIF, +OIF:SP:59:6742296,1,"Fleming",49.033482,2.353196,0,0,OIF:SA:59:6742296,Europe/Paris,,OIF, +OIF:SP:59:6742297,1,"Fleming",49.032206,2.353428,0,0,OIF:SA:59:6742296,Europe/Paris,,OIF, +OIF:SP:59:6742298,1,"Les Bourguignons",49.034219,2.348632,0,0,OIF:SA:59:6742298,Europe/Paris,,OIF, +OIF:SP:59:6742299,1,"Piscine",49.034139,2.343001,0,0,OIF:SA:59:6742299,Europe/Paris,,OIF, +OIF:SP:59:6742300,1,"Piscine",49.034013,2.343834,0,0,OIF:SA:59:6742299,Europe/Paris,,OIF, +OIF:SP:59:6742301,1,"La Justice",49.037131,2.34091,0,0,OIF:SA:59:6742301,Europe/Paris,,OIF, +OIF:SP:59:6742302,1,"La Justice",49.037446,2.3405,0,0,OIF:SA:59:6742301,Europe/Paris,,OIF, +OIF:SP:59:6742303,1,"Centre Commercial de Moisselles",49.041229,2.339229,0,0,OIF:SA:59:6742303,Europe/Paris,,OIF, +OIF:SP:59:6742304,1,"Centre Commercial de Moisselles",49.040986,2.339079,0,0,OIF:SA:59:6742303,Europe/Paris,,OIF, +OIF:SP:59:6742305,1,"Église de Moisselles",49.047843,2.336782,0,0,OIF:SA:59:6742305,Europe/Paris,,OIF, +OIF:SP:59:6742306,1,"Église de Moisselles",49.047825,2.336536,0,0,OIF:SA:59:6742305,Europe/Paris,,OIF, +OIF:SP:59:6742307,1,"C.H.S.",49.051374,2.338628,0,0,OIF:SA:59:6742307,Europe/Paris,,OIF, +OIF:SP:59:6742308,1,"C.H.S.",49.051401,2.338382,0,0,OIF:SA:59:6742307,Europe/Paris,,OIF, +OIF:SP:59:6742309,1,"Hôtel de Ville d'Attainville",49.058653,2.345547,0,0,OIF:SA:59:6742309,Europe/Paris,,OIF, +OIF:SP:59:6742311,1,"Rû de Vaux",49.033168,2.349,0,0,OIF:SA:59:6742311,Europe/Paris,,OIF, +OIF:SP:59:6742312,1,"Maréchal Foch",49.026659,2.367269,0,0,OIF:SA:59:6742312,Europe/Paris,,OIF, +OIF:SP:59:6742314,1,"Villiers le Bel - Gonesse - Arnouville RER",48.995022,2.417124,0,0,OIF:SA:8727622,Europe/Paris,,OIF, +OIF:SP:59:6742315,1,"Les Carreaux",48.999445,2.41414,0,0,OIF:SA:59:6741630,Europe/Paris,,OIF, +OIF:SP:59:6742316,1,"Voltaire",49.001054,2.414129,0,0,OIF:SA:59:6742316,Europe/Paris,,OIF, +OIF:SP:59:6742317,1,"Les Fleurs",49.003318,2.414392,0,0,OIF:SA:59:6742317,Europe/Paris,,OIF, +OIF:SP:59:6742318,1,"Square Charles Perrault",49.004592,2.417003,0,0,OIF:SA:59:6742318,Europe/Paris,,OIF, +OIF:SP:59:6742319,1,"Rue Scribe",49.001978,2.416042,0,0,OIF:SA:59:6742319,Europe/Paris,,OIF, +OIF:SP:59:6742320,1,"Voltaire.",49.000011,2.414797,0,0,OIF:SA:59:6742316,Europe/Paris,,OIF, +OIF:SP:59:6742321,1,"Villiers le Bel - Gonesse - Arnouville RER.",48.994196,2.416153,0,0,OIF:SA:8727622,Europe/Paris,,OIF, +OIF:SP:59:6742322,1,"Marche de Saint-Brice",49.000233,2.354988,0,0,OIF:SA:59:6742322,Europe/Paris,,OIF, +OIF:SP:59:6742324,1,"Boulevard de la Gare",48.996224,2.357049,0,0,OIF:SA:51:550,Europe/Paris,,OIF, +OIF:SP:59:6742325,1,"Boulevard de la Gare",48.996269,2.357213,0,0,OIF:SA:51:550,Europe/Paris,,OIF, +OIF:SP:59:6742326,1,"Rû de la Marlière",48.995765,2.361488,0,0,OIF:SA:59:6742326,Europe/Paris,,OIF, +OIF:SP:59:6742327,1,"Rû de la Marlière",48.995837,2.361679,0,0,OIF:SA:59:6742326,Europe/Paris,,OIF, +OIF:SP:59:6742328,1,"Gare de Sarcelles-Saint-Brice",48.994802,2.367605,0,0,OIF:SA:8727638,Europe/Paris,,OIF, +OIF:SP:59:6742329,1,"Gare de Sarcelles-Saint-Brice",48.994631,2.368015,0,0,OIF:SA:8727638,Europe/Paris,,OIF, +OIF:SP:59:6742330,1,"Petits Clos-Rosiers",48.99136,2.369597,0,0,OIF:SA:59:6742330,Europe/Paris,,OIF, +OIF:SP:59:6742333,1,"Place de Verdun",48.994313,2.378735,0,0,OIF:SA:59:6742333,Europe/Paris,,OIF, +OIF:SP:59:6742334,1,"Place de Verdun",48.994368,2.378462,0,0,OIF:SA:59:6742333,Europe/Paris,,OIF, +OIF:SP:59:6742336,1,"Lycée de la Tourelle",48.993395,2.38305,0,0,OIF:SA:59:6742336,Europe/Paris,,OIF, +OIF:SP:59:6742339,1,"Haut du Roy",48.98596,2.392314,0,0,OIF:SA:59:6742264,Europe/Paris,,OIF, +OIF:SP:59:6742340,1,"Haut du Roy",48.986112,2.392396,0,0,OIF:SA:59:6742264,Europe/Paris,,OIF, +OIF:SP:59:6742341,1,"Mont de Gif",48.984689,2.399918,0,0,OIF:SA:59:6742341,Europe/Paris,,OIF, +OIF:SP:59:6742342,1,"Mont de Gif",48.984841,2.399768,0,0,OIF:SA:59:6742341,Europe/Paris,,OIF, +OIF:SP:59:6742343,1,"Lutetia Nova",48.98483,2.404642,0,0,OIF:SA:59:6742343,Europe/Paris,,OIF, +OIF:SP:59:6742344,1,"Lutetia Nova",48.985036,2.404738,0,0,OIF:SA:59:6742343,Europe/Paris,,OIF, +OIF:SP:59:6742345,1,"Les Châtaigniers",48.986048,2.412045,0,0,OIF:SA:11:13,Europe/Paris,,OIF, +OIF:SP:59:6742346,1,"Les Châtaigniers",48.986227,2.412141,0,0,OIF:SA:11:13,Europe/Paris,,OIF, +OIF:SP:59:6742347,1,"Henri Barbusse",48.986567,2.415336,0,0,OIF:SA:11:5,Europe/Paris,,OIF, +OIF:SP:59:6742348,1,"Henri Barbusse",48.986288,2.415609,0,0,OIF:SA:11:5,Europe/Paris,,OIF, +OIF:SP:59:6742349,1,"Le Stade",48.991508,2.417051,0,0,OIF:SA:59:6742349,Europe/Paris,,OIF, +OIF:SP:59:6742350,1,"Le Stade",48.992299,2.416792,0,0,OIF:SA:59:6742349,Europe/Paris,,OIF, +OIF:SP:59:6742351,1,"Jean Jaurès",48.993404,2.417081,0,0,OIF:SA:8727622,Europe/Paris,,OIF, +OIF:SP:59:6742352,1,"Jean Jaurès",48.994096,2.417778,0,0,OIF:SA:8727622,Europe/Paris,,OIF, +OIF:SP:59:6742353,1,"Les Marronniers",48.995344,2.419692,0,0,OIF:SA:59:6742353,Europe/Paris,,OIF, +OIF:SP:59:6742354,1,"Les Marronniers",48.995299,2.419446,0,0,OIF:SA:59:6742353,Europe/Paris,,OIF, +OIF:SP:59:6742357,1,"Petits Clos - Rosiers",48.99154,2.36957,0,0,OIF:SA:59:6742357,Europe/Paris,,OIF, +OIF:SP:59:6742358,1,"La Cerisaie",48.955503,2.393046,0,0,OIF:SA:8769733,Europe/Paris,,OIF, +OIF:SP:59:6742360,1,"Jean Moulin",48.957283,2.393171,0,0,OIF:SA:59:6742360,Europe/Paris,,OIF, +OIF:SP:59:6742361,1,"Limite des Départements",48.960029,2.399615,0,0,OIF:SA:59:6742361,Europe/Paris,,OIF, +OIF:SP:59:6742363,1,"Demusois",48.962868,2.40288,0,0,OIF:SA:59:6742363,Europe/Paris,,OIF, +OIF:SP:59:6742364,1,"Morillons - Varlin",48.963767,2.400903,0,0,OIF:SA:59:6742364,Europe/Paris,,OIF, +OIF:SP:59:6742366,1,"Gaillards",48.963509,2.39704,0,0,OIF:SA:59:6742366,Europe/Paris,,OIF, +OIF:SP:59:6742367,1,"Gaillards",48.963311,2.397804,0,0,OIF:SA:59:6742366,Europe/Paris,,OIF, +OIF:SP:59:6742376,1,"Victor Baltard",48.972352,2.396477,0,0,OIF:SA:59:6742376,Europe/Paris,,OIF, +OIF:SP:59:6742377,1,"Victor Baltard",48.972037,2.396722,0,0,OIF:SA:59:6742376,Europe/Paris,,OIF, +OIF:SP:59:6742378,1,"Guy Moquet",48.972524,2.393842,0,0,OIF:SA:59:3664132,Europe/Paris,,OIF, +OIF:SP:59:6742381,1,"Église Sainte-Geneviève",48.973217,2.391168,0,0,OIF:SA:59:3664131,Europe/Paris,,OIF, +OIF:SP:59:6742383,1,"Garges - Sarcelles RER",48.976354,2.390652,0,0,OIF:SA:8727619,Europe/Paris,,OIF, +OIF:SP:59:6742386,1,"Haut du Roy",48.98313,2.388816,0,0,OIF:SA:59:6742264,Europe/Paris,,OIF, +OIF:SP:59:6742388,1,"Les Perreux",48.988854,2.390542,0,0,OIF:SA:59:6742265,Europe/Paris,,OIF, +OIF:SP:59:6742389,1,"Les Perreux",48.988827,2.390392,0,0,OIF:SA:59:6742265,Europe/Paris,,OIF, +OIF:SP:59:6742390,1,"Rue du Fer à Cheval",48.991595,2.389657,0,0,OIF:SA:59:6742390,Europe/Paris,,OIF, +OIF:SP:59:6742391,1,"Rue du Fer à Cheval",48.991218,2.389384,0,0,OIF:SA:59:6742390,Europe/Paris,,OIF, +OIF:SP:59:6742392,1,"Parc Industriel Centre",48.994452,2.391955,0,0,OIF:SA:59:6742392,Europe/Paris,,OIF, +OIF:SP:59:6742393,1,"Parc Industriel Centre",48.994434,2.391763,0,0,OIF:SA:59:6742392,Europe/Paris,,OIF, +OIF:SP:59:6742394,1,"Rue d'Ableval - Parc Industriel",48.996438,2.391984,0,0,OIF:SA:59:6742394,Europe/Paris,,OIF, +OIF:SP:59:6742395,1,"Rue d'Ableval - Parc Industriel",48.996177,2.39182,0,0,OIF:SA:59:6742394,Europe/Paris,,OIF, +OIF:SP:59:6742396,1,"Parc Industriel Nord",48.996699,2.389867,0,0,OIF:SA:59:6742396,Europe/Paris,,OIF, +OIF:SP:59:6742397,1,"Parc Industriel Nord",48.996277,2.390318,0,0,OIF:SA:59:6742396,Europe/Paris,,OIF, +OIF:SP:59:6742398,1,"Tissonvilliers",49.000087,2.389816,0,0,OIF:SA:59:6742398,Europe/Paris,,OIF, +OIF:SP:59:6742399,1,"Tissonvilliers",48.998218,2.389241,0,0,OIF:SA:59:6742398,Europe/Paris,,OIF, +OIF:SP:59:6742400,1,"Avenue des Érables",49.002147,2.386554,0,0,OIF:SA:59:6742400,Europe/Paris,,OIF, +OIF:SP:59:6742401,1,"Avenue des Érables",49.001733,2.387346,0,0,OIF:SA:59:6742400,Europe/Paris,,OIF, +OIF:SP:59:6742402,1,"La Cerisaie",49.005138,2.388305,0,0,OIF:SA:59:6742402,Europe/Paris,,OIF, +OIF:SP:59:6742403,1,"La Cerisaie",49.005156,2.389043,0,0,OIF:SA:59:6742402,Europe/Paris,,OIF, +OIF:SP:59:6742404,1,"Place de la Tolinette",49.004274,2.391733,0,0,OIF:SA:59:6742404,Europe/Paris,,OIF, +OIF:SP:59:6742405,1,"Place de la Tolinette",49.004391,2.391801,0,0,OIF:SA:59:6742404,Europe/Paris,,OIF, +OIF:SP:59:6742406,1,"Jean Bullant",49.004155,2.39665,0,0,OIF:SA:59:6742406,Europe/Paris,,OIF, +OIF:SP:59:6742407,1,"Jean Bullant",49.004236,2.396513,0,0,OIF:SA:59:6742406,Europe/Paris,,OIF, +OIF:SP:59:6742408,1,"La Poste",49.00445,2.398685,0,0,OIF:SA:59:6742408,Europe/Paris,,OIF, +OIF:SP:59:6742409,1,"La Poste",49.004612,2.398781,0,0,OIF:SA:59:6742408,Europe/Paris,,OIF, +OIF:SP:59:6742411,1,"Pierre Semard",49.002921,2.402044,0,0,OIF:SA:59:6741628,Europe/Paris,,OIF, +OIF:SP:59:6742412,1,"Louis Perrein",49.001535,2.405989,0,0,OIF:SA:59:6742412,Europe/Paris,,OIF, +OIF:SP:59:6742413,1,"Louis Perrein",49.001777,2.406181,0,0,OIF:SA:59:6742412,Europe/Paris,,OIF, +OIF:SP:59:6742414,1,"Les Carreaux",48.999311,2.413075,0,0,OIF:SA:59:6741630,Europe/Paris,,OIF, +OIF:SP:59:6742415,1,"Les Carreaux",48.999248,2.413757,0,0,OIF:SA:59:6741630,Europe/Paris,,OIF, +OIF:SP:59:6742417,1,"Villiers le Bel - Gonesse - Arnouville RER",48.994914,2.416947,0,0,OIF:SA:8727622,Europe/Paris,,OIF, +OIF:SP:59:6742418,1,"Limite des Départements",48.959419,2.398495,0,0,OIF:SA:59:6742418,Europe/Paris,,OIF, +OIF:SP:59:6742437,1,"Rue de la Libération N0 20",49.022487,2.373839,0,0,OIF:SA:59:6742284,Europe/Paris,,OIF, +OIF:SP:59:6742438,1,"Mairie Château",49.018577,2.378946,0,0,OIF:SA:59:6742438,Europe/Paris,,OIF, +OIF:SP:59:6742439,1,"Général Leclerc",49.018162,2.382156,0,0,OIF:SA:59:6742281,Europe/Paris,,OIF, +OIF:SP:59:6742440,1,"Rue de Paris",49.016607,2.383275,0,0,OIF:SA:59:6742279,Europe/Paris,,OIF, +OIF:SP:59:6742443,1,"Les Chardonnerettes",49.002364,2.381309,0,0,OIF:SA:59:4695639,Europe/Paris,,OIF, +OIF:SP:59:6742444,1,"Place du Souvenir Français",48.998797,2.379913,0,0,OIF:SA:59:4695647,Europe/Paris,,OIF, +OIF:SP:59:6742445,1,"Marcelin Berthelot - Victor Hugo",48.996784,2.382083,0,0,OIF:SA:59:6742269,Europe/Paris,,OIF, +OIF:SP:59:6742446,1,"Lycée de la Tourelle",48.993279,2.382831,0,0,OIF:SA:59:6742336,Europe/Paris,,OIF, +OIF:SP:59:6748587,1,"ZAC Landy Nord",48.920548,2.354456,0,0,OIF:SA:59:6748587,Europe/Paris,,OIF, +OIF:SP:59:6748589,1,"Cornillon Sud",48.920799,2.356843,0,0,OIF:SA:59:4000537,Europe/Paris,,OIF, +OIF:SP:59:6748591,1,"Stade de France - Saint-Denis RER",48.918067,2.353719,0,0,OIF:SA:8716478,Europe/Paris,,OIF, +OIF:SP:59:6748592,1,"Landy - Fruitiers",48.915245,2.354236,0,0,OIF:SA:59:6748592,Europe/Paris,,OIF, +OIF:SP:59:6748593,1,"Landy - Fruitiers",48.915416,2.354209,0,0,OIF:SA:59:6748592,Europe/Paris,,OIF, +OIF:SP:59:6748594,1,"Landy - Pont de Soissons",48.915379,2.360386,0,0,OIF:SA:59:6748594,Europe/Paris,,OIF, +OIF:SP:59:6748595,1,"Landy - Pont de Soissons",48.915505,2.359895,0,0,OIF:SA:59:6748594,Europe/Paris,,OIF, +OIF:SP:59:6748598,1,"Avenue du Stade de France",48.920322,2.361793,0,0,OIF:SA:59:6748598,Europe/Paris,,OIF, +OIF:SP:59:6748599,1,"Avenue du Stade de France",48.920447,2.361493,0,0,OIF:SA:59:6748598,Europe/Paris,,OIF, +OIF:SP:59:6748604,1,"Pont du Canal",48.926128,2.357308,0,0,OIF:SA:59:4000540,Europe/Paris,,OIF, +OIF:SP:59:6748605,1,"Pont du Canal",48.925948,2.358236,0,0,OIF:SA:59:4000540,Europe/Paris,,OIF, +OIF:SP:59:6748606,1,"Porte de Paris - Stade de France",48.928905,2.356832,0,0,OIF:SA:59542,Europe/Paris,,OIF, +OIF:SP:59:6748607,1,"Porte de Paris - Stade de France",48.930082,2.35731,0,0,OIF:SA:59542,Europe/Paris,,OIF, +OIF:SP:59:6748609,1,"Parc de la Légion d'Honneur",48.931734,2.364704,0,0,OIF:SA:59:4179713,Europe/Paris,,OIF, +OIF:SP:59:6748611,1,"Joliot Curie",48.933441,2.369479,0,0,OIF:SA:59096,Europe/Paris,,OIF, +OIF:SP:59:6748612,1,"Joliot Curie",48.93362,2.369206,0,0,OIF:SA:59096,Europe/Paris,,OIF, +OIF:SP:59:6748613,1,"Hôpital Delafontaine",48.935974,2.372386,0,0,OIF:SA:59096,Europe/Paris,,OIF, +OIF:SP:59:6748614,1,"Hôpital Delafontaine",48.936765,2.371922,0,0,OIF:SA:59096,Europe/Paris,,OIF, +OIF:SP:59:6748615,1,"Marcel Cachin - Desnos",48.93992,2.368623,0,0,OIF:SA:59:4179747,Europe/Paris,,OIF, +OIF:SP:59:6748617,1,"Lycée Paul Éluard",48.942276,2.365228,0,0,OIF:SA:59:4211761,Europe/Paris,,OIF, +OIF:SP:59:6748618,1,"Lycée Paul Éluard",48.941683,2.365759,0,0,OIF:SA:59:4211761,Europe/Paris,,OIF, +OIF:SP:59:6748619,1,"Saint-Denis - Université",48.946015,2.364343,0,0,OIF:SA:59540,Europe/Paris,,OIF, +OIF:SP:59:6748620,1,"Saint-Denis - Université",48.946131,2.36497,0,0,OIF:SA:59540,Europe/Paris,,OIF, +OIF:SP:59:6756007,1,"Clément Perriere",48.807809,2.285714,0,0,OIF:SA:59:6756007,Europe/Paris,,OIF, +OIF:SP:59:6756008,1,"Clément Perriere",48.807575,2.285388,0,0,OIF:SA:59:6756007,Europe/Paris,,OIF, +OIF:SP:59:6756009,1,"Centre de Châtillon",48.804484,2.287868,0,0,OIF:SA:59850,Europe/Paris,,OIF, +OIF:SP:59:6756010,1,"Centre de Châtillon",48.804583,2.288072,0,0,OIF:SA:59850,Europe/Paris,,OIF, +OIF:SP:59:6779718,1,"Division Leclerc - Brosselette",48.798892,2.284023,0,0,OIF:SA:59852,Europe/Paris,,OIF, +OIF:SP:59:6779719,1,"Division Leclerc - Brosselette",48.798875,2.284404,0,0,OIF:SA:59852,Europe/Paris,,OIF, +OIF:SP:59:6783392,1,"Gare de Pierrefitte - Stains RER",48.963771,2.371327,0,0,OIF:SA:8727116,Europe/Paris,,OIF, +OIF:SP:59:6783394,1,"Etienne Dolet - de Gaulle",48.966369,2.366838,0,0,OIF:SA:59793,Europe/Paris,,OIF, +OIF:SP:59:6783399,1,"Gaston Noreux",48.963801,2.352683,0,0,OIF:SA:59:6783399,Europe/Paris,,OIF, +OIF:SP:59:6783400,1,"Gaston Noreux",48.96364,2.352997,0,0,OIF:SA:59:6783399,Europe/Paris,,OIF, +OIF:SP:59:6783401,1,"Chemin des Roses",48.964161,2.348643,0,0,OIF:SA:59:6783401,Europe/Paris,,OIF, +OIF:SP:59:6783402,1,"Chemin des Roses",48.964009,2.349011,0,0,OIF:SA:59:6783401,Europe/Paris,,OIF, +OIF:SP:59:6783403,1,"Jean Jaurès - Salengro",48.964485,2.344985,0,0,OIF:SA:59:6783403,Europe/Paris,,OIF, +OIF:SP:59:6783404,1,"Église de Villetaneuse",48.963209,2.343866,0,0,OIF:SA:59:6783404,Europe/Paris,,OIF, +OIF:SP:59:6783405,1,"Église de Villetaneuse",48.963452,2.344071,0,0,OIF:SA:59:6783404,Europe/Paris,,OIF, +OIF:SP:59:6783406,1,"Edouard Vaillant",48.961205,2.345667,0,0,OIF:SA:59:6783406,Europe/Paris,,OIF, +OIF:SP:59:6783407,1,"Edouard Vaillant",48.961547,2.345558,0,0,OIF:SA:59:6783406,Europe/Paris,,OIF, +OIF:SP:59:6783408,1,"Villetaneuse - Université",48.959767,2.341136,0,0,OIF:SA:59900,Europe/Paris,,OIF, +OIF:SP:59:6783409,1,"Villetaneuse - Université",48.959651,2.341559,0,0,OIF:SA:59900,Europe/Paris,,OIF, +OIF:SP:59:6783410,1,"Université - Paris 13",48.956694,2.339553,0,0,OIF:SA:59:6783410,Europe/Paris,,OIF, +OIF:SP:59:6783411,1,"Université - Paris 13",48.956362,2.338625,0,0,OIF:SA:59:6783410,Europe/Paris,,OIF, +OIF:SP:59:6783412,1,"Jean-Baptiste Clément - Université",48.954582,2.338516,0,0,OIF:SA:59:5151289,Europe/Paris,,OIF, +OIF:SP:59:6783414,1,"Jean-Baptiste Clément - Carnot",48.953162,2.337779,0,0,OIF:SA:59:5158092,Europe/Paris,,OIF, +OIF:SP:59:6783420,1,"Gare d'Epinay-Villetaneuse",48.958015,2.329727,0,0,OIF:SA:8727112,Europe/Paris,,OIF, +OIF:SP:59:6783431,1,"Place Rene Clair",48.953636,2.311415,0,0,OIF:SA:59:6783431,Europe/Paris,,OIF, +OIF:SP:59:6783432,1,"Place Rene Clair",48.953663,2.311156,0,0,OIF:SA:59:6783431,Europe/Paris,,OIF, +OIF:SP:59:6783439,1,"Lyon",48.955293,2.292937,0,0,OIF:SA:59916,Europe/Paris,,OIF, +OIF:SP:59:6783440,1,"Lyon",48.955176,2.292665,0,0,OIF:SA:59916,Europe/Paris,,OIF, +OIF:SP:59:6783441,1,"Île de France",48.955211,2.288816,0,0,OIF:SA:18:19634,Europe/Paris,,OIF, +OIF:SP:59:6783442,1,"Île de France",48.955148,2.28928,0,0,OIF:SA:18:19634,Europe/Paris,,OIF, +OIF:SP:59:6783443,1,"Saint-Ferdinand",48.954976,2.286729,0,0,OIF:SA:59:6783443,Europe/Paris,,OIF, +OIF:SP:59:6783444,1,"Saint-Ferdinand",48.954868,2.286756,0,0,OIF:SA:59:6783443,Europe/Paris,,OIF, +OIF:SP:59:6783445,1,"Commandant Doue",48.954264,2.281885,0,0,OIF:SA:59:6783445,Europe/Paris,,OIF, +OIF:SP:59:6783446,1,"Commandant Doue",48.954264,2.282335,0,0,OIF:SA:59:6783445,Europe/Paris,,OIF, +OIF:SP:59:6783447,1,"Belvédère",48.952303,2.278503,0,0,OIF:SA:59:6783447,Europe/Paris,,OIF, +OIF:SP:59:6783448,1,"Belvédère",48.95162,2.277972,0,0,OIF:SA:59:6783447,Europe/Paris,,OIF, +OIF:SP:59:6783449,1,"Gaston Monmousseau",48.950701,2.273907,0,0,OIF:SA:59:6783449,Europe/Paris,,OIF, +OIF:SP:59:6783450,1,"Gaston Monmousseau",48.950648,2.274343,0,0,OIF:SA:59:6783449,Europe/Paris,,OIF, +OIF:SP:59:6783451,1,"Noblet",48.949918,2.270483,0,0,OIF:SA:59:6783451,Europe/Paris,,OIF, +OIF:SP:59:6783452,1,"Noblet",48.949855,2.27066,0,0,OIF:SA:59:6783451,Europe/Paris,,OIF, +OIF:SP:59:6783453,1,"Béringier",48.949314,2.26845,0,0,OIF:SA:59:6783453,Europe/Paris,,OIF, +OIF:SP:59:6783454,1,"Béringier",48.949315,2.268873,0,0,OIF:SA:59:6783453,Europe/Paris,,OIF, +OIF:SP:59:6783455,1,"Jules Ferry",48.949097,2.265708,0,0,OIF:SA:59:6783455,Europe/Paris,,OIF, +OIF:SP:59:6783456,1,"Jules Ferry",48.948954,2.266636,0,0,OIF:SA:59:6783455,Europe/Paris,,OIF, +OIF:SP:59:6783457,1,"Henri Vasseur",48.950263,2.262514,0,0,OIF:SA:18:200,Europe/Paris,,OIF, +OIF:SP:59:6783458,1,"Henri Vasseur",48.950795,2.264082,0,0,OIF:SA:18:200,Europe/Paris,,OIF, +OIF:SP:59:6783459,1,"Aristide Briand",48.949046,2.256444,0,0,OIF:SA:18:12,Europe/Paris,,OIF, +OIF:SP:59:6783460,1,"Aristide Briand",48.948929,2.256376,0,0,OIF:SA:18:12,Europe/Paris,,OIF, +OIF:SP:59:6783462,1,"Gare d'Argenteuil",48.94601,2.257908,0,0,OIF:SA:8738184,Europe/Paris,,OIF, +OIF:SP:59:6783463,1,"Gare d'Epinay-Villetaneuse.",48.958572,2.327052,0,0,OIF:SA:8727112,Europe/Paris,,OIF, +OIF:SP:59:6783465,1,"Etienne Dolet - Pasteur",48.964536,2.365772,0,0,OIF:SA:59793,Europe/Paris,,OIF, +OIF:SP:59:6809978,1,"Jean Mermoz - Henri Barbusse",48.931641,2.398681,0,0,OIF:SA:59:5991327,Europe/Paris,,OIF, +OIF:SP:59:6810173,1,"École des Sports - Île de Puteaux",48.87439,2.24243,0,0,OIF:SA:59:6810173,Europe/Paris,,OIF, +OIF:SP:59:6810175,1,"Île de Puteaux",48.878463,2.245094,0,0,OIF:SA:59:6810175,Europe/Paris,,OIF, +OIF:SP:59:6810176,1,"Hôpital - Pont de Puteaux",48.878775,2.242245,0,0,OIF:SA:59:4024299,Europe/Paris,,OIF, +OIF:SP:59:6810188,1,"Les Bouvets",48.888485,2.236013,0,0,OIF:SA:59:6195742,Europe/Paris,,OIF, +OIF:SP:59:6810194,1,"Berthelot - Carre Vert",48.889182,2.230901,0,0,OIF:SA:59:6309177,Europe/Paris,,OIF, +OIF:SP:59:6810198,1,"Boieldieu",48.887965,2.236654,0,0,OIF:SA:59:4024112,Europe/Paris,,OIF, +OIF:SP:59:6810199,1,"Montaigne",48.885828,2.239043,0,0,OIF:SA:59:6810199,Europe/Paris,,OIF, +OIF:SP:59:6810200,1,"Mairie - Anatole France",48.884228,2.239292,0,0,OIF:SA:59:6810200,Europe/Paris,,OIF, +OIF:SP:59:6810201,1,"Collin",48.882315,2.24014,0,0,OIF:SA:59:6810201,Europe/Paris,,OIF, +OIF:SP:59:6810202,1,"Godefroy - Quai de Dion Bouton",48.880098,2.244178,0,0,OIF:SA:59:6810202,Europe/Paris,,OIF, +OIF:SP:59:6810203,1,"Pont de Puteaux",48.877903,2.241634,0,0,OIF:SA:59:4015789,Europe/Paris,,OIF, +OIF:SP:59:6810204,1,"Parc Départemental",48.876737,2.244743,0,0,OIF:SA:59:6810204,Europe/Paris,,OIF, +OIF:SP:59:6830733,1,"Place du Vel'd'Hiv",48.874931,2.41529,0,0,OIF:SA:59:6830733,Europe/Paris,,OIF, +OIF:SP:59:6830734,1,"Les Primevères",48.876963,2.414312,0,0,OIF:SA:59:6830734,Europe/Paris,,OIF, +OIF:SP:59:6830735,1,"Les Bruyères",48.878716,2.413184,0,0,OIF:SA:59:4009042,Europe/Paris,,OIF, +OIF:SP:59:6830736,1,"Commissariat",48.882139,2.414974,0,0,OIF:SA:59:6830736,Europe/Paris,,OIF, +OIF:SP:59:6830737,1,"Rue Marcelle",48.884168,2.417743,0,0,OIF:SA:59:6830737,Europe/Paris,,OIF, +OIF:SP:59:6830738,1,"Rue du Président Schuman",48.885927,2.421126,0,0,OIF:SA:59:6830738,Europe/Paris,,OIF, +OIF:SP:59:6830739,1,"Centre de Santé B. Lafay",48.883942,2.420659,0,0,OIF:SA:59:6830739,Europe/Paris,,OIF, +OIF:SP:59:6830740,1,"Hortensias",48.882279,2.421038,0,0,OIF:SA:59:6830740,Europe/Paris,,OIF, +OIF:SP:59:6830741,1,"Paul de Kock",48.881192,2.420478,0,0,OIF:SA:59:6591537,Europe/Paris,,OIF, +OIF:SP:59:6830742,1,"Mairie des Lilas - Métro",48.879694,2.416224,0,0,OIF:SA:59408,Europe/Paris,,OIF, +OIF:SP:59:6830743,1,"Paul de Kock.",48.880779,2.4197,0,0,OIF:SA:59:6591537,Europe/Paris,,OIF, +OIF:SP:59:6830744,1,"Joseph Dépinay",48.882016,2.423695,0,0,OIF:SA:59:6575227,Europe/Paris,,OIF, +OIF:SP:59:6830745,1,"Gagarine",48.882796,2.426054,0,0,OIF:SA:59:6830745,Europe/Paris,,OIF, +OIF:SP:59:6830746,1,"Floréal",48.88,2.42733,0,0,OIF:SA:59:6830746,Europe/Paris,,OIF, +OIF:SP:59:6830747,1,"Croix de l'Épinette",48.878709,2.423649,0,0,OIF:SA:59:6830747,Europe/Paris,,OIF, +OIF:SP:59:6830748,1,"Sentes-Croix de l'Épinette",48.880497,2.423679,0,0,OIF:SA:59:6830748,Europe/Paris,,OIF, +OIF:SP:59:6830749,1,"Rue du Centre",48.878092,2.419369,0,0,OIF:SA:59:6830749,Europe/Paris,,OIF, +OIF:SP:59:6830750,1,"Passage Ronsard",48.877285,2.415852,0,0,OIF:SA:59:6830750,Europe/Paris,,OIF, +OIF:SP:59:6830751,1,"Les Primevères.",48.876486,2.414489,0,0,OIF:SA:59:6830734,Europe/Paris,,OIF, +OIF:SP:59:6830752,1,"Place du Vel'd'Hiv.",48.874994,2.415454,0,0,OIF:SA:59:6830733,Europe/Paris,,OIF, +OIF:SP:59:6830808,1,"Église Sainte-Geneviève",48.973325,2.391168,0,0,OIF:SA:59:3664131,Europe/Paris,,OIF, +OIF:SP:59:6830809,1,"Guy Moquet",48.972515,2.393542,0,0,OIF:SA:59:3664132,Europe/Paris,,OIF, +OIF:SP:59:6830815,1,"Maternelle Effel",48.969466,2.39904,0,0,OIF:SA:59:6742372,Europe/Paris,,OIF, +OIF:SP:59:6830816,1,"Maternelle Effel",48.96872,2.399325,0,0,OIF:SA:59:6742372,Europe/Paris,,OIF, +OIF:SP:59:6830817,1,"Collège Henri Wallon",48.967112,2.397931,0,0,OIF:SA:59:6830817,Europe/Paris,,OIF, +OIF:SP:59:6830818,1,"Collège Henri Wallon",48.967444,2.398464,0,0,OIF:SA:59:6830817,Europe/Paris,,OIF, +OIF:SP:59:6830819,1,"Les Doucettes",48.964849,2.395062,0,0,OIF:SA:59:3664141,Europe/Paris,,OIF, +OIF:SP:59:6830820,1,"Les Doucettes",48.964534,2.394762,0,0,OIF:SA:59:3664141,Europe/Paris,,OIF, +OIF:SP:59:6830823,1,"Morillons - Varlin",48.963677,2.401039,0,0,OIF:SA:59:6742364,Europe/Paris,,OIF, +OIF:SP:59:6830825,1,"Demusois",48.963137,2.404,0,0,OIF:SA:59:6742363,Europe/Paris,,OIF, +OIF:SP:59:6830826,1,"Demusois",48.963344,2.403209,0,0,OIF:SA:59:6742363,Europe/Paris,,OIF, +OIF:SP:59:6851968,1,"Epinay-Villetaneuse - les Arcades",48.958563,2.326165,0,0,OIF:SA:8727112,Europe/Paris,,OIF, +OIF:SP:59:6861942,1,"Z.A.C. du Pérou",48.718516,2.297743,0,0,OIF:SA:59:6041845,Europe/Paris,,OIF, +OIF:SP:59:6861947,1,"Cimetière de Chilly-Mazarin",48.707428,2.31106,0,0,OIF:SA:59:6861947,Europe/Paris,,OIF, +OIF:SP:59:6861948,1,"Cimetière de Chilly-Mazarin",48.707581,2.311183,0,0,OIF:SA:59:6861947,Europe/Paris,,OIF, +OIF:SP:59:6861949,1,"Collège de Chilly-Mazarin",48.705694,2.313913,0,0,OIF:SA:59:6861949,Europe/Paris,,OIF, +OIF:SP:59:6861950,1,"Collège de Chilly-Mazarin",48.706044,2.313669,0,0,OIF:SA:59:6861949,Europe/Paris,,OIF, +OIF:SP:59:6861951,1,"Beauregard",48.704247,2.316793,0,0,OIF:SA:59:6861951,Europe/Paris,,OIF, +OIF:SP:59:6861952,1,"Beauregard",48.704876,2.315923,0,0,OIF:SA:59:6861951,Europe/Paris,,OIF, +OIF:SP:59:6861953,1,"Place de la Libération",48.702558,2.320338,0,0,OIF:SA:59:4890563,Europe/Paris,,OIF, +OIF:SP:59:6861954,1,"Place de la Libération",48.702747,2.320379,0,0,OIF:SA:59:4890563,Europe/Paris,,OIF, +OIF:SP:59:6861961,1,"Gabriel Fontaine",48.706685,2.328811,0,0,OIF:SA:59:4373698,Europe/Paris,,OIF, +OIF:SP:59:6861962,1,"Gabriel Fontaine",48.707314,2.328471,0,0,OIF:SA:59:4373698,Europe/Paris,,OIF, +OIF:SP:59:6861963,1,"Place Lucien Boilleau",48.705561,2.33552,0,0,OIF:SA:59:4373702,Europe/Paris,,OIF, +OIF:SP:59:6861965,1,"Mairie de Morangis",48.706181,2.333171,0,0,OIF:SA:59:6251713,Europe/Paris,,OIF, +OIF:SP:59:6869547,1,"Mairie des Lilas",48.879407,2.415324,0,0,OIF:SA:59408,Europe/Paris,,OIF, +OIF:SP:59:6869551,1,"Fort d'Aubervilliers - Métro",48.91423,2.404046,0,0,OIF:SA:59316,Europe/Paris,,OIF, +OIF:SP:59:6869561,1,"République - Division Leclerc",48.907468,2.424133,0,0,OIF:SA:59:6869561,Europe/Paris,,OIF, +OIF:SP:59:6869562,1,"République - Division Leclerc",48.907629,2.424174,0,0,OIF:SA:59:6869561,Europe/Paris,,OIF, +OIF:SP:59:6869571,1,"Bobigny - Pablo Picasso",48.906539,2.449503,0,0,OIF:SA:59342,Europe/Paris,,OIF, +OIF:SP:59:6869572,1,"Bobigny - Pablo Picasso",48.9076,2.448837,0,0,OIF:SA:59342,Europe/Paris,,OIF, +OIF:SP:59:6869584,1,"Place de l'Europe",48.909591,2.470465,0,0,OIF:SA:59:6869584,Europe/Paris,,OIF, +OIF:SP:59:6869586,1,"Route d'Aulnay - Jean Moulin",48.912239,2.480535,0,0,OIF:SA:59:6682667,Europe/Paris,,OIF, +OIF:SP:59:6869587,1,"Route d'Aulnay - Jean Moulin",48.91169,2.48101,0,0,OIF:SA:59:6682667,Europe/Paris,,OIF, +OIF:SP:59:6869588,1,"Suzanne Buisson",48.914311,2.483527,0,0,OIF:SA:59:3682337,Europe/Paris,,OIF, +OIF:SP:59:6869589,1,"Suzanne Buisson",48.913504,2.482283,0,0,OIF:SA:59:3682337,Europe/Paris,,OIF, +OIF:SP:59:6869590,1,"Rabelais",48.917492,2.484245,0,0,OIF:SA:59:6869590,Europe/Paris,,OIF, +OIF:SP:59:6869591,1,"Rabelais",48.916962,2.48442,0,0,OIF:SA:59:6869590,Europe/Paris,,OIF, +OIF:SP:59:6869592,1,"Jouhaux-Blum",48.917858,2.479077,0,0,OIF:SA:59:3682338,Europe/Paris,,OIF, +OIF:SP:59:6869593,1,"Jouhaux-Blum",48.917848,2.479746,0,0,OIF:SA:59:3682338,Europe/Paris,,OIF, +OIF:SP:59:6869594,1,"Paul Renaud",48.910344,2.479261,0,0,OIF:SA:59:6682666,Europe/Paris,,OIF, +OIF:SP:59:6869596,1,"Robespierre - Edouard Vaillant",48.910582,2.468,0,0,OIF:SA:59:6869596,Europe/Paris,,OIF, +OIF:SP:59:6869599,1,"Maurice Thorez",48.906757,2.446818,0,0,OIF:SA:59:3688573,Europe/Paris,,OIF, +OIF:SP:59:6869645,1,"Division Leclerc - Courtillières",48.913715,2.408231,0,0,OIF:SA:59:5150445,Europe/Paris,,OIF, +OIF:SP:59:6869647,1,"Place du Marche",48.914153,2.411654,0,0,OIF:SA:59:5150446,Europe/Paris,,OIF, +OIF:SP:59:6869680,1,"Maison de Retraite",48.91148,2.483968,0,0,OIF:SA:59:5150464,Europe/Paris,,OIF, +OIF:SP:59:6869682,1,"Ronsard - Villon",48.913524,2.488324,0,0,OIF:SA:59:5150465,Europe/Paris,,OIF, +OIF:SP:59:6869685,1,"Louise Michel",48.914818,2.495064,0,0,OIF:SA:59:6869685,Europe/Paris,,OIF, +OIF:SP:59:6869686,1,"Robert Schuman",48.916288,2.497645,0,0,OIF:SA:59:4118169,Europe/Paris,,OIF, +OIF:SP:59:6869687,1,"Robert Schuman",48.916308,2.496704,0,0,OIF:SA:59:4118169,Europe/Paris,,OIF, +OIF:SP:59:6869688,1,"Z.I. de la Poudrette",48.914836,2.501322,0,0,OIF:SA:59:6869688,Europe/Paris,,OIF, +OIF:SP:59:6869689,1,"Z.I. de la Poudrette",48.914962,2.501418,0,0,OIF:SA:59:6869688,Europe/Paris,,OIF, +OIF:SP:59:6869690,1,"Colonel Fabien",48.913294,2.505394,0,0,OIF:SA:59:6869690,Europe/Paris,,OIF, +OIF:SP:59:6869691,1,"Colonel Fabien",48.913149,2.506294,0,0,OIF:SA:59:6869690,Europe/Paris,,OIF, +OIF:SP:59:6869692,1,"Victor Hugo - Jules Guesde",48.91076,2.511549,0,0,OIF:SA:59:6869692,Europe/Paris,,OIF, +OIF:SP:59:6869693,1,"Victor Hugo - Jules Guesde",48.910786,2.511999,0,0,OIF:SA:59:6869692,Europe/Paris,,OIF, +OIF:SP:59:6869695,1,"Gutenberg",48.913211,2.518811,0,0,OIF:SA:59:6869695,Europe/Paris,,OIF, +OIF:SP:59:6869696,1,"Gutenberg",48.9127,2.518046,0,0,OIF:SA:59:6869695,Europe/Paris,,OIF, +OIF:SP:59:6869697,1,"Gambetta",48.917949,2.523573,0,0,OIF:SA:59:3682045,Europe/Paris,,OIF, +OIF:SP:59:6869698,1,"Gambetta",48.917331,2.522644,0,0,OIF:SA:59:3682045,Europe/Paris,,OIF, +OIF:SP:59:6869699,1,"Jean Jaurès",48.920838,2.526938,0,0,OIF:SA:59:6869699,Europe/Paris,,OIF, +OIF:SP:59:6869700,1,"Jean Jaurès",48.920193,2.525518,0,0,OIF:SA:59:6869699,Europe/Paris,,OIF, +OIF:SP:59:6869701,1,"Collèges",48.922303,2.532549,0,0,OIF:SA:59:6869701,Europe/Paris,,OIF, +OIF:SP:59:6869702,1,"Collèges",48.922008,2.53102,0,0,OIF:SA:59:6869701,Europe/Paris,,OIF, +OIF:SP:59:6869703,1,"François Villon",48.920369,2.538801,0,0,OIF:SA:59:6869703,Europe/Paris,,OIF, +OIF:SP:59:6869704,1,"François Villon",48.921053,2.538149,0,0,OIF:SA:59:6869703,Europe/Paris,,OIF, +OIF:SP:59:6869705,1,"Mairie de Livry-Gargan",48.918177,2.538342,0,0,OIF:SA:55:124,Europe/Paris,,OIF, +OIF:SP:59:6869707,1,"Cimetière des Pavillons-sous-Bois",48.91572,2.499607,0,0,OIF:SA:59:6869707,Europe/Paris,,OIF, +OIF:SP:59:6869708,1,"Lycée Claude-Nicolas Ledoux",48.914192,2.492376,0,0,OIF:SA:59:6869708,Europe/Paris,,OIF, +OIF:SP:59:6869719,1,"Les Courtillières",48.913287,2.416848,0,0,OIF:SA:59:6869719,Europe/Paris,,OIF, +OIF:SP:59:6869720,1,"Cité du Pont de Pierre",48.910547,2.416148,0,0,OIF:SA:59:6869720,Europe/Paris,,OIF, +OIF:SP:59:6869731,1,"Pont de Bondy - Anatole France",48.90631,2.470743,0,0,OIF:SA:59:4035526,Europe/Paris,,OIF, +OIF:SP:59:6869761,1,"Rene Camier",48.908712,2.451103,0,0,OIF:SA:59006,Europe/Paris,,OIF, +OIF:SP:59:6869787,1,"Lamartine",48.906739,2.455502,0,0,OIF:SA:59006,Europe/Paris,,OIF, +OIF:SP:59:6869788,1,"Cité Administrative",48.905502,2.461511,0,0,OIF:SA:59008,Europe/Paris,,OIF, +OIF:SP:59:6869789,1,"Rue des Peupliers",48.905489,2.465151,0,0,OIF:SA:59:6869789,Europe/Paris,,OIF, +OIF:SP:59:6869793,1,"Place de l'Europe",48.909346,2.472442,0,0,OIF:SA:59:6869584,Europe/Paris,,OIF, +OIF:SP:59:6869798,1,"Lycée Claude-Nicolas Ledoux",48.913986,2.492348,0,0,OIF:SA:59:5747172,Europe/Paris,,OIF, +OIF:SP:59:6869799,1,"Louise Michel",48.914773,2.495309,0,0,OIF:SA:59:6869685,Europe/Paris,,OIF, +OIF:SP:59:6869800,1,"Robert Shuman (Descente)",48.91637,2.4968,0,0,OIF:SA:59:4118169,Europe/Paris,,OIF, +OIF:SP:59:6869806,1,"Etienne Dolet",48.910728,2.474272,0,0,OIF:SA:59:6869806,Europe/Paris,,OIF, +OIF:SP:59:6869808,1,"Rue des Peupliers",48.905903,2.464594,0,0,OIF:SA:59:6869789,Europe/Paris,,OIF, +OIF:SP:59:6869809,1,"Auguste Delaune",48.906536,2.461064,0,0,OIF:SA:59008,Europe/Paris,,OIF, +OIF:SP:59:6869810,1,"Lamartine",48.907532,2.4538,0,0,OIF:SA:59006,Europe/Paris,,OIF, +OIF:SP:59:6869820,1,"Cité du Pont de Pierre",48.910232,2.416107,0,0,OIF:SA:59:6869720,Europe/Paris,,OIF, +OIF:SP:59:6869821,1,"Les Courtillières",48.913377,2.41693,0,0,OIF:SA:59:6869719,Europe/Paris,,OIF, +OIF:SP:59:6904250,1,"Château - Mairie du 14ème",48.833488,2.324394,0,0,OIF:SA:59:3764702,Europe/Paris,,OIF, +OIF:SP:59:6951509,1,"Général de Gaulle",48.87051,2.224672,0,0,OIF:SA:8738237,Europe/Paris,,OIF, +OIF:SP:59:6951510,1,"Mairie de Suresnes",48.871183,2.224398,0,0,OIF:SA:8738237,Europe/Paris,,OIF, +OIF:SP:59:6951511,1,"Gare du Mont Valerien - Hôpital Foch",48.872097,2.221371,0,0,OIF:SA:8738237,Europe/Paris,,OIF, +OIF:SP:59:6951512,1,"Victor Hugo",48.873904,2.222144,0,0,OIF:SA:8738237,Europe/Paris,,OIF, +OIF:SP:59:6951513,1,"Lycée Paul Langevin",48.877203,2.222246,0,0,OIF:SA:59:4024308,Europe/Paris,,OIF, +OIF:SP:59:6951514,1,"Les Paréchaux",48.879117,2.222296,0,0,OIF:SA:59:6951514,Europe/Paris,,OIF, +OIF:SP:59:6951515,1,"Les Chênes",48.88017,2.22322,0,0,OIF:SA:59:6951515,Europe/Paris,,OIF, +OIF:SP:59:6951516,1,"Danton - Cimetière Voltaire",48.880721,2.226367,0,0,OIF:SA:59:6951516,Europe/Paris,,OIF, +OIF:SP:59:6951517,1,"Salengro - Cimetière Voltaire",48.879762,2.228985,0,0,OIF:SA:59:6951517,Europe/Paris,,OIF, +OIF:SP:59:6951518,1,"Capitaine Ferber",48.879104,2.226956,0,0,OIF:SA:59:4024307,Europe/Paris,,OIF, +OIF:SP:59:6951519,1,"Lycée Paul Langevin.",48.87822,2.223729,0,0,OIF:SA:59:6951519,Europe/Paris,,OIF, +OIF:SP:59:6951520,1,"Burgod - Liberté",48.876422,2.223065,0,0,OIF:SA:59049,Europe/Paris,,OIF, +OIF:SP:59:6951521,1,"Jacques Decour",48.874686,2.221488,0,0,OIF:SA:59:4024546,Europe/Paris,,OIF, +OIF:SP:59:6951522,1,"Gare du Mont Valerien - Hôpital Foch.",48.87189,2.221304,0,0,OIF:SA:8738237,Europe/Paris,,OIF, +OIF:SP:59:6951523,1,"Mairie de Suresnes.",48.870833,2.224876,0,0,OIF:SA:59:6951523,Europe/Paris,,OIF, +OIF:SP:59:6951524,1,"Mairie Desbassayns",48.869998,2.225055,0,0,OIF:SA:59:6951524,Europe/Paris,,OIF, +OIF:SP:59:6951525,1,"Général de Gaulle.",48.870357,2.224604,0,0,OIF:SA:17:1625,Europe/Paris,,OIF, +OIF:SP:59:6951526,1,"Place de Stalingrad",48.863817,2.201488,0,0,OIF:SA:59:6951526,Europe/Paris,,OIF, +OIF:SP:59:6951527,1,"Emmanuel Kant",48.861303,2.20366,0,0,OIF:SA:59:6951527,Europe/Paris,,OIF, +OIF:SP:59:6951528,1,"Masaryk",48.86217,2.207581,0,0,OIF:SA:59:6951528,Europe/Paris,,OIF, +OIF:SP:59:6951529,1,"Place Jean Jaurès",48.863538,2.209321,0,0,OIF:SA:59:4024221,Europe/Paris,,OIF, +OIF:SP:59:6951530,1,"Place de la Paix",48.865044,2.205585,0,0,OIF:SA:59:6951530,Europe/Paris,,OIF, +OIF:SP:59:6951531,1,"Place de Stalingrad.",48.863925,2.201542,0,0,OIF:SA:59:6951531,Europe/Paris,,OIF, +OIF:SP:59:6951534,1,"Honore d'Estienne d'Orves",48.873334,2.226682,0,0,OIF:SA:59:4024267,Europe/Paris,,OIF, +OIF:SP:59:6951536,1,"Rouget de l'Isle - Ratrait",48.876824,2.230613,0,0,OIF:SA:59:6951536,Europe/Paris,,OIF, +OIF:SP:59:6951537,1,"Rouget de l'Isle - Bas Rogers",48.879577,2.233264,0,0,OIF:SA:59:6951537,Europe/Paris,,OIF, +OIF:SP:59:6951538,1,"93, Rue Gambetta",48.878549,2.230282,0,0,OIF:SA:59:6951538,Europe/Paris,,OIF, +OIF:SP:59:6951539,1,"Belvédère",48.875976,2.227303,0,0,OIF:SA:59049,Europe/Paris,,OIF, +OIF:SP:59:6951540,1,"Carnot",48.87309,2.225974,0,0,OIF:SA:59:6951540,Europe/Paris,,OIF, +OIF:SP:59:6951542,1,"Mairie de Suresnes.",48.870689,2.224372,0,0,OIF:SA:59:6951523,Europe/Paris,,OIF, +OIF:SP:59:6951544,1,"Suresnes - Longchamp",48.866561,2.221411,0,0,OIF:SA:59053,Europe/Paris,,OIF, +OIF:SP:59:6951545,1,"Jean-Jacques Rousseau",48.864727,2.22072,0,0,OIF:SA:59:6951545,Europe/Paris,,OIF, +OIF:SP:59:6951546,1,"Fernand Forest",48.862075,2.219637,0,0,OIF:SA:59:6951546,Europe/Paris,,OIF, +OIF:SP:59:6951547,1,"Rue des Couvaloux",48.861201,2.21765,0,0,OIF:SA:59:6951547,Europe/Paris,,OIF, +OIF:SP:59:6951548,1,"République - Val d'Or",48.860207,2.22167,0,0,OIF:SA:59:6951548,Europe/Paris,,OIF, +OIF:SP:59:6951549,1,"Monge",48.861708,2.222103,0,0,OIF:SA:59:6951549,Europe/Paris,,OIF, +OIF:SP:59:6951550,1,"Place de la République",48.863642,2.222943,0,0,OIF:SA:59:6951550,Europe/Paris,,OIF, +OIF:SP:59:6951551,1,"Eugène Sue",48.865755,2.224137,0,0,OIF:SA:59:6951551,Europe/Paris,,OIF, +OIF:SP:59:6951552,1,"Suresnes de Gaulle.",48.868523,2.22454,0,0,OIF:SA:59053,Europe/Paris,,OIF, +OIF:SP:59:6961981,1,"Voltaire - Montreuil",48.850921,2.39138,0,0,OIF:SA:59:6961981,Europe/Paris,,OIF, +OIF:SP:59:6961982,1,"Voltaire - Montreuil",48.850939,2.391843,0,0,OIF:SA:59:6961981,Europe/Paris,,OIF, +OIF:SP:59:6961983,1,"Porte de Clichy",48.894861,2.311853,0,0,OIF:SA:8711127,Europe/Paris,,OIF, +OIF:SP:59:6961992,1,"Pont Cardinet",48.887537,2.314582,0,0,OIF:SA:8738111,Europe/Paris,,OIF, +OIF:SP:59:7013373,1,"Porte de France",48.827504,2.381446,0,0,OIF:SA:59724,Europe/Paris,,OIF, +OIF:SP:59:7013374,1,"Porte de France",48.826605,2.381758,0,0,OIF:SA:59724,Europe/Paris,,OIF, +OIF:SP:59:7013389,1,"Italie - Tolbiac",48.826243,2.356739,0,0,OIF:SA:59283,Europe/Paris,,OIF, +OIF:SP:59:7013390,1,"Italie - Tolbiac",48.826072,2.356738,0,0,OIF:SA:59283,Europe/Paris,,OIF, +OIF:SP:59:7013391,1,"Moulin des Pres",48.826046,2.35305,0,0,OIF:SA:59275,Europe/Paris,,OIF, +OIF:SP:59:7013392,1,"Moulin des Pres",48.825947,2.354356,0,0,OIF:SA:59275,Europe/Paris,,OIF, +OIF:SP:59:7013393,1,"Bobillot - Tolbiac",48.825849,2.349456,0,0,OIF:SA:59:3926313,Europe/Paris,,OIF, +OIF:SP:59:7013394,1,"Bobillot - Tolbiac",48.82575,2.350803,0,0,OIF:SA:59:3926313,Europe/Paris,,OIF, +OIF:SP:59:7013395,1,"Vergniaud",48.82593,2.346012,0,0,OIF:SA:59:3754286,Europe/Paris,,OIF, +OIF:SP:59:7013396,1,"Vergniaud",48.825768,2.345781,0,0,OIF:SA:59:3754286,Europe/Paris,,OIF, +OIF:SP:59:7013398,1,"Rene Coty",48.827422,2.335789,0,0,OIF:SA:59:7013398,Europe/Paris,,OIF, +OIF:SP:59:7013399,1,"Rene Coty",48.827278,2.335694,0,0,OIF:SA:59:7013398,Europe/Paris,,OIF, +OIF:SP:59:7013400,1,"La Tombe Issoire",48.827898,2.331842,0,0,OIF:SA:59:3754276,Europe/Paris,,OIF, +OIF:SP:59:7013402,1,"Alésia - Général Leclerc",48.827943,2.32769,0,0,OIF:SA:59631,Europe/Paris,,OIF, +OIF:SP:59:7013403,1,"Alésia - Général Leclerc",48.827763,2.327431,0,0,OIF:SA:59631,Europe/Paris,,OIF, +OIF:SP:59:7013404,1,"Alésia - Jean Moulin",48.82824,2.325879,0,0,OIF:SA:59631,Europe/Paris,,OIF, +OIF:SP:59:7013405,1,"Alésia - Jean Moulin",48.827916,2.326138,0,0,OIF:SA:59631,Europe/Paris,,OIF, +OIF:SP:59:7013406,1,"Les Plantes",48.829632,2.322094,0,0,OIF:SA:59:7013406,Europe/Paris,,OIF, +OIF:SP:59:7013407,1,"Les Plantes",48.829084,2.323034,0,0,OIF:SA:59:7013406,Europe/Paris,,OIF, +OIF:SP:59:7013408,1,"Alésia - Didot",48.830845,2.318582,0,0,OIF:SA:59:3442461,Europe/Paris,,OIF, +OIF:SP:59:7013409,1,"Alésia - Didot",48.830531,2.318854,0,0,OIF:SA:59:3442461,Europe/Paris,,OIF, +OIF:SP:59:7013410,1,"Plaisance - Hôpital Saint-Joseph",48.831986,2.313844,0,0,OIF:SA:59529,Europe/Paris,,OIF, +OIF:SP:59:7013411,1,"Plaisance - Hôpital Saint-Joseph",48.831626,2.314402,0,0,OIF:SA:59529,Europe/Paris,,OIF, +OIF:SP:59:7013412,1,"Vercingétorix",48.8331,2.310848,0,0,OIF:SA:59529,Europe/Paris,,OIF, +OIF:SP:59:7013413,1,"Vercingétorix",48.83248,2.311842,0,0,OIF:SA:59529,Europe/Paris,,OIF, +OIF:SP:59:7013414,1,"Labrouste",48.834043,2.307893,0,0,OIF:SA:59:7013414,Europe/Paris,,OIF, +OIF:SP:59:7013415,1,"Labrouste",48.833647,2.30852,0,0,OIF:SA:59:7013414,Europe/Paris,,OIF, +OIF:SP:59:7013416,1,"Brancion - Vouillé",48.83495,2.304734,0,0,OIF:SA:59:3887790,Europe/Paris,,OIF, +OIF:SP:59:7013417,1,"Brancion - Vouillé",48.834536,2.305429,0,0,OIF:SA:59:3887790,Europe/Paris,,OIF, +OIF:SP:59:7013418,1,"Place Charles Vallin",48.835704,2.301984,0,0,OIF:SA:59:3887808,Europe/Paris,,OIF, +OIF:SP:59:7013419,1,"Place Charles Vallin",48.835192,2.303032,0,0,OIF:SA:59:3887808,Europe/Paris,,OIF, +OIF:SP:59:7013420,1,"Convention - Vaugirard",48.837472,2.296142,0,0,OIF:SA:59520,Europe/Paris,,OIF, +OIF:SP:59:7013421,1,"Convention - Vaugirard",48.837005,2.296755,0,0,OIF:SA:59520,Europe/Paris,,OIF, +OIF:SP:59:7013422,1,"Convention - Lecourbe",48.839538,2.291633,0,0,OIF:SA:59:3749943,Europe/Paris,,OIF, +OIF:SP:59:7013423,1,"Convention - Lecourbe",48.838855,2.292573,0,0,OIF:SA:59:3749943,Europe/Paris,,OIF, +OIF:SP:59:7013424,1,"Félix Faure",48.840939,2.288527,0,0,OIF:SA:59474,Europe/Paris,,OIF, +OIF:SP:59:7013425,1,"Félix Faure",48.84084,2.288187,0,0,OIF:SA:59474,Europe/Paris,,OIF, +OIF:SP:59:7013426,1,"Boucicaut",48.842447,2.285163,0,0,OIF:SA:59560,Europe/Paris,,OIF, +OIF:SP:59:7013427,1,"Boucicaut",48.842384,2.284754,0,0,OIF:SA:59560,Europe/Paris,,OIF, +OIF:SP:59:7013428,1,"Convention - Saint-Charles",48.843651,2.282547,0,0,OIF:SA:59:7013428,Europe/Paris,,OIF, +OIF:SP:59:7013429,1,"Convention - Saint-Charles",48.84356,2.282248,0,0,OIF:SA:59:7013428,Europe/Paris,,OIF, +OIF:SP:59:7013430,1,"Javel",48.845635,2.278174,0,0,OIF:SA:59548,Europe/Paris,,OIF, +OIF:SP:59:7013431,1,"Javel",48.845706,2.277507,0,0,OIF:SA:59548,Europe/Paris,,OIF, +OIF:SP:59:7013433,1,"Pont Mirabeau",48.847187,2.273978,0,0,OIF:SA:59374,Europe/Paris,,OIF, +OIF:SP:59:7013435,1,"Église d'Auteuil",48.846906,2.269512,0,0,OIF:SA:59667,Europe/Paris,,OIF, +OIF:SP:59:7013436,1,"Chardon-Lagache - Molitor",48.844729,2.266287,0,0,OIF:SA:59383,Europe/Paris,,OIF, +OIF:SP:59:7013437,1,"Jouvenet",48.842949,2.264656,0,0,OIF:SA:59:7013437,Europe/Paris,,OIF, +OIF:SP:59:7013440,1,"Porte de Saint-Cloud",48.837884,2.256194,0,0,OIF:SA:59492,Europe/Paris,,OIF, +OIF:SP:59:7013442,1,"Porte de Saint-Cloud - Michel-Ange",48.838756,2.257581,0,0,OIF:SA:59:7013442,Europe/Paris,,OIF, +OIF:SP:59:7013443,1,"Michel-Ange - Varize",48.840932,2.258558,0,0,OIF:SA:29:455,Europe/Paris,,OIF, +OIF:SP:59:7013444,1,"Exelmans",48.843441,2.260502,0,0,OIF:SA:59496,Europe/Paris,,OIF, +OIF:SP:59:7013445,1,"Michel-Ange - Molitor",48.845518,2.262201,0,0,OIF:SA:59371,Europe/Paris,,OIF, +OIF:SP:59:7013447,1,"Wilhem - Versailles",48.845964,2.272495,0,0,OIF:SA:59374,Europe/Paris,,OIF, +OIF:SP:59:7013448,1,"Glacière - Tolbiac",48.826451,2.341234,0,0,OIF:SA:59:3754202,Europe/Paris,,OIF, +OIF:SP:59:7058154,1,"Juste Héras",48.950507,2.444632,0,0,OIF:SA:59:7058154,Europe/Paris,,OIF, +OIF:SP:59:7058159,1,"Juste Héras",48.950373,2.443786,0,0,OIF:SA:59:7058154,Europe/Paris,,OIF, +OIF:SP:59:7069274,1,"Parc de Saint-Cloud",48.842313,2.221383,0,0,OIF:SA:59010,Europe/Paris,,OIF, +OIF:SP:59:7069275,1,"Parc de Saint-Cloud",48.842294,2.221097,0,0,OIF:SA:59010,Europe/Paris,,OIF, +OIF:SP:59:7069276,1,"Chevrillon",48.846148,2.219427,0,0,OIF:SA:8738235,Europe/Paris,,OIF, +OIF:SP:59:7069277,1,"Chevrillon",48.845897,2.219455,0,0,OIF:SA:8738235,Europe/Paris,,OIF, +OIF:SP:59:7069278,1,"Gare de Saint-Cloud",48.844744,2.217306,0,0,OIF:SA:8738235,Europe/Paris,,OIF, +OIF:SP:59:7069279,1,"Gare de Saint-Cloud",48.844628,2.217579,0,0,OIF:SA:8738235,Europe/Paris,,OIF, +OIF:SP:59:7069280,1,"Collège Gounod",48.843078,2.213498,0,0,OIF:SA:17:1344,Europe/Paris,,OIF, +OIF:SP:59:7069281,1,"Collège Gounod",48.842898,2.213457,0,0,OIF:SA:17:1344,Europe/Paris,,OIF, +OIF:SP:59:7069282,1,"Général Leclerc",48.842747,2.207126,0,0,OIF:SA:17:1345,Europe/Paris,,OIF, +OIF:SP:59:7069283,1,"Général Leclerc",48.842299,2.207617,0,0,OIF:SA:17:1345,Europe/Paris,,OIF, +OIF:SP:59:7069304,1,"Plaideurs - Vaillant-Couturier",48.878889,2.21021,0,0,OIF:SA:59:4023978,Europe/Paris,,OIF, +OIF:SP:59:7069305,1,"Plaideurs - Vaillant-Couturier",48.878477,2.211519,0,0,OIF:SA:59:4023978,Europe/Paris,,OIF, +OIF:SP:59:7069306,1,"Calvaire - Mairie Annexe",48.880009,2.207155,0,0,OIF:SA:59:7069306,Europe/Paris,,OIF, +OIF:SP:59:7069307,1,"Calvaire - Mairie Annexe",48.879301,2.208356,0,0,OIF:SA:59:7069306,Europe/Paris,,OIF, +OIF:SP:59:7069308,1,"Daniel Becker",48.881517,2.205489,0,0,OIF:SA:59:4208638,Europe/Paris,,OIF, +OIF:SP:59:7069309,1,"Daniel Becker",48.881122,2.205653,0,0,OIF:SA:59:4208638,Europe/Paris,,OIF, +OIF:SP:59:7069310,1,"Pierre Sergent",48.884265,2.203233,0,0,OIF:SA:59:7069310,Europe/Paris,,OIF, +OIF:SP:59:7069311,1,"Pierre Sergent",48.883717,2.203371,0,0,OIF:SA:59:7069310,Europe/Paris,,OIF, +OIF:SP:59:7069312,1,"Place de la Boule - Joliot Curie",48.887471,2.201276,0,0,OIF:SA:59:5419727,Europe/Paris,,OIF, +OIF:SP:59:7069314,1,"Les Venets",48.889828,2.203492,0,0,OIF:SA:59:7069314,Europe/Paris,,OIF, +OIF:SP:59:7069315,1,"Plainchamp",48.892107,2.199601,0,0,OIF:SA:17:1589,Europe/Paris,,OIF, +OIF:SP:59:7069316,1,"Plainchamp",48.890768,2.1997,0,0,OIF:SA:17:1589,Europe/Paris,,OIF, +OIF:SP:59:7069317,1,"Rue des Anciennes Mairies",48.893004,2.198086,0,0,OIF:SA:59:7069317,Europe/Paris,,OIF, +OIF:SP:59:7069318,1,"Rue des Anciennes Mairies",48.892815,2.198223,0,0,OIF:SA:59:7069317,Europe/Paris,,OIF, +OIF:SP:59:7069319,1,"Nanterre-Ville RER",48.895438,2.197221,0,0,OIF:SA:8775804,Europe/Paris,,OIF, +OIF:SP:59:7069320,1,"Paul Bert",48.896845,2.20162,0,0,OIF:SA:59:7069320,Europe/Paris,,OIF, +OIF:SP:59:7069321,1,"Paul Bert",48.896782,2.200829,0,0,OIF:SA:59:7069320,Europe/Paris,,OIF, +OIF:SP:59:7069322,1,"Gounod",48.897999,2.204888,0,0,OIF:SA:59:4024369,Europe/Paris,,OIF, +OIF:SP:59:7069323,1,"Gounod",48.897795,2.206565,0,0,OIF:SA:59:4024369,Europe/Paris,,OIF, +OIF:SP:59:7069324,1,"Berthelot",48.895891,2.208042,0,0,OIF:SA:59:7069324,Europe/Paris,,OIF, +OIF:SP:59:7069325,1,"Balzac - Zola",48.894374,2.210309,0,0,OIF:SA:59:7069325,Europe/Paris,,OIF, +OIF:SP:59:7069326,1,"Balzac - Zola",48.894715,2.209681,0,0,OIF:SA:59:7069325,Europe/Paris,,OIF, +OIF:SP:59:7069327,1,"Joliot-Curie - Courbevoie",48.893928,2.21264,0,0,OIF:SA:59:5150174,Europe/Paris,,OIF, +OIF:SP:59:7069328,1,"Joliot-Curie - Courbevoie",48.894125,2.212476,0,0,OIF:SA:59:5150174,Europe/Paris,,OIF, +OIF:SP:59:7069329,1,"Marcel Paul - Préfecture",48.896233,2.21761,0,0,OIF:SA:59:7069329,Europe/Paris,,OIF, +OIF:SP:59:7069330,1,"Esplanade Charles de Gaulle",48.895339,2.222437,0,0,OIF:SA:8775802,Europe/Paris,,OIF, +OIF:SP:59:7069331,1,"Nanterre - Préfecture RER",48.896848,2.221057,0,0,OIF:SA:8775802,Europe/Paris,,OIF, +OIF:SP:59:7069333,1,"Marcel Paul",48.896728,2.218236,0,0,OIF:SA:59:7069333,Europe/Paris,,OIF, +OIF:SP:59:7069334,1,"Préfecture des Hauts-de-Seine",48.895665,2.215103,0,0,OIF:SA:59:6187668,Europe/Paris,,OIF, +OIF:SP:59:7069335,1,"Nanterre - Ville RER",48.894933,2.195205,0,0,OIF:SA:8775804,Europe/Paris,,OIF, +OIF:SP:59:7069336,1,"Maurice Thorez",48.893694,2.196599,0,0,OIF:SA:8775804,Europe/Paris,,OIF, +OIF:SP:59:7069337,1,"Rochegude",48.889581,2.199349,0,0,OIF:SA:59:7069337,Europe/Paris,,OIF, +OIF:SP:59:7069338,1,"Sadi Carnot - Joliot-Curie",48.889073,2.202826,0,0,OIF:SA:59:4024318,Europe/Paris,,OIF, +OIF:SP:59:7069339,1,"Place de la Boule - Lénine",48.886966,2.199506,0,0,OIF:SA:59:4024095,Europe/Paris,,OIF, +OIF:SP:59:7069342,1,"La Colline",48.841305,2.220609,0,0,OIF:SA:59010,Europe/Paris,,OIF, +OIF:SP:59:7069343,1,"Pont de Saint-Cloud - Rive Gauche",48.840929,2.222067,0,0,OIF:SA:59010,Europe/Paris,,OIF, +OIF:SP:59:7069344,1,"Hôtel de Ville de Boulogne-Billancourt",48.835875,2.238906,0,0,OIF:SA:59:3442583,Europe/Paris,,OIF, +OIF:SP:59:7069346,1,"Billancourt",48.832379,2.238927,0,0,OIF:SA:59504,Europe/Paris,,OIF, +OIF:SP:59:7069353,1,"Émile Zola",48.82793,2.238663,0,0,OIF:SA:59:7069353,Europe/Paris,,OIF, +OIF:SP:59:7069354,1,"Émile Zola",48.827651,2.238432,0,0,OIF:SA:59:7069353,Europe/Paris,,OIF, +OIF:SP:59:7069357,1,"Pont de Billancourt",48.825277,2.247801,0,0,OIF:SA:24:14942,Europe/Paris,,OIF, +OIF:SP:59:7069364,1,"Groupe Scolaire Brossolette",48.818579,2.244873,0,0,OIF:SA:59:4009179,Europe/Paris,,OIF, +OIF:SP:59:7069365,1,"Gardes - Vaugirard",48.819008,2.241919,0,0,OIF:SA:59021,Europe/Paris,,OIF, +OIF:SP:59:7069367,1,"Meudon sur Seine-Tramway",48.818691,2.239646,0,0,OIF:SA:59021,Europe/Paris,,OIF, +OIF:SP:59:7069376,1,"Église de Meudon",48.807301,2.235831,0,0,OIF:SA:59:4009128,Europe/Paris,,OIF, +OIF:SP:59:7069377,1,"Église de Meudon",48.806699,2.235995,0,0,OIF:SA:59:4009128,Europe/Paris,,OIF, +OIF:SP:59:7069378,1,"Trivaux - Vertugadins - Lycée",48.803317,2.233893,0,0,OIF:SA:59:7069378,Europe/Paris,,OIF, +OIF:SP:59:7069379,1,"Trivaux - Vertugadins - Lycée",48.803659,2.234287,0,0,OIF:SA:59:7069378,Europe/Paris,,OIF, +OIF:SP:59:7069380,1,"Cimetière de Trivaux",48.799668,2.233424,0,0,OIF:SA:59:7069380,Europe/Paris,,OIF, +OIF:SP:59:7069381,1,"Cimetière de Trivaux",48.799686,2.233669,0,0,OIF:SA:59:7069380,Europe/Paris,,OIF, +OIF:SP:59:7069382,1,"Tapis Vert",48.789063,2.234152,0,0,OIF:SA:59:7069382,Europe/Paris,,OIF, +OIF:SP:59:7069383,1,"Tapis Vert",48.788829,2.234193,0,0,OIF:SA:59:7069382,Europe/Paris,,OIF, +OIF:SP:59:7069385,1,"Square Médéric",48.789456,2.231635,0,0,OIF:SA:59:6263485,Europe/Paris,,OIF, +OIF:SP:59:7069388,1,"Centre Commercial du Moulin",48.790042,2.223785,0,0,OIF:SA:59:7069388,Europe/Paris,,OIF, +OIF:SP:59:7069389,1,"Centre Commercial du Moulin",48.789934,2.22384,0,0,OIF:SA:59:7069388,Europe/Paris,,OIF, +OIF:SP:59:7069396,1,"Église - Avenue de Celle",48.78726,2.22798,0,0,OIF:SA:59:7069396,Europe/Paris,,OIF, +OIF:SP:59:7069397,1,"Église - Avenue de Celle",48.787323,2.228103,0,0,OIF:SA:59:7069396,Europe/Paris,,OIF, +OIF:SP:59:7069399,1,"Patinoire",48.783673,2.227621,0,0,OIF:SA:59868,Europe/Paris,,OIF, +OIF:SP:59:7069400,1,"Paul Demange",48.784134,2.230231,0,0,OIF:SA:59866,Europe/Paris,,OIF, +OIF:SP:59:7069402,1,"Centre Millandy",48.785556,2.232663,0,0,OIF:SA:59:6263503,Europe/Paris,,OIF, +OIF:SP:59:7069403,1,"Espace Culturel - Robert Doisneau",48.787409,2.233679,0,0,OIF:SA:59:5121307,Europe/Paris,,OIF, +OIF:SP:59:7069406,1,"Le Lac",48.786192,2.229696,0,0,OIF:SA:59:5121310,Europe/Paris,,OIF, +OIF:SP:59:7069411,1,"Silly - Gallieni",48.835376,2.232631,0,0,OIF:SA:59:4024394,Europe/Paris,,OIF, +OIF:SP:59:7069415,1,"Suzanne Lenglen",48.833294,2.276173,0,0,OIF:SA:59130,Europe/Paris,,OIF, +OIF:SP:59:7069417,1,"Rue Henri Farman",48.833209,2.269938,0,0,OIF:SA:59:7069417,Europe/Paris,,OIF, +OIF:SP:59:7069418,1,"Rue Henri Farman",48.833147,2.270142,0,0,OIF:SA:59:7069417,Europe/Paris,,OIF, +OIF:SP:59:7069420,1,"Gallieni - Camille Desmoulins",48.831222,2.266945,0,0,OIF:SA:59:5091979,Europe/Paris,,OIF, +OIF:SP:59:7069422,1,"Issy-Val de Seine",48.829431,2.264361,0,0,OIF:SA:59134,Europe/Paris,,OIF, +OIF:SP:59:7069423,1,"Esplanade du Foncet",48.826678,2.259614,0,0,OIF:SA:59:7069423,Europe/Paris,,OIF, +OIF:SP:59:7069424,1,"Esplanade du Foncet",48.827362,2.261165,0,0,OIF:SA:59:7069423,Europe/Paris,,OIF, +OIF:SP:59:7069425,1,"Passerelle de l'Europe",48.82514,2.257602,0,0,OIF:SA:59:7069425,Europe/Paris,,OIF, +OIF:SP:59:7069426,1,"Passerelle de l'Europe",48.824556,2.257208,0,0,OIF:SA:59:7069425,Europe/Paris,,OIF, +OIF:SP:59:7069427,1,"Médiathèque des Chartreux",48.822917,2.253427,0,0,OIF:SA:59:7069427,Europe/Paris,,OIF, +OIF:SP:59:7069428,1,"Médiathèque des Chartreux",48.822864,2.25389,0,0,OIF:SA:59:7069427,Europe/Paris,,OIF, +OIF:SP:59:7069429,1,"Les Moulineaux",48.822332,2.251631,0,0,OIF:SA:59017,Europe/Paris,,OIF, +OIF:SP:59:7069433,1,"Pierre Lefaucheux",48.824616,2.241459,0,0,OIF:SA:59:7069433,Europe/Paris,,OIF, +OIF:SP:59:7069434,1,"Pierre Lefaucheux",48.82458,2.241106,0,0,OIF:SA:59:7069433,Europe/Paris,,OIF, +OIF:SP:59:7069435,1,"Parc de Billancourt",48.826284,2.237482,0,0,OIF:SA:59:7069435,Europe/Paris,,OIF, +OIF:SP:59:7069436,1,"Parc de Billancourt",48.826329,2.236869,0,0,OIF:SA:59:7069435,Europe/Paris,,OIF, +OIF:SP:59:7069437,1,"Cours de l'Île Séguin",48.827684,2.235097,0,0,OIF:SA:59:7069437,Europe/Paris,,OIF, +OIF:SP:59:7069438,1,"Cours de l'Île Séguin",48.828224,2.235,0,0,OIF:SA:59:7069437,Europe/Paris,,OIF, +OIF:SP:59:7069439,1,"Yves Kermen",48.830138,2.23531,0,0,OIF:SA:59:7069439,Europe/Paris,,OIF, +OIF:SP:59:7069440,1,"Yves Kermen",48.829501,2.235855,0,0,OIF:SA:59:7069439,Europe/Paris,,OIF, +OIF:SP:59:7069444,1,"Silly - Gallieni",48.835277,2.232509,0,0,OIF:SA:59:4024394,Europe/Paris,,OIF, +OIF:SP:59:7069445,1,"Square des Frères Farman",48.836571,2.232383,0,0,OIF:SA:59:7069445,Europe/Paris,,OIF, +OIF:SP:59:7069446,1,"Square des Frères Farman",48.836139,2.232289,0,0,OIF:SA:59:7069445,Europe/Paris,,OIF, +OIF:SP:59:7069449,1,"Rhin et Danube",48.840334,2.22953,0,0,OIF:SA:59400,Europe/Paris,,OIF, +OIF:SP:59:7069450,1,"Rhin et Danube",48.84019,2.229163,0,0,OIF:SA:59400,Europe/Paris,,OIF, +OIF:SP:59:7069451,1,"Rhin et Danube - Musée Albert Kahn",48.841368,2.229501,0,0,OIF:SA:59400,Europe/Paris,,OIF, +OIF:SP:59:7069452,1,"Rhin et Danube - Musée Albert Kahn",48.841592,2.229391,0,0,OIF:SA:59400,Europe/Paris,,OIF, +OIF:SP:59:7069453,1,"Escudier",48.843446,2.232233,0,0,OIF:SA:17:1339,Europe/Paris,,OIF, +OIF:SP:59:7069454,1,"Escudier",48.843311,2.231716,0,0,OIF:SA:17:1339,Europe/Paris,,OIF, +OIF:SP:59:7069455,1,"Église de Boulogne",48.845895,2.237308,0,0,OIF:SA:59:7069455,Europe/Paris,,OIF, +OIF:SP:59:7069456,1,"Église de Boulogne",48.845661,2.236301,0,0,OIF:SA:59:7069455,Europe/Paris,,OIF, +OIF:SP:59:7069457,1,"Gambetta",48.84766,2.241499,0,0,OIF:SA:17:1337,Europe/Paris,,OIF, +OIF:SP:59:7069458,1,"Gambetta",48.847696,2.241104,0,0,OIF:SA:17:1337,Europe/Paris,,OIF, +OIF:SP:59:7080560,1,"Jacques-Henri Lartigue.",48.824405,2.261279,0,0,OIF:SA:59136,Europe/Paris,,OIF, +OIF:SP:5:40001,1,"Grande Rue Mairie",49.134535,2.356515,0,0,OIF:SA:5:40001,Europe/Paris,,OIF, +OIF:SP:5:40002,1,"Grande Rue Mairie",49.134553,2.35709,0,0,OIF:SA:5:40001,Europe/Paris,,OIF, +OIF:SP:5:40003,1,"La Croix Boissiée",49.133968,2.360335,0,0,OIF:SA:5:40003,Europe/Paris,,OIF, +OIF:SP:5:40005,1,"Saint-Laurent",49.135479,2.351695,0,0,OIF:SA:5:40005,Europe/Paris,,OIF, +OIF:SP:5:40009,1,"Mairie",49.098076,2.466383,0,0,OIF:SA:5:40009,Europe/Paris,,OIF, +OIF:SP:5:40010,1,"Mairie",49.097851,2.466081,0,0,OIF:SA:5:40009,Europe/Paris,,OIF, +OIF:SP:5:40011,1,"Place du Souvenir",49.088355,2.371998,0,0,OIF:SA:5:40011,Europe/Paris,,OIF, +OIF:SP:5:40013,1,"Tabac",49.090126,2.368989,0,0,OIF:SA:5:40013,Europe/Paris,,OIF, +OIF:SP:5:40015,1,"Afpa",49.184777,2.304488,0,0,OIF:SA:5:40015,Europe/Paris,,OIF, +OIF:SP:5:40017,1,"Bel Air",49.159003,2.290448,0,0,OIF:SA:5:40017,Europe/Paris,,OIF, +OIF:SP:5:40018,1,"Bel Air",49.158257,2.289216,0,0,OIF:SA:5:40017,Europe/Paris,,OIF, +OIF:SP:5:40019,1,"La Bouville",49.160704,2.296215,0,0,OIF:SA:5:40019,Europe/Paris,,OIF, +OIF:SP:5:40020,1,"La Bouville",49.160668,2.296667,0,0,OIF:SA:5:40019,Europe/Paris,,OIF, +OIF:SP:5:40021,1,"Mairie",49.16111,2.301928,0,0,OIF:SA:5:40021,Europe/Paris,,OIF, +OIF:SP:5:40022,1,"Mairie",49.161074,2.301708,0,0,OIF:SA:5:40021,Europe/Paris,,OIF, +OIF:SP:5:40023,1,"Peupleraie",49.159683,2.308614,0,0,OIF:SA:5:40023,Europe/Paris,,OIF, +OIF:SP:5:40024,1,"Peupleraie",49.159737,2.308011,0,0,OIF:SA:5:40023,Europe/Paris,,OIF, +OIF:SP:5:40027,1,"Petits Pavés",49.056645,2.250779,0,0,OIF:SA:5:40027,Europe/Paris,,OIF, +OIF:SP:5:40028,1,"Place de la Pompe",49.053905,2.252288,0,0,OIF:SA:5:40028,Europe/Paris,,OIF, +OIF:SP:5:40029,1,"Carrefour Bouffémont",49.058322,2.295789,0,0,OIF:SA:5:40029,Europe/Paris,,OIF, +OIF:SP:5:40030,1,"École H Boiscommun",49.064668,2.299983,0,0,OIF:SA:5:40030,Europe/Paris,,OIF, +OIF:SP:5:40032,1,"École les Clottins",49.065687,2.31672,0,0,OIF:SA:5:40032,Europe/Paris,,OIF, +OIF:SP:5:40033,1,"Église",49.063167,2.298726,0,0,OIF:SA:5:40033,Europe/Paris,,OIF, +OIF:SP:5:40035,1,"Le Néflier",49.06057,2.29788,0,0,OIF:SA:5:40035,Europe/Paris,,OIF, +OIF:SP:5:40036,1,"ZAE Ponts de Baillet",49.064196,2.322929,0,0,OIF:SA:5:40036,Europe/Paris,,OIF, +OIF:SP:5:40039,1,"Blum Senlis",49.144351,2.295871,0,0,OIF:SA:5:40039,Europe/Paris,,OIF, +OIF:SP:5:40040,1,"Boyenval",49.143112,2.300474,0,0,OIF:SA:5:40040,Europe/Paris,,OIF, +OIF:SP:5:40044,1,"Gendarmerie/Collège",49.137696,2.282867,0,0,OIF:SA:5:40044,Europe/Paris,,OIF, +OIF:SP:5:40046,1,"Daubigny",49.144182,2.304048,0,0,OIF:SA:5:40046,Europe/Paris,,OIF, +OIF:SP:5:40048,1,"Duquesnel",49.139366,2.278675,0,0,OIF:SA:5:40048,Europe/Paris,,OIF, +OIF:SP:5:40050,1,"Les Logettes",49.140146,2.296614,0,0,OIF:SA:5:40050,Europe/Paris,,OIF, +OIF:SP:5:40051,1,"Les Logettes",49.140505,2.296641,0,0,OIF:SA:5:40050,Europe/Paris,,OIF, +OIF:SP:5:40052,1,"Lycée",49.145276,2.295008,0,0,OIF:SA:5:40052,Europe/Paris,,OIF, +OIF:SP:5:40053,1,"Mairie",49.142028,2.284807,0,0,OIF:SA:5:40053,Europe/Paris,,OIF, +OIF:SP:5:40057,1,"Hôpital les Oliviers",49.145864,2.311443,0,0,OIF:SA:5:40057,Europe/Paris,,OIF, +OIF:SP:5:40061,1,"Piscine",49.145632,2.287488,0,0,OIF:SA:5:40061,Europe/Paris,,OIF, +OIF:SP:5:40063,1,"Roussel",49.139003,2.290959,0,0,OIF:SA:5:40063,Europe/Paris,,OIF, +OIF:SP:5:40064,1,"Roussel",49.138904,2.291137,0,0,OIF:SA:5:40063,Europe/Paris,,OIF, +OIF:SP:5:40065,1,"Sécurité Sociale",49.141121,2.285055,0,0,OIF:SA:5:40065,Europe/Paris,,OIF, +OIF:SP:5:40067,1,"Rue de Senlis",49.14481,2.298487,0,0,OIF:SA:5:40067,Europe/Paris,,OIF, +OIF:SP:5:40069,1,"Souvenir",49.14709,2.29202,0,0,OIF:SA:5:40069,Europe/Paris,,OIF, +OIF:SP:5:40071,1,"Tilleuls",49.142689,2.296626,0,0,OIF:SA:5:40071,Europe/Paris,,OIF, +OIF:SP:5:40073,1,"Vang Gogh",49.145431,2.302363,0,0,OIF:SA:5:40073,Europe/Paris,,OIF, +OIF:SP:5:40075,1,"Verdun",49.143185,2.303213,0,0,OIF:SA:5:40075,Europe/Paris,,OIF, +OIF:SP:5:40088,1,"Bienvenue",49.158851,2.335919,0,0,OIF:SA:5:40088,Europe/Paris,,OIF, +OIF:SP:5:40089,1,"Bienvenue",49.158959,2.336453,0,0,OIF:SA:5:40088,Europe/Paris,,OIF, +OIF:SP:5:40090,1,"Rue de Boran",49.159884,2.338632,0,0,OIF:SA:5:40090,Europe/Paris,,OIF, +OIF:SP:5:40091,1,"Centre Commercial",49.157808,2.32426,0,0,OIF:SA:5:40091,Europe/Paris,,OIF, +OIF:SP:5:40092,1,"Croix Dorée",49.157709,2.321,0,0,OIF:SA:5:40092,Europe/Paris,,OIF, +OIF:SP:5:40093,1,"Croix Dorée",49.157547,2.321397,0,0,OIF:SA:5:40092,Europe/Paris,,OIF, +OIF:SP:5:40095,1,"Centre Ville",49.156631,2.328535,0,0,OIF:SA:5:40095,Europe/Paris,,OIF, +OIF:SP:5:40098,1,"Mairie",49.157539,2.330014,0,0,OIF:SA:5:40098,Europe/Paris,,OIF, +OIF:SP:5:40103,1,"Paul Verlaine",49.157745,2.333275,0,0,OIF:SA:5:40103,Europe/Paris,,OIF, +OIF:SP:5:40104,1,"Paul Verlaine",49.157665,2.333426,0,0,OIF:SA:5:40103,Europe/Paris,,OIF, +OIF:SP:5:40107,1,"Mairie",49.066374,2.457263,0,0,OIF:SA:5:40107,Europe/Paris,,OIF, +OIF:SP:5:40108,1,"Mairie",49.066464,2.457113,0,0,OIF:SA:5:40107,Europe/Paris,,OIF, +OIF:SP:5:40109,1,"Mairie",49.054202,2.266643,0,0,OIF:SA:51:310,Europe/Paris,,OIF, +OIF:SP:5:40110,1,"Mairie",49.054391,2.266575,0,0,OIF:SA:51:310,Europe/Paris,,OIF, +OIF:SP:5:40111,1,"Beaux Soleils",49.13212,2.224034,0,0,OIF:SA:5:40111,Europe/Paris,,OIF, +OIF:SP:5:40114,1,"École du Centre",49.137327,2.239456,0,0,OIF:SA:5:40114,Europe/Paris,,OIF, +OIF:SP:5:40116,1,"Rue de Jouy",49.137045,2.225092,0,0,OIF:SA:5:40116,Europe/Paris,,OIF, +OIF:SP:5:40117,1,"Mairie",49.133996,2.231274,0,0,OIF:SA:5:40117,Europe/Paris,,OIF, +OIF:SP:5:40119,1,"Gare",49.13582,2.242116,0,0,OIF:SA:8727651,Europe/Paris,,OIF, +OIF:SP:5:40120,1,"Gare",49.136135,2.242444,0,0,OIF:SA:8727651,Europe/Paris,,OIF, +OIF:SP:5:40129,1,"Goussainville RER D",49.024053,2.46274,0,0,OIF:SA:8727624,Europe/Paris,,OIF, +OIF:SP:5:40130,1,"Le Gué",49.0793,2.443355,0,0,OIF:SA:5:40130,Europe/Paris,,OIF, +OIF:SP:5:40132,1,"Carrefour Plessis Lassy",49.097034,2.447236,0,0,OIF:SA:5:40132,Europe/Paris,,OIF, +OIF:SP:5:40133,1,"Carrefour Plessis Lassy",49.097043,2.44751,0,0,OIF:SA:5:40132,Europe/Paris,,OIF, +OIF:SP:5:40136,1,"Grands Champs",49.130328,2.265965,0,0,OIF:SA:5:40136,Europe/Paris,,OIF, +OIF:SP:5:40138,1,"Les Lilas",49.131346,2.269263,0,0,OIF:SA:5:40138,Europe/Paris,,OIF, +OIF:SP:5:40140,1,"Près de Mours",49.133297,2.27141,0,0,OIF:SA:5:40140,Europe/Paris,,OIF, +OIF:SP:5:40147,1,"Église",49.070511,2.309169,0,0,OIF:SA:5:40147,Europe/Paris,,OIF, +OIF:SP:5:40149,1,"Maison d'Arcole",49.069215,2.299966,0,0,OIF:SA:5:40149,Europe/Paris,,OIF, +OIF:SP:5:40150,1,"Maison d'Arcole",49.069125,2.299733,0,0,OIF:SA:5:40149,Europe/Paris,,OIF, +OIF:SP:5:40152,1,"Sente de la Fontaine",49.070321,2.303699,0,0,OIF:SA:5:40152,Europe/Paris,,OIF, +OIF:SP:5:40155,1,"Montsoult Maffliers Train H",49.066074,2.321739,0,0,OIF:SA:8727649,Europe/Paris,,OIF, +OIF:SP:5:40156,1,"Les Bourdinières",49.141096,2.328387,0,0,OIF:SA:5:40156,Europe/Paris,,OIF, +OIF:SP:5:40157,1,"Les Bourdinières",49.141212,2.328455,0,0,OIF:SA:5:40156,Europe/Paris,,OIF, +OIF:SP:5:40158,1,"Valdempierre",49.1392,2.332715,0,0,OIF:SA:5:40158,Europe/Paris,,OIF, +OIF:SP:5:40159,1,"Valdempierre",49.139263,2.332756,0,0,OIF:SA:5:40158,Europe/Paris,,OIF, +OIF:SP:5:40160,1,"Avenue de Paris",49.128095,2.292188,0,0,OIF:SA:5:40160,Europe/Paris,,OIF, +OIF:SP:5:40162,1,"Mairie",49.129522,2.289544,0,0,OIF:SA:5:40162,Europe/Paris,,OIF, +OIF:SP:5:40164,1,"Gare",49.132484,2.281024,0,0,OIF:SA:8727675,Europe/Paris,,OIF, +OIF:SP:5:40166,1,"CAT",49.14293,2.27374,0,0,OIF:SA:5:40166,Europe/Paris,,OIF, +OIF:SP:5:40167,1,"Jean Catelas",49.15751,2.286696,0,0,OIF:SA:5:40167,Europe/Paris,,OIF, +OIF:SP:5:40168,1,"Jean Catelas",49.157573,2.286408,0,0,OIF:SA:5:40167,Europe/Paris,,OIF, +OIF:SP:5:40169,1,"Centre Commercial",49.144911,2.281189,0,0,OIF:SA:5:40169,Europe/Paris,,OIF, +OIF:SP:5:40170,1,"Centre Commercial",49.144821,2.281367,0,0,OIF:SA:5:40169,Europe/Paris,,OIF, +OIF:SP:5:40171,1,"Collège Brassens",49.154476,2.274137,0,0,OIF:SA:5:40171,Europe/Paris,,OIF, +OIF:SP:5:40174,1,"Colonel Fabien",49.155503,2.278615,0,0,OIF:SA:5:40174,Europe/Paris,,OIF, +OIF:SP:5:40175,1,"Colonel Fabien",49.155494,2.278177,0,0,OIF:SA:5:40174,Europe/Paris,,OIF, +OIF:SP:5:40178,1,"Foyer",49.157203,2.282614,0,0,OIF:SA:5:40178,Europe/Paris,,OIF, +OIF:SP:5:40179,1,"Foyer",49.157293,2.282696,0,0,OIF:SA:5:40178,Europe/Paris,,OIF, +OIF:SP:5:40180,1,"Mairie",49.151719,2.276387,0,0,OIF:SA:5:40180,Europe/Paris,,OIF, +OIF:SP:5:40181,1,"Mairie",49.151468,2.276675,0,0,OIF:SA:5:40180,Europe/Paris,,OIF, +OIF:SP:5:40182,1,"Paul Éluard",49.149372,2.272267,0,0,OIF:SA:5:40182,Europe/Paris,,OIF, +OIF:SP:5:40183,1,"Paul Éluard",49.14939,2.272267,0,0,OIF:SA:5:40182,Europe/Paris,,OIF, +OIF:SP:5:40192,1,"Stade",49.147531,2.294581,0,0,OIF:SA:5:40192,Europe/Paris,,OIF, +OIF:SP:5:40193,1,"La Soie",49.147143,2.270393,0,0,OIF:SA:5:40193,Europe/Paris,,OIF, +OIF:SP:5:40194,1,"La Soie",49.146864,2.270832,0,0,OIF:SA:5:40193,Europe/Paris,,OIF, +OIF:SP:5:40196,1,"ZAE Chemin Vert",49.154852,2.290123,0,0,OIF:SA:5:40196,Europe/Paris,,OIF, +OIF:SP:5:40222,1,"Zone Industrielle",49.142793,2.255237,0,0,OIF:SA:5:40222,Europe/Paris,,OIF, +OIF:SP:5:40223,1,"Zone Industrielle",49.142712,2.25495,0,0,OIF:SA:5:40222,Europe/Paris,,OIF, +OIF:SP:5:40224,1,"Zola",49.145581,2.257959,0,0,OIF:SA:5:40224,Europe/Paris,,OIF, +OIF:SP:5:40225,1,"Zola",49.145841,2.258246,0,0,OIF:SA:5:40224,Europe/Paris,,OIF, +OIF:SP:5:40226,1,"Les Tilleuls",49.096373,2.453092,0,0,OIF:SA:5:40226,Europe/Paris,,OIF, +OIF:SP:5:40227,1,"Mairie Annexe",49.068042,2.476947,0,0,OIF:SA:5:40227,Europe/Paris,,OIF, +OIF:SP:5:40231,1,"Belloy Saint-Martin Train H",49.098323,2.36114,0,0,OIF:SA:8727655,Europe/Paris,,OIF, +OIF:SP:5:40233,1,"Centre Médical",49.105217,2.337152,0,0,OIF:SA:5:40233,Europe/Paris,,OIF, +OIF:SP:5:40235,1,"Belloy Saint-Martin Train H",49.097694,2.362261,0,0,OIF:SA:8727655,Europe/Paris,,OIF, +OIF:SP:5:40237,1,"Lacroix",49.1066,2.35092,0,0,OIF:SA:5:40237,Europe/Paris,,OIF, +OIF:SP:5:40239,1,"Mairie",49.108487,2.34795,0,0,OIF:SA:5:40239,Europe/Paris,,OIF, +OIF:SP:5:40241,1,"Prés de Carnelle",49.104759,2.341723,0,0,OIF:SA:5:40241,Europe/Paris,,OIF, +OIF:SP:5:40244,1,"Roger Salengro",49.104741,2.34487,0,0,OIF:SA:5:40244,Europe/Paris,,OIF, +OIF:SP:5:40245,1,"La Tour",49.109395,2.343872,0,0,OIF:SA:5:40245,Europe/Paris,,OIF, +OIF:SP:5:40251,1,"Le Beau Jay",49.078762,2.353128,0,0,OIF:SA:5:40251,Europe/Paris,,OIF, +OIF:SP:5:40252,1,"Le Beau Jay",49.078681,2.353019,0,0,OIF:SA:5:40251,Europe/Paris,,OIF, +OIF:SP:5:40254,1,"Église",49.076578,2.357135,0,0,OIF:SA:5:40254,Europe/Paris,,OIF, +OIF:SP:5:40255,1,"Mairie",49.064702,2.234999,0,0,OIF:SA:51:422,Europe/Paris,,OIF, +OIF:SP:5:40269,1,"Mairie",49.072363,2.389945,0,0,OIF:SA:5:40269,Europe/Paris,,OIF, +OIF:SP:5:40273,1,"Collège Blaise Pascal",49.124496,2.368326,0,0,OIF:SA:5:40273,Europe/Paris,,OIF, +OIF:SP:5:40275,1,"Collège Blaise Pascal",49.124496,2.367285,0,0,OIF:SA:5:40273,Europe/Paris,,OIF, +OIF:SP:5:40278,1,"Fréchot",49.129896,2.370219,0,0,OIF:SA:5:40278,Europe/Paris,,OIF, +OIF:SP:5:40283,1,"Fréchot",49.130165,2.369753,0,0,OIF:SA:5:40278,Europe/Paris,,OIF, +OIF:SP:5:40285,1,"Persan Beaumont Train H",49.147641,2.279213,0,0,OIF:SA:8727646,Europe/Paris,,OIF, +OIF:SP:5:40291,1,"Saint-Laurent",49.135362,2.35201,0,0,OIF:SA:5:40005,Europe/Paris,,OIF, +OIF:SP:5:40294,1,"Collège Marcel Pagnol",49.066245,2.321972,0,0,OIF:SA:51:626,Europe/Paris,,OIF, +OIF:SP:5:40295,1,"Les Fontenelles",49.106528,2.352535,0,0,OIF:SA:5:40295,Europe/Paris,,OIF, +OIF:SP:5:40296,1,"Centre Ville",49.026249,2.324539,0,0,OIF:SA:5:40296,Europe/Paris,,OIF, +OIF:SP:5:40297,1,"Centre Commercial",49.042343,2.337671,0,0,OIF:SA:59:6742303,Europe/Paris,,OIF, +OIF:SP:5:40302,1,"Gendarmerie",49.067709,2.317212,0,0,OIF:SA:5:40302,Europe/Paris,,OIF, +OIF:SP:5:40308,1,"La Croix Boissiée",49.134076,2.360253,0,0,OIF:SA:5:40003,Europe/Paris,,OIF, +OIF:SP:5:40311,1,"École H Boiscommun",49.064488,2.29986,0,0,OIF:SA:5:40030,Europe/Paris,,OIF, +OIF:SP:5:40312,1,"Église",49.063167,2.298726,0,0,OIF:SA:5:40033,Europe/Paris,,OIF, +OIF:SP:5:40313,1,"Le Néflier",49.060327,2.297292,0,0,OIF:SA:5:40035,Europe/Paris,,OIF, +OIF:SP:5:40314,1,"ZAE Ponts de Baillet",49.063819,2.323859,0,0,OIF:SA:5:40036,Europe/Paris,,OIF, +OIF:SP:5:40315,1,"Tabac",49.090045,2.369112,0,0,OIF:SA:5:40013,Europe/Paris,,OIF, +OIF:SP:5:40316,1,"Duquesnel",49.139959,2.279277,0,0,OIF:SA:5:40048,Europe/Paris,,OIF, +OIF:SP:5:40317,1,"Gendarmerie/Collège",49.137849,2.283059,0,0,OIF:SA:5:40044,Europe/Paris,,OIF, +OIF:SP:5:40318,1,"Lycée",49.145626,2.295131,0,0,OIF:SA:5:40052,Europe/Paris,,OIF, +OIF:SP:5:40319,1,"Mairie",49.141839,2.284629,0,0,OIF:SA:5:40053,Europe/Paris,,OIF, +OIF:SP:5:40320,1,"Piscine",49.145515,2.286927,0,0,OIF:SA:5:40061,Europe/Paris,,OIF, +OIF:SP:5:40327,1,"Centre Ville",49.026096,2.322981,0,0,OIF:SA:5:40296,Europe/Paris,,OIF, +OIF:SP:5:40328,1,"Le Gué",49.079282,2.443177,0,0,OIF:SA:5:40130,Europe/Paris,,OIF, +OIF:SP:5:40329,1,"La Halle",49.113301,2.422126,0,0,OIF:SA:5:40329,Europe/Paris,,OIF, +OIF:SP:5:40330,1,"Centre Commercial",49.042029,2.33886,0,0,OIF:SA:59:6742303,Europe/Paris,,OIF, +OIF:SP:5:40331,1,"Église",49.070628,2.309237,0,0,OIF:SA:5:40147,Europe/Paris,,OIF, +OIF:SP:5:40332,1,"Gendarmerie",49.067664,2.317021,0,0,OIF:SA:5:40302,Europe/Paris,,OIF, +OIF:SP:5:40333,1,"CAT",49.143667,2.273301,0,0,OIF:SA:5:40166,Europe/Paris,,OIF, +OIF:SP:5:40334,1,"Collège Brassens",49.154135,2.274083,0,0,OIF:SA:5:40171,Europe/Paris,,OIF, +OIF:SP:5:40337,1,"Église",49.07656,2.356793,0,0,OIF:SA:5:40254,Europe/Paris,,OIF, +OIF:SP:5:40338,1,"Mairie",49.072255,2.389849,0,0,OIF:SA:5:40269,Europe/Paris,,OIF, +OIF:SP:5:40339,1,"Stade",49.147279,2.293883,0,0,OIF:SA:5:40192,Europe/Paris,,OIF, +OIF:SP:5:40340,1,"Rue de Boran",49.159983,2.338563,0,0,OIF:SA:5:40090,Europe/Paris,,OIF, +OIF:SP:5:40341,1,"Saint-Laurent",49.143919,2.295625,0,0,OIF:SA:5:40341,Europe/Paris,,OIF, +OIF:SP:5:40386,1,"École du Centre",49.136996,2.240142,0,0,OIF:SA:5:40114,Europe/Paris,,OIF, +OIF:SP:5:40387,1,"Sente de la Fontaine",49.069828,2.307405,0,0,OIF:SA:5:40152,Europe/Paris,,OIF, +OIF:SP:5:40390,1,"Saint-Laurent",49.14391,2.295625,0,0,OIF:SA:5:40341,Europe/Paris,,OIF, +OIF:SP:5:40391,1,"Stade Travaux",49.147495,2.295116,0,0,OIF:SA:5:40391,Europe/Paris,,OIF, +OIF:SP:5:40392,1,"Les Menhirs",49.1379,2.247932,0,0,OIF:SA:5:40392,Europe/Paris,,OIF, +OIF:SP:5:40393,1,"Les Menhirs",49.137981,2.247891,0,0,OIF:SA:5:40392,Europe/Paris,,OIF, +OIF:SP:5:40394,1,"Gantiers",49.111225,2.422616,0,0,OIF:SA:5:40394,Europe/Paris,,OIF, +OIF:SP:5:40395,1,"Gantiers",49.111252,2.422547,0,0,OIF:SA:5:40394,Europe/Paris,,OIF, +OIF:SP:5:40396,1,"Market",49.11851,2.425188,0,0,OIF:SA:5:40396,Europe/Paris,,OIF, +OIF:SP:5:40397,1,"Market",49.118689,2.426078,0,0,OIF:SA:5:40396,Europe/Paris,,OIF, +OIF:SP:5:40398,1,"Place de la République",49.1502,2.274813,0,0,OIF:SA:5:40398,Europe/Paris,,OIF, +OIF:SP:5:40399,1,"Place de la République",49.150137,2.274868,0,0,OIF:SA:5:40398,Europe/Paris,,OIF, +OIF:SP:5:40400,1,"Oise",49.149164,2.288786,0,0,OIF:SA:5:40400,Europe/Paris,,OIF, +OIF:SP:5:40401,1,"Oise",49.149038,2.288731,0,0,OIF:SA:5:40400,Europe/Paris,,OIF, +OIF:SP:5:40402,1,"Parc Robespierre",49.149936,2.268198,0,0,OIF:SA:5:40402,Europe/Paris,,OIF, +OIF:SP:5:40403,1,"Parc Robespierre",49.149999,2.268321,0,0,OIF:SA:5:40402,Europe/Paris,,OIF, +OIF:SP:5:40404,1,"Etienne Dolet",49.153073,2.271659,0,0,OIF:SA:5:40404,Europe/Paris,,OIF, +OIF:SP:5:40405,1,"Etienne Dolet",49.153154,2.271522,0,0,OIF:SA:5:40404,Europe/Paris,,OIF, +OIF:SP:5:40406,1,"Vieux Pont",49.146422,2.285269,0,0,OIF:SA:5:40406,Europe/Paris,,OIF, +OIF:SP:5:40407,1,"Vieux Pont",49.146161,2.285118,0,0,OIF:SA:5:40406,Europe/Paris,,OIF, +OIF:SP:5:40408,1,"Félix Millet",49.158136,2.262214,0,0,OIF:SA:5:40408,Europe/Paris,,OIF, +OIF:SP:5:40409,1,"Félix Millet",49.158064,2.262159,0,0,OIF:SA:5:40408,Europe/Paris,,OIF, +OIF:SP:5:40410,1,"Lucien Royer",49.155102,2.268246,0,0,OIF:SA:5:40410,Europe/Paris,,OIF, +OIF:SP:5:40411,1,"Lucien Royer",49.155012,2.268177,0,0,OIF:SA:5:40410,Europe/Paris,,OIF, +OIF:SP:5:40412,1,"Thorez",49.151312,2.270771,0,0,OIF:SA:5:40412,Europe/Paris,,OIF, +OIF:SP:5:40413,1,"Thorez",49.151222,2.270593,0,0,OIF:SA:5:40412,Europe/Paris,,OIF, +OIF:SP:5:40414,1,"Jacques Touati",49.151456,2.29177,0,0,OIF:SA:5:40414,Europe/Paris,,OIF, +OIF:SP:5:40415,1,"Jacques Touati",49.151528,2.291976,0,0,OIF:SA:5:40414,Europe/Paris,,OIF, +OIF:SP:60:1,1,"La Berchère",49.00981,2.310458,0,0,OIF:SA:60:1,Europe/Paris,,OIF, +OIF:SP:60:10,1,"Mairie",49.004146,2.297786,0,0,OIF:SA:60:10,Europe/Paris,,OIF, +OIF:SP:60:1017,1,"Stade Michel Hidalgo",48.974615,2.273591,0,0,OIF:SA:59:5081775,Europe/Paris,,OIF, +OIF:SP:60:1018,1,"Stade Michel Hidalgo",48.975145,2.273167,0,0,OIF:SA:59:5081775,Europe/Paris,,OIF, +OIF:SP:60:1019,1,"Bouquinvilles",48.977088,2.276728,0,0,OIF:SA:60:1019,Europe/Paris,,OIF, +OIF:SP:60:1023,1,"Ermont Eaubonne Gare",48.979934,2.271673,0,0,OIF:SA:8727605,Europe/Paris,,OIF, +OIF:SP:60:1029,1,"ZI des Cures",48.997819,2.296479,0,0,OIF:SA:60:1029,Europe/Paris,,OIF, +OIF:SP:60:103,1,"Gare d'Argenteuil",48.946971,2.257102,0,0,OIF:SA:8738184,Europe/Paris,,OIF, +OIF:SP:60:1030,1,"Enghien Mermoz Gare",48.973792,2.305849,0,0,OIF:SA:8727602,Europe/Paris,,OIF, +OIF:SP:60:1031,1,"Domont Gare SNCF",49.032414,2.337616,0,0,OIF:SA:8727643,Europe/Paris,,OIF, +OIF:SP:60:1032,1,"Ermont Eaubonne Gare",48.980149,2.271249,0,0,OIF:SA:8727605,Europe/Paris,,OIF, +OIF:SP:60:1033,1,"Ermont Eaubonne Gare",48.980087,2.272232,0,0,OIF:SA:8727605,Europe/Paris,,OIF, +OIF:SP:60:1052,1,"Centre Commercial",48.959298,2.31376,0,0,OIF:SA:60:1052,Europe/Paris,,OIF, +OIF:SP:60:1053,1,"Centre Commercial",48.958714,2.312586,0,0,OIF:SA:60:1052,Europe/Paris,,OIF, +OIF:SP:60:1054,1,"Alexandre Dumas",48.961114,2.315246,0,0,OIF:SA:60:1054,Europe/Paris,,OIF, +OIF:SP:60:1055,1,"Alexandre Dumas",48.96115,2.315178,0,0,OIF:SA:60:1054,Europe/Paris,,OIF, +OIF:SP:60:1056,1,"Les Econdeaux",48.960996,2.313117,0,0,OIF:SA:60:1056,Europe/Paris,,OIF, +OIF:SP:60:1057,1,"Les Econdeaux",48.96123,2.313554,0,0,OIF:SA:60:1056,Europe/Paris,,OIF, +OIF:SP:60:1058,1,"Gilbert Bonnemaison T8",48.955145,2.308098,0,0,OIF:SA:59912,Europe/Paris,,OIF, +OIF:SP:60:1059,1,"Gilbert Bonnemaison T8",48.955199,2.30773,0,0,OIF:SA:59912,Europe/Paris,,OIF, +OIF:SP:60:1060,1,"Poiriers",48.967563,2.339101,0,0,OIF:SA:60:1060,Europe/Paris,,OIF, +OIF:SP:60:11,1,"Parc des Sources",49.001498,2.309411,0,0,OIF:SA:60:11,Europe/Paris,,OIF, +OIF:SP:60:118,1,"Casanova",48.961845,2.274889,0,0,OIF:SA:60:118,Europe/Paris,,OIF, +OIF:SP:60:119,1,"Casanova",48.961837,2.275217,0,0,OIF:SA:60:118,Europe/Paris,,OIF, +OIF:SP:60:120,1,"Jolival",48.962454,2.270535,0,0,OIF:SA:60:120,Europe/Paris,,OIF, +OIF:SP:60:121,1,"Jolival",48.962436,2.270453,0,0,OIF:SA:60:120,Europe/Paris,,OIF, +OIF:SP:60:145,1,"Rue du Nord",48.956856,2.256295,0,0,OIF:SA:18:145,Europe/Paris,,OIF, +OIF:SP:60:146,1,"Rue du Nord",48.957107,2.256445,0,0,OIF:SA:18:145,Europe/Paris,,OIF, +OIF:SP:60:16,1,"Jean Allemane",48.950473,2.253644,0,0,OIF:SA:18:16,Europe/Paris,,OIF, +OIF:SP:60:17,1,"Jean Allemane",48.950437,2.253712,0,0,OIF:SA:18:16,Europe/Paris,,OIF, +OIF:SP:60:172,1,"Route de Saint-Gratien",48.960994,2.279722,0,0,OIF:SA:60:172,Europe/Paris,,OIF, +OIF:SP:60:173,1,"Route de Saint-Gratien",48.960868,2.279858,0,0,OIF:SA:60:172,Europe/Paris,,OIF, +OIF:SP:60:2,1,"La Berchère",49.009757,2.310513,0,0,OIF:SA:60:1,Europe/Paris,,OIF, +OIF:SP:60:2002,1,"Collège Nicolas Copernic",48.978632,2.350356,0,0,OIF:SA:60:2002,Europe/Paris,,OIF, +OIF:SP:60:2003,1,"Collège Nicolas Copernic",48.978599,2.350403,0,0,OIF:SA:60:2002,Europe/Paris,,OIF, +OIF:SP:60:2004,1,"Groslay Gare SNCF",48.98481,2.355363,0,0,OIF:SA:8727636,Europe/Paris,,OIF, +OIF:SP:60:2005,1,"Groslay Gare SNCF",48.984805,2.355421,0,0,OIF:SA:8727636,Europe/Paris,,OIF, +OIF:SP:60:2006,1,"République",48.985171,2.357781,0,0,OIF:SA:60:2006,Europe/Paris,,OIF, +OIF:SP:60:2007,1,"République",48.985132,2.357787,0,0,OIF:SA:60:2006,Europe/Paris,,OIF, +OIF:SP:60:2008,1,"Rue de Sarcelles",48.984271,2.365966,0,0,OIF:SA:60:2008,Europe/Paris,,OIF, +OIF:SP:60:2009,1,"Rue de Sarcelles",48.984233,2.365945,0,0,OIF:SA:60:2008,Europe/Paris,,OIF, +OIF:SP:60:2014,1,"Place de la Barre",48.967264,2.317049,0,0,OIF:SA:60:2014,Europe/Paris,,OIF, +OIF:SP:60:2015,1,"Place de la Barre",48.967027,2.317663,0,0,OIF:SA:60:2014,Europe/Paris,,OIF, +OIF:SP:60:2016,1,"Rose Bertin T8",48.953153,2.31607,0,0,OIF:SA:59908,Europe/Paris,,OIF, +OIF:SP:60:2017,1,"Rose Bertin T8",48.952927,2.315482,0,0,OIF:SA:59908,Europe/Paris,,OIF, +OIF:SP:60:2019,1,"Lacépède T8",48.955208,2.312439,0,0,OIF:SA:59908,Europe/Paris,,OIF, +OIF:SP:60:2020,1,"Ormesson",48.960186,2.307138,0,0,OIF:SA:60:2020,Europe/Paris,,OIF, +OIF:SP:60:2021,1,"Ormesson",48.960395,2.307098,0,0,OIF:SA:60:2020,Europe/Paris,,OIF, +OIF:SP:60:2022,1,"Limites des Départements",48.965554,2.300451,0,0,OIF:SA:60:2022,Europe/Paris,,OIF, +OIF:SP:60:2023,1,"Limites des Départements",48.965582,2.300236,0,0,OIF:SA:60:2022,Europe/Paris,,OIF, +OIF:SP:60:2024,1,"Rue de Saint-Gratien",48.96342,2.297663,0,0,OIF:SA:18:403,Europe/Paris,,OIF, +OIF:SP:60:2025,1,"Rue de Saint-Gratien",48.963301,2.297298,0,0,OIF:SA:18:403,Europe/Paris,,OIF, +OIF:SP:60:2026,1,"Cygne d'Enghien",48.961544,2.294867,0,0,OIF:SA:8798657,Europe/Paris,,OIF, +OIF:SP:60:2027,1,"Cygne d'Enghien",48.961581,2.294739,0,0,OIF:SA:8798657,Europe/Paris,,OIF, +OIF:SP:60:2029,1,"Les Coutures",48.969948,2.313396,0,0,OIF:SA:60:2029,Europe/Paris,,OIF, +OIF:SP:60:2030,1,"Les Coutures",48.969902,2.313319,0,0,OIF:SA:60:2029,Europe/Paris,,OIF, +OIF:SP:60:2031,1,"Maréchal Foch",48.965006,2.320263,0,0,OIF:SA:59:6741245,Europe/Paris,,OIF, +OIF:SP:60:2032,1,"Maréchal Foch",48.964944,2.320204,0,0,OIF:SA:59:6741245,Europe/Paris,,OIF, +OIF:SP:60:2033,1,"Les Trois Communes",48.960626,2.326384,0,0,OIF:SA:59:6741243,Europe/Paris,,OIF, +OIF:SP:60:2034,1,"Les Trois Communes",48.960643,2.326163,0,0,OIF:SA:59:6741243,Europe/Paris,,OIF, +OIF:SP:60:2035,1,"Pont Tln",48.959681,2.328785,0,0,OIF:SA:60:2035,Europe/Paris,,OIF, +OIF:SP:60:2036,1,"Pont Tln",48.959822,2.32874,0,0,OIF:SA:60:2035,Europe/Paris,,OIF, +OIF:SP:60:2037,1,"Gare d'Epinay-Villetaneuse",48.958637,2.327207,0,0,OIF:SA:8727112,Europe/Paris,,OIF, +OIF:SP:60:2038,1,"Gare d'Epinay-Villetaneuse",48.95858,2.326426,0,0,OIF:SA:8727112,Europe/Paris,,OIF, +OIF:SP:60:2039,1,"Jean Jaurès - Henri Wallon",48.957044,2.321035,0,0,OIF:SA:60:2039,Europe/Paris,,OIF, +OIF:SP:60:2040,1,"Jean Jaurès - Henri Wallon",48.957055,2.320956,0,0,OIF:SA:60:2039,Europe/Paris,,OIF, +OIF:SP:60:2043,1,"Lacépède T8",48.955009,2.312276,0,0,OIF:SA:59908,Europe/Paris,,OIF, +OIF:SP:60:2048,1,"Enghien Mermoz Gare",48.973441,2.306518,0,0,OIF:SA:8727602,Europe/Paris,,OIF, +OIF:SP:60:2055,1,"Nungesser et Coli",48.965099,2.293897,0,0,OIF:SA:60:2055,Europe/Paris,,OIF, +OIF:SP:60:2056,1,"Nungesser et Coli",48.965499,2.293388,0,0,OIF:SA:60:2055,Europe/Paris,,OIF, +OIF:SP:60:2057,1,"Dunkerque",48.960337,2.293339,0,0,OIF:SA:18:19669,Europe/Paris,,OIF, +OIF:SP:60:2058,1,"Dunkerque",48.96046,2.293599,0,0,OIF:SA:18:19669,Europe/Paris,,OIF, +OIF:SP:60:2059,1,"Rue de Marseille",48.956452,2.294037,0,0,OIF:SA:59916,Europe/Paris,,OIF, +OIF:SP:60:2060,1,"Rue de Marseille",48.956223,2.2939,0,0,OIF:SA:59916,Europe/Paris,,OIF, +OIF:SP:60:2061,1,"Épinay Orgemont",48.955424,2.295229,0,0,OIF:SA:59916,Europe/Paris,,OIF, +OIF:SP:60:2062,1,"Épinay Orgemont",48.955334,2.295204,0,0,OIF:SA:59916,Europe/Paris,,OIF, +OIF:SP:60:2063,1,"Général de Gaulle",48.968837,2.286123,0,0,OIF:SA:60:2063,Europe/Paris,,OIF, +OIF:SP:60:2064,1,"Général de Gaulle",48.968919,2.286136,0,0,OIF:SA:60:2063,Europe/Paris,,OIF, +OIF:SP:60:2065,1,"Épinay RER Nancy",48.955869,2.300956,0,0,OIF:SA:8727114,Europe/Paris,,OIF, +OIF:SP:60:2066,1,"Épinay RER Nancy",48.955705,2.300857,0,0,OIF:SA:8727114,Europe/Paris,,OIF, +OIF:SP:60:2067,1,"Rue de Saint-Gratien",48.963633,2.297106,0,0,OIF:SA:18:403,Europe/Paris,,OIF, +OIF:SP:60:2068,1,"Gare de Saint-Gratien",48.964183,2.285171,0,0,OIF:SA:8727617,Europe/Paris,,OIF, +OIF:SP:60:2071,1,"Les Flanades T5",48.976565,2.376764,0,0,OIF:SA:59801,Europe/Paris,,OIF, +OIF:SP:60:2072,1,"Les Flanades T5",48.976529,2.377029,0,0,OIF:SA:59801,Europe/Paris,,OIF, +OIF:SP:60:2074,1,"My Place",48.986069,2.374778,0,0,OIF:SA:59:4230053,Europe/Paris,,OIF, +OIF:SP:60:2075,1,"My Place",48.985999,2.374615,0,0,OIF:SA:59:4230053,Europe/Paris,,OIF, +OIF:SP:60:2076,1,"Mozart-Malesherbe",48.987936,2.378596,0,0,OIF:SA:60:2076,Europe/Paris,,OIF, +OIF:SP:60:2077,1,"Mozart-Malesherbe",48.988059,2.378741,0,0,OIF:SA:60:2076,Europe/Paris,,OIF, +OIF:SP:60:2078,1,"Piscine",48.983577,2.379777,0,0,OIF:SA:59:4238710,Europe/Paris,,OIF, +OIF:SP:60:2079,1,"Piscine",48.983984,2.380435,0,0,OIF:SA:59:4238710,Europe/Paris,,OIF, +OIF:SP:60:2080,1,"Hôpital Nord",48.979852,2.377865,0,0,OIF:SA:59803,Europe/Paris,,OIF, +OIF:SP:60:2081,1,"Hôpital Nord",48.979762,2.378188,0,0,OIF:SA:59803,Europe/Paris,,OIF, +OIF:SP:60:2083,1,"Marche",48.977795,2.379084,0,0,OIF:SA:59801,Europe/Paris,,OIF, +OIF:SP:60:2084,1,"Marche",48.977832,2.378879,0,0,OIF:SA:59801,Europe/Paris,,OIF, +OIF:SP:60:2085,1,"Paul Valéry T5",48.979497,2.3793,0,0,OIF:SA:59803,Europe/Paris,,OIF, +OIF:SP:60:2087,1,"Alouettes",48.9784,2.281774,0,0,OIF:SA:60:2087,Europe/Paris,,OIF, +OIF:SP:60:2088,1,"Alouettes",48.978521,2.281722,0,0,OIF:SA:60:2087,Europe/Paris,,OIF, +OIF:SP:60:2102,1,"Clos Giffier",48.996036,2.306453,0,0,OIF:SA:60:2102,Europe/Paris,,OIF, +OIF:SP:60:2103,1,"Clos Giffier",48.995841,2.306283,0,0,OIF:SA:60:2102,Europe/Paris,,OIF, +OIF:SP:60:2104,1,"Espace Nautique la Vague",48.997271,2.30344,0,0,OIF:SA:60:2104,Europe/Paris,,OIF, +OIF:SP:60:2105,1,"Espace Nautique la Vague",48.997122,2.303638,0,0,OIF:SA:60:2104,Europe/Paris,,OIF, +OIF:SP:60:2106,1,"E.Dobler",48.991358,2.297739,0,0,OIF:SA:60:2106,Europe/Paris,,OIF, +OIF:SP:60:2107,1,"E.Dobler",48.991321,2.297682,0,0,OIF:SA:60:2106,Europe/Paris,,OIF, +OIF:SP:60:2109,1,"Le Boisquillon",48.990977,2.299521,0,0,OIF:SA:60:2109,Europe/Paris,,OIF, +OIF:SP:60:2110,1,"Les Noëls",48.981481,2.295686,0,0,OIF:SA:60:2110,Europe/Paris,,OIF, +OIF:SP:60:2111,1,"Dr Schweitzer",48.995173,2.302096,0,0,OIF:SA:60:2111,Europe/Paris,,OIF, +OIF:SP:60:2112,1,"Dr Schweitzer",48.995191,2.301884,0,0,OIF:SA:60:2111,Europe/Paris,,OIF, +OIF:SP:60:213,1,"Volembert",48.958529,2.259377,0,0,OIF:SA:60:213,Europe/Paris,,OIF, +OIF:SP:60:214,1,"Volembert",48.958556,2.259568,0,0,OIF:SA:60:213,Europe/Paris,,OIF, +OIF:SP:60:27,1,"Bellevue",48.960339,2.264069,0,0,OIF:SA:60:27,Europe/Paris,,OIF, +OIF:SP:60:270,1,"Croix Blanche",49.01647,2.312627,0,0,OIF:SA:60:270,Europe/Paris,,OIF, +OIF:SP:60:271,1,"Croix Blanche",49.017054,2.31346,0,0,OIF:SA:60:270,Europe/Paris,,OIF, +OIF:SP:60:277,1,"Cimetière",49.022654,2.323515,0,0,OIF:SA:60:277,Europe/Paris,,OIF, +OIF:SP:60:278,1,"Cimetière",49.023014,2.32387,0,0,OIF:SA:60:277,Europe/Paris,,OIF, +OIF:SP:60:28,1,"Bellevue",48.960456,2.264382,0,0,OIF:SA:60:27,Europe/Paris,,OIF, +OIF:SP:60:280,1,"Clinique",49.024919,2.325878,0,0,OIF:SA:60:280,Europe/Paris,,OIF, +OIF:SP:60:281,1,"Clinique",49.025009,2.325946,0,0,OIF:SA:60:280,Europe/Paris,,OIF, +OIF:SP:60:296,1,"Domont Gare SNCF",49.032531,2.337739,0,0,OIF:SA:8727643,Europe/Paris,,OIF, +OIF:SP:60:3,1,"Château Gaillard",49.003977,2.304711,0,0,OIF:SA:60:3,Europe/Paris,,OIF, +OIF:SP:60:307,1,"Lycée",49.031461,2.342167,0,0,OIF:SA:60:307,Europe/Paris,,OIF, +OIF:SP:60:309,1,"Mairie de Domont",49.027408,2.32708,0,0,OIF:SA:60:309,Europe/Paris,,OIF, +OIF:SP:60:31,1,"Pont Blanc",48.953251,2.25424,0,0,OIF:SA:18:31,Europe/Paris,,OIF, +OIF:SP:60:310,1,"Mairie de Domont",49.02801,2.327435,0,0,OIF:SA:60:309,Europe/Paris,,OIF, +OIF:SP:60:314,1,"Monument",49.029313,2.329744,0,0,OIF:SA:60:314,Europe/Paris,,OIF, +OIF:SP:60:315,1,"Monument",49.02934,2.329621,0,0,OIF:SA:60:314,Europe/Paris,,OIF, +OIF:SP:60:32,1,"Pont Blanc",48.953323,2.254213,0,0,OIF:SA:18:31,Europe/Paris,,OIF, +OIF:SP:60:322,1,"Poste",49.030832,2.334473,0,0,OIF:SA:60:322,Europe/Paris,,OIF, +OIF:SP:60:323,1,"Poste",49.031093,2.335156,0,0,OIF:SA:60:322,Europe/Paris,,OIF, +OIF:SP:60:326,1,"Robinson",49.018286,2.315591,0,0,OIF:SA:60:326,Europe/Paris,,OIF, +OIF:SP:60:327,1,"Robinson",49.018564,2.316165,0,0,OIF:SA:60:326,Europe/Paris,,OIF, +OIF:SP:60:334,1,"Bois Jacques",48.992315,2.285149,0,0,OIF:SA:60:334,Europe/Paris,,OIF, +OIF:SP:60:335,1,"Bois Jacques",48.99227,2.284999,0,0,OIF:SA:60:334,Europe/Paris,,OIF, +OIF:SP:60:336,1,"Hôtel de Ville",48.99091,2.278214,0,0,OIF:SA:60:336,Europe/Paris,,OIF, +OIF:SP:60:337,1,"Hôtel de Ville",48.991269,2.278869,0,0,OIF:SA:60:336,Europe/Paris,,OIF, +OIF:SP:60:338,1,"Jeanne d'Arc",48.989524,2.275471,0,0,OIF:SA:60:338,Europe/Paris,,OIF, +OIF:SP:60:339,1,"Jeanne d'Arc",48.98965,2.275798,0,0,OIF:SA:60:338,Europe/Paris,,OIF, +OIF:SP:60:340,1,"Chaussée Jules César",48.985389,2.272758,0,0,OIF:SA:60:340,Europe/Paris,,OIF, +OIF:SP:60:341,1,"Chaussée Jules César",48.985129,2.272677,0,0,OIF:SA:60:340,Europe/Paris,,OIF, +OIF:SP:60:342,1,"Mont Eaubonne",48.991381,2.287758,0,0,OIF:SA:60:342,Europe/Paris,,OIF, +OIF:SP:60:343,1,"Mont Eaubonne",48.991399,2.287868,0,0,OIF:SA:60:342,Europe/Paris,,OIF, +OIF:SP:60:344,1,"La Sablière",48.987582,2.273711,0,0,OIF:SA:60:344,Europe/Paris,,OIF, +OIF:SP:60:345,1,"La Sablière",48.987304,2.273616,0,0,OIF:SA:60:344,Europe/Paris,,OIF, +OIF:SP:60:346,1,"Tilleuls",48.992636,2.280479,0,0,OIF:SA:60:346,Europe/Paris,,OIF, +OIF:SP:60:347,1,"Tilleuls",48.993167,2.281229,0,0,OIF:SA:60:346,Europe/Paris,,OIF, +OIF:SP:60:348,1,"Bois Bleu",49.030441,2.372,0,0,OIF:SA:60:348,Europe/Paris,,OIF, +OIF:SP:60:349,1,"Bois Bleu",49.030593,2.371672,0,0,OIF:SA:60:348,Europe/Paris,,OIF, +OIF:SP:60:350,1,"Collège J. Bullant",49.028941,2.369607,0,0,OIF:SA:60:350,Europe/Paris,,OIF, +OIF:SP:60:351,1,"Collège J. Bullant",49.028689,2.369238,0,0,OIF:SA:60:350,Europe/Paris,,OIF, +OIF:SP:60:352,1,"Écouen Ézanville Gare",49.022939,2.363646,0,0,OIF:SA:8727639,Europe/Paris,,OIF, +OIF:SP:60:353,1,"Écouen Ézanville Gare",49.0232,2.363455,0,0,OIF:SA:8727639,Europe/Paris,,OIF, +OIF:SP:60:354,1,"Écouen Maillol",49.02493,2.37876,0,0,OIF:SA:60:354,Europe/Paris,,OIF, +OIF:SP:60:355,1,"Monet",49.028589,2.373706,0,0,OIF:SA:60:355,Europe/Paris,,OIF, +OIF:SP:60:356,1,"Monet",49.028903,2.373625,0,0,OIF:SA:60:355,Europe/Paris,,OIF, +OIF:SP:60:357,1,"P. Serres",49.027106,2.374758,0,0,OIF:SA:60:357,Europe/Paris,,OIF, +OIF:SP:60:358,1,"P. Serres",49.026809,2.375126,0,0,OIF:SA:60:357,Europe/Paris,,OIF, +OIF:SP:60:359,1,"Amélie",48.978589,2.300863,0,0,OIF:SA:60:359,Europe/Paris,,OIF, +OIF:SP:60:360,1,"Amélie",48.978832,2.300754,0,0,OIF:SA:60:359,Europe/Paris,,OIF, +OIF:SP:60:361,1,"Amélie",48.978868,2.300808,0,0,OIF:SA:60:359,Europe/Paris,,OIF, +OIF:SP:60:362,1,"Beauséjour",48.975875,2.301097,0,0,OIF:SA:60:362,Europe/Paris,,OIF, +OIF:SP:60:363,1,"Beauséjour",48.975381,2.300565,0,0,OIF:SA:60:362,Europe/Paris,,OIF, +OIF:SP:60:367,1,"Avenue Carlier",48.978231,2.304945,0,0,OIF:SA:60:367,Europe/Paris,,OIF, +OIF:SP:60:369,1,"Casino",48.969208,2.304719,0,0,OIF:SA:18:368,Europe/Paris,,OIF, +OIF:SP:60:370,1,"Collège Pompidou",48.964921,2.304135,0,0,OIF:SA:60:370,Europe/Paris,,OIF, +OIF:SP:60:371,1,"Collège Pompidou",48.965173,2.303752,0,0,OIF:SA:60:370,Europe/Paris,,OIF, +OIF:SP:60:372,1,"Creche",48.978732,2.298269,0,0,OIF:SA:60:372,Europe/Paris,,OIF, +OIF:SP:60:373,1,"Creche",48.978633,2.298283,0,0,OIF:SA:60:372,Europe/Paris,,OIF, +OIF:SP:60:374,1,"Descartes",48.980377,2.298213,0,0,OIF:SA:60:374,Europe/Paris,,OIF, +OIF:SP:60:375,1,"Descartes",48.980152,2.298418,0,0,OIF:SA:60:374,Europe/Paris,,OIF, +OIF:SP:60:377,1,"Enghien Albert 1er Gare",48.97239,2.307324,0,0,OIF:SA:8727602,Europe/Paris,,OIF, +OIF:SP:60:378,1,"Enghien Albert 1er Gare",48.972354,2.307461,0,0,OIF:SA:8727602,Europe/Paris,,OIF, +OIF:SP:60:379,1,"Enghien Albert 1er Gare",48.97248,2.307147,0,0,OIF:SA:8727602,Europe/Paris,,OIF, +OIF:SP:60:380,1,"Général Leclerc",48.982103,2.300506,0,0,OIF:SA:60:380,Europe/Paris,,OIF, +OIF:SP:60:381,1,"Général Leclerc",48.982049,2.300915,0,0,OIF:SA:60:380,Europe/Paris,,OIF, +OIF:SP:60:383,1,"Général Leclerc",48.982363,2.300383,0,0,OIF:SA:60:380,Europe/Paris,,OIF, +OIF:SP:60:384,1,"Kellermann",48.981417,2.29282,0,0,OIF:SA:60:384,Europe/Paris,,OIF, +OIF:SP:60:386,1,"Lycée d'Enghien",48.974175,2.294832,0,0,OIF:SA:60:386,Europe/Paris,,OIF, +OIF:SP:60:387,1,"Lycée d'Enghien",48.973977,2.294846,0,0,OIF:SA:60:386,Europe/Paris,,OIF, +OIF:SP:60:388,1,"Mairie d'Enghien",48.97,2.308854,0,0,OIF:SA:18:388,Europe/Paris,,OIF, +OIF:SP:60:389,1,"Enghien Mermoz Gare",48.973575,2.306224,0,0,OIF:SA:8727602,Europe/Paris,,OIF, +OIF:SP:60:390,1,"Enghien Mermoz Gare",48.973441,2.306518,0,0,OIF:SA:8727602,Europe/Paris,,OIF, +OIF:SP:60:391,1,"Enghien Mermoz Gare",48.973792,2.305958,0,0,OIF:SA:8727602,Europe/Paris,,OIF, +OIF:SP:60:392,1,"Piscine",48.974692,2.311569,0,0,OIF:SA:60:392,Europe/Paris,,OIF, +OIF:SP:60:394,1,"Coussaye-Soupirs",48.962837,2.307057,0,0,OIF:SA:60:394,Europe/Paris,,OIF, +OIF:SP:60:395,1,"Coussaye-Soupirs",48.963035,2.306797,0,0,OIF:SA:60:394,Europe/Paris,,OIF, +OIF:SP:60:398,1,"Gare d'Epinay-sur-Seine",48.954038,2.301426,0,0,OIF:SA:8727114,Europe/Paris,,OIF, +OIF:SP:60:399,1,"Robespierre",48.958372,2.310212,0,0,OIF:SA:60:399,Europe/Paris,,OIF, +OIF:SP:60:4,1,"Château Gaillard",49.004022,2.304711,0,0,OIF:SA:60:3,Europe/Paris,,OIF, +OIF:SP:60:400,1,"Robespierre",48.95839,2.31028,0,0,OIF:SA:60:399,Europe/Paris,,OIF, +OIF:SP:60:401,1,"Les Saules",48.961832,2.311316,0,0,OIF:SA:60:401,Europe/Paris,,OIF, +OIF:SP:60:402,1,"Les Saules",48.961931,2.311234,0,0,OIF:SA:60:401,Europe/Paris,,OIF, +OIF:SP:60:408,1,"Ermont Eaubonne Gare",48.980077,2.270772,0,0,OIF:SA:8727605,Europe/Paris,,OIF, +OIF:SP:60:409,1,"Piscine Cdfas",48.978446,2.278924,0,0,OIF:SA:60:409,Europe/Paris,,OIF, +OIF:SP:60:410,1,"Piscine Cdfas",48.978374,2.279184,0,0,OIF:SA:60:409,Europe/Paris,,OIF, +OIF:SP:60:411,1,"Église",49.029158,2.363635,0,0,OIF:SA:60:411,Europe/Paris,,OIF, +OIF:SP:60:413,1,"Paul Fort",49.034004,2.349356,0,0,OIF:SA:60:413,Europe/Paris,,OIF, +OIF:SP:60:414,1,"Paul Fort",49.03395,2.349807,0,0,OIF:SA:60:413,Europe/Paris,,OIF, +OIF:SP:60:415,1,"Hôtel de Ville d'Ezanville",49.031108,2.3616,0,0,OIF:SA:59:6742293,Europe/Paris,,OIF, +OIF:SP:60:416,1,"Hôtel de Ville d'Ezanville",49.03145,2.361669,0,0,OIF:SA:59:6742293,Europe/Paris,,OIF, +OIF:SP:60:417,1,"National 1",49.034076,2.343739,0,0,OIF:SA:60:417,Europe/Paris,,OIF, +OIF:SP:60:418,1,"National 1",49.034076,2.342987,0,0,OIF:SA:60:417,Europe/Paris,,OIF, +OIF:SP:60:419,1,"Les Oiseaux",49.03296,2.35541,0,0,OIF:SA:60:419,Europe/Paris,,OIF, +OIF:SP:60:420,1,"Les Oiseaux",49.032996,2.355355,0,0,OIF:SA:60:419,Europe/Paris,,OIF, +OIF:SP:60:471,1,"Les Emplés",48.999148,2.292873,0,0,OIF:SA:60:471,Europe/Paris,,OIF, +OIF:SP:60:472,1,"Les Emplés",48.999561,2.29402,0,0,OIF:SA:60:471,Europe/Paris,,OIF, +OIF:SP:60:474,1,"Rue Legendre",48.997116,2.290389,0,0,OIF:SA:60:474,Europe/Paris,,OIF, +OIF:SP:60:475,1,"Rue Legendre",48.997134,2.290416,0,0,OIF:SA:60:474,Europe/Paris,,OIF, +OIF:SP:60:476,1,"Magnolias",49.001242,2.295329,0,0,OIF:SA:60:476,Europe/Paris,,OIF, +OIF:SP:60:477,1,"Magnolias",49.001413,2.295398,0,0,OIF:SA:60:476,Europe/Paris,,OIF, +OIF:SP:60:479,1,"Champeaux",49.004357,2.318001,0,0,OIF:SA:60:479,Europe/Paris,,OIF, +OIF:SP:60:480,1,"Champeaux",49.004258,2.31811,0,0,OIF:SA:60:479,Europe/Paris,,OIF, +OIF:SP:60:481,1,"Chemin Vert",49.001131,2.319914,0,0,OIF:SA:60:481,Europe/Paris,,OIF, +OIF:SP:60:482,1,"Chemin Vert",49.000907,2.320119,0,0,OIF:SA:60:481,Europe/Paris,,OIF, +OIF:SP:60:483,1,"La Chênée",49.007134,2.315309,0,0,OIF:SA:60:483,Europe/Paris,,OIF, +OIF:SP:60:484,1,"La Chênée",49.00743,2.314476,0,0,OIF:SA:60:483,Europe/Paris,,OIF, +OIF:SP:60:485,1,"Notre-Dame",48.985819,2.324016,0,0,OIF:SA:60:485,Europe/Paris,,OIF, +OIF:SP:60:486,1,"Ermitage",48.992793,2.329927,0,0,OIF:SA:60:486,Europe/Paris,,OIF, +OIF:SP:60:487,1,"Ermitage",48.992793,2.329941,0,0,OIF:SA:60:486,Europe/Paris,,OIF, +OIF:SP:60:488,1,"Chemin de l'Escalade",48.997178,2.325665,0,0,OIF:SA:60:488,Europe/Paris,,OIF, +OIF:SP:60:489,1,"Chemin de l'Escalade",48.997133,2.325775,0,0,OIF:SA:60:488,Europe/Paris,,OIF, +OIF:SP:60:490,1,"Jules Ferry",48.977451,2.313724,0,0,OIF:SA:60:490,Europe/Paris,,OIF, +OIF:SP:60:491,1,"Jules Ferry",48.976732,2.313274,0,0,OIF:SA:60:490,Europe/Paris,,OIF, +OIF:SP:60:492,1,"Fontaine Renée",48.993807,2.318838,0,0,OIF:SA:60:492,Europe/Paris,,OIF, +OIF:SP:60:493,1,"Fontaine Renée",48.99343,2.318633,0,0,OIF:SA:60:492,Europe/Paris,,OIF, +OIF:SP:60:494,1,"Gambetta",48.980228,2.313846,0,0,OIF:SA:60:494,Europe/Paris,,OIF, +OIF:SP:60:495,1,"Gambetta",48.980497,2.314023,0,0,OIF:SA:60:494,Europe/Paris,,OIF, +OIF:SP:60:496,1,"Rue des Granges",48.982458,2.323388,0,0,OIF:SA:60:496,Europe/Paris,,OIF, +OIF:SP:60:497,1,"Rue des Granges",48.982458,2.32332,0,0,OIF:SA:60:496,Europe/Paris,,OIF, +OIF:SP:60:498,1,"Rue de Groslay",48.985181,2.328535,0,0,OIF:SA:60:498,Europe/Paris,,OIF, +OIF:SP:60:499,1,"Rue de Groslay",48.984903,2.328494,0,0,OIF:SA:60:498,Europe/Paris,,OIF, +OIF:SP:60:5,1,"Clinique des Orchidées",49.005899,2.301923,0,0,OIF:SA:60:5,Europe/Paris,,OIF, +OIF:SP:60:500,1,"Ehpad Simone Veil",48.986915,2.318717,0,0,OIF:SA:60:500,Europe/Paris,,OIF, +OIF:SP:60:501,1,"Laboureur",48.989854,2.32508,0,0,OIF:SA:60:501,Europe/Paris,,OIF, +OIF:SP:60:502,1,"Laboureur",48.989863,2.324793,0,0,OIF:SA:60:501,Europe/Paris,,OIF, +OIF:SP:60:503,1,"Collège Lebrun",48.988236,2.324193,0,0,OIF:SA:60:503,Europe/Paris,,OIF, +OIF:SP:60:504,1,"Place Levanneur",48.988317,2.318744,0,0,OIF:SA:60:504,Europe/Paris,,OIF, +OIF:SP:60:505,1,"Loges",48.976597,2.310503,0,0,OIF:SA:60:505,Europe/Paris,,OIF, +OIF:SP:60:506,1,"Loges",48.976812,2.310858,0,0,OIF:SA:60:505,Europe/Paris,,OIF, +OIF:SP:60:507,1,"Luxembourg",48.984174,2.318473,0,0,OIF:SA:60:507,Europe/Paris,,OIF, +OIF:SP:60:508,1,"Mairie",48.989692,2.321284,0,0,OIF:SA:60:508,Europe/Paris,,OIF, +OIF:SP:60:509,1,"La Mare aux Champeaux",48.996307,2.329817,0,0,OIF:SA:60:509,Europe/Paris,,OIF, +OIF:SP:60:510,1,"La Mare aux Champeaux",48.99628,2.329981,0,0,OIF:SA:60:509,Europe/Paris,,OIF, +OIF:SP:60:511,1,"Monument aux Morts",48.998939,2.322018,0,0,OIF:SA:60:511,Europe/Paris,,OIF, +OIF:SP:60:512,1,"Monument aux Morts",48.997726,2.322756,0,0,OIF:SA:60:511,Europe/Paris,,OIF, +OIF:SP:60:513,1,"Monument aux Morts",48.997951,2.323043,0,0,OIF:SA:60:511,Europe/Paris,,OIF, +OIF:SP:60:514,1,"L'Orangerie",48.982879,2.316234,0,0,OIF:SA:60:514,Europe/Paris,,OIF, +OIF:SP:60:515,1,"L'Orangerie",48.982924,2.316766,0,0,OIF:SA:60:514,Europe/Paris,,OIF, +OIF:SP:60:516,1,"Les Peupliers",49.005876,2.316279,0,0,OIF:SA:60:516,Europe/Paris,,OIF, +OIF:SP:60:517,1,"Les Peupliers",49.006001,2.316115,0,0,OIF:SA:60:516,Europe/Paris,,OIF, +OIF:SP:60:518,1,"Rue de Pontoise",48.992225,2.313226,0,0,OIF:SA:60:518,Europe/Paris,,OIF, +OIF:SP:60:519,1,"Rue de Pontoise",48.992189,2.313048,0,0,OIF:SA:60:518,Europe/Paris,,OIF, +OIF:SP:60:520,1,"Porte Rouge",48.980022,2.317628,0,0,OIF:SA:60:520,Europe/Paris,,OIF, +OIF:SP:60:521,1,"Porte Rouge",48.979842,2.317232,0,0,OIF:SA:60:520,Europe/Paris,,OIF, +OIF:SP:60:522,1,"Gymnase des Gallérands",48.987617,2.328248,0,0,OIF:SA:60:522,Europe/Paris,,OIF, +OIF:SP:60:523,1,"Gymnase des Gallérands",48.987212,2.328412,0,0,OIF:SA:60:522,Europe/Paris,,OIF, +OIF:SP:60:524,1,"Lycée J.J. Rousseau",48.991049,2.319686,0,0,OIF:SA:60:524,Europe/Paris,,OIF, +OIF:SP:60:525,1,"Lycée J.J. Rousseau",48.990932,2.319986,0,0,OIF:SA:60:524,Europe/Paris,,OIF, +OIF:SP:60:526,1,"Rey de Foresta",48.990348,2.321598,0,0,OIF:SA:60:524,Europe/Paris,,OIF, +OIF:SP:60:527,1,"Rey de Foresta",48.990069,2.322403,0,0,OIF:SA:60:524,Europe/Paris,,OIF, +OIF:SP:60:528,1,"Roosevelt",48.993493,2.319985,0,0,OIF:SA:60:528,Europe/Paris,,OIF, +OIF:SP:60:529,1,"Roosevelt",48.993178,2.319917,0,0,OIF:SA:60:528,Europe/Paris,,OIF, +OIF:SP:60:530,1,"Roosevelt",48.993259,2.320327,0,0,OIF:SA:60:528,Europe/Paris,,OIF, +OIF:SP:60:531,1,"Les Rougemonts",48.993907,2.334761,0,0,OIF:SA:60:531,Europe/Paris,,OIF, +OIF:SP:60:532,1,"Les Rougemonts",48.994276,2.334939,0,0,OIF:SA:60:531,Europe/Paris,,OIF, +OIF:SP:60:533,1,"Lycée J.J. Rousseau",48.991051,2.319241,0,0,OIF:SA:60:533,Europe/Paris,,OIF, +OIF:SP:60:534,1,"Saint-Valéry",48.984704,2.321859,0,0,OIF:SA:60:534,Europe/Paris,,OIF, +OIF:SP:60:535,1,"Verdun",48.994895,2.324846,0,0,OIF:SA:60:535,Europe/Paris,,OIF, +OIF:SP:60:536,1,"Verdun",48.99494,2.325079,0,0,OIF:SA:60:535,Europe/Paris,,OIF, +OIF:SP:60:537,1,"08-Mai-45",48.963304,2.334665,0,0,OIF:SA:60:537,Europe/Paris,,OIF, +OIF:SP:60:538,1,"08-Mai-45",48.963324,2.334641,0,0,OIF:SA:60:537,Europe/Paris,,OIF, +OIF:SP:60:539,1,"Berteaux",48.975554,2.347503,0,0,OIF:SA:60:539,Europe/Paris,,OIF, +OIF:SP:60:540,1,"Berteaux",48.975467,2.347294,0,0,OIF:SA:60:539,Europe/Paris,,OIF, +OIF:SP:60:541,1,"Carnot",48.972978,2.342816,0,0,OIF:SA:60:541,Europe/Paris,,OIF, +OIF:SP:60:542,1,"Chapelle Sainte-Thérèse",48.961475,2.332165,0,0,OIF:SA:60:542,Europe/Paris,,OIF, +OIF:SP:60:543,1,"Chapelle Sainte-Thérèse",48.961493,2.332142,0,0,OIF:SA:60:542,Europe/Paris,,OIF, +OIF:SP:60:550,1,"Jonction",48.972969,2.345724,0,0,OIF:SA:60:550,Europe/Paris,,OIF, +OIF:SP:60:551,1,"Mairie de Montmagny",48.974649,2.345642,0,0,OIF:SA:60:551,Europe/Paris,,OIF, +OIF:SP:60:552,1,"Missout",48.969024,2.34186,0,0,OIF:SA:60:552,Europe/Paris,,OIF, +OIF:SP:60:553,1,"Missout",48.969194,2.340427,0,0,OIF:SA:60:552,Europe/Paris,,OIF, +OIF:SP:60:555,1,"Poiriers",48.967573,2.339074,0,0,OIF:SA:60:1060,Europe/Paris,,OIF, +OIF:SP:60:557,1,"Stade",48.970974,2.344222,0,0,OIF:SA:60:557,Europe/Paris,,OIF, +OIF:SP:60:558,1,"Gare d'Epinay-Villetaneuse",48.958554,2.329086,0,0,OIF:SA:8727112,Europe/Paris,,OIF, +OIF:SP:60:573,1,"Bleury",49.000661,2.304986,0,0,OIF:SA:60:573,Europe/Paris,,OIF, +OIF:SP:60:575,1,"Bonne Auberge",48.986693,2.296229,0,0,OIF:SA:60:575,Europe/Paris,,OIF, +OIF:SP:60:576,1,"Bonne Auberge",48.986774,2.295915,0,0,OIF:SA:60:575,Europe/Paris,,OIF, +OIF:SP:60:577,1,"Bonne Auberge",48.985741,2.296216,0,0,OIF:SA:60:575,Europe/Paris,,OIF, +OIF:SP:60:578,1,"Bonne Auberge",48.985759,2.296202,0,0,OIF:SA:60:575,Europe/Paris,,OIF, +OIF:SP:60:579,1,"Carnot",48.988482,2.296801,0,0,OIF:SA:60:579,Europe/Paris,,OIF, +OIF:SP:60:580,1,"Carnot",48.988311,2.296746,0,0,OIF:SA:60:579,Europe/Paris,,OIF, +OIF:SP:60:581,1,"Champ de Courses Gare",48.980797,2.292588,0,0,OIF:SA:8727603,Europe/Paris,,OIF, +OIF:SP:60:582,1,"Champ de Courses Gare",48.980312,2.292302,0,0,OIF:SA:8727603,Europe/Paris,,OIF, +OIF:SP:60:583,1,"Cimetière",48.993523,2.294298,0,0,OIF:SA:60:583,Europe/Paris,,OIF, +OIF:SP:60:584,1,"Cimetière",48.994098,2.294229,0,0,OIF:SA:60:583,Europe/Paris,,OIF, +OIF:SP:60:586,1,"Clos Renaud",48.991519,2.295433,0,0,OIF:SA:60:586,Europe/Paris,,OIF, +OIF:SP:60:587,1,"Clos Renaud",48.989956,2.296445,0,0,OIF:SA:60:586,Europe/Paris,,OIF, +OIF:SP:60:590,1,"Centre Commercial",48.991239,2.292156,0,0,OIF:SA:60:590,Europe/Paris,,OIF, +OIF:SP:60:592,1,"Dr Schweitzer",48.995035,2.303064,0,0,OIF:SA:60:2111,Europe/Paris,,OIF, +OIF:SP:60:593,1,"Dr Schweitzer",48.995251,2.3029,0,0,OIF:SA:60:2111,Europe/Paris,,OIF, +OIF:SP:60:596,1,"Le Bois Gazet",48.9974,2.309782,0,0,OIF:SA:60:596,Europe/Paris,,OIF, +OIF:SP:60:597,1,"Le Bois Gazet",48.997373,2.309864,0,0,OIF:SA:60:596,Europe/Paris,,OIF, +OIF:SP:60:598,1,"Gendarmerie",48.983332,2.293883,0,0,OIF:SA:60:598,Europe/Paris,,OIF, +OIF:SP:60:599,1,"Gendarmerie",48.983637,2.294074,0,0,OIF:SA:60:598,Europe/Paris,,OIF, +OIF:SP:60:6,1,"Clinique des Orchidées",49.005926,2.301855,0,0,OIF:SA:60:5,Europe/Paris,,OIF, +OIF:SP:60:600,1,"Gymnase",48.993796,2.306329,0,0,OIF:SA:60:600,Europe/Paris,,OIF, +OIF:SP:60:601,1,"Gymnase",48.993966,2.305496,0,0,OIF:SA:60:600,Europe/Paris,,OIF, +OIF:SP:60:602,1,"Hôtel de Ville",48.987567,2.300843,0,0,OIF:SA:60:602,Europe/Paris,,OIF, +OIF:SP:60:603,1,"Hôtel de Ville",48.98736,2.300761,0,0,OIF:SA:60:602,Europe/Paris,,OIF, +OIF:SP:60:606,1,"Marche",48.987674,2.298891,0,0,OIF:SA:60:606,Europe/Paris,,OIF, +OIF:SP:60:607,1,"Marche",48.987674,2.29885,0,0,OIF:SA:60:606,Europe/Paris,,OIF, +OIF:SP:60:608,1,"Chemin de Margency",48.995315,2.309032,0,0,OIF:SA:60:608,Europe/Paris,,OIF, +OIF:SP:60:609,1,"Chemin de Margency",48.995333,2.309278,0,0,OIF:SA:60:608,Europe/Paris,,OIF, +OIF:SP:60:617,1,"Saint-Paul",48.993006,2.310044,0,0,OIF:SA:60:616,Europe/Paris,,OIF, +OIF:SP:60:618,1,"Général de Gaulle",48.984664,2.299425,0,0,OIF:SA:60:618,Europe/Paris,,OIF, +OIF:SP:60:619,1,"Général de Gaulle",48.984439,2.299275,0,0,OIF:SA:60:618,Europe/Paris,,OIF, +OIF:SP:60:620,1,"Lucie Raviol",48.989509,2.304392,0,0,OIF:SA:60:620,Europe/Paris,,OIF, +OIF:SP:60:622,1,"Jardin Renard",48.991718,2.298478,0,0,OIF:SA:60:621,Europe/Paris,,OIF, +OIF:SP:60:624,1,"Parc des Sources",49.00104,2.312539,0,0,OIF:SA:60:11,Europe/Paris,,OIF, +OIF:SP:60:627,1,"La Station",48.989275,2.305744,0,0,OIF:SA:60:627,Europe/Paris,,OIF, +OIF:SP:60:628,1,"La Station",48.989123,2.305458,0,0,OIF:SA:60:627,Europe/Paris,,OIF, +OIF:SP:60:629,1,"Saint-Paul",48.992889,2.309525,0,0,OIF:SA:60:629,Europe/Paris,,OIF, +OIF:SP:60:631,1,"Saint-Paul",48.993024,2.31003,0,0,OIF:SA:60:629,Europe/Paris,,OIF, +OIF:SP:60:632,1,"Avenue Mathilde",48.975081,2.292197,0,0,OIF:SA:60:632,Europe/Paris,,OIF, +OIF:SP:60:633,1,"Avenue Mathilde",48.97474,2.293044,0,0,OIF:SA:60:632,Europe/Paris,,OIF, +OIF:SP:60:634,1,"Les Tourelles",48.98999,2.29146,0,0,OIF:SA:60:634,Europe/Paris,,OIF, +OIF:SP:60:635,1,"Les Tourelles",48.989774,2.29157,0,0,OIF:SA:60:634,Europe/Paris,,OIF, +OIF:SP:60:7,1,"Le Colombier",49.002441,2.306091,0,0,OIF:SA:60:7,Europe/Paris,,OIF, +OIF:SP:60:766,1,"Alliance",48.977247,2.291622,0,0,OIF:SA:60:766,Europe/Paris,,OIF, +OIF:SP:60:767,1,"Alliance",48.976905,2.29154,0,0,OIF:SA:60:766,Europe/Paris,,OIF, +OIF:SP:60:768,1,"Artois",48.959989,2.282316,0,0,OIF:SA:60:768,Europe/Paris,,OIF, +OIF:SP:60:769,1,"Artois",48.959953,2.281975,0,0,OIF:SA:60:768,Europe/Paris,,OIF, +OIF:SP:60:770,1,"Alliance Bussys",48.976858,2.284783,0,0,OIF:SA:60:770,Europe/Paris,,OIF, +OIF:SP:60:771,1,"Alliance Bussys",48.976831,2.284591,0,0,OIF:SA:60:770,Europe/Paris,,OIF, +OIF:SP:60:772,1,"Carnot",48.972915,2.289551,0,0,OIF:SA:60:772,Europe/Paris,,OIF, +OIF:SP:60:773,1,"Carnot",48.972402,2.289114,0,0,OIF:SA:60:772,Europe/Paris,,OIF, +OIF:SP:60:774,1,"Cressonnières",48.976257,2.288524,0,0,OIF:SA:60:774,Europe/Paris,,OIF, +OIF:SP:60:775,1,"Cressonnières",48.975997,2.289507,0,0,OIF:SA:60:774,Europe/Paris,,OIF, +OIF:SP:60:776,1,"Paul Doumer",48.970927,2.286631,0,0,OIF:SA:60:776,Europe/Paris,,OIF, +OIF:SP:60:777,1,"Forum",48.96842,2.285119,0,0,OIF:SA:59:5081771,Europe/Paris,,OIF, +OIF:SP:60:778,1,"Saint-Gratien Gare RER",48.962741,2.287349,0,0,OIF:SA:8727617,Europe/Paris,,OIF, +OIF:SP:60:779,1,"Saint-Gratien Gare RER",48.962839,2.285656,0,0,OIF:SA:8727617,Europe/Paris,,OIF, +OIF:SP:60:780,1,"Hôtel de Ville",48.969714,2.286168,0,0,OIF:SA:60:780,Europe/Paris,,OIF, +OIF:SP:60:781,1,"Hôtel de Ville",48.970638,2.282932,0,0,OIF:SA:60:780,Europe/Paris,,OIF, +OIF:SP:60:782,1,"Berthie Albrecht",48.965777,2.283702,0,0,OIF:SA:60:782,Europe/Paris,,OIF, +OIF:SP:60:783,1,"Berthie Albrecht",48.966055,2.283647,0,0,OIF:SA:60:782,Europe/Paris,,OIF, +OIF:SP:60:784,1,"J. Sarrailh",48.960719,2.287706,0,0,OIF:SA:60:784,Europe/Paris,,OIF, +OIF:SP:60:785,1,"J. Sarrailh",48.960773,2.287801,0,0,OIF:SA:60:784,Europe/Paris,,OIF, +OIF:SP:60:8,1,"Le Colombier",49.002261,2.306993,0,0,OIF:SA:60:7,Europe/Paris,,OIF, +OIF:SP:60:9,1,"Mairie",49.004649,2.298004,0,0,OIF:SA:60:10,Europe/Paris,,OIF, +OIF:SP:60:94,1,"Gare d'Argenteuil",48.945857,2.258127,0,0,OIF:SA:8738184,Europe/Paris,,OIF, +OIF:SP:61:10,1,"Plessis la Tour",48.612126,3.40559,0,0,OIF:SA:61:10,Europe/Paris,,OIF, +OIF:SP:61:101,1,"Vulaines",48.560444,3.217627,0,0,OIF:SA:61:101,Europe/Paris,,OIF, +OIF:SP:61:102,1,"Maulny",48.507892,3.392592,0,0,OIF:SA:61:102,Europe/Paris,,OIF, +OIF:SP:61:105,1,"Mairie",48.588101,3.108917,0,0,OIF:SA:61:105,Europe/Paris,,OIF, +OIF:SP:61:106,1,"Place",48.607385,3.016347,0,0,OIF:SA:61:106,Europe/Paris,,OIF, +OIF:SP:61:107,1,"Mairie",48.627868,3.020302,0,0,OIF:SA:52:2280,Europe/Paris,,OIF, +OIF:SP:61:108,1,"Le Corbier",48.688268,3.124414,0,0,OIF:SA:61:108,Europe/Paris,,OIF, +OIF:SP:61:109,1,"Villars les Demoiselles",48.682922,3.142769,0,0,OIF:SA:61:109,Europe/Paris,,OIF, +OIF:SP:61:11,1,"Saint-Martin",48.58517,3.43745,0,0,OIF:SA:61:11,Europe/Paris,,OIF, +OIF:SP:61:110,1,"Villechevret",48.679256,3.139902,0,0,OIF:SA:61:110,Europe/Paris,,OIF, +OIF:SP:61:111,1,"École Maternelle",48.594075,3.075775,0,0,OIF:SA:61:111,Europe/Paris,,OIF, +OIF:SP:61:112,1,"Église",48.593283,3.075967,0,0,OIF:SA:61:112,Europe/Paris,,OIF, +OIF:SP:61:113,1,"La Charmoye",48.593294,3.066996,0,0,OIF:SA:61:113,Europe/Paris,,OIF, +OIF:SP:61:114,1,"Le Sceau",48.605244,3.042724,0,0,OIF:SA:61:114,Europe/Paris,,OIF, +OIF:SP:61:115,1,"Gare SNCF",48.561029,3.012546,0,0,OIF:SA:8711609,Europe/Paris,,OIF, +OIF:SP:61:116,1,"La Psauve",48.575571,3.039396,0,0,OIF:SA:61:116,Europe/Paris,,OIF, +OIF:SP:61:117,1,"Lycée H. Becquerel",48.549857,3.007418,0,0,OIF:SA:61:117,Europe/Paris,,OIF, +OIF:SP:61:118,1,"CES Barthélémy Quai 1",48.551597,3.016039,0,0,OIF:SA:61:118,Europe/Paris,,OIF, +OIF:SP:61:119,1,"Église",48.599434,3.105371,0,0,OIF:SA:61:119,Europe/Paris,,OIF, +OIF:SP:61:12,1,"Cerneux",48.693473,3.34518,0,0,OIF:SA:61:12,Europe/Paris,,OIF, +OIF:SP:61:120,1,"Les Guilverts",48.609423,3.125541,0,0,OIF:SA:61:120,Europe/Paris,,OIF, +OIF:SP:61:121,1,"Le Plessis Hainault",48.618294,3.115004,0,0,OIF:SA:61:121,Europe/Paris,,OIF, +OIF:SP:61:122,1,"Mairie",48.612575,3.116627,0,0,OIF:SA:61:122,Europe/Paris,,OIF, +OIF:SP:61:123,1,"Rue du Parc",48.581255,3.138108,0,0,OIF:SA:61:123,Europe/Paris,,OIF, +OIF:SP:61:124,1,"Corberon",48.582334,3.161618,0,0,OIF:SA:61:124,Europe/Paris,,OIF, +OIF:SP:61:125,1,"Gare SNCF",48.406373,2.79926,0,0,OIF:SA:8768245,Europe/Paris,,OIF, +OIF:SP:61:126,1,"Les Montils",48.508355,2.946798,0,0,OIF:SA:61:126,Europe/Paris,,OIF, +OIF:SP:61:127,1,"Place de l'Église",48.511906,2.970789,0,0,OIF:SA:61:127,Europe/Paris,,OIF, +OIF:SP:61:128,1,"Square Dupeyron",48.509245,2.967429,0,0,OIF:SA:61:128,Europe/Paris,,OIF, +OIF:SP:61:129,1,"Rond-Point",48.470244,2.99393,0,0,OIF:SA:61:129,Europe/Paris,,OIF, +OIF:SP:61:13,1,"Le Chanoy",48.698993,3.351507,0,0,OIF:SA:61:13,Europe/Paris,,OIF, +OIF:SP:61:131,1,"Libération",48.463268,2.945244,0,0,OIF:SA:61:131,Europe/Paris,,OIF, +OIF:SP:61:132,1,"Lycée Fontaineroux",48.439148,2.800225,0,0,OIF:SA:61:132,Europe/Paris,,OIF, +OIF:SP:61:135,1,"Le Jarrier",48.555994,2.934328,0,0,OIF:SA:61:135,Europe/Paris,,OIF, +OIF:SP:61:136,1,"Bourg",48.417972,2.959318,0,0,OIF:SA:12:3081,Europe/Paris,,OIF, +OIF:SP:61:14,1,"Bourg",48.541923,3.459772,0,0,OIF:SA:61:14,Europe/Paris,,OIF, +OIF:SP:61:140,1,"Collège P. Éluard",48.400311,2.96999,0,0,OIF:SA:61:140,Europe/Paris,,OIF, +OIF:SP:61:141,1,"Gare SNCF Quai 9",48.38012,2.94394,0,0,OIF:SA:8768230,Europe/Paris,,OIF, +OIF:SP:61:142,1,"Surville",48.394512,2.954773,0,0,OIF:SA:61:142,Europe/Paris,,OIF, +OIF:SP:61:147,1,"Lotissement",48.555467,2.922703,0,0,OIF:SA:61:147,Europe/Paris,,OIF, +OIF:SP:61:148,1,"Mairie",48.558083,2.915514,0,0,OIF:SA:61:148,Europe/Paris,,OIF, +OIF:SP:61:149,1,"CFA",48.398245,2.978012,0,0,OIF:SA:12:3027,Europe/Paris,,OIF, +OIF:SP:61:15,1,"Fouchères",48.551766,3.470249,0,0,OIF:SA:61:15,Europe/Paris,,OIF, +OIF:SP:61:150,1,"Lycée G.Eiffel",48.373298,2.927587,0,0,OIF:SA:61:150,Europe/Paris,,OIF, +OIF:SP:61:153,1,"Le Plessis",48.417122,3.074098,0,0,OIF:SA:61:153,Europe/Paris,,OIF, +OIF:SP:61:154,1,"Châtenay",48.419302,3.09601,0,0,OIF:SA:61:154,Europe/Paris,,OIF, +OIF:SP:61:156,1,"Mairie",48.409632,3.056639,0,0,OIF:SA:61:156,Europe/Paris,,OIF, +OIF:SP:61:157,1,"Ravin de Rumini",48.471838,2.998317,0,0,OIF:SA:61:157,Europe/Paris,,OIF, +OIF:SP:61:158,1,"Haussonville",48.47705,3.131411,0,0,OIF:SA:61:158,Europe/Paris,,OIF, +OIF:SP:61:159,1,"Collège du Montois",48.478375,3.141438,0,0,OIF:SA:61:159,Europe/Paris,,OIF, +OIF:SP:61:16,1,"Les Chaises",48.548699,3.453431,0,0,OIF:SA:61:16,Europe/Paris,,OIF, +OIF:SP:61:160,1,"Echou",48.451003,2.917098,0,0,OIF:SA:61:160,Europe/Paris,,OIF, +OIF:SP:61:164,1,"Chalautre la Reposte",48.480543,3.092302,0,0,OIF:SA:61:164,Europe/Paris,,OIF, +OIF:SP:61:165,1,"EDF",48.472944,3.084107,0,0,OIF:SA:61:165,Europe/Paris,,OIF, +OIF:SP:61:167,1,"Église",48.527184,3.177638,0,0,OIF:SA:61:167,Europe/Paris,,OIF, +OIF:SP:61:169,1,"Viaduc",48.521552,3.243848,0,0,OIF:SA:61:169,Europe/Paris,,OIF, +OIF:SP:61:17,1,"Puits Froux",48.558735,3.433845,0,0,OIF:SA:61:17,Europe/Paris,,OIF, +OIF:SP:61:173,1,"Le Villé",48.486277,3.1482,0,0,OIF:SA:61:173,Europe/Paris,,OIF, +OIF:SP:61:177,1,"Orvilliers",48.440532,3.046552,0,0,OIF:SA:61:177,Europe/Paris,,OIF, +OIF:SP:61:179,1,"Liberté",48.479942,3.197283,0,0,OIF:SA:61:179,Europe/Paris,,OIF, +OIF:SP:61:18,1,"Église",48.670049,3.282715,0,0,OIF:SA:61:18,Europe/Paris,,OIF, +OIF:SP:61:181,1,"Centre",48.539546,3.283368,0,0,OIF:SA:61:181,Europe/Paris,,OIF, +OIF:SP:61:183,1,"Gare SNCF Quai 1",48.555845,3.302311,0,0,OIF:SA:8711616,Europe/Paris,,OIF, +OIF:SP:61:184,1,"Saint-Loup de Naud",48.535495,3.212928,0,0,OIF:SA:61:184,Europe/Paris,,OIF, +OIF:SP:61:185,1,"Courton le Bas",48.533238,3.222731,0,0,OIF:SA:61:185,Europe/Paris,,OIF, +OIF:SP:61:186,1,"Courton le Haut",48.534177,3.232927,0,0,OIF:SA:61:186,Europe/Paris,,OIF, +OIF:SP:61:188,1,"Place du Général de Gaulle",48.529208,3.253618,0,0,OIF:SA:61:188,Europe/Paris,,OIF, +OIF:SP:61:189,1,"Bibliothèque",48.420554,3.020739,0,0,OIF:SA:61:189,Europe/Paris,,OIF, +OIF:SP:61:19,1,"Courchamp",48.634943,3.288519,0,0,OIF:SA:61:19,Europe/Paris,,OIF, +OIF:SP:61:190,1,"Rue Grande",48.510379,3.196594,0,0,OIF:SA:61:190,Europe/Paris,,OIF, +OIF:SP:61:191,1,"Carrouges",48.507782,3.196498,0,0,OIF:SA:61:191,Europe/Paris,,OIF, +OIF:SP:61:192,1,"Mairie",48.509702,3.200778,0,0,OIF:SA:61:192,Europe/Paris,,OIF, +OIF:SP:61:193,1,"Place",48.477655,3.181546,0,0,OIF:SA:61:193,Europe/Paris,,OIF, +OIF:SP:61:194,1,"École",48.510802,3.166401,0,0,OIF:SA:61:194,Europe/Paris,,OIF, +OIF:SP:61:195,1,"Thénisy",48.483726,3.179968,0,0,OIF:SA:61:195,Europe/Paris,,OIF, +OIF:SP:61:196,1,"Les Frelons",48.498512,3.230556,0,0,OIF:SA:61:196,Europe/Paris,,OIF, +OIF:SP:61:197,1,"Place de l'Église",48.444286,2.891146,0,0,OIF:SA:61:197,Europe/Paris,,OIF, +OIF:SP:61:198,1,"Poste",48.486644,3.043568,0,0,OIF:SA:61:198,Europe/Paris,,OIF, +OIF:SP:61:199,1,"Valjouan",48.504145,3.043967,0,0,OIF:SA:61:199,Europe/Paris,,OIF, +OIF:SP:61:2,1,"Coeffrin",48.649209,3.357713,0,0,OIF:SA:61:2,Europe/Paris,,OIF, +OIF:SP:61:202,1,"Mairie",48.427103,3.121277,0,0,OIF:SA:61:202,Europe/Paris,,OIF, +OIF:SP:61:203,1,"Gare SNCF",48.513559,3.249717,0,0,OIF:SA:8711613,Europe/Paris,,OIF, +OIF:SP:61:205,1,"Volangis",48.445613,3.185177,0,0,OIF:SA:61:205,Europe/Paris,,OIF, +OIF:SP:61:209,1,"Ateliers Municipaux",48.555378,3.297929,0,0,OIF:SA:61:209,Europe/Paris,,OIF, +OIF:SP:61:21,1,"Rue de la Gare",48.580216,3.386929,0,0,OIF:SA:61:21,Europe/Paris,,OIF, +OIF:SP:61:210,1,"Avenue de la Voulzie",48.550563,3.295172,0,0,OIF:SA:61:210,Europe/Paris,,OIF, +OIF:SP:61:211,1,"Bellevues",48.552447,3.303359,0,0,OIF:SA:61:211,Europe/Paris,,OIF, +OIF:SP:61:213,1,"Porte de Jouy",48.564984,3.283897,0,0,OIF:SA:61:213,Europe/Paris,,OIF, +OIF:SP:61:218,1,"Fontaine aux Écus",48.543172,3.293141,0,0,OIF:SA:61:218,Europe/Paris,,OIF, +OIF:SP:61:22,1,"Cormeron",48.587646,3.368094,0,0,OIF:SA:61:22,Europe/Paris,,OIF, +OIF:SP:61:220,1,"Gare SNCF Quai 5",48.555922,3.302868,0,0,OIF:SA:8711616,Europe/Paris,,OIF, +OIF:SP:61:221,1,"Général de Gaulle",48.559343,3.284485,0,0,OIF:SA:61:221,Europe/Paris,,OIF, +OIF:SP:61:222,1,"Hôpital L. Binet",48.546354,3.303138,0,0,OIF:SA:61:222,Europe/Paris,,OIF, +OIF:SP:61:224,1,"Maison de Quartier",48.54688,3.29371,0,0,OIF:SA:61:224,Europe/Paris,,OIF, +OIF:SP:61:226,1,"Marcel Mougenot",48.571426,3.291167,0,0,OIF:SA:61:226,Europe/Paris,,OIF, +OIF:SP:61:227,1,"Dromigny",48.553913,3.293419,0,0,OIF:SA:61:227,Europe/Paris,,OIF, +OIF:SP:61:23,1,"École",48.576743,3.387279,0,0,OIF:SA:61:23,Europe/Paris,,OIF, +OIF:SP:61:231,1,"Place H.Balzac",48.559489,3.298627,0,0,OIF:SA:61:231,Europe/Paris,,OIF, +OIF:SP:61:232,1,"Rue Saint-Jean",48.561638,3.284134,0,0,OIF:SA:61:232,Europe/Paris,,OIF, +OIF:SP:61:233,1,"Pré Botin",48.54462,3.291908,0,0,OIF:SA:61:233,Europe/Paris,,OIF, +OIF:SP:61:234,1,"Prés de la Comtesse",48.545746,3.295016,0,0,OIF:SA:61:234,Europe/Paris,,OIF, +OIF:SP:61:235,1,"Route de Bray",48.556277,3.287829,0,0,OIF:SA:61:235,Europe/Paris,,OIF, +OIF:SP:61:236,1,"Les Sablons",48.558369,3.287149,0,0,OIF:SA:61:236,Europe/Paris,,OIF, +OIF:SP:61:237,1,"Félix Bourquelot",48.561188,3.304198,0,0,OIF:SA:61:237,Europe/Paris,,OIF, +OIF:SP:61:238,1,"Terrier Rouge",48.541776,3.291206,0,0,OIF:SA:61:238,Europe/Paris,,OIF, +OIF:SP:61:240,1,"Warnery",48.566952,3.294119,0,0,OIF:SA:61:240,Europe/Paris,,OIF, +OIF:SP:61:241,1,"ZAC des Bordes",48.5542,3.300155,0,0,OIF:SA:61:241,Europe/Paris,,OIF, +OIF:SP:61:245,1,"Chessy Gares",48.871772,2.784108,0,0,OIF:SA:8775499,Europe/Paris,,OIF, +OIF:SP:61:247,1,"Lycée Tour des Dames",48.677866,2.968469,0,0,OIF:SA:61:247,Europe/Paris,,OIF, +OIF:SP:61:248,1,"Saint-Nicolas",48.681485,2.959011,0,0,OIF:SA:61:248,Europe/Paris,,OIF, +OIF:SP:61:249,1,"Le Crayon",48.425588,3.016225,0,0,OIF:SA:61:249,Europe/Paris,,OIF, +OIF:SP:61:25,1,"Pigy",48.554541,3.409827,0,0,OIF:SA:61:25,Europe/Paris,,OIF, +OIF:SP:61:250,1,"Le Rôty",48.425347,3.008009,0,0,OIF:SA:61:250,Europe/Paris,,OIF, +OIF:SP:61:251,1,"Les Repentailles",48.42037,3.027638,0,0,OIF:SA:61:251,Europe/Paris,,OIF, +OIF:SP:61:252,1,"Les Tuileries",48.417403,3.010527,0,0,OIF:SA:61:252,Europe/Paris,,OIF, +OIF:SP:61:253,1,"Stop Route de Provins",48.423384,3.02114,0,0,OIF:SA:61:253,Europe/Paris,,OIF, +OIF:SP:61:26,1,"Plessis Pigy",48.562597,3.399848,0,0,OIF:SA:61:26,Europe/Paris,,OIF, +OIF:SP:61:268,1,"Saint-Augustin",48.557946,3.152281,0,0,OIF:SA:61:268,Europe/Paris,,OIF, +OIF:SP:61:27,1,"Richebourg",48.570206,3.370011,0,0,OIF:SA:61:27,Europe/Paris,,OIF, +OIF:SP:61:271,1,"Église",48.536895,3.348395,0,0,OIF:SA:61:271,Europe/Paris,,OIF, +OIF:SP:61:274,1,"Roger Frisson",48.555285,3.177996,0,0,OIF:SA:61:274,Europe/Paris,,OIF, +OIF:SP:61:275,1,"Landoy",48.539336,3.166557,0,0,OIF:SA:61:275,Europe/Paris,,OIF, +OIF:SP:61:276,1,"Leudon",48.537566,3.143068,0,0,OIF:SA:61:276,Europe/Paris,,OIF, +OIF:SP:61:277,1,"Gare SNCF Quai 6",48.555939,3.303004,0,0,OIF:SA:8711616,Europe/Paris,,OIF, +OIF:SP:61:278,1,"Place de la Mairie",48.735417,3.011742,0,0,OIF:SA:61:278,Europe/Paris,,OIF, +OIF:SP:61:28,1,"Corberon",48.675574,3.329318,0,0,OIF:SA:61:28,Europe/Paris,,OIF, +OIF:SP:61:280,1,"Mairie",48.572652,2.858293,0,0,OIF:SA:52:681,Europe/Paris,,OIF, +OIF:SP:61:281,1,"Auberge",48.562357,2.87856,0,0,OIF:SA:52:745,Europe/Paris,,OIF, +OIF:SP:61:283,1,"Place",48.584465,2.80645,0,0,OIF:SA:52:970,Europe/Paris,,OIF, +OIF:SP:61:286,1,"La Pierre Couvée",48.651352,2.901859,0,0,OIF:SA:52:1703,Europe/Paris,,OIF, +OIF:SP:61:288,1,"Glatigny",48.542792,2.951046,0,0,OIF:SA:61:288,Europe/Paris,,OIF, +OIF:SP:61:289,1,"Lotissement",48.553268,2.950425,0,0,OIF:SA:61:289,Europe/Paris,,OIF, +OIF:SP:61:29,1,"Les Marêts",48.667857,3.31579,0,0,OIF:SA:61:29,Europe/Paris,,OIF, +OIF:SP:61:291,1,"Groupe Scolaire",48.583488,2.968287,0,0,OIF:SA:52:2344,Europe/Paris,,OIF, +OIF:SP:61:296,1,"Mairie RN 19",48.60641,2.891259,0,0,OIF:SA:61:296,Europe/Paris,,OIF, +OIF:SP:61:297,1,"Bagneaux",48.601276,2.939389,0,0,OIF:SA:52:482,Europe/Paris,,OIF, +OIF:SP:61:299,1,"Bonfruit",48.643106,2.911767,0,0,OIF:SA:52:474,Europe/Paris,,OIF, +OIF:SP:61:3,1,"Ecoublay",48.657462,3.341877,0,0,OIF:SA:61:3,Europe/Paris,,OIF, +OIF:SP:61:30,1,"Marêchère",48.662157,3.312602,0,0,OIF:SA:61:30,Europe/Paris,,OIF, +OIF:SP:61:300,1,"La Noue",48.620205,2.912748,0,0,OIF:SA:52:486,Europe/Paris,,OIF, +OIF:SP:61:301,1,"Mairie",48.611102,2.910329,0,0,OIF:SA:52:488,Europe/Paris,,OIF, +OIF:SP:61:302,1,"Yvernailles",48.618734,2.919497,0,0,OIF:SA:52:490,Europe/Paris,,OIF, +OIF:SP:61:303,1,"La Fermeté",48.621303,2.948339,0,0,OIF:SA:52:4263,Europe/Paris,,OIF, +OIF:SP:61:304,1,"Les Loges",48.620796,2.967899,0,0,OIF:SA:52:4265,Europe/Paris,,OIF, +OIF:SP:61:305,1,"Rue Saint-Martin",48.607122,2.969807,0,0,OIF:SA:52:14587,Europe/Paris,,OIF, +OIF:SP:61:306,1,"Bourg",48.549915,3.068839,0,0,OIF:SA:61:306,Europe/Paris,,OIF, +OIF:SP:61:307,1,"Beauguichet",48.540154,3.0998,0,0,OIF:SA:61:307,Europe/Paris,,OIF, +OIF:SP:61:309,1,"Cernuise",48.541345,3.107466,0,0,OIF:SA:61:309,Europe/Paris,,OIF, +OIF:SP:61:311,1,"Montépot",48.544438,3.082153,0,0,OIF:SA:61:311,Europe/Paris,,OIF, +OIF:SP:61:312,1,"Rogenvilliers",48.527644,3.047277,0,0,OIF:SA:61:312,Europe/Paris,,OIF, +OIF:SP:61:313,1,"Église",48.578062,2.827012,0,0,OIF:SA:52:4673,Europe/Paris,,OIF, +OIF:SP:61:316,1,"Pressoir",48.555743,3.106718,0,0,OIF:SA:61:316,Europe/Paris,,OIF, +OIF:SP:61:317,1,"Les Vergers",48.552694,3.113782,0,0,OIF:SA:61:317,Europe/Paris,,OIF, +OIF:SP:61:318,1,"Châtillon",48.54141,2.807483,0,0,OIF:SA:61:318,Europe/Paris,,OIF, +OIF:SP:61:319,1,"La Borde Mairie",48.529754,2.835057,0,0,OIF:SA:61:319,Europe/Paris,,OIF, +OIF:SP:61:32,1,"Ecury",48.611332,3.471612,0,0,OIF:SA:61:32,Europe/Paris,,OIF, +OIF:SP:61:320,1,"Château d'Eau",48.549696,2.892822,0,0,OIF:SA:52:992,Europe/Paris,,OIF, +OIF:SP:61:321,1,"Rue de la Poste",48.549501,2.898019,0,0,OIF:SA:61:321,Europe/Paris,,OIF, +OIF:SP:61:325,1,"Bancel",48.541325,2.661258,0,0,OIF:SA:27:23,Europe/Paris,,OIF, +OIF:SP:61:33,1,"Fontaine Montaiguillon",48.616443,3.515356,0,0,OIF:SA:61:33,Europe/Paris,,OIF, +OIF:SP:61:330,1,"Place Saint-Jean",48.539487,2.663101,0,0,OIF:SA:27:278,Europe/Paris,,OIF, +OIF:SP:61:332,1,"Route de Nangis",48.541316,2.677477,0,0,OIF:SA:52:3294,Europe/Paris,,OIF, +OIF:SP:61:335,1,"Victor Hugo - Porte de Paris",48.539636,2.657836,0,0,OIF:SA:31:439,Europe/Paris,,OIF, +OIF:SP:61:336,1,"Gendarmerie",48.552885,3.007687,0,0,OIF:SA:61:336,Europe/Paris,,OIF, +OIF:SP:61:337,1,"Piscine",48.552203,3.015438,0,0,OIF:SA:61:337,Europe/Paris,,OIF, +OIF:SP:61:338,1,"Victor Hugo",48.556783,3.009918,0,0,OIF:SA:61:338,Europe/Paris,,OIF, +OIF:SP:61:339,1,"Gare SNCF Quai 2",48.555913,3.302854,0,0,OIF:SA:8711616,Europe/Paris,,OIF, +OIF:SP:61:340,1,"Courtry",48.543728,2.769975,0,0,OIF:SA:61:340,Europe/Paris,,OIF, +OIF:SP:61:341,1,"Saint-Just / Clémenceau",48.534312,2.677877,0,0,OIF:SA:61:341,Europe/Paris,,OIF, +OIF:SP:61:342,1,"Institution Nazareth",48.568041,2.661912,0,0,OIF:SA:27:222,Europe/Paris,,OIF, +OIF:SP:61:35,1,"Louan",48.625434,3.479527,0,0,OIF:SA:61:35,Europe/Paris,,OIF, +OIF:SP:61:36,1,"Villegruis",48.603312,3.46794,0,0,OIF:SA:61:36,Europe/Paris,,OIF, +OIF:SP:61:37,1,"Bourg",48.694274,3.438184,0,0,OIF:SA:61:37,Europe/Paris,,OIF, +OIF:SP:61:38,1,"Lotissement",48.695734,3.444543,0,0,OIF:SA:61:38,Europe/Paris,,OIF, +OIF:SP:61:383,1,"Place de l'Escargot",48.528409,3.314081,0,0,OIF:SA:61:383,Europe/Paris,,OIF, +OIF:SP:61:386,1,"Abri Centre",48.498099,3.417691,0,0,OIF:SA:61:386,Europe/Paris,,OIF, +OIF:SP:61:387,1,"École Voulzie",48.547836,3.293321,0,0,OIF:SA:61:387,Europe/Paris,,OIF, +OIF:SP:61:388,1,"École des Coudoux",48.569299,3.29064,0,0,OIF:SA:61:388,Europe/Paris,,OIF, +OIF:SP:61:39,1,"Gare Routière",48.560722,3.299625,0,0,OIF:SA:61:39,Europe/Paris,,OIF, +OIF:SP:61:391,1,"Puits Godier",48.506449,3.288274,0,0,OIF:SA:61:391,Europe/Paris,,OIF, +OIF:SP:61:394,1,"Bescherelles",48.492537,3.110195,0,0,OIF:SA:61:394,Europe/Paris,,OIF, +OIF:SP:61:397,1,"Carrefour Gratteloup",48.439934,3.111497,0,0,OIF:SA:61:397,Europe/Paris,,OIF, +OIF:SP:61:4,1,"Gondelot",48.673209,3.344407,0,0,OIF:SA:61:4,Europe/Paris,,OIF, +OIF:SP:61:42,1,"Collège Jules Verne",48.544746,3.289649,0,0,OIF:SA:61:42,Europe/Paris,,OIF, +OIF:SP:61:43,1,"Lycée les Pannevelles",48.546983,3.304205,0,0,OIF:SA:61:43,Europe/Paris,,OIF, +OIF:SP:61:44,1,"Collège Marie Curie",48.547421,3.297917,0,0,OIF:SA:61:44,Europe/Paris,,OIF, +OIF:SP:61:45,1,"Ville Haute Quai 1",48.561128,3.280441,0,0,OIF:SA:61:45,Europe/Paris,,OIF, +OIF:SP:61:46,1,"Rupéreux",48.636595,3.327233,0,0,OIF:SA:61:46,Europe/Paris,,OIF, +OIF:SP:61:470,1,"Blunay",48.503192,3.386287,0,0,OIF:SA:61:470,Europe/Paris,,OIF, +OIF:SP:61:471,1,"Les Hauts de Rougements",48.536332,3.290701,0,0,OIF:SA:61:471,Europe/Paris,,OIF, +OIF:SP:61:472,1,"Café Pressoir",48.511748,3.294487,0,0,OIF:SA:61:472,Europe/Paris,,OIF, +OIF:SP:61:473,1,"Salle Polyvalente",48.558758,2.915359,0,0,OIF:SA:61:473,Europe/Paris,,OIF, +OIF:SP:61:475,1,"Stade",48.556193,2.951489,0,0,OIF:SA:61:475,Europe/Paris,,OIF, +OIF:SP:61:479,1,"RD 619",48.560076,3.218745,0,0,OIF:SA:61:479,Europe/Paris,,OIF, +OIF:SP:61:482,1,"Servigny",48.467916,3.193002,0,0,OIF:SA:61:482,Europe/Paris,,OIF, +OIF:SP:61:483,1,"Collège Pierre",48.387209,2.951798,0,0,OIF:SA:12:3017,Europe/Paris,,OIF, +OIF:SP:61:49,1,"Sancy lès Provins",48.696407,3.391298,0,0,OIF:SA:61:49,Europe/Paris,,OIF, +OIF:SP:61:490,1,"Place du 29ème Dragon",48.565532,3.300635,0,0,OIF:SA:61:490,Europe/Paris,,OIF, +OIF:SP:61:491,1,"La Borne Blanche",48.409683,3.245797,0,0,OIF:SA:61:491,Europe/Paris,,OIF, +OIF:SP:61:492,1,"Delort",48.559848,3.306449,0,0,OIF:SA:61:492,Europe/Paris,,OIF, +OIF:SP:61:493,1,"Tassigny",48.558399,3.307708,0,0,OIF:SA:61:493,Europe/Paris,,OIF, +OIF:SP:61:494,1,"Paraclet",48.554442,3.286847,0,0,OIF:SA:61:494,Europe/Paris,,OIF, +OIF:SP:61:496,1,"Vimpelles",48.439876,3.167653,0,0,OIF:SA:61:496,Europe/Paris,,OIF, +OIF:SP:61:5,1,"Bourg",48.679278,3.357937,0,0,OIF:SA:61:5,Europe/Paris,,OIF, +OIF:SP:61:50,1,"Abribus",48.736334,3.427564,0,0,OIF:SA:61:50,Europe/Paris,,OIF, +OIF:SP:61:51,1,"Brantilly",48.670856,3.391622,0,0,OIF:SA:61:51,Europe/Paris,,OIF, +OIF:SP:61:518,1,"Chanteloup",48.623072,3.420921,0,0,OIF:SA:61:518,Europe/Paris,,OIF, +OIF:SP:61:52,1,"Champcouelle",48.668633,3.40595,0,0,OIF:SA:61:52,Europe/Paris,,OIF, +OIF:SP:61:520,1,"La Fontaine",48.691405,3.079873,0,0,OIF:SA:61:520,Europe/Paris,,OIF, +OIF:SP:61:53,1,"Les Tournelles",48.647604,3.408218,0,0,OIF:SA:61:53,Europe/Paris,,OIF, +OIF:SP:61:54,1,"Bourg",48.649645,3.406197,0,0,OIF:SA:61:54,Europe/Paris,,OIF, +OIF:SP:61:55,1,"Lotissement",48.64484,3.404647,0,0,OIF:SA:61:55,Europe/Paris,,OIF, +OIF:SP:61:555,1,"Place du Châtel",48.562189,3.288289,0,0,OIF:SA:61:555,Europe/Paris,,OIF, +OIF:SP:61:569,1,"Port Montain",48.460394,3.336695,0,0,OIF:SA:61:569,Europe/Paris,,OIF, +OIF:SP:61:570,1,"Foyer",48.482499,3.293694,0,0,OIF:SA:61:570,Europe/Paris,,OIF, +OIF:SP:61:572,1,"Théâtre",48.492537,3.502442,0,0,OIF:SA:61:572,Europe/Paris,,OIF, +OIF:SP:61:573,1,"Gare SNCF",48.738596,2.759697,0,0,OIF:SA:8711621,Europe/Paris,,OIF, +OIF:SP:61:58,1,"Voulton",48.616697,3.332942,0,0,OIF:SA:61:58,Europe/Paris,,OIF, +OIF:SP:61:59,1,"Gimbrois",48.612785,3.31588,0,0,OIF:SA:61:59,Europe/Paris,,OIF, +OIF:SP:61:590,1,"Clinique",48.562375,3.315164,0,0,OIF:SA:61:590,Europe/Paris,,OIF, +OIF:SP:61:592,1,"Lotissement",48.567123,3.318219,0,0,OIF:SA:61:592,Europe/Paris,,OIF, +OIF:SP:61:593,1,"École",48.566643,3.322965,0,0,OIF:SA:61:593,Europe/Paris,,OIF, +OIF:SP:61:594,1,"Table Ronde",48.56294,3.294397,0,0,OIF:SA:61:594,Europe/Paris,,OIF, +OIF:SP:61:595,1,"Cutrelles",48.460347,3.162612,0,0,OIF:SA:61:595,Europe/Paris,,OIF, +OIF:SP:61:596,1,"Saint-Augustin",48.478881,3.123826,0,0,OIF:SA:61:596,Europe/Paris,,OIF, +OIF:SP:61:6,1,"Beauchéry",48.615496,3.403761,0,0,OIF:SA:61:6,Europe/Paris,,OIF, +OIF:SP:61:603,1,"Les Roses",48.50534,3.1451,0,0,OIF:SA:61:603,Europe/Paris,,OIF, +OIF:SP:61:604,1,"Les Bordes",48.62862,3.210819,0,0,OIF:SA:61:604,Europe/Paris,,OIF, +OIF:SP:61:61,1,"Saint-Martin des Champs",48.597691,3.33411,0,0,OIF:SA:61:61,Europe/Paris,,OIF, +OIF:SP:61:614,1,"Blunay",48.503182,3.386368,0,0,OIF:SA:61:470,Europe/Paris,,OIF, +OIF:SP:61:615,1,"Maulny",48.507793,3.39259,0,0,OIF:SA:61:102,Europe/Paris,,OIF, +OIF:SP:61:616,1,"Église",48.482648,3.346033,0,0,OIF:SA:61:616,Europe/Paris,,OIF, +OIF:SP:61:617,1,"Église",48.482594,3.345991,0,0,OIF:SA:61:616,Europe/Paris,,OIF, +OIF:SP:61:619,1,"Port Montain",48.460592,3.337794,0,0,OIF:SA:61:569,Europe/Paris,,OIF, +OIF:SP:61:62,1,"Bannost",48.664994,3.175699,0,0,OIF:SA:61:62,Europe/Paris,,OIF, +OIF:SP:61:620,1,"Gare Flamboin",48.47348,3.295043,0,0,OIF:SA:61:620,Europe/Paris,,OIF, +OIF:SP:61:621,1,"Gare Flamboin",48.473534,3.29499,0,0,OIF:SA:61:620,Europe/Paris,,OIF, +OIF:SP:61:622,1,"Foyer",48.481897,3.293696,0,0,OIF:SA:61:570,Europe/Paris,,OIF, +OIF:SP:61:623,1,"Église",48.536795,3.348488,0,0,OIF:SA:61:271,Europe/Paris,,OIF, +OIF:SP:61:625,1,"Stèle",48.537093,3.353597,0,0,OIF:SA:61:625,Europe/Paris,,OIF, +OIF:SP:61:628,1,"Café Pressoir",48.511713,3.294432,0,0,OIF:SA:61:472,Europe/Paris,,OIF, +OIF:SP:61:629,1,"Puits Godier",48.506398,3.287867,0,0,OIF:SA:61:391,Europe/Paris,,OIF, +OIF:SP:61:63,1,"Place",48.701667,3.244545,0,0,OIF:SA:52:629,Europe/Paris,,OIF, +OIF:SP:61:631,1,"École",48.75972,3.222827,0,0,OIF:SA:61:631,Europe/Paris,,OIF, +OIF:SP:61:633,1,"Les Loges de Bailly",48.585482,3.01247,0,0,OIF:SA:61:633,Europe/Paris,,OIF, +OIF:SP:61:634,1,"Mairie Annexe",48.5798,2.99015,0,0,OIF:SA:52:2336,Europe/Paris,,OIF, +OIF:SP:61:635,1,"Place des Buttes",48.414809,3.23627,0,0,OIF:SA:61:635,Europe/Paris,,OIF, +OIF:SP:61:636,1,"Courtevroust",48.574713,3.141705,0,0,OIF:SA:61:636,Europe/Paris,,OIF, +OIF:SP:61:637,1,"Belleville",48.539808,3.11975,0,0,OIF:SA:61:637,Europe/Paris,,OIF, +OIF:SP:61:638,1,"Marais",48.558887,3.29756,0,0,OIF:SA:61:638,Europe/Paris,,OIF, +OIF:SP:61:64,1,"Fortail",48.699187,3.26866,0,0,OIF:SA:61:64,Europe/Paris,,OIF, +OIF:SP:61:640,1,"Gare SNCF Quai 3",48.555897,3.302583,0,0,OIF:SA:8711616,Europe/Paris,,OIF, +OIF:SP:61:641,1,"Leudon",48.537539,3.143095,0,0,OIF:SA:61:641,Europe/Paris,,OIF, +OIF:SP:61:642,1,"Ferme Hennepont",48.541304,3.297344,0,0,OIF:SA:61:642,Europe/Paris,,OIF, +OIF:SP:61:645,1,"Meigneux",48.511534,3.106038,0,0,OIF:SA:61:645,Europe/Paris,,OIF, +OIF:SP:61:647,1,"Villegagnon",48.664994,3.175699,0,0,OIF:SA:61:647,Europe/Paris,,OIF, +OIF:SP:61:648,1,"Pavé du Roy",48.55922,3.15268,0,0,OIF:SA:61:648,Europe/Paris,,OIF, +OIF:SP:61:649,1,"Haut",48.487462,3.292648,0,0,OIF:SA:61:649,Europe/Paris,,OIF, +OIF:SP:61:65,1,"Bezalles",48.678118,3.242885,0,0,OIF:SA:61:65,Europe/Paris,,OIF, +OIF:SP:61:650,1,"Mairie",48.592382,3.1735,0,0,OIF:SA:61:650,Europe/Paris,,OIF, +OIF:SP:61:651,1,"Église",48.582647,3.192177,0,0,OIF:SA:61:651,Europe/Paris,,OIF, +OIF:SP:61:652,1,"Maisoncelles",48.714653,3.425466,0,0,OIF:SA:61:652,Europe/Paris,,OIF, +OIF:SP:61:654,1,"Fontains",48.526604,3.002003,0,0,OIF:SA:61:654,Europe/Paris,,OIF, +OIF:SP:61:656,1,"Libération",48.561892,3.309385,0,0,OIF:SA:61:656,Europe/Paris,,OIF, +OIF:SP:61:657,1,"Gare SNCF Place de l'Ermitage",48.526548,2.653925,0,0,OIF:SA:8768200,Europe/Paris,,OIF, +OIF:SP:61:658,1,"CES Barthélémy Quai 3",48.551598,3.015863,0,0,OIF:SA:61:658,Europe/Paris,,OIF, +OIF:SP:61:659,1,"Maximilien Michelin",48.558696,3.293317,0,0,OIF:SA:61:659,Europe/Paris,,OIF, +OIF:SP:61:66,1,"Beauregard",48.661809,3.246713,0,0,OIF:SA:61:66,Europe/Paris,,OIF, +OIF:SP:61:661,1,"La Queue aux Bois",48.592942,3.473136,0,0,OIF:SA:61:661,Europe/Paris,,OIF, +OIF:SP:61:662,1,"Moulin à Vent",48.619591,3.413187,0,0,OIF:SA:61:662,Europe/Paris,,OIF, +OIF:SP:61:663,1,"Désiré Laurent",48.563962,3.300267,0,0,OIF:SA:61:663,Europe/Paris,,OIF, +OIF:SP:61:665,1,"Tacot",48.555614,3.005231,0,0,OIF:SA:61:665,Europe/Paris,,OIF, +OIF:SP:61:666,1,"ZAC des Roches",48.554626,3.003539,0,0,OIF:SA:61:666,Europe/Paris,,OIF, +OIF:SP:61:667,1,"Mairie",48.554729,3.013859,0,0,OIF:SA:61:667,Europe/Paris,,OIF, +OIF:SP:61:668,1,"Centre Municipal Aragon",48.557886,3.013643,0,0,OIF:SA:61:668,Europe/Paris,,OIF, +OIF:SP:61:669,1,"Fontaines",48.558578,3.010537,0,0,OIF:SA:61:669,Europe/Paris,,OIF, +OIF:SP:61:67,1,"Mairie",48.684256,3.226538,0,0,OIF:SA:61:67,Europe/Paris,,OIF, +OIF:SP:61:670,1,"Maison de Retraite",48.557067,3.016828,0,0,OIF:SA:61:670,Europe/Paris,,OIF, +OIF:SP:61:671,1,"Verdun",48.557772,3.02392,0,0,OIF:SA:61:671,Europe/Paris,,OIF, +OIF:SP:61:672,1,"République",48.554628,3.015808,0,0,OIF:SA:61:672,Europe/Paris,,OIF, +OIF:SP:61:673,1,"Jean Bouin",48.550369,3.018569,0,0,OIF:SA:61:673,Europe/Paris,,OIF, +OIF:SP:61:674,1,"Saint-Exupéry",48.550955,3.019836,0,0,OIF:SA:61:674,Europe/Paris,,OIF, +OIF:SP:61:675,1,"Estienne d'Orves",48.552932,3.022976,0,0,OIF:SA:61:675,Europe/Paris,,OIF, +OIF:SP:61:676,1,"Cimetière",48.554442,3.024607,0,0,OIF:SA:61:676,Europe/Paris,,OIF, +OIF:SP:61:677,1,"ZA Moulin Saint-Antoine",48.556458,3.024282,0,0,OIF:SA:61:677,Europe/Paris,,OIF, +OIF:SP:61:678,1,"ZI Commune de Paris",48.559185,3.032958,0,0,OIF:SA:61:678,Europe/Paris,,OIF, +OIF:SP:61:679,1,"ZI René Cassin",48.561009,3.034635,0,0,OIF:SA:61:679,Europe/Paris,,OIF, +OIF:SP:61:680,1,"Général de Gaulle",48.560494,3.016507,0,0,OIF:SA:61:680,Europe/Paris,,OIF, +OIF:SP:61:681,1,"Place du 8/05/45",48.517976,3.243542,0,0,OIF:SA:61:681,Europe/Paris,,OIF, +OIF:SP:61:682,1,"Val Bréon - Conforama",48.726293,2.824689,0,0,OIF:SA:61:682,Europe/Paris,,OIF, +OIF:SP:61:683,1,"Val Bréon - Cempac",48.726272,2.829702,0,0,OIF:SA:61:683,Europe/Paris,,OIF, +OIF:SP:61:684,1,"Val Bréon - Ikéa",48.725494,2.839599,0,0,OIF:SA:61:684,Europe/Paris,,OIF, +OIF:SP:61:689,1,"Centre",48.452502,3.062149,0,0,OIF:SA:61:689,Europe/Paris,,OIF, +OIF:SP:61:690,1,"Église",48.452516,3.061379,0,0,OIF:SA:61:690,Europe/Paris,,OIF, +OIF:SP:61:7,1,"Bonsac",48.599613,3.431032,0,0,OIF:SA:61:7,Europe/Paris,,OIF, +OIF:SP:61:70,1,"Combles",48.623089,3.215961,0,0,OIF:SA:61:70,Europe/Paris,,OIF, +OIF:SP:61:704,1,"École",48.731189,3.560721,0,0,OIF:SA:61:704,Europe/Paris,,OIF, +OIF:SP:61:705,1,"Boôlot",48.610393,3.364789,0,0,OIF:SA:61:705,Europe/Paris,,OIF, +OIF:SP:61:706,1,"Quartier de Lattre",48.533192,3.372189,0,0,OIF:SA:61:706,Europe/Paris,,OIF, +OIF:SP:61:707,1,"La Poste",48.536752,3.35462,0,0,OIF:SA:61:707,Europe/Paris,,OIF, +OIF:SP:61:708,1,"Place",48.468086,3.180608,0,0,OIF:SA:61:708,Europe/Paris,,OIF, +OIF:SP:61:71,1,"Église",48.615972,3.194826,0,0,OIF:SA:52:1273,Europe/Paris,,OIF, +OIF:SP:61:710,1,"Le Mez de la Madeleine",48.544186,3.263928,0,0,OIF:SA:61:710,Europe/Paris,,OIF, +OIF:SP:61:711,1,"CES Barthélémy Quai 4",48.551698,3.015729,0,0,OIF:SA:61:711,Europe/Paris,,OIF, +OIF:SP:61:712,1,"Avenue des États Unis",48.780945,3.303191,0,0,OIF:SA:61:712,Europe/Paris,,OIF, +OIF:SP:61:713,1,"Callagum",48.789798,3.122989,0,0,OIF:SA:52:14734,Europe/Paris,,OIF, +OIF:SP:61:714,1,"Gare SNCF Quai 4",48.555914,3.302732,0,0,OIF:SA:8711616,Europe/Paris,,OIF, +OIF:SP:61:715,1,"Gendarmerie",48.473651,3.134104,0,0,OIF:SA:61:715,Europe/Paris,,OIF, +OIF:SP:61:718,1,"Mairie",48.608319,3.016643,0,0,OIF:SA:52:1425,Europe/Paris,,OIF, +OIF:SP:61:719,1,"Collège",48.551977,3.015665,0,0,OIF:SA:61:719,Europe/Paris,,OIF, +OIF:SP:61:720,1,"Ville Haute Quai 3",48.56122,3.280226,0,0,OIF:SA:61:45,Europe/Paris,,OIF, +OIF:SP:61:721,1,"Couperdrix",48.660324,3.344755,0,0,OIF:SA:61:721,Europe/Paris,,OIF, +OIF:SP:61:722,1,"Puits Jolly",48.562329,3.453385,0,0,OIF:SA:61:722,Europe/Paris,,OIF, +OIF:SP:61:723,1,"La Queue aux Bois",48.600704,3.434634,0,0,OIF:SA:61:723,Europe/Paris,,OIF, +OIF:SP:61:724,1,"Abri",48.584794,2.776996,0,0,OIF:SA:52:2252,Europe/Paris,,OIF, +OIF:SP:61:725,1,"Lavoir",48.647157,2.962005,0,0,OIF:SA:52:1692,Europe/Paris,,OIF, +OIF:SP:61:726,1,"École",48.631426,2.887688,0,0,OIF:SA:61:726,Europe/Paris,,OIF, +OIF:SP:61:728,1,"CES Barthélémy Quai 2",48.551597,3.015944,0,0,OIF:SA:61:728,Europe/Paris,,OIF, +OIF:SP:61:729,1,"La Bouloye",48.534394,3.044472,0,0,OIF:SA:61:729,Europe/Paris,,OIF, +OIF:SP:61:73,1,"Les Chapelles Hautes",48.642651,3.171133,0,0,OIF:SA:61:73,Europe/Paris,,OIF, +OIF:SP:61:730,1,"La Bouloye",48.534377,3.044377,0,0,OIF:SA:61:729,Europe/Paris,,OIF, +OIF:SP:61:731,1,"Église",48.470273,3.089964,0,0,OIF:SA:61:731,Europe/Paris,,OIF, +OIF:SP:61:735,1,"Pecqueux",48.626774,2.859134,0,0,OIF:SA:52:478,Europe/Paris,,OIF, +OIF:SP:61:736,1,"Granvillé",48.630505,2.918747,0,0,OIF:SA:52:14592,Europe/Paris,,OIF, +OIF:SP:61:737,1,"Les Chaises",48.483271,3.357229,0,0,OIF:SA:61:737,Europe/Paris,,OIF, +OIF:SP:61:738,1,"Lotissement",48.55564,2.92238,0,0,OIF:SA:61:147,Europe/Paris,,OIF, +OIF:SP:61:739,1,"La Fermeté",48.621336,2.948922,0,0,OIF:SA:52:4263,Europe/Paris,,OIF, +OIF:SP:61:740,1,"Place",48.584573,2.806437,0,0,OIF:SA:52:970,Europe/Paris,,OIF, +OIF:SP:61:741,1,"Station de Covoiturage",48.734208,2.98527,0,0,OIF:SA:52:14956,Europe/Paris,,OIF, +OIF:SP:61:742,1,"Gare SNCF",48.415276,2.726409,0,0,OIF:SA:8768221,Europe/Paris,,OIF, +OIF:SP:61:743,1,"Viaduc",48.521489,3.243847,0,0,OIF:SA:61:169,Europe/Paris,,OIF, +OIF:SP:61:744,1,"Les Frelons",48.498591,3.23072,0,0,OIF:SA:61:196,Europe/Paris,,OIF, +OIF:SP:61:745,1,"Haussonville",48.477061,3.13106,0,0,OIF:SA:61:158,Europe/Paris,,OIF, +OIF:SP:61:746,1,"La Poste",48.537263,3.353696,0,0,OIF:SA:61:707,Europe/Paris,,OIF, +OIF:SP:61:747,1,"Quartier de Lattre",48.533174,3.372161,0,0,OIF:SA:61:706,Europe/Paris,,OIF, +OIF:SP:61:75,1,"Parc",48.612314,3.197165,0,0,OIF:SA:61:75,Europe/Paris,,OIF, +OIF:SP:61:751,1,"Le Jarrier",48.556154,2.934587,0,0,OIF:SA:61:135,Europe/Paris,,OIF, +OIF:SP:61:752,1,"Dromigny",48.553877,3.293337,0,0,OIF:SA:61:227,Europe/Paris,,OIF, +OIF:SP:61:753,1,"Général de Gaulle",48.559283,3.284159,0,0,OIF:SA:61:221,Europe/Paris,,OIF, +OIF:SP:61:754,1,"Libération",48.561793,3.30937,0,0,OIF:SA:61:656,Europe/Paris,,OIF, +OIF:SP:61:755,1,"Warnery",48.567122,3.293052,0,0,OIF:SA:61:240,Europe/Paris,,OIF, +OIF:SP:61:756,1,"Place du 29ème Dragon",48.565544,3.300283,0,0,OIF:SA:61:490,Europe/Paris,,OIF, +OIF:SP:61:757,1,"Fontaines",48.558243,3.010966,0,0,OIF:SA:61:669,Europe/Paris,,OIF, +OIF:SP:61:758,1,"Général de Gaulle",48.560502,3.016765,0,0,OIF:SA:61:680,Europe/Paris,,OIF, +OIF:SP:61:759,1,"Maison de Retraite",48.557256,3.016844,0,0,OIF:SA:61:670,Europe/Paris,,OIF, +OIF:SP:61:760,1,"Lycée H. Becquerel Nangibus",48.5507,3.007808,0,0,OIF:SA:61:117,Europe/Paris,,OIF, +OIF:SP:61:761,1,"Mairie Annexe",48.579764,2.990068,0,0,OIF:SA:52:2336,Europe/Paris,,OIF, +OIF:SP:61:762,1,"École",48.631453,2.887851,0,0,OIF:SA:61:726,Europe/Paris,,OIF, +OIF:SP:61:763,1,"Mairie",48.572607,2.858306,0,0,OIF:SA:52:681,Europe/Paris,,OIF, +OIF:SP:61:764,1,"Les Loges",48.620814,2.967953,0,0,OIF:SA:52:4265,Europe/Paris,,OIF, +OIF:SP:61:765,1,"Rue Saint-Martin",48.607149,2.969889,0,0,OIF:SA:52:14587,Europe/Paris,,OIF, +OIF:SP:61:766,1,"Abri",48.584678,2.776914,0,0,OIF:SA:52:2252,Europe/Paris,,OIF, +OIF:SP:61:767,1,"Église",48.577972,2.826984,0,0,OIF:SA:52:4673,Europe/Paris,,OIF, +OIF:SP:61:768,1,"Bonfruit",48.643034,2.911807,0,0,OIF:SA:52:474,Europe/Paris,,OIF, +OIF:SP:61:769,1,"Mairie",48.588092,3.10893,0,0,OIF:SA:61:105,Europe/Paris,,OIF, +OIF:SP:61:77,1,"Gare SNCF",48.807812,3.082302,0,0,OIF:SA:8711630,Europe/Paris,,OIF, +OIF:SP:61:770,1,"Roger Frisson",48.554968,3.178249,0,0,OIF:SA:61:274,Europe/Paris,,OIF, +OIF:SP:61:771,1,"Courtevroust",48.574713,3.141705,0,0,OIF:SA:61:636,Europe/Paris,,OIF, +OIF:SP:61:772,1,"Église",48.599468,3.105575,0,0,OIF:SA:61:119,Europe/Paris,,OIF, +OIF:SP:61:773,1,"Mairie",48.612854,3.116591,0,0,OIF:SA:61:122,Europe/Paris,,OIF, +OIF:SP:61:774,1,"Le Plessis Hainault",48.618276,3.114923,0,0,OIF:SA:61:121,Europe/Paris,,OIF, +OIF:SP:61:775,1,"Les Guilverts",48.609414,3.12554,0,0,OIF:SA:61:120,Europe/Paris,,OIF, +OIF:SP:61:776,1,"Église",48.593257,3.075791,0,0,OIF:SA:61:112,Europe/Paris,,OIF, +OIF:SP:61:777,1,"Le Sceau",48.605289,3.042738,0,0,OIF:SA:61:114,Europe/Paris,,OIF, +OIF:SP:61:778,1,"Mairie",48.627886,3.020275,0,0,OIF:SA:52:2280,Europe/Paris,,OIF, +OIF:SP:61:779,1,"Place de l'Église",48.512085,2.97094,0,0,OIF:SA:61:127,Europe/Paris,,OIF, +OIF:SP:61:78,1,"D204",48.696012,3.29147,0,0,OIF:SA:61:78,Europe/Paris,,OIF, +OIF:SP:61:780,1,"Fontains",48.526595,3.002016,0,0,OIF:SA:61:654,Europe/Paris,,OIF, +OIF:SP:61:781,1,"Mairie RN 19",48.606537,2.891152,0,0,OIF:SA:61:296,Europe/Paris,,OIF, +OIF:SP:61:782,1,"Bourg",48.549807,3.068987,0,0,OIF:SA:61:306,Europe/Paris,,OIF, +OIF:SP:61:783,1,"Place de la Mairie",48.73539,3.01181,0,0,OIF:SA:61:278,Europe/Paris,,OIF, +OIF:SP:61:784,1,"La Fontaine",48.691361,3.07971,0,0,OIF:SA:61:520,Europe/Paris,,OIF, +OIF:SP:61:785,1,"Église",48.664833,3.129841,0,0,OIF:SA:61:785,Europe/Paris,,OIF, +OIF:SP:61:786,1,"Église",48.616053,3.194759,0,0,OIF:SA:52:1273,Europe/Paris,,OIF, +OIF:SP:61:787,1,"Les Chaises",48.483287,3.357446,0,0,OIF:SA:61:737,Europe/Paris,,OIF, +OIF:SP:61:788,1,"Théâtre",48.492784,3.502028,0,0,OIF:SA:61:572,Europe/Paris,,OIF, +OIF:SP:61:789,1,"Maisoncelles",48.714653,3.425466,0,0,OIF:SA:61:652,Europe/Paris,,OIF, +OIF:SP:61:79,1,"Le Chanoy",48.574544,3.192667,0,0,OIF:SA:61:79,Europe/Paris,,OIF, +OIF:SP:61:790,1,"Abribus",48.736099,3.427736,0,0,OIF:SA:61:50,Europe/Paris,,OIF, +OIF:SP:61:791,1,"Rupéreux",48.636355,3.327893,0,0,OIF:SA:61:46,Europe/Paris,,OIF, +OIF:SP:61:792,1,"Le Chanoy",48.698993,3.35152,0,0,OIF:SA:61:13,Europe/Paris,,OIF, +OIF:SP:61:793,1,"Cerneux",48.693402,3.345152,0,0,OIF:SA:61:12,Europe/Paris,,OIF, +OIF:SP:61:794,1,"Champcouelle",48.668448,3.405566,0,0,OIF:SA:61:52,Europe/Paris,,OIF, +OIF:SP:61:795,1,"Brantilly",48.670787,3.391362,0,0,OIF:SA:61:51,Europe/Paris,,OIF, +OIF:SP:61:796,1,"Coeffrin",48.649057,3.357643,0,0,OIF:SA:61:2,Europe/Paris,,OIF, +OIF:SP:61:797,1,"Corberon",48.675493,3.329398,0,0,OIF:SA:61:28,Europe/Paris,,OIF, +OIF:SP:61:798,1,"Gimbrois",48.612802,3.315975,0,0,OIF:SA:61:59,Europe/Paris,,OIF, +OIF:SP:61:799,1,"Saint-Martin des Champs",48.597693,3.333934,0,0,OIF:SA:61:61,Europe/Paris,,OIF, +OIF:SP:61:8,1,"Chennetron",48.587614,3.425861,0,0,OIF:SA:61:8,Europe/Paris,,OIF, +OIF:SP:61:800,1,"Les Chaises",48.548815,3.453447,0,0,OIF:SA:61:16,Europe/Paris,,OIF, +OIF:SP:61:801,1,"Puits Froux",48.5587,3.433817,0,0,OIF:SA:61:17,Europe/Paris,,OIF, +OIF:SP:61:802,1,"Puits Jolly",48.562294,3.453248,0,0,OIF:SA:61:722,Europe/Paris,,OIF, +OIF:SP:61:803,1,"École",48.576724,3.387387,0,0,OIF:SA:61:23,Europe/Paris,,OIF, +OIF:SP:61:804,1,"Plessis Pigy",48.562597,3.399848,0,0,OIF:SA:61:26,Europe/Paris,,OIF, +OIF:SP:61:805,1,"Richebourg",48.570278,3.370067,0,0,OIF:SA:61:27,Europe/Paris,,OIF, +OIF:SP:61:806,1,"Cormeron",48.587384,3.368224,0,0,OIF:SA:61:22,Europe/Paris,,OIF, +OIF:SP:61:807,1,"Rue de la Gare",48.580182,3.386779,0,0,OIF:SA:61:21,Europe/Paris,,OIF, +OIF:SP:61:808,1,"Louan",48.625443,3.479527,0,0,OIF:SA:61:35,Europe/Paris,,OIF, +OIF:SP:61:809,1,"Villegruis",48.603286,3.467872,0,0,OIF:SA:61:36,Europe/Paris,,OIF, +OIF:SP:61:81,1,"Mare du Plessis",48.596444,3.172467,0,0,OIF:SA:61:81,Europe/Paris,,OIF, +OIF:SP:61:810,1,"Fontaine Montaiguillon",48.616434,3.515356,0,0,OIF:SA:61:33,Europe/Paris,,OIF, +OIF:SP:61:811,1,"Plessis la Tour",48.612125,3.405685,0,0,OIF:SA:61:10,Europe/Paris,,OIF, +OIF:SP:61:812,1,"Beauchéry",48.615479,3.403652,0,0,OIF:SA:61:6,Europe/Paris,,OIF, +OIF:SP:61:813,1,"La Pistolette",48.581954,3.425499,0,0,OIF:SA:61:813,Europe/Paris,,OIF, +OIF:SP:61:814,1,"Chennetron",48.587588,3.425739,0,0,OIF:SA:61:8,Europe/Paris,,OIF, +OIF:SP:61:815,1,"Gondelot",48.673164,3.344407,0,0,OIF:SA:61:4,Europe/Paris,,OIF, +OIF:SP:61:816,1,"Couperdrix",48.660243,3.344686,0,0,OIF:SA:61:721,Europe/Paris,,OIF, +OIF:SP:61:817,1,"Ecoublay",48.657526,3.341756,0,0,OIF:SA:61:3,Europe/Paris,,OIF, +OIF:SP:61:818,1,"Bourg",48.679296,3.357896,0,0,OIF:SA:61:5,Europe/Paris,,OIF, +OIF:SP:61:819,1,"Lotissement",48.644885,3.404662,0,0,OIF:SA:61:55,Europe/Paris,,OIF, +OIF:SP:61:82,1,"Église",48.664905,3.129828,0,0,OIF:SA:61:785,Europe/Paris,,OIF, +OIF:SP:61:822,1,"Voulton",48.616867,3.333054,0,0,OIF:SA:61:58,Europe/Paris,,OIF, +OIF:SP:61:823,1,"Fouchères",48.551848,3.470237,0,0,OIF:SA:61:15,Europe/Paris,,OIF, +OIF:SP:61:824,1,"Châtenay",48.419684,3.096731,0,0,OIF:SA:61:154,Europe/Paris,,OIF, +OIF:SP:61:825,1,"Le Plessis",48.417195,3.073842,0,0,OIF:SA:61:153,Europe/Paris,,OIF, +OIF:SP:61:826,1,"Bourg",48.418009,2.959075,0,0,OIF:SA:12:3081,Europe/Paris,,OIF, +OIF:SP:61:827,1,"Place",48.47787,3.181645,0,0,OIF:SA:61:193,Europe/Paris,,OIF, +OIF:SP:61:828,1,"Vimpelles",48.440044,3.168075,0,0,OIF:SA:61:496,Europe/Paris,,OIF, +OIF:SP:61:829,1,"Volangis",48.445622,3.185232,0,0,OIF:SA:61:205,Europe/Paris,,OIF, +OIF:SP:61:830,1,"Carrefour Gratteloup",48.43994,3.11197,0,0,OIF:SA:61:397,Europe/Paris,,OIF, +OIF:SP:61:831,1,"Rond-Point",48.470137,2.993861,0,0,OIF:SA:61:129,Europe/Paris,,OIF, +OIF:SP:61:832,1,"Ravin de Rumini",48.47191,2.998345,0,0,OIF:SA:61:157,Europe/Paris,,OIF, +OIF:SP:61:833,1,"Libération",48.463309,2.945934,0,0,OIF:SA:61:131,Europe/Paris,,OIF, +OIF:SP:61:834,1,"Echou",48.451029,2.91718,0,0,OIF:SA:61:160,Europe/Paris,,OIF, +OIF:SP:61:835,1,"Lycée Fontaineroux",48.439057,2.800549,0,0,OIF:SA:61:132,Europe/Paris,,OIF, +OIF:SP:61:836,1,"Rue de la Poste",48.549402,2.898127,0,0,OIF:SA:61:321,Europe/Paris,,OIF, +OIF:SP:61:837,1,"Mairie",48.55802,2.915527,0,0,OIF:SA:61:148,Europe/Paris,,OIF, +OIF:SP:61:838,1,"Valjouan",48.503993,3.043857,0,0,OIF:SA:61:199,Europe/Paris,,OIF, +OIF:SP:61:839,1,"Leudon",48.537584,3.143082,0,0,OIF:SA:61:641,Europe/Paris,,OIF, +OIF:SP:61:84,1,"Le Petit Paris",48.645325,3.120563,0,0,OIF:SA:61:84,Europe/Paris,,OIF, +OIF:SP:61:840,1,"Mare du Plessis",48.596462,3.172468,0,0,OIF:SA:61:81,Europe/Paris,,OIF, +OIF:SP:61:841,1,"Le Petit Paris",48.645198,3.120656,0,0,OIF:SA:61:84,Europe/Paris,,OIF, +OIF:SP:61:842,1,"Mairie",48.656256,3.078598,0,0,OIF:SA:52:14666,Europe/Paris,,OIF, +OIF:SP:61:847,1,"Gendarmerie",48.473786,3.134079,0,0,OIF:SA:61:715,Europe/Paris,,OIF, +OIF:SP:61:848,1,"Saint-Augustin",48.478915,3.124043,0,0,OIF:SA:61:596,Europe/Paris,,OIF, +OIF:SP:61:849,1,"Bescherelles",48.492573,3.110222,0,0,OIF:SA:61:394,Europe/Paris,,OIF, +OIF:SP:61:85,1,"Les Orbies",48.64011,3.116687,0,0,OIF:SA:61:85,Europe/Paris,,OIF, +OIF:SP:61:850,1,"Meigneux",48.51174,3.106244,0,0,OIF:SA:61:645,Europe/Paris,,OIF, +OIF:SP:61:851,1,"Le Villé",48.48635,3.148079,0,0,OIF:SA:61:173,Europe/Paris,,OIF, +OIF:SP:61:852,1,"Chalautre la Reposte",48.480769,3.092062,0,0,OIF:SA:61:164,Europe/Paris,,OIF, +OIF:SP:61:853,1,"EDF",48.472726,3.084577,0,0,OIF:SA:61:165,Europe/Paris,,OIF, +OIF:SP:61:854,1,"Église",48.470009,3.090419,0,0,OIF:SA:61:731,Europe/Paris,,OIF, +OIF:SP:61:855,1,"Ferme Hennepont",48.541206,3.297194,0,0,OIF:SA:61:642,Europe/Paris,,OIF, +OIF:SP:61:856,1,"Les Hauts de Rougements",48.536369,3.290566,0,0,OIF:SA:61:471,Europe/Paris,,OIF, +OIF:SP:61:857,1,"Centre",48.53952,3.28334,0,0,OIF:SA:61:181,Europe/Paris,,OIF, +OIF:SP:61:858,1,"Courton le Bas",48.533226,3.223069,0,0,OIF:SA:61:185,Europe/Paris,,OIF, +OIF:SP:61:859,1,"Courton le Haut",48.534096,3.232871,0,0,OIF:SA:61:186,Europe/Paris,,OIF, +OIF:SP:61:86,1,"Promenades",48.780427,3.303916,0,0,OIF:SA:52:2057,Europe/Paris,,OIF, +OIF:SP:61:860,1,"Carrouges",48.507798,3.196728,0,0,OIF:SA:61:191,Europe/Paris,,OIF, +OIF:SP:61:861,1,"Rue Grande",48.510468,3.196731,0,0,OIF:SA:61:190,Europe/Paris,,OIF, +OIF:SP:61:862,1,"École",48.510849,3.166158,0,0,OIF:SA:61:194,Europe/Paris,,OIF, +OIF:SP:61:863,1,"Les Roses",48.505415,3.144587,0,0,OIF:SA:61:603,Europe/Paris,,OIF, +OIF:SP:61:864,1,"Poste",48.48659,3.043499,0,0,OIF:SA:61:198,Europe/Paris,,OIF, +OIF:SP:61:865,1,"Stade",48.556091,2.952192,0,0,OIF:SA:61:475,Europe/Paris,,OIF, +OIF:SP:61:866,1,"Orvilliers",48.440511,3.046903,0,0,OIF:SA:61:177,Europe/Paris,,OIF, +OIF:SP:61:867,1,"Mortery",48.599031,3.259821,0,0,OIF:SA:61:867,Europe/Paris,,OIF, +OIF:SP:61:868,1,"Grand Fleigny",48.57666,3.288729,0,0,OIF:SA:61:868,Europe/Paris,,OIF, +OIF:SP:61:869,1,"Moulin des Prés",48.583234,3.282806,0,0,OIF:SA:61:869,Europe/Paris,,OIF, +OIF:SP:61:870,1,"Rouilllot",48.588903,3.285551,0,0,OIF:SA:61:870,Europe/Paris,,OIF, +OIF:SP:61:871,1,"Salle des Fêtes",48.583963,3.288266,0,0,OIF:SA:61:871,Europe/Paris,,OIF, +OIF:SP:61:872,1,"Abribus",48.621484,3.255676,0,0,OIF:SA:61:872,Europe/Paris,,OIF, +OIF:SP:61:873,1,"Villars",48.628275,3.245937,0,0,OIF:SA:61:873,Europe/Paris,,OIF, +OIF:SP:61:874,1,"Beauregard",48.661871,3.246809,0,0,OIF:SA:61:66,Europe/Paris,,OIF, +OIF:SP:61:875,1,"Mairie",48.684411,3.226188,0,0,OIF:SA:61:67,Europe/Paris,,OIF, +OIF:SP:61:876,1,"Villegagnon",48.665065,3.175768,0,0,OIF:SA:61:647,Europe/Paris,,OIF, +OIF:SP:61:877,1,"Vulaines",48.560534,3.217628,0,0,OIF:SA:61:101,Europe/Paris,,OIF, +OIF:SP:61:878,1,"Église",48.582719,3.192219,0,0,OIF:SA:61:651,Europe/Paris,,OIF, +OIF:SP:61:879,1,"Mairie",48.592536,3.17334,0,0,OIF:SA:61:650,Europe/Paris,,OIF, +OIF:SP:61:88,1,"Mortery",48.599136,3.260189,0,0,OIF:SA:61:867,Europe/Paris,,OIF, +OIF:SP:61:880,1,"Parc",48.612376,3.197207,0,0,OIF:SA:61:75,Europe/Paris,,OIF, +OIF:SP:61:881,1,"Les Tuileries",48.417429,3.010744,0,0,OIF:SA:61:252,Europe/Paris,,OIF, +OIF:SP:61:882,1,"Bibliothèque",48.420455,3.020697,0,0,OIF:SA:61:189,Europe/Paris,,OIF, +OIF:SP:61:883,1,"Stop Route de Provins",48.423419,3.021262,0,0,OIF:SA:61:253,Europe/Paris,,OIF, +OIF:SP:61:884,1,"Le Crayon",48.425948,3.016041,0,0,OIF:SA:61:249,Europe/Paris,,OIF, +OIF:SP:61:885,1,"Le Rôty",48.425346,3.008185,0,0,OIF:SA:61:250,Europe/Paris,,OIF, +OIF:SP:61:886,1,"Place Saint-Jean",48.539066,2.662408,0,0,OIF:SA:27:278,Europe/Paris,,OIF, +OIF:SP:61:887,1,"Route de Nangis",48.541373,2.679508,0,0,OIF:SA:52:3294,Europe/Paris,,OIF, +OIF:SP:61:888,1,"Courtry",48.543936,2.769814,0,0,OIF:SA:61:340,Europe/Paris,,OIF, +OIF:SP:61:889,1,"Château d'Eau",48.549638,2.893688,0,0,OIF:SA:52:992,Europe/Paris,,OIF, +OIF:SP:61:89,1,"Marolles",48.584899,3.244693,0,0,OIF:SA:61:89,Europe/Paris,,OIF, +OIF:SP:61:890,1,"Saint-Just / Clémenceau",48.534072,2.676888,0,0,OIF:SA:61:341,Europe/Paris,,OIF, +OIF:SP:61:891,1,"Châtillon",48.541102,2.808008,0,0,OIF:SA:61:318,Europe/Paris,,OIF, +OIF:SP:61:892,1,"La Borde Mairie",48.529789,2.83522,0,0,OIF:SA:61:319,Europe/Paris,,OIF, +OIF:SP:61:894,1,"Victor Hugo",48.556963,3.009988,0,0,OIF:SA:61:338,Europe/Paris,,OIF, +OIF:SP:61:895,1,"Gendarmerie",48.553574,3.006748,0,0,OIF:SA:61:336,Europe/Paris,,OIF, +OIF:SP:61:896,1,"Pavé du Roy",48.559082,3.15177,0,0,OIF:SA:61:648,Europe/Paris,,OIF, +OIF:SP:61:897,1,"RD 619",48.560287,3.219412,0,0,OIF:SA:61:479,Europe/Paris,,OIF, +OIF:SP:61:898,1,"Place",48.701441,3.244677,0,0,OIF:SA:52:629,Europe/Paris,,OIF, +OIF:SP:61:899,1,"Combles",48.623026,3.215946,0,0,OIF:SA:61:70,Europe/Paris,,OIF, +OIF:SP:61:9,1,"La Pistolette",48.581928,3.425377,0,0,OIF:SA:61:813,Europe/Paris,,OIF, +OIF:SP:61:90,1,"Mairie",48.656166,3.078597,0,0,OIF:SA:52:14666,Europe/Paris,,OIF, +OIF:SP:61:900,1,"Les Bordes",48.62863,3.210725,0,0,OIF:SA:61:604,Europe/Paris,,OIF, +OIF:SP:61:901,1,"Les Chapelles Hautes",48.642767,3.17123,0,0,OIF:SA:61:73,Europe/Paris,,OIF, +OIF:SP:61:902,1,"Bezalles",48.678181,3.242913,0,0,OIF:SA:61:65,Europe/Paris,,OIF, +OIF:SP:61:904,1,"Les Marêts",48.667823,3.315504,0,0,OIF:SA:61:29,Europe/Paris,,OIF, +OIF:SP:61:905,1,"Gare SNCF Rue de l'Industrie",48.526364,2.655413,0,0,OIF:SA:8768200,Europe/Paris,,OIF, +OIF:SP:61:906,1,"Bailly-Carrois Place",48.581153,2.989313,0,0,OIF:SA:61:906,Europe/Paris,,OIF, +OIF:SP:61:907,1,"Liberté",48.47978,3.197294,0,0,OIF:SA:61:179,Europe/Paris,,OIF, +OIF:SP:61:908,1,"Ville Haute Quai 2",48.561209,3.28051,0,0,OIF:SA:61:45,Europe/Paris,,OIF, +OIF:SP:61:909,1,"Ville Haute Quai 4",48.561195,3.280022,0,0,OIF:SA:61:45,Europe/Paris,,OIF, +OIF:SP:61:91,1,"Mélenfroy",48.648929,3.05691,0,0,OIF:SA:52:3980,Europe/Paris,,OIF, +OIF:SP:61:910,1,"Ville Haute Quai 5",48.561258,3.279929,0,0,OIF:SA:61:45,Europe/Paris,,OIF, +OIF:SP:61:911,1,"Gare SNCF Quai 8",48.380066,2.943859,0,0,OIF:SA:8768230,Europe/Paris,,OIF, +OIF:SP:61:912,1,"Gare Routière",48.560885,3.299479,0,0,OIF:SA:61:39,Europe/Paris,,OIF, +OIF:SP:61:913,1,"Fortail",48.699071,3.268563,0,0,OIF:SA:61:64,Europe/Paris,,OIF, +OIF:SP:61:94,1,"Grand Fleigny",48.576435,3.288684,0,0,OIF:SA:61:868,Europe/Paris,,OIF, +OIF:SP:61:95,1,"Moulin des Prés",48.583144,3.282818,0,0,OIF:SA:61:869,Europe/Paris,,OIF, +OIF:SP:61:96,1,"Rouilllot",48.588902,3.285632,0,0,OIF:SA:61:870,Europe/Paris,,OIF, +OIF:SP:61:97,1,"Salle des Fêtes",48.584078,3.28858,0,0,OIF:SA:61:871,Europe/Paris,,OIF, +OIF:SP:61:98,1,"Abribus",48.621421,3.255662,0,0,OIF:SA:61:872,Europe/Paris,,OIF, +OIF:SP:61:99,1,"Villars",48.628167,3.245895,0,0,OIF:SA:61:873,Europe/Paris,,OIF, +OIF:SP:62:30010,1,"Abreuvoir",48.746135,2.270838,0,0,OIF:SA:62:30010,Europe/Paris,,OIF, +OIF:SP:62:30011,1,"Abreuvoir",48.746081,2.270866,0,0,OIF:SA:62:30010,Europe/Paris,,OIF, +OIF:SP:62:30020,1,"Anatole France",48.776445,2.274349,0,0,OIF:SA:62:30020,Europe/Paris,,OIF, +OIF:SP:62:30021,1,"Anatole France",48.776418,2.274172,0,0,OIF:SA:62:30020,Europe/Paris,,OIF, +OIF:SP:62:30030,1,"André Malraux",48.736218,2.311535,0,0,OIF:SA:62:30030,Europe/Paris,,OIF, +OIF:SP:62:30040,1,"Anne Frank",48.743078,2.287572,0,0,OIF:SA:62:30040,Europe/Paris,,OIF, +OIF:SP:62:30041,1,"Anne Frank",48.742997,2.287871,0,0,OIF:SA:62:30040,Europe/Paris,,OIF, +OIF:SP:62:30060,1,"Antony RER",48.755442,2.301535,0,0,OIF:SA:8775875,Europe/Paris,,OIF, +OIF:SP:62:30061,1,"Antony RER",48.755442,2.301548,0,0,OIF:SA:8775875,Europe/Paris,,OIF, +OIF:SP:62:30062,1,"Antony RER",48.753832,2.299986,0,0,OIF:SA:8775875,Europe/Paris,,OIF, +OIF:SP:62:30063,1,"Antony RER",48.755415,2.301059,0,0,OIF:SA:8775875,Europe/Paris,,OIF, +OIF:SP:62:30070,1,"Arago",48.736164,2.310421,0,0,OIF:SA:62:30070,Europe/Paris,,OIF, +OIF:SP:62:30080,1,"Arboretum",48.773412,2.267785,0,0,OIF:SA:62:30080,Europe/Paris,,OIF, +OIF:SP:62:30090,1,"Aristide Briand",48.786391,2.31887,0,0,OIF:SA:62:30090,Europe/Paris,,OIF, +OIF:SP:62:30100,1,"Armand Guillebaud",48.749501,2.305317,0,0,OIF:SA:62:30100,Europe/Paris,,OIF, +OIF:SP:62:30120,1,"Aubépine",48.743391,2.311015,0,0,OIF:SA:59:5244895,Europe/Paris,,OIF, +OIF:SP:62:30121,1,"Aubépine",48.743418,2.311206,0,0,OIF:SA:59:5244895,Europe/Paris,,OIF, +OIF:SP:62:30130,1,"Avenue Lombart",48.784228,2.294116,0,0,OIF:SA:59:5067473,Europe/Paris,,OIF, +OIF:SP:62:30140,1,"Belvédère",48.766335,2.261784,0,0,OIF:SA:62:30140,Europe/Paris,,OIF, +OIF:SP:62:30141,1,"Belvédère",48.766137,2.261037,0,0,OIF:SA:62:30140,Europe/Paris,,OIF, +OIF:SP:62:30162,1,"Pascal",48.743077,2.317797,0,0,OIF:SA:62:30162,Europe/Paris,,OIF, +OIF:SP:62:30163,1,"Pascal",48.742718,2.318069,0,0,OIF:SA:62:30162,Europe/Paris,,OIF, +OIF:SP:62:30180,1,"Bois de la Garenne",48.785982,2.261171,0,0,OIF:SA:62:30180,Europe/Paris,,OIF, +OIF:SP:62:30181,1,"Bois de la Garenne",48.78609,2.261185,0,0,OIF:SA:62:30180,Europe/Paris,,OIF, +OIF:SP:62:30201,1,"Bon Puits",48.736194,2.327434,0,0,OIF:SA:62:30201,Europe/Paris,,OIF, +OIF:SP:62:30210,1,"Bourg-la-Reine RER",48.780611,2.311201,0,0,OIF:SA:8775869,Europe/Paris,,OIF, +OIF:SP:62:30211,1,"Bourg-la-Reine RER",48.779641,2.313418,0,0,OIF:SA:8775869,Europe/Paris,,OIF, +OIF:SP:62:30220,1,"Bourrelier",48.746694,2.274181,0,0,OIF:SA:62:30220,Europe/Paris,,OIF, +OIF:SP:62:30221,1,"Bourrelier",48.746748,2.274507,0,0,OIF:SA:62:30220,Europe/Paris,,OIF, +OIF:SP:62:30230,1,"Bourrelier - Crèche",48.748357,2.274152,0,0,OIF:SA:62:30220,Europe/Paris,,OIF, +OIF:SP:62:30231,1,"Bourrelier - Crèche",48.749084,2.273893,0,0,OIF:SA:62:30220,Europe/Paris,,OIF, +OIF:SP:62:30240,1,"Bua",48.749885,2.274707,0,0,OIF:SA:62:30240,Europe/Paris,,OIF, +OIF:SP:62:30241,1,"Bua",48.750011,2.275509,0,0,OIF:SA:62:30240,Europe/Paris,,OIF, +OIF:SP:62:30260,1,"Camberwell",48.778735,2.291727,0,0,OIF:SA:62:30260,Europe/Paris,,OIF, +OIF:SP:62:30290,1,"Carreau - Garnier",48.780163,2.255481,0,0,OIF:SA:62:30290,Europe/Paris,,OIF, +OIF:SP:62:30291,1,"Carreau - Garnier",48.779138,2.255034,0,0,OIF:SA:62:30290,Europe/Paris,,OIF, +OIF:SP:62:30320,1,"Carrefour du 19 Mars 1962",48.761942,2.282007,0,0,OIF:SA:59:5121043,Europe/Paris,,OIF, +OIF:SP:62:30321,1,"Carrefour du 19 Mars 1962",48.762167,2.282456,0,0,OIF:SA:59:5121043,Europe/Paris,,OIF, +OIF:SP:62:30330,1,"Cauchy",48.775364,2.288289,0,0,OIF:SA:62:30330,Europe/Paris,,OIF, +OIF:SP:62:30360,1,"Lionel Terray",48.734997,2.287457,0,0,OIF:SA:59:5244890,Europe/Paris,,OIF, +OIF:SP:62:30380,1,"Champagne",48.735758,2.30504,0,0,OIF:SA:62:30380,Europe/Paris,,OIF, +OIF:SP:62:30381,1,"Champagne",48.73557,2.305462,0,0,OIF:SA:62:30380,Europe/Paris,,OIF, +OIF:SP:62:30390,1,"Château",48.7745,2.314821,0,0,OIF:SA:62:30390,Europe/Paris,,OIF, +OIF:SP:62:30400,1,"Château d'Eau",48.773581,2.250868,0,0,OIF:SA:62:30400,Europe/Paris,,OIF, +OIF:SP:62:30401,1,"Château d'Eau",48.772996,2.250597,0,0,OIF:SA:62:30400,Europe/Paris,,OIF, +OIF:SP:62:30420,1,"Chateaubriand",48.774833,2.26936,0,0,OIF:SA:62:30420,Europe/Paris,,OIF, +OIF:SP:62:30421,1,"Chateaubriand",48.77486,2.268952,0,0,OIF:SA:62:30420,Europe/Paris,,OIF, +OIF:SP:62:30430,1,"Étang Colbert",48.78572,2.272937,0,0,OIF:SA:62:30430,Europe/Paris,,OIF, +OIF:SP:62:30431,1,"Étang Colbert",48.785603,2.272869,0,0,OIF:SA:62:30430,Europe/Paris,,OIF, +OIF:SP:62:30440,1,"Chemin Potier",48.738829,2.293895,0,0,OIF:SA:62:30440,Europe/Paris,,OIF, +OIF:SP:62:30441,1,"Chemin Potier",48.738721,2.293338,0,0,OIF:SA:62:30440,Europe/Paris,,OIF, +OIF:SP:62:30450,1,"Chéneaux",48.776972,2.286615,0,0,OIF:SA:62:30450,Europe/Paris,,OIF, +OIF:SP:62:30480,1,"Cimetière Nouveau",48.762554,2.267527,0,0,OIF:SA:62:30480,Europe/Paris,,OIF, +OIF:SP:62:30500,1,"Clos de Massy",48.73919,2.27737,0,0,OIF:SA:62:30500,Europe/Paris,,OIF, +OIF:SP:62:30501,1,"Clos de Massy",48.738938,2.277289,0,0,OIF:SA:62:30500,Europe/Paris,,OIF, +OIF:SP:62:30510,1,"Colbert",48.778745,2.294012,0,0,OIF:SA:62:30510,Europe/Paris,,OIF, +OIF:SP:62:30520,1,"Jean Moulin",48.743402,2.256205,0,0,OIF:SA:62:30520,Europe/Paris,,OIF, +OIF:SP:62:30530,1,"Léonard de Vinci",48.764414,2.252732,0,0,OIF:SA:62:30530,Europe/Paris,,OIF, +OIF:SP:62:30540,1,"Collège Romain Rolland",48.782303,2.256702,0,0,OIF:SA:62:30540,Europe/Paris,,OIF, +OIF:SP:62:30542,1,"Collège Romain Rolland",48.782358,2.257232,0,0,OIF:SA:62:30540,Europe/Paris,,OIF, +OIF:SP:62:30550,1,"Thomas Masaryk",48.763289,2.263216,0,0,OIF:SA:62:30550,Europe/Paris,,OIF, +OIF:SP:62:30551,1,"Thomas Masaryk",48.763405,2.262985,0,0,OIF:SA:62:30550,Europe/Paris,,OIF, +OIF:SP:62:30570,1,"Condorcet - Mairie de Bourg-la-Reine",48.779308,2.315418,0,0,OIF:SA:59:4834574,Europe/Paris,,OIF, +OIF:SP:62:30590,1,"Coulée Verte",48.770886,2.284881,0,0,OIF:SA:62:30590,Europe/Paris,,OIF, +OIF:SP:62:30591,1,"Coulée Verte",48.770913,2.285411,0,0,OIF:SA:62:30590,Europe/Paris,,OIF, +OIF:SP:62:30620,1,"Cyrano de Bergerac",48.7687,2.250985,0,0,OIF:SA:59:5121822,Europe/Paris,,OIF, +OIF:SP:62:30621,1,"Cyrano de Bergerac",48.768889,2.250332,0,0,OIF:SA:59:5121822,Europe/Paris,,OIF, +OIF:SP:62:30630,1,"Daniel Defoe",48.780831,2.258867,0,0,OIF:SA:59:5067455,Europe/Paris,,OIF, +OIF:SP:62:30631,1,"Daniel Defoe",48.781163,2.258866,0,0,OIF:SA:59:5067455,Europe/Paris,,OIF, +OIF:SP:62:30640,1,"Desgranges",48.781473,2.28268,0,0,OIF:SA:62:30640,Europe/Paris,,OIF, +OIF:SP:62:30650,1,"Diderot",48.751078,2.289399,0,0,OIF:SA:62:30650,Europe/Paris,,OIF, +OIF:SP:62:30651,1,"Diderot",48.750934,2.289155,0,0,OIF:SA:62:30650,Europe/Paris,,OIF, +OIF:SP:62:30660,1,"Docteur Berger",48.77622,2.295374,0,0,OIF:SA:62:30660,Europe/Paris,,OIF, +OIF:SP:62:30670,1,"Docteur Lequeux",48.775029,2.282755,0,0,OIF:SA:62:30670,Europe/Paris,,OIF, +OIF:SP:62:30680,1,"Docteur Roux",48.7846,2.30331,0,0,OIF:SA:62:30680,Europe/Paris,,OIF, +OIF:SP:62:30690,1,"Docteur Ténine",48.731861,2.324405,0,0,OIF:SA:59:4314812,Europe/Paris,,OIF, +OIF:SP:62:30691,1,"Docteur Ténine",48.731699,2.325043,0,0,OIF:SA:59:4314812,Europe/Paris,,OIF, +OIF:SP:62:30710,1,"Édith Piaf",48.767362,2.266759,0,0,OIF:SA:62:30710,Europe/Paris,,OIF, +OIF:SP:62:30711,1,"Édith Piaf",48.767074,2.266202,0,0,OIF:SA:62:30710,Europe/Paris,,OIF, +OIF:SP:62:30720,1,"Édouard Depreux",48.77589,2.278756,0,0,OIF:SA:62:30720,Europe/Paris,,OIF, +OIF:SP:62:30730,1,"Église - Mairie",48.753247,2.296792,0,0,OIF:SA:62:30730,Europe/Paris,,OIF, +OIF:SP:62:30740,1,"Émile Seitz",48.741637,2.307877,0,0,OIF:SA:62:30740,Europe/Paris,,OIF, +OIF:SP:62:30741,1,"Émile Seitz",48.741718,2.30785,0,0,OIF:SA:62:30740,Europe/Paris,,OIF, +OIF:SP:62:30760,1,"Eugène Sinet",48.772859,2.275428,0,0,OIF:SA:62:30760,Europe/Paris,,OIF, +OIF:SP:62:30770,1,"Faculté de Pharmacie",48.761693,2.270791,0,0,OIF:SA:24:15067,Europe/Paris,,OIF, +OIF:SP:62:30771,1,"Faculté de Pharmacie",48.762359,2.271144,0,0,OIF:SA:24:15067,Europe/Paris,,OIF, +OIF:SP:62:30780,1,"Foch - Leclerc",48.743804,2.265867,0,0,OIF:SA:59:5150246,Europe/Paris,,OIF, +OIF:SP:62:30781,1,"Foch - Leclerc",48.744551,2.267307,0,0,OIF:SA:59:5150246,Europe/Paris,,OIF, +OIF:SP:62:30790,1,"Fontaine Grelot",48.774024,2.317922,0,0,OIF:SA:62:30790,Europe/Paris,,OIF, +OIF:SP:62:30800,1,"Fontaine-Michalon RER",48.743441,2.296895,0,0,OIF:SA:8775876,Europe/Paris,,OIF, +OIF:SP:62:30801,1,"Fontaine-Michalon RER",48.743162,2.296895,0,0,OIF:SA:8775876,Europe/Paris,,OIF, +OIF:SP:62:30810,1,"Fontenay",48.783482,2.293396,0,0,OIF:SA:62:30810,Europe/Paris,,OIF, +OIF:SP:62:30820,1,"Fontenay - Houdan",48.778169,2.290843,0,0,OIF:SA:59:4834630,Europe/Paris,,OIF, +OIF:SP:62:30840,1,"Fernand Fourcade",48.77614,2.260152,0,0,OIF:SA:62:30840,Europe/Paris,,OIF, +OIF:SP:62:30850,1,"Francis de Pressensé",48.766475,2.255761,0,0,OIF:SA:24:15063,Europe/Paris,,OIF, +OIF:SP:62:30851,1,"Francis de Pressensé",48.766636,2.254564,0,0,OIF:SA:24:15063,Europe/Paris,,OIF, +OIF:SP:62:30852,1,"Francis de Pressensé",48.766276,2.254905,0,0,OIF:SA:24:15063,Europe/Paris,,OIF, +OIF:SP:62:30860,1,"François Molé",48.75436,2.291748,0,0,OIF:SA:59:3764135,Europe/Paris,,OIF, +OIF:SP:62:30861,1,"François Molé",48.754279,2.292088,0,0,OIF:SA:59:3764135,Europe/Paris,,OIF, +OIF:SP:62:30870,1,"François Sommer",48.731138,2.304201,0,0,OIF:SA:62:30870,Europe/Paris,,OIF, +OIF:SP:62:30881,1,"François Sommer",48.73014,2.303617,0,0,OIF:SA:62:30881,Europe/Paris,,OIF, +OIF:SP:62:30890,1,"Frères Lumière",48.738689,2.308368,0,0,OIF:SA:62:30890,Europe/Paris,,OIF, +OIF:SP:62:30900,1,"Frères Wright",48.765635,2.251072,0,0,OIF:SA:62:30900,Europe/Paris,,OIF, +OIF:SP:62:30910,1,"Galois",48.777107,2.322626,0,0,OIF:SA:59:4834576,Europe/Paris,,OIF, +OIF:SP:62:30920,1,"Général de Gaulle",48.768252,2.282449,0,0,OIF:SA:62:30920,Europe/Paris,,OIF, +OIF:SP:62:30921,1,"Général de Gaulle",48.768467,2.282898,0,0,OIF:SA:62:30920,Europe/Paris,,OIF, +OIF:SP:62:30930,1,"George Sand",48.775113,2.271767,0,0,OIF:SA:62:30930,Europe/Paris,,OIF, +OIF:SP:62:30931,1,"George Sand",48.775113,2.271672,0,0,OIF:SA:62:30930,Europe/Paris,,OIF, +OIF:SP:62:30940,1,"Georges Besse 1",48.73194,2.312896,0,0,OIF:SA:62:30940,Europe/Paris,,OIF, +OIF:SP:62:30941,1,"Georges Besse 1",48.731769,2.313317,0,0,OIF:SA:62:30940,Europe/Paris,,OIF, +OIF:SP:62:30970,1,"Godets - la Noisette",48.751154,2.277343,0,0,OIF:SA:62:30970,Europe/Paris,,OIF, +OIF:SP:62:30971,1,"Godets - la Noisette",48.750749,2.277846,0,0,OIF:SA:62:30970,Europe/Paris,,OIF, +OIF:SP:62:30980,1,"Grand Marché",48.776605,2.25735,0,0,OIF:SA:62:30980,Europe/Paris,,OIF, +OIF:SP:62:30990,1,"Voie des Vignes",48.767077,2.289956,0,0,OIF:SA:62:30990,Europe/Paris,,OIF, +OIF:SP:62:30991,1,"Voie des Vignes",48.766224,2.290378,0,0,OIF:SA:62:30990,Europe/Paris,,OIF, +OIF:SP:62:31000,1,"Grands Chênes",48.742786,2.262974,0,0,OIF:SA:59:5231705,Europe/Paris,,OIF, +OIF:SP:62:31001,1,"Grands Chênes",48.742805,2.263626,0,0,OIF:SA:59:5231705,Europe/Paris,,OIF, +OIF:SP:62:31010,1,"Sophie Barat",48.757352,2.270715,0,0,OIF:SA:59:5250524,Europe/Paris,,OIF, +OIF:SP:62:31020,1,"Hautes Bièvres",48.75027,2.291589,0,0,OIF:SA:62:31020,Europe/Paris,,OIF, +OIF:SP:62:31030,1,"Hélène Roederer",48.772943,2.281017,0,0,OIF:SA:59:5423714,Europe/Paris,,OIF, +OIF:SP:62:31040,1,"Henri Sellier",48.764191,2.254677,0,0,OIF:SA:62:31040,Europe/Paris,,OIF, +OIF:SP:62:31060,1,"Hexagone",48.754051,2.266709,0,0,OIF:SA:62:31060,Europe/Paris,,OIF, +OIF:SP:62:31061,1,"Hexagone",48.754447,2.267157,0,0,OIF:SA:62:31060,Europe/Paris,,OIF, +OIF:SP:62:31100,1,"Jacqueline",48.774444,2.281423,0,0,OIF:SA:62:31100,Europe/Paris,,OIF, +OIF:SP:62:31110,1,"Jean Allemane",48.764189,2.26535,0,0,OIF:SA:62:31110,Europe/Paris,,OIF, +OIF:SP:62:31130,1,"Jean Jaurès",48.781248,2.305815,0,0,OIF:SA:62:31130,Europe/Paris,,OIF, +OIF:SP:62:31140,1,"Jean Longuet",48.771217,2.280461,0,0,OIF:SA:62:31140,Europe/Paris,,OIF, +OIF:SP:62:31150,1,"Joseph Delon",48.747972,2.298794,0,0,OIF:SA:62:31150,Europe/Paris,,OIF, +OIF:SP:62:31151,1,"Joseph Delon",48.747414,2.298061,0,0,OIF:SA:62:31150,Europe/Paris,,OIF, +OIF:SP:62:31160,1,"Jules Verne",48.767778,2.270036,0,0,OIF:SA:59:5976652,Europe/Paris,,OIF, +OIF:SP:62:31161,1,"Jules Verne",48.767751,2.2699,0,0,OIF:SA:59:5976652,Europe/Paris,,OIF, +OIF:SP:62:31170,1,"Julien Périn",48.755634,2.286174,0,0,OIF:SA:59:3764133,Europe/Paris,,OIF, +OIF:SP:62:31171,1,"Julien Périn",48.755194,2.287506,0,0,OIF:SA:59:3764133,Europe/Paris,,OIF, +OIF:SP:62:31180,1,"Kennedy",48.736581,2.291655,0,0,OIF:SA:62:31180,Europe/Paris,,OIF, +OIF:SP:62:31190,1,"La Briaude",48.762947,2.27945,0,0,OIF:SA:59:5423704,Europe/Paris,,OIF, +OIF:SP:62:31191,1,"La Briaude",48.762857,2.279287,0,0,OIF:SA:59:5423704,Europe/Paris,,OIF, +OIF:SP:62:31200,1,"La Côte",48.786392,2.269767,0,0,OIF:SA:62:31200,Europe/Paris,,OIF, +OIF:SP:62:31201,1,"La Côte",48.786661,2.269712,0,0,OIF:SA:62:31200,Europe/Paris,,OIF, +OIF:SP:62:31210,1,"La Croix de Berny RER",48.762552,2.303868,0,0,OIF:SA:8775874,Europe/Paris,,OIF, +OIF:SP:62:31211,1,"La Croix de Berny RER",48.761994,2.303012,0,0,OIF:SA:8775874,Europe/Paris,,OIF, +OIF:SP:62:31212,1,"La Croix de Berny RER",48.762057,2.303202,0,0,OIF:SA:8775874,Europe/Paris,,OIF, +OIF:SP:62:31230,1,"La Poste",48.735196,2.324486,0,0,OIF:SA:59:4314815,Europe/Paris,,OIF, +OIF:SP:62:31232,1,"La Poste",48.734746,2.324309,0,0,OIF:SA:59:4314815,Europe/Paris,,OIF, +OIF:SP:62:31260,1,"Lamartine",48.761669,2.260472,0,0,OIF:SA:62:31260,Europe/Paris,,OIF, +OIF:SP:62:31261,1,"Lamartine",48.761759,2.260676,0,0,OIF:SA:62:31260,Europe/Paris,,OIF, +OIF:SP:62:31270,1,"Le Breuil",48.741359,2.283633,0,0,OIF:SA:62:31270,Europe/Paris,,OIF, +OIF:SP:62:31271,1,"Le Breuil",48.741081,2.283443,0,0,OIF:SA:62:31270,Europe/Paris,,OIF, +OIF:SP:62:31280,1,"Le Colombier",48.753388,2.270421,0,0,OIF:SA:62:31280,Europe/Paris,,OIF, +OIF:SP:62:31281,1,"Le Colombier",48.753801,2.270258,0,0,OIF:SA:62:31280,Europe/Paris,,OIF, +OIF:SP:62:31300,1,"Le Paradis",48.749414,2.287036,0,0,OIF:SA:62:31300,Europe/Paris,,OIF, +OIF:SP:62:31301,1,"Le Paradis",48.749252,2.287009,0,0,OIF:SA:62:31300,Europe/Paris,,OIF, +OIF:SP:62:31330,1,"Léon Blum",48.784615,2.296632,0,0,OIF:SA:59:5067614,Europe/Paris,,OIF, +OIF:SP:62:31341,1,"Léon Blum",48.784679,2.297788,0,0,OIF:SA:59:5067609,Europe/Paris,,OIF, +OIF:SP:62:31350,1,"Léon Jouhaux",48.736279,2.302349,0,0,OIF:SA:59:4314804,Europe/Paris,,OIF, +OIF:SP:62:31351,1,"Léon Jouhaux",48.736135,2.302648,0,0,OIF:SA:59:4314804,Europe/Paris,,OIF, +OIF:SP:62:31370,1,"Léonie",48.740412,2.297237,0,0,OIF:SA:62:31370,Europe/Paris,,OIF, +OIF:SP:62:31371,1,"Léonie",48.740412,2.297183,0,0,OIF:SA:62:31370,Europe/Paris,,OIF, +OIF:SP:62:31380,1,"Les Ailantes - Blagis",48.783252,2.304875,0,0,OIF:SA:62:31380,Europe/Paris,,OIF, +OIF:SP:62:31390,1,"Les Antes",48.751897,2.272041,0,0,OIF:SA:24:15069,Europe/Paris,,OIF, +OIF:SP:62:31391,1,"Les Antes",48.751978,2.272448,0,0,OIF:SA:24:15069,Europe/Paris,,OIF, +OIF:SP:62:31400,1,"Les Aulnes",48.782055,2.301476,0,0,OIF:SA:62:31400,Europe/Paris,,OIF, +OIF:SP:62:31401,1,"Les Aulnes",48.78219,2.301326,0,0,OIF:SA:62:31400,Europe/Paris,,OIF, +OIF:SP:62:31410,1,"Les Baconnets RER",48.738997,2.288092,0,0,OIF:SA:8775877,Europe/Paris,,OIF, +OIF:SP:62:31420,1,"Les Blagis",48.785291,2.302099,0,0,OIF:SA:59:3909015,Europe/Paris,,OIF, +OIF:SP:62:31430,1,"Les Cerisiers",48.787505,2.268133,0,0,OIF:SA:62:31430,Europe/Paris,,OIF, +OIF:SP:62:31440,1,"Les Coccinelles",48.769918,2.272209,0,0,OIF:SA:62:31440,Europe/Paris,,OIF, +OIF:SP:62:31450,1,"Les Fées",48.786998,2.261034,0,0,OIF:SA:62:31450,Europe/Paris,,OIF, +OIF:SP:62:31451,1,"Les Fées",48.78716,2.261061,0,0,OIF:SA:62:31450,Europe/Paris,,OIF, +OIF:SP:62:31460,1,"Les Fleurs",48.749835,2.308647,0,0,OIF:SA:62:31460,Europe/Paris,,OIF, +OIF:SP:62:31470,1,"Les Godets",48.757778,2.277593,0,0,OIF:SA:59:3764129,Europe/Paris,,OIF, +OIF:SP:62:31471,1,"Les Godets",48.757473,2.278042,0,0,OIF:SA:59:3764129,Europe/Paris,,OIF, +OIF:SP:62:31500,1,"Les Musiciens",48.784115,2.306425,0,0,OIF:SA:62:31500,Europe/Paris,,OIF, +OIF:SP:62:31501,1,"Les Musiciens",48.783675,2.307228,0,0,OIF:SA:62:31500,Europe/Paris,,OIF, +OIF:SP:62:31530,1,"Les Rabats",48.745495,2.313814,0,0,OIF:SA:59:4890539,Europe/Paris,,OIF, +OIF:SP:62:31531,1,"Les Rabats",48.745495,2.313923,0,0,OIF:SA:59:4890539,Europe/Paris,,OIF, +OIF:SP:62:31532,1,"Les Rabats",48.745558,2.314983,0,0,OIF:SA:59:4890539,Europe/Paris,,OIF, +OIF:SP:62:31533,1,"Les Rabats",48.745827,2.314466,0,0,OIF:SA:59:4890539,Europe/Paris,,OIF, +OIF:SP:62:31540,1,"Les Sculpteurs",48.775891,2.251381,0,0,OIF:SA:62:31540,Europe/Paris,,OIF, +OIF:SP:62:31541,1,"Les Sculpteurs",48.775361,2.251123,0,0,OIF:SA:62:31540,Europe/Paris,,OIF, +OIF:SP:62:31550,1,"Les Suisses",48.786309,2.265591,0,0,OIF:SA:62:31550,Europe/Paris,,OIF, +OIF:SP:62:31551,1,"Les Suisses",48.786407,2.265564,0,0,OIF:SA:62:31550,Europe/Paris,,OIF, +OIF:SP:62:31560,1,"Les Terrasses",48.777803,2.27651,0,0,OIF:SA:62:31560,Europe/Paris,,OIF, +OIF:SP:62:31561,1,"Les Terrasses",48.777614,2.276211,0,0,OIF:SA:62:31560,Europe/Paris,,OIF, +OIF:SP:62:31570,1,"Les Tilleuls",48.788388,2.270621,0,0,OIF:SA:62:31570,Europe/Paris,,OIF, +OIF:SP:62:31580,1,"Loup Pendu",48.77725,2.25384,0,0,OIF:SA:62:31580,Europe/Paris,,OIF, +OIF:SP:62:31581,1,"Loup Pendu",48.777142,2.253378,0,0,OIF:SA:62:31580,Europe/Paris,,OIF, +OIF:SP:62:31590,1,"Lycée Descartes",48.747885,2.309572,0,0,OIF:SA:62:31590,Europe/Paris,,OIF, +OIF:SP:62:31591,1,"Lycée Descartes",48.748217,2.308594,0,0,OIF:SA:62:31590,Europe/Paris,,OIF, +OIF:SP:62:31600,1,"Lycée Jean Jaurès",48.767364,2.254903,0,0,OIF:SA:62:31600,Europe/Paris,,OIF, +OIF:SP:62:31620,1,"Lycée Lakanal",48.777303,2.308292,0,0,OIF:SA:59:4834636,Europe/Paris,,OIF, +OIF:SP:62:31621,1,"Lycée Lakanal",48.777446,2.307435,0,0,OIF:SA:59:4834636,Europe/Paris,,OIF, +OIF:SP:62:31630,1,"Mairie de Bourg-la-Reine - Condorcet",48.77903,2.316859,0,0,OIF:SA:59:4834574,Europe/Paris,,OIF, +OIF:SP:62:31640,1,"Mairie",48.766911,2.279555,0,0,OIF:SA:59:5478215,Europe/Paris,,OIF, +OIF:SP:62:31641,1,"Mairie",48.767414,2.279799,0,0,OIF:SA:59:5478215,Europe/Paris,,OIF, +OIF:SP:62:31650,1,"Mairie de Sceaux",48.778779,2.288422,0,0,OIF:SA:59:5122179,Europe/Paris,,OIF, +OIF:SP:62:31680,1,"Marc Sangnier",48.772833,2.277984,0,0,OIF:SA:59:5976646,Europe/Paris,,OIF, +OIF:SP:62:31690,1,"Marc Sangnier",48.784904,2.301079,0,0,OIF:SA:62:31690,Europe/Paris,,OIF, +OIF:SP:62:31700,1,"Marcel Maillard",48.756719,2.281265,0,0,OIF:SA:59:3764131,Europe/Paris,,OIF, +OIF:SP:62:31701,1,"Marcel Maillard",48.756441,2.281904,0,0,OIF:SA:59:3764131,Europe/Paris,,OIF, +OIF:SP:62:31720,1,"Marché",48.752386,2.302176,0,0,OIF:SA:59:3764089,Europe/Paris,,OIF, +OIF:SP:62:31740,1,"Marne",48.781696,2.302224,0,0,OIF:SA:62:31740,Europe/Paris,,OIF, +OIF:SP:62:31750,1,"Massenet",48.783001,2.309173,0,0,OIF:SA:62:31750,Europe/Paris,,OIF, +OIF:SP:62:31770,1,"Maurice Ravel",48.738438,2.311181,0,0,OIF:SA:62:31770,Europe/Paris,,OIF, +OIF:SP:62:31780,1,"Mer Caspienne",48.738334,2.291735,0,0,OIF:SA:62:31780,Europe/Paris,,OIF, +OIF:SP:62:31781,1,"Mer Caspienne",48.738388,2.291898,0,0,OIF:SA:62:31780,Europe/Paris,,OIF, +OIF:SP:62:31810,1,"Mont Blanc",48.73755,2.287401,0,0,OIF:SA:59:5244907,Europe/Paris,,OIF, +OIF:SP:62:31820,1,"Montgolfier",48.768277,2.250415,0,0,OIF:SA:62:31820,Europe/Paris,,OIF, +OIF:SP:62:31821,1,"Montgolfier",48.768313,2.250523,0,0,OIF:SA:62:31820,Europe/Paris,,OIF, +OIF:SP:62:31830,1,"Moulin de la Tour",48.788303,2.264759,0,0,OIF:SA:59:5976710,Europe/Paris,,OIF, +OIF:SP:62:31831,1,"Moulin de la Tour",48.788492,2.264677,0,0,OIF:SA:59:5976710,Europe/Paris,,OIF, +OIF:SP:62:31850,1,"Mozart",48.780691,2.307175,0,0,OIF:SA:62:31850,Europe/Paris,,OIF, +OIF:SP:62:31860,1,"Nations Unies",48.732891,2.306673,0,0,OIF:SA:62:31860,Europe/Paris,,OIF, +OIF:SP:62:31861,1,"Nations Unies",48.73308,2.306455,0,0,OIF:SA:62:31860,Europe/Paris,,OIF, +OIF:SP:62:31870,1,"Noyer Doré",48.735949,2.284589,0,0,OIF:SA:62:31870,Europe/Paris,,OIF, +OIF:SP:62:31900,1,"Parc Heller",48.748051,2.294785,0,0,OIF:SA:62:31900,Europe/Paris,,OIF, +OIF:SP:62:31910,1,"Paron",48.745972,2.269153,0,0,OIF:SA:24:15071,Europe/Paris,,OIF, +OIF:SP:62:31920,1,"Paul Bert",48.745499,2.295507,0,0,OIF:SA:62:31920,Europe/Paris,,OIF, +OIF:SP:62:31921,1,"Paul Bert",48.746245,2.296431,0,0,OIF:SA:62:31920,Europe/Paris,,OIF, +OIF:SP:62:31930,1,"Paul Couderc",48.775168,2.294314,0,0,OIF:SA:62:31930,Europe/Paris,,OIF, +OIF:SP:62:31940,1,"Paul de Rutté",48.761504,2.255674,0,0,OIF:SA:62:31940,Europe/Paris,,OIF, +OIF:SP:62:31941,1,"Paul de Rutté",48.761522,2.256272,0,0,OIF:SA:62:31940,Europe/Paris,,OIF, +OIF:SP:62:31950,1,"Pépinières",48.781197,2.287876,0,0,OIF:SA:62:31950,Europe/Paris,,OIF, +OIF:SP:62:31970,1,"Pierre Curie",48.776081,2.283515,0,0,OIF:SA:62:31970,Europe/Paris,,OIF, +OIF:SP:62:31980,1,"Pierre Langlade",48.775884,2.318846,0,0,OIF:SA:62:31980,Europe/Paris,,OIF, +OIF:SP:62:32000,1,"Place de la Résistance - Charles de Gaulle",48.786113,2.317169,0,0,OIF:SA:59:3763988,Europe/Paris,,OIF, +OIF:SP:62:32010,1,"Moulin Fidel",48.775554,2.258127,0,0,OIF:SA:62:32010,Europe/Paris,,OIF, +OIF:SP:62:32040,1,"Président Allende",48.764111,2.27121,0,0,OIF:SA:59:5121051,Europe/Paris,,OIF, +OIF:SP:62:32041,1,"Président Allende",48.763976,2.271196,0,0,OIF:SA:59:5121051,Europe/Paris,,OIF, +OIF:SP:62:32060,1,"Quatre Chemins",48.778721,2.280004,0,0,OIF:SA:62:32060,Europe/Paris,,OIF, +OIF:SP:62:32090,1,"Charles Pasqua",48.778746,2.260257,0,0,OIF:SA:62:32090,Europe/Paris,,OIF, +OIF:SP:62:32100,1,"Robert Hertz",48.762366,2.253796,0,0,OIF:SA:62:32100,Europe/Paris,,OIF, +OIF:SP:62:32101,1,"Robert Hertz",48.762527,2.253714,0,0,OIF:SA:62:32100,Europe/Paris,,OIF, +OIF:SP:62:32110,1,"Robinson",48.780057,2.273624,0,0,OIF:SA:24:15047,Europe/Paris,,OIF, +OIF:SP:62:32111,1,"Robinson",48.780111,2.273311,0,0,OIF:SA:24:15047,Europe/Paris,,OIF, +OIF:SP:62:32120,1,"Robinson RER",48.77936,2.280166,0,0,OIF:SA:8775872,Europe/Paris,,OIF, +OIF:SP:62:32130,1,"Robinson RER",48.779999,2.282043,0,0,OIF:SA:8775872,Europe/Paris,,OIF, +OIF:SP:62:32160,1,"Rue du 8 Mai 1945",48.782957,2.315062,0,0,OIF:SA:59:3763989,Europe/Paris,,OIF, +OIF:SP:62:32161,1,"Rue du 8 Mai 1945",48.782796,2.316885,0,0,OIF:SA:59:3763989,Europe/Paris,,OIF, +OIF:SP:62:32170,1,"Rue du Lycée",48.781495,2.293261,0,0,OIF:SA:59:5161437,Europe/Paris,,OIF, +OIF:SP:62:32180,1,"Saint-Exupéry",48.766328,2.252321,0,0,OIF:SA:62:32180,Europe/Paris,,OIF, +OIF:SP:62:32200,1,"Sources",48.751608,2.289032,0,0,OIF:SA:62:32200,Europe/Paris,,OIF, +OIF:SP:62:32210,1,"Square Collegno",48.75073,2.295652,0,0,OIF:SA:62:32210,Europe/Paris,,OIF, +OIF:SP:62:32211,1,"Square Collegno",48.751341,2.29591,0,0,OIF:SA:62:32210,Europe/Paris,,OIF, +OIF:SP:62:32250,1,"Georges Suant",48.747328,2.285149,0,0,OIF:SA:62:32250,Europe/Paris,,OIF, +OIF:SP:62:32251,1,"Georges Suant",48.747301,2.285217,0,0,OIF:SA:62:32250,Europe/Paris,,OIF, +OIF:SP:62:32260,1,"Thorelle",48.783192,2.323264,0,0,OIF:SA:62:32260,Europe/Paris,,OIF, +OIF:SP:62:32270,1,"Tournelles",48.769967,2.280707,0,0,OIF:SA:62:32270,Europe/Paris,,OIF, +OIF:SP:62:32280,1,"Vergers",48.785718,2.324406,0,0,OIF:SA:62:32280,Europe/Paris,,OIF, +OIF:SP:62:32320,1,"Villa Flamande",48.775525,2.321172,0,0,OIF:SA:62:32320,Europe/Paris,,OIF, +OIF:SP:62:32360,1,"Voie de Châtenay",48.756551,2.268827,0,0,OIF:SA:62:32360,Europe/Paris,,OIF, +OIF:SP:62:32361,1,"Voie de Châtenay",48.756578,2.268895,0,0,OIF:SA:62:32360,Europe/Paris,,OIF, +OIF:SP:62:32370,1,"Voie du Bois",48.754385,2.269169,0,0,OIF:SA:62:32370,Europe/Paris,,OIF, +OIF:SP:62:32371,1,"Voie du Bois",48.754358,2.268952,0,0,OIF:SA:62:32370,Europe/Paris,,OIF, +OIF:SP:62:32381,1,"ZAC du Moulin",48.729223,2.302544,0,0,OIF:SA:62:32381,Europe/Paris,,OIF, +OIF:SP:62:32394,1,"ZI Enna",48.734726,2.309566,0,0,OIF:SA:62:32394,Europe/Paris,,OIF, +OIF:SP:62:32395,1,"ZI Enna",48.73469,2.310218,0,0,OIF:SA:62:32394,Europe/Paris,,OIF, +OIF:SP:62:32400,1,"Petits Ruisseaux",48.748442,2.283027,0,0,OIF:SA:62:32400,Europe/Paris,,OIF, +OIF:SP:62:32401,1,"Petits Ruisseaux",48.747857,2.282484,0,0,OIF:SA:62:32400,Europe/Paris,,OIF, +OIF:SP:62:32610,1,"Europe",48.761973,2.291252,0,0,OIF:SA:62:32610,Europe/Paris,,OIF, +OIF:SP:62:32611,1,"Europe",48.762179,2.290939,0,0,OIF:SA:62:32610,Europe/Paris,,OIF, +OIF:SP:62:32620,1,"Croix Blanche",48.770411,2.286989,0,0,OIF:SA:59:5122196,Europe/Paris,,OIF, +OIF:SP:62:32621,1,"Croix Blanche",48.770437,2.286717,0,0,OIF:SA:59:5122196,Europe/Paris,,OIF, +OIF:SP:62:32630,1,"Les Vallées",48.763556,2.274487,0,0,OIF:SA:59:5423702,Europe/Paris,,OIF, +OIF:SP:62:32631,1,"Les Vallées",48.763582,2.273617,0,0,OIF:SA:59:5423702,Europe/Paris,,OIF, +OIF:SP:62:32640,1,"Général Duval",48.764827,2.26505,0,0,OIF:SA:59:5121037,Europe/Paris,,OIF, +OIF:SP:62:32641,1,"Général Duval",48.764674,2.265907,0,0,OIF:SA:59:5121037,Europe/Paris,,OIF, +OIF:SP:62:32650,1,"Butte Rouge - Cité Jardins",48.765722,2.259447,0,0,OIF:SA:59:5121035,Europe/Paris,,OIF, +OIF:SP:62:32651,1,"Butte Rouge - Cité Jardins",48.765328,2.260875,0,0,OIF:SA:59:5121035,Europe/Paris,,OIF, +OIF:SP:62:32660,1,"Panorama",48.782815,2.321781,0,0,OIF:SA:62:32660,Europe/Paris,,OIF, +OIF:SP:62:32670,1,"Jeanne Garnerin",48.728479,2.308278,0,0,OIF:SA:62:32670,Europe/Paris,,OIF, +OIF:SP:62:32680,1,"Place de France",48.726348,2.306867,0,0,OIF:SA:59:6041841,Europe/Paris,,OIF, +OIF:SP:62:32681,1,"Place de France",48.727508,2.307205,0,0,OIF:SA:59:6041841,Europe/Paris,,OIF, +OIF:SP:62:32690,1,"Concorde",48.721601,2.304139,0,0,OIF:SA:59:6041843,Europe/Paris,,OIF, +OIF:SP:62:32700,1,"Frères Voisin",48.722805,2.302684,0,0,OIF:SA:62:32700,Europe/Paris,,OIF, +OIF:SP:62:32710,1,"Montjean",48.73916,2.33238,0,0,OIF:SA:59:4314817,Europe/Paris,,OIF, +OIF:SP:62:32720,1,"Saint-Eloi",48.739906,2.330301,0,0,OIF:SA:62:32720,Europe/Paris,,OIF, +OIF:SP:62:32730,1,"Villa Saint-Cyr",48.778015,2.320736,0,0,OIF:SA:62:32730,Europe/Paris,,OIF, +OIF:SP:62:32750,1,"Verrières Mairie",48.746924,2.267222,0,0,OIF:SA:62:32750,Europe/Paris,,OIF, +OIF:SP:62:32761,1,"Ferme de Malabry",48.769481,2.249529,0,0,OIF:SA:59:5121029,Europe/Paris,,OIF, +OIF:SP:62:32780,1,"Fribouli",48.739618,2.322541,0,0,OIF:SA:59:4890625,Europe/Paris,,OIF, +OIF:SP:62:32781,1,"Fribouli",48.739914,2.321767,0,0,OIF:SA:59:4890625,Europe/Paris,,OIF, +OIF:SP:62:32790,1,"Chrétienté",48.774232,2.289569,0,0,OIF:SA:62:32790,Europe/Paris,,OIF, +OIF:SP:62:32800,1,"Sous-Préfecture",48.76149,2.299043,0,0,OIF:SA:62:32800,Europe/Paris,,OIF, +OIF:SP:62:32801,1,"Sous-Préfecture",48.761885,2.298838,0,0,OIF:SA:62:32800,Europe/Paris,,OIF, +OIF:SP:62:32840,1,"Adolphe Pajeaud",48.740198,2.28044,0,0,OIF:SA:62:32840,Europe/Paris,,OIF, +OIF:SP:62:32841,1,"Adolphe Pajeaud",48.740369,2.280304,0,0,OIF:SA:62:32840,Europe/Paris,,OIF, +OIF:SP:62:32850,1,"Collège Henri-Georges Adam",48.739417,2.30565,0,0,OIF:SA:62:32850,Europe/Paris,,OIF, +OIF:SP:62:32851,1,"Collège Henri-Georges Adam",48.73903,2.305147,0,0,OIF:SA:62:32850,Europe/Paris,,OIF, +OIF:SP:62:32860,1,"Séverine",48.772143,2.251278,0,0,OIF:SA:59:5121841,Europe/Paris,,OIF, +OIF:SP:62:32861,1,"Séverine",48.771954,2.25117,0,0,OIF:SA:59:5121841,Europe/Paris,,OIF, +OIF:SP:62:32890,1,"Georges Besse 2",48.730052,2.309921,0,0,OIF:SA:62:32890,Europe/Paris,,OIF, +OIF:SP:62:32891,1,"Georges Besse 2",48.73016,2.310261,0,0,OIF:SA:62:32890,Europe/Paris,,OIF, +OIF:SP:62:32910,1,"Bel Air",48.730086,2.301511,0,0,OIF:SA:62:32910,Europe/Paris,,OIF, +OIF:SP:62:32920,1,"Auguste Mounié",48.754319,2.305477,0,0,OIF:SA:59:4377723,Europe/Paris,,OIF, +OIF:SP:62:32930,1,"Pont d'Antony",48.750121,2.304461,0,0,OIF:SA:59:4377724,Europe/Paris,,OIF, +OIF:SP:62:32931,1,"Pont d'Antony",48.750445,2.304297,0,0,OIF:SA:59:4377724,Europe/Paris,,OIF, +OIF:SP:62:32932,1,"Pont d'Antony",48.75111,2.305371,0,0,OIF:SA:59:4377724,Europe/Paris,,OIF, +OIF:SP:62:32940,1,"Mairie de Wissous",48.731942,2.327842,0,0,OIF:SA:62:32940,Europe/Paris,,OIF, +OIF:SP:62:32950,1,"Les Imbergères",48.776525,2.293823,0,0,OIF:SA:62:32950,Europe/Paris,,OIF, +OIF:SP:62:32960,1,"Mouchez",48.733272,2.327054,0,0,OIF:SA:59:4314850,Europe/Paris,,OIF, +OIF:SP:62:32970,1,"Villemilan",48.732984,2.318847,0,0,OIF:SA:59:4314810,Europe/Paris,,OIF, +OIF:SP:62:32971,1,"Villemilan",48.732777,2.318834,0,0,OIF:SA:59:4314810,Europe/Paris,,OIF, +OIF:SP:62:32980,1,"Jumelages",48.736715,2.328711,0,0,OIF:SA:59:4314816,Europe/Paris,,OIF, +OIF:SP:62:32990,1,"Lycée Monod",48.734744,2.308981,0,0,OIF:SA:59:4314806,Europe/Paris,,OIF, +OIF:SP:62:32991,1,"Lycée Monod",48.735229,2.307622,0,0,OIF:SA:59:4314806,Europe/Paris,,OIF, +OIF:SP:62:33010,1,"Antonypôle",48.733918,2.313656,0,0,OIF:SA:59:4314808,Europe/Paris,,OIF, +OIF:SP:62:33011,1,"Antonypôle",48.733972,2.313901,0,0,OIF:SA:59:4314808,Europe/Paris,,OIF, +OIF:SP:62:33020,1,"Les Morins",48.740641,2.31171,0,0,OIF:SA:62:33020,Europe/Paris,,OIF, +OIF:SP:62:33021,1,"Les Morins",48.740641,2.312118,0,0,OIF:SA:62:33020,Europe/Paris,,OIF, +OIF:SP:62:33461,1,"Division Leclerc",48.793854,2.273036,0,0,OIF:SA:41:6487,Europe/Paris,,OIF, +OIF:SP:62:34001,1,"Mésanges",48.781912,2.280082,0,0,OIF:SA:62:34001,Europe/Paris,,OIF, +OIF:SP:62:34011,1,"Edmond About",48.784275,2.277237,0,0,OIF:SA:59:5122049,Europe/Paris,,OIF, +OIF:SP:62:34031,1,"Les Roses",48.788997,2.267424,0,0,OIF:SA:62:34031,Europe/Paris,,OIF, +OIF:SP:62:34041,1,"Stade du Panorama",48.791103,2.273026,0,0,OIF:SA:59:3909028,Europe/Paris,,OIF, +OIF:SP:62:34061,1,"Paul Jaudé",48.782629,2.2746,0,0,OIF:SA:62:34061,Europe/Paris,,OIF, +OIF:SP:62:34071,1,"Gustave Robin",48.779997,2.278126,0,0,OIF:SA:62:34071,Europe/Paris,,OIF, +OIF:SP:62:34080,1,"Pasteur",48.785875,2.277793,0,0,OIF:SA:59:5221792,Europe/Paris,,OIF, +OIF:SP:62:34090,1,"Boris Vildé",48.785982,2.275603,0,0,OIF:SA:62:34090,Europe/Paris,,OIF, +OIF:SP:62:35010,1,"Le Progrès",48.790393,2.271557,0,0,OIF:SA:62:35010,Europe/Paris,,OIF, +OIF:SP:62:35011,1,"Le Progrès",48.790339,2.271694,0,0,OIF:SA:62:35010,Europe/Paris,,OIF, +OIF:SP:62:35020,1,"Arthur Ranc",48.784669,2.274747,0,0,OIF:SA:62:35020,Europe/Paris,,OIF, +OIF:SP:62:35030,1,"Méditerranée",48.738252,2.290063,0,0,OIF:SA:62:35030,Europe/Paris,,OIF, +OIF:SP:62:35040,1,"Théâtre Mairie",48.754946,2.296845,0,0,OIF:SA:59:5231722,Europe/Paris,,OIF, +OIF:SP:62:35041,1,"Théâtre Mairie",48.754721,2.296954,0,0,OIF:SA:59:5231722,Europe/Paris,,OIF, +OIF:SP:62:35050,1,"Rue des Champs",48.754585,2.29395,0,0,OIF:SA:62:35050,Europe/Paris,,OIF, +OIF:SP:62:35051,1,"Rue des Champs",48.754585,2.29395,0,0,OIF:SA:62:35050,Europe/Paris,,OIF, +OIF:SP:62:35060,1,"Colonel Fabien",48.752911,2.287563,0,0,OIF:SA:62:35060,Europe/Paris,,OIF, +OIF:SP:62:35070,1,"Léon Blum",48.759918,2.30126,0,0,OIF:SA:62:35070,Europe/Paris,,OIF, +OIF:SP:62:35071,1,"Léon Blum",48.759387,2.301546,0,0,OIF:SA:62:35070,Europe/Paris,,OIF, +OIF:SP:62:35080,1,"Augusta Antony RER",48.756888,2.299508,0,0,OIF:SA:62:35080,Europe/Paris,,OIF, +OIF:SP:62:35090,1,"Roger Salengro",48.770441,2.275512,0,0,OIF:SA:62:35090,Europe/Paris,,OIF, +OIF:SP:62:36010,1,"Espace Vasarely",48.750076,2.301321,0,0,OIF:SA:62:36010,Europe/Paris,,OIF, +OIF:SP:62:36011,1,"Espace Vasarely",48.750435,2.299404,0,0,OIF:SA:62:36010,Europe/Paris,,OIF, +OIF:SP:62:36070,1,"Cœur de Ville",48.78167,2.263571,0,0,OIF:SA:59:5122163,Europe/Paris,,OIF, +OIF:SP:62:36071,1,"Cœur de Ville",48.781508,2.263911,0,0,OIF:SA:59:5122163,Europe/Paris,,OIF, +OIF:SP:62:37120,1,"Cité Basse",48.782204,2.27052,0,0,OIF:SA:59:5121835,Europe/Paris,,OIF, +OIF:SP:62:37121,1,"Cité Basse",48.782186,2.270316,0,0,OIF:SA:59:5121835,Europe/Paris,,OIF, +OIF:SP:62:37170,1,"Victor Vernadat",48.778263,2.263304,0,0,OIF:SA:62:37170,Europe/Paris,,OIF, +OIF:SP:62:37180,1,"Maison des Arts",48.778077,2.254152,0,0,OIF:SA:62:37180,Europe/Paris,,OIF, +OIF:SP:62:37190,1,"Cité Jardin - Place des Alliés",48.77638,2.257119,0,0,OIF:SA:62:37190,Europe/Paris,,OIF, +OIF:SP:63:1,1,"Mairie",48.411794,3.391827,0,0,OIF:SA:63:1,Europe/Paris,,OIF, +OIF:SP:63:10,1,"Mairie/École",48.410539,3.355621,0,0,OIF:SA:63:10,Europe/Paris,,OIF, +OIF:SP:63:101,1,"Mairie",48.483306,3.250838,0,0,OIF:SA:63:101,Europe/Paris,,OIF, +OIF:SP:63:102,1,"Mairie",48.483091,3.250713,0,0,OIF:SA:63:101,Europe/Paris,,OIF, +OIF:SP:63:103,1,"Tachy",48.49791,3.249335,0,0,OIF:SA:63:103,Europe/Paris,,OIF, +OIF:SP:63:104,1,"Tachy",48.497918,3.249349,0,0,OIF:SA:63:103,Europe/Paris,,OIF, +OIF:SP:63:105,1,"Les Praillons",48.504084,3.250728,0,0,OIF:SA:63:105,Europe/Paris,,OIF, +OIF:SP:63:106,1,"Les Praillons",48.504066,3.250728,0,0,OIF:SA:63:105,Europe/Paris,,OIF, +OIF:SP:63:107,1,"Gare de Longueville",48.513516,3.249486,0,0,OIF:SA:8711613,Europe/Paris,,OIF, +OIF:SP:63:109,1,"Ville Haute",48.561607,3.280179,0,0,OIF:SA:61:45,Europe/Paris,,OIF, +OIF:SP:63:110,1,"Ville Haute",48.561562,3.280137,0,0,OIF:SA:61:45,Europe/Paris,,OIF, +OIF:SP:63:111,1,"Gare Routière",48.560983,3.299549,0,0,OIF:SA:61:39,Europe/Paris,,OIF, +OIF:SP:63:117,1,"Haut",48.487479,3.29273,0,0,OIF:SA:61:649,Europe/Paris,,OIF, +OIF:SP:63:118,1,"Haut",48.487426,3.29258,0,0,OIF:SA:61:649,Europe/Paris,,OIF, +OIF:SP:63:119,1,"Foyer",48.482552,3.29387,0,0,OIF:SA:61:570,Europe/Paris,,OIF, +OIF:SP:63:120,1,"Foyer",48.482545,3.293654,0,0,OIF:SA:61:570,Europe/Paris,,OIF, +OIF:SP:63:121,1,"Flamboin 3 Chemins",48.476479,3.294313,0,0,OIF:SA:63:121,Europe/Paris,,OIF, +OIF:SP:63:122,1,"Flamboin 3 Chemins",48.476589,3.294113,0,0,OIF:SA:63:121,Europe/Paris,,OIF, +OIF:SP:63:123,1,"Flamboin Bas",48.473553,3.294882,0,0,OIF:SA:63:123,Europe/Paris,,OIF, +OIF:SP:63:124,1,"Flamboin Bas",48.473572,3.294679,0,0,OIF:SA:63:123,Europe/Paris,,OIF, +OIF:SP:63:125,1,"Église",48.482702,3.346047,0,0,OIF:SA:61:616,Europe/Paris,,OIF, +OIF:SP:63:126,1,"Église",48.482693,3.346034,0,0,OIF:SA:61:616,Europe/Paris,,OIF, +OIF:SP:63:127,1,"Les Chaises",48.483289,3.35727,0,0,OIF:SA:61:737,Europe/Paris,,OIF, +OIF:SP:63:128,1,"Les Chaises",48.483307,3.357284,0,0,OIF:SA:61:737,Europe/Paris,,OIF, +OIF:SP:63:129,1,"Toury",48.481988,3.365278,0,0,OIF:SA:63:129,Europe/Paris,,OIF, +OIF:SP:63:13,1,"Bas",48.40053,3.339021,0,0,OIF:SA:63:13,Europe/Paris,,OIF, +OIF:SP:63:130,1,"Toury",48.481935,3.365101,0,0,OIF:SA:63:129,Europe/Paris,,OIF, +OIF:SP:63:131,1,"Mairie",48.386567,3.034724,0,0,OIF:SA:12:3065,Europe/Paris,,OIF, +OIF:SP:63:132,1,"Mairie",48.386469,3.034588,0,0,OIF:SA:12:3065,Europe/Paris,,OIF, +OIF:SP:63:133,1,"Croix de la Mission",48.385266,3.023692,0,0,OIF:SA:12:3043,Europe/Paris,,OIF, +OIF:SP:63:134,1,"Croix de la Mission",48.38514,3.023623,0,0,OIF:SA:12:3043,Europe/Paris,,OIF, +OIF:SP:63:135,1,"Cimetière",48.386359,3.041052,0,0,OIF:SA:12:3037,Europe/Paris,,OIF, +OIF:SP:63:136,1,"Cimetière",48.386278,3.041051,0,0,OIF:SA:12:3037,Europe/Paris,,OIF, +OIF:SP:63:137,1,"Lycée André Malraux",48.395558,2.959308,0,0,OIF:SA:12:3030,Europe/Paris,,OIF, +OIF:SP:63:139,1,"Gare de Montereau",48.380065,2.944048,0,0,OIF:SA:8768230,Europe/Paris,,OIF, +OIF:SP:63:14,1,"Bas",48.400513,3.338967,0,0,OIF:SA:63:13,Europe/Paris,,OIF, +OIF:SP:63:141,1,"Lycée Flora Tristan",48.377831,2.945048,0,0,OIF:SA:12:3105,Europe/Paris,,OIF, +OIF:SP:63:143,1,"LEP Gustave Eiffel",48.3731,2.927638,0,0,OIF:SA:12:3107,Europe/Paris,,OIF, +OIF:SP:63:145,1,"CFA",48.398416,2.977974,0,0,OIF:SA:12:3027,Europe/Paris,,OIF, +OIF:SP:63:147,1,"Compigny",48.365674,3.275285,0,0,OIF:SA:63:147,Europe/Paris,,OIF, +OIF:SP:63:148,1,"Compigny",48.365737,3.275259,0,0,OIF:SA:63:147,Europe/Paris,,OIF, +OIF:SP:63:15,1,"Briotte",48.399777,3.335577,0,0,OIF:SA:63:15,Europe/Paris,,OIF, +OIF:SP:63:16,1,"Briotte",48.399777,3.335604,0,0,OIF:SA:63:15,Europe/Paris,,OIF, +OIF:SP:63:17,1,"Mairie",48.406473,3.310047,0,0,OIF:SA:63:17,Europe/Paris,,OIF, +OIF:SP:63:171,1,"La Goujonne",48.427907,3.222284,0,0,OIF:SA:63:171,Europe/Paris,,OIF, +OIF:SP:63:172,1,"La Goujonne",48.427917,3.222189,0,0,OIF:SA:63:171,Europe/Paris,,OIF, +OIF:SP:63:175,1,"Ecluse",48.393363,3.10723,0,0,OIF:SA:63:175,Europe/Paris,,OIF, +OIF:SP:63:176,1,"Ecluse",48.393254,3.107282,0,0,OIF:SA:63:175,Europe/Paris,,OIF, +OIF:SP:63:18,1,"Mairie",48.406231,3.309989,0,0,OIF:SA:63:17,Europe/Paris,,OIF, +OIF:SP:63:19,1,"Villiers sur Terre",48.394386,3.29724,0,0,OIF:SA:63:19,Europe/Paris,,OIF, +OIF:SP:63:199,1,"Saint-Donain",48.380634,3.01768,0,0,OIF:SA:12:3227,Europe/Paris,,OIF, +OIF:SP:63:2,1,"Mairie",48.411794,3.391827,0,0,OIF:SA:63:1,Europe/Paris,,OIF, +OIF:SP:63:20,1,"Villiers sur Terre",48.394368,3.297212,0,0,OIF:SA:63:19,Europe/Paris,,OIF, +OIF:SP:63:201,1,"Rue des Tilleuls",48.421041,3.237282,0,0,OIF:SA:63:201,Europe/Paris,,OIF, +OIF:SP:63:202,1,"Rue des Tilleuls",48.421204,3.237177,0,0,OIF:SA:63:201,Europe/Paris,,OIF, +OIF:SP:63:203,1,"Camping",48.465029,3.31687,0,0,OIF:SA:63:203,Europe/Paris,,OIF, +OIF:SP:63:204,1,"Camping",48.464932,3.316638,0,0,OIF:SA:63:203,Europe/Paris,,OIF, +OIF:SP:63:205,1,"Borne Blanche",48.40972,3.245676,0,0,OIF:SA:61:491,Europe/Paris,,OIF, +OIF:SP:63:206,1,"Borne Blanche",48.409982,3.245519,0,0,OIF:SA:61:491,Europe/Paris,,OIF, +OIF:SP:63:207,1,"Meaux Gare Quai A",48.957407,2.87414,0,0,OIF:SA:8711610,Europe/Paris,,OIF, +OIF:SP:63:208,1,"Nanteuil les Meaux la Hayette",48.942968,2.879393,0,0,OIF:SA:47:3779,Europe/Paris,,OIF, +OIF:SP:63:209,1,"La Houssaye en Brie Gare Marles en Brie",48.733838,2.867889,0,0,OIF:SA:8711622,Europe/Paris,,OIF, +OIF:SP:63:21,1,"Mairie",48.383723,3.254242,0,0,OIF:SA:63:21,Europe/Paris,,OIF, +OIF:SP:63:210,1,"Coubertin",48.708895,2.869861,0,0,OIF:SA:52:14844,Europe/Paris,,OIF, +OIF:SP:63:211,1,"Melun Route de Nangis",48.541325,2.67745,0,0,OIF:SA:63:211,Europe/Paris,,OIF, +OIF:SP:63:212,1,"Melun Place Saint-Jean",48.539004,2.662218,0,0,OIF:SA:27:278,Europe/Paris,,OIF, +OIF:SP:63:213,1,"Meaux Gare Quai A",48.957407,2.87414,0,0,OIF:SA:8711610,Europe/Paris,,OIF, +OIF:SP:63:214,1,"Nanteuil les Meaux la Hayette",48.942554,2.879661,0,0,OIF:SA:47:3779,Europe/Paris,,OIF, +OIF:SP:63:215,1,"La Houssaye en Brie Gare Marles en Brie",48.733838,2.867889,0,0,OIF:SA:8711622,Europe/Paris,,OIF, +OIF:SP:63:216,1,"Fontenay Trésigny Coubertin",48.708561,2.870062,0,0,OIF:SA:52:14844,Europe/Paris,,OIF, +OIF:SP:63:217,1,"Melun Place Saint-Jean",48.539004,2.662218,0,0,OIF:SA:27:278,Europe/Paris,,OIF, +OIF:SP:63:218,1,"Melun Route de Nangis",48.541337,2.679345,0,0,OIF:SA:63:211,Europe/Paris,,OIF, +OIF:SP:63:219,1,"Villages Nature",48.831451,2.801146,0,0,OIF:SA:63:219,Europe/Paris,,OIF, +OIF:SP:63:22,1,"Mairie",48.383723,3.254269,0,0,OIF:SA:63:21,Europe/Paris,,OIF, +OIF:SP:63:220,1,"Villages Nature",48.831451,2.801146,0,0,OIF:SA:63:219,Europe/Paris,,OIF, +OIF:SP:63:221,1,"Provins Lycée les Pannevelles",48.547243,3.304359,0,0,OIF:SA:63:221,Europe/Paris,,OIF, +OIF:SP:63:23,1,"Cimetière",48.387404,3.2527,0,0,OIF:SA:63:23,Europe/Paris,,OIF, +OIF:SP:63:24,1,"Cimetière",48.387494,3.252593,0,0,OIF:SA:63:23,Europe/Paris,,OIF, +OIF:SP:63:25,1,"Avigny",48.399589,3.226544,0,0,OIF:SA:63:25,Europe/Paris,,OIF, +OIF:SP:63:26,1,"Avigny",48.399598,3.22653,0,0,OIF:SA:63:25,Europe/Paris,,OIF, +OIF:SP:63:27,1,"Mairie",48.388395,3.089919,0,0,OIF:SA:63:27,Europe/Paris,,OIF, +OIF:SP:63:28,1,"Mairie",48.388305,3.089904,0,0,OIF:SA:63:27,Europe/Paris,,OIF, +OIF:SP:63:29,1,"Église",48.398616,3.120485,0,0,OIF:SA:63:29,Europe/Paris,,OIF, +OIF:SP:63:3,1,"Vernoy",48.420728,3.333316,0,0,OIF:SA:63:3,Europe/Paris,,OIF, +OIF:SP:63:30,1,"Église",48.398616,3.120485,0,0,OIF:SA:63:29,Europe/Paris,,OIF, +OIF:SP:63:31,1,"Mairie",48.398129,3.14721,0,0,OIF:SA:63:31,Europe/Paris,,OIF, +OIF:SP:63:32,1,"Mairie",48.398194,3.146995,0,0,OIF:SA:63:31,Europe/Paris,,OIF, +OIF:SP:63:33,1,"Église",48.39837,3.188286,0,0,OIF:SA:63:33,Europe/Paris,,OIF, +OIF:SP:63:34,1,"Église",48.398343,3.188272,0,0,OIF:SA:63:33,Europe/Paris,,OIF, +OIF:SP:63:35,1,"Café",48.397839,3.19087,0,0,OIF:SA:63:35,Europe/Paris,,OIF, +OIF:SP:63:36,1,"Café",48.397839,3.190897,0,0,OIF:SA:63:35,Europe/Paris,,OIF, +OIF:SP:63:39,1,"Saint-Fiacre",48.414656,3.226827,0,0,OIF:SA:63:39,Europe/Paris,,OIF, +OIF:SP:63:40,1,"Saint-Fiacre",48.414564,3.227163,0,0,OIF:SA:63:39,Europe/Paris,,OIF, +OIF:SP:63:41,1,"École",48.410643,3.228474,0,0,OIF:SA:63:41,Europe/Paris,,OIF, +OIF:SP:63:42,1,"École",48.410668,3.228636,0,0,OIF:SA:63:41,Europe/Paris,,OIF, +OIF:SP:63:43,1,"Cimetière",48.411011,3.235624,0,0,OIF:SA:63:43,Europe/Paris,,OIF, +OIF:SP:63:44,1,"Cimetière",48.411056,3.235557,0,0,OIF:SA:63:43,Europe/Paris,,OIF, +OIF:SP:63:45,1,"Place des Buttes",48.414566,3.237509,0,0,OIF:SA:61:635,Europe/Paris,,OIF, +OIF:SP:63:46,1,"Place des Buttes",48.414495,3.237386,0,0,OIF:SA:61:635,Europe/Paris,,OIF, +OIF:SP:63:47,1,"Collège Jean Rostand",48.411271,3.242719,0,0,OIF:SA:63:47,Europe/Paris,,OIF, +OIF:SP:63:49,1,"Place Mérot",48.420132,3.383445,0,0,OIF:SA:63:49,Europe/Paris,,OIF, +OIF:SP:63:5,1,"Mairie",48.425246,3.3486,0,0,OIF:SA:63:5,Europe/Paris,,OIF, +OIF:SP:63:50,1,"Place Mérot",48.420141,3.383472,0,0,OIF:SA:63:49,Europe/Paris,,OIF, +OIF:SP:63:51,1,"Corps de Garde",48.455882,3.376091,0,0,OIF:SA:63:51,Europe/Paris,,OIF, +OIF:SP:63:52,1,"Corps de Garde",48.455864,3.376104,0,0,OIF:SA:63:51,Europe/Paris,,OIF, +OIF:SP:63:53,1,"Place du Calvaire",48.452403,3.350234,0,0,OIF:SA:63:53,Europe/Paris,,OIF, +OIF:SP:63:55,1,"4 Chemins",48.448833,3.353476,0,0,OIF:SA:63:55,Europe/Paris,,OIF, +OIF:SP:63:56,1,"4 Chemins",48.448735,3.353311,0,0,OIF:SA:63:55,Europe/Paris,,OIF, +OIF:SP:63:57,1,"Le Port Montain",48.460466,3.336696,0,0,OIF:SA:61:569,Europe/Paris,,OIF, +OIF:SP:63:58,1,"Le Port Montain",48.460528,3.337928,0,0,OIF:SA:61:569,Europe/Paris,,OIF, +OIF:SP:63:59,1,"Ouinotte",48.442939,3.329739,0,0,OIF:SA:63:59,Europe/Paris,,OIF, +OIF:SP:63:6,1,"Mairie",48.425228,3.348599,0,0,OIF:SA:63:5,Europe/Paris,,OIF, +OIF:SP:63:60,1,"Ouinotte",48.442939,3.329739,0,0,OIF:SA:63:59,Europe/Paris,,OIF, +OIF:SP:63:61,1,"Mairie/École",48.43771,3.317398,0,0,OIF:SA:63:61,Europe/Paris,,OIF, +OIF:SP:63:62,1,"Mairie/École",48.437737,3.317372,0,0,OIF:SA:63:61,Europe/Paris,,OIF, +OIF:SP:63:67,1,"Boulodrome",48.415193,3.274742,0,0,OIF:SA:63:67,Europe/Paris,,OIF, +OIF:SP:63:68,1,"Boulodrome",48.415104,3.274619,0,0,OIF:SA:63:67,Europe/Paris,,OIF, +OIF:SP:63:73,1,"Vieux Pont",48.42007,3.238508,0,0,OIF:SA:63:73,Europe/Paris,,OIF, +OIF:SP:63:74,1,"Vieux Pont",48.420051,3.238643,0,0,OIF:SA:63:73,Europe/Paris,,OIF, +OIF:SP:63:75,1,"Mairie",48.420593,3.24415,0,0,OIF:SA:63:75,Europe/Paris,,OIF, +OIF:SP:63:76,1,"Mairie",48.420602,3.244137,0,0,OIF:SA:63:75,Europe/Paris,,OIF, +OIF:SP:63:77,1,"Grand Peugny",48.428613,3.259217,0,0,OIF:SA:63:77,Europe/Paris,,OIF, +OIF:SP:63:78,1,"Grand Peugny",48.428613,3.259204,0,0,OIF:SA:63:77,Europe/Paris,,OIF, +OIF:SP:63:79,1,"Petit Peugny",48.432958,3.25085,0,0,OIF:SA:63:79,Europe/Paris,,OIF, +OIF:SP:63:80,1,"Petit Peugny",48.432913,3.250781,0,0,OIF:SA:63:79,Europe/Paris,,OIF, +OIF:SP:63:81,1,"Neuvry",48.433705,3.281532,0,0,OIF:SA:63:81,Europe/Paris,,OIF, +OIF:SP:63:83,1,"Silo",48.425347,3.227968,0,0,OIF:SA:63:83,Europe/Paris,,OIF, +OIF:SP:63:84,1,"Silo",48.42524,3.227831,0,0,OIF:SA:63:83,Europe/Paris,,OIF, +OIF:SP:63:85,1,"Saint-Sauveur",48.437796,3.207939,0,0,OIF:SA:63:85,Europe/Paris,,OIF, +OIF:SP:63:86,1,"Saint-Sauveur",48.437715,3.207952,0,0,OIF:SA:63:85,Europe/Paris,,OIF, +OIF:SP:63:87,1,"Couture",48.459747,3.212117,0,0,OIF:SA:63:87,Europe/Paris,,OIF, +OIF:SP:63:88,1,"Couture",48.459722,3.211887,0,0,OIF:SA:63:87,Europe/Paris,,OIF, +OIF:SP:63:89,1,"Moulin Ocle",48.466654,3.229889,0,0,OIF:SA:63:89,Europe/Paris,,OIF, +OIF:SP:63:9,1,"Mairie/École",48.410531,3.355473,0,0,OIF:SA:63:10,Europe/Paris,,OIF, +OIF:SP:63:90,1,"Moulin Ocle",48.466609,3.229929,0,0,OIF:SA:63:89,Europe/Paris,,OIF, +OIF:SP:63:91,1,"Place",48.463579,3.227552,0,0,OIF:SA:63:91,Europe/Paris,,OIF, +OIF:SP:63:92,1,"Place",48.46357,3.227552,0,0,OIF:SA:63:91,Europe/Paris,,OIF, +OIF:SP:63:95,1,"Boulangerie",48.465881,3.251074,0,0,OIF:SA:63:95,Europe/Paris,,OIF, +OIF:SP:63:96,1,"Boulangerie",48.465863,3.25106,0,0,OIF:SA:63:95,Europe/Paris,,OIF, +OIF:SP:63:97,1,"Le Verger",48.468336,3.25328,0,0,OIF:SA:63:97,Europe/Paris,,OIF, +OIF:SP:63:98,1,"Le Verger",48.467944,3.252827,0,0,OIF:SA:63:97,Europe/Paris,,OIF, +OIF:SP:63:99,1,"Meunier",48.478353,3.251887,0,0,OIF:SA:63:99,Europe/Paris,,OIF, +OIF:SP:65:1,1,"Zone Industrielle",48.998151,2.296001,0,0,OIF:SA:60:1029,Europe/Paris,,OIF, +OIF:SP:65:10,1,"Gérard Donzelle",49.009998,2.263343,0,0,OIF:SA:51:516,Europe/Paris,,OIF, +OIF:SP:65:100,1,"Église de Moisselles",49.047663,2.336837,0,0,OIF:SA:59:6742305,Europe/Paris,,OIF, +OIF:SP:65:1063,1,"Hôpital S. Veil",49.000592,2.269079,0,0,OIF:SA:65:1063,Europe/Paris,,OIF, +OIF:SP:65:1064,1,"Voltaire",48.993455,2.281313,0,0,OIF:SA:65:1064,Europe/Paris,,OIF, +OIF:SP:65:1065,1,"Voltaire",48.99361,2.281348,0,0,OIF:SA:65:1064,Europe/Paris,,OIF, +OIF:SP:65:1066,1,"Paul Nicolas",48.995089,2.283418,0,0,OIF:SA:65:1066,Europe/Paris,,OIF, +OIF:SP:65:1067,1,"Paul Nicolas",48.995275,2.283547,0,0,OIF:SA:65:1066,Europe/Paris,,OIF, +OIF:SP:65:1068,1,"Collège Chénier",48.995556,2.287277,0,0,OIF:SA:65:1068,Europe/Paris,,OIF, +OIF:SP:65:107,1,"Carrefour Bury",49.00369,2.28119,0,0,OIF:SA:65:107,Europe/Paris,,OIF, +OIF:SP:65:1073,1,"Rue d'Enghien",48.988835,2.280313,0,0,OIF:SA:65:1073,Europe/Paris,,OIF, +OIF:SP:65:1075,1,"Jules Ferry",48.984442,2.282158,0,0,OIF:SA:65:1075,Europe/Paris,,OIF, +OIF:SP:65:1077,1,"République",48.982646,2.284256,0,0,OIF:SA:65:1077,Europe/Paris,,OIF, +OIF:SP:65:1078,1,"Edouard Vaillant",48.980941,2.283119,0,0,OIF:SA:65:1078,Europe/Paris,,OIF, +OIF:SP:65:1079,1,"Samson Davilliers",48.986083,2.280215,0,0,OIF:SA:65:1079,Europe/Paris,,OIF, +OIF:SP:65:108,1,"Carrefour Bury",49.003636,2.281341,0,0,OIF:SA:65:107,Europe/Paris,,OIF, +OIF:SP:65:1080,1,"Rue d'Enghien",48.988071,2.280593,0,0,OIF:SA:65:1073,Europe/Paris,,OIF, +OIF:SP:65:1081,1,"République",48.982726,2.284381,0,0,OIF:SA:65:1077,Europe/Paris,,OIF, +OIF:SP:65:109,1,"Château de la Chasse",49.023023,2.295329,0,0,OIF:SA:65:109,Europe/Paris,,OIF, +OIF:SP:65:11,1,"Mairie de Saint-Prix",49.006797,2.261681,0,0,OIF:SA:65:11,Europe/Paris,,OIF, +OIF:SP:65:110,1,"Château de la Chasse",49.023124,2.295708,0,0,OIF:SA:65:109,Europe/Paris,,OIF, +OIF:SP:65:111,1,"Chemin de la Procession Saint-Marc",49.012272,2.281332,0,0,OIF:SA:65:111,Europe/Paris,,OIF, +OIF:SP:65:113,1,"Clos des Bottes",49.014595,2.285867,0,0,OIF:SA:65:113,Europe/Paris,,OIF, +OIF:SP:65:114,1,"La Picarde",49.0159,2.28845,0,0,OIF:SA:65:114,Europe/Paris,,OIF, +OIF:SP:65:115,1,"La Picarde",49.015993,2.288676,0,0,OIF:SA:65:114,Europe/Paris,,OIF, +OIF:SP:65:116,1,"Victor Hugo",49.003607,2.261494,0,0,OIF:SA:65:116,Europe/Paris,,OIF, +OIF:SP:65:1163,1,"Centre Médical",49.045833,2.297327,0,0,OIF:SA:65:1163,Europe/Paris,,OIF, +OIF:SP:65:1165,1,"Église",49.043653,2.296439,0,0,OIF:SA:65:1165,Europe/Paris,,OIF, +OIF:SP:65:1166,1,"Église",49.043718,2.296202,0,0,OIF:SA:65:1165,Europe/Paris,,OIF, +OIF:SP:65:1167,1,"Mairie Bouffémont",49.043153,2.298428,0,0,OIF:SA:65:1167,Europe/Paris,,OIF, +OIF:SP:65:1168,1,"Mairie Bouffémont",49.043038,2.298603,0,0,OIF:SA:65:1167,Europe/Paris,,OIF, +OIF:SP:65:1169,1,"Berthelot - Mitterand",49.042694,2.303618,0,0,OIF:SA:65:1169,Europe/Paris,,OIF, +OIF:SP:65:1170,1,"Berthelot - Mitterand",49.042759,2.302767,0,0,OIF:SA:65:1169,Europe/Paris,,OIF, +OIF:SP:65:1171,1,"Cordonniers",49.042054,2.305856,0,0,OIF:SA:65:1171,Europe/Paris,,OIF, +OIF:SP:65:1172,1,"Cordonniers",49.041964,2.305894,0,0,OIF:SA:65:1171,Europe/Paris,,OIF, +OIF:SP:65:1173,1,"10 Arpents",49.040521,2.30972,0,0,OIF:SA:65:1173,Europe/Paris,,OIF, +OIF:SP:65:1174,1,"10 Arpents",49.040472,2.309633,0,0,OIF:SA:65:1173,Europe/Paris,,OIF, +OIF:SP:65:1175,1,"Bibliothèque",49.041997,2.317472,0,0,OIF:SA:65:1175,Europe/Paris,,OIF, +OIF:SP:65:1176,1,"Bibliothèque",49.041915,2.31746,0,0,OIF:SA:65:1175,Europe/Paris,,OIF, +OIF:SP:65:1177,1,"La Poste",49.045366,2.319573,0,0,OIF:SA:65:1177,Europe/Paris,,OIF, +OIF:SP:65:1178,1,"La Poste",49.045382,2.319686,0,0,OIF:SA:65:1177,Europe/Paris,,OIF, +OIF:SP:65:1179,1,"Gare de Bouffémont",49.045325,2.322574,0,0,OIF:SA:8727648,Europe/Paris,,OIF, +OIF:SP:65:1181,1,"Collège de Vinci",49.041103,2.311119,0,0,OIF:SA:65:1181,Europe/Paris,,OIF, +OIF:SP:65:1182,1,"Collège de Vinci",49.041038,2.311094,0,0,OIF:SA:65:1181,Europe/Paris,,OIF, +OIF:SP:65:12,1,"Mairie de Saint-Prix",49.00678,2.261968,0,0,OIF:SA:65:11,Europe/Paris,,OIF, +OIF:SP:65:122,1,"Chemin de Viarmes",49.050395,2.33588,0,0,OIF:SA:65:122,Europe/Paris,,OIF, +OIF:SP:65:123,1,"Chemin de Viarmes",49.050368,2.335989,0,0,OIF:SA:65:122,Europe/Paris,,OIF, +OIF:SP:65:124,1,"Collège Augustin Bosc",49.007306,2.270532,0,0,OIF:SA:51:514,Europe/Paris,,OIF, +OIF:SP:65:125,1,"Collège Augustin Bosc",49.007342,2.270286,0,0,OIF:SA:51:514,Europe/Paris,,OIF, +OIF:SP:65:126,1,"Beau Site",49.005219,2.267557,0,0,OIF:SA:65:126,Europe/Paris,,OIF, +OIF:SP:65:127,1,"Beau Site",49.005067,2.267762,0,0,OIF:SA:65:126,Europe/Paris,,OIF, +OIF:SP:65:13,1,"Général Leclerc",49.004226,2.260278,0,0,OIF:SA:51:560,Europe/Paris,,OIF, +OIF:SP:65:131,1,"Fontaine Renée",48.99343,2.318633,0,0,OIF:SA:65:131,Europe/Paris,,OIF, +OIF:SP:65:132,1,"Fontaine Renée",48.993807,2.318838,0,0,OIF:SA:65:131,Europe/Paris,,OIF, +OIF:SP:65:135,1,"Rue de Saint-Prix",49.005681,2.273293,0,0,OIF:SA:65:135,Europe/Paris,,OIF, +OIF:SP:65:137,1,"Jean Jacques Rousseau",48.998172,2.280718,0,0,OIF:SA:65:137,Europe/Paris,,OIF, +OIF:SP:65:138,1,"Hector Carlin",48.999867,2.259478,0,0,OIF:SA:65:138,Europe/Paris,,OIF, +OIF:SP:65:14,1,"Hector Carlin",49.000074,2.259355,0,0,OIF:SA:65:138,Europe/Paris,,OIF, +OIF:SP:65:141,1,"Les Chalets",48.998857,2.285771,0,0,OIF:SA:65:141,Europe/Paris,,OIF, +OIF:SP:65:142,1,"Les Chalets",48.998758,2.285962,0,0,OIF:SA:65:141,Europe/Paris,,OIF, +OIF:SP:65:16,1,"Marche",48.99053,2.259329,0,0,OIF:SA:65:16,Europe/Paris,,OIF, +OIF:SP:65:17,1,"Zone Industrielle",48.997819,2.296479,0,0,OIF:SA:60:1029,Europe/Paris,,OIF, +OIF:SP:65:18,1,"Mairie d'Attainville",49.057143,2.345287,0,0,OIF:SA:59:6742309,Europe/Paris,,OIF, +OIF:SP:65:2,1,"Léon Cordier",49.015337,2.266628,0,0,OIF:SA:65:2,Europe/Paris,,OIF, +OIF:SP:65:20,1,"Clairière",49.038122,2.311582,0,0,OIF:SA:65:20,Europe/Paris,,OIF, +OIF:SP:65:21,1,"Clairière",49.038222,2.311612,0,0,OIF:SA:65:20,Europe/Paris,,OIF, +OIF:SP:65:22,1,"Rue du Cordonnier",49.040652,2.309124,0,0,OIF:SA:65:1171,Europe/Paris,,OIF, +OIF:SP:65:24,1,"Gare Poste Bouffémont",49.045236,2.322607,0,0,OIF:SA:8727648,Europe/Paris,,OIF, +OIF:SP:65:25,1,"Gare Poste Bouffémont",49.045065,2.322511,0,0,OIF:SA:8727648,Europe/Paris,,OIF, +OIF:SP:65:26,1,"Rue de la République",49.043233,2.302433,0,0,OIF:SA:65:26,Europe/Paris,,OIF, +OIF:SP:65:28,1,"Trait d'Union",49.044874,2.309948,0,0,OIF:SA:65:28,Europe/Paris,,OIF, +OIF:SP:65:300,1,"Jules Ferry",48.98431,2.281982,0,0,OIF:SA:65:1075,Europe/Paris,,OIF, +OIF:SP:65:3082,1,"Gare de Bouffémont",49.045333,2.322474,0,0,OIF:SA:8727648,Europe/Paris,,OIF, +OIF:SP:65:3083,1,"Centre Médical",49.045866,2.29724,0,0,OIF:SA:65:1163,Europe/Paris,,OIF, +OIF:SP:65:3085,1,"Gare d'Ermont Eaubonne",48.980034,2.271289,0,0,OIF:SA:8727605,Europe/Paris,,OIF, +OIF:SP:65:3090,1,"Gare du Gros Noyer",48.996884,2.259237,0,0,OIF:SA:65:3090,Europe/Paris,,OIF, +OIF:SP:65:3091,1,"Hôpital S. Veil",49.000493,2.269352,0,0,OIF:SA:65:1063,Europe/Paris,,OIF, +OIF:SP:65:31,1,"Gare de Domont",49.033357,2.340049,0,0,OIF:SA:8727643,Europe/Paris,,OIF, +OIF:SP:65:3101,1,"Gare de Bouffémont",49.045325,2.322574,0,0,OIF:SA:8727648,Europe/Paris,,OIF, +OIF:SP:65:3102,1,"Gare de Bouffémont",49.045333,2.322474,0,0,OIF:SA:8727648,Europe/Paris,,OIF, +OIF:SP:65:3103,1,"Rue de Saint-Prix",49.004089,2.271697,0,0,OIF:SA:65:135,Europe/Paris,,OIF, +OIF:SP:65:3104,1,"Gare d'Ermont Eaubonne",48.979915,2.271787,0,0,OIF:SA:8727605,Europe/Paris,,OIF, +OIF:SP:65:3105,1,"Mairie de Moisselles",49.048166,2.336167,0,0,OIF:SA:65:3105,Europe/Paris,,OIF, +OIF:SP:65:3164,1,"Mont d'Eaubonne",48.991399,2.287977,0,0,OIF:SA:65:3164,Europe/Paris,,OIF, +OIF:SP:65:3165,1,"Mont d'Eaubonne",48.991354,2.28754,0,0,OIF:SA:65:3164,Europe/Paris,,OIF, +OIF:SP:65:344,1,"La Sablière",48.987582,2.273548,0,0,OIF:SA:65:344,Europe/Paris,,OIF, +OIF:SP:65:345,1,"La Sablière",48.987528,2.273766,0,0,OIF:SA:65:344,Europe/Paris,,OIF, +OIF:SP:65:35,1,"Chemin du Lavoir",49.028674,2.318812,0,0,OIF:SA:65:35,Europe/Paris,,OIF, +OIF:SP:65:36,1,"Les Fougères",49.033499,2.314423,0,0,OIF:SA:65:36,Europe/Paris,,OIF, +OIF:SP:65:38,1,"Place de la République",49.024982,2.324252,0,0,OIF:SA:65:38,Europe/Paris,,OIF, +OIF:SP:65:39,1,"Place de la République",49.025111,2.324337,0,0,OIF:SA:65:38,Europe/Paris,,OIF, +OIF:SP:65:4,1,"Reinebourg",49.013263,2.268776,0,0,OIF:SA:65:4,Europe/Paris,,OIF, +OIF:SP:65:40,1,"Les Cailloux",48.997564,2.269643,0,0,OIF:SA:65:40,Europe/Paris,,OIF, +OIF:SP:65:41,1,"Les Cailloux",48.997663,2.269807,0,0,OIF:SA:65:40,Europe/Paris,,OIF, +OIF:SP:65:42,1,"Chaussée Jules César",48.985326,2.27269,0,0,OIF:SA:65:42,Europe/Paris,,OIF, +OIF:SP:65:43,1,"Chaussée Jules César",48.98512,2.272786,0,0,OIF:SA:65:42,Europe/Paris,,OIF, +OIF:SP:65:46,1,"Collège Chénier",48.995407,2.287837,0,0,OIF:SA:65:1068,Europe/Paris,,OIF, +OIF:SP:65:47,1,"Edouard Vaillant",48.981134,2.283252,0,0,OIF:SA:65:1078,Europe/Paris,,OIF, +OIF:SP:65:49,1,"Grille Dorée",48.999033,2.277822,0,0,OIF:SA:65:49,Europe/Paris,,OIF, +OIF:SP:65:5,1,"Ribordy",49.012229,2.268845,0,0,OIF:SA:65:5,Europe/Paris,,OIF, +OIF:SP:65:50,1,"Grille Dorée",48.998925,2.277699,0,0,OIF:SA:65:49,Europe/Paris,,OIF, +OIF:SP:65:63,1,"Mairie Montlignon",49.008749,2.284739,0,0,OIF:SA:65:63,Europe/Paris,,OIF, +OIF:SP:65:66,1,"Place du Souvenir",49.006333,2.28325,0,0,OIF:SA:65:66,Europe/Paris,,OIF, +OIF:SP:65:67,1,"Place du Souvenir",49.006225,2.283264,0,0,OIF:SA:65:66,Europe/Paris,,OIF, +OIF:SP:65:68,1,"Route des Parquets",49.016936,2.281135,0,0,OIF:SA:65:68,Europe/Paris,,OIF, +OIF:SP:65:69,1,"Rue de Saint-Prix",49.010089,2.285172,0,0,OIF:SA:65:69,Europe/Paris,,OIF, +OIF:SP:65:7,1,"Rue de l'Yser",49.01193,2.263846,0,0,OIF:SA:65:7,Europe/Paris,,OIF, +OIF:SP:65:72,1,"Rue des Briquetteries",49.013928,2.286521,0,0,OIF:SA:65:72,Europe/Paris,,OIF, +OIF:SP:65:73,1,"Rue du Cimetière",49.009566,2.280078,0,0,OIF:SA:65:73,Europe/Paris,,OIF, +OIF:SP:65:74,1,"Mairie Lycée",48.991049,2.319317,0,0,OIF:SA:65:74,Europe/Paris,,OIF, +OIF:SP:65:77,1,"Stade Schweitzer",48.994945,2.303119,0,0,OIF:SA:65:77,Europe/Paris,,OIF, +OIF:SP:65:78,1,"Stade Schweitzer",48.995242,2.302968,0,0,OIF:SA:65:77,Europe/Paris,,OIF, +OIF:SP:65:79,1,"Place Aristide Briand",48.991845,2.274701,0,0,OIF:SA:65:79,Europe/Paris,,OIF, +OIF:SP:65:8,1,"Rue de l'Yser",49.012379,2.264187,0,0,OIF:SA:65:7,Europe/Paris,,OIF, +OIF:SP:65:80,1,"Place Aristide Briand",48.991264,2.27504,0,0,OIF:SA:65:79,Europe/Paris,,OIF, +OIF:SP:65:81,1,"Place Charles de Gaulle",48.994853,2.275246,0,0,OIF:SA:65:81,Europe/Paris,,OIF, +OIF:SP:65:82,1,"Place Charles de Gaulle",48.995222,2.275204,0,0,OIF:SA:65:81,Europe/Paris,,OIF, +OIF:SP:65:85,1,"RPA Dangien",48.992684,2.28646,0,0,OIF:SA:65:85,Europe/Paris,,OIF, +OIF:SP:65:86,1,"Jean Jacques Rousseau",48.99828,2.28095,0,0,OIF:SA:65:137,Europe/Paris,,OIF, +OIF:SP:65:88,1,"Samson Davilliers",48.98601,2.280043,0,0,OIF:SA:65:1079,Europe/Paris,,OIF, +OIF:SP:65:888,1,"Pompiers",48.999184,2.273124,0,0,OIF:SA:65:888,Europe/Paris,,OIF, +OIF:SP:65:9,1,"Gérard Donzelle",49.010015,2.263234,0,0,OIF:SA:51:516,Europe/Paris,,OIF, +OIF:SP:65:90,1,"Gare d'Ermont Eaubonne",48.980034,2.271835,0,0,OIF:SA:8727605,Europe/Paris,,OIF, +OIF:SP:65:91,1,"Gare du Gros Noyer",48.997037,2.259182,0,0,OIF:SA:65:3090,Europe/Paris,,OIF, +OIF:SP:65:92,1,"Collège Bury",49.002568,2.284087,0,0,OIF:SA:65:92,Europe/Paris,,OIF, +OIF:SP:65:93,1,"Collège Bury",49.002927,2.283431,0,0,OIF:SA:65:92,Europe/Paris,,OIF, +OIF:SP:65:94,1,"Mairie de Margency",49.00124,2.288555,0,0,OIF:SA:65:94,Europe/Paris,,OIF, +OIF:SP:65:95,1,"Mairie de Margency",49.001366,2.28865,0,0,OIF:SA:65:94,Europe/Paris,,OIF, +OIF:SP:65:96,1,"Parc des Tuileries",49.000082,2.29182,0,0,OIF:SA:65:96,Europe/Paris,,OIF, +OIF:SP:65:97,1,"Parc des Tuileries",48.999875,2.291684,0,0,OIF:SA:65:96,Europe/Paris,,OIF, +OIF:SP:65:98,1,"Lycée Louis Armand",48.997607,2.284352,0,0,OIF:SA:65:98,Europe/Paris,,OIF, +OIF:SP:65:99,1,"Lycée Louis Armand",48.997455,2.284174,0,0,OIF:SA:65:98,Europe/Paris,,OIF, +OIF:SP:66:10390,1,"Mairie",48.571054,2.493139,0,0,OIF:SA:29:515,Europe/Paris,,OIF, +OIF:SP:66:10391,1,"Mairie",48.571198,2.493167,0,0,OIF:SA:29:515,Europe/Paris,,OIF, +OIF:SP:66:10392,1,"Station de Pompage",48.578234,2.488514,0,0,OIF:SA:66:10392,Europe/Paris,,OIF, +OIF:SP:66:10393,1,"Station de Pompage",48.578234,2.488772,0,0,OIF:SA:66:10392,Europe/Paris,,OIF, +OIF:SP:66:10924,1,"Champ Clair",48.618405,2.496468,0,0,OIF:SA:66:10924,Europe/Paris,,OIF, +OIF:SP:66:10925,1,"Brie 447",48.617749,2.496493,0,0,OIF:SA:66:10924,Europe/Paris,,OIF, +OIF:SP:66:10926,1,"Centre Commercial/Centre Ville",48.619878,2.491225,0,0,OIF:SA:66:10926,Europe/Paris,,OIF, +OIF:SP:66:10927,1,"Centre Commercial/Centre Ville",48.61968,2.491062,0,0,OIF:SA:66:10926,Europe/Paris,,OIF, +OIF:SP:66:10928,1,"Mauperthuis",48.627941,2.497745,0,0,OIF:SA:66:10928,Europe/Paris,,OIF, +OIF:SP:66:10929,1,"Carr. Giono/Claudel",48.628031,2.497541,0,0,OIF:SA:66:10928,Europe/Paris,,OIF, +OIF:SP:66:10930,1,"Carrefour Ivs",48.624066,2.491482,0,0,OIF:SA:66:10930,Europe/Paris,,OIF, +OIF:SP:66:10931,1,"Saint-Exupéry / Ivs",48.623887,2.491359,0,0,OIF:SA:66:10930,Europe/Paris,,OIF, +OIF:SP:66:10933,1,"Collège la Tuilerie",48.618869,2.49289,0,0,OIF:SA:29:9030,Europe/Paris,,OIF, +OIF:SP:66:10934,1,"Collège la Tuilerie",48.61876,2.493215,0,0,OIF:SA:29:9030,Europe/Paris,,OIF, +OIF:SP:66:10935,1,"Château",48.618728,2.483684,0,0,OIF:SA:66:10935,Europe/Paris,,OIF, +OIF:SP:66:10936,1,"Mairie",48.619291,2.485936,0,0,OIF:SA:66:10935,Europe/Paris,,OIF, +OIF:SP:66:10937,1,"École Champ Dolent",48.625369,2.498957,0,0,OIF:SA:66:10937,Europe/Paris,,OIF, +OIF:SP:66:10939,1,"École Croix Verte",48.625418,2.495554,0,0,OIF:SA:66:10939,Europe/Paris,,OIF, +OIF:SP:66:10942,1,"Golf Lacoste",48.632508,2.490734,0,0,OIF:SA:66:10942,Europe/Paris,,OIF, +OIF:SP:66:10944,1,"Golf Coubertin",48.63541,2.491895,0,0,OIF:SA:66:10944,Europe/Paris,,OIF, +OIF:SP:66:10946,1,"Golf Garaialde 21",48.634535,2.487675,0,0,OIF:SA:66:10946,Europe/Paris,,OIF, +OIF:SP:66:10948,1,"Le Golf",48.62927,2.49204,0,0,OIF:SA:66:10948,Europe/Paris,,OIF, +OIF:SP:66:10949,1,"Le Golf",48.629279,2.491958,0,0,OIF:SA:66:10948,Europe/Paris,,OIF, +OIF:SP:66:10950,1,"Les Prés Hauts",48.623858,2.499386,0,0,OIF:SA:66:10950,Europe/Paris,,OIF, +OIF:SP:66:10952,1,"Puget",48.62229,2.502269,0,0,OIF:SA:66:10952,Europe/Paris,,OIF, +OIF:SP:66:10954,1,"Place Rodin",48.620403,2.501585,0,0,OIF:SA:66:10954,Europe/Paris,,OIF, +OIF:SP:66:10956,1,"Pré Saint-Germain",48.620778,2.496977,0,0,OIF:SA:66:10956,Europe/Paris,,OIF, +OIF:SP:66:10957,1,"Pré Saint-Germain",48.620742,2.497248,0,0,OIF:SA:66:10956,Europe/Paris,,OIF, +OIF:SP:66:10960,1,"Rue Degas",48.618848,2.501445,0,0,OIF:SA:66:10960,Europe/Paris,,OIF, +OIF:SP:66:10962,1,"Rochefort",48.618171,2.489892,0,0,OIF:SA:29:380,Europe/Paris,,OIF, +OIF:SP:66:10963,1,"Rochefort",48.618047,2.489227,0,0,OIF:SA:29:380,Europe/Paris,,OIF, +OIF:SP:66:10964,1,"Trou Grillon",48.617387,2.498146,0,0,OIF:SA:66:10964,Europe/Paris,,OIF, +OIF:SP:66:11031,1,"Château",48.613651,2.502784,0,0,OIF:SA:66:11031,Europe/Paris,,OIF, +OIF:SP:66:11032,1,"Château",48.613147,2.50281,0,0,OIF:SA:66:11031,Europe/Paris,,OIF, +OIF:SP:66:11033,1,"Mairie",48.61306,2.494431,0,0,OIF:SA:29:354,Europe/Paris,,OIF, +OIF:SP:66:11034,1,"Mairie",48.612961,2.494133,0,0,OIF:SA:29:354,Europe/Paris,,OIF, +OIF:SP:66:11035,1,"Rue Corbeil/Chèvres",48.605647,2.498679,0,0,OIF:SA:66:11035,Europe/Paris,,OIF, +OIF:SP:66:11036,1,"Rue Corbeil/Chèvres",48.60571,2.49815,0,0,OIF:SA:66:11035,Europe/Paris,,OIF, +OIF:SP:66:11039,1,"Simone Signoret",48.613442,2.497768,0,0,OIF:SA:29:352,Europe/Paris,,OIF, +OIF:SP:66:11040,1,"Simone Signoret",48.612957,2.497305,0,0,OIF:SA:29:352,Europe/Paris,,OIF, +OIF:SP:66:11041,1,"Vieux Marché",48.615887,2.490725,0,0,OIF:SA:66:11041,Europe/Paris,,OIF, +OIF:SP:66:11042,1,"Vieux Marché",48.615941,2.49101,0,0,OIF:SA:66:11041,Europe/Paris,,OIF, +OIF:SP:66:11043,1,"Yourcenar/Claudel",48.613736,2.505808,0,0,OIF:SA:66:11043,Europe/Paris,,OIF, +OIF:SP:66:11045,1,"Arcadie",48.602186,2.491701,0,0,OIF:SA:66:11045,Europe/Paris,,OIF, +OIF:SP:66:11046,1,"Arcadie",48.602204,2.492176,0,0,OIF:SA:66:11045,Europe/Paris,,OIF, +OIF:SP:66:11047,1,"Les Brosses",48.596476,2.499721,0,0,OIF:SA:29:512,Europe/Paris,,OIF, +OIF:SP:66:11048,1,"Les Brosses",48.596403,2.50075,0,0,OIF:SA:29:512,Europe/Paris,,OIF, +OIF:SP:66:11049,1,"Église",48.599686,2.492412,0,0,OIF:SA:29:502,Europe/Paris,,OIF, +OIF:SP:66:11050,1,"Église",48.599569,2.492696,0,0,OIF:SA:29:502,Europe/Paris,,OIF, +OIF:SP:66:11051,1,"Hameau de Seine",48.582503,2.48896,0,0,OIF:SA:29:507,Europe/Paris,,OIF, +OIF:SP:66:11052,1,"Hameau de Seine",48.582503,2.489231,0,0,OIF:SA:29:507,Europe/Paris,,OIF, +OIF:SP:66:11053,1,"Leclerc/Villededon",48.591289,2.500287,0,0,OIF:SA:29:511,Europe/Paris,,OIF, +OIF:SP:66:11054,1,"Leclerc/Villededon",48.591415,2.500071,0,0,OIF:SA:29:511,Europe/Paris,,OIF, +OIF:SP:66:11055,1,"Mairie",48.595947,2.492604,0,0,OIF:SA:29:503,Europe/Paris,,OIF, +OIF:SP:66:11056,1,"Mairie",48.596153,2.493079,0,0,OIF:SA:29:503,Europe/Paris,,OIF, +OIF:SP:66:11057,1,"Réservoirs",48.601205,2.499207,0,0,OIF:SA:29:500,Europe/Paris,,OIF, +OIF:SP:66:11058,1,"Réservoirs",48.601116,2.498841,0,0,OIF:SA:29:500,Europe/Paris,,OIF, +OIF:SP:66:11059,1,"Place Résistance",48.59007,2.497506,0,0,OIF:SA:29:510,Europe/Paris,,OIF, +OIF:SP:66:11060,1,"Place Résistance",48.59025,2.497601,0,0,OIF:SA:29:510,Europe/Paris,,OIF, +OIF:SP:66:11061,1,"Route de Morsang",48.584643,2.488587,0,0,OIF:SA:29:505,Europe/Paris,,OIF, +OIF:SP:66:11062,1,"Route de Morsang",48.584652,2.488831,0,0,OIF:SA:29:505,Europe/Paris,,OIF, +OIF:SP:66:11063,1,"Rue Bourgoin",48.607552,2.492503,0,0,OIF:SA:66:11063,Europe/Paris,,OIF, +OIF:SP:66:11064,1,"Rue Bourgoin",48.606841,2.493247,0,0,OIF:SA:66:11063,Europe/Paris,,OIF, +OIF:SP:66:11065,1,"Port aux Sablons",48.59185,2.490993,0,0,OIF:SA:29:504,Europe/Paris,,OIF, +OIF:SP:66:11066,1,"Port aux Sablons",48.591948,2.491359,0,0,OIF:SA:29:504,Europe/Paris,,OIF, +OIF:SP:66:11067,1,"Stade",48.591315,2.493959,0,0,OIF:SA:66:11067,Europe/Paris,,OIF, +OIF:SP:66:11068,1,"Stade",48.591163,2.493904,0,0,OIF:SA:66:11067,Europe/Paris,,OIF, +OIF:SP:66:11177,1,"La Justice",48.642471,2.507963,0,0,OIF:SA:29:375,Europe/Paris,,OIF, +OIF:SP:66:11181,1,"Le Petit Sénart",48.655822,2.512484,0,0,OIF:SA:29:374,Europe/Paris,,OIF, +OIF:SP:66:11185,1,"Les Vignes",48.641661,2.50229,0,0,OIF:SA:29:370,Europe/Paris,,OIF, +OIF:SP:66:11187,1,"Mairie (les Ombrages)",48.639399,2.506366,0,0,OIF:SA:29:368,Europe/Paris,,OIF, +OIF:SP:66:14787,1,"Lycée Doisneau",48.613443,2.45882,0,0,OIF:SA:10:536,Europe/Paris,,OIF, +OIF:SP:66:14788,1,"Lycée Doisneau",48.613389,2.459009,0,0,OIF:SA:10:536,Europe/Paris,,OIF, +OIF:SP:66:14789,1,"Louise de France",48.640283,2.468743,0,0,OIF:SA:66:14789,Europe/Paris,,OIF, +OIF:SP:66:14790,1,"Louise de France",48.639635,2.469176,0,0,OIF:SA:66:14789,Europe/Paris,,OIF, +OIF:SP:66:14792,1,"Mairie Pasteur",48.61182,2.493967,0,0,OIF:SA:29:354,Europe/Paris,,OIF, +OIF:SP:66:14793,1,"Mairie Pasteur",48.611766,2.493967,0,0,OIF:SA:29:354,Europe/Paris,,OIF, +OIF:SP:66:14795,1,"République",48.614355,2.47955,0,0,OIF:SA:3:1007,Europe/Paris,,OIF, +OIF:SP:66:14797,1,"Notre-Dame de Sion 2",48.64082,2.434374,0,0,OIF:SA:66:14797,Europe/Paris,,OIF, +OIF:SP:66:14799,1,"Lp Baudelaire 1",48.638804,2.437734,0,0,OIF:SA:54:14523,Europe/Paris,,OIF, +OIF:SP:66:14800,1,"Trou Grillon",48.617557,2.498743,0,0,OIF:SA:66:10964,Europe/Paris,,OIF, +OIF:SP:66:14802,1,"Collège",48.653443,2.468641,0,0,OIF:SA:10:76,Europe/Paris,,OIF, +OIF:SP:66:14803,1,"Collège",48.653623,2.468519,0,0,OIF:SA:10:76,Europe/Paris,,OIF, +OIF:SP:66:14804,1,"Lp Brassens",48.626276,2.422862,0,0,OIF:SA:10:288,Europe/Paris,,OIF, +OIF:SP:66:14805,1,"Gare SNCF",48.61402,2.474113,0,0,OIF:SA:8768100,Europe/Paris,,OIF, +OIF:SP:66:14806,1,"Gare la Vallée Parking",48.634448,2.453186,0,0,OIF:SA:8768136,Europe/Paris,,OIF, +OIF:SP:66:14807,1,"Gare la Vallée Feu/Pont",48.633854,2.453565,0,0,OIF:SA:8768136,Europe/Paris,,OIF, +OIF:SP:66:14808,1,"Gare Évry Courcouronnes",48.625112,2.428189,0,0,OIF:SA:8768138,Europe/Paris,,OIF, +OIF:SP:66:14809,1,"Gare la Vallée Feu/Pont",48.633998,2.45347,0,0,OIF:SA:66:14809,Europe/Paris,,OIF, +OIF:SP:66:14811,1,"Écureuils",48.642164,2.467202,0,0,OIF:SA:66:14811,Europe/Paris,,OIF, +OIF:SP:66:14812,1,"Écureuils",48.642262,2.467446,0,0,OIF:SA:66:14811,Europe/Paris,,OIF, +OIF:SP:66:14813,1,"Arts Martiaux",48.641592,2.464203,0,0,OIF:SA:66:14813,Europe/Paris,,OIF, +OIF:SP:66:14815,1,"Pépinière",48.647204,2.511044,0,0,OIF:SA:29:599,Europe/Paris,,OIF, +OIF:SP:66:14816,1,"Pépinière",48.647204,2.511044,0,0,OIF:SA:29:599,Europe/Paris,,OIF, +OIF:SP:66:14817,1,"Rond-Point Hôpital",48.622301,2.455247,0,0,OIF:SA:10:1221,Europe/Paris,,OIF, +OIF:SP:66:14818,1,"Rond-Point Hôpital",48.622256,2.45522,0,0,OIF:SA:10:1221,Europe/Paris,,OIF, +OIF:SP:66:14819,1,"G.S.Manureva",48.609113,2.507514,0,0,OIF:SA:29:348,Europe/Paris,,OIF, +OIF:SP:66:14820,1,"G.S.Manureva",48.609033,2.507351,0,0,OIF:SA:29:348,Europe/Paris,,OIF, +OIF:SP:66:14821,1,"S.Lenglen",48.611092,2.506721,0,0,OIF:SA:29:346,Europe/Paris,,OIF, +OIF:SP:66:14822,1,"S.Lenglen",48.611029,2.506517,0,0,OIF:SA:29:346,Europe/Paris,,OIF, +OIF:SP:66:8888,1,"Chaufferie",48.617256,2.465878,0,0,OIF:SA:66:8888,Europe/Paris,,OIF, +OIF:SP:66:8889,1,"Chaufferie",48.617121,2.465987,0,0,OIF:SA:66:8888,Europe/Paris,,OIF, +OIF:SP:66:8890,1,"Cimetière",48.615998,2.473915,0,0,OIF:SA:10:534,Europe/Paris,,OIF, +OIF:SP:66:8891,1,"Cimetière",48.615836,2.473968,0,0,OIF:SA:10:534,Europe/Paris,,OIF, +OIF:SP:66:8900,1,"Gustave Courbet",48.61629,2.469577,0,0,OIF:SA:10:198,Europe/Paris,,OIF, +OIF:SP:66:8901,1,"Gustave Courbet",48.616291,2.469347,0,0,OIF:SA:10:198,Europe/Paris,,OIF, +OIF:SP:66:8912,1,"Mairie",48.613347,2.48093,0,0,OIF:SA:3:1081,Europe/Paris,,OIF, +OIF:SP:66:8917,1,"Quai Riquiez",48.612449,2.487028,0,0,OIF:SA:3:1083,Europe/Paris,,OIF, +OIF:SP:66:8918,1,"Quai Riquiez",48.611764,2.488219,0,0,OIF:SA:3:1083,Europe/Paris,,OIF, +OIF:SP:66:8923,1,"Saint-Léonard",48.614365,2.48584,0,0,OIF:SA:66:8923,Europe/Paris,,OIF, +OIF:SP:66:8924,1,"Saint-Léonard",48.614778,2.486302,0,0,OIF:SA:66:8923,Europe/Paris,,OIF, +OIF:SP:66:9389,1,"Bois des Coudraies",48.638928,2.458486,0,0,OIF:SA:10:39,Europe/Paris,,OIF, +OIF:SP:66:9391,1,"Bois Huguenot",48.63218,2.472072,0,0,OIF:SA:66:9391,Europe/Paris,,OIF, +OIF:SP:66:9393,1,"Centre Village",48.637269,2.471502,0,0,OIF:SA:66:9393,Europe/Paris,,OIF, +OIF:SP:66:9394,1,"Collardeau",48.63188,2.467732,0,0,OIF:SA:66:9394,Europe/Paris,,OIF, +OIF:SP:66:9399,1,"Grande Rue",48.635767,2.47196,0,0,OIF:SA:66:9399,Europe/Paris,,OIF, +OIF:SP:66:9400,1,"LEP/École Normale",48.635039,2.464173,0,0,OIF:SA:56:9397,Europe/Paris,,OIF, +OIF:SP:66:9401,1,"LEP/École Normale",48.63494,2.46401,0,0,OIF:SA:56:9397,Europe/Paris,,OIF, +OIF:SP:66:9402,1,"Mairie",48.636439,2.474036,0,0,OIF:SA:66:9402,Europe/Paris,,OIF, +OIF:SP:66:9404,1,"Parc aux Chênes",48.633314,2.478951,0,0,OIF:SA:66:9404,Europe/Paris,,OIF, +OIF:SP:66:9406,1,"Parc de Jarcy",48.640525,2.461664,0,0,OIF:SA:66:9406,Europe/Paris,,OIF, +OIF:SP:66:9407,1,"Parc de Jarcy",48.640669,2.461501,0,0,OIF:SA:66:9406,Europe/Paris,,OIF, +OIF:SP:66:9408,1,"Parc de Sénart",48.64825,2.46681,0,0,OIF:SA:66:9408,Europe/Paris,,OIF, +OIF:SP:66:9409,1,"Parc de Sénart",48.648259,2.466579,0,0,OIF:SA:66:9408,Europe/Paris,,OIF, +OIF:SP:66:9439,1,"Agora",48.628528,2.428534,0,0,OIF:SA:10:1145,Europe/Paris,,OIF, +OIF:SP:66:9440,1,"Agora",48.628519,2.428751,0,0,OIF:SA:10:1145,Europe/Paris,,OIF, +OIF:SP:66:9441,1,"Aguado",48.630934,2.442465,0,0,OIF:SA:10:18,Europe/Paris,,OIF, +OIF:SP:66:9442,1,"Aguado",48.63079,2.442261,0,0,OIF:SA:10:18,Europe/Paris,,OIF, +OIF:SP:66:9467,1,"Les Miroirs",48.630478,2.428713,0,0,OIF:SA:10:1144,Europe/Paris,,OIF, +OIF:SP:66:9468,1,"Les Miroirs",48.630469,2.428944,0,0,OIF:SA:10:1144,Europe/Paris,,OIF, +OIF:SP:66:9469,1,"Lycée Parc des Loges 1",48.634903,2.425276,0,0,OIF:SA:10:301,Europe/Paris,,OIF, +OIF:SP:66:9470,1,"Lycée Parc des Loges 1",48.635254,2.424938,0,0,OIF:SA:10:301,Europe/Paris,,OIF, +OIF:SP:66:9474,1,"Lycée Parc des Loges 2",48.635317,2.42563,0,0,OIF:SA:10:301,Europe/Paris,,OIF, +OIF:SP:66:9479,1,"Notre-Dame de Sion 1",48.641971,2.433874,0,0,OIF:SA:66:14797,Europe/Paris,,OIF, +OIF:SP:66:9481,1,"Montesquieu",48.638804,2.43768,0,0,OIF:SA:66:9481,Europe/Paris,,OIF, +OIF:SP:66:9482,1,"Montesquieu",48.638651,2.437449,0,0,OIF:SA:66:9481,Europe/Paris,,OIF, +OIF:SP:66:9483,1,"Pasteur",48.626443,2.44845,0,0,OIF:SA:10:368,Europe/Paris,,OIF, +OIF:SP:66:9484,1,"Pasteur",48.626703,2.448843,0,0,OIF:SA:10:368,Europe/Paris,,OIF, +OIF:SP:66:9485,1,"Préfecture",48.628511,2.437429,0,0,OIF:SA:10:416,Europe/Paris,,OIF, +OIF:SP:66:9486,1,"Préfecture",48.628314,2.437076,0,0,OIF:SA:10:416,Europe/Paris,,OIF, +OIF:SP:66:9487,1,"Saint-Exupéry",48.629259,2.446299,0,0,OIF:SA:10:474,Europe/Paris,,OIF, +OIF:SP:66:9488,1,"Saint-Exupéry",48.629106,2.446475,0,0,OIF:SA:10:474,Europe/Paris,,OIF, +OIF:SP:67:14786,1,"Rue Nicephore Niepce",48.524266,2.033378,0,0,OIF:SA:67:14786,Europe/Paris,,OIF, +OIF:SP:67:14787,1,"Champs de Courses",48.534643,1.997907,0,0,OIF:SA:46:9015,Europe/Paris,,OIF, +OIF:SP:67:14788,1,"Piscine",48.530245,2.026941,0,0,OIF:SA:67:14788,Europe/Paris,,OIF, +OIF:SP:67:14789,1,"Piscine",48.530309,2.027198,0,0,OIF:SA:67:14788,Europe/Paris,,OIF, +OIF:SP:67:14790,1,"ZI l'Ermitage",48.524693,2.021385,0,0,OIF:SA:67:14790,Europe/Paris,,OIF, +OIF:SP:67:14791,1,"V.V.F Belanbra",48.521934,2.014933,0,0,OIF:SA:67:14791,Europe/Paris,,OIF, +OIF:SP:67:14795,1,"Z.A la Bellette",48.522958,2.001596,0,0,OIF:SA:67:14795,Europe/Paris,,OIF, +OIF:SP:67:14796,1,"Z.A la Bellette",48.522976,2.001704,0,0,OIF:SA:67:14795,Europe/Paris,,OIF, +OIF:SP:67:14797,1,"Rue de Châteaudun",48.524515,2.002479,0,0,OIF:SA:67:14797,Europe/Paris,,OIF, +OIF:SP:67:14798,1,"Bresse",48.5235,2.005923,0,0,OIF:SA:67:14798,Europe/Paris,,OIF, +OIF:SP:67:14799,1,"Boulvard des Alliés",48.531898,2.01171,0,0,OIF:SA:67:14799,Europe/Paris,,OIF, +OIF:SP:67:14800,1,"Résidence du Parc",48.53014,2.021013,0,0,OIF:SA:67:14800,Europe/Paris,,OIF, +OIF:SP:67:14801,1,"Chemin du Pont Guenée",48.528116,2.027211,0,0,OIF:SA:67:14801,Europe/Paris,,OIF, +OIF:SP:67:14802,1,"R.P la Gaudrée",48.523986,2.02599,0,0,OIF:SA:67:14802,Europe/Paris,,OIF, +OIF:SP:67:14803,1,"R.P la Gaudrée",48.523986,2.025936,0,0,OIF:SA:67:14802,Europe/Paris,,OIF, +OIF:SP:67:14804,1,"Résidence du Parc",48.530158,2.021,0,0,OIF:SA:67:14800,Europe/Paris,,OIF, +OIF:SP:67:14805,1,"ZI Lavoisier",48.524268,2.023755,0,0,OIF:SA:67:14805,Europe/Paris,,OIF, +OIF:SP:67:14806,1,"ZI Lavoisier",48.524286,2.023782,0,0,OIF:SA:67:14805,Europe/Paris,,OIF, +OIF:SP:67:14807,1,"Rue Orsonville",48.522596,2.020396,0,0,OIF:SA:67:14807,Europe/Paris,,OIF, +OIF:SP:67:14808,1,"Rue Orsonville",48.522596,2.020423,0,0,OIF:SA:67:14807,Europe/Paris,,OIF, +OIF:SP:67:14810,1,"Le Potelet",48.532693,2.001358,0,0,OIF:SA:67:14810,Europe/Paris,,OIF, +OIF:SP:67:14811,1,"Chemin du Pont Guenée",48.52808,2.0274,0,0,OIF:SA:67:14801,Europe/Paris,,OIF, +OIF:SP:67:14812,1,"Avenue de Paris",48.530332,2.032557,0,0,OIF:SA:67:14812,Europe/Paris,,OIF, +OIF:SP:67:14813,1,"Gare de Dourdan",48.533547,2.007971,0,0,OIF:SA:8754552,Europe/Paris,,OIF, +OIF:SP:67:14814,1,"Hôpital Rue Faubourg de Chartres",48.534271,2.003012,0,0,OIF:SA:67:14814,Europe/Paris,,OIF, +OIF:SP:67:14815,1,"Avenue de Paris",48.530404,2.032462,0,0,OIF:SA:67:14812,Europe/Paris,,OIF, +OIF:SP:67:14816,1,"Champs de Courses",48.534643,1.997853,0,0,OIF:SA:46:9015,Europe/Paris,,OIF, +OIF:SP:67:14817,1,"Passerelle SNCF",48.534406,2.009753,0,0,OIF:SA:8754552,Europe/Paris,,OIF, +OIF:SP:67:9002,1,"Rue Nicephore Niepce",48.524248,2.033432,0,0,OIF:SA:67:14786,Europe/Paris,,OIF, +OIF:SP:67:9006,1,"Avenue d'Étampes",48.523699,2.016018,0,0,OIF:SA:67:9006,Europe/Paris,,OIF, +OIF:SP:67:9007,1,"Maison Retraite R-Legros",48.536072,2.004057,0,0,OIF:SA:67:9007,Europe/Paris,,OIF, +OIF:SP:67:9008,1,"Bâtiment Bresse",48.52366,2.005286,0,0,OIF:SA:67:14798,Europe/Paris,,OIF, +OIF:SP:67:9009,1,"Jeanne d'Arc",48.52824,2.013351,0,0,OIF:SA:67:9009,Europe/Paris,,OIF, +OIF:SP:67:9017,1,"Chapelle Saint-Laurent",48.523568,2.014395,0,0,OIF:SA:67:9017,Europe/Paris,,OIF, +OIF:SP:67:9018,1,"Chapelle Saint-Laurent",48.523352,2.014261,0,0,OIF:SA:67:9017,Europe/Paris,,OIF, +OIF:SP:67:9021,1,"Cimetière",48.535571,2.01493,0,0,OIF:SA:67:9021,Europe/Paris,,OIF, +OIF:SP:67:9022,1,"Clos Fortin",48.533595,2.015632,0,0,OIF:SA:67:9022,Europe/Paris,,OIF, +OIF:SP:67:9023,1,"Clos Fortin",48.533568,2.015551,0,0,OIF:SA:67:9022,Europe/Paris,,OIF, +OIF:SP:67:9030,1,"Centre Commercial la Croix Saint-Jacques",48.525954,2.008885,0,0,OIF:SA:67:9030,Europe/Paris,,OIF, +OIF:SP:67:9031,1,"Centre Commercial la Croix Saint-Jacques",48.525926,2.008601,0,0,OIF:SA:67:9030,Europe/Paris,,OIF, +OIF:SP:67:9032,1,"Château-Syndicat",48.529437,2.010447,0,0,OIF:SA:67:9032,Europe/Paris,,OIF, +OIF:SP:67:9038,1,"Gare de Dourdan",48.533511,2.007971,0,0,OIF:SA:8754552,Europe/Paris,,OIF, +OIF:SP:67:9041,1,"Hôpital",48.534577,2.000236,0,0,OIF:SA:67:9041,Europe/Paris,,OIF, +OIF:SP:67:9046,1,"Jules Ferry",48.524857,2.012181,0,0,OIF:SA:67:9046,Europe/Paris,,OIF, +OIF:SP:67:9047,1,"Jules Ferry",48.524786,2.012384,0,0,OIF:SA:67:9046,Europe/Paris,,OIF, +OIF:SP:67:9048,1,"Le Potelet",48.532711,2.001371,0,0,OIF:SA:67:14810,Europe/Paris,,OIF, +OIF:SP:67:9053,1,"Mairie",48.528847,2.015106,0,0,OIF:SA:67:9053,Europe/Paris,,OIF, +OIF:SP:67:9054,1,"Marché aux Grains",48.529023,2.013617,0,0,OIF:SA:67:9054,Europe/Paris,,OIF, +OIF:SP:67:9056,1,"Place du Chariot",48.527117,2.013588,0,0,OIF:SA:67:9056,Europe/Paris,,OIF, +OIF:SP:67:9057,1,"Les Mésanges",48.522506,2.01045,0,0,OIF:SA:67:9057,Europe/Paris,,OIF, +OIF:SP:67:9058,1,"Passerelle SNCF",48.534415,2.009739,0,0,OIF:SA:8754552,Europe/Paris,,OIF, +OIF:SP:67:9060,1,"Rue Gautreau",48.530611,2.015759,0,0,OIF:SA:67:9060,Europe/Paris,,OIF, +OIF:SP:67:9061,1,"Rue Gautreau",48.530567,2.016003,0,0,OIF:SA:67:9060,Europe/Paris,,OIF, +OIF:SP:67:9066,1,"V.V.F Belanbra",48.52188,2.015082,0,0,OIF:SA:67:14791,Europe/Paris,,OIF, +OIF:SP:67:9071,1,"ZI l'Ermitage",48.524702,2.021384,0,0,OIF:SA:67:14790,Europe/Paris,,OIF, +OIF:SP:68:100,1,"Foyer Rural",49.05858,1.541987,0,0,OIF:SA:68:100,Europe/Paris,,OIF, +OIF:SP:68:101,1,"Isobox",49.072509,1.542087,0,0,OIF:SA:68:101,Europe/Paris,,OIF, +OIF:SP:68:102,1,"Isobox",49.072563,1.542031,0,0,OIF:SA:68:101,Europe/Paris,,OIF, +OIF:SP:68:103,1,"Pompiers",49.057578,1.53738,0,0,OIF:SA:68:103,Europe/Paris,,OIF, +OIF:SP:68:104,1,"Pompiers",49.057588,1.537449,0,0,OIF:SA:68:103,Europe/Paris,,OIF, +OIF:SP:68:109,1,"La Défense Gare",48.894246,2.235347,0,0,OIF:SA:8738221,Europe/Paris,,OIF, +OIF:SP:68:110,1,"La Défense Gare",48.894156,2.235293,0,0,OIF:SA:8738221,Europe/Paris,,OIF, +OIF:SP:68:113,1,"Mairie",49.061652,1.523177,0,0,OIF:SA:68:113,Europe/Paris,,OIF, +OIF:SP:68:114,1,"Mairie",49.061562,1.523083,0,0,OIF:SA:68:113,Europe/Paris,,OIF, +OIF:SP:68:115,1,"Peugeot",48.938835,2.050249,0,0,OIF:SA:21:618,Europe/Paris,,OIF, +OIF:SP:68:116,1,"Peugeot",48.93827,2.047142,0,0,OIF:SA:21:618,Europe/Paris,,OIF, +OIF:SP:68:117,1,"RER",48.933154,2.038904,0,0,OIF:SA:8738657,Europe/Paris,,OIF, +OIF:SP:68:118,1,"RER",48.933208,2.038959,0,0,OIF:SA:8738657,Europe/Paris,,OIF, +OIF:SP:68:119,1,"Église",49.082076,1.586113,0,0,OIF:SA:68:119,Europe/Paris,,OIF, +OIF:SP:68:12,1,"Les Perruches",49.035877,1.48806,0,0,OIF:SA:68:12,Europe/Paris,,OIF, +OIF:SP:68:120,1,"Église",49.082013,1.585991,0,0,OIF:SA:68:119,Europe/Paris,,OIF, +OIF:SP:68:121,1,"Place Louise Henri",48.976453,1.53974,0,0,OIF:SA:68:121,Europe/Paris,,OIF, +OIF:SP:68:122,1,"Place Louise Henri",48.976417,1.539727,0,0,OIF:SA:68:121,Europe/Paris,,OIF, +OIF:SP:68:123,1,"Gendarmerie",49.101404,1.46904,0,0,OIF:SA:68:123,Europe/Paris,,OIF, +OIF:SP:68:124,1,"Gendarmerie",49.10197,1.467813,0,0,OIF:SA:68:123,Europe/Paris,,OIF, +OIF:SP:68:125,1,"RN15-Rue des Près",49.105459,1.456982,0,0,OIF:SA:68:125,Europe/Paris,,OIF, +OIF:SP:68:126,1,"RN15-Rue des Près",49.105532,1.457091,0,0,OIF:SA:68:125,Europe/Paris,,OIF, +OIF:SP:68:127,1,"Tourelles",49.101965,1.451116,0,0,OIF:SA:68:127,Europe/Paris,,OIF, +OIF:SP:68:128,1,"Tourelles",49.101992,1.451184,0,0,OIF:SA:68:127,Europe/Paris,,OIF, +OIF:SP:68:129,1,"Rue Port aux Vins",48.870326,2.230108,0,0,OIF:SA:68:129,Europe/Paris,,OIF, +OIF:SP:68:130,1,"Rue Port aux Vins",48.870353,2.230026,0,0,OIF:SA:68:129,Europe/Paris,,OIF, +OIF:SP:68:131,1,"Tripleval",49.052607,1.591231,0,0,OIF:SA:68:131,Europe/Paris,,OIF, +OIF:SP:68:132,1,"Tripleval",49.052579,1.591177,0,0,OIF:SA:68:131,Europe/Paris,,OIF, +OIF:SP:68:133,1,"Ardèche",49.088111,1.481085,0,0,OIF:SA:68:133,Europe/Paris,,OIF, +OIF:SP:68:134,1,"Ardèche",49.087235,1.480539,0,0,OIF:SA:68:133,Europe/Paris,,OIF, +OIF:SP:68:135,1,"Bourdines",49.078091,1.498802,0,0,OIF:SA:68:135,Europe/Paris,,OIF, +OIF:SP:68:136,1,"Bourdines",49.078082,1.498788,0,0,OIF:SA:68:135,Europe/Paris,,OIF, +OIF:SP:68:137,1,"Boutardes",49.077852,1.493047,0,0,OIF:SA:68:137,Europe/Paris,,OIF, +OIF:SP:68:138,1,"Boutardes",49.077808,1.493061,0,0,OIF:SA:68:137,Europe/Paris,,OIF, +OIF:SP:68:14,1,"Les Perruches",49.035815,1.488075,0,0,OIF:SA:68:12,Europe/Paris,,OIF, +OIF:SP:68:141,1,"Gare SNCF Montigny",49.090417,1.479377,0,0,OIF:SA:8741560,Europe/Paris,,OIF, +OIF:SP:68:142,1,"Gare SNCF Montigny",49.090363,1.479447,0,0,OIF:SA:8741560,Europe/Paris,,OIF, +OIF:SP:68:143,1,"La Grosse Borne",49.100719,1.471255,0,0,OIF:SA:68:143,Europe/Paris,,OIF, +OIF:SP:68:144,1,"La Grosse Borne",49.10062,1.471188,0,0,OIF:SA:68:143,Europe/Paris,,OIF, +OIF:SP:68:147,1,"Lycée Dumézil",49.081646,1.476842,0,0,OIF:SA:68:147,Europe/Paris,,OIF, +OIF:SP:68:148,1,"Lycée Dumézil",49.08161,1.476801,0,0,OIF:SA:68:147,Europe/Paris,,OIF, +OIF:SP:68:149,1,"Lycée Saint-Adjutor",49.08278,1.459709,0,0,OIF:SA:68:149,Europe/Paris,,OIF, +OIF:SP:68:15,1,"Place",49.047626,1.478406,0,0,OIF:SA:68:15,Europe/Paris,,OIF, +OIF:SP:68:150,1,"Lycée Saint-Adjutor",49.082771,1.45975,0,0,OIF:SA:68:149,Europe/Paris,,OIF, +OIF:SP:68:155,1,"Petit Val",49.075249,1.511459,0,0,OIF:SA:68:155,Europe/Paris,,OIF, +OIF:SP:68:156,1,"Petit Val",49.07515,1.511365,0,0,OIF:SA:68:155,Europe/Paris,,OIF, +OIF:SP:68:157,1,"République",49.090525,1.484479,0,0,OIF:SA:68:157,Europe/Paris,,OIF, +OIF:SP:68:158,1,"République",49.090516,1.484425,0,0,OIF:SA:68:157,Europe/Paris,,OIF, +OIF:SP:68:159,1,"SNECMA",49.107719,1.496404,0,0,OIF:SA:68:159,Europe/Paris,,OIF, +OIF:SP:68:16,1,"Place",49.047609,1.47853,0,0,OIF:SA:68:15,Europe/Paris,,OIF, +OIF:SP:68:160,1,"SNECMA",49.107692,1.496432,0,0,OIF:SA:68:159,Europe/Paris,,OIF, +OIF:SP:68:17,1,"Église",49.040158,1.568173,0,0,OIF:SA:68:17,Europe/Paris,,OIF, +OIF:SP:68:174,1,"Blaru le Chêne Godon",49.051418,1.502502,0,0,OIF:SA:68:174,Europe/Paris,,OIF, +OIF:SP:68:175,1,"Blaru le Chêne Godon",49.051338,1.50264,0,0,OIF:SA:68:174,Europe/Paris,,OIF, +OIF:SP:68:176,1,"Jeufosse Notre-Dame de la Mer",49.044284,1.526199,0,0,OIF:SA:68:176,Europe/Paris,,OIF, +OIF:SP:68:177,1,"Jeufosse Notre-Dame de la Mer",49.044203,1.526132,0,0,OIF:SA:68:176,Europe/Paris,,OIF, +OIF:SP:68:178,1,"La Haie de Beranville les 4 Stops",49.028295,1.535223,0,0,OIF:SA:68:178,Europe/Paris,,OIF, +OIF:SP:68:179,1,"La Haie de Beranville les 4 Stops",49.028258,1.535101,0,0,OIF:SA:68:178,Europe/Paris,,OIF, +OIF:SP:68:18,1,"Église",49.040176,1.568091,0,0,OIF:SA:68:17,Europe/Paris,,OIF, +OIF:SP:68:180,1,"Chaufour Centre",49.015457,1.48513,0,0,OIF:SA:68:180,Europe/Paris,,OIF, +OIF:SP:68:181,1,"Chaufour Centre",49.015447,1.485035,0,0,OIF:SA:68:180,Europe/Paris,,OIF, +OIF:SP:68:182,1,"Cravent la Croix",48.993611,1.489123,0,0,OIF:SA:68:182,Europe/Paris,,OIF, +OIF:SP:68:183,1,"Cravent la Croix",48.993612,1.489191,0,0,OIF:SA:68:182,Europe/Paris,,OIF, +OIF:SP:68:184,1,"Lommoye Chemin du Moulin",48.993833,1.506573,0,0,OIF:SA:68:184,Europe/Paris,,OIF, +OIF:SP:68:185,1,"Lommoye Chemin du Moulin",48.993797,1.506573,0,0,OIF:SA:68:184,Europe/Paris,,OIF, +OIF:SP:68:186,1,"Lommoye Église",48.99311,1.51385,0,0,OIF:SA:68:186,Europe/Paris,,OIF, +OIF:SP:68:187,1,"Lommoye Église",48.9932,1.513848,0,0,OIF:SA:68:186,Europe/Paris,,OIF, +OIF:SP:68:19,1,"Gloton",49.045121,1.579747,0,0,OIF:SA:68:19,Europe/Paris,,OIF, +OIF:SP:68:190,1,"Bréval SNCF",48.943244,1.542217,0,0,OIF:SA:8738162,Europe/Paris,,OIF, +OIF:SP:68:191,1,"Bréval SNCF",48.943226,1.542162,0,0,OIF:SA:8738162,Europe/Paris,,OIF, +OIF:SP:68:192,1,"Vernon Hôpital",49.091256,1.488723,0,0,OIF:SA:68:192,Europe/Paris,,OIF, +OIF:SP:68:193,1,"Port Villez Grand Val",49.074508,1.512169,0,0,OIF:SA:68:193,Europe/Paris,,OIF, +OIF:SP:68:194,1,"Port Villez Grand Val",49.074453,1.512047,0,0,OIF:SA:68:193,Europe/Paris,,OIF, +OIF:SP:68:195,1,"Poterie",49.081429,1.483925,0,0,OIF:SA:68:195,Europe/Paris,,OIF, +OIF:SP:68:196,1,"Poterie",49.081258,1.484605,0,0,OIF:SA:68:195,Europe/Paris,,OIF, +OIF:SP:68:20,1,"Gloton",49.045049,1.579816,0,0,OIF:SA:68:19,Europe/Paris,,OIF, +OIF:SP:68:21,1,"Mairie",49.040627,1.569875,0,0,OIF:SA:68:21,Europe/Paris,,OIF, +OIF:SP:68:22,1,"Mairie",49.040601,1.569903,0,0,OIF:SA:68:21,Europe/Paris,,OIF, +OIF:SP:68:23,1,"Voie Jurée",49.040439,1.553311,0,0,OIF:SA:68:23,Europe/Paris,,OIF, +OIF:SP:68:24,1,"Voie Jurée",49.040476,1.553433,0,0,OIF:SA:68:23,Europe/Paris,,OIF, +OIF:SP:68:25,1,"Zola",49.041475,1.571694,0,0,OIF:SA:68:25,Europe/Paris,,OIF, +OIF:SP:68:26,1,"Zola",49.041448,1.571667,0,0,OIF:SA:68:25,Europe/Paris,,OIF, +OIF:SP:68:27,1,"Bois Cahué",49.03294,1.563661,0,0,OIF:SA:68:27,Europe/Paris,,OIF, +OIF:SP:68:28,1,"Bois Cahué",49.033002,1.563619,0,0,OIF:SA:68:27,Europe/Paris,,OIF, +OIF:SP:68:29,1,"Berthelot",49.034621,1.57211,0,0,OIF:SA:68:29,Europe/Paris,,OIF, +OIF:SP:68:30,1,"Berthelot",49.034701,1.57204,0,0,OIF:SA:68:29,Europe/Paris,,OIF, +OIF:SP:68:31,1,"Deschamps",49.035249,1.573467,0,0,OIF:SA:68:31,Europe/Paris,,OIF, +OIF:SP:68:32,1,"Deschamps",49.035196,1.573482,0,0,OIF:SA:68:31,Europe/Paris,,OIF, +OIF:SP:68:33,1,"Gare SNCF",49.037118,1.576214,0,0,OIF:SA:8741589,Europe/Paris,,OIF, +OIF:SP:68:34,1,"Gare SNCF",49.037173,1.576309,0,0,OIF:SA:8741589,Europe/Paris,,OIF, +OIF:SP:68:35,1,"Thiers",49.035376,1.579192,0,0,OIF:SA:68:35,Europe/Paris,,OIF, +OIF:SP:68:36,1,"Thiers",49.035322,1.579234,0,0,OIF:SA:68:35,Europe/Paris,,OIF, +OIF:SP:68:37,1,"Église",48.946129,1.534095,0,0,OIF:SA:68:37,Europe/Paris,,OIF, +OIF:SP:68:38,1,"Église",48.946147,1.534136,0,0,OIF:SA:68:37,Europe/Paris,,OIF, +OIF:SP:68:39,1,"Les Bossus",48.962557,1.537976,0,0,OIF:SA:68:39,Europe/Paris,,OIF, +OIF:SP:68:40,1,"Les Bossus",48.962539,1.538112,0,0,OIF:SA:68:39,Europe/Paris,,OIF, +OIF:SP:68:41,1,"Le Hamel",48.952928,1.534849,0,0,OIF:SA:68:41,Europe/Paris,,OIF, +OIF:SP:68:42,1,"Le Hamel",48.952893,1.534945,0,0,OIF:SA:68:41,Europe/Paris,,OIF, +OIF:SP:68:43,1,"Mairie",48.944834,1.534006,0,0,OIF:SA:68:43,Europe/Paris,,OIF, +OIF:SP:68:44,1,"Mairie",48.944825,1.533924,0,0,OIF:SA:68:43,Europe/Paris,,OIF, +OIF:SP:68:51,1,"Clachaloze",49.058741,1.59787,0,0,OIF:SA:68:51,Europe/Paris,,OIF, +OIF:SP:68:52,1,"Clachaloze",49.058713,1.597775,0,0,OIF:SA:68:51,Europe/Paris,,OIF, +OIF:SP:68:53,1,"Longuemarre Boite aux Lettres",48.995566,1.488463,0,0,OIF:SA:68:53,Europe/Paris,,OIF, +OIF:SP:68:54,1,"Longuemarre Boite aux Lettres",48.995575,1.488531,0,0,OIF:SA:68:53,Europe/Paris,,OIF, +OIF:SP:68:55,1,"Mairie",48.991181,1.489805,0,0,OIF:SA:68:55,Europe/Paris,,OIF, +OIF:SP:68:56,1,"Mairie",48.991234,1.48979,0,0,OIF:SA:68:55,Europe/Paris,,OIF, +OIF:SP:68:6,1,"Église",49.049444,1.477501,0,0,OIF:SA:68:6,Europe/Paris,,OIF, +OIF:SP:68:65,1,"Rue de Vernon",49.089355,1.599087,0,0,OIF:SA:68:65,Europe/Paris,,OIF, +OIF:SP:68:66,1,"Rue de Vernon",49.089293,1.59917,0,0,OIF:SA:68:65,Europe/Paris,,OIF, +OIF:SP:68:67,1,"Salle des Fêtes",49.093103,1.605123,0,0,OIF:SA:68:67,Europe/Paris,,OIF, +OIF:SP:68:68,1,"Salle des Fêtes",49.093077,1.605274,0,0,OIF:SA:68:67,Europe/Paris,,OIF, +OIF:SP:68:69,1,"Cimetière",49.076703,1.593373,0,0,OIF:SA:68:69,Europe/Paris,,OIF, +OIF:SP:68:7,1,"Église",49.049534,1.477595,0,0,OIF:SA:68:6,Europe/Paris,,OIF, +OIF:SP:68:70,1,"Cimetière",49.076693,1.593236,0,0,OIF:SA:68:69,Europe/Paris,,OIF, +OIF:SP:68:71,1,"Place de Gaulle",49.077168,1.591588,0,0,OIF:SA:68:71,Europe/Paris,,OIF, +OIF:SP:68:72,1,"Place de Gaulle",49.077114,1.591465,0,0,OIF:SA:68:71,Europe/Paris,,OIF, +OIF:SP:68:77,1,"Sergenterie",49.091206,1.60203,0,0,OIF:SA:68:77,Europe/Paris,,OIF, +OIF:SP:68:78,1,"Sergenterie",49.091054,1.602101,0,0,OIF:SA:68:77,Europe/Paris,,OIF, +OIF:SP:68:79,1,"Église",49.037082,1.541648,0,0,OIF:SA:68:79,Europe/Paris,,OIF, +OIF:SP:68:8,1,"Le Chênet",49.038811,1.486126,0,0,OIF:SA:68:8,Europe/Paris,,OIF, +OIF:SP:68:80,1,"Église",49.037164,1.54177,0,0,OIF:SA:68:79,Europe/Paris,,OIF, +OIF:SP:68:81,1,"Mairie",49.037498,1.528738,0,0,OIF:SA:68:81,Europe/Paris,,OIF, +OIF:SP:68:82,1,"Mairie",49.037526,1.528847,0,0,OIF:SA:68:81,Europe/Paris,,OIF, +OIF:SP:68:85,1,"La Haie Beranville Arrêt de Car",49.026182,1.536472,0,0,OIF:SA:68:85,Europe/Paris,,OIF, +OIF:SP:68:86,1,"La Haie Beranville Arrêt de Car",49.026146,1.536377,0,0,OIF:SA:68:85,Europe/Paris,,OIF, +OIF:SP:68:9,1,"Le Chênet",49.038883,1.486124,0,0,OIF:SA:68:8,Europe/Paris,,OIF, +OIF:SP:68:91,1,"La Tuilerie",48.995663,1.529652,0,0,OIF:SA:68:91,Europe/Paris,,OIF, +OIF:SP:68:92,1,"La Tuilerie",48.995672,1.529693,0,0,OIF:SA:68:91,Europe/Paris,,OIF, +OIF:SP:68:93,1,"Allée d'Aise",49.049133,1.541736,0,0,OIF:SA:68:93,Europe/Paris,,OIF, +OIF:SP:68:94,1,"Allée d'Aise",49.049142,1.541667,0,0,OIF:SA:68:93,Europe/Paris,,OIF, +OIF:SP:68:95,1,"Bois de Merville",49.044452,1.545827,0,0,OIF:SA:68:95,Europe/Paris,,OIF, +OIF:SP:68:96,1,"Bois de Merville",49.044514,1.545716,0,0,OIF:SA:68:95,Europe/Paris,,OIF, +OIF:SP:68:97,1,"Église",49.060427,1.544051,0,0,OIF:SA:68:97,Europe/Paris,,OIF, +OIF:SP:68:98,1,"Église",49.060417,1.543996,0,0,OIF:SA:68:97,Europe/Paris,,OIF, +OIF:SP:68:99,1,"Foyer Rural",49.058642,1.541972,0,0,OIF:SA:68:100,Europe/Paris,,OIF, +OIF:SP:6:10,1,"Tabac",48.978698,2.841049,0,0,OIF:SA:6:10,Europe/Paris,,OIF, +OIF:SP:6:100,1,"Centre",49.017953,2.591606,0,0,OIF:SA:6:100,Europe/Paris,,OIF, +OIF:SP:6:101,1,"Centre",49.017855,2.591291,0,0,OIF:SA:6:100,Europe/Paris,,OIF, +OIF:SP:6:102,1,"Église",49.017355,2.594035,0,0,OIF:SA:6:102,Europe/Paris,,OIF, +OIF:SP:6:103,1,"Église",49.017473,2.593353,0,0,OIF:SA:6:102,Europe/Paris,,OIF, +OIF:SP:6:104,1,"Grande Borne",49.015014,2.600199,0,0,OIF:SA:6:104,Europe/Paris,,OIF, +OIF:SP:6:105,1,"Grande Borne",49.014843,2.600239,0,0,OIF:SA:6:104,Europe/Paris,,OIF, +OIF:SP:6:106,1,"Rue du Gué",49.020742,2.59867,0,0,OIF:SA:6:106,Europe/Paris,,OIF, +OIF:SP:6:107,1,"Rue du Gué",49.020904,2.598507,0,0,OIF:SA:6:106,Europe/Paris,,OIF, +OIF:SP:6:108,1,"Rue de Guivry",49.023627,2.598453,0,0,OIF:SA:6:108,Europe/Paris,,OIF, +OIF:SP:6:109,1,"Rue de Guivry",49.023491,2.598957,0,0,OIF:SA:6:108,Europe/Paris,,OIF, +OIF:SP:6:11,1,"Tabac",48.978553,2.841184,0,0,OIF:SA:6:10,Europe/Paris,,OIF, +OIF:SP:6:110,1,"RN",49.019555,2.586299,0,0,OIF:SA:6:110,Europe/Paris,,OIF, +OIF:SP:6:111,1,"RN",49.020055,2.587804,0,0,OIF:SA:6:110,Europe/Paris,,OIF, +OIF:SP:6:114,1,"Meaux Train P",48.957236,2.874261,0,0,OIF:SA:8711610,Europe/Paris,,OIF, +OIF:SP:6:115,1,"Grands Moulins de Paris",48.956515,2.872698,0,0,OIF:SA:6:115,Europe/Paris,,OIF, +OIF:SP:6:116,1,"Henri 4",48.959398,2.8831,0,0,OIF:SA:6:116,Europe/Paris,,OIF, +OIF:SP:6:117,1,"Boulevard Jean Rose",48.962156,2.879239,0,0,OIF:SA:47:3169,Europe/Paris,,OIF, +OIF:SP:6:118,1,"Jean Villar",48.955636,2.893909,0,0,OIF:SA:47:3171,Europe/Paris,,OIF, +OIF:SP:6:119,1,"LEP Coubertin",48.957577,2.864357,0,0,OIF:SA:6:119,Europe/Paris,,OIF, +OIF:SP:6:12,1,"ZI de la Râperie",48.958892,2.849181,0,0,OIF:SA:6:12,Europe/Paris,,OIF, +OIF:SP:6:120,1,"Collège Langevin Lycée de Balzac",48.973222,2.650495,0,0,OIF:SA:6:120,Europe/Paris,,OIF, +OIF:SP:6:121,1,"Le Gué",49.026856,2.750112,0,0,OIF:SA:6:121,Europe/Paris,,OIF, +OIF:SP:6:122,1,"Le Gué",49.026475,2.750983,0,0,OIF:SA:6:121,Europe/Paris,,OIF, +OIF:SP:6:123,1,"La Barogne",49.06458,2.596704,0,0,OIF:SA:6:123,Europe/Paris,,OIF, +OIF:SP:6:124,1,"La Barogne",49.064697,2.596623,0,0,OIF:SA:6:123,Europe/Paris,,OIF, +OIF:SP:6:125,1,"Centre",49.063822,2.60243,0,0,OIF:SA:6:125,Europe/Paris,,OIF, +OIF:SP:6:126,1,"Centre",49.063687,2.602539,0,0,OIF:SA:6:125,Europe/Paris,,OIF, +OIF:SP:6:127,1,"Les Clos",49.066464,2.606273,0,0,OIF:SA:6:127,Europe/Paris,,OIF, +OIF:SP:6:128,1,"Les Echabots",49.061134,2.607175,0,0,OIF:SA:6:128,Europe/Paris,,OIF, +OIF:SP:6:129,1,"Les Echabots",49.061511,2.607286,0,0,OIF:SA:6:128,Europe/Paris,,OIF, +OIF:SP:6:13,1,"Gare Routière",48.972345,2.759969,0,0,OIF:SA:55:78,Europe/Paris,,OIF, +OIF:SP:6:130,1,"La Fortelle",49.064331,2.599862,0,0,OIF:SA:6:130,Europe/Paris,,OIF, +OIF:SP:6:131,1,"La Fortelle",49.064278,2.599561,0,0,OIF:SA:6:130,Europe/Paris,,OIF, +OIF:SP:6:132,1,"Rond-Point de l'Étang",49.068787,2.604507,0,0,OIF:SA:6:132,Europe/Paris,,OIF, +OIF:SP:6:134,1,"Institut Saint-Dominique",49.109185,2.605292,0,0,OIF:SA:6:134,Europe/Paris,,OIF, +OIF:SP:6:136,1,"Centre",49.007488,2.826604,0,0,OIF:SA:6:136,Europe/Paris,,OIF, +OIF:SP:6:137,1,"Centre",49.007487,2.826836,0,0,OIF:SA:6:136,Europe/Paris,,OIF, +OIF:SP:6:138,1,"Centre",49.007235,2.826861,0,0,OIF:SA:6:136,Europe/Paris,,OIF, +OIF:SP:6:139,1,"Château Gaillard",49.002989,2.845124,0,0,OIF:SA:6:139,Europe/Paris,,OIF, +OIF:SP:6:14,1,"La Poste",48.971539,2.764017,0,0,OIF:SA:55:153,Europe/Paris,,OIF, +OIF:SP:6:140,1,"Château Gaillard",49.002846,2.845,0,0,OIF:SA:6:139,Europe/Paris,,OIF, +OIF:SP:6:141,1,"Déchetterie",49.017994,2.824326,0,0,OIF:SA:6:141,Europe/Paris,,OIF, +OIF:SP:6:142,1,"Déchetterie",49.018031,2.824053,0,0,OIF:SA:6:141,Europe/Paris,,OIF, +OIF:SP:6:143,1,"Gambetta",49.003998,2.829603,0,0,OIF:SA:6:143,Europe/Paris,,OIF, +OIF:SP:6:144,1,"Gambetta",49.004087,2.829795,0,0,OIF:SA:6:143,Europe/Paris,,OIF, +OIF:SP:6:145,1,"La Marche",49.009686,2.836297,0,0,OIF:SA:6:145,Europe/Paris,,OIF, +OIF:SP:6:146,1,"La Marche",49.009865,2.836367,0,0,OIF:SA:6:145,Europe/Paris,,OIF, +OIF:SP:6:147,1,"Salle des Fêtes",49.009059,2.829146,0,0,OIF:SA:6:147,Europe/Paris,,OIF, +OIF:SP:6:148,1,"Salle des Fêtes",49.009187,2.828806,0,0,OIF:SA:6:147,Europe/Paris,,OIF, +OIF:SP:6:149,1,"Centre",49.046742,2.624489,0,0,OIF:SA:6:149,Europe/Paris,,OIF, +OIF:SP:6:15,1,"LEP Champs de Claye",48.938113,2.675983,0,0,OIF:SA:6:15,Europe/Paris,,OIF, +OIF:SP:6:150,1,"Centre",49.046895,2.62464,0,0,OIF:SA:6:149,Europe/Paris,,OIF, +OIF:SP:6:151,1,"Loto",49.050349,2.619423,0,0,OIF:SA:6:151,Europe/Paris,,OIF, +OIF:SP:6:152,1,"Les Ouches",49.043595,2.625373,0,0,OIF:SA:6:152,Europe/Paris,,OIF, +OIF:SP:6:153,1,"Les Ouches",49.043721,2.625401,0,0,OIF:SA:6:152,Europe/Paris,,OIF, +OIF:SP:6:157,1,"Centre",49.002963,2.699861,0,0,OIF:SA:6:157,Europe/Paris,,OIF, +OIF:SP:6:158,1,"Centre",49.002709,2.700337,0,0,OIF:SA:6:157,Europe/Paris,,OIF, +OIF:SP:6:159,1,"Rue du 26 Août 1944",49.071249,2.810208,0,0,OIF:SA:6:159,Europe/Paris,,OIF, +OIF:SP:6:16,1,"Mairie",48.993901,2.663676,0,0,OIF:SA:6:16,Europe/Paris,,OIF, +OIF:SP:6:160,1,"Collège Jean des Barres",49.071353,2.811207,0,0,OIF:SA:6:160,Europe/Paris,,OIF, +OIF:SP:6:161,1,"Claude Monet",49.066833,2.824637,0,0,OIF:SA:6:161,Europe/Paris,,OIF, +OIF:SP:6:162,1,"Claude Monet",49.066904,2.824774,0,0,OIF:SA:6:161,Europe/Paris,,OIF, +OIF:SP:6:163,1,"Rue de Condé",49.073337,2.820513,0,0,OIF:SA:6:163,Europe/Paris,,OIF, +OIF:SP:6:164,1,"Église",49.070113,2.817788,0,0,OIF:SA:6:164,Europe/Paris,,OIF, +OIF:SP:6:165,1,"Église",49.070417,2.818365,0,0,OIF:SA:6:164,Europe/Paris,,OIF, +OIF:SP:6:166,1,"Gros Merisier",49.073725,2.824647,0,0,OIF:SA:6:166,Europe/Paris,,OIF, +OIF:SP:6:167,1,"Hildevert",49.070954,2.816497,0,0,OIF:SA:6:167,Europe/Paris,,OIF, +OIF:SP:6:168,1,"Jeannine Pernette",49.070033,2.815421,0,0,OIF:SA:6:168,Europe/Paris,,OIF, +OIF:SP:6:169,1,"Jeannine Pernette",49.070214,2.815163,0,0,OIF:SA:6:168,Europe/Paris,,OIF, +OIF:SP:6:17,1,"Mairie",48.993839,2.663184,0,0,OIF:SA:6:16,Europe/Paris,,OIF, +OIF:SP:6:170,1,"La Paix",49.068312,2.823214,0,0,OIF:SA:6:170,Europe/Paris,,OIF, +OIF:SP:6:171,1,"La Paix",49.068835,2.822809,0,0,OIF:SA:6:170,Europe/Paris,,OIF, +OIF:SP:6:172,1,"Beaupré",49.081583,2.668827,0,0,OIF:SA:6:172,Europe/Paris,,OIF, +OIF:SP:6:173,1,"Froids Vents",49.078193,2.675918,0,0,OIF:SA:6:173,Europe/Paris,,OIF, +OIF:SP:6:174,1,"Froids Vents",49.078031,2.676095,0,0,OIF:SA:6:173,Europe/Paris,,OIF, +OIF:SP:6:175,1,"Guincourt",49.079573,2.674245,0,0,OIF:SA:6:175,Europe/Paris,,OIF, +OIF:SP:6:176,1,"Guincourt",49.079736,2.673904,0,0,OIF:SA:6:175,Europe/Paris,,OIF, +OIF:SP:6:177,1,"La Jalaise",49.071072,2.67739,0,0,OIF:SA:6:177,Europe/Paris,,OIF, +OIF:SP:6:178,1,"La Jalaise",49.071288,2.677487,0,0,OIF:SA:6:177,Europe/Paris,,OIF, +OIF:SP:6:179,1,"Mairie",49.075032,2.675296,0,0,OIF:SA:6:179,Europe/Paris,,OIF, +OIF:SP:6:18,1,"Le Blamont",48.97285,2.867461,0,0,OIF:SA:6:18,Europe/Paris,,OIF, +OIF:SP:6:180,1,"Mairie",49.075023,2.675419,0,0,OIF:SA:6:179,Europe/Paris,,OIF, +OIF:SP:6:181,1,"Pierre Auguste Caron",49.084248,2.650362,0,0,OIF:SA:6:181,Europe/Paris,,OIF, +OIF:SP:6:182,1,"Pierre Auguste Caron",49.084399,2.650773,0,0,OIF:SA:6:181,Europe/Paris,,OIF, +OIF:SP:6:183,1,"Saint-Laurent",49.083673,2.64661,0,0,OIF:SA:6:183,Europe/Paris,,OIF, +OIF:SP:6:184,1,"Route de Chambry",48.988474,2.860207,0,0,OIF:SA:6:184,Europe/Paris,,OIF, +OIF:SP:6:185,1,"Route de Chambry",48.987929,2.861376,0,0,OIF:SA:6:184,Europe/Paris,,OIF, +OIF:SP:6:186,1,"Mairie",48.985859,2.860112,0,0,OIF:SA:6:186,Europe/Paris,,OIF, +OIF:SP:6:187,1,"Mairie",48.98575,2.860466,0,0,OIF:SA:6:186,Europe/Paris,,OIF, +OIF:SP:6:188,1,"Les Penchardaises",48.990568,2.857989,0,0,OIF:SA:6:188,Europe/Paris,,OIF, +OIF:SP:6:189,1,"Résidence aux Bois",48.983516,2.85546,0,0,OIF:SA:6:189,Europe/Paris,,OIF, +OIF:SP:6:19,1,"Le Blamont",48.972055,2.868259,0,0,OIF:SA:6:18,Europe/Paris,,OIF, +OIF:SP:6:190,1,"Résidence aux Bois",48.983364,2.855335,0,0,OIF:SA:6:189,Europe/Paris,,OIF, +OIF:SP:6:192,1,"Mairie",49.095119,2.756378,0,0,OIF:SA:6:192,Europe/Paris,,OIF, +OIF:SP:6:193,1,"Mairie",49.095037,2.756568,0,0,OIF:SA:6:192,Europe/Paris,,OIF, +OIF:SP:6:194,1,"Pharmacie",49.092098,2.751646,0,0,OIF:SA:6:194,Europe/Paris,,OIF, +OIF:SP:6:195,1,"Pharmacie",49.092141,2.752358,0,0,OIF:SA:6:194,Europe/Paris,,OIF, +OIF:SP:6:196,1,"La Baste",48.997364,2.77491,0,0,OIF:SA:6:196,Europe/Paris,,OIF, +OIF:SP:6:197,1,"Centre",49.003049,2.768238,0,0,OIF:SA:6:197,Europe/Paris,,OIF, +OIF:SP:6:198,1,"Centre",49.00304,2.768443,0,0,OIF:SA:6:197,Europe/Paris,,OIF, +OIF:SP:6:199,1,"Église",49.007924,2.784275,0,0,OIF:SA:6:199,Europe/Paris,,OIF, +OIF:SP:6:2,1,"Chantonne",48.97689,2.839229,0,0,OIF:SA:6:2,Europe/Paris,,OIF, +OIF:SP:6:20,1,"Centre Commercial",48.975646,2.865183,0,0,OIF:SA:47:1766,Europe/Paris,,OIF, +OIF:SP:6:200,1,"Église",49.008058,2.784413,0,0,OIF:SA:6:199,Europe/Paris,,OIF, +OIF:SP:6:205,1,"Église",49.062146,2.717124,0,0,OIF:SA:6:205,Europe/Paris,,OIF, +OIF:SP:6:206,1,"Église",49.062281,2.717002,0,0,OIF:SA:6:205,Europe/Paris,,OIF, +OIF:SP:6:207,1,"Rouvrines",49.0638,2.716849,0,0,OIF:SA:6:207,Europe/Paris,,OIF, +OIF:SP:6:208,1,"Rouvrines",49.063424,2.716682,0,0,OIF:SA:6:207,Europe/Paris,,OIF, +OIF:SP:6:21,1,"Centre Commercial",48.976014,2.865269,0,0,OIF:SA:47:1766,Europe/Paris,,OIF, +OIF:SP:6:213,1,"Centre",49.035617,2.6945,0,0,OIF:SA:6:213,Europe/Paris,,OIF, +OIF:SP:6:214,1,"Centre",49.035625,2.694774,0,0,OIF:SA:6:213,Europe/Paris,,OIF, +OIF:SP:6:215,1,"Collège Georges Brassens",49.038566,2.70305,0,0,OIF:SA:6:215,Europe/Paris,,OIF, +OIF:SP:6:216,1,"Rue Curie",49.037937,2.700079,0,0,OIF:SA:6:216,Europe/Paris,,OIF, +OIF:SP:6:217,1,"Rue Curie",49.038134,2.70019,0,0,OIF:SA:6:216,Europe/Paris,,OIF, +OIF:SP:6:218,1,"Église",49.036424,2.692141,0,0,OIF:SA:6:218,Europe/Paris,,OIF, +OIF:SP:6:219,1,"Église",49.03656,2.691636,0,0,OIF:SA:6:218,Europe/Paris,,OIF, +OIF:SP:6:22,1,"Collège Georges Sand",48.979613,2.874357,0,0,OIF:SA:47:1769,Europe/Paris,,OIF, +OIF:SP:6:220,1,"Avenue de la Gare",49.033932,2.695992,0,0,OIF:SA:6:220,Europe/Paris,,OIF, +OIF:SP:6:221,1,"Avenue de la Gare",49.033896,2.696183,0,0,OIF:SA:6:220,Europe/Paris,,OIF, +OIF:SP:6:222,1,"Parc du Carrouge",49.035424,2.698982,0,0,OIF:SA:6:222,Europe/Paris,,OIF, +OIF:SP:6:223,1,"Parc du Carrouge",49.035898,2.699559,0,0,OIF:SA:6:222,Europe/Paris,,OIF, +OIF:SP:6:224,1,"Gare Saint-Mard",49.032378,2.698796,0,0,OIF:SA:8727153,Europe/Paris,,OIF, +OIF:SP:6:225,1,"Les Tournelles",49.039568,2.692463,0,0,OIF:SA:6:225,Europe/Paris,,OIF, +OIF:SP:6:226,1,"Les Tournelles",49.039612,2.692778,0,0,OIF:SA:6:225,Europe/Paris,,OIF, +OIF:SP:6:227,1,"Vignes de Pâques",49.041997,2.706395,0,0,OIF:SA:6:227,Europe/Paris,,OIF, +OIF:SP:6:228,1,"ZA Fontaine des Tournelles",49.037831,2.687189,0,0,OIF:SA:6:228,Europe/Paris,,OIF, +OIF:SP:6:229,1,"ZA Fontaine des Tournelles",49.038254,2.68711,0,0,OIF:SA:6:228,Europe/Paris,,OIF, +OIF:SP:6:23,1,"Centre",49.020522,2.772442,0,0,OIF:SA:6:23,Europe/Paris,,OIF, +OIF:SP:6:230,1,"Rue des Bouleaux",49.080132,2.792711,0,0,OIF:SA:6:230,Europe/Paris,,OIF, +OIF:SP:6:231,1,"Centre Commerciale",49.074811,2.788328,0,0,OIF:SA:6:231,Europe/Paris,,OIF, +OIF:SP:6:232,1,"Centre Commerciale",49.075469,2.787746,0,0,OIF:SA:6:231,Europe/Paris,,OIF, +OIF:SP:6:233,1,"Les Écoles",49.073188,2.792212,0,0,OIF:SA:6:233,Europe/Paris,,OIF, +OIF:SP:6:234,1,"Les Écoles",49.072931,2.793715,0,0,OIF:SA:6:233,Europe/Paris,,OIF, +OIF:SP:6:235,1,"Les Frênes",49.083568,2.789568,0,0,OIF:SA:6:235,Europe/Paris,,OIF, +OIF:SP:6:236,1,"Haute Garenne",49.078048,2.782913,0,0,OIF:SA:6:236,Europe/Paris,,OIF, +OIF:SP:6:237,1,"Mairie",49.069783,2.801346,0,0,OIF:SA:6:237,Europe/Paris,,OIF, +OIF:SP:6:238,1,"Mairie",49.069782,2.801592,0,0,OIF:SA:6:237,Europe/Paris,,OIF, +OIF:SP:6:239,1,"Maisonneuve",49.071578,2.797272,0,0,OIF:SA:6:239,Europe/Paris,,OIF, +OIF:SP:6:24,1,"Chambrefontaine",49.016166,2.779059,0,0,OIF:SA:6:24,Europe/Paris,,OIF, +OIF:SP:6:240,1,"Maisonneuve",49.071713,2.797233,0,0,OIF:SA:6:239,Europe/Paris,,OIF, +OIF:SP:6:241,1,"Moulin à Vent",49.071061,2.805392,0,0,OIF:SA:6:241,Europe/Paris,,OIF, +OIF:SP:6:242,1,"Moulin à Vent",49.071152,2.805078,0,0,OIF:SA:6:241,Europe/Paris,,OIF, +OIF:SP:6:243,1,"Les Ormes",49.081631,2.79096,0,0,OIF:SA:6:243,Europe/Paris,,OIF, +OIF:SP:6:244,1,"Les Ormes",49.081946,2.790662,0,0,OIF:SA:6:243,Europe/Paris,,OIF, +OIF:SP:6:245,1,"Rouge Chaperon",49.077073,2.784149,0,0,OIF:SA:6:245,Europe/Paris,,OIF, +OIF:SP:6:246,1,"Rouge Chaperon",49.077163,2.784191,0,0,OIF:SA:6:245,Europe/Paris,,OIF, +OIF:SP:6:247,1,"Les Sources",49.07651,2.7906,0,0,OIF:SA:6:247,Europe/Paris,,OIF, +OIF:SP:6:248,1,"Les Sources",49.076341,2.790202,0,0,OIF:SA:6:247,Europe/Paris,,OIF, +OIF:SP:6:249,1,"Stade",49.078277,2.793776,0,0,OIF:SA:6:249,Europe/Paris,,OIF, +OIF:SP:6:25,1,"Chambrefontaine",49.016066,2.779495,0,0,OIF:SA:6:24,Europe/Paris,,OIF, +OIF:SP:6:250,1,"Stade",49.077682,2.794331,0,0,OIF:SA:6:249,Europe/Paris,,OIF, +OIF:SP:6:251,1,"Rue de l'Yonne",49.068126,2.804613,0,0,OIF:SA:6:251,Europe/Paris,,OIF, +OIF:SP:6:252,1,"Rue de l'Yonne",49.068127,2.804217,0,0,OIF:SA:6:251,Europe/Paris,,OIF, +OIF:SP:6:253,1,"ZA Noefort",49.065655,2.77605,0,0,OIF:SA:6:253,Europe/Paris,,OIF, +OIF:SP:6:254,1,"Collège Nicolas Tronchon",49.03833,2.815442,0,0,OIF:SA:47:4746,Europe/Paris,,OIF, +OIF:SP:6:255,1,"Église",49.039634,2.806105,0,0,OIF:SA:6:255,Europe/Paris,,OIF, +OIF:SP:6:256,1,"Église",49.039695,2.806639,0,0,OIF:SA:6:255,Europe/Paris,,OIF, +OIF:SP:6:257,1,"Ferme de l'Etrille",49.037701,2.801727,0,0,OIF:SA:6:257,Europe/Paris,,OIF, +OIF:SP:6:258,1,"Ferme de l'Etrille",49.037699,2.802233,0,0,OIF:SA:6:257,Europe/Paris,,OIF, +OIF:SP:6:259,1,"Logis Vert",49.042498,2.809097,0,0,OIF:SA:6:259,Europe/Paris,,OIF, +OIF:SP:6:26,1,"Bergamottes",49.058785,2.690791,0,0,OIF:SA:6:26,Europe/Paris,,OIF, +OIF:SP:6:260,1,"Logis Vert",49.042317,2.809246,0,0,OIF:SA:6:259,Europe/Paris,,OIF, +OIF:SP:6:261,1,"Maréchal Gallieni",49.034306,2.803583,0,0,OIF:SA:6:261,Europe/Paris,,OIF, +OIF:SP:6:262,1,"Maréchal Gallieni",49.034367,2.804021,0,0,OIF:SA:6:261,Europe/Paris,,OIF, +OIF:SP:6:263,1,"ZI Épinette",49.036788,2.798466,0,0,OIF:SA:6:263,Europe/Paris,,OIF, +OIF:SP:6:264,1,"ZI Épinette",49.036625,2.798697,0,0,OIF:SA:6:263,Europe/Paris,,OIF, +OIF:SP:6:265,1,"ZI du Sauvoy",49.03058,2.805052,0,0,OIF:SA:6:265,Europe/Paris,,OIF, +OIF:SP:6:266,1,"ZI du Sauvoy",49.030768,2.805122,0,0,OIF:SA:6:265,Europe/Paris,,OIF, +OIF:SP:6:267,1,"Trois Villes",49.007392,2.66928,0,0,OIF:SA:6:267,Europe/Paris,,OIF, +OIF:SP:6:268,1,"Trois Villes",49.007491,2.669335,0,0,OIF:SA:6:267,Europe/Paris,,OIF, +OIF:SP:6:269,1,"Centre",49.010217,2.667959,0,0,OIF:SA:6:269,Europe/Paris,,OIF, +OIF:SP:6:27,1,"Brabant",49.058732,2.69961,0,0,OIF:SA:6:27,Europe/Paris,,OIF, +OIF:SP:6:270,1,"Centre",49.010334,2.668083,0,0,OIF:SA:6:269,Europe/Paris,,OIF, +OIF:SP:6:271,1,"Saule Madame",49.008003,2.669352,0,0,OIF:SA:6:271,Europe/Paris,,OIF, +OIF:SP:6:272,1,"Saule Madame",49.00811,2.669462,0,0,OIF:SA:6:271,Europe/Paris,,OIF, +OIF:SP:6:276,1,"Carrefour",49.033185,2.634431,0,0,OIF:SA:6:276,Europe/Paris,,OIF, +OIF:SP:6:277,1,"Carrefour",49.033283,2.634623,0,0,OIF:SA:6:276,Europe/Paris,,OIF, +OIF:SP:6:278,1,"Centre",49.033855,2.639437,0,0,OIF:SA:6:278,Europe/Paris,,OIF, +OIF:SP:6:279,1,"Centre",49.033729,2.639532,0,0,OIF:SA:6:278,Europe/Paris,,OIF, +OIF:SP:6:28,1,"Brabant",49.058885,2.699447,0,0,OIF:SA:6:27,Europe/Paris,,OIF, +OIF:SP:6:280,1,"Ferme de Stains",49.020787,2.647354,0,0,OIF:SA:6:280,Europe/Paris,,OIF, +OIF:SP:6:281,1,"Ferme de Stains",49.020968,2.646945,0,0,OIF:SA:6:280,Europe/Paris,,OIF, +OIF:SP:6:282,1,"Jeu de Paume",49.03303,2.635209,0,0,OIF:SA:6:282,Europe/Paris,,OIF, +OIF:SP:6:283,1,"Jeu de Paume",49.032993,2.635715,0,0,OIF:SA:6:282,Europe/Paris,,OIF, +OIF:SP:6:284,1,"Centre",49.010627,2.733985,0,0,OIF:SA:6:284,Europe/Paris,,OIF, +OIF:SP:6:285,1,"Centre",49.010474,2.73397,0,0,OIF:SA:6:284,Europe/Paris,,OIF, +OIF:SP:6:286,1,"Centre",48.982185,2.782168,0,0,OIF:SA:6:286,Europe/Paris,,OIF, +OIF:SP:6:287,1,"Centre",48.981899,2.781934,0,0,OIF:SA:6:286,Europe/Paris,,OIF, +OIF:SP:6:288,1,"Marie Feuchère",49.045913,2.509258,0,0,OIF:SA:6:288,Europe/Paris,,OIF, +OIF:SP:6:289,1,"Marie Feuchère",49.046011,2.509409,0,0,OIF:SA:6:288,Europe/Paris,,OIF, +OIF:SP:6:29,1,"Canada",49.056056,2.695981,0,0,OIF:SA:6:29,Europe/Paris,,OIF, +OIF:SP:6:290,1,"Parc",49.048145,2.506354,0,0,OIF:SA:6:290,Europe/Paris,,OIF, +OIF:SP:6:291,1,"Parc",49.047687,2.506694,0,0,OIF:SA:6:290,Europe/Paris,,OIF, +OIF:SP:6:292,1,"Louvres RER D",49.049302,2.501422,0,0,OIF:SA:8727625,Europe/Paris,,OIF, +OIF:SP:6:293,1,"ZI",49.018603,2.598687,0,0,OIF:SA:6:293,Europe/Paris,,OIF, +OIF:SP:6:294,1,"ZI",49.018837,2.598497,0,0,OIF:SA:6:293,Europe/Paris,,OIF, +OIF:SP:6:295,1,"22 Arpents",49.064437,2.592314,0,0,OIF:SA:6:295,Europe/Paris,,OIF, +OIF:SP:6:296,1,"22 Arpents",49.064653,2.59226,0,0,OIF:SA:6:295,Europe/Paris,,OIF, +OIF:SP:6:297,1,"Les Dix Arpents",49.0671,2.573509,0,0,OIF:SA:6:297,Europe/Paris,,OIF, +OIF:SP:6:298,1,"Les Dix Arpents",49.067243,2.57366,0,0,OIF:SA:6:297,Europe/Paris,,OIF, +OIF:SP:6:299,1,"Vémars Centre",49.069035,2.567117,0,0,OIF:SA:6:299,Europe/Paris,,OIF, +OIF:SP:6:3,1,"Chantonne",48.976773,2.839337,0,0,OIF:SA:6:2,Europe/Paris,,OIF, +OIF:SP:6:30,1,"Canada",49.056352,2.696079,0,0,OIF:SA:6:29,Europe/Paris,,OIF, +OIF:SP:6:300,1,"Vémars Centre",49.068236,2.566704,0,0,OIF:SA:6:299,Europe/Paris,,OIF, +OIF:SP:6:301,1,"Ferme de Vaulerand",49.052524,2.533807,0,0,OIF:SA:6:301,Europe/Paris,,OIF, +OIF:SP:6:302,1,"Ferme de Vaulerand",49.052381,2.533588,0,0,OIF:SA:6:301,Europe/Paris,,OIF, +OIF:SP:6:303,1,"Mairie",49.057084,2.542247,0,0,OIF:SA:6:303,Europe/Paris,,OIF, +OIF:SP:6:304,1,"Mairie",49.057327,2.542344,0,0,OIF:SA:6:303,Europe/Paris,,OIF, +OIF:SP:6:306,1,"Rue Périchet",49.012882,2.5843,0,0,OIF:SA:6:306,Europe/Paris,,OIF, +OIF:SP:6:307,1,"Rue Périchet",49.012775,2.584067,0,0,OIF:SA:6:306,Europe/Paris,,OIF, +OIF:SP:6:31,1,"Collège de l'Europe",49.063982,2.680707,0,0,OIF:SA:6:31,Europe/Paris,,OIF, +OIF:SP:6:311,1,"Institut Saint-Dominique",49.109185,2.605292,0,0,OIF:SA:6:134,Europe/Paris,,OIF, +OIF:SP:6:312,1,"Institut Saint-Dominique",49.109185,2.605292,0,0,OIF:SA:6:134,Europe/Paris,,OIF, +OIF:SP:6:313,1,"Institut Saint-Dominique",49.109185,2.605292,0,0,OIF:SA:6:134,Europe/Paris,,OIF, +OIF:SP:6:32,1,"Collège de l'Europe",49.063954,2.681172,0,0,OIF:SA:6:31,Europe/Paris,,OIF, +OIF:SP:6:322,1,"Centre Médical",49.067038,2.680508,0,0,OIF:SA:6:322,Europe/Paris,,OIF, +OIF:SP:6:323,1,"Centre Médical",49.067037,2.680618,0,0,OIF:SA:6:322,Europe/Paris,,OIF, +OIF:SP:6:324,1,"Aéroport CDG1 RER B",49.010253,2.559834,0,0,OIF:SA:8727146,Europe/Paris,,OIF, +OIF:SP:6:325,1,"Aéroport CDG1 RER B",49.010209,2.559301,0,0,OIF:SA:8727146,Europe/Paris,,OIF, +OIF:SP:6:33,1,"Chabannes",49.061822,2.684877,0,0,OIF:SA:6:33,Europe/Paris,,OIF, +OIF:SP:6:34,1,"Châtaigners",49.056393,2.691677,0,0,OIF:SA:6:34,Europe/Paris,,OIF, +OIF:SP:6:35,1,"Cif DDE",49.061895,2.702545,0,0,OIF:SA:6:35,Europe/Paris,,OIF, +OIF:SP:6:36,1,"La Corbie",49.055282,2.674729,0,0,OIF:SA:6:36,Europe/Paris,,OIF, +OIF:SP:6:37,1,"Dom Ganneron",49.061652,2.681457,0,0,OIF:SA:6:37,Europe/Paris,,OIF, +OIF:SP:6:38,1,"Route d'Eve",49.06067,2.685457,0,0,OIF:SA:6:38,Europe/Paris,,OIF, +OIF:SP:6:39,1,"Route d'Eve",49.060722,2.686237,0,0,OIF:SA:6:38,Europe/Paris,,OIF, +OIF:SP:6:4,1,"Cité Nouvelle",48.970389,2.839999,0,0,OIF:SA:6:4,Europe/Paris,,OIF, +OIF:SP:6:40,1,"Garenne",49.057599,2.687952,0,0,OIF:SA:6:40,Europe/Paris,,OIF, +OIF:SP:6:41,1,"Hays Logistique",49.062616,2.696082,0,0,OIF:SA:6:41,Europe/Paris,,OIF, +OIF:SP:6:42,1,"Herse d'Or",49.059474,2.694788,0,0,OIF:SA:6:42,Europe/Paris,,OIF, +OIF:SP:6:43,1,"Herse d'Or",49.059447,2.694856,0,0,OIF:SA:6:42,Europe/Paris,,OIF, +OIF:SP:6:44,1,"Jean Baptiste Delambre",49.054143,2.680259,0,0,OIF:SA:6:44,Europe/Paris,,OIF, +OIF:SP:6:45,1,"Lycée Charlotte Delbo",49.06488,2.680699,0,0,OIF:SA:6:45,Europe/Paris,,OIF, +OIF:SP:6:46,1,"Mairie",49.053916,2.678124,0,0,OIF:SA:6:46,Europe/Paris,,OIF, +OIF:SP:6:47,1,"Les Sablons",49.05235,2.688122,0,0,OIF:SA:6:47,Europe/Paris,,OIF, +OIF:SP:6:48,1,"Les Sablons",49.052485,2.688191,0,0,OIF:SA:6:47,Europe/Paris,,OIF, +OIF:SP:6:49,1,"Semoir",49.06121,2.694349,0,0,OIF:SA:6:49,Europe/Paris,,OIF, +OIF:SP:6:5,1,"Cité Nouvelle",48.970802,2.840098,0,0,OIF:SA:6:4,Europe/Paris,,OIF, +OIF:SP:6:50,1,"Semoir",49.061281,2.694705,0,0,OIF:SA:6:49,Europe/Paris,,OIF, +OIF:SP:6:51,1,"Saint-Fiacre",49.053762,2.684741,0,0,OIF:SA:6:51,Europe/Paris,,OIF, +OIF:SP:6:52,1,"Saint-Fiacre",49.05348,2.685901,0,0,OIF:SA:6:51,Europe/Paris,,OIF, +OIF:SP:6:53,1,"Trésor Public",49.05335,2.674894,0,0,OIF:SA:6:53,Europe/Paris,,OIF, +OIF:SP:6:54,1,"Trésor Public",49.053161,2.674852,0,0,OIF:SA:6:53,Europe/Paris,,OIF, +OIF:SP:6:6,1,"Église Saint-Saturnin",48.965807,2.841974,0,0,OIF:SA:6:6,Europe/Paris,,OIF, +OIF:SP:6:61,1,"Mairie",49.057598,2.847589,0,0,OIF:SA:6:61,Europe/Paris,,OIF, +OIF:SP:6:62,1,"Mairie",49.057461,2.848039,0,0,OIF:SA:6:61,Europe/Paris,,OIF, +OIF:SP:6:63,1,"Centre",49.043432,2.850552,0,0,OIF:SA:6:63,Europe/Paris,,OIF, +OIF:SP:6:64,1,"Centre",49.04371,2.85061,0,0,OIF:SA:6:63,Europe/Paris,,OIF, +OIF:SP:6:65,1,"Centre",49.000242,2.788634,0,0,OIF:SA:6:65,Europe/Paris,,OIF, +OIF:SP:6:66,1,"Centre",49.000062,2.788701,0,0,OIF:SA:6:65,Europe/Paris,,OIF, +OIF:SP:6:67,1,"Rue Barre",49.012818,2.706652,0,0,OIF:SA:6:67,Europe/Paris,,OIF, +OIF:SP:6:68,1,"Rue Barre",49.013455,2.706943,0,0,OIF:SA:6:67,Europe/Paris,,OIF, +OIF:SP:6:69,1,"Église Saint-Étienne",49.012274,2.705172,0,0,OIF:SA:6:69,Europe/Paris,,OIF, +OIF:SP:6:7,1,"Église Saint-Saturnin",48.966497,2.842295,0,0,OIF:SA:6:6,Europe/Paris,,OIF, +OIF:SP:6:70,1,"La Rochelle",49.010611,2.702483,0,0,OIF:SA:6:70,Europe/Paris,,OIF, +OIF:SP:6:71,1,"La Rochelle",49.01072,2.702183,0,0,OIF:SA:6:70,Europe/Paris,,OIF, +OIF:SP:6:72,1,"Mairie",49.015238,2.70574,0,0,OIF:SA:6:72,Europe/Paris,,OIF, +OIF:SP:6:73,1,"Mairie",49.015229,2.705562,0,0,OIF:SA:6:72,Europe/Paris,,OIF, +OIF:SP:6:74,1,"Verdiers",49.017477,2.705155,0,0,OIF:SA:6:74,Europe/Paris,,OIF, +OIF:SP:6:75,1,"Verdiers",49.017469,2.704977,0,0,OIF:SA:6:74,Europe/Paris,,OIF, +OIF:SP:6:76,1,"ZA la Source",49.014526,2.709314,0,0,OIF:SA:6:76,Europe/Paris,,OIF, +OIF:SP:6:77,1,"ZA la Source",49.014329,2.709135,0,0,OIF:SA:6:76,Europe/Paris,,OIF, +OIF:SP:6:78,1,"Château d'Eau",49.085254,2.745408,0,0,OIF:SA:6:78,Europe/Paris,,OIF, +OIF:SP:6:79,1,"Château d'Eau",49.086089,2.745866,0,0,OIF:SA:6:78,Europe/Paris,,OIF, +OIF:SP:6:8,1,"Mairie",48.973846,2.838613,0,0,OIF:SA:6:8,Europe/Paris,,OIF, +OIF:SP:6:80,1,"Belle Étoile",49.046316,2.664322,0,0,OIF:SA:6:80,Europe/Paris,,OIF, +OIF:SP:6:81,1,"Belle Étoile",49.046387,2.664814,0,0,OIF:SA:6:80,Europe/Paris,,OIF, +OIF:SP:6:82,1,"Condé",49.052329,2.667231,0,0,OIF:SA:6:82,Europe/Paris,,OIF, +OIF:SP:6:83,1,"Croisement",49.051169,2.670901,0,0,OIF:SA:6:83,Europe/Paris,,OIF, +OIF:SP:6:84,1,"Croisement",49.050971,2.670913,0,0,OIF:SA:6:83,Europe/Paris,,OIF, +OIF:SP:6:85,1,"Croisement",49.050979,2.67131,0,0,OIF:SA:6:83,Europe/Paris,,OIF, +OIF:SP:6:86,1,"Croisement",49.051455,2.671395,0,0,OIF:SA:6:83,Europe/Paris,,OIF, +OIF:SP:6:87,1,"Église",49.052114,2.663743,0,0,OIF:SA:6:87,Europe/Paris,,OIF, +OIF:SP:6:88,1,"Gazon",49.047459,2.66385,0,0,OIF:SA:6:88,Europe/Paris,,OIF, +OIF:SP:6:89,1,"Hamel",49.05237,2.658713,0,0,OIF:SA:6:89,Europe/Paris,,OIF, +OIF:SP:6:9,1,"Mairie",48.974034,2.838751,0,0,OIF:SA:6:8,Europe/Paris,,OIF, +OIF:SP:6:90,1,"Jeu d'Arc",49.052278,2.65632,0,0,OIF:SA:6:90,Europe/Paris,,OIF, +OIF:SP:6:91,1,"Lycée Charles de Gaulle",49.047064,2.666896,0,0,OIF:SA:6:91,Europe/Paris,,OIF, +OIF:SP:6:92,1,"Ponceau",49.049934,2.658917,0,0,OIF:SA:6:92,Europe/Paris,,OIF, +OIF:SP:6:93,1,"Lessart",49.05579,2.739842,0,0,OIF:SA:6:93,Europe/Paris,,OIF, +OIF:SP:6:94,1,"Lessart",49.055665,2.7398,0,0,OIF:SA:6:93,Europe/Paris,,OIF, +OIF:SP:6:95,1,"Mairie",49.050345,2.770479,0,0,OIF:SA:6:95,Europe/Paris,,OIF, +OIF:SP:6:96,1,"Mairie",49.049973,2.771514,0,0,OIF:SA:6:95,Europe/Paris,,OIF, +OIF:SP:6:97,1,"Mairie de Mauregard",49.032794,2.58091,0,0,OIF:SA:6:97,Europe/Paris,,OIF, +OIF:SP:6:98,1,"Mairie de Mauregard",49.032875,2.581102,0,0,OIF:SA:6:97,Europe/Paris,,OIF, +OIF:SP:6:99,1,"20 Arpents",49.019472,2.587528,0,0,OIF:SA:6:99,Europe/Paris,,OIF, +OIF:SP:70:1001,1,"Parc des Sports",48.917682,2.543863,0,0,OIF:SA:70:1001,Europe/Paris,,OIF, +OIF:SP:70:10029,1,"Chemin du Renard",48.926963,2.569746,0,0,OIF:SA:70:10029,Europe/Paris,,OIF, +OIF:SP:70:10033,1,"La Fontaine",48.938085,2.473526,0,0,OIF:SA:70:10033,Europe/Paris,,OIF, +OIF:SP:70:10053,1,"Jean Jaurès Jean Baptiste Clément",48.915482,2.57189,0,0,OIF:SA:70:10053,Europe/Paris,,OIF, +OIF:SP:70:10084,1,"Simiane",48.913032,2.52976,0,0,OIF:SA:70:10084,Europe/Paris,,OIF, +OIF:SP:70:10118,1,"Maison Rouge",48.894983,2.542491,0,0,OIF:SA:70:10118,Europe/Paris,,OIF, +OIF:SP:70:10173,1,"Bougainville",48.955652,2.496758,0,0,OIF:SA:70:10173,Europe/Paris,,OIF, +OIF:SP:70:10239,1,"La Limite",48.896684,2.530462,0,0,OIF:SA:70:10239,Europe/Paris,,OIF, +OIF:SP:70:10326,1,"René Camier",48.90855,2.451743,0,0,OIF:SA:59006,Europe/Paris,,OIF, +OIF:SP:70:10334,1,"Place Pierre Bérégovoy",48.946687,2.556545,0,0,OIF:SA:70:10334,Europe/Paris,,OIF, +OIF:SP:70:10419,1,"Route de Gonesse",48.952178,2.486881,0,0,OIF:SA:11:225,Europe/Paris,,OIF, +OIF:SP:70:1046,1,"Touraine",48.936899,2.585096,0,0,OIF:SA:70:1046,Europe/Paris,,OIF, +OIF:SP:70:10466,1,"Marne Strasbourg",48.91952,2.481017,0,0,OIF:SA:70:10466,Europe/Paris,,OIF, +OIF:SP:70:10479,1,"Les Fougères",48.956332,2.545737,0,0,OIF:SA:70:10479,Europe/Paris,,OIF, +OIF:SP:70:10525,1,"7 Îles",48.898875,2.54725,0,0,OIF:SA:70:10525,Europe/Paris,,OIF, +OIF:SP:70:10553,1,"Gabriel Péri",48.897328,2.55316,0,0,OIF:SA:70:10553,Europe/Paris,,OIF, +OIF:SP:70:10577,1,"Lilas",48.950089,2.51156,0,0,OIF:SA:70:10577,Europe/Paris,,OIF, +OIF:SP:70:10617,1,"Poudrerie",48.933437,2.553856,0,0,OIF:SA:55:157,Europe/Paris,,OIF, +OIF:SP:70:1068,1,"Charpentier",48.945537,2.546676,0,0,OIF:SA:70:1068,Europe/Paris,,OIF, +OIF:SP:70:10707,1,"Mairie",48.901197,2.569562,0,0,OIF:SA:59:3682241,Europe/Paris,,OIF, +OIF:SP:70:10754,1,"Georges Sachet",48.953855,2.548907,0,0,OIF:SA:70:10754,Europe/Paris,,OIF, +OIF:SP:70:10900,1,"Etienne Laurent",48.902625,2.550892,0,0,OIF:SA:70:10900,Europe/Paris,,OIF, +OIF:SP:70:10931,1,"Les Marronniers",48.912015,2.552049,0,0,OIF:SA:59:3682260,Europe/Paris,,OIF, +OIF:SP:70:10956,1,"Gare d'Aulnay sous Bois",48.931229,2.494227,0,0,OIF:SA:8727141,Europe/Paris,,OIF, +OIF:SP:70:10958,1,"Parc de la Noue",48.958599,2.544354,0,0,OIF:SA:70:10958,Europe/Paris,,OIF, +OIF:SP:70:10966,1,"Salengro",48.910178,2.527717,0,0,OIF:SA:59:3682204,Europe/Paris,,OIF, +OIF:SP:70:10974,1,"Général Maunoury",48.91319,2.457698,0,0,OIF:SA:70:10974,Europe/Paris,,OIF, +OIF:SP:70:11093,1,"Parc du Sausset",48.962813,2.517238,0,0,OIF:SA:70:11093,Europe/Paris,,OIF, +OIF:SP:70:11142,1,"Camille Desmoulins",48.949365,2.49446,0,0,OIF:SA:70:11142,Europe/Paris,,OIF, +OIF:SP:70:11151,1,"Maréchal Lyautey",48.93426,2.540192,0,0,OIF:SA:70:11151,Europe/Paris,,OIF, +OIF:SP:70:11203,1,"Croix Rouge",48.947821,2.492899,0,0,OIF:SA:11:229,Europe/Paris,,OIF, +OIF:SP:70:11261,1,"Avenue du Clocher",48.931704,2.501771,0,0,OIF:SA:70:11261,Europe/Paris,,OIF, +OIF:SP:70:11265,1,"Pont Blanc",48.94211,2.532596,0,0,OIF:SA:70:11265,Europe/Paris,,OIF, +OIF:SP:70:11363,1,"Etienne Dolet",48.910556,2.475403,0,0,OIF:SA:59:5150462,Europe/Paris,,OIF, +OIF:SP:70:11461,1,"Croix Rouge",48.946851,2.492433,0,0,OIF:SA:11:229,Europe/Paris,,OIF, +OIF:SP:70:11462,1,"Le Château",48.899502,2.563216,0,0,OIF:SA:70:11462,Europe/Paris,,OIF, +OIF:SP:70:11494,1,"Collège Henri IV",48.934392,2.563915,0,0,OIF:SA:70:11494,Europe/Paris,,OIF, +OIF:SP:70:11548,1,"Chemin de Roissy",48.951022,2.49149,0,0,OIF:SA:70:11548,Europe/Paris,,OIF, +OIF:SP:70:11553,1,"Altrincham Lénine",48.947763,2.448214,0,0,OIF:SA:59:4117699,Europe/Paris,,OIF, +OIF:SP:70:11588,1,"Lycée Jean Zay",48.938938,2.507249,0,0,OIF:SA:70:11588,Europe/Paris,,OIF, +OIF:SP:70:11635,1,"La Pérouse",48.954804,2.492525,0,0,OIF:SA:70:11635,Europe/Paris,,OIF, +OIF:SP:70:11690,1,"Rue de la Belle Etoile N165",48.982311,2.506438,0,0,OIF:SA:70:11690,Europe/Paris,,OIF, +OIF:SP:70:11706,1,"Gare de Sevran Livry",48.936355,2.534525,0,0,OIF:SA:8727142,Europe/Paris,,OIF, +OIF:SP:70:11767,1,"Concorde",48.915978,2.464727,0,0,OIF:SA:70:11767,Europe/Paris,,OIF, +OIF:SP:70:1178,1,"Église Saint-Nicolas",48.939493,2.430067,0,0,OIF:SA:59:4658230,Europe/Paris,,OIF, +OIF:SP:70:11867,1,"Coquelicots",48.889897,2.557122,0,0,OIF:SA:70:11867,Europe/Paris,,OIF, +OIF:SP:70:11869,1,"Marguilliers",48.994795,2.523646,0,0,OIF:SA:8798212,Europe/Paris,,OIF, +OIF:SP:70:11870,1,"Place Pierre Bérégovoy",48.94658,2.556476,0,0,OIF:SA:70:10334,Europe/Paris,,OIF, +OIF:SP:70:11927,1,"Friches Jean Jaurès",48.922075,2.504741,0,0,OIF:SA:70:11927,Europe/Paris,,OIF, +OIF:SP:70:11929,1,"René Deschamps",48.91429,2.454074,0,0,OIF:SA:70:11929,Europe/Paris,,OIF, +OIF:SP:70:11963,1,"Marc Sangnier",48.926524,2.545807,0,0,OIF:SA:70:11963,Europe/Paris,,OIF, +OIF:SP:70:12003,1,"Rue de l'Église",48.898837,2.567629,0,0,OIF:SA:70:12003,Europe/Paris,,OIF, +OIF:SP:70:12060,1,"Orléans Strasbourg",48.921743,2.483794,0,0,OIF:SA:70:12060,Europe/Paris,,OIF, +OIF:SP:70:12093,1,"Jean Jaurès Henri Barbusse",48.884297,2.531724,0,0,OIF:SA:70:12093,Europe/Paris,,OIF, +OIF:SP:70:12124,1,"Gagarine",48.904816,2.547125,0,0,OIF:SA:59:5794641,Europe/Paris,,OIF, +OIF:SP:70:1215,1,"Baudin",48.89825,2.477497,0,0,OIF:SA:59:5991384,Europe/Paris,,OIF, +OIF:SP:70:12230,1,"Augustin Marcos",48.935114,2.470299,0,0,OIF:SA:70:12230,Europe/Paris,,OIF, +OIF:SP:70:1239,1,"Écoles des Prévoyants",48.922863,2.507117,0,0,OIF:SA:70:1239,Europe/Paris,,OIF, +OIF:SP:70:12410,1,"Rue du Pavé",48.986251,2.5354,0,0,OIF:SA:70:12410,Europe/Paris,,OIF, +OIF:SP:70:12429,1,"Cité Emmaüs",48.949003,2.489383,0,0,OIF:SA:11:227,Europe/Paris,,OIF, +OIF:SP:70:12436,1,"Robert Bremond",48.953928,2.457425,0,0,OIF:SA:70:12436,Europe/Paris,,OIF, +OIF:SP:70:1251,1,"Anatole Sigonneau Centre d'Affaires",48.952728,2.462212,0,0,OIF:SA:70:1251,Europe/Paris,,OIF, +OIF:SP:70:12523,1,"Mairie",48.91878,2.537554,0,0,OIF:SA:55:124,Europe/Paris,,OIF, +OIF:SP:70:12530,1,"Henri Barbusse Mairie",48.938071,2.461167,0,0,OIF:SA:70:12530,Europe/Paris,,OIF, +OIF:SP:70:12570,1,"Gare de Sevran Beaudottes",48.948359,2.524952,0,0,OIF:SA:8727144,Europe/Paris,,OIF, +OIF:SP:70:12575,1,"Henri IV",48.935703,2.574302,0,0,OIF:SA:70:11494,Europe/Paris,,OIF, +OIF:SP:70:12627,1,"Villageoise",48.911327,2.49114,0,0,OIF:SA:59:5747173,Europe/Paris,,OIF, +OIF:SP:70:12650,1,"Les Bosquets",48.904343,2.560128,0,0,OIF:SA:59:3682257,Europe/Paris,,OIF, +OIF:SP:70:12698,1,"Pégoud",48.9406,2.448909,0,0,OIF:SA:70:12698,Europe/Paris,,OIF, +OIF:SP:70:12717,1,"Les Frênes",48.889651,2.558743,0,0,OIF:SA:70:12717,Europe/Paris,,OIF, +OIF:SP:70:12746,1,"Altrincham Lénine",48.947727,2.448487,0,0,OIF:SA:59:4117699,Europe/Paris,,OIF, +OIF:SP:70:12786,1,"Square Armand Lanoux",48.879567,2.594796,0,0,OIF:SA:70:12786,Europe/Paris,,OIF, +OIF:SP:70:12790,1,"Maurice de Broglie",48.947562,2.484166,0,0,OIF:SA:70:12790,Europe/Paris,,OIF, +OIF:SP:70:129,1,"Pierre Colongo",48.94033,2.590078,0,0,OIF:SA:70:129,Europe/Paris,,OIF, +OIF:SP:70:12907,1,"O'Parinor Louis Armand",48.954918,2.480203,0,0,OIF:SA:70:12907,Europe/Paris,,OIF, +OIF:SP:70:13053,1,"Avenue de Savigny",48.944965,2.516985,0,0,OIF:SA:70:13053,Europe/Paris,,OIF, +OIF:SP:70:13098,1,"Rue Rateau",48.925304,2.415434,0,0,OIF:SA:59:4658220,Europe/Paris,,OIF, +OIF:SP:70:13106,1,"Centre Postal",48.991194,2.544007,0,0,OIF:SA:70:13106,Europe/Paris,,OIF, +OIF:SP:70:13184,1,"Jean Charcot / Anatole France",48.935992,2.494787,0,0,OIF:SA:70:13184,Europe/Paris,,OIF, +OIF:SP:70:13207,1,"Rue du Chapitre",49.002557,2.536035,0,0,OIF:SA:59:3666608,Europe/Paris,,OIF, +OIF:SP:70:13264,1,"Les Mousseaux",48.962469,2.540589,0,0,OIF:SA:70:13264,Europe/Paris,,OIF, +OIF:SP:70:13317,1,"Europe",48.896382,2.563693,0,0,OIF:SA:70:13317,Europe/Paris,,OIF, +OIF:SP:70:13321,1,"Cruppet",48.977967,2.555948,0,0,OIF:SA:70:13321,Europe/Paris,,OIF, +OIF:SP:70:13335,1,"Jean Baptiste Clément",48.908878,2.530998,0,0,OIF:SA:59:5794638,Europe/Paris,,OIF, +OIF:SP:70:13412,1,"Place du Pâtis",48.915817,2.57965,0,0,OIF:SA:70:13412,Europe/Paris,,OIF, +OIF:SP:70:13415,1,"Maison de Retraite",48.911462,2.484023,0,0,OIF:SA:59:5150464,Europe/Paris,,OIF, +OIF:SP:70:13462,1,"Ethel et Julius Rosenberg",48.962379,2.524634,0,0,OIF:SA:70:13462,Europe/Paris,,OIF, +OIF:SP:70:13478,1,"Président Kennedy",48.915011,2.534635,0,0,OIF:SA:70:13478,Europe/Paris,,OIF, +OIF:SP:70:13484,1,"La Renardière",48.913592,2.564395,0,0,OIF:SA:70:13484,Europe/Paris,,OIF, +OIF:SP:70:13498,1,"Papillons",48.935302,2.518398,0,0,OIF:SA:70:13498,Europe/Paris,,OIF, +OIF:SP:70:135,1,"Gare de Villepinte",48.963081,2.511753,0,0,OIF:SA:8727145,Europe/Paris,,OIF, +OIF:SP:70:13526,1,"Henri Dunant",48.927075,2.495769,0,0,OIF:SA:70:13526,Europe/Paris,,OIF, +OIF:SP:70:13584,1,"Gare de Vert Galant",48.945167,2.568244,0,0,OIF:SA:8727143,Europe/Paris,,OIF, +OIF:SP:70:13615,1,"Jacques Schlosser",48.879895,2.592427,0,0,OIF:SA:70:13615,Europe/Paris,,OIF, +OIF:SP:70:13621,1,"Bobigny Pablo Picasso",48.906889,2.449681,0,0,OIF:SA:59342,Europe/Paris,,OIF, +OIF:SP:70:13661,1,"Mairie",48.911777,2.549079,0,0,OIF:SA:59:3682187,Europe/Paris,,OIF, +OIF:SP:70:13699,1,"Nations",48.97295,2.510953,0,0,OIF:SA:59:3666665,Europe/Paris,,OIF, +OIF:SP:70:13719,1,"Soleil Levant",48.940132,2.503626,0,0,OIF:SA:70:13719,Europe/Paris,,OIF, +OIF:SP:70:13787,1,"Les 4 Tours",48.925637,2.474312,0,0,OIF:SA:59:3672134,Europe/Paris,,OIF, +OIF:SP:70:1380,1,"La Croix Saint-Marc",48.960081,2.498136,0,0,OIF:SA:70:1380,Europe/Paris,,OIF, +OIF:SP:70:13819,1,"Iqbal Masih",48.940943,2.446351,0,0,OIF:SA:70:13819,Europe/Paris,,OIF, +OIF:SP:70:13839,1,"Petit Tremblay",48.984569,2.550152,0,0,OIF:SA:70:13839,Europe/Paris,,OIF, +OIF:SP:70:13852,1,"Clos Roger",48.891728,2.563032,0,0,OIF:SA:70:13852,Europe/Paris,,OIF, +OIF:SP:70:13899,1,"François Villon",48.921071,2.538163,0,0,OIF:SA:59:6869703,Europe/Paris,,OIF, +OIF:SP:70:13914,1,"Rabelais",48.917958,2.485569,0,0,OIF:SA:59:6869590,Europe/Paris,,OIF, +OIF:SP:70:13920,1,"Pivoines",48.885833,2.557786,0,0,OIF:SA:70:13920,Europe/Paris,,OIF, +OIF:SP:70:13959,1,"Marne Strasbourg",48.919892,2.481655,0,0,OIF:SA:70:10466,Europe/Paris,,OIF, +OIF:SP:70:13992,1,"Etienne Dolet",48.910584,2.474135,0,0,OIF:SA:59:5150462,Europe/Paris,,OIF, +OIF:SP:70:1400,1,"Avenue de la Plaine",48.924382,2.493606,0,0,OIF:SA:70:1400,Europe/Paris,,OIF, +OIF:SP:70:1401,1,"Botticelli",48.953022,2.501392,0,0,OIF:SA:70:1401,Europe/Paris,,OIF, +OIF:SP:70:1404,1,"Docteur Calmette",48.939327,2.472015,0,0,OIF:SA:59:6682705,Europe/Paris,,OIF, +OIF:SP:70:14065,1,"Victor Hugo",48.90257,2.56113,0,0,OIF:SA:70:14065,Europe/Paris,,OIF, +OIF:SP:70:14116,1,"Denis Papin",48.907301,2.586468,0,0,OIF:SA:70:14116,Europe/Paris,,OIF, +OIF:SP:70:14146,1,"Cimetière",48.889319,2.538312,0,0,OIF:SA:70:14146,Europe/Paris,,OIF, +OIF:SP:70:14152,1,"Berlioz",48.938529,2.534779,0,0,OIF:SA:70:14152,Europe/Paris,,OIF, +OIF:SP:70:14244,1,"Rue de Flandres",48.942128,2.572447,0,0,OIF:SA:70:14244,Europe/Paris,,OIF, +OIF:SP:70:14290,1,"Val Fleuri",48.881244,2.592406,0,0,OIF:SA:53:2443,Europe/Paris,,OIF, +OIF:SP:70:14317,1,"Gare de Vert Galant",48.945432,2.568437,0,0,OIF:SA:8727143,Europe/Paris,,OIF, +OIF:SP:70:14327,1,"Bellevue",48.899006,2.559369,0,0,OIF:SA:70:14327,Europe/Paris,,OIF, +OIF:SP:70:14342,1,"La Paix",48.939854,2.515208,0,0,OIF:SA:70:14342,Europe/Paris,,OIF, +OIF:SP:70:14393,1,"Collège Pablo Neruda",48.889559,2.545155,0,0,OIF:SA:70:14393,Europe/Paris,,OIF, +OIF:SP:70:14395,1,"Collège Claude Debussy",48.952094,2.509519,0,0,OIF:SA:70:14395,Europe/Paris,,OIF, +OIF:SP:70:14419,1,"Épis",48.976286,2.503374,0,0,OIF:SA:70:14419,Europe/Paris,,OIF, +OIF:SP:70:14424,1,"Maison de Fer",48.910433,2.584438,0,0,OIF:SA:70:14424,Europe/Paris,,OIF, +OIF:SP:70:14441,1,"Mairie",48.938853,2.460886,0,0,OIF:SA:59:4274297,Europe/Paris,,OIF, +OIF:SP:70:14445,1,"Gare de Sevran Beaudottes",48.947147,2.524306,0,0,OIF:SA:8727144,Europe/Paris,,OIF, +OIF:SP:70:14457,1,"Gare de Villepinte",48.963198,2.511685,0,0,OIF:SA:8727145,Europe/Paris,,OIF, +OIF:SP:70:14464,1,"Cité Jacques Decour",48.920548,2.476207,0,0,OIF:SA:70:14464,Europe/Paris,,OIF, +OIF:SP:70:14561,1,"Decour Emilie",48.922411,2.473962,0,0,OIF:SA:70:14561,Europe/Paris,,OIF, +OIF:SP:70:1459,1,"Lycée Claude Nicolas Ledoux",48.913933,2.491229,0,0,OIF:SA:59:6869708,Europe/Paris,,OIF, +OIF:SP:70:14591,1,"Paul Vaillant Couturier",48.926965,2.417074,0,0,OIF:SA:70:14591,Europe/Paris,,OIF, +OIF:SP:70:14686,1,"Frédéric Ladrette",48.907815,2.543401,0,0,OIF:SA:70:14686,Europe/Paris,,OIF, +OIF:SP:70:14740,1,"Chemin du Loup",48.961657,2.557673,0,0,OIF:SA:70:14740,Europe/Paris,,OIF, +OIF:SP:70:14758,1,"Jean Rostand",48.909176,2.453981,0,0,OIF:SA:59006,Europe/Paris,,OIF, +OIF:SP:70:14775,1,"Jean Charcot / Anatole France",48.935697,2.493545,0,0,OIF:SA:70:13184,Europe/Paris,,OIF, +OIF:SP:70:1482,1,"Albert David",48.931511,2.57379,0,0,OIF:SA:70:1482,Europe/Paris,,OIF, +OIF:SP:70:14903,1,"Hôpital Intercommunal",48.899106,2.57277,0,0,OIF:SA:59:3682253,Europe/Paris,,OIF, +OIF:SP:70:14938,1,"Rabelais",48.918102,2.485037,0,0,OIF:SA:59:6869590,Europe/Paris,,OIF, +OIF:SP:70:1494,1,"Rue des Peupliers",48.90558,2.464688,0,0,OIF:SA:59:6869789,Europe/Paris,,OIF, +OIF:SP:70:15,1,"Jouhaux Blum",48.917543,2.479499,0,0,OIF:SA:59:3682338,Europe/Paris,,OIF, +OIF:SP:70:15160,1,"Jussieu",48.953287,2.549778,0,0,OIF:SA:70:15160,Europe/Paris,,OIF, +OIF:SP:70:15212,1,"Jules Guesde",48.944044,2.446569,0,0,OIF:SA:70:15212,Europe/Paris,,OIF, +OIF:SP:70:15294,1,"Église Saint-Joseph",48.926009,2.500267,0,0,OIF:SA:70:15294,Europe/Paris,,OIF, +OIF:SP:70:15344,1,"Le Hameau",48.948948,2.503464,0,0,OIF:SA:70:15344,Europe/Paris,,OIF, +OIF:SP:70:15382,1,"Mésanges",48.894127,2.563301,0,0,OIF:SA:70:15382,Europe/Paris,,OIF, +OIF:SP:70:15403,1,"Garros",48.949909,2.44081,0,0,OIF:SA:70:15403,Europe/Paris,,OIF, +OIF:SP:70:15404,1,"Matisse Delacroix",48.954427,2.499415,0,0,OIF:SA:70:15404,Europe/Paris,,OIF, +OIF:SP:70:15415,1,"Place Henri Barbusse",48.961848,2.570558,0,0,OIF:SA:70:15415,Europe/Paris,,OIF, +OIF:SP:70:15443,1,"Saint-Germain",48.930269,2.506473,0,0,OIF:SA:70:15443,Europe/Paris,,OIF, +OIF:SP:70:15464,1,"Arago",48.904724,2.581261,0,0,OIF:SA:70:15464,Europe/Paris,,OIF, +OIF:SP:70:15581,1,"Charles de Gaulle",48.916877,2.53111,0,0,OIF:SA:55:169,Europe/Paris,,OIF, +OIF:SP:70:15593,1,"Galliéni",48.906272,2.487798,0,0,OIF:SA:70:15593,Europe/Paris,,OIF, +OIF:SP:70:15595,1,"Auguste Renoir",48.952498,2.490103,0,0,OIF:SA:70:15595,Europe/Paris,,OIF, +OIF:SP:70:15637,1,"La Poste",48.934918,2.569045,0,0,OIF:SA:70:15637,Europe/Paris,,OIF, +OIF:SP:70:15645,1,"Cité Jacques Decour",48.920548,2.476644,0,0,OIF:SA:70:14464,Europe/Paris,,OIF, +OIF:SP:70:15682,1,"Petit Tremblay",48.984263,2.550137,0,0,OIF:SA:70:13839,Europe/Paris,,OIF, +OIF:SP:70:15694,1,"Vivaldi",48.941616,2.543058,0,0,OIF:SA:70:15694,Europe/Paris,,OIF, +OIF:SP:70:15731,1,"Ronsard / Villon",48.913541,2.488433,0,0,OIF:SA:59:5150465,Europe/Paris,,OIF, +OIF:SP:70:15750,1,"Rue du Marché",48.939685,2.531278,0,0,OIF:SA:70:15750,Europe/Paris,,OIF, +OIF:SP:70:15752,1,"Émile Zola",48.907099,2.556732,0,0,OIF:SA:59:4035483,Europe/Paris,,OIF, +OIF:SP:70:1579,1,"Barrière Blanche",48.898399,2.552265,0,0,OIF:SA:70:1579,Europe/Paris,,OIF, +OIF:SP:70:15791,1,"Maison Guyot",48.894297,2.549372,0,0,OIF:SA:70:15791,Europe/Paris,,OIF, +OIF:SP:70:1582,1,"Saturne",48.956454,2.501755,0,0,OIF:SA:70:1582,Europe/Paris,,OIF, +OIF:SP:70:15890,1,"Piscine",48.943329,2.484359,0,0,OIF:SA:70:15890,Europe/Paris,,OIF, +OIF:SP:70:16115,1,"Ancien Cimetière",48.924285,2.55049,0,0,OIF:SA:70:16115,Europe/Paris,,OIF, +OIF:SP:70:16127,1,"République Marx Dormoy",48.906274,2.52394,0,0,OIF:SA:59:5794636,Europe/Paris,,OIF, +OIF:SP:70:16161,1,"Victor Hugo",48.902022,2.561168,0,0,OIF:SA:70:14065,Europe/Paris,,OIF, +OIF:SP:70:16184,1,"Les Rosiers",48.923904,2.513994,0,0,OIF:SA:70:16184,Europe/Paris,,OIF, +OIF:SP:70:16198,1,"Maison de Fer",48.910361,2.584301,0,0,OIF:SA:70:14424,Europe/Paris,,OIF, +OIF:SP:70:16232,1,"Fontaine Jean Valjean",48.894225,2.577736,0,0,OIF:SA:70:16232,Europe/Paris,,OIF, +OIF:SP:70:16237,1,"Bickart",48.884514,2.588784,0,0,OIF:SA:53:2567,Europe/Paris,,OIF, +OIF:SP:70:16260,1,"Lille",48.90789,2.471879,0,0,OIF:SA:70:16260,Europe/Paris,,OIF, +OIF:SP:70:16264,1,"Allée des Bosquets",48.901949,2.51974,0,0,OIF:SA:59:4035503,Europe/Paris,,OIF, +OIF:SP:70:16272,1,"Collège Victor Hugo",48.958117,2.495332,0,0,OIF:SA:70:16272,Europe/Paris,,OIF, +OIF:SP:70:16288,1,"La Courneuve 8 Mai 1945",48.920832,2.411094,0,0,OIF:SA:59320,Europe/Paris,,OIF, +OIF:SP:70:16326,1,"Émile Zola",48.906787,2.555326,0,0,OIF:SA:59:4035483,Europe/Paris,,OIF, +OIF:SP:70:16363,1,"L'Odéon",48.942517,2.570784,0,0,OIF:SA:70:16363,Europe/Paris,,OIF, +OIF:SP:70:1639,1,"Mairie",48.886034,2.535451,0,0,OIF:SA:70:1639,Europe/Paris,,OIF, +OIF:SP:70:16391,1,"Les Rosiers",48.923652,2.514156,0,0,OIF:SA:70:16184,Europe/Paris,,OIF, +OIF:SP:70:1658,1,"Pierre Sémard",48.929164,2.478822,0,0,OIF:SA:59:4889483,Europe/Paris,,OIF, +OIF:SP:70:16591,1,"André Citroën",48.954204,2.476776,0,0,OIF:SA:11:165,Europe/Paris,,OIF, +OIF:SP:70:16651,1,"Route de Tremblay",48.963743,2.536541,0,0,OIF:SA:70:16651,Europe/Paris,,OIF, +OIF:SP:70:16791,1,"IUT",48.975817,2.559372,0,0,OIF:SA:70:16791,Europe/Paris,,OIF, +OIF:SP:70:16818,1,"Jules Jouy",48.927691,2.492171,0,0,OIF:SA:70:16818,Europe/Paris,,OIF, +OIF:SP:70:16830,1,"Gare de Vert-Galant",48.945008,2.567386,0,0,OIF:SA:8727143,Europe/Paris,,OIF, +OIF:SP:70:16898,1,"La Dhuys",48.915742,2.590054,0,0,OIF:SA:70:16898,Europe/Paris,,OIF, +OIF:SP:70:16902,1,"Les 4 Tours",48.925457,2.47442,0,0,OIF:SA:59:3672134,Europe/Paris,,OIF, +OIF:SP:70:16922,1,"Paul Vaillant Couturier",48.928043,2.418753,0,0,OIF:SA:70:14591,Europe/Paris,,OIF, +OIF:SP:70:16954,1,"Romain Rolland",48.93355,2.574413,0,0,OIF:SA:70:16954,Europe/Paris,,OIF, +OIF:SP:70:17022,1,"Église Notre-Dame de Livry",48.921297,2.547723,0,0,OIF:SA:70:17022,Europe/Paris,,OIF, +OIF:SP:70:17066,1,"Parinor",48.954921,2.478429,0,0,OIF:SA:11:165,Europe/Paris,,OIF, +OIF:SP:70:17081,1,"Général de Gaulle",48.944259,2.547885,0,0,OIF:SA:70:17081,Europe/Paris,,OIF, +OIF:SP:70:17096,1,"7 Îles",48.899352,2.546694,0,0,OIF:SA:70:10525,Europe/Paris,,OIF, +OIF:SP:70:17116,1,"Rue d'Orléans",48.919726,2.487006,0,0,OIF:SA:70:17116,Europe/Paris,,OIF, +OIF:SP:70:17128,1,"Béarn",48.937399,2.590964,0,0,OIF:SA:70:17128,Europe/Paris,,OIF, +OIF:SP:70:17160,1,"Surcouf Jean Jaurès",48.920967,2.471545,0,0,OIF:SA:59:3672130,Europe/Paris,,OIF, +OIF:SP:70:17181,1,"Montesquieu",48.924655,2.534099,0,0,OIF:SA:70:17181,Europe/Paris,,OIF, +OIF:SP:70:17222,1,"Victoire",48.940495,2.445771,0,0,OIF:SA:70:17222,Europe/Paris,,OIF, +OIF:SP:70:17243,1,"Jussieu",48.952819,2.550171,0,0,OIF:SA:70:15160,Europe/Paris,,OIF, +OIF:SP:70:17325,1,"Papillons",48.93495,2.519188,0,0,OIF:SA:70:13498,Europe/Paris,,OIF, +OIF:SP:70:17406,1,"Saturne",48.955862,2.501521,0,0,OIF:SA:70:1582,Europe/Paris,,OIF, +OIF:SP:70:17418,1,"L'Herminier",48.938301,2.495272,0,0,OIF:SA:11:235,Europe/Paris,,OIF, +OIF:SP:70:17419,1,"Marc Chagall",48.952333,2.499081,0,0,OIF:SA:70:17419,Europe/Paris,,OIF, +OIF:SP:70:17423,1,"Place du Pâtis",48.915485,2.580042,0,0,OIF:SA:70:13412,Europe/Paris,,OIF, +OIF:SP:70:17435,1,"Jules Ferry",48.932123,2.534114,0,0,OIF:SA:70:17435,Europe/Paris,,OIF, +OIF:SP:70:1747,1,"Arts",48.889876,2.553769,0,0,OIF:SA:70:1747,Europe/Paris,,OIF, +OIF:SP:70:17518,1,"Jacques Salomon",48.948594,2.453224,0,0,OIF:SA:70:17518,Europe/Paris,,OIF, +OIF:SP:70:1759,1,"Tennis",48.956439,2.495533,0,0,OIF:SA:70:1759,Europe/Paris,,OIF, +OIF:SP:70:17617,1,"Lycée Alfred Nobel",48.902245,2.547141,0,0,OIF:SA:70:17617,Europe/Paris,,OIF, +OIF:SP:70:17651,1,"Gare d'Aulnay sous Bois",48.931651,2.494569,0,0,OIF:SA:8727141,Europe/Paris,,OIF, +OIF:SP:70:17706,1,"Ferme",48.917366,2.573644,0,0,OIF:SA:70:17706,Europe/Paris,,OIF, +OIF:SP:70:17718,1,"Route de Sevran",48.953085,2.531437,0,0,OIF:SA:70:17718,Europe/Paris,,OIF, +OIF:SP:70:17794,1,"Berlioz",48.938539,2.534479,0,0,OIF:SA:70:14152,Europe/Paris,,OIF, +OIF:SP:70:17797,1,"Bellevue",48.899359,2.558062,0,0,OIF:SA:70:14327,Europe/Paris,,OIF, +OIF:SP:70:17824,1,"Jean Charcot / Anatole France",48.936379,2.494352,0,0,OIF:SA:70:13184,Europe/Paris,,OIF, +OIF:SP:70:17862,1,"11 14 Avenue Albert Einstein",48.945745,2.470531,0,0,OIF:SA:70:17862,Europe/Paris,,OIF, +OIF:SP:70:17945,1,"Gare de Sevran Livry",48.935827,2.534983,0,0,OIF:SA:8727142,Europe/Paris,,OIF, +OIF:SP:70:17974,1,"Pierre Curie",48.93661,2.427333,0,0,OIF:SA:59:4658228,Europe/Paris,,OIF, +OIF:SP:70:18004,1,"Les Genettes",48.908461,2.539068,0,0,OIF:SA:59:3682226,Europe/Paris,,OIF, +OIF:SP:70:18108,1,"Montauban",48.929866,2.569813,0,0,OIF:SA:70:18108,Europe/Paris,,OIF, +OIF:SP:70:1813,1,"Sts Pères",48.983002,2.552057,0,0,OIF:SA:70:13839,Europe/Paris,,OIF, +OIF:SP:70:18144,1,"Paul Gauguin",48.89084,2.580705,0,0,OIF:SA:70:18144,Europe/Paris,,OIF, +OIF:SP:70:18195,1,"La Source",48.913606,2.588652,0,0,OIF:SA:70:18195,Europe/Paris,,OIF, +OIF:SP:70:18215,1,"Lycée Claude Nicolas Ledoux",48.913987,2.491134,0,0,OIF:SA:59:6869708,Europe/Paris,,OIF, +OIF:SP:70:18270,1,"Chavannes",48.898444,2.536548,0,0,OIF:SA:70:18270,Europe/Paris,,OIF, +OIF:SP:70:18286,1,"Clos Montceleux",48.954273,2.53529,0,0,OIF:SA:8798656,Europe/Paris,,OIF, +OIF:SP:70:1831,1,"Gabriel Péri",48.897606,2.553379,0,0,OIF:SA:70:10553,Europe/Paris,,OIF, +OIF:SP:70:18310,1,"Normandie",48.933343,2.506455,0,0,OIF:SA:70:18310,Europe/Paris,,OIF, +OIF:SP:70:18471,1,"Place Carnot",48.903069,2.483086,0,0,OIF:SA:70:18471,Europe/Paris,,OIF, +OIF:SP:70:18536,1,"Écoles",48.890949,2.552098,0,0,OIF:SA:70:18536,Europe/Paris,,OIF, +OIF:SP:70:18546,1,"Les Étangs",48.950932,2.498449,0,0,OIF:SA:70:18546,Europe/Paris,,OIF, +OIF:SP:70:18559,1,"Tuilerie",48.904523,2.565359,0,0,OIF:SA:59:4035480,Europe/Paris,,OIF, +OIF:SP:70:1861,1,"Altrincham",48.94794,2.451394,0,0,OIF:SA:59:4117697,Europe/Paris,,OIF, +OIF:SP:70:18632,1,"Village Cargo",48.991002,2.524014,0,0,OIF:SA:70:18632,Europe/Paris,,OIF, +OIF:SP:70:18699,1,"Decour Emilie",48.922294,2.473866,0,0,OIF:SA:70:14561,Europe/Paris,,OIF, +OIF:SP:70:18757,1,"Baron Roger",48.885065,2.534534,0,0,OIF:SA:70:18757,Europe/Paris,,OIF, +OIF:SP:70:18762,1,"Brazza",48.934652,2.56712,0,0,OIF:SA:55:191,Europe/Paris,,OIF, +OIF:SP:70:18797,1,"Balzac Nonneville",48.92052,2.492135,0,0,OIF:SA:70:18797,Europe/Paris,,OIF, +OIF:SP:70:18798,1,"Ancien Cimetière",48.924105,2.550503,0,0,OIF:SA:70:16115,Europe/Paris,,OIF, +OIF:SP:70:18811,1,"Blanqui Carnot",48.900419,2.481851,0,0,OIF:SA:59:3682330,Europe/Paris,,OIF, +OIF:SP:70:18833,1,"Armand Esders",48.947762,2.467494,0,0,OIF:SA:70:18833,Europe/Paris,,OIF, +OIF:SP:70:18876,1,"Pierre Sémard",48.929244,2.479559,0,0,OIF:SA:59:4889483,Europe/Paris,,OIF, +OIF:SP:70:1888,1,"Route de Gonesse",48.951498,2.484846,0,0,OIF:SA:11:225,Europe/Paris,,OIF, +OIF:SP:70:18886,1,"Jean Jaurès / Bois d'Amour",48.9144,2.460837,0,0,OIF:SA:70:18886,Europe/Paris,,OIF, +OIF:SP:70:18925,1,"École Jules Ferry",48.958896,2.572864,0,0,OIF:SA:70:18925,Europe/Paris,,OIF, +OIF:SP:70:19000,1,"Gare de Vert Galant",48.945054,2.566428,0,0,OIF:SA:8727143,Europe/Paris,,OIF, +OIF:SP:70:19002,1,"Mairie",48.901069,2.570924,0,0,OIF:SA:59:3682241,Europe/Paris,,OIF, +OIF:SP:70:19016,1,"Église Notre-Dame de Livry",48.921109,2.547409,0,0,OIF:SA:70:17022,Europe/Paris,,OIF, +OIF:SP:70:19080,1,"Jean Moulin",48.90642,2.578215,0,0,OIF:SA:70:19080,Europe/Paris,,OIF, +OIF:SP:70:19131,1,"Tennis",48.957039,2.494769,0,0,OIF:SA:70:1759,Europe/Paris,,OIF, +OIF:SP:70:19155,1,"Frédéric Ladrette",48.908247,2.543321,0,0,OIF:SA:70:14686,Europe/Paris,,OIF, +OIF:SP:70:19198,1,"Place de la Libération",48.943116,2.46616,0,0,OIF:SA:59:6682707,Europe/Paris,,OIF, +OIF:SP:70:19291,1,"Gare d'Aulnay sous Bois",48.932503,2.495827,0,0,OIF:SA:8727141,Europe/Paris,,OIF, +OIF:SP:70:19300,1,"Guy Mollet",48.944864,2.551257,0,0,OIF:SA:70:19300,Europe/Paris,,OIF, +OIF:SP:70:19325,1,"Soleil Levant",48.940133,2.502903,0,0,OIF:SA:70:13719,Europe/Paris,,OIF, +OIF:SP:70:19326,1,"Victoire",48.940306,2.445551,0,0,OIF:SA:70:17222,Europe/Paris,,OIF, +OIF:SP:70:19395,1,"Auguste Renoir",48.952254,2.490961,0,0,OIF:SA:70:15595,Europe/Paris,,OIF, +OIF:SP:70:19487,1,"Bellevue",48.899095,2.559506,0,0,OIF:SA:70:14327,Europe/Paris,,OIF, +OIF:SP:70:19510,1,"Corot",48.911832,2.581717,0,0,OIF:SA:70:19510,Europe/Paris,,OIF, +OIF:SP:70:19515,1,"Victor Hugo",48.902166,2.560923,0,0,OIF:SA:70:14065,Europe/Paris,,OIF, +OIF:SP:70:19525,1,"Rue du Marché",48.939703,2.531414,0,0,OIF:SA:70:15750,Europe/Paris,,OIF, +OIF:SP:70:19537,1,"La Source",48.913453,2.588761,0,0,OIF:SA:70:18195,Europe/Paris,,OIF, +OIF:SP:70:19540,1,"Pasteur",48.935341,2.475824,0,0,OIF:SA:70:19540,Europe/Paris,,OIF, +OIF:SP:70:19550,1,"Mairie",48.877793,2.592321,0,0,OIF:SA:53:2277,Europe/Paris,,OIF, +OIF:SP:70:19578,1,"Rue Dupuis",48.947729,2.501113,0,0,OIF:SA:70:19578,Europe/Paris,,OIF, +OIF:SP:70:19582,1,"Freinville",48.927245,2.521356,0,0,OIF:SA:8711389,Europe/Paris,,OIF, +OIF:SP:70:19763,1,"7 Îles",48.899685,2.546395,0,0,OIF:SA:70:10525,Europe/Paris,,OIF, +OIF:SP:70:19766,1,"Bougainville",48.955706,2.496826,0,0,OIF:SA:70:10173,Europe/Paris,,OIF, +OIF:SP:70:19777,1,"Lamartine",48.906685,2.455679,0,0,OIF:SA:59006,Europe/Paris,,OIF, +OIF:SP:70:19780,1,"Route d'Aulnay",48.93913,2.512777,0,0,OIF:SA:70:19780,Europe/Paris,,OIF, +OIF:SP:70:19796,1,"Mare Neuve",48.93696,2.572519,0,0,OIF:SA:70:19796,Europe/Paris,,OIF, +OIF:SP:70:1985,1,"Docteur Calmette",48.940022,2.471215,0,0,OIF:SA:59:6682705,Europe/Paris,,OIF, +OIF:SP:70:19917,1,"République",48.949975,2.566665,0,0,OIF:SA:70:19917,Europe/Paris,,OIF, +OIF:SP:70:19919,1,"Gare du Blanc Mesnil",48.932706,2.477577,0,0,OIF:SA:8727147,Europe/Paris,,OIF, +OIF:SP:70:1993,1,"Général Maunoury",48.913037,2.457616,0,0,OIF:SA:70:10974,Europe/Paris,,OIF, +OIF:SP:70:19940,1,"Gare du Chenay Gagny",48.87584,2.552403,0,0,OIF:SA:8711352,Europe/Paris,,OIF, +OIF:SP:70:19969,1,"Danielle Casanova",48.923796,2.473325,0,0,OIF:SA:59:3672132,Europe/Paris,,OIF, +OIF:SP:70:19994,1,"Cosmonautes",48.949707,2.455123,0,0,OIF:SA:59:4035750,Europe/Paris,,OIF, +OIF:SP:70:20022,1,"Vauban",48.92092,2.526052,0,0,OIF:SA:70:20022,Europe/Paris,,OIF, +OIF:SP:70:20064,1,"Suzanne Buisson",48.913922,2.478644,0,0,OIF:SA:59:3682337,Europe/Paris,,OIF, +OIF:SP:70:20189,1,"Gare de Gagny",48.883307,2.527346,0,0,OIF:SA:8711351,Europe/Paris,,OIF, +OIF:SP:70:20369,1,"Place Pierre Curie",48.940589,2.578102,0,0,OIF:SA:70:20369,Europe/Paris,,OIF, +OIF:SP:70:2040,1,"Gare de Sevran Beaudottes",48.946769,2.524373,0,0,OIF:SA:8727144,Europe/Paris,,OIF, +OIF:SP:70:20423,1,"Bargue",48.900748,2.555437,0,0,OIF:SA:70:20423,Europe/Paris,,OIF, +OIF:SP:70:20489,1,"Anatole Sigonneau Centre d'Affaires",48.95253,2.462266,0,0,OIF:SA:70:1251,Europe/Paris,,OIF, +OIF:SP:70:20659,1,"Aréna",48.879508,2.546858,0,0,OIF:SA:70:20659,Europe/Paris,,OIF, +OIF:SP:70:20672,1,"Freinville Westinghouse",48.927248,2.519488,0,0,OIF:SA:8711389,Europe/Paris,,OIF, +OIF:SP:70:20706,1,"Aréna",48.880146,2.547038,0,0,OIF:SA:70:20659,Europe/Paris,,OIF, +OIF:SP:70:20718,1,"Gambetta",48.895146,2.513923,0,0,OIF:SA:70:20718,Europe/Paris,,OIF, +OIF:SP:70:20812,1,"Jean Baptiste Clément",48.908886,2.531544,0,0,OIF:SA:59:5794638,Europe/Paris,,OIF, +OIF:SP:70:20974,1,"Pont de l'Union",48.92504,2.511447,0,0,OIF:SA:70:20974,Europe/Paris,,OIF, +OIF:SP:70:20990,1,"Rond-Point Île de France",48.915325,2.591688,0,0,OIF:SA:70:20990,Europe/Paris,,OIF, +OIF:SP:70:21013,1,"Croix Rouge",48.947607,2.491753,0,0,OIF:SA:11:229,Europe/Paris,,OIF, +OIF:SP:70:21059,1,"Collège Evariste Galois",48.945447,2.51947,0,0,OIF:SA:59:3682068,Europe/Paris,,OIF, +OIF:SP:70:21070,1,"Suzanne Buisson",48.913895,2.478671,0,0,OIF:SA:59:3682337,Europe/Paris,,OIF, +OIF:SP:70:21102,1,"Jardins de la Noue",48.919417,2.475468,0,0,OIF:SA:59:3672129,Europe/Paris,,OIF, +OIF:SP:70:21139,1,"École Jules Ferry",48.95869,2.57285,0,0,OIF:SA:70:18925,Europe/Paris,,OIF, +OIF:SP:70:21155,1,"Résidence Jean Monnet",48.929377,2.552162,0,0,OIF:SA:55:195,Europe/Paris,,OIF, +OIF:SP:70:21157,1,"Le Temple",48.899177,2.538705,0,0,OIF:SA:70:21157,Europe/Paris,,OIF, +OIF:SP:70:21205,1,"Collège Jean Jaurès",48.89755,2.559445,0,0,OIF:SA:70:21205,Europe/Paris,,OIF, +OIF:SP:70:21215,1,"République Marx Dormoy",48.905552,2.524277,0,0,OIF:SA:59:5794636,Europe/Paris,,OIF, +OIF:SP:70:21270,1,"Chêne Pointu",48.905776,2.542616,0,0,OIF:SA:70:21270,Europe/Paris,,OIF, +OIF:SP:70:21296,1,"Francisco Ferrer",48.943921,2.49541,0,0,OIF:SA:11:231,Europe/Paris,,OIF, +OIF:SP:70:21320,1,"Tennis",48.956931,2.49481,0,0,OIF:SA:70:1759,Europe/Paris,,OIF, +OIF:SP:70:21373,1,"Bas Prés",48.916178,2.583511,0,0,OIF:SA:70:21373,Europe/Paris,,OIF, +OIF:SP:70:21401,1,"La Courneuve 8 Mai 1945",48.921415,2.411637,0,0,OIF:SA:59320,Europe/Paris,,OIF, +OIF:SP:70:21410,1,"François Arago",48.945443,2.483137,0,0,OIF:SA:70:21410,Europe/Paris,,OIF, +OIF:SP:70:21588,1,"Cimetière",48.939416,2.525247,0,0,OIF:SA:59:3682064,Europe/Paris,,OIF, +OIF:SP:70:21603,1,"Chemin de Roissy",48.950294,2.491774,0,0,OIF:SA:70:11548,Europe/Paris,,OIF, +OIF:SP:70:21639,1,"Hôpital Intercommunal",48.899174,2.574583,0,0,OIF:SA:59:3682253,Europe/Paris,,OIF, +OIF:SP:70:21652,1,"Jean Jaurès Jean Baptiste Clément",48.915285,2.571575,0,0,OIF:SA:70:10053,Europe/Paris,,OIF, +OIF:SP:70:21660,1,"Maréchal Lyautey",48.934315,2.540069,0,0,OIF:SA:70:11151,Europe/Paris,,OIF, +OIF:SP:70:21758,1,"L'Ermitage",48.906684,2.571563,0,0,OIF:SA:70:21758,Europe/Paris,,OIF, +OIF:SP:70:21827,1,"Vallée des Anges",48.908243,2.534718,0,0,OIF:SA:70:21827,Europe/Paris,,OIF, +OIF:SP:70:2183,1,"Église Notre-Dame",48.936656,2.46501,0,0,OIF:SA:59:6682701,Europe/Paris,,OIF, +OIF:SP:70:21879,1,"Freinville Westinghouse",48.927032,2.520073,0,0,OIF:SA:8711389,Europe/Paris,,OIF, +OIF:SP:70:21941,1,"Lille",48.907971,2.472206,0,0,OIF:SA:59:4118161,Europe/Paris,,OIF, +OIF:SP:70:21943,1,"Salengro",48.909434,2.526488,0,0,OIF:SA:59:3682204,Europe/Paris,,OIF, +OIF:SP:70:21992,1,"Gambetta",48.894275,2.513347,0,0,OIF:SA:70:20718,Europe/Paris,,OIF, +OIF:SP:70:22095,1,"Rue des Peupliers",48.905839,2.465534,0,0,OIF:SA:59:6869789,Europe/Paris,,OIF, +OIF:SP:70:22198,1,"République",48.949855,2.565799,0,0,OIF:SA:70:19917,Europe/Paris,,OIF, +OIF:SP:70:22272,1,"Le Havre / Collège Simone Veil",48.922015,2.489017,0,0,OIF:SA:70:16004,Europe/Paris,,OIF, +OIF:SP:70:22341,1,"Hôpital Intercommunal Robert Ballanger",48.951518,2.527501,0,0,OIF:SA:70:22341,Europe/Paris,,OIF, +OIF:SP:70:22356,1,"Poissons",48.957556,2.504488,0,0,OIF:SA:70:22356,Europe/Paris,,OIF, +OIF:SP:70:22365,1,"Racine",48.936117,2.481228,0,0,OIF:SA:70:22365,Europe/Paris,,OIF, +OIF:SP:70:2244,1,"Cité Emmaüs",48.949003,2.489028,0,0,OIF:SA:11:227,Europe/Paris,,OIF, +OIF:SP:70:22535,1,"Soleil Levant",48.939721,2.50147,0,0,OIF:SA:70:13719,Europe/Paris,,OIF, +OIF:SP:70:22573,1,"Garonor Porte Sud",48.956155,2.462155,0,0,OIF:SA:59:3666746,Europe/Paris,,OIF, +OIF:SP:70:22593,1,"Cité Administrative",48.905556,2.461362,0,0,OIF:SA:59008,Europe/Paris,,OIF, +OIF:SP:70:22599,1,"Blaise Pascal",48.949704,2.482126,0,0,OIF:SA:70:22599,Europe/Paris,,OIF, +OIF:SP:70:22600,1,"Corot",48.912003,2.581582,0,0,OIF:SA:70:19510,Europe/Paris,,OIF, +OIF:SP:70:2284,1,"Les Étangs",48.950547,2.497451,0,0,OIF:SA:70:18546,Europe/Paris,,OIF, +OIF:SP:70:22849,1,"Plaine République",48.949654,2.55623,0,0,OIF:SA:70:22849,Europe/Paris,,OIF, +OIF:SP:70:22865,1,"Mairie",48.932791,2.567303,0,0,OIF:SA:70:22865,Europe/Paris,,OIF, +OIF:SP:70:22894,1,"Pégoud",48.940455,2.45015,0,0,OIF:SA:70:12698,Europe/Paris,,OIF, +OIF:SP:70:22933,1,"Marc Chagall",48.952691,2.498473,0,0,OIF:SA:70:17419,Europe/Paris,,OIF, +OIF:SP:70:22940,1,"Mésanges",48.894883,2.563155,0,0,OIF:SA:70:15382,Europe/Paris,,OIF, +OIF:SP:70:22955,1,"Église Notre-Dame",48.93653,2.465174,0,0,OIF:SA:59:6682701,Europe/Paris,,OIF, +OIF:SP:70:2302,1,"Gros Saule Beaudottes",48.949638,2.521575,0,0,OIF:SA:70:2302,Europe/Paris,,OIF, +OIF:SP:70:23032,1,"Les 2 Cèdres",49.001887,2.528165,0,0,OIF:SA:59:3666650,Europe/Paris,,OIF, +OIF:SP:70:23044,1,"Brunetière",48.935753,2.485006,0,0,OIF:SA:70:23044,Europe/Paris,,OIF, +OIF:SP:70:23081,1,"Route d'Aulnay Jean Moulin",48.912338,2.480808,0,0,OIF:SA:59:6682667,Europe/Paris,,OIF, +OIF:SP:70:23109,1,"La Pelouse",48.910035,2.553636,0,0,OIF:SA:59:3682259,Europe/Paris,,OIF, +OIF:SP:70:23140,1,"Lefèvre",48.940599,2.490477,0,0,OIF:SA:70:23140,Europe/Paris,,OIF, +OIF:SP:70:2319,1,"Marx Dormoy",48.94306,2.441342,0,0,OIF:SA:70:2319,Europe/Paris,,OIF, +OIF:SP:70:23207,1,"Hôpital Intercommunal",48.899006,2.573287,0,0,OIF:SA:59:3682253,Europe/Paris,,OIF, +OIF:SP:70:23211,1,"Jean Rostand",48.909329,2.454349,0,0,OIF:SA:59006,Europe/Paris,,OIF, +OIF:SP:70:2324,1,"Le Parc",48.940023,2.441254,0,0,OIF:SA:70:2324,Europe/Paris,,OIF, +OIF:SP:70:23256,1,"Route d'Aulnay",48.939292,2.5129,0,0,OIF:SA:70:19780,Europe/Paris,,OIF, +OIF:SP:70:2326,1,"Ballet Nonneville",48.921202,2.492901,0,0,OIF:SA:70:2326,Europe/Paris,,OIF, +OIF:SP:70:23349,1,"Rue du Chapitre",49.00245,2.535625,0,0,OIF:SA:59:3666608,Europe/Paris,,OIF, +OIF:SP:70:23366,1,"Terminal 2 Route de Service",49.003866,2.558618,0,0,OIF:SA:70:23366,Europe/Paris,,OIF, +OIF:SP:70:23378,1,"Fontaine Mallet",48.951486,2.552008,0,0,OIF:SA:70:23378,Europe/Paris,,OIF, +OIF:SP:70:23392,1,"Maison de Retraite",48.951637,2.567073,0,0,OIF:SA:70:23392,Europe/Paris,,OIF, +OIF:SP:70:23439,1,"Tennis",48.956994,2.494865,0,0,OIF:SA:70:1759,Europe/Paris,,OIF, +OIF:SP:70:23484,1,"Normandie",48.933577,2.505597,0,0,OIF:SA:70:18310,Europe/Paris,,OIF, +OIF:SP:70:23499,1,"Place Carnot",48.903365,2.483605,0,0,OIF:SA:70:18471,Europe/Paris,,OIF, +OIF:SP:70:23514,1,"Pasteur",48.93508,2.476165,0,0,OIF:SA:70:19540,Europe/Paris,,OIF, +OIF:SP:70:23595,1,"Vieux Pays",48.941991,2.497875,0,0,OIF:SA:70:23595,Europe/Paris,,OIF, +OIF:SP:70:23684,1,"Vallée des Anges",48.908369,2.5348,0,0,OIF:SA:70:21827,Europe/Paris,,OIF, +OIF:SP:70:23717,1,"Cerisiers",48.912458,2.452475,0,0,OIF:SA:70:23717,Europe/Paris,,OIF, +OIF:SP:70:23722,1,"Voie des Prés",48.96038,2.532474,0,0,OIF:SA:70:23722,Europe/Paris,,OIF, +OIF:SP:70:2378,1,"Maison de Retraite",48.952348,2.566544,0,0,OIF:SA:70:23392,Europe/Paris,,OIF, +OIF:SP:70:23780,1,"IUT",48.975404,2.55952,0,0,OIF:SA:70:16791,Europe/Paris,,OIF, +OIF:SP:70:23788,1,"Ampère",48.904616,2.585378,0,0,OIF:SA:70:23788,Europe/Paris,,OIF, +OIF:SP:70:23799,1,"Les Saules",48.949448,2.499222,0,0,OIF:SA:70:23799,Europe/Paris,,OIF, +OIF:SP:70:23809,1,"Gare de Sevran Livry",48.93599,2.534798,0,0,OIF:SA:8727142,Europe/Paris,,OIF, +OIF:SP:70:2388,1,"Avenue du Coteau École Normale",48.912745,2.540653,0,0,OIF:SA:70:2388,Europe/Paris,,OIF, +OIF:SP:70:23885,1,"Audran",48.940181,2.462573,0,0,OIF:SA:59:4274295,Europe/Paris,,OIF, +OIF:SP:70:23909,1,"Gaston Bussière",48.938341,2.529185,0,0,OIF:SA:59:3682062,Europe/Paris,,OIF, +OIF:SP:70:23936,1,"Place Henri Barbusse",48.961685,2.571403,0,0,OIF:SA:70:15415,Europe/Paris,,OIF, +OIF:SP:70:23955,1,"Floréal",48.951227,2.443965,0,0,OIF:SA:70:23955,Europe/Paris,,OIF, +OIF:SP:70:23966,1,"Anizan Cavillon Mairie",48.934742,2.425543,0,0,OIF:SA:59:4658226,Europe/Paris,,OIF, +OIF:SP:70:23996,1,"Jean Jaurès Henri Barbusse",48.884567,2.531684,0,0,OIF:SA:70:12093,Europe/Paris,,OIF, +OIF:SP:70:24072,1,"Centre Commercial Paris Nord 2",48.975353,2.495562,0,0,OIF:SA:70:24072,Europe/Paris,,OIF, +OIF:SP:70:24101,1,"Cimetière",48.939147,2.524891,0,0,OIF:SA:59:3682064,Europe/Paris,,OIF, +OIF:SP:70:24103,1,"Freinville Henri IV",48.927205,2.518478,0,0,OIF:SA:8711389,Europe/Paris,,OIF, +OIF:SP:70:24133,1,"Lefèvre",48.940976,2.490682,0,0,OIF:SA:70:23140,Europe/Paris,,OIF, +OIF:SP:70:24161,1,"Maréchal Leclerc",48.927029,2.489809,0,0,OIF:SA:70:24161,Europe/Paris,,OIF, +OIF:SP:70:2423,1,"Gare d'Aulnay sous Bois",48.932494,2.496222,0,0,OIF:SA:8727141,Europe/Paris,,OIF, +OIF:SP:70:24310,1,"Léo Lagrange",48.924197,2.522546,0,0,OIF:SA:70:24310,Europe/Paris,,OIF, +OIF:SP:70:24313,1,"Francisco Ferrer",48.944664,2.495312,0,0,OIF:SA:11:231,Europe/Paris,,OIF, +OIF:SP:70:24319,1,"Paul Bert",48.900267,2.56739,0,0,OIF:SA:59:4035573,Europe/Paris,,OIF, +OIF:SP:70:24416,1,"Village Cargo",48.9915,2.5243,0,0,OIF:SA:70:18632,Europe/Paris,,OIF, +OIF:SP:70:24427,1,"Le Temple",48.899238,2.540136,0,0,OIF:SA:70:21157,Europe/Paris,,OIF, +OIF:SP:70:24440,1,"Gare d'Aulnay sous Bois",48.932378,2.495745,0,0,OIF:SA:8727141,Europe/Paris,,OIF, +OIF:SP:70:24454,1,"Gay",48.893637,2.53563,0,0,OIF:SA:70:24454,Europe/Paris,,OIF, +OIF:SP:70:2452,1,"Chêne Pointu",48.905884,2.542889,0,0,OIF:SA:70:21270,Europe/Paris,,OIF, +OIF:SP:70:24532,1,"Surcouf Lejeune",48.920517,2.472471,0,0,OIF:SA:59:3731672,Europe/Paris,,OIF, +OIF:SP:70:24545,1,"Pasteur",48.935808,2.476508,0,0,OIF:SA:70:19540,Europe/Paris,,OIF, +OIF:SP:70:24577,1,"Verveines",48.885833,2.548288,0,0,OIF:SA:70:24577,Europe/Paris,,OIF, +OIF:SP:70:24584,1,"Les Genettes",48.908407,2.538877,0,0,OIF:SA:59:3682226,Europe/Paris,,OIF, +OIF:SP:70:2462,1,"Gare de Sevran Livry",48.934557,2.534737,0,0,OIF:SA:8727142,Europe/Paris,,OIF, +OIF:SP:70:24640,1,"Saint-Vincent de Paul",48.946749,2.561989,0,0,OIF:SA:70:24640,Europe/Paris,,OIF, +OIF:SP:70:24730,1,"Les 4 Chênes",48.887886,2.551158,0,0,OIF:SA:70:24730,Europe/Paris,,OIF, +OIF:SP:70:24742,1,"Fleurs",48.894434,2.552834,0,0,OIF:SA:70:24742,Europe/Paris,,OIF, +OIF:SP:70:24761,1,"Boieldieu",48.943488,2.546395,0,0,OIF:SA:70:24761,Europe/Paris,,OIF, +OIF:SP:70:2481,1,"Luther King",48.948339,2.531569,0,0,OIF:SA:8798655,Europe/Paris,,OIF, +OIF:SP:70:24844,1,"Haute Futaie",48.905837,2.568138,0,0,OIF:SA:70:24844,Europe/Paris,,OIF, +OIF:SP:70:24874,1,"Allée des Bosquets",48.901455,2.519465,0,0,OIF:SA:59:4035503,Europe/Paris,,OIF, +OIF:SP:70:24919,1,"Mairie",48.901328,2.571825,0,0,OIF:SA:59:3682241,Europe/Paris,,OIF, +OIF:SP:70:24941,1,"Collège Gérard Philipe",48.936976,2.504571,0,0,OIF:SA:70:24941,Europe/Paris,,OIF, +OIF:SP:70:24953,1,"Éric Tabarly",48.893867,2.558489,0,0,OIF:SA:70:24953,Europe/Paris,,OIF, +OIF:SP:70:25005,1,"Maurice Audin",48.946105,2.452563,0,0,OIF:SA:59:3666685,Europe/Paris,,OIF, +OIF:SP:70:2508,1,"Le Parc",48.940042,2.439358,0,0,OIF:SA:70:2324,Europe/Paris,,OIF, +OIF:SP:70:25164,1,"Les Saules",48.949682,2.499072,0,0,OIF:SA:70:23799,Europe/Paris,,OIF, +OIF:SP:70:2522,1,"Les Mousseaux",48.962299,2.540629,0,0,OIF:SA:70:13264,Europe/Paris,,OIF, +OIF:SP:70:25259,1,"Haute Futaie",48.905471,2.567168,0,0,OIF:SA:70:24844,Europe/Paris,,OIF, +OIF:SP:70:2527,1,"La Pelouse",48.909469,2.553538,0,0,OIF:SA:59:3682259,Europe/Paris,,OIF, +OIF:SP:70:25295,1,"Matisse Delacroix",48.953897,2.499127,0,0,OIF:SA:70:15404,Europe/Paris,,OIF, +OIF:SP:70:25315,1,"Administrateur",48.905756,2.54916,0,0,OIF:SA:70:25315,Europe/Paris,,OIF, +OIF:SP:70:25359,1,"Collège Gérard Philipe",48.936464,2.504133,0,0,OIF:SA:70:24941,Europe/Paris,,OIF, +OIF:SP:70:25380,1,"Poissons",48.957591,2.505347,0,0,OIF:SA:70:22356,Europe/Paris,,OIF, +OIF:SP:70:25398,1,"Jean Jaurès Division Leclerc",48.932676,2.423739,0,0,OIF:SA:44:99,Europe/Paris,,OIF, +OIF:SP:70:25502,1,"4 Routes",48.88584,2.586542,0,0,OIF:SA:53:2548,Europe/Paris,,OIF, +OIF:SP:70:25507,1,"Primevères",48.939992,2.519342,0,0,OIF:SA:70:25507,Europe/Paris,,OIF, +OIF:SP:70:2551,1,"Route de Gonesse",48.95263,2.484713,0,0,OIF:SA:11:225,Europe/Paris,,OIF, +OIF:SP:70:25525,1,"Jean Jaurès Division Leclerc",48.933117,2.423767,0,0,OIF:SA:44:99,Europe/Paris,,OIF, +OIF:SP:70:25531,1,"Église",48.902588,2.47954,0,0,OIF:SA:59:3682351,Europe/Paris,,OIF, +OIF:SP:70:2554,1,"Brunetière",48.935978,2.484202,0,0,OIF:SA:70:23044,Europe/Paris,,OIF, +OIF:SP:70:25628,1,"Cargo Centre",48.998106,2.52699,0,0,OIF:SA:59:3666606,Europe/Paris,,OIF, +OIF:SP:70:25771,1,"Parc des Reflets",48.982077,2.5131,0,0,OIF:SA:70:25771,Europe/Paris,,OIF, +OIF:SP:70:25778,1,"Kennedy Charcot",48.936142,2.515986,0,0,OIF:SA:70:25778,Europe/Paris,,OIF, +OIF:SP:70:25806,1,"Camille Desmoulins",48.948932,2.493982,0,0,OIF:SA:70:11142,Europe/Paris,,OIF, +OIF:SP:70:25844,1,"Marceau",48.94193,2.496074,0,0,OIF:SA:11:233,Europe/Paris,,OIF, +OIF:SP:70:25889,1,"Armand Esders",48.948257,2.46669,0,0,OIF:SA:70:18833,Europe/Paris,,OIF, +OIF:SP:70:25893,1,"La Lorette",48.909835,2.549654,0,0,OIF:SA:59:4035489,Europe/Paris,,OIF, +OIF:SP:70:25900,1,"Place du Pâtis",48.915376,2.580139,0,0,OIF:SA:70:13412,Europe/Paris,,OIF, +OIF:SP:70:25917,1,"Bas Prés",48.916033,2.584178,0,0,OIF:SA:70:21373,Europe/Paris,,OIF, +OIF:SP:70:25952,1,"Route de Tremblay",48.963759,2.537701,0,0,OIF:SA:70:16651,Europe/Paris,,OIF, +OIF:SP:70:26025,1,"Danton",48.93625,2.521184,0,0,OIF:SA:70:26025,Europe/Paris,,OIF, +OIF:SP:70:26028,1,"Marc Chagall",48.952288,2.498876,0,0,OIF:SA:70:17419,Europe/Paris,,OIF, +OIF:SP:70:26054,1,"Racine",48.935885,2.479659,0,0,OIF:SA:70:22365,Europe/Paris,,OIF, +OIF:SP:70:2613,1,"Gare du Blanc Mesnil",48.932661,2.477672,0,0,OIF:SA:8727147,Europe/Paris,,OIF, +OIF:SP:70:2614,1,"Coullemont Galliéni",48.931001,2.496982,0,0,OIF:SA:70:2614,Europe/Paris,,OIF, +OIF:SP:70:26154,1,"Ferme",48.91714,2.574215,0,0,OIF:SA:70:17706,Europe/Paris,,OIF, +OIF:SP:70:26176,1,"Gare du Chenay Gagny",48.87664,2.552461,0,0,OIF:SA:8711352,Europe/Paris,,OIF, +OIF:SP:70:26182,1,"Chavannes",48.898257,2.535416,0,0,OIF:SA:70:18270,Europe/Paris,,OIF, +OIF:SP:70:2622,1,"Paul Langevin",48.924398,2.495066,0,0,OIF:SA:70:2622,Europe/Paris,,OIF, +OIF:SP:70:26245,1,"Allée du Jura",48.930257,2.5264,0,0,OIF:SA:70:26245,Europe/Paris,,OIF, +OIF:SP:70:26291,1,"Etienne Laurent",48.902652,2.551219,0,0,OIF:SA:70:10900,Europe/Paris,,OIF, +OIF:SP:70:26309,1,"Apollinaire",48.942984,2.552136,0,0,OIF:SA:70:26309,Europe/Paris,,OIF, +OIF:SP:70:26362,1,"Vauban",48.920326,2.526446,0,0,OIF:SA:70:20022,Europe/Paris,,OIF, +OIF:SP:70:26397,1,"Georges Sachet",48.954926,2.547601,0,0,OIF:SA:70:10754,Europe/Paris,,OIF, +OIF:SP:70:26466,1,"Voie des Prés",48.960346,2.531573,0,0,OIF:SA:70:23722,Europe/Paris,,OIF, +OIF:SP:70:2647,1,"Les Bosquets",48.903956,2.560277,0,0,OIF:SA:59:3682257,Europe/Paris,,OIF, +OIF:SP:70:26675,1,"Vivaldi",48.941409,2.54288,0,0,OIF:SA:70:15694,Europe/Paris,,OIF, +OIF:SP:70:26720,1,"François Villon",48.921305,2.5377,0,0,OIF:SA:59:6869703,Europe/Paris,,OIF, +OIF:SP:70:26807,1,"Les Fougères",48.956043,2.546145,0,0,OIF:SA:70:10479,Europe/Paris,,OIF, +OIF:SP:70:26839,1,"Mairie",48.886856,2.532987,0,0,OIF:SA:70:1639,Europe/Paris,,OIF, +OIF:SP:70:26872,1,"Frédéric Ladrette",48.908747,2.544714,0,0,OIF:SA:70:14686,Europe/Paris,,OIF, +OIF:SP:70:26907,1,"Rue d'Orléans",48.920022,2.487361,0,0,OIF:SA:70:17116,Europe/Paris,,OIF, +OIF:SP:70:26922,1,"Président Kennedy",48.914623,2.53522,0,0,OIF:SA:70:13478,Europe/Paris,,OIF, +OIF:SP:70:27015,1,"Marcel Sembat",48.935541,2.488606,0,0,OIF:SA:70:27015,Europe/Paris,,OIF, +OIF:SP:70:27064,1,"Audran",48.940684,2.462936,0,0,OIF:SA:59:4274295,Europe/Paris,,OIF, +OIF:SP:70:27131,1,"Le Château",48.899266,2.564455,0,0,OIF:SA:70:11462,Europe/Paris,,OIF, +OIF:SP:70:27162,1,"Mairie",48.915336,2.577739,0,0,OIF:SA:70:27162,Europe/Paris,,OIF, +OIF:SP:70:27196,1,"Stade",48.91473,2.579454,0,0,OIF:SA:70:27196,Europe/Paris,,OIF, +OIF:SP:70:27231,1,"Bickart",48.88447,2.588429,0,0,OIF:SA:53:2567,Europe/Paris,,OIF, +OIF:SP:70:27256,1,"Collège Descartes",48.948854,2.443837,0,0,OIF:SA:70:27256,Europe/Paris,,OIF, +OIF:SP:70:27308,1,"Vieux Pays",48.941523,2.498419,0,0,OIF:SA:70:23595,Europe/Paris,,OIF, +OIF:SP:70:27322,1,"Freinville Henri IV",48.92706,2.51886,0,0,OIF:SA:8711389,Europe/Paris,,OIF, +OIF:SP:70:27359,1,"La Lorette",48.909205,2.550142,0,0,OIF:SA:59:4035489,Europe/Paris,,OIF, +OIF:SP:70:27378,1,"Gare de Bondy",48.89495,2.478674,0,0,OIF:SA:8711340,Europe/Paris,,OIF, +OIF:SP:70:2741,1,"René Deschamps",48.914344,2.454442,0,0,OIF:SA:70:11929,Europe/Paris,,OIF, +OIF:SP:70:27448,1,"Stade Jean Bouin",48.939749,2.455605,0,0,OIF:SA:70:27448,Europe/Paris,,OIF, +OIF:SP:70:27475,1,"Arts",48.889634,2.553605,0,0,OIF:SA:70:1747,Europe/Paris,,OIF, +OIF:SP:70:2748,1,"Mairie",48.938945,2.461158,0,0,OIF:SA:59:4274297,Europe/Paris,,OIF, +OIF:SP:70:27484,1,"Montceleux",48.94556,2.533046,0,0,OIF:SA:59:3682072,Europe/Paris,,OIF, +OIF:SP:70:27511,1,"Lamartine",48.907523,2.453622,0,0,OIF:SA:59006,Europe/Paris,,OIF, +OIF:SP:70:27520,1,"Maison d'Arrêt",48.96758,2.552662,0,0,OIF:SA:70:27520,Europe/Paris,,OIF, +OIF:SP:70:27631,1,"Émile Zola",48.906387,2.557724,0,0,OIF:SA:59:4035483,Europe/Paris,,OIF, +OIF:SP:70:27632,1,"Isaac Newton",48.94444,2.472056,0,0,OIF:SA:70:27632,Europe/Paris,,OIF, +OIF:SP:70:27637,1,"Piscine",48.944179,2.487636,0,0,OIF:SA:70:15890,Europe/Paris,,OIF, +OIF:SP:70:27641,1,"Hôpital Intercommunal 8 Mai 1945",48.900241,2.571521,0,0,OIF:SA:70:27641,Europe/Paris,,OIF, +OIF:SP:70:27666,1,"Pont de la Croix Blanche",48.932896,2.504217,0,0,OIF:SA:70:27666,Europe/Paris,,OIF, +OIF:SP:70:27704,1,"Place de la République",48.928064,2.495759,0,0,OIF:SA:70:27704,Europe/Paris,,OIF, +OIF:SP:70:27742,1,"Simiane",48.912745,2.529718,0,0,OIF:SA:70:10084,Europe/Paris,,OIF, +OIF:SP:70:27749,1,"Fontaine Jean Valjean",48.894729,2.57722,0,0,OIF:SA:70:16232,Europe/Paris,,OIF, +OIF:SP:70:27759,1,"Jouhet Berthollet",48.923793,2.503969,0,0,OIF:SA:70:27759,Europe/Paris,,OIF, +OIF:SP:70:27967,1,"7 Îles",48.898649,2.547986,0,0,OIF:SA:70:10525,Europe/Paris,,OIF, +OIF:SP:70:27991,1,"Collège Aimé et Eugénie Cotton",48.942145,2.475256,0,0,OIF:SA:70:27991,Europe/Paris,,OIF, +OIF:SP:70:27998,1,"Place de la Libération",48.943297,2.466132,0,0,OIF:SA:59:6682707,Europe/Paris,,OIF, +OIF:SP:70:28048,1,"Rue du Bellay",48.937777,2.568553,0,0,OIF:SA:70:28048,Europe/Paris,,OIF, +OIF:SP:70:28049,1,"Camille Desmoulins",48.949131,2.494036,0,0,OIF:SA:70:11142,Europe/Paris,,OIF, +OIF:SP:70:28071,1,"Matisse Delacroix",48.953951,2.498717,0,0,OIF:SA:70:15404,Europe/Paris,,OIF, +OIF:SP:70:28083,1,"Frédéric Ladrette",48.908667,2.544659,0,0,OIF:SA:70:14686,Europe/Paris,,OIF, +OIF:SP:70:28152,1,"Rond-Point Thiers",48.898799,2.516961,0,0,OIF:SA:59:5794634,Europe/Paris,,OIF, +OIF:SP:70:28242,1,"Le Plateau",48.896206,2.525717,0,0,OIF:SA:70:28242,Europe/Paris,,OIF, +OIF:SP:70:28246,1,"Plaine République",48.949627,2.556094,0,0,OIF:SA:70:22849,Europe/Paris,,OIF, +OIF:SP:70:28287,1,"Rue des Vignes",49.004585,2.548145,0,0,OIF:SA:8799456,Europe/Paris,,OIF, +OIF:SP:70:28351,1,"Jardins de la Noue",48.919183,2.475481,0,0,OIF:SA:59:3672129,Europe/Paris,,OIF, +OIF:SP:70:28404,1,"Barrière Blanche",48.898497,2.552756,0,0,OIF:SA:70:1579,Europe/Paris,,OIF, +OIF:SP:70:28417,1,"Marguilliers",48.994786,2.523932,0,0,OIF:SA:8798212,Europe/Paris,,OIF, +OIF:SP:70:28462,1,"Bougainville",48.95567,2.496867,0,0,OIF:SA:70:10173,Europe/Paris,,OIF, +OIF:SP:70:28466,1,"Gare de Vert Galant",48.944868,2.566533,0,0,OIF:SA:8727143,Europe/Paris,,OIF, +OIF:SP:70:285,1,"Cité Gagarine",48.921534,2.421661,0,0,OIF:SA:70:285,Europe/Paris,,OIF, +OIF:SP:70:28529,1,"Président Kennedy",48.914912,2.53428,0,0,OIF:SA:70:13478,Europe/Paris,,OIF, +OIF:SP:70:28560,1,"Gare de Parc des Expositions",48.974114,2.513961,0,0,OIF:SA:8727148,Europe/Paris,,OIF, +OIF:SP:70:28614,1,"Sportiss",48.9368,2.531458,0,0,OIF:SA:70:28614,Europe/Paris,,OIF, +OIF:SP:70:28654,1,"Adolphe Pétrement",48.942527,2.486717,0,0,OIF:SA:70:28654,Europe/Paris,,OIF, +OIF:SP:70:28668,1,"Danton",48.936592,2.521321,0,0,OIF:SA:70:26025,Europe/Paris,,OIF, +OIF:SP:70:28671,1,"4 Routes",48.886255,2.585562,0,0,OIF:SA:53:2548,Europe/Paris,,OIF, +OIF:SP:70:28712,1,"Francisco Ferrer",48.94397,2.495322,0,0,OIF:SA:11:231,Europe/Paris,,OIF, +OIF:SP:70:28734,1,"La Courneuve 8 Mai 1945",48.921819,2.411556,0,0,OIF:SA:59320,Europe/Paris,,OIF, +OIF:SP:70:28737,1,"Écoles Camélinat",48.929067,2.498517,0,0,OIF:SA:70:28737,Europe/Paris,,OIF, +OIF:SP:70:28762,1,"8 Mai 1945",48.95371,2.568924,0,0,OIF:SA:70:28762,Europe/Paris,,OIF, +OIF:SP:70:28770,1,"Jean Moulin",48.906593,2.576894,0,0,OIF:SA:70:19080,Europe/Paris,,OIF, +OIF:SP:70:28809,1,"Balagny",48.943045,2.482025,0,0,OIF:SA:70:28809,Europe/Paris,,OIF, +OIF:SP:70:2881,1,"Collège Romain Rolland",48.905609,2.550768,0,0,OIF:SA:59:5794642,Europe/Paris,,OIF, +OIF:SP:70:28836,1,"Québec",48.928009,2.475014,0,0,OIF:SA:59:4889481,Europe/Paris,,OIF, +OIF:SP:70:28860,1,"Clovis",48.918248,2.416583,0,0,OIF:SA:59080,Europe/Paris,,OIF, +OIF:SP:70:28875,1,"Cargo 7",48.989377,2.544942,0,0,OIF:SA:70:28875,Europe/Paris,,OIF, +OIF:SP:70:2893,1,"Pont de Bondy Anatole France",48.906346,2.470743,0,0,OIF:SA:59:4035526,Europe/Paris,,OIF, +OIF:SP:70:28948,1,"Collège Descartes",48.949206,2.442964,0,0,OIF:SA:70:27256,Europe/Paris,,OIF, +OIF:SP:70:28961,1,"Les Bosquets",48.904144,2.560591,0,0,OIF:SA:59:3682257,Europe/Paris,,OIF, +OIF:SP:70:28964,1,"Henri IV",48.934781,2.574763,0,0,OIF:SA:70:11494,Europe/Paris,,OIF, +OIF:SP:70:28966,1,"Lycée Jean Zay",48.938833,2.507288,0,0,OIF:SA:70:11588,Europe/Paris,,OIF, +OIF:SP:70:29077,1,"Paul Bert",48.900267,2.567377,0,0,OIF:SA:59:4035573,Europe/Paris,,OIF, +OIF:SP:70:29087,1,"Denis Papin",48.906853,2.586152,0,0,OIF:SA:70:14116,Europe/Paris,,OIF, +OIF:SP:70:29096,1,"Saint-Germain",48.930539,2.505982,0,0,OIF:SA:70:15443,Europe/Paris,,OIF, +OIF:SP:70:29105,1,"Sportiss",48.936961,2.53184,0,0,OIF:SA:70:28614,Europe/Paris,,OIF, +OIF:SP:70:29112,1,"Piscine",48.944368,2.487636,0,0,OIF:SA:70:15890,Europe/Paris,,OIF, +OIF:SP:70:29153,1,"Pont de Bondy",48.90589,2.468888,0,0,OIF:SA:59:4035526,Europe/Paris,,OIF, +OIF:SP:70:29174,1,"Cimetière",48.950046,2.456966,0,0,OIF:SA:59:4035749,Europe/Paris,,OIF, +OIF:SP:70:29187,1,"Gare de Parc des Expositions",48.974078,2.513947,0,0,OIF:SA:8727148,Europe/Paris,,OIF, +OIF:SP:70:29224,1,"Jules Jouy",48.925512,2.495819,0,0,OIF:SA:70:16818,Europe/Paris,,OIF, +OIF:SP:70:29243,1,"Plaine de France",48.975778,2.506308,0,0,OIF:SA:70:29243,Europe/Paris,,OIF, +OIF:SP:70:29252,1,"Fleurs",48.894184,2.551975,0,0,OIF:SA:70:24742,Europe/Paris,,OIF, +OIF:SP:70:29270,1,"Gare d'Aulnay sous Bois",48.931221,2.493941,0,0,OIF:SA:8727141,Europe/Paris,,OIF, +OIF:SP:70:2928,1,"Boieldieu",48.943587,2.546518,0,0,OIF:SA:70:24761,Europe/Paris,,OIF, +OIF:SP:70:29365,1,"Collège Victor Hugo",48.958009,2.494963,0,0,OIF:SA:70:16272,Europe/Paris,,OIF, +OIF:SP:70:29446,1,"Gare du Raincy Villemomble Montfermeil",48.889693,2.511941,0,0,OIF:SA:8711347,Europe/Paris,,OIF, +OIF:SP:70:29476,1,"Charles Floquet",48.937424,2.498979,0,0,OIF:SA:70:29476,Europe/Paris,,OIF, +OIF:SP:70:29482,1,"Hôpital Jean Verdier",48.908515,2.490109,0,0,OIF:SA:59:5747174,Europe/Paris,,OIF, +OIF:SP:70:29603,1,"Rue Rabelais",48.939461,2.571289,0,0,OIF:SA:70:29603,Europe/Paris,,OIF, +OIF:SP:70:29617,1,"Cimetière",48.950244,2.456775,0,0,OIF:SA:59:4035749,Europe/Paris,,OIF, +OIF:SP:70:29655,1,"Pierre Curie",48.936718,2.427852,0,0,OIF:SA:59:4658228,Europe/Paris,,OIF, +OIF:SP:70:29661,1,"Francisco Ferrer",48.944017,2.495371,0,0,OIF:SA:11:231,Europe/Paris,,OIF, +OIF:SP:70:29673,1,"Rond-Point Thiers",48.898763,2.517057,0,0,OIF:SA:59:5794634,Europe/Paris,,OIF, +OIF:SP:70:29773,1,"Cargo 7",48.989457,2.545174,0,0,OIF:SA:70:28875,Europe/Paris,,OIF, +OIF:SP:70:2978,1,"Louis Blanc Sainte-Anne",48.919312,2.500955,0,0,OIF:SA:70:2978,Europe/Paris,,OIF, +OIF:SP:70:29786,1,"Cité de la Résistance",48.918301,2.418574,0,0,OIF:SA:59080,Europe/Paris,,OIF, +OIF:SP:70:29812,1,"Marceau",48.941572,2.494845,0,0,OIF:SA:11:233,Europe/Paris,,OIF, +OIF:SP:70:29840,1,"La Dhuys",48.915841,2.590041,0,0,OIF:SA:70:16898,Europe/Paris,,OIF, +OIF:SP:70:29866,1,"Maurice Audin",48.945701,2.45244,0,0,OIF:SA:59:3666685,Europe/Paris,,OIF, +OIF:SP:70:29873,1,"Résidence Jean Monnet",48.92979,2.552764,0,0,OIF:SA:55:195,Europe/Paris,,OIF, +OIF:SP:70:29886,1,"Bellevue",48.899303,2.558907,0,0,OIF:SA:70:14327,Europe/Paris,,OIF, +OIF:SP:70:29898,1,"Collège Pablo Picasso",48.899802,2.57524,0,0,OIF:SA:59:3682244,Europe/Paris,,OIF, +OIF:SP:70:29953,1,"Val Fleuri",48.881641,2.591481,0,0,OIF:SA:53:2443,Europe/Paris,,OIF, +OIF:SP:70:29975,1,"Croix l'Aumône",48.965029,2.524903,0,0,OIF:SA:70:29975,Europe/Paris,,OIF, +OIF:SP:70:3000,1,"Rougemont Hôpital René Muret",48.93636,2.5139,0,0,OIF:SA:70:3000,Europe/Paris,,OIF, +OIF:SP:70:30012,1,"Île de France",48.935528,2.573986,0,0,OIF:SA:70:30012,Europe/Paris,,OIF, +OIF:SP:70:30023,1,"Rue des Vignes",49.004684,2.548487,0,0,OIF:SA:8799456,Europe/Paris,,OIF, +OIF:SP:70:30104,1,"La Limite",48.897142,2.530655,0,0,OIF:SA:70:10239,Europe/Paris,,OIF, +OIF:SP:70:30142,1,"Cimetière",48.985715,2.552533,0,0,OIF:SA:70:30142,Europe/Paris,,OIF, +OIF:SP:70:30164,1,"Clos Roger",48.891962,2.562815,0,0,OIF:SA:70:13852,Europe/Paris,,OIF, +OIF:SP:70:30190,1,"Chemin du Renard",48.927224,2.569611,0,0,OIF:SA:70:10029,Europe/Paris,,OIF, +OIF:SP:70:302,1,"Avenue du Clocher",48.931796,2.500558,0,0,OIF:SA:70:11261,Europe/Paris,,OIF, +OIF:SP:70:30259,1,"Gagarine",48.905002,2.548448,0,0,OIF:SA:59:5794641,Europe/Paris,,OIF, +OIF:SP:70:30316,1,"11 Novembre",48.935381,2.513433,0,0,OIF:SA:70:30316,Europe/Paris,,OIF, +OIF:SP:70:30322,1,"Rue Rateau",48.925124,2.415434,0,0,OIF:SA:59:4658220,Europe/Paris,,OIF, +OIF:SP:70:3037,1,"Rue Duchesne",48.875506,2.589735,0,0,OIF:SA:53:2177,Europe/Paris,,OIF, +OIF:SP:70:30478,1,"Arago",48.904814,2.581098,0,0,OIF:SA:70:15464,Europe/Paris,,OIF, +OIF:SP:70:30494,1,"Les 4 Chênes",48.887885,2.551281,0,0,OIF:SA:70:24730,Europe/Paris,,OIF, +OIF:SP:70:30505,1,"Garonor",48.956532,2.465044,0,0,OIF:SA:59:3666786,Europe/Paris,,OIF, +OIF:SP:70:30510,1,"Mère Teresa",48.938112,2.531913,0,0,OIF:SA:59:3682061,Europe/Paris,,OIF, +OIF:SP:70:3052,1,"Rue de la Belle Etoile N69",48.979192,2.500981,0,0,OIF:SA:70:3052,Europe/Paris,,OIF, +OIF:SP:70:30557,1,"Rue Rabelais",48.939178,2.568941,0,0,OIF:SA:70:29603,Europe/Paris,,OIF, +OIF:SP:70:30597,1,"Jean Charcot",48.934415,2.49084,0,0,OIF:SA:70:30597,Europe/Paris,,OIF, +OIF:SP:70:30640,1,"Kennedy Charcot",48.935837,2.515289,0,0,OIF:SA:70:25778,Europe/Paris,,OIF, +OIF:SP:70:30676,1,"Poste",48.983385,2.553997,0,0,OIF:SA:70:30676,Europe/Paris,,OIF, +OIF:SP:70:30796,1,"Lilas",48.949962,2.511535,0,0,OIF:SA:70:10577,Europe/Paris,,OIF, +OIF:SP:70:30875,1,"Alsace",48.936359,2.580674,0,0,OIF:SA:55:83,Europe/Paris,,OIF, +OIF:SP:70:30897,1,"André Breton",48.945047,2.549457,0,0,OIF:SA:70:30897,Europe/Paris,,OIF, +OIF:SP:70:30908,1,"Bargue",48.900683,2.556146,0,0,OIF:SA:70:20423,Europe/Paris,,OIF, +OIF:SP:70:30957,1,"Vercingétorix Jaurès",48.925145,2.501137,0,0,OIF:SA:70:30957,Europe/Paris,,OIF, +OIF:SP:70:30971,1,"Pont Blanc",48.942873,2.532681,0,0,OIF:SA:70:11265,Europe/Paris,,OIF, +OIF:SP:70:31023,1,"Gare de Villepinte",48.96282,2.511916,0,0,OIF:SA:8727145,Europe/Paris,,OIF, +OIF:SP:70:31032,1,"Condorcet Liégeard",48.925815,2.528034,0,0,OIF:SA:70:31032,Europe/Paris,,OIF, +OIF:SP:70:31037,1,"Alix",48.925818,2.488428,0,0,OIF:SA:70:31037,Europe/Paris,,OIF, +OIF:SP:70:31083,1,"Charles de Gaulle",48.915894,2.532729,0,0,OIF:SA:55:169,Europe/Paris,,OIF, +OIF:SP:70:31105,1,"Rougemont Hôpital René Muret",48.936199,2.513572,0,0,OIF:SA:70:3000,Europe/Paris,,OIF, +OIF:SP:70:31118,1,"Maison de Retraite",48.911533,2.484609,0,0,OIF:SA:59:5150464,Europe/Paris,,OIF, +OIF:SP:70:31167,1,"Montceleux",48.946099,2.533116,0,0,OIF:SA:59:3682072,Europe/Paris,,OIF, +OIF:SP:70:31170,1,"Rue de la Belle Borne",48.989529,2.529457,0,0,OIF:SA:59:3666699,Europe/Paris,,OIF, +OIF:SP:70:31226,1,"Bois de la Pie N165",48.980562,2.510556,0,0,OIF:SA:70:31226,Europe/Paris,,OIF, +OIF:SP:70:31307,1,"Mairie",48.911633,2.549402,0,0,OIF:SA:59:3682187,Europe/Paris,,OIF, +OIF:SP:70:31310,1,"La Croix Saint-Marc",48.959964,2.498177,0,0,OIF:SA:70:1380,Europe/Paris,,OIF, +OIF:SP:70:31412,1,"Ronsard / Villon",48.913461,2.488365,0,0,OIF:SA:59:5150465,Europe/Paris,,OIF, +OIF:SP:70:3143,1,"Parc de la Noue",48.958571,2.544695,0,0,OIF:SA:70:10958,Europe/Paris,,OIF, +OIF:SP:70:3148,1,"Collège Jean Jaurès",48.897442,2.559254,0,0,OIF:SA:70:21205,Europe/Paris,,OIF, +OIF:SP:70:31528,1,"Québec",48.928493,2.475956,0,0,OIF:SA:59:4889481,Europe/Paris,,OIF, +OIF:SP:70:31541,1,"Sanatorium",48.964044,2.533962,0,0,OIF:SA:70:31541,Europe/Paris,,OIF, +OIF:SP:70:31598,1,"Gare du Raincy Villemomble Montfermeil",48.889657,2.512064,0,0,OIF:SA:8711347,Europe/Paris,,OIF, +OIF:SP:70:31895,1,"Louis Coutant",48.939036,2.489517,0,0,OIF:SA:70:31895,Europe/Paris,,OIF, +OIF:SP:70:31908,1,"La Lorette",48.909001,2.548887,0,0,OIF:SA:59:4035489,Europe/Paris,,OIF, +OIF:SP:70:31957,1,"République Marx Dormoy",48.906607,2.523832,0,0,OIF:SA:59:5794636,Europe/Paris,,OIF, +OIF:SP:70:32024,1,"Legendre",48.946024,2.499006,0,0,OIF:SA:70:32024,Europe/Paris,,OIF, +OIF:SP:70:32075,1,"Adolphe Pétrement",48.942482,2.486144,0,0,OIF:SA:70:28654,Europe/Paris,,OIF, +OIF:SP:70:32079,1,"Les Gazelles",48.902915,2.564198,0,0,OIF:SA:59:4035572,Europe/Paris,,OIF, +OIF:SP:70:32084,1,"Altrincham",48.948677,2.451041,0,0,OIF:SA:59:4117697,Europe/Paris,,OIF, +OIF:SP:70:32086,1,"Les Cottages Lycée Léonard de Vinci",48.966297,2.570673,0,0,OIF:SA:70:32086,Europe/Paris,,OIF, +OIF:SP:70:32177,1,"Rue de l'Église",48.898685,2.567629,0,0,OIF:SA:70:12003,Europe/Paris,,OIF, +OIF:SP:70:32195,1,"La Paix",48.939686,2.513597,0,0,OIF:SA:70:14342,Europe/Paris,,OIF, +OIF:SP:70:32228,1,"Mairie",48.902173,2.57127,0,0,OIF:SA:59:3682241,Europe/Paris,,OIF, +OIF:SP:70:32246,1,"Stade",48.914129,2.579097,0,0,OIF:SA:70:27196,Europe/Paris,,OIF, +OIF:SP:70:32270,1,"Kennedy Charcot",48.936168,2.516395,0,0,OIF:SA:70:25778,Europe/Paris,,OIF, +OIF:SP:70:32376,1,"Henri Barbusse Mairie",48.938035,2.461467,0,0,OIF:SA:70:12530,Europe/Paris,,OIF, +OIF:SP:70:32429,1,"11 14 Avenue Albert Einstein",48.945844,2.470504,0,0,OIF:SA:70:17862,Europe/Paris,,OIF, +OIF:SP:70:32433,1,"Balagny",48.94299,2.482312,0,0,OIF:SA:70:28809,Europe/Paris,,OIF, +OIF:SP:70:32436,1,"Gare de Chelles Gournay",48.874681,2.584676,0,0,OIF:SA:8711611,Europe/Paris,,OIF, +OIF:SP:70:32446,1,"8 Mai 1945",48.953773,2.568706,0,0,OIF:SA:70:28762,Europe/Paris,,OIF, +OIF:SP:70:32474,1,"Henri Becquerel",48.949052,2.47889,0,0,OIF:SA:70:32474,Europe/Paris,,OIF, +OIF:SP:70:3249,1,"Le Suroît",48.953108,2.495309,0,0,OIF:SA:70:3249,Europe/Paris,,OIF, +OIF:SP:70:32591,1,"Hôpital Intercommunal",48.898878,2.5742,0,0,OIF:SA:59:3682253,Europe/Paris,,OIF, +OIF:SP:70:32607,1,"Salengro",48.908868,2.526145,0,0,OIF:SA:59:3682204,Europe/Paris,,OIF, +OIF:SP:70:3262,1,"Les Cèdres",48.92346,2.510392,0,0,OIF:SA:70:3262,Europe/Paris,,OIF, +OIF:SP:70:32697,1,"Mairie",48.93364,2.49909,0,0,OIF:SA:11:239,Europe/Paris,,OIF, +OIF:SP:70:3271,1,"Hôpital Intercommunal 8 Mai 1945",48.90017,2.571016,0,0,OIF:SA:70:27641,Europe/Paris,,OIF, +OIF:SP:70:32722,1,"Paul Cézanne",48.903154,2.556579,0,0,OIF:SA:70:32722,Europe/Paris,,OIF, +OIF:SP:70:3276,1,"Chilpéric Adolphe Besson",48.874037,2.587684,0,0,OIF:SA:59:3682913,Europe/Paris,,OIF, +OIF:SP:70:32768,1,"Rue de la Belle Borne",48.989551,2.52704,0,0,OIF:SA:59:3666699,Europe/Paris,,OIF, +OIF:SP:70:3333,1,"Pablo Neruda",48.96656,2.574323,0,0,OIF:SA:70:3333,Europe/Paris,,OIF, +OIF:SP:70:335,1,"Balagny",48.943197,2.482189,0,0,OIF:SA:70:28809,Europe/Paris,,OIF, +OIF:SP:70:3404,1,"Francisco Ferrer",48.94401,2.496304,0,0,OIF:SA:11:231,Europe/Paris,,OIF, +OIF:SP:70:3429,1,"Francisco Ferrer",48.9447,2.495568,0,0,OIF:SA:11:231,Europe/Paris,,OIF, +OIF:SP:70:3445,1,"Gare d'Aulnay-sous-Bois",48.931521,2.494875,0,0,OIF:SA:8727141,Europe/Paris,,OIF, +OIF:SP:70:3495,1,"Jacques Decour",48.943935,2.552686,0,0,OIF:SA:70:3495,Europe/Paris,,OIF, +OIF:SP:70:3496,1,"Écoles",48.890957,2.552179,0,0,OIF:SA:70:18536,Europe/Paris,,OIF, +OIF:SP:70:351,1,"Rue de la Belle Etoile N346",48.989092,2.515405,0,0,OIF:SA:70:351,Europe/Paris,,OIF, +OIF:SP:70:3520,1,"Square Henri Legrand",48.933284,2.548727,0,0,OIF:SA:59:6041911,Europe/Paris,,OIF, +OIF:SP:70:3530,1,"Jean Jaurès",48.915805,2.572246,0,0,OIF:SA:70:3530,Europe/Paris,,OIF, +OIF:SP:70:3553,1,"Mairie",48.933612,2.499963,0,0,OIF:SA:11:239,Europe/Paris,,OIF, +OIF:SP:70:3610,1,"Collège",48.892575,2.542264,0,0,OIF:SA:70:3610,Europe/Paris,,OIF, +OIF:SP:70:3616,1,"Xavier Monteny",48.889894,2.53304,0,0,OIF:SA:70:3616,Europe/Paris,,OIF, +OIF:SP:70:3657,1,"Avenue de Livry",48.933989,2.535894,0,0,OIF:SA:70:3657,Europe/Paris,,OIF, +OIF:SP:70:3664,1,"Place Albert Thomas",48.94211,2.585558,0,0,OIF:SA:70:3664,Europe/Paris,,OIF, +OIF:SP:70:3686,1,"Route de Gonesse",48.951288,2.487479,0,0,OIF:SA:11:225,Europe/Paris,,OIF, +OIF:SP:70:3707,1,"Les Bosquets",48.904477,2.56032,0,0,OIF:SA:59:3682257,Europe/Paris,,OIF, +OIF:SP:70:3708,1,"Charles Floquet",48.937593,2.499962,0,0,OIF:SA:70:29476,Europe/Paris,,OIF, +OIF:SP:70:3709,1,"Rond-Point Pablo Neruda",48.949876,2.465302,0,0,OIF:SA:70:3709,Europe/Paris,,OIF, +OIF:SP:70:3718,1,"Vélodrome",48.95041,2.505474,0,0,OIF:SA:70:3718,Europe/Paris,,OIF, +OIF:SP:70:3750,1,"Stade",48.914865,2.579495,0,0,OIF:SA:70:27196,Europe/Paris,,OIF, +OIF:SP:70:386,1,"Henri Dunant",48.926951,2.494787,0,0,OIF:SA:70:13526,Europe/Paris,,OIF, +OIF:SP:70:3865,1,"Cimetière",48.940046,2.52343,0,0,OIF:SA:59:3682064,Europe/Paris,,OIF, +OIF:SP:70:3931,1,"Abbé Niort",48.940695,2.433084,0,0,OIF:SA:70:3931,Europe/Paris,,OIF, +OIF:SP:70:3949,1,"Rue Dupuis",48.947944,2.501687,0,0,OIF:SA:70:19578,Europe/Paris,,OIF, +OIF:SP:70:3964,1,"Mairie",48.918213,2.538206,0,0,OIF:SA:55:124,Europe/Paris,,OIF, +OIF:SP:70:3983,1,"Parc des Sports",48.917996,2.544192,0,0,OIF:SA:70:1001,Europe/Paris,,OIF, +OIF:SP:70:4006,1,"Cimetière",48.939515,2.525206,0,0,OIF:SA:59:3682064,Europe/Paris,,OIF, +OIF:SP:70:4116,1,"Gare du Raincy Villemomble Montfermeil",48.889639,2.512037,0,0,OIF:SA:8711347,Europe/Paris,,OIF, +OIF:SP:70:4139,1,"Stade Jean Bouin",48.939974,2.454569,0,0,OIF:SA:70:27448,Europe/Paris,,OIF, +OIF:SP:70:4144,1,"Bobigny Pablo Picasso",48.906763,2.449681,0,0,OIF:SA:59342,Europe/Paris,,OIF, +OIF:SP:70:4240,1,"Botticelli",48.952952,2.502186,0,0,OIF:SA:70:1401,Europe/Paris,,OIF, +OIF:SP:70:4259,1,"Rue de la Belle Etoile N123",48.980528,2.503087,0,0,OIF:SA:70:11690,Europe/Paris,,OIF, +OIF:SP:70:4287,1,"Primevères",48.940064,2.51911,0,0,OIF:SA:70:25507,Europe/Paris,,OIF, +OIF:SP:70:4334,1,"Église Saint-Nicolas",48.939223,2.430202,0,0,OIF:SA:59:4658230,Europe/Paris,,OIF, +OIF:SP:70:4356,1,"Cimetière",48.93904,2.524891,0,0,OIF:SA:59:3682064,Europe/Paris,,OIF, +OIF:SP:70:4374,1,"Gare de Parc des Expositions",48.974042,2.513919,0,0,OIF:SA:8727148,Europe/Paris,,OIF, +OIF:SP:70:4376,1,"Goya la Pérouse",48.954157,2.492455,0,0,OIF:SA:70:11635,Europe/Paris,,OIF, +OIF:SP:70:4399,1,"Cerisiers",48.912009,2.452624,0,0,OIF:SA:70:4399,Europe/Paris,,OIF, +OIF:SP:70:4492,1,"De Mun Nonneville",48.92172,2.495344,0,0,OIF:SA:70:4492,Europe/Paris,,OIF, +OIF:SP:70:4529,1,"Prévoyants Plant d'Argent",48.92507,2.509347,0,0,OIF:SA:70:4529,Europe/Paris,,OIF, +OIF:SP:70:4532,1,"Havre Strasbourg",48.923457,2.485748,0,0,OIF:SA:70:4532,Europe/Paris,,OIF, +OIF:SP:70:4637,1,"Condorcet Liégeard",48.925949,2.528226,0,0,OIF:SA:70:31032,Europe/Paris,,OIF, +OIF:SP:70:4662,1,"Toulouse",48.925235,2.487649,0,0,OIF:SA:70:4662,Europe/Paris,,OIF, +OIF:SP:70:4675,1,"Bougainville",48.955868,2.496431,0,0,OIF:SA:70:10173,Europe/Paris,,OIF, +OIF:SP:70:4794,1,"Pont de la Croix Blanche",48.93237,2.50367,0,0,OIF:SA:70:27666,Europe/Paris,,OIF, +OIF:SP:70:4806,1,"Collège Evariste Galois",48.945428,2.519675,0,0,OIF:SA:59:3682068,Europe/Paris,,OIF, +OIF:SP:70:4859,1,"Rue Prudence",48.889786,2.581913,0,0,OIF:SA:70:4859,Europe/Paris,,OIF, +OIF:SP:70:4866,1,"Rue Dupuis",48.94816,2.501073,0,0,OIF:SA:70:19578,Europe/Paris,,OIF, +OIF:SP:70:4870,1,"Orléans Strasbourg",48.921921,2.483725,0,0,OIF:SA:70:12060,Europe/Paris,,OIF, +OIF:SP:70:492,1,"Poissons",48.957709,2.504161,0,0,OIF:SA:70:22356,Europe/Paris,,OIF, +OIF:SP:70:49575,1,"Maison des Jeunes",48.902809,2.56807,0,0,OIF:SA:59:4035479,Europe/Paris,,OIF, +OIF:SP:70:5030,1,"Cargo Centre",48.998692,2.525449,0,0,OIF:SA:59:3666606,Europe/Paris,,OIF, +OIF:SP:70:5052,1,"Galliéni",48.905841,2.486979,0,0,OIF:SA:70:15593,Europe/Paris,,OIF, +OIF:SP:70:5175,1,"L'Herminier",48.937807,2.494725,0,0,OIF:SA:11:235,Europe/Paris,,OIF, +OIF:SP:70:5200,1,"L'Odéon",48.942367,2.569597,0,0,OIF:SA:70:16363,Europe/Paris,,OIF, +OIF:SP:70:52015,1,"Chilpéric Adolphe Besson",48.87418,2.587875,0,0,OIF:SA:59:3682913,Europe/Paris,,OIF, +OIF:SP:70:5221,1,"Cosmonautes",48.949257,2.454972,0,0,OIF:SA:59:4035750,Europe/Paris,,OIF, +OIF:SP:70:52435,1,"O'Parinor Louis Armand",48.955952,2.480369,0,0,OIF:SA:70:12907,Europe/Paris,,OIF, +OIF:SP:70:5255,1,"Érables",48.974593,2.499464,0,0,OIF:SA:70:5255,Europe/Paris,,OIF, +OIF:SP:70:5269,1,"Le Hameau",48.948832,2.503027,0,0,OIF:SA:70:15344,Europe/Paris,,OIF, +OIF:SP:70:5288,1,"Jean Jaurès / Bois d'Amour",48.914777,2.461111,0,0,OIF:SA:70:18886,Europe/Paris,,OIF, +OIF:SP:70:5295,1,"Gare Aéroport CDG 1 Roissypole",49.010029,2.559519,0,0,OIF:SA:8727146,Europe/Paris,,OIF, +OIF:SP:70:52991,1,"Iqbal Masih",48.941029,2.446248,0,0,OIF:SA:70:13819,Europe/Paris,,OIF, +OIF:SP:70:5316,1,"Vélodrome / Chagall",48.953545,2.506753,0,0,OIF:SA:70:3718,Europe/Paris,,OIF, +OIF:SP:70:5318,1,"Ernest Pivot",48.931537,2.529596,0,0,OIF:SA:70:5318,Europe/Paris,,OIF, +OIF:SP:70:5333,1,"Général de Gaulle",48.943619,2.548592,0,0,OIF:SA:70:17081,Europe/Paris,,OIF, +OIF:SP:70:5342,1,"Lycée Jean Zay",48.939576,2.508809,0,0,OIF:SA:70:11588,Europe/Paris,,OIF, +OIF:SP:70:5473,1,"Pont de l'Union",48.92513,2.511597,0,0,OIF:SA:70:20974,Europe/Paris,,OIF, +OIF:SP:70:55580,1,"Rue du Pavé",48.986392,2.534902,0,0,OIF:SA:70:12410,Europe/Paris,,OIF, +OIF:SP:70:5597,1,"Freinville",48.927045,2.522679,0,0,OIF:SA:8711389,Europe/Paris,,OIF, +OIF:SP:70:5612,1,"Le Merisier",48.950073,2.495376,0,0,OIF:SA:70:5612,Europe/Paris,,OIF, +OIF:SP:70:5664,1,"Les Marronniers",48.912296,2.550823,0,0,OIF:SA:59:3682260,Europe/Paris,,OIF, +OIF:SP:70:5674,1,"Kennedy Charcot",48.935918,2.515344,0,0,OIF:SA:70:25778,Europe/Paris,,OIF, +OIF:SP:70:5696,1,"Collège Pablo Neruda",48.888612,2.544692,0,0,OIF:SA:70:14393,Europe/Paris,,OIF, +OIF:SP:70:5741,1,"Route de Sevran",48.953209,2.532051,0,0,OIF:SA:70:17718,Europe/Paris,,OIF, +OIF:SP:70:5755,1,"Les Marronniers",48.91191,2.550453,0,0,OIF:SA:59:3682260,Europe/Paris,,OIF, +OIF:SP:70:5766,1,"Auguste Renoir",48.95175,2.491547,0,0,OIF:SA:70:15595,Europe/Paris,,OIF, +OIF:SP:70:5792,1,"Avenue de Savigny",48.94482,2.518022,0,0,OIF:SA:70:13053,Europe/Paris,,OIF, +OIF:SP:70:5798,1,"Gare du Raincy Villemomble Montfermeil",48.889576,2.512323,0,0,OIF:SA:8711347,Europe/Paris,,OIF, +OIF:SP:70:5803,1,"Croix Rouge",48.947049,2.491806,0,0,OIF:SA:11:229,Europe/Paris,,OIF, +OIF:SP:70:58148,1,"Henri Barbusse",48.964887,2.529666,0,0,OIF:SA:70:58148,Europe/Paris,,OIF, +OIF:SP:70:58149,1,"Centre Commercial O'Parinor",48.956062,2.478336,0,0,OIF:SA:11:165,Europe/Paris,,OIF, +OIF:SP:70:58150,1,"Henri Becquerel",48.949303,2.478905,0,0,OIF:SA:70:32474,Europe/Paris,,OIF, +OIF:SP:70:58151,1,"Blaise Pascal",48.949955,2.482277,0,0,OIF:SA:70:22599,Europe/Paris,,OIF, +OIF:SP:70:58152,1,"Alfred Nobel",48.947217,2.480222,0,0,OIF:SA:70:58152,Europe/Paris,,OIF, +OIF:SP:70:58153,1,"Alfred Nobel",48.94719,2.480018,0,0,OIF:SA:70:58152,Europe/Paris,,OIF, +OIF:SP:70:58154,1,"Louis Coutant",48.938552,2.488847,0,0,OIF:SA:70:31895,Europe/Paris,,OIF, +OIF:SP:70:58155,1,"Marcel Sembat",48.935704,2.488293,0,0,OIF:SA:70:27015,Europe/Paris,,OIF, +OIF:SP:70:58156,1,"Dumont / 14 Juillet",48.92979,2.495164,0,0,OIF:SA:70:58156,Europe/Paris,,OIF, +OIF:SP:70:58157,1,"Collège Simone Veil",48.921952,2.489167,0,0,OIF:SA:70:16004,Europe/Paris,,OIF, +OIF:SP:70:58158,1,"Maurice Audin",48.950412,2.450212,0,0,OIF:SA:59:3666685,Europe/Paris,,OIF, +OIF:SP:70:58159,1,"Maurice Audin",48.950287,2.449939,0,0,OIF:SA:59:3666685,Europe/Paris,,OIF, +OIF:SP:70:58160,1,"Juste Héras",48.950526,2.44339,0,0,OIF:SA:59:7058154,Europe/Paris,,OIF, +OIF:SP:70:58161,1,"Juste Héras",48.95041,2.443103,0,0,OIF:SA:59:7058154,Europe/Paris,,OIF, +OIF:SP:70:58162,1,"Lénine",48.95035,2.439637,0,0,OIF:SA:70:58162,Europe/Paris,,OIF, +OIF:SP:70:58163,1,"Lénine",48.949874,2.439486,0,0,OIF:SA:70:58162,Europe/Paris,,OIF, +OIF:SP:70:58164,1,"Musée de l'Air et de l'Espace",48.947261,2.436862,0,0,OIF:SA:70:58164,Europe/Paris,,OIF, +OIF:SP:70:58165,1,"Musée de l'Air et de l'Espace",48.948329,2.438105,0,0,OIF:SA:70:58164,Europe/Paris,,OIF, +OIF:SP:70:58166,1,"Diderot",48.944872,2.434783,0,0,OIF:SA:59:6327989,Europe/Paris,,OIF, +OIF:SP:70:58167,1,"Diderot",48.944836,2.434988,0,0,OIF:SA:59:6327989,Europe/Paris,,OIF, +OIF:SP:70:58169,1,"Michelet",48.943337,2.433348,0,0,OIF:SA:70:58169,Europe/Paris,,OIF, +OIF:SP:70:58170,1,"Michelet",48.943246,2.433607,0,0,OIF:SA:70:58169,Europe/Paris,,OIF, +OIF:SP:70:58171,1,"La Comète",48.94118,2.421529,0,0,OIF:SA:70:58171,Europe/Paris,,OIF, +OIF:SP:70:58172,1,"La Comète",48.942403,2.420426,0,0,OIF:SA:70:58171,Europe/Paris,,OIF, +OIF:SP:70:58173,1,"Gare de Dugny la Courneuve",48.943756,2.412188,0,0,OIF:SA:70:58173,Europe/Paris,,OIF, +OIF:SP:70:58174,1,"Gare de Dugny la Courneuve",48.943729,2.412215,0,0,OIF:SA:70:58173,Europe/Paris,,OIF, +OIF:SP:70:58180,1,"Vauban",48.920309,2.525736,0,0,OIF:SA:70:20022,Europe/Paris,,OIF, +OIF:SP:70:58181,1,"Gambetta",48.918506,2.523589,0,0,OIF:SA:59:3682045,Europe/Paris,,OIF, +OIF:SP:70:58182,1,"Gambetta",48.90952,2.52282,0,0,OIF:SA:59:3682045,Europe/Paris,,OIF, +OIF:SP:70:58183,1,"Gutenberg / Lycée André Boulloche",48.913229,2.518716,0,0,OIF:SA:70:58183,Europe/Paris,,OIF, +OIF:SP:70:58184,1,"Gutenberg / Lycée André Boulloche",48.912323,2.517785,0,0,OIF:SA:70:58183,Europe/Paris,,OIF, +OIF:SP:70:582,1,"La Fontaine",48.937689,2.473757,0,0,OIF:SA:70:10033,Europe/Paris,,OIF, +OIF:SP:70:5864,1,"Foyer les Bruyères",48.981468,2.555628,0,0,OIF:SA:8798211,Europe/Paris,,OIF, +OIF:SP:70:5893,1,"Route d'Aulnay",48.940044,2.512799,0,0,OIF:SA:70:19780,Europe/Paris,,OIF, +OIF:SP:70:5948,1,"Fontaine Mallet",48.951252,2.552075,0,0,OIF:SA:70:23378,Europe/Paris,,OIF, +OIF:SP:70:6071,1,"Edouard Vaillant Carnot",48.896647,2.480014,0,0,OIF:SA:59:6682660,Europe/Paris,,OIF, +OIF:SP:70:6077,1,"Stade Jean Jaurès",48.941037,2.58281,0,0,OIF:SA:70:6077,Europe/Paris,,OIF, +OIF:SP:70:6109,1,"Louvois",48.920613,2.502568,0,0,OIF:SA:70:6109,Europe/Paris,,OIF, +OIF:SP:70:6142,1,"Administrateur",48.906089,2.549025,0,0,OIF:SA:70:25315,Europe/Paris,,OIF, +OIF:SP:70:6208,1,"Square Henri Legrand",48.933265,2.549491,0,0,OIF:SA:59:6041911,Europe/Paris,,OIF, +OIF:SP:70:6247,1,"Bois de l'Etoile",48.884091,2.547286,0,0,OIF:SA:70:6247,Europe/Paris,,OIF, +OIF:SP:70:6262,1,"Legendre",48.946554,2.499745,0,0,OIF:SA:70:32024,Europe/Paris,,OIF, +OIF:SP:70:6269,1,"Pont de Bondy",48.905611,2.469105,0,0,OIF:SA:59:4035526,Europe/Paris,,OIF, +OIF:SP:70:6357,1,"Collège Aimé et Eugénie Cotton",48.941641,2.475923,0,0,OIF:SA:70:27991,Europe/Paris,,OIF, +OIF:SP:70:6369,1,"Nouveau Cimetière",48.903788,2.527694,0,0,OIF:SA:70:6369,Europe/Paris,,OIF, +OIF:SP:70:637,1,"Auguste Delaune",48.906536,2.460969,0,0,OIF:SA:59008,Europe/Paris,,OIF, +OIF:SP:70:6393,1,"Poste",48.9837,2.553903,0,0,OIF:SA:70:30676,Europe/Paris,,OIF, +OIF:SP:70:640,1,"Avenue du Coteau École Normale",48.912691,2.540421,0,0,OIF:SA:70:2388,Europe/Paris,,OIF, +OIF:SP:70:6441,1,"Gare d'Aulnay sous Bois",48.932422,2.496209,0,0,OIF:SA:8727141,Europe/Paris,,OIF, +OIF:SP:70:6509,1,"Jean Charcot",48.934559,2.490772,0,0,OIF:SA:70:30597,Europe/Paris,,OIF, +OIF:SP:70:6577,1,"Tilleuls",48.889962,2.560952,0,0,OIF:SA:70:6577,Europe/Paris,,OIF, +OIF:SP:70:6583,1,"Montesquieu",48.925275,2.533665,0,0,OIF:SA:70:17181,Europe/Paris,,OIF, +OIF:SP:70:66,1,"Rond-Point des Sciences",48.904167,2.588101,0,0,OIF:SA:53:2421,Europe/Paris,,OIF, +OIF:SP:70:6639,1,"Allée du Jura",48.929962,2.525321,0,0,OIF:SA:70:26245,Europe/Paris,,OIF, +OIF:SP:70:669,1,"Edouard Branly",48.944363,2.484348,0,0,OIF:SA:70:669,Europe/Paris,,OIF, +OIF:SP:70:6705,1,"Léo Lagrange",48.924736,2.522275,0,0,OIF:SA:70:24310,Europe/Paris,,OIF, +OIF:SP:70:6713,1,"Lycée Alfred Nobel",48.903116,2.547895,0,0,OIF:SA:70:17617,Europe/Paris,,OIF, +OIF:SP:70:6735,1,"Abbé Niort",48.940632,2.433274,0,0,OIF:SA:70:3931,Europe/Paris,,OIF, +OIF:SP:70:6791,1,"Blanqui Salengro",48.900774,2.478635,0,0,OIF:SA:59:6682714,Europe/Paris,,OIF, +OIF:SP:70:6837,1,"Pivoines",48.885753,2.5578,0,0,OIF:SA:70:13920,Europe/Paris,,OIF, +OIF:SP:70:6852,1,"Hôpital Jean Verdier",48.908821,2.490055,0,0,OIF:SA:59:5747174,Europe/Paris,,OIF, +OIF:SP:70:6876,1,"Maréchal Leclerc",48.927146,2.48985,0,0,OIF:SA:70:24161,Europe/Paris,,OIF, +OIF:SP:70:6911,1,"L'Odéon",48.942449,2.569201,0,0,OIF:SA:70:16363,Europe/Paris,,OIF, +OIF:SP:70:7000,1,"Les 2 Cèdres",49.002138,2.528603,0,0,OIF:SA:59:3666650,Europe/Paris,,OIF, +OIF:SP:70:7040,1,"Gare d'Aulnay sous Bois",48.931778,2.494188,0,0,OIF:SA:8727141,Europe/Paris,,OIF, +OIF:SP:70:7096,1,"Émile Zola",48.906514,2.55737,0,0,OIF:SA:59:4035483,Europe/Paris,,OIF, +OIF:SP:70:710,1,"Rond-Point Île de France",48.915091,2.591564,0,0,OIF:SA:70:20990,Europe/Paris,,OIF, +OIF:SP:70:713,1,"Vélodrome / Chagall",48.953644,2.506058,0,0,OIF:SA:70:3718,Europe/Paris,,OIF, +OIF:SP:70:7187,1,"Éric Tabarly",48.894091,2.558558,0,0,OIF:SA:70:24953,Europe/Paris,,OIF, +OIF:SP:70:7204,1,"Ampère",48.904679,2.585514,0,0,OIF:SA:70:23788,Europe/Paris,,OIF, +OIF:SP:70:7205,1,"Poudrerie",48.933626,2.553612,0,0,OIF:SA:55:157,Europe/Paris,,OIF, +OIF:SP:70:7209,1,"Président Kennedy",48.915037,2.534962,0,0,OIF:SA:70:13478,Europe/Paris,,OIF, +OIF:SP:70:7271,1,"Nonneville Pavillons",48.922167,2.497186,0,0,OIF:SA:70:7271,Europe/Paris,,OIF, +OIF:SP:70:7343,1,"La Renardière",48.914064,2.566143,0,0,OIF:SA:70:13484,Europe/Paris,,OIF, +OIF:SP:70:7375,1,"Concorde",48.916373,2.464428,0,0,OIF:SA:70:11767,Europe/Paris,,OIF, +OIF:SP:70:7394,1,"Sanatorium",48.964063,2.53373,0,0,OIF:SA:70:31541,Europe/Paris,,OIF, +OIF:SP:70:7407,1,"Maison Guyot",48.894396,2.549195,0,0,OIF:SA:70:15791,Europe/Paris,,OIF, +OIF:SP:70:7413,1,"Chemin Notre-Dame",48.9514,2.441086,0,0,OIF:SA:70:7413,Europe/Paris,,OIF, +OIF:SP:70:7419,1,"Tilleuls",48.89068,2.561569,0,0,OIF:SA:70:6577,Europe/Paris,,OIF, +OIF:SP:70:7440,1,"Barrault Jean Jacques Rousseau",48.927797,2.500041,0,0,OIF:SA:70:7440,Europe/Paris,,OIF, +OIF:SP:70:7457,1,"Rue Prudence",48.889704,2.582376,0,0,OIF:SA:70:4859,Europe/Paris,,OIF, +OIF:SP:70:749,1,"Degas",48.933534,2.511107,0,0,OIF:SA:70:749,Europe/Paris,,OIF, +OIF:SP:70:7502,1,"Augustin Marcos",48.935385,2.468977,0,0,OIF:SA:70:12230,Europe/Paris,,OIF, +OIF:SP:70:7528,1,"Collège Romain Rolland",48.905805,2.551914,0,0,OIF:SA:59:5794642,Europe/Paris,,OIF, +OIF:SP:70:7531,1,"Parc du Sausset",48.96275,2.517293,0,0,OIF:SA:70:11093,Europe/Paris,,OIF, +OIF:SP:70:759,1,"Nouveau Cimetière",48.903734,2.527762,0,0,OIF:SA:70:6369,Europe/Paris,,OIF, +OIF:SP:70:7592,1,"Collège Georges Brassens",48.939334,2.537497,0,0,OIF:SA:70:7592,Europe/Paris,,OIF, +OIF:SP:70:7638,1,"Hôpital Intercommunal Robert Ballanger",48.951806,2.527434,0,0,OIF:SA:70:22341,Europe/Paris,,OIF, +OIF:SP:70:7648,1,"Croix l'Aumône",48.964949,2.524684,0,0,OIF:SA:70:29975,Europe/Paris,,OIF, +OIF:SP:70:77,1,"Paul Cézanne",48.903415,2.556375,0,0,OIF:SA:70:32722,Europe/Paris,,OIF, +OIF:SP:70:771,1,"Jouhaux Blum",48.917327,2.479676,0,0,OIF:SA:59:3682338,Europe/Paris,,OIF, +OIF:SP:70:7716,1,"Bargue",48.900674,2.556418,0,0,OIF:SA:70:20423,Europe/Paris,,OIF, +OIF:SP:70:776,1,"Bargue",48.900234,2.556062,0,0,OIF:SA:70:20423,Europe/Paris,,OIF, +OIF:SP:70:7772,1,"Europe",48.896616,2.563476,0,0,OIF:SA:70:13317,Europe/Paris,,OIF, +OIF:SP:70:7784,1,"Saint-Vincent de Paul",48.946358,2.559505,0,0,OIF:SA:70:24640,Europe/Paris,,OIF, +OIF:SP:70:7815,1,"Lycée Jean Zay",48.939602,2.509668,0,0,OIF:SA:70:11588,Europe/Paris,,OIF, +OIF:SP:70:7838,1,"Bretagne",48.938,2.595578,0,0,OIF:SA:70:7838,Europe/Paris,,OIF, +OIF:SP:70:7890,1,"Anizan Cavillon Mairie",48.933988,2.425119,0,0,OIF:SA:59:4658226,Europe/Paris,,OIF, +OIF:SP:70:7992,1,"Argonne Bois de Groslay",48.917754,2.467827,0,0,OIF:SA:59:3731670,Europe/Paris,,OIF, +OIF:SP:70:8003,1,"Marc Sangnier",48.926181,2.545425,0,0,OIF:SA:70:11963,Europe/Paris,,OIF, +OIF:SP:70:8006,1,"Chanteloup",48.927435,2.508536,0,0,OIF:SA:70:8006,Europe/Paris,,OIF, +OIF:SP:70:8059,1,"Jean Charcot / Anatole France",48.935633,2.494295,0,0,OIF:SA:70:13184,Europe/Paris,,OIF, +OIF:SP:70:8121,1,"Rond-Point des Sciences",48.904122,2.587982,0,0,OIF:SA:53:2421,Europe/Paris,,OIF, +OIF:SP:70:8183,1,"Ethel et Julius Rosenberg",48.962072,2.525206,0,0,OIF:SA:70:13462,Europe/Paris,,OIF, +OIF:SP:70:8234,1,"Le Château",48.899466,2.563079,0,0,OIF:SA:70:11462,Europe/Paris,,OIF, +OIF:SP:70:8259,1,"Condé Circulaire",48.918203,2.497106,0,0,OIF:SA:70:8259,Europe/Paris,,OIF, +OIF:SP:70:8291,1,"Argonne Bois de Groslay",48.918005,2.467978,0,0,OIF:SA:59:3731670,Europe/Paris,,OIF, +OIF:SP:70:8357,1,"Rue de la Belle Etoile N230",48.984338,2.509722,0,0,OIF:SA:70:8357,Europe/Paris,,OIF, +OIF:SP:70:8401,1,"Pont de la Croix Blanche",48.932932,2.504394,0,0,OIF:SA:70:27666,Europe/Paris,,OIF, +OIF:SP:70:8423,1,"Tuilerie",48.904379,2.564873,0,0,OIF:SA:59:4035480,Europe/Paris,,OIF, +OIF:SP:70:8425,1,"Gare du Raincy Villemomble Montfermeil",48.88954,2.51235,0,0,OIF:SA:8711347,Europe/Paris,,OIF, +OIF:SP:70:8431,1,"Gare de Villepinte",48.962937,2.511848,0,0,OIF:SA:8727145,Europe/Paris,,OIF, +OIF:SP:70:8471,1,"Mairie",48.915533,2.577985,0,0,OIF:SA:70:27162,Europe/Paris,,OIF, +OIF:SP:70:8508,1,"Henri Barbusse",48.964977,2.529421,0,0,OIF:SA:70:58148,Europe/Paris,,OIF, +OIF:SP:70:8586,1,"Paul Gauguin",48.891154,2.580911,0,0,OIF:SA:70:18144,Europe/Paris,,OIF, +OIF:SP:70:8631,1,"Rue Duchesne",48.876027,2.5902,0,0,OIF:SA:53:2177,Europe/Paris,,OIF, +OIF:SP:70:8660,1,"Fleurs",48.894103,2.552329,0,0,OIF:SA:70:24742,Europe/Paris,,OIF, +OIF:SP:70:8700,1,"Pont de la Croix Blanche",48.932462,2.504161,0,0,OIF:SA:70:27666,Europe/Paris,,OIF, +OIF:SP:70:8707,1,"Rue de la Belle Etoile N277",48.987227,2.512872,0,0,OIF:SA:70:8707,Europe/Paris,,OIF, +OIF:SP:70:8788,1,"Clos Montceleux",48.954408,2.535358,0,0,OIF:SA:8798656,Europe/Paris,,OIF, +OIF:SP:70:8800,1,"Gros Saule Beaudottes",48.949801,2.521065,0,0,OIF:SA:70:2302,Europe/Paris,,OIF, +OIF:SP:70:881,1,"Gare de Sevran Livry",48.93641,2.534048,0,0,OIF:SA:8727142,Europe/Paris,,OIF, +OIF:SP:70:8829,1,"Garros",48.949647,2.441396,0,0,OIF:SA:70:15403,Europe/Paris,,OIF, +OIF:SP:70:8846,1,"Gare d'Aulnay sous Bois",48.931714,2.494383,0,0,OIF:SA:8727141,Europe/Paris,,OIF, +OIF:SP:70:8848,1,"Villageoise",48.911668,2.491236,0,0,OIF:SA:59:5747238,Europe/Paris,,OIF, +OIF:SP:70:8891,1,"Marx Dormoy",48.942953,2.440073,0,0,OIF:SA:70:2319,Europe/Paris,,OIF, +OIF:SP:70:8948,1,"Gare de Sevran Beaudottes",48.947039,2.524224,0,0,OIF:SA:8727144,Europe/Paris,,OIF, +OIF:SP:70:8960,1,"Isaac Newton",48.94391,2.472464,0,0,OIF:SA:70:27632,Europe/Paris,,OIF, +OIF:SP:70:898,1,"Collège Georges Brassens",48.939378,2.538043,0,0,OIF:SA:70:7592,Europe/Paris,,OIF, +OIF:SP:70:900,1,"Chanteloup",48.927876,2.508442,0,0,OIF:SA:70:8006,Europe/Paris,,OIF, +OIF:SP:70:904,1,"Havre Strasbourg",48.923754,2.485913,0,0,OIF:SA:70:4532,Europe/Paris,,OIF, +OIF:SP:70:9094,1,"Foyer les Bruyères",48.981548,2.555806,0,0,OIF:SA:8798211,Europe/Paris,,OIF, +OIF:SP:70:9098,1,"Cruppet",48.977904,2.556675,0,0,OIF:SA:70:13321,Europe/Paris,,OIF, +OIF:SP:70:9099,1,"L'Ermitage",48.906801,2.571605,0,0,OIF:SA:70:21758,Europe/Paris,,OIF, +OIF:SP:70:9107,1,"Chemin du Loup",48.962168,2.558658,0,0,OIF:SA:70:14740,Europe/Paris,,OIF, +OIF:SP:70:9124,1,"Garonor Porte Sud",48.95626,2.462108,0,0,OIF:SA:59:3666746,Europe/Paris,,OIF, +OIF:SP:70:9256,1,"Matisse Delacroix",48.954607,2.499142,0,0,OIF:SA:70:15404,Europe/Paris,,OIF, +OIF:SP:70:9257,1,"Ernest Pivot",48.931142,2.529268,0,0,OIF:SA:70:5318,Europe/Paris,,OIF, +OIF:SP:70:9262,1,"Rond-Point Pablo Neruda",48.950029,2.46488,0,0,OIF:SA:70:3709,Europe/Paris,,OIF, +OIF:SP:70:9297,1,"Le Plateau",48.896044,2.525798,0,0,OIF:SA:70:28242,Europe/Paris,,OIF, +OIF:SP:70:9309,1,"Robert Bremond",48.954027,2.457221,0,0,OIF:SA:70:12436,Europe/Paris,,OIF, +OIF:SP:70:9312,1,"Giffard",48.930857,2.568277,0,0,OIF:SA:70:9312,Europe/Paris,,OIF, +OIF:SP:70:9321,1,"Maison Rouge",48.894721,2.543472,0,0,OIF:SA:70:10118,Europe/Paris,,OIF, +OIF:SP:70:9330,1,"Garonor",48.956556,2.464914,0,0,OIF:SA:59:3666786,Europe/Paris,,OIF, +OIF:SP:70:9376,1,"La Brise",48.952737,2.4926,0,0,OIF:SA:70:9376,Europe/Paris,,OIF, +OIF:SP:70:9394,1,"Gaston Bussière",48.937342,2.529905,0,0,OIF:SA:59:3682062,Europe/Paris,,OIF, +OIF:SP:70:9467,1,"Jules Guesde",48.944251,2.446829,0,0,OIF:SA:70:15212,Europe/Paris,,OIF, +OIF:SP:70:9499,1,"Route d'Aulnay Jean Moulin",48.91223,2.480862,0,0,OIF:SA:59:6682667,Europe/Paris,,OIF, +OIF:SP:70:9590,1,"Couronnes",48.914448,2.567903,0,0,OIF:SA:70:9590,Europe/Paris,,OIF, +OIF:SP:70:9594,1,"Luther King",48.948186,2.532114,0,0,OIF:SA:8798655,Europe/Paris,,OIF, +OIF:SP:70:9635,1,"Degas",48.933597,2.510767,0,0,OIF:SA:70:749,Europe/Paris,,OIF, +OIF:SP:70:9668,1,"Vélodrome",48.95015,2.505269,0,0,OIF:SA:70:3718,Europe/Paris,,OIF, +OIF:SP:70:976,1,"Danielle Casanova",48.923949,2.473121,0,0,OIF:SA:59:3672132,Europe/Paris,,OIF, +OIF:SP:70:9770,1,"Bois de l'Etoile",48.884828,2.547248,0,0,OIF:SA:70:6247,Europe/Paris,,OIF, +OIF:SP:70:9785,1,"Chemin Notre-Dame",48.952945,2.442426,0,0,OIF:SA:70:7413,Europe/Paris,,OIF, +OIF:SP:70:9877,1,"Pasteur",48.935441,2.474679,0,0,OIF:SA:70:19540,Europe/Paris,,OIF, +OIF:SP:70:9911,1,"Cottages",48.965995,2.568829,0,0,OIF:SA:70:32086,Europe/Paris,,OIF, +OIF:SP:70:9932,1,"Le Suroît",48.95223,2.495478,0,0,OIF:SA:70:3249,Europe/Paris,,OIF, +OIF:SP:70:998,1,"11 Novembre",48.93496,2.513104,0,0,OIF:SA:70:30316,Europe/Paris,,OIF, +OIF:SP:70:9984,1,"Mairie",48.878534,2.590485,0,0,OIF:SA:53:2277,Europe/Paris,,OIF, +OIF:SP:76:1047,1,"Remise à Jorelle",48.892889,2.488563,0,0,OIF:SA:8798870,Europe/Paris,,OIF, +OIF:SP:76:1048,1,"Remise à Jorelle",48.892889,2.488563,0,0,OIF:SA:8798870,Europe/Paris,,OIF, +OIF:SP:76:1049,1,"Lycée Henri Sellier",48.91665,2.515019,0,0,OIF:SA:8798871,Europe/Paris,,OIF, +OIF:SP:76:1050,1,"Lycée Henri Sellier",48.91665,2.515019,0,0,OIF:SA:8798871,Europe/Paris,,OIF, +OIF:SP:76:11,1,"Gare de Bondy",48.894384,2.478754,0,0,OIF:SA:8711340,Europe/Paris,,OIF, +OIF:SP:76:12,1,"Gare de Bondy",48.894384,2.478754,0,0,OIF:SA:8711340,Europe/Paris,,OIF, +OIF:SP:76:169,1,"Gare d'Aulnay sous Bois",48.931885,2.494434,0,0,OIF:SA:8727141,Europe/Paris,,OIF, +OIF:SP:76:170,1,"Gare d'Aulnay sous Bois",48.931885,2.494434,0,0,OIF:SA:8727141,Europe/Paris,,OIF, +OIF:SP:76:223,1,"Gare d'Ermont Eaubonne",48.980661,2.271058,0,0,OIF:SA:8727605,Europe/Paris,,OIF, +OIF:SP:76:224,1,"Gare d'Ermont Eaubonne",48.980661,2.271058,0,0,OIF:SA:8727605,Europe/Paris,,OIF, +OIF:SP:76:225,1,"Gare de Cernay",48.985389,2.256769,0,0,OIF:SA:8727606,Europe/Paris,,OIF, +OIF:SP:76:226,1,"Gare de Cernay",48.985389,2.256769,0,0,OIF:SA:8727606,Europe/Paris,,OIF, +OIF:SP:76:227,1,"Gare de Franconville le Plessis Bouchard",48.993281,2.235863,0,0,OIF:SA:8727607,Europe/Paris,,OIF, +OIF:SP:76:228,1,"Gare de Franconville le Plessis Bouchard",48.993281,2.235863,0,0,OIF:SA:8727607,Europe/Paris,,OIF, +OIF:SP:76:229,1,"Gare de Montigny Beauchamp",49.007549,2.197751,0,0,OIF:SA:8727608,Europe/Paris,,OIF, +OIF:SP:76:230,1,"Gare de Montigny Beauchamp",49.007549,2.197751,0,0,OIF:SA:8727608,Europe/Paris,,OIF, +OIF:SP:76:231,1,"Gare de Pierrelaye",49.019504,2.153614,0,0,OIF:SA:8727609,Europe/Paris,,OIF, +OIF:SP:76:232,1,"Gare de Pierrelaye",49.019504,2.153614,0,0,OIF:SA:8727609,Europe/Paris,,OIF, +OIF:SP:76:233,1,"Gare de Saint-Ouen l'Aumône",49.045482,2.106552,0,0,OIF:SA:8727610,Europe/Paris,,OIF, +OIF:SP:76:234,1,"Gare de Saint-Ouen l'Aumône",49.045482,2.106552,0,0,OIF:SA:8727610,Europe/Paris,,OIF, +OIF:SP:76:237,1,"Gare de Pontoise",49.047024,2.095349,0,0,OIF:SA:8727613,Europe/Paris,,OIF, +OIF:SP:76:238,1,"Gare de Pontoise",49.047024,2.095349,0,0,OIF:SA:8727613,Europe/Paris,,OIF, +OIF:SP:76:247,1,"Gare de Sannois",48.970017,2.263741,0,0,OIF:SA:8727618,Europe/Paris,,OIF, +OIF:SP:76:248,1,"Gare de Sannois",48.970017,2.263741,0,0,OIF:SA:8727618,Europe/Paris,,OIF, +OIF:SP:76:33,1,"Les Coquetiers",48.892506,2.499371,0,0,OIF:SA:8711384,Europe/Paris,,OIF, +OIF:SP:76:337,1,"Gare de Saint-Ouen l'Aumône Liesse",49.034289,2.127909,0,0,OIF:SA:8733798,Europe/Paris,,OIF, +OIF:SP:76:338,1,"Gare de Saint-Ouen l'Aumône Liesse",49.034289,2.127909,0,0,OIF:SA:8733798,Europe/Paris,,OIF, +OIF:SP:76:34,1,"Les Coquetiers",48.892506,2.499371,0,0,OIF:SA:8711384,Europe/Paris,,OIF, +OIF:SP:76:349,1,"Gare de Bois Colombes",48.91354,2.272493,0,0,OIF:SA:8738107,Europe/Paris,,OIF, +OIF:SP:76:35,1,"Les Pavillons sous Bois T4",48.902096,2.511424,0,0,OIF:SA:8711385,Europe/Paris,,OIF, +OIF:SP:76:350,1,"Gare de Bois Colombes",48.91354,2.272493,0,0,OIF:SA:8738107,Europe/Paris,,OIF, +OIF:SP:76:351,1,"Gare de Colombes",48.923714,2.259551,0,0,OIF:SA:8738108,Europe/Paris,,OIF, +OIF:SP:76:352,1,"Gare de Colombes",48.923714,2.259551,0,0,OIF:SA:8738108,Europe/Paris,,OIF, +OIF:SP:76:353,1,"Gare du Stade",48.931525,2.260754,0,0,OIF:SA:8738109,Europe/Paris,,OIF, +OIF:SP:76:354,1,"Gare du Stade",48.931525,2.260754,0,0,OIF:SA:8738109,Europe/Paris,,OIF, +OIF:SP:76:359,1,"Gare d'Asnières",48.90578,2.283341,0,0,OIF:SA:8738113,Europe/Paris,,OIF, +OIF:SP:76:36,1,"Les Pavillons sous Bois T4",48.902096,2.511424,0,0,OIF:SA:8711385,Europe/Paris,,OIF, +OIF:SP:76:360,1,"Gare d'Asnières",48.90578,2.283341,0,0,OIF:SA:8738113,Europe/Paris,,OIF, +OIF:SP:76:37,1,"Gargan",48.908226,2.517294,0,0,OIF:SA:8711386,Europe/Paris,,OIF, +OIF:SP:76:38,1,"Gargan",48.908226,2.517294,0,0,OIF:SA:8711386,Europe/Paris,,OIF, +OIF:SP:76:39,1,"Allée de la Tour Rendez Vous",48.89682,2.506009,0,0,OIF:SA:8711387,Europe/Paris,,OIF, +OIF:SP:76:397,1,"Gare de Mantes la Jolie",48.989692,1.703309,0,0,OIF:SA:8738150,Europe/Paris,,OIF, +OIF:SP:76:398,1,"Gare de Mantes la Jolie",48.989692,1.703309,0,0,OIF:SA:8738150,Europe/Paris,,OIF, +OIF:SP:76:40,1,"Allée de la Tour Rendez Vous",48.89682,2.506009,0,0,OIF:SA:8711387,Europe/Paris,,OIF, +OIF:SP:76:407,1,"Gare de Mantes Station",48.983619,1.715645,0,0,OIF:SA:8738159,Europe/Paris,,OIF, +OIF:SP:76:408,1,"Gare de Mantes Station",48.983619,1.715645,0,0,OIF:SA:8738159,Europe/Paris,,OIF, +OIF:SP:76:41,1,"L'Abbaye",48.922291,2.516879,0,0,OIF:SA:8711388,Europe/Paris,,OIF, +OIF:SP:76:42,1,"L'Abbaye",48.922291,2.516879,0,0,OIF:SA:8711388,Europe/Paris,,OIF, +OIF:SP:76:43,1,"Freinville Sevran",48.927042,2.51901,0,0,OIF:SA:8711389,Europe/Paris,,OIF, +OIF:SP:76:433,1,"Gare d'Argenteuil",48.947007,2.257197,0,0,OIF:SA:8738184,Europe/Paris,,OIF, +OIF:SP:76:434,1,"Gare d'Argenteuil",48.947007,2.257197,0,0,OIF:SA:8738184,Europe/Paris,,OIF, +OIF:SP:76:44,1,"Freinville Sevran",48.927042,2.51901,0,0,OIF:SA:8711389,Europe/Paris,,OIF, +OIF:SP:76:445,1,"Gare de Becon les Bruyères",48.905584,2.26859,0,0,OIF:SA:8738200,Europe/Paris,,OIF, +OIF:SP:76:446,1,"Gare de Becon les Bruyères",48.905584,2.26859,0,0,OIF:SA:8738200,Europe/Paris,,OIF, +OIF:SP:76:497,1,"Gare de la Garenne Colombes",48.909438,2.23994,0,0,OIF:SA:8738600,Europe/Paris,,OIF, +OIF:SP:76:498,1,"Gare de la Garenne Colombes",48.909438,2.23994,0,0,OIF:SA:8738600,Europe/Paris,,OIF, +OIF:SP:76:501,1,"Gare des Vallées",48.91345,2.257876,0,0,OIF:SA:8738630,Europe/Paris,,OIF, +OIF:SP:76:502,1,"Gare des Vallées",48.91345,2.257876,0,0,OIF:SA:8738630,Europe/Paris,,OIF, +OIF:SP:76:503,1,"Gare de Nanterre Université",48.901551,2.215185,0,0,OIF:SA:8738631,Europe/Paris,,OIF, +OIF:SP:76:504,1,"Gare de Nanterre Université",48.901551,2.215185,0,0,OIF:SA:8738631,Europe/Paris,,OIF, +OIF:SP:76:519,1,"Gare des Mureaux",48.99267,1.913061,0,0,OIF:SA:8738668,Europe/Paris,,OIF, +OIF:SP:76:520,1,"Gare des Mureaux",48.99267,1.913061,0,0,OIF:SA:8738668,Europe/Paris,,OIF, +OIF:SP:76:521,1,"Gare d'Aubergenville Elisabethville",48.971952,1.848485,0,0,OIF:SA:8738673,Europe/Paris,,OIF, +OIF:SP:76:522,1,"Gare d'Aubergenville Elisabethville",48.971952,1.848485,0,0,OIF:SA:8738673,Europe/Paris,,OIF, +OIF:SP:76:523,1,"Gare d'Épône Mézières",48.963307,1.808645,0,0,OIF:SA:8738676,Europe/Paris,,OIF, +OIF:SP:76:524,1,"Gare d'Épône Mézières",48.963307,1.808645,0,0,OIF:SA:8738676,Europe/Paris,,OIF, +OIF:SP:76:615,1,"Gare de Massy Palaiseau RER C",48.724904,2.256614,0,0,OIF:SA:8739357,Europe/Paris,,OIF, +OIF:SP:76:616,1,"Gare de Massy Palaiseau RER C",48.724904,2.256614,0,0,OIF:SA:8739357,Europe/Paris,,OIF, +OIF:SP:76:617,1,"Gare de Longjumeau",48.702174,2.294401,0,0,OIF:SA:8739361,Europe/Paris,,OIF, +OIF:SP:76:618,1,"Gare de Longjumeau",48.702174,2.294401,0,0,OIF:SA:8739361,Europe/Paris,,OIF, +OIF:SP:76:621,1,"Gare de Chilly Mazarin",48.700785,2.308321,0,0,OIF:SA:8739363,Europe/Paris,,OIF, +OIF:SP:76:622,1,"Gare de Chilly Mazarin",48.700785,2.308321,0,0,OIF:SA:8739363,Europe/Paris,,OIF, +OIF:SP:76:623,1,"Gare de Gravigny Balizy",48.685246,2.317683,0,0,OIF:SA:8739364,Europe/Paris,,OIF, +OIF:SP:76:624,1,"Gare de Gravigny Balizy",48.685246,2.317683,0,0,OIF:SA:8739364,Europe/Paris,,OIF, +OIF:SP:76:625,1,"Gare de Petit Vaux",48.676124,2.334055,0,0,OIF:SA:8739365,Europe/Paris,,OIF, +OIF:SP:76:626,1,"Gare de Petit Vaux",48.676124,2.334055,0,0,OIF:SA:8739365,Europe/Paris,,OIF, +OIF:SP:76:661,1,"Rougemont Chanteloup",48.930633,2.515776,0,0,OIF:SA:8743179,Europe/Paris,,OIF, +OIF:SP:76:662,1,"Rougemont Chanteloup",48.930633,2.515776,0,0,OIF:SA:8743179,Europe/Paris,,OIF, +OIF:SP:76:667,1,"Gare d'Ermont Eaubonne Psl",48.980661,2.271058,0,0,OIF:SA:8727605,Europe/Paris,,OIF, +OIF:SP:76:668,1,"Gare d'Ermont Eaubonne Psl",48.980661,2.271058,0,0,OIF:SA:8727605,Europe/Paris,,OIF, +OIF:SP:76:701,1,"Gare de Savigny sur Orge",48.676006,2.351835,0,0,OIF:SA:8754523,Europe/Paris,,OIF, +OIF:SP:76:702,1,"Gare de Savigny sur Orge",48.676006,2.351835,0,0,OIF:SA:8754523,Europe/Paris,,OIF, +OIF:SP:76:703,1,"Gare de Juvisy",48.689472,2.383228,0,0,OIF:SA:8754524,Europe/Paris,,OIF, +OIF:SP:76:704,1,"Gare de Juvisy",48.689472,2.383228,0,0,OIF:SA:8754524,Europe/Paris,,OIF, +OIF:SP:77:13,1,"Gare TGV Nord",49.004397,2.571897,0,0,OIF:SA:8700147,Europe/Paris,,OIF, +OIF:SP:77:14,1,"Terminal 2 D",49.004317,2.566925,0,0,OIF:SA:77:14,Europe/Paris,,OIF, +OIF:SP:77:15,1,"Terminal 2 B",49.004074,2.562621,0,0,OIF:SA:77:15,Europe/Paris,,OIF, +OIF:SP:77:16,1,"Terminal 2 A",49.002942,2.562152,0,0,OIF:SA:77:16,Europe/Paris,,OIF, +OIF:SP:77:17,1,"Terminal 2 C",49.003248,2.566688,0,0,OIF:SA:77:17,Europe/Paris,,OIF, +OIF:SP:77:18,1,"Gare TGV Sud",49.003741,2.572236,0,0,OIF:SA:8700147,Europe/Paris,,OIF, +OIF:SP:77:19,1,"Terminal 2 E",49.003856,2.577741,0,0,OIF:SA:77:19,Europe/Paris,,OIF, +OIF:SP:77:20,1,"Terminal 2 F",49.004979,2.577733,0,0,OIF:SA:77:20,Europe/Paris,,OIF, +OIF:SP:77:21,1,"Terminal 2 G",49.005932,2.603076,0,0,OIF:SA:77:21,Europe/Paris,,OIF, +OIF:SP:77:22,1,"Terminal Pw (Résa Parking Eco)",49.007547,2.608206,0,0,OIF:SA:77:22,Europe/Paris,,OIF, +OIF:SP:79:1002,1,"Elisab. Place Louvain",48.976287,1.845018,0,0,OIF:SA:21:200,Europe/Paris,,OIF, +OIF:SP:79:1003,1,"Elisab. Annexe Mairie",48.972173,1.845426,0,0,OIF:SA:79:1003,Europe/Paris,,OIF, +OIF:SP:79:1004,1,"Gare SNCF",48.97167,1.847833,0,0,OIF:SA:8738673,Europe/Paris,,OIF, +OIF:SP:79:1005,1,"Clos Reine",48.968408,1.849884,0,0,OIF:SA:79:1005,Europe/Paris,,OIF, +OIF:SP:79:1006,1,"Cimetière",48.963731,1.851156,0,0,OIF:SA:21:60,Europe/Paris,,OIF, +OIF:SP:79:1007,1,"Gaston Jouillerat",48.961441,1.853989,0,0,OIF:SA:21:73,Europe/Paris,,OIF, +OIF:SP:79:1008,1,"Hôtel de Ville",48.958509,1.855436,0,0,OIF:SA:79:1008,Europe/Paris,,OIF, +OIF:SP:79:1009,1,"Coopération",48.959191,1.85749,0,0,OIF:SA:79:1009,Europe/Paris,,OIF, +OIF:SP:79:1010,1,"Allée des Bois",48.959944,1.861578,0,0,OIF:SA:79:1010,Europe/Paris,,OIF, +OIF:SP:79:1011,1,"Jean Moulin",48.957251,1.862408,0,0,OIF:SA:79:1011,Europe/Paris,,OIF, +OIF:SP:79:1012,1,"Les Sources",48.95539,1.859968,0,0,OIF:SA:79:1012,Europe/Paris,,OIF, +OIF:SP:79:1013,1,"Centre Commercial",48.954296,1.860442,0,0,OIF:SA:79:1013,Europe/Paris,,OIF, +OIF:SP:79:1014,1,"Acacias",48.953345,1.856289,0,0,OIF:SA:21:58,Europe/Paris,,OIF, +OIF:SP:79:1015,1,"Louis Pergaud",48.954946,1.854596,0,0,OIF:SA:79:1015,Europe/Paris,,OIF, +OIF:SP:79:1016,1,"Montgardé",48.956773,1.852982,0,0,OIF:SA:79:1016,Europe/Paris,,OIF, +OIF:SP:79:1017,1,"Clinique",48.957266,1.848256,0,0,OIF:SA:21:62,Europe/Paris,,OIF, +OIF:SP:79:1018,1,"8 Mai 1945",48.95947,1.851032,0,0,OIF:SA:21:56,Europe/Paris,,OIF, +OIF:SP:79:1019,1,"Cimetière",48.96374,1.85132,0,0,OIF:SA:21:60,Europe/Paris,,OIF, +OIF:SP:79:1020,1,"Clos Reine",48.968292,1.850117,0,0,OIF:SA:79:1005,Europe/Paris,,OIF, +OIF:SP:79:1021,1,"Elisab. Place de l'Etoile",48.973038,1.845963,0,0,OIF:SA:79:1021,Europe/Paris,,OIF, +OIF:SP:79:1023,1,"Division Leclerc",48.956237,1.858255,0,0,OIF:SA:21:71,Europe/Paris,,OIF, +OIF:SP:79:1024,1,"Carrefour D113",48.961723,1.854819,0,0,OIF:SA:79:1024,Europe/Paris,,OIF, +OIF:SP:79:1025,1,"Elisab. Reine Astrid",48.976459,1.849808,0,0,OIF:SA:21:204,Europe/Paris,,OIF, +OIF:SP:79:1026,1,"Division Leclerc",48.956263,1.857995,0,0,OIF:SA:21:71,Europe/Paris,,OIF, +OIF:SP:79:1027,1,"Fresque",48.953409,1.861037,0,0,OIF:SA:21:882,Europe/Paris,,OIF, +OIF:SP:79:1028,1,"Lycée Van Gogh",48.95164,1.854763,0,0,OIF:SA:21:84,Europe/Paris,,OIF, +OIF:SP:79:1029,1,"Elisab. Place du Maréchal Juin",48.971436,1.836874,0,0,OIF:SA:79:1029,Europe/Paris,,OIF, +OIF:SP:79:1030,1,"Fresque",48.953445,1.861187,0,0,OIF:SA:21:882,Europe/Paris,,OIF, +OIF:SP:79:2002,1,"Gare RER Longjumeau",48.702156,2.294306,0,0,OIF:SA:8739361,Europe/Paris,,OIF, +OIF:SP:79:2003,1,"Place Charles Steber",48.697464,2.293725,0,0,OIF:SA:29:497,Europe/Paris,,OIF, +OIF:SP:79:2004,1,"Hôpital de Longjumeau",48.691791,2.290064,0,0,OIF:SA:79:2004,Europe/Paris,,OIF, +OIF:SP:79:2005,1,"Docteur Cathelin",48.687422,2.289104,0,0,OIF:SA:46:14947,Europe/Paris,,OIF, +OIF:SP:79:2006,1,"Bel Air",48.686712,2.290951,0,0,OIF:SA:79:2006,Europe/Paris,,OIF, +OIF:SP:79:2007,1,"La Rocade",48.687649,2.294806,0,0,OIF:SA:79:2007,Europe/Paris,,OIF, +OIF:SP:79:2008,1,"Coteaux",48.690202,2.295279,0,0,OIF:SA:79:2008,Europe/Paris,,OIF, +OIF:SP:79:2009,1,"Cimetière",48.689232,2.298973,0,0,OIF:SA:79:2009,Europe/Paris,,OIF, +OIF:SP:79:2010,1,"Clinique de l'Yvette",48.689655,2.300262,0,0,OIF:SA:46:14945,Europe/Paris,,OIF, +OIF:SP:79:2011,1,"Foyer Avril",48.691883,2.297817,0,0,OIF:SA:46:14943,Europe/Paris,,OIF, +OIF:SP:79:2012,1,"Théâtre",48.695812,2.298927,0,0,OIF:SA:46:9976,Europe/Paris,,OIF, +OIF:SP:79:2013,1,"Général de Gaulle",48.697601,2.2997,0,0,OIF:SA:59:6041881,Europe/Paris,,OIF, +OIF:SP:79:2014,1,"Ballainvilliers Centre",48.675963,2.292997,0,0,OIF:SA:79:2014,Europe/Paris,,OIF, +OIF:SP:79:2015,1,"Stade",48.676719,2.297597,0,0,OIF:SA:79:2015,Europe/Paris,,OIF, +OIF:SP:79:2016,1,"Templiers",48.680785,2.30635,0,0,OIF:SA:79:2016,Europe/Paris,,OIF, +OIF:SP:79:2017,1,"Gare RER de Gravigny-Balizy Vers Morangi",48.684958,2.317343,0,0,OIF:SA:8739364,Europe/Paris,,OIF, +OIF:SP:79:2018,1,"Rue de Savigny",48.687772,2.321116,0,0,OIF:SA:79:2018,Europe/Paris,,OIF, +OIF:SP:79:2019,1,"Rue Lavoisier",48.691889,2.328759,0,0,OIF:SA:79:2019,Europe/Paris,,OIF, +OIF:SP:79:2020,1,"Pasteur",48.69535,2.327822,0,0,OIF:SA:79:2020,Europe/Paris,,OIF, +OIF:SP:79:2021,1,"Morin",48.692949,2.317938,0,0,OIF:SA:79:2021,Europe/Paris,,OIF, +OIF:SP:79:2022,1,"Pont des Maures",48.691492,2.316418,0,0,OIF:SA:79:2022,Europe/Paris,,OIF, +OIF:SP:79:2023,1,"Georges Brassens",48.689057,2.318727,0,0,OIF:SA:79:2023,Europe/Paris,,OIF, +OIF:SP:79:2024,1,"Gare RER de Gravigny-Balizy Vers Ballain",48.685084,2.31752,0,0,OIF:SA:8739364,Europe/Paris,,OIF, +OIF:SP:79:2025,1,"Balizy",48.682862,2.310787,0,0,OIF:SA:46:14948,Europe/Paris,,OIF, +OIF:SP:79:2026,1,"Basch - Poulettes",48.684866,2.305967,0,0,OIF:SA:79:2026,Europe/Paris,,OIF, +OIF:SP:79:2027,1,"Maison de la Petite Enfance",48.698128,2.330903,0,0,OIF:SA:79:2027,Europe/Paris,,OIF, +OIF:SP:79:2028,1,"Collège M.Vignaud",48.700447,2.333714,0,0,OIF:SA:79:2028,Europe/Paris,,OIF, +OIF:SP:79:2029,1,"Centre Commercial",48.697121,2.332927,0,0,OIF:SA:79:2029,Europe/Paris,,OIF, +OIF:SP:79:2030,1,"Gare RER de Gravigny-Balizy Vers Longjum",48.685039,2.317316,0,0,OIF:SA:8739364,Europe/Paris,,OIF, +OIF:SP:79:2031,1,"Clinique de l'Yvette",48.688927,2.302136,0,0,OIF:SA:46:14945,Europe/Paris,,OIF, +OIF:SP:79:2032,1,"Hôtel de Ville",48.693141,2.294775,0,0,OIF:SA:79:2032,Europe/Paris,,OIF, +OIF:SP:79:2033,1,"Gare RER de Gravigny-Balizy Vers Morangi",48.684634,2.316108,0,0,OIF:SA:8739364,Europe/Paris,,OIF, +OIF:SP:79:2034,1,"Jesse Owens",48.707502,2.323351,0,0,OIF:SA:79:2034,Europe/Paris,,OIF, +OIF:SP:79:2035,1,"Étrier Chiroquois",48.708922,2.318489,0,0,OIF:SA:79:2035,Europe/Paris,,OIF, +OIF:SP:79:2036,1,"Cimetière",48.707222,2.311604,0,0,OIF:SA:79:2036,Europe/Paris,,OIF, +OIF:SP:79:2037,1,"Hôtel de Ville",48.702224,2.314186,0,0,OIF:SA:79:2037,Europe/Paris,,OIF, +OIF:SP:79:2038,1,"Gare RER",48.699751,2.307221,0,0,OIF:SA:8739363,Europe/Paris,,OIF, +OIF:SP:79:2039,1,"Saint-Eloi",48.695589,2.307495,0,0,OIF:SA:79:2039,Europe/Paris,,OIF, +OIF:SP:79:2040,1,"Grand Jardin",48.694422,2.310904,0,0,OIF:SA:79:2040,Europe/Paris,,OIF, +OIF:SP:79:2041,1,"Elisée Reclus",48.69693,2.313184,0,0,OIF:SA:79:2041,Europe/Paris,,OIF, +OIF:SP:79:2042,1,"Hôtel de Ville",48.701856,2.314064,0,0,OIF:SA:79:2037,Europe/Paris,,OIF, +OIF:SP:79:2043,1,"Place de la Libération",48.702684,2.320121,0,0,OIF:SA:79:2043,Europe/Paris,,OIF, +OIF:SP:79:2044,1,"Rond-Poind du Pileu",48.730277,2.241035,0,0,OIF:SA:79:2044,Europe/Paris,,OIF, +OIF:SP:79:2045,1,"Lycée de Vilgénis",48.731024,2.253737,0,0,OIF:SA:79:2045,Europe/Paris,,OIF, +OIF:SP:79:2046,1,"Les Graviers",48.726644,2.250728,0,0,OIF:SA:79:2046,Europe/Paris,,OIF, +OIF:SP:79:2047,1,"Massy Vilmorin RER",48.725012,2.256002,0,0,OIF:SA:8739357,Europe/Paris,,OIF, +OIF:SP:79:2048,1,"Lycée Fustel de Coulange",48.732478,2.265597,0,0,OIF:SA:79:2048,Europe/Paris,,OIF, +OIF:SP:79:2049,1,"Émile Zola",48.736827,2.26324,0,0,OIF:SA:79:2049,Europe/Paris,,OIF, +OIF:SP:79:2050,1,"Bièvre / la Poterne",48.737794,2.272099,0,0,OIF:SA:79:2050,Europe/Paris,,OIF, +OIF:SP:79:2051,1,"Massy Verrières RER",48.734873,2.272877,0,0,OIF:SA:8738328,Europe/Paris,,OIF, +OIF:SP:79:2052,1,"Mairie",48.731188,2.272705,0,0,OIF:SA:79:2052,Europe/Paris,,OIF, +OIF:SP:79:2053,1,"Centre Ville - Gabriel Péri",48.729338,2.275968,0,0,OIF:SA:79:2053,Europe/Paris,,OIF, +OIF:SP:79:2054,1,"Jean Mermoz",48.729386,2.280792,0,0,OIF:SA:79:2054,Europe/Paris,,OIF, +OIF:SP:79:2055,1,"Paul Baillart",48.731525,2.28174,0,0,OIF:SA:79:2055,Europe/Paris,,OIF, +OIF:SP:79:2056,1,"Les Franciades",48.732211,2.286753,0,0,OIF:SA:79:2056,Europe/Paris,,OIF, +OIF:SP:79:2057,1,"Opéra - Théâtre",48.731745,2.290844,0,0,OIF:SA:79:2057,Europe/Paris,,OIF, +OIF:SP:79:2058,1,"Marché de Narbonne",48.736284,2.292226,0,0,OIF:SA:79:2058,Europe/Paris,,OIF, +OIF:SP:79:2059,1,"Périgord - Languedoc",48.736134,2.29811,0,0,OIF:SA:79:2059,Europe/Paris,,OIF, +OIF:SP:79:2060,1,"Biarritz",48.73482,2.293926,0,0,OIF:SA:79:2060,Europe/Paris,,OIF, +OIF:SP:79:2061,1,"Opéra - Théâtre",48.731772,2.290708,0,0,OIF:SA:79:2057,Europe/Paris,,OIF, +OIF:SP:79:2062,1,"Les Franciades",48.731456,2.287338,0,0,OIF:SA:79:2056,Europe/Paris,,OIF, +OIF:SP:79:2063,1,"Paul Baillart",48.731615,2.281727,0,0,OIF:SA:79:2055,Europe/Paris,,OIF, +OIF:SP:79:2064,1,"Jean Mermoz",48.729412,2.280669,0,0,OIF:SA:79:2054,Europe/Paris,,OIF, +OIF:SP:79:2065,1,"Centre Ville - Henri Gilbert",48.730022,2.276919,0,0,OIF:SA:79:2053,Europe/Paris,,OIF, +OIF:SP:79:2066,1,"Gambetta - Mairie",48.731405,2.274716,0,0,OIF:SA:79:2052,Europe/Paris,,OIF, +OIF:SP:79:2067,1,"Massy Verrières RER",48.733912,2.273204,0,0,OIF:SA:8738328,Europe/Paris,,OIF, +OIF:SP:79:2068,1,"Émile Zola",48.736539,2.26267,0,0,OIF:SA:79:2049,Europe/Paris,,OIF, +OIF:SP:79:2069,1,"Les Graviers",48.726608,2.250851,0,0,OIF:SA:79:2046,Europe/Paris,,OIF, +OIF:SP:79:2070,1,"Lycée de Vilgénis",48.731329,2.253927,0,0,OIF:SA:79:2045,Europe/Paris,,OIF, +OIF:SP:79:2071,1,"Marché",48.696789,2.292246,0,0,OIF:SA:79:2071,Europe/Paris,,OIF, +OIF:SP:79:2072,1,"Cimetière Vers Champarts",48.707581,2.311318,0,0,OIF:SA:79:2072,Europe/Paris,,OIF, +OIF:SP:79:2073,1,"Champarts",48.712028,2.303669,0,0,OIF:SA:79:2073,Europe/Paris,,OIF, +OIF:SP:79:2074,1,"Gay Lussac",48.710085,2.297504,0,0,OIF:SA:79:2074,Europe/Paris,,OIF, +OIF:SP:79:2075,1,"Victor Hugo",48.704755,2.296789,0,0,OIF:SA:79:2075,Europe/Paris,,OIF, +OIF:SP:79:2076,1,"Gay Lussac",48.710076,2.297667,0,0,OIF:SA:79:2074,Europe/Paris,,OIF, +OIF:SP:79:2077,1,"Champarts",48.7121,2.303669,0,0,OIF:SA:79:2073,Europe/Paris,,OIF, +OIF:SP:79:2078,1,"Collège",48.705775,2.313913,0,0,OIF:SA:79:2078,Europe/Paris,,OIF, +OIF:SP:79:2079,1,"Fontaine Augère",48.695079,2.316538,0,0,OIF:SA:79:2079,Europe/Paris,,OIF, +OIF:SP:79:2080,1,"Maison de la Petite Enfance",48.69285,2.315019,0,0,OIF:SA:79:2080,Europe/Paris,,OIF, +OIF:SP:79:2081,1,"Saint-Eloi",48.695751,2.307414,0,0,OIF:SA:79:2039,Europe/Paris,,OIF, +OIF:SP:79:2082,1,"Gare RER",48.699787,2.307099,0,0,OIF:SA:8739363,Europe/Paris,,OIF, +OIF:SP:79:2083,1,"Lucie et Raymond Aubrac",48.693686,2.317299,0,0,OIF:SA:79:2083,Europe/Paris,,OIF, +OIF:SP:79:2084,1,"Collège",48.705883,2.314062,0,0,OIF:SA:79:2078,Europe/Paris,,OIF, +OIF:SP:79:3002,1,"Rosny-sous-Bois RER",48.871341,2.48568,0,0,OIF:SA:8711370,Europe/Paris,,OIF, +OIF:SP:79:3003,1,"Piscine",48.871534,2.482384,0,0,OIF:SA:79:3003,Europe/Paris,,OIF, +OIF:SP:79:3004,1,"Z.A. Nanteuil",48.876916,2.475709,0,0,OIF:SA:79:3004,Europe/Paris,,OIF, +OIF:SP:79:3005,1,"Gabriel Péri",48.878762,2.472675,0,0,OIF:SA:79:3005,Europe/Paris,,OIF, +OIF:SP:79:3006,1,"Chemin des Soudoux",48.879825,2.470007,0,0,OIF:SA:79:3006,Europe/Paris,,OIF, +OIF:SP:79:3007,1,"Ruelle Boissière",48.879804,2.465047,0,0,OIF:SA:79:3007,Europe/Paris,,OIF, +OIF:SP:79:3008,1,"La Boissière",48.87841,2.457563,0,0,OIF:SA:79:3008,Europe/Paris,,OIF, +OIF:SP:79:3010,1,"Etienne Dolet",48.876808,2.467874,0,0,OIF:SA:79:3010,Europe/Paris,,OIF, +OIF:SP:79:3011,1,"Rue de l'Acacias",48.873651,2.470277,0,0,OIF:SA:79:3011,Europe/Paris,,OIF, +OIF:SP:79:3012,1,"Fort de Rosny",48.871285,2.472179,0,0,OIF:SA:79:3012,Europe/Paris,,OIF, +OIF:SP:79:3013,1,"Grand Verger",48.872806,2.478409,0,0,OIF:SA:79:3013,Europe/Paris,,OIF, +OIF:SP:79:3014,1,"Église de Rosny-sous-Bois",48.87369,2.483153,0,0,OIF:SA:79:3014,Europe/Paris,,OIF, +OIF:SP:79:3016,1,"Van Derheyden",48.87757,2.484812,0,0,OIF:SA:79:3016,Europe/Paris,,OIF, +OIF:SP:79:3019,1,"Gare Bois Perrier RER",48.883092,2.481858,0,0,OIF:SA:8711369,Europe/Paris,,OIF, +OIF:SP:79:3020,1,"Jaques Offenbach",48.881748,2.485955,0,0,OIF:SA:79:3020,Europe/Paris,,OIF, +OIF:SP:79:3021,1,"Alsace - Lorraine",48.88286,2.487512,0,0,OIF:SA:79:3021,Europe/Paris,,OIF, +OIF:SP:79:3022,1,"Les Marnaudes",48.883134,2.490947,0,0,OIF:SA:79:3022,Europe/Paris,,OIF, +OIF:SP:79:3023,1,"Ehpad",48.882586,2.491041,0,0,OIF:SA:79:3023,Europe/Paris,,OIF, +OIF:SP:79:3024,1,"Jean Mermoz",48.88089,2.489019,0,0,OIF:SA:79:3024,Europe/Paris,,OIF, +OIF:SP:79:3025,1,"Barroy",48.879409,2.487393,0,0,OIF:SA:79:3025,Europe/Paris,,OIF, +OIF:SP:79:3026,1,"Madeleine",48.874791,2.486358,0,0,OIF:SA:79:3026,Europe/Paris,,OIF, +OIF:SP:79:3027,1,"Hôtel de Ville",48.87238,2.488095,0,0,OIF:SA:79:3027,Europe/Paris,,OIF, +OIF:SP:79:3028,1,"Beaulieu",48.871936,2.49105,0,0,OIF:SA:79:3028,Europe/Paris,,OIF, +OIF:SP:79:3029,1,"Letessier",48.874261,2.493237,0,0,OIF:SA:79:3029,Europe/Paris,,OIF, +OIF:SP:79:3030,1,"Chemin d'Avron",48.876139,2.500014,0,0,OIF:SA:79:3030,Europe/Paris,,OIF, +OIF:SP:79:3031,1,"Avenue de l'Ouest",48.874781,2.507109,0,0,OIF:SA:79:3031,Europe/Paris,,OIF, +OIF:SP:79:3032,1,"J.D. d'Angers",48.878197,2.506575,0,0,OIF:SA:79:3032,Europe/Paris,,OIF, +OIF:SP:79:3033,1,"Danton",48.877284,2.504051,0,0,OIF:SA:79:3033,Europe/Paris,,OIF, +OIF:SP:79:3034,1,"Chemin d'Avron",48.876697,2.499948,0,0,OIF:SA:79:3030,Europe/Paris,,OIF, +OIF:SP:79:3035,1,"Berthauds",48.879361,2.49704,0,0,OIF:SA:79:3035,Europe/Paris,,OIF, +OIF:SP:79:3036,1,"11 Novembre",48.88074,2.494006,0,0,OIF:SA:79:3036,Europe/Paris,,OIF, +OIF:SP:79:3037,1,"Nungesser et Coli",48.879963,2.490106,0,0,OIF:SA:79:3037,Europe/Paris,,OIF, +OIF:SP:79:3038,1,"Jean Jaurès",48.87098,2.486347,0,0,OIF:SA:79:3038,Europe/Paris,,OIF, +OIF:SP:79:3039,1,"Marché des Boutours",48.868294,2.48593,0,0,OIF:SA:79:3039,Europe/Paris,,OIF, +OIF:SP:79:3040,1,"Pascal",48.864418,2.488017,0,0,OIF:SA:79:3040,Europe/Paris,,OIF, +OIF:SP:79:3041,1,"Faidherbe",48.861549,2.489412,0,0,OIF:SA:79:3041,Europe/Paris,,OIF, +OIF:SP:79:3042,1,"Charles de Gaulle",48.862004,2.492178,0,0,OIF:SA:79:3042,Europe/Paris,,OIF, +OIF:SP:79:3043,1,"Missak Manouchian",48.864109,2.496898,0,0,OIF:SA:79:3043,Europe/Paris,,OIF, +OIF:SP:79:3044,1,"Sainte-Odile",48.867811,2.497958,0,0,OIF:SA:79:3044,Europe/Paris,,OIF, +OIF:SP:79:3045,1,"Mondor",48.869495,2.495525,0,0,OIF:SA:79:3045,Europe/Paris,,OIF, +OIF:SP:79:3046,1,"Émile Bellepêche",48.87069,2.49576,0,0,OIF:SA:79:3046,Europe/Paris,,OIF, +OIF:SP:79:3047,1,"Étang à l'Eau",48.87054,2.500038,0,0,OIF:SA:79:3047,Europe/Paris,,OIF, +OIF:SP:79:3048,1,"J. Duclos",48.871045,2.498936,0,0,OIF:SA:79:3048,Europe/Paris,,OIF, +OIF:SP:79:3049,1,"Casanova",48.873295,2.496667,0,0,OIF:SA:79:3049,Europe/Paris,,OIF, +OIF:SP:79:3050,1,"Letessier",48.87409,2.493209,0,0,OIF:SA:79:3029,Europe/Paris,,OIF, +OIF:SP:79:3051,1,"Hôtel de Ville",48.871186,2.486892,0,0,OIF:SA:79:3027,Europe/Paris,,OIF, +OIF:SP:79:3052,1,"Gardebled",48.87492,2.484042,0,0,OIF:SA:79:3052,Europe/Paris,,OIF, +OIF:SP:79:3053,1,"Jean de Mailly",48.878279,2.485332,0,0,OIF:SA:79:3053,Europe/Paris,,OIF, +OIF:SP:79:3054,1,"De Gaulle - Péri",48.877199,2.479906,0,0,OIF:SA:79:3054,Europe/Paris,,OIF, +OIF:SP:7:10001,1,"Ambourget Cimetière",48.948089,2.513298,0,0,OIF:SA:7:10001,Europe/Paris,,OIF, +OIF:SP:7:10002,1,"Ambourget Cimetière",48.945811,2.510084,0,0,OIF:SA:7:10001,Europe/Paris,,OIF, +OIF:SP:7:10003,1,"Anatole France",48.935553,2.49334,0,0,OIF:SA:70:13184,Europe/Paris,,OIF, +OIF:SP:7:10004,1,"Anatole France",48.936082,2.494815,0,0,OIF:SA:70:13184,Europe/Paris,,OIF, +OIF:SP:7:10005,1,"Arts",48.942143,2.504929,0,0,OIF:SA:7:10005,Europe/Paris,,OIF, +OIF:SP:7:10006,1,"Arts",48.942035,2.505024,0,0,OIF:SA:7:10005,Europe/Paris,,OIF, +OIF:SP:7:10007,1,"Botticelli",48.953237,2.501936,0,0,OIF:SA:70:1401,Europe/Paris,,OIF, +OIF:SP:7:10008,1,"Botticelli",48.953244,2.503095,0,0,OIF:SA:70:1401,Europe/Paris,,OIF, +OIF:SP:7:10009,1,"Bougainville",48.955805,2.496717,0,0,OIF:SA:70:10173,Europe/Paris,,OIF, +OIF:SP:7:10010,1,"Bougainville",48.955715,2.49669,0,0,OIF:SA:70:10173,Europe/Paris,,OIF, +OIF:SP:7:10011,1,"Brunetière",48.936014,2.484229,0,0,OIF:SA:70:23044,Europe/Paris,,OIF, +OIF:SP:7:10012,1,"Brunetière",48.935734,2.485129,0,0,OIF:SA:70:23044,Europe/Paris,,OIF, +OIF:SP:7:10013,1,"Croix Blanche",48.932466,2.50367,0,0,OIF:SA:70:27666,Europe/Paris,,OIF, +OIF:SP:7:10014,1,"CC O'Parinor",48.956376,2.478678,0,0,OIF:SA:11:165,Europe/Paris,,OIF, +OIF:SP:7:10015,1,"Collège Debussy",48.953494,2.510983,0,0,OIF:SA:70:14395,Europe/Paris,,OIF, +OIF:SP:7:10016,1,"Collège Debussy",48.953224,2.511023,0,0,OIF:SA:70:14395,Europe/Paris,,OIF, +OIF:SP:7:10017,1,"Calmette et Guérin",48.951845,2.513489,0,0,OIF:SA:7:10017,Europe/Paris,,OIF, +OIF:SP:7:10018,1,"Calmette et Guérin",48.951818,2.513843,0,0,OIF:SA:7:10017,Europe/Paris,,OIF, +OIF:SP:7:10019,1,"Charcot",48.934388,2.490977,0,0,OIF:SA:70:30597,Europe/Paris,,OIF, +OIF:SP:7:10020,1,"Charcot",48.934604,2.490704,0,0,OIF:SA:70:30597,Europe/Paris,,OIF, +OIF:SP:7:10021,1,"Claude Debussy",48.952049,2.509368,0,0,OIF:SA:70:14395,Europe/Paris,,OIF, +OIF:SP:7:10022,1,"Collège Néruda",48.951818,2.51967,0,0,OIF:SA:7:10022,Europe/Paris,,OIF, +OIF:SP:7:10023,1,"Collège Néruda",48.9518,2.519943,0,0,OIF:SA:7:10022,Europe/Paris,,OIF, +OIF:SP:7:10024,1,"Citroën Production",48.965118,2.494671,0,0,OIF:SA:59:3666666,Europe/Paris,,OIF, +OIF:SP:7:10025,1,"Citroën Production",48.96421,2.49516,0,0,OIF:SA:59:3666666,Europe/Paris,,OIF, +OIF:SP:7:10026,1,"Citroën Production",48.96482,2.496158,0,0,OIF:SA:59:3666666,Europe/Paris,,OIF, +OIF:SP:7:10027,1,"Croix Saint-Marc",48.960161,2.498546,0,0,OIF:SA:70:1380,Europe/Paris,,OIF, +OIF:SP:7:10028,1,"Croix Saint-Marc",48.959542,2.497602,0,0,OIF:SA:70:1380,Europe/Paris,,OIF, +OIF:SP:7:10029,1,"Centre Technique Municipal",48.961264,2.500651,0,0,OIF:SA:7:10029,Europe/Paris,,OIF, +OIF:SP:7:10030,1,"Centre Technique Municipal",48.961111,2.5005,0,0,OIF:SA:7:10029,Europe/Paris,,OIF, +OIF:SP:7:10031,1,"Citroën Visiteurs",48.961127,2.488832,0,0,OIF:SA:59:3666588,Europe/Paris,,OIF, +OIF:SP:7:10032,1,"Citroën Visiteurs",48.960291,2.48872,0,0,OIF:SA:59:3666588,Europe/Paris,,OIF, +OIF:SP:7:10034,1,"Docteur Fléming",48.951811,2.518183,0,0,OIF:SA:7:10034,Europe/Paris,,OIF, +OIF:SP:7:10035,1,"Docteur Fléming",48.952063,2.517911,0,0,OIF:SA:7:10034,Europe/Paris,,OIF, +OIF:SP:7:10036,1,"Dupuytren",48.954349,2.515722,0,0,OIF:SA:7:10036,Europe/Paris,,OIF, +OIF:SP:7:10037,1,"Dupuytren",48.954259,2.515803,0,0,OIF:SA:7:10036,Europe/Paris,,OIF, +OIF:SP:7:10038,1,"Floquet",48.937406,2.498939,0,0,OIF:SA:70:29476,Europe/Paris,,OIF, +OIF:SP:7:10039,1,"Floquet",48.937584,2.500085,0,0,OIF:SA:70:29476,Europe/Paris,,OIF, +OIF:SP:7:10040,1,"Garonor Entrée 4",48.953165,2.465283,0,0,OIF:SA:7:10040,Europe/Paris,,OIF, +OIF:SP:7:10041,1,"Garonor Entrée 4",48.953075,2.465242,0,0,OIF:SA:7:10040,Europe/Paris,,OIF, +OIF:SP:7:10042,1,"Gros Saule",48.949437,2.519198,0,0,OIF:SA:7:10042,Europe/Paris,,OIF, +OIF:SP:7:10043,1,"Gros Saule",48.949418,2.520057,0,0,OIF:SA:7:10042,Europe/Paris,,OIF, +OIF:SP:7:10044,1,"HLM",48.944942,2.508594,0,0,OIF:SA:7:10044,Europe/Paris,,OIF, +OIF:SP:7:10045,1,"Henri Mondor",48.952986,2.51397,0,0,OIF:SA:7:10045,Europe/Paris,,OIF, +OIF:SP:7:10046,1,"Henri Mondor",48.953174,2.51423,0,0,OIF:SA:7:10045,Europe/Paris,,OIF, +OIF:SP:7:10047,1,"Lycée d'Aulnay",48.939575,2.509613,0,0,OIF:SA:70:11588,Europe/Paris,,OIF, +OIF:SP:7:10048,1,"Lycée d'Aulnay",48.939558,2.508836,0,0,OIF:SA:70:11588,Europe/Paris,,OIF, +OIF:SP:7:10049,1,"Marcel Sembat",48.93555,2.488661,0,0,OIF:SA:70:27015,Europe/Paris,,OIF, +OIF:SP:7:10050,1,"Lenglen",48.951675,2.513461,0,0,OIF:SA:7:10050,Europe/Paris,,OIF, +OIF:SP:7:10051,1,"Lenglen",48.951063,2.513964,0,0,OIF:SA:7:10050,Europe/Paris,,OIF, +OIF:SP:7:10052,1,"Lilas",48.949988,2.511749,0,0,OIF:SA:70:10577,Europe/Paris,,OIF, +OIF:SP:7:10053,1,"Lilas",48.95024,2.511355,0,0,OIF:SA:70:10577,Europe/Paris,,OIF, +OIF:SP:7:10054,1,"Lapin Sauté",48.943794,2.506912,0,0,OIF:SA:7:10054,Europe/Paris,,OIF, +OIF:SP:7:10055,1,"Lapin Sauté",48.943963,2.507609,0,0,OIF:SA:7:10054,Europe/Paris,,OIF, +OIF:SP:7:10056,1,"Matisse Delacroix",48.953942,2.499168,0,0,OIF:SA:70:15404,Europe/Paris,,OIF, +OIF:SP:7:10057,1,"Matisse Delacroix",48.95387,2.499126,0,0,OIF:SA:70:15404,Europe/Paris,,OIF, +OIF:SP:7:10058,1,"O'Parinor Louis Armand",48.95597,2.480383,0,0,OIF:SA:7:10058,Europe/Paris,,OIF, +OIF:SP:7:10059,1,"O'Parinor Louis Armand",48.955295,2.481077,0,0,OIF:SA:7:10058,Europe/Paris,,OIF, +OIF:SP:7:10060,1,"Paré",48.94929,2.515636,0,0,OIF:SA:7:10060,Europe/Paris,,OIF, +OIF:SP:7:10061,1,"Poissons",48.957646,2.504379,0,0,OIF:SA:70:22356,Europe/Paris,,OIF, +OIF:SP:7:10062,1,"Poissons",48.958428,2.504286,0,0,OIF:SA:70:22356,Europe/Paris,,OIF, +OIF:SP:7:10063,1,"Poissons",48.957968,2.505158,0,0,OIF:SA:70:22356,Europe/Paris,,OIF, +OIF:SP:7:10064,1,"Aulnay sous Bois RER B",48.932423,2.495595,0,0,OIF:SA:8727141,Europe/Paris,,OIF, +OIF:SP:7:10065,1,"Saturne",48.955664,2.501302,0,0,OIF:SA:70:1582,Europe/Paris,,OIF, +OIF:SP:7:10066,1,"Savigny",48.948411,2.514541,0,0,OIF:SA:7:10066,Europe/Paris,,OIF, +OIF:SP:7:10067,1,"Schuman",48.948415,2.517516,0,0,OIF:SA:7:10067,Europe/Paris,,OIF, +OIF:SP:7:10068,1,"Schweitzer",48.949737,2.517084,0,0,OIF:SA:7:10068,Europe/Paris,,OIF, +OIF:SP:7:10069,1,"Soleil Levant",48.939757,2.501511,0,0,OIF:SA:70:13719,Europe/Paris,,OIF, +OIF:SP:7:10070,1,"Soleil Levant",48.940528,2.502782,0,0,OIF:SA:70:13719,Europe/Paris,,OIF, +OIF:SP:7:10071,1,"Soleil Levant",48.940106,2.502958,0,0,OIF:SA:70:13719,Europe/Paris,,OIF, +OIF:SP:7:10072,1,"Stade du Moulin Neuf",48.935037,2.50316,0,0,OIF:SA:7:10072,Europe/Paris,,OIF, +OIF:SP:7:10073,1,"Saint-Paul",48.947169,2.509243,0,0,OIF:SA:7:10073,Europe/Paris,,OIF, +OIF:SP:7:10074,1,"Tennis",48.957111,2.49477,0,0,OIF:SA:70:1759,Europe/Paris,,OIF, +OIF:SP:7:10075,1,"Tennis",48.956868,2.494892,0,0,OIF:SA:70:1759,Europe/Paris,,OIF, +OIF:SP:7:10076,1,"Vélodrome",48.953753,2.505881,0,0,OIF:SA:70:3718,Europe/Paris,,OIF, +OIF:SP:7:10077,1,"Vélodrome",48.953769,2.507082,0,0,OIF:SA:70:3718,Europe/Paris,,OIF, +OIF:SP:7:10078,1,"11-14 Avenue Einstein",48.945673,2.47064,0,0,OIF:SA:70:17862,Europe/Paris,,OIF, +OIF:SP:7:10079,1,"11-14 Avenue Einstein",48.945817,2.470668,0,0,OIF:SA:70:17862,Europe/Paris,,OIF, +OIF:SP:7:10080,1,"Armand Esders",48.948158,2.466758,0,0,OIF:SA:70:18833,Europe/Paris,,OIF, +OIF:SP:7:10081,1,"Armand Esders",48.947779,2.467589,0,0,OIF:SA:70:18833,Europe/Paris,,OIF, +OIF:SP:7:10082,1,"Collège Aimée et Eugénie Cotton",48.941032,2.474339,0,0,OIF:SA:7:10082,Europe/Paris,,OIF, +OIF:SP:7:10083,1,"Collège Aimée et Eugénie Cotton",48.942091,2.475379,0,0,OIF:SA:7:10082,Europe/Paris,,OIF, +OIF:SP:7:10084,1,"Centre d'Affaire",48.952548,2.462375,0,0,OIF:SA:7:10084,Europe/Paris,,OIF, +OIF:SP:7:10085,1,"Centre d'Affaire",48.952755,2.462103,0,0,OIF:SA:7:10084,Europe/Paris,,OIF, +OIF:SP:7:10086,1,"Calmette",48.939201,2.47222,0,0,OIF:SA:59:6682705,Europe/Paris,,OIF, +OIF:SP:7:10087,1,"Calmette",48.939677,2.472344,0,0,OIF:SA:59:6682705,Europe/Paris,,OIF, +OIF:SP:7:10090,1,"Descartes",48.950372,2.463843,0,0,OIF:SA:7:10090,Europe/Paris,,OIF, +OIF:SP:7:10091,1,"Descartes",48.950605,2.46424,0,0,OIF:SA:7:10090,Europe/Paris,,OIF, +OIF:SP:7:10096,1,"Isaac Newton",48.943766,2.472573,0,0,OIF:SA:70:27632,Europe/Paris,,OIF, +OIF:SP:7:10097,1,"Isaac Newton",48.944377,2.472151,0,0,OIF:SA:70:27632,Europe/Paris,,OIF, +OIF:SP:7:10098,1,"La Fontaine",48.937608,2.473852,0,0,OIF:SA:70:10033,Europe/Paris,,OIF, +OIF:SP:7:10099,1,"La Fontaine",48.938112,2.473513,0,0,OIF:SA:70:10033,Europe/Paris,,OIF, +OIF:SP:7:10104,1,"Pasteur",48.935269,2.475851,0,0,OIF:SA:70:19540,Europe/Paris,,OIF, +OIF:SP:7:10105,1,"Pasteur",48.93508,2.476246,0,0,OIF:SA:70:19540,Europe/Paris,,OIF, +OIF:SP:7:10106,1,"Racine",48.936126,2.481201,0,0,OIF:SA:70:22365,Europe/Paris,,OIF, +OIF:SP:7:10107,1,"Racine",48.935939,2.479741,0,0,OIF:SA:70:22365,Europe/Paris,,OIF, +OIF:SP:7:10108,1,"Le Blanc Mesnil RER B",48.932634,2.477563,0,0,OIF:SA:8727147,Europe/Paris,,OIF, +OIF:SP:7:10109,1,"Le Blanc Mesnil RER B",48.932661,2.477781,0,0,OIF:SA:8727147,Europe/Paris,,OIF, +OIF:SP:7:10110,1,"Rond-Point Pablo Néruda",48.949921,2.465425,0,0,OIF:SA:70:3709,Europe/Paris,,OIF, +OIF:SP:7:10111,1,"Rond-Point Pablo Néruda",48.950065,2.464866,0,0,OIF:SA:70:3709,Europe/Paris,,OIF, +OIF:SP:7:10112,1,"Auguste Delaune",48.906554,2.460969,0,0,OIF:SA:59008,Europe/Paris,,OIF, +OIF:SP:7:10113,1,"Cité Administrative",48.905583,2.461348,0,0,OIF:SA:59008,Europe/Paris,,OIF, +OIF:SP:7:10114,1,"Lamartine",48.906703,2.455666,0,0,OIF:SA:59006,Europe/Paris,,OIF, +OIF:SP:7:10115,1,"Lamartine",48.907514,2.453704,0,0,OIF:SA:59006,Europe/Paris,,OIF, +OIF:SP:7:10118,1,"Pont de Bondy",48.905907,2.469747,0,0,OIF:SA:59:4035526,Europe/Paris,,OIF, +OIF:SP:7:10119,1,"Pont de Bondy",48.905809,2.46897,0,0,OIF:SA:59:4035526,Europe/Paris,,OIF, +OIF:SP:7:10120,1,"Palais de Justice René Camier",48.908514,2.451798,0,0,OIF:SA:59006,Europe/Paris,,OIF, +OIF:SP:7:10121,1,"Pablo Picasso",48.906996,2.450022,0,0,OIF:SA:59342,Europe/Paris,,OIF, +OIF:SP:7:10172,1,"Calvaire",48.993402,2.665475,0,0,OIF:SA:7:10172,Europe/Paris,,OIF, +OIF:SP:7:10173,1,"Caquot",48.983998,2.650287,0,0,OIF:SA:7:10173,Europe/Paris,,OIF, +OIF:SP:7:10174,1,"Caquot",48.984061,2.650219,0,0,OIF:SA:7:10173,Europe/Paris,,OIF, +OIF:SP:7:10175,1,"Coulomb",48.9861,2.650313,0,0,OIF:SA:7:10175,Europe/Paris,,OIF, +OIF:SP:7:10176,1,"Coulomb",48.985795,2.650366,0,0,OIF:SA:7:10175,Europe/Paris,,OIF, +OIF:SP:7:10177,1,"École Jean de la Fontaine",48.990998,2.666894,0,0,OIF:SA:7:10177,Europe/Paris,,OIF, +OIF:SP:7:10178,1,"Etam",48.993559,2.657364,0,0,OIF:SA:7:10178,Europe/Paris,,OIF, +OIF:SP:7:10179,1,"Etam",48.993442,2.6572,0,0,OIF:SA:7:10178,Europe/Paris,,OIF, +OIF:SP:7:10180,1,"Jacquart 2",48.988254,2.644619,0,0,OIF:SA:7:10180,Europe/Paris,,OIF, +OIF:SP:7:10181,1,"Jacquart 2",48.988522,2.645207,0,0,OIF:SA:7:10180,Europe/Paris,,OIF, +OIF:SP:7:10182,1,"Mairie",48.993839,2.663143,0,0,OIF:SA:6:16,Europe/Paris,,OIF, +OIF:SP:7:10183,1,"Mairie",48.993927,2.663799,0,0,OIF:SA:6:16,Europe/Paris,,OIF, +OIF:SP:7:10184,1,"Maison des Associations",48.993121,2.663138,0,0,OIF:SA:7:10184,Europe/Paris,,OIF, +OIF:SP:7:10185,1,"Mercier",48.98971,2.64815,0,0,OIF:SA:7:10185,Europe/Paris,,OIF, +OIF:SP:7:10186,1,"Mercier",48.989728,2.647973,0,0,OIF:SA:7:10185,Europe/Paris,,OIF, +OIF:SP:7:10187,1,"Mermoz",48.992785,2.65075,0,0,OIF:SA:7:10187,Europe/Paris,,OIF, +OIF:SP:7:10188,1,"RD 9",48.991728,2.652819,0,0,OIF:SA:7:10188,Europe/Paris,,OIF, +OIF:SP:7:10189,1,"RD 9",48.9917,2.653461,0,0,OIF:SA:7:10188,Europe/Paris,,OIF, +OIF:SP:7:10190,1,"Saint-Exupéry",48.996387,2.651427,0,0,OIF:SA:7:10190,Europe/Paris,,OIF, +OIF:SP:7:10191,1,"Vinci 2",48.980592,2.646799,0,0,OIF:SA:7:10191,Europe/Paris,,OIF, +OIF:SP:7:10192,1,"Vinci 2",48.980538,2.646675,0,0,OIF:SA:7:10191,Europe/Paris,,OIF, +OIF:SP:7:10193,1,"ZI Spicers",48.994964,2.656144,0,0,OIF:SA:7:10193,Europe/Paris,,OIF, +OIF:SP:7:10194,1,"ZI Spicers",48.994891,2.65628,0,0,OIF:SA:7:10193,Europe/Paris,,OIF, +OIF:SP:7:10222,1,"Épis",48.977512,2.500211,0,0,OIF:SA:7:10222,Europe/Paris,,OIF, +OIF:SP:7:10223,1,"Épis",48.977278,2.500865,0,0,OIF:SA:7:10222,Europe/Paris,,OIF, +OIF:SP:7:10226,1,"Collège de Juilly",49.011995,2.705416,0,0,OIF:SA:7:10226,Europe/Paris,,OIF, +OIF:SP:7:10227,1,"La Rochelle",49.010611,2.702483,0,0,OIF:SA:6:70,Europe/Paris,,OIF, +OIF:SP:7:10228,1,"La Rochelle",49.01072,2.702183,0,0,OIF:SA:6:70,Europe/Paris,,OIF, +OIF:SP:7:10229,1,"Mairie",49.015247,2.705726,0,0,OIF:SA:6:72,Europe/Paris,,OIF, +OIF:SP:7:10230,1,"Mairie",49.015248,2.705549,0,0,OIF:SA:6:72,Europe/Paris,,OIF, +OIF:SP:7:10232,1,"Verdiers",49.017495,2.705182,0,0,OIF:SA:6:74,Europe/Paris,,OIF, +OIF:SP:7:10233,1,"Verdiers",49.01737,2.705017,0,0,OIF:SA:6:74,Europe/Paris,,OIF, +OIF:SP:7:10252,1,"14 Juillet",48.963985,2.589225,0,0,OIF:SA:7:10252,Europe/Paris,,OIF, +OIF:SP:7:10254,1,"L'Abime",48.974173,2.629805,0,0,OIF:SA:7:10254,Europe/Paris,,OIF, +OIF:SP:7:10258,1,"Berthelot",48.979768,2.642111,0,0,OIF:SA:7:10258,Europe/Paris,,OIF, +OIF:SP:7:10259,1,"Berthelot",48.979625,2.641973,0,0,OIF:SA:7:10258,Europe/Paris,,OIF, +OIF:SP:7:10260,1,"Bibliothèque / Cmcl",48.955415,2.600223,0,0,OIF:SA:7:10260,Europe/Paris,,OIF, +OIF:SP:7:10261,1,"Bosquets",48.956541,2.602985,0,0,OIF:SA:53:2047,Europe/Paris,,OIF, +OIF:SP:7:10262,1,"Bosquets",48.956381,2.602466,0,0,OIF:SA:53:2047,Europe/Paris,,OIF, +OIF:SP:7:10263,1,"Boulogne",48.962989,2.593069,0,0,OIF:SA:7:10263,Europe/Paris,,OIF, +OIF:SP:7:10265,1,"Branly",48.984163,2.635023,0,0,OIF:SA:7:10265,Europe/Paris,,OIF, +OIF:SP:7:10266,1,"Branly",48.984253,2.634942,0,0,OIF:SA:7:10265,Europe/Paris,,OIF, +OIF:SP:7:10267,1,"Carrez",48.978542,2.625502,0,0,OIF:SA:53:2091,Europe/Paris,,OIF, +OIF:SP:7:10268,1,"Carrez",48.978344,2.625897,0,0,OIF:SA:53:2091,Europe/Paris,,OIF, +OIF:SP:7:10269,1,"Cheminots",48.975017,2.637318,0,0,OIF:SA:53:2597,Europe/Paris,,OIF, +OIF:SP:7:10270,1,"Cheminots",48.974962,2.637782,0,0,OIF:SA:53:2597,Europe/Paris,,OIF, +OIF:SP:7:10275,1,"Colas",48.980354,2.626946,0,0,OIF:SA:7:10275,Europe/Paris,,OIF, +OIF:SP:7:10276,1,"Courcelles",48.971403,2.645146,0,0,OIF:SA:7:10276,Europe/Paris,,OIF, +OIF:SP:7:10277,1,"Ctci",48.982521,2.647902,0,0,OIF:SA:7:10277,Europe/Paris,,OIF, +OIF:SP:7:10278,1,"Ctci",48.982476,2.648011,0,0,OIF:SA:7:10277,Europe/Paris,,OIF, +OIF:SP:7:10279,1,"Diderot",48.961289,2.584981,0,0,OIF:SA:7:10279,Europe/Paris,,OIF, +OIF:SP:7:10280,1,"Diderot",48.961235,2.584926,0,0,OIF:SA:7:10279,Europe/Paris,,OIF, +OIF:SP:7:10282,1,"Dijon",48.960775,2.586043,0,0,OIF:SA:7:10282,Europe/Paris,,OIF, +OIF:SP:7:10283,1,"Dubois",48.973046,2.635068,0,0,OIF:SA:7:10283,Europe/Paris,,OIF, +OIF:SP:7:10284,1,"Dubois",48.973037,2.634945,0,0,OIF:SA:7:10283,Europe/Paris,,OIF, +OIF:SP:7:10285,1,"Église",48.955117,2.592675,0,0,OIF:SA:7:10285,Europe/Paris,,OIF, +OIF:SP:7:10286,1,"Église",48.955208,2.592375,0,0,OIF:SA:7:10285,Europe/Paris,,OIF, +OIF:SP:7:10287,1,"Eiffel",48.980873,2.624273,0,0,OIF:SA:7:10287,Europe/Paris,,OIF, +OIF:SP:7:10288,1,"Épinal",48.96273,2.587731,0,0,OIF:SA:7:10288,Europe/Paris,,OIF, +OIF:SP:7:10290,1,"Frères Lumière",48.976053,2.629243,0,0,OIF:SA:7:10290,Europe/Paris,,OIF, +OIF:SP:7:10291,1,"Frères Lumière",48.975972,2.62916,0,0,OIF:SA:7:10290,Europe/Paris,,OIF, +OIF:SP:7:10292,1,"Forest",48.979487,2.639734,0,0,OIF:SA:7:10292,Europe/Paris,,OIF, +OIF:SP:7:10293,1,"Forest",48.979441,2.639924,0,0,OIF:SA:7:10292,Europe/Paris,,OIF, +OIF:SP:7:10294,1,"Foucault",48.983495,2.632534,0,0,OIF:SA:7:10294,Europe/Paris,,OIF, +OIF:SP:7:10295,1,"Foucault",48.983611,2.632644,0,0,OIF:SA:7:10294,Europe/Paris,,OIF, +OIF:SP:7:10296,1,"Galilée",48.972337,2.583519,0,0,OIF:SA:7:10296,Europe/Paris,,OIF, +OIF:SP:7:10297,1,"Galois",48.972587,2.579957,0,0,OIF:SA:7:10297,Europe/Paris,,OIF, +OIF:SP:7:10298,1,"Germain",48.970306,2.574445,0,0,OIF:SA:7:10298,Europe/Paris,,OIF, +OIF:SP:7:10299,1,"Gay Lussac",48.985142,2.638551,0,0,OIF:SA:7:10299,Europe/Paris,,OIF, +OIF:SP:7:10300,1,"Gay Lussac",48.985215,2.638402,0,0,OIF:SA:7:10299,Europe/Paris,,OIF, +OIF:SP:7:10301,1,"Inmac",48.9829,2.64385,0,0,OIF:SA:7:10301,Europe/Paris,,OIF, +OIF:SP:7:10302,1,"Inmac",48.98309,2.643537,0,0,OIF:SA:7:10301,Europe/Paris,,OIF, +OIF:SP:7:10303,1,"Jacquart 1",48.986968,2.641348,0,0,OIF:SA:7:10303,Europe/Paris,,OIF, +OIF:SP:7:10304,1,"Jacquart 1",48.987641,2.641911,0,0,OIF:SA:7:10303,Europe/Paris,,OIF, +OIF:SP:7:10305,1,"J.Moulin",48.982111,2.62129,0,0,OIF:SA:7:10305,Europe/Paris,,OIF, +OIF:SP:7:10306,1,"J.Moulin",48.98268,2.620337,0,0,OIF:SA:7:10305,Europe/Paris,,OIF, +OIF:SP:7:10307,1,"Lamartine",48.956163,2.599531,0,0,OIF:SA:7:10307,Europe/Paris,,OIF, +OIF:SP:7:10308,1,"Lamartine",48.956243,2.599586,0,0,OIF:SA:7:10307,Europe/Paris,,OIF, +OIF:SP:7:10309,1,"Lefèvre",48.972257,2.641452,0,0,OIF:SA:7:10309,Europe/Paris,,OIF, +OIF:SP:7:10310,1,"Lemoine",48.985449,2.615969,0,0,OIF:SA:7:10310,Europe/Paris,,OIF, +OIF:SP:7:10311,1,"Lenfant",48.982952,2.611614,0,0,OIF:SA:7:10311,Europe/Paris,,OIF, +OIF:SP:7:10312,1,"Lenfant",48.983006,2.611505,0,0,OIF:SA:7:10311,Europe/Paris,,OIF, +OIF:SP:7:10313,1,"Lilas",48.961565,2.603011,0,0,OIF:SA:53:2516,Europe/Paris,,OIF, +OIF:SP:7:10314,1,"Lumière",48.978434,2.629365,0,0,OIF:SA:7:10314,Europe/Paris,,OIF, +OIF:SP:7:10315,1,"Mairie",48.984174,2.619185,0,0,OIF:SA:53:2335,Europe/Paris,,OIF, +OIF:SP:7:10316,1,"Martyrs de Chateaubriant",48.960623,2.60242,0,0,OIF:SA:53:2327,Europe/Paris,,OIF, +OIF:SP:7:10317,1,"Martyrs de Chateaubriant",48.959707,2.601937,0,0,OIF:SA:53:2327,Europe/Paris,,OIF, +OIF:SP:7:10318,1,"Mail des Droits de l'Homme",48.961474,2.582539,0,0,OIF:SA:7:10318,Europe/Paris,,OIF, +OIF:SP:7:10319,1,"Mail des Droits de l'Homme",48.961447,2.582621,0,0,OIF:SA:7:10318,Europe/Paris,,OIF, +OIF:SP:7:10320,1,"Moulin des Marais",48.973099,2.632011,0,0,OIF:SA:7:10320,Europe/Paris,,OIF, +OIF:SP:7:10321,1,"Moulin des Marais",48.973179,2.632052,0,0,OIF:SA:7:10320,Europe/Paris,,OIF, +OIF:SP:7:10322,1,"Môquet",48.975487,2.632666,0,0,OIF:SA:53:2345,Europe/Paris,,OIF, +OIF:SP:7:10323,1,"Môquet",48.975578,2.632475,0,0,OIF:SA:53:2345,Europe/Paris,,OIF, +OIF:SP:7:10324,1,"Moulin à Vent",48.979948,2.623844,0,0,OIF:SA:53:2353,Europe/Paris,,OIF, +OIF:SP:7:10325,1,"Moulin à Vent",48.980227,2.623696,0,0,OIF:SA:53:2353,Europe/Paris,,OIF, +OIF:SP:7:10326,1,"Nantes",48.961797,2.58699,0,0,OIF:SA:7:10326,Europe/Paris,,OIF, +OIF:SP:7:10327,1,"Newton",48.983346,2.641818,0,0,OIF:SA:7:10327,Europe/Paris,,OIF, +OIF:SP:7:10328,1,"Newton",48.983211,2.641694,0,0,OIF:SA:7:10327,Europe/Paris,,OIF, +OIF:SP:7:10330,1,"Le Nid",48.968909,2.576514,0,0,OIF:SA:7:10330,Europe/Paris,,OIF, +OIF:SP:7:10331,1,"Nelson Mandela",48.96203,2.587305,0,0,OIF:SA:7:10331,Europe/Paris,,OIF, +OIF:SP:7:10332,1,"Nottelet - Môquet",48.974933,2.631598,0,0,OIF:SA:7:10332,Europe/Paris,,OIF, +OIF:SP:7:10333,1,"Nottelet - Môquet",48.975058,2.631858,0,0,OIF:SA:7:10332,Europe/Paris,,OIF, +OIF:SP:7:10334,1,"L'Orme aux Bergers",48.983641,2.620561,0,0,OIF:SA:7:10334,Europe/Paris,,OIF, +OIF:SP:7:10335,1,"Papin",48.982464,2.638645,0,0,OIF:SA:7:10335,Europe/Paris,,OIF, +OIF:SP:7:10336,1,"Papin",48.982374,2.638713,0,0,OIF:SA:7:10335,Europe/Paris,,OIF, +OIF:SP:7:10337,1,"Pasteur",48.958564,2.598479,0,0,OIF:SA:7:10337,Europe/Paris,,OIF, +OIF:SP:7:10338,1,"Pasteur",48.958565,2.59796,0,0,OIF:SA:7:10337,Europe/Paris,,OIF, +OIF:SP:7:10339,1,"Place Centrale",48.955907,2.588722,0,0,OIF:SA:7:10339,Europe/Paris,,OIF, +OIF:SP:7:10340,1,"Place Centrale",48.955845,2.588612,0,0,OIF:SA:7:10339,Europe/Paris,,OIF, +OIF:SP:7:10341,1,"Parc Corbrion",48.979635,2.615637,0,0,OIF:SA:53:2147,Europe/Paris,,OIF, +OIF:SP:7:10342,1,"Parc Corbrion",48.979609,2.615542,0,0,OIF:SA:53:2147,Europe/Paris,,OIF, +OIF:SP:7:10343,1,"Perrin",48.981181,2.63405,0,0,OIF:SA:7:10343,Europe/Paris,,OIF, +OIF:SP:7:10344,1,"Perrin",48.9811,2.634132,0,0,OIF:SA:7:10343,Europe/Paris,,OIF, +OIF:SP:7:10345,1,"Picasso",48.974051,2.646268,0,0,OIF:SA:7:10345,Europe/Paris,,OIF, +OIF:SP:7:10346,1,"Parc de la Mairie",48.982532,2.618056,0,0,OIF:SA:53:2362,Europe/Paris,,OIF, +OIF:SP:7:10348,1,"Place Melun",48.960217,2.59038,0,0,OIF:SA:7:10348,Europe/Paris,,OIF, +OIF:SP:7:10349,1,"Place Melun",48.9601,2.590721,0,0,OIF:SA:7:10348,Europe/Paris,,OIF, +OIF:SP:7:10350,1,"Pont",48.974055,2.641244,0,0,OIF:SA:7:10350,Europe/Paris,,OIF, +OIF:SP:7:10352,1,"Place de Pau",48.958886,2.586634,0,0,OIF:SA:7:10352,Europe/Paris,,OIF, +OIF:SP:7:10353,1,"Prévert",48.98466,2.618819,0,0,OIF:SA:7:10353,Europe/Paris,,OIF, +OIF:SP:7:10354,1,"Petit Vivier",48.974248,2.639321,0,0,OIF:SA:7:10354,Europe/Paris,,OIF, +OIF:SP:7:10355,1,"Mitry Claye RER B",48.975811,2.64318,0,0,OIF:SA:8727152,Europe/Paris,,OIF, +OIF:SP:7:10356,1,"Résistance",48.97756,2.615285,0,0,OIF:SA:7:10356,Europe/Paris,,OIF, +OIF:SP:7:10357,1,"Résistance",48.977327,2.614997,0,0,OIF:SA:7:10356,Europe/Paris,,OIF, +OIF:SP:7:10360,1,"Séguin",48.980071,2.646577,0,0,OIF:SA:7:10360,Europe/Paris,,OIF, +OIF:SP:7:10361,1,"Séguin",48.980089,2.646809,0,0,OIF:SA:7:10360,Europe/Paris,,OIF, +OIF:SP:7:10362,1,"Vaillant Couturier",48.983482,2.615412,0,0,OIF:SA:7:10362,Europe/Paris,,OIF, +OIF:SP:7:10364,1,"Verdun",48.954811,2.597,0,0,OIF:SA:7:10364,Europe/Paris,,OIF, +OIF:SP:7:10365,1,"Verdun",48.955068,2.59872,0,0,OIF:SA:7:10364,Europe/Paris,,OIF, +OIF:SP:7:10366,1,"Verdun",48.954595,2.597162,0,0,OIF:SA:7:10364,Europe/Paris,,OIF, +OIF:SP:7:10367,1,"Van Gogh",48.972955,2.646125,0,0,OIF:SA:7:10367,Europe/Paris,,OIF, +OIF:SP:7:10368,1,"Vinci 1",48.979429,2.644607,0,0,OIF:SA:7:10368,Europe/Paris,,OIF, +OIF:SP:7:10369,1,"Vinci 1",48.979303,2.644702,0,0,OIF:SA:7:10368,Europe/Paris,,OIF, +OIF:SP:7:10370,1,"Rue de Villeparisis",48.982516,2.613427,0,0,OIF:SA:53:2413,Europe/Paris,,OIF, +OIF:SP:7:10371,1,"Voltaire",48.958995,2.594441,0,0,OIF:SA:7:10371,Europe/Paris,,OIF, +OIF:SP:7:10372,1,"Voltaire",48.958915,2.594414,0,0,OIF:SA:7:10371,Europe/Paris,,OIF, +OIF:SP:7:10413,1,"Clos Marchais",48.912837,2.626404,0,0,OIF:SA:7:10413,Europe/Paris,,OIF, +OIF:SP:7:10414,1,"Clos Marchais",48.913114,2.627156,0,0,OIF:SA:7:10413,Europe/Paris,,OIF, +OIF:SP:7:10415,1,"Église",48.914812,2.630861,0,0,OIF:SA:7:10415,Europe/Paris,,OIF, +OIF:SP:7:10416,1,"Lagny",48.913763,2.633582,0,0,OIF:SA:7:10416,Europe/Paris,,OIF, +OIF:SP:7:10418,1,"Mairie",48.915049,2.629798,0,0,OIF:SA:7:10418,Europe/Paris,,OIF, +OIF:SP:7:10422,1,"Les Deux Cèdres",49.002138,2.528576,0,0,OIF:SA:7:10422,Europe/Paris,,OIF, +OIF:SP:7:10423,1,"Les Deux Cèdres",49.001878,2.528042,0,0,OIF:SA:7:10422,Europe/Paris,,OIF, +OIF:SP:7:10427,1,"Chesneau",49.006543,2.521803,0,0,OIF:SA:7:10427,Europe/Paris,,OIF, +OIF:SP:7:10428,1,"Chesneau",49.006687,2.522077,0,0,OIF:SA:7:10427,Europe/Paris,,OIF, +OIF:SP:7:10429,1,"Belle Etoile 123",48.980672,2.503088,0,0,OIF:SA:7:10429,Europe/Paris,,OIF, +OIF:SP:7:10430,1,"Belle Etoile 123",48.980617,2.503211,0,0,OIF:SA:7:10429,Europe/Paris,,OIF, +OIF:SP:7:10431,1,"Belle Etoile 165",48.982365,2.506493,0,0,OIF:SA:7:10431,Europe/Paris,,OIF, +OIF:SP:7:10432,1,"Belle Etoile 170",48.982491,2.506521,0,0,OIF:SA:7:10432,Europe/Paris,,OIF, +OIF:SP:7:10433,1,"Belle Étoile 230",48.9844,2.509804,0,0,OIF:SA:70:8357,Europe/Paris,,OIF, +OIF:SP:7:10434,1,"Belle Etoile 277",48.987039,2.512434,0,0,OIF:SA:70:8707,Europe/Paris,,OIF, +OIF:SP:7:10435,1,"Belle Etoile 277",48.987218,2.512913,0,0,OIF:SA:70:8707,Europe/Paris,,OIF, +OIF:SP:7:10436,1,"Belle Etoile 57",48.979165,2.500885,0,0,OIF:SA:7:10436,Europe/Paris,,OIF, +OIF:SP:7:10437,1,"Belle Etoile 69",48.979084,2.50124,0,0,OIF:SA:7:10437,Europe/Paris,,OIF, +OIF:SP:7:10444,1,"Marguilliers",48.994498,2.523972,0,0,OIF:SA:7:10444,Europe/Paris,,OIF, +OIF:SP:7:10445,1,"Marguilliers",48.994661,2.523427,0,0,OIF:SA:7:10444,Europe/Paris,,OIF, +OIF:SP:7:10446,1,"Orangerie",49.002574,2.519904,0,0,OIF:SA:7:10446,Europe/Paris,,OIF, +OIF:SP:7:10447,1,"Orangerie",49.002835,2.519795,0,0,OIF:SA:7:10446,Europe/Paris,,OIF, +OIF:SP:7:10449,1,"Bois de la Pie 351",48.9907,2.515683,0,0,OIF:SA:7:10449,Europe/Paris,,OIF, +OIF:SP:7:10450,1,"Parc des Nations",48.989855,2.516199,0,0,OIF:SA:59:3666793,Europe/Paris,,OIF, +OIF:SP:7:10451,1,"Tour de Contrôle",49.00933,2.548164,0,0,OIF:SA:11:147,Europe/Paris,,OIF, +OIF:SP:7:10452,1,"Vergers",48.998239,2.516419,0,0,OIF:SA:7:10452,Europe/Paris,,OIF, +OIF:SP:7:10453,1,"Vergers",48.998338,2.516447,0,0,OIF:SA:7:10452,Europe/Paris,,OIF, +OIF:SP:7:10456,1,"Sevran Beaudottes RER B",48.947163,2.525084,0,0,OIF:SA:8727144,Europe/Paris,,OIF, +OIF:SP:7:10457,1,"Cimetière",48.939606,2.524729,0,0,OIF:SA:59:3682064,Europe/Paris,,OIF, +OIF:SP:7:10458,1,"Cimetière",48.939643,2.52417,0,0,OIF:SA:59:3682064,Europe/Paris,,OIF, +OIF:SP:7:10461,1,"Gaston Bussière",48.938242,2.529267,0,0,OIF:SA:59:3682062,Europe/Paris,,OIF, +OIF:SP:7:10462,1,"Gaston Bussière",48.93736,2.529959,0,0,OIF:SA:59:3682062,Europe/Paris,,OIF, +OIF:SP:7:10467,1,"Mère Thérèsa",48.938023,2.531394,0,0,OIF:SA:59:3682061,Europe/Paris,,OIF, +OIF:SP:7:10468,1,"La Paix",48.939863,2.515235,0,0,OIF:SA:70:14342,Europe/Paris,,OIF, +OIF:SP:7:10469,1,"La Paix",48.939713,2.513693,0,0,OIF:SA:70:14342,Europe/Paris,,OIF, +OIF:SP:7:10470,1,"Primevères",48.940064,2.519192,0,0,OIF:SA:70:25507,Europe/Paris,,OIF, +OIF:SP:7:10471,1,"Primevères",48.940055,2.519178,0,0,OIF:SA:70:25507,Europe/Paris,,OIF, +OIF:SP:7:10472,1,"Sevran Livry RER B",48.935851,2.535096,0,0,OIF:SA:8727142,Europe/Paris,,OIF, +OIF:SP:7:10474,1,"Dammartin Juilly Saint-Mard Train K",49.032979,2.699197,0,0,OIF:SA:8727153,Europe/Paris,,OIF, +OIF:SP:7:10477,1,"3 Villes",49.007419,2.669376,0,0,OIF:SA:6:267,Europe/Paris,,OIF, +OIF:SP:7:10478,1,"3 Villes",49.007517,2.669485,0,0,OIF:SA:6:267,Europe/Paris,,OIF, +OIF:SP:7:10483,1,"Vie Avenue",48.963494,2.570251,0,0,OIF:SA:7:10483,Europe/Paris,,OIF, +OIF:SP:7:10484,1,"Vie Avenue",48.963485,2.570142,0,0,OIF:SA:7:10483,Europe/Paris,,OIF, +OIF:SP:7:10485,1,"Aéroville Belle Borne",48.989383,2.524992,0,0,OIF:SA:7:10485,Europe/Paris,,OIF, +OIF:SP:7:10486,1,"Aéroville Belle Borne",48.989499,2.52547,0,0,OIF:SA:7:10485,Europe/Paris,,OIF, +OIF:SP:7:10487,1,"Aéroville",48.991011,2.524287,0,0,OIF:SA:11:259,Europe/Paris,,OIF, +OIF:SP:7:10488,1,"Aéroville",48.990975,2.524028,0,0,OIF:SA:11:259,Europe/Paris,,OIF, +OIF:SP:7:10490,1,"Rue de la Belle Borne",48.989618,2.529526,0,0,OIF:SA:59:3666699,Europe/Paris,,OIF, +OIF:SP:7:10491,1,"Béarn",48.940238,2.591006,0,0,OIF:SA:7:10491,Europe/Paris,,OIF, +OIF:SP:7:10492,1,"Berlioz",48.960018,2.573852,0,0,OIF:SA:7:10492,Europe/Paris,,OIF, +OIF:SP:7:10493,1,"Berlioz",48.959919,2.573893,0,0,OIF:SA:7:10492,Europe/Paris,,OIF, +OIF:SP:7:10494,1,"Blum",48.948828,2.56983,0,0,OIF:SA:7:10494,Europe/Paris,,OIF, +OIF:SP:7:10495,1,"Blum",48.948577,2.569584,0,0,OIF:SA:7:10494,Europe/Paris,,OIF, +OIF:SP:7:10496,1,"Briand",48.955115,2.580898,0,0,OIF:SA:7:10496,Europe/Paris,,OIF, +OIF:SP:7:10497,1,"Briand",48.9547,2.581279,0,0,OIF:SA:7:10496,Europe/Paris,,OIF, +OIF:SP:7:10498,1,"Brossolette",48.95001,2.571882,0,0,OIF:SA:7:10498,Europe/Paris,,OIF, +OIF:SP:7:10499,1,"Brossolette",48.949459,2.573599,0,0,OIF:SA:7:10498,Europe/Paris,,OIF, +OIF:SP:7:10500,1,"Lacroix",48.988487,2.545007,0,0,OIF:SA:7:10500,Europe/Paris,,OIF, +OIF:SP:7:10501,1,"Lacroix",48.988361,2.545156,0,0,OIF:SA:7:10500,Europe/Paris,,OIF, +OIF:SP:7:10502,1,"Cargo Centre",48.99816,2.527031,0,0,OIF:SA:7:10502,Europe/Paris,,OIF, +OIF:SP:7:10503,1,"Cargo Centre",48.998576,2.525216,0,0,OIF:SA:7:10502,Europe/Paris,,OIF, +OIF:SP:7:10504,1,"Caussimon",48.943488,2.579589,0,0,OIF:SA:7:10504,Europe/Paris,,OIF, +OIF:SP:7:10505,1,"Centre d'Activités CDG",48.9644,2.566065,0,0,OIF:SA:7:10505,Europe/Paris,,OIF, +OIF:SP:7:10506,1,"Centre d'Activités CDG",48.964258,2.565246,0,0,OIF:SA:7:10505,Europe/Paris,,OIF, +OIF:SP:7:10507,1,"Cité des Douaniers",48.949902,2.576658,0,0,OIF:SA:59:5747136,Europe/Paris,,OIF, +OIF:SP:7:10508,1,"Cité des Douaniers",48.949732,2.576425,0,0,OIF:SA:59:5747136,Europe/Paris,,OIF, +OIF:SP:7:10509,1,"Rue du Châpitre",49.002477,2.535584,0,0,OIF:SA:7:10509,Europe/Paris,,OIF, +OIF:SP:7:10510,1,"Rue du Châpitre",49.002577,2.534915,0,0,OIF:SA:7:10509,Europe/Paris,,OIF, +OIF:SP:7:10511,1,"Cimetière",48.984959,2.55298,0,0,OIF:SA:70:30142,Europe/Paris,,OIF, +OIF:SP:7:10512,1,"Colongo",48.9407,2.59375,0,0,OIF:SA:70:129,Europe/Paris,,OIF, +OIF:SP:7:10513,1,"Cottages",48.966697,2.568287,0,0,OIF:SA:7:10513,Europe/Paris,,OIF, +OIF:SP:7:10514,1,"Cottages",48.965833,2.568965,0,0,OIF:SA:7:10513,Europe/Paris,,OIF, +OIF:SP:7:10515,1,"Cottages",48.966714,2.56845,0,0,OIF:SA:7:10513,Europe/Paris,,OIF, +OIF:SP:7:10516,1,"Central Parc",48.962014,2.559312,0,0,OIF:SA:7:10516,Europe/Paris,,OIF, +OIF:SP:7:10517,1,"Central Parc",48.961753,2.55927,0,0,OIF:SA:7:10516,Europe/Paris,,OIF, +OIF:SP:7:10518,1,"Cruppet",48.978007,2.556337,0,0,OIF:SA:70:13321,Europe/Paris,,OIF, +OIF:SP:7:10519,1,"Cruppet",48.977926,2.556377,0,0,OIF:SA:70:13321,Europe/Paris,,OIF, +OIF:SP:7:10520,1,"Cusino",48.946429,2.591514,0,0,OIF:SA:7:10520,Europe/Paris,,OIF, +OIF:SP:7:10521,1,"Debussy",48.961714,2.579346,0,0,OIF:SA:7:10521,Europe/Paris,,OIF, +OIF:SP:7:10522,1,"Debussy",48.961543,2.579387,0,0,OIF:SA:7:10521,Europe/Paris,,OIF, +OIF:SP:7:10523,1,"Farman 61",48.96539,2.565483,0,0,OIF:SA:7:10523,Europe/Paris,,OIF, +OIF:SP:7:10524,1,"Foyer des Bruyères",48.981431,2.555832,0,0,OIF:SA:8798211,Europe/Paris,,OIF, +OIF:SP:7:10525,1,"Foyer des Bruyères",48.981396,2.555723,0,0,OIF:SA:8798211,Europe/Paris,,OIF, +OIF:SP:7:10526,1,"Flandres",48.942245,2.572352,0,0,OIF:SA:70:14244,Europe/Paris,,OIF, +OIF:SP:7:10527,1,"Hub Postal",48.99114,2.544116,0,0,OIF:SA:70:13106,Europe/Paris,,OIF, +OIF:SP:7:10528,1,"IUT",48.975808,2.559385,0,0,OIF:SA:70:16791,Europe/Paris,,OIF, +OIF:SP:7:10529,1,"IUT",48.975277,2.559683,0,0,OIF:SA:70:16791,Europe/Paris,,OIF, +OIF:SP:7:10530,1,"Jaurès",48.951596,2.583202,0,0,OIF:SA:7:10530,Europe/Paris,,OIF, +OIF:SP:7:10531,1,"Jaurès",48.951122,2.582271,0,0,OIF:SA:7:10530,Europe/Paris,,OIF, +OIF:SP:7:10534,1,"Lavoisier",48.952663,2.588692,0,0,OIF:SA:59:5747134,Europe/Paris,,OIF, +OIF:SP:7:10535,1,"Lavoisier",48.952771,2.588747,0,0,OIF:SA:59:5747134,Europe/Paris,,OIF, +OIF:SP:7:10536,1,"LEP Boucher",48.950464,2.578857,0,0,OIF:SA:7:10536,Europe/Paris,,OIF, +OIF:SP:7:10537,1,"LEP Boucher",48.950454,2.579321,0,0,OIF:SA:7:10536,Europe/Paris,,OIF, +OIF:SP:7:10539,1,"Marronniers",48.959163,2.57883,0,0,OIF:SA:7:10539,Europe/Paris,,OIF, +OIF:SP:7:10540,1,"Mermoz",48.966896,2.567373,0,0,OIF:SA:7:10540,Europe/Paris,,OIF, +OIF:SP:7:10541,1,"Marcel Paul",48.964677,2.562545,0,0,OIF:SA:7:10541,Europe/Paris,,OIF, +OIF:SP:7:10542,1,"Maison de Retraite",48.953014,2.566342,0,0,OIF:SA:70:23392,Europe/Paris,,OIF, +OIF:SP:7:10543,1,"Maison de Retraite",48.953041,2.566179,0,0,OIF:SA:70:23392,Europe/Paris,,OIF, +OIF:SP:7:10546,1,"Pablo Neruda",48.966658,2.574156,0,0,OIF:SA:7:10546,Europe/Paris,,OIF, +OIF:SP:7:10547,1,"Pablo Neruda",48.966578,2.574101,0,0,OIF:SA:7:10546,Europe/Paris,,OIF, +OIF:SP:7:10548,1,"L'Odéon",48.942571,2.570798,0,0,OIF:SA:70:16363,Europe/Paris,,OIF, +OIF:SP:7:10551,1,"La Paix",48.954804,2.565545,0,0,OIF:SA:7:10551,Europe/Paris,,OIF, +OIF:SP:7:10552,1,"La Paix",48.954696,2.565163,0,0,OIF:SA:7:10551,Europe/Paris,,OIF, +OIF:SP:7:10553,1,"Paris Asia",48.976087,2.54452,0,0,OIF:SA:7:10553,Europe/Paris,,OIF, +OIF:SP:7:10554,1,"Paris Asia",48.97623,2.544657,0,0,OIF:SA:7:10553,Europe/Paris,,OIF, +OIF:SP:7:10555,1,"Place A.Thomas",48.942039,2.585312,0,0,OIF:SA:7:10555,Europe/Paris,,OIF, +OIF:SP:7:10556,1,"Pavé",48.986736,2.533639,0,0,OIF:SA:7:10556,Europe/Paris,,OIF, +OIF:SP:7:10557,1,"Pavé",48.987476,2.531962,0,0,OIF:SA:7:10556,Europe/Paris,,OIF, +OIF:SP:7:10558,1,"Place Curie",48.940661,2.578061,0,0,OIF:SA:70:20369,Europe/Paris,,OIF, +OIF:SP:7:10559,1,"Péri",48.959781,2.561377,0,0,OIF:SA:7:10559,Europe/Paris,,OIF, +OIF:SP:7:10560,1,"Péri",48.959259,2.561798,0,0,OIF:SA:7:10559,Europe/Paris,,OIF, +OIF:SP:7:10561,1,"Place Henri Barbusse",48.961525,2.570775,0,0,OIF:SA:70:15415,Europe/Paris,,OIF, +OIF:SP:7:10562,1,"Place Henri Barbusse",48.961777,2.570557,0,0,OIF:SA:70:15415,Europe/Paris,,OIF, +OIF:SP:7:10563,1,"Poste",48.983538,2.553889,0,0,OIF:SA:70:30676,Europe/Paris,,OIF, +OIF:SP:7:10564,1,"Poste",48.983618,2.554012,0,0,OIF:SA:70:30676,Europe/Paris,,OIF, +OIF:SP:7:10565,1,"Poste",48.983277,2.554134,0,0,OIF:SA:70:30676,Europe/Paris,,OIF, +OIF:SP:7:10566,1,"Poitou",48.944442,2.58344,0,0,OIF:SA:7:10566,Europe/Paris,,OIF, +OIF:SP:7:10567,1,"Petits Ponts",48.963516,2.563441,0,0,OIF:SA:7:10567,Europe/Paris,,OIF, +OIF:SP:7:10568,1,"Petits Ponts",48.963562,2.562991,0,0,OIF:SA:7:10567,Europe/Paris,,OIF, +OIF:SP:7:10569,1,"Petit Tremblay",48.984191,2.550232,0,0,OIF:SA:70:13839,Europe/Paris,,OIF, +OIF:SP:7:10570,1,"Petit Tremblay",48.984236,2.550287,0,0,OIF:SA:70:13839,Europe/Paris,,OIF, +OIF:SP:7:10571,1,"RD 88",48.98335,2.543088,0,0,OIF:SA:7:10571,Europe/Paris,,OIF, +OIF:SP:7:10572,1,"Reineuse",48.959508,2.581288,0,0,OIF:SA:7:10572,Europe/Paris,,OIF, +OIF:SP:7:10573,1,"Reineuse",48.959581,2.581056,0,0,OIF:SA:7:10572,Europe/Paris,,OIF, +OIF:SP:7:10574,1,"République",48.949912,2.566861,0,0,OIF:SA:70:19917,Europe/Paris,,OIF, +OIF:SP:7:10575,1,"République",48.950065,2.566629,0,0,OIF:SA:70:19917,Europe/Paris,,OIF, +OIF:SP:7:10576,1,"Résistance",48.949969,2.565101,0,0,OIF:SA:7:10576,Europe/Paris,,OIF, +OIF:SP:7:10577,1,"Résistance",48.949205,2.565275,0,0,OIF:SA:7:10576,Europe/Paris,,OIF, +OIF:SP:7:10578,1,"Ronsard",48.957036,2.563344,0,0,OIF:SA:7:10578,Europe/Paris,,OIF, +OIF:SP:7:10579,1,"Ronsard",48.956992,2.563221,0,0,OIF:SA:7:10578,Europe/Paris,,OIF, +OIF:SP:7:10581,1,"Salengro",48.945707,2.58859,0,0,OIF:SA:7:10581,Europe/Paris,,OIF, +OIF:SP:7:10582,1,"Sarrault",48.943801,2.593301,0,0,OIF:SA:7:10582,Europe/Paris,,OIF, +OIF:SP:7:10583,1,"Stade Jaurès",48.941091,2.582865,0,0,OIF:SA:7:10583,Europe/Paris,,OIF, +OIF:SP:7:10584,1,"Saint-Pères",48.982912,2.551947,0,0,OIF:SA:7:10584,Europe/Paris,,OIF, +OIF:SP:7:10585,1,"Terminal 2 - Route de Service",49.00365,2.558412,0,0,OIF:SA:70:23366,Europe/Paris,,OIF, +OIF:SP:7:10588,1,"Vaillant",48.943835,2.572496,0,0,OIF:SA:7:10588,Europe/Paris,,OIF, +OIF:SP:7:10589,1,"Rue des Vignes",49.004514,2.547994,0,0,OIF:SA:59:3666609,Europe/Paris,,OIF, +OIF:SP:7:10590,1,"Rue des Vignes",49.004693,2.548446,0,0,OIF:SA:59:3666609,Europe/Paris,,OIF, +OIF:SP:7:10591,1,"Vert Galant RER B",48.945451,2.568656,0,0,OIF:SA:8727143,Europe/Paris,,OIF, +OIF:SP:7:10594,1,"2 Départements",48.938057,2.598211,0,0,OIF:SA:7:10594,Europe/Paris,,OIF, +OIF:SP:7:10595,1,"2 Départements",48.938156,2.598198,0,0,OIF:SA:7:10594,Europe/Paris,,OIF, +OIF:SP:7:10596,1,"Aristide Briand",48.949064,2.607163,0,0,OIF:SA:53:2627,Europe/Paris,,OIF, +OIF:SP:7:10597,1,"A.France",48.946668,2.60962,0,0,OIF:SA:53:2451,Europe/Paris,,OIF, +OIF:SP:7:10598,1,"L'Ambrésis",48.947008,2.621711,0,0,OIF:SA:7:10598,Europe/Paris,,OIF, +OIF:SP:7:10599,1,"L'Ambrésis",48.947071,2.621766,0,0,OIF:SA:7:10598,Europe/Paris,,OIF, +OIF:SP:7:10600,1,"Balzac",48.93922,2.612378,0,0,OIF:SA:53:2453,Europe/Paris,,OIF, +OIF:SP:7:10602,1,"Béarn",48.949951,2.612025,0,0,OIF:SA:7:10602,Europe/Paris,,OIF, +OIF:SP:7:10603,1,"Berlioz",48.941653,2.597766,0,0,OIF:SA:7:10603,Europe/Paris,,OIF, +OIF:SP:7:10604,1,"Berlioz",48.941743,2.597684,0,0,OIF:SA:7:10603,Europe/Paris,,OIF, +OIF:SP:7:10605,1,"Bois Fleuri / Lilas",48.933141,2.636393,0,0,OIF:SA:53:2455,Europe/Paris,,OIF, +OIF:SP:7:10606,1,"Bois Fleuri / Lilas",48.933231,2.63638,0,0,OIF:SA:53:2455,Europe/Paris,,OIF, +OIF:SP:7:10607,1,"Bretagne",48.94821,2.615004,0,0,OIF:SA:7:10607,Europe/Paris,,OIF, +OIF:SP:7:10608,1,"Buffon",48.942794,2.613584,0,0,OIF:SA:53:2481,Europe/Paris,,OIF, +OIF:SP:7:10609,1,"Centre d'Accueil",48.938471,2.602088,0,0,OIF:SA:53:2543,Europe/Paris,,OIF, +OIF:SP:7:10610,1,"Centre d'Accueil",48.938561,2.602061,0,0,OIF:SA:53:2543,Europe/Paris,,OIF, +OIF:SP:7:10611,1,"Cèdres",48.938822,2.605623,0,0,OIF:SA:53:2457,Europe/Paris,,OIF, +OIF:SP:7:10613,1,"Cévennes",48.944206,2.621027,0,0,OIF:SA:7:10613,Europe/Paris,,OIF, +OIF:SP:7:10614,1,"Collège G. Philipe",48.940642,2.622849,0,0,OIF:SA:7:10614,Europe/Paris,,OIF, +OIF:SP:7:10615,1,"Chênes",48.949516,2.601926,0,0,OIF:SA:53:2124,Europe/Paris,,OIF, +OIF:SP:7:10616,1,"Chênes",48.949647,2.60381,0,0,OIF:SA:53:2124,Europe/Paris,,OIF, +OIF:SP:7:10617,1,"Chrysanthèmes",48.935263,2.636078,0,0,OIF:SA:7:10617,Europe/Paris,,OIF, +OIF:SP:7:10618,1,"Chrysanthèmes",48.93511,2.635968,0,0,OIF:SA:7:10617,Europe/Paris,,OIF, +OIF:SP:7:10619,1,"Cimetière",48.936603,2.624627,0,0,OIF:SA:7:10619,Europe/Paris,,OIF, +OIF:SP:7:10620,1,"Collège Monod",48.93612,2.608555,0,0,OIF:SA:7:10620,Europe/Paris,,OIF, +OIF:SP:7:10621,1,"Collège Monod",48.936128,2.608883,0,0,OIF:SA:7:10620,Europe/Paris,,OIF, +OIF:SP:7:10622,1,"Couronne",48.939219,2.609158,0,0,OIF:SA:53:2155,Europe/Paris,,OIF, +OIF:SP:7:10624,1,"Centre Ville",48.939295,2.614861,0,0,OIF:SA:53:2625,Europe/Paris,,OIF, +OIF:SP:7:10625,1,"Descartes",48.938122,2.605264,0,0,OIF:SA:7:10625,Europe/Paris,,OIF, +OIF:SP:7:10626,1,"Descartes",48.938167,2.605237,0,0,OIF:SA:7:10625,Europe/Paris,,OIF, +OIF:SP:7:10627,1,"Entrepreneurs",48.948723,2.622143,0,0,OIF:SA:7:10627,Europe/Paris,,OIF, +OIF:SP:7:10628,1,"Faux Quonins",48.936821,2.616089,0,0,OIF:SA:7:10628,Europe/Paris,,OIF, +OIF:SP:7:10629,1,"Faux Quonins",48.936902,2.616158,0,0,OIF:SA:7:10628,Europe/Paris,,OIF, +OIF:SP:7:10630,1,"Freyssinet",48.948807,2.624654,0,0,OIF:SA:7:10630,Europe/Paris,,OIF, +OIF:SP:7:10631,1,"Grillons",48.944624,2.60332,0,0,OIF:SA:7:10631,Europe/Paris,,OIF, +OIF:SP:7:10632,1,"Kléber",48.95057,2.604838,0,0,OIF:SA:53:2243,Europe/Paris,,OIF, +OIF:SP:7:10633,1,"Lavoisier",48.944814,2.598682,0,0,OIF:SA:7:10633,Europe/Paris,,OIF, +OIF:SP:7:10634,1,"Lavoisier",48.944868,2.598832,0,0,OIF:SA:7:10633,Europe/Paris,,OIF, +OIF:SP:7:10635,1,"Lefèvre",48.948181,2.611961,0,0,OIF:SA:7:10635,Europe/Paris,,OIF, +OIF:SP:7:10636,1,"Louis",48.94212,2.621397,0,0,OIF:SA:7:10636,Europe/Paris,,OIF, +OIF:SP:7:10637,1,"Marguerites",48.937771,2.635834,0,0,OIF:SA:7:10637,Europe/Paris,,OIF, +OIF:SP:7:10638,1,"Marguerites",48.937969,2.635726,0,0,OIF:SA:7:10637,Europe/Paris,,OIF, +OIF:SP:7:10639,1,"Piétrasanta",48.940553,2.615277,0,0,OIF:SA:7:10639,Europe/Paris,,OIF, +OIF:SP:7:10640,1,"Mairie Annexe",48.938453,2.639657,0,0,OIF:SA:7:10640,Europe/Paris,,OIF, +OIF:SP:7:10641,1,"Marché",48.951664,2.601951,0,0,OIF:SA:7:10641,Europe/Paris,,OIF, +OIF:SP:7:10642,1,"Montesquieu",48.941063,2.604229,0,0,OIF:SA:7:10642,Europe/Paris,,OIF, +OIF:SP:7:10643,1,"Cimetière",48.936531,2.624641,0,0,OIF:SA:7:10619,Europe/Paris,,OIF, +OIF:SP:7:10644,1,"Normandie Niémen",48.950125,2.614742,0,0,OIF:SA:7:10644,Europe/Paris,,OIF, +OIF:SP:7:10645,1,"Normandie Niémen",48.950555,2.615085,0,0,OIF:SA:7:10644,Europe/Paris,,OIF, +OIF:SP:7:10646,1,"Ormes",48.952761,2.613323,0,0,OIF:SA:7:10646,Europe/Paris,,OIF, +OIF:SP:7:10647,1,"Parc d'Activités de l'Ambrésis",48.946165,2.624489,0,0,OIF:SA:7:10647,Europe/Paris,,OIF, +OIF:SP:7:10648,1,"La Plaine",48.942008,2.611506,0,0,OIF:SA:53:2382,Europe/Paris,,OIF, +OIF:SP:7:10649,1,"Poste",48.944829,2.608274,0,0,OIF:SA:53:2462,Europe/Paris,,OIF, +OIF:SP:7:10650,1,"Réneuse",48.952235,2.607507,0,0,OIF:SA:7:10650,Europe/Paris,,OIF, +OIF:SP:7:10651,1,"Réneuse",48.952353,2.607235,0,0,OIF:SA:7:10650,Europe/Paris,,OIF, +OIF:SP:7:10652,1,"Villeparisis Mitry le Neuf RER B",48.953701,2.603257,0,0,OIF:SA:8727151,Europe/Paris,,OIF, +OIF:SP:7:10653,1,"Rossignols Provence",48.946869,2.615857,0,0,OIF:SA:7:10653,Europe/Paris,,OIF, +OIF:SP:7:10654,1,"Rossignols Provence",48.946923,2.615816,0,0,OIF:SA:7:10653,Europe/Paris,,OIF, +OIF:SP:7:10655,1,"Saint-Denis",48.947852,2.602491,0,0,OIF:SA:7:10655,Europe/Paris,,OIF, +OIF:SP:7:10656,1,"Saint-Denis",48.948067,2.602792,0,0,OIF:SA:7:10655,Europe/Paris,,OIF, +OIF:SP:7:10657,1,"Tilleuls",48.952478,2.615368,0,0,OIF:SA:7:10657,Europe/Paris,,OIF, +OIF:SP:7:10658,1,"Verdun",48.947921,2.599912,0,0,OIF:SA:7:10658,Europe/Paris,,OIF, +OIF:SP:7:10660,1,"Les 4 Tours",48.957946,2.557507,0,0,OIF:SA:7:10660,Europe/Paris,,OIF, +OIF:SP:7:10661,1,"Les 4 Tours",48.957865,2.557657,0,0,OIF:SA:7:10660,Europe/Paris,,OIF, +OIF:SP:7:10662,1,"Brassens",48.957321,2.555594,0,0,OIF:SA:7:10662,Europe/Paris,,OIF, +OIF:SP:7:10663,1,"Brassens",48.957293,2.55584,0,0,OIF:SA:7:10662,Europe/Paris,,OIF, +OIF:SP:7:10664,1,"Bec Salé",48.955955,2.53999,0,0,OIF:SA:7:10664,Europe/Paris,,OIF, +OIF:SP:7:10665,1,"Bec Salé",48.955802,2.540044,0,0,OIF:SA:7:10664,Europe/Paris,,OIF, +OIF:SP:7:10666,1,"Centre Commercial",48.960716,2.556332,0,0,OIF:SA:7:10666,Europe/Paris,,OIF, +OIF:SP:7:10667,1,"Centre Commercial",48.959664,2.556887,0,0,OIF:SA:7:10666,Europe/Paris,,OIF, +OIF:SP:7:10668,1,"Chemin du Loup",48.962132,2.558631,0,0,OIF:SA:70:14740,Europe/Paris,,OIF, +OIF:SP:7:10669,1,"Chemin du Loup",48.961648,2.55766,0,0,OIF:SA:70:14740,Europe/Paris,,OIF, +OIF:SP:7:10670,1,"Clos Montceleux",48.954471,2.535536,0,0,OIF:SA:8798656,Europe/Paris,,OIF, +OIF:SP:7:10671,1,"Clos Montceleux",48.954291,2.535399,0,0,OIF:SA:8798656,Europe/Paris,,OIF, +OIF:SP:7:10672,1,"Claude Nicolas Ledoux",48.969254,2.546308,0,0,OIF:SA:7:10672,Europe/Paris,,OIF, +OIF:SP:7:10673,1,"Claude Nicolas Ledoux",48.968931,2.54557,0,0,OIF:SA:7:10672,Europe/Paris,,OIF, +OIF:SP:7:10674,1,"Combattants",48.951593,2.561778,0,0,OIF:SA:7:10674,Europe/Paris,,OIF, +OIF:SP:7:10675,1,"Combattants",48.951593,2.562051,0,0,OIF:SA:7:10674,Europe/Paris,,OIF, +OIF:SP:7:10676,1,"Cimetière de Villepinte ZI",48.966234,2.541245,0,0,OIF:SA:7:10676,Europe/Paris,,OIF, +OIF:SP:7:10677,1,"Cimetière de Villepinte ZI",48.966422,2.541301,0,0,OIF:SA:7:10676,Europe/Paris,,OIF, +OIF:SP:7:10678,1,"Espace V",48.960067,2.552576,0,0,OIF:SA:8798207,Europe/Paris,,OIF, +OIF:SP:7:10679,1,"Espace V",48.960191,2.553532,0,0,OIF:SA:8798207,Europe/Paris,,OIF, +OIF:SP:7:10680,1,"Europe",48.958646,2.558165,0,0,OIF:SA:7:10680,Europe/Paris,,OIF, +OIF:SP:7:10681,1,"Europe",48.957656,2.558707,0,0,OIF:SA:7:10680,Europe/Paris,,OIF, +OIF:SP:7:10682,1,"Fontaine Mallet",48.9527,2.551426,0,0,OIF:SA:70:23378,Europe/Paris,,OIF, +OIF:SP:7:10683,1,"Fontaine Mallet",48.952601,2.551494,0,0,OIF:SA:70:23378,Europe/Paris,,OIF, +OIF:SP:7:10684,1,"Fougères",48.956215,2.545791,0,0,OIF:SA:70:10479,Europe/Paris,,OIF, +OIF:SP:7:10685,1,"Fougères",48.95607,2.546104,0,0,OIF:SA:70:10479,Europe/Paris,,OIF, +OIF:SP:7:10686,1,"Georges Sachet",48.954999,2.547397,0,0,OIF:SA:70:10754,Europe/Paris,,OIF, +OIF:SP:7:10687,1,"Georges Sachet",48.953864,2.548948,0,0,OIF:SA:70:10754,Europe/Paris,,OIF, +OIF:SP:7:10688,1,"Hôpital Ballanger",48.9513,2.529015,0,0,OIF:SA:70:22341,Europe/Paris,,OIF, +OIF:SP:7:10689,1,"Hôpital Ballanger",48.951608,2.52772,0,0,OIF:SA:70:22341,Europe/Paris,,OIF, +OIF:SP:7:10690,1,"Hôpital Ballanger",48.951797,2.527516,0,0,OIF:SA:70:22341,Europe/Paris,,OIF, +OIF:SP:7:10692,1,"Jussieu",48.953224,2.549695,0,0,OIF:SA:70:15160,Europe/Paris,,OIF, +OIF:SP:7:10693,1,"Jussieu",48.952738,2.550089,0,0,OIF:SA:70:15160,Europe/Paris,,OIF, +OIF:SP:7:10694,1,"Labé",48.967697,2.547626,0,0,OIF:SA:7:10694,Europe/Paris,,OIF, +OIF:SP:7:10695,1,"Labé",48.968111,2.547204,0,0,OIF:SA:7:10694,Europe/Paris,,OIF, +OIF:SP:7:10696,1,"Laurencin",48.966597,2.549232,0,0,OIF:SA:7:10696,Europe/Paris,,OIF, +OIF:SP:7:10697,1,"Laurencin",48.966687,2.549273,0,0,OIF:SA:7:10696,Europe/Paris,,OIF, +OIF:SP:7:10698,1,"Leclerc",48.956237,2.553311,0,0,OIF:SA:7:10698,Europe/Paris,,OIF, +OIF:SP:7:10699,1,"Leclerc",48.955842,2.553186,0,0,OIF:SA:7:10698,Europe/Paris,,OIF, +OIF:SP:7:10700,1,"Lycée Rostand",48.958825,2.54875,0,0,OIF:SA:7:10700,Europe/Paris,,OIF, +OIF:SP:7:10701,1,"Lycée Rostand",48.95902,2.549938,0,0,OIF:SA:7:10700,Europe/Paris,,OIF, +OIF:SP:7:10703,1,"Malraux",48.956718,2.551088,0,0,OIF:SA:7:10703,Europe/Paris,,OIF, +OIF:SP:7:10704,1,"Malraux",48.957645,2.55015,0,0,OIF:SA:7:10703,Europe/Paris,,OIF, +OIF:SP:7:10705,1,"Merisiers",48.953929,2.562539,0,0,OIF:SA:7:10705,Europe/Paris,,OIF, +OIF:SP:7:10706,1,"Merisiers",48.953299,2.562755,0,0,OIF:SA:7:10705,Europe/Paris,,OIF, +OIF:SP:7:10707,1,"Monnet",48.964515,2.547558,0,0,OIF:SA:7:10707,Europe/Paris,,OIF, +OIF:SP:7:10708,1,"Les Mousseaux",48.962281,2.540711,0,0,OIF:SA:70:13264,Europe/Paris,,OIF, +OIF:SP:7:10709,1,"Les Mousseaux",48.96237,2.540862,0,0,OIF:SA:70:13264,Europe/Paris,,OIF, +OIF:SP:7:10710,1,"Nations",48.97322,2.510272,0,0,OIF:SA:59:3666665,Europe/Paris,,OIF, +OIF:SP:7:10711,1,"Nations",48.972968,2.510994,0,0,OIF:SA:59:3666665,Europe/Paris,,OIF, +OIF:SP:7:10712,1,"Parmentier",48.947729,2.561584,0,0,OIF:SA:7:10712,Europe/Paris,,OIF, +OIF:SP:7:10713,1,"Parmentier",48.947576,2.56187,0,0,OIF:SA:7:10712,Europe/Paris,,OIF, +OIF:SP:7:10714,1,"Parc des Expositions RER B",48.974024,2.514001,0,0,OIF:SA:8727148,Europe/Paris,,OIF, +OIF:SP:7:10715,1,"Plaine de France",48.975707,2.506089,0,0,OIF:SA:70:29243,Europe/Paris,,OIF, +OIF:SP:7:10716,1,"Plaine de France",48.975769,2.506389,0,0,OIF:SA:70:29243,Europe/Paris,,OIF, +OIF:SP:7:10717,1,"Parc de la Noue",48.957806,2.545607,0,0,OIF:SA:70:10958,Europe/Paris,,OIF, +OIF:SP:7:10718,1,"Parc de la Noue",48.957706,2.545947,0,0,OIF:SA:70:10958,Europe/Paris,,OIF, +OIF:SP:7:10719,1,"Parc de la Noue",48.958607,2.544518,0,0,OIF:SA:70:10958,Europe/Paris,,OIF, +OIF:SP:7:10720,1,"Parc de la Noue",48.958581,2.54434,0,0,OIF:SA:70:10958,Europe/Paris,,OIF, +OIF:SP:7:10721,1,"Poste",48.951276,2.55853,0,0,OIF:SA:7:10721,Europe/Paris,,OIF, +OIF:SP:7:10722,1,"Poste",48.951555,2.558162,0,0,OIF:SA:7:10721,Europe/Paris,,OIF, +OIF:SP:7:10723,1,"Place René Droulot",48.954048,2.556194,0,0,OIF:SA:7:10723,Europe/Paris,,OIF, +OIF:SP:7:10724,1,"Place René Droulot",48.954121,2.555881,0,0,OIF:SA:7:10723,Europe/Paris,,OIF, +OIF:SP:7:10725,1,"La Roseraie",48.955178,2.552542,0,0,OIF:SA:7:10725,Europe/Paris,,OIF, +OIF:SP:7:10726,1,"La Roseraie",48.95533,2.553088,0,0,OIF:SA:7:10725,Europe/Paris,,OIF, +OIF:SP:7:10727,1,"Schuman",48.965471,2.545842,0,0,OIF:SA:7:10727,Europe/Paris,,OIF, +OIF:SP:7:10728,1,"Rue de Sevran",48.953281,2.531997,0,0,OIF:SA:70:17718,Europe/Paris,,OIF, +OIF:SP:7:10729,1,"Rue de Sevran",48.953146,2.532119,0,0,OIF:SA:70:17718,Europe/Paris,,OIF, +OIF:SP:7:10730,1,"Sisley",48.964771,2.55018,0,0,OIF:SA:7:10730,Europe/Paris,,OIF, +OIF:SP:7:10731,1,"Stade",48.949542,2.563216,0,0,OIF:SA:7:10731,Europe/Paris,,OIF, +OIF:SP:7:10732,1,"Stade",48.949371,2.563092,0,0,OIF:SA:7:10731,Europe/Paris,,OIF, +OIF:SP:7:10733,1,"Tocqueville",48.969462,2.550568,0,0,OIF:SA:7:10733,Europe/Paris,,OIF, +OIF:SP:7:10734,1,"Tocqueville",48.969012,2.550702,0,0,OIF:SA:7:10733,Europe/Paris,,OIF, +OIF:SP:7:10735,1,"Route de Tremblay",48.963822,2.537633,0,0,OIF:SA:70:16651,Europe/Paris,,OIF, +OIF:SP:7:10736,1,"Route de Tremblay",48.964191,2.537689,0,0,OIF:SA:70:16651,Europe/Paris,,OIF, +OIF:SP:7:10737,1,"Vercors",48.954784,2.56141,0,0,OIF:SA:7:10737,Europe/Paris,,OIF, +OIF:SP:7:10738,1,"Poitou",48.917108,2.650455,0,0,OIF:SA:53:2385,Europe/Paris,,OIF, +OIF:SP:7:10739,1,"Poitou",48.917484,2.650853,0,0,OIF:SA:53:2385,Europe/Paris,,OIF, +OIF:SP:7:10764,1,"Bibliothèque / Cmcl",48.955405,2.600619,0,0,OIF:SA:7:10260,Europe/Paris,,OIF, +OIF:SP:7:10766,1,"Place Melun",48.960487,2.590245,0,0,OIF:SA:7:10348,Europe/Paris,,OIF, +OIF:SP:7:10771,1,"Gymnase Aubertin",48.940459,2.620611,0,0,OIF:SA:55:6,Europe/Paris,,OIF, +OIF:SP:7:10772,1,"Gymnase Aubertin",48.940459,2.620611,0,0,OIF:SA:55:6,Europe/Paris,,OIF, +OIF:SP:7:10773,1,"Mairie",48.940143,2.617567,0,0,OIF:SA:53:2293,Europe/Paris,,OIF, +OIF:SP:7:10774,1,"Mairie",48.940143,2.617567,0,0,OIF:SA:53:2293,Europe/Paris,,OIF, +OIF:SP:7:10775,1,"Hôpital",48.950923,2.522969,0,0,OIF:SA:7:10775,Europe/Paris,,OIF, +OIF:SP:7:10776,1,"Rue Barre",49.012935,2.706598,0,0,OIF:SA:6:67,Europe/Paris,,OIF, +OIF:SP:7:10777,1,"Église Saint-Étienne",49.012051,2.704761,0,0,OIF:SA:6:69,Europe/Paris,,OIF, +OIF:SP:7:10778,1,"Avenue de l'Ouest",48.980809,2.525752,0,0,OIF:SA:7:10778,Europe/Paris,,OIF, +OIF:SP:7:10781,1,"Versant Seine",48.986037,2.537842,0,0,OIF:SA:7:10781,Europe/Paris,,OIF, +OIF:SP:7:10782,1,"Versant Seine",48.987394,2.532317,0,0,OIF:SA:7:10781,Europe/Paris,,OIF, +OIF:SP:7:10785,1,"Petit Tremblay",48.984093,2.55,0,0,OIF:SA:70:13839,Europe/Paris,,OIF, +OIF:SP:7:10786,1,"RD 88",48.98335,2.543088,0,0,OIF:SA:7:10571,Europe/Paris,,OIF, +OIF:SP:7:10791,1,"Ladoumègue",48.979635,2.615637,0,0,OIF:SA:7:10791,Europe/Paris,,OIF, +OIF:SP:7:10792,1,"Hôpital",48.950923,2.522969,0,0,OIF:SA:7:10775,Europe/Paris,,OIF, +OIF:SP:7:10793,1,"Église",48.936719,2.464942,0,0,OIF:SA:7:10793,Europe/Paris,,OIF, +OIF:SP:7:10794,1,"Église",48.936476,2.465296,0,0,OIF:SA:7:10793,Europe/Paris,,OIF, +OIF:SP:7:10795,1,"Hôtel de Ville",48.937999,2.461399,0,0,OIF:SA:7:10795,Europe/Paris,,OIF, +OIF:SP:7:10796,1,"Hôtel de Ville",48.938152,2.461344,0,0,OIF:SA:7:10795,Europe/Paris,,OIF, +OIF:SP:7:10797,1,"Marcos",48.935123,2.470272,0,0,OIF:SA:70:12230,Europe/Paris,,OIF, +OIF:SP:7:10798,1,"Marcos",48.935331,2.469181,0,0,OIF:SA:70:12230,Europe/Paris,,OIF, +OIF:SP:7:10800,1,"Lycée Charles de Gaulle",49.047064,2.666896,0,0,OIF:SA:6:91,Europe/Paris,,OIF, +OIF:SP:7:10809,1,"14 Juillet",48.963905,2.589006,0,0,OIF:SA:7:10252,Europe/Paris,,OIF, +OIF:SP:7:10810,1,"Bosquets",48.955679,2.602681,0,0,OIF:SA:53:2047,Europe/Paris,,OIF, +OIF:SP:7:10811,1,"Boulogne",48.962746,2.592918,0,0,OIF:SA:7:10263,Europe/Paris,,OIF, +OIF:SP:7:10813,1,"Collège Langevin Lycée de Balzac",48.972879,2.651148,0,0,OIF:SA:6:120,Europe/Paris,,OIF, +OIF:SP:7:10814,1,"Dijon",48.960945,2.586317,0,0,OIF:SA:7:10282,Europe/Paris,,OIF, +OIF:SP:7:10817,1,"Épinal",48.962595,2.587812,0,0,OIF:SA:7:10288,Europe/Paris,,OIF, +OIF:SP:7:10818,1,"Nantes",48.961824,2.587003,0,0,OIF:SA:7:10326,Europe/Paris,,OIF, +OIF:SP:7:10819,1,"Place de Pau",48.958714,2.587139,0,0,OIF:SA:7:10352,Europe/Paris,,OIF, +OIF:SP:7:10820,1,"Collège Satie",48.962414,2.596983,0,0,OIF:SA:7:10820,Europe/Paris,,OIF, +OIF:SP:7:10821,1,"La Villette aux Aulnes",48.968367,2.578231,0,0,OIF:SA:7:10821,Europe/Paris,,OIF, +OIF:SP:7:10822,1,"La Villette aux Aulnes",48.968501,2.578491,0,0,OIF:SA:7:10821,Europe/Paris,,OIF, +OIF:SP:7:10833,1,"Lycée de Vinci",48.96618,2.570618,0,0,OIF:SA:7:10833,Europe/Paris,,OIF, +OIF:SP:7:10834,1,"Institution Fénélon",48.933986,2.572083,0,0,OIF:SA:7:10834,Europe/Paris,,OIF, +OIF:SP:7:10835,1,"Lycée Rostand",48.95902,2.549979,0,0,OIF:SA:7:10700,Europe/Paris,,OIF, +OIF:SP:7:10836,1,"Châteaubriant",48.963876,2.593974,0,0,OIF:SA:7:10836,Europe/Paris,,OIF, +OIF:SP:7:10837,1,"Cimetière",48.961259,2.598915,0,0,OIF:SA:7:10837,Europe/Paris,,OIF, +OIF:SP:7:10838,1,"École Henri Barbusse",48.957607,2.592264,0,0,OIF:SA:7:10838,Europe/Paris,,OIF, +OIF:SP:7:10839,1,"Parc des Douves",48.965294,2.590719,0,0,OIF:SA:7:10839,Europe/Paris,,OIF, +OIF:SP:7:10840,1,"Collège Satie",48.962414,2.596983,0,0,OIF:SA:7:10820,Europe/Paris,,OIF, +OIF:SP:7:10841,1,"ZAC du Parc",48.992729,2.658424,0,0,OIF:SA:7:10841,Europe/Paris,,OIF, +OIF:SP:7:10842,1,"ZAC du Parc",48.992774,2.658411,0,0,OIF:SA:7:10841,Europe/Paris,,OIF, +OIF:SP:7:10855,1,"372 Rue de la Belle Etoile",48.989467,2.517386,0,0,OIF:SA:7:10855,Europe/Paris,,OIF, +OIF:SP:7:10856,1,"190 Rue des Chardonnerets",48.988378,2.51827,0,0,OIF:SA:7:10856,Europe/Paris,,OIF, +OIF:SP:7:10857,1,"190 Rue des Chardonnerets",48.988459,2.518174,0,0,OIF:SA:7:10856,Europe/Paris,,OIF, +OIF:SP:7:10858,1,"33 Rue des Chardonnerets",48.981874,2.516759,0,0,OIF:SA:7:10858,Europe/Paris,,OIF, +OIF:SP:7:10859,1,"33 Rue des Chardonnerets",48.981748,2.516567,0,0,OIF:SA:7:10858,Europe/Paris,,OIF, +OIF:SP:7:10860,1,"89 Rue des Chardonnerets",48.984477,2.518543,0,0,OIF:SA:7:10860,Europe/Paris,,OIF, +OIF:SP:7:10861,1,"89 Rue des Chardonnerets",48.984199,2.518255,0,0,OIF:SA:7:10860,Europe/Paris,,OIF, +OIF:SP:7:10862,1,"Rue de l'Étang",48.979753,2.517038,0,0,OIF:SA:7:10862,Europe/Paris,,OIF, +OIF:SP:7:10863,1,"Rue de l'Étang",48.979799,2.516437,0,0,OIF:SA:7:10862,Europe/Paris,,OIF, +OIF:SP:7:10866,1,"Aéroport CDG1 RER B",49.010343,2.559561,0,0,OIF:SA:8727146,Europe/Paris,,OIF, +OIF:SP:7:10867,1,"Aéroport CDG1 RER B",49.010317,2.559315,0,0,OIF:SA:8727146,Europe/Paris,,OIF, +OIF:SP:7:10868,1,"Aéroport CDG1 RER B",49.01029,2.559069,0,0,OIF:SA:8727146,Europe/Paris,,OIF, +OIF:SP:7:10870,1,"Aéroport CDG1 RER B",49.010675,2.559645,0,0,OIF:SA:8727146,Europe/Paris,,OIF, +OIF:SP:7:10871,1,"Aéroport CDG1 RER B",49.010721,2.559426,0,0,OIF:SA:8727146,Europe/Paris,,OIF, +OIF:SP:80:103,1,"Inovel Parc Nord",48.781642,2.2094,0,0,OIF:SA:59874,Europe/Paris,,OIF, +OIF:SP:80:105,1,"Jules Ferry",48.797405,2.192614,0,0,OIF:SA:36:1014,Europe/Paris,,OIF, +OIF:SP:80:106,1,"Jean Jaurès",48.797483,2.190056,0,0,OIF:SA:80:106,Europe/Paris,,OIF, +OIF:SP:80:107,1,"Jean Macé",48.79732,2.189131,0,0,OIF:SA:80:107,Europe/Paris,,OIF, +OIF:SP:80:108,1,"Jean Mermoz",48.798522,2.143388,0,0,OIF:SA:2:518,Europe/Paris,,OIF, +OIF:SP:80:109,1,"Jean Mermoz",48.798729,2.143415,0,0,OIF:SA:2:518,Europe/Paris,,OIF, +OIF:SP:80:11,1,"Albert Perdreaux",48.796907,2.182521,0,0,OIF:SA:80:11,Europe/Paris,,OIF, +OIF:SP:80:110,1,"Les Ailes",48.776839,2.206434,0,0,OIF:SA:80:110,Europe/Paris,,OIF, +OIF:SP:80:111,1,"Les Ailes",48.776982,2.205767,0,0,OIF:SA:80:110,Europe/Paris,,OIF, +OIF:SP:80:112,1,"Le Bois",48.786539,2.208164,0,0,OIF:SA:59:5121008,Europe/Paris,,OIF, +OIF:SP:80:113,1,"Le Bois",48.786458,2.208382,0,0,OIF:SA:59:5121008,Europe/Paris,,OIF, +OIF:SP:80:114,1,"Doumer Lafontaine",48.794529,2.200077,0,0,OIF:SA:80:114,Europe/Paris,,OIF, +OIF:SP:80:116,1,"Les Hélices",48.777374,2.194873,0,0,OIF:SA:80:116,Europe/Paris,,OIF, +OIF:SP:80:117,1,"Les Hélices",48.777436,2.194492,0,0,OIF:SA:80:116,Europe/Paris,,OIF, +OIF:SP:80:118,1,"Liaison Inovel Sud",48.778313,2.214563,0,0,OIF:SA:59:5067249,Europe/Paris,,OIF, +OIF:SP:80:119,1,"Liaison Inovel Sud",48.778888,2.214629,0,0,OIF:SA:59:5067249,Europe/Paris,,OIF, +OIF:SP:80:12,1,"Albert Perdreaux",48.797052,2.182765,0,0,OIF:SA:80:11,Europe/Paris,,OIF, +OIF:SP:80:120,1,"Stade Léo Lagrange",48.797327,2.187295,0,0,OIF:SA:80:120,Europe/Paris,,OIF, +OIF:SP:80:121,1,"Stade Léo Lagrange",48.797311,2.188642,0,0,OIF:SA:80:120,Europe/Paris,,OIF, +OIF:SP:80:122,1,"Les Metz - Hoche",48.774866,2.167356,0,0,OIF:SA:80:122,Europe/Paris,,OIF, +OIF:SP:80:123,1,"Les Metz - Hoche",48.774857,2.167519,0,0,OIF:SA:80:122,Europe/Paris,,OIF, +OIF:SP:80:124,1,"Les Metz - la Mare",48.771764,2.1667,0,0,OIF:SA:80:124,Europe/Paris,,OIF, +OIF:SP:80:125,1,"L'Onde Maison des Arts",48.782152,2.177628,0,0,OIF:SA:59880,Europe/Paris,,OIF, +OIF:SP:80:126,1,"L'Onde Maison des Arts",48.782116,2.177546,0,0,OIF:SA:59880,Europe/Paris,,OIF, +OIF:SP:80:127,1,"Louvois",48.779518,2.198988,0,0,OIF:SA:59876,Europe/Paris,,OIF, +OIF:SP:80:128,1,"Louvois",48.780057,2.198714,0,0,OIF:SA:59876,Europe/Paris,,OIF, +OIF:SP:80:129,1,"Mare Adam",48.802092,2.188261,0,0,OIF:SA:36:1020,Europe/Paris,,OIF, +OIF:SP:80:13,1,"Bauvinon",48.768752,2.172148,0,0,OIF:SA:2:1039,Europe/Paris,,OIF, +OIF:SP:80:132,1,"Maire Annexe",48.797452,2.194314,0,0,OIF:SA:80:132,Europe/Paris,,OIF, +OIF:SP:80:133,1,"Les Metz - Clair-Bois",48.777851,2.167659,0,0,OIF:SA:80:133,Europe/Paris,,OIF, +OIF:SP:80:134,1,"Les Metz - Clair-Bois",48.777905,2.167699,0,0,OIF:SA:80:133,Europe/Paris,,OIF, +OIF:SP:80:135,1,"Musée de Sèvres",48.828412,2.225008,0,0,OIF:SA:59045,Europe/Paris,,OIF, +OIF:SP:80:136,1,"Musée de Sèvres",48.828107,2.225213,0,0,OIF:SA:59045,Europe/Paris,,OIF, +OIF:SP:80:137,1,"Marcel Dassault",48.785751,2.211267,0,0,OIF:SA:80:137,Europe/Paris,,OIF, +OIF:SP:80:138,1,"Marcel Dassault",48.785724,2.21109,0,0,OIF:SA:80:137,Europe/Paris,,OIF, +OIF:SP:80:14,1,"Bauvinon",48.768734,2.172216,0,0,OIF:SA:2:1039,Europe/Paris,,OIF, +OIF:SP:80:143,1,"Mermoz",48.78765,2.182576,0,0,OIF:SA:80:143,Europe/Paris,,OIF, +OIF:SP:80:144,1,"Mermoz",48.787659,2.18263,0,0,OIF:SA:80:143,Europe/Paris,,OIF, +OIF:SP:80:145,1,"Morane",48.785959,2.221019,0,0,OIF:SA:59:5121004,Europe/Paris,,OIF, +OIF:SP:80:146,1,"Morane",48.788108,2.222429,0,0,OIF:SA:59:5121004,Europe/Paris,,OIF, +OIF:SP:80:147,1,"Mairie-Tarron",48.782393,2.19014,0,0,OIF:SA:59878,Europe/Paris,,OIF, +OIF:SP:80:148,1,"Mairie-Tarron",48.782123,2.190249,0,0,OIF:SA:59878,Europe/Paris,,OIF, +OIF:SP:80:15,1,"Base Aérienne 107",48.772805,2.216411,0,0,OIF:SA:80:15,Europe/Paris,,OIF, +OIF:SP:80:151,1,"Nieuport",48.782727,2.207643,0,0,OIF:SA:59874,Europe/Paris,,OIF, +OIF:SP:80:152,1,"Picardie-Alsace",48.784234,2.175704,0,0,OIF:SA:80:152,Europe/Paris,,OIF, +OIF:SP:80:153,1,"Place de l'Aviation",48.784103,2.185048,0,0,OIF:SA:80:153,Europe/Paris,,OIF, +OIF:SP:80:154,1,"Place de l'Aviation",48.784032,2.185538,0,0,OIF:SA:80:153,Europe/Paris,,OIF, +OIF:SP:80:155,1,"Picardie-Champagne",48.78476,2.172492,0,0,OIF:SA:80:155,Europe/Paris,,OIF, +OIF:SP:80:156,1,"Pont Colbert",48.787747,2.150175,0,0,OIF:SA:2:959,Europe/Paris,,OIF, +OIF:SP:80:157,1,"Pont Colbert",48.787936,2.150215,0,0,OIF:SA:2:959,Europe/Paris,,OIF, +OIF:SP:80:16,1,"Base Aérienne 107",48.772805,2.216547,0,0,OIF:SA:80:15,Europe/Paris,,OIF, +OIF:SP:80:160,1,"Place de la Marne",48.765015,2.166912,0,0,OIF:SA:2:973,Europe/Paris,,OIF, +OIF:SP:80:161,1,"Place de la Marne",48.764916,2.166967,0,0,OIF:SA:2:973,Europe/Paris,,OIF, +OIF:SP:80:162,1,"Pont de Sèvres",48.829279,2.22894,0,0,OIF:SA:80:162,Europe/Paris,,OIF, +OIF:SP:80:163,1,"Pont de Sèvres",48.829442,2.230029,0,0,OIF:SA:80:162,Europe/Paris,,OIF, +OIF:SP:80:164,1,"Pointe Ouest",48.778073,2.178837,0,0,OIF:SA:80:164,Europe/Paris,,OIF, +OIF:SP:80:165,1,"Pointe Ouest",48.778199,2.178891,0,0,OIF:SA:80:164,Europe/Paris,,OIF, +OIF:SP:80:166,1,"Préfécture",48.802948,2.130038,0,0,OIF:SA:2:92,Europe/Paris,,OIF, +OIF:SP:80:167,1,"Petit Robinson",48.779188,2.172714,0,0,OIF:SA:2:1052,Europe/Paris,,OIF, +OIF:SP:80:17,1,"Burospace",48.767618,2.215621,0,0,OIF:SA:80:17,Europe/Paris,,OIF, +OIF:SP:80:170,1,"Puits Sans Vin",48.807484,2.187715,0,0,OIF:SA:17:1510,Europe/Paris,,OIF, +OIF:SP:80:171,1,"Puits Sans Vin",48.807906,2.187863,0,0,OIF:SA:17:1510,Europe/Paris,,OIF, +OIF:SP:80:172,1,"Pasteur",48.787035,2.218963,0,0,OIF:SA:59:5121004,Europe/Paris,,OIF, +OIF:SP:80:173,1,"Pasteur",48.787072,2.219099,0,0,OIF:SA:59:5121004,Europe/Paris,,OIF, +OIF:SP:80:174,1,"Providence",48.794922,2.140232,0,0,OIF:SA:2:306,Europe/Paris,,OIF, +OIF:SP:80:175,1,"Providence",48.794895,2.140586,0,0,OIF:SA:2:306,Europe/Paris,,OIF, +OIF:SP:80:176,1,"Rabourdin",48.78273,2.194096,0,0,OIF:SA:80:176,Europe/Paris,,OIF, +OIF:SP:80:177,1,"Résistance",48.809567,2.186361,0,0,OIF:SA:17:1509,Europe/Paris,,OIF, +OIF:SP:80:178,1,"Résidence Europe",48.78062,2.203432,0,0,OIF:SA:80:178,Europe/Paris,,OIF, +OIF:SP:80:179,1,"Résidence Europe",48.780539,2.203772,0,0,OIF:SA:80:178,Europe/Paris,,OIF, +OIF:SP:80:18,1,"Burospace",48.766881,2.216058,0,0,OIF:SA:80:17,Europe/Paris,,OIF, +OIF:SP:80:180,1,"Résidence les Bois",48.783587,2.20507,0,0,OIF:SA:80:180,Europe/Paris,,OIF, +OIF:SP:80:181,1,"Route Militaire",48.777568,2.191867,0,0,OIF:SA:80:181,Europe/Paris,,OIF, +OIF:SP:80:182,1,"Route Militaire",48.77771,2.190615,0,0,OIF:SA:80:181,Europe/Paris,,OIF, +OIF:SP:80:183,1,"Roland Garros",48.787053,2.186644,0,0,OIF:SA:80:183,Europe/Paris,,OIF, +OIF:SP:80:184,1,"Rond-Point du Pileu",48.730196,2.241143,0,0,OIF:SA:57:8070,Europe/Paris,,OIF, +OIF:SP:80:185,1,"Rond-Point Val de Grâce",48.775549,2.219193,0,0,OIF:SA:80:185,Europe/Paris,,OIF, +OIF:SP:80:186,1,"Rond-Point Val de Grâce",48.775522,2.219247,0,0,OIF:SA:80:185,Europe/Paris,,OIF, +OIF:SP:80:188,1,"Robert Wagner",48.784353,2.177172,0,0,OIF:SA:59882,Europe/Paris,,OIF, +OIF:SP:80:189,1,"Robert Wagner",48.784282,2.177893,0,0,OIF:SA:59882,Europe/Paris,,OIF, +OIF:SP:80:19,1,"Bertisettes",48.79837,2.167551,0,0,OIF:SA:80:19,Europe/Paris,,OIF, +OIF:SP:80:190,1,"Savoie-Alsace",48.783172,2.174292,0,0,OIF:SA:80:190,Europe/Paris,,OIF, +OIF:SP:80:191,1,"Sarraut",48.791794,2.14578,0,0,OIF:SA:80:191,Europe/Paris,,OIF, +OIF:SP:80:192,1,"Sarraut",48.791821,2.145971,0,0,OIF:SA:80:191,Europe/Paris,,OIF, +OIF:SP:80:195,1,"Collège Saint-Exupéry",48.783326,2.175489,0,0,OIF:SA:2:1055,Europe/Paris,,OIF, +OIF:SP:80:196,1,"Collège Saint-Exupéry",48.783138,2.175884,0,0,OIF:SA:2:1055,Europe/Paris,,OIF, +OIF:SP:80:198,1,"Marcel Sembat",48.787537,2.17908,0,0,OIF:SA:59882,Europe/Paris,,OIF, +OIF:SP:80:199,1,"Marcel Sembat",48.787672,2.179161,0,0,OIF:SA:59882,Europe/Paris,,OIF, +OIF:SP:80:2,1,"Art de Vivre/l'Usine",48.77436,2.226403,0,0,OIF:SA:80:2,Europe/Paris,,OIF, +OIF:SP:80:20,1,"Bertisettes",48.798406,2.167578,0,0,OIF:SA:80:19,Europe/Paris,,OIF, +OIF:SP:80:201,1,"Saint-Paul",48.802272,2.188396,0,0,OIF:SA:36:1033,Europe/Paris,,OIF, +OIF:SP:80:202,1,"Ursine",48.797527,2.196491,0,0,OIF:SA:80:202,Europe/Paris,,OIF, +OIF:SP:80:203,1,"Ursine",48.797527,2.196532,0,0,OIF:SA:80:202,Europe/Paris,,OIF, +OIF:SP:80:204,1,"Villacoublay",48.782748,2.201808,0,0,OIF:SA:80:204,Europe/Paris,,OIF, +OIF:SP:80:205,1,"Centre Commercial",48.781804,2.218376,0,0,OIF:SA:80:205,Europe/Paris,,OIF, +OIF:SP:80:206,1,"Centre Commercial",48.781912,2.218444,0,0,OIF:SA:80:205,Europe/Paris,,OIF, +OIF:SP:80:207,1,"Vergennes",48.800148,2.13726,0,0,OIF:SA:2:1113,Europe/Paris,,OIF, +OIF:SP:80:208,1,"Vergennes",48.800354,2.137327,0,0,OIF:SA:2:1113,Europe/Paris,,OIF, +OIF:SP:80:209,1,"Vélizy 2 Sud",48.779115,2.21709,0,0,OIF:SA:80:209,Europe/Paris,,OIF, +OIF:SP:80:21,1,"Beuvron",48.765638,2.169208,0,0,OIF:SA:2:1037,Europe/Paris,,OIF, +OIF:SP:80:210,1,"Victor Hugo",48.772291,2.164277,0,0,OIF:SA:24:15059,Europe/Paris,,OIF, +OIF:SP:80:211,1,"Victor Hugo",48.772102,2.163938,0,0,OIF:SA:24:15059,Europe/Paris,,OIF, +OIF:SP:80:212,1,"Le Village",48.783265,2.190695,0,0,OIF:SA:80:212,Europe/Paris,,OIF, +OIF:SP:80:213,1,"La Cheminée",48.783768,2.205927,0,0,OIF:SA:80:213,Europe/Paris,,OIF, +OIF:SP:80:214,1,"La Cheminée",48.783741,2.206226,0,0,OIF:SA:80:213,Europe/Paris,,OIF, +OIF:SP:80:215,1,"Zone Aéronautique",48.778231,2.183039,0,0,OIF:SA:80:215,Europe/Paris,,OIF, +OIF:SP:80:216,1,"Zone Aéronautique",48.778401,2.182481,0,0,OIF:SA:80:215,Europe/Paris,,OIF, +OIF:SP:80:217,1,"Abel Nicolle le Vallon",48.771198,2.172725,0,0,OIF:SA:2:1041,Europe/Paris,,OIF, +OIF:SP:80:218,1,"Burospace",48.767025,2.215541,0,0,OIF:SA:80:17,Europe/Paris,,OIF, +OIF:SP:80:219,1,"Bièvres RER C",48.751358,2.215673,0,0,OIF:SA:8739354,Europe/Paris,,OIF, +OIF:SP:80:22,1,"Beuvron",48.765593,2.169398,0,0,OIF:SA:2:1037,Europe/Paris,,OIF, +OIF:SP:80:220,1,"Bièvres RER C",48.751358,2.215673,0,0,OIF:SA:8739354,Europe/Paris,,OIF, +OIF:SP:80:221,1,"Hôtel de Ville",48.802114,2.130789,0,0,OIF:SA:24:15182,Europe/Paris,,OIF, +OIF:SP:80:222,1,"Mairie de Vélizy",48.780393,2.193831,0,0,OIF:SA:59878,Europe/Paris,,OIF, +OIF:SP:80:223,1,"Mairie de Bièvres",48.75489,2.215093,0,0,OIF:SA:57:8290,Europe/Paris,,OIF, +OIF:SP:80:224,1,"Mairie de Bièvres",48.754908,2.21508,0,0,OIF:SA:57:8290,Europe/Paris,,OIF, +OIF:SP:80:225,1,"Ministère",48.762756,2.207394,0,0,OIF:SA:80:225,Europe/Paris,,OIF, +OIF:SP:80:226,1,"Ministère",48.762773,2.207203,0,0,OIF:SA:80:225,Europe/Paris,,OIF, +OIF:SP:80:227,1,"Porchefontaine",48.798371,2.161878,0,0,OIF:SA:2:318,Europe/Paris,,OIF, +OIF:SP:80:228,1,"Porchefontaine",48.798416,2.161891,0,0,OIF:SA:2:318,Europe/Paris,,OIF, +OIF:SP:80:229,1,"Vauboyen",48.756603,2.211501,0,0,OIF:SA:80:229,Europe/Paris,,OIF, +OIF:SP:80:23,1,"Blériot",48.786165,2.187871,0,0,OIF:SA:80:23,Europe/Paris,,OIF, +OIF:SP:80:230,1,"Vauboyen",48.756657,2.211487,0,0,OIF:SA:80:229,Europe/Paris,,OIF, +OIF:SP:80:231,1,"Villacoublay",48.783741,2.206226,0,0,OIF:SA:80:204,Europe/Paris,,OIF, +OIF:SP:80:232,1,"Vergennes",48.799645,2.137847,0,0,OIF:SA:2:1113,Europe/Paris,,OIF, +OIF:SP:80:233,1,"Vergennes",48.799708,2.137452,0,0,OIF:SA:2:1113,Europe/Paris,,OIF, +OIF:SP:80:234,1,"Mairie de Vélizy",48.780013,2.192159,0,0,OIF:SA:59878,Europe/Paris,,OIF, +OIF:SP:80:235,1,"Borgnis Desbordes",48.794848,2.123649,0,0,OIF:SA:2:269,Europe/Paris,,OIF, +OIF:SP:80:236,1,"Bourdonnais",48.795993,2.12559,0,0,OIF:SA:2:264,Europe/Paris,,OIF, +OIF:SP:80:237,1,"Evêché",48.79422,2.124386,0,0,OIF:SA:2:266,Europe/Paris,,OIF, +OIF:SP:80:238,1,"Lycée Jules Ferry",48.795132,2.121471,0,0,OIF:SA:2:270,Europe/Paris,,OIF, +OIF:SP:80:239,1,"Lycée Jules Ferry",48.794754,2.1215,0,0,OIF:SA:2:270,Europe/Paris,,OIF, +OIF:SP:80:24,1,"Bourdonnais",48.795651,2.125401,0,0,OIF:SA:2:264,Europe/Paris,,OIF, +OIF:SP:80:240,1,"Tournelles",48.798225,2.127186,0,0,OIF:SA:2:254,Europe/Paris,,OIF, +OIF:SP:80:241,1,"Tournelles",48.797955,2.127024,0,0,OIF:SA:2:254,Europe/Paris,,OIF, +OIF:SP:80:242,1,"Jules Ferry",48.797461,2.193661,0,0,OIF:SA:36:1014,Europe/Paris,,OIF, +OIF:SP:80:29,1,"Concorde",48.796036,2.197665,0,0,OIF:SA:80:29,Europe/Paris,,OIF, +OIF:SP:80:3,1,"Art de Vivre/l'Usine",48.774396,2.226335,0,0,OIF:SA:80:2,Europe/Paris,,OIF, +OIF:SP:80:30,1,"Centre Commercial Mozart",48.783938,2.169448,0,0,OIF:SA:80:30,Europe/Paris,,OIF, +OIF:SP:80:31,1,"Cisterciens",48.79043,2.147377,0,0,OIF:SA:2:1081,Europe/Paris,,OIF, +OIF:SP:80:32,1,"Cisterciens",48.79052,2.147404,0,0,OIF:SA:2:1081,Europe/Paris,,OIF, +OIF:SP:80:33,1,"Copernic",48.788416,2.215273,0,0,OIF:SA:80:33,Europe/Paris,,OIF, +OIF:SP:80:34,1,"Copernic",48.788452,2.215368,0,0,OIF:SA:80:33,Europe/Paris,,OIF, +OIF:SP:80:35,1,"Centre d'Affaires Petit Robinson",48.780387,2.168861,0,0,OIF:SA:80:35,Europe/Paris,,OIF, +OIF:SP:80:36,1,"Centre d'Affaires Petit Robinson",48.780099,2.168794,0,0,OIF:SA:80:35,Europe/Paris,,OIF, +OIF:SP:80:37,1,"Gare Chaville Rive Droite",48.812283,2.187347,0,0,OIF:SA:8738233,Europe/Paris,,OIF, +OIF:SP:80:38,1,"Gare Chaville Rive Droite",48.812184,2.187524,0,0,OIF:SA:8738233,Europe/Paris,,OIF, +OIF:SP:80:39,1,"Gare Chaville Rive Droite",48.812067,2.187579,0,0,OIF:SA:8738233,Europe/Paris,,OIF, +OIF:SP:80:40,1,"Gare Chaville Rive Droite",48.812094,2.187593,0,0,OIF:SA:8738233,Europe/Paris,,OIF, +OIF:SP:80:41,1,"Gare Chaville Rive Gauche",48.804536,2.188158,0,0,OIF:SA:8739320,Europe/Paris,,OIF, +OIF:SP:80:42,1,"Gare Chaville Rive Gauche",48.805022,2.188184,0,0,OIF:SA:8739320,Europe/Paris,,OIF, +OIF:SP:80:43,1,"Cimetière",48.795565,2.180416,0,0,OIF:SA:80:43,Europe/Paris,,OIF, +OIF:SP:80:44,1,"Cimetière",48.795458,2.180933,0,0,OIF:SA:80:43,Europe/Paris,,OIF, +OIF:SP:80:45,1,"Cimetière",48.795943,2.180089,0,0,OIF:SA:80:43,Europe/Paris,,OIF, +OIF:SP:80:46,1,"Cimetière",48.795925,2.180565,0,0,OIF:SA:80:43,Europe/Paris,,OIF, +OIF:SP:80:47,1,"Chaville-Vélizy RER C",48.799318,2.183861,0,0,OIF:SA:8739317,Europe/Paris,,OIF, +OIF:SP:80:48,1,"Chaville-Vélizy RER C",48.799255,2.18382,0,0,OIF:SA:8739317,Europe/Paris,,OIF, +OIF:SP:80:49,1,"Chaville-Vélizy RER C",48.799203,2.185058,0,0,OIF:SA:8739317,Europe/Paris,,OIF, +OIF:SP:80:50,1,"Chaville-Vélizy RER C",48.799428,2.185493,0,0,OIF:SA:8739317,Europe/Paris,,OIF, +OIF:SP:80:51,1,"De Lattre de Tassigny",48.785387,2.224584,0,0,OIF:SA:59868,Europe/Paris,,OIF, +OIF:SP:80:52,1,"Dewoitine",48.784496,2.21467,0,0,OIF:SA:59872,Europe/Paris,,OIF, +OIF:SP:80:54,1,"Dewoitine",48.784523,2.21467,0,0,OIF:SA:59872,Europe/Paris,,OIF, +OIF:SP:80:55,1,"De Gaulle",48.784963,2.182856,0,0,OIF:SA:59882,Europe/Paris,,OIF, +OIF:SP:80:56,1,"De Gaulle",48.784901,2.183413,0,0,OIF:SA:59882,Europe/Paris,,OIF, +OIF:SP:80:57,1,"Evêché",48.794967,2.124982,0,0,OIF:SA:2:266,Europe/Paris,,OIF, +OIF:SP:80:58,1,"Échangeur",48.779235,2.174481,0,0,OIF:SA:2:1000,Europe/Paris,,OIF, +OIF:SP:80:59,1,"Échangeur",48.779273,2.175393,0,0,OIF:SA:2:1000,Europe/Paris,,OIF, +OIF:SP:80:6,1,"Allée Noire",48.795576,2.181545,0,0,OIF:SA:80:6,Europe/Paris,,OIF, +OIF:SP:80:62,1,"Europe",48.804504,2.130467,0,0,OIF:SA:23:1135,Europe/Paris,,OIF, +OIF:SP:80:63,1,"Europe",48.804504,2.130467,0,0,OIF:SA:23:1135,Europe/Paris,,OIF, +OIF:SP:80:64,1,"Europe Sud",48.778925,2.207163,0,0,OIF:SA:59874,Europe/Paris,,OIF, +OIF:SP:80:65,1,"Europe Sud",48.77983,2.205025,0,0,OIF:SA:59874,Europe/Paris,,OIF, +OIF:SP:80:67,1,"Europe Sud",48.779376,2.208372,0,0,OIF:SA:59874,Europe/Paris,,OIF, +OIF:SP:80:68,1,"Exelmans",48.779826,2.201489,0,0,OIF:SA:80:68,Europe/Paris,,OIF, +OIF:SP:80:7,1,"André Citroën",48.775147,2.221995,0,0,OIF:SA:80:7,Europe/Paris,,OIF, +OIF:SP:80:71,1,"Fronval",48.78312,2.189743,0,0,OIF:SA:80:71,Europe/Paris,,OIF, +OIF:SP:80:72,1,"Gare Versailles Chantiers",48.796021,2.136568,0,0,OIF:SA:8739300,Europe/Paris,,OIF, +OIF:SP:80:73,1,"Gare Versailles Chantiers",48.797359,2.13576,0,0,OIF:SA:8739300,Europe/Paris,,OIF, +OIF:SP:80:74,1,"Gare de Jouy en Josas",48.765109,2.163744,0,0,OIF:SA:8739351,Europe/Paris,,OIF, +OIF:SP:80:75,1,"Gare de Massy Palaiseau",48.72458,2.255459,0,0,OIF:SA:8739357,Europe/Paris,,OIF, +OIF:SP:80:76,1,"Gare de Massy Palaiseau",48.724787,2.255486,0,0,OIF:SA:8739357,Europe/Paris,,OIF, +OIF:SP:80:77,1,"Grange Dame Rose",48.782833,2.205195,0,0,OIF:SA:80:77,Europe/Paris,,OIF, +OIF:SP:80:78,1,"Grange Dame Rose",48.782788,2.205521,0,0,OIF:SA:80:77,Europe/Paris,,OIF, +OIF:SP:80:8,1,"André Citroën",48.775201,2.222063,0,0,OIF:SA:80:7,Europe/Paris,,OIF, +OIF:SP:80:82,1,"Château Gare Rive Gauche",48.800248,2.127912,0,0,OIF:SA:8739315,Europe/Paris,,OIF, +OIF:SP:80:83,1,"Château Gare Rive Gauche",48.800078,2.128226,0,0,OIF:SA:8739315,Europe/Paris,,OIF, +OIF:SP:80:85,1,"Vélizy 2",48.784887,2.21894,0,0,OIF:SA:59870,Europe/Paris,,OIF, +OIF:SP:80:86,1,"Vélizy 2",48.785354,2.218572,0,0,OIF:SA:59870,Europe/Paris,,OIF, +OIF:SP:80:87,1,"Vélizy 2",48.785345,2.218586,0,0,OIF:SA:59870,Europe/Paris,,OIF, +OIF:SP:80:88,1,"Vélizy 2",48.785291,2.218395,0,0,OIF:SA:59870,Europe/Paris,,OIF, +OIF:SP:80:9,1,"Abel Nicolle le Vallon",48.771997,2.172029,0,0,OIF:SA:2:1041,Europe/Paris,,OIF, +OIF:SP:80:90,1,"Vélizy 2",48.785246,2.218504,0,0,OIF:SA:59870,Europe/Paris,,OIF, +OIF:SP:80:91,1,"Vélizy 2",48.785462,2.218721,0,0,OIF:SA:59870,Europe/Paris,,OIF, +OIF:SP:80:92,1,"Général Valérie André",48.777922,2.187351,0,0,OIF:SA:80:92,Europe/Paris,,OIF, +OIF:SP:80:93,1,"Général Valérie André",48.777984,2.186643,0,0,OIF:SA:80:92,Europe/Paris,,OIF, +OIF:SP:80:94,1,"Hôtel de Ville",48.801943,2.130654,0,0,OIF:SA:24:15182,Europe/Paris,,OIF, +OIF:SP:80:95,1,"Hubert Georgette",48.797055,2.185527,0,0,OIF:SA:80:95,Europe/Paris,,OIF, +OIF:SP:81:12790,1,"Marjobert Chauffours",49.039981,2.075112,0,0,OIF:SA:58:1134,Europe/Paris,,OIF, +OIF:SP:81:12791,1,"Marjobert Chauffours",49.04018,2.075452,0,0,OIF:SA:58:1134,Europe/Paris,,OIF, +OIF:SP:81:14049,1,"Soleil Levant",49.024362,1.873488,0,0,OIF:SA:81:14049,Europe/Paris,,OIF, +OIF:SP:81:14050,1,"Soleil Levant",49.026032,1.870768,0,0,OIF:SA:81:14049,Europe/Paris,,OIF, +OIF:SP:81:14720,1,"Millerus la Ferme",48.873031,1.558077,0,0,OIF:SA:81:14720,Europe/Paris,,OIF, +OIF:SP:81:14721,1,"Cavée",49.030558,1.845349,0,0,OIF:SA:81:14721,Europe/Paris,,OIF, +OIF:SP:81:14725,1,"Millerus la Croix",48.874346,1.564039,0,0,OIF:SA:81:14725,Europe/Paris,,OIF, +OIF:SP:81:14727,1,"Saint-Laurent",48.882137,1.581992,0,0,OIF:SA:81:14727,Europe/Paris,,OIF, +OIF:SP:81:14733,1,"Mirbel Moulin d'Haut",48.920651,1.555928,0,0,OIF:SA:81:14733,Europe/Paris,,OIF, +OIF:SP:81:14734,1,"Heurteloup",48.900872,1.582728,0,0,OIF:SA:81:14734,Europe/Paris,,OIF, +OIF:SP:81:14736,1,"Petit Heurteloup",48.903236,1.575768,0,0,OIF:SA:81:14736,Europe/Paris,,OIF, +OIF:SP:81:14738,1,"Noue",48.90843,1.549309,0,0,OIF:SA:81:14738,Europe/Paris,,OIF, +OIF:SP:81:14739,1,"Bas",48.893515,1.634876,0,0,OIF:SA:81:14739,Europe/Paris,,OIF, +OIF:SP:81:14741,1,"Haut",48.89197,1.628995,0,0,OIF:SA:81:14741,Europe/Paris,,OIF, +OIF:SP:81:14743,1,"Abri Bus Mairie",48.918452,1.659207,0,0,OIF:SA:81:14743,Europe/Paris,,OIF, +OIF:SP:81:14745,1,"Mairie",48.927908,1.646835,0,0,OIF:SA:81:14745,Europe/Paris,,OIF, +OIF:SP:81:14747,1,"Abri Bus",48.938162,1.606086,0,0,OIF:SA:81:14747,Europe/Paris,,OIF, +OIF:SP:81:14749,1,"Place Louise Henry",48.976588,1.539766,0,0,OIF:SA:68:121,Europe/Paris,,OIF, +OIF:SP:81:14751,1,"Pelleray",48.966209,1.537223,0,0,OIF:SA:81:14751,Europe/Paris,,OIF, +OIF:SP:81:14757,1,"Thiron",48.966313,1.558296,0,0,OIF:SA:81:14757,Europe/Paris,,OIF, +OIF:SP:81:14759,1,"Les Devins",48.963176,1.55141,0,0,OIF:SA:81:14759,Europe/Paris,,OIF, +OIF:SP:81:14761,1,"La Justice",48.958504,1.536755,0,0,OIF:SA:81:14761,Europe/Paris,,OIF, +OIF:SP:81:14763,1,"Le Hamel",48.953262,1.53498,0,0,OIF:SA:68:41,Europe/Paris,,OIF, +OIF:SP:81:14767,1,"Démonderie",48.955821,1.5944,0,0,OIF:SA:81:14767,Europe/Paris,,OIF, +OIF:SP:81:14769,1,"Gâts",48.96217,1.593613,0,0,OIF:SA:81:14769,Europe/Paris,,OIF, +OIF:SP:81:14771,1,"Bocquets",48.962056,1.598405,0,0,OIF:SA:81:14771,Europe/Paris,,OIF, +OIF:SP:81:14773,1,"Mairie",48.966786,1.601777,0,0,OIF:SA:81:14773,Europe/Paris,,OIF, +OIF:SP:81:14777,1,"La Cour aux Huans",48.975619,1.592805,0,0,OIF:SA:81:14777,Europe/Paris,,OIF, +OIF:SP:81:14781,1,"Poirier Godart",48.973422,1.577834,0,0,OIF:SA:81:14781,Europe/Paris,,OIF, +OIF:SP:81:14785,1,"Fortelle",48.931654,1.580042,0,0,OIF:SA:81:14785,Europe/Paris,,OIF, +OIF:SP:81:14788,1,"Haie Montaise",48.929145,1.550658,0,0,OIF:SA:81:14788,Europe/Paris,,OIF, +OIF:SP:81:14790,1,"Launay",48.933019,1.55064,0,0,OIF:SA:81:14790,Europe/Paris,,OIF, +OIF:SP:81:14792,1,"Coignet",48.926338,1.537921,0,0,OIF:SA:81:14792,Europe/Paris,,OIF, +OIF:SP:81:14794,1,"La Scellée",48.960541,1.533626,0,0,OIF:SA:81:14794,Europe/Paris,,OIF, +OIF:SP:81:14797,1,"Collège les Nénuphars",48.943163,1.536788,0,0,OIF:SA:81:14797,Europe/Paris,,OIF, +OIF:SP:81:14799,1,"Loges",48.93742,1.520779,0,0,OIF:SA:81:14799,Europe/Paris,,OIF, +OIF:SP:81:14801,1,"La Gamacherie",48.973708,1.566376,0,0,OIF:SA:81:14801,Europe/Paris,,OIF, +OIF:SP:81:14802,1,"Les Mulottes",48.968805,1.565657,0,0,OIF:SA:81:14802,Europe/Paris,,OIF, +OIF:SP:81:14805,1,"Place du Tranchant",48.943931,1.534634,0,0,OIF:SA:81:14805,Europe/Paris,,OIF, +OIF:SP:81:14807,1,"Maisonneraie",49.006529,1.780009,0,0,OIF:SA:81:14807,Europe/Paris,,OIF, +OIF:SP:81:14815,1,"Dennemont École",49.014318,1.695425,0,0,OIF:SA:81:14815,Europe/Paris,,OIF, +OIF:SP:81:14816,1,"Dennemont École",49.014318,1.695425,0,0,OIF:SA:81:14815,Europe/Paris,,OIF, +OIF:SP:81:14819,1,"Collège George Sand",48.968742,1.686285,0,0,OIF:SA:81:14819,Europe/Paris,,OIF, +OIF:SP:81:14820,1,"Collège George Sand",48.968742,1.686285,0,0,OIF:SA:81:14819,Europe/Paris,,OIF, +OIF:SP:81:14825,1,"Sacré Cœur",48.983757,1.707724,0,0,OIF:SA:81:14825,Europe/Paris,,OIF, +OIF:SP:81:14833,1,"Gaudimonts",48.961155,1.629058,0,0,OIF:SA:81:14833,Europe/Paris,,OIF, +OIF:SP:81:14835,1,"Mare la Forge",48.958346,1.619284,0,0,OIF:SA:81:14835,Europe/Paris,,OIF, +OIF:SP:81:14837,1,"Vert Village",48.944719,1.542276,0,0,OIF:SA:81:14837,Europe/Paris,,OIF, +OIF:SP:81:14845,1,"Carrefour Saint-Martin",48.964455,1.632453,0,0,OIF:SA:81:14845,Europe/Paris,,OIF, +OIF:SP:81:14849,1,"Apremont le Clos",48.981427,1.615223,0,0,OIF:SA:81:14849,Europe/Paris,,OIF, +OIF:SP:81:14857,1,"Longuemare",48.998355,1.487666,0,0,OIF:SA:81:14857,Europe/Paris,,OIF, +OIF:SP:81:14858,1,"Longuemare",48.999241,1.487091,0,0,OIF:SA:81:14857,Europe/Paris,,OIF, +OIF:SP:81:14892,1,"Docteur Roux",48.988981,1.737921,0,0,OIF:SA:81:14892,Europe/Paris,,OIF, +OIF:SP:81:14893,1,"Abri",48.999374,1.886046,0,0,OIF:SA:81:14893,Europe/Paris,,OIF, +OIF:SP:81:15037,1,"Bois de Merville",49.044531,1.545607,0,0,OIF:SA:81:15037,Europe/Paris,,OIF, +OIF:SP:81:15038,1,"Bois de Merville",49.045155,1.544859,0,0,OIF:SA:81:15037,Europe/Paris,,OIF, +OIF:SP:81:15039,1,"Promenade des Tilleuls",49.039248,1.566396,0,0,OIF:SA:68:17,Europe/Paris,,OIF, +OIF:SP:81:15040,1,"Église",49.039966,1.563501,0,0,OIF:SA:68:17,Europe/Paris,,OIF, +OIF:SP:81:15041,1,"Gloton",49.046215,1.582205,0,0,OIF:SA:68:19,Europe/Paris,,OIF, +OIF:SP:81:15042,1,"Gloton",49.047072,1.582753,0,0,OIF:SA:68:19,Europe/Paris,,OIF, +OIF:SP:81:15043,1,"Pont",49.040253,1.568896,0,0,OIF:SA:81:15043,Europe/Paris,,OIF, +OIF:SP:81:15044,1,"Pont",49.040543,1.569329,0,0,OIF:SA:81:15043,Europe/Paris,,OIF, +OIF:SP:81:15045,1,"Tripleval",49.052088,1.590158,0,0,OIF:SA:68:131,Europe/Paris,,OIF, +OIF:SP:81:15046,1,"Tripleval",49.052277,1.590279,0,0,OIF:SA:68:131,Europe/Paris,,OIF, +OIF:SP:81:15047,1,"Voie Jurée",49.040555,1.553172,0,0,OIF:SA:68:23,Europe/Paris,,OIF, +OIF:SP:81:15048,1,"Voie Jurée",49.040831,1.55284,0,0,OIF:SA:68:23,Europe/Paris,,OIF, +OIF:SP:81:15049,1,"Centre Social",49.034902,1.585281,0,0,OIF:SA:81:15049,Europe/Paris,,OIF, +OIF:SP:81:15050,1,"Centre Social",49.033813,1.583616,0,0,OIF:SA:81:15049,Europe/Paris,,OIF, +OIF:SP:81:15051,1,"Cimetière",49.033018,1.581441,0,0,OIF:SA:81:15051,Europe/Paris,,OIF, +OIF:SP:81:15052,1,"Cimetière",49.034152,1.580358,0,0,OIF:SA:81:15051,Europe/Paris,,OIF, +OIF:SP:81:15053,1,"Collège Marcel Pagnol",49.030723,1.56692,0,0,OIF:SA:81:15053,Europe/Paris,,OIF, +OIF:SP:81:15054,1,"Collège Marcel Pagnol",49.030723,1.56692,0,0,OIF:SA:81:15053,Europe/Paris,,OIF, +OIF:SP:81:15055,1,"Gambetta",49.03601,1.582846,0,0,OIF:SA:81:15055,Europe/Paris,,OIF, +OIF:SP:81:15056,1,"Gare Routière Bonnières",49.039066,1.580136,0,0,OIF:SA:8741589,Europe/Paris,,OIF, +OIF:SP:81:15057,1,"Gare Routière Bonnières",49.039066,1.580136,0,0,OIF:SA:8741589,Europe/Paris,,OIF, +OIF:SP:81:15059,1,"Haegeman",49.037761,1.586962,0,0,OIF:SA:81:15059,Europe/Paris,,OIF, +OIF:SP:81:15060,1,"Haegeman",49.037761,1.586962,0,0,OIF:SA:81:15059,Europe/Paris,,OIF, +OIF:SP:81:15061,1,"Monument",49.033482,1.575257,0,0,OIF:SA:81:15061,Europe/Paris,,OIF, +OIF:SP:81:15062,1,"Monument",49.034064,1.575002,0,0,OIF:SA:81:15061,Europe/Paris,,OIF, +OIF:SP:81:15069,1,"ZAC Mesnil Renard",49.030655,1.571622,0,0,OIF:SA:81:15069,Europe/Paris,,OIF, +OIF:SP:81:15070,1,"ZAC Mesnil Renard",49.030655,1.571622,0,0,OIF:SA:81:15069,Europe/Paris,,OIF, +OIF:SP:81:15071,1,"Centre",49.014756,1.48521,0,0,OIF:SA:68:180,Europe/Paris,,OIF, +OIF:SP:81:15072,1,"Centre",49.014756,1.48521,0,0,OIF:SA:68:180,Europe/Paris,,OIF, +OIF:SP:81:15077,1,"Église",48.991062,1.492142,0,0,OIF:SA:81:15077,Europe/Paris,,OIF, +OIF:SP:81:15078,1,"Église",48.991005,1.49288,0,0,OIF:SA:81:15077,Europe/Paris,,OIF, +OIF:SP:81:15079,1,"Le Val Comtat",48.976691,1.480663,0,0,OIF:SA:81:15079,Europe/Paris,,OIF, +OIF:SP:81:15080,1,"Le Val Comtat",48.977736,1.479758,0,0,OIF:SA:81:15079,Europe/Paris,,OIF, +OIF:SP:81:15085,1,"Aubépines",49.035406,1.595429,0,0,OIF:SA:81:15085,Europe/Paris,,OIF, +OIF:SP:81:15086,1,"Aubépines",49.035406,1.595429,0,0,OIF:SA:81:15085,Europe/Paris,,OIF, +OIF:SP:81:15087,1,"Belles Côtes",49.032164,1.603157,0,0,OIF:SA:81:15087,Europe/Paris,,OIF, +OIF:SP:81:15088,1,"Belles Côtes",49.032559,1.603069,0,0,OIF:SA:81:15087,Europe/Paris,,OIF, +OIF:SP:81:15089,1,"Bois Prévost",49.028848,1.607563,0,0,OIF:SA:81:15089,Europe/Paris,,OIF, +OIF:SP:81:15090,1,"Bois Prévost",49.028182,1.608789,0,0,OIF:SA:81:15089,Europe/Paris,,OIF, +OIF:SP:81:15091,1,"Centre Commercial",49.040542,1.593415,0,0,OIF:SA:81:15091,Europe/Paris,,OIF, +OIF:SP:81:15092,1,"Centre Commercial",49.040542,1.593415,0,0,OIF:SA:81:15091,Europe/Paris,,OIF, +OIF:SP:81:15093,1,"Curie",49.043969,1.599626,0,0,OIF:SA:81:15093,Europe/Paris,,OIF, +OIF:SP:81:15094,1,"Curie",49.043969,1.599626,0,0,OIF:SA:81:15093,Europe/Paris,,OIF, +OIF:SP:81:15095,1,"Église",49.046499,1.603418,0,0,OIF:SA:81:15095,Europe/Paris,,OIF, +OIF:SP:81:15096,1,"Église",49.046499,1.603418,0,0,OIF:SA:81:15095,Europe/Paris,,OIF, +OIF:SP:81:15097,1,"Guyenne",49.033943,1.600166,0,0,OIF:SA:81:15097,Europe/Paris,,OIF, +OIF:SP:81:15098,1,"Guyenne",49.033943,1.600166,0,0,OIF:SA:81:15097,Europe/Paris,,OIF, +OIF:SP:81:15099,1,"Poste",49.045385,1.597528,0,0,OIF:SA:81:15099,Europe/Paris,,OIF, +OIF:SP:81:15100,1,"Poste",49.045384,1.597487,0,0,OIF:SA:81:15099,Europe/Paris,,OIF, +OIF:SP:81:15101,1,"Balloches",49.040491,1.589506,0,0,OIF:SA:81:15101,Europe/Paris,,OIF, +OIF:SP:81:15102,1,"Balloches",49.04092,1.591933,0,0,OIF:SA:81:15101,Europe/Paris,,OIF, +OIF:SP:81:15103,1,"Clédevilles",49.042251,1.594962,0,0,OIF:SA:81:15103,Europe/Paris,,OIF, +OIF:SP:81:15104,1,"Clédevilles",49.042251,1.594962,0,0,OIF:SA:81:15103,Europe/Paris,,OIF, +OIF:SP:81:15105,1,"Criquets",49.051989,1.604776,0,0,OIF:SA:81:15105,Europe/Paris,,OIF, +OIF:SP:81:15106,1,"Criquets",49.051989,1.604776,0,0,OIF:SA:81:15105,Europe/Paris,,OIF, +OIF:SP:81:15107,1,"Plantines",49.040313,1.586829,0,0,OIF:SA:81:15107,Europe/Paris,,OIF, +OIF:SP:81:15108,1,"Plantines",49.040176,1.587939,0,0,OIF:SA:81:15107,Europe/Paris,,OIF, +OIF:SP:81:15109,1,"Mairie",49.048063,1.600429,0,0,OIF:SA:81:15109,Europe/Paris,,OIF, +OIF:SP:81:15110,1,"Mairie",49.048063,1.600429,0,0,OIF:SA:81:15109,Europe/Paris,,OIF, +OIF:SP:81:15111,1,"Paul Éluard",49.03492,1.599632,0,0,OIF:SA:81:15111,Europe/Paris,,OIF, +OIF:SP:81:15112,1,"Paul Éluard",49.036116,1.598453,0,0,OIF:SA:81:15111,Europe/Paris,,OIF, +OIF:SP:81:15113,1,"Place Marseille",49.03475,1.596888,0,0,OIF:SA:81:15113,Europe/Paris,,OIF, +OIF:SP:81:15114,1,"Place Marseille",49.03475,1.596888,0,0,OIF:SA:81:15113,Europe/Paris,,OIF, +OIF:SP:81:15116,1,"Ventines",49.040779,1.596829,0,0,OIF:SA:81:15116,Europe/Paris,,OIF, +OIF:SP:81:15117,1,"Ventines",49.040779,1.596829,0,0,OIF:SA:81:15116,Europe/Paris,,OIF, +OIF:SP:81:15118,1,"Mairie",48.988248,1.813374,0,0,OIF:SA:8741085,Europe/Paris,,OIF, +OIF:SP:81:15119,1,"Mairie",48.988005,1.813104,0,0,OIF:SA:8741085,Europe/Paris,,OIF, +OIF:SP:81:15122,1,"Moulin à Vent",48.988014,1.819426,0,0,OIF:SA:23:208,Europe/Paris,,OIF, +OIF:SP:81:15123,1,"Moulin à Vent",48.988256,1.817211,0,0,OIF:SA:23:208,Europe/Paris,,OIF, +OIF:SP:81:15124,1,"Casanova",48.991762,1.813298,0,0,OIF:SA:81:15124,Europe/Paris,,OIF, +OIF:SP:81:15125,1,"Casanova",48.991654,1.813272,0,0,OIF:SA:81:15124,Europe/Paris,,OIF, +OIF:SP:81:15126,1,"Collège Albert Camus",48.989723,1.81975,0,0,OIF:SA:81:15126,Europe/Paris,,OIF, +OIF:SP:81:15127,1,"Collège Albert Camus",48.989723,1.81975,0,0,OIF:SA:81:15126,Europe/Paris,,OIF, +OIF:SP:81:15128,1,"Chênes",48.986893,1.813757,0,0,OIF:SA:81:15128,Europe/Paris,,OIF, +OIF:SP:81:15129,1,"Chênes",48.986741,1.813963,0,0,OIF:SA:81:15128,Europe/Paris,,OIF, +OIF:SP:81:15130,1,"Gabriel Péri",48.975449,1.806733,0,0,OIF:SA:23:206,Europe/Paris,,OIF, +OIF:SP:81:15131,1,"Gabriel Péri",48.975099,1.804893,0,0,OIF:SA:23:206,Europe/Paris,,OIF, +OIF:SP:81:15151,1,"Rangiport",48.977173,1.812422,0,0,OIF:SA:81:15151,Europe/Paris,,OIF, +OIF:SP:81:15156,1,"Vigneux",48.992039,1.817037,0,0,OIF:SA:81:15156,Europe/Paris,,OIF, +OIF:SP:81:15157,1,"Vigneux",48.991959,1.817256,0,0,OIF:SA:81:15156,Europe/Paris,,OIF, +OIF:SP:81:15158,1,"Clachaloze",49.060116,1.599409,0,0,OIF:SA:81:15158,Europe/Paris,,OIF, +OIF:SP:81:15159,1,"Clachaloze",49.060322,1.599324,0,0,OIF:SA:81:15158,Europe/Paris,,OIF, +OIF:SP:81:15160,1,"Place de Gaulle",49.075832,1.593495,0,0,OIF:SA:68:71,Europe/Paris,,OIF, +OIF:SP:81:15161,1,"Place de Gaulle",49.075771,1.593714,0,0,OIF:SA:68:71,Europe/Paris,,OIF, +OIF:SP:81:15162,1,"Cacao Barry",49.00535,1.900623,0,0,OIF:SA:21:302,Europe/Paris,,OIF, +OIF:SP:81:15163,1,"Cacao Barry",49.005043,1.902565,0,0,OIF:SA:21:302,Europe/Paris,,OIF, +OIF:SP:81:15164,1,"Escale",49.002972,1.896627,0,0,OIF:SA:23:214,Europe/Paris,,OIF, +OIF:SP:81:15165,1,"Escale",49.001828,1.893523,0,0,OIF:SA:23:214,Europe/Paris,,OIF, +OIF:SP:81:15176,1,"Collège Jacques Cartier",48.987512,1.787506,0,0,OIF:SA:81:15176,Europe/Paris,,OIF, +OIF:SP:81:15177,1,"Collège Jacques Cartier",48.987512,1.787506,0,0,OIF:SA:81:15176,Europe/Paris,,OIF, +OIF:SP:81:15182,1,"Gare d'Issou Porcheville",48.979108,1.785219,0,0,OIF:SA:8738157,Europe/Paris,,OIF, +OIF:SP:81:15183,1,"Gare d'Issou Porcheville",48.979108,1.785219,0,0,OIF:SA:8738157,Europe/Paris,,OIF, +OIF:SP:81:15186,1,"Hautes Bovettes",48.986448,1.792583,0,0,OIF:SA:81:15186,Europe/Paris,,OIF, +OIF:SP:81:15187,1,"Hautes Bovettes",48.98639,1.79369,0,0,OIF:SA:81:15186,Europe/Paris,,OIF, +OIF:SP:81:15188,1,"Lavoir",48.987806,1.792801,0,0,OIF:SA:23:222,Europe/Paris,,OIF, +OIF:SP:81:15189,1,"Lavoir",48.98771,1.793389,0,0,OIF:SA:23:222,Europe/Paris,,OIF, +OIF:SP:81:15200,1,"Gare de Juziers",48.992414,1.844086,0,0,OIF:SA:8738155,Europe/Paris,,OIF, +OIF:SP:81:15201,1,"Gare de Juziers",48.992414,1.844086,0,0,OIF:SA:8738155,Europe/Paris,,OIF, +OIF:SP:81:15202,1,"Jean Marion",48.989554,1.839075,0,0,OIF:SA:81:15202,Europe/Paris,,OIF, +OIF:SP:81:15203,1,"Jean Marion",48.990127,1.838728,0,0,OIF:SA:81:15202,Europe/Paris,,OIF, +OIF:SP:81:15204,1,"Carpe Qui Tête",48.989726,1.848181,0,0,OIF:SA:23:242,Europe/Paris,,OIF, +OIF:SP:81:15205,1,"Carpe Qui Tête",48.990329,1.848271,0,0,OIF:SA:23:242,Europe/Paris,,OIF, +OIF:SP:81:15207,1,"Tilleuls",48.99198,1.861024,0,0,OIF:SA:23:244,Europe/Paris,,OIF, +OIF:SP:81:15208,1,"Tilleuls",48.992382,1.860597,0,0,OIF:SA:23:244,Europe/Paris,,OIF, +OIF:SP:81:15209,1,"Trois Cornets",48.989302,1.843324,0,0,OIF:SA:23:246,Europe/Paris,,OIF, +OIF:SP:81:15210,1,"Trois Cornets",48.98996,1.843932,0,0,OIF:SA:23:246,Europe/Paris,,OIF, +OIF:SP:81:15211,1,"Alpa",48.98486,1.758805,0,0,OIF:SA:81:15211,Europe/Paris,,OIF, +OIF:SP:81:15212,1,"Basses Meunières",48.992624,1.744038,0,0,OIF:SA:23:250,Europe/Paris,,OIF, +OIF:SP:81:15213,1,"Basses Meunières",48.993194,1.742898,0,0,OIF:SA:23:250,Europe/Paris,,OIF, +OIF:SP:81:15218,1,"Centre Commercial",48.99133,1.753093,0,0,OIF:SA:23:264,Europe/Paris,,OIF, +OIF:SP:81:15219,1,"Centre Commercial",48.991141,1.753054,0,0,OIF:SA:23:264,Europe/Paris,,OIF, +OIF:SP:81:15220,1,"Lycée Condorcet",48.985762,1.755764,0,0,OIF:SA:81:15220,Europe/Paris,,OIF, +OIF:SP:81:15221,1,"Lycée Condorcet",48.985762,1.755764,0,0,OIF:SA:81:15220,Europe/Paris,,OIF, +OIF:SP:81:15228,1,"Allée d'Aise",49.048953,1.541684,0,0,OIF:SA:68:93,Europe/Paris,,OIF, +OIF:SP:81:15229,1,"Allée d'Aise",49.049357,1.541596,0,0,OIF:SA:68:93,Europe/Paris,,OIF, +OIF:SP:81:15230,1,"Église",49.061342,1.549356,0,0,OIF:SA:68:97,Europe/Paris,,OIF, +OIF:SP:81:15231,1,"Église",49.060915,1.548624,0,0,OIF:SA:68:97,Europe/Paris,,OIF, +OIF:SP:81:15232,1,"Foyer Rural",49.060772,1.546028,0,0,OIF:SA:68:100,Europe/Paris,,OIF, +OIF:SP:81:15233,1,"Foyer Rural",49.060464,1.544228,0,0,OIF:SA:68:100,Europe/Paris,,OIF, +OIF:SP:81:15234,1,"Monument",49.063214,1.553786,0,0,OIF:SA:81:15234,Europe/Paris,,OIF, +OIF:SP:81:15235,1,"Monument",49.06285,1.553217,0,0,OIF:SA:81:15234,Europe/Paris,,OIF, +OIF:SP:81:15236,1,"Place du Prieuré",49.056894,1.537227,0,0,OIF:SA:81:15236,Europe/Paris,,OIF, +OIF:SP:81:15237,1,"Place du Prieuré",49.056894,1.537227,0,0,OIF:SA:81:15236,Europe/Paris,,OIF, +OIF:SP:81:15238,1,"Route de la Roche",49.065095,1.558379,0,0,OIF:SA:81:15238,Europe/Paris,,OIF, +OIF:SP:81:15239,1,"Route de la Roche",49.066006,1.561662,0,0,OIF:SA:81:15238,Europe/Paris,,OIF, +OIF:SP:81:15240,1,"Chemin du Moulin",48.993543,1.51275,0,0,OIF:SA:68:184,Europe/Paris,,OIF, +OIF:SP:81:15241,1,"Chemin du Moulin",48.993357,1.509189,0,0,OIF:SA:68:184,Europe/Paris,,OIF, +OIF:SP:81:15242,1,"Église",48.993225,1.513616,0,0,OIF:SA:68:186,Europe/Paris,,OIF, +OIF:SP:81:15243,1,"Église",48.993726,1.513253,0,0,OIF:SA:68:186,Europe/Paris,,OIF, +OIF:SP:81:15244,1,"La Tuilerie",48.993741,1.529846,0,0,OIF:SA:68:91,Europe/Paris,,OIF, +OIF:SP:81:15245,1,"La Tuilerie",48.993741,1.529846,0,0,OIF:SA:68:91,Europe/Paris,,OIF, +OIF:SP:81:15250,1,"Gare Quai 10",48.989081,1.704969,0,0,OIF:SA:8738150,Europe/Paris,,OIF, +OIF:SP:81:15251,1,"Gare Quai 10",48.989081,1.704969,0,0,OIF:SA:8738150,Europe/Paris,,OIF, +OIF:SP:81:15253,1,"Gare Quai 12",48.988956,1.705244,0,0,OIF:SA:8738150,Europe/Paris,,OIF, +OIF:SP:81:15273,1,"Barrage",49.030699,1.617828,0,0,OIF:SA:81:15273,Europe/Paris,,OIF, +OIF:SP:81:15274,1,"Barrage",49.03077,1.617718,0,0,OIF:SA:81:15273,Europe/Paris,,OIF, +OIF:SP:81:15275,1,"Mère Biquette",49.033708,1.625139,0,0,OIF:SA:81:15275,Europe/Paris,,OIF, +OIF:SP:81:15276,1,"Mère Biquette",49.033788,1.625015,0,0,OIF:SA:81:15275,Europe/Paris,,OIF, +OIF:SP:81:15277,1,"Mairie",49.037016,1.629823,0,0,OIF:SA:81:15277,Europe/Paris,,OIF, +OIF:SP:81:15278,1,"Mairie",49.03667,1.629021,0,0,OIF:SA:81:15277,Europe/Paris,,OIF, +OIF:SP:81:15295,1,"Côteaux de Seine",49.07444,1.66025,0,0,OIF:SA:81:15295,Europe/Paris,,OIF, +OIF:SP:81:15296,1,"Côteaux de Seine",49.073965,1.665194,0,0,OIF:SA:81:15295,Europe/Paris,,OIF, +OIF:SP:81:15297,1,"Lavacourt Base de Loisirs",49.060113,1.677258,0,0,OIF:SA:81:15297,Europe/Paris,,OIF, +OIF:SP:81:15298,1,"Lavacourt Base de Loisirs",49.060811,1.678438,0,0,OIF:SA:81:15297,Europe/Paris,,OIF, +OIF:SP:81:15299,1,"Claude Monet",49.063836,1.694263,0,0,OIF:SA:81:15299,Europe/Paris,,OIF, +OIF:SP:81:15300,1,"Claude Monet",49.063308,1.694625,0,0,OIF:SA:81:15299,Europe/Paris,,OIF, +OIF:SP:81:15301,1,"Petit Pont",49.075116,1.649559,0,0,OIF:SA:81:15301,Europe/Paris,,OIF, +OIF:SP:81:15302,1,"Petit Pont",49.076116,1.637481,0,0,OIF:SA:81:15301,Europe/Paris,,OIF, +OIF:SP:81:15303,1,"Haudières",49.070274,1.678564,0,0,OIF:SA:81:15303,Europe/Paris,,OIF, +OIF:SP:81:15304,1,"Haudières",49.069855,1.679116,0,0,OIF:SA:81:15303,Europe/Paris,,OIF, +OIF:SP:81:15305,1,"Place Georges Pain",49.073174,1.669992,0,0,OIF:SA:81:15305,Europe/Paris,,OIF, +OIF:SP:81:15306,1,"Place Georges Pain",49.072533,1.671012,0,0,OIF:SA:81:15305,Europe/Paris,,OIF, +OIF:SP:81:15308,1,"Bretons",49.046383,1.651855,0,0,OIF:SA:81:15308,Europe/Paris,,OIF, +OIF:SP:81:15309,1,"Bretons",49.046383,1.651855,0,0,OIF:SA:81:15308,Europe/Paris,,OIF, +OIF:SP:81:15310,1,"Mairie",49.042773,1.647652,0,0,OIF:SA:81:15310,Europe/Paris,,OIF, +OIF:SP:81:15311,1,"Mairie",49.042862,1.647555,0,0,OIF:SA:81:15310,Europe/Paris,,OIF, +OIF:SP:81:15312,1,"Route des Crêtes",49.043864,1.645204,0,0,OIF:SA:81:15312,Europe/Paris,,OIF, +OIF:SP:81:15329,1,"Mairie",49.01723,1.610788,0,0,OIF:SA:81:15329,Europe/Paris,,OIF, +OIF:SP:81:15330,1,"Mairie",49.01964,1.611013,0,0,OIF:SA:81:15329,Europe/Paris,,OIF, +OIF:SP:81:15336,1,"Vallée",49.002772,1.625975,0,0,OIF:SA:81:15336,Europe/Paris,,OIF, +OIF:SP:81:15337,1,"Vallée",49.002969,1.625836,0,0,OIF:SA:81:15336,Europe/Paris,,OIF, +OIF:SP:81:15338,1,"Stade",48.999634,1.640892,0,0,OIF:SA:81:15338,Europe/Paris,,OIF, +OIF:SP:81:15339,1,"Stade",48.999877,1.640943,0,0,OIF:SA:81:15338,Europe/Paris,,OIF, +OIF:SP:81:15340,1,"Martinets",48.999027,1.647702,0,0,OIF:SA:81:15340,Europe/Paris,,OIF, +OIF:SP:81:15341,1,"Martinets",48.999449,1.646126,0,0,OIF:SA:81:15340,Europe/Paris,,OIF, +OIF:SP:81:15345,1,"Mairie",49.001077,1.631107,0,0,OIF:SA:81:15345,Europe/Paris,,OIF, +OIF:SP:81:15346,1,"Mairie",49.00081,1.631465,0,0,OIF:SA:81:15345,Europe/Paris,,OIF, +OIF:SP:81:15350,1,"Saint-Charles",49.000081,1.635928,0,0,OIF:SA:81:15350,Europe/Paris,,OIF, +OIF:SP:81:15351,1,"Saint-Charles",49.000516,1.633423,0,0,OIF:SA:81:15350,Europe/Paris,,OIF, +OIF:SP:81:15354,1,"École Notre-Dame",48.984371,1.974463,0,0,OIF:SA:51:493,Europe/Paris,,OIF, +OIF:SP:81:15355,1,"École Notre-Dame",48.984371,1.974463,0,0,OIF:SA:51:493,Europe/Paris,,OIF, +OIF:SP:81:15356,1,"Aventure",49.009414,1.54471,0,0,OIF:SA:81:15356,Europe/Paris,,OIF, +OIF:SP:81:15357,1,"Aventure",49.009455,1.54404,0,0,OIF:SA:81:15356,Europe/Paris,,OIF, +OIF:SP:81:15358,1,"Baliquet",49.013936,1.551759,0,0,OIF:SA:81:15358,Europe/Paris,,OIF, +OIF:SP:81:15359,1,"Baliquet",49.0138,1.551515,0,0,OIF:SA:81:15358,Europe/Paris,,OIF, +OIF:SP:81:15360,1,"Cholet",49.011805,1.537966,0,0,OIF:SA:81:15360,Europe/Paris,,OIF, +OIF:SP:81:15361,1,"Cholet",49.011618,1.538187,0,0,OIF:SA:81:15360,Europe/Paris,,OIF, +OIF:SP:81:15364,1,"Mairie",49.014475,1.528743,0,0,OIF:SA:81:15364,Europe/Paris,,OIF, +OIF:SP:81:15365,1,"Mairie",49.014777,1.528288,0,0,OIF:SA:81:15364,Europe/Paris,,OIF, +OIF:SP:81:15366,1,"Route de Bonnières",49.015921,1.524663,0,0,OIF:SA:81:15366,Europe/Paris,,OIF, +OIF:SP:81:15367,1,"Route de Bonnières",49.015811,1.524309,0,0,OIF:SA:81:15366,Europe/Paris,,OIF, +OIF:SP:81:15368,1,"La Croix",48.994059,1.488965,0,0,OIF:SA:68:182,Europe/Paris,,OIF, +OIF:SP:81:15370,1,"Alpa",48.985412,1.759591,0,0,OIF:SA:81:15211,Europe/Paris,,OIF, +OIF:SP:81:15371,1,"Marcets",49.005838,1.529957,0,0,OIF:SA:81:15371,Europe/Paris,,OIF, +OIF:SP:81:15372,1,"Marcets",49.008457,1.530599,0,0,OIF:SA:81:15371,Europe/Paris,,OIF, +OIF:SP:81:15373,1,"La Croix",48.993621,1.489287,0,0,OIF:SA:68:182,Europe/Paris,,OIF, +OIF:SP:81:15386,1,"Mairie",49.008097,1.777206,0,0,OIF:SA:81:15386,Europe/Paris,,OIF, +OIF:SP:81:15387,1,"Maisonneraie",49.006529,1.780009,0,0,OIF:SA:81:14807,Europe/Paris,,OIF, +OIF:SP:81:15414,1,"Alligator",49.039356,1.634999,0,0,OIF:SA:81:15414,Europe/Paris,,OIF, +OIF:SP:81:15415,1,"Alligator",49.039436,1.634888,0,0,OIF:SA:81:15414,Europe/Paris,,OIF, +OIF:SP:81:15417,1,"Route des Crêtes",49.043944,1.645107,0,0,OIF:SA:81:15312,Europe/Paris,,OIF, +OIF:SP:81:15418,1,"Faîtes",49.03404,1.586838,0,0,OIF:SA:81:15418,Europe/Paris,,OIF, +OIF:SP:81:15419,1,"Faîtes",49.03555,1.588347,0,0,OIF:SA:81:15418,Europe/Paris,,OIF, +OIF:SP:81:15420,1,"Chêneaux",49.032783,1.584082,0,0,OIF:SA:81:15420,Europe/Paris,,OIF, +OIF:SP:81:15421,1,"Chêneaux",49.033651,1.586461,0,0,OIF:SA:81:15420,Europe/Paris,,OIF, +OIF:SP:81:15422,1,"Tennis",49.033504,1.583006,0,0,OIF:SA:81:15422,Europe/Paris,,OIF, +OIF:SP:81:15423,1,"Tennis",49.033101,1.581795,0,0,OIF:SA:81:15422,Europe/Paris,,OIF, +OIF:SP:81:15424,1,"Couture",48.988088,1.799598,0,0,OIF:SA:81:15424,Europe/Paris,,OIF, +OIF:SP:81:15425,1,"Rangiport",48.977173,1.812422,0,0,OIF:SA:81:15151,Europe/Paris,,OIF, +OIF:SP:81:15426,1,"Collège de Gaillon",49.011725,1.906512,0,0,OIF:SA:81:15426,Europe/Paris,,OIF, +OIF:SP:81:15427,1,"Collège de Gaillon",49.01214,1.906986,0,0,OIF:SA:81:15426,Europe/Paris,,OIF, +OIF:SP:81:15428,1,"Collège Sully",49.001045,1.645531,0,0,OIF:SA:81:15428,Europe/Paris,,OIF, +OIF:SP:81:15449,1,"Auffreville",48.956246,1.707254,0,0,OIF:SA:81:15449,Europe/Paris,,OIF, +OIF:SP:81:15451,1,"Brasseuil",48.950154,1.699004,0,0,OIF:SA:81:15451,Europe/Paris,,OIF, +OIF:SP:81:15455,1,"Rosay",48.915237,1.68213,0,0,OIF:SA:81:15455,Europe/Paris,,OIF, +OIF:SP:81:15461,1,"Forest",48.989476,1.761826,0,0,OIF:SA:81:15461,Europe/Paris,,OIF, +OIF:SP:81:15464,1,"Calmette",48.983619,1.715741,0,0,OIF:SA:22:503,Europe/Paris,,OIF, +OIF:SP:81:15465,1,"Forest",48.988213,1.760802,0,0,OIF:SA:81:15461,Europe/Paris,,OIF, +OIF:SP:81:15493,1,"Pôle Lafarge",48.988858,1.747536,0,0,OIF:SA:23:274,Europe/Paris,,OIF, +OIF:SP:81:15494,1,"Pôle Lafarge",48.988858,1.747536,0,0,OIF:SA:23:274,Europe/Paris,,OIF, +OIF:SP:81:15497,1,"Parking Saint-Exupéry",48.997097,1.69161,0,0,OIF:SA:81:15497,Europe/Paris,,OIF, +OIF:SP:81:15498,1,"Parking Saint-Exupéry",48.997097,1.69161,0,0,OIF:SA:81:15497,Europe/Paris,,OIF, +OIF:SP:81:15499,1,"Monument",48.996205,1.734191,0,0,OIF:SA:81:15499,Europe/Paris,,OIF, +OIF:SP:81:15500,1,"Monument",48.995834,1.733608,0,0,OIF:SA:81:15499,Europe/Paris,,OIF, +OIF:SP:81:15501,1,"La Chartre",49.018698,1.824543,0,0,OIF:SA:81:15501,Europe/Paris,,OIF, +OIF:SP:81:15502,1,"La Chartre",49.018691,1.824858,0,0,OIF:SA:81:15501,Europe/Paris,,OIF, +OIF:SP:81:15503,1,"Sources",48.99562,1.809817,0,0,OIF:SA:81:15503,Europe/Paris,,OIF, +OIF:SP:81:15504,1,"Jules Ferry",48.992793,1.808767,0,0,OIF:SA:81:15504,Europe/Paris,,OIF, +OIF:SP:81:15505,1,"Jules Ferry",48.993063,1.808874,0,0,OIF:SA:81:15504,Europe/Paris,,OIF, +OIF:SP:81:15506,1,"Michon",48.991334,1.810038,0,0,OIF:SA:81:15506,Europe/Paris,,OIF, +OIF:SP:81:15507,1,"Michon",48.991187,1.809193,0,0,OIF:SA:81:15506,Europe/Paris,,OIF, +OIF:SP:81:15508,1,"Sources",48.995432,1.809942,0,0,OIF:SA:81:15503,Europe/Paris,,OIF, +OIF:SP:81:15510,1,"George Sand",48.99476,1.739739,0,0,OIF:SA:81:15510,Europe/Paris,,OIF, +OIF:SP:81:15511,1,"George Sand",48.994562,1.7397,0,0,OIF:SA:81:15510,Europe/Paris,,OIF, +OIF:SP:81:15515,1,"Maison des Arts",48.989284,1.739215,0,0,OIF:SA:23:1051,Europe/Paris,,OIF, +OIF:SP:81:15516,1,"Maison des Arts",48.989366,1.739378,0,0,OIF:SA:23:1051,Europe/Paris,,OIF, +OIF:SP:81:15517,1,"Les Essarts",48.998819,1.746466,0,0,OIF:SA:81:15517,Europe/Paris,,OIF, +OIF:SP:81:15518,1,"Pommeraie",49.000507,1.742541,0,0,OIF:SA:81:15518,Europe/Paris,,OIF, +OIF:SP:81:15519,1,"Pommeraie",49.000317,1.74227,0,0,OIF:SA:81:15518,Europe/Paris,,OIF, +OIF:SP:81:15520,1,"Les Essarts",48.99979,1.74651,0,0,OIF:SA:81:15517,Europe/Paris,,OIF, +OIF:SP:81:15525,1,"Ampère",48.996063,1.745173,0,0,OIF:SA:81:15525,Europe/Paris,,OIF, +OIF:SP:81:15526,1,"Ampère",48.996802,1.745711,0,0,OIF:SA:81:15525,Europe/Paris,,OIF, +OIF:SP:81:15527,1,"Mairie",49.056549,1.767178,0,0,OIF:SA:81:15527,Europe/Paris,,OIF, +OIF:SP:81:15528,1,"Mairie",49.05663,1.767081,0,0,OIF:SA:81:15527,Europe/Paris,,OIF, +OIF:SP:81:15529,1,"Garennes",48.974653,1.801635,0,0,OIF:SA:81:15529,Europe/Paris,,OIF, +OIF:SP:81:15530,1,"Garennes",48.97591,1.801322,0,0,OIF:SA:81:15529,Europe/Paris,,OIF, +OIF:SP:81:15531,1,"Port de l'Ilon",49.021372,1.639151,0,0,OIF:SA:81:15531,Europe/Paris,,OIF, +OIF:SP:81:15532,1,"Port de l'Ilon",49.021372,1.639151,0,0,OIF:SA:81:15531,Europe/Paris,,OIF, +OIF:SP:81:15533,1,"Navigateur",49.008309,1.711114,0,0,OIF:SA:81:15533,Europe/Paris,,OIF, +OIF:SP:81:15534,1,"Navigateur",49.009172,1.709519,0,0,OIF:SA:81:15533,Europe/Paris,,OIF, +OIF:SP:81:15536,1,"Pôle Lafarge (Départ)",48.988858,1.747536,0,0,OIF:SA:23:274,Europe/Paris,,OIF, +OIF:SP:81:15615,1,"Gambetta",49.035977,1.58327,0,0,OIF:SA:81:15055,Europe/Paris,,OIF, +OIF:SP:81:15616,1,"Moulin des Roches",49.036884,1.849717,0,0,OIF:SA:23:1032,Europe/Paris,,OIF, +OIF:SP:81:15617,1,"Moulin des Roches",49.036223,1.852716,0,0,OIF:SA:23:1032,Europe/Paris,,OIF, +OIF:SP:81:15618,1,"Les Longues Rayes",49.034469,1.812114,0,0,OIF:SA:81:15618,Europe/Paris,,OIF, +OIF:SP:81:15619,1,"Camille Claudel",48.96704,1.71437,0,0,OIF:SA:81:15619,Europe/Paris,,OIF, +OIF:SP:81:15620,1,"Camille Claudel",48.96704,1.71437,0,0,OIF:SA:81:15619,Europe/Paris,,OIF, +OIF:SP:81:15661,1,"Gambetta",49.005428,1.914664,0,0,OIF:SA:21:8,Europe/Paris,,OIF, +OIF:SP:81:15664,1,"Moulin à Vent",48.890247,1.568476,0,0,OIF:SA:81:15664,Europe/Paris,,OIF, +OIF:SP:81:15665,1,"Clos du Rame",48.96352,1.650959,0,0,OIF:SA:81:15665,Europe/Paris,,OIF, +OIF:SP:81:15666,1,"Mairie",48.965376,1.627049,0,0,OIF:SA:81:15666,Europe/Paris,,OIF, +OIF:SP:81:15667,1,"Cimetière",48.972169,1.623911,0,0,OIF:SA:81:15667,Europe/Paris,,OIF, +OIF:SP:81:15668,1,"Puce",48.942979,1.538742,0,0,OIF:SA:81:15668,Europe/Paris,,OIF, +OIF:SP:81:15669,1,"Haussepied",48.951039,1.62816,0,0,OIF:SA:81:15669,Europe/Paris,,OIF, +OIF:SP:81:15670,1,"Bléry",48.966144,1.596681,0,0,OIF:SA:81:15670,Europe/Paris,,OIF, +OIF:SP:81:15673,1,"Abri Bus Mairie",48.918018,1.660399,0,0,OIF:SA:81:14743,Europe/Paris,,OIF, +OIF:SP:81:15674,1,"Mairie",48.86096,1.580258,0,0,OIF:SA:81:14722,Europe/Paris,,OIF, +OIF:SP:81:15678,1,"La Cour aux Huans",48.975619,1.592805,0,0,OIF:SA:81:14777,Europe/Paris,,OIF, +OIF:SP:81:15679,1,"Poirier Godart",48.973422,1.577834,0,0,OIF:SA:81:14781,Europe/Paris,,OIF, +OIF:SP:81:15680,1,"Belle Côte Lavoir",48.976192,1.588169,0,0,OIF:SA:81:15680,Europe/Paris,,OIF, +OIF:SP:81:15681,1,"Belle Côte Lavoir",48.976192,1.588169,0,0,OIF:SA:81:15680,Europe/Paris,,OIF, +OIF:SP:81:15682,1,"Boissy Église",48.963709,1.57956,0,0,OIF:SA:81:15682,Europe/Paris,,OIF, +OIF:SP:81:15683,1,"Boissy Église",48.963709,1.57956,0,0,OIF:SA:81:15682,Europe/Paris,,OIF, +OIF:SP:81:15685,1,"Collège les Nénuphars",48.943409,1.535965,0,0,OIF:SA:81:14797,Europe/Paris,,OIF, +OIF:SP:81:15686,1,"Gare Bréval",48.943489,1.542527,0,0,OIF:SA:8738162,Europe/Paris,,OIF, +OIF:SP:81:15688,1,"La Butte 2",48.948754,1.553171,0,0,OIF:SA:81:15688,Europe/Paris,,OIF, +OIF:SP:81:15689,1,"La Butte 2",48.948935,1.553346,0,0,OIF:SA:81:15688,Europe/Paris,,OIF, +OIF:SP:81:15690,1,"La Gamacherie",48.973788,1.569051,0,0,OIF:SA:81:14801,Europe/Paris,,OIF, +OIF:SP:81:15691,1,"La Justice",48.958307,1.536854,0,0,OIF:SA:81:14761,Europe/Paris,,OIF, +OIF:SP:81:15693,1,"La Scellée",48.960541,1.533626,0,0,OIF:SA:81:14794,Europe/Paris,,OIF, +OIF:SP:81:15694,1,"Le Hamel",48.954129,1.535581,0,0,OIF:SA:68:41,Europe/Paris,,OIF, +OIF:SP:81:15695,1,"Les Devins",48.963031,1.55118,0,0,OIF:SA:81:14759,Europe/Paris,,OIF, +OIF:SP:81:15697,1,"Les Mulottes",48.968962,1.566242,0,0,OIF:SA:81:14802,Europe/Paris,,OIF, +OIF:SP:81:15698,1,"Pharmacie",48.943931,1.534634,0,0,OIF:SA:81:15698,Europe/Paris,,OIF, +OIF:SP:81:15699,1,"Place du Tranchant",48.943931,1.534634,0,0,OIF:SA:81:14805,Europe/Paris,,OIF, +OIF:SP:81:15700,1,"Thiron",48.966047,1.557591,0,0,OIF:SA:81:14757,Europe/Paris,,OIF, +OIF:SP:81:15701,1,"Vert Village",48.944235,1.541165,0,0,OIF:SA:81:14837,Europe/Paris,,OIF, +OIF:SP:81:15702,1,"La Butte 1",48.952344,1.56069,0,0,OIF:SA:81:15702,Europe/Paris,,OIF, +OIF:SP:81:15703,1,"La Butte 1",48.952534,1.560837,0,0,OIF:SA:81:15702,Europe/Paris,,OIF, +OIF:SP:81:15704,1,"Petite Gamacherie",48.97434,1.562694,0,0,OIF:SA:81:15704,Europe/Paris,,OIF, +OIF:SP:81:15705,1,"Petite Gamacherie",48.97434,1.562694,0,0,OIF:SA:81:15704,Europe/Paris,,OIF, +OIF:SP:81:15706,1,"Préfecture RER",49.035046,2.082476,0,0,OIF:SA:8738190,Europe/Paris,,OIF, +OIF:SP:81:15707,1,"Préfecture RER",49.035172,2.082598,0,0,OIF:SA:8738190,Europe/Paris,,OIF, +OIF:SP:81:15708,1,"Brasseuil",48.94933,1.697923,0,0,OIF:SA:81:15451,Europe/Paris,,OIF, +OIF:SP:81:15709,1,"Auffreville",48.956246,1.707254,0,0,OIF:SA:81:15449,Europe/Paris,,OIF, +OIF:SP:81:15710,1,"Les Guinets",49.013001,1.559861,0,0,OIF:SA:81:15710,Europe/Paris,,OIF, +OIF:SP:81:15711,1,"Les Guinets",49.013108,1.559805,0,0,OIF:SA:81:15710,Europe/Paris,,OIF, +OIF:SP:81:15712,1,"Gamelines",48.990779,1.676681,0,0,OIF:SA:81:15712,Europe/Paris,,OIF, +OIF:SP:81:15713,1,"Saint-Christophe RER",49.049692,2.035676,0,0,OIF:SA:8738249,Europe/Paris,,OIF, +OIF:SP:81:15714,1,"Saint-Christophe RER",49.049772,2.03521,0,0,OIF:SA:8738249,Europe/Paris,,OIF, +OIF:SP:81:15715,1,"Clos du Rame",48.96352,1.650959,0,0,OIF:SA:81:15665,Europe/Paris,,OIF, +OIF:SP:81:15718,1,"Haussepied",48.949738,1.627031,0,0,OIF:SA:81:15669,Europe/Paris,,OIF, +OIF:SP:81:15719,1,"Mairie",48.926488,1.648545,0,0,OIF:SA:81:14745,Europe/Paris,,OIF, +OIF:SP:81:15721,1,"Moulin à Vent",48.890005,1.568507,0,0,OIF:SA:81:15664,Europe/Paris,,OIF, +OIF:SP:81:15723,1,"Vallée des Prés",49.037809,1.59467,0,0,OIF:SA:81:15723,Europe/Paris,,OIF, +OIF:SP:81:15725,1,"Centre",48.791553,1.600098,0,0,OIF:SA:81:15725,Europe/Paris,,OIF, +OIF:SP:81:15726,1,"Centre",48.791535,1.600098,0,0,OIF:SA:81:15725,Europe/Paris,,OIF, +OIF:SP:81:15727,1,"Mairie",48.974759,1.648749,0,0,OIF:SA:81:15727,Europe/Paris,,OIF, +OIF:SP:81:15728,1,"Tasses",49.024189,1.516771,0,0,OIF:SA:81:15728,Europe/Paris,,OIF, +OIF:SP:81:15729,1,"Tasses",49.024141,1.516416,0,0,OIF:SA:81:15728,Europe/Paris,,OIF, +OIF:SP:81:15730,1,"Abri Bus",48.938162,1.606086,0,0,OIF:SA:81:14747,Europe/Paris,,OIF, +OIF:SP:81:15732,1,"Fortelle",48.931654,1.580042,0,0,OIF:SA:81:14785,Europe/Paris,,OIF, +OIF:SP:81:15733,1,"Heurteloup",48.900942,1.582468,0,0,OIF:SA:81:14734,Europe/Paris,,OIF, +OIF:SP:81:15734,1,"Mirbel Moulin d'Haut",48.920651,1.555928,0,0,OIF:SA:81:14733,Europe/Paris,,OIF, +OIF:SP:81:15735,1,"Petit Heurteloup",48.903236,1.575768,0,0,OIF:SA:81:14736,Europe/Paris,,OIF, +OIF:SP:81:15736,1,"Cytises",48.971221,1.6828,0,0,OIF:SA:81:15736,Europe/Paris,,OIF, +OIF:SP:81:15737,1,"Fontenay Auchan",48.978763,1.686405,0,0,OIF:SA:81:15737,Europe/Paris,,OIF, +OIF:SP:81:15738,1,"Ormes",48.974762,1.682701,0,0,OIF:SA:81:15738,Europe/Paris,,OIF, +OIF:SP:81:15739,1,"Tilleuls",48.977212,1.685523,0,0,OIF:SA:81:15739,Europe/Paris,,OIF, +OIF:SP:81:15740,1,"Bléry",48.966144,1.596681,0,0,OIF:SA:81:15670,Europe/Paris,,OIF, +OIF:SP:81:15741,1,"Bocquets",48.962056,1.598405,0,0,OIF:SA:81:14771,Europe/Paris,,OIF, +OIF:SP:81:15742,1,"Démonderie",48.955821,1.5944,0,0,OIF:SA:81:14767,Europe/Paris,,OIF, +OIF:SP:81:15743,1,"Gâts",48.96217,1.593613,0,0,OIF:SA:81:14769,Europe/Paris,,OIF, +OIF:SP:81:15744,1,"Mairie",48.966786,1.601777,0,0,OIF:SA:81:14773,Europe/Paris,,OIF, +OIF:SP:81:15745,1,"Jardinerie",49.036817,1.62511,0,0,OIF:SA:81:15745,Europe/Paris,,OIF, +OIF:SP:81:15746,1,"Jardinerie",49.036737,1.625207,0,0,OIF:SA:81:15745,Europe/Paris,,OIF, +OIF:SP:81:15749,1,"Boulevard des Cygnes",48.997577,1.714235,0,0,OIF:SA:81:15749,Europe/Paris,,OIF, +OIF:SP:81:15750,1,"Boulevard des Cygnes",48.997513,1.714072,0,0,OIF:SA:81:15749,Europe/Paris,,OIF, +OIF:SP:81:15753,1,"Braunstein",48.997028,1.707194,0,0,OIF:SA:81:15753,Europe/Paris,,OIF, +OIF:SP:81:15754,1,"Braunstein",48.996964,1.707113,0,0,OIF:SA:81:15753,Europe/Paris,,OIF, +OIF:SP:81:15755,1,"Charcot",49.001965,1.687765,0,0,OIF:SA:81:15755,Europe/Paris,,OIF, +OIF:SP:81:15756,1,"Charcot",49.001504,1.687293,0,0,OIF:SA:81:15755,Europe/Paris,,OIF, +OIF:SP:81:15761,1,"Général de Gaulle",48.99636,1.680024,0,0,OIF:SA:81:15761,Europe/Paris,,OIF, +OIF:SP:81:15762,1,"Général de Gaulle",48.996681,1.679514,0,0,OIF:SA:81:15761,Europe/Paris,,OIF, +OIF:SP:81:15763,1,"Aqualude",49.003991,1.678643,0,0,OIF:SA:81:15763,Europe/Paris,,OIF, +OIF:SP:81:15764,1,"Aqualude",49.0041,1.678874,0,0,OIF:SA:81:15763,Europe/Paris,,OIF, +OIF:SP:81:15768,1,"Fragonnard",49.00401,1.682016,0,0,OIF:SA:81:15768,Europe/Paris,,OIF, +OIF:SP:81:15769,1,"Fragonnard",49.00387,1.682824,0,0,OIF:SA:81:15768,Europe/Paris,,OIF, +OIF:SP:81:15770,1,"Gare Quai 12",48.989027,1.705079,0,0,OIF:SA:8738150,Europe/Paris,,OIF, +OIF:SP:81:15772,1,"Gare Quai 3",48.990261,1.702196,0,0,OIF:SA:8738150,Europe/Paris,,OIF, +OIF:SP:81:15773,1,"Gare Quai 6",48.990431,1.702003,0,0,OIF:SA:8738150,Europe/Paris,,OIF, +OIF:SP:81:15774,1,"Garennes",49.002825,1.692167,0,0,OIF:SA:81:15774,Europe/Paris,,OIF, +OIF:SP:81:15775,1,"Garennes",49.002718,1.692318,0,0,OIF:SA:81:15774,Europe/Paris,,OIF, +OIF:SP:81:15778,1,"Godeau",49.003618,1.684262,0,0,OIF:SA:81:15778,Europe/Paris,,OIF, +OIF:SP:81:15779,1,"Godeau",49.003271,1.684894,0,0,OIF:SA:81:15778,Europe/Paris,,OIF, +OIF:SP:81:15780,1,"Hôpital",48.998724,1.676893,0,0,OIF:SA:81:15780,Europe/Paris,,OIF, +OIF:SP:81:15781,1,"Hôpital",48.998672,1.677276,0,0,OIF:SA:81:15780,Europe/Paris,,OIF, +OIF:SP:81:15782,1,"Mozart",48.999028,1.681424,0,0,OIF:SA:81:15782,Europe/Paris,,OIF, +OIF:SP:81:15783,1,"Mozart",48.998912,1.681658,0,0,OIF:SA:81:15782,Europe/Paris,,OIF, +OIF:SP:81:15784,1,"Place de l'Europe",48.983272,1.716387,0,0,OIF:SA:8738159,Europe/Paris,,OIF, +OIF:SP:81:15786,1,"Résidence du Lac",48.999949,1.702241,0,0,OIF:SA:81:15786,Europe/Paris,,OIF, +OIF:SP:81:15787,1,"Résidence du Lac",48.999111,1.703454,0,0,OIF:SA:81:15786,Europe/Paris,,OIF, +OIF:SP:81:15788,1,"Division Leclerc",48.989378,1.710264,0,0,OIF:SA:81:15788,Europe/Paris,,OIF, +OIF:SP:81:15790,1,"Route de Buchelay",48.995747,1.687803,0,0,OIF:SA:81:15790,Europe/Paris,,OIF, +OIF:SP:81:15791,1,"Route de Buchelay",48.996049,1.687307,0,0,OIF:SA:81:15790,Europe/Paris,,OIF, +OIF:SP:81:15792,1,"Sainte-Anne",49.001172,1.697323,0,0,OIF:SA:81:15792,Europe/Paris,,OIF, +OIF:SP:81:15793,1,"Sainte-Anne",49.001082,1.697297,0,0,OIF:SA:81:15792,Europe/Paris,,OIF, +OIF:SP:81:15794,1,"Tabu",48.997054,1.708696,0,0,OIF:SA:81:15794,Europe/Paris,,OIF, +OIF:SP:81:15795,1,"Tabu",48.996964,1.708765,0,0,OIF:SA:81:15794,Europe/Paris,,OIF, +OIF:SP:81:15796,1,"Bates",48.980516,1.704965,0,0,OIF:SA:81:15796,Europe/Paris,,OIF, +OIF:SP:81:15797,1,"Bates",48.980515,1.704733,0,0,OIF:SA:81:15796,Europe/Paris,,OIF, +OIF:SP:81:15802,1,"Chantereine",48.978146,1.724435,0,0,OIF:SA:81:15802,Europe/Paris,,OIF, +OIF:SP:81:15809,1,"Mateau",48.975031,1.718001,0,0,OIF:SA:50:14542,Europe/Paris,,OIF, +OIF:SP:81:15810,1,"Mateau",48.974776,1.717499,0,0,OIF:SA:50:14542,Europe/Paris,,OIF, +OIF:SP:81:15813,1,"Meuniers",48.983941,1.699994,0,0,OIF:SA:81:15813,Europe/Paris,,OIF, +OIF:SP:81:15814,1,"Meuniers",48.98387,1.700199,0,0,OIF:SA:81:15813,Europe/Paris,,OIF, +OIF:SP:81:15820,1,"Sacré Cœur",48.983866,1.707982,0,0,OIF:SA:81:14825,Europe/Paris,,OIF, +OIF:SP:81:15821,1,"Saint-Étienne",48.974158,1.712564,0,0,OIF:SA:81:15821,Europe/Paris,,OIF, +OIF:SP:81:15822,1,"Saint-Étienne",48.974158,1.712564,0,0,OIF:SA:81:15821,Europe/Paris,,OIF, +OIF:SP:81:15823,1,"Val Saint-Georges",48.982075,1.697341,0,0,OIF:SA:81:15823,Europe/Paris,,OIF, +OIF:SP:81:15824,1,"Val Saint-Georges",48.98176,1.697208,0,0,OIF:SA:81:15823,Europe/Paris,,OIF, +OIF:SP:81:15825,1,"Vallée",48.976284,1.715256,0,0,OIF:SA:50:14540,Europe/Paris,,OIF, +OIF:SP:81:15826,1,"Vallée",48.969945,1.718185,0,0,OIF:SA:50:14540,Europe/Paris,,OIF, +OIF:SP:81:15827,1,"Noue",48.90843,1.549309,0,0,OIF:SA:81:14738,Europe/Paris,,OIF, +OIF:SP:81:15828,1,"Lotissement",48.902549,1.554306,0,0,OIF:SA:81:15828,Europe/Paris,,OIF, +OIF:SP:81:15829,1,"Lotissement",48.902297,1.554269,0,0,OIF:SA:81:15828,Europe/Paris,,OIF, +OIF:SP:81:15830,1,"Bas",48.892739,1.631315,0,0,OIF:SA:81:14739,Europe/Paris,,OIF, +OIF:SP:81:15831,1,"Haut",48.893515,1.634876,0,0,OIF:SA:81:14741,Europe/Paris,,OIF, +OIF:SP:81:15832,1,"Coignet",48.926338,1.537921,0,0,OIF:SA:81:14792,Europe/Paris,,OIF, +OIF:SP:81:15833,1,"Couarde",48.928924,1.51127,0,0,OIF:SA:81:15833,Europe/Paris,,OIF, +OIF:SP:81:15834,1,"Église",48.93159,1.52514,0,0,OIF:SA:81:15834,Europe/Paris,,OIF, +OIF:SP:81:15835,1,"Haie Montaise",48.929146,1.550794,0,0,OIF:SA:81:14788,Europe/Paris,,OIF, +OIF:SP:81:15836,1,"Launay",48.933019,1.55064,0,0,OIF:SA:81:14790,Europe/Paris,,OIF, +OIF:SP:81:15837,1,"Loges",48.937609,1.52079,0,0,OIF:SA:81:14799,Europe/Paris,,OIF, +OIF:SP:81:15838,1,"Puce",48.942979,1.538742,0,0,OIF:SA:81:15668,Europe/Paris,,OIF, +OIF:SP:81:15839,1,"Gare RER de Neuville",49.014857,2.079843,0,0,OIF:SA:8733448,Europe/Paris,,OIF, +OIF:SP:81:15840,1,"Gare RER de Neuville",49.014911,2.079952,0,0,OIF:SA:8733448,Europe/Paris,,OIF, +OIF:SP:81:15842,1,"Apremont le Clos",48.981427,1.615223,0,0,OIF:SA:81:14849,Europe/Paris,,OIF, +OIF:SP:81:15843,1,"Carrefour Saint-Martin",48.964711,1.631671,0,0,OIF:SA:81:14845,Europe/Paris,,OIF, +OIF:SP:81:15844,1,"Cimetière",48.973141,1.622642,0,0,OIF:SA:81:15667,Europe/Paris,,OIF, +OIF:SP:81:15845,1,"Gaudimonts",48.961682,1.628642,0,0,OIF:SA:81:14833,Europe/Paris,,OIF, +OIF:SP:81:15846,1,"Mairie",48.965306,1.627391,0,0,OIF:SA:81:15666,Europe/Paris,,OIF, +OIF:SP:81:15848,1,"Gare RER Nord de Poissy",48.933291,2.039872,0,0,OIF:SA:8738657,Europe/Paris,,OIF, +OIF:SP:81:15849,1,"Parking Peugeot",48.941812,2.055226,0,0,OIF:SA:21:618,Europe/Paris,,OIF, +OIF:SP:81:15850,1,"Rosay",48.914581,1.680475,0,0,OIF:SA:81:15455,Europe/Paris,,OIF, +OIF:SP:81:15852,1,"Saint-Ger République",48.897886,2.093073,0,0,OIF:SA:8775809,Europe/Paris,,OIF, +OIF:SP:81:15854,1,"Mairie",48.956447,1.50791,0,0,OIF:SA:81:15854,Europe/Paris,,OIF, +OIF:SP:81:15855,1,"Place des Tilleuls",48.959723,1.509836,0,0,OIF:SA:81:15855,Europe/Paris,,OIF, +OIF:SP:81:15856,1,"Place Louise Henry",48.976588,1.539766,0,0,OIF:SA:68:121,Europe/Paris,,OIF, +OIF:SP:81:15857,1,"Pelleray",48.96586,1.537365,0,0,OIF:SA:81:14751,Europe/Paris,,OIF, +OIF:SP:81:15858,1,"Millerus la Croix",48.874346,1.564039,0,0,OIF:SA:81:14725,Europe/Paris,,OIF, +OIF:SP:81:15859,1,"Millerus la Ferme",48.873031,1.558077,0,0,OIF:SA:81:14720,Europe/Paris,,OIF, +OIF:SP:81:15860,1,"Saint-Laurent",48.882137,1.581992,0,0,OIF:SA:81:14727,Europe/Paris,,OIF, +OIF:SP:81:15862,1,"Rue du Clairet",48.946861,1.489166,0,0,OIF:SA:81:15862,Europe/Paris,,OIF, +OIF:SP:81:15863,1,"Gouget",49.048957,1.608606,0,0,OIF:SA:81:15863,Europe/Paris,,OIF, +OIF:SP:81:15864,1,"Gouget",49.048957,1.608606,0,0,OIF:SA:81:15863,Europe/Paris,,OIF, +OIF:SP:81:15865,1,"Marronniers",49.050314,1.611471,0,0,OIF:SA:81:15865,Europe/Paris,,OIF, +OIF:SP:81:15866,1,"Marronniers",49.050314,1.611471,0,0,OIF:SA:81:15865,Europe/Paris,,OIF, +OIF:SP:81:15867,1,"Champs Odés",48.993285,1.67486,0,0,OIF:SA:81:15867,Europe/Paris,,OIF, +OIF:SP:81:15868,1,"Champs Odés",48.993548,1.675348,0,0,OIF:SA:81:15867,Europe/Paris,,OIF, +OIF:SP:81:15869,1,"Mairie",48.980158,1.672133,0,0,OIF:SA:81:15869,Europe/Paris,,OIF, +OIF:SP:81:15870,1,"Mairie",48.98016,1.672543,0,0,OIF:SA:81:15869,Europe/Paris,,OIF, +OIF:SP:81:15871,1,"Aureines",48.979402,1.67684,0,0,OIF:SA:81:15871,Europe/Paris,,OIF, +OIF:SP:81:15872,1,"Aureines",48.9795,1.676661,0,0,OIF:SA:81:15871,Europe/Paris,,OIF, +OIF:SP:81:15874,1,"Poste",49.004828,1.910243,0,0,OIF:SA:21:378,Europe/Paris,,OIF, +OIF:SP:81:15875,1,"La Maladrerie",48.913887,2.021739,0,0,OIF:SA:23:450,Europe/Paris,,OIF, +OIF:SP:81:15876,1,"La Maladrerie",48.913888,2.022284,0,0,OIF:SA:23:450,Europe/Paris,,OIF, +OIF:SP:81:15877,1,"Leclerc",49.04757,1.606506,0,0,OIF:SA:81:15877,Europe/Paris,,OIF, +OIF:SP:81:15878,1,"Butte",48.966847,1.608765,0,0,OIF:SA:81:15878,Europe/Paris,,OIF, +OIF:SP:81:15879,1,"Butte",48.966847,1.608765,0,0,OIF:SA:81:15878,Europe/Paris,,OIF, +OIF:SP:81:15880,1,"Mare Nogris",48.934598,1.554299,0,0,OIF:SA:81:15880,Europe/Paris,,OIF, +OIF:SP:81:15881,1,"Mare Nogris",48.934598,1.554299,0,0,OIF:SA:81:15880,Europe/Paris,,OIF, +OIF:SP:81:15882,1,"Bossus",48.96252,1.537922,0,0,OIF:SA:68:39,Europe/Paris,,OIF, +OIF:SP:81:15883,1,"Bossus",48.963364,1.537745,0,0,OIF:SA:68:39,Europe/Paris,,OIF, +OIF:SP:81:15890,1,"École",49.029119,1.819425,0,0,OIF:SA:81:15890,Europe/Paris,,OIF, +OIF:SP:81:15891,1,"École",49.029101,1.819589,0,0,OIF:SA:81:15890,Europe/Paris,,OIF, +OIF:SP:81:15892,1,"Morvent",49.017617,1.567702,0,0,OIF:SA:81:15892,Europe/Paris,,OIF, +OIF:SP:81:15893,1,"Morvent",49.017709,1.568043,0,0,OIF:SA:81:15892,Europe/Paris,,OIF, +OIF:SP:81:15894,1,"Leclerc",49.04757,1.606506,0,0,OIF:SA:81:15877,Europe/Paris,,OIF, +OIF:SP:81:15895,1,"Place du Général de Gaulle",48.9858,1.810327,0,0,OIF:SA:81:15895,Europe/Paris,,OIF, +OIF:SP:81:15896,1,"Place du Général de Gaulle",48.985324,1.810441,0,0,OIF:SA:81:15895,Europe/Paris,,OIF, +OIF:SP:81:15897,1,"Gare Palissy",48.982641,1.80939,0,0,OIF:SA:8738156,Europe/Paris,,OIF, +OIF:SP:81:15898,1,"Gare Palissy",48.982578,1.809363,0,0,OIF:SA:8738156,Europe/Paris,,OIF, +OIF:SP:81:15899,1,"Senneville Place",48.942593,1.749154,0,0,OIF:SA:81:15899,Europe/Paris,,OIF, +OIF:SP:81:15900,1,"Senneville Place",48.942709,1.749139,0,0,OIF:SA:81:15899,Europe/Paris,,OIF, +OIF:SP:81:15901,1,"Wallon",48.986362,1.747892,0,0,OIF:SA:81:15901,Europe/Paris,,OIF, +OIF:SP:81:15902,1,"Wallon",48.986189,1.747512,0,0,OIF:SA:81:15901,Europe/Paris,,OIF, +OIF:SP:81:15903,1,"Route de Guitrancourt",48.990872,1.768065,0,0,OIF:SA:81:15903,Europe/Paris,,OIF, +OIF:SP:81:15904,1,"Route de Guitrancourt",48.990242,1.767894,0,0,OIF:SA:81:15903,Europe/Paris,,OIF, +OIF:SP:81:15905,1,"Limay Aristide Briand",48.999823,1.740527,0,0,OIF:SA:81:15905,Europe/Paris,,OIF, +OIF:SP:81:15906,1,"Limay Aristide Briand",49.000338,1.741027,0,0,OIF:SA:81:15905,Europe/Paris,,OIF, +OIF:SP:81:15907,1,"Mairie",48.978185,1.714577,0,0,OIF:SA:22:179,Europe/Paris,,OIF, +OIF:SP:81:15908,1,"Mairie",48.978482,1.714533,0,0,OIF:SA:22:179,Europe/Paris,,OIF, +OIF:SP:81:15909,1,"Lombardie",48.942721,1.736969,0,0,OIF:SA:81:15909,Europe/Paris,,OIF, +OIF:SP:81:15910,1,"Lombardie",48.942992,1.737212,0,0,OIF:SA:81:15909,Europe/Paris,,OIF, +OIF:SP:81:15911,1,"Saint-Martin",48.944213,1.735328,0,0,OIF:SA:81:15911,Europe/Paris,,OIF, +OIF:SP:81:15912,1,"Saint-Martin",48.945003,1.735156,0,0,OIF:SA:81:15911,Europe/Paris,,OIF, +OIF:SP:81:15913,1,"Tilleuls",48.951719,1.735582,0,0,OIF:SA:81:15913,Europe/Paris,,OIF, +OIF:SP:81:15914,1,"Tilleuls",48.951664,1.735378,0,0,OIF:SA:81:15913,Europe/Paris,,OIF, +OIF:SP:81:15915,1,"Plagne",48.96103,1.742926,0,0,OIF:SA:81:15915,Europe/Paris,,OIF, +OIF:SP:81:15916,1,"Plagne",48.961092,1.74283,0,0,OIF:SA:81:15915,Europe/Paris,,OIF, +OIF:SP:81:15917,1,"Technodes",48.962357,1.735199,0,0,OIF:SA:81:15917,Europe/Paris,,OIF, +OIF:SP:81:15918,1,"Technodes",48.962259,1.735228,0,0,OIF:SA:81:15917,Europe/Paris,,OIF, +OIF:SP:81:15919,1,"Cytises",48.961273,1.732305,0,0,OIF:SA:81:15919,Europe/Paris,,OIF, +OIF:SP:81:15920,1,"Cytises",48.961361,1.731813,0,0,OIF:SA:81:15919,Europe/Paris,,OIF, +OIF:SP:81:15921,1,"Convois",48.965698,1.731257,0,0,OIF:SA:81:15921,Europe/Paris,,OIF, +OIF:SP:81:15922,1,"Convois",48.964889,1.731198,0,0,OIF:SA:81:15921,Europe/Paris,,OIF, +OIF:SP:81:15923,1,"Castors",48.968919,1.730086,0,0,OIF:SA:81:15923,Europe/Paris,,OIF, +OIF:SP:81:15924,1,"Castors",48.969458,1.730012,0,0,OIF:SA:81:15923,Europe/Paris,,OIF, +OIF:SP:81:15925,1,"Clos Fours",48.971843,1.730666,0,0,OIF:SA:81:15925,Europe/Paris,,OIF, +OIF:SP:81:15926,1,"Clos Fours",48.971563,1.730451,0,0,OIF:SA:81:15925,Europe/Paris,,OIF, +OIF:SP:81:15927,1,"Maupomet",48.975567,1.731496,0,0,OIF:SA:81:15927,Europe/Paris,,OIF, +OIF:SP:81:15928,1,"Maupomet",48.975629,1.731345,0,0,OIF:SA:81:15927,Europe/Paris,,OIF, +OIF:SP:81:15929,1,"Vaucouleurs",48.979524,1.728392,0,0,OIF:SA:81:15929,Europe/Paris,,OIF, +OIF:SP:81:15930,1,"Vaucouleurs",48.979479,1.728351,0,0,OIF:SA:81:15929,Europe/Paris,,OIF, +OIF:SP:81:15931,1,"Tuilerie",48.980654,1.724446,0,0,OIF:SA:81:15931,Europe/Paris,,OIF, +OIF:SP:81:15932,1,"Tuilerie",48.980654,1.724446,0,0,OIF:SA:81:15931,Europe/Paris,,OIF, +OIF:SP:81:15933,1,"Herberts",48.978837,1.722406,0,0,OIF:SA:81:15933,Europe/Paris,,OIF, +OIF:SP:81:15934,1,"Herberts",48.978837,1.722406,0,0,OIF:SA:81:15933,Europe/Paris,,OIF, +OIF:SP:81:15935,1,"Carnot",48.98708,1.709077,0,0,OIF:SA:81:15935,Europe/Paris,,OIF, +OIF:SP:81:15936,1,"Carnot",48.987133,1.708789,0,0,OIF:SA:81:15935,Europe/Paris,,OIF, +OIF:SP:81:15937,1,"Gare Quai 9",48.989498,1.704077,0,0,OIF:SA:81:15937,Europe/Paris,,OIF, +OIF:SP:81:15938,1,"Gare Quai 9",48.989498,1.704077,0,0,OIF:SA:81:15937,Europe/Paris,,OIF, +OIF:SP:81:15939,1,"Maison des Syndicats",48.977433,1.730805,0,0,OIF:SA:81:15939,Europe/Paris,,OIF, +OIF:SP:81:15940,1,"Gare",48.99697,1.631012,0,0,OIF:SA:8741588,Europe/Paris,,OIF, +OIF:SP:81:15941,1,"Gare",48.997138,1.629098,0,0,OIF:SA:8741588,Europe/Paris,,OIF, +OIF:SP:81:15942,1,"Pont Chapart",48.995774,1.635413,0,0,OIF:SA:81:15942,Europe/Paris,,OIF, +OIF:SP:81:15943,1,"Pont Chapart",48.995798,1.634962,0,0,OIF:SA:81:15942,Europe/Paris,,OIF, +OIF:SP:81:15944,1,"Croix Brisée",48.993017,1.640326,0,0,OIF:SA:81:15944,Europe/Paris,,OIF, +OIF:SP:81:15945,1,"Croix Brisée",48.993107,1.64042,0,0,OIF:SA:81:15944,Europe/Paris,,OIF, +OIF:SP:81:15946,1,"Bois Moulin",48.997796,1.646339,0,0,OIF:SA:81:15946,Europe/Paris,,OIF, +OIF:SP:81:15947,1,"Bois Moulin",48.998165,1.646279,0,0,OIF:SA:81:15946,Europe/Paris,,OIF, +OIF:SP:81:15948,1,"Henri IV",49.000857,1.628788,0,0,OIF:SA:81:15948,Europe/Paris,,OIF, +OIF:SP:81:15949,1,"Henri IV",49.001165,1.629275,0,0,OIF:SA:81:15948,Europe/Paris,,OIF, +OIF:SP:81:15950,1,"Mûriers 1",49.000176,1.623156,0,0,OIF:SA:81:15950,Europe/Paris,,OIF, +OIF:SP:81:15951,1,"Mûriers 1",49.000015,1.623295,0,0,OIF:SA:81:15950,Europe/Paris,,OIF, +OIF:SP:81:15952,1,"Grande Maison 1",49.001423,1.621186,0,0,OIF:SA:81:15952,Europe/Paris,,OIF, +OIF:SP:81:15953,1,"Grande Maison 1",49.001513,1.621198,0,0,OIF:SA:81:15952,Europe/Paris,,OIF, +OIF:SP:81:15954,1,"Fauvettes",48.997343,1.619726,0,0,OIF:SA:81:15954,Europe/Paris,,OIF, +OIF:SP:81:15955,1,"Fauvettes",48.99756,1.619873,0,0,OIF:SA:81:15954,Europe/Paris,,OIF, +OIF:SP:81:15956,1,"Mésanges",48.999771,1.619952,0,0,OIF:SA:81:15956,Europe/Paris,,OIF, +OIF:SP:81:15957,1,"Mésanges",48.999761,1.619815,0,0,OIF:SA:81:15956,Europe/Paris,,OIF, +OIF:SP:81:15958,1,"Grande Maison 2",49.001423,1.621186,0,0,OIF:SA:81:15958,Europe/Paris,,OIF, +OIF:SP:81:15959,1,"Grande Maison 2",49.001513,1.621198,0,0,OIF:SA:81:15958,Europe/Paris,,OIF, +OIF:SP:81:15960,1,"Mûriers 2",49.000176,1.623156,0,0,OIF:SA:81:15960,Europe/Paris,,OIF, +OIF:SP:81:15961,1,"Mûriers 2",49.000015,1.623295,0,0,OIF:SA:81:15960,Europe/Paris,,OIF, +OIF:SP:81:15962,1,"Pasteur",48.998299,1.626282,0,0,OIF:SA:81:15962,Europe/Paris,,OIF, +OIF:SP:81:15963,1,"Pasteur",48.998352,1.626145,0,0,OIF:SA:81:15962,Europe/Paris,,OIF, +OIF:SP:81:15964,1,"Val Fleuri",48.995858,1.623926,0,0,OIF:SA:81:15964,Europe/Paris,,OIF, +OIF:SP:81:15965,1,"Val Fleuri",48.995911,1.623788,0,0,OIF:SA:81:15964,Europe/Paris,,OIF, +OIF:SP:81:15966,1,"Lommoye",48.995061,1.628867,0,0,OIF:SA:81:15966,Europe/Paris,,OIF, +OIF:SP:81:15967,1,"Lommoye",48.995142,1.628934,0,0,OIF:SA:81:15966,Europe/Paris,,OIF, +OIF:SP:81:15972,1,"Lecoq",48.996784,1.724255,0,0,OIF:SA:81:15972,Europe/Paris,,OIF, +OIF:SP:81:15973,1,"Lecoq",48.996777,1.724706,0,0,OIF:SA:81:15972,Europe/Paris,,OIF, +OIF:SP:81:15974,1,"Halage",48.999836,1.721774,0,0,OIF:SA:81:15974,Europe/Paris,,OIF, +OIF:SP:81:15975,1,"Halage",48.999775,1.722226,0,0,OIF:SA:81:15974,Europe/Paris,,OIF, +OIF:SP:81:15976,1,"Quai aux Vins",48.99415,1.725871,0,0,OIF:SA:81:15976,Europe/Paris,,OIF, +OIF:SP:81:176,1,"Marcilly-sur-Eure",48.825491,1.345124,0,0,OIF:SA:81:176,Europe/Paris,,OIF, +OIF:SP:81:177,1,"Marcilly-sur-Eure",48.825491,1.345124,0,0,OIF:SA:81:176,Europe/Paris,,OIF, +OIF:SP:81:194,1,"D 143",48.861335,1.400508,0,0,OIF:SA:81:194,Europe/Paris,,OIF, +OIF:SP:81:195,1,"D 143",48.861379,1.400303,0,0,OIF:SA:81:194,Europe/Paris,,OIF, +OIF:SP:81:198,1,"Gambetta",48.867151,1.419109,0,0,OIF:SA:81:198,Europe/Paris,,OIF, +OIF:SP:81:199,1,"Gambetta",48.867196,1.419054,0,0,OIF:SA:81:198,Europe/Paris,,OIF, +OIF:SP:81:253,1,"Rue du Clairet",48.946797,1.48914,0,0,OIF:SA:81:15862,Europe/Paris,,OIF, +OIF:SP:81:255,1,"Anet Château",48.858084,1.439402,0,0,OIF:SA:81:255,Europe/Paris,,OIF, +OIF:SP:81:256,1,"Château",48.858218,1.439182,0,0,OIF:SA:81:255,Europe/Paris,,OIF, +OIF:SP:81:257,1,"Le Pérou",48.860765,1.449272,0,0,OIF:SA:81:257,Europe/Paris,,OIF, +OIF:SP:81:258,1,"Le Pérou",48.860798,1.448877,0,0,OIF:SA:81:257,Europe/Paris,,OIF, +OIF:SP:81:259,1,"Lycée",48.847596,1.433523,0,0,OIF:SA:81:259,Europe/Paris,,OIF, +OIF:SP:81:260,1,"Lycée",48.847596,1.433523,0,0,OIF:SA:81:259,Europe/Paris,,OIF, +OIF:SP:81:261,1,"Gâtines Rouges",48.880958,1.508777,0,0,OIF:SA:81:261,Europe/Paris,,OIF, +OIF:SP:81:262,1,"Gâtines Rouges",48.881083,1.50868,0,0,OIF:SA:81:261,Europe/Paris,,OIF, +OIF:SP:81:263,1,"Châtelet",48.749565,1.387095,0,0,OIF:SA:81:263,Europe/Paris,,OIF, +OIF:SP:81:264,1,"Châtelet",48.749636,1.386971,0,0,OIF:SA:81:263,Europe/Paris,,OIF, +OIF:SP:81:265,1,"Degas",48.731641,1.384895,0,0,OIF:SA:81:265,Europe/Paris,,OIF, +OIF:SP:81:266,1,"Degas",48.731524,1.38487,0,0,OIF:SA:81:265,Europe/Paris,,OIF, +OIF:SP:81:267,1,"Gare Routière",48.732139,1.371909,0,0,OIF:SA:81:267,Europe/Paris,,OIF, +OIF:SP:81:268,1,"Gare Routière",48.732139,1.371909,0,0,OIF:SA:81:267,Europe/Paris,,OIF, +OIF:SP:81:269,1,"Gué aux Ânes",48.743588,1.390507,0,0,OIF:SA:81:269,Europe/Paris,,OIF, +OIF:SP:81:270,1,"Gué aux Ânes",48.743588,1.390507,0,0,OIF:SA:81:269,Europe/Paris,,OIF, +OIF:SP:81:271,1,"Jules Ferry",48.726758,1.376778,0,0,OIF:SA:81:271,Europe/Paris,,OIF, +OIF:SP:81:272,1,"Jules Ferry",48.726919,1.37668,0,0,OIF:SA:81:271,Europe/Paris,,OIF, +OIF:SP:81:273,1,"La Sablonnière",48.744708,1.357961,0,0,OIF:SA:81:273,Europe/Paris,,OIF, +OIF:SP:81:274,1,"La Sablonnière",48.744567,1.358222,0,0,OIF:SA:81:273,Europe/Paris,,OIF, +OIF:SP:81:275,1,"Les Bâtes",48.74266,1.346148,0,0,OIF:SA:81:275,Europe/Paris,,OIF, +OIF:SP:81:276,1,"Les Bâtes",48.742792,1.345833,0,0,OIF:SA:81:275,Europe/Paris,,OIF, +OIF:SP:81:277,1,"Lièvre d'Or",48.735974,1.388281,0,0,OIF:SA:81:277,Europe/Paris,,OIF, +OIF:SP:81:278,1,"Le Lièvre d'Or",48.735767,1.388258,0,0,OIF:SA:81:277,Europe/Paris,,OIF, +OIF:SP:81:279,1,"Notre-Dame des Rochelles",48.725308,1.368666,0,0,OIF:SA:81:279,Europe/Paris,,OIF, +OIF:SP:81:280,1,"Notre-Dame des Rochelles",48.725038,1.368644,0,0,OIF:SA:81:279,Europe/Paris,,OIF, +OIF:SP:81:281,1,"Oriels",48.738515,1.391238,0,0,OIF:SA:81:281,Europe/Paris,,OIF, +OIF:SP:81:282,1,"Oriels",48.738392,1.390466,0,0,OIF:SA:81:281,Europe/Paris,,OIF, +OIF:SP:81:283,1,"Robert Schuman",48.727901,1.381431,0,0,OIF:SA:81:283,Europe/Paris,,OIF, +OIF:SP:81:284,1,"Robert Schuman",48.728071,1.381333,0,0,OIF:SA:81:283,Europe/Paris,,OIF, +OIF:SP:81:285,1,"Place de l'Abreuvoir",48.896615,1.533745,0,0,OIF:SA:81:285,Europe/Paris,,OIF, +OIF:SP:81:286,1,"Place de l'Abreuvoir",48.896529,1.533037,0,0,OIF:SA:81:285,Europe/Paris,,OIF, +OIF:SP:81:287,1,"Mairie",48.867296,1.472089,0,0,OIF:SA:81:287,Europe/Paris,,OIF, +OIF:SP:81:288,1,"Mairie",48.867296,1.472089,0,0,OIF:SA:81:287,Europe/Paris,,OIF, +OIF:SP:81:52,1,"Mairie",48.846088,1.374187,0,0,OIF:SA:81:52,Europe/Paris,,OIF, +OIF:SP:81:53,1,"Mairie",48.846294,1.374047,0,0,OIF:SA:81:52,Europe/Paris,,OIF, +OIF:SP:81:54,1,"Tennis",48.849903,1.381307,0,0,OIF:SA:81:54,Europe/Paris,,OIF, +OIF:SP:81:55,1,"Tennis",48.849881,1.380817,0,0,OIF:SA:81:54,Europe/Paris,,OIF, +OIF:SP:81:5687,1,"Gare Bréval",48.943344,1.542352,0,0,OIF:SA:8738162,Europe/Paris,,OIF, +OIF:SP:81:5695,1,"Pharmacie",48.943931,1.534634,0,0,OIF:SA:81:15698,Europe/Paris,,OIF, +OIF:SP:81:5697,1,"Rue Nationale",49.030988,1.819597,0,0,OIF:SA:81:5697,Europe/Paris,,OIF, +OIF:SP:81:5698,1,"Rue Nationale",49.031775,1.818687,0,0,OIF:SA:81:5697,Europe/Paris,,OIF, +OIF:SP:81:5754,1,"Gamelines",48.990088,1.678492,0,0,OIF:SA:81:15712,Europe/Paris,,OIF, +OIF:SP:81:6002,1,"Grande Rue",48.904021,1.619819,0,0,OIF:SA:81:6002,Europe/Paris,,OIF, +OIF:SP:81:6003,1,"Grande Rue",48.904021,1.619819,0,0,OIF:SA:81:6002,Europe/Paris,,OIF, +OIF:SP:81:6095,1,"Gare d'Epône Mézières",48.963135,1.808319,0,0,OIF:SA:8738676,Europe/Paris,,OIF, +OIF:SP:81:6096,1,"Gare d'Epône Mézières",48.963072,1.80832,0,0,OIF:SA:8738676,Europe/Paris,,OIF, +OIF:SP:81:6117,1,"Mairie",48.944098,1.642894,0,0,OIF:SA:81:6117,Europe/Paris,,OIF, +OIF:SP:81:6118,1,"Mairie",48.944322,1.642823,0,0,OIF:SA:81:6117,Europe/Paris,,OIF, +OIF:SP:81:6129,1,"Mairie",48.890733,1.578351,0,0,OIF:SA:81:6129,Europe/Paris,,OIF, +OIF:SP:81:6130,1,"Mairie",48.890126,1.577664,0,0,OIF:SA:81:6129,Europe/Paris,,OIF, +OIF:SP:81:6133,1,"Dennemont Carrefour Saint-Martin",49.018577,1.697026,0,0,OIF:SA:81:6133,Europe/Paris,,OIF, +OIF:SP:81:6134,1,"Dennemont Carrefour Saint-Martin",49.018722,1.69716,0,0,OIF:SA:81:6133,Europe/Paris,,OIF, +OIF:SP:81:6135,1,"Dennemont Hôpital",49.011802,1.69715,0,0,OIF:SA:81:6135,Europe/Paris,,OIF, +OIF:SP:81:6136,1,"Dennemont Hôpital",49.011802,1.69715,0,0,OIF:SA:81:6135,Europe/Paris,,OIF, +OIF:SP:81:6137,1,"Dennemont Roy René",49.010845,1.703078,0,0,OIF:SA:81:6137,Europe/Paris,,OIF, +OIF:SP:81:6138,1,"Dennemont Roy René",49.010845,1.703078,0,0,OIF:SA:81:6137,Europe/Paris,,OIF, +OIF:SP:81:6139,1,"Follainville Diderot",49.017867,1.713977,0,0,OIF:SA:81:6139,Europe/Paris,,OIF, +OIF:SP:81:6140,1,"Follainville Diderot",49.017867,1.713977,0,0,OIF:SA:81:6139,Europe/Paris,,OIF, +OIF:SP:81:6141,1,"Follainville Lavoir",49.020137,1.713184,0,0,OIF:SA:81:6141,Europe/Paris,,OIF, +OIF:SP:81:6142,1,"Follainville Lavoir",49.020155,1.713307,0,0,OIF:SA:81:6141,Europe/Paris,,OIF, +OIF:SP:81:6186,1,"Église",49.027265,1.750924,0,0,OIF:SA:81:6186,Europe/Paris,,OIF, +OIF:SP:81:6187,1,"Église",49.027147,1.750707,0,0,OIF:SA:81:6186,Europe/Paris,,OIF, +OIF:SP:81:6188,1,"Dîme",49.021214,1.759451,0,0,OIF:SA:81:6188,Europe/Paris,,OIF, +OIF:SP:81:6189,1,"Dîme",49.021214,1.759451,0,0,OIF:SA:81:6188,Europe/Paris,,OIF, +OIF:SP:81:6190,1,"Mairie",49.024596,1.756448,0,0,OIF:SA:81:6190,Europe/Paris,,OIF, +OIF:SP:81:6191,1,"Mairie",49.024696,1.756515,0,0,OIF:SA:81:6190,Europe/Paris,,OIF, +OIF:SP:81:6248,1,"Hanneucourt",48.992727,1.824445,0,0,OIF:SA:81:6248,Europe/Paris,,OIF, +OIF:SP:81:6249,1,"Hanneucourt",48.99261,1.824351,0,0,OIF:SA:81:6248,Europe/Paris,,OIF, +OIF:SP:81:6250,1,"Jean Jaurès",48.974937,1.804677,0,0,OIF:SA:23:210,Europe/Paris,,OIF, +OIF:SP:81:6251,1,"Jean Jaurès",48.974767,1.802917,0,0,OIF:SA:23:210,Europe/Paris,,OIF, +OIF:SP:81:6252,1,"Jean Raty",48.988196,1.801604,0,0,OIF:SA:81:6252,Europe/Paris,,OIF, +OIF:SP:81:6254,1,"Maryse",48.991142,1.801164,0,0,OIF:SA:81:6254,Europe/Paris,,OIF, +OIF:SP:81:6255,1,"Maryse",48.991161,1.801355,0,0,OIF:SA:81:6254,Europe/Paris,,OIF, +OIF:SP:81:6256,1,"Gargenville Gare",48.984864,1.812112,0,0,OIF:SA:8738156,Europe/Paris,,OIF, +OIF:SP:81:6257,1,"Gargenville Gare",48.984738,1.812167,0,0,OIF:SA:8738156,Europe/Paris,,OIF, +OIF:SP:81:6260,1,"Pierre Brossolette",48.978963,1.810806,0,0,OIF:SA:81:6260,Europe/Paris,,OIF, +OIF:SP:81:6261,1,"Pierre Brossolette",48.980149,1.810739,0,0,OIF:SA:81:6260,Europe/Paris,,OIF, +OIF:SP:81:6264,1,"Place de la Pointe",48.980688,1.810652,0,0,OIF:SA:81:6264,Europe/Paris,,OIF, +OIF:SP:81:6265,1,"Place de la Pointe",48.980877,1.8108,0,0,OIF:SA:81:6264,Europe/Paris,,OIF, +OIF:SP:81:6270,1,"Pugno",48.993081,1.823226,0,0,OIF:SA:81:6270,Europe/Paris,,OIF, +OIF:SP:81:6271,1,"Pugno",48.992964,1.823159,0,0,OIF:SA:81:6270,Europe/Paris,,OIF, +OIF:SP:81:6273,1,"Sablons",48.989371,1.801155,0,0,OIF:SA:81:6273,Europe/Paris,,OIF, +OIF:SP:81:6274,1,"Sablons",48.98939,1.801346,0,0,OIF:SA:81:6273,Europe/Paris,,OIF, +OIF:SP:81:6275,1,"Poste",48.98908,1.812465,0,0,OIF:SA:81:6275,Europe/Paris,,OIF, +OIF:SP:81:6276,1,"Poste",48.989099,1.812628,0,0,OIF:SA:81:6275,Europe/Paris,,OIF, +OIF:SP:81:6277,1,"Victor Hugo",48.976433,1.809699,0,0,OIF:SA:81:6277,Europe/Paris,,OIF, +OIF:SP:81:6278,1,"Victor Hugo",48.976461,1.810094,0,0,OIF:SA:81:6277,Europe/Paris,,OIF, +OIF:SP:81:6287,1,"Mairie",49.012086,1.637241,0,0,OIF:SA:81:6287,Europe/Paris,,OIF, +OIF:SP:81:6288,1,"Mairie",49.012086,1.637241,0,0,OIF:SA:81:6287,Europe/Paris,,OIF, +OIF:SP:81:6308,1,"Mairie",49.008097,1.777206,0,0,OIF:SA:81:15386,Europe/Paris,,OIF, +OIF:SP:81:6419,1,"Fourche",49.011657,1.902482,0,0,OIF:SA:81:6419,Europe/Paris,,OIF, +OIF:SP:81:6420,1,"Fourche",49.013582,1.900772,0,0,OIF:SA:81:6419,Europe/Paris,,OIF, +OIF:SP:81:6427,1,"Bardeaux",48.991926,1.799708,0,0,OIF:SA:81:6427,Europe/Paris,,OIF, +OIF:SP:81:6428,1,"Bardeaux",48.992052,1.799734,0,0,OIF:SA:81:6427,Europe/Paris,,OIF, +OIF:SP:81:6431,1,"Carrefour",48.991788,1.794889,0,0,OIF:SA:81:6431,Europe/Paris,,OIF, +OIF:SP:81:6432,1,"Carrefour",48.991769,1.794671,0,0,OIF:SA:81:6431,Europe/Paris,,OIF, +OIF:SP:81:6433,1,"Charvets",48.992605,1.798745,0,0,OIF:SA:81:6433,Europe/Paris,,OIF, +OIF:SP:81:6434,1,"Charvets",48.992624,1.798964,0,0,OIF:SA:81:6433,Europe/Paris,,OIF, +OIF:SP:81:6435,1,"Cimetière",48.993675,1.794897,0,0,OIF:SA:81:6435,Europe/Paris,,OIF, +OIF:SP:81:6436,1,"Cimetière",48.993818,1.794841,0,0,OIF:SA:81:6435,Europe/Paris,,OIF, +OIF:SP:81:6439,1,"Dufour",48.982093,1.787495,0,0,OIF:SA:81:6439,Europe/Paris,,OIF, +OIF:SP:81:6440,1,"Dufour",48.981173,1.78674,0,0,OIF:SA:81:6439,Europe/Paris,,OIF, +OIF:SP:81:6441,1,"Frileuses",48.984814,1.789105,0,0,OIF:SA:23:220,Europe/Paris,,OIF, +OIF:SP:81:6442,1,"Frileuses",48.984047,1.78843,0,0,OIF:SA:23:220,Europe/Paris,,OIF, +OIF:SP:81:6445,1,"Grille du Château",48.98789,1.799532,0,0,OIF:SA:23:218,Europe/Paris,,OIF, +OIF:SP:81:6446,1,"Grille du Château",48.987755,1.799356,0,0,OIF:SA:23:218,Europe/Paris,,OIF, +OIF:SP:81:6453,1,"Mairie",48.988541,1.792411,0,0,OIF:SA:81:6453,Europe/Paris,,OIF, +OIF:SP:81:6454,1,"Mairie",48.988653,1.793243,0,0,OIF:SA:81:6453,Europe/Paris,,OIF, +OIF:SP:81:6460,1,"Stade",48.986374,1.790099,0,0,OIF:SA:81:6460,Europe/Paris,,OIF, +OIF:SP:81:6461,1,"Stade",48.98503,1.789089,0,0,OIF:SA:81:6460,Europe/Paris,,OIF, +OIF:SP:81:6462,1,"Château",49.045727,1.852053,0,0,OIF:SA:23:224,Europe/Paris,,OIF, +OIF:SP:81:6463,1,"Château",49.045727,1.852053,0,0,OIF:SA:23:224,Europe/Paris,,OIF, +OIF:SP:81:6464,1,"Damply",49.038561,1.833627,0,0,OIF:SA:23:227,Europe/Paris,,OIF, +OIF:SP:81:6465,1,"Damply",49.039552,1.834219,0,0,OIF:SA:23:227,Europe/Paris,,OIF, +OIF:SP:81:6466,1,"Noquets",49.038,1.843542,0,0,OIF:SA:23:909,Europe/Paris,,OIF, +OIF:SP:81:6467,1,"Noquets",49.038033,1.842831,0,0,OIF:SA:23:909,Europe/Paris,,OIF, +OIF:SP:81:6468,1,"Mairie",49.045836,1.854554,0,0,OIF:SA:23:228,Europe/Paris,,OIF, +OIF:SP:81:6469,1,"Mairie",49.045832,1.853392,0,0,OIF:SA:23:228,Europe/Paris,,OIF, +OIF:SP:81:6470,1,"Peupliers",49.047153,1.849196,0,0,OIF:SA:81:6470,Europe/Paris,,OIF, +OIF:SP:81:6471,1,"Peupliers",49.047153,1.849196,0,0,OIF:SA:81:6470,Europe/Paris,,OIF, +OIF:SP:81:6540,1,"Mairie",48.974759,1.648749,0,0,OIF:SA:81:15727,Europe/Paris,,OIF, +OIF:SP:81:6554,1,"Bonnes Joies",49.053497,1.804838,0,0,OIF:SA:81:6554,Europe/Paris,,OIF, +OIF:SP:81:6555,1,"Bonnes Joies",49.054161,1.80654,0,0,OIF:SA:81:6554,Europe/Paris,,OIF, +OIF:SP:81:6558,1,"École",49.060115,1.813986,0,0,OIF:SA:23:248,Europe/Paris,,OIF, +OIF:SP:81:6559,1,"École",49.060115,1.813986,0,0,OIF:SA:23:248,Europe/Paris,,OIF, +OIF:SP:81:6580,1,"Bas Caillois",48.995205,1.742506,0,0,OIF:SA:23:253,Europe/Paris,,OIF, +OIF:SP:81:6581,1,"Bas Caillois",48.99477,1.743617,0,0,OIF:SA:23:253,Europe/Paris,,OIF, +OIF:SP:81:6584,1,"Bois aux Moines",49.004709,1.732876,0,0,OIF:SA:23:252,Europe/Paris,,OIF, +OIF:SP:81:6585,1,"Bois aux Moines",49.004709,1.732876,0,0,OIF:SA:23:252,Europe/Paris,,OIF, +OIF:SP:81:6588,1,"Collège Albert Thierry",48.996434,1.747641,0,0,OIF:SA:81:6588,Europe/Paris,,OIF, +OIF:SP:81:6589,1,"Collège Albert Thierry",48.996434,1.747641,0,0,OIF:SA:81:6588,Europe/Paris,,OIF, +OIF:SP:81:6590,1,"Chaponnerie",48.99481,1.73011,0,0,OIF:SA:81:6590,Europe/Paris,,OIF, +OIF:SP:81:6591,1,"Chaponnerie",48.99479,1.72981,0,0,OIF:SA:81:6590,Europe/Paris,,OIF, +OIF:SP:81:6592,1,"Paix",48.994939,1.737893,0,0,OIF:SA:81:6592,Europe/Paris,,OIF, +OIF:SP:81:6593,1,"Paix",48.995012,1.73807,0,0,OIF:SA:81:6592,Europe/Paris,,OIF, +OIF:SP:81:6596,1,"Corot",48.993417,1.726576,0,0,OIF:SA:81:6596,Europe/Paris,,OIF, +OIF:SP:81:6597,1,"Coutures",48.988471,1.7348,0,0,OIF:SA:81:6597,Europe/Paris,,OIF, +OIF:SP:81:6598,1,"Coutures",48.98858,1.734935,0,0,OIF:SA:81:6597,Europe/Paris,,OIF, +OIF:SP:81:6599,1,"Docteur Roux",48.989109,1.738316,0,0,OIF:SA:81:14892,Europe/Paris,,OIF, +OIF:SP:81:6600,1,"Duvivier",48.99722,1.728689,0,0,OIF:SA:81:6600,Europe/Paris,,OIF, +OIF:SP:81:6601,1,"Duvivier",48.997389,1.7284,0,0,OIF:SA:81:6600,Europe/Paris,,OIF, +OIF:SP:81:6604,1,"Jean Macé",48.99578,1.740724,0,0,OIF:SA:23:266,Europe/Paris,,OIF, +OIF:SP:81:6605,1,"Jean Macé",48.996422,1.74144,0,0,OIF:SA:23:266,Europe/Paris,,OIF, +OIF:SP:81:6606,1,"Hauts de Limay",49.005192,1.735903,0,0,OIF:SA:23:263,Europe/Paris,,OIF, +OIF:SP:81:6607,1,"Hauts de Limay",49.005192,1.735903,0,0,OIF:SA:23:263,Europe/Paris,,OIF, +OIF:SP:81:6608,1,"Fontaines Agnès",48.998005,1.741873,0,0,OIF:SA:81:6608,Europe/Paris,,OIF, +OIF:SP:81:6609,1,"Fontaines Agnès",48.997736,1.741944,0,0,OIF:SA:81:6608,Europe/Paris,,OIF, +OIF:SP:81:6612,1,"Fosses Rouges",49.005996,1.733175,0,0,OIF:SA:23:260,Europe/Paris,,OIF, +OIF:SP:81:6613,1,"Fosses Rouges",49.005996,1.733175,0,0,OIF:SA:23:260,Europe/Paris,,OIF, +OIF:SP:81:6614,1,"Foyer M. Baudry",48.990517,1.732441,0,0,OIF:SA:81:6614,Europe/Paris,,OIF, +OIF:SP:81:6615,1,"Foyer M. Baudry",48.990545,1.732605,0,0,OIF:SA:81:6614,Europe/Paris,,OIF, +OIF:SP:81:6616,1,"Gare de Limay",48.983363,1.748513,0,0,OIF:SA:8738158,Europe/Paris,,OIF, +OIF:SP:81:6620,1,"Hauts Célestins",49.003587,1.734829,0,0,OIF:SA:23:255,Europe/Paris,,OIF, +OIF:SP:81:6621,1,"Hauts Célestins",49.003587,1.734829,0,0,OIF:SA:23:255,Europe/Paris,,OIF, +OIF:SP:81:6628,1,"Bâtes",48.998791,1.724832,0,0,OIF:SA:81:6628,Europe/Paris,,OIF, +OIF:SP:81:6629,1,"Bâtes",49.000283,1.723162,0,0,OIF:SA:81:6628,Europe/Paris,,OIF, +OIF:SP:81:6630,1,"Croms",48.999201,1.7419,0,0,OIF:SA:23:256,Europe/Paris,,OIF, +OIF:SP:81:6631,1,"Croms",48.999516,1.742047,0,0,OIF:SA:23:256,Europe/Paris,,OIF, +OIF:SP:81:6632,1,"Hauts de Limay",49.003963,1.739892,0,0,OIF:SA:23:263,Europe/Paris,,OIF, +OIF:SP:81:6636,1,"Saules Guérin",49.004158,1.71824,0,0,OIF:SA:81:6636,Europe/Paris,,OIF, +OIF:SP:81:6637,1,"Saules Guérin",49.004507,1.71799,0,0,OIF:SA:81:6636,Europe/Paris,,OIF, +OIF:SP:81:6638,1,"Logirep",48.991343,1.74128,0,0,OIF:SA:81:6638,Europe/Paris,,OIF, +OIF:SP:81:6639,1,"Logirep",48.991028,1.741134,0,0,OIF:SA:81:6638,Europe/Paris,,OIF, +OIF:SP:81:6644,1,"Place du Temple",48.992992,1.729558,0,0,OIF:SA:81:6644,Europe/Paris,,OIF, +OIF:SP:81:6645,1,"Place du Temple",48.9925,1.730042,0,0,OIF:SA:81:6644,Europe/Paris,,OIF, +OIF:SP:81:6646,1,"Place Robespierre",48.985174,1.745898,0,0,OIF:SA:81:6646,Europe/Paris,,OIF, +OIF:SP:81:6647,1,"Place Robespierre",48.9852,1.745707,0,0,OIF:SA:81:6646,Europe/Paris,,OIF, +OIF:SP:81:6652,1,"Pont de Limay",48.993569,1.726506,0,0,OIF:SA:23:270,Europe/Paris,,OIF, +OIF:SP:81:6653,1,"Pont de Limay",48.993362,1.726358,0,0,OIF:SA:23:270,Europe/Paris,,OIF, +OIF:SP:81:6654,1,"Port Autonome",48.979549,1.753267,0,0,OIF:SA:81:6654,Europe/Paris,,OIF, +OIF:SP:81:6655,1,"Port Autonome",48.979549,1.753267,0,0,OIF:SA:81:6654,Europe/Paris,,OIF, +OIF:SP:81:6656,1,"Résidence Wilson",48.98742,1.742008,0,0,OIF:SA:23:275,Europe/Paris,,OIF, +OIF:SP:81:6657,1,"Résidence Wilson",48.988019,1.741332,0,0,OIF:SA:23:275,Europe/Paris,,OIF, +OIF:SP:81:6659,1,"Rue de la Chasse",48.992291,1.742075,0,0,OIF:SA:81:6659,Europe/Paris,,OIF, +OIF:SP:81:6660,1,"Rue de la Chasse",48.992932,1.742655,0,0,OIF:SA:81:6659,Europe/Paris,,OIF, +OIF:SP:81:6663,1,"Vinaver",48.997951,1.725867,0,0,OIF:SA:81:6663,Europe/Paris,,OIF, +OIF:SP:81:6664,1,"Vinaver",48.998702,1.725107,0,0,OIF:SA:81:6663,Europe/Paris,,OIF, +OIF:SP:81:6695,1,"Église",48.921705,1.587089,0,0,OIF:SA:81:6695,Europe/Paris,,OIF, +OIF:SP:81:6696,1,"Église",48.921766,1.586856,0,0,OIF:SA:81:6695,Europe/Paris,,OIF, +OIF:SP:81:6697,1,"Mairie",48.920933,1.585818,0,0,OIF:SA:81:6697,Europe/Paris,,OIF, +OIF:SP:81:6698,1,"Mairie",48.920058,1.585244,0,0,OIF:SA:81:6697,Europe/Paris,,OIF, +OIF:SP:81:6699,1,"Ruelles",48.922442,1.591374,0,0,OIF:SA:81:6699,Europe/Paris,,OIF, +OIF:SP:81:6700,1,"Ruelles",48.922778,1.590496,0,0,OIF:SA:81:6699,Europe/Paris,,OIF, +OIF:SP:81:6701,1,"Versailles",48.919486,1.587298,0,0,OIF:SA:81:6701,Europe/Paris,,OIF, +OIF:SP:81:6702,1,"Versailles",48.919486,1.587298,0,0,OIF:SA:81:6701,Europe/Paris,,OIF, +OIF:SP:81:6722,1,"Cytises",48.971489,1.68251,0,0,OIF:SA:81:15736,Europe/Paris,,OIF, +OIF:SP:81:6724,1,"Fontenay Auchan",48.978636,1.686161,0,0,OIF:SA:81:15737,Europe/Paris,,OIF, +OIF:SP:81:6736,1,"Lycée Léopold Sédar Senghor",48.96537,1.68271,0,0,OIF:SA:81:6736,Europe/Paris,,OIF, +OIF:SP:81:6737,1,"Lycée Léopold Sédar Senghor",48.965236,1.682767,0,0,OIF:SA:81:6736,Europe/Paris,,OIF, +OIF:SP:81:6738,1,"Mairie",48.966684,1.681288,0,0,OIF:SA:81:6738,Europe/Paris,,OIF, +OIF:SP:81:6739,1,"Mairie",48.96679,1.681082,0,0,OIF:SA:81:6738,Europe/Paris,,OIF, +OIF:SP:81:6744,1,"Mongazons",48.974758,1.691957,0,0,OIF:SA:81:6744,Europe/Paris,,OIF, +OIF:SP:81:6745,1,"Mongazons",48.975615,1.692533,0,0,OIF:SA:81:6744,Europe/Paris,,OIF, +OIF:SP:81:6746,1,"Ormes",48.974606,1.682157,0,0,OIF:SA:81:15738,Europe/Paris,,OIF, +OIF:SP:81:6756,1,"Tilleuls",48.97705,1.685348,0,0,OIF:SA:81:15739,Europe/Paris,,OIF, +OIF:SP:81:6825,1,"Butte Verte",48.996755,1.675102,0,0,OIF:SA:81:6825,Europe/Paris,,OIF, +OIF:SP:81:6826,1,"Butte Verte",48.996992,1.675632,0,0,OIF:SA:81:6825,Europe/Paris,,OIF, +OIF:SP:81:6827,1,"Calmette",48.983619,1.715741,0,0,OIF:SA:22:503,Europe/Paris,,OIF, +OIF:SP:81:6845,1,"Doret",49.001054,1.683911,0,0,OIF:SA:81:6845,Europe/Paris,,OIF, +OIF:SP:81:6847,1,"Edouard Vaillant",48.993881,1.695091,0,0,OIF:SA:81:6847,Europe/Paris,,OIF, +OIF:SP:81:6848,1,"Edouard Vaillant",48.993881,1.695091,0,0,OIF:SA:81:6847,Europe/Paris,,OIF, +OIF:SP:81:6852,1,"Gare Quai 11",48.989081,1.704969,0,0,OIF:SA:8738150,Europe/Paris,,OIF, +OIF:SP:81:6853,1,"Gare Quai 11",48.989027,1.705079,0,0,OIF:SA:8738150,Europe/Paris,,OIF, +OIF:SP:81:6864,1,"Géo André",48.995186,1.692112,0,0,OIF:SA:81:6864,Europe/Paris,,OIF, +OIF:SP:81:6865,1,"Géo André",48.9955,1.691998,0,0,OIF:SA:81:6864,Europe/Paris,,OIF, +OIF:SP:81:6878,1,"Hôtel de Ville",48.989262,1.715591,0,0,OIF:SA:81:6878,Europe/Paris,,OIF, +OIF:SP:81:6879,1,"Hôtel de Ville",48.989262,1.715591,0,0,OIF:SA:81:6878,Europe/Paris,,OIF, +OIF:SP:81:6888,1,"Lavoisier",48.995998,1.684563,0,0,OIF:SA:81:6888,Europe/Paris,,OIF, +OIF:SP:81:6889,1,"Lavoisier",48.996294,1.684354,0,0,OIF:SA:81:6888,Europe/Paris,,OIF, +OIF:SP:81:6906,1,"Palais de Justice",48.989805,1.712881,0,0,OIF:SA:81:6906,Europe/Paris,,OIF, +OIF:SP:81:6907,1,"Palais de Justice",48.989805,1.712881,0,0,OIF:SA:81:6906,Europe/Paris,,OIF, +OIF:SP:81:6934,1,"Saint-Maclou",48.990869,1.718754,0,0,OIF:SA:81:6934,Europe/Paris,,OIF, +OIF:SP:81:6935,1,"Saint-Maclou",48.990869,1.718754,0,0,OIF:SA:81:6934,Europe/Paris,,OIF, +OIF:SP:81:6940,1,"Rue de la Sangle",48.989296,1.718581,0,0,OIF:SA:81:6940,Europe/Paris,,OIF, +OIF:SP:81:6941,1,"Rue de la Sangle",48.989296,1.718581,0,0,OIF:SA:81:6940,Europe/Paris,,OIF, +OIF:SP:81:6983,1,"Chantereine",48.977743,1.722938,0,0,OIF:SA:81:15802,Europe/Paris,,OIF, +OIF:SP:81:6994,1,"Gare Routière Quai 24",48.987874,1.704506,0,0,OIF:SA:8738150,Europe/Paris,,OIF, +OIF:SP:81:6995,1,"Gare Routière Quai 24",48.987874,1.704506,0,0,OIF:SA:8738150,Europe/Paris,,OIF, +OIF:SP:81:7041,1,"Plaisances",48.975644,1.703072,0,0,OIF:SA:81:7041,Europe/Paris,,OIF, +OIF:SP:81:7042,1,"Plaisances",48.975644,1.703072,0,0,OIF:SA:81:7041,Europe/Paris,,OIF, +OIF:SP:81:7044,1,"Poste",48.981332,1.711454,0,0,OIF:SA:81:7044,Europe/Paris,,OIF, +OIF:SP:81:7196,1,"Arquebuse",49.004149,1.911355,0,0,OIF:SA:8741071,Europe/Paris,,OIF, +OIF:SP:81:7198,1,"Collège Henri IV",49.013372,1.922564,0,0,OIF:SA:21:12,Europe/Paris,,OIF, +OIF:SP:81:7199,1,"Collège Henri IV",49.013372,1.922564,0,0,OIF:SA:21:12,Europe/Paris,,OIF, +OIF:SP:81:7202,1,"Place du Vexin",49.00433,1.90686,0,0,OIF:SA:8741069,Europe/Paris,,OIF, +OIF:SP:81:7203,1,"Place du Vexin",49.004969,1.906882,0,0,OIF:SA:8741069,Europe/Paris,,OIF, +OIF:SP:81:7206,1,"Abri",48.999195,1.886279,0,0,OIF:SA:81:14893,Europe/Paris,,OIF, +OIF:SP:81:7209,1,"Source",48.998258,1.883337,0,0,OIF:SA:81:7209,Europe/Paris,,OIF, +OIF:SP:81:7210,1,"Source",48.998518,1.883117,0,0,OIF:SA:81:7209,Europe/Paris,,OIF, +OIF:SP:81:7211,1,"Beau Site",48.999893,1.887776,0,0,OIF:SA:23:319,Europe/Paris,,OIF, +OIF:SP:81:7212,1,"Beau Site",48.99974,1.887832,0,0,OIF:SA:23:319,Europe/Paris,,OIF, +OIF:SP:81:7213,1,"Roseland",48.996183,1.8765,0,0,OIF:SA:23:1002,Europe/Paris,,OIF, +OIF:SP:81:7214,1,"Roseland",48.996507,1.876483,0,0,OIF:SA:23:1002,Europe/Paris,,OIF, +OIF:SP:81:7229,1,"Église",48.902807,1.552517,0,0,OIF:SA:81:7229,Europe/Paris,,OIF, +OIF:SP:81:7230,1,"Église",48.902897,1.552556,0,0,OIF:SA:81:7229,Europe/Paris,,OIF, +OIF:SP:81:7231,1,"Mairie",49.045968,1.825708,0,0,OIF:SA:81:7231,Europe/Paris,,OIF, +OIF:SP:81:7232,1,"Mairie",49.045905,1.825722,0,0,OIF:SA:81:7231,Europe/Paris,,OIF, +OIF:SP:81:7363,1,"Lycée François Villon",48.973502,1.923347,0,0,OIF:SA:21:490,Europe/Paris,,OIF, +OIF:SP:81:7364,1,"Lycée François Villon",48.973502,1.923347,0,0,OIF:SA:21:490,Europe/Paris,,OIF, +OIF:SP:81:7365,1,"Gare",48.992938,1.912663,0,0,OIF:SA:8738668,Europe/Paris,,OIF, +OIF:SP:81:7366,1,"Gare",48.992938,1.912581,0,0,OIF:SA:8738668,Europe/Paris,,OIF, +OIF:SP:81:7367,1,"Lycée Vaucanson",48.981492,1.923598,0,0,OIF:SA:21:561,Europe/Paris,,OIF, +OIF:SP:81:7368,1,"Lycée Vaucanson",48.981529,1.923884,0,0,OIF:SA:21:561,Europe/Paris,,OIF, +OIF:SP:81:7390,1,"Église",48.93159,1.52514,0,0,OIF:SA:81:15834,Europe/Paris,,OIF, +OIF:SP:81:7392,1,"Couarde",48.928924,1.51127,0,0,OIF:SA:81:15833,Europe/Paris,,OIF, +OIF:SP:81:7396,1,"Thurets",49.028431,1.859431,0,0,OIF:SA:81:7396,Europe/Paris,,OIF, +OIF:SP:81:7397,1,"Thurets",49.028501,1.856479,0,0,OIF:SA:81:7396,Europe/Paris,,OIF, +OIF:SP:81:7398,1,"Tilleuls",49.030332,1.849369,0,0,OIF:SA:81:7398,Europe/Paris,,OIF, +OIF:SP:81:7399,1,"Tilleuls",49.03072,1.847493,0,0,OIF:SA:81:7398,Europe/Paris,,OIF, +OIF:SP:81:7400,1,"Mairie",49.029125,1.853084,0,0,OIF:SA:81:7400,Europe/Paris,,OIF, +OIF:SP:81:7401,1,"Mairie",49.029046,1.853576,0,0,OIF:SA:81:7400,Europe/Paris,,OIF, +OIF:SP:81:7526,1,"Gare RER Nord de Poissy",48.93394,2.040769,0,0,OIF:SA:8738657,Europe/Paris,,OIF, +OIF:SP:81:7531,1,"Parking Peugeot",48.941803,2.055226,0,0,OIF:SA:21:618,Europe/Paris,,OIF, +OIF:SP:81:7534,1,"Centrale",48.974956,1.767885,0,0,OIF:SA:23:482,Europe/Paris,,OIF, +OIF:SP:81:7535,1,"Centrale",48.975243,1.767827,0,0,OIF:SA:23:482,Europe/Paris,,OIF, +OIF:SP:81:7536,1,"Chemin Neuf",48.976321,1.783065,0,0,OIF:SA:81:7536,Europe/Paris,,OIF, +OIF:SP:81:7537,1,"Chemin Neuf",48.975327,1.78186,0,0,OIF:SA:81:7536,Europe/Paris,,OIF, +OIF:SP:81:7538,1,"Cité Tibaldi",48.974056,1.781137,0,0,OIF:SA:23:486,Europe/Paris,,OIF, +OIF:SP:81:7539,1,"Cité Tibaldi",48.973361,1.780366,0,0,OIF:SA:23:486,Europe/Paris,,OIF, +OIF:SP:81:7540,1,"Foyer",48.975711,1.766061,0,0,OIF:SA:23:965,Europe/Paris,,OIF, +OIF:SP:81:7541,1,"Foyer",48.97683,1.763359,0,0,OIF:SA:23:965,Europe/Paris,,OIF, +OIF:SP:81:7543,1,"Guignières",48.97364,1.776691,0,0,OIF:SA:81:7543,Europe/Paris,,OIF, +OIF:SP:81:7544,1,"Guignières",48.973533,1.776774,0,0,OIF:SA:81:7543,Europe/Paris,,OIF, +OIF:SP:81:7545,1,"Hôtel de Ville",48.971931,1.778266,0,0,OIF:SA:23:484,Europe/Paris,,OIF, +OIF:SP:81:7546,1,"Hôtel de Ville",48.972586,1.776075,0,0,OIF:SA:23:484,Europe/Paris,,OIF, +OIF:SP:81:7548,1,"Lycée Lavoisier",48.974513,1.7732,0,0,OIF:SA:81:7548,Europe/Paris,,OIF, +OIF:SP:81:7549,1,"Lycée Lavoisier",48.973649,1.772773,0,0,OIF:SA:81:7548,Europe/Paris,,OIF, +OIF:SP:81:7550,1,"Petite Auberge",48.97283,1.780154,0,0,OIF:SA:81:7550,Europe/Paris,,OIF, +OIF:SP:81:7551,1,"Petite Auberge",48.972378,1.77964,0,0,OIF:SA:81:7550,Europe/Paris,,OIF, +OIF:SP:81:7589,1,"Collège Sully",49.001183,1.644463,0,0,OIF:SA:81:15428,Europe/Paris,,OIF, +OIF:SP:81:7629,1,"Cornouiller",49.043979,1.800548,0,0,OIF:SA:81:7629,Europe/Paris,,OIF, +OIF:SP:81:7630,1,"Cornouiller",49.044169,1.800792,0,0,OIF:SA:81:7629,Europe/Paris,,OIF, +OIF:SP:81:7631,1,"Lavoir",49.03988,1.800194,0,0,OIF:SA:81:7631,Europe/Paris,,OIF, +OIF:SP:81:7632,1,"Lavoir",49.040397,1.80131,0,0,OIF:SA:81:7631,Europe/Paris,,OIF, +OIF:SP:81:7692,1,"Pereire",48.901147,2.067634,0,0,OIF:SA:81:7692,Europe/Paris,,OIF, +OIF:SP:81:7693,1,"Saint-Ger République",48.897886,2.093073,0,0,OIF:SA:8775809,Europe/Paris,,OIF, +OIF:SP:81:7694,1,"Jehan Alain",48.900688,2.087716,0,0,OIF:SA:15:113,Europe/Paris,,OIF, +OIF:SP:81:7695,1,"École Normale",48.901013,2.067594,0,0,OIF:SA:15:124,Europe/Paris,,OIF, +OIF:SP:81:7699,1,"Mairie",48.956447,1.50791,0,0,OIF:SA:81:15854,Europe/Paris,,OIF, +OIF:SP:81:7701,1,"Place des Tilleuls",48.959126,1.506789,0,0,OIF:SA:81:15855,Europe/Paris,,OIF, +OIF:SP:81:7711,1,"École",49.040531,1.688648,0,0,OIF:SA:81:7711,Europe/Paris,,OIF, +OIF:SP:81:7712,1,"École",49.040531,1.688648,0,0,OIF:SA:81:7711,Europe/Paris,,OIF, +OIF:SP:81:7715,1,"Place de Sandrancourt",49.034541,1.647597,0,0,OIF:SA:81:7715,Europe/Paris,,OIF, +OIF:SP:81:7716,1,"Place de Sandrancourt",49.034541,1.647597,0,0,OIF:SA:81:7715,Europe/Paris,,OIF, +OIF:SP:81:7800,1,"Ferme",48.95629,1.672276,0,0,OIF:SA:81:7800,Europe/Paris,,OIF, +OIF:SP:81:7801,1,"Ferme",48.956308,1.670707,0,0,OIF:SA:81:7800,Europe/Paris,,OIF, +OIF:SP:81:7802,1,"Mairie",48.958927,1.676323,0,0,OIF:SA:81:7802,Europe/Paris,,OIF, +OIF:SP:81:7803,1,"Mairie",48.95822,1.675117,0,0,OIF:SA:81:7802,Europe/Paris,,OIF, +OIF:SP:81:7816,1,"Église",48.881887,1.575237,0,0,OIF:SA:22:301,Europe/Paris,,OIF, +OIF:SP:81:7817,1,"Église",48.881887,1.575237,0,0,OIF:SA:22:301,Europe/Paris,,OIF, +OIF:SP:82:10,1,"Newport Bay Club",48.865077,2.788628,0,0,OIF:SA:82:10,Europe/Paris,,OIF, +OIF:SP:82:11,1,"Séquoia Lodge",48.869021,2.79121,0,0,OIF:SA:82:11,Europe/Paris,,OIF, +OIF:SP:82:12,1,"Santa Fe",48.872448,2.795409,0,0,OIF:SA:47:15034,Europe/Paris,,OIF, +OIF:SP:82:13,1,"Cheyenne",48.874414,2.79123,0,0,OIF:SA:82:13,Europe/Paris,,OIF, +OIF:SP:82:14,1,"New York",48.870708,2.787383,0,0,OIF:SA:82:14,Europe/Paris,,OIF, +OIF:SP:82:15,1,"Disneyland",48.870955,2.781267,0,0,OIF:SA:82:15,Europe/Paris,,OIF, +OIF:SP:82:16,1,"Gare Routière Chessy",48.871763,2.783877,0,0,OIF:SA:8775499,Europe/Paris,,OIF, +OIF:SP:82:17,1,"Kyriad",48.870686,2.809208,0,0,OIF:SA:82:17,Europe/Paris,,OIF, +OIF:SP:82:18,1,"Magic Circus",48.871546,2.807717,0,0,OIF:SA:82:18,Europe/Paris,,OIF, +OIF:SP:82:19,1,"Dream Castle",48.874769,2.806234,0,0,OIF:SA:82:19,Europe/Paris,,OIF, +OIF:SP:82:20,1,"Explorer",48.876707,2.807001,0,0,OIF:SA:82:20,Europe/Paris,,OIF, +OIF:SP:82:21,1,"Hôtel B And B",48.877373,2.809037,0,0,OIF:SA:82:21,Europe/Paris,,OIF, +OIF:SP:82:3,1,"Orly Sud",48.728783,2.369337,0,0,OIF:SA:59675,Europe/Paris,,OIF, +OIF:SP:82:4,1,"Orly Ouest",48.727733,2.361198,0,0,OIF:SA:8749571,Europe/Paris,,OIF, +OIF:SP:82:6,1,"Terminal 1",49.014509,2.541546,0,0,OIF:SA:59685,Europe/Paris,,OIF, +OIF:SP:82:8,1,"Terminal 2EF",49.004647,2.577335,0,0,OIF:SA:8700147,Europe/Paris,,OIF, +OIF:SP:83:600,1,"Terminal Jules Verne",48.89142,2.242072,0,0,OIF:SA:8738221,Europe/Paris,,OIF, +OIF:SP:83:601,1,"Hôpital Quesnay",48.999967,1.677342,0,0,OIF:SA:81:15780,Europe/Paris,,OIF, +OIF:SP:83:602,1,"Route de Buchelay",48.995768,1.688417,0,0,OIF:SA:81:15790,Europe/Paris,,OIF, +OIF:SP:83:603,1,"Gare SNCF",48.98909,1.704956,0,0,OIF:SA:8738150,Europe/Paris,,OIF, +OIF:SP:83:604,1,"Gare Routière",48.988623,1.703364,0,0,OIF:SA:8738150,Europe/Paris,,OIF, +OIF:SP:83:605,1,"Gare SNCF",48.989942,1.704631,0,0,OIF:SA:8738150,Europe/Paris,,OIF, +OIF:SP:83:606,1,"Route de Buchelay",48.996026,1.687895,0,0,OIF:SA:81:15790,Europe/Paris,,OIF, +OIF:SP:83:607,1,"Hôpital Quesnay",49.000085,1.677668,0,0,OIF:SA:81:15780,Europe/Paris,,OIF, +OIF:SP:83:613,1,"Gare Routière",48.988623,1.703364,0,0,OIF:SA:8738150,Europe/Paris,,OIF, +OIF:SP:83:614,1,"La Vallée Française",49.031964,1.579748,0,0,OIF:SA:83:614,Europe/Paris,,OIF, +OIF:SP:84:10,1,"Monument aux Morts",49.153572,2.07222,0,0,OIF:SA:84:10,Europe/Paris,,OIF, +OIF:SP:84:100,1,"Le Rosnel",49.152925,2.010347,0,0,OIF:SA:84:100,Europe/Paris,,OIF, +OIF:SP:84:101,1,"Lavoir",49.180631,2.105098,0,0,OIF:SA:84:101,Europe/Paris,,OIF, +OIF:SP:84:102,1,"Messelan",49.161879,2.14012,0,0,OIF:SA:84:102,Europe/Paris,,OIF, +OIF:SP:84:103,1,"Grande Rue",49.152116,2.147951,0,0,OIF:SA:84:103,Europe/Paris,,OIF, +OIF:SP:84:104,1,"Frouville Mairie",49.148112,2.150075,0,0,OIF:SA:84:104,Europe/Paris,,OIF, +OIF:SP:84:105,1,"Biard",49.142052,2.153823,0,0,OIF:SA:84:105,Europe/Paris,,OIF, +OIF:SP:84:106,1,"Petit Biard",49.140063,2.146037,0,0,OIF:SA:84:106,Europe/Paris,,OIF, +OIF:SP:84:107,1,"Mairie",49.135567,2.143849,0,0,OIF:SA:84:107,Europe/Paris,,OIF, +OIF:SP:84:108,1,"Rue de Pontoise",49.137589,2.11281,0,0,OIF:SA:84:108,Europe/Paris,,OIF, +OIF:SP:84:109,1,"Château",49.101826,2.132329,0,0,OIF:SA:84:109,Europe/Paris,,OIF, +OIF:SP:84:11,1,"Le Fay",49.158456,2.043521,0,0,OIF:SA:84:11,Europe/Paris,,OIF, +OIF:SP:84:110,1,"Mairie",49.09526,2.095082,0,0,OIF:SA:84:110,Europe/Paris,,OIF, +OIF:SP:84:111,1,"Mairie",49.09526,2.095274,0,0,OIF:SA:84:110,Europe/Paris,,OIF, +OIF:SP:84:113,1,"Rue de Pontoise",49.137581,2.113152,0,0,OIF:SA:84:108,Europe/Paris,,OIF, +OIF:SP:84:114,1,"Mairie",49.13546,2.143986,0,0,OIF:SA:84:107,Europe/Paris,,OIF, +OIF:SP:84:115,1,"Petit Biard",49.139893,2.146065,0,0,OIF:SA:84:106,Europe/Paris,,OIF, +OIF:SP:84:116,1,"Biard",49.141945,2.15385,0,0,OIF:SA:84:105,Europe/Paris,,OIF, +OIF:SP:84:117,1,"Frouville Mairie",49.148166,2.150253,0,0,OIF:SA:84:104,Europe/Paris,,OIF, +OIF:SP:84:118,1,"Grande Rue",49.152655,2.147881,0,0,OIF:SA:84:103,Europe/Paris,,OIF, +OIF:SP:84:119,1,"Messelan",49.161744,2.140298,0,0,OIF:SA:84:102,Europe/Paris,,OIF, +OIF:SP:84:120,1,"Margicourt",49.178508,2.108466,0,0,OIF:SA:84:120,Europe/Paris,,OIF, +OIF:SP:84:121,1,"Centre Ville",49.160394,1.934426,0,0,OIF:SA:84:121,Europe/Paris,,OIF, +OIF:SP:84:122,1,"LEP",49.157719,1.943269,0,0,OIF:SA:84:122,Europe/Paris,,OIF, +OIF:SP:84:123,1,"Métairie",49.148437,1.968584,0,0,OIF:SA:84:123,Europe/Paris,,OIF, +OIF:SP:84:124,1,"Zone Artisanale",49.145741,1.968508,0,0,OIF:SA:84:124,Europe/Paris,,OIF, +OIF:SP:84:125,1,"Hôpital Jean Baptiste Cartry",49.145787,1.974822,0,0,OIF:SA:84:125,Europe/Paris,,OIF, +OIF:SP:84:126,1,"Gendarmerie",49.14566,1.977165,0,0,OIF:SA:84:126,Europe/Paris,,OIF, +OIF:SP:84:127,1,"Rue des Petites Fontaines",49.123606,2.000689,0,0,OIF:SA:84:127,Europe/Paris,,OIF, +OIF:SP:84:128,1,"Église",49.1158,2.01811,0,0,OIF:SA:84:128,Europe/Paris,,OIF, +OIF:SP:84:129,1,"Rue Curie",49.114486,2.023936,0,0,OIF:SA:84:129,Europe/Paris,,OIF, +OIF:SP:84:13,1,"Collège les Hautiers",49.147992,1.984819,0,0,OIF:SA:84:13,Europe/Paris,,OIF, +OIF:SP:84:130,1,"Karting / Aérodrome",49.101225,2.042286,0,0,OIF:SA:84:130,Europe/Paris,,OIF, +OIF:SP:84:131,1,"Centre Commercial de l'Oseraie",49.077328,2.075634,0,0,OIF:SA:84:131,Europe/Paris,,OIF, +OIF:SP:84:132,1,"Avenue de Normandie",49.062325,2.089698,0,0,OIF:SA:84:132,Europe/Paris,,OIF, +OIF:SP:84:133,1,"Lycée Kastler",49.037065,2.085446,0,0,OIF:SA:84:133,Europe/Paris,,OIF, +OIF:SP:84:135,1,"Lycée Kastler",49.036597,2.085311,0,0,OIF:SA:84:133,Europe/Paris,,OIF, +OIF:SP:84:136,1,"Avenue de Normandie",49.061508,2.090454,0,0,OIF:SA:84:132,Europe/Paris,,OIF, +OIF:SP:84:137,1,"Centre Commercial de l'Oseraie",49.076924,2.075622,0,0,OIF:SA:84:131,Europe/Paris,,OIF, +OIF:SP:84:138,1,"Karting / Aérodrome",49.102149,2.041884,0,0,OIF:SA:84:130,Europe/Paris,,OIF, +OIF:SP:84:139,1,"Rue Curie",49.114728,2.023962,0,0,OIF:SA:84:129,Europe/Paris,,OIF, +OIF:SP:84:14,1,"Collège les Hautiers",49.148927,1.985278,0,0,OIF:SA:84:13,Europe/Paris,,OIF, +OIF:SP:84:140,1,"Église",49.115837,2.018425,0,0,OIF:SA:84:128,Europe/Paris,,OIF, +OIF:SP:84:141,1,"Rue des Petites Fontaines",49.123265,2.000828,0,0,OIF:SA:84:127,Europe/Paris,,OIF, +OIF:SP:84:142,1,"Gendarmerie",49.145799,1.978561,0,0,OIF:SA:84:126,Europe/Paris,,OIF, +OIF:SP:84:144,1,"Métairie",49.149193,1.968839,0,0,OIF:SA:84:123,Europe/Paris,,OIF, +OIF:SP:84:146,1,"Centre Ville",49.160565,1.934534,0,0,OIF:SA:84:121,Europe/Paris,,OIF, +OIF:SP:84:147,1,"Marcouville",49.04996,2.081377,0,0,OIF:SA:84:147,Europe/Paris,,OIF, +OIF:SP:84:148,1,"Marcouville",49.049458,2.081762,0,0,OIF:SA:84:147,Europe/Paris,,OIF, +OIF:SP:84:150,1,"Plateau",49.07777,2.106914,0,0,OIF:SA:84:150,Europe/Paris,,OIF, +OIF:SP:84:151,1,"Pharmacie",49.074701,2.104808,0,0,OIF:SA:84:151,Europe/Paris,,OIF, +OIF:SP:84:152,1,"Croix d'Autel",49.072593,2.101672,0,0,OIF:SA:84:152,Europe/Paris,,OIF, +OIF:SP:84:153,1,"Zone Artisanale",49.066361,2.108606,0,0,OIF:SA:84:153,Europe/Paris,,OIF, +OIF:SP:84:154,1,"Transformateur",49.065216,2.111305,0,0,OIF:SA:84:154,Europe/Paris,,OIF, +OIF:SP:84:155,1,"Bois Péan",49.067141,2.112705,0,0,OIF:SA:84:155,Europe/Paris,,OIF, +OIF:SP:84:156,1,"Bécasse",49.069294,2.115185,0,0,OIF:SA:84:156,Europe/Paris,,OIF, +OIF:SP:84:157,1,"Stand de Tir",49.06506,2.105193,0,0,OIF:SA:84:157,Europe/Paris,,OIF, +OIF:SP:84:158,1,"Maternité",49.061057,2.093738,0,0,OIF:SA:84:158,Europe/Paris,,OIF, +OIF:SP:84:16,1,"Le Fay",49.158564,2.043684,0,0,OIF:SA:84:11,Europe/Paris,,OIF, +OIF:SP:84:165,1,"Maternité",49.06157,2.094119,0,0,OIF:SA:84:158,Europe/Paris,,OIF, +OIF:SP:84:166,1,"Stand de Tir",49.065142,2.105439,0,0,OIF:SA:84:157,Europe/Paris,,OIF, +OIF:SP:84:167,1,"Zone Artisanale",49.066361,2.108606,0,0,OIF:SA:84:153,Europe/Paris,,OIF, +OIF:SP:84:168,1,"Transformateur",49.065216,2.111305,0,0,OIF:SA:84:154,Europe/Paris,,OIF, +OIF:SP:84:169,1,"Bois Péan",49.067141,2.112705,0,0,OIF:SA:84:155,Europe/Paris,,OIF, +OIF:SP:84:17,1,"Monument aux Morts",49.153347,2.071988,0,0,OIF:SA:84:10,Europe/Paris,,OIF, +OIF:SP:84:170,1,"Bécasse",49.069294,2.115185,0,0,OIF:SA:84:156,Europe/Paris,,OIF, +OIF:SP:84:171,1,"Croix d'Autel",49.072467,2.101782,0,0,OIF:SA:84:152,Europe/Paris,,OIF, +OIF:SP:84:172,1,"Pharmacie",49.074819,2.104944,0,0,OIF:SA:84:151,Europe/Paris,,OIF, +OIF:SP:84:173,1,"Plateau",49.077977,2.107324,0,0,OIF:SA:84:150,Europe/Paris,,OIF, +OIF:SP:84:174,1,"Mairie",49.137708,1.909117,0,0,OIF:SA:84:174,Europe/Paris,,OIF, +OIF:SP:84:175,1,"Saint-Jacques",49.124607,1.891783,0,0,OIF:SA:84:175,Europe/Paris,,OIF, +OIF:SP:84:177,1,"Centre Équestre",49.111515,1.932288,0,0,OIF:SA:84:177,Europe/Paris,,OIF, +OIF:SP:84:178,1,"Epagnes",49.126487,1.943658,0,0,OIF:SA:84:178,Europe/Paris,,OIF, +OIF:SP:84:179,1,"Belles Vues",49.12459,1.945986,0,0,OIF:SA:84:179,Europe/Paris,,OIF, +OIF:SP:84:18,1,"Rhus",49.143422,2.078175,0,0,OIF:SA:84:18,Europe/Paris,,OIF, +OIF:SP:84:180,1,"Mairie",49.12597,1.950316,0,0,OIF:SA:84:180,Europe/Paris,,OIF, +OIF:SP:84:181,1,"Place",49.137081,1.94355,0,0,OIF:SA:84:181,Europe/Paris,,OIF, +OIF:SP:84:182,1,"Four à Chaux",49.153798,1.942285,0,0,OIF:SA:84:182,Europe/Paris,,OIF, +OIF:SP:84:183,1,"Place des Fêtes",49.159396,1.936954,0,0,OIF:SA:84:183,Europe/Paris,,OIF, +OIF:SP:84:184,1,"Place des Fêtes",49.159477,1.936762,0,0,OIF:SA:84:183,Europe/Paris,,OIF, +OIF:SP:84:185,1,"Four à Chaux",49.153671,1.941958,0,0,OIF:SA:84:182,Europe/Paris,,OIF, +OIF:SP:84:186,1,"Place",49.137052,1.943139,0,0,OIF:SA:84:181,Europe/Paris,,OIF, +OIF:SP:84:187,1,"Mairie",49.125924,1.950138,0,0,OIF:SA:84:180,Europe/Paris,,OIF, +OIF:SP:84:188,1,"Belles Vues",49.124429,1.946385,0,0,OIF:SA:84:179,Europe/Paris,,OIF, +OIF:SP:84:189,1,"Epagnes",49.126487,1.943658,0,0,OIF:SA:84:178,Europe/Paris,,OIF, +OIF:SP:84:19,1,"Mairie/Église",49.138784,2.112818,0,0,OIF:SA:84:19,Europe/Paris,,OIF, +OIF:SP:84:190,1,"Centre Équestre",49.111444,1.932426,0,0,OIF:SA:84:177,Europe/Paris,,OIF, +OIF:SP:84:192,1,"Saint-Jacques",49.12459,1.891975,0,0,OIF:SA:84:175,Europe/Paris,,OIF, +OIF:SP:84:193,1,"Mairie",49.1376,1.909036,0,0,OIF:SA:84:174,Europe/Paris,,OIF, +OIF:SP:84:194,1,"Bercagny",49.145686,1.90134,0,0,OIF:SA:84:194,Europe/Paris,,OIF, +OIF:SP:84:195,1,"Église",49.151526,1.886578,0,0,OIF:SA:84:195,Europe/Paris,,OIF, +OIF:SP:84:196,1,"Libération",49.16134,1.929691,0,0,OIF:SA:84:196,Europe/Paris,,OIF, +OIF:SP:84:197,1,"Libération",49.161483,1.929635,0,0,OIF:SA:84:196,Europe/Paris,,OIF, +OIF:SP:84:198,1,"Église",49.151472,1.886442,0,0,OIF:SA:84:195,Europe/Paris,,OIF, +OIF:SP:84:199,1,"Bercagny",49.145632,1.901244,0,0,OIF:SA:84:194,Europe/Paris,,OIF, +OIF:SP:84:20,1,"Place du Village",49.15064,2.110425,0,0,OIF:SA:84:20,Europe/Paris,,OIF, +OIF:SP:84:200,1,"Le Pothuis",49.050511,2.104766,0,0,OIF:SA:84:200,Europe/Paris,,OIF, +OIF:SP:84:201,1,"Le Ruisseau",49.055579,2.114068,0,0,OIF:SA:84:201,Europe/Paris,,OIF, +OIF:SP:84:202,1,"Le Chou",49.058658,2.117104,0,0,OIF:SA:84:202,Europe/Paris,,OIF, +OIF:SP:84:203,1,"Chemin des Gares",49.060891,2.11972,0,0,OIF:SA:84:203,Europe/Paris,,OIF, +OIF:SP:84:204,1,"Chemin du Général",49.063658,2.124125,0,0,OIF:SA:84:204,Europe/Paris,,OIF, +OIF:SP:84:205,1,"Valhermeil",49.065874,2.127398,0,0,OIF:SA:84:205,Europe/Paris,,OIF, +OIF:SP:84:206,1,"Chapelle Saint-Nicolas",49.068636,2.134608,0,0,OIF:SA:84:206,Europe/Paris,,OIF, +OIF:SP:84:207,1,"Halte de Chaponval",49.06982,2.144204,0,0,OIF:SA:84:207,Europe/Paris,,OIF, +OIF:SP:84:208,1,"Rue du Four",49.070717,2.148646,0,0,OIF:SA:84:208,Europe/Paris,,OIF, +OIF:SP:84:209,1,"Rue Rémy",49.071291,2.153718,0,0,OIF:SA:84:209,Europe/Paris,,OIF, +OIF:SP:84:21,1,"Héréville Transformateur",49.170375,2.117135,0,0,OIF:SA:84:21,Europe/Paris,,OIF, +OIF:SP:84:210,1,"Boggio",49.069849,2.163269,0,0,OIF:SA:84:210,Europe/Paris,,OIF, +OIF:SP:84:211,1,"Clos du Château",49.070691,2.167383,0,0,OIF:SA:84:211,Europe/Paris,,OIF, +OIF:SP:84:212,1,"Les Côteaux",49.075428,2.162389,0,0,OIF:SA:84:212,Europe/Paris,,OIF, +OIF:SP:84:213,1,"Gendarmerie",49.074907,2.162541,0,0,OIF:SA:84:213,Europe/Paris,,OIF, +OIF:SP:84:214,1,"Château",49.071057,2.165836,0,0,OIF:SA:84:214,Europe/Paris,,OIF, +OIF:SP:84:215,1,"Mairie",49.07062,2.174755,0,0,OIF:SA:84:215,Europe/Paris,,OIF, +OIF:SP:84:216,1,"Cordeville",49.073698,2.184785,0,0,OIF:SA:84:216,Europe/Paris,,OIF, +OIF:SP:84:218,1,"Cordeville",49.07394,2.184907,0,0,OIF:SA:84:216,Europe/Paris,,OIF, +OIF:SP:84:219,1,"Mairie",49.070798,2.173373,0,0,OIF:SA:84:215,Europe/Paris,,OIF, +OIF:SP:84:22,1,"Place du Carrouge",49.180766,2.114527,0,0,OIF:SA:84:22,Europe/Paris,,OIF, +OIF:SP:84:220,1,"Les Côteaux",49.07541,2.162348,0,0,OIF:SA:84:212,Europe/Paris,,OIF, +OIF:SP:84:221,1,"Gendarmerie",49.074925,2.162596,0,0,OIF:SA:84:213,Europe/Paris,,OIF, +OIF:SP:84:222,1,"Château",49.071102,2.165877,0,0,OIF:SA:84:214,Europe/Paris,,OIF, +OIF:SP:84:223,1,"Clos du Château",49.070798,2.16674,0,0,OIF:SA:84:211,Europe/Paris,,OIF, +OIF:SP:84:224,1,"Boggio",49.069875,2.162544,0,0,OIF:SA:84:210,Europe/Paris,,OIF, +OIF:SP:84:225,1,"Rue Rémy",49.07147,2.153307,0,0,OIF:SA:84:209,Europe/Paris,,OIF, +OIF:SP:84:226,1,"Rue du Four",49.070869,2.148262,0,0,OIF:SA:84:208,Europe/Paris,,OIF, +OIF:SP:84:227,1,"Halte de Chaponval",49.069891,2.143274,0,0,OIF:SA:84:207,Europe/Paris,,OIF, +OIF:SP:84:228,1,"Chapelle Saint-Nicolas",49.068572,2.133678,0,0,OIF:SA:84:206,Europe/Paris,,OIF, +OIF:SP:84:229,1,"Valhermeil",49.065964,2.127316,0,0,OIF:SA:84:205,Europe/Paris,,OIF, +OIF:SP:84:23,1,"Margicourt",49.178401,2.10863,0,0,OIF:SA:84:120,Europe/Paris,,OIF, +OIF:SP:84:230,1,"Chemin du Général",49.06299,2.12235,0,0,OIF:SA:84:204,Europe/Paris,,OIF, +OIF:SP:84:231,1,"Chemin des Gares",49.060512,2.118737,0,0,OIF:SA:84:203,Europe/Paris,,OIF, +OIF:SP:84:232,1,"Le Chou",49.058936,2.116952,0,0,OIF:SA:84:202,Europe/Paris,,OIF, +OIF:SP:84:233,1,"Le Ruisseau",49.055848,2.113999,0,0,OIF:SA:84:201,Europe/Paris,,OIF, +OIF:SP:84:234,1,"Le Pothuis",49.050475,2.104452,0,0,OIF:SA:84:200,Europe/Paris,,OIF, +OIF:SP:84:235,1,"Pasteur",49.07974,2.195108,0,0,OIF:SA:84:235,Europe/Paris,,OIF, +OIF:SP:84:238,1,"Gare",49.09187,2.20286,0,0,OIF:SA:8727653,Europe/Paris,,OIF, +OIF:SP:84:239,1,"Collège",49.096919,2.201739,0,0,OIF:SA:84:239,Europe/Paris,,OIF, +OIF:SP:84:24,1,"Myosotis",49.179398,2.104199,0,0,OIF:SA:84:24,Europe/Paris,,OIF, +OIF:SP:84:240,1,"Couture",49.100586,2.202796,0,0,OIF:SA:84:240,Europe/Paris,,OIF, +OIF:SP:84:241,1,"Arcades",49.105746,2.204932,0,0,OIF:SA:84:241,Europe/Paris,,OIF, +OIF:SP:84:242,1,"Mairie / Gare",49.11489,2.209809,0,0,OIF:SA:84:242,Europe/Paris,,OIF, +OIF:SP:84:243,1,"Le Verger",49.123168,2.211951,0,0,OIF:SA:84:243,Europe/Paris,,OIF, +OIF:SP:84:244,1,"Jouy le Comte Église",49.127476,2.207163,0,0,OIF:SA:84:244,Europe/Paris,,OIF, +OIF:SP:84:245,1,"Jouy le Comte Église",49.127413,2.206971,0,0,OIF:SA:84:244,Europe/Paris,,OIF, +OIF:SP:84:246,1,"Le Verger",49.122574,2.211364,0,0,OIF:SA:84:243,Europe/Paris,,OIF, +OIF:SP:84:247,1,"Mairie / Gare",49.114593,2.20933,0,0,OIF:SA:84:242,Europe/Paris,,OIF, +OIF:SP:84:248,1,"Arcades",49.105872,2.204671,0,0,OIF:SA:84:241,Europe/Paris,,OIF, +OIF:SP:84:249,1,"Couture",49.100056,2.202497,0,0,OIF:SA:84:240,Europe/Paris,,OIF, +OIF:SP:84:25,1,"Lavoir",49.193154,2.061433,0,0,OIF:SA:84:25,Europe/Paris,,OIF, +OIF:SP:84:250,1,"Collège",49.096218,2.201166,0,0,OIF:SA:84:239,Europe/Paris,,OIF, +OIF:SP:84:251,1,"Gare",49.091691,2.203449,0,0,OIF:SA:8727653,Europe/Paris,,OIF, +OIF:SP:84:254,1,"Pasteur",49.079649,2.19463,0,0,OIF:SA:84:235,Europe/Paris,,OIF, +OIF:SP:84:255,1,"Rue Massenet",49.088779,2.202211,0,0,OIF:SA:84:255,Europe/Paris,,OIF, +OIF:SP:84:256,1,"Chennevières",49.15611,2.169541,0,0,OIF:SA:84:256,Europe/Paris,,OIF, +OIF:SP:84:257,1,"Mairie",49.154531,2.171217,0,0,OIF:SA:84:257,Europe/Paris,,OIF, +OIF:SP:84:258,1,"Église",49.152056,2.168472,0,0,OIF:SA:84:258,Europe/Paris,,OIF, +OIF:SP:84:259,1,"La Garenne",49.132535,2.170713,0,0,OIF:SA:84:259,Europe/Paris,,OIF, +OIF:SP:84:26,1,"Abri des Vignes",49.190067,2.071223,0,0,OIF:SA:84:26,Europe/Paris,,OIF, +OIF:SP:84:260,1,"Mairie",49.127935,2.171494,0,0,OIF:SA:84:260,Europe/Paris,,OIF, +OIF:SP:84:261,1,"Centre Équestre",49.125153,2.181073,0,0,OIF:SA:84:261,Europe/Paris,,OIF, +OIF:SP:84:262,1,"Verville / la Halte",49.114356,2.17652,0,0,OIF:SA:84:262,Europe/Paris,,OIF, +OIF:SP:84:263,1,"Verville / le Cottage",49.111012,2.175819,0,0,OIF:SA:84:263,Europe/Paris,,OIF, +OIF:SP:84:264,1,"Rue Léon Bernard/Rue Duhamel",49.10596,2.180885,0,0,OIF:SA:84:264,Europe/Paris,,OIF, +OIF:SP:84:265,1,"La Naze",49.101137,2.182596,0,0,OIF:SA:84:265,Europe/Paris,,OIF, +OIF:SP:84:266,1,"Mairie",49.096429,2.189794,0,0,OIF:SA:84:266,Europe/Paris,,OIF, +OIF:SP:84:267,1,"Bois Thibault",49.093926,2.193441,0,0,OIF:SA:84:267,Europe/Paris,,OIF, +OIF:SP:84:268,1,"Préfecture / RER",49.035645,2.081024,0,0,OIF:SA:8738190,Europe/Paris,,OIF, +OIF:SP:84:27,1,"Chemin de la Mare",49.173486,2.053973,0,0,OIF:SA:84:27,Europe/Paris,,OIF, +OIF:SP:84:270,1,"Bois Thibault",49.094124,2.193249,0,0,OIF:SA:84:267,Europe/Paris,,OIF, +OIF:SP:84:271,1,"Mairie",49.096573,2.190067,0,0,OIF:SA:84:266,Europe/Paris,,OIF, +OIF:SP:84:272,1,"La Naze",49.101209,2.182856,0,0,OIF:SA:84:265,Europe/Paris,,OIF, +OIF:SP:84:273,1,"Rue Léon Bernard/Rue Duhamel",49.106104,2.180966,0,0,OIF:SA:84:264,Europe/Paris,,OIF, +OIF:SP:84:274,1,"Verville / le Cottage",49.111633,2.176159,0,0,OIF:SA:84:263,Europe/Paris,,OIF, +OIF:SP:84:275,1,"Verville / la Halte",49.114077,2.176507,0,0,OIF:SA:84:262,Europe/Paris,,OIF, +OIF:SP:84:276,1,"Centre Équestre",49.125235,2.181224,0,0,OIF:SA:84:261,Europe/Paris,,OIF, +OIF:SP:84:277,1,"Mairie",49.128169,2.171726,0,0,OIF:SA:84:260,Europe/Paris,,OIF, +OIF:SP:84:278,1,"La Garenne",49.132113,2.170988,0,0,OIF:SA:84:259,Europe/Paris,,OIF, +OIF:SP:84:282,1,"Mairie",49.147904,2.149583,0,0,OIF:SA:84:104,Europe/Paris,,OIF, +OIF:SP:84:283,1,"Mairie",49.085503,2.198225,0,0,OIF:SA:84:283,Europe/Paris,,OIF, +OIF:SP:84:29,1,"Les Tuileries",49.17757,2.026897,0,0,OIF:SA:84:29,Europe/Paris,,OIF, +OIF:SP:84:290,1,"Mairie",49.085557,2.197746,0,0,OIF:SA:84:283,Europe/Paris,,OIF, +OIF:SP:84:291,1,"Mairie (Feux)",49.063465,2.186333,0,0,OIF:SA:40:386,Europe/Paris,,OIF, +OIF:SP:84:292,1,"Gare",49.05797,2.190478,0,0,OIF:SA:8727666,Europe/Paris,,OIF, +OIF:SP:84:294,1,"Gros Chevaux",49.053712,2.140655,0,0,OIF:SA:84:294,Europe/Paris,,OIF, +OIF:SP:84:295,1,"Antoine Balard",49.052842,2.136584,0,0,OIF:SA:84:295,Europe/Paris,,OIF, +OIF:SP:84:296,1,"Vert Galant",49.051065,2.132681,0,0,OIF:SA:84:296,Europe/Paris,,OIF, +OIF:SP:84:297,1,"Les Béthunes",49.046633,2.13643,0,0,OIF:SA:84:297,Europe/Paris,,OIF, +OIF:SP:84:298,1,"Rue de l'Equerre",49.043313,2.134461,0,0,OIF:SA:84:298,Europe/Paris,,OIF, +OIF:SP:84:3,1,"Myosotis",49.179227,2.103912,0,0,OIF:SA:84:24,Europe/Paris,,OIF, +OIF:SP:84:30,1,"Connebot",49.180487,2.029251,0,0,OIF:SA:84:30,Europe/Paris,,OIF, +OIF:SP:84:301,1,"Rue de l'Equerre",49.043574,2.134474,0,0,OIF:SA:84:298,Europe/Paris,,OIF, +OIF:SP:84:302,1,"Les Béthunes",49.04675,2.136799,0,0,OIF:SA:84:297,Europe/Paris,,OIF, +OIF:SP:84:303,1,"Vert Galant",49.051057,2.133132,0,0,OIF:SA:84:296,Europe/Paris,,OIF, +OIF:SP:84:304,1,"Antoine Balard",49.0527,2.13735,0,0,OIF:SA:84:295,Europe/Paris,,OIF, +OIF:SP:84:305,1,"Gros Chevaux",49.054143,2.140735,0,0,OIF:SA:84:294,Europe/Paris,,OIF, +OIF:SP:84:308,1,"Mairie (Feux)",49.06342,2.186675,0,0,OIF:SA:40:386,Europe/Paris,,OIF, +OIF:SP:84:31,1,"Le Quoniam",49.18025,2.038503,0,0,OIF:SA:84:31,Europe/Paris,,OIF, +OIF:SP:84:312,1,"Les Closeaux",49.110377,1.963559,0,0,OIF:SA:84:312,Europe/Paris,,OIF, +OIF:SP:84:313,1,"Stade",49.105098,1.96498,0,0,OIF:SA:84:313,Europe/Paris,,OIF, +OIF:SP:84:318,1,"Église",49.076731,1.927035,0,0,OIF:SA:84:318,Europe/Paris,,OIF, +OIF:SP:84:32,1,"Rayon",49.172745,2.041082,0,0,OIF:SA:84:32,Europe/Paris,,OIF, +OIF:SP:84:320,1,"Stade",49.104928,1.965255,0,0,OIF:SA:84:313,Europe/Paris,,OIF, +OIF:SP:84:321,1,"Les Closeaux",49.110583,1.96353,0,0,OIF:SA:84:312,Europe/Paris,,OIF, +OIF:SP:84:325,1,"Le Trapil",49.082191,1.931095,0,0,OIF:SA:84:325,Europe/Paris,,OIF, +OIF:SP:84:326,1,"Église",49.07675,1.927253,0,0,OIF:SA:84:318,Europe/Paris,,OIF, +OIF:SP:84:33,1,"Saussette",49.169189,2.038143,0,0,OIF:SA:84:33,Europe/Paris,,OIF, +OIF:SP:84:34,1,"Le Ruel",49.170658,2.025692,0,0,OIF:SA:84:34,Europe/Paris,,OIF, +OIF:SP:84:35,1,"Le Heaulme/École",49.165779,1.999317,0,0,OIF:SA:84:35,Europe/Paris,,OIF, +OIF:SP:84:36,1,"Place",49.168272,1.975883,0,0,OIF:SA:84:36,Europe/Paris,,OIF, +OIF:SP:84:37,1,"Chars la Chapelle",49.16149,1.976534,0,0,OIF:SA:84:37,Europe/Paris,,OIF, +OIF:SP:84:38,1,"Chars la Chapelle",49.161464,1.976767,0,0,OIF:SA:84:37,Europe/Paris,,OIF, +OIF:SP:84:39,1,"Place",49.168138,1.976254,0,0,OIF:SA:84:36,Europe/Paris,,OIF, +OIF:SP:84:4,1,"Margicourt",49.178418,2.10826,0,0,OIF:SA:84:120,Europe/Paris,,OIF, +OIF:SP:84:40,1,"Le Heaulme/École",49.165887,1.999289,0,0,OIF:SA:84:35,Europe/Paris,,OIF, +OIF:SP:84:41,1,"Les Tuileries",49.17757,2.026897,0,0,OIF:SA:84:29,Europe/Paris,,OIF, +OIF:SP:84:42,1,"Chemin de la Mare",49.173342,2.054015,0,0,OIF:SA:84:27,Europe/Paris,,OIF, +OIF:SP:84:43,1,"Abri des Vignes",49.190175,2.071346,0,0,OIF:SA:84:26,Europe/Paris,,OIF, +OIF:SP:84:44,1,"Lavoir",49.193279,2.061432,0,0,OIF:SA:84:25,Europe/Paris,,OIF, +OIF:SP:84:45,1,"La Tuilerie",49.120281,2.05254,0,0,OIF:SA:84:45,Europe/Paris,,OIF, +OIF:SP:84:46,1,"Église",49.122084,2.062921,0,0,OIF:SA:84:46,Europe/Paris,,OIF, +OIF:SP:84:467,1,"Lycée Paul Émile Victor",49.072798,2.07091,0,0,OIF:SA:84:467,Europe/Paris,,OIF, +OIF:SP:84:468,1,"Zone d'Activités",49.099352,2.13587,0,0,OIF:SA:84:468,Europe/Paris,,OIF, +OIF:SP:84:469,1,"Rue Massenet",49.088715,2.201993,0,0,OIF:SA:84:255,Europe/Paris,,OIF, +OIF:SP:84:47,1,"Mairie",49.124021,2.065293,0,0,OIF:SA:84:47,Europe/Paris,,OIF, +OIF:SP:84:470,1,"Saillancourt Place",49.041511,1.972941,0,0,OIF:SA:84:470,Europe/Paris,,OIF, +OIF:SP:84:471,1,"Sagy Place",49.048959,1.952355,0,0,OIF:SA:84:471,Europe/Paris,,OIF, +OIF:SP:84:472,1,"Sagy Place",49.048959,1.952492,0,0,OIF:SA:84:471,Europe/Paris,,OIF, +OIF:SP:84:473,1,"Saillancourt Place",49.041484,1.972846,0,0,OIF:SA:84:470,Europe/Paris,,OIF, +OIF:SP:84:474,1,"Mairie",49.035506,1.866814,0,0,OIF:SA:84:474,Europe/Paris,,OIF, +OIF:SP:84:475,1,"Rueil Place",49.047632,1.877012,0,0,OIF:SA:84:475,Europe/Paris,,OIF, +OIF:SP:84:476,1,"Aubette",49.059798,1.931217,0,0,OIF:SA:84:476,Europe/Paris,,OIF, +OIF:SP:84:477,1,"Église",49.062414,1.931524,0,0,OIF:SA:84:477,Europe/Paris,,OIF, +OIF:SP:84:479,1,"Mairie",49.086833,1.873448,0,0,OIF:SA:21:87,Europe/Paris,,OIF, +OIF:SP:84:48,1,"Stade",49.130544,2.053305,0,0,OIF:SA:84:48,Europe/Paris,,OIF, +OIF:SP:84:480,1,"Église",49.062422,1.931305,0,0,OIF:SA:84:477,Europe/Paris,,OIF, +OIF:SP:84:481,1,"Aubette",49.059743,1.930998,0,0,OIF:SA:84:476,Europe/Paris,,OIF, +OIF:SP:84:482,1,"Rueil Place",49.047576,1.87652,0,0,OIF:SA:84:475,Europe/Paris,,OIF, +OIF:SP:84:483,1,"Mairie",49.035605,1.866732,0,0,OIF:SA:84:474,Europe/Paris,,OIF, +OIF:SP:84:484,1,"Bonneville",49.059013,2.163442,0,0,OIF:SA:40:382,Europe/Paris,,OIF, +OIF:SP:84:485,1,"Vaux",49.058116,2.158632,0,0,OIF:SA:84:485,Europe/Paris,,OIF, +OIF:SP:84:486,1,"Vaux",49.057909,2.158797,0,0,OIF:SA:84:485,Europe/Paris,,OIF, +OIF:SP:84:487,1,"Bonneville",49.058788,2.16358,0,0,OIF:SA:40:382,Europe/Paris,,OIF, +OIF:SP:84:488,1,"Place du Général de Gaulle / Gare",49.047187,2.096237,0,0,OIF:SA:84:488,Europe/Paris,,OIF, +OIF:SP:84:489,1,"Rue du Premier Dragon",49.041963,2.09011,0,0,OIF:SA:84:489,Europe/Paris,,OIF, +OIF:SP:84:49,1,"Soleil Levant",49.133023,2.049074,0,0,OIF:SA:84:49,Europe/Paris,,OIF, +OIF:SP:84:490,1,"Préfecture / RER",49.035949,2.080599,0,0,OIF:SA:8738190,Europe/Paris,,OIF, +OIF:SP:84:491,1,"Rue du Premier Dragon",49.042836,2.090653,0,0,OIF:SA:84:489,Europe/Paris,,OIF, +OIF:SP:84:492,1,"Place du Général de Gaulle / Gare",49.047071,2.096429,0,0,OIF:SA:84:488,Europe/Paris,,OIF, +OIF:SP:84:493,1,"Lycée Paul Émile Victor",49.072798,2.07091,0,0,OIF:SA:84:467,Europe/Paris,,OIF, +OIF:SP:84:494,1,"Lavoir",49.180604,2.105249,0,0,OIF:SA:84:101,Europe/Paris,,OIF, +OIF:SP:84:495,1,"Chemin Roger",49.084136,2.197217,0,0,OIF:SA:84:495,Europe/Paris,,OIF, +OIF:SP:84:496,1,"Place du Général de Gaulle / Gare",49.047294,2.095758,0,0,OIF:SA:84:488,Europe/Paris,,OIF, +OIF:SP:84:497,1,"Chemin Roger",49.084514,2.197516,0,0,OIF:SA:84:495,Europe/Paris,,OIF, +OIF:SP:84:498,1,"Place du Général de Gaulle / Gare",49.047205,2.096141,0,0,OIF:SA:84:488,Europe/Paris,,OIF, +OIF:SP:84:499,1,"Hôpital Jean Baptiste Cartry",49.14691,1.974732,0,0,OIF:SA:84:125,Europe/Paris,,OIF, +OIF:SP:84:5,1,"Place du Carrouge",49.18055,2.114528,0,0,OIF:SA:84:22,Europe/Paris,,OIF, +OIF:SP:84:50,1,"Église",49.142677,2.021985,0,0,OIF:SA:84:50,Europe/Paris,,OIF, +OIF:SP:84:500,1,"Mairie/École",49.17364,2.046915,0,0,OIF:SA:84:500,Europe/Paris,,OIF, +OIF:SP:84:501,1,"Petite Saussette",49.171177,2.039337,0,0,OIF:SA:84:501,Europe/Paris,,OIF, +OIF:SP:84:502,1,"Gare",49.092328,2.202216,0,0,OIF:SA:8727653,Europe/Paris,,OIF, +OIF:SP:84:503,1,"Épiais",49.124768,2.065412,0,0,OIF:SA:84:503,Europe/Paris,,OIF, +OIF:SP:84:504,1,"Le Rosnel",49.153024,2.010264,0,0,OIF:SA:84:100,Europe/Paris,,OIF, +OIF:SP:84:505,1,"Épiais",49.124248,2.06599,0,0,OIF:SA:84:503,Europe/Paris,,OIF, +OIF:SP:84:506,1,"Collège les Hautiers",49.148865,1.985279,0,0,OIF:SA:84:13,Europe/Paris,,OIF, +OIF:SP:84:507,1,"Mairie/École",49.173523,2.046888,0,0,OIF:SA:84:500,Europe/Paris,,OIF, +OIF:SP:84:509,1,"Collège les Hautiers",49.148703,1.985293,0,0,OIF:SA:84:13,Europe/Paris,,OIF, +OIF:SP:84:51,1,"Route d'Us",49.139017,1.985318,0,0,OIF:SA:84:51,Europe/Paris,,OIF, +OIF:SP:84:510,1,"Collège les Hautiers",49.148775,1.985293,0,0,OIF:SA:84:13,Europe/Paris,,OIF, +OIF:SP:84:511,1,"Théméricourt/Pont aux Bois",49.086002,1.898478,0,0,OIF:SA:84:511,Europe/Paris,,OIF, +OIF:SP:84:512,1,"Route de Commeny",49.113005,1.908487,0,0,OIF:SA:84:512,Europe/Paris,,OIF, +OIF:SP:84:513,1,"Collège les Hautiers",49.148604,1.985239,0,0,OIF:SA:84:13,Europe/Paris,,OIF, +OIF:SP:84:514,1,"Route de Commeny",49.112978,1.908405,0,0,OIF:SA:84:512,Europe/Paris,,OIF, +OIF:SP:84:515,1,"Mairie",49.086698,1.873367,0,0,OIF:SA:21:87,Europe/Paris,,OIF, +OIF:SP:84:516,1,"Méry ZA",49.056564,2.172967,0,0,OIF:SA:84:516,Europe/Paris,,OIF, +OIF:SP:84:517,1,"Méry ZA",49.056465,2.173241,0,0,OIF:SA:84:516,Europe/Paris,,OIF, +OIF:SP:84:518,1,"Église",49.119735,2.001371,0,0,OIF:SA:84:518,Europe/Paris,,OIF, +OIF:SP:84:52,1,"Place Peyron",49.1431,1.980552,0,0,OIF:SA:84:508,Europe/Paris,,OIF, +OIF:SP:84:53,1,"Place Dubois Danger",49.14544,1.984727,0,0,OIF:SA:84:53,Europe/Paris,,OIF, +OIF:SP:84:54,1,"Place Dubois Danger",49.145475,1.984507,0,0,OIF:SA:84:53,Europe/Paris,,OIF, +OIF:SP:84:55,1,"Place Peyron",49.14283,1.980485,0,0,OIF:SA:84:508,Europe/Paris,,OIF, +OIF:SP:84:56,1,"Route d'Us",49.139141,1.984934,0,0,OIF:SA:84:51,Europe/Paris,,OIF, +OIF:SP:84:57,1,"Église",49.142371,2.021726,0,0,OIF:SA:84:50,Europe/Paris,,OIF, +OIF:SP:84:58,1,"Soleil Levant",49.132762,2.048993,0,0,OIF:SA:84:49,Europe/Paris,,OIF, +OIF:SP:84:59,1,"Stade",49.130391,2.05332,0,0,OIF:SA:84:48,Europe/Paris,,OIF, +OIF:SP:84:6,1,"Héréville Transformateur",49.170519,2.117271,0,0,OIF:SA:84:21,Europe/Paris,,OIF, +OIF:SP:84:60,1,"Mairie",49.124273,2.065388,0,0,OIF:SA:84:47,Europe/Paris,,OIF, +OIF:SP:84:61,1,"Église",49.122255,2.062907,0,0,OIF:SA:84:46,Europe/Paris,,OIF, +OIF:SP:84:62,1,"La Tuilerie",49.120461,2.052772,0,0,OIF:SA:84:45,Europe/Paris,,OIF, +OIF:SP:84:63,1,"Transformateur",49.091283,1.981635,0,0,OIF:SA:84:63,Europe/Paris,,OIF, +OIF:SP:84:64,1,"Mairie",49.101384,1.966909,0,0,OIF:SA:84:64,Europe/Paris,,OIF, +OIF:SP:84:65,1,"Église",49.119842,2.001138,0,0,OIF:SA:84:518,Europe/Paris,,OIF, +OIF:SP:84:66,1,"Route de Frémécourt",49.11982,2.012487,0,0,OIF:SA:84:66,Europe/Paris,,OIF, +OIF:SP:84:67,1,"Artimont / D915",49.125626,2.000251,0,0,OIF:SA:84:67,Europe/Paris,,OIF, +OIF:SP:84:68,1,"Artimont / D915",49.126431,1.998918,0,0,OIF:SA:84:67,Europe/Paris,,OIF, +OIF:SP:84:69,1,"Route de Frémécourt",49.119765,2.012336,0,0,OIF:SA:84:66,Europe/Paris,,OIF, +OIF:SP:84:7,1,"Place du Village",49.15064,2.110425,0,0,OIF:SA:84:20,Europe/Paris,,OIF, +OIF:SP:84:70,1,"Église",49.119735,2.001371,0,0,OIF:SA:84:518,Europe/Paris,,OIF, +OIF:SP:84:71,1,"Mairie",49.101267,1.966868,0,0,OIF:SA:84:64,Europe/Paris,,OIF, +OIF:SP:84:72,1,"Transformateur",49.091021,1.981144,0,0,OIF:SA:84:63,Europe/Paris,,OIF, +OIF:SP:84:75,1,"Le Rosnel",49.153032,2.010195,0,0,OIF:SA:84:100,Europe/Paris,,OIF, +OIF:SP:84:76,1,"Gérocourt Centre",49.102912,2.05644,0,0,OIF:SA:84:76,Europe/Paris,,OIF, +OIF:SP:84:77,1,"Gérocourt Chapelle",49.101583,2.056735,0,0,OIF:SA:84:77,Europe/Paris,,OIF, +OIF:SP:84:78,1,"Rue des Fossettes",49.087978,2.068192,0,0,OIF:SA:84:78,Europe/Paris,,OIF, +OIF:SP:84:8,1,"Mairie/Église",49.138865,2.112969,0,0,OIF:SA:84:19,Europe/Paris,,OIF, +OIF:SP:84:80,1,"Demi Lieu",49.071722,2.080531,0,0,OIF:SA:84:80,Europe/Paris,,OIF, +OIF:SP:84:81,1,"Louvrais",49.059655,2.085267,0,0,OIF:SA:84:81,Europe/Paris,,OIF, +OIF:SP:84:82,1,"Lycée Pissarro",49.058292,2.090634,0,0,OIF:SA:84:159,Europe/Paris,,OIF, +OIF:SP:84:83,1,"Citadelle",49.052667,2.095186,0,0,OIF:SA:84:83,Europe/Paris,,OIF, +OIF:SP:84:84,1,"Poste",49.051534,2.099457,0,0,OIF:SA:84:84,Europe/Paris,,OIF, +OIF:SP:84:85,1,"Hôtel Dieu",49.047401,2.099722,0,0,OIF:SA:84:85,Europe/Paris,,OIF, +OIF:SP:84:87,1,"Préfecture / RER",49.03611,2.080339,0,0,OIF:SA:8738190,Europe/Paris,,OIF, +OIF:SP:84:88,1,"Préfecture / RER",49.036191,2.080188,0,0,OIF:SA:8738190,Europe/Paris,,OIF, +OIF:SP:84:9,1,"Rhus",49.143008,2.077848,0,0,OIF:SA:84:18,Europe/Paris,,OIF, +OIF:SP:84:90,1,"Hôtel Dieu",49.047897,2.100567,0,0,OIF:SA:84:85,Europe/Paris,,OIF, +OIF:SP:84:91,1,"Poste",49.05173,2.098485,0,0,OIF:SA:84:84,Europe/Paris,,OIF, +OIF:SP:84:92,1,"Citadelle",49.053241,2.094719,0,0,OIF:SA:84:83,Europe/Paris,,OIF, +OIF:SP:84:93,1,"Lycée Pissarro",49.057017,2.091406,0,0,OIF:SA:84:159,Europe/Paris,,OIF, +OIF:SP:84:94,1,"Louvrais",49.060034,2.08599,0,0,OIF:SA:84:81,Europe/Paris,,OIF, +OIF:SP:84:95,1,"Demi Lieu",49.071546,2.081817,0,0,OIF:SA:84:80,Europe/Paris,,OIF, +OIF:SP:84:97,1,"Rue des Fossettes",49.087682,2.068686,0,0,OIF:SA:84:78,Europe/Paris,,OIF, +OIF:SP:84:98,1,"Gérocourt Chapelle",49.101727,2.056885,0,0,OIF:SA:84:77,Europe/Paris,,OIF, +OIF:SP:84:99,1,"Gérocourt Centre",49.102796,2.056646,0,0,OIF:SA:84:76,Europe/Paris,,OIF, +OIF:SP:86:10,1,"Fragonard",49.004001,1.682085,0,0,OIF:SA:81:15768,Europe/Paris,,OIF, +OIF:SP:86:100,1,"Mairie",48.98058,1.672101,0,0,OIF:SA:81:15869,Europe/Paris,,OIF, +OIF:SP:86:101,1,"Aureines",48.979375,1.676731,0,0,OIF:SA:81:15871,Europe/Paris,,OIF, +OIF:SP:86:102,1,"Chemin de Fontenay",48.978804,1.680684,0,0,OIF:SA:86:102,Europe/Paris,,OIF, +OIF:SP:86:104,1,"Chemin de Fontenay",48.979024,1.679862,0,0,OIF:SA:86:102,Europe/Paris,,OIF, +OIF:SP:86:105,1,"Aureines",48.979509,1.676688,0,0,OIF:SA:81:15871,Europe/Paris,,OIF, +OIF:SP:86:106,1,"Mairie",48.98016,1.672543,0,0,OIF:SA:81:15869,Europe/Paris,,OIF, +OIF:SP:86:107,1,"Gamelines",48.990779,1.676681,0,0,OIF:SA:81:15712,Europe/Paris,,OIF, +OIF:SP:86:108,1,"Champs Odés",48.993557,1.675361,0,0,OIF:SA:81:15867,Europe/Paris,,OIF, +OIF:SP:86:109,1,"Nungesser",49.001507,1.678032,0,0,OIF:SA:86:109,Europe/Paris,,OIF, +OIF:SP:86:11,1,"Aqualude",49.003991,1.678643,0,0,OIF:SA:81:15763,Europe/Paris,,OIF, +OIF:SP:86:110,1,"Godeau",49.003476,1.684605,0,0,OIF:SA:86:110,Europe/Paris,,OIF, +OIF:SP:86:112,1,"Plaisances",48.976312,1.703514,0,0,OIF:SA:86:112,Europe/Paris,,OIF, +OIF:SP:86:114,1,"Braunstein",48.997409,1.706233,0,0,OIF:SA:86:114,Europe/Paris,,OIF, +OIF:SP:86:115,1,"Marcel Tabu",48.996964,1.708765,0,0,OIF:SA:81:15794,Europe/Paris,,OIF, +OIF:SP:86:116,1,"IUT Intermarché",48.996697,1.710913,0,0,OIF:SA:86:116,Europe/Paris,,OIF, +OIF:SP:86:117,1,"Castor",48.994628,1.714093,0,0,OIF:SA:86:117,Europe/Paris,,OIF, +OIF:SP:86:118,1,"Henri Clérisse",48.992382,1.717547,0,0,OIF:SA:86:118,Europe/Paris,,OIF, +OIF:SP:86:119,1,"Mantes-Station",48.982291,1.716153,0,0,OIF:SA:8738159,Europe/Paris,,OIF, +OIF:SP:86:12,1,"Aqualude",49.0041,1.678874,0,0,OIF:SA:81:15763,Europe/Paris,,OIF, +OIF:SP:86:120,1,"Mairie",48.978211,1.714386,0,0,OIF:SA:86:120,Europe/Paris,,OIF, +OIF:SP:86:121,1,"Ravine",48.975646,1.711837,0,0,OIF:SA:86:121,Europe/Paris,,OIF, +OIF:SP:86:122,1,"Valmonts",48.975028,1.708786,0,0,OIF:SA:86:122,Europe/Paris,,OIF, +OIF:SP:86:123,1,"Jean Moulin",48.975198,1.703624,0,0,OIF:SA:86:123,Europe/Paris,,OIF, +OIF:SP:86:124,1,"Gare Routière Mantes-la-Ville - Quai 22",48.988089,1.704422,0,0,OIF:SA:8738150,Europe/Paris,,OIF, +OIF:SP:86:125,1,"Place du Commerce",48.984602,1.695862,0,0,OIF:SA:86:125,Europe/Paris,,OIF, +OIF:SP:86:126,1,"Rouen",48.983277,1.695278,0,0,OIF:SA:86:126,Europe/Paris,,OIF, +OIF:SP:86:127,1,"Brouets",48.981828,1.696497,0,0,OIF:SA:86:127,Europe/Paris,,OIF, +OIF:SP:86:128,1,"Chemin de Dreux",48.978744,1.699621,0,0,OIF:SA:86:128,Europe/Paris,,OIF, +OIF:SP:86:129,1,"Belles Lances",48.975995,1.699696,0,0,OIF:SA:86:129,Europe/Paris,,OIF, +OIF:SP:86:13,1,"Fragonard",49.003913,1.682359,0,0,OIF:SA:81:15768,Europe/Paris,,OIF, +OIF:SP:86:130,1,"Saint-Étienne",48.973017,1.71266,0,0,OIF:SA:86:130,Europe/Paris,,OIF, +OIF:SP:86:131,1,"Belles Lances",48.976076,1.699736,0,0,OIF:SA:86:129,Europe/Paris,,OIF, +OIF:SP:86:132,1,"Chemin de Dreux",48.978124,1.699506,0,0,OIF:SA:86:128,Europe/Paris,,OIF, +OIF:SP:86:133,1,"Brouets",48.982007,1.696304,0,0,OIF:SA:86:127,Europe/Paris,,OIF, +OIF:SP:86:134,1,"Rouen",48.98335,1.695359,0,0,OIF:SA:86:126,Europe/Paris,,OIF, +OIF:SP:86:135,1,"Place du Commerce",48.984495,1.696177,0,0,OIF:SA:86:125,Europe/Paris,,OIF, +OIF:SP:86:136,1,"Marronniers",48.9696,1.68708,0,0,OIF:SA:86:136,Europe/Paris,,OIF, +OIF:SP:86:137,1,"Bel Air",48.970499,1.690413,0,0,OIF:SA:86:137,Europe/Paris,,OIF, +OIF:SP:86:138,1,"Graviers-Brosses",48.97273,1.692542,0,0,OIF:SA:86:138,Europe/Paris,,OIF, +OIF:SP:86:139,1,"Graviers-Mongazons",48.974658,1.695139,0,0,OIF:SA:86:139,Europe/Paris,,OIF, +OIF:SP:86:140,1,"Pierrettes",48.976325,1.695965,0,0,OIF:SA:86:140,Europe/Paris,,OIF, +OIF:SP:86:141,1,"Saint-Étienne",48.973988,1.712812,0,0,OIF:SA:86:130,Europe/Paris,,OIF, +OIF:SP:86:142,1,"Pierrettes",48.976162,1.695762,0,0,OIF:SA:86:140,Europe/Paris,,OIF, +OIF:SP:86:143,1,"Graviers-Mongazons",48.974432,1.694787,0,0,OIF:SA:86:139,Europe/Paris,,OIF, +OIF:SP:86:144,1,"Graviers-Brosses",48.972684,1.692269,0,0,OIF:SA:86:138,Europe/Paris,,OIF, +OIF:SP:86:145,1,"Bel Air",48.970489,1.690263,0,0,OIF:SA:86:137,Europe/Paris,,OIF, +OIF:SP:86:146,1,"Gare Routière Mantes-la-Ville - Quai 21",48.988133,1.704271,0,0,OIF:SA:8738150,Europe/Paris,,OIF, +OIF:SP:86:147,1,"Gare Routière Mantes-la-Jolie - Quai 8",48.98956,1.703939,0,0,OIF:SA:8738150,Europe/Paris,,OIF, +OIF:SP:86:148,1,"Calmette",48.983619,1.715741,0,0,OIF:SA:8738159,Europe/Paris,,OIF, +OIF:SP:86:149,1,"Coteau",48.983672,1.722376,0,0,OIF:SA:86:149,Europe/Paris,,OIF, +OIF:SP:86:15,1,"Doret",49.001144,1.683938,0,0,OIF:SA:81:6845,Europe/Paris,,OIF, +OIF:SP:86:150,1,"Saint-Bonaventure",48.984989,1.721609,0,0,OIF:SA:86:150,Europe/Paris,,OIF, +OIF:SP:86:151,1,"Porte aux Saints",48.986622,1.717698,0,0,OIF:SA:86:151,Europe/Paris,,OIF, +OIF:SP:86:152,1,"Clos Pasteur",48.997594,1.702052,0,0,OIF:SA:86:152,Europe/Paris,,OIF, +OIF:SP:86:153,1,"Cité des Clos",48.995906,1.704203,0,0,OIF:SA:86:153,Europe/Paris,,OIF, +OIF:SP:86:154,1,"Toutain",48.994344,1.706216,0,0,OIF:SA:86:154,Europe/Paris,,OIF, +OIF:SP:86:155,1,"Denfert-Rochereau",48.992328,1.708958,0,0,OIF:SA:86:155,Europe/Paris,,OIF, +OIF:SP:86:156,1,"Poste",48.981332,1.711454,0,0,OIF:SA:86:156,Europe/Paris,,OIF, +OIF:SP:86:157,1,"Valogne",48.985243,1.705003,0,0,OIF:SA:86:157,Europe/Paris,,OIF, +OIF:SP:86:158,1,"Meuniers",48.98366,1.69956,0,0,OIF:SA:86:158,Europe/Paris,,OIF, +OIF:SP:86:161,1,"Meuniers",48.983738,1.700734,0,0,OIF:SA:86:158,Europe/Paris,,OIF, +OIF:SP:86:162,1,"Valogne",48.985162,1.704935,0,0,OIF:SA:86:157,Europe/Paris,,OIF, +OIF:SP:86:163,1,"Poste",48.981403,1.711207,0,0,OIF:SA:86:156,Europe/Paris,,OIF, +OIF:SP:86:164,1,"Denfert-Rochereau",48.992407,1.708698,0,0,OIF:SA:86:155,Europe/Paris,,OIF, +OIF:SP:86:165,1,"Toutain",48.994774,1.705815,0,0,OIF:SA:86:154,Europe/Paris,,OIF, +OIF:SP:86:166,1,"Cité des Clos",48.996122,1.704105,0,0,OIF:SA:86:153,Europe/Paris,,OIF, +OIF:SP:86:167,1,"Clos Pasteur",48.99788,1.701857,0,0,OIF:SA:86:152,Europe/Paris,,OIF, +OIF:SP:86:168,1,"Mairie",48.966693,1.681301,0,0,OIF:SA:81:6738,Europe/Paris,,OIF, +OIF:SP:86:169,1,"Mare Pasloue",48.96667,1.683813,0,0,OIF:SA:86:169,Europe/Paris,,OIF, +OIF:SP:86:17,1,"Hôpital François Quesnay",48.998598,1.676772,0,0,OIF:SA:81:15780,Europe/Paris,,OIF, +OIF:SP:86:170,1,"Roussières",48.966008,1.689159,0,0,OIF:SA:86:170,Europe/Paris,,OIF, +OIF:SP:86:171,1,"Anjou",48.965948,1.69137,0,0,OIF:SA:86:171,Europe/Paris,,OIF, +OIF:SP:86:172,1,"Touraine",48.966888,1.694116,0,0,OIF:SA:86:172,Europe/Paris,,OIF, +OIF:SP:86:173,1,"Thymerais",48.968296,1.693525,0,0,OIF:SA:86:173,Europe/Paris,,OIF, +OIF:SP:86:174,1,"Lorraine",48.969809,1.694066,0,0,OIF:SA:86:174,Europe/Paris,,OIF, +OIF:SP:86:175,1,"Penthièvre",48.970532,1.696651,0,0,OIF:SA:86:175,Europe/Paris,,OIF, +OIF:SP:86:176,1,"Merles",48.972076,1.697983,0,0,OIF:SA:86:176,Europe/Paris,,OIF, +OIF:SP:86:177,1,"Bates",48.980516,1.704965,0,0,OIF:SA:86:177,Europe/Paris,,OIF, +OIF:SP:86:178,1,"Sacré Cœur",48.983857,1.707969,0,0,OIF:SA:86:178,Europe/Paris,,OIF, +OIF:SP:86:179,1,"Gare Routière Mantes-la-Ville - Quai 23",48.988018,1.704573,0,0,OIF:SA:8738150,Europe/Paris,,OIF, +OIF:SP:86:18,1,"Général de Gaulle",48.99636,1.680037,0,0,OIF:SA:81:15761,Europe/Paris,,OIF, +OIF:SP:86:180,1,"Chemin de Dreux",48.978843,1.699647,0,0,OIF:SA:86:128,Europe/Paris,,OIF, +OIF:SP:86:182,1,"René Renault",48.981568,1.663964,0,0,OIF:SA:86:182,Europe/Paris,,OIF, +OIF:SP:86:183,1,"Pasteur",48.979497,1.671254,0,0,OIF:SA:86:183,Europe/Paris,,OIF, +OIF:SP:86:185,1,"Tilleuls",48.97705,1.685361,0,0,OIF:SA:81:15739,Europe/Paris,,OIF, +OIF:SP:86:186,1,"Ormes",48.974606,1.682157,0,0,OIF:SA:81:15738,Europe/Paris,,OIF, +OIF:SP:86:187,1,"Cytises",48.971052,1.683048,0,0,OIF:SA:81:15736,Europe/Paris,,OIF, +OIF:SP:86:188,1,"Mongazons",48.974969,1.692814,0,0,OIF:SA:81:6744,Europe/Paris,,OIF, +OIF:SP:86:189,1,"Mongazons",48.97487,1.692774,0,0,OIF:SA:81:6744,Europe/Paris,,OIF, +OIF:SP:86:19,1,"Lavoisier",48.995998,1.684563,0,0,OIF:SA:81:6888,Europe/Paris,,OIF, +OIF:SP:86:190,1,"Merles",48.971942,1.697971,0,0,OIF:SA:86:176,Europe/Paris,,OIF, +OIF:SP:86:191,1,"Penthièvre",48.970367,1.696038,0,0,OIF:SA:86:175,Europe/Paris,,OIF, +OIF:SP:86:192,1,"Lorraine",48.969681,1.693754,0,0,OIF:SA:86:174,Europe/Paris,,OIF, +OIF:SP:86:193,1,"Thymerais",48.96817,1.693568,0,0,OIF:SA:86:173,Europe/Paris,,OIF, +OIF:SP:86:194,1,"Touraine",48.966914,1.693965,0,0,OIF:SA:86:172,Europe/Paris,,OIF, +OIF:SP:86:195,1,"Anjou",48.966082,1.691314,0,0,OIF:SA:86:171,Europe/Paris,,OIF, +OIF:SP:86:196,1,"Roussières",48.966088,1.689048,0,0,OIF:SA:86:170,Europe/Paris,,OIF, +OIF:SP:86:197,1,"Mare Pasloue",48.966778,1.683812,0,0,OIF:SA:86:169,Europe/Paris,,OIF, +OIF:SP:86:198,1,"Cytises",48.971498,1.68251,0,0,OIF:SA:81:15736,Europe/Paris,,OIF, +OIF:SP:86:199,1,"Ormes",48.974671,1.682579,0,0,OIF:SA:81:15738,Europe/Paris,,OIF, +OIF:SP:86:2,1,"Gare Routière Mantes-la-Jolie - Quai 1",48.990023,1.702964,0,0,OIF:SA:8738150,Europe/Paris,,OIF, +OIF:SP:86:20,1,"Route de Buchelay",48.995755,1.687734,0,0,OIF:SA:81:15790,Europe/Paris,,OIF, +OIF:SP:86:200,1,"Tilleuls",48.977033,1.685525,0,0,OIF:SA:81:15739,Europe/Paris,,OIF, +OIF:SP:86:202,1,"René Renault",48.981234,1.665265,0,0,OIF:SA:86:182,Europe/Paris,,OIF, +OIF:SP:86:203,1,"Collège George Sand",48.968742,1.686285,0,0,OIF:SA:81:14819,Europe/Paris,,OIF, +OIF:SP:86:204,1,"Val Saint-Georges",48.982084,1.69734,0,0,OIF:SA:86:204,Europe/Paris,,OIF, +OIF:SP:86:206,1,"Vallée",48.975992,1.645988,0,0,OIF:SA:86:206,Europe/Paris,,OIF, +OIF:SP:86:207,1,"Mairie de Jouy-Mauvoisin",48.974671,1.64905,0,0,OIF:SA:86:207,Europe/Paris,,OIF, +OIF:SP:86:208,1,"Graviers",48.970501,1.68584,0,0,OIF:SA:86:208,Europe/Paris,,OIF, +OIF:SP:86:209,1,"Mongazons",48.974767,1.69197,0,0,OIF:SA:81:6744,Europe/Paris,,OIF, +OIF:SP:86:21,1,"Gare Routière Mantes-la-Jolie",48.990296,1.702073,0,0,OIF:SA:8738150,Europe/Paris,,OIF, +OIF:SP:86:210,1,"Val Saint-Georges",48.98196,1.697642,0,0,OIF:SA:86:204,Europe/Paris,,OIF, +OIF:SP:86:211,1,"Domaine de la Vallée",48.970225,1.718427,0,0,OIF:SA:86:211,Europe/Paris,,OIF, +OIF:SP:86:212,1,"Hauts Villiers",48.973691,1.719587,0,0,OIF:SA:86:212,Europe/Paris,,OIF, +OIF:SP:86:213,1,"Bièvre",48.972772,1.720881,0,0,OIF:SA:86:213,Europe/Paris,,OIF, +OIF:SP:86:214,1,"Cernay",48.970857,1.720726,0,0,OIF:SA:86:214,Europe/Paris,,OIF, +OIF:SP:86:215,1,"Rosay",48.968686,1.72153,0,0,OIF:SA:86:215,Europe/Paris,,OIF, +OIF:SP:86:216,1,"Touques",48.966611,1.721569,0,0,OIF:SA:86:216,Europe/Paris,,OIF, +OIF:SP:86:217,1,"Varennes",48.964435,1.719752,0,0,OIF:SA:86:217,Europe/Paris,,OIF, +OIF:SP:86:218,1,"Odet",48.963706,1.717782,0,0,OIF:SA:86:218,Europe/Paris,,OIF, +OIF:SP:86:219,1,"Mateau",48.975049,1.718014,0,0,OIF:SA:86:219,Europe/Paris,,OIF, +OIF:SP:86:22,1,"Résidence du Lac",48.999887,1.702365,0,0,OIF:SA:81:15786,Europe/Paris,,OIF, +OIF:SP:86:220,1,"Louise Michel",48.985054,1.708186,0,0,OIF:SA:86:220,Europe/Paris,,OIF, +OIF:SP:86:221,1,"Parking Saint-Exupéry",48.996711,1.691656,0,0,OIF:SA:81:15497,Europe/Paris,,OIF, +OIF:SP:86:222,1,"Lyre",48.963215,1.713201,0,0,OIF:SA:86:222,Europe/Paris,,OIF, +OIF:SP:86:223,1,"Chenonceaux",48.966001,1.713318,0,0,OIF:SA:86:223,Europe/Paris,,OIF, +OIF:SP:86:224,1,"Centre Commercial",48.969319,1.717018,0,0,OIF:SA:86:224,Europe/Paris,,OIF, +OIF:SP:86:225,1,"Université",48.988369,1.697918,0,0,OIF:SA:86:225,Europe/Paris,,OIF, +OIF:SP:86:226,1,"Chemin des Meuniers",48.988313,1.687514,0,0,OIF:SA:86:226,Europe/Paris,,OIF, +OIF:SP:86:227,1,"Innovaparc",48.986911,1.680936,0,0,OIF:SA:86:227,Europe/Paris,,OIF, +OIF:SP:86:229,1,"Mateau",48.974777,1.717512,0,0,OIF:SA:86:219,Europe/Paris,,OIF, +OIF:SP:86:23,1,"Sainte-Anne",49.002055,1.697845,0,0,OIF:SA:81:15792,Europe/Paris,,OIF, +OIF:SP:86:230,1,"Centre Commercial",48.970146,1.717049,0,0,OIF:SA:86:224,Europe/Paris,,OIF, +OIF:SP:86:231,1,"Hauts Villiers",48.973691,1.719587,0,0,OIF:SA:86:212,Europe/Paris,,OIF, +OIF:SP:86:232,1,"Bièvre",48.972772,1.720881,0,0,OIF:SA:86:213,Europe/Paris,,OIF, +OIF:SP:86:233,1,"Cernay",48.970857,1.720726,0,0,OIF:SA:86:214,Europe/Paris,,OIF, +OIF:SP:86:234,1,"Rosay",48.968686,1.72153,0,0,OIF:SA:86:215,Europe/Paris,,OIF, +OIF:SP:86:235,1,"Touques",48.966611,1.721569,0,0,OIF:SA:86:216,Europe/Paris,,OIF, +OIF:SP:86:236,1,"Varennes",48.964435,1.719752,0,0,OIF:SA:86:217,Europe/Paris,,OIF, +OIF:SP:86:237,1,"Odet",48.963706,1.717782,0,0,OIF:SA:86:218,Europe/Paris,,OIF, +OIF:SP:86:238,1,"Lyre",48.963215,1.713201,0,0,OIF:SA:86:222,Europe/Paris,,OIF, +OIF:SP:86:239,1,"Chenonceaux",48.966001,1.713318,0,0,OIF:SA:86:223,Europe/Paris,,OIF, +OIF:SP:86:24,1,"Port Fouquet",49.004171,1.696931,0,0,OIF:SA:86:24,Europe/Paris,,OIF, +OIF:SP:86:240,1,"I.M.E",48.954659,1.716512,0,0,OIF:SA:86:240,Europe/Paris,,OIF, +OIF:SP:86:242,1,"Innovaparc",48.986888,1.681633,0,0,OIF:SA:86:227,Europe/Paris,,OIF, +OIF:SP:86:243,1,"Chemin des Meuniers",48.988287,1.687691,0,0,OIF:SA:86:226,Europe/Paris,,OIF, +OIF:SP:86:244,1,"Université",48.988262,1.698015,0,0,OIF:SA:86:225,Europe/Paris,,OIF, +OIF:SP:86:25,1,"Clinique",49.004583,1.695,0,0,OIF:SA:86:25,Europe/Paris,,OIF, +OIF:SP:86:26,1,"Garennes",49.002816,1.692235,0,0,OIF:SA:86:26,Europe/Paris,,OIF, +OIF:SP:86:263,1,"Carnot",48.987133,1.708789,0,0,OIF:SA:81:15935,Europe/Paris,,OIF, +OIF:SP:86:277,1,"Croix Brisée",48.992965,1.640681,0,0,OIF:SA:86:277,Europe/Paris,,OIF, +OIF:SP:86:278,1,"Pont Chapart",48.995765,1.635427,0,0,OIF:SA:86:278,Europe/Paris,,OIF, +OIF:SP:86:279,1,"Gare de Rosny-sur-Seine",48.996953,1.631218,0,0,OIF:SA:86:279,Europe/Paris,,OIF, +OIF:SP:86:29,1,"Patinoire",48.997546,1.688231,0,0,OIF:SA:86:29,Europe/Paris,,OIF, +OIF:SP:86:3,1,"Route de Buchelay",48.996058,1.687293,0,0,OIF:SA:81:15790,Europe/Paris,,OIF, +OIF:SP:86:30,1,"Géo André",48.995186,1.692112,0,0,OIF:SA:81:6864,Europe/Paris,,OIF, +OIF:SP:86:304,1,"Pont Chapart",48.995807,1.634962,0,0,OIF:SA:86:278,Europe/Paris,,OIF, +OIF:SP:86:305,1,"Croix Brisée",48.992874,1.640587,0,0,OIF:SA:86:277,Europe/Paris,,OIF, +OIF:SP:86:306,1,"Gustave Eiffel",48.994464,1.652789,0,0,OIF:SA:86:306,Europe/Paris,,OIF, +OIF:SP:86:307,1,"Les Marceaux",48.990612,1.653386,0,0,OIF:SA:86:307,Europe/Paris,,OIF, +OIF:SP:86:308,1,"Les Marceaux",48.990675,1.653535,0,0,OIF:SA:86:307,Europe/Paris,,OIF, +OIF:SP:86:309,1,"Gustave Eiffel",48.99456,1.652432,0,0,OIF:SA:86:306,Europe/Paris,,OIF, +OIF:SP:86:31,1,"Édouard Vaillant",48.994115,1.69528,0,0,OIF:SA:81:6847,Europe/Paris,,OIF, +OIF:SP:86:311,1,"Bois Moulin",48.998174,1.646279,0,0,OIF:SA:86:311,Europe/Paris,,OIF, +OIF:SP:86:314,1,"Avenue des Cygnes",48.997066,1.714541,0,0,OIF:SA:86:314,Europe/Paris,,OIF, +OIF:SP:86:315,1,"Quai de la Tour",48.995752,1.715827,0,0,OIF:SA:86:315,Europe/Paris,,OIF, +OIF:SP:86:316,1,"Quai de la Tour",48.996361,1.715465,0,0,OIF:SA:86:315,Europe/Paris,,OIF, +OIF:SP:86:317,1,"Avenue des Cygnes",48.997729,1.714069,0,0,OIF:SA:86:314,Europe/Paris,,OIF, +OIF:SP:86:319,1,"Béarn",48.989453,1.66449,0,0,OIF:SA:86:319,Europe/Paris,,OIF, +OIF:SP:86:32,1,"Gare Routière Mantes-la-Jolie - Quai 2",48.990119,1.70258,0,0,OIF:SA:8738150,Europe/Paris,,OIF, +OIF:SP:86:320,1,"Durance",48.990564,1.670415,0,0,OIF:SA:86:320,Europe/Paris,,OIF, +OIF:SP:86:321,1,"Verdon",48.989778,1.674427,0,0,OIF:SA:86:321,Europe/Paris,,OIF, +OIF:SP:86:322,1,"Garonne",48.988816,1.676091,0,0,OIF:SA:86:322,Europe/Paris,,OIF, +OIF:SP:86:323,1,"Rond-Point",48.987849,1.67665,0,0,OIF:SA:86:323,Europe/Paris,,OIF, +OIF:SP:86:324,1,"Lot",48.988642,1.678688,0,0,OIF:SA:86:324,Europe/Paris,,OIF, +OIF:SP:86:325,1,"Champs Odés",48.992318,1.677098,0,0,OIF:SA:81:15867,Europe/Paris,,OIF, +OIF:SP:86:326,1,"Closeaux",48.991803,1.683127,0,0,OIF:SA:86:326,Europe/Paris,,OIF, +OIF:SP:86:327,1,"Piquettes",48.991909,1.686171,0,0,OIF:SA:86:327,Europe/Paris,,OIF, +OIF:SP:86:328,1,"Piquettes",48.991945,1.686061,0,0,OIF:SA:86:327,Europe/Paris,,OIF, +OIF:SP:86:329,1,"Closeaux",48.991919,1.683044,0,0,OIF:SA:86:326,Europe/Paris,,OIF, +OIF:SP:86:33,1,"Édouard Vaillant",48.994672,1.695082,0,0,OIF:SA:81:6847,Europe/Paris,,OIF, +OIF:SP:86:330,1,"Champs Odés",48.992408,1.677165,0,0,OIF:SA:81:15867,Europe/Paris,,OIF, +OIF:SP:86:331,1,"Lot",48.988668,1.678551,0,0,OIF:SA:86:324,Europe/Paris,,OIF, +OIF:SP:86:332,1,"Rond-Point",48.98792,1.676512,0,0,OIF:SA:86:323,Europe/Paris,,OIF, +OIF:SP:86:333,1,"Garonne",48.988926,1.676336,0,0,OIF:SA:86:322,Europe/Paris,,OIF, +OIF:SP:86:334,1,"Verdon",48.989868,1.674439,0,0,OIF:SA:86:321,Europe/Paris,,OIF, +OIF:SP:86:335,1,"Durance",48.990654,1.670469,0,0,OIF:SA:86:320,Europe/Paris,,OIF, +OIF:SP:86:336,1,"Béarn",48.989453,1.66449,0,0,OIF:SA:86:319,Europe/Paris,,OIF, +OIF:SP:86:338,1,"Gare Routière Mantes-la-Ville - Quai 29",48.987993,1.704901,0,0,OIF:SA:8738150,Europe/Paris,,OIF, +OIF:SP:86:339,1,"Gare Routière Mantes-la-Ville - Quai 30",48.987797,1.705162,0,0,OIF:SA:8738150,Europe/Paris,,OIF, +OIF:SP:86:34,1,"Géo André",48.9955,1.691985,0,0,OIF:SA:81:6864,Europe/Paris,,OIF, +OIF:SP:86:342,1,"Bois Moulin",48.999027,1.647702,0,0,OIF:SA:86:311,Europe/Paris,,OIF, +OIF:SP:86:344,1,"Pont de Limay",48.993362,1.726358,0,0,OIF:SA:23:270,Europe/Paris,,OIF, +OIF:SP:86:345,1,"Chaponnerie",48.995195,1.731676,0,0,OIF:SA:81:6590,Europe/Paris,,OIF, +OIF:SP:86:346,1,"Monument",48.995834,1.733608,0,0,OIF:SA:81:15499,Europe/Paris,,OIF, +OIF:SP:86:347,1,"Paix",48.994901,1.737538,0,0,OIF:SA:81:6592,Europe/Paris,,OIF, +OIF:SP:86:348,1,"George Sand",48.994562,1.7397,0,0,OIF:SA:81:15510,Europe/Paris,,OIF, +OIF:SP:86:35,1,"Patinoire",48.998066,1.688047,0,0,OIF:SA:86:29,Europe/Paris,,OIF, +OIF:SP:86:350,1,"Croms",48.999516,1.742047,0,0,OIF:SA:23:256,Europe/Paris,,OIF, +OIF:SP:86:351,1,"Aristide Briand",49.000338,1.741027,0,0,OIF:SA:81:15905,Europe/Paris,,OIF, +OIF:SP:86:352,1,"Hauts de Limay",49.004573,1.738041,0,0,OIF:SA:23:263,Europe/Paris,,OIF, +OIF:SP:86:353,1,"Fosses Rouges",49.005996,1.733175,0,0,OIF:SA:23:260,Europe/Paris,,OIF, +OIF:SP:86:354,1,"Bois aux Moines",49.004709,1.732876,0,0,OIF:SA:23:252,Europe/Paris,,OIF, +OIF:SP:86:355,1,"Hauts Célestins",49.003587,1.734829,0,0,OIF:SA:23:255,Europe/Paris,,OIF, +OIF:SP:86:356,1,"Hauts de Limay",49.003972,1.739878,0,0,OIF:SA:23:263,Europe/Paris,,OIF, +OIF:SP:86:357,1,"Aristide Briand",48.999742,1.740501,0,0,OIF:SA:81:15905,Europe/Paris,,OIF, +OIF:SP:86:358,1,"Croms",48.999201,1.7419,0,0,OIF:SA:23:256,Europe/Paris,,OIF, +OIF:SP:86:360,1,"George Sand",48.99476,1.739739,0,0,OIF:SA:81:15510,Europe/Paris,,OIF, +OIF:SP:86:361,1,"Paix",48.99509,1.737454,0,0,OIF:SA:81:6592,Europe/Paris,,OIF, +OIF:SP:86:362,1,"Monument",48.996205,1.734191,0,0,OIF:SA:81:15499,Europe/Paris,,OIF, +OIF:SP:86:363,1,"Chaponnerie",48.99481,1.73011,0,0,OIF:SA:81:6590,Europe/Paris,,OIF, +OIF:SP:86:364,1,"Pont de Limay",48.993569,1.726506,0,0,OIF:SA:23:270,Europe/Paris,,OIF, +OIF:SP:86:366,1,"Nungesser",49.001317,1.677775,0,0,OIF:SA:86:109,Europe/Paris,,OIF, +OIF:SP:86:368,1,"Division Leclerc",48.989223,1.70972,0,0,OIF:SA:81:15788,Europe/Paris,,OIF, +OIF:SP:86:369,1,"Mairie",48.98007,1.672448,0,0,OIF:SA:81:15869,Europe/Paris,,OIF, +OIF:SP:86:37,1,"Garennes",49.002726,1.69225,0,0,OIF:SA:86:26,Europe/Paris,,OIF, +OIF:SP:86:370,1,"Marronniers",48.969739,1.686109,0,0,OIF:SA:86:136,Europe/Paris,,OIF, +OIF:SP:86:371,1,"Europe",48.979338,1.694685,0,0,OIF:SA:86:371,Europe/Paris,,OIF, +OIF:SP:86:373,1,"Lycée Condorcet",48.985648,1.75627,0,0,OIF:SA:81:15220,Europe/Paris,,OIF, +OIF:SP:86:374,1,"Alpa",48.985412,1.759591,0,0,OIF:SA:86:374,Europe/Paris,,OIF, +OIF:SP:86:375,1,"Forest",48.989476,1.761826,0,0,OIF:SA:86:375,Europe/Paris,,OIF, +OIF:SP:86:377,1,"Centre Commercial",48.991384,1.753106,0,0,OIF:SA:23:264,Europe/Paris,,OIF, +OIF:SP:86:378,1,"Basses Meunières",48.992317,1.745434,0,0,OIF:SA:23:250,Europe/Paris,,OIF, +OIF:SP:86:379,1,"Rue de la Chasse",48.992805,1.742424,0,0,OIF:SA:81:6659,Europe/Paris,,OIF, +OIF:SP:86:38,1,"Port Fouquet",49.004072,1.696905,0,0,OIF:SA:86:24,Europe/Paris,,OIF, +OIF:SP:86:380,1,"Logirep",48.991343,1.74128,0,0,OIF:SA:81:6638,Europe/Paris,,OIF, +OIF:SP:86:381,1,"Hôtel de Ville",48.992453,1.734945,0,0,OIF:SA:86:381,Europe/Paris,,OIF, +OIF:SP:86:382,1,"Place du Marché",48.995002,1.732552,0,0,OIF:SA:86:382,Europe/Paris,,OIF, +OIF:SP:86:383,1,"Europe",48.979444,1.694424,0,0,OIF:SA:86:371,Europe/Paris,,OIF, +OIF:SP:86:384,1,"Place du Temple",48.992992,1.729558,0,0,OIF:SA:81:6644,Europe/Paris,,OIF, +OIF:SP:86:385,1,"Hôtel de Ville",48.991452,1.735994,0,0,OIF:SA:86:381,Europe/Paris,,OIF, +OIF:SP:86:386,1,"Logirep",48.991028,1.741134,0,0,OIF:SA:81:6638,Europe/Paris,,OIF, +OIF:SP:86:387,1,"Rue de la Chasse",48.99277,1.742548,0,0,OIF:SA:81:6659,Europe/Paris,,OIF, +OIF:SP:86:388,1,"Basses Meunières",48.992118,1.745341,0,0,OIF:SA:23:250,Europe/Paris,,OIF, +OIF:SP:86:389,1,"Centre Commercial",48.991069,1.753028,0,0,OIF:SA:23:264,Europe/Paris,,OIF, +OIF:SP:86:39,1,"Sainte-Anne",49.001577,1.697468,0,0,OIF:SA:81:15792,Europe/Paris,,OIF, +OIF:SP:86:391,1,"Forest",48.988213,1.760802,0,0,OIF:SA:86:375,Europe/Paris,,OIF, +OIF:SP:86:392,1,"Alpa",48.98486,1.758805,0,0,OIF:SA:86:374,Europe/Paris,,OIF, +OIF:SP:86:393,1,"Émile Zola",48.993706,1.70098,0,0,OIF:SA:86:393,Europe/Paris,,OIF, +OIF:SP:86:394,1,"Liberté",48.996234,1.703216,0,0,OIF:SA:86:394,Europe/Paris,,OIF, +OIF:SP:86:395,1,"Résidence du Lac",48.999069,1.702389,0,0,OIF:SA:81:15786,Europe/Paris,,OIF, +OIF:SP:86:396,1,"Résidence du Lac",48.999005,1.702212,0,0,OIF:SA:81:15786,Europe/Paris,,OIF, +OIF:SP:86:397,1,"Liberté",48.996116,1.702958,0,0,OIF:SA:86:394,Europe/Paris,,OIF, +OIF:SP:86:398,1,"Émile Zola",48.994066,1.701139,0,0,OIF:SA:86:393,Europe/Paris,,OIF, +OIF:SP:86:399,1,"Schwob",49.000064,1.686902,0,0,OIF:SA:86:399,Europe/Paris,,OIF, +OIF:SP:86:4,1,"Lavoisier",48.996294,1.684354,0,0,OIF:SA:81:6888,Europe/Paris,,OIF, +OIF:SP:86:400,1,"Jean Macé",48.996422,1.74144,0,0,OIF:SA:86:400,Europe/Paris,,OIF, +OIF:SP:86:401,1,"Fontaines Agnès",48.997736,1.741944,0,0,OIF:SA:86:401,Europe/Paris,,OIF, +OIF:SP:86:402,1,"Fontaine Agnès",48.998005,1.741873,0,0,OIF:SA:86:401,Europe/Paris,,OIF, +OIF:SP:86:403,1,"Jean Macé",48.99578,1.740724,0,0,OIF:SA:86:400,Europe/Paris,,OIF, +OIF:SP:86:404,1,"Schwob",49.000398,1.687171,0,0,OIF:SA:86:399,Europe/Paris,,OIF, +OIF:SP:86:405,1,"Charcot",49.002905,1.690349,0,0,OIF:SA:86:405,Europe/Paris,,OIF, +OIF:SP:86:406,1,"Charcot",49.002986,1.690362,0,0,OIF:SA:86:405,Europe/Paris,,OIF, +OIF:SP:86:407,1,"Schwob",49.001965,1.687752,0,0,OIF:SA:86:399,Europe/Paris,,OIF, +OIF:SP:86:408,1,"Porte de Normandie",48.978431,1.68645,0,0,OIF:SA:86:408,Europe/Paris,,OIF, +OIF:SP:86:409,1,"Pincevins",48.9788,1.694978,0,0,OIF:SA:86:409,Europe/Paris,,OIF, +OIF:SP:86:41,1,"Édouard Vaillant",48.994146,1.696017,0,0,OIF:SA:81:6847,Europe/Paris,,OIF, +OIF:SP:86:410,1,"Pincevins",48.9789,1.695127,0,0,OIF:SA:86:409,Europe/Paris,,OIF, +OIF:SP:86:411,1,"Porte de Normandie",48.978816,1.686308,0,0,OIF:SA:86:408,Europe/Paris,,OIF, +OIF:SP:86:412,1,"Schwob",49.001332,1.686981,0,0,OIF:SA:86:399,Europe/Paris,,OIF, +OIF:SP:86:413,1,"Fontenay",48.978365,1.685986,0,0,OIF:SA:86:413,Europe/Paris,,OIF, +OIF:SP:86:414,1,"Fontenay",48.97813,1.685785,0,0,OIF:SA:86:413,Europe/Paris,,OIF, +OIF:SP:86:416,1,"Gare Routière Mantes-la-Jolie - Quai 13",48.989933,1.704631,0,0,OIF:SA:8738150,Europe/Paris,,OIF, +OIF:SP:86:42,1,"Paul Bert",48.993547,1.698209,0,0,OIF:SA:86:42,Europe/Paris,,OIF, +OIF:SP:86:45,1,"Maréchal Juin",48.990781,1.708813,0,0,OIF:SA:86:45,Europe/Paris,,OIF, +OIF:SP:86:46,1,"Hôtel de Ville",48.989271,1.715605,0,0,OIF:SA:81:6878,Europe/Paris,,OIF, +OIF:SP:86:47,1,"Sangle",48.989088,1.718447,0,0,OIF:SA:81:6940,Europe/Paris,,OIF, +OIF:SP:86:48,1,"Gare Routière Mantes-la-Jolie - Quai 3",48.990217,1.70232,0,0,OIF:SA:8738150,Europe/Paris,,OIF, +OIF:SP:86:49,1,"Division Leclerc",48.989297,1.710156,0,0,OIF:SA:81:15788,Europe/Paris,,OIF, +OIF:SP:86:5,1,"Général de Gaulle",48.99669,1.679514,0,0,OIF:SA:81:15761,Europe/Paris,,OIF, +OIF:SP:86:50,1,"Normandie",48.988991,1.711839,0,0,OIF:SA:86:50,Europe/Paris,,OIF, +OIF:SP:86:51,1,"Victor Hugo",48.983929,1.716556,0,0,OIF:SA:86:51,Europe/Paris,,OIF, +OIF:SP:86:52,1,"Lycée Camille Claudel",48.967177,1.714628,0,0,OIF:SA:86:52,Europe/Paris,,OIF, +OIF:SP:86:53,1,"Louise Michel",48.985232,1.707843,0,0,OIF:SA:86:220,Europe/Paris,,OIF, +OIF:SP:86:54,1,"Mairie",48.978219,1.714208,0,0,OIF:SA:86:120,Europe/Paris,,OIF, +OIF:SP:86:55,1,"Mantes-Station",48.981527,1.716107,0,0,OIF:SA:8738159,Europe/Paris,,OIF, +OIF:SP:86:56,1,"Sacré Cœur",48.983757,1.707724,0,0,OIF:SA:86:178,Europe/Paris,,OIF, +OIF:SP:86:57,1,"Bates",48.980398,1.70472,0,0,OIF:SA:86:177,Europe/Paris,,OIF, +OIF:SP:86:58,1,"Tours Merisiers",48.977816,1.70239,0,0,OIF:SA:86:58,Europe/Paris,,OIF, +OIF:SP:86:6,1,"Hôpital François Quesnay",48.998672,1.677276,0,0,OIF:SA:81:15780,Europe/Paris,,OIF, +OIF:SP:86:60,1,"Mairie",48.96679,1.681068,0,0,OIF:SA:81:6738,Europe/Paris,,OIF, +OIF:SP:86:61,1,"Lycée Léopold Sédar Senghor",48.964413,1.681945,0,0,OIF:SA:86:61,Europe/Paris,,OIF, +OIF:SP:86:62,1,"Gare Routière Mantes-la-Ville - Quai 28",48.988055,1.70475,0,0,OIF:SA:8738150,Europe/Paris,,OIF, +OIF:SP:86:63,1,"Mairie",48.97837,1.713892,0,0,OIF:SA:86:120,Europe/Paris,,OIF, +OIF:SP:86:64,1,"Lycée Lavoisier",48.9734,1.773295,0,0,OIF:SA:86:64,Europe/Paris,,OIF, +OIF:SP:86:66,1,"Duhamel",48.98613,1.716475,0,0,OIF:SA:86:66,Europe/Paris,,OIF, +OIF:SP:86:68,1,"Victor Hugo",48.985001,1.717021,0,0,OIF:SA:86:51,Europe/Paris,,OIF, +OIF:SP:86:69,1,"Saint-Maclou",48.990869,1.718754,0,0,OIF:SA:86:69,Europe/Paris,,OIF, +OIF:SP:86:70,1,"Palais de Justice",48.989814,1.712881,0,0,OIF:SA:86:70,Europe/Paris,,OIF, +OIF:SP:86:75,1,"Paul Bert",48.994028,1.697466,0,0,OIF:SA:86:42,Europe/Paris,,OIF, +OIF:SP:86:77,1,"Franklin Roosevelt",48.990141,1.709982,0,0,OIF:SA:86:77,Europe/Paris,,OIF, +OIF:SP:86:78,1,"Gare Routière Mantes-la-Jolie - Quai 5",48.990431,1.702003,0,0,OIF:SA:8738150,Europe/Paris,,OIF, +OIF:SP:86:8,1,"Doret",49.001054,1.683925,0,0,OIF:SA:81:6845,Europe/Paris,,OIF, +OIF:SP:86:80,1,"Gare Routière Mantes-la-Ville",48.987555,1.70537,0,0,OIF:SA:8738150,Europe/Paris,,OIF, +OIF:SP:86:81,1,"Mairie",48.978185,1.714577,0,0,OIF:SA:86:120,Europe/Paris,,OIF, +OIF:SP:86:83,1,"Beynes",48.978609,1.689574,0,0,OIF:SA:86:83,Europe/Paris,,OIF, +OIF:SP:86:85,1,"Tours Merisiers",48.977673,1.702556,0,0,OIF:SA:86:58,Europe/Paris,,OIF, +OIF:SP:86:86,1,"Plaisances",48.976247,1.703215,0,0,OIF:SA:86:112,Europe/Paris,,OIF, +OIF:SP:86:87,1,"Jean Moulin",48.975091,1.70372,0,0,OIF:SA:86:123,Europe/Paris,,OIF, +OIF:SP:86:88,1,"Valmonts",48.975056,1.709004,0,0,OIF:SA:86:122,Europe/Paris,,OIF, +OIF:SP:86:89,1,"Ravine",48.975556,1.711906,0,0,OIF:SA:86:121,Europe/Paris,,OIF, +OIF:SP:86:90,1,"Henri Clérisse",48.992614,1.717271,0,0,OIF:SA:86:118,Europe/Paris,,OIF, +OIF:SP:86:91,1,"Castor",48.994532,1.714531,0,0,OIF:SA:86:117,Europe/Paris,,OIF, +OIF:SP:86:92,1,"IUT Intermarché",48.997287,1.710441,0,0,OIF:SA:86:116,Europe/Paris,,OIF, +OIF:SP:86:93,1,"Marcel Tabu",48.997054,1.708696,0,0,OIF:SA:81:15794,Europe/Paris,,OIF, +OIF:SP:86:94,1,"Braunstein",48.997312,1.706658,0,0,OIF:SA:86:114,Europe/Paris,,OIF, +OIF:SP:86:95,1,"Clinique",49.004634,1.694452,0,0,OIF:SA:86:25,Europe/Paris,,OIF, +OIF:SP:86:96,1,"Godeau",49.003618,1.684262,0,0,OIF:SA:86:110,Europe/Paris,,OIF, +OIF:SP:86:97,1,"Nungesser",49.001713,1.677907,0,0,OIF:SA:86:109,Europe/Paris,,OIF, +OIF:SP:86:98,1,"Champs Odés",48.993456,1.674953,0,0,OIF:SA:81:15867,Europe/Paris,,OIF, +OIF:SP:86:99,1,"Gamelines",48.990097,1.678506,0,0,OIF:SA:81:15712,Europe/Paris,,OIF, +OIF:SP:8700147:810:B,1,"Aéroport CDG 2 TGV",49.004687,2.570589,0,0,OIF:SA:8700147,Europe/Paris,,OIF, +OIF:SP:8711127:800:C,1,"Porte de Clichy",48.894168,2.315599,0,0,OIF:SA:8711127,Europe/Paris,,OIF, +OIF:SP:8711300:800:D,1,"Gare de l'Est",48.877376,2.359457,0,0,OIF:SA:8711300,Europe/Paris,,OIF, +OIF:SP:8711300:800:E,1,"Gare de l'Est",48.877376,2.359457,0,0,OIF:SA:8711300,Europe/Paris,,OIF, +OIF:SP:8711300:800:H,1,"Gare de l'Est",48.877376,2.359457,0,0,OIF:SA:8711300,Europe/Paris,,OIF, +OIF:SP:8711300:800:P,1,"Gare de l'Est",48.877376,2.359457,0,0,OIF:SA:8711300,Europe/Paris,,OIF, +OIF:SP:8711320:800:E,1,"Gare de Pantin",48.898112,2.400362,0,0,OIF:SA:8711320,Europe/Paris,,OIF, +OIF:SP:8711320:800:P,1,"Gare de Pantin",48.898112,2.400362,0,0,OIF:SA:8711320,Europe/Paris,,OIF, +OIF:SP:8711321:800:E,1,"Gare de Noisy le Sec",48.896652,2.458363,0,0,OIF:SA:8711321,Europe/Paris,,OIF, +OIF:SP:8711321:800:P,1,"Gare de Noisy le Sec",48.896652,2.458363,0,0,OIF:SA:8711321,Europe/Paris,,OIF, +OIF:SP:8711340:800:E,1,"Gare de Bondy",48.89403,2.480071,0,0,OIF:SA:8711340,Europe/Paris,,OIF, +OIF:SP:8711340:800:P,1,"Gare de Bondy",48.89403,2.480071,0,0,OIF:SA:8711340,Europe/Paris,,OIF, +OIF:SP:8711340:800:T4,1,"Gare de Bondy",48.89403,2.480071,0,0,OIF:SA:8711340,Europe/Paris,,OIF, +OIF:SP:8711347:800:E,1,"Gare du Raincy Villemomble",48.889077,2.512567,0,0,OIF:SA:8711347,Europe/Paris,,OIF, +OIF:SP:8711351:800:E,1,"Gare de Gagny",48.883734,2.525434,0,0,OIF:SA:8711351,Europe/Paris,,OIF, +OIF:SP:8711352:800:E,1,"Gare de Chenay Gagny",48.877158,2.552882,0,0,OIF:SA:8711352,Europe/Paris,,OIF, +OIF:SP:8711369:800:E,1,"Gare de Rosny Bois Perrier",48.882304,2.481421,0,0,OIF:SA:8711369,Europe/Paris,,OIF, +OIF:SP:8711369:800:P,1,"Gare de Rosny Bois Perrier",48.882304,2.481421,0,0,OIF:SA:8711369,Europe/Paris,,OIF, +OIF:SP:8711370:800:E,1,"Gare de Rosny sous Bois",48.869912,2.485761,0,0,OIF:SA:8711370,Europe/Paris,,OIF, +OIF:SP:8711370:800:P,1,"Gare de Rosny sous Bois",48.869912,2.485761,0,0,OIF:SA:8711370,Europe/Paris,,OIF, +OIF:SP:8711371:800:E,1,"Gare de Val de Fontenay",48.854269,2.489167,0,0,OIF:SA:8711371,Europe/Paris,,OIF, +OIF:SP:8711371:800:P,1,"Gare de Val de Fontenay",48.854269,2.489167,0,0,OIF:SA:8711371,Europe/Paris,,OIF, +OIF:SP:8711374:800:E,1,"Gare de Nogent le Perreux",48.839342,2.494188,0,0,OIF:SA:8711374,Europe/Paris,,OIF, +OIF:SP:8711374:800:P,1,"Gare de Nogent le Perreux",48.839342,2.494188,0,0,OIF:SA:8711374,Europe/Paris,,OIF, +OIF:SP:8711377:800:E,1,"Gare des Boullereaux Champigny",48.824849,2.511856,0,0,OIF:SA:8711377,Europe/Paris,,OIF, +OIF:SP:8711377:800:P,1,"Gare des Boullereaux Champigny",48.824849,2.511856,0,0,OIF:SA:8711377,Europe/Paris,,OIF, +OIF:SP:8711379:800:E,1,"Gare de Villiers sur Marne Plessis Trévise",48.823267,2.54268,0,0,OIF:SA:8711379,Europe/Paris,,OIF, +OIF:SP:8711379:800:P,1,"Gare de Villiers sur Marne Plessis Trévise",48.823267,2.54268,0,0,OIF:SA:8711379,Europe/Paris,,OIF, +OIF:SP:8711380:800:E,1,"Gare des Yvris Noisy le Grand",48.823152,2.579837,0,0,OIF:SA:8711380,Europe/Paris,,OIF, +OIF:SP:8711380:800:P,1,"Gare des Yvris Noisy le Grand",48.823152,2.579837,0,0,OIF:SA:8711380,Europe/Paris,,OIF, +OIF:SP:8711384:800:T4,1,"Les Coquetiers",48.892505,2.499388,0,0,OIF:SA:8711384,Europe/Paris,,OIF, +OIF:SP:8711385:800:T4,1,"Les Pavillons sous Bois T4",48.902444,2.511699,0,0,OIF:SA:8711385,Europe/Paris,,OIF, +OIF:SP:8711386:800:T4,1,"Gargan",48.908165,2.517025,0,0,OIF:SA:8711386,Europe/Paris,,OIF, +OIF:SP:8711387:800:T4,1,"Allée de la Tour Rendez Vous",48.897144,2.506408,0,0,OIF:SA:8711387,Europe/Paris,,OIF, +OIF:SP:8711388:800:T4,1,"L'Abbaye",48.921926,2.516444,0,0,OIF:SA:8711388,Europe/Paris,,OIF, +OIF:SP:8711389:800:T4,1,"Freinville Sevran",48.92664,2.519104,0,0,OIF:SA:8711389,Europe/Paris,,OIF, +OIF:SP:8711587:800:P,1,"Gare de Champbenoist Poigny",48.545595,3.287313,0,0,OIF:SA:8711587,Europe/Paris,,OIF, +OIF:SP:8711601:800:E,1,"Gare de Gretz Armainvilliers",48.746452,2.727229,0,0,OIF:SA:8711601,Europe/Paris,,OIF, +OIF:SP:8711601:800:P,1,"Gare de Gretz Armainvilliers",48.746452,2.727229,0,0,OIF:SA:8711601,Europe/Paris,,OIF, +OIF:SP:8711602:800:E,1,"Gare d'Ozoir la Ferrière",48.770779,2.690253,0,0,OIF:SA:8711602,Europe/Paris,,OIF, +OIF:SP:8711602:800:P,1,"Gare d'Ozoir la Ferrière",48.770779,2.690253,0,0,OIF:SA:8711602,Europe/Paris,,OIF, +OIF:SP:8711603:800:E,1,"Gare de Roissy en Brie",48.795655,2.650388,0,0,OIF:SA:8711603,Europe/Paris,,OIF, +OIF:SP:8711603:800:P,1,"Gare de Roissy en Brie",48.795655,2.650388,0,0,OIF:SA:8711603,Europe/Paris,,OIF, +OIF:SP:8711604:800:E,1,"Gare d'Emerainville Pontault Combault",48.80577,2.619396,0,0,OIF:SA:8711604,Europe/Paris,,OIF, +OIF:SP:8711604:800:P,1,"Gare d'Emerainville Pontault Combault",48.80577,2.619396,0,0,OIF:SA:8711604,Europe/Paris,,OIF, +OIF:SP:8711607:800:P,1,"Gare de Verneuil l'Étang",48.644374,2.82517,0,0,OIF:SA:8711607,Europe/Paris,,OIF, +OIF:SP:8711608:800:P,1,"Gare de Mormant",48.614015,2.888253,0,0,OIF:SA:8711608,Europe/Paris,,OIF, +OIF:SP:8711609:800:P,1,"Gare de Nangis",48.562125,3.011769,0,0,OIF:SA:8711609,Europe/Paris,,OIF, +OIF:SP:8711610:800:P,1,"Gare de Meaux",48.957269,2.873448,0,0,OIF:SA:8711610,Europe/Paris,,OIF, +OIF:SP:8711611:800:E,1,"Gare de Chelles Gournay",48.874144,2.583331,0,0,OIF:SA:8711611,Europe/Paris,,OIF, +OIF:SP:8711611:800:P,1,"Gare de Chelles Gournay",48.874144,2.583331,0,0,OIF:SA:8711611,Europe/Paris,,OIF, +OIF:SP:8711613:800:P,1,"Gare de Longueville",48.513755,3.250035,0,0,OIF:SA:8711613,Europe/Paris,,OIF, +OIF:SP:8711616:800:P,1,"Gare de Provins",48.555592,3.302871,0,0,OIF:SA:8711616,Europe/Paris,,OIF, +OIF:SP:8711617:800:P,1,"Gare de Sainte-Colombe Septveilles",48.529149,3.255368,0,0,OIF:SA:8711617,Europe/Paris,,OIF, +OIF:SP:8711621:800:E,1,"Gare de Tournan",48.739487,2.758825,0,0,OIF:SA:8711621,Europe/Paris,,OIF, +OIF:SP:8711621:800:P,1,"Gare de Tournan",48.739487,2.758825,0,0,OIF:SA:8711621,Europe/Paris,,OIF, +OIF:SP:8711622:800:P,1,"Gare de Marles en Brie",48.734939,2.868956,0,0,OIF:SA:8711622,Europe/Paris,,OIF, +OIF:SP:8711624:800:P,1,"Gare de Mortcerf",48.789497,2.907387,0,0,OIF:SA:8711624,Europe/Paris,,OIF, +OIF:SP:8711626:800:P,1,"Gare de Guérard la Celle sur Morin",48.810775,2.95373,0,0,OIF:SA:8711626,Europe/Paris,,OIF, +OIF:SP:8711627:800:P,1,"Gare de Faremoutiers Pommeuse",48.808654,2.99311,0,0,OIF:SA:8711627,Europe/Paris,,OIF, +OIF:SP:8711628:800:P,1,"Gare de Mouroux",48.813798,3.042938,0,0,OIF:SA:8711628,Europe/Paris,,OIF, +OIF:SP:8711629:800:P,1,"Gare de Vaires Torcy",48.875208,2.637591,0,0,OIF:SA:8711629,Europe/Paris,,OIF, +OIF:SP:8711630:800:P,1,"Gare de Coulommiers",48.808502,3.080343,0,0,OIF:SA:8711630,Europe/Paris,,OIF, +OIF:SP:8711631:800:P,1,"Gare de Lagny Thorigny",48.882189,2.706014,0,0,OIF:SA:8711631,Europe/Paris,,OIF, +OIF:SP:8711632:800:P,1,"Gare d'Esbly",48.903073,2.810248,0,0,OIF:SA:8711632,Europe/Paris,,OIF, +OIF:SP:8711634:800:P,1,"Gare de Chailly Boissy le Chatel",48.814344,3.152513,0,0,OIF:SA:8711634,Europe/Paris,,OIF, +OIF:SP:8711635:800:P,1,"Gare de Chauffry",48.811286,3.174783,0,0,OIF:SA:8711635,Europe/Paris,,OIF, +OIF:SP:8711636:800:P,1,"Gare de Saint-Siméon",48.799681,3.208625,0,0,OIF:SA:8711636,Europe/Paris,,OIF, +OIF:SP:8711637:800:P,1,"Gare de Saint-Rémy la Vanne",48.800154,3.246253,0,0,OIF:SA:8711637,Europe/Paris,,OIF, +OIF:SP:8711639:800:P,1,"Gare de la Ferté Gaucher",48.782707,3.297579,0,0,OIF:SA:8711639,Europe/Paris,,OIF, +OIF:SP:8711640:800:P,1,"Gare de Montry Condé",48.890857,2.826405,0,0,OIF:SA:8711640,Europe/Paris,,OIF, +OIF:SP:8711649:800:P,1,"Gare de Trilport",48.960226,2.95006,0,0,OIF:SA:8711649,Europe/Paris,,OIF, +OIF:SP:8711650:800:P,1,"Gare de Changis Saint-Jean",48.959164,3.026111,0,0,OIF:SA:8711650,Europe/Paris,,OIF, +OIF:SP:8711651:800:P,1,"Gare de la Ferté sous Jouarre",48.95082,3.124909,0,0,OIF:SA:8711651,Europe/Paris,,OIF, +OIF:SP:8711655:800:P,1,"Gare de Nanteuil Saacy",48.974027,3.219303,0,0,OIF:SA:8711655,Europe/Paris,,OIF, +OIF:SP:8711656:800:P,1,"Gare de Nogent l'Artaud Charly",48.968768,3.322956,0,0,OIF:SA:8711656,Europe/Paris,,OIF, +OIF:SP:8711657:800:P,1,"Gare de Chézy sur Marne",48.990359,3.361628,0,0,OIF:SA:8711657,Europe/Paris,,OIF, +OIF:SP:8711658:800:P,1,"Gare de Château Thierry",49.037949,3.409597,0,0,OIF:SA:8711658,Europe/Paris,,OIF, +OIF:SP:8711661:800:P,1,"Gare d'Isles Armentieres Congis",48.998415,3.007953,0,0,OIF:SA:8711661,Europe/Paris,,OIF, +OIF:SP:8711663:800:P,1,"Gare de Lizy sur Ourcq",49.021757,3.031758,0,0,OIF:SA:8711663,Europe/Paris,,OIF, +OIF:SP:8711664:800:P,1,"Gare de Crouy sur Ourcq",49.091883,3.06269,0,0,OIF:SA:8711664,Europe/Paris,,OIF, +OIF:SP:8711666:800:P,1,"Gare de Mareuil sur Ourcq",49.135474,3.075627,0,0,OIF:SA:8711666,Europe/Paris,,OIF, +OIF:SP:8711667:800:P,1,"Gare de la Ferté Milon",49.179505,3.120613,0,0,OIF:SA:8711667,Europe/Paris,,OIF, +OIF:SP:8711673:800:P,1,"Gare de Couilly Saint-Germain Quincy",48.882681,2.854316,0,0,OIF:SA:8711673,Europe/Paris,,OIF, +OIF:SP:8711674:800:P,1,"Gare de Villiers Montbarbin",48.86329,2.883202,0,0,OIF:SA:8711674,Europe/Paris,,OIF, +OIF:SP:8711677:800:P,1,"Gare de Crécy la Chapelle",48.859557,2.905737,0,0,OIF:SA:8711677,Europe/Paris,,OIF, +OIF:SP:8716478:800:D,1,"Gare de Stade de France Saint-Denis",48.917567,2.35039,0,0,OIF:SA:8716478,Europe/Paris,,OIF, +OIF:SP:8716479:810:B,1,"Gare de la Plaine Stade de France",48.918114,2.362666,0,0,OIF:SA:8716479,Europe/Paris,,OIF, +OIF:SP:8727100:800:D,1,"Gare du Nord Grandes Lignes",48.880845,2.356722,0,0,OIF:SA:8727100,Europe/Paris,,OIF, +OIF:SP:8727100:800:H,1,"Gare du Nord Grandes Lignes",48.880845,2.356722,0,0,OIF:SA:8727100,Europe/Paris,,OIF, +OIF:SP:8727100:800:TER,1,"Gare du Nord Grandes Lignes",48.880845,2.356722,0,0,OIF:SA:8727100,Europe/Paris,,OIF, +OIF:SP:8727101:800:D,1,"Gare de Saint-Denis",48.934456,2.345604,0,0,OIF:SA:8727101,Europe/Paris,,OIF, +OIF:SP:8727101:800:H,1,"Gare de Saint-Denis",48.934456,2.345604,0,0,OIF:SA:8727101,Europe/Paris,,OIF, +OIF:SP:8727102:800:D,1,"Gare du Nord RER",48.880769,2.357115,0,0,OIF:SA:8727100,Europe/Paris,,OIF, +OIF:SP:8727102:810:B,1,"Gare du Nord RER",48.880769,2.357115,0,0,OIF:SA:8727100,Europe/Paris,,OIF, +OIF:SP:8727103:800:D,1,"Gare du Nord Surface",48.880845,2.356722,0,0,OIF:SA:8727100,Europe/Paris,,OIF, +OIF:SP:8727103:800:H,1,"Gare du Nord Surface",48.880845,2.356722,0,0,OIF:SA:8727100,Europe/Paris,,OIF, +OIF:SP:8727103:800:K,1,"Gare du Nord Surface",48.880845,2.356722,0,0,OIF:SA:8727100,Europe/Paris,,OIF, +OIF:SP:8727103:810:B,1,"Gare du Nord Surface",48.880845,2.356722,0,0,OIF:SA:8727100,Europe/Paris,,OIF, +OIF:SP:8727112:800:H,1,"Gare d'Epinay Villetaneuse",48.95827,2.328245,0,0,OIF:SA:8727112,Europe/Paris,,OIF, +OIF:SP:8727114:800:C,1,"Gare d'Epinay sur Seine",48.953396,2.30234,0,0,OIF:SA:8727114,Europe/Paris,,OIF, +OIF:SP:8727116:800:D,1,"Gare de Pierrefitte Stains",48.963755,2.372103,0,0,OIF:SA:8727116,Europe/Paris,,OIF, +OIF:SP:8727117:800:H,1,"Gare de la Barre Ormesson",48.966327,2.316582,0,0,OIF:SA:8727117,Europe/Paris,,OIF, +OIF:SP:8727120:800:C,1,"Gare de Gennevilliers",48.932896,2.307943,0,0,OIF:SA:8727120,Europe/Paris,,OIF, +OIF:SP:8727124:800:C,1,"Gare de Saint-Ouen",48.905655,2.3224,0,0,OIF:SA:8727124,Europe/Paris,,OIF, +OIF:SP:8727130:810:B,1,"Gare de la Courneuve Aubervilliers",48.924354,2.386388,0,0,OIF:SA:8727130,Europe/Paris,,OIF, +OIF:SP:8727139:810:B,1,"Gare du Bourget",48.93074,2.425791,0,0,OIF:SA:8727139,Europe/Paris,,OIF, +OIF:SP:8727140:810:B,1,"Gare de Drancy",48.932706,2.454766,0,0,OIF:SA:8727140,Europe/Paris,,OIF, +OIF:SP:8727141:800:K,1,"Gare d'Aulnay sous Bois",48.932114,2.495755,0,0,OIF:SA:8727141,Europe/Paris,,OIF, +OIF:SP:8727141:800:T4,1,"Gare d'Aulnay sous Bois",48.932114,2.495755,0,0,OIF:SA:8727141,Europe/Paris,,OIF, +OIF:SP:8727141:810:B,1,"Gare d'Aulnay sous Bois",48.932114,2.495755,0,0,OIF:SA:8727141,Europe/Paris,,OIF, +OIF:SP:8727142:810:B,1,"Gare de Sevran Livry",48.93628,2.534715,0,0,OIF:SA:8727142,Europe/Paris,,OIF, +OIF:SP:8727143:810:B,1,"Gare de Vert Galant",48.944181,2.566448,0,0,OIF:SA:8727143,Europe/Paris,,OIF, +OIF:SP:8727144:810:B,1,"Gare de Sevran Beaudottes",48.947608,2.524716,0,0,OIF:SA:8727144,Europe/Paris,,OIF, +OIF:SP:8727145:810:B,1,"Gare de Villepinte",48.96271,2.512645,0,0,OIF:SA:8727145,Europe/Paris,,OIF, +OIF:SP:8727146:810:B,1,"Aéroport CDG 1",49.009756,2.561233,0,0,OIF:SA:8727146,Europe/Paris,,OIF, +OIF:SP:8727147:810:B,1,"Gare de Blanc Mesnil",48.932305,2.475674,0,0,OIF:SA:8727147,Europe/Paris,,OIF, +OIF:SP:8727148:810:B,1,"Gare de Parc des Expositions",48.973425,2.51436,0,0,OIF:SA:8727148,Europe/Paris,,OIF, +OIF:SP:8727151:810:B,1,"Gare de Villeparisis Mitry le Neuf",48.953148,2.603135,0,0,OIF:SA:8727151,Europe/Paris,,OIF, +OIF:SP:8727152:800:K,1,"Gare de Mitry Claye",48.975859,2.642406,0,0,OIF:SA:8727152,Europe/Paris,,OIF, +OIF:SP:8727152:810:B,1,"Gare de Mitry Claye",48.975859,2.642406,0,0,OIF:SA:8727152,Europe/Paris,,OIF, +OIF:SP:8727153:800:K,1,"Gare de Dammartin Juilly Saint-Mard",49.032574,2.699453,0,0,OIF:SA:8727153,Europe/Paris,,OIF, +OIF:SP:8727153:800:TER,1,"Gare de Dammartin Juilly Saint-Mard",49.032574,2.699453,0,0,OIF:SA:8727153,Europe/Paris,,OIF, +OIF:SP:8727155:800:K,1,"Gare du Plessis Belleville",49.096121,2.744686,0,0,OIF:SA:8727155,Europe/Paris,,OIF, +OIF:SP:8727155:800:TER,1,"Gare du Plessis Belleville",49.096121,2.744686,0,0,OIF:SA:8727155,Europe/Paris,,OIF, +OIF:SP:8727157:800:K,1,"Gare de Nanteuil le Haudoin",49.142827,2.794553,0,0,OIF:SA:8727157,Europe/Paris,,OIF, +OIF:SP:8727157:800:TER,1,"Gare de Nanteuil le Haudoin",49.142827,2.794553,0,0,OIF:SA:8727157,Europe/Paris,,OIF, +OIF:SP:8727158:800:K,1,"Gare d'Ormoy Villers",49.200877,2.838108,0,0,OIF:SA:8727158,Europe/Paris,,OIF, +OIF:SP:8727159:800:K,1,"Gare de Crepy en Valois",49.231222,2.888467,0,0,OIF:SA:8727159,Europe/Paris,,OIF, +OIF:SP:8727159:800:TER,1,"Gare de Crepy en Valois",49.231222,2.888467,0,0,OIF:SA:8727159,Europe/Paris,,OIF, +OIF:SP:8727202:800:H,1,"Gare de Villaines",49.07947,2.350831,0,0,OIF:SA:8727202,Europe/Paris,,OIF, +OIF:SP:8727203:800:H,1,"Gare de Seugy",49.119023,2.399725,0,0,OIF:SA:8727203,Europe/Paris,,OIF, +OIF:SP:8727204:800:K,1,"Gare de Compans",48.991391,2.66506,0,0,OIF:SA:8727204,Europe/Paris,,OIF, +OIF:SP:8727205:800:K,1,"Gare de Thieux Nantouillet",49.008114,2.680252,0,0,OIF:SA:8727205,Europe/Paris,,OIF, +OIF:SP:8727214:800:C,1,"Gare des Grésillons",48.920873,2.313835,0,0,OIF:SA:8727214,Europe/Paris,,OIF, +OIF:SP:8727600:800:D,1,"Gare de Creil",49.263944,2.468914,0,0,OIF:SA:8727600,Europe/Paris,,OIF, +OIF:SP:8727600:800:H,1,"Gare de Creil",49.263944,2.468914,0,0,OIF:SA:8727600,Europe/Paris,,OIF, +OIF:SP:8727600:800:TER,1,"Gare de Creil",49.263944,2.468914,0,0,OIF:SA:8727600,Europe/Paris,,OIF, +OIF:SP:8727602:800:H,1,"Gare d'Enghien les Bains",48.972749,2.307137,0,0,OIF:SA:8727602,Europe/Paris,,OIF, +OIF:SP:8727603:800:H,1,"Gare de Champ de Courses d'Enghien",48.979448,2.292477,0,0,OIF:SA:8727603,Europe/Paris,,OIF, +OIF:SP:8727605:800:C,1,"Gare d'Ermont Eaubonne",48.980646,2.272085,0,0,OIF:SA:8727605,Europe/Paris,,OIF, +OIF:SP:8727605:800:H,1,"Gare d'Ermont Eaubonne",48.980646,2.272085,0,0,OIF:SA:8727605,Europe/Paris,,OIF, +OIF:SP:8727605:800:J,1,"Gare d'Ermont Eaubonne",48.980646,2.272085,0,0,OIF:SA:8727605,Europe/Paris,,OIF, +OIF:SP:8727606:800:C,1,"Gare de Cernay",48.985005,2.257474,0,0,OIF:SA:8727606,Europe/Paris,,OIF, +OIF:SP:8727606:800:H,1,"Gare de Cernay",48.985005,2.257474,0,0,OIF:SA:8727606,Europe/Paris,,OIF, +OIF:SP:8727607:800:C,1,"Gare de Franconville le Plessis Bouchard",48.993713,2.234276,0,0,OIF:SA:8727607,Europe/Paris,,OIF, +OIF:SP:8727607:800:H,1,"Gare de Franconville le Plessis Bouchard",48.993713,2.234276,0,0,OIF:SA:8727607,Europe/Paris,,OIF, +OIF:SP:8727608:800:C,1,"Gare de Montigny Beauchamp",49.007423,2.19762,0,0,OIF:SA:8727608,Europe/Paris,,OIF, +OIF:SP:8727608:800:H,1,"Gare de Montigny Beauchamp",49.007423,2.19762,0,0,OIF:SA:8727608,Europe/Paris,,OIF, +OIF:SP:8727609:800:C,1,"Gare de Pierrelaye",49.019137,2.154663,0,0,OIF:SA:8727609,Europe/Paris,,OIF, +OIF:SP:8727609:800:H,1,"Gare de Pierrelaye",49.019137,2.154663,0,0,OIF:SA:8727609,Europe/Paris,,OIF, +OIF:SP:8727610:800:C,1,"Gare de Saint-Ouen l'Aumône",49.045312,2.105111,0,0,OIF:SA:8727610,Europe/Paris,,OIF, +OIF:SP:8727610:800:H,1,"Gare de Saint-Ouen l'Aumône",49.045312,2.105111,0,0,OIF:SA:8727610,Europe/Paris,,OIF, +OIF:SP:8727611:800:D,1,"Gare de Chantilly Gouvieux",49.187334,2.45952,0,0,OIF:SA:8727611,Europe/Paris,,OIF, +OIF:SP:8727611:800:TER,1,"Gare de Chantilly Gouvieux",49.187334,2.45952,0,0,OIF:SA:8727611,Europe/Paris,,OIF, +OIF:SP:8727613:800:C,1,"Gare de Pontoise",49.046646,2.095195,0,0,OIF:SA:8727613,Europe/Paris,,OIF, +OIF:SP:8727613:800:H,1,"Gare de Pontoise",49.046646,2.095195,0,0,OIF:SA:8727613,Europe/Paris,,OIF, +OIF:SP:8727613:800:J,1,"Gare de Pontoise",49.046646,2.095195,0,0,OIF:SA:8727613,Europe/Paris,,OIF, +OIF:SP:8727614:800:H,1,"Gare d'Epluches",49.055102,2.122736,0,0,OIF:SA:8727614,Europe/Paris,,OIF, +OIF:SP:8727615:800:H,1,"Gare de Pont Petit",49.060592,2.130874,0,0,OIF:SA:8727615,Europe/Paris,,OIF, +OIF:SP:8727616:800:H,1,"Gare de Chaponval",49.069314,2.141697,0,0,OIF:SA:8727616,Europe/Paris,,OIF, +OIF:SP:8727617:800:C,1,"Gare de Saint-Gratien",48.96359,2.285931,0,0,OIF:SA:8727617,Europe/Paris,,OIF, +OIF:SP:8727618:800:J,1,"Gare de Sannois",48.97052,2.263925,0,0,OIF:SA:8727618,Europe/Paris,,OIF, +OIF:SP:8727619:800:D,1,"Gare de Garges Sarcelles",48.976748,2.390594,0,0,OIF:SA:8727619,Europe/Paris,,OIF, +OIF:SP:8727622:800:D,1,"Gare de Villiers le Bel Gonesse Arnouville",48.993777,2.416187,0,0,OIF:SA:8727622,Europe/Paris,,OIF, +OIF:SP:8727623:800:D,1,"Gare des Noues",49.033183,2.478033,0,0,OIF:SA:8727623,Europe/Paris,,OIF, +OIF:SP:8727624:800:D,1,"Gare de Goussainville",49.023162,2.462169,0,0,OIF:SA:8727624,Europe/Paris,,OIF, +OIF:SP:8727625:800:D,1,"Gare de Louvres",49.049326,2.501758,0,0,OIF:SA:8727625,Europe/Paris,,OIF, +OIF:SP:8727626:800:D,1,"Gare de Survilliers Fosses",49.099587,2.525532,0,0,OIF:SA:8727626,Europe/Paris,,OIF, +OIF:SP:8727627:800:D,1,"Gare d'Orry la Ville Coye la Foret",49.138717,2.489615,0,0,OIF:SA:8727627,Europe/Paris,,OIF, +OIF:SP:8727627:800:TER,1,"Gare d'Orry la Ville Coye la Foret",49.138717,2.489615,0,0,OIF:SA:8727627,Europe/Paris,,OIF, +OIF:SP:8727628:800:D,1,"Gare de la Borne Blanche",49.126781,2.506144,0,0,OIF:SA:8727628,Europe/Paris,,OIF, +OIF:SP:8727634:800:H,1,"Gare de Deuil Montmagny",48.976054,2.338524,0,0,OIF:SA:8727634,Europe/Paris,,OIF, +OIF:SP:8727636:800:H,1,"Gare de Groslay",48.984316,2.353407,0,0,OIF:SA:8727636,Europe/Paris,,OIF, +OIF:SP:8727638:800:H,1,"Gare de Sarcelles Saint-Brice",48.996007,2.368685,0,0,OIF:SA:8727638,Europe/Paris,,OIF, +OIF:SP:8727639:800:H,1,"Gare d'Ecouen Ézanville",49.023206,2.362223,0,0,OIF:SA:8727639,Europe/Paris,,OIF, +OIF:SP:8727640:800:H,1,"Gare de Saint-Leu d'Esserent",49.213856,2.417369,0,0,OIF:SA:8727640,Europe/Paris,,OIF, +OIF:SP:8727641:800:H,1,"Gare de Precy sur Oise",49.203266,2.376601,0,0,OIF:SA:8727641,Europe/Paris,,OIF, +OIF:SP:8727643:800:H,1,"Gare de Domont",49.032972,2.33683,0,0,OIF:SA:8727643,Europe/Paris,,OIF, +OIF:SP:8727644:800:H,1,"Gare de Boran sur Oise",49.166775,2.362304,0,0,OIF:SA:8727644,Europe/Paris,,OIF, +OIF:SP:8727645:800:H,1,"Gare de Bruyères sur Oise",49.15519,2.325754,0,0,OIF:SA:8727645,Europe/Paris,,OIF, +OIF:SP:8727646:800:H,1,"Gare de Persan Beaumont",49.14772,2.277823,0,0,OIF:SA:8727646,Europe/Paris,,OIF, +OIF:SP:8727646:800:TER,1,"Gare de Persan Beaumont",49.14772,2.277823,0,0,OIF:SA:8727646,Europe/Paris,,OIF, +OIF:SP:8727648:800:H,1,"Gare de Bouffémont Moisselles",49.045169,2.322918,0,0,OIF:SA:8727648,Europe/Paris,,OIF, +OIF:SP:8727649:800:H,1,"Gare de Montsoult Maffliers",49.066289,2.32292,0,0,OIF:SA:8727649,Europe/Paris,,OIF, +OIF:SP:8727650:800:H,1,"Gare de Presles Courcelles",49.114062,2.287915,0,0,OIF:SA:8727650,Europe/Paris,,OIF, +OIF:SP:8727651:800:H,1,"Gare de Champagne sur Oise",49.136001,2.242678,0,0,OIF:SA:8727651,Europe/Paris,,OIF, +OIF:SP:8727652:800:H,1,"Gare de l'Isle Adam Parmain",49.114784,2.21002,0,0,OIF:SA:8727652,Europe/Paris,,OIF, +OIF:SP:8727653:800:H,1,"Gare de Valmondois",49.091073,2.201823,0,0,OIF:SA:8727653,Europe/Paris,,OIF, +OIF:SP:8727654:800:H,1,"Gare d'Auvers sur Oise",49.070462,2.175304,0,0,OIF:SA:8727654,Europe/Paris,,OIF, +OIF:SP:8727655:800:H,1,"Gare de Belloy Saint-Martin",49.0984,2.361271,0,0,OIF:SA:8727655,Europe/Paris,,OIF, +OIF:SP:8727656:800:H,1,"Gare de Viarmes",49.116628,2.368254,0,0,OIF:SA:8727656,Europe/Paris,,OIF, +OIF:SP:8727657:800:H,1,"Gare de Luzarches",49.117132,2.420107,0,0,OIF:SA:8727657,Europe/Paris,,OIF, +OIF:SP:8727658:800:H,1,"Gare d'Ermont Halte",48.990651,2.263183,0,0,OIF:SA:8727658,Europe/Paris,,OIF, +OIF:SP:8727659:800:H,1,"Gare de Gros Noyer Saint-Prix",48.996099,2.259656,0,0,OIF:SA:8727659,Europe/Paris,,OIF, +OIF:SP:8727660:800:H,1,"Gare de Saint-Leu la Foret",49.015585,2.242479,0,0,OIF:SA:8727660,Europe/Paris,,OIF, +OIF:SP:8727662:800:H,1,"Gare de Vaucelles",49.021774,2.229376,0,0,OIF:SA:8727662,Europe/Paris,,OIF, +OIF:SP:8727663:800:H,1,"Gare de Taverny",49.024779,2.222727,0,0,OIF:SA:8727663,Europe/Paris,,OIF, +OIF:SP:8727664:800:H,1,"Gare de Bessancourt",49.035311,2.210247,0,0,OIF:SA:8727664,Europe/Paris,,OIF, +OIF:SP:8727665:800:H,1,"Gare de Frépillon",49.04543,2.197088,0,0,OIF:SA:8727665,Europe/Paris,,OIF, +OIF:SP:8727666:800:H,1,"Gare de Mery sur Oise",49.058048,2.191245,0,0,OIF:SA:8727666,Europe/Paris,,OIF, +OIF:SP:8727667:800:H,1,"Gare de Mériel",49.077699,2.205447,0,0,OIF:SA:8727667,Europe/Paris,,OIF, +OIF:SP:8727675:800:H,1,"Gare de Nointel Mours",49.132578,2.280515,0,0,OIF:SA:8727675,Europe/Paris,,OIF, +OIF:SP:8728187:800:E,1,"Magenta",48.880914,2.358833,0,0,OIF:SA:8728187,Europe/Paris,,OIF, +OIF:SP:8728189:800:E,1,"Haussmann Saint-Lazare",48.875029,2.326718,0,0,OIF:SA:8728189,Europe/Paris,,OIF, +OIF:SP:8731351:800:TER,1,"Gare de Beauvais",49.426202,2.088507,0,0,OIF:SA:8731351,Europe/Paris,,OIF, +OIF:SP:8732832:800:C,1,"Bibliothèque F. Mitterrand",48.829875,2.376696,0,0,OIF:SA:8732832,Europe/Paris,,OIF, +OIF:SP:8733448:800:L,1,"Gare de Neuville Université",49.014134,2.078307,0,0,OIF:SA:8733448,Europe/Paris,,OIF, +OIF:SP:8733448:810:A,1,"Gare de Neuville Université",49.014134,2.078307,0,0,OIF:SA:8733448,Europe/Paris,,OIF, +OIF:SP:8733798:800:C,1,"Gare de Saint-Ouen l'Aumône Liesse",49.033988,2.128264,0,0,OIF:SA:8733798,Europe/Paris,,OIF, +OIF:SP:8733798:800:H,1,"Gare de Saint-Ouen l'Aumône Liesse",49.033988,2.128264,0,0,OIF:SA:8733798,Europe/Paris,,OIF, +OIF:SP:8736692:800:L,1,"Gare de Saint-Germain Bel Air Fourqueux",48.894608,2.069938,0,0,OIF:SA:8736692,Europe/Paris,,OIF, +OIF:SP:8738101:800:C,1,"Pereire Levallois",48.885404,2.298033,0,0,OIF:SA:8738101,Europe/Paris,,OIF, +OIF:SP:8738102:800:C,1,"Neuilly Porte Maillot",48.877908,2.284431,0,0,OIF:SA:8738102,Europe/Paris,,OIF, +OIF:SP:8738103:800:C,1,"Avenue Foch",48.870974,2.275575,0,0,OIF:SA:8738103,Europe/Paris,,OIF, +OIF:SP:8738104:800:C,1,"Avenue Henri Martin",48.864462,2.272121,0,0,OIF:SA:8738104,Europe/Paris,,OIF, +OIF:SP:8738107:800:J,1,"Gare de Bois Colombes",48.914246,2.271599,0,0,OIF:SA:8738107,Europe/Paris,,OIF, +OIF:SP:8738108:800:J,1,"Gare de Colombes",48.923919,2.259346,0,0,OIF:SA:8738108,Europe/Paris,,OIF, +OIF:SP:8738109:800:J,1,"Gare du Stade",48.931054,2.260602,0,0,OIF:SA:8738109,Europe/Paris,,OIF, +OIF:SP:8738111:800:L,1,"Pont Cardinet",48.88822,2.313732,0,0,OIF:SA:8738111,Europe/Paris,,OIF, +OIF:SP:8738112:800:L,1,"Gare de Clichy Levallois",48.897637,2.29742,0,0,OIF:SA:8738112,Europe/Paris,,OIF, +OIF:SP:8738113:800:J,1,"Gare d'Asnières",48.905664,2.283573,0,0,OIF:SA:8738113,Europe/Paris,,OIF, +OIF:SP:8738113:800:L,1,"Gare d'Asnières",48.905664,2.283573,0,0,OIF:SA:8738113,Europe/Paris,,OIF, +OIF:SP:8738114:800:J,1,"Gare d'Osny",49.06297,2.057903,0,0,OIF:SA:8738114,Europe/Paris,,OIF, +OIF:SP:8738115:800:J,1,"Gare de Boissy l'Aillerie",49.075843,2.024953,0,0,OIF:SA:8738115,Europe/Paris,,OIF, +OIF:SP:8738116:800:J,1,"Gare de Montgeroult Courcelles",49.080494,2.003715,0,0,OIF:SA:8738116,Europe/Paris,,OIF, +OIF:SP:8738117:800:J,1,"Gare d'Us",49.09965,1.970536,0,0,OIF:SA:8738117,Europe/Paris,,OIF, +OIF:SP:8738118:800:J,1,"Gare de Santeuil le Perchay",49.123452,1.949333,0,0,OIF:SA:8738118,Europe/Paris,,OIF, +OIF:SP:8738119:800:J,1,"Gare de Chars",49.162671,1.936929,0,0,OIF:SA:8738119,Europe/Paris,,OIF, +OIF:SP:8738120:800:J,1,"Gare de la Villetertre",49.202694,1.920548,0,0,OIF:SA:8738120,Europe/Paris,,OIF, +OIF:SP:8738121:800:J,1,"Gare de Liancourt Saint-Pierre",49.220807,1.905299,0,0,OIF:SA:8738121,Europe/Paris,,OIF, +OIF:SP:8738122:800:J,1,"Gare de Chaumont en Vexin",49.261322,1.872589,0,0,OIF:SA:8738122,Europe/Paris,,OIF, +OIF:SP:8738123:800:J,1,"Gare de Trie Château",49.28259,1.818082,0,0,OIF:SA:8738123,Europe/Paris,,OIF, +OIF:SP:8738124:800:J,1,"Gare de Gisors",49.285264,1.785066,0,0,OIF:SA:8738124,Europe/Paris,,OIF, +OIF:SP:8738141:800:J,1,"Gare d'Eragny Neuville",49.018349,2.090906,0,0,OIF:SA:8738141,Europe/Paris,,OIF, +OIF:SP:8738142:800:J,1,"Gare de Saint-Ouen l'Aumône Quartier de l'Église",49.039981,2.103853,0,0,OIF:SA:8738142,Europe/Paris,,OIF, +OIF:SP:8738145:800:J,1,"Gare de Conflans Fin d'Oise",48.991317,2.074013,0,0,OIF:SA:8738145,Europe/Paris,,OIF, +OIF:SP:8738145:800:L,1,"Gare de Conflans Fin d'Oise",48.991317,2.074013,0,0,OIF:SA:8738145,Europe/Paris,,OIF, +OIF:SP:8738145:810:A,1,"Gare de Conflans Fin d'Oise",48.991317,2.074013,0,0,OIF:SA:8738145,Europe/Paris,,OIF, +OIF:SP:8738147:800:J,1,"Gare de Chanteloup les Vignes",48.970367,2.027519,0,0,OIF:SA:8738147,Europe/Paris,,OIF, +OIF:SP:8738148:800:J,1,"Gare de Maurecourt",48.987057,2.059788,0,0,OIF:SA:8738148,Europe/Paris,,OIF, +OIF:SP:8738149:800:J,1,"Gare d'Andrésy",48.974821,2.049083,0,0,OIF:SA:8738149,Europe/Paris,,OIF, +OIF:SP:8738150:800:J,1,"Gare de Mantes la Jolie",48.989503,1.703016,0,0,OIF:SA:8738150,Europe/Paris,,OIF, +OIF:SP:8738150:800:N,1,"Gare de Mantes la Jolie",48.989503,1.703016,0,0,OIF:SA:8738150,Europe/Paris,,OIF, +OIF:SP:8738150:800:TER,1,"Gare de Mantes la Jolie",48.989503,1.703016,0,0,OIF:SA:8738150,Europe/Paris,,OIF, +OIF:SP:8738155:800:J,1,"Gare de Juziers",48.992241,1.845134,0,0,OIF:SA:8738155,Europe/Paris,,OIF, +OIF:SP:8738156:800:J,1,"Gare de Gargenville",48.98298,1.808908,0,0,OIF:SA:8738156,Europe/Paris,,OIF, +OIF:SP:8738157:800:J,1,"Gare d'Issou Porcheville",48.979292,1.783973,0,0,OIF:SA:8738157,Europe/Paris,,OIF, +OIF:SP:8738158:800:J,1,"Gare de Limay",48.984173,1.747786,0,0,OIF:SA:8738158,Europe/Paris,,OIF, +OIF:SP:8738159:800:J,1,"Gare de Mantes Station",48.983655,1.715211,0,0,OIF:SA:8738159,Europe/Paris,,OIF, +OIF:SP:8738162:800:TER,1,"Gare de Bréval",48.943237,1.541381,0,0,OIF:SA:8738162,Europe/Paris,,OIF, +OIF:SP:8738165:800:L,1,"Gare d'Achères Ville",48.970665,2.077732,0,0,OIF:SA:8738165,Europe/Paris,,OIF, +OIF:SP:8738165:810:A,1,"Gare d'Achères Ville",48.970665,2.077732,0,0,OIF:SA:8738165,Europe/Paris,,OIF, +OIF:SP:8738171:800:N,1,"Gare de Mareil sur Mauldre",48.893239,1.871738,0,0,OIF:SA:8738171,Europe/Paris,,OIF, +OIF:SP:8738172:800:N,1,"Gare de Maule",48.909305,1.857228,0,0,OIF:SA:8738172,Europe/Paris,,OIF, +OIF:SP:8738173:800:N,1,"Gare de Nézel Aulnay",48.938719,1.840517,0,0,OIF:SA:8738173,Europe/Paris,,OIF, +OIF:SP:8738179:800:J,1,"Gare de Val d'Argenteuil",48.950304,2.23111,0,0,OIF:SA:8738179,Europe/Paris,,OIF, +OIF:SP:8738180:800:J,1,"Gare de Triel sur Seine",48.981072,2.005931,0,0,OIF:SA:8738180,Europe/Paris,,OIF, +OIF:SP:8738181:800:J,1,"Gare de Vaux sur Seine",49.007127,1.963552,0,0,OIF:SA:8738181,Europe/Paris,,OIF, +OIF:SP:8738182:800:J,1,"Gare de Thun le Paradis",49.0067,1.919237,0,0,OIF:SA:8738182,Europe/Paris,,OIF, +OIF:SP:8738183:800:J,1,"Gare de Meulan Hardricourt",49.005763,1.901782,0,0,OIF:SA:8738183,Europe/Paris,,OIF, +OIF:SP:8738184:800:J,1,"Gare d'Argenteuil",48.946797,2.257897,0,0,OIF:SA:8738184,Europe/Paris,,OIF, +OIF:SP:8738186:800:J,1,"Gare de Cormeilles en Parisis",48.968496,2.193443,0,0,OIF:SA:8738186,Europe/Paris,,OIF, +OIF:SP:8738187:800:J,1,"Gare de la Frette Montigny",48.980264,2.180012,0,0,OIF:SA:8738187,Europe/Paris,,OIF, +OIF:SP:8738188:800:J,1,"Gare de Herblay",48.99029,2.161907,0,0,OIF:SA:8738188,Europe/Paris,,OIF, +OIF:SP:8738189:800:J,1,"Gare de Conflans Sainte-Honorine",48.99663,2.097774,0,0,OIF:SA:8738189,Europe/Paris,,OIF, +OIF:SP:8738190:800:L,1,"Gare de Cergy Préfecture",49.036464,2.079535,0,0,OIF:SA:8738190,Europe/Paris,,OIF, +OIF:SP:8738190:810:A,1,"Gare de Cergy Préfecture",49.036464,2.079535,0,0,OIF:SA:8738190,Europe/Paris,,OIF, +OIF:SP:8738200:800:J,1,"Gare de Becon les Bruyères",48.905763,2.269965,0,0,OIF:SA:8738200,Europe/Paris,,OIF, +OIF:SP:8738200:800:L,1,"Gare de Becon les Bruyères",48.905763,2.269965,0,0,OIF:SA:8738200,Europe/Paris,,OIF, +OIF:SP:8738220:800:L,1,"Gare de Courbevoie",48.898119,2.247943,0,0,OIF:SA:8738220,Europe/Paris,,OIF, +OIF:SP:8738221:800:L,1,"Gare de la Défense",48.892187,2.237018,0,0,OIF:SA:8738221,Europe/Paris,,OIF, +OIF:SP:8738221:800:U,1,"Gare de la Défense",48.892187,2.237018,0,0,OIF:SA:8738221,Europe/Paris,,OIF, +OIF:SP:8738225:800:L,1,"Gare de Garches Marnes la Coquette",48.838283,2.187111,0,0,OIF:SA:8738225,Europe/Paris,,OIF, +OIF:SP:8738226:800:L,1,"Gare de Vaucresson",48.836643,2.152697,0,0,OIF:SA:8738226,Europe/Paris,,OIF, +OIF:SP:8738233:800:L,1,"Gare de Chaville Rive Droite",48.812572,2.18826,0,0,OIF:SA:8738233,Europe/Paris,,OIF, +OIF:SP:8738233:800:U,1,"Gare de Chaville Rive Droite",48.812572,2.18826,0,0,OIF:SA:8738233,Europe/Paris,,OIF, +OIF:SP:8738234:800:L,1,"Gare de Sevres Ville d'Avray",48.827239,2.200721,0,0,OIF:SA:8738234,Europe/Paris,,OIF, +OIF:SP:8738234:800:U,1,"Gare de Sevres Ville d'Avray",48.827239,2.200721,0,0,OIF:SA:8738234,Europe/Paris,,OIF, +OIF:SP:8738235:800:L,1,"Gare de Saint-Cloud",48.846103,2.217621,0,0,OIF:SA:8738235,Europe/Paris,,OIF, +OIF:SP:8738235:800:U,1,"Gare de Saint-Cloud",48.846103,2.217621,0,0,OIF:SA:8738235,Europe/Paris,,OIF, +OIF:SP:8738236:800:L,1,"Gare du Val d'Or",48.85642,2.216572,0,0,OIF:SA:8738236,Europe/Paris,,OIF, +OIF:SP:8738237:800:L,1,"Gare de Suresnes Mont Valerien",48.871714,2.22103,0,0,OIF:SA:8738237,Europe/Paris,,OIF, +OIF:SP:8738237:800:U,1,"Gare de Suresnes Mont Valerien",48.871714,2.22103,0,0,OIF:SA:8738237,Europe/Paris,,OIF, +OIF:SP:8738238:800:L,1,"Gare de Puteaux",48.883384,2.233692,0,0,OIF:SA:8738238,Europe/Paris,,OIF, +OIF:SP:8738238:800:U,1,"Gare de Puteaux",48.883384,2.233692,0,0,OIF:SA:8738238,Europe/Paris,,OIF, +OIF:SP:8738243:800:L,1,"Gare de la Celle Saint-Cloud",48.84272,2.138125,0,0,OIF:SA:8738243,Europe/Paris,,OIF, +OIF:SP:8738244:800:L,1,"Gare de Bougival",48.854252,2.132132,0,0,OIF:SA:8738244,Europe/Paris,,OIF, +OIF:SP:8738245:800:L,1,"Gare de Louveciennes",48.861215,2.123191,0,0,OIF:SA:8738245,Europe/Paris,,OIF, +OIF:SP:8738246:800:L,1,"Gare de Marly le Roi",48.871503,2.096548,0,0,OIF:SA:8738246,Europe/Paris,,OIF, +OIF:SP:8738247:800:L,1,"Gare de l'Étang la Ville",48.868064,2.076719,0,0,OIF:SA:8738247,Europe/Paris,,OIF, +OIF:SP:8738248:800:L,1,"Gare de Saint-Nom la Bretèche Foret de Marly",48.867792,2.050768,0,0,OIF:SA:8738248,Europe/Paris,,OIF, +OIF:SP:8738249:800:L,1,"Gare de Cergy Saint-Christophe",49.049647,2.034294,0,0,OIF:SA:8738249,Europe/Paris,,OIF, +OIF:SP:8738249:810:A,1,"Gare de Cergy Saint-Christophe",49.049647,2.034294,0,0,OIF:SA:8738249,Europe/Paris,,OIF, +OIF:SP:8738265:800:L,1,"Gare de Cergy le Haut",49.047876,2.011,0,0,OIF:SA:8738265,Europe/Paris,,OIF, +OIF:SP:8738265:810:A,1,"Gare de Cergy le Haut",49.047876,2.011,0,0,OIF:SA:8738265,Europe/Paris,,OIF, +OIF:SP:8738280:800:L,1,"Gare de Saint-Germain Grande Ceinture",48.903205,2.072971,0,0,OIF:SA:8738280,Europe/Paris,,OIF, +OIF:SP:8738281:800:L,1,"Gare de Mareil Marly",48.880992,2.079178,0,0,OIF:SA:8738281,Europe/Paris,,OIF, +OIF:SP:8738286:800:L,1,"Gare de Versailles Rive Droite",48.809482,2.135087,0,0,OIF:SA:8738286,Europe/Paris,,OIF, +OIF:SP:8738287:800:L,1,"Gare de Montreuil",48.806377,2.1515,0,0,OIF:SA:8738287,Europe/Paris,,OIF, +OIF:SP:8738288:800:L,1,"Gare de Viroflay Rive Droite",48.805493,2.16852,0,0,OIF:SA:8738288,Europe/Paris,,OIF, +OIF:SP:8738328:800:C,1,"Gare de Massy Verrières RER C",48.734717,2.273483,0,0,OIF:SA:8738328,Europe/Paris,,OIF, +OIF:SP:8738400:800:J,1,"Gare Saint-Lazare",48.876837,2.324738,0,0,OIF:SA:8738400,Europe/Paris,,OIF, +OIF:SP:8738400:800:L,1,"Gare Saint-Lazare",48.876837,2.324738,0,0,OIF:SA:8738400,Europe/Paris,,OIF, +OIF:SP:8738400:800:TER,1,"Gare Saint-Lazare",48.876837,2.324738,0,0,OIF:SA:8738400,Europe/Paris,,OIF, +OIF:SP:8738600:800:L,1,"Gare de la Garenne Colombes",48.909633,2.239684,0,0,OIF:SA:8738600,Europe/Paris,,OIF, +OIF:SP:8738605:810:A,1,"Gare d'Achères Grand Cormier",48.955402,2.093522,0,0,OIF:SA:8738605,Europe/Paris,,OIF, +OIF:SP:8738630:800:L,1,"Gare des Vallées",48.913637,2.257326,0,0,OIF:SA:8738630,Europe/Paris,,OIF, +OIF:SP:8738631:800:L,1,"Gare de Nanterre Université",48.901746,2.215111,0,0,OIF:SA:8738631,Europe/Paris,,OIF, +OIF:SP:8738640:800:J,1,"Gare de Houilles Carrières sur Seine",48.920379,2.185353,0,0,OIF:SA:8738640,Europe/Paris,,OIF, +OIF:SP:8738640:800:L,1,"Gare de Houilles Carrières sur Seine",48.920379,2.185353,0,0,OIF:SA:8738640,Europe/Paris,,OIF, +OIF:SP:8738640:810:A,1,"Gare de Houilles Carrières sur Seine",48.920379,2.185353,0,0,OIF:SA:8738640,Europe/Paris,,OIF, +OIF:SP:8738641:800:J,1,"Gare de Sartrouville",48.937736,2.157087,0,0,OIF:SA:8738641,Europe/Paris,,OIF, +OIF:SP:8738641:800:L,1,"Gare de Sartrouville",48.937736,2.157087,0,0,OIF:SA:8738641,Europe/Paris,,OIF, +OIF:SP:8738641:810:A,1,"Gare de Sartrouville",48.937736,2.157087,0,0,OIF:SA:8738641,Europe/Paris,,OIF, +OIF:SP:8738642:800:J,1,"Gare de Maisons Laffitte",48.945796,2.144559,0,0,OIF:SA:8738642,Europe/Paris,,OIF, +OIF:SP:8738642:800:L,1,"Gare de Maisons Laffitte",48.945796,2.144559,0,0,OIF:SA:8738642,Europe/Paris,,OIF, +OIF:SP:8738642:810:A,1,"Gare de Maisons Laffitte",48.945796,2.144559,0,0,OIF:SA:8738642,Europe/Paris,,OIF, +OIF:SP:8738657:800:J,1,"Gare de Poissy",48.933265,2.041072,0,0,OIF:SA:8738657,Europe/Paris,,OIF, +OIF:SP:8738657:810:A,1,"Gare de Poissy",48.933265,2.041072,0,0,OIF:SA:8738657,Europe/Paris,,OIF, +OIF:SP:8738664:800:J,1,"Gare de Villennes sur Seine",48.939487,1.999604,0,0,OIF:SA:8738664,Europe/Paris,,OIF, +OIF:SP:8738665:800:J,1,"Gare de Vernouillet Verneuil",48.981446,1.983143,0,0,OIF:SA:8738665,Europe/Paris,,OIF, +OIF:SP:8738666:800:J,1,"Gare des Clairières de Verneuil",48.992614,1.955479,0,0,OIF:SA:8738666,Europe/Paris,,OIF, +OIF:SP:8738668:800:J,1,"Gare des Mureaux",48.992592,1.913531,0,0,OIF:SA:8738668,Europe/Paris,,OIF, +OIF:SP:8738673:800:J,1,"Gare d'Aubergenville Elisabethville",48.972142,1.848349,0,0,OIF:SA:8738673,Europe/Paris,,OIF, +OIF:SP:8738676:800:J,1,"Gare d'Épône Mézières",48.963344,1.809095,0,0,OIF:SA:8738676,Europe/Paris,,OIF, +OIF:SP:8738676:800:N,1,"Gare d'Épône Mézières",48.963344,1.809095,0,0,OIF:SA:8738676,Europe/Paris,,OIF, +OIF:SP:8738700:800:TER,1,"Gare d'Évreux-Normandie",49.01842,1.149004,0,0,OIF:SA:8738700,Europe/Paris,,OIF, +OIF:SP:8738709:800:TER,1,"Gare de Bueil",48.925094,1.443791,0,0,OIF:SA:8738709,Europe/Paris,,OIF, +OIF:SP:8739100:800:N,1,"Gare Montparnasse",48.841187,2.320509,0,0,OIF:SA:8739100,Europe/Paris,,OIF, +OIF:SP:8739100:800:TER,1,"Gare Montparnasse",48.841187,2.320509,0,0,OIF:SA:8739100,Europe/Paris,,OIF, +OIF:SP:8739110:800:TER,1,"Gare Vaugirard",48.838826,2.315992,0,0,OIF:SA:8739110,Europe/Paris,,OIF, +OIF:SP:8739153:800:N,1,"Gare de Vanves Malakoff",48.818388,2.292062,0,0,OIF:SA:8739153,Europe/Paris,,OIF, +OIF:SP:8739156:800:N,1,"Gare de Clamart",48.814239,2.27449,0,0,OIF:SA:8739156,Europe/Paris,,OIF, +OIF:SP:8739300:800:C,1,"Gare de Versailles Chantiers",48.79528,2.13605,0,0,OIF:SA:8739300,Europe/Paris,,OIF, +OIF:SP:8739300:800:N,1,"Gare de Versailles Chantiers",48.79528,2.13605,0,0,OIF:SA:8739300,Europe/Paris,,OIF, +OIF:SP:8739300:800:TER,1,"Gare de Versailles Chantiers",48.79528,2.13605,0,0,OIF:SA:8739300,Europe/Paris,,OIF, +OIF:SP:8739300:800:U,1,"Gare de Versailles Chantiers",48.79528,2.13605,0,0,OIF:SA:8739300,Europe/Paris,,OIF, +OIF:SP:8739303:800:C,1,"Invalides",48.862902,2.313911,0,0,OIF:SA:8739303,Europe/Paris,,OIF, +OIF:SP:8739305:800:C,1,"Champ de Mars Tour Eiffel",48.857293,2.290392,0,0,OIF:SA:8739305,Europe/Paris,,OIF, +OIF:SP:8739306:800:C,1,"Javel",48.846192,2.276761,0,0,OIF:SA:8739306,Europe/Paris,,OIF, +OIF:SP:8739307:800:C,1,"Gare d'Issy",48.819674,2.25876,0,0,OIF:SA:8739307,Europe/Paris,,OIF, +OIF:SP:8739308:800:C,1,"Gare de Meudon Val Fleury",48.807493,2.240883,0,0,OIF:SA:8739308,Europe/Paris,,OIF, +OIF:SP:8739310:800:N,1,"Gare de Meudon",48.814884,2.240919,0,0,OIF:SA:8739310,Europe/Paris,,OIF, +OIF:SP:8739311:800:N,1,"Gare de Bellevue",48.818948,2.229808,0,0,OIF:SA:8739311,Europe/Paris,,OIF, +OIF:SP:8739312:800:N,1,"Gare de Sevres Rive Gauche",48.821217,2.21486,0,0,OIF:SA:8739312,Europe/Paris,,OIF, +OIF:SP:8739315:800:C,1,"Gare de Versailles Château - Rive Gauche",48.800216,2.129044,0,0,OIF:SA:8739315,Europe/Paris,,OIF, +OIF:SP:8739316:800:C,1,"Gare de Porchefontaine",48.796528,2.152379,0,0,OIF:SA:8739316,Europe/Paris,,OIF, +OIF:SP:8739317:800:C,1,"Gare de Chaville Vélizy",48.799729,2.183684,0,0,OIF:SA:8739317,Europe/Paris,,OIF, +OIF:SP:8739320:800:N,1,"Gare de Chaville Rive Gauche",48.804683,2.18863,0,0,OIF:SA:8739320,Europe/Paris,,OIF, +OIF:SP:8739321:800:C,1,"Gare de Viroflay Rive Gauche",48.800718,2.17139,0,0,OIF:SA:8739321,Europe/Paris,,OIF, +OIF:SP:8739321:800:N,1,"Gare de Viroflay Rive Gauche",48.800718,2.17139,0,0,OIF:SA:8739321,Europe/Paris,,OIF, +OIF:SP:8739322:800:C,1,"Gare de Saint-Cyr",48.798708,2.071847,0,0,OIF:SA:8739322,Europe/Paris,,OIF, +OIF:SP:8739322:800:N,1,"Gare de Saint-Cyr",48.798708,2.071847,0,0,OIF:SA:8739322,Europe/Paris,,OIF, +OIF:SP:8739322:800:U,1,"Gare de Saint-Cyr",48.798708,2.071847,0,0,OIF:SA:8739322,Europe/Paris,,OIF, +OIF:SP:8739325:800:N,1,"Gare de la Verrière",48.755389,1.943835,0,0,OIF:SA:8739325,Europe/Paris,,OIF, +OIF:SP:8739325:800:U,1,"Gare de la Verrière",48.755389,1.943835,0,0,OIF:SA:8739325,Europe/Paris,,OIF, +OIF:SP:8739327:800:N,1,"Gare de Coignières",48.743484,1.921037,0,0,OIF:SA:8739327,Europe/Paris,,OIF, +OIF:SP:8739327:800:U,1,"Gare de Coignières",48.743484,1.921037,0,0,OIF:SA:8739327,Europe/Paris,,OIF, +OIF:SP:8739328:800:N,1,"Gare des Essarts le Roi",48.721916,1.890005,0,0,OIF:SA:8739328,Europe/Paris,,OIF, +OIF:SP:8739328:800:U,1,"Gare des Essarts le Roi",48.721916,1.890005,0,0,OIF:SA:8739328,Europe/Paris,,OIF, +OIF:SP:8739329:800:N,1,"Gare du Perray",48.693097,1.856592,0,0,OIF:SA:8739329,Europe/Paris,,OIF, +OIF:SP:8739329:800:U,1,"Gare du Perray",48.693097,1.856592,0,0,OIF:SA:8739329,Europe/Paris,,OIF, +OIF:SP:8739330:800:C,1,"Gare d'Issy Val de Seine",48.83012,2.26369,0,0,OIF:SA:8739330,Europe/Paris,,OIF, +OIF:SP:8739331:800:N,1,"Gare de Rambouillet",48.644222,1.832935,0,0,OIF:SA:8739331,Europe/Paris,,OIF, +OIF:SP:8739331:800:TER,1,"Gare de Rambouillet",48.644222,1.832935,0,0,OIF:SA:8739331,Europe/Paris,,OIF, +OIF:SP:8739331:800:U,1,"Gare de Rambouillet",48.644222,1.832935,0,0,OIF:SA:8739331,Europe/Paris,,OIF, +OIF:SP:8739332:800:C,1,"Pont du Garigliano - Hôpital Européen Georges Pompidou",48.83909,2.270458,0,0,OIF:SA:8739332,Europe/Paris,,OIF, +OIF:SP:8739334:800:TER,1,"Gare de Gazeran",48.625991,1.771696,0,0,OIF:SA:8739334,Europe/Paris,,OIF, +OIF:SP:8739336:800:N,1,"Gare de Beynes",48.859999,1.875596,0,0,OIF:SA:8739336,Europe/Paris,,OIF, +OIF:SP:8739340:800:N,1,"Gare de Fontenay le Fleury",48.807247,2.040519,0,0,OIF:SA:8739340,Europe/Paris,,OIF, +OIF:SP:8739341:800:N,1,"Gare de Villepreux les Clayes",48.823653,1.992865,0,0,OIF:SA:8739341,Europe/Paris,,OIF, +OIF:SP:8739342:800:N,1,"Gare de Plaisir Grignon",48.831916,1.944402,0,0,OIF:SA:8739342,Europe/Paris,,OIF, +OIF:SP:8739343:800:N,1,"Gare de Garancières la Queue",48.810402,1.765057,0,0,OIF:SA:8739343,Europe/Paris,,OIF, +OIF:SP:8739344:800:N,1,"Gare d'Orgerus Béhoust",48.826578,1.703218,0,0,OIF:SA:8739344,Europe/Paris,,OIF, +OIF:SP:8739345:800:N,1,"Gare de Tacoignières Richebourg",48.829429,1.66901,0,0,OIF:SA:8739345,Europe/Paris,,OIF, +OIF:SP:8739346:800:N,1,"Gare de Houdan",48.796025,1.602702,0,0,OIF:SA:8739346,Europe/Paris,,OIF, +OIF:SP:8739347:800:N,1,"Gare de Marchezais Broue",48.768422,1.513333,0,0,OIF:SA:8739347,Europe/Paris,,OIF, +OIF:SP:8739348:800:N,1,"Gare de Dreux",48.730955,1.369974,0,0,OIF:SA:8739348,Europe/Paris,,OIF, +OIF:SP:8739348:800:TER,1,"Gare de Dreux",48.730955,1.369974,0,0,OIF:SA:8739348,Europe/Paris,,OIF, +OIF:SP:8739350:800:C,1,"Gare de Petit Jouy les Loges",48.770425,2.146832,0,0,OIF:SA:8739350,Europe/Paris,,OIF, +OIF:SP:8739351:800:C,1,"Gare de Jouy en Josas",48.764776,2.163947,0,0,OIF:SA:8739351,Europe/Paris,,OIF, +OIF:SP:8739353:800:C,1,"Gare de Vauboyen",48.759189,2.192136,0,0,OIF:SA:8739353,Europe/Paris,,OIF, +OIF:SP:8739354:800:C,1,"Gare de Bièvres",48.751023,2.215861,0,0,OIF:SA:8739354,Europe/Paris,,OIF, +OIF:SP:8739356:800:C,1,"Gare d'Igny",48.740182,2.230961,0,0,OIF:SA:8739356,Europe/Paris,,OIF, +OIF:SP:8739357:800:C,1,"Gare de Massy Palaiseau RER C",48.725198,2.257355,0,0,OIF:SA:8739357,Europe/Paris,,OIF, +OIF:SP:8739361:800:C,1,"Gare de Longjumeau",48.702239,2.294558,0,0,OIF:SA:8739361,Europe/Paris,,OIF, +OIF:SP:8739362:800:N,1,"Gare de Plaisir les Clayes",48.83096,1.960027,0,0,OIF:SA:8739362,Europe/Paris,,OIF, +OIF:SP:8739363:800:C,1,"Gare de Chilly Mazarin",48.700681,2.307841,0,0,OIF:SA:8739363,Europe/Paris,,OIF, +OIF:SP:8739364:800:C,1,"Gare de Gravigny Balizy",48.685714,2.317626,0,0,OIF:SA:8739364,Europe/Paris,,OIF, +OIF:SP:8739365:800:C,1,"Gare de Petit Vaux",48.676381,2.333249,0,0,OIF:SA:8739365,Europe/Paris,,OIF, +OIF:SP:8739383:800:N,1,"Gare de Trappes",48.774803,2.006567,0,0,OIF:SA:8739383,Europe/Paris,,OIF, +OIF:SP:8739383:800:U,1,"Gare de Trappes",48.774803,2.006567,0,0,OIF:SA:8739383,Europe/Paris,,OIF, +OIF:SP:8739384:800:C,1,"Gare de Saint-Quentin en Yvelines",48.78739,2.044622,0,0,OIF:SA:8739384,Europe/Paris,,OIF, +OIF:SP:8739384:800:N,1,"Gare de Saint-Quentin en Yvelines",48.78739,2.044622,0,0,OIF:SA:8739384,Europe/Paris,,OIF, +OIF:SP:8739384:800:U,1,"Gare de Saint-Quentin en Yvelines",48.78739,2.044622,0,0,OIF:SA:8739384,Europe/Paris,,OIF, +OIF:SP:8739387:800:L,1,"Gare de Noisy le Roi",48.84136,2.061327,0,0,OIF:SA:8739387,Europe/Paris,,OIF, +OIF:SP:8739388:800:N,1,"Gare de Villiers Neauphle Pontchartrain",48.815329,1.877504,0,0,OIF:SA:8739388,Europe/Paris,,OIF, +OIF:SP:8739389:800:N,1,"Gare de Montfort l'Amaury Mère",48.802602,1.816467,0,0,OIF:SA:8739389,Europe/Paris,,OIF, +OIF:SP:8739400:800:TER,1,"Gare de Chartres",48.448385,1.480871,0,0,OIF:SA:8739400,Europe/Paris,,OIF, +OIF:SP:8739411:800:TER,1,"Gare d'Epernon",48.605076,1.681646,0,0,OIF:SA:8739411,Europe/Paris,,OIF, +OIF:SP:8739413:800:TER,1,"Gare de Maintenon",48.585279,1.592458,0,0,OIF:SA:8739413,Europe/Paris,,OIF, +OIF:SP:8739414:800:TER,1,"Gare de Saint-Piat",48.542184,1.589985,0,0,OIF:SA:8739414,Europe/Paris,,OIF, +OIF:SP:8739415:800:TER,1,"Gare de Jouy",48.510447,1.557776,0,0,OIF:SA:8739415,Europe/Paris,,OIF, +OIF:SP:8739417:800:TER,1,"Gare de la Villette Saint-Prest",48.482411,1.522358,0,0,OIF:SA:8739417,Europe/Paris,,OIF, +OIF:SP:8741069:800:J,1,"Meulan Place du Vexin",49.004475,1.906968,0,0,OIF:SA:8741069,Europe/Paris,,OIF, +OIF:SP:8741071:800:J,1,"Meulan Arquebuse",49.004403,1.909537,0,0,OIF:SA:8741071,Europe/Paris,,OIF, +OIF:SP:8741085:800:J,1,"Gargenville Mairie",48.988097,1.81156,0,0,OIF:SA:8741085,Europe/Paris,,OIF, +OIF:SP:8741440:800:N131,1,"Mairie de Juvisy",48.692262,2.370984,0,0,OIF:SA:8741440,Europe/Paris,,OIF, +OIF:SP:8741440:800:N144,1,"Mairie de Juvisy",48.691094,2.370766,0,0,OIF:SA:8741440,Europe/Paris,,OIF, +OIF:SP:8741441:800:N131,1,"Aéroport Orly Sud",48.729646,2.368142,0,0,OIF:SA:59675,Europe/Paris,,OIF, +OIF:SP:8741441:800:N144,1,"Aéroport Orly Sud",48.729646,2.368142,0,0,OIF:SA:59675,Europe/Paris,,OIF, +OIF:SP:8741442:800:N131,1,"Pyramide de Juvisy",48.697925,2.371667,0,0,OIF:SA:8741442,Europe/Paris,,OIF, +OIF:SP:8741442:800:N144,1,"Pyramide de Juvisy",48.697925,2.371667,0,0,OIF:SA:8741442,Europe/Paris,,OIF, +OIF:SP:8741444:800:N144,1,"Place d'Italie",48.831474,2.35493,0,0,OIF:SA:59275,Europe/Paris,,OIF, +OIF:SP:8741449:800:N145,1,"Yves Farges",48.776815,1.995087,0,0,OIF:SA:8741449,Europe/Paris,,OIF, +OIF:SP:8741451:800:N145,1,"Porte des Matelots",48.803299,2.105899,0,0,OIF:SA:8741451,Europe/Paris,,OIF, +OIF:SP:8741452:800:N145,1,"Pierre Edouard",48.801104,2.162767,0,0,OIF:SA:8741452,Europe/Paris,,OIF, +OIF:SP:8741453:800:N145,1,"Paul Langevin",48.776026,1.989693,0,0,OIF:SA:8741453,Europe/Paris,,OIF, +OIF:SP:8741454:800:N145,1,"Pasteur",48.773374,1.983605,0,0,OIF:SA:8741454,Europe/Paris,,OIF, +OIF:SP:8741455:800:N145,1,"Les Pyramides",48.763267,1.94755,0,0,OIF:SA:8741455,Europe/Paris,,OIF, +OIF:SP:8741456:800:N145,1,"La Petite Villedieu",48.766724,1.960305,0,0,OIF:SA:8741456,Europe/Paris,,OIF, +OIF:SP:8741457:800:N145,1,"La Passerelle",48.770745,1.97008,0,0,OIF:SA:8741457,Europe/Paris,,OIF, +OIF:SP:8741458:800:N145,1,"Hôpital Jean Rostand",48.821172,2.202443,0,0,OIF:SA:8741458,Europe/Paris,,OIF, +OIF:SP:8741459:800:N145,1,"Groupe Scolaire Pasteur",48.781918,2.034196,0,0,OIF:SA:8741459,Europe/Paris,,OIF, +OIF:SP:8741460:800:N145,1,"Grâce de Dieu",48.804135,2.176798,0,0,OIF:SA:8741460,Europe/Paris,,OIF, +OIF:SP:8741461:800:N145,1,"Atrium",48.809896,2.19013,0,0,OIF:SA:8741461,Europe/Paris,,OIF, +OIF:SP:8741469:800:N145,1,"Porte de Versailles",48.833084,2.289039,0,0,OIF:SA:59514,Europe/Paris,,OIF, +OIF:SP:8741470:800:N145,1,"Balard",48.835775,2.278103,0,0,OIF:SA:59477,Europe/Paris,,OIF, +OIF:SP:8741471:800:N145,1,"Marcel Sembat",48.833687,2.244247,0,0,OIF:SA:59505,Europe/Paris,,OIF, +OIF:SP:8741560:800:J,1,"Gare de Vernon",49.09101,1.478704,0,0,OIF:SA:8741560,Europe/Paris,,OIF, +OIF:SP:8741560:800:TER,1,"Gare de Vernon",49.09101,1.478704,0,0,OIF:SA:8741560,Europe/Paris,,OIF, +OIF:SP:8741588:800:J,1,"Gare de Rosny sur Seine",48.997392,1.630168,0,0,OIF:SA:8741588,Europe/Paris,,OIF, +OIF:SP:8741588:800:TER,1,"Gare de Rosny sur Seine",48.997392,1.630168,0,0,OIF:SA:8741588,Europe/Paris,,OIF, +OIF:SP:8741589:800:J,1,"Gare de Bonnières",49.038762,1.581532,0,0,OIF:SA:8741589,Europe/Paris,,OIF, +OIF:SP:8741589:800:TER,1,"Gare de Bonnières",49.038762,1.581532,0,0,OIF:SA:8741589,Europe/Paris,,OIF, +OIF:SP:8743081:800:P,1,"La Ferté Gaucher Centre",48.782308,3.306971,0,0,OIF:SA:8743081,Europe/Paris,,OIF, +OIF:SP:8743088:800:P,1,"Jouy sur Morin Monument",48.790679,3.274084,0,0,OIF:SA:8743088,Europe/Paris,,OIF, +OIF:SP:8743090:800:P,1,"Eustache Lenoir",48.798276,3.267078,0,0,OIF:SA:8743090,Europe/Paris,,OIF, +OIF:SP:8743091:800:P,1,"Champgoulin",48.791681,3.256376,0,0,OIF:SA:8743091,Europe/Paris,,OIF, +OIF:SP:8743179:800:T4,1,"Rougemont Chanteloup",48.930934,2.51505,0,0,OIF:SA:8743179,Europe/Paris,,OIF, +OIF:SP:8743282:800:N152,1,"Grand Cerf",48.923661,2.208369,0,0,OIF:SA:8743282,Europe/Paris,,OIF, +OIF:SP:8743283:800:N152,1,"Conflans Fin d'Oise Noctilien",48.99168,2.083631,0,0,OIF:SA:8743283,Europe/Paris,,OIF, +OIF:SP:8743284:800:N152,1,"Conflans Sainte-Honorine Noctilien",48.997461,2.093491,0,0,OIF:SA:8738189,Europe/Paris,,OIF, +OIF:SP:8743285:800:N152,1,"Courbevoie Becon Noctil",48.9051,2.256444,0,0,OIF:SA:8743285,Europe/Paris,,OIF, +OIF:SP:8743286:800:N152,1,"Éragny sur Oise Noctili",49.018151,2.090975,0,0,OIF:SA:8743286,Europe/Paris,,OIF, +OIF:SP:8743287:800:N152,1,"Cergy Conseil Général Noctilien",49.031829,2.074333,0,0,OIF:SA:8743287,Europe/Paris,,OIF, +OIF:SP:8743288:800:N152,1,"Houilles Noctilien",48.92643,2.193332,0,0,OIF:SA:8743288,Europe/Paris,,OIF, +OIF:SP:8743289:800:N152,1,"Garennes Colombes Noctilien",48.909354,2.236245,0,0,OIF:SA:8738600,Europe/Paris,,OIF, +OIF:SP:8743290:800:N152,1,"Neuville Université Noctilien",49.014614,2.079475,0,0,OIF:SA:8733448,Europe/Paris,,OIF, +OIF:SP:8743291:800:N152,1,"Sartrouville Noctilien",48.941544,2.164764,0,0,OIF:SA:8738641,Europe/Paris,,OIF, +OIF:SP:8743294:800:N141,1,"Chessy Noctilien",48.880676,2.767724,0,0,OIF:SA:8743294,Europe/Paris,,OIF, +OIF:SP:8743295:800:N141,1,"Lagny Thorigny Noctilie",48.876161,2.701167,0,0,OIF:SA:8711631,Europe/Paris,,OIF, +OIF:SP:8743296:800:N142,1,"Val de Fontenay Noctili",48.85239,2.489575,0,0,OIF:SA:8711371,Europe/Paris,,OIF, +OIF:SP:8743307:800:N141,1,"Saint-Thibault des Vignes Noctilien",48.870573,2.682517,0,0,OIF:SA:8743307,Europe/Paris,,OIF, +OIF:SP:8743308:800:N130,1,"Collégien Noctilien",48.839415,2.668993,0,0,OIF:SA:8743308,Europe/Paris,,OIF, +OIF:SP:8743309:800:N130,1,"Bussy Saint-Georges Noctil",48.836628,2.709086,0,0,OIF:SA:8775498,Europe/Paris,,OIF, +OIF:SP:8743310:800:N130,1,"Val d'Europe Noctilien",48.855255,2.773656,0,0,OIF:SA:8773006,Europe/Paris,,OIF, +OIF:SP:8743311:800:N142,1,"Rosny sous Bois Noctili",48.870605,2.48482,0,0,OIF:SA:8743311,Europe/Paris,,OIF, +OIF:SP:8743312:800:N142,1,"Rosny Bois Perrier Noct",48.882761,2.480589,0,0,OIF:SA:8743312,Europe/Paris,,OIF, +OIF:SP:8743313:800:N142,1,"Ozoir la Ferrière Armainvilliers",48.76365,2.683641,0,0,OIF:SA:8743313,Europe/Paris,,OIF, +OIF:SP:8743314:800:N142,1,"Émerainville P C Noctil",48.804718,2.622046,0,0,OIF:SA:8743314,Europe/Paris,,OIF, +OIF:SP:8743315:800:N141,1,"Porte de Bagnolet Noctilien",48.864671,2.409376,0,0,OIF:SA:59435,Europe/Paris,,OIF, +OIF:SP:8743315:800:N142,1,"Porte de Bagnolet Noctilien",48.864671,2.409376,0,0,OIF:SA:59435,Europe/Paris,,OIF, +OIF:SP:8743316:800:N141,1,"République Noctilien",48.867476,2.364083,0,0,OIF:SA:59557,Europe/Paris,,OIF, +OIF:SP:8743316:800:N142,1,"République Noctilien",48.867476,2.364083,0,0,OIF:SA:59557,Europe/Paris,,OIF, +OIF:SP:8743317:800:N141,1,"Neuilly Plaisance Noctilien",48.853047,2.514691,0,0,OIF:SA:8743317,Europe/Paris,,OIF, +OIF:SP:8743318:800:N141,1,"Montévrain Noctilien",48.877641,2.730555,0,0,OIF:SA:8743318,Europe/Paris,,OIF, +OIF:SP:8743320:800:N141,1,"Ville Evrard Noctilien",48.862695,2.545483,0,0,OIF:SA:8743320,Europe/Paris,,OIF, +OIF:SP:8744895:800:TER,1,"Gare de Beauvais Tille Aéroport",49.459464,2.110794,0,0,OIF:SA:8744895,Europe/Paris,,OIF, +OIF:SP:8749210:800:C,1,"Gare des Ardoines",48.782505,2.409542,0,0,OIF:SA:8749210,Europe/Paris,,OIF, +OIF:SP:8749571:800:N131,1,"Aérogare Orly Ouest",48.728399,2.359948,0,0,OIF:SA:8749571,Europe/Paris,,OIF, +OIF:SP:8749572:800:N131,1,"Aristide Briand",48.70819,2.371348,0,0,OIF:SA:8749572,Europe/Paris,,OIF, +OIF:SP:8749573:800:N133,1,"Fer à Cheval",48.744622,2.406912,0,0,OIF:SA:8749573,Europe/Paris,,OIF, +OIF:SP:8749574:800:N133,1,"Les Tilleuls",48.753135,2.40551,0,0,OIF:SA:8749574,Europe/Paris,,OIF, +OIF:SP:8749577:800:N145,1,"Franche Comte",48.766594,1.950856,0,0,OIF:SA:8749577,Europe/Paris,,OIF, +OIF:SP:8750199:800:N132,1,"Robert Schuman",48.550329,2.63923,0,0,OIF:SA:8750199,Europe/Paris,,OIF, +OIF:SP:8750203:800:N132,1,"André Malraux",48.550606,2.666475,0,0,OIF:SA:8750203,Europe/Paris,,OIF, +OIF:SP:8750204:800:N132,1,"Pyramide de Brunoy",48.683736,2.490682,0,0,OIF:SA:8750204,Europe/Paris,,OIF, +OIF:SP:8753413:800:J,1,"Gare d'Ermont Eaubonne Psl",48.980512,2.27106,0,0,OIF:SA:8727605,Europe/Paris,,OIF, +OIF:SP:8754017:800:C,1,"Gare de Dourdan la Foret",48.535621,1.995902,0,0,OIF:SA:8754017,Europe/Paris,,OIF, +OIF:SP:8754309:800:TER,1,"Gare d'Angerville",48.311296,2.003525,0,0,OIF:SA:8754309,Europe/Paris,,OIF, +OIF:SP:8754318:800:C,1,"Boulainvilliers",48.856532,2.275167,0,0,OIF:SA:8754318,Europe/Paris,,OIF, +OIF:SP:8754320:800:C,1,"Avenue du Président Kennedy",48.853648,2.279487,0,0,OIF:SA:8754320,Europe/Paris,,OIF, +OIF:SP:8754511:800:TER,1,"Gare de Monnerville",48.348416,2.03224,0,0,OIF:SA:8754511,Europe/Paris,,OIF, +OIF:SP:8754512:800:TER,1,"Gare de Guillerval",48.374525,2.059912,0,0,OIF:SA:8754512,Europe/Paris,,OIF, +OIF:SP:8754513:800:C,1,"Gare d'Étampes",48.436924,2.159531,0,0,OIF:SA:8754513,Europe/Paris,,OIF, +OIF:SP:8754513:800:TER,1,"Gare d'Étampes",48.436924,2.159531,0,0,OIF:SA:8754513,Europe/Paris,,OIF, +OIF:SP:8754514:800:C,1,"Gare d'Etrechy",48.493645,2.194582,0,0,OIF:SA:8754514,Europe/Paris,,OIF, +OIF:SP:8754515:800:C,1,"Gare de Chamarande",48.514246,2.215518,0,0,OIF:SA:8754515,Europe/Paris,,OIF, +OIF:SP:8754516:800:C,1,"Gare de Lardy",48.520404,2.25474,0,0,OIF:SA:8754516,Europe/Paris,,OIF, +OIF:SP:8754517:800:C,1,"Gare de Bouray",48.53289,2.290083,0,0,OIF:SA:8754517,Europe/Paris,,OIF, +OIF:SP:8754518:800:C,1,"Gare de Marolles en Hurepoix",48.565594,2.290924,0,0,OIF:SA:8754518,Europe/Paris,,OIF, +OIF:SP:8754519:800:C,1,"Gare de Brétigny",48.606745,2.30206,0,0,OIF:SA:8754519,Europe/Paris,,OIF, +OIF:SP:8754520:800:C,1,"Gare de Saint-Michel sur Orge",48.635876,2.306833,0,0,OIF:SA:8754520,Europe/Paris,,OIF, +OIF:SP:8754521:800:C,1,"Gare de Sainte-Geneviève des Bois",48.652811,2.312736,0,0,OIF:SA:8754521,Europe/Paris,,OIF, +OIF:SP:8754522:800:C,1,"Gare d'Epinay sur Orge",48.669484,2.332623,0,0,OIF:SA:8754522,Europe/Paris,,OIF, +OIF:SP:8754523:800:C,1,"Gare de Savigny sur Orge",48.676447,2.352481,0,0,OIF:SA:8754523,Europe/Paris,,OIF, +OIF:SP:8754524:800:C,1,"Gare de Juvisy",48.689457,2.383139,0,0,OIF:SA:8754524,Europe/Paris,,OIF, +OIF:SP:8754524:800:D,1,"Gare de Juvisy",48.689457,2.383139,0,0,OIF:SA:8754524,Europe/Paris,,OIF, +OIF:SP:8754525:800:C,1,"Gare d'Athis Mons",48.712629,2.403633,0,0,OIF:SA:8754525,Europe/Paris,,OIF, +OIF:SP:8754526:800:C,1,"Gare d'Ablon",48.725535,2.419565,0,0,OIF:SA:8754526,Europe/Paris,,OIF, +OIF:SP:8754527:800:C,1,"Gare de Villeneuve le Roi",48.739831,2.4264,0,0,OIF:SA:8754527,Europe/Paris,,OIF, +OIF:SP:8754528:800:C,1,"Gare de Choisy le Roi",48.763787,2.411387,0,0,OIF:SA:8754528,Europe/Paris,,OIF, +OIF:SP:8754529:800:C,1,"Gare de Vitry sur Seine",48.800209,2.402713,0,0,OIF:SA:8754529,Europe/Paris,,OIF, +OIF:SP:8754530:800:C,1,"Gare d'Ivry sur Seine",48.813989,2.391687,0,0,OIF:SA:8754530,Europe/Paris,,OIF, +OIF:SP:8754535:800:C,1,"Gare de Saint-Martin d'Etampes",48.427363,2.145247,0,0,OIF:SA:8754535,Europe/Paris,,OIF, +OIF:SP:8754545:800:C,1,"Gare de la Norville Saint-Germain les Arpajon",48.591461,2.266938,0,0,OIF:SA:8754545,Europe/Paris,,OIF, +OIF:SP:8754546:800:C,1,"Gare d'Arpajon",48.586008,2.24107,0,0,OIF:SA:8754546,Europe/Paris,,OIF, +OIF:SP:8754547:800:C,1,"Gare d'Égly",48.582486,2.222433,0,0,OIF:SA:8754547,Europe/Paris,,OIF, +OIF:SP:8754548:800:C,1,"Gare de Breuillet Bruyères le Chatel",48.577508,2.192063,0,0,OIF:SA:8754548,Europe/Paris,,OIF, +OIF:SP:8754549:800:C,1,"Gare de Breuillet Village",48.564597,2.170976,0,0,OIF:SA:8754549,Europe/Paris,,OIF, +OIF:SP:8754550:800:C,1,"Gare de Saint-Chéron",48.551092,2.125707,0,0,OIF:SA:8754550,Europe/Paris,,OIF, +OIF:SP:8754551:800:C,1,"Gare de Sermaise",48.535807,2.069382,0,0,OIF:SA:8754551,Europe/Paris,,OIF, +OIF:SP:8754552:800:C,1,"Gare de Dourdan",48.533733,2.008772,0,0,OIF:SA:8754552,Europe/Paris,,OIF, +OIF:SP:8754552:800:TER,1,"Gare de Dourdan",48.533733,2.008772,0,0,OIF:SA:8754552,Europe/Paris,,OIF, +OIF:SP:8754565:800:TER,1,"Gare d'Auneau",48.445254,1.779584,0,0,OIF:SA:8754565,Europe/Paris,,OIF, +OIF:SP:8754570:800:TER,1,"Gare de Voves",48.274632,1.621499,0,0,OIF:SA:8754570,Europe/Paris,,OIF, +OIF:SP:8754573:800:TER,1,"Gare de Bonneval",48.186437,1.386245,0,0,OIF:SA:8754573,Europe/Paris,,OIF, +OIF:SP:8754575:800:TER,1,"Gare de Châteaudun",48.073407,1.338435,0,0,OIF:SA:8754575,Europe/Paris,,OIF, +OIF:SP:8754619:800:C,1,"Gare de Pont de Rungis",48.74835,2.373112,0,0,OIF:SA:8754619,Europe/Paris,,OIF, +OIF:SP:8754620:800:C,1,"Gare d'Orly Ville",48.741879,2.402909,0,0,OIF:SA:8754620,Europe/Paris,,OIF, +OIF:SP:8754622:800:C,1,"Gare des Saules",48.745072,2.417521,0,0,OIF:SA:8754622,Europe/Paris,,OIF, +OIF:SP:8754629:800:C,1,"Gare de Rungis la Fraternelle",48.740195,2.351633,0,0,OIF:SA:8754629,Europe/Paris,,OIF, +OIF:SP:8754631:800:C,1,"Gare de Chemin d'Antony",48.747942,2.312711,0,0,OIF:SA:8754631,Europe/Paris,,OIF, +OIF:SP:8754700:800:C,1,"Gare d'Austerlitz",48.842528,2.365433,0,0,OIF:SA:8754700,Europe/Paris,,OIF, +OIF:SP:8754700:800:TER,1,"Gare d'Austerlitz",48.842528,2.365433,0,0,OIF:SA:8754700,Europe/Paris,,OIF, +OIF:SP:8754702:800:C,1,"Gare d'Austerlitz RER C",48.842528,2.365433,0,0,OIF:SA:8754700,Europe/Paris,,OIF, +OIF:SP:8754730:800:C,1,"Musée d'Orsay",48.860708,2.32562,0,0,OIF:SA:8754730,Europe/Paris,,OIF, +OIF:SP:8754731:800:C,1,"Saint-Michel Notre-Dame RER C",48.853336,2.346035,0,0,OIF:SA:8754731,Europe/Paris,,OIF, +OIF:SP:8756194:800:N151,1,"Triel",48.981011,2.005643,0,0,OIF:SA:8756194,Europe/Paris,,OIF, +OIF:SP:8756195:800:N151,1,"Carrières sous Poissy RD 190",48.941647,2.031884,0,0,OIF:SA:8756195,Europe/Paris,,OIF, +OIF:SP:8757490:800:N132,1,"Villeneuve Saint-Georges Noctilien",48.729977,2.44658,0,0,OIF:SA:8768182,Europe/Paris,,OIF, +OIF:SP:8757490:800:N134,1,"Villeneuve Saint-Georges Noctilien",48.729977,2.44658,0,0,OIF:SA:8768182,Europe/Paris,,OIF, +OIF:SP:8757490:800:N135,1,"Villeneuve Saint-Georges Noctilien",48.729977,2.44658,0,0,OIF:SA:8768182,Europe/Paris,,OIF, +OIF:SP:8757491:800:N135,1,"Vigneux sur Seine Noctilien",48.708439,2.415284,0,0,OIF:SA:8768130,Europe/Paris,,OIF, +OIF:SP:8757492:800:N131,1,"Juvisy Noctilien",48.690443,2.381681,0,0,OIF:SA:8754524,Europe/Paris,,OIF, +OIF:SP:8757492:800:N133,1,"Juvisy Noctilien",48.690443,2.381681,0,0,OIF:SA:8754524,Europe/Paris,,OIF, +OIF:SP:8757492:800:N135,1,"Juvisy Noctilien",48.690443,2.381681,0,0,OIF:SA:8754524,Europe/Paris,,OIF, +OIF:SP:8757492:800:N144,1,"Juvisy Noctilien",48.690443,2.381681,0,0,OIF:SA:8754524,Europe/Paris,,OIF, +OIF:SP:8757493:800:N135,1,"Viry Châtillon Noctilien",48.676689,2.385701,0,0,OIF:SA:8768131,Europe/Paris,,OIF, +OIF:SP:8757493:800:N144,1,"Viry Châtillon Noctilien",48.676689,2.385701,0,0,OIF:SA:8768131,Europe/Paris,,OIF, +OIF:SP:8757494:800:N135,1,"Grigny Centre Noctilien",48.653556,2.396085,0,0,OIF:SA:8768137,Europe/Paris,,OIF, +OIF:SP:8757494:800:N144,1,"Grigny Centre Noctilien",48.653556,2.396085,0,0,OIF:SA:8768137,Europe/Paris,,OIF, +OIF:SP:8757495:800:N135,1,"Évry Courcouronnes Noctilien",48.625714,2.428746,0,0,OIF:SA:8768138,Europe/Paris,,OIF, +OIF:SP:8757495:800:N144,1,"Évry Courcouronnes Noctilien",48.625714,2.428746,0,0,OIF:SA:8768138,Europe/Paris,,OIF, +OIF:SP:8757496:800:N135,1,"Bras de Fer Noctilien",48.62343,2.450029,0,0,OIF:SA:8768139,Europe/Paris,,OIF, +OIF:SP:8757496:800:N144,1,"Bras de Fer Noctilien",48.62343,2.450029,0,0,OIF:SA:8768139,Europe/Paris,,OIF, +OIF:SP:8757497:800:N135,1,"Corbeil Essonnes Noctilien",48.614119,2.47391,0,0,OIF:SA:8768100,Europe/Paris,,OIF, +OIF:SP:8757497:800:N144,1,"Corbeil Essonnes Noctilien",48.614119,2.47391,0,0,OIF:SA:8768100,Europe/Paris,,OIF, +OIF:SP:8758820:800:N130,1,"Gare de Lyon Noctilien",48.845401,2.371929,0,0,OIF:SA:8768600,Europe/Paris,,OIF, +OIF:SP:8758820:800:N131,1,"Gare de Lyon Noctilien",48.845401,2.371929,0,0,OIF:SA:8768600,Europe/Paris,,OIF, +OIF:SP:8758820:800:N132,1,"Gare de Lyon Noctilien",48.845401,2.371929,0,0,OIF:SA:8768600,Europe/Paris,,OIF, +OIF:SP:8758820:800:N133,1,"Gare de Lyon Noctilien",48.845401,2.371929,0,0,OIF:SA:8768600,Europe/Paris,,OIF, +OIF:SP:8758820:800:N134,1,"Gare de Lyon Noctilien",48.845401,2.371929,0,0,OIF:SA:8768600,Europe/Paris,,OIF, +OIF:SP:8758820:800:N144,1,"Gare de Lyon Noctilien",48.845401,2.371929,0,0,OIF:SA:8768600,Europe/Paris,,OIF, +OIF:SP:8758821:800:N130,1,"Villiers sur Marne Noctilien",48.823182,2.542343,0,0,OIF:SA:8711379,Europe/Paris,,OIF, +OIF:SP:8758822:800:N130,1,"Marne la Vallée Chessy Noctilien",48.870599,2.782899,0,0,OIF:SA:8775499,Europe/Paris,,OIF, +OIF:SP:8758822:800:N141,1,"Marne la Vallée Chessy Noctilien",48.870599,2.782899,0,0,OIF:SA:8775499,Europe/Paris,,OIF, +OIF:SP:8758823:800:N131,1,"Brétigny Noctilien",48.606688,2.302327,0,0,OIF:SA:8754519,Europe/Paris,,OIF, +OIF:SP:8758824:800:N131,1,"Saint-Michel sur Orge Noctilien",48.635328,2.306621,0,0,OIF:SA:8754520,Europe/Paris,,OIF, +OIF:SP:8758825:800:N131,1,"Sainte-Geneviève des Bois Noctilien",48.653092,2.31277,0,0,OIF:SA:8754521,Europe/Paris,,OIF, +OIF:SP:8758826:800:N131,1,"Épinay sur Orge Noctilien",48.669409,2.331938,0,0,OIF:SA:8754522,Europe/Paris,,OIF, +OIF:SP:8758827:800:N131,1,"Savigny sur Orge Noctilien",48.676006,2.351835,0,0,OIF:SA:8754523,Europe/Paris,,OIF, +OIF:SP:8758828:800:N131,1,"Bibliothèque F. Mitterand Noctilien",48.829833,2.375322,0,0,OIF:SA:8732832,Europe/Paris,,OIF, +OIF:SP:8758828:800:N133,1,"Bibliothèque F. Mitterand Noctilien",48.829833,2.375322,0,0,OIF:SA:8732832,Europe/Paris,,OIF, +OIF:SP:8758830:800:N131,1,"Gare d'Austerlitz Noctilien",48.844127,2.364779,0,0,OIF:SA:8754700,Europe/Paris,,OIF, +OIF:SP:8758830:800:N133,1,"Gare d'Austerlitz Noctilien",48.841529,2.367964,0,0,OIF:SA:8754700,Europe/Paris,,OIF, +OIF:SP:8759046:800:N132,1,"Maisons Alfort Alfortville Noctilien",48.802007,2.42665,0,0,OIF:SA:8768115,Europe/Paris,,OIF, +OIF:SP:8759046:800:N134,1,"Maisons Alfort Alfortville Noctilien",48.802007,2.42665,0,0,OIF:SA:8768115,Europe/Paris,,OIF, +OIF:SP:8759047:800:N132,1,"Vert de Maison Noctilien",48.788943,2.432177,0,0,OIF:SA:8768124,Europe/Paris,,OIF, +OIF:SP:8759047:800:N134,1,"Vert de Maison Noctilien",48.788943,2.432177,0,0,OIF:SA:8768124,Europe/Paris,,OIF, +OIF:SP:8759049:800:N132,1,"Villeneuve Triage Noctilien",48.745669,2.438377,0,0,OIF:SA:8768180,Europe/Paris,,OIF, +OIF:SP:8759049:800:N134,1,"Villeneuve Triage Noctilien",48.745669,2.438377,0,0,OIF:SA:8768180,Europe/Paris,,OIF, +OIF:SP:8759050:800:N132,1,"Combs la Ville Quincy Noctilien",48.667198,2.547711,0,0,OIF:SA:8768214,Europe/Paris,,OIF, +OIF:SP:8759050:800:N134,1,"Combs la Ville Quincy Noctilien",48.667198,2.547711,0,0,OIF:SA:8768214,Europe/Paris,,OIF, +OIF:SP:8759051:800:N132,1,"Lieusaint Moissy Noctilien",48.628742,2.567977,0,0,OIF:SA:8768215,Europe/Paris,,OIF, +OIF:SP:8759052:800:N132,1,"Savigny le Temple Nandy Noctilien",48.595469,2.583157,0,0,OIF:SA:8768218,Europe/Paris,,OIF, +OIF:SP:8759054:800:N132,1,"Cesson Noctilien",48.565233,2.593659,0,0,OIF:SA:8768216,Europe/Paris,,OIF, +OIF:SP:8759055:800:N132,1,"Le Mée Noctilien",48.539938,2.624062,0,0,OIF:SA:8768217,Europe/Paris,,OIF, +OIF:SP:8759056:800:N132,1,"Melun Noctilien",48.527596,2.655407,0,0,OIF:SA:8768200,Europe/Paris,,OIF, +OIF:SP:8759057:800:N133,1,"Athis Mons Noctilien",48.712796,2.403161,0,0,OIF:SA:8754525,Europe/Paris,,OIF, +OIF:SP:8759058:800:N133,1,"Ablon Noctilien",48.725379,2.419263,0,0,OIF:SA:8754526,Europe/Paris,,OIF, +OIF:SP:8759059:800:N133,1,"Villeneuve le Roi Noctilien",48.739827,2.426203,0,0,OIF:SA:8754527,Europe/Paris,,OIF, +OIF:SP:8759060:800:N133,1,"Orly Ville Noctilien",48.741793,2.40279,0,0,OIF:SA:8754620,Europe/Paris,,OIF, +OIF:SP:8759061:800:N133,1,"Choisy le Roi Noctilien",48.764681,2.410991,0,0,OIF:SA:8754528,Europe/Paris,,OIF, +OIF:SP:8759062:800:N133,1,"Les Ardoines Noctilien",48.782838,2.409167,0,0,OIF:SA:8749210,Europe/Paris,,OIF, +OIF:SP:8759064:800:N133,1,"Vitry sur Seine Noctilien",48.80053,2.40243,0,0,OIF:SA:8754529,Europe/Paris,,OIF, +OIF:SP:8759065:800:N133,1,"Ivry sur Seine Noctilien",48.812681,2.385842,0,0,OIF:SA:8754530,Europe/Paris,,OIF, +OIF:SP:8759114:800:N145,1,"Saint-Michel Notre-Dame Noctilien",48.85345,2.343838,0,0,OIF:SA:8754731,Europe/Paris,,OIF, +OIF:SP:8759115:800:N145,1,"Gare Montparnasse Noctilien",48.840507,2.319491,0,0,OIF:SA:8739100,Europe/Paris,,OIF, +OIF:SP:8759116:800:N145,1,"Sevres Rive Gauche Noctilien",48.821311,2.214597,0,0,OIF:SA:8739312,Europe/Paris,,OIF, +OIF:SP:8759117:800:N134,1,"Montgeron Crosnes Noctilien",48.708038,2.462301,0,0,OIF:SA:8768210,Europe/Paris,,OIF, +OIF:SP:8759118:800:N140,1,"Gare de l'Est Noctilien",48.875692,2.357602,0,0,OIF:SA:8711300,Europe/Paris,,OIF, +OIF:SP:8759118:800:N141,1,"Gare de l'Est Noctilien",48.875692,2.357602,0,0,OIF:SA:8711300,Europe/Paris,,OIF, +OIF:SP:8759118:800:N142,1,"Gare de l'Est Noctilien",48.875692,2.357602,0,0,OIF:SA:8711300,Europe/Paris,,OIF, +OIF:SP:8759118:800:N143,1,"Gare de l'Est Noctilien",48.875692,2.357602,0,0,OIF:SA:8711300,Europe/Paris,,OIF, +OIF:SP:8759118:800:N144,1,"Gare de l'Est Noctilien",48.875692,2.357602,0,0,OIF:SA:8711300,Europe/Paris,,OIF, +OIF:SP:8759118:800:N145,1,"Gare de l'Est Noctilien",48.875692,2.357602,0,0,OIF:SA:8711300,Europe/Paris,,OIF, +OIF:SP:8759175:800:N134,1,"Boussy Saint-Antoine Noctilien",48.680977,2.532985,0,0,OIF:SA:8768213,Europe/Paris,,OIF, +OIF:SP:8759176:800:N134,1,"Brunoy Noctilien",48.699049,2.506588,0,0,OIF:SA:8768212,Europe/Paris,,OIF, +OIF:SP:8759177:800:N134,1,"Yerres Noctilien",48.706765,2.483389,0,0,OIF:SA:8768211,Europe/Paris,,OIF, +OIF:SP:8759178:800:N145,1,"Chaville Rive Gauche Noctilien",48.804788,2.188484,0,0,OIF:SA:8739320,Europe/Paris,,OIF, +OIF:SP:8759179:800:N145,1,"Viroflay Rive Gauche Noctilien",48.80091,2.171271,0,0,OIF:SA:8739321,Europe/Paris,,OIF, +OIF:SP:8759180:800:N145,1,"Porchefontaine Noctilien",48.796876,2.15372,0,0,OIF:SA:8739316,Europe/Paris,,OIF, +OIF:SP:8759181:800:N145,1,"Versailles Chantiers Noctilien",48.79557,2.135482,0,0,OIF:SA:8739300,Europe/Paris,,OIF, +OIF:SP:8759182:800:N145,1,"Versailles Rive Gauche Noctilien",48.800078,2.128104,0,0,OIF:SA:8739315,Europe/Paris,,OIF, +OIF:SP:8759183:800:N145,1,"Saint-Cyr Noctilien",48.798627,2.067934,0,0,OIF:SA:8739322,Europe/Paris,,OIF, +OIF:SP:8759185:800:N145,1,"Saint-Quentin en Yvelines Noctilien",48.787966,2.044703,0,0,OIF:SA:8739384,Europe/Paris,,OIF, +OIF:SP:8759186:800:N145,1,"Trappes Noctilien",48.77505,2.006726,0,0,OIF:SA:8739383,Europe/Paris,,OIF, +OIF:SP:8759187:800:N145,1,"La Verrière Noctilien",48.755597,1.943856,0,0,OIF:SA:8739325,Europe/Paris,,OIF, +OIF:SP:8759492:800:N140,1,"Gare du Nord Noctilien",48.879458,2.357358,0,0,OIF:SA:8727100,Europe/Paris,,OIF, +OIF:SP:8759492:800:N143,1,"Gare du Nord Noctilien",48.879458,2.357358,0,0,OIF:SA:8727100,Europe/Paris,,OIF, +OIF:SP:8759493:800:N140,1,"Pantin Noctilien",48.897776,2.400426,0,0,OIF:SA:8711320,Europe/Paris,,OIF, +OIF:SP:8759494:800:N140,1,"Aulnay sous Bois Noctilien",48.931885,2.494434,0,0,OIF:SA:8727141,Europe/Paris,,OIF, +OIF:SP:8759495:800:N140,1,"Sevran Livry Noctilien",48.936067,2.53492,0,0,OIF:SA:8727142,Europe/Paris,,OIF, +OIF:SP:8759496:800:N141,1,"Chelles Gournay Noctilien",48.874344,2.582521,0,0,OIF:SA:8711611,Europe/Paris,,OIF, +OIF:SP:8759497:800:N141,1,"Vaires Torcy Noctilien",48.875237,2.639711,0,0,OIF:SA:8711629,Europe/Paris,,OIF, +OIF:SP:8759498:800:N142,1,"Nogent le Perreux Noctilien",48.838723,2.494096,0,0,OIF:SA:8711374,Europe/Paris,,OIF, +OIF:SP:8759499:800:N141,1,"Esbly Noctilien",48.903088,2.810853,0,0,OIF:SA:8711632,Europe/Paris,,OIF, +OIF:SP:8759501:800:N141,1,"Meaux Noctilien",48.957489,2.874004,0,0,OIF:SA:8711610,Europe/Paris,,OIF, +OIF:SP:8759502:800:N142,1,"Roissy en Brie Noctilien",48.795409,2.64987,0,0,OIF:SA:8711603,Europe/Paris,,OIF, +OIF:SP:8759503:800:N142,1,"Ozoir la Ferrière Noctilien",48.770714,2.689957,0,0,OIF:SA:8711602,Europe/Paris,,OIF, +OIF:SP:8759504:800:N142,1,"Gretz Armainvilliers Noctilien",48.745425,2.728765,0,0,OIF:SA:8711601,Europe/Paris,,OIF, +OIF:SP:8759505:800:N142,1,"Tournan Noctilien",48.739199,2.759416,0,0,OIF:SA:8711621,Europe/Paris,,OIF, +OIF:SP:8760011:800:N150,1,"Paris Saint-Lazare Noctilien",48.875361,2.324752,0,0,OIF:SA:8738400,Europe/Paris,,OIF, +OIF:SP:8760011:800:N151,1,"Paris Saint-Lazare Noctilien",48.875361,2.324752,0,0,OIF:SA:8738400,Europe/Paris,,OIF, +OIF:SP:8760011:800:N152,1,"Paris Saint-Lazare Noctilien",48.875361,2.324752,0,0,OIF:SA:8738400,Europe/Paris,,OIF, +OIF:SP:8760011:800:N154,1,"Paris Saint-Lazare Noctilien",48.875361,2.324752,0,0,OIF:SA:8738400,Europe/Paris,,OIF, +OIF:SP:8760012:800:N150,1,"Montigny Beauchamp Noctilien",49.007549,2.197751,0,0,OIF:SA:8727608,Europe/Paris,,OIF, +OIF:SP:8760012:800:N154,1,"Montigny Beauchamp Noctilien",49.007549,2.197751,0,0,OIF:SA:8727608,Europe/Paris,,OIF, +OIF:SP:8760013:800:N150,1,"Pierrelaye Noctilien",49.019504,2.153614,0,0,OIF:SA:8727609,Europe/Paris,,OIF, +OIF:SP:8760015:800:N150,1,"Saint-Ouen l'Aumône Liesse Noct",49.034289,2.127909,0,0,OIF:SA:8733798,Europe/Paris,,OIF, +OIF:SP:8760016:800:N150,1,"Saint-Ouen l'Aumône Noctilien",49.045482,2.106552,0,0,OIF:SA:8727610,Europe/Paris,,OIF, +OIF:SP:8760017:800:N150,1,"Pontoise Noctilien",49.047024,2.095349,0,0,OIF:SA:8727613,Europe/Paris,,OIF, +OIF:SP:8760018:800:N150,1,"Cergy Préfecture Noctilien",49.036523,2.079735,0,0,OIF:SA:8738190,Europe/Paris,,OIF, +OIF:SP:8760018:800:N152,1,"Cergy Préfecture Noctilien",49.036523,2.079735,0,0,OIF:SA:8738190,Europe/Paris,,OIF, +OIF:SP:8760019:800:N150,1,"Cergy Saint-Christophe Noctilien",49.049707,2.034473,0,0,OIF:SA:8738249,Europe/Paris,,OIF, +OIF:SP:8760019:800:N152,1,"Cergy Saint-Christophe Noctilien",49.049707,2.034473,0,0,OIF:SA:8738249,Europe/Paris,,OIF, +OIF:SP:8760020:800:N150,1,"Cergy le Haut Noctilien",49.048544,2.012292,0,0,OIF:SA:8738265,Europe/Paris,,OIF, +OIF:SP:8760020:800:N152,1,"Cergy le Haut Noctilien",49.048544,2.012292,0,0,OIF:SA:8738265,Europe/Paris,,OIF, +OIF:SP:8760483:800:N151,1,"Villennes sur Seine Noctilien",48.939511,1.999497,0,0,OIF:SA:8738664,Europe/Paris,,OIF, +OIF:SP:8760484:800:N151,1,"Poissy Noctilien",48.93316,2.041155,0,0,OIF:SA:8738657,Europe/Paris,,OIF, +OIF:SP:8760485:800:N151,1,"Vernouillet Verneuil Noctilien",48.981404,1.982867,0,0,OIF:SA:8738665,Europe/Paris,,OIF, +OIF:SP:8760486:800:N151,1,"Les Clairières de Verneuil Noctilien",48.992363,1.955193,0,0,OIF:SA:8738666,Europe/Paris,,OIF, +OIF:SP:8760487:800:N151,1,"Les Mureaux Noctilien",48.99267,1.913061,0,0,OIF:SA:8738668,Europe/Paris,,OIF, +OIF:SP:8760488:800:N151,1,"Mantes Station Noctilien",48.983619,1.715645,0,0,OIF:SA:8738159,Europe/Paris,,OIF, +OIF:SP:8760489:800:N151,1,"Mantes la Jolie Noctilien",48.989692,1.703309,0,0,OIF:SA:8738150,Europe/Paris,,OIF, +OIF:SP:8760542:800:N152,1,"Pereire Levallois Noctilien",48.885466,2.29823,0,0,OIF:SA:8738101,Europe/Paris,,OIF, +OIF:SP:8760543:800:N152,1,"Maisons Laffitte Noctilien",48.945917,2.144665,0,0,OIF:SA:8738642,Europe/Paris,,OIF, +OIF:SP:8760544:800:N152,1,"Achères Ville Noctilien",48.970099,2.077417,0,0,OIF:SA:8738165,Europe/Paris,,OIF, +OIF:SP:8760651:800:N154,1,"Pont Cardinet Noctilien",48.887573,2.314037,0,0,OIF:SA:8738111,Europe/Paris,,OIF, +OIF:SP:8760652:800:N154,1,"Clichy Levallois Noctilien",48.895244,2.297377,0,0,OIF:SA:8738112,Europe/Paris,,OIF, +OIF:SP:8760653:800:N154,1,"Asnières Noctilien",48.906716,2.285644,0,0,OIF:SA:8738113,Europe/Paris,,OIF, +OIF:SP:8760654:800:N154,1,"Les Grésillons Noctilien",48.920151,2.314732,0,0,OIF:SA:8727214,Europe/Paris,,OIF, +OIF:SP:8760655:800:N154,1,"Saint-Gratien Noctilien",48.963818,2.28485,0,0,OIF:SA:8727617,Europe/Paris,,OIF, +OIF:SP:8760656:800:N154,1,"Ermont Eaubonne Noctilien",48.980661,2.271058,0,0,OIF:SA:8727605,Europe/Paris,,OIF, +OIF:SP:8760657:800:N154,1,"Sannois Noctilien",48.970017,2.263741,0,0,OIF:SA:8727618,Europe/Paris,,OIF, +OIF:SP:8760658:800:N154,1,"Franconville le Plessis Bouchard Noct",48.993281,2.235863,0,0,OIF:SA:8727607,Europe/Paris,,OIF, +OIF:SP:8760880:800:D,1,"Gare de Créteil Pompadour",48.773318,2.436146,0,0,OIF:SA:8760880,Europe/Paris,,OIF, +OIF:SP:8761297:800:N152,1,"Achères Grand Cormier Noctilien",48.955185,2.092039,0,0,OIF:SA:8738605,Europe/Paris,,OIF, +OIF:SP:8765479:800:E,1,"Gare de Rosa Parks",48.896539,2.373449,0,0,OIF:SA:8765479,Europe/Paris,,OIF, +OIF:SP:8765479:800:P,1,"Gare de Rosa Parks",48.896539,2.373449,0,0,OIF:SA:8765479,Europe/Paris,,OIF, +OIF:SP:8768100:800:D,1,"Gare de Corbeil Essonnes",48.613428,2.472934,0,0,OIF:SA:8768100,Europe/Paris,,OIF, +OIF:SP:8768115:800:D,1,"Gare de Maisons Alfort Alfortville",48.802049,2.426482,0,0,OIF:SA:8768115,Europe/Paris,,OIF, +OIF:SP:8768124:800:D,1,"Gare du Vert de Maisons",48.788915,2.43207,0,0,OIF:SA:8768124,Europe/Paris,,OIF, +OIF:SP:8768130:800:D,1,"Gare de Vigneux sur Seine",48.708366,2.414359,0,0,OIF:SA:8768130,Europe/Paris,,OIF, +OIF:SP:8768131:800:D,1,"Gare de Viry Châtillon",48.676092,2.386784,0,0,OIF:SA:8768131,Europe/Paris,,OIF, +OIF:SP:8768133:800:D,1,"Gare de Ris Orangis",48.658975,2.415207,0,0,OIF:SA:8768133,Europe/Paris,,OIF, +OIF:SP:8768134:800:D,1,"Gare d'Orangis Bois de l'Epine",48.636351,2.407796,0,0,OIF:SA:8768134,Europe/Paris,,OIF, +OIF:SP:8768135:800:D,1,"Gare de Grand Bourg",48.648489,2.435331,0,0,OIF:SA:8768135,Europe/Paris,,OIF, +OIF:SP:8768136:800:D,1,"Gare d'Evry",48.634479,2.45229,0,0,OIF:SA:8768136,Europe/Paris,,OIF, +OIF:SP:8768137:800:D,1,"Gare de Grigny Centre",48.65397,2.396177,0,0,OIF:SA:8768137,Europe/Paris,,OIF, +OIF:SP:8768138:800:D,1,"Gare d'Evry Courcouronnes",48.626022,2.428739,0,0,OIF:SA:8768138,Europe/Paris,,OIF, +OIF:SP:8768139:800:D,1,"Gare du Bras de Fer",48.623332,2.451409,0,0,OIF:SA:8768139,Europe/Paris,,OIF, +OIF:SP:8768140:800:D,1,"Gare de Moulin Galant",48.587154,2.47349,0,0,OIF:SA:8768140,Europe/Paris,,OIF, +OIF:SP:8768141:800:D,1,"Gare de Mennecy",48.570597,2.432099,0,0,OIF:SA:8768141,Europe/Paris,,OIF, +OIF:SP:8768143:800:D,1,"Gare de Ballancourt",48.531502,2.370518,0,0,OIF:SA:8768143,Europe/Paris,,OIF, +OIF:SP:8768145:800:D,1,"Gare de la Ferté Alais",48.484957,2.351858,0,0,OIF:SA:8768145,Europe/Paris,,OIF, +OIF:SP:8768147:800:D,1,"Gare de Boutigny",48.434491,2.376673,0,0,OIF:SA:8768147,Europe/Paris,,OIF, +OIF:SP:8768148:800:D,1,"Gare de Maisse",48.393642,2.393411,0,0,OIF:SA:8768148,Europe/Paris,,OIF, +OIF:SP:8768151:800:D,1,"Gare de Buno Gironville",48.371383,2.38721,0,0,OIF:SA:8768151,Europe/Paris,,OIF, +OIF:SP:8768160:800:D,1,"Gare d'Essonnes Robinson",48.605556,2.462456,0,0,OIF:SA:8768160,Europe/Paris,,OIF, +OIF:SP:8768161:800:D,1,"Gare de Villabé",48.592628,2.461806,0,0,OIF:SA:8768161,Europe/Paris,,OIF, +OIF:SP:8768162:800:D,1,"Gare du Plessis Chenet",48.573808,2.479469,0,0,OIF:SA:8768162,Europe/Paris,,OIF, +OIF:SP:8768163:800:D,1,"Gare de Coudray Montceaux",48.566118,2.492713,0,0,OIF:SA:8768163,Europe/Paris,,OIF, +OIF:SP:8768180:800:D,1,"Gare de Villeneuve Triage",48.745231,2.438344,0,0,OIF:SA:8768180,Europe/Paris,,OIF, +OIF:SP:8768182:800:D,1,"Gare de Villeneuve Saint-Georges",48.730117,2.446136,0,0,OIF:SA:8768182,Europe/Paris,,OIF, +OIF:SP:8768182:800:R,1,"Gare de Villeneuve Saint-Georges",48.730117,2.446136,0,0,OIF:SA:8768182,Europe/Paris,,OIF, +OIF:SP:8768200:800:D,1,"Gare de Melun",48.527243,2.65499,0,0,OIF:SA:8768200,Europe/Paris,,OIF, +OIF:SP:8768200:800:R,1,"Gare de Melun",48.527243,2.65499,0,0,OIF:SA:8768200,Europe/Paris,,OIF, +OIF:SP:8768200:800:TER,1,"Gare de Melun",48.527243,2.65499,0,0,OIF:SA:8768200,Europe/Paris,,OIF, +OIF:SP:8768210:800:D,1,"Gare de Montgeron Crosne",48.708238,2.462282,0,0,OIF:SA:8768210,Europe/Paris,,OIF, +OIF:SP:8768211:800:D,1,"Gare d'Yerres",48.706611,2.484245,0,0,OIF:SA:8768211,Europe/Paris,,OIF, +OIF:SP:8768212:800:D,1,"Gare de Brunoy",48.699732,2.506078,0,0,OIF:SA:8768212,Europe/Paris,,OIF, +OIF:SP:8768213:800:D,1,"Gare de Boussy Saint-Antoine",48.681017,2.533131,0,0,OIF:SA:8768213,Europe/Paris,,OIF, +OIF:SP:8768214:800:D,1,"Gare de Combs la Ville Quincy",48.667902,2.547548,0,0,OIF:SA:8768214,Europe/Paris,,OIF, +OIF:SP:8768215:800:D,1,"Gare de Lieusaint Moissy",48.628376,2.569584,0,0,OIF:SA:8768215,Europe/Paris,,OIF, +OIF:SP:8768216:800:D,1,"Gare de Cesson",48.564949,2.594552,0,0,OIF:SA:8768216,Europe/Paris,,OIF, +OIF:SP:8768217:800:D,1,"Gare du Mée",48.538775,2.625522,0,0,OIF:SA:8768217,Europe/Paris,,OIF, +OIF:SP:8768218:800:D,1,"Gare de Savigny le Temple Nandy",48.595564,2.583948,0,0,OIF:SA:8768218,Europe/Paris,,OIF, +OIF:SP:8768220:800:R,1,"Gare de Bois le Roi",48.475523,2.692033,0,0,OIF:SA:8768220,Europe/Paris,,OIF, +OIF:SP:8768220:800:TER,1,"Gare de Bois le Roi",48.475523,2.692033,0,0,OIF:SA:8768220,Europe/Paris,,OIF, +OIF:SP:8768221:800:R,1,"Gare de Fontainebleau Avon",48.416377,2.726662,0,0,OIF:SA:8768221,Europe/Paris,,OIF, +OIF:SP:8768221:800:TER,1,"Gare de Fontainebleau Avon",48.416377,2.726662,0,0,OIF:SA:8768221,Europe/Paris,,OIF, +OIF:SP:8768225:800:R,1,"Gare de Thomery",48.394308,2.764028,0,0,OIF:SA:8768225,Europe/Paris,,OIF, +OIF:SP:8768227:800:R,1,"Gare de Moret Veneux les Sablons",48.378598,2.799307,0,0,OIF:SA:8768227,Europe/Paris,,OIF, +OIF:SP:8768227:800:TER,1,"Gare de Moret Veneux les Sablons",48.378598,2.799307,0,0,OIF:SA:8768227,Europe/Paris,,OIF, +OIF:SP:8768229:800:R,1,"Gare de Saint-Mammès",48.382358,2.815957,0,0,OIF:SA:8768229,Europe/Paris,,OIF, +OIF:SP:8768229:800:TER,1,"Gare de Saint-Mammès",48.382358,2.815957,0,0,OIF:SA:8768229,Europe/Paris,,OIF, +OIF:SP:8768230:800:R,1,"Gare de Montereau",48.379526,2.942523,0,0,OIF:SA:8768230,Europe/Paris,,OIF, +OIF:SP:8768230:800:TER,1,"Gare de Montereau",48.379526,2.942523,0,0,OIF:SA:8768230,Europe/Paris,,OIF, +OIF:SP:8768240:800:R,1,"Gare de Livry sur Seine",48.510265,2.678974,0,0,OIF:SA:8768240,Europe/Paris,,OIF, +OIF:SP:8768241:800:R,1,"Gare de Chartrettes",48.487076,2.695037,0,0,OIF:SA:8768241,Europe/Paris,,OIF, +OIF:SP:8768242:800:R,1,"Gare de Fontaine le Port",48.487223,2.751154,0,0,OIF:SA:8768242,Europe/Paris,,OIF, +OIF:SP:8768243:800:R,1,"Gare de Héricy",48.442882,2.760927,0,0,OIF:SA:8768243,Europe/Paris,,OIF, +OIF:SP:8768244:800:R,1,"Gare de Vulaines sur Seine Samoreau",48.430971,2.753178,0,0,OIF:SA:8768244,Europe/Paris,,OIF, +OIF:SP:8768245:800:R,1,"Gare de Champagne sur Seine",48.406806,2.799234,0,0,OIF:SA:8768245,Europe/Paris,,OIF, +OIF:SP:8768245:800:TER,1,"Gare de Champagne sur Seine",48.406806,2.799234,0,0,OIF:SA:8768245,Europe/Paris,,OIF, +OIF:SP:8768246:800:R,1,"Gare de Vernou sur Seine",48.386771,2.842037,0,0,OIF:SA:8768246,Europe/Paris,,OIF, +OIF:SP:8768247:800:R,1,"Gare de la Grande Paroisse",48.378796,2.897202,0,0,OIF:SA:8768247,Europe/Paris,,OIF, +OIF:SP:8768250:800:D,1,"Gare de Vosves",48.515151,2.599304,0,0,OIF:SA:8768250,Europe/Paris,,OIF, +OIF:SP:8768251:800:D,1,"Gare de Boissise le Roi",48.529747,2.572074,0,0,OIF:SA:8768251,Europe/Paris,,OIF, +OIF:SP:8768252:800:D,1,"Gare de Ponthierry Pringy",48.53514,2.544349,0,0,OIF:SA:8768252,Europe/Paris,,OIF, +OIF:SP:8768254:800:D,1,"Gare de Saint-Fargeau",48.564486,2.542652,0,0,OIF:SA:8768254,Europe/Paris,,OIF, +OIF:SP:8768300:800:R,1,"Gare de Sens",48.198417,3.26732,0,0,OIF:SA:8768300,Europe/Paris,,OIF, +OIF:SP:8768300:800:TER,1,"Gare de Sens",48.198417,3.26732,0,0,OIF:SA:8768300,Europe/Paris,,OIF, +OIF:SP:8768310:800:R,1,"Gare de Villeneuve la Guyard",48.343269,3.069688,0,0,OIF:SA:8768310,Europe/Paris,,OIF, +OIF:SP:8768310:800:TER,1,"Gare de Villeneuve la Guyard",48.343269,3.069688,0,0,OIF:SA:8768310,Europe/Paris,,OIF, +OIF:SP:8768312:800:R,1,"Gare de Champigny sur Yonne",48.324052,3.13114,0,0,OIF:SA:8768312,Europe/Paris,,OIF, +OIF:SP:8768312:800:TER,1,"Gare de Champigny sur Yonne",48.324052,3.13114,0,0,OIF:SA:8768312,Europe/Paris,,OIF, +OIF:SP:8768313:800:R,1,"Gare de Pont sur Yonne",48.286391,3.201894,0,0,OIF:SA:8768313,Europe/Paris,,OIF, +OIF:SP:8768313:800:TER,1,"Gare de Pont sur Yonne",48.286391,3.201894,0,0,OIF:SA:8768313,Europe/Paris,,OIF, +OIF:SP:8768320:800:R,1,"Gare d'Etigny Véron",48.137611,3.289742,0,0,OIF:SA:8768320,Europe/Paris,,OIF, +OIF:SP:8768320:800:TER,1,"Gare d'Etigny Véron",48.137611,3.289742,0,0,OIF:SA:8768320,Europe/Paris,,OIF, +OIF:SP:8768321:800:R,1,"Gare de Villeneuve sur Yonne",48.085184,3.286257,0,0,OIF:SA:8768321,Europe/Paris,,OIF, +OIF:SP:8768321:800:TER,1,"Gare de Villeneuve sur Yonne",48.085184,3.286257,0,0,OIF:SA:8768321,Europe/Paris,,OIF, +OIF:SP:8768322:800:R,1,"Gare de Saint-Julien du Sault",48.026687,3.302565,0,0,OIF:SA:8768322,Europe/Paris,,OIF, +OIF:SP:8768322:800:TER,1,"Gare de Saint-Julien du Sault",48.026687,3.302565,0,0,OIF:SA:8768322,Europe/Paris,,OIF, +OIF:SP:8768324:800:R,1,"Gare de Joigny",47.97343,3.392865,0,0,OIF:SA:8768324,Europe/Paris,,OIF, +OIF:SP:8768324:800:TER,1,"Gare de Joigny",47.97343,3.392865,0,0,OIF:SA:8768324,Europe/Paris,,OIF, +OIF:SP:8768326:800:R,1,"Gare de Laroche Migennes",47.961118,3.514336,0,0,OIF:SA:8768326,Europe/Paris,,OIF, +OIF:SP:8768326:800:TER,1,"Gare de Laroche Migennes",47.961118,3.514336,0,0,OIF:SA:8768326,Europe/Paris,,OIF, +OIF:SP:8768400:800:R,1,"Gare de Montargis",48.007032,2.743038,0,0,OIF:SA:8768400,Europe/Paris,,OIF, +OIF:SP:8768400:800:TER,1,"Gare de Montargis",48.007032,2.743038,0,0,OIF:SA:8768400,Europe/Paris,,OIF, +OIF:SP:8768410:800:R,1,"Gare de Montigny sur Loing",48.336482,2.738002,0,0,OIF:SA:8768410,Europe/Paris,,OIF, +OIF:SP:8768411:800:R,1,"Gare de Bourron Marlotte Grez",48.332684,2.69248,0,0,OIF:SA:8768411,Europe/Paris,,OIF, +OIF:SP:8768412:800:R,1,"Gare de Nemours Saint-Pierre",48.267758,2.685647,0,0,OIF:SA:8768412,Europe/Paris,,OIF, +OIF:SP:8768412:800:TER,1,"Gare de Nemours Saint-Pierre",48.267758,2.685647,0,0,OIF:SA:8768412,Europe/Paris,,OIF, +OIF:SP:8768419:800:R,1,"Gare de Bagneaux sur Loing",48.22955,2.703936,0,0,OIF:SA:8768419,Europe/Paris,,OIF, +OIF:SP:8768421:800:R,1,"Gare de Souppes",48.180937,2.73625,0,0,OIF:SA:8768421,Europe/Paris,,OIF, +OIF:SP:8768423:800:R,1,"Gare de Dordives",48.147218,2.762728,0,0,OIF:SA:8768423,Europe/Paris,,OIF, +OIF:SP:8768424:800:R,1,"Gare de Ferrières Fontenay",48.100858,2.773714,0,0,OIF:SA:8768424,Europe/Paris,,OIF, +OIF:SP:8768440:800:D,1,"Gare de Boigneville",48.341664,2.378815,0,0,OIF:SA:8768440,Europe/Paris,,OIF, +OIF:SP:8768441:800:D,1,"Gare de Malesherbes",48.296734,2.398779,0,0,OIF:SA:8768441,Europe/Paris,,OIF, +OIF:SP:8768600:800:D,1,"Gare de Lyon",48.844266,2.373755,0,0,OIF:SA:8768600,Europe/Paris,,OIF, +OIF:SP:8768600:800:R,1,"Gare de Lyon",48.844266,2.373755,0,0,OIF:SA:8768600,Europe/Paris,,OIF, +OIF:SP:8768600:800:TER,1,"Gare de Lyon",48.844266,2.373755,0,0,OIF:SA:8768600,Europe/Paris,,OIF, +OIF:SP:8768603:800:D,1,"Gare de Lyon RER D",48.843773,2.373916,0,0,OIF:SA:8768600,Europe/Paris,,OIF, +OIF:SP:8768666:800:TER,1,"Gare de Bercy",48.839081,2.383028,0,0,OIF:SA:8768666,Europe/Paris,,OIF, +OIF:SP:8769729:800:T11,1,"Gare d'Epinay sur Seine",48.95455,2.302326,0,0,OIF:SA:8727114,Europe/Paris,,OIF, +OIF:SP:8769730:800:T11,1,"Gare d'Epinay Villetaneuse",48.958994,2.328444,0,0,OIF:SA:8727112,Europe/Paris,,OIF, +OIF:SP:8769731:800:T11,1,"Gare de Villetaneuse - Université",48.959902,2.342255,0,0,OIF:SA:59900,Europe/Paris,,OIF, +OIF:SP:8769732:800:T11,1,"Gare de Pierrefitte Stains",48.960132,2.367257,0,0,OIF:SA:8727116,Europe/Paris,,OIF, +OIF:SP:8769733:800:T11,1,"Gare de Stains la Cerisaie",48.954614,2.392267,0,0,OIF:SA:8769733,Europe/Paris,,OIF, +OIF:SP:8769734:800:T11,1,"Gare de Dugny - la Courneuve",48.943613,2.411465,0,0,OIF:SA:8769734,Europe/Paris,,OIF, +OIF:SP:8769735:800:T11,1,"Gare du Bourget",48.930511,2.423149,0,0,OIF:SA:8727139,Europe/Paris,,OIF, +OIF:SP:8773006:810:A,1,"Gare de Val d'Europe",48.855395,2.773434,0,0,OIF:SA:8773006,Europe/Paris,,OIF, +OIF:SP:8775498:810:A,1,"Gare de Bussy Saint-Georges",48.836536,2.708982,0,0,OIF:SA:8775498,Europe/Paris,,OIF, +OIF:SP:8775499:810:A,1,"Gare de Marne la Vallée Chessy",48.86995,2.782227,0,0,OIF:SA:8775499,Europe/Paris,,OIF, +OIF:SP:8775800:810:A,1,"Charles de Gaulle Etoile",48.874238,2.294491,0,0,OIF:SA:8775800,Europe/Paris,,OIF, +OIF:SP:8775801:810:A,1,"Gare de la Défense RER A",48.892187,2.237018,0,0,OIF:SA:8738221,Europe/Paris,,OIF, +OIF:SP:8775802:810:A,1,"Gare de Nanterre Préfecture",48.895745,2.223213,0,0,OIF:SA:8775802,Europe/Paris,,OIF, +OIF:SP:8775803:810:A,1,"Gare de Nanterre Université RER A",48.90155,2.215232,0,0,OIF:SA:8738631,Europe/Paris,,OIF, +OIF:SP:8775804:810:A,1,"Gare de Nanterre Ville",48.895126,2.195364,0,0,OIF:SA:8775804,Europe/Paris,,OIF, +OIF:SP:8775805:810:A,1,"Gare de Rueil Malmaison",48.887574,2.172579,0,0,OIF:SA:8775805,Europe/Paris,,OIF, +OIF:SP:8775806:810:A,1,"Gare de Chatou Croissy",48.885211,2.155903,0,0,OIF:SA:8775806,Europe/Paris,,OIF, +OIF:SP:8775807:810:A,1,"Gare du Vésinet Centre",48.890086,2.134601,0,0,OIF:SA:8775807,Europe/Paris,,OIF, +OIF:SP:8775808:810:A,1,"Gare du Vésinet le Pecq",48.897973,2.122117,0,0,OIF:SA:8775808,Europe/Paris,,OIF, +OIF:SP:8775809:810:A,1,"Gare de Saint-Germain en Laye",48.898076,2.094837,0,0,OIF:SA:8775809,Europe/Paris,,OIF, +OIF:SP:8775810:810:A,1,"Nation",48.848237,2.395824,0,0,OIF:SA:8775810,Europe/Paris,,OIF, +OIF:SP:8775811:810:A,1,"Gare de Vincennes",48.847308,2.4333,0,0,OIF:SA:8775811,Europe/Paris,,OIF, +OIF:SP:8775812:810:A,1,"Gare de Fontenay sous Bois",48.84372,2.463708,0,0,OIF:SA:8775812,Europe/Paris,,OIF, +OIF:SP:8775813:810:A,1,"Gare de Nogent sur Marne",48.834289,2.471681,0,0,OIF:SA:8775813,Europe/Paris,,OIF, +OIF:SP:8775814:810:A,1,"Gare de Joinville le Pont",48.821039,2.463857,0,0,OIF:SA:8775814,Europe/Paris,,OIF, +OIF:SP:8775815:810:A,1,"Gare de Saint-Maur Créteil",48.8062,2.47272,0,0,OIF:SA:8775815,Europe/Paris,,OIF, +OIF:SP:8775816:810:A,1,"Gare du Parc de Saint-Maur",48.805378,2.48635,0,0,OIF:SA:8775816,Europe/Paris,,OIF, +OIF:SP:8775817:810:A,1,"Gare de Champigny",48.806985,2.510307,0,0,OIF:SA:8775817,Europe/Paris,,OIF, +OIF:SP:8775818:810:A,1,"Gare de la Varenne Chennevières",48.795384,2.513423,0,0,OIF:SA:8775818,Europe/Paris,,OIF, +OIF:SP:8775819:810:A,1,"Gare de Sucy Bonneuil",48.771708,2.507483,0,0,OIF:SA:8775819,Europe/Paris,,OIF, +OIF:SP:8775820:810:A,1,"Gare de Boissy Saint-Léger",48.752186,2.50456,0,0,OIF:SA:8775820,Europe/Paris,,OIF, +OIF:SP:8775830:810:A,1,"Gare de Val de Fontenay RER A",48.853796,2.488188,0,0,OIF:SA:8711371,Europe/Paris,,OIF, +OIF:SP:8775831:810:A,1,"Gare de Neuilly Plaisance",48.853486,2.513825,0,0,OIF:SA:8775831,Europe/Paris,,OIF, +OIF:SP:8775832:810:A,1,"Gare de Bry sur Marne",48.844901,2.525923,0,0,OIF:SA:8775832,Europe/Paris,,OIF, +OIF:SP:8775833:810:A,1,"Gare de Noisy le Grand Mont d'Est",48.840843,2.547775,0,0,OIF:SA:8775833,Europe/Paris,,OIF, +OIF:SP:8775834:810:A,1,"Gare de Noisy Champs",48.842885,2.580086,0,0,OIF:SA:8775834,Europe/Paris,,OIF, +OIF:SP:8775835:810:A,1,"Gare de Noisiel",48.843492,2.615952,0,0,OIF:SA:8775835,Europe/Paris,,OIF, +OIF:SP:8775836:810:A,1,"Gare de Lognes",48.839219,2.633211,0,0,OIF:SA:8775836,Europe/Paris,,OIF, +OIF:SP:8775837:810:A,1,"Gare de Torcy",48.839646,2.65513,0,0,OIF:SA:8775837,Europe/Paris,,OIF, +OIF:SP:8775858:810:A,1,"Gare de Lyon RER A",48.844139,2.37326,0,0,OIF:SA:8768600,Europe/Paris,,OIF, +OIF:SP:8775859:810:A,1,"Auber",48.872157,2.329927,0,0,OIF:SA:8775859,Europe/Paris,,OIF, +OIF:SP:8775860:800:D,1,"Châtelet les Halles",48.861822,2.347013,0,0,OIF:SA:8775860,Europe/Paris,,OIF, +OIF:SP:8775860:810:A,1,"Châtelet les Halles",48.861822,2.347013,0,0,OIF:SA:8775860,Europe/Paris,,OIF, +OIF:SP:8775860:810:B,1,"Châtelet les Halles",48.861822,2.347013,0,0,OIF:SA:8775860,Europe/Paris,,OIF, +OIF:SP:8775861:810:B,1,"Luxembourg",48.845743,2.339928,0,0,OIF:SA:8775861,Europe/Paris,,OIF, +OIF:SP:8775862:810:B,1,"Port Royal",48.840034,2.337096,0,0,OIF:SA:8775862,Europe/Paris,,OIF, +OIF:SP:8775863:810:B,1,"Denfert Rochereau",48.834293,2.332852,0,0,OIF:SA:8775863,Europe/Paris,,OIF, +OIF:SP:8775864:810:B,1,"Cité Universitaire",48.82109,2.338978,0,0,OIF:SA:8775864,Europe/Paris,,OIF, +OIF:SP:8775865:810:B,1,"Gare de Gentilly",48.81523,2.340891,0,0,OIF:SA:8775865,Europe/Paris,,OIF, +OIF:SP:8775866:810:B,1,"Gare de Laplace",48.808297,2.334354,0,0,OIF:SA:8775866,Europe/Paris,,OIF, +OIF:SP:8775867:810:B,1,"Gare d'Arcueil Cachan",48.798892,2.328137,0,0,OIF:SA:8775867,Europe/Paris,,OIF, +OIF:SP:8775868:810:B,1,"Gare de Bagneux",48.793336,2.322202,0,0,OIF:SA:8775868,Europe/Paris,,OIF, +OIF:SP:8775869:810:B,1,"Gare de Bourg la Reine",48.780284,2.312464,0,0,OIF:SA:8775869,Europe/Paris,,OIF, +OIF:SP:8775870:810:B,1,"Gare de Sceaux",48.781357,2.297648,0,0,OIF:SA:8775870,Europe/Paris,,OIF, +OIF:SP:8775871:810:B,1,"Gare de Fontenay aux Roses",48.787615,2.292493,0,0,OIF:SA:8775871,Europe/Paris,,OIF, +OIF:SP:8775872:810:B,1,"Gare de Robinson",48.780237,2.281431,0,0,OIF:SA:8775872,Europe/Paris,,OIF, +OIF:SP:8775873:810:B,1,"Gare de Parc de Sceaux",48.770722,2.310205,0,0,OIF:SA:8775873,Europe/Paris,,OIF, +OIF:SP:8775874:810:B,1,"Gare de la Croix de Berny Fresnes",48.761694,2.304227,0,0,OIF:SA:8775874,Europe/Paris,,OIF, +OIF:SP:8775875:810:B,1,"Gare d'Antony",48.754947,2.300987,0,0,OIF:SA:8775875,Europe/Paris,,OIF, +OIF:SP:8775876:810:B,1,"Gare de Fontaine Michalon",48.743373,2.296393,0,0,OIF:SA:8775876,Europe/Paris,,OIF, +OIF:SP:8775877:810:B,1,"Gare des Baconnets",48.739681,2.287668,0,0,OIF:SA:8775877,Europe/Paris,,OIF, +OIF:SP:8775878:810:B,1,"Gare de Massy Verrières RER B",48.734717,2.273483,0,0,OIF:SA:8738328,Europe/Paris,,OIF, +OIF:SP:8775879:810:B,1,"Gare de Massy Palaiseau RER B",48.724309,2.258966,0,0,OIF:SA:8739357,Europe/Paris,,OIF, +OIF:SP:8775880:810:B,1,"Gare de Palaiseau",48.716946,2.245673,0,0,OIF:SA:8775880,Europe/Paris,,OIF, +OIF:SP:8775881:810:B,1,"Gare de Palaiseau Villebon",48.708141,2.237314,0,0,OIF:SA:8775881,Europe/Paris,,OIF, +OIF:SP:8775882:810:B,1,"Gare de Lozère",48.705969,2.212262,0,0,OIF:SA:8775882,Europe/Paris,,OIF, +OIF:SP:8775883:810:B,1,"Gare du Guichet",48.705404,2.192735,0,0,OIF:SA:8775883,Europe/Paris,,OIF, +OIF:SP:8775884:810:B,1,"Gare d'Orsay Ville",48.697506,2.181054,0,0,OIF:SA:8775884,Europe/Paris,,OIF, +OIF:SP:8775885:810:B,1,"Gare de Bures sur Yvette",48.696253,2.164378,0,0,OIF:SA:8775885,Europe/Paris,,OIF, +OIF:SP:8775886:810:B,1,"Gare de la Hacquinière",48.695264,2.151642,0,0,OIF:SA:8775886,Europe/Paris,,OIF, +OIF:SP:8775887:810:B,1,"Gare de Gif sur Yvette",48.698197,2.136567,0,0,OIF:SA:8775887,Europe/Paris,,OIF, +OIF:SP:8775888:810:B,1,"Gare de Courcelle sur Yvette",48.701218,2.097976,0,0,OIF:SA:8775888,Europe/Paris,,OIF, +OIF:SP:8775889:810:B,1,"Gare de Saint-Rémy les Chevreuse",48.702751,2.071243,0,0,OIF:SA:8775889,Europe/Paris,,OIF, +OIF:SP:8778543:810:B,1,"Saint-Michel Notre-Dame RER B",48.853336,2.346035,0,0,OIF:SA:8754731,Europe/Paris,,OIF, +OIF:SP:8797690:800:N134,1,"Rond-Point Wittlich",48.694866,2.502052,0,0,OIF:SA:8797690,Europe/Paris,,OIF, +OIF:SP:8797735:800:N135,1,"Tarterets",48.615189,2.457644,0,0,OIF:SA:8797735,Europe/Paris,,OIF, +OIF:SP:8797735:800:N144,1,"Tarterets",48.615189,2.457644,0,0,OIF:SA:8797735,Europe/Paris,,OIF, +OIF:SP:8797794:800:N135,1,"Évry Pyramides",48.634364,2.42533,0,0,OIF:SA:8797794,Europe/Paris,,OIF, +OIF:SP:8797794:800:N144,1,"Évry Pyramides",48.634364,2.42533,0,0,OIF:SA:8797794,Europe/Paris,,OIF, +OIF:SP:8797807:800:N144,1,"Châtelet",48.858285,2.348755,0,0,OIF:SA:8775860,Europe/Paris,,OIF, +OIF:SP:8797807:800:N145,1,"Châtelet",48.858285,2.348755,0,0,OIF:SA:8775860,Europe/Paris,,OIF, +OIF:SP:8798173:800:N140,1,"Porte de Pantin",48.889807,2.395333,0,0,OIF:SA:59551,Europe/Paris,,OIF, +OIF:SP:8798180:800:N143,1,"Fret Centre",48.998728,2.525763,0,0,OIF:SA:8798180,Europe/Paris,,OIF, +OIF:SP:8798192:800:N140,1,"Blanc Mesnil Centre",48.929405,2.479873,0,0,OIF:SA:8798192,Europe/Paris,,OIF, +OIF:SP:8798207:800:N140,1,"Espace V",48.960057,2.553313,0,0,OIF:SA:8798207,Europe/Paris,,OIF, +OIF:SP:8798211:800:N140,1,"Foyer des Bruyères",48.982169,2.555603,0,0,OIF:SA:8798211,Europe/Paris,,OIF, +OIF:SP:8798212:800:N140,1,"Marguilliers",48.994633,2.523631,0,0,OIF:SA:8798212,Europe/Paris,,OIF, +OIF:SP:8798223:800:N154,1,"Porte d'Asnières",48.890824,2.302778,0,0,OIF:SA:8798223,Europe/Paris,,OIF, +OIF:SP:8798233:800:N143,1,"Porte de la Chapelle",48.898223,2.359192,0,0,OIF:SA:59513,Europe/Paris,,OIF, +OIF:SP:8798250:800:N154,1,"Les Grésillons Félix Eboue",48.918938,2.311514,0,0,OIF:SA:8798250,Europe/Paris,,OIF, +OIF:SP:8798289:800:N154,1,"Franconville Croix Rouge",48.980151,2.235029,0,0,OIF:SA:8798289,Europe/Paris,,OIF, +OIF:SP:8798315:800:N135,1,"Ris Orangis Daumesnil",48.652098,2.41372,0,0,OIF:SA:8798315,Europe/Paris,,OIF, +OIF:SP:8798315:800:N144,1,"Ris Orangis Daumesnil",48.652098,2.41372,0,0,OIF:SA:8798315,Europe/Paris,,OIF, +OIF:SP:8798316:800:N131,1,"Quai de la Gare",48.837141,2.374075,0,0,OIF:SA:59450,Europe/Paris,,OIF, +OIF:SP:8798316:800:N133,1,"Quai de la Gare",48.837141,2.374075,0,0,OIF:SA:59450,Europe/Paris,,OIF, +OIF:SP:8798326:800:N133,1,"Jean Pierre Timbaud",48.787181,2.406793,0,0,OIF:SA:8798326,Europe/Paris,,OIF, +OIF:SP:8798336:800:N133,1,"Place Gounot",48.73715,2.411291,0,0,OIF:SA:8798336,Europe/Paris,,OIF, +OIF:SP:8798361:800:N143,1,"Porte de Paris",48.929902,2.357678,0,0,OIF:SA:59542,Europe/Paris,,OIF, +OIF:SP:8798394:800:N144,1,"Place de la Bastille",48.852843,2.369592,0,0,OIF:SA:59238,Europe/Paris,,OIF, +OIF:SP:8798410:800:N131,1,"Blazy Général de Gaulle",48.684126,2.375893,0,0,OIF:SA:8798410,Europe/Paris,,OIF, +OIF:SP:8798410:800:N135,1,"Blazy Général de Gaulle",48.684126,2.375893,0,0,OIF:SA:8798410,Europe/Paris,,OIF, +OIF:SP:8798410:800:N144,1,"Blazy Général de Gaulle",48.684126,2.375893,0,0,OIF:SA:8798410,Europe/Paris,,OIF, +OIF:SP:8798416:800:N135,1,"Jean Jaurès",48.652278,2.39839,0,0,OIF:SA:8798416,Europe/Paris,,OIF, +OIF:SP:8798416:800:N144,1,"Jean Jaurès",48.652278,2.39839,0,0,OIF:SA:8798416,Europe/Paris,,OIF, +OIF:SP:8798436:800:N144,1,"Ambroise Croizat",48.606334,2.466353,0,0,OIF:SA:8798436,Europe/Paris,,OIF, +OIF:SP:8798442:800:N134,1,"Boussy Saint-Antoine le Stade",48.690813,2.525527,0,0,OIF:SA:8798442,Europe/Paris,,OIF, +OIF:SP:8798444:800:N151,1,"Porte Maillot",48.877659,2.281694,0,0,OIF:SA:8738102,Europe/Paris,,OIF, +OIF:SP:8798459:800:N151,1,"La Faisanderie",48.982684,1.969546,0,0,OIF:SA:8798459,Europe/Paris,,OIF, +OIF:SP:8798466:800:N130,1,"Parc du Tremblay",48.828127,2.493656,0,0,OIF:SA:8798466,Europe/Paris,,OIF, +OIF:SP:8798490:800:N130,1,"Georges Demesy",48.822854,2.550155,0,0,OIF:SA:8798490,Europe/Paris,,OIF, +OIF:SP:8798496:800:N130,1,"Avenue de Gaumont",48.826836,2.549885,0,0,OIF:SA:8798496,Europe/Paris,,OIF, +OIF:SP:8798508:800:N130,1,"Gare de Noisy Champs",48.843412,2.580877,0,0,OIF:SA:8775834,Europe/Paris,,OIF, +OIF:SP:8798527:800:N130,1,"Gare de Noisiel",48.843765,2.616623,0,0,OIF:SA:8775835,Europe/Paris,,OIF, +OIF:SP:8798553:800:N130,1,"Collège Jean Monnet",48.843253,2.645706,0,0,OIF:SA:8798553,Europe/Paris,,OIF, +OIF:SP:8798561:800:N130,1,"Collège du Segrais",48.83491,2.653362,0,0,OIF:SA:8798561,Europe/Paris,,OIF, +OIF:SP:8798650:800:N130,1,"Ministère des Finances Popb",48.840698,2.378611,0,0,OIF:SA:8798650,Europe/Paris,,OIF, +OIF:SP:8798651:800:N140,1,"Escadrille Normandie-Niemen",48.912554,2.436236,0,0,OIF:SA:59076,Europe/Paris,,OIF, +OIF:SP:8798654:800:N140,1,"Drancy Centre",48.919981,2.451605,0,0,OIF:SA:8798654,Europe/Paris,,OIF, +OIF:SP:8798655:800:N140,1,"Martin Luther King",48.948186,2.532142,0,0,OIF:SA:8798655,Europe/Paris,,OIF, +OIF:SP:8798656:800:N140,1,"Le Clos Montceleux",48.954399,2.535645,0,0,OIF:SA:8798656,Europe/Paris,,OIF, +OIF:SP:8798657:800:N154,1,"Le Cygne d'Enghien",48.961638,2.295047,0,0,OIF:SA:8798657,Europe/Paris,,OIF, +OIF:SP:8798666:800:N133,1,"Porte de Vitry",48.823092,2.377644,0,0,OIF:SA:8798666,Europe/Paris,,OIF, +OIF:SP:8798690:800:N130,1,"Terroirs de France Cinecite",48.832776,2.389973,0,0,OIF:SA:8798690,Europe/Paris,,OIF, +OIF:SP:8798691:800:N130,1,"Fourchette de Bry",48.827146,2.508178,0,0,OIF:SA:8798691,Europe/Paris,,OIF, +OIF:SP:8798692:800:N130,1,"Beauséjour",48.827291,2.530421,0,0,OIF:SA:8798692,Europe/Paris,,OIF, +OIF:SP:8798693:800:N130,1,"Friedberg",48.82947,2.539278,0,0,OIF:SA:8798693,Europe/Paris,,OIF, +OIF:SP:8798694:800:N130,1,"Gare de Noisy le Grand Mont d'Est",48.840842,2.552993,0,0,OIF:SA:8775833,Europe/Paris,,OIF, +OIF:SP:8798700:800:N154,1,"Carrefour du 18 Juin 40",48.954147,2.30769,0,0,OIF:SA:8798700,Europe/Paris,,OIF, +OIF:SP:8798717:800:N130,1,"Cours des Lacs",48.841357,2.631411,0,0,OIF:SA:8798717,Europe/Paris,,OIF, +OIF:SP:8798738:800:N130,1,"Gare de Torcy",48.838987,2.654898,0,0,OIF:SA:8775837,Europe/Paris,,OIF, +OIF:SP:8798745:800:N151,1,"Charles de Gaulle Friedland",48.87389,2.296699,0,0,OIF:SA:8775800,Europe/Paris,,OIF, +OIF:SP:8798751:800:N151,1,"Les Mureaux les Sablons",48.975058,1.916168,0,0,OIF:SA:8798751,Europe/Paris,,OIF, +OIF:SP:8798870:800:T4,1,"Remise à Jorelle",48.893095,2.487911,0,0,OIF:SA:8798870,Europe/Paris,,OIF, +OIF:SP:8798871:800:T4,1,"Lycée Henri Sellier",48.916097,2.515061,0,0,OIF:SA:8798871,Europe/Paris,,OIF, +OIF:SP:8799063:800:D,1,"Le Coudray Monceaux la Justice",48.565271,2.488287,0,0,OIF:SA:8799063,Europe/Paris,,OIF, +OIF:SP:8799147:800:N134,1,"Montgeron Église",48.707147,2.455006,0,0,OIF:SA:8799147,Europe/Paris,,OIF, +OIF:SP:8799149:800:N135,1,"Draveil Église",48.686196,2.408747,0,0,OIF:SA:8799149,Europe/Paris,,OIF, +OIF:SP:8799150:800:N135,1,"Vigneux Patte d'Oie",48.70352,2.430622,0,0,OIF:SA:8799150,Europe/Paris,,OIF, +OIF:SP:8799415:800:N140,1,"Aéroport CDG T3",49.010343,2.559329,0,0,OIF:SA:8727146,Europe/Paris,,OIF, +OIF:SP:8799415:800:N143,1,"Aéroport CDG T3",49.010343,2.559329,0,0,OIF:SA:8727146,Europe/Paris,,OIF, +OIF:SP:8799421:800:N140,1,"Aéroport CDG T1",49.015028,2.542845,0,0,OIF:SA:59685,Europe/Paris,,OIF, +OIF:SP:8799421:800:N143,1,"Aéroport CDG T1",49.015028,2.542845,0,0,OIF:SA:59685,Europe/Paris,,OIF, +OIF:SP:8799422:800:N140,1,"Aéroport CDG T2",49.004742,2.574877,0,0,OIF:SA:8700147,Europe/Paris,,OIF, +OIF:SP:8799422:800:N143,1,"Aéroport CDG T2",49.004742,2.574877,0,0,OIF:SA:8700147,Europe/Paris,,OIF, +OIF:SP:8799456:800:N140,1,"Rue des Vignes",49.004701,2.548637,0,0,OIF:SA:8799456,Europe/Paris,,OIF, +OIF:SP:8799456:800:N143,1,"Rue des Vignes",49.004701,2.548637,0,0,OIF:SA:8799456,Europe/Paris,,OIF, +OIF:SP:8799608:800:N134,1,"Épinay sous Sénart",48.697852,2.519728,0,0,OIF:SA:8799608,Europe/Paris,,OIF, +OIF:SP:8799705:800:N134,1,"Quincy sous Sénart",48.671744,2.539003,0,0,OIF:SA:8799705,Europe/Paris,,OIF, +OIF:SP:87:10,1,"La Chapelle",49.183868,1.732517,0,0,OIF:SA:87:10,Europe/Paris,,OIF, +OIF:SP:87:100,1,"Villeneuve",49.08294,1.735723,0,0,OIF:SA:87:100,Europe/Paris,,OIF, +OIF:SP:87:101,1,"Route de Drocourt",49.079872,1.740259,0,0,OIF:SA:87:101,Europe/Paris,,OIF, +OIF:SP:87:102,1,"Le Tremblay",49.078225,1.745148,0,0,OIF:SA:87:102,Europe/Paris,,OIF, +OIF:SP:87:103,1,"Cadenas",49.070302,1.768038,0,0,OIF:SA:87:103,Europe/Paris,,OIF, +OIF:SP:87:104,1,"Centre Hospitalier",49.079465,1.759962,0,0,OIF:SA:87:104,Europe/Paris,,OIF, +OIF:SP:87:105,1,"Centre",49.07293,1.772687,0,0,OIF:SA:87:105,Europe/Paris,,OIF, +OIF:SP:87:106,1,"Église",49.071878,1.776255,0,0,OIF:SA:23:10,Europe/Paris,,OIF, +OIF:SP:87:107,1,"Abri Bus",49.05663,1.767068,0,0,OIF:SA:87:107,Europe/Paris,,OIF, +OIF:SP:87:108,1,"Chaudry",49.074277,1.717974,0,0,OIF:SA:87:108,Europe/Paris,,OIF, +OIF:SP:87:109,1,"Mairie",49.066458,1.717671,0,0,OIF:SA:87:109,Europe/Paris,,OIF, +OIF:SP:87:11,1,"Parc",49.170598,1.763793,0,0,OIF:SA:87:11,Europe/Paris,,OIF, +OIF:SP:87:110,1,"Gare Mantes-la-Jolie",48.989134,1.704873,0,0,OIF:SA:8738150,Europe/Paris,,OIF, +OIF:SP:87:111,1,"Mairie",48.989253,1.715605,0,0,OIF:SA:81:6878,Europe/Paris,,OIF, +OIF:SP:87:112,1,"Rue de la Sangle",48.989097,1.718447,0,0,OIF:SA:81:6940,Europe/Paris,,OIF, +OIF:SP:87:113,1,"Mairie",49.039887,1.689285,0,0,OIF:SA:87:113,Europe/Paris,,OIF, +OIF:SP:87:114,1,"Route de Vétheuil",49.059574,1.700456,0,0,OIF:SA:87:114,Europe/Paris,,OIF, +OIF:SP:87:115,1,"Mairie de Vétheuil",49.062887,1.7017,0,0,OIF:SA:87:115,Europe/Paris,,OIF, +OIF:SP:87:116,1,"Lapin Savant",49.075882,1.681939,0,0,OIF:SA:87:116,Europe/Paris,,OIF, +OIF:SP:87:117,1,"Chantemesle",49.079105,1.673144,0,0,OIF:SA:87:117,Europe/Paris,,OIF, +OIF:SP:87:118,1,"Mairie de Haute Isle",49.083227,1.658371,0,0,OIF:SA:87:118,Europe/Paris,,OIF, +OIF:SP:87:119,1,"Haute Isle / les Roches Blanches",49.08427,1.644416,0,0,OIF:SA:87:119,Europe/Paris,,OIF, +OIF:SP:87:12,1,"Mairie",49.168442,1.769463,0,0,OIF:SA:87:12,Europe/Paris,,OIF, +OIF:SP:87:120,1,"Igesa",49.082722,1.633233,0,0,OIF:SA:87:120,Europe/Paris,,OIF, +OIF:SP:87:121,1,"Mairie de la Roche Guyon",49.081256,1.629969,0,0,OIF:SA:87:121,Europe/Paris,,OIF, +OIF:SP:87:122,1,"Route de Gasny",49.079739,1.622562,0,0,OIF:SA:87:122,Europe/Paris,,OIF, +OIF:SP:87:123,1,"Église",49.08784,1.674974,0,0,OIF:SA:87:123,Europe/Paris,,OIF, +OIF:SP:87:124,1,"Foyer Rural",49.088862,1.676192,0,0,OIF:SA:87:124,Europe/Paris,,OIF, +OIF:SP:87:125,1,"Salle des Fêtes",49.122659,1.691148,0,0,OIF:SA:87:125,Europe/Paris,,OIF, +OIF:SP:87:126,1,"Abri Bus",49.056558,1.76715,0,0,OIF:SA:87:107,Europe/Paris,,OIF, +OIF:SP:87:127,1,"La Bucaille",49.072955,1.772249,0,0,OIF:SA:87:127,Europe/Paris,,OIF, +OIF:SP:87:128,1,"Rue de l'Orme",49.063801,1.704561,0,0,OIF:SA:87:128,Europe/Paris,,OIF, +OIF:SP:87:129,1,"Les Millonets",49.063625,1.715585,0,0,OIF:SA:87:129,Europe/Paris,,OIF, +OIF:SP:87:13,1,"Petit",49.163728,1.779764,0,0,OIF:SA:87:13,Europe/Paris,,OIF, +OIF:SP:87:130,1,"Centre Hospitalier",49.079466,1.760003,0,0,OIF:SA:87:104,Europe/Paris,,OIF, +OIF:SP:87:131,1,"Ferme de Brunel",49.066162,1.759167,0,0,OIF:SA:87:131,Europe/Paris,,OIF, +OIF:SP:87:132,1,"Wenings",49.15846,1.853637,0,0,OIF:SA:87:132,Europe/Paris,,OIF, +OIF:SP:87:133,1,"Église",49.151535,1.886606,0,0,OIF:SA:87:133,Europe/Paris,,OIF, +OIF:SP:87:134,1,"Place de la Mare",49.124607,1.891811,0,0,OIF:SA:21:838,Europe/Paris,,OIF, +OIF:SP:87:135,1,"Route de Commeny",49.112969,1.90846,0,0,OIF:SA:21:846,Europe/Paris,,OIF, +OIF:SP:87:136,1,"Centre Équestre",49.111345,1.932372,0,0,OIF:SA:21:866,Europe/Paris,,OIF, +OIF:SP:87:137,1,"Champmorin",49.104458,1.961563,0,0,OIF:SA:87:137,Europe/Paris,,OIF, +OIF:SP:87:138,1,"Mairie",49.101205,1.967142,0,0,OIF:SA:21:858,Europe/Paris,,OIF, +OIF:SP:87:139,1,"Rives de la Viosne",49.093054,1.9789,0,0,OIF:SA:87:139,Europe/Paris,,OIF, +OIF:SP:87:14,1,"Stoc",49.157733,1.783185,0,0,OIF:SA:87:14,Europe/Paris,,OIF, +OIF:SP:87:140,1,"Les Côteaux",49.087731,1.989717,0,0,OIF:SA:87:140,Europe/Paris,,OIF, +OIF:SP:87:141,1,"Montgeroult",49.080909,2.004906,0,0,OIF:SA:87:141,Europe/Paris,,OIF, +OIF:SP:87:142,1,"Victor Hugo",49.074762,2.028349,0,0,OIF:SA:21:998,Europe/Paris,,OIF, +OIF:SP:87:143,1,"Puiseux",49.054634,2.018242,0,0,OIF:SA:87:143,Europe/Paris,,OIF, +OIF:SP:87:144,1,"Église",49.151472,1.886455,0,0,OIF:SA:87:133,Europe/Paris,,OIF, +OIF:SP:87:145,1,"Le Haut - les Explorateurs",49.052543,2.009259,0,0,OIF:SA:87:145,Europe/Paris,,OIF, +OIF:SP:87:146,1,"Puiseux",49.054965,2.017707,0,0,OIF:SA:87:143,Europe/Paris,,OIF, +OIF:SP:87:147,1,"Victor Hugo",49.074861,2.028403,0,0,OIF:SA:21:998,Europe/Paris,,OIF, +OIF:SP:87:148,1,"Montgeroult",49.081108,2.005466,0,0,OIF:SA:87:141,Europe/Paris,,OIF, +OIF:SP:87:149,1,"Les Côteaux",49.08791,1.989634,0,0,OIF:SA:87:140,Europe/Paris,,OIF, +OIF:SP:87:15,1,"Place d'Armes",49.154353,1.786851,0,0,OIF:SA:87:15,Europe/Paris,,OIF, +OIF:SP:87:150,1,"Rives de la Viosne",49.093235,1.979021,0,0,OIF:SA:87:139,Europe/Paris,,OIF, +OIF:SP:87:151,1,"Mairie",49.101304,1.967183,0,0,OIF:SA:21:858,Europe/Paris,,OIF, +OIF:SP:87:152,1,"Champmorin",49.104468,1.961713,0,0,OIF:SA:87:137,Europe/Paris,,OIF, +OIF:SP:87:153,1,"Centre Équestre",49.111398,1.932166,0,0,OIF:SA:21:866,Europe/Paris,,OIF, +OIF:SP:87:154,1,"Route de Commeny",49.112978,1.908597,0,0,OIF:SA:21:846,Europe/Paris,,OIF, +OIF:SP:87:155,1,"Place de la Mare",49.12459,1.891989,0,0,OIF:SA:21:838,Europe/Paris,,OIF, +OIF:SP:87:156,1,"Le Haut - les Explorateurs",49.052543,2.009245,0,0,OIF:SA:87:145,Europe/Paris,,OIF, +OIF:SP:87:157,1,"Gare",49.158933,1.794201,0,0,OIF:SA:87:157,Europe/Paris,,OIF, +OIF:SP:87:158,1,"Blamécourt",49.160833,1.802949,0,0,OIF:SA:87:158,Europe/Paris,,OIF, +OIF:SP:87:159,1,"Les 3 Tilleuls",49.064789,1.704494,0,0,OIF:SA:87:159,Europe/Paris,,OIF, +OIF:SP:87:16,1,"Gare Routière",49.154855,1.790531,0,0,OIF:SA:87:16,Europe/Paris,,OIF, +OIF:SP:87:160,1,"Roconval",49.095083,1.628015,0,0,OIF:SA:87:160,Europe/Paris,,OIF, +OIF:SP:87:161,1,"Le Maréchal Gardé",49.101458,1.633155,0,0,OIF:SA:87:161,Europe/Paris,,OIF, +OIF:SP:87:162,1,"Église / Mairie",49.106172,1.641837,0,0,OIF:SA:87:162,Europe/Paris,,OIF, +OIF:SP:87:163,1,"Église",49.150393,1.697006,0,0,OIF:SA:87:163,Europe/Paris,,OIF, +OIF:SP:87:164,1,"Toussaint",49.153575,1.705597,0,0,OIF:SA:87:164,Europe/Paris,,OIF, +OIF:SP:87:165,1,"Le Mesnil",49.159149,1.709625,0,0,OIF:SA:87:165,Europe/Paris,,OIF, +OIF:SP:87:166,1,"Breuil",49.216482,1.723246,0,0,OIF:SA:87:166,Europe/Paris,,OIF, +OIF:SP:87:167,1,"Salle des Fêtes",49.182978,1.732431,0,0,OIF:SA:87:167,Europe/Paris,,OIF, +OIF:SP:87:168,1,"Gare Routière",49.155023,1.789954,0,0,OIF:SA:87:16,Europe/Paris,,OIF, +OIF:SP:87:169,1,"La Goulée",49.073514,1.704442,0,0,OIF:SA:87:169,Europe/Paris,,OIF, +OIF:SP:87:17,1,"Eugène Blouin",49.153834,1.793213,0,0,OIF:SA:87:17,Europe/Paris,,OIF, +OIF:SP:87:170,1,"Ducourt",49.168208,1.736263,0,0,OIF:SA:87:170,Europe/Paris,,OIF, +OIF:SP:87:171,1,"Le Vaumion",49.161025,1.707616,0,0,OIF:SA:87:171,Europe/Paris,,OIF, +OIF:SP:87:172,1,"Toussaint",49.153528,1.705269,0,0,OIF:SA:87:164,Europe/Paris,,OIF, +OIF:SP:87:173,1,"École",49.150751,1.696673,0,0,OIF:SA:87:163,Europe/Paris,,OIF, +OIF:SP:87:174,1,"Église",49.121685,1.692256,0,0,OIF:SA:87:174,Europe/Paris,,OIF, +OIF:SP:87:175,1,"Mairie",49.14013,1.720662,0,0,OIF:SA:87:175,Europe/Paris,,OIF, +OIF:SP:87:176,1,"Route Blanche",49.145818,1.767822,0,0,OIF:SA:87:176,Europe/Paris,,OIF, +OIF:SP:87:177,1,"Demi Lune",49.147577,1.78665,0,0,OIF:SA:87:177,Europe/Paris,,OIF, +OIF:SP:87:178,1,"Demi Lune",49.147603,1.786321,0,0,OIF:SA:87:177,Europe/Paris,,OIF, +OIF:SP:87:179,1,"Ducourt",49.168316,1.736399,0,0,OIF:SA:87:170,Europe/Paris,,OIF, +OIF:SP:87:18,1,"Paul Cézanne",49.151756,1.802578,0,0,OIF:SA:87:18,Europe/Paris,,OIF, +OIF:SP:87:180,1,"Le Mesnil",49.159274,1.709514,0,0,OIF:SA:87:180,Europe/Paris,,OIF, +OIF:SP:87:181,1,"Église / Mairie",49.106297,1.641671,0,0,OIF:SA:87:162,Europe/Paris,,OIF, +OIF:SP:87:182,1,"Le Maréchal Gardé",49.101546,1.632962,0,0,OIF:SA:87:161,Europe/Paris,,OIF, +OIF:SP:87:183,1,"Roconval",49.095172,1.627795,0,0,OIF:SA:87:160,Europe/Paris,,OIF, +OIF:SP:87:184,1,"Mairie",49.14022,1.720634,0,0,OIF:SA:87:175,Europe/Paris,,OIF, +OIF:SP:87:185,1,"Église",49.121707,1.692926,0,0,OIF:SA:87:174,Europe/Paris,,OIF, +OIF:SP:87:186,1,"Les 3 Tilleuls",49.064799,1.704672,0,0,OIF:SA:87:159,Europe/Paris,,OIF, +OIF:SP:87:187,1,"La Goulée",49.073569,1.704578,0,0,OIF:SA:87:169,Europe/Paris,,OIF, +OIF:SP:87:188,1,"Route Blanche",49.145871,1.767629,0,0,OIF:SA:87:176,Europe/Paris,,OIF, +OIF:SP:87:189,1,"Place",49.089908,1.725873,0,0,OIF:SA:87:189,Europe/Paris,,OIF, +OIF:SP:87:19,1,"Dame Noire",49.151608,1.805757,0,0,OIF:SA:87:19,Europe/Paris,,OIF, +OIF:SP:87:190,1,"Haute Souris",49.102237,1.715504,0,0,OIF:SA:87:190,Europe/Paris,,OIF, +OIF:SP:87:191,1,"Villarceaux",49.115299,1.711295,0,0,OIF:SA:87:191,Europe/Paris,,OIF, +OIF:SP:87:192,1,"Vélannes",49.161181,1.818935,0,0,OIF:SA:87:192,Europe/Paris,,OIF, +OIF:SP:87:193,1,"Rue des Grès",49.149378,1.80941,0,0,OIF:SA:87:193,Europe/Paris,,OIF, +OIF:SP:87:194,1,"Bois Pierre",49.150572,1.811124,0,0,OIF:SA:87:194,Europe/Paris,,OIF, +OIF:SP:87:195,1,"Villarceaux",49.115513,1.711073,0,0,OIF:SA:87:191,Europe/Paris,,OIF, +OIF:SP:87:196,1,"Haute Souris",49.102167,1.715696,0,0,OIF:SA:87:190,Europe/Paris,,OIF, +OIF:SP:87:197,1,"Place",49.089899,1.725763,0,0,OIF:SA:87:189,Europe/Paris,,OIF, +OIF:SP:87:199,1,"Hazeville",49.081442,1.81455,0,0,OIF:SA:87:199,Europe/Paris,,OIF, +OIF:SP:87:2,1,"Bray et Lû Place du 19 Mai 1962",49.137979,1.653761,0,0,OIF:SA:87:2,Europe/Paris,,OIF, +OIF:SP:87:20,1,"Cléry",49.130649,1.840232,0,0,OIF:SA:87:20,Europe/Paris,,OIF, +OIF:SP:87:200,1,"Enfer Centre",49.086996,1.808597,0,0,OIF:SA:87:200,Europe/Paris,,OIF, +OIF:SP:87:201,1,"Centre",49.095188,1.790068,0,0,OIF:SA:87:201,Europe/Paris,,OIF, +OIF:SP:87:202,1,"Mairie",49.099941,1.776333,0,0,OIF:SA:87:202,Europe/Paris,,OIF, +OIF:SP:87:203,1,"Église",49.12474,1.751638,0,0,OIF:SA:87:203,Europe/Paris,,OIF, +OIF:SP:87:204,1,"École",49.127978,1.755901,0,0,OIF:SA:87:204,Europe/Paris,,OIF, +OIF:SP:87:205,1,"Orée du Bois",49.141624,1.766485,0,0,OIF:SA:87:205,Europe/Paris,,OIF, +OIF:SP:87:206,1,"Mézières",49.129663,1.789292,0,0,OIF:SA:87:206,Europe/Paris,,OIF, +OIF:SP:87:207,1,"La Feuge",49.089238,1.791554,0,0,OIF:SA:87:207,Europe/Paris,,OIF, +OIF:SP:87:208,1,"Relais du Nord",49.055056,1.766716,0,0,OIF:SA:23:165,Europe/Paris,,OIF, +OIF:SP:87:209,1,"Mairie",49.135534,1.789942,0,0,OIF:SA:87:209,Europe/Paris,,OIF, +OIF:SP:87:21,1,"Bord'Haut",49.082424,1.930984,0,0,OIF:SA:87:21,Europe/Paris,,OIF, +OIF:SP:87:210,1,"Orée du Bois",49.141641,1.766265,0,0,OIF:SA:87:205,Europe/Paris,,OIF, +OIF:SP:87:211,1,"École",49.127959,1.755723,0,0,OIF:SA:87:204,Europe/Paris,,OIF, +OIF:SP:87:212,1,"Église",49.124894,1.751732,0,0,OIF:SA:87:203,Europe/Paris,,OIF, +OIF:SP:87:213,1,"Église",49.099657,1.775187,0,0,OIF:SA:87:213,Europe/Paris,,OIF, +OIF:SP:87:214,1,"Centre",49.095143,1.78985,0,0,OIF:SA:87:201,Europe/Paris,,OIF, +OIF:SP:87:215,1,"Église",49.071878,1.776255,0,0,OIF:SA:23:10,Europe/Paris,,OIF, +OIF:SP:87:216,1,"La Feuge",49.089238,1.791554,0,0,OIF:SA:87:207,Europe/Paris,,OIF, +OIF:SP:87:217,1,"Mairie",49.135091,1.789385,0,0,OIF:SA:87:209,Europe/Paris,,OIF, +OIF:SP:87:218,1,"Mézières",49.129663,1.789292,0,0,OIF:SA:87:206,Europe/Paris,,OIF, +OIF:SP:87:219,1,"Enfer Centre",49.087022,1.80846,0,0,OIF:SA:87:200,Europe/Paris,,OIF, +OIF:SP:87:22,1,"Le Haut - Gare SNCF/RER",49.047605,2.010739,0,0,OIF:SA:8738265,Europe/Paris,,OIF, +OIF:SP:87:220,1,"Hazeville",49.081352,1.81466,0,0,OIF:SA:87:199,Europe/Paris,,OIF, +OIF:SP:87:221,1,"Mairie",49.086798,1.873585,0,0,OIF:SA:21:87,Europe/Paris,,OIF, +OIF:SP:87:222,1,"Mairie",49.096288,1.857955,0,0,OIF:SA:21:287,Europe/Paris,,OIF, +OIF:SP:87:223,1,"Rue Henri IV",49.102261,1.833239,0,0,OIF:SA:87:223,Europe/Paris,,OIF, +OIF:SP:87:224,1,"Église",49.102937,1.835928,0,0,OIF:SA:21:737,Europe/Paris,,OIF, +OIF:SP:87:225,1,"Lavoir",49.107728,1.849171,0,0,OIF:SA:87:225,Europe/Paris,,OIF, +OIF:SP:87:226,1,"Tavernes",49.128013,1.845967,0,0,OIF:SA:87:226,Europe/Paris,,OIF, +OIF:SP:87:227,1,"Église",49.12593,1.814469,0,0,OIF:SA:21:102,Europe/Paris,,OIF, +OIF:SP:87:228,1,"Calvaire",49.137416,1.790784,0,0,OIF:SA:87:228,Europe/Paris,,OIF, +OIF:SP:87:229,1,"Église",49.125831,1.814374,0,0,OIF:SA:21:102,Europe/Paris,,OIF, +OIF:SP:87:23,1,"Saint-Christophe - Gare SNCF/RER",49.049815,2.034417,0,0,OIF:SA:8738249,Europe/Paris,,OIF, +OIF:SP:87:230,1,"Église",49.128329,1.839734,0,0,OIF:SA:87:230,Europe/Paris,,OIF, +OIF:SP:87:231,1,"Église",49.12832,1.839652,0,0,OIF:SA:87:230,Europe/Paris,,OIF, +OIF:SP:87:232,1,"Calvaire",49.137272,1.790759,0,0,OIF:SA:87:228,Europe/Paris,,OIF, +OIF:SP:87:233,1,"Rue Henri IV",49.102135,1.83313,0,0,OIF:SA:87:223,Europe/Paris,,OIF, +OIF:SP:87:234,1,"Mairie",49.09618,1.857819,0,0,OIF:SA:21:287,Europe/Paris,,OIF, +OIF:SP:87:235,1,"Mairie",49.086681,1.873517,0,0,OIF:SA:21:87,Europe/Paris,,OIF, +OIF:SP:87:236,1,"Tavernes",49.128127,1.845268,0,0,OIF:SA:87:226,Europe/Paris,,OIF, +OIF:SP:87:237,1,"Lavoir",49.107645,1.84883,0,0,OIF:SA:87:225,Europe/Paris,,OIF, +OIF:SP:87:238,1,"Église",49.103081,1.835981,0,0,OIF:SA:21:737,Europe/Paris,,OIF, +OIF:SP:87:239,1,"Bois Pierre",49.150463,1.811043,0,0,OIF:SA:87:194,Europe/Paris,,OIF, +OIF:SP:87:24,1,"Cité Artisanale",49.043907,2.070676,0,0,OIF:SA:40:24,Europe/Paris,,OIF, +OIF:SP:87:240,1,"Grande Rue",49.153121,1.885236,0,0,OIF:SA:87:240,Europe/Paris,,OIF, +OIF:SP:87:241,1,"Centre Ville",49.160368,1.934522,0,0,OIF:SA:87:241,Europe/Paris,,OIF, +OIF:SP:87:242,1,"L.E.P",49.157728,1.943297,0,0,OIF:SA:84:122,Europe/Paris,,OIF, +OIF:SP:87:243,1,"Serans",49.185631,1.836029,0,0,OIF:SA:87:243,Europe/Paris,,OIF, +OIF:SP:87:244,1,"Hadancourt",49.186855,1.854002,0,0,OIF:SA:87:244,Europe/Paris,,OIF, +OIF:SP:87:245,1,"Lierville",49.190321,1.881085,0,0,OIF:SA:87:245,Europe/Paris,,OIF, +OIF:SP:87:246,1,"Hardeville",49.163763,1.860836,0,0,OIF:SA:87:246,Europe/Paris,,OIF, +OIF:SP:87:247,1,"Rue du Bois de Chars",49.162721,1.858612,0,0,OIF:SA:87:247,Europe/Paris,,OIF, +OIF:SP:87:248,1,"Rue d'Hardeville",49.159091,1.854179,0,0,OIF:SA:87:246,Europe/Paris,,OIF, +OIF:SP:87:249,1,"Hadancourt",49.186657,1.854031,0,0,OIF:SA:87:244,Europe/Paris,,OIF, +OIF:SP:87:25,1,"Les Marjoberts",49.041388,2.073163,0,0,OIF:SA:87:25,Europe/Paris,,OIF, +OIF:SP:87:250,1,"Bouconvillers",49.176053,1.902823,0,0,OIF:SA:87:250,Europe/Paris,,OIF, +OIF:SP:87:251,1,"Bercagny",49.145597,1.901327,0,0,OIF:SA:87:251,Europe/Paris,,OIF, +OIF:SP:87:252,1,"Rue du Bois de Chars",49.162686,1.858873,0,0,OIF:SA:87:247,Europe/Paris,,OIF, +OIF:SP:87:253,1,"Hardeville",49.163593,1.860824,0,0,OIF:SA:87:246,Europe/Paris,,OIF, +OIF:SP:87:254,1,"Bouconvillers",49.175972,1.902838,0,0,OIF:SA:87:250,Europe/Paris,,OIF, +OIF:SP:87:255,1,"Métairie",49.1486,1.969008,0,0,OIF:SA:87:255,Europe/Paris,,OIF, +OIF:SP:87:256,1,"Zone Artisanale",49.145741,1.968521,0,0,OIF:SA:87:256,Europe/Paris,,OIF, +OIF:SP:87:257,1,"Hoptal de Marines",49.145706,1.974672,0,0,OIF:SA:87:257,Europe/Paris,,OIF, +OIF:SP:87:258,1,"Gendarmerie",49.145597,1.977371,0,0,OIF:SA:87:258,Europe/Paris,,OIF, +OIF:SP:87:259,1,"Collège les Hautiers",49.148928,1.985374,0,0,OIF:SA:87:259,Europe/Paris,,OIF, +OIF:SP:87:26,1,"Préfecture / RER",49.036289,2.08001,0,0,OIF:SA:8738190,Europe/Paris,,OIF, +OIF:SP:87:260,1,"Institut Marie Thérèse",49.15578,1.784507,0,0,OIF:SA:87:260,Europe/Paris,,OIF, +OIF:SP:87:261,1,"École",49.153864,1.884503,0,0,OIF:SA:87:261,Europe/Paris,,OIF, +OIF:SP:87:262,1,"Lierville",49.190438,1.881139,0,0,OIF:SA:87:245,Europe/Paris,,OIF, +OIF:SP:87:263,1,"Serans",49.18588,1.835533,0,0,OIF:SA:87:243,Europe/Paris,,OIF, +OIF:SP:87:264,1,"Centre Ville",49.160557,1.93463,0,0,OIF:SA:87:241,Europe/Paris,,OIF, +OIF:SP:87:265,1,"Bercagny",49.145696,1.901381,0,0,OIF:SA:87:251,Europe/Paris,,OIF, +OIF:SP:87:266,1,"Église",49.151526,1.886606,0,0,OIF:SA:87:133,Europe/Paris,,OIF, +OIF:SP:87:267,1,"Gendarmerie",49.145663,1.978247,0,0,OIF:SA:87:258,Europe/Paris,,OIF, +OIF:SP:87:268,1,"Hôpital de Marines",49.146937,1.974677,0,0,OIF:SA:87:257,Europe/Paris,,OIF, +OIF:SP:87:269,1,"Métairie",49.149406,1.968276,0,0,OIF:SA:87:255,Europe/Paris,,OIF, +OIF:SP:87:27,1,"Rue du Premier Dragon",49.042557,2.090668,0,0,OIF:SA:87:27,Europe/Paris,,OIF, +OIF:SP:87:270,1,"Grande Rue",49.152958,1.885114,0,0,OIF:SA:87:240,Europe/Paris,,OIF, +OIF:SP:87:271,1,"Rue d'Hardeville",49.159074,1.854358,0,0,OIF:SA:87:246,Europe/Paris,,OIF, +OIF:SP:87:272,1,"Collège",49.141458,1.665247,0,0,OIF:SA:87:272,Europe/Paris,,OIF, +OIF:SP:87:273,1,"Cul Froid",49.107452,1.702247,0,0,OIF:SA:87:273,Europe/Paris,,OIF, +OIF:SP:87:274,1,"Buchet",49.197472,1.711627,0,0,OIF:SA:87:274,Europe/Paris,,OIF, +OIF:SP:87:275,1,"Breuil",49.216393,1.723439,0,0,OIF:SA:87:166,Europe/Paris,,OIF, +OIF:SP:87:276,1,"Place Marchand",49.207887,1.681454,0,0,OIF:SA:87:276,Europe/Paris,,OIF, +OIF:SP:87:277,1,"Clos Minet",49.193403,1.69155,0,0,OIF:SA:87:277,Europe/Paris,,OIF, +OIF:SP:87:278,1,"Ansicourt",49.178378,1.684447,0,0,OIF:SA:87:278,Europe/Paris,,OIF, +OIF:SP:87:279,1,"Salle des Fêtes",49.183104,1.73243,0,0,OIF:SA:87:167,Europe/Paris,,OIF, +OIF:SP:87:28,1,"Place du Général de Gaulle / Gare",49.047222,2.095526,0,0,OIF:SA:8727613,Europe/Paris,,OIF, +OIF:SP:87:280,1,"Ansicourt",49.178234,1.684421,0,0,OIF:SA:87:278,Europe/Paris,,OIF, +OIF:SP:87:281,1,"Clos Minet",49.19353,1.691631,0,0,OIF:SA:87:277,Europe/Paris,,OIF, +OIF:SP:87:282,1,"Place Marchand",49.207931,1.681439,0,0,OIF:SA:87:276,Europe/Paris,,OIF, +OIF:SP:87:283,1,"Église",49.12484,1.751801,0,0,OIF:SA:87:203,Europe/Paris,,OIF, +OIF:SP:87:284,1,"Lycée Galilée",49.044595,2.031386,0,0,OIF:SA:87:284,Europe/Paris,,OIF, +OIF:SP:87:285,1,"Lycée Kastler",49.033662,2.087006,0,0,OIF:SA:40:233,Europe/Paris,,OIF, +OIF:SP:87:286,1,"Copierres",49.166533,1.675978,0,0,OIF:SA:87:286,Europe/Paris,,OIF, +OIF:SP:87:287,1,"Etrez",49.16335,1.783399,0,0,OIF:SA:87:287,Europe/Paris,,OIF, +OIF:SP:87:288,1,"LEP",49.021746,2.109213,0,0,OIF:SA:87:288,Europe/Paris,,OIF, +OIF:SP:87:289,1,"Lycée Rostand",49.037903,2.118901,0,0,OIF:SA:40:419,Europe/Paris,,OIF, +OIF:SP:87:29,1,"Poste",49.051694,2.098403,0,0,OIF:SA:21:617,Europe/Paris,,OIF, +OIF:SP:87:290,1,"La Ravinière",49.058467,2.067662,0,0,OIF:SA:40:191,Europe/Paris,,OIF, +OIF:SP:87:291,1,"Lycée Pôle Émile Victor",49.072546,2.071007,0,0,OIF:SA:87:291,Europe/Paris,,OIF, +OIF:SP:87:292,1,"La Bussie",49.032856,2.019893,0,0,OIF:SA:23:933,Europe/Paris,,OIF, +OIF:SP:87:293,1,"Les Valanchards",49.020784,2.021757,0,0,OIF:SA:87:293,Europe/Paris,,OIF, +OIF:SP:87:294,1,"Lycée les Merisiers",49.009427,2.025883,0,0,OIF:SA:87:294,Europe/Paris,,OIF, +OIF:SP:87:295,1,"Archemont",49.158528,1.759516,0,0,OIF:SA:87:295,Europe/Paris,,OIF, +OIF:SP:87:296,1,"Zone d'Activités",49.153991,1.854939,0,0,OIF:SA:87:296,Europe/Paris,,OIF, +OIF:SP:87:297,1,"Lycée Jean Perrin",49.058297,2.131558,0,0,OIF:SA:40:429,Europe/Paris,,OIF, +OIF:SP:87:298,1,"Archemont",49.158619,1.759679,0,0,OIF:SA:87:295,Europe/Paris,,OIF, +OIF:SP:87:299,1,"La Ravinière",49.058467,2.067662,0,0,OIF:SA:40:191,Europe/Paris,,OIF, +OIF:SP:87:3,1,"Salle des Fêtes",49.139271,1.661413,0,0,OIF:SA:87:3,Europe/Paris,,OIF, +OIF:SP:87:30,1,"Lycée Pissarro",49.057026,2.091433,0,0,OIF:SA:21:616,Europe/Paris,,OIF, +OIF:SP:87:300,1,"La Bussie",49.033155,2.020588,0,0,OIF:SA:23:933,Europe/Paris,,OIF, +OIF:SP:87:301,1,"Les Vallanchards",49.021315,2.022123,0,0,OIF:SA:40:142,Europe/Paris,,OIF, +OIF:SP:87:302,1,"Lycée Kastler",49.033725,2.086992,0,0,OIF:SA:40:233,Europe/Paris,,OIF, +OIF:SP:87:303,1,"Lycée Galilée",49.044649,2.031495,0,0,OIF:SA:87:284,Europe/Paris,,OIF, +OIF:SP:87:304,1,"Clery Route de Nucourt",49.130694,1.840095,0,0,OIF:SA:87:304,Europe/Paris,,OIF, +OIF:SP:87:305,1,"Etrez",49.163324,1.783618,0,0,OIF:SA:87:287,Europe/Paris,,OIF, +OIF:SP:87:306,1,"Lycée Jean Perrin",49.058297,2.131558,0,0,OIF:SA:40:429,Europe/Paris,,OIF, +OIF:SP:87:307,1,"Lycée Rostand",49.037903,2.118887,0,0,OIF:SA:40:419,Europe/Paris,,OIF, +OIF:SP:87:31,1,"Hôpital",49.06289,2.093784,0,0,OIF:SA:40:164,Europe/Paris,,OIF, +OIF:SP:87:32,1,"Blamécourt",49.160994,1.802783,0,0,OIF:SA:87:158,Europe/Paris,,OIF, +OIF:SP:87:33,1,"Moulin",49.158596,1.793054,0,0,OIF:SA:87:33,Europe/Paris,,OIF, +OIF:SP:87:34,1,"Saint-Christophe - Gare SNCF/RER",49.049992,2.033295,0,0,OIF:SA:8738249,Europe/Paris,,OIF, +OIF:SP:87:35,1,"Bord'Haut",49.083349,1.930799,0,0,OIF:SA:87:21,Europe/Paris,,OIF, +OIF:SP:87:36,1,"Zone d'Activités",49.153992,1.855159,0,0,OIF:SA:87:296,Europe/Paris,,OIF, +OIF:SP:87:37,1,"Wenings",49.158496,1.853527,0,0,OIF:SA:87:132,Europe/Paris,,OIF, +OIF:SP:87:39,1,"Place d'Armes",49.154362,1.786851,0,0,OIF:SA:87:15,Europe/Paris,,OIF, +OIF:SP:87:4,1,"Pont Rû",49.144034,1.671089,0,0,OIF:SA:87:4,Europe/Paris,,OIF, +OIF:SP:87:40,1,"Préfecture / RER",49.0362,2.080229,0,0,OIF:SA:8738190,Europe/Paris,,OIF, +OIF:SP:87:41,1,"Les Marjoberts",49.041577,2.073409,0,0,OIF:SA:87:25,Europe/Paris,,OIF, +OIF:SP:87:42,1,"Cité Artisanale",49.04468,2.070426,0,0,OIF:SA:40:24,Europe/Paris,,OIF, +OIF:SP:87:43,1,"Le Haut - Gare SNCF/RER",49.047198,2.00999,0,0,OIF:SA:8738265,Europe/Paris,,OIF, +OIF:SP:87:44,1,"Dame Noire",49.151734,1.805811,0,0,OIF:SA:87:19,Europe/Paris,,OIF, +OIF:SP:87:45,1,"Paul Cézanne",49.151881,1.802576,0,0,OIF:SA:87:18,Europe/Paris,,OIF, +OIF:SP:87:46,1,"Eugène Blouin",49.15396,1.793322,0,0,OIF:SA:87:17,Europe/Paris,,OIF, +OIF:SP:87:47,1,"Gare Routière",49.154855,1.790531,0,0,OIF:SA:87:16,Europe/Paris,,OIF, +OIF:SP:87:48,1,"Moulin",49.158596,1.793054,0,0,OIF:SA:87:33,Europe/Paris,,OIF, +OIF:SP:87:49,1,"La Chapelle",49.183942,1.732859,0,0,OIF:SA:87:10,Europe/Paris,,OIF, +OIF:SP:87:5,1,"Copierres",49.166445,1.676226,0,0,OIF:SA:87:286,Europe/Paris,,OIF, +OIF:SP:87:50,1,"Buhy Buchet / RN14",49.1958,1.704504,0,0,OIF:SA:87:50,Europe/Paris,,OIF, +OIF:SP:87:51,1,"Église",49.206916,1.679779,0,0,OIF:SA:87:51,Europe/Paris,,OIF, +OIF:SP:87:52,1,"Bois Saint-Clair",49.200775,1.677307,0,0,OIF:SA:87:52,Europe/Paris,,OIF, +OIF:SP:87:53,1,"Hôpital",49.062684,2.093908,0,0,OIF:SA:40:164,Europe/Paris,,OIF, +OIF:SP:87:54,1,"Lycée Pissarro",49.058238,2.090607,0,0,OIF:SA:21:616,Europe/Paris,,OIF, +OIF:SP:87:55,1,"Poste",49.051516,2.099252,0,0,OIF:SA:21:617,Europe/Paris,,OIF, +OIF:SP:87:56,1,"Place du Général de Gaulle / Gare",49.04708,2.096443,0,0,OIF:SA:8727613,Europe/Paris,,OIF, +OIF:SP:87:57,1,"Rue du Premier Dragon",49.042287,2.090136,0,0,OIF:SA:87:27,Europe/Paris,,OIF, +OIF:SP:87:58,1,"Petit",49.163988,1.779733,0,0,OIF:SA:87:13,Europe/Paris,,OIF, +OIF:SP:87:59,1,"Mairie",49.168568,1.769571,0,0,OIF:SA:87:12,Europe/Paris,,OIF, +OIF:SP:87:6,1,"École",49.175859,1.677379,0,0,OIF:SA:87:6,Europe/Paris,,OIF, +OIF:SP:87:60,1,"Parc",49.170725,1.763901,0,0,OIF:SA:87:11,Europe/Paris,,OIF, +OIF:SP:87:61,1,"École",49.175858,1.677256,0,0,OIF:SA:87:6,Europe/Paris,,OIF, +OIF:SP:87:62,1,"Copierres",49.16657,1.676046,0,0,OIF:SA:87:286,Europe/Paris,,OIF, +OIF:SP:87:63,1,"Pont Rû",49.143582,1.670739,0,0,OIF:SA:87:4,Europe/Paris,,OIF, +OIF:SP:87:64,1,"Salle des Fêtes",49.139433,1.661466,0,0,OIF:SA:87:3,Europe/Paris,,OIF, +OIF:SP:87:65,1,"Bray et Lû Place du 19 Mai 1962",49.137979,1.653761,0,0,OIF:SA:87:2,Europe/Paris,,OIF, +OIF:SP:87:66,1,"Centre Hospitalier",49.079438,1.759963,0,0,OIF:SA:87:104,Europe/Paris,,OIF, +OIF:SP:87:67,1,"La Bucaille",49.072865,1.772086,0,0,OIF:SA:87:127,Europe/Paris,,OIF, +OIF:SP:87:68,1,"Cadenas",49.070745,1.768553,0,0,OIF:SA:87:103,Europe/Paris,,OIF, +OIF:SP:87:69,1,"Place",49.06071,1.741465,0,0,OIF:SA:87:69,Europe/Paris,,OIF, +OIF:SP:87:7,1,"Bois Saint-Clair",49.200739,1.677459,0,0,OIF:SA:87:52,Europe/Paris,,OIF, +OIF:SP:87:70,1,"Ferme de Brunel",49.066289,1.75933,0,0,OIF:SA:87:131,Europe/Paris,,OIF, +OIF:SP:87:71,1,"Le Tremblay",49.078351,1.745256,0,0,OIF:SA:87:102,Europe/Paris,,OIF, +OIF:SP:87:72,1,"Route de Drocourt",49.080016,1.740285,0,0,OIF:SA:87:101,Europe/Paris,,OIF, +OIF:SP:87:73,1,"Villeneuve",49.083013,1.735914,0,0,OIF:SA:87:100,Europe/Paris,,OIF, +OIF:SP:87:74,1,"Saint-Léger",49.085779,1.730204,0,0,OIF:SA:87:74,Europe/Paris,,OIF, +OIF:SP:87:75,1,"Mairie",49.087721,1.725146,0,0,OIF:SA:87:75,Europe/Paris,,OIF, +OIF:SP:87:76,1,"Église",49.087875,1.674755,0,0,OIF:SA:87:123,Europe/Paris,,OIF, +OIF:SP:87:77,1,"Route de Gasny",49.079706,1.623083,0,0,OIF:SA:87:122,Europe/Paris,,OIF, +OIF:SP:87:78,1,"Mairie de la Roche Guyon",49.081195,1.630176,0,0,OIF:SA:87:121,Europe/Paris,,OIF, +OIF:SP:87:79,1,"Igesa",49.082606,1.633316,0,0,OIF:SA:87:120,Europe/Paris,,OIF, +OIF:SP:87:8,1,"Église",49.206791,1.679863,0,0,OIF:SA:87:51,Europe/Paris,,OIF, +OIF:SP:87:80,1,"Haute Isle / les Roches Blanches",49.084109,1.644418,0,0,OIF:SA:87:119,Europe/Paris,,OIF, +OIF:SP:87:81,1,"Mairie de Haut Isle",49.083065,1.658318,0,0,OIF:SA:87:118,Europe/Paris,,OIF, +OIF:SP:87:82,1,"Chantemesle",49.078978,1.672981,0,0,OIF:SA:87:117,Europe/Paris,,OIF, +OIF:SP:87:83,1,"Lapin Savant",49.075729,1.681846,0,0,OIF:SA:87:116,Europe/Paris,,OIF, +OIF:SP:87:84,1,"Mairie de Vétheuil",49.06303,1.701562,0,0,OIF:SA:87:115,Europe/Paris,,OIF, +OIF:SP:87:85,1,"Route de Vétheuil",49.059608,1.700209,0,0,OIF:SA:87:114,Europe/Paris,,OIF, +OIF:SP:87:86,1,"Mairie",49.039958,1.689065,0,0,OIF:SA:87:113,Europe/Paris,,OIF, +OIF:SP:87:87,1,"Saint-Maclou",48.990923,1.718726,0,0,OIF:SA:87:87,Europe/Paris,,OIF, +OIF:SP:87:88,1,"Palais de Justice",48.989841,1.712894,0,0,OIF:SA:81:6906,Europe/Paris,,OIF, +OIF:SP:87:89,1,"Gare Mantes-la-Jolie",48.989758,1.703814,0,0,OIF:SA:8738150,Europe/Paris,,OIF, +OIF:SP:87:9,1,"Buhy Buchet / RN14",49.195512,1.704439,0,0,OIF:SA:87:50,Europe/Paris,,OIF, +OIF:SP:87:90,1,"Place",49.060764,1.741478,0,0,OIF:SA:87:69,Europe/Paris,,OIF, +OIF:SP:87:91,1,"Les Millonets",49.063794,1.715324,0,0,OIF:SA:87:129,Europe/Paris,,OIF, +OIF:SP:87:92,1,"Rue de l'Orme",49.063908,1.704505,0,0,OIF:SA:87:128,Europe/Paris,,OIF, +OIF:SP:87:93,1,"Salle des Fêtes",49.122801,1.690859,0,0,OIF:SA:87:125,Europe/Paris,,OIF, +OIF:SP:87:94,1,"Foyer Rural",49.088915,1.676041,0,0,OIF:SA:87:124,Europe/Paris,,OIF, +OIF:SP:87:95,1,"Condorcet",48.985585,1.756244,0,0,OIF:SA:81:15220,Europe/Paris,,OIF, +OIF:SP:87:96,1,"Mairie",49.066431,1.717795,0,0,OIF:SA:87:109,Europe/Paris,,OIF, +OIF:SP:87:97,1,"Chaudry",49.074125,1.718058,0,0,OIF:SA:87:108,Europe/Paris,,OIF, +OIF:SP:87:98,1,"Mairie",49.087668,1.725243,0,0,OIF:SA:87:75,Europe/Paris,,OIF, +OIF:SP:87:99,1,"Saint-Léger",49.085742,1.730054,0,0,OIF:SA:87:74,Europe/Paris,,OIF, +OIF:SP:88:1,1,"Ambourget Cimetière",48.948089,2.513298,0,0,OIF:SA:7:10001,Europe/Paris,,OIF, +OIF:SP:88:10,1,"Botticelli",48.953262,2.503164,0,0,OIF:SA:70:1401,Europe/Paris,,OIF, +OIF:SP:88:11,1,"Bougainville",48.955778,2.496676,0,0,OIF:SA:70:10173,Europe/Paris,,OIF, +OIF:SP:88:12,1,"Bougainville",48.955652,2.496758,0,0,OIF:SA:70:10173,Europe/Paris,,OIF, +OIF:SP:88:1252,1,"Rue de la Fossette",49.012639,2.584858,0,0,OIF:SA:88:1252,Europe/Paris,,OIF, +OIF:SP:88:1493,1,"Centre Médical",49.067038,2.680508,0,0,OIF:SA:6:322,Europe/Paris,,OIF, +OIF:SP:88:1494,1,"Centre Médical",49.067037,2.680618,0,0,OIF:SA:6:322,Europe/Paris,,OIF, +OIF:SP:88:1496,1,"Rue de la Fossette",49.012546,2.586374,0,0,OIF:SA:88:1252,Europe/Paris,,OIF, +OIF:SP:88:1497,1,"Versant Seine",48.986037,2.537842,0,0,OIF:SA:7:10781,Europe/Paris,,OIF, +OIF:SP:88:1498,1,"Versant Seine",48.987394,2.532317,0,0,OIF:SA:7:10781,Europe/Paris,,OIF, +OIF:SP:88:196,1,"Bergamottes",49.058723,2.690763,0,0,OIF:SA:6:26,Europe/Paris,,OIF, +OIF:SP:88:197,1,"Canada",49.056056,2.695981,0,0,OIF:SA:6:29,Europe/Paris,,OIF, +OIF:SP:88:198,1,"Canada",49.056352,2.696079,0,0,OIF:SA:6:29,Europe/Paris,,OIF, +OIF:SP:88:199,1,"Collège de l'Europe",49.063954,2.681172,0,0,OIF:SA:88:199,Europe/Paris,,OIF, +OIF:SP:88:2,1,"Ambourget Cimetière",48.945811,2.510084,0,0,OIF:SA:7:10001,Europe/Paris,,OIF, +OIF:SP:88:200,1,"Chabannes",49.061822,2.684877,0,0,OIF:SA:6:33,Europe/Paris,,OIF, +OIF:SP:88:201,1,"Châtaigners",49.056393,2.691677,0,0,OIF:SA:6:34,Europe/Paris,,OIF, +OIF:SP:88:202,1,"La Corbie",49.055282,2.674729,0,0,OIF:SA:6:36,Europe/Paris,,OIF, +OIF:SP:88:203,1,"Dom Ganneron",49.061652,2.681457,0,0,OIF:SA:6:37,Europe/Paris,,OIF, +OIF:SP:88:204,1,"Route d'Eve",49.06067,2.685457,0,0,OIF:SA:88:204,Europe/Paris,,OIF, +OIF:SP:88:205,1,"Route d'Eve",49.060722,2.686237,0,0,OIF:SA:88:204,Europe/Paris,,OIF, +OIF:SP:88:206,1,"Garenne",49.057599,2.687952,0,0,OIF:SA:6:40,Europe/Paris,,OIF, +OIF:SP:88:207,1,"Jean Baptiste Delambre",49.054143,2.680259,0,0,OIF:SA:88:207,Europe/Paris,,OIF, +OIF:SP:88:208,1,"Mairie",49.053916,2.678124,0,0,OIF:SA:6:46,Europe/Paris,,OIF, +OIF:SP:88:209,1,"Saint-Fiacre",49.053762,2.684741,0,0,OIF:SA:6:51,Europe/Paris,,OIF, +OIF:SP:88:210,1,"Saint-Fiacre",49.05348,2.685901,0,0,OIF:SA:6:51,Europe/Paris,,OIF, +OIF:SP:88:211,1,"Trésor Publics",49.05335,2.674894,0,0,OIF:SA:6:53,Europe/Paris,,OIF, +OIF:SP:88:212,1,"Trésor Publics",49.053161,2.674852,0,0,OIF:SA:6:53,Europe/Paris,,OIF, +OIF:SP:88:227,1,"Belle Étoile",49.046316,2.664322,0,0,OIF:SA:88:227,Europe/Paris,,OIF, +OIF:SP:88:228,1,"Belle Étoile",49.046387,2.664814,0,0,OIF:SA:88:227,Europe/Paris,,OIF, +OIF:SP:88:229,1,"Croisement",49.051169,2.670901,0,0,OIF:SA:6:83,Europe/Paris,,OIF, +OIF:SP:88:230,1,"Croisement",49.050971,2.670913,0,0,OIF:SA:6:83,Europe/Paris,,OIF, +OIF:SP:88:231,1,"Lycée Charles de Gaulle",49.047064,2.666896,0,0,OIF:SA:6:91,Europe/Paris,,OIF, +OIF:SP:88:232,1,"Mairie",49.050345,2.770479,0,0,OIF:SA:6:95,Europe/Paris,,OIF, +OIF:SP:88:233,1,"20 Arpents",49.019472,2.587528,0,0,OIF:SA:6:99,Europe/Paris,,OIF, +OIF:SP:88:234,1,"Centre",49.017953,2.591606,0,0,OIF:SA:6:100,Europe/Paris,,OIF, +OIF:SP:88:235,1,"Centre",49.017855,2.591291,0,0,OIF:SA:6:100,Europe/Paris,,OIF, +OIF:SP:88:236,1,"Église",49.017355,2.594035,0,0,OIF:SA:88:236,Europe/Paris,,OIF, +OIF:SP:88:237,1,"Église",49.017473,2.593353,0,0,OIF:SA:88:236,Europe/Paris,,OIF, +OIF:SP:88:238,1,"Grande Borne",49.015014,2.600199,0,0,OIF:SA:6:104,Europe/Paris,,OIF, +OIF:SP:88:239,1,"Grande Borne",49.014843,2.600239,0,0,OIF:SA:6:104,Europe/Paris,,OIF, +OIF:SP:88:240,1,"Rue du Gué",49.020742,2.59867,0,0,OIF:SA:6:106,Europe/Paris,,OIF, +OIF:SP:88:241,1,"Rue du Gué",49.020904,2.598507,0,0,OIF:SA:6:106,Europe/Paris,,OIF, +OIF:SP:88:244,1,"RN",49.019555,2.586299,0,0,OIF:SA:6:110,Europe/Paris,,OIF, +OIF:SP:88:245,1,"ZI",49.018603,2.598687,0,0,OIF:SA:6:293,Europe/Paris,,OIF, +OIF:SP:88:246,1,"ZI",49.018837,2.598497,0,0,OIF:SA:6:293,Europe/Paris,,OIF, +OIF:SP:88:247,1,"ZI Périchet",49.012639,2.584872,0,0,OIF:SA:6:293,Europe/Paris,,OIF, +OIF:SP:88:248,1,"ZI Périchet",49.013009,2.584191,0,0,OIF:SA:6:293,Europe/Paris,,OIF, +OIF:SP:88:254,1,"Bibliothèque / Cmcl",48.955415,2.600223,0,0,OIF:SA:7:10260,Europe/Paris,,OIF, +OIF:SP:88:255,1,"Bibliothèque / Cmcl",48.955405,2.600619,0,0,OIF:SA:7:10260,Europe/Paris,,OIF, +OIF:SP:88:256,1,"Bosquets",48.956541,2.602985,0,0,OIF:SA:53:2047,Europe/Paris,,OIF, +OIF:SP:88:26,1,"Citroën Production",48.965118,2.494671,0,0,OIF:SA:59:3666666,Europe/Paris,,OIF, +OIF:SP:88:261,1,"Carrez",48.978542,2.625502,0,0,OIF:SA:53:2091,Europe/Paris,,OIF, +OIF:SP:88:262,1,"Carrez",48.978344,2.625897,0,0,OIF:SA:53:2091,Europe/Paris,,OIF, +OIF:SP:88:263,1,"Cheminots",48.975017,2.637318,0,0,OIF:SA:53:2597,Europe/Paris,,OIF, +OIF:SP:88:264,1,"Cheminots",48.974962,2.637782,0,0,OIF:SA:53:2597,Europe/Paris,,OIF, +OIF:SP:88:28,1,"Citroën Production",48.96482,2.496158,0,0,OIF:SA:59:3666666,Europe/Paris,,OIF, +OIF:SP:88:29,1,"Croix Saint-Marc",48.960161,2.498546,0,0,OIF:SA:70:1380,Europe/Paris,,OIF, +OIF:SP:88:295,1,"Jean Moulin",48.982111,2.62129,0,0,OIF:SA:53:2241,Europe/Paris,,OIF, +OIF:SP:88:297,1,"Lamartine",48.956163,2.599531,0,0,OIF:SA:7:10307,Europe/Paris,,OIF, +OIF:SP:88:298,1,"Lamartine",48.956243,2.599586,0,0,OIF:SA:7:10307,Europe/Paris,,OIF, +OIF:SP:88:30,1,"Croix Saint-Marc",48.959641,2.497534,0,0,OIF:SA:70:1380,Europe/Paris,,OIF, +OIF:SP:88:300,1,"Lemoine",48.985449,2.615969,0,0,OIF:SA:7:10310,Europe/Paris,,OIF, +OIF:SP:88:301,1,"Lenfant",48.982952,2.611614,0,0,OIF:SA:88:301,Europe/Paris,,OIF, +OIF:SP:88:302,1,"Lenfant",48.983006,2.611505,0,0,OIF:SA:88:301,Europe/Paris,,OIF, +OIF:SP:88:303,1,"Lilas",48.961565,2.603011,0,0,OIF:SA:53:2516,Europe/Paris,,OIF, +OIF:SP:88:305,1,"Mairie",48.984174,2.619185,0,0,OIF:SA:53:2335,Europe/Paris,,OIF, +OIF:SP:88:306,1,"Martyrs de Chateaubriant",48.960623,2.60242,0,0,OIF:SA:53:2327,Europe/Paris,,OIF, +OIF:SP:88:307,1,"Martyrs de Chateaubriant",48.959707,2.601937,0,0,OIF:SA:53:2327,Europe/Paris,,OIF, +OIF:SP:88:312,1,"Môquet",48.975487,2.632666,0,0,OIF:SA:53:2345,Europe/Paris,,OIF, +OIF:SP:88:313,1,"Môquet",48.975578,2.632475,0,0,OIF:SA:53:2345,Europe/Paris,,OIF, +OIF:SP:88:314,1,"Moulin à Vent",48.979948,2.623844,0,0,OIF:SA:53:2353,Europe/Paris,,OIF, +OIF:SP:88:315,1,"Moulin à Vent",48.980227,2.623696,0,0,OIF:SA:53:2353,Europe/Paris,,OIF, +OIF:SP:88:324,1,"L'Orme aux Bergers",48.983641,2.620561,0,0,OIF:SA:7:10334,Europe/Paris,,OIF, +OIF:SP:88:327,1,"Pasteur",48.958564,2.598479,0,0,OIF:SA:7:10337,Europe/Paris,,OIF, +OIF:SP:88:328,1,"Pasteur",48.958565,2.59796,0,0,OIF:SA:7:10337,Europe/Paris,,OIF, +OIF:SP:88:339,1,"Place Melun",48.9601,2.590721,0,0,OIF:SA:7:10348,Europe/Paris,,OIF, +OIF:SP:88:340,1,"Place Melun",48.960487,2.590245,0,0,OIF:SA:7:10348,Europe/Paris,,OIF, +OIF:SP:88:343,1,"Prévert",48.98466,2.618819,0,0,OIF:SA:7:10353,Europe/Paris,,OIF, +OIF:SP:88:345,1,"Mitry Claye RER B",48.975811,2.64318,0,0,OIF:SA:8727152,Europe/Paris,,OIF, +OIF:SP:88:350,1,"Vaillant Couturier",48.983482,2.615412,0,0,OIF:SA:53:2117,Europe/Paris,,OIF, +OIF:SP:88:351,1,"Vaillant Couturier",48.983771,2.614786,0,0,OIF:SA:53:2117,Europe/Paris,,OIF, +OIF:SP:88:359,1,"Voltaire",48.958995,2.594441,0,0,OIF:SA:7:10371,Europe/Paris,,OIF, +OIF:SP:88:360,1,"Voltaire",48.958915,2.594414,0,0,OIF:SA:7:10371,Europe/Paris,,OIF, +OIF:SP:88:372,1,"Rue du 26 Août 1944",49.071249,2.810208,0,0,OIF:SA:6:159,Europe/Paris,,OIF, +OIF:SP:88:373,1,"Rue de Condé",49.073337,2.820513,0,0,OIF:SA:6:163,Europe/Paris,,OIF, +OIF:SP:88:374,1,"Église",49.070113,2.817788,0,0,OIF:SA:88:374,Europe/Paris,,OIF, +OIF:SP:88:375,1,"Église",49.070417,2.818365,0,0,OIF:SA:88:374,Europe/Paris,,OIF, +OIF:SP:88:376,1,"Gros Merisier",49.073725,2.824647,0,0,OIF:SA:6:166,Europe/Paris,,OIF, +OIF:SP:88:377,1,"Hildevert",49.070954,2.816497,0,0,OIF:SA:6:167,Europe/Paris,,OIF, +OIF:SP:88:378,1,"Hildevert",49.070792,2.816618,0,0,OIF:SA:6:167,Europe/Paris,,OIF, +OIF:SP:88:379,1,"Jeannine Pernette",49.070033,2.815421,0,0,OIF:SA:6:168,Europe/Paris,,OIF, +OIF:SP:88:380,1,"Jeannine Pernette",49.070214,2.815163,0,0,OIF:SA:6:168,Europe/Paris,,OIF, +OIF:SP:88:381,1,"Beaupré",49.081583,2.668827,0,0,OIF:SA:88:381,Europe/Paris,,OIF, +OIF:SP:88:382,1,"Froids Vents",49.078193,2.675918,0,0,OIF:SA:6:173,Europe/Paris,,OIF, +OIF:SP:88:383,1,"Froids Vents",49.078031,2.676095,0,0,OIF:SA:6:173,Europe/Paris,,OIF, +OIF:SP:88:384,1,"Guincourt",49.079573,2.674245,0,0,OIF:SA:6:175,Europe/Paris,,OIF, +OIF:SP:88:385,1,"Guincourt",49.079736,2.673904,0,0,OIF:SA:6:175,Europe/Paris,,OIF, +OIF:SP:88:386,1,"La Jalaise",49.071072,2.67739,0,0,OIF:SA:6:177,Europe/Paris,,OIF, +OIF:SP:88:387,1,"La Jalaise",49.071288,2.677487,0,0,OIF:SA:6:177,Europe/Paris,,OIF, +OIF:SP:88:388,1,"Mairie",49.075032,2.675296,0,0,OIF:SA:6:179,Europe/Paris,,OIF, +OIF:SP:88:389,1,"Mairie",49.075023,2.675419,0,0,OIF:SA:6:179,Europe/Paris,,OIF, +OIF:SP:88:396,1,"Les Deux Cèdres",49.002138,2.528576,0,0,OIF:SA:59:3666650,Europe/Paris,,OIF, +OIF:SP:88:397,1,"Les Deux Cèdres",49.001878,2.528042,0,0,OIF:SA:59:3666650,Europe/Paris,,OIF, +OIF:SP:88:412,1,"Entretien Nord",49.011827,2.51633,0,0,OIF:SA:20:480,Europe/Paris,,OIF, +OIF:SP:88:413,1,"Entretien Nord",49.012024,2.516481,0,0,OIF:SA:20:480,Europe/Paris,,OIF, +OIF:SP:88:418,1,"Marguilliers",48.994498,2.523972,0,0,OIF:SA:8798212,Europe/Paris,,OIF, +OIF:SP:88:419,1,"Marguilliers",48.994661,2.523427,0,0,OIF:SA:8798212,Europe/Paris,,OIF, +OIF:SP:88:420,1,"Orangerie",49.002574,2.519904,0,0,OIF:SA:7:10446,Europe/Paris,,OIF, +OIF:SP:88:421,1,"Orangerie",49.002835,2.519795,0,0,OIF:SA:7:10446,Europe/Paris,,OIF, +OIF:SP:88:426,1,"Vergers",48.998239,2.516419,0,0,OIF:SA:7:10452,Europe/Paris,,OIF, +OIF:SP:88:427,1,"Vergers",48.998338,2.516447,0,0,OIF:SA:7:10452,Europe/Paris,,OIF, +OIF:SP:88:428,1,"Roissy - Zone Technique",49.010786,2.532474,0,0,OIF:SA:20:482,Europe/Paris,,OIF, +OIF:SP:88:429,1,"Roissy - Zone Technique",49.011512,2.5332,0,0,OIF:SA:20:482,Europe/Paris,,OIF, +OIF:SP:88:430,1,"Collège Evariste Gallois",48.945411,2.51947,0,0,OIF:SA:59:3682068,Europe/Paris,,OIF, +OIF:SP:88:431,1,"Collège Evariste Gallois",48.9455,2.519811,0,0,OIF:SA:59:3682068,Europe/Paris,,OIF, +OIF:SP:88:432,1,"Sevran Beaudottes RER B",48.947163,2.525084,0,0,OIF:SA:8727144,Europe/Paris,,OIF, +OIF:SP:88:433,1,"Cimetière",48.939606,2.524729,0,0,OIF:SA:59:3682064,Europe/Paris,,OIF, +OIF:SP:88:434,1,"Cimetière",48.939643,2.52417,0,0,OIF:SA:59:3682064,Europe/Paris,,OIF, +OIF:SP:88:437,1,"Gaston Bussière",48.938242,2.529267,0,0,OIF:SA:59:3682062,Europe/Paris,,OIF, +OIF:SP:88:438,1,"Gaston Bussière",48.93736,2.529959,0,0,OIF:SA:59:3682062,Europe/Paris,,OIF, +OIF:SP:88:44,1,"Gros Saule",48.949437,2.519198,0,0,OIF:SA:7:10042,Europe/Paris,,OIF, +OIF:SP:88:441,1,"Mère Thérèsa",48.938023,2.531394,0,0,OIF:SA:59:3682061,Europe/Paris,,OIF, +OIF:SP:88:442,1,"La Paix",48.939863,2.515235,0,0,OIF:SA:70:14342,Europe/Paris,,OIF, +OIF:SP:88:443,1,"La Paix",48.939713,2.513693,0,0,OIF:SA:70:14342,Europe/Paris,,OIF, +OIF:SP:88:444,1,"Primevères",48.940064,2.519192,0,0,OIF:SA:70:25507,Europe/Paris,,OIF, +OIF:SP:88:445,1,"Primevères",48.940055,2.519178,0,0,OIF:SA:70:25507,Europe/Paris,,OIF, +OIF:SP:88:446,1,"Sevran Livry RER B",48.935851,2.535096,0,0,OIF:SA:8727142,Europe/Paris,,OIF, +OIF:SP:88:447,1,"Centre",49.035617,2.6945,0,0,OIF:SA:6:213,Europe/Paris,,OIF, +OIF:SP:88:448,1,"Centre",49.035625,2.694774,0,0,OIF:SA:6:213,Europe/Paris,,OIF, +OIF:SP:88:449,1,"Église",49.036424,2.692141,0,0,OIF:SA:88:449,Europe/Paris,,OIF, +OIF:SP:88:45,1,"Gros Saule",48.949418,2.520057,0,0,OIF:SA:7:10042,Europe/Paris,,OIF, +OIF:SP:88:450,1,"Église",49.03656,2.691636,0,0,OIF:SA:88:449,Europe/Paris,,OIF, +OIF:SP:88:451,1,"Avenue de la Gare",49.033932,2.695992,0,0,OIF:SA:6:220,Europe/Paris,,OIF, +OIF:SP:88:452,1,"Avenue de la Gare",49.033896,2.696183,0,0,OIF:SA:6:220,Europe/Paris,,OIF, +OIF:SP:88:453,1,"Gare Saint-Mard",49.032378,2.698796,0,0,OIF:SA:8727153,Europe/Paris,,OIF, +OIF:SP:88:454,1,"Les Tournelles",49.039568,2.692463,0,0,OIF:SA:6:225,Europe/Paris,,OIF, +OIF:SP:88:455,1,"Les Tournelles",49.039612,2.692778,0,0,OIF:SA:6:225,Europe/Paris,,OIF, +OIF:SP:88:456,1,"Rue des Bouleaux",49.080132,2.792711,0,0,OIF:SA:6:230,Europe/Paris,,OIF, +OIF:SP:88:457,1,"Centre Commerciale",49.074811,2.788328,0,0,OIF:SA:88:457,Europe/Paris,,OIF, +OIF:SP:88:458,1,"Centre Commerciale",49.075469,2.787746,0,0,OIF:SA:88:457,Europe/Paris,,OIF, +OIF:SP:88:459,1,"Les Écoles",49.073188,2.792212,0,0,OIF:SA:88:459,Europe/Paris,,OIF, +OIF:SP:88:46,1,"HLM",48.944942,2.508594,0,0,OIF:SA:7:10044,Europe/Paris,,OIF, +OIF:SP:88:460,1,"Les Écoles",49.072931,2.793715,0,0,OIF:SA:88:459,Europe/Paris,,OIF, +OIF:SP:88:461,1,"Les Frênes",49.083568,2.789568,0,0,OIF:SA:6:235,Europe/Paris,,OIF, +OIF:SP:88:462,1,"Mairie",49.069783,2.801346,0,0,OIF:SA:6:237,Europe/Paris,,OIF, +OIF:SP:88:463,1,"Mairie",49.069782,2.801592,0,0,OIF:SA:6:237,Europe/Paris,,OIF, +OIF:SP:88:464,1,"Maisonneuve",49.071578,2.797272,0,0,OIF:SA:6:239,Europe/Paris,,OIF, +OIF:SP:88:465,1,"Maisonneuve",49.071713,2.797233,0,0,OIF:SA:6:239,Europe/Paris,,OIF, +OIF:SP:88:466,1,"Moulin à Vent",49.071061,2.805392,0,0,OIF:SA:6:241,Europe/Paris,,OIF, +OIF:SP:88:467,1,"Moulin à Vent",49.071152,2.805078,0,0,OIF:SA:6:241,Europe/Paris,,OIF, +OIF:SP:88:468,1,"Les Ormes",49.081631,2.79096,0,0,OIF:SA:6:243,Europe/Paris,,OIF, +OIF:SP:88:469,1,"Les Ormes",49.081946,2.790662,0,0,OIF:SA:6:243,Europe/Paris,,OIF, +OIF:SP:88:470,1,"Les Sources",49.07651,2.7906,0,0,OIF:SA:6:247,Europe/Paris,,OIF, +OIF:SP:88:471,1,"Les Sources",49.076341,2.790202,0,0,OIF:SA:6:247,Europe/Paris,,OIF, +OIF:SP:88:472,1,"Stade",49.078277,2.793776,0,0,OIF:SA:6:249,Europe/Paris,,OIF, +OIF:SP:88:473,1,"Stade",49.077682,2.794331,0,0,OIF:SA:6:249,Europe/Paris,,OIF, +OIF:SP:88:474,1,"Rue de l'Yonne",49.068126,2.804613,0,0,OIF:SA:88:474,Europe/Paris,,OIF, +OIF:SP:88:475,1,"Rue de l'Yonne",49.068127,2.804217,0,0,OIF:SA:88:474,Europe/Paris,,OIF, +OIF:SP:88:476,1,"Église",49.039695,2.806639,0,0,OIF:SA:47:15015,Europe/Paris,,OIF, +OIF:SP:88:477,1,"Ferme de l'Etrille",49.037701,2.801727,0,0,OIF:SA:88:477,Europe/Paris,,OIF, +OIF:SP:88:478,1,"Ferme de l'Etrille",49.037699,2.802233,0,0,OIF:SA:88:477,Europe/Paris,,OIF, +OIF:SP:88:479,1,"Logis Vert",49.042498,2.809097,0,0,OIF:SA:6:259,Europe/Paris,,OIF, +OIF:SP:88:480,1,"Logis Vert",49.042317,2.809246,0,0,OIF:SA:6:259,Europe/Paris,,OIF, +OIF:SP:88:488,1,"Aéroville Belle Borne",48.989499,2.52547,0,0,OIF:SA:7:10485,Europe/Paris,,OIF, +OIF:SP:88:489,1,"Aéroville",48.991011,2.524287,0,0,OIF:SA:11:259,Europe/Paris,,OIF, +OIF:SP:88:49,1,"Lycée d'Aulnay",48.939575,2.509613,0,0,OIF:SA:70:11588,Europe/Paris,,OIF, +OIF:SP:88:490,1,"Aéroville",48.990975,2.524028,0,0,OIF:SA:11:259,Europe/Paris,,OIF, +OIF:SP:88:494,1,"Rue de la Belle Borne",48.989726,2.529595,0,0,OIF:SA:59:3666699,Europe/Paris,,OIF, +OIF:SP:88:495,1,"Rue de la Belle Borne",48.989654,2.529581,0,0,OIF:SA:59:3666699,Europe/Paris,,OIF, +OIF:SP:88:499,1,"Blum",48.948828,2.56983,0,0,OIF:SA:7:10494,Europe/Paris,,OIF, +OIF:SP:88:5,1,"Arts",48.942143,2.504929,0,0,OIF:SA:7:10005,Europe/Paris,,OIF, +OIF:SP:88:50,1,"Lycée d'Aulnay",48.939576,2.508809,0,0,OIF:SA:70:11588,Europe/Paris,,OIF, +OIF:SP:88:500,1,"Blum",48.948577,2.569584,0,0,OIF:SA:7:10494,Europe/Paris,,OIF, +OIF:SP:88:501,1,"Briand",48.955115,2.580898,0,0,OIF:SA:7:10496,Europe/Paris,,OIF, +OIF:SP:88:502,1,"Briand",48.9547,2.581279,0,0,OIF:SA:7:10496,Europe/Paris,,OIF, +OIF:SP:88:503,1,"Brossolette",48.95001,2.571882,0,0,OIF:SA:7:10498,Europe/Paris,,OIF, +OIF:SP:88:504,1,"Brossolette",48.949459,2.573599,0,0,OIF:SA:7:10498,Europe/Paris,,OIF, +OIF:SP:88:507,1,"Lacroix",48.988469,2.545061,0,0,OIF:SA:7:10500,Europe/Paris,,OIF, +OIF:SP:88:508,1,"Lacroix",48.988954,2.545145,0,0,OIF:SA:7:10500,Europe/Paris,,OIF, +OIF:SP:88:509,1,"Cargo Centre",48.99816,2.527031,0,0,OIF:SA:7:10502,Europe/Paris,,OIF, +OIF:SP:88:510,1,"Cargo Centre",48.998576,2.525216,0,0,OIF:SA:7:10502,Europe/Paris,,OIF, +OIF:SP:88:514,1,"Cité des Douaniers",48.949902,2.576658,0,0,OIF:SA:59:5747136,Europe/Paris,,OIF, +OIF:SP:88:515,1,"Cité des Douaniers",48.949732,2.576425,0,0,OIF:SA:59:5747136,Europe/Paris,,OIF, +OIF:SP:88:516,1,"Rue du Châpitre",49.002522,2.535666,0,0,OIF:SA:7:10509,Europe/Paris,,OIF, +OIF:SP:88:517,1,"Rue du Châpitre",49.002532,2.534846,0,0,OIF:SA:7:10509,Europe/Paris,,OIF, +OIF:SP:88:518,1,"Cimetière",48.984959,2.55298,0,0,OIF:SA:70:30142,Europe/Paris,,OIF, +OIF:SP:88:52,1,"Lenglen",48.951675,2.513434,0,0,OIF:SA:7:10050,Europe/Paris,,OIF, +OIF:SP:88:521,1,"Cottages",48.965833,2.568965,0,0,OIF:SA:88:521,Europe/Paris,,OIF, +OIF:SP:88:522,1,"Cottages",48.966714,2.56845,0,0,OIF:SA:88:521,Europe/Paris,,OIF, +OIF:SP:88:525,1,"Cruppet",48.978007,2.556337,0,0,OIF:SA:70:13321,Europe/Paris,,OIF, +OIF:SP:88:526,1,"Cruppet",48.977926,2.556377,0,0,OIF:SA:70:13321,Europe/Paris,,OIF, +OIF:SP:88:53,1,"Lenglen",48.951036,2.513977,0,0,OIF:SA:7:10050,Europe/Paris,,OIF, +OIF:SP:88:531,1,"Foyer des Bruyères",48.981431,2.555832,0,0,OIF:SA:8798211,Europe/Paris,,OIF, +OIF:SP:88:532,1,"Foyer des Bruyères",48.981396,2.555723,0,0,OIF:SA:8798211,Europe/Paris,,OIF, +OIF:SP:88:536,1,"Hub Postal",48.99114,2.544116,0,0,OIF:SA:70:13106,Europe/Paris,,OIF, +OIF:SP:88:537,1,"IUT",48.975808,2.559385,0,0,OIF:SA:70:16791,Europe/Paris,,OIF, +OIF:SP:88:538,1,"IUT",48.975277,2.559683,0,0,OIF:SA:70:16791,Europe/Paris,,OIF, +OIF:SP:88:539,1,"Jaurès",48.951596,2.583202,0,0,OIF:SA:88:539,Europe/Paris,,OIF, +OIF:SP:88:541,1,"Jeune Fille",48.994035,2.526838,0,0,OIF:SA:88:541,Europe/Paris,,OIF, +OIF:SP:88:542,1,"Jeune Fille",48.993937,2.526346,0,0,OIF:SA:88:541,Europe/Paris,,OIF, +OIF:SP:88:545,1,"LEP Boucher",48.950464,2.578857,0,0,OIF:SA:88:545,Europe/Paris,,OIF, +OIF:SP:88:546,1,"LEP Boucher",48.950454,2.579321,0,0,OIF:SA:88:545,Europe/Paris,,OIF, +OIF:SP:88:548,1,"Marronniers",48.959163,2.57883,0,0,OIF:SA:7:10539,Europe/Paris,,OIF, +OIF:SP:88:551,1,"Maison de Retraite",48.953014,2.566342,0,0,OIF:SA:70:23392,Europe/Paris,,OIF, +OIF:SP:88:552,1,"Maison de Retraite",48.953041,2.566179,0,0,OIF:SA:70:23392,Europe/Paris,,OIF, +OIF:SP:88:56,1,"Lapin Sauté",48.943695,2.506858,0,0,OIF:SA:7:10054,Europe/Paris,,OIF, +OIF:SP:88:560,1,"La Paix",48.954804,2.565545,0,0,OIF:SA:7:10551,Europe/Paris,,OIF, +OIF:SP:88:561,1,"La Paix",48.954696,2.565163,0,0,OIF:SA:7:10551,Europe/Paris,,OIF, +OIF:SP:88:565,1,"Pavé",48.986709,2.533557,0,0,OIF:SA:70:12410,Europe/Paris,,OIF, +OIF:SP:88:566,1,"Pavé",48.987485,2.532044,0,0,OIF:SA:70:12410,Europe/Paris,,OIF, +OIF:SP:88:57,1,"Lapin Sauté",48.94399,2.507582,0,0,OIF:SA:7:10054,Europe/Paris,,OIF, +OIF:SP:88:570,1,"Place Henri Barbusse",48.961525,2.570775,0,0,OIF:SA:70:15415,Europe/Paris,,OIF, +OIF:SP:88:571,1,"Place Henri Barbusse",48.961777,2.570557,0,0,OIF:SA:70:15415,Europe/Paris,,OIF, +OIF:SP:88:572,1,"Poste",48.983538,2.553889,0,0,OIF:SA:70:30676,Europe/Paris,,OIF, +OIF:SP:88:573,1,"Poste",48.983618,2.554012,0,0,OIF:SA:70:30676,Europe/Paris,,OIF, +OIF:SP:88:579,1,"Petit Tremblay",48.984236,2.550287,0,0,OIF:SA:70:13839,Europe/Paris,,OIF, +OIF:SP:88:58,1,"Matisse Delacroix",48.953924,2.499113,0,0,OIF:SA:70:15404,Europe/Paris,,OIF, +OIF:SP:88:585,1,"République",48.949912,2.566861,0,0,OIF:SA:70:19917,Europe/Paris,,OIF, +OIF:SP:88:586,1,"République",48.950065,2.566629,0,0,OIF:SA:70:19917,Europe/Paris,,OIF, +OIF:SP:88:589,1,"Ronsard",48.957036,2.563344,0,0,OIF:SA:7:10578,Europe/Paris,,OIF, +OIF:SP:88:59,1,"Matisse Delacroix",48.954023,2.498895,0,0,OIF:SA:70:15404,Europe/Paris,,OIF, +OIF:SP:88:590,1,"Ronsard",48.956992,2.563221,0,0,OIF:SA:7:10578,Europe/Paris,,OIF, +OIF:SP:88:591,1,"Aéroport CDG1 RER B",49.010109,2.55956,0,0,OIF:SA:8727146,Europe/Paris,,OIF, +OIF:SP:88:595,1,"Saint-Pères",48.982912,2.551947,0,0,OIF:SA:7:10584,Europe/Paris,,OIF, +OIF:SP:88:596,1,"Terminal 2 - Route de Service",49.00365,2.558412,0,0,OIF:SA:70:23366,Europe/Paris,,OIF, +OIF:SP:88:597,1,"Rue des Rossignols",48.991178,2.526801,0,0,OIF:SA:88:597,Europe/Paris,,OIF, +OIF:SP:88:598,1,"Rue des Rossignols",48.991178,2.526678,0,0,OIF:SA:88:597,Europe/Paris,,OIF, +OIF:SP:88:6,1,"Arts",48.942035,2.505024,0,0,OIF:SA:7:10005,Europe/Paris,,OIF, +OIF:SP:88:600,1,"Rue des Vignes",49.004568,2.548035,0,0,OIF:SA:59:3666609,Europe/Paris,,OIF, +OIF:SP:88:601,1,"Rue des Vignes",49.004729,2.548336,0,0,OIF:SA:59:3666609,Europe/Paris,,OIF, +OIF:SP:88:602,1,"Vert Galant RER B",48.945451,2.568656,0,0,OIF:SA:8727143,Europe/Paris,,OIF, +OIF:SP:88:604,1,"Centre",49.033855,2.639437,0,0,OIF:SA:6:278,Europe/Paris,,OIF, +OIF:SP:88:605,1,"Centre",49.033729,2.639532,0,0,OIF:SA:6:278,Europe/Paris,,OIF, +OIF:SP:88:606,1,"Jeu de Paume",49.03303,2.635209,0,0,OIF:SA:6:282,Europe/Paris,,OIF, +OIF:SP:88:607,1,"Jeu de Paume",49.032993,2.635715,0,0,OIF:SA:6:282,Europe/Paris,,OIF, +OIF:SP:88:611,1,"A.France",48.946668,2.60962,0,0,OIF:SA:53:2451,Europe/Paris,,OIF, +OIF:SP:88:614,1,"Balzac",48.93922,2.612378,0,0,OIF:SA:53:2453,Europe/Paris,,OIF, +OIF:SP:88:616,1,"Béarn",48.949951,2.612025,0,0,OIF:SA:7:10602,Europe/Paris,,OIF, +OIF:SP:88:622,1,"Buffon",48.942794,2.613584,0,0,OIF:SA:53:2481,Europe/Paris,,OIF, +OIF:SP:88:625,1,"Cèdres",48.938822,2.605623,0,0,OIF:SA:53:2457,Europe/Paris,,OIF, +OIF:SP:88:636,1,"La Couronne",48.939219,2.609158,0,0,OIF:SA:53:2155,Europe/Paris,,OIF, +OIF:SP:88:638,1,"Centre Ville",48.939295,2.614861,0,0,OIF:SA:53:2625,Europe/Paris,,OIF, +OIF:SP:88:647,1,"Grillons",48.944633,2.603402,0,0,OIF:SA:7:10631,Europe/Paris,,OIF, +OIF:SP:88:649,1,"Laroche",48.950379,2.609694,0,0,OIF:SA:88:649,Europe/Paris,,OIF, +OIF:SP:88:658,1,"Piétrasanta",48.940553,2.615277,0,0,OIF:SA:7:10639,Europe/Paris,,OIF, +OIF:SP:88:660,1,"Marché",48.951664,2.601951,0,0,OIF:SA:7:10641,Europe/Paris,,OIF, +OIF:SP:88:661,1,"Montesquieu",48.941063,2.604229,0,0,OIF:SA:7:10642,Europe/Paris,,OIF, +OIF:SP:88:663,1,"Normandie Niémen",48.950125,2.614742,0,0,OIF:SA:7:10644,Europe/Paris,,OIF, +OIF:SP:88:664,1,"Normandie Niémen",48.950555,2.615085,0,0,OIF:SA:7:10644,Europe/Paris,,OIF, +OIF:SP:88:665,1,"Ormes",48.952761,2.613323,0,0,OIF:SA:7:10646,Europe/Paris,,OIF, +OIF:SP:88:674,1,"Villeparisis Mitry le Neuf RER B",48.953701,2.603257,0,0,OIF:SA:8727151,Europe/Paris,,OIF, +OIF:SP:88:677,1,"Saint-Denis",48.947852,2.602491,0,0,OIF:SA:7:10655,Europe/Paris,,OIF, +OIF:SP:88:679,1,"Tilleuls",48.952478,2.615368,0,0,OIF:SA:7:10657,Europe/Paris,,OIF, +OIF:SP:88:68,1,"Savigny",48.948384,2.514473,0,0,OIF:SA:7:10066,Europe/Paris,,OIF, +OIF:SP:88:680,1,"Verdun",48.947921,2.599912,0,0,OIF:SA:7:10658,Europe/Paris,,OIF, +OIF:SP:88:69,1,"Schuman",48.948433,2.517407,0,0,OIF:SA:7:10067,Europe/Paris,,OIF, +OIF:SP:88:693,1,"Claude Nicolas Ledoux",48.969254,2.546308,0,0,OIF:SA:7:10672,Europe/Paris,,OIF, +OIF:SP:88:694,1,"Claude Nicolas Ledoux",48.968931,2.54557,0,0,OIF:SA:7:10672,Europe/Paris,,OIF, +OIF:SP:88:697,1,"Cimetière de Villepinte ZI",48.966234,2.541245,0,0,OIF:SA:7:10676,Europe/Paris,,OIF, +OIF:SP:88:698,1,"Cimetière de Villepinte ZI",48.966422,2.541301,0,0,OIF:SA:7:10676,Europe/Paris,,OIF, +OIF:SP:88:7,1,"Avenue de Savigny",48.94492,2.51689,0,0,OIF:SA:88:7,Europe/Paris,,OIF, +OIF:SP:88:703,1,"Fontaine Mallet",48.9527,2.551426,0,0,OIF:SA:70:23378,Europe/Paris,,OIF, +OIF:SP:88:704,1,"Fontaine Mallet",48.952601,2.551494,0,0,OIF:SA:70:23378,Europe/Paris,,OIF, +OIF:SP:88:705,1,"Fougères",48.956215,2.545791,0,0,OIF:SA:70:10479,Europe/Paris,,OIF, +OIF:SP:88:706,1,"Fougères",48.95607,2.546104,0,0,OIF:SA:70:10479,Europe/Paris,,OIF, +OIF:SP:88:707,1,"Georges Sachet",48.954999,2.547397,0,0,OIF:SA:70:10754,Europe/Paris,,OIF, +OIF:SP:88:708,1,"Georges Sachet",48.953864,2.548948,0,0,OIF:SA:70:10754,Europe/Paris,,OIF, +OIF:SP:88:713,1,"Jussieu",48.953224,2.549695,0,0,OIF:SA:70:15160,Europe/Paris,,OIF, +OIF:SP:88:714,1,"Jussieu",48.952738,2.550089,0,0,OIF:SA:70:15160,Europe/Paris,,OIF, +OIF:SP:88:715,1,"Labé",48.967697,2.547626,0,0,OIF:SA:7:10694,Europe/Paris,,OIF, +OIF:SP:88:716,1,"Labé",48.968111,2.547204,0,0,OIF:SA:7:10694,Europe/Paris,,OIF, +OIF:SP:88:717,1,"Laurencin",48.966597,2.549232,0,0,OIF:SA:7:10696,Europe/Paris,,OIF, +OIF:SP:88:718,1,"Laurencin",48.966687,2.549273,0,0,OIF:SA:7:10696,Europe/Paris,,OIF, +OIF:SP:88:72,1,"Soleil Levant",48.940474,2.502713,0,0,OIF:SA:70:13719,Europe/Paris,,OIF, +OIF:SP:88:728,1,"Monnet",48.964515,2.547558,0,0,OIF:SA:7:10707,Europe/Paris,,OIF, +OIF:SP:88:729,1,"Les Mousseaux",48.962281,2.540711,0,0,OIF:SA:70:13264,Europe/Paris,,OIF, +OIF:SP:88:73,1,"Soleil Levant",48.940133,2.502835,0,0,OIF:SA:70:13719,Europe/Paris,,OIF, +OIF:SP:88:730,1,"Les Mousseaux",48.96237,2.540862,0,0,OIF:SA:70:13264,Europe/Paris,,OIF, +OIF:SP:88:733,1,"Parmentier",48.947729,2.561584,0,0,OIF:SA:7:10712,Europe/Paris,,OIF, +OIF:SP:88:734,1,"Parmentier",48.947576,2.56187,0,0,OIF:SA:7:10712,Europe/Paris,,OIF, +OIF:SP:88:740,1,"Parc de la Noue",48.958607,2.544518,0,0,OIF:SA:70:10958,Europe/Paris,,OIF, +OIF:SP:88:741,1,"Parc de la Noue",48.958581,2.54434,0,0,OIF:SA:70:10958,Europe/Paris,,OIF, +OIF:SP:88:742,1,"Poste",48.951276,2.55853,0,0,OIF:SA:7:10721,Europe/Paris,,OIF, +OIF:SP:88:743,1,"Poste",48.951555,2.558162,0,0,OIF:SA:7:10721,Europe/Paris,,OIF, +OIF:SP:88:744,1,"Place René Droulot",48.954048,2.556194,0,0,OIF:SA:7:10723,Europe/Paris,,OIF, +OIF:SP:88:745,1,"Place René Droulot",48.954121,2.555881,0,0,OIF:SA:7:10723,Europe/Paris,,OIF, +OIF:SP:88:746,1,"La Roseraie",48.955178,2.552542,0,0,OIF:SA:7:10725,Europe/Paris,,OIF, +OIF:SP:88:747,1,"La Roseraie",48.95533,2.553088,0,0,OIF:SA:7:10725,Europe/Paris,,OIF, +OIF:SP:88:748,1,"Schuman",48.965471,2.545842,0,0,OIF:SA:7:10727,Europe/Paris,,OIF, +OIF:SP:88:75,1,"Saint-Paul",48.947133,2.509284,0,0,OIF:SA:7:10073,Europe/Paris,,OIF, +OIF:SP:88:751,1,"Sisley",48.964771,2.55018,0,0,OIF:SA:7:10730,Europe/Paris,,OIF, +OIF:SP:88:756,1,"Route de Tremblay",48.963822,2.537633,0,0,OIF:SA:70:16651,Europe/Paris,,OIF, +OIF:SP:88:757,1,"Route de Tremblay",48.964191,2.537689,0,0,OIF:SA:70:16651,Europe/Paris,,OIF, +OIF:SP:88:76,1,"Tennis",48.95703,2.494838,0,0,OIF:SA:70:1759,Europe/Paris,,OIF, +OIF:SP:88:761,1,"Léon Blum",48.981596,2.429214,0,0,OIF:SA:11:7,Europe/Paris,,OIF, +OIF:SP:88:762,1,"Léon Blum",48.981606,2.428449,0,0,OIF:SA:11:7,Europe/Paris,,OIF, +OIF:SP:88:763,1,"Mairie Annexe",48.980575,2.424952,0,0,OIF:SA:88:763,Europe/Paris,,OIF, +OIF:SP:88:764,1,"Mairie Annexe",48.979336,2.422902,0,0,OIF:SA:88:763,Europe/Paris,,OIF, +OIF:SP:88:765,1,"Rond-Point du Christ",48.975931,2.422228,0,0,OIF:SA:88:765,Europe/Paris,,OIF, +OIF:SP:88:766,1,"Rond-Point du Christ",48.97594,2.421941,0,0,OIF:SA:88:765,Europe/Paris,,OIF, +OIF:SP:88:769,1,"Avenue du Large",49.099126,2.510024,0,0,OIF:SA:88:769,Europe/Paris,,OIF, +OIF:SP:88:77,1,"Tennis",48.956877,2.494878,0,0,OIF:SA:70:1759,Europe/Paris,,OIF, +OIF:SP:88:770,1,"Avenue du Large",49.099262,2.508944,0,0,OIF:SA:88:769,Europe/Paris,,OIF, +OIF:SP:88:771,1,"Beaumont",49.102327,2.514797,0,0,OIF:SA:88:771,Europe/Paris,,OIF, +OIF:SP:88:772,1,"Beaumont",49.102165,2.514591,0,0,OIF:SA:88:771,Europe/Paris,,OIF, +OIF:SP:88:773,1,"Bellevue",49.094693,2.49935,0,0,OIF:SA:88:773,Europe/Paris,,OIF, +OIF:SP:88:774,1,"Bellevue",49.094594,2.499063,0,0,OIF:SA:88:773,Europe/Paris,,OIF, +OIF:SP:88:775,1,"Centre Commercial Mairie",49.100168,2.516063,0,0,OIF:SA:88:775,Europe/Paris,,OIF, +OIF:SP:88:776,1,"Centre Commercial Mairie",49.100061,2.515734,0,0,OIF:SA:88:775,Europe/Paris,,OIF, +OIF:SP:88:777,1,"Gendarmerie",49.098941,2.513321,0,0,OIF:SA:88:777,Europe/Paris,,OIF, +OIF:SP:88:778,1,"Gendarmerie",49.099121,2.513377,0,0,OIF:SA:88:777,Europe/Paris,,OIF, +OIF:SP:88:779,1,"Haute Grève",49.096493,2.503666,0,0,OIF:SA:88:779,Europe/Paris,,OIF, +OIF:SP:88:78,1,"Vélodrome",48.953744,2.505853,0,0,OIF:SA:70:3718,Europe/Paris,,OIF, +OIF:SP:88:780,1,"Haute Grève",49.09635,2.503433,0,0,OIF:SA:88:779,Europe/Paris,,OIF, +OIF:SP:88:781,1,"Poteau de Marly",49.094374,2.502414,0,0,OIF:SA:88:781,Europe/Paris,,OIF, +OIF:SP:88:782,1,"Poteau de Marly",49.094527,2.502291,0,0,OIF:SA:88:781,Europe/Paris,,OIF, +OIF:SP:88:783,1,"Rue de l'Épine",49.098666,2.505042,0,0,OIF:SA:88:783,Europe/Paris,,OIF, +OIF:SP:88:784,1,"Rue de l'Épine",49.098585,2.504644,0,0,OIF:SA:88:783,Europe/Paris,,OIF, +OIF:SP:88:785,1,"Survilliers Fosses RER D",49.099507,2.525229,0,0,OIF:SA:8727626,Europe/Paris,,OIF, +OIF:SP:88:786,1,"8 Mai 1945",48.976092,2.409232,0,0,OIF:SA:88:786,Europe/Paris,,OIF, +OIF:SP:88:787,1,"8 Mai 1945",48.975903,2.409491,0,0,OIF:SA:88:786,Europe/Paris,,OIF, +OIF:SP:88:788,1,"Charles de Gaulle Mitterrand",48.974436,2.398554,0,0,OIF:SA:59:4238722,Europe/Paris,,OIF, +OIF:SP:88:789,1,"Charles de Gaulle Mitterrand",48.974795,2.39835,0,0,OIF:SA:59:4238722,Europe/Paris,,OIF, +OIF:SP:88:79,1,"Vélodrome",48.953769,2.507082,0,0,OIF:SA:70:3718,Europe/Paris,,OIF, +OIF:SP:88:790,1,"Georges Brassens",48.974521,2.407564,0,0,OIF:SA:88:790,Europe/Paris,,OIF, +OIF:SP:88:791,1,"Georges Brassens",48.974602,2.407086,0,0,OIF:SA:88:790,Europe/Paris,,OIF, +OIF:SP:88:792,1,"Jacques Decour",48.976791,2.413465,0,0,OIF:SA:88:792,Europe/Paris,,OIF, +OIF:SP:88:793,1,"Jacques Decour",48.977006,2.413233,0,0,OIF:SA:88:792,Europe/Paris,,OIF, +OIF:SP:88:794,1,"La Muette Europe",48.975135,2.415756,0,0,OIF:SA:88:794,Europe/Paris,,OIF, +OIF:SP:88:795,1,"La Muette Europe",48.975333,2.415933,0,0,OIF:SA:88:794,Europe/Paris,,OIF, +OIF:SP:88:796,1,"Garges/Sarcelles RER D",48.977153,2.390544,0,0,OIF:SA:8727619,Europe/Paris,,OIF, +OIF:SP:88:797,1,"Cimetière Hôpital",48.990482,2.452294,0,0,OIF:SA:88:797,Europe/Paris,,OIF, +OIF:SP:88:798,1,"Cimetière Hôpital",48.989907,2.451965,0,0,OIF:SA:88:797,Europe/Paris,,OIF, +OIF:SP:88:799,1,"Cressonnières",48.988265,2.458802,0,0,OIF:SA:11:76,Europe/Paris,,OIF, +OIF:SP:88:8,1,"Avenue de Savigny",48.944838,2.518131,0,0,OIF:SA:88:7,Europe/Paris,,OIF, +OIF:SP:88:800,1,"Cressonnières",48.989011,2.458708,0,0,OIF:SA:11:76,Europe/Paris,,OIF, +OIF:SP:88:801,1,"Place Germain",48.999848,2.428837,0,0,OIF:SA:88:801,Europe/Paris,,OIF, +OIF:SP:88:802,1,"Place Germain",49.000163,2.428701,0,0,OIF:SA:88:801,Europe/Paris,,OIF, +OIF:SP:88:803,1,"Place Gaston Tessier",49.004354,2.423641,0,0,OIF:SA:11:144,Europe/Paris,,OIF, +OIF:SP:88:804,1,"Place Gaston Tessier",49.004165,2.424364,0,0,OIF:SA:11:144,Europe/Paris,,OIF, +OIF:SP:88:805,1,"Hôpital",48.988642,2.44975,0,0,OIF:SA:88:805,Europe/Paris,,OIF, +OIF:SP:88:806,1,"Hôpital",48.988894,2.449327,0,0,OIF:SA:88:805,Europe/Paris,,OIF, +OIF:SP:88:807,1,"Hôtel de Ville",48.986476,2.450086,0,0,OIF:SA:88:807,Europe/Paris,,OIF, +OIF:SP:88:808,1,"Hôtel de Ville",48.986638,2.450073,0,0,OIF:SA:88:807,Europe/Paris,,OIF, +OIF:SP:88:809,1,"Jules Ferry",48.996963,2.430006,0,0,OIF:SA:88:809,Europe/Paris,,OIF, +OIF:SP:88:810,1,"Jules Ferry",48.996854,2.430306,0,0,OIF:SA:88:809,Europe/Paris,,OIF, +OIF:SP:88:811,1,"Lycée René Cassin",48.982707,2.433994,0,0,OIF:SA:59:6673070,Europe/Paris,,OIF, +OIF:SP:88:812,1,"Lycée René Cassin",48.982779,2.43338,0,0,OIF:SA:59:6673070,Europe/Paris,,OIF, +OIF:SP:88:813,1,"Maréchal Foch",49.00078,2.419605,0,0,OIF:SA:88:813,Europe/Paris,,OIF, +OIF:SP:88:814,1,"Maréchal Foch",49.000762,2.419496,0,0,OIF:SA:88:813,Europe/Paris,,OIF, +OIF:SP:88:815,1,"Les Mines",48.984807,2.473349,0,0,OIF:SA:11:116,Europe/Paris,,OIF, +OIF:SP:88:816,1,"Les Mines",48.984834,2.473117,0,0,OIF:SA:11:116,Europe/Paris,,OIF, +OIF:SP:88:817,1,"Patte d'Oie",48.983393,2.468526,0,0,OIF:SA:88:817,Europe/Paris,,OIF, +OIF:SP:88:818,1,"Patte d'Oie",48.983599,2.468622,0,0,OIF:SA:88:817,Europe/Paris,,OIF, +OIF:SP:88:819,1,"Pierre Salvi",48.991775,2.432605,0,0,OIF:SA:11:49,Europe/Paris,,OIF, +OIF:SP:88:820,1,"Pierre Salvi",48.99191,2.432742,0,0,OIF:SA:11:49,Europe/Paris,,OIF, +OIF:SP:88:821,1,"Rue d'Aulnay",48.983842,2.440605,0,0,OIF:SA:88:821,Europe/Paris,,OIF, +OIF:SP:88:822,1,"Rue d'Aulnay",48.983851,2.440919,0,0,OIF:SA:88:821,Europe/Paris,,OIF, +OIF:SP:88:823,1,"Scribe",49.003278,2.420484,0,0,OIF:SA:88:823,Europe/Paris,,OIF, +OIF:SP:88:824,1,"Scribe",49.00326,2.42032,0,0,OIF:SA:88:823,Europe/Paris,,OIF, +OIF:SP:88:825,1,"Salle des Fêtes",48.992575,2.443436,0,0,OIF:SA:11:219,Europe/Paris,,OIF, +OIF:SP:88:826,1,"Salle des Fêtes",48.992296,2.444104,0,0,OIF:SA:11:219,Europe/Paris,,OIF, +OIF:SP:88:827,1,"ZI Arsonval",48.990864,2.457006,0,0,OIF:SA:88:827,Europe/Paris,,OIF, +OIF:SP:88:828,1,"ZI Arsonval",48.991152,2.456378,0,0,OIF:SA:88:827,Europe/Paris,,OIF, +OIF:SP:88:829,1,"Ampère/Chartrel",49.036003,2.456222,0,0,OIF:SA:88:829,Europe/Paris,,OIF, +OIF:SP:88:830,1,"Ampère/Chartrel",49.03549,2.456795,0,0,OIF:SA:88:829,Europe/Paris,,OIF, +OIF:SP:88:831,1,"Calvaire",49.015536,2.469837,0,0,OIF:SA:88:831,Europe/Paris,,OIF, +OIF:SP:88:832,1,"Calvaire",49.01657,2.469061,0,0,OIF:SA:88:831,Europe/Paris,,OIF, +OIF:SP:88:833,1,"Carrefour de l'Europe",49.022577,2.465278,0,0,OIF:SA:88:833,Europe/Paris,,OIF, +OIF:SP:88:834,1,"Carrefour de l'Europe",49.01937,2.464286,0,0,OIF:SA:88:833,Europe/Paris,,OIF, +OIF:SP:88:835,1,"Chapellerie",49.038061,2.455352,0,0,OIF:SA:88:835,Europe/Paris,,OIF, +OIF:SP:88:836,1,"Chapellerie",49.038016,2.455503,0,0,OIF:SA:88:835,Europe/Paris,,OIF, +OIF:SP:88:837,1,"La Charmeuse",49.034413,2.471908,0,0,OIF:SA:88:837,Europe/Paris,,OIF, +OIF:SP:88:838,1,"La Charmeuse",49.034054,2.472085,0,0,OIF:SA:88:837,Europe/Paris,,OIF, +OIF:SP:88:839,1,"Centre de Secours",49.030113,2.459939,0,0,OIF:SA:88:839,Europe/Paris,,OIF, +OIF:SP:88:840,1,"Centre de Secours",49.030346,2.460036,0,0,OIF:SA:88:839,Europe/Paris,,OIF, +OIF:SP:88:841,1,"Descartes",49.038909,2.461177,0,0,OIF:SA:88:841,Europe/Paris,,OIF, +OIF:SP:88:842,1,"Descartes",49.038738,2.461149,0,0,OIF:SA:88:841,Europe/Paris,,OIF, +OIF:SP:88:843,1,"École Gabriel Péri",49.038255,2.467818,0,0,OIF:SA:88:843,Europe/Paris,,OIF, +OIF:SP:88:844,1,"École Gabriel Péri",49.037832,2.467995,0,0,OIF:SA:88:843,Europe/Paris,,OIF, +OIF:SP:88:845,1,"Henri Dunant",49.037136,2.463893,0,0,OIF:SA:88:845,Europe/Paris,,OIF, +OIF:SP:88:846,1,"Henri Dunant",49.036992,2.463838,0,0,OIF:SA:88:845,Europe/Paris,,OIF, +OIF:SP:88:847,1,"Mairie",49.032182,2.47413,0,0,OIF:SA:88:847,Europe/Paris,,OIF, +OIF:SP:88:848,1,"Mairie",49.032039,2.473993,0,0,OIF:SA:88:847,Europe/Paris,,OIF, +OIF:SP:88:849,1,"Marché",49.027748,2.461505,0,0,OIF:SA:88:849,Europe/Paris,,OIF, +OIF:SP:88:850,1,"Marché",49.028206,2.461575,0,0,OIF:SA:88:849,Europe/Paris,,OIF, +OIF:SP:88:851,1,"Marcel Cerdan",49.023005,2.459595,0,0,OIF:SA:88:851,Europe/Paris,,OIF, +OIF:SP:88:852,1,"Montgolfier",49.039011,2.458061,0,0,OIF:SA:88:852,Europe/Paris,,OIF, +OIF:SP:88:853,1,"Montgolfier",49.038993,2.458361,0,0,OIF:SA:88:852,Europe/Paris,,OIF, +OIF:SP:88:854,1,"Les Montagnettes",49.035925,2.470286,0,0,OIF:SA:88:854,Europe/Paris,,OIF, +OIF:SP:88:855,1,"Les Montagnettes",49.03588,2.470163,0,0,OIF:SA:88:854,Europe/Paris,,OIF, +OIF:SP:88:856,1,"Le Moulin",49.011337,2.471916,0,0,OIF:SA:88:856,Europe/Paris,,OIF, +OIF:SP:88:857,1,"Le Moulin",49.011561,2.472218,0,0,OIF:SA:88:856,Europe/Paris,,OIF, +OIF:SP:88:858,1,"Les Olympiades",49.021778,2.456053,0,0,OIF:SA:88:858,Europe/Paris,,OIF, +OIF:SP:88:859,1,"Goussainville RER D",49.024053,2.462754,0,0,OIF:SA:8727624,Europe/Paris,,OIF, +OIF:SP:88:860,1,"Sécurité Sociale",49.025499,2.463358,0,0,OIF:SA:88:860,Europe/Paris,,OIF, +OIF:SP:88:861,1,"Avenue des Tilleuls",49.032927,2.458238,0,0,OIF:SA:88:861,Europe/Paris,,OIF, +OIF:SP:88:862,1,"Avenue des Tilleuls",49.033467,2.458157,0,0,OIF:SA:88:861,Europe/Paris,,OIF, +OIF:SP:88:863,1,"Victor Basch",49.030051,2.475464,0,0,OIF:SA:88:863,Europe/Paris,,OIF, +OIF:SP:88:864,1,"Victor Basch",49.030475,2.474399,0,0,OIF:SA:88:863,Europe/Paris,,OIF, +OIF:SP:88:865,1,"Centre Commercial",49.050221,2.499716,0,0,OIF:SA:88:865,Europe/Paris,,OIF, +OIF:SP:88:866,1,"Copenhague",49.052674,2.500298,0,0,OIF:SA:88:866,Europe/Paris,,OIF, +OIF:SP:88:867,1,"Marie Feuchère",49.045913,2.509258,0,0,OIF:SA:88:867,Europe/Paris,,OIF, +OIF:SP:88:868,1,"Marie Feuchère",49.046011,2.509409,0,0,OIF:SA:88:867,Europe/Paris,,OIF, +OIF:SP:88:869,1,"Parc",49.048145,2.506354,0,0,OIF:SA:6:290,Europe/Paris,,OIF, +OIF:SP:88:870,1,"Parc",49.047687,2.506694,0,0,OIF:SA:6:290,Europe/Paris,,OIF, +OIF:SP:88:871,1,"La Pépinière",49.054461,2.501261,0,0,OIF:SA:88:871,Europe/Paris,,OIF, +OIF:SP:88:872,1,"La Pépinière",49.053795,2.501806,0,0,OIF:SA:88:871,Europe/Paris,,OIF, +OIF:SP:88:873,1,"Louvres RER D",49.049302,2.501422,0,0,OIF:SA:8727625,Europe/Paris,,OIF, +OIF:SP:88:874,1,"Bois Maillard",49.089433,2.508145,0,0,OIF:SA:88:874,Europe/Paris,,OIF, +OIF:SP:88:875,1,"Collège Françoise Dolto",49.085859,2.506245,0,0,OIF:SA:88:875,Europe/Paris,,OIF, +OIF:SP:88:876,1,"Cimetière",49.086702,2.500871,0,0,OIF:SA:88:876,Europe/Paris,,OIF, +OIF:SP:88:877,1,"Cité Jardins",49.091199,2.504812,0,0,OIF:SA:88:877,Europe/Paris,,OIF, +OIF:SP:88:878,1,"Rue des Prés",49.083238,2.504608,0,0,OIF:SA:88:878,Europe/Paris,,OIF, +OIF:SP:88:879,1,"Rue des Prés",49.083031,2.504758,0,0,OIF:SA:88:878,Europe/Paris,,OIF, +OIF:SP:88:880,1,"École de la Garenne",49.084958,2.501891,0,0,OIF:SA:88:880,Europe/Paris,,OIF, +OIF:SP:88:881,1,"Hameau des Cèdres",49.090027,2.501073,0,0,OIF:SA:88:881,Europe/Paris,,OIF, +OIF:SP:88:882,1,"Hameau de Prieuré",49.084469,2.504161,0,0,OIF:SA:88:882,Europe/Paris,,OIF, +OIF:SP:88:883,1,"Mairie",49.078528,2.499258,0,0,OIF:SA:88:883,Europe/Paris,,OIF, +OIF:SP:88:884,1,"Mairie",49.078797,2.49904,0,0,OIF:SA:88:883,Europe/Paris,,OIF, +OIF:SP:88:885,1,"Place du 19 Mars",49.092425,2.502162,0,0,OIF:SA:88:885,Europe/Paris,,OIF, +OIF:SP:88:886,1,"Place Vert Clos",49.080382,2.503094,0,0,OIF:SA:88:886,Europe/Paris,,OIF, +OIF:SP:88:887,1,"Place Vert Clos",49.080041,2.502738,0,0,OIF:SA:88:886,Europe/Paris,,OIF, +OIF:SP:88:888,1,"Salle des Fêtes",49.076219,2.498991,0,0,OIF:SA:88:888,Europe/Paris,,OIF, +OIF:SP:88:889,1,"Salle des Fêtes",49.075743,2.498675,0,0,OIF:SA:88:888,Europe/Paris,,OIF, +OIF:SP:88:890,1,"Général Leclerc",49.057031,2.500654,0,0,OIF:SA:88:890,Europe/Paris,,OIF, +OIF:SP:88:891,1,"Gymnase",49.061355,2.499382,0,0,OIF:SA:88:891,Europe/Paris,,OIF, +OIF:SP:88:892,1,"Gymnase",49.061274,2.499669,0,0,OIF:SA:88:891,Europe/Paris,,OIF, +OIF:SP:88:893,1,"Route de Marly",49.058074,2.500534,0,0,OIF:SA:88:893,Europe/Paris,,OIF, +OIF:SP:88:894,1,"Airapolis",49.006942,2.519373,0,0,OIF:SA:88:894,Europe/Paris,,OIF, +OIF:SP:88:895,1,"Airapolis",49.00678,2.519509,0,0,OIF:SA:88:894,Europe/Paris,,OIF, +OIF:SP:88:896,1,"Passerelle",49.003557,2.511698,0,0,OIF:SA:88:896,Europe/Paris,,OIF, +OIF:SP:88:897,1,"Passerelle",49.003798,2.512505,0,0,OIF:SA:88:896,Europe/Paris,,OIF, +OIF:SP:88:898,1,"Convention",49.007837,2.516234,0,0,OIF:SA:88:898,Europe/Paris,,OIF, +OIF:SP:88:899,1,"Convention",49.007756,2.516179,0,0,OIF:SA:88:898,Europe/Paris,,OIF, +OIF:SP:88:9,1,"Botticelli",48.953237,2.501936,0,0,OIF:SA:70:1401,Europe/Paris,,OIF, +OIF:SP:88:900,1,"Église",48.999638,2.51204,0,0,OIF:SA:88:900,Europe/Paris,,OIF, +OIF:SP:88:901,1,"Église",48.999782,2.512054,0,0,OIF:SA:88:900,Europe/Paris,,OIF, +OIF:SP:88:902,1,"Rue du Noyer",49.003208,2.504431,0,0,OIF:SA:88:902,Europe/Paris,,OIF, +OIF:SP:88:903,1,"Parc Mail 1",49.007644,2.493749,0,0,OIF:SA:88:903,Europe/Paris,,OIF, +OIF:SP:88:904,1,"Parc Mail 2",49.004664,2.490954,0,0,OIF:SA:88:904,Europe/Paris,,OIF, +OIF:SP:88:905,1,"Parc du Moulin",49.004038,2.501647,0,0,OIF:SA:88:905,Europe/Paris,,OIF, +OIF:SP:88:906,1,"Roissy Parc",49.005371,2.506364,0,0,OIF:SA:88:906,Europe/Paris,,OIF, +OIF:SP:88:907,1,"Roissy Parc",49.005542,2.506405,0,0,OIF:SA:88:906,Europe/Paris,,OIF, +OIF:SP:88:908,1,"Village",49.003882,2.516425,0,0,OIF:SA:88:908,Europe/Paris,,OIF, +OIF:SP:88:909,1,"Village",49.004099,2.515962,0,0,OIF:SA:88:908,Europe/Paris,,OIF, +OIF:SP:88:910,1,"Albert Camus",48.977412,2.372182,0,0,OIF:SA:59799,Europe/Paris,,OIF, +OIF:SP:88:911,1,"Albert Camus",48.977556,2.3721,0,0,OIF:SA:59799,Europe/Paris,,OIF, +OIF:SP:88:912,1,"Forum des Cholettes",48.978201,2.376346,0,0,OIF:SA:59801,Europe/Paris,,OIF, +OIF:SP:88:913,1,"Forum des Cholettes",48.978004,2.376305,0,0,OIF:SA:59801,Europe/Paris,,OIF, +OIF:SP:88:914,1,"Les Lochères",48.97845,2.385152,0,0,OIF:SA:59805,Europe/Paris,,OIF, +OIF:SP:88:915,1,"Les Lochères",48.978549,2.384948,0,0,OIF:SA:59805,Europe/Paris,,OIF, +OIF:SP:88:916,1,"Marcel Proust",48.979117,2.380457,0,0,OIF:SA:59803,Europe/Paris,,OIF, +OIF:SP:88:917,1,"Marcel Proust",48.979459,2.379173,0,0,OIF:SA:59803,Europe/Paris,,OIF, +OIF:SP:88:918,1,"Avenue Bocquet",49.010416,2.483143,0,0,OIF:SA:88:918,Europe/Paris,,OIF, +OIF:SP:88:919,1,"Avenue Bocquet",49.010838,2.483431,0,0,OIF:SA:88:918,Europe/Paris,,OIF, +OIF:SP:88:920,1,"Les Charmilles",49.005244,2.47186,0,0,OIF:SA:88:920,Europe/Paris,,OIF, +OIF:SP:88:921,1,"Les Charmilles",49.00528,2.472051,0,0,OIF:SA:88:920,Europe/Paris,,OIF, +OIF:SP:88:922,1,"Chemin de Saint-Denis",49.007387,2.476154,0,0,OIF:SA:88:922,Europe/Paris,,OIF, +OIF:SP:88:923,1,"Chemin de Saint-Denis",49.007872,2.476606,0,0,OIF:SA:88:922,Europe/Paris,,OIF, +OIF:SP:88:924,1,"Mairie",49.002647,2.471566,0,0,OIF:SA:88:924,Europe/Paris,,OIF, +OIF:SP:88:925,1,"Mairie",49.00254,2.47091,0,0,OIF:SA:88:924,Europe/Paris,,OIF, +OIF:SP:88:926,1,"Pont Chinois",49.007967,2.471744,0,0,OIF:SA:88:926,Europe/Paris,,OIF, +OIF:SP:88:927,1,"Pont Chinois",49.007787,2.471825,0,0,OIF:SA:88:926,Europe/Paris,,OIF, +OIF:SP:88:928,1,"Pont à l'Huile",48.999435,2.467146,0,0,OIF:SA:88:928,Europe/Paris,,OIF, +OIF:SP:88:929,1,"Pont à l'Huile",49.001449,2.465922,0,0,OIF:SA:88:928,Europe/Paris,,OIF, +OIF:SP:88:930,1,"La Talmouse",49.010625,2.488267,0,0,OIF:SA:88:930,Europe/Paris,,OIF, +OIF:SP:88:931,1,"La Talmouse",49.011182,2.488418,0,0,OIF:SA:88:930,Europe/Paris,,OIF, +OIF:SP:88:932,1,"Arthur Rimbaud",48.999399,2.415369,0,0,OIF:SA:88:932,Europe/Paris,,OIF, +OIF:SP:88:933,1,"Arthur Rimbaud",48.999355,2.414946,0,0,OIF:SA:88:932,Europe/Paris,,OIF, +OIF:SP:88:934,1,"La Cerisaie",49.005102,2.388852,0,0,OIF:SA:59:6742402,Europe/Paris,,OIF, +OIF:SP:88:935,1,"Charles Richet",49.002822,2.401811,0,0,OIF:SA:59:6741628,Europe/Paris,,OIF, +OIF:SP:88:936,1,"Charles Richet",49.002822,2.402248,0,0,OIF:SA:59:6741628,Europe/Paris,,OIF, +OIF:SP:88:937,1,"D'Hérivaux",49.007436,2.394755,0,0,OIF:SA:88:937,Europe/Paris,,OIF, +OIF:SP:88:938,1,"Église",49.008121,2.389524,0,0,OIF:SA:59:6741463,Europe/Paris,,OIF, +OIF:SP:88:939,1,"Henri Sellier",49.008315,2.398294,0,0,OIF:SA:88:939,Europe/Paris,,OIF, +OIF:SP:88:940,1,"Jean Bullant",49.003472,2.396431,0,0,OIF:SA:59:6742406,Europe/Paris,,OIF, +OIF:SP:88:941,1,"Louis Perrein",49.001526,2.406071,0,0,OIF:SA:88:941,Europe/Paris,,OIF, +OIF:SP:88:942,1,"Louis Perrein",49.001759,2.406249,0,0,OIF:SA:88:941,Europe/Paris,,OIF, +OIF:SP:88:943,1,"Puits de la Marlière",49.008592,2.401204,0,0,OIF:SA:88:943,Europe/Paris,,OIF, +OIF:SP:88:944,1,"Tolinette",49.00413,2.392197,0,0,OIF:SA:59:6742404,Europe/Paris,,OIF, +OIF:SP:89:10,1,"Jean Jaurès",48.974666,1.986817,0,0,OIF:SA:58:418,Europe/Paris,,OIF, +OIF:SP:89:11,1,"Jean Jaurès",48.974757,1.986926,0,0,OIF:SA:58:418,Europe/Paris,,OIF, +OIF:SP:89:12,1,"Bougimonts",48.986753,1.911922,0,0,OIF:SA:21:450,Europe/Paris,,OIF, +OIF:SP:89:13,1,"Bougimonts",48.986583,1.912306,0,0,OIF:SA:21:450,Europe/Paris,,OIF, +OIF:SP:89:14,1,"Sablons",48.976941,1.914774,0,0,OIF:SA:8798751,Europe/Paris,,OIF, +OIF:SP:89:15,1,"Sablons",48.977139,1.915073,0,0,OIF:SA:8798751,Europe/Paris,,OIF, +OIF:SP:89:16,1,"Chamoiserie",48.972208,1.918307,0,0,OIF:SA:89:16,Europe/Paris,,OIF, +OIF:SP:89:17,1,"Comtesse",48.974217,1.917226,0,0,OIF:SA:89:16,Europe/Paris,,OIF, +OIF:SP:89:18,1,"Presle",48.950233,1.9279,0,0,OIF:SA:89:18,Europe/Paris,,OIF, +OIF:SP:89:19,1,"Presle",48.950817,1.928113,0,0,OIF:SA:89:18,Europe/Paris,,OIF, +OIF:SP:89:2,1,"Les Mureaux - Gare",48.992938,1.912663,0,0,OIF:SA:8738668,Europe/Paris,,OIF, +OIF:SP:89:20,1,"Toys'Rus",48.927133,1.986034,0,0,OIF:SA:21:600,Europe/Paris,,OIF, +OIF:SP:89:21,1,"Rond-Point de Grignon",48.843016,1.944568,0,0,OIF:SA:50:7808,Europe/Paris,,OIF, +OIF:SP:89:22,1,"Rond-Point de Grignon",48.842909,1.944664,0,0,OIF:SA:50:7808,Europe/Paris,,OIF, +OIF:SP:89:23,1,"Plaisir Gare",48.831438,1.943811,0,0,OIF:SA:8739342,Europe/Paris,,OIF, +OIF:SP:89:24,1,"Plaisir Gare",48.831509,1.943688,0,0,OIF:SA:8739342,Europe/Paris,,OIF, +OIF:SP:89:25,1,"Plaisir Rond-Point du Petit Saint-Cloud",48.829413,1.951232,0,0,OIF:SA:89:25,Europe/Paris,,OIF, +OIF:SP:89:26,1,"Plaisir Rond-Point du Petit Saint-Cloud",48.82961,1.951122,0,0,OIF:SA:89:25,Europe/Paris,,OIF, +OIF:SP:89:27,1,"Élancourt Prague",48.795403,1.968259,0,0,OIF:SA:41:6547,Europe/Paris,,OIF, +OIF:SP:89:28,1,"Élancourt Prague",48.795528,1.968,0,0,OIF:SA:41:6547,Europe/Paris,,OIF, +OIF:SP:89:29,1,"De Lattre de Tassigny",48.797679,1.974923,0,0,OIF:SA:22:9670,Europe/Paris,,OIF, +OIF:SP:89:3,1,"La Défense - Terminal Jules Verne",48.891276,2.242195,0,0,OIF:SA:16:19435,Europe/Paris,,OIF, +OIF:SP:89:30,1,"De Lattre de Tassigny",48.79758,1.97472,0,0,OIF:SA:22:9670,Europe/Paris,,OIF, +OIF:SP:89:31,1,"Élancourt Gay Lussac",48.791809,1.974638,0,0,OIF:SA:41:6060,Europe/Paris,,OIF, +OIF:SP:89:32,1,"Élancourt Gay Lussac",48.792468,1.97549,0,0,OIF:SA:41:6060,Europe/Paris,,OIF, +OIF:SP:89:33,1,"Trappes Base de Loisirs",48.783201,1.993603,0,0,OIF:SA:89:33,Europe/Paris,,OIF, +OIF:SP:89:34,1,"Trappes Base de Loisirs",48.783924,1.992034,0,0,OIF:SA:89:33,Europe/Paris,,OIF, +OIF:SP:89:35,1,"Trappes Centre Équestre",48.780353,2.003469,0,0,OIF:SA:41:6652,Europe/Paris,,OIF, +OIF:SP:89:36,1,"Trappes Centre Équestre",48.780718,2.002433,0,0,OIF:SA:41:6652,Europe/Paris,,OIF, +OIF:SP:89:37,1,"Saint-Quentin Gare",48.787627,2.045711,0,0,OIF:SA:8739384,Europe/Paris,,OIF, +OIF:SP:89:38,1,"Saint-Quentin Gare",48.787437,2.045331,0,0,OIF:SA:8739384,Europe/Paris,,OIF, +OIF:SP:89:39,1,"Vigne Blanche",48.98182,1.912017,0,0,OIF:SA:21:822,Europe/Paris,,OIF, +OIF:SP:89:4,1,"La Défense - Terminal Jules Verne",48.891276,2.242195,0,0,OIF:SA:89:4,Europe/Paris,,OIF, +OIF:SP:89:5,1,"Vigne Blanche",48.981623,1.912469,0,0,OIF:SA:21:822,Europe/Paris,,OIF, +OIF:SP:89:6,1,"Gare Routière de Verneuil",48.981017,1.982624,0,0,OIF:SA:8738665,Europe/Paris,,OIF, +OIF:SP:89:7,1,"Conforama",48.926863,1.985927,0,0,OIF:SA:21:404,Europe/Paris,,OIF, +OIF:SP:89:8,1,"Art de Vivre",48.925735,1.990721,0,0,OIF:SA:21:402,Europe/Paris,,OIF, +OIF:SP:89:9,1,"Les Mureaux - Gare",48.993046,1.912553,0,0,OIF:SA:8738668,Europe/Paris,,OIF, +OIF:SP:8:30001,1,"Léon Blum",48.981596,2.429214,0,0,OIF:SA:11:7,Europe/Paris,,OIF, +OIF:SP:8:30002,1,"Léon Blum",48.981606,2.428449,0,0,OIF:SA:11:7,Europe/Paris,,OIF, +OIF:SP:8:30003,1,"Mairie Annexe",48.980575,2.424952,0,0,OIF:SA:88:763,Europe/Paris,,OIF, +OIF:SP:8:30004,1,"Mairie Annexe",48.979336,2.422902,0,0,OIF:SA:88:763,Europe/Paris,,OIF, +OIF:SP:8:30005,1,"Rond-Point du Christ",48.975931,2.422228,0,0,OIF:SA:88:765,Europe/Paris,,OIF, +OIF:SP:8:30006,1,"Rond-Point du Christ",48.97594,2.421941,0,0,OIF:SA:88:765,Europe/Paris,,OIF, +OIF:SP:8:30007,1,"Abbaye de Royaumont",49.145534,2.385487,0,0,OIF:SA:8:30007,Europe/Paris,,OIF, +OIF:SP:8:30008,1,"Abbaye de Royaumont",49.145732,2.385323,0,0,OIF:SA:8:30007,Europe/Paris,,OIF, +OIF:SP:8:30009,1,"Baillon",49.147997,2.401227,0,0,OIF:SA:8:30009,Europe/Paris,,OIF, +OIF:SP:8:30010,1,"La Briette",49.134902,2.365196,0,0,OIF:SA:8:30010,Europe/Paris,,OIF, +OIF:SP:8:30011,1,"La Briette",49.134983,2.364964,0,0,OIF:SA:8:30010,Europe/Paris,,OIF, +OIF:SP:8:30012,1,"La Croix Boissiée",49.133968,2.360335,0,0,OIF:SA:5:40003,Europe/Paris,,OIF, +OIF:SP:8:30013,1,"La Croix Boissiée",49.134103,2.360253,0,0,OIF:SA:5:40003,Europe/Paris,,OIF, +OIF:SP:8:30015,1,"Cimetière",49.136287,2.360322,0,0,OIF:SA:8:30015,Europe/Paris,,OIF, +OIF:SP:8:30016,1,"Cimetière",49.136457,2.360158,0,0,OIF:SA:8:30015,Europe/Paris,,OIF, +OIF:SP:8:30017,1,"Grande Rue Mairie",49.134535,2.356528,0,0,OIF:SA:8:30017,Europe/Paris,,OIF, +OIF:SP:8:30018,1,"Grande Rue Mairie",49.134616,2.357131,0,0,OIF:SA:8:30017,Europe/Paris,,OIF, +OIF:SP:8:30019,1,"Place de Cutigliano",49.133402,2.362717,0,0,OIF:SA:8:30019,Europe/Paris,,OIF, +OIF:SP:8:30020,1,"Place de Cutigliano",49.133438,2.362402,0,0,OIF:SA:8:30019,Europe/Paris,,OIF, +OIF:SP:8:30021,1,"Le Poirier Gris",49.136581,2.36743,0,0,OIF:SA:8:30021,Europe/Paris,,OIF, +OIF:SP:8:30022,1,"Le Poirier Gris",49.136851,2.367375,0,0,OIF:SA:8:30021,Europe/Paris,,OIF, +OIF:SP:8:30023,1,"Saint-Laurent",49.135362,2.35201,0,0,OIF:SA:8:30023,Europe/Paris,,OIF, +OIF:SP:8:30024,1,"Saint-Laurent",49.135524,2.351708,0,0,OIF:SA:8:30023,Europe/Paris,,OIF, +OIF:SP:8:30025,1,"Les Tilleuls",49.141629,2.374828,0,0,OIF:SA:8:30025,Europe/Paris,,OIF, +OIF:SP:8:30026,1,"Les Tilleuls",49.139527,2.373799,0,0,OIF:SA:8:30025,Europe/Paris,,OIF, +OIF:SP:8:30027,1,"Citroën Production",48.965118,2.494671,0,0,OIF:SA:59:3666666,Europe/Paris,,OIF, +OIF:SP:8:30028,1,"Citroën Production",48.96421,2.49516,0,0,OIF:SA:59:3666666,Europe/Paris,,OIF, +OIF:SP:8:30029,1,"Citroën Visiteurs",48.961127,2.488832,0,0,OIF:SA:59:3666588,Europe/Paris,,OIF, +OIF:SP:8:30030,1,"Citroën Visiteurs",48.960291,2.48872,0,0,OIF:SA:59:3666588,Europe/Paris,,OIF, +OIF:SP:8:30031,1,"O'Parinor Louis Armand",48.95597,2.480383,0,0,OIF:SA:7:10058,Europe/Paris,,OIF, +OIF:SP:8:30032,1,"O'Parinor Louis Armand",48.955295,2.481077,0,0,OIF:SA:7:10058,Europe/Paris,,OIF, +OIF:SP:8:30033,1,"Bellefontaine Centre",49.098579,2.465946,0,0,OIF:SA:8:30033,Europe/Paris,,OIF, +OIF:SP:8:30034,1,"Bellefontaine Centre",49.097968,2.4663,0,0,OIF:SA:8:30033,Europe/Paris,,OIF, +OIF:SP:8:30035,1,"Piscine",49.145587,2.286995,0,0,OIF:SA:5:40061,Europe/Paris,,OIF, +OIF:SP:8:30036,1,"Piscine",49.145605,2.287529,0,0,OIF:SA:5:40061,Europe/Paris,,OIF, +OIF:SP:8:30037,1,"Église",49.0449,2.551686,0,0,OIF:SA:8:30037,Europe/Paris,,OIF, +OIF:SP:8:30038,1,"Église",49.044694,2.551357,0,0,OIF:SA:8:30037,Europe/Paris,,OIF, +OIF:SP:8:30040,1,"Croix l'Alouette",49.12073,2.424986,0,0,OIF:SA:8:30040,Europe/Paris,,OIF, +OIF:SP:8:30041,1,"Croix l'Alouette",49.120703,2.424781,0,0,OIF:SA:8:30040,Europe/Paris,,OIF, +OIF:SP:8:30042,1,"Charles Baudelaire",49.129633,2.426521,0,0,OIF:SA:8:30042,Europe/Paris,,OIF, +OIF:SP:8:30043,1,"Cyprien Réthoré",49.123079,2.431329,0,0,OIF:SA:8:30043,Europe/Paris,,OIF, +OIF:SP:8:30044,1,"Rue de la Ferme",49.132011,2.418132,0,0,OIF:SA:8:30044,Europe/Paris,,OIF, +OIF:SP:8:30045,1,"Henri Dunant",49.127699,2.429544,0,0,OIF:SA:8:30045,Europe/Paris,,OIF, +OIF:SP:8:30046,1,"Mairie",49.120744,2.430202,0,0,OIF:SA:8:30046,Europe/Paris,,OIF, +OIF:SP:8:30047,1,"Rue de Paris",49.122993,2.426852,0,0,OIF:SA:8:30047,Europe/Paris,,OIF, +OIF:SP:8:30048,1,"Rue de Paris",49.122966,2.426578,0,0,OIF:SA:8:30047,Europe/Paris,,OIF, +OIF:SP:8:30049,1,"Rue du Pont",49.128405,2.422083,0,0,OIF:SA:8:30049,Europe/Paris,,OIF, +OIF:SP:8:30055,1,"Épiais les Louvres Centre",49.031981,2.560092,0,0,OIF:SA:8:30055,Europe/Paris,,OIF, +OIF:SP:8:30056,1,"Albert Galle",49.055711,2.444181,0,0,OIF:SA:8:30056,Europe/Paris,,OIF, +OIF:SP:8:30057,1,"Albert Galle",49.055892,2.443812,0,0,OIF:SA:8:30056,Europe/Paris,,OIF, +OIF:SP:8:30058,1,"Les Castors",49.055272,2.452739,0,0,OIF:SA:8:30058,Europe/Paris,,OIF, +OIF:SP:8:30059,1,"Les Castors",49.055119,2.453163,0,0,OIF:SA:8:30058,Europe/Paris,,OIF, +OIF:SP:8:30060,1,"Croix de la Chaise",49.054692,2.457592,0,0,OIF:SA:8:30060,Europe/Paris,,OIF, +OIF:SP:8:30061,1,"Croix de la Chaise",49.055043,2.457497,0,0,OIF:SA:8:30060,Europe/Paris,,OIF, +OIF:SP:8:30062,1,"Centre",49.0531,2.450588,0,0,OIF:SA:8:30062,Europe/Paris,,OIF, +OIF:SP:8:30063,1,"Centre",49.053163,2.450438,0,0,OIF:SA:8:30062,Europe/Paris,,OIF, +OIF:SP:8:30064,1,"Clos de la Ferme",49.050963,2.448054,0,0,OIF:SA:8:30064,Europe/Paris,,OIF, +OIF:SP:8:30065,1,"Clos de la Ferme",49.050892,2.447753,0,0,OIF:SA:8:30064,Europe/Paris,,OIF, +OIF:SP:8:30066,1,"Rue de la Vallée",49.051571,2.451911,0,0,OIF:SA:8:30066,Europe/Paris,,OIF, +OIF:SP:8:30067,1,"Rue de la Vallée",49.051876,2.452007,0,0,OIF:SA:8:30066,Europe/Paris,,OIF, +OIF:SP:8:30068,1,"Avenue du Large",49.099126,2.510024,0,0,OIF:SA:88:769,Europe/Paris,,OIF, +OIF:SP:8:30069,1,"Avenue du Large",49.099262,2.508944,0,0,OIF:SA:88:769,Europe/Paris,,OIF, +OIF:SP:8:30070,1,"Beaumont",49.102327,2.514797,0,0,OIF:SA:88:771,Europe/Paris,,OIF, +OIF:SP:8:30071,1,"Beaumont",49.102165,2.514591,0,0,OIF:SA:88:771,Europe/Paris,,OIF, +OIF:SP:8:30072,1,"Bellevue",49.094693,2.49935,0,0,OIF:SA:88:773,Europe/Paris,,OIF, +OIF:SP:8:30073,1,"Bellevue",49.094594,2.499063,0,0,OIF:SA:88:773,Europe/Paris,,OIF, +OIF:SP:8:30074,1,"Centre Commercial de Fosses",49.100428,2.528092,0,0,OIF:SA:8:30074,Europe/Paris,,OIF, +OIF:SP:8:30075,1,"Centre Commercial de Fosses",49.100536,2.528202,0,0,OIF:SA:8:30074,Europe/Paris,,OIF, +OIF:SP:8:30076,1,"Centre Commercial Mairie",49.100168,2.516063,0,0,OIF:SA:88:775,Europe/Paris,,OIF, +OIF:SP:8:30077,1,"Centre Commercial Mairie",49.100061,2.515734,0,0,OIF:SA:88:775,Europe/Paris,,OIF, +OIF:SP:8:30078,1,"Coteau de la Gare",49.097012,2.517748,0,0,OIF:SA:8:30078,Europe/Paris,,OIF, +OIF:SP:8:30079,1,"Coteau de la Gare",49.097147,2.517489,0,0,OIF:SA:8:30078,Europe/Paris,,OIF, +OIF:SP:8:30080,1,"Cottages",49.095716,2.493141,0,0,OIF:SA:8:30080,Europe/Paris,,OIF, +OIF:SP:8:30081,1,"Cottages",49.095896,2.493142,0,0,OIF:SA:8:30080,Europe/Paris,,OIF, +OIF:SP:8:30082,1,"Collège Stendhal",49.102856,2.509216,0,0,OIF:SA:8:30082,Europe/Paris,,OIF, +OIF:SP:8:30083,1,"Gendarmerie",49.098941,2.513321,0,0,OIF:SA:88:777,Europe/Paris,,OIF, +OIF:SP:8:30084,1,"Gendarmerie",49.099121,2.513377,0,0,OIF:SA:88:777,Europe/Paris,,OIF, +OIF:SP:8:30085,1,"Haute Grève",49.096493,2.503666,0,0,OIF:SA:88:779,Europe/Paris,,OIF, +OIF:SP:8:30086,1,"Haute Grève",49.09635,2.503433,0,0,OIF:SA:88:779,Europe/Paris,,OIF, +OIF:SP:8:30087,1,"Lycée Charles Beaudelaire",49.100617,2.504049,0,0,OIF:SA:8:30087,Europe/Paris,,OIF, +OIF:SP:8:30088,1,"Mairie Annexe",49.096335,2.487533,0,0,OIF:SA:8:30088,Europe/Paris,,OIF, +OIF:SP:8:30089,1,"Mairie Annexe",49.096308,2.487683,0,0,OIF:SA:8:30088,Europe/Paris,,OIF, +OIF:SP:8:30090,1,"Poteau de Marly",49.094374,2.502414,0,0,OIF:SA:88:781,Europe/Paris,,OIF, +OIF:SP:8:30091,1,"Poteau de Marly",49.094527,2.502291,0,0,OIF:SA:88:781,Europe/Paris,,OIF, +OIF:SP:8:30092,1,"Rue de l'Épine",49.098666,2.505042,0,0,OIF:SA:88:783,Europe/Paris,,OIF, +OIF:SP:8:30093,1,"Rue de l'Épine",49.098585,2.504644,0,0,OIF:SA:88:783,Europe/Paris,,OIF, +OIF:SP:8:30094,1,"Survilliers Fosses RER D",49.099507,2.525229,0,0,OIF:SA:8727626,Europe/Paris,,OIF, +OIF:SP:8:30095,1,"Allée de la Source",49.09534,2.511681,0,0,OIF:SA:8:30095,Europe/Paris,,OIF, +OIF:SP:8:30096,1,"Allée de la Source",49.095476,2.511421,0,0,OIF:SA:8:30095,Europe/Paris,,OIF, +OIF:SP:8:30097,1,"Village",49.095229,2.487817,0,0,OIF:SA:8:30097,Europe/Paris,,OIF, +OIF:SP:8:30098,1,"Village",49.09558,2.487243,0,0,OIF:SA:8:30097,Europe/Paris,,OIF, +OIF:SP:8:30099,1,"Rue des Violettes",49.094879,2.507574,0,0,OIF:SA:8:30099,Europe/Paris,,OIF, +OIF:SP:8:30100,1,"Rue des Violettes",49.09496,2.507479,0,0,OIF:SA:8:30099,Europe/Paris,,OIF, +OIF:SP:8:30101,1,"ZI Fosses",49.097202,2.528436,0,0,OIF:SA:8:30101,Europe/Paris,,OIF, +OIF:SP:8:30102,1,"ZI Fosses",49.097085,2.528682,0,0,OIF:SA:8:30101,Europe/Paris,,OIF, +OIF:SP:8:30103,1,"8 Mai 1945",48.976092,2.409232,0,0,OIF:SA:88:786,Europe/Paris,,OIF, +OIF:SP:8:30104,1,"8 Mai 1945",48.975903,2.409491,0,0,OIF:SA:88:786,Europe/Paris,,OIF, +OIF:SP:8:30105,1,"Antoine Demusois",48.96319,2.404068,0,0,OIF:SA:59:6742363,Europe/Paris,,OIF, +OIF:SP:8:30106,1,"Antoine Demusois",48.962751,2.402717,0,0,OIF:SA:59:6742363,Europe/Paris,,OIF, +OIF:SP:8:30107,1,"Carnot",48.971783,2.415737,0,0,OIF:SA:59:6673060,Europe/Paris,,OIF, +OIF:SP:8:30108,1,"Carnot",48.970742,2.413947,0,0,OIF:SA:59:6673060,Europe/Paris,,OIF, +OIF:SP:8:30109,1,"Croix Buard",48.966234,2.409218,0,0,OIF:SA:59:6673056,Europe/Paris,,OIF, +OIF:SP:8:30110,1,"Croix Buard",48.965498,2.407811,0,0,OIF:SA:59:6673056,Europe/Paris,,OIF, +OIF:SP:8:30111,1,"Charles de Gaulle Mitterrand",48.974436,2.398554,0,0,OIF:SA:59:4238722,Europe/Paris,,OIF, +OIF:SP:8:30112,1,"Charles de Gaulle Mitterrand",48.974795,2.39835,0,0,OIF:SA:59:4238722,Europe/Paris,,OIF, +OIF:SP:8:30113,1,"Collège Pablo Picasso",48.973148,2.417937,0,0,OIF:SA:59:6673062,Europe/Paris,,OIF, +OIF:SP:8:30114,1,"Collège Pablo Picasso",48.973292,2.417719,0,0,OIF:SA:59:6673062,Europe/Paris,,OIF, +OIF:SP:8:30115,1,"Georges Brassens",48.974521,2.407564,0,0,OIF:SA:88:790,Europe/Paris,,OIF, +OIF:SP:8:30116,1,"Georges Brassens",48.974602,2.407086,0,0,OIF:SA:88:790,Europe/Paris,,OIF, +OIF:SP:8:30117,1,"J.B Corot / Lamartine",48.975587,2.396521,0,0,OIF:SA:59:4238720,Europe/Paris,,OIF, +OIF:SP:8:30118,1,"J.B Corot / Lamartine",48.976082,2.395348,0,0,OIF:SA:59:4238720,Europe/Paris,,OIF, +OIF:SP:8:30119,1,"Jacques Decour",48.976791,2.413465,0,0,OIF:SA:88:792,Europe/Paris,,OIF, +OIF:SP:8:30120,1,"Jacques Decour",48.977006,2.413233,0,0,OIF:SA:88:792,Europe/Paris,,OIF, +OIF:SP:8:30121,1,"Limite des Départements",48.95994,2.39941,0,0,OIF:SA:59:6742361,Europe/Paris,,OIF, +OIF:SP:8:30122,1,"Limite des Départements",48.959087,2.398099,0,0,OIF:SA:59:6742361,Europe/Paris,,OIF, +OIF:SP:8:30123,1,"Mairie",48.971542,2.398878,0,0,OIF:SA:59:4238724,Europe/Paris,,OIF, +OIF:SP:8:30124,1,"Mairie",48.971713,2.398728,0,0,OIF:SA:59:4238724,Europe/Paris,,OIF, +OIF:SP:8:30125,1,"La Muette Europe",48.975135,2.415756,0,0,OIF:SA:88:794,Europe/Paris,,OIF, +OIF:SP:8:30126,1,"La Muette Europe",48.975333,2.415933,0,0,OIF:SA:88:794,Europe/Paris,,OIF, +OIF:SP:8:30127,1,"Les Mûriers",48.970318,2.40248,0,0,OIF:SA:59:4238726,Europe/Paris,,OIF, +OIF:SP:8:30128,1,"Les Mûriers",48.970417,2.402317,0,0,OIF:SA:59:4238726,Europe/Paris,,OIF, +OIF:SP:8:30129,1,"Place Charles de Gaulle",48.973778,2.401092,0,0,OIF:SA:8:30129,Europe/Paris,,OIF, +OIF:SP:8:30130,1,"Place Charles de Gaulle",48.973734,2.400642,0,0,OIF:SA:8:30129,Europe/Paris,,OIF, +OIF:SP:8:30131,1,"Pierre de Coubertin",48.977962,2.407569,0,0,OIF:SA:8:30131,Europe/Paris,,OIF, +OIF:SP:8:30132,1,"Pierre de Coubertin",48.976588,2.407321,0,0,OIF:SA:8:30131,Europe/Paris,,OIF, +OIF:SP:8:30133,1,"Parc Commercial Pont de Pierre",48.972688,2.420257,0,0,OIF:SA:8:30133,Europe/Paris,,OIF, +OIF:SP:8:30134,1,"Paul Langevin",48.977376,2.411472,0,0,OIF:SA:8:30134,Europe/Paris,,OIF, +OIF:SP:8:30135,1,"Paul Langevin",48.977781,2.410859,0,0,OIF:SA:8:30134,Europe/Paris,,OIF, +OIF:SP:8:30136,1,"Garges/Sarcelles RER D",48.977153,2.390544,0,0,OIF:SA:8727619,Europe/Paris,,OIF, +OIF:SP:8:30137,1,"Verdun",48.968012,2.411159,0,0,OIF:SA:59:6673058,Europe/Paris,,OIF, +OIF:SP:8:30138,1,"Verdun",48.967554,2.410271,0,0,OIF:SA:59:6673058,Europe/Paris,,OIF, +OIF:SP:8:30140,1,"Cimetière",48.990482,2.452294,0,0,OIF:SA:8:30140,Europe/Paris,,OIF, +OIF:SP:8:30141,1,"Cimetière",48.989907,2.451965,0,0,OIF:SA:8:30140,Europe/Paris,,OIF, +OIF:SP:8:30142,1,"Épis",48.977512,2.500211,0,0,OIF:SA:7:10222,Europe/Paris,,OIF, +OIF:SP:8:30143,1,"Épis",48.977278,2.500865,0,0,OIF:SA:7:10222,Europe/Paris,,OIF, +OIF:SP:8:30146,1,"Lycée René Cassin",48.982707,2.433994,0,0,OIF:SA:59:6673070,Europe/Paris,,OIF, +OIF:SP:8:30147,1,"Lycée René Cassin",48.982779,2.43338,0,0,OIF:SA:59:6673070,Europe/Paris,,OIF, +OIF:SP:8:30148,1,"Chemin du Moulin d'Etif",48.983576,2.437532,0,0,OIF:SA:59:6673072,Europe/Paris,,OIF, +OIF:SP:8:30149,1,"Chemin du Moulin d'Etif",48.983639,2.437014,0,0,OIF:SA:59:6673072,Europe/Paris,,OIF, +OIF:SP:8:30150,1,"Jean Jaurès",48.983842,2.440605,0,0,OIF:SA:59:6673074,Europe/Paris,,OIF, +OIF:SP:8:30151,1,"Jean Jaurès",48.983851,2.440919,0,0,OIF:SA:59:6673074,Europe/Paris,,OIF, +OIF:SP:8:30156,1,"Fontaine Cypierre",48.986188,2.459862,0,0,OIF:SA:8:30156,Europe/Paris,,OIF, +OIF:SP:8:30157,1,"Fontaine Cypierre",48.986017,2.459534,0,0,OIF:SA:8:30156,Europe/Paris,,OIF, +OIF:SP:8:30158,1,"Acacias",49.039182,2.466727,0,0,OIF:SA:8:30158,Europe/Paris,,OIF, +OIF:SP:8:30159,1,"Acacias",49.039227,2.466467,0,0,OIF:SA:8:30158,Europe/Paris,,OIF, +OIF:SP:8:30160,1,"Ampère/Chartrel",49.036003,2.456222,0,0,OIF:SA:88:829,Europe/Paris,,OIF, +OIF:SP:8:30161,1,"Ampère/Chartrel",49.03549,2.456795,0,0,OIF:SA:88:829,Europe/Paris,,OIF, +OIF:SP:8:30162,1,"Calvaire",49.015536,2.469837,0,0,OIF:SA:88:831,Europe/Paris,,OIF, +OIF:SP:8:30163,1,"Calvaire",49.01657,2.469061,0,0,OIF:SA:88:831,Europe/Paris,,OIF, +OIF:SP:8:30164,1,"Camélinat",49.040523,2.464994,0,0,OIF:SA:8:30164,Europe/Paris,,OIF, +OIF:SP:8:30165,1,"Camélinat",49.040298,2.465048,0,0,OIF:SA:8:30164,Europe/Paris,,OIF, +OIF:SP:8:30166,1,"Cachin Blatreux",49.041729,2.46292,0,0,OIF:SA:8:30166,Europe/Paris,,OIF, +OIF:SP:8:30167,1,"Carrefour de l'Europe",49.022577,2.465278,0,0,OIF:SA:88:833,Europe/Paris,,OIF, +OIF:SP:8:30168,1,"Carrefour de l'Europe",49.01937,2.464286,0,0,OIF:SA:88:833,Europe/Paris,,OIF, +OIF:SP:8:30169,1,"Carrefour de l'Europe",49.021516,2.465658,0,0,OIF:SA:88:833,Europe/Paris,,OIF, +OIF:SP:8:30170,1,"Chapellerie",49.038061,2.455352,0,0,OIF:SA:88:835,Europe/Paris,,OIF, +OIF:SP:8:30171,1,"Chapellerie",49.038016,2.455503,0,0,OIF:SA:88:835,Europe/Paris,,OIF, +OIF:SP:8:30172,1,"La Charmeuse",49.034413,2.471908,0,0,OIF:SA:88:837,Europe/Paris,,OIF, +OIF:SP:8:30173,1,"La Charmeuse",49.034054,2.472085,0,0,OIF:SA:88:837,Europe/Paris,,OIF, +OIF:SP:8:30174,1,"Collège Montaigne",49.028088,2.453977,0,0,OIF:SA:8:30174,Europe/Paris,,OIF, +OIF:SP:8:30175,1,"Les Coteaux",49.028274,2.481103,0,0,OIF:SA:8:30175,Europe/Paris,,OIF, +OIF:SP:8:30176,1,"Les Coteaux",49.028319,2.481253,0,0,OIF:SA:8:30175,Europe/Paris,,OIF, +OIF:SP:8:30177,1,"Les Coteaux",49.030513,2.479661,0,0,OIF:SA:8:30175,Europe/Paris,,OIF, +OIF:SP:8:30178,1,"Collège Robespierre",49.032735,2.453003,0,0,OIF:SA:8:30178,Europe/Paris,,OIF, +OIF:SP:8:30179,1,"Centre de Secours",49.030113,2.459939,0,0,OIF:SA:88:839,Europe/Paris,,OIF, +OIF:SP:8:30180,1,"Centre de Secours",49.030346,2.460036,0,0,OIF:SA:88:839,Europe/Paris,,OIF, +OIF:SP:8:30181,1,"Collège Montaigne",49.027989,2.453744,0,0,OIF:SA:8:30174,Europe/Paris,,OIF, +OIF:SP:8:30182,1,"Descartes",49.038909,2.461177,0,0,OIF:SA:88:841,Europe/Paris,,OIF, +OIF:SP:8:30183,1,"Descartes",49.038738,2.461149,0,0,OIF:SA:88:841,Europe/Paris,,OIF, +OIF:SP:8:30184,1,"École Gabriel Péri",49.038255,2.467818,0,0,OIF:SA:88:843,Europe/Paris,,OIF, +OIF:SP:8:30185,1,"École Gabriel Péri",49.037832,2.467995,0,0,OIF:SA:88:843,Europe/Paris,,OIF, +OIF:SP:8:30186,1,"École Gabriel Péri",49.038425,2.468133,0,0,OIF:SA:88:843,Europe/Paris,,OIF, +OIF:SP:8:30187,1,"École Jean Jaurès",49.032685,2.482277,0,0,OIF:SA:8:30187,Europe/Paris,,OIF, +OIF:SP:8:30188,1,"École Jean Jaurès",49.032532,2.482522,0,0,OIF:SA:8:30187,Europe/Paris,,OIF, +OIF:SP:8:30189,1,"École Jacques Prévert",49.030094,2.451808,0,0,OIF:SA:8:30189,Europe/Paris,,OIF, +OIF:SP:8:30190,1,"École Pasteur",49.027115,2.473666,0,0,OIF:SA:8:30190,Europe/Paris,,OIF, +OIF:SP:8:30191,1,"École Pasteur",49.026908,2.473324,0,0,OIF:SA:8:30190,Europe/Paris,,OIF, +OIF:SP:8:30192,1,"Eugène Varlin",49.038417,2.476019,0,0,OIF:SA:8:30192,Europe/Paris,,OIF, +OIF:SP:8:30193,1,"Eugène Varlin",49.039073,2.475515,0,0,OIF:SA:8:30192,Europe/Paris,,OIF, +OIF:SP:8:30194,1,"Georges Brassens",49.042955,2.467297,0,0,OIF:SA:8:30194,Europe/Paris,,OIF, +OIF:SP:8:30195,1,"Georges Brassens",49.043018,2.467502,0,0,OIF:SA:8:30194,Europe/Paris,,OIF, +OIF:SP:8:30196,1,"Gendarmerie",49.042844,2.461938,0,0,OIF:SA:8:30196,Europe/Paris,,OIF, +OIF:SP:8:30197,1,"Gendarmerie",49.043141,2.46131,0,0,OIF:SA:8:30196,Europe/Paris,,OIF, +OIF:SP:8:30199,1,"Georges Pitard",49.034754,2.455604,0,0,OIF:SA:8:30199,Europe/Paris,,OIF, +OIF:SP:8:30200,1,"Hélène Boucher",49.030618,2.449199,0,0,OIF:SA:8:30200,Europe/Paris,,OIF, +OIF:SP:8:30201,1,"Henri Dunant",49.037136,2.463893,0,0,OIF:SA:88:845,Europe/Paris,,OIF, +OIF:SP:8:30202,1,"Henri Dunant",49.036992,2.463838,0,0,OIF:SA:88:845,Europe/Paris,,OIF, +OIF:SP:8:30203,1,"Jules Ferry",49.027914,2.474092,0,0,OIF:SA:8:30203,Europe/Paris,,OIF, +OIF:SP:8:30204,1,"Lycée Romain Rolland",49.030333,2.455772,0,0,OIF:SA:8:30204,Europe/Paris,,OIF, +OIF:SP:8:30205,1,"Lycée Romain Rolland",49.030135,2.455594,0,0,OIF:SA:8:30204,Europe/Paris,,OIF, +OIF:SP:8:30206,1,"Mairie de Goussainville",49.032182,2.47413,0,0,OIF:SA:8:30206,Europe/Paris,,OIF, +OIF:SP:8:30207,1,"Mairie de Goussainville",49.032039,2.473993,0,0,OIF:SA:8:30206,Europe/Paris,,OIF, +OIF:SP:8:30208,1,"Marché",49.027748,2.461505,0,0,OIF:SA:88:849,Europe/Paris,,OIF, +OIF:SP:8:30209,1,"Marché",49.028206,2.461575,0,0,OIF:SA:88:849,Europe/Paris,,OIF, +OIF:SP:8:30210,1,"Marcel Cerdan",49.023005,2.459595,0,0,OIF:SA:88:851,Europe/Paris,,OIF, +OIF:SP:8:30211,1,"Mediathèque",49.036043,2.461047,0,0,OIF:SA:8:30211,Europe/Paris,,OIF, +OIF:SP:8:30212,1,"Rue Millet",49.03605,2.462824,0,0,OIF:SA:8:30212,Europe/Paris,,OIF, +OIF:SP:8:30213,1,"Montgolfier",49.039011,2.458061,0,0,OIF:SA:88:852,Europe/Paris,,OIF, +OIF:SP:8:30214,1,"Montgolfier",49.038993,2.458361,0,0,OIF:SA:88:852,Europe/Paris,,OIF, +OIF:SP:8:30215,1,"Les Montagnettes",49.035925,2.470286,0,0,OIF:SA:88:854,Europe/Paris,,OIF, +OIF:SP:8:30216,1,"Les Montagnettes",49.03588,2.470163,0,0,OIF:SA:88:854,Europe/Paris,,OIF, +OIF:SP:8:30217,1,"Le Moulin",49.011337,2.471916,0,0,OIF:SA:88:856,Europe/Paris,,OIF, +OIF:SP:8:30218,1,"Le Moulin",49.011561,2.472218,0,0,OIF:SA:88:856,Europe/Paris,,OIF, +OIF:SP:8:30219,1,"Madeleine Renaud",49.030779,2.44935,0,0,OIF:SA:8:30219,Europe/Paris,,OIF, +OIF:SP:8:30220,1,"Michel Simon",49.032174,2.447918,0,0,OIF:SA:8:30220,Europe/Paris,,OIF, +OIF:SP:8:30221,1,"Les Noues RER D",49.032385,2.477206,0,0,OIF:SA:8727623,Europe/Paris,,OIF, +OIF:SP:8:30222,1,"Les Noues RER D",49.032359,2.476427,0,0,OIF:SA:8727623,Europe/Paris,,OIF, +OIF:SP:8:30223,1,"Les Olympiades",49.021778,2.456053,0,0,OIF:SA:88:858,Europe/Paris,,OIF, +OIF:SP:8:30224,1,"Les Olympiades",49.02185,2.455807,0,0,OIF:SA:88:858,Europe/Paris,,OIF, +OIF:SP:8:30225,1,"Parc d'Activités Charles de Gaulle",49.021106,2.470849,0,0,OIF:SA:8:30225,Europe/Paris,,OIF, +OIF:SP:8:30226,1,"Pablo Picasso",49.03379,2.44911,0,0,OIF:SA:8:30226,Europe/Paris,,OIF, +OIF:SP:8:30227,1,"Place Sydney Béchet",49.043885,2.463759,0,0,OIF:SA:8:30227,Europe/Paris,,OIF, +OIF:SP:8:30228,1,"Place Sydney Béchet",49.044065,2.463636,0,0,OIF:SA:8:30227,Europe/Paris,,OIF, +OIF:SP:8:30229,1,"Résidence Ambroise Croizat",49.036131,2.47846,0,0,OIF:SA:8:30229,Europe/Paris,,OIF, +OIF:SP:8:30230,1,"Résidence Ambroise Croizat",49.036122,2.47861,0,0,OIF:SA:8:30229,Europe/Paris,,OIF, +OIF:SP:8:30231,1,"Résidence Ambroise Croizat",49.036572,2.478215,0,0,OIF:SA:8:30229,Europe/Paris,,OIF, +OIF:SP:8:30232,1,"Renaissance",49.04126,2.472965,0,0,OIF:SA:8:30232,Europe/Paris,,OIF, +OIF:SP:8:30233,1,"Renaissance",49.041043,2.473443,0,0,OIF:SA:8:30232,Europe/Paris,,OIF, +OIF:SP:8:30234,1,"Goussainville RER D",49.024053,2.462754,0,0,OIF:SA:8727624,Europe/Paris,,OIF, +OIF:SP:8:30235,1,"Raymond Lefèvre",49.03797,2.473203,0,0,OIF:SA:8:30235,Europe/Paris,,OIF, +OIF:SP:8:30236,1,"Rouget de Lisle",49.028627,2.479464,0,0,OIF:SA:8:30236,Europe/Paris,,OIF, +OIF:SP:8:30237,1,"Rouget de Lisle",49.029022,2.479328,0,0,OIF:SA:8:30236,Europe/Paris,,OIF, +OIF:SP:8:30238,1,"Rue Rolland",49.028406,2.483727,0,0,OIF:SA:8:30238,Europe/Paris,,OIF, +OIF:SP:8:30239,1,"Rue Rolland",49.028451,2.483645,0,0,OIF:SA:8:30238,Europe/Paris,,OIF, +OIF:SP:8:30241,1,"La Ruche",49.033488,2.463159,0,0,OIF:SA:8:30241,Europe/Paris,,OIF, +OIF:SP:8:30242,1,"Rue Sieyès",49.029834,2.484401,0,0,OIF:SA:8:30242,Europe/Paris,,OIF, +OIF:SP:8:30243,1,"Rue Sieyès",49.030067,2.484401,0,0,OIF:SA:8:30242,Europe/Paris,,OIF, +OIF:SP:8:30244,1,"Sécurité Sociale",49.025752,2.462867,0,0,OIF:SA:88:860,Europe/Paris,,OIF, +OIF:SP:8:30245,1,"Sécurité Sociale",49.025499,2.463358,0,0,OIF:SA:88:860,Europe/Paris,,OIF, +OIF:SP:8:30246,1,"Avenue des Tilleuls",49.032927,2.458238,0,0,OIF:SA:88:861,Europe/Paris,,OIF, +OIF:SP:8:30247,1,"Avenue des Tilleuls",49.033467,2.458157,0,0,OIF:SA:88:861,Europe/Paris,,OIF, +OIF:SP:8:30248,1,"Avenue des Tilleuls",49.032387,2.459508,0,0,OIF:SA:88:861,Europe/Paris,,OIF, +OIF:SP:8:30249,1,"Victor Basch",49.030051,2.475464,0,0,OIF:SA:88:863,Europe/Paris,,OIF, +OIF:SP:8:30250,1,"Victor Basch",49.030475,2.474399,0,0,OIF:SA:88:863,Europe/Paris,,OIF, +OIF:SP:8:30251,1,"ZI du Dessous de l'Orme",49.025921,2.455283,0,0,OIF:SA:8:30251,Europe/Paris,,OIF, +OIF:SP:8:30252,1,"ZAE Fransbonhomme",49.021522,2.451502,0,0,OIF:SA:8:30252,Europe/Paris,,OIF, +OIF:SP:8:30253,1,"ZAE G. Monmousseau",49.01894,2.443968,0,0,OIF:SA:8:30253,Europe/Paris,,OIF, +OIF:SP:8:30254,1,"ZAE J.P. Timbaud",49.021182,2.448892,0,0,OIF:SA:8:30254,Europe/Paris,,OIF, +OIF:SP:8:30255,1,"ZI du Pied de Fer",49.023214,2.457136,0,0,OIF:SA:8:30255,Europe/Paris,,OIF, +OIF:SP:8:30256,1,"ZAE Rep",49.019044,2.44901,0,0,OIF:SA:8:30256,Europe/Paris,,OIF, +OIF:SP:8:30257,1,"ZAE R. Moinon",49.019677,2.453438,0,0,OIF:SA:8:30257,Europe/Paris,,OIF, +OIF:SP:8:30258,1,"Ferdinand Berthaud",48.986035,2.341725,0,0,OIF:SA:8:30258,Europe/Paris,,OIF, +OIF:SP:8:30259,1,"Ferdinand Berthaud",48.986134,2.342517,0,0,OIF:SA:8:30258,Europe/Paris,,OIF, +OIF:SP:8:30260,1,"Groslay Train H",48.98483,2.353413,0,0,OIF:SA:8727636,Europe/Paris,,OIF, +OIF:SP:8:30261,1,"Mairie Gambetta",48.984058,2.345466,0,0,OIF:SA:8:30261,Europe/Paris,,OIF, +OIF:SP:8:30262,1,"Mairie Gambetta",48.986565,2.345972,0,0,OIF:SA:8:30261,Europe/Paris,,OIF, +OIF:SP:8:30263,1,"ZI les Ecricrolles",48.989826,2.358057,0,0,OIF:SA:8:30263,Europe/Paris,,OIF, +OIF:SP:8:30264,1,"Croix de Lassy",49.099603,2.448706,0,0,OIF:SA:8:30264,Europe/Paris,,OIF, +OIF:SP:8:30265,1,"Rue du 11 Novembre",49.041775,2.499457,0,0,OIF:SA:8:30265,Europe/Paris,,OIF, +OIF:SP:8:30266,1,"Rue au Blé",49.040794,2.506671,0,0,OIF:SA:8:30266,Europe/Paris,,OIF, +OIF:SP:8:30269,1,"Bouteiller",49.040829,2.501313,0,0,OIF:SA:8:30269,Europe/Paris,,OIF, +OIF:SP:8:30271,1,"Bruxelles",49.053411,2.499959,0,0,OIF:SA:8:30271,Europe/Paris,,OIF, +OIF:SP:8:30272,1,"Collège André Malraux",49.050208,2.509204,0,0,OIF:SA:8:30272,Europe/Paris,,OIF, +OIF:SP:8:30273,1,"Centre Commercial",49.050221,2.499716,0,0,OIF:SA:88:865,Europe/Paris,,OIF, +OIF:SP:8:30274,1,"Centre Commercial",49.050455,2.499881,0,0,OIF:SA:88:865,Europe/Paris,,OIF, +OIF:SP:8:30276,1,"Cottage Delacroix",49.046444,2.495056,0,0,OIF:SA:8:30276,Europe/Paris,,OIF, +OIF:SP:8:30277,1,"Copenhague",49.052674,2.500298,0,0,OIF:SA:88:866,Europe/Paris,,OIF, +OIF:SP:8:30278,1,"Copenhague",49.052494,2.50027,0,0,OIF:SA:88:866,Europe/Paris,,OIF, +OIF:SP:8:30280,1,"École Delacroix",49.052422,2.493448,0,0,OIF:SA:8:30280,Europe/Paris,,OIF, +OIF:SP:8:30281,1,"Foyer des Anciens",49.042521,2.505611,0,0,OIF:SA:8:30281,Europe/Paris,,OIF, +OIF:SP:8:30283,1,"Avenue de la Gare",49.047646,2.496782,0,0,OIF:SA:8:30283,Europe/Paris,,OIF, +OIF:SP:8:30285,1,"Londres",49.053495,2.497566,0,0,OIF:SA:8:30285,Europe/Paris,,OIF, +OIF:SP:8:30286,1,"Le Margeride",49.043851,2.505465,0,0,OIF:SA:8:30286,Europe/Paris,,OIF, +OIF:SP:8:30287,1,"Mairie",49.045283,2.509338,0,0,OIF:SA:8:30287,Europe/Paris,,OIF, +OIF:SP:8:30288,1,"Marlots",49.048522,2.50656,0,0,OIF:SA:8:30288,Europe/Paris,,OIF, +OIF:SP:8:30289,1,"Marché",49.042641,2.503356,0,0,OIF:SA:8:30289,Europe/Paris,,OIF, +OIF:SP:8:30290,1,"Marie Feuchère",49.045913,2.509258,0,0,OIF:SA:6:288,Europe/Paris,,OIF, +OIF:SP:8:30291,1,"Marie Feuchère",49.046011,2.509409,0,0,OIF:SA:6:288,Europe/Paris,,OIF, +OIF:SP:8:30294,1,"Mallein Gérin",49.038846,2.505585,0,0,OIF:SA:8:30294,Europe/Paris,,OIF, +OIF:SP:8:30299,1,"Le Moulin",49.046729,2.510477,0,0,OIF:SA:8:30299,Europe/Paris,,OIF, +OIF:SP:8:30300,1,"Maison de Retraite",49.040762,2.503746,0,0,OIF:SA:8:30300,Europe/Paris,,OIF, +OIF:SP:8:30301,1,"Parc",49.048145,2.506354,0,0,OIF:SA:6:290,Europe/Paris,,OIF, +OIF:SP:8:30302,1,"Parc",49.047687,2.506694,0,0,OIF:SA:6:290,Europe/Paris,,OIF, +OIF:SP:8:30303,1,"La Pépinière",49.054461,2.501261,0,0,OIF:SA:88:871,Europe/Paris,,OIF, +OIF:SP:8:30304,1,"La Pépinière",49.053795,2.501806,0,0,OIF:SA:88:871,Europe/Paris,,OIF, +OIF:SP:8:30305,1,"Piscine",49.050662,2.512254,0,0,OIF:SA:8:30305,Europe/Paris,,OIF, +OIF:SP:8:30306,1,"Poste",49.043039,2.507827,0,0,OIF:SA:8:30306,Europe/Paris,,OIF, +OIF:SP:8:30307,1,"Louvres RER D",49.049302,2.501422,0,0,OIF:SA:8727625,Europe/Paris,,OIF, +OIF:SP:8:30308,1,"Schuman",49.050473,2.492567,0,0,OIF:SA:8:30308,Europe/Paris,,OIF, +OIF:SP:8:30309,1,"Schuman",49.050573,2.492294,0,0,OIF:SA:8:30308,Europe/Paris,,OIF, +OIF:SP:8:30310,1,"Square Degas",49.04352,2.504315,0,0,OIF:SA:8:30310,Europe/Paris,,OIF, +OIF:SP:8:30312,1,"Val de Loire",49.043125,2.497739,0,0,OIF:SA:8:30312,Europe/Paris,,OIF, +OIF:SP:8:30313,1,"ZI Briqueterie",49.049176,2.495297,0,0,OIF:SA:8:30313,Europe/Paris,,OIF, +OIF:SP:8:30315,1,"ZI Coudray",49.050939,2.49425,0,0,OIF:SA:8:30315,Europe/Paris,,OIF, +OIF:SP:8:30316,1,"Erik Satie",49.115816,2.422842,0,0,OIF:SA:8:30316,Europe/Paris,,OIF, +OIF:SP:8:30317,1,"Erik Satie",49.115861,2.422637,0,0,OIF:SA:8:30316,Europe/Paris,,OIF, +OIF:SP:8:30318,1,"Luzarches Train H",49.118054,2.422134,0,0,OIF:SA:8727657,Europe/Paris,,OIF, +OIF:SP:8:30319,1,"Luzarches Train H",49.117156,2.421448,0,0,OIF:SA:8727657,Europe/Paris,,OIF, +OIF:SP:8:30320,1,"Gérard de Nerval",49.105861,2.422374,0,0,OIF:SA:8:30320,Europe/Paris,,OIF, +OIF:SP:8:30321,1,"Gérard de Nerval",49.10534,2.422223,0,0,OIF:SA:8:30320,Europe/Paris,,OIF, +OIF:SP:8:30322,1,"La Halle",49.113696,2.422332,0,0,OIF:SA:5:40329,Europe/Paris,,OIF, +OIF:SP:8:30323,1,"La Halle",49.11331,2.422126,0,0,OIF:SA:5:40329,Europe/Paris,,OIF, +OIF:SP:8:30324,1,"Avenue du Maréchal Joffre",49.119006,2.423628,0,0,OIF:SA:8:30324,Europe/Paris,,OIF, +OIF:SP:8:30325,1,"Avenue du Maréchal Joffre",49.119024,2.423478,0,0,OIF:SA:8:30324,Europe/Paris,,OIF, +OIF:SP:8:30326,1,"La Source",49.110479,2.422245,0,0,OIF:SA:8:30326,Europe/Paris,,OIF, +OIF:SP:8:30327,1,"La Source",49.110291,2.422067,0,0,OIF:SA:8:30326,Europe/Paris,,OIF, +OIF:SP:8:30328,1,"Centre",49.069321,2.427073,0,0,OIF:SA:8:30328,Europe/Paris,,OIF, +OIF:SP:8:30329,1,"Centre",49.069294,2.427606,0,0,OIF:SA:8:30328,Europe/Paris,,OIF, +OIF:SP:8:30330,1,"Rue Neuve",49.06704,2.42592,0,0,OIF:SA:8:30330,Europe/Paris,,OIF, +OIF:SP:8:30331,1,"Rue Neuve",49.067165,2.426139,0,0,OIF:SA:8:30330,Europe/Paris,,OIF, +OIF:SP:8:30332,1,"Regnault",49.068804,2.422026,0,0,OIF:SA:8:30332,Europe/Paris,,OIF, +OIF:SP:8:30333,1,"Regnault",49.068938,2.422313,0,0,OIF:SA:8:30332,Europe/Paris,,OIF, +OIF:SP:8:30334,1,"Mairie de Mauregard",49.032794,2.58091,0,0,OIF:SA:6:97,Europe/Paris,,OIF, +OIF:SP:8:30335,1,"Mairie de Mauregard",49.032875,2.581102,0,0,OIF:SA:6:97,Europe/Paris,,OIF, +OIF:SP:8:30336,1,"Bois Maillard",49.088551,2.508826,0,0,OIF:SA:88:874,Europe/Paris,,OIF, +OIF:SP:8:30337,1,"Bois Maillard",49.089433,2.508145,0,0,OIF:SA:88:874,Europe/Paris,,OIF, +OIF:SP:8:30338,1,"Collège Françoise Dolto",49.085859,2.506245,0,0,OIF:SA:88:875,Europe/Paris,,OIF, +OIF:SP:8:30339,1,"Collège Françoise Dolto",49.086003,2.506437,0,0,OIF:SA:88:875,Europe/Paris,,OIF, +OIF:SP:8:30340,1,"Cimetière",49.086702,2.500871,0,0,OIF:SA:88:876,Europe/Paris,,OIF, +OIF:SP:8:30341,1,"Central Space/Bâtiment Abd",49.079624,2.518002,0,0,OIF:SA:8:30341,Europe/Paris,,OIF, +OIF:SP:8:30342,1,"Central Space/Bâtiment Abd",49.079795,2.518057,0,0,OIF:SA:8:30341,Europe/Paris,,OIF, +OIF:SP:8:30343,1,"Central Space/Bâtiment C",49.079422,2.520587,0,0,OIF:SA:8:30343,Europe/Paris,,OIF, +OIF:SP:8:30344,1,"Central Space/Bâtiment E",49.079761,2.516457,0,0,OIF:SA:8:30344,Europe/Paris,,OIF, +OIF:SP:8:30345,1,"Cité Jardins",49.091496,2.504375,0,0,OIF:SA:88:877,Europe/Paris,,OIF, +OIF:SP:8:30346,1,"Cité Jardins",49.091199,2.504812,0,0,OIF:SA:88:877,Europe/Paris,,OIF, +OIF:SP:8:30347,1,"Rue des Prés",49.083238,2.504608,0,0,OIF:SA:88:878,Europe/Paris,,OIF, +OIF:SP:8:30348,1,"Rue des Prés",49.083031,2.504758,0,0,OIF:SA:88:878,Europe/Paris,,OIF, +OIF:SP:8:30349,1,"École de la Garenne",49.084958,2.501891,0,0,OIF:SA:88:880,Europe/Paris,,OIF, +OIF:SP:8:30350,1,"Eugène Potier",49.087131,2.521421,0,0,OIF:SA:8:30350,Europe/Paris,,OIF, +OIF:SP:8:30351,1,"Eugène Potier",49.087032,2.521448,0,0,OIF:SA:8:30350,Europe/Paris,,OIF, +OIF:SP:8:30352,1,"Grand Champ",49.084591,2.51921,0,0,OIF:SA:8:30352,Europe/Paris,,OIF, +OIF:SP:8:30353,1,"Grand Champ",49.084977,2.519389,0,0,OIF:SA:8:30352,Europe/Paris,,OIF, +OIF:SP:8:30354,1,"Gefco",49.090116,2.520502,0,0,OIF:SA:8:30354,Europe/Paris,,OIF, +OIF:SP:8:30355,1,"Gefco",49.090215,2.520338,0,0,OIF:SA:8:30354,Europe/Paris,,OIF, +OIF:SP:8:30356,1,"Hameau des Cèdres",49.090027,2.501073,0,0,OIF:SA:88:881,Europe/Paris,,OIF, +OIF:SP:8:30357,1,"Hameau de Prieuré",49.084469,2.504161,0,0,OIF:SA:88:882,Europe/Paris,,OIF, +OIF:SP:8:30358,1,"4 Rue Jean Jaurès",49.09602,2.519756,0,0,OIF:SA:8:30358,Europe/Paris,,OIF, +OIF:SP:8:30359,1,"4 Rue Jean Jaurès",49.096065,2.520003,0,0,OIF:SA:8:30358,Europe/Paris,,OIF, +OIF:SP:8:30360,1,"Rue Jules Vallès",49.090625,2.516686,0,0,OIF:SA:8:30360,Europe/Paris,,OIF, +OIF:SP:8:30361,1,"Rue Jules Vallès",49.090732,2.516878,0,0,OIF:SA:8:30360,Europe/Paris,,OIF, +OIF:SP:8:30362,1,"Mairie",49.078528,2.499258,0,0,OIF:SA:88:883,Europe/Paris,,OIF, +OIF:SP:8:30363,1,"Mairie",49.078797,2.49904,0,0,OIF:SA:88:883,Europe/Paris,,OIF, +OIF:SP:8:30364,1,"Moimont",49.089661,2.523825,0,0,OIF:SA:8:30364,Europe/Paris,,OIF, +OIF:SP:8:30365,1,"Moimont",49.090065,2.52399,0,0,OIF:SA:8:30364,Europe/Paris,,OIF, +OIF:SP:8:30366,1,"Peuplier",49.082795,2.518492,0,0,OIF:SA:8:30366,Europe/Paris,,OIF, +OIF:SP:8:30367,1,"Peuplier",49.082589,2.518341,0,0,OIF:SA:8:30366,Europe/Paris,,OIF, +OIF:SP:8:30368,1,"Place du 19 Mars",49.092425,2.502162,0,0,OIF:SA:8:30368,Europe/Paris,,OIF, +OIF:SP:8:30369,1,"Place Vert Clos",49.080382,2.503094,0,0,OIF:SA:88:886,Europe/Paris,,OIF, +OIF:SP:8:30370,1,"Place Vert Clos",49.080041,2.502738,0,0,OIF:SA:88:886,Europe/Paris,,OIF, +OIF:SP:8:30371,1,"14 Rue Jean Jaurès",49.090273,2.523307,0,0,OIF:SA:8:30371,Europe/Paris,,OIF, +OIF:SP:8:30372,1,"14 Rue Jean Jaurès",49.090363,2.523239,0,0,OIF:SA:8:30371,Europe/Paris,,OIF, +OIF:SP:8:30373,1,"Salle des Fêtes",49.076219,2.498991,0,0,OIF:SA:88:888,Europe/Paris,,OIF, +OIF:SP:8:30374,1,"Salle des Fêtes",49.075743,2.498675,0,0,OIF:SA:88:888,Europe/Paris,,OIF, +OIF:SP:8:30377,1,"Cimetière",48.985631,2.332085,0,0,OIF:SA:8:30377,Europe/Paris,,OIF, +OIF:SP:8:30378,1,"Cimetière",48.985793,2.331703,0,0,OIF:SA:8:30377,Europe/Paris,,OIF, +OIF:SP:8:30379,1,"Mairie",48.990896,2.319672,0,0,OIF:SA:60:508,Europe/Paris,,OIF, +OIF:SP:8:30380,1,"Sous Préfecture",48.987275,2.328276,0,0,OIF:SA:8:30380,Europe/Paris,,OIF, +OIF:SP:8:30381,1,"Sous Préfecture",48.987608,2.328385,0,0,OIF:SA:8:30380,Europe/Paris,,OIF, +OIF:SP:8:30383,1,"Place Gambetta",49.136486,2.331003,0,0,OIF:SA:8:30383,Europe/Paris,,OIF, +OIF:SP:8:30384,1,"Valdempierre",49.139182,2.332687,0,0,OIF:SA:5:40158,Europe/Paris,,OIF, +OIF:SP:8:30385,1,"Persan Beaumont Train H",49.148001,2.279487,0,0,OIF:SA:8727646,Europe/Paris,,OIF, +OIF:SP:8:30386,1,"Plessis Luzarches",49.099566,2.450116,0,0,OIF:SA:8:30386,Europe/Paris,,OIF, +OIF:SP:8:30387,1,"Dame Jeanne",49.099736,2.559441,0,0,OIF:SA:8:30387,Europe/Paris,,OIF, +OIF:SP:8:30388,1,"Hauts de Plailly",49.10515,2.575695,0,0,OIF:SA:8:30388,Europe/Paris,,OIF, +OIF:SP:8:30389,1,"Hauts de Plailly",49.105123,2.575599,0,0,OIF:SA:8:30388,Europe/Paris,,OIF, +OIF:SP:8:30390,1,"Lilas",49.103744,2.577619,0,0,OIF:SA:8:30390,Europe/Paris,,OIF, +OIF:SP:8:30391,1,"Lilas",49.103898,2.577304,0,0,OIF:SA:8:30390,Europe/Paris,,OIF, +OIF:SP:8:30392,1,"Paris",49.103713,2.584201,0,0,OIF:SA:8:30392,Europe/Paris,,OIF, +OIF:SP:8:30393,1,"Paris",49.103498,2.584145,0,0,OIF:SA:8:30392,Europe/Paris,,OIF, +OIF:SP:8:30394,1,"Puits au Loup",49.104694,2.587778,0,0,OIF:SA:8:30394,Europe/Paris,,OIF, +OIF:SP:8:30395,1,"Puits au Loup",49.104514,2.587818,0,0,OIF:SA:8:30394,Europe/Paris,,OIF, +OIF:SP:8:30396,1,"Sainte-Geneviève",49.103585,2.580779,0,0,OIF:SA:8:30396,Europe/Paris,,OIF, +OIF:SP:8:30397,1,"Sainte-Geneviève",49.103603,2.580985,0,0,OIF:SA:8:30396,Europe/Paris,,OIF, +OIF:SP:8:30398,1,"Vergers",49.106048,2.593204,0,0,OIF:SA:8:30398,Europe/Paris,,OIF, +OIF:SP:8:30399,1,"Vergers",49.105949,2.593642,0,0,OIF:SA:8:30398,Europe/Paris,,OIF, +OIF:SP:8:30400,1,"ZI Parc de Plailly",49.101242,2.561596,0,0,OIF:SA:8:30400,Europe/Paris,,OIF, +OIF:SP:8:30401,1,"Quatre Vents",49.061398,2.501297,0,0,OIF:SA:8:30401,Europe/Paris,,OIF, +OIF:SP:8:30402,1,"Allée du Bois",49.060497,2.502989,0,0,OIF:SA:8:30402,Europe/Paris,,OIF, +OIF:SP:8:30403,1,"Église",49.068338,2.477645,0,0,OIF:SA:8:30403,Europe/Paris,,OIF, +OIF:SP:8:30404,1,"École Marcel Pagnol",49.058826,2.502478,0,0,OIF:SA:8:30404,Europe/Paris,,OIF, +OIF:SP:8:30405,1,"Général Leclerc",49.057031,2.500654,0,0,OIF:SA:88:890,Europe/Paris,,OIF, +OIF:SP:8:30406,1,"Gymnase",49.061355,2.499382,0,0,OIF:SA:88:891,Europe/Paris,,OIF, +OIF:SP:8:30407,1,"Gymnase",49.061274,2.499669,0,0,OIF:SA:88:891,Europe/Paris,,OIF, +OIF:SP:8:30411,1,"Route de Marly",49.058074,2.500534,0,0,OIF:SA:88:893,Europe/Paris,,OIF, +OIF:SP:8:30412,1,"Ruelle du Puits",49.067938,2.473979,0,0,OIF:SA:8:30412,Europe/Paris,,OIF, +OIF:SP:8:30413,1,"Ferme du Temple",49.069807,2.481643,0,0,OIF:SA:8:30413,Europe/Paris,,OIF, +OIF:SP:8:30414,1,"Les Deux Cèdres",49.002156,2.528603,0,0,OIF:SA:59:3666650,Europe/Paris,,OIF, +OIF:SP:8:30415,1,"Les Deux Cèdres",49.001878,2.528042,0,0,OIF:SA:59:3666650,Europe/Paris,,OIF, +OIF:SP:8:30416,1,"Airapolis",49.006942,2.519373,0,0,OIF:SA:88:894,Europe/Paris,,OIF, +OIF:SP:8:30417,1,"Airapolis",49.00678,2.519509,0,0,OIF:SA:88:894,Europe/Paris,,OIF, +OIF:SP:8:30418,1,"Route de l'Arpenteur",49.006089,2.506803,0,0,OIF:SA:20:478,Europe/Paris,,OIF, +OIF:SP:8:30419,1,"Route de l'Arpenteur",49.006207,2.506079,0,0,OIF:SA:20:478,Europe/Paris,,OIF, +OIF:SP:8:30420,1,"Passerelle",49.003557,2.511698,0,0,OIF:SA:88:896,Europe/Paris,,OIF, +OIF:SP:8:30421,1,"Passerelle",49.003798,2.512505,0,0,OIF:SA:88:896,Europe/Paris,,OIF, +OIF:SP:8:30422,1,"Chesneau",49.006543,2.521803,0,0,OIF:SA:7:10427,Europe/Paris,,OIF, +OIF:SP:8:30423,1,"Chesneau",49.006687,2.522077,0,0,OIF:SA:7:10427,Europe/Paris,,OIF, +OIF:SP:8:30424,1,"Convention",49.007837,2.516234,0,0,OIF:SA:88:898,Europe/Paris,,OIF, +OIF:SP:8:30425,1,"Convention",49.007756,2.516179,0,0,OIF:SA:88:898,Europe/Paris,,OIF, +OIF:SP:8:30426,1,"Belle Etoile 165",48.982365,2.506493,0,0,OIF:SA:70:11690,Europe/Paris,,OIF, +OIF:SP:8:30427,1,"Belle Etoile 170",48.982491,2.506521,0,0,OIF:SA:8:30427,Europe/Paris,,OIF, +OIF:SP:8:30428,1,"Belle Etoile 277",48.987039,2.512434,0,0,OIF:SA:70:8707,Europe/Paris,,OIF, +OIF:SP:8:30429,1,"Belle Etoile 277",48.987218,2.512913,0,0,OIF:SA:70:8707,Europe/Paris,,OIF, +OIF:SP:8:30430,1,"Belle Etoile 57",48.979165,2.500885,0,0,OIF:SA:7:10436,Europe/Paris,,OIF, +OIF:SP:8:30431,1,"Belle Etoile 69",48.979084,2.50124,0,0,OIF:SA:7:10437,Europe/Paris,,OIF, +OIF:SP:8:30432,1,"Entretien Nord",49.011827,2.51633,0,0,OIF:SA:20:480,Europe/Paris,,OIF, +OIF:SP:8:30433,1,"Entretien Nord",49.012024,2.516481,0,0,OIF:SA:20:480,Europe/Paris,,OIF, +OIF:SP:8:30434,1,"Marguilliers",48.994498,2.523972,0,0,OIF:SA:8798212,Europe/Paris,,OIF, +OIF:SP:8:30435,1,"Marguilliers",48.994661,2.523427,0,0,OIF:SA:8798212,Europe/Paris,,OIF, +OIF:SP:8:30436,1,"Rue du Noyer",49.003208,2.504431,0,0,OIF:SA:88:902,Europe/Paris,,OIF, +OIF:SP:8:30437,1,"Orangerie",49.002574,2.519904,0,0,OIF:SA:7:10446,Europe/Paris,,OIF, +OIF:SP:8:30438,1,"Orangerie",49.002835,2.519795,0,0,OIF:SA:7:10446,Europe/Paris,,OIF, +OIF:SP:8:30439,1,"Bois de la Pie 351",48.9907,2.515683,0,0,OIF:SA:59:3666614,Europe/Paris,,OIF, +OIF:SP:8:30440,1,"Parc Mail 1",49.007644,2.493749,0,0,OIF:SA:88:903,Europe/Paris,,OIF, +OIF:SP:8:30441,1,"Parc Mail 2",49.004664,2.490954,0,0,OIF:SA:88:904,Europe/Paris,,OIF, +OIF:SP:8:30442,1,"Parc du Moulin",49.004038,2.501647,0,0,OIF:SA:88:905,Europe/Paris,,OIF, +OIF:SP:8:30443,1,"Parc des Nations",48.989855,2.516199,0,0,OIF:SA:59:3666793,Europe/Paris,,OIF, +OIF:SP:8:30444,1,"Roissy Parc",49.005371,2.506364,0,0,OIF:SA:88:906,Europe/Paris,,OIF, +OIF:SP:8:30445,1,"Roissy Parc",49.005542,2.506405,0,0,OIF:SA:88:906,Europe/Paris,,OIF, +OIF:SP:8:30446,1,"Vergers",48.998239,2.516419,0,0,OIF:SA:7:10452,Europe/Paris,,OIF, +OIF:SP:8:30447,1,"Vergers",48.998338,2.516447,0,0,OIF:SA:7:10452,Europe/Paris,,OIF, +OIF:SP:8:30448,1,"Village",49.003882,2.516425,0,0,OIF:SA:88:908,Europe/Paris,,OIF, +OIF:SP:8:30449,1,"Village",49.004099,2.515962,0,0,OIF:SA:88:908,Europe/Paris,,OIF, +OIF:SP:8:30450,1,"Roissy - Zone Technique",49.010786,2.532474,0,0,OIF:SA:20:482,Europe/Paris,,OIF, +OIF:SP:8:30451,1,"Roissy - Zone Technique",49.011503,2.5332,0,0,OIF:SA:20:482,Europe/Paris,,OIF, +OIF:SP:8:30452,1,"Albert Camus",48.977412,2.372182,0,0,OIF:SA:59799,Europe/Paris,,OIF, +OIF:SP:8:30453,1,"Forum des Cholettes",48.978201,2.376346,0,0,OIF:SA:59801,Europe/Paris,,OIF, +OIF:SP:8:30454,1,"Les Flanades T5",48.976376,2.378925,0,0,OIF:SA:59801,Europe/Paris,,OIF, +OIF:SP:8:30455,1,"Haut du Roi",48.982142,2.388637,0,0,OIF:SA:8:30455,Europe/Paris,,OIF, +OIF:SP:8:30456,1,"Haut du Roi",48.982214,2.388897,0,0,OIF:SA:8:30455,Europe/Paris,,OIF, +OIF:SP:8:30457,1,"Les Lochères",48.97845,2.385152,0,0,OIF:SA:59805,Europe/Paris,,OIF, +OIF:SP:8:30458,1,"Paul Valéry",48.979117,2.380457,0,0,OIF:SA:59803,Europe/Paris,,OIF, +OIF:SP:8:30459,1,"Suzanne Valadon",48.973428,2.38194,0,0,OIF:SA:59:4230069,Europe/Paris,,OIF, +OIF:SP:8:30460,1,"Mozart - Malesherbes",48.987583,2.378907,0,0,OIF:SA:59:4238708,Europe/Paris,,OIF, +OIF:SP:8:30461,1,"Mozart - Malesherbes",48.987969,2.378853,0,0,OIF:SA:59:4238708,Europe/Paris,,OIF, +OIF:SP:8:30462,1,"Sous Préfecture",48.988796,2.37716,0,0,OIF:SA:8:30462,Europe/Paris,,OIF, +OIF:SP:8:30463,1,"Sous Préfecture",48.989498,2.376082,0,0,OIF:SA:8:30462,Europe/Paris,,OIF, +OIF:SP:8:30464,1,"Théodore Bullier",48.991116,2.372546,0,0,OIF:SA:59:4238706,Europe/Paris,,OIF, +OIF:SP:8:30465,1,"Théodore Bullier",48.991026,2.374117,0,0,OIF:SA:59:4238706,Europe/Paris,,OIF, +OIF:SP:8:30466,1,"Charles de Gaulle",48.99537,2.357663,0,0,OIF:SA:8:30466,Europe/Paris,,OIF, +OIF:SP:8:30467,1,"Charles de Gaulle",48.995424,2.357349,0,0,OIF:SA:8:30466,Europe/Paris,,OIF, +OIF:SP:8:30468,1,"Sarcelles - Saint-Brice Train H",48.994802,2.367332,0,0,OIF:SA:8727638,Europe/Paris,,OIF, +OIF:SP:8:30469,1,"Marlière",48.995765,2.361105,0,0,OIF:SA:8:30469,Europe/Paris,,OIF, +OIF:SP:8:30470,1,"Marlière",48.995864,2.361542,0,0,OIF:SA:8:30469,Europe/Paris,,OIF, +OIF:SP:8:30471,1,"ZI les Ecricrolles",48.990221,2.358795,0,0,OIF:SA:8:30471,Europe/Paris,,OIF, +OIF:SP:8:30472,1,"Rue de Giez",49.122195,2.394665,0,0,OIF:SA:8:30472,Europe/Paris,,OIF, +OIF:SP:8:30473,1,"Rue de Giez",49.12143,2.396361,0,0,OIF:SA:8:30472,Europe/Paris,,OIF, +OIF:SP:8:30474,1,"Cité Langevin",48.938781,2.36086,0,0,OIF:SA:59541,Europe/Paris,,OIF, +OIF:SP:8:30475,1,"Cité Langevin",48.938952,2.360792,0,0,OIF:SA:59541,Europe/Paris,,OIF, +OIF:SP:8:30476,1,"Henri Barbusse",48.946732,2.37096,0,0,OIF:SA:59:4179730,Europe/Paris,,OIF, +OIF:SP:8:30477,1,"Henri Barbusse",48.946992,2.371206,0,0,OIF:SA:59:4179730,Europe/Paris,,OIF, +OIF:SP:8:30478,1,"Lycée Paul Éluard",48.941018,2.364408,0,0,OIF:SA:59:4211761,Europe/Paris,,OIF, +OIF:SP:8:30479,1,"Lycée Paul Éluard",48.941467,2.364572,0,0,OIF:SA:59:4211761,Europe/Paris,,OIF, +OIF:SP:8:30480,1,"Marché de Saint-Denis T1 T5",48.939312,2.355486,0,0,OIF:SA:59101,Europe/Paris,,OIF, +OIF:SP:8:30481,1,"Université Paris 8",48.946383,2.36508,0,0,OIF:SA:59540,Europe/Paris,,OIF, +OIF:SP:8:30482,1,"Université Paris 8",48.946563,2.364984,0,0,OIF:SA:59540,Europe/Paris,,OIF, +OIF:SP:8:30483,1,"Collège Pablo Neruda",48.963684,2.386503,0,0,OIF:SA:8:30483,Europe/Paris,,OIF, +OIF:SP:8:30484,1,"Collège Pablo Neruda",48.963137,2.385479,0,0,OIF:SA:8:30483,Europe/Paris,,OIF, +OIF:SP:8:30485,1,"Espace Angela Davis",48.950892,2.394937,0,0,OIF:SA:8:30485,Europe/Paris,,OIF, +OIF:SP:8:30486,1,"Francis Auffray",48.967857,2.378441,0,0,OIF:SA:8:30486,Europe/Paris,,OIF, +OIF:SP:8:30487,1,"Francis Auffray",48.967893,2.378154,0,0,OIF:SA:8:30486,Europe/Paris,,OIF, +OIF:SP:8:30488,1,"Fontenay",48.968495,2.378059,0,0,OIF:SA:8:30488,Europe/Paris,,OIF, +OIF:SP:8:30489,1,"Fontenay",48.969079,2.379329,0,0,OIF:SA:8:30488,Europe/Paris,,OIF, +OIF:SP:8:30490,1,"Le Globe",48.949997,2.3866,0,0,OIF:SA:59:3972571,Europe/Paris,,OIF, +OIF:SP:8:30491,1,"Le Globe",48.949594,2.384989,0,0,OIF:SA:59:3972571,Europe/Paris,,OIF, +OIF:SP:8:30492,1,"Mairie de Stains",48.956308,2.383085,0,0,OIF:SA:59:4179745,Europe/Paris,,OIF, +OIF:SP:8:30493,1,"Mairie de Stains",48.956307,2.383276,0,0,OIF:SA:59:4179745,Europe/Paris,,OIF, +OIF:SP:8:30494,1,"Le Maroc",48.971065,2.380805,0,0,OIF:SA:8:30494,Europe/Paris,,OIF, +OIF:SP:8:30495,1,"Le Maroc",48.971145,2.381132,0,0,OIF:SA:8:30494,Europe/Paris,,OIF, +OIF:SP:8:30496,1,"Moulin Neuf",48.95137,2.393028,0,0,OIF:SA:59:4000568,Europe/Paris,,OIF, +OIF:SP:8:30497,1,"Moulin Neuf",48.951765,2.392892,0,0,OIF:SA:59:4000568,Europe/Paris,,OIF, +OIF:SP:8:30498,1,"Marcel Pointet",48.951554,2.381866,0,0,OIF:SA:59:4179742,Europe/Paris,,OIF, +OIF:SP:8:30499,1,"Marcel Pointet",48.951662,2.38203,0,0,OIF:SA:59:4179742,Europe/Paris,,OIF, +OIF:SP:8:30501,1,"Parouzets",48.960271,2.381805,0,0,OIF:SA:8:30501,Europe/Paris,,OIF, +OIF:SP:8:30502,1,"Parouzets",48.960145,2.382092,0,0,OIF:SA:8:30501,Europe/Paris,,OIF, +OIF:SP:8:30503,1,"Poste Avenir",48.967101,2.382139,0,0,OIF:SA:8:30503,Europe/Paris,,OIF, +OIF:SP:8:30504,1,"Poste Avenir",48.967101,2.38233,0,0,OIF:SA:8:30503,Europe/Paris,,OIF, +OIF:SP:8:30505,1,"Pelletier",48.95407,2.38225,0,0,OIF:SA:8:30505,Europe/Paris,,OIF, +OIF:SP:8:30506,1,"Pelletier",48.953971,2.382414,0,0,OIF:SA:8:30505,Europe/Paris,,OIF, +OIF:SP:8:30507,1,"Les Sablons",48.973124,2.375824,0,0,OIF:SA:59:6741438,Europe/Paris,,OIF, +OIF:SP:8:30508,1,"Les Sablons",48.973178,2.376097,0,0,OIF:SA:59:6741438,Europe/Paris,,OIF, +OIF:SP:8:30509,1,"Paul Vaillant Couturier",48.94875,2.38155,0,0,OIF:SA:59:5726265,Europe/Paris,,OIF, +OIF:SP:8:30510,1,"Paul Vaillant Couturier",48.948975,2.381591,0,0,OIF:SA:59:5726265,Europe/Paris,,OIF, +OIF:SP:8:30511,1,"Stalingrad",48.953096,2.390573,0,0,OIF:SA:8:30511,Europe/Paris,,OIF, +OIF:SP:8:30512,1,"Stalingrad",48.953231,2.390437,0,0,OIF:SA:8:30511,Europe/Paris,,OIF, +OIF:SP:8:30513,1,"Treize Saules",49.085109,2.572798,0,0,OIF:SA:8:30513,Europe/Paris,,OIF, +OIF:SP:8:30514,1,"Treize Saules",49.085027,2.573058,0,0,OIF:SA:8:30513,Europe/Paris,,OIF, +OIF:SP:8:30515,1,"Jabeline",49.087842,2.57173,0,0,OIF:SA:8:30515,Europe/Paris,,OIF, +OIF:SP:8:30516,1,"Jabeline",49.088104,2.571348,0,0,OIF:SA:8:30515,Europe/Paris,,OIF, +OIF:SP:8:30517,1,"J.P.G",49.091314,2.546119,0,0,OIF:SA:8:30517,Europe/Paris,,OIF, +OIF:SP:8:30518,1,"J.P.G",49.091403,2.54627,0,0,OIF:SA:8:30517,Europe/Paris,,OIF, +OIF:SP:8:30519,1,"ZI Saint-Ladre",49.093123,2.528147,0,0,OIF:SA:8:30519,Europe/Paris,,OIF, +OIF:SP:8:30520,1,"ZI Saint-Ladre",49.093329,2.528285,0,0,OIF:SA:8:30519,Europe/Paris,,OIF, +OIF:SP:8:30521,1,"Lycée Léonard de Vinci",49.089194,2.560189,0,0,OIF:SA:8:30521,Europe/Paris,,OIF, +OIF:SP:8:30522,1,"Lycée Léonard de Vinci",49.088784,2.558531,0,0,OIF:SA:8:30521,Europe/Paris,,OIF, +OIF:SP:8:30523,1,"Moulin",49.091364,2.567669,0,0,OIF:SA:8:30523,Europe/Paris,,OIF, +OIF:SP:8:30524,1,"Moulin",49.091543,2.567793,0,0,OIF:SA:8:30523,Europe/Paris,,OIF, +OIF:SP:8:30525,1,"Novotel",49.089109,2.547848,0,0,OIF:SA:8:30525,Europe/Paris,,OIF, +OIF:SP:8:30526,1,"Novotel",49.088605,2.548365,0,0,OIF:SA:8:30525,Europe/Paris,,OIF, +OIF:SP:8:30527,1,"ZI la Pépinière",49.089691,2.527916,0,0,OIF:SA:8:30527,Europe/Paris,,OIF, +OIF:SP:8:30528,1,"Bergerie",49.09703,2.544979,0,0,OIF:SA:8:30528,Europe/Paris,,OIF, +OIF:SP:8:30529,1,"Bergerie",49.097122,2.544104,0,0,OIF:SA:8:30528,Europe/Paris,,OIF, +OIF:SP:8:30530,1,"Cartoucherie",49.093283,2.545347,0,0,OIF:SA:8:30530,Europe/Paris,,OIF, +OIF:SP:8:30531,1,"Cartoucherie",49.09313,2.545552,0,0,OIF:SA:8:30530,Europe/Paris,,OIF, +OIF:SP:8:30532,1,"Chemin du Gué",49.101573,2.547105,0,0,OIF:SA:8:30532,Europe/Paris,,OIF, +OIF:SP:8:30533,1,"Chemin du Gué",49.101681,2.547133,0,0,OIF:SA:8:30532,Europe/Paris,,OIF, +OIF:SP:8:30534,1,"Colombier",49.101778,2.543356,0,0,OIF:SA:8:30534,Europe/Paris,,OIF, +OIF:SP:8:30535,1,"Colombier",49.101697,2.543219,0,0,OIF:SA:8:30534,Europe/Paris,,OIF, +OIF:SP:8:30536,1,"Centre Ville",49.095882,2.543866,0,0,OIF:SA:8:30536,Europe/Paris,,OIF, +OIF:SP:8:30537,1,"Centre Ville",49.095819,2.544208,0,0,OIF:SA:8:30536,Europe/Paris,,OIF, +OIF:SP:8:30538,1,"Les Grands Prés",49.099694,2.548069,0,0,OIF:SA:8:30538,Europe/Paris,,OIF, +OIF:SP:8:30539,1,"Les Grands Prés",49.099721,2.548178,0,0,OIF:SA:8:30538,Europe/Paris,,OIF, +OIF:SP:8:30540,1,"Jardin Frémin",49.102198,2.544384,0,0,OIF:SA:8:30540,Europe/Paris,,OIF, +OIF:SP:8:30541,1,"Jardin Frémin",49.102225,2.544494,0,0,OIF:SA:8:30540,Europe/Paris,,OIF, +OIF:SP:8:30542,1,"Mairie",49.097518,2.543435,0,0,OIF:SA:8:30542,Europe/Paris,,OIF, +OIF:SP:8:30543,1,"Mairie",49.097635,2.543257,0,0,OIF:SA:8:30542,Europe/Paris,,OIF, +OIF:SP:8:30544,1,"Monument",49.098155,2.538785,0,0,OIF:SA:8:30544,Europe/Paris,,OIF, +OIF:SP:8:30545,1,"Monument",49.098371,2.538717,0,0,OIF:SA:8:30544,Europe/Paris,,OIF, +OIF:SP:8:30546,1,"Petit Argenteuil",49.099172,2.532685,0,0,OIF:SA:8:30546,Europe/Paris,,OIF, +OIF:SP:8:30547,1,"Petit Argenteuil",49.099379,2.532618,0,0,OIF:SA:8:30546,Europe/Paris,,OIF, +OIF:SP:8:30548,1,"Porte des Champs",49.091708,2.53605,0,0,OIF:SA:8:30548,Europe/Paris,,OIF, +OIF:SP:8:30549,1,"Avenue Bocquet",49.010416,2.483143,0,0,OIF:SA:88:918,Europe/Paris,,OIF, +OIF:SP:8:30550,1,"Avenue Bocquet",49.010838,2.483431,0,0,OIF:SA:88:918,Europe/Paris,,OIF, +OIF:SP:8:30551,1,"Les Charmilles",49.005244,2.47186,0,0,OIF:SA:88:920,Europe/Paris,,OIF, +OIF:SP:8:30552,1,"Les Charmilles",49.00528,2.472051,0,0,OIF:SA:88:920,Europe/Paris,,OIF, +OIF:SP:8:30553,1,"Chemin de Saint-Denis",49.007387,2.476154,0,0,OIF:SA:88:922,Europe/Paris,,OIF, +OIF:SP:8:30554,1,"Chemin de Saint-Denis",49.007872,2.476606,0,0,OIF:SA:88:922,Europe/Paris,,OIF, +OIF:SP:8:30555,1,"Mairie",49.002647,2.471566,0,0,OIF:SA:88:924,Europe/Paris,,OIF, +OIF:SP:8:30556,1,"Mairie",49.00254,2.47091,0,0,OIF:SA:88:924,Europe/Paris,,OIF, +OIF:SP:8:30557,1,"Pont Chinois",49.007967,2.471744,0,0,OIF:SA:88:926,Europe/Paris,,OIF, +OIF:SP:8:30558,1,"Pont Chinois",49.007787,2.471825,0,0,OIF:SA:88:926,Europe/Paris,,OIF, +OIF:SP:8:30559,1,"Pont à l'Huile",48.999435,2.467146,0,0,OIF:SA:88:928,Europe/Paris,,OIF, +OIF:SP:8:30560,1,"Pont à l'Huile",49.001449,2.465922,0,0,OIF:SA:88:928,Europe/Paris,,OIF, +OIF:SP:8:30561,1,"La Talmouse",49.010625,2.488267,0,0,OIF:SA:88:930,Europe/Paris,,OIF, +OIF:SP:8:30562,1,"La Talmouse",49.011182,2.488418,0,0,OIF:SA:88:930,Europe/Paris,,OIF, +OIF:SP:8:30563,1,"Aéroville",48.991011,2.524274,0,0,OIF:SA:11:259,Europe/Paris,,OIF, +OIF:SP:8:30564,1,"Aéroville",48.990975,2.524028,0,0,OIF:SA:11:259,Europe/Paris,,OIF, +OIF:SP:8:30565,1,"Cargo Centre",48.99816,2.527031,0,0,OIF:SA:7:10502,Europe/Paris,,OIF, +OIF:SP:8:30566,1,"Cargo Centre",48.998576,2.525216,0,0,OIF:SA:7:10502,Europe/Paris,,OIF, +OIF:SP:8:30567,1,"Rue du Châpitre",49.002477,2.535584,0,0,OIF:SA:59:3666608,Europe/Paris,,OIF, +OIF:SP:8:30568,1,"Rue du Châpitre",49.002577,2.534915,0,0,OIF:SA:59:3666608,Europe/Paris,,OIF, +OIF:SP:8:30570,1,"Terminal 2 - Route de Service",49.00365,2.558412,0,0,OIF:SA:70:23366,Europe/Paris,,OIF, +OIF:SP:8:30571,1,"Rue des Vignes",49.004559,2.548022,0,0,OIF:SA:59:3666609,Europe/Paris,,OIF, +OIF:SP:8:30572,1,"Rue des Vignes",49.004693,2.548446,0,0,OIF:SA:59:3666609,Europe/Paris,,OIF, +OIF:SP:8:30573,1,"Les Dix Arpents",49.0671,2.573509,0,0,OIF:SA:6:297,Europe/Paris,,OIF, +OIF:SP:8:30574,1,"Les Dix Arpents",49.067243,2.573647,0,0,OIF:SA:6:297,Europe/Paris,,OIF, +OIF:SP:8:30575,1,"Choisy aux Bœufs",49.050373,2.575223,0,0,OIF:SA:8:30575,Europe/Paris,,OIF, +OIF:SP:8:30576,1,"Choisy aux Bœufs",49.049779,2.575809,0,0,OIF:SA:8:30575,Europe/Paris,,OIF, +OIF:SP:8:30577,1,"Vémars Centre",49.069035,2.567117,0,0,OIF:SA:6:299,Europe/Paris,,OIF, +OIF:SP:8:30578,1,"Vémars Centre",49.068236,2.566704,0,0,OIF:SA:6:299,Europe/Paris,,OIF, +OIF:SP:8:30579,1,"François Mauriac",49.070606,2.572486,0,0,OIF:SA:8:30579,Europe/Paris,,OIF, +OIF:SP:8:30580,1,"François Mauriac",49.070714,2.572527,0,0,OIF:SA:8:30579,Europe/Paris,,OIF, +OIF:SP:8:30581,1,"Les Mitelles",49.068084,2.575743,0,0,OIF:SA:8:30581,Europe/Paris,,OIF, +OIF:SP:8:30582,1,"Les Mitelles",49.068065,2.575866,0,0,OIF:SA:8:30581,Europe/Paris,,OIF, +OIF:SP:8:30583,1,"Les Quatre Vents",49.130759,2.367453,0,0,OIF:SA:8:30583,Europe/Paris,,OIF, +OIF:SP:8:30584,1,"Les Quatre Vents",49.130669,2.367426,0,0,OIF:SA:8:30583,Europe/Paris,,OIF, +OIF:SP:8:30585,1,"Collège Blaise Pascal",49.124478,2.368641,0,0,OIF:SA:5:40273,Europe/Paris,,OIF, +OIF:SP:8:30586,1,"Collège Blaise Pascal",49.124523,2.368271,0,0,OIF:SA:5:40273,Europe/Paris,,OIF, +OIF:SP:8:30587,1,"Fréchot",49.130165,2.369753,0,0,OIF:SA:5:40278,Europe/Paris,,OIF, +OIF:SP:8:30588,1,"Fréchot",49.129887,2.370219,0,0,OIF:SA:5:40278,Europe/Paris,,OIF, +OIF:SP:8:30589,1,"La Garenne",49.127326,2.370436,0,0,OIF:SA:8:30589,Europe/Paris,,OIF, +OIF:SP:8:30590,1,"La Garenne",49.127326,2.37019,0,0,OIF:SA:8:30589,Europe/Paris,,OIF, +OIF:SP:8:30591,1,"Viarmes Train H",49.116876,2.36828,0,0,OIF:SA:8727656,Europe/Paris,,OIF, +OIF:SP:8:30592,1,"Plaine de France",48.975707,2.506075,0,0,OIF:SA:70:29243,Europe/Paris,,OIF, +OIF:SP:8:30593,1,"Plaine de France",48.97576,2.506389,0,0,OIF:SA:70:29243,Europe/Paris,,OIF, +OIF:SP:8:30594,1,"Jardin Carré",49.058375,2.538711,0,0,OIF:SA:8:30594,Europe/Paris,,OIF, +OIF:SP:8:30595,1,"Jardin Carré",49.058519,2.538548,0,0,OIF:SA:8:30594,Europe/Paris,,OIF, +OIF:SP:8:30596,1,"Mairie",49.057084,2.542247,0,0,OIF:SA:6:303,Europe/Paris,,OIF, +OIF:SP:8:30597,1,"Mairie",49.057327,2.542344,0,0,OIF:SA:6:303,Europe/Paris,,OIF, +OIF:SP:8:30598,1,"La Sucrerie",49.062592,2.526243,0,0,OIF:SA:8:30598,Europe/Paris,,OIF, +OIF:SP:8:30599,1,"La Sucrerie",49.062671,2.527569,0,0,OIF:SA:8:30598,Europe/Paris,,OIF, +OIF:SP:8:30600,1,"Baillon",49.147755,2.40098,0,0,OIF:SA:8:30009,Europe/Paris,,OIF, +OIF:SP:8:30601,1,"Bois des Bonnets",49.138228,2.404735,0,0,OIF:SA:8:30601,Europe/Paris,,OIF, +OIF:SP:8:30602,1,"Bois des Bonnets",49.138193,2.404584,0,0,OIF:SA:8:30601,Europe/Paris,,OIF, +OIF:SP:8:30603,1,"Beau Jay",49.079957,2.35317,0,0,OIF:SA:8:30603,Europe/Paris,,OIF, +OIF:SP:8:30604,1,"Beau Jay",49.079957,2.352937,0,0,OIF:SA:8:30603,Europe/Paris,,OIF, +OIF:SP:8:30605,1,"Belloy Saint-Martin Train H",49.097496,2.362357,0,0,OIF:SA:8727655,Europe/Paris,,OIF, +OIF:SP:8:30606,1,"Belloy Saint-Martin Train H",49.097703,2.362275,0,0,OIF:SA:8727655,Europe/Paris,,OIF, +OIF:SP:8:30607,1,"Place du Souvenir",49.088364,2.372012,0,0,OIF:SA:5:40011,Europe/Paris,,OIF, +OIF:SP:8:30608,1,"Place du Souvenir",49.088059,2.371437,0,0,OIF:SA:5:40011,Europe/Paris,,OIF, +OIF:SP:8:30609,1,"Église",49.066284,2.457291,0,0,OIF:SA:8:30609,Europe/Paris,,OIF, +OIF:SP:8:30610,1,"Église",49.066374,2.457236,0,0,OIF:SA:8:30609,Europe/Paris,,OIF, +OIF:SP:8:30611,1,"Centre",49.128814,2.533565,0,0,OIF:SA:8:30611,Europe/Paris,,OIF, +OIF:SP:8:30612,1,"Centre",49.128463,2.533865,0,0,OIF:SA:8:30611,Europe/Paris,,OIF, +OIF:SP:8:30613,1,"Rue de la Glorie",49.127262,2.531957,0,0,OIF:SA:8:30613,Europe/Paris,,OIF, +OIF:SP:8:30614,1,"Rue de la Glorie",49.126157,2.531843,0,0,OIF:SA:8:30613,Europe/Paris,,OIF, +OIF:SP:8:30615,1,"Gymnase",49.121367,2.52639,0,0,OIF:SA:8:30615,Europe/Paris,,OIF, +OIF:SP:8:30616,1,"Bruyères",49.139432,2.469417,0,0,OIF:SA:8:30616,Europe/Paris,,OIF, +OIF:SP:8:30617,1,"Crochet",49.139082,2.484563,0,0,OIF:SA:8:30617,Europe/Paris,,OIF, +OIF:SP:8:30618,1,"Crochet",49.138965,2.484768,0,0,OIF:SA:8:30617,Europe/Paris,,OIF, +OIF:SP:8:30619,1,"Demeure de France",49.141409,2.46141,0,0,OIF:SA:8:30619,Europe/Paris,,OIF, +OIF:SP:8:30620,1,"Demeure de France",49.14122,2.461204,0,0,OIF:SA:8:30619,Europe/Paris,,OIF, +OIF:SP:8:30621,1,"Place Blanche",49.142806,2.473507,0,0,OIF:SA:8:30621,Europe/Paris,,OIF, +OIF:SP:8:30622,1,"Place Blanche",49.142618,2.473493,0,0,OIF:SA:8:30621,Europe/Paris,,OIF, +OIF:SP:8:30623,1,"Roncier",49.139842,2.464926,0,0,OIF:SA:8:30623,Europe/Paris,,OIF, +OIF:SP:8:30624,1,"Roncier",49.139761,2.464625,0,0,OIF:SA:8:30623,Europe/Paris,,OIF, +OIF:SP:8:30625,1,"Centre",49.087607,2.414655,0,0,OIF:SA:8:30625,Europe/Paris,,OIF, +OIF:SP:8:30626,1,"Centre",49.08731,2.41501,0,0,OIF:SA:8:30625,Europe/Paris,,OIF, +OIF:SP:8:30627,1,"Croix de la Chaise",49.055168,2.458345,0,0,OIF:SA:8:30060,Europe/Paris,,OIF, +OIF:SP:8:30628,1,"Clos Marie",49.049603,2.451496,0,0,OIF:SA:8:30628,Europe/Paris,,OIF, +OIF:SP:8:30629,1,"Clos Marie",49.049783,2.451729,0,0,OIF:SA:8:30628,Europe/Paris,,OIF, +OIF:SP:8:30630,1,"Poteau de Marly",49.093879,2.503247,0,0,OIF:SA:88:781,Europe/Paris,,OIF, +OIF:SP:8:30631,1,"Poteau de Marly",49.093529,2.502877,0,0,OIF:SA:88:781,Europe/Paris,,OIF, +OIF:SP:8:30632,1,"Collège Philippe Auguste",48.986892,2.437225,0,0,OIF:SA:8:30632,Europe/Paris,,OIF, +OIF:SP:8:30633,1,"Le Gué",49.07922,2.443067,0,0,OIF:SA:5:40130,Europe/Paris,,OIF, +OIF:SP:8:30634,1,"Le Gué",49.079228,2.443286,0,0,OIF:SA:5:40130,Europe/Paris,,OIF, +OIF:SP:8:30635,1,"Parc du Château",49.076058,2.441296,0,0,OIF:SA:8:30635,Europe/Paris,,OIF, +OIF:SP:8:30636,1,"Parc du Château",49.075878,2.441323,0,0,OIF:SA:8:30635,Europe/Paris,,OIF, +OIF:SP:8:30637,1,"Carrefour du Plessis Luzarches",49.097062,2.447154,0,0,OIF:SA:5:40132,Europe/Paris,,OIF, +OIF:SP:8:30638,1,"Carrefour du Plessis Luzarches",49.097016,2.447401,0,0,OIF:SA:5:40132,Europe/Paris,,OIF, +OIF:SP:8:30639,1,"Thimécourt Centre",49.104909,2.444023,0,0,OIF:SA:8:30639,Europe/Paris,,OIF, +OIF:SP:8:30640,1,"Collège François Mauriac",49.043909,2.508814,0,0,OIF:SA:8:30640,Europe/Paris,,OIF, +OIF:SP:8:30641,1,"Collège A. de Noailles / Lycée G. de Nerval",49.107153,2.424594,0,0,OIF:SA:8:30641,Europe/Paris,,OIF, +OIF:SP:8:30642,1,"Route de Survilliers",49.109383,2.433768,0,0,OIF:SA:8:30642,Europe/Paris,,OIF, +OIF:SP:8:30643,1,"Route de Survilliers",49.109311,2.433699,0,0,OIF:SA:8:30642,Europe/Paris,,OIF, +OIF:SP:8:30644,1,"Collège Françoise Dolto",49.087172,2.505647,0,0,OIF:SA:88:875,Europe/Paris,,OIF, +OIF:SP:8:30645,1,"Rue des Prés",49.083687,2.504993,0,0,OIF:SA:88:878,Europe/Paris,,OIF, +OIF:SP:8:30646,1,"Mairie",49.051573,2.399945,0,0,OIF:SA:8:30646,Europe/Paris,,OIF, +OIF:SP:8:30647,1,"Place des Fêtes",49.053435,2.397527,0,0,OIF:SA:8:30647,Europe/Paris,,OIF, +OIF:SP:8:30648,1,"Institut Saint-Dominique",49.109185,2.605292,0,0,OIF:SA:6:134,Europe/Paris,,OIF, +OIF:SP:8:30649,1,"Valdempierre",49.139299,2.332797,0,0,OIF:SA:5:40158,Europe/Paris,,OIF, +OIF:SP:8:30650,1,"Blancs Fossés",49.133178,2.511878,0,0,OIF:SA:8:30650,Europe/Paris,,OIF, +OIF:SP:8:30651,1,"Blancs Fossés",49.133179,2.511467,0,0,OIF:SA:8:30650,Europe/Paris,,OIF, +OIF:SP:8:30652,1,"Église",49.131136,2.513541,0,0,OIF:SA:8:30652,Europe/Paris,,OIF, +OIF:SP:8:30653,1,"Église",49.131262,2.513268,0,0,OIF:SA:8:30652,Europe/Paris,,OIF, +OIF:SP:8:30654,1,"Marly",49.12986,2.513893,0,0,OIF:SA:8:30654,Europe/Paris,,OIF, +OIF:SP:8:30655,1,"Marly",49.130049,2.513592,0,0,OIF:SA:8:30654,Europe/Paris,,OIF, +OIF:SP:8:30656,1,"Les Pâturages",49.127922,2.517843,0,0,OIF:SA:8:30656,Europe/Paris,,OIF, +OIF:SP:8:30657,1,"Les Pâturages",49.127859,2.517542,0,0,OIF:SA:8:30656,Europe/Paris,,OIF, +OIF:SP:8:30658,1,"Orry-la-Ville RER D",49.139093,2.490342,0,0,OIF:SA:8:30658,Europe/Paris,,OIF, +OIF:SP:8:30659,1,"Blancs Manteaux",49.033215,2.414642,0,0,OIF:SA:8:30659,Europe/Paris,,OIF, +OIF:SP:8:30660,1,"Les Tilleuls",49.096373,2.453092,0,0,OIF:SA:5:40226,Europe/Paris,,OIF, +OIF:SP:8:30661,1,"Quatre Vents",49.061542,2.50116,0,0,OIF:SA:8:30401,Europe/Paris,,OIF, +OIF:SP:8:30662,1,"Allée du Bois",49.06038,2.503249,0,0,OIF:SA:8:30402,Europe/Paris,,OIF, +OIF:SP:8:30664,1,"Église",49.068643,2.477797,0,0,OIF:SA:8:30403,Europe/Paris,,OIF, +OIF:SP:8:30665,1,"École Marcel Pagnol",49.058207,2.501997,0,0,OIF:SA:8:30404,Europe/Paris,,OIF, +OIF:SP:8:30666,1,"Ruelle du Puits",49.068055,2.473843,0,0,OIF:SA:8:30412,Europe/Paris,,OIF, +OIF:SP:8:30667,1,"Ferme du Temple",49.06987,2.481287,0,0,OIF:SA:8:30413,Europe/Paris,,OIF, +OIF:SP:8:30668,1,"Bordeaux-Odent",49.205104,2.587746,0,0,OIF:SA:8:30668,Europe/Paris,,OIF, +OIF:SP:8:30669,1,"Bordeaux-Odent",49.204433,2.586385,0,0,OIF:SA:8:30668,Europe/Paris,,OIF, +OIF:SP:8:30670,1,"Collège Anne-Marie Javouhey",49.208305,2.582111,0,0,OIF:SA:8:30670,Europe/Paris,,OIF, +OIF:SP:8:30671,1,"Collège Anne-Marie Javouhey",49.208304,2.582372,0,0,OIF:SA:8:30670,Europe/Paris,,OIF, +OIF:SP:8:30672,1,"Gare Routière",49.206127,2.592262,0,0,OIF:SA:8:30672,Europe/Paris,,OIF, +OIF:SP:8:30673,1,"Lycée Amyot d'Inville",49.191995,2.574672,0,0,OIF:SA:8:30673,Europe/Paris,,OIF, +OIF:SP:8:30674,1,"Lycée Amyot d'Inville",49.190766,2.573474,0,0,OIF:SA:8:30673,Europe/Paris,,OIF, +OIF:SP:8:30675,1,"Lacroix",49.1066,2.350934,0,0,OIF:SA:5:40237,Europe/Paris,,OIF, +OIF:SP:8:30677,1,"Mairie",49.108487,2.34795,0,0,OIF:SA:5:40239,Europe/Paris,,OIF, +OIF:SP:8:30678,1,"Prés de Carnelle",49.104768,2.341723,0,0,OIF:SA:5:40241,Europe/Paris,,OIF, +OIF:SP:8:30679,1,"La Tour",49.109404,2.343886,0,0,OIF:SA:5:40245,Europe/Paris,,OIF, +OIF:SP:8:30680,1,"Treize Saules",49.085242,2.573551,0,0,OIF:SA:8:30513,Europe/Paris,,OIF, +OIF:SP:8:30681,1,"Lycée Léonard de Vinci",49.088457,2.560445,0,0,OIF:SA:8:30521,Europe/Paris,,OIF, +OIF:SP:8:30682,1,"Moulin",49.093355,2.569333,0,0,OIF:SA:8:30523,Europe/Paris,,OIF, +OIF:SP:8:30683,1,"Moulin",49.093293,2.568936,0,0,OIF:SA:8:30523,Europe/Paris,,OIF, +OIF:SP:8:30684,1,"Piscine",49.086487,2.575677,0,0,OIF:SA:8:30684,Europe/Paris,,OIF, +OIF:SP:8:30685,1,"Vémars Centre",49.068864,2.567308,0,0,OIF:SA:6:299,Europe/Paris,,OIF, +OIF:SP:8:30686,1,"Église",49.076587,2.357149,0,0,OIF:SA:8:30686,Europe/Paris,,OIF, +OIF:SP:8:30687,1,"Église",49.076524,2.356766,0,0,OIF:SA:8:30686,Europe/Paris,,OIF, +OIF:SP:8:30688,1,"Collège Blaise Pascal",49.124649,2.367094,0,0,OIF:SA:5:40273,Europe/Paris,,OIF, +OIF:SP:8:30689,1,"Mascrée",49.129965,2.378872,0,0,OIF:SA:8:30689,Europe/Paris,,OIF, +OIF:SP:8:30690,1,"Mascrée",49.129983,2.378338,0,0,OIF:SA:8:30689,Europe/Paris,,OIF, +OIF:SP:8:30691,1,"Route de Royaumont",49.134163,2.37207,0,0,OIF:SA:8:30691,Europe/Paris,,OIF, +OIF:SP:8:30692,1,"Route de Royaumont",49.134046,2.371783,0,0,OIF:SA:8:30691,Europe/Paris,,OIF, +OIF:SP:8:30693,1,"Ferme de Vaulerand",49.052524,2.533807,0,0,OIF:SA:6:301,Europe/Paris,,OIF, +OIF:SP:8:30694,1,"Ferme de Vaulerand",49.052381,2.533588,0,0,OIF:SA:6:301,Europe/Paris,,OIF, +OIF:SP:8:30695,1,"Mairie",49.072363,2.389959,0,0,OIF:SA:5:40269,Europe/Paris,,OIF, +OIF:SP:8:30696,1,"Mairie",49.07221,2.38989,0,0,OIF:SA:5:40269,Europe/Paris,,OIF, +OIF:SP:8:30697,1,"Pierre Curie",49.071706,2.56583,0,0,OIF:SA:8:30697,Europe/Paris,,OIF, +OIF:SP:8:30698,1,"Pierre Curie",49.071733,2.566035,0,0,OIF:SA:8:30697,Europe/Paris,,OIF, +OIF:SP:8:30699,1,"Collège André Malraux",49.050208,2.509204,0,0,OIF:SA:8:30272,Europe/Paris,,OIF, +OIF:SP:8:30700,1,"Les Fontenelles",49.106438,2.352507,0,0,OIF:SA:5:40295,Europe/Paris,,OIF, +OIF:SP:8:30701,1,"Gymnase",49.121439,2.52665,0,0,OIF:SA:8:30615,Europe/Paris,,OIF, +OIF:SP:8:30702,1,"Louis Bordes",48.953096,2.390573,0,0,OIF:SA:59:6673049,Europe/Paris,,OIF, +OIF:SP:8:30703,1,"Louis Bordes",48.953321,2.39056,0,0,OIF:SA:59:6673049,Europe/Paris,,OIF, +OIF:SP:8:30704,1,"La Malmaison",48.982013,2.456125,0,0,OIF:SA:11:108,Europe/Paris,,OIF, +OIF:SP:8:30705,1,"La Malmaison",48.981896,2.456521,0,0,OIF:SA:11:108,Europe/Paris,,OIF, +OIF:SP:8:30706,1,"Emmanuel Rain",48.986779,2.452217,0,0,OIF:SA:8:30706,Europe/Paris,,OIF, +OIF:SP:8:30707,1,"Emmanuel Rain",48.986618,2.452244,0,0,OIF:SA:8:30706,Europe/Paris,,OIF, +OIF:SP:8:30710,1,"Fontaine Cypierre",48.98485,2.459081,0,0,OIF:SA:8:30156,Europe/Paris,,OIF, +OIF:SP:8:30711,1,"Fontaine Cypierre",48.984741,2.459367,0,0,OIF:SA:8:30156,Europe/Paris,,OIF, +OIF:SP:8:30713,1,"Gonesse - Hôpital",48.99335,2.450934,0,0,OIF:SA:8:30713,Europe/Paris,,OIF, +OIF:SP:8:30714,1,"Gonesse - Hôpital",48.993359,2.450593,0,0,OIF:SA:8:30713,Europe/Paris,,OIF, +OIF:SP:8:30715,1,"Gonesse - Hôpital",48.994652,2.452235,0,0,OIF:SA:8:30713,Europe/Paris,,OIF, +OIF:SP:8:30717,1,"Garges/Sarcelles RER D",48.977153,2.390544,0,0,OIF:SA:8727619,Europe/Paris,,OIF, +OIF:SP:8:30718,1,"Garges/Sarcelles RER D",48.977153,2.390544,0,0,OIF:SA:8727619,Europe/Paris,,OIF, +OIF:SP:8:30719,1,"École Jacques Prévert",49.029932,2.451904,0,0,OIF:SA:8:30189,Europe/Paris,,OIF, +OIF:SP:8:30720,1,"Rue de la Fosette",49.012639,2.584872,0,0,OIF:SA:8:30720,Europe/Paris,,OIF, +OIF:SP:8:30721,1,"Rue Périchet",49.013009,2.584191,0,0,OIF:SA:6:306,Europe/Paris,,OIF, +OIF:SP:8:30722,1,"Institut Saint-Dominique",49.109185,2.605292,0,0,OIF:SA:6:134,Europe/Paris,,OIF, +OIF:SP:8:30723,1,"Institut Saint-Dominique",49.109185,2.605292,0,0,OIF:SA:6:134,Europe/Paris,,OIF, +OIF:SP:8:30724,1,"Institut Saint-Dominique",49.109185,2.605292,0,0,OIF:SA:6:134,Europe/Paris,,OIF, +OIF:SP:8:30725,1,"Paris",49.103498,2.584145,0,0,OIF:SA:8:30392,Europe/Paris,,OIF, +OIF:SP:8:30726,1,"Paris",49.103498,2.584145,0,0,OIF:SA:8:30392,Europe/Paris,,OIF, +OIF:SP:8:30727,1,"Paris",49.103498,2.584145,0,0,OIF:SA:8:30392,Europe/Paris,,OIF, +OIF:SP:8:30728,1,"Puits au Loup",49.104514,2.587818,0,0,OIF:SA:8:30394,Europe/Paris,,OIF, +OIF:SP:8:30729,1,"Puits au Loup",49.104514,2.587818,0,0,OIF:SA:8:30394,Europe/Paris,,OIF, +OIF:SP:8:30730,1,"Puits au Loup",49.103498,2.584145,0,0,OIF:SA:8:30394,Europe/Paris,,OIF, +OIF:SP:8:30731,1,"Sainte-Geneviève",49.103603,2.580985,0,0,OIF:SA:8:30396,Europe/Paris,,OIF, +OIF:SP:8:30732,1,"Vergers",49.105949,2.593642,0,0,OIF:SA:8:30398,Europe/Paris,,OIF, +OIF:SP:8:30733,1,"Vergers",49.105949,2.593642,0,0,OIF:SA:8:30398,Europe/Paris,,OIF, +OIF:SP:8:30734,1,"Vergers",49.105949,2.593642,0,0,OIF:SA:8:30398,Europe/Paris,,OIF, +OIF:SP:8:30762,1,"Allouettes",49.056409,2.496085,0,0,OIF:SA:8:30762,Europe/Paris,,OIF, +OIF:SP:8:30763,1,"Fauvettes",49.054461,2.494425,0,0,OIF:SA:8:30763,Europe/Paris,,OIF, +OIF:SP:8:30764,1,"Lilas",49.057742,2.500177,0,0,OIF:SA:8:30764,Europe/Paris,,OIF, +OIF:SP:8:30765,1,"Rossignols",49.055085,2.49779,0,0,OIF:SA:8:30765,Europe/Paris,,OIF, +OIF:SP:8:30766,1,"Violettes",49.057467,2.497606,0,0,OIF:SA:8:30766,Europe/Paris,,OIF, +OIF:SP:8:30790,1,"Hauts de Plailly",49.105123,2.575599,0,0,OIF:SA:8:30388,Europe/Paris,,OIF, +OIF:SP:8:30791,1,"Lilas",49.103898,2.577304,0,0,OIF:SA:8:30390,Europe/Paris,,OIF, +OIF:SP:8:30792,1,"Groslay Train H",48.985864,2.350874,0,0,OIF:SA:8727636,Europe/Paris,,OIF, +OIF:SP:8:30793,1,"Rue des Bonnets",49.131406,2.42306,0,0,OIF:SA:8:30793,Europe/Paris,,OIF, +OIF:SP:8:30795,1,"Athènes",49.0526,2.495143,0,0,OIF:SA:8:30795,Europe/Paris,,OIF, +OIF:SP:8:30797,1,"Aéroport CDG1 RER B",49.010217,2.559506,0,0,OIF:SA:8727146,Europe/Paris,,OIF, +OIF:SP:8:30798,1,"Aéroport CDG1 RER B",49.010361,2.559794,0,0,OIF:SA:8727146,Europe/Paris,,OIF, +OIF:SP:8:30799,1,"Aéroport CDG1 RER B",49.010389,2.559042,0,0,OIF:SA:8727146,Europe/Paris,,OIF, +OIF:SP:8:30800,1,"Aéroport CDG1 RER B",49.010497,2.559016,0,0,OIF:SA:8727146,Europe/Paris,,OIF, +OIF:SP:8:30801,1,"Aéroport CDG1 RER B",49.010675,2.559645,0,0,OIF:SA:8727146,Europe/Paris,,OIF, +OIF:SP:91:1,1,"Albert Sarrault",48.708195,2.382444,0,0,OIF:SA:59:5816781,Europe/Paris,,OIF, +OIF:SP:91:10,1,"Église",48.687041,2.408911,0,0,OIF:SA:8799149,Europe/Paris,,OIF, +OIF:SP:91:11,1,"Marché",48.686133,2.409426,0,0,OIF:SA:43:93,Europe/Paris,,OIF, +OIF:SP:91:12,1,"Marché",48.686007,2.408978,0,0,OIF:SA:43:93,Europe/Paris,,OIF, +OIF:SP:91:13,1,"Orée de Sénart",48.686163,2.41859,0,0,OIF:SA:43:101,Europe/Paris,,OIF, +OIF:SP:91:14,1,"Orée de Sénart",48.686396,2.418794,0,0,OIF:SA:43:101,Europe/Paris,,OIF, +OIF:SP:91:15,1,"Juvisy Gare Routière Seine",48.68938,2.387016,0,0,OIF:SA:8754524,Europe/Paris,,OIF, +OIF:SP:91:16,1,"La Forêt",48.696127,2.455293,0,0,OIF:SA:32:45198,Europe/Paris,,OIF, +OIF:SP:91:17,1,"La Forêt",48.696162,2.456135,0,0,OIF:SA:32:45198,Europe/Paris,,OIF, +OIF:SP:91:18,1,"Prairie de l'Oly",48.703421,2.441418,0,0,OIF:SA:43:150,Europe/Paris,,OIF, +OIF:SP:91:19,1,"Prairie de l'Oly",48.703402,2.442137,0,0,OIF:SA:43:150,Europe/Paris,,OIF, +OIF:SP:91:2,1,"Albert Sarrault",48.709139,2.383259,0,0,OIF:SA:59:5816781,Europe/Paris,,OIF, +OIF:SP:91:20,1,"Pavillon Flore",48.700924,2.466521,0,0,OIF:SA:32:45209,Europe/Paris,,OIF, +OIF:SP:91:21,1,"Saint-Joseph",48.69979,2.468093,0,0,OIF:SA:43:164,Europe/Paris,,OIF, +OIF:SP:91:22,1,"Orly N7",48.729511,2.367761,0,0,OIF:SA:59675,Europe/Paris,,OIF, +OIF:SP:91:23,1,"Aéroport Orly Sud",48.728972,2.369541,0,0,OIF:SA:59675,Europe/Paris,,OIF, +OIF:SP:91:24,1,"Aéroport Orly Sud",48.728936,2.369283,0,0,OIF:SA:59675,Europe/Paris,,OIF, +OIF:SP:91:25,1,"Aéroport Orly Ouest",48.728507,2.359812,0,0,OIF:SA:8749571,Europe/Paris,,OIF, +OIF:SP:91:26,1,"Aéroport Orly Ouest",48.72776,2.360288,0,0,OIF:SA:8749571,Europe/Paris,,OIF, +OIF:SP:91:27,1,"Pont de Rungis",48.744442,2.364984,0,0,OIF:SA:59:4471782,Europe/Paris,,OIF, +OIF:SP:91:28,1,"Pont de Rungis",48.744379,2.364685,0,0,OIF:SA:59:4471782,Europe/Paris,,OIF, +OIF:SP:91:29,1,"Marché d'Intérêt National",48.763094,2.358128,0,0,OIF:SA:91:29,Europe/Paris,,OIF, +OIF:SP:91:3,1,"Cottage",48.705754,2.393727,0,0,OIF:SA:59:6251971,Europe/Paris,,OIF, +OIF:SP:91:30,1,"Belle Epine Sud",48.755029,2.368932,0,0,OIF:SA:59:4314838,Europe/Paris,,OIF, +OIF:SP:91:31,1,"Belle Epine Sud",48.75502,2.368551,0,0,OIF:SA:59:4314838,Europe/Paris,,OIF, +OIF:SP:91:32,1,"Gare RER Pont de Rungis",48.748062,2.372869,0,0,OIF:SA:8754619,Europe/Paris,,OIF, +OIF:SP:91:33,1,"Gare RER Pont de Rungis",48.748152,2.372788,0,0,OIF:SA:8754619,Europe/Paris,,OIF, +OIF:SP:91:34,1,"Patte d'Oie",48.703313,2.430377,0,0,OIF:SA:8799150,Europe/Paris,,OIF, +OIF:SP:91:35,1,"Patte d'Oie",48.702802,2.429181,0,0,OIF:SA:8799150,Europe/Paris,,OIF, +OIF:SP:91:36,1,"Salvador Allende",48.693957,2.429695,0,0,OIF:SA:43:240,Europe/Paris,,OIF, +OIF:SP:91:37,1,"Salvador Allende",48.693849,2.429871,0,0,OIF:SA:43:240,Europe/Paris,,OIF, +OIF:SP:91:38,1,"Yerres Gare RER",48.706981,2.483023,0,0,OIF:SA:8768211,Europe/Paris,,OIF, +OIF:SP:91:39,1,"Place Gambetta",48.701074,2.484555,0,0,OIF:SA:32:45404,Europe/Paris,,OIF, +OIF:SP:91:4,1,"Cottage",48.705817,2.393428,0,0,OIF:SA:59:6251971,Europe/Paris,,OIF, +OIF:SP:91:40,1,"Place Gambetta",48.701916,2.48692,0,0,OIF:SA:32:45404,Europe/Paris,,OIF, +OIF:SP:91:41,1,"Juvisy Gare Routière Seine",48.689317,2.386975,0,0,OIF:SA:8754524,Europe/Paris,,OIF, +OIF:SP:91:6,1,"Porte de l'Essonne",48.71423,2.371718,0,0,OIF:SA:59844,Europe/Paris,,OIF, +OIF:SP:91:7,1,"Porte de l'Essonne",48.714023,2.371868,0,0,OIF:SA:59844,Europe/Paris,,OIF, +OIF:SP:91:9,1,"Église",48.687014,2.409088,0,0,OIF:SA:8799149,Europe/Paris,,OIF, +OIF:SP:92:10,1,"Crous",48.841887,2.584029,0,0,OIF:SA:59:6741296,Europe/Paris,,OIF, +OIF:SP:92:11,1,"Crous",48.841617,2.584096,0,0,OIF:SA:59:6741296,Europe/Paris,,OIF, +OIF:SP:92:12,1,"Créteil l'Echat",48.796782,2.450612,0,0,OIF:SA:59563,Europe/Paris,,OIF, +OIF:SP:92:13,1,"Créteil l'Echat",48.794042,2.449382,0,0,OIF:SA:59563,Europe/Paris,,OIF, +OIF:SP:92:14,1,"Bois de Grâce",48.84822,2.585571,0,0,OIF:SA:59:6741352,Europe/Paris,,OIF, +OIF:SP:92:15,1,"Bois de Grâce",48.848283,2.585516,0,0,OIF:SA:59:6741352,Europe/Paris,,OIF, +OIF:SP:92:2,1,"Torcy Gare",48.839097,2.654082,0,0,OIF:SA:8775837,Europe/Paris,,OIF, +OIF:SP:92:4,1,"Quatre Paves",48.851636,2.621419,0,0,OIF:SA:59:3677692,Europe/Paris,,OIF, +OIF:SP:92:5,1,"Quatre Paves",48.851627,2.621391,0,0,OIF:SA:59:3677692,Europe/Paris,,OIF, +OIF:SP:92:6,1,"Mairie de Champs",48.852311,2.601443,0,0,OIF:SA:59:5231544,Europe/Paris,,OIF, +OIF:SP:92:7,1,"Mairie de Champs",48.852338,2.601715,0,0,OIF:SA:59:5231544,Europe/Paris,,OIF, +OIF:SP:92:8,1,"Ampère",48.844828,2.583049,0,0,OIF:SA:59:6741356,Europe/Paris,,OIF, +OIF:SP:92:9,1,"Ampère",48.844801,2.582994,0,0,OIF:SA:59:6741356,Europe/Paris,,OIF, +OIF:SP:9:1000,1,"Chapelle",48.888982,2.658926,0,0,OIF:SA:9:1000,Europe/Paris,,OIF, +OIF:SP:9:1010,1,"Château",48.823516,2.708488,0,0,OIF:SA:9:1010,Europe/Paris,,OIF, +OIF:SP:9:1011,1,"Cimetière de Lagny",48.878864,2.722061,0,0,OIF:SA:9:1011,Europe/Paris,,OIF, +OIF:SP:9:1012,1,"Cimetière de Lagny",48.878972,2.722021,0,0,OIF:SA:9:1011,Europe/Paris,,OIF, +OIF:SP:9:1013,1,"Gibert",48.872433,2.706427,0,0,OIF:SA:9:1013,Europe/Paris,,OIF, +OIF:SP:9:1014,1,"Gibert",48.872865,2.706417,0,0,OIF:SA:9:1013,Europe/Paris,,OIF, +OIF:SP:9:1015,1,"Léo Gausson",48.869674,2.706516,0,0,OIF:SA:9:1015,Europe/Paris,,OIF, +OIF:SP:9:1016,1,"Léo Gausson",48.869871,2.706627,0,0,OIF:SA:9:1015,Europe/Paris,,OIF, +OIF:SP:9:1020,1,"Paris",48.825188,2.705505,0,0,OIF:SA:9:1020,Europe/Paris,,OIF, +OIF:SP:9:1021,1,"Château le Louche",48.922816,2.71801,0,0,OIF:SA:9:1021,Europe/Paris,,OIF, +OIF:SP:9:1022,1,"Château le Louche",48.924538,2.719087,0,0,OIF:SA:9:1021,Europe/Paris,,OIF, +OIF:SP:9:1025,1,"Mairie",48.884596,2.711406,0,0,OIF:SA:9:1025,Europe/Paris,,OIF, +OIF:SP:9:1026,1,"Mairie École",48.884395,2.712372,0,0,OIF:SA:9:1026,Europe/Paris,,OIF, +OIF:SP:9:1027,1,"Canada",48.880948,2.722377,0,0,OIF:SA:9:1027,Europe/Paris,,OIF, +OIF:SP:9:1028,1,"Canada",48.880795,2.722362,0,0,OIF:SA:9:1027,Europe/Paris,,OIF, +OIF:SP:9:1029,1,"Rue Roger",48.877469,2.719735,0,0,OIF:SA:9:1029,Europe/Paris,,OIF, +OIF:SP:9:1031,1,"Mairie",48.80016,2.704416,0,0,OIF:SA:9:1031,Europe/Paris,,OIF, +OIF:SP:9:1032,1,"Mairie",48.800646,2.704392,0,0,OIF:SA:9:1031,Europe/Paris,,OIF, +OIF:SP:9:1037,1,"Imprimerie",48.880006,2.716333,0,0,OIF:SA:9:1037,Europe/Paris,,OIF, +OIF:SP:9:1041,1,"Lycée Perdonnet",48.887005,2.728036,0,0,OIF:SA:9:1041,Europe/Paris,,OIF, +OIF:SP:9:1042,1,"Lycée Perdonnet",48.886986,2.7282,0,0,OIF:SA:9:1041,Europe/Paris,,OIF, +OIF:SP:9:1043,1,"Daniel Leduc",48.889481,2.737486,0,0,OIF:SA:9:1043,Europe/Paris,,OIF, +OIF:SP:9:1044,1,"Les Fontaines",48.887199,2.726334,0,0,OIF:SA:9:1044,Europe/Paris,,OIF, +OIF:SP:9:1050,1,"Chelles SNCF",48.874941,2.584963,0,0,OIF:SA:8711611,Europe/Paris,,OIF, +OIF:SP:9:1051,1,"Chantereine",48.899897,2.614609,0,0,OIF:SA:53:2106,Europe/Paris,,OIF, +OIF:SP:9:1052,1,"Chantereine",48.900094,2.614514,0,0,OIF:SA:53:2106,Europe/Paris,,OIF, +OIF:SP:9:1067,1,"La Route",48.800535,2.781495,0,0,OIF:SA:9:1067,Europe/Paris,,OIF, +OIF:SP:9:1068,1,"La Route",48.800285,2.781261,0,0,OIF:SA:9:1067,Europe/Paris,,OIF, +OIF:SP:9:1070,1,"Dénicherie 1",48.802391,2.78513,0,0,OIF:SA:9:1070,Europe/Paris,,OIF, +OIF:SP:9:1072,1,"Chabanneau",48.882087,2.700187,0,0,OIF:SA:9:1072,Europe/Paris,,OIF, +OIF:SP:9:1073,1,"Le Verger",48.860172,2.813281,0,0,OIF:SA:9:1073,Europe/Paris,,OIF, +OIF:SP:9:1074,1,"Le Verger",48.860073,2.813389,0,0,OIF:SA:9:1073,Europe/Paris,,OIF, +OIF:SP:9:1076,1,"Les 3 Petits Bois",48.863841,2.808397,0,0,OIF:SA:9:1076,Europe/Paris,,OIF, +OIF:SP:9:1077,1,"Les 3 Petits Bois",48.863651,2.808558,0,0,OIF:SA:9:1076,Europe/Paris,,OIF, +OIF:SP:9:1080,1,"Grand Fosse",48.866226,2.767005,0,0,OIF:SA:9:1080,Europe/Paris,,OIF, +OIF:SP:9:1081,1,"Buffard",48.862352,2.762178,0,0,OIF:SA:9:1081,Europe/Paris,,OIF, +OIF:SP:9:1082,1,"Buffard",48.862883,2.76191,0,0,OIF:SA:9:1081,Europe/Paris,,OIF, +OIF:SP:9:1088,1,"Jussieu",48.837868,2.782346,0,0,OIF:SA:9:1088,Europe/Paris,,OIF, +OIF:SP:9:1100,1,"Gare de Marne la Vallée Chessy",48.870524,2.783634,0,0,OIF:SA:8775499,Europe/Paris,,OIF, +OIF:SP:9:1102,1,"Gare de Marne la Vallée Chessy",48.871008,2.783979,0,0,OIF:SA:8775499,Europe/Paris,,OIF, +OIF:SP:9:1104,1,"Gare de Marne la Vallée Chessy",48.87134,2.784037,0,0,OIF:SA:8775499,Europe/Paris,,OIF, +OIF:SP:9:1106,1,"Gare de Marne la Vallée Chessy",48.871484,2.784065,0,0,OIF:SA:8775499,Europe/Paris,,OIF, +OIF:SP:9:1111,1,"Cheval Blanc",48.837891,2.753604,0,0,OIF:SA:9:1111,Europe/Paris,,OIF, +OIF:SP:9:1112,1,"Cheval Blanc",48.837952,2.754094,0,0,OIF:SA:9:1111,Europe/Paris,,OIF, +OIF:SP:9:1120,1,"Les Ifs",48.889538,2.720287,0,0,OIF:SA:9:1120,Europe/Paris,,OIF, +OIF:SP:9:1126,1,"Léonard de Vinci",48.833845,2.699141,0,0,OIF:SA:9:1126,Europe/Paris,,OIF, +OIF:SP:9:1131,1,"Église",48.839415,2.669116,0,0,OIF:SA:9:1131,Europe/Paris,,OIF, +OIF:SP:9:1132,1,"Église",48.839424,2.669238,0,0,OIF:SA:9:1131,Europe/Paris,,OIF, +OIF:SP:9:1133,1,"Bois de Chigny",48.862712,2.743995,0,0,OIF:SA:9:1133,Europe/Paris,,OIF, +OIF:SP:9:1134,1,"Bois de Chigny",48.862954,2.744351,0,0,OIF:SA:9:1134,Europe/Paris,,OIF, +OIF:SP:9:1140,1,"Gare de Val d'Europe",48.85521,2.773628,0,0,OIF:SA:8773006,Europe/Paris,,OIF, +OIF:SP:9:1141,1,"Château de Louche",48.924763,2.71872,0,0,OIF:SA:9:1021,Europe/Paris,,OIF, +OIF:SP:9:1143,1,"Gare de Val d'Europe 22",48.855327,2.773751,0,0,OIF:SA:8773006,Europe/Paris,,OIF, +OIF:SP:9:1144,1,"Gare de Val d'Europe 42",48.85504,2.77364,0,0,OIF:SA:8773006,Europe/Paris,,OIF, +OIF:SP:9:1145,1,"Gare de Val d'Europe 34",48.855236,2.773901,0,0,OIF:SA:8773006,Europe/Paris,,OIF, +OIF:SP:9:1147,1,"Gare de Val d'Europe 44 46",48.855327,2.773751,0,0,OIF:SA:8773006,Europe/Paris,,OIF, +OIF:SP:9:1149,1,"Gare de Val d'Europe 23 43",48.855336,2.773752,0,0,OIF:SA:8773006,Europe/Paris,,OIF, +OIF:SP:9:1150,1,"Centre Commercial",48.945482,2.666399,0,0,OIF:SA:53:2568,Europe/Paris,,OIF, +OIF:SP:9:1151,1,"Cures",48.893869,2.708979,0,0,OIF:SA:9:1151,Europe/Paris,,OIF, +OIF:SP:9:1152,1,"Cures",48.893296,2.708334,0,0,OIF:SA:9:1151,Europe/Paris,,OIF, +OIF:SP:9:1153,1,"Croix Saint-Louis",48.918516,2.713683,0,0,OIF:SA:9:1153,Europe/Paris,,OIF, +OIF:SP:9:1154,1,"Croix Saint-Louis",48.918552,2.713411,0,0,OIF:SA:9:1153,Europe/Paris,,OIF, +OIF:SP:9:1155,1,"Douy",48.928608,2.719471,0,0,OIF:SA:9:1155,Europe/Paris,,OIF, +OIF:SP:9:1156,1,"Douy",48.928608,2.719403,0,0,OIF:SA:9:1155,Europe/Paris,,OIF, +OIF:SP:9:1157,1,"Rigaudin",48.926675,2.719566,0,0,OIF:SA:9:1157,Europe/Paris,,OIF, +OIF:SP:9:1158,1,"Rigaudin",48.925957,2.719125,0,0,OIF:SA:9:1157,Europe/Paris,,OIF, +OIF:SP:9:1159,1,"Douy",48.929125,2.720703,0,0,OIF:SA:9:1155,Europe/Paris,,OIF, +OIF:SP:9:1160,1,"Champs / Clos",48.883953,2.660789,0,0,OIF:SA:9:1160,Europe/Paris,,OIF, +OIF:SP:9:1169,1,"Cures",48.894042,2.708421,0,0,OIF:SA:9:1151,Europe/Paris,,OIF, +OIF:SP:9:1170,1,"Clos Saint-Nicolas",48.814991,2.826448,0,0,OIF:SA:9:1170,Europe/Paris,,OIF, +OIF:SP:9:1178,1,"Gare de Lagny Thorigny (Rue Poincaré)",48.882537,2.708707,0,0,OIF:SA:8711631,Europe/Paris,,OIF, +OIF:SP:9:1180,1,"Petits Pres",48.886797,2.687981,0,0,OIF:SA:9:1180,Europe/Paris,,OIF, +OIF:SP:9:1181,1,"Meaux Marche",48.955381,2.879073,0,0,OIF:SA:47:3192,Europe/Paris,,OIF, +OIF:SP:9:1182,1,"Meaux Médiathèque",48.954832,2.879135,0,0,OIF:SA:47:3194,Europe/Paris,,OIF, +OIF:SP:9:1183,1,"Lognes Madeleine",48.826101,2.629378,0,0,OIF:SA:9:1183,Europe/Paris,,OIF, +OIF:SP:9:1184,1,"Lognes Madeleine",48.82584,2.629336,0,0,OIF:SA:9:1183,Europe/Paris,,OIF, +OIF:SP:9:1191,1,"Les Martyrs",48.870618,2.576386,0,0,OIF:SA:53:2311,Europe/Paris,,OIF, +OIF:SP:9:1192,1,"Les Martyrs",48.870896,2.576592,0,0,OIF:SA:53:2311,Europe/Paris,,OIF, +OIF:SP:9:1198,1,"Vieux Moulin",48.869844,2.589693,0,0,OIF:SA:53:2351,Europe/Paris,,OIF, +OIF:SP:9:1200,1,"Place du Général Leclerc",48.885271,2.736037,0,0,OIF:SA:9:1200,Europe/Paris,,OIF, +OIF:SP:9:1201,1,"Terre Ciel",48.878696,2.614468,0,0,OIF:SA:53:2101,Europe/Paris,,OIF, +OIF:SP:9:1202,1,"Terre Ciel",48.878489,2.614562,0,0,OIF:SA:53:2101,Europe/Paris,,OIF, +OIF:SP:9:1203,1,"Jean Jaurès",48.879525,2.62476,0,0,OIF:SA:53:2235,Europe/Paris,,OIF, +OIF:SP:9:1204,1,"Jean Jaurès",48.879417,2.62491,0,0,OIF:SA:9:1204,Europe/Paris,,OIF, +OIF:SP:9:1207,1,"République",48.87012,2.641098,0,0,OIF:SA:53:2637,Europe/Paris,,OIF, +OIF:SP:9:1208,1,"République",48.869301,2.641311,0,0,OIF:SA:53:2637,Europe/Paris,,OIF, +OIF:SP:9:1210,1,"Collège Moulin à Vent",48.890638,2.710455,0,0,OIF:SA:9:1210,Europe/Paris,,OIF, +OIF:SP:9:1211,1,"Tilleuls",48.850213,2.647817,0,0,OIF:SA:59:5231536,Europe/Paris,,OIF, +OIF:SP:9:1212,1,"Tilleuls",48.850258,2.6476,0,0,OIF:SA:59:5231536,Europe/Paris,,OIF, +OIF:SP:9:1213,1,"Peduzzi",48.869786,2.708152,0,0,OIF:SA:9:1213,Europe/Paris,,OIF, +OIF:SP:9:1214,1,"Peduzzi",48.870526,2.707245,0,0,OIF:SA:9:1213,Europe/Paris,,OIF, +OIF:SP:9:1215,1,"Rothschild",48.874997,2.693978,0,0,OIF:SA:9:1215,Europe/Paris,,OIF, +OIF:SP:9:1216,1,"Rothschild",48.874845,2.693814,0,0,OIF:SA:9:1215,Europe/Paris,,OIF, +OIF:SP:9:1217,1,"Fontaine",48.873174,2.690287,0,0,OIF:SA:9:1217,Europe/Paris,,OIF, +OIF:SP:9:1218,1,"Fontaine",48.873273,2.690356,0,0,OIF:SA:9:1217,Europe/Paris,,OIF, +OIF:SP:9:1219,1,"Vieux Moulin",48.869934,2.589748,0,0,OIF:SA:53:2351,Europe/Paris,,OIF, +OIF:SP:9:1220,1,"Georges Clemenceau",48.877492,2.721029,0,0,OIF:SA:9:1220,Europe/Paris,,OIF, +OIF:SP:9:1221,1,"La Ferme",48.855686,2.740603,0,0,OIF:SA:9:1221,Europe/Paris,,OIF, +OIF:SP:9:1222,1,"La Ferme",48.855707,2.739909,0,0,OIF:SA:9:1221,Europe/Paris,,OIF, +OIF:SP:9:1223,1,"Cimetière",48.745225,2.763475,0,0,OIF:SA:9:1223,Europe/Paris,,OIF, +OIF:SP:9:1224,1,"Cimetière",48.745081,2.763528,0,0,OIF:SA:9:1223,Europe/Paris,,OIF, +OIF:SP:9:1225,1,"Antoine Bourdelle",48.8398,2.726128,0,0,OIF:SA:9:1225,Europe/Paris,,OIF, +OIF:SP:9:1226,1,"Antoine Bourdelle",48.839657,2.725623,0,0,OIF:SA:9:1225,Europe/Paris,,OIF, +OIF:SP:9:1227,1,"Gare de Bussy-Saint-Georges 22 F",48.836351,2.70858,0,0,OIF:SA:8775498,Europe/Paris,,OIF, +OIF:SP:9:1228,1,"Gare de Bussy-Saint-Georges 22 S",48.836673,2.709072,0,0,OIF:SA:8775498,Europe/Paris,,OIF, +OIF:SP:9:1229,1,"Léonard de Vinci",48.833929,2.700938,0,0,OIF:SA:9:1126,Europe/Paris,,OIF, +OIF:SP:9:1230,1,"Place",48.822237,2.703769,0,0,OIF:SA:9:1230,Europe/Paris,,OIF, +OIF:SP:9:1237,1,"Bonne Auberge",48.877965,2.746445,0,0,OIF:SA:9:1237,Europe/Paris,,OIF, +OIF:SP:9:1238,1,"Fontaine au Roi",48.87815,2.750139,0,0,OIF:SA:9:1238,Europe/Paris,,OIF, +OIF:SP:9:1240,1,"Cornilliot SNCF",48.883034,2.707879,0,0,OIF:SA:8711631,Europe/Paris,,OIF, +OIF:SP:9:1241,1,"Avenue du Général Leclerc",48.87052,2.682326,0,0,OIF:SA:9:1241,Europe/Paris,,OIF, +OIF:SP:9:1242,1,"Avenue du Général Leclerc",48.870752,2.682791,0,0,OIF:SA:9:1241,Europe/Paris,,OIF, +OIF:SP:9:1245,1,"Gué Langlois",48.843547,2.666936,0,0,OIF:SA:9:1245,Europe/Paris,,OIF, +OIF:SP:9:1246,1,"Gué Langlois",48.843951,2.667034,0,0,OIF:SA:9:1245,Europe/Paris,,OIF, +OIF:SP:9:1247,1,"Camsp",48.879278,2.788356,0,0,OIF:SA:47:14832,Europe/Paris,,OIF, +OIF:SP:9:1248,1,"Camsp",48.879394,2.788698,0,0,OIF:SA:47:14832,Europe/Paris,,OIF, +OIF:SP:9:1250,1,"Cornouillers",48.888131,2.689803,0,0,OIF:SA:9:1250,Europe/Paris,,OIF, +OIF:SP:9:1251,1,"Les Marchais",48.839944,2.659928,0,0,OIF:SA:9:1251,Europe/Paris,,OIF, +OIF:SP:9:1252,1,"Les Marchais",48.839728,2.659941,0,0,OIF:SA:9:1251,Europe/Paris,,OIF, +OIF:SP:9:1253,1,"Cités Unies",48.839348,2.657433,0,0,OIF:SA:59:5231529,Europe/Paris,,OIF, +OIF:SP:9:1254,1,"Cités Unies",48.839149,2.65784,0,0,OIF:SA:59:5231529,Europe/Paris,,OIF, +OIF:SP:9:1260,1,"Coteaux",48.890363,2.717826,0,0,OIF:SA:9:1260,Europe/Paris,,OIF, +OIF:SP:9:1261,1,"Tous Vents",48.868607,2.7058,0,0,OIF:SA:9:1261,Europe/Paris,,OIF, +OIF:SP:9:1264,1,"Gros Buisson",48.850184,2.671841,0,0,OIF:SA:9:1264,Europe/Paris,,OIF, +OIF:SP:9:1265,1,"Gros Buisson",48.85012,2.67229,0,0,OIF:SA:9:1264,Europe/Paris,,OIF, +OIF:SP:9:1266,1,"Tous Vents",48.86876,2.705774,0,0,OIF:SA:9:1261,Europe/Paris,,OIF, +OIF:SP:9:1267,1,"Golf",48.845044,2.705006,0,0,OIF:SA:9:1267,Europe/Paris,,OIF, +OIF:SP:9:1268,1,"Golf",48.845322,2.705117,0,0,OIF:SA:9:1267,Europe/Paris,,OIF, +OIF:SP:9:1269,1,"Lycée M. L. King (Mini Gare)",48.840097,2.720439,0,0,OIF:SA:9:1269,Europe/Paris,,OIF, +OIF:SP:9:1270,1,"Place de la Mairie",48.84722,2.824737,0,0,OIF:SA:9:1270,Europe/Paris,,OIF, +OIF:SP:9:1271,1,"Coteaux RD934",48.877459,2.725798,0,0,OIF:SA:9:1271,Europe/Paris,,OIF, +OIF:SP:9:1272,1,"Coteaux RD934",48.87765,2.727707,0,0,OIF:SA:9:1271,Europe/Paris,,OIF, +OIF:SP:9:1273,1,"Courberonne",48.840249,2.752669,0,0,OIF:SA:9:1273,Europe/Paris,,OIF, +OIF:SP:9:1274,1,"Courberonne",48.84005,2.752926,0,0,OIF:SA:9:1273,Europe/Paris,,OIF, +OIF:SP:9:1275,1,"Château",48.837264,2.752904,0,0,OIF:SA:9:1275,Europe/Paris,,OIF, +OIF:SP:9:1276,1,"Château",48.837722,2.75303,0,0,OIF:SA:9:1275,Europe/Paris,,OIF, +OIF:SP:9:1277,1,"Grande Grille",48.850324,2.666789,0,0,OIF:SA:9:1277,Europe/Paris,,OIF, +OIF:SP:9:1278,1,"Grande Grille",48.85026,2.667074,0,0,OIF:SA:9:1277,Europe/Paris,,OIF, +OIF:SP:9:1281,1,"Courtillières",48.86913,2.674906,0,0,OIF:SA:9:1281,Europe/Paris,,OIF, +OIF:SP:9:1282,1,"Courtillières",48.869373,2.674825,0,0,OIF:SA:9:1281,Europe/Paris,,OIF, +OIF:SP:9:1284,1,"Croissy Mairie",48.827838,2.659771,0,0,OIF:SA:9:1284,Europe/Paris,,OIF, +OIF:SP:9:1285,1,"Émerainville le Parc",48.809844,2.621203,0,0,OIF:SA:59:3681410,Europe/Paris,,OIF, +OIF:SP:9:1286,1,"Émerainville le Parc",48.809844,2.621203,0,0,OIF:SA:59:3681410,Europe/Paris,,OIF, +OIF:SP:9:1287,1,"Place Beilstein",48.804565,2.622304,0,0,OIF:SA:9:1287,Europe/Paris,,OIF, +OIF:SP:9:1288,1,"Place Beilstein",48.804709,2.622114,0,0,OIF:SA:9:1287,Europe/Paris,,OIF, +OIF:SP:9:1289,1,"Gare de Lagny Thorigny (Rue Poincaré)",48.882519,2.708884,0,0,OIF:SA:8711631,Europe/Paris,,OIF, +OIF:SP:9:1290,1,"Place des Ormes",48.88812,2.733115,0,0,OIF:SA:9:1290,Europe/Paris,,OIF, +OIF:SP:9:1291,1,"Pagnol",48.844367,2.722894,0,0,OIF:SA:9:1291,Europe/Paris,,OIF, +OIF:SP:9:1292,1,"Pagnol",48.844313,2.722976,0,0,OIF:SA:9:1291,Europe/Paris,,OIF, +OIF:SP:9:1293,1,"Croix Gauthier",48.926294,2.714967,0,0,OIF:SA:9:1293,Europe/Paris,,OIF, +OIF:SP:9:1294,1,"Croix Gauthier",48.926395,2.714532,0,0,OIF:SA:9:1293,Europe/Paris,,OIF, +OIF:SP:9:1295,1,"Armières",48.84896,2.812238,0,0,OIF:SA:9:1295,Europe/Paris,,OIF, +OIF:SP:9:1296,1,"Armières",48.84878,2.812182,0,0,OIF:SA:9:1295,Europe/Paris,,OIF, +OIF:SP:9:1297,1,"Les Genets",48.852037,2.818109,0,0,OIF:SA:9:1297,Europe/Paris,,OIF, +OIF:SP:9:1298,1,"Les Genets",48.852,2.818313,0,0,OIF:SA:9:1297,Europe/Paris,,OIF, +OIF:SP:9:1299,1,"Gare de Lagny Thorigny (Rue Poincaré)",48.882623,2.710138,0,0,OIF:SA:8711631,Europe/Paris,,OIF, +OIF:SP:9:1300,1,"Saint-Laurent (Rue Brébion)",48.873537,2.709896,0,0,OIF:SA:9:1300,Europe/Paris,,OIF, +OIF:SP:9:1305,1,"Rue d'Emery",48.813407,2.623278,0,0,OIF:SA:9:1305,Europe/Paris,,OIF, +OIF:SP:9:1307,1,"Les Lions de Beaubourg",48.827079,2.647543,0,0,OIF:SA:9:1307,Europe/Paris,,OIF, +OIF:SP:9:1308,1,"Les Lions de Beaubourg",48.826791,2.647922,0,0,OIF:SA:9:1307,Europe/Paris,,OIF, +OIF:SP:9:1309,1,"Émerainville École Jaurès",48.809984,2.626511,0,0,OIF:SA:9:1309,Europe/Paris,,OIF, +OIF:SP:9:1310,1,"Collège Victor Schoelcher",48.835326,2.659301,0,0,OIF:SA:9:1310,Europe/Paris,,OIF, +OIF:SP:9:1311,1,"Croissy Village",48.828789,2.663548,0,0,OIF:SA:9:1311,Europe/Paris,,OIF, +OIF:SP:9:1315,1,"Tournelles",48.87755,2.767139,0,0,OIF:SA:9:1315,Europe/Paris,,OIF, +OIF:SP:9:1316,1,"Tournelles",48.877793,2.767196,0,0,OIF:SA:9:1315,Europe/Paris,,OIF, +OIF:SP:9:1319,1,"Grande Prairie",48.869966,2.578986,0,0,OIF:SA:9:1319,Europe/Paris,,OIF, +OIF:SP:9:1320,1,"Grande Prairie",48.869893,2.579122,0,0,OIF:SA:9:1319,Europe/Paris,,OIF, +OIF:SP:9:1330,1,"Place Saint-Jean",48.539084,2.662408,0,0,OIF:SA:27:278,Europe/Paris,,OIF, +OIF:SP:9:1331,1,"Charles de Gaulle",48.904167,2.777967,0,0,OIF:SA:9:1331,Europe/Paris,,OIF, +OIF:SP:9:1332,1,"Charles de Gaulle",48.904247,2.778131,0,0,OIF:SA:9:1331,Europe/Paris,,OIF, +OIF:SP:9:1340,1,"Delambre",48.878653,2.706444,0,0,OIF:SA:9:1340,Europe/Paris,,OIF, +OIF:SP:9:1341,1,"L'Orme Rond",48.854166,2.816167,0,0,OIF:SA:47:14734,Europe/Paris,,OIF, +OIF:SP:9:1342,1,"L'Orme Rond",48.853246,2.816908,0,0,OIF:SA:47:14734,Europe/Paris,,OIF, +OIF:SP:9:1343,1,"Robert Thiboust",48.843223,2.79466,0,0,OIF:SA:9:1343,Europe/Paris,,OIF, +OIF:SP:9:1344,1,"Robert Thiboust",48.843372,2.795465,0,0,OIF:SA:9:1343,Europe/Paris,,OIF, +OIF:SP:9:1345,1,"Pressoir-Parc d'Entreprises",48.841571,2.789444,0,0,OIF:SA:9:1345,Europe/Paris,,OIF, +OIF:SP:9:1346,1,"Pressoir-Parc d'Entreprises",48.841579,2.789717,0,0,OIF:SA:9:1345,Europe/Paris,,OIF, +OIF:SP:9:1347,1,"Clé des Champs",48.867622,2.815856,0,0,OIF:SA:9:1347,Europe/Paris,,OIF, +OIF:SP:9:1348,1,"Clé des Champs",48.867556,2.816523,0,0,OIF:SA:9:1347,Europe/Paris,,OIF, +OIF:SP:9:1349,1,"Gare de Val d'Europe 32",48.8553,2.773751,0,0,OIF:SA:8773006,Europe/Paris,,OIF, +OIF:SP:9:1350,1,"CAT",48.846287,2.828568,0,0,OIF:SA:9:1350,Europe/Paris,,OIF, +OIF:SP:9:1351,1,"Saint-Laurent (Rue Brébion)",48.873371,2.708382,0,0,OIF:SA:9:1300,Europe/Paris,,OIF, +OIF:SP:9:1353,1,"Santa Fe",48.870829,2.795681,0,0,OIF:SA:47:15034,Europe/Paris,,OIF, +OIF:SP:9:1354,1,"Séquoia Lodge",48.870593,2.793908,0,0,OIF:SA:47:15035,Europe/Paris,,OIF, +OIF:SP:9:1360,1,"La Poste",48.879016,2.708259,0,0,OIF:SA:9:1360,Europe/Paris,,OIF, +OIF:SP:9:1367,1,"Place de l'Europe",48.850248,2.820421,0,0,OIF:SA:47:14486,Europe/Paris,,OIF, +OIF:SP:9:1368,1,"Place de l'Europe",48.850017,2.819683,0,0,OIF:SA:47:14486,Europe/Paris,,OIF, +OIF:SP:9:1371,1,"Roses",48.873714,2.713616,0,0,OIF:SA:9:1371,Europe/Paris,,OIF, +OIF:SP:9:1372,1,"Roses",48.873687,2.713725,0,0,OIF:SA:9:1371,Europe/Paris,,OIF, +OIF:SP:9:1373,1,"Chrysanthèmes",48.871501,2.714282,0,0,OIF:SA:9:1373,Europe/Paris,,OIF, +OIF:SP:9:1374,1,"Chrysanthèmes",48.871429,2.714336,0,0,OIF:SA:9:1373,Europe/Paris,,OIF, +OIF:SP:9:1375,1,"Chauffernes",48.870664,2.711796,0,0,OIF:SA:9:1375,Europe/Paris,,OIF, +OIF:SP:9:1376,1,"Chauffernes",48.870475,2.711958,0,0,OIF:SA:9:1375,Europe/Paris,,OIF, +OIF:SP:9:1377,1,"André le Notre",48.869328,2.710669,0,0,OIF:SA:9:1377,Europe/Paris,,OIF, +OIF:SP:9:1378,1,"André le Notre",48.869178,2.709878,0,0,OIF:SA:9:1377,Europe/Paris,,OIF, +OIF:SP:9:1379,1,"Imprimerie",48.879942,2.716414,0,0,OIF:SA:9:1037,Europe/Paris,,OIF, +OIF:SP:9:1380,1,"ANPE de Lagny",48.875917,2.692826,0,0,OIF:SA:9:1380,Europe/Paris,,OIF, +OIF:SP:9:1381,1,"Collège Jacqueline de Romilly",48.869272,2.812165,0,0,OIF:SA:9:1381,Europe/Paris,,OIF, +OIF:SP:9:1382,1,"Collège Jacqueline de Romilly",48.868815,2.811752,0,0,OIF:SA:9:1381,Europe/Paris,,OIF, +OIF:SP:9:1383,1,"ZAC du Centre",48.867247,2.812882,0,0,OIF:SA:47:15040,Europe/Paris,,OIF, +OIF:SP:9:1384,1,"ZAC du Centre",48.867087,2.812336,0,0,OIF:SA:47:15040,Europe/Paris,,OIF, +OIF:SP:9:1385,1,"Pierris",48.865803,2.690768,0,0,OIF:SA:9:1385,Europe/Paris,,OIF, +OIF:SP:9:1386,1,"Pierris",48.865866,2.690891,0,0,OIF:SA:9:1385,Europe/Paris,,OIF, +OIF:SP:9:1387,1,"Église",48.637224,2.797147,0,0,OIF:SA:13:97,Europe/Paris,,OIF, +OIF:SP:9:1396,1,"Marsange",48.843963,2.825469,0,0,OIF:SA:9:1396,Europe/Paris,,OIF, +OIF:SP:9:1397,1,"Gymnase",48.849998,2.82449,0,0,OIF:SA:9:1397,Europe/Paris,,OIF, +OIF:SP:9:1398,1,"Gymnase",48.850088,2.824478,0,0,OIF:SA:9:1397,Europe/Paris,,OIF, +OIF:SP:9:1400,1,"École de la Gabrielle",48.943242,2.689019,0,0,OIF:SA:9:1400,Europe/Paris,,OIF, +OIF:SP:9:1401,1,"Collège Léonard de Vinci",48.857916,2.670814,0,0,OIF:SA:9:1401,Europe/Paris,,OIF, +OIF:SP:9:1402,1,"Collège Léonard de Vinci",48.858087,2.670856,0,0,OIF:SA:9:1401,Europe/Paris,,OIF, +OIF:SP:9:1406,1,"Closeaux",48.85828,2.68486,0,0,OIF:SA:9:1406,Europe/Paris,,OIF, +OIF:SP:9:1407,1,"Closeaux",48.858317,2.684438,0,0,OIF:SA:9:1406,Europe/Paris,,OIF, +OIF:SP:9:1409,1,"École les Girandoles",48.845348,2.816535,0,0,OIF:SA:47:536,Europe/Paris,,OIF, +OIF:SP:9:1410,1,"École les Girandoles",48.846086,2.818299,0,0,OIF:SA:47:536,Europe/Paris,,OIF, +OIF:SP:9:1411,1,"Canal",48.866575,2.642357,0,0,OIF:SA:59:3677712,Europe/Paris,,OIF, +OIF:SP:9:1412,1,"Le Canal",48.86654,2.642303,0,0,OIF:SA:59:3677712,Europe/Paris,,OIF, +OIF:SP:9:1413,1,"Église de Gournay",48.863483,2.575945,0,0,OIF:SA:59:3681508,Europe/Paris,,OIF, +OIF:SP:9:1414,1,"Église de Gournay",48.863169,2.575739,0,0,OIF:SA:59:3681508,Europe/Paris,,OIF, +OIF:SP:9:1415,1,"Place Churchill",48.858807,2.581658,0,0,OIF:SA:59:4208538,Europe/Paris,,OIF, +OIF:SP:9:1416,1,"Place Churchill",48.858553,2.582487,0,0,OIF:SA:59:4208538,Europe/Paris,,OIF, +OIF:SP:9:1417,1,"Place Mattéoti",48.856273,2.58975,0,0,OIF:SA:9:1417,Europe/Paris,,OIF, +OIF:SP:9:1418,1,"Place Mattéoti",48.855821,2.590892,0,0,OIF:SA:9:1417,Europe/Paris,,OIF, +OIF:SP:9:1420,1,"Melun Pasteur",48.538264,2.656555,0,0,OIF:SA:9:1420,Europe/Paris,,OIF, +OIF:SP:9:1421,1,"Clos du Chêne",48.857087,2.753989,0,0,OIF:SA:9:1421,Europe/Paris,,OIF, +OIF:SP:9:1422,1,"Clos du Chêne",48.85724,2.754031,0,0,OIF:SA:9:1421,Europe/Paris,,OIF, +OIF:SP:9:1423,1,"Fontaine au Roi",48.878057,2.750806,0,0,OIF:SA:9:1238,Europe/Paris,,OIF, +OIF:SP:9:1426,1,"Puits du Gué",48.871576,2.751068,0,0,OIF:SA:9:1426,Europe/Paris,,OIF, +OIF:SP:9:1427,1,"Pompidou",48.549985,2.650345,0,0,OIF:SA:9:1427,Europe/Paris,,OIF, +OIF:SP:9:1428,1,"Pompidou",48.549833,2.650181,0,0,OIF:SA:9:1427,Europe/Paris,,OIF, +OIF:SP:9:1431,1,"Parc du Mont Evrain",48.867256,2.757927,0,0,OIF:SA:9:1431,Europe/Paris,,OIF, +OIF:SP:9:1432,1,"Parc du Mont Evrain",48.867448,2.757138,0,0,OIF:SA:9:1431,Europe/Paris,,OIF, +OIF:SP:9:1433,1,"Collège du Vieux Chêne",48.871479,2.765768,0,0,OIF:SA:9:1433,Europe/Paris,,OIF, +OIF:SP:9:1434,1,"Collège du Vieux Chêne",48.871616,2.765305,0,0,OIF:SA:9:1433,Europe/Paris,,OIF, +OIF:SP:9:1435,1,"Écoles",48.880254,2.769942,0,0,OIF:SA:9:1435,Europe/Paris,,OIF, +OIF:SP:9:1436,1,"Écoles",48.880547,2.770966,0,0,OIF:SA:9:1435,Europe/Paris,,OIF, +OIF:SP:9:1437,1,"Mairie de Chessy",48.879052,2.766879,0,0,OIF:SA:9:1437,Europe/Paris,,OIF, +OIF:SP:9:1438,1,"Mairie de Chessy",48.879158,2.767412,0,0,OIF:SA:9:1437,Europe/Paris,,OIF, +OIF:SP:9:1440,1,"Renaissance",48.881588,2.661292,0,0,OIF:SA:9:1440,Europe/Paris,,OIF, +OIF:SP:9:1441,1,"Le Prieure - Parc d'Entreprises",48.839411,2.792612,0,0,OIF:SA:9:1441,Europe/Paris,,OIF, +OIF:SP:9:1442,1,"Le Prieure - Parc d'Entreprises",48.839573,2.792613,0,0,OIF:SA:9:1441,Europe/Paris,,OIF, +OIF:SP:9:1443,1,"Garonne",48.852323,2.78646,0,0,OIF:SA:9:1443,Europe/Paris,,OIF, +OIF:SP:9:1444,1,"Garonne",48.85271,2.786218,0,0,OIF:SA:9:1443,Europe/Paris,,OIF, +OIF:SP:9:1447,1,"La Boucle des Trois Ormes",48.877716,2.813305,0,0,OIF:SA:9:1447,Europe/Paris,,OIF, +OIF:SP:9:1448,1,"La Boucle des Trois Ormes",48.877348,2.813125,0,0,OIF:SA:9:1447,Europe/Paris,,OIF, +OIF:SP:9:1449,1,"Rome",48.832646,2.739362,0,0,OIF:SA:9:1449,Europe/Paris,,OIF, +OIF:SP:9:1451,1,"Prague",48.853095,2.764717,0,0,OIF:SA:9:1451,Europe/Paris,,OIF, +OIF:SP:9:1452,1,"Prague",48.852863,2.764102,0,0,OIF:SA:9:1451,Europe/Paris,,OIF, +OIF:SP:9:1457,1,"Centre Hospitalier",48.849881,2.768708,0,0,OIF:SA:9:1457,Europe/Paris,,OIF, +OIF:SP:9:1458,1,"Centre Hospitalier",48.850016,2.768491,0,0,OIF:SA:9:1457,Europe/Paris,,OIF, +OIF:SP:9:1460,1,"Collège le Luzard",48.84628,2.613586,0,0,OIF:SA:9:1460,Europe/Paris,,OIF, +OIF:SP:9:1461,1,"Les Quatre Pavés",48.851822,2.618968,0,0,OIF:SA:59:3677692,Europe/Paris,,OIF, +OIF:SP:9:1462,1,"Les Quatre Pavés",48.851651,2.618994,0,0,OIF:SA:59:3677692,Europe/Paris,,OIF, +OIF:SP:9:1463,1,"Château",48.852484,2.604454,0,0,OIF:SA:9:1463,Europe/Paris,,OIF, +OIF:SP:9:1464,1,"Château",48.852304,2.604494,0,0,OIF:SA:9:1463,Europe/Paris,,OIF, +OIF:SP:9:1465,1,"Eugène Isabey",48.855067,2.763684,0,0,OIF:SA:9:1465,Europe/Paris,,OIF, +OIF:SP:9:1466,1,"Eugène Isabey",48.855653,2.763226,0,0,OIF:SA:9:1465,Europe/Paris,,OIF, +OIF:SP:9:1469,1,"Fontaine Rouge",48.854868,2.7715,0,0,OIF:SA:9:1469,Europe/Paris,,OIF, +OIF:SP:9:1470,1,"Marles SNCF",48.734493,2.868221,0,0,OIF:SA:9:1470,Europe/Paris,,OIF, +OIF:SP:9:1471,1,"Érable",48.852538,2.668628,0,0,OIF:SA:9:1471,Europe/Paris,,OIF, +OIF:SP:9:1472,1,"Érable",48.852493,2.668914,0,0,OIF:SA:9:1471,Europe/Paris,,OIF, +OIF:SP:9:1473,1,"Centre Urbain (Accès RER)",48.853521,2.773423,0,0,OIF:SA:9:1473,Europe/Paris,,OIF, +OIF:SP:9:1474,1,"Centre Urbain (Accès RER)",48.853675,2.773234,0,0,OIF:SA:9:1473,Europe/Paris,,OIF, +OIF:SP:9:1475,1,"Église",48.666102,2.842322,0,0,OIF:SA:48:5065,Europe/Paris,,OIF, +OIF:SP:9:1477,1,"Coubertin",48.711425,2.870729,0,0,OIF:SA:52:14844,Europe/Paris,,OIF, +OIF:SP:9:1487,1,"Centre Aquatique",48.844795,2.801755,0,0,OIF:SA:9:1487,Europe/Paris,,OIF, +OIF:SP:9:1488,1,"Centre Aquatique",48.845002,2.801566,0,0,OIF:SA:9:1487,Europe/Paris,,OIF, +OIF:SP:9:1490,1,"Roissy CDG-RER",49.010541,2.559262,0,0,OIF:SA:8727146,Europe/Paris,,OIF, +OIF:SP:9:1491,1,"Gonière",48.757393,2.864771,0,0,OIF:SA:9:1491,Europe/Paris,,OIF, +OIF:SP:9:1493,1,"Fleuriste",48.795244,2.704544,0,0,OIF:SA:48:5003,Europe/Paris,,OIF, +OIF:SP:9:1494,1,"Fleuriste",48.795243,2.704816,0,0,OIF:SA:48:5003,Europe/Paris,,OIF, +OIF:SP:9:1495,1,"Hôtel du Val de France",48.877896,2.806508,0,0,OIF:SA:9:1495,Europe/Paris,,OIF, +OIF:SP:9:1496,1,"Hôtel du Val de France",48.877573,2.806369,0,0,OIF:SA:9:1495,Europe/Paris,,OIF, +OIF:SP:9:1497,1,"Coulée Verte",48.871998,2.813852,0,0,OIF:SA:9:1497,Europe/Paris,,OIF, +OIF:SP:9:1498,1,"Coulée Verte",48.872027,2.813294,0,0,OIF:SA:9:1497,Europe/Paris,,OIF, +OIF:SP:9:1501,1,"Parking Nord",48.879121,2.78221,0,0,OIF:SA:47:15036,Europe/Paris,,OIF, +OIF:SP:9:1502,1,"Parking Nord",48.879167,2.78191,0,0,OIF:SA:47:15036,Europe/Paris,,OIF, +OIF:SP:9:1503,1,"Hôtel de Ville",48.856302,2.784493,0,0,OIF:SA:9:1503,Europe/Paris,,OIF, +OIF:SP:9:1504,1,"Hôtel de Ville",48.856429,2.78418,0,0,OIF:SA:9:1503,Europe/Paris,,OIF, +OIF:SP:9:1507,1,"Lycée Emilie du Châtelet",48.856728,2.778898,0,0,OIF:SA:9:1507,Europe/Paris,,OIF, +OIF:SP:9:1508,1,"Lycée Emilie du Châtelet",48.856836,2.778804,0,0,OIF:SA:9:1507,Europe/Paris,,OIF, +OIF:SP:9:1509,1,"Villages Nature",48.83039,2.801082,0,0,OIF:SA:9:1509,Europe/Paris,,OIF, +OIF:SP:9:1517,1,"Villages Nature (RD231)",48.83145,2.801173,0,0,OIF:SA:9:1517,Europe/Paris,,OIF, +OIF:SP:9:1528,1,"CCI",48.837499,2.794378,0,0,OIF:SA:9:1528,Europe/Paris,,OIF, +OIF:SP:9:1529,1,"CCI",48.837679,2.794108,0,0,OIF:SA:9:1528,Europe/Paris,,OIF, +OIF:SP:9:1533,1,"Centre de Radiologie",48.85272,2.761499,0,0,OIF:SA:9:1533,Europe/Paris,,OIF, +OIF:SP:9:1534,1,"Centre de Radiologie",48.853052,2.761543,0,0,OIF:SA:9:1533,Europe/Paris,,OIF, +OIF:SP:9:1573,1,"Foyer",48.872474,2.6961,0,0,OIF:SA:9:1573,Europe/Paris,,OIF, +OIF:SP:9:1575,1,"Fort du Bois",48.8624,2.721789,0,0,OIF:SA:9:1575,Europe/Paris,,OIF, +OIF:SP:9:1576,1,"Fort du Bois",48.862426,2.721953,0,0,OIF:SA:9:1575,Europe/Paris,,OIF, +OIF:SP:9:1589,1,"Rue de Bellesmes",48.847914,2.815279,0,0,OIF:SA:9:1589,Europe/Paris,,OIF, +OIF:SP:9:1590,1,"Rue de Bellesmes",48.847371,2.816118,0,0,OIF:SA:9:1589,Europe/Paris,,OIF, +OIF:SP:9:1591,1,"Gérard de Nerval",48.856105,2.719931,0,0,OIF:SA:9:1591,Europe/Paris,,OIF, +OIF:SP:9:1592,1,"Gérard de Nerval",48.856223,2.719646,0,0,OIF:SA:9:1591,Europe/Paris,,OIF, +OIF:SP:9:1600,1,"Général Leclerc",48.884291,2.714034,0,0,OIF:SA:9:1600,Europe/Paris,,OIF, +OIF:SP:9:1611,1,"Georges Seurat",48.867222,2.706145,0,0,OIF:SA:9:1611,Europe/Paris,,OIF, +OIF:SP:9:1612,1,"Georges Seurat",48.866853,2.706306,0,0,OIF:SA:9:1611,Europe/Paris,,OIF, +OIF:SP:9:1613,1,"Gallieni",48.876187,2.70753,0,0,OIF:SA:9:1613,Europe/Paris,,OIF, +OIF:SP:9:1614,1,"Gallieni",48.876717,2.707371,0,0,OIF:SA:9:1613,Europe/Paris,,OIF, +OIF:SP:9:1620,1,"Jeanne d'Arc",48.885062,2.70589,0,0,OIF:SA:9:1620,Europe/Paris,,OIF, +OIF:SP:9:1630,1,"Gambetta",48.885278,2.733802,0,0,OIF:SA:9:1630,Europe/Paris,,OIF, +OIF:SP:9:1641,1,"Gare de Bussy-Saint-Georges L44 ZI",48.836547,2.709071,0,0,OIF:SA:8775498,Europe/Paris,,OIF, +OIF:SP:9:1642,1,"Gare de Bussy-Saint-Georges L44 Auriol",48.83652,2.709071,0,0,OIF:SA:8775498,Europe/Paris,,OIF, +OIF:SP:9:1643,1,"Gare de Bussy-Saint-Georges L46 T",48.83652,2.709071,0,0,OIF:SA:8775498,Europe/Paris,,OIF, +OIF:SP:9:1644,1,"Gare de Bussy-Saint-Georges L46 S",48.83652,2.709071,0,0,OIF:SA:8775498,Europe/Paris,,OIF, +OIF:SP:9:1651,1,"La Gendarmerie",48.876568,2.720641,0,0,OIF:SA:9:1651,Europe/Paris,,OIF, +OIF:SP:9:1652,1,"La Gendarmerie",48.877057,2.719336,0,0,OIF:SA:9:1651,Europe/Paris,,OIF, +OIF:SP:9:1661,1,"Jacqueline Auriol",48.845198,2.729696,0,0,OIF:SA:9:1661,Europe/Paris,,OIF, +OIF:SP:9:1662,1,"Jacqueline Auriol",48.845214,2.730554,0,0,OIF:SA:9:1661,Europe/Paris,,OIF, +OIF:SP:9:1665,1,"Bruxelles",48.834346,2.717265,0,0,OIF:SA:9:1665,Europe/Paris,,OIF, +OIF:SP:9:1667,1,"Butte de Vaux",48.832715,2.698479,0,0,OIF:SA:9:1667,Europe/Paris,,OIF, +OIF:SP:9:1668,1,"Butte de Vaux",48.83286,2.698072,0,0,OIF:SA:9:1667,Europe/Paris,,OIF, +OIF:SP:9:1670,1,"Mairie",48.861115,2.695545,0,0,OIF:SA:9:1670,Europe/Paris,,OIF, +OIF:SP:9:1671,1,"Branly",48.873769,2.689746,0,0,OIF:SA:9:1671,Europe/Paris,,OIF, +OIF:SP:9:1672,1,"Branly",48.874,2.69081,0,0,OIF:SA:9:1671,Europe/Paris,,OIF, +OIF:SP:9:1673,1,"Place Claude Monet",48.854871,2.666927,0,0,OIF:SA:9:1673,Europe/Paris,,OIF, +OIF:SP:9:1674,1,"Place Claude Monet",48.854664,2.666871,0,0,OIF:SA:9:1673,Europe/Paris,,OIF, +OIF:SP:9:1675,1,"Centre Culturel",48.868719,2.680407,0,0,OIF:SA:9:1675,Europe/Paris,,OIF, +OIF:SP:9:1676,1,"Centre Culturel",48.868799,2.680707,0,0,OIF:SA:9:1675,Europe/Paris,,OIF, +OIF:SP:9:1681,1,"Cèdre",48.840893,2.667682,0,0,OIF:SA:9:1681,Europe/Paris,,OIF, +OIF:SP:9:1682,1,"Cèdre",48.840983,2.667655,0,0,OIF:SA:9:1681,Europe/Paris,,OIF, +OIF:SP:9:1683,1,"Église",48.854576,2.706327,0,0,OIF:SA:9:1683,Europe/Paris,,OIF, +OIF:SP:9:1684,1,"Église",48.854623,2.705456,0,0,OIF:SA:9:1683,Europe/Paris,,OIF, +OIF:SP:9:1692,1,"Gutenberg",48.831475,2.729592,0,0,OIF:SA:9:1692,Europe/Paris,,OIF, +OIF:SP:9:1693,1,"Gypse",48.917235,2.712201,0,0,OIF:SA:9:1693,Europe/Paris,,OIF, +OIF:SP:9:1694,1,"Gypse",48.917369,2.712489,0,0,OIF:SA:9:1693,Europe/Paris,,OIF, +OIF:SP:9:1695,1,"Foch",48.876134,2.701167,0,0,OIF:SA:9:1695,Europe/Paris,,OIF, +OIF:SP:9:1701,1,"Henri Dunant",48.87327,2.700275,0,0,OIF:SA:9:1701,Europe/Paris,,OIF, +OIF:SP:9:1702,1,"Henri Dunant",48.872946,2.700341,0,0,OIF:SA:9:1701,Europe/Paris,,OIF, +OIF:SP:9:1703,1,"Hauts de Vallières",48.897329,2.711853,0,0,OIF:SA:9:1703,Europe/Paris,,OIF, +OIF:SP:9:1704,1,"Hauts de Vallières",48.897115,2.711456,0,0,OIF:SA:9:1703,Europe/Paris,,OIF, +OIF:SP:9:1707,1,"Vaires SNCF",48.875697,2.63895,0,0,OIF:SA:8711629,Europe/Paris,,OIF, +OIF:SP:9:1708,1,"Vaires SNCF",48.876094,2.638448,0,0,OIF:SA:8711629,Europe/Paris,,OIF, +OIF:SP:9:1713,1,"Cimetière",48.886528,2.720047,0,0,OIF:SA:9:1713,Europe/Paris,,OIF, +OIF:SP:9:1715,1,"Cimetière",48.886799,2.719476,0,0,OIF:SA:9:1713,Europe/Paris,,OIF, +OIF:SP:9:1720,1,"Hazard",48.885659,2.743589,0,0,OIF:SA:9:1720,Europe/Paris,,OIF, +OIF:SP:9:1730,1,"Gare de Torcy",48.838943,2.654381,0,0,OIF:SA:8775837,Europe/Paris,,OIF, +OIF:SP:9:1731,1,"Anne Frank",48.778186,2.679767,0,0,OIF:SA:9:1731,Europe/Paris,,OIF, +OIF:SP:9:1732,1,"Anne Frank",48.778545,2.680137,0,0,OIF:SA:9:1731,Europe/Paris,,OIF, +OIF:SP:9:1733,1,"Saint-Jean",48.876242,2.698184,0,0,OIF:SA:9:1733,Europe/Paris,,OIF, +OIF:SP:9:1734,1,"Saint-Jean",48.875974,2.697787,0,0,OIF:SA:9:1733,Europe/Paris,,OIF, +OIF:SP:9:1735,1,"Torcy RER L 46",48.838952,2.654381,0,0,OIF:SA:8775837,Europe/Paris,,OIF, +OIF:SP:9:1736,1,"Torcy RER L 25",48.838961,2.654381,0,0,OIF:SA:8775837,Europe/Paris,,OIF, +OIF:SP:9:1737,1,"Torcy RER L 21",48.83897,2.654381,0,0,OIF:SA:8775837,Europe/Paris,,OIF, +OIF:SP:9:1738,1,"Torcy RER L 29",48.838979,2.654381,0,0,OIF:SA:8775837,Europe/Paris,,OIF, +OIF:SP:9:1739,1,"Torcy RER L 13",48.838988,2.654381,0,0,OIF:SA:8775837,Europe/Paris,,OIF, +OIF:SP:9:1760,1,"Victor Hugo",48.886087,2.71725,0,0,OIF:SA:9:1760,Europe/Paris,,OIF, +OIF:SP:9:1763,1,"Intermarché",48.867911,2.676996,0,0,OIF:SA:9:1763,Europe/Paris,,OIF, +OIF:SP:9:1764,1,"Intermarché",48.867882,2.677377,0,0,OIF:SA:9:1763,Europe/Paris,,OIF, +OIF:SP:9:1770,1,"Île de Loisirs",48.916692,2.738106,0,0,OIF:SA:9:1770,Europe/Paris,,OIF, +OIF:SP:9:1780,1,"Marie Hélène",48.827051,2.701721,0,0,OIF:SA:9:1780,Europe/Paris,,OIF, +OIF:SP:9:1781,1,"Mairie",48.917915,2.761434,0,0,OIF:SA:47:15057,Europe/Paris,,OIF, +OIF:SP:9:1782,1,"Mairie",48.917896,2.761665,0,0,OIF:SA:47:15057,Europe/Paris,,OIF, +OIF:SP:9:1783,1,"Jacquard",48.874078,2.685538,0,0,OIF:SA:9:1783,Europe/Paris,,OIF, +OIF:SP:9:1784,1,"Jacquard",48.874086,2.685961,0,0,OIF:SA:9:1783,Europe/Paris,,OIF, +OIF:SP:9:1790,1,"Victoire",48.870695,2.704848,0,0,OIF:SA:9:1790,Europe/Paris,,OIF, +OIF:SP:9:1801,1,"Jeanne d'Arc",48.885062,2.706163,0,0,OIF:SA:9:1620,Europe/Paris,,OIF, +OIF:SP:9:1811,1,"Joncs",48.870183,2.683618,0,0,OIF:SA:9:1811,Europe/Paris,,OIF, +OIF:SP:9:1812,1,"Joncs",48.870111,2.683713,0,0,OIF:SA:9:1811,Europe/Paris,,OIF, +OIF:SP:9:1820,1,"Jules Ferry",48.811989,2.828665,0,0,OIF:SA:9:1820,Europe/Paris,,OIF, +OIF:SP:9:1830,1,"Juliette Vadel",48.889434,2.743401,0,0,OIF:SA:9:1830,Europe/Paris,,OIF, +OIF:SP:9:1841,1,"Kennedy",48.871177,2.6909,0,0,OIF:SA:9:1841,Europe/Paris,,OIF, +OIF:SP:9:1842,1,"Kennedy",48.870578,2.689956,0,0,OIF:SA:9:1841,Europe/Paris,,OIF, +OIF:SP:9:1843,1,"La Boiserie",48.862695,2.818357,0,0,OIF:SA:47:15042,Europe/Paris,,OIF, +OIF:SP:9:1844,1,"La Boiserie",48.862481,2.818069,0,0,OIF:SA:47:15042,Europe/Paris,,OIF, +OIF:SP:9:1851,1,"La Chanée",48.92002,2.715276,0,0,OIF:SA:9:1851,Europe/Paris,,OIF, +OIF:SP:9:1852,1,"La Chanée",48.920827,2.715896,0,0,OIF:SA:9:1851,Europe/Paris,,OIF, +OIF:SP:9:1860,1,"La Croix",48.901831,2.706541,0,0,OIF:SA:9:1860,Europe/Paris,,OIF, +OIF:SP:9:1874,1,"La Haye",48.831002,2.725627,0,0,OIF:SA:9:1874,Europe/Paris,,OIF, +OIF:SP:9:1881,1,"La Paix",48.883416,2.720787,0,0,OIF:SA:9:1881,Europe/Paris,,OIF, +OIF:SP:9:1882,1,"La Paix",48.883677,2.720571,0,0,OIF:SA:9:1881,Europe/Paris,,OIF, +OIF:SP:9:1883,1,"La Petite Jonchère",48.851392,2.737342,0,0,OIF:SA:9:1883,Europe/Paris,,OIF, +OIF:SP:9:1884,1,"La Petite Jonchère",48.851463,2.737615,0,0,OIF:SA:9:1883,Europe/Paris,,OIF, +OIF:SP:9:1891,1,"La Pointe",48.878261,2.69054,0,0,OIF:SA:9:1891,Europe/Paris,,OIF, +OIF:SP:9:1892,1,"La Pointe",48.878198,2.690594,0,0,OIF:SA:9:1891,Europe/Paris,,OIF, +OIF:SP:9:1893,1,"La Violette",48.912414,2.710571,0,0,OIF:SA:9:1893,Europe/Paris,,OIF, +OIF:SP:9:1894,1,"La Violette",48.911632,2.71077,0,0,OIF:SA:9:1893,Europe/Paris,,OIF, +OIF:SP:9:1895,1,"Lycée Émily Brontë",48.839395,2.639542,0,0,OIF:SA:59:3677668,Europe/Paris,,OIF, +OIF:SP:9:1900,1,"Gare de Lagny Thorigny",48.881955,2.705255,0,0,OIF:SA:8711631,Europe/Paris,,OIF, +OIF:SP:9:1901,1,"Gare de Lagny Thorigny 29",48.881911,2.704996,0,0,OIF:SA:8711631,Europe/Paris,,OIF, +OIF:SP:9:1902,1,"Gare de Lagny Thorigny 23",48.88192,2.704996,0,0,OIF:SA:8711631,Europe/Paris,,OIF, +OIF:SP:9:1903,1,"Gare de Lagny Thorigny 42",48.881827,2.70584,0,0,OIF:SA:8711631,Europe/Paris,,OIF, +OIF:SP:9:1905,1,"Gare de Lagny Thorigny 02 26",48.881947,2.704996,0,0,OIF:SA:8711631,Europe/Paris,,OIF, +OIF:SP:9:1906,1,"Gare de Lagny Thorigny 21",48.881956,2.704996,0,0,OIF:SA:8711631,Europe/Paris,,OIF, +OIF:SP:9:1907,1,"Gare de Lagny Thorigny 25",48.881938,2.704996,0,0,OIF:SA:8711631,Europe/Paris,,OIF, +OIF:SP:9:1910,1,"Lambuis",48.887247,2.744297,0,0,OIF:SA:9:1910,Europe/Paris,,OIF, +OIF:SP:9:1921,1,"Lavoir",48.835771,2.673939,0,0,OIF:SA:9:1921,Europe/Paris,,OIF, +OIF:SP:9:1922,1,"Lavoir",48.835428,2.674346,0,0,OIF:SA:9:1921,Europe/Paris,,OIF, +OIF:SP:9:1923,1,"Le Gasset",48.855444,2.743121,0,0,OIF:SA:9:1923,Europe/Paris,,OIF, +OIF:SP:9:1924,1,"Le Gasset",48.855282,2.743133,0,0,OIF:SA:9:1923,Europe/Paris,,OIF, +OIF:SP:9:1933,1,"Le Notre",48.851059,2.704041,0,0,OIF:SA:9:1933,Europe/Paris,,OIF, +OIF:SP:9:1934,1,"Le Notre",48.851976,2.704034,0,0,OIF:SA:9:1933,Europe/Paris,,OIF, +OIF:SP:9:1950,1,"Clos des Charmes",48.829443,2.677002,0,0,OIF:SA:9:1950,Europe/Paris,,OIF, +OIF:SP:9:1951,1,"Le Rû",48.858929,2.719475,0,0,OIF:SA:9:1951,Europe/Paris,,OIF, +OIF:SP:9:1952,1,"Le Rû",48.859,2.719653,0,0,OIF:SA:9:1951,Europe/Paris,,OIF, +OIF:SP:9:1958,1,"Moulin",48.828184,2.674407,0,0,OIF:SA:9:1958,Europe/Paris,,OIF, +OIF:SP:9:1970,1,"Poirier de la Butte",48.829854,2.671791,0,0,OIF:SA:9:1970,Europe/Paris,,OIF, +OIF:SP:9:1971,1,"Les 2 Châteaux",48.852569,2.715519,0,0,OIF:SA:9:1971,Europe/Paris,,OIF, +OIF:SP:9:1972,1,"Les 2 Châteaux",48.852454,2.715096,0,0,OIF:SA:9:1971,Europe/Paris,,OIF, +OIF:SP:9:1973,1,"Maison de Retraite",48.854178,2.70992,0,0,OIF:SA:9:1973,Europe/Paris,,OIF, +OIF:SP:9:1974,1,"Maison de Retraite",48.854097,2.709946,0,0,OIF:SA:9:1973,Europe/Paris,,OIF, +OIF:SP:9:1975,1,"ZA de Vallières",48.89845,2.712788,0,0,OIF:SA:9:1975,Europe/Paris,,OIF, +OIF:SP:9:1976,1,"ZA de Vallières",48.898405,2.712624,0,0,OIF:SA:9:1975,Europe/Paris,,OIF, +OIF:SP:9:1980,1,"Les Chênes",48.884937,2.69094,0,0,OIF:SA:9:1980,Europe/Paris,,OIF, +OIF:SP:9:1985,1,"Jacques de Thou",48.840255,2.729685,0,0,OIF:SA:9:1985,Europe/Paris,,OIF, +OIF:SP:9:1986,1,"Jacques de Thou",48.840139,2.729508,0,0,OIF:SA:9:1985,Europe/Paris,,OIF, +OIF:SP:9:1987,1,"Louis Guibert",48.844123,2.731635,0,0,OIF:SA:9:1987,Europe/Paris,,OIF, +OIF:SP:9:1988,1,"Louis Guibert",48.844167,2.731744,0,0,OIF:SA:9:1987,Europe/Paris,,OIF, +OIF:SP:9:2012,1,"Collège Claude Monet",48.844733,2.737263,0,0,OIF:SA:9:2012,Europe/Paris,,OIF, +OIF:SP:9:2015,1,"Dénicherie 1",48.802374,2.784966,0,0,OIF:SA:9:1070,Europe/Paris,,OIF, +OIF:SP:9:2031,1,"Roseraie",48.824206,2.706247,0,0,OIF:SA:9:2031,Europe/Paris,,OIF, +OIF:SP:9:2037,1,"Georges Méliès",48.834983,2.720401,0,0,OIF:SA:9:2037,Europe/Paris,,OIF, +OIF:SP:9:2038,1,"Georges Méliès",48.834973,2.720769,0,0,OIF:SA:9:2037,Europe/Paris,,OIF, +OIF:SP:9:2041,1,"Centre Commercial",48.826493,2.70512,0,0,OIF:SA:9:2041,Europe/Paris,,OIF, +OIF:SP:9:500,1,"Pasteur (Collège les Tilleuls)",48.941986,2.682257,0,0,OIF:SA:9:500,Europe/Paris,,OIF, +OIF:SP:9:501,1,"Pré de Bray",48.859311,2.815111,0,0,OIF:SA:9:501,Europe/Paris,,OIF, +OIF:SP:9:502,1,"Pré de Bray",48.859241,2.814566,0,0,OIF:SA:9:501,Europe/Paris,,OIF, +OIF:SP:9:505,1,"Genets",48.844009,2.719692,0,0,OIF:SA:9:1291,Europe/Paris,,OIF, +OIF:SP:9:506,1,"Genets",48.844059,2.720822,0,0,OIF:SA:9:1291,Europe/Paris,,OIF, +OIF:SP:9:510,1,"Les Blancherons",48.889477,2.713786,0,0,OIF:SA:9:510,Europe/Paris,,OIF, +OIF:SP:9:515,1,"La Hayette",48.942823,2.879678,0,0,OIF:SA:47:3779,Europe/Paris,,OIF, +OIF:SP:9:516,1,"La Hayette",48.942816,2.879228,0,0,OIF:SA:47:3779,Europe/Paris,,OIF, +OIF:SP:9:525,1,"Place",48.763333,2.774215,0,0,OIF:SA:9:525,Europe/Paris,,OIF, +OIF:SP:9:526,1,"Place",48.763359,2.774487,0,0,OIF:SA:9:525,Europe/Paris,,OIF, +OIF:SP:9:527,1,"Rue du Marronnier",48.768092,2.775588,0,0,OIF:SA:9:527,Europe/Paris,,OIF, +OIF:SP:9:528,1,"Rue du Marronnier",48.767912,2.775627,0,0,OIF:SA:9:527,Europe/Paris,,OIF, +OIF:SP:9:530,1,"Gare de Tournan-en-Brie (Cote Guichet)",48.739621,2.759597,0,0,OIF:SA:8711621,Europe/Paris,,OIF, +OIF:SP:9:531,1,"Saint-Ouen",48.754295,2.768198,0,0,OIF:SA:9:531,Europe/Paris,,OIF, +OIF:SP:9:532,1,"Saint-Ouen",48.754501,2.768458,0,0,OIF:SA:9:531,Europe/Paris,,OIF, +OIF:SP:9:580,1,"Collège Vermay",48.74362,2.752127,0,0,OIF:SA:48:5080,Europe/Paris,,OIF, +OIF:SP:9:587,1,"Rue de la Gare",48.882278,2.702286,0,0,OIF:SA:8711631,Europe/Paris,,OIF, +OIF:SP:9:590,1,"Dhuis",48.89019,2.727025,0,0,OIF:SA:9:590,Europe/Paris,,OIF, +OIF:SP:9:591,1,"Rie",48.871798,2.681708,0,0,OIF:SA:9:591,Europe/Paris,,OIF, +OIF:SP:9:592,1,"Rie",48.871636,2.681652,0,0,OIF:SA:9:591,Europe/Paris,,OIF, +OIF:SP:9:593,1,"Commissariat",48.861973,2.787116,0,0,OIF:SA:9:593,Europe/Paris,,OIF, +OIF:SP:9:595,1,"Le Gibet",48.826467,2.790687,0,0,OIF:SA:9:595,Europe/Paris,,OIF, +OIF:SP:9:596,1,"Église",48.815947,2.793998,0,0,OIF:SA:9:596,Europe/Paris,,OIF, +OIF:SP:9:597,1,"Église",48.815886,2.793548,0,0,OIF:SA:9:596,Europe/Paris,,OIF, +OIF:SP:9:598,1,"Commissariat",48.860762,2.786343,0,0,OIF:SA:9:593,Europe/Paris,,OIF, +OIF:SP:9:601,1,"Le Cantou",48.859212,2.742674,0,0,OIF:SA:9:601,Europe/Paris,,OIF, +OIF:SP:9:602,1,"Le Cantou",48.859069,2.742359,0,0,OIF:SA:9:601,Europe/Paris,,OIF, +OIF:SP:9:603,1,"Les Rougeriots",48.855018,2.746945,0,0,OIF:SA:9:603,Europe/Paris,,OIF, +OIF:SP:9:604,1,"Les Rougeriots",48.855002,2.746386,0,0,OIF:SA:9:603,Europe/Paris,,OIF, +OIF:SP:9:605,1,"L'Orée du Bois",48.860724,2.736556,0,0,OIF:SA:9:605,Europe/Paris,,OIF, +OIF:SP:9:606,1,"L'Orée du Bois",48.860456,2.736104,0,0,OIF:SA:9:605,Europe/Paris,,OIF, +OIF:SP:9:607,1,"Bout Pecheret",48.833622,2.753624,0,0,OIF:SA:9:607,Europe/Paris,,OIF, +OIF:SP:9:608,1,"Bout Pecheret",48.834198,2.753465,0,0,OIF:SA:9:607,Europe/Paris,,OIF, +OIF:SP:9:609,1,"Mendès France",48.83163,2.709336,0,0,OIF:SA:9:609,Europe/Paris,,OIF, +OIF:SP:9:610,1,"Mendès France",48.831746,2.709595,0,0,OIF:SA:9:609,Europe/Paris,,OIF, +OIF:SP:9:611,1,"Mairie",48.908698,2.780051,0,0,OIF:SA:47:2753,Europe/Paris,,OIF, +OIF:SP:9:612,1,"Mairie",48.908742,2.780269,0,0,OIF:SA:47:2753,Europe/Paris,,OIF, +OIF:SP:9:615,1,"Saint-Eloi",48.882861,2.772294,0,0,OIF:SA:9:615,Europe/Paris,,OIF, +OIF:SP:9:616,1,"Saint-Eloi",48.883086,2.772214,0,0,OIF:SA:9:615,Europe/Paris,,OIF, +OIF:SP:9:617,1,"Artisans",48.8826,2.772332,0,0,OIF:SA:9:617,Europe/Paris,,OIF, +OIF:SP:9:621,1,"Lycée M. Luther King",48.838978,2.719015,0,0,OIF:SA:9:621,Europe/Paris,,OIF, +OIF:SP:9:622,1,"Lycée M. Luther King",48.838756,2.718264,0,0,OIF:SA:9:621,Europe/Paris,,OIF, +OIF:SP:9:623,1,"Lys",48.843562,2.716066,0,0,OIF:SA:9:623,Europe/Paris,,OIF, +OIF:SP:9:624,1,"Lys",48.843438,2.715616,0,0,OIF:SA:9:623,Europe/Paris,,OIF, +OIF:SP:9:625,1,"Madeleine",48.88859,2.607121,0,0,OIF:SA:53:2295,Europe/Paris,,OIF, +OIF:SP:9:626,1,"Madeleine",48.888581,2.606889,0,0,OIF:SA:53:2295,Europe/Paris,,OIF, +OIF:SP:9:630,1,"Lieusaint - Moissy RER",48.628832,2.567883,0,0,OIF:SA:8768215,Europe/Paris,,OIF, +OIF:SP:9:633,1,"Alembert",48.877653,2.732353,0,0,OIF:SA:9:633,Europe/Paris,,OIF, +OIF:SP:9:634,1,"Alembert",48.877727,2.731659,0,0,OIF:SA:9:633,Europe/Paris,,OIF, +OIF:SP:9:635,1,"Les Marmousets",48.850559,2.786949,0,0,OIF:SA:9:635,Europe/Paris,,OIF, +OIF:SP:9:636,1,"Les Marmousets",48.850263,2.786824,0,0,OIF:SA:9:635,Europe/Paris,,OIF, +OIF:SP:9:637,1,"Les Pléiades",48.841402,2.784092,0,0,OIF:SA:9:637,Europe/Paris,,OIF, +OIF:SP:9:638,1,"Les Pléiades",48.841168,2.784294,0,0,OIF:SA:9:637,Europe/Paris,,OIF, +OIF:SP:9:640,1,"Alger Lions",48.885045,2.730911,0,0,OIF:SA:9:640,Europe/Paris,,OIF, +OIF:SP:9:643,1,"Rives de Maubuée",48.84475,2.653872,0,0,OIF:SA:59:5231531,Europe/Paris,,OIF, +OIF:SP:9:644,1,"Rives de Maubuée",48.844588,2.654156,0,0,OIF:SA:59:5231531,Europe/Paris,,OIF, +OIF:SP:9:647,1,"Mermoz",48.864306,2.718656,0,0,OIF:SA:9:647,Europe/Paris,,OIF, +OIF:SP:9:648,1,"Mermoz",48.864423,2.718603,0,0,OIF:SA:9:647,Europe/Paris,,OIF, +OIF:SP:9:650,1,"Allée du Château",48.883771,2.727426,0,0,OIF:SA:9:650,Europe/Paris,,OIF, +OIF:SP:9:651,1,"Metz",48.878133,2.711741,0,0,OIF:SA:9:651,Europe/Paris,,OIF, +OIF:SP:9:657,1,"Rue du Moulin à Vent",48.86703,2.808671,0,0,OIF:SA:9:657,Europe/Paris,,OIF, +OIF:SP:9:658,1,"Rue du Moulin à Vent",48.866848,2.809391,0,0,OIF:SA:9:657,Europe/Paris,,OIF, +OIF:SP:9:660,1,"Lièvre",48.89017,2.721995,0,0,OIF:SA:9:660,Europe/Paris,,OIF, +OIF:SP:9:661,1,"Allende",48.842904,2.65544,0,0,OIF:SA:59:5231530,Europe/Paris,,OIF, +OIF:SP:9:662,1,"Allende",48.842389,2.656349,0,0,OIF:SA:59:5231530,Europe/Paris,,OIF, +OIF:SP:9:663,1,"Alsace Lorraine",48.870852,2.700408,0,0,OIF:SA:9:663,Europe/Paris,,OIF, +OIF:SP:9:664,1,"Alsace Lorraine",48.871167,2.70041,0,0,OIF:SA:9:663,Europe/Paris,,OIF, +OIF:SP:9:670,1,"Lycée Perdonnet",48.887693,2.729227,0,0,OIF:SA:9:1041,Europe/Paris,,OIF, +OIF:SP:9:671,1,"Ampère",48.87566,2.68544,0,0,OIF:SA:9:671,Europe/Paris,,OIF, +OIF:SP:9:672,1,"Ampère",48.87575,2.685481,0,0,OIF:SA:9:671,Europe/Paris,,OIF, +OIF:SP:9:673,1,"Mairie",48.854607,2.626665,0,0,OIF:SA:59:3677696,Europe/Paris,,OIF, +OIF:SP:9:674,1,"Mairie",48.854281,2.627725,0,0,OIF:SA:59:3677696,Europe/Paris,,OIF, +OIF:SP:9:677,1,"Orly Parc",48.874558,2.722166,0,0,OIF:SA:9:677,Europe/Paris,,OIF, +OIF:SP:9:681,1,"Orly Parc RD231",48.874229,2.724016,0,0,OIF:SA:9:677,Europe/Paris,,OIF, +OIF:SP:9:682,1,"Orly Parc RD231",48.874535,2.723732,0,0,OIF:SA:9:677,Europe/Paris,,OIF, +OIF:SP:9:683,1,"Orme Bossu",48.86482,2.709533,0,0,OIF:SA:9:683,Europe/Paris,,OIF, +OIF:SP:9:684,1,"Orme Bossu",48.864946,2.709493,0,0,OIF:SA:9:683,Europe/Paris,,OIF, +OIF:SP:9:685,1,"Paul Claudel",48.853002,2.717838,0,0,OIF:SA:9:685,Europe/Paris,,OIF, +OIF:SP:9:686,1,"Paul Claudel",48.85293,2.717987,0,0,OIF:SA:9:685,Europe/Paris,,OIF, +OIF:SP:9:687,1,"Palissy",48.838571,2.705532,0,0,OIF:SA:9:687,Europe/Paris,,OIF, +OIF:SP:9:688,1,"Palissy",48.838831,2.705575,0,0,OIF:SA:9:687,Europe/Paris,,OIF, +OIF:SP:9:690,1,"Les Cordonniers",48.888103,2.7275,0,0,OIF:SA:9:690,Europe/Paris,,OIF, +OIF:SP:9:691,1,"La Mogotte",48.849947,2.635954,0,0,OIF:SA:59:3681471,Europe/Paris,,OIF, +OIF:SP:9:692,1,"La Mogotte",48.850101,2.635437,0,0,OIF:SA:59:3681471,Europe/Paris,,OIF, +OIF:SP:9:693,1,"Parc d'Activités",48.827864,2.706491,0,0,OIF:SA:9:693,Europe/Paris,,OIF, +OIF:SP:9:694,1,"Parc d'Activités",48.827837,2.706354,0,0,OIF:SA:9:693,Europe/Paris,,OIF, +OIF:SP:9:695,1,"Parc de Brou",48.881471,2.630113,0,0,OIF:SA:9:695,Europe/Paris,,OIF, +OIF:SP:9:696,1,"Parc de Brou",48.881444,2.630317,0,0,OIF:SA:9:695,Europe/Paris,,OIF, +OIF:SP:9:697,1,"Parc de l'Esplanade",48.861746,2.673672,0,0,OIF:SA:9:697,Europe/Paris,,OIF, +OIF:SP:9:698,1,"Parc de l'Esplanade",48.86222,2.674411,0,0,OIF:SA:9:697,Europe/Paris,,OIF, +OIF:SP:9:700,1,"Arthur Boucher",48.885587,2.740782,0,0,OIF:SA:9:700,Europe/Paris,,OIF, +OIF:SP:9:702,1,"Poste ZI Bussy",48.833056,2.727126,0,0,OIF:SA:9:702,Europe/Paris,,OIF, +OIF:SP:9:711,1,"Arzillières",48.940628,2.694622,0,0,OIF:SA:9:711,Europe/Paris,,OIF, +OIF:SP:9:712,1,"Arzillières",48.940394,2.69503,0,0,OIF:SA:9:711,Europe/Paris,,OIF, +OIF:SP:9:713,1,"Aureau",48.878437,2.694506,0,0,OIF:SA:9:713,Europe/Paris,,OIF, +OIF:SP:9:714,1,"Aureau",48.878381,2.695282,0,0,OIF:SA:9:713,Europe/Paris,,OIF, +OIF:SP:9:715,1,"Violaine",48.826662,2.711274,0,0,OIF:SA:9:715,Europe/Paris,,OIF, +OIF:SP:9:716,1,"Parc du Bel-Air",48.826722,2.717999,0,0,OIF:SA:9:716,Europe/Paris,,OIF, +OIF:SP:9:717,1,"Cordier",48.824629,2.711844,0,0,OIF:SA:9:717,Europe/Paris,,OIF, +OIF:SP:9:720,1,"Froëlicher",48.824099,2.723084,0,0,OIF:SA:9:720,Europe/Paris,,OIF, +OIF:SP:9:721,1,"Avenue de l'Europe 1",48.832251,2.720354,0,0,OIF:SA:9:721,Europe/Paris,,OIF, +OIF:SP:9:722,1,"Avenue de l'Europe 1",48.83227,2.719809,0,0,OIF:SA:9:721,Europe/Paris,,OIF, +OIF:SP:9:725,1,"Parmentier",48.888607,2.704648,0,0,OIF:SA:9:725,Europe/Paris,,OIF, +OIF:SP:9:726,1,"Parmentier",48.888635,2.704471,0,0,OIF:SA:9:725,Europe/Paris,,OIF, +OIF:SP:9:727,1,"Louis Pasteur",48.885516,2.771267,0,0,OIF:SA:9:727,Europe/Paris,,OIF, +OIF:SP:9:728,1,"Louis Pasteur",48.885641,2.771418,0,0,OIF:SA:9:727,Europe/Paris,,OIF, +OIF:SP:9:729,1,"Impératrice Eugénie",48.822123,2.714372,0,0,OIF:SA:9:729,Europe/Paris,,OIF, +OIF:SP:9:730,1,"Lycée Van Dongen",48.867305,2.719646,0,0,OIF:SA:9:730,Europe/Paris,,OIF, +OIF:SP:9:731,1,"Beau Site",48.86974,2.70258,0,0,OIF:SA:9:731,Europe/Paris,,OIF, +OIF:SP:9:732,1,"Beau Site",48.869793,2.702866,0,0,OIF:SA:9:731,Europe/Paris,,OIF, +OIF:SP:9:733,1,"Charles Baudelaire",48.854384,2.721484,0,0,OIF:SA:9:733,Europe/Paris,,OIF, +OIF:SP:9:734,1,"Charles Baudelaire",48.854195,2.721551,0,0,OIF:SA:9:733,Europe/Paris,,OIF, +OIF:SP:9:740,1,"Mauperthuis (Lycée Champ de Claye)",48.938041,2.675969,0,0,OIF:SA:9:740,Europe/Paris,,OIF, +OIF:SP:9:745,1,"Piscine de Lagny",48.871246,2.718067,0,0,OIF:SA:9:745,Europe/Paris,,OIF, +OIF:SP:9:747,1,"Place du Clos",48.842502,2.704553,0,0,OIF:SA:9:747,Europe/Paris,,OIF, +OIF:SP:9:748,1,"Place du Clos",48.84194,2.705815,0,0,OIF:SA:9:747,Europe/Paris,,OIF, +OIF:SP:9:750,1,"Mairie",48.945579,2.689171,0,0,OIF:SA:53:2281,Europe/Paris,,OIF, +OIF:SP:9:751,1,"Bel Air",48.849402,2.641711,0,0,OIF:SA:59:5231537,Europe/Paris,,OIF, +OIF:SP:9:752,1,"Bel Air",48.849584,2.640841,0,0,OIF:SA:59:5231537,Europe/Paris,,OIF, +OIF:SP:9:757,1,"Place Thomas le Pileur",48.845596,2.782698,0,0,OIF:SA:9:757,Europe/Paris,,OIF, +OIF:SP:9:758,1,"Place Thomas le Pileur",48.845497,2.782683,0,0,OIF:SA:9:757,Europe/Paris,,OIF, +OIF:SP:9:761,1,"Bicheret",48.873236,2.752116,0,0,OIF:SA:9:761,Europe/Paris,,OIF, +OIF:SP:9:762,1,"Bicheret",48.873073,2.752347,0,0,OIF:SA:9:761,Europe/Paris,,OIF, +OIF:SP:9:763,1,"Binaches",48.868541,2.753005,0,0,OIF:SA:9:763,Europe/Paris,,OIF, +OIF:SP:9:764,1,"Binaches",48.869352,2.752412,0,0,OIF:SA:9:763,Europe/Paris,,OIF, +OIF:SP:9:765,1,"Plaine",48.853249,2.67167,0,0,OIF:SA:9:765,Europe/Paris,,OIF, +OIF:SP:9:766,1,"Plaine",48.852962,2.67145,0,0,OIF:SA:9:765,Europe/Paris,,OIF, +OIF:SP:9:771,1,"Glacière",48.878647,2.757024,0,0,OIF:SA:9:771,Europe/Paris,,OIF, +OIF:SP:9:772,1,"Glacière",48.878683,2.756888,0,0,OIF:SA:9:771,Europe/Paris,,OIF, +OIF:SP:9:775,1,"Bois de la Marne",48.879563,2.672112,0,0,OIF:SA:9:775,Europe/Paris,,OIF, +OIF:SP:9:776,1,"Bois de la Marne",48.879517,2.672412,0,0,OIF:SA:9:775,Europe/Paris,,OIF, +OIF:SP:9:777,1,"Pomponne Château",48.880279,2.679543,0,0,OIF:SA:9:777,Europe/Paris,,OIF, +OIF:SP:9:778,1,"Pomponne Château",48.880082,2.679106,0,0,OIF:SA:9:777,Europe/Paris,,OIF, +OIF:SP:9:780,1,"Mairie",48.814673,2.829398,0,0,OIF:SA:52:14673,Europe/Paris,,OIF, +OIF:SP:9:782,1,"Bois de Bussy",48.831781,2.732085,0,0,OIF:SA:9:782,Europe/Paris,,OIF, +OIF:SP:9:783,1,"Bois de Loselet",48.866584,2.762594,0,0,OIF:SA:9:783,Europe/Paris,,OIF, +OIF:SP:9:784,1,"Bois de Loselet",48.866628,2.762785,0,0,OIF:SA:9:783,Europe/Paris,,OIF, +OIF:SP:9:785,1,"Pomponne Mairie",48.881467,2.691202,0,0,OIF:SA:9:785,Europe/Paris,,OIF, +OIF:SP:9:786,1,"Pomponne Mairie",48.881377,2.69112,0,0,OIF:SA:9:785,Europe/Paris,,OIF, +OIF:SP:9:787,1,"Portes de la Foret",48.828957,2.680606,0,0,OIF:SA:9:787,Europe/Paris,,OIF, +OIF:SP:9:788,1,"Portes de la Foret",48.829161,2.681465,0,0,OIF:SA:9:787,Europe/Paris,,OIF, +OIF:SP:9:790,1,"Les Aubépines",48.890842,2.725585,0,0,OIF:SA:9:790,Europe/Paris,,OIF, +OIF:SP:9:797,1,"Pouzol",48.877912,2.716304,0,0,OIF:SA:9:797,Europe/Paris,,OIF, +OIF:SP:9:798,1,"Pouzol",48.878201,2.715666,0,0,OIF:SA:9:797,Europe/Paris,,OIF, +OIF:SP:9:800,1,"Bonne Auberge",48.878,2.743979,0,0,OIF:SA:9:1237,Europe/Paris,,OIF, +OIF:SP:9:801,1,"Pré Longuet",48.833185,2.675924,0,0,OIF:SA:9:801,Europe/Paris,,OIF, +OIF:SP:9:802,1,"Pré Longuet",48.833653,2.675736,0,0,OIF:SA:9:801,Europe/Paris,,OIF, +OIF:SP:9:803,1,"Prévert",48.846687,2.652345,0,0,OIF:SA:59:5231532,Europe/Paris,,OIF, +OIF:SP:9:804,1,"Prévert",48.84656,2.652643,0,0,OIF:SA:59:5231532,Europe/Paris,,OIF, +OIF:SP:9:805,1,"Poste",48.837413,2.671486,0,0,OIF:SA:9:805,Europe/Paris,,OIF, +OIF:SP:9:806,1,"Poste",48.837846,2.670835,0,0,OIF:SA:9:805,Europe/Paris,,OIF, +OIF:SP:9:807,1,"Remise aux Fraises",48.850583,2.629598,0,0,OIF:SA:9:807,Europe/Paris,,OIF, +OIF:SP:9:808,1,"Remise aux Fraises",48.850664,2.629598,0,0,OIF:SA:9:807,Europe/Paris,,OIF, +OIF:SP:9:810,1,"Bordes",48.888042,2.721298,0,0,OIF:SA:9:810,Europe/Paris,,OIF, +OIF:SP:9:813,1,"Rentilly",48.846548,2.673533,0,0,OIF:SA:9:813,Europe/Paris,,OIF, +OIF:SP:9:814,1,"Rentilly",48.846379,2.672919,0,0,OIF:SA:9:813,Europe/Paris,,OIF, +OIF:SP:9:819,1,"Foch / Paix Notre-Dame Terminus",48.877212,2.701529,0,0,OIF:SA:9:819,Europe/Paris,,OIF, +OIF:SP:9:820,1,"Sente des Vignes",48.888321,2.724149,0,0,OIF:SA:9:820,Europe/Paris,,OIF, +OIF:SP:9:823,1,"Paix Notre-Dame",48.877024,2.701228,0,0,OIF:SA:9:819,Europe/Paris,,OIF, +OIF:SP:9:824,1,"Foch/ Paix Notre-Dame",48.877212,2.701529,0,0,OIF:SA:9:819,Europe/Paris,,OIF, +OIF:SP:9:825,1,"Rond-Point de Collégien",48.843227,2.66865,0,0,OIF:SA:9:825,Europe/Paris,,OIF, +OIF:SP:9:826,1,"Rond-Point de Collégien",48.843209,2.668732,0,0,OIF:SA:9:825,Europe/Paris,,OIF, +OIF:SP:9:827,1,"Rue du Port",48.882993,2.715292,0,0,OIF:SA:9:827,Europe/Paris,,OIF, +OIF:SP:9:828,1,"Rue du Port",48.883038,2.715074,0,0,OIF:SA:9:827,Europe/Paris,,OIF, +OIF:SP:9:829,1,"Boulevard des Artisans",48.848945,2.829247,0,0,OIF:SA:47:14426,Europe/Paris,,OIF, +OIF:SP:9:830,1,"Boulevard des Artisans",48.849398,2.828298,0,0,OIF:SA:47:14426,Europe/Paris,,OIF, +OIF:SP:9:831,1,"Sablons",48.855611,2.672107,0,0,OIF:SA:9:831,Europe/Paris,,OIF, +OIF:SP:9:832,1,"Sablons",48.856412,2.67184,0,0,OIF:SA:9:831,Europe/Paris,,OIF, +OIF:SP:9:835,1,"Sente Verte",48.872743,2.693377,0,0,OIF:SA:9:835,Europe/Paris,,OIF, +OIF:SP:9:836,1,"Sente Verte",48.872178,2.69291,0,0,OIF:SA:9:835,Europe/Paris,,OIF, +OIF:SP:9:837,1,"Sodis",48.877232,2.685873,0,0,OIF:SA:9:837,Europe/Paris,,OIF, +OIF:SP:9:838,1,"Sodis",48.877382,2.686814,0,0,OIF:SA:9:837,Europe/Paris,,OIF, +OIF:SP:9:843,1,"Buissoniere",48.840167,2.715265,0,0,OIF:SA:9:843,Europe/Paris,,OIF, +OIF:SP:9:844,1,"Buissoniere",48.840725,2.715229,0,0,OIF:SA:9:843,Europe/Paris,,OIF, +OIF:SP:9:845,1,"Sophora",48.876155,2.750042,0,0,OIF:SA:9:845,Europe/Paris,,OIF, +OIF:SP:9:846,1,"Sophora",48.875741,2.750161,0,0,OIF:SA:9:845,Europe/Paris,,OIF, +OIF:SP:9:848,1,"Strasbourg",48.831973,2.733789,0,0,OIF:SA:9:848,Europe/Paris,,OIF, +OIF:SP:9:850,1,"Gare de Bussy-Saint-Georges Dépose Dir Serris",48.83652,2.709071,0,0,OIF:SA:8775498,Europe/Paris,,OIF, +OIF:SP:9:851,1,"Gare de Bussy-Saint-Georges Dépose Dir Torcy",48.836538,2.709071,0,0,OIF:SA:8775498,Europe/Paris,,OIF, +OIF:SP:9:852,1,"Gare de Bussy-Saint-Georges L26",48.836529,2.709071,0,0,OIF:SA:8775498,Europe/Paris,,OIF, +OIF:SP:9:853,1,"Saint-Germain des Noyers",48.852801,2.664871,0,0,OIF:SA:9:853,Europe/Paris,,OIF, +OIF:SP:9:854,1,"Saint-Germain des Noyers",48.852674,2.66502,0,0,OIF:SA:9:853,Europe/Paris,,OIF, +OIF:SP:9:855,1,"Saint-Joseph",48.875309,2.703532,0,0,OIF:SA:9:855,Europe/Paris,,OIF, +OIF:SP:9:856,1,"Saint-Joseph",48.875399,2.703655,0,0,OIF:SA:9:855,Europe/Paris,,OIF, +OIF:SP:9:857,1,"Collège Léonard de Vinci (RD418)",48.858949,2.67093,0,0,OIF:SA:9:1401,Europe/Paris,,OIF, +OIF:SP:9:858,1,"Collège Léonard de Vinci (RD418)",48.858868,2.671025,0,0,OIF:SA:9:1401,Europe/Paris,,OIF, +OIF:SP:9:860,1,"Meaux SNCF",48.956779,2.873915,0,0,OIF:SA:8711610,Europe/Paris,,OIF, +OIF:SP:9:861,1,"Bussy Saint-Martin Mairie",48.849871,2.689978,0,0,OIF:SA:9:861,Europe/Paris,,OIF, +OIF:SP:9:862,1,"Bussy Saint-Martin Mairie",48.849817,2.690019,0,0,OIF:SA:9:861,Europe/Paris,,OIF, +OIF:SP:9:863,1,"Rue du Parc",48.849181,2.692248,0,0,OIF:SA:9:863,Europe/Paris,,OIF, +OIF:SP:9:864,1,"Rue du Parc",48.849289,2.692085,0,0,OIF:SA:9:863,Europe/Paris,,OIF, +OIF:SP:9:865,1,"Terres Fortes",48.853207,2.740366,0,0,OIF:SA:9:865,Europe/Paris,,OIF, +OIF:SP:9:866,1,"Terres Fortes",48.85289,2.73847,0,0,OIF:SA:9:865,Europe/Paris,,OIF, +OIF:SP:9:867,1,"Tete Noire",48.866346,2.698482,0,0,OIF:SA:9:867,Europe/Paris,,OIF, +OIF:SP:9:868,1,"Tete Noire",48.867054,2.699155,0,0,OIF:SA:9:867,Europe/Paris,,OIF, +OIF:SP:9:880,1,"Melun SNCF",48.526548,2.653831,0,0,OIF:SA:8768200,Europe/Paris,,OIF, +OIF:SP:9:881,1,"Cabane Noire",48.877879,2.742643,0,0,OIF:SA:9:881,Europe/Paris,,OIF, +OIF:SP:9:882,1,"Cabane Noire",48.877939,2.740736,0,0,OIF:SA:9:881,Europe/Paris,,OIF, +OIF:SP:9:883,1,"Calvaire",48.895471,2.774526,0,0,OIF:SA:9:883,Europe/Paris,,OIF, +OIF:SP:9:884,1,"Calvaire",48.895426,2.774648,0,0,OIF:SA:9:883,Europe/Paris,,OIF, +OIF:SP:9:887,1,"Avenue de l'Europe 2",48.832014,2.718541,0,0,OIF:SA:9:887,Europe/Paris,,OIF, +OIF:SP:9:888,1,"Avenue de l'Europe 2",48.83192,2.716866,0,0,OIF:SA:9:887,Europe/Paris,,OIF, +OIF:SP:9:890,1,"Le Calvaire",48.862862,2.694712,0,0,OIF:SA:9:890,Europe/Paris,,OIF, +OIF:SP:9:891,1,"Thuyas",48.865311,2.716307,0,0,OIF:SA:9:891,Europe/Paris,,OIF, +OIF:SP:9:892,1,"Thuyas",48.865347,2.716471,0,0,OIF:SA:9:891,Europe/Paris,,OIF, +OIF:SP:9:893,1,"Pontault RER",48.804351,2.621527,0,0,OIF:SA:8711604,Europe/Paris,,OIF, +OIF:SP:9:895,1,"Mairie de Torcy",48.850782,2.653663,0,0,OIF:SA:9:895,Europe/Paris,,OIF, +OIF:SP:9:896,1,"Mairie de Torcy",48.850822,2.652043,0,0,OIF:SA:9:895,Europe/Paris,,OIF, +OIF:SP:9:897,1,"Tournelle Saint-Martin",48.930978,2.717402,0,0,OIF:SA:9:897,Europe/Paris,,OIF, +OIF:SP:9:898,1,"Tournelle Saint-Martin",48.930843,2.717497,0,0,OIF:SA:9:897,Europe/Paris,,OIF, +OIF:SP:9:900,1,"Mairie",48.899171,2.706236,0,0,OIF:SA:9:900,Europe/Paris,,OIF, +OIF:SP:9:903,1,"Vaillant",48.892329,2.773627,0,0,OIF:SA:9:903,Europe/Paris,,OIF, +OIF:SP:9:904,1,"Vaillant",48.892373,2.773737,0,0,OIF:SA:9:903,Europe/Paris,,OIF, +OIF:SP:9:907,1,"Verdun",48.878569,2.701497,0,0,OIF:SA:9:907,Europe/Paris,,OIF, +OIF:SP:9:908,1,"Verdun",48.87909,2.701664,0,0,OIF:SA:9:907,Europe/Paris,,OIF, +OIF:SP:9:910,1,"Mairie",48.875136,2.745673,0,0,OIF:SA:9:910,Europe/Paris,,OIF, +OIF:SP:9:911,1,"Carnot",48.886877,2.703177,0,0,OIF:SA:9:911,Europe/Paris,,OIF, +OIF:SP:9:912,1,"Carnot",48.886842,2.703,0,0,OIF:SA:9:911,Europe/Paris,,OIF, +OIF:SP:9:913,1,"Carrefour des Deportes",48.879683,2.594987,0,0,OIF:SA:53:2171,Europe/Paris,,OIF, +OIF:SP:9:914,1,"Carrefour des Deportes",48.879779,2.596378,0,0,OIF:SA:53:2171,Europe/Paris,,OIF, +OIF:SP:9:915,1,"Hugo",48.858761,2.689399,0,0,OIF:SA:9:915,Europe/Paris,,OIF, +OIF:SP:9:916,1,"Hugo",48.858824,2.689535,0,0,OIF:SA:9:915,Europe/Paris,,OIF, +OIF:SP:9:917,1,"Mairie",48.816313,2.792463,0,0,OIF:SA:9:917,Europe/Paris,,OIF, +OIF:SP:9:918,1,"Mairie",48.815845,2.792622,0,0,OIF:SA:9:917,Europe/Paris,,OIF, +OIF:SP:9:920,1,"Moulin à Vent",48.828254,2.699265,0,0,OIF:SA:9:920,Europe/Paris,,OIF, +OIF:SP:9:923,1,"Cerisiers",48.891064,2.706655,0,0,OIF:SA:9:923,Europe/Paris,,OIF, +OIF:SP:9:924,1,"Cerisiers",48.890078,2.705667,0,0,OIF:SA:9:923,Europe/Paris,,OIF, +OIF:SP:9:925,1,"Rue des Épinettes",48.848697,2.656851,0,0,OIF:SA:59:5231533,Europe/Paris,,OIF, +OIF:SP:9:926,1,"Rue des Épinettes",48.848303,2.656426,0,0,OIF:SA:59:5231533,Europe/Paris,,OIF, +OIF:SP:9:927,1,"Des Carrières",48.828844,2.679312,0,0,OIF:SA:9:927,Europe/Paris,,OIF, +OIF:SP:9:930,1,"Ozoir RER",48.769762,2.689937,0,0,OIF:SA:8711602,Europe/Paris,,OIF, +OIF:SP:9:941,1,"Saint-Thibault Mairie",48.868723,2.688145,0,0,OIF:SA:9:941,Europe/Paris,,OIF, +OIF:SP:9:942,1,"Saint-Thibault Mairie",48.868883,2.688664,0,0,OIF:SA:9:941,Europe/Paris,,OIF, +OIF:SP:9:945,1,"Pasteur / Pierres",48.860565,2.690187,0,0,OIF:SA:9:945,Europe/Paris,,OIF, +OIF:SP:9:946,1,"Pasteur",48.860425,2.691957,0,0,OIF:SA:9:945,Europe/Paris,,OIF, +OIF:SP:9:950,1,"Paul Doumer",48.888373,2.710766,0,0,OIF:SA:9:950,Europe/Paris,,OIF, +OIF:SP:9:953,1,"Château",48.887149,2.77203,0,0,OIF:SA:9:953,Europe/Paris,,OIF, +OIF:SP:9:954,1,"Château",48.887346,2.772236,0,0,OIF:SA:9:953,Europe/Paris,,OIF, +OIF:SP:9:955,1,"Bois Prieur",48.776141,2.678353,0,0,OIF:SA:9:955,Europe/Paris,,OIF, +OIF:SP:9:956,1,"Bois Prieur",48.776114,2.678475,0,0,OIF:SA:9:955,Europe/Paris,,OIF, +OIF:SP:9:957,1,"Circulaire-Magny",48.873809,2.803487,0,0,OIF:SA:9:957,Europe/Paris,,OIF, +OIF:SP:9:958,1,"Circulaire-Magny",48.873647,2.803472,0,0,OIF:SA:9:957,Europe/Paris,,OIF, +OIF:SP:9:970,1,"Les Provinces",48.845177,2.620212,0,0,OIF:SA:59:3682676,Europe/Paris,,OIF, +OIF:SP:9:971,1,"Mairie",48.856707,2.739045,0,0,OIF:SA:9:971,Europe/Paris,,OIF, +OIF:SP:9:972,1,"Mairie",48.856996,2.73887,0,0,OIF:SA:9:971,Europe/Paris,,OIF, +OIF:SP:9:973,1,"Carrouge",48.923296,2.711127,0,0,OIF:SA:9:973,Europe/Paris,,OIF, +OIF:SP:9:974,1,"Carrouge",48.923907,2.71094,0,0,OIF:SA:9:973,Europe/Paris,,OIF, +OIF:SP:9:975,1,"Dénicherie 2",48.804611,2.78768,0,0,OIF:SA:9:1070,Europe/Paris,,OIF, +OIF:SP:9:976,1,"Dénicherie 2",48.804019,2.787198,0,0,OIF:SA:9:1070,Europe/Paris,,OIF, +OIF:SP:9:990,1,"Chantrennes",48.886807,2.722625,0,0,OIF:SA:9:990,Europe/Paris,,OIF, diff --git a/flatisfy/data_files/stops_fr-ne.txt b/flatisfy/data_files/stops_fr-ne.txt new file mode 100644 index 0000000..6813f07 --- /dev/null +++ b/flatisfy/data_files/stops_fr-ne.txt @@ -0,0 +1,25211 @@ +stop_id,visible,stop_name,stop_lat,stop_lon,zone_id,location_type,parent_station,stop_timezone,equipment_id,contributor_id,geometry_id +BSO:SA:CTPbaiaub1,1,"Fort Mahon Auberge",50.700264,1.708022,,1,,Europe/Paris,,BSO, +BSO:SA:CTPbaibai1,1,"Baincthun Place",50.709713,1.681019,,1,,Europe/Paris,,BSO, +BSO:SA:CTPbaibert2,1,"Berthenlaire",50.707859,1.687616,,1,,Europe/Paris,,BSO, +BSO:SA:CTPbaiboud,1,"Boudoir",50.711246,1.675562,,1,,Europe/Paris,,BSO, +BSO:SA:CTPbaicas1,1,"Fort Mahon Castors",50.702606,1.701557,,1,,Europe/Paris,,BSO, +BSO:SA:CTPbaihetr,1,"Allée des Hêtres",50.698586,1.706061,,1,,Europe/Paris,,BSO, +BSO:SA:CTPbaimacq,1,"Macquinghen",50.717323,1.695776,,1,,Europe/Paris,,BSO, +BSO:SA:CTPbaique1,1,"Questinghen",50.696449,1.695159,,1,,Europe/Paris,,BSO, +BSO:SA:CTPbaiveri,1,"Bouverie",50.711246,1.670567,,1,,Europe/Paris,,BSO, +BSO:SA:CTPbsmamb,1,"Rue d'Ambleteuse",50.734428,1.599386,,1,,Europe/Paris,,BSO, +BSO:SA:CTPbsmampe,1,"Ampère",50.711021,1.613045,,1,,Europe/Paris,,BSO, +BSO:SA:CTPbsmarge,1,"Place d'Argentine",50.734894,1.602544,,1,,Europe/Paris,,BSO, +BSO:SA:CTPbsmarma,1,"Armatis",50.706268,1.612912,,1,,Europe/Paris,,BSO, +BSO:SA:CTPbsmaug1,1,"Auguste Comte",50.720032,1.612989,,1,,Europe/Paris,,BSO, +BSO:SA:CTPbsmbaro,1,"Baron Bucaille",50.731117,1.602062,,1,,Europe/Paris,,BSO, +BSO:SA:CTPbsmbeau,1,"Beaurepaire",50.734138,1.614445,,1,,Europe/Paris,,BSO, +BSO:SA:CTPbsmbell,1,"Belle Isle",50.716488,1.618895,,1,,Europe/Paris,,BSO, +BSO:SA:CTPbsmbeuv,1,"Ste Beuve",50.737835,1.594536,,1,,Europe/Paris,,BSO, +BSO:SA:CTPbsmblum3,1,"Léon Blum",50.715343,1.602956,,1,,Europe/Paris,,BSO, +BSO:SA:CTPbsmboucl,1,"Bouclet",50.716965,1.601361,,1,,Europe/Paris,,BSO, +BSO:SA:CTPbsmbran,1,"Branly",50.719761,1.618804,,1,,Europe/Paris,,BSO, +BSO:SA:CTPbsmcalm2,1,"Calmette",50.733177,1.609004,,1,,Europe/Paris,,BSO, +BSO:SA:CTPbsmcase,1,"Caserne des Pompiers",50.71236,1.608747,,1,,Europe/Paris,,BSO, +BSO:SA:CTPbsmccas,1,"CCAS",50.72089,1.604587,,1,,Europe/Paris,,BSO, +BSO:SA:CTPbsmcci,1,"Chambre de Commerce",50.726891,1.600575,,1,,Europe/Paris,,BSO, +BSO:SA:CTPbsmcenl,1,"Camille Enlart",50.721375,1.620311,,1,,Europe/Paris,,BSO, +BSO:SA:CTPbsmcnor,1,"Cimetière Nord",50.731544,1.601214,,1,,Europe/Paris,,BSO, +BSO:SA:CTPbsmcolo,1,"Colonel Espérance",50.719326,1.600185,,1,,Europe/Paris,,BSO, +BSO:SA:CTPbsmcoqu,1,"Coquelin",50.725246,1.603171,,1,,Europe/Paris,,BSO, +BSO:SA:CTPbsmdal1,1,"Place Dalton",50.723431,1.607052,,1,,Europe/Paris,,BSO, +BSO:SA:CTPbsmdamr,1,"Damrémont",50.718227,1.602743,,1,,Europe/Paris,,BSO, +BSO:SA:CTPbsmdaun,1,"Passage Daunou",50.718704,1.610632,,1,,Europe/Paris,,BSO, +BSO:SA:CTPbsmdesc,1,"Descente à la Mer",50.734692,1.59486,,1,,Europe/Paris,,BSO, +BSO:SA:CTPbsmdet1,1,"Daudet",50.719936,1.60093,,1,,Europe/Paris,,BSO, +BSO:SA:CTPbsmdocq,1,"Docquois",50.716599,1.617564,,1,,Europe/Paris,,BSO, +BSO:SA:CTPbsmdres,1,"Dressage",50.738583,1.617972,,1,,Europe/Paris,,BSO, +BSO:SA:CTPbsmduf1,1,"Louis Duflos",50.72987,1.615092,,1,,Europe/Paris,,BSO, +BSO:SA:CTPbsmduga2,1,"Dugand Bucaille",50.731686,1.606568,,1,,Europe/Paris,,BSO, +BSO:SA:CTPbsmdune,1,"Porte des Dunes",50.725189,1.611117,,1,,Europe/Paris,,BSO, +BSO:SA:CTPbsmdute,1,"Dutertre",50.722591,1.605759,,1,,Europe/Paris,,BSO, +BSO:SA:CTPbsmedou,1,"Edouard Jenner",50.722225,1.613689,,1,,Europe/Paris,,BSO, +BSO:SA:CTPbsmest,1,"Cimetière Est",50.724537,1.620906,,1,,Europe/Paris,,BSO, +BSO:SA:CTPbsmeurv,1,"Résidence Eurvin",50.723461,1.616056,,1,,Europe/Paris,,BSO, +BSO:SA:CTPbsmfbui,1,"Ferdinand Buisson",50.718624,1.605284,,1,,Europe/Paris,,BSO, +BSO:SA:CTPbsmfem1,1,"Femeland",50.718861,1.616078,,1,,Europe/Paris,,BSO, +BSO:SA:CTPbsmflot2,1,"Flotille",50.731018,1.604434,,1,,Europe/Paris,,BSO, +BSO:SA:CTPbsmhabi,1,"Habitat du Littoral",50.72887,1.618729,,1,,Europe/Paris,,BSO, +BSO:SA:CTPbsmhenn,1,"H. Henneguelle",50.717224,1.614253,,1,,Europe/Paris,,BSO, +BSO:SA:CTPbsmhfa,1,"Henri Fabre",50.710491,1.609973,,1,,Europe/Paris,,BSO, +BSO:SA:CTPbsmhopi,1,"Hôpital",50.722839,1.627555,,1,,Europe/Paris,,BSO, +BSO:SA:CTPbsmhrvi,1,"Henriville 2",50.720036,1.589852,,1,,Europe/Paris,,BSO, +BSO:SA:CTPbsmhvi1,1,"Henriville 1",50.71846,1.590647,,1,,Europe/Paris,,BSO, +BSO:SA:CTPbsmier,1,"Percier et Fontaine",50.735291,1.606386,,1,,Europe/Paris,,BSO, +BSO:SA:CTPbsminqo,1,"Inquétrie Porte de St-Omer",50.734962,1.677209,,1,,Europe/Paris,,BSO, +BSO:SA:CTPbsmjul1,1,"Jules Ferry",50.725159,1.628287,,1,,Europe/Paris,,BSO, +BSO:SA:CTPbsmjver,1,"Jules Verne",50.716797,1.606561,,1,,Europe/Paris,,BSO, +BSO:SA:CTPbsmlegi2,1,"Légion d'Honneur",50.74091,1.595573,,1,,Europe/Paris,,BSO, +BSO:SA:CTPbsmlema,1,"Lemaitre",50.729752,1.618772,,1,,Europe/Paris,,BSO, +BSO:SA:CTPbsmlet,1,"Michelet",50.735641,1.609649,,1,,Europe/Paris,,BSO, +BSO:SA:CTPbsmlor1,1,"Place de Lorraine",50.725285,1.605414,,1,,Europe/Paris,,BSO, +BSO:SA:CTPbsmloui,1,"Louis David",50.738594,1.608448,,1,,Europe/Paris,,BSO, +BSO:SA:CTPbsmlumi,1,"Lumière",50.721863,1.609506,,1,,Europe/Paris,,BSO, +BSO:SA:CTPbsmmade,1,"La Madeleine",50.711624,1.613844,,1,,Europe/Paris,,BSO, +BSO:SA:CTPbsmmaq1,1,"Mâquetra",50.726479,1.621446,,1,,Europe/Paris,,BSO, +BSO:SA:CTPbsmmaqu2,1,"Maquétra",50.726593,1.621532,,1,,Europe/Paris,,BSO, +BSO:SA:CTPbsmmarc,1,"Marcourt",50.716599,1.619858,,1,,Europe/Paris,,BSO, +BSO:SA:CTPbsmmba,1,"Maryse Bastié",50.716675,1.594626,,1,,Europe/Paris,,BSO, +BSO:SA:CTPbsmmedi,1,"Médiathèque du Sandettie",50.734882,1.605471,,1,,Europe/Paris,,BSO, +BSO:SA:CTPbsmmoka,1,"Moka",50.737766,1.622016,,1,,Europe/Paris,,BSO, +BSO:SA:CTPbsmmont,1,"Mont d'Ostrohove",50.710587,1.615728,,1,,Europe/Paris,,BSO, +BSO:SA:CTPbsmnaus,1,"Nausicaa",50.730762,1.596101,,1,,Europe/Paris,,BSO, +BSO:SA:CTPbsmnav1,1,"Navarin",50.727554,1.606715,,1,,Europe/Paris,,BSO, +BSO:SA:CTPbsmnorm2,1,"Normandie",50.734936,1.612537,,1,,Europe/Paris,,BSO, +BSO:SA:CTPbsmpalb,1,"Prince Albert",50.723347,1.611873,,1,,Europe/Paris,,BSO, +BSO:SA:CTPbsmpane,1,"Panetié",50.715065,1.617424,,1,,Europe/Paris,,BSO, +BSO:SA:CTPbsmpatr,1,"St Patrick",50.736626,1.612817,,1,,Europe/Paris,,BSO, +BSO:SA:CTPbsmper1,1,"Perrochel",50.720226,1.606433,,1,,Europe/Paris,,BSO, +BSO:SA:CTPbsmpier,1,"Eglise Saint-Pierre",50.728111,1.602152,,1,,Europe/Paris,,BSO, +BSO:SA:CTPbsmqueh2,1,"Impasse Quéhen",50.712582,1.616794,,1,,Europe/Paris,,BSO, +BSO:SA:CTPbsmres1,1,"Résidence",50.720165,1.601442,,1,,Europe/Paris,,BSO, +BSO:SA:CTPbsmrho,1,"Route de l'hôpital",50.72047,1.627969,,1,,Europe/Paris,,BSO, +BSO:SA:CTPbsmros1,1,"Rosny",50.714226,1.614294,,1,,Europe/Paris,,BSO, +BSO:SA:CTPbsmsecu,1,"Sécurité Sociale",50.727551,1.613851,,1,,Europe/Paris,,BSO, +BSO:SA:CTPbsmseli,1,"Séliane",50.711823,1.605932,,1,,Europe/Paris,,BSO, +BSO:SA:CTPbsmsgen2,1,"Société Générale",50.724243,1.603361,,1,,Europe/Paris,,BSO, +BSO:SA:CTPbsmsou,1,"Dernier Sou",50.7271,1.617035,,1,,Europe/Paris,,BSO, +BSO:SA:CTPbsmstad,1,"Stade",50.724964,1.618859,,1,,Europe/Paris,,BSO, +BSO:SA:CTPbsmstm1,1,"Saint Michel",50.728867,1.6097,,1,,Europe/Paris,,BSO, +BSO:SA:CTPbsmsurc,1,"Surcouf",50.728275,1.599226,,1,,Europe/Paris,,BSO, +BSO:SA:CTPbsmthie,1,"Thiers",50.725948,1.603265,,1,,Europe/Paris,,BSO, +BSO:SA:CTPbsmtin1,1,"Tintelleries",50.726887,1.609676,,1,,Europe/Paris,,BSO, +BSO:SA:CTPbsmtte,1,"Mariette",50.732498,1.607894,,1,,Europe/Paris,,BSO, +BSO:SA:CTPbsmuniv,1,"Université du Littoral",50.722305,1.597621,,1,,Europe/Paris,,BSO, +BSO:SA:CTPbsmval,1,"Val St Martin",50.7188,1.620836,,1,,Europe/Paris,,BSO, +BSO:SA:CTPbsmvatre,1,"Vieil Atre",50.722652,1.620683,,1,,Europe/Paris,,BSO, +BSO:SA:CTPbsmver,1,"Rue de Verdun",50.720722,1.594854,,1,,Europe/Paris,,BSO, +BSO:SA:CTPbsmvie,1,"Vieux Mont",50.713249,1.59969,,1,,Europe/Paris,,BSO, +BSO:SA:CTPcomyser,1,"Yser",50.65976,1.633854,,1,,Europe/Paris,,BSO, +BSO:SA:CTPconbet1,1,"Béthune",50.64957,1.61898,,1,,Europe/Paris,,BSO, +BSO:SA:CTPconcha1,1,"Av. Champagne",50.654167,1.624174,,1,,Europe/Paris,,BSO, +BSO:SA:CTPconcro1,1,"Conteville Croquet",50.737179,1.729232,,1,,Europe/Paris,,BSO, +BSO:SA:CTPconecam,1,"Ecames",50.652039,1.658695,,1,,Europe/Paris,,BSO, +BSO:SA:CTPconfore2,1,"Conteville Forêt",50.744083,1.73714,,1,,Europe/Paris,,BSO, +BSO:SA:CTPconmair2,1,"Mairie de Condette",50.654011,1.633745,,1,,Europe/Paris,,BSO, +BSO:SA:CTPconoix1,1,"Conteville Croix",50.740543,1.737721,,1,,Europe/Paris,,BSO, +BSO:SA:CTPconpas1,1,"Pasteur",50.649303,1.626731,,1,,Europe/Paris,,BSO, +BSO:SA:CTPconpav1,1,"Le Pavé",50.65398,1.642079,,1,,Europe/Paris,,BSO, +BSO:SA:CTPconplac,1,"Conteville Place",50.744827,1.731527,,1,,Europe/Paris,,BSO, +BSO:SA:CTPdancit,1,"Cité",50.596401,1.622996,,1,,Europe/Paris,,BSO, +BSO:SA:CTPdanmai1,1,"Cimenterie",50.590019,1.615356,,1,,Europe/Paris,,BSO, +BSO:SA:CTPdanpet2,1,"Petit Robinson",50.585129,1.614266,,1,,Europe/Paris,,BSO, +BSO:SA:CTPechechi,1,"Echinghen",50.703323,1.647882,,1,,Europe/Paris,,BSO, +BSO:SA:CTPechespr,1,"Esprée",50.705845,1.659736,,1,,Europe/Paris,,BSO, +BSO:SA:CTPechmenn,1,"Menneville",50.699417,1.644515,,1,,Europe/Paris,,BSO, +BSO:SA:CTPequace,1,"La Planquette",50.679146,1.573555,,1,,Europe/Paris,,BSO, +BSO:SA:CTPequbecq,1,"Le Becquet",50.677193,1.570279,,1,,Europe/Paris,,BSO, +BSO:SA:CTPequcime,1,"Cimetière d'Equihen Plage",50.68169,1.57657,,1,,Europe/Paris,,BSO, +BSO:SA:CTPequdune,1,"Les Dunes",50.676624,1.572671,,1,,Europe/Paris,,BSO, +BSO:SA:CTPequesto,1,"Les Estombelles",50.675911,1.571973,,1,,Europe/Paris,,BSO, +BSO:SA:CTPequfala,1,"Les Falaises",50.67347,1.571436,,1,,Europe/Paris,,BSO, +BSO:SA:CTPequpale,1,"Palézieux",50.677547,1.574798,,1,,Europe/Paris,,BSO, +BSO:SA:CTPequplag,1,"La Plage",50.672092,1.572193,,1,,Europe/Paris,,BSO, +BSO:SA:CTPequpomp,1,"La Pompe",50.675373,1.577182,,1,,Europe/Paris,,BSO, +BSO:SA:CTPequrobi,1,"Mont Robin",50.682453,1.571143,,1,,Europe/Paris,,BSO, +BSO:SA:CTPhegmai1,1,"Mairie Hesdigneul",50.657391,1.674216,,1,,Europe/Paris,,BSO, +BSO:SA:CTPhegpass,1,"Passage à niveaux",50.66053,1.66859,,1,,Europe/Paris,,BSO, +BSO:SA:CTPhesaix,1,"Pont d'Aix",50.651199,1.671299,,1,,Europe/Paris,,BSO, +BSO:SA:CTPhesecol,1,"Hesdin l'Abbé les Ecoles",50.66671,1.683657,,1,,Europe/Paris,,BSO, +BSO:SA:CTPhesegli,1,"Eglise d'Hesdigneul",50.663979,1.677925,,1,,Europe/Paris,,BSO, +BSO:SA:CTPhesmai1,1,"Mairie Hesdin-L'abbé",50.668743,1.679923,,1,,Europe/Paris,,BSO, +BSO:SA:CTPhesmai2,1,"Mairie Hesdin l'Abbé",50.668743,1.679923,,1,,Europe/Paris,,BSO, +BSO:SA:CTPhesman1,1,"Le Manoir",50.665161,1.677304,,1,,Europe/Paris,,BSO, +BSO:SA:CTPhestro1,1,"Trois Fontaines",50.668808,1.664967,,1,,Europe/Paris,,BSO, +BSO:SA:CTPhesver1,1,"Vert Giniau",50.665886,1.681963,,1,,Europe/Paris,,BSO, +BSO:SA:CTPisqcast,1,"Les Castors",50.674347,1.651499,,1,,Europe/Paris,,BSO, +BSO:SA:CTPisqegli,1,"Eglise de Isques",50.672485,1.651074,,1,,Europe/Paris,,BSO, +BSO:SA:CTPisqhame,1,"Hameau de la Source",50.681854,1.63642,,1,,Europe/Paris,,BSO, +BSO:SA:CTPisqmair,1,"Mairie de Isques",50.67662,1.647319,,1,,Europe/Paris,,BSO, +BSO:SA:CTPisqrapo,1,"Résidence Apolline",50.671074,1.657248,,1,,Europe/Paris,,BSO, +BSO:SA:CTPisqresi,1,"Résidence de la Liane",50.684555,1.629328,,1,,Europe/Paris,,BSO, +BSO:SA:CTPisqvill,1,"Le Village",50.672375,1.655426,,1,,Europe/Paris,,BSO, +BSO:SA:CTPlacchai,1,"Chailly",50.728596,1.705829,,1,,Europe/Paris,,BSO, +BSO:SA:CTPlacegli,1,"La Capelle Eglise",50.731495,1.70699,,1,,Europe/Paris,,BSO, +BSO:SA:CTPlacgara,1,"Garage",50.732594,1.702934,,1,,Europe/Paris,,BSO, +BSO:SA:CTPlacpell,1,"Rue de la Chapelle",50.73402,1.688096,,1,,Europe/Paris,,BSO, +BSO:SA:CTPlacpern,1,"Route de Pernes",50.734146,1.692864,,1,,Europe/Paris,,BSO, +BSO:SA:CTPlacpont,1,"Pont Pierreux",50.72216,1.700755,,1,,Europe/Paris,,BSO, +BSO:SA:CTPlebeau3,1,"Beaucerf",50.691761,1.622244,,1,,Europe/Paris,,BSO, +BSO:SA:CTPleobel1,1,"Belle Isle",50.694286,1.62552,,1,,Europe/Paris,,BSO, +BSO:SA:CTPleober1,1,"Bertrand Crouy",50.689117,1.629349,,1,,Europe/Paris,,BSO, +BSO:SA:CTPleobler,1,"Blériot",50.698071,1.60925,,1,,Europe/Paris,,BSO, +BSO:SA:CTPleochat,1,"Château du Pont de Briques",50.685253,1.625527,,1,,Europe/Paris,,BSO, +BSO:SA:CTPleocit,1,"Cité Aurore",50.694069,1.621991,,1,,Europe/Paris,,BSO, +BSO:SA:CTPleodela,1,"Delattre",50.692101,1.61264,,1,,Europe/Paris,,BSO, +BSO:SA:CTPleofle1,1,"Champ Fleury",50.69265,1.627949,,1,,Europe/Paris,,BSO, +BSO:SA:CTPleogal,1,"Général de Gaulle",50.687622,1.627991,,1,,Europe/Paris,,BSO, +BSO:SA:CTPleolave,1,"Lavandières",50.688171,1.620534,,1,,Europe/Paris,,BSO, +BSO:SA:CTPleoleod,1,"Léo Delibes",50.689129,1.631836,,1,,Europe/Paris,,BSO, +BSO:SA:CTPleomair,1,"Mairie de St Léonard",50.68755,1.626072,,1,,Europe/Paris,,BSO, +BSO:SA:CTPleomou1,1,"Avenue du Moulin",50.687469,1.630629,,1,,Europe/Paris,,BSO, +BSO:SA:CTPleopet1,1,"Petit Caporal",50.695641,1.614179,,1,,Europe/Paris,,BSO, +BSO:SA:CTPleopite,1,"Pitendal",50.703117,1.612572,,1,,Europe/Paris,,BSO, +BSO:SA:CTPleopon1,1,"Pont Feuillet",50.690079,1.623877,,1,,Europe/Paris,,BSO, +BSO:SA:CTPleorec1,1,"Rte d'Echinghen",50.694244,1.630724,,1,,Europe/Paris,,BSO, +BSO:SA:CTPleosib,1,"S.I.B.",50.690022,1.616819,,1,,Europe/Paris,,BSO, +BSO:SA:CTPleovall,1,"La Vallée",50.691757,1.630562,,1,,Europe/Paris,,BSO, +BSO:SA:CTPlepcime,1,"Cimetière Ouest",50.716915,1.590733,,1,,Europe/Paris,,BSO, +BSO:SA:CTPlpoalpr,1,"Alprech",50.703693,1.572448,,1,,Europe/Paris,,BSO, +BSO:SA:CTPlpoave,1,"Avé Maria",50.713097,1.58941,,1,,Europe/Paris,,BSO, +BSO:SA:CTPlpoclem,1,"Clémenceau",50.717171,1.589139,,1,,Europe/Paris,,BSO, +BSO:SA:CTPlpoegli,1,"Eglise du Portel",50.706635,1.573979,,1,,Europe/Paris,,BSO, +BSO:SA:CTPlpogai1,1,"La Gaité",50.710873,1.58255,,1,,Europe/Paris,,BSO, +BSO:SA:CTPlpogou,1,"Gournay",50.713783,1.581557,,1,,Europe/Paris,,BSO, +BSO:SA:CTPlpohen,1,"Henriville Place",50.716976,1.588759,,1,,Europe/Paris,,BSO, +BSO:SA:CTPlpolive,1,"Livenais",50.711102,1.581802,,1,,Europe/Paris,,BSO, +BSO:SA:CTPlpolma,1,"Lycée Maritime",50.719753,1.587913,,1,,Europe/Paris,,BSO, +BSO:SA:CTPlpoloti,1,"Pierre Loti",50.706715,1.580131,,1,,Europe/Paris,,BSO, +BSO:SA:CTPlpomou,1,"Moulin Bleu",50.712521,1.586376,,1,,Europe/Paris,,BSO, +BSO:SA:CTPlpopagn,1,"Pagnol",50.708462,1.583998,,1,,Europe/Paris,,BSO, +BSO:SA:CTPlpopfa,1,"Parc de la Falaise",50.715668,1.584649,,1,,Europe/Paris,,BSO, +BSO:SA:CTPlposan2,1,"San Martin",50.708031,1.584219,,1,,Europe/Paris,,BSO, +BSO:SA:CTPneslav1,1,"Lavocat",50.627831,1.645763,,1,,Europe/Paris,,BSO, +BSO:SA:CTPneucoin,1,"4 Coins",50.623405,1.646284,,1,,Europe/Paris,,BSO, +BSO:SA:CTPneucoun,1,"Country",50.633469,1.606191,,1,,Europe/Paris,,BSO, +BSO:SA:CTPneudun1,1,"Dunette",50.624447,1.623898,,1,,Europe/Paris,,BSO, +BSO:SA:CTPneuforg,1,"La Forge",50.615555,1.63738,,1,,Europe/Paris,,BSO, +BSO:SA:CTPneumai1,1,"Mairie Neufchatel-Hardelot",50.619263,1.643037,,1,,Europe/Paris,,BSO, +BSO:SA:CTPneumin,1,"Chemin",50.618984,1.626118,,1,,Europe/Paris,,BSO, +BSO:SA:CTPneupla1,1,"Hardelot Plage",50.634789,1.580159,,1,,Europe/Paris,,BSO, +BSO:SA:CTPneupos1,1,"Poste",50.632557,1.584474,,1,,Europe/Paris,,BSO, +BSO:SA:CTPneuson1,1,"Rue des Sons de Ville",50.611671,1.635845,,1,,Europe/Paris,,BSO, +BSO:SA:CTPoutaisn,1,"Aisne",50.698116,1.588778,,1,,Europe/Paris,,BSO, +BSO:SA:CTPoutbeet,1,"Beethoven",50.70385,1.579194,,1,,Europe/Paris,,BSO, +BSO:SA:CTPoutbert,1,"Paul Bert",50.705608,1.601166,,1,,Europe/Paris,,BSO, +BSO:SA:CTPoutbiez,1,"Rue du Biez",50.707008,1.591883,,1,,Europe/Paris,,BSO, +BSO:SA:CTPoutcha,1,"Chateau d'Eau",50.699356,1.598274,,1,,Europe/Paris,,BSO, +BSO:SA:CTPoutchev,1,"Chevalier",50.69873,1.579954,,1,,Europe/Paris,,BSO, +BSO:SA:CTPoutcite,1,"Cité République",50.706322,1.583838,,1,,Europe/Paris,,BSO, +BSO:SA:CTPoutcol1,1,"Collège Albert Camus",50.701908,1.588392,,1,,Europe/Paris,,BSO, +BSO:SA:CTPoutcrow,1,"Crown Emballage",50.7089,1.607297,,1,,Europe/Paris,,BSO, +BSO:SA:CTPoutdebu,1,"Debussy",50.704361,1.577212,,1,,Europe/Paris,,BSO, +BSO:SA:CTPoutdela,1,"Delattre",50.702457,1.594554,,1,,Europe/Paris,,BSO, +BSO:SA:CTPoutdeni,1,"Denis",50.708912,1.588948,,1,,Europe/Paris,,BSO, +BSO:SA:CTPoutdes,1,"Desmoulins",50.698238,1.604682,,1,,Europe/Paris,,BSO, +BSO:SA:CTPoutdore,1,"Dorémi",50.700016,1.579692,,1,,Europe/Paris,,BSO, +BSO:SA:CTPouteco,1,"Economat",50.700901,1.594334,,1,,Europe/Paris,,BSO, +BSO:SA:CTPoutedo1,1,"Edouard Vaillant",50.695137,1.602868,,1,,Europe/Paris,,BSO, +BSO:SA:CTPoutette,1,"Les Mouettes",50.699558,1.578367,,1,,Europe/Paris,,BSO, +BSO:SA:CTPoutfleu,1,"Les Fleurs",50.704865,1.589436,,1,,Europe/Paris,,BSO, +BSO:SA:CTPoutgrim,1,"La Grimpette",50.692646,1.601746,,1,,Europe/Paris,,BSO, +BSO:SA:CTPouthlm,1,"HLM",50.702644,1.603564,,1,,Europe/Paris,,BSO, +BSO:SA:CTPoutkenn,1,"Kennedy Outreau Place",50.702927,1.592866,,1,,Europe/Paris,,BSO, +BSO:SA:CTPoutlagr,1,"Léo Lagrange",50.689808,1.603826,,1,,Europe/Paris,,BSO, +BSO:SA:CTPoutlal,1,"Laligand",50.711739,1.595232,,1,,Europe/Paris,,BSO, +BSO:SA:CTPoutlep1,1,"LEP Outreau",50.704319,1.589806,,1,,Europe/Paris,,BSO, +BSO:SA:CTPoutlibe,1,"Liberté",50.711273,1.591797,,1,,Europe/Paris,,BSO, +BSO:SA:CTPoutmai,1,"Huit Mai",50.707706,1.598762,,1,,Europe/Paris,,BSO, +BSO:SA:CTPoutman,1,"Rte de Manihen",50.687702,1.605401,,1,,Europe/Paris,,BSO, +BSO:SA:CTPoutmazu,1,"Mazurettes",50.70229,1.595977,,1,,Europe/Paris,,BSO, +BSO:SA:CTPoutmont,1,"Mont Soleil",50.699295,1.582865,,1,,Europe/Paris,,BSO, +BSO:SA:CTPoutmou1,1,"Collège Jean Moulin",50.706036,1.58043,,1,,Europe/Paris,,BSO, +BSO:SA:CTPoutnce,1,"Résistance",50.714592,1.595376,,1,,Europe/Paris,,BSO, +BSO:SA:CTPoutneuf,1,"Mont Neuf Garromanche",50.710938,1.600409,,1,,Europe/Paris,,BSO, +BSO:SA:CTPoutorm,1,"Ormes",50.69841,1.585884,,1,,Europe/Paris,,BSO, +BSO:SA:CTPoutpeu,1,"Peupliers",50.700237,1.587021,,1,,Europe/Paris,,BSO, +BSO:SA:CTPoutplac,1,"Place d'Outreau",50.704559,1.591862,,1,,Europe/Paris,,BSO, +BSO:SA:CTPoutpost,1,"Outreau Poste",50.706543,1.593367,,1,,Europe/Paris,,BSO, +BSO:SA:CTPoutpres,1,"Presbytère",50.70644,1.590158,,1,,Europe/Paris,,BSO, +BSO:SA:CTPoutre1,1,"Résurgat 1",50.706589,1.608431,,1,,Europe/Paris,,BSO, +BSO:SA:CTPoutre2,1,"Résurgat 2",50.69278,1.603507,,1,,Europe/Paris,,BSO, +BSO:SA:CTPoutrena,1,"Tour du Renard",50.699131,1.591563,,1,,Europe/Paris,,BSO, +BSO:SA:CTPoutresu,1,"Résurgat",50.699883,1.607929,,1,,Europe/Paris,,BSO, +BSO:SA:CTPoutrsal,1,"Roger Salengro",50.708164,1.600283,,1,,Europe/Paris,,BSO, +BSO:SA:CTPoutsall,1,"La Salle",50.699371,1.57638,,1,,Europe/Paris,,BSO, +BSO:SA:CTPoutserv,1,"Services des Mines",50.692661,1.577691,,1,,Europe/Paris,,BSO, +BSO:SA:CTPoutsir,1,"Mont Plaisir",50.714317,1.596988,,1,,Europe/Paris,,BSO, +BSO:SA:CTPoutver,1,"Rue Verte",50.697662,1.60152,,1,,Europe/Paris,,BSO, +BSO:SA:CTPperplac,1,"Pernes Place",50.75198,1.704894,,1,,Europe/Paris,,BSO, +BSO:SA:CTPpersouv,1,"Souverain Moulin",50.753559,1.690216,,1,,Europe/Paris,,BSO, +BSO:SA:CTPpitpit1,1,"Pittefaux",50.756203,1.684684,,1,,Europe/Paris,,BSO, +BSO:SA:CTPsemcach,1,"La Cachaine",50.677044,1.634593,,1,,Europe/Paris,,BSO, +BSO:SA:CTPsemcalv,1,"Calvaire",50.672951,1.609498,,1,,Europe/Paris,,BSO, +BSO:SA:CTPsemchat,1,"Chateau",50.685371,1.61664,,1,,Europe/Paris,,BSO, +BSO:SA:CTPsemcime,1,"Cimetière de St Etienne au Mont",50.669422,1.635288,,1,,Europe/Paris,,BSO, +BSO:SA:CTPsemcite,1,"Cité Calonne",50.674419,1.633712,,1,,Europe/Paris,,BSO, +BSO:SA:CTPsemcol1,1,"Collège Paul Eluard",50.672512,1.630905,,1,,Europe/Paris,,BSO, +BSO:SA:CTPsemcord,1,"R.Cordier",50.673836,1.636654,,1,,Europe/Paris,,BSO, +BSO:SA:CTPsemecau,1,"Ecault Centre",50.666649,1.604687,,1,,Europe/Paris,,BSO, +BSO:SA:CTPsemecol,1,"Ecole",50.668762,1.606039,,1,,Europe/Paris,,BSO, +BSO:SA:CTPsemegli2,1,"Eglise d'Ecault",50.675812,1.610285,,1,,Europe/Paris,,BSO, +BSO:SA:CTPsemfont,1,"La Fontaine",50.667622,1.602469,,1,,Europe/Paris,,BSO, +BSO:SA:CTPsemgar,1,"Les Garennes",50.664246,1.596658,,1,,Europe/Paris,,BSO, +BSO:SA:CTPsemgau,1,"Gaultier",50.684505,1.620321,,1,,Europe/Paris,,BSO, +BSO:SA:CTPsemhaff,1,"Haffreingue",50.682816,1.623597,,1,,Europe/Paris,,BSO, +BSO:SA:CTPsemhesd,1,"Rte d'Hesdigneul",50.679588,1.631451,,1,,Europe/Paris,,BSO, +BSO:SA:CTPsemmair,1,"Mairie de Saint-Etienne au Mont",50.681,1.628447,,1,,Europe/Paris,,BSO, +BSO:SA:CTPsemolym,1,"Olympe",50.677223,1.620368,,1,,Europe/Paris,,BSO, +BSO:SA:CTPsempar,1,"Petit Paradis",50.686058,1.609872,,1,,Europe/Paris,,BSO, +BSO:SA:CTPsempast,1,"Pasteur",50.678635,1.631952,,1,,Europe/Paris,,BSO, +BSO:SA:CTPsempaul,1,"Paul Eluard",50.674591,1.630076,,1,,Europe/Paris,,BSO, +BSO:SA:CTPsemquen,1,"Les Quesnelets",50.671669,1.63549,,1,,Europe/Paris,,BSO, +BSO:SA:CTPsemresi,1,"Résidence du Bon Air",50.670341,1.607553,,1,,Europe/Paris,,BSO, +BSO:SA:CTPsemvald,1,"Le Val d'Ecault",50.662964,1.594302,,1,,Europe/Paris,,BSO, +BSO:SA:CTPsmbann1,1,"Sainte Anne",50.730309,1.627449,,1,,Europe/Paris,,BSO, +BSO:SA:CTPsmbann2,1,"Ste Anne",50.730412,1.627407,,1,,Europe/Paris,,BSO, +BSO:SA:CTPsmbappo,1,"Apolline",50.706276,1.616305,,1,,Europe/Paris,,BSO, +BSO:SA:CTPsmbbadh,1,"Bad'Huit",50.734192,1.682341,,1,,Europe/Paris,,BSO, +BSO:SA:CTPsmbbel2,1,"Du Bellay",50.714283,1.627296,,1,,Europe/Paris,,BSO, +BSO:SA:CTPsmbber2,1,"La Bergerie",50.713486,1.6295,,1,,Europe/Paris,,BSO, +BSO:SA:CTPsmbbou1,1,"Les Bouleaux",50.710045,1.625254,,1,,Europe/Paris,,BSO, +BSO:SA:CTPsmbbre1,1,"Bressloff",50.734291,1.627148,,1,,Europe/Paris,,BSO, +BSO:SA:CTPsmbcal1,1,"Rte de Calais",50.731419,1.61972,,1,,Europe/Paris,,BSO, +BSO:SA:CTPsmbcime,1,"Cimetière de St Martin",50.724476,1.633538,,1,,Europe/Paris,,BSO, +BSO:SA:CTPsmbcite,1,"Cité",50.709568,1.623385,,1,,Europe/Paris,,BSO, +BSO:SA:CTPsmbcol1,1,"Collège R. Salengro",50.727753,1.632101,,1,,Europe/Paris,,BSO, +BSO:SA:CTPsmbdena,1,"Denacre",50.73027,1.630581,,1,,Europe/Paris,,BSO, +BSO:SA:CTPsmbdesv,1,"Rte de Desvres",50.723377,1.640204,,1,,Europe/Paris,,BSO, +BSO:SA:CTPsmbecol,1,"Ecole d'Infirmières",50.722317,1.631875,,1,,Europe/Paris,,BSO, +BSO:SA:CTPsmbegli,1,"Eglise de St Martin",50.724812,1.634532,,1,,Europe/Paris,,BSO, +BSO:SA:CTPsmbest,1,"Inquétrie Est",50.733879,1.676806,,1,,Europe/Paris,,BSO, +BSO:SA:CTPsmbfbou,1,"François Boulanger",50.718887,1.627299,,1,,Europe/Paris,,BSO, +BSO:SA:CTPsmbgast,1,"Gaston Durieux",50.724117,1.63883,,1,,Europe/Paris,,BSO, +BSO:SA:CTPsmbgide,1,"Charles Gide",50.718719,1.622536,,1,,Europe/Paris,,BSO, +BSO:SA:CTPsmbgir1,1,"Giraux Sannier",50.722351,1.635102,,1,,Europe/Paris,,BSO, +BSO:SA:CTPsmbheli,1,"Piscine Patinoire Hélicéa",50.730141,1.644903,,1,,Europe/Paris,,BSO, +BSO:SA:CTPsmbipbo,1,"Inquétrie Porte de Boulogne",50.733562,1.672917,,1,,Europe/Paris,,BSO, +BSO:SA:CTPsmbjard,1,"Jardins de l'Empereur",50.734211,1.621045,,1,,Europe/Paris,,BSO, +BSO:SA:CTPsmbjos1,1,"Saint Joseph",50.73571,1.62176,,1,,Europe/Paris,,BSO, +BSO:SA:CTPsmblam,1,"Mont Lambert",50.717678,1.65695,,1,,Europe/Paris,,BSO, +BSO:SA:CTPsmbleon,1,"Cité Léon Blum",50.732441,1.627364,,1,,Europe/Paris,,BSO, +BSO:SA:CTPsmbmair,1,"Mairie de Saint-Martin-Boulogne",50.726063,1.632903,,1,,Europe/Paris,,BSO, +BSO:SA:CTPsmbmar1,1,"Marlborough",50.736374,1.624398,,1,,Europe/Paris,,BSO, +BSO:SA:CTPsmbmogr,1,"Moka / Grande Armée",50.738537,1.6243,,1,,Europe/Paris,,BSO, +BSO:SA:CTPsmbmont,1,"Mont Joie",50.726398,1.641587,,1,,Europe/Paris,,BSO, +BSO:SA:CTPsmbmoul,1,"Quatre Moulins",50.733925,1.626464,,1,,Europe/Paris,,BSO, +BSO:SA:CTPsmborme,1,"Orme",50.708717,1.621295,,1,,Europe/Paris,,BSO, +BSO:SA:CTPsmbostr,1,"Ostrohove",50.710567,1.621906,,1,,Europe/Paris,,BSO, +BSO:SA:CTPsmboues,1,"Inquétrie Ouest",50.732353,1.67085,,1,,Europe/Paris,,BSO, +BSO:SA:CTPsmbpeu1,1,"Peulinghen",50.719906,1.653033,,1,,Europe/Paris,,BSO, +BSO:SA:CTPsmbplat,1,"Le Plateau",50.707699,1.613886,,1,,Europe/Paris,,BSO, +BSO:SA:CTPsmbpoly,1,"Polyclinique",50.722771,1.643324,,1,,Europe/Paris,,BSO, +BSO:SA:CTPsmbrons,1,"Ronsard",50.715504,1.624826,,1,,Europe/Paris,,BSO, +BSO:SA:CTPsmbsand,1,"Marlborough rue George Sand",50.73769,1.624584,,1,,Europe/Paris,,BSO, +BSO:SA:CTPsmbstom,1,"Rte de St Omer",50.72599,1.637572,,1,,Europe/Paris,,BSO, +BSO:SA:CTPsmbvil,1,"Villebois",50.716625,1.639992,,1,,Europe/Paris,,BSO, +BSO:SA:CTPsmbwar,1,"Waroquerie",50.713139,1.63142,,1,,Europe/Paris,,BSO, +BSO:SA:CTPsmbwica,1,"Wicardenne",50.730263,1.627628,,1,,Europe/Paris,,BSO, +BSO:SA:CTPwimair,1,"Bon Air",50.777542,1.612264,,1,,Europe/Paris,,BSO, +BSO:SA:CTPwimbons,1,"Bon Secours",50.74062,1.627428,,1,,Europe/Paris,,BSO, +BSO:SA:CTPwimchat,1,"Rue du Chateau",50.779751,1.623173,,1,,Europe/Paris,,BSO, +BSO:SA:CTPwimcol1,1,"Collège Pilâtre de Rozier",50.765377,1.617387,,1,,Europe/Paris,,BSO, +BSO:SA:CTPwimcour,1,"Courgain",50.778309,1.618055,,1,,Europe/Paris,,BSO, +BSO:SA:CTPwimcrec2,1,"La Crèche",50.746914,1.598117,,1,,Europe/Paris,,BSO, +BSO:SA:CTPwimdebu,1,"Debussy",50.783146,1.630499,,1,,Europe/Paris,,BSO, +BSO:SA:CTPwimegli,1,"Wimille Eglise",50.763134,1.632519,,1,,Europe/Paris,,BSO, +BSO:SA:CTPwimetoi,1,"Etoile",50.76413,1.62753,,1,,Europe/Paris,,BSO, +BSO:SA:CTPwimfont,1,"Fontaine",50.761852,1.633556,,1,,Europe/Paris,,BSO, +BSO:SA:CTPwimgoun,1,"Gounod",50.78426,1.625832,,1,,Europe/Paris,,BSO, +BSO:SA:CTPwimhonv,1,"Honvault",50.757015,1.605132,,1,,Europe/Paris,,BSO, +BSO:SA:CTPwimjean,1,"St Jean",50.762894,1.607496,,1,,Europe/Paris,,BSO, +BSO:SA:CTPwimlecl,1,"Général Leclerc",50.766499,1.611154,,1,,Europe/Paris,,BSO, +BSO:SA:CTPwimmair,1,"Mairie de Wimereux",50.769951,1.610709,,1,,Europe/Paris,,BSO, +BSO:SA:CTPwimmaur,1,"St Maurice",50.765053,1.60899,,1,,Europe/Paris,,BSO, +BSO:SA:CTPwimmess,1,"Messager",50.781998,1.621825,,1,,Europe/Paris,,BSO, +BSO:SA:CTPwimmont,1,"Mont Gambier",50.755783,1.630288,,1,,Europe/Paris,,BSO, +BSO:SA:CTPwimnapo2,1,"Napoléon",50.766624,1.608497,,1,,Europe/Paris,,BSO, +BSO:SA:CTPwimnung,1,"Nungesser et Coli",50.778431,1.613002,,1,,Europe/Paris,,BSO, +BSO:SA:CTPwimoffe,1,"Offenbach",50.783142,1.62315,,1,,Europe/Paris,,BSO, +BSO:SA:CTPwimparc2,1,"Parc Bon Secours",50.744427,1.627429,,1,,Europe/Paris,,BSO, +BSO:SA:CTPwimplai,1,"La Plaine",50.765247,1.62096,,1,,Europe/Paris,,BSO, +BSO:SA:CTPwimserg2,1,"Sergent",50.758896,1.631126,,1,,Europe/Paris,,BSO, +BSO:SA:CTPwimsncf,1,"Wimereux Gare",50.764374,1.614424,,1,,Europe/Paris,,BSO, +BSO:SA:CTPwimstad,1,"Stade",50.774136,1.612302,,1,,Europe/Paris,,BSO, +BSO:SA:place_BSMPLF,1,"Place de France",50.722858,1.602913,,1,,Europe/Paris,,BSO, +BSO:SA:place_WIMBAR,1,"Baston",50.780109,1.628263,,1,,Europe/Paris,,BSO, +OUS:SA:CTP-OUS5040001,1,"Beauséjour",49.579285,2.988382,,1,,Europe/Paris,,OUS, +OUS:SA:CTP-OUS5040002,1,"Centre Hospitalier",49.588331,3.002125,,1,,Europe/Paris,,OUS, +OUS:SA:CTP-OUS5040003,1,"Chevalet",49.582279,2.998541,,1,,Europe/Paris,,OUS, +OUS:SA:CTP-OUS5040004,1,"Cité Scolaire",49.583707,3.015314,,1,,Europe/Paris,,OUS, +OUS:SA:CTP-OUS5040005,1,"Coizel",49.586124,3.009373,,1,,Europe/Paris,,OUS, +OUS:SA:CTP-OUS5040006,1,"Alsace Lorraine",49.586425,2.998909,,1,,Europe/Paris,,OUS, +OUS:SA:CTP-OUS5040007,1,"Ernest Noël Cinéma",49.58022,3.009197,,1,,Europe/Paris,,OUS, +OUS:SA:CTP-OUS5040008,1,"Faubourg d'Amiens Collège Eluard",49.584129,2.99587,,1,,Europe/Paris,,OUS, +OUS:SA:CTP-OUS5040009,1,"Faubourg de Chauny",49.578986,3.017908,,1,,Europe/Paris,,OUS, +OUS:SA:CTP-OUS5040010,1,"Gare de Noyon",49.577907,3.006004,,1,,Europe/Paris,,OUS, +OUS:SA:CTP-OUS5040011,1,"Maréchal Leclerc",49.581774,3.00756,,1,,Europe/Paris,,OUS, +OUS:SA:CTP-OUS5040012,1,"Goele",49.592293,3.013313,,1,,Europe/Paris,,OUS, +OUS:SA:CTP-OUS5040013,1,"Grimaldi République",49.582721,3.002862,,1,,Europe/Paris,,OUS, +OUS:SA:CTP-OUS5040014,1,"Happlincourt",49.589402,3.013084,,1,,Europe/Paris,,OUS, +OUS:SA:CTP-OUS5040015,1,"Jean Jaurès",49.573476,2.988529,,1,,Europe/Paris,,OUS, +OUS:SA:CTP-OUS5040016,1,"Kennedy",49.575191,2.998071,,1,,Europe/Paris,,OUS, +OUS:SA:CTP-OUS5040017,1,"Landrimont",49.580489,3.012509,,1,,Europe/Paris,,OUS, +OUS:SA:CTP-OUS5040018,1,"Mont Renaud",49.571166,2.977436,,1,,Europe/Paris,,OUS, +OUS:SA:CTP-OUS5040019,1,"Moulin du Chatelain",49.590892,2.992953,,1,,Europe/Paris,,OUS, +OUS:SA:CTP-OUS5040020,1,"Orroire Ecole",49.57419,3.012575,,1,,Europe/Paris,,OUS, +OUS:SA:CTP-OUS5040021,1,"Orroire Hesdin",49.570513,3.018781,,1,,Europe/Paris,,OUS, +OUS:SA:CTP-OUS5040022,1,"Orroire Joncquoy",49.569664,3.025117,,1,,Europe/Paris,,OUS, +OUS:SA:CTP-OUS5040023,1,"Place Saint Jacques",49.579074,2.992576,,1,,Europe/Paris,,OUS, +OUS:SA:CTP-OUS5040024,1,"Campus Inovia",49.598719,3.006062,,1,,Europe/Paris,,OUS, +OUS:SA:CTP-OUS5040025,1,"Rue de Paris",49.579895,2.996922,,1,,Europe/Paris,,OUS, +OUS:SA:CTP-OUS5040026,1,"Saint Barthélémy Dumontois",49.584815,3.004541,,1,,Europe/Paris,,OUS, +OUS:SA:CTP-OUS5040027,1,"Saint Blaise",49.574256,3.00682,,1,,Europe/Paris,,OUS, +OUS:SA:CTP-OUS5040028,1,"Saint Eloi",49.579975,3.002723,,1,,Europe/Paris,,OUS, +OUS:SA:CTP-OUS5040029,1,"Saint Exupéry Ecole",49.580462,2.992552,,1,,Europe/Paris,,OUS, +OUS:SA:CTP-OUS5040030,1,"Saint Siméon Maison de Quartier",49.580911,3.01851,,1,,Europe/Paris,,OUS, +OUS:SA:CTP-OUS5040031,1,"Tarlefesse",49.597939,3.015522,,1,,Europe/Paris,,OUS, +OUS:SA:CTP-OUS5040032,1,"Vauquelin",49.587461,2.99332,,1,,Europe/Paris,,OUS, +OUS:SA:CTP-OUS5040033,1,"Zone Industrielle",49.574386,3.020091,,1,,Europe/Paris,,OUS, +OUS:SA:CTP-OUS5040034,1,"Carnot",49.577723,3.000709,,1,,Europe/Paris,,OUS, +OUS:SA:CTP-OUS5040035,1,"Charmolue",49.580456,2.995366,,1,,Europe/Paris,,OUS, +OUS:SA:CTP-OUS5040036,1,"Mony Paul Eluard",49.583911,3.000716,,1,,Europe/Paris,,OUS, +OUS:SA:CTP-OUS5040037,1,"ESAT Leopold Bellan",49.573268,3.026337,,1,,Europe/Paris,,OUS, +OUS:SA:CTP-OUS5040038,1,"Chevalet",49.582606,2.998433,,1,,Europe/Paris,,OUS, +OUS:SA:CTP-OUS5040043,1,"Jean Bouin",49.576442,2.993491,,1,,Europe/Paris,,OUS, +OUS:SA:CTP-OUS5040044,1,"Chemin de ronde",49.587852,2.997796,,1,,Europe/Paris,,OUS, +OUS:SA:CTP-OUS5040045,1,"Moulin Saint-Blaise",49.575958,3.003071,,1,,Europe/Paris,,OUS, +OUS:SA:CTP-OUS5040046,1,"L'Orée du Bois",49.583295,3.021084,,1,,Europe/Paris,,OUS, +OCV:SA:CTP16000037,1,"Gare SNCF",49.231617,2.886197,,1,,Europe/Paris,,OCV, +OCV:SA:CTP16000052,1,"République",49.23755,2.887426,,1,,Europe/Paris,,OCV, +OCV:SA:CTP16000053,1,"Michel Dupuy",49.235081,2.887166,,1,,Europe/Paris,,OCV, +OCV:SA:CTP16000086,1,"Levallois-Perret",49.225984,2.880114,,1,,Europe/Paris,,OCV, +OCV:SA:CTP16000088,1,"Hector Berlioz",49.225593,2.883101,,1,,Europe/Paris,,OCV, +OCV:SA:CTP16000090,1,"Molière",49.223097,2.884638,,1,,Europe/Paris,,OCV, +OCV:SA:CTP16000092,1,"Les Brayes",49.223617,2.888882,,1,,Europe/Paris,,OCV, +OCV:SA:CTP16000098,1,"Centre aquatique",49.224366,2.895996,,1,,Europe/Paris,,OCV, +OCV:SA:CTP16000100,1,"Henri Laroche",49.225626,2.903198,,1,,Europe/Paris,,OCV, +OCV:SA:CTP16000102,1,"Parc d'Activités",49.226054,2.909636,,1,,Europe/Paris,,OCV, +OCV:SA:CTP16000106,1,"Hauts de Bouillant",49.236662,2.898887,,1,,Europe/Paris,,OCV, +OCV:SA:CTP16000108,1,"Hôtel de Ville",49.236219,2.891638,,1,,Europe/Paris,,OCV, +OCV:SA:CTP16000110,1,"Stade Municipal",49.228886,2.899639,,1,,Europe/Paris,,OCV, +OCV:SA:CTP16000112,1,"Pont Saint-Ladre",49.231137,2.894862,,1,,Europe/Paris,,OCV, +OCV:SA:CTP16000114,1,"Parc Sainte-Agathe",49.232214,2.883322,,1,,Europe/Paris,,OCV, +OCV:SA:CTP16000116,1,"Avenue de Senlis",49.232475,2.877247,,1,,Europe/Paris,,OCV, +OCV:SA:CTP16000118,1,"Parc de Géresme",49.236778,2.895115,,1,,Europe/Paris,,OCV, +OCV:SA:CTP16000120,1,"Les Tournelles",49.236188,2.898375,,1,,Europe/Paris,,OCV, +ODS:SA:CTP20200006,1,"Gros Poirier",49.364846,2.162828,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20200042,1,"Rue du Bois",49.264166,2.16418,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20200043,1,"Angleterre",49.269166,2.1614,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20200044,1,"Octroi",49.256943,2.15974,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20200586,1,"Saint-Leu",49.44426,1.828426,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20200671,1,"Les Landrons",49.440676,1.872874,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20200832,1,"RN31",49.432764,2.045208,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20200835,1,"L'Italienne",49.424881,2.021829,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20200992,1,"Rue Madame",49.296112,2.160086,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20200995,1,"Eglise",49.288335,2.15779,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20201010,1,"Poste",49.448057,1.900568,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20201203,1,"Centre",49.277776,2.049179,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20201205,1,"Tumbrel",49.204726,1.996958,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20201212,1,"Centre",49.256575,2.110762,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20201216,1,"Château",49.207316,2.053138,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20201230,1,"Centre",49.390556,2.026129,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20201241,1,"école",49.278612,1.940553,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20201242,1,"D115",49.290836,1.961678,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20201243,1,"Abribus",49.302776,1.984179,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20201244,1,"Les Landes",49.313887,2.005288,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20201245,1,"Eglise",49.318056,1.970848,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20201253,1,"Friancourt",49.376386,1.978069,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20201255,1,"Rue de Saint Léger",49.375277,2.001399,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20201257,1,"Place des Tilleuls",49.343886,2.018899,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20201259,1,"Grumesnil",49.368056,2.026399,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20201263,1,"Aristide Briand",49.426117,2.030009,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20201266,1,"Sorcy-Centre",49.435837,1.982788,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20201269,1,"Le Becquet Calvaire",49.423252,2.004129,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20201271,1,"Mare à Foulon",49.434447,2.010568,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20201273,1,"Champs des Taillis",49.426117,1.975848,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20201275,1,"Centre",49.486116,1.834737,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20201276,1,"D1",49.480556,1.848347,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20201277,1,"Centre",49.475557,1.868067,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20201281,1,"La Rutoire",49.457777,1.897518,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20201286,1,"Rue de l'Eglise",49.465924,1.898583,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20201287,1,"La Place",49.483056,1.915018,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20201288,1,"Lhéraule",49.486386,1.930017,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20201295,1,"Sorcy-Carrefour",49.435556,1.978898,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20201296,1,"Centre",49.445007,1.983068,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20201298,1,"Centre",49.472775,1.979451,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20201299,1,"Place",49.446115,2.004725,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20201300,1,"Rome",49.457501,2.003328,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20201305,1,"Passage à Niveau",49.471667,2.035849,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20201306,1,"Clos Saint Maurice",49.48237,2.057448,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20201309,1,"Rue de Villers Saint Lucien",49.455617,2.081214,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20201325,1,"Rd 56 - Rue du moulin",49.675884,1.991962,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20201331,1,"Mairie (La Chaussé)",49.600154,1.769968,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20201332,1,"Carrefour",49.647123,1.845145,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20201356,1,"Eglise Saint Lucien",49.235207,2.13403,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20201357,1,"Gare SNCF",49.232337,2.131873,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20201408,1,"RD 1001 Sud",49.630007,2.29307,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20201524,1,"caisse d'épargne",49.329284,2.201161,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20201548,1,"RN 31 Le Pont qui Penche",49.418617,1.946678,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20201640,1,"Roye",49.354149,2.177469,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20201814,1,"Les Fontainettes - RD 1031",49.436734,1.899282,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20201827,1,"Le Petit Fercourt",49.293614,2.18279,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20201844,1,"Douce Rue",49.451583,1.766667,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20201845,1,"27, rue Douce Rue",49.44682,1.773939,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20201851,1,"Cité Colozier",49.448616,1.799736,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20201856,1,"Sainte Denise",49.444721,1.818612,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20201857,1,"Guillenfosse",49.445798,1.808103,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20201859,1,"Orsimont",49.453616,1.788626,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20201860,1,"Rue du Bray",49.448055,1.785016,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20201861,1,"Centre",49.443054,1.781127,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20201942,1,"L'Avelon",49.418596,2.006514,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20201944,1,"Parc",49.420554,1.982519,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20202307,1,"RD 1001",49.39031,2.143324,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20202315,1,"Lycée Paul LANGEVIN",49.415218,2.106372,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20202316,1,"LP Lavoisier",49.228626,2.125068,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20202359,1,"Caserne des Pompiers",49.218905,2.129388,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20202360,1,"Faurecia",49.219048,2.130118,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20202364,1,"Cimetière",49.408715,2.111426,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20202397,1,"Ile de France",49.424233,2.084408,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20202398,1,"Parking Calvin",49.432705,2.07865,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203001,1,"collège Saint Hildevert",49.480601,1.723647,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203002,1,"Gare",49.481396,1.737825,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203003,1,"Mare aux Canard",49.476503,1.742512,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203011,1,"D 927",49.18004,2.124755,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203013,1,"Université",49.04144,2.073561,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203014,1,"Centre",49.1378,2.113121,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203019,1,"Porte de Bresles",49.433857,2.09373,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203020,1,"Stade",49.430513,2.114346,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203023,1,"Collège Jeanne D'Arc",49.387959,2.38718,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203028,1,"Grande rue",49.402775,2.326132,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203029,1,"Plois",49.406114,2.319455,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203030,1,"Général LECLERC",49.403615,2.325852,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203031,1,"Monument",49.410275,2.293901,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203032,1,"RN31",49.410006,2.300851,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203039,1,"Le Moulin",49.420276,2.150849,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203040,1,"Wagicourt",49.425106,2.135067,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203041,1,"Clos Trupet",49.387773,2.21613,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203044,1,"Hôtel de Ville",49.409472,2.252382,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203105,1,"Mairie",49.263275,2.070126,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203108,1,"Poste",49.207529,2.052039,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203112,1,"Intermarché",49.228455,2.131669,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203113,1,"ecole bellonte",49.232093,2.131202,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203114,1,"Lycée Condorcet",49.235735,2.14403,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203121,1,"RD35",49.265836,1.991399,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203125,1,"La longue rue Carrefour",49.309957,2.022122,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203126,1,"Les Marettes Bas",49.316391,2.040552,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203127,1,"Ecole",49.303336,2.053899,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203215,1,"Parc",49.354726,1.772502,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203217,1,"Les Pommiers",49.388057,1.780567,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203218,1,"Mairie",49.391946,1.780567,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203221,1,"Grande Rue",49.419166,1.880568,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203222,1,"Rue de la vallée",49.419447,1.917518,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203223,1,"Rue de la Montagne",49.419166,1.926128,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203225,1,"Centre",49.426116,2.037789,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203227,1,"St Just Des Marais Poste",49.433968,2.06185,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203288,1,"Jean RACINE",49.653588,2.57735,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203295,1,"Centre",49.648105,2.418748,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203299,1,"Roland Mariage",49.604944,2.379308,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203302,1,"Centre",49.590962,2.413504,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203303,1,"église",49.591718,2.394107,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203315,1,"Centre",49.632453,2.29464,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203317,1,"Rd 1001",49.64945,2.27057,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203320,1,"Mare",49.677428,2.224091,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203321,1,"Carrefour",49.643339,2.238629,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203357,1,"Isaab",49.45973,2.06833,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203360,1,"Guehengnies",49.509218,2.070566,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203361,1,"Sauqueuse Saint-Lucien",49.519287,2.066472,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203366,1,"Rd 901 - Sud",49.530285,2.003488,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203368,1,"Mairie - Ecole",49.546666,2.028068,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203370,1,"Eglise",49.556117,2.057518,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203373,1,"moulin des forges",49.690008,2.170569,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203374,1,"Ribeauvillé mare",49.560199,2.021822,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203375,1,"Centre",49.574167,2.008897,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203376,1,"Abribus",49.583576,2.010834,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203377,1,"Centre",49.598336,1.995288,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203378,1,"Centre",49.608618,1.995287,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203380,1,"Mare",49.627275,2.03374,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203383,1,"Rue léger",49.650008,2.048347,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203384,1,"Rieux",49.644161,2.01944,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203391,1,"Eglise",49.668149,2.056826,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203393,1,"Eglise",49.680838,2.091678,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203402,1,"Collège Pierre Mendès-France",49.230965,2.140101,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203412,1,"Stade",49.595277,1.740565,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203413,1,"Rue principale",49.600837,1.716955,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203415,1,"Hericourt sur Thérain",49.580007,1.757235,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203416,1,"D133",49.568337,1.769456,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203417,1,"Centre",49.558336,1.783625,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203418,1,"Eglise",49.552227,1.797785,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203421,1,"Mal Boufflets",49.547226,1.855566,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203426,1,"Carrefour",49.532507,1.841676,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203428,1,"Carrefour",49.527776,1.852236,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203429,1,"Rue Manoise",49.517507,1.868627,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203430,1,"Rue des Saules",49.514726,1.873067,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203431,1,"Centre",49.512777,1.878347,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203432,1,"Rue Rouge",49.504167,1.886127,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203436,1,"Abribus R. de la Vallée",49.522772,1.898261,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203439,1,"Mairie",49.520277,1.929737,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203442,1,"Houssoye le Farcy",49.488054,2.069449,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203443,1,"Gare",49.504866,1.989175,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203444,1,"Mairie",49.501387,1.997788,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203450,1,"Abribus",49.479778,2.044926,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203455,1,"Centre",49.591117,1.743345,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203458,1,"Collège Georges Sand",49.449966,2.08519,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203459,1,"Rue de l'église",49.510006,1.965847,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203460,1,"Choqueuse RD 930",49.561385,1.908327,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203462,1,"Place",49.593272,1.739717,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203463,1,"Hôtel de Ville",49.649441,1.731109,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203470,1,"Rue de Fay",49.604432,1.828609,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203473,1,"Rue de l'eglise",49.603335,1.892511,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203475,1,"La fourche",49.576661,1.876661,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203476,1,"Centre",49.564166,1.896126,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203478,1,"Rue de Crillon",49.538328,1.962154,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203479,1,"le belloy",49.531865,1.990409,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203480,1,"Rue De Villers St Lucien",49.455612,2.081195,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203481,1,"Franc Marché départ",49.436181,2.086759,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203487,1,"Rue Patis Manon",49.666118,1.810015,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203489,1,"Route Principale",49.659841,1.828102,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203490,1,"Cité des Acacias",49.651949,1.835001,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203497,1,"Rue de la Vallée",49.614999,1.916945,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203499,1,"Lannoy",49.589816,1.912137,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203501,1,"RD901",49.556666,1.978891,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203509,1,"Ecole",49.711948,1.807515,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203511,1,"Salle Polyvalente",49.68591,1.870004,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203516,1,"Rd901",49.635008,1.946127,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203520,1,"Rue de Grez",49.616116,1.962517,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203521,1,"Centre",49.596947,1.952237,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203522,1,"Lycée Corot",49.420315,2.078151,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203531,1,"Centre",49.347776,2.291131,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203532,1,"Centre",49.380836,2.1914,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203537,1,"Rue de Maupeou",49.351642,2.224782,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203543,1,"Froidmont Mont César",49.382409,2.233934,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203547,1,"Eglise",49.400555,2.1814,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203548,1,"Poste",49.403616,2.178349,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203549,1,"Bourguillemont",49.414726,2.162519,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203551,1,"Rue du Gravier",49.402507,2.18696,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203553,1,"27, Rue de la Gare",49.399726,2.17307,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203556,1,"Eglise",49.390451,2.141259,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203557,1,"Abri RN1",49.390508,2.143185,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203560,1,"Commessy",49.401387,2.104179,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203567,1,"Crevecoeur - Carrefour",49.279441,2.145,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203574,1,"Cimetière",49.204927,2.128034,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203582,1,"Bout d'en Haut",49.214898,2.179369,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203583,1,"Jardin",49.212866,2.185108,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203589,1,"Centre",49.210517,2.189243,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203591,1,"Chateau",49.280119,1.772657,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203593,1,"Centre Commercial",49.288225,1.807596,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203595,1,"Rue du Jard",49.266666,1.873628,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203597,1,"Rue Roger BLONDEAU",49.266387,1.890019,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203599,1,"La Neuville sur Auneuil entrée",49.362775,1.976959,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203600,1,"Passage à niveau",49.371768,1.990817,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203602,1,"D981",49.394727,2.017519,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203604,1,"D981",49.422777,2.042519,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203614,1,"Pommereux",49.324725,1.888348,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203622,1,"Place",49.379166,1.924178,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203624,1,"Centre",49.388056,1.972238,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203626,1,"Bout Riflé",49.410007,2.038629,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203627,1,"Place",49.414053,2.041763,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203631,1,"Eglise",49.426184,1.825727,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203634,1,"Centre",49.413886,1.782517,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203639,1,"Rd 109",49.420007,1.865018,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203640,1,"Ecole",49.421085,1.87794,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203678,1,"Heulecourt Centre",49.242311,1.99129,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203679,1,"Blequencourt",49.253042,2.011929,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203687,1,"Immaculée Conception",49.244394,2.12654,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203689,1,"Haillancourt",49.248886,2.033899,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203692,1,"Centre",49.280276,2.104179,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203699,1,"Centre",49.238336,2.077239,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203700,1,"Allée du Bois",49.240549,2.068329,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203705,1,"Cresnes",49.197225,2.021398,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203706,1,"Petit Alléré",49.207775,2.015289,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203707,1,"Grand Alléré",49.212225,2.019458,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203710,1,"Fresneaux",49.280556,2.003629,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203714,1,"Mairie",49.256496,2.106768,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203722,1,"Vessencourt",49.375136,2.097788,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203727,1,"Collège Fauqueux",49.417311,2.07965,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203729,1,"Morlaine",49.459161,2.13722,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203733,1,"Route de Rieux",49.48028,2.126385,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203734,1,"Rieux",49.46944,2.10666,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203735,1,"Ecole",49.464719,2.11083,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203738,1,"Stade",49.461387,2.106399,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203741,1,"Mairie",49.586117,2.293901,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203751,1,"Grande rue",49.617228,2.30085,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203753,1,"RD 1001 Nord",49.630109,2.293259,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203754,1,"RD 1001",49.605009,2.28835,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203755,1,"Place",49.577508,2.242239,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203756,1,"Ecole",49.605279,2.255289,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203765,1,"Centre",49.566948,2.221679,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203768,1,"Rue des Bonhommes",49.527507,2.20418,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203770,1,"Ecole",49.517227,2.170019,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203771,1,"Ancienne mare",49.498056,2.146679,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203775,1,"Franc Marché Arrivée",49.436181,2.086759,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203781,1,"Eglise",49.546669,2.359451,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203782,1,"Ville",49.543058,2.314728,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203783,1,"Rue Tassart",49.540785,2.312148,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203784,1,"Centre",49.522778,2.320836,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203785,1,"Quesnel Aubry",49.50889,2.308895,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203786,1,"Coiseaux",49.494163,2.292218,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203787,1,"abribus",49.505556,2.280277,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203788,1,"poteaux",49.508886,2.274728,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203789,1,"Eglise",49.487776,2.244724,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203791,1,"Clos des peupliers",49.488886,2.238889,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203792,1,"Lafraye",49.495829,2.210551,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203793,1,"La Boudinière",49.50944,2.196944,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203794,1,"Boursines",49.491946,2.177784,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203795,1,"Oroër",49.495003,2.160827,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203804,1,"Centre",49.499295,2.372008,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203812,1,"Centre",49.450556,2.2514,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203813,1,"Saint Rimault",49.474447,2.276681,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203814,1,"Route du Fay St Quentin",49.457982,2.21431,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203815,1,"Mairie",49.472664,2.180366,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203816,1,"Mairie",49.457506,2.1664,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203817,1,"Mairie",49.470277,2.150289,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203819,1,"G. Sand",49.449984,2.085217,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203908,1,"stade",49.231573,2.299691,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203912,1,"Cavillon Place",49.26069,2.260232,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203913,1,"Moulincourt",49.264267,2.248517,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203914,1,"Bois Morel",49.275251,2.243541,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203922,1,"98,RD 1001",49.289081,2.201062,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203923,1,"151,RD 1001",49.289791,2.200744,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203926,1,"Rue de Noailles",49.301586,2.248109,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203931,1,"Fayel - Rue de Bonvillers",49.31565,2.230784,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203933,1,"Centre",49.324143,2.157895,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203937,1,"Rue des faïenciers-Pierrepont",49.355787,2.187325,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203941,1,"Délie",49.41025,2.113571,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203943,1,"Ecole",49.301541,2.248136,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203948,1,"Centre",49.269342,2.236481,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203956,1,"Eglise",49.215907,2.167859,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203960,1,"Place des fêtes",49.177722,2.286382,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203971,1,"La Mare du Bois",49.19556,2.293795,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203972,1,"Centre",49.395276,2.059739,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203973,1,"Centre",49.34767,2.062358,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203980,1,"Lotissement",49.416386,2.19696,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203982,1,"Centre",49.426946,2.19335,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203997,1,"rue du crocq",49.637778,2.188349,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20203998,1,"Rue principale",49.627508,2.179459,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20204001,1,"Rd 930",49.614534,2.128415,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20204002,1,"Centre",49.589447,2.147518,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20204003,1,"Rd11",49.571947,2.121958,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20204004,1,"Centre",49.555068,2.118386,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20204010,1,"Village",49.503057,2.096398,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20204012,1,"Eglise",49.697778,2.171958,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20204015,1,"Bonneleau - Rd 106",49.673619,2.163899,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20204022,1,"Ghehengnies",49.509218,2.070566,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20204024,1,"La Sablière",49.616388,2.041128,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20213597,1,"centre",49.605741,2.385679,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20213602,1,"Montoiselle",49.271812,2.036827,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20213603,1,"Fourche",49.273343,2.034745,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20213607,1,"Centre",49.216386,2.015849,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20213612,1,"Le Plouy Louvet",49.475553,1.999171,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20213616,1,"Rd981",49.354725,1.941678,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20213618,1,"Le Grand Bailly",49.400007,1.970288,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20213619,1,"Mairie",49.398336,1.948069,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20213620,1,"Mairie",49.354446,1.942789,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20213622,1,"Centre",49.415205,2.331555,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20213624,1,"RN31",49.415799,2.197669,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20213626,1,"Ronquerolles Route d'Etouy",49.404164,2.382242,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20213627,1,"C F A",49.388727,2.397309,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20213630,1,"Route de fontaine Saint Lucien",49.487226,2.138349,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20213631,1,"Hedencourt-Place",49.586948,2.28807,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20213634,1,"Rue d'en bas",49.676417,2.239123,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20213639,1,"Rue du Presbytère",49.61562,2.221989,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20213640,1,"Collège Beaumont",49.438961,2.101238,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20213644,1,"Eglise",49.201113,2.27057,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20213645,1,"La Mare d'Ovillers",49.254497,2.205324,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20213646,1,"Ecole",49.225554,2.20807,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20213652,1,"Bout-Sec",49.210834,2.234168,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20213656,1,"Parfondeval - Ecole",49.287225,2.13918,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20213658,1,"Crevecoeur - lotissement",49.281384,2.142519,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20213665,1,"Tiersfontaine - Maladrerie",49.371387,2.023069,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20213669,1,"Centre",49.355275,1.943068,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20213670,1,"Grande rue",49.331665,2.041129,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20213671,1,"Rue titon",49.334727,2.038629,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20213673,1,"Les Maisonnettes - Grande rue",49.346946,1.853898,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20213676,1,"La Neuville-sur-Auneuil - Centre",49.361945,1.984179,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20213677,1,"ISAB-Institut LaSalle",49.45973,2.06833,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20213678,1,"Centre",49.556666,2.057238,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20213682,1,"Rue de la ville",49.650557,2.048897,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20213685,1,"Bury",49.500007,2.033349,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20213688,1,"Eglise",49.538617,2.058068,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20213689,1,"Ovillers",49.623617,2.008627,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20213691,1,"Sauqueuse Saint lucien",49.517902,2.065637,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20213697,1,"Ecole",49.69751,2.170848,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20213698,1,"Mairie-Ecole",49.589728,2.147518,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20213699,1,"Centre",49.681112,2.091955,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20213717,1,"Mairie",49.478887,2.293071,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20213720,1,"Centre",49.446059,2.285523,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20213726,1,"Frétoy Centre",49.553336,1.904177,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20213737,1,"Centre",49.399727,1.874738,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20213741,1,"Centre",49.320835,1.858068,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20213744,1,"Les Plards Haut",49.359726,1.910018,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20213745,1,"Centre",49.334166,1.871958,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20213747,1,"Centre RD 923",49.253335,1.981398,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20213748,1,"Mairie",49.711118,1.805015,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20213750,1,"Merlemont",49.38966,2.177737,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20213751,1,"L'Epine",49.377348,2.159623,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310003,1,"Mattencourt",49.37333,2.16861,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310004,1,"Hennicourt Centre",49.696561,1.765254,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310006,1,"Hennicourt Ecole",49.689721,1.769159,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310007,1,"Centre",49.69638,1.764999,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310008,1,"Ecole",49.696612,1.764589,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310012,1,"Centre",49.358879,2.15722,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310014,1,"POLHAY",49.553887,1.956397,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310015,1,"Centre",49.55555,1.97805,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310019,1,"Sandricourt",49.206522,2.14115,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310026,1,"Centre",49.225835,2.20779,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310027,1,"Armentières lavoir",49.459998,1.930274,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310031,1,"Collège Henri DUNANT",49.773693,1.750853,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310032,1,"Collège",49.368546,1.991788,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310033,1,"La Neuville-sur-Auneuil",49.362771,1.97694,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310035,1,"Sinancourt",49.386667,1.991678,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310036,1,"Tiersfontaine",49.371115,2.018899,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310038,1,"Les Niards",49.359167,2.080569,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310041,1,"Saint Quentin carrefour",49.34,2.095831,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310043,1,"39. rue du Moulin",49.292226,1.958899,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310044,1,"Mairie / Ecole",49.288886,1.962518,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310048,1,"Gare SNCF",49.626452,2.385229,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310050,1,"Espace MITTERAND",49.38342,2.229666,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310051,1,"Froidmont Rue du château",49.382769,2.243049,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310053,1,"Mont César",49.38222,2.23361,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310055,1,"Gare",49.392225,2.20807,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310056,1,"Rue de Provence",49.38083,2.23388,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310057,1,"Le Gravier",49.383615,2.2189,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310058,1,"L'Alouette",49.378616,2.23113,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310060,1,"Le grand Bailly",49.4,1.970269,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310061,1,"Mairie",49.678619,2.065287,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310062,1,"Sortie",49.328336,2.006399,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310063,1,"Chantoiseau",49.335275,1.990289,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310064,1,"Jouy-la-Grange",49.333887,1.974178,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310065,1,"La longue rue centre",49.311116,2.023069,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310066,1,"Centre",49.328886,2.003899,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310068,1,"Centre",49.603433,2.326365,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310069,1,"Evauchaux",49.593337,2.31696,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310073,1,"Route de Noailles",49.347506,2.062239,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310074,1,"Carrefour rue des Tilleuls",49.346385,2.06918,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310075,1,"Rue Autin",49.34939,2.063999,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310077,1,"Vaux Centre",49.356776,2.041969,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310079,1,"La Haute Rue 1",49.456667,1.870017,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310080,1,"Centre",49.464909,1.860912,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310083,1,"Belleville",49.679987,1.766091,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310085,1,"Centre",49.672222,1.765001,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310086,1,"Raiderie",49.669595,1.793107,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310087,1,"Secqueville",49.658618,1.755845,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310089,1,"Regnonval",49.571386,2.057787,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310091,1,"La folie de Bonneuil",49.674379,2.248391,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310092,1,"Mairie-Ecole",49.67861,2.23277,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310095,1,"Des puits revel",49.588829,2.353184,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310096,1,"Warmaise",49.598349,2.366061,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310097,1,"Collège",49.19495,2.207507,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310098,1,"Courcelles",49.193222,2.182863,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310100,1,"Ménillet",49.189164,2.19446,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310102,1,"Rue de Billoy",49.220269,1.868881,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310103,1,"Le Fayel",49.205157,1.864288,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310106,1,"Eglise",49.175835,1.902518,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310107,1,"Place du Fort de Ville",49.241461,1.736955,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310108,1,"Centre",49.641117,1.757504,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310109,1,"Mairie",49.319727,1.858899,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310112,1,"Centre",49.654447,1.752784,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310113,1,"Collège CONDORCET",49.408886,2.244461,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310114,1,"Rue du Général de Gaulle",49.410836,2.248351,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310119,1,"Ecole Primaire",49.633898,2.291915,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310120,1,"Sacré Coeur",49.632416,2.291432,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310123,1,"La Grange",49.630371,1.915836,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310124,1,"Centre",49.650731,1.923705,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310125,1,"Ecole",49.645275,1.887222,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310133,1,"Renicourt",49.531386,1.811396,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310134,1,"Centre",49.540277,1.818896,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310136,1,"Centre",49.618618,1.756395,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310137,1,"Ecole",49.619728,1.756395,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310138,1,"Courcelles",49.611117,1.748065,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310139,1,"carrefour",49.569284,2.310615,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310141,1,"Grande rue",49.65805,2.19416,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310142,1,"Centre",49.652401,2.12039,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310143,1,"Bonvillers",49.307505,2.21751,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310147,1,"Fayel",49.315006,2.231401,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310149,1,"Cailleret",49.295793,2.23839,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310151,1,"Marcel Callo",49.658329,1.979432,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310152,1,"Mairie ecole",49.658368,1.98746,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310153,1,"Ecole",49.259999,1.814441,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310155,1,"Collège G. de Maupassant",49.271666,1.891398,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310156,1,"Collège Saint-Exupéry",49.261665,1.873898,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310158,1,"Centre",49.186946,1.993348,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310159,1,"Centre",49.605822,2.385707,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310160,1,"Petit Chepoix",49.602219,2.39072,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310161,1,"Centre",49.651949,2.080567,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310162,1,"Scolaire CONTEVILLE",49.649449,2.048353,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310163,1,"Scolaire CORMEILLES",49.640557,2.193624,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310164,1,"Mauréaumont",49.2575,1.71694,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310165,1,"Centre",49.606947,2.076398,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310168,1,"Collège",49.60725,2.073026,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310171,1,"Lycée - EREA",49.60388,2.08083,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310172,1,"La Borde école",49.617227,2.095288,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310173,1,"La Petite France",49.516115,1.927517,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310174,1,"Le pâtis enclos",49.519725,1.915567,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310176,1,"Scolaire CROISSY SUR CELLE",49.69751,2.170842,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310179,1,"Les eaux ouies",49.430457,1.842377,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310180,1,"Rue des solons",49.432514,1.92333,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310181,1,"Centre",49.42583,1.82583,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310182,1,"Saint-Leu",49.441665,1.828617,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310183,1,"Centre",49.708058,1.926956,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310184,1,"Centre",49.701387,1.989177,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310186,1,"Place",49.243581,1.832592,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310187,1,"Mairie-Ecole",49.632779,2.164178,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310188,1,"Abri",49.698058,1.893066,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310190,1,"école",49.297777,1.921678,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310191,1,"Eglise",49.303617,1.846128,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310192,1,"Gare",49.294999,1.851106,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310193,1,"école",49.30361,1.84611,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310194,1,"Cité Saint Charles",49.314165,1.774738,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310195,1,"Centre",49.298615,1.778898,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310198,1,"Place",49.587777,1.806396,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310200,1,"Salle polyvalente",49.591948,1.800565,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310203,1,"Longavesnes Centre",49.578092,1.81509,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310204,1,"Moulin de la Gachère",49.548871,1.815828,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310205,1,"Hemecourt - Village",49.550829,1.81472,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310206,1,"Hémécourt",49.549447,1.815566,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310207,1,"Hevecourt",49.545276,1.787516,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310208,1,"Centre",49.215554,2.16779,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310209,1,"Liecourt Fourche",49.237505,2.17863,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310210,1,"Liecourt Centre",49.239164,2.180289,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310211,1,"Vignoru",49.216385,2.15585,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310212,1,"Centre",49.740837,1.803895,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310213,1,"centre",49.420836,1.866397,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310215,1,"Eglise",49.42083,1.86638,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310220,1,"Hatton",49.477221,2.300831,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310222,1,"Rue Corneboeuf",49.247505,1.938337,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310223,1,"Ecole",49.244748,1.934406,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310224,1,"Place du Marché",49.646668,1.845827,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310226,1,"rue Saint Lucien",49.64638,1.845831,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310227,1,"Place du Frayer",49.643891,1.84111,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310229,1,"Dassault",49.643879,1.84138,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310233,1,"Lincourt centre",49.351947,1.845568,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310234,1,"Lincourt le haut",49.347506,1.839738,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310235,1,"école",49.335007,1.820008,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310236,1,"La Tremblée",49.337505,1.829738,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310237,1,"Les petits bus",49.347777,1.833068,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310239,1,"Carrefour",49.659729,2.228899,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310242,1,"Centre",49.241666,1.968628,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310243,1,"Centre",49.659729,2.149738,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310244,1,"Ecole Primaire",49.661379,2.14777,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310245,1,"Les Sources",49.655278,2.138898,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310247,1,"Mairie",49.596569,1.951958,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310249,1,"VERTE FONTAINE",49.603934,1.938262,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310251,1,"Centre",49.568058,1.768895,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310254,1,"Collège Jean MOULIN",49.648128,1.723196,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310255,1,"Bout d'En Haut",49.214924,2.179012,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310256,1,"Jardins",49.212624,2.185561,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310258,1,"Centre-Eglise",49.210526,2.189421,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310259,1,"Centre",49.733888,1.825015,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310264,1,"Rd 35",49.255551,1.98194,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310266,1,"Heulecourt Ecole",49.242225,1.991129,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310270,1,"L'Ormeteau",49.300604,2.012027,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310271,1,"Tirmont",49.293335,2.025273,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310275,1,"Collège Gérard Philipe",49.564741,2.222118,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310277,1,"Petit FROISSY",49.573563,2.212916,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310281,1,"Rue de Grez",49.623609,1.96777,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310282,1,"Immaculée Conception",49.616281,1.96284,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310289,1,"Collège Victor HUGO",49.28321,1.769801,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310290,1,"Collège Pablo PICASSO",49.286552,1.76463,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310292,1,"Lycées",49.285322,1.780096,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310293,1,"Collège Jeanne d'Arc",49.278592,1.777448,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310294,1,"Centre",49.496387,1.894737,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310295,1,"Scolaire GOURCHELLES",49.730559,1.780284,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310296,1,"Collège ROLLON",49.480937,1.720242,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310298,1,"lycée Saint Hildevert",49.482117,1.728523,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310299,1,"ferme de Gouy",49.693639,2.21658,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310300,1,"Place Barbier",49.665,1.94083,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310303,1,"Collège F.BUISSON",49.663778,1.944712,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310305,1,"Lycée J.VERNE",49.662592,1.947433,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310308,1,"Ecole",49.56472,1.89472,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310309,1,"Centre",49.639446,1.978627,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310312,1,"Damval",49.195275,1.851678,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310313,1,"RD153",49.186666,1.853628,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310314,1,"Mesnil lance levée",49.202225,1.840848,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310317,1,"Centre",49.655108,1.935566,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310318,1,"Bazincourt",49.501948,1.809456,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310319,1,"Bellefontaine",49.521387,1.815015,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310320,1,"Ecole",49.496116,1.804456,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310323,1,"La briqueterie",49.535271,1.826109,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310324,1,"Hardencourt",49.298609,1.873051,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310326,1,"Scolaire HARDIVILLERS Lieu dit Les Phosphates",49.618577,2.245067,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310327,1,"centre",49.303886,1.938348,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310329,1,"Eglise",49.512777,1.936398,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310331,1,"La Dreue",49.626943,1.884439,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310332,1,"Rue Principale",49.627778,1.870273,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310333,1,"Centre",49.583329,2.01083,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310335,1,"Centre",49.333884,2.262791,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310336,1,"Chemin du Brulé",49.488055,2.010008,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310339,1,"Gare",49.35402,2.243053,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310340,1,"Laiterie",49.360556,2.243631,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310341,1,"Les Hurhauts",49.353879,2.25305,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310342,1,"Marguerie",49.366115,2.244741,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310349,1,"Centre",49.337337,2.149958,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310351,1,"Place",49.334726,2.14113,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310352,1,"Centre",49.303885,1.878899,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310353,1,"Chair à loup",49.313051,1.95666,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310355,1,"Jouy le bois",49.316387,1.961947,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310357,1,"Les Horgnes",49.325276,1.941398,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310359,1,"Quatre Vents",49.512214,2.089574,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310360,1,"Centre",49.518288,2.086385,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310361,1,"Village",49.518003,2.087656,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310363,1,"Ecole",49.268514,2.234245,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310369,1,"Bois de Molle",49.321946,2.093899,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310370,1,"Centre",49.310836,2.101959,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310373,1,"Malassise",49.326945,2.065289,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310374,1,"Mairie",49.52916,2.202769,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310376,1,"Cabane",49.486778,1.950137,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310377,1,"Centre",49.486667,1.950567,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310380,1,"Gare",49.41055,2.315001,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310382,1,"Grande Rue",49.29617,2.159943,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310383,1,"Parfondeval",49.289445,2.13668,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310385,1,"Centre",49.345276,1.897518,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310386,1,"Gare",49.352776,1.921679,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310387,1,"Les Plards Centre",49.357775,1.908348,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310388,1,"Le Montcornet",49.355006,1.893898,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310390,1,"Le Bohon",49.325836,1.892238,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310392,1,"Route de l'Huyere",49.426107,1.931927,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310394,1,"Balleux",49.553612,1.882782,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310396,1,"Centre",49.535836,1.869457,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310397,1,"Centre",49.558057,2.172239,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310398,1,"Centre",49.495549,2.210551,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310399,1,"MICHELET",49.400385,1.795124,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310401,1,"La petite Landelle Centre",49.391577,1.880791,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310402,1,"La petite Landelle - rue de la vallée surelle",49.391006,1.876888,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310404,1,"Place",49.706389,1.745844,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310406,1,"Rothois Centre",49.717507,1.752817,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310407,1,"Frettencourt Abribus",49.694996,1.726106,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310410,1,"école",49.24222,1.815271,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310412,1,"Centre",49.686659,2.0125,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310413,1,"Abri",49.196379,1.93,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310414,1,"Romesnil",49.18722,1.946381,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310415,1,"Centre",49.411388,1.837237,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310416,1,"L'aunay",49.407815,1.858799,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310417,1,"Les routis",49.394025,1.826006,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310418,1,"Centre - Rue des Ecoles",49.411374,1.83833,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310420,1,"Mairie - Ecole",49.626119,2.180288,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310424,1,"Ecole",49.45028,2.251391,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310425,1,"Fayel-Bocage",49.312775,1.928898,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310427,1,"Centre",49.626389,2.108628,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310428,1,"Centre",49.647218,1.992225,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310430,1,"école",49.301381,1.987771,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310433,1,"Place Marcel Dassault",49.634169,2.140568,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310435,1,"La Fonderie Carrefour",49.349167,1.880288,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310436,1,"La fonderie Centre",49.345006,1.880568,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310437,1,"Les Maisonettes - Rue Gras",49.346109,1.85305,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310438,1,"école",49.334159,1.871941,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310441,1,"Place Joseph Fournier",49.378051,1.92499,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310442,1,"La côte d'or",49.382227,1.911128,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310443,1,"Rue Anceau",49.379151,1.924156,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310449,1,"Gare",49.220557,1.904739,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310450,1,"Rd 566 - Le vivray",49.245555,1.889738,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310451,1,"Centre",49.233329,1.90611,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310453,1,"le boulleaume",49.200829,1.89694,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310455,1,"Centre",49.605531,2.044538,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310456,1,"Le petit lihus",49.611666,2.007237,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310459,1,"école",49.256392,1.918887,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310460,1,"Centre",49.600278,1.825285,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310463,1,"Mairie",49.555008,2.118628,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310465,1,"Rougemaison",49.542708,2.098798,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310466,1,"Mairie",49.510032,2.127766,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310467,1,"Bois Gayant",49.582955,2.221331,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310468,1,"Mairie",49.587247,2.220188,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310472,1,"Centre",49.573881,1.955271,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310473,1,"Beaupré",49.51583,2.03388,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310475,1,"Collège Philéas Lebègue",49.57138,1.950551,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310476,1,"Abri R. de La Vallée",49.522772,1.898261,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310477,1,"Centre",49.547228,2.167519,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310480,1,"Le Moulin vert",49.298336,1.994459,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310482,1,"Campdeville",49.486667,2.026959,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310483,1,"Cardonette",49.506666,2.039178,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310487,1,"Etangs de Milly",49.494446,1.998628,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310488,1,"Les Forges",49.492506,1.996128,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310489,1,"Lotissement",49.498602,1.999782,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310491,1,"Moimont",49.518056,1.992238,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310493,1,"Rd 70",49.670771,1.80512,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310494,1,"Lotissement",49.663334,1.819448,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310495,1,"eglise",49.666293,1.809968,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310496,1,"La neuville",49.677807,1.814333,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310497,1,"Scolaire MOLIENS",49.666518,1.810104,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310498,1,"Pleuville",49.67028,1.80583,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310501,1,"L'egouchet",49.66074,1.787156,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310502,1,"Grand chemin",49.650884,1.790402,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310503,1,"Ecole",49.210006,1.977519,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310506,1,"Centre",49.195962,1.799551,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310507,1,"Les Fermettes",49.190555,1.803068,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310510,1,"La Vierge",49.218747,1.791523,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310511,1,"Beaugrenier",49.22127,1.806996,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310512,1,"Herouval",49.231442,1.787492,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310513,1,"Le bout du bois",49.207186,1.816205,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310514,1,"Le marais",49.216876,1.779349,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310515,1,"Le Vouast",49.215556,1.793068,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310516,1,"Mairie - Ecole",49.214886,1.782292,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310517,1,"Valecourt",49.19759,1.778255,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310518,1,"Les Couturelles",49.524719,2.2075,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310521,1,"Mairie - Ecole",49.508049,2.271927,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310522,1,"La Fourche",49.268785,2.184901,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310523,1,"Centre",49.263363,2.188432,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310526,1,"Abribus",49.581109,1.87083,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310528,1,"Centre",49.580558,1.871676,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310529,1,"FERME de LIMERMONT",49.569066,1.858629,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310530,1,"Espace Jean DELOZIERE",49.57833,1.87388,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310531,1,"Montcrux",49.595106,2.406989,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310533,1,"Centre",49.326115,2.249461,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310534,1,"Mouchy la Ville",49.331685,2.283618,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310535,1,"Centre",49.530838,2.140849,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310537,1,"Centre",49.629441,1.77694,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310538,1,"Collège A. de NOAILLES",49.327935,2.195779,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310539,1,"Centre",49.550557,2.211129,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310541,1,"Centre",49.27119,2.214029,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310542,1,"Centre",49.552207,2.26243,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310543,1,"Centre",49.69666,2.0375,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310546,1,"Epeaux",49.614564,1.820979,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310547,1,"Mairie (L'Excuse)",49.610277,1.845016,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310550,1,"Le Vivier Danger",49.434445,1.920018,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310551,1,"Ecole",49.416381,1.92277,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310553,1,"Le Pont qui Penche",49.417427,1.937206,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310555,1,"Chêne Notre Dame",49.417494,1.935826,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310556,1,"Centre",49.494999,2.16083,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310557,1,"Le bois Saint Martin",49.516947,2.180849,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310559,1,"Henu",49.487507,2.174459,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310562,1,"Grand Oudeuil",49.551948,2.038068,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310563,1,"Ribeauvillé rue des saules",49.556319,2.025588,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310564,1,"Eglise",49.54722,2.02888,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310565,1,"La neuve rue",49.591848,2.223259,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310566,1,"Centre",49.595839,2.181398,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310568,1,"Ecole",49.668302,2.323958,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310569,1,"Rue de la liberation",49.663506,2.318148,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310571,1,"Chaudry",49.195555,1.752517,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310572,1,"Centre",49.204161,1.73888,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310573,1,"Le détroit",49.478056,1.950848,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310577,1,"Houssoye-RD1001",49.345404,2.188854,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310579,1,"Mairie",49.348781,2.195458,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310580,1,"Blainville",49.339932,2.19485,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310582,1,"353 rue de Pierrepont-Pierrepont",49.35722,2.18222,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310583,1,"Centre",49.345551,2.189159,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310585,1,"Carrefour",49.335501,1.925212,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310586,1,"Rue du Petit Boissy",49.338055,1.928068,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310589,1,"Scolaire PREVILLERS",49.611389,1.997236,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310590,1,"Le but david - calvaire",49.409254,1.762746,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310591,1,"Le fil",49.406387,1.789457,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310593,1,"Le Mont Marlet",49.41271,1.77346,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310595,1,"Soumarqué",49.420001,1.80583,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310596,1,"Château",49.216711,2.236186,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310598,1,"Mairie",49.582228,2.191128,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310602,1,"Centre",49.747229,1.770845,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310603,1,"Cité Colin",49.416946,2.005848,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310604,1,"Mairie",49.408056,2.006958,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310606,1,"Centre",49.243609,1.846379,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310609,1,"Eglise",49.519446,2.22196,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310611,1,"Le Hamel",49.644429,2.019725,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310615,1,"Carroix",49.713889,1.822235,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310617,1,"Bernapré",49.704727,1.787235,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310619,1,"Gare",49.709447,1.796395,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310620,1,"Centre",49.581948,2.083068,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310625,1,"Boissy",49.577605,1.934131,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310626,1,"LE MESNIL VALERAN",49.576898,1.903667,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310628,1,"Roy",49.582223,1.923886,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310631,1,"Roye - Rue des petits prés",49.35333,2.181379,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310635,1,"Centre",49.678336,1.917516,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310637,1,"Amuchy - 1",49.475007,1.844456,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310638,1,"Bois Aubert",49.502188,1.834608,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310639,1,"Corbeauval",49.480837,1.821956,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310641,1,"Goulancourt",49.474447,1.828627,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310643,1,"Groscourt",49.507351,1.854006,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310646,1,"Le Bray la fourche",49.471597,1.818437,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310647,1,"Montperthuis",49.498057,1.856957,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310652,1,"Bléquencourt",49.253042,2.011929,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310653,1,"Mairie - Ecole",49.264721,1.99388,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310656,1,"Centre",49.185828,1.834968,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310658,1,"La vigne",49.348329,1.773881,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310659,1,"Droitecour",49.329726,1.775288,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310660,1,"Ecole",49.391999,1.780211,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310662,1,"Mairie",49.35528,1.768053,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310663,1,"Parc Duclos",49.35277,1.771659,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310665,1,"Stade",49.359168,1.769441,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310666,1,"Ecole",49.324999,2.16472,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310669,1,"Tillard",49.333614,2.17224,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310672,1,"Place",49.679439,1.99138,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310673,1,"Eglise",49.548056,1.853066,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310674,1,"La Halle",49.549168,1.853626,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310679,1,"Bois l'Abbé",49.570936,2.283684,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310681,1,"Bois Renault",49.574728,2.305291,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310683,1,"Farivillers",49.582507,2.32474,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310687,1,"HEDENCOURT Ecole Primaire",49.587249,2.288171,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310688,1,"HEDENCOURT Place",49.586952,2.288074,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310689,1,"Le Moulin",49.582512,2.312912,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310690,1,"Mairie",49.631896,1.820417,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310691,1,"Marcoquet",49.642366,1.805485,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310694,1,"Collège des Fontainettes",49.434446,1.893627,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310695,1,"Les Fontainettes - RN31",49.436737,1.899282,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310698,1,"Les clerets",49.427776,1.883347,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310699,1,"Marivaux",49.465438,1.916022,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310700,1,"Calvaire",49.608359,1.867535,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310703,1,"Chemin Bourdon Carimarot",49.448337,1.785275,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310704,1,"Douce Rue",49.446661,1.77388,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310706,1,"Fontaine Denise",49.44444,1.81694,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310707,1,"Fla",49.432591,1.793406,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310710,1,"27, rue Douce Rue",49.45,1.76666,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310716,1,"Courroy",49.517627,2.019381,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310718,1,"Belloy",49.531856,1.990436,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310719,1,"Lotissement",49.531659,2.005001,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310720,1,"Monceaux",49.520277,2.009178,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310721,1,"Rue de Sanguine",49.537492,1.99832,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310723,1,"Gare",49.531381,1.998611,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310724,1,"Villepoix",49.539447,2.006128,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310725,1,"Le Becquet-RN31",49.418911,1.99383,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310731,1,"LE CATELET Lotissement",49.420035,1.72473,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310732,1,"Le mont de Fly",49.425276,1.757237,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310733,1,"Les Binaux",49.415229,1.749902,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310734,1,"Les Boulards",49.414727,1.736397,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310735,1,"LES FRERES JEAN",49.416094,1.741341,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310737,1,"Montel",49.42305,1.72527,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310738,1,"Mairie",49.431661,1.72722,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310740,1,"Bout de Brie",49.359446,2.115849,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310741,1,"La Grosse Saulx",49.337506,2.11113,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310742,1,"La Haute Ville",49.339446,2.129459,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310743,1,"Le val de l'eau",49.364446,2.123899,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310744,1,"Les Godins",49.366115,2.13196,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310745,1,"Carrefour",49.350269,2.12222,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310746,1,"Centre",49.700007,1.845566,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310747,1,"Haleine",49.684449,1.855015,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310749,1,"Les Calais",49.688339,1.826395,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310750,1,"Menantissart",49.696373,1.823515,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310754,1,"RD 67",49.72861,1.73972,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310756,1,"Scolaire NOIRVEAUX",49.578554,2.269076,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310757,1,"Sauveleux",49.571118,2.2514,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310761,1,"La Fusée",49.28539,2.219159,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310763,1,"Collège Léonard de VINCI",49.291236,2.193928,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310766,1,"Les Landes croix blanche",49.313864,2.005306,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310767,1,"Mairie",49.388337,1.736118,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310769,1,"Centre",49.633617,2.359741,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310771,1,"Rue de l'Eglise",49.60333,1.8925,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310772,1,"Centre",49.30027,1.89833,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310774,1,"Mairie-Ecole",49.634817,1.945391,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310777,1,"Ecole",49.224439,1.944159,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310779,1,"Sainte-Marguerite",49.288331,1.81916,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310780,1,"Bois de villers",49.293329,1.82138,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310781,1,"la poste",49.28416,1.822219,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310783,1,"Centre",49.28944,1.833329,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310784,1,"Centre",49.605636,2.259297,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310786,1,"Les Marettes Bas",49.31194,2.043611,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310788,1,"Centre",49.233615,1.756127,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310789,1,"Mairie-Ecole",49.61111,2.289999,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310790,1,"route de troussencourt",49.605202,2.288444,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310793,1,"Rd 930",49.610271,2.132771,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310794,1,"Lanlu",49.490942,1.870432,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310797,1,"Centre",49.364012,2.215415,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310798,1,"Fourrières",49.359434,2.219401,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310799,1,"Gare",49.367776,2.220021,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310800,1,"Hez",49.370835,2.202521,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310803,1,"Orsimont-2",49.473611,1.798879,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310805,1,"Orsimont-1",49.47444,1.79861,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310807,1,"Centre",49.4875,1.795271,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310808,1,"Eglise",49.53777,1.966111,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310809,1,"Centre",49.308336,1.824738,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310810,1,"Centre",49.576118,1.743065,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310813,1,"Centre",49.52916,1.886109,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310814,1,"Ecole",49.526387,1.852517,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310815,1,"Les coutumes",49.519727,1.865017,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310817,1,"Scolaire WAVIGNIES",49.542506,2.357521,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20310823,1,"Centre",49.60736,2.483404,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311203,1,"mare a tacon",49.406138,2.044433,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311205,1,"centre",49.212916,2.319522,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311206,1,"route de cavillon",49.22524,2.281081,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311207,1,"Foulangues",49.275519,2.315642,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311209,1,"mairie",49.27507,2.357576,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311210,1,"gare sncf",49.271691,2.360541,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311211,1,"stade",49.290587,2.34187,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311213,1,"ferme des diligences",49.239976,2.132927,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311214,1,"bois des cauches",49.247833,2.275732,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311217,1,"route de chambors",49.246595,1.812664,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311218,1,"Eglise",49.426969,2.194058,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311219,1,"Hericourt",49.448053,1.922778,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311230,1,"gare",49.456516,1.78436,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311234,1,"D316",49.672069,1.761115,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311237,1,"Armentieres sables rouges",49.455196,1.92323,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311239,1,"grande rue",49.639268,2.190046,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311240,1,"mairie",49.614255,2.128375,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311241,1,"RD 559",49.589232,2.14366,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311242,1,"mairie",49.575026,2.118508,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311243,1,"Plouy Saint Lucien RD 149",49.471124,2.078428,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311245,1,"D981",49.375712,1.991134,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311246,1,"La folie de Beauvoir",49.598376,2.322456,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311247,1,"centre",49.354836,1.941794,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311250,1,"mairie",49.611364,2.29,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311251,1,"rue d'en bas",49.675987,2.239691,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311253,1,"D34",49.677617,2.223939,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311254,1,"avelon",49.423059,2.040113,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311255,1,"place",49.34672,1.899327,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311257,1,"centre",49.21584,2.236737,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311260,1,"mare lurin",49.451629,1.766804,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311261,1,"gendarmerie",49.222588,2.13135,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311262,1,"dde",49.233998,2.131277,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311263,1,"Le Bray",49.455618,1.80238,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311265,1,"café",49.233604,2.303655,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311268,1,"moulin de blainville",49.339554,2.194893,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311269,1,"roye",49.353673,2.177581,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311270,1,"RN1",49.390202,2.143242,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311272,1,"gros poirier",49.364908,2.162622,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311274,1,"bonvillers",49.307633,2.217926,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311277,1,"centre",49.280143,2.279758,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311279,1,"centre",49.301721,2.247971,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311280,1,"école",49.604996,2.38583,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311282,1,"marivaux",49.24778,2.055851,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311283,1,"ferme de la haie",49.64946,2.174788,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311287,1,"mare",49.677437,2.224105,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311289,1,"neuvillette",49.22924,1.964997,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311290,1,"mairie",49.224727,1.944384,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311291,1,"réveillon",49.251328,1.818297,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311292,1,"les landes",49.384169,1.741671,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311293,1,"Hedencourt Haies Villert",49.591253,2.285335,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311294,1,"Hedencourt école",49.586299,2.293946,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311298,1,"sainte marguerite",49.289952,1.814172,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311299,1,"école",49.260533,1.741935,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311300,1,"saint quentin bas",49.344887,2.096651,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311301,1,"les landes place",49.318335,2.007283,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311302,1,"centre",49.27259,2.031934,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311303,1,"stade les marettes",49.316382,2.040662,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311306,1,"La Neuve Rue St Nicolas",49.590937,2.153878,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311307,1,"centre",49.501282,2.148793,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311308,1,"petit",49.561472,2.053393,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311309,1,"la neuve rue",49.591893,2.223314,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311311,1,"rue de novillers",49.279149,2.204961,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311312,1,"réderie",49.695989,1.946928,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311314,1,"Froidmont rue du chateau",49.38265,2.24318,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311315,1,"gare",49.352837,1.921786,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311316,1,"Cimetière",49.430064,2.043406,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311317,1,"rue soyer Hénnicourt",49.689329,1.770388,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311318,1,"école Hénnicourt",49.685547,1.777905,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311319,1,"les clos",49.43202,1.869178,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311320,1,"Lamotte",49.435924,2.084157,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311321,1,"manoir",49.487425,1.958804,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311322,1,"couvremont",49.51136,2.265276,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311323,1,"ribeauvillé mare",49.560504,2.021779,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311326,1,"tennis",49.645003,1.84056,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311327,1,"caserne",49.649162,1.733986,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311328,1,"salle des fêtes",49.751387,1.763613,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311329,1,"fleuzy",49.758337,1.754164,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311330,1,"collège Saint Joseph",49.768054,1.750559,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311332,1,"rue rouge",49.50417,1.886118,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311333,1,"rue des saules",49.514719,1.873057,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311335,1,"petit beauvais",49.726109,1.736109,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311336,1,"Café de l'Oise",49.436554,2.084898,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311337,1,"fresneaux",49.527496,2.29361,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311338,1,"moimont",49.622556,1.724388,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311352,1,"Pré-Martinet rue du Wage",49.426863,2.094104,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311353,1,"trou marot",49.413753,1.92965,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311354,1,"rue de Dieppe",49.548307,1.844577,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311355,1,"sainte marie",49.34748,1.773351,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311356,1,"monument aux morts",49.232176,2.250987,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311361,1,"rue des tilleuls",49.357882,2.316556,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311362,1,"Avelon",49.428207,2.059282,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311363,1,"Mattencourt centre",49.365833,2.16222,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311365,1,"place de Mésenguy",49.34958,2.010603,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311366,1,"grande rue",49.245836,1.96839,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311367,1,"terre noire",49.407959,2.047827,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311368,1,"Rue de Porcheux",49.351758,1.94014,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311369,1,"aéroport",49.459342,2.111767,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311370,1,"Place d'armes",49.483687,1.7227,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311371,1,"Rue Ile de France",49.466535,2.110399,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311372,1,"Briquebourg",49.381784,2.148502,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311373,1,"Rue Aristide Briand",49.218641,2.129542,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311374,1,"Le Bray Centre",49.462696,1.814447,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311375,1,"La petite Landelle - Trou Jumel",49.392889,1.890427,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311376,1,"La Haute Rue 2",49.449043,1.874052,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311377,1,"Choqueuse centre",49.561981,1.914191,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311378,1,"rue Jules Ferry - Ecoles",49.350756,2.22807,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311379,1,"Ecole",49.539158,2.060031,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311380,1,"Les Peupliers",49.697974,1.730709,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311381,1,"RD6/Rte de Montbines",49.241943,1.732778,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311383,1,"Ecole",49.608564,2.074595,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311384,1,"Frétoy rue Bourbon",49.559061,1.90154,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311386,1,"Tirmont-Ferme des Ormes",49.282715,2.014777,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311388,1,"Ronquerolles Rue de Crèvecoeur",49.391981,2.392303,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311406,1,"Maison de Retraire",49.575787,1.954987,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311412,1,"Salle des Fêtes",49.278262,1.776088,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311413,1,"Ecole",49.195962,1.799565,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311418,1,"Lincourt Ecole",49.345118,1.836503,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311420,1,"Les Solons",49.441981,1.829041,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311423,1,"Place de l'Eglise",49.607127,1.87172,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311425,1,"Cimetière",49.21165,2.189678,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311449,1,"Aire de Covoiturage",49.403761,2.652964,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311450,1,"Rue Pierre Demeru",49.410227,2.253936,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311464,1,"Ecole",49.256392,1.918887,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311483,1,"Ecole",49.550734,1.853997,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311492,1,"l'Egouchet",49.66074,1.787156,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311493,1,"Eglise",49.580901,1.871627,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311498,1,"Gare",49.381172,2.200652,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311505,1,"Centre",49.303886,1.938348,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311507,1,"915 rue de Pierrepont-Pierrepont",49.361524,2.177281,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311508,1,"Friancourt",49.345658,2.244636,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311512,1,"Moulin du Clos Guérin",49.525269,1.88607,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311513,1,"École",49.289597,2.196212,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311514,1,"Route de LABOISSIERE",49.269332,2.184309,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311516,1,"Église",49.455602,2.214647,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311517,1,"Franc Marché",49.436181,2.086759,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311521,1,"RD145",49.493909,1.749716,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311522,1,"Centre-Tennis",49.319371,2.323086,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311528,1,"Le Quesnoy",49.548757,1.806583,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311529,1,"Le Tronquet",49.399685,1.809446,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311530,1,"Rue du Four",49.520621,2.22063,,1,,Europe/Paris,,ODS, +ODS:SA:CTP20311532,1,"Auchy",49.482675,1.778839,,1,,Europe/Paris,,ODS, +ODT:SA:CTP21000029,1,"Collège Jeanne D'arc",49.387698,2.388583,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21000069,1,"Normandie",49.222362,2.50327,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21000070,1,"Place Gallé",49.224758,2.511494,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21000087,1,"AUMONT EN HALATTE Château",49.229785,2.558046,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21000117,1,"AVILLY ST LEONARD Roi d'Agober",49.194182,2.512693,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21000280,1,"BORAN SUR OISE Moulin",49.166662,2.354697,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21000283,1,"BORAN SUR OISE Roseraie",49.164749,2.353614,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21000286,1,"BORAN SUR OISE Enclos",49.166023,2.359328,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21000337,1,"BREUIL LE VERT Lycée Roberval",49.363884,2.418889,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21000373,1,"CAMBRONNE LES CLERMONT Ars",49.321968,2.416733,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21000412,1,"Soutraine KUOM",49.317863,2.440267,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21000487,1,"CIRES LES MELLO Station",49.270595,2.359771,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21000490,1,"CIRES LES MELLO Le Tillet HLM",49.261083,2.338476,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21000491,1,"CIRES LES MELLO Le Tillet Place",49.25783,2.327578,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21000499,1,"Lycée CASSINI",49.384284,2.407129,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21000511,1,"La croix de Creil",49.368925,2.417727,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21000538,1,"Maison Neuve",49.200787,2.540001,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21000539,1,"Saint Nicolas Centre",49.202575,2.550799,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21000540,1,"Saint Nicolas",49.203555,2.550392,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21000542,1,"Place",49.198299,2.534178,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21000543,1,"Les 4 Vents",49.199893,2.532073,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21000547,1,"COYE LA FORET Demeure de France",49.141513,2.461348,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21000548,1,"COYE LA FORET Roncier",49.139739,2.465179,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21000549,1,"COYE LA FORET Bruyères",49.13933,2.469409,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21000551,1,"COYE LA FORET Place Blanche",49.142569,2.473649,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21000552,1,"COYE LA FORET Ménagerie",49.140779,2.475288,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21000553,1,"COYE LA FORET Crochet de Coye",49.139033,2.484651,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21000843,1,"La Chaussée",49.199044,2.431886,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21000844,1,"Chaumont",49.197563,2.417336,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21000848,1,"Colliau",49.186556,2.418443,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21000851,1,"Basses Garennes",49.186203,2.407833,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21000852,1,"Collège Sonia DELAUNAY",49.189787,2.40999,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21000855,1,"L'Etrier",49.187866,2.432962,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21000856,1,"Parc du Chauffour",49.188524,2.441188,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21000857,1,"Centre AQUALIS",49.189348,2.433814,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21000858,1,"Parc du Manoir",49.18913,2.446508,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21000859,1,"Domaine des Aigles",49.189411,2.453348,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21000861,1,"Toutevoie",49.198154,2.406136,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21000863,1,"Bois des Bouleaux",49.183796,2.40613,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21001001,1,"Office de Tourisme",49.194352,2.471196,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21001015,1,"LA CHAPELLE EN SERVAL Chêne au Loup",49.123053,2.525882,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21001016,1,"LA CHAPELLE EN SERVAL Collège du Servois",49.122766,2.525799,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21001017,1,"LA CHAPELLE EN SERVAL Glorie",49.125865,2.531944,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21001019,1,"LA CHAPELLE EN SERVAL Gymnase",49.121426,2.526478,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21001020,1,"LA CHAPELLE EN SERVAL Nouvelle cité",49.123608,2.533332,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21001021,1,"LA CHAPELLE EN SERVAL Centre",49.129304,2.533764,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21001061,1,"Sailleville Aulnois",49.304896,2.444157,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21001064,1,"Rue des Cerises",49.301024,2.443586,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21001067,1,"Hotel de ville",49.293891,2.443612,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21001069,1,"Paul Eluard",49.288109,2.449602,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21001081,1,"Le LYS RP des Moines",49.16707,2.378676,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21001083,1,"Le LYS R P d'Aumale",49.166536,2.387705,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21001086,1,"Le LYS RP du Grand Conde",49.165595,2.40168,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21001089,1,"Le LYS RP de l'Etoile",49.163653,2.430492,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21001091,1,"RP du Lys",49.161959,2.437175,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21001092,1,"Beau Larris",49.163229,2.443493,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21001101,1,"Le LYS RP Royal",49.17278,2.388465,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21001105,1,"Chaussée de Bertinval",49.154166,2.429159,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21001106,1,"Collège F DOLTO",49.153639,2.424391,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21001110,1,"Cimetiere",49.157312,2.438303,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21001111,1,"Montagne",49.160747,2.446091,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21001113,1,"Plein Soleil",49.166766,2.436595,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21001115,1,"de Gallaix",49.166097,2.441087,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21001118,1,"Saint Exupery",49.152209,2.437512,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21001119,1,"Rû Saint Martin",49.147561,2.441584,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21001352,1,"Martincourt",49.283331,2.375268,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21001460,1,"Montaby Place",49.115901,2.628767,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21001574,1,"ORRY LA VILLE Montgresin Place",49.154995,2.520944,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21001576,1,"ORRY LA VILLE Calvaire",49.134008,2.513461,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21001577,1,"ORRY LA VILLE Blancs Fossés",49.134921,2.509205,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21001579,1,"ORRY LA VILLE Les Pâturages",49.127846,2.517712,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21001581,1,"ORRY LA VILLE Marly",49.129928,2.513789,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21001583,1,"ORRY LA VILLE Borne Blanche",49.127457,2.507537,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21001585,1,"ORRY LA VILLE Pervenche",49.130853,2.507877,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21001619,1,"Verger",49.106035,2.593538,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21001622,1,"Haut",49.105245,2.575592,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21001644,1,"PONTARME Gerioles",49.151043,2.547285,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21001645,1,"PONTARME Morliére",49.154219,2.549777,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21001647,1,"PONTARME Pavillon",49.15378,2.554186,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21001696,1,"Relais de la Poste",49.323584,2.442024,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21001699,1,"Pierre Curie",49.332633,2.438716,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21001771,1,"Flandre",49.293686,2.385234,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21001923,1,"ST MAXIMIN Lycée Rothschild",49.233951,2.45939,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21001924,1,"ST MAXIMIN Economat",49.21776,2.451355,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21001926,1,"ST MAXIMIN La Grande Folie",49.221276,2.46619,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21001987,1,"SAINT VAAST LES MELLO Commune de Paris",49.265653,2.391098,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002076,1,"THIER SUR THEVE Rue du Général Leclerc",49.152862,2.564881,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002290,1,"VINEUIL ST FIRMIN Le Golf",49.207334,2.49439,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002293,1,"VINEUIL ST FIRMIN Bois Coupé",49.198209,2.498133,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002295,1,"VINEUIL ST FIRMIN Scierie",49.203626,2.512191,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002297,1,"VINEUIL ST FIRMIN Courtillet",49.199135,2.523117,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002314,1,"CAMBRONNE LES CLERMONT Vaux",49.329453,2.41449,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002317,1,"Lycée Amyot d'Inville",49.191446,2.573139,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002319,1,"Usine des Eaux",49.208752,2.585739,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002324,1,"Bordeaux Odent",49.204509,2.586623,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002326,1,"Lycée Hugues Capet",49.191504,2.570617,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002337,1,"Becquerel",49.252285,2.478442,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002340,1,"Champrelle",49.252791,2.476467,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002342,1,"F Roosevelt",49.253049,2.470744,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002351,1,"Van Gogh",49.251098,2.472249,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002352,1,"NOGENT SUR OISE Lycée Marie Curie",49.266707,2.460758,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002356,1,"NOGENT SUR OISE Commanderie",49.282118,2.457678,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002368,1,"BREUIL LE VERT Collège Jacques-Yves COUSTEAU",49.360696,2.418292,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002371,1,"Hauts Bois",49.196836,2.577962,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002373,1,"Point du Jour",49.201321,2.581658,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002402,1,"LA CHAPELLE EN SERVAL Cimetière",49.125259,2.529053,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002404,1,"PONTARME Place du Château",49.152742,2.571003,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002406,1,"Gambetta",49.187909,2.423613,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002407,1,"Gare",49.384906,2.417587,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002408,1,"ORRY LA VILLE Libération",49.131294,2.513411,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002409,1,"Eglise",49.328382,2.44158,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002410,1,"AUMONT EN HALATTE Eglise",49.229351,2.549401,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002411,1,"ORRY LA VILLE Gare",49.13917,2.490389,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002413,1,"Chateau",49.152232,2.443128,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002415,1,"LA CHAPELLE EN SERVAL Mairie",49.13137,2.533922,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002416,1,"PONTARME Mairie",49.154577,2.550504,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002417,1,"VINEUIL ST FIRMIN Mairie",49.199989,2.491091,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002419,1,"CIRES LES MELLO Mairie",49.275249,2.35829,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002420,1,"Mairie",49.18822,2.415978,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002421,1,"COYE LA FORET Centre",49.142655,2.468295,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002423,1,"Centre",49.10343,2.584671,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002424,1,"BREUIL LE VERT Centre",49.361445,2.437109,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002453,1,"NOGENT SUR OISE Branly",49.275867,2.464542,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002462,1,"VILLERS SOUS ST LEU Mairie",49.212596,2.398653,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002463,1,"PRECY SUR OISE Gare",49.20301,2.375689,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002465,1,"BLAINCOURT Le Bosquet",49.225531,2.350588,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002466,1,"Centre",49.233452,2.303669,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002467,1,"NEUILLY EN THELLE Hôtel de Ville",49.224326,2.285568,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002468,1,"CROUY EN THELLE Centre",49.21324,2.320797,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002471,1,"NOGENT SUR OISE Europe",49.268973,2.48273,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002472,1,"MONCHY ST ELOI Candily",49.287556,2.47196,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002473,1,"MONCHY ST ELOI Mairie",49.292859,2.460821,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002474,1,"MONCHY ST ELOI Lotissement",49.296944,2.463578,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002475,1,"Mognevillette",49.311732,2.471598,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002476,1,"Mairie",49.314696,2.471963,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002477,1,"MOGNEVILLE Mognevillette",49.321171,2.466482,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002478,1,"Collège LAROCHEFOUCAULD",49.328093,2.462211,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002480,1,"La Rochefoucauld",49.329914,2.464827,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002483,1,"Mairie",49.348642,2.458274,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002485,1,"Louveaucourt",49.341359,2.455699,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002488,1,"Faïencerie",49.259864,2.474386,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002490,1,"PONT STE MAXENCE Champs de Mars",49.306354,2.60425,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002495,1,"Rue verte",49.319632,2.539535,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002496,1,"Guerlin",49.320556,2.535292,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002497,1,"La Lignière",49.320039,2.509124,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002500,1,"L'Eguillon",49.315361,2.500877,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002501,1,"Place",49.311392,2.505825,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002503,1,"Centre",49.300678,2.515571,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002505,1,"VILLERS ST PAUL Gymnase",49.291941,2.50028,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002509,1,"Parc",49.270486,2.589264,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002510,1,"Roquesable",49.264441,2.584388,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002511,1,"Mairie",49.259284,2.583979,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002512,1,"VERNEUIL EN HALATTE Eglise",49.27473,2.517403,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002513,1,"VERNEUIL EN HALATTE RUE DES BOIS Croix des Veneurs",49.293132,2.543415,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002515,1,"VERNEUIL EN HALATTE Marronnier",49.276184,2.523889,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002516,1,"VERNEUIL EN HALATT Muguet",49.282078,2.524172,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002517,1,"VERNEUIL EN HALATTE Monument",49.278614,2.515293,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002518,1,"VERNEUIL EN HALATTE Bac",49.278704,2.508958,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002520,1,"Tremblay",49.270619,2.495085,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002521,1,"Marcel Philippe",49.26064,2.478822,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002523,1,"Collège MICHELET",49.26309,2.481588,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002524,1,"VERNEUIL EN HALATTE MONT LA VILLE Curie",49.265638,2.529123,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002526,1,"VERNEUIL EN HALATTE Lepercq",49.272511,2.498365,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002527,1,"VERNEUIL EN HALATTE MONT LA VILLE Brosse",49.266714,2.5245,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002528,1,"VERNEUIL EN HALATTE Etang",49.272379,2.521239,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002532,1,"ST LEU Pasteur",49.21528,2.418324,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002535,1,"ST LEU Boissy",49.214407,2.405691,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002537,1,"VIILERS SOUS ST LEU Jonquilles",49.212775,2.391401,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002538,1,"PRECY SUR OISE Ecole",49.204657,2.368121,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002539,1,"PRECY SUR OISE Rosiers",49.208489,2.379999,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002540,1,"PRECY SUR OISE Sorel",49.210414,2.372938,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002542,1,"BLAINCOURT LES PRECY La Ferme",49.221011,2.358035,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002545,1,"Mairie",49.234258,2.305255,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002546,1,"Calvaire",49.231725,2.299897,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002547,1,"NEUILLY EN THELLE Rue de Beauvais",49.226931,2.285071,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002548,1,"NEUILLY EN THELLE Tiburce Lefevre",49.22394,2.286377,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002549,1,"NEUILLY EN THELLE HLM",49.219444,2.282791,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002550,1,"NEUILLY EN THELLE Collège H Montherlant",49.215231,2.281229,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002551,1,"DIEUDONNE Centre",49.230593,2.247944,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002552,1,"DIEUDONNE La Fosse Saint Clair",49.249188,2.257024,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002553,1,"ULLY ST GEORGES Cavillon Place",49.26034,2.259958,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002555,1,"ULLY ST GEORGES Eglise",49.279685,2.280266,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002556,1,"NEUILLY EN THELLE Bois des Cauches",49.248049,2.275333,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002558,1,"BLAINCOURT LES PRECY Le Bourg",49.222062,2.35628,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002559,1,"ST LEU Ecole",49.216464,2.42111,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002561,1,"Chemin Vert",49.31268,2.603349,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002562,1,"Place Dupuis",49.314848,2.594194,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002563,1,"Drouart",49.317363,2.602549,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002564,1,"PONT STE MAXENCE Bois de Feuillette",49.326956,2.603382,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002565,1,"ST MARTIN LONGUEAU RN 17 Sud",49.335013,2.603932,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002566,1,"ST MARTIN LONGUEAU RN 17 Nord",49.341063,2.605971,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002569,1,"ST MARTIN LONGEAU Eglise",49.346194,2.5975,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002570,1,"LABRUYERE Demi Lune",49.348864,2.49173,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002572,1,"RN 31",49.3732,2.511902,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002573,1,"SACY LE GRAND Pompidou",49.352535,2.552729,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002575,1,"SACY LE GRAND Ecole",49.354033,2.543645,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002576,1,"SACY LE GRAND Pasteur",49.354224,2.536963,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002577,1,"LABRUYERE Centre",49.351025,2.50788,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002578,1,"Centre",49.339169,2.499935,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002580,1,"Mairie",49.33017,2.498381,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002581,1,"Marronniers",49.32982,2.490848,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002582,1,"Hopital Villemin",49.319109,2.485483,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002585,1,"Avenue Albert 1er",49.324395,2.449228,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002587,1,"Collège du Marais",49.313623,2.449644,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002594,1,"Quartiers des Ducs",49.326391,2.457025,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002595,1,"Olgiate",49.327439,2.460038,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002596,1,"Rue du Général Leclerc",49.332216,2.462565,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002598,1,"HLM La Garenne",49.332705,2.466828,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002599,1,"Lotissement de la Faïence",49.335398,2.468828,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002602,1,"Nouveau Pénitencier",49.334259,2.474983,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002603,1,"LABRUYERE Hopital Doumer",49.354556,2.494662,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002605,1,"SACY LE PETIT Place",49.360815,2.630281,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002608,1,"CHEVRIERES Rue de Beauvais",49.346966,2.683058,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002620,1,"PONT STE MAXENCE College L&R Aubrac Départ",49.294072,2.597363,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002623,1,"Centre",49.236639,2.644324,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002624,1,"La roue qui tourne",49.24953,2.644991,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002627,1,"Ecole",49.257998,2.715692,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002630,1,"Place",49.256389,2.680253,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002631,1,"Philippe Le Bel",49.301003,2.618538,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002636,1,"Catillon",49.30863,2.690233,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002637,1,"Centre",49.297443,2.690706,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002638,1,"Guidon",49.302581,2.688035,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002639,1,"Collège d'Aramont",49.307443,2.719765,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21002642,1,"Mairie",49.298419,2.518723,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010408,1,"CREPY EN VALOIS Gare",49.231615,2.886649,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010409,1,"LEVIGNEN Centre",49.197141,2.915046,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010411,1,"VILLERS ST GENEST Centre",49.14137,2.907395,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010412,1,"Eglise",49.158421,2.953603,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010415,1,"ROUVRES EN MULTIEN ROUVRES",49.110094,3.026555,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010416,1,"ETAVIGNY Ecole",49.118926,2.979922,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010419,1,"CONGIS SUR THEROUANNE Le Gué à Tresmes",49.02038,2.962027,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010420,1,"VINCY MANOEUVRE Centre",49.077504,2.96239,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010421,1,"REEZ FOSSE MARTIN Reez",49.108494,2.932846,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010423,1,"REEZ FOSSE MARTIN Fosse Martin",49.085001,2.905854,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010425,1,"DOUY LA RAMEE Place",49.066965,2.882997,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010426,1,"DOUY LA RAMEE La Ramee",49.062685,2.877646,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010427,1,"Puisieux",49.066685,2.915857,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010429,1,"Eglise",49.036881,2.876788,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010430,1,"Eglise",49.018306,2.880707,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010431,1,"Mairie",48.996511,2.893124,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010432,1,"CREGY LES MEAUX Collège G Sand",48.979755,2.874431,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010434,1,"CREGY LES MEAUX Portes Rouges",48.978126,2.868953,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010435,1,"CREGY LES MEAUX Centre Commercial",48.975839,2.865885,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010436,1,"Gare Routière Quai R",48.957397,2.874213,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010437,1,"Henri IV cinéma",48.959289,2.88298,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010438,1,"Parc Frot",48.96708,2.873276,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010439,1,"Jean Rose",48.963446,2.881837,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010440,1,"Coubertin",48.956263,2.864457,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010441,1,"VINCY MANOEUVRE Manœuvre",49.062816,2.949317,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010445,1,"COMPIEGNE Gare",49.421552,2.824087,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010455,1,"BETHISY ST PIERRE Clos Cadot",49.304504,2.792437,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010459,1,"Curie",49.306588,2.762942,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010460,1,"SAINTINE Joffre Debuire",49.3063,2.768244,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010463,1,"Square des Merlets",49.307496,2.720164,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010470,1,"COMPIEGNE La Fontaine",49.416664,2.826671,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010471,1,"LE MESNIL SUR BULLES Centre",49.485809,2.345141,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010472,1,"LE PLESSIER SUR BULLE Centre",49.49611,2.315742,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010473,1,"Ecole",49.461655,2.324755,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010475,1,"Monceaux",49.451685,2.338867,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010476,1,"L'Orteil",49.437196,2.340257,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010477,1,"ETOUY Place",49.420036,2.361007,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010478,1,"ETOUY Centre",49.418499,2.363912,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010479,1,"ETOUY Guidon",49.416153,2.370671,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010480,1,"Ronquerolles Route d'Etouy",49.404714,2.382186,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010481,1,"RONQUEROLLES Centre",49.400411,2.382829,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010482,1,"RONQUEROLLES Rue de Froissy",49.396483,2.388124,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010483,1,"Boulincourt Canonniere",49.392529,2.367766,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010485,1,"Auberge de Gicourt",49.391549,2.376583,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010486,1,"Cimetière",49.385212,2.381907,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010487,1,"Gicourt R. Louise Weiss",49.388547,2.375497,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010495,1,"Rue de Liancourt",49.372493,2.509685,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010496,1,"Centre",49.368082,2.509931,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010497,1,"Courcelles",49.367138,2.497534,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010500,1,"RN 31",49.377561,2.481332,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010501,1,"Mairie",49.37452,2.485134,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010502,1,"Rue du Saulon",49.374829,2.474982,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010504,1,"BREUIL LE SEC Crapin",49.371086,2.454351,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010507,1,"BREUIL LE SEC Autreville",49.373839,2.459626,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010510,1,"FITZ JAMES Place de la République",49.390278,2.430284,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010515,1,"ULLY SAINT GEORGES Cousnicourt",49.291988,2.271476,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010517,1,"Centre",49.275274,2.315291,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010519,1,"CIRES LES MELLO Gare",49.271943,2.3605,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010520,1,"Messie",49.26699,2.370519,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010525,1,"Place",49.247676,2.433196,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010527,1,"Piscine",49.262165,2.436326,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010529,1,"Collège A.France",49.260602,2.436652,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010530,1,"PV Couturier",49.265638,2.430704,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010531,1,"Colonel Fabien",49.261954,2.431013,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010532,1,"Lesiour",49.25795,2.427492,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010535,1,"Déporté",49.255084,2.437932,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010537,1,"NOGENT SUR OISE Collège E.Herriot",49.267903,2.450121,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010544,1,"RD 1324",49.234754,2.855633,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010546,1,"Centre",49.209699,2.871248,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010552,1,"Le Plessis Cornefroy",49.241348,2.7889,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010555,1,"Beaurain",49.226041,2.766104,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010558,1,"Place",49.221987,2.667363,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010569,1,"AUGER SAINT VINCENT Villeneuve",49.205957,2.821432,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010572,1,"PEROY LES GOMBRIES Salle multifonctions",49.161433,2.843853,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010573,1,"BOISSY FRESNOY Eglise",49.163862,2.870115,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010574,1,"LEVIGNEN Boissy Levignen",49.184725,2.89584,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010576,1,"CREPY EN VALOIS Collège La Fontaine",49.227119,2.895203,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010577,1,"CREPY EN VALOIS Lycée R.Desnos",49.228476,2.893118,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010579,1,"LA FERTE MILON Le Maille",49.176123,3.125142,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010580,1,"Bourneville",49.154398,3.111124,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010581,1,"MAREUIL SUR OURCQ ZI",49.139188,3.088038,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010582,1,"MAREUIL SUR OURCQ Poste",49.137704,3.078198,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010583,1,"MAREUIL SUR OURCQ Gare",49.135558,3.076537,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010584,1,"Mairie",49.115303,3.061942,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010585,1,"Beauval",49.107784,3.04621,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010586,1,"Centre",49.098699,3.045123,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010587,1,"MAY EN MULTIEN Château d’eau",49.075818,3.025536,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010588,1,"MAY EN MULTIEN Poste",49.071016,3.01981,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010589,1,"PLESSIS PLACY Centre bourg",49.059286,2.989859,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010591,1,"La Corniche",48.967826,2.900501,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010592,1,"Grosse Pierre",48.961848,2.89701,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010593,1,"Octroi",48.957465,2.894588,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010594,1,"Marronniers",48.956408,2.888026,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010595,1,"Poste Allende",48.957496,2.882156,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010596,1,"Henri IV Jardin",48.959325,2.883076,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010598,1,"Lycée Jean Rose",48.962174,2.879053,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010599,1,"Gare Routière",48.957451,2.874186,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010600,1,"Pavillons",49.009966,2.93712,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010601,1,"Mairie",49.003814,2.927337,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010602,1,"Gare Routière (quai P)",48.957433,2.870119,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010603,1,"Cité Administrative",48.955612,2.889151,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010605,1,"MAREUIL SUR OURCQ Mairie",49.135834,3.076993,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010609,1,"FONTAINE CHAALIS Fourcheret",49.191862,2.698289,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010611,1,"Centre",49.164026,2.692408,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010612,1,"Mer de Sable",49.147746,2.676421,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010613,1,"Centre",49.125501,2.693964,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010614,1,"ERMENOVILLE Château d' Eau",49.12491,2.699409,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010623,1,"SILLY LE LONG Square Jacques Teulet",49.107359,2.792134,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010624,1,"Mairie",49.106478,2.787583,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010625,1,"SILLY LE LONG Peupliers",49.105904,2.7825,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010626,1,"LE PLESSIS BELLEVILLE INST FRA ANGEL",49.095115,2.754192,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010627,1,"LE PLESSIS BELLEVILLE Le Pré au Lievre",49.102722,2.757949,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010631,1,"LAGNY LE SEC Château d'eau",49.085817,2.745717,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010633,1,"LAGNY LE SEC Jeu d'Arc",49.088332,2.746133,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010635,1,"ROSIERES Rosières",49.188597,2.779678,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010639,1,"ORMOY VILLERS Eglise",49.196965,2.840446,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010641,1,"Eglise",49.242642,2.800823,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010642,1,"Eglise",49.234176,2.728345,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010643,1,"Mairie",49.236249,2.726261,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010644,1,"Chamoicy",49.238605,2.722904,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010645,1,"Bray (Le Prieuré)",49.239539,2.693835,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010646,1,"BRAY Place",49.23828,2.688241,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010647,1,"MONTEPILLOY Boasne",49.211683,2.721303,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010648,1,"MONTEPILLOY Centre",49.209608,2.69792,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010652,1,"Mairie",49.099442,2.825294,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010653,1,"Le Bosquet",49.099671,2.827715,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010655,1,"Droizeles Eglise",49.159903,2.788282,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010657,1,"FONTAINE CHAALIS Centre",49.169726,2.685198,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010658,1,"FONTAINE CHAALIS Clos Morin",49.173557,2.683936,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010659,1,"MONTLEVEQUE Cité Nouvelle",49.193763,2.63783,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010660,1,"MONTLEVEQUE Eglise",49.195396,2.631396,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010662,1,"MONTAGNY STE FELICITE Centre",49.128932,2.737241,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010663,1,"Loisy",49.11071,2.638811,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010664,1,"VERNEUIL EN HALATTE LA RUE DES BOIS Rue des Bois",49.290303,2.537854,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010665,1,"Eglise",49.104484,2.684909,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010666,1,"Place Sylvie",49.111316,2.602803,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010667,1,"Petit-Villers",49.208578,2.854149,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010668,1,"VERNEUIL ST FIRMIN Cimetiere",49.198674,2.506388,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010670,1,"CAMBRONNE LES CLERMONT Centre",49.32975,2.398409,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010672,1,"Haut",49.299252,2.393921,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010673,1,"NEUILLY SOUS CLERMONT AUVILLERS Ecole",49.35937,2.39506,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010675,1,"NEUILLY SOUS CLERMONT Zone Commerciale",49.348766,2.430401,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010679,1,"Le LYS RP de la Reine",49.164526,2.416792,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010682,1,"NERY Eglise",49.283586,2.778628,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010683,1,"Foch",49.21022,2.59237,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010684,1,"VILLERS ST FRAMBOURG Eglise Ecole",49.254683,2.639724,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010685,1,"VILLERS ST FRAMBOURG Republique",49.249892,2.644115,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010687,1,"La Borne",49.275913,2.737794,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21010689,1,"ORRY LA VILLE Stade",49.131343,2.522776,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100009,1,"VINEUIL SAINT FIRMIN Georges Dauchy",49.197327,2.505794,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100012,1,"AVILLY SAINT LEONARD Place",49.193739,2.537108,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100045,1,"Centre",49.103744,2.685753,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100048,1,"EVE Eglise Ecole",49.090312,2.703476,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100051,1,"NANTEUIL LE HAUDOUIN Croix d'Andolle",49.13766,2.803467,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100055,1,"MONTAGNY-SAINTE-FELICITE Centre",49.12888,2.73722,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100056,1,"Centre",49.160581,2.764888,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100057,1,"Centre",49.172188,2.734329,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100060,1,"Ecole",49.180287,2.67129,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100071,1,"Balagny",49.224179,2.636664,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100072,1,"Centre",49.221632,2.608433,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100081,1,"Ducy",49.211807,2.743562,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100082,1,"Centre",49.210309,2.768578,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100083,1,"Le Luat",49.214846,2.780919,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100116,1,"AUGER SAINT VINCENT Centre",49.218883,2.809184,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100124,1,"Le Pommelotier",49.21585,2.680408,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100138,1,"Eglise",49.458331,2.326892,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100139,1,"Centre",49.319119,2.550803,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100156,1,"SICA",49.367188,2.519585,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100159,1,"Mairie",49.367894,2.509766,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100172,1,"CIRES LES MELLO Croix du Four",49.271108,2.353895,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100181,1,"BAILLEUL SUR THERAIN Centre",49.384931,2.221861,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100182,1,"Caillouel",49.353245,2.265855,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100183,1,"SAINT FELIX Fay-sous-bois",49.357224,2.28083,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100184,1,"SAINT FELIX Place",49.349346,2.281853,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100186,1,"Centre monument aux morts",49.338178,2.301799,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100187,1,"Butteaux",49.353578,2.310342,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100188,1,"THURY SOUS CLEMONT Mairie",49.356653,2.325359,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100199,1,"BETHISY ST PIERRE Place",49.298911,2.800616,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100213,1,"Lotissement",49.299356,2.517105,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100224,1,"BLAINCOURT LES PRECY Les Gorres",49.217758,2.362601,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100249,1,"Repuplique",49.185013,2.414877,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100283,1,"Le LYS 3e Avenue",49.167747,2.423059,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100284,1,"Le LYS RP du Grand Cerf",49.171336,2.416569,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100286,1,"Le LYS RP du Poteau du Roy",49.158246,2.415343,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100288,1,"Le LYS RP des Aigles",49.172289,2.401949,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100290,1,"Le LYS 4e Avenue",49.173116,2.380024,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100291,1,"Le LYS 11e Avenue",49.171716,2.375473,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100293,1,"Le LYS RP d'Aumale",49.166518,2.388692,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100294,1,"Le LYS Avenue Reberteau",49.165831,2.391939,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100295,1,"Le LYS RP Manin",49.162439,2.388222,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100296,1,"Le LYS Avenue de Beaumont",49.16305,2.40194,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100297,1,"Le LYS 8e Avenue",49.161924,2.393263,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100298,1,"Le LYS 5e Avenue",49.15888,2.40277,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100300,1,"Centre Social",49.156659,2.44583,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100301,1,"Grange des pres",49.154721,2.44499,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100302,1,"Charles Pratt",49.15861,2.446659,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100309,1,"Haras du Coq",49.147096,2.438118,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100318,1,"Place d'Uny",49.338014,2.439524,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100319,1,"Senecourt",49.349164,2.447512,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100322,1,"SOUTRAINE Lotissement",49.316565,2.434658,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100324,1,"Collège R ROLAND",49.32033,2.310882,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100334,1,"Centre",49.330295,2.328265,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100336,1,"SAINT-FELIX Lotissement",49.347778,2.291672,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100350,1,"Centre",49.428328,2.535819,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100351,1,"Centre",49.41662,2.520876,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100352,1,"Argenlieu",49.451945,2.441667,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100354,1,"Metz",49.453565,2.425714,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100356,1,"SAINT AUBIN SOUS ERQUERY Ecole",49.406709,2.483713,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100357,1,"REMECOURT Lamecourt",49.427827,2.491361,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100359,1,"Centre",49.42444,2.417773,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100360,1,"LAMECOURT Square André Cottel",49.429958,2.466164,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100361,1,"Centre",49.40902,2.456558,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100365,1,"Bizancourt",49.438892,2.419173,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100366,1,"Place de la Mairie",49.447225,2.426682,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100378,1,"ULLY SAINT GEORGES Moulincourt",49.264446,2.248613,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100382,1,"ULLY SAINT GEORGES Coupin",49.272995,2.286548,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100387,1,"Usine",49.255827,2.404291,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100391,1,"Mello",49.27222,2.366747,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100393,1,"ST VAAST LES MELLO Abribus",49.266077,2.386334,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100415,1,"NEUILLY SOUS CLERMONT Zone Commerciale",49.350161,2.426334,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100431,1,"Le Pont",49.320423,2.497718,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100434,1,"Stade",49.315555,2.509727,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100438,1,"Ecole",49.344852,2.457701,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100440,1,"Bethencourt",49.347498,2.469725,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100444,1,"Allée des Fresnes",49.337496,2.455278,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100447,1,"Cancriaumont",49.293695,2.452018,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100448,1,"VILLERS SAINT PAUL Collège Emile LAMBERT",49.291921,2.488221,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100458,1,"THURY EN VALOIS La Grange au Bois",49.149158,3.04361,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100459,1,"Antilly",49.158239,2.992083,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100461,1,"ACY EN MULTIEN Place",49.102939,2.954405,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100462,1,"MAREUIL SUR OURCQ Julien Muzard",49.129999,3.08,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100465,1,"ORMOY LE DAVIEN Ecole",49.194091,2.95902,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100466,1,"Villers les potées",49.18,2.99805,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100467,1,"Grand Champ",49.175831,3.00416,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100468,1,"Rue de l'eglise",49.17326,2.991755,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100470,1,"La Bascule",49.104772,2.841353,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100471,1,"CHEVREVILLE Ecole",49.109881,2.850683,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100474,1,"BOULLARE Boullare",49.128549,3.004592,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100475,1,"BREGY Eglise",49.082501,2.866133,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100477,1,"REEZ FOSSE MARTIN Nogeon",49.091413,2.929078,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100479,1,"Centre",49.1125,2.918904,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100480,1,"BOULLANCY Gueux",49.120797,2.923487,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100481,1,"VILLERS SAINT GENEST Centre",49.141406,2.907409,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100483,1,"AUTHEUIL EN VAOIS La Sanglière",49.178372,3.043997,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100484,1,"AUTHEUIL EN VAOIS Centre",49.171868,3.06038,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100485,1,"AUTHEUIL EN VAOIS Le Plessis sur Autheuil",49.18126,3.061526,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100486,1,"AUTHEUIL EN VALOIS Billemont",49.190517,3.074337,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100487,1,"Ecole",49.20305,3.047795,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100488,1,"Centre",49.200971,3.015787,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100489,1,"Centre",49.178051,2.956684,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100491,1,"Mairie",49.170412,3.103841,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100492,1,"Précy a Mont",49.181939,3.1075,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100493,1,"LA VILLEUNEUVE SOUS THURY Centre",49.156441,3.060232,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100494,1,"THURY EN VALOIS Eglise",49.157558,3.026121,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100496,1,"Collège M.PAGNOL arrivée",49.159213,2.949859,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100497,1,"CREPY EN VALOIS Lycée Jean Monnet",49.223637,2.892284,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100502,1,"Le Bas de Bouillancy",49.114548,2.929712,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100504,1,"Antilly",49.152011,2.9848,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100507,1,"ROSOY EN MULTIEN Rosoy en multien",49.095784,2.990389,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100524,1,"ST MARTIN LONGEAU République",49.344362,2.601093,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100528,1,"Place",49.319302,2.527083,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100531,1,"RD13",49.342887,2.621654,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100544,1,"PONT STE MAXENCE College L&R Aubrac Arrivée",49.294251,2.596592,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100548,1,"Collège R.CASSIN",49.306199,2.540966,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100553,1,"Centre",49.313572,2.343942,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100554,1,"Saint Claude",49.29097,2.365055,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100557,1,"Mérard",49.328517,2.3459,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100558,1,"Centre",49.344937,2.358539,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100559,1,"BALAGNY SUR THERAIN Stade",49.301107,2.332241,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100560,1,"BALAGNY SUR THERAIN Acacias",49.291198,2.340331,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100561,1,"BALAGNY SUR THERAIN Mairie",49.295277,2.336389,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100562,1,"Maison blanche",49.30444,2.346391,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100565,1,"THURY SOUS CLERMONT Fillerval",49.357864,2.31635,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100566,1,"THURY SOUS CLERMONT Eglise",49.357068,2.325097,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100567,1,"THURY SOUS CLERMONT Rue d'En Bas",49.355466,2.315856,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100569,1,"Ecole R Floury",49.31778,2.319884,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100572,1,"THURY SOUS CLERMONT Rue d'En Bas",49.357992,2.33416,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100582,1,"Institut St Dominique",49.108867,2.604967,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100590,1,"La Prêle",49.321343,2.50216,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100594,1,"Carrefour",49.316052,2.54745,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100595,1,"Belle Visée",49.30127,2.528047,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100606,1,"Mairie",49.304544,2.542141,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100608,1,"Le Plessis au bois",49.218609,3.02166,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100609,1,"VAUCIENNE Bas",49.236935,3.030518,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100610,1,"VAUCIENNE Mur du Nain",49.237771,3.02305,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100612,1,"RN 2",49.21416,2.955,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100618,1,"Ecole",49.258889,2.817222,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100619,1,"VAUCIENNE Chavres",49.215665,2.994159,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100621,1,"Ecole",49.171942,2.733903,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100625,1,"SERY MAGNEVAL Magneval",49.263674,2.855815,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100628,1,"Petit VEZ",49.258881,3.005,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100629,1,"Ecole",49.264249,3.00347,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100633,1,"BETHANCOURT EN VALOIS Abri",49.286948,2.877201,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100638,1,"Place",49.290089,2.87803,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100641,1,"EMEVILLE Eglise",49.282777,3.028499,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100642,1,"BONNEUIL EN VALOIS La Croix Ste Barbe",49.288332,3.014186,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100643,1,"BONNEUIL EN VALOIS Rue de Villers",49.282404,3.000601,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100645,1,"Buy",49.285201,2.95891,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100646,1,"RUSSY BEMONT Bemont",49.259285,2.965999,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100647,1,"RUSSY BEMONT Ecole",49.243051,2.96444,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100650,1,"Morcourt",49.267452,2.900624,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100654,1,"FRESNOY LA RIVIERE Rue du chêne",49.284454,2.916851,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100657,1,"Rue Charles de Gaulle",49.235271,2.98083,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100658,1,"Cité Gauthier",49.23563,2.990751,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100663,1,"CHEVREVILLE Sennevieres",49.122851,2.853934,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100666,1,"NANTEUIL LE HAUDOUIN Eglise",49.139448,2.812494,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100668,1,"NANTEUIL LE HAUDOUIN College G.Cale",49.137881,2.808892,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100677,1,"MERU Gare",49.232375,2.13293,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100678,1,"Gare",49.199447,2.214539,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100679,1,"Centre",49.197503,2.209503,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100680,1,"BELLE EGLISE Centre",49.192339,2.219523,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100681,1,"Marinière",49.170274,2.243101,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100682,1,"Collège Jacques Prévert",49.168836,2.254806,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100684,1,"MORANGLE La mare au bois",49.194212,2.292603,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100686,1,"FRESNOY EN THELLE Ecole",49.20058,2.269508,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100699,1,"Lycée Agricole",49.431293,2.419409,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100704,1,"AUGER SAINT VINCENT Saint-Mard",49.214135,2.809494,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100712,1,"LE PLESSIS BELLEVILLE E G B",49.095133,2.754097,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100762,1,"Mognevillette",49.321179,2.466537,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100787,1,"Felix Louat",49.20379,2.607339,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100803,1,"Centre",49.469165,2.497991,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100806,1,"Château Rouge",49.297517,2.261894,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100809,1,"Coincourt",49.322871,2.305727,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100811,1,"CHEVRIERES Centre",49.347503,2.680834,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100816,1,"Square Foirest",49.436963,2.706352,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100824,1,"Centre",49.458043,2.565878,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100836,1,"Saint Epin",49.297226,2.346884,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100842,1,"Centre",49.319756,2.32053,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100843,1,"ESTREE ST DENIS Centre",49.429281,2.642599,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100851,1,"Boulincourt Rue de l'Empire",49.388433,2.36453,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100853,1,"BAILLEUL SUR THERAIN Froidmont",49.383382,2.248641,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100865,1,"R P du 19 Mars",49.310953,2.324229,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100869,1,"ST REMY EN L'EAU Eglise",49.470817,2.430292,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100874,1,"LAGNY LE SEC La Bonne Rencontre",49.093669,2.74608,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100875,1,"BELLE EGLISE Landrimont",49.18313,2.202973,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100876,1,"Courcelles",49.192543,2.185319,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100879,1,"Mesnil Saint Martin",49.182514,2.234595,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100881,1,"LE MESNIL EN THELLE Parc du Thelle",49.178019,2.286286,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100882,1,"LE MESNIL EN THELLE Quatre Chemins",49.165808,2.285667,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100883,1,"PUISEUX LES HAUBERGER Grande Rue",49.215499,2.236628,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100885,1,"FRESNOY EN THELLE Rue de Lamberval",49.202838,2.274922,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100886,1,"RESSONS L'ABBAYE Ecole",49.301633,2.08916,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100887,1,"LE COUDRAY SUR THELLE Centre",49.305946,2.122498,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100888,1,"RD 1001",49.330118,2.199867,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100889,1,"Fercourt",49.310191,2.24536,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100890,1,"Centre",49.301146,2.24745,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100891,1,"ULLY ST GEORGES Centre",49.279649,2.280335,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100892,1,"CIRES LES MELLO Route de Balagny",49.286355,2.345578,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100893,1,"CIRES LES MELLO Chanterac",49.278034,2.35799,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100895,1,"CIRES LES MELLO Maysel",49.269347,2.357396,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100900,1,"Parking Orsol",49.260573,2.164994,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100907,1,"ULLY ST GEORGES Cavillon Bas",49.257769,2.259152,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100908,1,"STE GENEVIEVE Mairie",49.289347,2.1976,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100911,1,"ROSOY EN MULTIEN Place",49.095866,2.99674,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100917,1,"Collège M.PAGNOL départ",49.15904,2.950144,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100918,1,"ORRY LA VILLE Centre village",49.133021,2.512059,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100920,1,"BETHISY ST PIERRE Monument",49.298935,2.808405,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100922,1,"Centre",49.401506,2.679282,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100924,1,"ST VAAST DE LONGMONT Clos Chateleine",49.310296,2.740136,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100925,1,"ST VAAST DE LONGMONT Mairie",49.30346,2.742817,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100934,1,"LAGNY LE SEC Epi de Blé",49.08424,2.741847,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100937,1,"Rue du Marais",49.153156,2.433911,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100942,1,"HLM La Cavée",49.333977,2.461662,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100945,1,"Centre",49.466983,2.381965,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100946,1,"Le Plesseret",49.474571,2.386492,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100947,1,"ESTREE ST DENIS Lycée st joseph",49.426109,2.639509,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100948,1,"Moineaux",49.318904,2.332156,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100952,1,"VERNEUIL EN HALATTE Rue Crussard",49.272972,2.5092,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100953,1,"Les Hauts de Chantereine",48.972794,2.902739,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100954,1,"Musée de la Grande Guerre",48.972776,2.902848,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100955,1,"LE DELUGE Ecole",49.297235,2.109484,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100973,1,"LE PLESSIS BELLEVILLE Pharmacie",49.099238,2.754705,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100975,1,"Lotissement",49.316107,2.525491,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100976,1,"Griffon",49.31305,2.526717,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100977,1,"BOISSY FRESNOY Lotissements",49.162796,2.87727,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100978,1,"Beaulieu",49.202233,2.739771,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100979,1,"Macquelines",49.166757,2.93271,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100980,1,"Macquelines bas",49.165922,2.927151,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100981,1,"Ecole",49.158259,2.953546,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100987,1,"Herminie",49.318608,2.329504,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100988,1,"LE MESNIL EN THELLE Nord",49.18234,2.286199,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100990,1,"LA CHAPELLE ST PIERRE Beauchamps",49.271594,2.232467,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100991,1,"BOISSY FRESNOY Rue des Blassiers",49.161282,2.880337,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100992,1,"SACY LE GRAND La Motte",49.357246,2.539931,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100995,1,"Parvillée",49.257994,2.399421,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100996,1,"PONT STE MAXENCE Bas de cöte",49.293128,2.604841,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21100998,1,"LA BOISIERE EN THELLE RD46",49.296089,2.159971,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21101000,1,"Puit aux loups",49.104556,2.587755,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21101001,1,"LE MESNIL EN THELLE Libération",49.172866,2.286893,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21101002,1,"Bois Noir",49.313191,2.335317,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21101003,1,"VILLERS ST SEPULCRE Place",49.364929,2.216211,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21101007,1,"Monument aux morts",49.302611,2.538081,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21101008,1,"CREPY-EN-VALOIS Route de Pierrefonds",49.24764,2.900096,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21101011,1,"VILLERS ST SEPULCRE Fresnoy",49.360685,2.221186,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21101012,1,"Base Aérienne",49.24419,2.506648,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21101013,1,"Ecole",49.345277,2.408973,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21101014,1,"LEVIGNEN Lotissement",49.20061,2.90922,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21101015,1,"Uny La folie",49.337577,2.435949,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21101016,1,"Route de Mouy",49.320254,2.427854,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21101017,1,"BREUIL LE SEC Croix Verte",49.376632,2.446213,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21101018,1,"Rue du Bois",49.105157,2.681971,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21101022,1,"PONT STE MAXENCE Place Palteau",49.30239,2.60107,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21101027,1,"Chateau",49.125529,2.693512,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21101028,1,"Place Omer Vallon",49.194691,2.465548,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21101036,1,"Périscolaire",49.288697,2.853403,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21101040,1,"VINEUIL SAINT FIRMIN Sainte-Barbe",49.198853,2.486865,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21101043,1,"VINCY MANOEUVRE Centre D",49.077575,2.962404,,1,,Europe/Paris,,ODT, +ODT:SA:CTP21101044,1,"MAY EN MULTIEN Poste D",49.071016,3.019892,,1,,Europe/Paris,,ODT, +ODV:SA:CTP22401218,1,"Centre",49.378615,2.585573,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22401220,1,"Centre",49.346948,2.679854,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22401221,1,"Poste",49.346948,2.683195,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22401223,1,"L'Orméon",49.324444,2.698354,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22401224,1,"SEVIGNE",49.41595,2.829955,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22401428,1,"Ferme neuve",49.555591,3.088201,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22401430,1,"Ecole",49.563337,3.059744,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22401432,1,"Grande Rue",49.587507,3.046132,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22402391,1,"CFA - Maison du Batiment",49.386594,2.395261,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403067,1,"Gare",49.206146,2.592111,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403070,1,"Place St Jacques",49.578469,2.995215,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403071,1,"Lycée P. d'Ailly",49.405983,2.83542,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403073,1,"Royallieu",49.395113,2.803543,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403076,1,"Nord",49.357503,2.789745,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403077,1,"Centre",49.355553,2.786135,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403078,1,"Bac",49.352583,2.77366,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403079,1,"Rue de Compiegne",49.324163,2.778074,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403080,1,"Eglise",49.318053,2.783634,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403081,1,"Aristide Briand",49.313334,2.780025,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403082,1,"Clos Cadot",49.304112,2.796266,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403083,1,"Monument",49.298053,2.806964,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403084,1,"Place",49.298613,2.800024,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403085,1,"Château",49.303052,2.806684,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403086,1,"Place",49.294443,2.814745,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403087,1,"Vaucelle",49.296943,2.791405,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403088,1,"Curie",49.306382,2.762794,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403089,1,"Debuire",49.305833,2.769464,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403090,1,"Jaures",49.302774,2.778634,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403091,1,"Rue de Saintines",49.310833,2.739464,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403092,1,"Collège d'Aramont",49.307656,2.720509,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403093,1,"Eglise",49.310554,2.730854,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403095,1,"Saint-Pierre",49.300004,2.650853,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403096,1,"Saint-Gervais",49.300151,2.640101,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403097,1,"Saint-Paterne",49.300124,2.62558,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403098,1,"Philipe le Bel",49.301176,2.617398,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403100,1,"Moru",49.307504,2.679463,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403138,1,"Eglise",49.489059,3.008959,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403140,1,"Place Léon Blum",49.469364,3.006606,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403152,1,"Place Bobigny",49.46528,2.888866,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403154,1,"Cours Guynemer",49.419978,2.824596,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403156,1,"Place du chateau",49.417746,2.830664,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403161,1,"Mairie",49.424724,2.818905,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403167,1,"Collège Debussy",49.433176,2.82812,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403173,1,"Centre",49.439476,2.878256,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403174,1,"Linières",49.447028,2.880692,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403176,1,"RD 1032",49.466943,2.861406,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403177,1,"Rue des écoles",49.468334,2.863356,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403178,1,"Barrière",49.470553,2.867796,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403179,1,"Ecoles",49.463053,2.889746,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403180,1,"Rue de Longueil",49.475004,2.878906,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403181,1,"Rue Joffre",49.480542,2.890698,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403183,1,"Gare SNCF",49.475276,2.881295,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403184,1,"Saint Gobain",49.482579,2.894994,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403185,1,"Bethancourt",49.499816,2.900919,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403186,1,"église",49.50708,2.897606,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403187,1,"Rue des plantes",49.50806,2.907107,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403188,1,"Gendarmerie",49.505234,2.915875,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403190,1,"Gare",49.506678,2.926068,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403191,1,"Mairie",49.510627,2.922544,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403192,1,"Collège",49.508582,2.923831,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403193,1,"Tierval",49.514996,2.921669,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403198,1,"Gare SNCF",49.577503,3.007527,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403200,1,"Collège Pasteur",49.586525,3.013694,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403206,1,"Dreslincourt Place",49.526224,2.927276,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403207,1,"Maison Bleue",49.53281,2.943195,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403208,1,"Centre",49.556113,2.960576,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403209,1,"RD 1032",49.542715,2.954175,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403210,1,"Place",49.514163,2.951687,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403234,1,"R. de l'Armistice",49.351112,2.980296,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403236,1,"Ferdinand Bac",49.420221,2.829018,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403239,1,"Collège P. Eluard",49.584481,2.998333,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403243,1,"Centre",49.558888,2.994191,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403244,1,"centre",49.530273,2.973635,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403246,1,"Vesigneux",49.478049,3.011682,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403247,1,"Ollencourt-Place Loonen",49.478753,2.999712,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403248,1,"Centre",49.593337,2.961142,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403251,1,"Bas-Beaurains",49.60987,2.981993,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403252,1,"Ecole",49.61528,2.959198,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403253,1,"Béhancourt",49.626157,2.95033,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403254,1,"Sceaucourt",49.609,2.904819,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403255,1,"Candor",49.627531,2.896536,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403256,1,"Avricourt",49.656114,2.86113,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403257,1,"Le pavé",49.662766,2.863993,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403258,1,"Roiglise",49.683445,2.828552,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403260,1,"Collège",49.706126,2.77791,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403261,1,"Place des Tilleuls",49.671722,2.865553,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403265,1,"Ecole",49.612123,2.990646,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403266,1,"Bussy",49.62525,2.983072,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403267,1,"Chevilly",49.637751,2.955655,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403269,1,"Centre",49.638615,2.937527,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403270,1,"Ecuvilly",49.64965,2.9206,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403271,1,"Place",49.659206,2.913054,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403272,1,"centre",49.692491,2.915397,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403273,1,"Solente",49.698895,2.879747,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403274,1,"Grande Rue",49.694472,2.85888,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403275,1,"Bas",49.463615,2.760855,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403276,1,"Place",49.476943,2.772796,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403277,1,"Mairie",49.470005,2.746965,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403278,1,"Place",49.443333,2.734744,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403280,1,"Centre",49.448694,2.67906,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403281,1,"Centre",49.465274,2.690574,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403282,1,"Hemevillers",49.463827,2.673717,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403283,1,"place",49.492206,2.675682,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403285,1,"Place de la mairie",49.501944,2.616404,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403286,1,"Moyenneville",49.491114,2.633904,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403288,1,"Jean RACINE",49.653673,2.580958,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403291,1,"Centre",49.607934,2.483861,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403303,1,"Mairie",49.590557,2.393902,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403308,1,"MONUMENT AUX MORTS",49.648339,2.358901,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403323,1,"Fresnel",49.445834,2.657244,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403324,1,"Sucrerie",49.453095,2.652758,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403327,1,"Vignes Mondaines",49.401942,2.978077,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403330,1,"Mairie",49.386499,3.007493,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403334,1,"La Vache Noire",49.395917,3.113835,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403336,1,"Montois",49.388954,3.127823,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403337,1,"Cheneux",49.388107,3.137308,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403338,1,"Centre",49.387545,3.149465,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403339,1,"Gorgny",49.391411,3.162213,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403340,1,"Pontarcher",49.395144,3.186394,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403341,1,"RN 31",49.386412,3.243986,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403342,1,"RN 31",49.381653,3.289307,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403343,1,"Léonard De Vinci",49.373162,3.306374,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403344,1,"Rue Marcel Paul",49.367539,3.316214,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403345,1,"Arrêt Molière Boulevard Gal de Gaulle",49.373683,3.332786,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403348,1,"Lycee Nerval",49.385705,3.323056,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403349,1,"Saint Christophe",49.382518,3.320298,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403352,1,"La Motte",49.403611,3.006967,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403353,1,"Collège",49.402782,3.014588,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403354,1,"Mairie",49.39956,3.026645,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403649,1,"Huleux",49.259443,2.757524,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403650,1,"Verrines",49.266112,2.785294,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403651,1,"Centre",49.281114,2.777244,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403656,1,"Ecole",49.294722,2.815575,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403657,1,"Le Larris",49.292503,2.787794,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403662,1,"Guidon",49.29721,2.690691,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403664,1,"Mairie",49.30134,2.604478,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403665,1,"Marie Bray",49.2965,2.604556,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403667,1,"Centre",49.302563,2.688076,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403669,1,"Yvillers Centre",49.268333,2.673903,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403670,1,"Noël-St-Martin (D932a)",49.279163,2.705573,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403781,1,"Eglise",49.546117,2.359461,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403801,1,"Rotibequet",49.496386,2.410572,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403828,1,"Place",49.389725,2.430853,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403830,1,"RN31",49.377505,2.481402,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403831,1,"RN31",49.373054,2.511963,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403832,1,"Eglise",49.354165,2.542793,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403834,1,"Centre",49.397223,2.554464,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403835,1,"Froyères",49.395675,2.600999,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403836,1,"Eglise-Avenue de Picardie",49.425387,2.644587,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403837,1,"Mairie",49.342503,2.604743,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403838,1,"Eglise",49.346753,2.596527,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403840,1,"Croix Blanche",49.378414,2.65226,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403843,1,"Eglise",49.347511,2.680917,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403844,1,"Bailly",49.350284,2.718634,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403847,1,"Centre",49.373893,2.697244,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403848,1,"Canly",49.385833,2.708075,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403849,1,"Jonquières",49.389723,2.728355,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403854,1,"La Croix Rouge",49.395003,2.779745,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403856,1,"Centre",49.347503,2.732524,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403857,1,"Place",49.36,2.629506,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403858,1,"RD 13",49.345284,2.638634,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403859,1,"Bois d'Ageux",49.331113,2.724184,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403860,1,"Eglise",49.415834,2.578073,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403862,1,"Moyvillers",49.414009,2.649943,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403863,1,"Gare",49.438296,2.641678,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403864,1,"Cimetière rue de Compiègne",49.430835,2.643634,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403869,1,"Solette",49.422026,2.644952,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403870,1,"Rue de Rémy",49.402223,2.676694,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403871,1,"La Huchette",49.401114,2.682244,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403872,1,"Rue d'en Bas",49.400835,2.688634,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403874,1,"Boucquy",49.404449,2.750489,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403877,1,"Maison Guynemer",49.406344,2.837296,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403878,1,"Four d'en haut",49.329723,2.919745,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403879,1,"Place de L'eglise",49.297501,2.921135,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403880,1,"Bellival - Rue de la vallée",49.288613,2.888075,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403881,1,"R. Sallez",49.292502,2.878905,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403882,1,"Centre",49.286383,2.876965,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403883,1,"G. de Nerval",49.23752,2.892036,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403884,1,"Aragon",49.233393,2.893238,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403885,1,"Rue Saint Lazare",49.231917,2.893647,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403886,1,"Avenue KENNEDY",49.225562,2.88056,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403887,1,"Gare",49.231446,2.886768,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403888,1,"Avenue de Senlis",49.232264,2.87882,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403889,1,"Rue des Moulins",49.235273,2.857524,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403890,1,"Demi-Lune",49.259722,2.853074,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403891,1,"Centre",49.271112,2.851404,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403892,1,"Centre",49.292222,2.857795,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403893,1,"Centre",49.258881,2.930575,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403894,1,"Pondron",49.278332,2.945025,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403896,1,"Les Buts",49.285551,2.983356,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403897,1,"Vattier-Voisin",49.280833,2.930855,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403898,1,"Buy",49.286381,2.957526,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403899,1,"Grimancourt",49.292772,2.960295,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403900,1,"Ferme de May",49.298051,2.951406,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403901,1,"L'Essart l'Ablesse",49.316473,2.954945,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403902,1,"Elincourt Fresnoy",49.287219,2.91555,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403903,1,"Le Voisin",49.28777,2.971405,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403904,1,"Vez",49.266112,3.005296,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403983,1,"Chateau",49.412407,2.837307,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403984,1,"Calvaire",49.419363,2.937062,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403985,1,"Rue du Galant",49.413165,2.992228,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403987,1,"centre",49.411003,3.07986,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403988,1,"Centre",49.4425,3.126967,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403989,1,"mairie",49.406721,3.115055,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403990,1,"mairie",49.409858,3.139416,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403991,1,"ecole",49.407386,3.196855,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403992,1,"centre",49.402335,3.229299,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403993,1,"église",49.393055,3.271942,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22403994,1,"maison blanche",49.381782,3.285552,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404030,1,"Rue de Noyon",49.436973,2.705911,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404032,1,"Rouvillers",49.451944,2.608354,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404033,1,"Centre",49.455835,2.600304,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404034,1,"église",49.471385,2.548073,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404037,1,"Centre",49.499725,2.577794,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404038,1,"Léglantiers",49.495005,2.531683,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404039,1,"Angivillers",49.486384,2.501403,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404040,1,"Mairie",49.514841,2.503736,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404041,1,"Centre Jean Jaures",49.516856,2.501576,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404043,1,"Mairie",49.509575,2.452185,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404044,1,"Eglise",49.470556,2.548633,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404045,1,"Mairie",49.458335,2.565854,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404048,1,"centre",49.44833,2.826408,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404049,1,"Salle des Fêtes",49.462499,2.811963,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404050,1,"bas",49.46611,2.814298,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404051,1,"Gare",49.47722,2.791407,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404052,1,"Rue de la Nacelle",49.47916,2.800854,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404053,1,"Centre",49.486381,2.808075,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404054,1,"Rimberlieu",49.49138,2.818353,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404055,1,"Centre",49.495005,2.75669,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404056,1,"Gare",49.495837,2.767798,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404059,1,"centre",49.521383,2.777795,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404060,1,"Ecole",49.517035,2.762886,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404061,1,"Ecole",49.539726,2.746691,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404062,1,"Centre",49.551946,2.753071,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404064,1,"Le Haut Matz",49.561206,2.755728,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404065,1,"Centre",49.578619,2.761686,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404066,1,"église",49.553646,2.693277,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404067,1,"RD 935",49.570005,2.670024,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404068,1,"Orvillers-Sorel",49.576669,2.70725,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404069,1,"Centre",49.580836,2.733069,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404070,1,"Place du Marché",49.601797,2.725051,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404071,1,"Monument aux Morts",49.606753,2.731169,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404072,1,"Rue de la Gare",49.609454,2.70634,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404073,1,"Hainvillers",49.592776,2.681972,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404074,1,"Mairie",49.539665,2.679516,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404075,1,"Belloy",49.536237,2.655396,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404076,1,"Centre",49.547416,2.628506,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404078,1,"Centre",49.536942,2.575574,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404079,1,"centre",49.60276,2.801105,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404080,1,"centre",49.619724,2.810853,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404081,1,"Centre",49.640717,2.798131,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404082,1,"Ecoles",49.646477,2.770355,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404083,1,"Verger",49.647262,2.751454,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404084,1,"centre",49.673595,2.758823,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404086,1,"Place",49.500551,2.775851,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404087,1,"centre",49.591221,2.773949,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404089,1,"Pont du Matz",49.48879,2.884362,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404090,1,"Bas du Cavan",49.494721,2.873903,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404091,1,"Centre",49.494178,2.85837,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404092,1,"Place",49.503057,2.844751,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404093,1,"Place",49.507834,2.821073,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404094,1,"Place",49.525528,2.816618,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404095,1,"Centre",49.544724,2.790861,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404098,1,"Rue Godet",49.577065,2.834726,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404103,1,"Dives le Franc",49.560006,2.946969,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404104,1,"Eglise",49.555837,2.941963,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404105,1,"La Bernardie",49.554004,2.934969,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404106,1,"centre",49.557068,2.904905,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404107,1,"Eglise",49.567343,2.902879,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404108,1,"Centre",49.565277,2.883357,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404109,1,"Rue Mélique",49.564441,2.87168,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404111,1,"Les Bocages",49.560006,2.850301,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404113,1,"Ferme de St Claude",49.549166,2.815031,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404114,1,"Bourmont",49.537776,2.765032,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404115,1,"Centre",49.572776,2.963363,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404116,1,"Lotissement",49.572403,2.957144,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404117,1,"Rue de Noyon",49.576597,2.950206,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404118,1,"Grande rue",49.585894,2.917258,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404119,1,"Dives",49.588613,2.886964,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404124,1,"Plessis-Cacheleux",49.598057,2.884192,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404126,1,"Centre",49.587227,2.84252,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404127,1,"Centre",49.655009,2.824751,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404128,1,"Eglise",49.667843,2.822397,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404131,1,"Muirancourt",49.644724,3.010593,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404132,1,"Quesmy",49.633614,3.058913,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404133,1,"Centre",49.63556,3.072811,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404134,1,"Grande Rue",49.636707,3.097913,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404135,1,"Buchoire",49.650485,3.070079,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404136,1,"Rue de l'épée",49.653063,3.051967,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404137,1,"Tirlancourt",49.664685,3.031971,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404138,1,"Rouvrel",49.678065,3.035308,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404139,1,"Beines",49.66944,3.094194,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404140,1,"Mairie",49.690835,3.110861,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404141,1,"Berlancourt",49.671117,3.065311,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404142,1,"Brouchy",49.719711,3.100453,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404143,1,"Plessis-Patte-d'Oie",49.681392,3.063631,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404144,1,"Flavy-le-Meldeux",49.684725,3.043635,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404146,1,"Golancourt",49.70746,3.064085,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404147,1,"Rue De Paris",49.735742,3.068133,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404148,1,"Place De La Gare",49.739955,3.069496,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404149,1,"Rezavoine",49.655332,2.990591,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404150,1,"église",49.67027,3.003333,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404151,1,"Libermont",49.692784,2.973351,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404152,1,"Ercheu",49.70103,2.939642,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404153,1,"Cressy-Omencourt",49.722156,2.912977,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404154,1,"Collège",49.761385,2.912201,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404155,1,"Rue du Château",49.591943,3.040031,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404157,1,"Ecoles",49.586943,3.053363,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404158,1,"La Rosière",49.583051,3.055298,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404159,1,"Behericourt",49.596384,3.063638,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404160,1,"Baboeuf",49.584601,3.086997,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404161,1,"Grandru",49.604999,3.086965,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404162,1,"Mondescourt",49.595551,3.111131,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404163,1,"Centre",49.582502,3.117799,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404164,1,"Ecole",49.567222,3.112525,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404165,1,"Rue Millon",49.561667,3.10196,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404166,1,"Eglise",49.569725,3.033359,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404167,1,"centre",49.553333,3.047246,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404168,1,"Place de la Mairie",49.531113,3.101407,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404169,1,"La pommeraye",49.530274,3.086132,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404170,1,"Rue d'Hesdin",49.524444,3.071682,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404172,1,"Laigle",49.520637,3.050366,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404173,1,"Les Cloyes",49.525007,3.000862,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404175,1,"Maupas",49.513887,3.035855,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404177,1,"Les Loges Ferme",49.48822,3.072776,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22404178,1,"Bas",49.485214,3.09792,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22413573,1,"Huleu",49.51805,3.016142,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22413574,1,"Ecole",49.513336,3.026964,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22413576,1,"centre",49.588104,2.963993,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22413577,1,"Centre - GRANDE RUE",49.6106,2.969701,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22413578,1,"Cantine",49.645001,3.0092,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22413579,1,"Rimbercourt",49.637882,3.02772,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22413580,1,"Centre",49.621724,3.013649,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22413582,1,"Ecole",49.633896,3.05835,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22413583,1,"Fretoy-le-Château",49.661119,2.980026,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22413584,1,"Rue de l'Eglise",49.514356,2.793034,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22413587,1,"Petit Mélicocq",49.497503,2.868361,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22413589,1,"Gury",49.569445,2.799463,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22413590,1,"Fontaine Ferrée",49.588051,2.851411,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22413591,1,"Pont-l'Evêque",49.563612,2.989184,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22413592,1,"Le Guidon",49.570552,2.988071,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22413593,1,"centre",49.478808,2.999616,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22413594,1,"Mairie",49.488668,2.959646,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22413654,1,"La Hutte",49.499248,2.863759,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22413702,1,"Mairie",49.342774,2.621684,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22413703,1,"mairie",49.375274,2.451133,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22413704,1,"Voltaire",49.390555,2.416132,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22413705,1,"Eglise",49.357994,2.717295,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22413706,1,"Place D'Avrigny",49.352503,2.548903,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22413707,1,"St Jacques",49.417074,2.826792,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22413708,1,"Centre",49.306943,2.696964,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22413709,1,"Eglise",49.274725,2.689184,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22413711,1,"Ecole",49.380555,2.581684,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22413712,1,"Centre",49.383055,2.617524,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22413757,1,"Rue Charles Caille cimetière",49.477598,2.905693,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22413759,1,"Maison d'arrêt",49.414334,2.832004,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22413768,1,"Centre",49.284721,2.992246,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22413769,1,"Ecole",49.284442,2.917525,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22413770,1,"Rue du Chêne",49.297222,2.922229,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510025,1,"Ansauvillers",49.564867,2.386856,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510046,1,"Centre",49.617499,2.38694,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510060,1,"Rue P. Drumont",49.497513,2.972248,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510072,1,"Centre",49.53629,2.655738,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510092,1,"Scolaire BONNEUIL LES EAUX",49.678621,2.232794,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510130,1,"Centre",49.627771,2.45527,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510217,1,"Mairie",49.658058,2.26779,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510272,1,"Centre",49.661114,2.980027,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510300,1,"Ecole",49.45694,2.60417,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510334,1,"Centre",49.365269,3.06194,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510367,1,"Mairie",49.591116,2.414742,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510479,1,"Rue d'en bas",49.627778,2.408902,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510532,1,"carrefour",49.595001,2.40694,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510570,1,"Centre",49.66638,2.324721,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510575,1,"Centre",49.61305,2.45222,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510612,1,"Carrefour",49.648049,2.41861,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510632,1,"Centre",49.591526,2.7742,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510657,1,"Mairie",49.639167,2.430852,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510715,1,"Saint-Maur",49.52333,2.69333,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510820,1,"Eglise",49.63222,2.29444,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510824,1,"Perennes",49.624053,2.499709,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510827,1,"Centre",49.470829,2.49472,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510829,1,"Eglise",49.458611,2.566111,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510830,1,"Centre",49.481231,2.577824,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510831,1,"Sucrerie",49.49027,2.567015,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510833,1,"Mairie",49.495335,2.531569,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510834,1,"Centre",49.48638,2.50138,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510837,1,"Rue du 8 Mai 1945",49.514283,2.497857,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510838,1,"Mairie",49.512059,2.45637,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510839,1,"Rue Henri Morel",49.573379,2.47234,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510841,1,"Centre",49.55042,2.426241,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510847,1,"Centre",49.521567,2.604628,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510849,1,"Mairie-Ecole",49.52222,2.56916,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510851,1,"Ecole",49.554441,2.55416,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510855,1,"Mairie",49.59861,2.602499,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510856,1,"Grande rue",49.585,2.583609,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510857,1,"Moulin Grevin",49.579921,2.583896,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510859,1,"Gare",49.56194,2.58166,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510860,1,"Fumechon",49.521365,2.367829,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510864,1,"Mairie",49.499295,2.372008,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510867,1,"Quennevières",49.473882,3.051687,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510868,1,"Centre",49.45583,3.071381,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510869,1,"L'Arbre de Bitry",49.431012,3.069187,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510870,1,"Ecole",49.424439,3.07638,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510871,1,"La Treille",49.412482,3.046108,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510872,1,"Ecole",49.409052,3.051283,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510873,1,"Rue des Cytises",49.414412,3.03556,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510874,1,"Eglise",49.412807,3.078661,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510876,1,"Centre",49.433879,2.97944,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510877,1,"Ferme de Moranval",49.447758,3.03082,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510878,1,"Ecole",49.417093,2.941882,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510879,1,"Rue de Verdun",49.415947,2.942943,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510882,1,"Hangest",49.487866,2.98895,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510884,1,"Ecole",49.414441,3.007219,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510886,1,"mairie",49.386013,3.042288,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510887,1,"Roilaye Ecole",49.367221,3.019747,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510888,1,"Martimont",49.367501,3.028906,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510889,1,"Place",49.35416,3.033611,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510891,1,"Saint Etienne",49.352501,3.017796,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510892,1,"Potingron",49.377779,3.094762,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510893,1,"Centre",49.385551,3.090028,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510894,1,"Centre",49.396941,3.06388,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510895,1,"Maison Blanche",49.39805,3.046137,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510896,1,"Palesne",49.331112,2.954186,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510897,1,"Mairie",49.347219,2.9775,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510898,1,"Genancourt",49.378051,3.009746,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510899,1,"Pont Chevalier",49.396941,3.004467,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510902,1,"Ecoles",49.39972,2.977769,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510903,1,"Breuil",49.401379,2.98805,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510905,1,"Vertefeuille",49.344719,2.96833,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510906,1,"Gare",49.338063,2.682524,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510908,1,"Rue de Compiegne",49.346962,2.695349,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510909,1,"La montagne",49.402501,2.70444,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510910,1,"Centre",49.385831,2.708049,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510914,1,"Centre",49.38166,2.579161,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510915,1,"Centre",49.49111,2.633881,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510916,1,"Beaupuits",49.470554,2.607794,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510917,1,"Scolaire WARNAVILLERS",49.465975,2.6429,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510919,1,"Rue de Beauvais",49.346167,2.673372,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510921,1,"R. de Chevrières",49.365894,2.660695,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510922,1,"Mairie",49.371484,2.653027,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510926,1,"Ecole",49.447771,2.6775,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510929,1,"Ecole maternelle",49.360869,2.630226,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510930,1,"Rue de Sacy",49.365283,2.648633,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510933,1,"Ecole",49.40139,2.679171,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510934,1,"Centre",49.414639,2.649782,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510935,1,"Mairie",49.416379,2.57833,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510936,1,"Eraine",49.431383,2.585854,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510937,1,"La Patinerie",49.4232,2.718164,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510939,1,"La Mérault",49.440833,2.704465,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510941,1,"Centre",49.57666,2.70722,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510942,1,"Centre",49.492368,2.675311,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510944,1,"RN17",49.342096,2.60621,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510948,1,"Collège",49.428884,2.642524,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510950,1,"Centre",49.451939,2.60833,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510951,1,"Bellevue",49.472828,2.663601,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510955,1,"Place",49.64492,2.958688,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510958,1,"Centre",49.69278,2.97333,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510961,1,"Scolaire BOIS BONNARD",49.681674,3.058087,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510962,1,"Chemin de Berlancourt",49.64083,3.105,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510963,1,"Ferme Etang de Bœuf",49.644732,3.091421,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510965,1,"Centre",49.63361,3.05889,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510967,1,"Centre",49.707458,3.064062,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510968,1,"Centre",49.684721,3.043611,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510970,1,"Centre",49.670561,3.00389,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510973,1,"Rue des Princelles",49.689172,3.10722,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510974,1,"Centre",49.671114,3.065308,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510975,1,"Collezy",49.680004,3.090857,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510980,1,"La Marlière",49.622122,2.968143,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510983,1,"Centre",49.644719,3.010559,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510984,1,"Centre",49.62525,2.983072,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510987,1,"Ecole",49.670281,3.00333,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510991,1,"LP JC Athanase PELTIER",49.75119,3.078167,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510992,1,"Collège",49.582921,2.836883,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510993,1,"Belval",49.563885,2.836686,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510994,1,"Petit Bocage",49.559467,2.839602,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510995,1,"Petit Bocage",49.5613,2.837306,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510998,1,"Scolaire EPINOY",49.563912,2.916263,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22510999,1,"Ecole",49.56777,2.906661,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511000,1,"Centre",49.55694,2.904721,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511001,1,"Place",49.57777,2.830831,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511002,1,"Mairie",49.56944,2.79944,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511003,1,"Centre",49.602781,2.800829,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511006,1,"La Potière",49.614725,2.857527,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511007,1,"Centre",49.627496,2.896383,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511008,1,"Fresnières",49.619719,2.81083,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511011,1,"Plémont",49.577432,2.860586,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511016,1,"Centre",49.6125,2.912861,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511017,1,"Chemin de Rozel",49.616113,2.920306,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511018,1,"Centre",49.649646,2.920573,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511019,1,"Centre",49.659202,2.913027,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511020,1,"Centre",49.692222,2.915284,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511021,1,"Centre",49.698891,2.87972,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511024,1,"Epinoy",49.563894,2.916263,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511025,1,"Centre",49.674209,2.867668,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511026,1,"Centre",49.65611,2.861111,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511027,1,"centre",49.56551,2.883553,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511028,1,"Centre",49.588611,2.88694,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511033,1,"MONTPLAISIR",49.405164,2.745149,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511034,1,"Aiguisy",49.416663,2.748074,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511043,1,"Rue Placide Navarré",49.589749,2.515681,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511046,1,"Rue des lilas",49.594999,2.601659,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511048,1,"Grande rue",49.559846,2.588895,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511049,1,"Place",49.594263,2.535662,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511050,1,"Abbémont",49.616929,2.507856,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511052,1,"Route de Royaucourt",49.60371,2.552158,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511053,1,"Mairie - Ecole",49.588423,2.552618,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511055,1,"Scolaire DOMELIEN",49.609402,2.553398,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511059,1,"Rd 117 - Abri",49.52722,2.44,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511062,1,"Catillon",49.518329,2.367769,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511064,1,"Port Salut",49.312503,2.723353,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511067,1,"Bois d'Ageux",49.325727,2.719228,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511068,1,"La Gare",49.342223,2.718634,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511070,1,"Rucourt",49.365553,2.713074,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511071,1,"Mairie",49.357057,2.718017,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511072,1,"Les Ruminées",49.325894,2.717718,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511076,1,"Collège",49.538854,2.752108,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511079,1,"Ecole",49.57861,2.70555,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511081,1,"Monument aux Morts",49.603669,2.72671,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511084,1,"Centre",49.521381,2.777771,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511087,1,"Centre",49.500551,2.77583,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511088,1,"Centre",49.525269,2.816379,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511090,1,"Centre",49.555549,2.75666,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511092,1,"Centre",49.539721,2.74472,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511095,1,"Centre",49.44639,2.662779,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511096,1,"rue Vaubrun",49.469999,2.75527,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511097,1,"Eglise",49.46333,2.75166,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511099,1,"RN17",49.554524,2.700994,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511101,1,"Centre",49.592771,2.681941,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511102,1,"Rue Vaubrun",49.470003,2.755295,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511104,1,"Rue de Braisnes",49.470275,2.757246,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511105,1,"Ferme de Loges",49.496944,2.739185,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511107,1,"Jeu d'arc",49.512771,2.793051,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511108,1,"Gare",49.515632,2.760818,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511109,1,"La Motte",49.557775,2.787526,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511115,1,"Monument",49.55361,2.693331,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511116,1,"Sorel",49.568051,2.707219,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511119,1,"Ferme de Portes",49.501115,2.721135,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511120,1,"Ecole",49.491312,2.673428,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511121,1,"Centre",49.496986,2.661882,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511127,1,"Rue H.Béranger",49.415271,3.008636,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511129,1,"Centre",49.513708,3.024665,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511130,1,"R. des Pâquerettes",49.515273,3.011687,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511131,1,"Collège",49.480585,2.875222,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511137,1,"Mairie",49.480819,2.953926,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511140,1,"La Sablonnière",49.492054,3.009895,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511143,1,"Ourscamp",49.530271,2.97361,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511145,1,"Collège de MARLY",49.507905,2.923983,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511149,1,"Ecole",49.545549,2.950271,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511152,1,"Ecole",49.507771,2.82555,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511164,1,"Centre",49.47972,2.90055,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511168,1,"Rue des Ecoles",49.468329,2.86333,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511171,1,"Rue des barres",49.466265,2.813776,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511172,1,"Rue Copeau",49.471032,2.818975,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511173,1,"Annel",49.461256,2.841773,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511182,1,"La Gloriette",49.470549,2.3925,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511183,1,"Centre",49.483329,2.43666,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511184,1,"Lotissement",49.475559,2.43128,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511186,1,"Rue Machot",49.568773,2.42108,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511189,1,"Rue vert galout",49.440269,2.53777,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511190,1,"Centre",49.448051,2.50222,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511191,1,"RD127",49.4525,2.473051,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511192,1,"Centre",49.45861,2.478609,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511194,1,"Collège",49.502499,2.425831,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511195,1,"Compere MOREL",49.635001,2.29888,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511198,1,"Grande rue",49.54916,2.36388,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511200,1,"Agora",49.5425,2.357501,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511201,1,"Rue de la Gare",49.571545,2.436912,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511202,1,"college guiscard",49.652148,3.056409,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511203,1,"centre",49.549167,2.451956,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511204,1,"college andre malraux",49.398565,2.796547,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511205,1,"RN31",49.402494,2.968401,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511206,1,"mairie",49.342885,2.640903,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511207,1,"mairie",49.470262,2.428582,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511208,1,"mairie",49.561729,2.585769,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511209,1,"rue galant",49.413057,2.992158,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511210,1,"ecole",49.414599,3.007419,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511211,1,"rue du rinn",49.413926,3.008911,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511212,1,"jeu d'arc",49.399073,2.964546,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511214,1,"mairie",49.508076,2.825517,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511216,1,"rue de l'église",49.585427,2.903949,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511217,1,"rue de nesles",49.672583,3.005744,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511218,1,"rue poulin",49.621284,3.019892,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511220,1,"rue du marechal leclerc",49.522093,2.819925,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511223,1,"place",49.510978,2.924203,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511224,1,"vaumont",49.530254,2.559922,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511225,1,"eglise",49.414503,3.005339,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511226,1,"rue faroux",49.410112,3.053413,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511227,1,"calvaire",49.405916,3.140552,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511228,1,"roche",49.406865,3.159552,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511229,1,"vaux",49.407699,3.167729,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511230,1,"port",49.408391,3.183132,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511231,1,"courtil",49.394162,3.249417,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511235,1,"centre",49.610388,2.527432,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511237,1,"mairie",49.514168,2.503347,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511238,1,"8 mai 1945",49.5145,2.497361,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511241,1,"centre",49.525511,2.816494,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511244,1,"mare",49.549309,2.363842,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511245,1,"place",49.539248,2.744424,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511246,1,"rue pasteur",49.580181,2.948398,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511247,1,"rue de montididier",49.583761,2.941961,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511252,1,"centre",49.512059,2.45637,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511253,1,"lotissement",49.475782,2.547237,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511254,1,"bois bonnard",49.658583,3.099691,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511256,1,"centre",49.601752,2.725106,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511257,1,"Puisalène",49.515489,3.01161,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511258,1,"Général De Gaulle",49.494002,3.011644,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511259,1,"Saint Jean",49.47193,3.008859,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511260,1,"Vénizieux",49.477988,3.011323,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511261,1,"Flandres",49.488623,2.959618,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511262,1,"rue Charles Caille centre",49.480383,2.899809,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511263,1,"école",49.463417,2.889741,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511265,1,"Saint Pierre",49.300657,2.65299,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511266,1,"mairie",49.633711,2.295468,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511267,1,"Haut",49.468699,2.820593,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511270,1,"la plaine",49.559997,2.850466,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511271,1,"lotissement",49.583058,2.967067,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511273,1,"lotissement",49.585885,2.917341,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511274,1,"centre",49.470838,2.549271,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511275,1,"mairie",49.49907,2.373029,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511276,1,"abbaye",49.534913,2.97096,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511277,1,"Beaumanoir",49.302077,2.608514,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511281,1,"Proméo Venette",49.412166,2.772245,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511282,1,"Grandes Beines",49.676422,3.112012,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511283,1,"grand place",49.383662,3.327613,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511284,1,"la ruellette",49.331226,2.724465,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511286,1,"rue Maurice Choron",49.298586,2.808017,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511287,1,"église",49.302896,2.810983,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511288,1,"centre",49.497554,2.873037,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511289,1,"place de la fontaine",49.500933,2.870645,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511290,1,"centre",49.519741,3.068124,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511291,1,"boulangerie",49.513644,3.024885,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511292,1,"fonds de roye",49.596665,2.758271,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511293,1,"rue du mont berny",49.352021,2.982633,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511295,1,"Joffre",49.305789,2.770506,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511296,1,"Autoroute A1 Paris-Oise",49.321392,2.697495,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511297,1,"lycée pro",49.507905,2.923983,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511298,1,"centre",49.283053,3.028887,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511299,1,"Eglise",49.36,2.629506,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511300,1,"Mairie",49.306244,2.768793,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511304,1,"Rue du lavoir",49.290074,2.879266,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511306,1,"Ferme St Julien",49.411088,2.602207,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511307,1,"cimetière Rue de Compiègne",49.430903,2.644083,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511309,1,"rue de Bailly",49.501621,2.93473,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511310,1,"Rue St Hilaire",49.456866,2.816913,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511311,1,"Le Berval",49.271662,2.963061,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511312,1,"25 Rue de la République",49.34447,2.609137,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511313,1,"Lamotte",49.356913,2.540164,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511314,1,"Rue Charles Weber",49.412455,3.046163,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511316,1,"La Grenouille",49.511603,2.830655,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511317,1,"Institution Guynemer",49.408614,2.842219,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511318,1,"rue de Montgérain",49.551149,2.557777,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511319,1,"Ecole Le Moulin",49.505555,2.426121,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511323,1,"Centre",49.295848,2.91834,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511331,1,"Rue T Boullenger",49.426192,2.638862,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511336,1,"Touvent",49.452681,3.065886,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511344,1,"Trois Etots",49.448557,2.535801,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511350,1,"Rue Chambèrie",49.568254,3.028257,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511351,1,"Rue des 14 Mines du Roy",49.490956,2.627923,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511353,1,"Rue de Flandres",49.615901,2.729526,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511354,1,"La Forge",49.476522,2.788272,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511356,1,"Grande Rue",49.308629,2.690549,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511360,1,"Collège RN31",49.401464,3.017269,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511361,1,"101 rue Principale",49.671716,3.070108,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511368,1,"Vaux-Rue des Marronniers",49.601043,2.60966,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511369,1,"Mairie",49.568296,2.625642,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511370,1,"Mairie",49.564368,3.059952,,1,,Europe/Paris,,ODV, +ODV:SA:CTP22511372,1,"Bailly rue du Grand Ferré",49.351005,2.719953,,1,,Europe/Paris,,ODV, +OEL:SA:CTP2080002,1,"Avenue Reims (Lycées)",49.19168,2.571678,,1,,Europe/Paris,,OEL, +OEL:SA:CTP2080006,1,"Bigüe",49.199938,2.592078,,1,,Europe/Paris,,OEL, +OEL:SA:CTP2080007,1,"Bordeaux-Odent",49.205066,2.587684,,1,,Europe/Paris,,OEL, +OEL:SA:CTP2080009,1,"Calvaire de Villevert",49.213249,2.579047,,1,,Europe/Paris,,OEL, +OEL:SA:CTP2080012,1,"Chapelle",49.211531,2.599267,,1,,Europe/Paris,,OEL, +OEL:SA:CTP2080013,1,"Chaussée Pontpoint",49.217312,2.594447,,1,,Europe/Paris,,OEL, +OEL:SA:CTP2080014,1,"Chevreuils",49.194347,2.567587,,1,,Europe/Paris,,OEL, +OEL:SA:CTP2080015,1,"Cité Judiciaire",49.208346,2.582306,,1,,Europe/Paris,,OEL, +OEL:SA:CTP2080016,1,"Collège Fontaine des Prés",49.213722,2.577037,,1,,Europe/Paris,,OEL, +OEL:SA:CTP2080017,1,"Debussy",49.205458,2.565869,,1,,Europe/Paris,,OEL, +OEL:SA:CTP2080018,1,"Eugène Gazeau",49.206449,2.599469,,1,,Europe/Paris,,OEL, +OEL:SA:CTP2080020,1,"Fours à chaux",49.197353,2.582042,,1,,Europe/Paris,,OEL, +OEL:SA:CTP2080024,1,"Les Hauts Bois",49.196109,2.577479,,1,,Europe/Paris,,OEL, +OEL:SA:CTP2080025,1,"Hôpital",49.195989,2.574773,,1,,Europe/Paris,,OEL, +OEL:SA:CTP2080026,1,"Hôtel Dieu des Marais",49.19782,2.567646,,1,,Europe/Paris,,OEL, +OEL:SA:CTP2080028,1,"Jardiniers",49.199148,2.586471,,1,,Europe/Paris,,OEL, +OEL:SA:CTP2080029,1,"La Harde",49.19577,2.567223,,1,,Europe/Paris,,OEL, +OEL:SA:CTP2080031,1,"Malgenest",49.210796,2.602558,,1,,Europe/Paris,,OEL, +OEL:SA:CTP2080036,1,"Orion",49.205788,2.569693,,1,,Europe/Paris,,OEL, +OEL:SA:CTP2080037,1,"Paul Rougé",49.196338,2.571672,,1,,Europe/Paris,,OEL, +OEL:SA:CTP2080040,1,"Square du Haras",49.197949,2.571679,,1,,Europe/Paris,,OEL, +OEL:SA:CTP2080042,1,"Tour de ville / grand Cerf",49.206776,2.589852,,1,,Europe/Paris,,OEL, +OEL:SA:CTP2080045,1,"Ecole Notre-Dame / Cinéma",49.208752,2.585495,,1,,Europe/Paris,,OEL, +OEL:SA:CTP2080046,1,"Valois",49.2087,2.599573,,1,,Europe/Paris,,OEL, +OEL:SA:CTP2080047,1,"Vieux Chemin de Pont",49.212166,2.584818,,1,,Europe/Paris,,OEL, +OEL:SA:CTP2085048,1,"Collège Albéric Magnard",49.20933,2.597103,,1,,Europe/Paris,,OEL, +OEL:SA:CTP2085049,1,"Brichebay",49.197295,2.570804,,1,,Europe/Paris,,OEL, +OEL:SA:CTP2085050,1,"Point du jour",49.202004,2.582688,,1,,Europe/Paris,,OEL, +OEL:SA:CTP2085052,1,"Mairie",49.205311,2.583521,,1,,Europe/Paris,,OEL, +OEL:SA:CTP2085053,1,"Cathédrale / Office de tourisme",49.207162,2.585326,,1,,Europe/Paris,,OEL, +OEL:SA:CTP2085055,1,"Etienne Audibert",49.204355,2.600779,,1,,Europe/Paris,,OEL, +OEL:SA:CTP2085056,1,"Félix Louat",49.203531,2.606684,,1,,Europe/Paris,,OEL, +OEL:SA:CTP2085057,1,"Complexe sportif des Trois Arches",49.207601,2.60575,,1,,Europe/Paris,,OEL, +OEL:SA:CTP2085059,1,"Zone commerciale Villevert",49.221094,2.590113,,1,,Europe/Paris,,OEL, +OEL:SA:CTP2085060,1,"Bibliothèque",49.206201,2.587555,,1,,Europe/Paris,,OEL, +OEL:SA:CTP2085061,1,"Ecole Séraphine Louis",49.206256,2.581714,,1,,Europe/Paris,,OEL, +OEL:SA:CTP2085062,1,"Fontaine des Arènes",49.202999,2.569986,,1,,Europe/Paris,,OEL, +OEL:SA:CTP2085063,1,"Moulin Saint Tron",49.212852,2.588387,,1,,Europe/Paris,,OEL, +OEL:SA:CTP2085064,1,"Joffre",49.209436,2.588538,,1,,Europe/Paris,,OEL, +OEL:SA:CTP2085065,1,"Val d'Aunette",49.204647,2.570498,,1,,Europe/Paris,,OEL, +OEL:SA:CTP2085068,1,"Carnot",49.212969,2.591684,,1,,Europe/Paris,,OEL, +OEL:SA:CTP2085070,1,"Avenue des Closeaux",49.199078,2.578723,,1,,Europe/Paris,,OEL, +OEL:SA:CTP2085071,1,"Saint-Lazare",49.195463,2.577982,,1,,Europe/Paris,,OEL, +OEL:SA:CTP2085072,1,"Avenue de la Nonette",49.198627,2.574333,,1,,Europe/Paris,,OEL, +OEL:SA:CTP2085076,1,"Chaussée Brunehaut",49.207152,2.597829,,1,,Europe/Paris,,OEL, +OEL:SA:CTP2085077,1,"Dupré",49.20556,2.56906,,1,,Europe/Paris,,OEL, +OEL:SA:CTP2085078,1,"Albert Premier",49.20334,2.59583,,1,,Europe/Paris,,OEL, +OEL:SA:CTP2085079,1,"Foch",49.210738,2.59401,,1,,Europe/Paris,,OEL, +OEL:SA:CTP2085080,1,"Les jardins",49.200839,2.569652,,1,,Europe/Paris,,OEL, +OEL:SA:CTP2085081,1,"Thomas Couture",49.208486,2.58828,,1,,Europe/Paris,,OEL, +OGB:SA:CTPAIGUILL1,1,"Aiguille",47.240772,6.038847,,1,,Europe/Paris,,OGB, +OGB:SA:CTPAMITIE1,1,"Amitié",47.23254,5.983451,,1,,Europe/Paris,,OGB, +OGB:SA:CTPAMPERE3,1,"Ampère",47.23662,5.988662,,1,,Europe/Paris,,OGB, +OGB:SA:CTPARAGO1,1,"Campus Arago",47.250774,5.986032,,1,,Europe/Paris,,OGB, +OGB:SA:CTPATEMUNI1,1,"Ateliers Municipaux",47.236294,5.995376,,1,,Europe/Paris,,OGB, +OGB:SA:CTPBACCHUS2,1,"Bacchus",47.24262,6.021227,,1,,Europe/Paris,,OGB, +OGB:SA:CTPBAILLE1,1,"Baille",47.251816,6.035539,,1,,Europe/Paris,,OGB, +OGB:SA:CTPBASC2,1,"Bascule",47.230316,5.993398,,1,,Europe/Paris,,OGB, +OGB:SA:CTPBASILIQ2,1,"Basilique",47.23322,5.989165,,1,,Europe/Paris,,OGB, +OGB:SA:CTPBAVEREZ1,1,"Baverez",47.24202,5.978793,,1,,Europe/Paris,,OGB, +OGB:SA:CTPBEARN2,1,"Béarn",47.216717,5.963327,,1,,Europe/Paris,,OGB, +OGB:SA:CTPBEAUART1,1,"Beaux Arts",47.243366,5.98809,,1,,Europe/Paris,,OGB, +OGB:SA:CTPBEAUQUI2,1,"Beauquier",47.252857,6.014761,,1,,Europe/Paris,,OGB, +OGB:SA:CTPBELFORT1,1,"Belfort",47.256645,6.042124,,1,,Europe/Paris,,OGB, +OGB:SA:CTPBELIN2,1,"Belin",47.22512,5.965313,,1,,Europe/Paris,,OGB, +OGB:SA:CTPBELVEDE1,1,"Belvédère",47.250763,6.026815,,1,,Europe/Paris,,OGB, +OGB:SA:CTPBIBLIOU2,1,"Bibliothèques Univ.",47.246677,5.987565,,1,,Europe/Paris,,OGB, +OGB:SA:CTPBLPASCA2,1,"Blaise Pascal",47.216377,5.977516,,1,,Europe/Paris,,OGB, +OGB:SA:CTPBLUM2,1,"Blum",47.258327,6.023718,,1,,Europe/Paris,,OGB, +OGB:SA:CTPBOISPAU2,1,"Bois St Paul",47.251442,6.058323,,1,,Europe/Paris,,OGB, +OGB:SA:CTPBOUCONS1,1,"Montboucons",47.256145,5.994509,,1,,Europe/Paris,,OGB, +OGB:SA:CTPBQTSO01,1,"Bouquet de Soleils",47.26603,6.023893,,1,,Europe/Paris,,OGB, +OGB:SA:CTPBRABANT2,1,"Brabant",47.22349,5.968104,,1,,Europe/Paris,,OGB, +OGB:SA:CTPBREGILLE,1,"Bregille",47.243404,6.052358,,1,,Europe/Paris,,OGB, +OGB:SA:CTPBREME1,1,"Brême",47.24819,6.057385,,1,,Europe/Paris,,OGB, +OGB:SA:CTPBROGRET1,1,"Brossolette Greta",47.24895,6.003371,,1,,Europe/Paris,,OGB, +OGB:SA:CTPBRUYERE1,1,"Bruyères",47.256477,6.024817,,1,,Europe/Paris,,OGB, +OGB:SA:CTPBUFFON2,1,"Buffon",47.25524,6.018697,,1,,Europe/Paris,,OGB, +OGB:SA:CTPCANALTA1,1,"Canal Tarragnoz",47.22994,6.030121,,1,,Europe/Paris,,OGB, +OGB:SA:CTPCARMES1,1,"Carmes",47.236267,6.026047,,1,,Europe/Paris,,OGB, +OGB:SA:CTPCARRIER1,1,"Carrière",47.263653,6.027452,,1,,Europe/Paris,,OGB, +OGB:SA:CTPCASERNE1,1,"Casernes",47.23705,6.004314,,1,,Europe/Paris,,OGB, +OGB:SA:CTPCASSIN2,1,"Cassin",47.2192,5.969551,,1,,Europe/Paris,,OGB, +OGB:SA:CTPCENSTPI1,1,"Centre St Pierre",47.240437,6.028455,,1,,Europe/Paris,,OGB, +OGB:SA:CTPCENTCOM1,1,"Espace Commercial",47.281887,5.992286,,1,,Europe/Paris,,OGB, +OGB:SA:CTPCENTTRI1,1,"Centre de Tri",47.2363,5.998355,,1,,Europe/Paris,,OGB, +OGB:SA:CTPCEPARGN2,1,"Caisse d'Epargne",47.222897,6.013568,,1,,Europe/Paris,,OGB, +OGB:SA:CTPCFRANCA1,1,"Chemin Français",47.249626,6.020716,,1,,Europe/Paris,,OGB, +OGB:SA:CTPCHAFFAN1,1,"Chaffanjon",47.2461,6.047886,,1,,Europe/Paris,,OGB, +OGB:SA:CTPCHAILLE1,1,"Chaille",47.237568,5.976289,,1,,Europe/Paris,,OGB, +OGB:SA:CTPCHAMPET1,1,"Champêtre",47.274097,6.003043,,1,,Europe/Paris,,OGB, +OGB:SA:CTPCHANOIS1,1,"Chanois",47.2487,6.027008,,1,,Europe/Paris,,OGB, +OGB:SA:CTPCHARDON2,1,"Chardonnet",47.231052,6.039756,,1,,Europe/Paris,,OGB, +OGB:SA:CTPCHARIGN1,1,"Charigney",47.261307,6.048596,,1,,Europe/Paris,,OGB, +OGB:SA:CTPCHARMAR2,1,"Charmarin",47.228275,6.050047,,1,,Europe/Paris,,OGB, +OGB:SA:CTPCHARMIL2,1,"Charmilles",47.25533,6.013961,,1,,Europe/Paris,,OGB, +OGB:SA:CTPCHASNOT1,1,"Chasnot",47.252148,6.026228,,1,,Europe/Paris,,OGB, +OGB:SA:CTPCHATEAU1,1,"Châteaufarine",47.215794,5.949156,,1,,Europe/Paris,,OGB, +OGB:SA:CTPCHAUDAN1,1,"Chaudanne",47.2304,6.014409,,1,,Europe/Paris,,OGB, +OGB:SA:CTPCHEFOUN1,1,"Chemin des Founottes",47.258205,6.006947,,1,,Europe/Paris,,OGB, +OGB:SA:CTPCHEMPAL2,1,"Chemin de Palente",47.268967,6.04736,,1,,Europe/Paris,,OGB, +OGB:SA:CTPCHEMVEL2,1,"Chemin de Velotte",47.220257,6.016269,,1,,Europe/Paris,,OGB, +OGB:SA:CTPCHEPLAN2,1,"Chemin des Planches",47.267063,6.037428,,1,,Europe/Paris,,OGB, +OGB:SA:CTPCHESELL1,1,"Chemin de la Selle",47.26913,6.028084,,1,,Europe/Paris,,OGB, +OGB:SA:CTPCHEVREU1,1,"Chevreuse",47.28684,5.992957,,1,,Europe/Paris,,OGB, +OGB:SA:CTPCHNODIER,1,"Nodier",47.233276,6.022916,,1,,Europe/Paris,,OGB, +OGB:SA:CTPCHOPIN1,1,"Chopin",47.26223,6.039651,,1,,Europe/Paris,,OGB, +OGB:SA:CTPCHURCHI2,1,"Churchill",47.25109,6.009383,,1,,Europe/Paris,,OGB, +OGB:SA:CTPCHVALEN1,1,"Chemin de Valentin",47.27074,6.007254,,1,,Europe/Paris,,OGB, +OGB:SA:CTPCIMAVAN1,1,"Cimetière d'Avanne",47.20509,5.965302,,1,,Europe/Paris,,OGB, +OGB:SA:CTPCIMCLA1,1,"Cimetière St Claude",47.26145,6.019935,,1,,Europe/Paris,,OGB, +OGB:SA:CTPCITAR02,1,"Cité des Arts",47.236073,6.033217,,1,,Europe/Paris,,OGB, +OGB:SA:CTPCITBAUM1,1,"Cité de la Baume",47.245937,5.997644,,1,,Europe/Paris,,OGB, +OGB:SA:CTPCITY1,1,"La City",47.234848,6.015483,,1,,Europe/Paris,,OGB, +OGB:SA:CTPCLAIRSO1,1,"Clairs Soleils",47.24992,6.058834,,1,,Europe/Paris,,OGB, +OGB:SA:CTPCLEMENC1,1,"Clemenceau",47.24133,6.01423,,1,,Europe/Paris,,OGB, +OGB:SA:CTPCOLCAM1,1,"Collège Camus",47.258923,6.010331,,1,,Europe/Paris,,OGB, +OGB:SA:CTPCOLOMBO1,1,"Colombot",47.24508,6.045645,,1,,Europe/Paris,,OGB, +OGB:SA:CTPCOLPROU2,1,"Collège Proudhon",47.2671,6.04713,,1,,Europe/Paris,,OGB, +OGB:SA:CTPCOLSENE1,1,"Colsenet",47.250854,6.022293,,1,,Europe/Paris,,OGB, +OGB:SA:CTPCONCORD2,1,"Concorde",47.229233,5.989507,,1,,Europe/Paris,,OGB, +OGB:SA:CTPCORVEE2,1,"Corvée",47.25932,6.043778,,1,,Europe/Paris,,OGB, +OGB:SA:CTPCOURBET1,1,"Courbet",47.240883,6.025303,,1,,Europe/Paris,,OGB, +OGB:SA:CTPCOURTIL2,1,"Courtils",47.265015,6.046069,,1,,Europe/Paris,,OGB, +OGB:SA:CTPCRASROU2,1,"Cras Rougeot",47.216785,6.003529,,1,,Europe/Paris,,OGB, +OGB:SA:CTPCROIXAR2,1,"Croix d'Arènes",47.235172,6.012653,,1,,Europe/Paris,,OGB, +OGB:SA:CTPCROIZ01,1,"Croizat",47.221615,5.959959,,1,,Europe/Paris,,OGB, +OGB:SA:CTPCROUUNI2,1,"Crous Université",47.24853,5.98644,,1,,Europe/Paris,,OGB, +OGB:SA:CTPCULPRES2,1,"Cul des Prés",47.269806,6.042978,,1,,Europe/Paris,,OGB, +OGB:SA:CTPCVIOTTE1,1,"Cité Viotte",47.25211,6.022685,,1,,Europe/Paris,,OGB, +OGB:SA:CTPDANTON1,1,"Danton",47.243538,6.049076,,1,,Europe/Paris,,OGB, +OGB:SA:CTPDAVID1,1,"David",47.23722,6.00638,,1,,Europe/Paris,,OGB, +OGB:SA:CTPDEBUSSY2,1,"Debussy",47.258698,6.038877,,1,,Europe/Paris,,OGB, +OGB:SA:CTPDEMAN1,1,"Demangel",47.24433,6.011668,,1,,Europe/Paris,,OGB, +OGB:SA:CTPDENROCH1,1,"Denfert Rochereau",47.243217,6.026273,,1,,Europe/Paris,,OGB, +OGB:SA:CTPDEVIGNY2,1,"De Vigny",47.215397,5.961896,,1,,Europe/Paris,,OGB, +OGB:SA:CTPDEVILLE1,1,"Deville",47.247513,6.006425,,1,,Europe/Paris,,OGB, +OGB:SA:CTPDIDEROT1,1,"Diderot",47.24245,6.033733,,1,,Europe/Paris,,OGB, +OGB:SA:CTPDOLTO01,1,"Dolto",47.2231,5.960158,,1,,Europe/Paris,,OGB, +OGB:SA:CTPDONZELO1,1,"Donzelot",47.249332,6.051472,,1,,Europe/Paris,,OGB, +OGB:SA:CTPDUCHAIL1,1,"Duchaillut",47.25307,6.03025,,1,,Europe/Paris,,OGB, +OGB:SA:CTPDUET1,1,"Duet",47.248276,6.043374,,1,,Europe/Paris,,OGB, +OGB:SA:CTPECHVALE1,1,"Echangeur de Valentin",47.278015,5.993835,,1,,Europe/Paris,,OGB, +OGB:SA:CTPECOLE4V2,1,"Ecole des 4 vents",47.26349,6.032386,,1,,Europe/Paris,,OGB, +OGB:SA:CTPECOLETO1,1,"Ecole des Torcols",47.269123,6.008686,,1,,Europe/Paris,,OGB, +OGB:SA:CTPEDISON2,1,"Edison",47.23418,5.978369,,1,,Europe/Paris,,OGB, +OGB:SA:CTPEINSTEI1,1,"Einstein",47.225483,5.972034,,1,,Europe/Paris,,OGB, +OGB:SA:CTPENSMM1,1,"ENSMM",47.249638,5.993191,,1,,Europe/Paris,,OGB, +OGB:SA:CTPENVELME1,1,"Envelmey",47.24672,6.054475,,1,,Europe/Paris,,OGB, +OGB:SA:CTPESAVOYE1,1,"Eugène Savoye",47.24947,6.02298,,1,,Europe/Paris,,OGB, +OGB:SA:CTPESCALE1,1,"Escale",47.258003,5.999158,,1,,Europe/Paris,,OGB, +OGB:SA:CTPESPERAN1,1,"Espérance",47.261852,6.027439,,1,,Europe/Paris,,OGB, +OGB:SA:CTPESPLAN1,1,"Esplanade",47.23478,6.020848,,1,,Europe/Paris,,OGB, +OGB:SA:CTPESSARTS1,1,"Essarts",47.268227,6.010089,,1,,Europe/Paris,,OGB, +OGB:SA:CTPFABRE1,1,"Fabre",47.239,6.039701,,1,,Europe/Paris,,OGB, +OGB:SA:CTPFANART1,1,"Fanart",47.24649,6.011555,,1,,Europe/Paris,,OGB, +OGB:SA:CTPFAUBTAR1,1,"Faubourg Tarragnoz",47.22884,6.031476,,1,,Europe/Paris,,OGB, +OGB:SA:CTPFCLERC1,1,"Francis Clerc",47.255135,6.023194,,1,,Europe/Paris,,OGB, +OGB:SA:CTPFLANDRE2,1,"Flandres",47.22443,5.97165,,1,,Europe/Paris,,OGB, +OGB:SA:CTPFLEMING2,1,"Fleming",47.23071,5.967651,,1,,Europe/Paris,,OGB, +OGB:SA:CTPFLSAUT01,1,"Feuilles d'Automne",47.263287,6.022851,,1,,Europe/Paris,,OGB, +OGB:SA:CTPFLUAGA1,1,"Fluttes Agasses",47.256897,6.028307,,1,,Europe/Paris,,OGB, +OGB:SA:CTPFONTEC1,1,"Fontaine Ecu",47.250153,6.009932,,1,,Europe/Paris,,OGB, +OGB:SA:CTPFONTENO1,1,"Fontenottes",47.23859,6.036258,,1,,Europe/Paris,,OGB, +OGB:SA:CTPFORTBRE1,1,"Fort de Bregille",47.240208,6.041531,,1,,Europe/Paris,,OGB, +OGB:SA:CTPFOUNOTTE,1,"Founottes",47.261044,5.995986,,1,,Europe/Paris,,OGB, +OGB:SA:CTPFOURIER1,1,"Fourier",47.251152,6.030501,,1,,Europe/Paris,,OGB, +OGB:SA:CTPFOYER1,1,"Foyer",47.249763,6.055562,,1,,Europe/Paris,,OGB, +OGB:SA:CTPFRANCE31,1,"France 3",47.231724,6.023316,,1,,Europe/Paris,,OGB, +OGB:SA:CTPFRESNEL2,1,"Fresnel",47.232803,5.973448,,1,,Europe/Paris,,OGB, +OGB:SA:CTPFUNICUL1,1,"Funiculaire",47.241306,6.034162,,1,,Europe/Paris,,OGB, +OGB:SA:CTPGACOGNE2,1,"Cité des Gacognes",47.228252,6.043988,,1,,Europe/Paris,,OGB, +OGB:SA:CTPGAIFFE1,1,"Gaiffe",47.24273,6.041277,,1,,Europe/Paris,,OGB, +OGB:SA:CTPGARNIER1,1,"Garnier",47.2157,5.967318,,1,,Europe/Paris,,OGB, +OGB:SA:CTPGAUGIN2,1,"Gauguin",47.21781,5.975967,,1,,Europe/Paris,,OGB, +OGB:SA:CTPGIBELOT2,1,"Gibelotte",47.242455,6.009687,,1,,Europe/Paris,,OGB, +OGB:SA:CTPGOUNOD1,1,"Gounod",47.261578,6.036547,,1,,Europe/Paris,,OGB, +OGB:SA:CTPGRANGES1,1,"Granges",47.23782,6.0264,,1,,Europe/Paris,,OGB, +OGB:SA:CTPGRANVEL1,1,"Granvelle",47.23531,6.0254,,1,,Europe/Paris,,OGB, +OGB:SA:CTPGRAY2,1,"Gray",47.242737,5.985607,,1,,Europe/Paris,,OGB, +OGB:SA:CTPGRDBUIS2,1,"Grand Buisson",47.267296,6.049666,,1,,Europe/Paris,,OGB, +OGB:SA:CTPGRDPRES2,1,"Grand Prés",47.20646,5.964688,,1,,Europe/Paris,,OGB, +OGB:SA:CTPGRENOT1,1,"Grenot",47.256027,6.016751,,1,,Europe/Paris,,OGB, +OGB:SA:CTPHBAIGUE1,1,"Henri Baigue",47.253494,6.025517,,1,,Europe/Paris,,OGB, +OGB:SA:CTPHEITZ1,1,"Heitz",47.24416,6.043637,,1,,Europe/Paris,,OGB, +OGB:SA:CTPHMAI1,1,"8 Mai",47.234844,6.018151,,1,,Europe/Paris,,OGB, +OGB:SA:CTPHUITSEP1,1,"8 Septembre",47.2378,6.024275,,1,,Europe/Paris,,OGB, +OGB:SA:CTPINTERMA1,1,"Intermarché",47.24769,5.999639,,1,,Europe/Paris,,OGB, +OGB:SA:CTPISENBAR2,1,"Isenbart",47.242767,6.025262,,1,,Europe/Paris,,OGB, +OGB:SA:CTPIUT2,1,"IUT",47.24731,5.99277,,1,,Europe/Paris,,OGB, +OGB:SA:CTPJACQUAR1,1,"Jacquard",47.23823,5.994144,,1,,Europe/Paris,,OGB, +OGB:SA:CTPJANVIER2,1,"Janvier",47.237698,6.015066,,1,,Europe/Paris,,OGB, +OGB:SA:CTPJEANCOR1,1,"Jean Cornet",47.23638,6.028897,,1,,Europe/Paris,,OGB, +OGB:SA:CTPJEANJAU2,1,"Jean Jaurès",47.232353,6.001019,,1,,Europe/Paris,,OGB, +OGB:SA:CTPJEANNET2,1,"Jeannettes",47.262196,6.047158,,1,,Europe/Paris,,OGB, +OGB:SA:CTPJOUCHOU2,1,"Jouchoux",47.23921,5.987526,,1,,Europe/Paris,,OGB, +OGB:SA:CTPJOURNAU2,1,"Journaux",47.219437,6.014093,,1,,Europe/Paris,,OGB, +OGB:SA:CTPJULEHAG2,1,"Lycée Jules Haag",47.239002,6.011634,,1,,Europe/Paris,,OGB, +OGB:SA:CTPJUSTICE2,1,"Justices",47.25436,6.01496,,1,,Europe/Paris,,OGB, +OGB:SA:CTPKENNEDY1,1,"Kennedy",47.2386,5.988867,,1,,Europe/Paris,,OGB, +OGB:SA:CTPKEPLER1,1,"Kepler",47.248245,5.997104,,1,,Europe/Paris,,OGB, +OGB:SA:CTPKOSMA1,1,"Kosma",47.236305,5.96637,,1,,Europe/Paris,,OGB, +OGB:SA:CTPLABUTTE2,1,"La Butte",47.234295,6.008565,,1,,Europe/Paris,,OGB, +OGB:SA:CTPLAFAYET2,1,"La Fayette",47.21211,5.971838,,1,,Europe/Paris,,OGB, +OGB:SA:CTPLANCHY2,1,"Lanchy",47.258602,6.02871,,1,,Europe/Paris,,OGB, +OGB:SA:CTPLANGUED1,1,"Languedoc",47.218864,5.965041,,1,,Europe/Paris,,OGB, +OGB:SA:CTPLARMET2,1,"Larmet",47.24926,6.020014,,1,,Europe/Paris,,OGB, +OGB:SA:CTPLAVOISI2,1,"Lavoisier",47.235043,5.98457,,1,,Europe/Paris,,OGB, +OGB:SA:CTPLEBEUF1,1,"Lebeuf",47.258564,6.044786,,1,,Europe/Paris,,OGB, +OGB:SA:CTPLECOURB1,1,"Lecourbe",47.23057,6.02812,,1,,Europe/Paris,,OGB, +OGB:SA:CTPLIBERTE4,1,"Liberté",47.247437,6.028415,,1,,Europe/Paris,,OGB, +OGB:SA:CTPLUMIERE2,1,"Lumière",47.250782,6.018365,,1,,Europe/Paris,,OGB, +OGB:SA:CTPLUXEMBO2,1,"Luxembourg",47.222607,5.966684,,1,,Europe/Paris,,OGB, +OGB:SA:CTPLYCEE2,1,"Lycée Pergaud",47.26349,6.044595,,1,,Europe/Paris,,OGB, +OGB:SA:CTPLYCLED2,1,"Lycée Ledoux",47.25351,6.001271,,1,,Europe/Paris,,OGB, +OGB:SA:CTPLYSPAUL1,1,"Lycée St Paul",47.245857,6.035329,,1,,Europe/Paris,,OGB, +OGB:SA:CTPMAGELLA1,1,"Magellan",47.24885,6.047121,,1,,Europe/Paris,,OGB, +OGB:SA:CTPMAIRIE1,1,"Mairie",47.23661,6.022457,,1,,Europe/Paris,,OGB, +OGB:SA:CTPMAISRET2,1,"Maison de Retraite",47.21227,5.963092,,1,,Europe/Paris,,OGB, +OGB:SA:CTPMALHERB2,1,"Malherbe",47.22128,6.014861,,1,,Europe/Paris,,OGB, +OGB:SA:CTPMARGUET1,1,"Grange Marguet",47.26165,6.031022,,1,,Europe/Paris,,OGB, +OGB:SA:CTPMARILOU1,1,"Marie Louise",47.248768,6.031517,,1,,Europe/Paris,,OGB, +OGB:SA:CTPMARMIER1,1,"Marmier",47.239433,6.005342,,1,,Europe/Paris,,OGB, +OGB:SA:CTPMAROT2,1,"Marot",47.21816,5.957604,,1,,Europe/Paris,,OGB, +OGB:SA:CTPMATY1,1,"Maty",47.239918,5.993682,,1,,Europe/Paris,,OGB, +OGB:SA:CTPMERCATO1,1,"Mercator",47.259598,5.997477,,1,,Europe/Paris,,OGB, +OGB:SA:CTPMERMOZ1,1,"Mermoz",47.247368,6.037446,,1,,Europe/Paris,,OGB, +OGB:SA:CTPMESLIER1,1,"Meslier",47.23138,5.991965,,1,,Europe/Paris,,OGB, +OGB:SA:CTPMETIN1,1,"Métin",47.246235,6.00878,,1,,Europe/Paris,,OGB, +OGB:SA:CTPMIDOL2,1,"Midol",47.24695,6.019811,,1,,Europe/Paris,,OGB, +OGB:SA:CTPMILLERE2,1,"Milleret",47.22322,5.956058,,1,,Europe/Paris,,OGB, +OGB:SA:CTPMIRABEA1,1,"Mirabeau",47.245792,6.051734,,1,,Europe/Paris,,OGB, +OGB:SA:CTPMOINGEO2,1,"Résidence Moingeon",47.22452,6.011673,,1,,Europe/Paris,,OGB, +OGB:SA:CTPMONTARMO,1,"Montarmots",47.272675,6.030375,,1,,Europe/Paris,,OGB, +OGB:SA:CTPMUTUALI2,1,"Mutualité",47.257523,6.036479,,1,,Europe/Paris,,OGB, +OGB:SA:CTPNBRUAND2,1,"Nicolas Bruand",47.25145,6.025613,,1,,Europe/Paris,,OGB, +OGB:SA:CTPNOTDAME2,1,"Notre Dame",47.2501,6.004226,,1,,Europe/Paris,,OGB, +OGB:SA:CTPOBSAFPA3,1,"AFPA",47.24683,5.99625,,1,,Europe/Paris,,OGB, +OGB:SA:CTPOISEAUX2,1,"Les Oiseaux",47.25591,6.033502,,1,,Europe/Paris,,OGB, +OGB:SA:CTPORATOIR2,1,"Oratoire",47.228016,5.984114,,1,,Europe/Paris,,OGB, +OGB:SA:CTPOUDET1,1,"Oudet",47.23724,6.014594,,1,,Europe/Paris,,OGB, +OGB:SA:CTPPALSPOR2,1,"Palais des Sports",47.24603,6.00058,,1,,Europe/Paris,,OGB, +OGB:SA:CTPPAPILLO1,1,"Papillon",47.25412,6.038609,,1,,Europe/Paris,,OGB, +OGB:SA:CTPPAPIN3,1,"Papin",47.243233,5.986145,,1,,Europe/Paris,,OGB, +OGB:SA:CTPPARCEXP2,1,"Parc des Expositions",47.22304,5.978963,,1,,Europe/Paris,,OGB, +OGB:SA:CTPPARGUEZ2,1,"Parguez",47.237743,6.006345,,1,,Europe/Paris,,OGB, +OGB:SA:CTPPASSERE1,1,"Passerelle",47.226868,6.032685,,1,,Europe/Paris,,OGB, +OGB:SA:CTPPATINOI2,1,"Patinoire / Piscine",47.213833,5.968735,,1,,Europe/Paris,,OGB, +OGB:SA:CTPPAVIE2,1,"Pavie",47.220573,5.961742,,1,,Europe/Paris,,OGB, +OGB:SA:CTPPBT1,1,"Paul Bert",47.255077,6.028113,,1,,Europe/Paris,,OGB, +OGB:SA:CTPPDC1,1,"Pont des Cras",47.252552,6.030527,,1,,Europe/Paris,,OGB, +OGB:SA:CTPPELOUSE2,1,"Pelouse",47.23304,5.993867,,1,,Europe/Paris,,OGB, +OGB:SA:CTPPERGAUD1,1,"Haras",47.234695,6.008151,,1,,Europe/Paris,,OGB, +OGB:SA:CTPPIEMONT1,1,"Piémont",47.222847,5.965639,,1,,Europe/Paris,,OGB, +OGB:SA:CTPPLANCON2,1,"Plançon",47.231266,6.01309,,1,,Europe/Paris,,OGB, +OGB:SA:CTPPLANOIS3,1,"Planoise",47.21771,5.965849,,1,,Europe/Paris,,OGB, +OGB:SA:CTPPLATINE1,1,"Platine",47.27527,5.999388,,1,,Europe/Paris,,OGB, +OGB:SA:CTPPLGUYON2,1,"Place Guyon",47.229008,6.042345,,1,,Europe/Paris,,OGB, +OGB:SA:CTPPMCURIE2,1,"Pierre et Marie Curie",47.2608,6.044907,,1,,Europe/Paris,,OGB, +OGB:SA:CTPPOLSPOR1,1,"Pôle Sportif",47.250816,6.000504,,1,,Europe/Paris,,OGB, +OGB:SA:CTPPOLYCLI4,1,"Polyclinique",47.21603,5.980015,,1,,Europe/Paris,,OGB, +OGB:SA:CTPPONBEUR2,1,"Pont de Beure",47.210873,5.996134,,1,,Europe/Paris,,OGB, +OGB:SA:CTPPONCHFR1,1,"Pont Chemin Français",47.252514,6.02365,,1,,Europe/Paris,,OGB, +OGB:SA:CTPPONSNCF1,1,"Pont SNCF",47.25023,6.025522,,1,,Europe/Paris,,OGB, +OGB:SA:CTPPONTBRE1,1,"Pont de Bregille",47.23797,6.03277,,1,,Europe/Paris,,OGB, +OGB:SA:CTPPORDOUV1,1,"Port Douvot",47.20706,5.993301,,1,,Europe/Paris,,OGB, +OGB:SA:CTPPORJOIN2,1,"Port Joint",47.23413,6.037011,,1,,Europe/Paris,,OGB, +OGB:SA:CTPPOSTE2,1,"Poste",47.23971,6.026629,,1,,Europe/Paris,,OGB, +OGB:SA:CTPPRECLAI1,1,"Pré au Clair",47.258766,6.0276,,1,,Europe/Paris,,OGB, +OGB:SA:CTPPREFECT1,1,"Préfecture",47.2337,6.023057,,1,,Europe/Paris,,OGB, +OGB:SA:CTPPRESVAU1,1,"Prés de Vaux",47.229652,6.053614,,1,,Europe/Paris,,OGB, +OGB:SA:CTPPROLABO1,1,"Prolabor",47.235374,5.9645,,1,,Europe/Paris,,OGB, +OGB:SA:CTPPSB1,1,"PSB",47.25958,6.015671,,1,,Europe/Paris,,OGB, +OGB:SA:CTPQUATROU1,1,"Quatrouillots",47.264755,6.012761,,1,,Europe/Paris,,OGB, +OGB:SA:CTPQUATVEN1,1,"4 Vents",47.259666,6.029967,,1,,Europe/Paris,,OGB, +OGB:SA:CTPRADIEUS2,1,"Radieuse",47.226334,6.009186,,1,,Europe/Paris,,OGB, +OGB:SA:CTPRECLUS1,1,"Reclus",47.260933,6.014727,,1,,Europe/Paris,,OGB, +OGB:SA:CTPREFUGE1,1,"Refuge",47.255703,6.023619,,1,,Europe/Paris,,OGB, +OGB:SA:CTPREMPART2,1,"Remparts",47.24402,6.02166,,1,,Europe/Paris,,OGB, +OGB:SA:CTPRENECHA2,1,"René Char",47.218273,5.95185,,1,,Europe/Paris,,OGB, +OGB:SA:CTPRESIDEN2,1,"Résidence",47.23164,5.998152,,1,,Europe/Paris,,OGB, +OGB:SA:CTPRIVOTTE,1,"Rivotte",47.23035,6.037004,,1,,Europe/Paris,,OGB, +OGB:SA:CTPROTONDE1,1,"Rotonde",47.247818,6.027254,,1,,Europe/Paris,,OGB, +OGB:SA:CTPSALBREG1,1,"Salins de Bregille",47.241714,6.040094,,1,,Europe/Paris,,OGB, +OGB:SA:CTPSANATOR1,1,"Sanatorium",47.236176,5.971192,,1,,Europe/Paris,,OGB, +OGB:SA:CTPSANCEY1,1,"Sancey",47.23206,6.008222,,1,,Europe/Paris,,OGB, +OGB:SA:CTPSANSONN1,1,"Sansonnets",47.263557,6.013511,,1,,Europe/Paris,,OGB, +OGB:SA:CTPSAPINS2,1,"Sapins",47.23478,5.989557,,1,,Europe/Paris,,OGB, +OGB:SA:CTPSARAGOS1,1,"Saragosse",47.25978,6.029073,,1,,Europe/Paris,,OGB, +OGB:SA:CTPSAVARY2,1,"Savary",47.25517,6.003184,,1,,Europe/Paris,,OGB, +OGB:SA:CTPSCL3,1,"St Claude",47.258938,6.009645,,1,,Europe/Paris,,OGB, +OGB:SA:CTPSECUSOC1,1,"Sécurité Sociale",47.24328,5.993862,,1,,Europe/Paris,,OGB, +OGB:SA:CTPSEILER1,1,"Seiler",47.258343,6.022867,,1,,Europe/Paris,,OGB, +OGB:SA:CTPSIFFERT1,1,"Siffert",47.24125,6.015287,,1,,Europe/Paris,,OGB, +OGB:SA:CTPSJA3,1,"St Jacques",47.23431,6.0208,,1,,Europe/Paris,,OGB, +OGB:SA:CTPSMAURIC1,1,"St Maurice",47.235756,6.027452,,1,,Europe/Paris,,OGB, +OGB:SA:CTPSPORNAU2,1,"Sport Nautique",47.237015,6.035411,,1,,Europe/Paris,,OGB, +OGB:SA:CTPSTALAGR2,1,"Stade Léo Lagrange",47.244167,6.004785,,1,,Europe/Paris,,OGB, +OGB:SA:CTPSTETHER1,1,"Ste Thérèse",47.22875,6.0093,,1,,Europe/Paris,,OGB, +OGB:SA:CTPSTMARTI1,1,"St Martin",47.243668,5.99554,,1,,Europe/Paris,,OGB, +OGB:SA:CTPSTPIEX2,1,"St Pie X",47.26309,6.04678,,1,,Europe/Paris,,OGB, +OGB:SA:CTPSTRASBOU,1,"Strasbourg",47.241764,6.022242,,1,,Europe/Paris,,OGB, +OGB:SA:CTPSUARD1,1,"Suard",47.25021,6.029984,,1,,Europe/Paris,,OGB, +OGB:SA:CTPTEMIS4,1,"Temis",47.25319,5.997265,,1,,Europe/Paris,,OGB, +OGB:SA:CTPTHOMAS2,1,"Thomas",47.240757,5.986466,,1,,Europe/Paris,,OGB, +OGB:SA:CTPTHOURET1,1,"Thouret",47.24075,5.977908,,1,,Europe/Paris,,OGB, +OGB:SA:CTPTILEROY1,1,"Tilleroyes",47.235535,5.961739,,1,,Europe/Paris,,OGB, +OGB:SA:CTPTREPIL1,1,"Trépillot",47.241333,6.006978,,1,,Europe/Paris,,OGB, +OGB:SA:CTPTREY1,1,"Trey",47.256554,6.022026,,1,,Europe/Paris,,OGB, +OGB:SA:CTPt_allen2,1,"Allende",47.219864,5.973468,,1,,Europe/Paris,,OGB, +OGB:SA:CTPt_batt2,1,"Battant",47.239464,6.019442,,1,,Europe/Paris,,OGB, +OGB:SA:CTPt_brula2,1,"Brulard",47.228462,6.005575,,1,,Europe/Paris,,OGB, +OGB:SA:CTPt_brule1,1,"Brûlefoin",47.249886,6.042456,,1,,Europe/Paris,,OGB, +OGB:SA:CTPt_cano2,1,"Canot",47.23596,6.01587,,1,,Europe/Paris,,OGB, +OGB:SA:CTPt_cdp1,1,"Croix de Palente",47.257374,6.042201,,1,,Europe/Paris,,OGB, +OGB:SA:CTPt_chal,1,"Chalezeule",47.261314,6.060952,,1,,Europe/Paris,,OGB, +OGB:SA:CTPt_cham2,1,"Chamars",47.233673,6.020249,,1,,Europe/Paris,,OGB, +OGB:SA:CTPt_chr2,1,"CHRU Minjoz",47.22639,5.963632,,1,,Europe/Paris,,OGB, +OGB:SA:CTPt_epo2,1,"Epoisses",47.22248,5.972474,,1,,Europe/Paris,,OGB, +OGB:SA:CTPt_farg1,1,"Fontaine Argent",47.245975,6.033796,,1,,Europe/Paris,,OGB, +OGB:SA:CTPt_fben1,1,"Fort Benoît",47.262066,6.050709,,1,,Europe/Paris,,OGB, +OGB:SA:CTPt_flo2,1,"Flore",47.24549,6.028106,,1,,Europe/Paris,,OGB, +OGB:SA:CTPt_gvio2,1,"Gare Viotte",47.246326,6.022173,,1,,Europe/Paris,,OGB, +OGB:SA:CTPt_hdc2,1,"Hauts du Chazal",47.22164,5.951406,,1,,Europe/Paris,,OGB, +OGB:SA:CTPt_idf2,1,"Ile de France",47.222034,5.967245,,1,,Europe/Paris,,OGB, +OGB:SA:CTPt_lila1,1,"Lilas",47.260723,6.04188,,1,,Europe/Paris,,OGB, +OGB:SA:CTPt_lvai1,1,"Les Vaîtes",47.25324,6.043249,,1,,Europe/Paris,,OGB, +OGB:SA:CTPt_malc2,1,"Malcombe",47.222588,5.982434,,1,,Europe/Paris,,OGB, +OGB:SA:CTPt_marn1,1,"Marnières",47.26338,6.055775,,1,,Europe/Paris,,OGB, +OGB:SA:CTPt_micro2,1,"Micropolis",47.22066,5.978167,,1,,Europe/Paris,,OGB, +OGB:SA:CTPt_orc1,1,"Orchamps",47.26297,6.045393,,1,,Europe/Paris,,OGB, +OGB:SA:CTPt_pmic2,1,"Parc Micaud",47.24295,6.029917,,1,,Europe/Paris,,OGB, +OGB:SA:CTPt_poly2,1,"Polygone",47.229855,6.010564,,1,,Europe/Paris,,OGB, +OGB:SA:CTPt_psan2,1,"Pôle Santé",47.22591,5.959961,,1,,Europe/Paris,,OGB, +OGB:SA:CTPt_repu2,1,"République",47.240948,6.027072,,1,,Europe/Paris,,OGB, +OGB:SA:CTPt_revo2,1,"Révolution",47.24041,6.022829,,1,,Europe/Paris,,OGB, +OGB:SA:CTPt_rose2,1,"Rosemont",47.224987,5.994995,,1,,Europe/Paris,,OGB, +OGB:SA:CTPt_schw1,1,"Schweitzer",47.256077,6.04481,,1,,Europe/Paris,,OGB, +OGB:SA:CTPt_tbern1,1,"Tristan Bernard",47.248196,6.037381,,1,,Europe/Paris,,OGB, +OGB:SA:CTPt_ufr2,1,"UFR Médecine Pharma",47.22361,5.955863,,1,,Europe/Paris,,OGB, +OGB:SA:CTPUFRSCIE2,1,"UFR Sciences",47.24444,5.986248,,1,,Europe/Paris,,OGB, +OGB:SA:CTPUSPORTS1,1,"U-Sports",47.25215,5.99036,,1,,Europe/Paris,,OGB, +OGB:SA:CTPVALENTI1,1,"Valentin",47.277626,5.99358,,1,,Europe/Paris,,OGB, +OGB:SA:CTPVALERY1,1,"Valéry",47.21482,5.961857,,1,,Europe/Paris,,OGB, +OGB:SA:CTPVALJOUR1,1,"Vallon du Jour",47.26613,6.027364,,1,,Europe/Paris,,OGB, +OGB:SA:CTPVALLIERE,1,"Vallières",47.216805,5.981751,,1,,Europe/Paris,,OGB, +OGB:SA:CTPVALLON2,1,"Vallon",47.208775,5.963395,,1,,Europe/Paris,,OGB, +OGB:SA:CTPVELOTTE2,1,"Velotte",47.21915,6.01109,,1,,Europe/Paris,,OGB, +OGB:SA:CTPVESOUL4,1,"Vesoul",47.25319,6.016087,,1,,Europe/Paris,,OGB, +OGB:SA:CTPVICGALL2,1,"Victor Gallois",47.256733,6.020927,,1,,Europe/Paris,,OGB, +OGB:SA:CTPVICHUGO1,1,"Victor Hugo",47.234978,6.029688,,1,,Europe/Paris,,OGB, +OGB:SA:CTPVIEILLE2,1,"Vieilley",47.265015,6.033507,,1,,Europe/Paris,,OGB, +OGB:SA:CTPVIGNES2,1,"Les Vignes",47.233265,6.01468,,1,,Europe/Paris,,OGB, +OGB:SA:CTPVILLARC1,1,"Villarceau",47.23593,6.008342,,1,,Europe/Paris,,OGB, +OGB:SA:CTPVINCENT1,1,"Clinique St Vincent",47.244534,5.980263,,1,,Europe/Paris,,OGB, +OGB:SA:CTPVIOLET1,1,"Violet",47.258324,6.021296,,1,,Europe/Paris,,OGB, +OGB:SA:CTPVIVARAI2,1,"Vivarais",47.21982,5.963475,,1,,Europe/Paris,,OGB, +OGB:SA:CTPVOIRIN2,1,"Voirin",47.242275,6.013741,,1,,Europe/Paris,,OGB, +OGB:SA:CTPVOLTAIR1,1,"Voltaire",47.221622,5.960859,,1,,Europe/Paris,,OGB, +OGB:SA:CTPWEISS3,1,"Weiss",47.24464,6.013038,,1,,Europe/Paris,,OGB, +OGB:SA:CTPWYRSCH1,1,"Wyrsch",47.256428,6.018354,,1,,Europe/Paris,,OGB, +OGB:SA:CTPZIPAL,1,"Palente ZI",47.265003,6.051061,,1,,Europe/Paris,,OGB, +OGN:SA:CTP6090005,1,"Anatole France",49.264549,2.433269,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6090007,1,"Lycée Malraux",49.259496,2.426149,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6090010,1,"Bas des Tufs",49.257932,2.481862,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6090011,1,"Cavées de Paris",49.252402,2.478964,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6090012,1,"Berthe Fouchère",49.25845,2.477031,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6090013,1,"Biondi",49.253387,2.473284,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6090014,1,"Blaise Pascal",49.255401,2.487249,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6090017,1,"Louis Blanc",49.256495,2.448092,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6090018,1,"Bourse du travail",49.260877,2.468061,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6090019,1,"Branly",49.253317,2.487037,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6090020,1,"Carnot",49.26266,2.472609,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6090021,1,"Carpeaux",49.26057,2.484683,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6090022,1,"Collège",49.262381,2.435695,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6090023,1,"Champrelle",49.253124,2.475494,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6090024,1,"Château d'Eau",49.291084,2.496198,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6090026,1,"Les Marches de l’Oise",49.26036,2.455266,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6090027,1,"Chevalier",49.262594,2.458497,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6090030,1,"Delacroix",49.256758,2.487129,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6090031,1,"Demagnez",49.268018,2.477593,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6090032,1,"Deneux",49.282649,2.473582,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6090033,1,"Déportés",49.255066,2.438055,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6090034,1,"Desnosse",49.257651,2.43095,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6090035,1,"Europe",49.26882,2.482675,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6090037,1,"Faidherbe",49.279321,2.460706,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6090038,1,"Fécamp",49.285176,2.485962,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6090039,1,"Foyer",49.264183,2.459997,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6090040,1,"Roosevelt",49.252184,2.464182,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6090041,1,"Frères Péraux",49.273511,2.474587,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6090042,1,"Gambetta",49.263063,2.47401,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6090043,1,"Gare",49.264011,2.46999,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6090044,1,"Gauguin",49.256691,2.490355,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6090046,1,"Ginisti",49.256494,2.427791,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6090047,1,"Glacière",49.288165,2.481439,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6090049,1,"Herriot",49.268091,2.451137,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6090050,1,"Hoche",49.267714,2.467858,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6090055,1,"Jean Moulin",49.250561,2.461666,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6090056,1,"Juillet",49.265048,2.473755,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6090057,1,"Jules Guesde",49.259572,2.432642,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6090058,1,"La Cavée",49.268373,2.456218,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6090059,1,"Le Lech",49.284097,2.463739,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6090062,1,"Z.I. Le Port",49.271065,2.491015,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6090064,1,"Lénine",49.252792,2.449937,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6090065,1,"Les Côteaux",49.26846,2.459554,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6090066,1,"Les Granges",49.271008,2.462443,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6090067,1,"Les Grilles",49.25313,2.4701,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6090068,1,"Lesiour",49.258678,2.427054,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6090069,1,"Libération",49.25389,2.447345,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6090070,1,"Lingerie",49.254447,2.456597,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6090072,1,"Lycée Marie Curie",49.265698,2.462952,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6090073,1,"Magenta",49.25859,2.410568,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6090074,1,"Mégret",49.251515,2.476381,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6090077,1,"Place du Marché",49.290422,2.500495,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6090078,1,"Mauriac",49.266775,2.464575,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6090079,1,"Médiathèque",49.273204,2.467749,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6090081,1,"Mortefontaine",49.287363,2.482823,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6090082,1,"Moulin à vent",49.258537,2.486901,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6090088,1,"Paul Vaillant Couturier",49.264856,2.430799,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6090089,1,"Pauquet",49.267109,2.479087,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6090090,1,"Place du marché",49.290422,2.500495,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6090091,1,"Plaine de Jeux",49.247971,2.472515,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6090092,1,"Pont Royal",49.268806,2.472186,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6090094,1,"Louise Michel",49.290109,2.492487,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6090095,1,"Puvis de Chavannes",49.256218,2.48802,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6090096,1,"République",49.279881,2.474014,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6090097,1,"Rue des Usines",49.264213,2.465845,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6090099,1,"Sémard",49.27032,2.475952,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6090102,1,"Saint Exupéry",49.272344,2.465206,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6090103,1,"Saint Just",49.277758,2.47659,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6090104,1,"Stéphenson",49.266316,2.47292,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6090105,1,"Vallès",49.266495,2.448004,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6090108,1,"Véret",49.281382,2.464982,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6090109,1,"Villers Mairie",49.288222,2.486232,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6090110,1,"Z.I. Villers",49.286861,2.503272,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6090114,1,"Zola",49.260452,2.453028,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6090118,1,"Marais Sec",49.277267,2.488933,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6090119,1,"Somasco",49.268489,2.488742,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6090121,1,"Clos Barrois",49.273683,2.488249,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6090126,1,"Carnot",49.272022,2.480309,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6090127,1,"Jean Moulin",49.282556,2.459038,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6090128,1,"Branly",49.276982,2.46335,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6090129,1,"Gambetta",49.270892,2.470132,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6090130,1,"Jaurès",49.266266,2.452012,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6090131,1,"Sémard",49.251681,2.43599,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6090132,1,"Moulinière",49.285634,2.478726,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6095029,1,"Jacques Decour",49.266293,2.431268,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6095036,1,"Fabien",49.26315,2.429107,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6095053,1,"Hôpital départ",49.248116,2.463197,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6095077,1,"Place du Marché",49.290189,2.500426,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6095087,1,"Pasteur",49.274286,2.46425,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6095093,1,"Pont Y",49.259524,2.464529,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6095134,1,"Nogent Mairie",49.275003,2.465487,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6095136,1,"Roosevelt",49.26804,2.447554,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6095138,1,"Parc de la Vallée",49.272883,2.481176,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6095146,1,"Louise Michel",49.266902,2.390728,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6095148,1,"Salle des Fêtes",49.267864,2.389617,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6095152,1,"Croizat",49.253884,2.433332,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6095155,1,"Guy Môquet",49.255791,2.430892,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6095157,1,"Parc Urbain",49.25335,2.427538,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6095159,1,"Gournay",49.261279,2.46172,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6095160,1,"Murat",49.267542,2.469093,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6095166,1,"8 Mai",49.260546,2.474703,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6095168,1,"Porte de creil",49.244722,2.469337,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6095169,1,"Gabriel Havez",49.248694,2.468798,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6095172,1,"Alatium",49.254931,2.496759,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6095174,1,"Gare de Villers",49.28263,2.489072,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6095175,1,"Pommiers",49.289094,2.499818,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6095176,1,"Kuhlmann",49.29149,2.508053,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6095177,1,"ZI Les Prés Roseaux",49.288535,2.507274,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6095182,1,"Becquerel",49.252481,2.480199,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6095188,1,"Michelet",49.261274,2.474266,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6095197,1,"Chapelle De Vaux",49.263889,2.489113,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6095201,1,"Léon Blum",49.254343,2.478173,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6095205,1,"Verlaine",49.249254,2.473973,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6095207,1,"Taffanel",49.27047,2.499704,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6095209,1,"Inéris",49.27226,2.504516,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6095211,1,"Parc Alata 2",49.264957,2.503805,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6095214,1,"Parc Alata 1",49.262321,2.499953,,1,,Europe/Paris,,OGN, +OGN:SA:CTP6095215,1,"Noisetiers",49.260075,2.499493,,1,,Europe/Paris,,OGN, +OID:SA:1,1,"Paris Centre - Bercy",48.838424,2.382411,,1,,Europe/Paris,,OID, +OID:SA:106,1,"Lyon - Aéroport Saint-Exupéry",45.719095,5.079539,,1,,Europe/Paris,,OID, +OID:SA:111,1,"Paris - Porte Maillot",48.879921,2.282163,,1,,Europe/Paris,,OID, +OID:SA:12,1,"Milan",45.489441,9.127631,,1,,Europe/Paris,,OID, +OID:SA:122,1,"Berck-sur-Mer",50.409007,1.568345,,1,,Europe/Paris,,OID, +OID:SA:124,1,"Le Touquet-Paris-Plage",50.527323,1.582964,,1,,Europe/Paris,,OID, +OID:SA:148,1,"Chalon-sur-Saône",46.782098,4.844396,,1,,Europe/Paris,,OID, +OID:SA:15,1,"Marseille - Gare routière St-Charles",43.304179,5.379868,,1,,Europe/Paris,,OID, +OID:SA:168,1,"Marne-la-Vallée - Chessy",48.872647,2.797002,,1,,Europe/Paris,,OID, +OID:SA:173,1,"Beauvais - Aéroport",49.46254,2.116935,,1,,Europe/Paris,,OID, +OID:SA:18,1,"Lyon - Gare routière Perrache",45.748854,4.825925,,1,,Europe/Paris,,OID, +OID:SA:181,1,"Montargis",47.977843,2.729137,,1,,Europe/Paris,,OID, +OID:SA:182,1,"Nevers",46.989112,3.150376,,1,,Europe/Paris,,OID, +OID:SA:19,1,"Londres",51.492513,-0.148349,,1,,Europe/Paris,,OID, +OID:SA:192,1,"Paris Nord - St-Denis université",48.946448,2.365162,,1,,Europe/Paris,,OID, +OID:SA:193,1,"Bâle Mulhouse Fribourg - Aéroport",47.600746,7.531787,,1,,Europe/Paris,,OID, +OID:SA:195,1,"Europa Park",48.269588,7.721926,,1,,Europe/Paris,,OID, +OID:SA:20,1,"Bruxelles Centre - Gare Midi",50.834999,4.33264,,1,,Europe/Paris,,OID, +OID:SA:208,1,"Bruges",51.195628,3.216865,,1,,Europe/Paris,,OID, +OID:SA:21,1,"Genève - Gare routière",46.208384,6.146746,,1,,Europe/Paris,,OID, +OID:SA:22,1,"Anvers",51.218055,4.39431,,1,,Europe/Paris,,OID, +OID:SA:223,1,"Arras",50.288064,2.783173,,1,,Europe/Paris,,OID, +OID:SA:234,1,"Luxembourg",49.598862,6.131591,,1,,Europe/Paris,,OID, +OID:SA:24,1,"Dijon",47.324051,5.027794,,1,,Europe/Paris,,OID, +OID:SA:243,1,"Belfort",47.628566,6.856902,,1,,Europe/Paris,,OID, +OID:SA:245,1,"La Haye",52.080197,4.325052,,1,,Europe/Paris,,OID, +OID:SA:252,1,"Roubaix",50.688991,3.180018,,1,,Europe/Paris,,OID, +OID:SA:27,1,"Strasbourg",48.574241,7.75426,,1,,Europe/Paris,,OID, +OID:SA:290,1,"Bruxelles - Aéroport Zaventem",50.897651,4.479879,,1,,Europe/Paris,,OID, +OID:SA:30,1,"Rouen Centre",49.434093,1.092471,,1,,Europe/Paris,,OID, +OID:SA:315,1,"Taizé",46.514634,4.67614,,1,,Europe/Paris,,OID, +OID:SA:319,1,"Charleville-Mézières",49.76881,4.724886,,1,,Europe/Paris,,OID, +OID:SA:32,1,"Amiens",49.89202,2.3091,,1,,Europe/Paris,,OID, +OID:SA:320,1,"Sedan",49.695216,4.93069,,1,,Europe/Paris,,OID, +OID:SA:321,1,"Vitry-sur-Seine",48.796657,2.41237,,1,,Europe/Paris,,OID, +OID:SA:324,1,"Châlons-en-Champagne",48.955008,4.348484,,1,,Europe/Paris,,OID, +OID:SA:39,1,"Clermont-Ferrand",45.77078,3.0823,,1,,Europe/Paris,,OID, +OID:SA:40,1,"Dunkerque",51.047253,2.38385,,1,,Europe/Paris,,OID, +OID:SA:41,1,"Grenoble Centre - Gare routière",45.192833,5.714294,,1,,Europe/Paris,,OID, +OID:SA:47,1,"Metz",49.110633,6.183319,,1,,Europe/Paris,,OID, +OID:SA:48,1,"Nancy",48.649482,6.14619,,1,,Europe/Paris,,OID, +OID:SA:51,1,"Paris Ouest - La Défense",48.89132,2.24233,,1,,Europe/Paris,,OID, +OID:SA:52,1,"Paris - Aéroport Orly-Sud",48.731568,2.373562,,1,,Europe/Paris,,OID, +OID:SA:55,1,"Reims",49.214754,3.994568,,1,,Europe/Paris,,OID, +OID:SA:57,1,"Troyes",48.328044,4.100755,,1,,Europe/Paris,,OID, +OID:SA:60,1,"Mulhouse",47.742012,7.341712,,1,,Europe/Paris,,OID, +OID:SA:61,1,"Besançon",47.2215,5.97861,,1,,Europe/Paris,,OID, +OID:SA:62,1,"Douai",50.3644,3.08522,,1,,Europe/Paris,,OID, +OID:SA:68,1,"Paris Sud - Porte d'Orléans",48.821139,2.325379,,1,,Europe/Paris,,OID, +OID:SA:7,1,"Aix-en-Provence",43.5232,5.4451,,1,,Europe/Paris,,OID, +OID:SA:80,1,"Calais",50.966597,1.862854,,1,,Europe/Paris,,OID, +OID:SA:82,1,"Parc Astérix",49.136899,2.570402,,1,,Europe/Paris,,OID, +OID:SA:9,1,"Amsterdam Centre - Sloterdijk",52.389289,4.836263,,1,,Europe/Paris,,OID, +OIS:SA:CTP3000562,1,"Fontaine St Lucien",49.501309,2.148765,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3000728,1,"Eglise",49.465177,1.965088,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3000746,1,"Mairie",49.404285,2.005904,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3000918,1,"Vignes",49.43384,2.101866,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3000926,1,"Villers Saint-Lucien",49.457439,2.085126,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3000959,1,"Vivaldi",49.413669,2.078099,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3001031,1,"Zeude",49.420211,2.092194,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3001091,1,"Thiérache",49.43744,2.096423,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3001197,1,"Moulin de Bracheux",49.424516,2.11619,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3001655,1,"Tilleuls",49.455696,2.097797,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3001659,1,"Verderel-lès-Sauqueuse",49.503051,2.09666,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3001660,1,"Bonlier",49.470466,2.15005,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014004,1,"Saint-Antoine",49.431971,2.102944,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014075,1,"Abri",49.47976,2.044871,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014096,1,"Saint-Léger Place",49.390698,2.0261,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014144,1,"Kennedy",49.408662,2.111866,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014145,1,"Eglise",49.404809,2.112489,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014147,1,"rue Commessy",49.403298,2.1103,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014150,1,"Place",49.413423,2.04156,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014151,1,"D981",49.413834,2.044022,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014155,1,"Bongenoult Ecole",49.399641,2.096834,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014160,1,"Halles",49.430589,2.084679,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014164,1,"Avelon",49.428406,2.059955,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014166,1,"Clermont",49.431988,2.105704,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014168,1,"Esterel",49.432906,2.097615,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014170,1,"Gare SNCF",49.42666,2.08737,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014172,1,"Centre Commercial",49.432598,2.0456,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014174,1,"Gare routière",49.427648,2.082821,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014176,1,"Rond-point",49.394866,2.017636,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014179,1,"Pentemont",49.431628,2.054801,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014185,1,"Besnard",49.431939,2.10833,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014187,1,"Blancs Pains",49.433751,2.107307,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014189,1,"Bas Romains",49.43277,2.106072,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014192,1,"Bosquet",49.435664,2.097753,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014194,1,"Dardignac",49.418356,2.072925,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014195,1,"Flandres",49.435067,2.100263,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014196,1,"Gide",49.422356,2.074172,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014198,1,"Ile de France",49.42455,2.083607,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014201,1,"Jean Moulin",49.435602,2.102933,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014205,1,"Marissel",49.430343,2.105229,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014210,1,"Parc Kennedy",49.428044,2.100984,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014214,1,"Rimbaud",49.422222,2.078689,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014216,1,"Rousseau",49.421438,2.07346,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014222,1,"Saint-Esprit",49.418764,2.087023,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014226,1,"Beauséjour",49.445885,2.0882,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014228,1,"Berlioz",49.415697,2.076822,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014230,1,"Bizet",49.414476,2.085543,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014231,1,"Briqueterie",49.417665,2.077101,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014233,1,"Buzanval - Jeu de Paume",49.432235,2.085511,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014234,1,"Calais",49.438857,2.082421,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014236,1,"Capucines",49.448865,2.091257,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014237,1,"Caron",49.43639,2.083528,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014238,1,"Cathédrale",49.431159,2.082101,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014239,1,"Caurroy",49.418207,2.083129,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014240,1,"Chopin",49.416709,2.084197,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014241,1,"Ecole Maternelle",49.415488,2.088774,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014244,1,"Fauqueux",49.421531,2.07872,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014246,1,"Franc Marché",49.436788,2.084828,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014249,1,"George Sand",49.44959,2.085729,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014250,1,"Jeanne Hachette",49.435327,2.082204,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014252,1,"Jacinthes",49.451857,2.087578,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014253,1,"Jean Racine",49.43401,2.079938,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014254,1,"Rostand",49.414354,2.0833,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014257,1,"Lebesgue",49.420694,2.078187,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014258,1,"Métiers",49.418986,2.077328,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014260,1,"Place de Noailles",49.44325,2.085555,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014264,1,"Ruisselets",49.447153,2.084735,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014265,1,"Songeons",49.441792,2.080849,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014267,1,"Violettes",49.446732,2.08938,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014269,1,"Amyot d'Inville",49.433613,2.078783,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014270,1,"Ancienne Mairie",49.444945,2.080222,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014273,1,"Blum",49.448873,2.073912,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014274,1,"Boislisle",49.436338,2.076056,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014276,1,"Bois Brûlet",49.451611,2.076194,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014280,1,"Cambry",49.439231,2.076496,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014284,1,"Crèvecoeur",49.452673,2.074099,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014294,1,"Dr Schweitzer",49.412169,2.113999,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014295,1,"Echangeur",49.417946,2.105065,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014297,1,"Eglise",49.421662,2.090025,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014301,1,"Europe",49.441719,2.076345,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014303,1,"Gay Lussac",49.411923,2.107157,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014305,1,"Hôpital",49.451007,2.072233,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014307,1,"LaSalle",49.458352,2.070873,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014308,1,"Isaac",49.445967,2.075855,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014310,1,"Langevin",49.416638,2.106558,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014314,1,"Maladrerie",49.415481,2.098508,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014316,1,"Mie au Roy",49.445491,2.071931,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014317,1,"Montaigne",49.414031,2.105964,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014319,1,"Notre Dame du Thil",49.447841,2.078491,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014321,1,"Paré",49.413132,2.110167,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014323,1,"Paris",49.418333,2.095934,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014326,1,"Prayon",49.444073,2.076416,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014328,1,"Paul Vaillant Couturier",49.417625,2.097163,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014330,1,"Saint-Jacques",49.423381,2.087042,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014332,1,"Thère",49.418758,2.102225,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014334,1,"Ferdinand De Lesseps",49.408752,2.116863,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014335,1,"Victor Hugo",49.43487,2.07857,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014337,1,"Voisinlieu",49.419066,2.09885,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014341,1,"Hostivas",49.41319,2.089253,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014343,1,"Lilas",49.445582,2.093973,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014345,1,"Longue Haye",49.413798,2.093301,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014347,1,"Maillart",49.440301,2.089907,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014352,1,"Centre",49.464457,2.10863,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014355,1,"Aéroport",49.459856,2.112368,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014357,1,"8 Mai 1945",49.440112,2.098325,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014359,1,"Allendé",49.443143,2.100501,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014369,1,"Chambre des Métiers",49.446369,2.101272,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014372,1,"Communeau",49.444147,2.103775,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014375,1,"Parc Marcel Dassault",49.451037,2.099294,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014379,1,"Clos Forest",49.43781,2.092578,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014381,1,"Côte d'Amiens",49.437729,2.088487,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014387,1,"Bois du Parc",49.445198,2.049849,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014388,1,"Châtaigniers",49.442283,2.051629,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014389,1,"Cimetière",49.439861,2.056877,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014391,1,"Cours Scellier",49.433484,2.077613,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014393,1,"Lotissement",49.461654,2.050005,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014394,1,"La Garenne",49.441571,2.054512,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014396,1,"La Grive",49.438121,2.058016,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014398,1,"Lainé",49.433494,2.073935,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014400,1,"Parking Saint Quentin",49.431539,2.071136,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014403,1,"Marronniers",49.44252,2.05317,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014404,1,"Peupliers",49.443897,2.050338,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014405,1,"Savignies",49.434015,2.061454,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014407,1,"Saint-Quentin",49.43418,2.075116,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014409,1,"Trépinière",49.434933,2.058667,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014413,1,"Basse Montagne",49.453412,2.079276,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014415,1,"Chemin d'Amiens",49.455625,2.081152,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014417,1,"Déportés",49.425952,2.075393,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014419,1,"Faubourg St Jean",49.428013,2.068964,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014421,1,"Tétard",49.427264,2.071571,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014424,1,"Madeleine",49.429221,2.0845,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014425,1,"Plouy Saint-Lucien",49.470899,2.082523,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014428,1,"Place",49.369798,1.9961,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014429,1,"Musée",49.371403,1.992071,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014431,1,"Koening",49.432962,2.052893,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014434,1,"Place",49.426337,2.038098,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014436,1,"Z.I Sinancourt",49.383099,1.9997,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014444,1,"Brisson",49.429584,2.117472,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014447,1,"France Glaces",49.419437,2.11438,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014452,1,"Industrie",49.415024,2.113284,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014455,1,"Léon Bernard",49.443701,2.09182,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014457,1,"Massey Ferguson",49.420893,2.114746,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014461,1,"Bracheux",49.425917,2.114695,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014463,1,"Cagneux",49.427185,2.112226,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014466,1,"Ecole",49.428965,2.10788,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014473,1,"Pellerin Université",49.429685,2.090413,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014476,1,"Pressoir Coquet",49.434127,2.092843,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014478,1,"Stade",49.431093,2.112181,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014482,1,"Parking Saint-Quentin",49.431575,2.071122,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014483,1,"Palais de Justice",49.42908,2.076437,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014485,1,"Banque de France",49.430288,2.07818,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014489,1,"Eglise",49.48305,2.12972,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014490,1,"Maisoncelle-Saint-Pierre",49.509816,2.127919,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014492,1,"Abri",49.45722,2.16638,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014493,1,"Village",49.519246,2.084863,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014496,1,"Abri Centre",49.418961,2.157261,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014500,1,"Mairie",49.400948,2.181549,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014501,1,"Eglise",49.390269,2.14305,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014502,1,"Villers-sur-Thère Carrefour",49.412243,2.140873,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014507,1,"Abri Stade",49.501544,1.997551,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014508,1,"Abri",49.488449,2.01025,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014510,1,"Villers-sur-Thère Ecole",49.413852,2.136365,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014512,1,"Mairie",49.472847,1.979517,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014514,1,"Abri",49.445133,1.9831,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014515,1,"Centre",49.428379,2.00663,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014516,1,"Le Becquet Ecole",49.422796,1.992097,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014517,1,"Mairie",49.446149,2.004867,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014518,1,"Centre",49.341464,2.087567,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014520,1,"Berneuil-en-Bray",49.347634,2.06237,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014521,1,"Les Vivrots",49.364344,2.069575,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014524,1,"Centre",49.38266,2.086787,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014525,1,"Place",49.395359,2.059802,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014526,1,"Descartes",49.408287,2.118049,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014528,1,"J. Goddet",49.437364,2.113062,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014529,1,"Hortensias",49.444188,2.092933,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014542,1,"Georges Dartois",49.447236,2.081194,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014548,1,"Saint-Esprit",49.417652,2.083655,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014559,1,"DESGROUX",49.426827,2.07722,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014562,1,"CALVAIRE",49.433156,2.096594,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014585,1,"Jeu de Paume",49.43272,2.090068,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014587,1,"Penitencier",49.408637,2.085682,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014590,1,"SAINT-JEAN",49.417281,2.070205,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014591,1,"Délie",49.409858,2.112742,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014595,1,"ASCA",49.436325,2.100257,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014597,1,"ARGENTINE",49.434628,2.105595,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014599,1,"Hôtel de Ville - Arrivée",49.429252,2.081243,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014600,1,"Hôtel de Ville - Départ",49.429243,2.081298,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014609,1,"Pont d'Arcole",49.42525,2.092666,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014611,1,"Abbé Pierre",49.423786,2.099634,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014616,1,"Tilloy",49.441571,2.096018,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014620,1,"Cinespace",49.426835,2.093897,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014623,1,"Tillé Tilleuls",49.452831,2.099389,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3014624,1,"Mairie",49.46356,2.112069,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3016362,1,"Bellevue",49.418478,2.071259,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3016363,1,"Aquaspace/Parc Dassault",49.451131,2.098046,,1,,Europe/Paris,,OIS, +OIS:SA:CTP3016365,1,"Elispace/Parc Dassault",49.451135,2.099334,,1,,Europe/Paris,,OIS, +OLB:SA:CTP18000001,1,"Eglise de Lardières",49.255513,2.135061,,1,,Europe/Paris,,OLB, +OLB:SA:CTP18000003,1,"Hôpital",49.233587,2.127451,,1,,Europe/Paris,,OLB, +OLB:SA:CTP18000006,1,"Rimbaud",49.235176,2.126552,,1,,Europe/Paris,,OLB, +OLB:SA:CTP18000012,1,"Perce Neige",49.238594,2.123863,,1,,Europe/Paris,,OLB, +OLB:SA:CTP18000015,1,"Jean Sébastien Bach",49.242725,2.127674,,1,,Europe/Paris,,OLB, +OLB:SA:CTP18000017,1,"Centre Ville",49.235889,2.133835,,1,,Europe/Paris,,OLB, +OLB:SA:CTP18000019,1,"Gare",49.232149,2.131956,,1,,Europe/Paris,,OLB, +OLB:SA:CTP18000020,1,"Quiétude",49.232479,2.125658,,1,,Europe/Paris,,OLB, +OLB:SA:CTP18000021,1,"Collège du Thelle",49.231283,2.1251,,1,,Europe/Paris,,OLB, +OLB:SA:CTP18000022,1,"Allende",49.230352,2.126997,,1,,Europe/Paris,,OLB, +OLB:SA:CTP18000023,1,"Langevin",49.228655,2.127759,,1,,Europe/Paris,,OLB, +OLB:SA:CTP18000025,1,"Vaillant Radiologue",49.234249,2.130768,,1,,Europe/Paris,,OLB, +OLB:SA:CTP18000031,1,"Centre ville",49.235674,2.133863,,1,,Europe/Paris,,OLB, +OLB:SA:CTP18000032,1,"Quietude",49.232344,2.125782,,1,,Europe/Paris,,OLB, +OLB:SA:CTP18000038,1,"Mounier",49.226679,2.127781,,1,,Europe/Paris,,OLB, +OLB:SA:CTP18000040,1,"Parc urbain",49.227945,2.127227,,1,,Europe/Paris,,OLB, +OLB:SA:CTP18000042,1,"La chesnaie",49.226918,2.131031,,1,,Europe/Paris,,OLB, +OLB:SA:CTP18000045,1,"Lumières",49.220889,2.131096,,1,,Europe/Paris,,OLB, +OLB:SA:CTP18000047,1,"Centre commercial",49.219923,2.138863,,1,,Europe/Paris,,OLB, +OLB:SA:CTP18000053,1,"Pierre Mendes France",49.230374,2.139866,,1,,Europe/Paris,,OLB, +OLB:SA:CTP18000059,1,"Condorcet",49.236462,2.143533,,1,,Europe/Paris,,OLB, +OLB:SA:CTP18000060,1,"Pasteur",49.237807,2.13594,,1,,Europe/Paris,,OLB, +OLB:SA:CTP18000063,1,"Gournay",49.239865,2.131034,,1,,Europe/Paris,,OLB, +OLB:SA:CTP18000065,1,"Louis Deshayes",49.240263,2.133049,,1,,Europe/Paris,,OLB, +OLB:SA:CTP18000069,1,"Briqueterie",49.244155,2.13361,,1,,Europe/Paris,,OLB, +OLB:SA:CTP18000071,1,"Toussaint Louverture",49.247173,2.133612,,1,,Europe/Paris,,OLB, +OLB:SA:CTP18000073,1,"Four à chaux",49.253615,2.133381,,1,,Europe/Paris,,OLB, +OLB:SA:CTP18000078,1,"Cimetière",49.244473,2.141664,,1,,Europe/Paris,,OLB, +OLB:SA:CTP18000080,1,"La roseraie",49.240816,2.141335,,1,,Europe/Paris,,OLB, +OLB:SA:CTP18000082,1,"Musée de la Nacre",49.238351,2.139424,,1,,Europe/Paris,,OLB, +OLB:SA:CTP18000091,1,"Jules Verne",49.227765,2.143539,,1,,Europe/Paris,,OLB, +OLB:SA:CTP18000092,1,"Aragon",49.225958,2.136961,,1,,Europe/Paris,,OLB, +OLB:SA:CTP18000094,1,"Thalès",49.220985,2.134621,,1,,Europe/Paris,,OLB, +OLB:SA:CTP18000096,1,"Gendarmerie",49.225248,2.131627,,1,,Europe/Paris,,OLB, +OLB:SA:CTP18000097,1,"Corneille",49.226469,2.141678,,1,,Europe/Paris,,OLB, +OLB:SA:CTP18000099,1,"Ivry le Temple-Centre",49.228881,2.02916,,1,,Europe/Paris,,OLB, +OLB:SA:CTP18000100,1,"Eglise",49.25611,2.10583,,1,,Europe/Paris,,OLB, +OLB:SA:CTP18000101,1,"Rue de Gournay",49.256532,2.110548,,1,,Europe/Paris,,OLB, +OLB:SA:CTP18000102,1,"Saint-Crépin Ibouvillers - Centre",49.262788,2.07888,,1,,Europe/Paris,,OLB, +OLB:SA:CTP18000103,1,"Saint-Crépin Ibouvillers - Ecole",49.262771,2.072769,,1,,Europe/Paris,,OLB, +OLB:SA:CTP18000104,1,"Centre",49.238329,2.07722,,1,,Europe/Paris,,OLB, +OLB:SA:CTP18000105,1,"Musignière",49.23632,2.07448,,1,,Europe/Paris,,OLB, +OLB:SA:CTP18000106,1,"Célio",49.22276,2.107331,,1,,Europe/Paris,,OLB, +OLB:SA:CTP18000107,1,"Les Vallées",49.214411,2.120356,,1,,Europe/Paris,,OLB, +OLB:SA:CTP18000108,1,"Bas",49.207344,2.122689,,1,,Europe/Paris,,OLB, +OLB:SA:CTP18000109,1,"Place",49.202074,2.120024,,1,,Europe/Paris,,OLB, +OLB:SA:CTP18000110,1,"Hénonville",49.207136,2.052837,,1,,Europe/Paris,,OLB, +OLB:SA:CTP18000111,1,"Bruxelles",49.21783,2.113292,,1,,Europe/Paris,,OLB, +OLI:SA:1000,1,"Eglise Du Marais",50.630875,3.007115,,1,,Europe/Paris,,OLI, +OLI:SA:1002,1,"Renovation",50.64378,2.980681,,1,,Europe/Paris,,OLI, +OLI:SA:1003,1,"Pont Superieur",50.644607,3.014056,,1,,Europe/Paris,,OLI, +OLI:SA:1004,1,"Maison Des Enfants",50.646282,2.994441,,1,,Europe/Paris,,OLI, +OLI:SA:1008,1,"Marais",50.630484,3.001383,,1,,Europe/Paris,,OLI, +OLI:SA:1009,1,"Blanchisseurs",50.62914,3.011068,,1,,Europe/Paris,,OLI, +OLI:SA:1011,1,"A.Thomas",50.647379,3.002426,,1,,Europe/Paris,,OLI, +OLI:SA:1014,1,"Croix Du Temple",50.633396,3.005357,,1,,Europe/Paris,,OLI, +OLI:SA:1019,1,"Clinique De La Mitterie",50.651121,2.99703,,1,,Europe/Paris,,OLI, +OLI:SA:102,1,"Jacques Cartier",50.696737,2.887876,,1,,Europe/Paris,,OLI, +OLI:SA:1020,1,"Hotel De Ville",50.639036,3.012415,,1,,Europe/Paris,,OLI, +OLI:SA:1025,1,"Canteleu",50.637012,3.024871,,1,,Europe/Paris,,OLI, +OLI:SA:1027,1,"Rabelais",50.640624,2.983801,,1,,Europe/Paris,,OLI, +OLI:SA:1034,1,"Bourg",50.645596,2.985149,,1,,Europe/Paris,,OLI, +OLI:SA:1036,1,"Mitterie",50.646938,3.007556,,1,,Europe/Paris,,OLI, +OLI:SA:1037,1,"Mairie",50.669823,2.990431,,1,,Europe/Paris,,OLI, +OLI:SA:1041,1,"Le Bocage",50.667641,2.992605,,1,,Europe/Paris,,OLI, +OLI:SA:1044,1,"Leclerc",50.610344,3.019894,,1,,Europe/Paris,,OLI, +OLI:SA:1049,1,"Guy Mocquet",50.602941,3.01204,,1,,Europe/Paris,,OLI, +OLI:SA:1050,1,"Mirabeau",50.611714,3.023536,,1,,Europe/Paris,,OLI, +OLI:SA:1056,1,"Chatelet",50.606287,3.010479,,1,,Europe/Paris,,OLI, +OLI:SA:1058,1,"College Descartes",50.608891,3.005044,,1,,Europe/Paris,,OLI, +OLI:SA:1061,1,"Port Fluvial",50.622426,3.015222,,1,,Europe/Paris,,OLI, +OLI:SA:1062,1,"La Paix",50.608358,3.008928,,1,,Europe/Paris,,OLI, +OLI:SA:1068,1,"Republique",50.608997,3.016901,,1,,Europe/Paris,,OLI, +OLI:SA:1071,1,"Eurasante Epi De Soil",50.602139,3.044689,,1,,Europe/Paris,,OLI, +OLI:SA:1078,1,"Les Oliveaux",50.606718,3.005367,,1,,Europe/Paris,,OLI, +OLI:SA:1083,1,"Bazinghien",50.619474,3.016931,,1,,Europe/Paris,,OLI, +OLI:SA:1084,1,"Barbusse",50.606252,3.015116,,1,,Europe/Paris,,OLI, +OLI:SA:1085,1,"Fresnoy",50.674106,3.226985,,1,,Europe/Paris,,OLI, +OLI:SA:1086,1,"Descartes Physicien",50.672107,3.22184,,1,,Europe/Paris,,OLI, +OLI:SA:1087,1,"Tour Eiffel",50.664835,3.215077,,1,,Europe/Paris,,OLI, +OLI:SA:1088,1,"Tonkin",50.674792,3.216354,,1,,Europe/Paris,,OLI, +OLI:SA:1091,1,"Saint Luc",50.672065,3.218917,,1,,Europe/Paris,,OLI, +OLI:SA:1092,1,"Desmulliez",50.670711,3.213755,,1,,Europe/Paris,,OLI, +OLI:SA:1093,1,"Agora",50.675109,3.209626,,1,,Europe/Paris,,OLI, +OLI:SA:1095,1,"Vert Pre",50.676953,3.215178,,1,,Europe/Paris,,OLI, +OLI:SA:1096,1,"Rue De Toufflers",50.668418,3.22718,,1,,Europe/Paris,,OLI, +OLI:SA:1099,1,"Pilaterie",50.652685,3.109604,,1,,Europe/Paris,,OLI, +OLI:SA:110,1,"Raymond Lis",50.69198,2.884604,,1,,Europe/Paris,,OLI, +OLI:SA:1105,1,"Le Quesne",50.673406,3.10672,,1,,Europe/Paris,,OLI, +OLI:SA:1109,1,"Montgolfier",50.663148,3.075105,,1,,Europe/Paris,,OLI, +OLI:SA:1110,1,"Verdun",50.672257,3.096723,,1,,Europe/Paris,,OLI, +OLI:SA:1113,1,"Clemenceau Hippodrome",50.66186,3.096734,,1,,Europe/Paris,,OLI, +OLI:SA:1114,1,"Mairie",50.672603,3.09286,,1,,Europe/Paris,,OLI, +OLI:SA:1119,1,"Barrois",50.669311,3.100122,,1,,Europe/Paris,,OLI, +OLI:SA:1120,1,"Acacias",50.664926,3.110047,,1,,Europe/Paris,,OLI, +OLI:SA:1121,1,"Bailly",50.6798,3.095242,,1,,Europe/Paris,,OLI, +OLI:SA:1123,1,"Place Tiers",50.65841,3.102058,,1,,Europe/Paris,,OLI, +OLI:SA:1124,1,"Foch",50.666473,3.103734,,1,,Europe/Paris,,OLI, +OLI:SA:1125,1,"Piscine",50.665543,3.087151,,1,,Europe/Paris,,OLI, +OLI:SA:1126,1,"Chateau Rouge",50.679735,3.114427,,1,,Europe/Paris,,OLI, +OLI:SA:1130,1,"Gladbeck",50.652796,3.096004,,1,,Europe/Paris,,OLI, +OLI:SA:1131,1,"Rue De L'Eglise",50.665211,3.079609,,1,,Europe/Paris,,OLI, +OLI:SA:1132,1,"Rouges Barres",50.654966,3.094654,,1,,Europe/Paris,,OLI, +OLI:SA:1133,1,"Place",50.676042,3.092362,,1,,Europe/Paris,,OLI, +OLI:SA:1134,1,"Brossolette",50.66037,3.094016,,1,,Europe/Paris,,OLI, +OLI:SA:1137,1,"Croise Laroche",50.664804,3.102339,,1,,Europe/Paris,,OLI, +OLI:SA:114,1,"Gare Annexe",50.691296,2.872863,,1,,Europe/Paris,,OLI, +OLI:SA:1141,1,"Pave Strategique",50.686688,3.09104,,1,,Europe/Paris,,OLI, +OLI:SA:1142,1,"Pont De Marcq",50.670724,3.077348,,1,,Europe/Paris,,OLI, +OLI:SA:1144,1,"Charcot",50.663743,3.083638,,1,,Europe/Paris,,OLI, +OLI:SA:1148,1,"Hautes Loges",50.668709,3.088652,,1,,Europe/Paris,,OLI, +OLI:SA:1151,1,"La Fayette",50.671493,3.089512,,1,,Europe/Paris,,OLI, +OLI:SA:1152,1,"Meunier",50.674418,3.084941,,1,,Europe/Paris,,OLI, +OLI:SA:1153,1,"Pont Blanc",50.671548,3.069936,,1,,Europe/Paris,,OLI, +OLI:SA:1155,1,"Chapelle St Roch",50.668475,3.072403,,1,,Europe/Paris,,OLI, +OLI:SA:1157,1,"Lazaro",50.680007,3.083429,,1,,Europe/Paris,,OLI, +OLI:SA:116,1,"Lycee D'Etat",50.687442,2.872073,,1,,Europe/Paris,,OLI, +OLI:SA:1160,1,"Cheval Blanc",50.682557,3.090329,,1,,Europe/Paris,,OLI, +OLI:SA:1161,1,"Eglise Saint Louis",50.659186,3.080677,,1,,Europe/Paris,,OLI, +OLI:SA:1164,1,"Pont Courroy",50.68146,3.10107,,1,,Europe/Paris,,OLI, +OLI:SA:1168,1,"Abbe Bonpain",50.657959,3.083354,,1,,Europe/Paris,,OLI, +OLI:SA:1169,1,"Loridan",50.700708,3.086521,,1,,Europe/Paris,,OLI, +OLI:SA:1170,1,"Chemin De Wervicq",50.676854,3.081081,,1,,Europe/Paris,,OLI, +OLI:SA:1171,1,"Cimetiere",50.67474,3.079257,,1,,Europe/Paris,,OLI, +OLI:SA:1175,1,"Vandenberghe",50.650385,3.095685,,1,,Europe/Paris,,OLI, +OLI:SA:1180,1,"Lalau",50.673969,3.067007,,1,,Europe/Paris,,OLI, +OLI:SA:1181,1,"Saint Jean De Dieu",50.666164,3.044029,,1,,Europe/Paris,,OLI, +OLI:SA:1183,1,"Les Alouettes",50.678644,3.062205,,1,,Europe/Paris,,OLI, +OLI:SA:1191,1,"Les Platanes",50.675245,3.049747,,1,,Europe/Paris,,OLI, +OLI:SA:1196,1,"Touquet",50.679022,3.063438,,1,,Europe/Paris,,OLI, +OLI:SA:1198,1,"Verdun",50.55395,2.865,,1,,Europe/Paris,,OLI, +OLI:SA:1199,1,"Rue Du Moisnil",50.551843,2.858177,,1,,Europe/Paris,,OLI, +OLI:SA:1201,1,"Route De Sainghin",50.55369,2.873235,,1,,Europe/Paris,,OLI, +OLI:SA:1202,1,"Rue De La Franquise",50.549908,2.851187,,1,,Europe/Paris,,OLI, +OLI:SA:1203,1,"Gare",50.548159,2.868178,,1,,Europe/Paris,,OLI, +OLI:SA:1208,1,"Mons Sarts",50.6422,3.099285,,1,,Europe/Paris,,OLI, +OLI:SA:1210,1,"Sabliere",50.644252,3.099627,,1,,Europe/Paris,,OLI, +OLI:SA:1214,1,"Bourgogne",50.645667,3.117297,,1,,Europe/Paris,,OLI, +OLI:SA:1216,1,"Coty",50.637373,3.116674,,1,,Europe/Paris,,OLI, +OLI:SA:1218,1,"Lavoisier",50.63477,3.106929,,1,,Europe/Paris,,OLI, +OLI:SA:1222,1,"Fort De Mons",50.642101,3.1194,,1,,Europe/Paris,,OLI, +OLI:SA:123,1,"Marechal Joffre",50.697651,2.886192,,1,,Europe/Paris,,OLI, +OLI:SA:1232,1,"Cimetiere",50.709093,3.127103,,1,,Europe/Paris,,OLI, +OLI:SA:1235,1,"Saint Francois",50.716583,3.138269,,1,,Europe/Paris,,OLI, +OLI:SA:1236,1,"Faidherbe",50.703717,3.142879,,1,,Europe/Paris,,OLI, +OLI:SA:1239,1,"Trois Suisses",50.698909,3.138904,,1,,Europe/Paris,,OLI, +OLI:SA:1243,1,"Lorthiois",50.714533,3.134832,,1,,Europe/Paris,,OLI, +OLI:SA:1245,1,"Isly",50.694584,3.132112,,1,,Europe/Paris,,OLI, +OLI:SA:1247,1,"Rue De Londres",50.702529,3.133849,,1,,Europe/Paris,,OLI, +OLI:SA:1252,1,"College Van Der Meersch",50.707225,3.128839,,1,,Europe/Paris,,OLI, +OLI:SA:1257,1,"Ferme Des Enfants",50.749161,3.154386,,1,,Europe/Paris,,OLI, +OLI:SA:1258,1,"Docks De L'Oise",50.753678,3.165658,,1,,Europe/Paris,,OLI, +OLI:SA:1259,1,"Z.I Tourcoing Nord",50.75672,3.16544,,1,,Europe/Paris,,OLI, +OLI:SA:1260,1,"College Jules Verne",50.748332,3.168425,,1,,Europe/Paris,,OLI, +OLI:SA:1265,1,"Centre",50.748591,3.15244,,1,,Europe/Paris,,OLI, +OLI:SA:1268,1,"Descartes",50.747073,3.162198,,1,,Europe/Paris,,OLI, +OLI:SA:1270,1,"Berquier",50.746245,3.174695,,1,,Europe/Paris,,OLI, +OLI:SA:1272,1,"Reckem",50.755306,3.158276,,1,,Europe/Paris,,OLI, +OLI:SA:1273,1,"Verne",50.749428,3.160159,,1,,Europe/Paris,,OLI, +OLI:SA:1278,1,"Cote D'Or",50.571975,3.031246,,1,,Europe/Paris,,OLI, +OLI:SA:1279,1,"Marcel Paul",50.567966,3.029472,,1,,Europe/Paris,,OLI, +OLI:SA:1282,1,"Moulin",50.57515,3.029825,,1,,Europe/Paris,,OLI, +OLI:SA:1283,1,"Lhermitte",50.573778,3.031257,,1,,Europe/Paris,,OLI, +OLI:SA:1286,1,"College Monod",50.670804,2.974367,,1,,Europe/Paris,,OLI, +OLI:SA:1290,1,"La Paix",50.66946,2.975705,,1,,Europe/Paris,,OLI, +OLI:SA:1291,1,"La Prevote",50.678133,2.963662,,1,,Europe/Paris,,OLI, +OLI:SA:1292,1,"Rue De Lomme",50.660864,2.976287,,1,,Europe/Paris,,OLI, +OLI:SA:1293,1,"Picardie",50.671101,2.970518,,1,,Europe/Paris,,OLI, +OLI:SA:1295,1,"Le Fresnel",50.680567,2.959316,,1,,Europe/Paris,,OLI, +OLI:SA:1298,1,"Le Bas",50.675204,2.966377,,1,,Europe/Paris,,OLI, +OLI:SA:130,1,"College Jean Rostand",50.687133,2.866916,,1,,Europe/Paris,,OLI, +OLI:SA:1300,1,"Limousin",50.672368,2.973667,,1,,Europe/Paris,,OLI, +OLI:SA:1302,1,"Europe",50.670778,2.974127,,1,,Europe/Paris,,OLI, +OLI:SA:1306,1,"Le Cheneau",50.724191,3.040442,,1,,Europe/Paris,,OLI, +OLI:SA:1307,1,"Clos Du Rivage",50.707962,3.002061,,1,,Europe/Paris,,OLI, +OLI:SA:1308,1,"Le Tilleul",50.724992,3.020784,,1,,Europe/Paris,,OLI, +OLI:SA:1310,1,"4 Bonniers",50.703909,2.984959,,1,,Europe/Paris,,OLI, +OLI:SA:1311,1,"Le Pont",50.710093,2.997767,,1,,Europe/Paris,,OLI, +OLI:SA:1312,1,"Les Olympiades",50.713775,3.007012,,1,,Europe/Paris,,OLI, +OLI:SA:1313,1,"Floriade Renaissance",50.719989,3.004016,,1,,Europe/Paris,,OLI, +OLI:SA:1316,1,"Blanche Porte",50.71738,2.996959,,1,,Europe/Paris,,OLI, +OLI:SA:1317,1,"Traversiere",50.716593,3.001583,,1,,Europe/Paris,,OLI, +OLI:SA:1318,1,"Le Pacau",50.725911,3.010044,,1,,Europe/Paris,,OLI, +OLI:SA:1319,1,"Le Plaquet",50.701842,2.980568,,1,,Europe/Paris,,OLI, +OLI:SA:132,1,"Hotel De Ville",50.68683,2.882797,,1,,Europe/Paris,,OLI, +OLI:SA:1320,1,"Vingtieme Siecle",50.703788,3.006102,,1,,Europe/Paris,,OLI, +OLI:SA:1321,1,"La Chapelle",50.723935,3.030166,,1,,Europe/Paris,,OLI, +OLI:SA:1322,1,"Centre",50.713494,2.999239,,1,,Europe/Paris,,OLI, +OLI:SA:1326,1,"Gare",50.708761,2.995277,,1,,Europe/Paris,,OLI, +OLI:SA:133,1,"Louis Bleriot",50.703284,2.887977,,1,,Europe/Paris,,OLI, +OLI:SA:1333,1,"Carnot",50.602236,3.097873,,1,,Europe/Paris,,OLI, +OLI:SA:1334,1,"Comtesse De Segur",50.602111,3.0904,,1,,Europe/Paris,,OLI, +OLI:SA:1335,1,"Saint Venant",50.60026,3.084988,,1,,Europe/Paris,,OLI, +OLI:SA:134,1,"Pierre Beregovoy",50.691442,2.880532,,1,,Europe/Paris,,OLI, +OLI:SA:1341,1,"Destoop",50.600118,3.080377,,1,,Europe/Paris,,OLI, +OLI:SA:1349,1,"Republique",50.598455,3.09852,,1,,Europe/Paris,,OLI, +OLI:SA:1352,1,"Ferrer",50.604152,3.094138,,1,,Europe/Paris,,OLI, +OLI:SA:1358,1,"Porte D'Halluin",50.767251,3.121095,,1,,Europe/Paris,,OLI, +OLI:SA:1359,1,"Cimetiere Du Blanc Four",50.735741,3.111498,,1,,Europe/Paris,,OLI, +OLI:SA:1363,1,"Dronckaert",50.740169,3.131666,,1,,Europe/Paris,,OLI, +OLI:SA:1366,1,"Broutteux",50.737233,3.12239,,1,,Europe/Paris,,OLI, +OLI:SA:1368,1,"La Montagne",50.738335,3.119736,,1,,Europe/Paris,,OLI, +OLI:SA:1376,1,"Centre Social",50.756338,3.120725,,1,,Europe/Paris,,OLI, +OLI:SA:1381,1,"Faubourg De Roncq",50.759548,3.120903,,1,,Europe/Paris,,OLI, +OLI:SA:1382,1,"Coubertin",50.680678,3.211092,,1,,Europe/Paris,,OLI, +OLI:SA:1387,1,"Carpeaux",50.67501,3.182521,,1,,Europe/Paris,,OLI, +OLI:SA:1388,1,"Nations Unies",50.697462,3.167846,,1,,Europe/Paris,,OLI, +OLI:SA:1393,1,"Boulevard De Metz",50.702669,3.181675,,1,,Europe/Paris,,OLI, +OLI:SA:140,1,"Le Bizet",50.705885,2.884051,,1,,Europe/Paris,,OLI, +OLI:SA:1401,1,"St Jean Baptiste",50.679341,3.178796,,1,,Europe/Paris,,OLI, +OLI:SA:1407,1,"Les Gobelins",50.694393,3.172116,,1,,Europe/Paris,,OLI, +OLI:SA:1408,1,"Centre Medical Barbieux",50.679804,3.169938,,1,,Europe/Paris,,OLI, +OLI:SA:1412,1,"Pdt Vincent Auriol",50.687168,3.175356,,1,,Europe/Paris,,OLI, +OLI:SA:1414,1,"Jules Guesde",50.686175,3.186748,,1,,Europe/Paris,,OLI, +OLI:SA:1415,1,"Flandre",50.700813,3.177718,,1,,Europe/Paris,,OLI, +OLI:SA:1416,1,"Pont Rouge",50.679804,3.196169,,1,,Europe/Paris,,OLI, +OLI:SA:1422,1,"Bol D'Air",50.672469,3.156237,,1,,Europe/Paris,,OLI, +OLI:SA:1427,1,"Condition Publique",50.691086,3.19135,,1,,Europe/Paris,,OLI, +OLI:SA:1428,1,"Ermitage",50.695412,3.169902,,1,,Europe/Paris,,OLI, +OLI:SA:143,1,"Cimetiere",50.694678,2.89305,,1,,Europe/Paris,,OLI, +OLI:SA:1433,1,"Les Arts",50.690282,3.161725,,1,,Europe/Paris,,OLI, +OLI:SA:1434,1,"College",50.69413,3.176391,,1,,Europe/Paris,,OLI, +OLI:SA:1435,1,"Carihem",50.686333,3.211813,,1,,Europe/Paris,,OLI, +OLI:SA:1439,1,"Rue D'Orchies",50.690232,3.200655,,1,,Europe/Paris,,OLI, +OLI:SA:1442,1,"Franklin",50.691035,3.194823,,1,,Europe/Paris,,OLI, +OLI:SA:1446,1,"Rue De Tourcoing",50.701798,3.172692,,1,,Europe/Paris,,OLI, +OLI:SA:1449,1,"Fosse Aux Chenes",50.699317,3.174755,,1,,Europe/Paris,,OLI, +OLI:SA:1452,1,"Coq Francais",50.68473,3.182939,,1,,Europe/Paris,,OLI, +OLI:SA:1453,1,"Charles De Gaulle",50.686621,3.169981,,1,,Europe/Paris,,OLI, +OLI:SA:1455,1,"Boulevard De Mulhouse",50.683884,3.191283,,1,,Europe/Paris,,OLI, +OLI:SA:1462,1,"Watt",50.688167,3.158753,,1,,Europe/Paris,,OLI, +OLI:SA:1465,1,"Moliere",50.690902,3.19845,,1,,Europe/Paris,,OLI, +OLI:SA:1468,1,"Rue De Denain",50.684058,3.177605,,1,,Europe/Paris,,OLI, +OLI:SA:1469,1,"Hommelet",50.692893,3.184278,,1,,Europe/Paris,,OLI, +OLI:SA:147,1,"Deffontaines",50.609797,3.22945,,1,,Europe/Paris,,OLI, +OLI:SA:1471,1,"Jean Moulin",50.684724,3.172011,,1,,Europe/Paris,,OLI, +OLI:SA:1472,1,"Epeule Montesquieu",50.684012,3.163161,,1,,Europe/Paris,,OLI, +OLI:SA:1476,1,"Leon Marlot",50.673318,3.192387,,1,,Europe/Paris,,OLI, +OLI:SA:1482,1,"Place Chaptal",50.694592,3.192879,,1,,Europe/Paris,,OLI, +OLI:SA:1484,1,"Rue D'Alger",50.701462,3.191697,,1,,Europe/Paris,,OLI, +OLI:SA:1488,1,"Sarrail",50.691443,3.169271,,1,,Europe/Paris,,OLI, +OLI:SA:1491,1,"Square Bartholdi",50.672911,3.179944,,1,,Europe/Paris,,OLI, +OLI:SA:1492,1,"Rue De L'Ouest",50.693536,3.159378,,1,,Europe/Paris,,OLI, +OLI:SA:1493,1,"Pellart",50.695538,3.181767,,1,,Europe/Paris,,OLI, +OLI:SA:1495,1,"Zola",50.673186,3.197198,,1,,Europe/Paris,,OLI, +OLI:SA:1496,1,"Rollin",50.705182,3.18015,,1,,Europe/Paris,,OLI, +OLI:SA:150,1,"Gare",50.618305,3.233973,,1,,Europe/Paris,,OLI, +OLI:SA:1503,1,"Fraternite",50.682284,3.194348,,1,,Europe/Paris,,OLI, +OLI:SA:1507,1,"Bois Le Duc",50.688609,3.210751,,1,,Europe/Paris,,OLI, +OLI:SA:1510,1,"Hopital Victor Provo",50.681022,3.167615,,1,,Europe/Paris,,OLI, +OLI:SA:1512,1,"Trois Ponts",50.684815,3.200618,,1,,Europe/Paris,,OLI, +OLI:SA:1517,1,"Square Des Pres",50.685576,3.191665,,1,,Europe/Paris,,OLI, +OLI:SA:1518,1,"Buisine",50.688295,3.188902,,1,,Europe/Paris,,OLI, +OLI:SA:1519,1,"Alsace",50.700591,3.161274,,1,,Europe/Paris,,OLI, +OLI:SA:152,1,"Sin",50.614372,3.230772,,1,,Europe/Paris,,OLI, +OLI:SA:1521,1,"Boulevard De Reims",50.678294,3.185047,,1,,Europe/Paris,,OLI, +OLI:SA:1524,1,"Square Des Platanes",50.676707,3.187533,,1,,Europe/Paris,,OLI, +OLI:SA:1538,1,"College Van Der Meersch",50.680659,3.204753,,1,,Europe/Paris,,OLI, +OLI:SA:1541,1,"Roubaix Grand Place",50.691598,3.174202,,1,,Europe/Paris,,OLI, +OLI:SA:1544,1,"Le Hutin",50.706565,3.181205,,1,,Europe/Paris,,OLI, +OLI:SA:1551,1,"Boulevard De Douai",50.681054,3.168223,,1,,Europe/Paris,,OLI, +OLI:SA:1553,1,"La Paix",50.697564,3.18197,,1,,Europe/Paris,,OLI, +OLI:SA:1559,1,"Cimetiere",50.7013,3.187824,,1,,Europe/Paris,,OLI, +OLI:SA:1561,1,"Louis Loucheur",50.677849,3.176541,,1,,Europe/Paris,,OLI, +OLI:SA:1569,1,"Spriet",50.67412,3.185456,,1,,Europe/Paris,,OLI, +OLI:SA:1578,1,"Place",50.645877,3.220712,,1,,Europe/Paris,,OLI, +OLI:SA:1579,1,"Lotissement Nouveau Monde",50.557145,2.909028,,1,,Europe/Paris,,OLI, +OLI:SA:1580,1,"Place De Gaulle",50.562976,2.899109,,1,,Europe/Paris,,OLI, +OLI:SA:1581,1,"Poste",50.562729,2.900191,,1,,Europe/Paris,,OLI, +OLI:SA:1582,1,"Ocron",50.561722,2.888884,,1,,Europe/Paris,,OLI, +OLI:SA:1584,1,"Marie Curie",50.562644,2.903063,,1,,Europe/Paris,,OLI, +OLI:SA:1585,1,"Republique",50.559668,2.904508,,1,,Europe/Paris,,OLI, +OLI:SA:1586,1,"Rue Du 8 Mai 45",50.569578,2.891464,,1,,Europe/Paris,,OLI, +OLI:SA:1588,1,"Renovation",50.565911,2.894916,,1,,Europe/Paris,,OLI, +OLI:SA:1590,1,"Lardé",50.55336,2.914491,,1,,Europe/Paris,,OLI, +OLI:SA:1591,1,"Gare De Don",50.551336,2.913721,,1,,Europe/Paris,,OLI, +OLI:SA:1594,1,"Faidherbe",50.652697,3.052389,,1,,Europe/Paris,,OLI, +OLI:SA:1596,1,"Chardonnerets",50.66461,3.031827,,1,,Europe/Paris,,OLI, +OLI:SA:1601,1,"Yser",50.660941,3.036588,,1,,Europe/Paris,,OLI, +OLI:SA:1604,1,"Mairie",50.660843,3.050741,,1,,Europe/Paris,,OLI, +OLI:SA:1607,1,"Gare",50.655011,3.050954,,1,,Europe/Paris,,OLI, +OLI:SA:1611,1,"Resistance",50.658162,3.04424,,1,,Europe/Paris,,OLI, +OLI:SA:1613,1,"Grand St Andre",50.664624,3.035694,,1,,Europe/Paris,,OLI, +OLI:SA:1620,1,"Place Des Ecoles",50.532978,2.840513,,1,,Europe/Paris,,OLI, +OLI:SA:1626,1,"Rue Pasteur",50.53529,2.841324,,1,,Europe/Paris,,OLI, +OLI:SA:1628,1,"Saint Michel Sur Loire",50.531516,2.840583,,1,,Europe/Paris,,OLI, +OLI:SA:1631,1,"Hotel De Ville",50.59027,2.963506,,1,,Europe/Paris,,OLI, +OLI:SA:1632,1,"Gaston Slosse",50.597095,2.967382,,1,,Europe/Paris,,OLI, +OLI:SA:1633,1,"Ramponneau",50.593971,2.958944,,1,,Europe/Paris,,OLI, +OLI:SA:1634,1,"Faidherbe",50.594393,2.965953,,1,,Europe/Paris,,OLI, +OLI:SA:1635,1,"Rue De Wavrin",50.593362,2.949691,,1,,Europe/Paris,,OLI, +OLI:SA:1636,1,"Marais",50.585811,2.967198,,1,,Europe/Paris,,OLI, +OLI:SA:1640,1,"Gare",50.592535,2.960969,,1,,Europe/Paris,,OLI, +OLI:SA:1642,1,"Fenelon",50.548756,3.028362,,1,,Europe/Paris,,OLI, +OLI:SA:1646,1,"La Mouchonniere",50.541012,3.027002,,1,,Europe/Paris,,OLI, +OLI:SA:1647,1,"Ecole",50.548582,3.043158,,1,,Europe/Paris,,OLI, +OLI:SA:1652,1,"Vieux Moulin",50.552193,3.039336,,1,,Europe/Paris,,OLI, +OLI:SA:1654,1,"Saint Piat",50.549576,3.03409,,1,,Europe/Paris,,OLI, +OLI:SA:1656,1,"Centre Hospitalier",50.545932,3.016693,,1,,Europe/Paris,,OLI, +OLI:SA:1659,1,"Prevert",50.540623,3.022689,,1,,Europe/Paris,,OLI, +OLI:SA:1660,1,"Hentges",50.553589,3.031949,,1,,Europe/Paris,,OLI, +OLI:SA:1661,1,"Zi Rouge Bouton",50.564966,3.04122,,1,,Europe/Paris,,OLI, +OLI:SA:1663,1,"Le Riez",50.545703,3.038246,,1,,Europe/Paris,,OLI, +OLI:SA:1664,1,"Cafeteria",50.565744,3.03847,,1,,Europe/Paris,,OLI, +OLI:SA:1667,1,"Les Euwis",50.541476,3.01621,,1,,Europe/Paris,,OLI, +OLI:SA:1670,1,"Eglise",50.551541,3.03085,,1,,Europe/Paris,,OLI, +OLI:SA:1675,1,"Burgault",50.547615,3.039737,,1,,Europe/Paris,,OLI, +OLI:SA:1681,1,"Jude Blanckaert",50.542651,3.027433,,1,,Europe/Paris,,OLI, +OLI:SA:1689,1,"Petite Couture",50.628685,2.982151,,1,,Europe/Paris,,OLI, +OLI:SA:1691,1,"Boutillerie",50.628491,2.969329,,1,,Europe/Paris,,OLI, +OLI:SA:1693,1,"Quatre Ormeaux",50.629397,2.974615,,1,,Europe/Paris,,OLI, +OLI:SA:1697,1,"Muchembus",50.625606,2.984128,,1,,Europe/Paris,,OLI, +OLI:SA:1700,1,"Parc D'Activites",50.566531,3.069863,,1,,Europe/Paris,,OLI, +OLI:SA:1701,1,"Mairie",50.57604,3.053012,,1,,Europe/Paris,,OLI, +OLI:SA:1702,1,"Pasteur",50.56846,3.055946,,1,,Europe/Paris,,OLI, +OLI:SA:1703,1,"Mulier",50.56773,3.059725,,1,,Europe/Paris,,OLI, +OLI:SA:1704,1,"Villa Saint Eloi",50.579367,3.050143,,1,,Europe/Paris,,OLI, +OLI:SA:1705,1,"Eglise",50.57126,3.054324,,1,,Europe/Paris,,OLI, +OLI:SA:1707,1,"Trieu De Quesnoy",50.668973,3.233485,,1,,Europe/Paris,,OLI, +OLI:SA:1708,1,"Le Pincon",50.657672,3.21951,,1,,Europe/Paris,,OLI, +OLI:SA:1709,1,"Meunier",50.663382,3.216364,,1,,Europe/Paris,,OLI, +OLI:SA:1710,1,"Mont Saint Bernard",50.66078,3.225224,,1,,Europe/Paris,,OLI, +OLI:SA:1711,1,"Bon Poste",50.661393,3.218587,,1,,Europe/Paris,,OLI, +OLI:SA:1712,1,"Toufflers Douane",50.661336,3.232727,,1,,Europe/Paris,,OLI, +OLI:SA:1713,1,"Place",50.661105,3.228715,,1,,Europe/Paris,,OLI, +OLI:SA:1715,1,"Calais",50.717391,3.151803,,1,,Europe/Paris,,OLI, +OLI:SA:1718,1,"Poste",50.718974,3.163372,,1,,Europe/Paris,,OLI, +OLI:SA:1719,1,"Bourgogne",50.739449,3.179556,,1,,Europe/Paris,,OLI, +OLI:SA:1721,1,"Hondschoote",50.714302,3.164538,,1,,Europe/Paris,,OLI, +OLI:SA:1722,1,"Jean Xxiii",50.704355,3.155136,,1,,Europe/Paris,,OLI, +OLI:SA:1731,1,"Jacquard",50.727563,3.175865,,1,,Europe/Paris,,OLI, +OLI:SA:1736,1,"C.H. Dron",50.74364,3.180517,,1,,Europe/Paris,,OLI, +OLI:SA:1746,1,"Pont Hydraulique",50.712609,3.156062,,1,,Europe/Paris,,OLI, +OLI:SA:1747,1,"Mirabeau",50.736214,3.18842,,1,,Europe/Paris,,OLI, +OLI:SA:1748,1,"Avenue Millet",50.725044,3.150134,,1,,Europe/Paris,,OLI, +OLI:SA:1749,1,"Gare",50.717107,3.167551,,1,,Europe/Paris,,OLI, +OLI:SA:1750,1,"Braille",50.72907,3.13098,,1,,Europe/Paris,,OLI, +OLI:SA:1754,1,"Descat",50.694835,3.151506,,1,,Europe/Paris,,OLI, +OLI:SA:1756,1,"Anor",50.723939,3.136593,,1,,Europe/Paris,,OLI, +OLI:SA:1760,1,"Renaix",50.722152,3.17097,,1,,Europe/Paris,,OLI, +OLI:SA:1764,1,"Tossee",50.709266,3.167816,,1,,Europe/Paris,,OLI, +OLI:SA:1770,1,"Beyens",50.742503,3.181516,,1,,Europe/Paris,,OLI, +OLI:SA:1771,1,"Marliere",50.737219,3.189681,,1,,Europe/Paris,,OLI, +OLI:SA:1778,1,"Saint Joseph",50.7308,3.178689,,1,,Europe/Paris,,OLI, +OLI:SA:1779,1,"Tilleul",50.718834,3.169473,,1,,Europe/Paris,,OLI, +OLI:SA:1781,1,"Raspail",50.734789,3.14259,,1,,Europe/Paris,,OLI, +OLI:SA:1784,1,"Voltaire",50.726528,3.128721,,1,,Europe/Paris,,OLI, +OLI:SA:1787,1,"Virolois",50.724938,3.174069,,1,,Europe/Paris,,OLI, +OLI:SA:1788,1,"Pont Du Blanc Seau",50.695157,3.146116,,1,,Europe/Paris,,OLI, +OLI:SA:1789,1,"Roitelet",50.738957,3.175435,,1,,Europe/Paris,,OLI, +OLI:SA:1798,1,"Haubourdin",50.717663,3.144616,,1,,Europe/Paris,,OLI, +OLI:SA:1799,1,"Villas",50.696605,3.152467,,1,,Europe/Paris,,OLI, +OLI:SA:180,1,"Fort De Bondues",50.691455,3.087427,,1,,Europe/Paris,,OLI, +OLI:SA:1800,1,"Conservatoire",50.72429,3.162513,,1,,Europe/Paris,,OLI, +OLI:SA:1803,1,"Les Francs",50.718731,3.141765,,1,,Europe/Paris,,OLI, +OLI:SA:1804,1,"Fresnoy",50.699668,3.155822,,1,,Europe/Paris,,OLI, +OLI:SA:1805,1,"Mercure",50.705063,3.160543,,1,,Europe/Paris,,OLI, +OLI:SA:1808,1,"Lemire",50.722792,3.139245,,1,,Europe/Paris,,OLI, +OLI:SA:1809,1,"Colbert",50.725395,3.156809,,1,,Europe/Paris,,OLI, +OLI:SA:1813,1,"Les Arcades",50.719783,3.161817,,1,,Europe/Paris,,OLI, +OLI:SA:1816,1,"Carliers",50.711278,3.159332,,1,,Europe/Paris,,OLI, +OLI:SA:1818,1,"Phalempins",50.732394,3.157729,,1,,Europe/Paris,,OLI, +OLI:SA:1822,1,"Gare De Tourcoing (Tourcoing Sebastopol)",50.71662,3.162584,,1,,Europe/Paris,,OLI, +OLI:SA:1823,1,"Lumiere",50.736078,3.142964,,1,,Europe/Paris,,OLI, +OLI:SA:1829,1,"Lycee Gambetta",50.712957,3.159049,,1,,Europe/Paris,,OLI, +OLI:SA:183,1,"Petit Bondues",50.719006,3.081978,,1,,Europe/Paris,,OLI, +OLI:SA:1833,1,"Einstein",50.717575,3.14015,,1,,Europe/Paris,,OLI, +OLI:SA:1834,1,"Vauban",50.70172,3.153355,,1,,Europe/Paris,,OLI, +OLI:SA:1835,1,"Parc Des Francs",50.720582,3.141258,,1,,Europe/Paris,,OLI, +OLI:SA:1836,1,"Parc Clemenceau",50.727581,3.148931,,1,,Europe/Paris,,OLI, +OLI:SA:1837,1,"Risquons Tout",50.748018,3.180393,,1,,Europe/Paris,,OLI, +OLI:SA:1838,1,"Watt",50.728837,3.13646,,1,,Europe/Paris,,OLI, +OLI:SA:1845,1,"O. De Bousbecque",50.741828,3.1846,,1,,Europe/Paris,,OLI, +OLI:SA:1851,1,"Victoire",50.71776,3.157164,,1,,Europe/Paris,,OLI, +OLI:SA:1859,1,"Berthelot",50.724436,3.182001,,1,,Europe/Paris,,OLI, +OLI:SA:1860,1,"Austerlitz",50.718202,3.153936,,1,,Europe/Paris,,OLI, +OLI:SA:1865,1,"La Forgette",50.746675,3.177487,,1,,Europe/Paris,,OLI, +OLI:SA:1866,1,"Amsterdam",50.717464,3.135119,,1,,Europe/Paris,,OLI, +OLI:SA:1867,1,"Touquet",50.722252,3.181329,,1,,Europe/Paris,,OLI, +OLI:SA:1869,1,"Juin",50.739509,3.186582,,1,,Europe/Paris,,OLI, +OLI:SA:187,1,"Les Fougeres",50.7131,3.130302,,1,,Europe/Paris,,OLI, +OLI:SA:1873,1,"Croix Rouge",50.732079,3.18052,,1,,Europe/Paris,,OLI, +OLI:SA:1874,1,"Ma Campagne",50.709868,3.152867,,1,,Europe/Paris,,OLI, +OLI:SA:1875,1,"Point Central",50.706989,3.156916,,1,,Europe/Paris,,OLI, +OLI:SA:1876,1,"Anatole France",50.731956,3.136849,,1,,Europe/Paris,,OLI, +OLI:SA:1878,1,"P.N. De Tressin",50.611621,3.19098,,1,,Europe/Paris,,OLI, +OLI:SA:1879,1,"Place",50.616632,3.191573,,1,,Europe/Paris,,OLI, +OLI:SA:1880,1,"Gressart",50.623975,3.195999,,1,,Europe/Paris,,OLI, +OLI:SA:1881,1,"Petit Paris",50.609414,3.180594,,1,,Europe/Paris,,OLI, +OLI:SA:1883,1,"Bicentenaire",50.621213,3.195797,,1,,Europe/Paris,,OLI, +OLI:SA:1884,1,"Z I Vendeville",50.579114,3.085362,,1,,Europe/Paris,,OLI, +OLI:SA:1885,1,"Mairie",50.575441,3.078587,,1,,Europe/Paris,,OLI, +OLI:SA:1886,1,"Les Ormeaux",50.57455,3.074531,,1,,Europe/Paris,,OLI, +OLI:SA:1887,1,"Hameau De L'Europe",50.573794,3.071871,,1,,Europe/Paris,,OLI, +OLI:SA:1888,1,"Eglise",50.576275,3.081558,,1,,Europe/Paris,,OLI, +OLI:SA:1894,1,"Fontaine",50.685929,2.997857,,1,,Europe/Paris,,OLI, +OLI:SA:1895,1,"Fort De Lompret",50.673737,2.984681,,1,,Europe/Paris,,OLI, +OLI:SA:1896,1,"Chemin De Sainghin",50.699903,3.011148,,1,,Europe/Paris,,OLI, +OLI:SA:1900,1,"Ladriere",50.631039,3.128126,,1,,Europe/Paris,,OLI, +OLI:SA:1901,1,"Stadium",50.631015,3.134726,,1,,Europe/Paris,,OLI, +OLI:SA:1903,1,"Triolo",50.616294,3.14164,,1,,Europe/Paris,,OLI, +OLI:SA:1905,1,"Pont Du Breucq",50.666804,3.141861,,1,,Europe/Paris,,OLI, +OLI:SA:1907,1,"Versailles",50.614628,3.128755,,1,,Europe/Paris,,OLI, +OLI:SA:1914,1,"Bois Blancs",50.619274,3.141293,,1,,Europe/Paris,,OLI, +OLI:SA:1916,1,"Musee Du Terroir",50.625867,3.153668,,1,,Europe/Paris,,OLI, +OLI:SA:1917,1,"Lafargue",50.668823,3.143135,,1,,Europe/Paris,,OLI, +OLI:SA:1918,1,"Justice",50.621017,3.150501,,1,,Europe/Paris,,OLI, +OLI:SA:1921,1,"Petit Boulevard",50.626139,3.143731,,1,,Europe/Paris,,OLI, +OLI:SA:1924,1,"Piscine Du Triolo",50.613436,3.147939,,1,,Europe/Paris,,OLI, +OLI:SA:1928,1,"Horizon",50.6052,3.15763,,1,,Europe/Paris,,OLI, +OLI:SA:1930,1,"Cocteau",50.645078,3.165043,,1,,Europe/Paris,,OLI, +OLI:SA:1934,1,"Montalembert",50.624984,3.158392,,1,,Europe/Paris,,OLI, +OLI:SA:1939,1,"Courteline",50.645156,3.161475,,1,,Europe/Paris,,OLI, +OLI:SA:1945,1,"College Moliere",50.657902,3.145287,,1,,Europe/Paris,,OLI, +OLI:SA:1948,1,"Fiacres",50.636118,3.126443,,1,,Europe/Paris,,OLI, +OLI:SA:1950,1,"Val Boise",50.608858,3.168672,,1,,Europe/Paris,,OLI, +OLI:SA:1952,1,"Contrescarpe",50.644071,3.164067,,1,,Europe/Paris,,OLI, +OLI:SA:1954,1,"La Fontaine",50.656722,3.15008,,1,,Europe/Paris,,OLI, +OLI:SA:1957,1,"Louis Constant",50.655394,3.13774,,1,,Europe/Paris,,OLI, +OLI:SA:1958,1,"Bouderiez",50.619044,3.147804,,1,,Europe/Paris,,OLI, +OLI:SA:1961,1,"Florence",50.631791,3.125543,,1,,Europe/Paris,,OLI, +OLI:SA:1962,1,"Parmentier",50.639057,3.134022,,1,,Europe/Paris,,OLI, +OLI:SA:1963,1,"Baudouin Ix",50.627323,3.139533,,1,,Europe/Paris,,OLI, +OLI:SA:1968,1,"Les Pres-E. Pisani",50.650345,3.126386,,1,,Europe/Paris,,OLI, +OLI:SA:1969,1,"Jean Jaures",50.658575,3.135519,,1,,Europe/Paris,,OLI, +OLI:SA:197,1,"Le Christ",50.724458,3.080773,,1,,Europe/Paris,,OLI, +OLI:SA:1971,1,"Pont De Bois",50.62484,3.128197,,1,,Europe/Paris,,OLI, +OLI:SA:1973,1,"Boulevard De Mons",50.643748,3.135409,,1,,Europe/Paris,,OLI, +OLI:SA:1974,1,"Village",50.619137,3.159481,,1,,Europe/Paris,,OLI, +OLI:SA:198,1,"N. Segard",50.70492,3.09455,,1,,Europe/Paris,,OLI, +OLI:SA:1982,1,"Le Sart",50.663307,3.138954,,1,,Europe/Paris,,OLI, +OLI:SA:1983,1,"Verger",50.60497,3.147505,,1,,Europe/Paris,,OLI, +OLI:SA:1984,1,"Tradition",50.614693,3.142333,,1,,Europe/Paris,,OLI, +OLI:SA:1990,1,"Cite Babylone",50.65673,3.143335,,1,,Europe/Paris,,OLI, +OLI:SA:1994,1,"Pont De Croix",50.671477,3.144688,,1,,Europe/Paris,,OLI, +OLI:SA:1997,1,"Planche Epinoy",50.664357,3.145815,,1,,Europe/Paris,,OLI, +OLI:SA:2004,1,"Moulin D'Ascq",50.617367,3.154418,,1,,Europe/Paris,,OLI, +OLI:SA:2006,1,"Chappe",50.644047,3.12654,,1,,Europe/Paris,,OLI, +OLI:SA:2007,1,"Poste D'Annappes",50.625096,3.146774,,1,,Europe/Paris,,OLI, +OLI:SA:2008,1,"Catel",50.660222,3.13611,,1,,Europe/Paris,,OLI, +OLI:SA:2010,1,"Rue De Babylone",50.657484,3.140483,,1,,Europe/Paris,,OLI, +OLI:SA:2011,1,"Peupliers",50.653621,3.156436,,1,,Europe/Paris,,OLI, +OLI:SA:2014,1,"Pave Bleu",50.646078,3.135743,,1,,Europe/Paris,,OLI, +OLI:SA:2018,1,"Comices",50.641363,3.153117,,1,,Europe/Paris,,OLI, +OLI:SA:2019,1,"Petit Paradis",50.68245,3.052391,,1,,Europe/Paris,,OLI, +OLI:SA:202,1,"Le Golf",50.6999,3.071609,,1,,Europe/Paris,,OLI, +OLI:SA:2021,1,"Chemin Du Fort",50.694805,3.021571,,1,,Europe/Paris,,OLI, +OLI:SA:2022,1,"Maisons Militaires",50.691759,3.028985,,1,,Europe/Paris,,OLI, +OLI:SA:2025,1,"Route De Linselles",50.709236,3.061237,,1,,Europe/Paris,,OLI, +OLI:SA:2026,1,"Agrippin",50.686867,3.037643,,1,,Europe/Paris,,OLI, +OLI:SA:2028,1,"Bouverie",50.686789,3.059033,,1,,Europe/Paris,,OLI, +OLI:SA:2030,1,"Mairie",50.686942,3.052766,,1,,Europe/Paris,,OLI, +OLI:SA:2031,1,"P.A. Du Moulin",50.685235,3.061016,,1,,Europe/Paris,,OLI, +OLI:SA:2032,1,"Rue D'Ypres",50.683163,3.04081,,1,,Europe/Paris,,OLI, +OLI:SA:2035,1,"Le Complivois",50.68901,3.056495,,1,,Europe/Paris,,OLI, +OLI:SA:2036,1,"Pare",50.684293,3.045486,,1,,Europe/Paris,,OLI, +OLI:SA:2040,1,"Sainte Barbe",50.74395,2.970651,,1,,Europe/Paris,,OLI, +OLI:SA:2041,1,"Le Hel",50.750256,2.984218,,1,,Europe/Paris,,OLI, +OLI:SA:2043,1,"Mairie",50.747229,2.951637,,1,,Europe/Paris,,OLI, +OLI:SA:2044,1,"Hotel De Ville",50.670269,3.131824,,1,,Europe/Paris,,OLI, +OLI:SA:2047,1,"Pont De Wasquehal",50.664523,3.121416,,1,,Europe/Paris,,OLI, +OLI:SA:2052,1,"Saint Clement",50.686765,3.144145,,1,,Europe/Paris,,OLI, +OLI:SA:2060,1,"Leo Lagrange",50.683662,3.138645,,1,,Europe/Paris,,OLI, +OLI:SA:2065,1,"Clemenceau",50.681675,3.139347,,1,,Europe/Paris,,OLI, +OLI:SA:2071,1,"Pave De Lille",50.664009,3.130186,,1,,Europe/Paris,,OLI, +OLI:SA:2073,1,"La Terrasse",50.664027,3.126037,,1,,Europe/Paris,,OLI, +OLI:SA:2080,1,"Ribot",50.684518,3.143473,,1,,Europe/Paris,,OLI, +OLI:SA:2084,1,"Lamartine",50.688708,3.133614,,1,,Europe/Paris,,OLI, +OLI:SA:2085,1,"Sentier Des Briques",50.690127,3.147235,,1,,Europe/Paris,,OLI, +OLI:SA:2086,1,"Cartelot",50.683757,3.119586,,1,,Europe/Paris,,OLI, +OLI:SA:2087,1,"Centre",50.670742,3.127922,,1,,Europe/Paris,,OLI, +OLI:SA:2089,1,"Grand Cottignies",50.687065,3.124029,,1,,Europe/Paris,,OLI, +OLI:SA:2095,1,"Salengro",50.582961,3.033357,,1,,Europe/Paris,,OLI, +OLI:SA:2096,1,"Amiteuse",50.584277,3.0512,,1,,Europe/Paris,,OLI, +OLI:SA:2097,1,"Creps",50.581098,3.039291,,1,,Europe/Paris,,OLI, +OLI:SA:2105,1,"Guillain",50.587712,3.041934,,1,,Europe/Paris,,OLI, +OLI:SA:2109,1,"Hotel De Ville",50.588008,3.05138,,1,,Europe/Paris,,OLI, +OLI:SA:2124,1,"Marechal Joffre",50.714476,3.174628,,1,,Europe/Paris,,OLI, +OLI:SA:2125,1,"Grimomprez",50.716212,3.194945,,1,,Europe/Paris,,OLI, +OLI:SA:2126,1,"Winhoutte",50.716389,3.2005,,1,,Europe/Paris,,OLI, +OLI:SA:2128,1,"Foch",50.705157,3.231027,,1,,Europe/Paris,,OLI, +OLI:SA:2129,1,"Mont A Leux",50.722063,3.190594,,1,,Europe/Paris,,OLI, +OLI:SA:2130,1,"Cite A. Prouvost",50.709614,3.194436,,1,,Europe/Paris,,OLI, +OLI:SA:2131,1,"Pont Du Sartel",50.69237,3.205281,,1,,Europe/Paris,,OLI, +OLI:SA:2132,1,"Savary",50.708992,3.198804,,1,,Europe/Paris,,OLI, +OLI:SA:2136,1,"La Fontaine",50.711929,3.195648,,1,,Europe/Paris,,OLI, +OLI:SA:2138,1,"Cimetiere Intercommunal",50.696517,3.226368,,1,,Europe/Paris,,OLI, +OLI:SA:2139,1,"Chardonnet",50.717788,3.184828,,1,,Europe/Paris,,OLI, +OLI:SA:2140,1,"Chateau D'Or",50.708568,3.23445,,1,,Europe/Paris,,OLI, +OLI:SA:2141,1,"Ma Campagne",50.704155,3.204201,,1,,Europe/Paris,,OLI, +OLI:SA:2143,1,"Carriere Andre",50.70928,3.230282,,1,,Europe/Paris,,OLI, +OLI:SA:2147,1,"Sapin Vert",50.714995,3.180104,,1,,Europe/Paris,,OLI, +OLI:SA:2148,1,"Stephenson",50.696111,3.209145,,1,,Europe/Paris,,OLI, +OLI:SA:2149,1,"Mendes France",50.700625,3.231356,,1,,Europe/Paris,,OLI, +OLI:SA:2150,1,"Centre",50.703169,3.214339,,1,,Europe/Paris,,OLI, +OLI:SA:2155,1,"Parc Du Lion",50.706782,3.209515,,1,,Europe/Paris,,OLI, +OLI:SA:2156,1,"Flandre",50.708167,3.227875,,1,,Europe/Paris,,OLI, +OLI:SA:2157,1,"Hotel De Ville",50.702407,3.215456,,1,,Europe/Paris,,OLI, +OLI:SA:216,1,"Aerodrome",50.687489,3.086125,,1,,Europe/Paris,,OLI, +OLI:SA:2161,1,"La Martinoire",50.718491,3.188287,,1,,Europe/Paris,,OLI, +OLI:SA:2163,1,"Avelin",50.696873,3.225484,,1,,Europe/Paris,,OLI, +OLI:SA:2164,1,"De Gaulle",50.703284,3.219652,,1,,Europe/Paris,,OLI, +OLI:SA:217,1,"Carrel",50.721498,3.129941,,1,,Europe/Paris,,OLI, +OLI:SA:2173,1,"Stalingrad",50.697675,3.21115,,1,,Europe/Paris,,OLI, +OLI:SA:2174,1,"Saint Vincent De Paul",50.707395,3.19629,,1,,Europe/Paris,,OLI, +OLI:SA:2175,1,"Vallon",50.704467,3.225944,,1,,Europe/Paris,,OLI, +OLI:SA:2177,1,"La Houzarde",50.710407,3.233113,,1,,Europe/Paris,,OLI, +OLI:SA:2180,1,"Pn Cartigny",50.702893,3.194772,,1,,Europe/Paris,,OLI, +OLI:SA:2183,1,"Vieux Bureau",50.723788,3.190242,,1,,Europe/Paris,,OLI, +OLI:SA:2185,1,"Moulin",50.698901,3.212852,,1,,Europe/Paris,,OLI, +OLI:SA:2186,1,"Place",50.701092,3.215037,,1,,Europe/Paris,,OLI, +OLI:SA:2188,1,"Curie",50.706535,3.238976,,1,,Europe/Paris,,OLI, +OLI:SA:219,1,"Chateau D'Eau",50.720655,3.109964,,1,,Europe/Paris,,OLI, +OLI:SA:2190,1,"Hopital",50.701963,3.221239,,1,,Europe/Paris,,OLI, +OLI:SA:2194,1,"Saint Lievin",50.705164,3.222553,,1,,Europe/Paris,,OLI, +OLI:SA:2195,1,"Jacquard",50.717701,3.197556,,1,,Europe/Paris,,OLI, +OLI:SA:2197,1,"Vieille Place",50.703252,3.210202,,1,,Europe/Paris,,OLI, +OLI:SA:2199,1,"Place Thomas",50.709714,3.207038,,1,,Europe/Paris,,OLI, +OLI:SA:2200,1,"College Saint Joseph",50.701584,3.219015,,1,,Europe/Paris,,OLI, +OLI:SA:2203,1,"D'Hondt",50.704747,3.204183,,1,,Europe/Paris,,OLI, +OLI:SA:2204,1,"Carnot",50.696312,3.202215,,1,,Europe/Paris,,OLI, +OLI:SA:2205,1,"Wagner",50.713253,3.185626,,1,,Europe/Paris,,OLI, +OLI:SA:2206,1,"Martelotte",50.701812,3.239696,,1,,Europe/Paris,,OLI, +OLI:SA:2208,1,"Centre Commercial",50.698935,3.209322,,1,,Europe/Paris,,OLI, +OLI:SA:2209,1,"Herriot",50.704639,3.233264,,1,,Europe/Paris,,OLI, +OLI:SA:2211,1,"Blum",50.706403,3.229877,,1,,Europe/Paris,,OLI, +OLI:SA:2212,1,"Lotissement Edf",50.558395,2.92359,,1,,Europe/Paris,,OLI, +OLI:SA:2214,1,"Eglise",50.5735,2.938911,,1,,Europe/Paris,,OLI, +OLI:SA:2215,1,"Republique",50.568925,2.931587,,1,,Europe/Paris,,OLI, +OLI:SA:2219,1,"College Blum",50.570194,2.936209,,1,,Europe/Paris,,OLI, +OLI:SA:2220,1,"Marais",50.563186,2.927322,,1,,Europe/Paris,,OLI, +OLI:SA:2222,1,"Rue Des Wazieres",50.564658,2.919635,,1,,Europe/Paris,,OLI, +OLI:SA:2223,1,"Koenig",50.566033,2.928497,,1,,Europe/Paris,,OLI, +OLI:SA:2225,1,"Gare",50.574557,2.937374,,1,,Europe/Paris,,OLI, +OLI:SA:2238,1,"Rue D'Oresmieux",50.56568,2.861645,,1,,Europe/Paris,,OLI, +OLI:SA:2239,1,"Theodore Brasme",50.571143,2.865872,,1,,Europe/Paris,,OLI, +OLI:SA:224,1,"Eglise",50.704152,3.09242,,1,,Europe/Paris,,OLI, +OLI:SA:2240,1,"Vieux Tilleul",50.572349,2.862856,,1,,Europe/Paris,,OLI, +OLI:SA:2241,1,"Beau Coin",50.63323,3.236681,,1,,Europe/Paris,,OLI, +OLI:SA:2243,1,"Baraques",50.639457,3.235255,,1,,Europe/Paris,,OLI, +OLI:SA:2244,1,"Pureur",50.626225,3.234059,,1,,Europe/Paris,,OLI, +OLI:SA:2250,1,"Mairie",50.647232,2.876016,,1,,Europe/Paris,,OLI, +OLI:SA:2252,1,"Le Touquet",50.702458,3.056054,,1,,Europe/Paris,,OLI, +OLI:SA:226,1,"Jb Lebas",50.716152,3.114344,,1,,Europe/Paris,,OLI, +OLI:SA:229,1,"Les Peupliers",50.769537,3.083468,,1,,Europe/Paris,,OLI, +OLI:SA:2298,1,"Mairie",50.60591,2.854117,,1,,Europe/Paris,,OLI, +OLI:SA:230,1,"Complexe Sportif",50.768365,3.078487,,1,,Europe/Paris,,OLI, +OLI:SA:233,1,"Coq Anglais",50.755834,3.078739,,1,,Europe/Paris,,OLI, +OLI:SA:234,1,"Mairie",50.77228,3.076183,,1,,Europe/Paris,,OLI, +OLI:SA:2398,1,"Ecole",50.597385,2.830788,,1,,Europe/Paris,,OLI, +OLI:SA:2400,1,"Eglise",50.595459,2.825371,,1,,Europe/Paris,,OLI, +OLI:SA:241,1,"La Perdriere",50.646525,2.95964,,1,,Europe/Paris,,OLI, +OLI:SA:242,1,"Enizant",50.645493,2.963351,,1,,Europe/Paris,,OLI, +OLI:SA:243,1,"Rue Des Fusilles",50.640171,2.970789,,1,,Europe/Paris,,OLI, +OLI:SA:245,1,"Chateau",50.611384,3.197926,,1,,Europe/Paris,,OLI, +OLI:SA:2450,1,"Institut St Henri ( B )",50.772573,3.0024,,1,,Europe/Paris,,OLI, +OLI:SA:2453,1,"Place Sainte Anne",50.769045,2.999566,,1,,Europe/Paris,,OLI, +OLI:SA:2455,1,"5 Chemins",50.776784,2.996345,,1,,Europe/Paris,,OLI, +OLI:SA:2456,1,"Gare",50.771299,2.997432,,1,,Europe/Paris,,OLI, +OLI:SA:2457,1,"Warneton Belgique",50.754868,2.948536,,1,,Europe/Paris,,OLI, +OLI:SA:2458,1,"Place De Picardie",50.743804,3.212524,,1,,Europe/Paris,,OLI, +OLI:SA:2460,1,"Casino",50.741727,3.215781,,1,,Europe/Paris,,OLI, +OLI:SA:2462,1,"Rue De La Liesse",50.742676,3.234781,,1,,Europe/Paris,,OLI, +OLI:SA:2464,1,"Citadelle",50.71207,3.238808,,1,,Europe/Paris,,OLI, +OLI:SA:2465,1,"Rue De La Pepiniere",50.74681,3.213594,,1,,Europe/Paris,,OLI, +OLI:SA:2466,1,"Eglise St Amand",50.738074,3.233624,,1,,Europe/Paris,,OLI, +OLI:SA:2467,1,"Bocle",50.743224,3.23342,,1,,Europe/Paris,,OLI, +OLI:SA:2468,1,"Grand Place",50.744807,3.216485,,1,,Europe/Paris,,OLI, +OLI:SA:2469,1,"Place De La Justice",50.738895,3.220551,,1,,Europe/Paris,,OLI, +OLI:SA:2470,1,"Au Chevalier",50.734509,3.232967,,1,,Europe/Paris,,OLI, +OLI:SA:2471,1,"La Carpe",50.740831,3.230748,,1,,Europe/Paris,,OLI, +OLI:SA:2472,1,"Les Glycines",50.713335,3.243761,,1,,Europe/Paris,,OLI, +OLI:SA:2479,1,"Place",50.722761,3.232713,,1,,Europe/Paris,,OLI, +OLI:SA:2482,1,"Rue De Rollegem",50.742814,3.226811,,1,,Europe/Paris,,OLI, +OLI:SA:2483,1,"Rue Luxembourg",50.743352,3.218085,,1,,Europe/Paris,,OLI, +OLI:SA:2489,1,"Chapelle",50.72616,3.231587,,1,,Europe/Paris,,OLI, +OLI:SA:249,1,"Beau Bouquet",50.610507,3.207892,,1,,Europe/Paris,,OLI, +OLI:SA:2493,1,"Zuidstraadt",50.788235,3.136945,,1,,Europe/Paris,,OLI, +OLI:SA:2504,1,"Cite",50.687595,3.262624,,1,,Europe/Paris,,OLI, +OLI:SA:2505,1,"I.M.P.",50.686507,3.259427,,1,,Europe/Paris,,OLI, +OLI:SA:2506,1,"Leers Nord Belgique",50.687514,3.273467,,1,,Europe/Paris,,OLI, +OLI:SA:2508,1,"Gare",50.740831,3.228189,,1,,Europe/Paris,,OLI, +OLI:SA:252,1,"Charles Legrand",50.760286,3.009079,,1,,Europe/Paris,,OLI, +OLI:SA:2520,1,"Hegel",50.628103,3.01537,,1,,Europe/Paris,,OLI, +OLI:SA:253,1,"Desire Ducarin",50.75721,3.004019,,1,,Europe/Paris,,OLI, +OLI:SA:2530,1,"Gare",50.590317,3.11604,,1,,Europe/Paris,,OLI, +OLI:SA:2533,1,"Lorival",50.566454,3.035001,,1,,Europe/Paris,,OLI, +OLI:SA:2537,1,"Rue Du Moulin",50.675522,2.835639,,1,,Europe/Paris,,OLI, +OLI:SA:254,1,"Gravier De Lille",50.736375,3.015626,,1,,Europe/Paris,,OLI, +OLI:SA:2540,1,"Le Bosquiel",50.678266,2.8532,,1,,Europe/Paris,,OLI, +OLI:SA:2547,1,"Vieux Chene",50.676514,2.8409,,1,,Europe/Paris,,OLI, +OLI:SA:255,1,"College St Joseph (F)",50.761306,3.004413,,1,,Europe/Paris,,OLI, +OLI:SA:2550,1,"Fleur D'Ecosse",50.655071,2.934686,,1,,Europe/Paris,,OLI, +OLI:SA:2551,1,"Centre",50.655337,2.951833,,1,,Europe/Paris,,OLI, +OLI:SA:2553,1,"Za Du Melantois",50.588799,3.136083,,1,,Europe/Paris,,OLI, +OLI:SA:2557,1,"Cimetiere",50.59355,3.166544,,1,,Europe/Paris,,OLI, +OLI:SA:2558,1,"Place",50.589481,3.167237,,1,,Europe/Paris,,OLI, +OLI:SA:2559,1,"Le Tilleul",50.585081,3.167925,,1,,Europe/Paris,,OLI, +OLI:SA:256,1,"Vieil Dieu",50.761672,3.011347,,1,,Europe/Paris,,OLI, +OLI:SA:257,1,"Gaie Perche",50.75492,2.989284,,1,,Europe/Paris,,OLI, +OLI:SA:2585,1,"De Gaulle",50.603016,3.090696,,1,,Europe/Paris,,OLI, +OLI:SA:2587,1,"Aristide Briand",50.700841,3.234975,,1,,Europe/Paris,,OLI, +OLI:SA:2595,1,"La Roseliere",50.703983,3.237052,,1,,Europe/Paris,,OLI, +OLI:SA:2596,1,"Silo",50.709595,3.008595,,1,,Europe/Paris,,OLI, +OLI:SA:2597,1,"Picasso",50.711322,3.004423,,1,,Europe/Paris,,OLI, +OLI:SA:260,1,"Eglise",50.739482,3.01328,,1,,Europe/Paris,,OLI, +OLI:SA:2606,1,"Abbe Pierre",50.680572,3.072906,,1,,Europe/Paris,,OLI, +OLI:SA:262,1,"Gendarmerie",50.755802,3.005527,,1,,Europe/Paris,,OLI, +OLI:SA:2623,1,"Salengro",50.655056,3.058603,,1,,Europe/Paris,,OLI, +OLI:SA:2627,1,"Cimetiere Bourg",50.671827,3.081853,,1,,Europe/Paris,,OLI, +OLI:SA:2628,1,"Doumer",50.665458,3.07734,,1,,Europe/Paris,,OLI, +OLI:SA:263,1,"Les Glycines",50.753613,3.007449,,1,,Europe/Paris,,OLI, +OLI:SA:2630,1,"Peri",50.675685,3.089082,,1,,Europe/Paris,,OLI, +OLI:SA:2647,1,"Jacquet",50.637389,3.085036,,1,,Europe/Paris,,OLI, +OLI:SA:265,1,"Cat Malecot",50.741944,3.012465,,1,,Europe/Paris,,OLI, +OLI:SA:2653,1,"Chats Huants",50.746714,3.126525,,1,,Europe/Paris,,OLI, +OLI:SA:2663,1,"Parc Des Lions",50.747092,3.131917,,1,,Europe/Paris,,OLI, +OLI:SA:2671,1,"Casanova",50.759307,3.112118,,1,,Europe/Paris,,OLI, +OLI:SA:2677,1,"Cat",50.691125,2.889339,,1,,Europe/Paris,,OLI, +OLI:SA:2680,1,"Rouge Porte",50.784254,3.139513,,1,,Europe/Paris,,OLI, +OLI:SA:2685,1,"Loisel",50.780671,3.137489,,1,,Europe/Paris,,OLI, +OLI:SA:2687,1,"Abbe Lemire",50.778194,3.136318,,1,,Europe/Paris,,OLI, +OLI:SA:2691,1,"Stele Des Enfant",50.782592,3.134408,,1,,Europe/Paris,,OLI, +OLI:SA:2693,1,"Pasteur",50.778881,3.125634,,1,,Europe/Paris,,OLI, +OLI:SA:2700,1,"Agache",50.66743,2.972701,,1,,Europe/Paris,,OLI, +OLI:SA:272,1,"Grand Perne",50.731184,3.020106,,1,,Europe/Paris,,OLI, +OLI:SA:274,1,"Hopital",50.758658,3.003119,,1,,Europe/Paris,,OLI, +OLI:SA:275,1,"Abbe Lemire",50.761783,3.000842,,1,,Europe/Paris,,OLI, +OLI:SA:276,1,"Croix Saint Pierre",50.683775,3.152935,,1,,Europe/Paris,,OLI, +OLI:SA:277,1,"Mairie De Croix",50.67992,3.156641,,1,,Europe/Paris,,OLI, +OLI:SA:278,1,"Palais Des Metiers",50.675639,3.140549,,1,,Europe/Paris,,OLI, +OLI:SA:281,1,"Centre Medico Social",50.680874,3.153438,,1,,Europe/Paris,,OLI, +OLI:SA:283,1,"Gare",50.677116,3.136973,,1,,Europe/Paris,,OLI, +OLI:SA:2840,1,"L'Ours",50.744926,3.211115,,1,,Europe/Paris,,OLI, +OLI:SA:287,1,"Deux Moulins",50.679603,3.151653,,1,,Europe/Paris,,OLI, +OLI:SA:288,1,"La Marque",50.666361,3.149348,,1,,Europe/Paris,,OLI, +OLI:SA:290,1,"L'Allumette",50.685799,3.15061,,1,,Europe/Paris,,OLI, +OLI:SA:293,1,"Trois Sources",50.677048,3.147334,,1,,Europe/Paris,,OLI, +OLI:SA:2965,1,"Coubertin",50.604926,3.103834,,1,,Europe/Paris,,OLI, +OLI:SA:2973,1,"Hippodrome",50.664277,3.08874,,1,,Europe/Paris,,OLI, +OLI:SA:300,1,"La Fonderie",50.675727,3.145025,,1,,Europe/Paris,,OLI, +OLI:SA:302,1,"Centre",50.674392,3.146204,,1,,Europe/Paris,,OLI, +OLI:SA:3024,1,"Le Pont",50.630826,3.022712,,1,,Europe/Paris,,OLI, +OLI:SA:3034,1,"Square Calmette",50.706641,3.201447,,1,,Europe/Paris,,OLI, +OLI:SA:307,1,"Kleber",50.684285,3.154496,,1,,Europe/Paris,,OLI, +OLI:SA:311,1,"Bel Arbre",50.733189,2.946956,,1,,Europe/Paris,,OLI, +OLI:SA:313,1,"Calmette",50.551645,2.916794,,1,,Europe/Paris,,OLI, +OLI:SA:319,1,"Delory",50.595529,3.002625,,1,,Europe/Paris,,OLI, +OLI:SA:325,1,"Trois Chenes",50.630023,2.966105,,1,,Europe/Paris,,OLI, +OLI:SA:329,1,"Rue Du Bourg",50.635675,2.942579,,1,,Europe/Paris,,OLI, +OLI:SA:331,1,"Vert Feuillage",50.64954,2.946852,,1,,Europe/Paris,,OLI, +OLI:SA:337,1,"Rue De La Gare",50.613956,2.928217,,1,,Europe/Paris,,OLI, +OLI:SA:342,1,"Rue D'Haubourdin",50.599472,3.068344,,1,,Europe/Paris,,OLI, +OLI:SA:344,1,"Hoche",50.60687,3.06583,,1,,Europe/Paris,,OLI, +OLI:SA:345,1,"Rue De Jemmapes",50.594474,3.076079,,1,,Europe/Paris,,OLI, +OLI:SA:346,1,"Guesde",50.610101,3.064073,,1,,Europe/Paris,,OLI, +OLI:SA:347,1,"Moulin De Lesquin",50.587132,3.087215,,1,,Europe/Paris,,OLI, +OLI:SA:354,1,"La Jappe",50.600824,3.071733,,1,,Europe/Paris,,OLI, +OLI:SA:355,1,"Mairie",50.603812,3.068718,,1,,Europe/Paris,,OLI, +OLI:SA:356,1,"Cimetiere",50.591327,3.075807,,1,,Europe/Paris,,OLI, +OLI:SA:358,1,"Rue De L'Oise",50.612016,3.06176,,1,,Europe/Paris,,OLI, +OLI:SA:359,1,"Philippe De Girard",50.599881,3.053635,,1,,Europe/Paris,,OLI, +OLI:SA:363,1,"Eglise",50.588467,3.076934,,1,,Europe/Paris,,OLI, +OLI:SA:365,1,"Mairie",50.633787,3.189694,,1,,Europe/Paris,,OLI, +OLI:SA:366,1,"Rue De Tressin",50.632375,3.192871,,1,,Europe/Paris,,OLI, +OLI:SA:367,1,"Eglise",50.636205,3.189002,,1,,Europe/Paris,,OLI, +OLI:SA:372,1,"Lion Noir",50.584224,2.884229,,1,,Europe/Paris,,OLI, +OLI:SA:374,1,"Desprez",50.596392,2.901373,,1,,Europe/Paris,,OLI, +OLI:SA:375,1,"Victor Hugo",50.589817,2.893309,,1,,Europe/Paris,,OLI, +OLI:SA:377,1,"La Houlette",50.706057,2.956074,,1,,Europe/Paris,,OLI, +OLI:SA:380,1,"L'Aventure",50.688529,2.947328,,1,,Europe/Paris,,OLI, +OLI:SA:382,1,"La Chapelette",50.692473,2.940542,,1,,Europe/Paris,,OLI, +OLI:SA:383,1,"Croix Au Bois",50.696543,2.976814,,1,,Europe/Paris,,OLI, +OLI:SA:384,1,"Bon Coin",50.707042,2.928924,,1,,Europe/Paris,,OLI, +OLI:SA:387,1,"Le Funquereau",50.686385,2.967069,,1,,Europe/Paris,,OLI, +OLI:SA:389,1,"Petit Quinquin",50.580327,3.13661,,1,,Europe/Paris,,OLI, +OLI:SA:3906,1,"L'Harmonieuse",50.784181,3.135551,,1,,Europe/Paris,,OLI, +OLI:SA:3908,1,"Saint Hilaire",50.777909,3.141547,,1,,Europe/Paris,,OLI, +OLI:SA:3913,1,"Saint Exupery",50.778609,3.116308,,1,,Europe/Paris,,OLI, +OLI:SA:3941,1,"Euratechnologies",50.633268,3.019022,,1,,Europe/Paris,,OLI, +OLI:SA:3952,1,"La Carnoy",50.650936,3.022875,,1,,Europe/Paris,,OLI, +OLI:SA:3953,1,"Min",50.636523,2.96685,,1,,Europe/Paris,,OLI, +OLI:SA:3957,1,"Ingenieur Bertin",50.659682,3.013075,,1,,Europe/Paris,,OLI, +OLI:SA:3962,1,"Hippodrome",50.645787,3.027615,,1,,Europe/Paris,,OLI, +OLI:SA:3963,1,"Rue De Lille",50.652637,3.039478,,1,,Europe/Paris,,OLI, +OLI:SA:3973,1,"Guynemer",50.654195,3.036663,,1,,Europe/Paris,,OLI, +OLI:SA:398,1,"La Pepiniere",50.610998,2.967727,,1,,Europe/Paris,,OLI, +OLI:SA:3985,1,"Marechal Foch",50.64814,3.025574,,1,,Europe/Paris,,OLI, +OLI:SA:3986,1,"Cimetiere Nord",50.656996,3.020263,,1,,Europe/Paris,,OLI, +OLI:SA:399,1,"Le Fort",50.613172,2.956391,,1,,Europe/Paris,,OLI, +OLI:SA:3999,1,"Cite Mouray",50.646628,2.998494,,1,,Europe/Paris,,OLI, +OLI:SA:4002,1,"Egalite",50.631429,3.002482,,1,,Europe/Paris,,OLI, +OLI:SA:4005,1,"Lamy",50.630389,3.004104,,1,,Europe/Paris,,OLI, +OLI:SA:402,1,"Les Riez",50.612536,2.966802,,1,,Europe/Paris,,OLI, +OLI:SA:4021,1,"Beau Visage",50.645767,2.988396,,1,,Europe/Paris,,OLI, +OLI:SA:403,1,"Cimetiere",50.609571,2.953597,,1,,Europe/Paris,,OLI, +OLI:SA:4036,1,"Bel Air",50.658177,3.039979,,1,,Europe/Paris,,OLI, +OLI:SA:4039,1,"Foch",50.663142,3.050125,,1,,Europe/Paris,,OLI, +OLI:SA:4043,1,"Moliere",50.657749,3.052066,,1,,Europe/Paris,,OLI, +OLI:SA:405,1,"Zac Du Moulin",50.605379,2.952319,,1,,Europe/Paris,,OLI, +OLI:SA:4067,1,"Amidonnerie",50.668148,3.065524,,1,,Europe/Paris,,OLI, +OLI:SA:407,1,"La Bascule",50.614065,2.969584,,1,,Europe/Paris,,OLI, +OLI:SA:4077,1,"College Debeyre",50.67987,3.067164,,1,,Europe/Paris,,OLI, +OLI:SA:4082,1,"Marquette Mairie",50.677183,3.065007,,1,,Europe/Paris,,OLI, +OLI:SA:4106,1,"Quesne Mairie",50.674569,3.094132,,1,,Europe/Paris,,OLI, +OLI:SA:4124,1,"Cense Manoir",50.777739,3.119067,,1,,Europe/Paris,,OLI, +OLI:SA:4126,1,"Ancienne Mairie",50.645447,3.10217,,1,,Europe/Paris,,OLI, +OLI:SA:4127,1,"Bd Leclerc",50.637401,3.105009,,1,,Europe/Paris,,OLI, +OLI:SA:4129,1,"Jacquard",50.635352,3.112792,,1,,Europe/Paris,,OLI, +OLI:SA:4138,1,"Montesquieu",50.646302,3.106105,,1,,Europe/Paris,,OLI, +OLI:SA:4143,1,"Schweitzer",50.639372,3.114095,,1,,Europe/Paris,,OLI, +OLI:SA:4145,1,"Prevost",50.63851,3.101189,,1,,Europe/Paris,,OLI, +OLI:SA:4146,1,"Desmoulins",50.685662,3.138621,,1,,Europe/Paris,,OLI, +OLI:SA:417,1,"Gounod",50.78092,3.109583,,1,,Europe/Paris,,OLI, +OLI:SA:4189,1,"Henri Regnault",50.632836,3.03061,,1,,Europe/Paris,,OLI, +OLI:SA:4193,1,"J.F. Kennedy",50.632404,3.068149,,1,,Europe/Paris,,OLI, +OLI:SA:4198,1,"Conservatoire",50.641977,3.061743,,1,,Europe/Paris,,OLI, +OLI:SA:420,1,"Noir Pignon",50.773912,3.12301,,1,,Europe/Paris,,OLI, +OLI:SA:4204,1,"Gare Tournai",50.635274,3.069785,,1,,Europe/Paris,,OLI, +OLI:SA:422,1,"Eglise Du Colbras",50.784064,3.111541,,1,,Europe/Paris,,OLI, +OLI:SA:423,1,"Cimetiere",50.779134,3.129571,,1,,Europe/Paris,,OLI, +OLI:SA:4242,1,"Solferino",50.634347,3.048868,,1,,Europe/Paris,,OLI, +OLI:SA:425,1,"Centre Ville",50.783469,3.126301,,1,,Europe/Paris,,OLI, +OLI:SA:4261,1,"Fenelon",50.630695,3.111577,,1,,Europe/Paris,,OLI, +OLI:SA:427,1,"Sangnier",50.78493,3.115176,,1,,Europe/Paris,,OLI, +OLI:SA:428,1,"Oree Du Mont",50.773359,3.143411,,1,,Europe/Paris,,OLI, +OLI:SA:4280,1,"Le Cerf",50.59588,3.094253,,1,,Europe/Paris,,OLI, +OLI:SA:4285,1,"Marronniers",50.607462,3.076412,,1,,Europe/Paris,,OLI, +OLI:SA:430,1,"Parc Des Sports",50.776945,3.12409,,1,,Europe/Paris,,OLI, +OLI:SA:432,1,"Douane",50.786268,3.126218,,1,,Europe/Paris,,OLI, +OLI:SA:433,1,"Jean Jaures",50.786467,3.121694,,1,,Europe/Paris,,OLI, +OLI:SA:4334,1,"College Triolo",50.6161,3.139748,,1,,Europe/Paris,,OLI, +OLI:SA:4340,1,"La Chesnaie",50.627826,3.131248,,1,,Europe/Paris,,OLI, +OLI:SA:4343,1,"Doumer",50.611801,3.161813,,1,,Europe/Paris,,OLI, +OLI:SA:435,1,"Lp Colbras",50.779122,3.114506,,1,,Europe/Paris,,OLI, +OLI:SA:4351,1,"Flers Bourg",50.63635,3.127985,,1,,Europe/Paris,,OLI, +OLI:SA:4354,1,"Harrison",50.606349,3.162851,,1,,Europe/Paris,,OLI, +OLI:SA:4355,1,"Harisson",50.606403,3.162866,,1,,Europe/Paris,,OLI, +OLI:SA:4358,1,"Valmy",50.616496,3.132563,,1,,Europe/Paris,,OLI, +OLI:SA:437,1,"Bellefontaine",50.770764,3.121574,,1,,Europe/Paris,,OLI, +OLI:SA:439,1,"Mont Fleuri",50.775918,3.134669,,1,,Europe/Paris,,OLI, +OLI:SA:4390,1,"Lapin Blanc",50.644005,3.231584,,1,,Europe/Paris,,OLI, +OLI:SA:4391,1,"Tabac",50.649277,3.224398,,1,,Europe/Paris,,OLI, +OLI:SA:4392,1,"Tourne Bride",50.647465,3.22819,,1,,Europe/Paris,,OLI, +OLI:SA:440,1,"Monument Aux Morts",50.781571,3.125818,,1,,Europe/Paris,,OLI, +OLI:SA:4415,1,"Beaumont",50.682284,3.175994,,1,,Europe/Paris,,OLI, +OLI:SA:4417,1,"Colisee",50.69228,3.163396,,1,,Europe/Paris,,OLI, +OLI:SA:4423,1,"Sainte Elisabeth",50.687666,3.183921,,1,,Europe/Paris,,OLI, +OLI:SA:4427,1,"Montgolfier",50.68484,3.189139,,1,,Europe/Paris,,OLI, +OLI:SA:4428,1,"Grand Chemin",50.693431,3.161707,,1,,Europe/Paris,,OLI, +OLI:SA:4429,1,"Guynemer",50.670346,3.188963,,1,,Europe/Paris,,OLI, +OLI:SA:443,1,"Basse Ville",50.771727,3.139297,,1,,Europe/Paris,,OLI, +OLI:SA:4432,1,"Mackellerie",50.694601,3.155738,,1,,Europe/Paris,,OLI, +OLI:SA:4434,1,"Dunant",50.68921,3.183735,,1,,Europe/Paris,,OLI, +OLI:SA:4436,1,"Motte",50.677651,3.198842,,1,,Europe/Paris,,OLI, +OLI:SA:445,1,"Malplaquet",50.780039,3.10558,,1,,Europe/Paris,,OLI, +OLI:SA:4450,1,"La Vigne",50.701139,3.183839,,1,,Europe/Paris,,OLI, +OLI:SA:4454,1,"Republique",50.697712,3.205897,,1,,Europe/Paris,,OLI, +OLI:SA:4463,1,"Sacre Coeur",50.714699,3.158809,,1,,Europe/Paris,,OLI, +OLI:SA:447,1,"L'Octroi",50.776556,3.098807,,1,,Europe/Paris,,OLI, +OLI:SA:4474,1,"Hoche",50.721864,3.144091,,1,,Europe/Paris,,OLI, +OLI:SA:4499,1,"Curie",50.607689,3.013246,,1,,Europe/Paris,,OLI, +OLI:SA:4500,1,"Painleve",50.62442,3.080244,,1,,Europe/Paris,,OLI, +OLI:SA:4521,1,"Ctre Commercial",50.736073,3.132717,,1,,Europe/Paris,,OLI, +OLI:SA:4539,1,"Saint Exupery",50.695743,2.920741,,1,,Europe/Paris,,OLI, +OLI:SA:454,1,"Gare",50.607204,2.989924,,1,,Europe/Paris,,OLI, +OLI:SA:4543,1,"Valentine Labbe",50.647072,3.072384,,1,,Europe/Paris,,OLI, +OLI:SA:4554,1,"Hameau Du Lac",50.630152,3.187418,,1,,Europe/Paris,,OLI, +OLI:SA:4556,1,"Winoc Chocquel",50.721223,3.170347,,1,,Europe/Paris,,OLI, +OLI:SA:4593,1,"Iut Crest",50.650079,3.161711,,1,,Europe/Paris,,OLI, +OLI:SA:460,1,"Beaupre Canteraine",50.598579,2.985766,,1,,Europe/Paris,,OLI, +OLI:SA:4600,1,"Leon Jouhaux",50.711741,3.175867,,1,,Europe/Paris,,OLI, +OLI:SA:4601,1,"Edhec",50.67625,3.169018,,1,,Europe/Paris,,OLI, +OLI:SA:4604,1,"Rue Dr Calmette",50.617193,2.975348,,1,,Europe/Paris,,OLI, +OLI:SA:461,1,"J. Luxembourg",50.612632,2.972569,,1,,Europe/Paris,,OLI, +OLI:SA:4618,1,"Republique",50.685014,2.873628,,1,,Europe/Paris,,OLI, +OLI:SA:463,1,"Rue Du Gal Mesny",50.60197,2.983949,,1,,Europe/Paris,,OLI, +OLI:SA:4630,1,"Villa Cavrois",50.66888,3.153581,,1,,Europe/Paris,,OLI, +OLI:SA:4632,1,"Fatima",50.578367,3.014175,,1,,Europe/Paris,,OLI, +OLI:SA:4644,1,"Charles Perrault",50.687098,3.215243,,1,,Europe/Paris,,OLI, +OLI:SA:4646,1,"Potente",50.726384,3.184451,,1,,Europe/Paris,,OLI, +OLI:SA:4649,1,"Parc Barbieux",50.677685,3.162308,,1,,Europe/Paris,,OLI, +OLI:SA:4650,1,"Molinel",50.675122,3.127638,,1,,Europe/Paris,,OLI, +OLI:SA:4651,1,"Pole Sportif",50.677164,3.125243,,1,,Europe/Paris,,OLI, +OLI:SA:4653,1,"Adenauer",50.684402,3.129522,,1,,Europe/Paris,,OLI, +OLI:SA:4670,1,"Delecourt",50.714031,3.179424,,1,,Europe/Paris,,OLI, +OLI:SA:4672,1,"Dunant",50.668431,3.201308,,1,,Europe/Paris,,OLI, +OLI:SA:4674,1,"Verdun",50.687333,3.198388,,1,,Europe/Paris,,OLI, +OLI:SA:4677,1,"Levant",50.719043,3.177106,,1,,Europe/Paris,,OLI, +OLI:SA:4679,1,"Egalite",50.71496,3.202114,,1,,Europe/Paris,,OLI, +OLI:SA:4680,1,"Duthoit",50.694594,3.210573,,1,,Europe/Paris,,OLI, +OLI:SA:4682,1,"Zone Indus.",50.676182,3.232612,,1,,Europe/Paris,,OLI, +OLI:SA:4696,1,"Wagner",50.605374,3.053206,,1,,Europe/Paris,,OLI, +OLI:SA:4698,1,"Bayart",50.629544,3.024133,,1,,Europe/Paris,,OLI, +OLI:SA:470,1,"Vanderhaghen",50.612417,2.975992,,1,,Europe/Paris,,OLI, +OLI:SA:4706,1,"Eglise Beaulieu",50.704605,3.241625,,1,,Europe/Paris,,OLI, +OLI:SA:4707,1,"College Neruda",50.709278,3.236737,,1,,Europe/Paris,,OLI, +OLI:SA:4708,1,"Ernest Renan",50.680761,3.185004,,1,,Europe/Paris,,OLI, +OLI:SA:4710,1,"Roubaix Charles Fourier",50.671742,3.181618,,1,,Europe/Paris,,OLI, +OLI:SA:4713,1,"Wasquehal C.Cial",50.682773,3.126164,,1,,Europe/Paris,,OLI, +OLI:SA:4719,1,"Zac Winhoutte",50.71437,3.204364,,1,,Europe/Paris,,OLI, +OLI:SA:4720,1,"Coty",50.670707,3.199075,,1,,Europe/Paris,,OLI, +OLI:SA:4729,1,"Piscine",50.777989,3.130585,,1,,Europe/Paris,,OLI, +OLI:SA:473,1,"Rue De La Canteraine",50.593084,2.984835,,1,,Europe/Paris,,OLI, +OLI:SA:474,1,"Maison D'Arret",50.617875,2.964852,,1,,Europe/Paris,,OLI, +OLI:SA:475,1,"Le Parc",50.614778,2.977432,,1,,Europe/Paris,,OLI, +OLI:SA:4779,1,"Edouard Vaillant",50.674065,3.175094,,1,,Europe/Paris,,OLI, +OLI:SA:481,1,"College Jules Ferry",50.613158,2.99213,,1,,Europe/Paris,,OLI, +OLI:SA:482,1,"Derville",50.633362,3.111139,,1,,Europe/Paris,,OLI, +OLI:SA:483,1,"P.S. De Lezennes",50.621265,3.094651,,1,,Europe/Paris,,OLI, +OLI:SA:4830,1,"Avelghem",50.695162,3.198523,,1,,Europe/Paris,,OLI, +OLI:SA:4831,1,"Velodrome",50.679342,3.201963,,1,,Europe/Paris,,OLI, +OLI:SA:484,1,"Chapelle D'Elocques",50.634255,3.103184,,1,,Europe/Paris,,OLI, +OLI:SA:486,1,"Innovation",50.625346,3.103357,,1,,Europe/Paris,,OLI, +OLI:SA:488,1,"Marbrerie",50.630324,3.097679,,1,,Europe/Paris,,OLI, +OLI:SA:490,1,"Docteur Huart",50.634248,3.114383,,1,,Europe/Paris,,OLI, +OLI:SA:493,1,"Ecole",50.622816,3.103446,,1,,Europe/Paris,,OLI, +OLI:SA:494,1,"Mairie D'Hellemmes",50.627187,3.108815,,1,,Europe/Paris,,OLI, +OLI:SA:496,1,"Ferry",50.624316,3.100197,,1,,Europe/Paris,,OLI, +OLI:SA:4971,1,"Cimetiere",50.713932,3.188675,,1,,Europe/Paris,,OLI, +OLI:SA:498,1,"College Saint Exupery",50.629004,3.118067,,1,,Europe/Paris,,OLI, +OLI:SA:502,1,"Mesanges",50.663556,3.203158,,1,,Europe/Paris,,OLI, +OLI:SA:5059,1,"Jeanne D'Arc",50.670612,3.21755,,1,,Europe/Paris,,OLI, +OLI:SA:511,1,"Zone Artisanale",50.665127,3.180886,,1,,Europe/Paris,,OLI, +OLI:SA:5111,1,"Schuman",50.745644,3.154526,,1,,Europe/Paris,,OLI, +OLI:SA:512,1,"Hempempont",50.654368,3.173493,,1,,Europe/Paris,,OLI, +OLI:SA:5124,1,"Berlioz",50.777382,3.114592,,1,,Europe/Paris,,OLI, +OLI:SA:513,1,"Eglise Saint Paul",50.669332,3.177174,,1,,Europe/Paris,,OLI, +OLI:SA:514,1,"Mairie",50.654314,3.182721,,1,,Europe/Paris,,OLI, +OLI:SA:516,1,"Lionderie",50.658927,3.194229,,1,,Europe/Paris,,OLI, +OLI:SA:5167,1,"Av Des Saules",50.701645,3.07686,,1,,Europe/Paris,,OLI, +OLI:SA:5173,1,"Voie227",50.71731,3.073151,,1,,Europe/Paris,,OLI, +OLI:SA:519,1,"Ampere",50.661862,3.192699,,1,,Europe/Paris,,OLI, +OLI:SA:5192,1,"Clinique Saint Roch",50.734753,3.114634,,1,,Europe/Paris,,OLI, +OLI:SA:520,1,"Nobel",50.666039,3.200759,,1,,Europe/Paris,,OLI, +OLI:SA:521,1,"4 Vents",50.648598,3.19607,,1,,Europe/Paris,,OLI, +OLI:SA:522,1,"Voisinage",50.644534,3.19363,,1,,Europe/Paris,,OLI, +OLI:SA:523,1,"Hem La Vallee",50.649066,3.197108,,1,,Europe/Paris,,OLI, +OLI:SA:5238,1,"Elsa Triolet",50.653727,3.188665,,1,,Europe/Paris,,OLI, +OLI:SA:525,1,"Bifur",50.652117,3.187876,,1,,Europe/Paris,,OLI, +OLI:SA:5275,1,"Faidherbe",50.638919,3.127447,,1,,Europe/Paris,,OLI, +OLI:SA:528,1,"Rue Du Pilly",50.578603,2.858427,,1,,Europe/Paris,,OLI, +OLI:SA:5294,1,"Epoux Labrousse",50.62308,3.12707,,1,,Europe/Paris,,OLI, +OLI:SA:530,1,"Mairie",50.576797,2.854915,,1,,Europe/Paris,,OLI, +OLI:SA:532,1,"Ancienne Gare",50.580869,2.865524,,1,,Europe/Paris,,OLI, +OLI:SA:533,1,"Place",50.578259,2.85269,,1,,Europe/Paris,,OLI, +OLI:SA:536,1,"Rue Du Stade",50.578386,2.847971,,1,,Europe/Paris,,OLI, +OLI:SA:540,1,"Place",50.562173,3.003012,,1,,Europe/Paris,,OLI, +OLI:SA:5405,1,"Recherche",50.64925,3.158283,,1,,Europe/Paris,,OLI, +OLI:SA:5415,1,"Le Sart Sud",50.662817,3.138409,,1,,Europe/Paris,,OLI, +OLI:SA:5416,1,"Le Sart Nord",50.663868,3.139527,,1,,Europe/Paris,,OLI, +OLI:SA:5420,1,"Mont De Terre",50.622775,3.091205,,1,,Europe/Paris,,OLI, +OLI:SA:5427,1,"Danielle Lesaffre",50.682125,3.182161,,1,,Europe/Paris,,OLI, +OLI:SA:543,1,"Poste",50.56942,2.998249,,1,,Europe/Paris,,OLI, +OLI:SA:5440,1,"Favreuil",50.692817,3.151388,,1,,Europe/Paris,,OLI, +OLI:SA:5452,1,"Cerisaie",50.677145,3.111154,,1,,Europe/Paris,,OLI, +OLI:SA:5457,1,"Wazemmes",50.622898,3.052386,,1,,Europe/Paris,,OLI, +OLI:SA:5473,1,"Voltaire",50.714215,3.193243,,1,,Europe/Paris,,OLI, +OLI:SA:5474,1,"Fourmies",50.671754,3.189001,,1,,Europe/Paris,,OLI, +OLI:SA:5475,1,"Musee",50.693912,3.167618,,1,,Europe/Paris,,OLI, +OLI:SA:5478,1,"Ancienne Gare",50.750576,3.120041,,1,,Europe/Paris,,OLI, +OLI:SA:5479,1,"La Vallee",50.747156,3.118955,,1,,Europe/Paris,,OLI, +OLI:SA:5483,1,"Faubourg D'Arras",50.613017,3.062325,,1,,Europe/Paris,,OLI, +OLI:SA:5498,1,"Robert Descamps",50.734053,3.086965,,1,,Europe/Paris,,OLI, +OLI:SA:5499,1,"La Vignette",50.746107,3.085634,,1,,Europe/Paris,,OLI, +OLI:SA:5500,1,"Vert Feuillage",50.743294,3.085026,,1,,Europe/Paris,,OLI, +OLI:SA:5503,1,"Linselles Place",50.738727,3.079304,,1,,Europe/Paris,,OLI, +OLI:SA:5504,1,"Rue Des Ecoles",50.739657,3.082781,,1,,Europe/Paris,,OLI, +OLI:SA:5505,1,"Coll Ste Marie",50.739886,3.07754,,1,,Europe/Paris,,OLI, +OLI:SA:5506,1,"Le Petit Chat",50.70733,3.03228,,1,,Europe/Paris,,OLI, +OLI:SA:5507,1,"Le Plat Parez",50.714606,3.023807,,1,,Europe/Paris,,OLI, +OLI:SA:5509,1,"Le Chien",50.710016,3.028391,,1,,Europe/Paris,,OLI, +OLI:SA:5511,1,"Lierre",50.757219,3.118972,,1,,Europe/Paris,,OLI, +OLI:SA:5513,1,"Corteville",50.741921,3.117205,,1,,Europe/Paris,,OLI, +OLI:SA:5515,1,"Le Boulois",50.729334,3.119086,,1,,Europe/Paris,,OLI, +OLI:SA:5517,1,"Inst Ste Marie",50.603024,2.914345,,1,,Europe/Paris,,OLI, +OLI:SA:5518,1,"Pied De Boeuf",50.736787,3.127598,,1,,Europe/Paris,,OLI, +OLI:SA:5520,1,"Roncq Place",50.753424,3.120722,,1,,Europe/Paris,,OLI, +OLI:SA:5523,1,"Ghesquiere",50.597356,2.99976,,1,,Europe/Paris,,OLI, +OLI:SA:5524,1,"Daudet",50.592269,3.006513,,1,,Europe/Paris,,OLI, +OLI:SA:5525,1,"Grand Place",50.575989,3.017552,,1,,Europe/Paris,,OLI, +OLI:SA:5526,1,"Marais",50.575617,3.011813,,1,,Europe/Paris,,OLI, +OLI:SA:5527,1,"Apolda",50.543422,3.017912,,1,,Europe/Paris,,OLI, +OLI:SA:5529,1,"Hotel De Ville",50.545534,3.025346,,1,,Europe/Paris,,OLI, +OLI:SA:5538,1,"Racine",50.586446,3.034321,,1,,Europe/Paris,,OLI, +OLI:SA:5540,1,"Fleming",50.588636,3.045174,,1,,Europe/Paris,,OLI, +OLI:SA:5542,1,"Terray",50.590017,3.035738,,1,,Europe/Paris,,OLI, +OLI:SA:5544,1,"Av. De Roubaix",50.596949,3.070281,,1,,Europe/Paris,,OLI, +OLI:SA:5545,1,"Jean Rostand",50.586311,3.080425,,1,,Europe/Paris,,OLI, +OLI:SA:5549,1,"Ctre Commercial",50.581881,3.083163,,1,,Europe/Paris,,OLI, +OLI:SA:555,1,"Rue Brune",50.694718,2.917509,,1,,Europe/Paris,,OLI, +OLI:SA:5550,1,"Rue De Bordeaux",50.595148,3.080359,,1,,Europe/Paris,,OLI, +OLI:SA:5551,1,"Moulin De Faches",50.584513,3.08564,,1,,Europe/Paris,,OLI, +OLI:SA:5552,1,"Rue De Grenoble",50.595512,3.073586,,1,,Europe/Paris,,OLI, +OLI:SA:5557,1,"Jean Jaures",50.609908,3.075334,,1,,Europe/Paris,,OLI, +OLI:SA:5558,1,"Ronchin Mairie",50.605054,3.076982,,1,,Europe/Paris,,OLI, +OLI:SA:5559,1,"Marais",50.581519,3.028222,,1,,Europe/Paris,,OLI, +OLI:SA:556,1,"Hotel De Ville",50.689888,2.906835,,1,,Europe/Paris,,OLI, +OLI:SA:5561,1,"A. Dumas",50.598847,3.063317,,1,,Europe/Paris,,OLI, +OLI:SA:5562,1,"Roussel",50.596675,3.051165,,1,,Europe/Paris,,OLI, +OLI:SA:5571,1,"Carnot",50.688841,3.196847,,1,,Europe/Paris,,OLI, +OLI:SA:5573,1,"Chaufour",50.650175,3.070991,,1,,Europe/Paris,,OLI, +OLI:SA:5576,1,"Calvaire",50.59208,3.003382,,1,,Europe/Paris,,OLI, +OLI:SA:5577,1,"Europe",50.632081,2.979262,,1,,Europe/Paris,,OLI, +OLI:SA:5578,1,"Escalette",50.696825,3.142104,,1,,Europe/Paris,,OLI, +OLI:SA:5581,1,"Josephine",50.655371,3.061543,,1,,Europe/Paris,,OLI, +OLI:SA:5582,1,"L'Octroi",50.68738,2.898334,,1,,Europe/Paris,,OLI, +OLI:SA:5588,1,"Source",50.583355,3.012608,,1,,Europe/Paris,,OLI, +OLI:SA:5589,1,"Clinquet",50.725896,3.130817,,1,,Europe/Paris,,OLI, +OLI:SA:559,1,"Ermitage",50.693774,2.912287,,1,,Europe/Paris,,OLI, +OLI:SA:5590,1,"Curie",50.734216,3.184132,,1,,Europe/Paris,,OLI, +OLI:SA:5596,1,"Coluche",50.599373,3.093742,,1,,Europe/Paris,,OLI, +OLI:SA:5597,1,"Gounod",50.596471,3.08713,,1,,Europe/Paris,,OLI, +OLI:SA:5600,1,"Republique",50.62627,3.149797,,1,,Europe/Paris,,OLI, +OLI:SA:5604,1,"Lac De Canteleu",50.635823,3.155284,,1,,Europe/Paris,,OLI, +OLI:SA:5606,1,"Massena",50.622999,3.162802,,1,,Europe/Paris,,OLI, +OLI:SA:5607,1,"Brigode",50.631448,3.154874,,1,,Europe/Paris,,OLI, +OLI:SA:5613,1,"Parc De L'Yser",50.743202,3.171152,,1,,Europe/Paris,,OLI, +OLI:SA:5614,1,"Hem La Vallee 2",50.655796,3.203207,,1,,Europe/Paris,,OLI, +OLI:SA:5618,1,"Poste",50.660562,3.184788,,1,,Europe/Paris,,OLI, +OLI:SA:5619,1,"Eglise St Joseph",50.663559,3.188494,,1,,Europe/Paris,,OLI, +OLI:SA:5620,1,"Rue Des Ecoles",50.663417,3.190877,,1,,Europe/Paris,,OLI, +OLI:SA:5621,1,"Pascal",50.664753,3.193581,,1,,Europe/Paris,,OLI, +OLI:SA:5622,1,"Watteeuw",50.665174,3.196256,,1,,Europe/Paris,,OLI, +OLI:SA:5625,1,"Delory",50.670132,3.186193,,1,,Europe/Paris,,OLI, +OLI:SA:5628,1,"Place Du Travail",50.677174,3.178237,,1,,Europe/Paris,,OLI, +OLI:SA:5629,1,"Dupuy De Lome",50.682109,3.180692,,1,,Europe/Paris,,OLI, +OLI:SA:563,1,"Ligny Le Grand",50.5724,2.824343,,1,,Europe/Paris,,OLI, +OLI:SA:5631,1,"Saint Jean",50.687152,3.180298,,1,,Europe/Paris,,OLI, +OLI:SA:564,1,"Ligny-Le-Grand",50.572598,2.824007,,1,,Europe/Paris,,OLI, +OLI:SA:5643,1,"Ascq 4 Chemins",50.614778,3.155236,,1,,Europe/Paris,,OLI, +OLI:SA:5646,1,"Grand Ruage",50.618088,3.174071,,1,,Europe/Paris,,OLI, +OLI:SA:5648,1,"Note Bleue",50.649251,3.152654,,1,,Europe/Paris,,OLI, +OLI:SA:5651,1,"College",50.688405,2.919059,,1,,Europe/Paris,,OLI, +OLI:SA:5652,1,"Nouvelle France",50.696803,2.914666,,1,,Europe/Paris,,OLI, +OLI:SA:5653,1,"Rue Lutun",50.69824,2.916307,,1,,Europe/Paris,,OLI, +OLI:SA:5655,1,"Pont Casier",50.691478,2.910256,,1,,Europe/Paris,,OLI, +OLI:SA:5656,1,"Republique",50.688851,2.902191,,1,,Europe/Paris,,OLI, +OLI:SA:5658,1,"Saint Jacques",50.663986,2.919819,,1,,Europe/Paris,,OLI, +OLI:SA:5659,1,"La Chapelle Parc",50.668882,2.908698,,1,,Europe/Paris,,OLI, +OLI:SA:5663,1,"Sequedin Centre",50.622607,2.988151,,1,,Europe/Paris,,OLI, +OLI:SA:5664,1,"Archelois",50.629776,2.986072,,1,,Europe/Paris,,OLI, +OLI:SA:5665,1,"Sequedin Eglise",50.622931,2.98635,,1,,Europe/Paris,,OLI, +OLI:SA:5666,1,"Vert Touquet",50.625368,2.985183,,1,,Europe/Paris,,OLI, +OLI:SA:5667,1,"D. Penitentiaire",50.618798,2.994277,,1,,Europe/Paris,,OLI, +OLI:SA:5671,1,"Gallodrome",50.540053,2.875511,,1,,Europe/Paris,,OLI, +OLI:SA:5672,1,"Mirabeau",50.536287,2.87502,,1,,Europe/Paris,,OLI, +OLI:SA:5673,1,"Hantay Eglise",50.532801,2.865876,,1,,Europe/Paris,,OLI, +OLI:SA:5678,1,"Rue De Lille",50.533166,2.811406,,1,,Europe/Paris,,OLI, +OLI:SA:5681,1,"Place L.Orval",50.532097,2.809327,,1,,Europe/Paris,,OLI, +OLI:SA:5682,1,"La Bassee Hdv",50.53156,2.804213,,1,,Europe/Paris,,OLI, +OLI:SA:5683,1,"Saint Roch",50.536354,2.815237,,1,,Europe/Paris,,OLI, +OLI:SA:5685,1,"Mairie",50.558056,2.869719,,1,,Europe/Paris,,OLI, +OLI:SA:5686,1,"Coisne",50.530978,2.827051,,1,,Europe/Paris,,OLI, +OLI:SA:5689,1,"Millenaires",50.536499,2.844011,,1,,Europe/Paris,,OLI, +OLI:SA:569,1,"L'Aventure",50.576838,2.822696,,1,,Europe/Paris,,OLI, +OLI:SA:5690,1,"Republique",50.532079,2.816435,,1,,Europe/Paris,,OLI, +OLI:SA:5693,1,"Carin",50.699822,3.219605,,1,,Europe/Paris,,OLI, +OLI:SA:5694,1,"Pole Emploi",50.693966,3.231872,,1,,Europe/Paris,,OLI, +OLI:SA:5695,1,"Cimetiere Centre",50.697742,3.224426,,1,,Europe/Paris,,OLI, +OLI:SA:5700,1,"General Leclerc",50.572506,2.870239,,1,,Europe/Paris,,OLI, +OLI:SA:5701,1,"Wicres Mairie",50.571519,2.868327,,1,,Europe/Paris,,OLI, +OLI:SA:5702,1,"Beaucamps Mairie",50.605383,2.916134,,1,,Europe/Paris,,OLI, +OLI:SA:5703,1,"Bon Temps",50.619879,2.931333,,1,,Europe/Paris,,OLI, +OLI:SA:5704,1,"Mairie",50.584091,2.889793,,1,,Europe/Paris,,OLI, +OLI:SA:5707,1,"Cimetiere",50.583491,2.89562,,1,,Europe/Paris,,OLI, +OLI:SA:5708,1,"4 Chemins",50.580429,2.873888,,1,,Europe/Paris,,OLI, +OLI:SA:5709,1,"Carnot",50.586298,2.88783,,1,,Europe/Paris,,OLI, +OLI:SA:571,1,"Botte D'Or",50.558555,2.836179,,1,,Europe/Paris,,OLI, +OLI:SA:5711,1,"La Colle",50.607228,2.952046,,1,,Europe/Paris,,OLI, +OLI:SA:5714,1,"St Vaast",50.615263,2.959815,,1,,Europe/Paris,,OLI, +OLI:SA:5715,1,"Hallennes Mairie",50.614123,2.96004,,1,,Europe/Paris,,OLI, +OLI:SA:5722,1,"Rue Chobourdin",50.58316,2.852106,,1,,Europe/Paris,,OLI, +OLI:SA:5724,1,"Egalite",50.579014,2.852472,,1,,Europe/Paris,,OLI, +OLI:SA:5725,1,"Guinguette",50.704032,3.171218,,1,,Europe/Paris,,OLI, +OLI:SA:5728,1,"Les Bois",50.762577,3.092386,,1,,Europe/Paris,,OLI, +OLI:SA:573,1,"Centre",50.561907,2.83248,,1,,Europe/Paris,,OLI, +OLI:SA:5730,1,"Gros Chene",50.762854,3.077811,,1,,Europe/Paris,,OLI, +OLI:SA:5731,1,"Chem Des Vaches",50.773049,3.064568,,1,,Europe/Paris,,OLI, +OLI:SA:5732,1,"Bousbecque Cat",50.772889,3.068894,,1,,Europe/Paris,,OLI, +OLI:SA:5733,1,"Cimetiere",50.765985,3.077574,,1,,Europe/Paris,,OLI, +OLI:SA:5735,1,"La Dreve",50.764758,3.087752,,1,,Europe/Paris,,OLI, +OLI:SA:5736,1,"Petit Paris",50.758384,3.093128,,1,,Europe/Paris,,OLI, +OLI:SA:5737,1,"Papeterie",50.772223,3.084173,,1,,Europe/Paris,,OLI, +OLI:SA:5738,1,"Faidherbe",50.765646,3.022671,,1,,Europe/Paris,,OLI, +OLI:SA:574,1,"Bouchery",50.55872,2.835209,,1,,Europe/Paris,,OLI, +OLI:SA:5740,1,"Le Christ",50.767623,3.033277,,1,,Europe/Paris,,OLI, +OLI:SA:5744,1,"Curie",50.773998,3.053931,,1,,Europe/Paris,,OLI, +OLI:SA:5745,1,"Europe",50.771743,3.04687,,1,,Europe/Paris,,OLI, +OLI:SA:5746,1,"Victoire",50.769492,3.039017,,1,,Europe/Paris,,OLI, +OLI:SA:5747,1,"Comines Mairie",50.765047,3.005905,,1,,Europe/Paris,,OLI, +OLI:SA:5748,1,"Clemenceau",50.66464,3.083693,,1,,Europe/Paris,,OLI, +OLI:SA:5752,1,"Hts De Neuville",50.739879,3.163747,,1,,Europe/Paris,,OLI, +OLI:SA:5754,1,"Pont De Neuville",50.736639,3.170717,,1,,Europe/Paris,,OLI, +OLI:SA:5755,1,"Rue De Gand",50.737938,3.162909,,1,,Europe/Paris,,OLI, +OLI:SA:5756,1,"C. De La Lys (B)",50.777156,2.992177,,1,,Europe/Paris,,OLI, +OLI:SA:5759,1,"Egalite",50.735559,3.168537,,1,,Europe/Paris,,OLI, +OLI:SA:5760,1,"Rochdale",50.732056,3.16797,,1,,Europe/Paris,,OLI, +OLI:SA:5763,1,"Rue Des Champs",50.726076,3.141799,,1,,Europe/Paris,,OLI, +OLI:SA:5765,1,"Rue De L'Yser",50.741152,3.166538,,1,,Europe/Paris,,OLI, +OLI:SA:5766,1,"Brossolette",50.730214,3.134418,,1,,Europe/Paris,,OLI, +OLI:SA:5771,1,"Place Chanzy",50.685848,2.891949,,1,,Europe/Paris,,OLI, +OLI:SA:5773,1,"Jules Guesde",50.682583,2.885998,,1,,Europe/Paris,,OLI, +OLI:SA:5775,1,"Lycee Hazard",50.688812,2.874728,,1,,Europe/Paris,,OLI, +OLI:SA:5776,1,"Jean Jaures",50.685787,2.887515,,1,,Europe/Paris,,OLI, +OLI:SA:578,1,"Gare",50.528149,2.804659,,1,,Europe/Paris,,OLI, +OLI:SA:5780,1,"La Quenouille",50.694044,3.089344,,1,,Europe/Paris,,OLI, +OLI:SA:5781,1,"Bas Chemin",50.711073,3.088541,,1,,Europe/Paris,,OLI, +OLI:SA:5782,1,"Fort Montagne",50.703052,3.087559,,1,,Europe/Paris,,OLI, +OLI:SA:5783,1,"Chapelle",50.698296,3.087897,,1,,Europe/Paris,,OLI, +OLI:SA:5784,1,"Le Damier",50.706596,3.102034,,1,,Europe/Paris,,OLI, +OLI:SA:5785,1,"Mont De Bondues",50.715284,3.108326,,1,,Europe/Paris,,OLI, +OLI:SA:5786,1,"Ouvroir",50.706263,3.090418,,1,,Europe/Paris,,OLI, +OLI:SA:5787,1,"Salle Poher",50.694052,3.088031,,1,,Europe/Paris,,OLI, +OLI:SA:5789,1,"Le Jambon",50.710976,3.10737,,1,,Europe/Paris,,OLI, +OLI:SA:5790,1,"Carrousel",50.70435,3.090926,,1,,Europe/Paris,,OLI, +OLI:SA:5791,1,"Dom De La Vigne",50.714166,3.085889,,1,,Europe/Paris,,OLI, +OLI:SA:5792,1,"Les Saules",50.701645,3.07686,,1,,Europe/Paris,,OLI, +OLI:SA:5793,1,"Bondues Centre",50.700517,3.09437,,1,,Europe/Paris,,OLI, +OLI:SA:5794,1,"Saint Georges",50.703768,3.083332,,1,,Europe/Paris,,OLI, +OLI:SA:5795,1,"La Payelle",50.703124,3.097659,,1,,Europe/Paris,,OLI, +OLI:SA:5799,1,"Mairie",50.681016,2.995618,,1,,Europe/Paris,,OLI, +OLI:SA:5800,1,"Deulemont Mairie",50.734965,2.945084,,1,,Europe/Paris,,OLI, +OLI:SA:5802,1,"Belle Vue",50.737745,2.957838,,1,,Europe/Paris,,OLI, +OLI:SA:5803,1,"Pont Rouge",50.727317,2.940978,,1,,Europe/Paris,,OLI, +OLI:SA:5806,1,"Zone Artisanale",50.709111,2.931279,,1,,Europe/Paris,,OLI, +OLI:SA:5807,1,"Cite Faucheur",50.724281,2.940051,,1,,Europe/Paris,,OLI, +OLI:SA:5808,1,"Centre",50.712246,2.932334,,1,,Europe/Paris,,OLI, +OLI:SA:5810,1,"Petite Chapelle",50.715653,2.934394,,1,,Europe/Paris,,OLI, +OLI:SA:5816,1,"Scrive",50.662356,3.063535,,1,,Europe/Paris,,OLI, +OLI:SA:5818,1,"Cite Saint Leger",50.664444,2.97605,,1,,Europe/Paris,,OLI, +OLI:SA:5819,1,"Le Temple",50.670401,2.977609,,1,,Europe/Paris,,OLI, +OLI:SA:5820,1,"Ph. De Girard",50.664802,2.967474,,1,,Europe/Paris,,OLI, +OLI:SA:5821,1,"Hotel De Ville",50.668502,2.973618,,1,,Europe/Paris,,OLI, +OLI:SA:5825,1,"La Montagne",50.663229,2.964533,,1,,Europe/Paris,,OLI, +OLI:SA:5828,1,"Rte Deulemont",50.744486,2.945977,,1,,Europe/Paris,,OLI, +OLI:SA:5833,1,"Hospice",50.709034,3.089005,,1,,Europe/Paris,,OLI, +OLI:SA:5834,1,"Plat Pays",50.706983,3.067532,,1,,Europe/Paris,,OLI, +OLI:SA:5835,1,"Dom Cx Blanche",50.722915,3.10275,,1,,Europe/Paris,,OLI, +OLI:SA:5836,1,"Comines Gare",50.761162,3.009501,,1,,Europe/Paris,,OLI, +OLI:SA:5837,1,"Hurlupin",50.761817,3.011052,,1,,Europe/Paris,,OLI, +OLI:SA:5838,1,"Coll Ph Commynes",50.759254,3.01236,,1,,Europe/Paris,,OLI, +OLI:SA:5840,1,"3 Ballots",50.763723,3.015249,,1,,Europe/Paris,,OLI, +OLI:SA:5841,1,"Gambetta",50.760825,3.00377,,1,,Europe/Paris,,OLI, +OLI:SA:5842,1,"Chevron D'Or",50.758669,2.99448,,1,,Europe/Paris,,OLI, +OLI:SA:5845,1,"Bonaparte",50.760602,2.99862,,1,,Europe/Paris,,OLI, +OLI:SA:5846,1,"Leclerc",50.761917,3.00756,,1,,Europe/Paris,,OLI, +OLI:SA:5849,1,"Le Velo",50.711356,3.126673,,1,,Europe/Paris,,OLI, +OLI:SA:5850,1,"Salle Durieux",50.701046,3.135647,,1,,Europe/Paris,,OLI, +OLI:SA:5851,1,"Les Prieux",50.709312,3.135003,,1,,Europe/Paris,,OLI, +OLI:SA:5852,1,"Place De La Paix",50.699166,3.13244,,1,,Europe/Paris,,OLI, +OLI:SA:5853,1,"Rue Des Duriez",50.69526,3.138648,,1,,Europe/Paris,,OLI, +OLI:SA:5855,1,"Trois Louches",50.701382,3.035729,,1,,Europe/Paris,,OLI, +OLI:SA:5857,1,"Le Bihamel",50.694687,3.045831,,1,,Europe/Paris,,OLI, +OLI:SA:5859,1,"Chariot D'Or",50.692684,3.052552,,1,,Europe/Paris,,OLI, +OLI:SA:586,1,"Monument Aux Morts",50.536504,2.80416,,1,,Europe/Paris,,OLI, +OLI:SA:5860,1,"Pasteur",50.681405,3.047026,,1,,Europe/Paris,,OLI, +OLI:SA:5861,1,"Leclerc",50.684973,3.047316,,1,,Europe/Paris,,OLI, +OLI:SA:5863,1,"Ghesquiere",50.685556,3.042609,,1,,Europe/Paris,,OLI, +OLI:SA:5864,1,"Rue De Croix",50.677444,3.134677,,1,,Europe/Paris,,OLI, +OLI:SA:5866,1,"Place Gambetta",50.673606,3.128984,,1,,Europe/Paris,,OLI, +OLI:SA:5868,1,"Jean Jaures",50.680837,3.137216,,1,,Europe/Paris,,OLI, +OLI:SA:5869,1,"Lavoisier",50.675387,3.130974,,1,,Europe/Paris,,OLI, +OLI:SA:5874,1,"Rue Briqueterie",50.692062,3.140785,,1,,Europe/Paris,,OLI, +OLI:SA:5877,1,"Jp Sartre",50.672246,3.134058,,1,,Europe/Paris,,OLI, +OLI:SA:5882,1,"Beaupre",50.602892,2.994632,,1,,Europe/Paris,,OLI, +OLI:SA:5887,1,"Place Thiers",50.687354,2.877932,,1,,Europe/Paris,,OLI, +OLI:SA:5888,1,"Ste M. Madeleine",50.627497,2.956582,,1,,Europe/Paris,,OLI, +OLI:SA:589,1,"Ringot",50.676198,2.889555,,1,,Europe/Paris,,OLI, +OLI:SA:5890,1,"Le Christ",50.745734,3.158642,,1,,Europe/Paris,,OLI, +OLI:SA:5891,1,"Eglise",50.750667,3.153223,,1,,Europe/Paris,,OLI, +OLI:SA:5892,1,"Rue De L'Hospice",50.692448,3.17053,,1,,Europe/Paris,,OLI, +OLI:SA:5896,1,"Rue Des Champs",50.691621,3.16676,,1,,Europe/Paris,,OLI, +OLI:SA:5898,1,"2 Nations",50.787781,3.139216,,1,,Europe/Paris,,OLI, +OLI:SA:5905,1,"Lommelet",50.666033,3.049686,,1,,Europe/Paris,,OLI, +OLI:SA:5907,1,"Cavle",50.686555,3.049937,,1,,Europe/Paris,,OLI, +OLI:SA:5909,1,"Paul Verlaine",50.704364,3.066095,,1,,Europe/Paris,,OLI, +OLI:SA:591,1,"Hotel De Ville",50.672515,2.896869,,1,,Europe/Paris,,OLI, +OLI:SA:5914,1,"Pave Du Moulin",50.622435,3.12132,,1,,Europe/Paris,,OLI, +OLI:SA:5915,1,"Avenir",50.61946,3.099305,,1,,Europe/Paris,,OLI, +OLI:SA:5917,1,"Jean Jaures",50.62613,3.105724,,1,,Europe/Paris,,OLI, +OLI:SA:5922,1,"Verghelles",50.652256,3.006287,,1,,Europe/Paris,,OLI, +OLI:SA:5923,1,"Saut Du Loup",50.654968,3.034868,,1,,Europe/Paris,,OLI, +OLI:SA:5925,1,"Rue De Lompret",50.653496,3.012328,,1,,Europe/Paris,,OLI, +OLI:SA:5929,1,"Saint Calixte",50.652245,3.024502,,1,,Europe/Paris,,OLI, +OLI:SA:5930,1,"Clouet",50.652383,3.030458,,1,,Europe/Paris,,OLI, +OLI:SA:5932,1,"Ferme Aux Oies",50.686375,3.102501,,1,,Europe/Paris,,OLI, +OLI:SA:5933,1,"Samain",50.664316,3.03943,,1,,Europe/Paris,,OLI, +OLI:SA:5934,1,"Faure",50.669504,3.052855,,1,,Europe/Paris,,OLI, +OLI:SA:5936,1,"Hondschoote",50.667178,3.037805,,1,,Europe/Paris,,OLI, +OLI:SA:5938,1,"Pont De L'Abbaye",50.665912,3.064278,,1,,Europe/Paris,,OLI, +OLI:SA:5939,1,"Cassel",50.66792,3.041231,,1,,Europe/Paris,,OLI, +OLI:SA:5941,1,"Pn De Marquette",50.673077,3.050902,,1,,Europe/Paris,,OLI, +OLI:SA:5942,1,"Papeterie",50.671464,3.065883,,1,,Europe/Paris,,OLI, +OLI:SA:5943,1,"Leon Blum",50.650672,3.110236,,1,,Europe/Paris,,OLI, +OLI:SA:5945,1,"Mont D'Halluin",50.765291,3.144228,,1,,Europe/Paris,,OLI, +OLI:SA:5946,1,"Les Terres Ocres",50.651518,3.003328,,1,,Europe/Paris,,OLI, +OLI:SA:5947,1,"Jussieu",50.650559,3.035681,,1,,Europe/Paris,,OLI, +OLI:SA:5948,1,"La Cessoie",50.658031,3.03563,,1,,Europe/Paris,,OLI, +OLI:SA:595,1,"Poste",50.670431,2.903507,,1,,Europe/Paris,,OLI, +OLI:SA:5951,1,"Delivrance",50.641138,2.990212,,1,,Europe/Paris,,OLI, +OLI:SA:5958,1,"Labyrinthe",50.757149,3.148041,,1,,Europe/Paris,,OLI, +OLI:SA:5959,1,"Moulin",50.744741,3.160943,,1,,Europe/Paris,,OLI, +OLI:SA:596,1,"Wez-Macquart",50.659905,2.92735,,1,,Europe/Paris,,OLI, +OLI:SA:5963,1,"Les Aulnes",50.664969,3.206301,,1,,Europe/Paris,,OLI, +OLI:SA:5965,1,"La Phalecque",50.632998,2.989188,,1,,Europe/Paris,,OLI, +OLI:SA:5966,1,"A. Thoor",50.638542,2.990869,,1,,Europe/Paris,,OLI, +OLI:SA:5967,1,"Trocmet",50.635786,2.991242,,1,,Europe/Paris,,OLI, +OLI:SA:5969,1,"Duhoo",50.643593,2.989059,,1,,Europe/Paris,,OLI, +OLI:SA:5970,1,"Rue Du Hem",50.631881,2.984985,,1,,Europe/Paris,,OLI, +OLI:SA:5974,1,"Fin De La Guerre",50.619082,2.9385,,1,,Europe/Paris,,OLI, +OLI:SA:5979,1,"Semard",50.780931,3.119273,,1,,Europe/Paris,,OLI, +OLI:SA:5985,1,"Coll Notre Dame",50.531489,2.801622,,1,,Europe/Paris,,OLI, +OLI:SA:5987,1,"Rue De Verdun",50.589176,3.113443,,1,,Europe/Paris,,OLI, +OLI:SA:5988,1,"Moulin Lesquin",50.58782,3.087578,,1,,Europe/Paris,,OLI, +OLI:SA:5991,1,"Ecole J. Manuel",50.69066,3.120076,,1,,Europe/Paris,,OLI, +OLI:SA:5999,1,"Chasseurs De Driant",50.61865,3.032768,,1,,Europe/Paris,,OLI, +OLI:SA:600,1,"Gare",50.658778,3.073897,,1,,Europe/Paris,,OLI, +OLI:SA:6001,1,"Ph. De Girard",50.599627,3.054224,,1,,Europe/Paris,,OLI, +OLI:SA:6002,1,"P I De Douai",50.612081,3.075028,,1,,Europe/Paris,,OLI, +OLI:SA:603,1,"Victoire",50.656018,3.064374,,1,,Europe/Paris,,OLI, +OLI:SA:604,1,"Botanique",50.649124,3.07882,,1,,Europe/Paris,,OLI, +OLI:SA:605,1,"Rue Du Parc",50.651243,3.066435,,1,,Europe/Paris,,OLI, +OLI:SA:607,1,"Jeanne Maillotte",50.652123,3.069312,,1,,Europe/Paris,,OLI, +OLI:SA:6083,1,"Guinguette",50.635382,3.115218,,1,,Europe/Paris,,OLI, +OLI:SA:609,1,"Joffre",50.653763,3.066514,,1,,Europe/Paris,,OLI, +OLI:SA:613,1,"Saint Maur",50.651949,3.081909,,1,,Europe/Paris,,OLI, +OLI:SA:617,1,"Place De La Boucherie",50.657742,3.064089,,1,,Europe/Paris,,OLI, +OLI:SA:618,1,"Romarin",50.645602,3.075184,,1,,Europe/Paris,,OLI, +OLI:SA:622,1,"Mairie",50.65486,3.073656,,1,,Europe/Paris,,OLI, +OLI:SA:623,1,"Pompidou",50.651834,3.072638,,1,,Europe/Paris,,OLI, +OLI:SA:625,1,"Marche",50.655078,3.070103,,1,,Europe/Paris,,OLI, +OLI:SA:6254,1,"Mairie",50.610487,2.983214,,1,,Europe/Paris,,OLI, +OLI:SA:6255,1,"Caserne Des Pompiers",50.611309,2.978699,,1,,Europe/Paris,,OLI, +OLI:SA:6258,1,"Jacquard",50.605068,2.990262,,1,,Europe/Paris,,OLI, +OLI:SA:6260,1,"Valmy",50.611291,2.994136,,1,,Europe/Paris,,OLI, +OLI:SA:6261,1,"Europe",50.611988,2.975747,,1,,Europe/Paris,,OLI, +OLI:SA:6263,1,"Heurtebise",50.611954,2.99922,,1,,Europe/Paris,,OLI, +OLI:SA:6264,1,"Jardin Public",50.61143,2.988146,,1,,Europe/Paris,,OLI, +OLI:SA:6269,1,"Pl Aux Bleuets",50.641126,3.067698,,1,,Europe/Paris,,OLI, +OLI:SA:6273,1,"La Marliere",50.604271,3.013299,,1,,Europe/Paris,,OLI, +OLI:SA:6275,1,"Ferme D'Ennequin",50.607323,3.021107,,1,,Europe/Paris,,OLI, +OLI:SA:6276,1,"Dhainaut",50.613578,3.005825,,1,,Europe/Paris,,OLI, +OLI:SA:6277,1,"Ch De La Barre",50.60629,3.016399,,1,,Europe/Paris,,OLI, +OLI:SA:6279,1,"Pn De Loos",50.613482,3.010237,,1,,Europe/Paris,,OLI, +OLI:SA:6280,1,"Nd De Grace",50.611155,3.012631,,1,,Europe/Paris,,OLI, +OLI:SA:6281,1,"Clemenceau",50.61424,3.011079,,1,,Europe/Paris,,OLI, +OLI:SA:6282,1,"Longchamp",50.615048,3.002743,,1,,Europe/Paris,,OLI, +OLI:SA:6284,1,"Loos Mairie",50.615257,3.017155,,1,,Europe/Paris,,OLI, +OLI:SA:6286,1,"Pasteur",50.564587,2.999382,,1,,Europe/Paris,,OLI, +OLI:SA:6288,1,"Calvaire",50.551513,2.86834,,1,,Europe/Paris,,OLI, +OLI:SA:6289,1,"Chateau",50.686508,3.053438,,1,,Europe/Paris,,OLI, +OLI:SA:6296,1,"Av Industrielle",50.673662,3.055216,,1,,Europe/Paris,,OLI, +OLI:SA:6299,1,"Verne",50.61457,3.055989,,1,,Europe/Paris,,OLI, +OLI:SA:6306,1,"Lp Boilly",50.535499,2.811104,,1,,Europe/Paris,,OLI, +OLI:SA:6307,1,"Coll Schweitzer",50.541028,2.812916,,1,,Europe/Paris,,OLI, +OLI:SA:6310,1,"Cimetiere",50.739451,3.168672,,1,,Europe/Paris,,OLI, +OLI:SA:6311,1,"Herons",50.701263,2.888759,,1,,Europe/Paris,,OLI, +OLI:SA:6315,1,"Emmerin Mairie",50.593405,3.000581,,1,,Europe/Paris,,OLI, +OLI:SA:6316,1,"Fort Mahieu",50.682347,2.861741,,1,,Europe/Paris,,OLI, +OLI:SA:6318,1,"Le Bourg",50.678291,2.847285,,1,,Europe/Paris,,OLI, +OLI:SA:6319,1,"Les Acquets",50.679101,2.857373,,1,,Europe/Paris,,OLI, +OLI:SA:6322,1,"Verdun",50.590794,3.085297,,1,,Europe/Paris,,OLI, +OLI:SA:6324,1,"Wattignies Blum",50.590988,3.051084,,1,,Europe/Paris,,OLI, +OLI:SA:6329,1,"Le Moulin",50.677514,3.01302,,1,,Europe/Paris,,OLI, +OLI:SA:633,1,"Victoire",50.646535,3.023788,,1,,Europe/Paris,,OLI, +OLI:SA:6331,1,"Petit Baptiste",50.630622,3.237551,,1,,Europe/Paris,,OLI, +OLI:SA:6338,1,"Rubens",50.594819,3.082905,,1,,Europe/Paris,,OLI, +OLI:SA:634,1,"Alliance Nord-Ouest",50.658967,3.032003,,1,,Europe/Paris,,OLI, +OLI:SA:6340,1,"Calvaire",50.645032,2.974462,,1,,Europe/Paris,,OLI, +OLI:SA:6341,1,"14 Juillet",50.603847,3.08827,,1,,Europe/Paris,,OLI, +OLI:SA:6345,1,"College Demailly",50.543707,3.014945,,1,,Europe/Paris,,OLI, +OLI:SA:6346,1,"Rue Du Pont",50.622265,2.981519,,1,,Europe/Paris,,OLI, +OLI:SA:6347,1,"Le Colombier",50.69796,3.053715,,1,,Europe/Paris,,OLI, +OLI:SA:635,1,"Lavoisier",50.642038,3.022796,,1,,Europe/Paris,,OLI, +OLI:SA:6352,1,"Bourget",50.602865,3.055722,,1,,Europe/Paris,,OLI, +OLI:SA:6355,1,"Pharmacie",50.573243,2.996384,,1,,Europe/Paris,,OLI, +OLI:SA:6358,1,"Leers V. Hugo",50.682956,3.245977,,1,,Europe/Paris,,OLI, +OLI:SA:636,1,"Conquerants",50.660182,3.015071,,1,,Europe/Paris,,OLI, +OLI:SA:6364,1,"Champreuille",50.693559,3.126984,,1,,Europe/Paris,,OLI, +OLI:SA:637,1,"Canon D'Or",50.648676,3.043471,,1,,Europe/Paris,,OLI, +OLI:SA:6373,1,"Eurasante",50.599483,3.03697,,1,,Europe/Paris,,OLI, +OLI:SA:6380,1,"Lp De Flandres",50.68887,2.89019,,1,,Europe/Paris,,OLI, +OLI:SA:6385,1,"8 Mai 1945",50.640951,3.155749,,1,,Europe/Paris,,OLI, +OLI:SA:6392,1,"Petites Haies",50.586295,2.94387,,1,,Europe/Paris,,OLI, +OLI:SA:640,1,"Republique",50.64802,3.037353,,1,,Europe/Paris,,OLI, +OLI:SA:6404,1,"Hotel De Ville",50.618837,3.131247,,1,,Europe/Paris,,OLI, +OLI:SA:641,1,"Liberte",50.654962,3.029591,,1,,Europe/Paris,,OLI, +OLI:SA:6413,1,"Euroteleport",50.691554,3.180612,,1,,Europe/Paris,,OLI, +OLI:SA:6415,1,"Cte Scientifique",50.612046,3.142333,,1,,Europe/Paris,,OLI, +OLI:SA:6417,1,"Republique Beaux-Arts",50.632008,3.062234,,1,,Europe/Paris,,OLI, +OLI:SA:6419,1,"Ducroquet",50.680486,3.090255,,1,,Europe/Paris,,OLI, +OLI:SA:6422,1,"Place Leclerc",50.628292,3.042478,,1,,Europe/Paris,,OLI, +OLI:SA:652,1,"Blanchisseurs",50.639133,3.025774,,1,,Europe/Paris,,OLI, +OLI:SA:6522,1,"Pt De Neuville",50.736871,3.170891,,1,,Europe/Paris,,OLI, +OLI:SA:653,1,"Clinique De Lambersart",50.643553,3.029404,,1,,Europe/Paris,,OLI, +OLI:SA:6574,1,"Barbusse",50.740582,3.134528,,1,,Europe/Paris,,OLI, +OLI:SA:6583,1,"Orions",50.730941,3.13426,,1,,Europe/Paris,,OLI, +OLI:SA:6587,1,"Gare Jean Lebas",50.695604,3.164087,,1,,Europe/Paris,,OLI, +OLI:SA:660,1,"Hotel De Ville",50.648383,3.022234,,1,,Europe/Paris,,OLI, +OLI:SA:6601,1,"Zi Roubaix",50.672944,3.2264,,1,,Europe/Paris,,OLI, +OLI:SA:6602,1,"Nations Unies",50.692475,3.185076,,1,,Europe/Paris,,OLI, +OLI:SA:6603,1,"Saint Gerard",50.722509,3.18707,,1,,Europe/Paris,,OLI, +OLI:SA:661,1,"Lomme-Lambersart",50.641346,3.018131,,1,,Europe/Paris,,OLI, +OLI:SA:6627,1,"4 Cantons Stade",50.605435,3.139492,,1,,Europe/Paris,,OLI, +OLI:SA:6629,1,"Buisson",50.657154,3.090327,,1,,Europe/Paris,,OLI, +OLI:SA:6630,1,"Place De Gaulle",50.762687,3.011106,,1,,Europe/Paris,,OLI, +OLI:SA:6632,1,"Recherche",50.602786,3.038284,,1,,Europe/Paris,,OLI, +OLI:SA:6639,1,"Piscine Herlies",50.572504,2.853786,,1,,Europe/Paris,,OLI, +OLI:SA:664,1,"Lemire",50.653876,3.032779,,1,,Europe/Paris,,OLI, +OLI:SA:6648,1,"Frometz",50.607027,2.968804,,1,,Europe/Paris,,OLI, +OLI:SA:6651,1,"Koninginnestraat",50.787587,3.133172,,1,,Europe/Paris,,OLI, +OLI:SA:6693,1,"Tourcoing C.Cial",50.738608,3.13875,,1,,Europe/Paris,,OLI, +OLI:SA:6696,1,"Ep. Montesquieu",50.683743,3.163114,,1,,Europe/Paris,,OLI, +OLI:SA:671,1,"Foucault",50.653952,3.017597,,1,,Europe/Paris,,OLI, +OLI:SA:6713,1,"CHU-Eurasante (C.H.R B-Calmette)",50.607994,3.038921,,1,,Europe/Paris,,OLI, +OLI:SA:6724,1,"CHU-Centre O. Lambret",50.613141,3.036216,,1,,Europe/Paris,,OLI, +OLI:SA:6728,1,"Calmette",50.667759,3.193421,,1,,Europe/Paris,,OLI, +OLI:SA:673,1,"Viersen",50.651801,3.010683,,1,,Europe/Paris,,OLI, +OLI:SA:6731,1,"Voltaire",50.64311,3.056681,,1,,Europe/Paris,,OLI, +OLI:SA:6732,1,"Triez",50.692086,3.131381,,1,,Europe/Paris,,OLI, +OLI:SA:675,1,"Sainte Cecile",50.641822,3.03089,,1,,Europe/Paris,,OLI, +OLI:SA:6750,1,"Resistance",50.655824,3.042175,,1,,Europe/Paris,,OLI, +OLI:SA:6756,1,"Pilon",50.650429,3.091425,,1,,Europe/Paris,,OLI, +OLI:SA:6763,1,"Blanc Four",50.738454,3.11643,,1,,Europe/Paris,,OLI, +OLI:SA:677,1,"Gambetta",50.649575,3.039928,,1,,Europe/Paris,,OLI, +OLI:SA:6781,1,"Chateau Du Molinel",50.656212,2.975691,,1,,Europe/Paris,,OLI, +OLI:SA:6789,1,"Cretinier",50.705087,3.19916,,1,,Europe/Paris,,OLI, +OLI:SA:681,1,"Pn Lannoy",50.67062,3.207656,,1,,Europe/Paris,,OLI, +OLI:SA:6813,1,"Dieu De Marcq",50.644928,3.084344,,1,,Europe/Paris,,OLI, +OLI:SA:682,1,"Place",50.666933,3.210189,,1,,Europe/Paris,,OLI, +OLI:SA:6823,1,"Dutrey",50.600257,2.997515,,1,,Europe/Paris,,OLI, +OLI:SA:6826,1,"Gambetta",50.626158,3.056381,,1,,Europe/Paris,,OLI, +OLI:SA:6827,1,"Gambetta Leclerc",50.608431,2.986909,,1,,Europe/Paris,,OLI, +OLI:SA:6828,1,"Gassendi",50.649314,3.088953,,1,,Europe/Paris,,OLI, +OLI:SA:683,1,"Boutemy",50.668805,3.210588,,1,,Europe/Paris,,OLI, +OLI:SA:6830,1,"Happe Qui Peut",50.596593,3.037324,,1,,Europe/Paris,,OLI, +OLI:SA:6831,1,"Henri Carrette",50.699863,3.170979,,1,,Europe/Paris,,OLI, +OLI:SA:6832,1,"Hopital Prive",50.65428,3.15172,,1,,Europe/Paris,,OLI, +OLI:SA:6833,1,"Hopital Victor Provo",50.678621,3.172474,,1,,Europe/Paris,,OLI, +OLI:SA:6834,1,"Institution Croix Blanche",50.719308,3.108841,,1,,Europe/Paris,,OLI, +OLI:SA:6838,1,"Laennec",50.666245,3.198279,,1,,Europe/Paris,,OLI, +OLI:SA:684,1,"Repos",50.682939,3.249492,,1,,Europe/Paris,,OLI, +OLI:SA:6840,1,"Le Colombier",50.694507,3.055275,,1,,Europe/Paris,,OLI, +OLI:SA:6841,1,"Grand Palais",50.629901,3.075827,,1,,Europe/Paris,,OLI, +OLI:SA:6844,1,"Mairie De Lille",50.630338,3.068683,,1,,Europe/Paris,,OLI, +OLI:SA:6845,1,"Mairie De Mons",50.641474,3.112111,,1,,Europe/Paris,,OLI, +OLI:SA:6846,1,"College",50.682385,3.105192,,1,,Europe/Paris,,OLI, +OLI:SA:6850,1,"Marx Dormoy",50.599982,2.962415,,1,,Europe/Paris,,OLI, +OLI:SA:6851,1,"Molinel",50.688861,3.115218,,1,,Europe/Paris,,OLI, +OLI:SA:6852,1,"Orions",50.732548,3.13129,,1,,Europe/Paris,,OLI, +OLI:SA:6853,1,"Papin",50.727799,3.137545,,1,,Europe/Paris,,OLI, +OLI:SA:686,1,"Porte De France",50.684059,3.254483,,1,,Europe/Paris,,OLI, +OLI:SA:6860,1,"Ferme Lassus",50.717017,3.239364,,1,,Europe/Paris,,OLI, +OLI:SA:6862,1,"Hentges",50.725261,3.160693,,1,,Europe/Paris,,OLI, +OLI:SA:6863,1,"Petit Perle",50.72007,3.020251,,1,,Europe/Paris,,OLI, +OLI:SA:687,1,"Eglise",50.680663,3.246782,,1,,Europe/Paris,,OLI, +OLI:SA:6875,1,"Bois D'Achelles",50.723357,3.111023,,1,,Europe/Paris,,OLI, +OLI:SA:6876,1,"Justice",50.674427,3.203233,,1,,Europe/Paris,,OLI, +OLI:SA:688,1,"La Plaine",50.670135,3.237811,,1,,Europe/Paris,,OLI, +OLI:SA:6880,1,"Piscine",50.689669,2.869527,,1,,Europe/Paris,,OLI, +OLI:SA:689,1,"Centre Commercial",50.678935,3.215269,,1,,Europe/Paris,,OLI, +OLI:SA:6892,1,"Flocon",50.711256,3.14916,,1,,Europe/Paris,,OLI, +OLI:SA:6895,1,"Pierre Brizon",50.596969,3.129434,,1,,Europe/Paris,,OLI, +OLI:SA:6897,1,"Resistants",50.692383,2.870375,,1,,Europe/Paris,,OLI, +OLI:SA:6898,1,"Faidherbe",50.68193,2.873242,,1,,Europe/Paris,,OLI, +OLI:SA:6899,1,"Ct Hospitalier",50.683943,2.870355,,1,,Europe/Paris,,OLI, +OLI:SA:6901,1,"Europe",50.689452,2.865599,,1,,Europe/Paris,,OLI, +OLI:SA:6902,1,"11 Novembre",50.592327,3.105994,,1,,Europe/Paris,,OLI, +OLI:SA:6907,1,"Hopital Salengro",50.607405,3.030469,,1,,Europe/Paris,,OLI, +OLI:SA:691,1,"Bauwens",50.684044,3.241959,,1,,Europe/Paris,,OLI, +OLI:SA:6910,1,"Le Mesnil",50.643322,3.207886,,1,,Europe/Paris,,OLI, +OLI:SA:6912,1,"Hem Eglise",50.650011,3.191509,,1,,Europe/Paris,,OLI, +OLI:SA:6914,1,"Bd De L'Ouest",50.637172,3.120183,,1,,Europe/Paris,,OLI, +OLI:SA:6915,1,"Le Nouveau Monde",50.541111,2.819266,,1,,Europe/Paris,,OLI, +OLI:SA:6918,1,"Parc Des Sports",50.676227,3.201133,,1,,Europe/Paris,,OLI, +OLI:SA:6919,1,"Av. Des Sports",50.678849,3.207079,,1,,Europe/Paris,,OLI, +OLI:SA:6920,1,"Tremiere",50.619796,3.138397,,1,,Europe/Paris,,OLI, +OLI:SA:6921,1,"Ctre Commercial",50.632208,2.965202,,1,,Europe/Paris,,OLI, +OLI:SA:6923,1,"Gambetta",50.606859,3.088568,,1,,Europe/Paris,,OLI, +OLI:SA:6924,1,"Courtilles",50.64417,3.15463,,1,,Europe/Paris,,OLI, +OLI:SA:6925,1,"Commune De Paris",50.547538,3.042157,,1,,Europe/Paris,,OLI, +OLI:SA:6928,1,"Rte Pt A Marcq",50.556443,3.03327,,1,,Europe/Paris,,OLI, +OLI:SA:693,1,"Mirabeau",50.687149,3.220623,,1,,Europe/Paris,,OLI, +OLI:SA:6932,1,"Rue D'Ennetieres",50.565844,3.064642,,1,,Europe/Paris,,OLI, +OLI:SA:6938,1,"P.A Mauroy",50.762695,3.121051,,1,,Europe/Paris,,OLI, +OLI:SA:694,1,"Ferme D'Halluin",50.686024,3.223639,,1,,Europe/Paris,,OLI, +OLI:SA:6940,1,"Laennec",50.589466,3.050583,,1,,Europe/Paris,,OLI, +OLI:SA:6941,1,"Bleriot",50.588928,3.03957,,1,,Europe/Paris,,OLI, +OLI:SA:6942,1,"Quart. Beaulieu",50.703282,3.234864,,1,,Europe/Paris,,OLI, +OLI:SA:6943,1,"Bargues Marais",50.580121,3.034374,,1,,Europe/Paris,,OLI, +OLI:SA:6947,1,"Fin De La Guerre",50.729259,3.144818,,1,,Europe/Paris,,OLI, +OLI:SA:695,1,"Grimonpont",50.689962,3.236121,,1,,Europe/Paris,,OLI, +OLI:SA:6950,1,"Armentieres Gare",50.680831,2.878397,,1,,Europe/Paris,,OLI, +OLI:SA:6953,1,"Securite Sociale",50.681779,2.881118,,1,,Europe/Paris,,OLI, +OLI:SA:6955,1,"Maternite",50.685899,2.867948,,1,,Europe/Paris,,OLI, +OLI:SA:6956,1,"Renan Buisson",50.701093,2.884492,,1,,Europe/Paris,,OLI, +OLI:SA:6957,1,"Marc Sangnier",50.697625,2.883847,,1,,Europe/Paris,,OLI, +OLI:SA:6958,1,"Pres Du Hem",50.694902,2.882998,,1,,Europe/Paris,,OLI, +OLI:SA:6959,1,"Leo Lagrange",50.694524,2.887358,,1,,Europe/Paris,,OLI, +OLI:SA:696,1,"De Vinci",50.685996,3.23869,,1,,Europe/Paris,,OLI, +OLI:SA:6960,1,"Aristide Briand",50.690861,2.886117,,1,,Europe/Paris,,OLI, +OLI:SA:6961,1,"Place Aux Toiles",50.688822,2.882706,,1,,Europe/Paris,,OLI, +OLI:SA:6962,1,"Rue De Lille",50.683946,2.879871,,1,,Europe/Paris,,OLI, +OLI:SA:6964,1,"Coeur Poumon",50.607338,3.034401,,1,,Europe/Paris,,OLI, +OLI:SA:6965,1,"Hop J De Flandre",50.60498,3.034171,,1,,Europe/Paris,,OLI, +OLI:SA:6966,1,"Fac De Medecine",50.604392,3.031893,,1,,Europe/Paris,,OLI, +OLI:SA:6968,1,"Hopital Fontan",50.609706,3.028006,,1,,Europe/Paris,,OLI, +OLI:SA:697,1,"Papinerie",50.673447,3.234977,,1,,Europe/Paris,,OLI, +OLI:SA:6970,1,"Magasin",50.645805,3.054505,,1,,Europe/Paris,,OLI, +OLI:SA:6971,1,"W. Churchill",50.648394,3.061258,,1,,Europe/Paris,,OLI, +OLI:SA:6972,1,"Florence",50.729531,3.16732,,1,,Europe/Paris,,OLI, +OLI:SA:6978,1,"Creche",50.685842,3.159111,,1,,Europe/Paris,,OLI, +OLI:SA:6979,1,"Paul Gelle",50.683654,3.198536,,1,,Europe/Paris,,OLI, +OLI:SA:6985,1,"Racine",50.737572,3.143666,,1,,Europe/Paris,,OLI, +OLI:SA:6987,1,"Gustave Dron",50.6843,2.89117,,1,,Europe/Paris,,OLI, +OLI:SA:699,1,"Leers Bifur",50.680334,3.242626,,1,,Europe/Paris,,OLI, +OLI:SA:6991,1,"Union",50.70714,3.169222,,1,,Europe/Paris,,OLI, +OLI:SA:6994,1,"Bargues",50.575147,3.022217,,1,,Europe/Paris,,OLI, +OLI:SA:6996,1,"Bradford",50.715138,3.14394,,1,,Europe/Paris,,OLI, +OLI:SA:700,1,"Nechin",50.67887,3.24658,,1,,Europe/Paris,,OLI, +OLI:SA:7002,1,"Calmette",50.716917,3.129473,,1,,Europe/Paris,,OLI, +OLI:SA:7007,1,"Blanchisserie",50.59161,2.982012,,1,,Europe/Paris,,OLI, +OLI:SA:701,1,"Buisson",50.683184,3.23062,,1,,Europe/Paris,,OLI, +OLI:SA:7010,1,"Bondues Ravennes",50.722712,3.127926,,1,,Europe/Paris,,OLI, +OLI:SA:7013,1,"Les Peupliers",50.713601,3.145709,,1,,Europe/Paris,,OLI, +OLI:SA:7014,1,"Harmonie",50.603022,3.153295,,1,,Europe/Paris,,OLI, +OLI:SA:703,1,"College Daudet",50.676074,3.241292,,1,,Europe/Paris,,OLI, +OLI:SA:7033,1,"Le Boulois",50.729068,3.112949,,1,,Europe/Paris,,OLI, +OLI:SA:7041,1,"18 Juin",50.60136,3.087034,,1,,Europe/Paris,,OLI, +OLI:SA:7042,1,"Trois Fermes",50.66163,3.198933,,1,,Europe/Paris,,OLI, +OLI:SA:7048,1,"Basquin",50.5936,3.110439,,1,,Europe/Paris,,OLI, +OLI:SA:7049,1,"Baratte",50.616925,3.15747,,1,,Europe/Paris,,OLI, +OLI:SA:7053,1,"Briqueterie",50.691517,3.148613,,1,,Europe/Paris,,OLI, +OLI:SA:7055,1,"Chateau D'Eau",50.677994,3.236329,,1,,Europe/Paris,,OLI, +OLI:SA:7057,1,"Chanterelle",50.638526,3.139713,,1,,Europe/Paris,,OLI, +OLI:SA:7061,1,"Cousinerie",50.644495,3.15836,,1,,Europe/Paris,,OLI, +OLI:SA:7063,1,"I.U.T. Crest",50.649343,3.161741,,1,,Europe/Paris,,OLI, +OLI:SA:7065,1,"Defaux",50.617487,3.109258,,1,,Europe/Paris,,OLI, +OLI:SA:7066,1,"Campus",50.643629,3.138525,,1,,Europe/Paris,,OLI, +OLI:SA:7067,1,"Liberte",50.628423,3.067766,,1,,Europe/Paris,,OLI, +OLI:SA:7068,1,"Emile Moreau",50.695283,3.173106,,1,,Europe/Paris,,OLI, +OLI:SA:707,1,"Leclerc",50.681019,3.238586,,1,,Europe/Paris,,OLI, +OLI:SA:7070,1,"Faidherbe",50.615357,3.112735,,1,,Europe/Paris,,OLI, +OLI:SA:7071,1,"Residence",50.620446,3.144583,,1,,Europe/Paris,,OLI, +OLI:SA:7072,1,"Ulysse Trelat",50.658503,3.042552,,1,,Europe/Paris,,OLI, +OLI:SA:7075,1,"Flers Masquelier",50.638056,3.124965,,1,,Europe/Paris,,OLI, +OLI:SA:7079,1,"Gendarmerie",50.646639,3.129473,,1,,Europe/Paris,,OLI, +OLI:SA:7081,1,"Les Hauts Champs",50.675152,3.195736,,1,,Europe/Paris,,OLI, +OLI:SA:7087,1,"Espe",50.639405,3.137033,,1,,Europe/Paris,,OLI, +OLI:SA:7089,1,"Kleber",50.582952,3.030172,,1,,Europe/Paris,,OLI, +OLI:SA:709,1,"Victor Hugo",50.682442,3.245064,,1,,Europe/Paris,,OLI, +OLI:SA:7092,1,"Lambersart Bourg",50.653809,3.027247,,1,,Europe/Paris,,OLI, +OLI:SA:7096,1,"Bois Blancs",50.633772,3.031681,,1,,Europe/Paris,,OLI, +OLI:SA:7097,1,"Leverie",50.667159,3.203502,,1,,Europe/Paris,,OLI, +OLI:SA:7100,1,"Ballon",50.647907,3.0858,,1,,Europe/Paris,,OLI, +OLI:SA:7102,1,"Hopital",50.747243,3.21838,,1,,Europe/Paris,,OLI, +OLI:SA:7103,1,"Rue Leopold",50.743454,3.222695,,1,,Europe/Paris,,OLI, +OLI:SA:7104,1,"Phenix",50.737737,3.223173,,1,,Europe/Paris,,OLI, +OLI:SA:7107,1,"Trocadero",50.646509,3.111667,,1,,Europe/Paris,,OLI, +OLI:SA:711,1,"Petit Bois",50.586907,3.107701,,1,,Europe/Paris,,OLI, +OLI:SA:7111,1,"Nationale",50.634509,3.056487,,1,,Europe/Paris,,OLI, +OLI:SA:7116,1,"Omnibus",50.711824,3.166192,,1,,Europe/Paris,,OLI, +OLI:SA:7119,1,"L.A.M.",50.638595,3.148375,,1,,Europe/Paris,,OLI, +OLI:SA:712,1,"Voyette",50.583039,3.127804,,1,,Europe/Paris,,OLI, +OLI:SA:7120,1,"Pierre Curie",50.591165,3.113939,,1,,Europe/Paris,,OLI, +OLI:SA:7122,1,"Philippe Lebon",50.627762,3.06134,,1,,Europe/Paris,,OLI, +OLI:SA:7123,1,"Tourcoing Centre",50.721485,3.158016,,1,,Europe/Paris,,OLI, +OLI:SA:7125,1,"Pompidou",50.68264,2.998971,,1,,Europe/Paris,,OLI, +OLI:SA:7127,1,"Pre Catelan",50.652406,3.060822,,1,,Europe/Paris,,OLI, +OLI:SA:7128,1,"Colpin",50.645612,3.132914,,1,,Europe/Paris,,OLI, +OLI:SA:7130,1,"Saint Remi",50.69515,3.180715,,1,,Europe/Paris,,OLI, +OLI:SA:7133,1,"Hotel De Ville",50.782607,3.125085,,1,,Europe/Paris,,OLI, +OLI:SA:7136,1,"St Clement",50.654564,3.023673,,1,,Europe/Paris,,OLI, +OLI:SA:7137,1,"Simons",50.615213,3.048864,,1,,Europe/Paris,,OLI, +OLI:SA:7138,1,"Mont Garin",50.659242,3.016357,,1,,Europe/Paris,,OLI, +OLI:SA:714,1,"College Charlemagne",50.589008,3.11733,,1,,Europe/Paris,,OLI, +OLI:SA:7143,1,"Calvaire",50.684042,3.000147,,1,,Europe/Paris,,OLI, +OLI:SA:7144,1,"Cheval Blanc",50.679964,2.996239,,1,,Europe/Paris,,OLI, +OLI:SA:7145,1,"Chateau",50.636222,3.135444,,1,,Europe/Paris,,OLI, +OLI:SA:7146,1,"Le Corbeau",50.670091,3.023773,,1,,Europe/Paris,,OLI, +OLI:SA:715,1,"Petite Chapelle",50.590668,3.102939,,1,,Europe/Paris,,OLI, +OLI:SA:7151,1,"Zi Hellu - Epine",50.618048,3.104218,,1,,Europe/Paris,,OLI, +OLI:SA:7152,1,"Gare",50.665797,2.974685,,1,,Europe/Paris,,OLI, +OLI:SA:716,1,"Jaures",50.585673,3.105512,,1,,Europe/Paris,,OLI, +OLI:SA:717,1,"Haie Plouvier",50.577607,3.124267,,1,,Europe/Paris,,OLI, +OLI:SA:718,1,"Crt 4",50.58161,3.143407,,1,,Europe/Paris,,OLI, +OLI:SA:7190,1,"Latte",50.750749,3.130845,,1,,Europe/Paris,,OLI, +OLI:SA:7191,1,"Piscine",50.755613,3.124729,,1,,Europe/Paris,,OLI, +OLI:SA:7192,1,"Avesnes",50.72758,3.16668,,1,,Europe/Paris,,OLI, +OLI:SA:7193,1,"Haley",50.605521,3.149742,,1,,Europe/Paris,,OLI, +OLI:SA:7198,1,"Chemin Wervicq",50.676356,3.080452,,1,,Europe/Paris,,OLI, +OLI:SA:7205,1,"Place St Hubert",50.638912,3.070374,,1,,Europe/Paris,,OLI, +OLI:SA:7211,1,"Lucie Aubrac",50.730069,3.141609,,1,,Europe/Paris,,OLI, +OLI:SA:7212,1,"Denis Papin",50.733043,3.143494,,1,,Europe/Paris,,OLI, +OLI:SA:7216,1,"Zac Du Mélantois",50.587063,3.136675,,1,,Europe/Paris,,OLI, +OLI:SA:7221,1,"Voie 213",50.713207,3.075266,,1,,Europe/Paris,,OLI, +OLI:SA:7225,1,"Voie 22",50.708228,3.078526,,1,,Europe/Paris,,OLI, +OLI:SA:7226,1,"Voie 41",50.704515,3.082948,,1,,Europe/Paris,,OLI, +OLI:SA:7227,1,"Voie 227",50.717444,3.073181,,1,,Europe/Paris,,OLI, +OLI:SA:723,1,"Petit Prince",50.592664,3.120896,,1,,Europe/Paris,,OLI, +OLI:SA:7232,1,"Jacques Prevert",50.702066,3.069409,,1,,Europe/Paris,,OLI, +OLI:SA:7239,1,"Alfred Mongy",50.687584,3.174869,,1,,Europe/Paris,,OLI, +OLI:SA:724,1,"Anatole France",50.584847,3.124197,,1,,Europe/Paris,,OLI, +OLI:SA:725,1,"Verdun",50.589731,3.113719,,1,,Europe/Paris,,OLI, +OLI:SA:726,1,"Croix Bougard",50.579097,3.115555,,1,,Europe/Paris,,OLI, +OLI:SA:727,1,"Jean Jaures",50.58547,3.1051,,1,,Europe/Paris,,OLI, +OLI:SA:728,1,"Mont De Sainghin",50.58234,3.131767,,1,,Europe/Paris,,OLI, +OLI:SA:733,1,"Bois D'Enchemont",50.582336,3.114098,,1,,Europe/Paris,,OLI, +OLI:SA:734,1,"Linnich",50.588261,3.100563,,1,,Europe/Paris,,OLI, +OLI:SA:736,1,"Cimetiere",50.591745,3.101434,,1,,Europe/Paris,,OLI, +OLI:SA:738,1,"Crt 3",50.579527,3.136752,,1,,Europe/Paris,,OLI, +OLI:SA:740,1,"Descat",50.581315,3.11094,,1,,Europe/Paris,,OLI, +OLI:SA:746,1,"4 Vents",50.612588,3.122265,,1,,Europe/Paris,,OLI, +OLI:SA:747,1,"Square Flandres (Lezennes)",50.625186,3.116075,,1,,Europe/Paris,,OLI, +OLI:SA:750,1,"Joliot Curie",50.612274,3.110911,,1,,Europe/Paris,,OLI, +OLI:SA:751,1,"Mairie",50.614569,3.116882,,1,,Europe/Paris,,OLI, +OLI:SA:752,1,"Oree Du Golf",50.610043,3.108974,,1,,Europe/Paris,,OLI, +OLI:SA:7536,1,"Lille Europe",50.639413,3.075107,,1,,Europe/Paris,,OLI, +OLI:SA:7539,1,"Anatole France",50.635034,3.0093,,1,,Europe/Paris,,OLI, +OLI:SA:7541,1,"Sacre Coeur",50.632658,3.052342,,1,,Europe/Paris,,OLI, +OLI:SA:7544,1,"Sebastopol",50.716284,3.163215,,1,,Europe/Paris,,OLI, +OLI:SA:7547,1,"Arteparc",50.595084,3.130983,,1,,Europe/Paris,,OLI, +OLI:SA:755,1,"Renoir",50.62026,3.036809,,1,,Europe/Paris,,OLI, +OLI:SA:7555,1,"Centre Commercial",50.589746,3.051743,,1,,Europe/Paris,,OLI, +OLI:SA:7557,1,"Ctre Commercial",50.548944,3.050485,,1,,Europe/Paris,,OLI, +OLI:SA:7559,1,"Hotel Voyageurs",50.723873,3.145452,,1,,Europe/Paris,,OLI, +OLI:SA:7560,1,"Petit Menin",50.740808,3.141132,,1,,Europe/Paris,,OLI, +OLI:SA:7569,1,"Le Ham",50.77326,3.089266,,1,,Europe/Paris,,OLI, +OLI:SA:757,1,"Artois",50.626091,3.061711,,1,,Europe/Paris,,OLI, +OLI:SA:7588,1,"Boutemy Prov",50.667853,3.211969,,1,,Europe/Paris,,OLI, +OLI:SA:760,1,"Piscine M. Dormoy",50.635687,3.035558,,1,,Europe/Paris,,OLI, +OLI:SA:7608,1,"Hotel De Ville",50.723997,3.159273,,1,,Europe/Paris,,OLI, +OLI:SA:762,1,"Colpin",50.642052,3.053464,,1,,Europe/Paris,,OLI, +OLI:SA:7631,1,"Santes Eglise",50.597445,2.954885,,1,,Europe/Paris,,OLI, +OLI:SA:7634,1,"Cimetiere",50.584909,3.042726,,1,,Europe/Paris,,OLI, +OLI:SA:7636,1,"Prom De Flandre",50.742998,3.146412,,1,,Europe/Paris,,OLI, +OLI:SA:7641,1,"Galon D'Eau",50.69313,3.187643,,1,,Europe/Paris,,OLI, +OLI:SA:7642,1,"Marequaix",50.610024,3.211507,,1,,Europe/Paris,,OLI, +OLI:SA:765,1,"Place A. Tacq",50.620329,3.034089,,1,,Europe/Paris,,OLI, +OLI:SA:7650,1,"Rue Thiers",50.608819,3.174466,,1,,Europe/Paris,,OLI, +OLI:SA:7657,1,"Blanchemaille",50.69656,3.167224,,1,,Europe/Paris,,OLI, +OLI:SA:7659,1,"Quesnoy Mairie",50.712643,3.000584,,1,,Europe/Paris,,OLI, +OLI:SA:766,1,"Ferrer",50.628892,3.088293,,1,,Europe/Paris,,OLI, +OLI:SA:7660,1,"Rue D'Haubourdin",50.624984,2.958554,,1,,Europe/Paris,,OLI, +OLI:SA:7661,1,"Champ De Mars",50.637024,3.051191,,1,,Europe/Paris,,OLI, +OLI:SA:7663,1,"P. De Roubaix",50.690349,3.186282,,1,,Europe/Paris,,OLI, +OLI:SA:7664,1,"Republique",50.581472,3.042861,,1,,Europe/Paris,,OLI, +OLI:SA:7666,1,"Herriot",50.608856,3.008173,,1,,Europe/Paris,,OLI, +OLI:SA:774,1,"Caulier",50.636522,3.087477,,1,,Europe/Paris,,OLI, +OLI:SA:775,1,"Rue De Wazemmes",50.623196,3.061246,,1,,Europe/Paris,,OLI, +OLI:SA:776,1,"Porte De Douai",50.618087,3.072734,,1,,Europe/Paris,,OLI, +OLI:SA:778,1,"Fives",50.63306,3.090345,,1,,Europe/Paris,,OLI, +OLI:SA:786,1,"Rue De Valenciennes",50.622764,3.072111,,1,,Europe/Paris,,OLI, +OLI:SA:788,1,"Massena",50.631508,3.054244,,1,,Europe/Paris,,OLI, +OLI:SA:796,1,"Palais De Justice",50.642398,3.063485,,1,,Europe/Paris,,OLI, +OLI:SA:797,1,"St Maurice Pellevoisin",50.642303,3.088354,,1,,Europe/Paris,,OLI, +OLI:SA:800,1,"Tanneurs",50.633796,3.06642,,1,,Europe/Paris,,OLI, +OLI:SA:803,1,"Courbet",50.607468,3.043044,,1,,Europe/Paris,,OLI, +OLI:SA:805,1,"Gare Lille Europe",50.639659,3.076027,,1,,Europe/Paris,,OLI, +OLI:SA:807,1,"Montagnards",50.634324,3.097754,,1,,Europe/Paris,,OLI, +OLI:SA:809,1,"Cormontaigne",50.626194,3.040686,,1,,Europe/Paris,,OLI, +OLI:SA:811,1,"Douai Arras",50.624399,3.067143,,1,,Europe/Paris,,OLI, +OLI:SA:815,1,"Lycee Louis Pasteur",50.640152,3.070138,,1,,Europe/Paris,,OLI, +OLI:SA:817,1,"Rue De Londres",50.617065,3.024371,,1,,Europe/Paris,,OLI, +OLI:SA:818,1,"Meuniers",50.621282,3.058708,,1,,Europe/Paris,,OLI, +OLI:SA:821,1,"Saint Charles",50.630524,3.02701,,1,,Europe/Paris,,OLI, +OLI:SA:822,1,"Mermoz",50.628626,3.0246,,1,,Europe/Paris,,OLI, +OLI:SA:823,1,"Conde",50.619713,3.054046,,1,,Europe/Paris,,OLI, +OLI:SA:827,1,"Pont Royal",50.6486,3.045699,,1,,Europe/Paris,,OLI, +OLI:SA:828,1,"Rue De Toul",50.633499,3.044921,,1,,Europe/Paris,,OLI, +OLI:SA:829,1,"Zenith",50.63328,3.076201,,1,,Europe/Paris,,OLI, +OLI:SA:831,1,"Square Des Meres",50.634087,3.095466,,1,,Europe/Paris,,OLI, +OLI:SA:832,1,"Molinel Paris",50.634342,3.068149,,1,,Europe/Paris,,OLI, +OLI:SA:833,1,"Legrand",50.63203,3.088693,,1,,Europe/Paris,,OLI, +OLI:SA:835,1,"Porte Des Postes",50.618189,3.050711,,1,,Europe/Paris,,OLI, +OLI:SA:838,1,"Jb Lebas",50.625492,3.068922,,1,,Europe/Paris,,OLI, +OLI:SA:839,1,"Grimonprez Jooris",50.647428,3.049859,,1,,Europe/Paris,,OLI, +OLI:SA:840,1,"Gide",50.606697,3.04457,,1,,Europe/Paris,,OLI, +OLI:SA:841,1,"Freres Lumiere",50.619842,3.08521,,1,,Europe/Paris,,OLI, +OLI:SA:842,1,"L. Danel",50.642307,3.057431,,1,,Europe/Paris,,OLI, +OLI:SA:845,1,"Arago",50.62038,3.061233,,1,,Europe/Paris,,OLI, +OLI:SA:846,1,"Arbrisseau",50.60582,3.048998,,1,,Europe/Paris,,OLI, +OLI:SA:847,1,"St Maurice",50.641388,3.085293,,1,,Europe/Paris,,OLI, +OLI:SA:848,1,"G. Lyon",50.623973,3.081563,,1,,Europe/Paris,,OLI, +OLI:SA:863,1,"Les Bateliers",50.645422,3.061779,,1,,Europe/Paris,,OLI, +OLI:SA:866,1,"Porte D'Arras",50.617664,3.062279,,1,,Europe/Paris,,OLI, +OLI:SA:867,1,"Casino",50.636657,3.077027,,1,,Europe/Paris,,OLI, +OLI:SA:870,1,"De Geyter",50.604802,3.057328,,1,,Europe/Paris,,OLI, +OLI:SA:871,1,"Lion D'Or",50.640372,3.064668,,1,,Europe/Paris,,OLI, +OLI:SA:872,1,"Boulevard De Metz",50.619448,3.04076,,1,,Europe/Paris,,OLI, +OLI:SA:873,1,"Trevise",50.62104,3.072481,,1,,Europe/Paris,,OLI, +OLI:SA:875,1,"Siege De Region",50.629687,3.077051,,1,,Europe/Paris,,OLI, +OLI:SA:894,1,"Cavell",50.609451,3.044623,,1,,Europe/Paris,,OLI, +OLI:SA:896,1,"Augereau",50.617867,3.028569,,1,,Europe/Paris,,OLI, +OLI:SA:901,1,"Rue De Cambrai",50.624134,3.074092,,1,,Europe/Paris,,OLI, +OLI:SA:909,1,"Carnot",50.639165,3.065596,,1,,Europe/Paris,,OLI, +OLI:SA:910,1,"Esplanade",50.645298,3.050562,,1,,Europe/Paris,,OLI, +OLI:SA:917,1,"Gaston Berger",50.614478,3.074725,,1,,Europe/Paris,,OLI, +OLI:SA:920,1,"Gare Lille Flandres",50.637455,3.0711,,1,,Europe/Paris,,OLI, +OLI:SA:921,1,"Place Catinat",50.633942,3.041246,,1,,Europe/Paris,,OLI, +OLI:SA:928,1,"Pont De Tournai",50.621603,3.086167,,1,,Europe/Paris,,OLI, +OLI:SA:932,1,"Bd De L'Usine",50.6254,3.088763,,1,,Europe/Paris,,OLI, +OLI:SA:934,1,"Port De Lille",50.63007,3.035875,,1,,Europe/Paris,,OLI, +OLI:SA:935,1,"Mairie De Lille",50.632422,3.071125,,1,,Europe/Paris,,OLI, +OLI:SA:940,1,"Cimetiere Du Sud",50.612587,3.046754,,1,,Europe/Paris,,OLI, +OLI:SA:942,1,"Rihour",50.636235,3.062027,,1,,Europe/Paris,,OLI, +OLI:SA:944,1,"Isly",50.62122,3.035243,,1,,Europe/Paris,,OLI, +OLI:SA:946,1,"Montebello",50.622084,3.045775,,1,,Europe/Paris,,OLI, +OLI:SA:949,1,"Tilmant",50.607813,3.059444,,1,,Europe/Paris,,OLI, +OLI:SA:950,1,"Rue Du Port",50.631544,3.049576,,1,,Europe/Paris,,OLI, +OLI:SA:951,1,"Jeanne D'Arc",50.626166,3.06418,,1,,Europe/Paris,,OLI, +OLI:SA:953,1,"Bas Jardin",50.623151,3.064277,,1,,Europe/Paris,,OLI, +OLI:SA:954,1,"Le Bois Habite",50.627333,3.079089,,1,,Europe/Paris,,OLI, +OLI:SA:955,1,"Universite Catholique",50.632458,3.046613,,1,,Europe/Paris,,OLI, +OLI:SA:964,1,"Dupleix",50.638678,3.08545,,1,,Europe/Paris,,OLI, +OLI:SA:965,1,"Porte De Valenciennes",50.621064,3.078897,,1,,Europe/Paris,,OLI, +OLI:SA:966,1,"Colbert",50.63017,3.045114,,1,,Europe/Paris,,OLI, +OLI:SA:969,1,"Fulton",50.623334,3.037374,,1,,Europe/Paris,,OLI, +OLI:SA:970,1,"Faculte De Pharmacie",50.604222,3.041335,,1,,Europe/Paris,,OLI, +OLI:SA:977,1,"College Matisse",50.73776,3.086597,,1,,Europe/Paris,,OLI, +OLI:SA:978,1,"Les Trois Fetus",50.727793,3.05208,,1,,Europe/Paris,,OLI, +OLI:SA:981,1,"Castelnau",50.735873,3.073594,,1,,Europe/Paris,,OLI, +OLI:SA:982,1,"Victor Hugo",50.745865,3.0885,,1,,Europe/Paris,,OLI, +OLI:SA:983,1,"Lotissement Joffre",50.730939,3.079838,,1,,Europe/Paris,,OLI, +OLI:SA:984,1,"Stemberg",50.74757,3.077994,,1,,Europe/Paris,,OLI, +OLI:SA:986,1,"Enclos Du Cygne",50.743038,3.093207,,1,,Europe/Paris,,OLI, +OLI:SA:987,1,"Vandamme",50.733685,3.076643,,1,,Europe/Paris,,OLI, +OLI:SA:989,1,"Freres D'Halluin",50.739046,3.073952,,1,,Europe/Paris,,OLI, +OLI:SA:990,1,"La Viscourt",50.7385,3.101929,,1,,Europe/Paris,,OLI, +OLI:SA:991,1,"Cimetiere",50.741664,3.080097,,1,,Europe/Paris,,OLI, +OLI:SA:993,1,"Nouveau Monde",50.735741,3.105632,,1,,Europe/Paris,,OLI, +OLI:SA:996,1,"Leo Lagrange",50.630478,3.009197,,1,,Europe/Paris,,OLI, +OLI:SA:999,1,"St. Philibert",50.651967,2.974395,,1,,Europe/Paris,,OLI, +OLO:SA:CTP13000001,1,"Vieux Moulin",49.390392,2.931673,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13000002,1,"Saint Jean aux Bois",49.347221,2.906573,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13000003,1,"Malassise",49.350122,2.885497,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13000004,1,"La Brévière",49.354371,2.873481,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13000005,1,"Lycée Pierre d'Ailly",49.40625,2.833744,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13000006,1,"Lycée Mireille Grenet",49.400281,2.814993,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13000009,1,"Palais",49.417994,2.829315,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13000011,1,"Collège F Bac",49.419444,2.829905,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13000012,1,"Magenta",49.416204,2.827121,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13000013,1,"LE FRANCPORT (Rue Victor Hugo)",49.434901,2.902258,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13000014,1,"LE FRANCPORT (Pont)",49.435333,2.907841,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13000015,1,"LE FRANCPORT (Château)",49.434311,2.912967,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13000016,1,"Marbonnerie",49.318433,2.776838,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13000021,1,"Mairie La Croix",49.355447,2.786232,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13000022,1,"Nord",49.358,2.790655,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13000023,1,"Hôpital",49.38742,2.790805,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13000024,1,"JANVILLE",49.453453,2.862034,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13000025,1,"Voirie Nicole",49.448555,2.864643,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13000026,1,"Bac à l'Aumône",49.441905,2.861021,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13000027,1,"Port à Carreaux",49.438924,2.850383,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13000028,1,"Centre",49.439869,2.843533,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13000029,1,"Ouïnels",49.43459,2.834252,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13000030,1,"Collège Debussy",49.43253,2.828406,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13000031,1,"République",49.428889,2.822449,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13000034,1,"Square Nolet",49.413582,2.79949,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13000038,1,"BIENVILLE",49.449605,2.828735,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13000041,1,"JONQUIERES-CHATEAU",49.38921,2.731591,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13000042,1,"Centre",49.366395,2.744263,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13000043,1,"Croisette",49.361243,2.750728,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13000044,1,"ARMANCOURT",49.371828,2.76552,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13000045,1,"Bas des Racques",49.37827,2.770265,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13000046,1,"Place",49.386316,2.776057,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13000047,1,"Rue des Grignons",49.391575,2.777451,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13000049,1,"Pérelles",49.406927,2.792175,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13000051,1,"Choisy Centre",49.437946,2.87886,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13000052,1,"Léo Delibes",49.439773,2.873051,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13000053,1,"Royaumont",49.442142,2.882638,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13000054,1,"Sergenteret",49.44348,2.886688,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13000055,1,"Linières",49.447295,2.881356,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13000056,1,"Marronniers",49.433962,2.875815,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13000059,1,"La Croix Collège",49.356879,2.776947,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13000061,1,"Hyppolyte Bottier",49.420234,2.82525,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13000063,1,"Dizocourt",49.381882,2.760058,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13000064,1,"Caulmont",49.378905,2.755837,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13000065,1,"dienval",49.395231,2.77996,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13000066,1,"Val Adam",49.399267,2.783501,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13000068,1,"Rue de Beauvais",49.41791,2.813767,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13000069,1,"Solferino",49.419451,2.823792,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13000071,1,"Varanval",49.391388,2.751879,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13000072,1,"Rue de Noyon",49.424867,2.826733,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13000074,1,"Mousquetaires",49.433974,2.842042,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13000076,1,"Victor Hugo",49.415751,2.830311,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13000077,1,"Mercières Aux Bois",49.380188,2.786159,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13000078,1,"Ecole des Bruyères",49.355047,2.796423,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13000081,1,"Les Tartres",49.388597,2.753522,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13000101,1,"Barthou",49.424355,2.810563,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13000113,1,"Mairie de Margny",49.424257,2.8195,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13000122,1,"Parc de Loisirs",49.388941,2.785245,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13000125,1,"Matra Lecuru",49.359331,2.787806,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13000127,1,"Longues Rayes",49.357531,2.774244,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13000221,1,"Réservoirs",49.406948,2.825807,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13100001,1,"Lycée Charles de Gaulle",49.383708,2.78187,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13100002,1,"Jean Monnet",49.381427,2.781423,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13100003,1,"Mercure",49.380715,2.784609,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13100004,1,"CIMA",49.384026,2.787982,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13100007,1,"Mercières",49.392179,2.788989,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13100008,1,"Blaise Pascal",49.396534,2.79423,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13100009,1,"Centre Commercial Royallieu",49.396758,2.796765,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13100010,1,"Vivier Corax",49.396082,2.799883,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13100011,1,"Pillet Will",49.396671,2.80783,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13100012,1,"Abbaye",49.398048,2.804856,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13100013,1,"Mémorial",49.402632,2.808848,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13100014,1,"Picardie",49.399667,2.808904,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13100015,1,"Jean L'Huillier",49.39915,2.812409,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13100016,1,"Piscine",49.402137,2.818149,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13100017,1,"Libération",49.405,2.82543,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13100018,1,"Verdun",49.402888,2.827861,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13100019,1,"Victoire",49.404784,2.823267,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13100021,1,"Carnot",49.409169,2.82971,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13100022,1,"La Vènerie",49.407245,2.832253,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13100023,1,"Lycée Pierre d'Ailly",49.405733,2.837152,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13100024,1,"Route Forestière du Moulin",49.400905,2.833774,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13100025,1,"Maison de l'Europe",49.406866,2.836888,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13100026,1,"Bournonville",49.408282,2.83558,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13100027,1,"Bournonville 2",49.409427,2.834586,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13100028,1,"Saint-Lazare",49.411882,2.831816,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13100029,1,"Jacques Monod",49.414246,2.829167,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13100031,1,"Grande-Bretagne",49.408647,2.83853,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13100032,1,"Rond Royal",49.412785,2.837084,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13100033,1,"Sous-Préfecture",49.41582,2.833203,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13100036,1,"Solférino",49.418548,2.82494,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13100038,1,"Anatole France",49.407629,2.805866,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13100039,1,"André Malraux",49.398993,2.794995,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13100041,1,"Ancien Hôpital",49.413331,2.822219,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13100046,1,"Bataillon de France",49.423181,2.838796,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13100047,1,"Belin",49.386285,2.796423,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13100048,1,"Bellicart Départ",49.427294,2.847582,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13100052,1,"Centre Commercial Jaux Venette",49.407569,2.781388,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13100054,1,"Camp du Roy",49.404134,2.779968,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13100057,1,"Castors",49.421481,2.805758,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13100058,1,"L'écharde",49.425986,2.844663,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13100059,1,"Centre de Recherches",49.400862,2.799513,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13100060,1,"Château de Venette",49.418567,2.804286,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13100061,1,"Cimetière de Venette",49.410391,2.795496,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13100062,1,"Cimetière Nord",49.424632,2.841936,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13100064,1,"Clos des Roses",49.407118,2.803355,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13100066,1,"Couttolenc",49.415401,2.819155,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13100067,1,"Centre Culturel",49.407778,2.80913,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13100068,1,"Centre de Secours",49.409765,2.801603,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13100070,1,"De Lattre de Tassigny",49.404474,2.815528,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13100071,1,"Delaïdde",49.408515,2.808971,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13100072,1,"Denielou",49.400918,2.796651,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13100073,1,"Robert Desnos",49.404131,2.802048,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13100074,1,"Domeliers",49.414547,2.823704,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13100075,1,"Docteur Calmette",49.400053,2.792596,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13100076,1,"Docteur Guérin",49.399083,2.790138,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13100078,1,"Ecole St-Germain",49.409735,2.816155,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13100079,1,"Eglise St-Germain",49.413763,2.815256,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13100081,1,"Ferdinand De Lesseps",49.395986,2.784866,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13100083,1,"Foyer Edith Piaf",49.428268,2.820515,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13100084,1,"Gambetta",49.412166,2.814925,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13100087,1,"Glacière",49.405505,2.818126,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13100088,1,"Gymnase de Margny",49.421113,2.810244,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13100089,1,"Hippolyte Bottier",49.420414,2.825674,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13100091,1,"Hauts de Venette",49.414054,2.791123,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13100092,1,"Hôpital de Jour",49.404915,2.799178,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13100093,1,"Les Jardins",49.408533,2.806714,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13100094,1,"Jeanne d'Arc",49.428231,2.829535,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13100095,1,"Justice",49.408001,2.823105,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13100098,1,"Mairie de Venette",49.415983,2.798892,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13100099,1,"Margny de Gaulle",49.422738,2.810576,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13100101,1,"Multiplexe",49.403377,2.775474,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13100103,1,"Octave Butin",49.426629,2.817098,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13100105,1,"Paramé",49.429732,2.827098,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13100110,1,"Prairie",49.420849,2.807258,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13100111,1,"Raleigh",49.410633,2.807242,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13100113,1,"Résidence Universitaire",49.411148,2.813167,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13100114,1,"Robida",49.404361,2.812264,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13100115,1,"Rostand",49.402739,2.802035,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13100116,1,"Rue d'Amiens",49.422589,2.820916,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13100120,1,"Soissons",49.422503,2.835429,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13100121,1,"Sports Nautiques",49.422685,2.830515,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13100122,1,"Square Bonnault",49.407218,2.827847,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13100126,1,"Saint Fiacre",49.407098,2.812978,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13100127,1,"Saint Joseph",49.410472,2.82054,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13100128,1,"Stade du Clos des Roses",49.407281,2.800645,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13100129,1,"Stade Dubois",49.430062,2.825655,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13100130,1,"Stalingrad",49.393902,2.798955,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13100132,1,"Veneurs",49.411018,2.830031,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13100134,1,"Weygand",49.406562,2.807577,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13200042,1,"Aventis",49.429895,2.859094,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13200044,1,"Barbillon",49.433431,2.845012,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13200048,1,"Bellicart Arrivée",49.427294,2.847582,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13200053,1,"Cailloux",49.406062,2.783192,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13200056,1,"Capucins",49.414486,2.821115,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13200069,1,"Cugnot",49.393053,2.783602,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13200090,1,"Harlay",49.419338,2.823006,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13200109,1,"Port à Bateaux",49.415714,2.819364,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13200117,1,"Rue de l'Aisne",49.429294,2.837699,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13200119,1,"Salle des Sports",49.412763,2.827102,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13200124,1,"Pommerelles",49.410097,2.828962,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13200133,1,"Vermandois",49.431535,2.840806,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13200135,1,"Monnet",49.409016,2.778716,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13400043,1,"Bannière du Roi",49.425814,2.834071,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13400045,1,"Carrefour Napoleon",49.406299,2.837241,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13400061,1,"Chemin d'Armancourt",49.390432,2.794878,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13400063,1,"Bois de Plaisance",49.412705,2.772167,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13400064,1,"Poincaré Centre Commercial",49.428683,2.833396,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13400066,1,"La Planchette",49.430315,2.836166,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13400068,1,"Huy Senlis",49.394347,2.804657,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13400078,1,"Rue de Clermont",49.418901,2.817618,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13400080,1,"Saint Corneille",49.416661,2.822884,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13400081,1,"Saint Côme - Mémorial",49.403473,2.807245,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13400083,1,"Camp de Royallieu",49.403761,2.804853,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13400085,1,"Croix Rouge",49.405469,2.811449,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13400087,1,"Rue de Paris",49.410548,2.817278,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13400090,1,"Port à carreaux",49.43787,2.84905,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13400095,1,"Bellicart",49.427751,2.847751,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13400110,1,"Parc Songeons",49.418462,2.82191,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13400111,1,"Les Clos Blancs Armancourt",49.37292,2.758994,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13400112,1,"Hauts de Margny",49.43777,2.802808,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13400113,1,"Carrefour D'Elblag",49.404941,2.817721,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13400114,1,"College Malraux",49.399051,2.796249,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13400115,1,"JONQUIERES-ECOLE",49.389357,2.733326,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13400119,1,"Parc Tertiaire",49.381747,2.78378,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13400121,1,"Zone d'Activité",49.323116,2.747703,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13400122,1,"Automne",49.317548,2.740451,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13400125,1,"Aramont",49.307621,2.718931,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13400126,1,"Mairie",49.309422,2.730894,,1,,Europe/Paris,,OLO, +OLO:SA:CTP13400127,1,"ZAC du valadan",49.440348,2.834129,,1,,Europe/Paris,,OLO, +OMZ:SA:10003,1,"PLACE D'ARMES",49.119573,6.175602,,1,,Europe/Paris,,OMZ, +OMZ:SA:10007,1,"SQUARE DU LUXEMBOURG",49.121377,6.168386,,1,,Europe/Paris,,OMZ, +OMZ:SA:10008,1,"ST-NICOLAS",49.11259,6.177927,,1,,Europe/Paris,,OMZ, +OMZ:SA:10009,1,"LAFAYETTE",49.10791,6.1729,,1,,Europe/Paris,,OMZ, +OMZ:SA:10010,1,"BON SECOURS",49.107097,6.168823,,1,,Europe/Paris,,OMZ, +OMZ:SA:10011,1,"CHARLES PETRE",49.105247,6.166612,,1,,Europe/Paris,,OMZ, +OMZ:SA:10012,1,"MANGIN",49.102885,6.164654,,1,,Europe/Paris,,OMZ, +OMZ:SA:10013,1,"VAILLANT",49.100017,6.162263,,1,,Europe/Paris,,OMZ, +OMZ:SA:10014,1,"SEMINAIRE",49.097557,6.160293,,1,,Europe/Paris,,OMZ, +OMZ:SA:10015,1,"ST-ANDRE",49.095413,6.158721,,1,,Europe/Paris,,OMZ, +OMZ:SA:10017,1,"LYAUTEY",49.093776,6.167894,,1,,Europe/Paris,,OMZ, +OMZ:SA:10018,1,"JERUSALEM",49.09183,6.16725,,1,,Europe/Paris,,OMZ, +OMZ:SA:10019,1,"COLSON",49.090122,6.166309,,1,,Europe/Paris,,OMZ, +OMZ:SA:10020,1,"VACONS",49.087468,6.164413,,1,,Europe/Paris,,OMZ, +OMZ:SA:10021,1,"MARGUERITE",49.088384,6.159496,,1,,Europe/Paris,,OMZ, +OMZ:SA:10022,1,"VOLONTAIRES",49.086557,6.15667,,1,,Europe/Paris,,OMZ, +OMZ:SA:10023,1,"MONTIGNY ST-PRIVAT",49.084679,6.154756,,1,,Europe/Paris,,OMZ, +OMZ:SA:10029,1,"HAIE BRULEE",49.110905,6.097038,,1,,Europe/Paris,,OMZ, +OMZ:SA:10030,1,"SERRET",49.109943,6.099705,,1,,Europe/Paris,,OMZ, +OMZ:SA:10031,1,"ST-JEAN",49.10793,6.105272,,1,,Europe/Paris,,OMZ, +OMZ:SA:10032,1,"MAGNY-AU-BOIS",49.075301,6.195189,,1,,Europe/Paris,,OMZ, +OMZ:SA:10033,1,"LIBERTE",49.107477,6.116533,,1,,Europe/Paris,,OMZ, +OMZ:SA:10034,1,"MOULINS",49.106116,6.110979,,1,,Europe/Paris,,OMZ, +OMZ:SA:10036,1,"PREVILLE",49.102424,6.104516,,1,,Europe/Paris,,OMZ, +OMZ:SA:10037,1,"ARDECHE",49.101225,6.106505,,1,,Europe/Paris,,OMZ, +OMZ:SA:10038,1,"LORRAINE",49.10195,6.108603,,1,,Europe/Paris,,OMZ, +OMZ:SA:10039,1,"SCY BAS",49.108444,6.121213,,1,,Europe/Paris,,OMZ, +OMZ:SA:10040,1,"LECLERC",49.11092,6.130153,,1,,Europe/Paris,,OMZ, +OMZ:SA:10041,1,"LONGEVILLE",49.112534,6.134798,,1,,Europe/Paris,,OMZ, +OMZ:SA:10042,1,"MIGETTE",49.114047,6.138831,,1,,Europe/Paris,,OMZ, +OMZ:SA:10043,1,"CASINO",49.116516,6.141374,,1,,Europe/Paris,,OMZ, +OMZ:SA:10044,1,"PONT DE VERDUN",49.119069,6.144067,,1,,Europe/Paris,,OMZ, +OMZ:SA:10045,1,"FOCH",49.120689,6.148013,,1,,Europe/Paris,,OMZ, +OMZ:SA:10046,1,"ST-MARTIN",49.121618,6.151047,,1,,Europe/Paris,,OMZ, +OMZ:SA:10047,1,"TIGNOMONT",49.126804,6.159731,,1,,Europe/Paris,,OMZ, +OMZ:SA:10048,1,"FORT MOSELLE",49.12446,6.164864,,1,,Europe/Paris,,OMZ, +OMZ:SA:10050,1,"DAGA",49.13654,6.155952,,1,,Europe/Paris,,OMZ, +OMZ:SA:10052,1,"ST-JACQUES",49.118268,6.176644,,1,,Europe/Paris,,OMZ, +OMZ:SA:10055,1,"DEMBOUR",49.106361,6.179303,,1,,Europe/Paris,,OMZ, +OMZ:SA:10057,1,"PIERNE",49.102413,6.179811,,1,,Europe/Paris,,OMZ, +OMZ:SA:10058,1,"LOTHAIRE",49.099882,6.180676,,1,,Europe/Paris,,OMZ, +OMZ:SA:10059,1,"VANDERNOOT",49.095652,6.180676,,1,,Europe/Paris,,OMZ, +OMZ:SA:10060,1,"BOUCHOTTE",49.09255,6.181266,,1,,Europe/Paris,,OMZ, +OMZ:SA:10061,1,"FRECOT",49.090989,6.181545,,1,,Europe/Paris,,OMZ, +OMZ:SA:10063,1,"FAUBOURG",49.085225,6.182661,,1,,Europe/Paris,,OMZ, +OMZ:SA:10064,1,"APREMONT",49.079809,6.187533,,1,,Europe/Paris,,OMZ, +OMZ:SA:10065,1,"LA PLAINE",49.078741,6.18972,,1,,Europe/Paris,,OMZ, +OMZ:SA:10066,1,"ROOSEVELT",49.077202,6.193824,,1,,Europe/Paris,,OMZ, +OMZ:SA:10067,1,"LE PATIS",49.15625,6.140045,,1,,Europe/Paris,,OMZ, +OMZ:SA:10068,1,"OBELLIANE",49.076075,6.192738,,1,,Europe/Paris,,OMZ, +OMZ:SA:10069,1,"ARMOISIERES",49.077225,6.189655,,1,,Europe/Paris,,OMZ, +OMZ:SA:10070,1,"BEAUSOLEIL",49.075759,6.187006,,1,,Europe/Paris,,OMZ, +OMZ:SA:10071,1,"HAUTS-DE-MAGNY",49.074096,6.190774,,1,,Europe/Paris,,OMZ, +OMZ:SA:10072,1,"COMEDIE",49.120924,6.17239,,1,,Europe/Paris,,OMZ, +OMZ:SA:10073,1,"AUBEPINE",49.072259,6.193105,,1,,Europe/Paris,,OMZ, +OMZ:SA:10074,1,"VALERIANE",49.070941,6.190727,,1,,Europe/Paris,,OMZ, +OMZ:SA:10075,1,"ROSEAUX",49.071261,6.186211,,1,,Europe/Paris,,OMZ, +OMZ:SA:10076,1,"ACACIAS",49.073324,6.184537,,1,,Europe/Paris,,OMZ, +OMZ:SA:10077,1,"PETIT CLOU",49.075662,6.184159,,1,,Europe/Paris,,OMZ, +OMZ:SA:10078,1,"ST-ROCH",49.078738,6.18397,,1,,Europe/Paris,,OMZ, +OMZ:SA:10079,1,"MORLOT",49.14108,6.150491,,1,,Europe/Paris,,OMZ, +OMZ:SA:10080,1,"QUATRE BORNES",49.139303,6.153457,,1,,Europe/Paris,,OMZ, +OMZ:SA:10081,1,"DEUX FONTAINES",49.148113,6.171605,,1,,Europe/Paris,,OMZ, +OMZ:SA:10082,1,"MOULINS MAIRIE",49.106999,6.106378,,1,,Europe/Paris,,OMZ, +OMZ:SA:10083,1,"PAQUET",49.135065,6.156755,,1,,Europe/Paris,,OMZ, +OMZ:SA:10084,1,"PATROTTE",49.134887,6.160986,,1,,Europe/Paris,,OMZ, +OMZ:SA:10087,1,"DALES",49.133061,6.164617,,1,,Europe/Paris,,OMZ, +OMZ:SA:10090,1,"PONTIFFROY",49.127384,6.175512,,1,,Europe/Paris,,OMZ, +OMZ:SA:10091,1,"RIMPORT",49.124273,6.181587,,1,,Europe/Paris,,OMZ, +OMZ:SA:10092,1,"ST-GEORGES",49.122576,6.178165,,1,,Europe/Paris,,OMZ, +OMZ:SA:10093,1,"ARENES",49.105965,6.173556,,1,,Europe/Paris,,OMZ, +OMZ:SA:10094,1,"BOILVIN",49.103326,6.174718,,1,,Europe/Paris,,OMZ, +OMZ:SA:10095,1,"ST-LIVIER",49.100742,6.175118,,1,,Europe/Paris,,OMZ, +OMZ:SA:10098,1,"EGLISE",49.098756,6.173013,,1,,Europe/Paris,,OMZ, +OMZ:SA:10099,1,"LAVOIR",49.097134,6.174831,,1,,Europe/Paris,,OMZ, +OMZ:SA:10101,1,"QUATRE VENTS",49.094443,6.176114,,1,,Europe/Paris,,OMZ, +OMZ:SA:10102,1,"LA HORGNE",49.093126,6.172674,,1,,Europe/Paris,,OMZ, +OMZ:SA:10107,1,"SABLIERES",49.086357,6.163463,,1,,Europe/Paris,,OMZ, +OMZ:SA:10108,1,"CUGNOT",49.085555,6.163519,,1,,Europe/Paris,,OMZ, +OMZ:SA:10115,1,"FONTAINES",49.146484,6.171782,,1,,Europe/Paris,,OMZ, +OMZ:SA:10116,1,"DE CHARDIN",49.144235,6.172027,,1,,Europe/Paris,,OMZ, +OMZ:SA:10120,1,"BOILEAU",49.142903,6.169071,,1,,Europe/Paris,,OMZ, +OMZ:SA:10121,1,"CONSTANTINE",49.092079,6.125349,,1,,Europe/Paris,,OMZ, +OMZ:SA:10124,1,"SAVOIE",49.096076,6.127347,,1,,Europe/Paris,,OMZ, +OMZ:SA:10125,1,"ALSACE",49.097718,6.129367,,1,,Europe/Paris,,OMZ, +OMZ:SA:10126,1,"HAUT-RHELE",49.099067,6.132351,,1,,Europe/Paris,,OMZ, +OMZ:SA:10127,1,"8 MAI 1945",49.099851,6.138506,,1,,Europe/Paris,,OMZ, +OMZ:SA:10128,1,"LES FRICHES",49.100016,6.141917,,1,,Europe/Paris,,OMZ, +OMZ:SA:10129,1,"ST-QUENTIN",49.097219,6.143805,,1,,Europe/Paris,,OMZ, +OMZ:SA:10130,1,"VOSGES",49.093294,6.131734,,1,,Europe/Paris,,OMZ, +OMZ:SA:10131,1,"ALGER",49.094338,6.135013,,1,,Europe/Paris,,OMZ, +OMZ:SA:10132,1,"TOURAINE",49.095335,6.138015,,1,,Europe/Paris,,OMZ, +OMZ:SA:10133,1,"TOURNEBRIDE",49.086032,6.112989,,1,,Europe/Paris,,OMZ, +OMZ:SA:10134,1,"ROTONDE",49.08751,6.117701,,1,,Europe/Paris,,OMZ, +OMZ:SA:10135,1,"LOTISSEMENT INDUSTRIEL",49.08957,6.124191,,1,,Europe/Paris,,OMZ, +OMZ:SA:10136,1,"CITE SNCF",49.090638,6.127734,,1,,Europe/Paris,,OMZ, +OMZ:SA:10137,1,"ST-VICTOR",49.098132,6.14686,,1,,Europe/Paris,,OMZ, +OMZ:SA:10138,1,"LITALDUS-HOTEL DE VILLE",49.099705,6.15185,,1,,Europe/Paris,,OMZ, +OMZ:SA:10139,1,"NATION",49.101307,6.154631,,1,,Europe/Paris,,OMZ, +OMZ:SA:10140,1,"EUROPA COURCELLES",49.101998,6.15859,,1,,Europe/Paris,,OMZ, +OMZ:SA:10141,1,"BOTANIQUE",49.103832,6.162363,,1,,Europe/Paris,,OMZ, +OMZ:SA:10142,1,"GENIE",49.105973,6.163997,,1,,Europe/Paris,,OMZ, +OMZ:SA:10143,1,"VERLAINE",49.108851,6.167384,,1,,Europe/Paris,,OMZ, +OMZ:SA:10152,1,"LES BORDES",49.114392,6.221714,,1,,Europe/Paris,,OMZ, +OMZ:SA:10155,1,"CLOUTIERS",49.114826,6.229375,,1,,Europe/Paris,,OMZ, +OMZ:SA:10156,1,"NONNETIERS",49.114711,6.236322,,1,,Europe/Paris,,OMZ, +OMZ:SA:10158,1,"SERRURIERS",49.118433,6.240051,,1,,Europe/Paris,,OMZ, +OMZ:SA:10159,1,"POTIERS D'ETAIN",49.115879,6.24365,,1,,Europe/Paris,,OMZ, +OMZ:SA:10163,1,"HESTAUX",49.10097,6.191583,,1,,Europe/Paris,,OMZ, +OMZ:SA:10164,1,"GOUSSEL",49.10153,6.195049,,1,,Europe/Paris,,OMZ, +OMZ:SA:10165,1,"CLAUDEL",49.101674,6.199262,,1,,Europe/Paris,,OMZ, +OMZ:SA:10166,1,"OBERLING",49.102852,6.203874,,1,,Europe/Paris,,OMZ, +OMZ:SA:10167,1,"GENDARMERIE",49.10466,6.199631,,1,,Europe/Paris,,OMZ, +OMZ:SA:10168,1,"ST-MAXIMIN",49.105737,6.196728,,1,,Europe/Paris,,OMZ, +OMZ:SA:10169,1,"PUYMAIGRE",49.107066,6.194766,,1,,Europe/Paris,,OMZ, +OMZ:SA:10170,1,"TREIZE",49.110119,6.189559,,1,,Europe/Paris,,OMZ, +OMZ:SA:10171,1,"PLAPPEVILLE",49.130544,6.124422,,1,,Europe/Paris,,OMZ, +OMZ:SA:10172,1,"MAZELLE",49.114557,6.183588,,1,,Europe/Paris,,OMZ, +OMZ:SA:10174,1,"ST-LOUIS",49.116735,6.179038,,1,,Europe/Paris,,OMZ, +OMZ:SA:10175,1,"ROYALE",49.115446,6.178972,,1,,Europe/Paris,,OMZ, +OMZ:SA:10176,1,"PALAIS SPORTS",49.11114,6.161348,,1,,Europe/Paris,,OMZ, +OMZ:SA:10177,1,"VILLAS",49.112663,6.157812,,1,,Europe/Paris,,OMZ, +OMZ:SA:10178,1,"PEPINIERES",49.114161,6.154696,,1,,Europe/Paris,,OMZ, +OMZ:SA:10179,1,"BEAU RIVAGE",49.115924,6.150905,,1,,Europe/Paris,,OMZ, +OMZ:SA:10180,1,"SIGISBERT",49.122348,6.148858,,1,,Europe/Paris,,OMZ, +OMZ:SA:10181,1,"LARDEMELLE",49.123939,6.149688,,1,,Europe/Paris,,OMZ, +OMZ:SA:10182,1,"VICTOIRE",49.125054,6.153179,,1,,Europe/Paris,,OMZ, +OMZ:SA:10183,1,"MARNE",49.12675,6.154041,,1,,Europe/Paris,,OMZ, +OMZ:SA:10184,1,"ST-SIMON",49.127645,6.152042,,1,,Europe/Paris,,OMZ, +OMZ:SA:10185,1,"TORTUE",49.128337,6.148317,,1,,Europe/Paris,,OMZ, +OMZ:SA:10186,1,"CASTORS",49.128419,6.145826,,1,,Europe/Paris,,OMZ, +OMZ:SA:10187,1,"FELIX MARECHAL",49.129653,6.13799,,1,,Europe/Paris,,OMZ, +OMZ:SA:10188,1,"LES VIGNES",49.128985,6.145182,,1,,Europe/Paris,,OMZ, +OMZ:SA:10189,1,"MIRABELLES",49.13125,6.145851,,1,,Europe/Paris,,OMZ, +OMZ:SA:10190,1,"LA BUTTE",49.133042,6.147204,,1,,Europe/Paris,,OMZ, +OMZ:SA:10192,1,"DUPLOYE",49.109411,6.189032,,1,,Europe/Paris,,OMZ, +OMZ:SA:10193,1,"TROIS EVECHES",49.106289,6.191827,,1,,Europe/Paris,,OMZ, +OMZ:SA:10194,1,"DEVILLY",49.10496,6.194459,,1,,Europe/Paris,,OMZ, +OMZ:SA:10199,1,"FRIANT",49.108479,6.18772,,1,,Europe/Paris,,OMZ, +OMZ:SA:10200,1,"HERMITE",49.10581,6.187387,,1,,Europe/Paris,,OMZ, +OMZ:SA:10201,1,"COLLIGNON",49.104316,6.187275,,1,,Europe/Paris,,OMZ, +OMZ:SA:10202,1,"DUCROCQ",49.1016,6.188328,,1,,Europe/Paris,,OMZ, +OMZ:SA:10203,1,"TIVOLI",49.09963,6.189627,,1,,Europe/Paris,,OMZ, +OMZ:SA:10204,1,"GRANDMAISON",49.098091,6.194389,,1,,Europe/Paris,,OMZ, +OMZ:SA:10205,1,"GIRAUDOUX",49.097373,6.200068,,1,,Europe/Paris,,OMZ, +OMZ:SA:10206,1,"ROEDERER",49.098334,6.203206,,1,,Europe/Paris,,OMZ, +OMZ:SA:10207,1,"GENERAL FRERE",49.100096,6.205828,,1,,Europe/Paris,,OMZ, +OMZ:SA:10208,1,"SEULHOTTE",49.101372,6.208476,,1,,Europe/Paris,,OMZ, +OMZ:SA:10209,1,"SYMPHONIE",49.104456,6.214594,,1,,Europe/Paris,,OMZ, +OMZ:SA:10210,1,"CHAPPE",49.106658,6.222118,,1,,Europe/Paris,,OMZ, +OMZ:SA:10217,1,"CUVION",49.092432,6.242765,,1,,Europe/Paris,,OMZ, +OMZ:SA:10218,1,"DOLICHE",49.094421,6.245825,,1,,Europe/Paris,,OMZ, +OMZ:SA:10219,1,"LA DAME",49.098717,6.243659,,1,,Europe/Paris,,OMZ, +OMZ:SA:10220,1,"FALOGNE",49.098016,6.240264,,1,,Europe/Paris,,OMZ, +OMZ:SA:10221,1,"LE LAC",49.096216,6.238373,,1,,Europe/Paris,,OMZ, +OMZ:SA:10222,1,"MOMENE",49.129137,6.127592,,1,,Europe/Paris,,OMZ, +OMZ:SA:10223,1,"LA CROIX",49.128974,6.130409,,1,,Europe/Paris,,OMZ, +OMZ:SA:10224,1,"CROIX D'OREE",49.132377,6.125455,,1,,Europe/Paris,,OMZ, +OMZ:SA:10225,1,"STADE",49.131664,6.130795,,1,,Europe/Paris,,OMZ, +OMZ:SA:10226,1,"BRION",49.12976,6.133605,,1,,Europe/Paris,,OMZ, +OMZ:SA:10228,1,"PRES ST-JACQUES",49.134329,6.130716,,1,,Europe/Paris,,OMZ, +OMZ:SA:10230,1,"CLETTE",49.133217,6.1337,,1,,Europe/Paris,,OMZ, +OMZ:SA:10231,1,"CAILLOUX",49.134604,6.136804,,1,,Europe/Paris,,OMZ, +OMZ:SA:10232,1,"ROUSSEL",49.135489,6.139675,,1,,Europe/Paris,,OMZ, +OMZ:SA:10233,1,"BAUCHEZ",49.136508,6.142904,,1,,Europe/Paris,,OMZ, +OMZ:SA:10234,1,"SANSONNET",49.136426,6.147192,,1,,Europe/Paris,,OMZ, +OMZ:SA:10235,1,"BUCHOZ",49.135323,6.149542,,1,,Europe/Paris,,OMZ, +OMZ:SA:10236,1,"NICOLAS JUNG",49.133504,6.152807,,1,,Europe/Paris,,OMZ, +OMZ:SA:10237,1,"LE MOYNE",49.131365,6.156508,,1,,Europe/Paris,,OMZ, +OMZ:SA:10238,1,"COLIBRI",49.130172,6.158645,,1,,Europe/Paris,,OMZ, +OMZ:SA:10241,1,"JUIN",49.118265,6.189935,,1,,Europe/Paris,,OMZ, +OMZ:SA:10242,1,"RAPHAEL LEVY",49.120159,6.190671,,1,,Europe/Paris,,OMZ, +OMZ:SA:10243,1,"ARTILLEURS",49.120225,6.19327,,1,,Europe/Paris,,OMZ, +OMZ:SA:10244,1,"BERNE",49.122813,6.194014,,1,,Europe/Paris,,OMZ, +OMZ:SA:10245,1,"ALSACE-LORRAINE",49.121338,6.195082,,1,,Europe/Paris,,OMZ, +OMZ:SA:10246,1,"STOXEY",49.119624,6.196237,,1,,Europe/Paris,,OMZ, +OMZ:SA:10247,1,"PETITES SOEURS",49.119016,6.204298,,1,,Europe/Paris,,OMZ, +OMZ:SA:10248,1,"METMAN",49.120078,6.209219,,1,,Europe/Paris,,OMZ, +OMZ:SA:10249,1,"MAUJEAN",49.120182,6.214739,,1,,Europe/Paris,,OMZ, +OMZ:SA:10250,1,"GENIVAUX",49.122094,6.216597,,1,,Europe/Paris,,OMZ, +OMZ:SA:10251,1,"FOUGERES",49.122191,6.218977,,1,,Europe/Paris,,OMZ, +OMZ:SA:10252,1,"MEY LES VIGNES",49.133892,6.237556,,1,,Europe/Paris,,OMZ, +OMZ:SA:10253,1,"LORIENT",49.122555,6.225093,,1,,Europe/Paris,,OMZ, +OMZ:SA:10254,1,"JACINTHES",49.123946,6.226087,,1,,Europe/Paris,,OMZ, +OMZ:SA:10255,1,"OEILLETS",49.125157,6.230597,,1,,Europe/Paris,,OMZ, +OMZ:SA:10256,1,"PIVOINES",49.125901,6.227387,,1,,Europe/Paris,,OMZ, +OMZ:SA:10257,1,"JURA",49.118456,6.200571,,1,,Europe/Paris,,OMZ, +OMZ:SA:10258,1,"TANNEURS",49.119799,6.182966,,1,,Europe/Paris,,OMZ, +OMZ:SA:10259,1,"PARAIGES",49.117189,6.179771,,1,,Europe/Paris,,OMZ, +OMZ:SA:10260,1,"FONNY",49.129545,6.234973,,1,,Europe/Paris,,OMZ, +OMZ:SA:10261,1,"BARBE",49.129479,6.229805,,1,,Europe/Paris,,OMZ, +OMZ:SA:10262,1,"MY MANGENOT",49.127831,6.225641,,1,,Europe/Paris,,OMZ, +OMZ:SA:10263,1,"SAULNOIS",49.12645,6.221952,,1,,Europe/Paris,,OMZ, +OMZ:SA:10264,1,"JEAN PIERRE JEAN",49.12573,6.217346,,1,,Europe/Paris,,OMZ, +OMZ:SA:10265,1,"CORCHADE",49.12313,6.215389,,1,,Europe/Paris,,OMZ, +OMZ:SA:10266,1,"JUGAN",49.122397,6.212785,,1,,Europe/Paris,,OMZ, +OMZ:SA:10267,1,"JOUSSE",49.122964,6.206574,,1,,Europe/Paris,,OMZ, +OMZ:SA:10268,1,"DUNANT",49.123764,6.202839,,1,,Europe/Paris,,OMZ, +OMZ:SA:10269,1,"BILLOTTE",49.125686,6.197049,,1,,Europe/Paris,,OMZ, +OMZ:SA:10270,1,"TANNERIES",49.126976,6.192943,,1,,Europe/Paris,,OMZ, +OMZ:SA:10271,1,"ARSENAL",49.122917,6.186931,,1,,Europe/Paris,,OMZ, +OMZ:SA:10272,1,"LOGES",49.09891,6.158711,,1,,Europe/Paris,,OMZ, +OMZ:SA:10273,1,"ST-LADRE",49.096906,6.155202,,1,,Europe/Paris,,OMZ, +OMZ:SA:10274,1,"MERMOZ",49.093771,6.151806,,1,,Europe/Paris,,OMZ, +OMZ:SA:10276,1,"PONSARD",49.089598,6.147205,,1,,Europe/Paris,,OMZ, +OMZ:SA:10277,1,"SIMMINGER",49.090058,6.144733,,1,,Europe/Paris,,OMZ, +OMZ:SA:10278,1,"COUBERTIN",49.091903,6.144612,,1,,Europe/Paris,,OMZ, +OMZ:SA:10280,1,"PEUPLIERS",49.104824,6.209371,,1,,Europe/Paris,,OMZ, +OMZ:SA:10281,1,"MARCONI",49.100584,6.217886,,1,,Europe/Paris,,OMZ, +OMZ:SA:10285,1,"PLACE DE GAULLE",49.060299,6.162764,,1,,Europe/Paris,,OMZ, +OMZ:SA:10288,1,"CAMELIAS",49.064173,6.162733,,1,,Europe/Paris,,OMZ, +OMZ:SA:10289,1,"BLEUETS",49.066503,6.16446,,1,,Europe/Paris,,OMZ, +OMZ:SA:10290,1,"AZALEES",49.067353,6.168055,,1,,Europe/Paris,,OMZ, +OMZ:SA:10291,1,"HAUTS DE BOUTAN",49.067218,6.169894,,1,,Europe/Paris,,OMZ, +OMZ:SA:10292,1,"AVENUE DE MAGNY",49.064101,6.167127,,1,,Europe/Paris,,OMZ, +OMZ:SA:10296,1,"BRAZZA",49.057156,6.167665,,1,,Europe/Paris,,OMZ, +OMZ:SA:10298,1,"LES ECOLES",49.058897,6.156428,,1,,Europe/Paris,,OMZ, +OMZ:SA:10299,1,"HOTEL DE VILLE",49.06005,6.154182,,1,,Europe/Paris,,OMZ, +OMZ:SA:10302,1,"ST-BRICE",49.06026,6.150034,,1,,Europe/Paris,,OMZ, +OMZ:SA:10303,1,"LARGANTIER",49.062461,6.146314,,1,,Europe/Paris,,OMZ, +OMZ:SA:10304,1,"LES SORBIERS",49.068727,6.146813,,1,,Europe/Paris,,OMZ, +OMZ:SA:10305,1,"LES CLOS",49.073382,6.14784,,1,,Europe/Paris,,OMZ, +OMZ:SA:10306,1,"GARENNES",49.076544,6.146529,,1,,Europe/Paris,,OMZ, +OMZ:SA:10307,1,"GRANGE AUX ORMES",49.080748,6.146386,,1,,Europe/Paris,,OMZ, +OMZ:SA:10308,1,"COSTES ET BELLONTE",49.083855,6.149068,,1,,Europe/Paris,,OMZ, +OMZ:SA:10309,1,"JEANNE D'ARC",49.089665,6.153639,,1,,Europe/Paris,,OMZ, +OMZ:SA:10310,1,"PREVOTE",49.092228,6.155912,,1,,Europe/Paris,,OMZ, +OMZ:SA:10311,1,"TERRES ROUGES",49.129853,6.197433,,1,,Europe/Paris,,OMZ, +OMZ:SA:10312,1,"ST-JULIEN EGLISE",49.134416,6.202662,,1,,Europe/Paris,,OMZ, +OMZ:SA:10313,1,"CIMETIERE",49.137166,6.205889,,1,,Europe/Paris,,OMZ, +OMZ:SA:10315,1,"ERABLES",49.132029,6.205586,,1,,Europe/Paris,,OMZ, +OMZ:SA:10316,1,"HETRES",49.13214,6.208943,,1,,Europe/Paris,,OMZ, +OMZ:SA:10317,1,"CARRIERES",49.129983,6.209345,,1,,Europe/Paris,,OMZ, +OMZ:SA:10318,1,"FRENES",49.132124,6.211702,,1,,Europe/Paris,,OMZ, +OMZ:SA:10319,1,"PINS",49.132155,6.215407,,1,,Europe/Paris,,OMZ, +OMZ:SA:10320,1,"MARRONNIERS",49.134278,6.215342,,1,,Europe/Paris,,OMZ, +OMZ:SA:10321,1,"BOUZONVILLE",49.135236,6.213743,,1,,Europe/Paris,,OMZ, +OMZ:SA:10322,1,"TILLEULS",49.134187,6.208522,,1,,Europe/Paris,,OMZ, +OMZ:SA:10323,1,"GRIMONT",49.140429,6.217495,,1,,Europe/Paris,,OMZ, +OMZ:SA:10324,1,"INTENDANTS JOBA",49.141306,6.165477,,1,,Europe/Paris,,OMZ, +OMZ:SA:10328,1,"GANNE",49.115442,6.204799,,1,,Europe/Paris,,OMZ, +OMZ:SA:10329,1,"BERNARD",49.115089,6.210762,,1,,Europe/Paris,,OMZ, +OMZ:SA:10334,1,"JULES MICHELET",49.10743,6.228087,,1,,Europe/Paris,,OMZ, +OMZ:SA:10336,1,"SEBASTOPOL",49.107749,6.238301,,1,,Europe/Paris,,OMZ, +OMZ:SA:10337,1,"SOLIDARITE",49.10788,6.243095,,1,,Europe/Paris,,OMZ, +OMZ:SA:10338,1,"FAURNEL",49.100173,6.242967,,1,,Europe/Paris,,OMZ, +OMZ:SA:10339,1,"ARIANE",49.095157,6.238704,,1,,Europe/Paris,,OMZ, +OMZ:SA:10340,1,"PASSOTTE",49.092949,6.239848,,1,,Europe/Paris,,OMZ, +OMZ:SA:10341,1,"AUBIGNY",49.09422,6.269894,,1,,Europe/Paris,,OMZ, +OMZ:SA:10342,1,"PREFECTURE",49.121616,6.175028,,1,,Europe/Paris,,OMZ, +OMZ:SA:10343,1,"ST-JULIEN FORT",49.14109,6.206231,,1,,Europe/Paris,,OMZ, +OMZ:SA:10344,1,"MELEZES",49.128007,6.203468,,1,,Europe/Paris,,OMZ, +OMZ:SA:10345,1,"AULNES",49.127271,6.207678,,1,,Europe/Paris,,OMZ, +OMZ:SA:10346,1,"CEDRES",49.127418,6.211783,,1,,Europe/Paris,,OMZ, +OMZ:SA:10347,1,"VOLO",49.125315,6.206421,,1,,Europe/Paris,,OMZ, +OMZ:SA:10348,1,"BLIDA",49.125785,6.181426,,1,,Europe/Paris,,OMZ, +OMZ:SA:10351,1,"ST-EXUPERY",49.086501,6.154294,,1,,Europe/Paris,,OMZ, +OMZ:SA:10355,1,"MEURISSE",49.102337,6.155343,,1,,Europe/Paris,,OMZ, +OMZ:SA:10356,1,"COUVENTS",49.103456,6.152881,,1,,Europe/Paris,,OMZ, +OMZ:SA:10357,1,"CHATRIAN",49.103301,6.148871,,1,,Europe/Paris,,OMZ, +OMZ:SA:10358,1,"VERGERS",49.102318,6.145815,,1,,Europe/Paris,,OMZ, +OMZ:SA:10360,1,"LILAS",49.095649,6.143597,,1,,Europe/Paris,,OMZ, +OMZ:SA:10367,1,"FABERT",49.118938,6.175497,,1,,Europe/Paris,,OMZ, +OMZ:SA:10368,1,"PETIT PARIS",49.118241,6.175291,,1,,Europe/Paris,,OMZ, +OMZ:SA:10369,1,"TETE D'OR",49.117314,6.177093,,1,,Europe/Paris,,OMZ, +OMZ:SA:10377,1,"EN FOURNIRUE",49.118008,6.178726,,1,,Europe/Paris,,OMZ, +OMZ:SA:10394,1,"FRANCLONCHAMPS",49.171161,6.189857,,1,,Europe/Paris,,OMZ, +OMZ:SA:10395,1,"LA MAXE",49.168653,6.189551,,1,,Europe/Paris,,OMZ, +OMZ:SA:10396,1,"CHENEVIERES",49.165797,6.189656,,1,,Europe/Paris,,OMZ, +OMZ:SA:10397,1,"PIERRET",49.163816,6.188608,,1,,Europe/Paris,,OMZ, +OMZ:SA:10398,1,"CENTRALE",49.154849,6.186189,,1,,Europe/Paris,,OMZ, +OMZ:SA:10399,1,"GRANGE-AUX-DAMES",49.146299,6.190807,,1,,Europe/Paris,,OMZ, +OMZ:SA:10400,1,"LES SILOS",49.140552,6.186841,,1,,Europe/Paris,,OMZ, +OMZ:SA:10401,1,"PORT DE METZ",49.13743,6.180954,,1,,Europe/Paris,,OMZ, +OMZ:SA:10402,1,"11ème D'AVIATION",49.085986,6.145766,,1,,Europe/Paris,,OMZ, +OMZ:SA:10414,1,"CUVRY",49.042932,6.158753,,1,,Europe/Paris,,OMZ, +OMZ:SA:10415,1,"MICHEL ANGE",49.059369,6.169179,,1,,Europe/Paris,,OMZ, +OMZ:SA:10419,1,"CHAMBIERE",49.127722,6.185036,,1,,Europe/Paris,,OMZ, +OMZ:SA:10421,1,"BOURGOGNE",49.114225,6.22703,,1,,Europe/Paris,,OMZ, +OMZ:SA:10424,1,"FEIVRES",49.114952,6.240372,,1,,Europe/Paris,,OMZ, +OMZ:SA:10426,1,"JUSSY - STE-RUFFINE",49.105111,6.089326,,1,,Europe/Paris,,OMZ, +OMZ:SA:10427,1,"PLACE DE FRANCE",49.156314,6.15322,,1,,Europe/Paris,,OMZ, +OMZ:SA:10428,1,"WOIPPY-HOTEL DE VILLE",49.151278,6.150061,,1,,Europe/Paris,,OMZ, +OMZ:SA:10429,1,"GAMBETTA",49.149233,6.159854,,1,,Europe/Paris,,OMZ, +OMZ:SA:10430,1,"COUPILLON",49.141472,6.148104,,1,,Europe/Paris,,OMZ, +OMZ:SA:10431,1,"RUCHER",49.144924,6.147897,,1,,Europe/Paris,,OMZ, +OMZ:SA:10432,1,"SAULES",49.147636,6.152453,,1,,Europe/Paris,,OMZ, +OMZ:SA:10434,1,"WOIPPY CHATEAU",49.152732,6.14532,,1,,Europe/Paris,,OMZ, +OMZ:SA:10435,1,"LADONCHAMPS",49.154173,6.152733,,1,,Europe/Paris,,OMZ, +OMZ:SA:10436,1,"ROGET",49.149039,6.168155,,1,,Europe/Paris,,OMZ, +OMZ:SA:10437,1,"ARS LAQUENEXY",49.092795,6.270208,,1,,Europe/Paris,,OMZ, +OMZ:SA:10438,1,"PLATEAU",49.081961,6.184675,,1,,Europe/Paris,,OMZ, +OMZ:SA:10439,1,"EN PRILLE",49.109443,6.125656,,1,,Europe/Paris,,OMZ, +OMZ:SA:10440,1,"IKEA",49.151719,6.188585,,1,,Europe/Paris,,OMZ, +OMZ:SA:10442,1,"CHATEL-ST-GERMAIN",49.122234,6.081553,,1,,Europe/Paris,,OMZ, +OMZ:SA:10443,1,"CHEMIN DES DAMES",49.117089,6.08801,,1,,Europe/Paris,,OMZ, +OMZ:SA:10444,1,"CLERY",49.121184,6.080518,,1,,Europe/Paris,,OMZ, +OMZ:SA:10445,1,"CHAHURY",49.117661,6.084813,,1,,Europe/Paris,,OMZ, +OMZ:SA:10446,1,"RN3",49.109678,6.091115,,1,,Europe/Paris,,OMZ, +OMZ:SA:10447,1,"CHAMPAGNE",49.041414,6.160733,,1,,Europe/Paris,,OMZ, +OMZ:SA:10448,1,"LA POMMERAIE",49.033528,6.16219,,1,,Europe/Paris,,OMZ, +OMZ:SA:10449,1,"COIN-LES-CUVRY",49.033541,6.155189,,1,,Europe/Paris,,OMZ, +OMZ:SA:10450,1,"LE CHAVEAU",49.032051,6.150935,,1,,Europe/Paris,,OMZ, +OMZ:SA:10451,1,"POURNOY-LA-CHETIVE",49.02092,6.154562,,1,,Europe/Paris,,OMZ, +OMZ:SA:10452,1,"COIN-SUR-SEILLE",49.009076,6.159937,,1,,Europe/Paris,,OMZ, +OMZ:SA:10455,1,"GARE D'AUGNY",49.070195,6.137607,,1,,Europe/Paris,,OMZ, +OMZ:SA:10456,1,"AUGNY MAIRIE",49.058676,6.121885,,1,,Europe/Paris,,OMZ, +OMZ:SA:10457,1,"LIBERATION",49.061226,6.117965,,1,,Europe/Paris,,OMZ, +OMZ:SA:10458,1,"LOTISSEMENT",49.063769,6.116536,,1,,Europe/Paris,,OMZ, +OMZ:SA:10459,1,"ZAC D'AUGNY",49.074625,6.107196,,1,,Europe/Paris,,OMZ, +OMZ:SA:10460,1,"ACTISUD DUNIL",49.076492,6.102891,,1,,Europe/Paris,,OMZ, +OMZ:SA:10461,1,"VAL DE METZ",49.093319,6.092967,,1,,Europe/Paris,,OMZ, +OMZ:SA:10462,1,"VAUX MAIRIE",49.093245,6.080532,,1,,Europe/Paris,,OMZ, +OMZ:SA:10463,1,"NOUILLONS",49.11195,6.097355,,1,,Europe/Paris,,OMZ, +OMZ:SA:10464,1,"ERMITAGE",49.118311,6.096334,,1,,Europe/Paris,,OMZ, +OMZ:SA:10465,1,"LESSY",49.120937,6.094775,,1,,Europe/Paris,,OMZ, +OMZ:SA:10466,1,"LE QUOITY",49.123278,6.094878,,1,,Europe/Paris,,OMZ, +OMZ:SA:10467,1,"SCY-CHAZELLES",49.114118,6.116556,,1,,Europe/Paris,,OMZ, +OMZ:SA:10468,1,"FRIERES",49.140274,6.13537,,1,,Europe/Paris,,OMZ, +OMZ:SA:10469,1,"CARREFOUR",49.144439,6.127728,,1,,Europe/Paris,,OMZ, +OMZ:SA:10470,1,"ATELIERS MUNICIPAUX",49.142504,6.121901,,1,,Europe/Paris,,OMZ, +OMZ:SA:10471,1,"LORRY GRAND RUE",49.14177,6.118458,,1,,Europe/Paris,,OMZ, +OMZ:SA:10472,1,"CHAPELLE",49.141697,6.115701,,1,,Europe/Paris,,OMZ, +OMZ:SA:10473,1,"LES PLAQUETTES",49.169005,6.050133,,1,,Europe/Paris,,OMZ, +OMZ:SA:10474,1,"GRAND RUE",49.168615,6.048465,,1,,Europe/Paris,,OMZ, +OMZ:SA:10475,1,"AMANVILLERS MAIRIE",49.167333,6.04394,,1,,Europe/Paris,,OMZ, +OMZ:SA:10476,1,"DOUANIERS",49.169581,6.048429,,1,,Europe/Paris,,OMZ, +OMZ:SA:10477,1,"JUSTICE",49.166546,6.03834,,1,,Europe/Paris,,OMZ, +OMZ:SA:10480,1,"PLACE PUBLIQUE",49.154534,6.118039,,1,,Europe/Paris,,OMZ, +OMZ:SA:10481,1,"RUE DE METZ",49.155757,6.113044,,1,,Europe/Paris,,OMZ, +OMZ:SA:10482,1,"SAULNY CENTRE",49.158584,6.106055,,1,,Europe/Paris,,OMZ, +OMZ:SA:10483,1,"BREUIL",49.160397,6.225813,,1,,Europe/Paris,,OMZ, +OMZ:SA:10484,1,"CHIEULLES",49.15943,6.228848,,1,,Europe/Paris,,OMZ, +OMZ:SA:10485,1,"VANY",49.156329,6.239317,,1,,Europe/Paris,,OMZ, +OMZ:SA:10486,1,"VILLERS-L'ORME",49.151966,6.247561,,1,,Europe/Paris,,OMZ, +OMZ:SA:10487,1,"FALEE",49.132983,6.253171,,1,,Europe/Paris,,OMZ, +OMZ:SA:10488,1,"NOUILLY CENTRE",49.135997,6.258564,,1,,Europe/Paris,,OMZ, +OMZ:SA:10489,1,"PINOTS MELES",49.134432,6.271087,,1,,Europe/Paris,,OMZ, +OMZ:SA:10490,1,"LES CHAULMES",49.133829,6.275946,,1,,Europe/Paris,,OMZ, +OMZ:SA:10491,1,"MAS AU LIEVRE",49.131665,6.27507,,1,,Europe/Paris,,OMZ, +OMZ:SA:10496,1,"RUE D'ARS",49.111835,6.028919,,1,,Europe/Paris,,OMZ, +OMZ:SA:10498,1,"MALMAISON",49.124963,6.01698,,1,,Europe/Paris,,OMZ, +OMZ:SA:10501,1,"POUILLY",49.049823,6.188433,,1,,Europe/Paris,,OMZ, +OMZ:SA:10502,1,"COLOMBIER",49.048226,6.185612,,1,,Europe/Paris,,OMZ, +OMZ:SA:10503,1,"THERMES",49.050279,6.183357,,1,,Europe/Paris,,OMZ, +OMZ:SA:10504,1,"MAHIRE",49.050078,6.184572,,1,,Europe/Paris,,OMZ, +OMZ:SA:10510,1,"ABBE BAUZIN",49.189232,6.035647,,1,,Europe/Paris,,OMZ, +OMZ:SA:10511,1,"CHAMP BANAL",49.172942,6.045378,,1,,Europe/Paris,,OMZ, +OMZ:SA:10513,1,"GRANDE FLAMEE",49.182969,6.040223,,1,,Europe/Paris,,OMZ, +OMZ:SA:10518,1,"SALETTE",49.152869,6.246799,,1,,Europe/Paris,,OMZ, +OMZ:SA:10521,1,"SCHUMAN",49.110742,6.111989,,1,,Europe/Paris,,OMZ, +OMZ:SA:10522,1,"CHENEAU",49.108892,6.1208,,1,,Europe/Paris,,OMZ, +OMZ:SA:10523,1,"LASSAUX",49.116237,6.097954,,1,,Europe/Paris,,OMZ, +OMZ:SA:10524,1,"POSTE EDF",49.151962,6.213736,,1,,Europe/Paris,,OMZ, +OMZ:SA:10525,1,"VERDUN",49.080122,6.058124,,1,,Europe/Paris,,OMZ, +OMZ:SA:10526,1,"CLEMENCEAU",49.080543,6.08433,,1,,Europe/Paris,,OMZ, +OMZ:SA:10527,1,"CROISEMENT RD6",49.093432,6.095162,,1,,Europe/Paris,,OMZ, +OMZ:SA:10528,1,"SCHWALBACH",49.079272,6.06582,,1,,Europe/Paris,,OMZ, +OMZ:SA:10529,1,"ARS SUR MOSELLE",49.075785,6.076639,,1,,Europe/Paris,,OMZ, +OMZ:SA:10531,1,"PETIT COEUR",49.166103,6.040458,,1,,Europe/Paris,,OMZ, +OMZ:SA:10532,1,"CARCAN",49.093742,6.086876,,1,,Europe/Paris,,OMZ, +OMZ:SA:10533,1,"PENSEES",49.134709,6.273744,,1,,Europe/Paris,,OMZ, +OMZ:SA:10534,1,"PRESSOIR",49.13518,6.257054,,1,,Europe/Paris,,OMZ, +OMZ:SA:10538,1,"CRIMEE",49.113961,6.113274,,1,,Europe/Paris,,OMZ, +OMZ:SA:10541,1,"MARIEULLES",48.998756,6.100187,,1,,Europe/Paris,,OMZ, +OMZ:SA:10542,1,"VEZON",49.006557,6.09489,,1,,Europe/Paris,,OMZ, +OMZ:SA:10543,1,"FEY",49.029065,6.096717,,1,,Europe/Paris,,OMZ, +OMZ:SA:10544,1,"GLISSU",49.055847,6.119837,,1,,Europe/Paris,,OMZ, +OMZ:SA:10546,1,"MAISON NEUVE",49.11029,6.091101,,1,,Europe/Paris,,OMZ, +OMZ:SA:10552,1,"GEORGES BERNANOS",49.132969,6.167847,,1,,Europe/Paris,,OMZ, +OMZ:SA:10556,1,"TRENTE JOURS",49.096361,6.245814,,1,,Europe/Paris,,OMZ, +OMZ:SA:10557,1,"CHEMIN NOIR",49.114178,6.098033,,1,,Europe/Paris,,OMZ, +OMZ:SA:10558,1,"LUETTE",49.085321,6.148461,,1,,Europe/Paris,,OMZ, +OMZ:SA:10559,1,"GRAVELOTTE EGLISE",49.109124,6.030322,,1,,Europe/Paris,,OMZ, +OMZ:SA:10560,1,"LAQUENEXY",49.078359,6.315781,,1,,Europe/Paris,,OMZ, +OMZ:SA:10562,1,"LAUVALLIERES",49.124121,6.259923,,1,,Europe/Paris,,OMZ, +OMZ:SA:10563,1,"RUE DU MOULIN",49.155819,6.105067,,1,,Europe/Paris,,OMZ, +OMZ:SA:10566,1,"TELEGRAPHE",49.146859,6.003089,,1,,Europe/Paris,,OMZ, +OMZ:SA:10567,1,"VIGNOTTES",49.041937,6.156125,,1,,Europe/Paris,,OMZ, +OMZ:SA:10569,1,"RUISSEAU",49.151067,6.158629,,1,,Europe/Paris,,OMZ, +OMZ:SA:10570,1,"CHAPITRE",49.152082,6.161591,,1,,Europe/Paris,,OMZ, +OMZ:SA:10571,1,"POULMAIRE",49.151142,6.166347,,1,,Europe/Paris,,OMZ, +OMZ:SA:10576,1,"PAQUERETTES",49.094419,6.123832,,1,,Europe/Paris,,OMZ, +OMZ:SA:10577,1,"LES MOULINS",49.13,6.237592,,1,,Europe/Paris,,OMZ, +OMZ:SA:10579,1,"TROIS HAIES",49.090686,6.122913,,1,,Europe/Paris,,OMZ, +OMZ:SA:10580,1,"ZAC LES GRAVIERES",49.077468,6.113065,,1,,Europe/Paris,,OMZ, +OMZ:SA:10581,1,"WAVES ACTISUD",49.081041,6.102594,,1,,Europe/Paris,,OMZ, +OMZ:SA:10583,1,"TEMPLE",49.078976,6.069837,,1,,Europe/Paris,,OMZ, +OMZ:SA:10584,1,"JEAN FERRAT",49.077952,6.081234,,1,,Europe/Paris,,OMZ, +OMZ:SA:10585,1,"JURY CORBON",49.067498,6.256537,,1,,Europe/Paris,,OMZ, +OMZ:SA:10600,1,"HOPITAL SCHUMAN",49.12335,6.242088,,1,,Europe/Paris,,OMZ, +OMZ:SA:10602,1,"JUNGLING",49.148442,6.152532,,1,,Europe/Paris,,OMZ, +OMZ:SA:10612,1,"AMPERE",49.103481,6.228818,,1,,Europe/Paris,,OMZ, +OMZ:SA:10619,1,"POLE MULTIMODAL",49.107501,6.177698,,1,,Europe/Paris,,OMZ, +OMZ:SA:10620,1,"ORLY",49.075744,6.116819,,1,,Europe/Paris,,OMZ, +OMZ:SA:10621,1,"CHANTRENNE",49.144098,6.010361,,1,,Europe/Paris,,OMZ, +OMZ:SA:10623,1,"BELLEVUE",49.172239,6.152838,,1,,Europe/Paris,,OMZ, +OMZ:SA:10625,1,"STE-AGATHE",49.164203,6.153814,,1,,Europe/Paris,,OMZ, +OMZ:SA:10629,1,"POINCARE",49.116814,6.168722,,1,,Europe/Paris,,OMZ, +OMZ:SA:10630,1,"LAVANDIERES",49.14834,6.124132,,1,,Europe/Paris,,OMZ, +OMZ:SA:10633,1,"ST-REMY",49.173757,6.161965,,1,,Europe/Paris,,OMZ, +OMZ:SA:10634,1,"D953",49.162728,6.16022,,1,,Europe/Paris,,OMZ, +OMZ:SA:10635,1,"BERLANGE",49.155934,6.157178,,1,,Europe/Paris,,OMZ, +OMZ:SA:10641,1,"GRIGY",49.095026,6.220816,,1,,Europe/Paris,,OMZ, +OMZ:SA:10643,1,"P+R ROCHAMBEAU",49.128897,6.170953,,1,,Europe/Paris,,OMZ, +OMZ:SA:10644,1,"ROSE GONTHIER",49.103613,6.243257,,1,,Europe/Paris,,OMZ, +OMZ:SA:10645,1,"RUELLE CHENEAU",49.115085,6.197406,,1,,Europe/Paris,,OMZ, +OMZ:SA:10646,1,"ROUTE DE BORNY",49.115025,6.192402,,1,,Europe/Paris,,OMZ, +OMZ:SA:10647,1,"PONT ROUGE",49.114787,6.188961,,1,,Europe/Paris,,OMZ, +OMZ:SA:10651,1,"SUGNON",49.09408,6.163262,,1,,Europe/Paris,,OMZ, +OMZ:SA:10657,1,"P+R WOIPPY",49.150349,6.173321,,1,,Europe/Paris,,OMZ, +OMZ:SA:10659,1,"DOCTEUR CHARCOT",49.148333,6.166979,,1,,Europe/Paris,,OMZ, +OMZ:SA:10660,1,"EMILE ROUX",49.144725,6.166323,,1,,Europe/Paris,,OMZ, +OMZ:SA:10662,1,"RENE CASSIN",49.135661,6.166148,,1,,Europe/Paris,,OMZ, +OMZ:SA:10667,1,"ST-VINCENT",49.123578,6.171768,,1,,Europe/Paris,,OMZ, +OMZ:SA:10668,1,"REPUBLIQUE",49.115421,6.173131,,1,,Europe/Paris,,OMZ, +OMZ:SA:10669,1,"CITE U",49.120152,6.159618,,1,,Europe/Paris,,OMZ, +OMZ:SA:10670,1,"SAULCY",49.120584,6.164613,,1,,Europe/Paris,,OMZ, +OMZ:SA:10671,1,"ROI GEORGE",49.110651,6.171614,,1,,Europe/Paris,,OMZ, +OMZ:SA:10672,1,"GARE",49.110369,6.17761,,1,,Europe/Paris,,OMZ, +OMZ:SA:10673,1,"CENTRE POMPIDOU METZ",49.109097,6.180879,,1,,Europe/Paris,,OMZ, +OMZ:SA:10674,1,"SEILLE",49.111694,6.185761,,1,,Europe/Paris,,OMZ, +OMZ:SA:10675,1,"HOPITAL LEGOUEST",49.111775,6.192498,,1,,Europe/Paris,,OMZ, +OMZ:SA:10676,1,"FELIX ALCAN",49.112651,6.198455,,1,,Europe/Paris,,OMZ, +OMZ:SA:10677,1,"CIMETIERE DE L'EST",49.109114,6.204573,,1,,Europe/Paris,,OMZ, +OMZ:SA:10678,1,"BELLETANCHE",49.110649,6.210639,,1,,Europe/Paris,,OMZ, +OMZ:SA:10679,1,"PROVENCE",49.113265,6.216812,,1,,Europe/Paris,,OMZ, +OMZ:SA:10681,1,"HAUTS DE BLEMONT",49.11562,6.225855,,1,,Europe/Paris,,OMZ, +OMZ:SA:10683,1,"COLOMBEY",49.110851,6.230553,,1,,Europe/Paris,,OMZ, +OMZ:SA:10685,1,"GUYENNE",49.111441,6.21892,,1,,Europe/Paris,,OMZ, +OMZ:SA:10686,1,"HENRI BERGSON",49.108552,6.220679,,1,,Europe/Paris,,OMZ, +OMZ:SA:10687,1,"GRAHAM BELL",49.1051,6.223341,,1,,Europe/Paris,,OMZ, +OMZ:SA:10688,1,"FRANCOIS ARAGO",49.101865,6.224281,,1,,Europe/Paris,,OMZ, +OMZ:SA:10689,1,"LINIERES",49.096506,6.226118,,1,,Europe/Paris,,OMZ, +OMZ:SA:10690,1,"GRANDES ECOLES",49.093371,6.230111,,1,,Europe/Paris,,OMZ, +OMZ:SA:10691,1,"P+R FOIRE EXPO",49.091477,6.231426,,1,,Europe/Paris,,OMZ, +OMZ:SA:10692,1,"HOPITAL MERCY",49.084583,6.242097,,1,,Europe/Paris,,OMZ, +OMZ:SA:10693,1,"MATERNITE",49.082124,6.238869,,1,,Europe/Paris,,OMZ, +OMZ:SA:10707,1,"VERNEVILLE",49.145155,6.005555,,1,,Europe/Paris,,OMZ, +OMZ:SA:10709,1,"ZONE HERGOTT",49.15929,6.158793,,1,,Europe/Paris,,OMZ, +OMZ:SA:10710,1,"VERLIN",49.113327,6.027883,,1,,Europe/Paris,,OMZ, +OMZ:SA:10711,1,"JEAN LAURAIN",49.153205,6.139945,,1,,Europe/Paris,,OMZ, +OMZ:SA:10712,1,"COTEAUX",49.154804,6.148299,,1,,Europe/Paris,,OMZ, +OMZ:SA:10714,1,"METZANINE",49.10689,6.23138,,1,,Europe/Paris,,OMZ, +OMZ:SA:10716,1,"GRAVIERES",49.080426,6.110713,,1,,Europe/Paris,,OMZ, +OMZ:SA:10718,1,"FOSSE",49.10034,6.145265,,1,,Europe/Paris,,OMZ, +OMZ:SA:10720,1,"CHEVROTTES",49.092729,6.274441,,1,,Europe/Paris,,OMZ, +OMZ:SA:10789,1,"PAUL JOLY",49.063949,6.148342,,1,,Europe/Paris,,OMZ, +OMZ:SA:10790,1,"ROUTE DE BOULAY",49.126649,6.27174,,1,,Europe/Paris,,OMZ, +OMZ:SA:10800,1,"SARRE",49.114642,6.232332,,1,,Europe/Paris,,OMZ, +OMZ:SA:10802,1,"19 NOVEMBRE",49.091953,6.161416,,1,,Europe/Paris,,OMZ, +OMZ:SA:10803,1,"MARC SANGNIER",49.089341,6.159358,,1,,Europe/Paris,,OMZ, +OMZ:SA:10804,1,"FOURNIER",49.122415,6.183393,,1,,Europe/Paris,,OMZ, +OMZ:SA:10805,1,"CLEMENT ADER",49.088931,6.15056,,1,,Europe/Paris,,OMZ, +OMZ:SA:10806,1,"ROSE MARCUS",49.147438,6.148564,,1,,Europe/Paris,,OMZ, +OMZ:SA:10807,1,"LACRETELLE",49.113,6.185344,,1,,Europe/Paris,,OMZ, +OMZ:SA:10808,1,"VECRIN",49.091534,6.26683,,1,,Europe/Paris,,OMZ, +OMZ:SA:10809,1,"FRONTIGNY",49.05854,6.263985,,1,,Europe/Paris,,OMZ, +OMZ:SA:10810,1,"LANCEUMONT",49.054109,6.264355,,1,,Europe/Paris,,OMZ, +OMZ:SA:10811,1,"LES TARREAUX",49.043987,6.270665,,1,,Europe/Paris,,OMZ, +OMZ:SA:10812,1,"MECLEUVES",49.042325,6.26829,,1,,Europe/Paris,,OMZ, +OMZ:SA:10814,1,"VILLAGE CANADIEN",49.056362,6.23946,,1,,Europe/Paris,,OMZ, +OMZ:SA:10815,1,"PELTRE GARE",49.074355,6.22317,,1,,Europe/Paris,,OMZ, +OMZ:SA:10816,1,"GARGAN",49.07569,6.226795,,1,,Europe/Paris,,OMZ, +OMZ:SA:10817,1,"PEUMONT",49.076755,6.232105,,1,,Europe/Paris,,OMZ, +OMZ:SA:10818,1,"PETIT JURY",49.06702,6.245485,,1,,Europe/Paris,,OMZ, +OMZ:SA:10819,1,"JURY",49.069604,6.253333,,1,,Europe/Paris,,OMZ, +OMZ:SA:10821,1,"LES VALLONS",49.07797,6.265835,,1,,Europe/Paris,,OMZ, +OMZ:SA:10828,1,"PRE NET",49.081169,6.308195,,1,,Europe/Paris,,OMZ, +OMZ:SA:10831,1,"BELLE FONTAINE",49.06693,6.142725,,1,,Europe/Paris,,OMZ, +OMZ:SA:10832,1,"MARLY",49.061007,6.166711,,1,,Europe/Paris,,OMZ, +OMZ:SA:10833,1,"CROIX ST JOSEPH",49.058969,6.159051,,1,,Europe/Paris,,OMZ, +OMZ:SA:10835,1,"CHESNY MAIRIE",49.054637,6.242784,,1,,Europe/Paris,,OMZ, +OMZ:SA:10849,1,"DRAPIERS",49.109533,6.247665,,1,,Europe/Paris,,OMZ, +OMZ:SA:10850,1,"SELLIERS",49.114119,6.247432,,1,,Europe/Paris,,OMZ, +OMZ:SA:10851,1,"PISCINE OLYMPIQUE",49.100565,6.186065,,1,,Europe/Paris,,OMZ, +OMZ:SA:10854,1,"ARBALETRIERS",49.050773,6.187019,,1,,Europe/Paris,,OMZ, +OMZ:SA:10856,1,"VILLERS",49.077234,6.324085,,1,,Europe/Paris,,OMZ, +OMZ:SA:10860,1,"ST-PRIVAT-LA-MONTAGNE",49.184845,6.044487,,1,,Europe/Paris,,OMZ, +OMZ:SA:10866,1,"HAMEAU JERUSALEM",49.186038,6.037602,,1,,Europe/Paris,,OMZ, +OMZ:SA:10867,1,"ST PAUL",49.083259,6.086845,,1,,Europe/Paris,,OMZ, +OMZ:SA:10868,1,"RUE DES ECOLES",49.188757,6.038523,,1,,Europe/Paris,,OMZ, +OMZ:SA:10869,1,"CEDRE BLEU",49.033813,6.158191,,1,,Europe/Paris,,OMZ, +ONY:SA:CTP1,1,"Vandoeuvre CHU Brabois",48.64949,6.146569,,1,,Europe/Paris,,ONY, +ONY:SA:CTP10,1,"Blandan",48.672037,6.172621,,1,,Europe/Paris,,ONY, +ONY:SA:CTP1004,1,"Doyen Roubault",48.657594,6.155699,,1,,Europe/Paris,,ONY, +ONY:SA:CTP102,1,"Hôtel de Ville",48.660378,6.171979,,1,,Europe/Paris,,ONY, +ONY:SA:CTP103,1,"Lisbonne",48.661844,6.168906,,1,,Europe/Paris,,ONY, +ONY:SA:CTP104,1,"Repentir",48.664541,6.167383,,1,,Europe/Paris,,ONY, +ONY:SA:CTP1042,1,"Cavallier",48.694333,6.165234,,1,,Europe/Paris,,ONY, +ONY:SA:CTP1047,1,"Gare Thiers - Mazagran",48.690967,6.17466,,1,,Europe/Paris,,ONY, +ONY:SA:CTP1048,1,"Gare Saint-Léon",48.69077,6.17126,,1,,Europe/Paris,,ONY, +ONY:SA:CTP1049,1,"Belgique",48.666759,6.170065,,1,,Europe/Paris,,ONY, +ONY:SA:CTP105,1,"Villers Clairlieu",48.658748,6.111692,,1,,Europe/Paris,,ONY, +ONY:SA:CTP1061,1,"Libération",48.676589,6.156891,,1,,Europe/Paris,,ONY, +ONY:SA:CTP107,1,"Bois de L'Hospice",48.655739,6.108886,,1,,Europe/Paris,,ONY, +ONY:SA:CTP1071,1,"Mouzon",48.696079,6.12381,,1,,Europe/Paris,,ONY, +ONY:SA:CTP108,1,"Valtriche",48.656343,6.112478,,1,,Europe/Paris,,ONY, +ONY:SA:CTP109,1,"Villers Ecoles",48.654992,6.114248,,1,,Europe/Paris,,ONY, +ONY:SA:CTP11,1,"Exelmans",48.674907,6.175811,,1,,Europe/Paris,,ONY, +ONY:SA:CTP110,1,"Gymnase",48.656557,6.117301,,1,,Europe/Paris,,ONY, +ONY:SA:CTP1106,1,"Saint-Bernard",48.657175,6.111283,,1,,Europe/Paris,,ONY, +ONY:SA:CTP111,1,"Les Essarts",48.657903,6.115093,,1,,Europe/Paris,,ONY, +ONY:SA:CTP112,1,"Villers Stade",48.656239,6.125475,,1,,Europe/Paris,,ONY, +ONY:SA:CTP113,1,"Pôle Technologique",48.656591,6.129678,,1,,Europe/Paris,,ONY, +ONY:SA:CTP1133,1,"Préville",48.68754,6.166172,,1,,Europe/Paris,,ONY, +ONY:SA:CTP1138,1,"Myosotis",48.664003,6.184387,,1,,Europe/Paris,,ONY, +ONY:SA:CTP1139,1,"Glaïeuls",48.666337,6.186481,,1,,Europe/Paris,,ONY, +ONY:SA:CTP114,1,"Camping",48.658434,6.139129,,1,,Europe/Paris,,ONY, +ONY:SA:CTP1146,1,"Vauban",48.674831,6.170539,,1,,Europe/Paris,,ONY, +ONY:SA:CTP115,1,"Cottages",48.662274,6.142193,,1,,Europe/Paris,,ONY, +ONY:SA:CTP116,1,"Saint-Fiacre",48.667561,6.146849,,1,,Europe/Paris,,ONY, +ONY:SA:CTP1164,1,"Erables",48.642649,6.181988,,1,,Europe/Paris,,ONY, +ONY:SA:CTP117,1,"Remicourt",48.669494,6.152791,,1,,Europe/Paris,,ONY, +ONY:SA:CTP118,1,"Mutualité - Télécom Nancy",48.669684,6.156644,,1,,Europe/Paris,,ONY, +ONY:SA:CTP119,1,"Louis Armand",48.671207,6.160141,,1,,Europe/Paris,,ONY, +ONY:SA:CTP1194,1,"Européen",48.663973,6.188853,,1,,Europe/Paris,,ONY, +ONY:SA:CTP12,1,"Jean Jaurès",48.678364,6.179663,,1,,Europe/Paris,,ONY, +ONY:SA:CTP120,1,"Mangin",48.672326,6.160942,,1,,Europe/Paris,,ONY, +ONY:SA:CTP121,1,"France Lanord",48.675086,6.158442,,1,,Europe/Paris,,ONY, +ONY:SA:CTP122,1,"Baudricourt",48.677763,6.158662,,1,,Europe/Paris,,ONY, +ONY:SA:CTP1226,1,"Gridel",48.686702,6.16073,,1,,Europe/Paris,,ONY, +ONY:SA:CTP123,1,"Zola",48.680957,6.157858,,1,,Europe/Paris,,ONY, +ONY:SA:CTP1231,1,"Charcot",48.712647,6.163332,,1,,Europe/Paris,,ONY, +ONY:SA:CTP1238,1,"Haut-Bourgeois",48.695987,6.176476,,1,,Europe/Paris,,ONY, +ONY:SA:CTP1243,1,"Place Charles III - Point Central",48.68962,6.183417,,1,,Europe/Paris,,ONY, +ONY:SA:CTP125,1,"Charlemagne",48.6816,6.162064,,1,,Europe/Paris,,ONY, +ONY:SA:CTP126,1,"Painlevé",48.682277,6.166225,,1,,Europe/Paris,,ONY, +ONY:SA:CTP128,1,"Kléber",48.684656,6.168128,,1,,Europe/Paris,,ONY, +ONY:SA:CTP1298,1,"Sainte-Colette",48.674718,6.182805,,1,,Europe/Paris,,ONY, +ONY:SA:CTP13,1,"Garenne",48.681183,6.17856,,1,,Europe/Paris,,ONY, +ONY:SA:CTP130,1,"Commanderie",48.686541,6.167954,,1,,Europe/Paris,,ONY, +ONY:SA:CTP1303,1,"Villard",48.680271,6.187736,,1,,Europe/Paris,,ONY, +ONY:SA:CTP1314,1,"Malzéville",48.725285,6.181127,,1,,Europe/Paris,,ONY, +ONY:SA:CTP1316,1,"Villers G. Chepfer",48.665067,6.139041,,1,,Europe/Paris,,ONY, +ONY:SA:CTP1318,1,"Monument",48.670768,6.142117,,1,,Europe/Paris,,ONY, +ONY:SA:CTP1319,1,"Asnée",48.672306,6.145006,,1,,Europe/Paris,,ONY, +ONY:SA:CTP1342,1,"Faubourg",48.701448,6.176614,,1,,Europe/Paris,,ONY, +ONY:SA:CTP1346,1,"MJC 3 Maisons",48.705898,6.175673,,1,,Europe/Paris,,ONY, +ONY:SA:CTP1347,1,"Dusaulx",48.70485,6.17413,,1,,Europe/Paris,,ONY, +ONY:SA:CTP1349,1,"La Meurthe",48.710092,6.172079,,1,,Europe/Paris,,ONY, +ONY:SA:CTP135,1,"Amsterdam",48.659508,6.182477,,1,,Europe/Paris,,ONY, +ONY:SA:CTP136,1,"La Haye",48.661273,6.185171,,1,,Europe/Paris,,ONY, +ONY:SA:CTP1361,1,"Passerelle",48.712653,6.184323,,1,,Europe/Paris,,ONY, +ONY:SA:CTP1362,1,"Ecole Paul Bert",48.710704,6.184365,,1,,Europe/Paris,,ONY, +ONY:SA:CTP1365,1,"Orme",48.707739,6.184683,,1,,Europe/Paris,,ONY, +ONY:SA:CTP137,1,"Jonquilles",48.663561,6.18473,,1,,Europe/Paris,,ONY, +ONY:SA:CTP1371,1,"Sainte-Catherine",48.694984,6.189873,,1,,Europe/Paris,,ONY, +ONY:SA:CTP1373,1,"Lobau",48.688714,6.194085,,1,,Europe/Paris,,ONY, +ONY:SA:CTP138,1,"Eurydice",48.614838,6.164387,,1,,Europe/Paris,,ONY, +ONY:SA:CTP1380,1,"Tomblaine Mairie",48.686539,6.210524,,1,,Europe/Paris,,ONY, +ONY:SA:CTP1381,1,"Barbusse",48.684564,6.213359,,1,,Europe/Paris,,ONY, +ONY:SA:CTP1389,1,"Napoléon",48.668302,6.23304,,1,,Europe/Paris,,ONY, +ONY:SA:CTP139,1,"Brichambeau",48.665308,6.186745,,1,,Europe/Paris,,ONY, +ONY:SA:CTP14,1,"Mon Desert",48.6844,6.176445,,1,,Europe/Paris,,ONY, +ONY:SA:CTP140,1,"Saint-François d'Assise",48.667703,6.188206,,1,,Europe/Paris,,ONY, +ONY:SA:CTP1407,1,"Varinchamps",48.711206,6.263931,,1,,Europe/Paris,,ONY, +ONY:SA:CTP141,1,"Biancamaria",48.669166,6.185273,,1,,Europe/Paris,,ONY, +ONY:SA:CTP142,1,"Faron",48.670764,6.181329,,1,,Europe/Paris,,ONY, +ONY:SA:CTP143,1,"Wilson",48.671246,6.178345,,1,,Europe/Paris,,ONY, +ONY:SA:CTP144,1,"Chevert",48.672882,6.175987,,1,,Europe/Paris,,ONY, +ONY:SA:CTP1440,1,"Arsenal",48.696819,6.17776,,1,,Europe/Paris,,ONY, +ONY:SA:CTP1443,1,"Braconnot",48.698872,6.179189,,1,,Europe/Paris,,ONY, +ONY:SA:CTP1444,1,"Sellier",48.700466,6.179905,,1,,Europe/Paris,,ONY, +ONY:SA:CTP145,1,"Gébhart",48.673596,6.173645,,1,,Europe/Paris,,ONY, +ONY:SA:CTP1451,1,"Jet d'eau",48.68623,6.14062,,1,,Europe/Paris,,ONY, +ONY:SA:CTP146,1,"Sivry",48.675465,6.171946,,1,,Europe/Paris,,ONY, +ONY:SA:CTP1461,1,"Mouzimpré",48.70165,6.22579,,1,,Europe/Paris,,ONY, +ONY:SA:CTP147,1,"Maréchal Juin",48.677687,6.170301,,1,,Europe/Paris,,ONY, +ONY:SA:CTP1476,1,"Pinsons",48.706633,6.1978,,1,,Europe/Paris,,ONY, +ONY:SA:CTP1479,1,"Barrès",48.707455,6.188495,,1,,Europe/Paris,,ONY, +ONY:SA:CTP148,1,"Nancy Thermal",48.679631,6.167043,,1,,Europe/Paris,,ONY, +ONY:SA:CTP149,1,"Ludres",48.625364,6.175504,,1,,Europe/Paris,,ONY, +ONY:SA:CTP15,1,"Kennedy",48.686499,6.17478,,1,,Europe/Paris,,ONY, +ONY:SA:CTP150,1,"Verlaine",48.623967,6.174135,,1,,Europe/Paris,,ONY, +ONY:SA:CTP1505,1,"Beaupré",48.716932,6.221693,,1,,Europe/Paris,,ONY, +ONY:SA:CTP152,1,"Collège Monod",48.620947,6.167794,,1,,Europe/Paris,,ONY, +ONY:SA:CTP153,1,"Ludres Mairie",48.621485,6.161587,,1,,Europe/Paris,,ONY, +ONY:SA:CTP154,1,"Ecoles",48.620552,6.159981,,1,,Europe/Paris,,ONY, +ONY:SA:CTP1544,1,"LES AULNOIS",48.653572,6.226551,,1,,Europe/Paris,,ONY, +ONY:SA:CTP155,1,"Secours",48.61907,6.159424,,1,,Europe/Paris,,ONY, +ONY:SA:CTP156,1,"Messein",48.616299,6.159423,,1,,Europe/Paris,,ONY, +ONY:SA:CTP157,1,"Frères Lumière",48.614047,6.161121,,1,,Europe/Paris,,ONY, +ONY:SA:CTP159,1,"Albâtre",48.614699,6.166468,,1,,Europe/Paris,,ONY, +ONY:SA:CTP16,1,"Nancy Gare",48.689089,6.175897,,1,,Europe/Paris,,ONY, +ONY:SA:CTP160,1,"Ravel",48.612217,6.171931,,1,,Europe/Paris,,ONY, +ONY:SA:CTP161,1,"Vert Village",48.614392,6.174806,,1,,Europe/Paris,,ONY, +ONY:SA:CTP162,1,"Cinéma",48.619221,6.177315,,1,,Europe/Paris,,ONY, +ONY:SA:CTP163,1,"Baraques de Ludres",48.622128,6.178376,,1,,Europe/Paris,,ONY, +ONY:SA:CTP164,1,"Erables",48.644981,6.181933,,1,,Europe/Paris,,ONY, +ONY:SA:CTP165,1,"Route d'Heillecourt",48.652414,6.184898,,1,,Europe/Paris,,ONY, +ONY:SA:CTP1656,1,"Gambetta",48.71241,6.166818,,1,,Europe/Paris,,ONY, +ONY:SA:CTP1658,1,"Simon",48.700462,6.176472,,1,,Europe/Paris,,ONY, +ONY:SA:CTP166,1,"Sud Europe",48.654064,6.178584,,1,,Europe/Paris,,ONY, +ONY:SA:CTP167,1,"Jeanne d'Arc",48.658377,6.178648,,1,,Europe/Paris,,ONY, +ONY:SA:CTP1679,1,"Maison de l'Amitié",48.712787,6.262663,,1,,Europe/Paris,,ONY, +ONY:SA:CTP168,1,"Goethe",48.660277,6.179708,,1,,Europe/Paris,,ONY, +ONY:SA:CTP1680,1,"Malzéville Mairie",48.708664,6.183598,,1,,Europe/Paris,,ONY, +ONY:SA:CTP169,1,"Parc des Sports - Nations",48.662748,6.176655,,1,,Europe/Paris,,ONY, +ONY:SA:CTP17,1,"Maginot",48.689176,6.177631,,1,,Europe/Paris,,ONY, +ONY:SA:CTP170,1,"Vandoeuvre Marché",48.664631,6.173576,,1,,Europe/Paris,,ONY, +ONY:SA:CTP1700,1,"Gare Thiers - Foch",48.68921,6.17588,,1,,Europe/Paris,,ONY, +ONY:SA:CTP1708,1,"Sadi Carnot",48.707187,6.185291,,1,,Europe/Paris,,ONY, +ONY:SA:CTP172,1,"UFR Staps",48.667173,6.158277,,1,,Europe/Paris,,ONY, +ONY:SA:CTP173,1,"Grande Corvée",48.665625,6.156316,,1,,Europe/Paris,,ONY, +ONY:SA:CTP174,1,"Villers Jardin Botanique",48.663348,6.155817,,1,,Europe/Paris,,ONY, +ONY:SA:CTP175,1,"Fleurychamp",48.623262,6.199081,,1,,Europe/Paris,,ONY, +ONY:SA:CTP176,1,"Château",48.625698,6.203096,,1,,Europe/Paris,,ONY, +ONY:SA:CTP177,1,"Fléville Mairie",48.62559,6.204634,,1,,Europe/Paris,,ONY, +ONY:SA:CTP178,1,"Croix du Soldat",48.628293,6.207366,,1,,Europe/Paris,,ONY, +ONY:SA:CTP179,1,"L'Orée du Bois",48.64387,6.210301,,1,,Europe/Paris,,ONY, +ONY:SA:CTP18,1,"Point Central",48.690536,6.181861,,1,,Europe/Paris,,ONY, +ONY:SA:CTP180,1,"Besançon",48.647623,6.208817,,1,,Europe/Paris,,ONY, +ONY:SA:CTP181,1,"HEILLECOURT",48.648075,6.209914,,1,,Europe/Paris,,ONY, +ONY:SA:CTP182,1,"Pléiade",48.647536,6.2064,,1,,Europe/Paris,,ONY, +ONY:SA:CTP183,1,"Victor Hugo",48.646268,6.205865,,1,,Europe/Paris,,ONY, +ONY:SA:CTP184,1,"Versailles",48.644212,6.2015,,1,,Europe/Paris,,ONY, +ONY:SA:CTP185,1,"Morlaix",48.641264,6.198017,,1,,Europe/Paris,,ONY, +ONY:SA:CTP186,1,"Chateaubriand",48.644958,6.196604,,1,,Europe/Paris,,ONY, +ONY:SA:CTP187,1,"Parc Embanie",48.64746,6.196494,,1,,Europe/Paris,,ONY, +ONY:SA:CTP188,1,"Temps Libre",48.650392,6.194026,,1,,Europe/Paris,,ONY, +ONY:SA:CTP189,1,"Emile Gallé",48.652355,6.193532,,1,,Europe/Paris,,ONY, +ONY:SA:CTP19,1,"Cathédrale",48.691661,6.185329,,1,,Europe/Paris,,ONY, +ONY:SA:CTP190,1,"Grande Rue",48.65271,6.186408,,1,,Europe/Paris,,ONY, +ONY:SA:CTP192,1,"Haute-Malgrange",48.661477,6.188132,,1,,Europe/Paris,,ONY, +ONY:SA:CTP197,1,"Clemenceau",48.668575,6.199123,,1,,Europe/Paris,,ONY, +ONY:SA:CTP198,1,"Evrard",48.668073,6.20177,,1,,Europe/Paris,,ONY, +ONY:SA:CTP2,1,"Forêt de Haye",48.650683,6.148491,,1,,Europe/Paris,,ONY, +ONY:SA:CTP20,1,"Division de Fer",48.693107,6.19053,,1,,Europe/Paris,,ONY, +ONY:SA:CTP201,1,"Jarville Californie",48.673504,6.206607,,1,,Europe/Paris,,ONY, +ONY:SA:CTP202,1,"Marcel Brot",48.679216,6.204945,,1,,Europe/Paris,,ONY, +ONY:SA:CTP203,1,"Krug",48.682917,6.203076,,1,,Europe/Paris,,ONY, +ONY:SA:CTP204,1,"Victor",48.68651,6.19971,,1,,Europe/Paris,,ONY, +ONY:SA:CTP207,1,"Bazin",48.696669,6.192927,,1,,Europe/Paris,,ONY, +ONY:SA:CTP208,1,"Dieuze",48.698111,6.192705,,1,,Europe/Paris,,ONY, +ONY:SA:CTP21,1,"Saint-Georges",48.695597,6.195243,,1,,Europe/Paris,,ONY, +ONY:SA:CTP212,1,"La Poste - Champ le Boeuf",48.70022,6.13339,,1,,Europe/Paris,,ONY, +ONY:SA:CTP213,1,"Cascade - La Fontaine",48.699,6.13504,,1,,Europe/Paris,,ONY, +ONY:SA:CTP215,1,"Jean Lamour",48.70368,6.16316,,1,,Europe/Paris,,ONY, +ONY:SA:CTP216,1,"Alix Le Clerc",48.701402,6.16408,,1,,Europe/Paris,,ONY, +ONY:SA:CTP217,1,"Place Aimé Morot",48.69926,6.16575,,1,,Europe/Paris,,ONY, +ONY:SA:CTP218,1,"Campus Lettres",48.69556,6.16732,,1,,Europe/Paris,,ONY, +ONY:SA:CTP219,1,"Laxou Sapinière",48.69102,6.12825,,1,,Europe/Paris,,ONY, +ONY:SA:CTP22,1,"Cristalleries",48.697499,6.198912,,1,,Europe/Paris,,ONY, +ONY:SA:CTP223,1,"Hardeval",48.681437,6.152594,,1,,Europe/Paris,,ONY, +ONY:SA:CTP224,1,"Victoire",48.684278,6.152343,,1,,Europe/Paris,,ONY, +ONY:SA:CTP225,1,"Sainte-Anne",48.684716,6.156217,,1,,Europe/Paris,,ONY, +ONY:SA:CTP226,1,"Sacré Coeur",48.686205,6.162817,,1,,Europe/Paris,,ONY, +ONY:SA:CTP228,1,"Sarre",48.695533,6.127157,,1,,Europe/Paris,,ONY, +ONY:SA:CTP229,1,"Canal",48.703132,6.182137,,1,,Europe/Paris,,ONY, +ONY:SA:CTP23,1,"Gérard Barrois - Stade Marcel Picot",48.699609,6.204588,,1,,Europe/Paris,,ONY, +ONY:SA:CTP230,1,"Maxéville Mairie",48.71267,6.161905,,1,,Europe/Paris,,ONY, +ONY:SA:CTP231,1,"Justice",48.713443,6.165013,,1,,Europe/Paris,,ONY, +ONY:SA:CTP232,1,"Lavoir",48.708989,6.166906,,1,,Europe/Paris,,ONY, +ONY:SA:CTP233,1,"Courbet",48.712679,6.167697,,1,,Europe/Paris,,ONY, +ONY:SA:CTP234,1,"Carsat",48.703116,6.170398,,1,,Europe/Paris,,ONY, +ONY:SA:CTP235,1,"Saint-Fiacre",48.701004,6.171893,,1,,Europe/Paris,,ONY, +ONY:SA:CTP237,1,"Désilles",48.698,6.173909,,1,,Europe/Paris,,ONY, +ONY:SA:CTP238,1,"Baron Louis",48.696362,6.174433,,1,,Europe/Paris,,ONY, +ONY:SA:CTP239,1,"Place Carnot",48.692936,6.176887,,1,,Europe/Paris,,ONY, +ONY:SA:CTP24,1,"Saint-Livier",48.700819,6.208928,,1,,Europe/Paris,,ONY, +ONY:SA:CTP240,1,"Amerval",48.692928,6.180707,,1,,Europe/Paris,,ONY, +ONY:SA:CTP242,1,"Place Stanislas - Dom Calmet",48.690948,6.180873,,1,,Europe/Paris,,ONY, +ONY:SA:CTP243,1,"Place Charles III - Marché",48.68914,6.18221,,1,,Europe/Paris,,ONY, +ONY:SA:CTP244,1,"Quartier Saint-Nicolas",48.686087,6.184439,,1,,Europe/Paris,,ONY, +ONY:SA:CTP246,1,"Place des Vosges",48.68475,6.18784,,1,,Europe/Paris,,ONY, +ONY:SA:CTP248,1,"Hôpital Central-Maternité",48.68199,6.19221,,1,,Europe/Paris,,ONY, +ONY:SA:CTP25,1,"Washington Foch",48.70209,6.21337,,1,,Europe/Paris,,ONY, +ONY:SA:CTP252,1,"Oberlin",48.699541,6.189544,,1,,Europe/Paris,,ONY, +ONY:SA:CTP253,1,"Alsace-Bonsecours",48.676185,6.199676,,1,,Europe/Paris,,ONY, +ONY:SA:CTP254,1,"Jarville Mairie",48.6733,6.20231,,1,,Europe/Paris,,ONY, +ONY:SA:CTP256,1,"Fonteno",48.668643,6.20493,,1,,Europe/Paris,,ONY, +ONY:SA:CTP257,1,"Musée de l'Histoire du Fer",48.665275,6.207972,,1,,Europe/Paris,,ONY, +ONY:SA:CTP258,1,"Montaigu",48.662963,6.207378,,1,,Europe/Paris,,ONY, +ONY:SA:CTP259,1,"Emmaüs",48.659006,6.206416,,1,,Europe/Paris,,ONY, +ONY:SA:CTP26,1,"Clinique Pasteur",48.703289,6.217593,,1,,Europe/Paris,,ONY, +ONY:SA:CTP260,1,"FLEVILLE",48.621479,6.202212,,1,,Europe/Paris,,ONY, +ONY:SA:CTP261,1,"Autoroute",48.617521,6.203449,,1,,Europe/Paris,,ONY, +ONY:SA:CTP262,1,"Eiffel",48.612235,6.196947,,1,,Europe/Paris,,ONY, +ONY:SA:CTP263,1,"FLEVILLE Dynapôle",48.610396,6.192694,,1,,Europe/Paris,,ONY, +ONY:SA:CTP264,1,"Papin",48.612413,6.191485,,1,,Europe/Paris,,ONY, +ONY:SA:CTP265,1,"Dynapôle",48.614761,6.192121,,1,,Europe/Paris,,ONY, +ONY:SA:CTP27,1,"Essey Roosevelt",48.704387,6.221099,,1,,Europe/Paris,,ONY, +ONY:SA:CTP270,1,"Sion",48.664604,6.198318,,1,,Europe/Paris,,ONY, +ONY:SA:CTP271,1,"Léon Songeur",48.66151,6.200072,,1,,Europe/Paris,,ONY, +ONY:SA:CTP272,1,"Vigne des Sables",48.659509,6.197747,,1,,Europe/Paris,,ONY, +ONY:SA:CTP273,1,"La Rotonde",48.656926,6.198746,,1,,Europe/Paris,,ONY, +ONY:SA:CTP274,1,"Husson",48.654868,6.199665,,1,,Europe/Paris,,ONY, +ONY:SA:CTP275,1,"Tournelle",48.653869,6.196893,,1,,Europe/Paris,,ONY, +ONY:SA:CTP277,1,"Belle Croix",48.671624,6.200827,,1,,Europe/Paris,,ONY, +ONY:SA:CTP278,1,"Jarville Sion",48.664723,6.198512,,1,,Europe/Paris,,ONY, +ONY:SA:CTP28,1,"Essey Mouzimpré",48.701161,6.224778,,1,,Europe/Paris,,ONY, +ONY:SA:CTP2805,1,"Ludres J. Monod",48.62027,6.168326,,1,,Europe/Paris,,ONY, +ONY:SA:CTP2811,1,"Essey Mairie",48.704986,6.222922,,1,,Europe/Paris,,ONY, +ONY:SA:CTP2813,1,"Art-sur-Meurthe - Bosserville",48.662231,6.24482,,1,,Europe/Paris,,ONY, +ONY:SA:CTP2814,1,"Heillecourt Montaigu",48.657448,6.208746,,1,,Europe/Paris,,ONY, +ONY:SA:CTP282,1,"Parc",48.697024,6.131245,,1,,Europe/Paris,,ONY, +ONY:SA:CTP2820,1,"Tomblaine Groupe Scolaire",48.696453,6.21611,,1,,Europe/Paris,,ONY, +ONY:SA:CTP2824,1,"Malzéville Paul Verlaine",48.725195,6.180915,,1,,Europe/Paris,,ONY, +ONY:SA:CTP2825,1,"Vandoeuvre Monplaisir",48.66562,6.161882,,1,,Europe/Paris,,ONY, +ONY:SA:CTP285,1,"Sainte-Anne",48.693203,6.140304,,1,,Europe/Paris,,ONY, +ONY:SA:CTP286,1,"Viray",48.692483,6.14595,,1,,Europe/Paris,,ONY, +ONY:SA:CTP287,1,"La Côte",48.691718,6.149583,,1,,Europe/Paris,,ONY, +ONY:SA:CTP288,1,"Marquette",48.691071,6.152716,,1,,Europe/Paris,,ONY, +ONY:SA:CTP289,1,"Chemin Blanc",48.690364,6.156037,,1,,Europe/Paris,,ONY, +ONY:SA:CTP29,1,"Bruges",48.664752,6.168924,,1,,Europe/Paris,,ONY, +ONY:SA:CTP290,1,"Santifontaine",48.688806,6.163323,,1,,Europe/Paris,,ONY, +ONY:SA:CTP292,1,"Place Dombasle",48.69168,6.17897,,1,,Europe/Paris,,ONY, +ONY:SA:CTP295,1,"Garenne",48.681997,6.183752,,1,,Europe/Paris,,ONY, +ONY:SA:CTP296,1,"Clemenceau",48.679251,6.180452,,1,,Europe/Paris,,ONY, +ONY:SA:CTP297,1,"Leclerc",48.676282,6.178604,,1,,Europe/Paris,,ONY, +ONY:SA:CTP298,1,"Vaucouleurs",48.674397,6.181294,,1,,Europe/Paris,,ONY, +ONY:SA:CTP299,1,"Oudinot",48.676077,6.181887,,1,,Europe/Paris,,ONY, +ONY:SA:CTP3,1,"Faisanderie",48.654203,6.152742,,1,,Europe/Paris,,ONY, +ONY:SA:CTP30,1,"Nations",48.661697,6.173887,,1,,Europe/Paris,,ONY, +ONY:SA:CTP301,1,"Crépin",48.677773,6.184819,,1,,Europe/Paris,,ONY, +ONY:SA:CTP302,1,"Clinchant",48.680283,6.184611,,1,,Europe/Paris,,ONY, +ONY:SA:CTP304,1,"Villemin",48.678951,6.188739,,1,,Europe/Paris,,ONY, +ONY:SA:CTP305,1,"Nancy Cimetière de Sud",48.676643,6.191082,,1,,Europe/Paris,,ONY, +ONY:SA:CTP306,1,"Brice",48.679668,6.181888,,1,,Europe/Paris,,ONY, +ONY:SA:CTP307,1,"Briand",48.672275,6.181447,,1,,Europe/Paris,,ONY, +ONY:SA:CTP309,1,"Norvège",48.667179,6.176978,,1,,Europe/Paris,,ONY, +ONY:SA:CTP31,1,"Kehl",48.660429,6.176312,,1,,Europe/Paris,,ONY, +ONY:SA:CTP310,1,"Vandoeuvre - Marché",48.665013,6.174703,,1,,Europe/Paris,,ONY, +ONY:SA:CTP315,1,"Pléiade",48.663341,6.140959,,1,,Europe/Paris,,ONY, +ONY:SA:CTP317,1,"Carrière",48.668899,6.140508,,1,,Europe/Paris,,ONY, +ONY:SA:CTP318,1,"Haut de la Taye",48.670257,6.142929,,1,,Europe/Paris,,ONY, +ONY:SA:CTP319,1,"Villers - Eglise",48.669617,6.145505,,1,,Europe/Paris,,ONY, +ONY:SA:CTP320,1,"Albert 1er",48.672878,6.147764,,1,,Europe/Paris,,ONY, +ONY:SA:CTP321,1,"Médreville",48.685266,6.160266,,1,,Europe/Paris,,ONY, +ONY:SA:CTP322,1,"Brasseries",48.706033,6.167834,,1,,Europe/Paris,,ONY, +ONY:SA:CTP326,1,"Houdemont Porte Sud",48.637517,6.18505,,1,,Europe/Paris,,ONY, +ONY:SA:CTP327,1,"La Sance",48.657019,6.121154,,1,,Europe/Paris,,ONY, +ONY:SA:CTP332,1,"Avenue de Brabois",48.672753,6.163733,,1,,Europe/Paris,,ONY, +ONY:SA:CTP333,1,"Haussonville",48.675389,6.163129,,1,,Europe/Paris,,ONY, +ONY:SA:CTP339,1,"Cyfflé",48.68619,6.181449,,1,,Europe/Paris,,ONY, +ONY:SA:CTP34,1,"Boufflers",48.693018,6.138255,,1,,Europe/Paris,,ONY, +ONY:SA:CTP341,1,"Charles V",48.698592,6.175418,,1,,Europe/Paris,,ONY, +ONY:SA:CTP343,1,"Pierson",48.703104,6.175318,,1,,Europe/Paris,,ONY, +ONY:SA:CTP345,1,"Fontenoy",48.704417,6.175538,,1,,Europe/Paris,,ONY, +ONY:SA:CTP348,1,"Deville",48.707689,6.172196,,1,,Europe/Paris,,ONY, +ONY:SA:CTP35,1,"Gentilly",48.69482,6.138509,,1,,Europe/Paris,,ONY, +ONY:SA:CTP350,1,"La Meurthe",48.688241,6.175833,,1,,Europe/Paris,,ONY, +ONY:SA:CTP351,1,"Vayringe",48.706504,6.176995,,1,,Europe/Paris,,ONY, +ONY:SA:CTP352,1,"Douëra",48.709779,6.180348,,1,,Europe/Paris,,ONY, +ONY:SA:CTP353,1,"Malzéville Stade",48.712129,6.178808,,1,,Europe/Paris,,ONY, +ONY:SA:CTP354,1,"Malzéville Savlons",48.713655,6.181491,,1,,Europe/Paris,,ONY, +ONY:SA:CTP355,1,"Malzéville Pixerécourt",48.731617,6.182196,,1,,Europe/Paris,,ONY, +ONY:SA:CTP357,1,"Verlaine",48.723716,6.180963,,1,,Europe/Paris,,ONY, +ONY:SA:CTP358,1,"Longefond",48.720885,6.181702,,1,,Europe/Paris,,ONY, +ONY:SA:CTP359,1,"Pavillon",48.718248,6.183314,,1,,Europe/Paris,,ONY, +ONY:SA:CTP360,1,"Croix de Mission",48.715741,6.184863,,1,,Europe/Paris,,ONY, +ONY:SA:CTP363,1,"Malzéville - Eglise",48.711799,6.186639,,1,,Europe/Paris,,ONY, +ONY:SA:CTP366,1,"Mac Mahon",48.704256,6.183024,,1,,Europe/Paris,,ONY, +ONY:SA:CTP37,1,"Colline",48.695651,6.140859,,1,,Europe/Paris,,ONY, +ONY:SA:CTP374,1,"Jardiniers",48.688456,6.191889,,1,,Europe/Paris,,ONY, +ONY:SA:CTP375,1,"Saint-Julien",48.685974,6.191078,,1,,Europe/Paris,,ONY, +ONY:SA:CTP376,1,"Loritz",48.687152,6.195507,,1,,Europe/Paris,,ONY, +ONY:SA:CTP378,1,"Austrasie",48.68745,6.20439,,1,,Europe/Paris,,ONY, +ONY:SA:CTP379,1,"La Meurthe",48.68832,6.20839,,1,,Europe/Paris,,ONY, +ONY:SA:CTP38,1,"Buthegnémont",48.696527,6.146906,,1,,Europe/Paris,,ONY, +ONY:SA:CTP380,1,"Concorde",48.687075,6.211584,,1,,Europe/Paris,,ONY, +ONY:SA:CTP3806,1,"Haut de Fléville",48.624378,6.191177,,1,,Europe/Paris,,ONY, +ONY:SA:CTP381,1,"La Paix",48.684823,6.214013,,1,,Europe/Paris,,ONY, +ONY:SA:CTP382,1,"Les Ensanges",48.679999,6.216649,,1,,Europe/Paris,,ONY, +ONY:SA:CTP383,1,"Galilée",48.676439,6.221579,,1,,Europe/Paris,,ONY, +ONY:SA:CTP384,1,"Salengro",48.675914,6.226139,,1,,Europe/Paris,,ONY, +ONY:SA:CTP385,1,"Bois La Dame",48.676342,6.234283,,1,,Europe/Paris,,ONY, +ONY:SA:CTP386,1,"Saulxures Forêt",48.675636,6.241953,,1,,Europe/Paris,,ONY, +ONY:SA:CTP387,1,"Tuilerie",48.674534,6.223656,,1,,Europe/Paris,,ONY, +ONY:SA:CTP388,1,"Sainte-Marguerite",48.672124,6.226922,,1,,Europe/Paris,,ONY, +ONY:SA:CTP389,1,"Napoléon",48.66657,6.235493,,1,,Europe/Paris,,ONY, +ONY:SA:CTP39,1,"Saint-Mansuy",48.697316,6.155144,,1,,Europe/Paris,,ONY, +ONY:SA:CTP390,1,"Bosserville",48.663465,6.24181,,1,,Europe/Paris,,ONY, +ONY:SA:CTP391,1,"Repentir",48.661562,6.25496,,1,,Europe/Paris,,ONY, +ONY:SA:CTP392,1,"Art-sur-Meurthe - Château",48.658488,6.260907,,1,,Europe/Paris,,ONY, +ONY:SA:CTP393,1,"Art-sur-Meurthe",48.658643,6.269271,,1,,Europe/Paris,,ONY, +ONY:SA:CTP394,1,"Art-sur-Meurthe - Mairie",48.65561,6.265089,,1,,Europe/Paris,,ONY, +ONY:SA:CTP395,1,"18 juin",48.656199,6.265249,,1,,Europe/Paris,,ONY, +ONY:SA:CTP397,1,"Porte de Bosserville",48.675676,6.228971,,1,,Europe/Paris,,ONY, +ONY:SA:CTP40,1,"La Foucotte",48.69685,6.1593,,1,,Europe/Paris,,ONY, +ONY:SA:CTP400,1,"Seichamps Haie Cerlin",48.719568,6.265854,,1,,Europe/Paris,,ONY, +ONY:SA:CTP401,1,"Seichamps - Eglise",48.716878,6.265558,,1,,Europe/Paris,,ONY, +ONY:SA:CTP402,1,"Voirincourt",48.715602,6.271159,,1,,Europe/Paris,,ONY, +ONY:SA:CTP403,1,"Galibier",48.715512,6.273835,,1,,Europe/Paris,,ONY, +ONY:SA:CTP404,1,"Le Hohneck",48.713786,6.271466,,1,,Europe/Paris,,ONY, +ONY:SA:CTP405,1,"Jardin Roussel",48.71282,6.267857,,1,,Europe/Paris,,ONY, +ONY:SA:CTP406,1,"Renoir",48.713134,6.266355,,1,,Europe/Paris,,ONY, +ONY:SA:CTP409,1,"Saint-Laurent",48.715106,6.25918,,1,,Europe/Paris,,ONY, +ONY:SA:CTP41,1,"Cité Universitaire",48.696017,6.16337,,1,,Europe/Paris,,ONY, +ONY:SA:CTP410,1,"Les Rosiers",48.713672,6.255788,,1,,Europe/Paris,,ONY, +ONY:SA:CTP411,1,"Les Bijoins",48.712342,6.253679,,1,,Europe/Paris,,ONY, +ONY:SA:CTP412,1,"Montréal",48.712974,6.251743,,1,,Europe/Paris,,ONY, +ONY:SA:CTP414,1,"Edith Piaf",48.70891,6.238627,,1,,Europe/Paris,,ONY, +ONY:SA:CTP415,1,"Colonies",48.70741,6.23482,,1,,Europe/Paris,,ONY, +ONY:SA:CTP416,1,"69ème RI",48.70549,6.23018,,1,,Europe/Paris,,ONY, +ONY:SA:CTP42,1,"Cavalier",48.693198,6.165357,,1,,Europe/Paris,,ONY, +ONY:SA:CTP421,1,"Lebrun",48.699489,6.25527,,1,,Europe/Paris,,ONY, +ONY:SA:CTP422,1,"Pulnoy République",48.70207,6.258019,,1,,Europe/Paris,,ONY, +ONY:SA:CTP423,1,"Sorbiers",48.704094,6.260301,,1,,Europe/Paris,,ONY, +ONY:SA:CTP424,1,"Collège Goncourt",48.70611,6.2609,,1,,Europe/Paris,,ONY, +ONY:SA:CTP425,1,"Petite Fin",48.708848,6.257955,,1,,Europe/Paris,,ONY, +ONY:SA:CTP426,1,"Masserine",48.707474,6.255455,,1,,Europe/Paris,,ONY, +ONY:SA:CTP427,1,"Charles de Gaulle",48.70451,6.25456,,1,,Europe/Paris,,ONY, +ONY:SA:CTP429,1,"Porte Verte",48.706945,6.245024,,1,,Europe/Paris,,ONY, +ONY:SA:CTP43,1,"Place Godefroy de Bouillon",48.691911,6.168252,,1,,Europe/Paris,,ONY, +ONY:SA:CTP430,1,"Quartier Kléber",48.703695,6.230137,,1,,Europe/Paris,,ONY, +ONY:SA:CTP437,1,"Porte de la Craffe",48.698643,6.177065,,1,,Europe/Paris,,ONY, +ONY:SA:CTP438,1,"Laxou Plateau de Haye",48.697657,6.120121,,1,,Europe/Paris,,ONY, +ONY:SA:CTP44,1,"Foch",48.68839,6.17023,,1,,Europe/Paris,,ONY, +ONY:SA:CTP441,1,"Saint-Epvre",48.695374,6.179896,,1,,Europe/Paris,,ONY, +ONY:SA:CTP442,1,"Palais Ducal",48.696396,6.180651,,1,,Europe/Paris,,ONY, +ONY:SA:CTP450,1,"Didelot",48.683247,6.14346,,1,,Europe/Paris,,ONY, +ONY:SA:CTP451,1,"Jet d'Eau",48.686234,6.140471,,1,,Europe/Paris,,ONY, +ONY:SA:CTP452,1,"Place de la liberté",48.686226,6.142644,,1,,Europe/Paris,,ONY, +ONY:SA:CTP453,1,"Square Renan",48.684998,6.14757,,1,,Europe/Paris,,ONY, +ONY:SA:CTP454,1,"Emest Albert",48.685993,6.150755,,1,,Europe/Paris,,ONY, +ONY:SA:CTP455,1,"Jacquot de France",48.686832,6.154038,,1,,Europe/Paris,,ONY, +ONY:SA:CTP456,1,"Bel Air",48.688484,6.154934,,1,,Europe/Paris,,ONY, +ONY:SA:CTP457,1,"Berdaine",48.689472,6.152492,,1,,Europe/Paris,,ONY, +ONY:SA:CTP458,1,"Petit Arbois",48.687469,6.145073,,1,,Europe/Paris,,ONY, +ONY:SA:CTP459,1,"Plateau",48.688221,6.140208,,1,,Europe/Paris,,ONY, +ONY:SA:CTP46,1,"NANCY Centre de Congrès Prouvé",48.688675,6.176927,,1,,Europe/Paris,,ONY, +ONY:SA:CTP462,1,"Vandoeuvre Roberval",48.653536,6.179714,,1,,Europe/Paris,,ONY, +ONY:SA:CTP463,1,"Ducret",48.623486,6.202204,,1,,Europe/Paris,,ONY, +ONY:SA:CTP465,1,"Laxou Champ-le-boeuf",48.69817,6.12222,,1,,Europe/Paris,,ONY, +ONY:SA:CTP466,1,"Quai de la Bataille",48.681949,6.185405,,1,,Europe/Paris,,ONY, +ONY:SA:CTP467,1,"Voltaire",48.69069,6.210787,,1,,Europe/Paris,,ONY, +ONY:SA:CTP471,1,"Clemenceau",48.701501,6.206047,,1,,Europe/Paris,,ONY, +ONY:SA:CTP473,1,"Place de Gaulle",48.703477,6.204782,,1,,Europe/Paris,,ONY, +ONY:SA:CTP474,1,"Libérator",48.704197,6.20138,,1,,Europe/Paris,,ONY, +ONY:SA:CTP475,1,"Massenet",48.705055,6.198326,,1,,Europe/Paris,,ONY, +ONY:SA:CTP477,1,"Le Nid",48.705177,6.195042,,1,,Europe/Paris,,ONY, +ONY:SA:CTP478,1,"Ecole Pasteur",48.707413,6.191021,,1,,Europe/Paris,,ONY, +ONY:SA:CTP479,1,"Driant",48.708772,6.187934,,1,,Europe/Paris,,ONY, +ONY:SA:CTP482,1,"Alouettes",48.710125,6.219197,,1,,Europe/Paris,,ONY, +ONY:SA:CTP483,1,"Essey Tamaris",48.710636,6.218453,,1,,Europe/Paris,,ONY, +ONY:SA:CTP484,1,"Erables",48.710126,6.215431,,1,,Europe/Paris,,ONY, +ONY:SA:CTP485,1,"Bas Château",48.707853,6.215786,,1,,Europe/Paris,,ONY, +ONY:SA:CTP486,1,"Saint-Médard",48.7067,6.21201,,1,,Europe/Paris,,ONY, +ONY:SA:CTP487,1,"Charmettes",48.705807,6.208815,,1,,Europe/Paris,,ONY, +ONY:SA:CTP488,1,"Dommartemont",48.711154,6.209661,,1,,Europe/Paris,,ONY, +ONY:SA:CTP489,1,"Haie le Comte",48.711088,6.206994,,1,,Europe/Paris,,ONY, +ONY:SA:CTP490,1,"Chemin Stratégique",48.711003,6.204426,,1,,Europe/Paris,,ONY, +ONY:SA:CTP491,1,"Balzac",48.7088,6.204,,1,,Europe/Paris,,ONY, +ONY:SA:CTP492,1,"Charpentier",48.705732,6.203075,,1,,Europe/Paris,,ONY, +ONY:SA:CTP493,1,"Alexandre 1er",48.704441,6.192353,,1,,Europe/Paris,,ONY, +ONY:SA:CTP494,1,"Jacques Cartier",48.703038,6.195816,,1,,Europe/Paris,,ONY, +ONY:SA:CTP495,1,"Blaison - Parc",48.701523,6.199842,,1,,Europe/Paris,,ONY, +ONY:SA:CTP496,1,"Stade Matter",48.689553,6.20254,,1,,Europe/Paris,,ONY, +ONY:SA:CTP497,1,"Charles Gide",48.681087,6.144076,,1,,Europe/Paris,,ONY, +ONY:SA:CTP5,1,"Saint-André",48.660252,6.159559,,1,,Europe/Paris,,ONY, +ONY:SA:CTP50,1,"Vandoeuvre CHU",48.649354,6.149928,,1,,Europe/Paris,,ONY, +ONY:SA:CTP500,1,"Plein Soleil",48.715549,6.221294,,1,,Europe/Paris,,ONY, +ONY:SA:CTP501,1,"Oppidum",48.713987,6.22124,,1,,Europe/Paris,,ONY, +ONY:SA:CTP502,1,"Bois Châtel",48.712428,6.222319,,1,,Europe/Paris,,ONY, +ONY:SA:CTP503,1,"Chanoine Laurent",48.706955,6.219232,,1,,Europe/Paris,,ONY, +ONY:SA:CTP504,1,"La Fallée",48.709826,6.220389,,1,,Europe/Paris,,ONY, +ONY:SA:CTP505,1,"Seichamps Chanois",48.715587,6.253423,,1,,Europe/Paris,,ONY, +ONY:SA:CTP506,1,"Pottier",48.689911,6.215222,,1,,Europe/Paris,,ONY, +ONY:SA:CTP507,1,"Grande Haie",48.686878,6.217665,,1,,Europe/Paris,,ONY, +ONY:SA:CTP508,1,"Leroux",48.684093,6.229351,,1,,Europe/Paris,,ONY, +ONY:SA:CTP509,1,"Vert Pré",48.684305,6.235608,,1,,Europe/Paris,,ONY, +ONY:SA:CTP51,1,"Seichamps Mairie",48.714309,6.260551,,1,,Europe/Paris,,ONY, +ONY:SA:CTP510,1,"Barrès",48.685733,6.240424,,1,,Europe/Paris,,ONY, +ONY:SA:CTP512,1,"Saulxures - Eglise",48.689135,6.249208,,1,,Europe/Paris,,ONY, +ONY:SA:CTP513,1,"Saulxures - Château",48.692172,6.251143,,1,,Europe/Paris,,ONY, +ONY:SA:CTP514,1,"Saulxures Centre",48.690625,6.247136,,1,,Europe/Paris,,ONY, +ONY:SA:CTP516,1,"Route de Fléville",48.656113,6.206613,,1,,Europe/Paris,,ONY, +ONY:SA:CTP517,1,"Flaubert",48.657146,6.217917,,1,,Europe/Paris,,ONY, +ONY:SA:CTP518,1,"5 Fontaines",48.65628,6.22173,,1,,Europe/Paris,,ONY, +ONY:SA:CTP520,1,"Tricoterie",48.681827,6.243812,,1,,Europe/Paris,,ONY, +ONY:SA:CTP521,1,"Lorraine",48.679432,6.243337,,1,,Europe/Paris,,ONY, +ONY:SA:CTP522,1,"Champagne",48.678454,6.239245,,1,,Europe/Paris,,ONY, +ONY:SA:CTP523,1,"Grands Pâquis",48.678099,6.235607,,1,,Europe/Paris,,ONY, +ONY:SA:CTP531,1,"L'Atelier",48.66885,6.20767,,1,,Europe/Paris,,ONY, +ONY:SA:CTP533,1,"Château de Montaigu",48.66535,6.21638,,1,,Europe/Paris,,ONY, +ONY:SA:CTP534,1,"Sainte-Valdrée",48.66141,6.22224,,1,,Europe/Paris,,ONY, +ONY:SA:CTP535,1,"Cartonneries",48.658679,6.224465,,1,,Europe/Paris,,ONY, +ONY:SA:CTP537,1,"Laneuveville Piscine",48.65914,6.22773,,1,,Europe/Paris,,ONY, +ONY:SA:CTP538,1,"Laneuveville Mairie",48.656443,6.231107,,1,,Europe/Paris,,ONY, +ONY:SA:CTP539,1,"Leclerc",48.6544,6.232376,,1,,Europe/Paris,,ONY, +ONY:SA:CTP540,1,"Transformateur",48.65287,6.233304,,1,,Europe/Paris,,ONY, +ONY:SA:CTP541,1,"Gérardcourt",48.649271,6.232511,,1,,Europe/Paris,,ONY, +ONY:SA:CTP542,1,"Huit Mai",48.650762,6.229153,,1,,Europe/Paris,,ONY, +ONY:SA:CTP55,1,"Joseph Laurent",48.668416,6.161751,,1,,Europe/Paris,,ONY, +ONY:SA:CTP550,1,"Pascal",48.618272,6.177628,,1,,Europe/Paris,,ONY, +ONY:SA:CTP555,1,"Grignard",48.615342,6.188138,,1,,Europe/Paris,,ONY, +ONY:SA:CTP556,1,"Lavoisier",48.615698,6.182882,,1,,Europe/Paris,,ONY, +ONY:SA:CTP557,1,"Mermoz",48.65486,6.186083,,1,,Europe/Paris,,ONY, +ONY:SA:CTP558,1,"Barthou",48.672622,6.184845,,1,,Europe/Paris,,ONY, +ONY:SA:CTP56,1,"Paul Muller",48.670428,6.157705,,1,,Europe/Paris,,ONY, +ONY:SA:CTP565,1,"Morvan",48.650236,6.14843,,1,,Europe/Paris,,ONY, +ONY:SA:CTP57,1,"Villers Mairie",48.67216,6.154819,,1,,Europe/Paris,,ONY, +ONY:SA:CTP577,1,"Campus Brabois - Ecoles d'Ingénieurs",48.650969,6.14667,,1,,Europe/Paris,,ONY, +ONY:SA:CTP578,1,"Campus Brabois - Faculté de Médecine",48.651152,6.141427,,1,,Europe/Paris,,ONY, +ONY:SA:CTP579,1,"La Champelle",48.65372,6.135307,,1,,Europe/Paris,,ONY, +ONY:SA:CTP58,1,"Saint-Sébastien",48.675154,6.151829,,1,,Europe/Paris,,ONY, +ONY:SA:CTP580,1,"Forêt de la Reine",48.655379,6.133259,,1,,Europe/Paris,,ONY, +ONY:SA:CTP582,1,"Jean Moulin",48.69449,6.211247,,1,,Europe/Paris,,ONY, +ONY:SA:CTP583,1,"Varoquaux",48.697357,6.215415,,1,,Europe/Paris,,ONY, +ONY:SA:CTP584,1,"Pont de pierre",48.700119,6.214565,,1,,Europe/Paris,,ONY, +ONY:SA:CTP6,1,"Le Reclus",48.6625,6.162039,,1,,Europe/Paris,,ONY, +ONY:SA:CTP60,1,"Castelnau",48.676711,6.154768,,1,,Europe/Paris,,ONY, +ONY:SA:CTP601,1,"Centre Pénitentiaire",48.705537,6.151794,,1,,Europe/Paris,,ONY, +ONY:SA:CTP603,1,"Majorelle",48.701587,6.144063,,1,,Europe/Paris,,ONY, +ONY:SA:CTP604,1,"Nancy Pôle de santé",48.703597,6.142026,,1,,Europe/Paris,,ONY, +ONY:SA:CTP607,1,"Semoir",48.70972,6.26432,,1,,Europe/Paris,,ONY, +ONY:SA:CTP608,1,"Donon",48.714851,6.269153,,1,,Europe/Paris,,ONY, +ONY:SA:CTP619,1,"Joli Coeur",48.702426,6.174425,,1,,Europe/Paris,,ONY, +ONY:SA:CTP620,1,"Ecole",48.683331,6.155507,,1,,Europe/Paris,,ONY, +ONY:SA:CTP625,1,"Air Lorraine",48.657186,6.135472,,1,,Europe/Paris,,ONY, +ONY:SA:CTP627,1,"Angleterre",48.65905,6.180945,,1,,Europe/Paris,,ONY, +ONY:SA:CTP628,1,"Essey Point Central",48.705178,6.222131,,1,,Europe/Paris,,ONY, +ONY:SA:CTP629,1,"Gare Saint-Léon",48.688287,6.173049,,1,,Europe/Paris,,ONY, +ONY:SA:CTP63,1,"Foch",48.678046,6.155584,,1,,Europe/Paris,,ONY, +ONY:SA:CTP633,1,"Esplanade",48.688132,6.200056,,1,,Europe/Paris,,ONY, +ONY:SA:CTP635,1,"Les Aulnes",48.705575,6.156024,,1,,Europe/Paris,,ONY, +ONY:SA:CTP636,1,"Nancy Tamaris",48.703504,6.15519,,1,,Europe/Paris,,ONY, +ONY:SA:CTP638,1,"Fribourg",48.65771,6.175237,,1,,Europe/Paris,,ONY, +ONY:SA:CTP64,1,"Europe",48.680046,6.151365,,1,,Europe/Paris,,ONY, +ONY:SA:CTP641,1,"Ornain",48.696059,6.122838,,1,,Europe/Paris,,ONY, +ONY:SA:CTP643,1,"Pie X",48.704375,6.227323,,1,,Europe/Paris,,ONY, +ONY:SA:CTP655,1,"Maréville",48.682674,6.148976,,1,,Europe/Paris,,ONY, +ONY:SA:CTP657,1,"Les Mûriers",48.65015,6.183705,,1,,Europe/Paris,,ONY, +ONY:SA:CTP66,1,"Laxou Provinces",48.679683,6.148083,,1,,Europe/Paris,,ONY, +ONY:SA:CTP660,1,"Messier",48.689488,6.160139,,1,,Europe/Paris,,ONY, +ONY:SA:CTP663,1,"Chartreuse",48.661842,6.247855,,1,,Europe/Paris,,ONY, +ONY:SA:CTP665,1,"Foyer",48.670087,6.188043,,1,,Europe/Paris,,ONY, +ONY:SA:CTP666,1,"Houdemont Gare",48.644954,6.182,,1,,Europe/Paris,,ONY, +ONY:SA:CTP668,1,"ARTEM",48.673296,6.171653,,1,,Europe/Paris,,ONY, +ONY:SA:CTP669,1,"Jarville Gare",48.66982,6.202049,,1,,Europe/Paris,,ONY, +ONY:SA:CTP67,1,"Ville d'Avray",48.679364,6.144503,,1,,Europe/Paris,,ONY, +ONY:SA:CTP673,1,"Pasteur",48.614988,6.181237,,1,,Europe/Paris,,ONY, +ONY:SA:CTP674,1,"Descartes",48.613117,6.18221,,1,,Europe/Paris,,ONY, +ONY:SA:CTP675,1,"Ader",48.61258,6.184951,,1,,Europe/Paris,,ONY, +ONY:SA:CTP678,1,"Curie",48.61683,6.181121,,1,,Europe/Paris,,ONY, +ONY:SA:CTP68,1,"Croix Saint-Claude",48.689305,6.131945,,1,,Europe/Paris,,ONY, +ONY:SA:CTP681,1,"Pichon",48.68356,6.18534,,1,,Europe/Paris,,ONY, +ONY:SA:CTP682,1,"Saint-Jacques II",48.702508,6.130998,,1,,Europe/Paris,,ONY, +ONY:SA:CTP683,1,"Maxéville Patton",48.70781,6.16213,,1,,Europe/Paris,,ONY, +ONY:SA:CTP685,1,"Laxou V. Prouvé",48.677212,6.144798,,1,,Europe/Paris,,ONY, +ONY:SA:CTP686,1,"Vic",48.68042,6.19473,,1,,Europe/Paris,,ONY, +ONY:SA:CTP687,1,"Achille Lévy",48.67824,6.19783,,1,,Europe/Paris,,ONY, +ONY:SA:CTP688,1,"Jarville République",48.670715,6.206182,,1,,Europe/Paris,,ONY, +ONY:SA:CTP689,1,"Gabriel Fauré",48.66641,6.21339,,1,,Europe/Paris,,ONY, +ONY:SA:CTP69,1,"Sapinière",48.690907,6.12828,,1,,Europe/Paris,,ONY, +ONY:SA:CTP690,1,"Laneuveville Centre",48.65918,6.23004,,1,,Europe/Paris,,ONY, +ONY:SA:CTP697,1,"Varsovie",48.683627,6.183903,,1,,Europe/Paris,,ONY, +ONY:SA:CTP7,1,"Callot",48.666096,6.16605,,1,,Europe/Paris,,ONY, +ONY:SA:CTP70,1,"Vair",48.695675,6.124307,,1,,Europe/Paris,,ONY, +ONY:SA:CTP700,1,"Gare Thiers - Poirel",48.690381,6.175747,,1,,Europe/Paris,,ONY, +ONY:SA:CTP701,1,"Jean Jaurès",48.692601,6.212723,,1,,Europe/Paris,,ONY, +ONY:SA:CTP702,1,"Saulxures Mairie",48.687631,6.245225,,1,,Europe/Paris,,ONY, +ONY:SA:CTP703,1,"Vervaux",48.697395,6.254661,,1,,Europe/Paris,,ONY, +ONY:SA:CTP704,1,"Blés d'Or",48.705473,6.258897,,1,,Europe/Paris,,ONY, +ONY:SA:CTP705,1,"Frocourt",48.637352,6.182874,,1,,Europe/Paris,,ONY, +ONY:SA:CTP707,1,"Essey Emile Gallé",48.700127,6.220908,,1,,Europe/Paris,,ONY, +ONY:SA:CTP710,1,"Boulevard de l'Europe",48.65769,6.17775,,1,,Europe/Paris,,ONY, +ONY:SA:CTP712,1,"Charles de Foucauld",48.70254,6.180667,,1,,Europe/Paris,,ONY, +ONY:SA:CTP72,1,"Moselotte",48.697399,6.125089,,1,,Europe/Paris,,ONY, +ONY:SA:CTP723,1,"Fraternité",48.693931,6.213806,,1,,Europe/Paris,,ONY, +ONY:SA:CTP730,1,"Pré la Dame",48.65257,6.207493,,1,,Europe/Paris,,ONY, +ONY:SA:CTP732,1,"Collège Montaigu",48.657689,6.209697,,1,,Europe/Paris,,ONY, +ONY:SA:CTP734,1,"Parterres Fleuris",48.710154,6.254039,,1,,Europe/Paris,,ONY, +ONY:SA:CTP736,1,"Port Cros",48.653321,6.203031,,1,,Europe/Paris,,ONY, +ONY:SA:CTP74,1,"Madine",48.699,6.12767,,1,,Europe/Paris,,ONY, +ONY:SA:CTP740,1,"Renaissance",48.70462,6.2489,,1,,Europe/Paris,,ONY, +ONY:SA:CTP742,1,"Robert Damery",48.658845,6.215935,,1,,Europe/Paris,,ONY, +ONY:SA:CTP748,1,"Sablonnière",48.654352,6.225163,,1,,Europe/Paris,,ONY, +ONY:SA:CTP750,1,"Saint-Sébastien",48.68825,6.17944,,1,,Europe/Paris,,ONY, +ONY:SA:CTP751,1,"Seichamps - Mairie",48.714188,6.260721,,1,,Europe/Paris,,ONY, +ONY:SA:CTP753,1,"Stade Darnys",48.706786,6.148611,,1,,Europe/Paris,,ONY, +ONY:SA:CTP755,1,"Tronc qui fume",48.70896,6.24379,,1,,Europe/Paris,,ONY, +ONY:SA:CTP76,1,"Laxou Champ-le-Boeuf",48.6981,6.12426,,1,,Europe/Paris,,ONY, +ONY:SA:CTP764,1,"Zénith",48.71011,6.147965,,1,,Europe/Paris,,ONY, +ONY:SA:CTP765,1,"Cheverny",48.7134,6.155366,,1,,Europe/Paris,,ONY, +ONY:SA:CTP767,1,"Place Alexandre 1er",48.68545,6.18168,,1,,Europe/Paris,,ONY, +ONY:SA:CTP768,1,"Fournier",48.654227,6.176829,,1,,Europe/Paris,,ONY, +ONY:SA:CTP769,1,"Jéricho",48.70666,6.189897,,1,,Europe/Paris,,ONY, +ONY:SA:CTP77,1,"Observatoire",48.68948,6.13524,,1,,Europe/Paris,,ONY, +ONY:SA:CTP770,1,"Libremont",48.71007,6.197626,,1,,Europe/Paris,,ONY, +ONY:SA:CTP771,1,"Jolimont",48.711363,6.204026,,1,,Europe/Paris,,ONY, +ONY:SA:CTP774,1,"Bertin",48.679269,6.161435,,1,,Europe/Paris,,ONY, +ONY:SA:CTP775,1,"Parc de la Pépinière",48.699931,6.183465,,1,,Europe/Paris,,ONY, +ONY:SA:CTP776,1,"Citadelle",48.700363,6.177349,,1,,Europe/Paris,,ONY, +ONY:SA:CTP778,1,"Lion d'Or",48.709721,6.180399,,1,,Europe/Paris,,ONY, +ONY:SA:CTP779,1,"Maria Deraismes",48.680606,6.223836,,1,,Europe/Paris,,ONY, +ONY:SA:CTP78,1,"Beauregard",48.690508,6.137828,,1,,Europe/Paris,,ONY, +ONY:SA:CTP782,1,"Essey Ecole",48.706292,6.219355,,1,,Europe/Paris,,ONY, +ONY:SA:CTP783,1,"La Bure",48.715519,6.222398,,1,,Europe/Paris,,ONY, +ONY:SA:CTP789,1,"Résidences Vertes",48.702432,6.250452,,1,,Europe/Paris,,ONY, +ONY:SA:CTP79,1,"Vologne",48.697125,6.137653,,1,,Europe/Paris,,ONY, +ONY:SA:CTP791,1,"Houdemont Les Egrez",48.638542,6.180406,,1,,Europe/Paris,,ONY, +ONY:SA:CTP792,1,"Vezouze",48.695093,6.131861,,1,,Europe/Paris,,ONY, +ONY:SA:CTP793,1,"Parc des Expositions",48.667079,6.193081,,1,,Europe/Paris,,ONY, +ONY:SA:CTP794,1,"La Malgrange",48.665706,6.197004,,1,,Europe/Paris,,ONY, +ONY:SA:CTP795,1,"Victoire Daubié",48.680131,6.226438,,1,,Europe/Paris,,ONY, +ONY:SA:CTP796,1,"Solvay",48.717028,6.166649,,1,,Europe/Paris,,ONY, +ONY:SA:CTP797,1,"CPN",48.678618,6.142324,,1,,Europe/Paris,,ONY, +ONY:SA:CTP798,1,"Grands Prés",48.714576,6.25085,,1,,Europe/Paris,,ONY, +ONY:SA:CTP799,1,"Grives",48.71058,6.220881,,1,,Europe/Paris,,ONY, +ONY:SA:CTP8,1,"Vélodrome",48.666833,6.1669,,1,,Europe/Paris,,ONY, +ONY:SA:CTP80,1,"Palais des Sports - Gentilly",48.69977,6.14058,,1,,Europe/Paris,,ONY, +ONY:SA:CTP800,1,"Marie Marvingt",48.61675,6.160014,,1,,Europe/Paris,,ONY, +ONY:SA:CTP801,1,"Genobois",48.617601,6.166239,,1,,Europe/Paris,,ONY, +ONY:SA:CTP802,1,"Améthyste",48.716166,6.167527,,1,,Europe/Paris,,ONY, +ONY:SA:CTP803,1,"Malzéville Margeville",48.719507,6.177142,,1,,Europe/Paris,,ONY, +ONY:SA:CTP804,1,"Le Bourgarel",48.72323,6.176558,,1,,Europe/Paris,,ONY, +ONY:SA:CTP805,1,"Ludres Marvingt",48.619318,6.165614,,1,,Europe/Paris,,ONY, +ONY:SA:CTP81,1,"Cliniques",48.70018,6.14407,,1,,Europe/Paris,,ONY, +ONY:SA:CTP82,1,"Les Ombelles",48.70094,6.14732,,1,,Europe/Paris,,ONY, +ONY:SA:CTP83,1,"Cèdre Bleu",48.70229,6.15216,,1,,Europe/Paris,,ONY, +ONY:SA:CTP86,1,"Tamaris",48.70318,6.15516,,1,,Europe/Paris,,ONY, +ONY:SA:CTP88,1,"Les Egrez",48.638769,6.180791,,1,,Europe/Paris,,ONY, +ONY:SA:CTP89,1,"Poncel",48.636692,6.178938,,1,,Europe/Paris,,ONY, +ONY:SA:CTP9,1,"Montet Octroi",48.668397,6.168653,,1,,Europe/Paris,,ONY, +ONY:SA:CTP90,1,"Rouzé",48.63858,6.177628,,1,,Europe/Paris,,ONY, +ONY:SA:CTP92,1,"Mancés",48.642198,6.17721,,1,,Europe/Paris,,ONY, +ONY:SA:CTP93,1,"Montauban",48.644318,6.176518,,1,,Europe/Paris,,ONY, +ONY:SA:CTP94,1,"Houdemont Mairie",48.645287,6.175293,,1,,Europe/Paris,,ONY, +ONY:SA:CTP95,1,"La Ronchère",48.650159,6.176517,,1,,Europe/Paris,,ONY, +ONY:SA:CTP96,1,"Haut-de-Penoy",48.652174,6.175941,,1,,Europe/Paris,,ONY, +ONY:SA:CTP97,1,"Rimbaud",48.654757,6.176516,,1,,Europe/Paris,,ONY, +ONY:SA:CTP98,1,"Crévic",48.656501,6.175706,,1,,Europe/Paris,,ONY, +ORL:SA:CTP27000001,1,"Gare",49.641725,2.563091,,1,,Europe/Paris,,ORL, +ORL:SA:CTP27000003,1,"Place Foch",49.645819,2.572791,,1,,Europe/Paris,,ORL, +ORL:SA:CTP27000004,1,"Lycée Jean Racine",49.653056,2.577222,,1,,Europe/Paris,,ORL, +ORL:SA:CTP27000012,1,"Place du Centre",49.678055,2.764833,,1,,Europe/Paris,,ORL, +ORL:SA:CTP27000016,1,"Centre",49.698,2.792972,,1,,Europe/Paris,,ORL, +ORL:SA:CTP27000018,1,"Acienne Gare",49.707834,2.789139,,1,,Europe/Paris,,ORL, +ORL:SA:CTP27000022,1,"Collège Louise Michel",49.709806,2.785861,,1,,Europe/Paris,,ORL, +ORL:SA:CTP27000032,1,"Gare",49.807705,2.801337,,1,,Europe/Paris,,ORL, +ORL:SA:CTP27000040,1,"VILLERS-CARBONNEL Eglise",49.87492,2.894624,,1,,Europe/Paris,,ORL, +ORL:SA:CTP27000042,1,"Rue de la gare",49.891031,2.923592,,1,,Europe/Paris,,ORL, +ORL:SA:CTP27000047,1,"Centre",49.930288,2.936225,,1,,Europe/Paris,,ORL, +ORL:SA:CTP27000059,1,"Salle des Fêtes",49.944405,3.071054,,1,,Europe/Paris,,ORL, +ORL:SA:CTP27000061,1,"Poste",49.945758,3.100285,,1,,Europe/Paris,,ORL, +ORL:SA:CTP27000064,1,"Place Faidherbe",49.646983,2.571587,,1,,Europe/Paris,,ORL, +ORL:SA:CTP27000066,1,"Centre",49.626955,2.555947,,1,,Europe/Paris,,ORL, +ORL:SA:CTP27000068,1,"Eglise",49.609062,2.528442,,1,,Europe/Paris,,ORL, +ORL:SA:CTP27000070,1,"Rue de Royaucourt",49.603171,2.553598,,1,,Europe/Paris,,ORL, +ORL:SA:CTP27000072,1,"Centre",49.588374,2.552635,,1,,Europe/Paris,,ORL, +ORL:SA:CTP27000074,1,"Monument aux morts",49.594245,2.535729,,1,,Europe/Paris,,ORL, +ORL:SA:CTP27000076,1,"FERRIERES Carrefour La croix",49.589718,2.515727,,1,,Europe/Paris,,ORL, +ORL:SA:CTP27000078,1,"CREVECOEUR LE PETIT Mairie",49.577702,2.503636,,1,,Europe/Paris,,ORL, +ORL:SA:CTP27000084,1,"MONTIGNY D938/G Leclerc",49.551895,2.507749,,1,,Europe/Paris,,ORL, +ORL:SA:CTP27000090,1,"D117",49.527235,2.440371,,1,,Europe/Paris,,ORL, +ORL:SA:CTP27000094,1,"Gare Routière",49.426819,2.084747,,1,,Europe/Paris,,ORL, +ORL:SA:CTP27000098,1,"Brière Gare SNCF",49.428615,2.089137,,1,,Europe/Paris,,ORL, +ORL:SA:CTP27000099,1,"Felix Faure",49.434894,2.089087,,1,,Europe/Paris,,ORL, +ORL:SA:CTP27000100,1,"Centre-Ville",49.434413,2.087844,,1,,Europe/Paris,,ORL, +ORL:SA:CTP27000101,1,"Parc Marcel Dassault",49.450182,2.09754,,1,,Europe/Paris,,ORL, +ORL:SA:CTP27000105,1,"R.N",49.566944,2.221944,,1,,Europe/Paris,,ORL, +ORL:SA:CTP27000107,1,"R.N 1",49.63139,2.291667,,1,,Europe/Paris,,ORL, +ORL:SA:CTP27000109,1,"C.H.U Amiens",49.877052,2.25596,,1,,Europe/Paris,,ORL, +ORL:SA:CTP27000111,1,"Campus",49.874165,2.265001,,1,,Europe/Paris,,ORL, +ORL:SA:CTP27000113,1,"Cité scolaire",49.879073,2.297837,,1,,Europe/Paris,,ORL, +ORL:SA:CTP27000115,1,"Gare Routière",49.891206,2.308162,,1,,Europe/Paris,,ORL, +ORL:SA:CTP27000128,1,"Gare St-Roch",49.893793,2.284254,,1,,Europe/Paris,,ORL, +ORL:SA:CTP27000130,1,"DANCOURT POPINCOURT D930/D133",49.672918,2.743555,,1,,Europe/Paris,,ORL, +ORL:SA:CTP27000131,1,"Route de Paris",49.694166,2.790778,,1,,Europe/Paris,,ORL, +ORL:SA:CTP27000132,1,"Salengro",49.710313,2.790317,,1,,Europe/Paris,,ORL, +ORL:SA:CTP27000133,1,"SAINT MARD Centre",49.693185,2.762944,,1,,Europe/Paris,,ORL, +ORL:SA:CTP27000134,1,"FRESNOY-LES-ROYE Mairie",49.737605,2.774732,,1,,Europe/Paris,,ORL, +ORL:SA:CTP27000135,1,"Mairie",49.768348,2.788084,,1,,Europe/Paris,,ORL, +ORL:SA:CTP27000136,1,"D132/D39",49.793199,2.789289,,1,,Europe/Paris,,ORL, +ORL:SA:CTP27000137,1,"Jean Jaures",49.818333,2.799722,,1,,Europe/Paris,,ORL, +ORL:SA:CTP27000138,1,"MARCHELEPOT Centre",49.834715,2.871508,,1,,Europe/Paris,,ORL, +ORL:SA:CTP27000139,1,"FRESNE MAZENCOURT Route Nationale",49.850056,2.876165,,1,,Europe/Paris,,ORL, +ORL:SA:CTP27000140,1,"Chapelette Route de Paris",49.912657,2.931295,,1,,Europe/Paris,,ORL, +ORL:SA:CTP27000141,1,"Centre Ville Saint Sauveur",49.930287,2.936408,,1,,Europe/Paris,,ORL, +ORL:SA:CTP27000142,1,"Lycée Mendes France",49.935564,2.940141,,1,,Europe/Paris,,ORL, +ORL:SA:CTP27000143,1,"Place William Poivre",49.919558,2.971995,,1,,Europe/Paris,,ORL, +ORL:SA:CTP27000144,1,"Mairie",49.912663,3.012668,,1,,Europe/Paris,,ORL, +ORL:SA:CTP27000145,1,"Boucly",49.935195,3.050084,,1,,Europe/Paris,,ORL, +ORL:SA:CTP27000146,1,"TINCOURT BOUCLY Centre",49.942519,3.050006,,1,,Europe/Paris,,ORL, +ORL:SA:CTP27000147,1,"MAIGNELAY Centre",49.552778,2.519723,,1,,Europe/Paris,,ORL, +ORL:SA:CTP27000148,1,"MAIGNELAY College",49.550852,2.514635,,1,,Europe/Paris,,ORL, +ORL:SA:CTP27000149,1,"SAINS MORAINVILLERS Centre",49.573316,2.47223,,1,,Europe/Paris,,ORL, +ORL:SA:CTP27000150,1,"BRUNVILLIERS la MOTTE D23/D564",49.549464,2.452205,,1,,Europe/Paris,,ORL, +ORL:SA:CTP27000151,1,"Gymnase (Collège Saint Vincent)",49.646392,2.569391,,1,,Europe/Paris,,ORL, +ORM:SA:CTP28000001,1,"MAIRIE",49.305829,1.612217,,1,,Europe/Paris,,ORM, +ORM:SA:CTP28000004,1,"CIMETIÈRE",49.304165,1.623891,,1,,Europe/Paris,,ORM, +ORM:SA:CTP28000006,1,"PLACE DE LA LIBERATION",49.293435,1.696774,,1,,Europe/Paris,,ORM, +ORM:SA:CTP28000008,1,"POSTE",49.294725,1.704451,,1,,Europe/Paris,,ORM, +ORM:SA:CTP28000010,1,"LES RICQUETS",49.288615,1.716393,,1,,Europe/Paris,,ORM, +ORM:SA:CTP28000012,1,"LES BOSQUETS",49.283345,1.734777,,1,,Europe/Paris,,ORM, +ORM:SA:CTP28000014,1,"HOPITAL",49.279447,1.760832,,1,,Europe/Paris,,ORM, +ORM:SA:CTP28000016,1,"PLACE BLANMONT",49.279882,1.772774,,1,,Europe/Paris,,ORM, +ORM:SA:CTP28000018,1,"LES REMPARTS",49.283056,1.779167,,1,,Europe/Paris,,ORM, +ORM:SA:CTP28000022,1,"AVENUE FORCINAL",49.284996,1.790833,,1,,Europe/Paris,,ORM, +ORM:SA:CTP28000024,1,"CENTRE",49.283915,1.822624,,1,,Europe/Paris,,ORM, +ORM:SA:CTP28000026,1,"GRAND CERF",49.264894,1.882629,,1,,Europe/Paris,,ORM, +ORM:SA:CTP28000028,1,"RUE HOTEL DE VILLE",49.262736,1.882086,,1,,Europe/Paris,,ORM, +ORM:SA:CTP28000030,1,"COLLEGE ST EX",49.262134,1.875062,,1,,Europe/Paris,,ORM, +ORM:SA:CTP28000032,1,"CENTRE",49.190432,1.881025,,1,,Europe/Paris,,ORM, +ORM:SA:CTP28000034,1,"SAINT CHRISTOPHE RER",49.049863,2.034317,,1,,Europe/Paris,,ORM, +ORM:SA:CTP28000036,1,"LE VERGER",49.050471,2.04372,,1,,Europe/Paris,,ORM, +ORM:SA:CTP28000038,1,"MARJOBERT",49.04115,2.07357,,1,,Europe/Paris,,ORM, +ORM:SA:CTP28000040,1,"PREFECTURE RER",49.037173,2.079263,,1,,Europe/Paris,,ORM, +ORM:SA:CTP28000041,1,"PREFECTURE RER",49.035175,2.082075,,1,,Europe/Paris,,ORM, +ORQ:SA:CTP29000003,1,"Valois",49.252109,2.483492,,1,,Europe/Paris,,ORQ, +ORQ:SA:CTP29000005,1,"place des arènes",49.206909,2.577187,,1,,Europe/Paris,,ORQ, +ORQ:SA:CTP29000009,1,"ROISSY-POLE Gare Routière",49.010673,2.55935,,1,,Europe/Paris,,ORQ, +ORQ:SA:CTP29000011,1,"Base Aérienne",49.243903,2.506043,,1,,Europe/Paris,,ORQ, +ORQ:SA:CTP29000013,1,"ROISSY",49.010803,2.560517,,1,,Europe/Paris,,ORQ, +ORQ:SA:CTP29000015,1,"NANTEUIL LE HAUDOUIN",49.142503,2.794771,,1,,Europe/Paris,,ORQ, +ORQ:SA:CTP29000017,1,"LAGNY-LE-SEC",49.095697,2.739651,,1,,Europe/Paris,,ORQ, +ORQ:SA:CTP29000019,1,"CREPY EN VALOIS GARE SNCF",49.231408,2.886733,,1,,Europe/Paris,,ORQ, +OSP:SA:CTP19000001,1,"SAINT LEU D'ESSERENT Val",49.220016,2.416658,,1,,Europe/Paris,,OSP, +OSP:SA:CTP19000003,1,"SAINT LEU D'ESSERENT Guy Mocquet",49.224032,2.417419,,1,,Europe/Paris,,OSP, +OSP:SA:CTP19000007,1,"SAINT LEU D'ESSERENT Gare SNCF",49.213887,2.418335,,1,,Europe/Paris,,OSP, +OSP:SA:CTP19000008,1,"SAINT MAXIMIN Croizat",49.221096,2.438332,,1,,Europe/Paris,,OSP, +OSP:SA:CTP19000009,1,"SAINT MAXIMIN Mairie",49.222606,2.443226,,1,,Europe/Paris,,OSP, +OSP:SA:CTP19000010,1,"SAINT MAXIMIN Dewaele",49.221105,2.453268,,1,,Europe/Paris,,OSP, +OSP:SA:CTP19000014,1,"SAINT LEU D'ESSERENT Collège Jules Vallés",49.218459,2.405971,,1,,Europe/Paris,,OSP, +OSP:SA:CTP19000016,1,"SAINT LEU D'ESSERENT La muette",49.216111,2.410837,,1,,Europe/Paris,,OSP, +OSP:SA:CTP19000017,1,"SAINT LEU D'ESSERENT Place de la République",49.215945,2.418599,,1,,Europe/Paris,,OSP, +OSP:SA:CTP19000019,1,"SAINT LEU D'ESSERENT Art et Culture",49.217119,2.423141,,1,,Europe/Paris,,OSP, +OSP:SA:CTP19000021,1,"SAINT LEU D'ESSERENT Petit Therain",49.243986,2.440586,,1,,Europe/Paris,,OSP, +OSP:SA:CTP19000022,1,"THIVERNY Carrière",49.239038,2.438573,,1,,Europe/Paris,,OSP, +OSP:SA:CTP19000023,1,"Grand Marais",49.246165,2.43587,,1,,Europe/Paris,,OSP, +OSP:SA:CTP19000024,1,"Mairie",49.247685,2.433114,,1,,Europe/Paris,,OSP, +OSP:SA:CTP19000025,1,"THIVERNY Gare SNCF",49.250828,2.435206,,1,,Europe/Paris,,OSP, +OSP:SA:CTP19000026,1,"Jean Jaurès",49.255559,2.458521,,1,,Europe/Paris,,OSP, +OSP:SA:CTP19000028,1,"Vieux Moulin",49.223335,2.455469,,1,,Europe/Paris,,OSP, +OSP:SA:CTP19000029,1,"Révolution française (C.Cial)",49.234166,2.468336,,1,,Europe/Paris,,OSP, +OSP:SA:CTP19000030,1,"Marseillaise",49.233177,2.461213,,1,,Europe/Paris,,OSP, +OSP:SA:CTP19000031,1,"Fraternité",49.238383,2.465767,,1,,Europe/Paris,,OSP, +OSP:SA:CTP19000032,1,"Montagnards",49.238612,2.469719,,1,,Europe/Paris,,OSP, +OSP:SA:CTP19000033,1,"Porte de Creil",49.243887,2.468607,,1,,Europe/Paris,,OSP, +OSP:SA:CTP19000034,1,"Mairie",49.30712,2.397722,,1,,Europe/Paris,,OSP, +OSP:SA:CTP19000035,1,"Flandre",49.294,2.38599,,1,,Europe/Paris,,OSP, +OSP:SA:CTP19000036,1,"Lanterne",49.260555,2.37834,,1,,Europe/Paris,,OSP, +OSP:SA:CTP19000037,1,"Mairie",49.260431,2.374057,,1,,Europe/Paris,,OSP, +OSP:SA:CTP19000038,1,"Salengro",49.263415,2.4103,,1,,Europe/Paris,,OSP, +OSP:SA:CTP19000039,1,"Parvillée",49.25667,2.40583,,1,,Europe/Paris,,OSP, +OSP:SA:CTP19000040,1,"Ginistri - Centre Cial Leclerc",49.25303,2.43484,,1,,Europe/Paris,,OSP, +OSP:SA:CTP19000041,1,"Victor Hugo",49.260277,2.438477,,1,,Europe/Paris,,OSP, +OSP:SA:CTP19000046,1,"Jean Cassé",49.249168,2.433062,,1,,Europe/Paris,,OSP, +OSP:SA:CTP19000049,1,"Commune de Paris",49.265553,2.394172,,1,,Europe/Paris,,OSP, +OSP:SA:CTP19000053,1,"Guesdière",49.216948,2.422784,,1,,Europe/Paris,,OSP, +OSP:SA:CTP19000054,1,"Croix Aude",49.220282,2.421939,,1,,Europe/Paris,,OSP, +OSP:SA:CTP19000055,1,"Salvador Allende",49.215,2.406666,,1,,Europe/Paris,,OSP, +OSP:SA:CTP19000072,1,"Gare SNCF",49.261811,2.468406,,1,,Europe/Paris,,OSP, +OSP:SA:CTP19000074,1,"Abribus",49.265608,2.391015,,1,,Europe/Paris,,OSP, +OSP:SA:CTP19000080,1,"Hôpital",49.247532,2.46299,,1,,Europe/Paris,,OSP, +OSP:SA:CTP19000083,1,"Séguin",49.255501,2.421228,,1,,Europe/Paris,,OSP, +OSP:SA:CTP19000087,1,"Mairie - Place de la Mairie",49.256569,2.434819,,1,,Europe/Paris,,OSP, +OSP:SA:CTP19000088,1,"Mairie - Guy Môquet",49.255456,2.434323,,1,,Europe/Paris,,OSP, +OSP:SA:CTP19000090,1,"Gare SNCF",49.251636,2.436035,,1,,Europe/Paris,,OSP, +OST:SA:CTP23NOV_01,1,"23 Novembre",48.533176,7.706438,,1,,Europe/Paris,,OST, +OST:SA:CTPABATT_01,1,"Abattoirs",48.557093,7.650669,,1,,Europe/Paris,,OST, +OST:SA:CTPABBAT_01,1,"Abbatiale",48.491551,7.715934,,1,,Europe/Paris,,OST, +OST:SA:CTPABEPE_01,1,"Abbé de l'Epée",48.545452,7.760698,,1,,Europe/Paris,,OST, +OST:SA:CTPABLEM_01,1,"Abbé Lemire",48.578203,7.724582,,1,,Europe/Paris,,OST, +OST:SA:CTPACACI_01,1,"Acacias",48.515908,7.711009,,1,,Europe/Paris,,OST, +OST:SA:CTPAEROP_02,1,"Aeroparc",48.54182,7.651548,,1,,Europe/Paris,,OST, +OST:SA:CTPALAIG_01,1,"A l'Aigle",48.557102,7.645975,,1,,Europe/Paris,,OST, +OST:SA:CTPALEUR_01,1,"Allée de l'Euro",48.604529,7.705552,,1,,Europe/Paris,,OST, +OST:SA:CTPALOUE_01,1,"Alouettes",48.642839,7.753812,,1,,Europe/Paris,,OST, +OST:SA:CTPALOUT_01,1,"Lingolsheim Alouettes",48.551291,7.692661,,1,,Europe/Paris,,OST, +OST:SA:CTPALOUT_03,1,"Lingolsheim Alouettes L.15",48.551607,7.692828,,1,,Europe/Paris,,OST, +OST:SA:CTPALOUT_04,1,"Lingolsheim Alouettes L12/22",48.551524,7.692538,,1,,Europe/Paris,,OST, +OST:SA:CTPALSCH_01,1,"Albert Schweitzer",48.491422,7.687577,,1,,Europe/Paris,,OST, +OST:SA:CTPALWIN_01,1,"Alt Winmärik-Vieux Marché aux Vins",48.583449,7.740324,,1,,Europe/Paris,,OST, +OST:SA:CTPANDOU_01,1,"Ancienne Douane",48.579683,7.749871,,1,,Europe/Paris,,OST, +OST:SA:CTPANEMO_01,1,"Anémones",48.643182,7.722844,,1,,Europe/Paris,,OST, +OST:SA:CTPANFOR_01,1,"Ancienne Forge",48.531486,7.63135,,1,,Europe/Paris,,OST, +OST:SA:CTPANGLE_01,1,"Angle",48.611576,7.788651,,1,,Europe/Paris,,OST, +OST:SA:CTPANKAR_03,1,"Ankara",48.575391,7.771443,,1,,Europe/Paris,,OST, +OST:SA:CTPANSYN_01,1,"Ancienne Synagogue / Les Halles",48.585329,7.742377,,1,,Europe/Paris,,OST, +OST:SA:CTPARANS_01,1,"Artisans",48.660473,7.721051,,1,,Europe/Paris,,OST, +OST:SA:CTPARBRI_03,1,"Aristide Briand",48.56827,7.776242,,1,,Europe/Paris,,OST, +OST:SA:CTPARBRI_12,1,"Aristide briand",48.568237,7.776177,,1,,Europe/Paris,,OST, +OST:SA:CTPATHEN_01,1,"Athènes",48.60818,7.709767,,1,,Europe/Paris,,OST, +OST:SA:CTPAULIZ_01,1,"Austerlitz",48.578071,7.754061,,1,,Europe/Paris,,OST, +OST:SA:CTPAUTA4_03,1,"Autoroute A4 fictif SAE (garage Toyota)",48.644403,7.732478,,1,,Europe/Paris,,OST, +OST:SA:CTPAUTA4_06,1,"Autoroute A4 fictif SAE (dir Halles)",48.644403,7.732478,,1,,Europe/Paris,,OST, +OST:SA:CTPAUTO4_05,1,"Autoroute A4 fictif SAE (Bretelle)",48.644403,7.732478,,1,,Europe/Paris,,OST, +OST:SA:CTPAUTO4_06,1,"Autoroute A4 fictif SAE (Bretelle Dir Halles)",48.644403,7.732478,,1,,Europe/Paris,,OST, +OST:SA:CTPAVENI_01,1,"Avenir",48.565031,7.698712,,1,,Europe/Paris,,OST, +OST:SA:CTPBAGGE_01,1,"Baggersee",48.545164,7.737916,,1,,Europe/Paris,,OST, +OST:SA:CTPBAILL_01,1,"Baillis",48.606999,7.779919,,1,,Europe/Paris,,OST, +OST:SA:CTPBALEE_01,1,"Bâle",48.537169,7.709897,,1,,Europe/Paris,,OST, +OST:SA:CTPBALLA_01,1,"Ballastière",48.506777,7.717167,,1,,Europe/Paris,,OST, +OST:SA:CTPBANLI_01,1,"Banlieue",48.600985,7.697851,,1,,Europe/Paris,,OST, +OST:SA:CTPBARRR_01,1,"Barr",48.601866,7.745233,,1,,Europe/Paris,,OST, +OST:SA:CTPBARTI_01,1,"Bartischgut",48.554697,7.739554,,1,,Europe/Paris,,OST, +OST:SA:CTPBELZW_01,1,"Beltzwoerth",48.619291,7.793011,,1,,Europe/Paris,,OST, +OST:SA:CTPBERGE_01,1,"Bergerac",48.554375,7.762509,,1,,Europe/Paris,,OST, +OST:SA:CTPBERLI_01,1,"Berlioz",48.637043,7.70974,,1,,Europe/Paris,,OST, +OST:SA:CTPBERST_01,1,"Berstett",48.600196,7.711793,,1,,Europe/Paris,,OST, +OST:SA:CTPBETHL_01,1,"Bethel",48.611424,7.686581,,1,,Europe/Paris,,OST, +OST:SA:CTPBETHS_01,1,"Bethesda",48.592316,7.761379,,1,,Europe/Paris,,OST, +OST:SA:CTPBITCH_03,1,"Bitche",48.609771,7.753252,,1,,Europe/Paris,,OST, +OST:SA:CTPBLAES_01,1,"Blaesheim",48.566097,7.703393,,1,,Europe/Paris,,OST, +OST:SA:CTPBLOUE_02,1,"Blaesheim Ouest",48.504345,7.600308,,1,,Europe/Paris,,OST, +OST:SA:CTPBOECK_01,1,"Robertsau Boecklin",48.598065,7.778031,,1,,Europe/Paris,,OST, +OST:SA:CTPBOISF_01,1,"Bois Fleuri",48.603368,7.790562,,1,,Europe/Paris,,OST, +OST:SA:CTPBORIE_01,1,"Bohrie",48.550001,7.703202,,1,,Europe/Paris,,OST, +OST:SA:CTPBOROU_01,1,"Boeuf Rouge",48.587084,7.668036,,1,,Europe/Paris,,OST, +OST:SA:CTPBOSCO_01,1,"Bosco",48.581821,7.702862,,1,,Europe/Paris,,OST, +OST:SA:CTPBOUGU_01,1,"Bouguer",48.540396,7.769024,,1,,Europe/Paris,,OST, +OST:SA:CTPBOULO_01,1,"Boulogne",48.539912,7.787929,,1,,Europe/Paris,,OST, +OST:SA:CTPBOURG_01,1,"Bourgogne",48.547836,7.747899,,1,,Europe/Paris,,OST, +OST:SA:CTPBOUVR_01,1,"Bouvreuil",48.634969,7.731315,,1,,Europe/Paris,,OST, +OST:SA:CTPBREME_01,1,"Brême",48.598696,7.790978,,1,,Europe/Paris,,OST, +OST:SA:CTPBROGL_01,1,"Broglie",48.584826,7.749513,,1,,Europe/Paris,,OST, +OST:SA:CTPBRUCH_01,1,"Bruche",48.570085,7.711055,,1,,Europe/Paris,,OST, +OST:SA:CTPBRUNI_01,1,"Brant Université",48.585848,7.761431,,1,,Europe/Paris,,OST, +OST:SA:CTPBRUXE_01,1,"Bruxelles",48.584186,7.77515,,1,,Europe/Paris,,OST, +OST:SA:CTPBRXEL_01,1,"Bruxelles (Marché)",48.584186,7.77515,,1,,Europe/Paris,,OST, +OST:SA:CTPBUGAT_01,1,"Bugatti",48.58941,7.687845,,1,,Europe/Paris,,OST, +OST:SA:CTPBUSSI_01,1,"Bussière",48.621292,7.797872,,1,,Europe/Paris,,OST, +OST:SA:CTPCAHAU_01,1,"Carpe Haute",48.59614,7.788215,,1,,Europe/Paris,,OST, +OST:SA:CTPCAILL_03,1,"Campus d'Illkirch",48.529354,7.732779,,1,,Europe/Paris,,OST, +OST:SA:CTPCAITIR_1,1,"Campus d'Illkirch Tiroir",48.529354,7.732779,,1,,Europe/Paris,,OST, +OST:SA:CTPCAMPI_01,1,"Camping",48.573304,7.718337,,1,,Europe/Paris,,OST, +OST:SA:CTPCANAL_01,1,"Canal",48.678465,7.697228,,1,,Europe/Paris,,OST, +OST:SA:CTPCAPIE_01,1,"Capitainerie",48.576597,7.787845,,1,,Europe/Paris,,OST, +OST:SA:CTPCAPUC_01,1,"Capucins",48.578036,7.704871,,1,,Europe/Paris,,OST, +OST:SA:CTPCATHE_01,1,"Catherine",48.597212,7.704863,,1,,Europe/Paris,,OST, +OST:SA:CTPCERIS_01,1,"Cerisiers",48.534764,7.642884,,1,,Europe/Paris,,OST, +OST:SA:CTPCERVA_01,1,"Cervantès",48.593112,7.698508,,1,,Europe/Paris,,OST, +OST:SA:CTPCESPO_01,1,"Centre Sportif",48.491252,7.683793,,1,,Europe/Paris,,OST, +OST:SA:CTPCETRA_01,1,"Centre de Traumatologie",48.537527,7.728189,,1,,Europe/Paris,,OST, +OST:SA:CTPCHARM_01,1,"Charmille",48.579865,7.717295,,1,,Europe/Paris,,OST, +OST:SA:CTPCHATE_01,1,"Chateaubriand",48.523902,7.721365,,1,,Europe/Paris,,OST, +OST:SA:CTPCHBLA_01,1,"Cheval Blanc",48.613596,7.751868,,1,,Europe/Paris,,OST, +OST:SA:CTPCHEAU_01,1,"Château d'Eau",48.673123,7.703967,,1,,Europe/Paris,,OST, +OST:SA:CTPCHERB_01,1,"Cherbourg",48.533537,7.782757,,1,,Europe/Paris,,OST, +OST:SA:CTPCHMAN_01,1,"Champ de Manoeuvre",48.60154,7.710467,,1,,Europe/Paris,,OST, +OST:SA:CTPCHMET_03,1,"Chambre de Métiers",48.615073,7.718638,,1,,Europe/Paris,,OST, +OST:SA:CTPCHMET_06,1,"Chambre de métiers",48.615501,7.719487,,1,,Europe/Paris,,OST, +OST:SA:CTPCHOPI_01,1,"Chopin",48.525195,7.68304,,1,,Europe/Paris,,OST, +OST:SA:CTPCIADM_01,1,"Cité Administrative",48.578394,7.760513,,1,,Europe/Paris,,OST, +OST:SA:CTPCICEQ_01,1,"Cirque – Centre Equestre ",48.570028,7.796347,,1,,Europe/Paris,,OST, +OST:SA:CTPCIILL_01,1,"Cité de l'Ill",48.612942,7.773601,,1,,Europe/Paris,,OST, +OST:SA:CTPCIMEI_03,1,"Cité Meinau",48.547982,7.75638,,1,,Europe/Paris,,OST, +OST:SA:CTPCIMET_01,1,"Cimetière",48.55111,7.68029,,1,,Europe/Paris,,OST, +OST:SA:CTPCINOR_01,1,"Cimetière Nord",48.609122,7.779778,,1,,Europe/Paris,,OST, +OST:SA:CTPCIRUS_01,1,"Cité Russi",48.559158,7.689043,,1,,Europe/Paris,,OST, +OST:SA:CTPCISUD_01,1,"Cimetière Sud",48.545879,7.756841,,1,,Europe/Paris,,OST, +OST:SA:CTPCIUNI_01,1,"Cité Universitaire",48.602153,7.775597,,1,,Europe/Paris,,OST, +OST:SA:CTPCLEME_01,1,"Clémenceau",48.592157,7.754644,,1,,Europe/Paris,,OST, +OST:SA:CTPCLORA_01,1,"Clinique de l'Orangerie",48.587949,7.76533,,1,,Europe/Paris,,OST, +OST:SA:CTPCLSTA_01,1,"Clinique Sainte Anne",48.615408,7.785353,,1,,Europe/Paris,,OST, +OST:SA:CTPCMCOO_01,1,"CMCO",48.600941,7.74965,,1,,Europe/Paris,,OST, +OST:SA:CTPCOBOI_01,1,"Coucou des Bois",48.530715,7.773826,,1,,Europe/Paris,,OST, +OST:SA:CTPCOCHA_01,1,"Cor de Chasse",48.513188,7.712275,,1,,Europe/Paris,,OST, +OST:SA:CTPCOEHO_01,1,"Coehorn",48.610451,7.786045,,1,,Europe/Paris,,OST, +OST:SA:CTPCOEUR_01,1,"Conseil de l'Europe",48.593978,7.772223,,1,,Europe/Paris,,OST, +OST:SA:CTPCOFON_01,1,"Collège La Fontaine",48.516943,7.650673,,1,,Europe/Paris,,OST, +OST:SA:CTPCOGAL_01,1,"Collège Galilée",48.55054,7.687088,,1,,Europe/Paris,,OST, +OST:SA:CTPCOILL_01,1,"Cours de L'Illiade",48.527797,7.710297,,1,,Europe/Paris,,OST, +OST:SA:CTPCOILL_03,1,"Cours de l'Illiade",48.527587,7.709993,,1,,Europe/Paris,,OST, +OST:SA:CTPCOLEC_01,1,"Collège Leclerc",48.608319,7.731394,,1,,Europe/Paris,,OST, +OST:SA:CTPCOLIL_02,1,"Colonel Lilly",48.503522,7.693644,,1,,Europe/Paris,,OST, +OST:SA:CTPCOLLE_01,1,"Collège",48.642648,7.708103,,1,,Europe/Paris,,OST, +OST:SA:CTPCOLOM_01,1,"Colombes",48.530224,7.768475,,1,,Europe/Paris,,OST, +OST:SA:CTPCOLON_01,1,"Colonne",48.538454,7.733259,,1,,Europe/Paris,,OST, +OST:SA:CTPCOMME_01,1,"Commerce",48.532412,7.683132,,1,,Europe/Paris,,OST, +OST:SA:CTPCOOPE_01,1,"Coopérative",48.574734,7.793071,,1,,Europe/Paris,,OST, +OST:SA:CTPCOPEN_01,1,"Copenhague",48.607722,7.71804,,1,,Europe/Paris,,OST, +OST:SA:CTPCOPER_01,1,"Copernic",48.600927,7.715377,,1,,Europe/Paris,,OST, +OST:SA:CTPCOQUI_01,1,"Conseil des Quinze",48.58741,7.782298,,1,,Europe/Paris,,OST, +OST:SA:CTPCORBE_06,1,"Corbeau",48.579292,7.751066,,1,,Europe/Paris,,OST, +OST:SA:CTPCOREU_02,1,"Neuhof Corps Européen",48.544209,7.781414,,1,,Europe/Paris,,OST, +OST:SA:CTPCOURO_01,1,"Couronne",48.586847,7.65234,,1,,Europe/Paris,,OST, +OST:SA:CTPCRAMM_01,1,"C.R.A.M.",48.500185,7.717667,,1,,Europe/Paris,,OST, +OST:SA:CTPCRARA_02,1,"Arago",48.604617,7.716785,,1,,Europe/Paris,,OST, +OST:SA:CTPCRAVV_01,1,"CARSAT",48.551316,7.733422,,1,,Europe/Paris,,OST, +OST:SA:CTPCRCHA_01,1,"Cressier Château d'eau",48.490395,7.69482,,1,,Europe/Paris,,OST, +OST:SA:CTPCROIX_02,1,"Croix",48.55526,7.678813,,1,,Europe/Paris,,OST, +OST:SA:CTPCUIVR_01,1,"Cuivre",48.58305,7.707489,,1,,Europe/Paris,,OST, +OST:SA:CTPDALIS_01,1,"Dalis",48.539609,7.768098,,1,,Europe/Paris,,OST, +OST:SA:CTPDANTE_01,1,"Dante",48.59141,7.703047,,1,,Europe/Paris,,OST, +OST:SA:CTPDANUB_01,1,"Danube",48.57291,7.770777,,1,,Europe/Paris,,OST, +OST:SA:CTPDAUPH_01,1,"Dauphiné",48.633782,7.744912,,1,,Europe/Paris,,OST, +OST:SA:CTPDECLE_01,1,"Deux Clés",48.531747,7.715067,,1,,Europe/Paris,,OST, +OST:SA:CTPDEGAU_01,1,"De Gaulle",48.488688,7.709413,,1,,Europe/Paris,,OST, +OST:SA:CTPDELAT_01,1,"De Lattre de Tassigny",48.493368,7.683866,,1,,Europe/Paris,,OST, +OST:SA:CTPDEPAP_01,1,"Denis Papin",48.513371,7.705246,,1,,Europe/Paris,,OST, +OST:SA:CTPDIETT_01,1,"Dietterlin",48.552817,7.748923,,1,,Europe/Paris,,OST, +OST:SA:CTPDIGUE_01,1,"Graffenstaden Digue",48.520869,7.705154,,1,,Europe/Paris,,OST, +OST:SA:CTPDNIED_01,1,"d'Niedergass",48.487983,7.718774,,1,,Europe/Paris,,OST, +OST:SA:CTPDONON_01,1,"Donon",48.586972,7.666144,,1,,Europe/Paris,,OST, +OST:SA:CTPDORDO_01,1,"Dordogne",48.589996,7.766948,,1,,Europe/Paris,,OST, +OST:SA:CTPDOUBS_01,1,"Doubs",48.568411,7.73914,,1,,Europe/Paris,,OST, +OST:SA:CTPDRHOM_03,1,"Droits de l'Homme",48.596222,7.774072,,1,,Europe/Paris,,OST, +OST:SA:CTPDUALS_01,1,"Ducs d'Alsace",48.590203,7.715447,,1,,Europe/Paris,,OST, +OST:SA:CTPDUNKE_01,1,"Dunkerque",48.577945,7.784299,,1,,Europe/Paris,,OST, +OST:SA:CTPDUNTZ_01,1,"Duntzenheim",48.598542,7.70253,,1,,Europe/Paris,,OST, +OST:SA:CTPECCEN_01,1,"Eckbolsheim Centre",48.580779,7.686589,,1,,Europe/Paris,,OST, +OST:SA:CTPECCIM_01,1,"Eckwersheim Cimetière",48.682972,7.694346,,1,,Europe/Paris,,OST, +OST:SA:CTPECHIP_01,1,"Eckwersheim Hippodrome",48.68516,7.698146,,1,,Europe/Paris,,OST, +OST:SA:CTPECKPA_02,1,"Eckbolsheim Parc d'Activités",48.590518,7.683523,,1,,Europe/Paris,,OST, +OST:SA:CTPECMAI_01,1,"Eckwersheim Mairie",48.681391,7.693862,,1,,Europe/Paris,,OST, +OST:SA:CTPECOLE_01,1,"Ecole",48.505112,7.608633,,1,,Europe/Paris,,OST, +OST:SA:CTPECRIV_01,1,"Ecrivains",48.609603,7.734331,,1,,Europe/Paris,,OST, +OST:SA:CTPEDROS_01,1,"Edmond Rostand",48.591314,7.692165,,1,,Europe/Paris,,OST, +OST:SA:CTPEHNNN_01,1,"Ehn",48.517012,7.671914,,1,,Europe/Paris,,OST, +OST:SA:CTPELISA_01,1,"Elisa",48.515097,7.697658,,1,,Europe/Paris,,OST, +OST:SA:CTPELISA_02,1,"Elisa",48.517187,7.700896,,1,,Europe/Paris,,OST, +OST:SA:CTPELMER_01,1,"Elmerforst",48.562548,7.710266,,1,,Europe/Paris,,OST, +OST:SA:CTPELSAU_01,1,"Elsau",48.567685,7.726111,,1,,Europe/Paris,,OST, +OST:SA:CTPEMAIL_01,1,"Emailleries",48.625933,7.755849,,1,,Europe/Paris,,OST, +OST:SA:CTPEMBRA_01,1,"Embranchement",48.599746,7.739717,,1,,Europe/Paris,,OST, +OST:SA:CTPEMMAT_01,1,"Emile Mathis",48.553557,7.745398,,1,,Europe/Paris,,OST, +OST:SA:CTPENCEN_01,1,"Entzheim centre",48.532876,7.635235,,1,,Europe/Paris,,OST, +OST:SA:CTPENGEL_01,1,"Engelbreit",48.580582,7.707625,,1,,Europe/Paris,,OST, +OST:SA:CTPENOUE_01,1,"Entzheim Ouest",48.531317,7.629176,,1,,Europe/Paris,,OST, +OST:SA:CTPERMIT_01,1,"Ermitage",48.495998,7.717221,,1,,Europe/Paris,,OST, +OST:SA:CTPESCAL_01,1,"l'Escale",48.610749,7.782443,,1,,Europe/Paris,,OST, +OST:SA:CTPESEUE_03,1,"Espace Européen de l' Entreprise",48.616467,7.719799,,1,,Europe/Paris,,OST, +OST:SA:CTPESMAI_01,1,"Eschau Mairie",48.484155,7.714038,,1,,Europe/Paris,,OST, +OST:SA:CTPESPER_01,1,"Espérance",48.467702,7.735102,,1,,Europe/Paris,,OST, +OST:SA:CTPESPLA_01,1,"Esplanade",48.57822,7.769272,,1,,Europe/Paris,,OST, +OST:SA:CTPETBOU_03,1,"Etoile Bourse",48.574469,7.753743,,1,,Europe/Paris,,OST, +OST:SA:CTPETDOR_01,1,"Etoile d'Or",48.594746,7.710918,,1,,Europe/Paris,,OST, +OST:SA:CTPETOIL_01,1,"Etoile",48.574624,7.753482,,1,,Europe/Paris,,OST, +OST:SA:CTPETPOL_01,1,"Etoile Polygone",48.571626,7.755256,,1,,Europe/Paris,,OST, +OST:SA:CTPETPOL_03,1,"Etoile Polygone (14/24)",48.571634,7.755631,,1,,Europe/Paris,,OST, +OST:SA:CTPEUROF_04,1,"Eurofret",48.525215,7.778832,,1,,Europe/Paris,,OST, +OST:SA:CTPEUROF_06,1,"Eurofret",48.524404,7.78276,,1,,Europe/Paris,,OST, +OST:SA:CTPFAALE_01,1,"Faubourg d'Alençon",48.653511,7.828683,,1,,Europe/Paris,,OST, +OST:SA:CTPFAANS_01,1,"Faisans",48.552502,7.673546,,1,,Europe/Paris,,OST, +OST:SA:CTPFANAG_01,1,"Faubourg National-Gare",48.582423,7.736863,,1,,Europe/Paris,,OST, +OST:SA:CTPFAPAI_01,1,"Faubourg de la Paix",48.519812,7.709212,,1,,Europe/Paris,,OST, +OST:SA:CTPFAPIE_01,1,"Faubourg de Pierre",48.587494,7.746212,,1,,Europe/Paris,,OST, +OST:SA:CTPFARIE_01,1,"Faisanderie",48.534429,7.760374,,1,,Europe/Paris,,OST, +OST:SA:CTPFASAV_01,1,"Faubourg de Saverne",48.585302,7.740354,,1,,Europe/Paris,,OST, +OST:SA:CTPFEDER_01,1,"Fédération",48.564246,7.738609,,1,,Europe/Paris,,OST, +OST:SA:CTPFEMAI_03,1,"Fegersheim Mairie",48.490468,7.679929,,1,,Europe/Paris,,OST, +OST:SA:CTPFISCH_01,1,"Fischacker",48.618815,7.788021,,1,,Europe/Paris,,OST, +OST:SA:CTPFLORA_01,1,"Floralies",48.536875,7.64302,,1,,Europe/Paris,,OST, +OST:SA:CTPFOCHH_01,1,"Foch",48.627723,7.753751,,1,,Europe/Paris,,OST, +OST:SA:CTPFODES_01,1,"Fort Desaix",48.634658,7.727745,,1,,Europe/Paris,,OST, +OST:SA:CTPFOLEF_01,1,"Fort Lefèbvre",48.524893,7.690099,,1,,Europe/Paris,,OST, +OST:SA:CTPFOLOU_01,1,"Fort Louis",48.604833,7.77786,,1,,Europe/Paris,,OST, +OST:SA:CTPFONDE_01,1,"Fondeur",48.609199,7.745253,,1,,Europe/Paris,,OST, +OST:SA:CTPFONTA_01,1,"Fontaine",48.623766,7.750826,,1,,Europe/Paris,,OST, +OST:SA:CTPFORGE_03,1,"Forges",48.585174,7.706875,,1,,Europe/Paris,,OST, +OST:SA:CTPFORLE_01,1,"Forlen",48.536046,7.68352,,1,,Europe/Paris,,OST, +OST:SA:CTPFOUHR_01,1,"Illkirch Fort Uhrich",48.51448,7.723259,,1,,Europe/Paris,,OST, +OST:SA:CTPFRCOM_01,1,"Franche Comté",48.551969,7.751757,,1,,Europe/Paris,,OST, +OST:SA:CTPFREBE_01,1,"Frères Eberts",48.555226,7.735063,,1,,Europe/Paris,,OST, +OST:SA:CTPFRLUM_01,1,"Frères Lumière",48.614526,7.738282,,1,,Europe/Paris,,OST, +OST:SA:CTPFUAMB_01,1,"Fuchs am Buckel",48.62605,7.804035,,1,,Europe/Paris,,OST, +OST:SA:CTPFUGLA_01,1,"Futura Glacière",48.605142,7.759552,,1,,Europe/Paris,,OST, +OST:SA:CTPFUMAR_01,1,"Fusiliers Marins",48.491351,7.729979,,1,,Europe/Paris,,OST, +OST:SA:CTPGACEN_01,1,"Gare Centrale",48.58544,7.735637,,1,,Europe/Paris,,OST, +OST:SA:CTPGACTN_01,1,"Gare Centrale (Arrivée)",48.585101,7.73526,,1,,Europe/Paris,,OST, +OST:SA:CTPGAERT_01,1,"Gaertel",48.632514,7.728211,,1,,Europe/Paris,,OST, +OST:SA:CTPGAFOR_01,1,"Gardes Forestiers",48.621088,7.787241,,1,,Europe/Paris,,OST, +OST:SA:CTPGALLI_01,1,"Gallia",48.584421,7.759,,1,,Europe/Paris,,OST, +OST:SA:CTPGAMAR_01,1,"Gare aux Marchandises",48.591842,7.732548,,1,,Europe/Paris,,OST, +OST:SA:CTPGEBUR_01,1,"Georges Burger",48.615168,7.729182,,1,,Europe/Paris,,OST, +OST:SA:CTPGECEN_03,1,"Geispolsheim Centre Commercial",48.523094,7.691774,,1,,Europe/Paris,,OST, +OST:SA:CTPGEGAR_01,1,"Geispolsheim Gare",48.518424,7.68343,,1,,Europe/Paris,,OST, +OST:SA:CTPGEGAR_07,1,"Geispolsheim Gare",48.521111,7.685384,,1,,Europe/Paris,,OST, +OST:SA:CTPGEGAU_01,1,"Général de Gaulle",48.621623,7.763785,,1,,Europe/Paris,,OST, +OST:SA:CTPGELEC_01,1,"Général Leclerc",48.655072,7.831295,,1,,Europe/Paris,,OST, +OST:SA:CTPGELEJ_01,1,"Général Lejeune",48.612993,7.78833,,1,,Europe/Paris,,OST, +OST:SA:CTPGEMAI_01,1,"Geispolsheim Mairie",48.51512,7.64274,,1,,Europe/Paris,,OST, +OST:SA:CTPGEOUE_01,1,"Geispolsheim Ouest",48.51506,7.640602,,1,,Europe/Paris,,OST, +OST:SA:CTPGEROL_01,1,"Geroldseck",48.581864,7.71503,,1,,Europe/Paris,,OST, +OST:SA:CTPGEZOI_01,1,"Geispolsheim ZI",48.53183,7.6851,,1,,Europe/Paris,,OST, +OST:SA:CTPGEZOI_02,1,"Geispolsheim ZI",48.528839,7.68561,,1,,Europe/Paris,,OST, +OST:SA:CTPGLAUB_01,1,"Glaubitz",48.543088,7.764249,,1,,Europe/Paris,,OST, +OST:SA:CTPGLIES_01,1,"Gliesberg",48.5679,7.709232,,1,,Europe/Paris,,OST, +OST:SA:CTPGLOEC_01,1,"Gloeckelsberg",48.504503,7.602833,,1,,Europe/Paris,,OST, +OST:SA:CTPGOLBE_01,1,"Golbery",48.587463,7.766799,,1,,Europe/Paris,,OST, +OST:SA:CTPGOLDS_01,1,"Goldschmidt",48.533519,7.771489,,1,,Europe/Paris,,OST, +OST:SA:CTPGRAVI_01,1,"Gravière",48.561305,7.764239,,1,,Europe/Paris,,OST, +OST:SA:CTPGRGAR_01,1,"Graffenstaden-Gare",48.53242,7.69118,,1,,Europe/Paris,,OST, +OST:SA:CTPGRGAR_03,1,"Graffenstaden Gare",48.532851,7.689414,,1,,Europe/Paris,,OST, +OST:SA:CTPGRUBE_01,1,"Grüber",48.578658,7.709597,,1,,Europe/Paris,,OST, +OST:SA:CTPGRUND_01,1,"Grundgrübe",48.488048,7.721531,,1,,Europe/Paris,,OST, +OST:SA:CTPGRZOI_01,1,"Graffenstaden Z.I",48.510601,7.713738,,1,,Europe/Paris,,OST, +OST:SA:CTPGUTEN_02,1,"Gutenberg",48.665935,7.808832,,1,,Europe/Paris,,OST, +OST:SA:CTPHALDE_01,1,"Haldenbourg",48.603158,7.713261,,1,,Europe/Paris,,OST, +OST:SA:CTPHANGE_01,1,"Hangenbieten",48.559435,7.636329,,1,,Europe/Paris,,OST, +OST:SA:CTPHANMA_01,1,"Hangenbieten Mairie",48.559283,7.614164,,1,,Europe/Paris,,OST, +OST:SA:CTPHAUTE_03,1,"Hautefort",48.54941,7.769182,,1,,Europe/Paris,,OST, +OST:SA:CTPHAYYY_01,1,"Hay",48.64859,7.751789,,1,,Europe/Paris,,OST, +OST:SA:CTPHECHN_01,1,"Hechner",48.61232,7.776821,,1,,Europe/Paris,,OST, +OST:SA:CTPHEFRE_01,1,"Henri Frenay",48.579894,7.697711,,1,,Europe/Paris,,OST, +OST:SA:CTPHERRA_01,1,"Herrade",48.583554,7.714684,,1,,Europe/Paris,,OST, +OST:SA:CTPHERRE_01,1,"Herrenwasser",48.587105,7.662081,,1,,Europe/Paris,,OST, +OST:SA:CTPHETZL_01,1,"Hetzlader",48.488761,7.728547,,1,,Europe/Paris,,OST, +OST:SA:CTPHIESE_01,1,"Hieselrain",48.488579,7.715599,,1,,Europe/Paris,,OST, +OST:SA:CTPHIRON_01,1,"Hirondelles",48.645532,7.75281,,1,,Europe/Paris,,OST, +OST:SA:CTPHOCEN_03,1,"Holtzheim Centre",48.557961,7.643114,,1,,Europe/Paris,,OST, +OST:SA:CTPHOCHF_01,1,"Hochfelden",48.595702,7.727831,,1,,Europe/Paris,,OST, +OST:SA:CTPHOCIG_01,1,"Hoenheim Cigognes",48.623202,7.746812,,1,,Europe/Paris,,OST, +OST:SA:CTPHOCIV_01,1,"Hôpital Civil",48.574178,7.742255,,1,,Europe/Paris,,OST, +OST:SA:CTPHODEP_01,1,"Hôtel du Département",48.578539,7.739216,,1,,Europe/Paris,,OST, +OST:SA:CTPHOEGA_02,1,"Hoenheim Gare",48.628035,7.758928,,1,,Europe/Paris,,OST, +OST:SA:CTPHOEGL_01,1,"Holtzheim Eglise",48.559063,7.64095,,1,,Europe/Paris,,OST, +OST:SA:CTPHOFER_04,1,"Homme de Fer",48.584351,7.744991,,1,,Europe/Paris,,OST, +OST:SA:CTPHOHAU_01,1,"Hôpital de Hautepierre",48.591531,7.707097,,1,,Europe/Paris,,OST, +OST:SA:CTPHOHLL_01,1,"Hohl",48.671022,7.704008,,1,,Europe/Paris,,OST, +OST:SA:CTPHOHWA_01,1,"Hohwart",48.549203,7.74152,,1,,Europe/Paris,,OST, +OST:SA:CTPHOLZA_01,1,"Holtzheim ZA",48.559632,7.653116,,1,,Europe/Paris,,OST, +OST:SA:CTPHOMAI_01,1,"Hoenheim Mairie",48.62157,7.755202,,1,,Europe/Paris,,OST, +OST:SA:CTPHONAU_01,1,"Honau",48.640339,7.808444,,1,,Europe/Paris,,OST, +OST:SA:CTPHOOUE_02,1,"Holtzheim Ouest",48.562328,7.636233,,1,,Europe/Paris,,OST, +OST:SA:CTPHOPOL_01,1,"Hôtel de Police",48.574524,7.748867,,1,,Europe/Paris,,OST, +OST:SA:CTPHORAC_01,1,"Horace",48.583201,7.699544,,1,,Europe/Paris,,OST, +OST:SA:CTPICARE_01,1,"Icare",48.543431,7.655066,,1,,Europe/Paris,,OST, +OST:SA:CTPILDFR_01,1,"Ile de France",48.549408,7.750125,,1,,Europe/Paris,,OST, +OST:SA:CTPILGRA_01,1,"Illkirch Graffenstaden",48.524521,7.707865,,1,,Europe/Paris,,OST, +OST:SA:CTPILLIX_04,1,"Illkirch Lixenbuhl",48.529809,7.724789,,1,,Europe/Paris,,OST, +OST:SA:CTPILMAI_01,1,"Illkirch Mairie",48.529502,7.711029,,1,,Europe/Paris,,OST, +OST:SA:CTPILPAI_01,1,"Illkirch Parc d'Innovation",48.519269,7.735657,,1,,Europe/Paris,,OST, +OST:SA:CTPILPIN_01,1,"Ilkirch Parc d'Innovation",48.518434,7.734438,,1,,Europe/Paris,,OST, +OST:SA:CTPIMPRI_01,1,"Imprimeurs",48.534703,7.678816,,1,,Europe/Paris,,OST, +OST:SA:CTPINGOL_01,1,"Ingold",48.545579,7.772178,,1,,Europe/Paris,,OST, +OST:SA:CTPIUTPA_01,1,"I.U.T. Pasteur",48.606435,7.70939,,1,,Europe/Paris,,OST, +OST:SA:CTPJACOB_01,1,"Jacob",48.592477,7.717263,,1,,Europe/Paris,,OST, +OST:SA:CTPJACQU_01,1,"Jacqueline",48.593613,7.694736,,1,,Europe/Paris,,OST, +OST:SA:CTPJANET_01,1,"Jacobi Netter",48.586643,7.704837,,1,,Europe/Paris,,OST, +OST:SA:CTPJARDI_01,1,"Jardins",48.586947,7.670899,,1,,Europe/Paris,,OST, +OST:SA:CTPJARIV_01,1,"Jardin des deux Rives",48.569216,7.79498,,1,,Europe/Paris,,OST, +OST:SA:CTPJAROS_01,1,"Jardin des Roses",48.580614,7.690764,,1,,Europe/Paris,,OST, +OST:SA:CTPJAURE_01,1,"Jean Jaures",48.567208,7.772213,,1,,Europe/Paris,,OST, +OST:SA:CTPJAVIG_01,1,"Jardin des Vignes",48.582506,7.682775,,1,,Europe/Paris,,OST, +OST:SA:CTPJEMON_01,1,"Jean Monnet",48.586762,7.687318,,1,,Europe/Paris,,OST, +OST:SA:CTPJESUI_03,1,"Jésuites",48.539094,7.761101,,1,,Europe/Paris,,OST, +OST:SA:CTPJPERR_01,1,"Jean Perrin",48.587901,7.683443,,1,,Europe/Paris,,OST, +OST:SA:CTPKARIN_03,1,"Karine",48.596248,7.695763,,1,,Europe/Paris,,OST, +OST:SA:CTPKASTL_01,1,"Kastler",48.548754,7.683853,,1,,Europe/Paris,,OST, +OST:SA:CTPKEBAH_03,1,"Kehl Bahnhof",48.575022,7.807235,,1,,Europe/Paris,,OST, +OST:SA:CTPKEMPF_01,1,"Kempf",48.608937,7.789573,,1,,Europe/Paris,,OST, +OST:SA:CTPKEPLE_01,1,"Kepler",48.605208,7.720754,,1,,Europe/Paris,,OST, +OST:SA:CTPKIBIT_01,1,"Kibitzenau",48.555094,7.767189,,1,,Europe/Paris,,OST, +OST:SA:CTPKIBIT_07,1,"Kibitzenau parking",48.554773,7.766999,,1,,Europe/Paris,,OST, +OST:SA:CTPKIEFE_01,1,"Kiefer",48.547444,7.770236,,1,,Europe/Paris,,OST, +OST:SA:CTPKLEBS_01,1,"Klebsau",48.54436,7.773439,,1,,Europe/Paris,,OST, +OST:SA:CTPKOMAI_01,1,"Kolbsheim Mairie",48.560482,7.586214,,1,,Europe/Paris,,OST, +OST:SA:CTPKRIMM_03,1,"Krimmeri",48.562996,7.752633,,1,,Europe/Paris,,OST, +OST:SA:CTPKRMEI_01,1,"Krimmeri Meinau",48.562996,7.752633,,1,,Europe/Paris,,OST, +OST:SA:CTPKRUTE_01,1,"Krutenau",48.579962,7.757949,,1,,Europe/Paris,,OST, +OST:SA:CTPLAALI_01,1,"Lampertheim Alisiers",48.647261,7.688398,,1,,Europe/Paris,,OST, +OST:SA:CTPLAEGL_01,1,"Lampertheim Eglise",48.650883,7.701003,,1,,Europe/Paris,,OST, +OST:SA:CTPLAGRR_01,1,"Langstross/Grand Rue",48.58135,7.746296,,1,,Europe/Paris,,OST, +OST:SA:CTPLAITE_01,1,"Laiterie",48.57553,7.730835,,1,,Europe/Paris,,OST, +OST:SA:CTPLAMAR_01,1,"Lamartine",48.611118,7.738219,,1,,Europe/Paris,,OST, +OST:SA:CTPLAMEY_01,1,"Lamey",48.588386,7.755508,,1,,Europe/Paris,,OST, +OST:SA:CTPLAMPR_01,1,"Lamproie",48.601953,7.792598,,1,,Europe/Paris,,OST, +OST:SA:CTPLAMRI_01,1,"Lampertheim Mairie",48.651091,7.699309,,1,,Europe/Paris,,OST, +OST:SA:CTPLANDS_05,1,"Landsberg",48.569341,7.764091,,1,,Europe/Paris,,OST, +OST:SA:CTPLAROC_01,1,"La Rochelle",48.535304,7.785455,,1,,Europe/Paris,,OST, +OST:SA:CTPLASOU_01,1,"La Souffel",48.628482,7.729228,,1,,Europe/Paris,,OST, +OST:SA:CTPLAUTE_01,1,"Lauterbourg",48.609573,7.74218,,1,,Europe/Paris,,OST, +OST:SA:CTPLAVIG_01,1,"La Vigie",48.534054,7.695762,,1,,Europe/Paris,,OST, +OST:SA:CTPLAVOI_01,1,"Lavoisier",48.602723,7.719177,,1,,Europe/Paris,,OST, +OST:SA:CTPLAZAR_01,1,"Lazaret",48.563518,7.761451,,1,,Europe/Paris,,OST, +OST:SA:CTPLECLE_01,1,"Leclerc",48.534343,7.734434,,1,,Europe/Paris,,OST, +OST:SA:CTPLEFEB_01,1,"Lefèbvre",48.559516,7.74582,,1,,Europe/Paris,,OST, +OST:SA:CTPLEGAL_01,1,"Le Galet",48.596208,7.69839,,1,,Europe/Paris,,OST, +OST:SA:CTPLEMAR_01,1,"Le Marais",48.609288,7.765869,,1,,Europe/Paris,,OST, +OST:SA:CTPLERCH_01,1,"Lerchenberg",48.619901,7.7313,,1,,Europe/Paris,,OST, +OST:SA:CTPLERIE_01,1,"Le Ried",48.62146,7.767628,,1,,Europe/Paris,,OST, +OST:SA:CTPLHPPA_01,1,"Les Halles - Pont de Paris",48.585889,7.74376,,1,,Europe/Paris,,OST, +OST:SA:CTPLHSEB_01,1,"Les Halles Sébastopol",48.586231,7.743013,,1,,Europe/Paris,,OST, +OST:SA:CTPLIBER_01,1,"Liberté",48.585996,7.758126,,1,,Europe/Paris,,OST, +OST:SA:CTPLICEN_01,1,"Lipsheim Centre",48.490333,7.664972,,1,,Europe/Paris,,OST, +OST:SA:CTPLIEST_01,1,"Lipsheim Est",48.491642,7.669958,,1,,Europe/Paris,,OST, +OST:SA:CTPLIGAR_06,1,"Lipsheim gare",48.490755,7.674905,,1,,Europe/Paris,,OST, +OST:SA:CTPLITIE_01,1,"Lingolsheim Tiergaertel",48.55379,7.689424,,1,,Europe/Paris,,OST, +OST:SA:CTPLNCEN_01,1,"Lingolsheim Centre",48.558164,7.685198,,1,,Europe/Paris,,OST, +OST:SA:CTPLNCHA_01,1,"Lingolsheim Château",48.553722,7.67982,,1,,Europe/Paris,,OST, +OST:SA:CTPLNMAI_01,1,"Lingolsheim Mairie",48.55736,7.682803,,1,,Europe/Paris,,OST, +OST:SA:CTPLOAMP_01,1,"Louis Ampère",48.509972,7.710765,,1,,Europe/Paris,,OST, +OST:SA:CTPLOEBB_01,1,"Loeb",48.475789,7.709604,,1,,Europe/Paris,,OST, +OST:SA:CTPLOLOU_03,1,"Louis Loucheur",48.549464,7.758013,,1,,Europe/Paris,,OST, +OST:SA:CTPLONDR_01,1,"Londres",48.610448,7.712063,,1,,Europe/Paris,,OST, +OST:SA:CTPLORRA_01,1,"Lorraine",48.651977,7.695394,,1,,Europe/Paris,,OST, +OST:SA:CTPLWAEG_01,1,"La Wantzenau Eglise",48.662812,7.822248,,1,,Europe/Paris,,OST, +OST:SA:CTPLWAGO_01,1,"La Wantzenau Le Golf",48.675906,7.815439,,1,,Europe/Paris,,OST, +OST:SA:CTPLWAMA_01,1,"La Wantzenau Mairie",48.658027,7.82794,,1,,Europe/Paris,,OST, +OST:SA:CTPLWATI_01,1,"La Wantzenau Le Tilleul",48.660711,7.823604,,1,,Europe/Paris,,OST, +OST:SA:CTPLWAZA_01,1,"La Wantzenau ZA",48.669308,7.812723,,1,,Europe/Paris,,OST, +OST:SA:CTPLWECO_01,1,"La Wantzenau Ecole",48.659713,7.825284,,1,,Europe/Paris,,OST, +OST:SA:CTPLWGAR_02,1,"La Wantzenau Gare",48.664716,7.823937,,1,,Europe/Paris,,OST, +OST:SA:CTPLYCOU_01,1,"Lycée Couffignal",48.558673,7.748078,,1,,Europe/Paris,,OST, +OST:SA:CTPLYJMO_01,1,"Lycée Jean Monnet",48.564409,7.769393,,1,,Europe/Paris,,OST, +OST:SA:CTPLYKLE_01,1,"Lycée Kléber",48.593362,7.757618,,1,,Europe/Paris,,OST, +OST:SA:CTPLYMAB_01,1,"Lycée Marc Bloch",48.616616,7.768009,,1,,Europe/Paris,,OST, +OST:SA:CTPLYOPA_01,1,"Lyon-Pasteur",48.574896,7.734354,,1,,Europe/Paris,,OST, +OST:SA:CTPLYPAS_01,1,"Lycée Pasteur",48.574508,7.738546,,1,,Europe/Paris,,OST, +OST:SA:CTPMAALE_01,1,"Maxime Alexandre",48.561675,7.68134,,1,,Europe/Paris,,OST, +OST:SA:CTPMAARM_01,1,"Musée d'Art Moderne",48.578313,7.73403,,1,,Europe/Paris,,OST, +OST:SA:CTPMADRI_01,1,"Madrid",48.60908,7.706857,,1,,Europe/Paris,,OST, +OST:SA:CTPMALTE_01,1,"Malterie",48.613632,7.756011,,1,,Europe/Paris,,OST, +OST:SA:CTPMAPAG_01,1,"Marcel Pagnol",48.602432,7.702702,,1,,Europe/Paris,,OST, +OST:SA:CTPMARGU_01,1,"Marguerite",48.614206,7.760119,,1,,Europe/Paris,,OST, +OST:SA:CTPMARNE_01,1,"Marne",48.58369,7.773158,,1,,Europe/Paris,,OST, +OST:SA:CTPMARNE_03,1,"Marne (déviation marché)",48.583805,7.772867,,1,,Europe/Paris,,OST, +OST:SA:CTPMAROU_01,1,"Maison Rouge",48.60729,7.749489,,1,,Europe/Paris,,OST, +OST:SA:CTPMARUD_01,1,"Marcel Rudloff",48.587447,7.69766,,1,,Europe/Paris,,OST, +OST:SA:CTPMARUD_06,1,"Marcel Rudloff",48.585318,7.694542,,1,,Europe/Paris,,OST, +OST:SA:CTPMASCH_01,1,"Maires Schaub",48.613204,7.764087,,1,,Europe/Paris,,OST, +OST:SA:CTPMASEG_01,1,"Marc Seguin",48.615562,7.732311,,1,,Europe/Paris,,OST, +OST:SA:CTPMAZEL_03,1,"Mathieu Zell",48.595276,7.718333,,1,,Europe/Paris,,OST, +OST:SA:CTPMIANG_01,1,"Michel Ange",48.564206,7.720291,,1,,Europe/Paris,,OST, +OST:SA:CTPMIEGL_01,1,"Mittelhausbergen Eglise",48.614333,7.694425,,1,,Europe/Paris,,OST, +OST:SA:CTPMIMIT_01,1,"Mittelhausbergen Mittelberg",48.612408,7.696913,,1,,Europe/Paris,,OST, +OST:SA:CTPMOLKE_01,1,"Molkenbronn",48.562994,7.701294,,1,,Europe/Paris,,OST, +OST:SA:CTPMOSER_01,1,"Moser",48.603248,7.737933,,1,,Europe/Paris,,OST, +OST:SA:CTPMOULI_01,1,"Moulin",48.580983,7.666424,,1,,Europe/Paris,,OST, +OST:SA:CTPMOVER_01,1,"Montagne Verte",48.574673,7.727018,,1,,Europe/Paris,,OST, +OST:SA:CTPMOZAR_01,1,"Mozart",48.629792,7.753648,,1,,Europe/Paris,,OST, +OST:SA:CTPMSCHO_01,1,"Martin Schongauer",48.566258,7.720173,,1,,Europe/Paris,,OST, +OST:SA:CTPMUHLB_01,1,"Mühlbach",48.586907,7.655794,,1,,Europe/Paris,,OST, +OST:SA:CTPMULHO_01,1,"Mulhouse",48.568116,7.757536,,1,,Europe/Paris,,OST, +OST:SA:CTPMUMAI_01,1,"Mundolsheim Mairie",48.64173,7.714654,,1,,Europe/Paris,,OST, +OST:SA:CTPMURHO_01,1,"Murhof",48.559093,7.711897,,1,,Europe/Paris,,OST, +OST:SA:CTPMUSAU_01,1,"Musau",48.561194,7.781334,,1,,Europe/Paris,,OST, +OST:SA:CTPNEDGR_01,1,"Neudorf Gravière",48.561301,7.763827,,1,,Europe/Paris,,OST, +OST:SA:CTPNEDMA_01,1,"Neudorf Marché",48.566053,7.758881,,1,,Europe/Paris,,OST, +OST:SA:CTPNEHEG_01,1,"Neuhof Eglise",48.536857,7.770598,,1,,Europe/Paris,,OST, +OST:SA:CTPNEHGA_01,1,"Neuhof Ganzau",48.527302,7.760185,,1,,Europe/Paris,,OST, +OST:SA:CTPNEHJM_01,1,"Jean Moulin",48.541437,7.775478,,1,,Europe/Paris,,OST, +OST:SA:CTPNEHLO_03,1,"Neuhof Lorient",48.543911,7.788798,,1,,Europe/Paris,,OST, +OST:SA:CTPNEHST_01,1,"Neuhof Stéphanie",48.527668,7.76947,,1,,Europe/Paris,,OST, +OST:SA:CTPNEUVE_01,1,"Neuve",48.5916,7.721769,,1,,Europe/Paris,,OST, +OST:SA:CTPNICIG_01,1,"Nid de Cigognes",48.572301,7.714615,,1,,Europe/Paris,,OST, +OST:SA:CTPNIEDE_01,1,"Niederbourg",48.533014,7.720782,,1,,Europe/Paris,,OST, +OST:SA:CTPNIMAI_01,1,"Niederhausbergen Mairie",48.623253,7.699993,,1,,Europe/Paris,,OST, +OST:SA:CTPNIOUE_01,1,"Niederhausbergen Centre",48.624849,7.700056,,1,,Europe/Paris,,OST, +OST:SA:CTPNITER_01,1,"Niederhausbergen Ouest",48.626924,7.70147,,1,,Europe/Paris,,OST, +OST:SA:CTPNORDD_01,1,"Nord",48.623185,7.711779,,1,,Europe/Paris,,OST, +OST:SA:CTPOBEES_01,1,"Oberhausbergen Est",48.602071,7.69502,,1,,Europe/Paris,,OST, +OST:SA:CTPOBHEG_01,1,"Oberhausbergen Eglise",48.609943,7.684742,,1,,Europe/Paris,,OST, +OST:SA:CTPOBHMA_01,1,"Oberhausbergen Mairie",48.606246,7.685544,,1,,Europe/Paris,,OST, +OST:SA:CTPOBLYO_01,1,"Obernai-Lyon",48.578488,7.73147,,1,,Europe/Paris,,OST, +OST:SA:CTPOBSCA_01,1,"Oberschaeffolsheim Canal",48.584685,7.646791,,1,,Europe/Paris,,OST, +OST:SA:CTPOBSER_01,1,"Observatoire",48.580887,7.770566,,1,,Europe/Paris,,OST, +OST:SA:CTPOBSER_10,1,"Observatoire (Blvd Leblois)",48.581489,7.770314,,1,,Europe/Paris,,OST, +OST:SA:CTPOBSMA_01,1,"Oberschaeffolsheim Mairie",48.586076,7.648357,,1,,Europe/Paris,,OST, +OST:SA:CTPOBSST_01,1,"Oberschaeffolsheim Stade (départ 70)",48.582135,7.647222,,1,,Europe/Paris,,OST, +OST:SA:CTPOCTRO_01,1,"Octroi",48.580541,7.69525,,1,,Europe/Paris,,OST, +OST:SA:CTPOHEGL_01,1,"Ohnheim Eglise",48.489564,7.699663,,1,,Europe/Paris,,OST, +OST:SA:CTPORANG_01,1,"Orangerie",48.591778,7.769587,,1,,Europe/Paris,,OST, +OST:SA:CTPORBEY_01,1,"Orbey",48.563116,7.773677,,1,,Europe/Paris,,OST, +OST:SA:CTPORMES_01,1,"Ormes",48.516078,7.722182,,1,,Europe/Paris,,OST, +OST:SA:CTPOSBEL_01,1,"Ostwald Bellevue",48.539875,7.710259,,1,,Europe/Paris,,OST, +OST:SA:CTPOSHVI_01,1,"Ostwald Hotel de Ville",48.550965,7.710415,,1,,Europe/Paris,,OST, +OST:SA:CTPOSHVI_05,1,"Ostwald Hôtel de Ville",48.55056,7.710733,,1,,Europe/Paris,,OST, +OST:SA:CTPOSMAI_01,1,"Ostwald Eglise",48.54316,7.709335,,1,,Europe/Paris,,OST, +OST:SA:CTPPACON_01,1,"Parc du Contades",48.590408,7.756063,,1,,Europe/Paris,,OST, +OST:SA:CTPPAELU_03,1,"Paul Eluard",48.590197,7.697824,,1,,Europe/Paris,,OST, +OST:SA:CTPPAFET_01,1,"Palais des Fêtes",48.590177,7.749126,,1,,Europe/Paris,,OST, +OST:SA:CTPPAIXX_01,1,"Paix",48.606317,7.72943,,1,,Europe/Paris,,OST, +OST:SA:CTPPALER_01,1,"Palerme",48.577743,7.764166,,1,,Europe/Paris,,OST, +OST:SA:CTPPAMAL_01,1,"Parc Malraux",48.526941,7.720381,,1,,Europe/Paris,,OST, +OST:SA:CTPPAPET_01,1,"Papeterie",48.611602,7.780412,,1,,Europe/Paris,,OST, +OST:SA:CTPPAPOT_01,1,"Poteries",48.582479,7.691918,,1,,Europe/Paris,,OST, +OST:SA:CTPPARCC_01,1,"Parc",48.535033,7.639548,,1,,Europe/Paris,,OST, +OST:SA:CTPPARLE_01,1,"Parlement Européen",48.599285,7.766551,,1,,Europe/Paris,,OST, +OST:SA:CTPPASPO_01,1,"Parc des sports",48.598547,7.694039,,1,,Europe/Paris,,OST, +OST:SA:CTPPATRO_01,1,"Patronage",48.657165,7.829868,,1,,Europe/Paris,,OST, +OST:SA:CTPPAWOD_01,1,"Parc Wodli",48.616493,7.75359,,1,,Europe/Paris,,OST, +OST:SA:CTPPENEI_01,1,"Perce-neige",48.552421,7.68322,,1,,Europe/Paris,,OST, +OST:SA:CTPPERDR_01,1,"Perdrix",48.663684,7.72,,1,,Europe/Paris,,OST, +OST:SA:CTPPERDR_03,1,"Perdrix",48.467126,7.737446,,1,,Europe/Paris,,OST, +OST:SA:CTPPETIT_01,1,"Petite",48.640858,7.710176,,1,,Europe/Paris,,OST, +OST:SA:CTPPFIST_01,1,"Pfister",48.55469,7.753274,,1,,Europe/Paris,,OST, +OST:SA:CTPPHALS_01,1,"Phalsbourg",48.591545,7.749116,,1,,Europe/Paris,,OST, +OST:SA:CTPPIGEO_01,1,"Pigeons",48.534783,7.708505,,1,,Europe/Paris,,OST, +OST:SA:CTPPLBOU_01,1,"Plaine des Bouchers",48.562224,7.739611,,1,,Europe/Paris,,OST, +OST:SA:CTPPLCOL_01,1,"Place des Colombes",48.53097,7.770667,,1,,Europe/Paris,,OST, +OST:SA:CTPPLISL_01,1,"Place d'Islande",48.580339,7.776344,,1,,Europe/Paris,,OST, +OST:SA:CTPPLOCA_01,1,"Plobsheim Canal",48.470873,7.718531,,1,,Europe/Paris,,OST, +OST:SA:CTPPLOEG_01,1,"Plobsheim Eglise",48.470491,7.722571,,1,,Europe/Paris,,OST, +OST:SA:CTPPLOMA_01,1,"Plobsheim Mairie",48.470499,7.725797,,1,,Europe/Paris,,OST, +OST:SA:CTPPLOST_01,1,"Plobsheim Est",48.465594,7.735869,,1,,Europe/Paris,,OST, +OST:SA:CTPPLPIE_01,1,"Place de Pierre",48.590729,7.744946,,1,,Europe/Paris,,OST, +OST:SA:CTPPLROM_01,1,"Place des Romains",48.579945,7.703841,,1,,Europe/Paris,,OST, +OST:SA:CTPPLWAT_01,1,"Place de Wattwiller",48.5608,7.783982,,1,,Europe/Paris,,OST, +OST:SA:CTPPOAPI_01,1,"Pôle API",48.525619,7.736521,,1,,Europe/Paris,,OST, +OST:SA:CTPPOAUT_01,1,"Port Autonome Sud",48.516015,7.775377,,1,,Europe/Paris,,OST, +OST:SA:CTPPOINC_01,1,"Poincaré",48.614067,7.732811,,1,,Europe/Paris,,OST, +OST:SA:CTPPOKUS_01,1,"Pont Kuss",48.58321,7.738449,,1,,Europe/Paris,,OST, +OST:SA:CTPPOLYG_01,1,"Polygone",48.55758,7.76613,,1,,Europe/Paris,,OST, +OST:SA:CTPPOPEA_01,1,"Pont du Péage",48.518397,7.702528,,1,,Europe/Paris,,OST, +OST:SA:CTPPOPHA_01,1,"Robertsau Pont Phario",48.612932,7.768666,,1,,Europe/Paris,,OST, +OST:SA:CTPPOPHA_03,1,"Pont Phario",48.613058,7.767205,,1,,Europe/Paris,,OST, +OST:SA:CTPPOPIE_01,1,"Pont de Pierre",48.586421,7.746276,,1,,Europe/Paris,,OST, +OST:SA:CTPPOSCH_03,1,"Pont Schuhansen",48.541293,7.762415,,1,,Europe/Paris,,OST, +OST:SA:CTPPOSNC_01,1,"Pont S.N.C.F.",48.66784,7.717008,,1,,Europe/Paris,,OST, +OST:SA:CTPPOVOS_01,1,"Pont des Vosges",48.587234,7.75962,,1,,Europe/Paris,,OST, +OST:SA:CTPPRESS_01,1,"Prés",48.560065,7.691988,,1,,Europe/Paris,,OST, +OST:SA:CTPPROVE_05,1,"Provence",48.546424,7.75815,,1,,Europe/Paris,,OST, +OST:SA:CTPPRRHI_03,1,"Port du Rhin",48.572745,7.795144,,1,,Europe/Paris,,OST, +OST:SA:CTPPRRTIR_1,1,"Port du Rhin Tiroir 1",48.576559,7.787691,,1,,Europe/Paris,,OST, +OST:SA:CTPPRUNE_01,1,"Prunelliers",48.614747,7.734879,,1,,Europe/Paris,,OST, +OST:SA:CTPPTHOP_01,1,"Porte de l'Hôpital",48.578068,7.750463,,1,,Europe/Paris,,OST, +OST:SA:CTPPULVE_01,1,"Pulverlaechel",48.488546,7.724408,,1,,Europe/Paris,,OST, +OST:SA:CTPQUQUI_01,1,"Quartier des Quinze",48.589207,7.782672,,1,,Europe/Paris,,OST, +OST:SA:CTPRADOR_01,1,"Raisin d'Or",48.633128,7.753963,,1,,Europe/Paris,,OST, +OST:SA:CTPRATHS_01,1,"Rathsamhausen",48.480877,7.712151,,1,,Europe/Paris,,OST, +OST:SA:CTPREMAI_01,1,"Reichstett Mairie",48.648528,7.753378,,1,,Europe/Paris,,OST, +OST:SA:CTPREMBR_01,1,"Rembrandt",48.566617,7.723507,,1,,Europe/Paris,,OST, +OST:SA:CTPREPUB_01,1,"République",48.586592,7.75384,,1,,Europe/Paris,,OST, +OST:SA:CTPRHINN_01,1,"Rhin",48.467241,7.731191,,1,,Europe/Paris,,OST, +OST:SA:CTPRHTOR_01,1,"Rhin Tortu",48.553454,7.757868,,1,,Europe/Paris,,OST, +OST:SA:CTPRIAAR_01,1,"Rives de l'Aar",48.60033,7.754237,,1,,Europe/Paris,,OST, +OST:SA:CTPRIEHL_01,1,"Riehl",48.542845,7.766073,,1,,Europe/Paris,,OST, +OST:SA:CTPRIETH_03,1,"Rieth",48.601769,7.722937,,1,,Europe/Paris,,OST, +OST:SA:CTPROCHA_01,1,"Robertsau Chasseurs",48.623492,7.786523,,1,,Europe/Paris,,OST, +OST:SA:CTPROCHE_01,1,"Rochechouart",48.649565,7.823183,,1,,Europe/Paris,,OST, +OST:SA:CTPROCHF_01,1,"Rochefort",48.521231,7.782139,,1,,Europe/Paris,,OST, +OST:SA:CTPRODIN_01,1,"Rodin",48.613158,7.68871,,1,,Europe/Paris,,OST, +OST:SA:CTPROEGL_01,1,"Robertsau Eglise",48.602973,7.78336,,1,,Europe/Paris,,OST, +OST:SA:CTPROETH_01,1,"Roethig",48.564499,7.706775,,1,,Europe/Paris,,OST, +OST:SA:CTPROHAN_01,1,"Route de Hangenbieten",48.560772,7.59043,,1,,Europe/Paris,,OST, +OST:SA:CTPROHME_03,1,"Rohmer",48.527903,7.716318,,1,,Europe/Paris,,OST, +OST:SA:CTPROHOL_01,1,"Route de Holtzheim",48.555572,7.617609,,1,,Europe/Paris,,OST, +OST:SA:CTPROMAI_01,1,"Romains",48.57844,7.701089,,1,,Europe/Paris,,OST, +OST:SA:CTPROMEE_01,1,"Rome",48.577258,7.768393,,1,,Europe/Paris,,OST, +OST:SA:CTPROREN_02,1,"Robertsau Renaissance",48.61467,7.790165,,1,,Europe/Paris,,OST, +OST:SA:CTPROREU_01,1,"Neuhof Rodolphe Reuss",48.546108,7.766902,,1,,Europe/Paris,,OST, +OST:SA:CTPROSEA_01,1,"Roseaux",48.518004,7.718848,,1,,Europe/Paris,,OST, +OST:SA:CTPROSTA_01,1,"Robertsau Sainte Anne",48.617298,7.788242,,1,,Europe/Paris,,OST, +OST:SA:CTPROSTA_03,1,"Robertsau Sainte Anne (terminus 15a-30)",48.616921,7.788108,,1,,Europe/Paris,,OST, +OST:SA:CTPROTON_05,1,"Rotonde",48.591836,7.725191,,1,,Europe/Paris,,OST, +OST:SA:CTPROYAN_01,1,"Royan",48.51854,7.778294,,1,,Europe/Paris,,OST, +OST:SA:CTPRTWAN_01,1,"Route de La Wantzenau",48.624275,7.754655,,1,,Europe/Paris,,OST, +OST:SA:CTPRTWOL_01,1,"Route de Wolfisheim",48.584255,7.679092,,1,,Europe/Paris,,OST, +OST:SA:CTPRUCHA_01,1,"Rue des Champs",48.644156,7.821515,,1,,Europe/Paris,,OST, +OST:SA:CTPRUCHR_01,1,"Rue des Charmilles",48.512623,7.717703,,1,,Europe/Paris,,OST, +OST:SA:CTPRUECK_01,1,"Rue d'Eckbolsheim",48.564086,7.690588,,1,,Europe/Paris,,OST, +OST:SA:CTPRUETA_03,1,"Rue de l'Etang",48.49607,7.687013,,1,,Europe/Paris,,OST, +OST:SA:CTPRUFOR_03,1,"Rue du Fort",48.529792,7.690381,,1,,Europe/Paris,,OST, +OST:SA:CTPRUGAR_01,1,"Rue de la Gare",48.61054,7.750744,,1,,Europe/Paris,,OST, +OST:SA:CTPRUHOE_01,1,"Rue de Hoenheim",48.624298,7.705576,,1,,Europe/Paris,,OST, +OST:SA:CTPRUJUI_01,1,"Rue des Juifs",48.554523,7.679926,,1,,Europe/Paris,,OST, +OST:SA:CTPRUMUN_01,1,"Rue de Mundolsheim",48.647809,7.702229,,1,,Europe/Paris,,OST, +OST:SA:CTPSALMM_01,1,"Salm",48.563776,7.708547,,1,,Europe/Paris,,OST, +OST:SA:CTPSCBAT_01,1,"Schiltigheim Campus Battement",48.610088,7.705189,,1,,Europe/Paris,,OST, +OST:SA:CTPSCCAM_01,1,"Schiltigheim Campus",48.610088,7.705189,,1,,Europe/Paris,,OST, +OST:SA:CTPSCHAA_01,1,"Schaal",48.487131,7.715366,,1,,Europe/Paris,,OST, +OST:SA:CTPSCHEI_01,1,"Scheidstein",48.49797,7.731188,,1,,Europe/Paris,,OST, +OST:SA:CTPSCHLE_01,1,"Schiltigheim le Marais",48.608714,7.767612,,1,,Europe/Paris,,OST, +OST:SA:CTPSCHLU_01,1,"Schluthfeld",48.568488,7.751662,,1,,Europe/Paris,,OST, +OST:SA:CTPSCHMA_01,1,"Schiltigheim Mairie",48.605238,7.74795,,1,,Europe/Paris,,OST, +OST:SA:CTPSCHNO_01,1,"Schnokeloch",48.579054,7.712191,,1,,Europe/Paris,,OST, +OST:SA:CTPSCHOT_01,1,"Schott",48.600394,7.780524,,1,,Europe/Paris,,OST, +OST:SA:CTPSCHUL_01,1,"Schulmeister",48.549876,7.75263,,1,,Europe/Paris,,OST, +OST:SA:CTPSDMWA_01,1,"Stade Michel Walter",48.542612,7.771194,,1,,Europe/Paris,,OST, +OST:SA:CTPSENEE_01,1,"Séné",48.516857,7.6554,,1,,Europe/Paris,,OST, +OST:SA:CTPSESOC_03,1,"Sécurité Sociale",48.575949,7.75657,,1,,Europe/Paris,,OST, +OST:SA:CTPSHAKE_01,1,"Shakespeare",48.594623,7.703932,,1,,Europe/Paris,,OST, +OST:SA:CTPSOCAN_01,1,"Souffelweyersheim Canal(Départ)",48.634362,7.751383,,1,,Europe/Paris,,OST, +OST:SA:CTPSOCAN_02,1,"Souffelweyersheim Canal",48.634165,7.75171,,1,,Europe/Paris,,OST, +OST:SA:CTPSOCEN_01,1,"Souffelweyersheim Centre",48.634281,7.737773,,1,,Europe/Paris,,OST, +OST:SA:CTPSOECO_01,1,"Souffelweyersheim Ecole",48.63351,7.741402,,1,,Europe/Paris,,OST, +OST:SA:CTPSOULT_01,1,"Soultz",48.565258,7.778442,,1,,Europe/Paris,,OST, +OST:SA:CTPSPORT_01,1,"Sports",48.564205,7.693828,,1,,Europe/Paris,,OST, +OST:SA:CTPSQCHA_01,1,"Square du Château",48.603645,7.750283,,1,,Europe/Paris,,OST, +OST:SA:CTPSTANT_01,1,"Saint Antoine",48.59782,7.709538,,1,,Europe/Paris,,OST, +OST:SA:CTPSTATI_01,1,"Station de Pompage",48.507661,7.609647,,1,,Europe/Paris,,OST, +OST:SA:CTPSTAUR_01,1,"Sainte Aurélie",48.581757,7.732151,,1,,Europe/Paris,,OST, +OST:SA:CTPSTCHR_01,1,"Saint Christophe",48.551061,7.766293,,1,,Europe/Paris,,OST, +OST:SA:CTPSTFLO_03,1,"Saint Florent",48.591613,7.720414,,1,,Europe/Paris,,OST, +OST:SA:CTPSTFLO_06,1,"Eglise Saint Florent",48.595814,7.722023,,1,,Europe/Paris,,OST, +OST:SA:CTPSTFRA_01,1,"Saint François",48.603533,7.787217,,1,,Europe/Paris,,OST, +OST:SA:CTPSTGAL_01,1,"Saint Gall",48.580237,7.719905,,1,,Europe/Paris,,OST, +OST:SA:CTPSTGUI_01,1,"Saint Guillaume",48.582835,7.75752,,1,,Europe/Paris,,OST, +OST:SA:CTPSTHEL_01,1,"Sainte Hélène",48.597194,7.741842,,1,,Europe/Paris,,OST, +OST:SA:CTPSTIGN_01,1,"Saint Ignace",48.531441,7.761653,,1,,Europe/Paris,,OST, +OST:SA:CTPSTJUN_01,1,"Saint Junien",48.607383,7.723196,,1,,Europe/Paris,,OST, +OST:SA:CTPSTMAR_01,1,"Sainte Marguerite",48.581361,7.736518,,1,,Europe/Paris,,OST, +OST:SA:CTPSTMAU_01,1,"Saint Maurice",48.58573,7.772154,,1,,Europe/Paris,,OST, +OST:SA:CTPSTNAZ_01,1,"Saint Nazaire",48.530686,7.779914,,1,,Europe/Paris,,OST, +OST:SA:CTPSTNIC_01,1,"Saint Nicolas",48.578501,7.748223,,1,,Europe/Paris,,OST, +OST:SA:CTPSTOSK_01,1,"Stoskopf",48.479283,7.707863,,1,,Europe/Paris,,OST, +OST:SA:CTPSTPAU_01,1,"Saint Paul",48.469342,7.728729,,1,,Europe/Paris,,OST, +OST:SA:CTPSTTHO_01,1,"Saint Thomas Finkwiller",48.578847,7.744372,,1,,Europe/Paris,,OST, +OST:SA:CTPSTUTZ_01,1,"Stutzheim",48.598363,7.714116,,1,,Europe/Paris,,OST, +OST:SA:CTPSTYRI_01,1,"Saint Yrieix",48.652183,7.825224,,1,,Europe/Paris,,OST, +OST:SA:CTPTANNE_03,1,"Tanneries",48.561512,7.694769,,1,,Europe/Paris,,OST, +OST:SA:CTPTAULE_01,1,"Tauler",48.588101,7.769788,,1,,Europe/Paris,,OST, +OST:SA:CTPTECHA_01,1,"Terres de la chapelle",48.538975,7.646093,,1,,Europe/Paris,,OST, +OST:SA:CTPTEMPL_01,1,"Temple",48.669333,7.708062,,1,,Europe/Paris,,OST, +OST:SA:CTPTINTO_01,1,"Tintoret",48.565008,7.728073,,1,,Europe/Paris,,OST, +OST:SA:CTPTITIE_01,1,"Titien",48.564558,7.725737,,1,,Europe/Paris,,OST, +OST:SA:CTPTOSTI_01,1,"Tobias Stimmer",48.52229,7.740898,,1,,Europe/Paris,,OST, +OST:SA:CTPTOURA_01,1,"Touraine",48.562806,7.688142,,1,,Europe/Paris,,OST, +OST:SA:CTPTRAVA_01,1,"Travail",48.589753,7.741963,,1,,Europe/Paris,,OST, +OST:SA:CTPTREPI_01,1,"Trois Epis",48.606837,7.735936,,1,,Europe/Paris,,OST, +OST:SA:CTPTRFON_01,1,"Tribunal - Fonderie",48.586874,7.749583,,1,,Europe/Paris,,OST, +OST:SA:CTPUNELS_01,1,"Unterelsau",48.562183,7.729874,,1,,Europe/Paris,,OST, +OST:SA:CTPUNIVE_01,1,"Université",48.582685,7.764064,,1,,Europe/Paris,,OST, +OST:SA:CTPUNJAE_01,1,"Unterjaegerhof",48.631639,7.80474,,1,,Europe/Paris,,OST, +OST:SA:CTPURBAN_01,1,"Urban",48.520124,7.688491,,1,,Europe/Paris,,OST, +OST:SA:CTPVANNE_01,1,"Vanneaux",48.554388,7.759435,,1,,Europe/Paris,,OST, +OST:SA:CTPVEGAR_01,1,"Vendenheim Gare",48.666699,7.717378,,1,,Europe/Paris,,OST, +OST:SA:CTPVEMAI_01,1,"Vendenheim Mairie",48.665576,7.711403,,1,,Europe/Paris,,OST, +OST:SA:CTPVERDN_01,1,"Verdun",48.588031,7.774003,,1,,Europe/Paris,,OST, +OST:SA:CTPVERDO_01,1,"Verdon",48.549587,7.736462,,1,,Europe/Paris,,OST, +OST:SA:CTPVERDU_01,1,"Geispolsheim Verdun",48.522345,7.683508,,1,,Europe/Paris,,OST, +OST:SA:CTPVERMA_05,1,"Vernois Mangold",48.546999,7.709238,,1,,Europe/Paris,,OST, +OST:SA:CTPVETIL_01,1,"Vendenheim au Tilleul",48.66871,7.71047,,1,,Europe/Paris,,OST, +OST:SA:CTPVIENN_01,1,"Vienne",48.613501,7.716661,,1,,Europe/Paris,,OST, +OST:SA:CTPVIGNS_01,1,"Vignes",48.521337,7.720316,,1,,Europe/Paris,,OST, +OST:SA:CTPVIHUG_01,1,"Victor Hugo",48.622671,7.730569,,1,,Europe/Paris,,OST, +OST:SA:CTPVILVE_01,1,"Villa Vénitienne",48.594693,7.725937,,1,,Europe/Paris,,OST, +OST:SA:CTPVIMOU_01,1,"Vieux Moulin",48.517868,7.679559,,1,,Europe/Paris,,OST, +OST:SA:CTPVIRGI_01,1,"Virgile",48.581436,7.699783,,1,,Europe/Paris,,OST, +OST:SA:CTPVOLTA_01,1,"Voltaire",48.614239,7.748387,,1,,Europe/Paris,,OST, +OST:SA:CTPVOOBE_01,1,"Vosges Oberlin",48.58965,7.750983,,1,,Europe/Paris,,OST, +OST:SA:CTPVOSGE_01,1,"Vosges",48.60409,7.690017,,1,,Europe/Paris,,OST, +OST:SA:CTPWACKE_01,1,"Wacken",48.598302,7.761213,,1,,Europe/Paris,,OST, +OST:SA:CTPWAGNE_01,1,"Wagner",48.586986,7.777441,,1,,Europe/Paris,,OST, +OST:SA:CTPWALDH_01,1,"Waldhorn",48.510016,7.72981,,1,,Europe/Paris,,OST, +OST:SA:CTPWASSE_01,1,"Wasselonne",48.584253,7.688099,,1,,Europe/Paris,,OST, +OST:SA:CTPWATTW_01,1,"Wattwiller",48.5612,7.785896,,1,,Europe/Paris,,OST, +OST:SA:CTPWATTW_F1,1,"Wattwiller descente",48.561182,7.785881,,1,,Europe/Paris,,OST, +OST:SA:CTPWEEBE_01,1,"Weeber",48.546099,7.751811,,1,,Europe/Paris,,OST, +OST:SA:CTPWELSC_01,1,"Welsch",48.533599,7.768401,,1,,Europe/Paris,,OST, +OST:SA:CTPWICHA_01,1,"Wibolsheim Chapelle",48.47678,7.706888,,1,,Europe/Paris,,OST, +OST:SA:CTPWICHU_01,1,"Winston Churchill",48.57391,7.766615,,1,,Europe/Paris,,OST, +OST:SA:CTPWIHRE_01,1,"Wihrel",48.554748,7.712829,,1,,Europe/Paris,,OST, +OST:SA:CTPWILSO_01,1,"Wilson",48.588121,7.739013,,1,,Europe/Paris,,OST, +OST:SA:CTPWISSE_01,1,"Wissembourg",48.589972,7.741073,,1,,Europe/Paris,,OST, +OST:SA:CTPWOLMA_01,1,"Wolfisheim Mairie",48.58341,7.666169,,1,,Europe/Paris,,OST, +OST:SA:CTPWOLSD_01,1,"Wolfisheim Stade",48.579017,7.666614,,1,,Europe/Paris,,OST, +OST:SA:CTPYPRES_01,1,"Ypres",48.586232,7.780678,,1,,Europe/Paris,,OST, +OST:SA:CTPZACBA_01,1,"ZAC des Maréchaux battement",48.634155,7.715307,,1,,Europe/Paris,,OST, +OST:SA:CTPZACMA_01,1,"ZAC des Maréchaux",48.634155,7.715307,,1,,Europe/Paris,,OST, +OST:SA:CTPZOCOM_01,1,"Zone Commerciale",48.656658,7.722085,,1,,Europe/Paris,,OST, +OST:SA:CTPZORNN_01,1,"Zorn",48.609306,7.75763,,1,,Europe/Paris,,OST, +OST:SA:CTPZURIC_01,1,"Zurich",48.579648,7.756089,,1,,Europe/Paris,,OST, +OTC:SA:CTP31000001,1,"Les Hôtels",49.387751,2.39029,,1,,Europe/Paris,,OTC, +OTC:SA:CTP31000002,1,"Croix Verte",49.38865,2.39777,,1,,Europe/Paris,,OTC, +OTC:SA:CTP31000003,1,"République",49.375931,2.451968,,1,,Europe/Paris,,OTC, +OTC:SA:CTP31000005,1,"Boulloirs",49.371201,2.4544,,1,,Europe/Paris,,OTC, +OTC:SA:CTP31000007,1,"Croix Blanche",49.373982,2.459998,,1,,Europe/Paris,,OTC, +OTC:SA:CTP31000009,1,"Verdun",49.372597,2.450156,,1,,Europe/Paris,,OTC, +OTC:SA:CTP31000010,1,"Zone Industrielle",49.379854,2.454206,,1,,Europe/Paris,,OTC, +OTC:SA:CTP31000011,1,"Guy Boulet",49.381931,2.45054,,1,,Europe/Paris,,OTC, +OTC:SA:CTP31000013,1,"Grand Air",49.360556,2.422522,,1,,Europe/Paris,,OTC, +OTC:SA:CTP31000015,1,"Lycée Roberval",49.363758,2.420264,,1,,Europe/Paris,,OTC, +OTC:SA:CTP31000016,1,"Rotheleux",49.364456,2.409619,,1,,Europe/Paris,,OTC, +OTC:SA:CTP31000017,1,"Petheil",49.36801,2.40748,,1,,Europe/Paris,,OTC, +OTC:SA:CTP31000018,1,"Paul Louis",49.370832,2.416389,,1,,Europe/Paris,,OTC, +OTC:SA:CTP31000021,1,"Ursulines",49.3746,2.41426,,1,,Europe/Paris,,OTC, +OTC:SA:CTP31000022,1,"Gambetta",49.38243,2.40422,,1,,Europe/Paris,,OTC, +OTC:SA:CTP31000023,1,"Jean Jaurès",49.38277,2.41091,,1,,Europe/Paris,,OTC, +OTC:SA:CTP31000026,1,"Colimaçon",49.383894,2.413499,,1,,Europe/Paris,,OTC, +OTC:SA:CTP31000027,1,"Saint Laurent",49.382353,2.40577,,1,,Europe/Paris,,OTC, +OTC:SA:CTP31000029,1,"Pont de pierre",49.381583,2.429553,,1,,Europe/Paris,,OTC, +OTC:SA:CTP31000032,1,"Centre",49.376105,2.413391,,1,,Europe/Paris,,OTC, +OTC:SA:CTP31000033,1,"Vienot",49.374089,2.40825,,1,,Europe/Paris,,OTC, +OTC:SA:CTP31000034,1,"De Gaulle",49.379267,2.413374,,1,,Europe/Paris,,OTC, +OTC:SA:CTP31000036,1,"La Croix de Creil",49.368439,2.41798,,1,,Europe/Paris,,OTC, +OTC:SA:CTP31000038,1,"Fernel",49.38461,2.396931,,1,,Europe/Paris,,OTC, +OTC:SA:CTP31000039,1,"Bethencourthel",49.372699,2.40782,,1,,Europe/Paris,,OTC, +OTC:SA:CTP31000040,1,"Clos de Censé",49.379719,2.40074,,1,,Europe/Paris,,OTC, +OTC:SA:CTP31000041,1,"Les Sables",49.38572,2.40095,,1,,Europe/Paris,,OTC, +OTC:SA:CTP31000042,1,"C.H.I.",49.38497,2.43966,,1,,Europe/Paris,,OTC, +OTC:SA:CTP31000043,1,"Grande Rue",49.34488,2.40813,,1,,Europe/Paris,,OTC, +OTC:SA:CTP31000045,1,"Commanderie",49.34581,2.4141,,1,,Europe/Paris,,OTC, +OTC:SA:CTP31000047,1,"Centre commercial",49.348748,2.430264,,1,,Europe/Paris,,OTC, +OTC:SA:CTP31000048,1,"Centre commercial",49.350134,2.426375,,1,,Europe/Paris,,OTC, +OTC:SA:CTP31000052,1,"Place de la république",49.3899,2.43074,,1,,Europe/Paris,,OTC, +OTC:SA:CTP31000054,1,"Nelson Mandela",49.3962,2.4203,,1,,Europe/Paris,,OTC, +OTC:SA:CTP31000055,1,"Louis Aragon",49.39374,2.42586,,1,,Europe/Paris,,OTC, +OTC:SA:CTP31000057,1,"Centre Aquatique",49.39839,2.42025,,1,,Europe/Paris,,OTC, +OTC:SA:CTP31000058,1,"Rue du Grand air",49.390629,2.42264,,1,,Europe/Paris,,OTC, +OTC:SA:CTP31000060,1,"Alfred Kastler",49.39586,2.42228,,1,,Europe/Paris,,OTC, +OTC:SA:CTP31000097,1,"Mairie",49.378943,2.415046,,1,,Europe/Paris,,OTC, +OTC:SA:CTP31000098,1,"Commerces",49.377429,2.414836,,1,,Europe/Paris,,OTC, +OTC:SA:CTP31000099,1,"Fontaines",49.378236,2.41023,,1,,Europe/Paris,,OTC, +OTC:SA:CTP31000100,1,"hôpital",49.379843,2.411979,,1,,Europe/Paris,,OTC, +OTC:SA:CTP31000101,1,"De Nerval",49.382239,2.401017,,1,,Europe/Paris,,OTC, +OTC:SA:CTP31000103,1,"Samson / Fay",49.379972,2.405953,,1,,Europe/Paris,,OTC, +OTC:SA:CTP31000110,1,"Calvaire",49.363978,2.413428,,1,,Europe/Paris,,OTC, +OTC:SA:CTP31000114,1,"Marais",49.365662,2.419662,,1,,Europe/Paris,,OTC, +OUM:SA:CTP7000001,1,"Zone Industrielle",49.305809,2.577099,,1,,Europe/Paris,,OUM, +OUM:SA:CTP7000002,1,"Artisans",49.305894,2.579696,,1,,Europe/Paris,,OUM, +OUM:SA:CTP7000003,1,"Papeterie",49.306971,2.58757,,1,,Europe/Paris,,OUM, +OUM:SA:CTP7000004,1,"SALPA",49.307393,2.591975,,1,,Europe/Paris,,OUM, +OUM:SA:CTP7000007,1,"Bateliers",49.30457,2.609324,,1,,Europe/Paris,,OUM, +OUM:SA:CTP7000008,1,"Ecluses",49.307585,2.615881,,1,,Europe/Paris,,OUM, +OUM:SA:CTP7000009,1,"Oursel",49.310346,2.618369,,1,,Europe/Paris,,OUM, +OUM:SA:CTP7000011,1,"Charles de Gaulle",49.315814,2.619842,,1,,Europe/Paris,,OUM, +OUM:SA:CTP7000012,1,"Vieux moulin",49.312801,2.613669,,1,,Europe/Paris,,OUM, +OUM:SA:CTP7000013,1,"Courtes Rayes",49.310951,2.609537,,1,,Europe/Paris,,OUM, +OUM:SA:CTP7000014,1,"Grégoire",49.309896,2.607008,,1,,Europe/Paris,,OUM, +OUM:SA:CTP7000015,1,"Champs de Mars",49.30701,2.604048,,1,,Europe/Paris,,OUM, +OUM:SA:CTP7000018,1,"Vieille montagne",49.293223,2.604598,,1,,Europe/Paris,,OUM, +OUM:SA:CTP7000019,1,"Clément-Brassens",49.295928,2.597088,,1,,Europe/Paris,,OUM, +OUM:SA:CTP7000020,1,"Piscine",49.294084,2.59713,,1,,Europe/Paris,,OUM, +OUM:SA:CTP7005021,1,"Collège",49.294063,2.598493,,1,,Europe/Paris,,OUM, +OUM:SA:CTP7005024,1,"Age d'Or",49.307989,2.603044,,1,,Europe/Paris,,OUM, +OUM:SA:CTP7005026,1,"La Plaine",49.314273,2.622045,,1,,Europe/Paris,,OUM, +OUM:SA:CTP7005031,1,"Z.A.C. Pasteur",49.30521,2.59317,,1,,Europe/Paris,,OUM, +OUM:SA:CTP7005035,1,"AUVELAIS",49.317961,2.605191,,1,,Europe/Paris,,OUM, +OUM:SA:CTP7005036,1,"VAL D'HALATTE",49.31887,2.605718,,1,,Europe/Paris,,OUM, +OUM:SA:CTP7005038,1,"Seuris",49.293402,2.606923,,1,,Europe/Paris,,OUM, +OUM:SA:CTP7005039,1,"Hôpital",49.296048,2.605889,,1,,Europe/Paris,,OUM, +OUM:SA:CTP7005040,1,"Cérabati",49.307713,2.596079,,1,,Europe/Paris,,OUM, +OUM:SA:CTP7005041,1,"Pompidou",49.307912,2.602377,,1,,Europe/Paris,,OUM, +OYY:SA:CTP4010001,1,"Office de Tourisme",49.194368,2.472841,,1,,Europe/Paris,,OYY, +OYY:SA:CTP4010003,1,"Boussac",49.169779,2.453469,,1,,Europe/Paris,,OYY, +OYY:SA:CTP4010004,1,"Centre culturel",49.193306,2.46682,,1,,Europe/Paris,,OYY, +OYY:SA:CTP4010005,1,"Collège des Bourgognes",49.202765,2.467927,,1,,Europe/Paris,,OYY, +OYY:SA:CTP4010006,1,"Château",49.191488,2.485116,,1,,Europe/Paris,,OYY, +OYY:SA:CTP4010008,1,"Cimetière St Pierre",49.187577,2.486942,,1,,Europe/Paris,,OYY, +OYY:SA:CTP4010009,1,"Clinique des Jockeys",49.17991,2.457,,1,,Europe/Paris,,OYY, +OYY:SA:CTP4010010,1,"Eglise",49.176612,2.457609,,1,,Europe/Paris,,OYY, +OYY:SA:CTP4010011,1,"Gare Arrivée",49.188308,2.459994,,1,,Europe/Paris,,OYY, +OYY:SA:CTP4010012,1,"Gendarmerie",49.171935,2.453501,,1,,Europe/Paris,,OYY, +OYY:SA:CTP4010014,1,"Lycée J.Rostand",49.181539,2.463007,,1,,Europe/Paris,,OYY, +OYY:SA:CTP4010015,1,"Magdeleine",49.174261,2.455301,,1,,Europe/Paris,,OYY, +OYY:SA:CTP4010016,1,"Mairie",49.19241,2.464624,,1,,Europe/Paris,,OYY, +OYY:SA:CTP4010017,1,"Notre dame / Musée du cheval",49.194514,2.478681,,1,,Europe/Paris,,OYY, +OYY:SA:CTP4010018,1,"Parc W Boitsfort",49.197428,2.46387,,1,,Europe/Paris,,OYY, +OYY:SA:CTP4010019,1,"Place Omer Vallon",49.194196,2.465725,,1,,Europe/Paris,,OYY, +OYY:SA:CTP4010022,1,"Square Marie Amélie",49.178569,2.45967,,1,,Europe/Paris,,OYY, +OYY:SA:CTP4015002,1,"Avenue Bourbon",49.180463,2.46112,,1,,Europe/Paris,,OYY, +OYY:SA:CTP4015007,1,"Cimetière Bourillon",49.189411,2.462807,,1,,Europe/Paris,,OYY, +OYY:SA:CTP4015013,1,"Lefébure",49.201811,2.460972,,1,,Europe/Paris,,OYY, +OYY:SA:CTP4015018,1,"Parc W. Boitsfort",49.198623,2.462319,,1,,Europe/Paris,,OYY, +OYY:SA:CTP4015020,1,"Quai de la Canardière",49.195294,2.463987,,1,,Europe/Paris,,OYY, +OYY:SA:CTP4015021,1,"Résidence le Morny",49.177121,2.461242,,1,,Europe/Paris,,OYY, +OYY:SA:CTP4015023,1,"Suffren",49.173791,2.457849,,1,,Europe/Paris,,OYY, +OYY:SA:CTP4015030,1,"Avenue de Sylvie",49.183005,2.462312,,1,,Europe/Paris,,OYY, +OYY:SA:CTP4015037,1,"Victor Hugo - Gare",49.187175,2.458565,,1,,Europe/Paris,,OYY, +SIN:SA:OCE80142927,1,"Gare de Kehl",48.576507,7.808029,,1,,Europe/Paris,,SIN, +SIN:SA:OCE80253914,1,"Gare de Saarbrucken-Hbf",49.240676,6.990983,,1,,Europe/Paris,,SIN, +SIN:SA:OCE82001000,1,"Gare de Luxembourg",49.599652,6.134007,,1,,Europe/Paris,,SIN, +SIN:SA:OCE82006030,1,"Gare de Bettembourg",49.515996,6.099371,,1,,Europe/Paris,,SIN, +SIN:SA:OCE85000109,1,"Gare de Basel-SBB",47.547038,7.589567,,1,,Europe/Paris,,SIN, +SIN:SA:OCE85011031,1,"Gare de Vallorbe-Cff",46.712229,6.370815,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87023655,1,"Vézelay",47.463587,3.741643,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87107409,1,"Vignory Centre",48.278333,5.101387,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87107417,1,"Chaumont-Hôpital",48.119716,5.139157,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87107425,1,"Bologne-Salle-des-Fêtes",48.199715,5.141379,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87107433,1,"Soncourt",48.252218,5.116931,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87107458,1,"Gudmont-Centre",48.342494,5.136931,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87107466,1,"Eurville-Mairie",48.585276,5.037212,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87107474,1,"St-Dizier-Godard-Jeanso",48.631387,4.950264,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87107482,1,"Chatonrupt",48.488885,5.127497,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87107490,1,"Fronville-Lotissement",48.404721,5.154718,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87107508,1,"Marnaval-Eglise",48.62527,4.989994,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87108829,1,"Sedan-Place-Calonne",49.699714,4.944158,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87110346,1,"Ervy-le-Châtel-Halle",48.041658,3.911108,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87110361,1,"Villeneuve-au-Chemin",48.089996,3.851378,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87110379,1,"Fays-La-Chapelle",48.129717,4.018883,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87111567,1,"Rodange.",27.140973,-3.404561,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87112326,1,"Carignan Rue Paix",49.635832,5.160544,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87112334,1,"Wé",49.640831,5.153887,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87112342,1,"Fromy",49.596383,5.249437,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87112714,1,"Margut Village",49.585269,5.265268,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87112771,1,"St-Hilaire-sous-Romilly",48.515828,3.656109,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87113001,1,"Gare de Paris-Est",48.87657,2.359151,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87113746,1,"Gare de Nogent-le-Perreux",48.838721,2.494077,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87113795,1,"Gare de Villiers/M.-Plessis-Tr.",48.82318,2.542323,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87116137,1,"Gare de Longueville (S.-et-M.)",48.513511,3.249685,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87116681,1,"Neuilly-St-Front",49.187092,3.270741,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87116699,1,"Oulchy-Brény",49.187631,3.35255,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87117119,1,"Auxon Eglise",48.103054,3.918328,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87117135,1,"Rehainviller",48.562601,6.469999,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87117143,1,"St-Pierremont",48.437495,6.576381,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87117267,1,"Orville",47.564566,5.213052,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87117275,1,"Torcenay",47.815703,5.463167,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87117341,1,"Vernois-sur-Mance",47.845704,5.785817,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87117366,1,"Blondefontaine",47.877692,5.867,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87117374,1,"Raincourt",47.859999,5.88583,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87117382,1,"Gevigney",47.79888,5.931665,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87117390,1,"Baulay",47.786524,6.009752,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87117408,1,"Amoncourt",47.735747,6.05986,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87117416,1,"Chaux-les-Port",47.712938,6.038739,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87117424,1,"Charmoille",47.662773,6.107495,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87117432,1,"Pusey",47.651939,6.126942,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87117440,1,"Martigny-les-Gerbonvaux",48.444794,5.792706,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87117457,1,"Autreville",48.484057,5.849124,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87117465,1,"Allamps-Esat",48.542793,5.79684,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87117473,1,"Mont-le-Vignoble-Centre",48.612419,5.841278,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87117499,1,"Hestroff",49.262272,6.433705,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87117507,1,"Vaudreching",49.285177,6.524443,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87117515,1,"Alzing",49.279032,6.552215,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87117523,1,"Hargarten-aux-Mines",49.225273,6.609162,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87117564,1,"Villette",49.474162,5.545541,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87117572,1,"Colmey-Flabeuville",49.457652,5.557194,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87117598,1,"Montigny-sur-Chiers",49.478761,5.669634,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87117606,1,"Lexy",49.499003,5.727229,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87117689,1,"Hertzing",48.686471,6.950671,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87117697,1,"Bébing",48.711785,6.998485,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87117903,1,"Bouilly (Mairie)",48.193611,3.998598,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87117911,1,"Chamoy-Carrefour D1/D23",48.116937,3.973048,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87117929,1,"Jeugny (Eglise)",48.130275,4.036379,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87117937,1,"Montigny-les-Monts-Mair",48.103333,3.946105,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87117945,1,"St-Germain (Aube) M.",27.140973,-3.404561,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87117952,1,"St Jean Bonneval (Egl.)",48.171664,4.048877,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87117960,1,"St Phal (Mon. Morts)",48.120549,3.996385,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87117978,1,"Villery",48.171102,4.018606,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87117986,1,"Neuvy-Sautour-RN",48.042774,3.792765,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87117994,1,"Brienon Mairie",47.991943,3.616936,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87118000,1,"Gare de Troyes",48.29503,4.065384,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87118067,1,"St-Lyé",48.358808,3.999129,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87118075,1,"Payns",48.382222,3.97749,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87118083,1,"Savières",48.412215,3.947215,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87118091,1,"St-Mesmin",48.4388,3.925694,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87118117,1,"Vallant-St-Georges",48.466079,3.899576,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87118133,1,"Chatres",48.499081,3.855185,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87118141,1,"Maizières-Gde-Parroisse",48.505066,3.78596,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87118158,1,"Gare de Romilly-sur-Seine",48.514173,3.728332,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87118182,1,"Marnay-sur-Seine",48.50942,3.561349,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87118190,1,"Gare de Nogent-sur-Seine",48.497837,3.493708,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87118257,1,"Gare de Vendeuvre (Aube)",48.240336,4.467188,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87118299,1,"Gare de Bar-sur-Aube",48.23855,4.706838,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87118414,1,"Ervy-le-Châtel-Gare",48.045023,3.922395,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87131961,1,"Gare de Brion-Montréal-La Cluse",46.175782,5.55851,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87134296,1,"Rouvray",47.424998,4.102215,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87139501,1,"Troyes-St-Martin",48.303328,4.06249,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87139519,1,"La Chapelle-St-Luc",48.313049,4.047777,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87139527,1,"Barberey-Centre-Comm",48.334158,4.023879,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87139535,1,"Barberey-Route-de-Méry",48.338883,4.030546,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87139550,1,"Mesgrigny",48.486386,3.8836,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87139568,1,"Méry-sur-Seine",48.508603,3.889157,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87139584,1,"Les Granges",48.501382,3.780554,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87139592,1,"Romilly-P-Sémard",48.506381,3.750829,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87139600,1,"Romilly-Gornet-Boivin",48.511942,3.741385,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87139659,1,"Troyes-Chambre-Commerce",48.291106,4.071103,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87139667,1,"Troyes-Lombards",48.278053,4.065822,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87139683,1,"St-André-Reine-Blanche",48.274716,4.059717,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87139733,1,"Rosières",48.256665,4.064713,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87139774,1,"St-Léger",48.235277,4.078885,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87139824,1,"Moussey",48.214441,4.094437,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87139857,1,"Roncenay",48.191102,4.065275,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87139865,1,"Lirey-La-Chapelle",48.156381,4.04221,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87139873,1,"Machy",48.139992,4.044165,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87139899,1,"Le Cheminot",48.147496,4.010272,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87139907,1,"Coursan-en-Othe",48.079717,3.830265,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87139998,1,"Toutry",47.499521,4.12221,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87141002,1,"Gare de Nancy-Ville",48.689782,6.174272,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87141044,1,"Gare de Toul",48.679041,5.880577,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87141069,1,"Gare de Liverdun",48.749397,6.061636,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87141077,1,"Gare de Frouard",48.755524,6.144248,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87141085,1,"Gare de Champigneulles",48.735091,6.169047,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87141143,1,"Gare de Mont-sur-Meurthe",48.559946,6.44984,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87141150,1,"Gare de Lunéville",48.587994,6.497035,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87141226,1,"Xermaménil",48.533236,6.461248,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87141234,1,"Gerbéviller",48.497216,6.51055,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87141242,1,"Moyen",48.483426,6.566433,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87141259,1,"Soulosse",48.400713,5.731763,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87141267,1,"Magnières",48.445293,6.565552,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87141291,1,"Gare de Neufchâteau",48.357259,5.690179,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87141523,1,"Gare de Pont-St-Vincent",48.602471,6.102964,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87141531,1,"Bainville",48.586548,6.099358,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87141549,1,"Xeuilley",48.569708,6.101966,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87141556,1,"Pierreville",48.549229,6.123817,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87141564,1,"Pulligny-Autrey",48.536024,6.13763,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87141572,1,"Ceintrey",48.523902,6.157423,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87141598,1,"Tantonville",48.483925,6.129099,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87141606,1,"Vézelise",48.480657,6.100419,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87141622,1,"Praye-sous-Vaudémont",48.432946,6.100703,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87141648,1,"Diarville",48.397397,6.126434,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87141705,1,"Domgermain-Centre.",48.645117,5.834001,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87141713,1,"Charmes-la-Côte-St-Flor",48.628973,5.835266,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87141721,1,"Blénod-lès-Toul-Les-Nau",48.599503,5.843529,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87141739,1,"Bulligny-Centre",48.576463,5.851268,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87141747,1,"Lamerey",48.221665,6.2386,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87141754,1,"Barisey-la-Côte",48.534725,5.840462,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87141788,1,"Gare de Pompey",48.773245,6.130667,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87141796,1,"Gare de Marbache",48.801207,6.10931,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87141804,1,"Gare de Belleville",48.819461,6.101753,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87141812,1,"Gare de Dieulouard",48.843705,6.071669,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87141820,1,"Gare de Pont-à-Mousson",48.900276,6.050802,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87142000,1,"Gare de Chaumont",48.109454,5.134445,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87142042,1,"Luzy-sur-Marne",48.060276,5.180277,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87142091,1,"Gare de Langres",47.877255,5.34468,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87142125,1,"Gare de Culmont-Chalindrey",47.810232,5.443216,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87142133,1,"Chaudenay (Haute-Marne)",47.817407,5.490823,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87142174,1,"Vitrey-Vernois",47.832454,5.781196,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87142182,1,"Barges",47.862585,5.846754,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87142240,1,"Gare de Froncles",48.296653,5.141589,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87142273,1,"Gare de Donjeux",48.365953,5.148406,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87142406,1,"Merrey (Haute-Marne)",48.054082,5.594866,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87142497,1,"Damblain",48.093964,5.657025,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87142554,1,"Châtillon-sur-Seine",47.87019,4.571746,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87142612,1,"Prauthoy",47.683207,5.293521,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87142620,1,"Vaux-sous-Aubigny",47.656763,5.288917,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87142646,1,"Selongey",47.575529,5.203177,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87142661,1,"Maatz",47.702046,5.447827,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87142687,1,"Champlitte",47.617099,5.512465,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87142695,1,"Neuvelle-les-Champlitte",47.585646,5.545273,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87142703,1,"Oyrières",47.532031,5.56372,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87142711,1,"Chargey-les-Gray",47.487217,5.576663,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87142786,1,"Til-Chatel-Mairie",47.515636,5.175507,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87143024,1,"Gare de Vraincourt-Vieville",48.237101,5.123848,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87143107,1,"Le Pailly",47.791664,5.414719,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87143206,1,"Rivières-le-Bois",47.737773,5.441665,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87143214,1,"Grandchamp",47.723325,5.450823,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87143222,1,"Leffond",47.662532,5.463552,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87143305,1,"Arc-les-Gray",47.456096,5.589146,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87143354,1,"Coublanc",47.69111,5.459557,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87143362,1,"Ecuelle",47.55223,5.555345,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87143420,1,"Dampierre-sur-Salon",47.555271,5.678048,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87143594,1,"Roville-aux-Chênes",48.385262,6.602697,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87144006,1,"Gare de Epinal",48.178078,6.441555,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87144014,1,"Gare de St-Dié-des-Vosges",48.282238,6.948056,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87144030,1,"Gare de Docelles-Cheniménil",48.141471,6.606979,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87144048,1,"Gare de Lépanges",48.17268,6.67216,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87144055,1,"Gare de Charmes (Vosges)",48.378659,6.301303,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87144105,1,"Gare de Raves-Ban-de-Laveline",48.265719,7.037474,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87144154,1,"Gare de Bruyères (Vosges)",48.20475,6.719211,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87144162,1,"Gare de Laveline-devant-Bruyère",48.185524,6.751638,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87144188,1,"Gare de Biffontaine",48.205873,6.806999,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87144196,1,"Gare de Corcieux-Vanémont",48.198435,6.877644,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87144212,1,"Mirecourt",48.299226,6.129346,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87144220,1,"Hymont-Mattaincourt",48.270735,6.14054,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87144279,1,"Vittel",48.202459,5.942257,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87144287,1,"Contrexéville",48.17998,5.890984,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87144295,1,"Martigny-les-Bains",48.108694,5.825823,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87144303,1,"Lamarche (Vosges)",48.089978,5.76027,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87144311,1,"Rozières-sur-Mouzon",48.120892,5.705341,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87144345,1,"Gare de Provenchères-sur-Fave",48.304653,7.085157,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87144410,1,"Gare de Arches",48.119961,6.528009,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87144451,1,"Gare de Remiremont",48.016367,6.599041,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87144469,1,"Vecoux",47.978727,6.636332,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87144477,1,"Gare de St-Léonard (Vosges)",48.217703,6.942358,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87144519,1,"Rupt-sur-Moselle",47.92397,6.659957,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87144527,1,"Ferdrupt",47.907734,6.707536,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87144535,1,"Ramonchamp",47.892175,6.739542,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87144543,1,"Le Thillot",47.882071,6.760914,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87144550,1,"Fresse",47.875741,6.782663,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87144568,1,"St-Maurice-sur-Moselle",47.854787,6.818736,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87144634,1,"Vagney",48.009166,6.716272,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87144659,1,"Zainvillers",47.993952,6.716336,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87144667,1,"Thiéfosse",47.971802,6.729827,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87144675,1,"Gare de Saulxures sur Moselotte",47.948988,6.770857,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87144691,1,"Cornimont",47.962676,6.8374,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87144709,1,"Deinvillers",48.422969,6.58175,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87144725,1,"Rambervillers",48.340631,6.634851,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87144733,1,"Jeanménil",48.329993,6.674988,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87144758,1,"Autrey",48.296467,6.687948,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87144774,1,"Dompaire",48.220559,6.227686,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87144782,1,"Brouvelieures",48.235242,6.731518,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87146019,1,"Bocquegney",48.218331,6.30777,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87146035,1,"Racécourt",48.257083,6.193229,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87146043,1,"Velotte-et-Tatignécourt",48.263105,6.171184,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87146225,1,"Hielle (Rupt)",47.963755,6.634213,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87146233,1,"Maxonchamp",47.94568,6.635435,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87146241,1,"Dommartin (Vosges)",47.998602,6.644434,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87146290,1,"Blanchifontaine",48.33861,6.658604,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87146308,1,"Frémifontaine",48.276503,6.692577,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87151761,1,"Ouge",47.796645,5.704103,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87171009,1,"Gare de Reims",49.259066,4.024017,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87171330,1,"Gare de Fismes",49.31085,3.682292,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87171348,1,"Bazoches",49.305277,3.61325,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87171355,1,"Mont-Notre-Dame",49.296667,3.576533,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87171371,1,"Fère-en-Tardenois",49.208562,3.504261,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87171512,1,"Gare de Dormans",49.079251,3.641728,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87171553,1,"Gare de Epernay",49.046521,3.96021,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87171611,1,"Gare de Val-de-Vesle (Marne)",49.178405,4.221674,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87171629,1,"Gare de Prunay",49.198825,4.183555,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87171637,1,"Gare de Sillery",49.203362,4.144066,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87171645,1,"Gare de Sept-Saulx",49.151483,4.25648,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87171926,1,"Gare de Champagne-Ardenne",49.21164,3.988788,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87172007,1,"Gare de Charleville-Mézières",49.76742,4.724849,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87172155,1,"Gare de Mohon",49.752647,4.733252,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87172189,1,"Gare de Lumes-Halte",49.733176,4.782873,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87172213,1,"Gare de Nouvion-sur-Meuse",49.696976,4.794932,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87172221,1,"Gare de Vrigne-Meuse",49.70068,4.843068,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87172239,1,"Gare de Donchery",49.698119,4.874566,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87172254,1,"Gare de Sedan",49.694861,4.929989,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87172304,1,"Pont-Maugis",49.670284,4.955128,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87172312,1,"Bazeilles",49.672205,4.9866,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87172320,1,"Douzy",49.671665,5.036666,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87172338,1,"Pouru-St-Rémy",49.67327,5.082375,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87172346,1,"Sachy",49.669161,5.130821,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87172353,1,"Gare de Carignan",49.62852,5.168468,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87172387,1,"Blagny",49.619637,5.189692,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87172395,1,"Linay",49.61527,5.221109,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87172411,1,"Margut-Fromy",49.590646,5.257004,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87172700,1,"Remilly-Aillicourt",49.655386,4.990211,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87173302,1,"Wadelincourt",49.685275,4.94083,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87173401,1,"La Ferté-sur-Chiers",49.57555,5.239708,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87174003,1,"Gare de Châlons-en-Champagne",48.955509,4.348954,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87174276,1,"Gare de Vitry-le-François",48.717733,4.587232,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87174326,1,"Blesme-Haussignemont",48.721554,4.752511,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87174409,1,"Gare de Mourmelon-le-Petit",49.131225,4.317717,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87174425,1,"Uxegney",48.194543,6.368601,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87174433,1,"Gare de Bouy",49.090872,4.353519,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87174441,1,"Gare de St-Hilaire-au-Temple",49.056345,4.379006,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87174458,1,"Darnieulles",48.199046,6.349891,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87174482,1,"Mattaincourt",48.279668,6.136535,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87174490,1,"St-Amé",48.024994,6.669711,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87174508,1,"Le Syndicat",48.024869,6.683771,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87175000,1,"Gare de St-Dizier",48.642806,4.947186,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87175042,1,"Gare de Bar-le-Duc",48.773631,5.167016,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87175091,1,"Gare de Joinville",48.44475,5.144287,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87175109,1,"Curel",48.492221,5.135552,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87175117,1,"Gare de Chevillon",48.524273,5.111825,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87175133,1,"Gare de Bayard",48.551521,5.076273,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87175208,1,"Villiers-en-Lieu",48.663352,4.89748,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87175216,1,"St-Eulien",48.678227,4.868118,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87175257,1,"Gare de Commercy",48.765868,5.588885,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87175778,1,"Gare de Verdun",49.165423,5.380066,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87175794,1,"Gare de Etain",49.207707,5.639482,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87181131,1,"Gare de Graffenwald",47.780296,7.225576,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87181552,1,"Gare de St-Gilles-L (Haut-Rhin)",48.075345,7.26056,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87182014,1,"Gare de Colmar",48.073154,7.347084,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87182063,1,"Gare de Mulhouse",47.741798,7.34285,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87182089,1,"Gare de Habsheim",47.737589,7.417936,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87182139,1,"Gare de St-Louis (Haut-Rhin)",47.590366,7.55553,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87182238,1,"Gare de Altkirch",47.627106,7.239591,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87182253,1,"Gare de Dannemarie",47.627404,7.123805,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87182329,1,"Gare de Herrlisheim-près-Colmar",48.017573,7.320563,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87182337,1,"Gare de Rouffach",47.960089,7.312419,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87182360,1,"Gare de Walbach-la-Forge",48.058625,7.234064,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87182378,1,"Gare de Wihr-au-Val-Soultzbach",48.04621,7.209664,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87182394,1,"Gare de Munster",48.038247,7.132837,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87182410,1,"Gare de Cernay (Haut-Rhin)",47.801708,7.173937,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87182568,1,"Gare de Thann",47.809107,7.107,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87182584,1,"Gare de Willer-sur-Thur",47.842615,7.069192,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87182592,1,"Gare de Moosch",47.86109,7.050591,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87182618,1,"Gare de Wesserling",47.889741,6.997841,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87182642,1,"Gare de Kruth",47.922469,6.969584,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87182667,1,"Gare de Lutterbach (Haut-Rhin)",47.757923,7.276764,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87182717,1,"Gare de Raedersheim",47.886989,7.284056,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87182725,1,"Gare de Merxheim",47.913117,7.302415,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87182733,1,"Gare de Muhlbach-sur-Munster",48.024584,7.087677,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87182816,1,"Gare de Metzeral",48.013586,7.073178,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87182881,1,"Gare de Thann-Saint-Jacques",47.813107,7.094012,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87184002,1,"Gare de Belfort-Ville",47.632447,6.853924,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87184267,1,"Gare de Petit-Croix",47.610113,6.994637,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87184275,1,"Gare de Montreux-Vieux",47.617858,7.025393,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87184507,1,"Gare de Héricourt",47.573218,6.769411,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87184523,1,"Gare de Montbéliard-Ville",47.510544,6.801315,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87185009,1,"Gare de Vesoul",47.617799,6.151767,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87185108,1,"Port-d'Atelier-Amance",47.762474,6.039972,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87185124,1,"Port-sur-Saône",47.688329,6.044996,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87185157,1,"Grattery",47.680725,6.083344,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87185165,1,"Vaivre",47.63287,6.101362,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87185173,1,"Noidans-lès-Vesoul",47.618803,6.126894,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87185207,1,"Colombier",47.664099,6.210149,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87185249,1,"Gare de Lure",47.683249,6.492557,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87185280,1,"Montureux-les-Baulay",47.814096,5.984973,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87185314,1,"Gare de Ronchamp",47.698972,6.623448,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87185330,1,"St-Loup-sur-Semouse",47.885633,6.275746,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87185348,1,"Gare de Champagney",47.702952,6.701246,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87185355,1,"Jussey",47.836792,5.903474,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87185405,1,"Mont-le-Vernois",47.607245,6.04614,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87185421,1,"Velle-le-Châtel",47.601017,6.045212,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87185439,1,"Razé",47.582802,6.011189,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87185447,1,"Noidans-le-Ferroux",47.570731,5.953729,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87185454,1,"Fresne-St-Mamès",47.5486,5.859783,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87185488,1,"Vellexon",47.561622,5.80587,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87185512,1,"Seveux",47.556594,5.748604,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87185520,1,"Savoyeux-Mercey",47.546675,5.745495,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87185538,1,"Autet",47.541866,5.693945,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87185546,1,"Montureux",47.506037,5.637755,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87185553,1,"Vereux",47.521268,5.64698,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87185579,1,"Gray",47.451552,5.57849,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87185595,1,"Gare de Luxeuil-les-Bains",47.814919,6.372675,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87185629,1,"Gare de Aillevillers",47.913865,6.337389,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87191007,1,"Gare de Thionville",49.353923,6.168855,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87191106,1,"Gare de Maizières-lès-Metz",49.215223,6.158484,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87191114,1,"Gare de Hagondange",49.253812,6.164402,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87191130,1,"Gare de Uckange",49.303334,6.15658,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87191163,1,"Gare de Hettange-Grande",49.40764,6.1568,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87191213,1,"Knutange-Nilvange",49.340765,6.039121,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87191239,1,"Gare de Hayange",49.330412,6.073163,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87191296,1,"Metzeresche",49.299188,6.304982,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87191304,1,"Yutz",49.36113,6.208928,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87191346,1,"Kédange",49.305607,6.33251,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87191379,1,"Ebersviller",49.274601,6.411122,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87191387,1,"Anzeling",49.262586,6.458432,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87191395,1,"Freistroff",49.278649,6.493273,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87191403,1,"Aboncourt",49.261034,6.346529,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87191411,1,"Remelfang",49.272123,6.504515,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87191601,1,"Gare de Basse-Ham",49.380299,6.23447,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87191684,1,"Gare de Auboué",49.216148,5.971047,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87191692,1,"Gare de Homécourt",49.218358,5.999515,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87191700,1,"Gare de Joeuf",49.22508,6.017915,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87191718,1,"Gare de Moyeuvre-Grande",49.247012,6.043197,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87191734,1,"Gare de Rombas-Clouange",49.256043,6.099254,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87191742,1,"Gare de Gandrange-Amnéville",49.260891,6.135794,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87192039,1,"Gare de Metz-Ville",49.109787,6.177198,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87192088,1,"Gare de Woippy",49.148358,6.155677,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87192104,1,"Aubecourt",48.995552,6.428886,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87192120,1,"Lucy",48.942322,6.468105,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87192138,1,"Chenois",48.959425,6.499004,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87192146,1,"Holacourt",48.972723,6.514797,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87192153,1,"Arraincourt",48.970926,6.531397,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87192179,1,"Racrange",48.925555,6.661939,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87192187,1,"Bermering",48.931381,6.709719,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87192195,1,"Marimont-lès-Bénestroff",48.889993,6.783881,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87192237,1,"Gare de Rémilly",49.014066,6.395031,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87192245,1,"Baudrecourt",48.96132,6.452198,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87192252,1,"Lesse",48.962518,6.506305,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87192260,1,"Brulange",48.96954,6.548494,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87192286,1,"Gare de Morhange",48.936774,6.659093,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87192401,1,"Gare de Ars-sur-Moselle",49.074565,6.077928,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87192419,1,"Gare de Ancy-sur-Moselle",49.057435,6.062451,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87192427,1,"Gare de Novéant",49.028657,6.05203,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87192435,1,"Gare de Onville",49.01364,5.979094,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87192468,1,"Gare de Pagny-sur-Moselle",48.985345,6.025174,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87192476,1,"Gare de Vandières",48.952497,6.038855,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87192658,1,"Gare de Baroncourt",49.284381,5.700175,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87192666,1,"Gare de Conflans-Jarny",49.16638,5.868244,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87192724,1,"Gare de Hatrize",49.193944,5.907503,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87192732,1,"Gare de Valleroy-Moineville",49.20574,5.935926,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87192880,1,"Ugny-Meurthe-et-Moselle",49.471984,5.697419,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87193003,1,"Gare de Forbach",49.189491,6.901849,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87193110,1,"Baronville",48.934417,6.60861,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87193128,1,"Vahl-lès-Bénestroff",48.913329,6.786664,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87193136,1,"Han-sur-Nied",48.990499,6.436376,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87193144,1,"Hargarten-Falck",49.218802,6.633624,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87193151,1,"Téterchen",49.227211,6.572298,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87193169,1,"Brettnach",49.257848,6.563853,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87193177,1,"Bouzonville",49.289832,6.529747,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87193219,1,"Merten",49.248719,6.661951,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87193235,1,"Marville",49.452999,5.458305,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87193243,1,"Ire-le-Sec",49.476132,5.386516,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87193250,1,"Gare de Bening",49.138076,6.829009,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87193268,1,"Peccavillers",48.015553,6.668331,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87193508,1,"Théding",49.117754,6.889214,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87193532,1,"Diebling-Centre.",49.109092,6.939875,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87193540,1,"Gare de Hundling",49.107541,6.981621,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87193557,1,"Metzing",49.105603,6.957756,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87193565,1,"Ippling",49.106363,7.004946,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87193607,1,"Welferding",49.112602,7.046235,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87193615,1,"Gare de Sarreguemines",49.107505,7.068873,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87193623,1,"Gare de Remelfing",49.091438,7.09129,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87193631,1,"Gare de Sarreinsming",49.086181,7.11183,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87193649,1,"Gare de Zetting",49.078333,7.134496,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87193656,1,"Gare de Wittring",49.055964,7.141142,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87193664,1,"Gare de Kalhausen",49.034995,7.125484,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87193672,1,"Gare de Herbitzheim",49.016428,7.081851,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87193714,1,"Gare de Sarralbe",49.00095,7.035714,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87193771,1,"Woelfling-Sarreguemines",49.094869,7.190733,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87193789,1,"Rohrbach-les-Bitche",49.055356,7.26436,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87193797,1,"Petit-Rederching",49.049382,7.299487,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87193813,1,"Lemberg (Moselle)",49.00072,7.3801,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87193821,1,"Bitche",49.049123,7.431601,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87193839,1,"Bitche-Camp",49.052865,7.477499,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87194001,1,"Gare de Longwy",49.513026,5.769596,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87194019,1,"Ebring",49.116599,6.910996,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87194209,1,"Gare de Montmédy",49.522788,5.371044,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87194258,1,"Charency-Vezin",49.487538,5.513344,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87194274,1,"Gare de Longuyon",49.444275,5.604598,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87194357,1,"Gare de Audun-le-Roman",49.366686,5.891201,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87194365,1,"Fontoy",49.355792,5.989775,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87194449,1,"Rehon",49.50863,5.755632,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87194456,1,"Cons-la-Grandville",49.486196,5.70557,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87194480,1,"La Roche-sous-Montigny",49.476382,5.657475,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87194498,1,"Viviers-sur-Chiers",49.471276,5.633208,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87199604,1,"Gros-Réderching",49.068039,7.219696,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87199612,1,"Schwangerbach",49.032556,7.408492,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87199620,1,"Destry",48.943426,6.584706,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87204677,1,"Cussy-les-Forges",47.4713,4.025991,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87204685,1,"Huis Renaud (l')",47.2001,4.27231,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87212027,1,"Gare de Strasbourg",48.585172,7.733968,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87212142,1,"Gare de Mommenheim",48.755663,7.642139,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87212167,1,"Gare de Hochfelden",48.755437,7.571964,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87212183,1,"Gare de Dettwiller",48.751711,7.465417,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87212225,1,"Gare de Saverne",48.744779,7.362152,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87212266,1,"Gare de Fegersheim-Lipsheim",48.490943,7.672556,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87212308,1,"Gare de Bischheim",48.61165,7.742136,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87212324,1,"Gare de Kilstett",48.679216,7.854015,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87212332,1,"Gare de Gambsheim",48.694941,7.87892,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87212340,1,"Gare de Herrlisheim (Bas-Rhin)",48.727519,7.910374,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87212357,1,"Gare de Drusenheim",48.765977,7.947479,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87212365,1,"Gare de Sessenheim",48.796075,7.988694,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87212373,1,"Gare de Rountzenheim",48.820027,8.01138,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87212407,1,"Gare de Roeschwoog",48.833395,8.029565,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87212415,1,"Gare de Roppenheim",48.851169,8.06231,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87212431,1,"Gare de Seltz",48.89644,8.098003,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87212464,1,"Gare de Lauterbourg",48.967255,8.182819,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87213058,1,"Gare de Haguenau",48.813433,7.782371,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87213108,1,"Gare de Schweighouse (Bas-Rhin)",48.828558,7.742343,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87213132,1,"Pfaffenhoffen",48.843559,7.615192,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87213165,1,"Gare de Obermodern",48.84255,7.547196,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87213207,1,"Gare de Mertzwiller",48.871997,7.678352,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87213223,1,"Gare de Gundershoffen",48.905376,7.653103,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87213231,1,"Reichshoffen-Usines",48.919457,7.652459,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87213249,1,"Gare de Reichshoffen-Ville",48.930713,7.657977,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87213256,1,"Gare de Niederbronn",48.952354,7.633796,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87213298,1,"Bannstein",49.004991,7.502957,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87213421,1,"Gare de Soultz-sous-Forêts",48.934514,7.882145,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87213470,1,"Gare de Wissembourg",49.031533,7.950306,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87213603,1,"Gare de Marienthal",48.781823,7.823388,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87213611,1,"Gare de Bischwiller",48.765425,7.851189,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87213744,1,"Gare de Wingen-sur-Moder",48.920058,7.380586,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87213769,1,"Wimmenau",48.911274,7.427249,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87213785,1,"Gare de Ingwiller",48.871759,7.476802,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87213827,1,"Ettendorf-Gare-Routière",48.80917,7.584605,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87213884,1,"Niedermodern/Uberach",48.846527,7.627873,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87214056,1,"Gare de Sélestat",48.259638,7.442103,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87214122,1,"Gare de Benfeld",48.373796,7.584374,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87214148,1,"Gare de Erstein",48.422869,7.638134,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87214205,1,"Gare de Scherwiller",48.286584,7.43054,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87214213,1,"Gare de Dambach-la-Ville",48.321184,7.4355,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87214247,1,"Gare de Barr",48.403046,7.456908,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87214254,1,"Gare de Gertwiller",48.413295,7.465911,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87214270,1,"Gare de Goxwiller",48.432595,7.478705,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87214296,1,"Gare de Bischoffsheim",48.48678,7.498058,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87214320,1,"Gare de Rosheim",48.504968,7.491276,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87214338,1,"Gare de Dorlisheim",48.524289,7.492819,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87214528,1,"Gare de Entzheim-Aéroport",48.547002,7.62795,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87214536,1,"Gare de Duppigheim",48.544067,7.587094,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87214544,1,"Gare de Duttlenheim",48.545603,7.565647,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87214577,1,"Gare de Molsheim",48.537525,7.500206,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87214627,1,"Gare de Heiligenberg-Mollkirch",48.527489,7.381501,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87214635,1,"Gare de Urmatt",48.525535,7.338268,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87214676,1,"Gare de Wisches",48.507634,7.27018,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87214684,1,"Gare de Russ-Hersbach",48.498292,7.252274,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87214692,1,"Gare de Schirmeck-la-Broque",48.480459,7.216195,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87214726,1,"Gare de Rothau",48.45899,7.207337,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87214742,1,"Gare de St-Blaise-Roche-Poutay",48.407599,7.165357,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87214783,1,"Gare de Saales",48.347087,7.110546,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87214841,1,"Ste-Croix-aux-Mines",48.261719,7.230034,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87214940,1,"Le Ménilot",48.239166,4.298606,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87214965,1,"Forges-de-Clairvaux(Les",48.159992,4.789996,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87214981,1,"Daudes",48.244998,4.183884,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87215012,1,"Gare de Sarrebourg",48.737941,7.052781,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87215038,1,"Marnay-sur-Marne",48.015548,5.241382,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87215061,1,"Chaumont-Quartier-Foch",48.096662,5.145277,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87215103,1,"Gare de Igney-Avricourt",48.646398,6.805818,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87215111,1,"Nouvel-Avricourt",48.651707,6.821629,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87215129,1,"Réchicourt-le-Château",48.665157,6.840662,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87215137,1,"Gondrexange",27.140973,-3.404561,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87215145,1,"Héming",48.691743,6.970887,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87215152,1,"Arzviller",48.717693,7.164208,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87215160,1,"Gare de Lutzelbourg",48.729855,7.251401,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87215178,1,"Hommarting",48.748183,7.137154,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87215202,1,"Villiers-le-Sec(Mairie)",48.108051,5.065276,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87215210,1,"Villiers-le-Sec(Poste)",48.109164,5.066933,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87215228,1,"Buxieres-les-Villiers",48.105,5.036934,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87215236,1,"St-Jean-de-Bassel",48.803542,6.991207,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87215244,1,"Gosselming",48.792855,7.000837,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87215251,1,"Dolving",48.773806,7.019313,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87215277,1,"Cutting",48.84611,6.832491,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87215285,1,"Domnon-les-Dieuze",48.859715,6.821938,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87215293,1,"Bassing",48.867771,6.801103,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87215301,1,"Nébing",48.904685,6.811019,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87215319,1,"Loudrefing",48.851329,6.877591,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87215327,1,"Mittersheim",48.86189,6.941759,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87215335,1,"Gare de Berthelming",48.81027,7.00836,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87215343,1,"Oberstinzel",48.792631,7.03509,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87215350,1,"Sarraltroff-Gare-SNCF",48.770065,7.065766,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87215368,1,"Bettborn",48.801137,7.020567,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87215418,1,"Niederstinzel",48.86355,7.031314,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87215426,1,"Wolfskirchen",48.879265,7.071438,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87215434,1,"Bischtroff-sur-Sarre",48.903465,7.073502,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87215442,1,"Sarrewerden",48.923883,7.082161,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87215459,1,"Gare de Sarre-Union",48.9366,7.085419,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87215483,1,"Gare de Schopperten",48.945649,7.055715,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87215491,1,"Gare de Keskastel",48.965412,7.048837,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87215533,1,"Orges",48.080828,4.926654,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87215541,1,"Pont-la-Ville",48.083611,4.890833,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87215558,1,"Cirfontaines-en-Azois",48.110549,4.872499,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87215574,1,"Longchamp-sur-Aujon",48.148056,4.83305,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87215582,1,"Ville-sous-La-Ferté",48.119997,4.789435,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87215608,1,"Bar-sur-Aube(Hôpital)",48.230829,4.714999,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87215616,1,"Bar-sur-Aube(Piscine)",48.241109,4.697217,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87215624,1,"Ailleville",48.254722,4.682218,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87215632,1,"Gare de Oermingen",49.001048,7.131929,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87215665,1,"Gare de Diemeringen",48.941036,7.184781,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87215699,1,"Gare de Tieffenbach-Struth",48.906027,7.255304,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87215707,1,"Arsonval",48.268047,4.648888,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87215731,1,"Trannes",48.302777,4.584722,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87215756,1,"Bossancourt",48.283605,4.60138,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87215921,1,"Chanoy",47.924163,5.291666,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87215939,1,"Magny-Fouchard",48.241663,4.534436,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87215947,1,"Vendeuvre-Centre",48.237498,4.466939,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87215988,1,"Lusigny-sur-Barse Centr",48.254719,4.267497,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87216010,1,"Rouilly-St-Loup-D21",48.262776,4.151105,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87216028,1,"St-Julien-Villas-Mairie",48.273883,4.100833,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87216036,1,"Troyes(Bld 14 Juillet)",48.294162,4.079709,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87216051,1,"Troyes-Victor-Hugo",48.29305,4.06916,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87216077,1,"Langres-Boulière",47.862777,5.33055,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87216093,1,"Langres-St-Gilles",47.872774,5.338326,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87216101,1,"Langres-Bel-Air",47.858604,5.332212,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87216119,1,"Romilly-S/S SNCF",48.513884,3.729989,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87216127,1,"Romilly-S/S Hôpital",48.515824,3.715546,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87216135,1,"Pont-S/S Fleming",48.513053,3.598878,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87216143,1,"Pont-sur-Seine S.Martin",48.516658,3.597219,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87216150,1,"Nogent-S/S De Gaulle",48.492216,3.509437,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87216168,1,"Nogent-sur-Seine-Théât.",48.492494,3.50222,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87216184,1,"Crancey RN",48.514439,3.639442,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87217042,1,"Chaumont-Gendarmerie",48.101936,5.144443,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87217059,1,"Langres-La-Maladière",47.871389,5.326383,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87218149,1,"Senailly",47.585182,4.266763,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87271007,1,"Gare de Paris-Nord",48.880138,2.354887,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87276006,1,"Gare de Creil",49.263769,2.46918,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87276204,1,"Gare de Laigneville",49.292664,2.449433,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87276212,1,"Gare de Liancourt-Rantigny",49.324758,2.445298,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87276329,1,"Gare de Pont-Ste-Maxence",49.30978,2.602853,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87276691,1,"Gare de Compiègne",49.422013,2.823486,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87276782,1,"Gare de Noyon",49.577341,3.006376,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87279869,1,"Vouécourt",48.26722,5.136107,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87279877,1,"Bricon(la Poste)",48.080825,4.977219,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87279885,1,"Maranville-la-Poste",48.135272,4.862495,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87279893,1,"Clairvaux D12",48.14611,4.793046,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87279901,1,"Bayel-Eglise",48.198884,4.776109,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87279919,1,"Jessains-Eglise",48.296937,4.577772,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87279927,1,"Vauchonvilliers-Mairie",48.265555,4.5261,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87279935,1,"La Villeneuve-Ch.RN19",48.23722,4.386385,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87279943,1,"Montiéramey-Eglise",48.230828,4.307772,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87279950,1,"Lusigny-sur-Barse RN19",48.253605,4.26083,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87279968,1,"Montaulin-Mairie",48.252216,4.193888,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87279976,1,"Rolampont-Mairie",47.951942,5.284996,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87279984,1,"Humes RN19",47.903883,5.302497,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87279992,1,"Foulain RN19",48.038329,5.214166,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87280008,1,"Vesaignes-sur-Marne",47.998332,5.262771,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87280016,1,"Rouilly-St-Loup-Guérade",48.268331,4.136654,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87281071,1,"Gare de Calais Fréthun",50.901263,1.811027,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87281428,1,"Gare de Audruicq",50.875669,2.076354,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87281436,1,"Gare de Watten Eperlecques",50.825955,2.207706,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87281444,1,"Gare de St Omer",50.753721,2.266863,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87282335,1,"Perrigny-sur-Loire",46.530542,3.846116,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87286005,1,"Gare de Lille Flandres",50.636201,3.071023,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87286146,1,"Gare de Armentières",50.680765,2.877505,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87286179,1,"Gare de Bailleul (Nord)",50.729122,2.7345,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87286203,1,"Gare de Strazeele",50.713446,2.630871,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87286302,1,"Gare de Hazebrouck",50.725043,2.541526,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87286500,1,"Gare de Phalempin",50.515368,3.019935,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87286518,1,"Gare de Seclin",50.548568,3.03496,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87286526,1,"Gare de Wattignies Templemars",50.579352,3.051536,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87286534,1,"Gare de Ronchin",50.604528,3.078311,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87286567,1,"Gare de Rosult",50.456419,3.348858,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87286583,1,"Gare de Orchies",50.477047,3.24888,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87286625,1,"Gare de Templeuve",50.528681,3.175601,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87286641,1,"Gare de Fretin (Nord)",50.559844,3.149519,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87286849,1,"Gare de Lesquin",50.590703,3.117706,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87295006,1,"Gare de Maubeuge",50.272805,3.966406,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87295014,1,"Gare de Jeumont",50.296097,4.086377,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87295048,1,"Gare de Fourmies",50.015362,4.053588,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87295055,1,"Gare de Anor",49.985002,4.093351,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87295063,1,"Gare de Hirson",49.914576,4.084294,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87295220,1,"Gare de Le Cateau",50.091461,3.540021,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87295568,1,"Gare de Hautmont",50.253961,3.915171,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87295600,1,"Gare de Aulnoye Aymeries",50.197327,3.843239,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87295709,1,"Gare de Sains du Nord",50.0889,4.00159,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87295733,1,"Gare de Avesnes",50.126688,3.932939,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87295774,1,"Gare de Dompierre (Nord)",50.146002,3.870976,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87296004,1,"Gare de St Quentin",49.840022,3.296932,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87296095,1,"Gare de Marle-sur-Serre",49.747016,3.769653,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87296129,1,"Gare de Vervins",49.82986,3.893424,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87296145,1,"Gare de Origny-en-Thiérache",49.890785,4.024008,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87296244,1,"Gare de Busigny",50.039489,3.446338,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87296269,1,"Gare de Bohain",49.988477,3.443202,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87296293,1,"Gare de Fresnoy-le-Grand",49.949746,3.43206,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87296442,1,"Gare de Tergnier",49.659244,3.297225,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87296616,1,"Gare de Chauny",49.610199,3.222522,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87297085,1,"Gare de La Bouteille",49.859656,3.981535,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87297119,1,"Gare de Verneuil-sur-Serre",49.648669,3.667775,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87297143,1,"Gare de Dercy-Froidmont",49.702731,3.692036,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87297150,1,"Gare de Voyenne",49.726126,3.720062,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87297291,1,"Gare de Barenton-Bugny",49.630657,3.655787,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87299834,1,"Miannay",50.097221,1.721385,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87299842,1,"Yzengremer",50.061104,1.521662,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87312587,1,"Troyes-Quennedey",48.290277,4.089444,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87313049,1,"Gare de Longueau",49.863438,2.352228,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87313270,1,"Gare de St-Just-SNCF",49.503496,2.429221,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87313304,1,"Gare de Clermont-de-l'Oise",49.385338,2.417203,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87313395,1,"Gare de Poix-de-Picardie",49.777802,1.989828,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87313510,1,"Gare de Beauvais-Gare-SNCF",49.42651,2.088638,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87313692,1,"Gare de Herchies",49.487955,2.011126,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87313700,1,"Gare de Milly-sur-Thérain",49.503872,1.98864,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87313718,1,"Gare de St-Omer-en-Chaussée",49.531041,1.997645,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87313726,1,"Gare de Marseille-en-Beauvaisis",49.57107,1.954691,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87313734,1,"Gare de Grandvilliers",49.659393,1.938451,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87313742,1,"Gare de Feuquières-Broquiers",49.654339,1.830979,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87313759,1,"Gare de Abancourt",49.685665,1.77418,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87313874,1,"Gare de Amiens",49.890532,2.308098,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87314880,1,"Sancerre-Hôtel-du-Remp.",47.332492,2.836944,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87314898,1,"St-Satur-Place-du-Marc.",47.339717,2.856941,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87314906,1,"Bannay-Bourg",47.386944,2.885826,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87316562,1,"Vitrey-sur-Mance",47.813318,5.759423,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87317057,1,"Gare de Rang du Fl. Verton Ber.",50.41581,1.648077,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87317065,1,"Gare de Etaples Le Touquet",50.516717,1.642496,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87317107,1,"Gare de Hesdigneul",50.66089,1.667347,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87317263,1,"Gare de Calais Ville",50.953456,1.850745,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87317362,1,"Gare de Abbeville",50.102194,1.824485,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87317396,1,"Gare de Noyelles-sur-Mer",50.187334,1.704474,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87317404,1,"Gare de Rue",50.273198,1.675613,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87317495,1,"Gare de Chépy-Valines",50.06814,1.635563,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87317503,1,"Gare de Feuquières-en-Vimeu-Fre",50.063305,1.589164,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87317511,1,"Gare de Woincourt",50.058666,1.537138,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87317529,1,"Gare de Le Tréport-Mers-Les-B",50.06272,1.376115,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87317537,1,"Gare de Eu",50.05429,1.416892,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87317586,1,"Gare de Boulogne Ville",50.715585,1.609806,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87319756,1,"Vieville",48.239439,5.135272,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87319764,1,"Montaulin-vallée-Verte",48.256102,4.197217,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87320408,1,"Jussey-Centre",47.8277,5.901685,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87324335,1,"Gare de Hirson-Ecoles",49.929656,4.085384,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87326462,1,"Roôcourt-la-Côte",48.211939,5.145276,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87338129,1,"Langres-Gendarmerie",47.853051,5.333609,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87338145,1,"St-Dizier-St-Amand",48.624992,4.967771,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87338152,1,"Gourzon",48.545829,5.084712,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87338160,1,"Rachecourt-sur-Marne",48.526937,5.100266,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87338178,1,"Vecqueville",48.457217,5.143605,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87338186,1,"Rupt",48.425272,5.139444,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87338194,1,"Rouvroy-sur-Marne",48.358049,5.147496,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87338517,1,"Gare de Hoenheim-Tram",48.628233,7.757438,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87342006,1,"Gare de Béthune",50.521434,2.640398,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87342014,1,"Gare de Arras",50.286816,2.781126,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87342089,1,"Gare de Roeux (Pas de Calais)",50.303484,2.894725,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87342097,1,"Gare de Biache St Vaast",50.316248,2.941551,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87342113,1,"Gare de Vitry en Artois",50.327123,2.980596,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87342238,1,"Gare de Lillers",50.561628,2.478962,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87342279,1,"Gare de Isbergues",50.613953,2.462785,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87342337,1,"Gare de St Pol sur Ternoise",50.37914,2.33898,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87342535,1,"Gare de Vis à Marles",50.505006,2.517221,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87342543,1,"Gare de Calonne Ricouart",50.482759,2.481046,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87342550,1,"Gare de Pernes-Camblain",50.48025,2.43094,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87342576,1,"Gare de Vimy",50.374073,2.822405,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87343004,1,"Gare de Valenciennes",50.363237,3.517116,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87343103,1,"Gare de St-Amand-les-Eaux",50.44323,3.419355,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87343301,1,"Gare de Wallers",50.384549,3.393937,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87343319,1,"Gare de Raismes (Nord)",50.390177,3.479105,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87343475,1,"Gare de Lourches",50.310203,3.343214,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87344127,1,"St-Lyé-Libération",48.345555,4.023045,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87345009,1,"Gare de Douai",50.371675,3.089961,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87345025,1,"Gare de Lens",50.426766,2.828195,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87345041,1,"Gare de Liévin",50.434201,2.771725,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87345108,1,"Gare de Brebières Sud",50.336223,3.0139,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87345116,1,"Gare de Corbehem",50.342796,3.040407,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87345207,1,"Gare de Pont de la Deule",50.398133,3.084883,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87345223,1,"Gare de Leforest",50.427769,3.059703,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87345249,1,"Gare de Ostricourt",50.4452,3.03202,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87345256,1,"Gare de Libercourt",50.480161,3.008657,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87345306,1,"Gare de Montigny en Ostrevent",50.36144,3.188342,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87345314,1,"Gare de Somain",50.355584,3.277691,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87345405,1,"Gare de Sin le Noble",50.356621,3.112557,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87345413,1,"Gare de Cantin",50.312508,3.12194,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87345421,1,"Gare de Arleux",50.286194,3.120676,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87345439,1,"Gare de Brunémont",50.27824,3.145901,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87345447,1,"Gare de Aubigny au Bac",50.268615,3.158755,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87345520,1,"Gare de Cambrai Ville",50.176611,3.241216,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87345561,1,"Gare de Caudry",50.11141,3.409737,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87352047,1,"Gare de Champagnole-PE-Victor",46.74221,5.919807,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87391300,1,"Gare de Morre",47.22599,6.067367,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87398735,1,"Bar-sur-Aube (HV)",48.233333,4.706387,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87402818,1,"Thivet",47.99111,5.280549,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87402826,1,"Bienville",48.581659,5.045551,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87405571,1,"Anzeling (Carrefour)",49.263954,6.463133,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87405605,1,"Brouvelieures (Forges)",48.239167,6.731078,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87405613,1,"Bruyères (Cameroun)",48.209194,6.721981,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87405621,1,"Gerbéviller (Rue Gambet",48.500221,6.512376,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87405639,1,"Magnières (Lotissement)",48.449571,6.563773,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87405647,1,"Mont-sur-Meurthe (Mont)",48.554785,6.444484,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87405662,1,"Rambervillers (11 Nov)",48.33319,6.636671,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87405670,1,"Rambervillers (Boucher)",48.347027,6.635754,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87405688,1,"Rambervillers (Lunev.)",48.351998,6.631786,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87405696,1,"Roville-aux-Chènes Lyc.",48.387549,6.604195,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87405704,1,"Vallois (Centre)",48.463329,6.548602,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87405712,1,"Barisey-la-Côte Mairie",48.544081,5.842649,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87405720,1,"Domgermain (Bois-le-C.)",48.659597,5.851558,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87405746,1,"Neufchâteau (Hôpital)",27.140973,-3.404561,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87405753,1,"Toul-Gare-Routière",48.674144,5.88637,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87405779,1,"Cornimont (Hôp. Rural)",47.971975,6.831929,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87405787,1,"Cornimont (Lansauchamp)",47.985552,6.837488,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87405795,1,"Cornimont (Perception)",47.963427,6.838711,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87405803,1,"Dommartin (Franould)",48.004538,6.654918,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87405811,1,"La-Bresse (Pl Champtel)",48.003214,6.873665,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87405852,1,"Saulxures/M (Pl Claude)",47.949715,6.784433,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87405878,1,"Bussang (Gare SNCF)",27.140973,-3.404561,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87405886,1,"Fresse (La Hardoye)",47.869035,6.79483,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87405894,1,"Hielle (Lépange)",47.95384,6.626085,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87405902,1,"Le-Thillot (Pl. Républ)",47.878338,6.766962,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87405910,1,"Remiremont (Cora)",48.004577,6.612661,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87405928,1,"Rupt/Moselle (Saulx)",47.90989,6.68912,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87405944,1,"St-Maurice/M. (Mairie)",47.859165,6.825532,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87405951,1,"Darnieulles (Stat. Sce)",48.196879,6.36194,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87405969,1,"Dompaire Rte Mirecourt",48.225453,6.219898,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87405985,1,"Mattaincourt (MVM)",48.274722,6.136082,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87405993,1,"Mirecourt (Lycée Agric)",48.293601,6.132109,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87406090,1,"Eoiez-sur-Chiers",49.491365,5.504528,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87406595,1,"Flabeuville (Carrefour)",49.465921,5.54039,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87406603,1,"Longuyon (Collège)",49.434433,5.614433,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87406611,1,"Longuyon (Pont-2-Eaux)",49.448647,5.599512,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87406637,1,"Montmédy (Centre)",49.519333,5.366518,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87406645,1,"Vezin",49.482491,5.511099,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87406660,1,"Cons-la-Grandville Lot.",49.48806,5.708343,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87406678,1,"Cons-la-Grandville (Mo)",49.484085,5.701623,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87406686,1,"Lexy (Providence-Usine)",49.496033,5.738489,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87406694,1,"Lexy (Rue du Square)",49.495559,5.727871,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87406702,1,"Longuyon (La Machine)",49.453927,5.600428,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87406710,1,"Longwy-Espace-Bus",49.513643,5.768754,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87406728,1,"Bouzonville (Alzing)",49.289937,6.535229,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87406736,1,"Creutzwald G.R.",49.207778,6.697198,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87406744,1,"Distroff (Eglise)",49.332211,6.263052,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87406751,1,"Ebersviller (Centre)",49.276342,6.401979,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87406769,1,"Falck (Rue principale)",49.229234,6.633026,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87406777,1,"Hombourg (Chapelle)",49.295867,6.343513,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87406793,1,"Hombourg (Tilleuls)",49.298147,6.338807,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87406801,1,"Kédange (Eglise)",49.308319,6.338321,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87406819,1,"Kuntzig (Bibiche)",49.343594,6.244127,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87406827,1,"Kuntzig (Place liberté)",49.347195,6.237104,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87406835,1,"Metzervisse (Centre)",49.315561,6.285292,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87406843,1,"Metzervisse (Eglise)",49.314156,6.282061,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87406850,1,"Cocheren (Village)",49.146112,6.856983,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87406868,1,"Farébersviller (Cité)",49.117643,6.873189,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87406884,1,"Farébersviller (Moulin)",49.116121,6.865843,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87406900,1,"Sarreguemines (Poste)",49.113014,7.064099,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87406918,1,"Mertzwiller-(Moulin)",48.867389,7.681877,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87406926,1,"Philippsbourg (Lieschb)",48.991556,7.558148,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87406934,1,"Bitche (Rue de la Paix)",49.048881,7.428604,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87406959,1,"Enchenberg (Mairie)",49.014714,7.33751,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87406967,1,"Rohrbach-les-Mines (Ca)",49.046039,7.26521,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87406975,1,"Fénétrange (Gendarm.)",48.844293,7.019857,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87406983,1,"Fénétrange-Val-Fleuri",48.847804,7.019165,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87406991,1,"Sarralbe (Hôtel de Vill",49.001842,7.029747,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87407015,1,"Sarraltroff (Mairie)",48.773061,7.061993,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87407023,1,"Sarraltroff Ag. Postale",48.773886,7.061387,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87407031,1,"Sarrebourg-Méphisto",48.749792,7.06746,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87407049,1,"Avricourt (Café St Nic)",48.650525,6.806213,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87407056,1,"Avricourt (Rue de Lorr)",48.650093,6.812888,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87407064,1,"Igney (Centre)",48.633205,6.814248,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87407072,1,"Lunéville (Cité Scolai)",48.597499,6.508054,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87407098,1,"Réchicourt-le-Chateau c",27.140973,-3.404561,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87407106,1,"Sarrebourg (Verreries)",48.733041,7.042834,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87407114,1,"Bénestroff (Centre)",48.904418,6.758631,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87407122,1,"Fénétrange Carrefour Et",48.845551,7.014419,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87407130,1,"Gosselming (Poste)",48.790873,7.00431,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87407148,1,"Mittersheim (L'Escale)",48.860503,6.934555,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87407155,1,"Morhange (Pl. Républiq)",48.923919,6.635005,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87407189,1,"Sarrebourg (Place Math)",48.736883,7.057191,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87407197,1,"Sarrebourg (Zone Indus)",48.748876,7.065824,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87407247,1,"Budange",49.276666,6.34471,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87407262,1,"Gundershoffen (cygne)",48.907556,7.658547,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87407270,1,"Niederbronn (Archéo)",48.947893,7.650638,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87407296,1,"Niederbronn (Usine)",48.956997,7.630661,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87407320,1,"Schweighouse-(Villa)",48.819469,7.742336,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87407338,1,"Diedendorff",48.877071,7.054134,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87407379,1,"Sarrewerden Lotissement",48.920775,7.08603,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87407403,1,"Gondrexange (Centre)",48.685181,6.926378,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87407411,1,"Remanvillers",47.900028,6.727834,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87409771,1,"Letra-Gabodière",45.961434,4.51648,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87411017,1,"Gare de Rouen-Rive-Droite",49.44903,1.094154,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87411454,1,"Gare de Montérolier-Buchy",49.603131,1.334709,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87411470,1,"Gare de Serqueux",49.631545,1.53934,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87413229,1,"Longeau",47.767175,5.309968,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87414011,1,"St-Louis57",48.718439,7.194233,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87417477,1,"Blesme-Centre",48.72555,4.776102,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87420208,1,"Dracy-St-Loup-Mairie",47.02331,4.33715,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87429761,1,"Auxon-Route-Nationale",48.109162,3.915543,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87438655,1,"Gray-Gare-Routière",47.447905,5.595839,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87458794,1,"Pont-de-Rupt",27.140973,-3.404561,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87458810,1,"Buzy-Village",49.171063,5.710099,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87458828,1,"Etain-Centre",49.213447,5.635142,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87458836,1,"Verdun-la-Tour-du-Champ",27.140973,-3.404561,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87463604,1,"Hommarting-Tilleuls",48.738813,7.145722,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87463612,1,"Guntzviller",48.710164,7.161549,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87463620,1,"Arzviller-Fontaines",48.720368,7.165954,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87475723,1,"Bard-le-Régulier",47.143871,4.313488,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87476747,1,"Luneville-LP",48.598876,6.492448,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87476788,1,"Gerbeviller-Foch",27.140973,-3.404561,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87476846,1,"Remiremont-Pont",48.009076,6.613764,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87476853,1,"Remilly-Place-du-11-Nov",49.010793,6.397592,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87476861,1,"Diebling-Forestière",49.112001,6.933513,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87476879,1,"Fenetrange-Mairie",48.84574,7.016946,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87476887,1,"Romelfing-Rue-Europe",48.831934,7.020691,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87476911,1,"Romelfing-Eglise",48.94804,6.434623,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87476929,1,"Vatimont-Mairie",48.980021,6.464405,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87476937,1,"Yutz-St-Vitus",49.356074,6.1919,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87477158,1,"Merten-République",49.248913,6.667053,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87477562,1,"Berthelming-Mairie",48.816243,7.006662,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87477570,1,"Rehon-Poste",49.504192,5.754259,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87477588,1,"Longwy-Route-de-Metz",49.511939,5.762605,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87477620,1,"Sarrebourg-Abri-Phalsbo",48.737989,7.063118,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87477638,1,"Sarrebourg-LP-Messmer",48.736739,7.068721,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87477646,1,"Sarrebourg-Mairie",48.730495,7.05073,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87478503,1,"Autun-St-Jean",46.958275,4.301098,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87478628,1,"Cordesse-Igornay-Centre",47.037807,4.339743,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87478693,1,"Digoin-Lycée",46.477062,3.991897,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87478776,1,"Creusot-Lycée-Jean-Jaur",46.805076,4.41407,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87478784,1,"Le-Guidon",46.378786,4.249614,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87478792,1,"Saulieu-Place",47.28028,4.231286,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87478818,1,"Selongey-Ecole-Ménagère",47.5869,5.180004,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87478826,1,"Selongey-Patenée",47.588146,5.183862,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87478834,1,"Surmoulin",47.008141,4.320838,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87478842,1,"Til-Chatel-Poste",47.518701,5.178274,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87478859,1,"Til-Chatel-Perdrixiere",47.517309,5.169683,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87481002,1,"Gare de Nantes",47.217505,-1.541925,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87484006,1,"Gare de Angers-St-Laud",47.464434,-0.556949,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87484576,1,"Lamure-Collège",46.052071,4.492879,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87484584,1,"Poule-Mairie",46.148101,4.443914,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87487603,1,"Gare de Saumur",47.268972,-0.07143,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87497222,1,"Chantenay-Imbert-Bourg",46.733078,3.183144,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87499863,1,"Cosne-sur-Loire-Sud",27.140973,-3.404561,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87499897,1,"Decize-Café-Bel-Aire",46.828363,3.479863,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87499905,1,"Decize-Lycée",46.828333,3.447208,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87499913,1,"Decize-Ville",46.831463,3.465731,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87499939,1,"Imphy-le-Grand-Vernay",46.91117,3.279444,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87499954,1,"Imphy-Square-Lamartine",46.926083,3.264498,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87500082,1,"Luzy-Ville",46.790502,3.968988,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87500793,1,"Nevers-Mouesse-ANPE",46.989765,3.169011,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87500876,1,"St-Ouen-Arrêt-Cars",46.884636,3.304477,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87500900,1,"St-Ouen-le-Port-des-Boi",46.89561,3.295093,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87500934,1,"Sougy-BIF-N81-D262",46.848841,3.389692,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87500991,1,"St-Léger-Vignes-Valette",46.841156,3.442397,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87501023,1,"Pierre-Le-Moutier-Monum",46.791381,3.11839,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87501049,1,"Tannay-Place-Eglise",47.367486,3.592235,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87524876,1,"Villers-le-Rond",49.46432,5.489628,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87524884,1,"Jean-les-Longuyon (St)",49.453057,5.463672,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87533547,1,"Béard-Bourg",46.86315,3.326719,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87536367,1,"Santenay-Haut",46.910343,4.68335,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87536375,1,"Nolay-Place-Carnot",46.951639,4.634732,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87536383,1,"Saisy",46.96413,4.548697,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87536391,1,"Epinac-la-Garenne",46.985331,4.53192,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87536409,1,"Epinac-Hauts-des-Champs",46.988423,4.524076,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87536417,1,"Epinac-Quartier-Dinay",46.994656,4.504836,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87536441,1,"Chatillon-Joffre",47.856553,4.570689,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87541912,1,"Chatillon-Lycée",47.865291,4.57436,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87552141,1,"Ribeauville-Gare-Routière",48.192213,7.325772,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87559070,1,"Gare de Nevers-Le-Banlay",47.006817,3.163619,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87564781,1,"Bazoches-OT",47.377287,3.784524,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87564799,1,"Père (st)-Place-Mairie",47.459372,3.764918,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87571000,1,"Gare de Tours",47.389814,0.693505,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87571240,1,"Gare de St-Pierre-des-Corps",47.385732,0.725054,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87576009,1,"Gare de Vierzon",47.226516,2.059824,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87576207,1,"Gare de Bourges",47.094094,2.394226,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87576405,1,"Gare de St-Germain-du-Puy",47.09629,2.484255,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87576439,1,"Gare de Avord",47.034779,2.652604,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87576447,1,"Gare de Bengy",47.000396,2.749106,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87576454,1,"Gare de Nérondes",46.999796,2.821991,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87576470,1,"Gare de La Guerche-sur-l'Aubois",46.94785,2.948455,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87588954,1,"Laon-Gare-Routière-Poma",49.569728,3.625831,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87595983,1,"La-Walck-Monument",48.848374,7.612243,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87598219,1,"Gare de Le Locle-Col-des-Roches",47.04989,6.725831,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87598227,1,"Gare de Le Locle.",47.057708,6.746141,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87599753,1,"Nevers-Petit-Canal",46.989406,3.187307,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87599779,1,"Nevers-Place-Résistance",46.992527,3.160205,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87635771,1,"Lemberg-Mairie",27.140973,-3.404561,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87635805,1,"Cremanvillers",48.009221,6.716263,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87635821,1,"Koenigsmacker-Centre",49.396543,6.279747,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87635847,1,"Sierck-Pl-Morbach",49.441553,6.357475,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87635854,1,"Apach-Eglise",49.460193,6.374297,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87635862,1,"Les-Islettes-Centre",27.140973,-3.404561,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87635870,1,"Clermont-En-Argonne-Cen",49.105825,5.070793,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87635920,1,"Suippes-Camp",49.12225,4.544656,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87635938,1,"Ste-Ménéhould-Médiathèq",49.092128,4.897874,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87639922,1,"Minversheim-Rue-Princip",48.784842,7.620531,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87639930,1,"Alteckendorf-Eckendorf",48.78972,7.601546,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87639948,1,"Alteckendorf-Mairie",48.792845,7.594651,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87639955,1,"Alteckendorf-Abri",48.794558,7.589739,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87639963,1,"Ettendorf-Pl,-de-L'ecol",48.813023,7.58344,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87639971,1,"Ettendorf-(Angle-Pont)",48.812193,7.58101,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87639989,1,"Hattmatt-S.-Polyvalente",48.792188,7.426915,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87639997,1,"Bouxwiller-Babenhausen",48.829076,7.483687,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87640144,1,"Suippes-Garage",49.128118,4.525608,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87640375,1,"Sélestat-(Schweisguth)",48.261515,7.450126,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87640383,1,"Selestat-(Koeberlé)",48.263278,7.455358,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87640391,1,"Sèlestat-(Schwilgué)",48.253908,7.4479,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87640409,1,"Sélestat-R-S-Marie-/-Ms",48.264183,7.439739,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87640441,1,"Châtenois-(Gare)",48.276127,7.401678,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87640458,1,"Châtenois-V.-Villé-Gare",48.283074,7.381952,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87640466,1,"La-Vancelle-(hurst)",48.278906,7.342232,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87640474,1,"La-Vancelle-(Centre)",48.284354,7.303418,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87640482,1,"Lièpvre-(Rte-Vancelle)",48.271914,7.289054,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87640490,1,"Lièpvre-Bois-Abesse-ZI",48.275571,7.313625,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87640789,1,"Lièpvre-(Centre)",48.270852,7.280695,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87640797,1,"Liepvre-(-Ecoles-)",48.271433,7.281006,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87640805,1,"Rombach-Le-F-(Pl-Fêtes)",48.281957,7.264452,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87640813,1,"Rombach-Le-F-(Scierie)",48.278908,7.270563,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87640821,1,"Lièpvre-R.-Vieux-Moulin",48.277514,7.27695,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87640839,1,"Liepvre-(-R.-GUTH-)",48.270072,7.269448,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87640847,1,"Liepvre-(-Musloch-)",48.267648,7.248574,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87640854,1,"Ste-Croix/Mines-Stimbac",48.264712,7.233875,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87640870,1,"Ste-Croix/Mines-Sq-de-G",48.261128,7.218902,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87640912,1,"Ste-Marie-/-Ms-S.Techni",48.252235,7.195008,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87640920,1,"Ste-Marie-/-Ms-(Musées)",48.24888,7.18833,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87640938,1,"Ste-Marie-/-Mines-Maire",48.245573,7.182239,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87640946,1,"Ste-Marie-/-Ms-Pl-.CdG",48.243625,7.176394,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87640953,1,"Ste-Marie/-Ms-(-Théâtre",48.243614,7.18083,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87640961,1,"Ste-Marie-/-Ms-(-Super-",48.248629,7.189184,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87640979,1,"Raves-(Ancienne-Gare)",48.271957,7.049732,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87640987,1,"Remomeix-(Abri)",48.265016,6.993338,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87640995,1,"Ste-Marguerite-Village",48.268627,6.980842,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87641027,1,"Ste-Marguerite-(Cora)",48.273744,6.967574,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87641332,1,"Saint-Die-Rue-D'Alsace",48.279999,6.95555,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87641688,1,"Cernay-(Lycée)",47.80334,7.182793,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87641696,1,"Cernay-(St André)",47.791122,7.155841,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87641902,1,"Aspach-le-Haut-D103/34",47.776125,7.134103,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87641910,1,"Aspach-le-Haut-(gare)",47.768902,7.141682,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87641928,1,"Aspach-Bs-Malakov",47.761124,7.153069,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87641936,1,"Burnhaupt-Ht-Gendarmeri",47.740005,7.144724,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87641944,1,"Burnhaupt-Ht- Café/Gare",47.742231,7.134452,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87641951,1,"Guewenheim-Café-2-clés",47.752579,7.09329,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87641969,1,"Sentheim-M.-de-Repos",47.75588,7.056468,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87641977,1,"Sentheim-(Eglise)",47.75612,7.051666,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87641985,1,"Sentheim-Gge-Renault",47.757227,7.043013,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87641993,1,"Lauw-(Cimetère)",47.757788,7.025292,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87642009,1,"Lauw-numéro-20",47.756948,7.017508,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87642017,1,"Masevaux-Café-Sports",47.779449,6.99223,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87642025,1,"Masevaux-(Pharmacie)",47.77473,6.99918,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87642033,1,"Masevaux-Off.-Tourisme",47.772674,6.996058,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87642041,1,"Sickert-(Abri)",47.781121,6.978342,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87642058,1,"Niederbruck-Centre",47.784176,6.968344,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87642066,1,"Kirchberg-(Lotissement)",47.788618,6.964722,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87642074,1,"Kirchberg-(Café-Rose)",47.791681,6.962223,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87642116,1,"Wegscheid-(Numéro-64)",47.798621,6.960556,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87642124,1,"Oberbruck-(Rest.Ast)",47.807786,6.943892,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87642132,1,"Dolleren-(Mairie)",47.805839,6.932503,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87642140,1,"Sewen-(11-Gd-Rue)",47.80668,6.911113,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87642157,1,"Sewen-(Eglise)",47.807233,6.90529,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87642165,1,"Hattmatt-(Mairie)",48.79064,7.422674,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87642173,1,"Steinbourg-Ernolsheiml",48.773232,7.409793,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87642181,1,"Steinbourg-(Mairie)",48.769393,7.413206,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87642199,1,"Steinbourg-Rte-Saverne",48.761334,7.414407,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87642207,1,"Monswiller-(Zornhoff)",48.752737,7.383054,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87642215,1,"Monswiller-(Rue-Haute)",48.754682,7.376692,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87642223,1,"Saverne-(Lycée-Verne)",48.735126,7.374412,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87642231,1,"Saverne-(Lycée-Sources)",48.735133,7.366189,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87642249,1,"Saverne-(Pl.-Dragons)",48.739777,7.361791,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87642256,1,"Saverne-(Ht-Barr)",48.731543,7.352267,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87642264,1,"Dossenheim-(Mairie)",48.805222,7.402438,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87642272,1,"Dossenheim-Lotissement",48.807521,7.402158,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87642280,1,"Neuwiller-(Pharmacie)",48.823476,7.402694,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87642298,1,"Neuwiller-R.-Bouxwiller",48.822911,7.407072,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87642306,1,"Bouxwiller-Schattenmann",48.826399,7.478933,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87642314,1,"Bouxwiller-Centre-Ville",48.82747,7.482913,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87642330,1,"Menchhoffen-(Abri)",48.859548,7.494659,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87642348,1,"Wimmenau-(D919 R/Gar)",48.910054,7.419956,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87642355,1,"Wingen-sur-Moder-Mairie",48.922868,7.370993,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87642363,1,"Rosteig-Mon.-Aux-Morts",48.932877,7.342485,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87642371,1,"Col-De-Puberg",48.91702,7.318393,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87642389,1,"Frohmuhl- (Lavoir)",48.907902,7.281136,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87642801,1,"Bitche-Quartier-Driant",49.05497,7.456169,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87643197,1,"Suippes-Ferme",27.140973,-3.404561,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87643403,1,"Cigoland",48.256317,7.419759,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87643411,1,"Kintzheim-Mairie",48.254457,7.39501,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87643429,1,"Orschwiller-Chapelle",48.241122,7.383904,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87643437,1,"St-Hippolyte-Hot-Munsch",48.23139,7.371127,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87643445,1,"St-Hippolyte-Parc-Walte",48.232232,7.366407,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87643452,1,"Rorschwihr-Mairie",48.217515,7.363338,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87643460,1,"Bergheim-Porte-Haute",48.205571,7.358622,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87643890,1,"Bannay-Hautes-De-Bussy",47.385935,2.886173,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87643932,1,"Sancerre-Porte-Cesar",47.333641,2.837524,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87654384,1,"Lichtenberg-(Eglise).",48.921189,7.481754,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87654392,1,"Lichtenberg-(Picardie)",48.925384,7.479069,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87654442,1,"Reipertswiller-SP.",48.933253,7.464091,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87654467,1,"Wimmenau-(Centre).",48.910843,7.421318,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87654475,1,"Rouffach-(CHS)",47.950568,7.29112,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87654541,1,"Merxheim-(Pl.-CDG)",47.910552,7.292778,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87654558,1,"Illfurth-Croisement-Gar",47.674592,6.924543,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87654574,1,"Zillisheim-(Mohn)",47.693802,7.2942,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87654590,1,"Stephansfeld-(Hopital).",48.717009,7.706155,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87654673,1,"Brumath-(Mairie).",48.730887,7.708653,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87658716,1,"Schwindratzheim-Leclerc",48.754098,7.600003,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87658740,1,"Wilwisheim-(Hte Montée)",48.747946,7.506738,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87658849,1,"Pfaffenhoffen-(Mairie).",48.844897,7.610811,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87658856,1,"Adamswiller Lot. forêt.",48.905629,7.208236,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87658922,1,"Adamswiller-(Mairie).",48.903847,7.201171,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87658930,1,"Bischheim-Arrêt-CTS-R.G",48.363915,7.45301,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87658948,1,"Kilstett-Rue-de-la-Gare",48.679219,7.854927,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87659631,1,"Bouverans-Halte-Routier",27.140973,-3.404561,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87659649,1,"Domblans-Halte-Routier.",46.763588,5.597361,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87659656,1,"Buvilly-Halte-Routiere.",46.869346,5.716556,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87659714,1,"Saulx-Halte-Routiere",47.695363,6.278552,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87659722,1,"Voiteur-Halte-Routiere.",46.755103,5.611312,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87659730,1,"Gambsheim-Peugeot.",48.688807,7.871924,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87659748,1,"Gambsheim-(Poste).",48.692156,7.883346,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87659755,1,"Hoerdt-(M.De-Retraite)",48.692008,7.782179,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87659763,1,"Hoerdt-(Mairie)",48.698884,7.78471,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87659771,1,"Weyersheim-R-République",48.717811,7.800244,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87659789,1,"Kurtzenhouse-(Mairie)",48.739191,7.806731,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87659797,1,"Kurtzenhouse-(CMDP)",48.742351,7.812445,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87659805,1,"Bischwiller-Eglise",48.764098,7.859771,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87659813,1,"Bischwiller-(Vestra).",48.770589,7.847867,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87659821,1,"Kaltenhouse-Rue-Bischwi",48.790448,7.836,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87659839,1,"Marienthal-(Basilique-N",48.780133,7.816474,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87659847,1,"Haguenau-(Statuette)",48.782214,7.822543,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87659854,1,"Rixheim-Arrêt-Barrière.",47.747834,7.409712,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87659862,1,"Sierentz-Rest.-Soleil.",47.654089,7.454797,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87659870,1,"Bartenheim-(Pharmacie).",47.635004,7.476119,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87659888,1,"Oderen-(La-Poste).",47.909457,6.975557,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87659896,1,"Fellering-(Eglise).",47.896382,6.985835,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87659904,1,"Ranspach-Anc.-Fonderie.",47.881403,7.009453,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87659912,1,"St-Amarin-Hotel-Cheval.",47.874735,7.028347,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87659920,1,"Malmerspach-Rond-Point.",47.867039,7.03871,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87659938,1,"Moosch-(Mairie).",47.950054,7.056919,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87659946,1,"Willer-/-Thur-(Mairie).",47.843066,7.0714,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87659953,1,"Bitschwiller-/-T-Mairie",47.829177,7.079736,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87659979,1,"Vieux-Thann-Park.-Gare.",47.806118,7.119704,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87659987,1,"Cernay-(Eglise).",47.809181,7.174728,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87659995,1,"Dornach-Incorporation",47.7472,7.310183,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87660043,1,"Walbourg-Séminaire.",48.886536,7.789393,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87660050,1,"Surbourg-St-Aboga.",48.906924,7.847097,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87660126,1,"Schoenenbourg-Centre.",48.952404,7.912299,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87660340,1,"Ingolsheim-(Centre).",48.974765,7.937294,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87660365,1,"Riedseltz-Chapelle",48.990342,7.950716,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87660373,1,"Riedseltz-Centre",48.995052,7.953993,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87660381,1,"Wissembourg-Altenstadt.",49.028245,7.963881,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87660514,1,"Dachstein-R.-Gare.",48.542993,7.532903,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87660548,1,"Mutzig-Passage-A-Niveau",48.533912,7.46108,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87660571,1,"Mutzig-Porte-Ctre.",48.538663,7.456012,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87660589,1,"Gresswiller-(Abri).",48.535711,7.425486,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87660605,1,"Lutzelhouse-Abri-Eglise",48.519609,7.287747,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87660795,1,"Devant-Fouday-RN-420.",48.421397,7.183412,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87660811,1,"Saulxures-(N-420).",48.389399,7.146311,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87660886,1,"Bourg-Bruche-Eglise.",27.140973,-3.404561,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87660894,1,"Saales-(Mairie).",48.348286,7.106291,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87660902,1,"Rosheim-Maison-Enfance.",48.498331,7.478609,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87660910,1,"Obernai-Passage-Niveau.",48.46085,7.489412,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87660936,1,"Eichhoffen-Gare.",48.38269,7.448883,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87660977,1,"Epfig-Eglise-/-RN.",48.359165,7.466106,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87665240,1,"Colmar-St-Jo-VSG",48.081128,7.346674,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87665331,1,"Logelbach-Arrêt-Hirn",48.088748,7.321807,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87665356,1,"Ingersheim-Arrêt-Centre",48.096533,7.303553,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87665380,1,"Turckheim-P.-République",48.086124,7.278902,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87665455,1,"Walbach-La-Forge",48.059739,7.233066,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87665463,1,"Wihr-Soultz-D-417.",48.046681,7.20917,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87665471,1,"Gunsbach-Restaurant.",48.04278,7.174173,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87665489,1,"Munster-D417-Badischhof",48.040662,7.150374,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87665505,1,"Luttenbach-R-Principale",48.035851,7.119172,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87665513,1,"Luttenbach-(Fronzel).",48.032513,7.110004,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87665562,1,"Breitenbach-Breit's-Bar",48.026678,7.098892,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87665620,1,"Muhlbach/Munster-Mairie",48.025566,7.083898,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87667980,1,"Diou-ville-Allier-(Bus)",46.533349,3.747946,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87668004,1,"Villeneuve-/-Allier-Cen",46.660109,3.247787,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87668095,1,"Thiel-Sur-Acolin-Bus",46.526266,3.578794,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87668111,1,"Montbeugny-Centre",46.528189,3.492704,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87668137,1,"Philippsbg-Falkenstein",48.984098,7.567411,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87668152,1,"Eguelshardt-(-Abri-)",49.02126,7.491193,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87676569,1,"Pagny-Le-Chateau-Mairie",47.046992,5.195881,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87676593,1,"Nolay-Mairie",46.951807,4.629942,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87676718,1,"Chatillon-Seine-Pl-Marm",47.861258,4.574925,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87676734,1,"Manlay-Centre",47.129214,4.341481,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87676767,1,"Liernais-Centre",47.206327,4.281395,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87676809,1,"Saint-Didier-Chanteau",47.330119,4.181835,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87676890,1,"St-Leger-Dheune-Port-Ca",46.846229,4.632942,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87676908,1,"Rully-Place",46.874688,4.740887,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87677047,1,"Brion-Laisy-Mairie",46.907192,4.191076,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87677096,1,"Changy-Tourny-Monument",46.403334,4.253001,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87677138,1,"Chauffailles-Gambetta",46.206913,4.336505,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87677146,1,"Autun-Orme-St-Pantaleon",46.987363,4.313483,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87677195,1,"Voutenay-/-Cure-Mairie",47.561728,3.784678,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87677245,1,"Lucy-Sur-Cure-RD-606",47.627782,3.744653,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87677252,1,"Accolay-Le-Pont",47.659446,3.713922,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87678458,1,"Chèvremont-M.Mort.",47.631193,6.92455,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87678466,1,"Uttwiller-R-Principale.",48.846228,7.487765,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87678474,1,"Guémar-Rd-Point-Sony",48.19001,7.370837,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87678482,1,"Ste-Croix-Ms-Centre",48.262501,7.22444,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87678524,1,"Niederbronn-H.-de-Ville",48.950819,7.642391,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87678680,1,"Haguenau-Moulin-Neuf.",48.813031,7.781128,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87678698,1,"Schweighouse-Eglise-P.",48.820338,7.740844,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87678706,1,"Schweighouse-M.-Leclerc",48.8221,7.731423,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87678714,1,"Neubourg-(Eglise).",48.838635,7.681258,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87678730,1,"Pfaffenhoffen-Républiqu",48.844006,7.607554,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87683268,1,"Gare de Laroche-Migennes",47.960853,3.512941,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87683318,1,"Gare de St-Florentin-Vergigny",47.980415,3.730949,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87683334,1,"St-Florentin-Ville",48.004576,3.74046,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87683532,1,"Gare de Chemilly-Appoigny",47.897372,3.554407,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87683557,1,"Gare de Monéteau-Gurgy",47.850719,3.579952,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87683573,1,"Gare de Auxerre-St-Gervais",47.797614,3.58514,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87683615,1,"Gare de Champs-St-Bris",47.738246,3.603611,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87683631,1,"Gare de Vincelles",47.704279,3.628359,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87683649,1,"Gare de Cravant-Bazarnes",47.678581,3.681465,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87683664,1,"Gare de Vermenton",47.661022,3.73114,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87683680,1,"Gare de Arcy-sur-Cure",47.60062,3.767049,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87683722,1,"Gare de Sermizelles-Vézelay",47.528692,3.792851,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87683789,1,"Gare de Avallon",47.495524,3.91253,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87683847,1,"Gare de Mailly-la-Ville",47.604361,3.675079,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87684001,1,"Gare de Montargis",48.00718,2.742976,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87684126,1,"Gare de Nemours-St-Pierre",48.267909,2.685654,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87684274,1,"Gare de Nogent-sur-Vernisson",47.85285,2.737637,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87684290,1,"Gare de Gien",47.698883,2.636752,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87686006,1,"Gare de Paris-Gare-de-Lyon",48.844922,2.373462,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87686667,1,"Gare de Paris-Bercy",48.839211,2.382799,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87690396,1,"Montfey",27.140973,-3.404561,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87691360,1,"Coulanges/Y-Pré-Cambaul",27.140973,-3.404561,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87691386,1,"Comberjon-HR",27.140973,-3.404561,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87691576,1,"La-Cluse-Ville",46.170815,5.576363,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87691600,1,"Gare de Les Perrières",47.005616,3.146543,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87691626,1,"St-Léger-des-Vignes",46.838553,3.451102,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87691675,1,"Verneuil",46.842435,3.58425,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87691725,1,"Avrée",46.810672,3.852822,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87694000,1,"Gare de Le Creusot",46.807829,4.430429,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87694141,1,"Gare de Etang",46.867893,4.183846,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87694158,1,"Gare de Mesvres",46.862798,4.244954,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87694166,1,"Gare de Broye",46.861944,4.296092,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87694174,1,"Gare de St-Symphorien-de-Marma.",46.844215,4.337746,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87694182,1,"Gare de Marmagne-Gare",46.833426,4.360203,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87694307,1,"Gare de Montchanin",46.759158,4.481462,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87694364,1,"Gare de St-Léger-sur-Dheune",46.847999,4.627718,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87694398,1,"Gare de Cheilly-les-Maranges",46.892889,4.675986,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87694448,1,"La Roche-en-Brenil",47.385054,4.170247,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87694455,1,"Molphey",47.340016,4.20149,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87694471,1,"Saulieu",47.2829,4.236113,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87694489,1,"St-Martin-de-la-Mer",47.23716,4.248244,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87694513,1,"Brazey-en-Morvan",47.171727,4.286738,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87694539,1,"Barnay",47.087213,4.338068,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87694547,1,"Cordesse-Igornay",47.051769,4.344108,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87694554,1,"Dracy-St-Loup",47.008377,4.343501,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87694570,1,"Gare de Autun",46.954678,4.293028,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87694596,1,"Gare de Brion-Laizy",46.908559,4.207195,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87694687,1,"Gare de Paray-le-Monial",46.447256,4.113628,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87694695,1,"Gare de Digoin",46.485196,3.987637,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87694729,1,"Dyo",46.351716,4.26604,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87694737,1,"Gare de La Clayette-Baudemont",46.288162,4.298451,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87694778,1,"Gare de Chauffailles",46.207404,4.345377,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87694851,1,"Gare de St-Agnan",46.502017,3.879009,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87694869,1,"Gare de Gilly-sur-Loire",46.536983,3.781787,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87694885,1,"Charolles",46.435153,4.273414,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87696005,1,"Gare de Nevers",46.987349,3.15087,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87696088,1,"Gare de Briare",47.646499,2.733685,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87696146,1,"Gare de Cosne-sur-Loire",47.414026,2.932089,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87696153,1,"Hautecourt-Primaire",46.157876,5.420158,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87696161,1,"Gare de Tracy-Sancerre",47.33691,2.880508,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87696179,1,"Gare de Pouilly-sur-Loire",47.28217,2.966063,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87696195,1,"Gare de La-Charité-sur-Loire",47.180995,3.024014,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87696211,1,"Gare de Pougues-les-Eaux",47.076975,3.093823,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87696229,1,"Gare de Fourchambault",47.019234,3.087301,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87696260,1,"Gare de Saincaize",46.931373,3.071971,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87696294,1,"Gare de St-Pierre-le-Moûtier",46.793271,3.111736,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87696302,1,"Gare de Chantenay-St-Imbert",46.728304,3.171699,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87696328,1,"Gare de Moulins-sur-Allier",46.561364,3.338755,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87696427,1,"Gare de Dompierre-Sept-Fons",46.526267,3.674899,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87696450,1,"Gare de Imphy",46.9334,3.259751,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87696468,1,"Gare de Béard",46.865303,3.318114,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87696484,1,"Gare de Decize",46.837332,3.467296,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87696492,1,"Gare de Cercy-la-Tour",46.857926,3.645024,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87696518,1,"Fours",46.817243,3.721173,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87696526,1,"Remilly-St-Honoré-les-B",46.835272,3.815712,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87696534,1,"Gare de Luzy(Nièvre)",46.794044,3.969226,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87696617,1,"Gare de Corbigny",47.253977,3.677881,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87696633,1,"Gare de Flez-Cuzy-Tannay",47.362541,3.615025,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87696807,1,"Gare de Clamecy",47.466487,3.520646,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87696831,1,"Gare de Coulanges-Sur-Yonne",47.527366,3.547154,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87696856,1,"Gare de Châtel-Censoir",47.537739,3.635345,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87697169,1,"Legny-Ponts-Tarrets",45.906795,4.575537,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87699009,1,"La Chapelle-sous-Dun",46.258054,4.295551,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87699629,1,"Echevannes",47.523861,5.181818,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87699850,1,"Malbuisson",46.799257,6.304993,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87700880,1,"Charolles-Est-RD-17",27.140973,-3.404561,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87700930,1,"Diarville-Place-Midon",27.140973,-3.404561,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87700955,1,"Mattaincourt-la-Poste",27.140973,-3.404561,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87700971,1,"Hareville-Monfort-Abri",27.140973,-3.404561,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87701086,1,"Pierreville-Xeuilley",27.140973,-3.404561,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87701094,1,"Pulligny-Foyer-Culturel",27.140973,-3.404561,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87701102,1,"Ceintrey-Grp-Scolaire",27.140973,-3.404561,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87701110,1,"Vézelise-J.-Leclerc",27.140973,-3.404561,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87702084,1,"Bouxwiller-Clos-des-S.",27.140973,-3.404561,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87712026,1,"Gare de Rully",46.880291,4.760774,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87712133,1,"Paris-l'Hôpital",46.913745,4.635807,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87712190,1,"Sully-le-Château",47.006005,4.469681,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87712265,1,"Gare de Brétigny-Norges",47.389627,5.109756,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87712604,1,"Gare de Ouges",47.255673,5.073252,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87712620,1,"Gare de Longecourt-en-Plaine",47.19387,5.134814,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87712679,1,"Gare de Chaugey",47.087531,5.255282,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87713008,1,"Gare de Dijon-Porte-Neuve",47.322794,5.054861,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87713040,1,"Gare de Dijon-Ville",47.323404,5.02728,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87713115,1,"Gare de Les Laumes-Alésia",47.543319,4.462868,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87713131,1,"Gare de Montbard",47.61872,4.336152,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87713156,1,"Gare de Nuits-sous-Ravières",47.72921,4.211266,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87713198,1,"Gare de Tonnerre",47.859603,3.973496,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87713271,1,"Epoisses",47.50651,4.171347,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87713412,1,"Gare de Dole-Ville",47.096155,5.488036,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87713503,1,"Gare de Gevrey-Chambertin",47.227388,4.998789,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87713511,1,"Gare de Vougeot-Gilly-Les-Cît.",47.175618,4.971269,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87713529,1,"Gare de Nuits-St-Georges",47.130668,4.956228,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87713537,1,"Gare de Corgoloin",47.084212,4.916892,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87713545,1,"Gare de Beaune",47.023041,4.848723,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87713560,1,"Gare de Meursault",46.969182,4.795415,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87713578,1,"Gare de Chagny",46.907429,4.74965,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87713586,1,"Gare de Fontaines-Mercurey",46.851217,4.774869,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87713594,1,"Gare de Santenay-les-Bains",46.910985,4.702054,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87713610,1,"Epinac-les-Mines-Mairie",46.991053,4.513543,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87713628,1,"Gare de Saulon",47.224183,5.104766,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87713636,1,"Gare de Aiserey",47.170648,5.158391,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87713644,1,"Gare de Brazey-en-Plaine",47.131563,5.212223,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87713651,1,"Gare de St-Jean-de-Losne",47.099799,5.244335,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87713677,1,"Gare de Seurre",46.99645,5.151248,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87713685,1,"Navilly",46.932458,5.138979,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87713693,1,"St-Bonnet-en-Bresse",46.854845,5.16594,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87713701,1,"Gare de Mervans",46.798883,5.179536,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87713735,1,"Gare de Louhans",46.631126,5.217708,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87713826,1,"Gare de Ruffey",47.370702,5.079387,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87713834,1,"Gare de St-Julien-Clenay",47.405559,5.128045,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87713842,1,"Gare de Gemeaux",47.477803,5.130078,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87713859,1,"Gare de Is-sur-Tille",47.520228,5.129833,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87713933,1,"Change",46.930115,4.631856,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87713966,1,"Dezize",46.909647,4.654321,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87715003,1,"Gare de Pontarlier",46.900982,6.353365,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87715102,1,"Gare de Andelot",46.85938,5.923725,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87715136,1,"Gare de Frasne",46.85745,6.157695,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87715144,1,"Gare de La Rivière",46.870105,6.213439,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87715151,1,"Gare de Ste-Colombe",46.87902,6.265864,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87715169,1,"Les Granges-Narboz",46.879024,6.309097,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87715193,1,"Bonnevaux",46.808419,6.184197,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87715201,1,"Vaux-et-Chantegrue",46.813687,6.24877,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87715219,1,"Gare de Labergement-Ste-Marie",46.773147,6.280666,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87715227,1,"Les Longevilles-Rochej.",46.753627,6.315217,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87715235,1,"Les Granges-Ste-Marie",46.787984,6.277751,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87715250,1,"St-Antoine",46.775615,6.341803,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87715268,1,"Métabief",46.7735,6.350221,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87715326,1,"Gare de Champagnole",46.749247,5.909936,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87715383,1,"Gare de La Chaux-des-Crotenay",46.654536,5.943833,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87715391,1,"Gare de La Chaumusse-Fort-du-Pl",46.604902,5.96146,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87715417,1,"Gare de St-Laurent-en-Grandvaux",46.574925,5.951383,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87715433,1,"Gare de Morbier",46.539109,6.017909,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87715441,1,"Gare de Morez",46.526327,6.023801,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87715516,1,"Les Hôpitaux-Neufs",46.776001,6.371321,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87715524,1,"Jougne",46.760077,6.388785,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87718007,1,"Gare de Besançon-Viotte",47.247038,6.021912,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87718015,1,"Gare de Besançon-Mouillère",47.240382,6.033751,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87718122,1,"Gare de Byans",47.118586,5.85224,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87718130,1,"Gare de Liesle",47.058829,5.820603,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87718155,1,"Gare de Arbois (Jura)",46.912425,5.764767,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87718189,1,"Gare de Poligny",46.844169,5.700318,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87718197,1,"Gare de St-Lothain",46.823719,5.64506,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87718205,1,"Passenans",46.798483,5.618023,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87718221,1,"Montain-Lavigny",46.715514,5.585348,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87718239,1,"Gare de Lons-le-Saunier",46.668398,5.550877,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87718502,1,"Gare de Saône",47.209573,6.101417,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87718510,1,"Gare de Mamirolle",47.199891,6.161878,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87718528,1,"Gare de L'Hôpital-du-Gros-Bois",47.169216,6.213308,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87718544,1,"Gare de Le Valdahon",47.149697,6.342275,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87718551,1,"Gare de Avoudrey",47.129855,6.434848,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87718577,1,"Gare de Gilley",47.050484,6.49229,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87718619,1,"Gare de Morteau",47.053691,6.60486,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87718833,1,"Gare de Mouchard",46.976813,5.799724,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87718841,1,"Gare de Arc-et-Senans",47.030456,5.776935,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87718866,1,"Gare de Montbarrey",47.035877,5.637226,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87718890,1,"Salins-les-Bains",46.937011,5.876125,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87719906,1,"Marcilly sur Tille",47.521609,5.147178,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87719914,1,"Ampilly-le-Sec",47.812061,4.530932,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87719922,1,"Coulmier-le-Sec",47.750198,4.493285,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87719930,1,"Etais",47.708282,4.437541,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87719948,1,"Puits",47.731624,4.464591,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87721332,1,"Gare de Villefranche-sur-Saône",45.984444,4.720814,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87721340,1,"Gare de St-Georges-de-Reneins",46.062191,4.718887,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87721357,1,"Gare de Belleville-sur-Saône",46.111942,4.729002,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87721423,1,"Gare de Lozanne",45.854135,4.68146,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87721753,1,"Gare de Chatillon-d'Azergues",45.875254,4.645199,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87721761,1,"Gare de Chessy (Rhône)",45.885537,4.622497,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87721779,1,"Le Breuil (Rhône)",45.896771,4.591215,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87721787,1,"Gare de Bois-d'Oingt-Légny",45.906588,4.57558,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87721811,1,"Ternand",45.946157,4.536593,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87721829,1,"Gare de Chamelet",45.981605,4.507096,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87721845,1,"Chambost-Allières.",46.018686,4.499135,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87721852,1,"Grandris-Folletière.",46.035952,4.49333,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87721860,1,"Gare de Lamure-sur-Azergues",46.061095,4.492123,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87721878,1,"St-Nizier-d'Azergues",46.087032,4.48043,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87721894,1,"Poule",46.148108,4.456527,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87723197,1,"Gare de Lyon-Part-Dieu",45.760585,4.859435,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87725002,1,"Gare de Chalon-sur-Saône",46.78157,4.843489,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87725689,1,"Gare de Mâcon-Ville",46.302659,4.825149,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87725705,1,"Gare de Mâcon-Loché-TGV",46.282898,4.778948,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87725713,1,"Gare de Crêches-sur-Saône",46.246615,4.783901,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87725739,1,"Gare de Romanèche-Thorins",46.176382,4.742101,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87725804,1,"Gare de Pont-de-Veyle",46.267827,4.892948,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87725812,1,"St-Jean-sur-Veyle",46.260588,4.915644,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87725820,1,"Gare de Vonnas",46.227197,4.991746,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87725838,1,"Gare de Mézériat",46.234927,5.046569,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87726802,1,"Gare de Roanne",46.040211,4.063135,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87732008,1,"Gare de Vichy",46.12697,3.430489,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87732206,1,"Gare de St-Germain-des-Fossés",46.209103,3.430489,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87734004,1,"Gare de Clermont-Ferrand",45.778569,3.100519,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87734053,1,"Gare de Riom-Châtel-Guyon",45.889842,3.120813,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87739912,1,"Remigny",46.908033,4.721624,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87739961,1,"St-Symphorien-des-Bois",46.332735,4.2814,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87743005,1,"Gare de Bourg-en-Bresse",46.200126,5.214969,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87743328,1,"Gare de Villereversure",46.194155,5.397522,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87743351,1,"Gare de Nurieux",46.184727,5.527912,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87743500,1,"Montréal",46.184275,5.577369,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87743518,1,"Martignat",46.209449,5.610343,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87743534,1,"Gare de Oyonnax",46.259609,5.653252,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87743591,1,"Gare de Molinges",46.356961,5.768063,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87743633,1,"Gare de St-Claude",46.38993,5.860389,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87936989,1,"Buswiller-Eglise",48.819683,7.559425,,1,,Europe/Paris,,SIN, +STE:SA:OCE80142893,1,"Gare de Appenweier",48.541345,7.973698,,1,,Europe/Paris,,STE, +STE:SA:OCE80142901,1,"Gare de Legelshurst",48.558591,7.913749,,1,,Europe/Paris,,STE, +STE:SA:OCE80142919,1,"Gare de Kork",48.570037,7.874033,,1,,Europe/Paris,,STE, +STE:SA:OCE80143099,1,"Gare de Offenburg",48.476466,7.946721,,1,,Europe/Paris,,STE, +STE:SA:OCE80143503,1,"Gare de Freiburg-Breisgau",47.99779,7.841586,,1,,Europe/Paris,,STE, +STE:SA:OCE80144139,1,"Gare de Mullheim-Baden-Bf",47.809698,7.600059,,1,,Europe/Paris,,STE, +STE:SA:OCE80144154,1,"Gare de NEUENBURG BADEN",47.811651,7.56288,,1,,Europe/Paris,,STE, +STE:SA:OCE80191031,1,"Gare de WOERTH RHEIN",49.046095,8.273348,,1,,Europe/Paris,,STE, +STE:SA:OCE80194035,1,"Gare de Neustadt (Weinstr) Hbf",49.350062,8.140676,,1,,Europe/Paris,,STE, +STE:SA:OCE80194258,1,"Gare de Landau Hbf",49.197626,8.125599,,1,,Europe/Paris,,STE, +STE:SA:OCE80194324,1,"Gare de WINDEN PFALZ",49.09544,8.122406,,1,,Europe/Paris,,STE, +STE:SA:OCE80251819,1,"Gare de Trier-Hbf",49.756797,6.652356,,1,,Europe/Paris,,STE, +STE:SA:OCE80251850,1,"Gare de Konz-Mitte",49.70008,6.573271,,1,,Europe/Paris,,STE, +STE:SA:OCE80251967,1,"Gare de Perl",49.473195,6.369305,,1,,Europe/Paris,,STE, +STE:SA:OCE82002370,1,"Gare de Rodange",49.551039,5.839638,,1,,Europe/Paris,,STE, +STE:SA:OCE82009300,1,"Gare de Petange",49.552084,5.860895,,1,,Europe/Paris,,STE, +STE:SA:OCE85042150,1,"Gare de Travers",47.5423,7.41307,,1,,Europe/Paris,,STE, +STE:SA:OCE85042218,1,"Gare de Neuchâtel",47.596593,7.672129,,1,,Europe/Paris,,STE, +STE:SA:OCE85043141,1,"Gare de La Chaux-de-Fonds",47.098901,6.825585,,1,,Europe/Paris,,STE, +STE:SA:OCE85043158,1,"Gare de Crêt-du-Locle (le)",47.077743,6.785299,,1,,Europe/Paris,,STE, +STE:SA:OCE87109306,1,"Gare de Lille CHR",50.614528,3.035514,,1,,Europe/Paris,,STE, +STE:SA:OCE87141010,1,"Gare de Jarville-la-Malgrange",48.669949,6.202212,,1,,Europe/Paris,,STE, +STE:SA:OCE87141036,1,"Gare de Foug",48.679149,5.791507,,1,,Europe/Paris,,STE, +STE:SA:OCE87141051,1,"Gare de Fontenoy-sur-Moselle",48.711451,5.980135,,1,,Europe/Paris,,STE, +STE:SA:OCE87141093,1,"Gare de Laneuveville-devt-Nancy",48.65565,6.228019,,1,,Europe/Paris,,STE, +STE:SA:OCE87141101,1,"Gare de Varangéville-St-Nicolas",48.63515,6.313367,,1,,Europe/Paris,,STE, +STE:SA:OCE87141119,1,"Gare de Dombasle-sur-Meurthe",48.623342,6.343528,,1,,Europe/Paris,,STE, +STE:SA:OCE87141127,1,"Gare de Rosières-aux-Salines",48.605424,6.350632,,1,,Europe/Paris,,STE, +STE:SA:OCE87141135,1,"Gare de Blainville-Damelevières",48.564914,6.38672,,1,,Europe/Paris,,STE, +STE:SA:OCE87141200,1,"Gare de Einvaux",48.503597,6.393219,,1,,Europe/Paris,,STE, +STE:SA:OCE87141218,1,"Gare de Bayon",48.468049,6.322897,,1,,Europe/Paris,,STE, +STE:SA:OCE87141374,1,"Gare de St-Clément-Laronxe",48.531156,6.608597,,1,,Europe/Paris,,STE, +STE:SA:OCE87141382,1,"Gare de Chenevières",48.519542,6.632446,,1,,Europe/Paris,,STE, +STE:SA:OCE87141390,1,"Gare de Ménil-Flin",48.504998,6.659214,,1,,Europe/Paris,,STE, +STE:SA:OCE87141408,1,"Gare de Azerailles",48.491271,6.69614,,1,,Europe/Paris,,STE, +STE:SA:OCE87141416,1,"Gare de Baccarat",48.452278,6.744065,,1,,Europe/Paris,,STE, +STE:SA:OCE87141424,1,"Gare de Bertrichamps",48.428407,6.791071,,1,,Europe/Paris,,STE, +STE:SA:OCE87141432,1,"Gare de Thiaville",48.413851,6.810229,,1,,Europe/Paris,,STE, +STE:SA:OCE87141473,1,"Gare de Houdemont",48.645555,6.179676,,1,,Europe/Paris,,STE, +STE:SA:OCE87141481,1,"Gare de Ludres",48.621999,6.170892,,1,,Europe/Paris,,STE, +STE:SA:OCE87141499,1,"Gare de Messein",48.612824,6.138063,,1,,Europe/Paris,,STE, +STE:SA:OCE87141507,1,"Gare de Neuves-Maisons",48.6148,6.107791,,1,,Europe/Paris,,STE, +STE:SA:OCE87142224,1,"Gare de Bologne",48.198598,5.13424,,1,,Europe/Paris,,STE, +STE:SA:OCE87142232,1,"Gare de Vignory",48.270507,5.124221,,1,,Europe/Paris,,STE, +STE:SA:OCE87142265,1,"Gare de Gudmont",48.337453,5.140831,,1,,Europe/Paris,,STE, +STE:SA:OCE87144063,1,"Gare de Vincey (Vosges)",48.343427,6.335839,,1,,Europe/Paris,,STE, +STE:SA:OCE87144071,1,"Gare de Châtel-Nomexy",48.307118,6.388046,,1,,Europe/Paris,,STE, +STE:SA:OCE87144089,1,"Gare de Igney",48.270914,6.399598,,1,,Europe/Paris,,STE, +STE:SA:OCE87144097,1,"Gare de Thaon",48.244676,6.416316,,1,,Europe/Paris,,STE, +STE:SA:OCE87144121,1,"Gare de Xertigny",48.053001,6.376753,,1,,Europe/Paris,,STE, +STE:SA:OCE87144147,1,"Gare de Bains-les-Bains",47.981215,6.295184,,1,,Europe/Paris,,STE, +STE:SA:OCE87144329,1,"Gare de Lesseux-Frapelle",48.289721,7.07661,,1,,Europe/Paris,,STE, +STE:SA:OCE87144386,1,"Gare de Colroy-Lubine",48.314656,7.131263,,1,,Europe/Paris,,STE, +STE:SA:OCE87144428,1,"Gare de Pouxeux",48.103977,6.580836,,1,,Europe/Paris,,STE, +STE:SA:OCE87144436,1,"Gare de Eloyes",48.08715,6.60007,,1,,Europe/Paris,,STE, +STE:SA:OCE87144626,1,"Gare de Raon-l'Etape",48.40395,6.837079,,1,,Europe/Paris,,STE, +STE:SA:OCE87144642,1,"Gare de Etival-Clairefontaine",48.367033,6.877098,,1,,Europe/Paris,,STE, +STE:SA:OCE87144683,1,"Gare de St-Michel-sur-Meurthe",48.327484,6.888187,,1,,Europe/Paris,,STE, +STE:SA:OCE87146217,1,"Gare de St-Nabord",48.045747,6.581609,,1,,Europe/Paris,,STE, +STE:SA:OCE87171256,1,"Gare de Montbré",49.193805,4.038664,,1,,Europe/Paris,,STE, +STE:SA:OCE87171264,1,"Gare de Trois-Puits",49.206777,4.038379,,1,,Europe/Paris,,STE, +STE:SA:OCE87171272,1,"Gare de Reims-Maison-Blanche",49.233392,4.022709,,1,,Europe/Paris,,STE, +STE:SA:OCE87171298,1,"Gare de Muizon (PN32)",49.278258,3.891022,,1,,Europe/Paris,,STE, +STE:SA:OCE87171314,1,"Gare de Jonchery-sur-Vesle",49.289725,3.819838,,1,,Europe/Paris,,STE, +STE:SA:OCE87171322,1,"Gare de Breuil-Romain",49.308527,3.766017,,1,,Europe/Paris,,STE, +STE:SA:OCE87171462,1,"Gare de Bazancourt",49.360999,4.173952,,1,,Europe/Paris,,STE, +STE:SA:OCE87171561,1,"Gare de Ay",49.048792,4.001644,,1,,Europe/Paris,,STE, +STE:SA:OCE87171579,1,"Gare de Avenay",49.064536,4.043282,,1,,Europe/Paris,,STE, +STE:SA:OCE87171587,1,"Gare de Germaine",49.127942,4.022495,,1,,Europe/Paris,,STE, +STE:SA:OCE87171595,1,"Gare de Rilly-la-Montagne",49.167204,4.041171,,1,,Europe/Paris,,STE, +STE:SA:OCE87171702,1,"Gare de Aguilcourt-Variscourt",49.408007,3.972984,,1,,Europe/Paris,,STE, +STE:SA:OCE87171710,1,"Gare de Courcy-Brimont",49.329158,4.014949,,1,,Europe/Paris,,STE, +STE:SA:OCE87171728,1,"Gare de Loivre",49.346751,3.990411,,1,,Europe/Paris,,STE, +STE:SA:OCE87171736,1,"Gare de Guignicourt (Aisne)",49.435105,3.961078,,1,,Europe/Paris,,STE, +STE:SA:OCE87171744,1,"Gare de Amifontaine",49.484648,3.910675,,1,,Europe/Paris,,STE, +STE:SA:OCE87171751,1,"Gare de St-Erme",49.526773,3.857401,,1,,Europe/Paris,,STE, +STE:SA:OCE87171769,1,"Gare de Coucy-les-Eppes",49.555629,3.775876,,1,,Europe/Paris,,STE, +STE:SA:OCE87172023,1,"Gare de Nouzonville",49.812193,4.742666,,1,,Europe/Paris,,STE, +STE:SA:OCE87172031,1,"Gare de Joigny-sur-Meuse",49.833377,4.766973,,1,,Europe/Paris,,STE, +STE:SA:OCE87172049,1,"Gare de Bogny-sur-Meuse",49.858458,4.763337,,1,,Europe/Paris,,STE, +STE:SA:OCE87172056,1,"Gare de Monthermé",49.865549,4.740996,,1,,Europe/Paris,,STE, +STE:SA:OCE87172064,1,"Gare de Deville",49.879547,4.707018,,1,,Europe/Paris,,STE, +STE:SA:OCE87172072,1,"Gare de Laifour",49.911504,4.692807,,1,,Europe/Paris,,STE, +STE:SA:OCE87172080,1,"Gare de Revin",49.938564,4.642754,,1,,Europe/Paris,,STE, +STE:SA:OCE87172098,1,"Gare de Fumay",49.986212,4.69199,,1,,Europe/Paris,,STE, +STE:SA:OCE87172106,1,"Gare de Haybes",50.01174,4.703909,,1,,Europe/Paris,,STE, +STE:SA:OCE87172114,1,"Gare de Vireux-Molhain",50.082871,4.723135,,1,,Europe/Paris,,STE, +STE:SA:OCE87172122,1,"Gare de Aubrives",50.103662,4.760893,,1,,Europe/Paris,,STE, +STE:SA:OCE87172130,1,"Gare de Givet",50.140253,4.817939,,1,,Europe/Paris,,STE, +STE:SA:OCE87172171,1,"Gare de Poix-Terron",49.65,4.636409,,1,,Europe/Paris,,STE, +STE:SA:OCE87172262,1,"Gare de Amagne-Lucquy",49.523728,4.47375,,1,,Europe/Paris,,STE, +STE:SA:OCE87172270,1,"Gare de Rethel",49.504571,4.370284,,1,,Europe/Paris,,STE, +STE:SA:OCE87172544,1,"Gare de Liart-SNCF",49.771014,4.335172,,1,,Europe/Paris,,STE, +STE:SA:OCE87172858,1,"Gare de Anchamps",49.930389,4.671588,,1,,Europe/Paris,,STE, +STE:SA:OCE87172874,1,"Gare de Fépin",50.023735,4.725742,,1,,Europe/Paris,,STE, +STE:SA:OCE87175018,1,"Gare de Revigny",48.824197,4.985552,,1,,Europe/Paris,,STE, +STE:SA:OCE87175067,1,"Gare de Nançois-Tronville",48.717984,5.291109,,1,,Europe/Paris,,STE, +STE:SA:OCE87175075,1,"Gare de Fronville-St-Urbain",48.401361,5.156023,,1,,Europe/Paris,,STE, +STE:SA:OCE87175141,1,"Gare de Eurville",48.582915,5.044871,,1,,Europe/Paris,,STE, +STE:SA:OCE87175240,1,"Gare de Lérouville",48.79625,5.539362,,1,,Europe/Paris,,STE, +STE:SA:OCE87175828,1,"Gare de Pagny-sur-Meuse",48.696575,5.733624,,1,,Europe/Paris,,STE, +STE:SA:OCE87181016,1,"Gare de St-Louis-la-Chaussée",47.60952,7.531261,,1,,Europe/Paris,,STE, +STE:SA:OCE87181024,1,"Gare de Hasenrain",47.736301,7.331322,,1,,Europe/Paris,,STE, +STE:SA:OCE87181040,1,"Gare de Flaxlanden",47.698837,7.304603,,1,,Europe/Paris,,STE, +STE:SA:OCE87181057,1,"Gare de Tagolsheim",47.654951,7.263919,,1,,Europe/Paris,,STE, +STE:SA:OCE87181065,1,"Gare de Walheim",47.641795,7.26323,,1,,Europe/Paris,,STE, +STE:SA:OCE87181222,1,"Gare de Colmar-St-Joseph",48.082108,7.343768,,1,,Europe/Paris,,STE, +STE:SA:OCE87181289,1,"Gare de Vieux-Thann-Zi",47.80194,7.133222,,1,,Europe/Paris,,STE, +STE:SA:OCE87182055,1,"Gare de Mulhouse-Dornach",47.74691,7.308525,,1,,Europe/Paris,,STE, +STE:SA:OCE87182071,1,"Gare de Rixheim",47.74872,7.40655,,1,,Europe/Paris,,STE, +STE:SA:OCE87182105,1,"Gare de Sierentz",47.656098,7.459127,,1,,Europe/Paris,,STE, +STE:SA:OCE87182113,1,"Gare de Bartenheim",47.634789,7.487687,,1,,Europe/Paris,,STE, +STE:SA:OCE87182196,1,"Gare de Zillisheim",47.694317,7.294181,,1,,Europe/Paris,,STE, +STE:SA:OCE87182204,1,"Gare de Illfurth",47.675939,7.268178,,1,,Europe/Paris,,STE, +STE:SA:OCE87182345,1,"Gare de Logelbach",48.087292,7.321091,,1,,Europe/Paris,,STE, +STE:SA:OCE87182352,1,"Gare de Turckheim",48.085653,7.279168,,1,,Europe/Paris,,STE, +STE:SA:OCE87182386,1,"Gare de Gunsbach-Griesbach",48.04161,7.174361,,1,,Europe/Paris,,STE, +STE:SA:OCE87182576,1,"Gare de Bitschwiller (Ht-Rhin)",47.827795,7.078274,,1,,Europe/Paris,,STE, +STE:SA:OCE87182600,1,"Gare de St-Amarin",47.873046,7.028693,,1,,Europe/Paris,,STE, +STE:SA:OCE87182626,1,"Gare de Fellering",47.897501,6.986938,,1,,Europe/Paris,,STE, +STE:SA:OCE87182634,1,"Gare de Oderen",47.911289,6.973681,,1,,Europe/Paris,,STE, +STE:SA:OCE87182659,1,"Gare de Breitenbach",48.028261,7.103602,,1,,Europe/Paris,,STE, +STE:SA:OCE87182691,1,"Gare de Staffelfelden",47.827568,7.264953,,1,,Europe/Paris,,STE, +STE:SA:OCE87182709,1,"Gare de Bollwiller",47.856726,7.267338,,1,,Europe/Paris,,STE, +STE:SA:OCE87182840,1,"Gare de Bantzenheim",47.811517,7.504448,,1,,Europe/Paris,,STE, +STE:SA:OCE87182915,1,"Gare de Neuenburg-Baden-Frontiè",47.811421,7.562777,,1,,Europe/Paris,,STE, +STE:SA:OCE87184200,1,"Gare de Bas-Evette",47.681087,6.807055,,1,,Europe/Paris,,STE, +STE:SA:OCE87184242,1,"Gare de Trois-Chênes",47.648068,6.846055,,1,,Europe/Paris,,STE, +STE:SA:OCE87184531,1,"Gare de Voujeaucourt",47.479129,6.769869,,1,,Europe/Paris,,STE, +STE:SA:OCE87184556,1,"Gare de Colombier-Fontaine",47.455399,6.689141,,1,,Europe/Paris,,STE, +STE:SA:OCE87184572,1,"Gare de L'Isle-sur-le-Doubs",47.44748,6.581431,,1,,Europe/Paris,,STE, +STE:SA:OCE87184622,1,"Gare de Clerval",47.396604,6.492318,,1,,Europe/Paris,,STE, +STE:SA:OCE87187930,1,"Gare de Bâle-St-Jean",47.570369,7.5728,,1,,Europe/Paris,,STE, +STE:SA:OCE87191619,1,"Gare de Koenigsmacker",49.396456,6.273898,,1,,Europe/Paris,,STE, +STE:SA:OCE87191627,1,"Gare de Malling",49.421708,6.30249,,1,,Europe/Paris,,STE, +STE:SA:OCE87191635,1,"Gare de Sierck-les-Bains",49.443694,6.350181,,1,,Europe/Paris,,STE, +STE:SA:OCE87191643,1,"Gare de Apach (Moselle)",49.458945,6.372363,,1,,Europe/Paris,,STE, +STE:SA:OCE87192070,1,"Gare de Metz-Nord",49.136868,6.167576,,1,,Europe/Paris,,STE, +STE:SA:OCE87192203,1,"Gare de Peltre",49.074006,6.222108,,1,,Europe/Paris,,STE, +STE:SA:OCE87192211,1,"Gare de Courcelles-sur-Nied",49.063231,6.31121,,1,,Europe/Paris,,STE, +STE:SA:OCE87192229,1,"Gare de Sanry-sur-Nied",49.044714,6.339801,,1,,Europe/Paris,,STE, +STE:SA:OCE87192302,1,"Gare de Bénestroff",48.906561,6.75327,,1,,Europe/Paris,,STE, +STE:SA:OCE87193276,1,"Gare de Hombourg-Haut",49.126127,6.77491,,1,,Europe/Paris,,STE, +STE:SA:OCE87193318,1,"Gare de St-Avold",49.0857,6.72072,,1,,Europe/Paris,,STE, +STE:SA:OCE87193342,1,"Gare de Téting (Moselle)",49.051889,6.664666,,1,,Europe/Paris,,STE, +STE:SA:OCE87193359,1,"Gare de Faulquemont",49.045336,6.60366,,1,,Europe/Paris,,STE, +STE:SA:OCE87193383,1,"Gare de Herny",49.003618,6.476822,,1,,Europe/Paris,,STE, +STE:SA:OCE87193516,1,"Gare de Farebersviller",49.118083,6.861586,,1,,Europe/Paris,,STE, +STE:SA:OCE87193524,1,"Gare de Farschviller",49.088013,6.908159,,1,,Europe/Paris,,STE, +STE:SA:OCE87212100,1,"Gare de Mundolsheim",48.645018,7.72132,,1,,Europe/Paris,,STE, +STE:SA:OCE87212118,1,"Gare de Vendenheim",48.665842,7.717696,,1,,Europe/Paris,,STE, +STE:SA:OCE87212126,1,"Gare de Stephansfeld",48.717475,7.704815,,1,,Europe/Paris,,STE, +STE:SA:OCE87212134,1,"Gare de Brumath",48.733034,7.700431,,1,,Europe/Paris,,STE, +STE:SA:OCE87212159,1,"Gare de Schwindratzheim",48.753638,7.600624,,1,,Europe/Paris,,STE, +STE:SA:OCE87212175,1,"Gare de Wilwisheim",48.745822,7.507726,,1,,Europe/Paris,,STE, +STE:SA:OCE87212191,1,"Gare de Strasbourg-Roethig",48.563145,7.693648,,1,,Europe/Paris,,STE, +STE:SA:OCE87212209,1,"Gare de Steinbourg",48.76372,7.416534,,1,,Europe/Paris,,STE, +STE:SA:OCE87212241,1,"Gare de Graffenstaden",48.533373,7.690114,,1,,Europe/Paris,,STE, +STE:SA:OCE87212258,1,"Gare de Geispolsheim",48.521919,7.68537,,1,,Europe/Paris,,STE, +STE:SA:OCE87212274,1,"Gare de Limersheim",48.461114,7.659671,,1,,Europe/Paris,,STE, +STE:SA:OCE87212316,1,"Gare de La Wantzenau",48.665081,7.824465,,1,,Europe/Paris,,STE, +STE:SA:OCE87212449,1,"Gare de Munchhausen",48.923852,8.141056,,1,,Europe/Paris,,STE, +STE:SA:OCE87212456,1,"Gare de Mothern",48.934823,8.161642,,1,,Europe/Paris,,STE, +STE:SA:OCE87213405,1,"Gare de Walbourg",48.886239,7.809211,,1,,Europe/Paris,,STE, +STE:SA:OCE87213413,1,"Gare de Hoelschloch-Surbourg",48.916342,7.831424,,1,,Europe/Paris,,STE, +STE:SA:OCE87213447,1,"Gare de Hoffen",48.931201,7.933505,,1,,Europe/Paris,,STE, +STE:SA:OCE87213454,1,"Gare de Hunspach",48.961636,7.953795,,1,,Europe/Paris,,STE, +STE:SA:OCE87213462,1,"Gare de Riedseltz",48.991133,7.962986,,1,,Europe/Paris,,STE, +STE:SA:OCE87213660,1,"Gare de Kurtzenhouse",48.741882,7.813036,,1,,Europe/Paris,,STE, +STE:SA:OCE87213678,1,"Gare de Weyersheim",48.717822,7.797072,,1,,Europe/Paris,,STE, +STE:SA:OCE87213686,1,"Gare de Hoerdt",48.702981,7.779068,,1,,Europe/Paris,,STE, +STE:SA:OCE87214106,1,"Gare de Ebersheim",48.308808,7.492684,,1,,Europe/Paris,,STE, +STE:SA:OCE87214114,1,"Gare de Kogenheim",48.338753,7.534624,,1,,Europe/Paris,,STE, +STE:SA:OCE87214130,1,"Gare de Matzenheim",48.398984,7.619608,,1,,Europe/Paris,,STE, +STE:SA:OCE87214221,1,"Gare de Epfig",48.363597,7.450383,,1,,Europe/Paris,,STE, +STE:SA:OCE87214288,1,"Gare de Obernai",48.462327,7.489016,,1,,Europe/Paris,,STE, +STE:SA:OCE87214502,1,"Gare de Lingolsheim",48.559438,7.678594,,1,,Europe/Paris,,STE, +STE:SA:OCE87214585,1,"Gare de Mutzig",48.533803,7.462141,,1,,Europe/Paris,,STE, +STE:SA:OCE87214593,1,"Gare de Gresswiller",48.532999,7.424665,,1,,Europe/Paris,,STE, +STE:SA:OCE87214643,1,"Gare de Mullerhof",48.524737,7.311924,,1,,Europe/Paris,,STE, +STE:SA:OCE87214650,1,"Gare de Lutzelhouse",48.517616,7.292954,,1,,Europe/Paris,,STE, +STE:SA:OCE87214734,1,"Gare de Fouday",48.424844,7.187413,,1,,Europe/Paris,,STE, +STE:SA:OCE87214759,1,"Gare de Saulxures (Bas-Rhin)",48.38956,7.147895,,1,,Europe/Paris,,STE, +STE:SA:OCE87214775,1,"Gare de Bourg-Bruche",48.359787,7.137372,,1,,Europe/Paris,,STE, +STE:SA:OCE87215079,1,"Gare de Reding",48.742827,7.09618,,1,,Europe/Paris,,STE, +STE:SA:OCE87223263,1,"Gare de Lille Europe",50.638846,3.075745,,1,,Europe/Paris,,STE, +STE:SA:OCE87271577,1,"Gare de Nanteuil-le-Haudouin",49.142172,2.793852,,1,,Europe/Paris,,STE, +STE:SA:OCE87271593,1,"Gare de Crépy-en-Valois",49.231257,2.88644,,1,,Europe/Paris,,STE, +STE:SA:OCE87271601,1,"Gare de Vaumoise",49.233918,2.988437,,1,,Europe/Paris,,STE, +STE:SA:OCE87271734,1,"Gare de Villers-Cotterets",49.250229,3.093653,,1,,Europe/Paris,,STE, +STE:SA:OCE87271775,1,"Gare de Longpont",49.272642,3.230221,,1,,Europe/Paris,,STE, +STE:SA:OCE87271783,1,"Gare de Vierzy",49.290996,3.277559,,1,,Europe/Paris,,STE, +STE:SA:OCE87271817,1,"Gare de Soissons",49.369193,3.338051,,1,,Europe/Paris,,STE, +STE:SA:OCE87271874,1,"Gare de Crouy",49.403745,3.357269,,1,,Europe/Paris,,STE, +STE:SA:OCE87271882,1,"Gare de Margival",49.439473,3.402945,,1,,Europe/Paris,,STE, +STE:SA:OCE87272013,1,"Gare de Jaux",49.386546,2.777064,,1,,Europe/Paris,,STE, +STE:SA:OCE87272096,1,"Gare de Esches",49.212605,2.170942,,1,,Europe/Paris,,STE, +STE:SA:OCE87272195,1,"Gare de Longueil-Annel",49.467227,2.863209,,1,,Europe/Paris,,STE, +STE:SA:OCE87272286,1,"Gare de Corcy",49.255074,3.215943,,1,,Europe/Paris,,STE, +STE:SA:OCE87276303,1,"Gare de Longueil-Ste-Marie",49.342441,2.717881,,1,,Europe/Paris,,STE, +STE:SA:OCE87276311,1,"Gare de Chevrières",49.337399,2.68298,,1,,Europe/Paris,,STE, +STE:SA:OCE87276352,1,"Gare de Rieux-Angicourt",49.297843,2.519682,,1,,Europe/Paris,,STE, +STE:SA:OCE87276378,1,"Gare de Villers-St-Paul",49.282468,2.489347,,1,,Europe/Paris,,STE, +STE:SA:OCE87276618,1,"Gare de Montataire",49.251241,2.435948,,1,,Europe/Paris,,STE, +STE:SA:OCE87276717,1,"Gare de Bornel-Belle-Eglise",49.194644,2.20722,,1,,Europe/Paris,,STE, +STE:SA:OCE87276725,1,"Gare de Chambly",49.163615,2.240497,,1,,Europe/Paris,,STE, +STE:SA:OCE87276733,1,"Gare de Le Meux-Croix-St-Ouen",49.359339,2.753271,,1,,Europe/Paris,,STE, +STE:SA:OCE87276741,1,"Gare de Thourotte",49.475364,2.88182,,1,,Europe/Paris,,STE, +STE:SA:OCE87276766,1,"Gare de Ribécourt",49.50632,2.927115,,1,,Europe/Paris,,STE, +STE:SA:OCE87276774,1,"Gare de Ourscamps",49.53394,2.954083,,1,,Europe/Paris,,STE, +STE:SA:OCE87281006,1,"Gare de Dunkerque",51.030438,2.368943,,1,,Europe/Paris,,STE, +STE:SA:OCE87281055,1,"Gare de Croix l'Allumette",50.686837,3.151232,,1,,Europe/Paris,,STE, +STE:SA:OCE87281105,1,"Gare de Bergues",50.968936,2.425672,,1,,Europe/Paris,,STE, +STE:SA:OCE87281113,1,"Gare de Esquelbecq",50.889711,2.412191,,1,,Europe/Paris,,STE, +STE:SA:OCE87281121,1,"Gare de Arnèke",50.831562,2.408436,,1,,Europe/Paris,,STE, +STE:SA:OCE87281139,1,"Gare de Cassel",50.787472,2.460534,,1,,Europe/Paris,,STE, +STE:SA:OCE87281246,1,"Gare de Gravelines",50.97887,2.12326,,1,,Europe/Paris,,STE, +STE:SA:OCE87281279,1,"Gare de Bourbourg",50.952299,2.194346,,1,,Europe/Paris,,STE, +STE:SA:OCE87281311,1,"Gare de Grande Synthe",51.002648,2.313412,,1,,Europe/Paris,,STE, +STE:SA:OCE87281402,1,"Gare de Coudekerque Branche",51.017921,2.375089,,1,,Europe/Paris,,STE, +STE:SA:OCE87281410,1,"Gare de Pont d'Ardres",50.892134,1.970732,,1,,Europe/Paris,,STE, +STE:SA:OCE87281451,1,"Gare de Renescure",50.732059,2.372061,,1,,Europe/Paris,,STE, +STE:SA:OCE87281469,1,"Gare de Ebblinghem",50.730608,2.409012,,1,,Europe/Paris,,STE, +STE:SA:OCE87282624,1,"Gare de Lyon-Jean-Macé",45.745198,4.841515,,1,,Europe/Paris,,STE, +STE:SA:OCE87286062,1,"Gare de Hellemmes",50.622663,3.115244,,1,,Europe/Paris,,STE, +STE:SA:OCE87286112,1,"Gare de Loos lès Lille",50.612874,3.016923,,1,,Europe/Paris,,STE, +STE:SA:OCE87286161,1,"Gare de Steenwerck",50.712905,2.787105,,1,,Europe/Paris,,STE, +STE:SA:OCE87286187,1,"Gare de La Madeleine (Nord)",50.6606,3.072567,,1,,Europe/Paris,,STE, +STE:SA:OCE87286195,1,"Gare de St-André (Nord)",50.654332,3.047612,,1,,Europe/Paris,,STE, +STE:SA:OCE87286229,1,"Gare de Wambrechies",50.68104,3.040552,,1,,Europe/Paris,,STE, +STE:SA:OCE87286245,1,"Gare de Quesnoy sur Deule",50.708071,2.995506,,1,,Europe/Paris,,STE, +STE:SA:OCE87286278,1,"Gare de Pérenchies",50.666978,2.977266,,1,,Europe/Paris,,STE, +STE:SA:OCE87286401,1,"Gare de Santes",50.59202,2.961919,,1,,Europe/Paris,,STE, +STE:SA:OCE87286419,1,"Gare de Wavrin",50.574401,2.936581,,1,,Europe/Paris,,STE, +STE:SA:OCE87286427,1,"Gare de La Fontaine (Nord)",50.566208,2.926074,,1,,Europe/Paris,,STE, +STE:SA:OCE87286435,1,"Gare de Don Sainghin",50.55172,2.914526,,1,,Europe/Paris,,STE, +STE:SA:OCE87286542,1,"Gare de Tourcoing",50.716729,3.168009,,1,,Europe/Paris,,STE, +STE:SA:OCE87286575,1,"Gare de Landas",50.468593,3.290592,,1,,Europe/Paris,,STE, +STE:SA:OCE87286609,1,"Gare de Nomain",50.502479,3.206,,1,,Europe/Paris,,STE, +STE:SA:OCE87286716,1,"Gare de Croix Wasquehal",50.678545,3.138095,,1,,Europe/Paris,,STE, +STE:SA:OCE87286732,1,"Gare de Roubaix",50.695352,3.163021,,1,,Europe/Paris,,STE, +STE:SA:OCE87286831,1,"Gare de Pont de Bois",50.623857,3.130718,,1,,Europe/Paris,,STE, +STE:SA:OCE87286856,1,"Gare de Annappes",50.622813,3.146368,,1,,Europe/Paris,,STE, +STE:SA:OCE87286864,1,"Gare de Ascq",50.621746,3.159874,,1,,Europe/Paris,,STE, +STE:SA:OCE87287102,1,"Gare de Lezennes",50.620321,3.098216,,1,,Europe/Paris,,STE, +STE:SA:OCE87287128,1,"Gare de Mont de Terre",50.618038,3.095982,,1,,Europe/Paris,,STE, +STE:SA:OCE87287151,1,"Gare de Nieppe",50.69688,2.828747,,1,,Europe/Paris,,STE, +STE:SA:OCE87287169,1,"Gare de Marquette",50.672387,3.051059,,1,,Europe/Paris,,STE, +STE:SA:OCE87287185,1,"Gare de Deulémont",50.716118,2.993394,,1,,Europe/Paris,,STE, +STE:SA:OCE87287193,1,"Gare de Ste Marguerite",50.740277,3.009203,,1,,Europe/Paris,,STE, +STE:SA:OCE87287250,1,"Gare de Lille Porte de Douai",50.611973,3.07532,,1,,Europe/Paris,,STE, +STE:SA:OCE87287276,1,"Gare de Ennevelin",50.549188,3.158639,,1,,Europe/Paris,,STE, +STE:SA:OCE87287292,1,"Gare de Nortkerque",50.882854,2.02336,,1,,Europe/Paris,,STE, +STE:SA:OCE87287300,1,"Gare de Ruminghem",50.86179,2.158292,,1,,Europe/Paris,,STE, +STE:SA:OCE87295022,1,"Gare de Recquignies",50.28411,4.044003,,1,,Europe/Paris,,STE, +STE:SA:OCE87295535,1,"Gare de Louvroil",50.268371,3.953504,,1,,Europe/Paris,,STE, +STE:SA:OCE87295543,1,"Gare de Sous-le-Bois",50.265383,3.93834,,1,,Europe/Paris,,STE, +STE:SA:OCE87295642,1,"Gare de Landrecies",50.128133,3.682158,,1,,Europe/Paris,,STE, +STE:SA:OCE87295667,1,"Gare de Ors",50.103386,3.626911,,1,,Europe/Paris,,STE, +STE:SA:OCE87295725,1,"Gare de Avesnelles",50.118493,3.948528,,1,,Europe/Paris,,STE, +STE:SA:OCE87295790,1,"Gare de Leval",50.184544,3.83665,,1,,Europe/Paris,,STE, +STE:SA:OCE87295808,1,"Gare de Berlaimont",50.198039,3.810509,,1,,Europe/Paris,,STE, +STE:SA:OCE87295857,1,"Gare de Le Quesnoy (Nord)",50.250206,3.645506,,1,,Europe/Paris,,STE, +STE:SA:OCE87296012,1,"Gare de Laon",49.570552,3.624374,,1,,Europe/Paris,,STE, +STE:SA:OCE87296152,1,"Gare de Crépy-Couvron",49.623301,3.51649,,1,,Europe/Paris,,STE, +STE:SA:OCE87296178,1,"Gare de Clacy-Mons",49.543655,3.576526,,1,,Europe/Paris,,STE, +STE:SA:OCE87296418,1,"Gare de Montescourt",49.738716,3.251914,,1,,Europe/Paris,,STE, +STE:SA:OCE87296434,1,"Gare de Mennessis",49.691037,3.271922,,1,,Europe/Paris,,STE, +STE:SA:OCE87296459,1,"Gare de Appilly",49.580711,3.121198,,1,,Europe/Paris,,STE, +STE:SA:OCE87296566,1,"Gare de Anizy-Pinon",49.496158,3.448713,,1,,Europe/Paris,,STE, +STE:SA:OCE87296608,1,"Gare de Versigny",49.657466,3.433591,,1,,Europe/Paris,,STE, +STE:SA:OCE87296632,1,"Gare de La Fère",49.658027,3.369753,,1,,Europe/Paris,,STE, +STE:SA:OCE87296871,1,"Gare de Flavy-le-Martel",49.718471,3.190744,,1,,Europe/Paris,,STE, +STE:SA:OCE87297051,1,"Gare de Viry-Noureuil",49.627436,3.250197,,1,,Europe/Paris,,STE, +STE:SA:OCE87297283,1,"Gare de Vauxaillon",49.474242,3.409679,,1,,Europe/Paris,,STE, +STE:SA:OCE87297515,1,"Gare de Les Bons Pères",50.279957,4.011168,,1,,Europe/Paris,,STE, +STE:SA:OCE87297523,1,"Gare de Hachette",50.158167,3.743126,,1,,Europe/Paris,,STE, +STE:SA:OCE87297531,1,"Gare de St Hilaire",50.132012,3.91354,,1,,Europe/Paris,,STE, +STE:SA:OCE87300863,1,"Gare de Besançon-Franche-Comté",47.307471,5.954759,,1,,Europe/Paris,,STE, +STE:SA:OCE87303875,1,"Gare de Ingersheim-Cité-Sc.",48.08887,7.297705,,1,,Europe/Paris,,STE, +STE:SA:OCE87313056,1,"Gare de Corbie",49.911589,2.499656,,1,,Europe/Paris,,STE, +STE:SA:OCE87313064,1,"Gare de Méricourt Ribémont",49.955374,2.571988,,1,,Europe/Paris,,STE, +STE:SA:OCE87313072,1,"Gare de Albert",50.005397,2.644524,,1,,Europe/Paris,,STE, +STE:SA:OCE87313080,1,"Gare de St-Roch (Somme)",49.893424,2.283719,,1,,Europe/Paris,,STE, +STE:SA:OCE87313098,1,"Gare de Ailly-sur-Somme",49.928347,2.200556,,1,,Europe/Paris,,STE, +STE:SA:OCE87313106,1,"Gare de Picquigny",49.946466,2.142353,,1,,Europe/Paris,,STE, +STE:SA:OCE87313114,1,"Gare de Hangest",49.982803,2.065276,,1,,Europe/Paris,,STE, +STE:SA:OCE87313122,1,"Gare de Longpré-Corps-Saints",50.011331,2.002784,,1,,Europe/Paris,,STE, +STE:SA:OCE87313130,1,"Gare de Pont-Rémy",50.047332,1.899038,,1,,Europe/Paris,,STE, +STE:SA:OCE87313213,1,"Gare de Boves",49.846409,2.397711,,1,,Europe/Paris,,STE, +STE:SA:OCE87313221,1,"Gare de Ailly-sur-Noye",49.754401,2.364171,,1,,Europe/Paris,,STE, +STE:SA:OCE87313239,1,"Gare de La Faloise",49.69651,2.348704,,1,,Europe/Paris,,STE, +STE:SA:OCE87313247,1,"Gare de Breteuil-Embranchement",49.626407,2.384717,,1,,Europe/Paris,,STE, +STE:SA:OCE87313262,1,"Gare de Gannes",49.572102,2.437023,,1,,Europe/Paris,,STE, +STE:SA:OCE87313288,1,"Gare de St-Rémy-en-l'Eau",49.468072,2.425546,,1,,Europe/Paris,,STE, +STE:SA:OCE87313296,1,"Gare de Avrechy",49.444525,2.417901,,1,,Europe/Paris,,STE, +STE:SA:OCE87313320,1,"Gare de Moreuil",49.776981,2.475806,,1,,Europe/Paris,,STE, +STE:SA:OCE87313338,1,"Gare de Hargicourt-Pierrepont",49.714289,2.531213,,1,,Europe/Paris,,STE, +STE:SA:OCE87313346,1,"Gare de Montdidier-SNCF",49.641491,2.562979,,1,,Europe/Paris,,STE, +STE:SA:OCE87313353,1,"Gare de Tricot",49.561998,2.581794,,1,,Europe/Paris,,STE, +STE:SA:OCE87313379,1,"Gare de Namps-Quevauvillers",49.808311,2.105406,,1,,Europe/Paris,,STE, +STE:SA:OCE87313387,1,"Gare de Estrées-St-Denis",49.438266,2.641978,,1,,Europe/Paris,,STE, +STE:SA:OCE87313403,1,"Gare de Rémy (Oise)",49.433318,2.705705,,1,,Europe/Paris,,STE, +STE:SA:OCE87313437,1,"Gare de Villers-Bretonneux",49.862842,2.520932,,1,,Europe/Paris,,STE, +STE:SA:OCE87313445,1,"Gare de Marcelcave",49.853155,2.581737,,1,,Europe/Paris,,STE, +STE:SA:OCE87313460,1,"Gare de Rosières (Somme)",49.822548,2.711259,,1,,Europe/Paris,,STE, +STE:SA:OCE87313478,1,"Gare de Chaulnes-SNCF",49.807629,2.801183,,1,,Europe/Paris,,STE, +STE:SA:OCE87313486,1,"Gare de Nesle (Somme)",49.763814,2.909151,,1,,Europe/Paris,,STE, +STE:SA:OCE87313494,1,"Gare de Ham (Somme)",49.739833,3.070381,,1,,Europe/Paris,,STE, +STE:SA:OCE87313510,1,"Gare de Beauvais-Gare-SNCF",49.42651,2.088638,,1,,Europe/Paris,,STE, +STE:SA:OCE87313544,1,"Gare de Cramoisy",49.256509,2.404882,,1,,Europe/Paris,,STE, +STE:SA:OCE87313551,1,"Gare de Cires-lès-Mello",49.271826,2.360472,,1,,Europe/Paris,,STE, +STE:SA:OCE87313569,1,"Gare de Balagny-St-Epin",49.294288,2.343999,,1,,Europe/Paris,,STE, +STE:SA:OCE87313577,1,"Gare de Mouy-Bury",49.320494,2.326439,,1,,Europe/Paris,,STE, +STE:SA:OCE87313585,1,"Gare de Hermes-Berthecourt",49.354406,2.24176,,1,,Europe/Paris,,STE, +STE:SA:OCE87313593,1,"Gare de Villers-St-Sépulcre",49.367898,2.220537,,1,,Europe/Paris,,STE, +STE:SA:OCE87313601,1,"Gare de Rochy-Condé",49.398664,2.172761,,1,,Europe/Paris,,STE, +STE:SA:OCE87313668,1,"Gare de Méru",49.232338,2.132546,,1,,Europe/Paris,,STE, +STE:SA:OCE87313676,1,"Gare de Laboissière-le-Déluge",49.288532,2.13614,,1,,Europe/Paris,,STE, +STE:SA:OCE87313684,1,"Gare de St-Sulpice-Auteuil",49.347422,2.116453,,1,,Europe/Paris,,STE, +STE:SA:OCE87313767,1,"Gare de Aumale",49.765126,1.756083,,1,,Europe/Paris,,STE, +STE:SA:OCE87313809,1,"Gare de Blangy-sur-Bresle",49.932369,1.625632,,1,,Europe/Paris,,STE, +STE:SA:OCE87313817,1,"Gare de Longroy-Gamaches",49.981947,1.552815,,1,,Europe/Paris,,STE, +STE:SA:OCE87313833,1,"Gare de Formerie",49.654153,1.722819,,1,,Europe/Paris,,STE, +STE:SA:OCE87313841,1,"Gare de Fouilloy",49.736236,1.825538,,1,,Europe/Paris,,STE, +STE:SA:OCE87315044,1,"Gare de Daours",49.899139,2.458682,,1,,Europe/Paris,,STE, +STE:SA:OCE87316059,1,"Gare de Heilly",49.943384,2.53949,,1,,Europe/Paris,,STE, +STE:SA:OCE87316067,1,"Gare de Buire sur l'Ancre",49.964783,2.598211,,1,,Europe/Paris,,STE, +STE:SA:OCE87316075,1,"Gare de Dreuil-lès-Amiens",49.914551,2.230793,,1,,Europe/Paris,,STE, +STE:SA:OCE87316109,1,"Gare de Dommartin-Remiencourt",49.799289,2.39255,,1,,Europe/Paris,,STE, +STE:SA:OCE87316125,1,"Gare de Thézy-Glimont",49.811716,2.435883,,1,,Europe/Paris,,STE, +STE:SA:OCE87316208,1,"Gare de Wacquemoulin",49.502949,2.611758,,1,,Europe/Paris,,STE, +STE:SA:OCE87316398,1,"Gare de Heilles-Mouchy",49.340268,2.272926,,1,,Europe/Paris,,STE, +STE:SA:OCE87316406,1,"Gare de Montreuil-sur-Thérain",49.381334,2.200762,,1,,Europe/Paris,,STE, +STE:SA:OCE87316679,1,"Gare de Pihen",50.872785,1.784601,,1,,Europe/Paris,,STE, +STE:SA:OCE87316687,1,"Gare de Le Haut-Banc",50.816414,1.772302,,1,,Europe/Paris,,STE, +STE:SA:OCE87316745,1,"Gare de Acheux-Franleu",50.082617,1.657279,,1,,Europe/Paris,,STE, +STE:SA:OCE87316752,1,"Gare de Feuquerolles",50.064885,1.605555,,1,,Europe/Paris,,STE, +STE:SA:OCE87317016,1,"Gare de Boulogne Tintelleries",50.72725,1.609085,,1,,Europe/Paris,,STE, +STE:SA:OCE87317081,1,"Gare de Dannes Camiers",50.57585,1.614725,,1,,Europe/Paris,,STE, +STE:SA:OCE87317099,1,"Gare de Neufchâtel-Hardelot-Pge",50.623631,1.643366,,1,,Europe/Paris,,STE, +STE:SA:OCE87317115,1,"Gare de Pont de Briques",50.682472,1.627188,,1,,Europe/Paris,,STE, +STE:SA:OCE87317123,1,"Gare de Wimille Wimereux",50.763843,1.613599,,1,,Europe/Paris,,STE, +STE:SA:OCE87317305,1,"Gare de Les Fontinettes",50.940972,1.849846,,1,,Europe/Paris,,STE, +STE:SA:OCE87317321,1,"Gare de Caffiers",50.84977,1.812153,,1,,Europe/Paris,,STE, +STE:SA:OCE87317339,1,"Gare de Marquise Rinxent",50.805649,1.729852,,1,,Europe/Paris,,STE, +STE:SA:OCE87317487,1,"Gare de Quesnoy-le-Montant",50.108964,1.702482,,1,,Europe/Paris,,STE, +STE:SA:OCE87317610,1,"Gare de Beau Marais",50.945383,1.898071,,1,,Europe/Paris,,STE, +STE:SA:OCE87338525,1,"Gare de Krimmeri-Meinau",48.563621,7.752629,,1,,Europe/Paris,,STE, +STE:SA:OCE87342030,1,"Gare de Miraumont",50.094941,2.734372,,1,,Europe/Paris,,STE, +STE:SA:OCE87342048,1,"Gare de Achiet",50.131685,2.78014,,1,,Europe/Paris,,STE, +STE:SA:OCE87342063,1,"Gare de Courcelles-le-Comte",50.169552,2.787893,,1,,Europe/Paris,,STE, +STE:SA:OCE87342071,1,"Gare de Boisleux",50.210403,2.771839,,1,,Europe/Paris,,STE, +STE:SA:OCE87342105,1,"Gare de Bully Grenay",50.448364,2.733149,,1,,Europe/Paris,,STE, +STE:SA:OCE87342121,1,"Gare de Mazingarbe",50.460494,2.701283,,1,,Europe/Paris,,STE, +STE:SA:OCE87342139,1,"Gare de Noeux",50.482893,2.674208,,1,,Europe/Paris,,STE, +STE:SA:OCE87342188,1,"Gare de Maroeuil",50.3224,2.698433,,1,,Europe/Paris,,STE, +STE:SA:OCE87342204,1,"Gare de Fouquereuil",50.525393,2.60818,,1,,Europe/Paris,,STE, +STE:SA:OCE87342212,1,"Gare de Frévin Capelle",50.347234,2.633192,,1,,Europe/Paris,,STE, +STE:SA:OCE87342220,1,"Gare de Chocques",50.538274,2.564794,,1,,Europe/Paris,,STE, +STE:SA:OCE87342246,1,"Gare de Aubigny en Artois",50.352924,2.592553,,1,,Europe/Paris,,STE, +STE:SA:OCE87342253,1,"Gare de Savy-Berlette",50.353808,2.557816,,1,,Europe/Paris,,STE, +STE:SA:OCE87342261,1,"Gare de Ham en Artois",50.590026,2.465811,,1,,Europe/Paris,,STE, +STE:SA:OCE87342287,1,"Gare de Thiennes",50.652415,2.472673,,1,,Europe/Paris,,STE, +STE:SA:OCE87342295,1,"Gare de Steenbecque",50.681419,2.510756,,1,,Europe/Paris,,STE, +STE:SA:OCE87342303,1,"Gare de Tincques",50.357015,2.497966,,1,,Europe/Paris,,STE, +STE:SA:OCE87342402,1,"Gare de Beuvry (Pas de Calais)",50.535705,2.691525,,1,,Europe/Paris,,STE, +STE:SA:OCE87342410,1,"Gare de Cuinchy",50.521932,2.747352,,1,,Europe/Paris,,STE, +STE:SA:OCE87342451,1,"Gare de Salomé",50.541569,2.837444,,1,,Europe/Paris,,STE, +STE:SA:OCE87342469,1,"Gare de Marquillies",50.548039,2.867104,,1,,Europe/Paris,,STE, +STE:SA:OCE87342527,1,"Gare de Farbus",50.357679,2.83114,,1,,Europe/Paris,,STE, +STE:SA:OCE87342584,1,"Gare de Avion",50.407174,2.83369,,1,,Europe/Paris,,STE, +STE:SA:OCE87342592,1,"Gare de Bailleul Sir Berthoult",50.335313,2.841099,,1,,Europe/Paris,,STE, +STE:SA:OCE87343160,1,"Gare de Beuvrages",50.389529,3.506097,,1,,Europe/Paris,,STE, +STE:SA:OCE87343210,1,"Gare de Le Poirier Université",50.330009,3.502555,,1,,Europe/Paris,,STE, +STE:SA:OCE87343400,1,"Gare de Trith St Léger",50.331614,3.48944,,1,,Europe/Paris,,STE, +STE:SA:OCE87343418,1,"Gare de Prouvy Thiant",50.316653,3.461415,,1,,Europe/Paris,,STE, +STE:SA:OCE87343459,1,"Gare de Denain",50.334483,3.388679,,1,,Europe/Paris,,STE, +STE:SA:OCE87345033,1,"Gare de Loos en Gohelle",50.437811,2.793251,,1,,Europe/Paris,,STE, +STE:SA:OCE87345124,1,"Gare de Pont de Sallaumines",50.415791,2.863195,,1,,Europe/Paris,,STE, +STE:SA:OCE87345132,1,"Gare de Coron de Méricourt",50.414928,2.88609,,1,,Europe/Paris,,STE, +STE:SA:OCE87345140,1,"Gare de Billy Montigny",50.415528,2.912034,,1,,Europe/Paris,,STE, +STE:SA:OCE87345157,1,"Gare de Hénin Beaumont",50.416994,2.95206,,1,,Europe/Paris,,STE, +STE:SA:OCE87345165,1,"Gare de Dourges",50.431996,2.98711,,1,,Europe/Paris,,STE, +STE:SA:OCE87345215,1,"Gare de Sallaumines",50.422239,2.855496,,1,,Europe/Paris,,STE, +STE:SA:OCE87345231,1,"Gare de Loison sous Lens",50.440473,2.859365,,1,,Europe/Paris,,STE, +STE:SA:OCE87345264,1,"Gare de Pont à Vendin",50.471225,2.875164,,1,,Europe/Paris,,STE, +STE:SA:OCE87345272,1,"Gare de Meurchin",50.496798,2.892781,,1,,Europe/Paris,,STE, +STE:SA:OCE87345280,1,"Gare de Bauvin Provin",50.51114,2.905364,,1,,Europe/Paris,,STE, +STE:SA:OCE87345389,1,"Gare de Bouchain",50.278059,3.331676,,1,,Europe/Paris,,STE, +STE:SA:OCE87345397,1,"Gare de Iwuy",50.225677,3.329873,,1,,Europe/Paris,,STE, +STE:SA:OCE87345496,1,"Gare de Escaudoeuvres",50.191783,3.275504,,1,,Europe/Paris,,STE, +STE:SA:OCE87345546,1,"Gare de Maurois",50.067489,3.456213,,1,,Europe/Paris,,STE, +STE:SA:OCE87345553,1,"Gare de Bertry",50.09123,3.448784,,1,,Europe/Paris,,STE, +STE:SA:OCE87345587,1,"Gare de Cattenières",50.128112,3.333709,,1,,Europe/Paris,,STE, +STE:SA:OCE87345595,1,"Gare de Wambaix",50.133831,3.31138,,1,,Europe/Paris,,STE, +STE:SA:OCE87381269,1,"Gare de Sérifontaine",49.357202,1.764112,,1,,Europe/Paris,,STE, +STE:SA:OCE87386540,1,"Gare de Munster-Badischhof",48.039175,7.153019,,1,,Europe/Paris,,STE, +STE:SA:OCE87400986,1,"Gare de Magneux-Courlandon",49.310001,3.733144,,1,,Europe/Paris,,STE, +STE:SA:OCE87402297,1,"Gare de Colmar-Mésanges",48.085751,7.333989,,1,,Europe/Paris,,STE, +STE:SA:OCE87411413,1,"Gare de St-Martin-du-Vivier",49.470847,1.161736,,1,,Europe/Paris,,STE, +STE:SA:OCE87411439,1,"Gare de Morgny",49.523226,1.247811,,1,,Europe/Paris,,STE, +STE:SA:OCE87411447,1,"Gare de Longuerue-Vieux-Manoir",49.556827,1.276671,,1,,Europe/Paris,,STE, +STE:SA:OCE87411462,1,"Gare de Sommery",49.629443,1.43567,,1,,Europe/Paris,,STE, +STE:SA:OCE87417444,1,"Gare de Franchet-D'espèrey",49.241762,4.014172,,1,,Europe/Paris,,STE, +STE:SA:OCE87472605,1,"Gare de Thann-Centre",47.809751,7.101628,,1,,Europe/Paris,,STE, +STE:SA:OCE87536425,1,"Autun-Lycée-Technique",46.938386,4.293763,,1,,Europe/Paris,,STE, +STE:SA:OCE87543009,1,"Gare de Orléans",47.908153,1.904753,,1,,Europe/Paris,,STE, +STE:SA:OCE87543116,1,"Gare de St-Cyr-en-Val-La-Source",47.819197,1.947569,,1,,Europe/Paris,,STE, +STE:SA:OCE87543124,1,"Gare de La Ferté-St-Aubin",47.720968,1.932337,,1,,Europe/Paris,,STE, +STE:SA:OCE87543140,1,"Gare de Lamotte-Beuvron",47.59397,2.022591,,1,,Europe/Paris,,STE, +STE:SA:OCE87543165,1,"Gare de Salbris",47.42514,2.047737,,1,,Europe/Paris,,STE, +STE:SA:OCE87574434,1,"Gare de Veretz-Montlouis",47.371332,0.819784,,1,,Europe/Paris,,STE, +STE:SA:OCE87574442,1,"Gare de Azay-sur-Cher",47.365095,0.859978,,1,,Europe/Paris,,STE, +STE:SA:OCE87574459,1,"Gare de St-Martin-le-Beau",47.354949,0.905961,,1,,Europe/Paris,,STE, +STE:SA:OCE87574475,1,"Gare de Bléré-la-Croix",47.337723,0.987737,,1,,Europe/Paris,,STE, +STE:SA:OCE87574491,1,"Gare de Chenonceaux",47.330651,1.065394,,1,,Europe/Paris,,STE, +STE:SA:OCE87574848,1,"Gare de Chissay-en-Touraine",47.334934,1.133578,,1,,Europe/Paris,,STE, +STE:SA:OCE87574855,1,"Gare de Montrichard",47.343576,1.17182,,1,,Europe/Paris,,STE, +STE:SA:OCE87574897,1,"Gare de St-Aignan-Noyers",47.286728,1.383662,,1,,Europe/Paris,,STE, +STE:SA:OCE87576090,1,"Gare de Vierzon-Forges",47.210349,2.099327,,1,,Europe/Paris,,STE, +STE:SA:OCE87576108,1,"Gare de Foëcy",47.17599,2.162264,,1,,Europe/Paris,,STE, +STE:SA:OCE87576116,1,"Gare de Mehun-sur-Yèvre",47.139572,2.207314,,1,,Europe/Paris,,STE, +STE:SA:OCE87576132,1,"Gare de Marmagne",47.100077,2.282647,,1,,Europe/Paris,,STE, +STE:SA:OCE87576728,1,"Gare de Mennetou-sur-Cher",47.268848,1.876472,,1,,Europe/Paris,,STE, +STE:SA:OCE87576868,1,"Gare de Selles-sur-Cher",47.281595,1.546144,,1,,Europe/Paris,,STE, +STE:SA:OCE87576876,1,"Gare de Gièvres",47.27873,1.667812,,1,,Europe/Paris,,STE, +STE:SA:OCE87576884,1,"Gare de Villefranche-sur-Cher",47.29474,1.768037,,1,,Europe/Paris,,STE, +STE:SA:OCE87682278,1,"Gare de Moret-Veneux-les-Sabl.",48.378404,2.799525,,1,,Europe/Paris,,STE, +STE:SA:OCE87682450,1,"Gare de Champagne-sur-Seine",48.406582,2.79922,,1,,Europe/Paris,,STE, +STE:SA:OCE87683102,1,"Gare de Villeneuve-la-Guyard",48.342902,3.071783,,1,,Europe/Paris,,STE, +STE:SA:OCE87683201,1,"Gare de Etigny-Véron",48.138262,3.290171,,1,,Europe/Paris,,STE, +STE:SA:OCE87691394,1,"Gare de La Marche",47.139763,3.039386,,1,,Europe/Paris,,STE, +STE:SA:OCE87691436,1,"Gare de Garchizy",47.043048,3.085856,,1,,Europe/Paris,,STE, +STE:SA:OCE87691469,1,"Gare de Vauzelles",47.001357,3.134209,,1,,Europe/Paris,,STE, +STE:SA:OCE87694612,1,"Gare de Blanzy",46.693734,4.39101,,1,,Europe/Paris,,STE, +STE:SA:OCE87694620,1,"Gare de Montceau-les-Mines",46.671068,4.362067,,1,,Europe/Paris,,STE, +STE:SA:OCE87694638,1,"Gare de Galuzot",46.642025,4.32992,,1,,Europe/Paris,,STE, +STE:SA:OCE87694646,1,"Gare de Ciry-le-Noble",46.604259,4.299516,,1,,Europe/Paris,,STE, +STE:SA:OCE87694653,1,"Gare de Génelard",46.581192,4.23795,,1,,Europe/Paris,,STE, +STE:SA:OCE87696187,1,"Gare de Mesves-Bulcy",47.242461,3.006256,,1,,Europe/Paris,,STE, +STE:SA:OCE87696203,1,"Gare de Tronsanges",47.112881,3.054216,,1,,Europe/Paris,,STE, +STE:SA:OCE87696310,1,"Gare de Villeneuve-sur-Allier",46.659305,3.246989,,1,,Europe/Paris,,STE, +STE:SA:OCE87696336,1,"Gare de Bessay",46.442932,3.360574,,1,,Europe/Paris,,STE, +STE:SA:OCE87696351,1,"Gare de Varennes-sur-Allier",46.315441,3.394161,,1,,Europe/Paris,,STE, +STE:SA:OCE87710731,1,"Gare de Ecole-Valentin",47.275017,5.993911,,1,,Europe/Paris,,STE, +STE:SA:OCE87712182,1,"Gare de Neuilly-lès-Dijon",47.28178,5.11079,,1,,Europe/Paris,,STE, +STE:SA:OCE87712323,1,"Gare de Lantenay",47.33524,4.86045,,1,,Europe/Paris,,STE, +STE:SA:OCE87712331,1,"Gare de Velars",47.326241,4.926739,,1,,Europe/Paris,,STE, +STE:SA:OCE87713065,1,"Gare de Malain",47.327279,4.80947,,1,,Europe/Paris,,STE, +STE:SA:OCE87713073,1,"Gare de Blaisy-Bas",47.373254,4.741372,,1,,Europe/Paris,,STE, +STE:SA:OCE87713081,1,"Gare de Verrey",47.438539,4.670304,,1,,Europe/Paris,,STE, +STE:SA:OCE87713099,1,"Gare de Thenissey",47.494372,4.62357,,1,,Europe/Paris,,STE, +STE:SA:OCE87713313,1,"Gare de Genlis",47.244309,5.22378,,1,,Europe/Paris,,STE, +STE:SA:OCE87713321,1,"Gare de Collonges (Côte-d'Or)",47.221055,5.266023,,1,,Europe/Paris,,STE, +STE:SA:OCE87713339,1,"Gare de Villers-les-Pots",47.206737,5.347999,,1,,Europe/Paris,,STE, +STE:SA:OCE87713347,1,"Gare de Auxonne",47.192909,5.377162,,1,,Europe/Paris,,STE, +STE:SA:OCE87713669,1,"Gare de Pagny (Côte-d'Or)",47.046176,5.200803,,1,,Europe/Paris,,STE, +STE:SA:OCE87718106,1,"Gare de Montferrand-Thoraise",47.184788,5.90765,,1,,Europe/Paris,,STE, +STE:SA:OCE87718114,1,"Gare de Torpes-Boussières",47.16394,5.888766,,1,,Europe/Paris,,STE, +STE:SA:OCE87718213,1,"Gare de Domblans-Voiteur",46.762743,5.597938,,1,,Europe/Paris,,STE, +STE:SA:OCE87718270,1,"Gare de Cousance",46.535157,5.38705,,1,,Europe/Paris,,STE, +STE:SA:OCE87718296,1,"Gare de St-Amour",46.433678,5.334537,,1,,Europe/Paris,,STE, +STE:SA:OCE87718304,1,"Gare de Franois",47.227514,5.93727,,1,,Europe/Paris,,STE, +STE:SA:OCE87718312,1,"Gare de Dannemarie-Velesmes",47.203748,5.873609,,1,,Europe/Paris,,STE, +STE:SA:OCE87718320,1,"Gare de St-Vit",47.183489,5.809006,,1,,Europe/Paris,,STE, +STE:SA:OCE87718338,1,"Gare de Ranchot",47.152487,5.724631,,1,,Europe/Paris,,STE, +STE:SA:OCE87718361,1,"Gare de Orchamps",47.150078,5.659305,,1,,Europe/Paris,,STE, +STE:SA:OCE87718403,1,"Gare de Roche-lez-Beaupré",47.276417,6.111272,,1,,Europe/Paris,,STE, +STE:SA:OCE87718411,1,"Gare de Novillars",47.283906,6.132791,,1,,Europe/Paris,,STE, +STE:SA:OCE87718429,1,"Gare de Deluz",47.292454,6.199545,,1,,Europe/Paris,,STE, +STE:SA:OCE87718437,1,"Gare de Laissey",47.298881,6.23369,,1,,Europe/Paris,,STE, +STE:SA:OCE87718460,1,"Gare de Baume-les-Dames",47.353962,6.359671,,1,,Europe/Paris,,STE, +STE:SA:OCE87718536,1,"Gare de Etalans",47.155726,6.270615,,1,,Europe/Paris,,STE, +STE:SA:OCE87718601,1,"Gare de Valdahon-Camp-Militaire",47.150613,6.315078,,1,,Europe/Paris,,STE, +STE:SA:OCE87721001,1,"Gare de Lyon-Vaise",45.780142,4.80405,,1,,Europe/Paris,,STE, +STE:SA:OCE87721225,1,"Gare de Collonges-Fontaines",45.82911,4.846667,,1,,Europe/Paris,,STE, +STE:SA:OCE87721241,1,"Gare de Couzon-au-Mont-d'Or",45.848701,4.829517,,1,,Europe/Paris,,STE, +STE:SA:OCE87721266,1,"Gare de Albigny-Neuville",45.874857,4.832844,,1,,Europe/Paris,,STE, +STE:SA:OCE87721282,1,"Gare de St-Germain-au-Mont-d'Or",45.888442,4.804176,,1,,Europe/Paris,,STE, +STE:SA:OCE87721290,1,"Gare de Quincieux",45.906904,4.778574,,1,,Europe/Paris,,STE, +STE:SA:OCE87721324,1,"Gare de Anse",45.939335,4.719743,,1,,Europe/Paris,,STE, +STE:SA:OCE87722025,1,"Gare de Lyon-Perrache",45.748492,4.825748,,1,,Europe/Paris,,STE, +STE:SA:OCE87722538,1,"Gare de Feyzin",45.665891,4.853071,,1,,Europe/Paris,,STE, +STE:SA:OCE87722546,1,"Gare de Sérézin",45.627175,4.818039,,1,,Europe/Paris,,STE, +STE:SA:OCE87722561,1,"Gare de Chasse-sur-Rhône",45.582394,4.79485,,1,,Europe/Paris,,STE, +STE:SA:OCE87722579,1,"Gare de Estressin",45.540271,4.868264,,1,,Europe/Paris,,STE, +STE:SA:OCE87722587,1,"Gare de Vienne",45.521214,4.874305,,1,,Europe/Paris,,STE, +STE:SA:OCE87722652,1,"Gare de St-Clair-les-Roches",45.450387,4.769905,,1,,Europe/Paris,,STE, +STE:SA:OCE87722678,1,"Gare de Le Péage-de-Roussillon",45.371659,4.795408,,1,,Europe/Paris,,STE, +STE:SA:OCE87723585,1,"Gare de Meximieux-Pérouges",45.901787,5.193333,,1,,Europe/Paris,,STE, +STE:SA:OCE87723700,1,"Gare de Sathonay-Rillieux",45.82025,4.875267,,1,,Europe/Paris,,STE, +STE:SA:OCE87723718,1,"Gare de Les Echets",45.874622,4.910811,,1,,Europe/Paris,,STE, +STE:SA:OCE87723726,1,"Gare de Mionnay",45.896772,4.919585,,1,,Europe/Paris,,STE, +STE:SA:OCE87723734,1,"Gare de St-André-de-Corcy",45.92593,4.948782,,1,,Europe/Paris,,STE, +STE:SA:OCE87723742,1,"Gare de St-Marcel-en-Dombes",45.950366,4.977512,,1,,Europe/Paris,,STE, +STE:SA:OCE87723759,1,"Gare de Villars-les-Dombes",46.004255,5.028411,,1,,Europe/Paris,,STE, +STE:SA:OCE87723767,1,"Gare de Marlieux-Chatillon",46.06406,5.073203,,1,,Europe/Paris,,STE, +STE:SA:OCE87723783,1,"Gare de St-Paul-de-Varax",46.100057,5.128181,,1,,Europe/Paris,,STE, +STE:SA:OCE87723791,1,"Gare de Servas-Lent",46.130662,5.168125,,1,,Europe/Paris,,STE, +STE:SA:OCE87725614,1,"Gare de Sennecey-le-Grand",46.640615,4.87426,,1,,Europe/Paris,,STE, +STE:SA:OCE87725622,1,"Gare de Tournus",46.566719,4.906522,,1,,Europe/Paris,,STE, +STE:SA:OCE87725663,1,"Gare de Fleurville-Pont-de-Vaux",46.450838,4.884239,,1,,Europe/Paris,,STE, +STE:SA:OCE87725671,1,"Gare de Senozan",46.391482,4.870517,,1,,Europe/Paris,,STE, +STE:SA:OCE87725721,1,"Gare de Pontanevaux",46.213025,4.772877,,1,,Europe/Paris,,STE, +STE:SA:OCE87725846,1,"Gare de Polliat",46.244737,5.123833,,1,,Europe/Paris,,STE, +STE:SA:OCE87728501,1,"Gare de St Fons",45.70576,4.852555,,1,,Europe/Paris,,STE, +STE:SA:OCE87734046,1,"Gare de Gerzat",45.833317,3.143098,,1,,Europe/Paris,,STE, +STE:SA:OCE87734152,1,"Gare de Sarliève-Cournon",45.7387,3.168053,,1,,Europe/Paris,,STE, +STE:SA:OCE87734160,1,"Gare de Le Cendre-Orcet",45.723817,3.188689,,1,,Europe/Paris,,STE, +STE:SA:OCE87734178,1,"Gare de Les Martres-de-Veyre",45.688172,3.193299,,1,,Europe/Paris,,STE, +STE:SA:OCE87734186,1,"Gare de Vic-le-Comte",45.664898,3.207027,,1,,Europe/Paris,,STE, +STE:SA:OCE87743112,1,"Gare de St-Martin-du-Mont",46.095816,5.303041,,1,,Europe/Paris,,STE, +STE:SA:OCE87743120,1,"Gare de Pont-d'Ain",46.054006,5.334332,,1,,Europe/Paris,,STE, +STE:SA:OCE87743146,1,"Gare de Ambronay-Priay",46.011639,5.338266,,1,,Europe/Paris,,STE, +STE:SA:OCE87743302,1,"Gare de Ceyzériat",46.183336,5.325673,,1,,Europe/Paris,,STE, +STE:SA:OCE87743336,1,"Gare de Simandre-sur-Suran",46.220324,5.420952,,1,,Europe/Paris,,STE, +STE:SA:OCE87743344,1,"Gare de Cize-Bolozon",46.213642,5.453868,,1,,Europe/Paris,,STE, +STE:SA:OCE87743526,1,"Gare de Bellignat",46.238626,5.630446,,1,,Europe/Paris,,STE, +STE:SA:OCE87743716,1,"Gare de Ambérieu-en-Bugey",45.954008,5.342313,,1,,Europe/Paris,,STE, +STE:SA:OCE87761007,1,"Gare de Valence-Ville",44.92807,4.893295,,1,,Europe/Paris,,STE, +STE:SA:OCE87761106,1,"Gare de St-Rambert-d'Albon",45.297816,4.810625,,1,,Europe/Paris,,STE, +STE:SA:OCE87761130,1,"Gare de St-Vallier-sur-Rhône",45.185682,4.814339,,1,,Europe/Paris,,STE, +STE:SA:OCE87761163,1,"Gare de Tain",45.072181,4.839746,,1,,Europe/Paris,,STE, +STE:SA:OCE87761247,1,"Gare de Livron",44.779597,4.830567,,1,,Europe/Paris,,STE, +STE:SA:OCE87761262,1,"Gare de Loriol",44.754494,4.817237,,1,,Europe/Paris,,STE, +STE:SA:OCE87764001,1,"Gare de Montélimar",44.559,4.74479,,1,,Europe/Paris,,STE, +STE:SA:OCE87764290,1,"Gare de Donzère",44.442629,4.705126,,1,,Europe/Paris,,STE, +STE:SA:OCE87764308,1,"Gare de Pierrelatte",44.374572,4.703759,,1,,Europe/Paris,,STE, +STE:SA:OCE87764357,1,"Gare de Bollène-la-Croisière",44.271536,4.707954,,1,,Europe/Paris,,STE, +STE:SA:OCE87765008,1,"Gare de Avignon-Centre",43.941877,4.805262,,1,,Europe/Paris,,STE, +STE:SA:OCE87765107,1,"Gare de Orange",44.137305,4.819495,,1,,Europe/Paris,,STE, +STE:SA:OCE87765180,1,"Gare de Courthézon",44.089995,4.888176,,1,,Europe/Paris,,STE, +STE:SA:OCE87765198,1,"Gare de Bédarrides",44.040764,4.893118,,1,,Europe/Paris,,STE, +STE:SA:OCE87765206,1,"Gare de Sorgues-Chât.du-Pape",44.005417,4.87561,,1,,Europe/Paris,,STE, +STE:SA:OCE87782607,1,"Gare de Clermont-la-Pardieu",45.766954,3.134207,,1,,Europe/Paris,,STE, +STE:SA:OCE88210060,1,"Gare de Anvers/Antwerpen C.",51.216151,4.421137,,1,,Europe/Paris,,STE, +STE:SA:OCE88630080,1,"Gare de Namur",50.468968,4.862509,,1,,Europe/Paris,,STE, +STE:SA:OCE88720090,1,"Gare de Charleroi Sud",50.40476,4.438642,,1,,Europe/Paris,,STE, +STE:SA:OCE88810000,1,"Gare de Mons",50.456158,3.94454,,1,,Europe/Paris,,STE, +STE:SA:OCE88840040,1,"Gare de Ghislain",50.442502,3.819202,,1,,Europe/Paris,,STE, +STE:SA:OCE88850010,1,"Gare de Tournai",50.612801,3.3968,,1,,Europe/Paris,,STE, +STE:SA:OCE88850685,1,"Gare de Froyennes.",50.630348,3.354084,,1,,Europe/Paris,,STE, +STE:SA:OCE88857040,1,"Gare de Mouscron / Moeskroen",50.740031,3.22748,,1,,Europe/Paris,,STE, +STE:SA:OCE88920070,1,"Gare de Gand/Gent-Sint-Pieters",51.635491,4.447424,,1,,Europe/Paris,,STE, +STE:SA:OCE88960080,1,"Gare de Courtrai/Kortrijk",50.824469,3.264444,,1,,Europe/Paris,,STE, +STE:SA:OCE88961490,1,"Gare de Waregem",50.891775,3.424409,,1,,Europe/Paris,,STE, +TRN:SA:DUA8711300,1,"GARE DE PARIS EST",48.876392,2.358217,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8711610,1,"MEAUX",48.95699,2.874014,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8711649,1,"TRILPORT",48.960226,2.95006,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8711650,1,"CHANGIS SAINT-JEAN",48.958998,3.025092,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8711651,1,"LA FERTE SOUS JOUARRE",48.950549,3.124783,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8711655,1,"NANTEUIL SAACY",48.97389,3.219757,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8711656,1,"NOGENT L'ARTAUD CHARLY",48.968768,3.322956,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8711657,1,"CHEZY SUR MARNE",48.990359,3.361628,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8711658,1,"CHATEAU THIERRY",49.037949,3.409597,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8711661,1,"ISLES ARMENTIERES CONGIS",48.998273,3.007334,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8711663,1,"LIZY SUR OURCQ",49.021915,3.031758,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8711664,1,"CROUY SUR OURCQ",49.091908,3.062916,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8711666,1,"MAREUIL SUR OURCQ",49.135474,3.075627,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8711667,1,"LA FERTE MILON",49.179505,3.120613,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8716478,1,"STADE DE FRANCE SAINT-DENIS",48.917795,2.351937,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8727101,1,"SAINT-DENIS",48.935038,2.34646,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8727103,1,"GARE DE PARIS NORD",48.88034,2.356399,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8727116,1,"PIERREFITTE STAINS",48.963176,2.370633,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8727141,1,"AULNAY SOUS BOIS",48.931967,2.495058,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8727152,1,"MITRY CLAYE",48.975768,2.642987,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8727153,1,"DAMMARTIN JUILLY SAINT-MARD",49.032577,2.699061,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8727155,1,"LE PLESSIS BELLEVILLE",49.096121,2.744686,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8727157,1,"NANTEUIL LE HAUDOIN",49.142827,2.794553,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8727158,1,"ORMOY VILLERS",49.200877,2.838108,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8727159,1,"CREPY EN VALOIS",49.231222,2.888467,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8727204,1,"COMPANS",48.991391,2.66506,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8727205,1,"THIEUX NANTOUILLET",49.008114,2.680252,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8727610,1,"GARE DE ST OUEN L'AUMONE",49.04544,2.106192,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8727611,1,"CHANTILLY GOUVIEUX",49.187334,2.45952,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8727613,1,"PONTOISE",49.04681,2.094921,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8727614,1,"EPLUCHES",49.054747,2.122265,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8727615,1,"PONT PETIT",49.060589,2.130878,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8727616,1,"CHAPONVAL",49.069313,2.141701,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8727619,1,"GARGES SARCELLES",48.976931,2.390746,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8727622,1,"VILLIERS LE BEL GONESSE ARNOUVILLE",48.994148,2.416817,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8727623,1,"LES NOUES",49.032643,2.477222,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8727624,1,"GOUSSAINVILLE",49.02383,2.462604,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8727625,1,"LOUVRES",49.049308,2.501506,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8727626,1,"SURVILLIERS FOSSES",49.099534,2.52533,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8727627,1,"ORRY LA VILLE COYE LA FORET",49.138717,2.489615,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8727628,1,"LA BORNE BLANCHE",49.126781,2.506144,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8727640,1,"SAINT-LEU D'ESSERENT",49.214066,2.417909,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8727641,1,"PRECY SUR OISE",49.203248,2.376455,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8727644,1,"BORAN SUR OISE",49.167127,2.362463,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8727645,1,"BRUYERES SUR OISE",49.155138,2.3258,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8727646,1,"PERSAN BEAUMONT",49.147934,2.279066,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8727651,1,"CHAMPAGNE SUR OISE",49.135933,2.242184,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8727652,1,"L'ISLE ADAM PARMAIN",49.114285,2.209735,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8727653,1,"VALMONDOIS",49.091734,2.202459,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8727654,1,"AUVERS SUR OISE",49.070562,2.175312,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8738107,1,"BOIS COLOMBES",48.91462,2.270839,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8738108,1,"COLOMBES",48.923773,2.258756,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8738109,1,"LE STADE",48.930851,2.260779,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8738113,1,"ASNIERES SUR SEINE",48.906287,2.284263,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8738114,1,"OSNY",49.062963,2.057494,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8738115,1,"BOISSY L'AILLERIE",49.0758,2.025234,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8738116,1,"MONTGEROULT COURCELLES",49.080606,2.003398,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8738117,1,"US",49.099669,1.970525,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8738118,1,"SANTEUIL LE PERCHAY",49.123439,1.949362,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8738119,1,"CHARS",49.162901,1.93679,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8738120,1,"LA VILLETERTRE",49.20255,1.920503,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8738121,1,"LIANCOURT SAINT-PIERRE",49.220538,1.90542,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8738122,1,"CHAUMONT EN VEXIN",49.261386,1.872031,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8738123,1,"TRIE CHATEAU",49.28256,1.818119,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8738124,1,"GISORS",49.285264,1.785066,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8738141,1,"GARE D'ERAGNY NEUVILLE",49.018049,2.090858,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8738142,1,"GARE DE ST OUEN L'AUMONE QUARTIER DE L'EGLISE",49.040009,2.103737,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8738179,1,"VAL D'ARGENTEUIL",48.950568,2.231009,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8738184,1,"ARGENTEUIL",48.946536,2.25736,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8738186,1,"CORMEILLES EN PARISIS",48.968437,2.194301,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8738187,1,"LA FRETTE MONTIGNY",48.980128,2.181456,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8738188,1,"HERBLAY",48.99084,2.161372,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8738189,1,"CONFLANS SAINTE-HONORINE",48.997082,2.09727,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8738400,1,"PARIS SAINT-LAZARE",48.875823,2.324667,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8754524,1,"JUVISY",48.689302,2.383947,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8760880,1,"CRETEIL POMPADOUR",48.772845,2.435281,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8768100,1,"CORBEIL ESSONNES",48.613699,2.472803,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8768115,1,"MAISONS ALFORT ALFORTVILLE",48.801402,2.427485,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8768124,1,"LE VERT DE MAISONS",48.789647,2.433624,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8768130,1,"VIGNEUX SUR SEINE",48.708412,2.41503,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8768131,1,"VIRY CHATILLON",48.67614,2.385788,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8768133,1,"RIS ORANGIS",48.658945,2.414688,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8768135,1,"GRAND BOURG",48.648489,2.435331,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8768136,1,"GARE D'EVRY VAL DE SEINE",48.634006,2.452362,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8768180,1,"VILLENEUVE TRIAGE",48.745574,2.43806,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8768182,1,"VILLENEUVE SAINT-GEORGES",48.730187,2.446892,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8768200,1,"MELUN",48.527263,2.654838,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8768220,1,"BOIS LE ROI",48.475137,2.692057,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8768221,1,"FONTAINEBLEAU AVON",48.415817,2.726509,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8768227,1,"MORET VENEUX LES SABLONS",48.377931,2.798599,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8768229,1,"SAINT-MAMMES",48.382358,2.815957,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8768230,1,"MONTEREAU",48.379994,2.943551,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8768300,1,"SENS",48.198417,3.26732,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8768310,1,"VILLENEUVE LA GUYARD",48.343269,3.069688,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8768312,1,"CHAMPIGNY SUR YONNE",48.324052,3.13114,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8768313,1,"PONT SUR YONNE",48.286391,3.201894,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8768320,1,"ETIGNY VERON",48.137611,3.289742,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8768321,1,"VILLENEUVE SUR YONNE",48.085184,3.286257,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8768322,1,"SAINT-JULIEN DU SAULT",48.026687,3.302565,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8768324,1,"JOIGNY",47.97343,3.392865,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8768326,1,"LAROCHE MIGENNES",47.961118,3.514336,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8775860,1,"CHATELET LES HALLES",48.861624,2.347167,,1,,Europe/Paris,,TRN, +BSO:SP:baiaub1,1,"Fort Mahon Auberge",50.700264,1.708022,-1,0,BSO:SA:CTPbaiaub1,Europe/Paris,,BSO, +BSO:SP:baiaube2,1,"Fort Mahon Auberge",50.700264,1.708022,-1,0,BSO:SA:CTPbaiaub1,Europe/Paris,,BSO, +BSO:SP:baibai1,1,"Baincthun Place",50.709713,1.681019,-1,0,BSO:SA:CTPbaibai1,Europe/Paris,,BSO, +BSO:SP:baibai2,1,"Baincthun Place",50.709728,1.681451,-1,0,BSO:SA:CTPbaibai1,Europe/Paris,,BSO, +BSO:SP:baibert2,1,"Berthenlaire",50.707859,1.687616,-1,0,BSO:SA:CTPbaibert2,Europe/Paris,,BSO, +BSO:SP:baiboud,1,"Boudoir",50.711246,1.675562,-1,0,BSO:SA:CTPbaiboud,Europe/Paris,,BSO, +BSO:SP:baiboud2,1,"Boudoir",50.711304,1.675969,-1,0,BSO:SA:CTPbaiboud,Europe/Paris,,BSO, +BSO:SP:baicas1,1,"Fort Mahon Castors",50.702606,1.701557,-1,0,BSO:SA:CTPbaicas1,Europe/Paris,,BSO, +BSO:SP:baicast2,1,"Fort Mahon Castors",50.702606,1.701557,-1,0,BSO:SA:CTPbaicas1,Europe/Paris,,BSO, +BSO:SP:baihetr,1,"Allée des Hêtres",50.698586,1.706061,-1,0,BSO:SA:CTPbaihetr,Europe/Paris,,BSO, +BSO:SP:baihetr2,1,"Allée des Hêtres",50.698586,1.706061,-1,0,BSO:SA:CTPbaihetr,Europe/Paris,,BSO, +BSO:SP:baimacq,1,"Macquinghen",50.717323,1.695776,-1,0,BSO:SA:CTPbaimacq,Europe/Paris,,BSO, +BSO:SP:baimacq2,1,"Macquinghen",50.717155,1.695712,-1,0,BSO:SA:CTPbaimacq,Europe/Paris,,BSO, +BSO:SP:baique1,1,"Questinghen",50.696449,1.695159,-1,0,BSO:SA:CTPbaique1,Europe/Paris,,BSO, +BSO:SP:baiques2,1,"Questinghen",50.696449,1.695159,-1,0,BSO:SA:CTPbaique1,Europe/Paris,,BSO, +BSO:SP:baiveri,1,"Bouverie",50.711246,1.670567,-1,0,BSO:SA:CTPbaiveri,Europe/Paris,,BSO, +BSO:SP:baiveri2,1,"Bouverie",50.711365,1.670565,-1,0,BSO:SA:CTPbaiveri,Europe/Paris,,BSO, +BSO:SP:bsmamb,1,"Rue d'Ambleteuse",50.734428,1.599386,-1,0,BSO:SA:CTPbsmamb,Europe/Paris,,BSO, +BSO:SP:bsmamb2,1,"Rue d'Ambleteuse",50.734318,1.599292,-1,0,BSO:SA:CTPbsmamb,Europe/Paris,,BSO, +BSO:SP:bsmampe,1,"Ampère",50.711021,1.613045,-1,0,BSO:SA:CTPbsmampe,Europe/Paris,,BSO, +BSO:SP:bsmarge,1,"Place d'Argentine",50.734894,1.602544,-1,0,BSO:SA:CTPbsmarge,Europe/Paris,,BSO, +BSO:SP:bsmarge2,1,"Place d'Argentine",50.734951,1.60257,-1,0,BSO:SA:CTPbsmarge,Europe/Paris,,BSO, +BSO:SP:bsmarma,1,"Armatis",50.706268,1.612912,-1,0,BSO:SA:CTPbsmarma,Europe/Paris,,BSO, +BSO:SP:bsmaug1,1,"Auguste Comte",50.720032,1.612989,-1,0,BSO:SA:CTPbsmaug1,Europe/Paris,,BSO, +BSO:SP:bsmaug2,1,"Auguste Comte",50.720043,1.613329,-1,0,BSO:SA:CTPbsmaug1,Europe/Paris,,BSO, +BSO:SP:bsmaug3,1,"Auguste Comte",50.718391,1.612678,-1,0,BSO:SA:CTPbsmaug1,Europe/Paris,,BSO, +BSO:SP:bsmbaro,1,"Baron Bucaille",50.731117,1.602062,-1,0,BSO:SA:CTPbsmbaro,Europe/Paris,,BSO, +BSO:SP:bsmbeau,1,"Beaurepaire",50.734138,1.614445,-1,0,BSO:SA:CTPbsmbeau,Europe/Paris,,BSO, +BSO:SP:bsmbell,1,"Belle Isle",50.716488,1.618895,-1,0,BSO:SA:CTPbsmbell,Europe/Paris,,BSO, +BSO:SP:bsmbeuv,1,"Ste Beuve",50.737835,1.594536,-1,0,BSO:SA:CTPbsmbeuv,Europe/Paris,,BSO, +BSO:SP:bsmbeuv2,1,"Ste Beuve",50.737888,1.594315,-1,0,BSO:SA:CTPbsmbeuv,Europe/Paris,,BSO, +BSO:SP:bsmblum3,1,"Léon Blum",50.715343,1.602956,-1,0,BSO:SA:CTPbsmblum3,Europe/Paris,,BSO, +BSO:SP:bsmblum4,1,"Léon Blum",50.715374,1.603045,-1,0,BSO:SA:CTPbsmblum3,Europe/Paris,,BSO, +BSO:SP:bsmboucl,1,"Bouclet",50.716965,1.601361,-1,0,BSO:SA:CTPbsmboucl,Europe/Paris,,BSO, +BSO:SP:bsmbran,1,"Branly",50.719761,1.618804,-1,0,BSO:SA:CTPbsmbran,Europe/Paris,,BSO, +BSO:SP:bsmbran2,1,"Branly",50.719845,1.619382,-1,0,BSO:SA:CTPbsmbran,Europe/Paris,,BSO, +BSO:SP:bsmbran3,1,"Branly",50.719864,1.620016,-1,0,BSO:SA:CTPbsmbran,Europe/Paris,,BSO, +BSO:SP:bsmcalm2,1,"Calmette",50.733177,1.609004,-1,0,BSO:SA:CTPbsmcalm2,Europe/Paris,,BSO, +BSO:SP:bsmcase,1,"Caserne des Pompiers",50.71236,1.608747,-1,0,BSO:SA:CTPbsmcase,Europe/Paris,,BSO, +BSO:SP:bsmccas,1,"CCAS",50.72089,1.604587,-1,0,BSO:SA:CTPbsmccas,Europe/Paris,,BSO, +BSO:SP:bsmcci,1,"Chambre de Commerce",50.726891,1.600575,-1,0,BSO:SA:CTPbsmcci,Europe/Paris,,BSO, +BSO:SP:bsmcci2,1,"Chambre de Commerce",50.726765,1.600528,-1,0,BSO:SA:CTPbsmcci,Europe/Paris,,BSO, +BSO:SP:bsmcenl,1,"Camille Enlart",50.721375,1.620311,-1,0,BSO:SA:CTPbsmcenl,Europe/Paris,,BSO, +BSO:SP:bsmcnor,1,"Cimetière Nord",50.731544,1.601214,-1,0,BSO:SA:CTPbsmcnor,Europe/Paris,,BSO, +BSO:SP:bsmcnor2,1,"Cimetière Nord",50.731762,1.600931,-1,0,BSO:SA:CTPbsmcnor,Europe/Paris,,BSO, +BSO:SP:bsmcolo,1,"Colonel Espérance",50.719326,1.600185,-1,0,BSO:SA:CTPbsmcolo,Europe/Paris,,BSO, +BSO:SP:bsmcoqu,1,"Coquelin",50.725246,1.603171,-1,0,BSO:SA:CTPbsmcoqu,Europe/Paris,,BSO, +BSO:SP:bsmdal1,1,"Place Dalton",50.723431,1.607052,-1,0,BSO:SA:CTPbsmdal1,Europe/Paris,,BSO, +BSO:SP:bsmdamr,1,"Damrémont",50.718227,1.602743,-1,0,BSO:SA:CTPbsmdamr,Europe/Paris,,BSO, +BSO:SP:bsmdamr2,1,"Damrémont",50.718227,1.60298,-1,0,BSO:SA:CTPbsmdamr,Europe/Paris,,BSO, +BSO:SP:bsmdaun,1,"Passage Daunou",50.718704,1.610632,-1,0,BSO:SA:CTPbsmdaun,Europe/Paris,,BSO, +BSO:SP:bsmdaun2,1,"Passage Daunou",50.718544,1.610785,-1,0,BSO:SA:CTPbsmdaun,Europe/Paris,,BSO, +BSO:SP:bsmdesc,1,"Descente à la Mer",50.734692,1.59486,-1,0,BSO:SA:CTPbsmdesc,Europe/Paris,,BSO, +BSO:SP:bsmdesc2,1,"Descente à la Mer",50.734661,1.594555,-1,0,BSO:SA:CTPbsmdesc,Europe/Paris,,BSO, +BSO:SP:bsmdet1,1,"Daudet",50.719936,1.60093,-1,0,BSO:SA:CTPbsmdet1,Europe/Paris,,BSO, +BSO:SP:bsmdocq,1,"Docquois",50.716599,1.617564,-1,0,BSO:SA:CTPbsmdocq,Europe/Paris,,BSO, +BSO:SP:bsmdres,1,"Dressage",50.738583,1.617972,-1,0,BSO:SA:CTPbsmdres,Europe/Paris,,BSO, +BSO:SP:bsmdres2,1,"Dressage",50.738571,1.617149,-1,0,BSO:SA:CTPbsmdres,Europe/Paris,,BSO, +BSO:SP:bsmdres3,1,"Dressage",50.73893,1.617055,-1,0,BSO:SA:CTPbsmdres,Europe/Paris,,BSO, +BSO:SP:bsmduf1,1,"Louis Duflos",50.72987,1.615092,-1,0,BSO:SA:CTPbsmduf1,Europe/Paris,,BSO, +BSO:SP:bsmduf2,1,"Louis Duflos",50.729782,1.614878,-1,0,BSO:SA:CTPbsmduf1,Europe/Paris,,BSO, +BSO:SP:bsmduf3,1,"Louis Duflos",50.730186,1.61454,-1,0,BSO:SA:CTPbsmduf1,Europe/Paris,,BSO, +BSO:SP:bsmduga2,1,"Dugand Bucaille",50.731686,1.606568,-1,0,BSO:SA:CTPbsmduga2,Europe/Paris,,BSO, +BSO:SP:bsmdune,1,"Porte des Dunes",50.725189,1.611117,-1,0,BSO:SA:CTPbsmdune,Europe/Paris,,BSO, +BSO:SP:bsmdute,1,"Dutertre",50.722591,1.605759,-1,0,BSO:SA:CTPbsmdute,Europe/Paris,,BSO, +BSO:SP:bsmedou,1,"Edouard Jenner",50.722225,1.613689,-1,0,BSO:SA:CTPbsmedou,Europe/Paris,,BSO, +BSO:SP:bsmest,1,"Cimetière Est",50.724537,1.620906,-1,0,BSO:SA:CTPbsmest,Europe/Paris,,BSO, +BSO:SP:bsmeurv,1,"Résidence Eurvin",50.723461,1.616056,-1,0,BSO:SA:CTPbsmeurv,Europe/Paris,,BSO, +BSO:SP:bsmfbui,1,"Ferdinand Buisson",50.718624,1.605284,-1,0,BSO:SA:CTPbsmfbui,Europe/Paris,,BSO, +BSO:SP:bsmfem1,1,"Femeland",50.718861,1.616078,-1,0,BSO:SA:CTPbsmfem1,Europe/Paris,,BSO, +BSO:SP:bsmflot2,1,"Flotille",50.731018,1.604434,-1,0,BSO:SA:CTPbsmflot2,Europe/Paris,,BSO, +BSO:SP:bsmhabi,1,"Habitat du Littoral",50.72887,1.618729,-1,0,BSO:SA:CTPbsmhabi,Europe/Paris,,BSO, +BSO:SP:bsmhabi2,1,"Habitat du Littoral",50.728916,1.618545,-1,0,BSO:SA:CTPbsmhabi,Europe/Paris,,BSO, +BSO:SP:bsmhenn,1,"H. Henneguelle",50.717224,1.614253,-1,0,BSO:SA:CTPbsmhenn,Europe/Paris,,BSO, +BSO:SP:bsmhenn2,1,"H. Henneguelle",50.716068,1.614284,-1,0,BSO:SA:CTPbsmhenn,Europe/Paris,,BSO, +BSO:SP:bsmhenn3,1,"H. Henneguelle",50.716743,1.614592,-1,0,BSO:SA:CTPbsmhenn,Europe/Paris,,BSO, +BSO:SP:bsmhfa,1,"Henri Fabre",50.710491,1.609973,-1,0,BSO:SA:CTPbsmhfa,Europe/Paris,,BSO, +BSO:SP:bsmhopi,1,"Hôpital",50.722839,1.627555,-1,0,BSO:SA:CTPbsmhopi,Europe/Paris,,BSO, +BSO:SP:bsmhopi2,1,"Hôpital",50.722839,1.627555,-1,0,BSO:SA:CTPbsmhopi,Europe/Paris,,BSO, +BSO:SP:bsmhrvi,1,"Henriville 2",50.720036,1.589852,-1,0,BSO:SA:CTPbsmhrvi,Europe/Paris,,BSO, +BSO:SP:bsmhvi1,1,"Henriville 1",50.71846,1.590647,-1,0,BSO:SA:CTPbsmhvi1,Europe/Paris,,BSO, +BSO:SP:bsmhvi2,1,"Henriville 1",50.717766,1.591797,-1,0,BSO:SA:CTPbsmhvi1,Europe/Paris,,BSO, +BSO:SP:bsmier,1,"Percier et Fontaine",50.735291,1.606386,-1,0,BSO:SA:CTPbsmier,Europe/Paris,,BSO, +BSO:SP:bsmier2,1,"Percier et Fontaine",50.735268,1.606233,-1,0,BSO:SA:CTPbsmier,Europe/Paris,,BSO, +BSO:SP:bsminqo,1,"Inquétrie Porte de St-Omer",50.734962,1.677209,-1,0,BSO:SA:CTPbsminqo,Europe/Paris,,BSO, +BSO:SP:bsminqo2,1,"Inquétrie Porte de St-Omer",50.734962,1.677209,-1,0,BSO:SA:CTPbsminqo,Europe/Paris,,BSO, +BSO:SP:bsmjul1,1,"Jules Ferry",50.725159,1.628287,-1,0,BSO:SA:CTPbsmjul1,Europe/Paris,,BSO, +BSO:SP:bsmjul2,1,"Jules Ferry",50.72504,1.628392,-1,0,BSO:SA:CTPbsmjul1,Europe/Paris,,BSO, +BSO:SP:bsmjver,1,"Jules Verne",50.716797,1.606561,-1,0,BSO:SA:CTPbsmjver,Europe/Paris,,BSO, +BSO:SP:bsmlegi2,1,"Légion d'Honneur",50.74091,1.595573,-1,0,BSO:SA:CTPbsmlegi2,Europe/Paris,,BSO, +BSO:SP:bsmlema,1,"Lemaitre",50.729752,1.618772,-1,0,BSO:SA:CTPbsmlema,Europe/Paris,,BSO, +BSO:SP:bsmlet,1,"Michelet",50.735641,1.609649,-1,0,BSO:SA:CTPbsmlet,Europe/Paris,,BSO, +BSO:SP:bsmlet2,1,"Michelet",50.735596,1.60918,-1,0,BSO:SA:CTPbsmlet,Europe/Paris,,BSO, +BSO:SP:bsmlor1,1,"Place de Lorraine",50.725285,1.605414,-1,0,BSO:SA:CTPbsmlor1,Europe/Paris,,BSO, +BSO:SP:bsmloui,1,"Louis David",50.738594,1.608448,-1,0,BSO:SA:CTPbsmloui,Europe/Paris,,BSO, +BSO:SP:bsmloui2,1,"Louis David",50.738644,1.608333,-1,0,BSO:SA:CTPbsmloui,Europe/Paris,,BSO, +BSO:SP:bsmlumi,1,"Lumière",50.721863,1.609506,-1,0,BSO:SA:CTPbsmlumi,Europe/Paris,,BSO, +BSO:SP:bsmlumi2,1,"Lumière",50.721668,1.610159,-1,0,BSO:SA:CTPbsmlumi,Europe/Paris,,BSO, +BSO:SP:bsmmade,1,"La Madeleine",50.711624,1.613844,-1,0,BSO:SA:CTPbsmmade,Europe/Paris,,BSO, +BSO:SP:bsmmade2,1,"La Madeleine",50.711636,1.614043,-1,0,BSO:SA:CTPbsmmade,Europe/Paris,,BSO, +BSO:SP:bsmmaq1,1,"Mâquetra",50.726479,1.621446,-1,0,BSO:SA:CTPbsmmaq1,Europe/Paris,,BSO, +BSO:SP:bsmmaqu2,1,"Maquétra",50.726593,1.621532,-1,0,BSO:SA:CTPbsmmaqu2,Europe/Paris,,BSO, +BSO:SP:bsmmarc,1,"Marcourt",50.716599,1.619858,-1,0,BSO:SA:CTPbsmmarc,Europe/Paris,,BSO, +BSO:SP:bsmmba,1,"Maryse Bastié",50.716675,1.594626,-1,0,BSO:SA:CTPbsmmba,Europe/Paris,,BSO, +BSO:SP:bsmmedi,1,"Médiathèque du Sandettie",50.734882,1.605471,-1,0,BSO:SA:CTPbsmmedi,Europe/Paris,,BSO, +BSO:SP:bsmmedi2,1,"Médiathèque du Sandettie",50.734982,1.605489,-1,0,BSO:SA:CTPbsmmedi,Europe/Paris,,BSO, +BSO:SP:bsmmoka,1,"Moka",50.737766,1.622016,-1,0,BSO:SA:CTPbsmmoka,Europe/Paris,,BSO, +BSO:SP:bsmmoka2,1,"Moka",50.737862,1.622094,-1,0,BSO:SA:CTPbsmmoka,Europe/Paris,,BSO, +BSO:SP:bsmmont,1,"Mont d'Ostrohove",50.710587,1.615728,-1,0,BSO:SA:CTPbsmmont,Europe/Paris,,BSO, +BSO:SP:bsmnaus,1,"Nausicaa",50.730762,1.596101,-1,0,BSO:SA:CTPbsmnaus,Europe/Paris,,BSO, +BSO:SP:bsmnaus2,1,"Nausicaa",50.730843,1.595793,-1,0,BSO:SA:CTPbsmnaus,Europe/Paris,,BSO, +BSO:SP:bsmnav1,1,"Navarin",50.727554,1.606715,-1,0,BSO:SA:CTPbsmnav1,Europe/Paris,,BSO, +BSO:SP:bsmnava2,1,"Navarin",50.726822,1.607047,-1,0,BSO:SA:CTPbsmnav1,Europe/Paris,,BSO, +BSO:SP:bsmnorm2,1,"Normandie",50.734936,1.612537,-1,0,BSO:SA:CTPbsmnorm2,Europe/Paris,,BSO, +BSO:SP:bsmpalb,1,"Prince Albert",50.723347,1.611873,-1,0,BSO:SA:CTPbsmpalb,Europe/Paris,,BSO, +BSO:SP:bsmpane,1,"Panetié",50.715065,1.617424,-1,0,BSO:SA:CTPbsmpane,Europe/Paris,,BSO, +BSO:SP:bsmpatr,1,"St Patrick",50.736626,1.612817,-1,0,BSO:SA:CTPbsmpatr,Europe/Paris,,BSO, +BSO:SP:bsmpatr2,1,"St Patrick",50.736725,1.612817,-1,0,BSO:SA:CTPbsmpatr,Europe/Paris,,BSO, +BSO:SP:bsmper1,1,"Perrochel",50.720226,1.606433,-1,0,BSO:SA:CTPbsmper1,Europe/Paris,,BSO, +BSO:SP:bsmper2,1,"Perrochel",50.720058,1.606611,-1,0,BSO:SA:CTPbsmper1,Europe/Paris,,BSO, +BSO:SP:bsmpfa1,1,"Place de France Quai 1",50.722214,1.603419,-1,0,BSO:SA:place_BSMPLF,Europe/Paris,,BSO, +BSO:SP:bsmpfc1,1,"Place de France Quai 3",50.722408,1.603258,-1,0,BSO:SA:place_BSMPLF,Europe/Paris,,BSO, +BSO:SP:bsmpfd1,1,"Place de France Quai 4",50.722473,1.603209,-1,0,BSO:SA:place_BSMPLF,Europe/Paris,,BSO, +BSO:SP:bsmpfe2,1,"Place de France Quai 5",50.722538,1.60316,-1,0,BSO:SA:place_BSMPLF,Europe/Paris,,BSO, +BSO:SP:bsmpff1,1,"Place de France Quai 6",50.722668,1.60306,-1,0,BSO:SA:place_BSMPLF,Europe/Paris,,BSO, +BSO:SP:bsmpfg1,1,"Place de France Quai 7",50.722744,1.602998,-1,0,BSO:SA:place_BSMPLF,Europe/Paris,,BSO, +BSO:SP:bsmpfg2,1,"Place de France Quai 7",50.722744,1.602998,-1,0,BSO:SA:place_BSMPLF,Europe/Paris,,BSO, +BSO:SP:bsmpfh2,1,"Place de France Quai 8",50.722797,1.60293,-1,0,BSO:SA:place_BSMPLF,Europe/Paris,,BSO, +BSO:SP:bsmpfm1,1,"Place de France Quai 11",50.722603,1.603111,-1,0,BSO:SA:place_BSMPLF,Europe/Paris,,BSO, +BSO:SP:bsmpfm2,1,"Place de France Quai 11",50.722603,1.603111,-1,0,BSO:SA:place_BSMPLF,Europe/Paris,,BSO, +BSO:SP:bsmpfn1,1,"Place de France Quai 14",50.722149,1.603492,-1,0,BSO:SA:place_BSMPLF,Europe/Paris,,BSO, +BSO:SP:bsmpfn2,1,"Place de France Quai 14",50.722149,1.603492,-1,0,BSO:SA:place_BSMPLF,Europe/Paris,,BSO, +BSO:SP:bsmpfo,1,"Place de France Quai 15",50.722885,1.6028,-1,0,BSO:SA:place_BSMPLF,Europe/Paris,,BSO, +BSO:SP:bsmpfp1,1,"Place de France Quai 12",50.722855,1.602848,-1,0,BSO:SA:place_BSMPLF,Europe/Paris,,BSO, +BSO:SP:bsmpfrb1,1,"Place de France Quai 2",50.722279,1.603356,-1,0,BSO:SA:place_BSMPLF,Europe/Paris,,BSO, +BSO:SP:bsmpfri1,1,"Place de France Quai 9",50.722912,1.602757,-1,0,BSO:SA:place_BSMPLF,Europe/Paris,,BSO, +BSO:SP:bsmpfrl,1,"Place de France Quai 10",50.722343,1.603307,-1,0,BSO:SA:place_BSMPLF,Europe/Paris,,BSO, +BSO:SP:bsmpft1,1,"Place de France Quai 20",50.722729,1.602233,-1,0,BSO:SA:place_BSMPLF,Europe/Paris,,BSO, +BSO:SP:bsmpfvir,1,"Place de France",50.722961,1.602666,-1,0,BSO:SA:place_BSMPLF,Europe/Paris,,BSO, +BSO:SP:bsmpier,1,"Eglise Saint-Pierre",50.728111,1.602152,-1,0,BSO:SA:CTPbsmpier,Europe/Paris,,BSO, +BSO:SP:bsmpier2,1,"Eglise Saint-Pierre",50.727886,1.602147,-1,0,BSO:SA:CTPbsmpier,Europe/Paris,,BSO, +BSO:SP:bsmqueh2,1,"Impasse Quéhen",50.712582,1.616794,-1,0,BSO:SA:CTPbsmqueh2,Europe/Paris,,BSO, +BSO:SP:bsmres1,1,"Résidence",50.720165,1.601442,-1,0,BSO:SA:CTPbsmres1,Europe/Paris,,BSO, +BSO:SP:bsmres2,1,"Résidence",50.719982,1.601827,-1,0,BSO:SA:CTPbsmres1,Europe/Paris,,BSO, +BSO:SP:bsmrho,1,"Route de l'hôpital",50.72047,1.627969,-1,0,BSO:SA:CTPbsmrho,Europe/Paris,,BSO, +BSO:SP:bsmrho2,1,"Route de l'hôpital",50.720356,1.627926,-1,0,BSO:SA:CTPbsmrho,Europe/Paris,,BSO, +BSO:SP:bsmros1,1,"Rosny",50.714226,1.614294,-1,0,BSO:SA:CTPbsmros1,Europe/Paris,,BSO, +BSO:SP:bsmros2,1,"Rosny",50.713928,1.614068,-1,0,BSO:SA:CTPbsmros1,Europe/Paris,,BSO, +BSO:SP:bsmsecu,1,"Sécurité Sociale",50.727551,1.613851,-1,0,BSO:SA:CTPbsmsecu,Europe/Paris,,BSO, +BSO:SP:bsmsecu2,1,"Sécurité Sociale",50.727852,1.614187,-1,0,BSO:SA:CTPbsmsecu,Europe/Paris,,BSO, +BSO:SP:bsmseli,1,"Séliane",50.711823,1.605932,-1,0,BSO:SA:CTPbsmseli,Europe/Paris,,BSO, +BSO:SP:bsmseli2,1,"Séliane",50.712196,1.605972,-1,0,BSO:SA:CTPbsmseli,Europe/Paris,,BSO, +BSO:SP:bsmsgen2,1,"Société Générale",50.724243,1.603361,-1,0,BSO:SA:CTPbsmsgen2,Europe/Paris,,BSO, +BSO:SP:bsmsncf,1,"Gare SNCF",50.715572,1.609368,-1,0,SIN:SA:OCE87317586,Europe/Paris,,BSO, +BSO:SP:bsmsncf2,1,"Gare SNCF",50.715534,1.609104,-1,0,SIN:SA:OCE87317586,Europe/Paris,,BSO, +BSO:SP:bsmsou,1,"Dernier Sou",50.7271,1.617035,-1,0,BSO:SA:CTPbsmsou,Europe/Paris,,BSO, +BSO:SP:bsmsou2,1,"Dernier Sou",50.727318,1.618027,-1,0,BSO:SA:CTPbsmsou,Europe/Paris,,BSO, +BSO:SP:bsmstad,1,"Stade",50.724964,1.618859,-1,0,BSO:SA:CTPbsmstad,Europe/Paris,,BSO, +BSO:SP:bsmstm1,1,"Saint Michel",50.728867,1.6097,-1,0,BSO:SA:CTPbsmstm1,Europe/Paris,,BSO, +BSO:SP:bsmstm2,1,"Saint Michel",50.728653,1.609946,-1,0,BSO:SA:CTPbsmstm1,Europe/Paris,,BSO, +BSO:SP:bsmsurc,1,"Surcouf",50.728275,1.599226,-1,0,BSO:SA:CTPbsmsurc,Europe/Paris,,BSO, +BSO:SP:bsmsurc2,1,"Surcouf",50.728657,1.598692,-1,0,BSO:SA:CTPbsmsurc,Europe/Paris,,BSO, +BSO:SP:bsmthie,1,"Thiers",50.725948,1.603265,-1,0,BSO:SA:CTPbsmthie,Europe/Paris,,BSO, +BSO:SP:bsmtin1,1,"Tintelleries",50.726887,1.609676,-1,0,BSO:SA:CTPbsmtin1,Europe/Paris,,BSO, +BSO:SP:bsmtte,1,"Mariette",50.732498,1.607894,-1,0,BSO:SA:CTPbsmtte,Europe/Paris,,BSO, +BSO:SP:bsmuniv,1,"Université du Littoral",50.722305,1.597621,-1,0,BSO:SA:CTPbsmuniv,Europe/Paris,,BSO, +BSO:SP:bsmval,1,"Val St Martin",50.7188,1.620836,-1,0,BSO:SA:CTPbsmval,Europe/Paris,,BSO, +BSO:SP:bsmvatre,1,"Vieil Atre",50.722652,1.620683,-1,0,BSO:SA:CTPbsmvatre,Europe/Paris,,BSO, +BSO:SP:bsmver,1,"Rue de Verdun",50.720722,1.594854,-1,0,BSO:SA:CTPbsmver,Europe/Paris,,BSO, +BSO:SP:bsmvie,1,"Vieux Mont",50.713249,1.59969,-1,0,BSO:SA:CTPbsmvie,Europe/Paris,,BSO, +BSO:SP:bsmvie2,1,"Vieux Mont",50.713379,1.600025,-1,0,BSO:SA:CTPbsmvie,Europe/Paris,,BSO, +BSO:SP:comyser,1,"Yser",50.65976,1.633854,-1,0,BSO:SA:CTPcomyser,Europe/Paris,,BSO, +BSO:SP:conbet1,1,"Béthune",50.64957,1.61898,-1,0,BSO:SA:CTPconbet1,Europe/Paris,,BSO, +BSO:SP:conbet2,1,"Béthune",50.64957,1.61898,-1,0,BSO:SA:CTPconbet1,Europe/Paris,,BSO, +BSO:SP:concha1,1,"Av. Champagne",50.654167,1.624174,-1,0,BSO:SA:CTPconcha1,Europe/Paris,,BSO, +BSO:SP:concha2,1,"Av. Champagne",50.654099,1.623403,-1,0,BSO:SA:CTPconcha1,Europe/Paris,,BSO, +BSO:SP:concro1,1,"Conteville Croquet",50.737179,1.729232,-1,0,BSO:SA:CTPconcro1,Europe/Paris,,BSO, +BSO:SP:concroq2,1,"Conteville Croquet",50.737541,1.728774,-1,0,BSO:SA:CTPconcro1,Europe/Paris,,BSO, +BSO:SP:conecam,1,"Ecames",50.652039,1.658695,-1,0,BSO:SA:CTPconecam,Europe/Paris,,BSO, +BSO:SP:conecam2,1,"Ecames",50.651932,1.658678,-1,0,BSO:SA:CTPconecam,Europe/Paris,,BSO, +BSO:SP:confore2,1,"Conteville Forêt",50.744083,1.73714,-1,0,BSO:SA:CTPconfore2,Europe/Paris,,BSO, +BSO:SP:confore3,1,"Conteville Forêt",50.743969,1.737049,-1,0,BSO:SA:CTPconfore2,Europe/Paris,,BSO, +BSO:SP:confore4,1,"Conteville Forêt",50.744083,1.73714,-1,0,BSO:SA:CTPconfore2,Europe/Paris,,BSO, +BSO:SP:conmair2,1,"Mairie de Condette",50.654011,1.633745,-1,0,BSO:SA:CTPconmair2,Europe/Paris,,BSO, +BSO:SP:conmairi,1,"Mairie de Condette",50.654095,1.63371,-1,0,BSO:SA:CTPconmair2,Europe/Paris,,BSO, +BSO:SP:conoix1,1,"Conteville Croix",50.740543,1.737721,-1,0,BSO:SA:CTPconoix1,Europe/Paris,,BSO, +BSO:SP:conpas1,1,"Pasteur",50.649303,1.626731,-1,0,BSO:SA:CTPconpas1,Europe/Paris,,BSO, +BSO:SP:conpas2,1,"Pasteur",50.649429,1.626523,-1,0,BSO:SA:CTPconpas1,Europe/Paris,,BSO, +BSO:SP:conpav1,1,"Le Pavé",50.65398,1.642079,-1,0,BSO:SA:CTPconpav1,Europe/Paris,,BSO, +BSO:SP:conpav2,1,"Le Pavé",50.653564,1.641906,-1,0,BSO:SA:CTPconpav1,Europe/Paris,,BSO, +BSO:SP:conplac,1,"Conteville Place",50.744827,1.731527,-1,0,BSO:SA:CTPconplac,Europe/Paris,,BSO, +BSO:SP:conplac2,1,"Conteville Place",50.744892,1.73187,-1,0,BSO:SA:CTPconplac,Europe/Paris,,BSO, +BSO:SP:conyser2,1,"Yser",50.659714,1.634022,-1,0,BSO:SA:CTPcomyser,Europe/Paris,,BSO, +BSO:SP:dancit,1,"Cité",50.596401,1.622996,-1,0,BSO:SA:CTPdancit,Europe/Paris,,BSO, +BSO:SP:dancite2,1,"Cité",50.596119,1.622903,-1,0,BSO:SA:CTPdancit,Europe/Paris,,BSO, +BSO:SP:danmai1,1,"Cimenterie",50.590019,1.615356,-1,0,BSO:SA:CTPdanmai1,Europe/Paris,,BSO, +BSO:SP:danmair2,1,"Cimenterie",50.588932,1.617587,-1,0,BSO:SA:CTPdanmai1,Europe/Paris,,BSO, +BSO:SP:danpet2,1,"Petit Robinson",50.585129,1.614266,-1,0,BSO:SA:CTPdanpet2,Europe/Paris,,BSO, +BSO:SP:echechi,1,"Echinghen",50.703323,1.647882,-1,0,BSO:SA:CTPechechi,Europe/Paris,,BSO, +BSO:SP:echechi2,1,"Echinghen",50.702877,1.647864,-1,0,BSO:SA:CTPechechi,Europe/Paris,,BSO, +BSO:SP:echespr,1,"Esprée",50.705845,1.659736,-1,0,BSO:SA:CTPechespr,Europe/Paris,,BSO, +BSO:SP:echespr2,1,"Esprée",50.705555,1.659494,-1,0,BSO:SA:CTPechespr,Europe/Paris,,BSO, +BSO:SP:echmenn,1,"Menneville",50.699417,1.644515,-1,0,BSO:SA:CTPechmenn,Europe/Paris,,BSO, +BSO:SP:echmenn2,1,"Menneville",50.69944,1.644853,-1,0,BSO:SA:CTPechmenn,Europe/Paris,,BSO, +BSO:SP:equace,1,"La Planquette",50.679146,1.573555,-1,0,BSO:SA:CTPequace,Europe/Paris,,BSO, +BSO:SP:equace2,1,"La Planquette",50.679081,1.57385,-1,0,BSO:SA:CTPequace,Europe/Paris,,BSO, +BSO:SP:equbecq,1,"Le Becquet",50.677193,1.570279,-1,0,BSO:SA:CTPequbecq,Europe/Paris,,BSO, +BSO:SP:equbecq2,1,"Le Becquet",50.677223,1.570147,-1,0,BSO:SA:CTPequbecq,Europe/Paris,,BSO, +BSO:SP:equcime,1,"Cimetière d'Equihen Plage",50.68169,1.57657,-1,0,BSO:SA:CTPequcime,Europe/Paris,,BSO, +BSO:SP:equcime2,1,"Cimetière d'Equihen Plage",50.681801,1.576508,-1,0,BSO:SA:CTPequcime,Europe/Paris,,BSO, +BSO:SP:equdune,1,"Les Dunes",50.676624,1.572671,-1,0,BSO:SA:CTPequdune,Europe/Paris,,BSO, +BSO:SP:equesto,1,"Les Estombelles",50.675911,1.571973,-1,0,BSO:SA:CTPequesto,Europe/Paris,,BSO, +BSO:SP:equfala,1,"Les Falaises",50.67347,1.571436,-1,0,BSO:SA:CTPequfala,Europe/Paris,,BSO, +BSO:SP:equpale,1,"Palézieux",50.677547,1.574798,-1,0,BSO:SA:CTPequpale,Europe/Paris,,BSO, +BSO:SP:equpale2,1,"Palézieux",50.677578,1.57499,-1,0,BSO:SA:CTPequpale,Europe/Paris,,BSO, +BSO:SP:equplag,1,"La Plage",50.672092,1.572193,-1,0,BSO:SA:CTPequplag,Europe/Paris,,BSO, +BSO:SP:equplag2,1,"La Plage",50.672092,1.572193,-1,0,BSO:SA:CTPequplag,Europe/Paris,,BSO, +BSO:SP:equpomp,1,"La Pompe",50.675373,1.577182,-1,0,BSO:SA:CTPequpomp,Europe/Paris,,BSO, +BSO:SP:equpomp2,1,"La Pompe",50.675385,1.576998,-1,0,BSO:SA:CTPequpomp,Europe/Paris,,BSO, +BSO:SP:equrobi,1,"Mont Robin",50.682453,1.571143,-1,0,BSO:SA:CTPequrobi,Europe/Paris,,BSO, +BSO:SP:equrobi2,1,"Mont Robin",50.682438,1.570944,-1,0,BSO:SA:CTPequrobi,Europe/Paris,,BSO, +BSO:SP:hegmai1,1,"Mairie Hesdigneul",50.657391,1.674216,-1,0,BSO:SA:CTPhegmai1,Europe/Paris,,BSO, +BSO:SP:hegmai2,1,"Mairie Hesdigneul",50.657295,1.674508,-1,0,BSO:SA:CTPhegmai1,Europe/Paris,,BSO, +BSO:SP:hegpass,1,"Passage à niveaux",50.66053,1.66859,-1,0,BSO:SA:CTPhegpass,Europe/Paris,,BSO, +BSO:SP:hegpass2,1,"Passage à niveaux",50.660316,1.668788,-1,0,BSO:SA:CTPhegpass,Europe/Paris,,BSO, +BSO:SP:hesaix,1,"Pont d'Aix",50.651199,1.671299,-1,0,BSO:SA:CTPhesaix,Europe/Paris,,BSO, +BSO:SP:hesaix2,1,"Pont d'Aix",50.650539,1.670536,-1,0,BSO:SA:CTPhesaix,Europe/Paris,,BSO, +BSO:SP:hesecol,1,"Hesdin l'Abbé les Ecoles",50.66671,1.683657,-1,0,BSO:SA:CTPhesecol,Europe/Paris,,BSO, +BSO:SP:hesecol2,1,"Hesdin l'Abbé les Ecoles",50.66671,1.683657,-1,0,BSO:SA:CTPhesecol,Europe/Paris,,BSO, +BSO:SP:hesegli,1,"Eglise d'Hesdigneul",50.663979,1.677925,-1,0,BSO:SA:CTPhesegli,Europe/Paris,,BSO, +BSO:SP:hesegli2,1,"Eglise d'Hesdigneul",50.663921,1.678068,-1,0,BSO:SA:CTPhesegli,Europe/Paris,,BSO, +BSO:SP:hesmai1,1,"Mairie Hesdin-L'abbé",50.668743,1.679923,-1,0,BSO:SA:CTPhesmai1,Europe/Paris,,BSO, +BSO:SP:hesmai2,1,"Mairie Hesdin l'Abbé",50.668743,1.679923,-1,0,BSO:SA:CTPhesmai2,Europe/Paris,,BSO, +BSO:SP:hesman1,1,"Le Manoir",50.665161,1.677304,-1,0,BSO:SA:CTPhesman1,Europe/Paris,,BSO, +BSO:SP:hesman2,1,"Le Manoir",50.665329,1.67711,-1,0,BSO:SA:CTPhesman1,Europe/Paris,,BSO, +BSO:SP:hestro1,1,"Trois Fontaines",50.668808,1.664967,-1,0,BSO:SA:CTPhestro1,Europe/Paris,,BSO, +BSO:SP:hestro2,1,"Trois Fontaines",50.669121,1.664794,-1,0,BSO:SA:CTPhestro1,Europe/Paris,,BSO, +BSO:SP:hesver1,1,"Vert Giniau",50.665886,1.681963,-1,0,BSO:SA:CTPhesver1,Europe/Paris,,BSO, +BSO:SP:hesver2,1,"Vert Giniau",50.665886,1.681963,-1,0,BSO:SA:CTPhesver1,Europe/Paris,,BSO, +BSO:SP:isqcast,1,"Les Castors",50.674347,1.651499,-1,0,BSO:SA:CTPisqcast,Europe/Paris,,BSO, +BSO:SP:isqcast2,1,"Les Castors",50.67437,1.651754,-1,0,BSO:SA:CTPisqcast,Europe/Paris,,BSO, +BSO:SP:isqcast3,1,"Les Castors",50.67437,1.651754,-1,0,BSO:SA:CTPisqcast,Europe/Paris,,BSO, +BSO:SP:isqegli,1,"Eglise de Isques",50.672485,1.651074,-1,0,BSO:SA:CTPisqegli,Europe/Paris,,BSO, +BSO:SP:isqegli2,1,"Eglise de Isques",50.672424,1.651376,-1,0,BSO:SA:CTPisqegli,Europe/Paris,,BSO, +BSO:SP:isqhame,1,"Hameau de la Source",50.681854,1.63642,-1,0,BSO:SA:CTPisqhame,Europe/Paris,,BSO, +BSO:SP:isqhame2,1,"Hameau de la Source",50.681789,1.63683,-1,0,BSO:SA:CTPisqhame,Europe/Paris,,BSO, +BSO:SP:isqmair,1,"Mairie de Isques",50.67662,1.647319,-1,0,BSO:SA:CTPisqmair,Europe/Paris,,BSO, +BSO:SP:isqmair2,1,"Mairie de Isques",50.676739,1.647444,-1,0,BSO:SA:CTPisqmair,Europe/Paris,,BSO, +BSO:SP:isqrapo,1,"Résidence Apolline",50.671074,1.657248,-1,0,BSO:SA:CTPisqrapo,Europe/Paris,,BSO, +BSO:SP:isqrapo2,1,"Résidence Apolline",50.671154,1.657152,-1,0,BSO:SA:CTPisqrapo,Europe/Paris,,BSO, +BSO:SP:isqresi,1,"Résidence de la Liane",50.684555,1.629328,-1,0,BSO:SA:CTPisqresi,Europe/Paris,,BSO, +BSO:SP:isqresi2,1,"Résidence de la Liane",50.684929,1.629064,-1,0,BSO:SA:CTPisqresi,Europe/Paris,,BSO, +BSO:SP:isqvill,1,"Le Village",50.672375,1.655426,-1,0,BSO:SA:CTPisqvill,Europe/Paris,,BSO, +BSO:SP:isqvill2,1,"Le Village",50.672375,1.655426,-1,0,BSO:SA:CTPisqvill,Europe/Paris,,BSO, +BSO:SP:lacchai,1,"Chailly",50.728596,1.705829,-1,0,BSO:SA:CTPlacchai,Europe/Paris,,BSO, +BSO:SP:lacchai2,1,"Chailly",50.727642,1.705242,-1,0,BSO:SA:CTPlacchai,Europe/Paris,,BSO, +BSO:SP:lacegli,1,"La Capelle Eglise",50.731495,1.70699,-1,0,BSO:SA:CTPlacegli,Europe/Paris,,BSO, +BSO:SP:lacegli2,1,"La Capelle Eglise",50.731586,1.707077,-1,0,BSO:SA:CTPlacegli,Europe/Paris,,BSO, +BSO:SP:lacgara,1,"Garage",50.732594,1.702934,-1,0,BSO:SA:CTPlacgara,Europe/Paris,,BSO, +BSO:SP:lacgara2,1,"Garage",50.732746,1.702741,-1,0,BSO:SA:CTPlacgara,Europe/Paris,,BSO, +BSO:SP:lacpell,1,"Rue de la Chapelle",50.73402,1.688096,-1,0,BSO:SA:CTPlacpell,Europe/Paris,,BSO, +BSO:SP:lacpell2,1,"Rue de la Chapelle",50.734203,1.687636,-1,0,BSO:SA:CTPlacpell,Europe/Paris,,BSO, +BSO:SP:lacpern,1,"Route de Pernes",50.734146,1.692864,-1,0,BSO:SA:CTPlacpern,Europe/Paris,,BSO, +BSO:SP:lacpern2,1,"Route de Pernes",50.734325,1.693139,-1,0,BSO:SA:CTPlacpern,Europe/Paris,,BSO, +BSO:SP:lacpont,1,"Pont Pierreux",50.72216,1.700755,-1,0,BSO:SA:CTPlacpont,Europe/Paris,,BSO, +BSO:SP:lacpont2,1,"Pont Pierreux",50.722019,1.700762,-1,0,BSO:SA:CTPlacpont,Europe/Paris,,BSO, +BSO:SP:lebeau3,1,"Beaucerf",50.691761,1.622244,-1,0,BSO:SA:CTPlebeau3,Europe/Paris,,BSO, +BSO:SP:leobeau2,1,"Beaucerf",50.691368,1.622059,-1,0,BSO:SA:CTPlebeau3,Europe/Paris,,BSO, +BSO:SP:leobel1,1,"Belle Isle",50.694286,1.62552,-1,0,BSO:SA:CTPleobel1,Europe/Paris,,BSO, +BSO:SP:leobel2,1,"Belle Isle",50.694393,1.62541,-1,0,BSO:SA:CTPleobel1,Europe/Paris,,BSO, +BSO:SP:leober1,1,"Bertrand Crouy",50.689117,1.629349,-1,0,BSO:SA:CTPleober1,Europe/Paris,,BSO, +BSO:SP:leobler,1,"Blériot",50.698071,1.60925,-1,0,BSO:SA:CTPleobler,Europe/Paris,,BSO, +BSO:SP:leochat,1,"Château du Pont de Briques",50.685253,1.625527,-1,0,BSO:SA:CTPleochat,Europe/Paris,,BSO, +BSO:SP:leocit,1,"Cité Aurore",50.694069,1.621991,-1,0,BSO:SA:CTPleocit,Europe/Paris,,BSO, +BSO:SP:leocite2,1,"Cité Aurore",50.694206,1.622132,-1,0,BSO:SA:CTPleocit,Europe/Paris,,BSO, +BSO:SP:leodela,1,"Delattre",50.692101,1.61264,-1,0,BSO:SA:CTPleodela,Europe/Paris,,BSO, +BSO:SP:leofle1,1,"Champ Fleury",50.69265,1.627949,-1,0,BSO:SA:CTPleofle1,Europe/Paris,,BSO, +BSO:SP:leofle2,1,"Champ Fleury",50.692917,1.628436,-1,0,BSO:SA:CTPleofle1,Europe/Paris,,BSO, +BSO:SP:leogal,1,"Général de Gaulle",50.687622,1.627991,-1,0,BSO:SA:CTPleogal,Europe/Paris,,BSO, +BSO:SP:leogal2,1,"Général de Gaulle",50.687683,1.62779,-1,0,BSO:SA:CTPleogal,Europe/Paris,,BSO, +BSO:SP:leogal3,1,"Général de Gaulle",50.687622,1.627991,-1,0,BSO:SA:CTPleogal,Europe/Paris,,BSO, +BSO:SP:leogal4,1,"Général de Gaulle",50.687683,1.62779,-1,0,BSO:SA:CTPleogal,Europe/Paris,,BSO, +BSO:SP:leolave,1,"Lavandières",50.688171,1.620534,-1,0,BSO:SA:CTPleolave,Europe/Paris,,BSO, +BSO:SP:leoleod,1,"Léo Delibes",50.689129,1.631836,-1,0,BSO:SA:CTPleoleod,Europe/Paris,,BSO, +BSO:SP:leoleod2,1,"Léo Delibes",50.689129,1.631836,-1,0,BSO:SA:CTPleoleod,Europe/Paris,,BSO, +BSO:SP:leomair,1,"Mairie de St Léonard",50.68755,1.626072,-1,0,BSO:SA:CTPleomair,Europe/Paris,,BSO, +BSO:SP:leomair2,1,"Mairie de St Léonard",50.687557,1.626294,-1,0,BSO:SA:CTPleomair,Europe/Paris,,BSO, +BSO:SP:leomou1,1,"Avenue du Moulin",50.687469,1.630629,-1,0,BSO:SA:CTPleomou1,Europe/Paris,,BSO, +BSO:SP:leomou2,1,"Avenue du Moulin",50.687607,1.631002,-1,0,BSO:SA:CTPleomou1,Europe/Paris,,BSO, +BSO:SP:leomou3,1,"Avenue du Moulin",50.687469,1.630629,-1,0,BSO:SA:CTPleomou1,Europe/Paris,,BSO, +BSO:SP:leomou4,1,"Avenue du Moulin",50.687607,1.631002,-1,0,BSO:SA:CTPleomou1,Europe/Paris,,BSO, +BSO:SP:leopet1,1,"Petit Caporal",50.695641,1.614179,-1,0,BSO:SA:CTPleopet1,Europe/Paris,,BSO, +BSO:SP:leopet2,1,"Petit Caporal",50.695644,1.614389,-1,0,BSO:SA:CTPleopet1,Europe/Paris,,BSO, +BSO:SP:leopite,1,"Pitendal",50.703117,1.612572,-1,0,BSO:SA:CTPleopite,Europe/Paris,,BSO, +BSO:SP:leopite2,1,"Pitendal",50.702793,1.612495,-1,0,BSO:SA:CTPleopite,Europe/Paris,,BSO, +BSO:SP:leopon1,1,"Pont Feuillet",50.690079,1.623877,-1,0,BSO:SA:CTPleopon1,Europe/Paris,,BSO, +BSO:SP:leopon2,1,"Pont Feuillet",50.690216,1.623982,-1,0,BSO:SA:CTPleopon1,Europe/Paris,,BSO, +BSO:SP:leorec1,1,"Rte d'Echinghen",50.694244,1.630724,-1,0,BSO:SA:CTPleorec1,Europe/Paris,,BSO, +BSO:SP:leorec2,1,"Rte d'Echinghen",50.69434,1.630645,-1,0,BSO:SA:CTPleorec1,Europe/Paris,,BSO, +BSO:SP:leosib,1,"S.I.B.",50.690022,1.616819,-1,0,BSO:SA:CTPleosib,Europe/Paris,,BSO, +BSO:SP:leovall,1,"La Vallée",50.691757,1.630562,-1,0,BSO:SA:CTPleovall,Europe/Paris,,BSO, +BSO:SP:lepcime,1,"Cimetière Ouest",50.716915,1.590733,-1,0,BSO:SA:CTPlepcime,Europe/Paris,,BSO, +BSO:SP:lepcime2,1,"Cimetière Ouest",50.716801,1.59103,-1,0,BSO:SA:CTPlepcime,Europe/Paris,,BSO, +BSO:SP:lpoalpr,1,"Alprech",50.703693,1.572448,-1,0,BSO:SA:CTPlpoalpr,Europe/Paris,,BSO, +BSO:SP:lpoalpr2,1,"Alprech",50.703915,1.572616,-1,0,BSO:SA:CTPlpoalpr,Europe/Paris,,BSO, +BSO:SP:lpoalpr3,1,"Alprech",50.703602,1.572839,-1,0,BSO:SA:CTPlpoalpr,Europe/Paris,,BSO, +BSO:SP:lpoave,1,"Avé Maria",50.713097,1.58941,-1,0,BSO:SA:CTPlpoave,Europe/Paris,,BSO, +BSO:SP:lpoclem,1,"Clémenceau",50.717171,1.589139,-1,0,BSO:SA:CTPlpoclem,Europe/Paris,,BSO, +BSO:SP:lpoegli,1,"Eglise du Portel",50.706635,1.573979,-1,0,BSO:SA:CTPlpoegli,Europe/Paris,,BSO, +BSO:SP:lpoegli2,1,"Eglise du Portel",50.706741,1.574352,-1,0,BSO:SA:CTPlpoegli,Europe/Paris,,BSO, +BSO:SP:lpogai1,1,"La Gaité",50.710873,1.58255,-1,0,BSO:SA:CTPlpogai1,Europe/Paris,,BSO, +BSO:SP:lpogou,1,"Gournay",50.713783,1.581557,-1,0,BSO:SA:CTPlpogou,Europe/Paris,,BSO, +BSO:SP:lpohen,1,"Henriville Place",50.716976,1.588759,-1,0,BSO:SA:CTPlpohen,Europe/Paris,,BSO, +BSO:SP:lpolive,1,"Livenais",50.711102,1.581802,-1,0,BSO:SA:CTPlpolive,Europe/Paris,,BSO, +BSO:SP:lpolma,1,"Lycée Maritime",50.719753,1.587913,-1,0,BSO:SA:CTPlpolma,Europe/Paris,,BSO, +BSO:SP:lpoloti,1,"Pierre Loti",50.706715,1.580131,-1,0,BSO:SA:CTPlpoloti,Europe/Paris,,BSO, +BSO:SP:lpoloti2,1,"Pierre Loti",50.707779,1.57844,-1,0,BSO:SA:CTPlpoloti,Europe/Paris,,BSO, +BSO:SP:lpomou,1,"Moulin Bleu",50.712521,1.586376,-1,0,BSO:SA:CTPlpomou,Europe/Paris,,BSO, +BSO:SP:lpopagn,1,"Pagnol",50.708462,1.583998,-1,0,BSO:SA:CTPlpopagn,Europe/Paris,,BSO, +BSO:SP:lpopfa,1,"Parc de la Falaise",50.715668,1.584649,-1,0,BSO:SA:CTPlpopfa,Europe/Paris,,BSO, +BSO:SP:lposan2,1,"San Martin",50.708031,1.584219,-1,0,BSO:SA:CTPlposan2,Europe/Paris,,BSO, +BSO:SP:neslav1,1,"Lavocat",50.627831,1.645763,-1,0,BSO:SA:CTPneslav1,Europe/Paris,,BSO, +BSO:SP:neslav2,1,"Lavocat",50.628178,1.645532,-1,0,BSO:SA:CTPneslav1,Europe/Paris,,BSO, +BSO:SP:neucoin,1,"4 Coins",50.623405,1.646284,-1,0,BSO:SA:CTPneucoin,Europe/Paris,,BSO, +BSO:SP:neucoin2,1,"4 Coins",50.623329,1.646468,-1,0,BSO:SA:CTPneucoin,Europe/Paris,,BSO, +BSO:SP:neucoun,1,"Country",50.633469,1.606191,-1,0,BSO:SA:CTPneucoun,Europe/Paris,,BSO, +BSO:SP:neucoun2,1,"Country",50.633316,1.606164,-1,0,BSO:SA:CTPneucoun,Europe/Paris,,BSO, +BSO:SP:neudun1,1,"Dunette",50.624447,1.623898,-1,0,BSO:SA:CTPneudun1,Europe/Paris,,BSO, +BSO:SP:neudun2,1,"Dunette",50.624489,1.624084,-1,0,BSO:SA:CTPneudun1,Europe/Paris,,BSO, +BSO:SP:neuforg,1,"La Forge",50.615555,1.63738,-1,0,BSO:SA:CTPneuforg,Europe/Paris,,BSO, +BSO:SP:neuforg2,1,"La Forge",50.61565,1.637823,-1,0,BSO:SA:CTPneuforg,Europe/Paris,,BSO, +BSO:SP:neumai1,1,"Mairie Neufchatel-Hardelot",50.619263,1.643037,-1,0,BSO:SA:CTPneumai1,Europe/Paris,,BSO, +BSO:SP:neumai2,1,"Mairie Neufchatel-Hardelot",50.61919,1.642712,-1,0,BSO:SA:CTPneumai1,Europe/Paris,,BSO, +BSO:SP:neumin,1,"Chemin",50.618984,1.626118,-1,0,BSO:SA:CTPneumin,Europe/Paris,,BSO, +BSO:SP:neumin2,1,"Chemin",50.619068,1.626266,-1,0,BSO:SA:CTPneumin,Europe/Paris,,BSO, +BSO:SP:neupla1,1,"Hardelot Plage",50.634789,1.580159,-1,0,BSO:SA:CTPneupla1,Europe/Paris,,BSO, +BSO:SP:neupos1,1,"Poste",50.632557,1.584474,-1,0,BSO:SA:CTPneupos1,Europe/Paris,,BSO, +BSO:SP:neuson1,1,"Rue des Sons de Ville",50.611671,1.635845,-1,0,BSO:SA:CTPneuson1,Europe/Paris,,BSO, +BSO:SP:neuson2,1,"Rue des Sons de Ville",50.612103,1.636386,-1,0,BSO:SA:CTPneuson1,Europe/Paris,,BSO, +BSO:SP:nsmlegi,1,"Légion d'Honneur",50.740749,1.595776,-1,0,BSO:SA:CTPbsmlegi2,Europe/Paris,,BSO, +BSO:SP:outaisn,1,"Aisne",50.698116,1.588778,-1,0,BSO:SA:CTPoutaisn,Europe/Paris,,BSO, +BSO:SP:outaisn2,1,"Aisne",50.698032,1.589081,-1,0,BSO:SA:CTPoutaisn,Europe/Paris,,BSO, +BSO:SP:outbeet,1,"Beethoven",50.70385,1.579194,-1,0,BSO:SA:CTPoutbeet,Europe/Paris,,BSO, +BSO:SP:outbeet2,1,"Beethoven",50.703896,1.579011,-1,0,BSO:SA:CTPoutbeet,Europe/Paris,,BSO, +BSO:SP:outbeet3,1,"Beethoven",50.704201,1.579847,-1,0,BSO:SA:CTPoutbeet,Europe/Paris,,BSO, +BSO:SP:outbert,1,"Paul Bert",50.705608,1.601166,-1,0,BSO:SA:CTPoutbert,Europe/Paris,,BSO, +BSO:SP:outbert2,1,"Paul Bert",50.705521,1.601048,-1,0,BSO:SA:CTPoutbert,Europe/Paris,,BSO, +BSO:SP:outbiez,1,"Rue du Biez",50.707008,1.591883,-1,0,BSO:SA:CTPoutbiez,Europe/Paris,,BSO, +BSO:SP:outcha,1,"Chateau d'Eau",50.699356,1.598274,-1,0,BSO:SA:CTPoutcha,Europe/Paris,,BSO, +BSO:SP:outcha2,1,"Chateau d'Eau",50.69949,1.59794,-1,0,BSO:SA:CTPoutcha,Europe/Paris,,BSO, +BSO:SP:outchev,1,"Chevalier",50.69873,1.579954,-1,0,BSO:SA:CTPoutchev,Europe/Paris,,BSO, +BSO:SP:outcite,1,"Cité République",50.706322,1.583838,-1,0,BSO:SA:CTPoutcite,Europe/Paris,,BSO, +BSO:SP:outcite2,1,"Cité République",50.706421,1.583802,-1,0,BSO:SA:CTPoutcite,Europe/Paris,,BSO, +BSO:SP:outcol1,1,"Collège Albert Camus",50.701908,1.588392,-1,0,BSO:SA:CTPoutcol1,Europe/Paris,,BSO, +BSO:SP:outcol2,1,"Collège Albert Camus",50.701946,1.587926,-1,0,BSO:SA:CTPoutcol1,Europe/Paris,,BSO, +BSO:SP:outcol3,1,"Collège Albert Camus",50.700989,1.589229,-1,0,BSO:SA:CTPoutcol1,Europe/Paris,,BSO, +BSO:SP:outcrow,1,"Crown Emballage",50.7089,1.607297,-1,0,BSO:SA:CTPoutcrow,Europe/Paris,,BSO, +BSO:SP:outcrow2,1,"Crown Emballage",50.709244,1.607365,-1,0,BSO:SA:CTPoutcrow,Europe/Paris,,BSO, +BSO:SP:outdebu,1,"Debussy",50.704361,1.577212,-1,0,BSO:SA:CTPoutdebu,Europe/Paris,,BSO, +BSO:SP:outdela,1,"Delattre",50.702457,1.594554,-1,0,BSO:SA:CTPoutdela,Europe/Paris,,BSO, +BSO:SP:outdeni,1,"Denis",50.708912,1.588948,-1,0,BSO:SA:CTPoutdeni,Europe/Paris,,BSO, +BSO:SP:outdeni2,1,"Denis",50.709236,1.58893,-1,0,BSO:SA:CTPoutdeni,Europe/Paris,,BSO, +BSO:SP:outdes,1,"Desmoulins",50.698238,1.604682,-1,0,BSO:SA:CTPoutdes,Europe/Paris,,BSO, +BSO:SP:outdes2,1,"Desmoulins",50.698235,1.604513,-1,0,BSO:SA:CTPoutdes,Europe/Paris,,BSO, +BSO:SP:outdore,1,"Dorémi",50.700016,1.579692,-1,0,BSO:SA:CTPoutdore,Europe/Paris,,BSO, +BSO:SP:outdore2,1,"Dorémi",50.700031,1.579474,-1,0,BSO:SA:CTPoutdore,Europe/Paris,,BSO, +BSO:SP:outeco,1,"Economat",50.700901,1.594334,-1,0,BSO:SA:CTPouteco,Europe/Paris,,BSO, +BSO:SP:outeco2,1,"Economat",50.700844,1.594373,-1,0,BSO:SA:CTPouteco,Europe/Paris,,BSO, +BSO:SP:outedo1,1,"Edouard Vaillant",50.695137,1.602868,-1,0,BSO:SA:CTPoutedo1,Europe/Paris,,BSO, +BSO:SP:outedo2,1,"Edouard Vaillant",50.695263,1.602671,-1,0,BSO:SA:CTPoutedo1,Europe/Paris,,BSO, +BSO:SP:outette,1,"Les Mouettes",50.699558,1.578367,-1,0,BSO:SA:CTPoutette,Europe/Paris,,BSO, +BSO:SP:outette2,1,"Les Mouettes",50.69968,1.578906,-1,0,BSO:SA:CTPoutette,Europe/Paris,,BSO, +BSO:SP:outfleu,1,"Les Fleurs",50.704865,1.589436,-1,0,BSO:SA:CTPoutfleu,Europe/Paris,,BSO, +BSO:SP:outfleu2,1,"Les Fleurs",50.704987,1.589372,-1,0,BSO:SA:CTPoutfleu,Europe/Paris,,BSO, +BSO:SP:outgrim,1,"La Grimpette",50.692646,1.601746,-1,0,BSO:SA:CTPoutgrim,Europe/Paris,,BSO, +BSO:SP:outgrim2,1,"La Grimpette",50.692604,1.601589,-1,0,BSO:SA:CTPoutgrim,Europe/Paris,,BSO, +BSO:SP:outhlm,1,"HLM",50.702644,1.603564,-1,0,BSO:SA:CTPouthlm,Europe/Paris,,BSO, +BSO:SP:outhlm2,1,"HLM",50.702549,1.603463,-1,0,BSO:SA:CTPouthlm,Europe/Paris,,BSO, +BSO:SP:outkenn,1,"Kennedy Outreau Place",50.702927,1.592866,-1,0,BSO:SA:CTPoutkenn,Europe/Paris,,BSO, +BSO:SP:outkenn2,1,"Kennedy Outreau Place",50.702858,1.593195,-1,0,BSO:SA:CTPoutkenn,Europe/Paris,,BSO, +BSO:SP:outlagr,1,"Léo Lagrange",50.689808,1.603826,-1,0,BSO:SA:CTPoutlagr,Europe/Paris,,BSO, +BSO:SP:outlagr2,1,"Léo Lagrange",50.690201,1.604148,-1,0,BSO:SA:CTPoutlagr,Europe/Paris,,BSO, +BSO:SP:outlagr3,1,"Léo Lagrange",50.690323,1.603423,-1,0,BSO:SA:CTPoutlagr,Europe/Paris,,BSO, +BSO:SP:outlal,1,"Laligand",50.711739,1.595232,-1,0,BSO:SA:CTPoutlal,Europe/Paris,,BSO, +BSO:SP:outlal2,1,"Laligand",50.711769,1.595527,-1,0,BSO:SA:CTPoutlal,Europe/Paris,,BSO, +BSO:SP:outlep1,1,"LEP Outreau",50.704319,1.589806,-1,0,BSO:SA:CTPoutlep1,Europe/Paris,,BSO, +BSO:SP:outlibe,1,"Liberté",50.711273,1.591797,-1,0,BSO:SA:CTPoutlibe,Europe/Paris,,BSO, +BSO:SP:outlibe2,1,"Liberté",50.711418,1.592108,-1,0,BSO:SA:CTPoutlibe,Europe/Paris,,BSO, +BSO:SP:outmai,1,"Huit Mai",50.707706,1.598762,-1,0,BSO:SA:CTPoutmai,Europe/Paris,,BSO, +BSO:SP:outmai2,1,"Huit Mai",50.707798,1.598609,-1,0,BSO:SA:CTPoutmai,Europe/Paris,,BSO, +BSO:SP:outman,1,"Rte de Manihen",50.687702,1.605401,-1,0,BSO:SA:CTPoutman,Europe/Paris,,BSO, +BSO:SP:outman2,1,"Rte de Manihen",50.687782,1.605534,-1,0,BSO:SA:CTPoutman,Europe/Paris,,BSO, +BSO:SP:outmazu,1,"Mazurettes",50.70229,1.595977,-1,0,BSO:SA:CTPoutmazu,Europe/Paris,,BSO, +BSO:SP:outmazu2,1,"Mazurettes",50.702579,1.595976,-1,0,BSO:SA:CTPoutmazu,Europe/Paris,,BSO, +BSO:SP:outmont,1,"Mont Soleil",50.699295,1.582865,-1,0,BSO:SA:CTPoutmont,Europe/Paris,,BSO, +BSO:SP:outmont2,1,"Mont Soleil",50.699142,1.582888,-1,0,BSO:SA:CTPoutmont,Europe/Paris,,BSO, +BSO:SP:outmou1,1,"Collège Jean Moulin",50.706036,1.58043,-1,0,BSO:SA:CTPoutmou1,Europe/Paris,,BSO, +BSO:SP:outnce,1,"Résistance",50.714592,1.595376,-1,0,BSO:SA:CTPoutnce,Europe/Paris,,BSO, +BSO:SP:outnce2,1,"Résistance",50.714478,1.595696,-1,0,BSO:SA:CTPoutnce,Europe/Paris,,BSO, +BSO:SP:outneuf,1,"Mont Neuf Garromanche",50.710938,1.600409,-1,0,BSO:SA:CTPoutneuf,Europe/Paris,,BSO, +BSO:SP:outneuf2,1,"Mont Neuf Garromanche",50.710808,1.600031,-1,0,BSO:SA:CTPoutneuf,Europe/Paris,,BSO, +BSO:SP:outorm,1,"Ormes",50.69841,1.585884,-1,0,BSO:SA:CTPoutorm,Europe/Paris,,BSO, +BSO:SP:outorm2,1,"Ormes",50.698467,1.585799,-1,0,BSO:SA:CTPoutorm,Europe/Paris,,BSO, +BSO:SP:outpeu,1,"Peupliers",50.700237,1.587021,-1,0,BSO:SA:CTPoutpeu,Europe/Paris,,BSO, +BSO:SP:outpeu2,1,"Peupliers",50.700565,1.586831,-1,0,BSO:SA:CTPoutpeu,Europe/Paris,,BSO, +BSO:SP:outplac,1,"Place d'Outreau",50.704559,1.591862,-1,0,BSO:SA:CTPoutplac,Europe/Paris,,BSO, +BSO:SP:outplac2,1,"Place d'Outreau",50.704559,1.591862,-1,0,BSO:SA:CTPoutplac,Europe/Paris,,BSO, +BSO:SP:outpost,1,"Outreau Poste",50.706543,1.593367,-1,0,BSO:SA:CTPoutpost,Europe/Paris,,BSO, +BSO:SP:outpres,1,"Presbytère",50.70644,1.590158,-1,0,BSO:SA:CTPoutpres,Europe/Paris,,BSO, +BSO:SP:outpres2,1,"Presbytère",50.706497,1.590279,-1,0,BSO:SA:CTPoutpres,Europe/Paris,,BSO, +BSO:SP:outre1,1,"Résurgat 1",50.706589,1.608431,-1,0,BSO:SA:CTPoutre1,Europe/Paris,,BSO, +BSO:SP:outre12,1,"Résurgat 1",50.706631,1.608647,-1,0,BSO:SA:CTPoutre1,Europe/Paris,,BSO, +BSO:SP:outre2,1,"Résurgat 2",50.69278,1.603507,-1,0,BSO:SA:CTPoutre2,Europe/Paris,,BSO, +BSO:SP:outre22,1,"Résurgat 2",50.692802,1.603766,-1,0,BSO:SA:CTPoutre2,Europe/Paris,,BSO, +BSO:SP:outrena,1,"Tour du Renard",50.699131,1.591563,-1,0,BSO:SA:CTPoutrena,Europe/Paris,,BSO, +BSO:SP:outrena2,1,"Tour du Renard",50.699078,1.592435,-1,0,BSO:SA:CTPoutrena,Europe/Paris,,BSO, +BSO:SP:outresu,1,"Résurgat",50.699883,1.607929,-1,0,BSO:SA:CTPoutresu,Europe/Paris,,BSO, +BSO:SP:outresu2,1,"Résurgat",50.699825,1.607856,-1,0,BSO:SA:CTPoutresu,Europe/Paris,,BSO, +BSO:SP:outrsal,1,"Roger Salengro",50.708164,1.600283,-1,0,BSO:SA:CTPoutrsal,Europe/Paris,,BSO, +BSO:SP:outrsal2,1,"Roger Salengro",50.708195,1.600461,-1,0,BSO:SA:CTPoutrsal,Europe/Paris,,BSO, +BSO:SP:outsall,1,"La Salle",50.699371,1.57638,-1,0,BSO:SA:CTPoutsall,Europe/Paris,,BSO, +BSO:SP:outsall2,1,"La Salle",50.699352,1.576199,-1,0,BSO:SA:CTPoutsall,Europe/Paris,,BSO, +BSO:SP:outserv,1,"Services des Mines",50.692661,1.577691,-1,0,BSO:SA:CTPoutserv,Europe/Paris,,BSO, +BSO:SP:outserv2,1,"Services des Mines",50.692753,1.57753,-1,0,BSO:SA:CTPoutserv,Europe/Paris,,BSO, +BSO:SP:outsir,1,"Mont Plaisir",50.714317,1.596988,-1,0,BSO:SA:CTPoutsir,Europe/Paris,,BSO, +BSO:SP:outsir2,1,"Mont Plaisir",50.714436,1.596659,-1,0,BSO:SA:CTPoutsir,Europe/Paris,,BSO, +BSO:SP:outver,1,"Rue Verte",50.697662,1.60152,-1,0,BSO:SA:CTPoutver,Europe/Paris,,BSO, +BSO:SP:outver2,1,"Rue Verte",50.697598,1.601371,-1,0,BSO:SA:CTPoutver,Europe/Paris,,BSO, +BSO:SP:perplac,1,"Pernes Place",50.75198,1.704894,-1,0,BSO:SA:CTPperplac,Europe/Paris,,BSO, +BSO:SP:perplac2,1,"Pernes Place",50.752018,1.704594,-1,0,BSO:SA:CTPperplac,Europe/Paris,,BSO, +BSO:SP:persouv,1,"Souverain Moulin",50.753559,1.690216,-1,0,BSO:SA:CTPpersouv,Europe/Paris,,BSO, +BSO:SP:persouv2,1,"Souverain Moulin",50.75367,1.690132,-1,0,BSO:SA:CTPpersouv,Europe/Paris,,BSO, +BSO:SP:pitpit1,1,"Pittefaux",50.756203,1.684684,-1,0,BSO:SA:CTPpitpit1,Europe/Paris,,BSO, +BSO:SP:pitpitt2,1,"Pittefaux",50.756306,1.684594,-1,0,BSO:SA:CTPpitpit1,Europe/Paris,,BSO, +BSO:SP:semcach,1,"La Cachaine",50.677044,1.634593,-1,0,BSO:SA:CTPsemcach,Europe/Paris,,BSO, +BSO:SP:semcach2,1,"La Cachaine",50.676819,1.63254,-1,0,BSO:SA:CTPsemcach,Europe/Paris,,BSO, +BSO:SP:semcalv,1,"Calvaire",50.672951,1.609498,-1,0,BSO:SA:CTPsemcalv,Europe/Paris,,BSO, +BSO:SP:semcalv2,1,"Calvaire",50.672947,1.609681,-1,0,BSO:SA:CTPsemcalv,Europe/Paris,,BSO, +BSO:SP:semchat,1,"Chateau",50.685371,1.61664,-1,0,BSO:SA:CTPsemchat,Europe/Paris,,BSO, +BSO:SP:semchat2,1,"Chateau",50.685513,1.616465,-1,0,BSO:SA:CTPsemchat,Europe/Paris,,BSO, +BSO:SP:semcime,1,"Cimetière de St Etienne au Mont",50.669422,1.635288,-1,0,BSO:SA:CTPsemcime,Europe/Paris,,BSO, +BSO:SP:semcime2,1,"Cimetière de St Etienne au Mont",50.669041,1.635407,-1,0,BSO:SA:CTPsemcime,Europe/Paris,,BSO, +BSO:SP:semcite,1,"Cité Calonne",50.674419,1.633712,-1,0,BSO:SA:CTPsemcite,Europe/Paris,,BSO, +BSO:SP:semcol1,1,"Collège Paul Eluard",50.672512,1.630905,-1,0,BSO:SA:CTPsemcol1,Europe/Paris,,BSO, +BSO:SP:semcol2,1,"Collège Paul Eluard",50.672512,1.630905,-1,0,BSO:SA:CTPsemcol1,Europe/Paris,,BSO, +BSO:SP:semcord,1,"R.Cordier",50.673836,1.636654,-1,0,BSO:SA:CTPsemcord,Europe/Paris,,BSO, +BSO:SP:semcord2,1,"R.Cordier",50.673836,1.636654,-1,0,BSO:SA:CTPsemcord,Europe/Paris,,BSO, +BSO:SP:semecau,1,"Ecault Centre",50.666649,1.604687,-1,0,BSO:SA:CTPsemecau,Europe/Paris,,BSO, +BSO:SP:semecau2,1,"Ecault Centre",50.666504,1.604064,-1,0,BSO:SA:CTPsemecau,Europe/Paris,,BSO, +BSO:SP:semecol,1,"Ecole",50.668762,1.606039,-1,0,BSO:SA:CTPsemecol,Europe/Paris,,BSO, +BSO:SP:semecol2,1,"Ecole",50.668602,1.606102,-1,0,BSO:SA:CTPsemecol,Europe/Paris,,BSO, +BSO:SP:semegli2,1,"Eglise d'Ecault",50.675812,1.610285,-1,0,BSO:SA:CTPsemegli2,Europe/Paris,,BSO, +BSO:SP:semelgi,1,"Eglise d'Ecault",50.675861,1.610134,-1,0,BSO:SA:CTPsemegli2,Europe/Paris,,BSO, +BSO:SP:semfont,1,"La Fontaine",50.667622,1.602469,-1,0,BSO:SA:CTPsemfont,Europe/Paris,,BSO, +BSO:SP:semfont2,1,"La Fontaine",50.667271,1.601355,-1,0,BSO:SA:CTPsemfont,Europe/Paris,,BSO, +BSO:SP:semgar,1,"Les Garennes",50.664246,1.596658,-1,0,BSO:SA:CTPsemgar,Europe/Paris,,BSO, +BSO:SP:semgar2,1,"Les Garennes",50.664371,1.596122,-1,0,BSO:SA:CTPsemgar,Europe/Paris,,BSO, +BSO:SP:semgau,1,"Gaultier",50.684505,1.620321,-1,0,BSO:SA:CTPsemgau,Europe/Paris,,BSO, +BSO:SP:semgau2,1,"Gaultier",50.68478,1.619653,-1,0,BSO:SA:CTPsemgau,Europe/Paris,,BSO, +BSO:SP:semhaff,1,"Haffreingue",50.682816,1.623597,-1,0,BSO:SA:CTPsemhaff,Europe/Paris,,BSO, +BSO:SP:semhaff2,1,"Haffreingue",50.683163,1.623379,-1,0,BSO:SA:CTPsemhaff,Europe/Paris,,BSO, +BSO:SP:semhesd,1,"Rte d'Hesdigneul",50.679588,1.631451,-1,0,BSO:SA:CTPsemhesd,Europe/Paris,,BSO, +BSO:SP:semhesd2,1,"Rte d'Hesdigneul",50.679722,1.631458,-1,0,BSO:SA:CTPsemhesd,Europe/Paris,,BSO, +BSO:SP:semmair,1,"Mairie de Saint-Etienne au Mont",50.681,1.628447,-1,0,BSO:SA:CTPsemmair,Europe/Paris,,BSO, +BSO:SP:semmair2,1,"Mairie de Saint-Etienne au Mont",50.681225,1.627795,-1,0,BSO:SA:CTPsemmair,Europe/Paris,,BSO, +BSO:SP:semolym,1,"Olympe",50.677223,1.620368,-1,0,BSO:SA:CTPsemolym,Europe/Paris,,BSO, +BSO:SP:semolym2,1,"Olympe",50.677063,1.619982,-1,0,BSO:SA:CTPsemolym,Europe/Paris,,BSO, +BSO:SP:sempar,1,"Petit Paradis",50.686058,1.609872,-1,0,BSO:SA:CTPsempar,Europe/Paris,,BSO, +BSO:SP:sempar2,1,"Petit Paradis",50.686127,1.610061,-1,0,BSO:SA:CTPsempar,Europe/Paris,,BSO, +BSO:SP:sempast,1,"Pasteur",50.678635,1.631952,-1,0,BSO:SA:CTPsempast,Europe/Paris,,BSO, +BSO:SP:sempaul,1,"Paul Eluard",50.674591,1.630076,-1,0,BSO:SA:CTPsempaul,Europe/Paris,,BSO, +BSO:SP:sempaul2,1,"Paul Eluard",50.674473,1.629989,-1,0,BSO:SA:CTPsempaul,Europe/Paris,,BSO, +BSO:SP:semquen,1,"Les Quesnelets",50.671669,1.63549,-1,0,BSO:SA:CTPsemquen,Europe/Paris,,BSO, +BSO:SP:semquen2,1,"Les Quesnelets",50.671669,1.63549,-1,0,BSO:SA:CTPsemquen,Europe/Paris,,BSO, +BSO:SP:semresi,1,"Résidence du Bon Air",50.670341,1.607553,-1,0,BSO:SA:CTPsemresi,Europe/Paris,,BSO, +BSO:SP:semresi2,1,"Résidence du Bon Air",50.67017,1.607586,-1,0,BSO:SA:CTPsemresi,Europe/Paris,,BSO, +BSO:SP:semvald,1,"Le Val d'Ecault",50.662964,1.594302,-1,0,BSO:SA:CTPsemvald,Europe/Paris,,BSO, +BSO:SP:semvald2,1,"Le Val d'Ecault",50.662964,1.594302,-1,0,BSO:SA:CTPsemvald,Europe/Paris,,BSO, +BSO:SP:smbann1,1,"Sainte Anne",50.730309,1.627449,-1,0,BSO:SA:CTPsmbann1,Europe/Paris,,BSO, +BSO:SP:smbann2,1,"Ste Anne",50.730412,1.627407,-1,0,BSO:SA:CTPsmbann2,Europe/Paris,,BSO, +BSO:SP:smbappo,1,"Apolline",50.706276,1.616305,-1,0,BSO:SA:CTPsmbappo,Europe/Paris,,BSO, +BSO:SP:smbappo2,1,"Apolline",50.706295,1.616085,-1,0,BSO:SA:CTPsmbappo,Europe/Paris,,BSO, +BSO:SP:smbappo3,1,"Apolline",50.706276,1.616305,-1,0,BSO:SA:CTPsmbappo,Europe/Paris,,BSO, +BSO:SP:smbappo4,1,"Apolline",50.706295,1.616085,-1,0,BSO:SA:CTPsmbappo,Europe/Paris,,BSO, +BSO:SP:smbarm3,1,"Armatis",50.706081,1.612735,-1,0,BSO:SA:CTPbsmarma,Europe/Paris,,BSO, +BSO:SP:smbbadh,1,"Bad'Huit",50.734192,1.682341,-1,0,BSO:SA:CTPsmbbadh,Europe/Paris,,BSO, +BSO:SP:smbbadh2,1,"Bad'Huit",50.734253,1.682162,-1,0,BSO:SA:CTPsmbbadh,Europe/Paris,,BSO, +BSO:SP:smbbel2,1,"Du Bellay",50.714283,1.627296,-1,0,BSO:SA:CTPsmbbel2,Europe/Paris,,BSO, +BSO:SP:smbbell,1,"Du Bellay",50.714779,1.626029,-1,0,BSO:SA:CTPsmbbel2,Europe/Paris,,BSO, +BSO:SP:smbber2,1,"La Bergerie",50.713486,1.6295,-1,0,BSO:SA:CTPsmbber2,Europe/Paris,,BSO, +BSO:SP:smbber3,1,"La Bergerie",50.714115,1.628794,-1,0,BSO:SA:CTPsmbber2,Europe/Paris,,BSO, +BSO:SP:smbbou1,1,"Les Bouleaux",50.710045,1.625254,-1,0,BSO:SA:CTPsmbbou1,Europe/Paris,,BSO, +BSO:SP:smbbou2,1,"Les Bouleaux",50.710068,1.625038,-1,0,BSO:SA:CTPsmbbou1,Europe/Paris,,BSO, +BSO:SP:smbbre1,1,"Bressloff",50.734291,1.627148,-1,0,BSO:SA:CTPsmbbre1,Europe/Paris,,BSO, +BSO:SP:smbbre2,1,"Bressloff",50.734219,1.626985,-1,0,BSO:SA:CTPsmbbre1,Europe/Paris,,BSO, +BSO:SP:smbcal1,1,"Rte de Calais",50.731419,1.61972,-1,0,BSO:SA:CTPsmbcal1,Europe/Paris,,BSO, +BSO:SP:smbcal2,1,"Rte de Calais",50.731339,1.619889,-1,0,BSO:SA:CTPsmbcal1,Europe/Paris,,BSO, +BSO:SP:smbcime,1,"Cimetière de St Martin",50.724476,1.633538,-1,0,BSO:SA:CTPsmbcime,Europe/Paris,,BSO, +BSO:SP:smbcite,1,"Cité",50.709568,1.623385,-1,0,BSO:SA:CTPsmbcite,Europe/Paris,,BSO, +BSO:SP:smbcite2,1,"Cité",50.709545,1.623288,-1,0,BSO:SA:CTPsmbcite,Europe/Paris,,BSO, +BSO:SP:smbcite3,1,"Cité",50.709568,1.623385,-1,0,BSO:SA:CTPsmbcite,Europe/Paris,,BSO, +BSO:SP:smbcite4,1,"Cité",50.709545,1.623288,-1,0,BSO:SA:CTPsmbcite,Europe/Paris,,BSO, +BSO:SP:smbcol1,1,"Collège R. Salengro",50.727753,1.632101,-1,0,BSO:SA:CTPsmbcol1,Europe/Paris,,BSO, +BSO:SP:smbcol2,1,"Collège R. Salengro",50.72784,1.632262,-1,0,BSO:SA:CTPsmbcol1,Europe/Paris,,BSO, +BSO:SP:smbdena,1,"Denacre",50.73027,1.630581,-1,0,BSO:SA:CTPsmbdena,Europe/Paris,,BSO, +BSO:SP:smbdena2,1,"Denacre",50.730595,1.630272,-1,0,BSO:SA:CTPsmbdena,Europe/Paris,,BSO, +BSO:SP:smbdesv,1,"Rte de Desvres",50.723377,1.640204,-1,0,BSO:SA:CTPsmbdesv,Europe/Paris,,BSO, +BSO:SP:smbdesv2,1,"Rte de Desvres",50.723511,1.640213,-1,0,BSO:SA:CTPsmbdesv,Europe/Paris,,BSO, +BSO:SP:smbecol,1,"Ecole d'Infirmières",50.722317,1.631875,-1,0,BSO:SA:CTPsmbecol,Europe/Paris,,BSO, +BSO:SP:smbecol2,1,"Ecole d'Infirmières",50.722351,1.631059,-1,0,BSO:SA:CTPsmbecol,Europe/Paris,,BSO, +BSO:SP:smbecol3,1,"Ecole d'Infirmières",50.722317,1.631875,-1,0,BSO:SA:CTPsmbecol,Europe/Paris,,BSO, +BSO:SP:smbecol4,1,"Ecole d'Infirmières",50.722351,1.631059,-1,0,BSO:SA:CTPsmbecol,Europe/Paris,,BSO, +BSO:SP:smbegli,1,"Eglise de St Martin",50.724812,1.634532,-1,0,BSO:SA:CTPsmbegli,Europe/Paris,,BSO, +BSO:SP:smbest,1,"Inquétrie Est",50.733879,1.676806,-1,0,BSO:SA:CTPsmbest,Europe/Paris,,BSO, +BSO:SP:smbfbou,1,"François Boulanger",50.718887,1.627299,-1,0,BSO:SA:CTPsmbfbou,Europe/Paris,,BSO, +BSO:SP:smbfbou2,1,"François Boulanger",50.719151,1.628006,-1,0,BSO:SA:CTPsmbfbou,Europe/Paris,,BSO, +BSO:SP:smbgast,1,"Gaston Durieux",50.724117,1.63883,-1,0,BSO:SA:CTPsmbgast,Europe/Paris,,BSO, +BSO:SP:smbgast2,1,"Gaston Durieux",50.72419,1.639015,-1,0,BSO:SA:CTPsmbgast,Europe/Paris,,BSO, +BSO:SP:smbgide,1,"Charles Gide",50.718719,1.622536,-1,0,BSO:SA:CTPsmbgide,Europe/Paris,,BSO, +BSO:SP:smbgide2,1,"Charles Gide",50.718807,1.622638,-1,0,BSO:SA:CTPsmbgide,Europe/Paris,,BSO, +BSO:SP:smbgir1,1,"Giraux Sannier",50.722351,1.635102,-1,0,BSO:SA:CTPsmbgir1,Europe/Paris,,BSO, +BSO:SP:smbgir2,1,"Giraux Sannier",50.7225,1.635904,-1,0,BSO:SA:CTPsmbgir1,Europe/Paris,,BSO, +BSO:SP:smbheli,1,"Piscine Patinoire Hélicéa",50.730141,1.644903,-1,0,BSO:SA:CTPsmbheli,Europe/Paris,,BSO, +BSO:SP:smbheli2,1,"Piscine Patinoire Hélicéa",50.730141,1.644903,-1,0,BSO:SA:CTPsmbheli,Europe/Paris,,BSO, +BSO:SP:smbipbo,1,"Inquétrie Porte de Boulogne",50.733562,1.672917,-1,0,BSO:SA:CTPsmbipbo,Europe/Paris,,BSO, +BSO:SP:smbjard,1,"Jardins de l'Empereur",50.734211,1.621045,-1,0,BSO:SA:CTPsmbjard,Europe/Paris,,BSO, +BSO:SP:smbjard2,1,"Jardins de l'Empereur",50.7342,1.621248,-1,0,BSO:SA:CTPsmbjard,Europe/Paris,,BSO, +BSO:SP:smbjos1,1,"Saint Joseph",50.73571,1.62176,-1,0,BSO:SA:CTPsmbjos1,Europe/Paris,,BSO, +BSO:SP:smbjos2,1,"Saint Joseph",50.735806,1.62201,-1,0,BSO:SA:CTPsmbjos1,Europe/Paris,,BSO, +BSO:SP:smblam,1,"Mont Lambert",50.717678,1.65695,-1,0,BSO:SA:CTPsmblam,Europe/Paris,,BSO, +BSO:SP:smblamb2,1,"Mont Lambert",50.717842,1.657149,-1,0,BSO:SA:CTPsmblam,Europe/Paris,,BSO, +BSO:SP:smbleon,1,"Cité Léon Blum",50.732441,1.627364,-1,0,BSO:SA:CTPsmbleon,Europe/Paris,,BSO, +BSO:SP:smbleon2,1,"Cité Léon Blum",50.73241,1.627474,-1,0,BSO:SA:CTPsmbleon,Europe/Paris,,BSO, +BSO:SP:smbmair,1,"Mairie de Saint-Martin-Boulogne",50.726063,1.632903,-1,0,BSO:SA:CTPsmbmair,Europe/Paris,,BSO, +BSO:SP:smbmair2,1,"Mairie de Saint-Martin-Boulogne",50.726261,1.633043,-1,0,BSO:SA:CTPsmbmair,Europe/Paris,,BSO, +BSO:SP:smbmair3,1,"Mairie de Saint-Martin-Boulogne",50.725765,1.633514,-1,0,BSO:SA:CTPsmbmair,Europe/Paris,,BSO, +BSO:SP:smbmair4,1,"Mairie de Saint-Martin-Boulogne",50.725739,1.634565,-1,0,BSO:SA:CTPsmbmair,Europe/Paris,,BSO, +BSO:SP:smbmar1,1,"Marlborough",50.736374,1.624398,-1,0,BSO:SA:CTPsmbmar1,Europe/Paris,,BSO, +BSO:SP:smbmogr,1,"Moka / Grande Armée",50.738537,1.6243,-1,0,BSO:SA:CTPsmbmogr,Europe/Paris,,BSO, +BSO:SP:smbmogr2,1,"Moka / Grande Armée",50.738869,1.624451,-1,0,BSO:SA:CTPsmbmogr,Europe/Paris,,BSO, +BSO:SP:smbmogr3,1,"Moka / Grande Armée",50.738537,1.6243,-1,0,BSO:SA:CTPsmbmogr,Europe/Paris,,BSO, +BSO:SP:smbmogr4,1,"Moka / Grande Armée",50.738869,1.624451,-1,0,BSO:SA:CTPsmbmogr,Europe/Paris,,BSO, +BSO:SP:smbmont,1,"Mont Joie",50.726398,1.641587,-1,0,BSO:SA:CTPsmbmont,Europe/Paris,,BSO, +BSO:SP:smbmont2,1,"Mont Joie",50.726536,1.641653,-1,0,BSO:SA:CTPsmbmont,Europe/Paris,,BSO, +BSO:SP:smbmoul,1,"Quatre Moulins",50.733925,1.626464,-1,0,BSO:SA:CTPsmbmoul,Europe/Paris,,BSO, +BSO:SP:smbmoul2,1,"Quatre Moulins",50.733913,1.626583,-1,0,BSO:SA:CTPsmbmoul,Europe/Paris,,BSO, +BSO:SP:smborme,1,"Orme",50.708717,1.621295,-1,0,BSO:SA:CTPsmborme,Europe/Paris,,BSO, +BSO:SP:smborme2,1,"Orme",50.708672,1.620672,-1,0,BSO:SA:CTPsmborme,Europe/Paris,,BSO, +BSO:SP:smborme3,1,"Orme",50.708717,1.621295,-1,0,BSO:SA:CTPsmborme,Europe/Paris,,BSO, +BSO:SP:smborme4,1,"Orme",50.708672,1.620672,-1,0,BSO:SA:CTPsmborme,Europe/Paris,,BSO, +BSO:SP:smbostr,1,"Ostrohove",50.710567,1.621906,-1,0,BSO:SA:CTPsmbostr,Europe/Paris,,BSO, +BSO:SP:smbostr2,1,"Ostrohove",50.710567,1.621906,-1,0,BSO:SA:CTPsmbostr,Europe/Paris,,BSO, +BSO:SP:smboues,1,"Inquétrie Ouest",50.732353,1.67085,-1,0,BSO:SA:CTPsmboues,Europe/Paris,,BSO, +BSO:SP:smboues2,1,"Inquétrie Ouest",50.732677,1.670342,-1,0,BSO:SA:CTPsmboues,Europe/Paris,,BSO, +BSO:SP:smbpeu1,1,"Peulinghen",50.719906,1.653033,-1,0,BSO:SA:CTPsmbpeu1,Europe/Paris,,BSO, +BSO:SP:smbpeu2,1,"Peulinghen",50.71973,1.653074,-1,0,BSO:SA:CTPsmbpeu1,Europe/Paris,,BSO, +BSO:SP:smbplat,1,"Le Plateau",50.707699,1.613886,-1,0,BSO:SA:CTPsmbplat,Europe/Paris,,BSO, +BSO:SP:smbplat2,1,"Le Plateau",50.707699,1.613688,-1,0,BSO:SA:CTPsmbplat,Europe/Paris,,BSO, +BSO:SP:smbpoly,1,"Polyclinique",50.722771,1.643324,-1,0,BSO:SA:CTPsmbpoly,Europe/Paris,,BSO, +BSO:SP:smbpoly2,1,"Polyclinique",50.722771,1.643324,-1,0,BSO:SA:CTPsmbpoly,Europe/Paris,,BSO, +BSO:SP:smbpoly3,1,"Polyclinique",50.72258,1.643333,-1,0,BSO:SA:CTPsmbpoly,Europe/Paris,,BSO, +BSO:SP:smbrons,1,"Ronsard",50.715504,1.624826,-1,0,BSO:SA:CTPsmbrons,Europe/Paris,,BSO, +BSO:SP:smbsand,1,"Marlborough rue George Sand",50.73769,1.624584,-1,0,BSO:SA:CTPsmbsand,Europe/Paris,,BSO, +BSO:SP:smbstom,1,"Rte de St Omer",50.72599,1.637572,-1,0,BSO:SA:CTPsmbstom,Europe/Paris,,BSO, +BSO:SP:smbstom2,1,"Rte de St Omer",50.726101,1.637405,-1,0,BSO:SA:CTPsmbstom,Europe/Paris,,BSO, +BSO:SP:smbvil,1,"Villebois",50.716625,1.639992,-1,0,BSO:SA:CTPsmbvil,Europe/Paris,,BSO, +BSO:SP:smbvil2,1,"Villebois",50.716728,1.639934,-1,0,BSO:SA:CTPsmbvil,Europe/Paris,,BSO, +BSO:SP:smbwar,1,"Waroquerie",50.713139,1.63142,-1,0,BSO:SA:CTPsmbwar,Europe/Paris,,BSO, +BSO:SP:smbwar2,1,"Waroquerie",50.713215,1.631283,-1,0,BSO:SA:CTPsmbwar,Europe/Paris,,BSO, +BSO:SP:smbwica,1,"Wicardenne",50.730263,1.627628,-1,0,BSO:SA:CTPsmbwica,Europe/Paris,,BSO, +BSO:SP:stmmar2,1,"Marlborough",50.736031,1.624622,-1,0,BSO:SA:CTPsmbmar1,Europe/Paris,,BSO, +BSO:SP:wimair,1,"Bon Air",50.777542,1.612264,-1,0,BSO:SA:CTPwimair,Europe/Paris,,BSO, +BSO:SP:wimair2,1,"Bon Air",50.777191,1.611748,-1,0,BSO:SA:CTPwimair,Europe/Paris,,BSO, +BSO:SP:wimbas4,1,"Baston",50.780144,1.628529,-1,0,BSO:SA:place_WIMBAR,Europe/Paris,,BSO, +BSO:SP:wimbast,1,"Baston",50.782337,1.632361,-1,0,BSO:SA:place_WIMBAR,Europe/Paris,,BSO, +BSO:SP:wimbast2,1,"Baston",50.782459,1.632328,-1,0,BSO:SA:place_WIMBAR,Europe/Paris,,BSO, +BSO:SP:wimbast3,1,"Baston",50.780304,1.628447,-1,0,BSO:SA:place_WIMBAR,Europe/Paris,,BSO, +BSO:SP:wimbons,1,"Bon Secours",50.74062,1.627428,-1,0,BSO:SA:CTPwimbons,Europe/Paris,,BSO, +BSO:SP:wimbons2,1,"Bon Secours",50.740719,1.626572,-1,0,BSO:SA:CTPwimbons,Europe/Paris,,BSO, +BSO:SP:wimbons5,1,"Bon Secours",50.740719,1.626572,-1,0,BSO:SA:CTPwimbons,Europe/Paris,,BSO, +BSO:SP:wimchat,1,"Rue du Chateau",50.779751,1.623173,-1,0,BSO:SA:CTPwimchat,Europe/Paris,,BSO, +BSO:SP:wimchat2,1,"Rue du Chateau",50.779808,1.623044,-1,0,BSO:SA:CTPwimchat,Europe/Paris,,BSO, +BSO:SP:wimcol1,1,"Collège Pilâtre de Rozier",50.765377,1.617387,-1,0,BSO:SA:CTPwimcol1,Europe/Paris,,BSO, +BSO:SP:wimcol2,1,"Collège Pilâtre de Rozier",50.765308,1.61775,-1,0,BSO:SA:CTPwimcol1,Europe/Paris,,BSO, +BSO:SP:wimcour,1,"Courgain",50.778309,1.618055,-1,0,BSO:SA:CTPwimcour,Europe/Paris,,BSO, +BSO:SP:wimcour2,1,"Courgain",50.778374,1.61815,-1,0,BSO:SA:CTPwimcour,Europe/Paris,,BSO, +BSO:SP:wimcrec,1,"La Crèche",50.746593,1.598286,-1,0,BSO:SA:CTPwimcrec2,Europe/Paris,,BSO, +BSO:SP:wimcrec2,1,"La Crèche",50.746914,1.598117,-1,0,BSO:SA:CTPwimcrec2,Europe/Paris,,BSO, +BSO:SP:wimdebu,1,"Debussy",50.783146,1.630499,-1,0,BSO:SA:CTPwimdebu,Europe/Paris,,BSO, +BSO:SP:wimdebu2,1,"Debussy",50.783234,1.630545,-1,0,BSO:SA:CTPwimdebu,Europe/Paris,,BSO, +BSO:SP:wimegli,1,"Wimille Eglise",50.763134,1.632519,-1,0,BSO:SA:CTPwimegli,Europe/Paris,,BSO, +BSO:SP:wimegli2,1,"Wimille Eglise",50.76387,1.631393,-1,0,BSO:SA:CTPwimegli,Europe/Paris,,BSO, +BSO:SP:wimetoi,1,"Etoile",50.76413,1.62753,-1,0,BSO:SA:CTPwimetoi,Europe/Paris,,BSO, +BSO:SP:wimetoi2,1,"Etoile",50.76395,1.62796,-1,0,BSO:SA:CTPwimetoi,Europe/Paris,,BSO, +BSO:SP:wimfont,1,"Fontaine",50.761852,1.633556,-1,0,BSO:SA:CTPwimfont,Europe/Paris,,BSO, +BSO:SP:wimfont2,1,"Fontaine",50.761848,1.633386,-1,0,BSO:SA:CTPwimfont,Europe/Paris,,BSO, +BSO:SP:wimgoun,1,"Gounod",50.78426,1.625832,-1,0,BSO:SA:CTPwimgoun,Europe/Paris,,BSO, +BSO:SP:wimgoun2,1,"Gounod",50.7841,1.627124,-1,0,BSO:SA:CTPwimgoun,Europe/Paris,,BSO, +BSO:SP:wimhonv,1,"Honvault",50.757015,1.605132,-1,0,BSO:SA:CTPwimhonv,Europe/Paris,,BSO, +BSO:SP:wimhonv2,1,"Honvault",50.757446,1.605175,-1,0,BSO:SA:CTPwimhonv,Europe/Paris,,BSO, +BSO:SP:wimjean,1,"St Jean",50.762894,1.607496,-1,0,BSO:SA:CTPwimjean,Europe/Paris,,BSO, +BSO:SP:wimjean2,1,"St Jean",50.762875,1.607057,-1,0,BSO:SA:CTPwimjean,Europe/Paris,,BSO, +BSO:SP:wimlecl,1,"Général Leclerc",50.766499,1.611154,-1,0,BSO:SA:CTPwimlecl,Europe/Paris,,BSO, +BSO:SP:wimmair,1,"Mairie de Wimereux",50.769951,1.610709,-1,0,BSO:SA:CTPwimmair,Europe/Paris,,BSO, +BSO:SP:wimmair2,1,"Mairie de Wimereux",50.769775,1.611706,-1,0,BSO:SA:CTPwimmair,Europe/Paris,,BSO, +BSO:SP:wimmaur,1,"St Maurice",50.765053,1.60899,-1,0,BSO:SA:CTPwimmaur,Europe/Paris,,BSO, +BSO:SP:wimmaur2,1,"St Maurice",50.765125,1.608305,-1,0,BSO:SA:CTPwimmaur,Europe/Paris,,BSO, +BSO:SP:wimmess,1,"Messager",50.781998,1.621825,-1,0,BSO:SA:CTPwimmess,Europe/Paris,,BSO, +BSO:SP:wimmess2,1,"Messager",50.781803,1.621797,-1,0,BSO:SA:CTPwimmess,Europe/Paris,,BSO, +BSO:SP:wimmont,1,"Mont Gambier",50.755783,1.630288,-1,0,BSO:SA:CTPwimmont,Europe/Paris,,BSO, +BSO:SP:wimmont2,1,"Mont Gambier",50.755814,1.629802,-1,0,BSO:SA:CTPwimmont,Europe/Paris,,BSO, +BSO:SP:wimnapo2,1,"Napoléon",50.766624,1.608497,-1,0,BSO:SA:CTPwimnapo2,Europe/Paris,,BSO, +BSO:SP:wimnung,1,"Nungesser et Coli",50.778431,1.613002,-1,0,BSO:SA:CTPwimnung,Europe/Paris,,BSO, +BSO:SP:wimnung2,1,"Nungesser et Coli",50.778496,1.61299,-1,0,BSO:SA:CTPwimnung,Europe/Paris,,BSO, +BSO:SP:wimoffe,1,"Offenbach",50.783142,1.62315,-1,0,BSO:SA:CTPwimoffe,Europe/Paris,,BSO, +BSO:SP:wimoffe2,1,"Offenbach",50.783302,1.623166,-1,0,BSO:SA:CTPwimoffe,Europe/Paris,,BSO, +BSO:SP:wimparc2,1,"Parc Bon Secours",50.744427,1.627429,-1,0,BSO:SA:CTPwimparc2,Europe/Paris,,BSO, +BSO:SP:wimplai,1,"La Plaine",50.765247,1.62096,-1,0,BSO:SA:CTPwimplai,Europe/Paris,,BSO, +BSO:SP:wimplai2,1,"La Plaine",50.765148,1.621004,-1,0,BSO:SA:CTPwimplai,Europe/Paris,,BSO, +BSO:SP:wimserg2,1,"Sergent",50.758896,1.631126,-1,0,BSO:SA:CTPwimserg2,Europe/Paris,,BSO, +BSO:SP:wimserge,1,"Sergent",50.759247,1.631858,-1,0,BSO:SA:CTPwimserg2,Europe/Paris,,BSO, +BSO:SP:wimsncf,1,"Wimereux Gare",50.764374,1.614424,-1,0,BSO:SA:CTPwimsncf,Europe/Paris,,BSO, +BSO:SP:wimsncf2,1,"Wimereux Gare",50.763996,1.614477,-1,0,BSO:SA:CTPwimsncf,Europe/Paris,,BSO, +BSO:SP:wimstad,1,"Stade",50.774136,1.612302,-1,0,BSO:SA:CTPwimstad,Europe/Paris,,BSO, +BSO:SP:wimstad2,1,"Stade",50.774014,1.612131,-1,0,BSO:SA:CTPwimstad,Europe/Paris,,BSO, +OCV:SP:16000037,1,"Gare SNCF",49.231617,2.886197,0,0,OCV:SA:CTP16000037,Europe/Paris,,OCV, +OCV:SP:16000052,1,"République",49.23755,2.887426,0,0,OCV:SA:CTP16000052,Europe/Paris,,OCV, +OCV:SP:16000053,1,"Michel Dupuy",49.235081,2.887166,0,0,OCV:SA:CTP16000053,Europe/Paris,,OCV, +OCV:SP:16000083,1,"République",49.23755,2.887426,0,0,OCV:SA:CTP16000052,Europe/Paris,,OCV, +OCV:SP:16000084,1,"Michel Dupuy",49.235072,2.887166,0,0,OCV:SA:CTP16000053,Europe/Paris,,OCV, +OCV:SP:16000085,1,"Gare SNCF",49.231617,2.886197,0,0,OCV:SA:CTP16000037,Europe/Paris,,OCV, +OCV:SP:16000086,1,"Levallois-Perret",49.225984,2.880114,0,0,OCV:SA:CTP16000086,Europe/Paris,,OCV, +OCV:SP:16000087,1,"Levallois-Perret",49.226002,2.880087,0,0,OCV:SA:CTP16000086,Europe/Paris,,OCV, +OCV:SP:16000088,1,"Hector Berlioz",49.225593,2.883101,0,0,OCV:SA:CTP16000088,Europe/Paris,,OCV, +OCV:SP:16000089,1,"Hector Berlioz",49.225593,2.883101,0,0,OCV:SA:CTP16000088,Europe/Paris,,OCV, +OCV:SP:16000090,1,"Molière",49.223097,2.884638,0,0,OCV:SA:CTP16000090,Europe/Paris,,OCV, +OCV:SP:16000091,1,"Molière",49.223269,2.884544,0,0,OCV:SA:CTP16000090,Europe/Paris,,OCV, +OCV:SP:16000092,1,"Les Brayes",49.223617,2.888882,0,0,OCV:SA:CTP16000092,Europe/Paris,,OCV, +OCV:SP:16000093,1,"Les Brayes",49.223559,2.887839,0,0,OCV:SA:CTP16000092,Europe/Paris,,OCV, +OCV:SP:16000098,1,"Centre aquatique",49.224366,2.895996,0,0,OCV:SA:CTP16000098,Europe/Paris,,OCV, +OCV:SP:16000099,1,"Centre aquatique",49.224366,2.895996,0,0,OCV:SA:CTP16000098,Europe/Paris,,OCV, +OCV:SP:16000100,1,"Henri Laroche",49.225626,2.903198,0,0,OCV:SA:CTP16000100,Europe/Paris,,OCV, +OCV:SP:16000101,1,"Henri Laroche",49.225626,2.903198,0,0,OCV:SA:CTP16000100,Europe/Paris,,OCV, +OCV:SP:16000102,1,"Parc d'Activités",49.226054,2.909636,0,0,OCV:SA:CTP16000102,Europe/Paris,,OCV, +OCV:SP:16000103,1,"Parc d'Activités",49.226054,2.909636,0,0,OCV:SA:CTP16000102,Europe/Paris,,OCV, +OCV:SP:16000106,1,"Hauts de Bouillant",49.236662,2.898887,0,0,OCV:SA:CTP16000106,Europe/Paris,,OCV, +OCV:SP:16000107,1,"Hauts de Bouillant",49.236662,2.898887,0,0,OCV:SA:CTP16000106,Europe/Paris,,OCV, +OCV:SP:16000108,1,"Hôtel de Ville",49.236219,2.891638,0,0,OCV:SA:CTP16000108,Europe/Paris,,OCV, +OCV:SP:16000109,1,"Hôtel de Ville",49.236219,2.891638,0,0,OCV:SA:CTP16000108,Europe/Paris,,OCV, +OCV:SP:16000110,1,"Stade Municipal",49.228886,2.899639,0,0,OCV:SA:CTP16000110,Europe/Paris,,OCV, +OCV:SP:16000111,1,"Stade Municipal",49.228886,2.899639,0,0,OCV:SA:CTP16000110,Europe/Paris,,OCV, +OCV:SP:16000112,1,"Pont Saint-Ladre",49.231137,2.894862,0,0,OCV:SA:CTP16000112,Europe/Paris,,OCV, +OCV:SP:16000113,1,"Pont Saint-Ladre",49.231137,2.894862,0,0,OCV:SA:CTP16000112,Europe/Paris,,OCV, +OCV:SP:16000114,1,"Parc Sainte-Agathe",49.232214,2.883322,0,0,OCV:SA:CTP16000114,Europe/Paris,,OCV, +OCV:SP:16000115,1,"Parc Sainte-Agathe",49.232213,2.883486,0,0,OCV:SA:CTP16000114,Europe/Paris,,OCV, +OCV:SP:16000116,1,"Avenue de Senlis",49.232475,2.877247,0,0,OCV:SA:CTP16000116,Europe/Paris,,OCV, +OCV:SP:16000117,1,"Avenue de Senlis",49.232475,2.877247,0,0,OCV:SA:CTP16000116,Europe/Paris,,OCV, +OCV:SP:16000118,1,"Parc de Géresme",49.236778,2.895115,0,0,OCV:SA:CTP16000118,Europe/Paris,,OCV, +OCV:SP:16000120,1,"Les Tournelles",49.236188,2.898375,0,0,OCV:SA:CTP16000120,Europe/Paris,,OCV, +OCV:SP:16000122,1,"Gare SNCF",49.231617,2.886197,0,0,OCV:SA:CTP16000037,Europe/Paris,,OCV, +OCV:SP:16000123,1,"Gare SNCF",49.231617,2.886197,0,0,OCV:SA:CTP16000037,Europe/Paris,,OCV, +OCV:SP:16000124,1,"Centre aquatique",49.224366,2.895996,0,0,OCV:SA:CTP16000098,Europe/Paris,,OCV, +OCV:SP:16000125,1,"Centre aquatique",49.224366,2.895996,0,0,OCV:SA:CTP16000098,Europe/Paris,,OCV, +ODS:SP:20200006,1,"Gros Poirier",49.364846,2.162828,0,0,ODS:SA:CTP20200006,Europe/Paris,,ODS, +ODS:SP:20200038,1,"Place",49.201945,2.119739,0,0,OLB:SA:CTP18000109,Europe/Paris,,ODS, +ODS:SP:20200040,1,"Bas",49.207011,2.122334,0,0,OLB:SA:CTP18000108,Europe/Paris,,ODS, +ODS:SP:20200042,1,"Rue du Bois",49.264166,2.16418,0,0,ODS:SA:CTP20200042,Europe/Paris,,ODS, +ODS:SP:20200043,1,"Angleterre",49.269166,2.1614,0,0,ODS:SA:CTP20200043,Europe/Paris,,ODS, +ODS:SP:20200044,1,"Octroi",49.256943,2.15974,0,0,ODS:SA:CTP20200044,Europe/Paris,,ODS, +ODS:SP:20200500,1,"Gare SNCF",49.384724,2.417523,0,0,ODT:SA:CTP21002407,Europe/Paris,,ODS, +ODS:SP:20200586,1,"Saint-Leu",49.44426,1.828426,0,0,ODS:SA:CTP20200586,Europe/Paris,,ODS, +ODS:SP:20200671,1,"Les Landrons",49.440676,1.872874,0,0,ODS:SA:CTP20200671,Europe/Paris,,ODS, +ODS:SP:20200832,1,"RN31",49.432764,2.045208,0,0,ODS:SA:CTP20200832,Europe/Paris,,ODS, +ODS:SP:20200835,1,"L'Italienne",49.424881,2.021829,0,0,ODS:SA:CTP20200835,Europe/Paris,,ODS, +ODS:SP:20200992,1,"Rue Madame",49.296112,2.160086,0,0,ODS:SA:CTP20200992,Europe/Paris,,ODS, +ODS:SP:20200995,1,"Eglise",49.288335,2.15779,0,0,ODS:SA:CTP20200995,Europe/Paris,,ODS, +ODS:SP:20201010,1,"Poste",49.448057,1.900568,0,0,ODS:SA:CTP20201010,Europe/Paris,,ODS, +ODS:SP:20201203,1,"Centre",49.277776,2.049179,0,0,ODS:SA:CTP20201203,Europe/Paris,,ODS, +ODS:SP:20201205,1,"Tumbrel",49.204726,1.996958,0,0,ODS:SA:CTP20201205,Europe/Paris,,ODS, +ODS:SP:20201212,1,"Centre",49.256575,2.110762,0,0,ODS:SA:CTP20201212,Europe/Paris,,ODS, +ODS:SP:20201213,1,"Centre",49.256611,2.110803,0,0,ODS:SA:CTP20201212,Europe/Paris,,ODS, +ODS:SP:20201215,1,"Collège du Thelle",49.231185,2.125348,0,0,OLB:SA:CTP18000021,Europe/Paris,,ODS, +ODS:SP:20201216,1,"Château",49.207316,2.053138,0,0,ODS:SA:CTP20201216,Europe/Paris,,ODS, +ODS:SP:20201230,1,"Centre",49.390556,2.026129,0,0,ODS:SA:CTP20201230,Europe/Paris,,ODS, +ODS:SP:20201241,1,"école",49.278612,1.940553,0,0,ODS:SA:CTP20201241,Europe/Paris,,ODS, +ODS:SP:20201242,1,"D115",49.290836,1.961678,0,0,ODS:SA:CTP20201242,Europe/Paris,,ODS, +ODS:SP:20201243,1,"Abribus",49.302776,1.984179,0,0,ODS:SA:CTP20201243,Europe/Paris,,ODS, +ODS:SP:20201244,1,"Les Landes",49.313887,2.005288,0,0,ODS:SA:CTP20201244,Europe/Paris,,ODS, +ODS:SP:20201245,1,"Eglise",49.318056,1.970848,0,0,ODS:SA:CTP20201245,Europe/Paris,,ODS, +ODS:SP:20201253,1,"Friancourt",49.376386,1.978069,0,0,ODS:SA:CTP20201253,Europe/Paris,,ODS, +ODS:SP:20201255,1,"Rue de Saint Léger",49.375277,2.001399,0,0,ODS:SA:CTP20201255,Europe/Paris,,ODS, +ODS:SP:20201257,1,"Place des Tilleuls",49.343886,2.018899,0,0,ODS:SA:CTP20201257,Europe/Paris,,ODS, +ODS:SP:20201259,1,"Grumesnil",49.368056,2.026399,0,0,ODS:SA:CTP20201259,Europe/Paris,,ODS, +ODS:SP:20201263,1,"Aristide Briand",49.426117,2.030009,0,0,ODS:SA:CTP20201263,Europe/Paris,,ODS, +ODS:SP:20201266,1,"Sorcy-Centre",49.435837,1.982788,0,0,ODS:SA:CTP20201266,Europe/Paris,,ODS, +ODS:SP:20201267,1,"Le Becquet-RN31",49.418804,1.993914,0,0,ODS:SA:CTP20310725,Europe/Paris,,ODS, +ODS:SP:20201269,1,"Le Becquet Calvaire",49.423252,2.004129,0,0,ODS:SA:CTP20201269,Europe/Paris,,ODS, +ODS:SP:20201270,1,"Centre",49.428336,2.006399,0,0,OIS:SA:CTP3014515,Europe/Paris,,ODS, +ODS:SP:20201271,1,"Mare à Foulon",49.434447,2.010568,0,0,ODS:SA:CTP20201271,Europe/Paris,,ODS, +ODS:SP:20201272,1,"Pellerin-Université",49.429694,2.090468,0,0,OIS:SA:CTP3014473,Europe/Paris,,ODS, +ODS:SP:20201273,1,"Champs des Taillis",49.426117,1.975848,0,0,ODS:SA:CTP20201273,Europe/Paris,,ODS, +ODS:SP:20201275,1,"Centre",49.486116,1.834737,0,0,ODS:SA:CTP20201275,Europe/Paris,,ODS, +ODS:SP:20201276,1,"D1",49.480556,1.848347,0,0,ODS:SA:CTP20201276,Europe/Paris,,ODS, +ODS:SP:20201277,1,"Centre",49.475557,1.868067,0,0,ODS:SA:CTP20201277,Europe/Paris,,ODS, +ODS:SP:20201281,1,"La Rutoire",49.457777,1.897518,0,0,ODS:SA:CTP20201281,Europe/Paris,,ODS, +ODS:SP:20201286,1,"Rue de l'Eglise",49.465924,1.898583,0,0,ODS:SA:CTP20201286,Europe/Paris,,ODS, +ODS:SP:20201287,1,"La Place",49.483056,1.915018,0,0,ODS:SA:CTP20201287,Europe/Paris,,ODS, +ODS:SP:20201288,1,"Lhéraule",49.486386,1.930017,0,0,ODS:SA:CTP20201288,Europe/Paris,,ODS, +ODS:SP:20201290,1,"Eglise",49.465007,1.965288,0,0,OIS:SA:CTP3000728,Europe/Paris,,ODS, +ODS:SP:20201295,1,"Sorcy-Carrefour",49.435556,1.978898,0,0,ODS:SA:CTP20201295,Europe/Paris,,ODS, +ODS:SP:20201296,1,"Centre",49.445007,1.983068,0,0,ODS:SA:CTP20201296,Europe/Paris,,ODS, +ODS:SP:20201298,1,"Centre",49.472775,1.979451,0,0,ODS:SA:CTP20201298,Europe/Paris,,ODS, +ODS:SP:20201299,1,"Place",49.446115,2.004725,0,0,ODS:SA:CTP20201299,Europe/Paris,,ODS, +ODS:SP:20201300,1,"Rome",49.457501,2.003328,0,0,ODS:SA:CTP20201300,Europe/Paris,,ODS, +ODS:SP:20201304,1,"Lotissement",49.461387,2.049738,0,0,OIS:SA:CTP3014393,Europe/Paris,,ODS, +ODS:SP:20201305,1,"Passage à Niveau",49.471667,2.035849,0,0,ODS:SA:CTP20201305,Europe/Paris,,ODS, +ODS:SP:20201306,1,"Clos Saint Maurice",49.48237,2.057448,0,0,ODS:SA:CTP20201306,Europe/Paris,,ODS, +ODS:SP:20201308,1,"Plouy St Lucien",49.470722,2.082876,0,0,OIS:SA:CTP3014425,Europe/Paris,,ODS, +ODS:SP:20201309,1,"Rue de Villers Saint Lucien",49.455617,2.081214,0,0,ODS:SA:CTP20201309,Europe/Paris,,ODS, +ODS:SP:20201310,1,"Abribus",49.479778,2.044926,0,0,ODS:SA:CTP20203450,Europe/Paris,,ODS, +ODS:SP:20201324,1,"Place",49.679583,1.99166,0,0,ODS:SA:CTP20310672,Europe/Paris,,ODS, +ODS:SP:20201325,1,"Rd 56 - Rue du moulin",49.675884,1.991962,0,0,ODS:SA:CTP20201325,Europe/Paris,,ODS, +ODS:SP:20201331,1,"Mairie (La Chaussé)",49.600154,1.769968,0,0,ODS:SA:CTP20201331,Europe/Paris,,ODS, +ODS:SP:20201332,1,"Carrefour",49.647123,1.845145,0,0,ODS:SA:CTP20201332,Europe/Paris,,ODS, +ODS:SP:20201356,1,"Eglise Saint Lucien",49.235207,2.13403,0,0,ODS:SA:CTP20201356,Europe/Paris,,ODS, +ODS:SP:20201357,1,"Gare SNCF",49.232337,2.131873,0,0,ODS:SA:CTP20201357,Europe/Paris,,ODS, +ODS:SP:20201408,1,"RD 1001 Sud",49.630007,2.29307,0,0,ODS:SA:CTP20201408,Europe/Paris,,ODS, +ODS:SP:20201423,1,"Mesnil-Saint-Martin",49.182505,2.23446,0,0,ODT:SA:CTP21100879,Europe/Paris,,ODS, +ODS:SP:20201524,1,"caisse d'épargne",49.329284,2.201161,0,0,ODS:SA:CTP20201524,Europe/Paris,,ODS, +ODS:SP:20201548,1,"RN 31 Le Pont qui Penche",49.418617,1.946678,0,0,ODS:SA:CTP20201548,Europe/Paris,,ODS, +ODS:SP:20201640,1,"Roye",49.354149,2.177469,0,0,ODS:SA:CTP20201640,Europe/Paris,,ODS, +ODS:SP:20201814,1,"Les Fontainettes - RD 1031",49.436734,1.899282,0,0,ODS:SA:CTP20201814,Europe/Paris,,ODS, +ODS:SP:20201827,1,"Le Petit Fercourt",49.293614,2.18279,0,0,ODS:SA:CTP20201827,Europe/Paris,,ODS, +ODS:SP:20201844,1,"Douce Rue",49.451583,1.766667,0,0,ODS:SA:CTP20201844,Europe/Paris,,ODS, +ODS:SP:20201845,1,"27, rue Douce Rue",49.44682,1.773939,0,0,ODS:SA:CTP20201845,Europe/Paris,,ODS, +ODS:SP:20201851,1,"Cité Colozier",49.448616,1.799736,0,0,ODS:SA:CTP20201851,Europe/Paris,,ODS, +ODS:SP:20201856,1,"Sainte Denise",49.444721,1.818612,0,0,ODS:SA:CTP20201856,Europe/Paris,,ODS, +ODS:SP:20201857,1,"Guillenfosse",49.445798,1.808103,0,0,ODS:SA:CTP20201857,Europe/Paris,,ODS, +ODS:SP:20201859,1,"Orsimont",49.453616,1.788626,0,0,ODS:SA:CTP20201859,Europe/Paris,,ODS, +ODS:SP:20201860,1,"Rue du Bray",49.448055,1.785016,0,0,ODS:SA:CTP20201860,Europe/Paris,,ODS, +ODS:SP:20201861,1,"Centre",49.443054,1.781127,0,0,ODS:SA:CTP20201861,Europe/Paris,,ODS, +ODS:SP:20201942,1,"L'Avelon",49.418596,2.006514,0,0,ODS:SA:CTP20201942,Europe/Paris,,ODS, +ODS:SP:20201943,1,"Le Becquet Ecole",49.422775,1.991958,0,0,OIS:SA:CTP3014516,Europe/Paris,,ODS, +ODS:SP:20201944,1,"Parc",49.420554,1.982519,0,0,ODS:SA:CTP20201944,Europe/Paris,,ODS, +ODS:SP:20202307,1,"RD 1001",49.39031,2.143324,0,0,ODS:SA:CTP20202307,Europe/Paris,,ODS, +ODS:SP:20202315,1,"Lycée Paul LANGEVIN",49.415218,2.106372,0,0,ODS:SA:CTP20202315,Europe/Paris,,ODS, +ODS:SP:20202316,1,"LP Lavoisier",49.228626,2.125068,0,0,ODS:SA:CTP20202316,Europe/Paris,,ODS, +ODS:SP:20202359,1,"Caserne des Pompiers",49.218905,2.129388,0,0,ODS:SA:CTP20202359,Europe/Paris,,ODS, +ODS:SP:20202360,1,"Faurecia",49.219048,2.130118,0,0,ODS:SA:CTP20202360,Europe/Paris,,ODS, +ODS:SP:20202364,1,"Cimetière",49.408715,2.111426,0,0,ODS:SA:CTP20202364,Europe/Paris,,ODS, +ODS:SP:20202365,1,"Cimetière",49.408693,2.11189,0,0,ODS:SA:CTP20202364,Europe/Paris,,ODS, +ODS:SP:20202366,1,"Gare Routière",49.42702,2.084344,0,0,ORL:SA:CTP27000094,Europe/Paris,,ODS, +ODS:SP:20202367,1,"Gare SNCF",49.42675,2.087136,0,0,OIS:SA:CTP3014170,Europe/Paris,,ODS, +ODS:SP:20202391,1,"CFA - Maison du Batiment",49.386594,2.395261,0,0,ODV:SA:CTP22402391,Europe/Paris,,ODS, +ODS:SP:20202396,1,"Gare SNCF",49.421877,2.824404,0,0,ODT:SA:CTP21010445,Europe/Paris,,ODS, +ODS:SP:20202397,1,"Ile de France",49.424233,2.084408,0,0,ODS:SA:CTP20202397,Europe/Paris,,ODS, +ODS:SP:20202398,1,"Parking Calvin",49.432705,2.07865,0,0,ODS:SA:CTP20202398,Europe/Paris,,ODS, +ODS:SP:20203001,1,"collège Saint Hildevert",49.480601,1.723647,0,0,ODS:SA:CTP20203001,Europe/Paris,,ODS, +ODS:SP:20203002,1,"Gare",49.481396,1.737825,0,0,ODS:SA:CTP20203002,Europe/Paris,,ODS, +ODS:SP:20203003,1,"Mare aux Canard",49.476503,1.742512,0,0,ODS:SA:CTP20203003,Europe/Paris,,ODS, +ODS:SP:20203011,1,"D 927",49.18004,2.124755,0,0,ODS:SA:CTP20203011,Europe/Paris,,ODS, +ODS:SP:20203012,1,"Préfecture RER",49.037357,2.07921,0,0,ORM:SA:CTP28000040,Europe/Paris,,ODS, +ODS:SP:20203013,1,"Université",49.04144,2.073561,0,0,ODS:SA:CTP20203013,Europe/Paris,,ODS, +ODS:SP:20203014,1,"Centre",49.1378,2.113121,0,0,ODS:SA:CTP20203014,Europe/Paris,,ODS, +ODS:SP:20203019,1,"Porte de Bresles",49.433857,2.09373,0,0,ODS:SA:CTP20203019,Europe/Paris,,ODS, +ODS:SP:20203020,1,"Stade",49.430513,2.114346,0,0,ODS:SA:CTP20203020,Europe/Paris,,ODS, +ODS:SP:20203023,1,"Collège Jeanne D'Arc",49.387959,2.38718,0,0,ODS:SA:CTP20203023,Europe/Paris,,ODS, +ODS:SP:20203024,1,"Lycée CASSINI",49.384328,2.407239,0,0,ODT:SA:CTP21000499,Europe/Paris,,ODS, +ODS:SP:20203025,1,"Centre",49.418338,2.364311,0,0,ODT:SA:CTP21010478,Europe/Paris,,ODS, +ODS:SP:20203026,1,"Guidon",49.416144,2.37052,0,0,ODT:SA:CTP21010479,Europe/Paris,,ODS, +ODS:SP:20203027,1,"Place",49.420063,2.360415,0,0,ODT:SA:CTP21010477,Europe/Paris,,ODS, +ODS:SP:20203028,1,"Grande rue",49.402775,2.326132,0,0,ODS:SA:CTP20203028,Europe/Paris,,ODS, +ODS:SP:20203029,1,"Plois",49.406114,2.319455,0,0,ODS:SA:CTP20203029,Europe/Paris,,ODS, +ODS:SP:20203030,1,"Général LECLERC",49.403615,2.325852,0,0,ODS:SA:CTP20203030,Europe/Paris,,ODS, +ODS:SP:20203031,1,"Monument",49.410275,2.293901,0,0,ODS:SA:CTP20203031,Europe/Paris,,ODS, +ODS:SP:20203032,1,"RN31",49.410006,2.300851,0,0,ODS:SA:CTP20203032,Europe/Paris,,ODS, +ODS:SP:20203037,1,"Ronquerolles Centre",49.400274,2.382792,0,0,ODT:SA:CTP21010481,Europe/Paris,,ODS, +ODS:SP:20203038,1,"Centre",49.418887,2.157239,0,0,OIS:SA:CTP3014496,Europe/Paris,,ODS, +ODS:SP:20203039,1,"Le Moulin",49.420276,2.150849,0,0,ODS:SA:CTP20203039,Europe/Paris,,ODS, +ODS:SP:20203040,1,"Wagicourt",49.425106,2.135067,0,0,ODS:SA:CTP20203040,Europe/Paris,,ODS, +ODS:SP:20203041,1,"Clos Trupet",49.387773,2.21613,0,0,ODS:SA:CTP20203041,Europe/Paris,,ODS, +ODS:SP:20203044,1,"Hôtel de Ville",49.409472,2.252382,0,0,ODS:SA:CTP20203044,Europe/Paris,,ODS, +ODS:SP:20203053,1,"Eglise",49.458619,2.326561,0,0,ODT:SA:CTP21100138,Europe/Paris,,ODS, +ODS:SP:20203062,1,"Eglise abri",49.404809,2.112544,0,0,OIS:SA:CTP3014145,Europe/Paris,,ODS, +ODS:SP:20203066,1,"Boulevard A. d'Inville",49.433559,2.078783,0,0,OIS:SA:CTP3014269,Europe/Paris,,ODS, +ODS:SP:20203105,1,"Mairie",49.263275,2.070126,0,0,ODS:SA:CTP20203105,Europe/Paris,,ODS, +ODS:SP:20203108,1,"Poste",49.207529,2.052039,0,0,ODS:SA:CTP20203108,Europe/Paris,,ODS, +ODS:SP:20203110,1,"Centre",49.26298,2.07916,0,0,OLB:SA:CTP18000102,Europe/Paris,,ODS, +ODS:SP:20203112,1,"Intermarché",49.228455,2.131669,0,0,ODS:SA:CTP20203112,Europe/Paris,,ODS, +ODS:SP:20203113,1,"ecole bellonte",49.232093,2.131202,0,0,ODS:SA:CTP20203113,Europe/Paris,,ODS, +ODS:SP:20203114,1,"Lycée Condorcet",49.235735,2.14403,0,0,ODS:SA:CTP20203114,Europe/Paris,,ODS, +ODS:SP:20203116,1,"Centre",49.237036,2.07623,0,0,ODS:SA:CTP20203699,Europe/Paris,,ODS, +ODS:SP:20203121,1,"RD35",49.265836,1.991399,0,0,ODS:SA:CTP20203121,Europe/Paris,,ODS, +ODS:SP:20203125,1,"La longue rue Carrefour",49.309957,2.022122,0,0,ODS:SA:CTP20203125,Europe/Paris,,ODS, +ODS:SP:20203126,1,"Les Marettes Bas",49.316391,2.040552,0,0,ODS:SA:CTP20203126,Europe/Paris,,ODS, +ODS:SP:20203127,1,"Ecole",49.303336,2.053899,0,0,ODS:SA:CTP20203127,Europe/Paris,,ODS, +ODS:SP:20203128,1,"Ecole",49.30166,2.08916,0,0,ODT:SA:CTP21100886,Europe/Paris,,ODS, +ODS:SP:20203215,1,"Parc",49.354726,1.772502,0,0,ODS:SA:CTP20203215,Europe/Paris,,ODS, +ODS:SP:20203217,1,"Les Pommiers",49.388057,1.780567,0,0,ODS:SA:CTP20203217,Europe/Paris,,ODS, +ODS:SP:20203218,1,"Mairie",49.391946,1.780567,0,0,ODS:SA:CTP20203218,Europe/Paris,,ODS, +ODS:SP:20203221,1,"Grande Rue",49.419166,1.880568,0,0,ODS:SA:CTP20203221,Europe/Paris,,ODS, +ODS:SP:20203222,1,"Rue de la vallée",49.419447,1.917518,0,0,ODS:SA:CTP20203222,Europe/Paris,,ODS, +ODS:SP:20203223,1,"Rue de la Montagne",49.419166,1.926128,0,0,ODS:SA:CTP20203223,Europe/Paris,,ODS, +ODS:SP:20203225,1,"Centre",49.426116,2.037789,0,0,ODS:SA:CTP20203225,Europe/Paris,,ODS, +ODS:SP:20203226,1,"Centre Commercial",49.432675,2.045718,0,0,OIS:SA:CTP3014172,Europe/Paris,,ODS, +ODS:SP:20203227,1,"St Just Des Marais Poste",49.433968,2.06185,0,0,ODS:SA:CTP20203227,Europe/Paris,,ODS, +ODS:SP:20203288,1,"Jean RACINE",49.653588,2.57735,0,0,ODS:SA:CTP20203288,Europe/Paris,,ODS, +ODS:SP:20203289,1,"Gare",49.641561,2.563123,0,0,ORL:SA:CTP27000001,Europe/Paris,,ODS, +ODS:SP:20203292,1,"Centre",49.61315,2.452418,0,0,ODV:SA:CTP22510575,Europe/Paris,,ODS, +ODS:SP:20203293,1,"Centre",49.627778,2.455293,0,0,ODV:SA:CTP22510130,Europe/Paris,,ODS, +ODS:SP:20203295,1,"Centre",49.648105,2.418748,0,0,ODS:SA:CTP20203295,Europe/Paris,,ODS, +ODS:SP:20203299,1,"Roland Mariage",49.604944,2.379308,0,0,ODS:SA:CTP20203299,Europe/Paris,,ODS, +ODS:SP:20203301,1,"Ansauvillers",49.564723,2.386662,0,0,ODV:SA:CTP22510025,Europe/Paris,,ODS, +ODS:SP:20203302,1,"Centre",49.590962,2.413504,0,0,ODS:SA:CTP20203302,Europe/Paris,,ODS, +ODS:SP:20203303,1,"église",49.591718,2.394107,0,0,ODS:SA:CTP20203303,Europe/Paris,,ODS, +ODS:SP:20203308,1,"MONUMENT AUX MORTS",49.648229,2.358873,0,0,ODV:SA:CTP22403308,Europe/Paris,,ODS, +ODS:SP:20203315,1,"Centre",49.632453,2.29464,0,0,ODS:SA:CTP20203315,Europe/Paris,,ODS, +ODS:SP:20203317,1,"Rd 1001",49.64945,2.27057,0,0,ODS:SA:CTP20203317,Europe/Paris,,ODS, +ODS:SP:20203320,1,"Mare",49.677428,2.224091,0,0,ODS:SA:CTP20203320,Europe/Paris,,ODS, +ODS:SP:20203321,1,"Carrefour",49.643339,2.238629,0,0,ODS:SA:CTP20203321,Europe/Paris,,ODS, +ODS:SP:20203357,1,"Isaab",49.45973,2.06833,0,0,ODS:SA:CTP20203357,Europe/Paris,,ODS, +ODS:SP:20203358,1,"Plouy Saint Lucien",49.470722,2.082876,0,0,OIS:SA:CTP3014425,Europe/Paris,,ODS, +ODS:SP:20203360,1,"Guehengnies",49.509218,2.070566,0,0,ODS:SA:CTP20203360,Europe/Paris,,ODS, +ODS:SP:20203361,1,"Sauqueuse Saint-Lucien",49.519287,2.066472,0,0,ODS:SA:CTP20203361,Europe/Paris,,ODS, +ODS:SP:20203366,1,"Rd 901 - Sud",49.530285,2.003488,0,0,ODS:SA:CTP20203366,Europe/Paris,,ODS, +ODS:SP:20203368,1,"Mairie - Ecole",49.546666,2.028068,0,0,ODS:SA:CTP20203368,Europe/Paris,,ODS, +ODS:SP:20203370,1,"Eglise",49.556117,2.057518,0,0,ODS:SA:CTP20203370,Europe/Paris,,ODS, +ODS:SP:20203373,1,"moulin des forges",49.690008,2.170569,0,0,ODS:SA:CTP20203373,Europe/Paris,,ODS, +ODS:SP:20203374,1,"Ribeauvillé mare",49.560199,2.021822,0,0,ODS:SA:CTP20203374,Europe/Paris,,ODS, +ODS:SP:20203375,1,"Centre",49.574167,2.008897,0,0,ODS:SA:CTP20203375,Europe/Paris,,ODS, +ODS:SP:20203376,1,"Abribus",49.583576,2.010834,0,0,ODS:SA:CTP20203376,Europe/Paris,,ODS, +ODS:SP:20203377,1,"Centre",49.598336,1.995288,0,0,ODS:SA:CTP20203377,Europe/Paris,,ODS, +ODS:SP:20203378,1,"Centre",49.608618,1.995287,0,0,ODS:SA:CTP20203378,Europe/Paris,,ODS, +ODS:SP:20203380,1,"Mare",49.627275,2.03374,0,0,ODS:SA:CTP20203380,Europe/Paris,,ODS, +ODS:SP:20203383,1,"Rue léger",49.650008,2.048347,0,0,ODS:SA:CTP20203383,Europe/Paris,,ODS, +ODS:SP:20203384,1,"Rieux",49.644161,2.01944,0,0,ODS:SA:CTP20203384,Europe/Paris,,ODS, +ODS:SP:20203391,1,"Eglise",49.668149,2.056826,0,0,ODS:SA:CTP20203391,Europe/Paris,,ODS, +ODS:SP:20203393,1,"Eglise",49.680838,2.091678,0,0,ODS:SA:CTP20203393,Europe/Paris,,ODS, +ODS:SP:20203402,1,"Collège Pierre Mendès-France",49.230965,2.140101,0,0,ODS:SA:CTP20203402,Europe/Paris,,ODS, +ODS:SP:20203405,1,"Eglise",49.201075,2.270468,0,0,ODS:SA:CTP20213644,Europe/Paris,,ODS, +ODS:SP:20203408,1,"Hôtel de Ville",49.649448,1.731125,0,0,ODS:SA:CTP20203463,Europe/Paris,,ODS, +ODS:SP:20203412,1,"Stade",49.595277,1.740565,0,0,ODS:SA:CTP20203412,Europe/Paris,,ODS, +ODS:SP:20203413,1,"Rue principale",49.600837,1.716955,0,0,ODS:SA:CTP20203413,Europe/Paris,,ODS, +ODS:SP:20203415,1,"Hericourt sur Thérain",49.580007,1.757235,0,0,ODS:SA:CTP20203415,Europe/Paris,,ODS, +ODS:SP:20203416,1,"D133",49.568337,1.769456,0,0,ODS:SA:CTP20203416,Europe/Paris,,ODS, +ODS:SP:20203417,1,"Centre",49.558336,1.783625,0,0,ODS:SA:CTP20203417,Europe/Paris,,ODS, +ODS:SP:20203418,1,"Eglise",49.552227,1.797785,0,0,ODS:SA:CTP20203418,Europe/Paris,,ODS, +ODS:SP:20203421,1,"Mal Boufflets",49.547226,1.855566,0,0,ODS:SA:CTP20203421,Europe/Paris,,ODS, +ODS:SP:20203426,1,"Carrefour",49.532507,1.841676,0,0,ODS:SA:CTP20203426,Europe/Paris,,ODS, +ODS:SP:20203428,1,"Carrefour",49.527776,1.852236,0,0,ODS:SA:CTP20203428,Europe/Paris,,ODS, +ODS:SP:20203429,1,"Rue Manoise",49.517507,1.868627,0,0,ODS:SA:CTP20203429,Europe/Paris,,ODS, +ODS:SP:20203430,1,"Rue des Saules",49.514726,1.873067,0,0,ODS:SA:CTP20203430,Europe/Paris,,ODS, +ODS:SP:20203431,1,"Centre",49.512777,1.878347,0,0,ODS:SA:CTP20203431,Europe/Paris,,ODS, +ODS:SP:20203432,1,"Rue Rouge",49.504167,1.886127,0,0,ODS:SA:CTP20203432,Europe/Paris,,ODS, +ODS:SP:20203436,1,"Abribus R. de la Vallée",49.522772,1.898261,0,0,ODS:SA:CTP20203436,Europe/Paris,,ODS, +ODS:SP:20203439,1,"Mairie",49.520277,1.929737,0,0,ODS:SA:CTP20203439,Europe/Paris,,ODS, +ODS:SP:20203442,1,"Houssoye le Farcy",49.488054,2.069449,0,0,ODS:SA:CTP20203442,Europe/Paris,,ODS, +ODS:SP:20203443,1,"Gare",49.504866,1.989175,0,0,ODS:SA:CTP20203443,Europe/Paris,,ODS, +ODS:SP:20203444,1,"Mairie",49.501387,1.997788,0,0,ODS:SA:CTP20203444,Europe/Paris,,ODS, +ODS:SP:20203450,1,"Abribus",49.479778,2.044926,0,0,ODS:SA:CTP20203450,Europe/Paris,,ODS, +ODS:SP:20203455,1,"Centre",49.591117,1.743345,0,0,ODS:SA:CTP20203455,Europe/Paris,,ODS, +ODS:SP:20203457,1,"Brière",49.428334,2.088891,0,0,ORL:SA:CTP27000098,Europe/Paris,,ODS, +ODS:SP:20203458,1,"Collège Georges Sand",49.449966,2.08519,0,0,ODS:SA:CTP20203458,Europe/Paris,,ODS, +ODS:SP:20203459,1,"Rue de l'église",49.510006,1.965847,0,0,ODS:SA:CTP20203459,Europe/Paris,,ODS, +ODS:SP:20203460,1,"Choqueuse RD 930",49.561385,1.908327,0,0,ODS:SA:CTP20203460,Europe/Paris,,ODS, +ODS:SP:20203462,1,"Place",49.593272,1.739717,0,0,ODS:SA:CTP20203462,Europe/Paris,,ODS, +ODS:SP:20203463,1,"Hôtel de Ville",49.649441,1.731109,0,0,ODS:SA:CTP20203463,Europe/Paris,,ODS, +ODS:SP:20203470,1,"Rue de Fay",49.604432,1.828609,0,0,ODS:SA:CTP20203470,Europe/Paris,,ODS, +ODS:SP:20203473,1,"Rue de l'eglise",49.603335,1.892511,0,0,ODS:SA:CTP20203473,Europe/Paris,,ODS, +ODS:SP:20203475,1,"La fourche",49.576661,1.876661,0,0,ODS:SA:CTP20203475,Europe/Paris,,ODS, +ODS:SP:20203476,1,"Centre",49.564166,1.896126,0,0,ODS:SA:CTP20203476,Europe/Paris,,ODS, +ODS:SP:20203478,1,"Rue de Crillon",49.538328,1.962154,0,0,ODS:SA:CTP20203478,Europe/Paris,,ODS, +ODS:SP:20203479,1,"le belloy",49.531865,1.990409,0,0,ODS:SA:CTP20203479,Europe/Paris,,ODS, +ODS:SP:20203480,1,"Rue De Villers St Lucien",49.455612,2.081195,0,0,ODS:SA:CTP20203480,Europe/Paris,,ODS, +ODS:SP:20203481,1,"Franc Marché départ",49.436181,2.086759,0,0,ODS:SA:CTP20203481,Europe/Paris,,ODS, +ODS:SP:20203487,1,"Rue Patis Manon",49.666118,1.810015,0,0,ODS:SA:CTP20203487,Europe/Paris,,ODS, +ODS:SP:20203489,1,"Route Principale",49.659841,1.828102,0,0,ODS:SA:CTP20203489,Europe/Paris,,ODS, +ODS:SP:20203490,1,"Cité des Acacias",49.651949,1.835001,0,0,ODS:SA:CTP20203490,Europe/Paris,,ODS, +ODS:SP:20203497,1,"Rue de la Vallée",49.614999,1.916945,0,0,ODS:SA:CTP20203497,Europe/Paris,,ODS, +ODS:SP:20203499,1,"Lannoy",49.589816,1.912137,0,0,ODS:SA:CTP20203499,Europe/Paris,,ODS, +ODS:SP:20203501,1,"RD901",49.556666,1.978891,0,0,ODS:SA:CTP20203501,Europe/Paris,,ODS, +ODS:SP:20203509,1,"Ecole",49.711948,1.807515,0,0,ODS:SA:CTP20203509,Europe/Paris,,ODS, +ODS:SP:20203511,1,"Salle Polyvalente",49.68591,1.870004,0,0,ODS:SA:CTP20203511,Europe/Paris,,ODS, +ODS:SP:20203516,1,"Rd901",49.635008,1.946127,0,0,ODS:SA:CTP20203516,Europe/Paris,,ODS, +ODS:SP:20203520,1,"Rue de Grez",49.616116,1.962517,0,0,ODS:SA:CTP20203520,Europe/Paris,,ODS, +ODS:SP:20203521,1,"Centre",49.596947,1.952237,0,0,ODS:SA:CTP20203521,Europe/Paris,,ODS, +ODS:SP:20203522,1,"Lycée Corot",49.420315,2.078151,0,0,ODS:SA:CTP20203522,Europe/Paris,,ODS, +ODS:SP:20203523,1,"Lycée Felix Faure",49.434954,2.088584,0,0,ORL:SA:CTP27000099,Europe/Paris,,ODS, +ODS:SP:20203528,1,"Centre-MONUMENT AUX MORTS",49.338054,2.301401,0,0,ODT:SA:CTP21100186,Europe/Paris,,ODS, +ODS:SP:20203529,1,"Butteaux",49.353335,2.310021,0,0,ODT:SA:CTP21100187,Europe/Paris,,ODS, +ODS:SP:20203530,1,"Rue d'en Bas",49.355275,2.315852,0,0,ODT:SA:CTP21100567,Europe/Paris,,ODS, +ODS:SP:20203531,1,"Centre",49.347776,2.291131,0,0,ODS:SA:CTP20203531,Europe/Paris,,ODS, +ODS:SP:20203532,1,"Centre",49.380836,2.1914,0,0,ODS:SA:CTP20203532,Europe/Paris,,ODS, +ODS:SP:20203537,1,"Rue de Maupeou",49.351642,2.224782,0,0,ODS:SA:CTP20203537,Europe/Paris,,ODS, +ODS:SP:20203538,1,"Fresnoy",49.360554,2.221131,0,0,ODT:SA:CTP21101011,Europe/Paris,,ODS, +ODS:SP:20203543,1,"Froidmont Mont César",49.382409,2.233934,0,0,ODS:SA:CTP20203543,Europe/Paris,,ODS, +ODS:SP:20203545,1,"Clos Trupet",49.388115,2.216129,0,0,ODS:SA:CTP20203041,Europe/Paris,,ODS, +ODS:SP:20203547,1,"Eglise",49.400555,2.1814,0,0,ODS:SA:CTP20203547,Europe/Paris,,ODS, +ODS:SP:20203548,1,"Poste",49.403616,2.178349,0,0,ODS:SA:CTP20203548,Europe/Paris,,ODS, +ODS:SP:20203549,1,"Bourguillemont",49.414726,2.162519,0,0,ODS:SA:CTP20203549,Europe/Paris,,ODS, +ODS:SP:20203551,1,"Rue du Gravier",49.402507,2.18696,0,0,ODS:SA:CTP20203551,Europe/Paris,,ODS, +ODS:SP:20203553,1,"27, Rue de la Gare",49.399726,2.17307,0,0,ODS:SA:CTP20203553,Europe/Paris,,ODS, +ODS:SP:20203556,1,"Eglise",49.390451,2.141259,0,0,ODS:SA:CTP20203556,Europe/Paris,,ODS, +ODS:SP:20203557,1,"Abri RN1",49.390508,2.143185,0,0,ODS:SA:CTP20203557,Europe/Paris,,ODS, +ODS:SP:20203559,1,"Bongenoult",49.399727,2.097239,0,0,OIS:SA:CTP3014155,Europe/Paris,,ODS, +ODS:SP:20203560,1,"Commessy",49.401387,2.104179,0,0,ODS:SA:CTP20203560,Europe/Paris,,ODS, +ODS:SP:20203563,1,"Pellerin-Université",49.429788,2.090555,0,0,OIS:SA:CTP3014473,Europe/Paris,,ODS, +ODS:SP:20203567,1,"Crevecoeur - Carrefour",49.279441,2.145,0,0,ODS:SA:CTP20203567,Europe/Paris,,ODS, +ODS:SP:20203573,1,"Parking Orsol",49.260566,2.164955,0,0,ODT:SA:CTP21100900,Europe/Paris,,ODS, +ODS:SP:20203574,1,"Cimetière",49.204927,2.128034,0,0,ODS:SA:CTP20203574,Europe/Paris,,ODS, +ODS:SP:20203582,1,"Bout d'en Haut",49.214898,2.179369,0,0,ODS:SA:CTP20203582,Europe/Paris,,ODS, +ODS:SP:20203583,1,"Jardin",49.212866,2.185108,0,0,ODS:SA:CTP20203583,Europe/Paris,,ODS, +ODS:SP:20203589,1,"Centre",49.210517,2.189243,0,0,ODS:SA:CTP20203589,Europe/Paris,,ODS, +ODS:SP:20203591,1,"Chateau",49.280119,1.772657,0,0,ODS:SA:CTP20203591,Europe/Paris,,ODS, +ODS:SP:20203593,1,"Centre Commercial",49.288225,1.807596,0,0,ODS:SA:CTP20203593,Europe/Paris,,ODS, +ODS:SP:20203594,1,"Centre",49.284167,1.822238,0,0,ORM:SA:CTP28000024,Europe/Paris,,ODS, +ODS:SP:20203595,1,"Rue du Jard",49.266666,1.873628,0,0,ODS:SA:CTP20203595,Europe/Paris,,ODS, +ODS:SP:20203596,1,"Le Grand Cerf",49.264726,1.882518,0,0,ORM:SA:CTP28000026,Europe/Paris,,ODS, +ODS:SP:20203597,1,"Rue Roger BLONDEAU",49.266387,1.890019,0,0,ODS:SA:CTP20203597,Europe/Paris,,ODS, +ODS:SP:20203599,1,"La Neuville sur Auneuil entrée",49.362775,1.976959,0,0,ODS:SA:CTP20203599,Europe/Paris,,ODS, +ODS:SP:20203600,1,"Passage à niveau",49.371768,1.990817,0,0,ODS:SA:CTP20203600,Europe/Paris,,ODS, +ODS:SP:20203601,1,"Z.I. de Sinancourt",49.383055,1.999458,0,0,OIS:SA:CTP3014436,Europe/Paris,,ODS, +ODS:SP:20203602,1,"D981",49.394727,2.017519,0,0,ODS:SA:CTP20203602,Europe/Paris,,ODS, +ODS:SP:20203603,1,"D981",49.413834,2.044146,0,0,OIS:SA:CTP3014151,Europe/Paris,,ODS, +ODS:SP:20203604,1,"D981",49.422777,2.042519,0,0,ODS:SA:CTP20203604,Europe/Paris,,ODS, +ODS:SP:20203614,1,"Pommereux",49.324725,1.888348,0,0,ODS:SA:CTP20203614,Europe/Paris,,ODS, +ODS:SP:20203622,1,"Place",49.379166,1.924178,0,0,ODS:SA:CTP20203622,Europe/Paris,,ODS, +ODS:SP:20203624,1,"Centre",49.388056,1.972238,0,0,ODS:SA:CTP20203624,Europe/Paris,,ODS, +ODS:SP:20203626,1,"Bout Riflé",49.410007,2.038629,0,0,ODS:SA:CTP20203626,Europe/Paris,,ODS, +ODS:SP:20203627,1,"Place",49.414053,2.041763,0,0,ODS:SA:CTP20203627,Europe/Paris,,ODS, +ODS:SP:20203628,1,"gare SNCF",49.481389,1.737808,0,0,ODS:SA:CTP20203002,Europe/Paris,,ODS, +ODS:SP:20203631,1,"Eglise",49.426184,1.825727,0,0,ODS:SA:CTP20203631,Europe/Paris,,ODS, +ODS:SP:20203634,1,"Centre",49.413886,1.782517,0,0,ODS:SA:CTP20203634,Europe/Paris,,ODS, +ODS:SP:20203639,1,"Rd 109",49.420007,1.865018,0,0,ODS:SA:CTP20203639,Europe/Paris,,ODS, +ODS:SP:20203640,1,"Ecole",49.421085,1.87794,0,0,ODS:SA:CTP20203640,Europe/Paris,,ODS, +ODS:SP:20203642,1,"Lycée J. Hachette",49.435601,2.082467,0,0,OIS:SA:CTP3014250,Europe/Paris,,ODS, +ODS:SP:20203678,1,"Heulecourt Centre",49.242311,1.99129,0,0,ODS:SA:CTP20203678,Europe/Paris,,ODS, +ODS:SP:20203679,1,"Blequencourt",49.253042,2.011929,0,0,ODS:SA:CTP20203679,Europe/Paris,,ODS, +ODS:SP:20203686,1,"Rue de Gournay",49.25611,2.11055,0,0,OLB:SA:CTP18000101,Europe/Paris,,ODS, +ODS:SP:20203687,1,"Immaculée Conception",49.244394,2.12654,0,0,ODS:SA:CTP20203687,Europe/Paris,,ODS, +ODS:SP:20203689,1,"Haillancourt",49.248886,2.033899,0,0,ODS:SA:CTP20203689,Europe/Paris,,ODS, +ODS:SP:20203692,1,"Centre",49.280276,2.104179,0,0,ODS:SA:CTP20203692,Europe/Paris,,ODS, +ODS:SP:20203698,1,"Centre",49.228885,2.029179,0,0,OLB:SA:CTP18000099,Europe/Paris,,ODS, +ODS:SP:20203699,1,"Centre",49.238336,2.077239,0,0,ODS:SA:CTP20203699,Europe/Paris,,ODS, +ODS:SP:20203700,1,"Allée du Bois",49.240549,2.068329,0,0,ODS:SA:CTP20203700,Europe/Paris,,ODS, +ODS:SP:20203703,1,"LP Lavoisier",49.228626,2.125068,0,0,ODS:SA:CTP20202316,Europe/Paris,,ODS, +ODS:SP:20203705,1,"Cresnes",49.197225,2.021398,0,0,ODS:SA:CTP20203705,Europe/Paris,,ODS, +ODS:SP:20203706,1,"Petit Alléré",49.207775,2.015289,0,0,ODS:SA:CTP20203706,Europe/Paris,,ODS, +ODS:SP:20203707,1,"Grand Alléré",49.212225,2.019458,0,0,ODS:SA:CTP20203707,Europe/Paris,,ODS, +ODS:SP:20203710,1,"Fresneaux",49.280556,2.003629,0,0,ODS:SA:CTP20203710,Europe/Paris,,ODS, +ODS:SP:20203714,1,"Mairie",49.256496,2.106768,0,0,ODS:SA:CTP20203714,Europe/Paris,,ODS, +ODS:SP:20203717,1,"Centre",49.306269,2.122277,0,0,ODT:SA:CTP21100887,Europe/Paris,,ODS, +ODS:SP:20203722,1,"Vessencourt",49.375136,2.097788,0,0,ODS:SA:CTP20203722,Europe/Paris,,ODS, +ODS:SP:20203723,1,"Centre",49.382505,2.086959,0,0,OIS:SA:CTP3014524,Europe/Paris,,ODS, +ODS:SP:20203724,1,"Centre",49.395269,2.05972,0,0,ODS:SA:CTP20203972,Europe/Paris,,ODS, +ODS:SP:20203725,1,"Chopin",49.416817,2.084183,0,0,OIS:SA:CTP3014240,Europe/Paris,,ODS, +ODS:SP:20203727,1,"Collège Fauqueux",49.417311,2.07965,0,0,ODS:SA:CTP20203727,Europe/Paris,,ODS, +ODS:SP:20203729,1,"Morlaine",49.459161,2.13722,0,0,ODS:SA:CTP20203729,Europe/Paris,,ODS, +ODS:SP:20203733,1,"Route de Rieux",49.48028,2.126385,0,0,ODS:SA:CTP20203733,Europe/Paris,,ODS, +ODS:SP:20203734,1,"Rieux",49.46944,2.10666,0,0,ODS:SA:CTP20203734,Europe/Paris,,ODS, +ODS:SP:20203735,1,"Ecole",49.464719,2.11083,0,0,ODS:SA:CTP20203735,Europe/Paris,,ODS, +ODS:SP:20203737,1,"Centre",49.464448,2.108617,0,0,OIS:SA:CTP3014352,Europe/Paris,,ODS, +ODS:SP:20203738,1,"Stade",49.461387,2.106399,0,0,ODS:SA:CTP20203738,Europe/Paris,,ODS, +ODS:SP:20203741,1,"Mairie",49.586117,2.293901,0,0,ODS:SA:CTP20203741,Europe/Paris,,ODS, +ODS:SP:20203751,1,"Grande rue",49.617228,2.30085,0,0,ODS:SA:CTP20203751,Europe/Paris,,ODS, +ODS:SP:20203752,1,"Eglise",49.632417,2.29464,0,0,ODV:SA:CTP22510820,Europe/Paris,,ODS, +ODS:SP:20203753,1,"RD 1001 Nord",49.630109,2.293259,0,0,ODS:SA:CTP20203753,Europe/Paris,,ODS, +ODS:SP:20203754,1,"RD 1001",49.605009,2.28835,0,0,ODS:SA:CTP20203754,Europe/Paris,,ODS, +ODS:SP:20203755,1,"Place",49.577508,2.242239,0,0,ODS:SA:CTP20203755,Europe/Paris,,ODS, +ODS:SP:20203756,1,"Ecole",49.605279,2.255289,0,0,ODS:SA:CTP20203756,Europe/Paris,,ODS, +ODS:SP:20203765,1,"Centre",49.566948,2.221679,0,0,ODS:SA:CTP20203765,Europe/Paris,,ODS, +ODS:SP:20203768,1,"Rue des Bonhommes",49.527507,2.20418,0,0,ODS:SA:CTP20203768,Europe/Paris,,ODS, +ODS:SP:20203770,1,"Ecole",49.517227,2.170019,0,0,ODS:SA:CTP20203770,Europe/Paris,,ODS, +ODS:SP:20203771,1,"Ancienne mare",49.498056,2.146679,0,0,ODS:SA:CTP20203771,Europe/Paris,,ODS, +ODS:SP:20203774,1,"Parc Dassault",49.450609,2.097779,0,0,ORL:SA:CTP27000101,Europe/Paris,,ODS, +ODS:SP:20203775,1,"Franc Marché Arrivée",49.436181,2.086759,0,0,ODS:SA:CTP20203775,Europe/Paris,,ODS, +ODS:SP:20203776,1,"Café de l'Oise",49.436814,2.084828,0,0,ODS:SA:CTP20311336,Europe/Paris,,ODS, +ODS:SP:20203780,1,"Grande rue",49.549443,2.363884,0,0,ODV:SA:CTP22511198,Europe/Paris,,ODS, +ODS:SP:20203781,1,"Eglise",49.546669,2.359451,0,0,ODS:SA:CTP20203781,Europe/Paris,,ODS, +ODS:SP:20203782,1,"Ville",49.543058,2.314728,0,0,ODS:SA:CTP20203782,Europe/Paris,,ODS, +ODS:SP:20203783,1,"Rue Tassart",49.540785,2.312148,0,0,ODS:SA:CTP20203783,Europe/Paris,,ODS, +ODS:SP:20203784,1,"Centre",49.522778,2.320836,0,0,ODS:SA:CTP20203784,Europe/Paris,,ODS, +ODS:SP:20203785,1,"Quesnel Aubry",49.50889,2.308895,0,0,ODS:SA:CTP20203785,Europe/Paris,,ODS, +ODS:SP:20203786,1,"Coiseaux",49.494163,2.292218,0,0,ODS:SA:CTP20203786,Europe/Paris,,ODS, +ODS:SP:20203787,1,"abribus",49.505556,2.280277,0,0,ODS:SA:CTP20203787,Europe/Paris,,ODS, +ODS:SP:20203788,1,"poteaux",49.508886,2.274728,0,0,ODS:SA:CTP20203788,Europe/Paris,,ODS, +ODS:SP:20203789,1,"Eglise",49.487776,2.244724,0,0,ODS:SA:CTP20203789,Europe/Paris,,ODS, +ODS:SP:20203791,1,"Clos des peupliers",49.488886,2.238889,0,0,ODS:SA:CTP20203791,Europe/Paris,,ODS, +ODS:SP:20203792,1,"Lafraye",49.495829,2.210551,0,0,ODS:SA:CTP20203792,Europe/Paris,,ODS, +ODS:SP:20203793,1,"La Boudinière",49.50944,2.196944,0,0,ODS:SA:CTP20203793,Europe/Paris,,ODS, +ODS:SP:20203794,1,"Boursines",49.491946,2.177784,0,0,ODS:SA:CTP20203794,Europe/Paris,,ODS, +ODS:SP:20203795,1,"Oroër",49.495003,2.160827,0,0,ODS:SA:CTP20203795,Europe/Paris,,ODS, +ODS:SP:20203799,1,"Mairie",49.466666,2.381402,0,0,ODT:SA:CTP21100945,Europe/Paris,,ODS, +ODS:SP:20203800,1,"Le Plésseret",49.474445,2.386402,0,0,ODT:SA:CTP21100946,Europe/Paris,,ODS, +ODS:SP:20203801,1,"Rotibequet",49.496386,2.410572,0,0,ODV:SA:CTP22403801,Europe/Paris,,ODS, +ODS:SP:20203804,1,"Centre",49.499295,2.372008,0,0,ODS:SA:CTP20203804,Europe/Paris,,ODS, +ODS:SP:20203805,1,"Centre",49.49628,2.315507,0,0,ODT:SA:CTP21010472,Europe/Paris,,ODS, +ODS:SP:20203806,1,"Fumechon",49.52141,2.368008,0,0,ODV:SA:CTP22510860,Europe/Paris,,ODS, +ODS:SP:20203807,1,"Catillon",49.51841,2.367537,0,0,ODV:SA:CTP22511062,Europe/Paris,,ODS, +ODS:SP:20203812,1,"Centre",49.450556,2.2514,0,0,ODS:SA:CTP20203812,Europe/Paris,,ODS, +ODS:SP:20203813,1,"Saint Rimault",49.474447,2.276681,0,0,ODS:SA:CTP20203813,Europe/Paris,,ODS, +ODS:SP:20203814,1,"Route du Fay St Quentin",49.457982,2.21431,0,0,ODS:SA:CTP20203814,Europe/Paris,,ODS, +ODS:SP:20203815,1,"Mairie",49.472664,2.180366,0,0,ODS:SA:CTP20203815,Europe/Paris,,ODS, +ODS:SP:20203816,1,"Mairie",49.457506,2.1664,0,0,ODS:SA:CTP20203816,Europe/Paris,,ODS, +ODS:SP:20203817,1,"Mairie",49.470277,2.150289,0,0,ODS:SA:CTP20203817,Europe/Paris,,ODS, +ODS:SP:20203819,1,"G. Sand",49.449984,2.085217,0,0,ODS:SA:CTP20203819,Europe/Paris,,ODS, +ODS:SP:20203821,1,"Brière",49.428262,2.088919,0,0,ORL:SA:CTP27000098,Europe/Paris,,ODS, +ODS:SP:20203822,1,"Lycée Paul LANGEVIN",49.415218,2.106372,0,0,ODS:SA:CTP20202315,Europe/Paris,,ODS, +ODS:SP:20203907,1,"Hotel de Ville",49.224326,2.285622,0,0,ODT:SA:CTP21002467,Europe/Paris,,ODS, +ODS:SP:20203908,1,"stade",49.231573,2.299691,0,0,ODS:SA:CTP20203908,Europe/Paris,,ODS, +ODS:SP:20203909,1,"centre",49.233541,2.303531,0,0,ODT:SA:CTP21002466,Europe/Paris,,ODS, +ODS:SP:20203910,1,"Eglise",49.279838,2.280198,0,0,ODT:SA:CTP21002555,Europe/Paris,,ODS, +ODS:SP:20203912,1,"Cavillon Place",49.26069,2.260232,0,0,ODS:SA:CTP20203912,Europe/Paris,,ODS, +ODS:SP:20203913,1,"Moulincourt",49.264267,2.248517,0,0,ODS:SA:CTP20203913,Europe/Paris,,ODS, +ODS:SP:20203914,1,"Bois Morel",49.275251,2.243541,0,0,ODS:SA:CTP20203914,Europe/Paris,,ODS, +ODS:SP:20203922,1,"98,RD 1001",49.289081,2.201062,0,0,ODS:SA:CTP20203922,Europe/Paris,,ODS, +ODS:SP:20203923,1,"151,RD 1001",49.289791,2.200744,0,0,ODS:SA:CTP20203923,Europe/Paris,,ODS, +ODS:SP:20203926,1,"Rue de Noailles",49.301586,2.248109,0,0,ODS:SA:CTP20203926,Europe/Paris,,ODS, +ODS:SP:20203931,1,"Fayel - Rue de Bonvillers",49.31565,2.230784,0,0,ODS:SA:CTP20203931,Europe/Paris,,ODS, +ODS:SP:20203933,1,"Centre",49.324143,2.157895,0,0,ODS:SA:CTP20203933,Europe/Paris,,ODS, +ODS:SP:20203937,1,"Rue des faïenciers-Pierrepont",49.355787,2.187325,0,0,ODS:SA:CTP20203937,Europe/Paris,,ODS, +ODS:SP:20203941,1,"Délie",49.41025,2.113571,0,0,ODS:SA:CTP20203941,Europe/Paris,,ODS, +ODS:SP:20203942,1,"Cimetière",49.408715,2.111426,0,0,ODS:SA:CTP20202364,Europe/Paris,,ODS, +ODS:SP:20203943,1,"Ecole",49.301541,2.248136,0,0,ODS:SA:CTP20203943,Europe/Paris,,ODS, +ODS:SP:20203945,1,"Cousnicourt",49.291952,2.271407,0,0,ODT:SA:CTP21010515,Europe/Paris,,ODS, +ODS:SP:20203948,1,"Centre",49.269342,2.236481,0,0,ODS:SA:CTP20203948,Europe/Paris,,ODS, +ODS:SP:20203951,1,"Centre",49.230683,2.248355,0,0,ODT:SA:CTP21002551,Europe/Paris,,ODS, +ODS:SP:20203956,1,"Eglise",49.215907,2.167859,0,0,ODS:SA:CTP20203956,Europe/Paris,,ODS, +ODS:SP:20203958,1,"La Chesnaie",49.226914,2.13103,0,0,OLB:SA:CTP18000042,Europe/Paris,,ODS, +ODS:SP:20203960,1,"Place des fêtes",49.177722,2.286382,0,0,ODS:SA:CTP20203960,Europe/Paris,,ODS, +ODS:SP:20203970,1,"Centre",49.197503,2.20946,0,0,ODT:SA:CTP21100679,Europe/Paris,,ODS, +ODS:SP:20203971,1,"La Mare du Bois",49.19556,2.293795,0,0,ODS:SA:CTP20203971,Europe/Paris,,ODS, +ODS:SP:20203972,1,"Centre",49.395276,2.059739,0,0,ODS:SA:CTP20203972,Europe/Paris,,ODS, +ODS:SP:20203973,1,"Centre",49.34767,2.062358,0,0,ODS:SA:CTP20203973,Europe/Paris,,ODS, +ODS:SP:20203974,1,"Vaux Centre",49.357064,2.042187,0,0,ODS:SA:CTP20310077,Europe/Paris,,ODS, +ODS:SP:20203980,1,"Lotissement",49.416386,2.19696,0,0,ODS:SA:CTP20203980,Europe/Paris,,ODS, +ODS:SP:20203982,1,"Centre",49.426946,2.19335,0,0,ODS:SA:CTP20203982,Europe/Paris,,ODS, +ODS:SP:20203997,1,"rue du crocq",49.637778,2.188349,0,0,ODS:SA:CTP20203997,Europe/Paris,,ODS, +ODS:SP:20203998,1,"Rue principale",49.627508,2.179459,0,0,ODS:SA:CTP20203998,Europe/Paris,,ODS, +ODS:SP:20204001,1,"Rd 930",49.614534,2.128415,0,0,ODS:SA:CTP20204001,Europe/Paris,,ODS, +ODS:SP:20204002,1,"Centre",49.589447,2.147518,0,0,ODS:SA:CTP20204002,Europe/Paris,,ODS, +ODS:SP:20204003,1,"Rd11",49.571947,2.121958,0,0,ODS:SA:CTP20204003,Europe/Paris,,ODS, +ODS:SP:20204004,1,"Centre",49.555068,2.118386,0,0,ODS:SA:CTP20204004,Europe/Paris,,ODS, +ODS:SP:20204010,1,"Village",49.503057,2.096398,0,0,ODS:SA:CTP20204010,Europe/Paris,,ODS, +ODS:SP:20204012,1,"Eglise",49.697778,2.171958,0,0,ODS:SA:CTP20204012,Europe/Paris,,ODS, +ODS:SP:20204015,1,"Bonneleau - Rd 106",49.673619,2.163899,0,0,ODS:SA:CTP20204015,Europe/Paris,,ODS, +ODS:SP:20204022,1,"Ghehengnies",49.509218,2.070566,0,0,ODS:SA:CTP20204022,Europe/Paris,,ODS, +ODS:SP:20204024,1,"La Sablière",49.616388,2.041128,0,0,ODS:SA:CTP20204024,Europe/Paris,,ODS, +ODS:SP:20213597,1,"centre",49.605741,2.385679,0,0,ODS:SA:CTP20213597,Europe/Paris,,ODS, +ODS:SP:20213598,1,"Pellerin-Université",49.429788,2.090555,0,0,OIS:SA:CTP3014473,Europe/Paris,,ODS, +ODS:SP:20213599,1,"Lycée Felix Faure",49.434954,2.088584,0,0,ORL:SA:CTP27000099,Europe/Paris,,ODS, +ODS:SP:20213602,1,"Montoiselle",49.271812,2.036827,0,0,ODS:SA:CTP20213602,Europe/Paris,,ODS, +ODS:SP:20213603,1,"Fourche",49.273343,2.034745,0,0,ODS:SA:CTP20213603,Europe/Paris,,ODS, +ODS:SP:20213605,1,"Allée du Bois",49.241008,2.068663,0,0,ODS:SA:CTP20203700,Europe/Paris,,ODS, +ODS:SP:20213607,1,"Centre",49.216386,2.015849,0,0,ODS:SA:CTP20213607,Europe/Paris,,ODS, +ODS:SP:20213612,1,"Le Plouy Louvet",49.475553,1.999171,0,0,ODS:SA:CTP20213612,Europe/Paris,,ODS, +ODS:SP:20213613,1,"Orsimont-2",49.473618,1.798896,0,0,ODS:SA:CTP20310803,Europe/Paris,,ODS, +ODS:SP:20213616,1,"Rd981",49.354725,1.941678,0,0,ODS:SA:CTP20213616,Europe/Paris,,ODS, +ODS:SP:20213618,1,"Le Grand Bailly",49.400007,1.970288,0,0,ODS:SA:CTP20213618,Europe/Paris,,ODS, +ODS:SP:20213619,1,"Mairie",49.398336,1.948069,0,0,ODS:SA:CTP20213619,Europe/Paris,,ODS, +ODS:SP:20213620,1,"Mairie",49.354446,1.942789,0,0,ODS:SA:CTP20213620,Europe/Paris,,ODS, +ODS:SP:20213621,1,"Ronquerolles Rue de Froissy",49.396385,2.388072,0,0,ODT:SA:CTP21010482,Europe/Paris,,ODS, +ODS:SP:20213622,1,"Centre",49.415205,2.331555,0,0,ODS:SA:CTP20213622,Europe/Paris,,ODS, +ODS:SP:20213623,1,"Plois",49.406116,2.319461,0,0,ODS:SA:CTP20203029,Europe/Paris,,ODS, +ODS:SP:20213624,1,"RN31",49.415799,2.197669,0,0,ODS:SA:CTP20213624,Europe/Paris,,ODS, +ODS:SP:20213626,1,"Ronquerolles Route d'Etouy",49.404164,2.382242,0,0,ODS:SA:CTP20213626,Europe/Paris,,ODS, +ODS:SP:20213627,1,"C F A",49.388727,2.397309,0,0,ODS:SA:CTP20213627,Europe/Paris,,ODS, +ODS:SP:20213628,1,"Rieux",49.469447,2.106679,0,0,ODS:SA:CTP20203734,Europe/Paris,,ODS, +ODS:SP:20213629,1,"Eglise",49.482776,2.129459,0,0,OIS:SA:CTP3014489,Europe/Paris,,ODS, +ODS:SP:20213630,1,"Route de fontaine Saint Lucien",49.487226,2.138349,0,0,ODS:SA:CTP20213630,Europe/Paris,,ODS, +ODS:SP:20213631,1,"Hedencourt-Place",49.586948,2.28807,0,0,ODS:SA:CTP20213631,Europe/Paris,,ODS, +ODS:SP:20213634,1,"Rue d'en bas",49.676417,2.239123,0,0,ODS:SA:CTP20213634,Europe/Paris,,ODS, +ODS:SP:20213637,1,"Des puits revel",49.588618,2.353071,0,0,ODS:SA:CTP20310095,Europe/Paris,,ODS, +ODS:SP:20213639,1,"Rue du Presbytère",49.61562,2.221989,0,0,ODS:SA:CTP20213639,Europe/Paris,,ODS, +ODS:SP:20213640,1,"Collège Beaumont",49.438961,2.101238,0,0,ODS:SA:CTP20213640,Europe/Paris,,ODS, +ODS:SP:20213644,1,"Eglise",49.201113,2.27057,0,0,ODS:SA:CTP20213644,Europe/Paris,,ODS, +ODS:SP:20213645,1,"La Mare d'Ovillers",49.254497,2.205324,0,0,ODS:SA:CTP20213645,Europe/Paris,,ODS, +ODS:SP:20213646,1,"Ecole",49.225554,2.20807,0,0,ODS:SA:CTP20213646,Europe/Paris,,ODS, +ODS:SP:20213647,1,"Collège Jacques Prévert",49.168967,2.25457,0,0,ODT:SA:CTP21100682,Europe/Paris,,ODS, +ODS:SP:20213648,1,"Marnière",49.170274,2.24307,0,0,ODT:SA:CTP21100681,Europe/Paris,,ODS, +ODS:SP:20213650,1,"Les quatres chemins",49.165835,2.28557,0,0,ODT:SA:CTP21100882,Europe/Paris,,ODS, +ODS:SP:20213652,1,"Bout-Sec",49.210834,2.234168,0,0,ODS:SA:CTP20213652,Europe/Paris,,ODS, +ODS:SP:20213656,1,"Parfondeval - Ecole",49.287225,2.13918,0,0,ODS:SA:CTP20213656,Europe/Paris,,ODS, +ODS:SP:20213657,1,"Crevecoeur - Carrefour",49.279446,2.14502,0,0,ODS:SA:CTP20203567,Europe/Paris,,ODS, +ODS:SP:20213658,1,"Crevecoeur - lotissement",49.281384,2.142519,0,0,ODS:SA:CTP20213658,Europe/Paris,,ODS, +ODS:SP:20213659,1,"Ecole",49.296938,2.109458,0,0,ODT:SA:CTP21100955,Europe/Paris,,ODS, +ODS:SP:20213664,1,"Place de la Folie",49.369926,1.996229,0,0,OIS:SA:CTP3014428,Europe/Paris,,ODS, +ODS:SP:20213665,1,"Tiersfontaine - Maladrerie",49.371387,2.023069,0,0,ODS:SA:CTP20213665,Europe/Paris,,ODS, +ODS:SP:20213669,1,"Centre",49.355275,1.943068,0,0,ODS:SA:CTP20213669,Europe/Paris,,ODS, +ODS:SP:20213670,1,"Grande rue",49.331665,2.041129,0,0,ODS:SA:CTP20213670,Europe/Paris,,ODS, +ODS:SP:20213671,1,"Rue titon",49.334727,2.038629,0,0,ODS:SA:CTP20213671,Europe/Paris,,ODS, +ODS:SP:20213673,1,"Les Maisonnettes - Grande rue",49.346946,1.853898,0,0,ODS:SA:CTP20213673,Europe/Paris,,ODS, +ODS:SP:20213676,1,"La Neuville-sur-Auneuil - Centre",49.361945,1.984179,0,0,ODS:SA:CTP20213676,Europe/Paris,,ODS, +ODS:SP:20213677,1,"ISAB-Institut LaSalle",49.45973,2.06833,0,0,ODS:SA:CTP20213677,Europe/Paris,,ODS, +ODS:SP:20213678,1,"Centre",49.556666,2.057238,0,0,ODS:SA:CTP20213678,Europe/Paris,,ODS, +ODS:SP:20213681,1,"Mairie ecole",49.658337,1.987507,0,0,ODS:SA:CTP20310152,Europe/Paris,,ODS, +ODS:SP:20213682,1,"Rue de la ville",49.650557,2.048897,0,0,ODS:SA:CTP20213682,Europe/Paris,,ODS, +ODS:SP:20213684,1,"Rieux",49.644168,2.019457,0,0,ODS:SA:CTP20203384,Europe/Paris,,ODS, +ODS:SP:20213685,1,"Bury",49.500007,2.033349,0,0,ODS:SA:CTP20213685,Europe/Paris,,ODS, +ODS:SP:20213688,1,"Eglise",49.538617,2.058068,0,0,ODS:SA:CTP20213688,Europe/Paris,,ODS, +ODS:SP:20213689,1,"Ovillers",49.623617,2.008627,0,0,ODS:SA:CTP20213689,Europe/Paris,,ODS, +ODS:SP:20213691,1,"Sauqueuse Saint lucien",49.517902,2.065637,0,0,ODS:SA:CTP20213691,Europe/Paris,,ODS, +ODS:SP:20213697,1,"Ecole",49.69751,2.170848,0,0,ODS:SA:CTP20213697,Europe/Paris,,ODS, +ODS:SP:20213698,1,"Mairie-Ecole",49.589728,2.147518,0,0,ODS:SA:CTP20213698,Europe/Paris,,ODS, +ODS:SP:20213699,1,"Centre",49.681112,2.091955,0,0,ODS:SA:CTP20213699,Europe/Paris,,ODS, +ODS:SP:20213716,1,"Hatton",49.477225,2.300851,0,0,ODS:SA:CTP20310220,Europe/Paris,,ODS, +ODS:SP:20213717,1,"Mairie",49.478887,2.293071,0,0,ODS:SA:CTP20213717,Europe/Paris,,ODS, +ODS:SP:20213718,1,"Centre",49.485907,2.344741,0,0,ODT:SA:CTP21010471,Europe/Paris,,ODS, +ODS:SP:20213719,1,"Mairie",49.499079,2.373084,0,0,ODV:SA:CTP22511275,Europe/Paris,,ODS, +ODS:SP:20213720,1,"Centre",49.446059,2.285523,0,0,ODS:SA:CTP20213720,Europe/Paris,,ODS, +ODS:SP:20213726,1,"Frétoy Centre",49.553336,1.904177,0,0,ODS:SA:CTP20213726,Europe/Paris,,ODS, +ODS:SP:20213728,1,"Centre",49.629448,1.776955,0,0,ODS:SA:CTP20310537,Europe/Paris,,ODS, +ODS:SP:20213737,1,"Centre",49.399727,1.874738,0,0,ODS:SA:CTP20213737,Europe/Paris,,ODS, +ODS:SP:20213741,1,"Centre",49.320835,1.858068,0,0,ODS:SA:CTP20213741,Europe/Paris,,ODS, +ODS:SP:20213744,1,"Les Plards Haut",49.359726,1.910018,0,0,ODS:SA:CTP20213744,Europe/Paris,,ODS, +ODS:SP:20213745,1,"Centre",49.334166,1.871958,0,0,ODS:SA:CTP20213745,Europe/Paris,,ODS, +ODS:SP:20213746,1,"Centre",49.289445,1.833348,0,0,ODS:SA:CTP20310783,Europe/Paris,,ODS, +ODS:SP:20213747,1,"Centre RD 923",49.253335,1.981398,0,0,ODS:SA:CTP20213747,Europe/Paris,,ODS, +ODS:SP:20213748,1,"Mairie",49.711118,1.805015,0,0,ODS:SA:CTP20213748,Europe/Paris,,ODS, +ODS:SP:20213750,1,"Merlemont",49.38966,2.177737,0,0,ODS:SA:CTP20213750,Europe/Paris,,ODS, +ODS:SP:20213751,1,"L'Epine",49.377348,2.159623,0,0,ODS:SA:CTP20213751,Europe/Paris,,ODS, +ODS:SP:20213753,1,"Villers Sur There",49.41361,2.136669,0,0,OIS:SA:CTP3014510,Europe/Paris,,ODS, +ODS:SP:20213755,1,"Bongenoult Ecole",49.399446,2.097239,0,0,OIS:SA:CTP3014155,Europe/Paris,,ODS, +ODS:SP:20310003,1,"Mattencourt",49.37333,2.16861,0,0,ODS:SA:CTP20310003,Europe/Paris,,ODS, +ODS:SP:20310004,1,"Hennicourt Centre",49.696561,1.765254,0,0,ODS:SA:CTP20310004,Europe/Paris,,ODS, +ODS:SP:20310006,1,"Hennicourt Ecole",49.689721,1.769159,0,0,ODS:SA:CTP20310006,Europe/Paris,,ODS, +ODS:SP:20310007,1,"Centre",49.69638,1.764999,0,0,ODS:SA:CTP20310007,Europe/Paris,,ODS, +ODS:SP:20310008,1,"Ecole",49.696612,1.764589,0,0,ODS:SA:CTP20310008,Europe/Paris,,ODS, +ODS:SP:20310010,1,"Gros Poirier",49.364719,2.1625,0,0,ODS:SA:CTP20200006,Europe/Paris,,ODS, +ODS:SP:20310012,1,"Centre",49.358879,2.15722,0,0,ODS:SA:CTP20310012,Europe/Paris,,ODS, +ODS:SP:20310013,1,"Ecole",49.51722,2.169999,0,0,ODS:SA:CTP20203770,Europe/Paris,,ODS, +ODS:SP:20310014,1,"POLHAY",49.553887,1.956397,0,0,ODS:SA:CTP20310014,Europe/Paris,,ODS, +ODS:SP:20310015,1,"Centre",49.55555,1.97805,0,0,ODS:SA:CTP20310015,Europe/Paris,,ODS, +ODS:SP:20310019,1,"Sandricourt",49.206522,2.14115,0,0,ODS:SA:CTP20310019,Europe/Paris,,ODS, +ODS:SP:20310023,1,"Octroi",49.256945,2.15974,0,0,ODS:SA:CTP20200044,Europe/Paris,,ODS, +ODS:SP:20310025,1,"Ansauvillers",49.564867,2.386856,0,0,ODV:SA:CTP22510025,Europe/Paris,,ODS, +ODS:SP:20310026,1,"Centre",49.225835,2.20779,0,0,ODS:SA:CTP20310026,Europe/Paris,,ODS, +ODS:SP:20310027,1,"Armentières lavoir",49.459998,1.930274,0,0,ODS:SA:CTP20310027,Europe/Paris,,ODS, +ODS:SP:20310031,1,"Collège Henri DUNANT",49.773693,1.750853,0,0,ODS:SA:CTP20310031,Europe/Paris,,ODS, +ODS:SP:20310032,1,"Collège",49.368546,1.991788,0,0,ODS:SA:CTP20310032,Europe/Paris,,ODS, +ODS:SP:20310033,1,"La Neuville-sur-Auneuil",49.362771,1.97694,0,0,ODS:SA:CTP20310033,Europe/Paris,,ODS, +ODS:SP:20310035,1,"Sinancourt",49.386667,1.991678,0,0,ODS:SA:CTP20310035,Europe/Paris,,ODS, +ODS:SP:20310036,1,"Tiersfontaine",49.371115,2.018899,0,0,ODS:SA:CTP20310036,Europe/Paris,,ODS, +ODS:SP:20310037,1,"Centre",49.341385,2.087519,0,0,OIS:SA:CTP3014518,Europe/Paris,,ODS, +ODS:SP:20310038,1,"Les Niards",49.359167,2.080569,0,0,ODS:SA:CTP20310038,Europe/Paris,,ODS, +ODS:SP:20310039,1,"Les Vivrots",49.364166,2.069459,0,0,OIS:SA:CTP3014521,Europe/Paris,,ODS, +ODS:SP:20310040,1,"Centre",49.34138,2.087501,0,0,OIS:SA:CTP3014518,Europe/Paris,,ODS, +ODS:SP:20310041,1,"Saint Quentin carrefour",49.34,2.095831,0,0,ODS:SA:CTP20310041,Europe/Paris,,ODS, +ODS:SP:20310043,1,"39. rue du Moulin",49.292226,1.958899,0,0,ODS:SA:CTP20310043,Europe/Paris,,ODS, +ODS:SP:20310044,1,"Mairie / Ecole",49.288886,1.962518,0,0,ODS:SA:CTP20310044,Europe/Paris,,ODS, +ODS:SP:20310047,1,"Centre",49.617508,2.386962,0,0,ODV:SA:CTP22510046,Europe/Paris,,ODS, +ODS:SP:20310048,1,"Gare SNCF",49.626452,2.385229,0,0,ODS:SA:CTP20310048,Europe/Paris,,ODS, +ODS:SP:20310049,1,"Centre",49.384878,2.22204,0,0,ODT:SA:CTP21100181,Europe/Paris,,ODS, +ODS:SP:20310050,1,"Espace MITTERAND",49.38342,2.229666,0,0,ODS:SA:CTP20310050,Europe/Paris,,ODS, +ODS:SP:20310051,1,"Froidmont Rue du château",49.382769,2.243049,0,0,ODS:SA:CTP20310051,Europe/Paris,,ODS, +ODS:SP:20310052,1,"Froidmont",49.38333,2.24861,0,0,ODT:SA:CTP21100853,Europe/Paris,,ODS, +ODS:SP:20310053,1,"Mont César",49.38222,2.23361,0,0,ODS:SA:CTP20310053,Europe/Paris,,ODS, +ODS:SP:20310055,1,"Gare",49.392225,2.20807,0,0,ODS:SA:CTP20310055,Europe/Paris,,ODS, +ODS:SP:20310056,1,"Rue de Provence",49.38083,2.23388,0,0,ODS:SA:CTP20310056,Europe/Paris,,ODS, +ODS:SP:20310057,1,"Le Gravier",49.383615,2.2189,0,0,ODS:SA:CTP20310057,Europe/Paris,,ODS, +ODS:SP:20310058,1,"L'Alouette",49.378616,2.23113,0,0,ODS:SA:CTP20310058,Europe/Paris,,ODS, +ODS:SP:20310059,1,"Froidmont rue l'abbaye",49.383391,2.248751,0,0,ODT:SA:CTP21100853,Europe/Paris,,ODS, +ODS:SP:20310060,1,"Le grand Bailly",49.4,1.970269,0,0,ODS:SA:CTP20310060,Europe/Paris,,ODS, +ODS:SP:20310061,1,"Mairie",49.678619,2.065287,0,0,ODS:SA:CTP20310061,Europe/Paris,,ODS, +ODS:SP:20310062,1,"Sortie",49.328336,2.006399,0,0,ODS:SA:CTP20310062,Europe/Paris,,ODS, +ODS:SP:20310063,1,"Chantoiseau",49.335275,1.990289,0,0,ODS:SA:CTP20310063,Europe/Paris,,ODS, +ODS:SP:20310064,1,"Jouy-la-Grange",49.333887,1.974178,0,0,ODS:SA:CTP20310064,Europe/Paris,,ODS, +ODS:SP:20310065,1,"La longue rue centre",49.311116,2.023069,0,0,ODS:SA:CTP20310065,Europe/Paris,,ODS, +ODS:SP:20310066,1,"Centre",49.328886,2.003899,0,0,ODS:SA:CTP20310066,Europe/Paris,,ODS, +ODS:SP:20310067,1,"Gare Routière",49.42702,2.084344,0,0,ORL:SA:CTP27000094,Europe/Paris,,ODS, +ODS:SP:20310068,1,"Centre",49.603433,2.326365,0,0,ODS:SA:CTP20310068,Europe/Paris,,ODS, +ODS:SP:20310069,1,"Evauchaux",49.593337,2.31696,0,0,ODS:SA:CTP20310069,Europe/Paris,,ODS, +ODS:SP:20310071,1,"Centre",49.192224,2.21946,0,0,ODT:SA:CTP21100680,Europe/Paris,,ODS, +ODS:SP:20310073,1,"Route de Noailles",49.347506,2.062239,0,0,ODS:SA:CTP20310073,Europe/Paris,,ODS, +ODS:SP:20310074,1,"Carrefour rue des Tilleuls",49.346385,2.06918,0,0,ODS:SA:CTP20310074,Europe/Paris,,ODS, +ODS:SP:20310075,1,"Rue Autin",49.34939,2.063999,0,0,ODS:SA:CTP20310075,Europe/Paris,,ODS, +ODS:SP:20310077,1,"Vaux Centre",49.356776,2.041969,0,0,ODS:SA:CTP20310077,Europe/Paris,,ODS, +ODS:SP:20310078,1,"Rue de Maupeou",49.35166,2.224441,0,0,ODS:SA:CTP20203537,Europe/Paris,,ODS, +ODS:SP:20310079,1,"La Haute Rue 1",49.456667,1.870017,0,0,ODS:SA:CTP20310079,Europe/Paris,,ODS, +ODS:SP:20310080,1,"Centre",49.464909,1.860912,0,0,ODS:SA:CTP20310080,Europe/Paris,,ODS, +ODS:SP:20310082,1,"Grande rue",49.658059,2.194179,0,0,ODS:SA:CTP20310141,Europe/Paris,,ODS, +ODS:SP:20310083,1,"Belleville",49.679987,1.766091,0,0,ODS:SA:CTP20310083,Europe/Paris,,ODS, +ODS:SP:20310085,1,"Centre",49.672222,1.765001,0,0,ODS:SA:CTP20310085,Europe/Paris,,ODS, +ODS:SP:20310086,1,"Raiderie",49.669595,1.793107,0,0,ODS:SA:CTP20310086,Europe/Paris,,ODS, +ODS:SP:20310087,1,"Secqueville",49.658618,1.755845,0,0,ODS:SA:CTP20310087,Europe/Paris,,ODS, +ODS:SP:20310088,1,"Eglise",49.55611,2.057501,0,0,ODS:SA:CTP20203370,Europe/Paris,,ODS, +ODS:SP:20310089,1,"Regnonval",49.571386,2.057787,0,0,ODS:SA:CTP20310089,Europe/Paris,,ODS, +ODS:SP:20310091,1,"La folie de Bonneuil",49.674379,2.248391,0,0,ODS:SA:CTP20310091,Europe/Paris,,ODS, +ODS:SP:20310092,1,"Mairie-Ecole",49.67861,2.23277,0,0,ODS:SA:CTP20310092,Europe/Paris,,ODS, +ODS:SP:20310094,1,"Rue de l'église",49.509999,1.96583,0,0,ODS:SA:CTP20203459,Europe/Paris,,ODS, +ODS:SP:20310095,1,"Des puits revel",49.588829,2.353184,0,0,ODS:SA:CTP20310095,Europe/Paris,,ODS, +ODS:SP:20310096,1,"Warmaise",49.598349,2.366061,0,0,ODS:SA:CTP20310096,Europe/Paris,,ODS, +ODS:SP:20310097,1,"Collège",49.19495,2.207507,0,0,ODS:SA:CTP20310097,Europe/Paris,,ODS, +ODS:SP:20310098,1,"Courcelles",49.193222,2.182863,0,0,ODS:SA:CTP20310098,Europe/Paris,,ODS, +ODS:SP:20310099,1,"Landrimont",49.183053,2.20307,0,0,ODT:SA:CTP21100875,Europe/Paris,,ODS, +ODS:SP:20310100,1,"Ménillet",49.189164,2.19446,0,0,ODS:SA:CTP20310100,Europe/Paris,,ODS, +ODS:SP:20310102,1,"Rue de Billoy",49.220269,1.868881,0,0,ODS:SA:CTP20310102,Europe/Paris,,ODS, +ODS:SP:20310103,1,"Le Fayel",49.205157,1.864288,0,0,ODS:SA:CTP20310103,Europe/Paris,,ODS, +ODS:SP:20310106,1,"Eglise",49.175835,1.902518,0,0,ODS:SA:CTP20310106,Europe/Paris,,ODS, +ODS:SP:20310107,1,"Place du Fort de Ville",49.241461,1.736955,0,0,ODS:SA:CTP20310107,Europe/Paris,,ODS, +ODS:SP:20310108,1,"Centre",49.641117,1.757504,0,0,ODS:SA:CTP20310108,Europe/Paris,,ODS, +ODS:SP:20310109,1,"Mairie",49.319727,1.858899,0,0,ODS:SA:CTP20310109,Europe/Paris,,ODS, +ODS:SP:20310112,1,"Centre",49.654447,1.752784,0,0,ODS:SA:CTP20310112,Europe/Paris,,ODS, +ODS:SP:20310113,1,"Collège CONDORCET",49.408886,2.244461,0,0,ODS:SA:CTP20310113,Europe/Paris,,ODS, +ODS:SP:20310114,1,"Rue du Général de Gaulle",49.410836,2.248351,0,0,ODS:SA:CTP20310114,Europe/Paris,,ODS, +ODS:SP:20310117,1,"Compere MOREL",49.63501,2.2989,0,0,ODV:SA:CTP22511195,Europe/Paris,,ODS, +ODS:SP:20310119,1,"Ecole Primaire",49.633898,2.291915,0,0,ODS:SA:CTP20310119,Europe/Paris,,ODS, +ODS:SP:20310120,1,"Sacré Coeur",49.632416,2.291432,0,0,ODS:SA:CTP20310120,Europe/Paris,,ODS, +ODS:SP:20310123,1,"La Grange",49.630371,1.915836,0,0,ODS:SA:CTP20310123,Europe/Paris,,ODS, +ODS:SP:20310124,1,"Centre",49.650731,1.923705,0,0,ODS:SA:CTP20310124,Europe/Paris,,ODS, +ODS:SP:20310125,1,"Ecole",49.645275,1.887222,0,0,ODS:SA:CTP20310125,Europe/Paris,,ODS, +ODS:SP:20310127,1,"Ecole",49.645383,1.887415,0,0,ODS:SA:CTP20310125,Europe/Paris,,ODS, +ODS:SP:20310129,1,"Route Principale",49.659966,1.82788,0,0,ODS:SA:CTP20203489,Europe/Paris,,ODS, +ODS:SP:20310130,1,"Centre",49.627771,2.45527,0,0,ODV:SA:CTP22510130,Europe/Paris,,ODS, +ODS:SP:20310131,1,"Centre",49.522776,2.320571,0,0,ODS:SA:CTP20203784,Europe/Paris,,ODS, +ODS:SP:20310133,1,"Renicourt",49.531386,1.811396,0,0,ODS:SA:CTP20310133,Europe/Paris,,ODS, +ODS:SP:20310134,1,"Centre",49.540277,1.818896,0,0,ODS:SA:CTP20310134,Europe/Paris,,ODS, +ODS:SP:20310135,1,"Bury",49.500275,2.033611,0,0,ODS:SA:CTP20213685,Europe/Paris,,ODS, +ODS:SP:20310136,1,"Centre",49.618618,1.756395,0,0,ODS:SA:CTP20310136,Europe/Paris,,ODS, +ODS:SP:20310137,1,"Ecole",49.619728,1.756395,0,0,ODS:SA:CTP20310137,Europe/Paris,,ODS, +ODS:SP:20310138,1,"Courcelles",49.611117,1.748065,0,0,ODS:SA:CTP20310138,Europe/Paris,,ODS, +ODS:SP:20310139,1,"carrefour",49.569284,2.310615,0,0,ODS:SA:CTP20310139,Europe/Paris,,ODS, +ODS:SP:20310140,1,"Rue principale",49.60083,1.71694,0,0,ODS:SA:CTP20203413,Europe/Paris,,ODS, +ODS:SP:20310141,1,"Grande rue",49.65805,2.19416,0,0,ODS:SA:CTP20310141,Europe/Paris,,ODS, +ODS:SP:20310142,1,"Centre",49.652401,2.12039,0,0,ODS:SA:CTP20310142,Europe/Paris,,ODS, +ODS:SP:20310143,1,"Bonvillers",49.307505,2.21751,0,0,ODS:SA:CTP20310143,Europe/Paris,,ODS, +ODS:SP:20310145,1,"Centre",49.301114,2.247521,0,0,ODT:SA:CTP21100890,Europe/Paris,,ODS, +ODS:SP:20310146,1,"Château Rouge",49.297822,2.261495,0,0,ODT:SA:CTP21100806,Europe/Paris,,ODS, +ODS:SP:20310147,1,"Fayel",49.315006,2.231401,0,0,ODS:SA:CTP20310147,Europe/Paris,,ODS, +ODS:SP:20310148,1,"Fercourt",49.310004,2.24529,0,0,ODT:SA:CTP21100889,Europe/Paris,,ODS, +ODS:SP:20310149,1,"Cailleret",49.295793,2.23839,0,0,ODS:SA:CTP20310149,Europe/Paris,,ODS, +ODS:SP:20310151,1,"Marcel Callo",49.658329,1.979432,0,0,ODS:SA:CTP20310151,Europe/Paris,,ODS, +ODS:SP:20310152,1,"Mairie ecole",49.658368,1.98746,0,0,ODS:SA:CTP20310152,Europe/Paris,,ODS, +ODS:SP:20310153,1,"Ecole",49.259999,1.814441,0,0,ODS:SA:CTP20310153,Europe/Paris,,ODS, +ODS:SP:20310155,1,"Collège G. de Maupassant",49.271666,1.891398,0,0,ODS:SA:CTP20310155,Europe/Paris,,ODS, +ODS:SP:20310156,1,"Collège Saint-Exupéry",49.261665,1.873898,0,0,ODS:SA:CTP20310156,Europe/Paris,,ODS, +ODS:SP:20310158,1,"Centre",49.186946,1.993348,0,0,ODS:SA:CTP20310158,Europe/Paris,,ODS, +ODS:SP:20310159,1,"Centre",49.605822,2.385707,0,0,ODS:SA:CTP20310159,Europe/Paris,,ODS, +ODS:SP:20310160,1,"Petit Chepoix",49.602219,2.39072,0,0,ODS:SA:CTP20310160,Europe/Paris,,ODS, +ODS:SP:20310161,1,"Centre",49.651949,2.080567,0,0,ODS:SA:CTP20310161,Europe/Paris,,ODS, +ODS:SP:20310162,1,"Scolaire CONTEVILLE",49.649449,2.048353,0,0,ODS:SA:CTP20310162,Europe/Paris,,ODS, +ODS:SP:20310163,1,"Scolaire CORMEILLES",49.640557,2.193624,0,0,ODS:SA:CTP20310163,Europe/Paris,,ODS, +ODS:SP:20310164,1,"Mauréaumont",49.2575,1.71694,0,0,ODS:SA:CTP20310164,Europe/Paris,,ODS, +ODS:SP:20310165,1,"Centre",49.606947,2.076398,0,0,ODS:SA:CTP20310165,Europe/Paris,,ODS, +ODS:SP:20310168,1,"Collège",49.60725,2.073026,0,0,ODS:SA:CTP20310168,Europe/Paris,,ODS, +ODS:SP:20310171,1,"Lycée - EREA",49.60388,2.08083,0,0,ODS:SA:CTP20310171,Europe/Paris,,ODS, +ODS:SP:20310172,1,"La Borde école",49.617227,2.095288,0,0,ODS:SA:CTP20310172,Europe/Paris,,ODS, +ODS:SP:20310173,1,"La Petite France",49.516115,1.927517,0,0,ODS:SA:CTP20310173,Europe/Paris,,ODS, +ODS:SP:20310174,1,"Le pâtis enclos",49.519725,1.915567,0,0,ODS:SA:CTP20310174,Europe/Paris,,ODS, +ODS:SP:20310175,1,"Mairie",49.52027,1.929719,0,0,ODS:SA:CTP20203439,Europe/Paris,,ODS, +ODS:SP:20310176,1,"Scolaire CROISSY SUR CELLE",49.69751,2.170842,0,0,ODS:SA:CTP20310176,Europe/Paris,,ODS, +ODS:SP:20310179,1,"Les eaux ouies",49.430457,1.842377,0,0,ODS:SA:CTP20310179,Europe/Paris,,ODS, +ODS:SP:20310180,1,"Rue des solons",49.432514,1.92333,0,0,ODS:SA:CTP20310180,Europe/Paris,,ODS, +ODS:SP:20310181,1,"Centre",49.42583,1.82583,0,0,ODS:SA:CTP20310181,Europe/Paris,,ODS, +ODS:SP:20310182,1,"Saint-Leu",49.441665,1.828617,0,0,ODS:SA:CTP20310182,Europe/Paris,,ODS, +ODS:SP:20310183,1,"Centre",49.708058,1.926956,0,0,ODS:SA:CTP20310183,Europe/Paris,,ODS, +ODS:SP:20310184,1,"Centre",49.701387,1.989177,0,0,ODS:SA:CTP20310184,Europe/Paris,,ODS, +ODS:SP:20310186,1,"Place",49.243581,1.832592,0,0,ODS:SA:CTP20310186,Europe/Paris,,ODS, +ODS:SP:20310187,1,"Mairie-Ecole",49.632779,2.164178,0,0,ODS:SA:CTP20310187,Europe/Paris,,ODS, +ODS:SP:20310188,1,"Abri",49.698058,1.893066,0,0,ODS:SA:CTP20310188,Europe/Paris,,ODS, +ODS:SP:20310190,1,"école",49.297777,1.921678,0,0,ODS:SA:CTP20310190,Europe/Paris,,ODS, +ODS:SP:20310191,1,"Eglise",49.303617,1.846128,0,0,ODS:SA:CTP20310191,Europe/Paris,,ODS, +ODS:SP:20310192,1,"Gare",49.294999,1.851106,0,0,ODS:SA:CTP20310192,Europe/Paris,,ODS, +ODS:SP:20310193,1,"école",49.30361,1.84611,0,0,ODS:SA:CTP20310193,Europe/Paris,,ODS, +ODS:SP:20310194,1,"Cité Saint Charles",49.314165,1.774738,0,0,ODS:SA:CTP20310194,Europe/Paris,,ODS, +ODS:SP:20310195,1,"Centre",49.298615,1.778898,0,0,ODS:SA:CTP20310195,Europe/Paris,,ODS, +ODS:SP:20310196,1,"Centre",49.298609,1.77888,0,0,ODS:SA:CTP20310195,Europe/Paris,,ODS, +ODS:SP:20310198,1,"Place",49.587777,1.806396,0,0,ODS:SA:CTP20310198,Europe/Paris,,ODS, +ODS:SP:20310200,1,"Salle polyvalente",49.591948,1.800565,0,0,ODS:SA:CTP20310200,Europe/Paris,,ODS, +ODS:SP:20310201,1,"Salle polyvalente",49.591939,1.80055,0,0,ODS:SA:CTP20310200,Europe/Paris,,ODS, +ODS:SP:20310203,1,"Longavesnes Centre",49.578092,1.81509,0,0,ODS:SA:CTP20310203,Europe/Paris,,ODS, +ODS:SP:20310204,1,"Moulin de la Gachère",49.548871,1.815828,0,0,ODS:SA:CTP20310204,Europe/Paris,,ODS, +ODS:SP:20310205,1,"Hemecourt - Village",49.550829,1.81472,0,0,ODS:SA:CTP20310205,Europe/Paris,,ODS, +ODS:SP:20310206,1,"Hémécourt",49.549447,1.815566,0,0,ODS:SA:CTP20310206,Europe/Paris,,ODS, +ODS:SP:20310207,1,"Hevecourt",49.545276,1.787516,0,0,ODS:SA:CTP20310207,Europe/Paris,,ODS, +ODS:SP:20310208,1,"Centre",49.215554,2.16779,0,0,ODS:SA:CTP20310208,Europe/Paris,,ODS, +ODS:SP:20310209,1,"Liecourt Fourche",49.237505,2.17863,0,0,ODS:SA:CTP20310209,Europe/Paris,,ODS, +ODS:SP:20310210,1,"Liecourt Centre",49.239164,2.180289,0,0,ODS:SA:CTP20310210,Europe/Paris,,ODS, +ODS:SP:20310211,1,"Vignoru",49.216385,2.15585,0,0,ODS:SA:CTP20310211,Europe/Paris,,ODS, +ODS:SP:20310212,1,"Centre",49.740837,1.803895,0,0,ODS:SA:CTP20310212,Europe/Paris,,ODS, +ODS:SP:20310213,1,"centre",49.420836,1.866397,0,0,ODS:SA:CTP20310213,Europe/Paris,,ODS, +ODS:SP:20310215,1,"Eglise",49.42083,1.86638,0,0,ODS:SA:CTP20310215,Europe/Paris,,ODS, +ODS:SP:20310216,1,"Rd 1001",49.649441,2.27055,0,0,ODS:SA:CTP20203317,Europe/Paris,,ODS, +ODS:SP:20310217,1,"Mairie",49.658431,2.267918,0,0,ODV:SA:CTP22510217,Europe/Paris,,ODS, +ODS:SP:20310219,1,"Mairie",49.47888,2.29305,0,0,ODS:SA:CTP20213717,Europe/Paris,,ODS, +ODS:SP:20310220,1,"Hatton",49.477221,2.300831,0,0,ODS:SA:CTP20310220,Europe/Paris,,ODS, +ODS:SP:20310221,1,"Saint Rimault",49.47444,2.27666,0,0,ODS:SA:CTP20203813,Europe/Paris,,ODS, +ODS:SP:20310222,1,"Rue Corneboeuf",49.247505,1.938337,0,0,ODS:SA:CTP20310222,Europe/Paris,,ODS, +ODS:SP:20310223,1,"Ecole",49.244748,1.934406,0,0,ODS:SA:CTP20310223,Europe/Paris,,ODS, +ODS:SP:20310224,1,"Place du Marché",49.646668,1.845827,0,0,ODS:SA:CTP20310224,Europe/Paris,,ODS, +ODS:SP:20310226,1,"rue Saint Lucien",49.64638,1.845831,0,0,ODS:SA:CTP20310226,Europe/Paris,,ODS, +ODS:SP:20310227,1,"Place du Frayer",49.643891,1.84111,0,0,ODS:SA:CTP20310227,Europe/Paris,,ODS, +ODS:SP:20310228,1,"Gare",49.654159,1.830824,0,0,SIN:SA:OCE87313742,Europe/Paris,,ODS, +ODS:SP:20310229,1,"Dassault",49.643879,1.84138,0,0,ODS:SA:CTP20310229,Europe/Paris,,ODS, +ODS:SP:20310233,1,"Lincourt centre",49.351947,1.845568,0,0,ODS:SA:CTP20310233,Europe/Paris,,ODS, +ODS:SP:20310234,1,"Lincourt le haut",49.347506,1.839738,0,0,ODS:SA:CTP20310234,Europe/Paris,,ODS, +ODS:SP:20310235,1,"école",49.335007,1.820008,0,0,ODS:SA:CTP20310235,Europe/Paris,,ODS, +ODS:SP:20310236,1,"La Tremblée",49.337505,1.829738,0,0,ODS:SA:CTP20310236,Europe/Paris,,ODS, +ODS:SP:20310237,1,"Les petits bus",49.347777,1.833068,0,0,ODS:SA:CTP20310237,Europe/Paris,,ODS, +ODS:SP:20310239,1,"Carrefour",49.659729,2.228899,0,0,ODS:SA:CTP20310239,Europe/Paris,,ODS, +ODS:SP:20310242,1,"Centre",49.241666,1.968628,0,0,ODS:SA:CTP20310242,Europe/Paris,,ODS, +ODS:SP:20310243,1,"Centre",49.659729,2.149738,0,0,ODS:SA:CTP20310243,Europe/Paris,,ODS, +ODS:SP:20310244,1,"Ecole Primaire",49.661379,2.14777,0,0,ODS:SA:CTP20310244,Europe/Paris,,ODS, +ODS:SP:20310245,1,"Les Sources",49.655278,2.138898,0,0,ODS:SA:CTP20310245,Europe/Paris,,ODS, +ODS:SP:20310247,1,"Mairie",49.596569,1.951958,0,0,ODS:SA:CTP20310247,Europe/Paris,,ODS, +ODS:SP:20310249,1,"VERTE FONTAINE",49.603934,1.938262,0,0,ODS:SA:CTP20310249,Europe/Paris,,ODS, +ODS:SP:20310250,1,"Ancienne mare",49.498049,2.14666,0,0,ODS:SA:CTP20203771,Europe/Paris,,ODS, +ODS:SP:20310251,1,"Centre",49.568058,1.768895,0,0,ODS:SA:CTP20310251,Europe/Paris,,ODS, +ODS:SP:20310254,1,"Collège Jean MOULIN",49.648128,1.723196,0,0,ODS:SA:CTP20310254,Europe/Paris,,ODS, +ODS:SP:20310255,1,"Bout d'En Haut",49.214924,2.179012,0,0,ODS:SA:CTP20310255,Europe/Paris,,ODS, +ODS:SP:20310256,1,"Jardins",49.212624,2.185561,0,0,ODS:SA:CTP20310256,Europe/Paris,,ODS, +ODS:SP:20310258,1,"Centre-Eglise",49.210526,2.189421,0,0,ODS:SA:CTP20310258,Europe/Paris,,ODS, +ODS:SP:20310259,1,"Centre",49.733888,1.825015,0,0,ODS:SA:CTP20310259,Europe/Paris,,ODS, +ODS:SP:20310261,1,"Centre",49.589293,2.147846,0,0,ODS:SA:CTP20204002,Europe/Paris,,ODS, +ODS:SP:20310264,1,"Rd 35",49.255551,1.98194,0,0,ODS:SA:CTP20310264,Europe/Paris,,ODS, +ODS:SP:20310266,1,"Heulecourt Ecole",49.242225,1.991129,0,0,ODS:SA:CTP20310266,Europe/Paris,,ODS, +ODS:SP:20310269,1,"Fresneaux",49.280549,2.00361,0,0,ODS:SA:CTP20203710,Europe/Paris,,ODS, +ODS:SP:20310270,1,"L'Ormeteau",49.300604,2.012027,0,0,ODS:SA:CTP20310270,Europe/Paris,,ODS, +ODS:SP:20310271,1,"Tirmont",49.293335,2.025273,0,0,ODS:SA:CTP20310271,Europe/Paris,,ODS, +ODS:SP:20310275,1,"Collège Gérard Philipe",49.564741,2.222118,0,0,ODS:SA:CTP20310275,Europe/Paris,,ODS, +ODS:SP:20310277,1,"Petit FROISSY",49.573563,2.212916,0,0,ODS:SA:CTP20310277,Europe/Paris,,ODS, +ODS:SP:20310281,1,"Rue de Grez",49.623609,1.96777,0,0,ODS:SA:CTP20310281,Europe/Paris,,ODS, +ODS:SP:20310282,1,"Immaculée Conception",49.616281,1.96284,0,0,ODS:SA:CTP20310282,Europe/Paris,,ODS, +ODS:SP:20310283,1,"Rue de Grez",49.61611,1.9625,0,0,ODS:SA:CTP20203520,Europe/Paris,,ODS, +ODS:SP:20310289,1,"Collège Victor HUGO",49.28321,1.769801,0,0,ODS:SA:CTP20310289,Europe/Paris,,ODS, +ODS:SP:20310290,1,"Collège Pablo PICASSO",49.286552,1.76463,0,0,ODS:SA:CTP20310290,Europe/Paris,,ODS, +ODS:SP:20310291,1,"Gare Sncf",49.285539,1.783741,0,0,TRN:SA:DUA8738124,Europe/Paris,,ODS, +ODS:SP:20310292,1,"Lycées",49.285322,1.780096,0,0,ODS:SA:CTP20310292,Europe/Paris,,ODS, +ODS:SP:20310293,1,"Collège Jeanne d'Arc",49.278592,1.777448,0,0,ODS:SA:CTP20310293,Europe/Paris,,ODS, +ODS:SP:20310294,1,"Centre",49.496387,1.894737,0,0,ODS:SA:CTP20310294,Europe/Paris,,ODS, +ODS:SP:20310295,1,"Scolaire GOURCHELLES",49.730559,1.780284,0,0,ODS:SA:CTP20310295,Europe/Paris,,ODS, +ODS:SP:20310296,1,"Collège ROLLON",49.480937,1.720242,0,0,ODS:SA:CTP20310296,Europe/Paris,,ODS, +ODS:SP:20310298,1,"lycée Saint Hildevert",49.482117,1.728523,0,0,ODS:SA:CTP20310298,Europe/Paris,,ODS, +ODS:SP:20310299,1,"ferme de Gouy",49.693639,2.21658,0,0,ODS:SA:CTP20310299,Europe/Paris,,ODS, +ODS:SP:20310300,1,"Place Barbier",49.665,1.94083,0,0,ODS:SA:CTP20310300,Europe/Paris,,ODS, +ODS:SP:20310303,1,"Collège F.BUISSON",49.663778,1.944712,0,0,ODS:SA:CTP20310303,Europe/Paris,,ODS, +ODS:SP:20310305,1,"Lycée J.VERNE",49.662592,1.947433,0,0,ODS:SA:CTP20310305,Europe/Paris,,ODS, +ODS:SP:20310306,1,"Place Barbier",49.665007,1.940847,0,0,ODS:SA:CTP20310300,Europe/Paris,,ODS, +ODS:SP:20310307,1,"Collège F.BUISSON",49.663778,1.944712,0,0,ODS:SA:CTP20310303,Europe/Paris,,ODS, +ODS:SP:20310308,1,"Ecole",49.56472,1.89472,0,0,ODS:SA:CTP20310308,Europe/Paris,,ODS, +ODS:SP:20310309,1,"Centre",49.639446,1.978627,0,0,ODS:SA:CTP20310309,Europe/Paris,,ODS, +ODS:SP:20310310,1,"Grumesnil",49.368049,2.02638,0,0,ODS:SA:CTP20201259,Europe/Paris,,ODS, +ODS:SP:20310312,1,"Damval",49.195275,1.851678,0,0,ODS:SA:CTP20310312,Europe/Paris,,ODS, +ODS:SP:20310313,1,"RD153",49.186666,1.853628,0,0,ODS:SA:CTP20310313,Europe/Paris,,ODS, +ODS:SP:20310314,1,"Mesnil lance levée",49.202225,1.840848,0,0,ODS:SA:CTP20310314,Europe/Paris,,ODS, +ODS:SP:20310316,1,"Centre",49.654999,1.93583,0,0,ODS:SA:CTP20310317,Europe/Paris,,ODS, +ODS:SP:20310317,1,"Centre",49.655108,1.935566,0,0,ODS:SA:CTP20310317,Europe/Paris,,ODS, +ODS:SP:20310318,1,"Bazincourt",49.501948,1.809456,0,0,ODS:SA:CTP20310318,Europe/Paris,,ODS, +ODS:SP:20310319,1,"Bellefontaine",49.521387,1.815015,0,0,ODS:SA:CTP20310319,Europe/Paris,,ODS, +ODS:SP:20310320,1,"Ecole",49.496116,1.804456,0,0,ODS:SA:CTP20310320,Europe/Paris,,ODS, +ODS:SP:20310321,1,"Ecole",49.49611,1.80444,0,0,ODS:SA:CTP20310320,Europe/Paris,,ODS, +ODS:SP:20310322,1,"Centre",49.51277,1.878329,0,0,ODS:SA:CTP20203431,Europe/Paris,,ODS, +ODS:SP:20310323,1,"La briqueterie",49.535271,1.826109,0,0,ODS:SA:CTP20310323,Europe/Paris,,ODS, +ODS:SP:20310324,1,"Hardencourt",49.298609,1.873051,0,0,ODS:SA:CTP20310324,Europe/Paris,,ODS, +ODS:SP:20310326,1,"Scolaire HARDIVILLERS Lieu dit Les Phosphates",49.618577,2.245067,0,0,ODS:SA:CTP20310326,Europe/Paris,,ODS, +ODS:SP:20310327,1,"centre",49.303886,1.938348,0,0,ODS:SA:CTP20310327,Europe/Paris,,ODS, +ODS:SP:20310329,1,"Eglise",49.512777,1.936398,0,0,ODS:SA:CTP20310329,Europe/Paris,,ODS, +ODS:SP:20310330,1,"Eglise",49.4875,2.24444,0,0,ODS:SA:CTP20203789,Europe/Paris,,ODS, +ODS:SP:20310331,1,"La Dreue",49.626943,1.884439,0,0,ODS:SA:CTP20310331,Europe/Paris,,ODS, +ODS:SP:20310332,1,"Rue Principale",49.627778,1.870273,0,0,ODS:SA:CTP20310332,Europe/Paris,,ODS, +ODS:SP:20310333,1,"Centre",49.583329,2.01083,0,0,ODS:SA:CTP20310333,Europe/Paris,,ODS, +ODS:SP:20310335,1,"Centre",49.333884,2.262791,0,0,ODS:SA:CTP20310335,Europe/Paris,,ODS, +ODS:SP:20310336,1,"Chemin du Brulé",49.488055,2.010008,0,0,ODS:SA:CTP20310336,Europe/Paris,,ODS, +ODS:SP:20310337,1,"Hericourt sur Thérain",49.58,1.75722,0,0,ODS:SA:CTP20203415,Europe/Paris,,ODS, +ODS:SP:20310338,1,"Caillouel",49.353054,2.265851,0,0,ODT:SA:CTP21100182,Europe/Paris,,ODS, +ODS:SP:20310339,1,"Gare",49.35402,2.243053,0,0,ODS:SA:CTP20310339,Europe/Paris,,ODS, +ODS:SP:20310340,1,"Laiterie",49.360556,2.243631,0,0,ODS:SA:CTP20310340,Europe/Paris,,ODS, +ODS:SP:20310341,1,"Les Hurhauts",49.353879,2.25305,0,0,ODS:SA:CTP20310341,Europe/Paris,,ODS, +ODS:SP:20310342,1,"Marguerie",49.366115,2.244741,0,0,ODS:SA:CTP20310342,Europe/Paris,,ODS, +ODS:SP:20310343,1,"Friancourt",49.376379,1.97805,0,0,ODS:SA:CTP20201253,Europe/Paris,,ODS, +ODS:SP:20310345,1,"Mare",49.62666,2.03388,0,0,ODS:SA:CTP20203380,Europe/Paris,,ODS, +ODS:SP:20310346,1,"La Place",49.483051,1.915001,0,0,ODS:SA:CTP20201287,Europe/Paris,,ODS, +ODS:SP:20310347,1,"Rue de l'Eglise",49.465551,1.899159,0,0,ODS:SA:CTP20201286,Europe/Paris,,ODS, +ODS:SP:20310349,1,"Centre",49.337337,2.149958,0,0,ODS:SA:CTP20310349,Europe/Paris,,ODS, +ODS:SP:20310351,1,"Place",49.334726,2.14113,0,0,ODS:SA:CTP20310351,Europe/Paris,,ODS, +ODS:SP:20310352,1,"Centre",49.303885,1.878899,0,0,ODS:SA:CTP20310352,Europe/Paris,,ODS, +ODS:SP:20310353,1,"Chair à loup",49.313051,1.95666,0,0,ODS:SA:CTP20310353,Europe/Paris,,ODS, +ODS:SP:20310355,1,"Jouy le bois",49.316387,1.961947,0,0,ODS:SA:CTP20310355,Europe/Paris,,ODS, +ODS:SP:20310356,1,"Jouy le bois",49.316109,1.96222,0,0,ODS:SA:CTP20310355,Europe/Paris,,ODS, +ODS:SP:20310357,1,"Les Horgnes",49.325276,1.941398,0,0,ODS:SA:CTP20310357,Europe/Paris,,ODS, +ODS:SP:20310359,1,"Quatre Vents",49.512214,2.089574,0,0,ODS:SA:CTP20310359,Europe/Paris,,ODS, +ODS:SP:20310360,1,"Centre",49.518288,2.086385,0,0,ODS:SA:CTP20310360,Europe/Paris,,ODS, +ODS:SP:20310361,1,"Village",49.518003,2.087656,0,0,ODS:SA:CTP20310361,Europe/Paris,,ODS, +ODS:SP:20310363,1,"Ecole",49.268514,2.234245,0,0,ODS:SA:CTP20310363,Europe/Paris,,ODS, +ODS:SP:20310364,1,"Les Beauchamps",49.271801,2.232934,0,0,ODT:SA:CTP21100990,Europe/Paris,,ODS, +ODS:SP:20310369,1,"Bois de Molle",49.321946,2.093899,0,0,ODS:SA:CTP20310369,Europe/Paris,,ODS, +ODS:SP:20310370,1,"Centre",49.310836,2.101959,0,0,ODS:SA:CTP20310370,Europe/Paris,,ODS, +ODS:SP:20310372,1,"Grande rue",49.33166,2.04111,0,0,ODS:SA:CTP20213670,Europe/Paris,,ODS, +ODS:SP:20310373,1,"Malassise",49.326945,2.065289,0,0,ODS:SA:CTP20310373,Europe/Paris,,ODS, +ODS:SP:20310374,1,"Mairie",49.52916,2.202769,0,0,ODS:SA:CTP20310374,Europe/Paris,,ODS, +ODS:SP:20310376,1,"Cabane",49.486778,1.950137,0,0,ODS:SA:CTP20310376,Europe/Paris,,ODS, +ODS:SP:20310377,1,"Centre",49.486667,1.950567,0,0,ODS:SA:CTP20310377,Europe/Paris,,ODS, +ODS:SP:20310380,1,"Gare",49.41055,2.315001,0,0,ODS:SA:CTP20310380,Europe/Paris,,ODS, +ODS:SP:20310382,1,"Grande Rue",49.29617,2.159943,0,0,ODS:SA:CTP20310382,Europe/Paris,,ODS, +ODS:SP:20310383,1,"Parfondeval",49.289445,2.13668,0,0,ODS:SA:CTP20310383,Europe/Paris,,ODS, +ODS:SP:20310385,1,"Centre",49.345276,1.897518,0,0,ODS:SA:CTP20310385,Europe/Paris,,ODS, +ODS:SP:20310386,1,"Gare",49.352776,1.921679,0,0,ODS:SA:CTP20310386,Europe/Paris,,ODS, +ODS:SP:20310387,1,"Les Plards Centre",49.357775,1.908348,0,0,ODS:SA:CTP20310387,Europe/Paris,,ODS, +ODS:SP:20310388,1,"Le Montcornet",49.355006,1.893898,0,0,ODS:SA:CTP20310388,Europe/Paris,,ODS, +ODS:SP:20310389,1,"Centre",49.345269,1.8975,0,0,ODS:SA:CTP20310385,Europe/Paris,,ODS, +ODS:SP:20310390,1,"Le Bohon",49.325836,1.892238,0,0,ODS:SA:CTP20310390,Europe/Paris,,ODS, +ODS:SP:20310392,1,"Route de l'Huyere",49.426107,1.931927,0,0,ODS:SA:CTP20310392,Europe/Paris,,ODS, +ODS:SP:20310393,1,"Poste",49.448676,1.900825,0,0,ODS:SA:CTP20201010,Europe/Paris,,ODS, +ODS:SP:20310394,1,"Balleux",49.553612,1.882782,0,0,ODS:SA:CTP20310394,Europe/Paris,,ODS, +ODS:SP:20310396,1,"Centre",49.535836,1.869457,0,0,ODS:SA:CTP20310396,Europe/Paris,,ODS, +ODS:SP:20310397,1,"Centre",49.558057,2.172239,0,0,ODS:SA:CTP20310397,Europe/Paris,,ODS, +ODS:SP:20310398,1,"Centre",49.495549,2.210551,0,0,ODS:SA:CTP20310398,Europe/Paris,,ODS, +ODS:SP:20310399,1,"MICHELET",49.400385,1.795124,0,0,ODS:SA:CTP20310399,Europe/Paris,,ODS, +ODS:SP:20310401,1,"La petite Landelle Centre",49.391577,1.880791,0,0,ODS:SA:CTP20310401,Europe/Paris,,ODS, +ODS:SP:20310402,1,"La petite Landelle - rue de la vallée surelle",49.391006,1.876888,0,0,ODS:SA:CTP20310402,Europe/Paris,,ODS, +ODS:SP:20310403,1,"Centre",49.39972,1.87472,0,0,ODS:SA:CTP20213737,Europe/Paris,,ODS, +ODS:SP:20310404,1,"Place",49.706389,1.745844,0,0,ODS:SA:CTP20310404,Europe/Paris,,ODS, +ODS:SP:20310405,1,"Place",49.70638,1.74583,0,0,ODS:SA:CTP20310404,Europe/Paris,,ODS, +ODS:SP:20310406,1,"Rothois Centre",49.717507,1.752817,0,0,ODS:SA:CTP20310406,Europe/Paris,,ODS, +ODS:SP:20310407,1,"Frettencourt Abribus",49.694996,1.726106,0,0,ODS:SA:CTP20310407,Europe/Paris,,ODS, +ODS:SP:20310410,1,"école",49.24222,1.815271,0,0,ODS:SA:CTP20310410,Europe/Paris,,ODS, +ODS:SP:20310411,1,"Eglise",49.680829,2.091659,0,0,ODS:SA:CTP20203393,Europe/Paris,,ODS, +ODS:SP:20310412,1,"Centre",49.686659,2.0125,0,0,ODS:SA:CTP20310412,Europe/Paris,,ODS, +ODS:SP:20310413,1,"Abri",49.196379,1.93,0,0,ODS:SA:CTP20310413,Europe/Paris,,ODS, +ODS:SP:20310414,1,"Romesnil",49.18722,1.946381,0,0,ODS:SA:CTP20310414,Europe/Paris,,ODS, +ODS:SP:20310415,1,"Centre",49.411388,1.837237,0,0,ODS:SA:CTP20310415,Europe/Paris,,ODS, +ODS:SP:20310416,1,"L'aunay",49.407815,1.858799,0,0,ODS:SA:CTP20310416,Europe/Paris,,ODS, +ODS:SP:20310417,1,"Les routis",49.394025,1.826006,0,0,ODS:SA:CTP20310417,Europe/Paris,,ODS, +ODS:SP:20310418,1,"Centre - Rue des Ecoles",49.411374,1.83833,0,0,ODS:SA:CTP20310418,Europe/Paris,,ODS, +ODS:SP:20310419,1,"Centre",49.305836,2.12252,0,0,ODT:SA:CTP21100887,Europe/Paris,,ODS, +ODS:SP:20310420,1,"Mairie - Ecole",49.626119,2.180288,0,0,ODS:SA:CTP20310420,Europe/Paris,,ODS, +ODS:SP:20310421,1,"Ecole",49.296945,2.10946,0,0,ODT:SA:CTP21100955,Europe/Paris,,ODS, +ODS:SP:20310424,1,"Ecole",49.45028,2.251391,0,0,ODS:SA:CTP20310424,Europe/Paris,,ODS, +ODS:SP:20310425,1,"Fayel-Bocage",49.312775,1.928898,0,0,ODS:SA:CTP20310425,Europe/Paris,,ODS, +ODS:SP:20310427,1,"Centre",49.626389,2.108628,0,0,ODS:SA:CTP20310427,Europe/Paris,,ODS, +ODS:SP:20310428,1,"Centre",49.647218,1.992225,0,0,ODS:SA:CTP20310428,Europe/Paris,,ODS, +ODS:SP:20310430,1,"école",49.301381,1.987771,0,0,ODS:SA:CTP20310430,Europe/Paris,,ODS, +ODS:SP:20310432,1,"Quesnel Aubry",49.508616,2.308631,0,0,ODS:SA:CTP20203785,Europe/Paris,,ODS, +ODS:SP:20310433,1,"Place Marcel Dassault",49.634169,2.140568,0,0,ODS:SA:CTP20310433,Europe/Paris,,ODS, +ODS:SP:20310435,1,"La Fonderie Carrefour",49.349167,1.880288,0,0,ODS:SA:CTP20310435,Europe/Paris,,ODS, +ODS:SP:20310436,1,"La fonderie Centre",49.345006,1.880568,0,0,ODS:SA:CTP20310436,Europe/Paris,,ODS, +ODS:SP:20310437,1,"Les Maisonettes - Rue Gras",49.346109,1.85305,0,0,ODS:SA:CTP20310437,Europe/Paris,,ODS, +ODS:SP:20310438,1,"école",49.334159,1.871941,0,0,ODS:SA:CTP20310438,Europe/Paris,,ODS, +ODS:SP:20310441,1,"Place Joseph Fournier",49.378051,1.92499,0,0,ODS:SA:CTP20310441,Europe/Paris,,ODS, +ODS:SP:20310442,1,"La côte d'or",49.382227,1.911128,0,0,ODS:SA:CTP20310442,Europe/Paris,,ODS, +ODS:SP:20310445,1,"Rue Anceau",49.379151,1.924156,0,0,ODS:SA:CTP20310443,Europe/Paris,,ODS, +ODS:SP:20310446,1,"Lhéraule",49.486471,1.930588,0,0,ODS:SA:CTP20201288,Europe/Paris,,ODS, +ODS:SP:20310447,1,"Centre",49.233336,1.906128,0,0,ODS:SA:CTP20310451,Europe/Paris,,ODS, +ODS:SP:20310449,1,"Gare",49.220557,1.904739,0,0,ODS:SA:CTP20310449,Europe/Paris,,ODS, +ODS:SP:20310450,1,"Rd 566 - Le vivray",49.245555,1.889738,0,0,ODS:SA:CTP20310450,Europe/Paris,,ODS, +ODS:SP:20310451,1,"Centre",49.233329,1.90611,0,0,ODS:SA:CTP20310451,Europe/Paris,,ODS, +ODS:SP:20310453,1,"le boulleaume",49.200829,1.89694,0,0,ODS:SA:CTP20310453,Europe/Paris,,ODS, +ODS:SP:20310454,1,"Centre",49.190274,1.880848,0,0,ORM:SA:CTP28000032,Europe/Paris,,ODS, +ODS:SP:20310455,1,"Centre",49.605531,2.044538,0,0,ODS:SA:CTP20310455,Europe/Paris,,ODS, +ODS:SP:20310456,1,"Le petit lihus",49.611666,2.007237,0,0,ODS:SA:CTP20310456,Europe/Paris,,ODS, +ODS:SP:20310457,1,"Centre",49.414999,2.33138,0,0,ODS:SA:CTP20213622,Europe/Paris,,ODS, +ODS:SP:20310459,1,"école",49.256392,1.918887,0,0,ODS:SA:CTP20310459,Europe/Paris,,ODS, +ODS:SP:20310460,1,"Centre",49.600278,1.825285,0,0,ODS:SA:CTP20310460,Europe/Paris,,ODS, +ODS:SP:20310461,1,"Centre",49.600269,1.825271,0,0,ODS:SA:CTP20310460,Europe/Paris,,ODS, +ODS:SP:20310463,1,"Mairie",49.555008,2.118628,0,0,ODS:SA:CTP20310463,Europe/Paris,,ODS, +ODS:SP:20310464,1,"Mairie",49.554999,2.118611,0,0,ODS:SA:CTP20310463,Europe/Paris,,ODS, +ODS:SP:20310465,1,"Rougemaison",49.542708,2.098798,0,0,ODS:SA:CTP20310465,Europe/Paris,,ODS, +ODS:SP:20310466,1,"Mairie",49.510032,2.127766,0,0,ODS:SA:CTP20310466,Europe/Paris,,ODS, +ODS:SP:20310467,1,"Bois Gayant",49.582955,2.221331,0,0,ODS:SA:CTP20310467,Europe/Paris,,ODS, +ODS:SP:20310468,1,"Mairie",49.587247,2.220188,0,0,ODS:SA:CTP20310468,Europe/Paris,,ODS, +ODS:SP:20310469,1,"Mairie",49.587265,2.220216,0,0,ODS:SA:CTP20310468,Europe/Paris,,ODS, +ODS:SP:20310472,1,"Centre",49.573881,1.955271,0,0,ODS:SA:CTP20310472,Europe/Paris,,ODS, +ODS:SP:20310473,1,"Beaupré",49.51583,2.03388,0,0,ODS:SA:CTP20310473,Europe/Paris,,ODS, +ODS:SP:20310474,1,"Collège Philéas Lebègue",49.571387,1.950567,0,0,ODS:SA:CTP20310475,Europe/Paris,,ODS, +ODS:SP:20310475,1,"Collège Philéas Lebègue",49.57138,1.950551,0,0,ODS:SA:CTP20310475,Europe/Paris,,ODS, +ODS:SP:20310476,1,"Abri R. de La Vallée",49.522772,1.898261,0,0,ODS:SA:CTP20310476,Europe/Paris,,ODS, +ODS:SP:20310477,1,"Centre",49.547228,2.167519,0,0,ODS:SA:CTP20310477,Europe/Paris,,ODS, +ODS:SP:20310479,1,"Rue d'en bas",49.628057,2.409163,0,0,ODV:SA:CTP22510479,Europe/Paris,,ODS, +ODS:SP:20310480,1,"Le Moulin vert",49.298336,1.994459,0,0,ODS:SA:CTP20310480,Europe/Paris,,ODS, +ODS:SP:20310481,1,"Abribus",49.302769,1.98416,0,0,ODS:SA:CTP20201243,Europe/Paris,,ODS, +ODS:SP:20310482,1,"Campdeville",49.486667,2.026959,0,0,ODS:SA:CTP20310482,Europe/Paris,,ODS, +ODS:SP:20310483,1,"Cardonette",49.506666,2.039178,0,0,ODS:SA:CTP20310483,Europe/Paris,,ODS, +ODS:SP:20310486,1,"Gare",49.504859,1.989158,0,0,ODS:SA:CTP20203443,Europe/Paris,,ODS, +ODS:SP:20310487,1,"Etangs de Milly",49.494446,1.998628,0,0,ODS:SA:CTP20310487,Europe/Paris,,ODS, +ODS:SP:20310488,1,"Les Forges",49.492506,1.996128,0,0,ODS:SA:CTP20310488,Europe/Paris,,ODS, +ODS:SP:20310489,1,"Lotissement",49.498602,1.999782,0,0,ODS:SA:CTP20310489,Europe/Paris,,ODS, +ODS:SP:20310490,1,"Les Forges",49.492499,1.996109,0,0,ODS:SA:CTP20310488,Europe/Paris,,ODS, +ODS:SP:20310491,1,"Moimont",49.518056,1.992238,0,0,ODS:SA:CTP20310491,Europe/Paris,,ODS, +ODS:SP:20310492,1,"Mairie",49.50138,1.99777,0,0,ODS:SA:CTP20203444,Europe/Paris,,ODS, +ODS:SP:20310493,1,"Rd 70",49.670771,1.80512,0,0,ODS:SA:CTP20310493,Europe/Paris,,ODS, +ODS:SP:20310494,1,"Lotissement",49.663334,1.819448,0,0,ODS:SA:CTP20310494,Europe/Paris,,ODS, +ODS:SP:20310495,1,"eglise",49.666293,1.809968,0,0,ODS:SA:CTP20310495,Europe/Paris,,ODS, +ODS:SP:20310496,1,"La neuville",49.677807,1.814333,0,0,ODS:SA:CTP20310496,Europe/Paris,,ODS, +ODS:SP:20310497,1,"Scolaire MOLIENS",49.666518,1.810104,0,0,ODS:SA:CTP20310497,Europe/Paris,,ODS, +ODS:SP:20310498,1,"Pleuville",49.67028,1.80583,0,0,ODS:SA:CTP20310498,Europe/Paris,,ODS, +ODS:SP:20310501,1,"L'egouchet",49.66074,1.787156,0,0,ODS:SA:CTP20310501,Europe/Paris,,ODS, +ODS:SP:20310502,1,"Grand chemin",49.650884,1.790402,0,0,ODS:SA:CTP20310502,Europe/Paris,,ODS, +ODS:SP:20310503,1,"Ecole",49.210006,1.977519,0,0,ODS:SA:CTP20310503,Europe/Paris,,ODS, +ODS:SP:20310506,1,"Centre",49.195962,1.799551,0,0,ODS:SA:CTP20310506,Europe/Paris,,ODS, +ODS:SP:20310507,1,"Les Fermettes",49.190555,1.803068,0,0,ODS:SA:CTP20310507,Europe/Paris,,ODS, +ODS:SP:20310508,1,"Centre",49.195271,1.799721,0,0,ODS:SA:CTP20310506,Europe/Paris,,ODS, +ODS:SP:20310510,1,"La Vierge",49.218747,1.791523,0,0,ODS:SA:CTP20310510,Europe/Paris,,ODS, +ODS:SP:20310511,1,"Beaugrenier",49.22127,1.806996,0,0,ODS:SA:CTP20310511,Europe/Paris,,ODS, +ODS:SP:20310512,1,"Herouval",49.231442,1.787492,0,0,ODS:SA:CTP20310512,Europe/Paris,,ODS, +ODS:SP:20310513,1,"Le bout du bois",49.207186,1.816205,0,0,ODS:SA:CTP20310513,Europe/Paris,,ODS, +ODS:SP:20310514,1,"Le marais",49.216876,1.779349,0,0,ODS:SA:CTP20310514,Europe/Paris,,ODS, +ODS:SP:20310515,1,"Le Vouast",49.215556,1.793068,0,0,ODS:SA:CTP20310515,Europe/Paris,,ODS, +ODS:SP:20310516,1,"Mairie - Ecole",49.214886,1.782292,0,0,ODS:SA:CTP20310516,Europe/Paris,,ODS, +ODS:SP:20310517,1,"Valecourt",49.19759,1.778255,0,0,ODS:SA:CTP20310517,Europe/Paris,,ODS, +ODS:SP:20310518,1,"Les Couturelles",49.524719,2.2075,0,0,ODS:SA:CTP20310518,Europe/Paris,,ODS, +ODS:SP:20310519,1,"Coiseaux",49.494161,2.292219,0,0,ODS:SA:CTP20203786,Europe/Paris,,ODS, +ODS:SP:20310521,1,"Mairie - Ecole",49.508049,2.271927,0,0,ODS:SA:CTP20310521,Europe/Paris,,ODS, +ODS:SP:20310522,1,"La Fourche",49.268785,2.184901,0,0,ODS:SA:CTP20310522,Europe/Paris,,ODS, +ODS:SP:20310523,1,"Centre",49.263363,2.188432,0,0,ODS:SA:CTP20310523,Europe/Paris,,ODS, +ODS:SP:20310526,1,"Abribus",49.581109,1.87083,0,0,ODS:SA:CTP20310526,Europe/Paris,,ODS, +ODS:SP:20310528,1,"Centre",49.580558,1.871676,0,0,ODS:SA:CTP20310528,Europe/Paris,,ODS, +ODS:SP:20310529,1,"FERME de LIMERMONT",49.569066,1.858629,0,0,ODS:SA:CTP20310529,Europe/Paris,,ODS, +ODS:SP:20310530,1,"Espace Jean DELOZIERE",49.57833,1.87388,0,0,ODS:SA:CTP20310530,Europe/Paris,,ODS, +ODS:SP:20310531,1,"Montcrux",49.595106,2.406989,0,0,ODS:SA:CTP20310531,Europe/Paris,,ODS, +ODS:SP:20310532,1,"église",49.59166,2.39416,0,0,ODS:SA:CTP20203303,Europe/Paris,,ODS, +ODS:SP:20310533,1,"Centre",49.326115,2.249461,0,0,ODS:SA:CTP20310533,Europe/Paris,,ODS, +ODS:SP:20310534,1,"Mouchy la Ville",49.331685,2.283618,0,0,ODS:SA:CTP20310534,Europe/Paris,,ODS, +ODS:SP:20310535,1,"Centre",49.530838,2.140849,0,0,ODS:SA:CTP20310535,Europe/Paris,,ODS, +ODS:SP:20310537,1,"Centre",49.629441,1.77694,0,0,ODS:SA:CTP20310537,Europe/Paris,,ODS, +ODS:SP:20310538,1,"Collège A. de NOAILLES",49.327935,2.195779,0,0,ODS:SA:CTP20310538,Europe/Paris,,ODS, +ODS:SP:20310539,1,"Centre",49.550557,2.211129,0,0,ODS:SA:CTP20310539,Europe/Paris,,ODS, +ODS:SP:20310540,1,"La Mare d'Ovillers",49.254506,2.205333,0,0,ODS:SA:CTP20213645,Europe/Paris,,ODS, +ODS:SP:20310541,1,"Centre",49.27119,2.214029,0,0,ODS:SA:CTP20310541,Europe/Paris,,ODS, +ODS:SP:20310542,1,"Centre",49.552207,2.26243,0,0,ODS:SA:CTP20310542,Europe/Paris,,ODS, +ODS:SP:20310543,1,"Centre",49.69666,2.0375,0,0,ODS:SA:CTP20310543,Europe/Paris,,ODS, +ODS:SP:20310546,1,"Epeaux",49.614564,1.820979,0,0,ODS:SA:CTP20310546,Europe/Paris,,ODS, +ODS:SP:20310547,1,"Mairie (L'Excuse)",49.610277,1.845016,0,0,ODS:SA:CTP20310547,Europe/Paris,,ODS, +ODS:SP:20310550,1,"Le Vivier Danger",49.434445,1.920018,0,0,ODS:SA:CTP20310550,Europe/Paris,,ODS, +ODS:SP:20310551,1,"Ecole",49.416381,1.92277,0,0,ODS:SA:CTP20310551,Europe/Paris,,ODS, +ODS:SP:20310552,1,"Rue de la vallée",49.41944,1.9175,0,0,ODS:SA:CTP20203222,Europe/Paris,,ODS, +ODS:SP:20310553,1,"Le Pont qui Penche",49.417427,1.937206,0,0,ODS:SA:CTP20310553,Europe/Paris,,ODS, +ODS:SP:20310555,1,"Chêne Notre Dame",49.417494,1.935826,0,0,ODS:SA:CTP20310555,Europe/Paris,,ODS, +ODS:SP:20310556,1,"Centre",49.494999,2.16083,0,0,ODS:SA:CTP20310556,Europe/Paris,,ODS, +ODS:SP:20310557,1,"Le bois Saint Martin",49.516947,2.180849,0,0,ODS:SA:CTP20310557,Europe/Paris,,ODS, +ODS:SP:20310558,1,"Boursines",49.491946,2.177519,0,0,ODS:SA:CTP20203794,Europe/Paris,,ODS, +ODS:SP:20310559,1,"Henu",49.487507,2.174459,0,0,ODS:SA:CTP20310559,Europe/Paris,,ODS, +ODS:SP:20310560,1,"La Boudinière",49.509447,2.19696,0,0,ODS:SA:CTP20203793,Europe/Paris,,ODS, +ODS:SP:20310561,1,"Centre",49.495006,2.160849,0,0,ODS:SA:CTP20310556,Europe/Paris,,ODS, +ODS:SP:20310562,1,"Grand Oudeuil",49.551948,2.038068,0,0,ODS:SA:CTP20310562,Europe/Paris,,ODS, +ODS:SP:20310563,1,"Ribeauvillé rue des saules",49.556319,2.025588,0,0,ODS:SA:CTP20310563,Europe/Paris,,ODS, +ODS:SP:20310564,1,"Eglise",49.54722,2.02888,0,0,ODS:SA:CTP20310564,Europe/Paris,,ODS, +ODS:SP:20310565,1,"La neuve rue",49.591848,2.223259,0,0,ODS:SA:CTP20310565,Europe/Paris,,ODS, +ODS:SP:20310566,1,"Centre",49.595839,2.181398,0,0,ODS:SA:CTP20310566,Europe/Paris,,ODS, +ODS:SP:20310567,1,"Centre",49.666389,2.324741,0,0,ODV:SA:CTP22510570,Europe/Paris,,ODS, +ODS:SP:20310568,1,"Ecole",49.668302,2.323958,0,0,ODS:SA:CTP20310568,Europe/Paris,,ODS, +ODS:SP:20310569,1,"Rue de la liberation",49.663506,2.318148,0,0,ODS:SA:CTP20310569,Europe/Paris,,ODS, +ODS:SP:20310570,1,"Centre",49.66638,2.324721,0,0,ODV:SA:CTP22510570,Europe/Paris,,ODS, +ODS:SP:20310571,1,"Chaudry",49.195555,1.752517,0,0,ODS:SA:CTP20310571,Europe/Paris,,ODS, +ODS:SP:20310572,1,"Centre",49.204161,1.73888,0,0,ODS:SA:CTP20310572,Europe/Paris,,ODS, +ODS:SP:20310573,1,"Le détroit",49.478056,1.950848,0,0,ODS:SA:CTP20310573,Europe/Paris,,ODS, +ODS:SP:20310576,1,"Pommereux",49.324719,1.88833,0,0,ODS:SA:CTP20203614,Europe/Paris,,ODS, +ODS:SP:20310577,1,"Houssoye-RD1001",49.345404,2.188854,0,0,ODS:SA:CTP20310577,Europe/Paris,,ODS, +ODS:SP:20310579,1,"Mairie",49.348781,2.195458,0,0,ODS:SA:CTP20310579,Europe/Paris,,ODS, +ODS:SP:20310580,1,"Blainville",49.339932,2.19485,0,0,ODS:SA:CTP20310580,Europe/Paris,,ODS, +ODS:SP:20310581,1,"Rue des faïenciers-Pierrepont",49.355545,2.187903,0,0,ODS:SA:CTP20203937,Europe/Paris,,ODS, +ODS:SP:20310582,1,"353 rue de Pierrepont-Pierrepont",49.35722,2.18222,0,0,ODS:SA:CTP20310582,Europe/Paris,,ODS, +ODS:SP:20310583,1,"Centre",49.345551,2.189159,0,0,ODS:SA:CTP20310583,Europe/Paris,,ODS, +ODS:SP:20310584,1,"Mairie",49.34888,2.195271,0,0,ODS:SA:CTP20310579,Europe/Paris,,ODS, +ODS:SP:20310585,1,"Carrefour",49.335501,1.925212,0,0,ODS:SA:CTP20310585,Europe/Paris,,ODS, +ODS:SP:20310586,1,"Rue du Petit Boissy",49.338055,1.928068,0,0,ODS:SA:CTP20310586,Europe/Paris,,ODS, +ODS:SP:20310589,1,"Scolaire PREVILLERS",49.611389,1.997236,0,0,ODS:SA:CTP20310589,Europe/Paris,,ODS, +ODS:SP:20310590,1,"Le but david - calvaire",49.409254,1.762746,0,0,ODS:SA:CTP20310590,Europe/Paris,,ODS, +ODS:SP:20310591,1,"Le fil",49.406387,1.789457,0,0,ODS:SA:CTP20310591,Europe/Paris,,ODS, +ODS:SP:20310593,1,"Le Mont Marlet",49.41271,1.77346,0,0,ODS:SA:CTP20310593,Europe/Paris,,ODS, +ODS:SP:20310594,1,"Centre",49.413881,1.7825,0,0,ODS:SA:CTP20203634,Europe/Paris,,ODS, +ODS:SP:20310595,1,"Soumarqué",49.420001,1.80583,0,0,ODS:SA:CTP20310595,Europe/Paris,,ODS, +ODS:SP:20310596,1,"Château",49.216711,2.236186,0,0,ODS:SA:CTP20310596,Europe/Paris,,ODS, +ODS:SP:20310598,1,"Mairie",49.582228,2.191128,0,0,ODS:SA:CTP20310598,Europe/Paris,,ODS, +ODS:SP:20310602,1,"Centre",49.747229,1.770845,0,0,ODS:SA:CTP20310602,Europe/Paris,,ODS, +ODS:SP:20310603,1,"Cité Colin",49.416946,2.005848,0,0,ODS:SA:CTP20310603,Europe/Paris,,ODS, +ODS:SP:20310604,1,"Mairie",49.408056,2.006958,0,0,ODS:SA:CTP20310604,Europe/Paris,,ODS, +ODS:SP:20310606,1,"Centre",49.243609,1.846379,0,0,ODS:SA:CTP20310606,Europe/Paris,,ODS, +ODS:SP:20310607,1,"Centre",49.446109,2.285551,0,0,ODS:SA:CTP20213720,Europe/Paris,,ODS, +ODS:SP:20310608,1,"Ecole",49.302002,2.08935,0,0,ODT:SA:CTP21100886,Europe/Paris,,ODS, +ODS:SP:20310609,1,"Eglise",49.519446,2.22196,0,0,ODS:SA:CTP20310609,Europe/Paris,,ODS, +ODS:SP:20310611,1,"Le Hamel",49.644429,2.019725,0,0,ODS:SA:CTP20310611,Europe/Paris,,ODS, +ODS:SP:20310612,1,"Centre",49.648132,2.418762,0,0,ODS:SA:CTP20203295,Europe/Paris,,ODS, +ODS:SP:20310615,1,"Carroix",49.713889,1.822235,0,0,ODS:SA:CTP20310615,Europe/Paris,,ODS, +ODS:SP:20310617,1,"Bernapré",49.704727,1.787235,0,0,ODS:SA:CTP20310617,Europe/Paris,,ODS, +ODS:SP:20310619,1,"Gare",49.709447,1.796395,0,0,ODS:SA:CTP20310619,Europe/Paris,,ODS, +ODS:SP:20310620,1,"Centre",49.581948,2.083068,0,0,ODS:SA:CTP20310620,Europe/Paris,,ODS, +ODS:SP:20310622,1,"Centre",49.59863,1.995275,0,0,ODS:SA:CTP20203377,Europe/Paris,,ODS, +ODS:SP:20310625,1,"Boissy",49.577605,1.934131,0,0,ODS:SA:CTP20310625,Europe/Paris,,ODS, +ODS:SP:20310626,1,"LE MESNIL VALERAN",49.576898,1.903667,0,0,ODS:SA:CTP20310626,Europe/Paris,,ODS, +ODS:SP:20310628,1,"Roy",49.582223,1.923886,0,0,ODS:SA:CTP20310628,Europe/Paris,,ODS, +ODS:SP:20310631,1,"Roye - Rue des petits prés",49.35333,2.181379,0,0,ODS:SA:CTP20310631,Europe/Paris,,ODS, +ODS:SP:20310632,1,"Roye",49.354148,2.177359,0,0,ODS:SA:CTP20201640,Europe/Paris,,ODS, +ODS:SP:20310635,1,"Centre",49.678336,1.917516,0,0,ODS:SA:CTP20310635,Europe/Paris,,ODS, +ODS:SP:20310637,1,"Amuchy - 1",49.475007,1.844456,0,0,ODS:SA:CTP20310637,Europe/Paris,,ODS, +ODS:SP:20310638,1,"Bois Aubert",49.502188,1.834608,0,0,ODS:SA:CTP20310638,Europe/Paris,,ODS, +ODS:SP:20310639,1,"Corbeauval",49.480837,1.821956,0,0,ODS:SA:CTP20310639,Europe/Paris,,ODS, +ODS:SP:20310641,1,"Goulancourt",49.474447,1.828627,0,0,ODS:SA:CTP20310641,Europe/Paris,,ODS, +ODS:SP:20310643,1,"Groscourt",49.507351,1.854006,0,0,ODS:SA:CTP20310643,Europe/Paris,,ODS, +ODS:SP:20310646,1,"Le Bray la fourche",49.471597,1.818437,0,0,ODS:SA:CTP20310646,Europe/Paris,,ODS, +ODS:SP:20310647,1,"Montperthuis",49.498057,1.856957,0,0,ODS:SA:CTP20310647,Europe/Paris,,ODS, +ODS:SP:20310648,1,"Centre",49.486387,1.834543,0,0,ODS:SA:CTP20201275,Europe/Paris,,ODS, +ODS:SP:20310652,1,"Bléquencourt",49.253042,2.011929,0,0,ODS:SA:CTP20310652,Europe/Paris,,ODS, +ODS:SP:20310653,1,"Mairie - Ecole",49.264721,1.99388,0,0,ODS:SA:CTP20310653,Europe/Paris,,ODS, +ODS:SP:20310656,1,"Centre",49.185828,1.834968,0,0,ODS:SA:CTP20310656,Europe/Paris,,ODS, +ODS:SP:20310657,1,"Mairie",49.639133,2.431567,0,0,ODV:SA:CTP22510657,Europe/Paris,,ODS, +ODS:SP:20310658,1,"La vigne",49.348329,1.773881,0,0,ODS:SA:CTP20310658,Europe/Paris,,ODS, +ODS:SP:20310659,1,"Droitecour",49.329726,1.775288,0,0,ODS:SA:CTP20310659,Europe/Paris,,ODS, +ODS:SP:20310660,1,"Ecole",49.391999,1.780211,0,0,ODS:SA:CTP20310660,Europe/Paris,,ODS, +ODS:SP:20310661,1,"La vigne",49.34722,1.77333,0,0,ODS:SA:CTP20310658,Europe/Paris,,ODS, +ODS:SP:20310662,1,"Mairie",49.35528,1.768053,0,0,ODS:SA:CTP20310662,Europe/Paris,,ODS, +ODS:SP:20310663,1,"Parc Duclos",49.35277,1.771659,0,0,ODS:SA:CTP20310663,Europe/Paris,,ODS, +ODS:SP:20310665,1,"Stade",49.359168,1.769441,0,0,ODS:SA:CTP20310665,Europe/Paris,,ODS, +ODS:SP:20310666,1,"Ecole",49.324999,2.16472,0,0,ODS:SA:CTP20310666,Europe/Paris,,ODS, +ODS:SP:20310668,1,"Centre",49.32333,2.15805,0,0,ODS:SA:CTP20203933,Europe/Paris,,ODS, +ODS:SP:20310669,1,"Tillard",49.333614,2.17224,0,0,ODS:SA:CTP20310669,Europe/Paris,,ODS, +ODS:SP:20310672,1,"Place",49.679439,1.99138,0,0,ODS:SA:CTP20310672,Europe/Paris,,ODS, +ODS:SP:20310673,1,"Eglise",49.548056,1.853066,0,0,ODS:SA:CTP20310673,Europe/Paris,,ODS, +ODS:SP:20310674,1,"La Halle",49.549168,1.853626,0,0,ODS:SA:CTP20310674,Europe/Paris,,ODS, +ODS:SP:20310679,1,"Bois l'Abbé",49.570936,2.283684,0,0,ODS:SA:CTP20310679,Europe/Paris,,ODS, +ODS:SP:20310680,1,"Bois l'Abbé",49.570936,2.283684,0,0,ODS:SA:CTP20310679,Europe/Paris,,ODS, +ODS:SP:20310681,1,"Bois Renault",49.574728,2.305291,0,0,ODS:SA:CTP20310681,Europe/Paris,,ODS, +ODS:SP:20310683,1,"Farivillers",49.582507,2.32474,0,0,ODS:SA:CTP20310683,Europe/Paris,,ODS, +ODS:SP:20310684,1,"Farivillers",49.5825,2.324721,0,0,ODS:SA:CTP20310683,Europe/Paris,,ODS, +ODS:SP:20310687,1,"HEDENCOURT Ecole Primaire",49.587249,2.288171,0,0,ODS:SA:CTP20310687,Europe/Paris,,ODS, +ODS:SP:20310688,1,"HEDENCOURT Place",49.586952,2.288074,0,0,ODS:SA:CTP20310688,Europe/Paris,,ODS, +ODS:SP:20310689,1,"Le Moulin",49.582512,2.312912,0,0,ODS:SA:CTP20310689,Europe/Paris,,ODS, +ODS:SP:20310690,1,"Mairie",49.631896,1.820417,0,0,ODS:SA:CTP20310690,Europe/Paris,,ODS, +ODS:SP:20310691,1,"Marcoquet",49.642366,1.805485,0,0,ODS:SA:CTP20310691,Europe/Paris,,ODS, +ODS:SP:20310692,1,"Mairie",49.631661,1.821109,0,0,ODS:SA:CTP20310690,Europe/Paris,,ODS, +ODS:SP:20310694,1,"Collège des Fontainettes",49.434446,1.893627,0,0,ODS:SA:CTP20310694,Europe/Paris,,ODS, +ODS:SP:20310695,1,"Les Fontainettes - RN31",49.436737,1.899282,0,0,ODS:SA:CTP20310695,Europe/Paris,,ODS, +ODS:SP:20310697,1,"Ecole",49.421085,1.87794,0,0,ODS:SA:CTP20203640,Europe/Paris,,ODS, +ODS:SP:20310698,1,"Les clerets",49.427776,1.883347,0,0,ODS:SA:CTP20310698,Europe/Paris,,ODS, +ODS:SP:20310699,1,"Marivaux",49.465438,1.916022,0,0,ODS:SA:CTP20310699,Europe/Paris,,ODS, +ODS:SP:20310700,1,"Calvaire",49.608359,1.867535,0,0,ODS:SA:CTP20310700,Europe/Paris,,ODS, +ODS:SP:20310703,1,"Chemin Bourdon Carimarot",49.448337,1.785275,0,0,ODS:SA:CTP20310703,Europe/Paris,,ODS, +ODS:SP:20310704,1,"Douce Rue",49.446661,1.77388,0,0,ODS:SA:CTP20310704,Europe/Paris,,ODS, +ODS:SP:20310706,1,"Fontaine Denise",49.44444,1.81694,0,0,ODS:SA:CTP20310706,Europe/Paris,,ODS, +ODS:SP:20310707,1,"Fla",49.432591,1.793406,0,0,ODS:SA:CTP20310707,Europe/Paris,,ODS, +ODS:SP:20310709,1,"Centre",49.443049,1.78111,0,0,ODS:SA:CTP20201861,Europe/Paris,,ODS, +ODS:SP:20310710,1,"27, rue Douce Rue",49.45,1.76666,0,0,ODS:SA:CTP20310710,Europe/Paris,,ODS, +ODS:SP:20310715,1,"Rue de la Vallée",49.615,1.91666,0,0,ODS:SA:CTP20203497,Europe/Paris,,ODS, +ODS:SP:20310716,1,"Courroy",49.517627,2.019381,0,0,ODS:SA:CTP20310716,Europe/Paris,,ODS, +ODS:SP:20310717,1,"Gare",49.531387,1.998628,0,0,ODS:SA:CTP20310723,Europe/Paris,,ODS, +ODS:SP:20310718,1,"Belloy",49.531856,1.990436,0,0,ODS:SA:CTP20310718,Europe/Paris,,ODS, +ODS:SP:20310719,1,"Lotissement",49.531659,2.005001,0,0,ODS:SA:CTP20310719,Europe/Paris,,ODS, +ODS:SP:20310720,1,"Monceaux",49.520277,2.009178,0,0,ODS:SA:CTP20310720,Europe/Paris,,ODS, +ODS:SP:20310721,1,"Rue de Sanguine",49.537492,1.99832,0,0,ODS:SA:CTP20310721,Europe/Paris,,ODS, +ODS:SP:20310724,1,"Villepoix",49.539447,2.006128,0,0,ODS:SA:CTP20310724,Europe/Paris,,ODS, +ODS:SP:20310725,1,"Le Becquet-RN31",49.418911,1.99383,0,0,ODS:SA:CTP20310725,Europe/Paris,,ODS, +ODS:SP:20310731,1,"LE CATELET Lotissement",49.420035,1.72473,0,0,ODS:SA:CTP20310731,Europe/Paris,,ODS, +ODS:SP:20310732,1,"Le mont de Fly",49.425276,1.757237,0,0,ODS:SA:CTP20310732,Europe/Paris,,ODS, +ODS:SP:20310733,1,"Les Binaux",49.415229,1.749902,0,0,ODS:SA:CTP20310733,Europe/Paris,,ODS, +ODS:SP:20310734,1,"Les Boulards",49.414727,1.736397,0,0,ODS:SA:CTP20310734,Europe/Paris,,ODS, +ODS:SP:20310735,1,"LES FRERES JEAN",49.416094,1.741341,0,0,ODS:SA:CTP20310735,Europe/Paris,,ODS, +ODS:SP:20310737,1,"Montel",49.42305,1.72527,0,0,ODS:SA:CTP20310737,Europe/Paris,,ODS, +ODS:SP:20310738,1,"Mairie",49.431661,1.72722,0,0,ODS:SA:CTP20310738,Europe/Paris,,ODS, +ODS:SP:20310739,1,"Centre",49.59111,1.743329,0,0,ODS:SA:CTP20203455,Europe/Paris,,ODS, +ODS:SP:20310740,1,"Bout de Brie",49.359446,2.115849,0,0,ODS:SA:CTP20310740,Europe/Paris,,ODS, +ODS:SP:20310741,1,"La Grosse Saulx",49.337506,2.11113,0,0,ODS:SA:CTP20310741,Europe/Paris,,ODS, +ODS:SP:20310742,1,"La Haute Ville",49.339446,2.129459,0,0,ODS:SA:CTP20310742,Europe/Paris,,ODS, +ODS:SP:20310743,1,"Le val de l'eau",49.364446,2.123899,0,0,ODS:SA:CTP20310743,Europe/Paris,,ODS, +ODS:SP:20310744,1,"Les Godins",49.366115,2.13196,0,0,ODS:SA:CTP20310744,Europe/Paris,,ODS, +ODS:SP:20310745,1,"Carrefour",49.350269,2.12222,0,0,ODS:SA:CTP20310745,Europe/Paris,,ODS, +ODS:SP:20310746,1,"Centre",49.700007,1.845566,0,0,ODS:SA:CTP20310746,Europe/Paris,,ODS, +ODS:SP:20310747,1,"Haleine",49.684449,1.855015,0,0,ODS:SA:CTP20310747,Europe/Paris,,ODS, +ODS:SP:20310749,1,"Les Calais",49.688339,1.826395,0,0,ODS:SA:CTP20310749,Europe/Paris,,ODS, +ODS:SP:20310750,1,"Menantissart",49.696373,1.823515,0,0,ODS:SA:CTP20310750,Europe/Paris,,ODS, +ODS:SP:20310751,1,"Les Calais",49.68833,1.82638,0,0,ODS:SA:CTP20310749,Europe/Paris,,ODS, +ODS:SP:20310754,1,"RD 67",49.72861,1.73972,0,0,ODS:SA:CTP20310754,Europe/Paris,,ODS, +ODS:SP:20310756,1,"Scolaire NOIRVEAUX",49.578554,2.269076,0,0,ODS:SA:CTP20310756,Europe/Paris,,ODS, +ODS:SP:20310757,1,"Sauveleux",49.571118,2.2514,0,0,ODS:SA:CTP20310757,Europe/Paris,,ODS, +ODS:SP:20310758,1,"Place",49.577501,2.24222,0,0,ODS:SA:CTP20203755,Europe/Paris,,ODS, +ODS:SP:20310761,1,"La Fusée",49.28539,2.219159,0,0,ODS:SA:CTP20310761,Europe/Paris,,ODS, +ODS:SP:20310762,1,"Mairie",49.289165,2.19779,0,0,ODT:SA:CTP21100908,Europe/Paris,,ODS, +ODS:SP:20310763,1,"Collège Léonard de VINCI",49.291236,2.193928,0,0,ODS:SA:CTP20310763,Europe/Paris,,ODS, +ODS:SP:20310765,1,"Centre",49.558329,1.78361,0,0,ODS:SA:CTP20203417,Europe/Paris,,ODS, +ODS:SP:20310766,1,"Les Landes croix blanche",49.313864,2.005306,0,0,ODS:SA:CTP20310766,Europe/Paris,,ODS, +ODS:SP:20310767,1,"Mairie",49.388337,1.736118,0,0,ODS:SA:CTP20310767,Europe/Paris,,ODS, +ODS:SP:20310768,1,"Mairie",49.38833,1.73555,0,0,ODS:SA:CTP20310767,Europe/Paris,,ODS, +ODS:SP:20310769,1,"Centre",49.633617,2.359741,0,0,ODS:SA:CTP20310769,Europe/Paris,,ODS, +ODS:SP:20310771,1,"Rue de l'Eglise",49.60333,1.8925,0,0,ODS:SA:CTP20310771,Europe/Paris,,ODS, +ODS:SP:20310772,1,"Centre",49.30027,1.89833,0,0,ODS:SA:CTP20310772,Europe/Paris,,ODS, +ODS:SP:20310774,1,"Mairie-Ecole",49.634817,1.945391,0,0,ODS:SA:CTP20310774,Europe/Paris,,ODS, +ODS:SP:20310775,1,"Rue Tassart",49.54055,2.31194,0,0,ODS:SA:CTP20203783,Europe/Paris,,ODS, +ODS:SP:20310777,1,"Ecole",49.224439,1.944159,0,0,ODS:SA:CTP20310777,Europe/Paris,,ODS, +ODS:SP:20310779,1,"Sainte-Marguerite",49.288331,1.81916,0,0,ODS:SA:CTP20310779,Europe/Paris,,ODS, +ODS:SP:20310780,1,"Bois de villers",49.293329,1.82138,0,0,ODS:SA:CTP20310780,Europe/Paris,,ODS, +ODS:SP:20310781,1,"la poste",49.28416,1.822219,0,0,ODS:SA:CTP20310781,Europe/Paris,,ODS, +ODS:SP:20310783,1,"Centre",49.28944,1.833329,0,0,ODS:SA:CTP20310783,Europe/Paris,,ODS, +ODS:SP:20310784,1,"Centre",49.605636,2.259297,0,0,ODS:SA:CTP20310784,Europe/Paris,,ODS, +ODS:SP:20310786,1,"Les Marettes Bas",49.31194,2.043611,0,0,ODS:SA:CTP20310786,Europe/Paris,,ODS, +ODS:SP:20310788,1,"Centre",49.233615,1.756127,0,0,ODS:SA:CTP20310788,Europe/Paris,,ODS, +ODS:SP:20310789,1,"Mairie-Ecole",49.61111,2.289999,0,0,ODS:SA:CTP20310789,Europe/Paris,,ODS, +ODS:SP:20310790,1,"route de troussencourt",49.605202,2.288444,0,0,ODS:SA:CTP20310790,Europe/Paris,,ODS, +ODS:SP:20310791,1,"Grande rue",49.617221,2.300831,0,0,ODS:SA:CTP20203751,Europe/Paris,,ODS, +ODS:SP:20310792,1,"Centre",49.62638,2.108609,0,0,ODS:SA:CTP20310427,Europe/Paris,,ODS, +ODS:SP:20310793,1,"Rd 930",49.610271,2.132771,0,0,ODS:SA:CTP20310793,Europe/Paris,,ODS, +ODS:SP:20310794,1,"Lanlu",49.490942,1.870432,0,0,ODS:SA:CTP20310794,Europe/Paris,,ODS, +ODS:SP:20310795,1,"Centre",49.47555,1.86805,0,0,ODS:SA:CTP20201277,Europe/Paris,,ODS, +ODS:SP:20310797,1,"Centre",49.364012,2.215415,0,0,ODS:SA:CTP20310797,Europe/Paris,,ODS, +ODS:SP:20310798,1,"Fourrières",49.359434,2.219401,0,0,ODS:SA:CTP20310798,Europe/Paris,,ODS, +ODS:SP:20310799,1,"Gare",49.367776,2.220021,0,0,ODS:SA:CTP20310799,Europe/Paris,,ODS, +ODS:SP:20310800,1,"Hez",49.370835,2.202521,0,0,ODS:SA:CTP20310800,Europe/Paris,,ODS, +ODS:SP:20310802,1,"Cité Colozier",49.448609,1.79972,0,0,ODS:SA:CTP20201851,Europe/Paris,,ODS, +ODS:SP:20310803,1,"Orsimont-2",49.473611,1.798879,0,0,ODS:SA:CTP20310803,Europe/Paris,,ODS, +ODS:SP:20310804,1,"Orsimont",49.453609,1.788611,0,0,ODS:SA:CTP20201859,Europe/Paris,,ODS, +ODS:SP:20310805,1,"Orsimont-1",49.47444,1.79861,0,0,ODS:SA:CTP20310805,Europe/Paris,,ODS, +ODS:SP:20310807,1,"Centre",49.4875,1.795271,0,0,ODS:SA:CTP20310807,Europe/Paris,,ODS, +ODS:SP:20310808,1,"Eglise",49.53777,1.966111,0,0,ODS:SA:CTP20310808,Europe/Paris,,ODS, +ODS:SP:20310809,1,"Centre",49.308336,1.824738,0,0,ODS:SA:CTP20310809,Europe/Paris,,ODS, +ODS:SP:20310810,1,"Centre",49.576118,1.743065,0,0,ODS:SA:CTP20310810,Europe/Paris,,ODS, +ODS:SP:20310811,1,"Carrefour",49.64333,2.238611,0,0,ODS:SA:CTP20203321,Europe/Paris,,ODS, +ODS:SP:20310812,1,"Place des Tilleuls",49.34388,2.018881,0,0,ODS:SA:CTP20201257,Europe/Paris,,ODS, +ODS:SP:20310813,1,"Centre",49.52916,1.886109,0,0,ODS:SA:CTP20310813,Europe/Paris,,ODS, +ODS:SP:20310814,1,"Ecole",49.526387,1.852517,0,0,ODS:SA:CTP20310814,Europe/Paris,,ODS, +ODS:SP:20310815,1,"Les coutumes",49.519727,1.865017,0,0,ODS:SA:CTP20310815,Europe/Paris,,ODS, +ODS:SP:20310816,1,"Carrefour",49.527771,1.852221,0,0,ODS:SA:CTP20203428,Europe/Paris,,ODS, +ODS:SP:20310817,1,"Scolaire WAVIGNIES",49.542506,2.357521,0,0,ODS:SA:CTP20310817,Europe/Paris,,ODS, +ODS:SP:20310820,1,"Centre",49.633738,2.295302,0,0,ODS:SA:CTP20203315,Europe/Paris,,ODS, +ODS:SP:20310822,1,"Warmaise",49.598358,2.366083,0,0,ODS:SA:CTP20310096,Europe/Paris,,ODS, +ODS:SP:20310823,1,"Centre",49.60736,2.483404,0,0,ODS:SA:CTP20310823,Europe/Paris,,ODS, +ODS:SP:20310824,1,"Perennes",49.623604,2.4995,0,0,ODV:SA:CTP22510824,Europe/Paris,,ODS, +ODS:SP:20310844,1,"Gare",49.503765,2.429483,0,0,SIN:SA:OCE87313270,Europe/Paris,,ODS, +ODS:SP:20311203,1,"mare a tacon",49.406138,2.044433,0,0,ODS:SA:CTP20311203,Europe/Paris,,ODS, +ODS:SP:20311204,1,"college",49.215546,2.281297,0,0,ODT:SA:CTP21002550,Europe/Paris,,ODS, +ODS:SP:20311205,1,"centre",49.212916,2.319522,0,0,ODS:SA:CTP20311205,Europe/Paris,,ODS, +ODS:SP:20311206,1,"route de cavillon",49.22524,2.281081,0,0,ODS:SA:CTP20311206,Europe/Paris,,ODS, +ODS:SP:20311207,1,"Foulangues",49.275519,2.315642,0,0,ODS:SA:CTP20311207,Europe/Paris,,ODS, +ODS:SP:20311208,1,"Le Tillet",49.257803,2.327276,0,0,ODT:SA:CTP21000491,Europe/Paris,,ODS, +ODS:SP:20311209,1,"mairie",49.27507,2.357576,0,0,ODS:SA:CTP20311209,Europe/Paris,,ODS, +ODS:SP:20311210,1,"gare sncf",49.271691,2.360541,0,0,ODS:SA:CTP20311210,Europe/Paris,,ODS, +ODS:SP:20311211,1,"stade",49.290587,2.34187,0,0,ODS:SA:CTP20311211,Europe/Paris,,ODS, +ODS:SP:20311213,1,"ferme des diligences",49.239976,2.132927,0,0,ODS:SA:CTP20311213,Europe/Paris,,ODS, +ODS:SP:20311214,1,"bois des cauches",49.247833,2.275732,0,0,ODS:SA:CTP20311214,Europe/Paris,,ODS, +ODS:SP:20311215,1,"Institution du St Esprit",49.417652,2.083655,0,0,OIS:SA:CTP3014548,Europe/Paris,,ODS, +ODS:SP:20311216,1,"Cavillon-centre",49.257482,2.259496,0,0,ODT:SA:CTP21100907,Europe/Paris,,ODS, +ODS:SP:20311217,1,"route de chambors",49.246595,1.812664,0,0,ODS:SA:CTP20311217,Europe/Paris,,ODS, +ODS:SP:20311218,1,"Eglise",49.426969,2.194058,0,0,ODS:SA:CTP20311218,Europe/Paris,,ODS, +ODS:SP:20311219,1,"Hericourt",49.448053,1.922778,0,0,ODS:SA:CTP20311219,Europe/Paris,,ODS, +ODS:SP:20311226,1,"Forcinal",49.284959,1.790559,0,0,ORM:SA:CTP28000022,Europe/Paris,,ODS, +ODS:SP:20311230,1,"gare",49.456516,1.78436,0,0,ODS:SA:CTP20311230,Europe/Paris,,ODS, +ODS:SP:20311233,1,"eglise",49.666518,1.810104,0,0,ODS:SA:CTP20310495,Europe/Paris,,ODS, +ODS:SP:20311234,1,"D316",49.672069,1.761115,0,0,ODS:SA:CTP20311234,Europe/Paris,,ODS, +ODS:SP:20311237,1,"Armentieres sables rouges",49.455196,1.92323,0,0,ODS:SA:CTP20311237,Europe/Paris,,ODS, +ODS:SP:20311238,1,"Hericourt",49.447792,1.922711,0,0,ODS:SA:CTP20311219,Europe/Paris,,ODS, +ODS:SP:20311239,1,"grande rue",49.639268,2.190046,0,0,ODS:SA:CTP20311239,Europe/Paris,,ODS, +ODS:SP:20311240,1,"mairie",49.614255,2.128375,0,0,ODS:SA:CTP20311240,Europe/Paris,,ODS, +ODS:SP:20311241,1,"RD 559",49.589232,2.14366,0,0,ODS:SA:CTP20311241,Europe/Paris,,ODS, +ODS:SP:20311242,1,"mairie",49.575026,2.118508,0,0,ODS:SA:CTP20311242,Europe/Paris,,ODS, +ODS:SP:20311243,1,"Plouy Saint Lucien RD 149",49.471124,2.078428,0,0,ODS:SA:CTP20311243,Europe/Paris,,ODS, +ODS:SP:20311245,1,"D981",49.375712,1.991134,0,0,ODS:SA:CTP20311245,Europe/Paris,,ODS, +ODS:SP:20311246,1,"La folie de Beauvoir",49.598376,2.322456,0,0,ODS:SA:CTP20311246,Europe/Paris,,ODS, +ODS:SP:20311247,1,"centre",49.354836,1.941794,0,0,ODS:SA:CTP20311247,Europe/Paris,,ODS, +ODS:SP:20311250,1,"mairie",49.611364,2.29,0,0,ODS:SA:CTP20311250,Europe/Paris,,ODS, +ODS:SP:20311251,1,"rue d'en bas",49.675987,2.239691,0,0,ODS:SA:CTP20311251,Europe/Paris,,ODS, +ODS:SP:20311253,1,"D34",49.677617,2.223939,0,0,ODS:SA:CTP20311253,Europe/Paris,,ODS, +ODS:SP:20311254,1,"avelon",49.423059,2.040113,0,0,ODS:SA:CTP20311254,Europe/Paris,,ODS, +ODS:SP:20311255,1,"place",49.34672,1.899327,0,0,ODS:SA:CTP20311255,Europe/Paris,,ODS, +ODS:SP:20311257,1,"centre",49.21584,2.236737,0,0,ODS:SA:CTP20311257,Europe/Paris,,ODS, +ODS:SP:20311258,1,"RD 1001",49.329687,2.199951,0,0,ODT:SA:CTP21100888,Europe/Paris,,ODS, +ODS:SP:20311260,1,"mare lurin",49.451629,1.766804,0,0,ODS:SA:CTP20311260,Europe/Paris,,ODS, +ODS:SP:20311261,1,"gendarmerie",49.222588,2.13135,0,0,ODS:SA:CTP20311261,Europe/Paris,,ODS, +ODS:SP:20311262,1,"dde",49.233998,2.131277,0,0,ODS:SA:CTP20311262,Europe/Paris,,ODS, +ODS:SP:20311263,1,"Le Bray",49.455618,1.80238,0,0,ODS:SA:CTP20311263,Europe/Paris,,ODS, +ODS:SP:20311265,1,"café",49.233604,2.303655,0,0,ODS:SA:CTP20311265,Europe/Paris,,ODS, +ODS:SP:20311267,1,"Cavillon centre",49.257689,2.259139,0,0,ODT:SA:CTP21100907,Europe/Paris,,ODS, +ODS:SP:20311268,1,"moulin de blainville",49.339554,2.194893,0,0,ODS:SA:CTP20311268,Europe/Paris,,ODS, +ODS:SP:20311269,1,"roye",49.353673,2.177581,0,0,ODS:SA:CTP20311269,Europe/Paris,,ODS, +ODS:SP:20311270,1,"RN1",49.390202,2.143242,0,0,ODS:SA:CTP20311270,Europe/Paris,,ODS, +ODS:SP:20311271,1,"stade",49.23133,2.299019,0,0,ODS:SA:CTP20203908,Europe/Paris,,ODS, +ODS:SP:20311272,1,"gros poirier",49.364908,2.162622,0,0,ODS:SA:CTP20311272,Europe/Paris,,ODS, +ODS:SP:20311274,1,"bonvillers",49.307633,2.217926,0,0,ODS:SA:CTP20311274,Europe/Paris,,ODS, +ODS:SP:20311275,1,"fercourt",49.310146,2.245305,0,0,ODT:SA:CTP21100889,Europe/Paris,,ODS, +ODS:SP:20311277,1,"centre",49.280143,2.279758,0,0,ODS:SA:CTP20311277,Europe/Paris,,ODS, +ODS:SP:20311279,1,"centre",49.301721,2.247971,0,0,ODS:SA:CTP20311279,Europe/Paris,,ODS, +ODS:SP:20311280,1,"école",49.604996,2.38583,0,0,ODS:SA:CTP20311280,Europe/Paris,,ODS, +ODS:SP:20311281,1,"gare",49.28495,1.784708,0,0,TRN:SA:DUA8738124,Europe/Paris,,ODS, +ODS:SP:20311282,1,"marivaux",49.24778,2.055851,0,0,ODS:SA:CTP20311282,Europe/Paris,,ODS, +ODS:SP:20311283,1,"ferme de la haie",49.64946,2.174788,0,0,ODS:SA:CTP20311283,Europe/Paris,,ODS, +ODS:SP:20311287,1,"mare",49.677437,2.224105,0,0,ODS:SA:CTP20311287,Europe/Paris,,ODS, +ODS:SP:20311289,1,"neuvillette",49.22924,1.964997,0,0,ODS:SA:CTP20311289,Europe/Paris,,ODS, +ODS:SP:20311290,1,"mairie",49.224727,1.944384,0,0,ODS:SA:CTP20311290,Europe/Paris,,ODS, +ODS:SP:20311291,1,"réveillon",49.251328,1.818297,0,0,ODS:SA:CTP20311291,Europe/Paris,,ODS, +ODS:SP:20311292,1,"les landes",49.384169,1.741671,0,0,ODS:SA:CTP20311292,Europe/Paris,,ODS, +ODS:SP:20311293,1,"Hedencourt Haies Villert",49.591253,2.285335,0,0,ODS:SA:CTP20311293,Europe/Paris,,ODS, +ODS:SP:20311294,1,"Hedencourt école",49.586299,2.293946,0,0,ODS:SA:CTP20311294,Europe/Paris,,ODS, +ODS:SP:20311295,1,"mare",49.549309,2.363842,0,0,ODV:SA:CTP22511244,Europe/Paris,,ODS, +ODS:SP:20311296,1,"église",49.546534,2.359534,0,0,ODV:SA:CTP22403781,Europe/Paris,,ODS, +ODS:SP:20311297,1,"salle Agora",49.542565,2.357255,0,0,ODV:SA:CTP22511200,Europe/Paris,,ODS, +ODS:SP:20311298,1,"sainte marguerite",49.289952,1.814172,0,0,ODS:SA:CTP20311298,Europe/Paris,,ODS, +ODS:SP:20311299,1,"école",49.260533,1.741935,0,0,ODS:SA:CTP20311299,Europe/Paris,,ODS, +ODS:SP:20311300,1,"saint quentin bas",49.344887,2.096651,0,0,ODS:SA:CTP20311300,Europe/Paris,,ODS, +ODS:SP:20311301,1,"les landes place",49.318335,2.007283,0,0,ODS:SA:CTP20311301,Europe/Paris,,ODS, +ODS:SP:20311302,1,"centre",49.27259,2.031934,0,0,ODS:SA:CTP20311302,Europe/Paris,,ODS, +ODS:SP:20311303,1,"stade les marettes",49.316382,2.040662,0,0,ODS:SA:CTP20311303,Europe/Paris,,ODS, +ODS:SP:20311306,1,"La Neuve Rue St Nicolas",49.590937,2.153878,0,0,ODS:SA:CTP20311306,Europe/Paris,,ODS, +ODS:SP:20311307,1,"centre",49.501282,2.148793,0,0,ODS:SA:CTP20311307,Europe/Paris,,ODS, +ODS:SP:20311308,1,"petit",49.561472,2.053393,0,0,ODS:SA:CTP20311308,Europe/Paris,,ODS, +ODS:SP:20311309,1,"la neuve rue",49.591893,2.223314,0,0,ODS:SA:CTP20311309,Europe/Paris,,ODS, +ODS:SP:20311311,1,"rue de novillers",49.279149,2.204961,0,0,ODS:SA:CTP20311311,Europe/Paris,,ODS, +ODS:SP:20311312,1,"réderie",49.695989,1.946928,0,0,ODS:SA:CTP20311312,Europe/Paris,,ODS, +ODS:SP:20311313,1,"RD 1001 Nord",49.631249,2.291958,0,0,ODS:SA:CTP20203753,Europe/Paris,,ODS, +ODS:SP:20311314,1,"Froidmont rue du chateau",49.38265,2.24318,0,0,ODS:SA:CTP20311314,Europe/Paris,,ODS, +ODS:SP:20311315,1,"gare",49.352837,1.921786,0,0,ODS:SA:CTP20311315,Europe/Paris,,ODS, +ODS:SP:20311316,1,"Cimetière",49.430064,2.043406,0,0,ODS:SA:CTP20311316,Europe/Paris,,ODS, +ODS:SP:20311317,1,"rue soyer Hénnicourt",49.689329,1.770388,0,0,ODS:SA:CTP20311317,Europe/Paris,,ODS, +ODS:SP:20311318,1,"école Hénnicourt",49.685547,1.777905,0,0,ODS:SA:CTP20311318,Europe/Paris,,ODS, +ODS:SP:20311319,1,"les clos",49.43202,1.869178,0,0,ODS:SA:CTP20311319,Europe/Paris,,ODS, +ODS:SP:20311320,1,"Lamotte",49.435924,2.084157,0,0,ODS:SA:CTP20311320,Europe/Paris,,ODS, +ODS:SP:20311321,1,"manoir",49.487425,1.958804,0,0,ODS:SA:CTP20311321,Europe/Paris,,ODS, +ODS:SP:20311322,1,"couvremont",49.51136,2.265276,0,0,ODS:SA:CTP20311322,Europe/Paris,,ODS, +ODS:SP:20311323,1,"ribeauvillé mare",49.560504,2.021779,0,0,ODS:SA:CTP20311323,Europe/Paris,,ODS, +ODS:SP:20311326,1,"tennis",49.645003,1.84056,0,0,ODS:SA:CTP20311326,Europe/Paris,,ODS, +ODS:SP:20311327,1,"caserne",49.649162,1.733986,0,0,ODS:SA:CTP20311327,Europe/Paris,,ODS, +ODS:SP:20311328,1,"salle des fêtes",49.751387,1.763613,0,0,ODS:SA:CTP20311328,Europe/Paris,,ODS, +ODS:SP:20311329,1,"fleuzy",49.758337,1.754164,0,0,ODS:SA:CTP20311329,Europe/Paris,,ODS, +ODS:SP:20311330,1,"collège Saint Joseph",49.768054,1.750559,0,0,ODS:SA:CTP20311330,Europe/Paris,,ODS, +ODS:SP:20311332,1,"rue rouge",49.50417,1.886118,0,0,ODS:SA:CTP20311332,Europe/Paris,,ODS, +ODS:SP:20311333,1,"rue des saules",49.514719,1.873057,0,0,ODS:SA:CTP20311333,Europe/Paris,,ODS, +ODS:SP:20311334,1,"mairie",49.49907,2.373029,0,0,ODV:SA:CTP22511275,Europe/Paris,,ODS, +ODS:SP:20311335,1,"petit beauvais",49.726109,1.736109,0,0,ODS:SA:CTP20311335,Europe/Paris,,ODS, +ODS:SP:20311336,1,"Café de l'Oise",49.436554,2.084898,0,0,ODS:SA:CTP20311336,Europe/Paris,,ODS, +ODS:SP:20311337,1,"fresneaux",49.527496,2.29361,0,0,ODS:SA:CTP20311337,Europe/Paris,,ODS, +ODS:SP:20311338,1,"moimont",49.622556,1.724388,0,0,ODS:SA:CTP20311338,Europe/Paris,,ODS, +ODS:SP:20311339,1,"la fosse saint clair",49.24944,2.257504,0,0,ODT:SA:CTP21002552,Europe/Paris,,ODS, +ODS:SP:20311352,1,"Pré-Martinet rue du Wage",49.426863,2.094104,0,0,ODS:SA:CTP20311352,Europe/Paris,,ODS, +ODS:SP:20311353,1,"trou marot",49.413753,1.92965,0,0,ODS:SA:CTP20311353,Europe/Paris,,ODS, +ODS:SP:20311354,1,"rue de Dieppe",49.548307,1.844577,0,0,ODS:SA:CTP20311354,Europe/Paris,,ODS, +ODS:SP:20311355,1,"sainte marie",49.34748,1.773351,0,0,ODS:SA:CTP20311355,Europe/Paris,,ODS, +ODS:SP:20311356,1,"monument aux morts",49.232176,2.250987,0,0,ODS:SA:CTP20311356,Europe/Paris,,ODS, +ODS:SP:20311358,1,"Gare SNCF",49.42675,2.087136,0,0,OIS:SA:CTP3014170,Europe/Paris,,ODS, +ODS:SP:20311360,1,"église",49.356958,2.325125,0,0,ODT:SA:CTP21100566,Europe/Paris,,ODS, +ODS:SP:20311361,1,"rue des tilleuls",49.357882,2.316556,0,0,ODS:SA:CTP20311361,Europe/Paris,,ODS, +ODS:SP:20311362,1,"Avelon",49.428207,2.059282,0,0,ODS:SA:CTP20311362,Europe/Paris,,ODS, +ODS:SP:20311363,1,"Mattencourt centre",49.365833,2.16222,0,0,ODS:SA:CTP20311363,Europe/Paris,,ODS, +ODS:SP:20311364,1,"Notre Dame du Thil",49.447841,2.078491,0,0,OIS:SA:CTP3014319,Europe/Paris,,ODS, +ODS:SP:20311365,1,"place de Mésenguy",49.34958,2.010603,0,0,ODS:SA:CTP20311365,Europe/Paris,,ODS, +ODS:SP:20311366,1,"grande rue",49.245836,1.96839,0,0,ODS:SA:CTP20311366,Europe/Paris,,ODS, +ODS:SP:20311367,1,"terre noire",49.407959,2.047827,0,0,ODS:SA:CTP20311367,Europe/Paris,,ODS, +ODS:SP:20311368,1,"Rue de Porcheux",49.351758,1.94014,0,0,ODS:SA:CTP20311368,Europe/Paris,,ODS, +ODS:SP:20311369,1,"aéroport",49.459342,2.111767,0,0,ODS:SA:CTP20311369,Europe/Paris,,ODS, +ODS:SP:20311370,1,"Place d'armes",49.483687,1.7227,0,0,ODS:SA:CTP20311370,Europe/Paris,,ODS, +ODS:SP:20311371,1,"Rue Ile de France",49.466535,2.110399,0,0,ODS:SA:CTP20311371,Europe/Paris,,ODS, +ODS:SP:20311372,1,"Briquebourg",49.381784,2.148502,0,0,ODS:SA:CTP20311372,Europe/Paris,,ODS, +ODS:SP:20311373,1,"Rue Aristide Briand",49.218641,2.129542,0,0,ODS:SA:CTP20311373,Europe/Paris,,ODS, +ODS:SP:20311374,1,"Le Bray Centre",49.462696,1.814447,0,0,ODS:SA:CTP20311374,Europe/Paris,,ODS, +ODS:SP:20311375,1,"La petite Landelle - Trou Jumel",49.392889,1.890427,0,0,ODS:SA:CTP20311375,Europe/Paris,,ODS, +ODS:SP:20311376,1,"La Haute Rue 2",49.449043,1.874052,0,0,ODS:SA:CTP20311376,Europe/Paris,,ODS, +ODS:SP:20311377,1,"Choqueuse centre",49.561981,1.914191,0,0,ODS:SA:CTP20311377,Europe/Paris,,ODS, +ODS:SP:20311378,1,"rue Jules Ferry - Ecoles",49.350756,2.22807,0,0,ODS:SA:CTP20311378,Europe/Paris,,ODS, +ODS:SP:20311379,1,"Ecole",49.539158,2.060031,0,0,ODS:SA:CTP20311379,Europe/Paris,,ODS, +ODS:SP:20311380,1,"Les Peupliers",49.697974,1.730709,0,0,ODS:SA:CTP20311380,Europe/Paris,,ODS, +ODS:SP:20311381,1,"RD6/Rte de Montbines",49.241943,1.732778,0,0,ODS:SA:CTP20311381,Europe/Paris,,ODS, +ODS:SP:20311383,1,"Ecole",49.608564,2.074595,0,0,ODS:SA:CTP20311383,Europe/Paris,,ODS, +ODS:SP:20311384,1,"Frétoy rue Bourbon",49.559061,1.90154,0,0,ODS:SA:CTP20311384,Europe/Paris,,ODS, +ODS:SP:20311385,1,"Lotissement",49.531744,2.004996,0,0,ODS:SA:CTP20310719,Europe/Paris,,ODS, +ODS:SP:20311386,1,"Tirmont-Ferme des Ormes",49.282715,2.014777,0,0,ODS:SA:CTP20311386,Europe/Paris,,ODS, +ODS:SP:20311387,1,"Acacias",49.29136,2.340345,0,0,ODT:SA:CTP21100560,Europe/Paris,,ODS, +ODS:SP:20311388,1,"Ronquerolles Rue de Crèvecoeur",49.391981,2.392303,0,0,ODS:SA:CTP20311388,Europe/Paris,,ODS, +ODS:SP:20311389,1,"Haillancourt",49.248886,2.033899,0,0,ODS:SA:CTP20203689,Europe/Paris,,ODS, +ODS:SP:20311390,1,"marivaux",49.24778,2.055851,0,0,ODS:SA:CTP20311282,Europe/Paris,,ODS, +ODS:SP:20311391,1,"Cresnes",49.197225,2.021398,0,0,ODS:SA:CTP20203705,Europe/Paris,,ODS, +ODS:SP:20311392,1,"Petit Alléré",49.207775,2.015289,0,0,ODS:SA:CTP20203706,Europe/Paris,,ODS, +ODS:SP:20311393,1,"Grand Alléré",49.212225,2.019458,0,0,ODS:SA:CTP20203707,Europe/Paris,,ODS, +ODS:SP:20311394,1,"Tumbrel",49.204726,1.996958,0,0,ODS:SA:CTP20201205,Europe/Paris,,ODS, +ODS:SP:20311397,1,"Château",49.207316,2.053138,0,0,ODS:SA:CTP20201216,Europe/Paris,,ODS, +ODS:SP:20311398,1,"Mairie",49.263275,2.070126,0,0,ODS:SA:CTP20203105,Europe/Paris,,ODS, +ODS:SP:20311399,1,"Centre",49.26298,2.07916,0,0,OLB:SA:CTP18000102,Europe/Paris,,ODS, +ODS:SP:20311400,1,"Parking Orsol",49.260566,2.164955,0,0,ODT:SA:CTP21100900,Europe/Paris,,ODS, +ODS:SP:20311401,1,"Rue du Bois",49.264166,2.16418,0,0,ODS:SA:CTP20200042,Europe/Paris,,ODS, +ODS:SP:20311403,1,"Centre",49.277776,2.049179,0,0,ODS:SA:CTP20201203,Europe/Paris,,ODS, +ODS:SP:20311404,1,"Centre",49.216386,2.015849,0,0,ODS:SA:CTP20213607,Europe/Paris,,ODS, +ODS:SP:20311406,1,"Maison de Retraire",49.575787,1.954987,0,0,ODS:SA:CTP20311406,Europe/Paris,,ODS, +ODS:SP:20311407,1,"Haillancourt",49.248886,2.033899,0,0,ODS:SA:CTP20203689,Europe/Paris,,ODS, +ODS:SP:20311408,1,"Centre",49.337337,2.149958,0,0,ODS:SA:CTP20310349,Europe/Paris,,ODS, +ODS:SP:20311409,1,"Place",49.334726,2.14113,0,0,ODS:SA:CTP20310351,Europe/Paris,,ODS, +ODS:SP:20311410,1,"Rue de la liberation",49.663506,2.318148,0,0,ODS:SA:CTP20310569,Europe/Paris,,ODS, +ODS:SP:20311411,1,"Centre",49.666389,2.324741,0,0,ODV:SA:CTP22510570,Europe/Paris,,ODS, +ODS:SP:20311412,1,"Salle des Fêtes",49.278262,1.776088,0,0,ODS:SA:CTP20311412,Europe/Paris,,ODS, +ODS:SP:20311413,1,"Ecole",49.195962,1.799565,0,0,ODS:SA:CTP20311413,Europe/Paris,,ODS, +ODS:SP:20311414,1,"Mairie",49.457506,2.1664,0,0,ODS:SA:CTP20203816,Europe/Paris,,ODS, +ODS:SP:20311415,1,"Hôtel de Ville",49.409472,2.252382,0,0,ODS:SA:CTP20203044,Europe/Paris,,ODS, +ODS:SP:20311417,1,"Lincourt centre",49.351947,1.845568,0,0,ODS:SA:CTP20310233,Europe/Paris,,ODS, +ODS:SP:20311418,1,"Lincourt Ecole",49.345118,1.836503,0,0,ODS:SA:CTP20311418,Europe/Paris,,ODS, +ODS:SP:20311419,1,"école",49.335007,1.820008,0,0,ODS:SA:CTP20310235,Europe/Paris,,ODS, +ODS:SP:20311420,1,"Les Solons",49.441981,1.829041,0,0,ODS:SA:CTP20311420,Europe/Paris,,ODS, +ODS:SP:20311421,1,"Ansauvillers",49.564867,2.386856,0,0,ODV:SA:CTP22510025,Europe/Paris,,ODS, +ODS:SP:20311422,1,"Centre",49.228885,2.029179,0,0,OLB:SA:CTP18000099,Europe/Paris,,ODS, +ODS:SP:20311423,1,"Place de l'Eglise",49.607127,1.87172,0,0,ODS:SA:CTP20311423,Europe/Paris,,ODS, +ODS:SP:20311424,1,"Abri",49.698058,1.893066,0,0,ODS:SA:CTP20310188,Europe/Paris,,ODS, +ODS:SP:20311425,1,"Cimetière",49.21165,2.189678,0,0,ODS:SA:CTP20311425,Europe/Paris,,ODS, +ODS:SP:20311428,1,"La Grange",49.630084,1.915977,0,0,ODS:SA:CTP20310123,Europe/Paris,,ODS, +ODS:SP:20311429,1,"Centre",49.650461,1.923665,0,0,ODS:SA:CTP20310124,Europe/Paris,,ODS, +ODS:SP:20311430,1,"bois des cauches",49.24883,2.273425,0,0,ODS:SA:CTP20311214,Europe/Paris,,ODS, +ODS:SP:20311431,1,"RN31",49.432962,2.045551,0,0,ODS:SA:CTP20200832,Europe/Paris,,ODS, +ODS:SP:20311437,1,"Ecole",49.296945,2.10946,0,0,ODT:SA:CTP21100955,Europe/Paris,,ODS, +ODS:SP:20311438,1,"Ecole",49.302002,2.08935,0,0,ODT:SA:CTP21100886,Europe/Paris,,ODS, +ODS:SP:20311445,1,"Roye",49.354148,2.177359,0,0,ODS:SA:CTP20201640,Europe/Paris,,ODS, +ODS:SP:20311446,1,"Centre",49.358879,2.15722,0,0,ODS:SA:CTP20310012,Europe/Paris,,ODS, +ODS:SP:20311448,1,"Centre",49.608618,1.995287,0,0,ODS:SA:CTP20203378,Europe/Paris,,ODS, +ODS:SP:20311449,1,"Aire de Covoiturage",49.403761,2.652964,0,0,ODS:SA:CTP20311449,Europe/Paris,,ODS, +ODS:SP:20311450,1,"Rue Pierre Demeru",49.410227,2.253936,0,0,ODS:SA:CTP20311450,Europe/Paris,,ODS, +ODS:SP:20311451,1,"Parc du Thelle",49.177965,2.285765,0,0,ODT:SA:CTP21100881,Europe/Paris,,ODS, +ODS:SP:20311452,1,"RD 67",49.72861,1.73972,0,0,ODS:SA:CTP20310754,Europe/Paris,,ODS, +ODS:SP:20311454,1,"La Petite France",49.516093,1.927414,0,0,ODS:SA:CTP20310173,Europe/Paris,,ODS, +ODS:SP:20311455,1,"Centre",49.69638,1.764999,0,0,ODS:SA:CTP20310007,Europe/Paris,,ODS, +ODS:SP:20311457,1,"Centre",49.552207,2.26243,0,0,ODS:SA:CTP20310542,Europe/Paris,,ODS, +ODS:SP:20311459,1,"Le mont de Fly",49.425276,1.757237,0,0,ODS:SA:CTP20310732,Europe/Paris,,ODS, +ODS:SP:20311460,1,"Eglise abri",49.404809,2.112544,0,0,OIS:SA:CTP3014145,Europe/Paris,,ODS, +ODS:SP:20311461,1,"Mairie",49.431661,1.72722,0,0,ODS:SA:CTP20310738,Europe/Paris,,ODS, +ODS:SP:20311462,1,"Courcelles",49.192579,2.185291,0,0,ODS:SA:CTP20310098,Europe/Paris,,ODS, +ODS:SP:20311464,1,"Ecole",49.256392,1.918887,0,0,ODS:SA:CTP20311464,Europe/Paris,,ODS, +ODS:SP:20311473,1,"Mairie - Ecole",49.508049,2.271927,0,0,ODS:SA:CTP20310521,Europe/Paris,,ODS, +ODS:SP:20311474,1,"abribus",49.505556,2.280277,0,0,ODS:SA:CTP20203787,Europe/Paris,,ODS, +ODS:SP:20311475,1,"Les Binaux",49.415229,1.749902,0,0,ODS:SA:CTP20310733,Europe/Paris,,ODS, +ODS:SP:20311476,1,"Le but david - calvaire",49.409254,1.762746,0,0,ODS:SA:CTP20310590,Europe/Paris,,ODS, +ODS:SP:20311481,1,"Frettencourt Abribus",49.694996,1.726106,0,0,ODS:SA:CTP20310407,Europe/Paris,,ODS, +ODS:SP:20311483,1,"Ecole",49.550734,1.853997,0,0,ODS:SA:CTP20311483,Europe/Paris,,ODS, +ODS:SP:20311484,1,"Centre",49.540277,1.818896,0,0,ODS:SA:CTP20310134,Europe/Paris,,ODS, +ODS:SP:20311485,1,"Hemecourt - Village",49.550829,1.81472,0,0,ODS:SA:CTP20310205,Europe/Paris,,ODS, +ODS:SP:20311487,1,"Echangeur",49.417991,2.105106,0,0,OIS:SA:CTP3014295,Europe/Paris,,ODS, +ODS:SP:20311488,1,"Cimetière",49.204927,2.128034,0,0,ODS:SA:CTP20203574,Europe/Paris,,ODS, +ODS:SP:20311489,1,"Raiderie",49.669595,1.793107,0,0,ODS:SA:CTP20310086,Europe/Paris,,ODS, +ODS:SP:20311492,1,"l'Egouchet",49.66074,1.787156,0,0,ODS:SA:CTP20311492,Europe/Paris,,ODS, +ODS:SP:20311493,1,"Eglise",49.580901,1.871627,0,0,ODS:SA:CTP20311493,Europe/Paris,,ODS, +ODS:SP:20311494,1,"Villepoix",49.539447,2.006128,0,0,ODS:SA:CTP20310724,Europe/Paris,,ODS, +ODS:SP:20311495,1,"Monceaux",49.520277,2.009178,0,0,ODS:SA:CTP20310720,Europe/Paris,,ODS, +ODS:SP:20311496,1,"Courroy",49.517627,2.019381,0,0,ODS:SA:CTP20310716,Europe/Paris,,ODS, +ODS:SP:20311497,1,"petit beauvais",49.726109,1.736109,0,0,ODS:SA:CTP20311335,Europe/Paris,,ODS, +ODS:SP:20311498,1,"Gare",49.381172,2.200652,0,0,ODS:SA:CTP20311498,Europe/Paris,,ODS, +ODS:SP:20311499,1,"Choqueuse centre",49.561981,1.914191,0,0,ODS:SA:CTP20311377,Europe/Paris,,ODS, +ODS:SP:20311501,1,"Carrefour",49.335501,1.925212,0,0,ODS:SA:CTP20310585,Europe/Paris,,ODS, +ODS:SP:20311502,1,"école",49.297777,1.921692,0,0,ODS:SA:CTP20310190,Europe/Paris,,ODS, +ODS:SP:20311503,1,"Centre",49.650731,1.923705,0,0,ODS:SA:CTP20310124,Europe/Paris,,ODS, +ODS:SP:20311504,1,"Grande Rue",49.29617,2.159943,0,0,ODS:SA:CTP20310382,Europe/Paris,,ODS, +ODS:SP:20311505,1,"Centre",49.303886,1.938348,0,0,ODS:SA:CTP20311505,Europe/Paris,,ODS, +ODS:SP:20311506,1,"Menantissart",49.696373,1.823515,0,0,ODS:SA:CTP20310750,Europe/Paris,,ODS, +ODS:SP:20311507,1,"915 rue de Pierrepont-Pierrepont",49.361524,2.177281,0,0,ODS:SA:CTP20311507,Europe/Paris,,ODS, +ODS:SP:20311508,1,"Friancourt",49.345658,2.244636,0,0,ODS:SA:CTP20311508,Europe/Paris,,ODS, +ODS:SP:20311509,1,"Salle Polyvalente",49.68591,1.870004,0,0,ODS:SA:CTP20203511,Europe/Paris,,ODS, +ODS:SP:20311511,1,"La neuville",49.677628,1.814556,0,0,ODS:SA:CTP20310496,Europe/Paris,,ODS, +ODS:SP:20311512,1,"Moulin du Clos Guérin",49.525269,1.88607,0,0,ODS:SA:CTP20311512,Europe/Paris,,ODS, +ODS:SP:20311513,1,"École",49.289597,2.196212,0,0,ODS:SA:CTP20311513,Europe/Paris,,ODS, +ODS:SP:20311514,1,"Route de LABOISSIERE",49.269332,2.184309,0,0,ODS:SA:CTP20311514,Europe/Paris,,ODS, +ODS:SP:20311515,1,"La vigne",49.348329,1.773881,0,0,ODS:SA:CTP20310658,Europe/Paris,,ODS, +ODS:SP:20311516,1,"Église",49.455602,2.214647,0,0,ODS:SA:CTP20311516,Europe/Paris,,ODS, +ODS:SP:20311517,1,"Franc Marché",49.436181,2.086759,0,0,ODS:SA:CTP20311517,Europe/Paris,,ODS, +ODS:SP:20311518,1,"Ménillet",49.189164,2.19446,0,0,ODS:SA:CTP20310100,Europe/Paris,,ODS, +ODS:SP:20311519,1,"Mairie",49.256496,2.106768,0,0,ODS:SA:CTP20203714,Europe/Paris,,ODS, +ODS:SP:20311520,1,"Eglise",49.318056,1.970848,0,0,ODS:SA:CTP20201245,Europe/Paris,,ODS, +ODS:SP:20311521,1,"RD145",49.493909,1.749716,0,0,ODS:SA:CTP20311521,Europe/Paris,,ODS, +ODS:SP:20311522,1,"Centre-Tennis",49.319371,2.323086,0,0,ODS:SA:CTP20311522,Europe/Paris,,ODS, +ODS:SP:20311523,1,"Gare",49.35402,2.243053,0,0,ODS:SA:CTP20310339,Europe/Paris,,ODS, +ODS:SP:20311524,1,"Parfondeval",49.289445,2.13668,0,0,ODS:SA:CTP20310383,Europe/Paris,,ODS, +ODS:SP:20311525,1,"La petite Landelle Centre",49.391577,1.880791,0,0,ODS:SA:CTP20310401,Europe/Paris,,ODS, +ODS:SP:20311526,1,"Roland Mariage",49.604944,2.379308,0,0,ODS:SA:CTP20203299,Europe/Paris,,ODS, +ODS:SP:20311527,1,"Centre Commercial",49.2885,1.808857,0,0,ODS:SA:CTP20203593,Europe/Paris,,ODS, +ODS:SP:20311528,1,"Le Quesnoy",49.548757,1.806583,0,0,ODS:SA:CTP20311528,Europe/Paris,,ODS, +ODS:SP:20311529,1,"Le Tronquet",49.399685,1.809446,0,0,ODS:SA:CTP20311529,Europe/Paris,,ODS, +ODS:SP:20311530,1,"Rue du Four",49.520621,2.22063,0,0,ODS:SA:CTP20311530,Europe/Paris,,ODS, +ODS:SP:20311531,1,"Passage à Niveau",49.471667,2.035849,0,0,ODS:SA:CTP20201305,Europe/Paris,,ODS, +ODS:SP:20311532,1,"Auchy",49.482675,1.778839,0,0,ODS:SA:CTP20311532,Europe/Paris,,ODS, +ODT:SP:21000029,1,"Collège Jeanne D'arc",49.387698,2.388583,0,0,ODT:SA:CTP21000029,Europe/Paris,,ODT, +ODT:SP:21000069,1,"Normandie",49.222362,2.50327,0,0,ODT:SA:CTP21000069,Europe/Paris,,ODT, +ODT:SP:21000070,1,"Place Gallé",49.224758,2.511494,0,0,ODT:SA:CTP21000070,Europe/Paris,,ODT, +ODT:SP:21000087,1,"AUMONT EN HALATTE Château",49.229785,2.558046,0,0,ODT:SA:CTP21000087,Europe/Paris,,ODT, +ODT:SP:21000117,1,"AVILLY ST LEONARD Roi d'Agober",49.194182,2.512693,0,0,ODT:SA:CTP21000117,Europe/Paris,,ODT, +ODT:SP:21000280,1,"BORAN SUR OISE Moulin",49.166662,2.354697,0,0,ODT:SA:CTP21000280,Europe/Paris,,ODT, +ODT:SP:21000283,1,"BORAN SUR OISE Roseraie",49.164749,2.353614,0,0,ODT:SA:CTP21000283,Europe/Paris,,ODT, +ODT:SP:21000286,1,"BORAN SUR OISE Enclos",49.166023,2.359328,0,0,ODT:SA:CTP21000286,Europe/Paris,,ODT, +ODT:SP:21000336,1,"BREUIL LE VERT Grand Air",49.360513,2.422762,0,0,OTC:SA:CTP31000013,Europe/Paris,,ODT, +ODT:SP:21000337,1,"BREUIL LE VERT Lycée Roberval",49.363884,2.418889,0,0,ODT:SA:CTP21000337,Europe/Paris,,ODT, +ODT:SP:21000373,1,"CAMBRONNE LES CLERMONT Ars",49.321968,2.416733,0,0,ODT:SA:CTP21000373,Europe/Paris,,ODT, +ODT:SP:21000412,1,"Soutraine KUOM",49.317863,2.440267,0,0,ODT:SA:CTP21000412,Europe/Paris,,ODT, +ODT:SP:21000413,1,"Soutraine KUOM",49.317908,2.440116,0,0,ODT:SA:CTP21000412,Europe/Paris,,ODT, +ODT:SP:21000487,1,"CIRES LES MELLO Station",49.270595,2.359771,0,0,ODT:SA:CTP21000487,Europe/Paris,,ODT, +ODT:SP:21000490,1,"CIRES LES MELLO Le Tillet HLM",49.261083,2.338476,0,0,ODT:SA:CTP21000490,Europe/Paris,,ODT, +ODT:SP:21000491,1,"CIRES LES MELLO Le Tillet Place",49.25783,2.327578,0,0,ODT:SA:CTP21000491,Europe/Paris,,ODT, +ODT:SP:21000499,1,"Lycée CASSINI",49.384284,2.407129,0,0,ODT:SA:CTP21000499,Europe/Paris,,ODT, +ODT:SP:21000511,1,"La croix de Creil",49.368925,2.417727,0,0,ODT:SA:CTP21000511,Europe/Paris,,ODT, +ODT:SP:21000512,1,"Les Sables",49.385635,2.400966,0,0,OTC:SA:CTP31000041,Europe/Paris,,ODT, +ODT:SP:21000538,1,"Maison Neuve",49.200787,2.540001,0,0,ODT:SA:CTP21000538,Europe/Paris,,ODT, +ODT:SP:21000539,1,"Saint Nicolas Centre",49.202575,2.550799,0,0,ODT:SA:CTP21000539,Europe/Paris,,ODT, +ODT:SP:21000540,1,"Saint Nicolas",49.203555,2.550392,0,0,ODT:SA:CTP21000540,Europe/Paris,,ODT, +ODT:SP:21000542,1,"Place",49.198299,2.534178,0,0,ODT:SA:CTP21000542,Europe/Paris,,ODT, +ODT:SP:21000543,1,"Les 4 Vents",49.199893,2.532073,0,0,ODT:SA:CTP21000543,Europe/Paris,,ODT, +ODT:SP:21000547,1,"COYE LA FORET Demeure de France",49.141513,2.461348,0,0,ODT:SA:CTP21000547,Europe/Paris,,ODT, +ODT:SP:21000548,1,"COYE LA FORET Roncier",49.139739,2.465179,0,0,ODT:SA:CTP21000548,Europe/Paris,,ODT, +ODT:SP:21000549,1,"COYE LA FORET Bruyères",49.13933,2.469409,0,0,ODT:SA:CTP21000549,Europe/Paris,,ODT, +ODT:SP:21000551,1,"COYE LA FORET Place Blanche",49.142569,2.473649,0,0,ODT:SA:CTP21000551,Europe/Paris,,ODT, +ODT:SP:21000552,1,"COYE LA FORET Ménagerie",49.140779,2.475288,0,0,ODT:SA:CTP21000552,Europe/Paris,,ODT, +ODT:SP:21000553,1,"COYE LA FORET Crochet de Coye",49.139033,2.484651,0,0,ODT:SA:CTP21000553,Europe/Paris,,ODT, +ODT:SP:21000843,1,"La Chaussée",49.199044,2.431886,0,0,ODT:SA:CTP21000843,Europe/Paris,,ODT, +ODT:SP:21000844,1,"Chaumont",49.197563,2.417336,0,0,ODT:SA:CTP21000844,Europe/Paris,,ODT, +ODT:SP:21000848,1,"Colliau",49.186556,2.418443,0,0,ODT:SA:CTP21000848,Europe/Paris,,ODT, +ODT:SP:21000851,1,"Basses Garennes",49.186203,2.407833,0,0,ODT:SA:CTP21000851,Europe/Paris,,ODT, +ODT:SP:21000852,1,"Collège Sonia DELAUNAY",49.189787,2.40999,0,0,ODT:SA:CTP21000852,Europe/Paris,,ODT, +ODT:SP:21000855,1,"L'Etrier",49.187866,2.432962,0,0,ODT:SA:CTP21000855,Europe/Paris,,ODT, +ODT:SP:21000856,1,"Parc du Chauffour",49.188524,2.441188,0,0,ODT:SA:CTP21000856,Europe/Paris,,ODT, +ODT:SP:21000857,1,"Centre AQUALIS",49.189348,2.433814,0,0,ODT:SA:CTP21000857,Europe/Paris,,ODT, +ODT:SP:21000858,1,"Parc du Manoir",49.18913,2.446508,0,0,ODT:SA:CTP21000858,Europe/Paris,,ODT, +ODT:SP:21000859,1,"Domaine des Aigles",49.189411,2.453348,0,0,ODT:SA:CTP21000859,Europe/Paris,,ODT, +ODT:SP:21000861,1,"Toutevoie",49.198154,2.406136,0,0,ODT:SA:CTP21000861,Europe/Paris,,ODT, +ODT:SP:21000863,1,"Bois des Bouleaux",49.183796,2.40613,0,0,ODT:SA:CTP21000863,Europe/Paris,,ODT, +ODT:SP:21001001,1,"Office de Tourisme",49.194352,2.471196,0,0,ODT:SA:CTP21001001,Europe/Paris,,ODT, +ODT:SP:21001002,1,"Lycée J Rostand",49.181638,2.463007,0,0,OYY:SA:CTP4010014,Europe/Paris,,ODT, +ODT:SP:21001015,1,"LA CHAPELLE EN SERVAL Chêne au Loup",49.123053,2.525882,0,0,ODT:SA:CTP21001015,Europe/Paris,,ODT, +ODT:SP:21001016,1,"LA CHAPELLE EN SERVAL Collège du Servois",49.122766,2.525799,0,0,ODT:SA:CTP21001016,Europe/Paris,,ODT, +ODT:SP:21001017,1,"LA CHAPELLE EN SERVAL Glorie",49.125865,2.531944,0,0,ODT:SA:CTP21001017,Europe/Paris,,ODT, +ODT:SP:21001019,1,"LA CHAPELLE EN SERVAL Gymnase",49.121426,2.526478,0,0,ODT:SA:CTP21001019,Europe/Paris,,ODT, +ODT:SP:21001020,1,"LA CHAPELLE EN SERVAL Nouvelle cité",49.123608,2.533332,0,0,ODT:SA:CTP21001020,Europe/Paris,,ODT, +ODT:SP:21001021,1,"LA CHAPELLE EN SERVAL Centre",49.129304,2.533764,0,0,ODT:SA:CTP21001021,Europe/Paris,,ODT, +ODT:SP:21001061,1,"Sailleville Aulnois",49.304896,2.444157,0,0,ODT:SA:CTP21001061,Europe/Paris,,ODT, +ODT:SP:21001064,1,"Rue des Cerises",49.301024,2.443586,0,0,ODT:SA:CTP21001064,Europe/Paris,,ODT, +ODT:SP:21001067,1,"Hotel de ville",49.293891,2.443612,0,0,ODT:SA:CTP21001067,Europe/Paris,,ODT, +ODT:SP:21001069,1,"Paul Eluard",49.288109,2.449602,0,0,ODT:SA:CTP21001069,Europe/Paris,,ODT, +ODT:SP:21001081,1,"Le LYS RP des Moines",49.16707,2.378676,0,0,ODT:SA:CTP21001081,Europe/Paris,,ODT, +ODT:SP:21001083,1,"Le LYS R P d'Aumale",49.166536,2.387705,0,0,ODT:SA:CTP21001083,Europe/Paris,,ODT, +ODT:SP:21001086,1,"Le LYS RP du Grand Conde",49.165595,2.40168,0,0,ODT:SA:CTP21001086,Europe/Paris,,ODT, +ODT:SP:21001089,1,"Le LYS RP de l'Etoile",49.163653,2.430492,0,0,ODT:SA:CTP21001089,Europe/Paris,,ODT, +ODT:SP:21001091,1,"RP du Lys",49.161959,2.437175,0,0,ODT:SA:CTP21001091,Europe/Paris,,ODT, +ODT:SP:21001092,1,"Beau Larris",49.163229,2.443493,0,0,ODT:SA:CTP21001092,Europe/Paris,,ODT, +ODT:SP:21001101,1,"Le LYS RP Royal",49.17278,2.388465,0,0,ODT:SA:CTP21001101,Europe/Paris,,ODT, +ODT:SP:21001105,1,"Chaussée de Bertinval",49.154166,2.429159,0,0,ODT:SA:CTP21001105,Europe/Paris,,ODT, +ODT:SP:21001106,1,"Collège F DOLTO",49.153639,2.424391,0,0,ODT:SA:CTP21001106,Europe/Paris,,ODT, +ODT:SP:21001110,1,"Cimetiere",49.157312,2.438303,0,0,ODT:SA:CTP21001110,Europe/Paris,,ODT, +ODT:SP:21001111,1,"Montagne",49.160747,2.446091,0,0,ODT:SA:CTP21001111,Europe/Paris,,ODT, +ODT:SP:21001113,1,"Plein Soleil",49.166766,2.436595,0,0,ODT:SA:CTP21001113,Europe/Paris,,ODT, +ODT:SP:21001115,1,"de Gallaix",49.166097,2.441087,0,0,ODT:SA:CTP21001115,Europe/Paris,,ODT, +ODT:SP:21001118,1,"Saint Exupery",49.152209,2.437512,0,0,ODT:SA:CTP21001118,Europe/Paris,,ODT, +ODT:SP:21001119,1,"Rû Saint Martin",49.147561,2.441584,0,0,ODT:SA:CTP21001119,Europe/Paris,,ODT, +ODT:SP:21001352,1,"Martincourt",49.283331,2.375268,0,0,ODT:SA:CTP21001352,Europe/Paris,,ODT, +ODT:SP:21001460,1,"Montaby Place",49.115901,2.628767,0,0,ODT:SA:CTP21001460,Europe/Paris,,ODT, +ODT:SP:21001462,1,"Lycée A.Malraux",49.259343,2.426259,0,0,OGN:SA:CTP6090007,Europe/Paris,,ODT, +ODT:SP:21001574,1,"ORRY LA VILLE Montgresin Place",49.154995,2.520944,0,0,ODT:SA:CTP21001574,Europe/Paris,,ODT, +ODT:SP:21001576,1,"ORRY LA VILLE Calvaire",49.134008,2.513461,0,0,ODT:SA:CTP21001576,Europe/Paris,,ODT, +ODT:SP:21001577,1,"ORRY LA VILLE Blancs Fossés",49.134921,2.509205,0,0,ODT:SA:CTP21001577,Europe/Paris,,ODT, +ODT:SP:21001579,1,"ORRY LA VILLE Les Pâturages",49.127846,2.517712,0,0,ODT:SA:CTP21001579,Europe/Paris,,ODT, +ODT:SP:21001581,1,"ORRY LA VILLE Marly",49.129928,2.513789,0,0,ODT:SA:CTP21001581,Europe/Paris,,ODT, +ODT:SP:21001583,1,"ORRY LA VILLE Borne Blanche",49.127457,2.507537,0,0,ODT:SA:CTP21001583,Europe/Paris,,ODT, +ODT:SP:21001585,1,"ORRY LA VILLE Pervenche",49.130853,2.507877,0,0,ODT:SA:CTP21001585,Europe/Paris,,ODT, +ODT:SP:21001619,1,"Verger",49.106035,2.593538,0,0,ODT:SA:CTP21001619,Europe/Paris,,ODT, +ODT:SP:21001622,1,"Haut",49.105245,2.575592,0,0,ODT:SA:CTP21001622,Europe/Paris,,ODT, +ODT:SP:21001644,1,"PONTARME Gerioles",49.151043,2.547285,0,0,ODT:SA:CTP21001644,Europe/Paris,,ODT, +ODT:SP:21001645,1,"PONTARME Morliére",49.154219,2.549777,0,0,ODT:SA:CTP21001645,Europe/Paris,,ODT, +ODT:SP:21001647,1,"PONTARME Pavillon",49.15378,2.554186,0,0,ODT:SA:CTP21001647,Europe/Paris,,ODT, +ODT:SP:21001696,1,"Relais de la Poste",49.323584,2.442024,0,0,ODT:SA:CTP21001696,Europe/Paris,,ODT, +ODT:SP:21001699,1,"Pierre Curie",49.332633,2.438716,0,0,ODT:SA:CTP21001699,Europe/Paris,,ODT, +ODT:SP:21001771,1,"Flandre",49.293686,2.385234,0,0,ODT:SA:CTP21001771,Europe/Paris,,ODT, +ODT:SP:21001919,1,"ST MAXIMIN Croizat",49.221006,2.438277,0,0,OSP:SA:CTP19000008,Europe/Paris,,ODT, +ODT:SP:21001920,1,"ST MAXIMIN Eglise",49.221028,2.453625,0,0,OSP:SA:CTP19000010,Europe/Paris,,ODT, +ODT:SP:21001921,1,"ST MAXIMIN Révolution Française",49.234085,2.468582,0,0,OSP:SA:CTP19000029,Europe/Paris,,ODT, +ODT:SP:21001922,1,"ST MAXIMIN Marseillaise",49.233197,2.461185,0,0,OSP:SA:CTP19000030,Europe/Paris,,ODT, +ODT:SP:21001923,1,"ST MAXIMIN Lycée Rothschild",49.233951,2.45939,0,0,ODT:SA:CTP21001923,Europe/Paris,,ODT, +ODT:SP:21001924,1,"ST MAXIMIN Economat",49.21776,2.451355,0,0,ODT:SA:CTP21001924,Europe/Paris,,ODT, +ODT:SP:21001925,1,"ST MAXIMIN Mairie",49.222655,2.443095,0,0,OSP:SA:CTP19000009,Europe/Paris,,ODT, +ODT:SP:21001926,1,"ST MAXIMIN La Grande Folie",49.221276,2.46619,0,0,ODT:SA:CTP21001926,Europe/Paris,,ODT, +ODT:SP:21001987,1,"SAINT VAAST LES MELLO Commune de Paris",49.265653,2.391098,0,0,ODT:SA:CTP21001987,Europe/Paris,,ODT, +ODT:SP:21002076,1,"THIER SUR THEVE Rue du Général Leclerc",49.152862,2.564881,0,0,ODT:SA:CTP21002076,Europe/Paris,,ODT, +ODT:SP:21002290,1,"VINEUIL ST FIRMIN Le Golf",49.207334,2.49439,0,0,ODT:SA:CTP21002290,Europe/Paris,,ODT, +ODT:SP:21002291,1,"VINEUIL SAINT FIRMIN Sainte-Barbe",49.198988,2.486564,0,0,ODT:SA:CTP21101040,Europe/Paris,,ODT, +ODT:SP:21002293,1,"VINEUIL ST FIRMIN Bois Coupé",49.198209,2.498133,0,0,ODT:SA:CTP21002293,Europe/Paris,,ODT, +ODT:SP:21002295,1,"VINEUIL ST FIRMIN Scierie",49.203626,2.512191,0,0,ODT:SA:CTP21002295,Europe/Paris,,ODT, +ODT:SP:21002297,1,"VINEUIL ST FIRMIN Courtillet",49.199135,2.523117,0,0,ODT:SA:CTP21002297,Europe/Paris,,ODT, +ODT:SP:21002314,1,"CAMBRONNE LES CLERMONT Vaux",49.329453,2.41449,0,0,ODT:SA:CTP21002314,Europe/Paris,,ODT, +ODT:SP:21002317,1,"Lycée Amyot d'Inville",49.191446,2.573139,0,0,ODT:SA:CTP21002317,Europe/Paris,,ODT, +ODT:SP:21002318,1,"Cité Judiciaire Collège A.M. Javouhey",49.208238,2.582034,0,0,OEL:SA:CTP2080015,Europe/Paris,,ODT, +ODT:SP:21002319,1,"Usine des Eaux",49.208752,2.585739,0,0,ODT:SA:CTP21002319,Europe/Paris,,ODT, +ODT:SP:21002320,1,"Collège des Bourgognes",49.202792,2.468269,0,0,OYY:SA:CTP4010005,Europe/Paris,,ODT, +ODT:SP:21002321,1,"Collège F. des Prés",49.213775,2.576451,0,0,OEL:SA:CTP2080016,Europe/Paris,,ODT, +ODT:SP:21002322,1,"Office de Tourisme",49.194368,2.472827,0,0,ODT:SA:CTP21001001,Europe/Paris,,ODT, +ODT:SP:21002324,1,"Bordeaux Odent",49.204509,2.586623,0,0,ODT:SA:CTP21002324,Europe/Paris,,ODT, +ODT:SP:21002326,1,"Lycée Hugues Capet",49.191504,2.570617,0,0,ODT:SA:CTP21002326,Europe/Paris,,ODT, +ODT:SP:21002327,1,"Lycée J Rostand",49.181544,2.463009,0,0,OYY:SA:CTP4010014,Europe/Paris,,ODT, +ODT:SP:21002329,1,"Notre Dame/Musée du cheval",49.194506,2.477982,0,0,OYY:SA:CTP4010017,Europe/Paris,,ODT, +ODT:SP:21002330,1,"Ecole Notre Dame",49.208725,2.585752,0,0,OEL:SA:CTP2080045,Europe/Paris,,ODT, +ODT:SP:21002331,1,"Places Des Arènes",49.206523,2.577377,0,0,ORQ:SA:CTP29000005,Europe/Paris,,ODT, +ODT:SP:21002332,1,"Val d'Aunette",49.204524,2.57021,0,0,OEL:SA:CTP2085065,Europe/Paris,,ODT, +ODT:SP:21002333,1,"Place Omer Vallon",49.194196,2.465698,0,0,ODT:SA:CTP21101028,Europe/Paris,,ODT, +ODT:SP:21002334,1,"Quai de la Canardière",49.195285,2.463946,0,0,OYY:SA:CTP4015020,Europe/Paris,,ODT, +ODT:SP:21002335,1,"Lefébure",49.201686,2.460904,0,0,OYY:SA:CTP4015013,Europe/Paris,,ODT, +ODT:SP:21002336,1,"Blaise Pascal",49.25541,2.487372,0,0,OGN:SA:CTP6090014,Europe/Paris,,ODT, +ODT:SP:21002337,1,"Becquerel",49.252285,2.478442,0,0,ODT:SA:CTP21002337,Europe/Paris,,ODT, +ODT:SP:21002338,1,"B.Fouchère",49.258603,2.476744,0,0,OGN:SA:CTP6090012,Europe/Paris,,ODT, +ODT:SP:21002340,1,"Champrelle",49.252791,2.476467,0,0,ODT:SA:CTP21002340,Europe/Paris,,ODT, +ODT:SP:21002341,1,"Mégret",49.251345,2.476202,0,0,OGN:SA:CTP6090074,Europe/Paris,,ODT, +ODT:SP:21002342,1,"F Roosevelt",49.253049,2.470744,0,0,ODT:SA:CTP21002342,Europe/Paris,,ODT, +ODT:SP:21002343,1,"Gambetta",49.263359,2.473942,0,0,OGN:SA:CTP6090042,Europe/Paris,,ODT, +ODT:SP:21002344,1,"Gare Routière",49.261847,2.46853,0,0,OSP:SA:CTP19000072,Europe/Paris,,ODT, +ODT:SP:21002345,1,"Carnot",49.262731,2.473062,0,0,OGN:SA:CTP6090020,Europe/Paris,,ODT, +ODT:SP:21002346,1,"Plaine de Jeux",49.247962,2.47257,0,0,OGN:SA:CTP6090091,Europe/Paris,,ODT, +ODT:SP:21002347,1,"Bas des Tufs",49.257951,2.481615,0,0,OGN:SA:CTP6090010,Europe/Paris,,ODT, +ODT:SP:21002348,1,"Gare SNCF",49.263472,2.469316,0,0,SIN:SA:OCE87276006,Europe/Paris,,ODT, +ODT:SP:21002350,1,"Valois",49.252109,2.483479,0,0,ORQ:SA:CTP29000003,Europe/Paris,,ODT, +ODT:SP:21002351,1,"Van Gogh",49.251098,2.472249,0,0,ODT:SA:CTP21002351,Europe/Paris,,ODT, +ODT:SP:21002352,1,"NOGENT SUR OISE Lycée Marie Curie",49.266707,2.460758,0,0,ODT:SA:CTP21002352,Europe/Paris,,ODT, +ODT:SP:21002353,1,"Puvis de Chavannes",49.256335,2.487608,0,0,OGN:SA:CTP6090095,Europe/Paris,,ODT, +ODT:SP:21002354,1,"Valois",49.2521,2.483369,0,0,ORQ:SA:CTP29000003,Europe/Paris,,ODT, +ODT:SP:21002355,1,"Eugène Gazeau",49.206341,2.599714,0,0,OEL:SA:CTP2080018,Europe/Paris,,ODT, +ODT:SP:21002356,1,"NOGENT SUR OISE Commanderie",49.282118,2.457678,0,0,ODT:SA:CTP21002356,Europe/Paris,,ODT, +ODT:SP:21002357,1,"Clinique des Jockeys",49.179794,2.456616,0,0,OYY:SA:CTP4010009,Europe/Paris,,ODT, +ODT:SP:21002358,1,"Av Bourbon",49.180167,2.46114,0,0,OYY:SA:CTP4015002,Europe/Paris,,ODT, +ODT:SP:21002368,1,"BREUIL LE VERT Collège Jacques-Yves COUSTEAU",49.360696,2.418292,0,0,ODT:SA:CTP21002368,Europe/Paris,,ODT, +ODT:SP:21002371,1,"Hauts Bois",49.196836,2.577962,0,0,ODT:SA:CTP21002371,Europe/Paris,,ODT, +ODT:SP:21002372,1,"Hopital",49.195935,2.574874,0,0,OEL:SA:CTP2080025,Europe/Paris,,ODT, +ODT:SP:21002373,1,"Point du Jour",49.201321,2.581658,0,0,ODT:SA:CTP21002373,Europe/Paris,,ODT, +ODT:SP:21002374,1,"Place du Valois",49.208759,2.599356,0,0,OEL:SA:CTP2080046,Europe/Paris,,ODT, +ODT:SP:21002389,1,"Brichebay",49.197264,2.570301,0,0,OEL:SA:CTP2085049,Europe/Paris,,ODT, +ODT:SP:21002390,1,"Bordeaux",49.205019,2.587545,0,0,OEL:SA:CTP2080007,Europe/Paris,,ODT, +ODT:SP:21002395,1,"Collège Fernel",49.384595,2.39685,0,0,OTC:SA:CTP31000038,Europe/Paris,,ODT, +ODT:SP:21002401,1,"Branly",49.253209,2.487078,0,0,OGN:SA:CTP6090019,Europe/Paris,,ODT, +ODT:SP:21002402,1,"LA CHAPELLE EN SERVAL Cimetière",49.125259,2.529053,0,0,ODT:SA:CTP21002402,Europe/Paris,,ODT, +ODT:SP:21002404,1,"PONTARME Place du Château",49.152742,2.571003,0,0,ODT:SA:CTP21002404,Europe/Paris,,ODT, +ODT:SP:21002406,1,"Gambetta",49.187909,2.423613,0,0,ODT:SA:CTP21002406,Europe/Paris,,ODT, +ODT:SP:21002407,1,"Gare",49.384906,2.417587,0,0,ODT:SA:CTP21002407,Europe/Paris,,ODT, +ODT:SP:21002408,1,"ORRY LA VILLE Libération",49.131294,2.513411,0,0,ODT:SA:CTP21002408,Europe/Paris,,ODT, +ODT:SP:21002409,1,"Eglise",49.328382,2.44158,0,0,ODT:SA:CTP21002409,Europe/Paris,,ODT, +ODT:SP:21002410,1,"AUMONT EN HALATTE Eglise",49.229351,2.549401,0,0,ODT:SA:CTP21002410,Europe/Paris,,ODT, +ODT:SP:21002411,1,"ORRY LA VILLE Gare",49.13917,2.490389,0,0,ODT:SA:CTP21002411,Europe/Paris,,ODT, +ODT:SP:21002412,1,"Gare Routière",49.206187,2.59213,0,0,ODV:SA:CTP22403067,Europe/Paris,,ODT, +ODT:SP:21002413,1,"Chateau",49.152232,2.443128,0,0,ODT:SA:CTP21002413,Europe/Paris,,ODT, +ODT:SP:21002415,1,"LA CHAPELLE EN SERVAL Mairie",49.13137,2.533922,0,0,ODT:SA:CTP21002415,Europe/Paris,,ODT, +ODT:SP:21002416,1,"PONTARME Mairie",49.154577,2.550504,0,0,ODT:SA:CTP21002416,Europe/Paris,,ODT, +ODT:SP:21002417,1,"VINEUIL ST FIRMIN Mairie",49.199989,2.491091,0,0,ODT:SA:CTP21002417,Europe/Paris,,ODT, +ODT:SP:21002418,1,"Mairie",49.192607,2.464734,0,0,OYY:SA:CTP4010016,Europe/Paris,,ODT, +ODT:SP:21002419,1,"CIRES LES MELLO Mairie",49.275249,2.35829,0,0,ODT:SA:CTP21002419,Europe/Paris,,ODT, +ODT:SP:21002420,1,"Mairie",49.18822,2.415978,0,0,ODT:SA:CTP21002420,Europe/Paris,,ODT, +ODT:SP:21002421,1,"COYE LA FORET Centre",49.142655,2.468295,0,0,ODT:SA:CTP21002421,Europe/Paris,,ODT, +ODT:SP:21002422,1,"Centre",49.376087,2.413419,0,0,OTC:SA:CTP31000032,Europe/Paris,,ODT, +ODT:SP:21002423,1,"Centre",49.10343,2.584671,0,0,ODT:SA:CTP21002423,Europe/Paris,,ODT, +ODT:SP:21002424,1,"BREUIL LE VERT Centre",49.361445,2.437109,0,0,ODT:SA:CTP21002424,Europe/Paris,,ODT, +ODT:SP:21002436,1,"VINEUIL ST FIRMIN Le Golf",49.20719,2.494637,0,0,ODT:SA:CTP21002290,Europe/Paris,,ODT, +ODT:SP:21002453,1,"NOGENT SUR OISE Branly",49.275867,2.464542,0,0,ODT:SA:CTP21002453,Europe/Paris,,ODT, +ODT:SP:21002458,1,"ST LEU Gare",49.213914,2.418335,0,0,OSP:SA:CTP19000007,Europe/Paris,,ODT, +ODT:SP:21002462,1,"VILLERS SOUS ST LEU Mairie",49.212596,2.398653,0,0,ODT:SA:CTP21002462,Europe/Paris,,ODT, +ODT:SP:21002463,1,"PRECY SUR OISE Gare",49.20301,2.375689,0,0,ODT:SA:CTP21002463,Europe/Paris,,ODT, +ODT:SP:21002465,1,"BLAINCOURT Le Bosquet",49.225531,2.350588,0,0,ODT:SA:CTP21002465,Europe/Paris,,ODT, +ODT:SP:21002466,1,"Centre",49.233452,2.303669,0,0,ODT:SA:CTP21002466,Europe/Paris,,ODT, +ODT:SP:21002467,1,"NEUILLY EN THELLE Hôtel de Ville",49.224326,2.285568,0,0,ODT:SA:CTP21002467,Europe/Paris,,ODT, +ODT:SP:21002468,1,"CROUY EN THELLE Centre",49.21324,2.320797,0,0,ODT:SA:CTP21002468,Europe/Paris,,ODT, +ODT:SP:21002471,1,"NOGENT SUR OISE Europe",49.268973,2.48273,0,0,ODT:SA:CTP21002471,Europe/Paris,,ODT, +ODT:SP:21002472,1,"MONCHY ST ELOI Candily",49.287556,2.47196,0,0,ODT:SA:CTP21002472,Europe/Paris,,ODT, +ODT:SP:21002473,1,"MONCHY ST ELOI Mairie",49.292859,2.460821,0,0,ODT:SA:CTP21002473,Europe/Paris,,ODT, +ODT:SP:21002474,1,"MONCHY ST ELOI Lotissement",49.296944,2.463578,0,0,ODT:SA:CTP21002474,Europe/Paris,,ODT, +ODT:SP:21002475,1,"Mognevillette",49.311732,2.471598,0,0,ODT:SA:CTP21002475,Europe/Paris,,ODT, +ODT:SP:21002476,1,"Mairie",49.314696,2.471963,0,0,ODT:SA:CTP21002476,Europe/Paris,,ODT, +ODT:SP:21002477,1,"MOGNEVILLE Mognevillette",49.321171,2.466482,0,0,ODT:SA:CTP21002477,Europe/Paris,,ODT, +ODT:SP:21002478,1,"Collège LAROCHEFOUCAULD",49.328093,2.462211,0,0,ODT:SA:CTP21002478,Europe/Paris,,ODT, +ODT:SP:21002480,1,"La Rochefoucauld",49.329914,2.464827,0,0,ODT:SA:CTP21002480,Europe/Paris,,ODT, +ODT:SP:21002483,1,"Mairie",49.348642,2.458274,0,0,ODT:SA:CTP21002483,Europe/Paris,,ODT, +ODT:SP:21002485,1,"Louveaucourt",49.341359,2.455699,0,0,ODT:SA:CTP21002485,Europe/Paris,,ODT, +ODT:SP:21002488,1,"Faïencerie",49.259864,2.474386,0,0,ODT:SA:CTP21002488,Europe/Paris,,ODT, +ODT:SP:21002490,1,"PONT STE MAXENCE Champs de Mars",49.306354,2.60425,0,0,ODT:SA:CTP21002490,Europe/Paris,,ODT, +ODT:SP:21002495,1,"Rue verte",49.319632,2.539535,0,0,ODT:SA:CTP21002495,Europe/Paris,,ODT, +ODT:SP:21002496,1,"Guerlin",49.320556,2.535292,0,0,ODT:SA:CTP21002496,Europe/Paris,,ODT, +ODT:SP:21002497,1,"La Lignière",49.320039,2.509124,0,0,ODT:SA:CTP21002497,Europe/Paris,,ODT, +ODT:SP:21002500,1,"L'Eguillon",49.315361,2.500877,0,0,ODT:SA:CTP21002500,Europe/Paris,,ODT, +ODT:SP:21002501,1,"Place",49.311392,2.505825,0,0,ODT:SA:CTP21002501,Europe/Paris,,ODT, +ODT:SP:21002503,1,"Centre",49.300678,2.515571,0,0,ODT:SA:CTP21002503,Europe/Paris,,ODT, +ODT:SP:21002505,1,"VILLERS ST PAUL Gymnase",49.291941,2.50028,0,0,ODT:SA:CTP21002505,Europe/Paris,,ODT, +ODT:SP:21002506,1,"VILLERS ST PAUL Mairie",49.288204,2.486259,0,0,OGN:SA:CTP6090109,Europe/Paris,,ODT, +ODT:SP:21002509,1,"Parc",49.270486,2.589264,0,0,ODT:SA:CTP21002509,Europe/Paris,,ODT, +ODT:SP:21002510,1,"Roquesable",49.264441,2.584388,0,0,ODT:SA:CTP21002510,Europe/Paris,,ODT, +ODT:SP:21002511,1,"Mairie",49.259284,2.583979,0,0,ODT:SA:CTP21002511,Europe/Paris,,ODT, +ODT:SP:21002512,1,"VERNEUIL EN HALATTE Eglise",49.27473,2.517403,0,0,ODT:SA:CTP21002512,Europe/Paris,,ODT, +ODT:SP:21002513,1,"VERNEUIL EN HALATTE RUE DES BOIS Croix des Veneurs",49.293132,2.543415,0,0,ODT:SA:CTP21002513,Europe/Paris,,ODT, +ODT:SP:21002515,1,"VERNEUIL EN HALATTE Marronnier",49.276184,2.523889,0,0,ODT:SA:CTP21002515,Europe/Paris,,ODT, +ODT:SP:21002516,1,"VERNEUIL EN HALATT Muguet",49.282078,2.524172,0,0,ODT:SA:CTP21002516,Europe/Paris,,ODT, +ODT:SP:21002517,1,"VERNEUIL EN HALATTE Monument",49.278614,2.515293,0,0,ODT:SA:CTP21002517,Europe/Paris,,ODT, +ODT:SP:21002518,1,"VERNEUIL EN HALATTE Bac",49.278704,2.508958,0,0,ODT:SA:CTP21002518,Europe/Paris,,ODT, +ODT:SP:21002520,1,"Tremblay",49.270619,2.495085,0,0,ODT:SA:CTP21002520,Europe/Paris,,ODT, +ODT:SP:21002521,1,"Marcel Philippe",49.26064,2.478822,0,0,ODT:SA:CTP21002521,Europe/Paris,,ODT, +ODT:SP:21002523,1,"Collège MICHELET",49.26309,2.481588,0,0,ODT:SA:CTP21002523,Europe/Paris,,ODT, +ODT:SP:21002524,1,"VERNEUIL EN HALATTE MONT LA VILLE Curie",49.265638,2.529123,0,0,ODT:SA:CTP21002524,Europe/Paris,,ODT, +ODT:SP:21002526,1,"VERNEUIL EN HALATTE Lepercq",49.272511,2.498365,0,0,ODT:SA:CTP21002526,Europe/Paris,,ODT, +ODT:SP:21002527,1,"VERNEUIL EN HALATTE MONT LA VILLE Brosse",49.266714,2.5245,0,0,ODT:SA:CTP21002527,Europe/Paris,,ODT, +ODT:SP:21002528,1,"VERNEUIL EN HALATTE Etang",49.272379,2.521239,0,0,ODT:SA:CTP21002528,Europe/Paris,,ODT, +ODT:SP:21002529,1,"PONT STE MAXENCE Mairie",49.301385,2.604444,0,0,ODV:SA:CTP22403664,Europe/Paris,,ODT, +ODT:SP:21002532,1,"ST LEU Pasteur",49.21528,2.418324,0,0,ODT:SA:CTP21002532,Europe/Paris,,ODT, +ODT:SP:21002533,1,"ST LEU Repuplique",49.215918,2.418311,0,0,OSP:SA:CTP19000017,Europe/Paris,,ODT, +ODT:SP:21002534,1,"ST LEU Collège Jules VALLES",49.218648,2.405779,0,0,OSP:SA:CTP19000014,Europe/Paris,,ODT, +ODT:SP:21002535,1,"ST LEU Boissy",49.214407,2.405691,0,0,ODT:SA:CTP21002535,Europe/Paris,,ODT, +ODT:SP:21002536,1,"VILLERS SOUS ST LEU Mairie",49.212614,2.398695,0,0,ODT:SA:CTP21002462,Europe/Paris,,ODT, +ODT:SP:21002537,1,"VIILERS SOUS ST LEU Jonquilles",49.212775,2.391401,0,0,ODT:SA:CTP21002537,Europe/Paris,,ODT, +ODT:SP:21002538,1,"PRECY SUR OISE Ecole",49.204657,2.368121,0,0,ODT:SA:CTP21002538,Europe/Paris,,ODT, +ODT:SP:21002539,1,"PRECY SUR OISE Rosiers",49.208489,2.379999,0,0,ODT:SA:CTP21002539,Europe/Paris,,ODT, +ODT:SP:21002540,1,"PRECY SUR OISE Sorel",49.210414,2.372938,0,0,ODT:SA:CTP21002540,Europe/Paris,,ODT, +ODT:SP:21002542,1,"BLAINCOURT LES PRECY La Ferme",49.221011,2.358035,0,0,ODT:SA:CTP21002542,Europe/Paris,,ODT, +ODT:SP:21002543,1,"BLAINCOURT Le Bosquet",49.225558,2.350698,0,0,ODT:SA:CTP21002465,Europe/Paris,,ODT, +ODT:SP:21002545,1,"Mairie",49.234258,2.305255,0,0,ODT:SA:CTP21002545,Europe/Paris,,ODT, +ODT:SP:21002546,1,"Calvaire",49.231725,2.299897,0,0,ODT:SA:CTP21002546,Europe/Paris,,ODT, +ODT:SP:21002547,1,"NEUILLY EN THELLE Rue de Beauvais",49.226931,2.285071,0,0,ODT:SA:CTP21002547,Europe/Paris,,ODT, +ODT:SP:21002548,1,"NEUILLY EN THELLE Tiburce Lefevre",49.22394,2.286377,0,0,ODT:SA:CTP21002548,Europe/Paris,,ODT, +ODT:SP:21002549,1,"NEUILLY EN THELLE HLM",49.219444,2.282791,0,0,ODT:SA:CTP21002549,Europe/Paris,,ODT, +ODT:SP:21002550,1,"NEUILLY EN THELLE Collège H Montherlant",49.215231,2.281229,0,0,ODT:SA:CTP21002550,Europe/Paris,,ODT, +ODT:SP:21002551,1,"DIEUDONNE Centre",49.230593,2.247944,0,0,ODT:SA:CTP21002551,Europe/Paris,,ODT, +ODT:SP:21002552,1,"DIEUDONNE La Fosse Saint Clair",49.249188,2.257024,0,0,ODT:SA:CTP21002552,Europe/Paris,,ODT, +ODT:SP:21002553,1,"ULLY ST GEORGES Cavillon Place",49.26034,2.259958,0,0,ODT:SA:CTP21002553,Europe/Paris,,ODT, +ODT:SP:21002555,1,"ULLY ST GEORGES Eglise",49.279685,2.280266,0,0,ODT:SA:CTP21002555,Europe/Paris,,ODT, +ODT:SP:21002556,1,"NEUILLY EN THELLE Bois des Cauches",49.248049,2.275333,0,0,ODT:SA:CTP21002556,Europe/Paris,,ODT, +ODT:SP:21002558,1,"BLAINCOURT LES PRECY Le Bourg",49.222062,2.35628,0,0,ODT:SA:CTP21002558,Europe/Paris,,ODT, +ODT:SP:21002559,1,"ST LEU Ecole",49.216464,2.42111,0,0,ODT:SA:CTP21002559,Europe/Paris,,ODT, +ODT:SP:21002561,1,"Chemin Vert",49.31268,2.603349,0,0,ODT:SA:CTP21002561,Europe/Paris,,ODT, +ODT:SP:21002562,1,"Place Dupuis",49.314848,2.594194,0,0,ODT:SA:CTP21002562,Europe/Paris,,ODT, +ODT:SP:21002563,1,"Drouart",49.317363,2.602549,0,0,ODT:SA:CTP21002563,Europe/Paris,,ODT, +ODT:SP:21002564,1,"PONT STE MAXENCE Bois de Feuillette",49.326956,2.603382,0,0,ODT:SA:CTP21002564,Europe/Paris,,ODT, +ODT:SP:21002565,1,"ST MARTIN LONGUEAU RN 17 Sud",49.335013,2.603932,0,0,ODT:SA:CTP21002565,Europe/Paris,,ODT, +ODT:SP:21002566,1,"ST MARTIN LONGUEAU RN 17 Nord",49.341063,2.605971,0,0,ODT:SA:CTP21002566,Europe/Paris,,ODT, +ODT:SP:21002569,1,"ST MARTIN LONGEAU Eglise",49.346194,2.5975,0,0,ODT:SA:CTP21002569,Europe/Paris,,ODT, +ODT:SP:21002570,1,"LABRUYERE Demi Lune",49.348864,2.49173,0,0,ODT:SA:CTP21002570,Europe/Paris,,ODT, +ODT:SP:21002572,1,"RN 31",49.3732,2.511902,0,0,ODT:SA:CTP21002572,Europe/Paris,,ODT, +ODT:SP:21002573,1,"SACY LE GRAND Pompidou",49.352535,2.552729,0,0,ODT:SA:CTP21002573,Europe/Paris,,ODT, +ODT:SP:21002574,1,"SACY LE GRAND Place d'Avrigny",49.352515,2.548741,0,0,ODV:SA:CTP22413706,Europe/Paris,,ODT, +ODT:SP:21002575,1,"SACY LE GRAND Ecole",49.354033,2.543645,0,0,ODT:SA:CTP21002575,Europe/Paris,,ODT, +ODT:SP:21002576,1,"SACY LE GRAND Pasteur",49.354224,2.536963,0,0,ODT:SA:CTP21002576,Europe/Paris,,ODT, +ODT:SP:21002577,1,"LABRUYERE Centre",49.351025,2.50788,0,0,ODT:SA:CTP21002577,Europe/Paris,,ODT, +ODT:SP:21002578,1,"Centre",49.339169,2.499935,0,0,ODT:SA:CTP21002578,Europe/Paris,,ODT, +ODT:SP:21002580,1,"Mairie",49.33017,2.498381,0,0,ODT:SA:CTP21002580,Europe/Paris,,ODT, +ODT:SP:21002581,1,"Marronniers",49.32982,2.490848,0,0,ODT:SA:CTP21002581,Europe/Paris,,ODT, +ODT:SP:21002582,1,"Hopital Villemin",49.319109,2.485483,0,0,ODT:SA:CTP21002582,Europe/Paris,,ODT, +ODT:SP:21002585,1,"Avenue Albert 1er",49.324395,2.449228,0,0,ODT:SA:CTP21002585,Europe/Paris,,ODT, +ODT:SP:21002587,1,"Collège du Marais",49.313623,2.449644,0,0,ODT:SA:CTP21002587,Europe/Paris,,ODT, +ODT:SP:21002591,1,"Gare",49.324444,2.445132,0,0,SIN:SA:OCE87276212,Europe/Paris,,ODT, +ODT:SP:21002593,1,"Avenue Albert 1er",49.32435,2.449063,0,0,ODT:SA:CTP21002585,Europe/Paris,,ODT, +ODT:SP:21002594,1,"Quartiers des Ducs",49.326391,2.457025,0,0,ODT:SA:CTP21002594,Europe/Paris,,ODT, +ODT:SP:21002595,1,"Olgiate",49.327439,2.460038,0,0,ODT:SA:CTP21002595,Europe/Paris,,ODT, +ODT:SP:21002596,1,"Rue du Général Leclerc",49.332216,2.462565,0,0,ODT:SA:CTP21002596,Europe/Paris,,ODT, +ODT:SP:21002598,1,"HLM La Garenne",49.332705,2.466828,0,0,ODT:SA:CTP21002598,Europe/Paris,,ODT, +ODT:SP:21002599,1,"Lotissement de la Faïence",49.335398,2.468828,0,0,ODT:SA:CTP21002599,Europe/Paris,,ODT, +ODT:SP:21002602,1,"Nouveau Pénitencier",49.334259,2.474983,0,0,ODT:SA:CTP21002602,Europe/Paris,,ODT, +ODT:SP:21002603,1,"LABRUYERE Hopital Doumer",49.354556,2.494662,0,0,ODT:SA:CTP21002603,Europe/Paris,,ODT, +ODT:SP:21002605,1,"SACY LE PETIT Place",49.360815,2.630281,0,0,ODT:SA:CTP21002605,Europe/Paris,,ODT, +ODT:SP:21002606,1,"R. de Chevrières",49.365696,2.660887,0,0,ODV:SA:CTP22510921,Europe/Paris,,ODT, +ODT:SP:21002608,1,"CHEVRIERES Rue de Beauvais",49.346966,2.683058,0,0,ODT:SA:CTP21002608,Europe/Paris,,ODT, +ODT:SP:21002609,1,"RD 13",49.345378,2.639048,0,0,ODV:SA:CTP22403858,Europe/Paris,,ODT, +ODT:SP:21002610,1,"Mairie",49.342896,2.621489,0,0,ODV:SA:CTP22413702,Europe/Paris,,ODT, +ODT:SP:21002611,1,"Mairie",49.371412,2.653026,0,0,ODV:SA:CTP22510922,Europe/Paris,,ODT, +ODT:SP:21002612,1,"Mairie",49.342869,2.621778,0,0,ODV:SA:CTP22413702,Europe/Paris,,ODT, +ODT:SP:21002614,1,"Haut Bois",49.195947,2.57741,0,0,OEL:SA:CTP2080024,Europe/Paris,,ODT, +ODT:SP:21002615,1,"Eugène Gazeau",49.206359,2.599632,0,0,OEL:SA:CTP2080018,Europe/Paris,,ODT, +ODT:SP:21002619,1,"PONT STE MAXENCE Marie Bray",49.296111,2.604678,0,0,ODV:SA:CTP22403665,Europe/Paris,,ODT, +ODT:SP:21002620,1,"PONT STE MAXENCE College L&R Aubrac Départ",49.294072,2.597363,0,0,ODT:SA:CTP21002620,Europe/Paris,,ODT, +ODT:SP:21002623,1,"Centre",49.236639,2.644324,0,0,ODT:SA:CTP21002623,Europe/Paris,,ODT, +ODT:SP:21002624,1,"La roue qui tourne",49.24953,2.644991,0,0,ODT:SA:CTP21002624,Europe/Paris,,ODT, +ODT:SP:21002626,1,"VILLERS ST FRAMBOURG Yvillers Centre",49.268561,2.674348,0,0,ODV:SA:CTP22403669,Europe/Paris,,ODT, +ODT:SP:21002627,1,"Ecole",49.257998,2.715692,0,0,ODT:SA:CTP21002627,Europe/Paris,,ODT, +ODT:SP:21002630,1,"Place",49.256389,2.680253,0,0,ODT:SA:CTP21002630,Europe/Paris,,ODT, +ODT:SP:21002631,1,"Philippe Le Bel",49.301003,2.618538,0,0,ODT:SA:CTP21002631,Europe/Paris,,ODT, +ODT:SP:21002632,1,"Saint Paterne",49.300169,2.625539,0,0,ODV:SA:CTP22403097,Europe/Paris,,ODT, +ODT:SP:21002633,1,"Saint Gervais",49.300142,2.640115,0,0,ODV:SA:CTP22403096,Europe/Paris,,ODT, +ODT:SP:21002634,1,"St Pierre",49.300348,2.650721,0,0,ODV:SA:CTP22403095,Europe/Paris,,ODT, +ODT:SP:21002635,1,"Moru",49.30786,2.679758,0,0,ODV:SA:CTP22403100,Europe/Paris,,ODT, +ODT:SP:21002636,1,"Catillon",49.30863,2.690233,0,0,ODT:SA:CTP21002636,Europe/Paris,,ODT, +ODT:SP:21002637,1,"Centre",49.297443,2.690706,0,0,ODT:SA:CTP21002637,Europe/Paris,,ODT, +ODT:SP:21002638,1,"Guidon",49.302581,2.688035,0,0,ODT:SA:CTP21002638,Europe/Paris,,ODT, +ODT:SP:21002639,1,"Collège d'Aramont",49.307443,2.719765,0,0,ODT:SA:CTP21002639,Europe/Paris,,ODT, +ODT:SP:21002642,1,"Mairie",49.298419,2.518723,0,0,ODT:SA:CTP21002642,Europe/Paris,,ODT, +ODT:SP:21002643,1,"PONT STE MAXENCE Gare",49.309492,2.603044,0,0,SIN:SA:OCE87276329,Europe/Paris,,ODT, +ODT:SP:21010407,1,"VILLENEUVE SUR VERBERIE Eglise",49.274691,2.689286,0,0,ODV:SA:CTP22413709,Europe/Paris,,ODT, +ODT:SP:21010408,1,"CREPY EN VALOIS Gare",49.231615,2.886649,0,0,ODT:SA:CTP21010408,Europe/Paris,,ODT, +ODT:SP:21010409,1,"LEVIGNEN Centre",49.197141,2.915046,0,0,ODT:SA:CTP21010409,Europe/Paris,,ODT, +ODT:SP:21010411,1,"VILLERS ST GENEST Centre",49.14137,2.907395,0,0,ODT:SA:CTP21010411,Europe/Paris,,ODT, +ODT:SP:21010412,1,"Eglise",49.158421,2.953603,0,0,ODT:SA:CTP21010412,Europe/Paris,,ODT, +ODT:SP:21010415,1,"ROUVRES EN MULTIEN ROUVRES",49.110094,3.026555,0,0,ODT:SA:CTP21010415,Europe/Paris,,ODT, +ODT:SP:21010416,1,"ETAVIGNY Ecole",49.118926,2.979922,0,0,ODT:SA:CTP21010416,Europe/Paris,,ODT, +ODT:SP:21010419,1,"CONGIS SUR THEROUANNE Le Gué à Tresmes",49.02038,2.962027,0,0,ODT:SA:CTP21010419,Europe/Paris,,ODT, +ODT:SP:21010420,1,"VINCY MANOEUVRE Centre",49.077504,2.96239,0,0,ODT:SA:CTP21010420,Europe/Paris,,ODT, +ODT:SP:21010421,1,"REEZ FOSSE MARTIN Reez",49.108494,2.932846,0,0,ODT:SA:CTP21010421,Europe/Paris,,ODT, +ODT:SP:21010423,1,"REEZ FOSSE MARTIN Fosse Martin",49.085001,2.905854,0,0,ODT:SA:CTP21010423,Europe/Paris,,ODT, +ODT:SP:21010425,1,"DOUY LA RAMEE Place",49.066965,2.882997,0,0,ODT:SA:CTP21010425,Europe/Paris,,ODT, +ODT:SP:21010426,1,"DOUY LA RAMEE La Ramee",49.062685,2.877646,0,0,ODT:SA:CTP21010426,Europe/Paris,,ODT, +ODT:SP:21010427,1,"Puisieux",49.066685,2.915857,0,0,ODT:SA:CTP21010427,Europe/Paris,,ODT, +ODT:SP:21010429,1,"Eglise",49.036881,2.876788,0,0,ODT:SA:CTP21010429,Europe/Paris,,ODT, +ODT:SP:21010430,1,"Eglise",49.018306,2.880707,0,0,ODT:SA:CTP21010430,Europe/Paris,,ODT, +ODT:SP:21010431,1,"Mairie",48.996511,2.893124,0,0,ODT:SA:CTP21010431,Europe/Paris,,ODT, +ODT:SP:21010432,1,"CREGY LES MEAUX Collège G Sand",48.979755,2.874431,0,0,ODT:SA:CTP21010432,Europe/Paris,,ODT, +ODT:SP:21010434,1,"CREGY LES MEAUX Portes Rouges",48.978126,2.868953,0,0,ODT:SA:CTP21010434,Europe/Paris,,ODT, +ODT:SP:21010435,1,"CREGY LES MEAUX Centre Commercial",48.975839,2.865885,0,0,ODT:SA:CTP21010435,Europe/Paris,,ODT, +ODT:SP:21010436,1,"Gare Routière Quai R",48.957397,2.874213,0,0,ODT:SA:CTP21010436,Europe/Paris,,ODT, +ODT:SP:21010437,1,"Henri IV cinéma",48.959289,2.88298,0,0,ODT:SA:CTP21010437,Europe/Paris,,ODT, +ODT:SP:21010438,1,"Parc Frot",48.96708,2.873276,0,0,ODT:SA:CTP21010438,Europe/Paris,,ODT, +ODT:SP:21010439,1,"Jean Rose",48.963446,2.881837,0,0,ODT:SA:CTP21010439,Europe/Paris,,ODT, +ODT:SP:21010440,1,"Coubertin",48.956263,2.864457,0,0,ODT:SA:CTP21010440,Europe/Paris,,ODT, +ODT:SP:21010441,1,"VINCY MANOEUVRE Manœuvre",49.062816,2.949317,0,0,ODT:SA:CTP21010441,Europe/Paris,,ODT, +ODT:SP:21010445,1,"COMPIEGNE Gare",49.421552,2.824087,0,0,ODT:SA:CTP21010445,Europe/Paris,,ODT, +ODT:SP:21010446,1,"COMPIEGNE St Fiacre",49.40691,2.812715,0,0,OLO:SA:CTP13100126,Europe/Paris,,ODT, +ODT:SP:21010447,1,"COMPIEGNE St Jacques",49.417023,2.826798,0,0,ODV:SA:CTP22413707,Europe/Paris,,ODT, +ODT:SP:21010448,1,"COMPIEGNE Royallieu",49.395106,2.803577,0,0,ODV:SA:CTP22403073,Europe/Paris,,ODT, +ODT:SP:21010449,1,"LACROIX ST OUEN Nord",49.357482,2.789812,0,0,ODV:SA:CTP22403076,Europe/Paris,,ODT, +ODT:SP:21010450,1,"LACROIX ST OUEN Centre",49.355492,2.786219,0,0,ODV:SA:CTP22403077,Europe/Paris,,ODT, +ODT:SP:21010451,1,"LACROIX ST OUEN Le Bac",49.352592,2.77361,0,0,ODV:SA:CTP22403078,Europe/Paris,,ODT, +ODT:SP:21010452,1,"ST SAUVEUR Rue de Compiègne",49.32433,2.778373,0,0,ODV:SA:CTP22403079,Europe/Paris,,ODT, +ODT:SP:21010454,1,"ST SAUVEUR Aristide Briand",49.313318,2.780024,0,0,ODV:SA:CTP22403081,Europe/Paris,,ODT, +ODT:SP:21010455,1,"BETHISY ST PIERRE Clos Cadot",49.304504,2.792437,0,0,ODT:SA:CTP21010455,Europe/Paris,,ODT, +ODT:SP:21010458,1,"NERY Vaucelles",49.296969,2.791573,0,0,ODV:SA:CTP22403087,Europe/Paris,,ODT, +ODT:SP:21010459,1,"Curie",49.306588,2.762942,0,0,ODT:SA:CTP21010459,Europe/Paris,,ODT, +ODT:SP:21010460,1,"SAINTINE Joffre Debuire",49.3063,2.768244,0,0,ODT:SA:CTP21010460,Europe/Paris,,ODT, +ODT:SP:21010461,1,"Jaures",49.303082,2.778685,0,0,ODV:SA:CTP22403090,Europe/Paris,,ODT, +ODT:SP:21010463,1,"Square des Merlets",49.307496,2.720164,0,0,ODT:SA:CTP21010463,Europe/Paris,,ODT, +ODT:SP:21010468,1,"VERBERIE Château",49.303111,2.806602,0,0,ODV:SA:CTP22403085,Europe/Paris,,ODT, +ODT:SP:21010470,1,"COMPIEGNE La Fontaine",49.416664,2.826671,0,0,ODT:SA:CTP21010470,Europe/Paris,,ODT, +ODT:SP:21010471,1,"LE MESNIL SUR BULLES Centre",49.485809,2.345141,0,0,ODT:SA:CTP21010471,Europe/Paris,,ODT, +ODT:SP:21010472,1,"LE PLESSIER SUR BULLE Centre",49.49611,2.315742,0,0,ODT:SA:CTP21010472,Europe/Paris,,ODT, +ODT:SP:21010473,1,"Ecole",49.461655,2.324755,0,0,ODT:SA:CTP21010473,Europe/Paris,,ODT, +ODT:SP:21010475,1,"Monceaux",49.451685,2.338867,0,0,ODT:SA:CTP21010475,Europe/Paris,,ODT, +ODT:SP:21010476,1,"L'Orteil",49.437196,2.340257,0,0,ODT:SA:CTP21010476,Europe/Paris,,ODT, +ODT:SP:21010477,1,"ETOUY Place",49.420036,2.361007,0,0,ODT:SA:CTP21010477,Europe/Paris,,ODT, +ODT:SP:21010478,1,"ETOUY Centre",49.418499,2.363912,0,0,ODT:SA:CTP21010478,Europe/Paris,,ODT, +ODT:SP:21010479,1,"ETOUY Guidon",49.416153,2.370671,0,0,ODT:SA:CTP21010479,Europe/Paris,,ODT, +ODT:SP:21010480,1,"Ronquerolles Route d'Etouy",49.404714,2.382186,0,0,ODT:SA:CTP21010480,Europe/Paris,,ODT, +ODT:SP:21010481,1,"RONQUEROLLES Centre",49.400411,2.382829,0,0,ODT:SA:CTP21010481,Europe/Paris,,ODT, +ODT:SP:21010482,1,"RONQUEROLLES Rue de Froissy",49.396483,2.388124,0,0,ODT:SA:CTP21010482,Europe/Paris,,ODT, +ODT:SP:21010483,1,"Boulincourt Canonniere",49.392529,2.367766,0,0,ODT:SA:CTP21010483,Europe/Paris,,ODT, +ODT:SP:21010485,1,"Auberge de Gicourt",49.391549,2.376583,0,0,ODT:SA:CTP21010485,Europe/Paris,,ODT, +ODT:SP:21010486,1,"Cimetière",49.385212,2.381907,0,0,ODT:SA:CTP21010486,Europe/Paris,,ODT, +ODT:SP:21010487,1,"Gicourt R. Louise Weiss",49.388547,2.375497,0,0,ODT:SA:CTP21010487,Europe/Paris,,ODT, +ODT:SP:21010495,1,"Rue de Liancourt",49.372493,2.509685,0,0,ODT:SA:CTP21010495,Europe/Paris,,ODT, +ODT:SP:21010496,1,"Centre",49.368082,2.509931,0,0,ODT:SA:CTP21010496,Europe/Paris,,ODT, +ODT:SP:21010497,1,"Courcelles",49.367138,2.497534,0,0,ODT:SA:CTP21010497,Europe/Paris,,ODT, +ODT:SP:21010498,1,"ESTREE ST DENIS Eglise",49.425871,2.644892,0,0,ODV:SA:CTP22403836,Europe/Paris,,ODT, +ODT:SP:21010500,1,"RN 31",49.377561,2.481332,0,0,ODT:SA:CTP21010500,Europe/Paris,,ODT, +ODT:SP:21010501,1,"Mairie",49.37452,2.485134,0,0,ODT:SA:CTP21010501,Europe/Paris,,ODT, +ODT:SP:21010502,1,"Rue du Saulon",49.374829,2.474982,0,0,ODT:SA:CTP21010502,Europe/Paris,,ODT, +ODT:SP:21010503,1,"BREUIL LE SEC République",49.375554,2.451389,0,0,OTC:SA:CTP31000003,Europe/Paris,,ODT, +ODT:SP:21010504,1,"BREUIL LE SEC Crapin",49.371086,2.454351,0,0,ODT:SA:CTP21010504,Europe/Paris,,ODT, +ODT:SP:21010505,1,"BREUIL LE SEC Verdun",49.372725,2.45075,0,0,OTC:SA:CTP31000009,Europe/Paris,,ODT, +ODT:SP:21010507,1,"BREUIL LE SEC Autreville",49.373839,2.459626,0,0,ODT:SA:CTP21010507,Europe/Paris,,ODT, +ODT:SP:21010509,1,"Pont de Pierre",49.381431,2.428713,0,0,OTC:SA:CTP31000029,Europe/Paris,,ODT, +ODT:SP:21010510,1,"FITZ JAMES Place de la République",49.390278,2.430284,0,0,ODT:SA:CTP21010510,Europe/Paris,,ODT, +ODT:SP:21010512,1,"FITZ JAMES Voltaire",49.390746,2.41644,0,0,ODV:SA:CTP22413704,Europe/Paris,,ODT, +ODT:SP:21010515,1,"ULLY SAINT GEORGES Cousnicourt",49.291988,2.271476,0,0,ODT:SA:CTP21010515,Europe/Paris,,ODT, +ODT:SP:21010517,1,"Centre",49.275274,2.315291,0,0,ODT:SA:CTP21010517,Europe/Paris,,ODT, +ODT:SP:21010519,1,"CIRES LES MELLO Gare",49.271943,2.3605,0,0,ODT:SA:CTP21010519,Europe/Paris,,ODT, +ODT:SP:21010520,1,"Messie",49.26699,2.370519,0,0,ODT:SA:CTP21010520,Europe/Paris,,ODT, +ODT:SP:21010521,1,"Centre",49.260762,2.37845,0,0,OSP:SA:CTP19000036,Europe/Paris,,ODT, +ODT:SP:21010525,1,"Place",49.247676,2.433196,0,0,ODT:SA:CTP21010525,Europe/Paris,,ODT, +ODT:SP:21010526,1,"Mairie",49.256614,2.43475,0,0,OSP:SA:CTP19000087,Europe/Paris,,ODT, +ODT:SP:21010527,1,"Piscine",49.262165,2.436326,0,0,ODT:SA:CTP21010527,Europe/Paris,,ODT, +ODT:SP:21010529,1,"Collège A.France",49.260602,2.436652,0,0,ODT:SA:CTP21010529,Europe/Paris,,ODT, +ODT:SP:21010530,1,"PV Couturier",49.265638,2.430704,0,0,ODT:SA:CTP21010530,Europe/Paris,,ODT, +ODT:SP:21010531,1,"Colonel Fabien",49.261954,2.431013,0,0,ODT:SA:CTP21010531,Europe/Paris,,ODT, +ODT:SP:21010532,1,"Lesiour",49.25795,2.427492,0,0,ODT:SA:CTP21010532,Europe/Paris,,ODT, +ODT:SP:21010533,1,"Ginisti",49.256557,2.42786,0,0,OGN:SA:CTP6090046,Europe/Paris,,ODT, +ODT:SP:21010535,1,"Déporté",49.255084,2.437932,0,0,ODT:SA:CTP21010535,Europe/Paris,,ODT, +ODT:SP:21010536,1,"Libération",49.253926,2.447098,0,0,OGN:SA:CTP6090069,Europe/Paris,,ODT, +ODT:SP:21010537,1,"NOGENT SUR OISE Collège E.Herriot",49.267903,2.450121,0,0,ODT:SA:CTP21010537,Europe/Paris,,ODT, +ODT:SP:21010544,1,"RD 1324",49.234754,2.855633,0,0,ODT:SA:CTP21010544,Europe/Paris,,ODT, +ODT:SP:21010546,1,"Centre",49.209699,2.871248,0,0,ODT:SA:CTP21010546,Europe/Paris,,ODT, +ODT:SP:21010552,1,"Le Plessis Cornefroy",49.241348,2.7889,0,0,ODT:SA:CTP21010552,Europe/Paris,,ODT, +ODT:SP:21010555,1,"Beaurain",49.226041,2.766104,0,0,ODT:SA:CTP21010555,Europe/Paris,,ODT, +ODT:SP:21010558,1,"Place",49.221987,2.667363,0,0,ODT:SA:CTP21010558,Europe/Paris,,ODT, +ODT:SP:21010563,1,"NANTEUIL LE HAUDOUIN Gare",49.142669,2.795295,0,0,ORQ:SA:CTP29000015,Europe/Paris,,ODT, +ODT:SP:21010569,1,"AUGER SAINT VINCENT Villeneuve",49.205957,2.821432,0,0,ODT:SA:CTP21010569,Europe/Paris,,ODT, +ODT:SP:21010572,1,"PEROY LES GOMBRIES Salle multifonctions",49.161433,2.843853,0,0,ODT:SA:CTP21010572,Europe/Paris,,ODT, +ODT:SP:21010573,1,"BOISSY FRESNOY Eglise",49.163862,2.870115,0,0,ODT:SA:CTP21010573,Europe/Paris,,ODT, +ODT:SP:21010574,1,"LEVIGNEN Boissy Levignen",49.184725,2.89584,0,0,ODT:SA:CTP21010574,Europe/Paris,,ODT, +ODT:SP:21010575,1,"CREPY EN VALOIS G. De NERVAL",49.237924,2.892013,0,0,ODV:SA:CTP22403883,Europe/Paris,,ODT, +ODT:SP:21010576,1,"CREPY EN VALOIS Collège La Fontaine",49.227119,2.895203,0,0,ODT:SA:CTP21010576,Europe/Paris,,ODT, +ODT:SP:21010577,1,"CREPY EN VALOIS Lycée R.Desnos",49.228476,2.893118,0,0,ODT:SA:CTP21010577,Europe/Paris,,ODT, +ODT:SP:21010578,1,"LA FERTE MILON Gare",49.179386,3.120861,0,0,TRN:SA:DUA8711667,Europe/Paris,,ODT, +ODT:SP:21010579,1,"LA FERTE MILON Le Maille",49.176123,3.125142,0,0,ODT:SA:CTP21010579,Europe/Paris,,ODT, +ODT:SP:21010580,1,"Bourneville",49.154398,3.111124,0,0,ODT:SA:CTP21010580,Europe/Paris,,ODT, +ODT:SP:21010581,1,"MAREUIL SUR OURCQ ZI",49.139188,3.088038,0,0,ODT:SA:CTP21010581,Europe/Paris,,ODT, +ODT:SP:21010582,1,"MAREUIL SUR OURCQ Poste",49.137704,3.078198,0,0,ODT:SA:CTP21010582,Europe/Paris,,ODT, +ODT:SP:21010583,1,"MAREUIL SUR OURCQ Gare",49.135558,3.076537,0,0,ODT:SA:CTP21010583,Europe/Paris,,ODT, +ODT:SP:21010584,1,"Mairie",49.115303,3.061942,0,0,ODT:SA:CTP21010584,Europe/Paris,,ODT, +ODT:SP:21010585,1,"Beauval",49.107784,3.04621,0,0,ODT:SA:CTP21010585,Europe/Paris,,ODT, +ODT:SP:21010586,1,"Centre",49.098699,3.045123,0,0,ODT:SA:CTP21010586,Europe/Paris,,ODT, +ODT:SP:21010587,1,"MAY EN MULTIEN Château d’eau",49.075818,3.025536,0,0,ODT:SA:CTP21010587,Europe/Paris,,ODT, +ODT:SP:21010588,1,"MAY EN MULTIEN Poste",49.071016,3.01981,0,0,ODT:SA:CTP21010588,Europe/Paris,,ODT, +ODT:SP:21010589,1,"PLESSIS PLACY Centre bourg",49.059286,2.989859,0,0,ODT:SA:CTP21010589,Europe/Paris,,ODT, +ODT:SP:21010591,1,"La Corniche",48.967826,2.900501,0,0,ODT:SA:CTP21010591,Europe/Paris,,ODT, +ODT:SP:21010592,1,"Grosse Pierre",48.961848,2.89701,0,0,ODT:SA:CTP21010592,Europe/Paris,,ODT, +ODT:SP:21010593,1,"Octroi",48.957465,2.894588,0,0,ODT:SA:CTP21010593,Europe/Paris,,ODT, +ODT:SP:21010594,1,"Marronniers",48.956408,2.888026,0,0,ODT:SA:CTP21010594,Europe/Paris,,ODT, +ODT:SP:21010595,1,"Poste Allende",48.957496,2.882156,0,0,ODT:SA:CTP21010595,Europe/Paris,,ODT, +ODT:SP:21010596,1,"Henri IV Jardin",48.959325,2.883076,0,0,ODT:SA:CTP21010596,Europe/Paris,,ODT, +ODT:SP:21010597,1,"Henri IV cinéma",48.959325,2.882981,0,0,ODT:SA:CTP21010437,Europe/Paris,,ODT, +ODT:SP:21010598,1,"Lycée Jean Rose",48.962174,2.879053,0,0,ODT:SA:CTP21010598,Europe/Paris,,ODT, +ODT:SP:21010599,1,"Gare Routière",48.957451,2.874186,0,0,ODT:SA:CTP21010599,Europe/Paris,,ODT, +ODT:SP:21010600,1,"Pavillons",49.009966,2.93712,0,0,ODT:SA:CTP21010600,Europe/Paris,,ODT, +ODT:SP:21010601,1,"Mairie",49.003814,2.927337,0,0,ODT:SA:CTP21010601,Europe/Paris,,ODT, +ODT:SP:21010602,1,"Gare Routière (quai P)",48.957433,2.870119,0,0,ODT:SA:CTP21010602,Europe/Paris,,ODT, +ODT:SP:21010603,1,"Cité Administrative",48.955612,2.889151,0,0,ODT:SA:CTP21010603,Europe/Paris,,ODT, +ODT:SP:21010605,1,"MAREUIL SUR OURCQ Mairie",49.135834,3.076993,0,0,ODT:SA:CTP21010605,Europe/Paris,,ODT, +ODT:SP:21010609,1,"FONTAINE CHAALIS Fourcheret",49.191862,2.698289,0,0,ODT:SA:CTP21010609,Europe/Paris,,ODT, +ODT:SP:21010611,1,"Centre",49.164026,2.692408,0,0,ODT:SA:CTP21010611,Europe/Paris,,ODT, +ODT:SP:21010612,1,"Mer de Sable",49.147746,2.676421,0,0,ODT:SA:CTP21010612,Europe/Paris,,ODT, +ODT:SP:21010613,1,"Centre",49.125501,2.693964,0,0,ODT:SA:CTP21010613,Europe/Paris,,ODT, +ODT:SP:21010614,1,"ERMENOVILLE Château d' Eau",49.12491,2.699409,0,0,ODT:SA:CTP21010614,Europe/Paris,,ODT, +ODT:SP:21010623,1,"SILLY LE LONG Square Jacques Teulet",49.107359,2.792134,0,0,ODT:SA:CTP21010623,Europe/Paris,,ODT, +ODT:SP:21010624,1,"Mairie",49.106478,2.787583,0,0,ODT:SA:CTP21010624,Europe/Paris,,ODT, +ODT:SP:21010625,1,"SILLY LE LONG Peupliers",49.105904,2.7825,0,0,ODT:SA:CTP21010625,Europe/Paris,,ODT, +ODT:SP:21010626,1,"LE PLESSIS BELLEVILLE INST FRA ANGEL",49.095115,2.754192,0,0,ODT:SA:CTP21010626,Europe/Paris,,ODT, +ODT:SP:21010627,1,"LE PLESSIS BELLEVILLE Le Pré au Lievre",49.102722,2.757949,0,0,ODT:SA:CTP21010627,Europe/Paris,,ODT, +ODT:SP:21010631,1,"LAGNY LE SEC Château d'eau",49.085817,2.745717,0,0,ODT:SA:CTP21010631,Europe/Paris,,ODT, +ODT:SP:21010633,1,"LAGNY LE SEC Jeu d'Arc",49.088332,2.746133,0,0,ODT:SA:CTP21010633,Europe/Paris,,ODT, +ODT:SP:21010635,1,"ROSIERES Rosières",49.188597,2.779678,0,0,ODT:SA:CTP21010635,Europe/Paris,,ODT, +ODT:SP:21010639,1,"ORMOY VILLERS Eglise",49.196965,2.840446,0,0,ODT:SA:CTP21010639,Europe/Paris,,ODT, +ODT:SP:21010641,1,"Eglise",49.242642,2.800823,0,0,ODT:SA:CTP21010641,Europe/Paris,,ODT, +ODT:SP:21010642,1,"Eglise",49.234176,2.728345,0,0,ODT:SA:CTP21010642,Europe/Paris,,ODT, +ODT:SP:21010643,1,"Mairie",49.236249,2.726261,0,0,ODT:SA:CTP21010643,Europe/Paris,,ODT, +ODT:SP:21010644,1,"Chamoicy",49.238605,2.722904,0,0,ODT:SA:CTP21010644,Europe/Paris,,ODT, +ODT:SP:21010645,1,"Bray (Le Prieuré)",49.239539,2.693835,0,0,ODT:SA:CTP21010645,Europe/Paris,,ODT, +ODT:SP:21010646,1,"BRAY Place",49.23828,2.688241,0,0,ODT:SA:CTP21010646,Europe/Paris,,ODT, +ODT:SP:21010647,1,"MONTEPILLOY Boasne",49.211683,2.721303,0,0,ODT:SA:CTP21010647,Europe/Paris,,ODT, +ODT:SP:21010648,1,"MONTEPILLOY Centre",49.209608,2.69792,0,0,ODT:SA:CTP21010648,Europe/Paris,,ODT, +ODT:SP:21010650,1,"Tour de Ville Grand Cerf",49.206632,2.589678,0,0,OEL:SA:CTP2080042,Europe/Paris,,ODT, +ODT:SP:21010652,1,"Mairie",49.099442,2.825294,0,0,ODT:SA:CTP21010652,Europe/Paris,,ODT, +ODT:SP:21010653,1,"Le Bosquet",49.099671,2.827715,0,0,ODT:SA:CTP21010653,Europe/Paris,,ODT, +ODT:SP:21010655,1,"Droizeles Eglise",49.159903,2.788282,0,0,ODT:SA:CTP21010655,Europe/Paris,,ODT, +ODT:SP:21010657,1,"FONTAINE CHAALIS Centre",49.169726,2.685198,0,0,ODT:SA:CTP21010657,Europe/Paris,,ODT, +ODT:SP:21010658,1,"FONTAINE CHAALIS Clos Morin",49.173557,2.683936,0,0,ODT:SA:CTP21010658,Europe/Paris,,ODT, +ODT:SP:21010659,1,"MONTLEVEQUE Cité Nouvelle",49.193763,2.63783,0,0,ODT:SA:CTP21010659,Europe/Paris,,ODT, +ODT:SP:21010660,1,"MONTLEVEQUE Eglise",49.195396,2.631396,0,0,ODT:SA:CTP21010660,Europe/Paris,,ODT, +ODT:SP:21010662,1,"MONTAGNY STE FELICITE Centre",49.128932,2.737241,0,0,ODT:SA:CTP21010662,Europe/Paris,,ODT, +ODT:SP:21010663,1,"Loisy",49.11071,2.638811,0,0,ODT:SA:CTP21010663,Europe/Paris,,ODT, +ODT:SP:21010664,1,"VERNEUIL EN HALATTE LA RUE DES BOIS Rue des Bois",49.290303,2.537854,0,0,ODT:SA:CTP21010664,Europe/Paris,,ODT, +ODT:SP:21010665,1,"Eglise",49.104484,2.684909,0,0,ODT:SA:CTP21010665,Europe/Paris,,ODT, +ODT:SP:21010666,1,"Place Sylvie",49.111316,2.602803,0,0,ODT:SA:CTP21010666,Europe/Paris,,ODT, +ODT:SP:21010667,1,"Petit-Villers",49.208578,2.854149,0,0,ODT:SA:CTP21010667,Europe/Paris,,ODT, +ODT:SP:21010668,1,"VERNEUIL ST FIRMIN Cimetiere",49.198674,2.506388,0,0,ODT:SA:CTP21010668,Europe/Paris,,ODT, +ODT:SP:21010670,1,"CAMBRONNE LES CLERMONT Centre",49.32975,2.398409,0,0,ODT:SA:CTP21010670,Europe/Paris,,ODT, +ODT:SP:21010672,1,"Haut",49.299252,2.393921,0,0,ODT:SA:CTP21010672,Europe/Paris,,ODT, +ODT:SP:21010673,1,"NEUILLY SOUS CLERMONT AUVILLERS Ecole",49.35937,2.39506,0,0,ODT:SA:CTP21010673,Europe/Paris,,ODT, +ODT:SP:21010675,1,"NEUILLY SOUS CLERMONT Zone Commerciale",49.348766,2.430401,0,0,ODT:SA:CTP21010675,Europe/Paris,,ODT, +ODT:SP:21010679,1,"Le LYS RP de la Reine",49.164526,2.416792,0,0,ODT:SA:CTP21010679,Europe/Paris,,ODT, +ODT:SP:21010681,1,"CHEVRIERES Eglise",49.34753,2.680807,0,0,ODV:SA:CTP22403843,Europe/Paris,,ODT, +ODT:SP:21010682,1,"NERY Eglise",49.283586,2.778628,0,0,ODT:SA:CTP21010682,Europe/Paris,,ODT, +ODT:SP:21010683,1,"Foch",49.21022,2.59237,0,0,ODT:SA:CTP21010683,Europe/Paris,,ODT, +ODT:SP:21010684,1,"VILLERS ST FRAMBOURG Eglise Ecole",49.254683,2.639724,0,0,ODT:SA:CTP21010684,Europe/Paris,,ODT, +ODT:SP:21010685,1,"VILLERS ST FRAMBOURG Republique",49.249892,2.644115,0,0,ODT:SA:CTP21010685,Europe/Paris,,ODT, +ODT:SP:21010687,1,"La Borne",49.275913,2.737794,0,0,ODT:SA:CTP21010687,Europe/Paris,,ODT, +ODT:SP:21010689,1,"ORRY LA VILLE Stade",49.131343,2.522776,0,0,ODT:SA:CTP21010689,Europe/Paris,,ODT, +ODT:SP:21100009,1,"VINEUIL SAINT FIRMIN Georges Dauchy",49.197327,2.505794,0,0,ODT:SA:CTP21100009,Europe/Paris,,ODT, +ODT:SP:21100012,1,"AVILLY SAINT LEONARD Place",49.193739,2.537108,0,0,ODT:SA:CTP21100012,Europe/Paris,,ODT, +ODT:SP:21100021,1,"ORRY LA VILLE Stade",49.131505,2.522421,0,0,ODT:SA:CTP21010689,Europe/Paris,,ODT, +ODT:SP:21100025,1,"PONTARME Gerioles",49.151555,2.547574,0,0,ODT:SA:CTP21001644,Europe/Paris,,ODT, +ODT:SP:21100026,1,"PONTARME Morliére",49.154255,2.549695,0,0,ODT:SA:CTP21001645,Europe/Paris,,ODT, +ODT:SP:21100027,1,"PONTARME Mairie",49.154542,2.550504,0,0,ODT:SA:CTP21002416,Europe/Paris,,ODT, +ODT:SP:21100028,1,"PONTARME Place du Château",49.152652,2.571263,0,0,ODT:SA:CTP21002404,Europe/Paris,,ODT, +ODT:SP:21100041,1,"ORRY LA VILLE Montgresin Place",49.154491,2.521284,0,0,ODT:SA:CTP21001574,Europe/Paris,,ODT, +ODT:SP:21100044,1,"Loisy",49.110728,2.63888,0,0,ODT:SA:CTP21010663,Europe/Paris,,ODT, +ODT:SP:21100045,1,"Centre",49.103744,2.685753,0,0,ODT:SA:CTP21100045,Europe/Paris,,ODT, +ODT:SP:21100048,1,"EVE Eglise Ecole",49.090312,2.703476,0,0,ODT:SA:CTP21100048,Europe/Paris,,ODT, +ODT:SP:21100051,1,"NANTEUIL LE HAUDOUIN Croix d'Andolle",49.13766,2.803467,0,0,ODT:SA:CTP21100051,Europe/Paris,,ODT, +ODT:SP:21100052,1,"NANTEUIL LE HAUDOUIN Gare",49.142661,2.79498,0,0,ORQ:SA:CTP29000015,Europe/Paris,,ODT, +ODT:SP:21100055,1,"MONTAGNY-SAINTE-FELICITE Centre",49.12888,2.73722,0,0,ODT:SA:CTP21100055,Europe/Paris,,ODT, +ODT:SP:21100056,1,"Centre",49.160581,2.764888,0,0,ODT:SA:CTP21100056,Europe/Paris,,ODT, +ODT:SP:21100057,1,"Centre",49.172188,2.734329,0,0,ODT:SA:CTP21100057,Europe/Paris,,ODT, +ODT:SP:21100060,1,"Ecole",49.180287,2.67129,0,0,ODT:SA:CTP21100060,Europe/Paris,,ODT, +ODT:SP:21100062,1,"AUGER SAINT VINCENT Villeneuve",49.205894,2.821418,0,0,ODT:SA:CTP21010569,Europe/Paris,,ODT, +ODT:SP:21100071,1,"Balagny",49.224179,2.636664,0,0,ODT:SA:CTP21100071,Europe/Paris,,ODT, +ODT:SP:21100072,1,"Centre",49.221632,2.608433,0,0,ODT:SA:CTP21100072,Europe/Paris,,ODT, +ODT:SP:21100081,1,"Ducy",49.211807,2.743562,0,0,ODT:SA:CTP21100081,Europe/Paris,,ODT, +ODT:SP:21100082,1,"Centre",49.210309,2.768578,0,0,ODT:SA:CTP21100082,Europe/Paris,,ODT, +ODT:SP:21100083,1,"Le Luat",49.214846,2.780919,0,0,ODT:SA:CTP21100083,Europe/Paris,,ODT, +ODT:SP:21100093,1,"LA CHAPELLE EN SERVAL Centre",49.127677,2.533717,0,0,ODT:SA:CTP21001021,Europe/Paris,,ODT, +ODT:SP:21100114,1,"CREPY EN VALOIS Gare",49.231556,2.885853,0,0,ODT:SA:CTP21010408,Europe/Paris,,ODT, +ODT:SP:21100115,1,"RD 1324",49.234799,2.855483,0,0,ODT:SA:CTP21010544,Europe/Paris,,ODT, +ODT:SP:21100116,1,"AUGER SAINT VINCENT Centre",49.218883,2.809184,0,0,ODT:SA:CTP21100116,Europe/Paris,,ODT, +ODT:SP:21100117,1,"Eglise",49.242686,2.800926,0,0,ODT:SA:CTP21010641,Europe/Paris,,ODT, +ODT:SP:21100118,1,"Le Plessis Cornefroy",49.241402,2.789079,0,0,ODT:SA:CTP21010552,Europe/Paris,,ODT, +ODT:SP:21100120,1,"Mairie",49.236249,2.726289,0,0,ODT:SA:CTP21010643,Europe/Paris,,ODT, +ODT:SP:21100124,1,"Le Pommelotier",49.21585,2.680408,0,0,ODT:SA:CTP21100124,Europe/Paris,,ODT, +ODT:SP:21100126,1,"Collége Albéric Magnard",49.2096,2.596727,0,0,OEL:SA:CTP2085048,Europe/Paris,,ODT, +ODT:SP:21100131,1,"Mairie",49.09944,2.825271,0,0,ODT:SA:CTP21010652,Europe/Paris,,ODT, +ODT:SP:21100138,1,"Eglise",49.458331,2.326892,0,0,ODT:SA:CTP21100138,Europe/Paris,,ODT, +ODT:SP:21100139,1,"Centre",49.319119,2.550803,0,0,ODT:SA:CTP21100139,Europe/Paris,,ODT, +ODT:SP:21100156,1,"SICA",49.367188,2.519585,0,0,ODT:SA:CTP21100156,Europe/Paris,,ODT, +ODT:SP:21100159,1,"Mairie",49.367894,2.509766,0,0,ODT:SA:CTP21100159,Europe/Paris,,ODT, +ODT:SP:21100172,1,"CIRES LES MELLO Croix du Four",49.271108,2.353895,0,0,ODT:SA:CTP21100172,Europe/Paris,,ODT, +ODT:SP:21100177,1,"Haut",49.299313,2.393923,0,0,ODT:SA:CTP21010672,Europe/Paris,,ODT, +ODT:SP:21100181,1,"BAILLEUL SUR THERAIN Centre",49.384931,2.221861,0,0,ODT:SA:CTP21100181,Europe/Paris,,ODT, +ODT:SP:21100182,1,"Caillouel",49.353245,2.265855,0,0,ODT:SA:CTP21100182,Europe/Paris,,ODT, +ODT:SP:21100183,1,"SAINT FELIX Fay-sous-bois",49.357224,2.28083,0,0,ODT:SA:CTP21100183,Europe/Paris,,ODT, +ODT:SP:21100184,1,"SAINT FELIX Place",49.349346,2.281853,0,0,ODT:SA:CTP21100184,Europe/Paris,,ODT, +ODT:SP:21100186,1,"Centre monument aux morts",49.338178,2.301799,0,0,ODT:SA:CTP21100186,Europe/Paris,,ODT, +ODT:SP:21100187,1,"Butteaux",49.353578,2.310342,0,0,ODT:SA:CTP21100187,Europe/Paris,,ODT, +ODT:SP:21100188,1,"THURY SOUS CLEMONT Mairie",49.356653,2.325359,0,0,ODT:SA:CTP21100188,Europe/Paris,,ODT, +ODT:SP:21100190,1,"NEUILLY SOUS CLERMONT AUVILLERS Ecole",49.359478,2.395074,0,0,ODT:SA:CTP21010673,Europe/Paris,,ODT, +ODT:SP:21100194,1,"NEUILLY SOUS CLERMONT Grande Rue",49.344783,2.408326,0,0,OTC:SA:CTP31000043,Europe/Paris,,ODT, +ODT:SP:21100196,1,"Curie",49.306377,2.764397,0,0,ODT:SA:CTP21010459,Europe/Paris,,ODT, +ODT:SP:21100199,1,"BETHISY ST PIERRE Place",49.298911,2.800616,0,0,ODT:SA:CTP21100199,Europe/Paris,,ODT, +ODT:SP:21100201,1,"BETHISY ST PIERRE Place Blondeau Mary",49.294443,2.814745,0,0,ODV:SA:CTP22403086,Europe/Paris,,ODT, +ODT:SP:21100202,1,"BETHISY ST PIERRE Eglise",49.302839,2.811168,0,0,ODV:SA:CTP22511287,Europe/Paris,,ODT, +ODT:SP:21100207,1,"NERY Verrines",49.266384,2.785303,0,0,ODV:SA:CTP22403650,Europe/Paris,,ODT, +ODT:SP:21100211,1,"Jaures",49.302719,2.779699,0,0,ODV:SA:CTP22403090,Europe/Paris,,ODT, +ODT:SP:21100213,1,"Lotissement",49.299356,2.517105,0,0,ODT:SA:CTP21100213,Europe/Paris,,ODT, +ODT:SP:21100215,1,"NERY Vaucelles",49.296925,2.791531,0,0,ODV:SA:CTP22403087,Europe/Paris,,ODT, +ODT:SP:21100221,1,"NERY Centre",49.281165,2.77755,0,0,ODV:SA:CTP22403651,Europe/Paris,,ODT, +ODT:SP:21100224,1,"BLAINCOURT LES PRECY Les Gorres",49.217758,2.362601,0,0,ODT:SA:CTP21100224,Europe/Paris,,ODT, +ODT:SP:21100225,1,"PRECY SUR OISE Sorel",49.210289,2.373006,0,0,ODT:SA:CTP21002540,Europe/Paris,,ODT, +ODT:SP:21100226,1,"PRECY SUR OISE Rosiers",49.208498,2.379957,0,0,ODT:SA:CTP21002539,Europe/Paris,,ODT, +ODT:SP:21100229,1,"VIILERS SOUS ST LEU Jonquilles",49.21277,2.39138,0,0,ODT:SA:CTP21002537,Europe/Paris,,ODT, +ODT:SP:21100240,1,"Chaumont",49.197518,2.41735,0,0,ODT:SA:CTP21000844,Europe/Paris,,ODT, +ODT:SP:21100245,1,"L'Etrier",49.187884,2.432989,0,0,ODT:SA:CTP21000855,Europe/Paris,,ODT, +ODT:SP:21100249,1,"Repuplique",49.185013,2.414877,0,0,ODT:SA:CTP21100249,Europe/Paris,,ODT, +ODT:SP:21100252,1,"Bois des Bouleaux",49.183778,2.406103,0,0,ODT:SA:CTP21000863,Europe/Paris,,ODT, +ODT:SP:21100253,1,"ST LEU Repuplique",49.215882,2.418256,0,0,OSP:SA:CTP19000017,Europe/Paris,,ODT, +ODT:SP:21100255,1,"PRECY SUR OISE Ecole",49.204684,2.368093,0,0,ODT:SA:CTP21002538,Europe/Paris,,ODT, +ODT:SP:21100267,1,"CROUY EN THELLE Centre",49.213258,2.320852,0,0,ODT:SA:CTP21002468,Europe/Paris,,ODT, +ODT:SP:21100271,1,"Calvaire",49.231698,2.299787,0,0,ODT:SA:CTP21002546,Europe/Paris,,ODT, +ODT:SP:21100272,1,"Centre",49.23364,2.303408,0,0,ODT:SA:CTP21002466,Europe/Paris,,ODT, +ODT:SP:21100273,1,"Mairie",49.234254,2.305236,0,0,ODT:SA:CTP21002545,Europe/Paris,,ODT, +ODT:SP:21100282,1,"Le LYS RP de l'Etoile",49.163663,2.429669,0,0,ODT:SA:CTP21001089,Europe/Paris,,ODT, +ODT:SP:21100283,1,"Le LYS 3e Avenue",49.167747,2.423059,0,0,ODT:SA:CTP21100283,Europe/Paris,,ODT, +ODT:SP:21100284,1,"Le LYS RP du Grand Cerf",49.171336,2.416569,0,0,ODT:SA:CTP21100284,Europe/Paris,,ODT, +ODT:SP:21100285,1,"Le LYS RP de la Reine",49.164607,2.41597,0,0,ODT:SA:CTP21010679,Europe/Paris,,ODT, +ODT:SP:21100286,1,"Le LYS RP du Poteau du Roy",49.158246,2.415343,0,0,ODT:SA:CTP21100286,Europe/Paris,,ODT, +ODT:SP:21100287,1,"Le LYS RP du Grand Conde",49.165549,2.402612,0,0,ODT:SA:CTP21001086,Europe/Paris,,ODT, +ODT:SP:21100288,1,"Le LYS RP des Aigles",49.172289,2.401949,0,0,ODT:SA:CTP21100288,Europe/Paris,,ODT, +ODT:SP:21100289,1,"Le LYS RP Royal",49.172789,2.388493,0,0,ODT:SA:CTP21001101,Europe/Paris,,ODT, +ODT:SP:21100290,1,"Le LYS 4e Avenue",49.173116,2.380024,0,0,ODT:SA:CTP21100290,Europe/Paris,,ODT, +ODT:SP:21100291,1,"Le LYS 11e Avenue",49.171716,2.375473,0,0,ODT:SA:CTP21100291,Europe/Paris,,ODT, +ODT:SP:21100292,1,"Le LYS RP des Moines",49.167079,2.378512,0,0,ODT:SA:CTP21001081,Europe/Paris,,ODT, +ODT:SP:21100293,1,"Le LYS RP d'Aumale",49.166518,2.388692,0,0,ODT:SA:CTP21100293,Europe/Paris,,ODT, +ODT:SP:21100294,1,"Le LYS Avenue Reberteau",49.165831,2.391939,0,0,ODT:SA:CTP21100294,Europe/Paris,,ODT, +ODT:SP:21100295,1,"Le LYS RP Manin",49.162439,2.388222,0,0,ODT:SA:CTP21100295,Europe/Paris,,ODT, +ODT:SP:21100296,1,"Le LYS Avenue de Beaumont",49.16305,2.40194,0,0,ODT:SA:CTP21100296,Europe/Paris,,ODT, +ODT:SP:21100297,1,"Le LYS 8e Avenue",49.161924,2.393263,0,0,ODT:SA:CTP21100297,Europe/Paris,,ODT, +ODT:SP:21100298,1,"Le LYS 5e Avenue",49.15888,2.40277,0,0,ODT:SA:CTP21100298,Europe/Paris,,ODT, +ODT:SP:21100299,1,"Montagne",49.160792,2.446146,0,0,ODT:SA:CTP21001111,Europe/Paris,,ODT, +ODT:SP:21100300,1,"Centre Social",49.156659,2.44583,0,0,ODT:SA:CTP21100300,Europe/Paris,,ODT, +ODT:SP:21100301,1,"Grange des pres",49.154721,2.44499,0,0,ODT:SA:CTP21100301,Europe/Paris,,ODT, +ODT:SP:21100302,1,"Charles Pratt",49.15861,2.446659,0,0,ODT:SA:CTP21100302,Europe/Paris,,ODT, +ODT:SP:21100303,1,"Beau Larris",49.16331,2.443411,0,0,ODT:SA:CTP21001092,Europe/Paris,,ODT, +ODT:SP:21100304,1,"de Gallaix",49.166025,2.441197,0,0,ODT:SA:CTP21001115,Europe/Paris,,ODT, +ODT:SP:21100305,1,"Plein Soleil",49.166533,2.436169,0,0,ODT:SA:CTP21001113,Europe/Paris,,ODT, +ODT:SP:21100306,1,"RP du Lys",49.161932,2.437051,0,0,ODT:SA:CTP21001091,Europe/Paris,,ODT, +ODT:SP:21100307,1,"Cimetiere",49.157753,2.438125,0,0,ODT:SA:CTP21001110,Europe/Paris,,ODT, +ODT:SP:21100308,1,"Chateau",49.152375,2.443156,0,0,ODT:SA:CTP21002413,Europe/Paris,,ODT, +ODT:SP:21100309,1,"Haras du Coq",49.147096,2.438118,0,0,ODT:SA:CTP21100309,Europe/Paris,,ODT, +ODT:SP:21100310,1,"Collège F DOLTO",49.153648,2.424624,0,0,ODT:SA:CTP21001106,Europe/Paris,,ODT, +ODT:SP:21100312,1,"Mairie",49.314777,2.471908,0,0,ODT:SA:CTP21002476,Europe/Paris,,ODT, +ODT:SP:21100313,1,"MONCHY ST ELOI Mairie",49.292922,2.460738,0,0,ODT:SA:CTP21002473,Europe/Paris,,ODT, +ODT:SP:21100314,1,"MONCHY ST ELOI Candily",49.287691,2.471933,0,0,ODT:SA:CTP21002472,Europe/Paris,,ODT, +ODT:SP:21100315,1,"Paul Eluard",49.288033,2.449502,0,0,ODT:SA:CTP21001069,Europe/Paris,,ODT, +ODT:SP:21100316,1,"Hotel de ville",49.293943,2.443713,0,0,ODT:SA:CTP21001067,Europe/Paris,,ODT, +ODT:SP:21100317,1,"Sailleville Aulnois",49.305237,2.444048,0,0,ODT:SA:CTP21001061,Europe/Paris,,ODT, +ODT:SP:21100318,1,"Place d'Uny",49.338014,2.439524,0,0,ODT:SA:CTP21100318,Europe/Paris,,ODT, +ODT:SP:21100319,1,"Senecourt",49.349164,2.447512,0,0,ODT:SA:CTP21100319,Europe/Paris,,ODT, +ODT:SP:21100321,1,"Louveaucourt",49.341431,2.455974,0,0,ODT:SA:CTP21002485,Europe/Paris,,ODT, +ODT:SP:21100322,1,"SOUTRAINE Lotissement",49.316565,2.434658,0,0,ODT:SA:CTP21100322,Europe/Paris,,ODT, +ODT:SP:21100324,1,"Collège R ROLAND",49.32033,2.310882,0,0,ODT:SA:CTP21100324,Europe/Paris,,ODT, +ODT:SP:21100334,1,"Centre",49.330295,2.328265,0,0,ODT:SA:CTP21100334,Europe/Paris,,ODT, +ODT:SP:21100336,1,"SAINT-FELIX Lotissement",49.347778,2.291672,0,0,ODT:SA:CTP21100336,Europe/Paris,,ODT, +ODT:SP:21100346,1,"FITZ JAMES Place de la République",49.389864,2.430696,0,0,ODT:SA:CTP21010510,Europe/Paris,,ODT, +ODT:SP:21100347,1,"FITZ JAMES Voltaire",49.390791,2.416193,0,0,ODV:SA:CTP22413704,Europe/Paris,,ODT, +ODT:SP:21100348,1,"Trois etots",49.448615,2.535853,0,0,ODV:SA:CTP22511344,Europe/Paris,,ODT, +ODT:SP:21100349,1,"Trois etots",49.448608,2.53583,0,0,ODV:SA:CTP22511344,Europe/Paris,,ODT, +ODT:SP:21100350,1,"Centre",49.428328,2.535819,0,0,ODT:SA:CTP21100350,Europe/Paris,,ODT, +ODT:SP:21100351,1,"Centre",49.41662,2.520876,0,0,ODT:SA:CTP21100351,Europe/Paris,,ODT, +ODT:SP:21100352,1,"Argenlieu",49.451945,2.441667,0,0,ODT:SA:CTP21100352,Europe/Paris,,ODT, +ODT:SP:21100354,1,"Metz",49.453565,2.425714,0,0,ODT:SA:CTP21100354,Europe/Paris,,ODT, +ODT:SP:21100356,1,"SAINT AUBIN SOUS ERQUERY Ecole",49.406709,2.483713,0,0,ODT:SA:CTP21100356,Europe/Paris,,ODT, +ODT:SP:21100357,1,"REMECOURT Lamecourt",49.427827,2.491361,0,0,ODT:SA:CTP21100357,Europe/Paris,,ODT, +ODT:SP:21100358,1,"CUIGNIERES RD 127",49.452282,2.473248,0,0,ODV:SA:CTP22511191,Europe/Paris,,ODT, +ODT:SP:21100359,1,"Centre",49.42444,2.417773,0,0,ODT:SA:CTP21100359,Europe/Paris,,ODT, +ODT:SP:21100360,1,"LAMECOURT Square André Cottel",49.429958,2.466164,0,0,ODT:SA:CTP21100360,Europe/Paris,,ODT, +ODT:SP:21100361,1,"Centre",49.40902,2.456558,0,0,ODT:SA:CTP21100361,Europe/Paris,,ODT, +ODT:SP:21100365,1,"Bizancourt",49.438892,2.419173,0,0,ODT:SA:CTP21100365,Europe/Paris,,ODT, +ODT:SP:21100366,1,"Place de la Mairie",49.447225,2.426682,0,0,ODT:SA:CTP21100366,Europe/Paris,,ODT, +ODT:SP:21100373,1,"Tour de Ville Grand Cerf",49.206875,2.589775,0,0,OEL:SA:CTP2080042,Europe/Paris,,ODT, +ODT:SP:21100378,1,"ULLY SAINT GEORGES Moulincourt",49.264446,2.248613,0,0,ODT:SA:CTP21100378,Europe/Paris,,ODT, +ODT:SP:21100380,1,"ULLY SAINT GEORGES Cousnicourt",49.291046,2.273221,0,0,ODT:SA:CTP21010515,Europe/Paris,,ODT, +ODT:SP:21100382,1,"ULLY SAINT GEORGES Coupin",49.272995,2.286548,0,0,ODT:SA:CTP21100382,Europe/Paris,,ODT, +ODT:SP:21100385,1,"Centre",49.275269,2.315271,0,0,ODT:SA:CTP21010517,Europe/Paris,,ODT, +ODT:SP:21100387,1,"Usine",49.255827,2.404291,0,0,ODT:SA:CTP21100387,Europe/Paris,,ODT, +ODT:SP:21100391,1,"Mello",49.27222,2.366747,0,0,ODT:SA:CTP21100391,Europe/Paris,,ODT, +ODT:SP:21100393,1,"ST VAAST LES MELLO Abribus",49.266077,2.386334,0,0,ODT:SA:CTP21100393,Europe/Paris,,ODT, +ODT:SP:21100400,1,"ST LEU La Muette",49.216067,2.410878,0,0,OSP:SA:CTP19000016,Europe/Paris,,ODT, +ODT:SP:21100406,1,"NOGENT SUR OISE Branly",49.275525,2.464843,0,0,ODT:SA:CTP21002453,Europe/Paris,,ODT, +ODT:SP:21100409,1,"Rue des Cerises",49.300997,2.443654,0,0,ODT:SA:CTP21001064,Europe/Paris,,ODT, +ODT:SP:21100412,1,"Relais de la Poste",49.323665,2.442011,0,0,ODT:SA:CTP21001696,Europe/Paris,,ODT, +ODT:SP:21100413,1,"Eglise",49.328337,2.441663,0,0,ODT:SA:CTP21002409,Europe/Paris,,ODT, +ODT:SP:21100414,1,"Pierre Curie",49.332777,2.438611,0,0,ODT:SA:CTP21001699,Europe/Paris,,ODT, +ODT:SP:21100415,1,"NEUILLY SOUS CLERMONT Zone Commerciale",49.350161,2.426334,0,0,ODT:SA:CTP21100415,Europe/Paris,,ODT, +ODT:SP:21100423,1,"SACY LE GRAND Place d'Avrigny",49.352604,2.548801,0,0,ODV:SA:CTP22413706,Europe/Paris,,ODT, +ODT:SP:21100424,1,"SACY LE GRAND Ecole",49.353745,2.544015,0,0,ODT:SA:CTP21002575,Europe/Paris,,ODT, +ODT:SP:21100425,1,"SACY LE GRAND Pasteur",49.354251,2.537045,0,0,ODT:SA:CTP21002576,Europe/Paris,,ODT, +ODT:SP:21100426,1,"LABRUYERE Centre",49.350945,2.507646,0,0,ODT:SA:CTP21002577,Europe/Paris,,ODT, +ODT:SP:21100427,1,"Centre",49.339196,2.499715,0,0,ODT:SA:CTP21002578,Europe/Paris,,ODT, +ODT:SP:21100428,1,"Mairie",49.330313,2.498368,0,0,ODT:SA:CTP21002580,Europe/Paris,,ODT, +ODT:SP:21100431,1,"Le Pont",49.320423,2.497718,0,0,ODT:SA:CTP21100431,Europe/Paris,,ODT, +ODT:SP:21100434,1,"Stade",49.315555,2.509727,0,0,ODT:SA:CTP21100434,Europe/Paris,,ODT, +ODT:SP:21100437,1,"La Rochefoucauld",49.32968,2.464497,0,0,ODT:SA:CTP21002480,Europe/Paris,,ODT, +ODT:SP:21100438,1,"Ecole",49.344852,2.457701,0,0,ODT:SA:CTP21100438,Europe/Paris,,ODT, +ODT:SP:21100440,1,"Bethencourt",49.347498,2.469725,0,0,ODT:SA:CTP21100440,Europe/Paris,,ODT, +ODT:SP:21100444,1,"Allée des Fresnes",49.337496,2.455278,0,0,ODT:SA:CTP21100444,Europe/Paris,,ODT, +ODT:SP:21100446,1,"MONCHY ST ELOI Lotissement",49.296899,2.463523,0,0,ODT:SA:CTP21002474,Europe/Paris,,ODT, +ODT:SP:21100447,1,"Cancriaumont",49.293695,2.452018,0,0,ODT:SA:CTP21100447,Europe/Paris,,ODT, +ODT:SP:21100448,1,"VILLERS SAINT PAUL Collège Emile LAMBERT",49.291921,2.488221,0,0,ODT:SA:CTP21100448,Europe/Paris,,ODT, +ODT:SP:21100456,1,"Beauval",49.108983,3.046317,0,0,ODT:SA:CTP21010585,Europe/Paris,,ODT, +ODT:SP:21100457,1,"Mairie",49.115249,3.061914,0,0,ODT:SA:CTP21010584,Europe/Paris,,ODT, +ODT:SP:21100458,1,"THURY EN VALOIS La Grange au Bois",49.149158,3.04361,0,0,ODT:SA:CTP21100458,Europe/Paris,,ODT, +ODT:SP:21100459,1,"Antilly",49.158239,2.992083,0,0,ODT:SA:CTP21100459,Europe/Paris,,ODT, +ODT:SP:21100461,1,"ACY EN MULTIEN Place",49.102939,2.954405,0,0,ODT:SA:CTP21100461,Europe/Paris,,ODT, +ODT:SP:21100462,1,"MAREUIL SUR OURCQ Julien Muzard",49.129999,3.08,0,0,ODT:SA:CTP21100462,Europe/Paris,,ODT, +ODT:SP:21100465,1,"ORMOY LE DAVIEN Ecole",49.194091,2.95902,0,0,ODT:SA:CTP21100465,Europe/Paris,,ODT, +ODT:SP:21100466,1,"Villers les potées",49.18,2.99805,0,0,ODT:SA:CTP21100466,Europe/Paris,,ODT, +ODT:SP:21100467,1,"Grand Champ",49.175831,3.00416,0,0,ODT:SA:CTP21100467,Europe/Paris,,ODT, +ODT:SP:21100468,1,"Rue de l'eglise",49.17326,2.991755,0,0,ODT:SA:CTP21100468,Europe/Paris,,ODT, +ODT:SP:21100469,1,"Centre",49.098655,3.04504,0,0,ODT:SA:CTP21010586,Europe/Paris,,ODT, +ODT:SP:21100470,1,"La Bascule",49.104772,2.841353,0,0,ODT:SA:CTP21100470,Europe/Paris,,ODT, +ODT:SP:21100471,1,"CHEVREVILLE Ecole",49.109881,2.850683,0,0,ODT:SA:CTP21100471,Europe/Paris,,ODT, +ODT:SP:21100473,1,"ETAVIGNY Ecole",49.118881,2.979908,0,0,ODT:SA:CTP21010416,Europe/Paris,,ODT, +ODT:SP:21100474,1,"BOULLARE Boullare",49.128549,3.004592,0,0,ODT:SA:CTP21100474,Europe/Paris,,ODT, +ODT:SP:21100475,1,"BREGY Eglise",49.082501,2.866133,0,0,ODT:SA:CTP21100475,Europe/Paris,,ODT, +ODT:SP:21100477,1,"REEZ FOSSE MARTIN Nogeon",49.091413,2.929078,0,0,ODT:SA:CTP21100477,Europe/Paris,,ODT, +ODT:SP:21100479,1,"Centre",49.1125,2.918904,0,0,ODT:SA:CTP21100479,Europe/Paris,,ODT, +ODT:SP:21100480,1,"BOULLANCY Gueux",49.120797,2.923487,0,0,ODT:SA:CTP21100480,Europe/Paris,,ODT, +ODT:SP:21100481,1,"VILLERS SAINT GENEST Centre",49.141406,2.907409,0,0,ODT:SA:CTP21100481,Europe/Paris,,ODT, +ODT:SP:21100482,1,"ROUVRES EN MULTIEN ROUVRES",49.110175,3.026433,0,0,ODT:SA:CTP21010415,Europe/Paris,,ODT, +ODT:SP:21100483,1,"AUTHEUIL EN VAOIS La Sanglière",49.178372,3.043997,0,0,ODT:SA:CTP21100483,Europe/Paris,,ODT, +ODT:SP:21100484,1,"AUTHEUIL EN VAOIS Centre",49.171868,3.06038,0,0,ODT:SA:CTP21100484,Europe/Paris,,ODT, +ODT:SP:21100485,1,"AUTHEUIL EN VAOIS Le Plessis sur Autheuil",49.18126,3.061526,0,0,ODT:SA:CTP21100485,Europe/Paris,,ODT, +ODT:SP:21100486,1,"AUTHEUIL EN VALOIS Billemont",49.190517,3.074337,0,0,ODT:SA:CTP21100486,Europe/Paris,,ODT, +ODT:SP:21100487,1,"Ecole",49.20305,3.047795,0,0,ODT:SA:CTP21100487,Europe/Paris,,ODT, +ODT:SP:21100488,1,"Centre",49.200971,3.015787,0,0,ODT:SA:CTP21100488,Europe/Paris,,ODT, +ODT:SP:21100489,1,"Centre",49.178051,2.956684,0,0,ODT:SA:CTP21100489,Europe/Paris,,ODT, +ODT:SP:21100490,1,"Bourneville",49.154488,3.111126,0,0,ODT:SA:CTP21010580,Europe/Paris,,ODT, +ODT:SP:21100491,1,"Mairie",49.170412,3.103841,0,0,ODT:SA:CTP21100491,Europe/Paris,,ODT, +ODT:SP:21100492,1,"Précy a Mont",49.181939,3.1075,0,0,ODT:SA:CTP21100492,Europe/Paris,,ODT, +ODT:SP:21100493,1,"LA VILLEUNEUVE SOUS THURY Centre",49.156441,3.060232,0,0,ODT:SA:CTP21100493,Europe/Paris,,ODT, +ODT:SP:21100494,1,"THURY EN VALOIS Eglise",49.157558,3.026121,0,0,ODT:SA:CTP21100494,Europe/Paris,,ODT, +ODT:SP:21100496,1,"Collège M.PAGNOL arrivée",49.159213,2.949859,0,0,ODT:SA:CTP21100496,Europe/Paris,,ODT, +ODT:SP:21100497,1,"CREPY EN VALOIS Lycée Jean Monnet",49.223637,2.892284,0,0,ODT:SA:CTP21100497,Europe/Paris,,ODT, +ODT:SP:21100498,1,"CREPY EN VALOIS Lycée Jean Monnet",49.22384,2.893164,0,0,ODT:SA:CTP21100497,Europe/Paris,,ODT, +ODT:SP:21100499,1,"CREPY EN VALOIS Collège La Fontaine",49.227552,2.894878,0,0,ODT:SA:CTP21010576,Europe/Paris,,ODT, +ODT:SP:21100500,1,"CREPY EN VALOIS G. De NERVAL",49.237816,2.892053,0,0,ODV:SA:CTP22403883,Europe/Paris,,ODT, +ODT:SP:21100501,1,"REEZ FOSSE MARTIN Reez",49.108431,2.932749,0,0,ODT:SA:CTP21010421,Europe/Paris,,ODT, +ODT:SP:21100502,1,"Le Bas de Bouillancy",49.114548,2.929712,0,0,ODT:SA:CTP21100502,Europe/Paris,,ODT, +ODT:SP:21100504,1,"Antilly",49.152011,2.9848,0,0,ODT:SA:CTP21100504,Europe/Paris,,ODT, +ODT:SP:21100507,1,"ROSOY EN MULTIEN Rosoy en multien",49.095784,2.990389,0,0,ODT:SA:CTP21100507,Europe/Paris,,ODT, +ODT:SP:21100523,1,"ST MARTIN LONGEAU Eglise",49.346103,2.59761,0,0,ODT:SA:CTP21002569,Europe/Paris,,ODT, +ODT:SP:21100524,1,"ST MARTIN LONGEAU République",49.344362,2.601093,0,0,ODT:SA:CTP21100524,Europe/Paris,,ODT, +ODT:SP:21100525,1,"Centre",49.300705,2.515653,0,0,ODT:SA:CTP21002503,Europe/Paris,,ODT, +ODT:SP:21100528,1,"Place",49.319302,2.527083,0,0,ODT:SA:CTP21100528,Europe/Paris,,ODT, +ODT:SP:21100530,1,"SACY LE PETIT Place",49.360833,2.630281,0,0,ODT:SA:CTP21002605,Europe/Paris,,ODT, +ODT:SP:21100531,1,"RD13",49.342887,2.621654,0,0,ODT:SA:CTP21100531,Europe/Paris,,ODT, +ODT:SP:21100533,1,"ST MARTIN LONGEAU Mairie",49.342557,2.604714,0,0,ODV:SA:CTP22403837,Europe/Paris,,ODT, +ODT:SP:21100535,1,"Place Dupuis",49.314821,2.594043,0,0,ODT:SA:CTP21002562,Europe/Paris,,ODT, +ODT:SP:21100539,1,"BETHISY ST MARTIN Ecole",49.294855,2.815607,0,0,ODV:SA:CTP22403656,Europe/Paris,,ODT, +ODT:SP:21100542,1,"St Pierre",49.300339,2.650927,0,0,ODV:SA:CTP22403095,Europe/Paris,,ODT, +ODT:SP:21100543,1,"PONT STE MAXENCE Mairie",49.301385,2.604455,0,0,ODV:SA:CTP22403664,Europe/Paris,,ODT, +ODT:SP:21100544,1,"PONT STE MAXENCE College L&R Aubrac Arrivée",49.294251,2.596592,0,0,ODT:SA:CTP21100544,Europe/Paris,,ODT, +ODT:SP:21100547,1,"PONT STE MAXENCE Champs de Mars",49.306408,2.604223,0,0,ODT:SA:CTP21002490,Europe/Paris,,ODT, +ODT:SP:21100548,1,"Collège R.CASSIN",49.306199,2.540966,0,0,ODT:SA:CTP21100548,Europe/Paris,,ODT, +ODT:SP:21100552,1,"BETHISY ST PIERRE Place",49.298885,2.800561,0,0,ODT:SA:CTP21100199,Europe/Paris,,ODT, +ODT:SP:21100553,1,"Centre",49.313572,2.343942,0,0,ODT:SA:CTP21100553,Europe/Paris,,ODT, +ODT:SP:21100554,1,"Saint Claude",49.29097,2.365055,0,0,ODT:SA:CTP21100554,Europe/Paris,,ODT, +ODT:SP:21100557,1,"Mérard",49.328517,2.3459,0,0,ODT:SA:CTP21100557,Europe/Paris,,ODT, +ODT:SP:21100558,1,"Centre",49.344937,2.358539,0,0,ODT:SA:CTP21100558,Europe/Paris,,ODT, +ODT:SP:21100559,1,"BALAGNY SUR THERAIN Stade",49.301107,2.332241,0,0,ODT:SA:CTP21100559,Europe/Paris,,ODT, +ODT:SP:21100560,1,"BALAGNY SUR THERAIN Acacias",49.291198,2.340331,0,0,ODT:SA:CTP21100560,Europe/Paris,,ODT, +ODT:SP:21100561,1,"BALAGNY SUR THERAIN Mairie",49.295277,2.336389,0,0,ODT:SA:CTP21100561,Europe/Paris,,ODT, +ODT:SP:21100562,1,"Maison blanche",49.30444,2.346391,0,0,ODT:SA:CTP21100562,Europe/Paris,,ODT, +ODT:SP:21100565,1,"THURY SOUS CLERMONT Fillerval",49.357864,2.31635,0,0,ODT:SA:CTP21100565,Europe/Paris,,ODT, +ODT:SP:21100566,1,"THURY SOUS CLERMONT Eglise",49.357068,2.325097,0,0,ODT:SA:CTP21100566,Europe/Paris,,ODT, +ODT:SP:21100567,1,"THURY SOUS CLERMONT Rue d'En Bas",49.355466,2.315856,0,0,ODT:SA:CTP21100567,Europe/Paris,,ODT, +ODT:SP:21100569,1,"Ecole R Floury",49.31778,2.319884,0,0,ODT:SA:CTP21100569,Europe/Paris,,ODT, +ODT:SP:21100570,1,"Mérard",49.328615,2.346107,0,0,ODT:SA:CTP21100557,Europe/Paris,,ODT, +ODT:SP:21100572,1,"THURY SOUS CLERMONT Rue d'En Bas",49.357992,2.33416,0,0,ODT:SA:CTP21100572,Europe/Paris,,ODT, +ODT:SP:21100573,1,"Saint Claude",49.290925,2.365178,0,0,ODT:SA:CTP21100554,Europe/Paris,,ODT, +ODT:SP:21100574,1,"Martincourt",49.283353,2.375314,0,0,ODT:SA:CTP21001352,Europe/Paris,,ODT, +ODT:SP:21100577,1,"Parc du Manoir",49.189005,2.445794,0,0,ODT:SA:CTP21000858,Europe/Paris,,ODT, +ODT:SP:21100580,1,"Eglise du Bois St Denis",49.176606,2.457594,0,0,OYY:SA:CTP4010010,Europe/Paris,,ODT, +ODT:SP:21100582,1,"Institut St Dominique",49.108867,2.604967,0,0,ODT:SA:CTP21100582,Europe/Paris,,ODT, +ODT:SP:21100583,1,"Notre Dame/Musée du cheval",49.194461,2.478242,0,0,OYY:SA:CTP4010017,Europe/Paris,,ODT, +ODT:SP:21100584,1,"Domaine des Aigles",49.189366,2.453362,0,0,ODT:SA:CTP21000859,Europe/Paris,,ODT, +ODT:SP:21100590,1,"La Prêle",49.321343,2.50216,0,0,ODT:SA:CTP21100590,Europe/Paris,,ODT, +ODT:SP:21100594,1,"Carrefour",49.316052,2.54745,0,0,ODT:SA:CTP21100594,Europe/Paris,,ODT, +ODT:SP:21100595,1,"Belle Visée",49.30127,2.528047,0,0,ODT:SA:CTP21100595,Europe/Paris,,ODT, +ODT:SP:21100606,1,"Mairie",49.304544,2.542141,0,0,ODT:SA:CTP21100606,Europe/Paris,,ODT, +ODT:SP:21100608,1,"Le Plessis au bois",49.218609,3.02166,0,0,ODT:SA:CTP21100608,Europe/Paris,,ODT, +ODT:SP:21100609,1,"VAUCIENNE Bas",49.236935,3.030518,0,0,ODT:SA:CTP21100609,Europe/Paris,,ODT, +ODT:SP:21100610,1,"VAUCIENNE Mur du Nain",49.237771,3.02305,0,0,ODT:SA:CTP21100610,Europe/Paris,,ODT, +ODT:SP:21100612,1,"RN 2",49.21416,2.955,0,0,ODT:SA:CTP21100612,Europe/Paris,,ODT, +ODT:SP:21100613,1,"Eglise",49.310686,2.731181,0,0,ODV:SA:CTP22403093,Europe/Paris,,ODT, +ODT:SP:21100615,1,"ST SAUVEUR Eglise",49.317976,2.783774,0,0,ODV:SA:CTP22403080,Europe/Paris,,ODT, +ODT:SP:21100616,1,"NERY Les Larries",49.292555,2.787661,0,0,ODV:SA:CTP22403657,Europe/Paris,,ODT, +ODT:SP:21100617,1,"Centre",49.292289,2.857999,0,0,ODV:SA:CTP22403892,Europe/Paris,,ODT, +ODT:SP:21100618,1,"Ecole",49.258889,2.817222,0,0,ODT:SA:CTP21100618,Europe/Paris,,ODT, +ODT:SP:21100619,1,"VAUCIENNE Chavres",49.215665,2.994159,0,0,ODT:SA:CTP21100619,Europe/Paris,,ODT, +ODT:SP:21100620,1,"Droizeles Eglise",49.160406,2.788136,0,0,ODT:SA:CTP21010655,Europe/Paris,,ODT, +ODT:SP:21100621,1,"Ecole",49.171942,2.733903,0,0,ODT:SA:CTP21100621,Europe/Paris,,ODT, +ODT:SP:21100622,1,"Centre",49.270826,2.851603,0,0,ODV:SA:CTP22403891,Europe/Paris,,ODT, +ODT:SP:21100623,1,"SERY MAGNEVAL Demi-Lune",49.259714,2.853208,0,0,ODV:SA:CTP22403890,Europe/Paris,,ODT, +ODT:SP:21100624,1,"BONNEUIL EN VALOIS Le Berval",49.271662,2.962795,0,0,ODV:SA:CTP22511311,Europe/Paris,,ODT, +ODT:SP:21100625,1,"SERY MAGNEVAL Magneval",49.263674,2.855815,0,0,ODT:SA:CTP21100625,Europe/Paris,,ODT, +ODT:SP:21100628,1,"Petit VEZ",49.258881,3.005,0,0,ODT:SA:CTP21100628,Europe/Paris,,ODT, +ODT:SP:21100629,1,"Ecole",49.264249,3.00347,0,0,ODT:SA:CTP21100629,Europe/Paris,,ODT, +ODT:SP:21100630,1,"REEZ FOSSE MARTIN Fosse Martin",49.084999,2.90583,0,0,ODT:SA:CTP21010423,Europe/Paris,,ODT, +ODT:SP:21100631,1,"BONNEUIL EN VALOIS Centre",49.284813,2.992186,0,0,ODV:SA:CTP22413768,Europe/Paris,,ODT, +ODT:SP:21100632,1,"BONNEUIL EN VALOIS Les Buts",49.285714,2.983394,0,0,ODV:SA:CTP22403896,Europe/Paris,,ODT, +ODT:SP:21100633,1,"BETHANCOURT EN VALOIS Abri",49.286948,2.877201,0,0,ODT:SA:CTP21100633,Europe/Paris,,ODT, +ODT:SP:21100634,1,"Centre",49.258879,2.93055,0,0,ODV:SA:CTP22403893,Europe/Paris,,ODT, +ODT:SP:21100635,1,"Elincourt",49.287083,2.915741,0,0,ODV:SA:CTP22403902,Europe/Paris,,ODT, +ODT:SP:21100636,1,"Centre",49.29584,2.918271,0,0,ODV:SA:CTP22511323,Europe/Paris,,ODT, +ODT:SP:21100637,1,"Belival",49.288811,2.8884,0,0,ODV:SA:CTP22403880,Europe/Paris,,ODT, +ODT:SP:21100638,1,"Place",49.290089,2.87803,0,0,ODT:SA:CTP21100638,Europe/Paris,,ODT, +ODT:SP:21100640,1,"CREPY EN VALOIS Lycée R.Desnos",49.228522,2.892982,0,0,ODT:SA:CTP21010577,Europe/Paris,,ODT, +ODT:SP:21100641,1,"EMEVILLE Eglise",49.282777,3.028499,0,0,ODT:SA:CTP21100641,Europe/Paris,,ODT, +ODT:SP:21100642,1,"BONNEUIL EN VALOIS La Croix Ste Barbe",49.288332,3.014186,0,0,ODT:SA:CTP21100642,Europe/Paris,,ODT, +ODT:SP:21100643,1,"BONNEUIL EN VALOIS Rue de Villers",49.282404,3.000601,0,0,ODT:SA:CTP21100643,Europe/Paris,,ODT, +ODT:SP:21100644,1,"BONNEUIL EN VALOIS Le Voisin",49.287863,2.971362,0,0,ODV:SA:CTP22403903,Europe/Paris,,ODT, +ODT:SP:21100645,1,"Buy",49.285201,2.95891,0,0,ODT:SA:CTP21100645,Europe/Paris,,ODT, +ODT:SP:21100646,1,"RUSSY BEMONT Bemont",49.259285,2.965999,0,0,ODT:SA:CTP21100646,Europe/Paris,,ODT, +ODT:SP:21100647,1,"RUSSY BEMONT Ecole",49.243051,2.96444,0,0,ODT:SA:CTP21100647,Europe/Paris,,ODT, +ODT:SP:21100648,1,"FRESNOY LA RIVIERE Pondron",49.278378,2.944769,0,0,ODV:SA:CTP22403894,Europe/Paris,,ODT, +ODT:SP:21100649,1,"FRESNOY LA RIVIERE Vattier Voisin",49.280828,2.93083,0,0,ODV:SA:CTP22403897,Europe/Paris,,ODT, +ODT:SP:21100650,1,"Morcourt",49.267452,2.900624,0,0,ODT:SA:CTP21100650,Europe/Paris,,ODT, +ODT:SP:21100653,1,"Montaby Place",49.115946,2.628972,0,0,ODT:SA:CTP21001460,Europe/Paris,,ODT, +ODT:SP:21100654,1,"FRESNOY LA RIVIERE Rue du chêne",49.284454,2.916851,0,0,ODT:SA:CTP21100654,Europe/Paris,,ODT, +ODT:SP:21100657,1,"Rue Charles de Gaulle",49.235271,2.98083,0,0,ODT:SA:CTP21100657,Europe/Paris,,ODT, +ODT:SP:21100658,1,"Cité Gauthier",49.23563,2.990751,0,0,ODT:SA:CTP21100658,Europe/Paris,,ODT, +ODT:SP:21100660,1,"Centre",49.125383,2.694264,0,0,ODT:SA:CTP21010613,Europe/Paris,,ODT, +ODT:SP:21100661,1,"Mairie",49.106469,2.787501,0,0,ODT:SA:CTP21010624,Europe/Paris,,ODT, +ODT:SP:21100663,1,"CHEVREVILLE Sennevieres",49.122851,2.853934,0,0,ODT:SA:CTP21100663,Europe/Paris,,ODT, +ODT:SP:21100664,1,"BOISSY FRESNOY Eglise",49.163906,2.870198,0,0,ODT:SA:CTP21010573,Europe/Paris,,ODT, +ODT:SP:21100666,1,"NANTEUIL LE HAUDOUIN Eglise",49.139448,2.812494,0,0,ODT:SA:CTP21100666,Europe/Paris,,ODT, +ODT:SP:21100668,1,"NANTEUIL LE HAUDOUIN College G.Cale",49.137881,2.808892,0,0,ODT:SA:CTP21100668,Europe/Paris,,ODT, +ODT:SP:21100677,1,"MERU Gare",49.232375,2.13293,0,0,ODT:SA:CTP21100677,Europe/Paris,,ODT, +ODT:SP:21100678,1,"Gare",49.199447,2.214539,0,0,ODT:SA:CTP21100678,Europe/Paris,,ODT, +ODT:SP:21100679,1,"Centre",49.197503,2.209503,0,0,ODT:SA:CTP21100679,Europe/Paris,,ODT, +ODT:SP:21100680,1,"BELLE EGLISE Centre",49.192339,2.219523,0,0,ODT:SA:CTP21100680,Europe/Paris,,ODT, +ODT:SP:21100681,1,"Marinière",49.170274,2.243101,0,0,ODT:SA:CTP21100681,Europe/Paris,,ODT, +ODT:SP:21100682,1,"Collège Jacques Prévert",49.168836,2.254806,0,0,ODT:SA:CTP21100682,Europe/Paris,,ODT, +ODT:SP:21100684,1,"MORANGLE La mare au bois",49.194212,2.292603,0,0,ODT:SA:CTP21100684,Europe/Paris,,ODT, +ODT:SP:21100685,1,"NEUILLY EN THELLE HLM",49.219439,2.28277,0,0,ODT:SA:CTP21002549,Europe/Paris,,ODT, +ODT:SP:21100686,1,"FRESNOY EN THELLE Ecole",49.20058,2.269508,0,0,ODT:SA:CTP21100686,Europe/Paris,,ODT, +ODT:SP:21100688,1,"ST MAXIMIN Lycée Rothschild",49.233718,2.459211,0,0,ODT:SA:CTP21001923,Europe/Paris,,ODT, +ODT:SP:21100693,1,"DIEUDONNE La Fosse Saint Clair",49.249305,2.257051,0,0,ODT:SA:CTP21002552,Europe/Paris,,ODT, +ODT:SP:21100694,1,"NEUILLY EN THELLE Bois des Cauches",49.248103,2.275251,0,0,ODT:SA:CTP21002556,Europe/Paris,,ODT, +ODT:SP:21100698,1,"NEUILLY EN THELLE Collège H Montherlant",49.21533,2.281188,0,0,ODT:SA:CTP21002550,Europe/Paris,,ODT, +ODT:SP:21100699,1,"Lycée Agricole",49.431293,2.419409,0,0,ODT:SA:CTP21100699,Europe/Paris,,ODT, +ODT:SP:21100704,1,"AUGER SAINT VINCENT Saint-Mard",49.214135,2.809494,0,0,ODT:SA:CTP21100704,Europe/Paris,,ODT, +ODT:SP:21100708,1,"MAREUIL SUR OURCQ Poste",49.137651,3.078074,0,0,ODT:SA:CTP21010582,Europe/Paris,,ODT, +ODT:SP:21100711,1,"Rue de Saintines",49.311178,2.7398,0,0,ODV:SA:CTP22403091,Europe/Paris,,ODT, +ODT:SP:21100712,1,"LE PLESSIS BELLEVILLE E G B",49.095133,2.754097,0,0,ODT:SA:CTP21100712,Europe/Paris,,ODT, +ODT:SP:21100719,1,"Hopital",49.195925,2.574983,0,0,OEL:SA:CTP2080025,Europe/Paris,,ODT, +ODT:SP:21100728,1,"Guidon",49.302553,2.688241,0,0,ODT:SA:CTP21002638,Europe/Paris,,ODT, +ODT:SP:21100762,1,"Mognevillette",49.321179,2.466537,0,0,ODT:SA:CTP21100762,Europe/Paris,,ODT, +ODT:SP:21100764,1,"Mognevillette",49.311669,2.47157,0,0,ODT:SA:CTP21002475,Europe/Paris,,ODT, +ODT:SP:21100770,1,"NOGENT SUR OISE Lycée Marie Curie",49.266446,2.460922,0,0,ODT:SA:CTP21002352,Europe/Paris,,ODT, +ODT:SP:21100787,1,"Felix Louat",49.20379,2.607339,0,0,ODT:SA:CTP21100787,Europe/Paris,,ODT, +ODT:SP:21100801,1,"Eglise",49.470758,2.548719,0,0,ODV:SA:CTP22404044,Europe/Paris,,ODT, +ODT:SP:21100802,1,"Centre",49.486389,2.501672,0,0,ODV:SA:CTP22510834,Europe/Paris,,ODT, +ODT:SP:21100803,1,"Centre",49.469165,2.497991,0,0,ODT:SA:CTP21100803,Europe/Paris,,ODT, +ODT:SP:21100804,1,"Centre",49.458429,2.478486,0,0,ODV:SA:CTP22511192,Europe/Paris,,ODT, +ODT:SP:21100805,1,"Centre",49.448185,2.502541,0,0,ODV:SA:CTP22511190,Europe/Paris,,ODT, +ODT:SP:21100806,1,"Château Rouge",49.297517,2.261894,0,0,ODT:SA:CTP21100806,Europe/Paris,,ODT, +ODT:SP:21100809,1,"Coincourt",49.322871,2.305727,0,0,ODT:SA:CTP21100809,Europe/Paris,,ODT, +ODT:SP:21100810,1,"RD 13",49.345191,2.638332,0,0,ODV:SA:CTP22403858,Europe/Paris,,ODT, +ODT:SP:21100811,1,"CHEVRIERES Centre",49.347503,2.680834,0,0,ODT:SA:CTP21100811,Europe/Paris,,ODT, +ODT:SP:21100813,1,"Centre",49.414423,2.649753,0,0,ODV:SA:CTP22510934,Europe/Paris,,ODT, +ODT:SP:21100814,1,"ESTREE ST DENIS Eglise",49.425718,2.645002,0,0,ODV:SA:CTP22403836,Europe/Paris,,ODT, +ODT:SP:21100815,1,"FRANCIERES Centre",49.448667,2.679101,0,0,ODV:SA:CTP22403280,Europe/Paris,,ODT, +ODT:SP:21100816,1,"Square Foirest",49.436963,2.706352,0,0,ODT:SA:CTP21100816,Europe/Paris,,ODT, +ODT:SP:21100823,1,"Centre",49.452341,2.608249,0,0,ODV:SA:CTP22510950,Europe/Paris,,ODT, +ODT:SP:21100824,1,"Centre",49.458043,2.565878,0,0,ODT:SA:CTP21100824,Europe/Paris,,ODT, +ODT:SP:21100825,1,"BAILLEUL LE SOC Mairie",49.416079,2.577821,0,0,ODV:SA:CTP22510935,Europe/Paris,,ODT, +ODT:SP:21100826,1,"EPINEUSE Centre",49.397224,2.554307,0,0,ODV:SA:CTP22403834,Europe/Paris,,ODT, +ODT:SP:21100831,1,"Centre",49.376141,2.413377,0,0,OTC:SA:CTP31000032,Europe/Paris,,ODT, +ODT:SP:21100832,1,"BREUIL LE SEC République",49.375859,2.451872,0,0,OTC:SA:CTP31000003,Europe/Paris,,ODT, +ODT:SP:21100833,1,"Centre",49.483576,2.436782,0,0,ODV:SA:CTP22511183,Europe/Paris,,ODT, +ODT:SP:21100834,1,"La Gloiriette",49.470562,2.392457,0,0,ODV:SA:CTP22511182,Europe/Paris,,ODT, +ODT:SP:21100836,1,"Saint Epin",49.297226,2.346884,0,0,ODT:SA:CTP21100836,Europe/Paris,,ODT, +ODT:SP:21100842,1,"Centre",49.319756,2.32053,0,0,ODT:SA:CTP21100842,Europe/Paris,,ODT, +ODT:SP:21100843,1,"ESTREE ST DENIS Centre",49.429281,2.642599,0,0,ODT:SA:CTP21100843,Europe/Paris,,ODT, +ODT:SP:21100844,1,"Mairie",49.37443,2.485148,0,0,ODT:SA:CTP21010501,Europe/Paris,,ODT, +ODT:SP:21100851,1,"Boulincourt Rue de l'Empire",49.388433,2.36453,0,0,ODT:SA:CTP21100851,Europe/Paris,,ODT, +ODT:SP:21100853,1,"BAILLEUL SUR THERAIN Froidmont",49.383382,2.248641,0,0,ODT:SA:CTP21100853,Europe/Paris,,ODT, +ODT:SP:21100860,1,"ST JUST EN CHAUSSEE Gare",49.503882,2.429594,0,0,SIN:SA:OCE87313270,Europe/Paris,,ODT, +ODT:SP:21100865,1,"R P du 19 Mars",49.310953,2.324229,0,0,ODT:SA:CTP21100865,Europe/Paris,,ODT, +ODT:SP:21100866,1,"LEGLANTIERS Léglantiers",49.495191,2.531693,0,0,ODV:SA:CTP22404038,Europe/Paris,,ODT, +ODT:SP:21100869,1,"ST REMY EN L'EAU Eglise",49.470817,2.430292,0,0,ODT:SA:CTP21100869,Europe/Paris,,ODT, +ODT:SP:21100874,1,"LAGNY LE SEC La Bonne Rencontre",49.093669,2.74608,0,0,ODT:SA:CTP21100874,Europe/Paris,,ODT, +ODT:SP:21100875,1,"BELLE EGLISE Landrimont",49.18313,2.202973,0,0,ODT:SA:CTP21100875,Europe/Paris,,ODT, +ODT:SP:21100876,1,"Courcelles",49.192543,2.185319,0,0,ODT:SA:CTP21100876,Europe/Paris,,ODT, +ODT:SP:21100878,1,"Centre",49.197494,2.209393,0,0,ODT:SA:CTP21100679,Europe/Paris,,ODT, +ODT:SP:21100879,1,"Mesnil Saint Martin",49.182514,2.234595,0,0,ODT:SA:CTP21100879,Europe/Paris,,ODT, +ODT:SP:21100881,1,"LE MESNIL EN THELLE Parc du Thelle",49.178019,2.286286,0,0,ODT:SA:CTP21100881,Europe/Paris,,ODT, +ODT:SP:21100882,1,"LE MESNIL EN THELLE Quatre Chemins",49.165808,2.285667,0,0,ODT:SA:CTP21100882,Europe/Paris,,ODT, +ODT:SP:21100883,1,"PUISEUX LES HAUBERGER Grande Rue",49.215499,2.236628,0,0,ODT:SA:CTP21100883,Europe/Paris,,ODT, +ODT:SP:21100885,1,"FRESNOY EN THELLE Rue de Lamberval",49.202838,2.274922,0,0,ODT:SA:CTP21100885,Europe/Paris,,ODT, +ODT:SP:21100886,1,"RESSONS L'ABBAYE Ecole",49.301633,2.08916,0,0,ODT:SA:CTP21100886,Europe/Paris,,ODT, +ODT:SP:21100887,1,"LE COUDRAY SUR THELLE Centre",49.305946,2.122498,0,0,ODT:SA:CTP21100887,Europe/Paris,,ODT, +ODT:SP:21100888,1,"RD 1001",49.330118,2.199867,0,0,ODT:SA:CTP21100888,Europe/Paris,,ODT, +ODT:SP:21100889,1,"Fercourt",49.310191,2.24536,0,0,ODT:SA:CTP21100889,Europe/Paris,,ODT, +ODT:SP:21100890,1,"Centre",49.301146,2.24745,0,0,ODT:SA:CTP21100890,Europe/Paris,,ODT, +ODT:SP:21100891,1,"ULLY ST GEORGES Centre",49.279649,2.280335,0,0,ODT:SA:CTP21100891,Europe/Paris,,ODT, +ODT:SP:21100892,1,"CIRES LES MELLO Route de Balagny",49.286355,2.345578,0,0,ODT:SA:CTP21100892,Europe/Paris,,ODT, +ODT:SP:21100893,1,"CIRES LES MELLO Chanterac",49.278034,2.35799,0,0,ODT:SA:CTP21100893,Europe/Paris,,ODT, +ODT:SP:21100895,1,"CIRES LES MELLO Maysel",49.269347,2.357396,0,0,ODT:SA:CTP21100895,Europe/Paris,,ODT, +ODT:SP:21100900,1,"Parking Orsol",49.260573,2.164994,0,0,ODT:SA:CTP21100900,Europe/Paris,,ODT, +ODT:SP:21100906,1,"ULLY ST GEORGES Cavillon Place",49.260537,2.260164,0,0,ODT:SA:CTP21002553,Europe/Paris,,ODT, +ODT:SP:21100907,1,"ULLY ST GEORGES Cavillon Bas",49.257769,2.259152,0,0,ODT:SA:CTP21100907,Europe/Paris,,ODT, +ODT:SP:21100908,1,"STE GENEVIEVE Mairie",49.289347,2.1976,0,0,ODT:SA:CTP21100908,Europe/Paris,,ODT, +ODT:SP:21100911,1,"ROSOY EN MULTIEN Place",49.095866,2.99674,0,0,ODT:SA:CTP21100911,Europe/Paris,,ODT, +ODT:SP:21100913,1,"ST MAXIMIN Révolution Française",49.234085,2.468528,0,0,OSP:SA:CTP19000029,Europe/Paris,,ODT, +ODT:SP:21100914,1,"Lycée CASSINI",49.384329,2.407074,0,0,ODT:SA:CTP21000499,Europe/Paris,,ODT, +ODT:SP:21100917,1,"Collège M.PAGNOL départ",49.15904,2.950144,0,0,ODT:SA:CTP21100917,Europe/Paris,,ODT, +ODT:SP:21100918,1,"ORRY LA VILLE Centre village",49.133021,2.512059,0,0,ODT:SA:CTP21100918,Europe/Paris,,ODT, +ODT:SP:21100920,1,"BETHISY ST PIERRE Monument",49.298935,2.808405,0,0,ODT:SA:CTP21100920,Europe/Paris,,ODT, +ODT:SP:21100922,1,"Centre",49.401506,2.679282,0,0,ODT:SA:CTP21100922,Europe/Paris,,ODT, +ODT:SP:21100924,1,"ST VAAST DE LONGMONT Clos Chateleine",49.310296,2.740136,0,0,ODT:SA:CTP21100924,Europe/Paris,,ODT, +ODT:SP:21100925,1,"ST VAAST DE LONGMONT Mairie",49.30346,2.742817,0,0,ODT:SA:CTP21100925,Europe/Paris,,ODT, +ODT:SP:21100927,1,"SAINTINE Joffre Debuire",49.306099,2.769259,0,0,ODT:SA:CTP21010460,Europe/Paris,,ODT, +ODT:SP:21100928,1,"VERNEUIL EN HALATTE RUE DES BOIS Croix des Veneurs",49.293115,2.543305,0,0,ODT:SA:CTP21002513,Europe/Paris,,ODT, +ODT:SP:21100932,1,"ST MAXIMIN Vieux Moulin",49.223497,2.455524,0,0,OSP:SA:CTP19000028,Europe/Paris,,ODT, +ODT:SP:21100933,1,"ST MAXIMIN Vieux Moulin",49.22347,2.455524,0,0,OSP:SA:CTP19000028,Europe/Paris,,ODT, +ODT:SP:21100934,1,"LAGNY LE SEC Epi de Blé",49.08424,2.741847,0,0,ODT:SA:CTP21100934,Europe/Paris,,ODT, +ODT:SP:21100937,1,"Rue du Marais",49.153156,2.433911,0,0,ODT:SA:CTP21100937,Europe/Paris,,ODT, +ODT:SP:21100938,1,"LE MESNIL EN THELLE Centre",49.178019,2.286299,0,0,ODT:SA:CTP21100881,Europe/Paris,,ODT, +ODT:SP:21100942,1,"HLM La Cavée",49.333977,2.461662,0,0,ODT:SA:CTP21100942,Europe/Paris,,ODT, +ODT:SP:21100945,1,"Centre",49.466983,2.381965,0,0,ODT:SA:CTP21100945,Europe/Paris,,ODT, +ODT:SP:21100946,1,"Le Plesseret",49.474571,2.386492,0,0,ODT:SA:CTP21100946,Europe/Paris,,ODT, +ODT:SP:21100947,1,"ESTREE ST DENIS Lycée st joseph",49.426109,2.639509,0,0,ODT:SA:CTP21100947,Europe/Paris,,ODT, +ODT:SP:21100948,1,"Moineaux",49.318904,2.332156,0,0,ODT:SA:CTP21100948,Europe/Paris,,ODT, +ODT:SP:21100950,1,"Rue vert galant",49.44028,2.537945,0,0,ODV:SA:CTP22511189,Europe/Paris,,ODT, +ODT:SP:21100951,1,"Centre",49.307128,2.69679,0,0,ODV:SA:CTP22413708,Europe/Paris,,ODT, +ODT:SP:21100952,1,"VERNEUIL EN HALATTE Rue Crussard",49.272972,2.5092,0,0,ODT:SA:CTP21100952,Europe/Paris,,ODT, +ODT:SP:21100953,1,"Les Hauts de Chantereine",48.972794,2.902739,0,0,ODT:SA:CTP21100953,Europe/Paris,,ODT, +ODT:SP:21100954,1,"Musée de la Grande Guerre",48.972776,2.902848,0,0,ODT:SA:CTP21100954,Europe/Paris,,ODT, +ODT:SP:21100955,1,"LE DELUGE Ecole",49.297235,2.109484,0,0,ODT:SA:CTP21100955,Europe/Paris,,ODT, +ODT:SP:21100956,1,"Magenta",49.258635,2.410408,0,0,OGN:SA:CTP6090073,Europe/Paris,,ODT, +ODT:SP:21100962,1,"Moru",49.307743,2.679867,0,0,ODV:SA:CTP22403100,Europe/Paris,,ODT, +ODT:SP:21100964,1,"LA FERTE MILON Le Maille",49.176158,3.125293,0,0,ODT:SA:CTP21010579,Europe/Paris,,ODT, +ODT:SP:21100965,1,"BETHISY ST PIERRE Rue de Choron",49.298881,2.808363,0,0,ODV:SA:CTP22511286,Europe/Paris,,ODT, +ODT:SP:21100966,1,"BETHISY ST PIERRE Rue de Choron",49.298595,2.808114,0,0,ODV:SA:CTP22511286,Europe/Paris,,ODT, +ODT:SP:21100969,1,"LA NEUVILLE ROY Centre",49.481447,2.577425,0,0,ODV:SA:CTP22510830,Europe/Paris,,ODT, +ODT:SP:21100970,1,"VINEUIL ST FIRMIN Bois Coupé",49.198137,2.49853,0,0,ODT:SA:CTP21002293,Europe/Paris,,ODT, +ODT:SP:21100973,1,"LE PLESSIS BELLEVILLE Pharmacie",49.099238,2.754705,0,0,ODT:SA:CTP21100973,Europe/Paris,,ODT, +ODT:SP:21100975,1,"Lotissement",49.316107,2.525491,0,0,ODT:SA:CTP21100975,Europe/Paris,,ODT, +ODT:SP:21100976,1,"Griffon",49.31305,2.526717,0,0,ODT:SA:CTP21100976,Europe/Paris,,ODT, +ODT:SP:21100977,1,"BOISSY FRESNOY Lotissements",49.162796,2.87727,0,0,ODT:SA:CTP21100977,Europe/Paris,,ODT, +ODT:SP:21100978,1,"Beaulieu",49.202233,2.739771,0,0,ODT:SA:CTP21100978,Europe/Paris,,ODT, +ODT:SP:21100979,1,"Macquelines",49.166757,2.93271,0,0,ODT:SA:CTP21100979,Europe/Paris,,ODT, +ODT:SP:21100980,1,"Macquelines bas",49.165922,2.927151,0,0,ODT:SA:CTP21100980,Europe/Paris,,ODT, +ODT:SP:21100981,1,"Ecole",49.158259,2.953546,0,0,ODT:SA:CTP21100981,Europe/Paris,,ODT, +ODT:SP:21100987,1,"Herminie",49.318608,2.329504,0,0,ODT:SA:CTP21100987,Europe/Paris,,ODT, +ODT:SP:21100988,1,"LE MESNIL EN THELLE Nord",49.18234,2.286199,0,0,ODT:SA:CTP21100988,Europe/Paris,,ODT, +ODT:SP:21100990,1,"LA CHAPELLE ST PIERRE Beauchamps",49.271594,2.232467,0,0,ODT:SA:CTP21100990,Europe/Paris,,ODT, +ODT:SP:21100991,1,"BOISSY FRESNOY Rue des Blassiers",49.161282,2.880337,0,0,ODT:SA:CTP21100991,Europe/Paris,,ODT, +ODT:SP:21100992,1,"SACY LE GRAND La Motte",49.357246,2.539931,0,0,ODT:SA:CTP21100992,Europe/Paris,,ODT, +ODT:SP:21100995,1,"Parvillée",49.257994,2.399421,0,0,ODT:SA:CTP21100995,Europe/Paris,,ODT, +ODT:SP:21100996,1,"PONT STE MAXENCE Bas de cöte",49.293128,2.604841,0,0,ODT:SA:CTP21100996,Europe/Paris,,ODT, +ODT:SP:21100998,1,"LA BOISIERE EN THELLE RD46",49.296089,2.159971,0,0,ODT:SA:CTP21100998,Europe/Paris,,ODT, +ODT:SP:21101000,1,"Puit aux loups",49.104556,2.587755,0,0,ODT:SA:CTP21101000,Europe/Paris,,ODT, +ODT:SP:21101001,1,"LE MESNIL EN THELLE Libération",49.172866,2.286893,0,0,ODT:SA:CTP21101001,Europe/Paris,,ODT, +ODT:SP:21101002,1,"Bois Noir",49.313191,2.335317,0,0,ODT:SA:CTP21101002,Europe/Paris,,ODT, +ODT:SP:21101003,1,"VILLERS ST SEPULCRE Place",49.364929,2.216211,0,0,ODT:SA:CTP21101003,Europe/Paris,,ODT, +ODT:SP:21101004,1,"LE MESNIL EN THELLE Libération",49.17287,2.286757,0,0,ODT:SA:CTP21101001,Europe/Paris,,ODT, +ODT:SP:21101005,1,"BOULLARE Boullare",49.128657,3.004594,0,0,ODT:SA:CTP21100474,Europe/Paris,,ODT, +ODT:SP:21101006,1,"Flandre",49.293614,2.385179,0,0,ODT:SA:CTP21001771,Europe/Paris,,ODT, +ODT:SP:21101007,1,"Monument aux morts",49.302611,2.538081,0,0,ODT:SA:CTP21101007,Europe/Paris,,ODT, +ODT:SP:21101008,1,"CREPY-EN-VALOIS Route de Pierrefonds",49.24764,2.900096,0,0,ODT:SA:CTP21101008,Europe/Paris,,ODT, +ODT:SP:21101010,1,"SACY LE GRAND La Motte",49.356896,2.540164,0,0,ODT:SA:CTP21100992,Europe/Paris,,ODT, +ODT:SP:21101011,1,"VILLERS ST SEPULCRE Fresnoy",49.360685,2.221186,0,0,ODT:SA:CTP21101011,Europe/Paris,,ODT, +ODT:SP:21101012,1,"Base Aérienne",49.24419,2.506648,0,0,ODT:SA:CTP21101012,Europe/Paris,,ODT, +ODT:SP:21101013,1,"Ecole",49.345277,2.408973,0,0,ODT:SA:CTP21101013,Europe/Paris,,ODT, +ODT:SP:21101014,1,"LEVIGNEN Lotissement",49.20061,2.90922,0,0,ODT:SA:CTP21101014,Europe/Paris,,ODT, +ODT:SP:21101015,1,"Uny La folie",49.337577,2.435949,0,0,ODT:SA:CTP21101015,Europe/Paris,,ODT, +ODT:SP:21101016,1,"Route de Mouy",49.320254,2.427854,0,0,ODT:SA:CTP21101016,Europe/Paris,,ODT, +ODT:SP:21101017,1,"BREUIL LE SEC Croix Verte",49.376632,2.446213,0,0,ODT:SA:CTP21101017,Europe/Paris,,ODT, +ODT:SP:21101018,1,"Rue du Bois",49.105157,2.681971,0,0,ODT:SA:CTP21101018,Europe/Paris,,ODT, +ODT:SP:21101021,1,"NOGENT SUR OISE Europe",49.269836,2.482115,0,0,ODT:SA:CTP21002471,Europe/Paris,,ODT, +ODT:SP:21101022,1,"PONT STE MAXENCE Place Palteau",49.30239,2.60107,0,0,ODT:SA:CTP21101022,Europe/Paris,,ODT, +ODT:SP:21101023,1,"Gare",49.188057,2.459569,0,0,OYY:SA:CTP4010011,Europe/Paris,,ODT, +ODT:SP:21101024,1,"Gare",49.1883,2.459559,0,0,OYY:SA:CTP4010011,Europe/Paris,,ODT, +ODT:SP:21101025,1,"Gare",49.188095,2.459768,0,0,OYY:SA:CTP4010011,Europe/Paris,,ODT, +ODT:SP:21101026,1,"Gare",49.188288,2.45976,0,0,OYY:SA:CTP4010011,Europe/Paris,,ODT, +ODT:SP:21101027,1,"Chateau",49.125529,2.693512,0,0,ODT:SA:CTP21101027,Europe/Paris,,ODT, +ODT:SP:21101028,1,"Place Omer Vallon",49.194691,2.465548,0,0,ODT:SA:CTP21101028,Europe/Paris,,ODT, +ODT:SP:21101030,1,"LA CHAPELLE EN SERVAL Glorie",49.127069,2.532058,0,0,ODT:SA:CTP21001017,Europe/Paris,,ODT, +ODT:SP:21101032,1,"BREUIL LE VERT Centre",49.361553,2.437109,0,0,ODT:SA:CTP21002424,Europe/Paris,,ODT, +ODT:SP:21101033,1,"Quai de la Canardière",49.195483,2.464001,0,0,OYY:SA:CTP4015020,Europe/Paris,,ODT, +ODT:SP:21101034,1,"Lefébure",49.201524,2.460698,0,0,OYY:SA:CTP4015013,Europe/Paris,,ODT, +ODT:SP:21101036,1,"Périscolaire",49.288697,2.853403,0,0,ODT:SA:CTP21101036,Europe/Paris,,ODT, +ODT:SP:21101037,1,"Parc du Chauffour",49.18856,2.441201,0,0,ODT:SA:CTP21000856,Europe/Paris,,ODT, +ODT:SP:21101038,1,"Blaise Pascal",49.254835,2.487069,0,0,OGN:SA:CTP6090014,Europe/Paris,,ODT, +ODT:SP:21101040,1,"VINEUIL SAINT FIRMIN Sainte-Barbe",49.198853,2.486865,0,0,ODT:SA:CTP21101040,Europe/Paris,,ODT, +ODT:SP:21101043,1,"VINCY MANOEUVRE Centre D",49.077575,2.962404,0,0,ODT:SA:CTP21101043,Europe/Paris,,ODT, +ODT:SP:21101044,1,"MAY EN MULTIEN Poste D",49.071016,3.019892,0,0,ODT:SA:CTP21101044,Europe/Paris,,ODT, +ODV:SP:22400500,1,"Gare SNCF",49.384724,2.417523,0,0,ODT:SA:CTP21002407,Europe/Paris,,ODV, +ODV:SP:22401218,1,"Centre",49.378615,2.585573,0,0,ODV:SA:CTP22401218,Europe/Paris,,ODV, +ODV:SP:22401220,1,"Centre",49.346948,2.679854,0,0,ODV:SA:CTP22401220,Europe/Paris,,ODV, +ODV:SP:22401221,1,"Poste",49.346948,2.683195,0,0,ODV:SA:CTP22401221,Europe/Paris,,ODV, +ODV:SP:22401223,1,"L'Orméon",49.324444,2.698354,0,0,ODV:SA:CTP22401223,Europe/Paris,,ODV, +ODV:SP:22401224,1,"SEVIGNE",49.41595,2.829955,0,0,ODV:SA:CTP22401224,Europe/Paris,,ODV, +ODV:SP:22401428,1,"Ferme neuve",49.555591,3.088201,0,0,ODV:SA:CTP22401428,Europe/Paris,,ODV, +ODV:SP:22401430,1,"Ecole",49.563337,3.059744,0,0,ODV:SA:CTP22401430,Europe/Paris,,ODV, +ODV:SP:22401432,1,"Grande Rue",49.587507,3.046132,0,0,ODV:SA:CTP22401432,Europe/Paris,,ODV, +ODV:SP:22402391,1,"CFA - Maison du Batiment",49.386594,2.395261,0,0,ODV:SA:CTP22402391,Europe/Paris,,ODV, +ODV:SP:22402396,1,"Gare SNCF",49.421877,2.824404,0,0,ODT:SA:CTP21010445,Europe/Paris,,ODV, +ODV:SP:22403024,1,"Lycée CASSINI",49.384165,2.406682,0,0,ODT:SA:CTP21000499,Europe/Paris,,ODV, +ODV:SP:22403067,1,"Gare",49.206146,2.592111,0,0,ODV:SA:CTP22403067,Europe/Paris,,ODV, +ODV:SP:22403070,1,"Place St Jacques",49.578469,2.995215,0,0,ODV:SA:CTP22403070,Europe/Paris,,ODV, +ODV:SP:22403071,1,"Lycée P. d'Ailly",49.405983,2.83542,0,0,ODV:SA:CTP22403071,Europe/Paris,,ODV, +ODV:SP:22403072,1,"Lycée M. Grenet",49.400236,2.815485,0,0,OLO:SA:CTP13000006,Europe/Paris,,ODV, +ODV:SP:22403073,1,"Royallieu",49.395113,2.803543,0,0,ODV:SA:CTP22403073,Europe/Paris,,ODV, +ODV:SP:22403074,1,"Hôpital",49.387414,2.790783,0,0,OLO:SA:CTP13000023,Europe/Paris,,ODV, +ODV:SP:22403075,1,"Lycée C. de Gaulle",49.383662,2.781924,0,0,OLO:SA:CTP13100001,Europe/Paris,,ODV, +ODV:SP:22403076,1,"Nord",49.357503,2.789745,0,0,ODV:SA:CTP22403076,Europe/Paris,,ODV, +ODV:SP:22403077,1,"Centre",49.355553,2.786135,0,0,ODV:SA:CTP22403077,Europe/Paris,,ODV, +ODV:SP:22403078,1,"Bac",49.352583,2.77366,0,0,ODV:SA:CTP22403078,Europe/Paris,,ODV, +ODV:SP:22403079,1,"Rue de Compiegne",49.324163,2.778074,0,0,ODV:SA:CTP22403079,Europe/Paris,,ODV, +ODV:SP:22403080,1,"Eglise",49.318053,2.783634,0,0,ODV:SA:CTP22403080,Europe/Paris,,ODV, +ODV:SP:22403081,1,"Aristide Briand",49.313334,2.780025,0,0,ODV:SA:CTP22403081,Europe/Paris,,ODV, +ODV:SP:22403082,1,"Clos Cadot",49.304112,2.796266,0,0,ODV:SA:CTP22403082,Europe/Paris,,ODV, +ODV:SP:22403083,1,"Monument",49.298053,2.806964,0,0,ODV:SA:CTP22403083,Europe/Paris,,ODV, +ODV:SP:22403084,1,"Place",49.298613,2.800024,0,0,ODV:SA:CTP22403084,Europe/Paris,,ODV, +ODV:SP:22403085,1,"Château",49.303052,2.806684,0,0,ODV:SA:CTP22403085,Europe/Paris,,ODV, +ODV:SP:22403086,1,"Place",49.294443,2.814745,0,0,ODV:SA:CTP22403086,Europe/Paris,,ODV, +ODV:SP:22403087,1,"Vaucelle",49.296943,2.791405,0,0,ODV:SA:CTP22403087,Europe/Paris,,ODV, +ODV:SP:22403088,1,"Curie",49.306382,2.762794,0,0,ODV:SA:CTP22403088,Europe/Paris,,ODV, +ODV:SP:22403089,1,"Debuire",49.305833,2.769464,0,0,ODV:SA:CTP22403089,Europe/Paris,,ODV, +ODV:SP:22403090,1,"Jaures",49.302774,2.778634,0,0,ODV:SA:CTP22403090,Europe/Paris,,ODV, +ODV:SP:22403091,1,"Rue de Saintines",49.310833,2.739464,0,0,ODV:SA:CTP22403091,Europe/Paris,,ODV, +ODV:SP:22403092,1,"Collège d'Aramont",49.307656,2.720509,0,0,ODV:SA:CTP22403092,Europe/Paris,,ODV, +ODV:SP:22403093,1,"Eglise",49.310554,2.730854,0,0,ODV:SA:CTP22403093,Europe/Paris,,ODV, +ODV:SP:22403095,1,"Saint-Pierre",49.300004,2.650853,0,0,ODV:SA:CTP22403095,Europe/Paris,,ODV, +ODV:SP:22403096,1,"Saint-Gervais",49.300151,2.640101,0,0,ODV:SA:CTP22403096,Europe/Paris,,ODV, +ODV:SP:22403097,1,"Saint-Paterne",49.300124,2.62558,0,0,ODV:SA:CTP22403097,Europe/Paris,,ODV, +ODV:SP:22403098,1,"Philipe le Bel",49.301176,2.617398,0,0,ODV:SA:CTP22403098,Europe/Paris,,ODV, +ODV:SP:22403099,1,"Gare",49.309638,2.602917,0,0,SIN:SA:OCE87276329,Europe/Paris,,ODV, +ODV:SP:22403100,1,"Moru",49.307504,2.679463,0,0,ODV:SA:CTP22403100,Europe/Paris,,ODV, +ODV:SP:22403102,1,"Collège J. Verne",49.356876,2.776923,0,0,OLO:SA:CTP13000059,Europe/Paris,,ODV, +ODV:SP:22403138,1,"Eglise",49.489059,3.008959,0,0,ODV:SA:CTP22403138,Europe/Paris,,ODV, +ODV:SP:22403140,1,"Place Léon Blum",49.469364,3.006606,0,0,ODV:SA:CTP22403140,Europe/Paris,,ODV, +ODV:SP:22403152,1,"Place Bobigny",49.46528,2.888866,0,0,ODV:SA:CTP22403152,Europe/Paris,,ODV, +ODV:SP:22403154,1,"Cours Guynemer",49.419978,2.824596,0,0,ODV:SA:CTP22403154,Europe/Paris,,ODV, +ODV:SP:22403156,1,"Place du chateau",49.417746,2.830664,0,0,ODV:SA:CTP22403156,Europe/Paris,,ODV, +ODV:SP:22403161,1,"Mairie",49.424724,2.818905,0,0,ODV:SA:CTP22403161,Europe/Paris,,ODV, +ODV:SP:22403165,1,"République",49.428883,2.822246,0,0,OLO:SA:CTP13000031,Europe/Paris,,ODV, +ODV:SP:22403166,1,"Stade Roland Dubois",49.430129,2.825608,0,0,OLO:SA:CTP13100129,Europe/Paris,,ODV, +ODV:SP:22403169,1,"Ouinels",49.434618,2.834073,0,0,OLO:SA:CTP13000029,Europe/Paris,,ODV, +ODV:SP:22403170,1,"Port à Carreaux",49.438613,2.850576,0,0,OLO:SA:CTP13000027,Europe/Paris,,ODV, +ODV:SP:22403171,1,"Bac à l'Aumône",49.441662,2.861135,0,0,OLO:SA:CTP13000026,Europe/Paris,,ODV, +ODV:SP:22403172,1,"Voirie Nicole",49.448613,2.864746,0,0,OLO:SA:CTP13000025,Europe/Paris,,ODV, +ODV:SP:22403173,1,"Centre",49.439476,2.878256,0,0,ODV:SA:CTP22403173,Europe/Paris,,ODV, +ODV:SP:22403174,1,"Linières",49.447028,2.880692,0,0,ODV:SA:CTP22403174,Europe/Paris,,ODV, +ODV:SP:22403175,1,"Janville",49.453334,2.861966,0,0,OLO:SA:CTP13000024,Europe/Paris,,ODV, +ODV:SP:22403176,1,"RD 1032",49.466943,2.861406,0,0,ODV:SA:CTP22403176,Europe/Paris,,ODV, +ODV:SP:22403177,1,"Rue des écoles",49.468334,2.863356,0,0,ODV:SA:CTP22403177,Europe/Paris,,ODV, +ODV:SP:22403178,1,"Barrière",49.470553,2.867796,0,0,ODV:SA:CTP22403178,Europe/Paris,,ODV, +ODV:SP:22403179,1,"Ecoles",49.463053,2.889746,0,0,ODV:SA:CTP22403179,Europe/Paris,,ODV, +ODV:SP:22403180,1,"Rue de Longueil",49.475004,2.878906,0,0,ODV:SA:CTP22403180,Europe/Paris,,ODV, +ODV:SP:22403181,1,"Rue Joffre",49.480542,2.890698,0,0,ODV:SA:CTP22403181,Europe/Paris,,ODV, +ODV:SP:22403183,1,"Gare SNCF",49.475276,2.881295,0,0,ODV:SA:CTP22403183,Europe/Paris,,ODV, +ODV:SP:22403184,1,"Saint Gobain",49.482579,2.894994,0,0,ODV:SA:CTP22403184,Europe/Paris,,ODV, +ODV:SP:22403185,1,"Bethancourt",49.499816,2.900919,0,0,ODV:SA:CTP22403185,Europe/Paris,,ODV, +ODV:SP:22403186,1,"église",49.50708,2.897606,0,0,ODV:SA:CTP22403186,Europe/Paris,,ODV, +ODV:SP:22403187,1,"Rue des plantes",49.50806,2.907107,0,0,ODV:SA:CTP22403187,Europe/Paris,,ODV, +ODV:SP:22403188,1,"Gendarmerie",49.505234,2.915875,0,0,ODV:SA:CTP22403188,Europe/Paris,,ODV, +ODV:SP:22403190,1,"Gare",49.506678,2.926068,0,0,ODV:SA:CTP22403190,Europe/Paris,,ODV, +ODV:SP:22403191,1,"Mairie",49.510627,2.922544,0,0,ODV:SA:CTP22403191,Europe/Paris,,ODV, +ODV:SP:22403192,1,"Collège",49.508582,2.923831,0,0,ODV:SA:CTP22403192,Europe/Paris,,ODV, +ODV:SP:22403193,1,"Tierval",49.514996,2.921669,0,0,ODV:SA:CTP22403193,Europe/Paris,,ODV, +ODV:SP:22403197,1,"Place St Jacques",49.578471,2.995241,0,0,ODV:SA:CTP22403070,Europe/Paris,,ODV, +ODV:SP:22403198,1,"Gare SNCF",49.577503,3.007527,0,0,ODV:SA:CTP22403198,Europe/Paris,,ODV, +ODV:SP:22403199,1,"Cité scolaire",49.583863,3.015049,0,0,OUS:SA:CTP-OUS5040004,Europe/Paris,,ODV, +ODV:SP:22403200,1,"Collège Pasteur",49.586525,3.013694,0,0,ODV:SA:CTP22403200,Europe/Paris,,ODV, +ODV:SP:22403203,1,"SEVIGNE Victor Hugo",49.415744,2.830286,0,0,OLO:SA:CTP13000076,Europe/Paris,,ODV, +ODV:SP:22403205,1,"Centre",49.439932,2.843561,0,0,OLO:SA:CTP13000028,Europe/Paris,,ODV, +ODV:SP:22403206,1,"Dreslincourt Place",49.526224,2.927276,0,0,ODV:SA:CTP22403206,Europe/Paris,,ODV, +ODV:SP:22403207,1,"Maison Bleue",49.53281,2.943195,0,0,ODV:SA:CTP22403207,Europe/Paris,,ODV, +ODV:SP:22403208,1,"Centre",49.556113,2.960576,0,0,ODV:SA:CTP22403208,Europe/Paris,,ODV, +ODV:SP:22403209,1,"RD 1032",49.542715,2.954175,0,0,ODV:SA:CTP22403209,Europe/Paris,,ODV, +ODV:SP:22403210,1,"Place",49.514163,2.951687,0,0,ODV:SA:CTP22403210,Europe/Paris,,ODV, +ODV:SP:22403234,1,"R. de l'Armistice",49.351112,2.980296,0,0,ODV:SA:CTP22403234,Europe/Paris,,ODV, +ODV:SP:22403235,1,"Solférino",49.419451,2.823771,0,0,OLO:SA:CTP13000069,Europe/Paris,,ODV, +ODV:SP:22403236,1,"Ferdinand Bac",49.420221,2.829018,0,0,ODV:SA:CTP22403236,Europe/Paris,,ODV, +ODV:SP:22403239,1,"Collège P. Eluard",49.584481,2.998333,0,0,ODV:SA:CTP22403239,Europe/Paris,,ODV, +ODV:SP:22403243,1,"Centre",49.558888,2.994191,0,0,ODV:SA:CTP22403243,Europe/Paris,,ODV, +ODV:SP:22403244,1,"centre",49.530273,2.973635,0,0,ODV:SA:CTP22403244,Europe/Paris,,ODV, +ODV:SP:22403246,1,"Vesigneux",49.478049,3.011682,0,0,ODV:SA:CTP22403246,Europe/Paris,,ODV, +ODV:SP:22403247,1,"Ollencourt-Place Loonen",49.478753,2.999712,0,0,ODV:SA:CTP22403247,Europe/Paris,,ODV, +ODV:SP:22403248,1,"Centre",49.593337,2.961142,0,0,ODV:SA:CTP22403248,Europe/Paris,,ODV, +ODV:SP:22403251,1,"Bas-Beaurains",49.60987,2.981993,0,0,ODV:SA:CTP22403251,Europe/Paris,,ODV, +ODV:SP:22403252,1,"Ecole",49.61528,2.959198,0,0,ODV:SA:CTP22403252,Europe/Paris,,ODV, +ODV:SP:22403253,1,"Béhancourt",49.626157,2.95033,0,0,ODV:SA:CTP22403253,Europe/Paris,,ODV, +ODV:SP:22403254,1,"Sceaucourt",49.609,2.904819,0,0,ODV:SA:CTP22403254,Europe/Paris,,ODV, +ODV:SP:22403255,1,"Candor",49.627531,2.896536,0,0,ODV:SA:CTP22403255,Europe/Paris,,ODV, +ODV:SP:22403256,1,"Avricourt",49.656114,2.86113,0,0,ODV:SA:CTP22403256,Europe/Paris,,ODV, +ODV:SP:22403257,1,"Le pavé",49.662766,2.863993,0,0,ODV:SA:CTP22403257,Europe/Paris,,ODV, +ODV:SP:22403258,1,"Roiglise",49.683445,2.828552,0,0,ODV:SA:CTP22403258,Europe/Paris,,ODV, +ODV:SP:22403260,1,"Collège",49.706126,2.77791,0,0,ODV:SA:CTP22403260,Europe/Paris,,ODV, +ODV:SP:22403261,1,"Place des Tilleuls",49.671722,2.865553,0,0,ODV:SA:CTP22403261,Europe/Paris,,ODV, +ODV:SP:22403265,1,"Ecole",49.612123,2.990646,0,0,ODV:SA:CTP22403265,Europe/Paris,,ODV, +ODV:SP:22403266,1,"Bussy",49.62525,2.983072,0,0,ODV:SA:CTP22403266,Europe/Paris,,ODV, +ODV:SP:22403267,1,"Chevilly",49.637751,2.955655,0,0,ODV:SA:CTP22403267,Europe/Paris,,ODV, +ODV:SP:22403269,1,"Centre",49.638615,2.937527,0,0,ODV:SA:CTP22403269,Europe/Paris,,ODV, +ODV:SP:22403270,1,"Ecuvilly",49.64965,2.9206,0,0,ODV:SA:CTP22403270,Europe/Paris,,ODV, +ODV:SP:22403271,1,"Place",49.659206,2.913054,0,0,ODV:SA:CTP22403271,Europe/Paris,,ODV, +ODV:SP:22403272,1,"centre",49.692491,2.915397,0,0,ODV:SA:CTP22403272,Europe/Paris,,ODV, +ODV:SP:22403273,1,"Solente",49.698895,2.879747,0,0,ODV:SA:CTP22403273,Europe/Paris,,ODV, +ODV:SP:22403274,1,"Grande Rue",49.694472,2.85888,0,0,ODV:SA:CTP22403274,Europe/Paris,,ODV, +ODV:SP:22403275,1,"Bas",49.463615,2.760855,0,0,ODV:SA:CTP22403275,Europe/Paris,,ODV, +ODV:SP:22403276,1,"Place",49.476943,2.772796,0,0,ODV:SA:CTP22403276,Europe/Paris,,ODV, +ODV:SP:22403277,1,"Mairie",49.470005,2.746965,0,0,ODV:SA:CTP22403277,Europe/Paris,,ODV, +ODV:SP:22403278,1,"Place",49.443333,2.734744,0,0,ODV:SA:CTP22403278,Europe/Paris,,ODV, +ODV:SP:22403280,1,"Centre",49.448694,2.67906,0,0,ODV:SA:CTP22403280,Europe/Paris,,ODV, +ODV:SP:22403281,1,"Centre",49.465274,2.690574,0,0,ODV:SA:CTP22403281,Europe/Paris,,ODV, +ODV:SP:22403282,1,"Hemevillers",49.463827,2.673717,0,0,ODV:SA:CTP22403282,Europe/Paris,,ODV, +ODV:SP:22403283,1,"place",49.492206,2.675682,0,0,ODV:SA:CTP22403283,Europe/Paris,,ODV, +ODV:SP:22403285,1,"Place de la mairie",49.501944,2.616404,0,0,ODV:SA:CTP22403285,Europe/Paris,,ODV, +ODV:SP:22403286,1,"Moyenneville",49.491114,2.633904,0,0,ODV:SA:CTP22403286,Europe/Paris,,ODV, +ODV:SP:22403288,1,"Jean RACINE",49.653673,2.580958,0,0,ODV:SA:CTP22403288,Europe/Paris,,ODV, +ODV:SP:22403291,1,"Centre",49.607934,2.483861,0,0,ODV:SA:CTP22403291,Europe/Paris,,ODV, +ODV:SP:22403303,1,"Mairie",49.590557,2.393902,0,0,ODV:SA:CTP22403303,Europe/Paris,,ODV, +ODV:SP:22403308,1,"MONUMENT AUX MORTS",49.648339,2.358901,0,0,ODV:SA:CTP22403308,Europe/Paris,,ODV, +ODV:SP:22403323,1,"Fresnel",49.445834,2.657244,0,0,ODV:SA:CTP22403323,Europe/Paris,,ODV, +ODV:SP:22403324,1,"Sucrerie",49.453095,2.652758,0,0,ODV:SA:CTP22403324,Europe/Paris,,ODV, +ODV:SP:22403327,1,"Vignes Mondaines",49.401942,2.978077,0,0,ODV:SA:CTP22403327,Europe/Paris,,ODV, +ODV:SP:22403330,1,"Mairie",49.386499,3.007493,0,0,ODV:SA:CTP22403330,Europe/Paris,,ODV, +ODV:SP:22403334,1,"La Vache Noire",49.395917,3.113835,0,0,ODV:SA:CTP22403334,Europe/Paris,,ODV, +ODV:SP:22403336,1,"Montois",49.388954,3.127823,0,0,ODV:SA:CTP22403336,Europe/Paris,,ODV, +ODV:SP:22403337,1,"Cheneux",49.388107,3.137308,0,0,ODV:SA:CTP22403337,Europe/Paris,,ODV, +ODV:SP:22403338,1,"Centre",49.387545,3.149465,0,0,ODV:SA:CTP22403338,Europe/Paris,,ODV, +ODV:SP:22403339,1,"Gorgny",49.391411,3.162213,0,0,ODV:SA:CTP22403339,Europe/Paris,,ODV, +ODV:SP:22403340,1,"Pontarcher",49.395144,3.186394,0,0,ODV:SA:CTP22403340,Europe/Paris,,ODV, +ODV:SP:22403341,1,"RN 31",49.386412,3.243986,0,0,ODV:SA:CTP22403341,Europe/Paris,,ODV, +ODV:SP:22403342,1,"RN 31",49.381653,3.289307,0,0,ODV:SA:CTP22403342,Europe/Paris,,ODV, +ODV:SP:22403343,1,"Léonard De Vinci",49.373162,3.306374,0,0,ODV:SA:CTP22403343,Europe/Paris,,ODV, +ODV:SP:22403344,1,"Rue Marcel Paul",49.367539,3.316214,0,0,ODV:SA:CTP22403344,Europe/Paris,,ODV, +ODV:SP:22403345,1,"Arrêt Molière Boulevard Gal de Gaulle",49.373683,3.332786,0,0,ODV:SA:CTP22403345,Europe/Paris,,ODV, +ODV:SP:22403346,1,"Gare SNCF",49.369358,3.337916,0,0,STE:SA:OCE87271817,Europe/Paris,,ODV, +ODV:SP:22403348,1,"Lycee Nerval",49.385705,3.323056,0,0,ODV:SA:CTP22403348,Europe/Paris,,ODV, +ODV:SP:22403349,1,"Saint Christophe",49.382518,3.320298,0,0,ODV:SA:CTP22403349,Europe/Paris,,ODV, +ODV:SP:22403351,1,"Gare SNCF",49.369358,3.337916,0,0,STE:SA:OCE87271817,Europe/Paris,,ODV, +ODV:SP:22403352,1,"La Motte",49.403611,3.006967,0,0,ODV:SA:CTP22403352,Europe/Paris,,ODV, +ODV:SP:22403353,1,"Collège",49.402782,3.014588,0,0,ODV:SA:CTP22403353,Europe/Paris,,ODV, +ODV:SP:22403354,1,"Mairie",49.39956,3.026645,0,0,ODV:SA:CTP22403354,Europe/Paris,,ODV, +ODV:SP:22403649,1,"Huleux",49.259443,2.757524,0,0,ODV:SA:CTP22403649,Europe/Paris,,ODV, +ODV:SP:22403650,1,"Verrines",49.266112,2.785294,0,0,ODV:SA:CTP22403650,Europe/Paris,,ODV, +ODV:SP:22403651,1,"Centre",49.281114,2.777244,0,0,ODV:SA:CTP22403651,Europe/Paris,,ODV, +ODV:SP:22403656,1,"Ecole",49.294722,2.815575,0,0,ODV:SA:CTP22403656,Europe/Paris,,ODV, +ODV:SP:22403657,1,"Le Larris",49.292503,2.787794,0,0,ODV:SA:CTP22403657,Europe/Paris,,ODV, +ODV:SP:22403660,1,"rue de Saintines",49.311232,2.739745,0,0,ODV:SA:CTP22403091,Europe/Paris,,ODV, +ODV:SP:22403662,1,"Guidon",49.29721,2.690691,0,0,ODV:SA:CTP22403662,Europe/Paris,,ODV, +ODV:SP:22403664,1,"Mairie",49.30134,2.604478,0,0,ODV:SA:CTP22403664,Europe/Paris,,ODV, +ODV:SP:22403665,1,"Marie Bray",49.2965,2.604556,0,0,ODV:SA:CTP22403665,Europe/Paris,,ODV, +ODV:SP:22403666,1,"Saint-Pierre",49.300347,2.651216,0,0,ODV:SA:CTP22403095,Europe/Paris,,ODV, +ODV:SP:22403667,1,"Centre",49.302563,2.688076,0,0,ODV:SA:CTP22403667,Europe/Paris,,ODV, +ODV:SP:22403669,1,"Yvillers Centre",49.268333,2.673903,0,0,ODV:SA:CTP22403669,Europe/Paris,,ODV, +ODV:SP:22403670,1,"Noël-St-Martin (D932a)",49.279163,2.705573,0,0,ODV:SA:CTP22403670,Europe/Paris,,ODV, +ODV:SP:22403781,1,"Eglise",49.546117,2.359461,0,0,ODV:SA:CTP22403781,Europe/Paris,,ODV, +ODV:SP:22403800,1,"Le Plésseret",49.474445,2.386402,0,0,ODT:SA:CTP21100946,Europe/Paris,,ODV, +ODV:SP:22403801,1,"Rotibequet",49.496386,2.410572,0,0,ODV:SA:CTP22403801,Europe/Paris,,ODV, +ODV:SP:22403828,1,"Place",49.389725,2.430853,0,0,ODV:SA:CTP22403828,Europe/Paris,,ODV, +ODV:SP:22403830,1,"RN31",49.377505,2.481402,0,0,ODV:SA:CTP22403830,Europe/Paris,,ODV, +ODV:SP:22403831,1,"RN31",49.373054,2.511963,0,0,ODV:SA:CTP22403831,Europe/Paris,,ODV, +ODV:SP:22403832,1,"Eglise",49.354165,2.542793,0,0,ODV:SA:CTP22403832,Europe/Paris,,ODV, +ODV:SP:22403834,1,"Centre",49.397223,2.554464,0,0,ODV:SA:CTP22403834,Europe/Paris,,ODV, +ODV:SP:22403835,1,"Froyères",49.395675,2.600999,0,0,ODV:SA:CTP22403835,Europe/Paris,,ODV, +ODV:SP:22403836,1,"Eglise-Avenue de Picardie",49.425387,2.644587,0,0,ODV:SA:CTP22403836,Europe/Paris,,ODV, +ODV:SP:22403837,1,"Mairie",49.342503,2.604743,0,0,ODV:SA:CTP22403837,Europe/Paris,,ODV, +ODV:SP:22403838,1,"Eglise",49.346753,2.596527,0,0,ODV:SA:CTP22403838,Europe/Paris,,ODV, +ODV:SP:22403840,1,"Croix Blanche",49.378414,2.65226,0,0,ODV:SA:CTP22403840,Europe/Paris,,ODV, +ODV:SP:22403843,1,"Eglise",49.347511,2.680917,0,0,ODV:SA:CTP22403843,Europe/Paris,,ODV, +ODV:SP:22403844,1,"Bailly",49.350284,2.718634,0,0,ODV:SA:CTP22403844,Europe/Paris,,ODV, +ODV:SP:22403847,1,"Centre",49.373893,2.697244,0,0,ODV:SA:CTP22403847,Europe/Paris,,ODV, +ODV:SP:22403848,1,"Canly",49.385833,2.708075,0,0,ODV:SA:CTP22403848,Europe/Paris,,ODV, +ODV:SP:22403849,1,"Jonquières",49.389723,2.728355,0,0,ODV:SA:CTP22403849,Europe/Paris,,ODV, +ODV:SP:22403850,1,"Centre",49.366384,2.744184,0,0,OLO:SA:CTP13000042,Europe/Paris,,ODV, +ODV:SP:22403851,1,"Armancourt",49.371944,2.765575,0,0,OLO:SA:CTP13000044,Europe/Paris,,ODV, +ODV:SP:22403852,1,"Place",49.386112,2.775855,0,0,OLO:SA:CTP13000046,Europe/Paris,,ODV, +ODV:SP:22403853,1,"Rue des Grignons",49.391384,2.777524,0,0,OLO:SA:CTP13000047,Europe/Paris,,ODV, +ODV:SP:22403854,1,"La Croix Rouge",49.395003,2.779745,0,0,ODV:SA:CTP22403854,Europe/Paris,,ODV, +ODV:SP:22403855,1,"Centre Commercial Jaux Venette",49.407562,2.781359,0,0,OLO:SA:CTP13100052,Europe/Paris,,ODV, +ODV:SP:22403856,1,"Centre",49.347503,2.732524,0,0,ODV:SA:CTP22403856,Europe/Paris,,ODV, +ODV:SP:22403857,1,"Place",49.36,2.629506,0,0,ODV:SA:CTP22403857,Europe/Paris,,ODV, +ODV:SP:22403858,1,"RD 13",49.345284,2.638634,0,0,ODV:SA:CTP22403858,Europe/Paris,,ODV, +ODV:SP:22403859,1,"Bois d'Ageux",49.331113,2.724184,0,0,ODV:SA:CTP22403859,Europe/Paris,,ODV, +ODV:SP:22403860,1,"Eglise",49.415834,2.578073,0,0,ODV:SA:CTP22403860,Europe/Paris,,ODV, +ODV:SP:22403862,1,"Moyvillers",49.414009,2.649943,0,0,ODV:SA:CTP22403862,Europe/Paris,,ODV, +ODV:SP:22403863,1,"Gare",49.438296,2.641678,0,0,ODV:SA:CTP22403863,Europe/Paris,,ODV, +ODV:SP:22403864,1,"Cimetière rue de Compiègne",49.430835,2.643634,0,0,ODV:SA:CTP22403864,Europe/Paris,,ODV, +ODV:SP:22403869,1,"Solette",49.422026,2.644952,0,0,ODV:SA:CTP22403869,Europe/Paris,,ODV, +ODV:SP:22403870,1,"Rue de Rémy",49.402223,2.676694,0,0,ODV:SA:CTP22403870,Europe/Paris,,ODV, +ODV:SP:22403871,1,"La Huchette",49.401114,2.682244,0,0,ODV:SA:CTP22403871,Europe/Paris,,ODV, +ODV:SP:22403872,1,"Rue d'en Bas",49.400835,2.688634,0,0,ODV:SA:CTP22403872,Europe/Paris,,ODV, +ODV:SP:22403874,1,"Boucquy",49.404449,2.750489,0,0,ODV:SA:CTP22403874,Europe/Paris,,ODV, +ODV:SP:22403877,1,"Maison Guynemer",49.406344,2.837296,0,0,ODV:SA:CTP22403877,Europe/Paris,,ODV, +ODV:SP:22403878,1,"Four d'en haut",49.329723,2.919745,0,0,ODV:SA:CTP22403878,Europe/Paris,,ODV, +ODV:SP:22403879,1,"Place de L'eglise",49.297501,2.921135,0,0,ODV:SA:CTP22403879,Europe/Paris,,ODV, +ODV:SP:22403880,1,"Bellival - Rue de la vallée",49.288613,2.888075,0,0,ODV:SA:CTP22403880,Europe/Paris,,ODV, +ODV:SP:22403881,1,"R. Sallez",49.292502,2.878905,0,0,ODV:SA:CTP22403881,Europe/Paris,,ODV, +ODV:SP:22403882,1,"Centre",49.286383,2.876965,0,0,ODV:SA:CTP22403882,Europe/Paris,,ODV, +ODV:SP:22403883,1,"G. de Nerval",49.23752,2.892036,0,0,ODV:SA:CTP22403883,Europe/Paris,,ODV, +ODV:SP:22403884,1,"Aragon",49.233393,2.893238,0,0,ODV:SA:CTP22403884,Europe/Paris,,ODV, +ODV:SP:22403885,1,"Rue Saint Lazare",49.231917,2.893647,0,0,ODV:SA:CTP22403885,Europe/Paris,,ODV, +ODV:SP:22403886,1,"Avenue KENNEDY",49.225562,2.88056,0,0,ODV:SA:CTP22403886,Europe/Paris,,ODV, +ODV:SP:22403887,1,"Gare",49.231446,2.886768,0,0,ODV:SA:CTP22403887,Europe/Paris,,ODV, +ODV:SP:22403888,1,"Avenue de Senlis",49.232264,2.87882,0,0,ODV:SA:CTP22403888,Europe/Paris,,ODV, +ODV:SP:22403889,1,"Rue des Moulins",49.235273,2.857524,0,0,ODV:SA:CTP22403889,Europe/Paris,,ODV, +ODV:SP:22403890,1,"Demi-Lune",49.259722,2.853074,0,0,ODV:SA:CTP22403890,Europe/Paris,,ODV, +ODV:SP:22403891,1,"Centre",49.271112,2.851404,0,0,ODV:SA:CTP22403891,Europe/Paris,,ODV, +ODV:SP:22403892,1,"Centre",49.292222,2.857795,0,0,ODV:SA:CTP22403892,Europe/Paris,,ODV, +ODV:SP:22403893,1,"Centre",49.258881,2.930575,0,0,ODV:SA:CTP22403893,Europe/Paris,,ODV, +ODV:SP:22403894,1,"Pondron",49.278332,2.945025,0,0,ODV:SA:CTP22403894,Europe/Paris,,ODV, +ODV:SP:22403896,1,"Les Buts",49.285551,2.983356,0,0,ODV:SA:CTP22403896,Europe/Paris,,ODV, +ODV:SP:22403897,1,"Vattier-Voisin",49.280833,2.930855,0,0,ODV:SA:CTP22403897,Europe/Paris,,ODV, +ODV:SP:22403898,1,"Buy",49.286381,2.957526,0,0,ODV:SA:CTP22403898,Europe/Paris,,ODV, +ODV:SP:22403899,1,"Grimancourt",49.292772,2.960295,0,0,ODV:SA:CTP22403899,Europe/Paris,,ODV, +ODV:SP:22403900,1,"Ferme de May",49.298051,2.951406,0,0,ODV:SA:CTP22403900,Europe/Paris,,ODV, +ODV:SP:22403901,1,"L'Essart l'Ablesse",49.316473,2.954945,0,0,ODV:SA:CTP22403901,Europe/Paris,,ODV, +ODV:SP:22403902,1,"Elincourt Fresnoy",49.287219,2.91555,0,0,ODV:SA:CTP22403902,Europe/Paris,,ODV, +ODV:SP:22403903,1,"Le Voisin",49.28777,2.971405,0,0,ODV:SA:CTP22403903,Europe/Paris,,ODV, +ODV:SP:22403904,1,"Vez",49.266112,3.005296,0,0,ODV:SA:CTP22403904,Europe/Paris,,ODV, +ODV:SP:22403983,1,"Chateau",49.412407,2.837307,0,0,ODV:SA:CTP22403983,Europe/Paris,,ODV, +ODV:SP:22403984,1,"Calvaire",49.419363,2.937062,0,0,ODV:SA:CTP22403984,Europe/Paris,,ODV, +ODV:SP:22403985,1,"Rue du Galant",49.413165,2.992228,0,0,ODV:SA:CTP22403985,Europe/Paris,,ODV, +ODV:SP:22403987,1,"centre",49.411003,3.07986,0,0,ODV:SA:CTP22403987,Europe/Paris,,ODV, +ODV:SP:22403988,1,"Centre",49.4425,3.126967,0,0,ODV:SA:CTP22403988,Europe/Paris,,ODV, +ODV:SP:22403989,1,"mairie",49.406721,3.115055,0,0,ODV:SA:CTP22403989,Europe/Paris,,ODV, +ODV:SP:22403990,1,"mairie",49.409858,3.139416,0,0,ODV:SA:CTP22403990,Europe/Paris,,ODV, +ODV:SP:22403991,1,"ecole",49.407386,3.196855,0,0,ODV:SA:CTP22403991,Europe/Paris,,ODV, +ODV:SP:22403992,1,"centre",49.402335,3.229299,0,0,ODV:SA:CTP22403992,Europe/Paris,,ODV, +ODV:SP:22403993,1,"église",49.393055,3.271942,0,0,ODV:SA:CTP22403993,Europe/Paris,,ODV, +ODV:SP:22403994,1,"maison blanche",49.381782,3.285552,0,0,ODV:SA:CTP22403994,Europe/Paris,,ODV, +ODV:SP:22404030,1,"Rue de Noyon",49.436973,2.705911,0,0,ODV:SA:CTP22404030,Europe/Paris,,ODV, +ODV:SP:22404032,1,"Rouvillers",49.451944,2.608354,0,0,ODV:SA:CTP22404032,Europe/Paris,,ODV, +ODV:SP:22404033,1,"Centre",49.455835,2.600304,0,0,ODV:SA:CTP22404033,Europe/Paris,,ODV, +ODV:SP:22404034,1,"église",49.471385,2.548073,0,0,ODV:SA:CTP22404034,Europe/Paris,,ODV, +ODV:SP:22404037,1,"Centre",49.499725,2.577794,0,0,ODV:SA:CTP22404037,Europe/Paris,,ODV, +ODV:SP:22404038,1,"Léglantiers",49.495005,2.531683,0,0,ODV:SA:CTP22404038,Europe/Paris,,ODV, +ODV:SP:22404039,1,"Angivillers",49.486384,2.501403,0,0,ODV:SA:CTP22404039,Europe/Paris,,ODV, +ODV:SP:22404040,1,"Mairie",49.514841,2.503736,0,0,ODV:SA:CTP22404040,Europe/Paris,,ODV, +ODV:SP:22404041,1,"Centre Jean Jaures",49.516856,2.501576,0,0,ODV:SA:CTP22404041,Europe/Paris,,ODV, +ODV:SP:22404043,1,"Mairie",49.509575,2.452185,0,0,ODV:SA:CTP22404043,Europe/Paris,,ODV, +ODV:SP:22404044,1,"Eglise",49.470556,2.548633,0,0,ODV:SA:CTP22404044,Europe/Paris,,ODV, +ODV:SP:22404045,1,"Mairie",49.458335,2.565854,0,0,ODV:SA:CTP22404045,Europe/Paris,,ODV, +ODV:SP:22404047,1,"Lycée C. de Gaulle",49.383665,2.781975,0,0,OLO:SA:CTP13100001,Europe/Paris,,ODV, +ODV:SP:22404048,1,"centre",49.44833,2.826408,0,0,ODV:SA:CTP22404048,Europe/Paris,,ODV, +ODV:SP:22404049,1,"Salle des Fêtes",49.462499,2.811963,0,0,ODV:SA:CTP22404049,Europe/Paris,,ODV, +ODV:SP:22404050,1,"bas",49.46611,2.814298,0,0,ODV:SA:CTP22404050,Europe/Paris,,ODV, +ODV:SP:22404051,1,"Gare",49.47722,2.791407,0,0,ODV:SA:CTP22404051,Europe/Paris,,ODV, +ODV:SP:22404052,1,"Rue de la Nacelle",49.47916,2.800854,0,0,ODV:SA:CTP22404052,Europe/Paris,,ODV, +ODV:SP:22404053,1,"Centre",49.486381,2.808075,0,0,ODV:SA:CTP22404053,Europe/Paris,,ODV, +ODV:SP:22404054,1,"Rimberlieu",49.49138,2.818353,0,0,ODV:SA:CTP22404054,Europe/Paris,,ODV, +ODV:SP:22404055,1,"Centre",49.495005,2.75669,0,0,ODV:SA:CTP22404055,Europe/Paris,,ODV, +ODV:SP:22404056,1,"Gare",49.495837,2.767798,0,0,ODV:SA:CTP22404056,Europe/Paris,,ODV, +ODV:SP:22404059,1,"centre",49.521383,2.777795,0,0,ODV:SA:CTP22404059,Europe/Paris,,ODV, +ODV:SP:22404060,1,"Ecole",49.517035,2.762886,0,0,ODV:SA:CTP22404060,Europe/Paris,,ODV, +ODV:SP:22404061,1,"Ecole",49.539726,2.746691,0,0,ODV:SA:CTP22404061,Europe/Paris,,ODV, +ODV:SP:22404062,1,"Centre",49.551946,2.753071,0,0,ODV:SA:CTP22404062,Europe/Paris,,ODV, +ODV:SP:22404064,1,"Le Haut Matz",49.561206,2.755728,0,0,ODV:SA:CTP22404064,Europe/Paris,,ODV, +ODV:SP:22404065,1,"Centre",49.578619,2.761686,0,0,ODV:SA:CTP22404065,Europe/Paris,,ODV, +ODV:SP:22404066,1,"église",49.553646,2.693277,0,0,ODV:SA:CTP22404066,Europe/Paris,,ODV, +ODV:SP:22404067,1,"RD 935",49.570005,2.670024,0,0,ODV:SA:CTP22404067,Europe/Paris,,ODV, +ODV:SP:22404068,1,"Orvillers-Sorel",49.576669,2.70725,0,0,ODV:SA:CTP22404068,Europe/Paris,,ODV, +ODV:SP:22404069,1,"Centre",49.580836,2.733069,0,0,ODV:SA:CTP22404069,Europe/Paris,,ODV, +ODV:SP:22404070,1,"Place du Marché",49.601797,2.725051,0,0,ODV:SA:CTP22404070,Europe/Paris,,ODV, +ODV:SP:22404071,1,"Monument aux Morts",49.606753,2.731169,0,0,ODV:SA:CTP22404071,Europe/Paris,,ODV, +ODV:SP:22404072,1,"Rue de la Gare",49.609454,2.70634,0,0,ODV:SA:CTP22404072,Europe/Paris,,ODV, +ODV:SP:22404073,1,"Hainvillers",49.592776,2.681972,0,0,ODV:SA:CTP22404073,Europe/Paris,,ODV, +ODV:SP:22404074,1,"Mairie",49.539665,2.679516,0,0,ODV:SA:CTP22404074,Europe/Paris,,ODV, +ODV:SP:22404075,1,"Belloy",49.536237,2.655396,0,0,ODV:SA:CTP22404075,Europe/Paris,,ODV, +ODV:SP:22404076,1,"Centre",49.547416,2.628506,0,0,ODV:SA:CTP22404076,Europe/Paris,,ODV, +ODV:SP:22404078,1,"Centre",49.536942,2.575574,0,0,ODV:SA:CTP22404078,Europe/Paris,,ODV, +ODV:SP:22404079,1,"centre",49.60276,2.801105,0,0,ODV:SA:CTP22404079,Europe/Paris,,ODV, +ODV:SP:22404080,1,"centre",49.619724,2.810853,0,0,ODV:SA:CTP22404080,Europe/Paris,,ODV, +ODV:SP:22404081,1,"Centre",49.640717,2.798131,0,0,ODV:SA:CTP22404081,Europe/Paris,,ODV, +ODV:SP:22404082,1,"Ecoles",49.646477,2.770355,0,0,ODV:SA:CTP22404082,Europe/Paris,,ODV, +ODV:SP:22404083,1,"Verger",49.647262,2.751454,0,0,ODV:SA:CTP22404083,Europe/Paris,,ODV, +ODV:SP:22404084,1,"centre",49.673595,2.758823,0,0,ODV:SA:CTP22404084,Europe/Paris,,ODV, +ODV:SP:22404086,1,"Place",49.500551,2.775851,0,0,ODV:SA:CTP22404086,Europe/Paris,,ODV, +ODV:SP:22404087,1,"centre",49.591221,2.773949,0,0,ODV:SA:CTP22404087,Europe/Paris,,ODV, +ODV:SP:22404089,1,"Pont du Matz",49.48879,2.884362,0,0,ODV:SA:CTP22404089,Europe/Paris,,ODV, +ODV:SP:22404090,1,"Bas du Cavan",49.494721,2.873903,0,0,ODV:SA:CTP22404090,Europe/Paris,,ODV, +ODV:SP:22404091,1,"Centre",49.494178,2.85837,0,0,ODV:SA:CTP22404091,Europe/Paris,,ODV, +ODV:SP:22404092,1,"Place",49.503057,2.844751,0,0,ODV:SA:CTP22404092,Europe/Paris,,ODV, +ODV:SP:22404093,1,"Place",49.507834,2.821073,0,0,ODV:SA:CTP22404093,Europe/Paris,,ODV, +ODV:SP:22404094,1,"Place",49.525528,2.816618,0,0,ODV:SA:CTP22404094,Europe/Paris,,ODV, +ODV:SP:22404095,1,"Centre",49.544724,2.790861,0,0,ODV:SA:CTP22404095,Europe/Paris,,ODV, +ODV:SP:22404098,1,"Rue Godet",49.577065,2.834726,0,0,ODV:SA:CTP22404098,Europe/Paris,,ODV, +ODV:SP:22404103,1,"Dives le Franc",49.560006,2.946969,0,0,ODV:SA:CTP22404103,Europe/Paris,,ODV, +ODV:SP:22404104,1,"Eglise",49.555837,2.941963,0,0,ODV:SA:CTP22404104,Europe/Paris,,ODV, +ODV:SP:22404105,1,"La Bernardie",49.554004,2.934969,0,0,ODV:SA:CTP22404105,Europe/Paris,,ODV, +ODV:SP:22404106,1,"centre",49.557068,2.904905,0,0,ODV:SA:CTP22404106,Europe/Paris,,ODV, +ODV:SP:22404107,1,"Eglise",49.567343,2.902879,0,0,ODV:SA:CTP22404107,Europe/Paris,,ODV, +ODV:SP:22404108,1,"Centre",49.565277,2.883357,0,0,ODV:SA:CTP22404108,Europe/Paris,,ODV, +ODV:SP:22404109,1,"Rue Mélique",49.564441,2.87168,0,0,ODV:SA:CTP22404109,Europe/Paris,,ODV, +ODV:SP:22404111,1,"Les Bocages",49.560006,2.850301,0,0,ODV:SA:CTP22404111,Europe/Paris,,ODV, +ODV:SP:22404113,1,"Ferme de St Claude",49.549166,2.815031,0,0,ODV:SA:CTP22404113,Europe/Paris,,ODV, +ODV:SP:22404114,1,"Bourmont",49.537776,2.765032,0,0,ODV:SA:CTP22404114,Europe/Paris,,ODV, +ODV:SP:22404115,1,"Centre",49.572776,2.963363,0,0,ODV:SA:CTP22404115,Europe/Paris,,ODV, +ODV:SP:22404116,1,"Lotissement",49.572403,2.957144,0,0,ODV:SA:CTP22404116,Europe/Paris,,ODV, +ODV:SP:22404117,1,"Rue de Noyon",49.576597,2.950206,0,0,ODV:SA:CTP22404117,Europe/Paris,,ODV, +ODV:SP:22404118,1,"Grande rue",49.585894,2.917258,0,0,ODV:SA:CTP22404118,Europe/Paris,,ODV, +ODV:SP:22404119,1,"Dives",49.588613,2.886964,0,0,ODV:SA:CTP22404119,Europe/Paris,,ODV, +ODV:SP:22404124,1,"Plessis-Cacheleux",49.598057,2.884192,0,0,ODV:SA:CTP22404124,Europe/Paris,,ODV, +ODV:SP:22404126,1,"Centre",49.587227,2.84252,0,0,ODV:SA:CTP22404126,Europe/Paris,,ODV, +ODV:SP:22404127,1,"Centre",49.655009,2.824751,0,0,ODV:SA:CTP22404127,Europe/Paris,,ODV, +ODV:SP:22404128,1,"Eglise",49.667843,2.822397,0,0,ODV:SA:CTP22404128,Europe/Paris,,ODV, +ODV:SP:22404131,1,"Muirancourt",49.644724,3.010593,0,0,ODV:SA:CTP22404131,Europe/Paris,,ODV, +ODV:SP:22404132,1,"Quesmy",49.633614,3.058913,0,0,ODV:SA:CTP22404132,Europe/Paris,,ODV, +ODV:SP:22404133,1,"Centre",49.63556,3.072811,0,0,ODV:SA:CTP22404133,Europe/Paris,,ODV, +ODV:SP:22404134,1,"Grande Rue",49.636707,3.097913,0,0,ODV:SA:CTP22404134,Europe/Paris,,ODV, +ODV:SP:22404135,1,"Buchoire",49.650485,3.070079,0,0,ODV:SA:CTP22404135,Europe/Paris,,ODV, +ODV:SP:22404136,1,"Rue de l'épée",49.653063,3.051967,0,0,ODV:SA:CTP22404136,Europe/Paris,,ODV, +ODV:SP:22404137,1,"Tirlancourt",49.664685,3.031971,0,0,ODV:SA:CTP22404137,Europe/Paris,,ODV, +ODV:SP:22404138,1,"Rouvrel",49.678065,3.035308,0,0,ODV:SA:CTP22404138,Europe/Paris,,ODV, +ODV:SP:22404139,1,"Beines",49.66944,3.094194,0,0,ODV:SA:CTP22404139,Europe/Paris,,ODV, +ODV:SP:22404140,1,"Mairie",49.690835,3.110861,0,0,ODV:SA:CTP22404140,Europe/Paris,,ODV, +ODV:SP:22404141,1,"Berlancourt",49.671117,3.065311,0,0,ODV:SA:CTP22404141,Europe/Paris,,ODV, +ODV:SP:22404142,1,"Brouchy",49.719711,3.100453,0,0,ODV:SA:CTP22404142,Europe/Paris,,ODV, +ODV:SP:22404143,1,"Plessis-Patte-d'Oie",49.681392,3.063631,0,0,ODV:SA:CTP22404143,Europe/Paris,,ODV, +ODV:SP:22404144,1,"Flavy-le-Meldeux",49.684725,3.043635,0,0,ODV:SA:CTP22404144,Europe/Paris,,ODV, +ODV:SP:22404146,1,"Golancourt",49.70746,3.064085,0,0,ODV:SA:CTP22404146,Europe/Paris,,ODV, +ODV:SP:22404147,1,"Rue De Paris",49.735742,3.068133,0,0,ODV:SA:CTP22404147,Europe/Paris,,ODV, +ODV:SP:22404148,1,"Place De La Gare",49.739955,3.069496,0,0,ODV:SA:CTP22404148,Europe/Paris,,ODV, +ODV:SP:22404149,1,"Rezavoine",49.655332,2.990591,0,0,ODV:SA:CTP22404149,Europe/Paris,,ODV, +ODV:SP:22404150,1,"église",49.67027,3.003333,0,0,ODV:SA:CTP22404150,Europe/Paris,,ODV, +ODV:SP:22404151,1,"Libermont",49.692784,2.973351,0,0,ODV:SA:CTP22404151,Europe/Paris,,ODV, +ODV:SP:22404152,1,"Ercheu",49.70103,2.939642,0,0,ODV:SA:CTP22404152,Europe/Paris,,ODV, +ODV:SP:22404153,1,"Cressy-Omencourt",49.722156,2.912977,0,0,ODV:SA:CTP22404153,Europe/Paris,,ODV, +ODV:SP:22404154,1,"Collège",49.761385,2.912201,0,0,ODV:SA:CTP22404154,Europe/Paris,,ODV, +ODV:SP:22404155,1,"Rue du Château",49.591943,3.040031,0,0,ODV:SA:CTP22404155,Europe/Paris,,ODV, +ODV:SP:22404157,1,"Ecoles",49.586943,3.053363,0,0,ODV:SA:CTP22404157,Europe/Paris,,ODV, +ODV:SP:22404158,1,"La Rosière",49.583051,3.055298,0,0,ODV:SA:CTP22404158,Europe/Paris,,ODV, +ODV:SP:22404159,1,"Behericourt",49.596384,3.063638,0,0,ODV:SA:CTP22404159,Europe/Paris,,ODV, +ODV:SP:22404160,1,"Baboeuf",49.584601,3.086997,0,0,ODV:SA:CTP22404160,Europe/Paris,,ODV, +ODV:SP:22404161,1,"Grandru",49.604999,3.086965,0,0,ODV:SA:CTP22404161,Europe/Paris,,ODV, +ODV:SP:22404162,1,"Mondescourt",49.595551,3.111131,0,0,ODV:SA:CTP22404162,Europe/Paris,,ODV, +ODV:SP:22404163,1,"Centre",49.582502,3.117799,0,0,ODV:SA:CTP22404163,Europe/Paris,,ODV, +ODV:SP:22404164,1,"Ecole",49.567222,3.112525,0,0,ODV:SA:CTP22404164,Europe/Paris,,ODV, +ODV:SP:22404165,1,"Rue Millon",49.561667,3.10196,0,0,ODV:SA:CTP22404165,Europe/Paris,,ODV, +ODV:SP:22404166,1,"Eglise",49.569725,3.033359,0,0,ODV:SA:CTP22404166,Europe/Paris,,ODV, +ODV:SP:22404167,1,"centre",49.553333,3.047246,0,0,ODV:SA:CTP22404167,Europe/Paris,,ODV, +ODV:SP:22404168,1,"Place de la Mairie",49.531113,3.101407,0,0,ODV:SA:CTP22404168,Europe/Paris,,ODV, +ODV:SP:22404169,1,"La pommeraye",49.530274,3.086132,0,0,ODV:SA:CTP22404169,Europe/Paris,,ODV, +ODV:SP:22404170,1,"Rue d'Hesdin",49.524444,3.071682,0,0,ODV:SA:CTP22404170,Europe/Paris,,ODV, +ODV:SP:22404172,1,"Laigle",49.520637,3.050366,0,0,ODV:SA:CTP22404172,Europe/Paris,,ODV, +ODV:SP:22404173,1,"Les Cloyes",49.525007,3.000862,0,0,ODV:SA:CTP22404173,Europe/Paris,,ODV, +ODV:SP:22404175,1,"Maupas",49.513887,3.035855,0,0,ODV:SA:CTP22404175,Europe/Paris,,ODV, +ODV:SP:22404177,1,"Les Loges Ferme",49.48822,3.072776,0,0,ODV:SA:CTP22404177,Europe/Paris,,ODV, +ODV:SP:22404178,1,"Bas",49.485214,3.09792,0,0,ODV:SA:CTP22404178,Europe/Paris,,ODV, +ODV:SP:22413573,1,"Huleu",49.51805,3.016142,0,0,ODV:SA:CTP22413573,Europe/Paris,,ODV, +ODV:SP:22413574,1,"Ecole",49.513336,3.026964,0,0,ODV:SA:CTP22413574,Europe/Paris,,ODV, +ODV:SP:22413576,1,"centre",49.588104,2.963993,0,0,ODV:SA:CTP22413576,Europe/Paris,,ODV, +ODV:SP:22413577,1,"Centre - GRANDE RUE",49.6106,2.969701,0,0,ODV:SA:CTP22413577,Europe/Paris,,ODV, +ODV:SP:22413578,1,"Cantine",49.645001,3.0092,0,0,ODV:SA:CTP22413578,Europe/Paris,,ODV, +ODV:SP:22413579,1,"Rimbercourt",49.637882,3.02772,0,0,ODV:SA:CTP22413579,Europe/Paris,,ODV, +ODV:SP:22413580,1,"Centre",49.621724,3.013649,0,0,ODV:SA:CTP22413580,Europe/Paris,,ODV, +ODV:SP:22413582,1,"Ecole",49.633896,3.05835,0,0,ODV:SA:CTP22413582,Europe/Paris,,ODV, +ODV:SP:22413583,1,"Fretoy-le-Château",49.661119,2.980026,0,0,ODV:SA:CTP22413583,Europe/Paris,,ODV, +ODV:SP:22413584,1,"Rue de l'Eglise",49.514356,2.793034,0,0,ODV:SA:CTP22413584,Europe/Paris,,ODV, +ODV:SP:22413585,1,"Jeu d'arc",49.512848,2.792841,0,0,ODV:SA:CTP22511107,Europe/Paris,,ODV, +ODV:SP:22413586,1,"Centre",49.539723,2.744745,0,0,ODV:SA:CTP22511092,Europe/Paris,,ODV, +ODV:SP:22413587,1,"Petit Mélicocq",49.497503,2.868361,0,0,ODV:SA:CTP22413587,Europe/Paris,,ODV, +ODV:SP:22413588,1,"Centre",49.525278,2.816409,0,0,ODV:SA:CTP22511088,Europe/Paris,,ODV, +ODV:SP:22413589,1,"Gury",49.569445,2.799463,0,0,ODV:SA:CTP22413589,Europe/Paris,,ODV, +ODV:SP:22413590,1,"Fontaine Ferrée",49.588051,2.851411,0,0,ODV:SA:CTP22413590,Europe/Paris,,ODV, +ODV:SP:22413591,1,"Pont-l'Evêque",49.563612,2.989184,0,0,ODV:SA:CTP22413591,Europe/Paris,,ODV, +ODV:SP:22413592,1,"Le Guidon",49.570552,2.988071,0,0,ODV:SA:CTP22413592,Europe/Paris,,ODV, +ODV:SP:22413593,1,"centre",49.478808,2.999616,0,0,ODV:SA:CTP22413593,Europe/Paris,,ODV, +ODV:SP:22413594,1,"Mairie",49.488668,2.959646,0,0,ODV:SA:CTP22413594,Europe/Paris,,ODV, +ODV:SP:22413654,1,"La Hutte",49.499248,2.863759,0,0,ODV:SA:CTP22413654,Europe/Paris,,ODV, +ODV:SP:22413701,1,"Centre Commercial Jaux-Venette",49.407562,2.781359,0,0,OLO:SA:CTP13100052,Europe/Paris,,ODV, +ODV:SP:22413702,1,"Mairie",49.342774,2.621684,0,0,ODV:SA:CTP22413702,Europe/Paris,,ODV, +ODV:SP:22413703,1,"mairie",49.375274,2.451133,0,0,ODV:SA:CTP22413703,Europe/Paris,,ODV, +ODV:SP:22413704,1,"Voltaire",49.390555,2.416132,0,0,ODV:SA:CTP22413704,Europe/Paris,,ODV, +ODV:SP:22413705,1,"Eglise",49.357994,2.717295,0,0,ODV:SA:CTP22413705,Europe/Paris,,ODV, +ODV:SP:22413706,1,"Place D'Avrigny",49.352503,2.548903,0,0,ODV:SA:CTP22413706,Europe/Paris,,ODV, +ODV:SP:22413707,1,"St Jacques",49.417074,2.826792,0,0,ODV:SA:CTP22413707,Europe/Paris,,ODV, +ODV:SP:22413708,1,"Centre",49.306943,2.696964,0,0,ODV:SA:CTP22413708,Europe/Paris,,ODV, +ODV:SP:22413709,1,"Eglise",49.274725,2.689184,0,0,ODV:SA:CTP22413709,Europe/Paris,,ODV, +ODV:SP:22413711,1,"Ecole",49.380555,2.581684,0,0,ODV:SA:CTP22413711,Europe/Paris,,ODV, +ODV:SP:22413712,1,"Centre",49.383055,2.617524,0,0,ODV:SA:CTP22413712,Europe/Paris,,ODV, +ODV:SP:22413714,1,"J. Monod",49.414097,2.829393,0,0,OLO:SA:CTP13100029,Europe/Paris,,ODV, +ODV:SP:22413718,1,"Centre",49.485836,2.345012,0,0,ODT:SA:CTP21010471,Europe/Paris,,ODV, +ODV:SP:22413757,1,"Rue Charles Caille cimetière",49.477598,2.905693,0,0,ODV:SA:CTP22413757,Europe/Paris,,ODV, +ODV:SP:22413758,1,"Collège F. Bac",49.41937,2.830031,0,0,OLO:SA:CTP13000011,Europe/Paris,,ODV, +ODV:SP:22413759,1,"Maison d'arrêt",49.414334,2.832004,0,0,ODV:SA:CTP22413759,Europe/Paris,,ODV, +ODV:SP:22413761,1,"Vertefeuille",49.344721,2.968356,0,0,ODV:SA:CTP22510905,Europe/Paris,,ODV, +ODV:SP:22413762,1,"Centre",49.479724,2.900576,0,0,ODV:SA:CTP22511164,Europe/Paris,,ODV, +ODV:SP:22413765,1,"Centre",49.470836,2.494743,0,0,ODV:SA:CTP22510827,Europe/Paris,,ODV, +ODV:SP:22413767,1,"Mairie",49.347222,2.977526,0,0,ODV:SA:CTP22510897,Europe/Paris,,ODV, +ODV:SP:22413768,1,"Centre",49.284721,2.992246,0,0,ODV:SA:CTP22413768,Europe/Paris,,ODV, +ODV:SP:22413769,1,"Ecole",49.284442,2.917525,0,0,ODV:SA:CTP22413769,Europe/Paris,,ODV, +ODV:SP:22413770,1,"Rue du Chêne",49.297222,2.922229,0,0,ODV:SA:CTP22413770,Europe/Paris,,ODV, +ODV:SP:22510025,1,"Ansauvillers",49.564867,2.386856,0,0,ODV:SA:CTP22510025,Europe/Paris,,ODV, +ODV:SP:22510046,1,"Centre",49.617499,2.38694,0,0,ODV:SA:CTP22510046,Europe/Paris,,ODV, +ODV:SP:22510060,1,"Rue P. Drumont",49.497513,2.972248,0,0,ODV:SA:CTP22510060,Europe/Paris,,ODV, +ODV:SP:22510072,1,"Centre",49.53629,2.655738,0,0,ODV:SA:CTP22510072,Europe/Paris,,ODV, +ODV:SP:22510092,1,"Scolaire BONNEUIL LES EAUX",49.678621,2.232794,0,0,ODV:SA:CTP22510092,Europe/Paris,,ODV, +ODV:SP:22510130,1,"Centre",49.627771,2.45527,0,0,ODV:SA:CTP22510130,Europe/Paris,,ODV, +ODV:SP:22510217,1,"Mairie",49.658058,2.26779,0,0,ODV:SA:CTP22510217,Europe/Paris,,ODV, +ODV:SP:22510272,1,"Centre",49.661114,2.980027,0,0,ODV:SA:CTP22510272,Europe/Paris,,ODV, +ODV:SP:22510300,1,"Ecole",49.45694,2.60417,0,0,ODV:SA:CTP22510300,Europe/Paris,,ODV, +ODV:SP:22510334,1,"Centre",49.365269,3.06194,0,0,ODV:SA:CTP22510334,Europe/Paris,,ODV, +ODV:SP:22510367,1,"Mairie",49.591116,2.414742,0,0,ODV:SA:CTP22510367,Europe/Paris,,ODV, +ODV:SP:22510426,1,"Centre",49.373889,2.69722,0,0,ODV:SA:CTP22403847,Europe/Paris,,ODV, +ODV:SP:22510479,1,"Rue d'en bas",49.627778,2.408902,0,0,ODV:SA:CTP22510479,Europe/Paris,,ODV, +ODV:SP:22510532,1,"carrefour",49.595001,2.40694,0,0,ODV:SA:CTP22510532,Europe/Paris,,ODV, +ODV:SP:22510570,1,"Centre",49.66638,2.324721,0,0,ODV:SA:CTP22510570,Europe/Paris,,ODV, +ODV:SP:22510575,1,"Centre",49.61305,2.45222,0,0,ODV:SA:CTP22510575,Europe/Paris,,ODV, +ODV:SP:22510612,1,"Carrefour",49.648049,2.41861,0,0,ODV:SA:CTP22510612,Europe/Paris,,ODV, +ODV:SP:22510632,1,"Centre",49.591526,2.7742,0,0,ODV:SA:CTP22510632,Europe/Paris,,ODV, +ODV:SP:22510657,1,"Mairie",49.639167,2.430852,0,0,ODV:SA:CTP22510657,Europe/Paris,,ODV, +ODV:SP:22510715,1,"Saint-Maur",49.52333,2.69333,0,0,ODV:SA:CTP22510715,Europe/Paris,,ODV, +ODV:SP:22510817,1,"Eglise",49.546534,2.359534,0,0,ODV:SA:CTP22403781,Europe/Paris,,ODV, +ODV:SP:22510820,1,"Eglise",49.63222,2.29444,0,0,ODV:SA:CTP22510820,Europe/Paris,,ODV, +ODV:SP:22510824,1,"Perennes",49.624053,2.499709,0,0,ODV:SA:CTP22510824,Europe/Paris,,ODV, +ODV:SP:22510827,1,"Centre",49.470829,2.49472,0,0,ODV:SA:CTP22510827,Europe/Paris,,ODV, +ODV:SP:22510828,1,"Eglise",49.470433,2.549228,0,0,ODV:SA:CTP22404044,Europe/Paris,,ODV, +ODV:SP:22510829,1,"Eglise",49.458611,2.566111,0,0,ODV:SA:CTP22510829,Europe/Paris,,ODV, +ODV:SP:22510830,1,"Centre",49.481231,2.577824,0,0,ODV:SA:CTP22510830,Europe/Paris,,ODV, +ODV:SP:22510831,1,"Sucrerie",49.49027,2.567015,0,0,ODV:SA:CTP22510831,Europe/Paris,,ODV, +ODV:SP:22510832,1,"Centre",49.499721,2.57777,0,0,ODV:SA:CTP22404037,Europe/Paris,,ODV, +ODV:SP:22510833,1,"Mairie",49.495335,2.531569,0,0,ODV:SA:CTP22510833,Europe/Paris,,ODV, +ODV:SP:22510834,1,"Centre",49.48638,2.50138,0,0,ODV:SA:CTP22510834,Europe/Paris,,ODV, +ODV:SP:22510837,1,"Rue du 8 Mai 1945",49.514283,2.497857,0,0,ODV:SA:CTP22510837,Europe/Paris,,ODV, +ODV:SP:22510838,1,"Mairie",49.512059,2.45637,0,0,ODV:SA:CTP22510838,Europe/Paris,,ODV, +ODV:SP:22510839,1,"Rue Henri Morel",49.573379,2.47234,0,0,ODV:SA:CTP22510839,Europe/Paris,,ODV, +ODV:SP:22510841,1,"Centre",49.55042,2.426241,0,0,ODV:SA:CTP22510841,Europe/Paris,,ODV, +ODV:SP:22510844,1,"Gare",49.503886,2.429462,0,0,SIN:SA:OCE87313270,Europe/Paris,,ODV, +ODV:SP:22510845,1,"college",49.551032,2.514552,0,0,ORL:SA:CTP27000148,Europe/Paris,,ODV, +ODV:SP:22510847,1,"Centre",49.521567,2.604628,0,0,ODV:SA:CTP22510847,Europe/Paris,,ODV, +ODV:SP:22510848,1,"Mairie-Ecole",49.522224,2.569184,0,0,ODV:SA:CTP22510849,Europe/Paris,,ODV, +ODV:SP:22510849,1,"Mairie-Ecole",49.52222,2.56916,0,0,ODV:SA:CTP22510849,Europe/Paris,,ODV, +ODV:SP:22510850,1,"Centre",49.536944,2.575574,0,0,ODV:SA:CTP22404078,Europe/Paris,,ODV, +ODV:SP:22510851,1,"Ecole",49.554441,2.55416,0,0,ODV:SA:CTP22510851,Europe/Paris,,ODV, +ODV:SP:22510852,1,"Mairie",49.540101,2.680436,0,0,ODV:SA:CTP22404074,Europe/Paris,,ODV, +ODV:SP:22510853,1,"Centre",49.547221,2.628331,0,0,ODV:SA:CTP22404076,Europe/Paris,,ODV, +ODV:SP:22510855,1,"Mairie",49.59861,2.602499,0,0,ODV:SA:CTP22510855,Europe/Paris,,ODV, +ODV:SP:22510856,1,"Grande rue",49.585,2.583609,0,0,ODV:SA:CTP22510856,Europe/Paris,,ODV, +ODV:SP:22510857,1,"Moulin Grevin",49.579921,2.583896,0,0,ODV:SA:CTP22510857,Europe/Paris,,ODV, +ODV:SP:22510858,1,"Gare",49.561946,2.581684,0,0,ODV:SA:CTP22510859,Europe/Paris,,ODV, +ODV:SP:22510859,1,"Gare",49.56194,2.58166,0,0,ODV:SA:CTP22510859,Europe/Paris,,ODV, +ODV:SP:22510860,1,"Fumechon",49.521365,2.367829,0,0,ODV:SA:CTP22510860,Europe/Paris,,ODV, +ODV:SP:22510862,1,"Centre",49.49611,2.31555,0,0,ODT:SA:CTP21010472,Europe/Paris,,ODV, +ODV:SP:22510864,1,"Mairie",49.499295,2.372008,0,0,ODV:SA:CTP22510864,Europe/Paris,,ODV, +ODV:SP:22510865,1,"Centre",49.48589,2.344769,0,0,ODT:SA:CTP21010471,Europe/Paris,,ODV, +ODV:SP:22510866,1,"Place de la mairie",49.501939,2.616381,0,0,ODV:SA:CTP22403285,Europe/Paris,,ODV, +ODV:SP:22510867,1,"Quennevières",49.473882,3.051687,0,0,ODV:SA:CTP22510867,Europe/Paris,,ODV, +ODV:SP:22510868,1,"Centre",49.45583,3.071381,0,0,ODV:SA:CTP22510868,Europe/Paris,,ODV, +ODV:SP:22510869,1,"L'Arbre de Bitry",49.431012,3.069187,0,0,ODV:SA:CTP22510869,Europe/Paris,,ODV, +ODV:SP:22510870,1,"Ecole",49.424439,3.07638,0,0,ODV:SA:CTP22510870,Europe/Paris,,ODV, +ODV:SP:22510871,1,"La Treille",49.412482,3.046108,0,0,ODV:SA:CTP22510871,Europe/Paris,,ODV, +ODV:SP:22510872,1,"Ecole",49.409052,3.051283,0,0,ODV:SA:CTP22510872,Europe/Paris,,ODV, +ODV:SP:22510873,1,"Rue des Cytises",49.414412,3.03556,0,0,ODV:SA:CTP22510873,Europe/Paris,,ODV, +ODV:SP:22510874,1,"Eglise",49.412807,3.078661,0,0,ODV:SA:CTP22510874,Europe/Paris,,ODV, +ODV:SP:22510875,1,"Mairie",49.399439,3.026661,0,0,ODV:SA:CTP22403354,Europe/Paris,,ODV, +ODV:SP:22510876,1,"Centre",49.433879,2.97944,0,0,ODV:SA:CTP22510876,Europe/Paris,,ODV, +ODV:SP:22510877,1,"Ferme de Moranval",49.447758,3.03082,0,0,ODV:SA:CTP22510877,Europe/Paris,,ODV, +ODV:SP:22510878,1,"Ecole",49.417093,2.941882,0,0,ODV:SA:CTP22510878,Europe/Paris,,ODV, +ODV:SP:22510879,1,"Rue de Verdun",49.415947,2.942943,0,0,ODV:SA:CTP22510879,Europe/Paris,,ODV, +ODV:SP:22510880,1,"Place Léon Blum",49.469159,3.00638,0,0,ODV:SA:CTP22403140,Europe/Paris,,ODV, +ODV:SP:22510882,1,"Hangest",49.487866,2.98895,0,0,ODV:SA:CTP22510882,Europe/Paris,,ODV, +ODV:SP:22510883,1,"Vesigneux",49.478049,3.011659,0,0,ODV:SA:CTP22403246,Europe/Paris,,ODV, +ODV:SP:22510884,1,"Ecole",49.414441,3.007219,0,0,ODV:SA:CTP22510884,Europe/Paris,,ODV, +ODV:SP:22510886,1,"mairie",49.386013,3.042288,0,0,ODV:SA:CTP22510886,Europe/Paris,,ODV, +ODV:SP:22510887,1,"Roilaye Ecole",49.367221,3.019747,0,0,ODV:SA:CTP22510887,Europe/Paris,,ODV, +ODV:SP:22510888,1,"Martimont",49.367501,3.028906,0,0,ODV:SA:CTP22510888,Europe/Paris,,ODV, +ODV:SP:22510889,1,"Place",49.35416,3.033611,0,0,ODV:SA:CTP22510889,Europe/Paris,,ODV, +ODV:SP:22510891,1,"Saint Etienne",49.352501,3.017796,0,0,ODV:SA:CTP22510891,Europe/Paris,,ODV, +ODV:SP:22510892,1,"Potingron",49.377779,3.094762,0,0,ODV:SA:CTP22510892,Europe/Paris,,ODV, +ODV:SP:22510893,1,"Centre",49.385551,3.090028,0,0,ODV:SA:CTP22510893,Europe/Paris,,ODV, +ODV:SP:22510894,1,"Centre",49.396941,3.06388,0,0,ODV:SA:CTP22510894,Europe/Paris,,ODV, +ODV:SP:22510895,1,"Maison Blanche",49.39805,3.046137,0,0,ODV:SA:CTP22510895,Europe/Paris,,ODV, +ODV:SP:22510896,1,"Palesne",49.331112,2.954186,0,0,ODV:SA:CTP22510896,Europe/Paris,,ODV, +ODV:SP:22510897,1,"Mairie",49.347219,2.9775,0,0,ODV:SA:CTP22510897,Europe/Paris,,ODV, +ODV:SP:22510898,1,"Genancourt",49.378051,3.009746,0,0,ODV:SA:CTP22510898,Europe/Paris,,ODV, +ODV:SP:22510899,1,"Pont Chevalier",49.396941,3.004467,0,0,ODV:SA:CTP22510899,Europe/Paris,,ODV, +ODV:SP:22510900,1,"Vignes Mondaines",49.40194,2.97805,0,0,ODV:SA:CTP22403327,Europe/Paris,,ODV, +ODV:SP:22510902,1,"Ecoles",49.39972,2.977769,0,0,ODV:SA:CTP22510902,Europe/Paris,,ODV, +ODV:SP:22510903,1,"Breuil",49.401379,2.98805,0,0,ODV:SA:CTP22510903,Europe/Paris,,ODV, +ODV:SP:22510905,1,"Vertefeuille",49.344719,2.96833,0,0,ODV:SA:CTP22510905,Europe/Paris,,ODV, +ODV:SP:22510906,1,"Gare",49.338063,2.682524,0,0,ODV:SA:CTP22510906,Europe/Paris,,ODV, +ODV:SP:22510908,1,"Rue de Compiegne",49.346962,2.695349,0,0,ODV:SA:CTP22510908,Europe/Paris,,ODV, +ODV:SP:22510909,1,"La montagne",49.402501,2.70444,0,0,ODV:SA:CTP22510909,Europe/Paris,,ODV, +ODV:SP:22510910,1,"Centre",49.385831,2.708049,0,0,ODV:SA:CTP22510910,Europe/Paris,,ODV, +ODV:SP:22510912,1,"Centre",49.38305,2.617499,0,0,ODV:SA:CTP22413712,Europe/Paris,,ODV, +ODV:SP:22510913,1,"Centre",49.378611,2.585551,0,0,ODV:SA:CTP22401218,Europe/Paris,,ODV, +ODV:SP:22510914,1,"Centre",49.38166,2.579161,0,0,ODV:SA:CTP22510914,Europe/Paris,,ODV, +ODV:SP:22510915,1,"Centre",49.49111,2.633881,0,0,ODV:SA:CTP22510915,Europe/Paris,,ODV, +ODV:SP:22510916,1,"Beaupuits",49.470554,2.607794,0,0,ODV:SA:CTP22510916,Europe/Paris,,ODV, +ODV:SP:22510917,1,"Scolaire WARNAVILLERS",49.465975,2.6429,0,0,ODV:SA:CTP22510917,Europe/Paris,,ODV, +ODV:SP:22510919,1,"Rue de Beauvais",49.346167,2.673372,0,0,ODV:SA:CTP22510919,Europe/Paris,,ODV, +ODV:SP:22510921,1,"R. de Chevrières",49.365894,2.660695,0,0,ODV:SA:CTP22510921,Europe/Paris,,ODV, +ODV:SP:22510922,1,"Mairie",49.371484,2.653027,0,0,ODV:SA:CTP22510922,Europe/Paris,,ODV, +ODV:SP:22510924,1,"Bellevue",49.472824,2.663576,0,0,ODV:SA:CTP22510951,Europe/Paris,,ODV, +ODV:SP:22510925,1,"Centre",49.46527,2.69055,0,0,ODV:SA:CTP22403281,Europe/Paris,,ODV, +ODV:SP:22510926,1,"Ecole",49.447771,2.6775,0,0,ODV:SA:CTP22510926,Europe/Paris,,ODV, +ODV:SP:22510929,1,"Ecole maternelle",49.360869,2.630226,0,0,ODV:SA:CTP22510929,Europe/Paris,,ODV, +ODV:SP:22510930,1,"Rue de Sacy",49.365283,2.648633,0,0,ODV:SA:CTP22510930,Europe/Paris,,ODV, +ODV:SP:22510933,1,"Ecole",49.40139,2.679171,0,0,ODV:SA:CTP22510933,Europe/Paris,,ODV, +ODV:SP:22510934,1,"Centre",49.414639,2.649782,0,0,ODV:SA:CTP22510934,Europe/Paris,,ODV, +ODV:SP:22510935,1,"Mairie",49.416379,2.57833,0,0,ODV:SA:CTP22510935,Europe/Paris,,ODV, +ODV:SP:22510936,1,"Eraine",49.431383,2.585854,0,0,ODV:SA:CTP22510936,Europe/Paris,,ODV, +ODV:SP:22510937,1,"La Patinerie",49.4232,2.718164,0,0,ODV:SA:CTP22510937,Europe/Paris,,ODV, +ODV:SP:22510939,1,"La Mérault",49.440833,2.704465,0,0,ODV:SA:CTP22510939,Europe/Paris,,ODV, +ODV:SP:22510941,1,"Centre",49.57666,2.70722,0,0,ODV:SA:CTP22510941,Europe/Paris,,ODV, +ODV:SP:22510942,1,"Centre",49.492368,2.675311,0,0,ODV:SA:CTP22510942,Europe/Paris,,ODV, +ODV:SP:22510943,1,"Gare",49.309634,2.602893,0,0,SIN:SA:OCE87276329,Europe/Paris,,ODV, +ODV:SP:22510944,1,"RN17",49.342096,2.60621,0,0,ODV:SA:CTP22510944,Europe/Paris,,ODV, +ODV:SP:22510946,1,"Eglise",49.425781,2.644878,0,0,ODV:SA:CTP22403836,Europe/Paris,,ODV, +ODV:SP:22510947,1,"Eglise-Place du Marché",49.42562,2.644698,0,0,ODV:SA:CTP22403836,Europe/Paris,,ODV, +ODV:SP:22510948,1,"Collège",49.428884,2.642524,0,0,ODV:SA:CTP22510948,Europe/Paris,,ODV, +ODV:SP:22510949,1,"Centre",49.397219,2.55444,0,0,ODV:SA:CTP22403834,Europe/Paris,,ODV, +ODV:SP:22510950,1,"Centre",49.451939,2.60833,0,0,ODV:SA:CTP22510950,Europe/Paris,,ODV, +ODV:SP:22510951,1,"Bellevue",49.472828,2.663601,0,0,ODV:SA:CTP22510951,Europe/Paris,,ODV, +ODV:SP:22510953,1,"Centre",49.63889,2.94083,0,0,ODV:SA:CTP22403269,Europe/Paris,,ODV, +ODV:SP:22510954,1,"Chevilly",49.637744,2.955629,0,0,ODV:SA:CTP22403267,Europe/Paris,,ODV, +ODV:SP:22510955,1,"Place",49.64492,2.958688,0,0,ODV:SA:CTP22510955,Europe/Paris,,ODV, +ODV:SP:22510956,1,"Centre",49.625281,2.98278,0,0,ODV:SA:CTP22510984,Europe/Paris,,ODV, +ODV:SP:22510957,1,"Centre",49.62139,3.01306,0,0,ODV:SA:CTP22413580,Europe/Paris,,ODV, +ODV:SP:22510958,1,"Centre",49.69278,2.97333,0,0,ODV:SA:CTP22510958,Europe/Paris,,ODV, +ODV:SP:22510959,1,"Rezavoine",49.655284,2.990307,0,0,ODV:SA:CTP22404149,Europe/Paris,,ODV, +ODV:SP:22510960,1,"Rimbercourt",49.637756,3.027898,0,0,ODV:SA:CTP22413579,Europe/Paris,,ODV, +ODV:SP:22510961,1,"Scolaire BOIS BONNARD",49.681674,3.058087,0,0,ODV:SA:CTP22510961,Europe/Paris,,ODV, +ODV:SP:22510962,1,"Chemin de Berlancourt",49.64083,3.105,0,0,ODV:SA:CTP22510962,Europe/Paris,,ODV, +ODV:SP:22510963,1,"Ferme Etang de Bœuf",49.644732,3.091421,0,0,ODV:SA:CTP22510963,Europe/Paris,,ODV, +ODV:SP:22510964,1,"Buchoire",49.650488,3.070073,0,0,ODV:SA:CTP22404135,Europe/Paris,,ODV, +ODV:SP:22510965,1,"Centre",49.63361,3.05889,0,0,ODV:SA:CTP22510965,Europe/Paris,,ODV, +ODV:SP:22510966,1,"Centre",49.63556,3.07278,0,0,ODV:SA:CTP22404133,Europe/Paris,,ODV, +ODV:SP:22510967,1,"Centre",49.707458,3.064062,0,0,ODV:SA:CTP22510967,Europe/Paris,,ODV, +ODV:SP:22510968,1,"Centre",49.684721,3.043611,0,0,ODV:SA:CTP22510968,Europe/Paris,,ODV, +ODV:SP:22510969,1,"Rouvrel",49.678065,3.035307,0,0,ODV:SA:CTP22404138,Europe/Paris,,ODV, +ODV:SP:22510970,1,"Centre",49.670561,3.00389,0,0,ODV:SA:CTP22510970,Europe/Paris,,ODV, +ODV:SP:22510972,1,"Plessis-Patte-d'Oie",49.68139,3.06361,0,0,ODV:SA:CTP22404143,Europe/Paris,,ODV, +ODV:SP:22510973,1,"Rue des Princelles",49.689172,3.10722,0,0,ODV:SA:CTP22510973,Europe/Paris,,ODV, +ODV:SP:22510974,1,"Centre",49.671114,3.065308,0,0,ODV:SA:CTP22510974,Europe/Paris,,ODV, +ODV:SP:22510975,1,"Collezy",49.680004,3.090857,0,0,ODV:SA:CTP22510975,Europe/Paris,,ODV, +ODV:SP:22510977,1,"Beines",49.669444,3.094197,0,0,ODV:SA:CTP22404139,Europe/Paris,,ODV, +ODV:SP:22510978,1,"Béhancourt",49.625004,2.948637,0,0,ODV:SA:CTP22403253,Europe/Paris,,ODV, +ODV:SP:22510979,1,"Ecole",49.615284,2.959197,0,0,ODV:SA:CTP22403252,Europe/Paris,,ODV, +ODV:SP:22510980,1,"La Marlière",49.622122,2.968143,0,0,ODV:SA:CTP22510980,Europe/Paris,,ODV, +ODV:SP:22510982,1,"Tirlancourt",49.66468,3.031939,0,0,ODV:SA:CTP22404137,Europe/Paris,,ODV, +ODV:SP:22510983,1,"Centre",49.644719,3.010559,0,0,ODV:SA:CTP22510983,Europe/Paris,,ODV, +ODV:SP:22510984,1,"Centre",49.62525,2.983072,0,0,ODV:SA:CTP22510984,Europe/Paris,,ODV, +ODV:SP:22510987,1,"Ecole",49.670281,3.00333,0,0,ODV:SA:CTP22510987,Europe/Paris,,ODV, +ODV:SP:22510988,1,"Gare SNCF",49.577892,3.005886,0,0,ODV:SA:CTP22403198,Europe/Paris,,ODV, +ODV:SP:22510989,1,"Centre",49.621394,3.013086,0,0,ODV:SA:CTP22413580,Europe/Paris,,ODV, +ODV:SP:22510990,1,"Rue de l'épée",49.653063,3.051967,0,0,ODV:SA:CTP22404136,Europe/Paris,,ODV, +ODV:SP:22510991,1,"LP JC Athanase PELTIER",49.75119,3.078167,0,0,ODV:SA:CTP22510991,Europe/Paris,,ODV, +ODV:SP:22510992,1,"Collège",49.582921,2.836883,0,0,ODV:SA:CTP22510992,Europe/Paris,,ODV, +ODV:SP:22510993,1,"Belval",49.563885,2.836686,0,0,ODV:SA:CTP22510993,Europe/Paris,,ODV, +ODV:SP:22510994,1,"Petit Bocage",49.559467,2.839602,0,0,ODV:SA:CTP22510994,Europe/Paris,,ODV, +ODV:SP:22510995,1,"Petit Bocage",49.5613,2.837306,0,0,ODV:SA:CTP22510995,Europe/Paris,,ODV, +ODV:SP:22510996,1,"Rue Mélique",49.564584,2.871833,0,0,ODV:SA:CTP22404109,Europe/Paris,,ODV, +ODV:SP:22510997,1,"Centre",49.565271,2.88333,0,0,ODV:SA:CTP22404108,Europe/Paris,,ODV, +ODV:SP:22510998,1,"Scolaire EPINOY",49.563912,2.916263,0,0,ODV:SA:CTP22510998,Europe/Paris,,ODV, +ODV:SP:22510999,1,"Ecole",49.56777,2.906661,0,0,ODV:SA:CTP22510999,Europe/Paris,,ODV, +ODV:SP:22511000,1,"Centre",49.55694,2.904721,0,0,ODV:SA:CTP22511000,Europe/Paris,,ODV, +ODV:SP:22511001,1,"Place",49.57777,2.830831,0,0,ODV:SA:CTP22511001,Europe/Paris,,ODV, +ODV:SP:22511002,1,"Mairie",49.56944,2.79944,0,0,ODV:SA:CTP22511002,Europe/Paris,,ODV, +ODV:SP:22511003,1,"Centre",49.602781,2.800829,0,0,ODV:SA:CTP22511003,Europe/Paris,,ODV, +ODV:SP:22511005,1,"Centre",49.57861,2.761661,0,0,ODV:SA:CTP22404065,Europe/Paris,,ODV, +ODV:SP:22511006,1,"La Potière",49.614725,2.857527,0,0,ODV:SA:CTP22511006,Europe/Paris,,ODV, +ODV:SP:22511007,1,"Centre",49.627496,2.896383,0,0,ODV:SA:CTP22511007,Europe/Paris,,ODV, +ODV:SP:22511008,1,"Fresnières",49.619719,2.81083,0,0,ODV:SA:CTP22511008,Europe/Paris,,ODV, +ODV:SP:22511009,1,"Centre",49.640712,2.798111,0,0,ODV:SA:CTP22404081,Europe/Paris,,ODV, +ODV:SP:22511010,1,"Centre",49.655,2.82472,0,0,ODV:SA:CTP22404127,Europe/Paris,,ODV, +ODV:SP:22511011,1,"Plémont",49.577432,2.860586,0,0,ODV:SA:CTP22511011,Europe/Paris,,ODV, +ODV:SP:22511013,1,"Grande rue",49.585832,2.91722,0,0,ODV:SA:CTP22404118,Europe/Paris,,ODV, +ODV:SP:22511014,1,"Plessis-Cacheleux",49.598054,2.884186,0,0,ODV:SA:CTP22404124,Europe/Paris,,ODV, +ODV:SP:22511016,1,"Centre",49.6125,2.912861,0,0,ODV:SA:CTP22511016,Europe/Paris,,ODV, +ODV:SP:22511017,1,"Chemin de Rozel",49.616113,2.920306,0,0,ODV:SA:CTP22511017,Europe/Paris,,ODV, +ODV:SP:22511018,1,"Centre",49.649646,2.920573,0,0,ODV:SA:CTP22511018,Europe/Paris,,ODV, +ODV:SP:22511019,1,"Centre",49.659202,2.913027,0,0,ODV:SA:CTP22511019,Europe/Paris,,ODV, +ODV:SP:22511020,1,"Centre",49.692222,2.915284,0,0,ODV:SA:CTP22511020,Europe/Paris,,ODV, +ODV:SP:22511021,1,"Centre",49.698891,2.87972,0,0,ODV:SA:CTP22511021,Europe/Paris,,ODV, +ODV:SP:22511024,1,"Epinoy",49.563894,2.916263,0,0,ODV:SA:CTP22511024,Europe/Paris,,ODV, +ODV:SP:22511025,1,"Centre",49.674209,2.867668,0,0,ODV:SA:CTP22511025,Europe/Paris,,ODV, +ODV:SP:22511026,1,"Centre",49.65611,2.861111,0,0,ODV:SA:CTP22511026,Europe/Paris,,ODV, +ODV:SP:22511027,1,"centre",49.56551,2.883553,0,0,ODV:SA:CTP22511027,Europe/Paris,,ODV, +ODV:SP:22511028,1,"Centre",49.588611,2.88694,0,0,ODV:SA:CTP22511028,Europe/Paris,,ODV, +ODV:SP:22511032,1,"Breuil",49.40138,2.98861,0,0,ODV:SA:CTP22510903,Europe/Paris,,ODV, +ODV:SP:22511033,1,"MONTPLAISIR",49.405164,2.745149,0,0,ODV:SA:CTP22511033,Europe/Paris,,ODV, +ODV:SP:22511034,1,"Aiguisy",49.416663,2.748074,0,0,ODV:SA:CTP22511034,Europe/Paris,,ODV, +ODV:SP:22511036,1,"Rimberlieu",49.49109,2.818874,0,0,ODV:SA:CTP22404054,Europe/Paris,,ODV, +ODV:SP:22511037,1,"Rue de la Nacelle",49.479165,2.800856,0,0,ODV:SA:CTP22404052,Europe/Paris,,ODV, +ODV:SP:22511038,1,"Place",49.443663,2.734985,0,0,ODV:SA:CTP22403278,Europe/Paris,,ODV, +ODV:SP:22511039,1,"Gare",49.477225,2.791406,0,0,ODV:SA:CTP22404051,Europe/Paris,,ODV, +ODV:SP:22511041,1,"Salle des Fêtes",49.462499,2.81194,0,0,ODV:SA:CTP22404049,Europe/Paris,,ODV, +ODV:SP:22511043,1,"Rue Placide Navarré",49.589749,2.515681,0,0,ODV:SA:CTP22511043,Europe/Paris,,ODV, +ODV:SP:22511044,1,"Mairie",49.5775,2.50361,0,0,ORL:SA:CTP27000078,Europe/Paris,,ODV, +ODV:SP:22511046,1,"Rue des lilas",49.594999,2.601659,0,0,ODV:SA:CTP22511046,Europe/Paris,,ODV, +ODV:SP:22511048,1,"Grande rue",49.559846,2.588895,0,0,ODV:SA:CTP22511048,Europe/Paris,,ODV, +ODV:SP:22511049,1,"Place",49.594263,2.535662,0,0,ODV:SA:CTP22511049,Europe/Paris,,ODV, +ODV:SP:22511050,1,"Abbémont",49.616929,2.507856,0,0,ODV:SA:CTP22511050,Europe/Paris,,ODV, +ODV:SP:22511052,1,"Route de Royaucourt",49.60371,2.552158,0,0,ODV:SA:CTP22511052,Europe/Paris,,ODV, +ODV:SP:22511053,1,"Mairie - Ecole",49.588423,2.552618,0,0,ODV:SA:CTP22511053,Europe/Paris,,ODV, +ODV:SP:22511055,1,"Scolaire DOMELIEN",49.609402,2.553398,0,0,ODV:SA:CTP22511055,Europe/Paris,,ODV, +ODV:SP:22511057,1,"Centre",49.481159,2.577727,0,0,ODV:SA:CTP22510830,Europe/Paris,,ODV, +ODV:SP:22511059,1,"Rd 117 - Abri",49.52722,2.44,0,0,ODV:SA:CTP22511059,Europe/Paris,,ODV, +ODV:SP:22511060,1,"Centre Jean Jaures",49.51718,2.50126,0,0,ODV:SA:CTP22404041,Europe/Paris,,ODV, +ODV:SP:22511062,1,"Catillon",49.518329,2.367769,0,0,ODV:SA:CTP22511062,Europe/Paris,,ODV, +ODV:SP:22511063,1,"Mairie",49.466659,2.381379,0,0,ODT:SA:CTP21100945,Europe/Paris,,ODV, +ODV:SP:22511064,1,"Port Salut",49.312503,2.723353,0,0,ODV:SA:CTP22511064,Europe/Paris,,ODV, +ODV:SP:22511067,1,"Bois d'Ageux",49.325727,2.719228,0,0,ODV:SA:CTP22511067,Europe/Paris,,ODV, +ODV:SP:22511068,1,"La Gare",49.342223,2.718634,0,0,ODV:SA:CTP22511068,Europe/Paris,,ODV, +ODV:SP:22511070,1,"Rucourt",49.365553,2.713074,0,0,ODV:SA:CTP22511070,Europe/Paris,,ODV, +ODV:SP:22511071,1,"Mairie",49.357057,2.718017,0,0,ODV:SA:CTP22511071,Europe/Paris,,ODV, +ODV:SP:22511072,1,"Les Ruminées",49.325894,2.717718,0,0,ODV:SA:CTP22511072,Europe/Paris,,ODV, +ODV:SP:22511073,1,"Centre",49.347499,2.7325,0,0,ODV:SA:CTP22403856,Europe/Paris,,ODV, +ODV:SP:22511075,1,"Rucourt",49.365551,2.71305,0,0,ODV:SA:CTP22511070,Europe/Paris,,ODV, +ODV:SP:22511076,1,"Collège",49.538854,2.752108,0,0,ODV:SA:CTP22511076,Europe/Paris,,ODV, +ODV:SP:22511078,1,"RD 935",49.570001,2.67,0,0,ODV:SA:CTP22404067,Europe/Paris,,ODV, +ODV:SP:22511079,1,"Ecole",49.57861,2.70555,0,0,ODV:SA:CTP22511079,Europe/Paris,,ODV, +ODV:SP:22511081,1,"Monument aux Morts",49.603669,2.72671,0,0,ODV:SA:CTP22511081,Europe/Paris,,ODV, +ODV:SP:22511083,1,"Centre",49.544719,2.79083,0,0,ODV:SA:CTP22404095,Europe/Paris,,ODV, +ODV:SP:22511084,1,"Centre",49.521381,2.777771,0,0,ODV:SA:CTP22511084,Europe/Paris,,ODV, +ODV:SP:22511085,1,"Ecole",49.51694,2.76305,0,0,ODV:SA:CTP22404060,Europe/Paris,,ODV, +ODV:SP:22511086,1,"Centre",49.494999,2.756661,0,0,ODV:SA:CTP22404055,Europe/Paris,,ODV, +ODV:SP:22511087,1,"Centre",49.500551,2.77583,0,0,ODV:SA:CTP22511087,Europe/Paris,,ODV, +ODV:SP:22511088,1,"Centre",49.525269,2.816379,0,0,ODV:SA:CTP22511088,Europe/Paris,,ODV, +ODV:SP:22511089,1,"Centre",49.580829,2.733051,0,0,ODV:SA:CTP22404069,Europe/Paris,,ODV, +ODV:SP:22511090,1,"Centre",49.555549,2.75666,0,0,ODV:SA:CTP22511090,Europe/Paris,,ODV, +ODV:SP:22511091,1,"Centre",49.55194,2.75305,0,0,ODV:SA:CTP22404062,Europe/Paris,,ODV, +ODV:SP:22511092,1,"Centre",49.539721,2.74472,0,0,ODV:SA:CTP22511092,Europe/Paris,,ODV, +ODV:SP:22511095,1,"Centre",49.44639,2.662779,0,0,ODV:SA:CTP22511095,Europe/Paris,,ODV, +ODV:SP:22511096,1,"rue Vaubrun",49.469999,2.75527,0,0,ODV:SA:CTP22511096,Europe/Paris,,ODV, +ODV:SP:22511097,1,"Eglise",49.46333,2.75166,0,0,ODV:SA:CTP22511097,Europe/Paris,,ODV, +ODV:SP:22511098,1,"Place",49.476939,2.772771,0,0,ODV:SA:CTP22403276,Europe/Paris,,ODV, +ODV:SP:22511099,1,"RN17",49.554524,2.700994,0,0,ODV:SA:CTP22511099,Europe/Paris,,ODV, +ODV:SP:22511101,1,"Centre",49.592771,2.681941,0,0,ODV:SA:CTP22511101,Europe/Paris,,ODV, +ODV:SP:22511102,1,"Rue Vaubrun",49.470003,2.755295,0,0,ODV:SA:CTP22511102,Europe/Paris,,ODV, +ODV:SP:22511103,1,"Mairie",49.47,2.74694,0,0,ODV:SA:CTP22403277,Europe/Paris,,ODV, +ODV:SP:22511104,1,"Rue de Braisnes",49.470275,2.757246,0,0,ODV:SA:CTP22511104,Europe/Paris,,ODV, +ODV:SP:22511105,1,"Ferme de Loges",49.496944,2.739185,0,0,ODV:SA:CTP22511105,Europe/Paris,,ODV, +ODV:SP:22511107,1,"Jeu d'arc",49.512771,2.793051,0,0,ODV:SA:CTP22511107,Europe/Paris,,ODV, +ODV:SP:22511108,1,"Gare",49.515632,2.760818,0,0,ODV:SA:CTP22511108,Europe/Paris,,ODV, +ODV:SP:22511109,1,"La Motte",49.557775,2.787526,0,0,ODV:SA:CTP22511109,Europe/Paris,,ODV, +ODV:SP:22511110,1,"Bourmont",49.537774,2.765026,0,0,ODV:SA:CTP22404114,Europe/Paris,,ODV, +ODV:SP:22511113,1,"Ecole",49.539723,2.746685,0,0,ODV:SA:CTP22404061,Europe/Paris,,ODV, +ODV:SP:22511115,1,"Monument",49.55361,2.693331,0,0,ODV:SA:CTP22511115,Europe/Paris,,ODV, +ODV:SP:22511116,1,"Sorel",49.568051,2.707219,0,0,ODV:SA:CTP22511116,Europe/Paris,,ODV, +ODV:SP:22511118,1,"Gare",49.495831,2.767769,0,0,ODV:SA:CTP22404056,Europe/Paris,,ODV, +ODV:SP:22511119,1,"Ferme de Portes",49.501115,2.721135,0,0,ODV:SA:CTP22511119,Europe/Paris,,ODV, +ODV:SP:22511120,1,"Ecole",49.491312,2.673428,0,0,ODV:SA:CTP22511120,Europe/Paris,,ODV, +ODV:SP:22511121,1,"Centre",49.496986,2.661882,0,0,ODV:SA:CTP22511121,Europe/Paris,,ODV, +ODV:SP:22511123,1,"Monument",49.553615,2.693356,0,0,ODV:SA:CTP22511115,Europe/Paris,,ODV, +ODV:SP:22511125,1,"La Motte",49.403611,3.006137,0,0,ODV:SA:CTP22403352,Europe/Paris,,ODV, +ODV:SP:22511127,1,"Rue H.Béranger",49.415271,3.008636,0,0,ODV:SA:CTP22511127,Europe/Paris,,ODV, +ODV:SP:22511129,1,"Centre",49.513708,3.024665,0,0,ODV:SA:CTP22511129,Europe/Paris,,ODV, +ODV:SP:22511130,1,"R. des Pâquerettes",49.515273,3.011687,0,0,ODV:SA:CTP22511130,Europe/Paris,,ODV, +ODV:SP:22511131,1,"Collège",49.480585,2.875222,0,0,ODV:SA:CTP22511131,Europe/Paris,,ODV, +ODV:SP:22511132,1,"Vesigneux",49.478051,3.011687,0,0,ODV:SA:CTP22403246,Europe/Paris,,ODV, +ODV:SP:22511135,1,"Bethancourt",49.499444,2.900296,0,0,ODV:SA:CTP22403185,Europe/Paris,,ODV, +ODV:SP:22511137,1,"Mairie",49.480819,2.953926,0,0,ODV:SA:CTP22511137,Europe/Paris,,ODV, +ODV:SP:22511138,1,"Ollencourt-Place Loonen",49.478609,2.99944,0,0,ODV:SA:CTP22403247,Europe/Paris,,ODV, +ODV:SP:22511139,1,"Eglise",49.48861,3.008881,0,0,ODV:SA:CTP22403138,Europe/Paris,,ODV, +ODV:SP:22511140,1,"La Sablonnière",49.492054,3.009895,0,0,ODV:SA:CTP22511140,Europe/Paris,,ODV, +ODV:SP:22511142,1,"Place",49.51416,2.95166,0,0,ODV:SA:CTP22403210,Europe/Paris,,ODV, +ODV:SP:22511143,1,"Ourscamp",49.530271,2.97361,0,0,ODV:SA:CTP22511143,Europe/Paris,,ODV, +ODV:SP:22511144,1,"RD 1032",49.543329,2.95444,0,0,ODV:SA:CTP22403209,Europe/Paris,,ODV, +ODV:SP:22511145,1,"Collège de MARLY",49.507905,2.923983,0,0,ODV:SA:CTP22511145,Europe/Paris,,ODV, +ODV:SP:22511146,1,"Dreslincourt Place",49.526111,2.9275,0,0,ODV:SA:CTP22403206,Europe/Paris,,ODV, +ODV:SP:22511147,1,"Bethancourt",49.49944,2.90027,0,0,ODV:SA:CTP22403185,Europe/Paris,,ODV, +ODV:SP:22511149,1,"Ecole",49.545549,2.950271,0,0,ODV:SA:CTP22511149,Europe/Paris,,ODV, +ODV:SP:22511151,1,"Centre",49.493879,2.85833,0,0,ODV:SA:CTP22404091,Europe/Paris,,ODV, +ODV:SP:22511152,1,"Ecole",49.507771,2.82555,0,0,ODV:SA:CTP22511152,Europe/Paris,,ODV, +ODV:SP:22511156,1,"Collège Debussy",49.433176,2.82812,0,0,ODV:SA:CTP22403167,Europe/Paris,,ODV, +ODV:SP:22511157,1,"Collège",49.479706,2.875111,0,0,ODV:SA:CTP22511131,Europe/Paris,,ODV, +ODV:SP:22511159,1,"Bas du Cavan",49.494721,2.87388,0,0,ODV:SA:CTP22404090,Europe/Paris,,ODV, +ODV:SP:22511161,1,"Rue Joffre",49.48027,2.890829,0,0,ODV:SA:CTP22403181,Europe/Paris,,ODV, +ODV:SP:22511162,1,"Gare",49.495833,2.767795,0,0,ODV:SA:CTP22404056,Europe/Paris,,ODV, +ODV:SP:22511164,1,"Centre",49.47972,2.90055,0,0,ODV:SA:CTP22511164,Europe/Paris,,ODV, +ODV:SP:22511165,1,"Ecoles",49.463051,2.88972,0,0,ODV:SA:CTP22403179,Europe/Paris,,ODV, +ODV:SP:22511167,1,"Barrière",49.470551,2.86777,0,0,ODV:SA:CTP22403178,Europe/Paris,,ODV, +ODV:SP:22511168,1,"Rue des Ecoles",49.468329,2.86333,0,0,ODV:SA:CTP22511168,Europe/Paris,,ODV, +ODV:SP:22511169,1,"Place",49.50305,2.844721,0,0,ODV:SA:CTP22404092,Europe/Paris,,ODV, +ODV:SP:22511170,1,"Rue de la Nacelle",49.479249,2.801144,0,0,ODV:SA:CTP22404052,Europe/Paris,,ODV, +ODV:SP:22511171,1,"Rue des barres",49.466265,2.813776,0,0,ODV:SA:CTP22511171,Europe/Paris,,ODV, +ODV:SP:22511172,1,"Rue Copeau",49.471032,2.818975,0,0,ODV:SA:CTP22511172,Europe/Paris,,ODV, +ODV:SP:22511173,1,"Annel",49.461256,2.841773,0,0,ODV:SA:CTP22511173,Europe/Paris,,ODV, +ODV:SP:22511174,1,"Mairie",49.510551,2.922499,0,0,ODV:SA:CTP22403191,Europe/Paris,,ODV, +ODV:SP:22511175,1,"Gendarmerie",49.50583,2.91694,0,0,ODV:SA:CTP22403188,Europe/Paris,,ODV, +ODV:SP:22511176,1,"Place",49.5075,2.820829,0,0,ODV:SA:CTP22404093,Europe/Paris,,ODV, +ODV:SP:22511179,1,"La Hutte",49.499303,2.863484,0,0,ODV:SA:CTP22413654,Europe/Paris,,ODV, +ODV:SP:22511180,1,"Pont du Matz",49.489577,2.883253,0,0,ODV:SA:CTP22404089,Europe/Paris,,ODV, +ODV:SP:22511181,1,"Petit Mélicocq",49.497546,2.868637,0,0,ODV:SA:CTP22413587,Europe/Paris,,ODV, +ODV:SP:22511182,1,"La Gloriette",49.470549,2.3925,0,0,ODV:SA:CTP22511182,Europe/Paris,,ODV, +ODV:SP:22511183,1,"Centre",49.483329,2.43666,0,0,ODV:SA:CTP22511183,Europe/Paris,,ODV, +ODV:SP:22511184,1,"Lotissement",49.475559,2.43128,0,0,ODV:SA:CTP22511184,Europe/Paris,,ODV, +ODV:SP:22511186,1,"Rue Machot",49.568773,2.42108,0,0,ODV:SA:CTP22511186,Europe/Paris,,ODV, +ODV:SP:22511189,1,"Rue vert galout",49.440269,2.53777,0,0,ODV:SA:CTP22511189,Europe/Paris,,ODV, +ODV:SP:22511190,1,"Centre",49.448051,2.50222,0,0,ODV:SA:CTP22511190,Europe/Paris,,ODV, +ODV:SP:22511191,1,"RD127",49.4525,2.473051,0,0,ODV:SA:CTP22511191,Europe/Paris,,ODV, +ODV:SP:22511192,1,"Centre",49.45861,2.478609,0,0,ODV:SA:CTP22511192,Europe/Paris,,ODV, +ODV:SP:22511194,1,"Collège",49.502499,2.425831,0,0,ODV:SA:CTP22511194,Europe/Paris,,ODV, +ODV:SP:22511195,1,"Compere MOREL",49.635001,2.29888,0,0,ODV:SA:CTP22511195,Europe/Paris,,ODV, +ODV:SP:22511196,1,"Rotibequet",49.496381,2.41055,0,0,ODV:SA:CTP22403801,Europe/Paris,,ODV, +ODV:SP:22511197,1,"Le Plésseret",49.474441,2.386379,0,0,ODT:SA:CTP21100946,Europe/Paris,,ODV, +ODV:SP:22511198,1,"Grande rue",49.54916,2.36388,0,0,ODV:SA:CTP22511198,Europe/Paris,,ODV, +ODV:SP:22511200,1,"Agora",49.5425,2.357501,0,0,ODV:SA:CTP22511200,Europe/Paris,,ODV, +ODV:SP:22511201,1,"Rue de la Gare",49.571545,2.436912,0,0,ODV:SA:CTP22511201,Europe/Paris,,ODV, +ODV:SP:22511202,1,"college guiscard",49.652148,3.056409,0,0,ODV:SA:CTP22511202,Europe/Paris,,ODV, +ODV:SP:22511203,1,"centre",49.549167,2.451956,0,0,ODV:SA:CTP22511203,Europe/Paris,,ODV, +ODV:SP:22511204,1,"college andre malraux",49.398565,2.796547,0,0,ODV:SA:CTP22511204,Europe/Paris,,ODV, +ODV:SP:22511205,1,"RN31",49.402494,2.968401,0,0,ODV:SA:CTP22511205,Europe/Paris,,ODV, +ODV:SP:22511206,1,"mairie",49.342885,2.640903,0,0,ODV:SA:CTP22511206,Europe/Paris,,ODV, +ODV:SP:22511207,1,"mairie",49.470262,2.428582,0,0,ODV:SA:CTP22511207,Europe/Paris,,ODV, +ODV:SP:22511208,1,"mairie",49.561729,2.585769,0,0,ODV:SA:CTP22511208,Europe/Paris,,ODV, +ODV:SP:22511209,1,"rue galant",49.413057,2.992158,0,0,ODV:SA:CTP22511209,Europe/Paris,,ODV, +ODV:SP:22511210,1,"ecole",49.414599,3.007419,0,0,ODV:SA:CTP22511210,Europe/Paris,,ODV, +ODV:SP:22511211,1,"rue du rinn",49.413926,3.008911,0,0,ODV:SA:CTP22511211,Europe/Paris,,ODV, +ODV:SP:22511212,1,"jeu d'arc",49.399073,2.964546,0,0,ODV:SA:CTP22511212,Europe/Paris,,ODV, +ODV:SP:22511214,1,"mairie",49.508076,2.825517,0,0,ODV:SA:CTP22511214,Europe/Paris,,ODV, +ODV:SP:22511216,1,"rue de l'église",49.585427,2.903949,0,0,ODV:SA:CTP22511216,Europe/Paris,,ODV, +ODV:SP:22511217,1,"rue de nesles",49.672583,3.005744,0,0,ODV:SA:CTP22511217,Europe/Paris,,ODV, +ODV:SP:22511218,1,"rue poulin",49.621284,3.019892,0,0,ODV:SA:CTP22511218,Europe/Paris,,ODV, +ODV:SP:22511220,1,"rue du marechal leclerc",49.522093,2.819925,0,0,ODV:SA:CTP22511220,Europe/Paris,,ODV, +ODV:SP:22511223,1,"place",49.510978,2.924203,0,0,ODV:SA:CTP22511223,Europe/Paris,,ODV, +ODV:SP:22511224,1,"vaumont",49.530254,2.559922,0,0,ODV:SA:CTP22511224,Europe/Paris,,ODV, +ODV:SP:22511225,1,"eglise",49.414503,3.005339,0,0,ODV:SA:CTP22511225,Europe/Paris,,ODV, +ODV:SP:22511226,1,"rue faroux",49.410112,3.053413,0,0,ODV:SA:CTP22511226,Europe/Paris,,ODV, +ODV:SP:22511227,1,"calvaire",49.405916,3.140552,0,0,ODV:SA:CTP22511227,Europe/Paris,,ODV, +ODV:SP:22511228,1,"roche",49.406865,3.159552,0,0,ODV:SA:CTP22511228,Europe/Paris,,ODV, +ODV:SP:22511229,1,"vaux",49.407699,3.167729,0,0,ODV:SA:CTP22511229,Europe/Paris,,ODV, +ODV:SP:22511230,1,"port",49.408391,3.183132,0,0,ODV:SA:CTP22511230,Europe/Paris,,ODV, +ODV:SP:22511231,1,"courtil",49.394162,3.249417,0,0,ODV:SA:CTP22511231,Europe/Paris,,ODV, +ODV:SP:22511235,1,"centre",49.610388,2.527432,0,0,ODV:SA:CTP22511235,Europe/Paris,,ODV, +ODV:SP:22511237,1,"mairie",49.514168,2.503347,0,0,ODV:SA:CTP22511237,Europe/Paris,,ODV, +ODV:SP:22511238,1,"8 mai 1945",49.5145,2.497361,0,0,ODV:SA:CTP22511238,Europe/Paris,,ODV, +ODV:SP:22511239,1,"Centre Jean Jaures",49.51718,2.50126,0,0,ODV:SA:CTP22404041,Europe/Paris,,ODV, +ODV:SP:22511240,1,"centre",49.448694,2.67906,0,0,ODV:SA:CTP22403280,Europe/Paris,,ODV, +ODV:SP:22511241,1,"centre",49.525511,2.816494,0,0,ODV:SA:CTP22511241,Europe/Paris,,ODV, +ODV:SP:22511243,1,"salle Agora",49.542565,2.357255,0,0,ODV:SA:CTP22511200,Europe/Paris,,ODV, +ODV:SP:22511244,1,"mare",49.549309,2.363842,0,0,ODV:SA:CTP22511244,Europe/Paris,,ODV, +ODV:SP:22511245,1,"place",49.539248,2.744424,0,0,ODV:SA:CTP22511245,Europe/Paris,,ODV, +ODV:SP:22511246,1,"rue pasteur",49.580181,2.948398,0,0,ODV:SA:CTP22511246,Europe/Paris,,ODV, +ODV:SP:22511247,1,"rue de montididier",49.583761,2.941961,0,0,ODV:SA:CTP22511247,Europe/Paris,,ODV, +ODV:SP:22511248,1,"RN17",49.55453,2.701015,0,0,ODV:SA:CTP22511099,Europe/Paris,,ODV, +ODV:SP:22511249,1,"centre",49.557137,2.905458,0,0,ODV:SA:CTP22404106,Europe/Paris,,ODV, +ODV:SP:22511250,1,"RD 1032",49.543432,2.954529,0,0,ODV:SA:CTP22403209,Europe/Paris,,ODV, +ODV:SP:22511252,1,"centre",49.512059,2.45637,0,0,ODV:SA:CTP22511252,Europe/Paris,,ODV, +ODV:SP:22511253,1,"lotissement",49.475782,2.547237,0,0,ODV:SA:CTP22511253,Europe/Paris,,ODV, +ODV:SP:22511254,1,"bois bonnard",49.658583,3.099691,0,0,ODV:SA:CTP22511254,Europe/Paris,,ODV, +ODV:SP:22511256,1,"centre",49.601752,2.725106,0,0,ODV:SA:CTP22511256,Europe/Paris,,ODV, +ODV:SP:22511257,1,"Puisalène",49.515489,3.01161,0,0,ODV:SA:CTP22511257,Europe/Paris,,ODV, +ODV:SP:22511258,1,"Général De Gaulle",49.494002,3.011644,0,0,ODV:SA:CTP22511258,Europe/Paris,,ODV, +ODV:SP:22511259,1,"Saint Jean",49.47193,3.008859,0,0,ODV:SA:CTP22511259,Europe/Paris,,ODV, +ODV:SP:22511260,1,"Vénizieux",49.477988,3.011323,0,0,ODV:SA:CTP22511260,Europe/Paris,,ODV, +ODV:SP:22511261,1,"Flandres",49.488623,2.959618,0,0,ODV:SA:CTP22511261,Europe/Paris,,ODV, +ODV:SP:22511262,1,"rue Charles Caille centre",49.480383,2.899809,0,0,ODV:SA:CTP22511262,Europe/Paris,,ODV, +ODV:SP:22511263,1,"école",49.463417,2.889741,0,0,ODV:SA:CTP22511263,Europe/Paris,,ODV, +ODV:SP:22511265,1,"Saint Pierre",49.300657,2.65299,0,0,ODV:SA:CTP22511265,Europe/Paris,,ODV, +ODV:SP:22511266,1,"mairie",49.633711,2.295468,0,0,ODV:SA:CTP22511266,Europe/Paris,,ODV, +ODV:SP:22511267,1,"Haut",49.468699,2.820593,0,0,ODV:SA:CTP22511267,Europe/Paris,,ODV, +ODV:SP:22511269,1,"Place",49.578068,2.831062,0,0,ODV:SA:CTP22511001,Europe/Paris,,ODV, +ODV:SP:22511270,1,"la plaine",49.559997,2.850466,0,0,ODV:SA:CTP22511270,Europe/Paris,,ODV, +ODV:SP:22511271,1,"lotissement",49.583058,2.967067,0,0,ODV:SA:CTP22511271,Europe/Paris,,ODV, +ODV:SP:22511272,1,"Belval",49.564176,2.836865,0,0,ODV:SA:CTP22510993,Europe/Paris,,ODV, +ODV:SP:22511273,1,"lotissement",49.585885,2.917341,0,0,ODV:SA:CTP22511273,Europe/Paris,,ODV, +ODV:SP:22511274,1,"centre",49.470838,2.549271,0,0,ODV:SA:CTP22511274,Europe/Paris,,ODV, +ODV:SP:22511275,1,"mairie",49.49907,2.373029,0,0,ODV:SA:CTP22511275,Europe/Paris,,ODV, +ODV:SP:22511276,1,"abbaye",49.534913,2.97096,0,0,ODV:SA:CTP22511276,Europe/Paris,,ODV, +ODV:SP:22511277,1,"Beaumanoir",49.302077,2.608514,0,0,ODV:SA:CTP22511277,Europe/Paris,,ODV, +ODV:SP:22511281,1,"Proméo Venette",49.412166,2.772245,0,0,ODV:SA:CTP22511281,Europe/Paris,,ODV, +ODV:SP:22511282,1,"Grandes Beines",49.676422,3.112012,0,0,ODV:SA:CTP22511282,Europe/Paris,,ODV, +ODV:SP:22511283,1,"grand place",49.383662,3.327613,0,0,ODV:SA:CTP22511283,Europe/Paris,,ODV, +ODV:SP:22511284,1,"la ruellette",49.331226,2.724465,0,0,ODV:SA:CTP22511284,Europe/Paris,,ODV, +ODV:SP:22511286,1,"rue Maurice Choron",49.298586,2.808017,0,0,ODV:SA:CTP22511286,Europe/Paris,,ODV, +ODV:SP:22511287,1,"église",49.302896,2.810983,0,0,ODV:SA:CTP22511287,Europe/Paris,,ODV, +ODV:SP:22511288,1,"centre",49.497554,2.873037,0,0,ODV:SA:CTP22511288,Europe/Paris,,ODV, +ODV:SP:22511289,1,"place de la fontaine",49.500933,2.870645,0,0,ODV:SA:CTP22511289,Europe/Paris,,ODV, +ODV:SP:22511290,1,"centre",49.519741,3.068124,0,0,ODV:SA:CTP22511290,Europe/Paris,,ODV, +ODV:SP:22511291,1,"boulangerie",49.513644,3.024885,0,0,ODV:SA:CTP22511291,Europe/Paris,,ODV, +ODV:SP:22511292,1,"fonds de roye",49.596665,2.758271,0,0,ODV:SA:CTP22511292,Europe/Paris,,ODV, +ODV:SP:22511293,1,"rue du mont berny",49.352021,2.982633,0,0,ODV:SA:CTP22511293,Europe/Paris,,ODV, +ODV:SP:22511295,1,"Joffre",49.305789,2.770506,0,0,ODV:SA:CTP22511295,Europe/Paris,,ODV, +ODV:SP:22511296,1,"Autoroute A1 Paris-Oise",49.321392,2.697495,0,0,ODV:SA:CTP22511296,Europe/Paris,,ODV, +ODV:SP:22511297,1,"lycée pro",49.507905,2.923983,0,0,ODV:SA:CTP22511297,Europe/Paris,,ODV, +ODV:SP:22511298,1,"centre",49.283053,3.028887,0,0,ODV:SA:CTP22511298,Europe/Paris,,ODV, +ODV:SP:22511299,1,"Eglise",49.36,2.629506,0,0,ODV:SA:CTP22511299,Europe/Paris,,ODV, +ODV:SP:22511300,1,"Mairie",49.306244,2.768793,0,0,ODV:SA:CTP22511300,Europe/Paris,,ODV, +ODV:SP:22511301,1,"ZAC Mercières",49.392295,2.789155,0,0,OLO:SA:CTP13100007,Europe/Paris,,ODV, +ODV:SP:22511302,1,"ZAC Mercières",49.392241,2.789306,0,0,OLO:SA:CTP13100007,Europe/Paris,,ODV, +ODV:SP:22511304,1,"Rue du lavoir",49.290074,2.879266,0,0,ODV:SA:CTP22511304,Europe/Paris,,ODV, +ODV:SP:22511305,1,"centre",49.698428,2.792962,0,0,ORL:SA:CTP27000016,Europe/Paris,,ODV, +ODV:SP:22511306,1,"Ferme St Julien",49.411088,2.602207,0,0,ODV:SA:CTP22511306,Europe/Paris,,ODV, +ODV:SP:22511307,1,"cimetière Rue de Compiègne",49.430903,2.644083,0,0,ODV:SA:CTP22511307,Europe/Paris,,ODV, +ODV:SP:22511309,1,"rue de Bailly",49.501621,2.93473,0,0,ODV:SA:CTP22511309,Europe/Paris,,ODV, +ODV:SP:22511310,1,"Rue St Hilaire",49.456866,2.816913,0,0,ODV:SA:CTP22511310,Europe/Paris,,ODV, +ODV:SP:22511311,1,"Le Berval",49.271662,2.963061,0,0,ODV:SA:CTP22511311,Europe/Paris,,ODV, +ODV:SP:22511312,1,"25 Rue de la République",49.34447,2.609137,0,0,ODV:SA:CTP22511312,Europe/Paris,,ODV, +ODV:SP:22511313,1,"Lamotte",49.356913,2.540164,0,0,ODV:SA:CTP22511313,Europe/Paris,,ODV, +ODV:SP:22511314,1,"Rue Charles Weber",49.412455,3.046163,0,0,ODV:SA:CTP22511314,Europe/Paris,,ODV, +ODV:SP:22511315,1,"Magenta",49.416392,2.827219,0,0,OLO:SA:CTP13000012,Europe/Paris,,ODV, +ODV:SP:22511316,1,"La Grenouille",49.511603,2.830655,0,0,ODV:SA:CTP22511316,Europe/Paris,,ODV, +ODV:SP:22511317,1,"Institution Guynemer",49.408614,2.842219,0,0,ODV:SA:CTP22511317,Europe/Paris,,ODV, +ODV:SP:22511318,1,"rue de Montgérain",49.551149,2.557777,0,0,ODV:SA:CTP22511318,Europe/Paris,,ODV, +ODV:SP:22511319,1,"Ecole Le Moulin",49.505555,2.426121,0,0,ODV:SA:CTP22511319,Europe/Paris,,ODV, +ODV:SP:22511320,1,"Cité scolaire",49.583863,3.015049,0,0,OUS:SA:CTP-OUS5040004,Europe/Paris,,ODV, +ODV:SP:22511321,1,"Cité scolaire",49.583863,3.015049,0,0,OUS:SA:CTP-OUS5040004,Europe/Paris,,ODV, +ODV:SP:22511322,1,"Debuire",49.305833,2.769464,0,0,ODV:SA:CTP22403089,Europe/Paris,,ODV, +ODV:SP:22511323,1,"Centre",49.295848,2.91834,0,0,ODV:SA:CTP22511323,Europe/Paris,,ODV, +ODV:SP:22511324,1,"Centre",49.295848,2.91834,0,0,ODV:SA:CTP22511323,Europe/Paris,,ODV, +ODV:SP:22511325,1,"Rue de Longueil",49.475004,2.878906,0,0,ODV:SA:CTP22403180,Europe/Paris,,ODV, +ODV:SP:22511328,1,"Eglise",49.546117,2.359461,0,0,ODV:SA:CTP22403781,Europe/Paris,,ODV, +ODV:SP:22511329,1,"Eglise",49.546117,2.359461,0,0,ODV:SA:CTP22403781,Europe/Paris,,ODV, +ODV:SP:22511330,1,"Agora",49.5425,2.357501,0,0,ODV:SA:CTP22511200,Europe/Paris,,ODV, +ODV:SP:22511331,1,"Rue T Boullenger",49.426192,2.638862,0,0,ODV:SA:CTP22511331,Europe/Paris,,ODV, +ODV:SP:22511333,1,"Centre",49.433879,2.97944,0,0,ODV:SA:CTP22510876,Europe/Paris,,ODV, +ODV:SP:22511334,1,"Rue de Verdun",49.415947,2.942943,0,0,ODV:SA:CTP22510879,Europe/Paris,,ODV, +ODV:SP:22511335,1,"Rue Charles Weber",49.412455,3.046163,0,0,ODV:SA:CTP22511314,Europe/Paris,,ODV, +ODV:SP:22511336,1,"Touvent",49.452681,3.065886,0,0,ODV:SA:CTP22511336,Europe/Paris,,ODV, +ODV:SP:22511337,1,"Rue de Noyon",49.437028,2.705498,0,0,ODV:SA:CTP22404030,Europe/Paris,,ODV, +ODV:SP:22511338,1,"Collège P. Eluard",49.584481,2.998333,0,0,ODV:SA:CTP22403239,Europe/Paris,,ODV, +ODV:SP:22511340,1,"Centre",49.286383,2.876965,0,0,ODV:SA:CTP22403882,Europe/Paris,,ODV, +ODV:SP:22511341,1,"Bellival - Rue de la vallée",49.288613,2.888075,0,0,ODV:SA:CTP22403880,Europe/Paris,,ODV, +ODV:SP:22511342,1,"Pondron",49.278332,2.945025,0,0,ODV:SA:CTP22403894,Europe/Paris,,ODV, +ODV:SP:22511343,1,"Gare",49.231446,2.886768,0,0,ODV:SA:CTP22403887,Europe/Paris,,ODV, +ODV:SP:22511344,1,"Trois Etots",49.448557,2.535801,0,0,ODV:SA:CTP22511344,Europe/Paris,,ODV, +ODV:SP:22511345,1,"Centre",49.373889,2.69722,0,0,ODV:SA:CTP22403847,Europe/Paris,,ODV, +ODV:SP:22511346,1,"Mairie",49.371484,2.653027,0,0,ODV:SA:CTP22510922,Europe/Paris,,ODV, +ODV:SP:22511347,1,"Rue de Chevrières",49.365894,2.660695,0,0,ODV:SA:CTP22510921,Europe/Paris,,ODV, +ODV:SP:22511348,1,"Gare",49.338063,2.682524,0,0,ODV:SA:CTP22510906,Europe/Paris,,ODV, +ODV:SP:22511349,1,"Gare SNCF",49.577503,3.007527,0,0,ODV:SA:CTP22403198,Europe/Paris,,ODV, +ODV:SP:22511350,1,"Rue Chambèrie",49.568254,3.028257,0,0,ODV:SA:CTP22511350,Europe/Paris,,ODV, +ODV:SP:22511351,1,"Rue des 14 Mines du Roy",49.490956,2.627923,0,0,ODV:SA:CTP22511351,Europe/Paris,,ODV, +ODV:SP:22511352,1,"Rue des 14 Mines du Roy",49.490768,2.627743,0,0,ODV:SA:CTP22511351,Europe/Paris,,ODV, +ODV:SP:22511353,1,"Rue de Flandres",49.615901,2.729526,0,0,ODV:SA:CTP22511353,Europe/Paris,,ODV, +ODV:SP:22511354,1,"La Forge",49.476522,2.788272,0,0,ODV:SA:CTP22511354,Europe/Paris,,ODV, +ODV:SP:22511355,1,"Centre Jean Jaures",49.51718,2.50126,0,0,ODV:SA:CTP22404041,Europe/Paris,,ODV, +ODV:SP:22511356,1,"Grande Rue",49.308629,2.690549,0,0,ODV:SA:CTP22511356,Europe/Paris,,ODV, +ODV:SP:22511357,1,"Grande Rue",49.308656,2.69033,0,0,ODV:SA:CTP22511356,Europe/Paris,,ODV, +ODV:SP:22511358,1,"place",49.539248,2.744424,0,0,ODV:SA:CTP22511245,Europe/Paris,,ODV, +ODV:SP:22511359,1,"Avenue KENNEDY",49.225337,2.880066,0,0,ODV:SA:CTP22403886,Europe/Paris,,ODV, +ODV:SP:22511360,1,"Collège RN31",49.401464,3.017269,0,0,ODV:SA:CTP22511360,Europe/Paris,,ODV, +ODV:SP:22511361,1,"101 rue Principale",49.671716,3.070108,0,0,ODV:SA:CTP22511361,Europe/Paris,,ODV, +ODV:SP:22511362,1,"centre",49.698428,2.792962,0,0,ORL:SA:CTP27000016,Europe/Paris,,ODV, +ODV:SP:22511363,1,"Rue d'Hesdin",49.524444,3.071682,0,0,ODV:SA:CTP22404170,Europe/Paris,,ODV, +ODV:SP:22511364,1,"Huleux",49.259443,2.757524,0,0,ODV:SA:CTP22403649,Europe/Paris,,ODV, +ODV:SP:22511365,1,"Yvillers Centre",49.268333,2.673903,0,0,ODV:SA:CTP22403669,Europe/Paris,,ODV, +ODV:SP:22511366,1,"Place D'Avrigny",49.352503,2.548903,0,0,ODV:SA:CTP22413706,Europe/Paris,,ODV, +ODV:SP:22511367,1,"Eglise",49.274725,2.689184,0,0,ODV:SA:CTP22413709,Europe/Paris,,ODV, +ODV:SP:22511368,1,"Vaux-Rue des Marronniers",49.601043,2.60966,0,0,ODV:SA:CTP22511368,Europe/Paris,,ODV, +ODV:SP:22511369,1,"Mairie",49.568296,2.625642,0,0,ODV:SA:CTP22511369,Europe/Paris,,ODV, +ODV:SP:22511370,1,"Mairie",49.564368,3.059952,0,0,ODV:SA:CTP22511370,Europe/Paris,,ODV, +ODV:SP:22511371,1,"CC Jaux-Venette",49.407562,2.781359,0,0,OLO:SA:CTP13100052,Europe/Paris,,ODV, +ODV:SP:22511372,1,"Bailly rue du Grand Ferré",49.351005,2.719953,0,0,ODV:SA:CTP22511372,Europe/Paris,,ODV, +OEL:SP:2080002,1,"Avenue Reims (Lycées)",49.19168,2.571678,0,0,OEL:SA:CTP2080002,Europe/Paris,,OEL, +OEL:SP:2080006,1,"Bigüe",49.199938,2.592078,0,0,OEL:SA:CTP2080006,Europe/Paris,,OEL, +OEL:SP:2080007,1,"Bordeaux-Odent",49.205066,2.587684,0,0,OEL:SA:CTP2080007,Europe/Paris,,OEL, +OEL:SP:2080009,1,"Calvaire de Villevert",49.213249,2.579047,0,0,OEL:SA:CTP2080009,Europe/Paris,,OEL, +OEL:SP:2080012,1,"Chapelle",49.211531,2.599267,0,0,OEL:SA:CTP2080012,Europe/Paris,,OEL, +OEL:SP:2080013,1,"Chaussée Pontpoint",49.217312,2.594447,0,0,OEL:SA:CTP2080013,Europe/Paris,,OEL, +OEL:SP:2080014,1,"Chevreuils",49.194347,2.567587,0,0,OEL:SA:CTP2080014,Europe/Paris,,OEL, +OEL:SP:2080015,1,"Cité Judiciaire",49.208346,2.582306,0,0,OEL:SA:CTP2080015,Europe/Paris,,OEL, +OEL:SP:2080016,1,"Collège Fontaine des Prés",49.213722,2.577037,0,0,OEL:SA:CTP2080016,Europe/Paris,,OEL, +OEL:SP:2080017,1,"Debussy",49.205458,2.565869,0,0,OEL:SA:CTP2080017,Europe/Paris,,OEL, +OEL:SP:2080018,1,"Eugène Gazeau",49.206449,2.599469,0,0,OEL:SA:CTP2080018,Europe/Paris,,OEL, +OEL:SP:2080020,1,"Fours à chaux",49.197353,2.582042,0,0,OEL:SA:CTP2080020,Europe/Paris,,OEL, +OEL:SP:2080021,1,"Gare",49.205764,2.592372,0,0,ODV:SA:CTP22403067,Europe/Paris,,OEL, +OEL:SP:2080024,1,"Les Hauts Bois",49.196109,2.577479,0,0,OEL:SA:CTP2080024,Europe/Paris,,OEL, +OEL:SP:2080025,1,"Hôpital",49.195989,2.574773,0,0,OEL:SA:CTP2080025,Europe/Paris,,OEL, +OEL:SP:2080026,1,"Hôtel Dieu des Marais",49.19782,2.567646,0,0,OEL:SA:CTP2080026,Europe/Paris,,OEL, +OEL:SP:2080028,1,"Jardiniers",49.199148,2.586471,0,0,OEL:SA:CTP2080028,Europe/Paris,,OEL, +OEL:SP:2080029,1,"La Harde",49.19577,2.567223,0,0,OEL:SA:CTP2080029,Europe/Paris,,OEL, +OEL:SP:2080031,1,"Malgenest",49.210796,2.602558,0,0,OEL:SA:CTP2080031,Europe/Paris,,OEL, +OEL:SP:2080036,1,"Orion",49.205788,2.569693,0,0,OEL:SA:CTP2080036,Europe/Paris,,OEL, +OEL:SP:2080037,1,"Paul Rougé",49.196338,2.571672,0,0,OEL:SA:CTP2080037,Europe/Paris,,OEL, +OEL:SP:2080040,1,"Square du Haras",49.197949,2.571679,0,0,OEL:SA:CTP2080040,Europe/Paris,,OEL, +OEL:SP:2080042,1,"Tour de ville / grand Cerf",49.206776,2.589852,0,0,OEL:SA:CTP2080042,Europe/Paris,,OEL, +OEL:SP:2080044,1,"Tour de ville / grand Cerf",49.206893,2.589735,0,0,OEL:SA:CTP2080042,Europe/Paris,,OEL, +OEL:SP:2080045,1,"Ecole Notre-Dame / Cinéma",49.208752,2.585495,0,0,OEL:SA:CTP2080045,Europe/Paris,,OEL, +OEL:SP:2080046,1,"Valois",49.2087,2.599573,0,0,OEL:SA:CTP2080046,Europe/Paris,,OEL, +OEL:SP:2080047,1,"Vieux Chemin de Pont",49.212166,2.584818,0,0,OEL:SA:CTP2080047,Europe/Paris,,OEL, +OEL:SP:2085007,1,"Bordeaux-Odent",49.204444,2.586558,0,0,OEL:SA:CTP2080007,Europe/Paris,,OEL, +OEL:SP:2085009,1,"Calvaire de Villevert",49.213282,2.57914,0,0,OEL:SA:CTP2080009,Europe/Paris,,OEL, +OEL:SP:2085013,1,"Chaussée Pontpoint",49.2173,2.594498,0,0,OEL:SA:CTP2080013,Europe/Paris,,OEL, +OEL:SP:2085024,1,"Les Hauts Bois",49.196298,2.577466,0,0,OEL:SA:CTP2080024,Europe/Paris,,OEL, +OEL:SP:2085048,1,"Collège Albéric Magnard",49.20933,2.597103,0,0,OEL:SA:CTP2085048,Europe/Paris,,OEL, +OEL:SP:2085049,1,"Brichebay",49.197295,2.570804,0,0,OEL:SA:CTP2085049,Europe/Paris,,OEL, +OEL:SP:2085050,1,"Point du jour",49.202004,2.582688,0,0,OEL:SA:CTP2085050,Europe/Paris,,OEL, +OEL:SP:2085051,1,"Arènes Creil",49.206914,2.577352,0,0,ORQ:SA:CTP29000005,Europe/Paris,,OEL, +OEL:SP:2085052,1,"Mairie",49.205311,2.583521,0,0,OEL:SA:CTP2085052,Europe/Paris,,OEL, +OEL:SP:2085053,1,"Cathédrale / Office de tourisme",49.207162,2.585326,0,0,OEL:SA:CTP2085053,Europe/Paris,,OEL, +OEL:SP:2085054,1,"Ecole Notre-Dame / Cinéma",49.208674,2.585516,0,0,OEL:SA:CTP2080045,Europe/Paris,,OEL, +OEL:SP:2085055,1,"Etienne Audibert",49.204355,2.600779,0,0,OEL:SA:CTP2085055,Europe/Paris,,OEL, +OEL:SP:2085056,1,"Félix Louat",49.203531,2.606684,0,0,OEL:SA:CTP2085056,Europe/Paris,,OEL, +OEL:SP:2085057,1,"Complexe sportif des Trois Arches",49.207601,2.60575,0,0,OEL:SA:CTP2085057,Europe/Paris,,OEL, +OEL:SP:2085059,1,"Zone commerciale Villevert",49.221094,2.590113,0,0,OEL:SA:CTP2085059,Europe/Paris,,OEL, +OEL:SP:2085060,1,"Bibliothèque",49.206201,2.587555,0,0,OEL:SA:CTP2085060,Europe/Paris,,OEL, +OEL:SP:2085061,1,"Ecole Séraphine Louis",49.206256,2.581714,0,0,OEL:SA:CTP2085061,Europe/Paris,,OEL, +OEL:SP:2085062,1,"Fontaine des Arènes",49.202999,2.569986,0,0,OEL:SA:CTP2085062,Europe/Paris,,OEL, +OEL:SP:2085063,1,"Moulin Saint Tron",49.212852,2.588387,0,0,OEL:SA:CTP2085063,Europe/Paris,,OEL, +OEL:SP:2085064,1,"Joffre",49.209436,2.588538,0,0,OEL:SA:CTP2085064,Europe/Paris,,OEL, +OEL:SP:2085065,1,"Val d'Aunette",49.204647,2.570498,0,0,OEL:SA:CTP2085065,Europe/Paris,,OEL, +OEL:SP:2085068,1,"Carnot",49.212969,2.591684,0,0,OEL:SA:CTP2085068,Europe/Paris,,OEL, +OEL:SP:2085069,1,"Place des Arènes",49.206466,2.576731,0,0,ORQ:SA:CTP29000005,Europe/Paris,,OEL, +OEL:SP:2085070,1,"Avenue des Closeaux",49.199078,2.578723,0,0,OEL:SA:CTP2085070,Europe/Paris,,OEL, +OEL:SP:2085071,1,"Saint-Lazare",49.195463,2.577982,0,0,OEL:SA:CTP2085071,Europe/Paris,,OEL, +OEL:SP:2085072,1,"Avenue de la Nonette",49.198627,2.574333,0,0,OEL:SA:CTP2085072,Europe/Paris,,OEL, +OEL:SP:2085076,1,"Chaussée Brunehaut",49.207152,2.597829,0,0,OEL:SA:CTP2085076,Europe/Paris,,OEL, +OEL:SP:2085077,1,"Dupré",49.20556,2.56906,0,0,OEL:SA:CTP2085077,Europe/Paris,,OEL, +OEL:SP:2085078,1,"Albert Premier",49.20334,2.59583,0,0,OEL:SA:CTP2085078,Europe/Paris,,OEL, +OEL:SP:2085079,1,"Foch",49.210738,2.59401,0,0,OEL:SA:CTP2085079,Europe/Paris,,OEL, +OEL:SP:2085080,1,"Les jardins",49.200839,2.569652,0,0,OEL:SA:CTP2085080,Europe/Paris,,OEL, +OEL:SP:2085081,1,"Thomas Couture",49.208486,2.58828,0,0,OEL:SA:CTP2085081,Europe/Paris,,OEL, +OEL:SP:2085082,1,"Bigüe",49.199801,2.592207,0,0,OEL:SA:CTP2080006,Europe/Paris,,OEL, +OEL:SP:2085083,1,"Chapelle",49.21167,2.599282,0,0,OEL:SA:CTP2080012,Europe/Paris,,OEL, +OEL:SP:2085084,1,"Cité Judiciaire",49.208363,2.582546,0,0,OEL:SA:CTP2080015,Europe/Paris,,OEL, +OEL:SP:2085085,1,"Eugène Gazeau",49.206474,2.599525,0,0,OEL:SA:CTP2080018,Europe/Paris,,OEL, +OEL:SP:2085087,1,"Hôpital",49.196029,2.574786,0,0,OEL:SA:CTP2080025,Europe/Paris,,OEL, +OEL:SP:2085088,1,"Hôtel Dieu des Marais",49.197851,2.567732,0,0,OEL:SA:CTP2080026,Europe/Paris,,OEL, +OEL:SP:2085089,1,"Jardiniers",49.199045,2.586398,0,0,OEL:SA:CTP2080028,Europe/Paris,,OEL, +OEL:SP:2085090,1,"Orion",49.205736,2.569794,0,0,OEL:SA:CTP2080036,Europe/Paris,,OEL, +OEL:SP:2085091,1,"Paul Rougé",49.196388,2.571729,0,0,OEL:SA:CTP2080037,Europe/Paris,,OEL, +OEL:SP:2085092,1,"Square du Haras",49.197953,2.571742,0,0,OEL:SA:CTP2080040,Europe/Paris,,OEL, +OEL:SP:2085093,1,"Valois",49.208783,2.599576,0,0,OEL:SA:CTP2080046,Europe/Paris,,OEL, +OEL:SP:2085094,1,"Brichebay",49.196462,2.570253,0,0,OEL:SA:CTP2085049,Europe/Paris,,OEL, +OEL:SP:2085095,1,"Point du jour",49.201936,2.582665,0,0,OEL:SA:CTP2085050,Europe/Paris,,OEL, +OEL:SP:2085096,1,"Arènes Creil",49.206923,2.57711,0,0,ORQ:SA:CTP29000005,Europe/Paris,,OEL, +OEL:SP:2085097,1,"Mairie",49.205279,2.583498,0,0,OEL:SA:CTP2085052,Europe/Paris,,OEL, +OEL:SP:2085098,1,"Etienne Audibert",49.204386,2.601035,0,0,OEL:SA:CTP2085055,Europe/Paris,,OEL, +OEL:SP:2085099,1,"Fontaine des Arènes",49.203019,2.570231,0,0,OEL:SA:CTP2085062,Europe/Paris,,OEL, +OEL:SP:2085100,1,"Moulin Saint Tron",49.212962,2.588338,0,0,OEL:SA:CTP2085063,Europe/Paris,,OEL, +OEL:SP:2085101,1,"Val d'Aunette",49.204426,2.570119,0,0,OEL:SA:CTP2085065,Europe/Paris,,OEL, +OEL:SP:2085102,1,"Carnot",49.213081,2.591707,0,0,OEL:SA:CTP2085068,Europe/Paris,,OEL, +OEL:SP:2085103,1,"Avenue des Closeaux",49.19904,2.578518,0,0,OEL:SA:CTP2085070,Europe/Paris,,OEL, +OEL:SP:2085104,1,"Saint-Lazare",49.195565,2.577932,0,0,OEL:SA:CTP2085071,Europe/Paris,,OEL, +OEL:SP:2085105,1,"Avenue de la Nonette",49.198586,2.574358,0,0,OEL:SA:CTP2085072,Europe/Paris,,OEL, +OEL:SP:2085106,1,"Chaussée Brunehaut",49.206977,2.597562,0,0,OEL:SA:CTP2085076,Europe/Paris,,OEL, +OEL:SP:2085107,1,"Dupré",49.205517,2.568937,0,0,OEL:SA:CTP2085077,Europe/Paris,,OEL, +OEL:SP:2085108,1,"Albert Premier",49.203353,2.595939,0,0,OEL:SA:CTP2085078,Europe/Paris,,OEL, +OEL:SP:2085109,1,"Foch",49.210738,2.59401,0,0,OEL:SA:CTP2085079,Europe/Paris,,OEL, +OEL:SP:2085110,1,"Les jardins",49.200859,2.569807,0,0,OEL:SA:CTP2085080,Europe/Paris,,OEL, +OGB:SP:AIGUILL1,1,"Aiguille",47.240772,6.038847,0,0,OGB:SA:CTPAIGUILL1,Europe/Paris,0,OGB, +OGB:SP:AIGUILL2,1,"Aiguille",47.240826,6.038393,0,0,OGB:SA:CTPAIGUILL1,Europe/Paris,0,OGB, +OGB:SP:ALLEN1,1,"Allende",47.219585,5.974183,0,0,OGB:SA:CTPt_allen2,Europe/Paris,2,OGB, +OGB:SP:ALLEN2,1,"Allende",47.21991,5.973348,0,0,OGB:SA:CTPt_allen2,Europe/Paris,2,OGB, +OGB:SP:AMITIE1,1,"Amitié",47.23254,5.983451,0,0,OGB:SA:CTPAMITIE1,Europe/Paris,0,OGB, +OGB:SP:AMPERE1,1,"Ampère",47.237457,5.98833,0,0,OGB:SA:CTPAMPERE3,Europe/Paris,0,OGB, +OGB:SP:AMPERE3,1,"Ampère",47.23662,5.988662,0,0,OGB:SA:CTPAMPERE3,Europe/Paris,0,OGB, +OGB:SP:ARAGO1,1,"Campus Arago",47.250774,5.986032,0,0,OGB:SA:CTPARAGO1,Europe/Paris,0,OGB, +OGB:SP:ARAGO2,1,"Campus Arago",47.250546,5.985671,0,0,OGB:SA:CTPARAGO1,Europe/Paris,0,OGB, +OGB:SP:ATEMUNI1,1,"Ateliers Municipaux",47.236294,5.995376,0,0,OGB:SA:CTPATEMUNI1,Europe/Paris,0,OGB, +OGB:SP:ATEMUNI2,1,"Ateliers Municipaux",47.23641,5.995384,0,0,OGB:SA:CTPATEMUNI1,Europe/Paris,0,OGB, +OGB:SP:BACCHUS1,1,"Bacchus",47.24239,6.020867,0,0,OGB:SA:CTPBACCHUS2,Europe/Paris,0,OGB, +OGB:SP:BACCHUS2,1,"Bacchus",47.24262,6.021227,0,0,OGB:SA:CTPBACCHUS2,Europe/Paris,0,OGB, +OGB:SP:BAILLE1,1,"Baille",47.251816,6.035539,0,0,OGB:SA:CTPBAILLE1,Europe/Paris,0,OGB, +OGB:SP:BAILLE2,1,"Baille",47.25124,6.034726,0,0,OGB:SA:CTPBAILLE1,Europe/Paris,0,OGB, +OGB:SP:BASC1,1,"Bascule",47.230595,5.994396,0,0,OGB:SA:CTPBASC2,Europe/Paris,0,OGB, +OGB:SP:BASC2,1,"Bascule",47.230316,5.993398,0,0,OGB:SA:CTPBASC2,Europe/Paris,0,OGB, +OGB:SP:BASILIQ1,1,"Basilique",47.232895,5.988601,0,0,OGB:SA:CTPBASILIQ2,Europe/Paris,0,OGB, +OGB:SP:BASILIQ2,1,"Basilique",47.23322,5.989165,0,0,OGB:SA:CTPBASILIQ2,Europe/Paris,0,OGB, +OGB:SP:BATTANT1,1,"Battant",47.2403,6.020009,0,0,OGB:SA:CTPt_batt2,Europe/Paris,2,OGB, +OGB:SP:BAVEREZ1,1,"Baverez",47.24202,5.978793,0,0,OGB:SA:CTPBAVEREZ1,Europe/Paris,0,OGB, +OGB:SP:BAVEREZ2,1,"Baverez",47.243584,5.97854,0,0,OGB:SA:CTPBAVEREZ1,Europe/Paris,0,OGB, +OGB:SP:BEARN1,1,"Béarn",47.21667,5.963335,0,0,OGB:SA:CTPBEARN2,Europe/Paris,0,OGB, +OGB:SP:BEARN2,1,"Béarn",47.216717,5.963327,0,0,OGB:SA:CTPBEARN2,Europe/Paris,0,OGB, +OGB:SP:BEAUART1,1,"Beaux Arts",47.243366,5.98809,0,0,OGB:SA:CTPBEAUART1,Europe/Paris,0,OGB, +OGB:SP:BEAUART2,1,"Beaux Arts",47.243294,5.987499,0,0,OGB:SA:CTPBEAUART1,Europe/Paris,0,OGB, +OGB:SP:BEAUQUI1,1,"Beauquier",47.25299,6.015292,0,0,OGB:SA:CTPBEAUQUI2,Europe/Paris,0,OGB, +OGB:SP:BEAUQUI2,1,"Beauquier",47.252857,6.014761,0,0,OGB:SA:CTPBEAUQUI2,Europe/Paris,0,OGB, +OGB:SP:BELFORT1,1,"Belfort",47.256645,6.042124,0,0,OGB:SA:CTPBELFORT1,Europe/Paris,0,OGB, +OGB:SP:BELFORT2,1,"Belfort",47.25672,6.04214,0,0,OGB:SA:CTPBELFORT1,Europe/Paris,0,OGB, +OGB:SP:BELIN1,1,"Belin",47.22524,5.965668,0,0,OGB:SA:CTPBELIN2,Europe/Paris,0,OGB, +OGB:SP:BELIN2,1,"Belin",47.22512,5.965313,0,0,OGB:SA:CTPBELIN2,Europe/Paris,0,OGB, +OGB:SP:BELVEDE1,1,"Belvédère",47.250763,6.026815,0,0,OGB:SA:CTPBELVEDE1,Europe/Paris,0,OGB, +OGB:SP:BIBLIOU1,1,"Bibliothèques Univ.",47.246822,5.987577,0,0,OGB:SA:CTPBIBLIOU2,Europe/Paris,0,OGB, +OGB:SP:BIBLIOU2,1,"Bibliothèques Univ.",47.246677,5.987565,0,0,OGB:SA:CTPBIBLIOU2,Europe/Paris,0,OGB, +OGB:SP:BLPASCA1,1,"Blaise Pascal",47.21644,5.977323,0,0,OGB:SA:CTPBLPASCA2,Europe/Paris,0,OGB, +OGB:SP:BLPASCA2,1,"Blaise Pascal",47.216377,5.977516,0,0,OGB:SA:CTPBLPASCA2,Europe/Paris,0,OGB, +OGB:SP:BLUM1,1,"Blum",47.25791,6.023157,0,0,OGB:SA:CTPBLUM2,Europe/Paris,0,OGB, +OGB:SP:BLUM2,1,"Blum",47.258327,6.023718,0,0,OGB:SA:CTPBLUM2,Europe/Paris,0,OGB, +OGB:SP:BOISPAU1,1,"Bois St Paul",47.251343,6.057936,0,0,OGB:SA:CTPBOISPAU2,Europe/Paris,0,OGB, +OGB:SP:BOISPAU2,1,"Bois St Paul",47.251442,6.058323,0,0,OGB:SA:CTPBOISPAU2,Europe/Paris,0,OGB, +OGB:SP:BOUCONS1,1,"Montboucons",47.256145,5.994509,0,0,OGB:SA:CTPBOUCONS1,Europe/Paris,0,OGB, +OGB:SP:BOUCONS2,1,"Montboucons",47.256294,5.994769,0,0,OGB:SA:CTPBOUCONS1,Europe/Paris,0,OGB, +OGB:SP:BQTSO01,1,"Bouquet de Soleils",47.26603,6.023893,0,0,OGB:SA:CTPBQTSO01,Europe/Paris,0,OGB, +OGB:SP:BQTSO02,1,"Bouquet de Soleils",47.26583,6.023334,0,0,OGB:SA:CTPBQTSO01,Europe/Paris,0,OGB, +OGB:SP:BRABANT2,1,"Brabant",47.22349,5.968104,0,0,OGB:SA:CTPBRABANT2,Europe/Paris,0,OGB, +OGB:SP:BREGILLE,1,"Bregille",47.243404,6.052358,0,0,OGB:SA:CTPBREGILLE,Europe/Paris,0,OGB, +OGB:SP:BREME1,1,"Brême",47.24819,6.057385,0,0,OGB:SA:CTPBREME1,Europe/Paris,0,OGB, +OGB:SP:BREME2,1,"Brême",47.24863,6.057645,0,0,OGB:SA:CTPBREME1,Europe/Paris,0,OGB, +OGB:SP:BROGRET1,1,"Brossolette Greta",47.24895,6.003371,0,0,OGB:SA:CTPBROGRET1,Europe/Paris,0,OGB, +OGB:SP:BROGRET3,1,"Brossolette Greta",47.248978,6.003447,0,0,OGB:SA:CTPBROGRET1,Europe/Paris,0,OGB, +OGB:SP:BRULEFO1,1,"Brûlefoin",47.249584,6.042246,0,0,OGB:SA:CTPt_brule1,Europe/Paris,2,OGB, +OGB:SP:BRULEFO2,1,"Brûlefoin",47.24959,6.042134,0,0,OGB:SA:CTPt_brule1,Europe/Paris,2,OGB, +OGB:SP:BRUYERE1,1,"Bruyères",47.256477,6.024817,0,0,OGB:SA:CTPBRUYERE1,Europe/Paris,0,OGB, +OGB:SP:BRUYERE2,1,"Bruyères",47.256706,6.025162,0,0,OGB:SA:CTPBRUYERE1,Europe/Paris,0,OGB, +OGB:SP:BUFFON1,1,"Buffon",47.25507,6.01865,0,0,OGB:SA:CTPBUFFON2,Europe/Paris,0,OGB, +OGB:SP:BUFFON2,1,"Buffon",47.25524,6.018697,0,0,OGB:SA:CTPBUFFON2,Europe/Paris,0,OGB, +OGB:SP:CANALTA1,1,"Canal Tarragnoz",47.22994,6.030121,0,0,OGB:SA:CTPCANALTA1,Europe/Paris,0,OGB, +OGB:SP:CANALTA2,1,"Canal Tarragnoz",47.230053,6.029898,0,0,OGB:SA:CTPCANALTA1,Europe/Paris,0,OGB, +OGB:SP:CARMES1,1,"Carmes",47.236267,6.026047,0,0,OGB:SA:CTPCARMES1,Europe/Paris,0,OGB, +OGB:SP:CARRIER1,1,"Carrière",47.263653,6.027452,0,0,OGB:SA:CTPCARRIER1,Europe/Paris,0,OGB, +OGB:SP:CARRIER2,1,"Carrière",47.263958,6.027482,0,0,OGB:SA:CTPCARRIER1,Europe/Paris,0,OGB, +OGB:SP:CASERNE1,1,"Casernes",47.23705,6.004314,0,0,OGB:SA:CTPCASERNE1,Europe/Paris,0,OGB, +OGB:SP:CASERNE2,1,"Casernes",47.237076,6.003574,0,0,OGB:SA:CTPCASERNE1,Europe/Paris,0,OGB, +OGB:SP:CASSIN1,1,"Cassin",47.219383,5.970314,0,0,OGB:SA:CTPCASSIN2,Europe/Paris,0,OGB, +OGB:SP:CASSIN2,1,"Cassin",47.2192,5.969551,0,0,OGB:SA:CTPCASSIN2,Europe/Paris,0,OGB, +OGB:SP:CENSTPI1,1,"Centre St Pierre",47.240437,6.028455,0,0,OGB:SA:CTPCENSTPI1,Europe/Paris,0,OGB, +OGB:SP:CENSTPI2,1,"Centre St Pierre",47.24058,6.028269,0,0,OGB:SA:CTPCENSTPI1,Europe/Paris,0,OGB, +OGB:SP:CENTCOM1,1,"Espace Commercial",47.281887,5.992286,0,0,OGB:SA:CTPCENTCOM1,Europe/Paris,0,OGB, +OGB:SP:CENTCOM2,1,"Espace Commercial",47.281998,5.992452,0,0,OGB:SA:CTPCENTCOM1,Europe/Paris,0,OGB, +OGB:SP:CENTTRI1,1,"Centre de Tri",47.2363,5.998355,0,0,OGB:SA:CTPCENTTRI1,Europe/Paris,0,OGB, +OGB:SP:CENTTRI2,1,"Centre de Tri",47.236378,5.998833,0,0,OGB:SA:CTPCENTTRI1,Europe/Paris,0,OGB, +OGB:SP:CEPARGN1,1,"Caisse d'Epargne",47.222435,6.013819,0,0,OGB:SA:CTPCEPARGN2,Europe/Paris,0,OGB, +OGB:SP:CEPARGN2,1,"Caisse d'Epargne",47.222897,6.013568,0,0,OGB:SA:CTPCEPARGN2,Europe/Paris,0,OGB, +OGB:SP:CFRANCA1,1,"Chemin Français",47.249626,6.020716,0,0,OGB:SA:CTPCFRANCA1,Europe/Paris,0,OGB, +OGB:SP:CHAFFAN1,1,"Chaffanjon",47.2461,6.047886,0,0,OGB:SA:CTPCHAFFAN1,Europe/Paris,0,OGB, +OGB:SP:CHAILLE1,1,"Chaille",47.237568,5.976289,0,0,OGB:SA:CTPCHAILLE1,Europe/Paris,0,OGB, +OGB:SP:CHAILLE2,1,"Chaille",47.23757,5.976218,0,0,OGB:SA:CTPCHAILLE1,Europe/Paris,0,OGB, +OGB:SP:CHAMARS1,1,"Chamars",47.233418,6.020035,0,0,OGB:SA:CTPt_cham2,Europe/Paris,2,OGB, +OGB:SP:CHAMARS2,1,"Chamars",47.233383,6.019651,0,0,OGB:SA:CTPt_cham2,Europe/Paris,2,OGB, +OGB:SP:CHAMPET1,1,"Champêtre",47.274097,6.003043,0,0,OGB:SA:CTPCHAMPET1,Europe/Paris,0,OGB, +OGB:SP:CHAMPET2,1,"Champêtre",47.274315,6.002917,0,0,OGB:SA:CTPCHAMPET1,Europe/Paris,0,OGB, +OGB:SP:CHANOIS1,1,"Chanois",47.2487,6.027008,0,0,OGB:SA:CTPCHANOIS1,Europe/Paris,0,OGB, +OGB:SP:CHANOIS2,1,"Chanois",47.2492,6.026901,0,0,OGB:SA:CTPCHANOIS1,Europe/Paris,0,OGB, +OGB:SP:CHARDON1,1,"Chardonnet",47.23055,6.040222,0,0,OGB:SA:CTPCHARDON2,Europe/Paris,0,OGB, +OGB:SP:CHARDON2,1,"Chardonnet",47.231052,6.039756,0,0,OGB:SA:CTPCHARDON2,Europe/Paris,0,OGB, +OGB:SP:CHARIGN1,1,"Charigney",47.261307,6.048596,0,0,OGB:SA:CTPCHARIGN1,Europe/Paris,0,OGB, +OGB:SP:CHARIGN2,1,"Charigney",47.26101,6.048107,0,0,OGB:SA:CTPCHARIGN1,Europe/Paris,0,OGB, +OGB:SP:CHARMAR1,1,"Charmarin",47.228115,6.049769,0,0,OGB:SA:CTPCHARMAR2,Europe/Paris,0,OGB, +OGB:SP:CHARMAR2,1,"Charmarin",47.228275,6.050047,0,0,OGB:SA:CTPCHARMAR2,Europe/Paris,0,OGB, +OGB:SP:CHARMIL1,1,"Charmilles",47.25593,6.013273,0,0,OGB:SA:CTPCHARMIL2,Europe/Paris,0,OGB, +OGB:SP:CHARMIL2,1,"Charmilles",47.25533,6.013961,0,0,OGB:SA:CTPCHARMIL2,Europe/Paris,0,OGB, +OGB:SP:CHASNOT1,1,"Chasnot",47.252148,6.026228,0,0,OGB:SA:CTPCHASNOT1,Europe/Paris,0,OGB, +OGB:SP:CHASNOT2,1,"Chasnot",47.25194,6.026963,0,0,OGB:SA:CTPCHASNOT1,Europe/Paris,0,OGB, +OGB:SP:CHATEAU1,1,"Châteaufarine",47.215794,5.949156,0,0,OGB:SA:CTPCHATEAU1,Europe/Paris,0,OGB, +OGB:SP:CHAUDAN1,1,"Chaudanne",47.2304,6.014409,0,0,OGB:SA:CTPCHAUDAN1,Europe/Paris,0,OGB, +OGB:SP:CHAUDAN2,1,"Chaudanne",47.230503,6.014415,0,0,OGB:SA:CTPCHAUDAN1,Europe/Paris,0,OGB, +OGB:SP:CHEFOUN1,1,"Chemin des Founottes",47.258205,6.006947,0,0,OGB:SA:CTPCHEFOUN1,Europe/Paris,0,OGB, +OGB:SP:CHEFOUN2,1,"Chemin des Founottes",47.257923,6.006475,0,0,OGB:SA:CTPCHEFOUN1,Europe/Paris,0,OGB, +OGB:SP:CHEMPAL1,1,"Chemin de Palente",47.268814,6.047417,0,0,OGB:SA:CTPCHEMPAL2,Europe/Paris,0,OGB, +OGB:SP:CHEMPAL2,1,"Chemin de Palente",47.268967,6.04736,0,0,OGB:SA:CTPCHEMPAL2,Europe/Paris,0,OGB, +OGB:SP:CHEMVEL1,1,"Chemin de Velotte",47.220005,6.016436,0,0,OGB:SA:CTPCHEMVEL2,Europe/Paris,0,OGB, +OGB:SP:CHEMVEL2,1,"Chemin de Velotte",47.220257,6.016269,0,0,OGB:SA:CTPCHEMVEL2,Europe/Paris,0,OGB, +OGB:SP:CHEPLAN1,1,"Chemin des Planches",47.26713,6.037749,0,0,OGB:SA:CTPCHEPLAN2,Europe/Paris,0,OGB, +OGB:SP:CHEPLAN2,1,"Chemin des Planches",47.267063,6.037428,0,0,OGB:SA:CTPCHEPLAN2,Europe/Paris,0,OGB, +OGB:SP:CHESELL1,1,"Chemin de la Selle",47.26913,6.028084,0,0,OGB:SA:CTPCHESELL1,Europe/Paris,0,OGB, +OGB:SP:CHESELL2,1,"Chemin de la Selle",47.269455,6.028132,0,0,OGB:SA:CTPCHESELL1,Europe/Paris,0,OGB, +OGB:SP:CHEVREU1,1,"Chevreuse",47.28684,5.992957,0,0,OGB:SA:CTPCHEVREU1,Europe/Paris,0,OGB, +OGB:SP:CHNODIER,1,"Nodier",47.233276,6.022916,0,0,OGB:SA:CTPCHNODIER,Europe/Paris,0,OGB, +OGB:SP:CHOPIN1,1,"Chopin",47.26223,6.039651,0,0,OGB:SA:CTPCHOPIN1,Europe/Paris,0,OGB, +OGB:SP:CHOPIN2,1,"Chopin",47.26269,6.040741,0,0,OGB:SA:CTPCHOPIN1,Europe/Paris,0,OGB, +OGB:SP:CHURCHI1,1,"Churchill",47.251026,6.009854,0,0,OGB:SA:CTPCHURCHI2,Europe/Paris,0,OGB, +OGB:SP:CHURCHI2,1,"Churchill",47.25109,6.009383,0,0,OGB:SA:CTPCHURCHI2,Europe/Paris,0,OGB, +OGB:SP:CHVALEN1,1,"Chemin de Valentin",47.27074,6.007254,0,0,OGB:SA:CTPCHVALEN1,Europe/Paris,0,OGB, +OGB:SP:CHVALEN2,1,"Chemin de Valentin",47.270634,6.007419,0,0,OGB:SA:CTPCHVALEN1,Europe/Paris,0,OGB, +OGB:SP:CIMAVAN1,1,"Cimetière d'Avanne",47.20509,5.965302,0,0,OGB:SA:CTPCIMAVAN1,Europe/Paris,0,OGB, +OGB:SP:CIMCLA1,1,"Cimetière St Claude",47.26145,6.019935,0,0,OGB:SA:CTPCIMCLA1,Europe/Paris,0,OGB, +OGB:SP:CIMCLA2,1,"Cimetière St Claude",47.261353,6.019765,0,0,OGB:SA:CTPCIMCLA1,Europe/Paris,0,OGB, +OGB:SP:CITAR01,1,"Cité des Arts",47.23615,6.033246,0,0,OGB:SA:CTPCITAR02,Europe/Paris,0,OGB, +OGB:SP:CITAR02,1,"Cité des Arts",47.236073,6.033217,0,0,OGB:SA:CTPCITAR02,Europe/Paris,0,OGB, +OGB:SP:CITBAUM1,1,"Cité de la Baume",47.245937,5.997644,0,0,OGB:SA:CTPCITBAUM1,Europe/Paris,0,OGB, +OGB:SP:CITY1,1,"La City",47.234848,6.015483,0,0,OGB:SA:CTPCITY1,Europe/Paris,0,OGB, +OGB:SP:CITY2,1,"La City",47.23479,6.015423,0,0,OGB:SA:CTPCITY1,Europe/Paris,0,OGB, +OGB:SP:CLAIRSO1,1,"Clairs Soleils",47.24992,6.058834,0,0,OGB:SA:CTPCLAIRSO1,Europe/Paris,0,OGB, +OGB:SP:CLAIRSO2,1,"Clairs Soleils",47.25037,6.059256,0,0,OGB:SA:CTPCLAIRSO1,Europe/Paris,0,OGB, +OGB:SP:CLEMENC1,1,"Clemenceau",47.24133,6.01423,0,0,OGB:SA:CTPCLEMENC1,Europe/Paris,0,OGB, +OGB:SP:CLEMENC2,1,"Clemenceau",47.24162,6.01442,0,0,OGB:SA:CTPCLEMENC1,Europe/Paris,0,OGB, +OGB:SP:COLCAM1,1,"Collège Camus",47.258923,6.010331,0,0,OGB:SA:CTPCOLCAM1,Europe/Paris,0,OGB, +OGB:SP:COLCAM2,1,"Collège Camus",47.258938,6.010316,0,0,OGB:SA:CTPCOLCAM1,Europe/Paris,0,OGB, +OGB:SP:COLOMBO1,1,"Colombot",47.24508,6.045645,0,0,OGB:SA:CTPCOLOMBO1,Europe/Paris,0,OGB, +OGB:SP:COLOMBO2,1,"Colombot",47.24517,6.045755,0,0,OGB:SA:CTPCOLOMBO1,Europe/Paris,0,OGB, +OGB:SP:COLPROU1,1,"Collège Proudhon",47.26656,6.046761,0,0,OGB:SA:CTPCOLPROU2,Europe/Paris,0,OGB, +OGB:SP:COLPROU2,1,"Collège Proudhon",47.2671,6.04713,0,0,OGB:SA:CTPCOLPROU2,Europe/Paris,0,OGB, +OGB:SP:COLSENE1,1,"Colsenet",47.250854,6.022293,0,0,OGB:SA:CTPCOLSENE1,Europe/Paris,0,OGB, +OGB:SP:COLSENE2,1,"Colsenet",47.251442,6.021145,0,0,OGB:SA:CTPCOLSENE1,Europe/Paris,0,OGB, +OGB:SP:CONCORD1,1,"Concorde",47.229027,5.988835,0,0,OGB:SA:CTPCONCORD2,Europe/Paris,0,OGB, +OGB:SP:CONCORD2,1,"Concorde",47.229233,5.989507,0,0,OGB:SA:CTPCONCORD2,Europe/Paris,0,OGB, +OGB:SP:CORVEE1,1,"Corvée",47.25942,6.04388,0,0,OGB:SA:CTPCORVEE2,Europe/Paris,0,OGB, +OGB:SP:CORVEE2,1,"Corvée",47.25932,6.043778,0,0,OGB:SA:CTPCORVEE2,Europe/Paris,0,OGB, +OGB:SP:COURBET1,1,"Courbet",47.240883,6.025303,0,0,OGB:SA:CTPCOURBET1,Europe/Paris,0,OGB, +OGB:SP:COURTIL2,1,"Courtils",47.265015,6.046069,0,0,OGB:SA:CTPCOURTIL2,Europe/Paris,0,OGB, +OGB:SP:CRASROU1,1,"Cras Rougeot",47.216473,6.002803,0,0,OGB:SA:CTPCRASROU2,Europe/Paris,0,OGB, +OGB:SP:CRASROU2,1,"Cras Rougeot",47.216785,6.003529,0,0,OGB:SA:CTPCRASROU2,Europe/Paris,0,OGB, +OGB:SP:CROIXAR1,1,"Croix d'Arènes",47.234863,6.012517,0,0,OGB:SA:CTPCROIXAR2,Europe/Paris,0,OGB, +OGB:SP:CROIXAR2,1,"Croix d'Arènes",47.235172,6.012653,0,0,OGB:SA:CTPCROIXAR2,Europe/Paris,0,OGB, +OGB:SP:CROIZ01,1,"Croizat",47.221615,5.959959,0,0,OGB:SA:CTPCROIZ01,Europe/Paris,0,OGB, +OGB:SP:CROIZ02,1,"Croizat",47.221527,5.96,0,0,OGB:SA:CTPCROIZ01,Europe/Paris,0,OGB, +OGB:SP:CROUUNI1,1,"Crous Université",47.24838,5.98683,0,0,OGB:SA:CTPCROUUNI2,Europe/Paris,0,OGB, +OGB:SP:CROUUNI2,1,"Crous Université",47.24853,5.98644,0,0,OGB:SA:CTPCROUUNI2,Europe/Paris,0,OGB, +OGB:SP:CULPRES1,1,"Cul des Prés",47.26978,6.043004,0,0,OGB:SA:CTPCULPRES2,Europe/Paris,0,OGB, +OGB:SP:CULPRES2,1,"Cul des Prés",47.269806,6.042978,0,0,OGB:SA:CTPCULPRES2,Europe/Paris,0,OGB, +OGB:SP:CVIOTTE1,1,"Cité Viotte",47.25211,6.022685,0,0,OGB:SA:CTPCVIOTTE1,Europe/Paris,0,OGB, +OGB:SP:CVIOTTE2,1,"Cité Viotte",47.251965,6.022374,0,0,OGB:SA:CTPCVIOTTE1,Europe/Paris,0,OGB, +OGB:SP:DANTON1,1,"Danton",47.243538,6.049076,0,0,OGB:SA:CTPDANTON1,Europe/Paris,0,OGB, +OGB:SP:DANTON2,1,"Danton",47.243885,6.048732,0,0,OGB:SA:CTPDANTON1,Europe/Paris,0,OGB, +OGB:SP:DAVID1,1,"David",47.23722,6.00638,0,0,OGB:SA:CTPDAVID1,Europe/Paris,0,OGB, +OGB:SP:DAVID2,1,"David",47.237087,6.005687,0,0,OGB:SA:CTPDAVID1,Europe/Paris,0,OGB, +OGB:SP:DEBUSSY1,1,"Debussy",47.25902,6.039386,0,0,OGB:SA:CTPDEBUSSY2,Europe/Paris,0,OGB, +OGB:SP:DEBUSSY2,1,"Debussy",47.258698,6.038877,0,0,OGB:SA:CTPDEBUSSY2,Europe/Paris,0,OGB, +OGB:SP:DEMAN1,1,"Demangel",47.24433,6.011668,0,0,OGB:SA:CTPDEMAN1,Europe/Paris,0,OGB, +OGB:SP:DEMAN2,1,"Demangel",47.24463,6.011316,0,0,OGB:SA:CTPDEMAN1,Europe/Paris,0,OGB, +OGB:SP:DENROCH1,1,"Denfert Rochereau",47.243217,6.026273,0,0,OGB:SA:CTPDENROCH1,Europe/Paris,0,OGB, +OGB:SP:DENROCH2,1,"Denfert Rochereau",47.243076,6.026127,0,0,OGB:SA:CTPDENROCH1,Europe/Paris,0,OGB, +OGB:SP:DEVIGNY1,1,"De Vigny",47.21521,5.961123,0,0,OGB:SA:CTPDEVIGNY2,Europe/Paris,0,OGB, +OGB:SP:DEVIGNY2,1,"De Vigny",47.215397,5.961896,0,0,OGB:SA:CTPDEVIGNY2,Europe/Paris,0,OGB, +OGB:SP:DEVILLE1,1,"Deville",47.247513,6.006425,0,0,OGB:SA:CTPDEVILLE1,Europe/Paris,0,OGB, +OGB:SP:DEVILLE2,1,"Deville",47.24773,6.006003,0,0,OGB:SA:CTPDEVILLE1,Europe/Paris,0,OGB, +OGB:SP:DIDEROT1,1,"Diderot",47.24245,6.033733,0,0,OGB:SA:CTPDIDEROT1,Europe/Paris,0,OGB, +OGB:SP:DIDEROT2,1,"Diderot",47.242455,6.033615,0,0,OGB:SA:CTPDIDEROT1,Europe/Paris,0,OGB, +OGB:SP:DOLTO01,1,"Dolto",47.2231,5.960158,0,0,OGB:SA:CTPDOLTO01,Europe/Paris,0,OGB, +OGB:SP:DOLTO02,1,"Dolto",47.223076,5.960305,0,0,OGB:SA:CTPDOLTO01,Europe/Paris,0,OGB, +OGB:SP:DONZELO1,1,"Donzelot",47.249332,6.051472,0,0,OGB:SA:CTPDONZELO1,Europe/Paris,0,OGB, +OGB:SP:DONZELO2,1,"Donzelot",47.24951,6.049993,0,0,OGB:SA:CTPDONZELO1,Europe/Paris,0,OGB, +OGB:SP:DUCHAIL1,1,"Duchaillut",47.25307,6.03025,0,0,OGB:SA:CTPDUCHAIL1,Europe/Paris,0,OGB, +OGB:SP:DUET1,1,"Duet",47.248276,6.043374,0,0,OGB:SA:CTPDUET1,Europe/Paris,0,OGB, +OGB:SP:DUET2,1,"Duet",47.248524,6.044344,0,0,OGB:SA:CTPDUET1,Europe/Paris,0,OGB, +OGB:SP:ECHVALE1,1,"Echangeur de Valentin",47.278015,5.993835,0,0,OGB:SA:CTPECHVALE1,Europe/Paris,0,OGB, +OGB:SP:ECHVALE2,1,"Echangeur de Valentin",47.277508,5.994129,0,0,OGB:SA:CTPECHVALE1,Europe/Paris,0,OGB, +OGB:SP:ECOLE4V1,1,"Ecole des 4 vents",47.26345,6.032395,0,0,OGB:SA:CTPECOLE4V2,Europe/Paris,0,OGB, +OGB:SP:ECOLE4V2,1,"Ecole des 4 vents",47.26349,6.032386,0,0,OGB:SA:CTPECOLE4V2,Europe/Paris,0,OGB, +OGB:SP:ECOLETO1,1,"Ecole des Torcols",47.269123,6.008686,0,0,OGB:SA:CTPECOLETO1,Europe/Paris,0,OGB, +OGB:SP:ECOLETO2,1,"Ecole des Torcols",47.26985,6.008076,0,0,OGB:SA:CTPECOLETO1,Europe/Paris,0,OGB, +OGB:SP:EDISON1,1,"Edison",47.234226,5.978678,0,0,OGB:SA:CTPEDISON2,Europe/Paris,0,OGB, +OGB:SP:EDISON2,1,"Edison",47.23418,5.978369,0,0,OGB:SA:CTPEDISON2,Europe/Paris,0,OGB, +OGB:SP:EINSTEI1,1,"Einstein",47.225483,5.972034,0,0,OGB:SA:CTPEINSTEI1,Europe/Paris,0,OGB, +OGB:SP:ENSMM1,1,"ENSMM",47.249638,5.993191,0,0,OGB:SA:CTPENSMM1,Europe/Paris,0,OGB, +OGB:SP:ENSMM2,1,"ENSMM",47.24993,5.993004,0,0,OGB:SA:CTPENSMM1,Europe/Paris,0,OGB, +OGB:SP:ENVELME1,1,"Envelmey",47.24672,6.054475,0,0,OGB:SA:CTPENVELME1,Europe/Paris,0,OGB, +OGB:SP:ENVELME2,1,"Envelmey",47.246902,6.05485,0,0,OGB:SA:CTPENVELME1,Europe/Paris,0,OGB, +OGB:SP:ESAVOYE1,1,"Eugène Savoye",47.24947,6.02298,0,0,OGB:SA:CTPESAVOYE1,Europe/Paris,0,OGB, +OGB:SP:ESCALE1,1,"Escale",47.258003,5.999158,0,0,OGB:SA:CTPESCALE1,Europe/Paris,0,OGB, +OGB:SP:ESCALE2,1,"Escale",47.258198,5.999084,0,0,OGB:SA:CTPESCALE1,Europe/Paris,0,OGB, +OGB:SP:ESPERAN1,1,"Espérance",47.261852,6.027439,0,0,OGB:SA:CTPESPERAN1,Europe/Paris,0,OGB, +OGB:SP:ESPERAN2,1,"Espérance",47.26145,6.027528,0,0,OGB:SA:CTPESPERAN1,Europe/Paris,0,OGB, +OGB:SP:ESPLAN1,1,"Esplanade",47.23478,6.020848,0,0,OGB:SA:CTPESPLAN1,Europe/Paris,0,OGB, +OGB:SP:ESSARTS1,1,"Essarts",47.268227,6.010089,0,0,OGB:SA:CTPESSARTS1,Europe/Paris,0,OGB, +OGB:SP:ESSARTS2,1,"Essarts",47.2682,6.010196,0,0,OGB:SA:CTPESSARTS1,Europe/Paris,0,OGB, +OGB:SP:FABRE1,1,"Fabre",47.239,6.039701,0,0,OGB:SA:CTPFABRE1,Europe/Paris,0,OGB, +OGB:SP:FABRE2,1,"Fabre",47.238865,6.039383,0,0,OGB:SA:CTPFABRE1,Europe/Paris,0,OGB, +OGB:SP:FANART1,1,"Fanart",47.24649,6.011555,0,0,OGB:SA:CTPFANART1,Europe/Paris,0,OGB, +OGB:SP:FANART2,1,"Fanart",47.24661,6.011541,0,0,OGB:SA:CTPFANART1,Europe/Paris,0,OGB, +OGB:SP:FAUBTAR1,1,"Faubourg Tarragnoz",47.22884,6.031476,0,0,OGB:SA:CTPFAUBTAR1,Europe/Paris,0,OGB, +OGB:SP:FAUBTAR2,1,"Faubourg Tarragnoz",47.228947,6.031465,0,0,OGB:SA:CTPFAUBTAR1,Europe/Paris,0,OGB, +OGB:SP:FCLERC1,1,"Francis Clerc",47.255135,6.023194,0,0,OGB:SA:CTPFCLERC1,Europe/Paris,0,OGB, +OGB:SP:FCLERC3,1,"Francis Clerc",47.25536,6.022604,0,0,OGB:SA:CTPFCLERC1,Europe/Paris,0,OGB, +OGB:SP:FLANDRE1,1,"Flandres",47.224888,5.973512,0,0,OGB:SA:CTPFLANDRE2,Europe/Paris,0,OGB, +OGB:SP:FLANDRE2,1,"Flandres",47.22443,5.97165,0,0,OGB:SA:CTPFLANDRE2,Europe/Paris,0,OGB, +OGB:SP:FLEMING1,1,"Fleming",47.23086,5.96804,0,0,OGB:SA:CTPFLEMING2,Europe/Paris,0,OGB, +OGB:SP:FLEMING2,1,"Fleming",47.23071,5.967651,0,0,OGB:SA:CTPFLEMING2,Europe/Paris,0,OGB, +OGB:SP:FLORE2,1,"Flore",47.246075,6.028145,0,0,OGB:SA:CTPt_flo2,Europe/Paris,2,OGB, +OGB:SP:FLORE4,1,"Flore",47.24562,6.028358,0,0,OGB:SA:CTPt_flo2,Europe/Paris,2,OGB, +OGB:SP:FLSAUT01,1,"Feuilles d'Automne",47.263287,6.022851,0,0,OGB:SA:CTPFLSAUT01,Europe/Paris,0,OGB, +OGB:SP:FLSAUT02,1,"Feuilles d'Automne",47.263992,6.022766,0,0,OGB:SA:CTPFLSAUT01,Europe/Paris,0,OGB, +OGB:SP:FLUAGA1,1,"Fluttes Agasses",47.256897,6.028307,0,0,OGB:SA:CTPFLUAGA1,Europe/Paris,0,OGB, +OGB:SP:FLUAGA2,1,"Fluttes Agasses",47.257416,6.028446,0,0,OGB:SA:CTPFLUAGA1,Europe/Paris,0,OGB, +OGB:SP:FONTEC1,1,"Fontaine Ecu",47.250153,6.009932,0,0,OGB:SA:CTPFONTEC1,Europe/Paris,0,OGB, +OGB:SP:FONTEC2,1,"Fontaine Ecu",47.250546,6.009618,0,0,OGB:SA:CTPFONTEC1,Europe/Paris,0,OGB, +OGB:SP:FONTENO1,1,"Fontenottes",47.23859,6.036258,0,0,OGB:SA:CTPFONTENO1,Europe/Paris,0,OGB, +OGB:SP:FONTENO2,1,"Fontenottes",47.23868,6.036224,0,0,OGB:SA:CTPFONTENO1,Europe/Paris,0,OGB, +OGB:SP:FORBENO1,1,"Fort Benoît",47.26272,6.050981,0,0,OGB:SA:CTPt_fben1,Europe/Paris,2,OGB, +OGB:SP:FORTBRE1,1,"Fort de Bregille",47.240208,6.041531,0,0,OGB:SA:CTPFORTBRE1,Europe/Paris,0,OGB, +OGB:SP:FORTBRE2,1,"Fort de Bregille",47.239983,6.041283,0,0,OGB:SA:CTPFORTBRE1,Europe/Paris,0,OGB, +OGB:SP:FOUNOTTE,1,"Founottes",47.261044,5.995986,0,0,OGB:SA:CTPFOUNOTTE,Europe/Paris,0,OGB, +OGB:SP:FOURIER1,1,"Fourier",47.251152,6.030501,0,0,OGB:SA:CTPFOURIER1,Europe/Paris,0,OGB, +OGB:SP:FOYER1,1,"Foyer",47.249763,6.055562,0,0,OGB:SA:CTPFOYER1,Europe/Paris,0,OGB, +OGB:SP:FOYER2,1,"Foyer",47.249622,6.05512,0,0,OGB:SA:CTPFOYER1,Europe/Paris,0,OGB, +OGB:SP:FRANCE31,1,"France 3",47.231724,6.023316,0,0,OGB:SA:CTPFRANCE31,Europe/Paris,0,OGB, +OGB:SP:FRESNEL1,1,"Fresnel",47.232925,5.973859,0,0,OGB:SA:CTPFRESNEL2,Europe/Paris,0,OGB, +OGB:SP:FRESNEL2,1,"Fresnel",47.232803,5.973448,0,0,OGB:SA:CTPFRESNEL2,Europe/Paris,0,OGB, +OGB:SP:FUNICUL1,1,"Funiculaire",47.241306,6.034162,0,0,OGB:SA:CTPFUNICUL1,Europe/Paris,0,OGB, +OGB:SP:FUNICUL2,1,"Funiculaire",47.241497,6.034096,0,0,OGB:SA:CTPFUNICUL1,Europe/Paris,0,OGB, +OGB:SP:GACOGNE1,1,"Cité des Gacognes",47.22825,6.043898,0,0,OGB:SA:CTPGACOGNE2,Europe/Paris,0,OGB, +OGB:SP:GACOGNE2,1,"Cité des Gacognes",47.228252,6.043988,0,0,OGB:SA:CTPGACOGNE2,Europe/Paris,0,OGB, +OGB:SP:GAIFFE1,1,"Gaiffe",47.24273,6.041277,0,0,OGB:SA:CTPGAIFFE1,Europe/Paris,0,OGB, +OGB:SP:GAIFFE2,1,"Gaiffe",47.242603,6.041213,0,0,OGB:SA:CTPGAIFFE1,Europe/Paris,0,OGB, +OGB:SP:GAREMOU1,1,"Gare de la Mouillère",47.240574,6.033455,0,0,SIN:SA:OCE87718015,Europe/Paris,0,OGB, +OGB:SP:GAREMOU2,1,"Gare de la Mouillère",47.24111,6.032986,0,0,SIN:SA:OCE87718015,Europe/Paris,0,OGB, +OGB:SP:GAREVIO1,1,"Gare Viotte",47.24618,6.022168,0,0,OGB:SA:CTPt_gvio2,Europe/Paris,2,OGB, +OGB:SP:GAREVIO2,1,"Gare Viotte",47.246204,6.021949,0,0,OGB:SA:CTPt_gvio2,Europe/Paris,2,OGB, +OGB:SP:GARNIER1,1,"Garnier",47.2157,5.967318,0,0,OGB:SA:CTPGARNIER1,Europe/Paris,0,OGB, +OGB:SP:GARNIER2,1,"Garnier",47.215572,5.967205,0,0,OGB:SA:CTPGARNIER1,Europe/Paris,0,OGB, +OGB:SP:GAUGIN1,1,"Gauguin",47.21765,5.976064,0,0,OGB:SA:CTPGAUGIN2,Europe/Paris,0,OGB, +OGB:SP:GAUGIN2,1,"Gauguin",47.21781,5.975967,0,0,OGB:SA:CTPGAUGIN2,Europe/Paris,0,OGB, +OGB:SP:GIBELOT1,1,"Gibelotte",47.24246,6.009829,0,0,OGB:SA:CTPGIBELOT2,Europe/Paris,0,OGB, +OGB:SP:GIBELOT2,1,"Gibelotte",47.242455,6.009687,0,0,OGB:SA:CTPGIBELOT2,Europe/Paris,0,OGB, +OGB:SP:GOUNOD1,1,"Gounod",47.261578,6.036547,0,0,OGB:SA:CTPGOUNOD1,Europe/Paris,0,OGB, +OGB:SP:GOUNOD2,1,"Gounod",47.261646,6.036367,0,0,OGB:SA:CTPGOUNOD1,Europe/Paris,0,OGB, +OGB:SP:GRANGES1,1,"Granges",47.23782,6.0264,0,0,OGB:SA:CTPGRANGES1,Europe/Paris,0,OGB, +OGB:SP:GRANVEL1,1,"Granvelle",47.23531,6.0254,0,0,OGB:SA:CTPGRANVEL1,Europe/Paris,0,OGB, +OGB:SP:GRANVEL2,1,"Granvelle",47.235344,6.025431,0,0,OGB:SA:CTPGRANVEL1,Europe/Paris,0,OGB, +OGB:SP:GRAY1,1,"Gray",47.242977,5.985615,0,0,OGB:SA:CTPGRAY2,Europe/Paris,0,OGB, +OGB:SP:GRAY2,1,"Gray",47.242737,5.985607,0,0,OGB:SA:CTPGRAY2,Europe/Paris,0,OGB, +OGB:SP:GRDBUIS1,1,"Grand Buisson",47.26762,6.049021,0,0,OGB:SA:CTPGRDBUIS2,Europe/Paris,0,OGB, +OGB:SP:GRDBUIS2,1,"Grand Buisson",47.267296,6.049666,0,0,OGB:SA:CTPGRDBUIS2,Europe/Paris,0,OGB, +OGB:SP:GRDPRES1,1,"Grand Prés",47.206657,5.964706,0,0,OGB:SA:CTPGRDPRES2,Europe/Paris,0,OGB, +OGB:SP:GRDPRES2,1,"Grand Prés",47.20646,5.964688,0,0,OGB:SA:CTPGRDPRES2,Europe/Paris,0,OGB, +OGB:SP:GRENOT1,1,"Grenot",47.256027,6.016751,0,0,OGB:SA:CTPGRENOT1,Europe/Paris,0,OGB, +OGB:SP:GRENOT2,1,"Grenot",47.256367,6.016822,0,0,OGB:SA:CTPGRENOT1,Europe/Paris,0,OGB, +OGB:SP:HBAIGUE1,1,"Henri Baigue",47.253494,6.025517,0,0,OGB:SA:CTPHBAIGUE1,Europe/Paris,0,OGB, +OGB:SP:HBAIGUE2,1,"Henri Baigue",47.253513,6.025601,0,0,OGB:SA:CTPHBAIGUE1,Europe/Paris,0,OGB, +OGB:SP:HEITZ1,1,"Heitz",47.24416,6.043637,0,0,OGB:SA:CTPHEITZ1,Europe/Paris,0,OGB, +OGB:SP:HEITZ2,1,"Heitz",47.244274,6.043858,0,0,OGB:SA:CTPHEITZ1,Europe/Paris,0,OGB, +OGB:SP:HMAI1,1,"8 Mai",47.234844,6.018151,0,0,OGB:SA:CTPHMAI1,Europe/Paris,0,OGB, +OGB:SP:HMAI2,1,"8 Mai",47.23482,6.018301,0,0,OGB:SA:CTPHMAI1,Europe/Paris,0,OGB, +OGB:SP:HUITSEP1,1,"8 Septembre",47.2378,6.024275,0,0,OGB:SA:CTPHUITSEP1,Europe/Paris,0,OGB, +OGB:SP:INTERMA1,1,"Intermarché",47.24769,5.999639,0,0,OGB:SA:CTPINTERMA1,Europe/Paris,0,OGB, +OGB:SP:INTERMA2,1,"Intermarché",47.247562,5.999067,0,0,OGB:SA:CTPINTERMA1,Europe/Paris,0,OGB, +OGB:SP:ISENBAR1,1,"Isenbart",47.242905,6.025027,0,0,OGB:SA:CTPISENBAR2,Europe/Paris,0,OGB, +OGB:SP:ISENBAR2,1,"Isenbart",47.242767,6.025262,0,0,OGB:SA:CTPISENBAR2,Europe/Paris,0,OGB, +OGB:SP:IUT1,1,"IUT",47.24727,5.99294,0,0,OGB:SA:CTPIUT2,Europe/Paris,0,OGB, +OGB:SP:IUT2,1,"IUT",47.24731,5.99277,0,0,OGB:SA:CTPIUT2,Europe/Paris,0,OGB, +OGB:SP:JACQUAR1,1,"Jacquard",47.23823,5.994144,0,0,OGB:SA:CTPJACQUAR1,Europe/Paris,0,OGB, +OGB:SP:JACQUAR2,1,"Jacquard",47.23848,5.994023,0,0,OGB:SA:CTPJACQUAR1,Europe/Paris,0,OGB, +OGB:SP:JANVIER2,1,"Janvier",47.237698,6.015066,0,0,OGB:SA:CTPJANVIER2,Europe/Paris,0,OGB, +OGB:SP:JEANCOR1,1,"Jean Cornet",47.23638,6.028897,0,0,OGB:SA:CTPJEANCOR1,Europe/Paris,0,OGB, +OGB:SP:JEANJAU1,1,"Jean Jaurès",47.232517,6.002034,0,0,OGB:SA:CTPJEANJAU2,Europe/Paris,0,OGB, +OGB:SP:JEANJAU2,1,"Jean Jaurès",47.232353,6.001019,0,0,OGB:SA:CTPJEANJAU2,Europe/Paris,0,OGB, +OGB:SP:JEANNET2,1,"Jeannettes",47.262196,6.047158,0,0,OGB:SA:CTPJEANNET2,Europe/Paris,0,OGB, +OGB:SP:JOUCHOU1,1,"Jouchoux",47.239464,5.987433,0,0,OGB:SA:CTPJOUCHOU2,Europe/Paris,0,OGB, +OGB:SP:JOUCHOU2,1,"Jouchoux",47.23921,5.987526,0,0,OGB:SA:CTPJOUCHOU2,Europe/Paris,0,OGB, +OGB:SP:JOURNAU1,1,"Journaux",47.219395,6.014387,0,0,OGB:SA:CTPJOURNAU2,Europe/Paris,0,OGB, +OGB:SP:JOURNAU2,1,"Journaux",47.219437,6.014093,0,0,OGB:SA:CTPJOURNAU2,Europe/Paris,0,OGB, +OGB:SP:JULEHAG1,1,"Lycée Jules Haag",47.23789,6.012573,0,0,OGB:SA:CTPJULEHAG2,Europe/Paris,0,OGB, +OGB:SP:JULEHAG2,1,"Lycée Jules Haag",47.239002,6.011634,0,0,OGB:SA:CTPJULEHAG2,Europe/Paris,0,OGB, +OGB:SP:JUSTICE1,1,"Justices",47.254726,6.014658,0,0,OGB:SA:CTPJUSTICE2,Europe/Paris,0,OGB, +OGB:SP:JUSTICE2,1,"Justices",47.25436,6.01496,0,0,OGB:SA:CTPJUSTICE2,Europe/Paris,0,OGB, +OGB:SP:KENNEDY1,1,"Kennedy",47.2386,5.988867,0,0,OGB:SA:CTPKENNEDY1,Europe/Paris,0,OGB, +OGB:SP:KENNEDY2,1,"Kennedy",47.238766,5.988705,0,0,OGB:SA:CTPKENNEDY1,Europe/Paris,0,OGB, +OGB:SP:KEPLER1,1,"Kepler",47.248245,5.997104,0,0,OGB:SA:CTPKEPLER1,Europe/Paris,0,OGB, +OGB:SP:KEPLER2,1,"Kepler",47.24869,5.996589,0,0,OGB:SA:CTPKEPLER1,Europe/Paris,0,OGB, +OGB:SP:KOSMA1,1,"Kosma",47.236305,5.96637,0,0,OGB:SA:CTPKOSMA1,Europe/Paris,0,OGB, +OGB:SP:KOSMA2,1,"Kosma",47.236435,5.965703,0,0,OGB:SA:CTPKOSMA1,Europe/Paris,0,OGB, +OGB:SP:LABUTTE2,1,"La Butte",47.234295,6.008565,0,0,OGB:SA:CTPLABUTTE2,Europe/Paris,0,OGB, +OGB:SP:LABUTTE3,1,"La Butte",47.234303,6.008889,0,0,OGB:SA:CTPLABUTTE2,Europe/Paris,0,OGB, +OGB:SP:LAFAYET1,1,"La Fayette",47.212135,5.971709,0,0,OGB:SA:CTPLAFAYET2,Europe/Paris,0,OGB, +OGB:SP:LAFAYET2,1,"La Fayette",47.21211,5.971838,0,0,OGB:SA:CTPLAFAYET2,Europe/Paris,0,OGB, +OGB:SP:LANCHY1,1,"Lanchy",47.25871,6.028651,0,0,OGB:SA:CTPLANCHY2,Europe/Paris,0,OGB, +OGB:SP:LANCHY2,1,"Lanchy",47.258602,6.02871,0,0,OGB:SA:CTPLANCHY2,Europe/Paris,0,OGB, +OGB:SP:LANGUED1,1,"Languedoc",47.218864,5.965041,0,0,OGB:SA:CTPLANGUED1,Europe/Paris,0,OGB, +OGB:SP:LANGUED2,1,"Languedoc",47.218678,5.964887,0,0,OGB:SA:CTPLANGUED1,Europe/Paris,0,OGB, +OGB:SP:LARMET1,1,"Larmet",47.24955,6.019724,0,0,OGB:SA:CTPLARMET2,Europe/Paris,0,OGB, +OGB:SP:LARMET2,1,"Larmet",47.24926,6.020014,0,0,OGB:SA:CTPLARMET2,Europe/Paris,0,OGB, +OGB:SP:LAVOISI1,1,"Lavoisier",47.235012,5.984728,0,0,OGB:SA:CTPLAVOISI2,Europe/Paris,0,OGB, +OGB:SP:LAVOISI2,1,"Lavoisier",47.235043,5.98457,0,0,OGB:SA:CTPLAVOISI2,Europe/Paris,0,OGB, +OGB:SP:LEBEUF1,1,"Lebeuf",47.258564,6.044786,0,0,OGB:SA:CTPLEBEUF1,Europe/Paris,0,OGB, +OGB:SP:LEBEUF2,1,"Lebeuf",47.259277,6.045693,0,0,OGB:SA:CTPLEBEUF1,Europe/Paris,0,OGB, +OGB:SP:LECOURB1,1,"Lecourbe",47.23057,6.02812,0,0,OGB:SA:CTPLECOURB1,Europe/Paris,0,OGB, +OGB:SP:LECOURB2,1,"Lecourbe",47.231506,6.026261,0,0,OGB:SA:CTPLECOURB1,Europe/Paris,0,OGB, +OGB:SP:LIBERTE3,1,"Liberté",47.247612,6.028507,0,0,OGB:SA:CTPLIBERTE4,Europe/Paris,0,OGB, +OGB:SP:LIBERTE4,1,"Liberté",47.247437,6.028415,0,0,OGB:SA:CTPLIBERTE4,Europe/Paris,0,OGB, +OGB:SP:LUMIERE1,1,"Lumière",47.251083,6.018096,0,0,OGB:SA:CTPLUMIERE2,Europe/Paris,0,OGB, +OGB:SP:LUMIERE2,1,"Lumière",47.250782,6.018365,0,0,OGB:SA:CTPLUMIERE2,Europe/Paris,0,OGB, +OGB:SP:LUXEMBO2,1,"Luxembourg",47.222607,5.966684,0,0,OGB:SA:CTPLUXEMBO2,Europe/Paris,0,OGB, +OGB:SP:LYCEE2,1,"Lycée Pergaud",47.26349,6.044595,0,0,OGB:SA:CTPLYCEE2,Europe/Paris,0,OGB, +OGB:SP:LYCEE3,1,"Lycée Pergaud",47.26353,6.044087,0,0,OGB:SA:CTPLYCEE2,Europe/Paris,0,OGB, +OGB:SP:LYCLED1,1,"Lycée Ledoux",47.253532,6.001212,0,0,OGB:SA:CTPLYCLED2,Europe/Paris,0,OGB, +OGB:SP:LYCLED2,1,"Lycée Ledoux",47.25351,6.001271,0,0,OGB:SA:CTPLYCLED2,Europe/Paris,0,OGB, +OGB:SP:LYSPAUL1,1,"Lycée St Paul",47.245857,6.035329,0,0,OGB:SA:CTPLYSPAUL1,Europe/Paris,0,OGB, +OGB:SP:LYSPAUL2,1,"Lycée St Paul",47.245487,6.035137,0,0,OGB:SA:CTPLYSPAUL1,Europe/Paris,0,OGB, +OGB:SP:MAGELLA1,1,"Magellan",47.24885,6.047121,0,0,OGB:SA:CTPMAGELLA1,Europe/Paris,0,OGB, +OGB:SP:MAIRIE1,1,"Mairie",47.23661,6.022457,0,0,OGB:SA:CTPMAIRIE1,Europe/Paris,0,OGB, +OGB:SP:MAISRET1,1,"Maison de Retraite",47.2125,5.963089,0,0,OGB:SA:CTPMAISRET2,Europe/Paris,0,OGB, +OGB:SP:MAISRET2,1,"Maison de Retraite",47.21227,5.963092,0,0,OGB:SA:CTPMAISRET2,Europe/Paris,0,OGB, +OGB:SP:MALHERB1,1,"Malherbe",47.22096,6.015336,0,0,OGB:SA:CTPMALHERB2,Europe/Paris,0,OGB, +OGB:SP:MALHERB2,1,"Malherbe",47.22128,6.014861,0,0,OGB:SA:CTPMALHERB2,Europe/Paris,0,OGB, +OGB:SP:MARGUET1,1,"Grange Marguet",47.26165,6.031022,0,0,OGB:SA:CTPMARGUET1,Europe/Paris,0,OGB, +OGB:SP:MARGUET2,1,"Grange Marguet",47.26181,6.031127,0,0,OGB:SA:CTPMARGUET1,Europe/Paris,0,OGB, +OGB:SP:MARILOU1,1,"Marie Louise",47.248768,6.031517,0,0,OGB:SA:CTPMARILOU1,Europe/Paris,0,OGB, +OGB:SP:MARILOU2,1,"Marie Louise",47.24918,6.031481,0,0,OGB:SA:CTPMARILOU1,Europe/Paris,0,OGB, +OGB:SP:MARMIER1,1,"Marmier",47.239433,6.005342,0,0,OGB:SA:CTPMARMIER1,Europe/Paris,0,OGB, +OGB:SP:MARMIER2,1,"Marmier",47.23976,6.00522,0,0,OGB:SA:CTPMARMIER1,Europe/Paris,0,OGB, +OGB:SP:MAROT1,1,"Marot",47.21816,5.957554,0,0,OGB:SA:CTPMAROT2,Europe/Paris,0,OGB, +OGB:SP:MAROT2,1,"Marot",47.21816,5.957604,0,0,OGB:SA:CTPMAROT2,Europe/Paris,0,OGB, +OGB:SP:MATY1,1,"Maty",47.239918,5.993682,0,0,OGB:SA:CTPMATY1,Europe/Paris,0,OGB, +OGB:SP:MATY2,1,"Maty",47.240273,5.993742,0,0,OGB:SA:CTPMATY1,Europe/Paris,0,OGB, +OGB:SP:MERCATO1,1,"Mercator",47.259598,5.997477,0,0,OGB:SA:CTPMERCATO1,Europe/Paris,0,OGB, +OGB:SP:MERCATO2,1,"Mercator",47.259525,5.997682,0,0,OGB:SA:CTPMERCATO1,Europe/Paris,0,OGB, +OGB:SP:MERMOZ1,1,"Mermoz",47.247368,6.037446,0,0,OGB:SA:CTPMERMOZ1,Europe/Paris,0,OGB, +OGB:SP:MERMOZ2,1,"Mermoz",47.24698,6.036385,0,0,OGB:SA:CTPMERMOZ1,Europe/Paris,0,OGB, +OGB:SP:MESLIER1,1,"Meslier",47.23138,5.991965,0,0,OGB:SA:CTPMESLIER1,Europe/Paris,0,OGB, +OGB:SP:MESLIER2,1,"Meslier",47.231228,5.993072,0,0,OGB:SA:CTPMESLIER1,Europe/Paris,0,OGB, +OGB:SP:METIN1,1,"Métin",47.246235,6.00878,0,0,OGB:SA:CTPMETIN1,Europe/Paris,0,OGB, +OGB:SP:METIN2,1,"Métin",47.246716,6.008142,0,0,OGB:SA:CTPMETIN1,Europe/Paris,0,OGB, +OGB:SP:MICROPO1,1,"Micropolis",47.220387,5.977916,0,0,OGB:SA:CTPt_micro2,Europe/Paris,2,OGB, +OGB:SP:MICROPO2,1,"Micropolis",47.22134,5.978531,0,0,OGB:SA:CTPt_micro2,Europe/Paris,2,OGB, +OGB:SP:MIDOL1,1,"Midol",47.247215,6.020407,0,0,OGB:SA:CTPMIDOL2,Europe/Paris,0,OGB, +OGB:SP:MIDOL2,1,"Midol",47.24695,6.019811,0,0,OGB:SA:CTPMIDOL2,Europe/Paris,0,OGB, +OGB:SP:MILLERE1,1,"Milleret",47.22321,5.956001,0,0,OGB:SA:CTPMILLERE2,Europe/Paris,0,OGB, +OGB:SP:MILLERE2,1,"Milleret",47.22322,5.956058,0,0,OGB:SA:CTPMILLERE2,Europe/Paris,0,OGB, +OGB:SP:MIRABEA1,1,"Mirabeau",47.245792,6.051734,0,0,OGB:SA:CTPMIRABEA1,Europe/Paris,0,OGB, +OGB:SP:MIRABEA2,1,"Mirabeau",47.24599,6.052923,0,0,OGB:SA:CTPMIRABEA1,Europe/Paris,0,OGB, +OGB:SP:MOINGEO1,1,"Résidence Moingeon",47.224247,6.011983,0,0,OGB:SA:CTPMOINGEO2,Europe/Paris,0,OGB, +OGB:SP:MOINGEO2,1,"Résidence Moingeon",47.22452,6.011673,0,0,OGB:SA:CTPMOINGEO2,Europe/Paris,0,OGB, +OGB:SP:MONTARMO,1,"Montarmots",47.272675,6.030375,0,0,OGB:SA:CTPMONTARMO,Europe/Paris,0,OGB, +OGB:SP:MUTUALI1,1,"Mutualité",47.257694,6.036855,0,0,OGB:SA:CTPMUTUALI2,Europe/Paris,0,OGB, +OGB:SP:MUTUALI2,1,"Mutualité",47.257523,6.036479,0,0,OGB:SA:CTPMUTUALI2,Europe/Paris,0,OGB, +OGB:SP:NBRUAND2,1,"Nicolas Bruand",47.25145,6.025613,0,0,OGB:SA:CTPNBRUAND2,Europe/Paris,0,OGB, +OGB:SP:NOTDAME1,1,"Notre Dame",47.250347,6.005563,0,0,OGB:SA:CTPNOTDAME2,Europe/Paris,0,OGB, +OGB:SP:NOTDAME2,1,"Notre Dame",47.2501,6.004226,0,0,OGB:SA:CTPNOTDAME2,Europe/Paris,0,OGB, +OGB:SP:OBSAFPA2,1,"AFPA",47.24676,5.99651,0,0,OGB:SA:CTPOBSAFPA3,Europe/Paris,0,OGB, +OGB:SP:OBSAFPA3,1,"AFPA",47.24683,5.99625,0,0,OGB:SA:CTPOBSAFPA3,Europe/Paris,0,OGB, +OGB:SP:OISEAUX1,1,"Les Oiseaux",47.256332,6.034386,0,0,OGB:SA:CTPOISEAUX2,Europe/Paris,0,OGB, +OGB:SP:OISEAUX2,1,"Les Oiseaux",47.25591,6.033502,0,0,OGB:SA:CTPOISEAUX2,Europe/Paris,0,OGB, +OGB:SP:ORATOIR1,1,"Oratoire",47.22803,5.984458,0,0,OGB:SA:CTPORATOIR2,Europe/Paris,0,OGB, +OGB:SP:ORATOIR2,1,"Oratoire",47.228016,5.984114,0,0,OGB:SA:CTPORATOIR2,Europe/Paris,0,OGB, +OGB:SP:ORCHAMP1,1,"Orchamps",47.263462,6.045672,0,0,OGB:SA:CTPt_orc1,Europe/Paris,2,OGB, +OGB:SP:ORCHAMP2,1,"Orchamps",47.26344,6.045873,0,0,OGB:SA:CTPt_orc1,Europe/Paris,2,OGB, +OGB:SP:ORCHAMP6,1,"Orchamps",47.263226,6.045611,0,0,OGB:SA:CTPt_orc1,Europe/Paris,2,OGB, +OGB:SP:OUDET1,1,"Oudet",47.23724,6.014594,0,0,OGB:SA:CTPOUDET1,Europe/Paris,0,OGB, +OGB:SP:P+RHDC01,1,"Hauts du Chazal",47.221443,5.951281,0,0,OGB:SA:CTPt_hdc2,Europe/Paris,2,OGB, +OGB:SP:PALSPOR1,1,"Palais des Sports",47.24593,6.0007,0,0,OGB:SA:CTPPALSPOR2,Europe/Paris,0,OGB, +OGB:SP:PALSPOR2,1,"Palais des Sports",47.24603,6.00058,0,0,OGB:SA:CTPPALSPOR2,Europe/Paris,0,OGB, +OGB:SP:PAPILLO1,1,"Papillon",47.25412,6.038609,0,0,OGB:SA:CTPPAPILLO1,Europe/Paris,0,OGB, +OGB:SP:PAPILLO2,1,"Papillon",47.253735,6.038053,0,0,OGB:SA:CTPPAPILLO1,Europe/Paris,0,OGB, +OGB:SP:PAPIN3,1,"Papin",47.243233,5.986145,0,0,OGB:SA:CTPPAPIN3,Europe/Paris,0,OGB, +OGB:SP:PAPIN4,1,"Papin",47.243263,5.986128,0,0,OGB:SA:CTPPAPIN3,Europe/Paris,0,OGB, +OGB:SP:PARCEXP1,1,"Parc des Expositions",47.223587,5.979162,0,0,OGB:SA:CTPPARCEXP2,Europe/Paris,0,OGB, +OGB:SP:PARCEXP2,1,"Parc des Expositions",47.22304,5.978963,0,0,OGB:SA:CTPPARCEXP2,Europe/Paris,0,OGB, +OGB:SP:PARGUEZ1,1,"Parguez",47.23713,6.006805,0,0,OGB:SA:CTPPARGUEZ2,Europe/Paris,0,OGB, +OGB:SP:PARGUEZ2,1,"Parguez",47.237743,6.006345,0,0,OGB:SA:CTPPARGUEZ2,Europe/Paris,0,OGB, +OGB:SP:PASSERE1,1,"Passerelle",47.226868,6.032685,0,0,OGB:SA:CTPPASSERE1,Europe/Paris,0,OGB, +OGB:SP:PATINOI1,1,"Patinoire / Piscine",47.214172,5.967888,0,0,OGB:SA:CTPPATINOI2,Europe/Paris,0,OGB, +OGB:SP:PATINOI2,1,"Patinoire / Piscine",47.213833,5.968735,0,0,OGB:SA:CTPPATINOI2,Europe/Paris,0,OGB, +OGB:SP:PAVIE1,1,"Pavie",47.22024,5.962015,0,0,OGB:SA:CTPPAVIE2,Europe/Paris,0,OGB, +OGB:SP:PAVIE2,1,"Pavie",47.220573,5.961742,0,0,OGB:SA:CTPPAVIE2,Europe/Paris,0,OGB, +OGB:SP:PBT1,1,"Paul Bert",47.255077,6.028113,0,0,OGB:SA:CTPPBT1,Europe/Paris,0,OGB, +OGB:SP:PBT2,1,"Paul Bert",47.254982,6.028084,0,0,OGB:SA:CTPPBT1,Europe/Paris,0,OGB, +OGB:SP:PDC1,1,"Pont des Cras",47.252552,6.030527,0,0,OGB:SA:CTPPDC1,Europe/Paris,0,OGB, +OGB:SP:PDC3,1,"Pont des Cras",47.253487,6.031016,0,0,OGB:SA:CTPPDC1,Europe/Paris,0,OGB, +OGB:SP:PELOUSE1,1,"Pelouse",47.233566,5.993962,0,0,OGB:SA:CTPPELOUSE2,Europe/Paris,0,OGB, +OGB:SP:PELOUSE2,1,"Pelouse",47.23304,5.993867,0,0,OGB:SA:CTPPELOUSE2,Europe/Paris,0,OGB, +OGB:SP:PERGAUD1,1,"Haras",47.234695,6.008151,0,0,OGB:SA:CTPPERGAUD1,Europe/Paris,0,OGB, +OGB:SP:PERGAUD2,1,"Haras",47.234833,6.008103,0,0,OGB:SA:CTPPERGAUD1,Europe/Paris,0,OGB, +OGB:SP:PIEMONT1,1,"Piémont",47.222847,5.965639,0,0,OGB:SA:CTPPIEMONT1,Europe/Paris,0,OGB, +OGB:SP:PIEMONT2,1,"Piémont",47.22286,5.96558,0,0,OGB:SA:CTPPIEMONT1,Europe/Paris,0,OGB, +OGB:SP:PLANCON1,1,"Plançon",47.23124,6.013014,0,0,OGB:SA:CTPPLANCON2,Europe/Paris,0,OGB, +OGB:SP:PLANCON2,1,"Plançon",47.231266,6.01309,0,0,OGB:SA:CTPPLANCON2,Europe/Paris,0,OGB, +OGB:SP:PLANOIS1,1,"Planoise",47.217316,5.96638,0,0,OGB:SA:CTPPLANOIS3,Europe/Paris,0,OGB, +OGB:SP:PLANOIS3,1,"Planoise",47.21771,5.965849,0,0,OGB:SA:CTPPLANOIS3,Europe/Paris,0,OGB, +OGB:SP:PLATINE1,1,"Platine",47.27527,5.999388,0,0,OGB:SA:CTPPLATINE1,Europe/Paris,0,OGB, +OGB:SP:PLATINE2,1,"Platine",47.27522,5.999143,0,0,OGB:SA:CTPPLATINE1,Europe/Paris,0,OGB, +OGB:SP:PLGUYON1,1,"Place Guyon",47.22892,6.042444,0,0,OGB:SA:CTPPLGUYON2,Europe/Paris,0,OGB, +OGB:SP:PLGUYON2,1,"Place Guyon",47.229008,6.042345,0,0,OGB:SA:CTPPLGUYON2,Europe/Paris,0,OGB, +OGB:SP:PMCURIE1,1,"Pierre et Marie Curie",47.260983,6.045074,0,0,OGB:SA:CTPPMCURIE2,Europe/Paris,0,OGB, +OGB:SP:PMCURIE2,1,"Pierre et Marie Curie",47.2608,6.044907,0,0,OGB:SA:CTPPMCURIE2,Europe/Paris,0,OGB, +OGB:SP:POLSPOR1,1,"Pôle Sportif",47.250816,6.000504,0,0,OGB:SA:CTPPOLSPOR1,Europe/Paris,0,OGB, +OGB:SP:POLSPOR2,1,"Pôle Sportif",47.250816,6.000534,0,0,OGB:SA:CTPPOLSPOR1,Europe/Paris,0,OGB, +OGB:SP:POLYCLI3,1,"Polyclinique",47.21638,5.979112,0,0,OGB:SA:CTPPOLYCLI4,Europe/Paris,0,OGB, +OGB:SP:POLYCLI4,1,"Polyclinique",47.21603,5.980015,0,0,OGB:SA:CTPPOLYCLI4,Europe/Paris,0,OGB, +OGB:SP:POLYGON1,1,"Polygone",47.22983,6.01074,0,0,OGB:SA:CTPt_poly2,Europe/Paris,2,OGB, +OGB:SP:POLYGON2,1,"Polygone",47.22985,6.010425,0,0,OGB:SA:CTPt_poly2,Europe/Paris,2,OGB, +OGB:SP:PONBEUR1,1,"Pont de Beure",47.210594,5.995837,0,0,OGB:SA:CTPPONBEUR2,Europe/Paris,0,OGB, +OGB:SP:PONBEUR2,1,"Pont de Beure",47.210873,5.996134,0,0,OGB:SA:CTPPONBEUR2,Europe/Paris,0,OGB, +OGB:SP:PONCHFR1,1,"Pont Chemin Français",47.252514,6.02365,0,0,OGB:SA:CTPPONCHFR1,Europe/Paris,0,OGB, +OGB:SP:PONCHFR2,1,"Pont Chemin Français",47.252598,6.023905,0,0,OGB:SA:CTPPONCHFR1,Europe/Paris,0,OGB, +OGB:SP:PONSNCF1,1,"Pont SNCF",47.25023,6.025522,0,0,OGB:SA:CTPPONSNCF1,Europe/Paris,0,OGB, +OGB:SP:PONTBRE1,1,"Pont de Bregille",47.23797,6.03277,0,0,OGB:SA:CTPPONTBRE1,Europe/Paris,0,OGB, +OGB:SP:PONTBRE2,1,"Pont de Bregille",47.23801,6.03272,0,0,OGB:SA:CTPPONTBRE1,Europe/Paris,0,OGB, +OGB:SP:PORDOUV1,1,"Port Douvot",47.20706,5.993301,0,0,OGB:SA:CTPPORDOUV1,Europe/Paris,0,OGB, +OGB:SP:PORJOIN1,1,"Port Joint",47.233818,6.037148,0,0,OGB:SA:CTPPORJOIN2,Europe/Paris,0,OGB, +OGB:SP:PORJOIN2,1,"Port Joint",47.23413,6.037011,0,0,OGB:SA:CTPPORJOIN2,Europe/Paris,0,OGB, +OGB:SP:POSTE1,1,"Poste",47.239204,6.025745,0,0,OGB:SA:CTPPOSTE2,Europe/Paris,0,OGB, +OGB:SP:POSTE2,1,"Poste",47.23971,6.026629,0,0,OGB:SA:CTPPOSTE2,Europe/Paris,0,OGB, +OGB:SP:PRECLAI1,1,"Pré au Clair",47.258766,6.0276,0,0,OGB:SA:CTPPRECLAI1,Europe/Paris,0,OGB, +OGB:SP:PRECLAI2,1,"Pré au Clair",47.258755,6.027745,0,0,OGB:SA:CTPPRECLAI1,Europe/Paris,0,OGB, +OGB:SP:PREFECT1,1,"Préfecture",47.2337,6.023057,0,0,OGB:SA:CTPPREFECT1,Europe/Paris,0,OGB, +OGB:SP:PRESVAU1,1,"Prés de Vaux",47.229652,6.053614,0,0,OGB:SA:CTPPRESVAU1,Europe/Paris,0,OGB, +OGB:SP:PROLABO1,1,"Prolabor",47.235374,5.9645,0,0,OGB:SA:CTPPROLABO1,Europe/Paris,0,OGB, +OGB:SP:PROLABO2,1,"Prolabor",47.235332,5.96445,0,0,OGB:SA:CTPPROLABO1,Europe/Paris,0,OGB, +OGB:SP:PSB1,1,"PSB",47.25958,6.015671,0,0,OGB:SA:CTPPSB1,Europe/Paris,0,OGB, +OGB:SP:PSB2,1,"PSB",47.258423,6.016826,0,0,OGB:SA:CTPPSB1,Europe/Paris,0,OGB, +OGB:SP:QUATROU1,1,"Quatrouillots",47.264755,6.012761,0,0,OGB:SA:CTPQUATROU1,Europe/Paris,0,OGB, +OGB:SP:QUATROU2,1,"Quatrouillots",47.26548,6.011985,0,0,OGB:SA:CTPQUATROU1,Europe/Paris,0,OGB, +OGB:SP:QUATVEN1,1,"4 Vents",47.259666,6.029967,0,0,OGB:SA:CTPQUATVEN1,Europe/Paris,0,OGB, +OGB:SP:QUATVEN2,1,"4 Vents",47.259567,6.029016,0,0,OGB:SA:CTPQUATVEN1,Europe/Paris,0,OGB, +OGB:SP:RADIEUS1,1,"Radieuse",47.226025,6.009552,0,0,OGB:SA:CTPRADIEUS2,Europe/Paris,0,OGB, +OGB:SP:RADIEUS2,1,"Radieuse",47.226334,6.009186,0,0,OGB:SA:CTPRADIEUS2,Europe/Paris,0,OGB, +OGB:SP:RECLUS1,1,"Reclus",47.260933,6.014727,0,0,OGB:SA:CTPRECLUS1,Europe/Paris,0,OGB, +OGB:SP:RECLUS2,1,"Reclus",47.26069,6.014927,0,0,OGB:SA:CTPRECLUS1,Europe/Paris,0,OGB, +OGB:SP:REFUGE1,1,"Refuge",47.255703,6.023619,0,0,OGB:SA:CTPREFUGE1,Europe/Paris,0,OGB, +OGB:SP:REMPART1,1,"Remparts",47.24405,6.021673,0,0,OGB:SA:CTPREMPART2,Europe/Paris,0,OGB, +OGB:SP:REMPART2,1,"Remparts",47.24402,6.02166,0,0,OGB:SA:CTPREMPART2,Europe/Paris,0,OGB, +OGB:SP:RENECHA1,1,"René Char",47.21853,5.952857,0,0,OGB:SA:CTPRENECHA2,Europe/Paris,0,OGB, +OGB:SP:RENECHA2,1,"René Char",47.218273,5.95185,0,0,OGB:SA:CTPRENECHA2,Europe/Paris,0,OGB, +OGB:SP:REPUBL2,1,"République",47.24107,6.026592,0,0,OGB:SA:CTPt_repu2,Europe/Paris,2,OGB, +OGB:SP:RESIDEN1,1,"Résidence",47.2314,5.99742,0,0,OGB:SA:CTPRESIDEN2,Europe/Paris,0,OGB, +OGB:SP:RESIDEN2,1,"Résidence",47.23164,5.998152,0,0,OGB:SA:CTPRESIDEN2,Europe/Paris,0,OGB, +OGB:SP:RIVOTTE,1,"Rivotte",47.23035,6.037004,0,0,OGB:SA:CTPRIVOTTE,Europe/Paris,0,OGB, +OGB:SP:ROTONDE1,1,"Rotonde",47.247818,6.027254,0,0,OGB:SA:CTPROTONDE1,Europe/Paris,0,OGB, +OGB:SP:SALBREG1,1,"Salins de Bregille",47.241714,6.040094,0,0,OGB:SA:CTPSALBREG1,Europe/Paris,0,OGB, +OGB:SP:SALBREG2,1,"Salins de Bregille",47.241627,6.039823,0,0,OGB:SA:CTPSALBREG1,Europe/Paris,0,OGB, +OGB:SP:SANATOR1,1,"Sanatorium",47.236176,5.971192,0,0,OGB:SA:CTPSANATOR1,Europe/Paris,0,OGB, +OGB:SP:SANATOR2,1,"Sanatorium",47.23613,5.970638,0,0,OGB:SA:CTPSANATOR1,Europe/Paris,0,OGB, +OGB:SP:SANCEY1,1,"Sancey",47.23206,6.008222,0,0,OGB:SA:CTPSANCEY1,Europe/Paris,0,OGB, +OGB:SP:SANCEY2,1,"Sancey",47.232224,6.008149,0,0,OGB:SA:CTPSANCEY1,Europe/Paris,0,OGB, +OGB:SP:SANSONN1,1,"Sansonnets",47.263557,6.013511,0,0,OGB:SA:CTPSANSONN1,Europe/Paris,0,OGB, +OGB:SP:SANSONN2,1,"Sansonnets",47.26417,6.013366,0,0,OGB:SA:CTPSANSONN1,Europe/Paris,0,OGB, +OGB:SP:SAPINS1,1,"Sapins",47.23447,5.989477,0,0,OGB:SA:CTPSAPINS2,Europe/Paris,0,OGB, +OGB:SP:SAPINS2,1,"Sapins",47.23478,5.989557,0,0,OGB:SA:CTPSAPINS2,Europe/Paris,0,OGB, +OGB:SP:SARAGOS1,1,"Saragosse",47.25978,6.029073,0,0,OGB:SA:CTPSARAGOS1,Europe/Paris,0,OGB, +OGB:SP:SARAGOS2,1,"Saragosse",47.259853,6.029236,0,0,OGB:SA:CTPSARAGOS1,Europe/Paris,0,OGB, +OGB:SP:SAVARY2,1,"Savary",47.25517,6.003184,0,0,OGB:SA:CTPSAVARY2,Europe/Paris,0,OGB, +OGB:SP:SAVARY3,1,"Savary",47.256382,6.004055,0,0,OGB:SA:CTPSAVARY2,Europe/Paris,0,OGB, +OGB:SP:SCL3,1,"St Claude",47.258938,6.009645,0,0,OGB:SA:CTPSCL3,Europe/Paris,0,OGB, +OGB:SP:SCL4,1,"St Claude",47.258713,6.009764,0,0,OGB:SA:CTPSCL3,Europe/Paris,0,OGB, +OGB:SP:SECUSOC1,1,"Sécurité Sociale",47.24328,5.993862,0,0,OGB:SA:CTPSECUSOC1,Europe/Paris,0,OGB, +OGB:SP:SECUSOC2,1,"Sécurité Sociale",47.243362,5.993149,0,0,OGB:SA:CTPSECUSOC1,Europe/Paris,0,OGB, +OGB:SP:SEILER1,1,"Seiler",47.258343,6.022867,0,0,OGB:SA:CTPSEILER1,Europe/Paris,0,OGB, +OGB:SP:SEILER2,1,"Seiler",47.25833,6.022922,0,0,OGB:SA:CTPSEILER1,Europe/Paris,0,OGB, +OGB:SP:SIFFERT1,1,"Siffert",47.24125,6.015287,0,0,OGB:SA:CTPSIFFERT1,Europe/Paris,0,OGB, +OGB:SP:SIFFERT2,1,"Siffert",47.241398,6.015444,0,0,OGB:SA:CTPSIFFERT1,Europe/Paris,0,OGB, +OGB:SP:SJA3,1,"St Jacques",47.23431,6.0208,0,0,OGB:SA:CTPSJA3,Europe/Paris,0,OGB, +OGB:SP:SMAURIC1,1,"St Maurice",47.235756,6.027452,0,0,OGB:SA:CTPSMAURIC1,Europe/Paris,0,OGB, +OGB:SP:SPORNAU1,1,"Sport Nautique",47.23647,6.03573,0,0,OGB:SA:CTPSPORNAU2,Europe/Paris,0,OGB, +OGB:SP:SPORNAU2,1,"Sport Nautique",47.237015,6.035411,0,0,OGB:SA:CTPSPORNAU2,Europe/Paris,0,OGB, +OGB:SP:STALAGR1,1,"Stade Léo Lagrange",47.244072,6.004895,0,0,OGB:SA:CTPSTALAGR2,Europe/Paris,0,OGB, +OGB:SP:STALAGR2,1,"Stade Léo Lagrange",47.244167,6.004785,0,0,OGB:SA:CTPSTALAGR2,Europe/Paris,0,OGB, +OGB:SP:STETHER1,1,"Ste Thérèse",47.22875,6.0093,0,0,OGB:SA:CTPSTETHER1,Europe/Paris,0,OGB, +OGB:SP:STMARTI1,1,"St Martin",47.243668,5.99554,0,0,OGB:SA:CTPSTMARTI1,Europe/Paris,0,OGB, +OGB:SP:STMARTI2,1,"St Martin",47.242584,5.994174,0,0,OGB:SA:CTPSTMARTI1,Europe/Paris,0,OGB, +OGB:SP:STPIEX1,1,"St Pie X",47.26306,6.04682,0,0,OGB:SA:CTPSTPIEX2,Europe/Paris,0,OGB, +OGB:SP:STPIEX2,1,"St Pie X",47.26309,6.04678,0,0,OGB:SA:CTPSTPIEX2,Europe/Paris,0,OGB, +OGB:SP:STRASBOU,1,"Strasbourg",47.241764,6.022242,0,0,OGB:SA:CTPSTRASBOU,Europe/Paris,0,OGB, +OGB:SP:SUARD1,1,"Suard",47.25021,6.029984,0,0,OGB:SA:CTPSUARD1,Europe/Paris,0,OGB, +OGB:SP:TEMIS1,1,"Temis",47.2533,5.997284,0,0,OGB:SA:CTPTEMIS4,Europe/Paris,0,OGB, +OGB:SP:TEMIS4,1,"Temis",47.25319,5.997265,0,0,OGB:SA:CTPTEMIS4,Europe/Paris,0,OGB, +OGB:SP:THOMAS1,1,"Thomas",47.241604,5.986139,0,0,OGB:SA:CTPTHOMAS2,Europe/Paris,0,OGB, +OGB:SP:THOMAS2,1,"Thomas",47.240757,5.986466,0,0,OGB:SA:CTPTHOMAS2,Europe/Paris,0,OGB, +OGB:SP:THOURET1,1,"Thouret",47.24075,5.977908,0,0,OGB:SA:CTPTHOURET1,Europe/Paris,0,OGB, +OGB:SP:THOURET2,1,"Thouret",47.240707,5.977846,0,0,OGB:SA:CTPTHOURET1,Europe/Paris,0,OGB, +OGB:SP:TILEROY1,1,"Tilleroyes",47.235535,5.961739,0,0,OGB:SA:CTPTILEROY1,Europe/Paris,0,OGB, +OGB:SP:TREPIL1,1,"Trépillot",47.241333,6.006978,0,0,OGB:SA:CTPTREPIL1,Europe/Paris,0,OGB, +OGB:SP:TREY1,1,"Trey",47.256554,6.022026,0,0,OGB:SA:CTPTREY1,Europe/Paris,0,OGB, +OGB:SP:TREY2,1,"Trey",47.256638,6.022146,0,0,OGB:SA:CTPTREY1,Europe/Paris,0,OGB, +OGB:SP:t_allen1,1,"Allende",47.21972,5.973672,0,0,OGB:SA:CTPt_allen2,Europe/Paris,2,OGB, +OGB:SP:t_allen2,1,"Allende",47.219864,5.973468,0,0,OGB:SA:CTPt_allen2,Europe/Paris,2,OGB, +OGB:SP:t_batt1,1,"Battant",47.23951,6.019576,0,0,OGB:SA:CTPt_batt2,Europe/Paris,2,OGB, +OGB:SP:t_batt2,1,"Battant",47.239464,6.019442,0,0,OGB:SA:CTPt_batt2,Europe/Paris,2,OGB, +OGB:SP:t_brula1,1,"Brulard",47.228474,6.005913,0,0,OGB:SA:CTPt_brula2,Europe/Paris,2,OGB, +OGB:SP:t_brula2,1,"Brulard",47.228462,6.005575,0,0,OGB:SA:CTPt_brula2,Europe/Paris,2,OGB, +OGB:SP:t_brule1,1,"Brûlefoin",47.249886,6.042456,0,0,OGB:SA:CTPt_brule1,Europe/Paris,2,OGB, +OGB:SP:t_brule2,1,"Brûlefoin",47.249786,6.04218,0,0,OGB:SA:CTPt_brule1,Europe/Paris,2,OGB, +OGB:SP:t_cano1,1,"Canot",47.23614,6.016028,0,0,OGB:SA:CTPt_cano2,Europe/Paris,2,OGB, +OGB:SP:t_cano2,1,"Canot",47.23596,6.01587,0,0,OGB:SA:CTPt_cano2,Europe/Paris,2,OGB, +OGB:SP:t_cdp1,1,"Croix de Palente",47.257374,6.042201,0,0,OGB:SA:CTPt_cdp1,Europe/Paris,2,OGB, +OGB:SP:t_cdp2,1,"Croix de Palente",47.25719,6.042418,0,0,OGB:SA:CTPt_cdp1,Europe/Paris,2,OGB, +OGB:SP:t_chal,1,"Chalezeule",47.261314,6.060952,0,0,OGB:SA:CTPt_chal,Europe/Paris,2,OGB, +OGB:SP:t_cham1,1,"Chamars",47.233738,6.020343,0,0,OGB:SA:CTPt_cham2,Europe/Paris,2,OGB, +OGB:SP:t_cham2,1,"Chamars",47.233673,6.020249,0,0,OGB:SA:CTPt_cham2,Europe/Paris,2,OGB, +OGB:SP:t_chr1,1,"CHRU Minjoz",47.22642,5.963888,0,0,OGB:SA:CTPt_chr2,Europe/Paris,2,OGB, +OGB:SP:t_chr2,1,"CHRU Minjoz",47.22639,5.963632,0,0,OGB:SA:CTPt_chr2,Europe/Paris,2,OGB, +OGB:SP:t_epo1,1,"Epoisses",47.22235,5.972772,0,0,OGB:SA:CTPt_epo2,Europe/Paris,2,OGB, +OGB:SP:t_epo2,1,"Epoisses",47.22248,5.972474,0,0,OGB:SA:CTPt_epo2,Europe/Paris,2,OGB, +OGB:SP:t_farg1,1,"Fontaine Argent",47.245975,6.033796,0,0,OGB:SA:CTPt_farg1,Europe/Paris,2,OGB, +OGB:SP:t_farg2,1,"Fontaine Argent",47.24595,6.033674,0,0,OGB:SA:CTPt_farg1,Europe/Paris,2,OGB, +OGB:SP:t_fben1,1,"Fort Benoît",47.262066,6.050709,0,0,OGB:SA:CTPt_fben1,Europe/Paris,2,OGB, +OGB:SP:t_fben2,1,"Fort Benoît",47.262093,6.050433,0,0,OGB:SA:CTPt_fben1,Europe/Paris,2,OGB, +OGB:SP:t_flo1,1,"Flore",47.245533,6.028025,0,0,OGB:SA:CTPt_flo2,Europe/Paris,2,OGB, +OGB:SP:t_flo2,1,"Flore",47.24549,6.028106,0,0,OGB:SA:CTPt_flo2,Europe/Paris,2,OGB, +OGB:SP:t_gvio1,1,"Gare Viotte",47.24635,6.021987,0,0,OGB:SA:CTPt_gvio2,Europe/Paris,2,OGB, +OGB:SP:t_gvio2,1,"Gare Viotte",47.246326,6.022173,0,0,OGB:SA:CTPt_gvio2,Europe/Paris,2,OGB, +OGB:SP:t_hdc1,1,"Hauts du Chazal",47.221603,5.951554,0,0,OGB:SA:CTPt_hdc2,Europe/Paris,2,OGB, +OGB:SP:t_hdc2,1,"Hauts du Chazal",47.22164,5.951406,0,0,OGB:SA:CTPt_hdc2,Europe/Paris,2,OGB, +OGB:SP:t_idf1,1,"Ile de France",47.221825,5.967356,0,0,OGB:SA:CTPt_idf2,Europe/Paris,2,OGB, +OGB:SP:t_idf2,1,"Ile de France",47.222034,5.967245,0,0,OGB:SA:CTPt_idf2,Europe/Paris,2,OGB, +OGB:SP:t_lila1,1,"Lilas",47.260723,6.04188,0,0,OGB:SA:CTPt_lila1,Europe/Paris,2,OGB, +OGB:SP:t_lila2,1,"Lilas",47.26069,6.041709,0,0,OGB:SA:CTPt_lila1,Europe/Paris,2,OGB, +OGB:SP:t_lvai1,1,"Les Vaîtes",47.25324,6.043249,0,0,OGB:SA:CTPt_lvai1,Europe/Paris,2,OGB, +OGB:SP:t_lvai2,1,"Les Vaîtes",47.253136,6.042935,0,0,OGB:SA:CTPt_lvai1,Europe/Paris,2,OGB, +OGB:SP:t_malc1,1,"Malcombe",47.22261,5.98263,0,0,OGB:SA:CTPt_malc2,Europe/Paris,2,OGB, +OGB:SP:t_malc2,1,"Malcombe",47.222588,5.982434,0,0,OGB:SA:CTPt_malc2,Europe/Paris,2,OGB, +OGB:SP:t_marn1,1,"Marnières",47.26338,6.055775,0,0,OGB:SA:CTPt_marn1,Europe/Paris,2,OGB, +OGB:SP:t_marn2,1,"Marnières",47.263397,6.05533,0,0,OGB:SA:CTPt_marn1,Europe/Paris,2,OGB, +OGB:SP:t_micro1,1,"Micropolis",47.22067,5.97841,0,0,OGB:SA:CTPt_micro2,Europe/Paris,2,OGB, +OGB:SP:t_micro2,1,"Micropolis",47.22066,5.978167,0,0,OGB:SA:CTPt_micro2,Europe/Paris,2,OGB, +OGB:SP:t_orc1,1,"Orchamps",47.26297,6.045393,0,0,OGB:SA:CTPt_orc1,Europe/Paris,2,OGB, +OGB:SP:t_orc2,1,"Orchamps",47.262924,6.04513,0,0,OGB:SA:CTPt_orc1,Europe/Paris,2,OGB, +OGB:SP:t_pmic1,1,"Parc Micaud",47.24289,6.02991,0,0,OGB:SA:CTPt_pmic2,Europe/Paris,2,OGB, +OGB:SP:t_pmic2,1,"Parc Micaud",47.24295,6.029917,0,0,OGB:SA:CTPt_pmic2,Europe/Paris,2,OGB, +OGB:SP:t_poly1,1,"Polygone",47.22993,6.010826,0,0,OGB:SA:CTPt_poly2,Europe/Paris,2,OGB, +OGB:SP:t_poly2,1,"Polygone",47.229855,6.010564,0,0,OGB:SA:CTPt_poly2,Europe/Paris,2,OGB, +OGB:SP:t_psan1,1,"Pôle Santé",47.22597,5.960198,0,0,OGB:SA:CTPt_psan2,Europe/Paris,2,OGB, +OGB:SP:t_psan2,1,"Pôle Santé",47.22591,5.959961,0,0,OGB:SA:CTPt_psan2,Europe/Paris,2,OGB, +OGB:SP:t_repu1,1,"République",47.240894,6.027148,0,0,OGB:SA:CTPt_repu2,Europe/Paris,2,OGB, +OGB:SP:t_repu2,1,"République",47.240948,6.027072,0,0,OGB:SA:CTPt_repu2,Europe/Paris,2,OGB, +OGB:SP:t_revo1,1,"Révolution",47.240513,6.023075,0,0,OGB:SA:CTPt_revo2,Europe/Paris,2,OGB, +OGB:SP:t_revo2,1,"Révolution",47.24041,6.022829,0,0,OGB:SA:CTPt_revo2,Europe/Paris,2,OGB, +OGB:SP:t_rose1,1,"Rosemont",47.225025,5.995242,0,0,OGB:SA:CTPt_rose2,Europe/Paris,2,OGB, +OGB:SP:t_rose2,1,"Rosemont",47.224987,5.994995,0,0,OGB:SA:CTPt_rose2,Europe/Paris,2,OGB, +OGB:SP:t_schw1,1,"Schweitzer",47.256077,6.04481,0,0,OGB:SA:CTPt_schw1,Europe/Paris,2,OGB, +OGB:SP:t_schw2,1,"Schweitzer",47.25585,6.04508,0,0,OGB:SA:CTPt_schw1,Europe/Paris,2,OGB, +OGB:SP:t_tbern1,1,"Tristan Bernard",47.248196,6.037381,0,0,OGB:SA:CTPt_tbern1,Europe/Paris,2,OGB, +OGB:SP:t_tbern2,1,"Tristan Bernard",47.24816,6.037076,0,0,OGB:SA:CTPt_tbern1,Europe/Paris,2,OGB, +OGB:SP:t_ufr1,1,"UFR Médecine Pharma",47.22361,5.95594,0,0,OGB:SA:CTPt_ufr2,Europe/Paris,2,OGB, +OGB:SP:t_ufr2,1,"UFR Médecine Pharma",47.22361,5.955863,0,0,OGB:SA:CTPt_ufr2,Europe/Paris,2,OGB, +OGB:SP:UFRSCIE1,1,"UFR Sciences",47.24444,5.986718,0,0,OGB:SA:CTPUFRSCIE2,Europe/Paris,0,OGB, +OGB:SP:UFRSCIE2,1,"UFR Sciences",47.24444,5.986248,0,0,OGB:SA:CTPUFRSCIE2,Europe/Paris,0,OGB, +OGB:SP:USPORTS1,1,"U-Sports",47.25215,5.99036,0,0,OGB:SA:CTPUSPORTS1,Europe/Paris,0,OGB, +OGB:SP:USPORTS2,1,"U-Sports",47.25226,5.99024,0,0,OGB:SA:CTPUSPORTS1,Europe/Paris,0,OGB, +OGB:SP:VALENTI1,1,"Valentin",47.277626,5.99358,0,0,OGB:SA:CTPVALENTI1,Europe/Paris,0,OGB, +OGB:SP:VALENTI2,1,"Valentin",47.27746,5.99368,0,0,OGB:SA:CTPVALENTI1,Europe/Paris,0,OGB, +OGB:SP:VALERY1,1,"Valéry",47.21482,5.961857,0,0,OGB:SA:CTPVALERY1,Europe/Paris,0,OGB, +OGB:SP:VALJOUR1,1,"Vallon du Jour",47.26613,6.027364,0,0,OGB:SA:CTPVALJOUR1,Europe/Paris,0,OGB, +OGB:SP:VALJOUR2,1,"Vallon du Jour",47.266373,6.027443,0,0,OGB:SA:CTPVALJOUR1,Europe/Paris,0,OGB, +OGB:SP:VALLIERE,1,"Vallières",47.216805,5.981751,0,0,OGB:SA:CTPVALLIERE,Europe/Paris,0,OGB, +OGB:SP:VALLON1,1,"Vallon",47.208298,5.96379,0,0,OGB:SA:CTPVALLON2,Europe/Paris,0,OGB, +OGB:SP:VALLON2,1,"Vallon",47.208775,5.963395,0,0,OGB:SA:CTPVALLON2,Europe/Paris,0,OGB, +OGB:SP:VELOTTE1,1,"Velotte",47.219486,6.011532,0,0,OGB:SA:CTPVELOTTE2,Europe/Paris,0,OGB, +OGB:SP:VELOTTE2,1,"Velotte",47.21915,6.01109,0,0,OGB:SA:CTPVELOTTE2,Europe/Paris,0,OGB, +OGB:SP:VESOUL3,1,"Vesoul",47.25295,6.016332,0,0,OGB:SA:CTPVESOUL4,Europe/Paris,0,OGB, +OGB:SP:VESOUL4,1,"Vesoul",47.25319,6.016087,0,0,OGB:SA:CTPVESOUL4,Europe/Paris,0,OGB, +OGB:SP:VICGALL1,1,"Victor Gallois",47.256786,6.02118,0,0,OGB:SA:CTPVICGALL2,Europe/Paris,0,OGB, +OGB:SP:VICGALL2,1,"Victor Gallois",47.256733,6.020927,0,0,OGB:SA:CTPVICGALL2,Europe/Paris,0,OGB, +OGB:SP:VICHUGO1,1,"Victor Hugo",47.234978,6.029688,0,0,OGB:SA:CTPVICHUGO1,Europe/Paris,0,OGB, +OGB:SP:VIEILLE1,1,"Vieilley",47.265015,6.034153,0,0,OGB:SA:CTPVIEILLE2,Europe/Paris,0,OGB, +OGB:SP:VIEILLE2,1,"Vieilley",47.265015,6.033507,0,0,OGB:SA:CTPVIEILLE2,Europe/Paris,0,OGB, +OGB:SP:VIGNES1,1,"Les Vignes",47.23315,6.014571,0,0,OGB:SA:CTPVIGNES2,Europe/Paris,0,OGB, +OGB:SP:VIGNES2,1,"Les Vignes",47.233265,6.01468,0,0,OGB:SA:CTPVIGNES2,Europe/Paris,0,OGB, +OGB:SP:VILLARC1,1,"Villarceau",47.23593,6.008342,0,0,OGB:SA:CTPVILLARC1,Europe/Paris,0,OGB, +OGB:SP:VINCENT1,1,"Clinique St Vincent",47.244534,5.980263,0,0,OGB:SA:CTPVINCENT1,Europe/Paris,0,OGB, +OGB:SP:VINCENT2,1,"Clinique St Vincent",47.244534,5.979918,0,0,OGB:SA:CTPVINCENT1,Europe/Paris,0,OGB, +OGB:SP:VIOLET1,1,"Violet",47.258324,6.021296,0,0,OGB:SA:CTPVIOLET1,Europe/Paris,0,OGB, +OGB:SP:VIOLET2,1,"Violet",47.25807,6.020532,0,0,OGB:SA:CTPVIOLET1,Europe/Paris,0,OGB, +OGB:SP:VIVARAI1,1,"Vivarais",47.219803,5.963448,0,0,OGB:SA:CTPVIVARAI2,Europe/Paris,0,OGB, +OGB:SP:VIVARAI2,1,"Vivarais",47.21982,5.963475,0,0,OGB:SA:CTPVIVARAI2,Europe/Paris,0,OGB, +OGB:SP:VOIRIN1,1,"Voirin",47.242233,6.013849,0,0,OGB:SA:CTPVOIRIN2,Europe/Paris,0,OGB, +OGB:SP:VOIRIN2,1,"Voirin",47.242275,6.013741,0,0,OGB:SA:CTPVOIRIN2,Europe/Paris,0,OGB, +OGB:SP:VOLTAIR1,1,"Voltaire",47.221622,5.960859,0,0,OGB:SA:CTPVOLTAIR1,Europe/Paris,0,OGB, +OGB:SP:VOLTAIR2,1,"Voltaire",47.221916,5.962137,0,0,OGB:SA:CTPVOLTAIR1,Europe/Paris,0,OGB, +OGB:SP:WEISS3,1,"Weiss",47.24464,6.013038,0,0,OGB:SA:CTPWEISS3,Europe/Paris,0,OGB, +OGB:SP:WEISS4,1,"Weiss",47.24494,6.012928,0,0,OGB:SA:CTPWEISS3,Europe/Paris,0,OGB, +OGB:SP:WYRSCH1,1,"Wyrsch",47.256428,6.018354,0,0,OGB:SA:CTPWYRSCH1,Europe/Paris,0,OGB, +OGB:SP:WYRSCH2,1,"Wyrsch",47.256577,6.018504,0,0,OGB:SA:CTPWYRSCH1,Europe/Paris,0,OGB, +OGB:SP:ZIPAL,1,"Palente ZI",47.265003,6.051061,0,0,OGB:SA:CTPZIPAL,Europe/Paris,0,OGB, +OGN:SP:6090005,1,"Anatole France",49.264549,2.433269,0,0,OGN:SA:CTP6090005,Europe/Paris,,OGN, +OGN:SP:6090007,1,"Lycée Malraux",49.259496,2.426149,0,0,OGN:SA:CTP6090007,Europe/Paris,,OGN, +OGN:SP:6090010,1,"Bas des Tufs",49.257932,2.481862,0,0,OGN:SA:CTP6090010,Europe/Paris,,OGN, +OGN:SP:6090011,1,"Cavées de Paris",49.252402,2.478964,0,0,OGN:SA:CTP6090011,Europe/Paris,,OGN, +OGN:SP:6090012,1,"Berthe Fouchère",49.25845,2.477031,0,0,OGN:SA:CTP6090012,Europe/Paris,,OGN, +OGN:SP:6090013,1,"Biondi",49.253387,2.473284,0,0,OGN:SA:CTP6090013,Europe/Paris,,OGN, +OGN:SP:6090014,1,"Blaise Pascal",49.255401,2.487249,0,0,OGN:SA:CTP6090014,Europe/Paris,,OGN, +OGN:SP:6090017,1,"Louis Blanc",49.256495,2.448092,0,0,OGN:SA:CTP6090017,Europe/Paris,,OGN, +OGN:SP:6090018,1,"Bourse du travail",49.260877,2.468061,0,0,OGN:SA:CTP6090018,Europe/Paris,,OGN, +OGN:SP:6090019,1,"Branly",49.253317,2.487037,0,0,OGN:SA:CTP6090019,Europe/Paris,,OGN, +OGN:SP:6090020,1,"Carnot",49.26266,2.472609,0,0,OGN:SA:CTP6090020,Europe/Paris,,OGN, +OGN:SP:6090021,1,"Carpeaux",49.26057,2.484683,0,0,OGN:SA:CTP6090021,Europe/Paris,,OGN, +OGN:SP:6090022,1,"Collège",49.262381,2.435695,0,0,OGN:SA:CTP6090022,Europe/Paris,,OGN, +OGN:SP:6090023,1,"Champrelle",49.253124,2.475494,0,0,OGN:SA:CTP6090023,Europe/Paris,,OGN, +OGN:SP:6090024,1,"Château d'Eau",49.291084,2.496198,0,0,OGN:SA:CTP6090024,Europe/Paris,,OGN, +OGN:SP:6090026,1,"Les Marches de l’Oise",49.26036,2.455266,0,0,OGN:SA:CTP6090026,Europe/Paris,,OGN, +OGN:SP:6090027,1,"Chevalier",49.262594,2.458497,0,0,OGN:SA:CTP6090027,Europe/Paris,,OGN, +OGN:SP:6090028,1,"Collège",49.26239,2.435681,0,0,OGN:SA:CTP6090022,Europe/Paris,,OGN, +OGN:SP:6090030,1,"Delacroix",49.256758,2.487129,0,0,OGN:SA:CTP6090030,Europe/Paris,,OGN, +OGN:SP:6090031,1,"Demagnez",49.268018,2.477593,0,0,OGN:SA:CTP6090031,Europe/Paris,,OGN, +OGN:SP:6090032,1,"Deneux",49.282649,2.473582,0,0,OGN:SA:CTP6090032,Europe/Paris,,OGN, +OGN:SP:6090033,1,"Déportés",49.255066,2.438055,0,0,OGN:SA:CTP6090033,Europe/Paris,,OGN, +OGN:SP:6090034,1,"Desnosse",49.257651,2.43095,0,0,OGN:SA:CTP6090034,Europe/Paris,,OGN, +OGN:SP:6090035,1,"Europe",49.26882,2.482675,0,0,OGN:SA:CTP6090035,Europe/Paris,,OGN, +OGN:SP:6090037,1,"Faidherbe",49.279321,2.460706,0,0,OGN:SA:CTP6090037,Europe/Paris,,OGN, +OGN:SP:6090038,1,"Fécamp",49.285176,2.485962,0,0,OGN:SA:CTP6090038,Europe/Paris,,OGN, +OGN:SP:6090039,1,"Foyer",49.264183,2.459997,0,0,OGN:SA:CTP6090039,Europe/Paris,,OGN, +OGN:SP:6090040,1,"Roosevelt",49.252184,2.464182,0,0,OGN:SA:CTP6090040,Europe/Paris,,OGN, +OGN:SP:6090041,1,"Frères Péraux",49.273511,2.474587,0,0,OGN:SA:CTP6090041,Europe/Paris,,OGN, +OGN:SP:6090042,1,"Gambetta",49.263063,2.47401,0,0,OGN:SA:CTP6090042,Europe/Paris,,OGN, +OGN:SP:6090043,1,"Gare",49.264011,2.46999,0,0,OGN:SA:CTP6090043,Europe/Paris,,OGN, +OGN:SP:6090044,1,"Gauguin",49.256691,2.490355,0,0,OGN:SA:CTP6090044,Europe/Paris,,OGN, +OGN:SP:6090046,1,"Ginisti",49.256494,2.427791,0,0,OGN:SA:CTP6090046,Europe/Paris,,OGN, +OGN:SP:6090047,1,"Glacière",49.288165,2.481439,0,0,OGN:SA:CTP6090047,Europe/Paris,,OGN, +OGN:SP:6090049,1,"Herriot",49.268091,2.451137,0,0,OGN:SA:CTP6090049,Europe/Paris,,OGN, +OGN:SP:6090050,1,"Hoche",49.267714,2.467858,0,0,OGN:SA:CTP6090050,Europe/Paris,,OGN, +OGN:SP:6090051,1,"Hôpital",49.247532,2.46299,0,0,OSP:SA:CTP19000080,Europe/Paris,,OGN, +OGN:SP:6090052,1,"Hôpital arrivée",49.247514,2.46299,0,0,OSP:SA:CTP19000080,Europe/Paris,,OGN, +OGN:SP:6090054,1,"Jean Jaurès",49.255658,2.4587,0,0,OSP:SA:CTP19000026,Europe/Paris,,OGN, +OGN:SP:6090055,1,"Jean Moulin",49.250561,2.461666,0,0,OGN:SA:CTP6090055,Europe/Paris,,OGN, +OGN:SP:6090056,1,"Juillet",49.265048,2.473755,0,0,OGN:SA:CTP6090056,Europe/Paris,,OGN, +OGN:SP:6090057,1,"Jules Guesde",49.259572,2.432642,0,0,OGN:SA:CTP6090057,Europe/Paris,,OGN, +OGN:SP:6090058,1,"La Cavée",49.268373,2.456218,0,0,OGN:SA:CTP6090058,Europe/Paris,,OGN, +OGN:SP:6090059,1,"Le Lech",49.284097,2.463739,0,0,OGN:SA:CTP6090059,Europe/Paris,,OGN, +OGN:SP:6090062,1,"Z.I. Le Port",49.271065,2.491015,0,0,OGN:SA:CTP6090062,Europe/Paris,,OGN, +OGN:SP:6090063,1,"Z.I. Le Port",49.271065,2.491015,0,0,OGN:SA:CTP6090062,Europe/Paris,,OGN, +OGN:SP:6090064,1,"Lénine",49.252792,2.449937,0,0,OGN:SA:CTP6090064,Europe/Paris,,OGN, +OGN:SP:6090065,1,"Les Côteaux",49.26846,2.459554,0,0,OGN:SA:CTP6090065,Europe/Paris,,OGN, +OGN:SP:6090066,1,"Les Granges",49.271008,2.462443,0,0,OGN:SA:CTP6090066,Europe/Paris,,OGN, +OGN:SP:6090067,1,"Les Grilles",49.25313,2.4701,0,0,OGN:SA:CTP6090067,Europe/Paris,,OGN, +OGN:SP:6090068,1,"Lesiour",49.258678,2.427054,0,0,OGN:SA:CTP6090068,Europe/Paris,,OGN, +OGN:SP:6090069,1,"Libération",49.25389,2.447345,0,0,OGN:SA:CTP6090069,Europe/Paris,,OGN, +OGN:SP:6090070,1,"Lingerie",49.254447,2.456597,0,0,OGN:SA:CTP6090070,Europe/Paris,,OGN, +OGN:SP:6090071,1,"Lycée Malraux",49.259496,2.426177,0,0,OGN:SA:CTP6090007,Europe/Paris,,OGN, +OGN:SP:6090072,1,"Lycée Marie Curie",49.265698,2.462952,0,0,OGN:SA:CTP6090072,Europe/Paris,,OGN, +OGN:SP:6090073,1,"Magenta",49.25859,2.410568,0,0,OGN:SA:CTP6090073,Europe/Paris,,OGN, +OGN:SP:6090074,1,"Mégret",49.251515,2.476381,0,0,OGN:SA:CTP6090074,Europe/Paris,,OGN, +OGN:SP:6090075,1,"Mairie",49.255456,2.434323,0,0,OSP:SA:CTP19000088,Europe/Paris,,OGN, +OGN:SP:6090077,1,"Place du Marché",49.290422,2.500495,0,0,OGN:SA:CTP6090077,Europe/Paris,,OGN, +OGN:SP:6090078,1,"Mauriac",49.266775,2.464575,0,0,OGN:SA:CTP6090078,Europe/Paris,,OGN, +OGN:SP:6090079,1,"Médiathèque",49.273204,2.467749,0,0,OGN:SA:CTP6090079,Europe/Paris,,OGN, +OGN:SP:6090081,1,"Mortefontaine",49.287363,2.482823,0,0,OGN:SA:CTP6090081,Europe/Paris,,OGN, +OGN:SP:6090082,1,"Moulin à vent",49.258537,2.486901,0,0,OGN:SA:CTP6090082,Europe/Paris,,OGN, +OGN:SP:6090088,1,"Paul Vaillant Couturier",49.264856,2.430799,0,0,OGN:SA:CTP6090088,Europe/Paris,,OGN, +OGN:SP:6090089,1,"Pauquet",49.267109,2.479087,0,0,OGN:SA:CTP6090089,Europe/Paris,,OGN, +OGN:SP:6090090,1,"Place du marché",49.290422,2.500495,0,0,OGN:SA:CTP6090090,Europe/Paris,,OGN, +OGN:SP:6090091,1,"Plaine de Jeux",49.247971,2.472515,0,0,OGN:SA:CTP6090091,Europe/Paris,,OGN, +OGN:SP:6090092,1,"Pont Royal",49.268806,2.472186,0,0,OGN:SA:CTP6090092,Europe/Paris,,OGN, +OGN:SP:6090094,1,"Louise Michel",49.290109,2.492487,0,0,OGN:SA:CTP6090094,Europe/Paris,,OGN, +OGN:SP:6090095,1,"Puvis de Chavannes",49.256218,2.48802,0,0,OGN:SA:CTP6090095,Europe/Paris,,OGN, +OGN:SP:6090096,1,"République",49.279881,2.474014,0,0,OGN:SA:CTP6090096,Europe/Paris,,OGN, +OGN:SP:6090097,1,"Rue des Usines",49.264213,2.465845,0,0,OGN:SA:CTP6090097,Europe/Paris,,OGN, +OGN:SP:6090099,1,"Sémard",49.27032,2.475952,0,0,OGN:SA:CTP6090099,Europe/Paris,,OGN, +OGN:SP:6090102,1,"Saint Exupéry",49.272344,2.465206,0,0,OGN:SA:CTP6090102,Europe/Paris,,OGN, +OGN:SP:6090103,1,"Saint Just",49.277758,2.47659,0,0,OGN:SA:CTP6090103,Europe/Paris,,OGN, +OGN:SP:6090104,1,"Stéphenson",49.266316,2.47292,0,0,OGN:SA:CTP6090104,Europe/Paris,,OGN, +OGN:SP:6090105,1,"Vallès",49.266495,2.448004,0,0,OGN:SA:CTP6090105,Europe/Paris,,OGN, +OGN:SP:6090106,1,"Valois",49.252154,2.483273,0,0,ORQ:SA:CTP29000003,Europe/Paris,,OGN, +OGN:SP:6090108,1,"Véret",49.281382,2.464982,0,0,OGN:SA:CTP6090108,Europe/Paris,,OGN, +OGN:SP:6090109,1,"Villers Mairie",49.288222,2.486232,0,0,OGN:SA:CTP6090109,Europe/Paris,,OGN, +OGN:SP:6090110,1,"Z.I. Villers",49.286861,2.503272,0,0,OGN:SA:CTP6090110,Europe/Paris,,OGN, +OGN:SP:6090114,1,"Zola",49.260452,2.453028,0,0,OGN:SA:CTP6090114,Europe/Paris,,OGN, +OGN:SP:6090118,1,"Marais Sec",49.277267,2.488933,0,0,OGN:SA:CTP6090118,Europe/Paris,,OGN, +OGN:SP:6090119,1,"Somasco",49.268489,2.488742,0,0,OGN:SA:CTP6090119,Europe/Paris,,OGN, +OGN:SP:6090121,1,"Clos Barrois",49.273683,2.488249,0,0,OGN:SA:CTP6090121,Europe/Paris,,OGN, +OGN:SP:6090126,1,"Carnot",49.272022,2.480309,0,0,OGN:SA:CTP6090126,Europe/Paris,,OGN, +OGN:SP:6090127,1,"Jean Moulin",49.282556,2.459038,0,0,OGN:SA:CTP6090127,Europe/Paris,,OGN, +OGN:SP:6090128,1,"Branly",49.276982,2.46335,0,0,OGN:SA:CTP6090128,Europe/Paris,,OGN, +OGN:SP:6090129,1,"Gambetta",49.270892,2.470132,0,0,OGN:SA:CTP6090129,Europe/Paris,,OGN, +OGN:SP:6090130,1,"Jaurès",49.266266,2.452012,0,0,OGN:SA:CTP6090130,Europe/Paris,,OGN, +OGN:SP:6090131,1,"Sémard",49.251681,2.43599,0,0,OGN:SA:CTP6090131,Europe/Paris,,OGN, +OGN:SP:6090132,1,"Moulinière",49.285634,2.478726,0,0,OGN:SA:CTP6090132,Europe/Paris,,OGN, +OGN:SP:6095005,1,"Anatole France",49.264549,2.433269,0,0,OGN:SA:CTP6090005,Europe/Paris,,OGN, +OGN:SP:6095008,1,"Lycée Malraux",49.259487,2.426163,0,0,OGN:SA:CTP6090007,Europe/Paris,,OGN, +OGN:SP:6095010,1,"Bas des Tufs",49.257977,2.481807,0,0,OGN:SA:CTP6090010,Europe/Paris,,OGN, +OGN:SP:6095011,1,"Cavées de Paris",49.252321,2.478964,0,0,OGN:SA:CTP6090011,Europe/Paris,,OGN, +OGN:SP:6095012,1,"Berthe Fouchère",49.258351,2.477223,0,0,OGN:SA:CTP6090012,Europe/Paris,,OGN, +OGN:SP:6095014,1,"Blaise Pascal",49.254575,2.48715,0,0,OGN:SA:CTP6090014,Europe/Paris,,OGN, +OGN:SP:6095017,1,"Louis Blanc",49.256549,2.447982,0,0,OGN:SA:CTP6090017,Europe/Paris,,OGN, +OGN:SP:6095019,1,"Branly",49.253012,2.486967,0,0,OGN:SA:CTP6090019,Europe/Paris,,OGN, +OGN:SP:6095020,1,"Carnot",49.26266,2.472595,0,0,OGN:SA:CTP6090020,Europe/Paris,,OGN, +OGN:SP:6095021,1,"Carpeaux",49.26057,2.484683,0,0,OGN:SA:CTP6090021,Europe/Paris,,OGN, +OGN:SP:6095023,1,"Champrelle",49.253143,2.475343,0,0,OGN:SA:CTP6090023,Europe/Paris,,OGN, +OGN:SP:6095024,1,"Château d'Eau",49.291138,2.496061,0,0,OGN:SA:CTP6090024,Europe/Paris,,OGN, +OGN:SP:6095026,1,"Les Marches de l’Oise",49.260271,2.455073,0,0,OGN:SA:CTP6090026,Europe/Paris,,OGN, +OGN:SP:6095027,1,"Chevalier",49.262612,2.458552,0,0,OGN:SA:CTP6090027,Europe/Paris,,OGN, +OGN:SP:6095029,1,"Jacques Decour",49.266293,2.431268,0,0,OGN:SA:CTP6095029,Europe/Paris,,OGN, +OGN:SP:6095030,1,"Delacroix",49.256758,2.487129,0,0,OGN:SA:CTP6090030,Europe/Paris,,OGN, +OGN:SP:6095031,1,"Demagnez",49.268018,2.477593,0,0,OGN:SA:CTP6090031,Europe/Paris,,OGN, +OGN:SP:6095032,1,"Deneux",49.282568,2.473705,0,0,OGN:SA:CTP6090032,Europe/Paris,,OGN, +OGN:SP:6095033,1,"Déportés",49.255039,2.438234,0,0,OGN:SA:CTP6090033,Europe/Paris,,OGN, +OGN:SP:6095034,1,"Desnosse",49.257651,2.43095,0,0,OGN:SA:CTP6090034,Europe/Paris,,OGN, +OGN:SP:6095035,1,"Europe",49.269621,2.481524,0,0,OGN:SA:CTP6090035,Europe/Paris,,OGN, +OGN:SP:6095036,1,"Fabien",49.26315,2.429107,0,0,OGN:SA:CTP6095036,Europe/Paris,,OGN, +OGN:SP:6095037,1,"Faidherbe",49.279294,2.460637,0,0,OGN:SA:CTP6090037,Europe/Paris,,OGN, +OGN:SP:6095038,1,"Fécamp",49.284501,2.487141,0,0,OGN:SA:CTP6090038,Europe/Paris,,OGN, +OGN:SP:6095039,1,"Foyer",49.264165,2.46001,0,0,OGN:SA:CTP6090039,Europe/Paris,,OGN, +OGN:SP:6095040,1,"Roosevelt",49.252059,2.464195,0,0,OGN:SA:CTP6090040,Europe/Paris,,OGN, +OGN:SP:6095041,1,"Frères Péraux",49.273609,2.474889,0,0,OGN:SA:CTP6090041,Europe/Paris,,OGN, +OGN:SP:6095043,1,"Gare",49.264011,2.46999,0,0,OGN:SA:CTP6090043,Europe/Paris,,OGN, +OGN:SP:6095044,1,"Gauguin",49.256682,2.490355,0,0,OGN:SA:CTP6090044,Europe/Paris,,OGN, +OGN:SP:6095046,1,"Ginisti",49.256045,2.427241,0,0,OGN:SA:CTP6090046,Europe/Paris,,OGN, +OGN:SP:6095047,1,"Glacière",49.288165,2.481439,0,0,OGN:SA:CTP6090047,Europe/Paris,,OGN, +OGN:SP:6095049,1,"Herriot",49.268091,2.451137,0,0,OGN:SA:CTP6090049,Europe/Paris,,OGN, +OGN:SP:6095050,1,"Hoche",49.267678,2.46805,0,0,OGN:SA:CTP6090050,Europe/Paris,,OGN, +OGN:SP:6095051,1,"Hôpital",49.248053,2.463211,0,0,OSP:SA:CTP19000080,Europe/Paris,,OGN, +OGN:SP:6095053,1,"Hôpital départ",49.248116,2.463197,0,0,OGN:SA:CTP6095053,Europe/Paris,,OGN, +OGN:SP:6095054,1,"Jean Jaurès",49.255811,2.458769,0,0,OSP:SA:CTP19000026,Europe/Paris,,OGN, +OGN:SP:6095055,1,"Jean Moulin",49.25102,2.461105,0,0,OGN:SA:CTP6090055,Europe/Paris,,OGN, +OGN:SP:6095056,1,"Juillet",49.265031,2.473755,0,0,OGN:SA:CTP6090056,Europe/Paris,,OGN, +OGN:SP:6095057,1,"Jules Guesde",49.259572,2.432642,0,0,OGN:SA:CTP6090057,Europe/Paris,,OGN, +OGN:SP:6095058,1,"La Cavée",49.268643,2.45641,0,0,OGN:SA:CTP6090058,Europe/Paris,,OGN, +OGN:SP:6095059,1,"Le Lech",49.28416,2.463739,0,0,OGN:SA:CTP6090059,Europe/Paris,,OGN, +OGN:SP:6095064,1,"Lénine",49.253107,2.449347,0,0,OGN:SA:CTP6090064,Europe/Paris,,OGN, +OGN:SP:6095065,1,"Les Côteaux",49.269628,2.459612,0,0,OGN:SA:CTP6090065,Europe/Paris,,OGN, +OGN:SP:6095066,1,"Les Granges",49.271322,2.463021,0,0,OGN:SA:CTP6090066,Europe/Paris,,OGN, +OGN:SP:6095067,1,"Les Grilles",49.25313,2.4701,0,0,OGN:SA:CTP6090067,Europe/Paris,,OGN, +OGN:SP:6095068,1,"Lesiour",49.258669,2.427054,0,0,OGN:SA:CTP6090068,Europe/Paris,,OGN, +OGN:SP:6095069,1,"Libération",49.254242,2.445918,0,0,OGN:SA:CTP6090069,Europe/Paris,,OGN, +OGN:SP:6095070,1,"Lingerie",49.254447,2.456501,0,0,OGN:SA:CTP6090070,Europe/Paris,,OGN, +OGN:SP:6095071,1,"Lycée Malraux",49.259478,2.426149,0,0,OGN:SA:CTP6090007,Europe/Paris,,OGN, +OGN:SP:6095072,1,"Lycée Marie Curie",49.265671,2.462883,0,0,OGN:SA:CTP6090072,Europe/Paris,,OGN, +OGN:SP:6095073,1,"Magenta",49.258545,2.410458,0,0,OGN:SA:CTP6090073,Europe/Paris,,OGN, +OGN:SP:6095074,1,"Mégret",49.251497,2.476381,0,0,OGN:SA:CTP6090074,Europe/Paris,,OGN, +OGN:SP:6095075,1,"Mairie",49.256569,2.434819,0,0,OSP:SA:CTP19000088,Europe/Paris,,OGN, +OGN:SP:6095077,1,"Place du Marché",49.290189,2.500426,0,0,OGN:SA:CTP6095077,Europe/Paris,,OGN, +OGN:SP:6095078,1,"Mauriac",49.266747,2.464822,0,0,OGN:SA:CTP6090078,Europe/Paris,,OGN, +OGN:SP:6095079,1,"Médiathèque",49.273231,2.467776,0,0,OGN:SA:CTP6090079,Europe/Paris,,OGN, +OGN:SP:6095081,1,"Mortefontaine",49.287363,2.482823,0,0,OGN:SA:CTP6090081,Europe/Paris,,OGN, +OGN:SP:6095082,1,"Moulin à vent",49.258528,2.486887,0,0,OGN:SA:CTP6090082,Europe/Paris,,OGN, +OGN:SP:6095087,1,"Pasteur",49.274286,2.46425,0,0,OGN:SA:CTP6095087,Europe/Paris,,OGN, +OGN:SP:6095088,1,"Paul Vaillant Couturier",49.264856,2.430799,0,0,OGN:SA:CTP6090088,Europe/Paris,,OGN, +OGN:SP:6095091,1,"Plaine de Jeux",49.247854,2.472721,0,0,OGN:SA:CTP6090091,Europe/Paris,,OGN, +OGN:SP:6095092,1,"Pont Royal",49.268958,2.472117,0,0,OGN:SA:CTP6090092,Europe/Paris,,OGN, +OGN:SP:6095093,1,"Pont Y",49.259524,2.464529,0,0,OGN:SA:CTP6095093,Europe/Paris,,OGN, +OGN:SP:6095094,1,"Louise Michel",49.289868,2.49125,0,0,OGN:SA:CTP6090094,Europe/Paris,,OGN, +OGN:SP:6095095,1,"Puvis de Chavannes",49.256236,2.48802,0,0,OGN:SA:CTP6090095,Europe/Paris,,OGN, +OGN:SP:6095096,1,"République",49.279935,2.473959,0,0,OGN:SA:CTP6090096,Europe/Paris,,OGN, +OGN:SP:6095097,1,"Rue des Usines",49.264267,2.465763,0,0,OGN:SA:CTP6090097,Europe/Paris,,OGN, +OGN:SP:6095099,1,"Sémard",49.270275,2.476116,0,0,OGN:SA:CTP6090099,Europe/Paris,,OGN, +OGN:SP:6095102,1,"Saint Exupéry",49.272318,2.464506,0,0,OGN:SA:CTP6090102,Europe/Paris,,OGN, +OGN:SP:6095103,1,"Saint Just",49.277839,2.476549,0,0,OGN:SA:CTP6090103,Europe/Paris,,OGN, +OGN:SP:6095104,1,"Stéphenson",49.266316,2.472934,0,0,OGN:SA:CTP6090104,Europe/Paris,,OGN, +OGN:SP:6095106,1,"Valois",49.252118,2.483245,0,0,ORQ:SA:CTP29000003,Europe/Paris,,OGN, +OGN:SP:6095108,1,"Véret",49.281364,2.465023,0,0,OGN:SA:CTP6090108,Europe/Paris,,OGN, +OGN:SP:6095109,1,"Villers Mairie",49.288284,2.486383,0,0,OGN:SA:CTP6090109,Europe/Paris,,OGN, +OGN:SP:6095110,1,"Z.I. Villers",49.286843,2.503286,0,0,OGN:SA:CTP6090110,Europe/Paris,,OGN, +OGN:SP:6095114,1,"Zola",49.260452,2.453028,0,0,OGN:SA:CTP6090114,Europe/Paris,,OGN, +OGN:SP:6095118,1,"Marais Sec",49.276792,2.487929,0,0,OGN:SA:CTP6090118,Europe/Paris,,OGN, +OGN:SP:6095121,1,"Clos Barrois",49.272972,2.488838,0,0,OGN:SA:CTP6090121,Europe/Paris,,OGN, +OGN:SP:6095126,1,"Carnot",49.272049,2.480254,0,0,OGN:SA:CTP6090126,Europe/Paris,,OGN, +OGN:SP:6095127,1,"Jean Moulin",49.282628,2.45897,0,0,OGN:SA:CTP6090127,Europe/Paris,,OGN, +OGN:SP:6095128,1,"Branly",49.27548,2.464912,0,0,OGN:SA:CTP6090128,Europe/Paris,,OGN, +OGN:SP:6095129,1,"Gambetta",49.270883,2.470132,0,0,OGN:SA:CTP6090129,Europe/Paris,,OGN, +OGN:SP:6095131,1,"Sémard",49.251762,2.436169,0,0,OGN:SA:CTP6090131,Europe/Paris,,OGN, +OGN:SP:6095134,1,"Nogent Mairie",49.275003,2.465487,0,0,OGN:SA:CTP6095134,Europe/Paris,,OGN, +OGN:SP:6095136,1,"Roosevelt",49.26804,2.447554,0,0,OGN:SA:CTP6095136,Europe/Paris,,OGN, +OGN:SP:6095137,1,"Juillet",49.26537,2.475073,0,0,OGN:SA:CTP6090056,Europe/Paris,,OGN, +OGN:SP:6095138,1,"Parc de la Vallée",49.272883,2.481176,0,0,OGN:SA:CTP6095138,Europe/Paris,,OGN, +OGN:SP:6095139,1,"Parc de la Vallée",49.272892,2.481094,0,0,OGN:SA:CTP6095138,Europe/Paris,,OGN, +OGN:SP:6095142,1,"Gare",49.263526,2.469385,0,0,OGN:SA:CTP6090043,Europe/Paris,,OGN, +OGN:SP:6095143,1,"Gare",49.263607,2.469481,0,0,OGN:SA:CTP6090043,Europe/Paris,,OGN, +OGN:SP:6095144,1,"Commune de Paris",49.265553,2.394269,0,0,OSP:SA:CTP19000049,Europe/Paris,,OGN, +OGN:SP:6095145,1,"Commune de Paris",49.265553,2.394269,0,0,OSP:SA:CTP19000049,Europe/Paris,,OGN, +OGN:SP:6095146,1,"Louise Michel",49.266902,2.390728,0,0,OGN:SA:CTP6095146,Europe/Paris,,OGN, +OGN:SP:6095147,1,"Louise Michel",49.266902,2.390728,0,0,OGN:SA:CTP6095146,Europe/Paris,,OGN, +OGN:SP:6095148,1,"Salle des Fêtes",49.267864,2.389617,0,0,OGN:SA:CTP6095148,Europe/Paris,,OGN, +OGN:SP:6095149,1,"Seguin",49.255501,2.421228,0,0,OSP:SA:CTP19000083,Europe/Paris,,OGN, +OGN:SP:6095150,1,"Seguin",49.255457,2.421242,0,0,OSP:SA:CTP19000083,Europe/Paris,,OGN, +OGN:SP:6095151,1,"Ginisti",49.256135,2.427228,0,0,OGN:SA:CTP6090046,Europe/Paris,,OGN, +OGN:SP:6095152,1,"Croizat",49.253884,2.433332,0,0,OGN:SA:CTP6095152,Europe/Paris,,OGN, +OGN:SP:6095153,1,"Croizat",49.253875,2.433318,0,0,OGN:SA:CTP6095152,Europe/Paris,,OGN, +OGN:SP:6095155,1,"Guy Môquet",49.255791,2.430892,0,0,OGN:SA:CTP6095155,Europe/Paris,,OGN, +OGN:SP:6095157,1,"Parc Urbain",49.25335,2.427538,0,0,OGN:SA:CTP6095157,Europe/Paris,,OGN, +OGN:SP:6095159,1,"Gournay",49.261279,2.46172,0,0,OGN:SA:CTP6095159,Europe/Paris,,OGN, +OGN:SP:6095160,1,"Murat",49.267542,2.469093,0,0,OGN:SA:CTP6095160,Europe/Paris,,OGN, +OGN:SP:6095166,1,"8 Mai",49.260546,2.474703,0,0,OGN:SA:CTP6095166,Europe/Paris,,OGN, +OGN:SP:6095168,1,"Porte de creil",49.244722,2.469337,0,0,OGN:SA:CTP6095168,Europe/Paris,,OGN, +OGN:SP:6095169,1,"Gabriel Havez",49.248694,2.468798,0,0,OGN:SA:CTP6095169,Europe/Paris,,OGN, +OGN:SP:6095172,1,"Alatium",49.254931,2.496759,0,0,OGN:SA:CTP6095172,Europe/Paris,,OGN, +OGN:SP:6095174,1,"Gare de Villers",49.28263,2.489072,0,0,OGN:SA:CTP6095174,Europe/Paris,,OGN, +OGN:SP:6095175,1,"Pommiers",49.289094,2.499818,0,0,OGN:SA:CTP6095175,Europe/Paris,,OGN, +OGN:SP:6095176,1,"Kuhlmann",49.29149,2.508053,0,0,OGN:SA:CTP6095176,Europe/Paris,,OGN, +OGN:SP:6095177,1,"ZI Les Prés Roseaux",49.288535,2.507274,0,0,OGN:SA:CTP6095177,Europe/Paris,,OGN, +OGN:SP:6095178,1,"Véret",49.282746,2.46666,0,0,OGN:SA:CTP6090108,Europe/Paris,,OGN, +OGN:SP:6095179,1,"Véret",49.282827,2.466688,0,0,OGN:SA:CTP6090108,Europe/Paris,,OGN, +OGN:SP:6095180,1,"Branly",49.277656,2.462693,0,0,OGN:SA:CTP6090128,Europe/Paris,,OGN, +OGN:SP:6095182,1,"Becquerel",49.252481,2.480199,0,0,OGN:SA:CTP6095182,Europe/Paris,,OGN, +OGN:SP:6095183,1,"Becquerel",49.252149,2.48024,0,0,OGN:SA:CTP6095182,Europe/Paris,,OGN, +OGN:SP:6095188,1,"Michelet",49.261274,2.474266,0,0,OGN:SA:CTP6095188,Europe/Paris,,OGN, +OGN:SP:6095190,1,"Gabriel Havez",49.248703,2.468798,0,0,OGN:SA:CTP6095169,Europe/Paris,,OGN, +OGN:SP:6095191,1,"Porte de creil",49.244838,2.469653,0,0,OGN:SA:CTP6095168,Europe/Paris,,OGN, +OGN:SP:6095192,1,"Biondi",49.25337,2.47323,0,0,OGN:SA:CTP6090013,Europe/Paris,,OGN, +OGN:SP:6095193,1,"Gambetta",49.263045,2.473983,0,0,OGN:SA:CTP6090042,Europe/Paris,,OGN, +OGN:SP:6095194,1,"Mairie",49.255465,2.434048,0,0,OSP:SA:CTP19000088,Europe/Paris,,OGN, +OGN:SP:6095197,1,"Chapelle De Vaux",49.263889,2.489113,0,0,OGN:SA:CTP6095197,Europe/Paris,,OGN, +OGN:SP:6095198,1,"Chapelle De Vaux",49.263826,2.489127,0,0,OGN:SA:CTP6095197,Europe/Paris,,OGN, +OGN:SP:6095201,1,"Léon Blum",49.254343,2.478173,0,0,OGN:SA:CTP6095201,Europe/Paris,,OGN, +OGN:SP:6095203,1,"Léon Blum",49.254676,2.478174,0,0,OGN:SA:CTP6095201,Europe/Paris,,OGN, +OGN:SP:6095205,1,"Verlaine",49.249254,2.473973,0,0,OGN:SA:CTP6095205,Europe/Paris,,OGN, +OGN:SP:6095206,1,"Verlaine",49.249631,2.47429,0,0,OGN:SA:CTP6095205,Europe/Paris,,OGN, +OGN:SP:6095207,1,"Taffanel",49.27047,2.499704,0,0,OGN:SA:CTP6095207,Europe/Paris,,OGN, +OGN:SP:6095208,1,"Taffanel",49.270452,2.499718,0,0,OGN:SA:CTP6095207,Europe/Paris,,OGN, +OGN:SP:6095209,1,"Inéris",49.27226,2.504516,0,0,OGN:SA:CTP6095209,Europe/Paris,,OGN, +OGN:SP:6095210,1,"Inéris",49.27226,2.504516,0,0,OGN:SA:CTP6095209,Europe/Paris,,OGN, +OGN:SP:6095211,1,"Parc Alata 2",49.264957,2.503805,0,0,OGN:SA:CTP6095211,Europe/Paris,,OGN, +OGN:SP:6095212,1,"Parc Alata 2",49.264957,2.503737,0,0,OGN:SA:CTP6095211,Europe/Paris,,OGN, +OGN:SP:6095213,1,"Parc Alata 1",49.262321,2.499885,0,0,OGN:SA:CTP6095214,Europe/Paris,,OGN, +OGN:SP:6095214,1,"Parc Alata 1",49.262321,2.499953,0,0,OGN:SA:CTP6095214,Europe/Paris,,OGN, +OGN:SP:6095215,1,"Noisetiers",49.260075,2.499493,0,0,OGN:SA:CTP6095215,Europe/Paris,,OGN, +OGN:SP:6095216,1,"Noisetiers",49.260012,2.499452,0,0,OGN:SA:CTP6095215,Europe/Paris,,OGN, +OGN:SP:6095217,1,"Alatium",49.254931,2.496746,0,0,OGN:SA:CTP6095172,Europe/Paris,,OGN, +OGN:SP:6095219,1,"Michelet",49.261256,2.474307,0,0,OGN:SA:CTP6095188,Europe/Paris,,OGN, +OGN:SP:6095220,1,"Gambetta",49.263081,2.473996,0,0,OGN:SA:CTP6090042,Europe/Paris,,OGN, +OGN:SP:6095221,1,"Murat",49.267542,2.46908,0,0,OGN:SA:CTP6095160,Europe/Paris,,OGN, +OGN:SP:6095222,1,"Gournay",49.261306,2.461706,0,0,OGN:SA:CTP6095159,Europe/Paris,,OGN, +OID:SP:1,1,"Paris Centre - Bercy",48.838424,2.382411,0,0,OID:SA:1,Europe/Paris,2,OID, +OID:SP:106,1,"Lyon - Aéroport Saint-Exupéry",45.719095,5.079539,0,0,OID:SA:106,Europe/Paris,2,OID, +OID:SP:111,1,"Paris - Porte Maillot",48.879921,2.282163,0,0,OID:SA:111,Europe/Paris,2,OID, +OID:SP:12,1,"Milan",45.489441,9.127631,0,0,OID:SA:12,Europe/Paris,2,OID, +OID:SP:122,1,"Berck-sur-Mer",50.409007,1.568345,0,0,OID:SA:122,Europe/Paris,2,OID, +OID:SP:124,1,"Le Touquet-Paris-Plage",50.527323,1.582964,0,0,OID:SA:124,Europe/Paris,2,OID, +OID:SP:126,1,"Auxerre",47.796629,3.584484,0,0,SIN:SA:OCE87683573,Europe/Paris,2,OID, +OID:SP:145,1,"Montbéliard",47.510471,6.801662,0,0,SIN:SA:OCE87184523,Europe/Paris,2,OID, +OID:SP:148,1,"Chalon-sur-Saône",46.782098,4.844396,0,0,OID:SA:148,Europe/Paris,2,OID, +OID:SP:15,1,"Marseille - Gare routière St-Charles",43.304179,5.379868,0,0,OID:SA:15,Europe/Paris,2,OID, +OID:SP:168,1,"Marne-la-Vallée - Chessy",48.872647,2.797002,0,0,OID:SA:168,Europe/Paris,2,OID, +OID:SP:173,1,"Beauvais - Aéroport",49.46254,2.116935,0,0,OID:SA:173,Europe/Paris,2,OID, +OID:SP:18,1,"Lyon - Gare routière Perrache",45.748854,4.825925,0,0,OID:SA:18,Europe/Paris,2,OID, +OID:SP:181,1,"Montargis",47.977843,2.729137,0,0,OID:SA:181,Europe/Paris,2,OID, +OID:SP:182,1,"Nevers",46.989112,3.150376,0,0,OID:SA:182,Europe/Paris,2,OID, +OID:SP:19,1,"Londres",51.492513,-0.148349,0,0,OID:SA:19,Europe/Paris,2,OID, +OID:SP:192,1,"Paris Nord - St-Denis université",48.946448,2.365162,0,0,OID:SA:192,Europe/Paris,2,OID, +OID:SP:193,1,"Bâle Mulhouse Fribourg - Aéroport",47.600746,7.531787,0,0,OID:SA:193,Europe/Paris,2,OID, +OID:SP:195,1,"Europa Park",48.269588,7.721926,0,0,OID:SA:195,Europe/Paris,2,OID, +OID:SP:20,1,"Bruxelles Centre - Gare Midi",50.834999,4.33264,0,0,OID:SA:20,Europe/Paris,2,OID, +OID:SP:200,1,"Mâcon",46.302631,4.82535,0,0,SIN:SA:OCE87725689,Europe/Paris,2,OID, +OID:SP:204,1,"Bourg-en-Bresse",46.199736,5.215021,0,0,SIN:SA:OCE87743005,Europe/Paris,2,OID, +OID:SP:208,1,"Bruges",51.195628,3.216865,0,0,OID:SA:208,Europe/Paris,2,OID, +OID:SP:21,1,"Genève - Gare routière",46.208384,6.146746,0,0,OID:SA:21,Europe/Paris,2,OID, +OID:SP:22,1,"Anvers",51.218055,4.39431,0,0,OID:SA:22,Europe/Paris,2,OID, +OID:SP:223,1,"Arras",50.288064,2.783173,0,0,OID:SA:223,Europe/Paris,2,OID, +OID:SP:234,1,"Luxembourg",49.598862,6.131591,0,0,OID:SA:234,Europe/Paris,2,OID, +OID:SP:235,1,"Béthune",50.52148,2.640971,0,0,SIN:SA:OCE87342006,Europe/Paris,2,OID, +OID:SP:237,1,"Thionville",49.353986,6.168382,0,0,SIN:SA:OCE87191007,Europe/Paris,2,OID, +OID:SP:24,1,"Dijon",47.324051,5.027794,0,0,OID:SA:24,Europe/Paris,2,OID, +OID:SP:243,1,"Belfort",47.628566,6.856902,0,0,OID:SA:243,Europe/Paris,2,OID, +OID:SP:245,1,"La Haye",52.080197,4.325052,0,0,OID:SA:245,Europe/Paris,2,OID, +OID:SP:252,1,"Roubaix",50.688991,3.180018,0,0,OID:SA:252,Europe/Paris,2,OID, +OID:SP:27,1,"Strasbourg",48.574241,7.75426,0,0,OID:SA:27,Europe/Paris,2,OID, +OID:SP:285,1,"Colmar",48.072744,7.347347,0,0,SIN:SA:OCE87182014,Europe/Paris,2,OID, +OID:SP:290,1,"Bruxelles - Aéroport Zaventem",50.897651,4.479879,0,0,OID:SA:290,Europe/Paris,2,OID, +OID:SP:30,1,"Rouen Centre",49.434093,1.092471,0,0,OID:SA:30,Europe/Paris,2,OID, +OID:SP:315,1,"Taizé",46.514634,4.67614,0,0,OID:SA:315,Europe/Paris,2,OID, +OID:SP:319,1,"Charleville-Mézières",49.76881,4.724886,0,0,OID:SA:319,Europe/Paris,2,OID, +OID:SP:32,1,"Amiens",49.89202,2.3091,0,0,OID:SA:32,Europe/Paris,2,OID, +OID:SP:320,1,"Sedan",49.695216,4.93069,0,0,OID:SA:320,Europe/Paris,2,OID, +OID:SP:321,1,"Vitry-sur-Seine",48.796657,2.41237,0,0,OID:SA:321,Europe/Paris,2,OID, +OID:SP:324,1,"Châlons-en-Champagne",48.955008,4.348484,0,0,OID:SA:324,Europe/Paris,2,OID, +OID:SP:39,1,"Clermont-Ferrand",45.77078,3.0823,0,0,OID:SA:39,Europe/Paris,2,OID, +OID:SP:40,1,"Dunkerque",51.047253,2.38385,0,0,OID:SA:40,Europe/Paris,2,OID, +OID:SP:41,1,"Grenoble Centre - Gare routière",45.192833,5.714294,0,0,OID:SA:41,Europe/Paris,2,OID, +OID:SP:47,1,"Metz",49.110633,6.183319,0,0,OID:SA:47,Europe/Paris,2,OID, +OID:SP:48,1,"Nancy",48.649482,6.14619,0,0,OID:SA:48,Europe/Paris,2,OID, +OID:SP:51,1,"Paris Ouest - La Défense",48.89132,2.24233,0,0,OID:SA:51,Europe/Paris,2,OID, +OID:SP:52,1,"Paris - Aéroport Orly-Sud",48.731568,2.373562,0,0,OID:SA:52,Europe/Paris,2,OID, +OID:SP:55,1,"Reims",49.214754,3.994568,0,0,OID:SA:55,Europe/Paris,2,OID, +OID:SP:57,1,"Troyes",48.328044,4.100755,0,0,OID:SA:57,Europe/Paris,2,OID, +OID:SP:60,1,"Mulhouse",47.742012,7.341712,0,0,OID:SA:60,Europe/Paris,2,OID, +OID:SP:61,1,"Besançon",47.2215,5.97861,0,0,OID:SA:61,Europe/Paris,2,OID, +OID:SP:62,1,"Douai",50.3644,3.08522,0,0,OID:SA:62,Europe/Paris,2,OID, +OID:SP:68,1,"Paris Sud - Porte d'Orléans",48.821139,2.325379,0,0,OID:SA:68,Europe/Paris,2,OID, +OID:SP:7,1,"Aix-en-Provence",43.5232,5.4451,0,0,OID:SA:7,Europe/Paris,2,OID, +OID:SP:80,1,"Calais",50.966597,1.862854,0,0,OID:SA:80,Europe/Paris,2,OID, +OID:SP:82,1,"Parc Astérix",49.136899,2.570402,0,0,OID:SA:82,Europe/Paris,2,OID, +OID:SP:9,1,"Amsterdam Centre - Sloterdijk",52.389289,4.836263,0,0,OID:SA:9,Europe/Paris,2,OID, +OIS:SP:3000562,1,"Fontaine St Lucien",49.501309,2.148765,0,0,OIS:SA:CTP3000562,Europe/Paris,,OIS, +OIS:SP:3000728,1,"Eglise",49.465177,1.965088,0,0,OIS:SA:CTP3000728,Europe/Paris,,OIS, +OIS:SP:3000746,1,"Mairie",49.404285,2.005904,0,0,OIS:SA:CTP3000746,Europe/Paris,,OIS, +OIS:SP:3000918,1,"Vignes",49.43384,2.101866,0,0,OIS:SA:CTP3000918,Europe/Paris,,OIS, +OIS:SP:3000926,1,"Villers Saint-Lucien",49.457439,2.085126,0,0,OIS:SA:CTP3000926,Europe/Paris,,OIS, +OIS:SP:3000959,1,"Vivaldi",49.413669,2.078099,0,0,OIS:SA:CTP3000959,Europe/Paris,,OIS, +OIS:SP:3000960,1,"Vivaldi",49.413508,2.078196,0,0,OIS:SA:CTP3000959,Europe/Paris,,OIS, +OIS:SP:3001031,1,"Zeude",49.420211,2.092194,0,0,OIS:SA:CTP3001031,Europe/Paris,,OIS, +OIS:SP:3001032,1,"Zeude",49.420337,2.092276,0,0,OIS:SA:CTP3001031,Europe/Paris,,OIS, +OIS:SP:3001091,1,"Thiérache",49.43744,2.096423,0,0,OIS:SA:CTP3001091,Europe/Paris,,OIS, +OIS:SP:3001092,1,"Thiérache",49.437376,2.096037,0,0,OIS:SA:CTP3001091,Europe/Paris,,OIS, +OIS:SP:3001197,1,"Moulin de Bracheux",49.424516,2.11619,0,0,OIS:SA:CTP3001197,Europe/Paris,,OIS, +OIS:SP:3001198,1,"Moulin de Bracheux",49.42448,2.116424,0,0,OIS:SA:CTP3001197,Europe/Paris,,OIS, +OIS:SP:3001655,1,"Tilleuls",49.455696,2.097797,0,0,OIS:SA:CTP3001655,Europe/Paris,,OIS, +OIS:SP:3001659,1,"Verderel-lès-Sauqueuse",49.503051,2.09666,0,0,OIS:SA:CTP3001659,Europe/Paris,,OIS, +OIS:SP:3001660,1,"Bonlier",49.470466,2.15005,0,0,OIS:SA:CTP3001660,Europe/Paris,,OIS, +OIS:SP:3014004,1,"Saint-Antoine",49.431971,2.102944,0,0,OIS:SA:CTP3014004,Europe/Paris,,OIS, +OIS:SP:3014075,1,"Abri",49.47976,2.044871,0,0,OIS:SA:CTP3014075,Europe/Paris,,OIS, +OIS:SP:3014096,1,"Saint-Léger Place",49.390698,2.0261,0,0,OIS:SA:CTP3014096,Europe/Paris,,OIS, +OIS:SP:3014144,1,"Kennedy",49.408662,2.111866,0,0,OIS:SA:CTP3014144,Europe/Paris,,OIS, +OIS:SP:3014145,1,"Eglise",49.404809,2.112489,0,0,OIS:SA:CTP3014145,Europe/Paris,,OIS, +OIS:SP:3014146,1,"rue Commessy",49.403522,2.111242,0,0,OIS:SA:CTP3014147,Europe/Paris,,OIS, +OIS:SP:3014147,1,"rue Commessy",49.403298,2.1103,0,0,OIS:SA:CTP3014147,Europe/Paris,,OIS, +OIS:SP:3014150,1,"Place",49.413423,2.04156,0,0,OIS:SA:CTP3014150,Europe/Paris,,OIS, +OIS:SP:3014151,1,"D981",49.413834,2.044022,0,0,OIS:SA:CTP3014151,Europe/Paris,,OIS, +OIS:SP:3014152,1,"D981",49.414435,2.043963,0,0,OIS:SA:CTP3014151,Europe/Paris,,OIS, +OIS:SP:3014155,1,"Bongenoult Ecole",49.399641,2.096834,0,0,OIS:SA:CTP3014155,Europe/Paris,,OIS, +OIS:SP:3014157,1,"Bonlier",49.470474,2.150036,0,0,OIS:SA:CTP3001660,Europe/Paris,,OIS, +OIS:SP:3014160,1,"Halles",49.430589,2.084679,0,0,OIS:SA:CTP3014160,Europe/Paris,,OIS, +OIS:SP:3014164,1,"Avelon",49.428406,2.059955,0,0,OIS:SA:CTP3014164,Europe/Paris,,OIS, +OIS:SP:3014165,1,"Avelon",49.428352,2.059986,0,0,OIS:SA:CTP3014164,Europe/Paris,,OIS, +OIS:SP:3014166,1,"Clermont",49.431988,2.105704,0,0,OIS:SA:CTP3014166,Europe/Paris,,OIS, +OIS:SP:3014167,1,"Clermont",49.432185,2.105675,0,0,OIS:SA:CTP3014166,Europe/Paris,,OIS, +OIS:SP:3014168,1,"Esterel",49.432906,2.097615,0,0,OIS:SA:CTP3014168,Europe/Paris,,OIS, +OIS:SP:3014169,1,"Esterel",49.432789,2.097657,0,0,OIS:SA:CTP3014168,Europe/Paris,,OIS, +OIS:SP:3014170,1,"Gare SNCF",49.42666,2.08737,0,0,OIS:SA:CTP3014170,Europe/Paris,,OIS, +OIS:SP:3014171,1,"Gare SNCF",49.42675,2.087508,0,0,OIS:SA:CTP3014170,Europe/Paris,,OIS, +OIS:SP:3014172,1,"Centre Commercial",49.432598,2.0456,0,0,OIS:SA:CTP3014172,Europe/Paris,,OIS, +OIS:SP:3014173,1,"Centre Commercial",49.432315,2.045596,0,0,OIS:SA:CTP3014172,Europe/Paris,,OIS, +OIS:SP:3014174,1,"Gare routière",49.427648,2.082821,0,0,OIS:SA:CTP3014174,Europe/Paris,,OIS, +OIS:SP:3014175,1,"Gare routière",49.427345,2.084172,0,0,OIS:SA:CTP3014174,Europe/Paris,,OIS, +OIS:SP:3014176,1,"Rond-point",49.394866,2.017636,0,0,OIS:SA:CTP3014176,Europe/Paris,,OIS, +OIS:SP:3014177,1,"Rond-point",49.395369,2.017675,0,0,OIS:SA:CTP3014176,Europe/Paris,,OIS, +OIS:SP:3014179,1,"Pentemont",49.431628,2.054801,0,0,OIS:SA:CTP3014179,Europe/Paris,,OIS, +OIS:SP:3014180,1,"Pentemont",49.431627,2.054622,0,0,OIS:SA:CTP3014179,Europe/Paris,,OIS, +OIS:SP:3014181,1,"Saint-Antoine",49.43183,2.102964,0,0,OIS:SA:CTP3014004,Europe/Paris,,OIS, +OIS:SP:3014185,1,"Besnard",49.431939,2.10833,0,0,OIS:SA:CTP3014185,Europe/Paris,,OIS, +OIS:SP:3014186,1,"Besnard",49.432253,2.108319,0,0,OIS:SA:CTP3014185,Europe/Paris,,OIS, +OIS:SP:3014187,1,"Blancs Pains",49.433751,2.107307,0,0,OIS:SA:CTP3014187,Europe/Paris,,OIS, +OIS:SP:3014188,1,"Blancs Pains",49.433679,2.107211,0,0,OIS:SA:CTP3014187,Europe/Paris,,OIS, +OIS:SP:3014189,1,"Bas Romains",49.43277,2.106072,0,0,OIS:SA:CTP3014189,Europe/Paris,,OIS, +OIS:SP:3014192,1,"Bosquet",49.435664,2.097753,0,0,OIS:SA:CTP3014192,Europe/Paris,,OIS, +OIS:SP:3014193,1,"Dardignac",49.418267,2.073298,0,0,OIS:SA:CTP3014194,Europe/Paris,,OIS, +OIS:SP:3014194,1,"Dardignac",49.418356,2.072925,0,0,OIS:SA:CTP3014194,Europe/Paris,,OIS, +OIS:SP:3014195,1,"Flandres",49.435067,2.100263,0,0,OIS:SA:CTP3014195,Europe/Paris,,OIS, +OIS:SP:3014196,1,"Gide",49.422356,2.074172,0,0,OIS:SA:CTP3014196,Europe/Paris,,OIS, +OIS:SP:3014197,1,"Gide",49.422132,2.074104,0,0,OIS:SA:CTP3014196,Europe/Paris,,OIS, +OIS:SP:3014198,1,"Ile de France",49.42455,2.083607,0,0,OIS:SA:CTP3014198,Europe/Paris,,OIS, +OIS:SP:3014199,1,"Ile de France",49.424336,2.084104,0,0,OIS:SA:CTP3014198,Europe/Paris,,OIS, +OIS:SP:3014201,1,"Jean Moulin",49.435602,2.102933,0,0,OIS:SA:CTP3014201,Europe/Paris,,OIS, +OIS:SP:3014202,1,"Jean Moulin",49.435522,2.102919,0,0,OIS:SA:CTP3014201,Europe/Paris,,OIS, +OIS:SP:3014205,1,"Marissel",49.430343,2.105229,0,0,OIS:SA:CTP3014205,Europe/Paris,,OIS, +OIS:SP:3014206,1,"Marissel",49.429938,2.104584,0,0,OIS:SA:CTP3014205,Europe/Paris,,OIS, +OIS:SP:3014207,1,"Marissel",49.429903,2.105272,0,0,OIS:SA:CTP3014205,Europe/Paris,,OIS, +OIS:SP:3014209,1,"Marissel",49.430073,2.105175,0,0,OIS:SA:CTP3014205,Europe/Paris,,OIS, +OIS:SP:3014210,1,"Parc Kennedy",49.428044,2.100984,0,0,OIS:SA:CTP3014210,Europe/Paris,,OIS, +OIS:SP:3014211,1,"Parc Kennedy",49.428169,2.100625,0,0,OIS:SA:CTP3014210,Europe/Paris,,OIS, +OIS:SP:3014214,1,"Rimbaud",49.422222,2.078689,0,0,OIS:SA:CTP3014214,Europe/Paris,,OIS, +OIS:SP:3014215,1,"Rimbaud",49.422069,2.078456,0,0,OIS:SA:CTP3014214,Europe/Paris,,OIS, +OIS:SP:3014216,1,"Rousseau",49.421438,2.07346,0,0,OIS:SA:CTP3014216,Europe/Paris,,OIS, +OIS:SP:3014217,1,"Rousseau",49.421304,2.073516,0,0,OIS:SA:CTP3014216,Europe/Paris,,OIS, +OIS:SP:3014222,1,"Saint-Esprit",49.418764,2.087023,0,0,OIS:SA:CTP3014222,Europe/Paris,,OIS, +OIS:SP:3014226,1,"Beauséjour",49.445885,2.0882,0,0,OIS:SA:CTP3014226,Europe/Paris,,OIS, +OIS:SP:3014227,1,"Beauséjour",49.445956,2.087965,0,0,OIS:SA:CTP3014226,Europe/Paris,,OIS, +OIS:SP:3014228,1,"Berlioz",49.415697,2.076822,0,0,OIS:SA:CTP3014228,Europe/Paris,,OIS, +OIS:SP:3014229,1,"Berlioz",49.415572,2.077112,0,0,OIS:SA:CTP3014228,Europe/Paris,,OIS, +OIS:SP:3014230,1,"Bizet",49.414476,2.085543,0,0,OIS:SA:CTP3014230,Europe/Paris,,OIS, +OIS:SP:3014233,1,"Buzanval - Jeu de Paume",49.432235,2.085511,0,0,OIS:SA:CTP3014233,Europe/Paris,,OIS, +OIS:SP:3014234,1,"Calais",49.438857,2.082421,0,0,OIS:SA:CTP3014234,Europe/Paris,,OIS, +OIS:SP:3014235,1,"Calais",49.438876,2.0826,0,0,OIS:SA:CTP3014234,Europe/Paris,,OIS, +OIS:SP:3014236,1,"Capucines",49.448865,2.091257,0,0,OIS:SA:CTP3014236,Europe/Paris,,OIS, +OIS:SP:3014237,1,"Caron",49.43639,2.083528,0,0,OIS:SA:CTP3014237,Europe/Paris,,OIS, +OIS:SP:3014238,1,"Cathédrale",49.431159,2.082101,0,0,OIS:SA:CTP3014238,Europe/Paris,,OIS, +OIS:SP:3014239,1,"Caurroy",49.418207,2.083129,0,0,OIS:SA:CTP3014239,Europe/Paris,,OIS, +OIS:SP:3014240,1,"Chopin",49.416709,2.084197,0,0,OIS:SA:CTP3014240,Europe/Paris,,OIS, +OIS:SP:3014241,1,"Ecole Maternelle",49.415488,2.088774,0,0,OIS:SA:CTP3014241,Europe/Paris,,OIS, +OIS:SP:3014242,1,"Ecole Maternelle",49.415902,2.08902,0,0,OIS:SA:CTP3014241,Europe/Paris,,OIS, +OIS:SP:3014244,1,"Fauqueux",49.421531,2.07872,0,0,OIS:SA:CTP3014244,Europe/Paris,,OIS, +OIS:SP:3014245,1,"Fauqueux",49.421423,2.078776,0,0,OIS:SA:CTP3014244,Europe/Paris,,OIS, +OIS:SP:3014246,1,"Franc Marché",49.436788,2.084828,0,0,OIS:SA:CTP3014246,Europe/Paris,,OIS, +OIS:SP:3014247,1,"Franc Marché",49.436581,2.084829,0,0,OIS:SA:CTP3014246,Europe/Paris,,OIS, +OIS:SP:3014249,1,"George Sand",49.44959,2.085729,0,0,OIS:SA:CTP3014249,Europe/Paris,,OIS, +OIS:SP:3014250,1,"Jeanne Hachette",49.435327,2.082204,0,0,OIS:SA:CTP3014250,Europe/Paris,,OIS, +OIS:SP:3014251,1,"Jeanne Hachette",49.435434,2.082093,0,0,OIS:SA:CTP3014250,Europe/Paris,,OIS, +OIS:SP:3014252,1,"Jacinthes",49.451857,2.087578,0,0,OIS:SA:CTP3014252,Europe/Paris,,OIS, +OIS:SP:3014253,1,"Jean Racine",49.43401,2.079938,0,0,OIS:SA:CTP3014253,Europe/Paris,,OIS, +OIS:SP:3014254,1,"Rostand",49.414354,2.0833,0,0,OIS:SA:CTP3014254,Europe/Paris,,OIS, +OIS:SP:3014255,1,"Rostand",49.414183,2.083287,0,0,OIS:SA:CTP3014254,Europe/Paris,,OIS, +OIS:SP:3014256,1,"Lebesgue",49.420514,2.078119,0,0,OIS:SA:CTP3014257,Europe/Paris,,OIS, +OIS:SP:3014257,1,"Lebesgue",49.420694,2.078187,0,0,OIS:SA:CTP3014257,Europe/Paris,,OIS, +OIS:SP:3014258,1,"Métiers",49.418986,2.077328,0,0,OIS:SA:CTP3014258,Europe/Paris,,OIS, +OIS:SP:3014259,1,"Métiers",49.418941,2.077604,0,0,OIS:SA:CTP3014258,Europe/Paris,,OIS, +OIS:SP:3014260,1,"Place de Noailles",49.44325,2.085555,0,0,OIS:SA:CTP3014260,Europe/Paris,,OIS, +OIS:SP:3014261,1,"Place de Noailles",49.443221,2.085815,0,0,OIS:SA:CTP3014260,Europe/Paris,,OIS, +OIS:SP:3014264,1,"Ruisselets",49.447153,2.084735,0,0,OIS:SA:CTP3014264,Europe/Paris,,OIS, +OIS:SP:3014265,1,"Songeons",49.441792,2.080849,0,0,OIS:SA:CTP3014265,Europe/Paris,,OIS, +OIS:SP:3014266,1,"Songeons",49.441872,2.080849,0,0,OIS:SA:CTP3014265,Europe/Paris,,OIS, +OIS:SP:3014267,1,"Violettes",49.446732,2.08938,0,0,OIS:SA:CTP3014267,Europe/Paris,,OIS, +OIS:SP:3014269,1,"Amyot d'Inville",49.433613,2.078783,0,0,OIS:SA:CTP3014269,Europe/Paris,,OIS, +OIS:SP:3014270,1,"Ancienne Mairie",49.444945,2.080222,0,0,OIS:SA:CTP3014270,Europe/Paris,,OIS, +OIS:SP:3014271,1,"Ancienne Mairie",49.445077,2.080062,0,0,OIS:SA:CTP3014270,Europe/Paris,,OIS, +OIS:SP:3014273,1,"Blum",49.448873,2.073912,0,0,OIS:SA:CTP3014273,Europe/Paris,,OIS, +OIS:SP:3014274,1,"Boislisle",49.436338,2.076056,0,0,OIS:SA:CTP3014274,Europe/Paris,,OIS, +OIS:SP:3014275,1,"Boislisle",49.436283,2.075781,0,0,OIS:SA:CTP3014274,Europe/Paris,,OIS, +OIS:SP:3014276,1,"Bois Brûlet",49.451611,2.076194,0,0,OIS:SA:CTP3014276,Europe/Paris,,OIS, +OIS:SP:3014278,1,"Bois Brûlet",49.45099,2.076987,0,0,OIS:SA:CTP3014276,Europe/Paris,,OIS, +OIS:SP:3014279,1,"Bois Brûlet",49.451026,2.076835,0,0,OIS:SA:CTP3014276,Europe/Paris,,OIS, +OIS:SP:3014280,1,"Cambry",49.439231,2.076496,0,0,OIS:SA:CTP3014280,Europe/Paris,,OIS, +OIS:SP:3014281,1,"Cambry",49.439222,2.076317,0,0,OIS:SA:CTP3014280,Europe/Paris,,OIS, +OIS:SP:3014284,1,"Crèvecoeur",49.452673,2.074099,0,0,OIS:SA:CTP3014284,Europe/Paris,,OIS, +OIS:SP:3014288,1,"Délie",49.410291,2.113511,0,0,OIS:SA:CTP3014591,Europe/Paris,,OIS, +OIS:SP:3014289,1,"Délie",49.41029,2.11336,0,0,OIS:SA:CTP3014591,Europe/Paris,,OIS, +OIS:SP:3014294,1,"Dr Schweitzer",49.412169,2.113999,0,0,OIS:SA:CTP3014294,Europe/Paris,,OIS, +OIS:SP:3014295,1,"Echangeur",49.417946,2.105065,0,0,OIS:SA:CTP3014295,Europe/Paris,,OIS, +OIS:SP:3014296,1,"Echangeur",49.418,2.105147,0,0,OIS:SA:CTP3014295,Europe/Paris,,OIS, +OIS:SP:3014297,1,"Eglise",49.421662,2.090025,0,0,OIS:SA:CTP3014297,Europe/Paris,,OIS, +OIS:SP:3014298,1,"Eglise",49.421771,2.0903,0,0,OIS:SA:CTP3014297,Europe/Paris,,OIS, +OIS:SP:3014301,1,"Europe",49.441719,2.076345,0,0,OIS:SA:CTP3014301,Europe/Paris,,OIS, +OIS:SP:3014302,1,"Europe",49.441683,2.076428,0,0,OIS:SA:CTP3014301,Europe/Paris,,OIS, +OIS:SP:3014303,1,"Gay Lussac",49.411923,2.107157,0,0,OIS:SA:CTP3014303,Europe/Paris,,OIS, +OIS:SP:3014304,1,"Gay Lussac",49.411654,2.107489,0,0,OIS:SA:CTP3014303,Europe/Paris,,OIS, +OIS:SP:3014305,1,"Hôpital",49.451007,2.072233,0,0,OIS:SA:CTP3014305,Europe/Paris,,OIS, +OIS:SP:3014307,1,"LaSalle",49.458352,2.070873,0,0,OIS:SA:CTP3014307,Europe/Paris,,OIS, +OIS:SP:3014308,1,"Isaac",49.445967,2.075855,0,0,OIS:SA:CTP3014308,Europe/Paris,,OIS, +OIS:SP:3014310,1,"Langevin",49.416638,2.106558,0,0,OIS:SA:CTP3014310,Europe/Paris,,OIS, +OIS:SP:3014311,1,"Langevin",49.416195,2.106667,0,0,OIS:SA:CTP3014310,Europe/Paris,,OIS, +OIS:SP:3014314,1,"Maladrerie",49.415481,2.098508,0,0,OIS:SA:CTP3014314,Europe/Paris,,OIS, +OIS:SP:3014315,1,"Maladrerie",49.415723,2.09837,0,0,OIS:SA:CTP3014314,Europe/Paris,,OIS, +OIS:SP:3014316,1,"Mie au Roy",49.445491,2.071931,0,0,OIS:SA:CTP3014316,Europe/Paris,,OIS, +OIS:SP:3014317,1,"Montaigne",49.414031,2.105964,0,0,OIS:SA:CTP3014317,Europe/Paris,,OIS, +OIS:SP:3014318,1,"Montaigne",49.413717,2.106103,0,0,OIS:SA:CTP3014317,Europe/Paris,,OIS, +OIS:SP:3014319,1,"Notre Dame du Thil",49.447841,2.078491,0,0,OIS:SA:CTP3014319,Europe/Paris,,OIS, +OIS:SP:3014320,1,"Notre Dame du Thil",49.447888,2.078389,0,0,OIS:SA:CTP3014319,Europe/Paris,,OIS, +OIS:SP:3014321,1,"Paré",49.413132,2.110167,0,0,OIS:SA:CTP3014321,Europe/Paris,,OIS, +OIS:SP:3014323,1,"Paris",49.418333,2.095934,0,0,OIS:SA:CTP3014323,Europe/Paris,,OIS, +OIS:SP:3014324,1,"Paris",49.418549,2.09614,0,0,OIS:SA:CTP3014323,Europe/Paris,,OIS, +OIS:SP:3014326,1,"Prayon",49.444073,2.076416,0,0,OIS:SA:CTP3014326,Europe/Paris,,OIS, +OIS:SP:3014328,1,"Paul Vaillant Couturier",49.417625,2.097163,0,0,OIS:SA:CTP3014328,Europe/Paris,,OIS, +OIS:SP:3014329,1,"Paul Vaillant Couturier",49.417679,2.097231,0,0,OIS:SA:CTP3014328,Europe/Paris,,OIS, +OIS:SP:3014330,1,"Saint-Jacques",49.423381,2.087042,0,0,OIS:SA:CTP3014330,Europe/Paris,,OIS, +OIS:SP:3014331,1,"Saint-Jacques",49.423632,2.086972,0,0,OIS:SA:CTP3014330,Europe/Paris,,OIS, +OIS:SP:3014332,1,"Thère",49.418758,2.102225,0,0,OIS:SA:CTP3014332,Europe/Paris,,OIS, +OIS:SP:3014334,1,"Ferdinand De Lesseps",49.408752,2.116863,0,0,OIS:SA:CTP3014334,Europe/Paris,,OIS, +OIS:SP:3014335,1,"Victor Hugo",49.43487,2.07857,0,0,OIS:SA:CTP3014335,Europe/Paris,,OIS, +OIS:SP:3014336,1,"Victor Hugo",49.434905,2.07817,0,0,OIS:SA:CTP3014335,Europe/Paris,,OIS, +OIS:SP:3014337,1,"Voisinlieu",49.419066,2.09885,0,0,OIS:SA:CTP3014337,Europe/Paris,,OIS, +OIS:SP:3014341,1,"Hostivas",49.41319,2.089253,0,0,OIS:SA:CTP3014341,Europe/Paris,,OIS, +OIS:SP:3014342,1,"Hostivas",49.413342,2.089005,0,0,OIS:SA:CTP3014341,Europe/Paris,,OIS, +OIS:SP:3014343,1,"Lilas",49.445582,2.093973,0,0,OIS:SA:CTP3014343,Europe/Paris,,OIS, +OIS:SP:3014344,1,"Lilas",49.445483,2.093657,0,0,OIS:SA:CTP3014343,Europe/Paris,,OIS, +OIS:SP:3014345,1,"Longue Haye",49.413798,2.093301,0,0,OIS:SA:CTP3014345,Europe/Paris,,OIS, +OIS:SP:3014346,1,"Longue Haye",49.413629,2.093313,0,0,OIS:SA:CTP3014345,Europe/Paris,,OIS, +OIS:SP:3014347,1,"Maillart",49.440301,2.089907,0,0,OIS:SA:CTP3014347,Europe/Paris,,OIS, +OIS:SP:3014348,1,"Maillart",49.440444,2.089611,0,0,OIS:SA:CTP3014347,Europe/Paris,,OIS, +OIS:SP:3014352,1,"Centre",49.464457,2.10863,0,0,OIS:SA:CTP3014352,Europe/Paris,,OIS, +OIS:SP:3014355,1,"Aéroport",49.459856,2.112368,0,0,OIS:SA:CTP3014355,Europe/Paris,,OIS, +OIS:SP:3014356,1,"Aéroport",49.459856,2.112368,0,0,OIS:SA:CTP3014355,Europe/Paris,,OIS, +OIS:SP:3014357,1,"8 Mai 1945",49.440112,2.098325,0,0,OIS:SA:CTP3014357,Europe/Paris,,OIS, +OIS:SP:3014358,1,"8 Mai 1945",49.439896,2.098464,0,0,OIS:SA:CTP3014357,Europe/Paris,,OIS, +OIS:SP:3014359,1,"Allendé",49.443143,2.100501,0,0,OIS:SA:CTP3014359,Europe/Paris,,OIS, +OIS:SP:3014360,1,"Allendé",49.443083,2.100639,0,0,OIS:SA:CTP3014359,Europe/Paris,,OIS, +OIS:SP:3014369,1,"Chambre des Métiers",49.446369,2.101272,0,0,OIS:SA:CTP3014369,Europe/Paris,,OIS, +OIS:SP:3014370,1,"Chambre des Métiers",49.446333,2.101175,0,0,OIS:SA:CTP3014369,Europe/Paris,,OIS, +OIS:SP:3014372,1,"Communeau",49.444147,2.103775,0,0,OIS:SA:CTP3014372,Europe/Paris,,OIS, +OIS:SP:3014373,1,"Communeau",49.444146,2.103624,0,0,OIS:SA:CTP3014372,Europe/Paris,,OIS, +OIS:SP:3014379,1,"Clos Forest",49.43781,2.092578,0,0,OIS:SA:CTP3014379,Europe/Paris,,OIS, +OIS:SP:3014380,1,"Clos Forest",49.437936,2.09277,0,0,OIS:SA:CTP3014379,Europe/Paris,,OIS, +OIS:SP:3014381,1,"Côte d'Amiens",49.437729,2.088487,0,0,OIS:SA:CTP3014381,Europe/Paris,,OIS, +OIS:SP:3014387,1,"Bois du Parc",49.445198,2.049849,0,0,OIS:SA:CTP3014387,Europe/Paris,,OIS, +OIS:SP:3014388,1,"Châtaigniers",49.442283,2.051629,0,0,OIS:SA:CTP3014388,Europe/Paris,,OIS, +OIS:SP:3014389,1,"Cimetière",49.439861,2.056877,0,0,OIS:SA:CTP3014389,Europe/Paris,,OIS, +OIS:SP:3014390,1,"Cimetière",49.439778,2.056833,0,0,OIS:SA:CTP3014389,Europe/Paris,,OIS, +OIS:SP:3014391,1,"Cours Scellier",49.433484,2.077613,0,0,OIS:SA:CTP3014391,Europe/Paris,,OIS, +OIS:SP:3014392,1,"Cours Scellier",49.433169,2.077298,0,0,OIS:SA:CTP3014391,Europe/Paris,,OIS, +OIS:SP:3014393,1,"Lotissement",49.461654,2.050005,0,0,OIS:SA:CTP3014393,Europe/Paris,,OIS, +OIS:SP:3014394,1,"La Garenne",49.441571,2.054512,0,0,OIS:SA:CTP3014394,Europe/Paris,,OIS, +OIS:SP:3014395,1,"La Garenne",49.441463,2.054457,0,0,OIS:SA:CTP3014394,Europe/Paris,,OIS, +OIS:SP:3014396,1,"La Grive",49.438121,2.058016,0,0,OIS:SA:CTP3014396,Europe/Paris,,OIS, +OIS:SP:3014397,1,"La Grive",49.438075,2.057616,0,0,OIS:SA:CTP3014396,Europe/Paris,,OIS, +OIS:SP:3014398,1,"Lainé",49.433494,2.073935,0,0,OIS:SA:CTP3014398,Europe/Paris,,OIS, +OIS:SP:3014399,1,"Lainé",49.433468,2.074087,0,0,OIS:SA:CTP3014398,Europe/Paris,,OIS, +OIS:SP:3014400,1,"Parking Saint Quentin",49.431539,2.071136,0,0,OIS:SA:CTP3014400,Europe/Paris,,OIS, +OIS:SP:3014401,1,"Parking Saint Quentin",49.431513,2.071411,0,0,OIS:SA:CTP3014400,Europe/Paris,,OIS, +OIS:SP:3014403,1,"Marronniers",49.44252,2.05317,0,0,OIS:SA:CTP3014403,Europe/Paris,,OIS, +OIS:SP:3014404,1,"Peupliers",49.443897,2.050338,0,0,OIS:SA:CTP3014404,Europe/Paris,,OIS, +OIS:SP:3014405,1,"Savignies",49.434015,2.061454,0,0,OIS:SA:CTP3014405,Europe/Paris,,OIS, +OIS:SP:3014406,1,"Savignies",49.433863,2.061785,0,0,OIS:SA:CTP3014405,Europe/Paris,,OIS, +OIS:SP:3014407,1,"Saint-Quentin",49.43418,2.075116,0,0,OIS:SA:CTP3014407,Europe/Paris,,OIS, +OIS:SP:3014408,1,"Saint-Quentin",49.434001,2.075444,0,0,OIS:SA:CTP3014407,Europe/Paris,,OIS, +OIS:SP:3014409,1,"Trépinière",49.434933,2.058667,0,0,OIS:SA:CTP3014409,Europe/Paris,,OIS, +OIS:SP:3014410,1,"Trépinière",49.434987,2.058418,0,0,OIS:SA:CTP3014409,Europe/Paris,,OIS, +OIS:SP:3014413,1,"Basse Montagne",49.453412,2.079276,0,0,OIS:SA:CTP3014413,Europe/Paris,,OIS, +OIS:SP:3014414,1,"Basse Montagne",49.453384,2.079097,0,0,OIS:SA:CTP3014413,Europe/Paris,,OIS, +OIS:SP:3014415,1,"Chemin d'Amiens",49.455625,2.081152,0,0,OIS:SA:CTP3014415,Europe/Paris,,OIS, +OIS:SP:3014416,1,"Chemin d'Amiens",49.455724,2.081166,0,0,OIS:SA:CTP3014415,Europe/Paris,,OIS, +OIS:SP:3014417,1,"Déportés",49.425952,2.075393,0,0,OIS:SA:CTP3014417,Europe/Paris,,OIS, +OIS:SP:3014418,1,"Déportés",49.425888,2.074691,0,0,OIS:SA:CTP3014417,Europe/Paris,,OIS, +OIS:SP:3014419,1,"Faubourg St Jean",49.428013,2.068964,0,0,OIS:SA:CTP3014419,Europe/Paris,,OIS, +OIS:SP:3014420,1,"Faubourg St Jean",49.427932,2.068799,0,0,OIS:SA:CTP3014419,Europe/Paris,,OIS, +OIS:SP:3014421,1,"Tétard",49.427264,2.071571,0,0,OIS:SA:CTP3014421,Europe/Paris,,OIS, +OIS:SP:3014422,1,"Tétard",49.427147,2.071393,0,0,OIS:SA:CTP3014421,Europe/Paris,,OIS, +OIS:SP:3014424,1,"Madeleine",49.429221,2.0845,0,0,OIS:SA:CTP3014424,Europe/Paris,,OIS, +OIS:SP:3014425,1,"Plouy Saint-Lucien",49.470899,2.082523,0,0,OIS:SA:CTP3014425,Europe/Paris,,OIS, +OIS:SP:3014427,1,"Villers Saint-Lucien",49.457341,2.08536,0,0,OIS:SA:CTP3000926,Europe/Paris,,OIS, +OIS:SP:3014428,1,"Place",49.369798,1.9961,0,0,OIS:SA:CTP3014428,Europe/Paris,,OIS, +OIS:SP:3014429,1,"Musée",49.371403,1.992071,0,0,OIS:SA:CTP3014429,Europe/Paris,,OIS, +OIS:SP:3014431,1,"Koening",49.432962,2.052893,0,0,OIS:SA:CTP3014431,Europe/Paris,,OIS, +OIS:SP:3014432,1,"Koening",49.432934,2.052659,0,0,OIS:SA:CTP3014431,Europe/Paris,,OIS, +OIS:SP:3014433,1,"Place",49.426305,2.03796,0,0,OIS:SA:CTP3014434,Europe/Paris,,OIS, +OIS:SP:3014434,1,"Place",49.426337,2.038098,0,0,OIS:SA:CTP3014434,Europe/Paris,,OIS, +OIS:SP:3014435,1,"Z.I Sinancourt",49.38329,1.999077,0,0,OIS:SA:CTP3014436,Europe/Paris,,OIS, +OIS:SP:3014436,1,"Z.I Sinancourt",49.383099,1.9997,0,0,OIS:SA:CTP3014436,Europe/Paris,,OIS, +OIS:SP:3014442,1,"Briqueterie",49.41664,2.076762,0,0,OIS:SA:CTP3014231,Europe/Paris,,OIS, +OIS:SP:3014443,1,"Briqueterie",49.416819,2.076431,0,0,OIS:SA:CTP3014231,Europe/Paris,,OIS, +OIS:SP:3014444,1,"Brisson",49.429584,2.117472,0,0,OIS:SA:CTP3014444,Europe/Paris,,OIS, +OIS:SP:3014445,1,"Brisson",49.429728,2.117476,0,0,OIS:SA:CTP3014444,Europe/Paris,,OIS, +OIS:SP:3014447,1,"France Glaces",49.419437,2.11438,0,0,OIS:SA:CTP3014447,Europe/Paris,,OIS, +OIS:SP:3014448,1,"France Glaces",49.419896,2.114709,0,0,OIS:SA:CTP3014447,Europe/Paris,,OIS, +OIS:SP:3014452,1,"Industrie",49.415024,2.113284,0,0,OIS:SA:CTP3014452,Europe/Paris,,OIS, +OIS:SP:3014453,1,"Industrie",49.415195,2.11325,0,0,OIS:SA:CTP3014452,Europe/Paris,,OIS, +OIS:SP:3014455,1,"Léon Bernard",49.443701,2.09182,0,0,OIS:SA:CTP3014455,Europe/Paris,,OIS, +OIS:SP:3014456,1,"Léon Bernard",49.443485,2.091738,0,0,OIS:SA:CTP3014455,Europe/Paris,,OIS, +OIS:SP:3014457,1,"Massey Ferguson",49.420893,2.114746,0,0,OIS:SA:CTP3014457,Europe/Paris,,OIS, +OIS:SP:3014458,1,"Massey Ferguson",49.420894,2.115062,0,0,OIS:SA:CTP3014457,Europe/Paris,,OIS, +OIS:SP:3014461,1,"Bracheux",49.425917,2.114695,0,0,OIS:SA:CTP3014461,Europe/Paris,,OIS, +OIS:SP:3014462,1,"Bracheux",49.425969,2.114958,0,0,OIS:SA:CTP3014461,Europe/Paris,,OIS, +OIS:SP:3014463,1,"Cagneux",49.427185,2.112226,0,0,OIS:SA:CTP3014463,Europe/Paris,,OIS, +OIS:SP:3014464,1,"Cagneux",49.427266,2.112377,0,0,OIS:SA:CTP3014463,Europe/Paris,,OIS, +OIS:SP:3014466,1,"Ecole",49.428965,2.10788,0,0,OIS:SA:CTP3014466,Europe/Paris,,OIS, +OIS:SP:3014467,1,"Ecole",49.429127,2.108085,0,0,OIS:SA:CTP3014466,Europe/Paris,,OIS, +OIS:SP:3014473,1,"Pellerin Université",49.429685,2.090413,0,0,OIS:SA:CTP3014473,Europe/Paris,,OIS, +OIS:SP:3014474,1,"Pellerin Université",49.429873,2.090481,0,0,OIS:SA:CTP3014473,Europe/Paris,,OIS, +OIS:SP:3014475,1,"Pressoir Coquet",49.433489,2.092764,0,0,OIS:SA:CTP3014476,Europe/Paris,,OIS, +OIS:SP:3014476,1,"Pressoir Coquet",49.434127,2.092843,0,0,OIS:SA:CTP3014476,Europe/Paris,,OIS, +OIS:SP:3014478,1,"Stade",49.431093,2.112181,0,0,OIS:SA:CTP3014478,Europe/Paris,,OIS, +OIS:SP:3014479,1,"Stade",49.431093,2.112222,0,0,OIS:SA:CTP3014478,Europe/Paris,,OIS, +OIS:SP:3014482,1,"Parking Saint-Quentin",49.431575,2.071122,0,0,OIS:SA:CTP3014482,Europe/Paris,,OIS, +OIS:SP:3014483,1,"Palais de Justice",49.42908,2.076437,0,0,OIS:SA:CTP3014483,Europe/Paris,,OIS, +OIS:SP:3014485,1,"Banque de France",49.430288,2.07818,0,0,OIS:SA:CTP3014485,Europe/Paris,,OIS, +OIS:SP:3014489,1,"Eglise",49.48305,2.12972,0,0,OIS:SA:CTP3014489,Europe/Paris,,OIS, +OIS:SP:3014490,1,"Maisoncelle-Saint-Pierre",49.509816,2.127919,0,0,OIS:SA:CTP3014490,Europe/Paris,,OIS, +OIS:SP:3014492,1,"Abri",49.45722,2.16638,0,0,OIS:SA:CTP3014492,Europe/Paris,,OIS, +OIS:SP:3014493,1,"Village",49.519246,2.084863,0,0,OIS:SA:CTP3014493,Europe/Paris,,OIS, +OIS:SP:3014496,1,"Abri Centre",49.418961,2.157261,0,0,OIS:SA:CTP3014496,Europe/Paris,,OIS, +OIS:SP:3014497,1,"Abri Centre",49.419123,2.157301,0,0,OIS:SA:CTP3014496,Europe/Paris,,OIS, +OIS:SP:3014500,1,"Mairie",49.400948,2.181549,0,0,OIS:SA:CTP3014500,Europe/Paris,,OIS, +OIS:SP:3014501,1,"Eglise",49.390269,2.14305,0,0,OIS:SA:CTP3014501,Europe/Paris,,OIS, +OIS:SP:3014502,1,"Villers-sur-Thère Carrefour",49.412243,2.140873,0,0,OIS:SA:CTP3014502,Europe/Paris,,OIS, +OIS:SP:3014507,1,"Abri Stade",49.501544,1.997551,0,0,OIS:SA:CTP3014507,Europe/Paris,,OIS, +OIS:SP:3014508,1,"Abri",49.488449,2.01025,0,0,OIS:SA:CTP3014508,Europe/Paris,,OIS, +OIS:SP:3014509,1,"Abri",49.479967,2.04498,0,0,OIS:SA:CTP3014075,Europe/Paris,,OIS, +OIS:SP:3014510,1,"Villers-sur-Thère Ecole",49.413852,2.136365,0,0,OIS:SA:CTP3014510,Europe/Paris,,OIS, +OIS:SP:3014512,1,"Mairie",49.472847,1.979517,0,0,OIS:SA:CTP3014512,Europe/Paris,,OIS, +OIS:SP:3014514,1,"Abri",49.445133,1.9831,0,0,OIS:SA:CTP3014514,Europe/Paris,,OIS, +OIS:SP:3014515,1,"Centre",49.428379,2.00663,0,0,OIS:SA:CTP3014515,Europe/Paris,,OIS, +OIS:SP:3014516,1,"Le Becquet Ecole",49.422796,1.992097,0,0,OIS:SA:CTP3014516,Europe/Paris,,OIS, +OIS:SP:3014517,1,"Mairie",49.446149,2.004867,0,0,OIS:SA:CTP3014517,Europe/Paris,,OIS, +OIS:SP:3014518,1,"Centre",49.341464,2.087567,0,0,OIS:SA:CTP3014518,Europe/Paris,,OIS, +OIS:SP:3014520,1,"Berneuil-en-Bray",49.347634,2.06237,0,0,OIS:SA:CTP3014520,Europe/Paris,,OIS, +OIS:SP:3014521,1,"Les Vivrots",49.364344,2.069575,0,0,OIS:SA:CTP3014521,Europe/Paris,,OIS, +OIS:SP:3014524,1,"Centre",49.38266,2.086787,0,0,OIS:SA:CTP3014524,Europe/Paris,,OIS, +OIS:SP:3014525,1,"Place",49.395359,2.059802,0,0,OIS:SA:CTP3014525,Europe/Paris,,OIS, +OIS:SP:3014526,1,"Descartes",49.408287,2.118049,0,0,OIS:SA:CTP3014526,Europe/Paris,,OIS, +OIS:SP:3014528,1,"J. Goddet",49.437364,2.113062,0,0,OIS:SA:CTP3014528,Europe/Paris,,OIS, +OIS:SP:3014529,1,"Hortensias",49.444188,2.092933,0,0,OIS:SA:CTP3014529,Europe/Paris,,OIS, +OIS:SP:3014530,1,"Hortensias",49.444241,2.092685,0,0,OIS:SA:CTP3014529,Europe/Paris,,OIS, +OIS:SP:3014542,1,"Georges Dartois",49.447236,2.081194,0,0,OIS:SA:CTP3014542,Europe/Paris,,OIS, +OIS:SP:3014543,1,"Georges Dartois",49.447379,2.081194,0,0,OIS:SA:CTP3014542,Europe/Paris,,OIS, +OIS:SP:3014546,1,"Thère",49.418695,2.102197,0,0,OIS:SA:CTP3014332,Europe/Paris,,OIS, +OIS:SP:3014548,1,"Saint-Esprit",49.417652,2.083655,0,0,OIS:SA:CTP3014548,Europe/Paris,,OIS, +OIS:SP:3014550,1,"George Sand",49.449966,2.08519,0,0,OIS:SA:CTP3014249,Europe/Paris,,OIS, +OIS:SP:3014559,1,"DESGROUX",49.426827,2.07722,0,0,OIS:SA:CTP3014559,Europe/Paris,,OIS, +OIS:SP:3014562,1,"CALVAIRE",49.433156,2.096594,0,0,OIS:SA:CTP3014562,Europe/Paris,,OIS, +OIS:SP:3014563,1,"CALVAIRE",49.433156,2.096594,0,0,OIS:SA:CTP3014562,Europe/Paris,,OIS, +OIS:SP:3014572,1,"Félix Faure",49.43491,2.088983,0,0,ORL:SA:CTP27000099,Europe/Paris,,OIS, +OIS:SP:3014573,1,"Félix Faure",49.435283,2.086984,0,0,ORL:SA:CTP27000099,Europe/Paris,,OIS, +OIS:SP:3014585,1,"Jeu de Paume",49.43272,2.090068,0,0,OIS:SA:CTP3014585,Europe/Paris,,OIS, +OIS:SP:3014586,1,"Jeu de Paume",49.432594,2.089862,0,0,OIS:SA:CTP3014585,Europe/Paris,,OIS, +OIS:SP:3014587,1,"Penitencier",49.408637,2.085682,0,0,OIS:SA:CTP3014587,Europe/Paris,,OIS, +OIS:SP:3014588,1,"Penitencier",49.408708,2.085283,0,0,OIS:SA:CTP3014587,Europe/Paris,,OIS, +OIS:SP:3014590,1,"SAINT-JEAN",49.417281,2.070205,0,0,OIS:SA:CTP3014590,Europe/Paris,,OIS, +OIS:SP:3014591,1,"Délie",49.409858,2.112742,0,0,OIS:SA:CTP3014591,Europe/Paris,,OIS, +OIS:SP:3014592,1,"Délie",49.409921,2.112701,0,0,OIS:SA:CTP3014591,Europe/Paris,,OIS, +OIS:SP:3014593,1,"Brière SNCF",49.428082,2.088768,0,0,ORL:SA:CTP27000098,Europe/Paris,,OIS, +OIS:SP:3014594,1,"Brière SNCF",49.427965,2.088645,0,0,ORL:SA:CTP27000098,Europe/Paris,,OIS, +OIS:SP:3014595,1,"ASCA",49.436325,2.100257,0,0,OIS:SA:CTP3014595,Europe/Paris,,OIS, +OIS:SP:3014596,1,"ASCA",49.436388,2.100477,0,0,OIS:SA:CTP3014595,Europe/Paris,,OIS, +OIS:SP:3014597,1,"ARGENTINE",49.434628,2.105595,0,0,OIS:SA:CTP3014597,Europe/Paris,,OIS, +OIS:SP:3014598,1,"ARGENTINE",49.434484,2.105458,0,0,OIS:SA:CTP3014597,Europe/Paris,,OIS, +OIS:SP:3014599,1,"Hôtel de Ville - Arrivée",49.429252,2.081243,0,0,OIS:SA:CTP3014599,Europe/Paris,,OIS, +OIS:SP:3014600,1,"Hôtel de Ville - Départ",49.429243,2.081298,0,0,OIS:SA:CTP3014600,Europe/Paris,,OIS, +OIS:SP:3014601,1,"Hôpital",49.450774,2.072662,0,0,OIS:SA:CTP3014305,Europe/Paris,,OIS, +OIS:SP:3014602,1,"Blum",49.448918,2.073941,0,0,OIS:SA:CTP3014273,Europe/Paris,,OIS, +OIS:SP:3014603,1,"Crèvecoeur",49.452653,2.074169,0,0,OIS:SA:CTP3014284,Europe/Paris,,OIS, +OIS:SP:3014604,1,"Isaac",49.445958,2.075769,0,0,OIS:SA:CTP3014308,Europe/Paris,,OIS, +OIS:SP:3014605,1,"Prayon",49.444066,2.076348,0,0,OIS:SA:CTP3014326,Europe/Paris,,OIS, +OIS:SP:3014607,1,"Gare SNCF",49.426122,2.085589,0,0,OIS:SA:CTP3014170,Europe/Paris,,OIS, +OIS:SP:3014608,1,"Gare SNCF",49.426252,2.085669,0,0,OIS:SA:CTP3014170,Europe/Paris,,OIS, +OIS:SP:3014609,1,"Pont d'Arcole",49.42525,2.092666,0,0,OIS:SA:CTP3014609,Europe/Paris,,OIS, +OIS:SP:3014610,1,"Pont d'Arcole",49.425577,2.092623,0,0,OIS:SA:CTP3014609,Europe/Paris,,OIS, +OIS:SP:3014611,1,"Abbé Pierre",49.423786,2.099634,0,0,OIS:SA:CTP3014611,Europe/Paris,,OIS, +OIS:SP:3014612,1,"Abbé Pierre",49.42404,2.09978,0,0,OIS:SA:CTP3014611,Europe/Paris,,OIS, +OIS:SP:3014613,1,"Paré",49.412993,2.110103,0,0,OIS:SA:CTP3014321,Europe/Paris,,OIS, +OIS:SP:3014614,1,"Dr Schweitzer",49.412016,2.113849,0,0,OIS:SA:CTP3014294,Europe/Paris,,OIS, +OIS:SP:3014615,1,"Parc Marcel Dassault",49.451131,2.098046,0,0,OIS:SA:CTP3014375,Europe/Paris,,OIS, +OIS:SP:3014616,1,"Tilloy",49.441571,2.096018,0,0,OIS:SA:CTP3014616,Europe/Paris,,OIS, +OIS:SP:3014617,1,"Tilloy",49.44158,2.095921,0,0,OIS:SA:CTP3014616,Europe/Paris,,OIS, +OIS:SP:3014618,1,"Tilloy",49.441631,2.094516,0,0,OIS:SA:CTP3014616,Europe/Paris,,OIS, +OIS:SP:3014619,1,"Tilloy",49.440773,2.096476,0,0,OIS:SA:CTP3014616,Europe/Paris,,OIS, +OIS:SP:3014620,1,"Cinespace",49.426835,2.093897,0,0,OIS:SA:CTP3014620,Europe/Paris,,OIS, +OIS:SP:3014621,1,"Cinespace",49.427034,2.094227,0,0,OIS:SA:CTP3014620,Europe/Paris,,OIS, +OIS:SP:3014622,1,"Bois Brûlet",49.450715,2.076523,0,0,OIS:SA:CTP3014276,Europe/Paris,,OIS, +OIS:SP:3014623,1,"Tillé Tilleuls",49.452831,2.099389,0,0,OIS:SA:CTP3014623,Europe/Paris,,OIS, +OIS:SP:3014624,1,"Mairie",49.46356,2.112069,0,0,OIS:SA:CTP3014624,Europe/Paris,,OIS, +OIS:SP:3016362,1,"Bellevue",49.418478,2.071259,0,0,OIS:SA:CTP3016362,Europe/Paris,,OIS, +OIS:SP:3016363,1,"Aquaspace/Parc Dassault",49.451131,2.098046,0,0,OIS:SA:CTP3016363,Europe/Paris,,OIS, +OIS:SP:3016364,1,"Aquaspace/Parc Dassault",49.451053,2.098301,0,0,OIS:SA:CTP3016363,Europe/Paris,,OIS, +OIS:SP:3016365,1,"Elispace/Parc Dassault",49.451135,2.099334,0,0,OIS:SA:CTP3016365,Europe/Paris,,OIS, +OIS:SP:3016366,1,"Elispace/Parc Dassault",49.451037,2.099294,0,0,OIS:SA:CTP3016365,Europe/Paris,,OIS, +OLB:SP:18000001,1,"Eglise de Lardières",49.255513,2.135061,0,0,OLB:SA:CTP18000001,Europe/Paris,,OLB, +OLB:SP:18000003,1,"Hôpital",49.233587,2.127451,0,0,OLB:SA:CTP18000003,Europe/Paris,,OLB, +OLB:SP:18000006,1,"Rimbaud",49.235176,2.126552,0,0,OLB:SA:CTP18000006,Europe/Paris,,OLB, +OLB:SP:18000012,1,"Perce Neige",49.238594,2.123863,0,0,OLB:SA:CTP18000012,Europe/Paris,,OLB, +OLB:SP:18000015,1,"Jean Sébastien Bach",49.242725,2.127674,0,0,OLB:SA:CTP18000015,Europe/Paris,,OLB, +OLB:SP:18000017,1,"Centre Ville",49.235889,2.133835,0,0,OLB:SA:CTP18000017,Europe/Paris,,OLB, +OLB:SP:18000019,1,"Gare",49.232149,2.131956,0,0,OLB:SA:CTP18000019,Europe/Paris,,OLB, +OLB:SP:18000020,1,"Quiétude",49.232479,2.125658,0,0,OLB:SA:CTP18000020,Europe/Paris,,OLB, +OLB:SP:18000021,1,"Collège du Thelle",49.231283,2.1251,0,0,OLB:SA:CTP18000021,Europe/Paris,,OLB, +OLB:SP:18000022,1,"Allende",49.230352,2.126997,0,0,OLB:SA:CTP18000022,Europe/Paris,,OLB, +OLB:SP:18000023,1,"Langevin",49.228655,2.127759,0,0,OLB:SA:CTP18000023,Europe/Paris,,OLB, +OLB:SP:18000025,1,"Vaillant Radiologue",49.234249,2.130768,0,0,OLB:SA:CTP18000025,Europe/Paris,,OLB, +OLB:SP:18000026,1,"Hôpital",49.233471,2.127602,0,0,OLB:SA:CTP18000003,Europe/Paris,,OLB, +OLB:SP:18000028,1,"Rimbaud",49.235176,2.126552,0,0,OLB:SA:CTP18000006,Europe/Paris,,OLB, +OLB:SP:18000029,1,"Perce Neige",49.238612,2.12378,0,0,OLB:SA:CTP18000012,Europe/Paris,,OLB, +OLB:SP:18000030,1,"Jean Sébastien Bach",49.242868,2.127289,0,0,OLB:SA:CTP18000015,Europe/Paris,,OLB, +OLB:SP:18000031,1,"Centre ville",49.235674,2.133863,0,0,OLB:SA:CTP18000031,Europe/Paris,,OLB, +OLB:SP:18000032,1,"Quietude",49.232344,2.125782,0,0,OLB:SA:CTP18000032,Europe/Paris,,OLB, +OLB:SP:18000033,1,"Allende",49.230244,2.126998,0,0,OLB:SA:CTP18000022,Europe/Paris,,OLB, +OLB:SP:18000034,1,"Langevin",49.228664,2.12769,0,0,OLB:SA:CTP18000023,Europe/Paris,,OLB, +OLB:SP:18000038,1,"Mounier",49.226679,2.127781,0,0,OLB:SA:CTP18000038,Europe/Paris,,OLB, +OLB:SP:18000039,1,"Mounier",49.226607,2.127808,0,0,OLB:SA:CTP18000038,Europe/Paris,,OLB, +OLB:SP:18000040,1,"Parc urbain",49.227945,2.127227,0,0,OLB:SA:CTP18000040,Europe/Paris,,OLB, +OLB:SP:18000041,1,"Parc urbain",49.227882,2.127296,0,0,OLB:SA:CTP18000040,Europe/Paris,,OLB, +OLB:SP:18000042,1,"La chesnaie",49.226918,2.131031,0,0,OLB:SA:CTP18000042,Europe/Paris,,OLB, +OLB:SP:18000043,1,"La chesnaie",49.226846,2.131004,0,0,OLB:SA:CTP18000042,Europe/Paris,,OLB, +OLB:SP:18000045,1,"Lumières",49.220889,2.131096,0,0,OLB:SA:CTP18000045,Europe/Paris,,OLB, +OLB:SP:18000047,1,"Centre commercial",49.219923,2.138863,0,0,OLB:SA:CTP18000047,Europe/Paris,,OLB, +OLB:SP:18000053,1,"Pierre Mendes France",49.230374,2.139866,0,0,OLB:SA:CTP18000053,Europe/Paris,,OLB, +OLB:SP:18000059,1,"Condorcet",49.236462,2.143533,0,0,OLB:SA:CTP18000059,Europe/Paris,,OLB, +OLB:SP:18000060,1,"Pasteur",49.237807,2.13594,0,0,OLB:SA:CTP18000060,Europe/Paris,,OLB, +OLB:SP:18000061,1,"Pasteur",49.237825,2.136023,0,0,OLB:SA:CTP18000060,Europe/Paris,,OLB, +OLB:SP:18000063,1,"Gournay",49.239865,2.131034,0,0,OLB:SA:CTP18000063,Europe/Paris,,OLB, +OLB:SP:18000064,1,"Gournay",49.239928,2.13102,0,0,OLB:SA:CTP18000063,Europe/Paris,,OLB, +OLB:SP:18000065,1,"Louis Deshayes",49.240263,2.133049,0,0,OLB:SA:CTP18000065,Europe/Paris,,OLB, +OLB:SP:18000066,1,"Louis Deshayes",49.240182,2.132775,0,0,OLB:SA:CTP18000065,Europe/Paris,,OLB, +OLB:SP:18000069,1,"Briqueterie",49.244155,2.13361,0,0,OLB:SA:CTP18000069,Europe/Paris,,OLB, +OLB:SP:18000070,1,"Briqueterie",49.244137,2.133528,0,0,OLB:SA:CTP18000069,Europe/Paris,,OLB, +OLB:SP:18000071,1,"Toussaint Louverture",49.247173,2.133612,0,0,OLB:SA:CTP18000071,Europe/Paris,,OLB, +OLB:SP:18000072,1,"Toussaint Louverture",49.247155,2.133516,0,0,OLB:SA:CTP18000071,Europe/Paris,,OLB, +OLB:SP:18000073,1,"Four à chaux",49.253615,2.133381,0,0,OLB:SA:CTP18000073,Europe/Paris,,OLB, +OLB:SP:18000074,1,"Four à chaux",49.253588,2.133504,0,0,OLB:SA:CTP18000073,Europe/Paris,,OLB, +OLB:SP:18000078,1,"Cimetière",49.244473,2.141664,0,0,OLB:SA:CTP18000078,Europe/Paris,,OLB, +OLB:SP:18000079,1,"Cimetière",49.244456,2.141788,0,0,OLB:SA:CTP18000078,Europe/Paris,,OLB, +OLB:SP:18000080,1,"La roseraie",49.240816,2.141335,0,0,OLB:SA:CTP18000080,Europe/Paris,,OLB, +OLB:SP:18000081,1,"La roseraie",49.240781,2.141582,0,0,OLB:SA:CTP18000080,Europe/Paris,,OLB, +OLB:SP:18000082,1,"Musée de la Nacre",49.238351,2.139424,0,0,OLB:SA:CTP18000082,Europe/Paris,,OLB, +OLB:SP:18000091,1,"Jules Verne",49.227765,2.143539,0,0,OLB:SA:CTP18000091,Europe/Paris,,OLB, +OLB:SP:18000092,1,"Aragon",49.225958,2.136961,0,0,OLB:SA:CTP18000092,Europe/Paris,,OLB, +OLB:SP:18000093,1,"Aragon",49.225958,2.137029,0,0,OLB:SA:CTP18000092,Europe/Paris,,OLB, +OLB:SP:18000094,1,"Thalès",49.220985,2.134621,0,0,OLB:SA:CTP18000094,Europe/Paris,,OLB, +OLB:SP:18000095,1,"Thalès",49.221066,2.134593,0,0,OLB:SA:CTP18000094,Europe/Paris,,OLB, +OLB:SP:18000096,1,"Gendarmerie",49.225248,2.131627,0,0,OLB:SA:CTP18000096,Europe/Paris,,OLB, +OLB:SP:18000097,1,"Corneille",49.226469,2.141678,0,0,OLB:SA:CTP18000097,Europe/Paris,,OLB, +OLB:SP:18000099,1,"Ivry le Temple-Centre",49.228881,2.02916,0,0,OLB:SA:CTP18000099,Europe/Paris,,OLB, +OLB:SP:18000100,1,"Eglise",49.25611,2.10583,0,0,OLB:SA:CTP18000100,Europe/Paris,,OLB, +OLB:SP:18000101,1,"Rue de Gournay",49.256532,2.110548,0,0,OLB:SA:CTP18000101,Europe/Paris,,OLB, +OLB:SP:18000102,1,"Saint-Crépin Ibouvillers - Centre",49.262788,2.07888,0,0,OLB:SA:CTP18000102,Europe/Paris,,OLB, +OLB:SP:18000103,1,"Saint-Crépin Ibouvillers - Ecole",49.262771,2.072769,0,0,OLB:SA:CTP18000103,Europe/Paris,,OLB, +OLB:SP:18000104,1,"Centre",49.238329,2.07722,0,0,OLB:SA:CTP18000104,Europe/Paris,,OLB, +OLB:SP:18000105,1,"Musignière",49.23632,2.07448,0,0,OLB:SA:CTP18000105,Europe/Paris,,OLB, +OLB:SP:18000106,1,"Célio",49.22276,2.107331,0,0,OLB:SA:CTP18000106,Europe/Paris,,OLB, +OLB:SP:18000107,1,"Les Vallées",49.214411,2.120356,0,0,OLB:SA:CTP18000107,Europe/Paris,,OLB, +OLB:SP:18000108,1,"Bas",49.207344,2.122689,0,0,OLB:SA:CTP18000108,Europe/Paris,,OLB, +OLB:SP:18000109,1,"Place",49.202074,2.120024,0,0,OLB:SA:CTP18000109,Europe/Paris,,OLB, +OLB:SP:18000110,1,"Hénonville",49.207136,2.052837,0,0,OLB:SA:CTP18000110,Europe/Paris,,OLB, +OLB:SP:18000111,1,"Bruxelles",49.21783,2.113292,0,0,OLB:SA:CTP18000111,Europe/Paris,,OLB, +OLI:SP:11N001,1,"11 Novembre",50.592345,3.105967,1,0,OLI:SA:6902,Europe/Paris,0,OLI, +OLI:SP:11N002,1,"11 Novembre",50.5923,3.106008,1,0,OLI:SA:6902,Europe/Paris,0,OLI, +OLI:SP:14J001,1,"14 Juillet",50.603775,3.088311,1,0,OLI:SA:6341,Europe/Paris,0,OLI, +OLI:SP:14J002,1,"14 Juillet",50.603919,3.088228,1,0,OLI:SA:6341,Europe/Paris,0,OLI, +OLI:SP:18J001,1,"18 Juin",50.601192,3.086637,1,0,OLI:SA:7041,Europe/Paris,0,OLI, +OLI:SP:18J002,1,"18 Juin",50.601519,3.087431,1,0,OLI:SA:7041,Europe/Paris,0,OLI, +OLI:SP:2NA001,1,"2 Nations",50.787781,3.139216,1,0,OLI:SA:5898,Europe/Paris,0,OLI, +OLI:SP:3BL001,1,"3 Ballots",50.763617,3.014837,1,0,OLI:SA:5840,Europe/Paris,0,OLI, +OLI:SP:3BL002,1,"3 Ballots",50.763828,3.01566,1,0,OLI:SA:5840,Europe/Paris,0,OLI, +OLI:SP:3CH001,1,"Trois Chenes",50.630238,2.966136,1,0,OLI:SA:325,Europe/Paris,0,OLI, +OLI:SP:3CH002,1,"Trois Chenes",50.629808,2.966074,1,0,OLI:SA:325,Europe/Paris,0,OLI, +OLI:SP:3FE001,1,"Trois Fermes",50.66148,3.198606,1,0,OLI:SA:7042,Europe/Paris,0,OLI, +OLI:SP:3FE002,1,"Trois Fermes",50.661771,3.199246,1,0,OLI:SA:7042,Europe/Paris,0,OLI, +OLI:SP:3PO001,1,"Trois Ponts",50.685463,3.200304,1,0,OLI:SA:1512,Europe/Paris,0,OLI, +OLI:SP:3PO002,1,"Trois Ponts",50.684831,3.200858,1,0,OLI:SA:1512,Europe/Paris,0,OLI, +OLI:SP:3PO003,1,"Trois Ponts",50.684501,3.200598,1,0,OLI:SA:1512,Europe/Paris,0,OLI, +OLI:SP:3PO004,1,"Trois Ponts",50.684349,3.200497,1,0,OLI:SA:1512,Europe/Paris,0,OLI, +OLI:SP:3SI001,1,"Hem La Vallee 2",50.655796,3.203207,1,0,OLI:SA:5614,Europe/Paris,0,OLI, +OLI:SP:3SU001,1,"Trois Suisses",50.6988,3.139043,1,0,OLI:SA:1239,Europe/Paris,0,OLI, +OLI:SP:3SU002,1,"Trois Suisses",50.698267,3.139586,1,0,OLI:SA:1239,Europe/Paris,0,OLI, +OLI:SP:3SU021,1,"Trois Suisses",50.699293,3.139065,1,0,OLI:SA:1239,Europe/Paris,0,OLI, +OLI:SP:3SU032,1,"Trois Suisses",50.69875,3.138393,1,0,OLI:SA:1239,Europe/Paris,0,OLI, +OLI:SP:4CA001,1,"4 Cantons Stade",50.605622,3.13972,1,0,OLI:SA:6627,Europe/Paris,0,OLI, +OLI:SP:4CA002,1,"4 Cantons Stade",50.60524,3.139263,1,0,OLI:SA:6627,Europe/Paris,0,OLI, +OLI:SP:4CA098,1,"4 Cantons Stade",50.605423,3.13866,1,0,OLI:SA:6627,Europe/Paris,0,OLI, +OLI:SP:4CA099,1,"4 Cantons Stade",50.605423,3.13866,1,0,OLI:SA:6627,Europe/Paris,0,OLI, +OLI:SP:4CR001,1,"Crt 4",50.58161,3.143407,1,0,OLI:SA:718,Europe/Paris,0,OLI, +OLI:SP:4OR001,1,"Quatre Ormeaux",50.629423,2.974743,1,0,OLI:SA:1693,Europe/Paris,0,OLI, +OLI:SP:4OR002,1,"Quatre Ormeaux",50.629361,2.974474,1,0,OLI:SA:1693,Europe/Paris,0,OLI, +OLI:SP:4VE001,1,"4 Vents",50.612516,3.122307,1,0,OLI:SA:746,Europe/Paris,0,OLI, +OLI:SP:4VE002,1,"4 Vents",50.61266,3.12221,1,0,OLI:SA:746,Europe/Paris,0,OLI, +OLI:SP:AAB001,1,"Aristide Briand",50.690763,2.886003,1,0,OLI:SA:6960,Europe/Paris,0,OLI, +OLI:SP:AAB002,1,"Aristide Briand",50.690959,2.886217,1,0,OLI:SA:6960,Europe/Paris,0,OLI, +OLI:SP:AAU001,1,"Eglise",50.595459,2.825371,1,0,OLI:SA:2400,Europe/Paris,0,OLI, +OLI:SP:ABB001,1,"Abbe Bonpain",50.657932,3.083325,1,0,OLI:SA:1168,Europe/Paris,0,OLI, +OLI:SP:ABB002,1,"Abbe Bonpain",50.657977,3.083382,1,0,OLI:SA:1168,Europe/Paris,0,OLI, +OLI:SP:ABE001,1,"Jb Lebas",50.71598,3.114539,1,0,OLI:SA:226,Europe/Paris,0,OLI, +OLI:SP:ABE002,1,"Jb Lebas",50.716324,3.114135,1,0,OLI:SA:226,Europe/Paris,0,OLI, +OLI:SP:ABI001,1,"Le Bizet",50.705885,2.884051,1,0,OLI:SA:140,Europe/Paris,0,OLI, +OLI:SP:ABL001,1,"Abbe Lemire",50.761614,3.000486,1,0,OLI:SA:275,Europe/Paris,0,OLI, +OLI:SP:ABL002,1,"Abbe Lemire",50.761942,3.001197,1,0,OLI:SA:275,Europe/Paris,0,OLI, +OLI:SP:ABP001,1,"Abbe Pierre",50.680572,3.072906,1,0,OLI:SA:2606,Europe/Paris,0,OLI, +OLI:SP:ACA001,1,"Acacias",50.664806,3.110695,1,0,OLI:SA:1120,Europe/Paris,0,OLI, +OLI:SP:ACA012,1,"Acacias",50.66493,3.10944,1,0,OLI:SA:1120,Europe/Paris,0,OLI, +OLI:SP:ACH001,1,"Bois D'Achelles",50.723357,3.111023,1,0,OLI:SA:6875,Europe/Paris,0,OLI, +OLI:SP:ACH002,1,"Bois D'Achelles",50.723162,3.110737,1,0,OLI:SA:6875,Europe/Paris,0,OLI, +OLI:SP:ACI001,1,"Cimetiere",50.694678,2.89305,1,0,OLI:SA:143,Europe/Paris,0,OLI, +OLI:SP:ACO001,1,"Rue D'Alger",50.70134,3.19113,1,0,OLI:SA:1484,Europe/Paris,0,OLI, +OLI:SP:ACO002,1,"Rue D'Alger",50.701583,3.19225,1,0,OLI:SA:1484,Europe/Paris,0,OLI, +OLI:SP:ACQ001,1,"Jacquard",50.717736,3.197613,1,0,OLI:SA:2195,Europe/Paris,0,OLI, +OLI:SP:ACQ002,1,"Jacquard",50.717665,3.197499,1,0,OLI:SA:2195,Europe/Paris,0,OLI, +OLI:SP:ACT001,1,"Cat",50.690971,2.889606,1,0,OLI:SA:2677,Europe/Paris,0,OLI, +OLI:SP:ACT002,1,"Cat",50.691278,2.889059,1,0,OLI:SA:2677,Europe/Paris,0,OLI, +OLI:SP:ADP001,1,"Av. Des Sports",50.678867,3.20715,1,0,OLI:SA:6919,Europe/Paris,0,OLI, +OLI:SP:ADP002,1,"Av. Des Sports",50.678823,3.207008,1,0,OLI:SA:6919,Europe/Paris,0,OLI, +OLI:SP:ADR002,1,"Les Arcades",50.719728,3.161915,1,0,OLI:SA:1813,Europe/Paris,0,OLI, +OLI:SP:ADR003,1,"Les Arcades",50.719828,3.161719,1,0,OLI:SA:1813,Europe/Paris,0,OLI, +OLI:SP:AEI001,1,"Carriere Andre",50.709129,3.230039,1,0,OLI:SA:2143,Europe/Paris,0,OLI, +OLI:SP:AEI002,1,"Carriere Andre",50.70943,3.230525,1,0,OLI:SA:2143,Europe/Paris,0,OLI, +OLI:SP:AER001,1,"Aerodrome",50.687739,3.086326,1,0,OLI:SA:216,Europe/Paris,0,OLI, +OLI:SP:AER002,1,"Aerodrome",50.68723,3.085909,1,0,OLI:SA:216,Europe/Paris,0,OLI, +OLI:SP:AFR002,1,"Orions",50.730941,3.13426,1,0,OLI:SA:6583,Europe/Paris,0,OLI, +OLI:SP:AFR003,1,"Anatole France",50.731956,3.136948,1,0,OLI:SA:1876,Europe/Paris,0,OLI, +OLI:SP:AFR004,1,"Anatole France",50.731948,3.13675,1,0,OLI:SA:1876,Europe/Paris,0,OLI, +OLI:SP:AGO001,1,"Agora",50.675358,3.208571,1,0,OLI:SA:1093,Europe/Paris,0,OLI, +OLI:SP:AGO002,1,"Agora",50.67485,3.210666,1,0,OLI:SA:1093,Europe/Paris,0,OLI, +OLI:SP:AHO001,1,"Ct Hospitalier",50.683628,2.870507,1,0,OLI:SA:6899,Europe/Paris,0,OLI, +OLI:SP:AHO002,1,"Ct Hospitalier",50.684257,2.870189,1,0,OLI:SA:6899,Europe/Paris,0,OLI, +OLI:SP:AID005,1,"Condition Publique",50.691064,3.190658,1,0,OLI:SA:1427,Europe/Paris,0,OLI, +OLI:SP:AID006,1,"Condition Publique",50.691108,3.192028,1,0,OLI:SA:1427,Europe/Paris,0,OLI, +OLI:SP:AIL001,1,"Braille",50.728821,3.130581,1,0,OLI:SA:1750,Europe/Paris,0,OLI, +OLI:SP:AIL003,1,"Braille",50.72931,3.13138,1,0,OLI:SA:1750,Europe/Paris,0,OLI, +OLI:SP:AJO001,1,"Marechal Joffre",50.697604,2.886587,1,0,OLI:SA:123,Europe/Paris,0,OLI, +OLI:SP:AJO002,1,"Marechal Joffre",50.697688,2.885797,1,0,OLI:SA:123,Europe/Paris,0,OLI, +OLI:SP:ALB003,1,"A.Thomas",50.647379,3.002426,1,0,OLI:SA:1011,Europe/Paris,0,OLI, +OLI:SP:ALF001,1,"Flandre",50.708166,3.227959,1,0,OLI:SA:2156,Europe/Paris,0,OLI, +OLI:SP:ALF002,1,"Flandre",50.708168,3.22779,1,0,OLI:SA:2156,Europe/Paris,0,OLI, +OLI:SP:ALL001,1,"L'Allumette",50.685799,3.15061,1,0,OLI:SA:290,Europe/Paris,0,OLI, +OLI:SP:ALS098,1,"Alsace",50.700591,3.161274,1,0,OLI:SA:1519,Europe/Paris,0,OLI, +OLI:SP:ALS099,1,"Alsace",50.700591,3.161274,1,0,OLI:SA:1519,Europe/Paris,0,OLI, +OLI:SP:ALT003,1,"Calmette",50.667759,3.193421,1,0,OLI:SA:6728,Europe/Paris,0,OLI, +OLI:SP:ALV001,1,"Calvaire",50.645032,2.974462,1,0,OLI:SA:6340,Europe/Paris,0,OLI, +OLI:SP:ALV002,1,"Calvaire",50.6454,2.974439,1,0,OLI:SA:6340,Europe/Paris,0,OLI, +OLI:SP:AMI001,1,"Amidonnerie",50.66821,3.065568,1,0,OLI:SA:4067,Europe/Paris,0,OLI, +OLI:SP:AMI002,1,"Amidonnerie",50.668076,3.065467,1,0,OLI:SA:4067,Europe/Paris,0,OLI, +OLI:SP:AMP001,1,"Ampere",50.661844,3.192671,1,0,OLI:SA:519,Europe/Paris,0,OLI, +OLI:SP:AMP002,1,"Ampere",50.66187,3.192727,1,0,OLI:SA:519,Europe/Paris,0,OLI, +OLI:SP:AMS001,1,"Amsterdam",50.717293,3.135229,1,0,OLI:SA:1866,Europe/Paris,0,OLI, +OLI:SP:AMS002,1,"Amsterdam",50.717635,3.135009,1,0,OLI:SA:1866,Europe/Paris,0,OLI, +OLI:SP:AMT001,1,"Amiteuse",50.58425,3.051143,1,0,OLI:SA:2096,Europe/Paris,0,OLI, +OLI:SP:AMT002,1,"Amiteuse",50.584304,3.051256,1,0,OLI:SA:2096,Europe/Paris,0,OLI, +OLI:SP:ANC001,1,"Lapin Blanc",50.644149,3.231502,1,0,OLI:SA:4390,Europe/Paris,0,OLI, +OLI:SP:ANC002,1,"Lapin Blanc",50.643861,3.231666,1,0,OLI:SA:4390,Europe/Paris,0,OLI, +OLI:SP:AND001,1,"Vandenberghe",50.650412,3.095643,1,0,OLI:SA:1175,Europe/Paris,0,OLI, +OLI:SP:AND002,1,"Vandenberghe",50.650349,3.095727,1,0,OLI:SA:1175,Europe/Paris,0,OLI, +OLI:SP:ANE001,1,"Place Sainte Anne",50.769045,2.999566,1,0,OLI:SA:2453,Europe/Paris,0,OLI, +OLI:SP:ANF001,1,"Anatole France",50.584847,3.124197,1,0,OLI:SA:724,Europe/Paris,0,OLI, +OLI:SP:ANG001,1,"Ancienne Gare",50.580878,2.86551,1,0,OLI:SA:532,Europe/Paris,0,OLI, +OLI:SP:ANG002,1,"Ancienne Gare",50.58086,2.865524,1,0,OLI:SA:532,Europe/Paris,0,OLI, +OLI:SP:ANM001,1,"Ancienne Mairie",50.64536,3.101844,1,0,OLI:SA:4126,Europe/Paris,0,OLI, +OLI:SP:ANM002,1,"Ancienne Mairie",50.645526,3.102496,1,0,OLI:SA:4126,Europe/Paris,0,OLI, +OLI:SP:ANN001,1,"Republique",50.62651,3.150139,1,0,OLI:SA:5600,Europe/Paris,0,OLI, +OLI:SP:ANN002,1,"Republique",50.626488,3.150632,1,0,OLI:SA:5600,Europe/Paris,0,OLI, +OLI:SP:ANO001,1,"Anor",50.724041,3.1361,1,0,OLI:SA:1756,Europe/Paris,0,OLI, +OLI:SP:ANO002,1,"Anor",50.723838,3.137072,1,0,OLI:SA:1756,Europe/Paris,0,OLI, +OLI:SP:ANP001,1,"Poste D'Annappes",50.62495,3.147195,1,0,OLI:SA:2007,Europe/Paris,0,OLI, +OLI:SP:ANP002,1,"Poste D'Annappes",50.625243,3.146353,1,0,OLI:SA:2007,Europe/Paris,0,OLI, +OLI:SP:APC001,1,"Arteparc",50.595084,3.130983,1,0,OLI:SA:7547,Europe/Paris,0,OLI, +OLI:SP:APE003,1,"Happe Qui Peut",50.59698,3.037061,1,0,OLI:SA:6830,Europe/Paris,0,OLI, +OLI:SP:APE004,1,"Happe Qui Peut",50.597079,3.037063,1,0,OLI:SA:6830,Europe/Paris,0,OLI, +OLI:SP:APH098,1,"Pres Du Hem",50.694902,2.882998,1,0,OLI:SA:6958,Europe/Paris,0,OLI, +OLI:SP:APH099,1,"Pres Du Hem",50.694979,2.883804,1,0,OLI:SA:6958,Europe/Paris,0,OLI, +OLI:SP:APK001,1,"Bradford",50.715426,3.143732,1,0,OLI:SA:6996,Europe/Paris,0,OLI, +OLI:SP:APK002,1,"Bradford",50.71484,3.144133,1,0,OLI:SA:6996,Europe/Paris,0,OLI, +OLI:SP:APO001,1,"Apolda",50.543613,3.017365,1,0,OLI:SA:5527,Europe/Paris,0,OLI, +OLI:SP:APO002,1,"Apolda",50.543231,3.018458,1,0,OLI:SA:5527,Europe/Paris,0,OLI, +OLI:SP:APT001,1,"Place Chaptal",50.694566,3.192695,1,0,OLI:SA:1482,Europe/Paris,0,OLI, +OLI:SP:APT002,1,"Place Chaptal",50.694617,3.193049,1,0,OLI:SA:1482,Europe/Paris,0,OLI, +OLI:SP:AQC001,1,"Ascq 4 Chemins",50.614869,3.155124,1,0,OLI:SA:5643,Europe/Paris,0,OLI, +OLI:SP:AQC002,1,"Ascq 4 Chemins",50.614688,3.155333,1,0,OLI:SA:5643,Europe/Paris,0,OLI, +OLI:SP:AQU001,1,"Baraques",50.639358,3.235282,1,0,OLI:SA:2243,Europe/Paris,0,OLI, +OLI:SP:AQU002,1,"Baraques",50.639547,3.235229,1,0,OLI:SA:2243,Europe/Paris,0,OLI, +OLI:SP:ARA003,1,"Arago",50.620155,3.06123,1,0,OLI:SA:845,Europe/Paris,0,OLI, +OLI:SP:ARA004,1,"Arago",50.620604,3.061222,1,0,OLI:SA:845,Europe/Paris,0,OLI, +OLI:SP:ARB001,1,"Arbrisseau",50.605923,3.048196,1,0,OLI:SA:846,Europe/Paris,0,OLI, +OLI:SP:ARB002,1,"Arbrisseau",50.605716,3.049786,1,0,OLI:SA:846,Europe/Paris,0,OLI, +OLI:SP:ARC001,1,"Archelois",50.629849,2.985946,1,0,OLI:SA:5664,Europe/Paris,0,OLI, +OLI:SP:ARC002,1,"Archelois",50.629704,2.986198,1,0,OLI:SA:5664,Europe/Paris,0,OLI, +OLI:SP:ARE001,1,"Jean Jaures",50.658822,3.134775,1,0,OLI:SA:1969,Europe/Paris,0,OLI, +OLI:SP:ARG001,1,"Armentieres Gare",50.680894,2.878299,1,0,OLI:SA:6950,Europe/Paris,0,OLI, +OLI:SP:ARG006,1,"Armentieres Gare",50.680912,2.878342,1,0,OLI:SA:6950,Europe/Paris,0,OLI, +OLI:SP:ARG007,1,"Armentieres Gare",50.680796,2.878157,1,0,OLI:SA:6950,Europe/Paris,0,OLI, +OLI:SP:ARG077,1,"Armentieres Gare",50.680741,2.878622,1,0,OLI:SA:6950,Europe/Paris,0,OLI, +OLI:SP:ARG082,1,"Armentieres Gare",50.680929,2.878568,1,0,OLI:SA:6950,Europe/Paris,0,OLI, +OLI:SP:ARG083,1,"Armentieres Gare",50.680715,2.878368,1,0,OLI:SA:6950,Europe/Paris,0,OLI, +OLI:SP:ARI001,1,"Carin",50.699877,3.219422,1,0,OLI:SA:5693,Europe/Paris,0,OLI, +OLI:SP:ARI002,1,"Carin",50.699766,3.219788,1,0,OLI:SA:5693,Europe/Paris,0,OLI, +OLI:SP:ARJ002,1,"Jeanne D'Arc",50.62573,3.065118,1,0,OLI:SA:951,Europe/Paris,0,OLI, +OLI:SP:ARJ003,1,"Jeanne D'Arc",50.626187,3.063658,1,0,OLI:SA:951,Europe/Paris,0,OLI, +OLI:SP:ARJ005,1,"Jeanne D'Arc",50.626572,3.063748,1,0,OLI:SA:951,Europe/Paris,0,OLI, +OLI:SP:ARL001,1,"Charles Legrand",50.76017,3.008823,1,0,OLI:SA:252,Europe/Paris,0,OLI, +OLI:SP:ARL002,1,"Charles Legrand",50.760392,3.009335,1,0,OLI:SA:252,Europe/Paris,0,OLI, +OLI:SP:ARM007,1,"Hotel De Ville",50.686638,2.881651,1,0,OLI:SA:132,Europe/Paris,0,OLI, +OLI:SP:ARM008,1,"Hotel De Ville",50.686835,2.881724,1,0,OLI:SA:132,Europe/Paris,0,OLI, +OLI:SP:ARM082,1,"Hotel De Ville",50.686935,2.883546,1,0,OLI:SA:132,Europe/Paris,0,OLI, +OLI:SP:ARM083,1,"Hotel De Ville",50.686997,2.883731,1,0,OLI:SA:132,Europe/Paris,0,OLI, +OLI:SP:ARN003,1,"Carnot",50.688895,3.196819,1,0,OLI:SA:5571,Europe/Paris,0,OLI, +OLI:SP:ARN004,1,"Carnot",50.688787,3.196874,1,0,OLI:SA:5571,Europe/Paris,0,OLI, +OLI:SP:ARO001,1,"Av. De Roubaix",50.596948,3.070407,1,0,OLI:SA:5544,Europe/Paris,0,OLI, +OLI:SP:ARO002,1,"Av. De Roubaix",50.59694,3.070154,1,0,OLI:SA:5544,Europe/Paris,0,OLI, +OLI:SP:ARP001,1,"Gare",50.665797,2.974685,1,0,OLI:SA:7152,Europe/Paris,0,OLI, +OLI:SP:ARQ001,1,"La Marque",50.666537,3.149845,1,0,OLI:SA:288,Europe/Paris,0,OLI, +OLI:SP:ARQ012,1,"La Marque",50.666103,3.148934,1,0,OLI:SA:288,Europe/Paris,0,OLI, +OLI:SP:ARR001,1,"Carrel",50.721705,3.129775,1,0,OLI:SA:217,Europe/Paris,0,OLI, +OLI:SP:ARR002,1,"Carrel",50.72129,3.130108,1,0,OLI:SA:217,Europe/Paris,0,OLI, +OLI:SP:ARY001,1,"La Carnoy",50.651153,3.022469,1,0,OLI:SA:3952,Europe/Paris,0,OLI, +OLI:SP:ARY002,1,"La Carnoy",50.651002,3.022255,1,0,OLI:SA:3952,Europe/Paris,0,OLI, +OLI:SP:ARY003,1,"La Carnoy",50.650718,3.023352,1,0,OLI:SA:3952,Europe/Paris,0,OLI, +OLI:SP:ARY004,1,"La Carnoy",50.650861,3.023396,1,0,OLI:SA:3952,Europe/Paris,0,OLI, +OLI:SP:ASA001,1,"Av Des Saules",50.701645,3.07686,1,0,OLI:SA:5167,Europe/Paris,0,OLI, +OLI:SP:ASC001,1,"Village",50.619269,3.159779,1,0,OLI:SA:1974,Europe/Paris,0,OLI, +OLI:SP:ASC002,1,"Village",50.618995,3.159182,1,0,OLI:SA:1974,Europe/Paris,0,OLI, +OLI:SP:AST001,1,"Maison D'Arret",50.617875,2.964852,1,0,OLI:SA:474,Europe/Paris,0,OLI, +OLI:SP:AST002,1,"Maison D'Arret",50.61743,2.96589,1,0,OLI:SA:474,Europe/Paris,0,OLI, +OLI:SP:AST500,1,"Maison D'Arret",50.618276,2.965252,1,0,OLI:SA:474,Europe/Paris,0,OLI, +OLI:SP:ATE001,1,"Catel",50.659758,3.135707,1,0,OLI:SA:2008,Europe/Paris,0,OLI, +OLI:SP:ATE002,1,"Catel",50.660677,3.136512,1,0,OLI:SA:2008,Europe/Paris,0,OLI, +OLI:SP:ATH001,1,"A. Thoor",50.638336,2.990852,1,0,OLI:SA:5966,Europe/Paris,0,OLI, +OLI:SP:ATH002,1,"A. Thoor",50.638739,2.990871,1,0,OLI:SA:5966,Europe/Paris,0,OLI, +OLI:SP:ATO001,1,"Marcel Paul",50.567903,3.029415,1,0,OLI:SA:1279,Europe/Paris,0,OLI, +OLI:SP:ATO002,1,"Marcel Paul",50.568019,3.029529,1,0,OLI:SA:1279,Europe/Paris,0,OLI, +OLI:SP:ATT001,1,"Watt",50.688061,3.158625,1,0,OLI:SA:1462,Europe/Paris,0,OLI, +OLI:SP:ATT002,1,"Watt",50.688265,3.158868,1,0,OLI:SA:1462,Europe/Paris,0,OLI, +OLI:SP:AUB001,1,"Haubourdin",50.717672,3.14456,1,0,OLI:SA:1798,Europe/Paris,0,OLI, +OLI:SP:AUB002,1,"Haubourdin",50.717644,3.144672,1,0,OLI:SA:1798,Europe/Paris,0,OLI, +OLI:SP:AUC001,1,"Ecole",50.59734,2.830731,1,0,OLI:SA:2398,Europe/Paris,0,OLI, +OLI:SP:AUC002,1,"Ecole",50.59742,2.830844,1,0,OLI:SA:2398,Europe/Paris,0,OLI, +OLI:SP:AUG001,1,"Augereau",50.617893,3.028584,1,0,OLI:SA:896,Europe/Paris,0,OLI, +OLI:SP:AUG002,1,"Augereau",50.61784,3.028555,1,0,OLI:SA:896,Europe/Paris,0,OLI, +OLI:SP:AUL001,1,"Centre Commercial",50.680362,3.215139,1,0,OLI:SA:689,Europe/Paris,0,OLI, +OLI:SP:AUL002,1,"Centre Commercial",50.678935,3.215269,1,0,OLI:SA:689,Europe/Paris,0,OLI, +OLI:SP:AUR001,1,"Ctre Commercial",50.736153,3.132817,1,0,OLI:SA:4521,Europe/Paris,0,OLI, +OLI:SP:AUR002,1,"Ctre Commercial",50.735984,3.132603,1,0,OLI:SA:4521,Europe/Paris,0,OLI, +OLI:SP:AUS002,1,"Austerlitz",50.717715,3.153052,1,0,OLI:SA:1860,Europe/Paris,0,OLI, +OLI:SP:AVE001,1,"L'Aventure",50.688548,2.94723,1,0,OLI:SA:380,Europe/Paris,0,OLI, +OLI:SP:AVE002,1,"L'Aventure",50.688511,2.947427,1,0,OLI:SA:380,Europe/Paris,0,OLI, +OLI:SP:AVN001,1,"Av Industrielle",50.673502,3.054945,1,0,OLI:SA:6296,Europe/Paris,0,OLI, +OLI:SP:AVN002,1,"Av Industrielle",50.673614,3.055667,1,0,OLI:SA:6296,Europe/Paris,0,OLI, +OLI:SP:AVN003,1,"Av Industrielle",50.673869,3.055035,1,0,OLI:SA:6296,Europe/Paris,0,OLI, +OLI:SP:AVS001,1,"Avesnes",50.727616,3.166765,1,0,OLI:SA:7192,Europe/Paris,0,OLI, +OLI:SP:AVS002,1,"Avesnes",50.727545,3.166595,1,0,OLI:SA:7192,Europe/Paris,0,OLI, +OLI:SP:AVT001,1,"L'Aventure",50.577053,2.82274,1,0,OLI:SA:569,Europe/Paris,0,OLI, +OLI:SP:AVT002,1,"L'Aventure",50.576623,2.822637,1,0,OLI:SA:569,Europe/Paris,0,OLI, +OLI:SP:AVT003,1,"L'Aventure",50.576668,2.822596,1,0,OLI:SA:569,Europe/Paris,0,OLI, +OLI:SP:BAB001,1,"Abbe Lemire",50.778194,3.136318,1,0,OLI:SA:2687,Europe/Paris,0,OLI, +OLI:SP:BAE001,1,"Barbusse",50.606126,3.015312,1,0,OLI:SA:1084,Europe/Paris,0,OLI, +OLI:SP:BAE002,1,"Barbusse",50.606379,3.01492,1,0,OLI:SA:1084,Europe/Paris,0,OLI, +OLI:SP:BAH001,1,"Bois D'Achelles",50.722508,3.110529,1,0,OLI:SA:6875,Europe/Paris,0,OLI, +OLI:SP:BAI001,1,"Bailly",50.679808,3.095384,1,0,OLI:SA:1121,Europe/Paris,0,OLI, +OLI:SP:BAI002,1,"Bailly",50.679783,3.095087,1,0,OLI:SA:1121,Europe/Paris,0,OLI, +OLI:SP:BAJ001,1,"Bas Jardin",50.623118,3.063924,1,0,OLI:SA:953,Europe/Paris,0,OLI, +OLI:SP:BAJ002,1,"Bas Jardin",50.623176,3.06463,1,0,OLI:SA:953,Europe/Paris,0,OLI, +OLI:SP:BAM001,1,"Bargues Marais",50.579793,3.033736,1,0,OLI:SA:6943,Europe/Paris,0,OLI, +OLI:SP:BAM002,1,"Bargues Marais",50.57972,3.033904,1,0,OLI:SA:6943,Europe/Paris,0,OLI, +OLI:SP:BAM003,1,"Bargues Marais",50.580547,3.035127,1,0,OLI:SA:6943,Europe/Paris,0,OLI, +OLI:SP:BAM004,1,"Bargues Marais",50.580415,3.034716,1,0,OLI:SA:6943,Europe/Paris,0,OLI, +OLI:SP:BAP001,1,"St Jean Baptiste",50.679334,3.178471,1,0,OLI:SA:1401,Europe/Paris,0,OLI, +OLI:SP:BAP002,1,"St Jean Baptiste",50.679348,3.179121,1,0,OLI:SA:1401,Europe/Paris,0,OLI, +OLI:SP:BAR001,1,"Barrois",50.669373,3.100264,1,0,OLI:SA:1119,Europe/Paris,0,OLI, +OLI:SP:BAR002,1,"Barrois",50.669241,3.099966,1,0,OLI:SA:1119,Europe/Paris,0,OLI, +OLI:SP:BAS001,1,"Basquin",50.59369,3.110314,1,0,OLI:SA:7048,Europe/Paris,0,OLI, +OLI:SP:BAS002,1,"Basquin",50.593509,3.110551,1,0,OLI:SA:7048,Europe/Paris,0,OLI, +OLI:SP:BAT001,1,"Baratte",50.617085,3.157825,1,0,OLI:SA:7049,Europe/Paris,0,OLI, +OLI:SP:BAT002,1,"Baratte",50.616766,3.157115,1,0,OLI:SA:7049,Europe/Paris,0,OLI, +OLI:SP:BAU001,1,"Baudouin Ix",50.627243,3.139433,1,0,OLI:SA:1963,Europe/Paris,0,OLI, +OLI:SP:BAU002,1,"Baudouin Ix",50.627395,3.139619,1,0,OLI:SA:1963,Europe/Paris,0,OLI, +OLI:SP:BBO001,1,"Les Bois",50.762587,3.092202,1,0,OLI:SA:5728,Europe/Paris,0,OLI, +OLI:SP:BBO002,1,"Les Bois",50.762558,3.092569,1,0,OLI:SA:5728,Europe/Paris,0,OLI, +OLI:SP:BCE001,1,"Bondues Centre",50.700692,3.095065,1,0,OLI:SA:5793,Europe/Paris,0,OLI, +OLI:SP:BCE002,1,"Bondues Centre",50.701057,3.093983,1,0,OLI:SA:5793,Europe/Paris,0,OLI, +OLI:SP:BCE003,1,"Bondues Centre",50.699801,3.094063,1,0,OLI:SA:5793,Europe/Paris,0,OLI, +OLI:SP:BCI001,1,"Cimetiere",50.765994,3.077546,1,0,OLI:SA:5733,Europe/Paris,0,OLI, +OLI:SP:BCI002,1,"Cimetiere",50.765967,3.077602,1,0,OLI:SA:5733,Europe/Paris,0,OLI, +OLI:SP:BCR001,1,"Bouchery",50.558685,2.835194,1,0,OLI:SA:574,Europe/Paris,0,OLI, +OLI:SP:BCR002,1,"Bouchery",50.558747,2.835223,1,0,OLI:SA:574,Europe/Paris,0,OLI, +OLI:SP:BDC001,1,"Hopital Victor Provo",50.680986,3.167657,1,0,OLI:SA:1510,Europe/Paris,0,OLI, +OLI:SP:BDC012,1,"Hopital Victor Provo",50.681049,3.167559,1,0,OLI:SA:1510,Europe/Paris,0,OLI, +OLI:SP:BDH001,1,"Boulevard De Mulhouse",50.683746,3.191704,1,0,OLI:SA:1455,Europe/Paris,0,OLI, +OLI:SP:BDH002,1,"Boulevard De Mulhouse",50.684021,3.190848,1,0,OLI:SA:1455,Europe/Paris,0,OLI, +OLI:SP:BDM001,1,"Boulevard De Mons",50.643983,3.135145,1,0,OLI:SA:1973,Europe/Paris,0,OLI, +OLI:SP:BDM002,1,"Boulevard De Mons",50.643165,3.135442,1,0,OLI:SA:1973,Europe/Paris,0,OLI, +OLI:SP:BDM003,1,"Boulevard De Mons",50.644105,3.135655,1,0,OLI:SA:1973,Europe/Paris,0,OLI, +OLI:SP:BDO001,1,"Boulevard De Douai",50.680955,3.168221,1,0,OLI:SA:1551,Europe/Paris,0,OLI, +OLI:SP:BDO002,1,"Boulevard De Douai",50.681144,3.16821,1,0,OLI:SA:1551,Europe/Paris,0,OLI, +OLI:SP:BDR001,1,"Botte D'Or",50.558394,2.836008,1,0,OLI:SA:571,Europe/Paris,0,OLI, +OLI:SP:BDR002,1,"Botte D'Or",50.558707,2.836335,1,0,OLI:SA:571,Europe/Paris,0,OLI, +OLI:SP:BDU001,1,"Bd De L'Usine",50.625382,3.08872,1,0,OLI:SA:932,Europe/Paris,0,OLI, +OLI:SP:BDU002,1,"Bd De L'Usine",50.625409,3.088791,1,0,OLI:SA:932,Europe/Paris,0,OLI, +OLI:SP:BDU003,1,"Bd De L'Ouest",50.637169,3.120663,1,0,OLI:SA:6914,Europe/Paris,0,OLI, +OLI:SP:BDU004,1,"Bd De L'Ouest",50.637166,3.119689,1,0,OLI:SA:6914,Europe/Paris,0,OLI, +OLI:SP:BEA001,1,"Beaumont",50.682138,3.176302,1,0,OLI:SA:4415,Europe/Paris,0,OLI, +OLI:SP:BEA002,1,"Beaumont",50.68243,3.175686,1,0,OLI:SA:4415,Europe/Paris,0,OLI, +OLI:SP:BEB001,1,"Beau Bouquet",50.610489,3.207949,1,0,OLI:SA:249,Europe/Paris,0,OLI, +OLI:SP:BEB002,1,"Beau Bouquet",50.610517,3.207836,1,0,OLI:SA:249,Europe/Paris,0,OLI, +OLI:SP:BEC001,1,"Bd Leclerc",50.637348,3.104952,1,0,OLI:SA:4127,Europe/Paris,0,OLI, +OLI:SP:BEC002,1,"Bd Leclerc",50.637446,3.105052,1,0,OLI:SA:4127,Europe/Paris,0,OLI, +OLI:SP:BEL001,1,"Bel Arbre",50.733261,2.946844,1,0,OLI:SA:311,Europe/Paris,0,OLI, +OLI:SP:BEL002,1,"Bel Arbre",50.733117,2.947068,1,0,OLI:SA:311,Europe/Paris,0,OLI, +OLI:SP:BEN001,1,"Bois D'Enchemont",50.582336,3.114098,1,0,OLI:SA:733,Europe/Paris,0,OLI, +OLI:SP:BER001,1,"Leclerc",50.681065,3.238375,1,0,OLI:SA:707,Europe/Paris,0,OLI, +OLI:SP:BER002,1,"Leclerc",50.680963,3.238783,1,0,OLI:SA:707,Europe/Paris,0,OLI, +OLI:SP:BET001,1,"Jean Jaures",50.658421,3.137168,1,0,OLI:SA:1969,Europe/Paris,0,OLI, +OLI:SP:BET002,1,"Jean Jaures",50.658702,3.136721,1,0,OLI:SA:1969,Europe/Paris,0,OLI, +OLI:SP:BEY001,1,"Beyens",50.742495,3.181502,1,0,OLI:SA:1770,Europe/Paris,0,OLI, +OLI:SP:BEY002,1,"Beyens",50.742512,3.18153,1,0,OLI:SA:1770,Europe/Paris,0,OLI, +OLI:SP:BFO001,1,"Bellefontaine",50.771041,3.121734,1,0,OLI:SA:437,Europe/Paris,0,OLI, +OLI:SP:BFO002,1,"Bellefontaine",50.770487,3.121414,1,0,OLI:SA:437,Europe/Paris,0,OLI, +OLI:SP:BGA001,1,"Gare",50.617915,3.233261,1,0,OLI:SA:150,Europe/Paris,0,OLI, +OLI:SP:BGA002,1,"Gare",50.618873,3.233588,1,0,OLI:SA:150,Europe/Paris,0,OLI, +OLI:SP:BGR001,1,"Mairie",50.64743,2.875778,1,0,OLI:SA:2250,Europe/Paris,0,OLI, +OLI:SP:BGR002,1,"Mairie",50.647025,2.876254,1,0,OLI:SA:2250,Europe/Paris,0,OLI, +OLI:SP:BGU001,1,"Bargues",50.575147,3.022217,1,0,OLI:SA:6994,Europe/Paris,0,OLI, +OLI:SP:BGU002,1,"Bargues",50.575127,3.022569,1,0,OLI:SA:6994,Europe/Paris,0,OLI, +OLI:SP:BHO001,1,"Hospice",50.708478,3.089123,1,0,OLI:SA:5833,Europe/Paris,0,OLI, +OLI:SP:BHO002,1,"Hospice",50.709313,3.088938,1,0,OLI:SA:5833,Europe/Paris,0,OLI, +OLI:SP:BIF001,1,"Leers Bifur",50.680918,3.242537,1,0,OLI:SA:699,Europe/Paris,0,OLI, +OLI:SP:BIF002,1,"Leers Bifur",50.679742,3.2427,1,0,OLI:SA:699,Europe/Paris,0,OLI, +OLI:SP:BIH001,1,"Le Bihamel",50.694716,3.045436,1,0,OLI:SA:5857,Europe/Paris,0,OLI, +OLI:SP:BIH002,1,"Le Bihamel",50.694649,3.046211,1,0,OLI:SA:5857,Europe/Paris,0,OLI, +OLI:SP:BLA002,1,"Blanchemaille",50.69656,3.167224,1,0,OLI:SA:7657,Europe/Paris,0,OLI, +OLI:SP:BLC001,1,"Blanchisseurs",50.629257,3.011098,1,0,OLI:SA:1009,Europe/Paris,0,OLI, +OLI:SP:BLC002,1,"Blanchisseurs",50.629015,3.011024,1,0,OLI:SA:1009,Europe/Paris,0,OLI, +OLI:SP:BLD001,1,"Bois Le Duc",50.68843,3.210762,1,0,OLI:SA:1507,Europe/Paris,0,OLI, +OLI:SP:BLD002,1,"Bois Le Duc",50.68878,3.210726,1,0,OLI:SA:1507,Europe/Paris,0,OLI, +OLI:SP:BLE001,1,"Pl Aux Bleuets",50.640822,3.06751,1,0,OLI:SA:6269,Europe/Paris,0,OLI, +OLI:SP:BLR002,1,"Resistance",50.655824,3.042175,1,0,OLI:SA:6750,Europe/Paris,0,OLI, +OLI:SP:BLT001,1,"Louis Bleriot",50.703221,2.888004,1,0,OLI:SA:133,Europe/Paris,0,OLI, +OLI:SP:BLT002,1,"Louis Bleriot",50.703347,2.887935,1,0,OLI:SA:133,Europe/Paris,0,OLI, +OLI:SP:BLU002,1,"Blum",50.706413,3.229835,1,0,OLI:SA:2211,Europe/Paris,0,OLI, +OLI:SP:BLU003,1,"Blum",50.706394,3.22992,1,0,OLI:SA:2211,Europe/Paris,0,OLI, +OLI:SP:BLV001,1,"Bel Air",50.658466,3.039644,1,0,OLI:SA:4036,Europe/Paris,0,OLI, +OLI:SP:BLV002,1,"Bel Air",50.657888,3.040313,1,0,OLI:SA:4036,Europe/Paris,0,OLI, +OLI:SP:BMA001,1,"Verdun",50.687405,3.198361,1,0,OLI:SA:4674,Europe/Paris,0,OLI, +OLI:SP:BMA002,1,"Verdun",50.687261,3.198415,1,0,OLI:SA:4674,Europe/Paris,0,OLI, +OLI:SP:BMI001,1,"Mairie",50.772141,3.076987,1,0,OLI:SA:234,Europe/Paris,0,OLI, +OLI:SP:BMI002,1,"Mairie",50.772411,3.075364,1,0,OLI:SA:234,Europe/Paris,0,OLI, +OLI:SP:BML001,1,"College Blum",50.570194,2.936209,1,0,OLI:SA:2219,Europe/Paris,0,OLI, +OLI:SP:BMM001,1,"Monument Aux Morts",50.536504,2.80416,1,0,OLI:SA:586,Europe/Paris,0,OLI, +OLI:SP:BMN001,1,"Bas Chemin",50.710822,3.08858,1,0,OLI:SA:5781,Europe/Paris,0,OLI, +OLI:SP:BMN002,1,"Bas Chemin",50.711316,3.088488,1,0,OLI:SA:5781,Europe/Paris,0,OLI, +OLI:SP:BNO001,1,"Bonaparte",50.760602,2.99862,1,0,OLI:SA:5845,Europe/Paris,0,OLI, +OLI:SP:BNT001,1,"Point Central",50.706739,3.156757,1,0,OLI:SA:1875,Europe/Paris,0,OLI, +OLI:SP:BNT002,1,"Point Central",50.707239,3.157076,1,0,OLI:SA:1875,Europe/Paris,0,OLI, +OLI:SP:BOA001,1,"Bol D'Air",50.672147,3.156076,1,0,OLI:SA:1422,Europe/Paris,0,OLI, +OLI:SP:BOA012,1,"Bol D'Air",50.672665,3.156452,1,0,OLI:SA:1422,Europe/Paris,0,OLI, +OLI:SP:BOC001,1,"Le Bocage",50.667586,2.99266,1,0,OLI:SA:1041,Europe/Paris,0,OLI, +OLI:SP:BOC002,1,"Le Bocage",50.667686,2.992535,1,0,OLI:SA:1041,Europe/Paris,0,OLI, +OLI:SP:BOD011,1,"Bouderiez",50.619152,3.147679,1,0,OLI:SA:1958,Europe/Paris,0,OLI, +OLI:SP:BOD012,1,"Bouderiez",50.618935,3.147929,1,0,OLI:SA:1958,Europe/Paris,0,OLI, +OLI:SP:BOE001,1,"Eglise",50.704161,3.092406,1,0,OLI:SA:224,Europe/Paris,0,OLI, +OLI:SP:BOE002,1,"Eglise",50.704134,3.09242,1,0,OLI:SA:224,Europe/Paris,0,OLI, +OLI:SP:BOI011,1,"Bois Blancs",50.619329,3.141195,1,0,OLI:SA:1914,Europe/Paris,0,OLI, +OLI:SP:BOI012,1,"Bois Blancs",50.619211,3.141377,1,0,OLI:SA:1914,Europe/Paris,0,OLI, +OLI:SP:BON001,1,"N. Segard",50.70492,3.09455,1,0,OLI:SA:198,Europe/Paris,0,OLI, +OLI:SP:BOO001,1,"Le Boulois",50.728756,3.11837,1,0,OLI:SA:5515,Europe/Paris,0,OLI, +OLI:SP:BOO002,1,"Le Boulois",50.729912,3.119801,1,0,OLI:SA:5515,Europe/Paris,0,OLI, +OLI:SP:BOP001,1,"Beaupre Canteraine",50.598579,2.985766,1,0,OLI:SA:460,Europe/Paris,0,OLI, +OLI:SP:BOS001,1,"Le Bosquiel",50.678165,2.853777,1,0,OLI:SA:2540,Europe/Paris,0,OLI, +OLI:SP:BOS002,1,"Le Bosquiel",50.678367,2.852608,1,0,OLI:SA:2540,Europe/Paris,0,OLI, +OLI:SP:BOT001,1,"Botanique",50.649238,3.079188,1,0,OLI:SA:604,Europe/Paris,0,OLI, +OLI:SP:BOT012,1,"Botanique",50.64882,3.078576,1,0,OLI:SA:604,Europe/Paris,0,OLI, +OLI:SP:BOU001,1,"O. De Bousbecque",50.741756,3.184641,1,0,OLI:SA:1845,Europe/Paris,0,OLI, +OLI:SP:BOU002,1,"O. De Bousbecque",50.741891,3.184559,1,0,OLI:SA:1845,Europe/Paris,0,OLI, +OLI:SP:BOV001,1,"Bouverie",50.686816,3.058991,1,0,OLI:SA:2028,Europe/Paris,0,OLI, +OLI:SP:BOV002,1,"Bouverie",50.686753,3.059075,1,0,OLI:SA:2028,Europe/Paris,0,OLI, +OLI:SP:BPO001,1,"Bon Poste",50.661323,3.219489,1,0,OLI:SA:1711,Europe/Paris,0,OLI, +OLI:SP:BPO002,1,"Bon Poste",50.662262,3.217403,1,0,OLI:SA:1711,Europe/Paris,0,OLI, +OLI:SP:BPO003,1,"Bon Poste",50.660592,3.218884,1,0,OLI:SA:1711,Europe/Paris,0,OLI, +OLI:SP:BRB001,1,"Barbusse",50.74069,3.13443,1,0,OLI:SA:6574,Europe/Paris,0,OLI, +OLI:SP:BRB002,1,"Barbusse",50.740473,3.134625,1,0,OLI:SA:6574,Europe/Paris,0,OLI, +OLI:SP:BRG198,1,"Bourg",50.645566,2.985713,1,0,OLI:SA:1034,Europe/Paris,0,OLI, +OLI:SP:BRG199,1,"Bourg",50.645366,2.984553,1,0,OLI:SA:1034,Europe/Paris,0,OLI, +OLI:SP:BRG298,1,"Bourg",50.645721,2.985164,1,0,OLI:SA:1034,Europe/Paris,0,OLI, +OLI:SP:BRG299,1,"Bourg",50.645721,2.985164,1,0,OLI:SA:1034,Europe/Paris,0,OLI, +OLI:SP:BRI001,1,"Briqueterie",50.691455,3.148556,1,0,OLI:SA:7053,Europe/Paris,0,OLI, +OLI:SP:BRI002,1,"Briqueterie",50.691571,3.148657,1,0,OLI:SA:7053,Europe/Paris,0,OLI, +OLI:SP:BRN001,1,"Bondues Ravennes",50.722712,3.127926,1,0,OLI:SA:7010,Europe/Paris,0,OLI, +OLI:SP:BRT001,1,"Rue Briqueterie",50.691802,3.14071,1,0,OLI:SA:5874,Europe/Paris,0,OLI, +OLI:SP:BRT002,1,"Rue Briqueterie",50.692321,3.140846,1,0,OLI:SA:5874,Europe/Paris,0,OLI, +OLI:SP:BRV001,1,"Pierre Beregovoy",50.691532,2.88049,1,0,OLI:SA:134,Europe/Paris,0,OLI, +OLI:SP:BRV002,1,"Pierre Beregovoy",50.691352,2.880573,1,0,OLI:SA:134,Europe/Paris,0,OLI, +OLI:SP:BSM001,1,"Inst Ste Marie",50.603259,2.919549,1,0,OLI:SA:5517,Europe/Paris,0,OLI, +OLI:SP:BSM004,1,"Inst Ste Marie",50.60284,2.913384,1,0,OLI:SA:5517,Europe/Paris,0,OLI, +OLI:SP:BSM005,1,"Inst Ste Marie",50.602867,2.913286,1,0,OLI:SA:5517,Europe/Paris,0,OLI, +OLI:SP:BSS002,1,"Buisson",50.657154,3.090327,1,0,OLI:SA:6629,Europe/Paris,0,OLI, +OLI:SP:BTL001,1,"Boutillerie",50.62843,2.968962,1,0,OLI:SA:1691,Europe/Paris,0,OLI, +OLI:SP:BTL002,1,"Boutillerie",50.628552,2.969683,1,0,OLI:SA:1691,Europe/Paris,0,OLI, +OLI:SP:BTM001,1,"Boutemy",50.668736,3.210248,1,0,OLI:SA:683,Europe/Paris,0,OLI, +OLI:SP:BTM002,1,"Boutemy",50.668953,3.209984,1,0,OLI:SA:683,Europe/Paris,0,OLI, +OLI:SP:BTM003,1,"Boutemy",50.66881,3.211153,1,0,OLI:SA:683,Europe/Paris,0,OLI, +OLI:SP:BTM004,1,"Boutemy",50.668713,3.210968,1,0,OLI:SA:683,Europe/Paris,0,OLI, +OLI:SP:BTM090,1,"Boutemy Prov",50.667853,3.211969,1,0,OLI:SA:7588,Europe/Paris,0,OLI, +OLI:SP:BTO001,1,"Berthelot",50.72448,3.182158,1,0,OLI:SA:1859,Europe/Paris,0,OLI, +OLI:SP:BTO002,1,"Berthelot",50.724383,3.181845,1,0,OLI:SA:1859,Europe/Paris,0,OLI, +OLI:SP:BTP001,1,"Bon Temps",50.619942,2.931291,1,0,OLI:SA:5703,Europe/Paris,0,OLI, +OLI:SP:BTP002,1,"Bon Temps",50.619816,2.931374,1,0,OLI:SA:5703,Europe/Paris,0,OLI, +OLI:SP:BTT001,1,"Broutteux",50.737224,3.122432,1,0,OLI:SA:1366,Europe/Paris,0,OLI, +OLI:SP:BTT002,1,"Broutteux",50.737242,3.122347,1,0,OLI:SA:1366,Europe/Paris,0,OLI, +OLI:SP:BUI001,1,"Renan Buisson",50.700896,2.88449,1,0,OLI:SA:6956,Europe/Paris,0,OLI, +OLI:SP:BUI002,1,"Renan Buisson",50.701291,2.88448,1,0,OLI:SA:6956,Europe/Paris,0,OLI, +OLI:SP:BUO001,1,"Coubertin",50.681192,3.210635,1,0,OLI:SA:1382,Europe/Paris,0,OLI, +OLI:SP:BUO002,1,"Coubertin",50.680154,3.211549,1,0,OLI:SA:1382,Europe/Paris,0,OLI, +OLI:SP:BUR001,1,"Burgault",50.547542,3.039961,1,0,OLI:SA:1675,Europe/Paris,0,OLI, +OLI:SP:BUR003,1,"Burgault",50.547679,3.039498,1,0,OLI:SA:1675,Europe/Paris,0,OLI, +OLI:SP:BVI001,1,"Basse Ville",50.771257,3.139742,1,0,OLI:SA:443,Europe/Paris,0,OLI, +OLI:SP:BVI002,1,"Basse Ville",50.772187,3.138852,1,0,OLI:SA:443,Europe/Paris,0,OLI, +OLI:SP:BYR001,1,"Labyrinthe",50.75714,3.148013,1,0,OLI:SA:5958,Europe/Paris,0,OLI, +OLI:SP:BYR002,1,"Labyrinthe",50.757149,3.148055,1,0,OLI:SA:5958,Europe/Paris,0,OLI, +OLI:SP:BZH001,1,"Bazinghien",50.619501,3.016973,1,0,OLI:SA:1083,Europe/Paris,0,OLI, +OLI:SP:BZH002,1,"Bazinghien",50.619438,3.016888,1,0,OLI:SA:1083,Europe/Paris,0,OLI, +OLI:SP:CAA001,1,"Casanova",50.759162,3.112413,1,0,OLI:SA:2671,Europe/Paris,0,OLI, +OLI:SP:CAA002,1,"Casanova",50.759453,3.111823,1,0,OLI:SA:2671,Europe/Paris,0,OLI, +OLI:SP:CAB001,1,"Croix Au Bois",50.696609,2.977888,1,0,OLI:SA:383,Europe/Paris,0,OLI, +OLI:SP:CAB002,1,"Croix Au Bois",50.69669,2.977819,1,0,OLI:SA:383,Europe/Paris,0,OLI, +OLI:SP:CAB003,1,"Croix Au Bois",50.69644,2.975824,1,0,OLI:SA:383,Europe/Paris,0,OLI, +OLI:SP:CAB004,1,"Croix Au Bois",50.696414,2.975725,1,0,OLI:SA:383,Europe/Paris,0,OLI, +OLI:SP:CAD001,1,"Chateau D'Eau",50.720655,3.109964,1,0,OLI:SA:219,Europe/Paris,0,OLI, +OLI:SP:CAF001,1,"Cafeteria",50.565744,3.03847,1,0,OLI:SA:1664,Europe/Paris,0,OLI, +OLI:SP:CAF002,1,"Lorival",50.566454,3.035001,1,0,OLI:SA:2533,Europe/Paris,0,OLI, +OLI:SP:CAG001,1,"Ma Campagne",50.704155,3.204201,1,0,OLI:SA:2141,Europe/Paris,0,OLI, +OLI:SP:CAH001,1,"Carihem",50.686315,3.211784,1,0,OLI:SA:1435,Europe/Paris,0,OLI, +OLI:SP:CAH002,1,"Carihem",50.68635,3.211841,1,0,OLI:SA:1435,Europe/Paris,0,OLI, +OLI:SP:CAI001,1,"Calais",50.717382,3.151775,1,0,OLI:SA:1715,Europe/Paris,0,OLI, +OLI:SP:CAI002,1,"Calais",50.717391,3.151817,1,0,OLI:SA:1715,Europe/Paris,0,OLI, +OLI:SP:CAL001,1,"CHU-Eurasante (C.H.R B-Calmette)",50.607776,3.039398,1,0,OLI:SA:6713,Europe/Paris,0,OLI, +OLI:SP:CAL002,1,"CHU-Eurasante (C.H.R B-Calmette)",50.607579,3.039395,1,0,OLI:SA:6713,Europe/Paris,0,OLI, +OLI:SP:CAL007,1,"CHU-Eurasante (C.H.R B-Calmette)",50.608031,3.038837,1,0,OLI:SA:6713,Europe/Paris,0,OLI, +OLI:SP:CAL008,1,"CHU-Eurasante (C.H.R B-Calmette)",50.608047,3.039176,1,0,OLI:SA:6713,Europe/Paris,0,OLI, +OLI:SP:CAL011,1,"CHU-Eurasante (C.H.R B-Calmette)",50.607206,3.038671,1,0,OLI:SA:6713,Europe/Paris,0,OLI, +OLI:SP:CAL012,1,"CHU-Eurasante (C.H.R B-Calmette)",50.607117,3.038599,1,0,OLI:SA:6713,Europe/Paris,0,OLI, +OLI:SP:CAL063,1,"CHU-Eurasante (C.H.R B-Calmette)",50.608137,3.039022,1,0,OLI:SA:6713,Europe/Paris,0,OLI, +OLI:SP:CAL098,1,"CHU-Eurasante (C.H.R B-Calmette)",50.607932,3.03892,1,0,OLI:SA:6713,Europe/Paris,0,OLI, +OLI:SP:CAL099,1,"CHU-Eurasante (C.H.R B-Calmette)",50.607932,3.03892,1,0,OLI:SA:6713,Europe/Paris,0,OLI, +OLI:SP:CAM001,1,"Ma Campagne",50.709907,3.152387,1,0,OLI:SA:1874,Europe/Paris,0,OLI, +OLI:SP:CAM002,1,"Ma Campagne",50.710034,3.153519,1,0,OLI:SA:1874,Europe/Paris,0,OLI, +OLI:SP:CAM021,1,"Ma Campagne",50.71,3.153307,1,0,OLI:SA:1874,Europe/Paris,0,OLI, +OLI:SP:CAM032,1,"Ma Campagne",50.709592,3.152509,1,0,OLI:SA:1874,Europe/Paris,0,OLI, +OLI:SP:CAN003,1,"Canteleu",50.637012,3.024871,1,0,OLI:SA:1025,Europe/Paris,0,OLI, +OLI:SP:CAN004,1,"Canteleu",50.637084,3.024829,1,0,OLI:SA:1025,Europe/Paris,0,OLI, +OLI:SP:CAN098,1,"Canteleu",50.63715,3.024167,1,0,OLI:SA:1025,Europe/Paris,0,OLI, +OLI:SP:CAN099,1,"Canteleu",50.63715,3.024167,1,0,OLI:SA:1025,Europe/Paris,0,OLI, +OLI:SP:CAP001,1,"Pn Cartigny",50.702893,3.194772,1,0,OLI:SA:2180,Europe/Paris,0,OLI, +OLI:SP:CAP002,1,"Pn Cartigny",50.703387,3.195981,1,0,OLI:SA:2180,Europe/Paris,0,OLI, +OLI:SP:CAR001,1,"Carpeaux",50.674903,3.182349,1,0,OLI:SA:1387,Europe/Paris,0,OLI, +OLI:SP:CAR002,1,"Carpeaux",50.675253,3.182313,1,0,OLI:SA:1387,Europe/Paris,0,OLI, +OLI:SP:CAR003,1,"Carpeaux",50.674882,3.182914,1,0,OLI:SA:1387,Europe/Paris,0,OLI, +OLI:SP:CAS001,1,"Cassel",50.667604,3.041622,1,0,OLI:SA:5939,Europe/Paris,0,OLI, +OLI:SP:CAS002,1,"Cassel",50.668237,3.040826,1,0,OLI:SA:5939,Europe/Paris,0,OLI, +OLI:SP:CAT001,1,"Bousbecque Cat",50.772815,3.069161,1,0,OLI:SA:5732,Europe/Paris,0,OLI, +OLI:SP:CAT002,1,"Bousbecque Cat",50.772953,3.068626,1,0,OLI:SA:5732,Europe/Paris,0,OLI, +OLI:SP:CAU001,1,"Castelnau",50.735674,3.07386,1,0,OLI:SA:981,Europe/Paris,0,OLI, +OLI:SP:CAU002,1,"Castelnau",50.736063,3.073328,1,0,OLI:SA:981,Europe/Paris,0,OLI, +OLI:SP:CAV001,1,"Cavell",50.609513,3.04468,1,0,OLI:SA:894,Europe/Paris,0,OLI, +OLI:SP:CAV002,1,"Cavell",50.609388,3.044566,1,0,OLI:SA:894,Europe/Paris,0,OLI, +OLI:SP:CAW001,1,"Mairie",50.686897,3.052766,1,0,OLI:SA:2030,Europe/Paris,0,OLI, +OLI:SP:CAW002,1,"Mairie",50.686978,3.052767,1,0,OLI:SA:2030,Europe/Paris,0,OLI, +OLI:SP:CBA011,1,"Cite Babylone",50.656899,3.143648,1,0,OLI:SA:1990,Europe/Paris,0,OLI, +OLI:SP:CBA012,1,"Cite Babylone",50.656562,3.143008,1,0,OLI:SA:1990,Europe/Paris,0,OLI, +OLI:SP:CBE001,1,"Colbert",50.725162,3.156748,1,0,OLI:SA:1809,Europe/Paris,0,OLI, +OLI:SP:CBE002,1,"Colbert",50.725062,3.156973,1,0,OLI:SA:1809,Europe/Paris,0,OLI, +OLI:SP:CBF001,1,"Cimetiere Du Blanc Four",50.735774,3.110438,1,0,OLI:SA:1359,Europe/Paris,0,OLI, +OLI:SP:CBF002,1,"Cimetiere Du Blanc Four",50.735707,3.112557,1,0,OLI:SA:1359,Europe/Paris,0,OLI, +OLI:SP:CBG001,1,"Cimetiere Bourg",50.672031,3.082138,1,0,OLI:SA:2627,Europe/Paris,0,OLI, +OLI:SP:CBG002,1,"Cimetiere Bourg",50.671613,3.081567,1,0,OLI:SA:2627,Europe/Paris,0,OLI, +OLI:SP:CBO002,1,"College Neruda",50.70926,3.236723,1,0,OLI:SA:4707,Europe/Paris,0,OLI, +OLI:SP:CBO004,1,"College Neruda",50.709287,3.236752,1,0,OLI:SA:4707,Europe/Paris,0,OLI, +OLI:SP:CCD001,1,"Coeur Poumon",50.607195,3.034343,1,0,OLI:SA:6964,Europe/Paris,0,OLI, +OLI:SP:CCD002,1,"Coeur Poumon",50.607472,3.034459,1,0,OLI:SA:6964,Europe/Paris,0,OLI, +OLI:SP:CCE001,1,"Ctre Commercial",50.632369,2.965246,1,0,OLI:SA:6921,Europe/Paris,0,OLI, +OLI:SP:CCE002,1,"Ctre Commercial",50.632046,2.965143,1,0,OLI:SA:6921,Europe/Paris,0,OLI, +OLI:SP:CCH001,1,"Chateau",50.611333,3.198898,1,0,OLI:SA:245,Europe/Paris,0,OLI, +OLI:SP:CCH002,1,"Chateau",50.611427,3.196954,1,0,OLI:SA:245,Europe/Paris,0,OLI, +OLI:SP:CDA001,1,"Cerisaie",50.677242,3.111438,1,0,OLI:SA:5452,Europe/Paris,0,OLI, +OLI:SP:CDA012,1,"Cerisaie",50.677288,3.111368,1,0,OLI:SA:5452,Europe/Paris,0,OLI, +OLI:SP:CDE001,1,"College Descartes",50.608883,3.004846,1,0,OLI:SA:1058,Europe/Paris,0,OLI, +OLI:SP:CDE002,1,"College Descartes",50.60889,3.005227,1,0,OLI:SA:1058,Europe/Paris,0,OLI, +OLI:SP:CDG098,1,"Charles De Gaulle",50.686621,3.169981,1,0,OLI:SA:1453,Europe/Paris,0,OLI, +OLI:SP:CDG099,1,"Charles De Gaulle",50.686621,3.169981,1,0,OLI:SA:1453,Europe/Paris,0,OLI, +OLI:SP:CDM001,1,"Lhermitte",50.573635,3.031185,1,0,OLI:SA:1283,Europe/Paris,0,OLI, +OLI:SP:CDM002,1,"Lhermitte",50.573921,3.031315,1,0,OLI:SA:1283,Europe/Paris,0,OLI, +OLI:SP:CDO001,1,"Canon D'Or",50.648377,3.043918,1,0,OLI:SA:637,Europe/Paris,0,OLI, +OLI:SP:CDO002,1,"Canon D'Or",50.648975,3.04301,1,0,OLI:SA:637,Europe/Paris,0,OLI, +OLI:SP:CDP001,1,"Commune De Paris",50.547922,3.042529,1,0,OLI:SA:6925,Europe/Paris,0,OLI, +OLI:SP:CDP002,1,"Commune De Paris",50.547146,3.041786,1,0,OLI:SA:6925,Europe/Paris,0,OLI, +OLI:SP:CDT001,1,"Croix Du Temple",50.633762,3.005827,1,0,OLI:SA:1014,Europe/Paris,0,OLI, +OLI:SP:CDT002,1,"Croix Du Temple",50.633031,3.004887,1,0,OLI:SA:1014,Europe/Paris,0,OLI, +OLI:SP:CED001,1,"Chateau D'Eau",50.678057,3.236373,1,0,OLI:SA:7055,Europe/Paris,0,OLI, +OLI:SP:CED002,1,"Chateau D'Eau",50.677932,3.236286,1,0,OLI:SA:7055,Europe/Paris,0,OLI, +OLI:SP:CEH001,1,"Centre Hospitalier",50.545932,3.016693,1,0,OLI:SA:1656,Europe/Paris,0,OLI, +OLI:SP:CEN001,1,"Centre",50.712192,2.932305,1,0,OLI:SA:5808,Europe/Paris,0,OLI, +OLI:SP:CEN002,1,"Centre",50.71229,2.932362,1,0,OLI:SA:5808,Europe/Paris,0,OLI, +OLI:SP:CER001,1,"Le Cerf",50.59588,3.094182,1,0,OLI:SA:4280,Europe/Paris,0,OLI, +OLI:SP:CER002,1,"Le Cerf",50.59588,3.094323,1,0,OLI:SA:4280,Europe/Paris,0,OLI, +OLI:SP:CES001,1,"Contrescarpe",50.644071,3.164067,1,0,OLI:SA:1952,Europe/Paris,0,OLI, +OLI:SP:CFA001,1,"Cite Faucheur",50.724263,2.940022,1,0,OLI:SA:5807,Europe/Paris,0,OLI, +OLI:SP:CFA002,1,"Cite Faucheur",50.724299,2.940065,1,0,OLI:SA:5807,Europe/Paris,0,OLI, +OLI:SP:CGA001,1,"Gambetta",50.760985,3.004168,1,0,OLI:SA:5841,Europe/Paris,0,OLI, +OLI:SP:CGA002,1,"Gambetta",50.760666,3.003358,1,0,OLI:SA:5841,Europe/Paris,0,OLI, +OLI:SP:CGA098,1,"Gambetta",50.626176,3.056339,1,0,OLI:SA:6826,Europe/Paris,0,OLI, +OLI:SP:CGA099,1,"Gambetta",50.626131,3.056423,1,0,OLI:SA:6826,Europe/Paris,0,OLI, +OLI:SP:CGL001,1,"College",50.694067,3.17646,1,0,OLI:SA:1434,Europe/Paris,0,OLI, +OLI:SP:CGL002,1,"College",50.694185,3.176321,1,0,OLI:SA:1434,Europe/Paris,0,OLI, +OLI:SP:CHA001,1,"Chanterelle",50.63902,3.139622,1,0,OLI:SA:7057,Europe/Paris,0,OLI, +OLI:SP:CHA002,1,"Chanterelle",50.638314,3.139258,1,0,OLI:SA:7057,Europe/Paris,0,OLI, +OLI:SP:CHA003,1,"Chanterelle",50.638245,3.140244,1,0,OLI:SA:7057,Europe/Paris,0,OLI, +OLI:SP:CHB001,1,"A. Dumas",50.598771,3.062541,1,0,OLI:SA:5561,Europe/Paris,0,OLI, +OLI:SP:CHB002,1,"A. Dumas",50.598923,3.064094,1,0,OLI:SA:5561,Europe/Paris,0,OLI, +OLI:SP:CHC001,1,"Rue Chobourdin",50.583384,2.852024,1,0,OLI:SA:5722,Europe/Paris,0,OLI, +OLI:SP:CHC002,1,"Rue Chobourdin",50.582935,2.852174,1,0,OLI:SA:5722,Europe/Paris,0,OLI, +OLI:SP:CHD001,1,"Chapelle D'Elocques",50.634375,3.102692,1,0,OLI:SA:484,Europe/Paris,0,OLI, +OLI:SP:CHD002,1,"Chapelle D'Elocques",50.634135,3.103675,1,0,OLI:SA:484,Europe/Paris,0,OLI, +OLI:SP:CHE001,1,"Chemin De Sainghin",50.700138,3.010967,1,0,OLI:SA:1896,Europe/Paris,0,OLI, +OLI:SP:CHE002,1,"Chemin De Sainghin",50.699669,3.011314,1,0,OLI:SA:1896,Europe/Paris,0,OLI, +OLI:SP:CHF001,1,"Chaufour",50.649793,3.070364,1,0,OLI:SA:5573,Europe/Paris,0,OLI, +OLI:SP:CHF002,1,"Chaufour",50.650548,3.071603,1,0,OLI:SA:5573,Europe/Paris,0,OLI, +OLI:SP:CHI001,1,"Le Chien",50.710205,3.028125,1,0,OLI:SA:5509,Europe/Paris,0,OLI, +OLI:SP:CHI002,1,"Le Chien",50.709817,3.028642,1,0,OLI:SA:5509,Europe/Paris,0,OLI, +OLI:SP:CHM001,1,"Chateau Du Molinel",50.657439,2.975961,1,0,OLI:SA:6781,Europe/Paris,0,OLI, +OLI:SP:CHM002,1,"Chateau Du Molinel",50.654984,2.975407,1,0,OLI:SA:6781,Europe/Paris,0,OLI, +OLI:SP:CHN001,1,"Chardonnet",50.717806,3.184828,1,0,OLI:SA:2139,Europe/Paris,0,OLI, +OLI:SP:CHN002,1,"Chardonnet",50.717771,3.184813,1,0,OLI:SA:2139,Europe/Paris,0,OLI, +OLI:SP:CHO001,1,"Chateau D'Or",50.708725,3.235117,1,0,OLI:SA:2140,Europe/Paris,0,OLI, +OLI:SP:CHO002,1,"Chateau D'Or",50.708411,3.23377,1,0,OLI:SA:2140,Europe/Paris,0,OLI, +OLI:SP:CHP001,1,"Poste",50.670413,2.903352,1,0,OLI:SA:595,Europe/Paris,0,OLI, +OLI:SP:CHP002,1,"Poste",50.670448,2.903649,1,0,OLI:SA:595,Europe/Paris,0,OLI, +OLI:SP:CHQ001,1,"Rue Du Port",50.631225,3.048824,1,0,OLI:SA:950,Europe/Paris,0,OLI, +OLI:SP:CHQ002,1,"Rue Du Port",50.631862,3.050328,1,0,OLI:SA:950,Europe/Paris,0,OLI, +OLI:SP:CHR001,1,"CHU-Centre O. Lambret",50.613115,3.036117,1,0,OLI:SA:6724,Europe/Paris,0,OLI, +OLI:SP:CHR063,1,"CHU-Centre O. Lambret",50.613039,3.036708,1,0,OLI:SA:6724,Europe/Paris,0,OLI, +OLI:SP:CHR064,1,"CHU-Centre O. Lambret",50.613024,3.036257,1,0,OLI:SA:6724,Europe/Paris,0,OLI, +OLI:SP:CHR098,1,"CHU-Centre O. Lambret",50.613222,3.036062,1,0,OLI:SA:6724,Europe/Paris,0,OLI, +OLI:SP:CHR099,1,"CHU-Centre O. Lambret",50.613222,3.036062,1,0,OLI:SA:6724,Europe/Paris,0,OLI, +OLI:SP:CHT001,1,"Chariot D'Or",50.692855,3.052385,1,0,OLI:SA:5859,Europe/Paris,0,OLI, +OLI:SP:CHT002,1,"Chariot D'Or",50.692504,3.052705,1,0,OLI:SA:5859,Europe/Paris,0,OLI, +OLI:SP:CHU001,1,"W. Churchill",50.648715,3.061559,1,0,OLI:SA:6971,Europe/Paris,0,OLI, +OLI:SP:CHU002,1,"W. Churchill",50.648073,3.060957,1,0,OLI:SA:6971,Europe/Paris,0,OLI, +OLI:SP:CHW003,1,"Chemin Wervicq",50.676356,3.080452,1,0,OLI:SA:7198,Europe/Paris,0,OLI, +OLI:SP:CHW004,1,"Chemin De Wervicq",50.676854,3.081081,1,0,OLI:SA:1170,Europe/Paris,0,OLI, +OLI:SP:CIC001,1,"Cimetiere Centre",50.697569,3.224734,1,0,OLI:SA:5695,Europe/Paris,0,OLI, +OLI:SP:CIC002,1,"Cimetiere Centre",50.697915,3.224119,1,0,OLI:SA:5695,Europe/Paris,0,OLI, +OLI:SP:CIE098,1,"Caulier",50.636504,3.087519,1,0,OLI:SA:774,Europe/Paris,0,OLI, +OLI:SP:CIE099,1,"Caulier",50.636514,3.087406,1,0,OLI:SA:774,Europe/Paris,0,OLI, +OLI:SP:CIL004,1,"Champ De Mars",50.636928,3.052347,1,0,OLI:SA:7661,Europe/Paris,0,OLI, +OLI:SP:CIL005,1,"Champ De Mars",50.636519,3.053159,1,0,OLI:SA:7661,Europe/Paris,0,OLI, +OLI:SP:CIN001,1,"Cimetiere Intercommunal",50.696301,3.226547,1,0,OLI:SA:2138,Europe/Paris,0,OLI, +OLI:SP:CIN002,1,"Cimetiere Intercommunal",50.696725,3.226174,1,0,OLI:SA:2138,Europe/Paris,0,OLI, +OLI:SP:CIO001,1,"College Triolo",50.616115,3.140157,1,0,OLI:SA:4334,Europe/Paris,0,OLI, +OLI:SP:CIO002,1,"College Triolo",50.616085,3.139324,1,0,OLI:SA:4334,Europe/Paris,0,OLI, +OLI:SP:CIP001,1,"Cite A. Prouvost",50.709374,3.194149,1,0,OLI:SA:2130,Europe/Paris,0,OLI, +OLI:SP:CIP002,1,"Cite A. Prouvost",50.709854,3.194722,1,0,OLI:SA:2130,Europe/Paris,0,OLI, +OLI:SP:CIQ001,1,"5 Chemins",50.776784,2.996345,1,0,OLI:SA:2455,Europe/Paris,0,OLI, +OLI:SP:CIS001,1,"Cimetiere",50.713967,3.188817,1,0,OLI:SA:4971,Europe/Paris,0,OLI, +OLI:SP:CIS002,1,"Cimetiere",50.713888,3.188519,1,0,OLI:SA:4971,Europe/Paris,0,OLI, +OLI:SP:CIT001,1,"Cimetiere",50.583519,2.895239,1,0,OLI:SA:5707,Europe/Paris,0,OLI, +OLI:SP:CIT002,1,"Cimetiere",50.583462,2.896,1,0,OLI:SA:5707,Europe/Paris,0,OLI, +OLI:SP:CJR001,1,"College Jean Rostand",50.686851,2.867803,1,0,OLI:SA:130,Europe/Paris,0,OLI, +OLI:SP:CJR003,1,"College Jean Rostand",50.687052,2.866845,1,0,OLI:SA:130,Europe/Paris,0,OLI, +OLI:SP:CJR004,1,"College Jean Rostand",50.687486,2.866101,1,0,OLI:SA:130,Europe/Paris,0,OLI, +OLI:SP:CKL001,1,"Kleber",50.684285,3.154496,1,0,OLI:SA:307,Europe/Paris,0,OLI, +OLI:SP:CLB001,1,"Le Colombier",50.694577,3.055559,1,0,OLI:SA:6840,Europe/Paris,0,OLI, +OLI:SP:CLB002,1,"Le Colombier",50.694428,3.054992,1,0,OLI:SA:6840,Europe/Paris,0,OLI, +OLI:SP:CLB003,1,"Le Colombier",50.69831,3.053678,1,0,OLI:SA:6347,Europe/Paris,0,OLI, +OLI:SP:CLB004,1,"Le Colombier",50.69761,3.053752,1,0,OLI:SA:6347,Europe/Paris,0,OLI, +OLI:SP:CLC001,1,"Chapelle",50.697981,3.087963,1,0,OLI:SA:5783,Europe/Paris,0,OLI, +OLI:SP:CLC002,1,"Chapelle",50.69861,3.087831,1,0,OLI:SA:5783,Europe/Paris,0,OLI, +OLI:SP:CLD001,1,"Villa Cavrois",50.6691,3.154361,1,0,OLI:SA:4630,Europe/Paris,0,OLI, +OLI:SP:CLD012,1,"Villa Cavrois",50.668648,3.153408,1,0,OLI:SA:4630,Europe/Paris,0,OLI, +OLI:SP:CLE001,1,"Leclerc",50.685035,3.047473,1,0,OLI:SA:5861,Europe/Paris,0,OLI, +OLI:SP:CLE002,1,"Leclerc",50.684902,3.04716,1,0,OLI:SA:5861,Europe/Paris,0,OLI, +OLI:SP:CLG001,1,"College Matisse",50.73776,3.086597,1,0,OLI:SA:977,Europe/Paris,0,OLI, +OLI:SP:CLL011,1,"Courtilles",50.644125,3.154531,1,0,OLI:SA:6924,Europe/Paris,0,OLI, +OLI:SP:CLL012,1,"Courtilles",50.644205,3.154716,1,0,OLI:SA:6924,Europe/Paris,0,OLI, +OLI:SP:CLM001,1,"College Charlemagne",50.589008,3.11733,1,0,OLI:SA:714,Europe/Paris,0,OLI, +OLI:SP:CLN001,1,"Clinique De Lambersart",50.643464,3.029347,1,0,OLI:SA:653,Europe/Paris,0,OLI, +OLI:SP:CLN002,1,"Clinique De Lambersart",50.643642,3.029462,1,0,OLI:SA:653,Europe/Paris,0,OLI, +OLI:SP:CLO001,1,"Colisee",50.692596,3.163105,1,0,OLI:SA:4417,Europe/Paris,0,OLI, +OLI:SP:CLO003,1,"Colisee",50.6921,3.163492,1,0,OLI:SA:4417,Europe/Paris,0,OLI, +OLI:SP:CLO006,1,"Colisee",50.692402,3.16265,1,0,OLI:SA:4417,Europe/Paris,0,OLI, +OLI:SP:CMA001,1,"Marequaix",50.609801,3.215127,1,0,OLI:SA:7642,Europe/Paris,0,OLI, +OLI:SP:CMA002,1,"Marequaix",50.609778,3.214562,1,0,OLI:SA:7642,Europe/Paris,0,OLI, +OLI:SP:CMA090,1,"Marequaix",50.610086,3.211635,1,0,OLI:SA:7642,Europe/Paris,0,OLI, +OLI:SP:CMA091,1,"Marequaix",50.609953,3.211379,1,0,OLI:SA:7642,Europe/Paris,0,OLI, +OLI:SP:CMB001,1,"Centre Medical Barbieux",50.679526,3.169948,1,0,OLI:SA:1408,Europe/Paris,0,OLI, +OLI:SP:CMB002,1,"Centre Medical Barbieux",50.680074,3.169914,1,0,OLI:SA:1408,Europe/Paris,0,OLI, +OLI:SP:CMC001,1,"Rue De Cambrai",50.624144,3.073838,1,0,OLI:SA:901,Europe/Paris,0,OLI, +OLI:SP:CMC002,1,"Rue De Cambrai",50.624114,3.074345,1,0,OLI:SA:901,Europe/Paris,0,OLI, +OLI:SP:CMF001,1,"Chemin Du Fort",50.695052,3.020713,1,0,OLI:SA:2021,Europe/Paris,0,OLI, +OLI:SP:CMF002,1,"Chemin Du Fort",50.694549,3.022429,1,0,OLI:SA:2021,Europe/Paris,0,OLI, +OLI:SP:CMO001,1,"College Moliere",50.657892,3.145443,1,0,OLI:SA:1945,Europe/Paris,0,OLI, +OLI:SP:CMO002,1,"College Moliere",50.657903,3.145132,1,0,OLI:SA:1945,Europe/Paris,0,OLI, +OLI:SP:CMS001,1,"Centre Medico Social",50.680892,3.153453,1,0,OLI:SA:281,Europe/Paris,0,OLI, +OLI:SP:CMS002,1,"Centre Medico Social",50.680847,3.153409,1,0,OLI:SA:281,Europe/Paris,0,OLI, +OLI:SP:CMY001,1,"Cite Mouray",50.646605,2.997831,1,0,OLI:SA:3999,Europe/Paris,0,OLI, +OLI:SP:CMY002,1,"Cite Mouray",50.646643,2.999143,1,0,OLI:SA:3999,Europe/Paris,0,OLI, +OLI:SP:CND001,1,"Coll Notre Dame",50.53076,2.802319,1,0,OLI:SA:5985,Europe/Paris,0,OLI, +OLI:SP:CND002,1,"Coll Notre Dame",50.53221,2.800911,1,0,OLI:SA:5985,Europe/Paris,0,OLI, +OLI:SP:CND003,1,"Coll Notre Dame",50.533264,2.802131,1,0,OLI:SA:5985,Europe/Paris,0,OLI, +OLI:SP:CNE001,1,"College Jules Verne",50.74821,3.167942,1,0,OLI:SA:1260,Europe/Paris,0,OLI, +OLI:SP:CNE002,1,"College Jules Verne",50.748455,3.168907,1,0,OLI:SA:1260,Europe/Paris,0,OLI, +OLI:SP:CNL001,1,"Clinique De La Mitterie",50.651148,2.997016,1,0,OLI:SA:1019,Europe/Paris,0,OLI, +OLI:SP:CNL002,1,"Clinique De La Mitterie",50.651085,2.997029,1,0,OLI:SA:1019,Europe/Paris,0,OLI, +OLI:SP:COA001,1,"Cocteau",50.645069,3.165085,1,0,OLI:SA:1930,Europe/Paris,0,OLI, +OLI:SP:COA002,1,"Cocteau",50.645079,3.164986,1,0,OLI:SA:1930,Europe/Paris,0,OLI, +OLI:SP:COB098,1,"Colbert",50.725349,3.156935,1,0,OLI:SA:1809,Europe/Paris,0,OLI, +OLI:SP:COB099,1,"Colbert",50.725349,3.156935,1,0,OLI:SA:1809,Europe/Paris,0,OLI, +OLI:SP:COC011,1,"Comices",50.641176,3.152931,1,0,OLI:SA:2018,Europe/Paris,0,OLI, +OLI:SP:COC012,1,"Comices",50.64155,3.15329,1,0,OLI:SA:2018,Europe/Paris,0,OLI, +OLI:SP:COD001,1,"College Jules Ferry",50.613158,2.99213,1,0,OLI:SA:481,Europe/Paris,0,OLI, +OLI:SP:COE001,1,"Sacre Coeur",50.714368,3.158747,1,0,OLI:SA:4463,Europe/Paris,0,OLI, +OLI:SP:COE002,1,"Sacre Coeur",50.715031,3.158857,1,0,OLI:SA:4463,Europe/Paris,0,OLI, +OLI:SP:COG001,1,"Comines Gare",50.761089,3.009826,1,0,OLI:SA:5836,Europe/Paris,0,OLI, +OLI:SP:COG002,1,"Comines Gare",50.761236,3.009177,1,0,OLI:SA:5836,Europe/Paris,0,OLI, +OLI:SP:COG003,1,"Vieil Dieu",50.761619,3.011261,1,0,OLI:SA:256,Europe/Paris,0,OLI, +OLI:SP:COG004,1,"Vieil Dieu",50.761726,3.011432,1,0,OLI:SA:256,Europe/Paris,0,OLI, +OLI:SP:COI001,1,"Bon Coin",50.707113,2.928995,1,0,OLI:SA:384,Europe/Paris,0,OLI, +OLI:SP:COI002,1,"Bon Coin",50.706961,2.928852,1,0,OLI:SA:384,Europe/Paris,0,OLI, +OLI:SP:CON001,1,"Conquerants",50.660182,3.015071,1,0,OLI:SA:636,Europe/Paris,0,OLI, +OLI:SP:COO001,1,"Louis Constant",50.655394,3.13774,1,0,OLI:SA:1957,Europe/Paris,0,OLI, +OLI:SP:COP001,1,"Colpin",50.642366,3.053539,1,0,OLI:SA:762,Europe/Paris,0,OLI, +OLI:SP:COP002,1,"Colpin",50.641739,3.053375,1,0,OLI:SA:762,Europe/Paris,0,OLI, +OLI:SP:COQ001,1,"Coq Anglais",50.755844,3.07871,1,0,OLI:SA:233,Europe/Paris,0,OLI, +OLI:SP:COQ002,1,"Coq Anglais",50.755825,3.078753,1,0,OLI:SA:233,Europe/Paris,0,OLI, +OLI:SP:COR001,1,"Cormontaigne",50.626046,3.039936,1,0,OLI:SA:809,Europe/Paris,0,OLI, +OLI:SP:COR002,1,"Cormontaigne",50.626714,3.040834,1,0,OLI:SA:809,Europe/Paris,0,OLI, +OLI:SP:COR098,1,"Cormontaigne",50.626095,3.040825,1,0,OLI:SA:809,Europe/Paris,0,OLI, +OLI:SP:COR099,1,"Cormontaigne",50.626095,3.040825,1,0,OLI:SA:809,Europe/Paris,0,OLI, +OLI:SP:COS001,1,"Complexe Sportif",50.768455,3.07846,1,0,OLI:SA:230,Europe/Paris,0,OLI, +OLI:SP:COS002,1,"Complexe Sportif",50.768275,3.078499,1,0,OLI:SA:230,Europe/Paris,0,OLI, +OLI:SP:COT001,1,"Coty",50.670644,3.199046,1,0,OLI:SA:4720,Europe/Paris,0,OLI, +OLI:SP:COT002,1,"Coty",50.67076,3.19909,1,0,OLI:SA:4720,Europe/Paris,0,OLI, +OLI:SP:COU011,1,"Cousinerie",50.644451,3.15819,1,0,OLI:SA:7061,Europe/Paris,0,OLI, +OLI:SP:COU012,1,"Cousinerie",50.644539,3.15853,1,0,OLI:SA:7061,Europe/Paris,0,OLI, +OLI:SP:CPA001,1,"Rue Des Champs",50.726276,3.14135,1,0,OLI:SA:5763,Europe/Paris,0,OLI, +OLI:SP:CPA002,1,"Rue Des Champs",50.725867,3.142234,1,0,OLI:SA:5763,Europe/Paris,0,OLI, +OLI:SP:CPH001,1,"Chapelle",50.726509,3.231636,1,0,OLI:SA:2489,Europe/Paris,0,OLI, +OLI:SP:CPH002,1,"Chapelle",50.72581,3.231539,1,0,OLI:SA:2489,Europe/Paris,0,OLI, +OLI:SP:CPL011,1,"Centre",50.674302,3.146244,1,0,OLI:SA:302,Europe/Paris,0,OLI, +OLI:SP:CPL012,1,"Centre",50.674629,3.1456,1,0,OLI:SA:302,Europe/Paris,0,OLI, +OLI:SP:CPL098,1,"Centre",50.674309,3.14647,1,0,OLI:SA:302,Europe/Paris,0,OLI, +OLI:SP:CPL099,1,"Centre",50.674309,3.14647,1,0,OLI:SA:302,Europe/Paris,0,OLI, +OLI:SP:CPS001,1,"Creps",50.581116,3.039235,1,0,OLI:SA:2097,Europe/Paris,0,OLI, +OLI:SP:CPS002,1,"Creps",50.58108,3.039333,1,0,OLI:SA:2097,Europe/Paris,0,OLI, +OLI:SP:CPT001,1,"Pont De Croix",50.671888,3.144907,1,0,OLI:SA:1994,Europe/Paris,0,OLI, +OLI:SP:CPT002,1,"Pont De Croix",50.671477,3.144688,1,0,OLI:SA:1994,Europe/Paris,0,OLI, +OLI:SP:CQF002,1,"Coq Francais",50.68473,3.182939,1,0,OLI:SA:1452,Europe/Paris,0,OLI, +OLI:SP:CQU001,1,"Les Acquets",50.679145,2.857585,1,0,OLI:SA:6319,Europe/Paris,0,OLI, +OLI:SP:CQU002,1,"Les Acquets",50.679057,2.85716,1,0,OLI:SA:6319,Europe/Paris,0,OLI, +OLI:SP:CRA001,1,"Charles Perrault",50.687194,3.215569,1,0,OLI:SA:4644,Europe/Paris,0,OLI, +OLI:SP:CRA002,1,"Charles Perrault",50.686992,3.214902,1,0,OLI:SA:4644,Europe/Paris,0,OLI, +OLI:SP:CRB001,1,"Institution Croix Blanche",50.718025,3.108934,1,0,OLI:SA:6834,Europe/Paris,0,OLI, +OLI:SP:CRB002,1,"Institution Croix Blanche",50.718044,3.108779,1,0,OLI:SA:6834,Europe/Paris,0,OLI, +OLI:SP:CRB003,1,"Institution Croix Blanche",50.7202,3.109603,1,0,OLI:SA:6834,Europe/Paris,0,OLI, +OLI:SP:CRB004,1,"Institution Croix Blanche",50.720026,3.108725,1,0,OLI:SA:6834,Europe/Paris,0,OLI, +OLI:SP:CRB005,1,"Institution Croix Blanche",50.720254,3.108135,1,0,OLI:SA:6834,Europe/Paris,0,OLI, +OLI:SP:CRE001,1,"Cretinier",50.704698,3.199648,1,0,OLI:SA:6789,Europe/Paris,0,OLI, +OLI:SP:CRE002,1,"Cretinier",50.704868,3.199792,1,0,OLI:SA:6789,Europe/Paris,0,OLI, +OLI:SP:CRE003,1,"Cretinier",50.705705,3.198055,1,0,OLI:SA:6789,Europe/Paris,0,OLI, +OLI:SP:CRG001,1,"Croix Bougard",50.579071,3.115512,1,0,OLI:SA:726,Europe/Paris,0,OLI, +OLI:SP:CRG002,1,"Croix Bougard",50.579124,3.115598,1,0,OLI:SA:726,Europe/Paris,0,OLI, +OLI:SP:CRI001,1,"Le Christ",50.767525,3.033106,1,0,OLI:SA:5740,Europe/Paris,0,OLI, +OLI:SP:CRI002,1,"Le Christ",50.767721,3.033434,1,0,OLI:SA:5740,Europe/Paris,0,OLI, +OLI:SP:CRL001,1,"Croise Laroche",50.664501,3.101911,1,0,OLI:SA:1137,Europe/Paris,0,OLI, +OLI:SP:CRL002,1,"Croise Laroche",50.665723,3.103073,1,0,OLI:SA:1137,Europe/Paris,0,OLI, +OLI:SP:CRL021,1,"Croise Laroche",50.664936,3.102708,1,0,OLI:SA:1137,Europe/Paris,0,OLI, +OLI:SP:CRL032,1,"Croise Laroche",50.664663,3.10197,1,0,OLI:SA:1137,Europe/Paris,0,OLI, +OLI:SP:CRM001,1,"Creche",50.685896,3.159083,1,0,OLI:SA:6978,Europe/Paris,0,OLI, +OLI:SP:CRM002,1,"Creche",50.685788,3.159138,1,0,OLI:SA:6978,Europe/Paris,0,OLI, +OLI:SP:CRO001,1,"Croix Rouge",50.732133,3.180492,1,0,OLI:SA:1873,Europe/Paris,0,OLI, +OLI:SP:CRO002,1,"Croix Rouge",50.732025,3.180547,1,0,OLI:SA:1873,Europe/Paris,0,OLI, +OLI:SP:CRT001,1,"Courteline",50.645051,3.161021,1,0,OLI:SA:1939,Europe/Paris,0,OLI, +OLI:SP:CRT002,1,"Courteline",50.64526,3.161928,1,0,OLI:SA:1939,Europe/Paris,0,OLI, +OLI:SP:CRT098,1,"8 Mai 1945",50.64113,3.15585,1,0,OLI:SA:6385,Europe/Paris,0,OLI, +OLI:SP:CRT099,1,"8 Mai 1945",50.640763,3.155633,1,0,OLI:SA:6385,Europe/Paris,0,OLI, +OLI:SP:CSC002,1,"Coll Schweitzer",50.541028,2.812916,1,0,OLI:SA:6307,Europe/Paris,0,OLI, +OLI:SP:CSC098,1,"Cte Scientifique",50.611731,3.142497,1,0,OLI:SA:6415,Europe/Paris,0,OLI, +OLI:SP:CSC099,1,"Cte Scientifique",50.611731,3.142497,1,0,OLI:SA:6415,Europe/Paris,0,OLI, +OLI:SP:CSE001,1,"Descat",50.694855,3.151209,1,0,OLI:SA:1754,Europe/Paris,0,OLI, +OLI:SP:CSE002,1,"Descat",50.694815,3.151802,1,0,OLI:SA:1754,Europe/Paris,0,OLI, +OLI:SP:CSJ002,1,"College St Joseph (F)",50.761306,3.004413,1,0,OLI:SA:255,Europe/Paris,0,OLI, +OLI:SP:CSL001,1,"Cite Saint Leger",50.664642,2.975926,1,0,OLI:SA:5818,Europe/Paris,0,OLI, +OLI:SP:CSL002,1,"Cite Saint Leger",50.664246,2.976161,1,0,OLI:SA:5818,Europe/Paris,0,OLI, +OLI:SP:CSM001,1,"Coll Ste Marie",50.739886,3.07754,1,0,OLI:SA:5505,Europe/Paris,0,OLI, +OLI:SP:CSN002,1,"La Chesnaie",50.628079,3.130956,1,0,OLI:SA:4340,Europe/Paris,0,OLI, +OLI:SP:CSN003,1,"La Chesnaie",50.628482,3.130977,1,0,OLI:SA:4340,Europe/Paris,0,OLI, +OLI:SP:CSN004,1,"La Chesnaie",50.627596,3.132133,1,0,OLI:SA:4340,Europe/Paris,0,OLI, +OLI:SP:CSN005,1,"La Chesnaie",50.627155,3.130928,1,0,OLI:SA:4340,Europe/Paris,0,OLI, +OLI:SP:CTA001,1,"Place Catinat",50.634131,3.041108,1,0,OLI:SA:921,Europe/Paris,0,OLI, +OLI:SP:CTA002,1,"Place Catinat",50.633752,3.041384,1,0,OLI:SA:921,Europe/Paris,0,OLI, +OLI:SP:CTD003,1,"Cote D'Or",50.571984,3.031204,1,0,OLI:SA:1278,Europe/Paris,0,OLI, +OLI:SP:CTD004,1,"Cote D'Or",50.571966,3.031288,1,0,OLI:SA:1278,Europe/Paris,0,OLI, +OLI:SP:CTL098,1,"Carliers",50.710252,3.159908,1,0,OLI:SA:1816,Europe/Paris,0,OLI, +OLI:SP:CTL099,1,"Carliers",50.710252,3.159908,1,0,OLI:SA:1816,Europe/Paris,0,OLI, +OLI:SP:CTR021,1,"Chateau Rouge",50.679627,3.114453,1,0,OLI:SA:1126,Europe/Paris,0,OLI, +OLI:SP:CTR032,1,"Chateau Rouge",50.679673,3.114369,1,0,OLI:SA:1126,Europe/Paris,0,OLI, +OLI:SP:CUE001,1,"Curie",50.773944,3.054001,1,0,OLI:SA:5744,Europe/Paris,0,OLI, +OLI:SP:CUE002,1,"Curie",50.774053,3.053847,1,0,OLI:SA:5744,Europe/Paris,0,OLI, +OLI:SP:CUI001,1,"I.U.T. Crest",50.64904,3.16144,1,0,OLI:SA:7063,Europe/Paris,0,OLI, +OLI:SP:CUI002,1,"I.U.T. Crest",50.649637,3.162042,1,0,OLI:SA:7063,Europe/Paris,0,OLI, +OLI:SP:CUI033,1,"Iut Crest",50.650106,3.161613,1,0,OLI:SA:4593,Europe/Paris,0,OLI, +OLI:SP:CUI034,1,"Iut Crest",50.650051,3.161795,1,0,OLI:SA:4593,Europe/Paris,0,OLI, +OLI:SP:CUR001,1,"Curie",50.706363,3.239115,1,0,OLI:SA:2188,Europe/Paris,0,OLI, +OLI:SP:CUR002,1,"Curie",50.706706,3.238824,1,0,OLI:SA:2188,Europe/Paris,0,OLI, +OLI:SP:CVB001,1,"Cheval Blanc",50.682629,3.090273,1,0,OLI:SA:1160,Europe/Paris,0,OLI, +OLI:SP:CVB002,1,"Cheval Blanc",50.682476,3.09037,1,0,OLI:SA:1160,Europe/Paris,0,OLI, +OLI:SP:CWT001,1,"Cimetiere",50.584687,3.042244,1,0,OLI:SA:7634,Europe/Paris,0,OLI, +OLI:SP:CWT002,1,"Cimetiere",50.585121,3.043194,1,0,OLI:SA:7634,Europe/Paris,0,OLI, +OLI:SP:CXM003,1,"Mairie De Croix",50.680382,3.157397,1,0,OLI:SA:277,Europe/Paris,0,OLI, +OLI:SP:CXM004,1,"Mairie De Croix",50.680114,3.157195,1,0,OLI:SA:277,Europe/Paris,0,OLI, +OLI:SP:CXM098,1,"Mairie De Croix",50.679752,3.156314,1,0,OLI:SA:277,Europe/Paris,0,OLI, +OLI:SP:CXM099,1,"Mairie De Croix",50.679752,3.156314,1,0,OLI:SA:277,Europe/Paris,0,OLI, +OLI:SP:CYG001,1,"Enclos Du Cygne",50.742893,3.093515,1,0,OLI:SA:986,Europe/Paris,0,OLI, +OLI:SP:CYG002,1,"Enclos Du Cygne",50.743183,3.092898,1,0,OLI:SA:986,Europe/Paris,0,OLI, +OLI:SP:DAC001,1,"Republique",50.581517,3.04289,1,0,OLI:SA:7664,Europe/Paris,0,OLI, +OLI:SP:DAE001,1,"Lardé",50.55336,2.914491,1,0,OLI:SA:1590,Europe/Paris,0,OLI, +OLI:SP:DAI001,1,"Faidherbe",50.703769,3.143163,1,0,OLI:SA:1236,Europe/Paris,0,OLI, +OLI:SP:DAI012,1,"Faidherbe",50.703371,3.142323,1,0,OLI:SA:1236,Europe/Paris,0,OLI, +OLI:SP:DAN001,1,"L. Danel",50.642307,3.057431,1,0,OLI:SA:842,Europe/Paris,0,OLI, +OLI:SP:DAR001,1,"Le Damier",50.70664,3.102147,1,0,OLI:SA:5784,Europe/Paris,0,OLI, +OLI:SP:DAR002,1,"Le Damier",50.706543,3.101906,1,0,OLI:SA:5784,Europe/Paris,0,OLI, +OLI:SP:DAU001,1,"College Daudet",50.676074,3.241292,1,0,OLI:SA:703,Europe/Paris,0,OLI, +OLI:SP:DCA001,1,"Calmette",50.551654,2.916752,1,0,OLI:SA:313,Europe/Paris,0,OLI, +OLI:SP:DCA002,1,"Calmette",50.551636,2.916822,1,0,OLI:SA:313,Europe/Paris,0,OLI, +OLI:SP:DCB001,1,"Dom Cx Blanche",50.722771,3.102974,1,0,OLI:SA:5835,Europe/Paris,0,OLI, +OLI:SP:DCB002,1,"Dom Cx Blanche",50.723051,3.102526,1,0,OLI:SA:5835,Europe/Paris,0,OLI, +OLI:SP:DCQ001,1,"Ducroquet",50.679893,3.090387,1,0,OLI:SA:6419,Europe/Paris,0,OLI, +OLI:SP:DCQ002,1,"Ducroquet",50.681069,3.090123,1,0,OLI:SA:6419,Europe/Paris,0,OLI, +OLI:SP:DDE001,1,"Rue De Denain",50.684058,3.177605,1,0,OLI:SA:1468,Europe/Paris,0,OLI, +OLI:SP:DDG001,1,"Le Golf",50.699944,3.071793,1,0,OLI:SA:202,Europe/Paris,0,OLI, +OLI:SP:DDG002,1,"Le Golf",50.699857,3.07141,1,0,OLI:SA:202,Europe/Paris,0,OLI, +OLI:SP:DDZ001,1,"Rue Des Duriez",50.695313,3.138719,1,0,OLI:SA:5853,Europe/Paris,0,OLI, +OLI:SP:DDZ002,1,"Rue Des Duriez",50.695197,3.138576,1,0,OLI:SA:5853,Europe/Paris,0,OLI, +OLI:SP:DEF001,1,"Defaux",50.617487,3.109258,1,0,OLI:SA:7065,Europe/Paris,0,OLI, +OLI:SP:DEF002,1,"Defaux",50.616286,3.109169,1,0,OLI:SA:7065,Europe/Paris,0,OLI, +OLI:SP:DEH001,1,"Campus",50.643629,3.138525,1,0,OLI:SA:7066,Europe/Paris,0,OLI, +OLI:SP:DEL001,1,"Delivrance",50.641111,2.990155,1,0,OLI:SA:5951,Europe/Paris,0,OLI, +OLI:SP:DEL002,1,"Delivrance",50.641156,2.990254,1,0,OLI:SA:5951,Europe/Paris,0,OLI, +OLI:SP:DEN002,1,"Adenauer",50.68442,3.129621,1,0,OLI:SA:4653,Europe/Paris,0,OLI, +OLI:SP:DER001,1,"Lionderie",50.65906,3.194415,1,0,OLI:SA:516,Europe/Paris,0,OLI, +OLI:SP:DER005,1,"Lionderie",50.658793,3.194044,1,0,OLI:SA:516,Europe/Paris,0,OLI, +OLI:SP:DES001,1,"Destoop",50.600737,3.078864,1,0,OLI:SA:1341,Europe/Paris,0,OLI, +OLI:SP:DES002,1,"Destoop",50.600281,3.081634,1,0,OLI:SA:1341,Europe/Paris,0,OLI, +OLI:SP:DES003,1,"Destoop",50.599327,3.080647,1,0,OLI:SA:1341,Europe/Paris,0,OLI, +OLI:SP:DEV001,1,"Corteville",50.742207,3.117309,1,0,OLI:SA:5513,Europe/Paris,0,OLI, +OLI:SP:DEV002,1,"Corteville",50.741634,3.117088,1,0,OLI:SA:5513,Europe/Paris,0,OLI, +OLI:SP:DEY001,1,"Delory",50.670087,3.186135,1,0,OLI:SA:5625,Europe/Paris,0,OLI, +OLI:SP:DEY002,1,"Delory",50.670167,3.18625,1,0,OLI:SA:5625,Europe/Paris,0,OLI, +OLI:SP:DFI001,1,"Fives",50.633188,3.089923,1,0,OLI:SA:778,Europe/Paris,0,OLI, +OLI:SP:DFI002,1,"Fives",50.632866,3.089749,1,0,OLI:SA:778,Europe/Paris,0,OLI, +OLI:SP:DFI098,1,"Fives",50.633103,3.090754,1,0,OLI:SA:778,Europe/Paris,0,OLI, +OLI:SP:DFI099,1,"Fives",50.633023,3.090556,1,0,OLI:SA:778,Europe/Paris,0,OLI, +OLI:SP:DHC001,1,"Edhec",50.676187,3.169003,1,0,OLI:SA:4601,Europe/Paris,0,OLI, +OLI:SP:DHC002,1,"Edhec",50.676303,3.169033,1,0,OLI:SA:4601,Europe/Paris,0,OLI, +OLI:SP:DHE001,1,"Faidherbe",50.704041,3.142715,1,0,OLI:SA:1236,Europe/Paris,0,OLI, +OLI:SP:DHE002,1,"Faidherbe",50.703751,3.143177,1,0,OLI:SA:1236,Europe/Paris,0,OLI, +OLI:SP:DIE001,1,"Dieu De Marcq",50.644551,3.08297,1,0,OLI:SA:6813,Europe/Paris,0,OLI, +OLI:SP:DIE002,1,"Dieu De Marcq",50.645306,3.085718,1,0,OLI:SA:6813,Europe/Paris,0,OLI, +OLI:SP:DLE001,1,"De Gaulle",50.603238,3.091037,1,0,OLI:SA:2585,Europe/Paris,0,OLI, +OLI:SP:DLE002,1,"De Gaulle",50.602785,3.09034,1,0,OLI:SA:2585,Europe/Paris,0,OLI, +OLI:SP:DMA001,1,"Deulemont Mairie",50.734848,2.945125,1,0,OLI:SA:5800,Europe/Paris,0,OLI, +OLI:SP:DMA002,1,"Deulemont Mairie",50.735073,2.945029,1,0,OLI:SA:5800,Europe/Paris,0,OLI, +OLI:SP:DME001,1,"Desmulliez",50.670693,3.213769,1,0,OLI:SA:1092,Europe/Paris,0,OLI, +OLI:SP:DME002,1,"Desmulliez",50.670729,3.213741,1,0,OLI:SA:1092,Europe/Paris,0,OLI, +OLI:SP:DML001,1,"Desmoulins",50.685825,3.138369,1,0,OLI:SA:4146,Europe/Paris,0,OLI, +OLI:SP:DML002,1,"Desmoulins",50.68549,3.138872,1,0,OLI:SA:4146,Europe/Paris,0,OLI, +OLI:SP:DMO001,1,"Deux Moulins",50.679657,3.151682,1,0,OLI:SA:287,Europe/Paris,0,OLI, +OLI:SP:DMO002,1,"Deux Moulins",50.679541,3.151609,1,0,OLI:SA:287,Europe/Paris,0,OLI, +OLI:SP:DMR001,1,"Doumer",50.665529,3.07744,1,0,OLI:SA:2628,Europe/Paris,0,OLI, +OLI:SP:DMR002,1,"Doumer",50.665378,3.077241,1,0,OLI:SA:2628,Europe/Paris,0,OLI, +OLI:SP:DMY001,1,"College Demailly",50.543618,3.014916,1,0,OLI:SA:6345,Europe/Paris,0,OLI, +OLI:SP:DMY002,1,"College Demailly",50.543797,3.014974,1,0,OLI:SA:6345,Europe/Paris,0,OLI, +OLI:SP:DNL001,1,"Danielle Lesaffre",50.682153,3.182105,1,0,OLI:SA:5427,Europe/Paris,0,OLI, +OLI:SP:DNL002,1,"Danielle Lesaffre",50.68217,3.18219,1,0,OLI:SA:5427,Europe/Paris,0,OLI, +OLI:SP:DNS001,1,"Ingenieur Bertin",50.659682,3.013075,1,0,OLI:SA:3957,Europe/Paris,0,OLI, +OLI:SP:DOA001,1,"Douai Arras",50.624658,3.067387,1,0,OLI:SA:811,Europe/Paris,0,OLI, +OLI:SP:DOA002,1,"Douai Arras",50.624678,3.067063,1,0,OLI:SA:811,Europe/Paris,0,OLI, +OLI:SP:DOA005,1,"Douai Arras",50.624283,3.067114,1,0,OLI:SA:811,Europe/Paris,0,OLI, +OLI:SP:DOA006,1,"Douai Arras",50.62397,3.066982,1,0,OLI:SA:811,Europe/Paris,0,OLI, +OLI:SP:DOC001,1,"Docks De L'Oise",50.753273,3.165948,1,0,OLI:SA:1258,Europe/Paris,0,OLI, +OLI:SP:DOC002,1,"Docks De L'Oise",50.754075,3.165353,1,0,OLI:SA:1258,Europe/Paris,0,OLI, +OLI:SP:DOU001,1,"Doumer",50.611728,3.160726,1,0,OLI:SA:4343,Europe/Paris,0,OLI, +OLI:SP:DOU002,1,"Doumer",50.611166,3.161507,1,0,OLI:SA:4343,Europe/Paris,0,OLI, +OLI:SP:DOU004,1,"Doumer",50.612518,3.163221,1,0,OLI:SA:4343,Europe/Paris,0,OLI, +OLI:SP:DOV001,1,"Dom De La Vigne",50.713914,3.086069,1,0,OLI:SA:5791,Europe/Paris,0,OLI, +OLI:SP:DOV002,1,"Dom De La Vigne",50.714409,3.085709,1,0,OLI:SA:5791,Europe/Paris,0,OLI, +OLI:SP:DPA001,1,"Lucie Aubrac",50.730116,3.141242,1,0,OLI:SA:7211,Europe/Paris,0,OLI, +OLI:SP:DPA002,1,"Lucie Aubrac",50.730013,3.141976,1,0,OLI:SA:7211,Europe/Paris,0,OLI, +OLI:SP:DPH001,1,"Descartes Physicien",50.672011,3.221471,1,0,OLI:SA:1086,Europe/Paris,0,OLI, +OLI:SP:DPH002,1,"Descartes Physicien",50.672194,3.222194,1,0,OLI:SA:1086,Europe/Paris,0,OLI, +OLI:SP:DRE001,1,"La Dreve",50.764767,3.087724,1,0,OLI:SA:5735,Europe/Paris,0,OLI, +OLI:SP:DRE002,1,"La Dreve",50.76474,3.087766,1,0,OLI:SA:5735,Europe/Paris,0,OLI, +OLI:SP:DRO001,1,"C.H. Dron",50.743523,3.180657,1,0,OLI:SA:1736,Europe/Paris,0,OLI, +OLI:SP:DRO002,1,"C.H. Dron",50.743749,3.180378,1,0,OLI:SA:1736,Europe/Paris,0,OLI, +OLI:SP:DRO098,1,"C.H. Dron",50.743874,3.180479,1,0,OLI:SA:1736,Europe/Paris,0,OLI, +OLI:SP:DRO099,1,"C.H. Dron",50.743874,3.180479,1,0,OLI:SA:1736,Europe/Paris,0,OLI, +OLI:SP:DSA001,1,"Les Saules",50.701767,3.077413,1,0,OLI:SA:5792,Europe/Paris,0,OLI, +OLI:SP:DSA002,1,"Les Saules",50.701523,3.076307,1,0,OLI:SA:5792,Europe/Paris,0,OLI, +OLI:SP:DSA003,1,"Les Saules",50.701645,3.07686,1,0,OLI:SA:5792,Europe/Paris,0,OLI, +OLI:SP:DSC001,1,"Robert Descamps",50.733854,3.087231,1,0,OLI:SA:5498,Europe/Paris,0,OLI, +OLI:SP:DSC002,1,"Robert Descamps",50.734243,3.086699,1,0,OLI:SA:5498,Europe/Paris,0,OLI, +OLI:SP:DUH001,1,"Duhoo",50.643413,2.989099,1,0,OLI:SA:5969,Europe/Paris,0,OLI, +OLI:SP:DUH002,1,"Duhoo",50.643772,2.989005,1,0,OLI:SA:5969,Europe/Paris,0,OLI, +OLI:SP:DUL001,1,"Dupuy De Lome",50.682001,3.180634,1,0,OLI:SA:5629,Europe/Paris,0,OLI, +OLI:SP:DUL002,1,"Dupuy De Lome",50.682207,3.180751,1,0,OLI:SA:5629,Europe/Paris,0,OLI, +OLI:SP:DUO001,1,"Universite Catholique",50.632476,3.046528,1,0,OLI:SA:955,Europe/Paris,0,OLI, +OLI:SP:DUO002,1,"Universite Catholique",50.632439,3.046697,1,0,OLI:SA:955,Europe/Paris,0,OLI, +OLI:SP:DUT001,1,"Dutrey",50.601122,2.998386,1,0,OLI:SA:6823,Europe/Paris,0,OLI, +OLI:SP:DUT002,1,"Dutrey",50.599391,2.996629,1,0,OLI:SA:6823,Europe/Paris,0,OLI, +OLI:SP:DUT008,1,"Dutrey",50.599644,2.998042,1,0,OLI:SA:6823,Europe/Paris,0,OLI, +OLI:SP:DUT009,1,"Dutrey",50.599249,2.996458,1,0,OLI:SA:6823,Europe/Paris,0,OLI, +OLI:SP:DVE002,1,"Derville",50.633362,3.111139,1,0,OLI:SA:482,Europe/Paris,0,OLI, +OLI:SP:DVI001,1,"Saint Georges",50.703917,3.083928,1,0,OLI:SA:5794,Europe/Paris,0,OLI, +OLI:SP:DVI002,1,"Saint Georges",50.70361,3.082737,1,0,OLI:SA:5794,Europe/Paris,0,OLI, +OLI:SP:EAU001,1,"Chateau D'Eau",50.720655,3.10995,1,0,OLI:SA:219,Europe/Paris,0,OLI, +OLI:SP:EBA001,1,"Jb Lebas",50.62582,3.069646,1,0,OLI:SA:838,Europe/Paris,0,OLI, +OLI:SP:EBA002,1,"Jb Lebas",50.625845,3.068434,1,0,OLI:SA:838,Europe/Paris,0,OLI, +OLI:SP:EBA003,1,"Liberte",50.628649,3.06753,1,0,OLI:SA:7067,Europe/Paris,0,OLI, +OLI:SP:EBA004,1,"Liberte",50.628198,3.068003,1,0,OLI:SA:7067,Europe/Paris,0,OLI, +OLI:SP:EBO001,1,"Le Bourg",50.678386,2.848161,1,0,OLI:SA:6318,Europe/Paris,0,OLI, +OLI:SP:EBO002,1,"Le Bourg",50.678195,2.846409,1,0,OLI:SA:6318,Europe/Paris,0,OLI, +OLI:SP:EBU001,1,"Rue Du Bourg",50.635675,2.942579,1,0,OLI:SA:329,Europe/Paris,0,OLI, +OLI:SP:ECL001,1,"Leclerc",50.761908,3.007489,1,0,OLI:SA:5846,Europe/Paris,0,OLI, +OLI:SP:ECL002,1,"Leclerc",50.761917,3.007631,1,0,OLI:SA:5846,Europe/Paris,0,OLI, +OLI:SP:ECO001,1,"Ecole",50.622816,3.103446,1,0,OLI:SA:493,Europe/Paris,0,OLI, +OLI:SP:ECS001,1,"Ecole",50.548348,3.043366,1,0,OLI:SA:1647,Europe/Paris,0,OLI, +OLI:SP:ECS002,1,"Ecole",50.548817,3.04295,1,0,OLI:SA:1647,Europe/Paris,0,OLI, +OLI:SP:EDA001,1,"Daudet",50.592133,3.006765,1,0,OLI:SA:5524,Europe/Paris,0,OLI, +OLI:SP:EDA002,1,"Daudet",50.592405,3.006261,1,0,OLI:SA:5524,Europe/Paris,0,OLI, +OLI:SP:EDE001,1,"Delory",50.595389,3.001805,1,0,OLI:SA:319,Europe/Paris,0,OLI, +OLI:SP:EDE002,1,"Delory",50.595659,3.00343,1,0,OLI:SA:319,Europe/Paris,0,OLI, +OLI:SP:EFF001,1,"Deffontaines",50.609926,3.228945,1,0,OLI:SA:147,Europe/Paris,0,OLI, +OLI:SP:EFF002,1,"Deffontaines",50.609967,3.228241,1,0,OLI:SA:147,Europe/Paris,0,OLI, +OLI:SP:EGA001,1,"Egalite",50.631438,3.002567,1,0,OLI:SA:4002,Europe/Paris,0,OLI, +OLI:SP:EGA002,1,"Egalite",50.631412,3.002383,1,0,OLI:SA:4002,Europe/Paris,0,OLI, +OLI:SP:EGI001,1,"Siege De Region",50.630016,3.077493,1,0,OLI:SA:875,Europe/Paris,0,OLI, +OLI:SP:EGI002,1,"Siege De Region",50.630167,3.077721,1,0,OLI:SA:875,Europe/Paris,0,OLI, +OLI:SP:EGI003,1,"Siege De Region",50.629249,3.076762,1,0,OLI:SA:875,Europe/Paris,0,OLI, +OLI:SP:EGI004,1,"Siege De Region",50.629297,3.076213,1,0,OLI:SA:875,Europe/Paris,0,OLI, +OLI:SP:EGL001,1,"Les Aulnes",50.665128,3.206629,1,0,OLI:SA:5963,Europe/Paris,0,OLI, +OLI:SP:EGL002,1,"Les Aulnes",50.664801,3.205974,1,0,OLI:SA:5963,Europe/Paris,0,OLI, +OLI:SP:EGO003,1,"Eglise Du Colbras",50.783819,3.110589,1,0,OLI:SA:422,Europe/Paris,0,OLI, +OLI:SP:EGO004,1,"Eglise Du Colbras",50.784301,3.112493,1,0,OLI:SA:422,Europe/Paris,0,OLI, +OLI:SP:EGS001,1,"Place",50.645618,3.220567,1,0,OLI:SA:1578,Europe/Paris,0,OLI, +OLI:SP:EGS002,1,"Place",50.646136,3.220858,1,0,OLI:SA:1578,Europe/Paris,0,OLI, +OLI:SP:EIF001,1,"Tour Eiffel",50.665098,3.214772,1,0,OLI:SA:1087,Europe/Paris,0,OLI, +OLI:SP:EIF002,1,"Tour Eiffel",50.664835,3.215077,1,0,OLI:SA:1087,Europe/Paris,0,OLI, +OLI:SP:ELA001,1,"Epoux Labrousse",50.623155,3.126521,1,0,OLI:SA:5294,Europe/Paris,0,OLI, +OLI:SP:ELA002,1,"Epoux Labrousse",50.623005,3.127618,1,0,OLI:SA:5294,Europe/Paris,0,OLI, +OLI:SP:ELI001,1,"Sainte Elisabeth",50.687367,3.184339,1,0,OLI:SA:4423,Europe/Paris,0,OLI, +OLI:SP:ELI002,1,"Sainte Elisabeth",50.687965,3.183502,1,0,OLI:SA:4423,Europe/Paris,0,OLI, +OLI:SP:EMC001,1,"Calvaire",50.592095,3.003904,1,0,OLI:SA:5576,Europe/Paris,0,OLI, +OLI:SP:EMC002,1,"Calvaire",50.592065,3.002846,1,0,OLI:SA:5576,Europe/Paris,0,OLI, +OLI:SP:EME001,1,"Clemenceau",50.664581,3.083043,1,0,OLI:SA:5748,Europe/Paris,0,OLI, +OLI:SP:EME002,1,"Clemenceau",50.664699,3.084329,1,0,OLI:SA:5748,Europe/Paris,0,OLI, +OLI:SP:EMI001,1,"Lemire",50.722936,3.139149,1,0,OLI:SA:1808,Europe/Paris,0,OLI, +OLI:SP:EMI002,1,"Lemire",50.722639,3.139328,1,0,OLI:SA:1808,Europe/Paris,0,OLI, +OLI:SP:EML002,1,"Calmette",50.668276,3.192513,1,0,OLI:SA:6728,Europe/Paris,0,OLI, +OLI:SP:EMM001,1,"Emmerin Mairie",50.593486,3.00054,1,0,OLI:SA:6315,Europe/Paris,0,OLI, +OLI:SP:EMM002,1,"Emmerin Mairie",50.593315,3.000622,1,0,OLI:SA:6315,Europe/Paris,0,OLI, +OLI:SP:EMO001,1,"Emile Moreau",50.695301,3.173092,1,0,OLI:SA:7068,Europe/Paris,0,OLI, +OLI:SP:EMO002,1,"Emile Moreau",50.695265,3.173119,1,0,OLI:SA:7068,Europe/Paris,0,OLI, +OLI:SP:ENC001,1,"Clemenceau",50.614207,3.010642,1,0,OLI:SA:6281,Europe/Paris,0,OLI, +OLI:SP:ENC002,1,"Clemenceau",50.614265,3.011502,1,0,OLI:SA:6281,Europe/Paris,0,OLI, +OLI:SP:ENG001,1,"Salengro",50.655057,3.058405,1,0,OLI:SA:2623,Europe/Paris,0,OLI, +OLI:SP:ENG002,1,"Salengro",50.655046,3.058786,1,0,OLI:SA:2623,Europe/Paris,0,OLI, +OLI:SP:ENI001,1,"Avenir",50.619207,3.099513,1,0,OLI:SA:5915,Europe/Paris,0,OLI, +OLI:SP:ENI002,1,"Avenir",50.619703,3.099097,1,0,OLI:SA:5915,Europe/Paris,0,OLI, +OLI:SP:ENO001,1,"La Martinoire",50.718545,3.18833,1,0,OLI:SA:2161,Europe/Paris,0,OLI, +OLI:SP:ENO002,1,"La Martinoire",50.718438,3.188244,1,0,OLI:SA:2161,Europe/Paris,0,OLI, +OLI:SP:ENT001,1,"Zi Roubaix",50.672953,3.226456,1,0,OLI:SA:6601,Europe/Paris,0,OLI, +OLI:SP:ENT002,1,"Zi Roubaix",50.672936,3.226343,1,0,OLI:SA:6601,Europe/Paris,0,OLI, +OLI:SP:EOL001,1,"Leon Blum",50.650672,3.110236,1,0,OLI:SA:5943,Europe/Paris,0,OLI, +OLI:SP:EOL002,1,"Leon Blum",50.650169,3.110299,1,0,OLI:SA:5943,Europe/Paris,0,OLI, +OLI:SP:EPE001,1,"Ep. Montesquieu",50.683924,3.162905,1,0,OLI:SA:6696,Europe/Paris,0,OLI, +OLI:SP:EPE002,1,"Ep. Montesquieu",50.683553,3.163323,1,0,OLI:SA:6696,Europe/Paris,0,OLI, +OLI:SP:EPL098,1,"Epeule Montesquieu",50.684021,3.163133,1,0,OLI:SA:1472,Europe/Paris,0,OLI, +OLI:SP:EPL099,1,"Epeule Montesquieu",50.684021,3.163133,1,0,OLI:SA:1472,Europe/Paris,0,OLI, +OLI:SP:EPN001,1,"Ctre Commercial",50.548989,3.050443,1,0,OLI:SA:7557,Europe/Paris,0,OLI, +OLI:SP:EPN002,1,"Ctre Commercial",50.548899,3.050526,1,0,OLI:SA:7557,Europe/Paris,0,OLI, +OLI:SP:EPY001,1,"Saint Exupery",50.695903,2.921208,1,0,OLI:SA:4539,Europe/Paris,0,OLI, +OLI:SP:EPY002,1,"Saint Exupery",50.695584,2.920259,1,0,OLI:SA:4539,Europe/Paris,0,OLI, +OLI:SP:ERA001,1,"Pare",50.684248,3.045471,1,0,OLI:SA:2036,Europe/Paris,0,OLI, +OLI:SP:ERA002,1,"Pare",50.684329,3.045486,1,0,OLI:SA:2036,Europe/Paris,0,OLI, +OLI:SP:ERB001,1,"Faidherbe",50.615613,3.111978,1,0,OLI:SA:7070,Europe/Paris,0,OLI, +OLI:SP:ERB002,1,"Faidherbe",50.615093,3.113479,1,0,OLI:SA:7070,Europe/Paris,0,OLI, +OLI:SP:ERE001,1,"Repos",50.682947,3.249563,1,0,OLI:SA:684,Europe/Paris,0,OLI, +OLI:SP:ERE002,1,"Repos",50.68293,3.249421,1,0,OLI:SA:684,Europe/Paris,0,OLI, +OLI:SP:ERM001,1,"Rue Du Moulin",50.675213,2.834394,1,0,OLI:SA:2537,Europe/Paris,0,OLI, +OLI:SP:ERO001,1,"Europe",50.77176,3.046969,1,0,OLI:SA:5745,Europe/Paris,0,OLI, +OLI:SP:ERO002,1,"Europe",50.771717,3.04677,1,0,OLI:SA:5745,Europe/Paris,0,OLI, +OLI:SP:ERP001,1,"Europe",50.631931,2.980585,1,0,OLI:SA:5577,Europe/Paris,0,OLI, +OLI:SP:ERP002,1,"Europe",50.632223,2.977938,1,0,OLI:SA:5577,Europe/Paris,0,OLI, +OLI:SP:ERR001,1,"Ferrer",50.628857,3.088236,1,0,OLI:SA:766,Europe/Paris,0,OLI, +OLI:SP:ERR002,1,"Ferrer",50.628928,3.088336,1,0,OLI:SA:766,Europe/Paris,0,OLI, +OLI:SP:ERU001,1,"Parc Clemenceau",50.7274,3.149154,1,0,OLI:SA:1836,Europe/Paris,0,OLI, +OLI:SP:ERU002,1,"Parc Clemenceau",50.727753,3.148708,1,0,OLI:SA:1836,Europe/Paris,0,OLI, +OLI:SP:ESC001,1,"Escalette",50.696961,3.141895,1,0,OLI:SA:5578,Europe/Paris,0,OLI, +OLI:SP:ESC002,1,"Escalette",50.69668,3.142314,1,0,OLI:SA:5578,Europe/Paris,0,OLI, +OLI:SP:ESD011,1,"Residence",50.620564,3.144332,1,0,OLI:SA:7071,Europe/Paris,0,OLI, +OLI:SP:ESD012,1,"Residence",50.620328,3.144835,1,0,OLI:SA:7071,Europe/Paris,0,OLI, +OLI:SP:ESG001,1,"Eglise",50.551648,3.030894,1,0,OLI:SA:1670,Europe/Paris,0,OLI, +OLI:SP:ESG002,1,"Eglise",50.551424,3.030792,1,0,OLI:SA:1670,Europe/Paris,0,OLI, +OLI:SP:ESI001,1,"Ulysse Trelat",50.658503,3.042552,1,0,OLI:SA:7072,Europe/Paris,0,OLI, +OLI:SP:ESI003,1,"Resistance",50.658162,3.04424,1,0,OLI:SA:1611,Europe/Paris,0,OLI, +OLI:SP:ETC004,1,"Euratechnologies",50.633132,3.019303,1,0,OLI:SA:3941,Europe/Paris,0,OLI, +OLI:SP:ETC006,1,"Euratechnologies",50.633509,3.019308,1,0,OLI:SA:3941,Europe/Paris,0,OLI, +OLI:SP:ETE001,1,"Papeterie",50.77218,3.083989,1,0,OLI:SA:5737,Europe/Paris,0,OLI, +OLI:SP:ETE002,1,"Papeterie",50.772267,3.084343,1,0,OLI:SA:5737,Europe/Paris,0,OLI, +OLI:SP:ETZ001,1,"Frometz",50.607027,2.968748,1,0,OLI:SA:6648,Europe/Paris,0,OLI, +OLI:SP:ETZ002,1,"Frometz",50.607027,2.968861,1,0,OLI:SA:6648,Europe/Paris,0,OLI, +OLI:SP:EUG001,1,"Les Terres Ocres",50.651437,3.003454,1,0,OLI:SA:5946,Europe/Paris,0,OLI, +OLI:SP:EUG002,1,"Les Terres Ocres",50.651591,3.003202,1,0,OLI:SA:5946,Europe/Paris,0,OLI, +OLI:SP:EUL001,1,"Eurasante Epi De Soil",50.602139,3.044689,1,0,OLI:SA:1071,Europe/Paris,0,OLI, +OLI:SP:EUL005,1,"Eurasante",50.599107,3.036809,1,0,OLI:SA:6373,Europe/Paris,0,OLI, +OLI:SP:EUL006,1,"Eurasante",50.59985,3.03713,1,0,OLI:SA:6373,Europe/Paris,0,OLI, +OLI:SP:EUN001,1,"Meuniers",50.621195,3.05827,1,0,OLI:SA:818,Europe/Paris,0,OLI, +OLI:SP:EUN002,1,"Meuniers",50.62137,3.059132,1,0,OLI:SA:818,Europe/Paris,0,OLI, +OLI:SP:EUP001,1,"Limousin",50.672368,2.973667,1,0,OLI:SA:1300,Europe/Paris,0,OLI, +OLI:SP:EUP003,1,"Europe",50.670778,2.974127,1,0,OLI:SA:1302,Europe/Paris,0,OLI, +OLI:SP:EUQ001,1,"Touquet",50.679076,3.063453,1,0,OLI:SA:1196,Europe/Paris,0,OLI, +OLI:SP:EUQ002,1,"Touquet",50.678969,3.063409,1,0,OLI:SA:1196,Europe/Paris,0,OLI, +OLI:SP:EUR002,1,"Lille Europe",50.639413,3.075107,1,0,OLI:SA:7536,Europe/Paris,0,OLI, +OLI:SP:EUR021,1,"Gare Lille Europe",50.639735,3.075267,1,0,OLI:SA:805,Europe/Paris,0,OLI, +OLI:SP:EUR032,1,"Gare Lille Europe",50.639735,3.075267,1,0,OLI:SA:805,Europe/Paris,0,OLI, +OLI:SP:EUR098,1,"Gare Lille Europe",50.639583,3.076774,1,0,OLI:SA:805,Europe/Paris,0,OLI, +OLI:SP:EUR099,1,"Gare Lille Europe",50.639583,3.076774,1,0,OLI:SA:805,Europe/Paris,0,OLI, +OLI:SP:EWI001,1,"Les Euwis",50.541476,3.01621,1,0,OLI:SA:1667,Europe/Paris,0,OLI, +OLI:SP:EXU001,1,"Saint Exupery",50.778609,3.116308,1,0,OLI:SA:3913,Europe/Paris,0,OLI, +OLI:SP:FAE001,1,"Eglise",50.588498,3.076385,1,0,OLI:SA:363,Europe/Paris,0,OLI, +OLI:SP:FAE002,1,"Eglise",50.588437,3.077469,1,0,OLI:SA:363,Europe/Paris,0,OLI, +OLI:SP:FAM001,1,"Mairie",50.603974,3.068565,1,0,OLI:SA:355,Europe/Paris,0,OLI, +OLI:SP:FAM002,1,"Mairie",50.603649,3.068871,1,0,OLI:SA:355,Europe/Paris,0,OLI, +OLI:SP:FAT001,1,"Fatima",50.578412,3.014147,1,0,OLI:SA:4632,Europe/Paris,0,OLI, +OLI:SP:FAT002,1,"Fatima",50.578313,3.014188,1,0,OLI:SA:4632,Europe/Paris,0,OLI, +OLI:SP:FAU001,1,"Faubourg De Roncq",50.759566,3.120974,1,0,OLI:SA:1381,Europe/Paris,0,OLI, +OLI:SP:FAU002,1,"Faubourg De Roncq",50.759522,3.120818,1,0,OLI:SA:1381,Europe/Paris,0,OLI, +OLI:SP:FAV001,1,"Favreuil",50.692862,3.151403,1,0,OLI:SA:5440,Europe/Paris,0,OLI, +OLI:SP:FAV002,1,"Favreuil",50.692764,3.151359,1,0,OLI:SA:5440,Europe/Paris,0,OLI, +OLI:SP:FAY001,1,"La Fayette",50.671484,3.089555,1,0,OLI:SA:1151,Europe/Paris,0,OLI, +OLI:SP:FAY002,1,"La Fayette",50.671503,3.08947,1,0,OLI:SA:1151,Europe/Paris,0,OLI, +OLI:SP:FBG004,1,"Faubourg D'Arras",50.613457,3.062374,1,0,OLI:SA:5483,Europe/Paris,0,OLI, +OLI:SP:FBG005,1,"Faubourg D'Arras",50.614172,3.06268,1,0,OLI:SA:5483,Europe/Paris,0,OLI, +OLI:SP:FBG006,1,"Faubourg D'Arras",50.613017,3.062325,1,0,OLI:SA:5483,Europe/Paris,0,OLI, +OLI:SP:FBO001,1,"Blanc Four",50.740622,3.116874,1,0,OLI:SA:6763,Europe/Paris,0,OLI, +OLI:SP:FBO002,1,"Blanc Four",50.739227,3.11763,1,0,OLI:SA:6763,Europe/Paris,0,OLI, +OLI:SP:FBO003,1,"Blanc Four",50.737132,3.115632,1,0,OLI:SA:6763,Europe/Paris,0,OLI, +OLI:SP:FBO006,1,"Blanc Four",50.736827,3.115599,1,0,OLI:SA:6763,Europe/Paris,0,OLI, +OLI:SP:FCH001,1,"Fosse Aux Chenes",50.699725,3.175496,1,0,OLI:SA:1449,Europe/Paris,0,OLI, +OLI:SP:FCH002,1,"Fosse Aux Chenes",50.699504,3.175026,1,0,OLI:SA:1449,Europe/Paris,0,OLI, +OLI:SP:FCH004,1,"Fosse Aux Chenes",50.698933,3.174466,1,0,OLI:SA:1449,Europe/Paris,0,OLI, +OLI:SP:FCH005,1,"Fosse Aux Chenes",50.698691,3.17442,1,0,OLI:SA:1449,Europe/Paris,0,OLI, +OLI:SP:FCI001,1,"Cimetiere",50.591211,3.075707,1,0,OLI:SA:356,Europe/Paris,0,OLI, +OLI:SP:FCI002,1,"Cimetiere",50.591434,3.075907,1,0,OLI:SA:356,Europe/Paris,0,OLI, +OLI:SP:FCL001,1,"Foucault",50.653756,3.017298,1,0,OLI:SA:671,Europe/Paris,0,OLI, +OLI:SP:FCL002,1,"Foucault",50.654148,3.017882,1,0,OLI:SA:671,Europe/Paris,0,OLI, +OLI:SP:FCO001,1,"P.A Mauroy",50.762274,3.121073,1,0,OLI:SA:6938,Europe/Paris,0,OLI, +OLI:SP:FCO002,1,"P.A Mauroy",50.763117,3.12103,1,0,OLI:SA:6938,Europe/Paris,0,OLI, +OLI:SP:FDE001,1,"Ferme Des Enfants",50.749135,3.154329,1,0,OLI:SA:1257,Europe/Paris,0,OLI, +OLI:SP:FDE002,1,"Ferme Des Enfants",50.749179,3.154429,1,0,OLI:SA:1257,Europe/Paris,0,OLI, +OLI:SP:FDG001,1,"Fin De La Guerre",50.619065,2.938345,1,0,OLI:SA:5974,Europe/Paris,0,OLI, +OLI:SP:FDG002,1,"Fin De La Guerre",50.619099,2.938642,1,0,OLI:SA:5974,Europe/Paris,0,OLI, +OLI:SP:FDH001,1,"Faidherbe",50.765619,3.022756,1,0,OLI:SA:5738,Europe/Paris,0,OLI, +OLI:SP:FDH002,1,"Faidherbe",50.765665,3.022572,1,0,OLI:SA:5738,Europe/Paris,0,OLI, +OLI:SP:FDN001,1,"Freres D'Halluin",50.739056,3.073867,1,0,OLI:SA:989,Europe/Paris,0,OLI, +OLI:SP:FDN002,1,"Freres D'Halluin",50.739037,3.074022,1,0,OLI:SA:989,Europe/Paris,0,OLI, +OLI:SP:FDP001,1,"Faculte De Pharmacie",50.604329,3.041421,1,0,OLI:SA:970,Europe/Paris,0,OLI, +OLI:SP:FDP002,1,"Faculte De Pharmacie",50.604115,3.041235,1,0,OLI:SA:970,Europe/Paris,0,OLI, +OLI:SP:FEC001,1,"Fleur D'Ecosse",50.654899,2.934952,1,0,OLI:SA:2550,Europe/Paris,0,OLI, +OLI:SP:FEC002,1,"Fleur D'Ecosse",50.655243,2.934406,1,0,OLI:SA:2550,Europe/Paris,0,OLI, +OLI:SP:FEG001,1,"Eglise",50.636197,3.188945,1,0,OLI:SA:367,Europe/Paris,0,OLI, +OLI:SP:FEG002,1,"Eglise",50.636214,3.189044,1,0,OLI:SA:367,Europe/Paris,0,OLI, +OLI:SP:FEH001,1,"Ferme D'Halluin",50.686142,3.223514,1,0,OLI:SA:694,Europe/Paris,0,OLI, +OLI:SP:FEH002,1,"Ferme D'Halluin",50.685898,3.22375,1,0,OLI:SA:694,Europe/Paris,0,OLI, +OLI:SP:FEL001,1,"Fenelon",50.630743,3.112495,1,0,OLI:SA:4261,Europe/Paris,0,OLI, +OLI:SP:FEL002,1,"Fenelon",50.630638,3.110645,1,0,OLI:SA:4261,Europe/Paris,0,OLI, +OLI:SP:FEN001,1,"Ferme D'Ennequin",50.607414,3.020813,1,0,OLI:SA:6275,Europe/Paris,0,OLI, +OLI:SP:FEN002,1,"Ferme D'Ennequin",50.607223,3.021388,1,0,OLI:SA:6275,Europe/Paris,0,OLI, +OLI:SP:FFO001,1,"Fort De Bondues",50.691651,3.087571,1,0,OLI:SA:180,Europe/Paris,0,OLI, +OLI:SP:FFO002,1,"Fort De Bondues",50.691249,3.087283,1,0,OLI:SA:180,Europe/Paris,0,OLI, +OLI:SP:FGR001,1,"Les Fougeres",50.713082,3.130387,1,0,OLI:SA:187,Europe/Paris,0,OLI, +OLI:SP:FGR002,1,"Les Fougeres",50.713082,3.130387,1,0,OLI:SA:187,Europe/Paris,0,OLI, +OLI:SP:FGU001,1,"Fin De La Guerre",50.729359,3.144481,1,0,OLI:SA:6947,Europe/Paris,0,OLI, +OLI:SP:FGU002,1,"Fin De La Guerre",50.729158,3.145156,1,0,OLI:SA:6947,Europe/Paris,0,OLI, +OLI:SP:FHO001,1,"Hoche",50.606834,3.065802,1,0,OLI:SA:344,Europe/Paris,0,OLI, +OLI:SP:FHO002,1,"Hoche",50.606905,3.065859,1,0,OLI:SA:344,Europe/Paris,0,OLI, +OLI:SP:FIA001,1,"Fiacres",50.636118,3.126443,1,0,OLI:SA:1948,Europe/Paris,0,OLI, +OLI:SP:FIE001,1,"Montgolfier",50.66321,3.075247,1,0,OLI:SA:1109,Europe/Paris,0,OLI, +OLI:SP:FIE002,1,"Montgolfier",50.663077,3.074963,1,0,OLI:SA:1109,Europe/Paris,0,OLI, +OLI:SP:FJA002,1,"Jacquard",50.635352,3.112792,1,0,OLI:SA:4129,Europe/Paris,0,OLI, +OLI:SP:FLB001,1,"Flers Bourg",50.63635,3.127985,1,0,OLI:SA:4351,Europe/Paris,0,OLI, +OLI:SP:FLE001,1,"Velodrome",50.679199,3.201918,1,0,OLI:SA:4831,Europe/Paris,0,OLI, +OLI:SP:FLE002,1,"Velodrome",50.679477,3.201994,1,0,OLI:SA:4831,Europe/Paris,0,OLI, +OLI:SP:FLK001,1,"Flocon",50.71142,3.148753,1,0,OLI:SA:6892,Europe/Paris,0,OLI, +OLI:SP:FLK002,1,"Flocon",50.711083,3.149567,1,0,OLI:SA:6892,Europe/Paris,0,OLI, +OLI:SP:FLM001,1,"Flers Masquelier",50.638056,3.124965,1,0,OLI:SA:7075,Europe/Paris,0,OLI, +OLI:SP:FLO001,1,"Florence",50.63204,3.125843,1,0,OLI:SA:1961,Europe/Paris,0,OLI, +OLI:SP:FLO002,1,"Florence",50.631575,3.125737,1,0,OLI:SA:1961,Europe/Paris,0,OLI, +OLI:SP:FLO003,1,"Florence",50.631758,3.125063,1,0,OLI:SA:1961,Europe/Paris,0,OLI, +OLI:SP:FLP001,1,"Fort De Lompret",50.673745,2.984794,1,0,OLI:SA:1895,Europe/Paris,0,OLI, +OLI:SP:FLP002,1,"Fort De Lompret",50.673737,2.984681,1,0,OLI:SA:1895,Europe/Paris,0,OLI, +OLI:SP:FMA001,1,"Fort Mahieu",50.682409,2.861868,1,0,OLI:SA:6316,Europe/Paris,0,OLI, +OLI:SP:FMA002,1,"Fort Mahieu",50.682285,2.861599,1,0,OLI:SA:6316,Europe/Paris,0,OLI, +OLI:SP:FOC001,1,"Foch",50.705227,3.231382,1,0,OLI:SA:2128,Europe/Paris,0,OLI, +OLI:SP:FOC002,1,"Foch",50.705079,3.230659,1,0,OLI:SA:2128,Europe/Paris,0,OLI, +OLI:SP:FOM001,1,"Fort Montagne",50.702761,3.086594,1,0,OLI:SA:5782,Europe/Paris,0,OLI, +OLI:SP:FOM002,1,"Fort Montagne",50.703333,3.088523,1,0,OLI:SA:5782,Europe/Paris,0,OLI, +OLI:SP:FON001,1,"La Fontaine",50.711848,3.195703,1,0,OLI:SA:2136,Europe/Paris,0,OLI, +OLI:SP:FON002,1,"La Fontaine",50.712001,3.195579,1,0,OLI:SA:2136,Europe/Paris,0,OLI, +OLI:SP:FOR010,1,"Fort De Mons",50.642064,3.119667,1,0,OLI:SA:1222,Europe/Paris,0,OLI, +OLI:SP:FOR040,1,"Fort De Mons",50.642023,3.119074,1,0,OLI:SA:1222,Europe/Paris,0,OLI, +OLI:SP:FOR043,1,"Fort De Mons",50.64212,3.119245,1,0,OLI:SA:1222,Europe/Paris,0,OLI, +OLI:SP:FOR044,1,"Fort De Mons",50.642011,3.119525,1,0,OLI:SA:1222,Europe/Paris,0,OLI, +OLI:SP:FOR099,1,"Fort De Mons",50.642182,3.119443,1,0,OLI:SA:1222,Europe/Paris,0,OLI, +OLI:SP:FOR298,1,"Fort De Mons",50.642182,3.119443,1,0,OLI:SA:1222,Europe/Paris,0,OLI, +OLI:SP:FOS001,1,"Foch",50.663223,3.05014,1,0,OLI:SA:4039,Europe/Paris,0,OLI, +OLI:SP:FOS002,1,"Foch",50.663053,3.05011,1,0,OLI:SA:4039,Europe/Paris,0,OLI, +OLI:SP:FOU001,1,"Les Fougeres",50.713082,3.130387,1,0,OLI:SA:187,Europe/Paris,0,OLI, +OLI:SP:FOU002,1,"Les Fougeres",50.7131,3.130302,1,0,OLI:SA:187,Europe/Paris,0,OLI, +OLI:SP:FRA001,1,"Rue De La Franquise",50.549882,2.851004,1,0,OLI:SA:1202,Europe/Paris,0,OLI, +OLI:SP:FRA002,1,"Rue De La Franquise",50.549934,2.85137,1,0,OLI:SA:1202,Europe/Paris,0,OLI, +OLI:SP:FRE001,1,"Fresnoy",50.699631,3.155906,1,0,OLI:SA:1804,Europe/Paris,0,OLI, +OLI:SP:FRE002,1,"Fresnoy",50.699695,3.155723,1,0,OLI:SA:1804,Europe/Paris,0,OLI, +OLI:SP:FRL001,1,"Freres Lumiere",50.619842,3.08521,1,0,OLI:SA:841,Europe/Paris,0,OLI, +OLI:SP:FRO001,1,"Mairie",50.606106,2.854316,1,0,OLI:SA:2298,Europe/Paris,0,OLI, +OLI:SP:FRO002,1,"Mairie",50.605704,2.853917,1,0,OLI:SA:2298,Europe/Paris,0,OLI, +OLI:SP:FRR002,1,"Ferry",50.625181,3.101155,1,0,OLI:SA:496,Europe/Paris,0,OLI, +OLI:SP:FSL001,1,"Isly",50.695567,3.129953,1,0,OLI:SA:1245,Europe/Paris,0,OLI, +OLI:SP:FSL002,1,"Isly",50.695526,3.130673,1,0,OLI:SA:1245,Europe/Paris,0,OLI, +OLI:SP:FSL003,1,"Isly",50.694584,3.132112,1,0,OLI:SA:1245,Europe/Paris,0,OLI, +OLI:SP:FTE001,1,"Fraternite",50.681927,3.194031,1,0,OLI:SA:1503,Europe/Paris,0,OLI, +OLI:SP:FTE002,1,"Fraternite",50.682144,3.193795,1,0,OLI:SA:1503,Europe/Paris,0,OLI, +OLI:SP:FTE003,1,"Fraternite",50.682487,3.194831,1,0,OLI:SA:1503,Europe/Paris,0,OLI, +OLI:SP:FTE004,1,"Fraternite",50.682577,3.19472,1,0,OLI:SA:1503,Europe/Paris,0,OLI, +OLI:SP:FUN001,1,"Le Funquereau",50.686511,2.967099,1,0,OLI:SA:387,Europe/Paris,0,OLI, +OLI:SP:FUN002,1,"Le Funquereau",50.68626,2.967025,1,0,OLI:SA:387,Europe/Paris,0,OLI, +OLI:SP:FVE001,1,"Verdun",50.590794,3.085297,1,0,OLI:SA:6322,Europe/Paris,0,OLI, +OLI:SP:FVE002,1,"Verdun",50.591083,3.085034,1,0,OLI:SA:6322,Europe/Paris,0,OLI, +OLI:SP:FWC001,1,"Carnot",50.586049,2.887391,1,0,OLI:SA:5709,Europe/Paris,0,OLI, +OLI:SP:FWC002,1,"Carnot",50.586547,2.888256,1,0,OLI:SA:5709,Europe/Paris,0,OLI, +OLI:SP:FWD001,1,"Desprez",50.596775,2.9018,1,0,OLI:SA:374,Europe/Paris,0,OLI, +OLI:SP:FWD002,1,"Desprez",50.596008,2.900932,1,0,OLI:SA:374,Europe/Paris,0,OLI, +OLI:SP:FWL001,1,"Lion Noir",50.583874,2.884239,1,0,OLI:SA:372,Europe/Paris,0,OLI, +OLI:SP:FWL002,1,"Lion Noir",50.5839,2.884282,1,0,OLI:SA:372,Europe/Paris,0,OLI, +OLI:SP:FWV001,1,"Victor Hugo",50.589647,2.893039,1,0,OLI:SA:375,Europe/Paris,0,OLI, +OLI:SP:FWV002,1,"Victor Hugo",50.589977,2.893564,1,0,OLI:SA:375,Europe/Paris,0,OLI, +OLI:SP:GAA002,1,"Gare Annexe",50.691556,2.872738,1,0,OLI:SA:114,Europe/Paris,0,OLI, +OLI:SP:GAA005,1,"Gare Annexe",50.691127,2.872494,1,0,OLI:SA:114,Europe/Paris,0,OLI, +OLI:SP:GAD001,1,"Rue De Gand",50.737858,3.162823,1,0,OLI:SA:5755,Europe/Paris,0,OLI, +OLI:SP:GAD002,1,"Rue De Gand",50.738009,3.162995,1,0,OLI:SA:5755,Europe/Paris,0,OLI, +OLI:SP:GAI001,1,"Gaie Perche",50.754831,2.989155,1,0,OLI:SA:257,Europe/Paris,0,OLI, +OLI:SP:GAI002,1,"Gaie Perche",50.755009,2.989398,1,0,OLI:SA:257,Europe/Paris,0,OLI, +OLI:SP:GAP001,1,"Place Gambetta",50.67342,3.128684,1,0,OLI:SA:5866,Europe/Paris,0,OLI, +OLI:SP:GAP002,1,"Place Gambetta",50.673793,3.129269,1,0,OLI:SA:5866,Europe/Paris,0,OLI, +OLI:SP:GAS001,1,"Gassendi",50.650439,3.088293,1,0,OLI:SA:6828,Europe/Paris,0,OLI, +OLI:SP:GAS002,1,"Gassendi",50.648189,3.089613,1,0,OLI:SA:6828,Europe/Paris,0,OLI, +OLI:SP:GBE001,1,"Gaston Berger",50.614487,3.074753,1,0,OLI:SA:917,Europe/Paris,0,OLI, +OLI:SP:GBE002,1,"Gaston Berger",50.61446,3.074696,1,0,OLI:SA:917,Europe/Paris,0,OLI, +OLI:SP:GCH001,1,"Gros Chene",50.762908,3.077727,1,0,OLI:SA:5730,Europe/Paris,0,OLI, +OLI:SP:GCH002,1,"Gros Chene",50.76279,3.07788,1,0,OLI:SA:5730,Europe/Paris,0,OLI, +OLI:SP:GCR001,1,"Gare",50.677179,3.136833,1,0,OLI:SA:283,Europe/Paris,0,OLI, +OLI:SP:GCR002,1,"Gare",50.677043,3.137099,1,0,OLI:SA:283,Europe/Paris,0,OLI, +OLI:SP:GDC001,1,"Grand Cottignies",50.687305,3.124414,1,0,OLI:SA:2089,Europe/Paris,0,OLI, +OLI:SP:GDC012,1,"Grand Cottignies",50.686817,3.12363,1,0,OLI:SA:2089,Europe/Paris,0,OLI, +OLI:SP:GDE001,1,"Coluche",50.599345,3.093812,1,0,OLI:SA:5596,Europe/Paris,0,OLI, +OLI:SP:GDE002,1,"Coluche",50.5994,3.093657,1,0,OLI:SA:5596,Europe/Paris,0,OLI, +OLI:SP:GDR090,1,"Galon D'Eau",50.69313,3.187643,1,0,OLI:SA:7641,Europe/Paris,0,OLI, +OLI:SP:GEA010,1,"Galon D'Eau",50.692966,3.188035,1,0,OLI:SA:7641,Europe/Paris,0,OLI, +OLI:SP:GEA011,1,"Galon D'Eau",50.692892,3.188232,1,0,OLI:SA:7641,Europe/Paris,0,OLI, +OLI:SP:GEN001,1,"Gendarmerie",50.646794,3.12901,1,0,OLI:SA:7079,Europe/Paris,0,OLI, +OLI:SP:GEN002,1,"Gendarmerie",50.646483,3.129937,1,0,OLI:SA:7079,Europe/Paris,0,OLI, +OLI:SP:GEY001,1,"De Geyter",50.604802,3.057328,1,0,OLI:SA:870,Europe/Paris,0,OLI, +OLI:SP:GEY002,1,"De Geyter",50.605695,3.058173,1,0,OLI:SA:870,Europe/Paris,0,OLI, +OLI:SP:GHE001,1,"Ghesquiere",50.685621,3.042328,1,0,OLI:SA:5863,Europe/Paris,0,OLI, +OLI:SP:GHE002,1,"Ghesquiere",50.685492,3.042891,1,0,OLI:SA:5863,Europe/Paris,0,OLI, +OLI:SP:GID001,1,"Gide",50.606661,3.044654,1,0,OLI:SA:840,Europe/Paris,0,OLI, +OLI:SP:GID002,1,"Gide",50.606725,3.044472,1,0,OLI:SA:840,Europe/Paris,0,OLI, +OLI:SP:GJO001,1,"Grimonprez Jooris",50.647428,3.049859,1,0,OLI:SA:839,Europe/Paris,0,OLI, +OLI:SP:GLA001,1,"Gladbeck",50.652868,3.095948,1,0,OLI:SA:1130,Europe/Paris,0,OLI, +OLI:SP:GLA002,1,"Gladbeck",50.652724,3.096059,1,0,OLI:SA:1130,Europe/Paris,0,OLI, +OLI:SP:GLE001,1,"Gambetta Leclerc",50.609161,2.988102,1,0,OLI:SA:6827,Europe/Paris,0,OLI, +OLI:SP:GLE002,1,"Gambetta Leclerc",50.607702,2.985701,1,0,OLI:SA:6827,Europe/Paris,0,OLI, +OLI:SP:GLL001,1,"Gallodrome",50.539945,2.875594,1,0,OLI:SA:5671,Europe/Paris,0,OLI, +OLI:SP:GLL002,1,"Gallodrome",50.540152,2.875427,1,0,OLI:SA:5671,Europe/Paris,0,OLI, +OLI:SP:GLY001,1,"Les Glycines",50.753208,3.007584,1,0,OLI:SA:263,Europe/Paris,0,OLI, +OLI:SP:GLY002,1,"Les Glycines",50.754017,3.007313,1,0,OLI:SA:263,Europe/Paris,0,OLI, +OLI:SP:GMA001,1,"Gare",50.548608,2.867929,1,0,OLI:SA:1203,Europe/Paris,0,OLI, +OLI:SP:GMA002,1,"Gare",50.5477,2.868426,1,0,OLI:SA:1203,Europe/Paris,0,OLI, +OLI:SP:GMO002,1,"Guy Mocquet",50.602941,3.01204,1,0,OLI:SA:1049,Europe/Paris,0,OLI, +OLI:SP:GNA001,1,"Montagnards",50.634327,3.097317,1,0,OLI:SA:807,Europe/Paris,0,OLI, +OLI:SP:GNA002,1,"Montagnards",50.634322,3.098192,1,0,OLI:SA:807,Europe/Paris,0,OLI, +OLI:SP:GNL001,1,"General Leclerc",50.572577,2.870381,1,0,OLI:SA:5700,Europe/Paris,0,OLI, +OLI:SP:GNL002,1,"General Leclerc",50.572435,2.870098,1,0,OLI:SA:5700,Europe/Paris,0,OLI, +OLI:SP:GOB001,1,"Les Gobelins",50.694474,3.172005,1,0,OLI:SA:1407,Europe/Paris,0,OLI, +OLI:SP:GOB002,1,"Les Gobelins",50.694599,3.172162,1,0,OLI:SA:1407,Europe/Paris,0,OLI, +OLI:SP:GOL001,1,"Montgolfier",50.684677,3.189433,1,0,OLI:SA:4427,Europe/Paris,0,OLI, +OLI:SP:GOL002,1,"Montgolfier",50.685004,3.188832,1,0,OLI:SA:4427,Europe/Paris,0,OLI, +OLI:SP:GOU001,1,"Gounod",50.596585,3.087498,1,0,OLI:SA:5597,Europe/Paris,0,OLI, +OLI:SP:GOU002,1,"Gounod",50.596347,3.086748,1,0,OLI:SA:5597,Europe/Paris,0,OLI, +OLI:SP:GOY003,1,"Gare",50.708557,2.994879,1,0,OLI:SA:1326,Europe/Paris,0,OLI, +OLI:SP:GOY004,1,"Gare",50.708956,2.995661,1,0,OLI:SA:1326,Europe/Paris,0,OLI, +OLI:SP:GPE001,1,"Peri",50.675934,3.089466,1,0,OLI:SA:2630,Europe/Paris,0,OLI, +OLI:SP:GPE002,1,"Peri",50.675436,3.088697,1,0,OLI:SA:2630,Europe/Paris,0,OLI, +OLI:SP:GPL001,1,"Grand Place",50.575944,3.017664,1,0,OLI:SA:5525,Europe/Paris,0,OLI, +OLI:SP:GPL002,1,"Grand Place",50.576026,3.017425,1,0,OLI:SA:5525,Europe/Paris,0,OLI, +OLI:SP:GPO001,1,"Grimonpont",50.690007,3.23608,1,0,OLI:SA:695,Europe/Paris,0,OLI, +OLI:SP:GPO002,1,"Grimonpont",50.689908,3.236148,1,0,OLI:SA:695,Europe/Paris,0,OLI, +OLI:SP:GRA001,1,"Egalite",50.735435,3.168436,1,0,OLI:SA:5759,Europe/Paris,0,OLI, +OLI:SP:GRA002,1,"Egalite",50.735684,3.168638,1,0,OLI:SA:5759,Europe/Paris,0,OLI, +OLI:SP:GRC001,1,"Grand Chemin",50.693431,3.161707,1,0,OLI:SA:4428,Europe/Paris,0,OLI, +OLI:SP:GRI001,1,"Grimomprez",50.716326,3.195257,1,0,OLI:SA:2125,Europe/Paris,0,OLI, +OLI:SP:GRI002,1,"Grimomprez",50.716097,3.194632,1,0,OLI:SA:2125,Europe/Paris,0,OLI, +OLI:SP:GRM001,1,"Gare",50.740831,3.228189,1,0,OLI:SA:2508,Europe/Paris,0,OLI, +OLI:SP:GRP001,1,"Grand Perne",50.731085,3.020133,1,0,OLI:SA:272,Europe/Paris,0,OLI, +OLI:SP:GRP002,1,"Grand Perne",50.731283,3.020079,1,0,OLI:SA:272,Europe/Paris,0,OLI, +OLI:SP:GRU001,1,"Grand Ruage",50.61799,3.173914,1,0,OLI:SA:5646,Europe/Paris,0,OLI, +OLI:SP:GRU002,1,"Grand Ruage",50.618177,3.174228,1,0,OLI:SA:5646,Europe/Paris,0,OLI, +OLI:SP:GSL001,1,"Gaston Slosse",50.597122,2.967355,1,0,OLI:SA:1632,Europe/Paris,0,OLI, +OLI:SP:GSL002,1,"Gaston Slosse",50.597068,2.967396,1,0,OLI:SA:1632,Europe/Paris,0,OLI, +OLI:SP:GST001,1,"Gare",50.655101,3.050899,1,0,OLI:SA:1607,Europe/Paris,0,OLI, +OLI:SP:GST002,1,"Gare",50.654921,3.050996,1,0,OLI:SA:1607,Europe/Paris,0,OLI, +OLI:SP:GUD001,1,"Gustave Dron",50.6843,2.89117,1,0,OLI:SA:6987,Europe/Paris,0,OLI, +OLI:SP:GUI001,1,"Guillain",50.587713,3.041836,1,0,OLI:SA:2105,Europe/Paris,0,OLI, +OLI:SP:GUI002,1,"Guillain",50.587712,3.042019,1,0,OLI:SA:2105,Europe/Paris,0,OLI, +OLI:SP:GUS001,1,"Jules Guesde",50.682304,2.886037,1,0,OLI:SA:5773,Europe/Paris,0,OLI, +OLI:SP:GUS002,1,"Jules Guesde",50.682861,2.885944,1,0,OLI:SA:5773,Europe/Paris,0,OLI, +OLI:SP:GUY001,1,"Guynemer",50.670483,3.188655,1,0,OLI:SA:4429,Europe/Paris,0,OLI, +OLI:SP:GUY002,1,"Guynemer",50.670209,3.189271,1,0,OLI:SA:4429,Europe/Paris,0,OLI, +OLI:SP:HAC001,1,"Lp Colbras",50.779133,3.114265,1,0,OLI:SA:435,Europe/Paris,0,OLI, +OLI:SP:HAC003,1,"Lp Colbras",50.779112,3.114732,1,0,OLI:SA:435,Europe/Paris,0,OLI, +OLI:SP:HAL001,1,"Centre Ville",50.783102,3.126211,1,0,OLI:SA:425,Europe/Paris,0,OLI, +OLI:SP:HAL002,1,"Centre Ville",50.783836,3.126378,1,0,OLI:SA:425,Europe/Paris,0,OLI, +OLI:SP:HAN001,1,"Hts De Neuville",50.739648,3.163418,1,0,OLI:SA:5752,Europe/Paris,0,OLI, +OLI:SP:HAN002,1,"Hts De Neuville",50.74011,3.164061,1,0,OLI:SA:5752,Europe/Paris,0,OLI, +OLI:SP:HAP001,1,"Parc Des Sports",50.776864,3.124131,1,0,OLI:SA:430,Europe/Paris,0,OLI, +OLI:SP:HAP002,1,"Parc Des Sports",50.777017,3.124049,1,0,OLI:SA:430,Europe/Paris,0,OLI, +OLI:SP:HAV001,1,"Vanderhaghen",50.612292,2.976019,1,0,OLI:SA:470,Europe/Paris,0,OLI, +OLI:SP:HAV002,1,"Vanderhaghen",50.612534,2.975951,1,0,OLI:SA:470,Europe/Paris,0,OLI, +OLI:SP:HAZ001,1,"Lycee Hazard",50.689106,2.875254,1,0,OLI:SA:5775,Europe/Paris,0,OLI, +OLI:SP:HAZ002,1,"Lycee Hazard",50.68851,2.874202,1,0,OLI:SA:5775,Europe/Paris,0,OLI, +OLI:SP:HBA001,1,"La Bascule",50.614299,2.969432,1,0,OLI:SA:407,Europe/Paris,0,OLI, +OLI:SP:HBA002,1,"La Bascule",50.613831,2.969722,1,0,OLI:SA:407,Europe/Paris,0,OLI, +OLI:SP:HBE001,1,"Beaupre",50.603215,2.996229,1,0,OLI:SA:5882,Europe/Paris,0,OLI, +OLI:SP:HBE002,1,"Beaupre",50.602568,2.993035,1,0,OLI:SA:5882,Europe/Paris,0,OLI, +OLI:SP:HBZ001,1,"Berlioz",50.777382,3.114592,1,0,OLI:SA:5124,Europe/Paris,0,OLI, +OLI:SP:HCA001,1,"Cimetiere",50.778802,3.129622,1,0,OLI:SA:423,Europe/Paris,0,OLI, +OLI:SP:HCA002,1,"Cimetiere",50.779467,3.129506,1,0,OLI:SA:423,Europe/Paris,0,OLI, +OLI:SP:HCH001,1,"Les Hauts Champs",50.675606,3.19621,1,0,OLI:SA:7081,Europe/Paris,0,OLI, +OLI:SP:HCH002,1,"Les Hauts Champs",50.674953,3.196029,1,0,OLI:SA:7081,Europe/Paris,0,OLI, +OLI:SP:HCH003,1,"Les Hauts Champs",50.674943,3.194772,1,0,OLI:SA:7081,Europe/Paris,0,OLI, +OLI:SP:HCH004,1,"Les Hauts Champs",50.675106,3.195947,1,0,OLI:SA:7081,Europe/Paris,0,OLI, +OLI:SP:HCI001,1,"Citadelle",50.711979,3.237832,1,0,OLI:SA:2464,Europe/Paris,0,OLI, +OLI:SP:HCI002,1,"Citadelle",50.712162,3.23977,1,0,OLI:SA:2464,Europe/Paris,0,OLI, +OLI:SP:HCM001,1,"Cimetiere",50.60941,2.953482,1,0,OLI:SA:403,Europe/Paris,0,OLI, +OLI:SP:HCM002,1,"Cimetiere",50.609723,2.953712,1,0,OLI:SA:403,Europe/Paris,0,OLI, +OLI:SP:HCO001,1,"La Colle",50.607247,2.951905,1,0,OLI:SA:5711,Europe/Paris,0,OLI, +OLI:SP:HCO002,1,"La Colle",50.607201,2.952186,1,0,OLI:SA:5711,Europe/Paris,0,OLI, +OLI:SP:HCP001,1,"Caserne Des Pompiers",50.611437,2.978137,1,0,OLI:SA:6255,Europe/Paris,0,OLI, +OLI:SP:HCP002,1,"Caserne Des Pompiers",50.611171,2.979261,1,0,OLI:SA:6255,Europe/Paris,0,OLI, +OLI:SP:HDL001,1,"Hameau Du Lac",50.630393,3.187647,1,0,OLI:SA:4554,Europe/Paris,0,OLI, +OLI:SP:HDL002,1,"Hameau Du Lac",50.629911,3.187188,1,0,OLI:SA:4554,Europe/Paris,0,OLI, +OLI:SP:HDO001,1,"Douane",50.785807,3.126777,1,0,OLI:SA:432,Europe/Paris,0,OLI, +OLI:SP:HDO002,1,"Douane",50.786457,3.12615,1,0,OLI:SA:432,Europe/Paris,0,OLI, +OLI:SP:HDO003,1,"Douane",50.786531,3.125741,1,0,OLI:SA:432,Europe/Paris,0,OLI, +OLI:SP:HDV005,1,"Hotel De Ville",50.618564,3.131849,1,0,OLI:SA:6404,Europe/Paris,0,OLI, +OLI:SP:HDV013,1,"Hotel De Ville",50.618956,3.130953,1,0,OLI:SA:6404,Europe/Paris,0,OLI, +OLI:SP:HDV018,1,"Hotel De Ville",50.61958,3.130088,1,0,OLI:SA:6404,Europe/Paris,0,OLI, +OLI:SP:HDV032,1,"Hotel De Ville",50.618782,3.131471,1,0,OLI:SA:6404,Europe/Paris,0,OLI, +OLI:SP:HDV042,1,"Hotel De Ville",50.619537,3.129806,1,0,OLI:SA:6404,Europe/Paris,0,OLI, +OLI:SP:HDV043,1,"Hotel De Ville",50.619742,3.130077,1,0,OLI:SA:6404,Europe/Paris,0,OLI, +OLI:SP:HDV044,1,"Hotel De Ville",50.619442,3.130636,1,0,OLI:SA:6404,Europe/Paris,0,OLI, +OLI:SP:HDV047,1,"Hotel De Ville",50.619715,3.130062,1,0,OLI:SA:6404,Europe/Paris,0,OLI, +OLI:SP:HDV098,1,"Hotel De Ville",50.618344,3.13255,1,0,OLI:SA:6404,Europe/Paris,0,OLI, +OLI:SP:HDV099,1,"Hotel De Ville",50.618385,3.131846,1,0,OLI:SA:6404,Europe/Paris,0,OLI, +OLI:SP:HEB001,1,"Bifur",50.652181,3.187694,1,0,OLI:SA:525,Europe/Paris,0,OLI, +OLI:SP:HEB002,1,"Bifur",50.652044,3.188044,1,0,OLI:SA:525,Europe/Paris,0,OLI, +OLI:SP:HEC001,1,"Henri Carrette",50.700797,3.170839,1,0,OLI:SA:6831,Europe/Paris,0,OLI, +OLI:SP:HEC002,1,"Henri Carrette",50.69892,3.171119,1,0,OLI:SA:6831,Europe/Paris,0,OLI, +OLI:SP:HEG001,1,"Hantay Eglise",50.532676,2.865579,1,0,OLI:SA:5673,Europe/Paris,0,OLI, +OLI:SP:HEG002,1,"Hantay Eglise",50.532916,2.866172,1,0,OLI:SA:5673,Europe/Paris,0,OLI, +OLI:SP:HEL001,1,"Le Hel",50.750301,2.984162,1,0,OLI:SA:2041,Europe/Paris,0,OLI, +OLI:SP:HEL002,1,"Le Hel",50.750202,2.984274,1,0,OLI:SA:2041,Europe/Paris,0,OLI, +OLI:SP:HEM001,1,"Hem Eglise",50.649607,3.19153,1,0,OLI:SA:6912,Europe/Paris,0,OLI, +OLI:SP:HEM002,1,"Hem Eglise",50.650406,3.191487,1,0,OLI:SA:6912,Europe/Paris,0,OLI, +OLI:SP:HEN001,1,"Hentges",50.725633,3.164118,1,0,OLI:SA:6862,Europe/Paris,0,OLI, +OLI:SP:HEN002,1,"Hentges",50.725331,3.163647,1,0,OLI:SA:6862,Europe/Paris,0,OLI, +OLI:SP:HEP001,1,"Piscine Herlies",50.572504,2.853786,1,0,OLI:SA:6639,Europe/Paris,0,OLI, +OLI:SP:HER001,1,"Herriot",50.704522,3.233361,1,0,OLI:SA:2209,Europe/Paris,0,OLI, +OLI:SP:HER002,1,"Herriot",50.704747,3.233153,1,0,OLI:SA:2209,Europe/Paris,0,OLI, +OLI:SP:HER090,1,"Herriot",50.608856,3.008173,1,0,OLI:SA:7666,Europe/Paris,0,OLI, +OLI:SP:HEU001,1,"Heurtebise",50.611954,2.99922,1,0,OLI:SA:6263,Europe/Paris,0,OLI, +OLI:SP:HEU002,1,"Heurtebise",50.61239,3.001608,1,0,OLI:SA:6263,Europe/Paris,0,OLI, +OLI:SP:HFE001,1,"Ferme Lassus",50.71755,3.238865,1,0,OLI:SA:6860,Europe/Paris,0,OLI, +OLI:SP:HFE002,1,"Ferme Lassus",50.716476,3.239848,1,0,OLI:SA:6860,Europe/Paris,0,OLI, +OLI:SP:HGA001,1,"Gare",50.607204,2.989924,1,0,OLI:SA:454,Europe/Paris,0,OLI, +OLI:SP:HGL001,1,"Les Glycines",50.713216,3.243985,1,0,OLI:SA:2472,Europe/Paris,0,OLI, +OLI:SP:HGL002,1,"Les Glycines",50.713444,3.243537,1,0,OLI:SA:2472,Europe/Paris,0,OLI, +OLI:SP:HGO001,1,"Gounod",50.779326,3.111963,1,0,OLI:SA:417,Europe/Paris,0,OLI, +OLI:SP:HGO002,1,"Gounod",50.779791,3.109438,1,0,OLI:SA:417,Europe/Paris,0,OLI, +OLI:SP:HHV001,1,"Hotel De Ville",50.689995,2.907132,1,0,OLI:SA:556,Europe/Paris,0,OLI, +OLI:SP:HHV002,1,"Hotel De Ville",50.689773,2.906523,1,0,OLI:SA:556,Europe/Paris,0,OLI, +OLI:SP:HIL001,1,"Saint Hilaire",50.777909,3.141547,1,0,OLI:SA:3908,Europe/Paris,0,OLI, +OLI:SP:HIM002,1,"Hippodrome",50.664167,3.089106,1,0,OLI:SA:2973,Europe/Paris,0,OLI, +OLI:SP:HIM003,1,"Hippodrome",50.664387,3.088361,1,0,OLI:SA:2973,Europe/Paris,0,OLI, +OLI:SP:HIP001,1,"Hippodrome",50.645904,3.027575,1,0,OLI:SA:3962,Europe/Paris,0,OLI, +OLI:SP:HIP002,1,"Hippodrome",50.645662,3.027642,1,0,OLI:SA:3962,Europe/Paris,0,OLI, +OLI:SP:HIS001,1,"Harrison",50.606349,3.162851,1,0,OLI:SA:4354,Europe/Paris,0,OLI, +OLI:SP:HIS002,1,"Harisson",50.606403,3.162866,1,0,OLI:SA:4355,Europe/Paris,0,OLI, +OLI:SP:HJA001,1,"Jardin Public",50.611563,2.988458,1,0,OLI:SA:6264,Europe/Paris,0,OLI, +OLI:SP:HJA002,1,"Jardin Public",50.611445,2.988668,1,0,OLI:SA:6264,Europe/Paris,0,OLI, +OLI:SP:HJA003,1,"Jardin Public",50.611273,2.987298,1,0,OLI:SA:6264,Europe/Paris,0,OLI, +OLI:SP:HLF001,1,"Le Fort",50.613172,2.956363,1,0,OLI:SA:399,Europe/Paris,0,OLI, +OLI:SP:HLF002,1,"Le Fort",50.613163,2.956405,1,0,OLI:SA:399,Europe/Paris,0,OLI, +OLI:SP:HLI001,1,"Mairie",50.576752,2.854816,1,0,OLI:SA:530,Europe/Paris,0,OLI, +OLI:SP:HLI002,1,"Mairie",50.576832,2.855014,1,0,OLI:SA:530,Europe/Paris,0,OLI, +OLI:SP:HLO001,1,"Hautes Loges",50.66887,3.088711,1,0,OLI:SA:1148,Europe/Paris,0,OLI, +OLI:SP:HLO002,1,"Hautes Loges",50.668548,3.088579,1,0,OLI:SA:1148,Europe/Paris,0,OLI, +OLI:SP:HLV001,1,"Hem La Vallee",50.648968,3.197021,1,0,OLI:SA:523,Europe/Paris,0,OLI, +OLI:SP:HLV002,1,"Hem La Vallee",50.649155,3.197194,1,0,OLI:SA:523,Europe/Paris,0,OLI, +OLI:SP:HMA001,1,"Mairie",50.610843,2.983726,1,0,OLI:SA:6254,Europe/Paris,0,OLI, +OLI:SP:HMA002,1,"Mairie",50.610553,2.982679,1,0,OLI:SA:6254,Europe/Paris,0,OLI, +OLI:SP:HMA003,1,"Mairie",50.610056,2.983222,1,0,OLI:SA:6254,Europe/Paris,0,OLI, +OLI:SP:HME001,1,"Hameau De L'Europe",50.573794,3.071871,1,0,OLI:SA:1887,Europe/Paris,0,OLI, +OLI:SP:HMI001,1,"Mirabeau",50.536429,2.875416,1,0,OLI:SA:5672,Europe/Paris,0,OLI, +OLI:SP:HMI002,1,"Mirabeau",50.536136,2.87461,1,0,OLI:SA:5672,Europe/Paris,0,OLI, +OLI:SP:HMN001,1,"Harmonie",50.602959,3.153294,1,0,OLI:SA:7014,Europe/Paris,0,OLI, +OLI:SP:HMN002,1,"Harmonie",50.603084,3.153296,1,0,OLI:SA:7014,Europe/Paris,0,OLI, +OLI:SP:HOC001,1,"Hoche",50.721926,3.144177,1,0,OLI:SA:4474,Europe/Paris,0,OLI, +OLI:SP:HOC002,1,"Hoche",50.721792,3.144005,1,0,OLI:SA:4474,Europe/Paris,0,OLI, +OLI:SP:HOM001,1,"Hommelet",50.69282,3.18446,1,0,OLI:SA:1469,Europe/Paris,0,OLI, +OLI:SP:HOM002,1,"Hommelet",50.692957,3.184081,1,0,OLI:SA:1469,Europe/Paris,0,OLI, +OLI:SP:HON002,1,"D'Hondt",50.704747,3.204183,1,0,OLI:SA:2203,Europe/Paris,0,OLI, +OLI:SP:HOO001,1,"Hondschoote",50.714383,3.16444,1,0,OLI:SA:1721,Europe/Paris,0,OLI, +OLI:SP:HOO002,1,"Hondschoote",50.714221,3.164636,1,0,OLI:SA:1721,Europe/Paris,0,OLI, +OLI:SP:HOP001,1,"Hopital",50.701715,3.221969,1,0,OLI:SA:2190,Europe/Paris,0,OLI, +OLI:SP:HOP003,1,"Hopital",50.70221,3.220495,1,0,OLI:SA:2190,Europe/Paris,0,OLI, +OLI:SP:HOR001,1,"Hopital Victor Provo",50.678486,3.17257,1,0,OLI:SA:6833,Europe/Paris,0,OLI, +OLI:SP:HOR002,1,"Hopital Victor Provo",50.678694,3.172277,1,0,OLI:SA:6833,Europe/Paris,0,OLI, +OLI:SP:HOS001,1,"Les Bateliers",50.645518,3.062119,1,0,OLI:SA:863,Europe/Paris,0,OLI, +OLI:SP:HOS003,1,"Les Bateliers",50.645269,3.061735,1,0,OLI:SA:863,Europe/Paris,0,OLI, +OLI:SP:HOT001,1,"L'Octroi",50.776537,3.098934,1,0,OLI:SA:447,Europe/Paris,0,OLI, +OLI:SP:HOT002,1,"L'Octroi",50.776566,3.098666,1,0,OLI:SA:447,Europe/Paris,0,OLI, +OLI:SP:HOZ002,1,"Horizon",50.605135,3.157897,1,0,OLI:SA:1928,Europe/Paris,0,OLI, +OLI:SP:HOZ003,1,"Horizon",50.60509,3.157896,1,0,OLI:SA:1928,Europe/Paris,0,OLI, +OLI:SP:HPA001,1,"Pasteur",50.564587,2.999396,1,0,OLI:SA:6286,Europe/Paris,0,OLI, +OLI:SP:HPA002,1,"Pasteur",50.564579,2.999354,1,0,OLI:SA:6286,Europe/Paris,0,OLI, +OLI:SP:HPE001,1,"La Pepiniere",50.611377,2.969,1,0,OLI:SA:398,Europe/Paris,0,OLI, +OLI:SP:HPE002,1,"La Pepiniere",50.61134,2.969113,1,0,OLI:SA:398,Europe/Paris,0,OLI, +OLI:SP:HPE005,1,"La Pepiniere",50.611025,2.967713,1,0,OLI:SA:398,Europe/Paris,0,OLI, +OLI:SP:HPE006,1,"La Pepiniere",50.610971,2.96774,1,0,OLI:SA:398,Europe/Paris,0,OLI, +OLI:SP:HPH001,1,"Pharmacie",50.57318,2.996425,1,0,OLI:SA:6355,Europe/Paris,0,OLI, +OLI:SP:HPH002,1,"Pharmacie",50.573306,2.996328,1,0,OLI:SA:6355,Europe/Paris,0,OLI, +OLI:SP:HPI001,1,"4 Vents",50.648598,3.19607,1,0,OLI:SA:521,Europe/Paris,0,OLI, +OLI:SP:HPL001,1,"Place",50.722887,3.232631,1,0,OLI:SA:2479,Europe/Paris,0,OLI, +OLI:SP:HPL002,1,"Place",50.722635,3.232782,1,0,OLI:SA:2479,Europe/Paris,0,OLI, +OLI:SP:HPM001,1,"Hempempont",50.654085,3.172981,1,0,OLI:SA:512,Europe/Paris,0,OLI, +OLI:SP:HPM002,1,"Hempempont",50.654643,3.174006,1,0,OLI:SA:512,Europe/Paris,0,OLI, +OLI:SP:HPO001,1,"Haie Plouvier",50.577473,3.124194,1,0,OLI:SA:717,Europe/Paris,0,OLI, +OLI:SP:HPO002,1,"Haie Plouvier",50.577732,3.124325,1,0,OLI:SA:717,Europe/Paris,0,OLI, +OLI:SP:HPP001,1,"Place",50.562245,3.002901,1,0,OLI:SA:540,Europe/Paris,0,OLI, +OLI:SP:HPP002,1,"Place",50.5621,3.00311,1,0,OLI:SA:540,Europe/Paris,0,OLI, +OLI:SP:HPS001,1,"Poste",50.569168,2.99833,1,0,OLI:SA:543,Europe/Paris,0,OLI, +OLI:SP:HPS002,1,"Poste",50.569671,2.998168,1,0,OLI:SA:543,Europe/Paris,0,OLI, +OLI:SP:HRE001,1,"Henri Regnault",50.632668,3.030058,1,0,OLI:SA:4189,Europe/Paris,0,OLI, +OLI:SP:HRE002,1,"Henri Regnault",50.633003,3.031148,1,0,OLI:SA:4189,Europe/Paris,0,OLI, +OLI:SP:HRI001,1,"Les Riez",50.612509,2.966843,1,0,OLI:SA:402,Europe/Paris,0,OLI, +OLI:SP:HRI002,1,"Les Riez",50.612564,2.966745,1,0,OLI:SA:402,Europe/Paris,0,OLI, +OLI:SP:HRM001,1,"L'Harmonieuse",50.784181,3.135551,1,0,OLI:SA:3906,Europe/Paris,0,OLI, +OLI:SP:HRO001,1,"Herons",50.701084,2.888659,1,0,OLI:SA:6311,Europe/Paris,0,OLI, +OLI:SP:HRO002,1,"Herons",50.701433,2.88886,1,0,OLI:SA:6311,Europe/Paris,0,OLI, +OLI:SP:HSA001,1,"Hopital Salengro",50.607656,3.030472,1,0,OLI:SA:6907,Europe/Paris,0,OLI, +OLI:SP:HSA002,1,"Hopital Salengro",50.607145,3.030451,1,0,OLI:SA:6907,Europe/Paris,0,OLI, +OLI:SP:HSE001,1,"Hospice",50.7089,3.089031,1,0,OLI:SA:5833,Europe/Paris,0,OLI, +OLI:SP:HSE002,1,"Hospice",50.7089,3.089031,1,0,OLI:SA:5833,Europe/Paris,0,OLI, +OLI:SP:HSP001,1,"St. Philibert",50.651697,2.97442,1,0,OLI:SA:999,Europe/Paris,0,OLI, +OLI:SP:HSP002,1,"St. Philibert",50.651813,2.974534,1,0,OLI:SA:999,Europe/Paris,0,OLI, +OLI:SP:HSP003,1,"St. Philibert",50.65195,2.974071,1,0,OLI:SA:999,Europe/Paris,0,OLI, +OLI:SP:HSP063,1,"St. Philibert",50.6521,2.974538,1,0,OLI:SA:999,Europe/Paris,0,OLI, +OLI:SP:HSP079,1,"St. Philibert",50.652271,2.974427,1,0,OLI:SA:999,Europe/Paris,0,OLI, +OLI:SP:HSP098,1,"St. Philibert",50.651088,2.974271,1,0,OLI:SA:999,Europe/Paris,0,OLI, +OLI:SP:HSP099,1,"St. Philibert",50.651088,2.974271,1,0,OLI:SA:999,Europe/Paris,0,OLI, +OLI:SP:HTR001,1,"Elsa Triolet",50.653664,3.18858,1,0,OLI:SA:5238,Europe/Paris,0,OLI, +OLI:SP:HTR002,1,"Elsa Triolet",50.65378,3.188737,1,0,OLI:SA:5238,Europe/Paris,0,OLI, +OLI:SP:HUA001,1,"Docteur Huart",50.634248,3.114383,1,0,OLI:SA:490,Europe/Paris,0,OLI, +OLI:SP:HUG002,1,"Victor Hugo",50.682439,3.24433,1,0,OLI:SA:709,Europe/Paris,0,OLI, +OLI:SP:HUG011,1,"Victor Hugo",50.682643,3.245844,1,0,OLI:SA:709,Europe/Paris,0,OLI, +OLI:SP:HUG012,1,"Victor Hugo",50.682236,3.245018,1,0,OLI:SA:709,Europe/Paris,0,OLI, +OLI:SP:HUR001,1,"Hurlupin",50.761817,3.011052,1,0,OLI:SA:5837,Europe/Paris,0,OLI, +OLI:SP:HUR002,1,"Place De Gaulle",50.762687,3.011106,1,0,OLI:SA:6630,Europe/Paris,0,OLI, +OLI:SP:HUT001,1,"Le Hutin",50.706594,3.181021,1,0,OLI:SA:1544,Europe/Paris,0,OLI, +OLI:SP:HUT002,1,"Le Hutin",50.706537,3.181388,1,0,OLI:SA:1544,Europe/Paris,0,OLI, +OLI:SP:HVA003,1,"Valmy",50.616593,3.132847,1,0,OLI:SA:4358,Europe/Paris,0,OLI, +OLI:SP:HVA004,1,"Valmy",50.616399,3.132266,1,0,OLI:SA:4358,Europe/Paris,0,OLI, +OLI:SP:HVO001,1,"Hotel Voyageurs",50.724737,3.14637,1,0,OLI:SA:7559,Europe/Paris,0,OLI, +OLI:SP:HVO002,1,"Hotel Voyageurs",50.724638,3.146354,1,0,OLI:SA:7559,Europe/Paris,0,OLI, +OLI:SP:HWA001,1,"Hop J De Flandre",50.604936,3.034114,1,0,OLI:SA:6965,Europe/Paris,0,OLI, +OLI:SP:HWA002,1,"Hop J De Flandre",50.605016,3.034228,1,0,OLI:SA:6965,Europe/Paris,0,OLI, +OLI:SP:HYD001,1,"Pont Hydraulique",50.712511,3.155962,1,0,OLI:SA:1746,Europe/Paris,0,OLI, +OLI:SP:IAL001,1,"Wasquehal C.Cial",50.682773,3.126164,1,0,OLI:SA:4713,Europe/Paris,0,OLI, +OLI:SP:ICT001,1,"Victoire",50.71773,3.156273,1,0,OLI:SA:1851,Europe/Paris,0,OLI, +OLI:SP:ICT002,1,"Victoire",50.717228,3.158907,1,0,OLI:SA:1851,Europe/Paris,0,OLI, +OLI:SP:ICT011,1,"Victoire",50.717595,3.159026,1,0,OLI:SA:1851,Europe/Paris,0,OLI, +OLI:SP:ICT021,1,"Victoire",50.71776,3.157093,1,0,OLI:SA:1851,Europe/Paris,0,OLI, +OLI:SP:ICT032,1,"Victoire",50.717779,3.156966,1,0,OLI:SA:1851,Europe/Paris,0,OLI, +OLI:SP:ICT078,1,"Victoire",50.717293,3.157114,1,0,OLI:SA:1851,Europe/Paris,0,OLI, +OLI:SP:IDA001,1,"Loridan",50.700294,3.086783,1,0,OLI:SA:1169,Europe/Paris,0,OLI, +OLI:SP:IDA002,1,"Loridan",50.701095,3.086244,1,0,OLI:SA:1169,Europe/Paris,0,OLI, +OLI:SP:IDF001,1,"Lp De Flandres",50.688807,2.890231,1,0,OLI:SA:6380,Europe/Paris,0,OLI, +OLI:SP:IDF002,1,"Lp De Flandres",50.688933,2.890134,1,0,OLI:SA:6380,Europe/Paris,0,OLI, +OLI:SP:IDH001,1,"Faidherbe",50.681849,2.873298,1,0,OLI:SA:6898,Europe/Paris,0,OLI, +OLI:SP:IDH002,1,"Faidherbe",50.682011,2.873173,1,0,OLI:SA:6898,Europe/Paris,0,OLI, +OLI:SP:IDV003,1,"De Vinci",50.687379,3.239732,1,0,OLI:SA:696,Europe/Paris,0,OLI, +OLI:SP:ILC001,1,"Centre",50.561628,2.832689,1,0,OLI:SA:573,Europe/Paris,0,OLI, +OLI:SP:ILC002,1,"Centre",50.562177,2.832272,1,0,OLI:SA:573,Europe/Paris,0,OLI, +OLI:SP:ILL001,1,"Rue De Lille",50.533166,2.811406,1,0,OLI:SA:5678,Europe/Paris,0,OLI, +OLI:SP:ILO002,1,"Moliere",50.690712,3.1987,1,0,OLI:SA:1465,Europe/Paris,0,OLI, +OLI:SP:ILO003,1,"Moliere",50.690973,3.198521,1,0,OLI:SA:1465,Europe/Paris,0,OLI, +OLI:SP:ILO005,1,"Moliere",50.690927,3.198718,1,0,OLI:SA:1465,Europe/Paris,0,OLI, +OLI:SP:IMP001,1,"Cite",50.687596,3.262582,1,0,OLI:SA:2504,Europe/Paris,0,OLI, +OLI:SP:IMP002,1,"Cite",50.687595,3.262666,1,0,OLI:SA:2504,Europe/Paris,0,OLI, +OLI:SP:ING001,1,"Guinguette",50.636264,3.116205,1,0,OLI:SA:6083,Europe/Paris,0,OLI, +OLI:SP:ING002,1,"Guinguette",50.635471,3.115333,1,0,OLI:SA:6083,Europe/Paris,0,OLI, +OLI:SP:INH001,1,"Linnich",50.588269,3.100732,1,0,OLI:SA:734,Europe/Paris,0,OLI, +OLI:SP:INH002,1,"Linnich",50.588253,3.100394,1,0,OLI:SA:734,Europe/Paris,0,OLI, +OLI:SP:INN001,1,"Innovation",50.62507,3.103156,1,0,OLI:SA:486,Europe/Paris,0,OLI, +OLI:SP:INN002,1,"Innovation",50.625623,3.103559,1,0,OLI:SA:486,Europe/Paris,0,OLI, +OLI:SP:INO001,1,"Casino",50.636657,3.077027,1,0,OLI:SA:867,Europe/Paris,0,OLI, +OLI:SP:INO002,1,"Casino",50.636248,3.076344,1,0,OLI:SA:867,Europe/Paris,0,OLI, +OLI:SP:IQU001,1,"Republique",50.697596,3.205824,1,0,OLI:SA:4454,Europe/Paris,0,OLI, +OLI:SP:IQU002,1,"Republique",50.697643,3.205571,1,0,OLI:SA:4454,Europe/Paris,0,OLI, +OLI:SP:IRA001,1,"College Van Der Meersch",50.707252,3.128854,1,0,OLI:SA:1252,Europe/Paris,0,OLI, +OLI:SP:IRA002,1,"College Van Der Meersch",50.70719,3.12881,1,0,OLI:SA:1252,Europe/Paris,0,OLI, +OLI:SP:IRA003,1,"College Van Der Meersch",50.707225,3.128839,1,0,OLI:SA:1252,Europe/Paris,0,OLI, +OLI:SP:ISA001,1,"Piscine",50.689642,2.869555,1,0,OLI:SA:6880,Europe/Paris,0,OLI, +OLI:SP:ISA002,1,"Piscine",50.689696,2.869485,1,0,OLI:SA:6880,Europe/Paris,0,OLI, +OLI:SP:ISC001,1,"La Viscourt",50.738482,3.101957,1,0,OLI:SA:990,Europe/Paris,0,OLI, +OLI:SP:ISC002,1,"La Viscourt",50.738518,3.101901,1,0,OLI:SA:990,Europe/Paris,0,OLI, +OLI:SP:ISI001,1,"Lavoisier",50.634394,3.106839,1,0,OLI:SA:1218,Europe/Paris,0,OLI, +OLI:SP:ISI002,1,"Lavoisier",50.635137,3.10702,1,0,OLI:SA:1218,Europe/Paris,0,OLI, +OLI:SP:ISL001,1,"Isly",50.62122,3.035243,1,0,OLI:SA:944,Europe/Paris,0,OLI, +OLI:SP:ISL002,1,"Isly",50.62122,3.035243,1,0,OLI:SA:944,Europe/Paris,0,OLI, +OLI:SP:ISS001,1,"Blanchisserie",50.591592,2.981955,1,0,OLI:SA:7007,Europe/Paris,0,OLI, +OLI:SP:ISS002,1,"Blanchisserie",50.591628,2.982054,1,0,OLI:SA:7007,Europe/Paris,0,OLI, +OLI:SP:IUF001,1,"Espe",50.639338,3.136354,1,0,OLI:SA:7087,Europe/Paris,0,OLI, +OLI:SP:IUF002,1,"Espe",50.639463,3.137711,1,0,OLI:SA:7087,Europe/Paris,0,OLI, +OLI:SP:IVE001,1,"Rue De Verdun",50.589203,3.113429,1,0,OLI:SA:5987,Europe/Paris,0,OLI, +OLI:SP:IVE002,1,"Rue De Verdun",50.589149,3.113457,1,0,OLI:SA:5987,Europe/Paris,0,OLI, +OLI:SP:IXR001,1,"Mirabeau",50.687152,3.220242,1,0,OLI:SA:693,Europe/Paris,0,OLI, +OLI:SP:IXR002,1,"Mirabeau",50.687146,3.221005,1,0,OLI:SA:693,Europe/Paris,0,OLI, +OLI:SP:JAC001,1,"Jacquard",50.727581,3.175865,1,0,OLI:SA:1731,Europe/Paris,0,OLI, +OLI:SP:JAC002,1,"Jacquard",50.727537,3.17585,1,0,OLI:SA:1731,Europe/Paris,0,OLI, +OLI:SP:JAG002,1,"Sacre Coeur",50.633014,3.051332,1,0,OLI:SA:7541,Europe/Paris,0,OLI, +OLI:SP:JAM001,1,"Le Jambon",50.710957,3.107454,1,0,OLI:SA:5789,Europe/Paris,0,OLI, +OLI:SP:JAM002,1,"Le Jambon",50.710994,3.107285,1,0,OLI:SA:5789,Europe/Paris,0,OLI, +OLI:SP:JAP001,1,"La Jappe",50.600474,3.07177,1,0,OLI:SA:354,Europe/Paris,0,OLI, +OLI:SP:JAP002,1,"La Jappe",50.601175,3.071682,1,0,OLI:SA:354,Europe/Paris,0,OLI, +OLI:SP:JAQ001,1,"Jacquard",50.605183,2.990447,1,0,OLI:SA:6258,Europe/Paris,0,OLI, +OLI:SP:JAQ002,1,"Jacquard",50.604943,2.990077,1,0,OLI:SA:6258,Europe/Paris,0,OLI, +OLI:SP:JAQ005,1,"Jacquard",50.605501,2.988083,1,0,OLI:SA:6258,Europe/Paris,0,OLI, +OLI:SP:JAU001,1,"Jean Jaures",50.78645,3.121566,1,0,OLI:SA:433,Europe/Paris,0,OLI, +OLI:SP:JAU002,1,"Jean Jaures",50.786475,3.121822,1,0,OLI:SA:433,Europe/Paris,0,OLI, +OLI:SP:JCT001,1,"Jacques Cartier",50.696585,2.88779,1,0,OLI:SA:102,Europe/Paris,0,OLI, +OLI:SP:JCT002,1,"Jacques Cartier",50.696889,2.887949,1,0,OLI:SA:102,Europe/Paris,0,OLI, +OLI:SP:JCU001,1,"Joliot Curie",50.612265,3.110925,1,0,OLI:SA:750,Europe/Paris,0,OLI, +OLI:SP:JCU003,1,"Joliot Curie",50.612274,3.110883,1,0,OLI:SA:750,Europe/Paris,0,OLI, +OLI:SP:JDL001,1,"J. Luxembourg",50.612587,2.972597,1,0,OLI:SA:461,Europe/Paris,0,OLI, +OLI:SP:JDL002,1,"J. Luxembourg",50.612677,2.972541,1,0,OLI:SA:461,Europe/Paris,0,OLI, +OLI:SP:JEA001,1,"Jean Xxiii",50.704622,3.155338,1,0,OLI:SA:1722,Europe/Paris,0,OLI, +OLI:SP:JEA002,1,"Jean Xxiii",50.704078,3.154919,1,0,OLI:SA:1722,Europe/Paris,0,OLI, +OLI:SP:JEF001,1,"Fac De Medecine",50.604619,3.031332,1,0,OLI:SA:6966,Europe/Paris,0,OLI, +OLI:SP:JEF002,1,"Fac De Medecine",50.604165,3.032454,1,0,OLI:SA:6966,Europe/Paris,0,OLI, +OLI:SP:JEM001,1,"Jeanne Maillotte",50.652123,3.069312,1,0,OLI:SA:607,Europe/Paris,0,OLI, +OLI:SP:JFR001,1,"Leers V. Hugo",50.682956,3.245977,1,0,OLI:SA:6358,Europe/Paris,0,OLI, +OLI:SP:JGU001,1,"Jules Guesde",50.685985,3.187083,1,0,OLI:SA:1414,Europe/Paris,0,OLI, +OLI:SP:JGU002,1,"Jules Guesde",50.686357,3.186412,1,0,OLI:SA:1414,Europe/Paris,0,OLI, +OLI:SP:JJA001,1,"Jean Jaures",50.685833,2.887262,1,0,OLI:SA:5776,Europe/Paris,0,OLI, +OLI:SP:JJA002,1,"Jean Jaures",50.685741,2.887755,1,0,OLI:SA:5776,Europe/Paris,0,OLI, +OLI:SP:JOF001,1,"Marechal Joffre",50.714576,3.174488,1,0,OLI:SA:2124,Europe/Paris,0,OLI, +OLI:SP:JOF002,1,"Marechal Joffre",50.714377,3.174753,1,0,OLI:SA:2124,Europe/Paris,0,OLI, +OLI:SP:JOS003,1,"Josephine",50.655376,3.062107,1,0,OLI:SA:5581,Europe/Paris,0,OLI, +OLI:SP:JOS004,1,"Josephine",50.655365,3.060978,1,0,OLI:SA:5581,Europe/Paris,0,OLI, +OLI:SP:JPS001,1,"Jp Sartre",50.672246,3.134058,1,0,OLI:SA:5877,Europe/Paris,0,OLI, +OLI:SP:JRO001,1,"Jean Rostand",50.586149,3.080536,1,0,OLI:SA:5545,Europe/Paris,0,OLI, +OLI:SP:JRO002,1,"Jean Rostand",50.586465,3.080301,1,0,OLI:SA:5545,Europe/Paris,0,OLI, +OLI:SP:JRS001,1,"Jean Jaures",50.626078,3.105399,1,0,OLI:SA:5917,Europe/Paris,0,OLI, +OLI:SP:JRS002,1,"Jean Jaures",50.626173,3.106035,1,0,OLI:SA:5917,Europe/Paris,0,OLI, +OLI:SP:JRS098,1,"Jean Jaures",50.658507,3.134911,1,0,OLI:SA:1969,Europe/Paris,0,OLI, +OLI:SP:JRS099,1,"Jean Jaures",50.658507,3.134911,1,0,OLI:SA:1969,Europe/Paris,0,OLI, +OLI:SP:JUB001,1,"Jude Blanckaert",50.54258,3.027347,1,0,OLI:SA:1681,Europe/Paris,0,OLI, +OLI:SP:JUB002,1,"Jude Blanckaert",50.542714,3.027518,1,0,OLI:SA:1681,Europe/Paris,0,OLI, +OLI:SP:JUI001,1,"Juin",50.739473,3.186581,1,0,OLI:SA:1869,Europe/Paris,0,OLI, +OLI:SP:JUI002,1,"Juin",50.739536,3.186582,1,0,OLI:SA:1869,Europe/Paris,0,OLI, +OLI:SP:JUS001,1,"Rue De Lille",50.652601,3.039477,1,0,OLI:SA:3963,Europe/Paris,0,OLI, +OLI:SP:JUS002,1,"Rue De Lille",50.652664,3.039464,1,0,OLI:SA:3963,Europe/Paris,0,OLI, +OLI:SP:JVA001,1,"Champ De Mars",50.637024,3.051191,1,0,OLI:SA:7661,Europe/Paris,0,OLI, +OLI:SP:KAE001,1,"Dronckaert",50.739502,3.130878,1,0,OLI:SA:1363,Europe/Paris,0,OLI, +OLI:SP:KAE002,1,"Dronckaert",50.739866,3.131378,1,0,OLI:SA:1363,Europe/Paris,0,OLI, +OLI:SP:KAE003,1,"Dronckaert",50.740784,3.13234,1,0,OLI:SA:1363,Europe/Paris,0,OLI, +OLI:SP:KAE004,1,"Dronckaert",50.740508,3.132053,1,0,OLI:SA:1363,Europe/Paris,0,OLI, +OLI:SP:KEM001,1,"Resistants",50.692338,2.87036,1,0,OLI:SA:6897,Europe/Paris,0,OLI, +OLI:SP:KEM002,1,"Resistants",50.692419,2.870375,1,0,OLI:SA:6897,Europe/Paris,0,OLI, +OLI:SP:KEN001,1,"J.F. Kennedy",50.632324,3.068049,1,0,OLI:SA:4193,Europe/Paris,0,OLI, +OLI:SP:KGA001,1,"Gare",50.771299,2.997432,1,0,OLI:SA:2456,Europe/Paris,0,OLI, +OLI:SP:KLE002,1,"Kleber",50.582952,3.030172,1,0,OLI:SA:7089,Europe/Paris,0,OLI, +OLI:SP:KLI001,1,"Franklin",50.691044,3.194851,1,0,OLI:SA:1442,Europe/Paris,0,OLI, +OLI:SP:KLI002,1,"Franklin",50.691017,3.194794,1,0,OLI:SA:1442,Europe/Paris,0,OLI, +OLI:SP:KNI001,1,"Koninginnestraat",50.787587,3.133172,1,0,OLI:SA:6651,Europe/Paris,0,OLI, +OLI:SP:KOE001,1,"Koenig",50.566383,2.928515,1,0,OLI:SA:2223,Europe/Paris,0,OLI, +OLI:SP:KOE002,1,"Koenig",50.566374,2.928529,1,0,OLI:SA:2223,Europe/Paris,0,OLI, +OLI:SP:KOE003,1,"Koenig",50.565342,2.928446,1,0,OLI:SA:2223,Europe/Paris,0,OLI, +OLI:SP:LAD001,1,"Ladriere",50.630911,3.128547,1,0,OLI:SA:1900,Europe/Paris,0,OLI, +OLI:SP:LAD002,1,"Ladriere",50.630899,3.128914,1,0,OLI:SA:1900,Europe/Paris,0,OLI, +OLI:SP:LAF002,1,"Anatole France",50.635581,3.00935,1,0,OLI:SA:7539,Europe/Paris,0,OLI, +OLI:SP:LAF003,1,"Anatole France",50.634923,3.008438,1,0,OLI:SA:7539,Europe/Paris,0,OLI, +OLI:SP:LAG001,1,"Gambetta",50.649528,3.040295,1,0,OLI:SA:677,Europe/Paris,0,OLI, +OLI:SP:LAG002,1,"Gambetta",50.649613,3.039548,1,0,OLI:SA:677,Europe/Paris,0,OLI, +OLI:SP:LAH001,1,"La Houlette",50.706084,2.955975,1,0,OLI:SA:377,Europe/Paris,0,OLI, +OLI:SP:LAH002,1,"La Houlette",50.706021,2.956158,1,0,OLI:SA:377,Europe/Paris,0,OLI, +OLI:SP:LAL001,1,"Lalau",50.673926,3.066738,1,0,OLI:SA:1180,Europe/Paris,0,OLI, +OLI:SP:LAL002,1,"Lalau",50.674456,3.066576,1,0,OLI:SA:1180,Europe/Paris,0,OLI, +OLI:SP:LAL003,1,"Lalau",50.673526,3.067706,1,0,OLI:SA:1180,Europe/Paris,0,OLI, +OLI:SP:LAM001,1,"Lamartine",50.688654,3.133628,1,0,OLI:SA:2084,Europe/Paris,0,OLI, +OLI:SP:LAM002,1,"Lamartine",50.688762,3.133601,1,0,OLI:SA:2084,Europe/Paris,0,OLI, +OLI:SP:LAN001,1,"Place",50.66703,3.21043,1,0,OLI:SA:682,Europe/Paris,0,OLI, +OLI:SP:LAN002,1,"Place",50.666572,3.210521,1,0,OLI:SA:682,Europe/Paris,0,OLI, +OLI:SP:LAN003,1,"Place",50.667197,3.2096,1,0,OLI:SA:682,Europe/Paris,0,OLI, +OLI:SP:LAP001,1,"La Perdriere",50.646572,2.959316,1,0,OLI:SA:241,Europe/Paris,0,OLI, +OLI:SP:LAP002,1,"La Perdriere",50.646479,2.959949,1,0,OLI:SA:241,Europe/Paris,0,OLI, +OLI:SP:LAQ001,1,"La Quenouille",50.694294,3.089644,1,0,OLI:SA:5780,Europe/Paris,0,OLI, +OLI:SP:LAQ002,1,"La Quenouille",50.693795,3.089044,1,0,OLI:SA:5780,Europe/Paris,0,OLI, +OLI:SP:LAR005,1,"Republique",50.647723,3.037603,1,0,OLI:SA:640,Europe/Paris,0,OLI, +OLI:SP:LAT001,1,"La Terrasse",50.663907,3.126628,1,0,OLI:SA:2073,Europe/Paris,0,OLI, +OLI:SP:LAT012,1,"La Terrasse",50.66404,3.125445,1,0,OLI:SA:2073,Europe/Paris,0,OLI, +OLI:SP:LAV001,1,"Lavoisier",50.675691,3.131233,1,0,OLI:SA:5869,Europe/Paris,0,OLI, +OLI:SP:LAV002,1,"Lavoisier",50.675075,3.130715,1,0,OLI:SA:5869,Europe/Paris,0,OLI, +OLI:SP:LAY001,1,"Lamy",50.630487,3.00419,1,0,OLI:SA:4005,Europe/Paris,0,OLI, +OLI:SP:LAY002,1,"Lamy",50.630282,3.004018,1,0,OLI:SA:4005,Europe/Paris,0,OLI, +OLI:SP:LAZ001,1,"Lazaro",50.679827,3.08344,1,0,OLI:SA:1157,Europe/Paris,0,OLI, +OLI:SP:LAZ002,1,"Lazaro",50.680186,3.083418,1,0,OLI:SA:1157,Europe/Paris,0,OLI, +OLI:SP:LBA001,1,"Le Bas",50.67487,2.96667,1,0,OLI:SA:1298,Europe/Paris,0,OLI, +OLI:SP:LBA002,1,"Le Bas",50.675537,2.966071,1,0,OLI:SA:1298,Europe/Paris,0,OLI, +OLI:SP:LBE001,1,"Courbet",50.60739,3.042578,1,0,OLI:SA:803,Europe/Paris,0,OLI, +OLI:SP:LBE002,1,"Courbet",50.607538,3.04351,1,0,OLI:SA:803,Europe/Paris,0,OLI, +OLI:SP:LBG070,1,"Gare",50.528203,2.804646,1,0,OLI:SA:578,Europe/Paris,0,OLI, +OLI:SP:LBH001,1,"La Bassee Hdv",50.531399,2.804141,1,0,OLI:SA:5682,Europe/Paris,0,OLI, +OLI:SP:LBH003,1,"La Bassee Hdv",50.531406,2.804647,1,0,OLI:SA:5682,Europe/Paris,0,OLI, +OLI:SP:LBL001,1,"Blanchisseurs",50.639133,3.025774,1,0,OLI:SA:652,Europe/Paris,0,OLI, +OLI:SP:LBL002,1,"Blanchisseurs",50.640198,3.027778,1,0,OLI:SA:652,Europe/Paris,0,OLI, +OLI:SP:LBM001,1,"Boulevard De Metz",50.619574,3.040677,1,0,OLI:SA:872,Europe/Paris,0,OLI, +OLI:SP:LBM002,1,"Boulevard De Metz",50.61946,3.040295,1,0,OLI:SA:872,Europe/Paris,0,OLI, +OLI:SP:LBN001,1,"Le Nouveau Monde",50.540977,2.819082,1,0,OLI:SA:6915,Europe/Paris,0,OLI, +OLI:SP:LBN002,1,"Le Nouveau Monde",50.541236,2.819437,1,0,OLI:SA:6915,Europe/Paris,0,OLI, +OLI:SP:LBO001,1,"Lambersart Bourg",50.653675,3.027047,1,0,OLI:SA:7092,Europe/Paris,0,OLI, +OLI:SP:LBO002,1,"Lambersart Bourg",50.653933,3.027432,1,0,OLI:SA:7092,Europe/Paris,0,OLI, +OLI:SP:LBO003,1,"Saint Calixte",50.652271,3.024728,1,0,OLI:SA:5929,Europe/Paris,0,OLI, +OLI:SP:LBO004,1,"Saint Calixte",50.65222,3.024262,1,0,OLI:SA:5929,Europe/Paris,0,OLI, +OLI:SP:LBS001,1,"Saint Roch",50.535961,2.814797,1,0,OLI:SA:5683,Europe/Paris,0,OLI, +OLI:SP:LBS002,1,"Saint Roch",50.536747,2.815663,1,0,OLI:SA:5683,Europe/Paris,0,OLI, +OLI:SP:LBW001,1,"Bauwens",50.683471,3.241722,1,0,OLI:SA:691,Europe/Paris,0,OLI, +OLI:SP:LBW002,1,"Bauwens",50.684239,3.24096,1,0,OLI:SA:691,Europe/Paris,0,OLI, +OLI:SP:LBW003,1,"Bauwens",50.684429,3.24318,1,0,OLI:SA:691,Europe/Paris,0,OLI, +OLI:SP:LCA001,1,"Carnot",50.603137,3.098704,1,0,OLI:SA:1333,Europe/Paris,0,OLI, +OLI:SP:LCA002,1,"Carnot",50.601335,3.097041,1,0,OLI:SA:1333,Europe/Paris,0,OLI, +OLI:SP:LCB001,1,"Colbert",50.629994,3.046028,1,0,OLI:SA:966,Europe/Paris,0,OLI, +OLI:SP:LCB002,1,"Colbert",50.630878,3.045138,1,0,OLI:SA:966,Europe/Paris,0,OLI, +OLI:SP:LCB003,1,"Colbert",50.629498,3.044921,1,0,OLI:SA:966,Europe/Paris,0,OLI, +OLI:SP:LCB005,1,"Colbert",50.630318,3.04434,1,0,OLI:SA:966,Europe/Paris,0,OLI, +OLI:SP:LCD001,1,"Chasseurs De Driant",50.618387,3.03182,1,0,OLI:SA:5999,Europe/Paris,0,OLI, +OLI:SP:LCD002,1,"Chasseurs De Driant",50.619301,3.033567,1,0,OLI:SA:5999,Europe/Paris,0,OLI, +OLI:SP:LCD003,1,"Chasseurs De Driant",50.617967,3.033125,1,0,OLI:SA:5999,Europe/Paris,0,OLI, +OLI:SP:LCE001,1,"La Cessoie",50.658087,3.035363,1,0,OLI:SA:5948,Europe/Paris,0,OLI, +OLI:SP:LCE002,1,"La Cessoie",50.657976,3.035898,1,0,OLI:SA:5948,Europe/Paris,0,OLI, +OLI:SP:LCH001,1,"Chatelet",50.606412,3.010607,1,0,OLI:SA:1056,Europe/Paris,0,OLI, +OLI:SP:LCH002,1,"Chatelet",50.606162,3.010336,1,0,OLI:SA:1056,Europe/Paris,0,OLI, +OLI:SP:LCI001,1,"Wagner",50.60544,3.052658,1,0,OLI:SA:4696,Europe/Paris,0,OLI, +OLI:SP:LCI002,1,"Wagner",50.605299,3.053741,1,0,OLI:SA:4696,Europe/Paris,0,OLI, +OLI:SP:LCL001,1,"Clouet",50.652516,3.030587,1,0,OLI:SA:5930,Europe/Paris,0,OLI, +OLI:SP:LCL002,1,"Clouet",50.65224,3.030329,1,0,OLI:SA:5930,Europe/Paris,0,OLI, +OLI:SP:LCN001,1,"Laennec",50.589457,3.050484,1,0,OLI:SA:6940,Europe/Paris,0,OLI, +OLI:SP:LCN002,1,"Laennec",50.589465,3.050682,1,0,OLI:SA:6940,Europe/Paris,0,OLI, +OLI:SP:LCO002,1,"Conservatoire",50.641977,3.061743,1,0,OLI:SA:4198,Europe/Paris,0,OLI, +OLI:SP:LCR001,1,"Leclerc",50.609583,3.019545,1,0,OLI:SA:1044,Europe/Paris,0,OLI, +OLI:SP:LCR002,1,"Leclerc",50.611095,3.020243,1,0,OLI:SA:1044,Europe/Paris,0,OLI, +OLI:SP:LCT001,1,"Lac De Canteleu",50.635832,3.15527,1,0,OLI:SA:5604,Europe/Paris,0,OLI, +OLI:SP:LCT002,1,"Lac De Canteleu",50.635814,3.155284,1,0,OLI:SA:5604,Europe/Paris,0,OLI, +OLI:SP:LDE001,1,"Descat",50.580945,3.111427,1,0,OLI:SA:740,Europe/Paris,0,OLI, +OLI:SP:LDE002,1,"Descat",50.581686,3.110438,1,0,OLI:SA:740,Europe/Paris,0,OLI, +OLI:SP:LDH001,1,"Dhainaut",50.613465,3.005175,1,0,OLI:SA:6276,Europe/Paris,0,OLI, +OLI:SP:LDH002,1,"Dhainaut",50.613682,3.006475,1,0,OLI:SA:6276,Europe/Paris,0,OLI, +OLI:SP:LDL001,1,"Ch De La Barre",50.606228,3.016271,1,0,OLI:SA:6277,Europe/Paris,0,OLI, +OLI:SP:LDL002,1,"Ch De La Barre",50.606352,3.016527,1,0,OLI:SA:6277,Europe/Paris,0,OLI, +OLI:SP:LDO001,1,"Lion D'Or",50.640157,3.064722,1,0,OLI:SA:871,Europe/Paris,0,OLI, +OLI:SP:LDO002,1,"Lion D'Or",50.640579,3.064615,1,0,OLI:SA:871,Europe/Paris,0,OLI, +OLI:SP:LDV001,1,"De Vinci",50.686024,3.238592,1,0,OLI:SA:696,Europe/Paris,0,OLI, +OLI:SP:LDV002,1,"De Vinci",50.685969,3.238788,1,0,OLI:SA:696,Europe/Paris,0,OLI, +OLI:SP:LEA001,1,"Le Cheneau",50.724154,3.040597,1,0,OLI:SA:1306,Europe/Paris,0,OLI, +OLI:SP:LEA002,1,"Le Cheneau",50.724228,3.040273,1,0,OLI:SA:1306,Europe/Paris,0,OLI, +OLI:SP:LEC001,1,"Place Leclerc",50.628561,3.042552,1,0,OLI:SA:6422,Europe/Paris,0,OLI, +OLI:SP:LEC002,1,"Place Leclerc",50.627952,3.042318,1,0,OLI:SA:6422,Europe/Paris,0,OLI, +OLI:SP:LEC003,1,"Place Leclerc",50.628355,3.042578,1,0,OLI:SA:6422,Europe/Paris,0,OLI, +OLI:SP:LED001,1,"Lotissement Edf",50.558368,2.923547,1,0,OLI:SA:2212,Europe/Paris,0,OLI, +OLI:SP:LED002,1,"Lotissement Edf",50.558413,2.923618,1,0,OLI:SA:2212,Europe/Paris,0,OLI, +OLI:SP:LEF001,1,"Les Francs",50.718713,3.141765,1,0,OLI:SA:1803,Europe/Paris,0,OLI, +OLI:SP:LEF002,1,"Les Francs",50.71874,3.141751,1,0,OLI:SA:1803,Europe/Paris,0,OLI, +OLI:SP:LEG001,1,"Legrand",50.632348,3.088021,1,0,OLI:SA:833,Europe/Paris,0,OLI, +OLI:SP:LEG002,1,"Legrand",50.631712,3.089365,1,0,OLI:SA:833,Europe/Paris,0,OLI, +OLI:SP:LEH001,1,"Le Ham",50.773109,3.089066,1,0,OLI:SA:7569,Europe/Paris,0,OLI, +OLI:SP:LEH002,1,"Le Ham",50.77326,3.089266,1,0,OLI:SA:7569,Europe/Paris,0,OLI, +OLI:SP:LEK003,1,"Laennec",50.665841,3.198384,1,0,OLI:SA:6838,Europe/Paris,0,OLI, +OLI:SP:LEK004,1,"Laennec",50.66633,3.197631,1,0,OLI:SA:6838,Europe/Paris,0,OLI, +OLI:SP:LEK005,1,"Laennec",50.666352,3.19845,1,0,OLI:SA:6838,Europe/Paris,0,OLI, +OLI:SP:LEK006,1,"Laennec",50.66644,3.198635,1,0,OLI:SA:6838,Europe/Paris,0,OLI, +OLI:SP:LEM001,1,"Leon Marlot",50.67353,3.192941,1,0,OLI:SA:1476,Europe/Paris,0,OLI, +OLI:SP:LEM002,1,"Leon Marlot",50.673098,3.191819,1,0,OLI:SA:1476,Europe/Paris,0,OLI, +OLI:SP:LEN001,1,"Leers Nord Belgique",50.687514,3.273467,1,0,OLI:SA:2506,Europe/Paris,0,OLI, +OLI:SP:LEO001,1,"Leo Lagrange",50.694587,2.887316,1,0,OLI:SA:6959,Europe/Paris,0,OLI, +OLI:SP:LEO002,1,"Leo Lagrange",50.694461,2.887399,1,0,OLI:SA:6959,Europe/Paris,0,OLI, +OLI:SP:LEO003,1,"Leo Lagrange",50.694916,2.887941,1,0,OLI:SA:6959,Europe/Paris,0,OLI, +OLI:SP:LEP001,1,"Le Pacau",50.725742,3.009801,1,0,OLI:SA:1318,Europe/Paris,0,OLI, +OLI:SP:LEP002,1,"Le Pacau",50.726081,3.010272,1,0,OLI:SA:1318,Europe/Paris,0,OLI, +OLI:SP:LER001,1,"Eglise",50.680118,3.247676,1,0,OLI:SA:687,Europe/Paris,0,OLI, +OLI:SP:LER003,1,"Eglise",50.681207,3.245889,1,0,OLI:SA:687,Europe/Paris,0,OLI, +OLI:SP:LES001,1,"Clos Du Rivage",50.708287,3.001769,1,0,OLI:SA:1307,Europe/Paris,0,OLI, +OLI:SP:LES002,1,"Clos Du Rivage",50.707629,3.002353,1,0,OLI:SA:1307,Europe/Paris,0,OLI, +OLI:SP:LET001,1,"Le Tilleul",50.725296,3.020873,1,0,OLI:SA:1308,Europe/Paris,0,OLI, +OLI:SP:LET002,1,"Le Tilleul",50.724678,3.020681,1,0,OLI:SA:1308,Europe/Paris,0,OLI, +OLI:SP:LEU001,1,"Lille Europe",50.639287,3.075317,1,0,OLI:SA:7536,Europe/Paris,0,OLI, +OLI:SP:LEV001,1,"Place L.Orval",50.532124,2.809327,1,0,OLI:SA:5681,Europe/Paris,0,OLI, +OLI:SP:LEV002,1,"Place L.Orval",50.53207,2.809327,1,0,OLI:SA:5681,Europe/Paris,0,OLI, +OLI:SP:LEY001,1,"Haley",50.605414,3.149585,1,0,OLI:SA:7193,Europe/Paris,0,OLI, +OLI:SP:LEY002,1,"Haley",50.605628,3.149898,1,0,OLI:SA:7193,Europe/Paris,0,OLI, +OLI:SP:LEZ001,1,"Mairie",50.614682,3.11749,1,0,OLI:SA:751,Europe/Paris,0,OLI, +OLI:SP:LEZ002,1,"Mairie",50.614456,3.11626,1,0,OLI:SA:751,Europe/Paris,0,OLI, +OLI:SP:LFA001,1,"Faidherbe",50.653269,3.052778,1,0,OLI:SA:1594,Europe/Paris,0,OLI, +OLI:SP:LFA002,1,"Faidherbe",50.652116,3.052,1,0,OLI:SA:1594,Europe/Paris,0,OLI, +OLI:SP:LFG001,1,"Lafargue",50.668957,3.143222,1,0,OLI:SA:1917,Europe/Paris,0,OLI, +OLI:SP:LFG002,1,"Lafargue",50.668689,3.143034,1,0,OLI:SA:1917,Europe/Paris,0,OLI, +OLI:SP:LFU001,1,"Fulton",50.623058,3.036933,1,0,OLI:SA:969,Europe/Paris,0,OLI, +OLI:SP:LFU002,1,"Fulton",50.623584,3.037617,1,0,OLI:SA:969,Europe/Paris,0,OLI, +OLI:SP:LGH001,1,"Ghesquiere",50.597536,2.99972,1,0,OLI:SA:5523,Europe/Paris,0,OLI, +OLI:SP:LGH002,1,"Ghesquiere",50.597177,2.999785,1,0,OLI:SA:5523,Europe/Paris,0,OLI, +OLI:SP:LGO001,1,"Alliance Nord-Ouest",50.658994,3.03189,1,0,OLI:SA:634,Europe/Paris,0,OLI, +OLI:SP:LGO002,1,"Alliance Nord-Ouest",50.65893,3.032101,1,0,OLI:SA:634,Europe/Paris,0,OLI, +OLI:SP:LGP001,1,"Grand Palais",50.628989,3.075179,1,0,OLI:SA:6841,Europe/Paris,0,OLI, +OLI:SP:LGP002,1,"Grand Palais",50.629089,3.074969,1,0,OLI:SA:6841,Europe/Paris,0,OLI, +OLI:SP:LGP098,1,"Grand Palais",50.629215,3.074886,1,0,OLI:SA:6841,Europe/Paris,0,OLI, +OLI:SP:LGP099,1,"Grand Palais",50.629215,3.074886,1,0,OLI:SA:6841,Europe/Paris,0,OLI, +OLI:SP:LGU001,1,"Guynemer",50.654106,3.036704,1,0,OLI:SA:3973,Europe/Paris,0,OLI, +OLI:SP:LGU002,1,"Guynemer",50.654276,3.036622,1,0,OLI:SA:3973,Europe/Paris,0,OLI, +OLI:SP:LGY001,1,"Ligny Le Grand",50.5724,2.824343,1,0,OLI:SA:563,Europe/Paris,0,OLI, +OLI:SP:LGY002,1,"Ligny-Le-Grand",50.572598,2.824007,1,0,OLI:SA:564,Europe/Paris,0,OLI, +OLI:SP:LHD001,1,"Mairie De Lille",50.630356,3.068599,1,0,OLI:SA:6844,Europe/Paris,0,OLI, +OLI:SP:LHD002,1,"Mairie De Lille",50.630319,3.068753,1,0,OLI:SA:6844,Europe/Paris,0,OLI, +OLI:SP:LHO001,1,"Hondschoote",50.667729,3.038617,1,0,OLI:SA:5936,Europe/Paris,0,OLI, +OLI:SP:LHO002,1,"Hondschoote",50.666617,3.036978,1,0,OLI:SA:5936,Europe/Paris,0,OLI, +OLI:SP:LIC001,1,"Cimetiere",50.741072,3.080102,1,0,OLI:SA:991,Europe/Paris,0,OLI, +OLI:SP:LIC002,1,"Cimetiere",50.742016,3.079805,1,0,OLI:SA:991,Europe/Paris,0,OLI, +OLI:SP:LIC003,1,"Cimetiere",50.741798,3.080198,1,0,OLI:SA:991,Europe/Paris,0,OLI, +OLI:SP:LIC006,1,"Cimetiere",50.741753,3.080268,1,0,OLI:SA:991,Europe/Paris,0,OLI, +OLI:SP:LIE001,1,"Saint Lievin",50.705404,3.222896,1,0,OLI:SA:2194,Europe/Paris,0,OLI, +OLI:SP:LIE002,1,"Saint Lievin",50.704916,3.222209,1,0,OLI:SA:2194,Europe/Paris,0,OLI, +OLI:SP:LIG004,1,"Gare Lille Flandres",50.637808,3.071994,1,0,OLI:SA:920,Europe/Paris,0,OLI, +OLI:SP:LIG005,1,"Gare Lille Flandres",50.637914,3.07225,1,0,OLI:SA:920,Europe/Paris,0,OLI, +OLI:SP:LIG006,1,"Gare Lille Flandres",50.637302,3.071084,1,0,OLI:SA:920,Europe/Paris,0,OLI, +OLI:SP:LIG007,1,"Gare Tournai",50.63539,3.069871,1,0,OLI:SA:4204,Europe/Paris,0,OLI, +OLI:SP:LIG011,1,"Gare Lille Flandres",50.636405,3.071141,1,0,OLI:SA:920,Europe/Paris,0,OLI, +OLI:SP:LIG013,1,"Gare Tournai",50.635158,3.069698,1,0,OLI:SA:4204,Europe/Paris,0,OLI, +OLI:SP:LIG022,1,"Gare Lille Flandres",50.636405,3.071141,1,0,OLI:SA:920,Europe/Paris,0,OLI, +OLI:SP:LIG036,1,"Gare Lille Flandres",50.637847,3.071459,1,0,OLI:SA:920,Europe/Paris,0,OLI, +OLI:SP:LIG061,1,"Gare Lille Flandres",50.636405,3.071141,1,0,OLI:SA:920,Europe/Paris,0,OLI, +OLI:SP:LIG091,1,"Gare Lille Flandres",50.637179,3.070701,1,0,OLI:SA:920,Europe/Paris,0,OLI, +OLI:SP:LIG098,1,"Gare Lille Flandres",50.637096,3.071067,1,0,OLI:SA:920,Europe/Paris,0,OLI, +OLI:SP:LIG099,1,"Gare Lille Flandres",50.637096,3.071067,1,0,OLI:SA:920,Europe/Paris,0,OLI, +OLI:SP:LIG111,1,"Gare Lille Flandres",50.636405,3.071141,1,0,OLI:SA:920,Europe/Paris,0,OLI, +OLI:SP:LIG112,1,"Gare Lille Flandres",50.637145,3.070405,1,0,OLI:SA:920,Europe/Paris,0,OLI, +OLI:SP:LIG114,1,"Gare Lille Flandres",50.637959,3.070826,1,0,OLI:SA:920,Europe/Paris,0,OLI, +OLI:SP:LIG115,1,"Gare Lille Flandres",50.638165,3.070815,1,0,OLI:SA:920,Europe/Paris,0,OLI, +OLI:SP:LIG398,1,"Gare Lille Flandres",50.637096,3.071067,1,0,OLI:SA:920,Europe/Paris,0,OLI, +OLI:SP:LIG399,1,"Gare Lille Flandres",50.637096,3.071067,1,0,OLI:SA:920,Europe/Paris,0,OLI, +OLI:SP:LIO001,1,"Parc Des Lions",50.747184,3.131523,1,0,OLI:SA:2663,Europe/Paris,0,OLI, +OLI:SP:LIO002,1,"Parc Des Lions",50.746616,3.132009,1,0,OLI:SA:2663,Europe/Paris,0,OLI, +OLI:SP:LIO003,1,"Parc Des Lions",50.747484,3.132235,1,0,OLI:SA:2663,Europe/Paris,0,OLI, +OLI:SP:LIP001,1,"Linselles Place",50.738554,3.079711,1,0,OLI:SA:5503,Europe/Paris,0,OLI, +OLI:SP:LIP002,1,"Linselles Place",50.7389,3.078897,1,0,OLI:SA:5503,Europe/Paris,0,OLI, +OLI:SP:LIR001,1,"Lierre",50.75744,3.11947,1,0,OLI:SA:5511,Europe/Paris,0,OLI, +OLI:SP:LIR002,1,"Lierre",50.756989,3.118459,1,0,OLI:SA:5511,Europe/Paris,0,OLI, +OLI:SP:LIU001,1,"Eglise St Amand",50.738118,3.233738,1,0,OLI:SA:2466,Europe/Paris,0,OLI, +OLI:SP:LIU002,1,"Eglise St Amand",50.73803,3.23351,1,0,OLI:SA:2466,Europe/Paris,0,OLI, +OLI:SP:LJO001,1,"Lotissement Joffre",50.73093,3.07981,1,0,OLI:SA:983,Europe/Paris,0,OLI, +OLI:SP:LJO002,1,"Lotissement Joffre",50.730939,3.079866,1,0,OLI:SA:983,Europe/Paris,0,OLI, +OLI:SP:LJU001,1,"Jussieu",50.650532,3.035751,1,0,OLI:SA:5947,Europe/Paris,0,OLI, +OLI:SP:LJU002,1,"Jussieu",50.650586,3.035611,1,0,OLI:SA:5947,Europe/Paris,0,OLI, +OLI:SP:LLA001,1,"Leo Lagrange",50.630396,3.009379,1,0,OLI:SA:996,Europe/Paris,0,OLI, +OLI:SP:LLA002,1,"Leo Lagrange",50.630551,3.009014,1,0,OLI:SA:996,Europe/Paris,0,OLI, +OLI:SP:LLE002,1,"Lemire",50.653876,3.032779,1,0,OLI:SA:664,Europe/Paris,0,OLI, +OLI:SP:LLI001,1,"Liberte",50.654926,3.029633,1,0,OLI:SA:641,Europe/Paris,0,OLI, +OLI:SP:LLI002,1,"Liberte",50.654989,3.029549,1,0,OLI:SA:641,Europe/Paris,0,OLI, +OLI:SP:LLO001,1,"Lomme-Lambersart",50.641923,3.017575,1,0,OLI:SA:661,Europe/Paris,0,OLI, +OLI:SP:LLO002,1,"Lomme-Lambersart",50.640769,3.018673,1,0,OLI:SA:661,Europe/Paris,0,OLI, +OLI:SP:LLO098,1,"Lomme-Lambersart",50.640822,3.018871,1,0,OLI:SA:661,Europe/Paris,0,OLI, +OLI:SP:LLO099,1,"Lomme-Lambersart",50.640822,3.018871,1,0,OLI:SA:661,Europe/Paris,0,OLI, +OLI:SP:LLY001,1,"Rue Du Pilly",50.578647,2.858498,1,0,OLI:SA:528,Europe/Paris,0,OLI, +OLI:SP:LLY002,1,"Rue Du Pilly",50.578558,2.858342,1,0,OLI:SA:528,Europe/Paris,0,OLI, +OLI:SP:LMA001,1,"Hotel De Ville",50.648329,3.022303,1,0,OLI:SA:660,Europe/Paris,0,OLI, +OLI:SP:LMA002,1,"Hotel De Ville",50.648437,3.02215,1,0,OLI:SA:660,Europe/Paris,0,OLI, +OLI:SP:LMB001,1,"Mirabeau",50.611968,3.022919,1,0,OLI:SA:1050,Europe/Paris,0,OLI, +OLI:SP:LMB002,1,"Mirabeau",50.611459,3.024139,1,0,OLI:SA:1050,Europe/Paris,0,OLI, +OLI:SP:LME001,1,"Eglise Du Marais",50.630052,3.006652,1,0,OLI:SA:1000,Europe/Paris,0,OLI, +OLI:SP:LME002,1,"Eglise Du Marais",50.631689,3.007563,1,0,OLI:SA:1000,Europe/Paris,0,OLI, +OLI:SP:LMI005,1,"Min",50.636629,2.967077,1,0,OLI:SA:3953,Europe/Paris,0,OLI, +OLI:SP:LMI006,1,"Min",50.636416,2.966609,1,0,OLI:SA:3953,Europe/Paris,0,OLI, +OLI:SP:LMO002,1,"Molinel Paris",50.634573,3.068463,1,0,OLI:SA:832,Europe/Paris,0,OLI, +OLI:SP:LMQ001,1,"Moulin De Lesquin",50.587132,3.087215,1,0,OLI:SA:347,Europe/Paris,0,OLI, +OLI:SP:LMQ002,1,"Moulin Lesquin",50.588039,3.086961,1,0,OLI:SA:5988,Europe/Paris,0,OLI, +OLI:SP:LMQ003,1,"Moulin Lesquin",50.587601,3.088195,1,0,OLI:SA:5988,Europe/Paris,0,OLI, +OLI:SP:LMR001,1,"La Marliere",50.604309,3.012806,1,0,OLI:SA:6273,Europe/Paris,0,OLI, +OLI:SP:LMR002,1,"La Marliere",50.604679,3.014108,1,0,OLI:SA:6273,Europe/Paris,0,OLI, +OLI:SP:LMR003,1,"La Marliere",50.603824,3.012983,1,0,OLI:SA:6273,Europe/Paris,0,OLI, +OLI:SP:LMT001,1,"D. Penitentiaire",50.618816,2.994249,1,0,OLI:SA:5667,Europe/Paris,0,OLI, +OLI:SP:LMT002,1,"D. Penitentiaire",50.61878,2.994305,1,0,OLI:SA:5667,Europe/Paris,0,OLI, +OLI:SP:LNM001,1,"Lotissement Nouveau Monde",50.557407,2.908566,1,0,OLI:SA:1579,Europe/Paris,0,OLI, +OLI:SP:LNM002,1,"Lotissement Nouveau Monde",50.556882,2.90949,1,0,OLI:SA:1579,Europe/Paris,0,OLI, +OLI:SP:LOC001,1,"L'Octroi",50.687264,2.898192,1,0,OLI:SA:5582,Europe/Paris,0,OLI, +OLI:SP:LOC002,1,"L'Octroi",50.687496,2.898463,1,0,OLI:SA:5582,Europe/Paris,0,OLI, +OLI:SP:LOD001,1,"La Fonderie",50.675824,3.145253,1,0,OLI:SA:300,Europe/Paris,0,OLI, +OLI:SP:LOD002,1,"La Fonderie",50.675621,3.144798,1,0,OLI:SA:300,Europe/Paris,0,OLI, +OLI:SP:LOE001,1,"Hegel",50.629142,3.015638,1,0,OLI:SA:2520,Europe/Paris,0,OLI, +OLI:SP:LOE002,1,"Hegel",50.627401,3.014176,1,0,OLI:SA:2520,Europe/Paris,0,OLI, +OLI:SP:LOE015,1,"Hegel",50.627757,3.016296,1,0,OLI:SA:2520,Europe/Paris,0,OLI, +OLI:SP:LOE090,1,"Hegel",50.628862,3.016001,1,0,OLI:SA:2520,Europe/Paris,0,OLI, +OLI:SP:LOG001,1,"Longchamp",50.615246,3.002647,1,0,OLI:SA:6282,Europe/Paris,0,OLI, +OLI:SP:LOG002,1,"Longchamp",50.614841,3.002825,1,0,OLI:SA:6282,Europe/Paris,0,OLI, +OLI:SP:LOI001,1,"Le Boulois",50.729255,3.113036,1,0,OLI:SA:7033,Europe/Paris,0,OLI, +OLI:SP:LOI002,1,"Le Boulois",50.72888,3.112861,1,0,OLI:SA:7033,Europe/Paris,0,OLI, +OLI:SP:LOL001,1,"Les Oliveaux",50.60679,3.005439,1,0,OLI:SA:1078,Europe/Paris,0,OLI, +OLI:SP:LOL003,1,"Les Oliveaux",50.606583,3.005478,1,0,OLI:SA:1078,Europe/Paris,0,OLI, +OLI:SP:LOM001,1,"Marais",50.630511,3.001384,1,0,OLI:SA:1008,Europe/Paris,0,OLI, +OLI:SP:LOM002,1,"Marais",50.630458,3.001369,1,0,OLI:SA:1008,Europe/Paris,0,OLI, +OLI:SP:LON001,1,"Rue De Londres",50.70261,3.133766,1,0,OLI:SA:1247,Europe/Paris,0,OLI, +OLI:SP:LON002,1,"Rue De Londres",50.702439,3.133932,1,0,OLI:SA:1247,Europe/Paris,0,OLI, +OLI:SP:LOO001,1,"Loos Mairie",50.615093,3.015983,1,0,OLI:SA:6284,Europe/Paris,0,OLI, +OLI:SP:LOO002,1,"Loos Mairie",50.615093,3.017506,1,0,OLI:SA:6284,Europe/Paris,0,OLI, +OLI:SP:LOO003,1,"Loos Mairie",50.615593,3.017992,1,0,OLI:SA:6284,Europe/Paris,0,OLI, +OLI:SP:LOP008,1,"Mairie",50.669805,2.990403,1,0,OLI:SA:1037,Europe/Paris,0,OLI, +OLI:SP:LOP009,1,"Mairie",50.669832,2.99046,1,0,OLI:SA:1037,Europe/Paris,0,OLI, +OLI:SP:LOR001,1,"Lorthiois",50.71471,3.135216,1,0,OLI:SA:1243,Europe/Paris,0,OLI, +OLI:SP:LOR002,1,"Lorthiois",50.714347,3.134447,1,0,OLI:SA:1243,Europe/Paris,0,OLI, +OLI:SP:LOS001,1,"Loisel",50.780671,3.137489,1,0,OLI:SA:2685,Europe/Paris,0,OLI, +OLI:SP:LPA001,1,"La Paix",50.669567,2.975918,1,0,OLI:SA:1290,Europe/Paris,0,OLI, +OLI:SP:LPA002,1,"La Paix",50.669354,2.975492,1,0,OLI:SA:1290,Europe/Paris,0,OLI, +OLI:SP:LPB001,1,"Lp Boilly",50.535499,2.811104,1,0,OLI:SA:6306,Europe/Paris,0,OLI, +OLI:SP:LPC080,1,"Bois Blancs",50.633772,3.031681,1,0,OLI:SA:7096,Europe/Paris,0,OLI, +OLI:SP:LPC098,1,"Bois Blancs",50.634125,3.030981,1,0,OLI:SA:7096,Europe/Paris,0,OLI, +OLI:SP:LPC099,1,"Bois Blancs",50.634125,3.030981,1,0,OLI:SA:7096,Europe/Paris,0,OLI, +OLI:SP:LPH001,1,"La Phalecque",50.633025,2.989203,1,0,OLI:SA:5965,Europe/Paris,0,OLI, +OLI:SP:LPH002,1,"La Phalecque",50.632972,2.98916,1,0,OLI:SA:5965,Europe/Paris,0,OLI, +OLI:SP:LPI001,1,"Le Pincon",50.657574,3.219536,1,0,OLI:SA:1708,Europe/Paris,0,OLI, +OLI:SP:LPI002,1,"Le Pincon",50.657672,3.21951,1,0,OLI:SA:1708,Europe/Paris,0,OLI, +OLI:SP:LPL001,1,"Le Plaquet",50.701771,2.980454,1,0,OLI:SA:1319,Europe/Paris,0,OLI, +OLI:SP:LPL002,1,"Le Plaquet",50.701904,2.980682,1,0,OLI:SA:1319,Europe/Paris,0,OLI, +OLI:SP:LPP001,1,"Le Plat Parez",50.714913,3.023585,1,0,OLI:SA:5507,Europe/Paris,0,OLI, +OLI:SP:LPP002,1,"Le Plat Parez",50.7143,3.024028,1,0,OLI:SA:5507,Europe/Paris,0,OLI, +OLI:SP:LPT001,1,"La Chapelette",50.692645,2.940276,1,0,OLI:SA:382,Europe/Paris,0,OLI, +OLI:SP:LPT002,1,"La Chapelette",50.692302,2.940808,1,0,OLI:SA:382,Europe/Paris,0,OLI, +OLI:SP:LPX001,1,"La Paix",50.608357,3.009167,1,0,OLI:SA:1062,Europe/Paris,0,OLI, +OLI:SP:LPX002,1,"La Paix",50.60836,3.008688,1,0,OLI:SA:1062,Europe/Paris,0,OLI, +OLI:SP:LPZ001,1,"P.S. De Lezennes",50.621028,3.095254,1,0,OLI:SA:483,Europe/Paris,0,OLI, +OLI:SP:LPZ002,1,"P.S. De Lezennes",50.621493,3.094034,1,0,OLI:SA:483,Europe/Paris,0,OLI, +OLI:SP:LQS001,1,"Le Quesne",50.673503,3.107004,1,0,OLI:SA:1105,Europe/Paris,0,OLI, +OLI:SP:LQS012,1,"Le Quesne",50.672906,3.106345,1,0,OLI:SA:1105,Europe/Paris,0,OLI, +OLI:SP:LRD001,1,"Rue De Londres",50.61681,3.023366,1,0,OLI:SA:817,Europe/Paris,0,OLI, +OLI:SP:LRD002,1,"Rue De Londres",50.617065,3.024371,1,0,OLI:SA:817,Europe/Paris,0,OLI, +OLI:SP:LRE001,1,"Republique",50.60842,3.017387,1,0,OLI:SA:1068,Europe/Paris,0,OLI, +OLI:SP:LRE002,1,"Republique",50.609573,3.016416,1,0,OLI:SA:1068,Europe/Paris,0,OLI, +OLI:SP:LRO001,1,"Clinique Saint Roch",50.735162,3.115064,1,0,OLI:SA:5192,Europe/Paris,0,OLI, +OLI:SP:LRO002,1,"Clinique Saint Roch",50.734044,3.114609,1,0,OLI:SA:5192,Europe/Paris,0,OLI, +OLI:SP:LRO003,1,"Clinique Saint Roch",50.735051,3.114215,1,0,OLI:SA:5192,Europe/Paris,0,OLI, +OLI:SP:LRP001,1,"Rue De Lompret",50.653579,3.012005,1,0,OLI:SA:5925,Europe/Paris,0,OLI, +OLI:SP:LRP002,1,"Rue De Lompret",50.653405,3.012651,1,0,OLI:SA:5925,Europe/Paris,0,OLI, +OLI:SP:LRS001,1,"L'Ours",50.744926,3.211115,1,0,OLI:SA:2840,Europe/Paris,0,OLI, +OLI:SP:LRV001,1,"Leverie",50.667133,3.203488,1,0,OLI:SA:7097,Europe/Paris,0,OLI, +OLI:SP:LRV002,1,"Leverie",50.667177,3.203517,1,0,OLI:SA:7097,Europe/Paris,0,OLI, +OLI:SP:LSG001,1,"Gare",50.590263,3.116081,1,0,OLI:SA:2530,Europe/Paris,0,OLI, +OLI:SP:LSG002,1,"Gare",50.590362,3.115998,1,0,OLI:SA:2530,Europe/Paris,0,OLI, +OLI:SP:LSM001,1,"Samain",50.66421,3.039048,1,0,OLI:SA:5933,Europe/Paris,0,OLI, +OLI:SP:LSM002,1,"Samain",50.664421,3.039798,1,0,OLI:SA:5933,Europe/Paris,0,OLI, +OLI:SP:LSS002,1,"Recherche",50.602786,3.038284,1,0,OLI:SA:6632,Europe/Paris,0,OLI, +OLI:SP:LTA001,1,"Voltaire",50.64272,3.055914,1,0,OLI:SA:6731,Europe/Paris,0,OLI, +OLI:SP:LTA002,1,"Voltaire",50.644007,3.058175,1,0,OLI:SA:6731,Europe/Paris,0,OLI, +OLI:SP:LTA004,1,"Voltaire",50.642612,3.055955,1,0,OLI:SA:6731,Europe/Paris,0,OLI, +OLI:SP:LTE001,1,"Le Temple",50.670426,2.97799,1,0,OLI:SA:5819,Europe/Paris,0,OLI, +OLI:SP:LTE003,1,"Le Temple",50.67016,2.97738,1,0,OLI:SA:5819,Europe/Paris,0,OLI, +OLI:SP:LTI001,1,"Cimetiere",50.591799,3.101463,1,0,OLI:SA:736,Europe/Paris,0,OLI, +OLI:SP:LTI002,1,"Cimetiere",50.591692,3.10139,1,0,OLI:SA:736,Europe/Paris,0,OLI, +OLI:SP:LTL001,1,"Le Tilleul",50.585109,3.167771,1,0,OLI:SA:2559,Europe/Paris,0,OLI, +OLI:SP:LTL002,1,"Le Tilleul",50.585053,3.16808,1,0,OLI:SA:2559,Europe/Paris,0,OLI, +OLI:SP:LTQ001,1,"Le Touquet",50.702219,3.055513,1,0,OLI:SA:2252,Europe/Paris,0,OLI, +OLI:SP:LTQ002,1,"Le Touquet",50.702697,3.05658,1,0,OLI:SA:2252,Europe/Paris,0,OLI, +OLI:SP:LTR001,1,"Latte",50.750776,3.130859,1,0,OLI:SA:7190,Europe/Paris,0,OLI, +OLI:SP:LTR002,1,"Latte",50.750713,3.13083,1,0,OLI:SA:7190,Europe/Paris,0,OLI, +OLI:SP:LUC002,1,"La Carpe",50.740831,3.230748,1,0,OLI:SA:2471,Europe/Paris,0,OLI, +OLI:SP:LUC003,1,"Bocle",50.743224,3.23342,1,0,OLI:SA:2467,Europe/Paris,0,OLI, +OLI:SP:LUI001,1,"Au Chevalier",50.734554,3.23301,1,0,OLI:SA:2470,Europe/Paris,0,OLI, +OLI:SP:LUI002,1,"Au Chevalier",50.734456,3.232923,1,0,OLI:SA:2470,Europe/Paris,0,OLI, +OLI:SP:LUM001,1,"Lumiere",50.735865,3.14265,1,0,OLI:SA:1823,Europe/Paris,0,OLI, +OLI:SP:LUM002,1,"Lumiere",50.736283,3.143278,1,0,OLI:SA:1823,Europe/Paris,0,OLI, +OLI:SP:LUR001,1,"Denis Papin",50.733006,3.143663,1,0,OLI:SA:7212,Europe/Paris,0,OLI, +OLI:SP:LUR002,1,"Denis Papin",50.733071,3.143325,1,0,OLI:SA:7212,Europe/Paris,0,OLI, +OLI:SP:LUT001,1,"Rue Lutun",50.697928,2.915908,1,0,OLI:SA:5653,Europe/Paris,0,OLI, +OLI:SP:LUT002,1,"Rue Lutun",50.698552,2.916692,1,0,OLI:SA:5653,Europe/Paris,0,OLI, +OLI:SP:LVA001,1,"Valmy",50.611229,2.993938,1,0,OLI:SA:6260,Europe/Paris,0,OLI, +OLI:SP:LVA002,1,"Valmy",50.611343,2.994334,1,0,OLI:SA:6260,Europe/Paris,0,OLI, +OLI:SP:LVE001,1,"Verne",50.614514,3.056397,1,0,OLI:SA:6299,Europe/Paris,0,OLI, +OLI:SP:LVE002,1,"Verne",50.614618,3.055566,1,0,OLI:SA:6299,Europe/Paris,0,OLI, +OLI:SP:LVI001,1,"Victoire",50.646616,3.023761,1,0,OLI:SA:633,Europe/Paris,0,OLI, +OLI:SP:LVI002,1,"Victoire",50.646455,3.023816,1,0,OLI:SA:633,Europe/Paris,0,OLI, +OLI:SP:LVO002,1,"Lavoisier",50.642038,3.022796,1,0,OLI:SA:635,Europe/Paris,0,OLI, +OLI:SP:LVR001,1,"Lorival",50.566437,3.034874,1,0,OLI:SA:2533,Europe/Paris,0,OLI, +OLI:SP:LYC001,1,"Lycee Gambetta",50.712886,3.158977,1,0,OLI:SA:1829,Europe/Paris,0,OLI, +OLI:SP:LYC002,1,"Lycee Gambetta",50.71302,3.15912,1,0,OLI:SA:1829,Europe/Paris,0,OLI, +OLI:SP:LYE001,1,"Lycee D'Etat",50.687514,2.872201,1,0,OLI:SA:116,Europe/Paris,0,OLI, +OLI:SP:LYE002,1,"Lycee D'Etat",50.687362,2.871931,1,0,OLI:SA:116,Europe/Paris,0,OLI, +OLI:SP:LZN098,1,"Square Flandres (Lezennes)",50.625258,3.115992,1,0,OLI:SA:747,Europe/Paris,0,OLI, +OLI:SP:LZN099,1,"Square Flandres (Lezennes)",50.625231,3.116118,1,0,OLI:SA:747,Europe/Paris,0,OLI, +OLI:SP:MA4001,1,"Place",50.67623,3.092308,1,0,OLI:SA:1133,Europe/Paris,0,OLI, +OLI:SP:MA4031,1,"Place",50.675853,3.092416,1,0,OLI:SA:1133,Europe/Paris,0,OLI, +OLI:SP:MAB001,1,"Buisson",50.657113,3.089691,1,0,OLI:SA:6629,Europe/Paris,0,OLI, +OLI:SP:MAB021,1,"Buisson",50.65683,3.089122,1,0,OLI:SA:6629,Europe/Paris,0,OLI, +OLI:SP:MAB032,1,"Buisson",50.656333,3.088254,1,0,OLI:SA:6629,Europe/Paris,0,OLI, +OLI:SP:MAC001,1,"Mackellerie",50.694698,3.15454,1,0,OLI:SA:4432,Europe/Paris,0,OLI, +OLI:SP:MAC002,1,"Mackellerie",50.694601,3.155738,1,0,OLI:SA:4432,Europe/Paris,0,OLI, +OLI:SP:MAD001,1,"Ste M. Madeleine",50.627533,2.956583,1,0,OLI:SA:5888,Europe/Paris,0,OLI, +OLI:SP:MAD002,1,"Ste M. Madeleine",50.627461,2.956582,1,0,OLI:SA:5888,Europe/Paris,0,OLI, +OLI:SP:MAF001,1,"Marechal Foch",50.648347,3.025492,1,0,OLI:SA:3985,Europe/Paris,0,OLI, +OLI:SP:MAF002,1,"Marechal Foch",50.647933,3.025656,1,0,OLI:SA:3985,Europe/Paris,0,OLI, +OLI:SP:MAG001,1,"Magasin",50.645422,3.053992,1,0,OLI:SA:6970,Europe/Paris,0,OLI, +OLI:SP:MAG002,1,"Magasin",50.646188,3.055019,1,0,OLI:SA:6970,Europe/Paris,0,OLI, +OLI:SP:MAH001,1,"Hallennes Mairie",50.614259,2.959675,1,0,OLI:SA:5715,Europe/Paris,0,OLI, +OLI:SP:MAH002,1,"Hallennes Mairie",50.613986,2.960391,1,0,OLI:SA:5715,Europe/Paris,0,OLI, +OLI:SP:MAH003,1,"St Vaast",50.615166,2.959545,1,0,OLI:SA:5714,Europe/Paris,0,OLI, +OLI:SP:MAH004,1,"St Vaast",50.615351,2.960069,1,0,OLI:SA:5714,Europe/Paris,0,OLI, +OLI:SP:MAI001,1,"Mairie",50.584109,2.889849,1,0,OLI:SA:5704,Europe/Paris,0,OLI, +OLI:SP:MAI002,1,"Mairie",50.584065,2.889736,1,0,OLI:SA:5704,Europe/Paris,0,OLI, +OLI:SP:MAL001,1,"Cat Malecot",50.741755,3.012477,1,0,OLI:SA:265,Europe/Paris,0,OLI, +OLI:SP:MAL002,1,"Cat Malecot",50.742132,3.012453,1,0,OLI:SA:265,Europe/Paris,0,OLI, +OLI:SP:MAM021,1,"Alfred Mongy",50.68785,3.175353,1,0,OLI:SA:7239,Europe/Paris,0,OLI, +OLI:SP:MAM032,1,"Alfred Mongy",50.687425,3.174485,1,0,OLI:SA:7239,Europe/Paris,0,OLI, +OLI:SP:MAM033,1,"Alfred Mongy",50.687707,3.175266,1,0,OLI:SA:7239,Europe/Paris,0,OLI, +OLI:SP:MAN001,1,"Ecole J. Manuel",50.690696,3.120147,1,0,OLI:SA:5991,Europe/Paris,0,OLI, +OLI:SP:MAN002,1,"Ecole J. Manuel",50.690616,3.11999,1,0,OLI:SA:5991,Europe/Paris,0,OLI, +OLI:SP:MAO001,1,"Cense Manoir",50.777739,3.119067,1,0,OLI:SA:4124,Europe/Paris,0,OLI, +OLI:SP:MAQ001,1,"Les Alouettes",50.678644,3.062205,1,0,OLI:SA:1183,Europe/Paris,0,OLI, +OLI:SP:MAR001,1,"Voltaire",50.713745,3.193673,1,0,OLI:SA:5473,Europe/Paris,0,OLI, +OLI:SP:MAR002,1,"Voltaire",50.714675,3.192813,1,0,OLI:SA:5473,Europe/Paris,0,OLI, +OLI:SP:MAS001,1,"Massena",50.623207,3.162593,1,0,OLI:SA:5606,Europe/Paris,0,OLI, +OLI:SP:MAS002,1,"Massena",50.622791,3.16301,1,0,OLI:SA:5606,Europe/Paris,0,OLI, +OLI:SP:MAT001,1,"Maternite",50.685775,2.867692,1,0,OLI:SA:6955,Europe/Paris,0,OLI, +OLI:SP:MAT002,1,"Maternite",50.685713,2.867607,1,0,OLI:SA:6955,Europe/Paris,0,OLI, +OLI:SP:MAT003,1,"Maternite",50.685762,2.868568,1,0,OLI:SA:6955,Europe/Paris,0,OLI, +OLI:SP:MAT004,1,"Maternite",50.686348,2.867896,1,0,OLI:SA:6955,Europe/Paris,0,OLI, +OLI:SP:MAV001,1,"Marais",50.563284,2.927309,1,0,OLI:SA:2220,Europe/Paris,0,OLI, +OLI:SP:MAV002,1,"Marais",50.563078,2.927335,1,0,OLI:SA:2220,Europe/Paris,0,OLI, +OLI:SP:MAW001,1,"Marais",50.581519,3.028222,1,0,OLI:SA:5559,Europe/Paris,0,OLI, +OLI:SP:MAX001,1,"Marx Dormoy",50.599166,2.960587,1,0,OLI:SA:6850,Europe/Paris,0,OLI, +OLI:SP:MAX002,1,"Marx Dormoy",50.59935,2.961449,1,0,OLI:SA:6850,Europe/Paris,0,OLI, +OLI:SP:MAX003,1,"Marx Dormoy",50.600693,2.963777,1,0,OLI:SA:6850,Europe/Paris,0,OLI, +OLI:SP:MAX004,1,"Marx Dormoy",50.60071,2.963848,1,0,OLI:SA:6850,Europe/Paris,0,OLI, +OLI:SP:MBA001,1,"Ballon",50.647917,3.08563,1,0,OLI:SA:7100,Europe/Paris,0,OLI, +OLI:SP:MBA002,1,"Ballon",50.647888,3.085954,1,0,OLI:SA:7100,Europe/Paris,0,OLI, +OLI:SP:MBL001,1,"Beaucamps Mairie",50.604956,2.915509,1,0,OLI:SA:5702,Europe/Paris,0,OLI, +OLI:SP:MBL002,1,"Beaucamps Mairie",50.605811,2.916745,1,0,OLI:SA:5702,Europe/Paris,0,OLI, +OLI:SP:MBO001,1,"Bourgogne",50.645775,3.117256,1,0,OLI:SA:1214,Europe/Paris,0,OLI, +OLI:SP:MBO012,1,"Bourgogne",50.64555,3.117338,1,0,OLI:SA:1214,Europe/Paris,0,OLI, +OLI:SP:MCA002,1,"Casino",50.741727,3.215781,1,0,OLI:SA:2460,Europe/Paris,0,OLI, +OLI:SP:MCL001,1,"Clemenceau Hippodrome",50.661579,3.09728,1,0,OLI:SA:1113,Europe/Paris,0,OLI, +OLI:SP:MCL002,1,"Clemenceau Hippodrome",50.661636,3.096759,1,0,OLI:SA:1113,Europe/Paris,0,OLI, +OLI:SP:MCL031,1,"Clemenceau Hippodrome",50.661995,3.096637,1,0,OLI:SA:1113,Europe/Paris,0,OLI, +OLI:SP:MCL032,1,"Clemenceau Hippodrome",50.661952,3.096411,1,0,OLI:SA:1113,Europe/Paris,0,OLI, +OLI:SP:MCM001,1,"Cimetiere",50.67474,3.079257,1,0,OLI:SA:1171,Europe/Paris,0,OLI, +OLI:SP:MCM002,1,"Cimetiere",50.675009,3.079275,1,0,OLI:SA:1171,Europe/Paris,0,OLI, +OLI:SP:MCU001,1,"Marie Curie",50.56284,2.903445,1,0,OLI:SA:1584,Europe/Paris,0,OLI, +OLI:SP:MCU002,1,"Marie Curie",50.56244,2.90268,1,0,OLI:SA:1584,Europe/Paris,0,OLI, +OLI:SP:MCX001,1,"Tanneurs",50.633717,3.06601,1,0,OLI:SA:800,Europe/Paris,0,OLI, +OLI:SP:MCX002,1,"Tanneurs",50.633874,3.066816,1,0,OLI:SA:800,Europe/Paris,0,OLI, +OLI:SP:MDE001,1,"Maison Des Enfants",50.646348,2.993891,1,0,OLI:SA:1004,Europe/Paris,0,OLI, +OLI:SP:MDE002,1,"Maison Des Enfants",50.646217,2.994976,1,0,OLI:SA:1004,Europe/Paris,0,OLI, +OLI:SP:MDE098,1,"Maison Des Enfants",50.646502,2.99536,1,0,OLI:SA:1004,Europe/Paris,0,OLI, +OLI:SP:MDE099,1,"Maison Des Enfants",50.646502,2.99536,1,0,OLI:SA:1004,Europe/Paris,0,OLI, +OLI:SP:MDF001,1,"Moulin De Faches",50.584584,3.085698,1,0,OLI:SA:5551,Europe/Paris,0,OLI, +OLI:SP:MDF002,1,"Moulin De Faches",50.584432,3.085583,1,0,OLI:SA:5551,Europe/Paris,0,OLI, +OLI:SP:MDL098,1,"Mairie De Lille",50.632422,3.071125,1,0,OLI:SA:935,Europe/Paris,0,OLI, +OLI:SP:MDL099,1,"Mairie De Lille",50.632422,3.071125,1,0,OLI:SA:935,Europe/Paris,0,OLI, +OLI:SP:MDM001,1,"Mairie De Mons",50.642566,3.111056,1,0,OLI:SA:6845,Europe/Paris,0,OLI, +OLI:SP:MDM002,1,"Mairie De Mons",50.64244,3.111124,1,0,OLI:SA:6845,Europe/Paris,0,OLI, +OLI:SP:MDM098,1,"Mairie De Mons",50.642387,3.109543,1,0,OLI:SA:6845,Europe/Paris,0,OLI, +OLI:SP:MDM099,1,"Mairie De Mons",50.642387,3.109543,1,0,OLI:SA:6845,Europe/Paris,0,OLI, +OLI:SP:MDS001,1,"Mont De Sainghin",50.58234,3.131767,1,0,OLI:SA:728,Europe/Paris,0,OLI, +OLI:SP:MEM001,1,"Mermoz",50.628626,3.0246,1,0,OLI:SA:822,Europe/Paris,0,OLI, +OLI:SP:MER098,1,"Mercure",50.705153,3.160544,1,0,OLI:SA:1805,Europe/Paris,0,OLI, +OLI:SP:MER099,1,"Mercure",50.705153,3.160544,1,0,OLI:SA:1805,Europe/Paris,0,OLI, +OLI:SP:MES001,1,"Mesanges",50.663556,3.203172,1,0,OLI:SA:502,Europe/Paris,0,OLI, +OLI:SP:MES002,1,"Mesanges",50.663547,3.203129,1,0,OLI:SA:502,Europe/Paris,0,OLI, +OLI:SP:MET001,1,"Boulevard De Metz",50.703162,3.181754,1,0,OLI:SA:1393,Europe/Paris,0,OLI, +OLI:SP:MET002,1,"Boulevard De Metz",50.702531,3.182323,1,0,OLI:SA:1393,Europe/Paris,0,OLI, +OLI:SP:MET003,1,"Boulevard De Metz",50.702316,3.180935,1,0,OLI:SA:1393,Europe/Paris,0,OLI, +OLI:SP:MEU001,1,"Meunier",50.674418,3.084983,1,0,OLI:SA:1152,Europe/Paris,0,OLI, +OLI:SP:MEU002,1,"Meunier",50.67441,3.084884,1,0,OLI:SA:1152,Europe/Paris,0,OLI, +OLI:SP:MEY001,1,"Rue Du Gal Mesny",50.60197,2.983949,1,0,OLI:SA:463,Europe/Paris,0,OLI, +OLI:SP:MEY005,1,"Rue Du Gal Mesny",50.605528,2.988055,1,0,OLI:SA:463,Europe/Paris,0,OLI, +OLI:SP:MFA001,1,"Faure",50.66936,3.052938,1,0,OLI:SA:5934,Europe/Paris,0,OLI, +OLI:SP:MFA002,1,"Faure",50.669639,3.052758,1,0,OLI:SA:5934,Europe/Paris,0,OLI, +OLI:SP:MFO001,1,"Mairie",50.633697,3.189819,1,0,OLI:SA:365,Europe/Paris,0,OLI, +OLI:SP:MFO002,1,"Mairie",50.633878,3.189568,1,0,OLI:SA:365,Europe/Paris,0,OLI, +OLI:SP:MGA001,1,"Gare",50.658958,3.0739,1,0,OLI:SA:600,Europe/Paris,0,OLI, +OLI:SP:MGA002,1,"Gare",50.658008,3.073716,1,0,OLI:SA:600,Europe/Paris,0,OLI, +OLI:SP:MGP002,1,"Grand Place",50.744807,3.216485,1,0,OLI:SA:2468,Europe/Paris,0,OLI, +OLI:SP:MGR001,1,"Gare Jean Lebas",50.694846,3.163382,1,0,OLI:SA:6587,Europe/Paris,0,OLI, +OLI:SP:MGR003,1,"Gare Jean Lebas",50.695631,3.164017,1,0,OLI:SA:6587,Europe/Paris,0,OLI, +OLI:SP:MGR004,1,"Gare Jean Lebas",50.696334,3.164876,1,0,OLI:SA:6587,Europe/Paris,0,OLI, +OLI:SP:MGR098,1,"Gare Jean Lebas",50.695865,3.163823,1,0,OLI:SA:6587,Europe/Paris,0,OLI, +OLI:SP:MGR099,1,"Gare Jean Lebas",50.695865,3.163823,1,0,OLI:SA:6587,Europe/Paris,0,OLI, +OLI:SP:MHA001,1,"Mont D'Halluin",50.76504,3.144153,1,0,OLI:SA:5945,Europe/Paris,0,OLI, +OLI:SP:MHA002,1,"Mont D'Halluin",50.765542,3.144303,1,0,OLI:SA:5945,Europe/Paris,0,OLI, +OLI:SP:MHE001,1,"Mairie D'Hellemmes",50.627213,3.108942,1,0,OLI:SA:494,Europe/Paris,0,OLI, +OLI:SP:MHE098,1,"Mairie D'Hellemmes",50.627384,3.108889,1,0,OLI:SA:494,Europe/Paris,0,OLI, +OLI:SP:MHE099,1,"Mairie D'Hellemmes",50.627187,3.108787,1,0,OLI:SA:494,Europe/Paris,0,OLI, +OLI:SP:MHM001,1,"Mairie",50.65437,3.182538,1,0,OLI:SA:514,Europe/Paris,0,OLI, +OLI:SP:MHM002,1,"Mairie",50.654251,3.182889,1,0,OLI:SA:514,Europe/Paris,0,OLI, +OLI:SP:MHO002,1,"Hopital",50.747243,3.21838,1,0,OLI:SA:7102,Europe/Paris,0,OLI, +OLI:SP:MIL001,1,"Avenue Millet",50.725174,3.1508,1,0,OLI:SA:1748,Europe/Paris,0,OLI, +OLI:SP:MIL002,1,"Avenue Millet",50.72513,3.150728,1,0,OLI:SA:1748,Europe/Paris,0,OLI, +OLI:SP:MIL003,1,"Avenue Millet",50.724977,3.149369,1,0,OLI:SA:1748,Europe/Paris,0,OLI, +OLI:SP:MIL004,1,"Avenue Millet",50.724904,3.149608,1,0,OLI:SA:1748,Europe/Paris,0,OLI, +OLI:SP:MIR001,1,"Mirabeau",50.73633,3.188464,1,0,OLI:SA:1747,Europe/Paris,0,OLI, +OLI:SP:MIR002,1,"Mirabeau",50.736098,3.188361,1,0,OLI:SA:1747,Europe/Paris,0,OLI, +OLI:SP:MIT298,1,"Mitterie",50.646938,3.007556,1,0,OLI:SA:1036,Europe/Paris,0,OLI, +OLI:SP:MIT299,1,"Mitterie",50.646938,3.007556,1,0,OLI:SA:1036,Europe/Paris,0,OLI, +OLI:SP:MLA001,1,"Mairie",50.654859,3.073741,1,0,OLI:SA:622,Europe/Paris,0,OLI, +OLI:SP:MLA002,1,"Mairie",50.65486,3.073571,1,0,OLI:SA:622,Europe/Paris,0,OLI, +OLI:SP:MLE002,1,"Rue Leopold",50.743454,3.222695,1,0,OLI:SA:7103,Europe/Paris,0,OLI, +OLI:SP:MLM001,1,"Hotel De Ville",50.639053,3.012528,1,0,OLI:SA:1020,Europe/Paris,0,OLI, +OLI:SP:MLM002,1,"Hotel De Ville",50.639019,3.012288,1,0,OLI:SA:1020,Europe/Paris,0,OLI, +OLI:SP:MLN001,1,"Moulin",50.744723,3.160915,1,0,OLI:SA:5959,Europe/Paris,0,OLI, +OLI:SP:MLN002,1,"Moulin",50.744758,3.160972,1,0,OLI:SA:5959,Europe/Paris,0,OLI, +OLI:SP:MLU002,1,"Rue Luxembourg",50.743352,3.218085,1,0,OLI:SA:2483,Europe/Paris,0,OLI, +OLI:SP:MMA001,1,"Quesne Mairie",50.674667,3.09419,1,0,OLI:SA:4106,Europe/Paris,0,OLI, +OLI:SP:MMA002,1,"Quesne Mairie",50.674461,3.09406,1,0,OLI:SA:4106,Europe/Paris,0,OLI, +OLI:SP:MMA007,1,"Mairie",50.672797,3.09347,1,0,OLI:SA:1114,Europe/Paris,0,OLI, +OLI:SP:MMA011,1,"Mairie",50.672409,3.092251,1,0,OLI:SA:1114,Europe/Paris,0,OLI, +OLI:SP:MMC001,1,"Calvaire",50.55154,2.868284,1,0,OLI:SA:6288,Europe/Paris,0,OLI, +OLI:SP:MMC002,1,"Calvaire",50.551477,2.868396,1,0,OLI:SA:6288,Europe/Paris,0,OLI, +OLI:SP:MME001,1,"Lommelet",50.666263,3.050212,1,0,OLI:SA:5905,Europe/Paris,0,OLI, +OLI:SP:MME002,1,"Lommelet",50.665657,3.049554,1,0,OLI:SA:5905,Europe/Paris,0,OLI, +OLI:SP:MME005,1,"Lommelet",50.666179,3.049293,1,0,OLI:SA:5905,Europe/Paris,0,OLI, +OLI:SP:MMI001,1,"Maisons Militaires",50.692059,3.028411,1,0,OLI:SA:2022,Europe/Paris,0,OLI, +OLI:SP:MMI002,1,"Maisons Militaires",50.69146,3.02956,1,0,OLI:SA:2022,Europe/Paris,0,OLI, +OLI:SP:MNA001,1,"Massena",50.63139,3.054383,1,0,OLI:SA:788,Europe/Paris,0,OLI, +OLI:SP:MNA002,1,"Massena",50.631625,3.05409,1,0,OLI:SA:788,Europe/Paris,0,OLI, +OLI:SP:MNI001,1,"Paul Gelle",50.683752,3.198679,1,0,OLI:SA:6979,Europe/Paris,0,OLI, +OLI:SP:MNI002,1,"Paul Gelle",50.683547,3.198393,1,0,OLI:SA:6979,Europe/Paris,0,OLI, +OLI:SP:MNL001,1,"Molinel",50.674976,3.127904,1,0,OLI:SA:4650,Europe/Paris,0,OLI, +OLI:SP:MNL002,1,"Molinel",50.675258,3.127372,1,0,OLI:SA:4650,Europe/Paris,0,OLI, +OLI:SP:MNT098,1,"Montebello",50.622084,3.045775,1,0,OLI:SA:946,Europe/Paris,0,OLI, +OLI:SP:MNT099,1,"Montebello",50.622084,3.045775,1,0,OLI:SA:946,Europe/Paris,0,OLI, +OLI:SP:MOA001,1,"Montalembert",50.625038,3.158294,1,0,OLI:SA:1934,Europe/Paris,0,OLI, +OLI:SP:MOA002,1,"Montalembert",50.62493,3.158476,1,0,OLI:SA:1934,Europe/Paris,0,OLI, +OLI:SP:MOD001,1,"College Monod",50.670804,2.974367,1,0,OLI:SA:1286,Europe/Paris,0,OLI, +OLI:SP:MOH001,1,"Oree Du Mont",50.773359,3.143411,1,0,OLI:SA:428,Europe/Paris,0,OLI, +OLI:SP:MOI001,1,"Rue Du Moisnil",50.551959,2.858418,1,0,OLI:SA:1199,Europe/Paris,0,OLI, +OLI:SP:MOI002,1,"Rue Du Moisnil",50.551719,2.857936,1,0,OLI:SA:1199,Europe/Paris,0,OLI, +OLI:SP:MOL001,1,"Mont A Leux",50.721661,3.190418,1,0,OLI:SA:2129,Europe/Paris,0,OLI, +OLI:SP:MOL002,1,"Mont A Leux",50.722466,3.190757,1,0,OLI:SA:2129,Europe/Paris,0,OLI, +OLI:SP:MON001,1,"La Montagne",50.738371,3.119722,1,0,OLI:SA:1368,Europe/Paris,0,OLI, +OLI:SP:MON002,1,"La Montagne",50.738299,3.119735,1,0,OLI:SA:1368,Europe/Paris,0,OLI, +OLI:SP:MOR001,1,"Monument Aux Morts",50.781813,3.12578,1,0,OLI:SA:440,Europe/Paris,0,OLI, +OLI:SP:MOR002,1,"Monument Aux Morts",50.78142,3.125576,1,0,OLI:SA:440,Europe/Paris,0,OLI, +OLI:SP:MOR003,1,"Monument Aux Morts",50.78147,3.1261,1,0,OLI:SA:440,Europe/Paris,0,OLI, +OLI:SP:MOS001,1,"Moliere",50.657838,3.052138,1,0,OLI:SA:4043,Europe/Paris,0,OLI, +OLI:SP:MOS002,1,"Moliere",50.65766,3.051994,1,0,OLI:SA:4043,Europe/Paris,0,OLI, +OLI:SP:MOT001,1,"Fourmies",50.671736,3.188986,1,0,OLI:SA:5474,Europe/Paris,0,OLI, +OLI:SP:MOT002,1,"Fourmies",50.671772,3.189001,1,0,OLI:SA:5474,Europe/Paris,0,OLI, +OLI:SP:MPE001,1,"Gare",50.667103,2.9736,1,0,OLI:SA:7152,Europe/Paris,0,OLI, +OLI:SP:MPE002,1,"Hotel De Ville",50.668217,2.973163,1,0,OLI:SA:5821,Europe/Paris,0,OLI, +OLI:SP:MPE003,1,"Agache",50.66751,2.972872,1,0,OLI:SA:2700,Europe/Paris,0,OLI, +OLI:SP:MPE004,1,"Agache",50.667351,2.972517,1,0,OLI:SA:2700,Europe/Paris,0,OLI, +OLI:SP:MPE005,1,"Hotel De Ville",50.668778,2.974059,1,0,OLI:SA:5821,Europe/Paris,0,OLI, +OLI:SP:MPH002,1,"Phenix",50.737737,3.223173,1,0,OLI:SA:7104,Europe/Paris,0,OLI, +OLI:SP:MPJ002,1,"Place De La Justice",50.738895,3.220551,1,0,OLI:SA:2469,Europe/Paris,0,OLI, +OLI:SP:MPL001,1,"Malplaquet",50.779914,3.105408,1,0,OLI:SA:445,Europe/Paris,0,OLI, +OLI:SP:MPL002,1,"Malplaquet",50.780163,3.105737,1,0,OLI:SA:445,Europe/Paris,0,OLI, +OLI:SP:MPP002,1,"Place De Picardie",50.743804,3.212524,1,0,OLI:SA:2458,Europe/Paris,0,OLI, +OLI:SP:MQC001,1,"College Debeyre",50.679953,3.066925,1,0,OLI:SA:4077,Europe/Paris,0,OLI, +OLI:SP:MQC002,1,"College Debeyre",50.679779,3.067388,1,0,OLI:SA:4077,Europe/Paris,0,OLI, +OLI:SP:MQL001,1,"Mairie",50.558243,2.869989,1,0,OLI:SA:5685,Europe/Paris,0,OLI, +OLI:SP:MQL002,1,"Mairie",50.557869,2.86945,1,0,OLI:SA:5685,Europe/Paris,0,OLI, +OLI:SP:MRB098,1,"Marbrerie",50.630395,3.097836,1,0,OLI:SA:488,Europe/Paris,0,OLI, +OLI:SP:MRB099,1,"Marbrerie",50.630395,3.097836,1,0,OLI:SA:488,Europe/Paris,0,OLI, +OLI:SP:MRC001,1,"College",50.683271,3.104062,1,0,OLI:SA:6846,Europe/Paris,0,OLI, +OLI:SP:MRC004,1,"College",50.683197,3.104358,1,0,OLI:SA:6846,Europe/Paris,0,OLI, +OLI:SP:MRC022,1,"College",50.680696,3.107143,1,0,OLI:SA:6846,Europe/Paris,0,OLI, +OLI:SP:MRI001,1,"Marliere",50.737138,3.189623,1,0,OLI:SA:1771,Europe/Paris,0,OLI, +OLI:SP:MRI002,1,"Marliere",50.73729,3.189724,1,0,OLI:SA:1771,Europe/Paris,0,OLI, +OLI:SP:MRL001,1,"Mulier",50.567666,3.059795,1,0,OLI:SA:1703,Europe/Paris,0,OLI, +OLI:SP:MRL002,1,"Mulier",50.567793,3.059656,1,0,OLI:SA:1703,Europe/Paris,0,OLI, +OLI:SP:MRN001,1,"Marronniers",50.607533,3.076413,1,0,OLI:SA:4285,Europe/Paris,0,OLI, +OLI:SP:MRN002,1,"Marronniers",50.60739,3.076411,1,0,OLI:SA:4285,Europe/Paris,0,OLI, +OLI:SP:MRO002,1,"Rue De Rollegem",50.742814,3.226811,1,0,OLI:SA:2482,Europe/Paris,0,OLI, +OLI:SP:MRS001,1,"Route De Sainghin",50.553841,2.873476,1,0,OLI:SA:1201,Europe/Paris,0,OLI, +OLI:SP:MRS002,1,"Route De Sainghin",50.553574,2.873079,1,0,OLI:SA:1201,Europe/Paris,0,OLI, +OLI:SP:MRS003,1,"Route De Sainghin",50.553654,2.873165,1,0,OLI:SA:1201,Europe/Paris,0,OLI, +OLI:SP:MSA001,1,"Mons Sarts",50.641769,3.099292,1,0,OLI:SA:1208,Europe/Paris,0,OLI, +OLI:SP:MSA002,1,"Mons Sarts",50.642341,3.099626,1,0,OLI:SA:1208,Europe/Paris,0,OLI, +OLI:SP:MSA098,1,"Mons Sarts",50.642272,3.099201,1,0,OLI:SA:1208,Europe/Paris,0,OLI, +OLI:SP:MSA099,1,"Mons Sarts",50.642272,3.099201,1,0,OLI:SA:1208,Europe/Paris,0,OLI, +OLI:SP:MSG001,1,"Marc Sangnier",50.697903,2.883892,1,0,OLI:SA:6957,Europe/Paris,0,OLI, +OLI:SP:MSG002,1,"Marc Sangnier",50.697347,2.883802,1,0,OLI:SA:6957,Europe/Paris,0,OLI, +OLI:SP:MSI001,1,"Esplanade",50.645381,3.050309,1,0,OLI:SA:910,Europe/Paris,0,OLI, +OLI:SP:MSI002,1,"Esplanade",50.645216,3.0508,1,0,OLI:SA:910,Europe/Paris,0,OLI, +OLI:SP:MTB001,1,"Mont De Bondues",50.71514,3.108367,1,0,OLI:SA:5785,Europe/Paris,0,OLI, +OLI:SP:MTB002,1,"Mont De Bondues",50.715428,3.108286,1,0,OLI:SA:5785,Europe/Paris,0,OLI, +OLI:SP:MTD001,1,"Mont Saint Bernard",50.660763,3.225167,1,0,OLI:SA:1710,Europe/Paris,0,OLI, +OLI:SP:MTD002,1,"Mont Saint Bernard",50.660798,3.22528,1,0,OLI:SA:1710,Europe/Paris,0,OLI, +OLI:SP:MTE001,1,"Montesquieu",50.646243,3.105484,1,0,OLI:SA:4138,Europe/Paris,0,OLI, +OLI:SP:MTE002,1,"Montesquieu",50.646352,3.106713,1,0,OLI:SA:4138,Europe/Paris,0,OLI, +OLI:SP:MTR001,1,"Trocadero",50.646321,3.111749,1,0,OLI:SA:7107,Europe/Paris,0,OLI, +OLI:SP:MTR006,1,"Trocadero",50.646486,3.112541,1,0,OLI:SA:7107,Europe/Paris,0,OLI, +OLI:SP:MTR007,1,"Trocadero",50.646554,3.111668,1,0,OLI:SA:7107,Europe/Paris,0,OLI, +OLI:SP:MTR008,1,"Trocadero",50.6468,3.111178,1,0,OLI:SA:7107,Europe/Paris,0,OLI, +OLI:SP:MTR009,1,"Trocadero",50.646845,3.111122,1,0,OLI:SA:7107,Europe/Paris,0,OLI, +OLI:SP:MTR012,1,"Trocadero",50.646025,3.111744,1,0,OLI:SA:7107,Europe/Paris,0,OLI, +OLI:SP:MTT001,1,"Mont De Terre",50.623093,3.090519,1,0,OLI:SA:5420,Europe/Paris,0,OLI, +OLI:SP:MTT002,1,"Mont De Terre",50.6233,3.09048,1,0,OLI:SA:5420,Europe/Paris,0,OLI, +OLI:SP:MTT003,1,"Mont De Terre",50.622861,3.0917,1,0,OLI:SA:5420,Europe/Paris,0,OLI, +OLI:SP:MTT005,1,"Mont De Terre",50.622306,3.091593,1,0,OLI:SA:5420,Europe/Paris,0,OLI, +OLI:SP:MTT006,1,"Mont De Terre",50.622323,3.091748,1,0,OLI:SA:5420,Europe/Paris,0,OLI, +OLI:SP:MUC001,1,"Muchembus",50.625696,2.984143,1,0,OLI:SA:1697,Europe/Paris,0,OLI, +OLI:SP:MUC002,1,"Muchembus",50.625508,2.984099,1,0,OLI:SA:1697,Europe/Paris,0,OLI, +OLI:SP:MUS001,1,"Musee Du Terroir",50.6256,3.153438,1,0,OLI:SA:1916,Europe/Paris,0,OLI, +OLI:SP:MUS002,1,"Musee Du Terroir",50.626135,3.153884,1,0,OLI:SA:1916,Europe/Paris,0,OLI, +OLI:SP:MVI001,1,"Victoire",50.656036,3.064374,1,0,OLI:SA:603,Europe/Paris,0,OLI, +OLI:SP:MVI002,1,"Victoire",50.655991,3.06436,1,0,OLI:SA:603,Europe/Paris,0,OLI, +OLI:SP:MXC001,1,"Cimetiere",50.709273,3.126964,1,0,OLI:SA:1232,Europe/Paris,0,OLI, +OLI:SP:MXC002,1,"Cimetiere",50.708913,3.127227,1,0,OLI:SA:1232,Europe/Paris,0,OLI, +OLI:SP:MYT011,1,"Coty",50.637328,3.116659,1,0,OLI:SA:1216,Europe/Paris,0,OLI, +OLI:SP:MYT012,1,"Coty",50.637418,3.116689,1,0,OLI:SA:1216,Europe/Paris,0,OLI, +OLI:SP:NAN001,1,"Dunant",50.68935,3.184204,1,0,OLI:SA:4434,Europe/Paris,0,OLI, +OLI:SP:NAN002,1,"Dunant",50.689061,3.183267,1,0,OLI:SA:4434,Europe/Paris,0,OLI, +OLI:SP:NAT001,1,"Nationale",50.634877,3.056422,1,0,OLI:SA:7111,Europe/Paris,0,OLI, +OLI:SP:NAT003,1,"Nationale",50.6343,3.056921,1,0,OLI:SA:7111,Europe/Paris,0,OLI, +OLI:SP:NAT004,1,"Nationale",50.634358,3.056132,1,0,OLI:SA:7111,Europe/Paris,0,OLI, +OLI:SP:NAU001,1,"Nations Unies",50.698333,3.167762,1,0,OLI:SA:1388,Europe/Paris,0,OLI, +OLI:SP:NAU002,1,"Nations Unies",50.696583,3.167916,1,0,OLI:SA:1388,Europe/Paris,0,OLI, +OLI:SP:NAU004,1,"Blanchemaille",50.696162,3.167683,1,0,OLI:SA:7657,Europe/Paris,0,OLI, +OLI:SP:NDG001,1,"Nd De Grace",50.611191,3.012659,1,0,OLI:SA:6280,Europe/Paris,0,OLI, +OLI:SP:NDG002,1,"Nd De Grace",50.611119,3.012588,1,0,OLI:SA:6280,Europe/Paris,0,OLI, +OLI:SP:NDO001,1,"Conde",50.619758,3.053976,1,0,OLI:SA:823,Europe/Paris,0,OLI, +OLI:SP:NDO002,1,"Conde",50.619659,3.054116,1,0,OLI:SA:823,Europe/Paris,0,OLI, +OLI:SP:NDR001,1,"Flandre",50.700689,3.177391,1,0,OLI:SA:1415,Europe/Paris,0,OLI, +OLI:SP:NDR002,1,"Flandre",50.700936,3.17803,1,0,OLI:SA:1415,Europe/Paris,0,OLI, +OLI:SP:NEC002,1,"Nechin",50.67887,3.24658,1,0,OLI:SA:700,Europe/Paris,0,OLI, +OLI:SP:NEG001,1,"Eglise",50.75053,3.153461,1,0,OLI:SA:5891,Europe/Paris,0,OLI, +OLI:SP:NEG002,1,"Eglise",50.750794,3.152971,1,0,OLI:SA:5891,Europe/Paris,0,OLI, +OLI:SP:NEL001,1,"Le Fresnel",50.68055,2.959301,1,0,OLI:SA:1295,Europe/Paris,0,OLI, +OLI:SP:NEL002,1,"Le Fresnel",50.680576,2.959316,1,0,OLI:SA:1295,Europe/Paris,0,OLI, +OLI:SP:NEU001,1,"Centre",50.748562,3.152694,1,0,OLI:SA:1265,Europe/Paris,0,OLI, +OLI:SP:NEU002,1,"Centre",50.748611,3.152172,1,0,OLI:SA:1265,Europe/Paris,0,OLI, +OLI:SP:NFR001,1,"Nouvelle France",50.696804,2.914638,1,0,OLI:SA:5652,Europe/Paris,0,OLI, +OLI:SP:NFR002,1,"Nouvelle France",50.696803,2.91468,1,0,OLI:SA:5652,Europe/Paris,0,OLI, +OLI:SP:NIZ001,1,"Enizant",50.645466,2.963294,1,0,OLI:SA:242,Europe/Paris,0,OLI, +OLI:SP:NIZ002,1,"Enizant",50.645519,2.963394,1,0,OLI:SA:242,Europe/Paris,0,OLI, +OLI:SP:NMA001,1,"Marais",50.575617,3.011855,1,0,OLI:SA:5526,Europe/Paris,0,OLI, +OLI:SP:NMA002,1,"Marais",50.575608,3.011771,1,0,OLI:SA:5526,Europe/Paris,0,OLI, +OLI:SP:NMI001,1,"Cimetiere Nord",50.656996,3.020235,1,0,OLI:SA:3986,Europe/Paris,0,OLI, +OLI:SP:NMI002,1,"Cimetiere Nord",50.656996,3.020277,1,0,OLI:SA:3986,Europe/Paris,0,OLI, +OLI:SP:NMO001,1,"Nouveau Monde",50.735561,3.105813,1,0,OLI:SA:993,Europe/Paris,0,OLI, +OLI:SP:NMO002,1,"Nouveau Monde",50.735913,3.105451,1,0,OLI:SA:993,Europe/Paris,0,OLI, +OLI:SP:NOB001,1,"Nobel",50.665952,3.200461,1,0,OLI:SA:520,Europe/Paris,0,OLI, +OLI:SP:NOB002,1,"Nobel",50.666127,3.201043,1,0,OLI:SA:520,Europe/Paris,0,OLI, +OLI:SP:NOT001,1,"Anatole France",50.635034,3.0093,1,0,OLI:SA:7539,Europe/Paris,0,OLI, +OLI:SP:NOT090,1,"Anatole France",50.63498,3.00944,1,0,OLI:SA:7539,Europe/Paris,0,OLI, +OLI:SP:NOX001,1,"Le Bois Habite",50.627433,3.078865,1,0,OLI:SA:954,Europe/Paris,0,OLI, +OLI:SP:NOX002,1,"Le Bois Habite",50.627233,3.079299,1,0,OLI:SA:954,Europe/Paris,0,OLI, +OLI:SP:NRE001,1,"Verne",50.749218,3.160735,1,0,OLI:SA:1273,Europe/Paris,0,OLI, +OLI:SP:NRE002,1,"Verne",50.749638,3.159568,1,0,OLI:SA:1273,Europe/Paris,0,OLI, +OLI:SP:NSC001,1,"Schuman",50.745581,3.15454,1,0,OLI:SA:5111,Europe/Paris,0,OLI, +OLI:SP:NSC002,1,"Schuman",50.745707,3.154513,1,0,OLI:SA:5111,Europe/Paris,0,OLI, +OLI:SP:NSE001,1,"Fresnoy",50.674106,3.226943,1,0,OLI:SA:1085,Europe/Paris,0,OLI, +OLI:SP:NSE002,1,"Fresnoy",50.674097,3.227013,1,0,OLI:SA:1085,Europe/Paris,0,OLI, +OLI:SP:NSM001,1,"Moulin",50.575069,3.029838,1,0,OLI:SA:1282,Europe/Paris,0,OLI, +OLI:SP:NSM002,1,"Moulin",50.57523,3.029812,1,0,OLI:SA:1282,Europe/Paris,0,OLI, +OLI:SP:NTB001,1,"Note Bleue",50.649177,3.152934,1,0,OLI:SA:5648,Europe/Paris,0,OLI, +OLI:SP:NTB002,1,"Note Bleue",50.649325,3.152373,1,0,OLI:SA:5648,Europe/Paris,0,OLI, +OLI:SP:NUI001,1,"Guinguette",50.704194,3.171108,1,0,OLI:SA:5725,Europe/Paris,0,OLI, +OLI:SP:NUI002,1,"Guinguette",50.703861,3.171328,1,0,OLI:SA:5725,Europe/Paris,0,OLI, +OLI:SP:NUR001,1,"Nations Unies",50.692565,3.184936,1,0,OLI:SA:6602,Europe/Paris,0,OLI, +OLI:SP:NUR002,1,"Nations Unies",50.692501,3.185217,1,0,OLI:SA:6602,Europe/Paris,0,OLI, +OLI:SP:OCC001,1,"Ctre Commercial",50.581819,3.083022,1,0,OLI:SA:5549,Europe/Paris,0,OLI, +OLI:SP:OCC002,1,"Ctre Commercial",50.581943,3.083305,1,0,OLI:SA:5549,Europe/Paris,0,OLI, +OLI:SP:OCH021,1,"Foch",50.666687,3.103794,1,0,OLI:SA:1124,Europe/Paris,0,OLI, +OLI:SP:OCH032,1,"Foch",50.665999,3.103501,1,0,OLI:SA:1124,Europe/Paris,0,OLI, +OLI:SP:OCR001,1,"Ocron",50.561801,2.889153,1,0,OLI:SA:1582,Europe/Paris,0,OLI, +OLI:SP:OCR002,1,"Ocron",50.561633,2.888601,1,0,OLI:SA:1582,Europe/Paris,0,OLI, +OLI:SP:OCT001,1,"Pont Courroy",50.681433,3.101112,1,0,OLI:SA:1164,Europe/Paris,0,OLI, +OLI:SP:OCT002,1,"Pont Courroy",50.681487,3.101028,1,0,OLI:SA:1164,Europe/Paris,0,OLI, +OLI:SP:ODO001,1,"Berquier",50.746128,3.174749,1,0,OLI:SA:1270,Europe/Paris,0,OLI, +OLI:SP:ODO002,1,"Berquier",50.746245,3.174695,1,0,OLI:SA:1270,Europe/Paris,0,OLI, +OLI:SP:OEL001,1,"Leo Lagrange",50.683529,3.138332,1,0,OLI:SA:2060,Europe/Paris,0,OLI, +OLI:SP:OEL002,1,"Leo Lagrange",50.683785,3.138958,1,0,OLI:SA:2060,Europe/Paris,0,OLI, +OLI:SP:OFF001,1,"Joffre",50.65453,3.067189,1,0,OLI:SA:609,Europe/Paris,0,OLI, +OLI:SP:OFF002,1,"Joffre",50.652986,3.06584,1,0,OLI:SA:609,Europe/Paris,0,OLI, +OLI:SP:OGO001,1,"Oree Du Golf",50.610071,3.108918,1,0,OLI:SA:752,Europe/Paris,0,OLI, +OLI:SP:OGO003,1,"Oree Du Golf",50.610016,3.109015,1,0,OLI:SA:752,Europe/Paris,0,OLI, +OLI:SP:OIN001,1,"Beau Coin",50.632836,3.236603,1,0,OLI:SA:2241,Europe/Paris,0,OLI, +OLI:SP:OIN002,1,"Beau Coin",50.633615,3.236744,1,0,OLI:SA:2241,Europe/Paris,0,OLI, +OLI:SP:OIR002,1,"Pdt Vincent Auriol",50.687168,3.175356,1,0,OLI:SA:1412,Europe/Paris,0,OLI, +OLI:SP:OJT001,1,"Saint Joseph",50.730729,3.178589,1,0,OLI:SA:1778,Europe/Paris,0,OLI, +OLI:SP:OJT002,1,"Saint Joseph",50.730862,3.178775,1,0,OLI:SA:1778,Europe/Paris,0,OLI, +OLI:SP:OLI001,1,"Molinel",50.688686,3.114637,1,0,OLI:SA:6851,Europe/Paris,0,OLI, +OLI:SP:OLI002,1,"Molinel",50.689028,3.1158,1,0,OLI:SA:6851,Europe/Paris,0,OLI, +OLI:SP:OLY001,1,"Les Olympiades",50.713809,3.007309,1,0,OLI:SA:1312,Europe/Paris,0,OLI, +OLI:SP:OLY002,1,"Les Olympiades",50.71374,3.006715,1,0,OLI:SA:1312,Europe/Paris,0,OLI, +OLI:SP:OMN001,1,"Omnibus",50.711303,3.166424,1,0,OLI:SA:7116,Europe/Paris,0,OLI, +OLI:SP:OMN002,1,"Omnibus",50.712337,3.16596,1,0,OLI:SA:7116,Europe/Paris,0,OLI, +OLI:SP:OMO001,1,"La Vallee",50.747228,3.119013,1,0,OLI:SA:5479,Europe/Paris,0,OLI, +OLI:SP:OMO002,1,"La Vallee",50.747076,3.118897,1,0,OLI:SA:5479,Europe/Paris,0,OLI, +OLI:SP:ONS001,1,"Conservatoire",50.724254,3.162485,1,0,OLI:SA:1800,Europe/Paris,0,OLI, +OLI:SP:ONS002,1,"Conservatoire",50.724316,3.162542,1,0,OLI:SA:1800,Europe/Paris,0,OLI, +OLI:SP:ONT001,1,"Fontaine",50.685892,2.997955,1,0,OLI:SA:1894,Europe/Paris,0,OLI, +OLI:SP:ONT002,1,"Fontaine",50.685965,2.997744,1,0,OLI:SA:1894,Europe/Paris,0,OLI, +OLI:SP:OPE001,1,"Europe",50.612081,2.97517,1,0,OLI:SA:6261,Europe/Paris,0,OLI, +OLI:SP:OPE002,1,"Europe",50.611895,2.976324,1,0,OLI:SA:6261,Europe/Paris,0,OLI, +OLI:SP:ORE001,1,"Rue D'Oresmieux",50.56586,2.861506,1,0,OLI:SA:2238,Europe/Paris,0,OLI, +OLI:SP:ORE002,1,"Rue D'Oresmieux",50.5655,2.861784,1,0,OLI:SA:2238,Europe/Paris,0,OLI, +OLI:SP:ORM001,1,"Les Ormeaux",50.574559,3.074545,1,0,OLI:SA:1886,Europe/Paris,0,OLI, +OLI:SP:ORM002,1,"Les Ormeaux",50.574532,3.074517,1,0,OLI:SA:1886,Europe/Paris,0,OLI, +OLI:SP:ORT001,1,"Pont Rouge",50.679615,3.196349,1,0,OLI:SA:1416,Europe/Paris,0,OLI, +OLI:SP:ORT002,1,"Pont Rouge",50.679985,3.195974,1,0,OLI:SA:1416,Europe/Paris,0,OLI, +OLI:SP:OSE001,1,"La Roseliere",50.703715,3.236976,1,0,OLI:SA:2595,Europe/Paris,0,OLI, +OLI:SP:OSE003,1,"La Roseliere",50.704252,3.237113,1,0,OLI:SA:2595,Europe/Paris,0,OLI, +OLI:SP:OSS001,1,"Brossolette",50.660546,3.094527,1,0,OLI:SA:1134,Europe/Paris,0,OLI, +OLI:SP:OSS012,1,"Brossolette",50.66012,3.093772,1,0,OLI:SA:1134,Europe/Paris,0,OLI, +OLI:SP:OTT001,1,"Motte",50.677234,3.199456,1,0,OLI:SA:4436,Europe/Paris,0,OLI, +OLI:SP:OTT002,1,"Motte",50.67834,3.197753,1,0,OLI:SA:4436,Europe/Paris,0,OLI, +OLI:SP:OTT003,1,"Motte",50.677348,3.198611,1,0,OLI:SA:4436,Europe/Paris,0,OLI, +OLI:SP:OTT004,1,"Motte",50.677673,3.199563,1,0,OLI:SA:4436,Europe/Paris,0,OLI, +OLI:SP:OUB001,1,"Coubertin",50.604295,3.102908,1,0,OLI:SA:2965,Europe/Paris,0,OLI, +OLI:SP:OUB002,1,"Coubertin",50.605549,3.104746,1,0,OLI:SA:2965,Europe/Paris,0,OLI, +OLI:SP:OUE001,1,"Rue De L'Ouest",50.693637,3.158971,1,0,OLI:SA:1492,Europe/Paris,0,OLI, +OLI:SP:OUE002,1,"Rue De L'Ouest",50.693435,3.159772,1,0,OLI:SA:1492,Europe/Paris,0,OLI, +OLI:SP:OUL001,1,"Moulin D'Ascq",50.61734,3.154446,1,0,OLI:SA:2004,Europe/Paris,0,OLI, +OLI:SP:OUL002,1,"Moulin D'Ascq",50.617394,3.154376,1,0,OLI:SA:2004,Europe/Paris,0,OLI, +OLI:SP:OUS001,1,"Carrousel",50.704324,3.090798,1,0,OLI:SA:5790,Europe/Paris,0,OLI, +OLI:SP:OUS002,1,"Carrousel",50.704367,3.091039,1,0,OLI:SA:5790,Europe/Paris,0,OLI, +OLI:SP:PAA001,1,"La Chapelle Parc",50.668727,2.909134,1,0,OLI:SA:5659,Europe/Paris,0,OLI, +OLI:SP:PAA002,1,"La Chapelle Parc",50.669036,2.908262,1,0,OLI:SA:5659,Europe/Paris,0,OLI, +OLI:SP:PAB001,1,"Pave Bleu",50.646202,3.135942,1,0,OLI:SA:2014,Europe/Paris,0,OLI, +OLI:SP:PAB002,1,"Pave Bleu",50.645945,3.135543,1,0,OLI:SA:2014,Europe/Paris,0,OLI, +OLI:SP:PAC001,1,"Rue D'Ennetieres",50.566098,3.064096,1,0,OLI:SA:6932,Europe/Paris,0,OLI, +OLI:SP:PAC003,1,"Rue D'Ennetieres",50.56558,3.065187,1,0,OLI:SA:6932,Europe/Paris,0,OLI, +OLI:SP:PAC004,1,"Parc D'Activites",50.566531,3.069863,1,0,OLI:SA:1700,Europe/Paris,0,OLI, +OLI:SP:PAH002,1,"Chappe",50.64472,3.126537,1,0,OLI:SA:2006,Europe/Paris,0,OLI, +OLI:SP:PAH011,1,"Chappe",50.643579,3.126773,1,0,OLI:SA:2006,Europe/Paris,0,OLI, +OLI:SP:PAH012,1,"Chappe",50.643851,3.126297,1,0,OLI:SA:2006,Europe/Paris,0,OLI, +OLI:SP:PAI001,1,"La Paix",50.697681,3.181888,1,0,OLI:SA:1553,Europe/Paris,0,OLI, +OLI:SP:PAI002,1,"La Paix",50.697438,3.182053,1,0,OLI:SA:1553,Europe/Paris,0,OLI, +OLI:SP:PAL001,1,"Parc Du Lion",50.706601,3.209724,1,0,OLI:SA:2155,Europe/Paris,0,OLI, +OLI:SP:PAL002,1,"Parc Du Lion",50.706954,3.209306,1,0,OLI:SA:2155,Europe/Paris,0,OLI, +OLI:SP:PAP001,1,"Papeterie",50.671608,3.065857,1,0,OLI:SA:5942,Europe/Paris,0,OLI, +OLI:SP:PAP002,1,"Papeterie",50.671321,3.065909,1,0,OLI:SA:5942,Europe/Paris,0,OLI, +OLI:SP:PAR001,1,"Le Parc",50.614967,2.977378,1,0,OLI:SA:475,Europe/Paris,0,OLI, +OLI:SP:PAR002,1,"Le Parc",50.614581,2.977486,1,0,OLI:SA:475,Europe/Paris,0,OLI, +OLI:SP:PAS001,1,"Pasteur",50.681774,3.046735,1,0,OLI:SA:5860,Europe/Paris,0,OLI, +OLI:SP:PAS002,1,"Pasteur",50.680963,3.047457,1,0,OLI:SA:5860,Europe/Paris,0,OLI, +OLI:SP:PAS003,1,"Pasteur",50.681135,3.047234,1,0,OLI:SA:5860,Europe/Paris,0,OLI, +OLI:SP:PAS004,1,"Pasteur",50.681748,3.046678,1,0,OLI:SA:5860,Europe/Paris,0,OLI, +OLI:SP:PAT001,1,"Parmentier",50.639021,3.134036,1,0,OLI:SA:1962,Europe/Paris,0,OLI, +OLI:SP:PAT002,1,"Parmentier",50.639084,3.134009,1,0,OLI:SA:1962,Europe/Paris,0,OLI, +OLI:SP:PAU001,1,"L.A.M.",50.638836,3.148576,1,0,OLI:SA:7119,Europe/Paris,0,OLI, +OLI:SP:PAU002,1,"L.A.M.",50.638346,3.148173,1,0,OLI:SA:7119,Europe/Paris,0,OLI, +OLI:SP:PAY001,1,"La Payelle",50.702964,3.097501,1,0,OLI:SA:5795,Europe/Paris,0,OLI, +OLI:SP:PAY002,1,"La Payelle",50.703276,3.097816,1,0,OLI:SA:5795,Europe/Paris,0,OLI, +OLI:SP:PBA021,1,"Parc Barbieux",50.678062,3.162244,1,0,OLI:SA:4649,Europe/Paris,0,OLI, +OLI:SP:PBA032,1,"Parc Barbieux",50.677537,3.161543,1,0,OLI:SA:4649,Europe/Paris,0,OLI, +OLI:SP:PBD001,1,"Petit Bondues",50.718565,3.082183,1,0,OLI:SA:183,Europe/Paris,0,OLI, +OLI:SP:PBD002,1,"Petit Bondues",50.719006,3.081978,1,0,OLI:SA:183,Europe/Paris,0,OLI, +OLI:SP:PBL001,1,"Pont Blanc",50.671539,3.069978,1,0,OLI:SA:1153,Europe/Paris,0,OLI, +OLI:SP:PBL002,1,"Pont Blanc",50.671557,3.069879,1,0,OLI:SA:1153,Europe/Paris,0,OLI, +OLI:SP:PBO001,1,"Petit Bondues",50.719006,3.081978,1,0,OLI:SA:183,Europe/Paris,0,OLI, +OLI:SP:PBO002,1,"Petit Bondues",50.719006,3.081978,1,0,OLI:SA:183,Europe/Paris,0,OLI, +OLI:SP:PBT001,1,"Petit Baptiste",50.630594,3.237677,1,0,OLI:SA:6331,Europe/Paris,0,OLI, +OLI:SP:PBT002,1,"Petit Baptiste",50.630641,3.23741,1,0,OLI:SA:6331,Europe/Paris,0,OLI, +OLI:SP:PCB001,1,"Parc Barbieux",50.677685,3.162308,1,0,OLI:SA:4649,Europe/Paris,0,OLI, +OLI:SP:PCB002,1,"Parc Barbieux",50.678086,3.161298,1,0,OLI:SA:4649,Europe/Paris,0,OLI, +OLI:SP:PCE001,1,"Carliers",50.711387,3.159206,1,0,OLI:SA:1816,Europe/Paris,0,OLI, +OLI:SP:PCE002,1,"Carliers",50.71117,3.159443,1,0,OLI:SA:1816,Europe/Paris,0,OLI, +OLI:SP:PCI001,1,"Europe",50.689389,2.865641,1,0,OLI:SA:6901,Europe/Paris,0,OLI, +OLI:SP:PCI002,1,"Europe",50.689515,2.865544,1,0,OLI:SA:6901,Europe/Paris,0,OLI, +OLI:SP:PCM004,1,"Marche",50.655021,3.069087,1,0,OLI:SA:625,Europe/Paris,0,OLI, +OLI:SP:PCM005,1,"Marche",50.655135,3.071106,1,0,OLI:SA:625,Europe/Paris,0,OLI, +OLI:SP:PCO001,1,"Petite Couture",50.628693,2.982222,1,0,OLI:SA:1689,Europe/Paris,0,OLI, +OLI:SP:PCO002,1,"Petite Couture",50.628676,2.982067,1,0,OLI:SA:1689,Europe/Paris,0,OLI, +OLI:SP:PCS001,1,"Desire Ducarin",50.757344,3.00402,1,0,OLI:SA:253,Europe/Paris,0,OLI, +OLI:SP:PCS002,1,"Desire Ducarin",50.757075,3.004017,1,0,OLI:SA:253,Europe/Paris,0,OLI, +OLI:SP:PCU001,1,"Pierre Curie",50.591165,3.113939,1,0,OLI:SA:7120,Europe/Paris,0,OLI, +OLI:SP:PDB005,1,"Pont De Bois",50.625527,3.12739,1,0,OLI:SA:1971,Europe/Paris,0,OLI, +OLI:SP:PDB006,1,"Pont De Bois",50.625816,3.128424,1,0,OLI:SA:1971,Europe/Paris,0,OLI, +OLI:SP:PDB007,1,"Pont De Bois",50.6258,3.128142,1,0,OLI:SA:1971,Europe/Paris,0,OLI, +OLI:SP:PDB098,1,"Pont De Bois",50.624355,3.128232,1,0,OLI:SA:1971,Europe/Paris,0,OLI, +OLI:SP:PDB099,1,"Pont De Bois",50.624355,3.128232,1,0,OLI:SA:1971,Europe/Paris,0,OLI, +OLI:SP:PDB411,1,"Pont De Bois",50.624679,3.128124,1,0,OLI:SA:1971,Europe/Paris,0,OLI, +OLI:SP:PDF001,1,"Parc Des Francs",50.720672,3.14109,1,0,OLI:SA:1835,Europe/Paris,0,OLI, +OLI:SP:PDF002,1,"Parc Des Francs",50.720482,3.141412,1,0,OLI:SA:1835,Europe/Paris,0,OLI, +OLI:SP:PDG001,1,"Place De Gaulle",50.56247,2.899892,1,0,OLI:SA:1580,Europe/Paris,0,OLI, +OLI:SP:PDG002,1,"Place De Gaulle",50.563473,2.898326,1,0,OLI:SA:1580,Europe/Paris,0,OLI, +OLI:SP:PDN001,1,"Pt De Neuville",50.736998,3.170709,1,0,OLI:SA:6522,Europe/Paris,0,OLI, +OLI:SP:PDN002,1,"Pt De Neuville",50.736804,3.171596,1,0,OLI:SA:6522,Europe/Paris,0,OLI, +OLI:SP:PDN003,1,"Pt De Neuville",50.737044,3.170555,1,0,OLI:SA:6522,Europe/Paris,0,OLI, +OLI:SP:PDN038,1,"Pt De Neuville",50.736639,3.170717,1,0,OLI:SA:6522,Europe/Paris,0,OLI, +OLI:SP:PDO001,1,"Porte De Douai",50.618194,3.072792,1,0,OLI:SA:776,Europe/Paris,0,OLI, +OLI:SP:PDO002,1,"Porte De Douai",50.618139,3.072988,1,0,OLI:SA:776,Europe/Paris,0,OLI, +OLI:SP:PDO006,1,"Porte De Douai",50.619169,3.073215,1,0,OLI:SA:776,Europe/Paris,0,OLI, +OLI:SP:PDO007,1,"Porte De Douai",50.619304,3.073301,1,0,OLI:SA:776,Europe/Paris,0,OLI, +OLI:SP:PDO098,1,"Porte De Douai",50.618035,3.072479,1,0,OLI:SA:776,Europe/Paris,0,OLI, +OLI:SP:PDO099,1,"Porte De Douai",50.618035,3.072479,1,0,OLI:SA:776,Europe/Paris,0,OLI, +OLI:SP:PDP003,1,"Porte Des Postes",50.618401,3.048261,1,0,OLI:SA:835,Europe/Paris,0,OLI, +OLI:SP:PDP004,1,"Porte Des Postes",50.618579,3.048432,1,0,OLI:SA:835,Europe/Paris,0,OLI, +OLI:SP:PDP008,1,"Porte Des Postes",50.618608,3.048122,1,0,OLI:SA:835,Europe/Paris,0,OLI, +OLI:SP:PDP012,1,"Porte Des Postes",50.618326,3.048697,1,0,OLI:SA:835,Europe/Paris,0,OLI, +OLI:SP:PDP013,1,"Porte Des Postes",50.618805,3.051326,1,0,OLI:SA:835,Europe/Paris,0,OLI, +OLI:SP:PDP050,1,"Porte Des Postes",50.61875,3.049986,1,0,OLI:SA:835,Europe/Paris,0,OLI, +OLI:SP:PDP055,1,"Porte Des Postes",50.618649,3.050337,1,0,OLI:SA:835,Europe/Paris,0,OLI, +OLI:SP:PDP090,1,"Porte Des Postes",50.618664,3.050788,1,0,OLI:SA:835,Europe/Paris,0,OLI, +OLI:SP:PDP098,1,"Porte Des Postes",50.61875,3.049986,1,0,OLI:SA:835,Europe/Paris,0,OLI, +OLI:SP:PDP099,1,"Porte Des Postes",50.617947,3.050665,1,0,OLI:SA:835,Europe/Paris,0,OLI, +OLI:SP:PDP398,1,"Porte Des Postes",50.617947,3.050665,1,0,OLI:SA:835,Europe/Paris,0,OLI, +OLI:SP:PDP399,1,"Porte Des Postes",50.617947,3.050665,1,0,OLI:SA:835,Europe/Paris,0,OLI, +OLI:SP:PDR004,1,"P. De Roubaix",50.690349,3.186282,1,0,OLI:SA:7663,Europe/Paris,0,OLI, +OLI:SP:PDS002,1,"Parc Des Sports",50.676227,3.201133,1,0,OLI:SA:6918,Europe/Paris,0,OLI, +OLI:SP:PDT001,1,"Piscine Du Triolo",50.613498,3.147982,1,0,OLI:SA:1924,Europe/Paris,0,OLI, +OLI:SP:PDT002,1,"Piscine Du Triolo",50.613373,3.147895,1,0,OLI:SA:1924,Europe/Paris,0,OLI, +OLI:SP:PDV001,1,"Porte De Valenciennes",50.620708,3.078441,1,0,OLI:SA:965,Europe/Paris,0,OLI, +OLI:SP:PDV002,1,"Porte De Valenciennes",50.621411,3.079354,1,0,OLI:SA:965,Europe/Paris,0,OLI, +OLI:SP:PDV005,1,"Painleve",50.624643,3.080502,1,0,OLI:SA:4500,Europe/Paris,0,OLI, +OLI:SP:PDV006,1,"Painleve",50.62442,3.080244,1,0,OLI:SA:4500,Europe/Paris,0,OLI, +OLI:SP:PDV098,1,"Porte De Valenciennes",50.621036,3.079066,1,0,OLI:SA:965,Europe/Paris,0,OLI, +OLI:SP:PDV099,1,"Porte De Valenciennes",50.621036,3.079066,1,0,OLI:SA:965,Europe/Paris,0,OLI, +OLI:SP:PDW001,1,"Pont De Wasquehal",50.664362,3.118464,1,0,OLI:SA:2047,Europe/Paris,0,OLI, +OLI:SP:PDW012,1,"Pont De Wasquehal",50.664565,3.116082,1,0,OLI:SA:2047,Europe/Paris,0,OLI, +OLI:SP:PDX001,1,"Place De La Paix",50.699406,3.132712,1,0,OLI:SA:5852,Europe/Paris,0,OLI, +OLI:SP:PDX002,1,"Place De La Paix",50.698925,3.132153,1,0,OLI:SA:5852,Europe/Paris,0,OLI, +OLI:SP:PEA001,1,"Place",50.578286,2.85269,1,0,OLI:SA:533,Europe/Paris,0,OLI, +OLI:SP:PEA002,1,"Place",50.578232,2.85269,1,0,OLI:SA:533,Europe/Paris,0,OLI, +OLI:SP:PEL001,1,"Pellart",50.69549,3.182232,1,0,OLI:SA:1493,Europe/Paris,0,OLI, +OLI:SP:PEL002,1,"Pellart",50.695768,3.182293,1,0,OLI:SA:1493,Europe/Paris,0,OLI, +OLI:SP:PEN002,1,"Centre",50.655186,2.951549,1,0,OLI:SA:2551,Europe/Paris,0,OLI, +OLI:SP:PEN006,1,"Centre",50.655049,2.953834,1,0,OLI:SA:2551,Europe/Paris,0,OLI, +OLI:SP:PEN007,1,"Centre",50.654925,2.953493,1,0,OLI:SA:2551,Europe/Paris,0,OLI, +OLI:SP:PEO001,1,"Mairie De Mons",50.641323,3.111996,1,0,OLI:SA:6845,Europe/Paris,0,OLI, +OLI:SP:PEO002,1,"Mairie De Mons",50.641626,3.112212,1,0,OLI:SA:6845,Europe/Paris,0,OLI, +OLI:SP:PEP001,1,"Petit Paradis",50.682451,3.052208,1,0,OLI:SA:2019,Europe/Paris,0,OLI, +OLI:SP:PEP002,1,"Petit Paradis",50.68244,3.052575,1,0,OLI:SA:2019,Europe/Paris,0,OLI, +OLI:SP:PET001,1,"Petit Boulevard",50.625855,3.144643,1,0,OLI:SA:1921,Europe/Paris,0,OLI, +OLI:SP:PET002,1,"Petit Boulevard",50.626414,3.142818,1,0,OLI:SA:1921,Europe/Paris,0,OLI, +OLI:SP:PGI001,1,"Pave Strategique",50.686688,3.09104,1,0,OLI:SA:1141,Europe/Paris,0,OLI, +OLI:SP:PHA001,1,"Porte D'Halluin",50.767967,3.12129,1,0,OLI:SA:1358,Europe/Paris,0,OLI, +OLI:SP:PHA002,1,"Porte D'Halluin",50.767251,3.121095,1,0,OLI:SA:1358,Europe/Paris,0,OLI, +OLI:SP:PHE001,1,"Poste",50.660059,3.184751,1,0,OLI:SA:5618,Europe/Paris,0,OLI, +OLI:SP:PHE002,1,"Poste",50.660944,3.18519,1,0,OLI:SA:5618,Europe/Paris,0,OLI, +OLI:SP:PHE003,1,"Poste",50.660672,3.184409,1,0,OLI:SA:5618,Europe/Paris,0,OLI, +OLI:SP:PHG001,1,"Philippe De Girard",50.599043,3.052735,1,0,OLI:SA:359,Europe/Paris,0,OLI, +OLI:SP:PHG002,1,"Philippe De Girard",50.599881,3.053635,1,0,OLI:SA:359,Europe/Paris,0,OLI, +OLI:SP:PHG004,1,"Ph. De Girard",50.599627,3.054224,1,0,OLI:SA:6001,Europe/Paris,0,OLI, +OLI:SP:PHL001,1,"Philippe Lebon",50.627454,3.061843,1,0,OLI:SA:7122,Europe/Paris,0,OLI, +OLI:SP:PHL002,1,"Philippe Lebon",50.628061,3.060837,1,0,OLI:SA:7122,Europe/Paris,0,OLI, +OLI:SP:PHY001,1,"Pont Hydraulique",50.712582,3.156203,1,0,OLI:SA:1746,Europe/Paris,0,OLI, +OLI:SP:PHY012,1,"Pont Hydraulique",50.712618,3.156076,1,0,OLI:SA:1746,Europe/Paris,0,OLI, +OLI:SP:PHY098,1,"Pont Hydraulique",50.712702,3.155668,1,0,OLI:SA:1746,Europe/Paris,0,OLI, +OLI:SP:PHY099,1,"Pont Hydraulique",50.712634,3.156373,1,0,OLI:SA:1746,Europe/Paris,0,OLI, +OLI:SP:PIC001,1,"Picasso",50.71135,3.004253,1,0,OLI:SA:2597,Europe/Paris,0,OLI, +OLI:SP:PIC002,1,"Picasso",50.711285,3.004577,1,0,OLI:SA:2597,Europe/Paris,0,OLI, +OLI:SP:PID001,1,"P I De Douai",50.612314,3.075031,1,0,OLI:SA:6002,Europe/Paris,0,OLI, +OLI:SP:PID002,1,"P I De Douai",50.611839,3.07501,1,0,OLI:SA:6002,Europe/Paris,0,OLI, +OLI:SP:PIE001,1,"P. De Roubaix",50.690717,3.186373,1,0,OLI:SA:7663,Europe/Paris,0,OLI, +OLI:SP:PIE003,1,"P. De Roubaix",50.690085,3.186913,1,0,OLI:SA:7663,Europe/Paris,0,OLI, +OLI:SP:PIG001,1,"Noir Pignon",50.774072,3.123126,1,0,OLI:SA:420,Europe/Paris,0,OLI, +OLI:SP:PIG002,1,"Noir Pignon",50.773742,3.122894,1,0,OLI:SA:420,Europe/Paris,0,OLI, +OLI:SP:PIL001,1,"Pilon",50.65163,3.090102,1,0,OLI:SA:6756,Europe/Paris,0,OLI, +OLI:SP:PIL002,1,"Pilon",50.649228,3.092747,1,0,OLI:SA:6756,Europe/Paris,0,OLI, +OLI:SP:PIM001,1,"Piscine",50.665595,3.087335,1,0,OLI:SA:1125,Europe/Paris,0,OLI, +OLI:SP:PIM002,1,"Piscine",50.665481,3.086952,1,0,OLI:SA:1125,Europe/Paris,0,OLI, +OLI:SP:PIN001,1,"Papinerie",50.673429,3.234963,1,0,OLI:SA:697,Europe/Paris,0,OLI, +OLI:SP:PIN002,1,"Papinerie",50.673456,3.234977,1,0,OLI:SA:697,Europe/Paris,0,OLI, +OLI:SP:PIP001,1,"Papin",50.727554,3.13805,1,0,OLI:SA:6853,Europe/Paris,0,OLI, +OLI:SP:PIP002,1,"Papin",50.728036,3.137026,1,0,OLI:SA:6853,Europe/Paris,0,OLI, +OLI:SP:PIS003,1,"Piscine M. Dormoy",50.636063,3.035733,1,0,OLI:SA:760,Europe/Paris,0,OLI, +OLI:SP:PIS004,1,"Piscine M. Dormoy",50.635312,3.035369,1,0,OLI:SA:760,Europe/Paris,0,OLI, +OLI:SP:PJU001,1,"Palais De Justice",50.642282,3.063328,1,0,OLI:SA:796,Europe/Paris,0,OLI, +OLI:SP:PJU002,1,"Palais De Justice",50.642504,3.063627,1,0,OLI:SA:796,Europe/Paris,0,OLI, +OLI:SP:PLA001,1,"Les Platanes",50.675479,3.049666,1,0,OLI:SA:1191,Europe/Paris,0,OLI, +OLI:SP:PLA002,1,"Les Platanes",50.674905,3.049587,1,0,OLI:SA:1191,Europe/Paris,0,OLI, +OLI:SP:PLA003,1,"Les Platanes",50.675342,3.050003,1,0,OLI:SA:1191,Europe/Paris,0,OLI, +OLI:SP:PLB001,1,"Place De La Boucherie",50.657444,3.064324,1,0,OLI:SA:617,Europe/Paris,0,OLI, +OLI:SP:PLB002,1,"Place De La Boucherie",50.65803,3.063853,1,0,OLI:SA:617,Europe/Paris,0,OLI, +OLI:SP:PLC001,1,"Place Chanzy",50.685882,2.892275,1,0,OLI:SA:5771,Europe/Paris,0,OLI, +OLI:SP:PLC002,1,"Place Chanzy",50.685805,2.891624,1,0,OLI:SA:5771,Europe/Paris,0,OLI, +OLI:SP:PLE001,1,"Planche Epinoy",50.664497,3.146269,1,0,OLI:SA:1997,Europe/Paris,0,OLI, +OLI:SP:PLE012,1,"Planche Epinoy",50.664126,3.145445,1,0,OLI:SA:1997,Europe/Paris,0,OLI, +OLI:SP:PLG001,1,"De Gaulle",50.703283,3.219751,1,0,OLI:SA:2164,Europe/Paris,0,OLI, +OLI:SP:PLG002,1,"De Gaulle",50.703284,3.219539,1,0,OLI:SA:2164,Europe/Paris,0,OLI, +OLI:SP:PLI001,1,"Les Peupliers",50.769615,3.083922,1,0,OLI:SA:229,Europe/Paris,0,OLI, +OLI:SP:PLI002,1,"Les Peupliers",50.769459,3.083014,1,0,OLI:SA:229,Europe/Paris,0,OLI, +OLI:SP:PLN001,1,"La Plaine",50.670144,3.237755,1,0,OLI:SA:688,Europe/Paris,0,OLI, +OLI:SP:PLN002,1,"La Plaine",50.670125,3.237867,1,0,OLI:SA:688,Europe/Paris,0,OLI, +OLI:SP:PLR003,1,"Tourcoing Centre",50.721621,3.157835,1,0,OLI:SA:7123,Europe/Paris,0,OLI, +OLI:SP:PLR010,1,"Tourcoing Centre",50.720611,3.158666,1,0,OLI:SA:7123,Europe/Paris,0,OLI, +OLI:SP:PLR011,1,"Tourcoing Centre",50.720719,3.158639,1,0,OLI:SA:7123,Europe/Paris,0,OLI, +OLI:SP:PLR020,1,"Tourcoing Centre",50.721454,3.157267,1,0,OLI:SA:7123,Europe/Paris,0,OLI, +OLI:SP:PLR029,1,"Tourcoing Centre",50.721485,3.158016,1,0,OLI:SA:7123,Europe/Paris,0,OLI, +OLI:SP:PLR030,1,"Tourcoing Centre",50.721457,3.158228,1,0,OLI:SA:7123,Europe/Paris,0,OLI, +OLI:SP:PLR031,1,"Tourcoing Centre",50.721642,3.157327,1,0,OLI:SA:7123,Europe/Paris,0,OLI, +OLI:SP:PLR037,1,"Tourcoing Centre",50.721245,3.15773,1,0,OLI:SA:7123,Europe/Paris,0,OLI, +OLI:SP:PLS001,1,"Place",50.616088,3.190985,1,0,OLI:SA:1879,Europe/Paris,0,OLI, +OLI:SP:PLS002,1,"Place",50.617175,3.192146,1,0,OLI:SA:1879,Europe/Paris,0,OLI, +OLI:SP:PLT001,1,"Place Du Travail",50.677195,3.177814,1,0,OLI:SA:5628,Europe/Paris,0,OLI, +OLI:SP:PLT002,1,"Place Du Travail",50.677144,3.17866,1,0,OLI:SA:5628,Europe/Paris,0,OLI, +OLI:SP:PLV001,1,"Le Pont",50.63088,3.022657,1,0,OLI:SA:3024,Europe/Paris,0,OLI, +OLI:SP:PLV002,1,"Le Pont",50.630771,3.022754,1,0,OLI:SA:3024,Europe/Paris,0,OLI, +OLI:SP:PMA001,1,"G. Lyon",50.624026,3.081606,1,0,OLI:SA:848,Europe/Paris,0,OLI, +OLI:SP:PMA002,1,"G. Lyon",50.62391,3.08152,1,0,OLI:SA:848,Europe/Paris,0,OLI, +OLI:SP:PMI001,1,"I.M.P.",50.686507,3.259427,1,0,OLI:SA:2505,Europe/Paris,0,OLI, +OLI:SP:PMI002,1,"I.M.P.",50.686498,3.259427,1,0,OLI:SA:2505,Europe/Paris,0,OLI, +OLI:SP:PMN001,1,"Petit Menin",50.740995,3.141319,1,0,OLI:SA:7560,Europe/Paris,0,OLI, +OLI:SP:PMN002,1,"Petit Menin",50.740621,3.140931,1,0,OLI:SA:7560,Europe/Paris,0,OLI, +OLI:SP:PMS001,1,"Bicentenaire",50.621088,3.195724,1,0,OLI:SA:1883,Europe/Paris,0,OLI, +OLI:SP:PMS002,1,"Bicentenaire",50.621338,3.195869,1,0,OLI:SA:1883,Europe/Paris,0,OLI, +OLI:SP:PMT001,1,"Place Aux Toiles",50.68891,2.883116,1,0,OLI:SA:6961,Europe/Paris,0,OLI, +OLI:SP:PMT002,1,"Place Aux Toiles",50.688669,2.882747,1,0,OLI:SA:6961,Europe/Paris,0,OLI, +OLI:SP:PMT003,1,"Place Aux Toiles",50.688708,2.882225,1,0,OLI:SA:6961,Europe/Paris,0,OLI, +OLI:SP:PMT004,1,"Place Aux Toiles",50.688887,2.882241,1,0,OLI:SA:6961,Europe/Paris,0,OLI, +OLI:SP:PNC001,1,"Centre Commercial",50.699014,3.209591,1,0,OLI:SA:2208,Europe/Paris,0,OLI, +OLI:SP:PNC002,1,"Centre Commercial",50.698847,3.209052,1,0,OLI:SA:2208,Europe/Paris,0,OLI, +OLI:SP:PND003,1,"Pn De Loos",50.613356,3.010376,1,0,OLI:SA:6279,Europe/Paris,0,OLI, +OLI:SP:PND004,1,"Pn De Loos",50.613609,3.010098,1,0,OLI:SA:6279,Europe/Paris,0,OLI, +OLI:SP:PNE001,1,"Piscine",50.777989,3.130585,1,0,OLI:SA:4729,Europe/Paris,0,OLI, +OLI:SP:PNL001,1,"Pn Lannoy",50.67062,3.207656,1,0,OLI:SA:681,Europe/Paris,0,OLI, +OLI:SP:PNL002,1,"Pn Lannoy",50.670684,3.207488,1,0,OLI:SA:681,Europe/Paris,0,OLI, +OLI:SP:PNM001,1,"Pn De Marquette",50.673328,3.050765,1,0,OLI:SA:5941,Europe/Paris,0,OLI, +OLI:SP:PNM002,1,"Pn De Marquette",50.672825,3.05104,1,0,OLI:SA:5941,Europe/Paris,0,OLI, +OLI:SP:PNT001,1,"P.N. De Tressin",50.611863,3.189771,1,0,OLI:SA:1878,Europe/Paris,0,OLI, +OLI:SP:PNT002,1,"P.N. De Tressin",50.611925,3.189801,1,0,OLI:SA:1878,Europe/Paris,0,OLI, +OLI:SP:PNT003,1,"P.N. De Tressin",50.611464,3.191569,1,0,OLI:SA:1878,Europe/Paris,0,OLI, +OLI:SP:PNT004,1,"P.N. De Tressin",50.611482,3.191555,1,0,OLI:SA:1878,Europe/Paris,0,OLI, +OLI:SP:POC001,1,"Pont Casier",50.691593,2.91061,1,0,OLI:SA:5655,Europe/Paris,0,OLI, +OLI:SP:POC002,1,"Pont Casier",50.691363,2.909901,1,0,OLI:SA:5655,Europe/Paris,0,OLI, +OLI:SP:POD001,1,"Porte De France",50.684103,3.254568,1,0,OLI:SA:686,Europe/Paris,0,OLI, +OLI:SP:POD002,1,"Porte De France",50.684015,3.254397,1,0,OLI:SA:686,Europe/Paris,0,OLI, +OLI:SP:POE001,1,"Pied De Boeuf",50.736531,3.127014,1,0,OLI:SA:5518,Europe/Paris,0,OLI, +OLI:SP:POE002,1,"Pied De Boeuf",50.737035,3.128167,1,0,OLI:SA:5518,Europe/Paris,0,OLI, +OLI:SP:POE003,1,"Pied De Boeuf",50.736135,3.127135,1,0,OLI:SA:5518,Europe/Paris,0,OLI, +OLI:SP:POH001,1,"Salle Poher",50.693719,3.088322,1,0,OLI:SA:5787,Europe/Paris,0,OLI, +OLI:SP:POH002,1,"Salle Poher",50.694377,3.087725,1,0,OLI:SA:5787,Europe/Paris,0,OLI, +OLI:SP:POI001,1,"Pave Du Moulin",50.622435,3.12132,1,0,OLI:SA:5914,Europe/Paris,0,OLI, +OLI:SP:POM001,1,"Pompidou",50.651834,3.072638,1,0,OLI:SA:623,Europe/Paris,0,OLI, +OLI:SP:PPA001,1,"Petit Paris",50.758518,3.093243,1,0,OLI:SA:5736,Europe/Paris,0,OLI, +OLI:SP:PPA002,1,"Petit Paris",50.758241,3.093013,1,0,OLI:SA:5736,Europe/Paris,0,OLI, +OLI:SP:PPC001,1,"Petit Prince",50.592672,3.120938,1,0,OLI:SA:723,Europe/Paris,0,OLI, +OLI:SP:PPC002,1,"Petit Prince",50.592655,3.120839,1,0,OLI:SA:723,Europe/Paris,0,OLI, +OLI:SP:PPD001,1,"Pompidou",50.682908,2.999158,1,0,OLI:SA:7125,Europe/Paris,0,OLI, +OLI:SP:PPD002,1,"Pompidou",50.682372,2.99877,1,0,OLI:SA:7125,Europe/Paris,0,OLI, +OLI:SP:PPG002,1,"Ph. De Girard",50.664882,2.967673,1,0,OLI:SA:5820,Europe/Paris,0,OLI, +OLI:SP:PPG003,1,"Ph. De Girard",50.664722,2.967276,1,0,OLI:SA:5820,Europe/Paris,0,OLI, +OLI:SP:PPL001,1,"Plat Pays",50.706983,3.067532,1,0,OLI:SA:5834,Europe/Paris,0,OLI, +OLI:SP:PPL002,1,"Plat Pays",50.707261,3.067578,1,0,OLI:SA:5834,Europe/Paris,0,OLI, +OLI:SP:PQU001,1,"Pont Du Breucq",50.666447,3.141643,1,0,OLI:SA:1905,Europe/Paris,0,OLI, +OLI:SP:PQU002,1,"Pont Du Breucq",50.667162,3.142064,1,0,OLI:SA:1905,Europe/Paris,0,OLI, +OLI:SP:PRC001,1,"Pre Catelan",50.652495,3.060866,1,0,OLI:SA:7127,Europe/Paris,0,OLI, +OLI:SP:PRC002,1,"Pre Catelan",50.652307,3.060779,1,0,OLI:SA:7127,Europe/Paris,0,OLI, +OLI:SP:PRD001,1,"Picardie",50.671144,2.970984,1,0,OLI:SA:1293,Europe/Paris,0,OLI, +OLI:SP:PRD002,1,"Picardie",50.671046,2.970828,1,0,OLI:SA:1293,Europe/Paris,0,OLI, +OLI:SP:PRD003,1,"Picardie",50.671004,2.970206,1,0,OLI:SA:1293,Europe/Paris,0,OLI, +OLI:SP:PRD004,1,"Picardie",50.671202,2.970053,1,0,OLI:SA:1293,Europe/Paris,0,OLI, +OLI:SP:PRE001,1,"Colpin",50.645684,3.132915,1,0,OLI:SA:7128,Europe/Paris,0,OLI, +OLI:SP:PRE002,1,"Colpin",50.64554,3.132898,1,0,OLI:SA:7128,Europe/Paris,0,OLI, +OLI:SP:PRF001,1,"Prom De Flandre",50.743123,3.146513,1,0,OLI:SA:7636,Europe/Paris,0,OLI, +OLI:SP:PRF002,1,"Prom De Flandre",50.742873,3.146311,1,0,OLI:SA:7636,Europe/Paris,0,OLI, +OLI:SP:PRR001,1,"Porte D'Arras",50.617692,3.062125,1,0,OLI:SA:866,Europe/Paris,0,OLI, +OLI:SP:PRR004,1,"Porte D'Arras",50.617781,3.062267,1,0,OLI:SA:866,Europe/Paris,0,OLI, +OLI:SP:PRR098,1,"Porte D'Arras",50.617583,3.062349,1,0,OLI:SA:866,Europe/Paris,0,OLI, +OLI:SP:PRR099,1,"Porte D'Arras",50.617583,3.062349,1,0,OLI:SA:866,Europe/Paris,0,OLI, +OLI:SP:PRS098,1,"Les Pres-E. Pisani",50.650345,3.126386,1,0,OLI:SA:1968,Europe/Paris,0,OLI, +OLI:SP:PRS099,1,"Les Pres-E. Pisani",50.650345,3.126386,1,0,OLI:SA:1968,Europe/Paris,0,OLI, +OLI:SP:PRT001,1,"Port Fluvial",50.622903,3.01489,1,0,OLI:SA:1061,Europe/Paris,0,OLI, +OLI:SP:PRT002,1,"Port Fluvial",50.621939,3.015554,1,0,OLI:SA:1061,Europe/Paris,0,OLI, +OLI:SP:PRU001,1,"Les Prieux",50.709357,3.134933,1,0,OLI:SA:5851,Europe/Paris,0,OLI, +OLI:SP:PRU002,1,"Les Prieux",50.709266,3.135058,1,0,OLI:SA:5851,Europe/Paris,0,OLI, +OLI:SP:PRV001,1,"Jacques Prevert",50.702066,3.069409,1,0,OLI:SA:7232,Europe/Paris,0,OLI, +OLI:SP:PSC001,1,"Pascal",50.664638,3.193311,1,0,OLI:SA:5621,Europe/Paris,0,OLI, +OLI:SP:PSC002,1,"Pascal",50.664859,3.193851,1,0,OLI:SA:5621,Europe/Paris,0,OLI, +OLI:SP:PSE001,1,"Poste",50.562729,2.900191,1,0,OLI:SA:1581,Europe/Paris,0,OLI, +OLI:SP:PSF001,1,"Pole Sportif",50.676859,3.12528,1,0,OLI:SA:4651,Europe/Paris,0,OLI, +OLI:SP:PSF002,1,"Pole Sportif",50.677469,3.125205,1,0,OLI:SA:4651,Europe/Paris,0,OLI, +OLI:SP:PSH001,1,"Place St Hubert",50.638912,3.070374,1,0,OLI:SA:7205,Europe/Paris,0,OLI, +OLI:SP:PSM001,1,"Palais Des Metiers",50.675593,3.140788,1,0,OLI:SA:278,Europe/Paris,0,OLI, +OLI:SP:PSM002,1,"Palais Des Metiers",50.675677,3.14031,1,0,OLI:SA:278,Europe/Paris,0,OLI, +OLI:SP:PSR001,1,"Piscine",50.755649,3.12473,1,0,OLI:SA:7191,Europe/Paris,0,OLI, +OLI:SP:PSR002,1,"Piscine",50.755569,3.124714,1,0,OLI:SA:7191,Europe/Paris,0,OLI, +OLI:SP:PSU098,1,"Pont Superieur",50.644607,3.014056,1,0,OLI:SA:1003,Europe/Paris,0,OLI, +OLI:SP:PSU099,1,"Pont Superieur",50.644607,3.014056,1,0,OLI:SA:1003,Europe/Paris,0,OLI, +OLI:SP:PTA001,1,"Pont De L'Abbaye",50.666278,3.06465,1,0,OLI:SA:5938,Europe/Paris,0,OLI, +OLI:SP:PTA002,1,"Pont De L'Abbaye",50.665538,3.063892,1,0,OLI:SA:5938,Europe/Paris,0,OLI, +OLI:SP:PTB001,1,"Petit Bois",50.587262,3.108242,1,0,OLI:SA:711,Europe/Paris,0,OLI, +OLI:SP:PTB002,1,"Petit Bois",50.586551,3.107146,1,0,OLI:SA:711,Europe/Paris,0,OLI, +OLI:SP:PTC001,1,"Le Petit Chat",50.707393,3.032225,1,0,OLI:SA:5506,Europe/Paris,0,OLI, +OLI:SP:PTC002,1,"Le Petit Chat",50.707267,3.032322,1,0,OLI:SA:5506,Europe/Paris,0,OLI, +OLI:SP:PTD001,1,"Pont Du Blanc Seau",50.695194,3.145933,1,0,OLI:SA:1788,Europe/Paris,0,OLI, +OLI:SP:PTD002,1,"Pont Du Blanc Seau",50.695111,3.146299,1,0,OLI:SA:1788,Europe/Paris,0,OLI, +OLI:SP:PTE001,1,"Petite Chapelle",50.715707,2.934423,1,0,OLI:SA:5810,Europe/Paris,0,OLI, +OLI:SP:PTE002,1,"Petite Chapelle",50.715599,2.934365,1,0,OLI:SA:5810,Europe/Paris,0,OLI, +OLI:SP:PTG001,1,"Pont Rouge",50.727299,2.940907,1,0,OLI:SA:5803,Europe/Paris,0,OLI, +OLI:SP:PTG002,1,"Pont Rouge",50.727325,2.941048,1,0,OLI:SA:5803,Europe/Paris,0,OLI, +OLI:SP:PTL098,1,"Port De Lille",50.630034,3.035916,1,0,OLI:SA:934,Europe/Paris,0,OLI, +OLI:SP:PTL099,1,"Port De Lille",50.630034,3.035916,1,0,OLI:SA:934,Europe/Paris,0,OLI, +OLI:SP:PTM001,1,"Pont De Marcq",50.671037,3.07748,1,0,OLI:SA:1142,Europe/Paris,0,OLI, +OLI:SP:PTM002,1,"Pont De Marcq",50.67041,3.077202,1,0,OLI:SA:1142,Europe/Paris,0,OLI, +OLI:SP:PTN098,1,"Pont De Neuville",50.736792,3.170593,1,0,OLI:SA:5754,Europe/Paris,0,OLI, +OLI:SP:PTN099,1,"Pont De Neuville",50.736792,3.170593,1,0,OLI:SA:5754,Europe/Paris,0,OLI, +OLI:SP:PTO001,1,"Place",50.661052,3.228559,1,0,OLI:SA:1713,Europe/Paris,0,OLI, +OLI:SP:PTO002,1,"Place",50.661149,3.228857,1,0,OLI:SA:1713,Europe/Paris,0,OLI, +OLI:SP:PTP001,1,"Petit Paris",50.609406,3.180481,1,0,OLI:SA:1881,Europe/Paris,0,OLI, +OLI:SP:PTP002,1,"Petit Paris",50.609413,3.180707,1,0,OLI:SA:1881,Europe/Paris,0,OLI, +OLI:SP:PTQ001,1,"Petit Quinquin",50.580327,3.13661,1,0,OLI:SA:389,Europe/Paris,0,OLI, +OLI:SP:PTS001,1,"Ferme Aux Oies",50.686303,3.102627,1,0,OLI:SA:5932,Europe/Paris,0,OLI, +OLI:SP:PTS002,1,"Ferme Aux Oies",50.686448,3.102375,1,0,OLI:SA:5932,Europe/Paris,0,OLI, +OLI:SP:PTT001,1,"Pont De Tournai",50.621748,3.086028,1,0,OLI:SA:928,Europe/Paris,0,OLI, +OLI:SP:PTT002,1,"Pont De Tournai",50.621459,3.086292,1,0,OLI:SA:928,Europe/Paris,0,OLI, +OLI:SP:PTU001,1,"Pasteur",50.778881,3.125634,1,0,OLI:SA:2693,Europe/Paris,0,OLI, +OLI:SP:PUR001,1,"Pureur",50.626136,3.233986,1,0,OLI:SA:2244,Europe/Paris,0,OLI, +OLI:SP:PUR002,1,"Pureur",50.626305,3.234116,1,0,OLI:SA:2244,Europe/Paris,0,OLI, +OLI:SP:PVL021,1,"Pave De Lille",50.663674,3.130732,1,0,OLI:SA:2071,Europe/Paris,0,OLI, +OLI:SP:PVL032,1,"Pave De Lille",50.663797,3.129689,1,0,OLI:SA:2071,Europe/Paris,0,OLI, +OLI:SP:PVL096,1,"Pave De Lille",50.664234,3.130091,1,0,OLI:SA:2071,Europe/Paris,0,OLI, +OLI:SP:PVL097,1,"Pave De Lille",50.664234,3.130091,1,0,OLI:SA:2071,Europe/Paris,0,OLI, +OLI:SP:PVR001,1,"Jacques Prevert",50.702066,3.069409,1,0,OLI:SA:7232,Europe/Paris,0,OLI, +OLI:SP:PVR002,1,"Jacques Prevert",50.702066,3.069409,1,0,OLI:SA:7232,Europe/Paris,0,OLI, +OLI:SP:QAM001,1,"Marquette Mairie",50.676958,3.065215,1,0,OLI:SA:4082,Europe/Paris,0,OLI, +OLI:SP:QAM002,1,"Marquette Mairie",50.6774,3.064798,1,0,OLI:SA:4082,Europe/Paris,0,OLI, +OLI:SP:QBP001,1,"Blanche Porte",50.71738,2.996959,1,0,OLI:SA:1316,Europe/Paris,0,OLI, +OLI:SP:QCE001,1,"Centre",50.713268,2.999448,1,0,OLI:SA:1322,Europe/Paris,0,OLI, +OLI:SP:QCE002,1,"Centre",50.71371,2.99903,1,0,OLI:SA:1322,Europe/Paris,0,OLI, +OLI:SP:QHV001,1,"Quesnoy Mairie",50.712235,3.001369,1,0,OLI:SA:7659,Europe/Paris,0,OLI, +OLI:SP:QHV002,1,"Quesnoy Mairie",50.712317,3.001201,1,0,OLI:SA:7659,Europe/Paris,0,OLI, +OLI:SP:QPO001,1,"Le Pont",50.710105,2.997188,1,0,OLI:SA:1311,Europe/Paris,0,OLI, +OLI:SP:QPO002,1,"Le Pont",50.710016,2.997031,1,0,OLI:SA:1311,Europe/Paris,0,OLI, +OLI:SP:QPO003,1,"Le Pont",50.710024,2.998868,1,0,OLI:SA:1311,Europe/Paris,0,OLI, +OLI:SP:QPO004,1,"Le Pont",50.710235,2.997995,1,0,OLI:SA:1311,Europe/Paris,0,OLI, +OLI:SP:QRA001,1,"Traversiere",50.716495,3.001525,1,0,OLI:SA:1317,Europe/Paris,0,OLI, +OLI:SP:QRA002,1,"Traversiere",50.716683,3.00164,1,0,OLI:SA:1317,Europe/Paris,0,OLI, +OLI:SP:QSP001,1,"Republique",50.685014,2.873628,1,0,OLI:SA:4618,Europe/Paris,0,OLI, +OLI:SP:QUA001,1,"4 Bonniers",50.703891,2.984903,1,0,OLI:SA:1310,Europe/Paris,0,OLI, +OLI:SP:QUA002,1,"4 Bonniers",50.703918,2.985016,1,0,OLI:SA:1310,Europe/Paris,0,OLI, +OLI:SP:QUE001,1,"Quesnoy Mairie",50.712741,3.000769,1,0,OLI:SA:7659,Europe/Paris,0,OLI, +OLI:SP:QUE002,1,"Quesnoy Mairie",50.712631,2.999496,1,0,OLI:SA:7659,Europe/Paris,0,OLI, +OLI:SP:QUE003,1,"Quesnoy Mairie",50.712558,3.001501,1,0,OLI:SA:7659,Europe/Paris,0,OLI, +OLI:SP:QUI001,1,"Jean Moulin",50.68416,3.171776,1,0,OLI:SA:1471,Europe/Paris,0,OLI, +OLI:SP:QUI002,1,"Jean Moulin",50.684188,3.171677,1,0,OLI:SA:1471,Europe/Paris,0,OLI, +OLI:SP:QUI021,1,"Jean Moulin",50.685062,3.17237,1,0,OLI:SA:1471,Europe/Paris,0,OLI, +OLI:SP:QUI032,1,"Jean Moulin",50.684876,3.172042,1,0,OLI:SA:1471,Europe/Paris,0,OLI, +OLI:SP:QUO007,1,"Bayart",50.629544,3.024133,1,0,OLI:SA:4698,Europe/Paris,0,OLI, +OLI:SP:RAC001,1,"Racine",50.737517,3.143765,1,0,OLI:SA:6985,Europe/Paris,0,OLI, +OLI:SP:RAC002,1,"Racine",50.737626,3.143554,1,0,OLI:SA:6985,Europe/Paris,0,OLI, +OLI:SP:RAL001,1,"Rabelais",50.640697,2.983618,1,0,OLI:SA:1027,Europe/Paris,0,OLI, +OLI:SP:RAL002,1,"Rabelais",50.640543,2.983983,1,0,OLI:SA:1027,Europe/Paris,0,OLI, +OLI:SP:RAS001,1,"Raspail",50.734862,3.142464,1,0,OLI:SA:1781,Europe/Paris,0,OLI, +OLI:SP:RAS002,1,"Raspail",50.734717,3.142716,1,0,OLI:SA:1781,Europe/Paris,0,OLI, +OLI:SP:RAV001,1,"Calmette",50.717225,3.129082,1,0,OLI:SA:7002,Europe/Paris,0,OLI, +OLI:SP:RAV002,1,"Calmette",50.71661,3.12985,1,0,OLI:SA:7002,Europe/Paris,0,OLI, +OLI:SP:RAY001,1,"Raymond Lis",50.691944,2.884519,1,0,OLI:SA:110,Europe/Paris,0,OLI, +OLI:SP:RAY002,1,"Raymond Lis",50.692006,2.884689,1,0,OLI:SA:110,Europe/Paris,0,OLI, +OLI:SP:RBA001,1,"Rue De Babylone",50.657293,3.140889,1,0,OLI:SA:2010,Europe/Paris,0,OLI, +OLI:SP:RBA002,1,"Rue De Babylone",50.657667,3.140077,1,0,OLI:SA:2010,Europe/Paris,0,OLI, +OLI:SP:RBE001,1,"Faidherbe",50.638982,3.127462,1,0,OLI:SA:5275,Europe/Paris,0,OLI, +OLI:SP:RBE002,1,"Faidherbe",50.638857,3.127432,1,0,OLI:SA:5275,Europe/Paris,0,OLI, +OLI:SP:RBR001,1,"Rue Brune",50.694364,2.918479,1,0,OLI:SA:555,Europe/Paris,0,OLI, +OLI:SP:RBR002,1,"Rue Brune",50.695073,2.916539,1,0,OLI:SA:555,Europe/Paris,0,OLI, +OLI:SP:RBU001,1,"Buisson",50.68324,3.230423,1,0,OLI:SA:701,Europe/Paris,0,OLI, +OLI:SP:RBU002,1,"Buisson",50.683129,3.230817,1,0,OLI:SA:701,Europe/Paris,0,OLI, +OLI:SP:RCA001,1,"Carnot",50.696364,3.202456,1,0,OLI:SA:2204,Europe/Paris,0,OLI, +OLI:SP:RCA002,1,"Carnot",50.69626,3.20196,1,0,OLI:SA:2204,Europe/Paris,0,OLI, +OLI:SP:RCK001,1,"Reckem",50.75482,3.157165,1,0,OLI:SA:1272,Europe/Paris,0,OLI, +OLI:SP:RCK002,1,"Reckem",50.755792,3.159387,1,0,OLI:SA:1272,Europe/Paris,0,OLI, +OLI:SP:RCO001,1,"Charcot",50.66385,3.08371,1,0,OLI:SA:1144,Europe/Paris,0,OLI, +OLI:SP:RCO002,1,"Charcot",50.663636,3.083551,1,0,OLI:SA:1144,Europe/Paris,0,OLI, +OLI:SP:RCT001,1,"Crt 3",50.57937,3.137482,1,0,OLI:SA:738,Europe/Paris,0,OLI, +OLI:SP:RCT002,1,"Crt 3",50.579684,3.136022,1,0,OLI:SA:738,Europe/Paris,0,OLI, +OLI:SP:RDB001,1,"Rue De Bordeaux",50.595451,3.080716,1,0,OLI:SA:5550,Europe/Paris,0,OLI, +OLI:SP:RDB002,1,"Rue De Bordeaux",50.594845,3.079988,1,0,OLI:SA:5550,Europe/Paris,0,OLI, +OLI:SP:RDC002,1,"Rue Des Champs",50.69163,3.166732,1,0,OLI:SA:5896,Europe/Paris,0,OLI, +OLI:SP:RDD001,1,"Rte Deulemont",50.744415,2.945793,1,0,OLI:SA:5828,Europe/Paris,0,OLI, +OLI:SP:RDD002,1,"Rte Deulemont",50.744548,2.946162,1,0,OLI:SA:5828,Europe/Paris,0,OLI, +OLI:SP:RDE001,1,"Rue Des Ecoles",50.739559,3.082652,1,0,OLI:SA:5504,Europe/Paris,0,OLI, +OLI:SP:RDE002,1,"Rue Des Ecoles",50.739746,3.082909,1,0,OLI:SA:5504,Europe/Paris,0,OLI, +OLI:SP:RDF001,1,"Rue Des Fusilles",50.640635,2.971317,1,0,OLI:SA:243,Europe/Paris,0,OLI, +OLI:SP:RDF002,1,"Rue Des Fusilles",50.640171,2.970789,1,0,OLI:SA:243,Europe/Paris,0,OLI, +OLI:SP:RDG001,1,"Rue De Grenoble",50.595257,3.074117,1,0,OLI:SA:5552,Europe/Paris,0,OLI, +OLI:SP:RDG002,1,"Rue De Grenoble",50.595757,3.073054,1,0,OLI:SA:5552,Europe/Paris,0,OLI, +OLI:SP:RDH001,1,"Rue Du Hem",50.631952,2.985085,1,0,OLI:SA:5970,Europe/Paris,0,OLI, +OLI:SP:RDH002,1,"Rue Du Hem",50.63181,2.984871,1,0,OLI:SA:5970,Europe/Paris,0,OLI, +OLI:SP:RDJ001,1,"Rue De Jemmapes",50.594184,3.076596,1,0,OLI:SA:345,Europe/Paris,0,OLI, +OLI:SP:RDJ002,1,"Rue De Jemmapes",50.594764,3.075562,1,0,OLI:SA:345,Europe/Paris,0,OLI, +OLI:SP:RDL001,1,"Rue De L'Oise",50.611614,3.061445,1,0,OLI:SA:358,Europe/Paris,0,OLI, +OLI:SP:RDL002,1,"Rue De L'Oise",50.612016,3.06176,1,0,OLI:SA:358,Europe/Paris,0,OLI, +OLI:SP:RDO001,1,"Rue Dr Calmette",50.617103,2.975502,1,0,OLI:SA:4604,Europe/Paris,0,OLI, +OLI:SP:RDO002,1,"Rue Dr Calmette",50.617284,2.975194,1,0,OLI:SA:4604,Europe/Paris,0,OLI, +OLI:SP:RDP002,1,"Rte Pt A Marcq",50.556937,3.033263,1,0,OLI:SA:6928,Europe/Paris,0,OLI, +OLI:SP:RDP005,1,"Rte Pt A Marcq",50.556678,3.033006,1,0,OLI:SA:6928,Europe/Paris,0,OLI, +OLI:SP:RDS001,1,"Saut Du Loup",50.655004,3.03477,1,0,OLI:SA:5923,Europe/Paris,0,OLI, +OLI:SP:RDS002,1,"Saut Du Loup",50.654932,3.034952,1,0,OLI:SA:5923,Europe/Paris,0,OLI, +OLI:SP:RDT001,1,"Rue De Toul",50.63306,3.044858,1,0,OLI:SA:828,Europe/Paris,0,OLI, +OLI:SP:RDV001,1,"Rue De Valenciennes",50.623051,3.072144,1,0,OLI:SA:786,Europe/Paris,0,OLI, +OLI:SP:RDV004,1,"Rue De Valenciennes",50.622477,3.072065,1,0,OLI:SA:786,Europe/Paris,0,OLI, +OLI:SP:RDW001,1,"Rue De Wavrin",50.593095,2.949448,1,0,OLI:SA:1635,Europe/Paris,0,OLI, +OLI:SP:RDW002,1,"Rue De Wavrin",50.59363,2.949934,1,0,OLI:SA:1635,Europe/Paris,0,OLI, +OLI:SP:REB001,1,"Republique",50.688832,2.902502,1,0,OLI:SA:5656,Europe/Paris,0,OLI, +OLI:SP:REB002,1,"Republique",50.688862,2.901867,1,0,OLI:SA:5656,Europe/Paris,0,OLI, +OLI:SP:REC001,1,"Rue Des Ecoles",50.663263,3.191114,1,0,OLI:SA:5620,Europe/Paris,0,OLI, +OLI:SP:REC002,1,"Rue Des Ecoles",50.66355,3.191077,1,0,OLI:SA:5620,Europe/Paris,0,OLI, +OLI:SP:REC003,1,"Rue Des Ecoles",50.663447,3.190426,1,0,OLI:SA:5620,Europe/Paris,0,OLI, +OLI:SP:REG001,1,"Rue De L'Eglise",50.665108,3.075924,1,0,OLI:SA:1131,Europe/Paris,0,OLI, +OLI:SP:REG002,1,"Rue De L'Eglise",50.664805,3.075623,1,0,OLI:SA:1131,Europe/Paris,0,OLI, +OLI:SP:REI001,1,"Boulevard De Reims",50.678303,3.18499,1,0,OLI:SA:1521,Europe/Paris,0,OLI, +OLI:SP:REI002,1,"Boulevard De Reims",50.678284,3.185089,1,0,OLI:SA:1521,Europe/Paris,0,OLI, +OLI:SP:REM001,1,"Saint Remi",50.695095,3.180982,1,0,OLI:SA:7130,Europe/Paris,0,OLI, +OLI:SP:REM002,1,"Saint Remi",50.695197,3.180448,1,0,OLI:SA:7130,Europe/Paris,0,OLI, +OLI:SP:REN001,1,"Florence",50.72929,3.167161,1,0,OLI:SA:6972,Europe/Paris,0,OLI, +OLI:SP:REN002,1,"Florence",50.729763,3.167479,1,0,OLI:SA:6972,Europe/Paris,0,OLI, +OLI:SP:REP003,1,"Republique Beaux-Arts",50.63156,3.062171,1,0,OLI:SA:6417,Europe/Paris,0,OLI, +OLI:SP:REP005,1,"Republique Beaux-Arts",50.631389,3.062352,1,0,OLI:SA:6417,Europe/Paris,0,OLI, +OLI:SP:REP007,1,"Republique Beaux-Arts",50.631927,3.062261,1,0,OLI:SA:6417,Europe/Paris,0,OLI, +OLI:SP:REP072,1,"Republique Beaux-Arts",50.632008,3.062234,1,0,OLI:SA:6417,Europe/Paris,0,OLI, +OLI:SP:REP098,1,"Republique Beaux-Arts",50.631776,3.060608,1,0,OLI:SA:6417,Europe/Paris,0,OLI, +OLI:SP:REP099,1,"Republique Beaux-Arts",50.631776,3.060608,1,0,OLI:SA:6417,Europe/Paris,0,OLI, +OLI:SP:RER001,1,"Ermitage",50.695602,3.169623,1,0,OLI:SA:1428,Europe/Paris,0,OLI, +OLI:SP:RER002,1,"Ermitage",50.695222,3.170167,1,0,OLI:SA:1428,Europe/Paris,0,OLI, +OLI:SP:RFE001,1,"Ferrer",50.604009,3.094009,1,0,OLI:SA:1352,Europe/Paris,0,OLI, +OLI:SP:RFE002,1,"Ferrer",50.60443,3.094199,1,0,OLI:SA:1352,Europe/Paris,0,OLI, +OLI:SP:RFE006,1,"Ferrer",50.604008,3.094192,1,0,OLI:SA:1352,Europe/Paris,0,OLI, +OLI:SP:RFR001,1,"Fraternite",50.682851,3.196673,1,0,OLI:SA:1503,Europe/Paris,0,OLI, +OLI:SP:RGA001,1,"Ancienne Gare",50.750808,3.120158,1,0,OLI:SA:5478,Europe/Paris,0,OLI, +OLI:SP:RGA002,1,"Ancienne Gare",50.750334,3.119924,1,0,OLI:SA:5478,Europe/Paris,0,OLI, +OLI:SP:RGB001,1,"Rouges Barres",50.654948,3.094668,1,0,OLI:SA:1132,Europe/Paris,0,OLI, +OLI:SP:RGB002,1,"Rouges Barres",50.654975,3.09464,1,0,OLI:SA:1132,Europe/Paris,0,OLI, +OLI:SP:RHA001,1,"Rue D'Haubourdin",50.599239,3.068285,1,0,OLI:SA:342,Europe/Paris,0,OLI, +OLI:SP:RHA002,1,"Rue D'Haubourdin",50.599696,3.06839,1,0,OLI:SA:342,Europe/Paris,0,OLI, +OLI:SP:RHO002,1,"Rue De L'Hospice",50.692744,3.170521,1,0,OLI:SA:5892,Europe/Paris,0,OLI, +OLI:SP:RIA001,1,"Floriade Renaissance",50.719962,3.003987,1,0,OLI:SA:1313,Europe/Paris,0,OLI, +OLI:SP:RIA002,1,"Floriade Renaissance",50.720015,3.004044,1,0,OLI:SA:1313,Europe/Paris,0,OLI, +OLI:SP:RIB001,1,"Ribot",50.684358,3.143273,1,0,OLI:SA:2080,Europe/Paris,0,OLI, +OLI:SP:RIB002,1,"Ribot",50.68467,3.143659,1,0,OLI:SA:2080,Europe/Paris,0,OLI, +OLI:SP:RID001,1,"Loridan",50.700321,3.086769,1,0,OLI:SA:1169,Europe/Paris,0,OLI, +OLI:SP:RID002,1,"Loridan",50.701095,3.086272,1,0,OLI:SA:1169,Europe/Paris,0,OLI, +OLI:SP:RIE003,1,"Le Riez",50.546179,3.038196,1,0,OLI:SA:1663,Europe/Paris,0,OLI, +OLI:SP:RIE004,1,"Le Riez",50.545228,3.038295,1,0,OLI:SA:1663,Europe/Paris,0,OLI, +OLI:SP:RIH098,1,"Rihour",50.6357,3.062908,1,0,OLI:SA:942,Europe/Paris,0,OLI, +OLI:SP:RIH099,1,"Rihour",50.636542,3.061524,1,0,OLI:SA:942,Europe/Paris,0,OLI, +OLI:SP:RIH198,1,"Rihour",50.636669,3.061342,1,0,OLI:SA:942,Europe/Paris,0,OLI, +OLI:SP:RIN001,1,"Ringot",50.676163,2.889456,1,0,OLI:SA:589,Europe/Paris,0,OLI, +OLI:SP:RIN002,1,"Ringot",50.676234,2.889655,1,0,OLI:SA:589,Europe/Paris,0,OLI, +OLI:SP:RIO001,1,"Brigode",50.630892,3.154794,1,0,OLI:SA:5607,Europe/Paris,0,OLI, +OLI:SP:RIO002,1,"Brigode",50.632004,3.154939,1,0,OLI:SA:5607,Europe/Paris,0,OLI, +OLI:SP:RIS002,1,"Risquons Tout",50.748035,3.180592,1,0,OLI:SA:1837,Europe/Paris,0,OLI, +OLI:SP:RIT001,1,"Le Christ",50.724449,3.080759,1,0,OLI:SA:197,Europe/Paris,0,OLI, +OLI:SP:RIT002,1,"Le Christ",50.724467,3.080773,1,0,OLI:SA:197,Europe/Paris,0,OLI, +OLI:SP:RJA001,1,"Jean Jaures",50.610159,3.075338,1,0,OLI:SA:5557,Europe/Paris,0,OLI, +OLI:SP:RJA002,1,"Jean Jaures",50.609648,3.075316,1,0,OLI:SA:5557,Europe/Paris,0,OLI, +OLI:SP:RJA003,1,"Jean Jaures",50.585831,3.104697,1,0,OLI:SA:727,Europe/Paris,0,OLI, +OLI:SP:RJA004,1,"Jean Jaures",50.585108,3.105503,1,0,OLI:SA:727,Europe/Paris,0,OLI, +OLI:SP:RJA005,1,"Jaures",50.585673,3.105512,1,0,OLI:SA:716,Europe/Paris,0,OLI, +OLI:SP:RLE001,1,"Renoir",50.620322,3.036937,1,0,OLI:SA:755,Europe/Paris,0,OLI, +OLI:SP:RLE002,1,"Renoir",50.620198,3.036667,1,0,OLI:SA:755,Europe/Paris,0,OLI, +OLI:SP:RLG001,1,"Rue De La Gare",50.613823,2.927934,1,0,OLI:SA:337,Europe/Paris,0,OLI, +OLI:SP:RLG002,1,"Rue De La Gare",50.614089,2.928487,1,0,OLI:SA:337,Europe/Paris,0,OLI, +OLI:SP:RLI001,1,"Rue De Lille",50.683617,2.879275,1,0,OLI:SA:6962,Europe/Paris,0,OLI, +OLI:SP:RLI002,1,"Rue De Lille",50.684267,2.880454,1,0,OLI:SA:6962,Europe/Paris,0,OLI, +OLI:SP:RLO001,1,"Rue De Lomme",50.660918,2.976302,1,0,OLI:SA:1292,Europe/Paris,0,OLI, +OLI:SP:RLO002,1,"Rue De Lomme",50.660801,2.976272,1,0,OLI:SA:1292,Europe/Paris,0,OLI, +OLI:SP:RLS001,1,"Rue De La Liesse",50.742676,3.234781,1,0,OLI:SA:2462,Europe/Paris,0,OLI, +OLI:SP:RMI001,1,"Ermitage",50.693675,2.912286,1,0,OLI:SA:559,Europe/Paris,0,OLI, +OLI:SP:RMI002,1,"Ermitage",50.693864,2.912274,1,0,OLI:SA:559,Europe/Paris,0,OLI, +OLI:SP:RNG001,1,"Sangnier",50.784966,3.115149,1,0,OLI:SA:427,Europe/Paris,0,OLI, +OLI:SP:RNG002,1,"Sangnier",50.784885,3.11519,1,0,OLI:SA:427,Europe/Paris,0,OLI, +OLI:SP:RNI001,1,"Orions",50.732548,3.13129,1,0,OLI:SA:6852,Europe/Paris,0,OLI, +OLI:SP:RNO002,1,"Carnot",50.639165,3.065596,1,0,OLI:SA:909,Europe/Paris,0,OLI, +OLI:SP:ROB001,1,"Bayart",50.629524,3.024415,1,0,OLI:SA:4698,Europe/Paris,0,OLI, +OLI:SP:ROB002,1,"Bayart",50.629452,3.024442,1,0,OLI:SA:4698,Europe/Paris,0,OLI, +OLI:SP:ROC001,1,"Chapelle St Roch",50.668583,3.072334,1,0,OLI:SA:1155,Europe/Paris,0,OLI, +OLI:SP:ROC002,1,"Chapelle St Roch",50.668358,3.072472,1,0,OLI:SA:1155,Europe/Paris,0,OLI, +OLI:SP:ROG001,1,"Gambetta",50.606831,3.088808,1,0,OLI:SA:6923,Europe/Paris,0,OLI, +OLI:SP:ROG002,1,"Gambetta",50.606879,3.088315,1,0,OLI:SA:6923,Europe/Paris,0,OLI, +OLI:SP:ROH001,1,"Hotel De Ville",50.782502,3.12473,1,0,OLI:SA:7133,Europe/Paris,0,OLI, +OLI:SP:ROH002,1,"Hotel De Ville",50.782554,3.124971,1,0,OLI:SA:7133,Europe/Paris,0,OLI, +OLI:SP:ROH003,1,"Hotel De Ville",50.782765,3.12554,1,0,OLI:SA:7133,Europe/Paris,0,OLI, +OLI:SP:ROI003,1,"Roitelet",50.738939,3.175448,1,0,OLI:SA:1789,Europe/Paris,0,OLI, +OLI:SP:ROI004,1,"Roitelet",50.738975,3.175407,1,0,OLI:SA:1789,Europe/Paris,0,OLI, +OLI:SP:ROL001,1,"Rollin",50.705201,3.180066,1,0,OLI:SA:1496,Europe/Paris,0,OLI, +OLI:SP:ROL002,1,"Rollin",50.705164,3.180235,1,0,OLI:SA:1496,Europe/Paris,0,OLI, +OLI:SP:ROM021,1,"Romarin",50.645896,3.075626,1,0,OLI:SA:618,Europe/Paris,0,OLI, +OLI:SP:ROM032,1,"Romarin",50.645424,3.074984,1,0,OLI:SA:618,Europe/Paris,0,OLI, +OLI:SP:RON001,1,"Ronchin Mairie",50.605054,3.077039,1,0,OLI:SA:5558,Europe/Paris,0,OLI, +OLI:SP:RON002,1,"Ronchin Mairie",50.605055,3.076912,1,0,OLI:SA:5558,Europe/Paris,0,OLI, +OLI:SP:ROQ001,1,"Roncq Place",50.752912,3.120784,1,0,OLI:SA:5520,Europe/Paris,0,OLI, +OLI:SP:ROQ002,1,"Roncq Place",50.753935,3.120659,1,0,OLI:SA:5520,Europe/Paris,0,OLI, +OLI:SP:ROR001,1,"Rue D'Orchies",50.690216,3.200415,1,0,OLI:SA:1439,Europe/Paris,0,OLI, +OLI:SP:ROR003,1,"Rue D'Orchies",50.690248,3.200895,1,0,OLI:SA:1439,Europe/Paris,0,OLI, +OLI:SP:ROU001,1,"Rouge Porte",50.784588,3.139193,1,0,OLI:SA:2680,Europe/Paris,0,OLI, +OLI:SP:ROU021,1,"Euroteleport",50.691044,3.179135,1,0,OLI:SA:6413,Europe/Paris,0,OLI, +OLI:SP:ROU024,1,"Euroteleport",50.69149,3.18078,1,0,OLI:SA:6413,Europe/Paris,0,OLI, +OLI:SP:ROU029,1,"Euroteleport",50.691706,3.18077,1,0,OLI:SA:6413,Europe/Paris,0,OLI, +OLI:SP:ROU031,1,"Euroteleport",50.691316,3.180085,1,0,OLI:SA:6413,Europe/Paris,0,OLI, +OLI:SP:ROU042,1,"Euroteleport",50.69135,3.180326,1,0,OLI:SA:6413,Europe/Paris,0,OLI, +OLI:SP:ROU096,1,"Euroteleport",50.691344,3.179832,1,0,OLI:SA:6413,Europe/Paris,0,OLI, +OLI:SP:ROU097,1,"Euroteleport",50.691344,3.179832,1,0,OLI:SA:6413,Europe/Paris,0,OLI, +OLI:SP:ROU098,1,"Euroteleport",50.691533,3.17975,1,0,OLI:SA:6413,Europe/Paris,0,OLI, +OLI:SP:ROU099,1,"Euroteleport",50.690936,3.179161,1,0,OLI:SA:6413,Europe/Paris,0,OLI, +OLI:SP:ROU121,1,"Euroteleport",50.691044,3.179135,1,0,OLI:SA:6413,Europe/Paris,0,OLI, +OLI:SP:ROU122,1,"Euroteleport",50.691036,3.178993,1,0,OLI:SA:6413,Europe/Paris,0,OLI, +OLI:SP:ROU134,1,"Euroteleport",50.691468,3.180116,1,0,OLI:SA:6413,Europe/Paris,0,OLI, +OLI:SP:ROY001,1,"Pont Royal",50.648555,3.045727,1,0,OLI:SA:827,Europe/Paris,0,OLI, +OLI:SP:ROY002,1,"Pont Royal",50.648637,3.045657,1,0,OLI:SA:827,Europe/Paris,0,OLI, +OLI:SP:RPA001,1,"Rue Du Parc",50.651306,3.066351,1,0,OLI:SA:605,Europe/Paris,0,OLI, +OLI:SP:RPA002,1,"Rue Du Parc",50.651171,3.066505,1,0,OLI:SA:605,Europe/Paris,0,OLI, +OLI:SP:RPC001,1,"Petite Chapelle",50.590837,3.103167,1,0,OLI:SA:715,Europe/Paris,0,OLI, +OLI:SP:RPC002,1,"Petite Chapelle",50.590499,3.102711,1,0,OLI:SA:715,Europe/Paris,0,OLI, +OLI:SP:RPE002,1,"Rue De La Pepiniere",50.74681,3.213594,1,0,OLI:SA:2465,Europe/Paris,0,OLI, +OLI:SP:RPO001,1,"Rue Du Pont",50.622299,2.981815,1,0,OLI:SA:6346,Europe/Paris,0,OLI, +OLI:SP:RPO002,1,"Rue Du Pont",50.622231,2.981208,1,0,OLI:SA:6346,Europe/Paris,0,OLI, +OLI:SP:RPS001,1,"Hotel Voyageurs",50.723891,3.145395,1,0,OLI:SA:7559,Europe/Paris,0,OLI, +OLI:SP:RPS002,1,"Hotel Voyageurs",50.723855,3.145494,1,0,OLI:SA:7559,Europe/Paris,0,OLI, +OLI:SP:RRE001,1,"Republique",50.598482,3.098563,1,0,OLI:SA:1349,Europe/Paris,0,OLI, +OLI:SP:RRE002,1,"Republique",50.598429,3.098463,1,0,OLI:SA:1349,Europe/Paris,0,OLI, +OLI:SP:RRL001,1,"Louis Loucheur",50.677849,3.176541,1,0,OLI:SA:1561,Europe/Paris,0,OLI, +OLI:SP:RRN001,1,"Ernest Renan",50.680769,3.18506,1,0,OLI:SA:4708,Europe/Paris,0,OLI, +OLI:SP:RRN002,1,"Ernest Renan",50.680752,3.184933,1,0,OLI:SA:4708,Europe/Paris,0,OLI, +OLI:SP:RSA001,1,"College",50.688251,2.919382,1,0,OLI:SA:5651,Europe/Paris,0,OLI, +OLI:SP:RSA002,1,"College",50.68855,2.918722,1,0,OLI:SA:5651,Europe/Paris,0,OLI, +OLI:SP:RSS001,1,"Roussel",50.596667,3.051052,1,0,OLI:SA:5562,Europe/Paris,0,OLI, +OLI:SP:RSS002,1,"Roussel",50.596683,3.051264,1,0,OLI:SA:5562,Europe/Paris,0,OLI, +OLI:SP:RTA001,1,"Artois",50.626109,3.061654,1,0,OLI:SA:757,Europe/Paris,0,OLI, +OLI:SP:RTA002,1,"Artois",50.626064,3.061753,1,0,OLI:SA:757,Europe/Paris,0,OLI, +OLI:SP:RTG001,1,"Rue De Tourcoing",50.701527,3.172885,1,0,OLI:SA:1446,Europe/Paris,0,OLI, +OLI:SP:RTG002,1,"Rue De Tourcoing",50.701834,3.172551,1,0,OLI:SA:1446,Europe/Paris,0,OLI, +OLI:SP:RTO001,1,"Rue De Toufflers",50.668444,3.227195,1,0,OLI:SA:1096,Europe/Paris,0,OLI, +OLI:SP:RTO002,1,"Rue De Toufflers",50.668391,3.227166,1,0,OLI:SA:1096,Europe/Paris,0,OLI, +OLI:SP:RTR001,1,"Rue De Tressin",50.632545,3.192888,1,0,OLI:SA:366,Europe/Paris,0,OLI, +OLI:SP:RTR002,1,"Rue De Tressin",50.632205,3.19284,1,0,OLI:SA:366,Europe/Paris,0,OLI, +OLI:SP:RUB001,1,"Rubens",50.59585,3.082977,1,0,OLI:SA:6338,Europe/Paris,0,OLI, +OLI:SP:RUB002,1,"Rubens",50.5959,3.083527,1,0,OLI:SA:6338,Europe/Paris,0,OLI, +OLI:SP:RUB003,1,"Rubens",50.594819,3.082905,1,0,OLI:SA:6338,Europe/Paris,0,OLI, +OLI:SP:RUB004,1,"Rubens",50.595394,3.082688,1,0,OLI:SA:6338,Europe/Paris,0,OLI, +OLI:SP:RUE001,1,"Rue De La Canteraine",50.593058,2.984821,1,0,OLI:SA:473,Europe/Paris,0,OLI, +OLI:SP:RUE004,1,"Rue De La Canteraine",50.593111,2.98485,1,0,OLI:SA:473,Europe/Paris,0,OLI, +OLI:SP:RUH001,1,"Rue D'Haubourdin",50.625141,2.957766,1,0,OLI:SA:7660,Europe/Paris,0,OLI, +OLI:SP:RUH002,1,"Rue D'Haubourdin",50.624374,2.956783,1,0,OLI:SA:7660,Europe/Paris,0,OLI, +OLI:SP:RUH003,1,"Rue D'Haubourdin",50.625301,2.959728,1,0,OLI:SA:7660,Europe/Paris,0,OLI, +OLI:SP:RUH004,1,"Rue D'Haubourdin",50.625121,2.959909,1,0,OLI:SA:7660,Europe/Paris,0,OLI, +OLI:SP:RUL001,1,"Route De Linselles",50.709031,3.061036,1,0,OLI:SA:2025,Europe/Paris,0,OLI, +OLI:SP:RUL002,1,"Route De Linselles",50.709441,3.061423,1,0,OLI:SA:2025,Europe/Paris,0,OLI, +OLI:SP:RUN001,1,"Leon Jouhaux",50.711695,3.176093,1,0,OLI:SA:4600,Europe/Paris,0,OLI, +OLI:SP:RUN002,1,"Leon Jouhaux",50.711779,3.175628,1,0,OLI:SA:4600,Europe/Paris,0,OLI, +OLI:SP:RUN003,1,"Union",50.706735,3.169455,1,0,OLI:SA:6991,Europe/Paris,0,OLI, +OLI:SP:RUN004,1,"Union",50.707545,3.168988,1,0,OLI:SA:6991,Europe/Paris,0,OLI, +OLI:SP:RUS001,1,"Rue Du Stade",50.578361,2.847605,1,0,OLI:SA:536,Europe/Paris,0,OLI, +OLI:SP:RUS002,1,"Rue Du Stade",50.578412,2.848324,1,0,OLI:SA:536,Europe/Paris,0,OLI, +OLI:SP:RUW001,1,"Rue De Wazemmes",50.623232,3.061232,1,0,OLI:SA:775,Europe/Paris,0,OLI, +OLI:SP:RUW002,1,"Rue De Wazemmes",50.62316,3.061245,1,0,OLI:SA:775,Europe/Paris,0,OLI, +OLI:SP:RVA001,1,"Renovation",50.643781,2.980611,1,0,OLI:SA:1002,Europe/Paris,0,OLI, +OLI:SP:RVA002,1,"Renovation",50.64378,2.980752,1,0,OLI:SA:1002,Europe/Paris,0,OLI, +OLI:SP:RXA001,1,"Renaix",50.722161,3.17097,1,0,OLI:SA:1760,Europe/Paris,0,OLI, +OLI:SP:RXA002,1,"Renaix",50.722143,3.170956,1,0,OLI:SA:1760,Europe/Paris,0,OLI, +OLI:SP:RXC001,1,"Cimetiere",50.701311,3.187457,1,0,OLI:SA:1559,Europe/Paris,0,OLI, +OLI:SP:RXC002,1,"Cimetiere",50.701288,3.188191,1,0,OLI:SA:1559,Europe/Paris,0,OLI, +OLI:SP:RXP098,1,"Roubaix Grand Place",50.691598,3.174202,1,0,OLI:SA:1541,Europe/Paris,0,OLI, +OLI:SP:RXP099,1,"Roubaix Grand Place",50.691598,3.174202,1,0,OLI:SA:1541,Europe/Paris,0,OLI, +OLI:SP:RYE001,1,"Trieu De Quesnoy",50.668896,3.233018,1,0,OLI:SA:1707,Europe/Paris,0,OLI, +OLI:SP:RYE002,1,"Trieu De Quesnoy",50.66905,3.233952,1,0,OLI:SA:1707,Europe/Paris,0,OLI, +OLI:SP:RYP001,1,"Rue D'Ypres",50.683289,3.040742,1,0,OLI:SA:2032,Europe/Paris,0,OLI, +OLI:SP:RYP002,1,"Rue D'Ypres",50.683037,3.040879,1,0,OLI:SA:2032,Europe/Paris,0,OLI, +OLI:SP:RYS001,1,"Rue De L'Yser",50.741123,3.16682,1,0,OLI:SA:5765,Europe/Paris,0,OLI, +OLI:SP:RYS002,1,"Rue De L'Yser",50.741264,3.167204,1,0,OLI:SA:5765,Europe/Paris,0,OLI, +OLI:SP:RYS003,1,"Rue De L'Yser",50.741128,3.166114,1,0,OLI:SA:5765,Europe/Paris,0,OLI, +OLI:SP:RYS004,1,"Rue De L'Yser",50.741075,3.165986,1,0,OLI:SA:5765,Europe/Paris,0,OLI, +OLI:SP:SAB001,1,"Sabliere",50.644341,3.099713,1,0,OLI:SA:1210,Europe/Paris,0,OLI, +OLI:SP:SAB002,1,"Sabliere",50.644154,3.099526,1,0,OLI:SA:1210,Europe/Paris,0,OLI, +OLI:SP:SAC001,1,"Sacre Coeur",50.632464,3.051747,1,0,OLI:SA:7541,Europe/Paris,0,OLI, +OLI:SP:SAC002,1,"Sacre Coeur",50.632852,3.052923,1,0,OLI:SA:7541,Europe/Paris,0,OLI, +OLI:SP:SAL002,1,"Salengro",50.582862,3.033567,1,0,OLI:SA:2095,Europe/Paris,0,OLI, +OLI:SP:SAL003,1,"Salengro",50.583313,3.032981,1,0,OLI:SA:2095,Europe/Paris,0,OLI, +OLI:SP:SAL004,1,"Salengro",50.582718,3.033523,1,0,OLI:SA:2095,Europe/Paris,0,OLI, +OLI:SP:SAM001,1,"Marais",50.585811,2.967198,1,0,OLI:SA:1636,Europe/Paris,0,OLI, +OLI:SP:SAN003,1,"Mairie",50.661077,3.05059,1,0,OLI:SA:1604,Europe/Paris,0,OLI, +OLI:SP:SAN005,1,"Mairie",50.660609,3.050879,1,0,OLI:SA:1604,Europe/Paris,0,OLI, +OLI:SP:SAP001,1,"Sapin Vert",50.714968,3.180103,1,0,OLI:SA:2147,Europe/Paris,0,OLI, +OLI:SP:SAP002,1,"Sapin Vert",50.715022,3.180104,1,0,OLI:SA:2147,Europe/Paris,0,OLI, +OLI:SP:SAP011,1,"Delecourt",50.713908,3.179083,1,0,OLI:SA:4670,Europe/Paris,0,OLI, +OLI:SP:SAR001,1,"Pont Du Sartel",50.692379,3.20538,1,0,OLI:SA:2131,Europe/Paris,0,OLI, +OLI:SP:SAR002,1,"Pont Du Sartel",50.692353,3.205182,1,0,OLI:SA:2131,Europe/Paris,0,OLI, +OLI:SP:SAT001,1,"Dunant",50.668404,3.201252,1,0,OLI:SA:4672,Europe/Paris,0,OLI, +OLI:SP:SAT002,1,"Dunant",50.668457,3.201365,1,0,OLI:SA:4672,Europe/Paris,0,OLI, +OLI:SP:SAV001,1,"Savary",50.708784,3.198984,1,0,OLI:SA:2132,Europe/Paris,0,OLI, +OLI:SP:SAV002,1,"Savary",50.70919,3.19861,1,0,OLI:SA:2132,Europe/Paris,0,OLI, +OLI:SP:SBA001,1,"Sainte Barbe",50.743968,2.970595,1,0,OLI:SA:2040,Europe/Paris,0,OLI, +OLI:SP:SBA002,1,"Sainte Barbe",50.743922,2.970693,1,0,OLI:SA:2040,Europe/Paris,0,OLI, +OLI:SP:SBE001,1,"Santes Eglise",50.597401,2.954772,1,0,OLI:SA:7631,Europe/Paris,0,OLI, +OLI:SP:SBE002,1,"Santes Eglise",50.597489,2.954999,1,0,OLI:SA:7631,Europe/Paris,0,OLI, +OLI:SP:SCA001,1,"Descartes",50.747082,3.162283,1,0,OLI:SA:1268,Europe/Paris,0,OLI, +OLI:SP:SCA002,1,"Descartes",50.747056,3.162099,1,0,OLI:SA:1268,Europe/Paris,0,OLI, +OLI:SP:SCC005,1,"Sainte Cecile",50.641823,3.030777,1,0,OLI:SA:675,Europe/Paris,0,OLI, +OLI:SP:SCC006,1,"Sainte Cecile",50.641822,3.030989,1,0,OLI:SA:675,Europe/Paris,0,OLI, +OLI:SP:SCH001,1,"Chardonnerets",50.664645,3.031912,1,0,OLI:SA:1596,Europe/Paris,0,OLI, +OLI:SP:SCH002,1,"Chardonnerets",50.664575,3.031742,1,0,OLI:SA:1596,Europe/Paris,0,OLI, +OLI:SP:SCI001,1,"Coisne",50.530969,2.82722,1,0,OLI:SA:5686,Europe/Paris,0,OLI, +OLI:SP:SCI002,1,"Coisne",50.530979,2.826882,1,0,OLI:SA:5686,Europe/Paris,0,OLI, +OLI:SP:SCL001,1,"St Clement",50.654827,3.023225,1,0,OLI:SA:7136,Europe/Paris,0,OLI, +OLI:SP:SCL002,1,"St Clement",50.654293,3.024107,1,0,OLI:SA:7136,Europe/Paris,0,OLI, +OLI:SP:SCO001,1,"Comines Mairie",50.764868,3.00586,1,0,OLI:SA:5747,Europe/Paris,0,OLI, +OLI:SP:SCO002,1,"Comines Mairie",50.765344,3.005754,1,0,OLI:SA:5747,Europe/Paris,0,OLI, +OLI:SP:SCO003,1,"Comines Mairie",50.76521,3.005724,1,0,OLI:SA:5747,Europe/Paris,0,OLI, +OLI:SP:SCO004,1,"Comines Mairie",50.765219,3.005625,1,0,OLI:SA:5747,Europe/Paris,0,OLI, +OLI:SP:SCO005,1,"Comines Mairie",50.764732,3.00617,1,0,OLI:SA:5747,Europe/Paris,0,OLI, +OLI:SP:SCO006,1,"Comines Mairie",50.764893,3.006299,1,0,OLI:SA:5747,Europe/Paris,0,OLI, +OLI:SP:SCP001,1,"Le Complivois",50.689433,3.056219,1,0,OLI:SA:2035,Europe/Paris,0,OLI, +OLI:SP:SCP002,1,"Le Complivois",50.688868,3.056253,1,0,OLI:SA:2035,Europe/Paris,0,OLI, +OLI:SP:SCP003,1,"Le Complivois",50.688738,3.057,1,0,OLI:SA:2035,Europe/Paris,0,OLI, +OLI:SP:SCR001,1,"Scrive",50.662418,3.063564,1,0,OLI:SA:5816,Europe/Paris,0,OLI, +OLI:SP:SCR002,1,"Scrive",50.662284,3.063506,1,0,OLI:SA:5816,Europe/Paris,0,OLI, +OLI:SP:SDE001,1,"Place De Gaulle",50.762852,3.010457,1,0,OLI:SA:6630,Europe/Paris,0,OLI, +OLI:SP:SDE002,1,"Place De Gaulle",50.763209,3.010759,1,0,OLI:SA:6630,Europe/Paris,0,OLI, +OLI:SP:SDU001,1,"Salle Durieux",50.701109,3.135705,1,0,OLI:SA:5850,Europe/Paris,0,OLI, +OLI:SP:SDU002,1,"Salle Durieux",50.700984,3.13559,1,0,OLI:SA:5850,Europe/Paris,0,OLI, +OLI:SP:SEB001,1,"Sebastopol",50.716366,3.163089,1,0,OLI:SA:7544,Europe/Paris,0,OLI, +OLI:SP:SEB002,1,"Sebastopol",50.716194,3.163326,1,0,OLI:SA:7544,Europe/Paris,0,OLI, +OLI:SP:SEB098,1,"Gare De Tourcoing (Tourcoing Sebastopol)",50.71662,3.162584,1,0,OLI:SA:1822,Europe/Paris,0,OLI, +OLI:SP:SEB099,1,"Gare De Tourcoing (Tourcoing Sebastopol)",50.71662,3.162584,1,0,OLI:SA:1822,Europe/Paris,0,OLI, +OLI:SP:SED001,1,"Stele Des Enfant",50.782592,3.134408,1,0,OLI:SA:2691,Europe/Paris,0,OLI, +OLI:SP:SEE001,1,"Sequedin Eglise",50.62293,2.986392,1,0,OLI:SA:5665,Europe/Paris,0,OLI, +OLI:SP:SEE002,1,"Sequedin Eglise",50.622922,2.986307,1,0,OLI:SA:5665,Europe/Paris,0,OLI, +OLI:SP:SEG001,1,"Santes Eglise",50.596721,2.956103,1,0,OLI:SA:7631,Europe/Paris,0,OLI, +OLI:SP:SEG002,1,"Santes Eglise",50.59727,2.955743,1,0,OLI:SA:7631,Europe/Paris,0,OLI, +OLI:SP:SEM001,1,"Semard",50.780904,3.11923,1,0,OLI:SA:5979,Europe/Paris,0,OLI, +OLI:SP:SEM002,1,"Semard",50.780957,3.119316,1,0,OLI:SA:5979,Europe/Paris,0,OLI, +OLI:SP:SEQ001,1,"Sequedin Centre",50.622607,2.988235,1,0,OLI:SA:5663,Europe/Paris,0,OLI, +OLI:SP:SEQ002,1,"Sequedin Centre",50.622608,2.988066,1,0,OLI:SA:5663,Europe/Paris,0,OLI, +OLI:SP:SFA001,1,"Faidherbe",50.594651,2.966464,1,0,OLI:SA:1634,Europe/Paris,0,OLI, +OLI:SP:SFA002,1,"Faidherbe",50.594127,2.965428,1,0,OLI:SA:1634,Europe/Paris,0,OLI, +OLI:SP:SFE003,1,"Fenelon",50.548308,3.028201,1,0,OLI:SA:1642,Europe/Paris,0,OLI, +OLI:SP:SFE004,1,"Fenelon",50.548674,3.028473,1,0,OLI:SA:1642,Europe/Paris,0,OLI, +OLI:SP:SFI001,1,"Hopital Fontan",50.60996,3.027643,1,0,OLI:SA:6968,Europe/Paris,0,OLI, +OLI:SP:SFI002,1,"Hopital Fontan",50.609706,3.028006,1,0,OLI:SA:6968,Europe/Paris,0,OLI, +OLI:SP:SFO001,1,"Solferino",50.63475,3.048874,1,0,OLI:SA:4242,Europe/Paris,0,OLI, +OLI:SP:SFO002,1,"Solferino",50.634134,3.048371,1,0,OLI:SA:4242,Europe/Paris,0,OLI, +OLI:SP:SFO004,1,"Solferino",50.634155,3.049345,1,0,OLI:SA:4242,Europe/Paris,0,OLI, +OLI:SP:SFR001,1,"Saint Francois",50.716627,3.138327,1,0,OLI:SA:1235,Europe/Paris,0,OLI, +OLI:SP:SFR002,1,"Saint Francois",50.716538,3.138212,1,0,OLI:SA:1235,Europe/Paris,0,OLI, +OLI:SP:SGA001,1,"Gare",50.59215,2.960781,1,0,OLI:SA:1640,Europe/Paris,0,OLI, +OLI:SP:SGA002,1,"Gare",50.592176,2.96081,1,0,OLI:SA:1640,Europe/Paris,0,OLI, +OLI:SP:SGA003,1,"Gare",50.593268,2.961331,1,0,OLI:SA:1640,Europe/Paris,0,OLI, +OLI:SP:SGC001,1,"Cimetiere",50.593361,3.16654,1,0,OLI:SA:2557,Europe/Paris,0,OLI, +OLI:SP:SGC002,1,"Cimetiere",50.593738,3.166533,1,0,OLI:SA:2557,Europe/Paris,0,OLI, +OLI:SP:SGD003,1,"Saint Gerard",50.7225,3.187013,1,0,OLI:SA:6603,Europe/Paris,0,OLI, +OLI:SP:SGD004,1,"Saint Gerard",50.722509,3.187126,1,0,OLI:SA:6603,Europe/Paris,0,OLI, +OLI:SP:SGE001,1,"Gendarmerie",50.755974,3.005345,1,0,OLI:SA:262,Europe/Paris,0,OLI, +OLI:SP:SGE002,1,"Gendarmerie",50.755631,3.005708,1,0,OLI:SA:262,Europe/Paris,0,OLI, +OLI:SP:SGR001,1,"Gravier De Lille",50.735922,3.016327,1,0,OLI:SA:254,Europe/Paris,0,OLI, +OLI:SP:SGR002,1,"Gravier De Lille",50.736827,3.014926,1,0,OLI:SA:254,Europe/Paris,0,OLI, +OLI:SP:SHC001,1,"Hopital",50.758461,3.003159,1,0,OLI:SA:274,Europe/Paris,0,OLI, +OLI:SP:SHC002,1,"Hopital",50.758856,3.003065,1,0,OLI:SA:274,Europe/Paris,0,OLI, +OLI:SP:SHD001,1,"Hotel De Ville",50.590261,2.963449,1,0,OLI:SA:1631,Europe/Paris,0,OLI, +OLI:SP:SHD002,1,"Hotel De Ville",50.59027,2.963548,1,0,OLI:SA:1631,Europe/Paris,0,OLI, +OLI:SP:SHE001,1,"Institut St Henri ( B )",50.772573,3.0024,1,0,OLI:SA:2450,Europe/Paris,0,OLI, +OLI:SP:SHG001,1,"Hentges",50.553723,3.032035,1,0,OLI:SA:1660,Europe/Paris,0,OLI, +OLI:SP:SHG002,1,"Hentges",50.553589,3.031949,1,0,OLI:SA:1660,Europe/Paris,0,OLI, +OLI:SP:SHO001,1,"Hotel De Ville",50.546033,3.025916,1,0,OLI:SA:5529,Europe/Paris,0,OLI, +OLI:SP:SHO002,1,"Hotel De Ville",50.545035,3.024762,1,0,OLI:SA:5529,Europe/Paris,0,OLI, +OLI:SP:SHW001,1,"Schweitzer",50.639128,3.114289,1,0,OLI:SA:4143,Europe/Paris,0,OLI, +OLI:SP:SHW002,1,"Schweitzer",50.639615,3.113902,1,0,OLI:SA:4143,Europe/Paris,0,OLI, +OLI:SP:SIA002,1,"Saint Piat",50.549389,3.033862,1,0,OLI:SA:1654,Europe/Paris,0,OLI, +OLI:SP:SIL001,1,"Silo",50.709523,3.008735,1,0,OLI:SA:2596,Europe/Paris,0,OLI, +OLI:SP:SIL002,1,"Silo",50.709668,3.008455,1,0,OLI:SA:2596,Europe/Paris,0,OLI, +OLI:SP:SIM001,1,"Simons",50.615063,3.049919,1,0,OLI:SA:7137,Europe/Paris,0,OLI, +OLI:SP:SIM002,1,"Simons",50.6157,3.04842,1,0,OLI:SA:7137,Europe/Paris,0,OLI, +OLI:SP:SIM003,1,"Simons",50.614884,3.048253,1,0,OLI:SA:7137,Europe/Paris,0,OLI, +OLI:SP:SIN001,1,"Sin",50.614621,3.231002,1,0,OLI:SA:152,Europe/Paris,0,OLI, +OLI:SP:SIN002,1,"Sin",50.614122,3.230542,1,0,OLI:SA:152,Europe/Paris,0,OLI, +OLI:SP:SJA001,1,"Saint Jacques",50.663761,2.920099,1,0,OLI:SA:5658,Europe/Paris,0,OLI, +OLI:SP:SJA002,1,"Saint Jacques",50.664203,2.91954,1,0,OLI:SA:5658,Europe/Paris,0,OLI, +OLI:SP:SJD001,1,"Saint Jean De Dieu",50.666399,3.04375,1,0,OLI:SA:1181,Europe/Paris,0,OLI, +OLI:SP:SJD002,1,"Saint Jean De Dieu",50.666739,3.043966,1,0,OLI:SA:1181,Europe/Paris,0,OLI, +OLI:SP:SJD004,1,"Saint Jean De Dieu",50.665865,3.044674,1,0,OLI:SA:1181,Europe/Paris,0,OLI, +OLI:SP:SJD005,1,"Saint Jean De Dieu",50.665655,3.043697,1,0,OLI:SA:1181,Europe/Paris,0,OLI, +OLI:SP:SJH001,1,"C. De La Lys (B)",50.777156,2.992177,1,0,OLI:SA:5756,Europe/Paris,0,OLI, +OLI:SP:SJN001,1,"Saint Jean",50.687152,3.180298,1,0,OLI:SA:5631,Europe/Paris,0,OLI, +OLI:SP:SJO001,1,"Eglise St Joseph",50.66356,3.188381,1,0,OLI:SA:5619,Europe/Paris,0,OLI, +OLI:SP:SJO002,1,"Eglise St Joseph",50.663549,3.188607,1,0,OLI:SA:5619,Europe/Paris,0,OLI, +OLI:SP:SLI001,1,"Stalingrad",50.697719,3.211306,1,0,OLI:SA:2173,Europe/Paris,0,OLI, +OLI:SP:SLI002,1,"Stalingrad",50.697631,3.21098,1,0,OLI:SA:2173,Europe/Paris,0,OLI, +OLI:SP:SLU002,1,"Saint Luc",50.671884,3.217784,1,0,OLI:SA:1091,Europe/Paris,0,OLI, +OLI:SP:SLU003,1,"Jeanne D'Arc",50.671106,3.218773,1,0,OLI:SA:5059,Europe/Paris,0,OLI, +OLI:SP:SLU004,1,"Jeanne D'Arc",50.67011,3.216313,1,0,OLI:SA:5059,Europe/Paris,0,OLI, +OLI:SP:SLU007,1,"Saint Luc",50.672012,3.219975,1,0,OLI:SA:1091,Europe/Paris,0,OLI, +OLI:SP:SMA001,1,"Saint Maur",50.651814,3.081893,1,0,OLI:SA:613,Europe/Paris,0,OLI, +OLI:SP:SMA012,1,"Saint Maur",50.651744,3.081723,1,0,OLI:SA:613,Europe/Paris,0,OLI, +OLI:SP:SMC001,1,"Saint Michel Sur Loire",50.531498,2.840554,1,0,OLI:SA:1628,Europe/Paris,0,OLI, +OLI:SP:SMC002,1,"Saint Michel Sur Loire",50.531525,2.840611,1,0,OLI:SA:1628,Europe/Paris,0,OLI, +OLI:SP:SME001,1,"Place",50.589562,3.167238,1,0,OLI:SA:2558,Europe/Paris,0,OLI, +OLI:SP:SME002,1,"Place",50.589401,3.167222,1,0,OLI:SA:2558,Europe/Paris,0,OLI, +OLI:SP:SMG001,1,"Mont Garin",50.659494,3.016163,1,0,OLI:SA:7138,Europe/Paris,0,OLI, +OLI:SP:SMG002,1,"Mont Garin",50.65899,3.016537,1,0,OLI:SA:7138,Europe/Paris,0,OLI, +OLI:SP:SML001,1,"Millenaires",50.536556,2.843223,1,0,OLI:SA:5689,Europe/Paris,0,OLI, +OLI:SP:SML002,1,"Millenaires",50.536433,2.844799,1,0,OLI:SA:5689,Europe/Paris,0,OLI, +OLI:SP:SMO001,1,"La Mouchonniere",50.541003,3.026988,1,0,OLI:SA:1646,Europe/Paris,0,OLI, +OLI:SP:SMO002,1,"La Mouchonniere",50.541021,3.027016,1,0,OLI:SA:1646,Europe/Paris,0,OLI, +OLI:SP:SMP001,1,"St Maurice Pellevoisin",50.642303,3.088297,1,0,OLI:SA:797,Europe/Paris,0,OLI, +OLI:SP:SMP002,1,"St Maurice Pellevoisin",50.642293,3.08841,1,0,OLI:SA:797,Europe/Paris,0,OLI, +OLI:SP:SMP098,1,"St Maurice Pellevoisin",50.64251,3.088244,1,0,OLI:SA:797,Europe/Paris,0,OLI, +OLI:SP:SMP099,1,"St Maurice Pellevoisin",50.64251,3.088244,1,0,OLI:SA:797,Europe/Paris,0,OLI, +OLI:SP:SNO001,1,"Le Sart Nord",50.663966,3.139642,1,0,OLI:SA:5416,Europe/Paris,0,OLI, +OLI:SP:SNO002,1,"Le Sart Nord",50.663762,3.139412,1,0,OLI:SA:5416,Europe/Paris,0,OLI, +OLI:SP:SNO031,1,"Le Sart",50.663187,3.139446,1,0,OLI:SA:1982,Europe/Paris,0,OLI, +OLI:SP:SNO042,1,"Le Sart",50.66331,3.13846,1,0,OLI:SA:1982,Europe/Paris,0,OLI, +OLI:SP:SOC001,1,"Centre Social",50.75641,3.120755,1,0,OLI:SA:1376,Europe/Paris,0,OLI, +OLI:SP:SOC002,1,"Centre Social",50.756267,3.120696,1,0,OLI:SA:1376,Europe/Paris,0,OLI, +OLI:SP:SOI004,1,"Recherche",50.602294,3.038094,1,0,OLI:SA:6632,Europe/Paris,0,OLI, +OLI:SP:SOU001,1,"Source",50.583328,3.012593,1,0,OLI:SA:5588,Europe/Paris,0,OLI, +OLI:SP:SOU002,1,"Source",50.583382,3.012622,1,0,OLI:SA:5588,Europe/Paris,0,OLI, +OLI:SP:SPH001,1,"Eglise Saint Paul",50.66935,3.17716,1,0,OLI:SA:513,Europe/Paris,0,OLI, +OLI:SP:SPH002,1,"Eglise Saint Paul",50.669305,3.177173,1,0,OLI:SA:513,Europe/Paris,0,OLI, +OLI:SP:SPI001,1,"Croix Saint Pierre",50.683775,3.152935,1,0,OLI:SA:276,Europe/Paris,0,OLI, +OLI:SP:SPL002,1,"Coll Ph Commynes",50.759254,3.01236,1,0,OLI:SA:5838,Europe/Paris,0,OLI, +OLI:SP:SPO001,1,"Place Des Ecoles",50.532925,2.840526,1,0,OLI:SA:1620,Europe/Paris,0,OLI, +OLI:SP:SPO002,1,"Place Des Ecoles",50.533023,2.840485,1,0,OLI:SA:1620,Europe/Paris,0,OLI, +OLI:SP:SPP001,1,"Petit Perle",50.720863,3.01964,1,0,OLI:SA:6863,Europe/Paris,0,OLI, +OLI:SP:SPP002,1,"Petit Perle",50.718949,3.020278,1,0,OLI:SA:6863,Europe/Paris,0,OLI, +OLI:SP:SPP003,1,"Petit Perle",50.720133,3.020365,1,0,OLI:SA:6863,Europe/Paris,0,OLI, +OLI:SP:SPP004,1,"Petit Perle",50.720346,3.020707,1,0,OLI:SA:6863,Europe/Paris,0,OLI, +OLI:SP:SPR001,1,"Spriet",50.673591,3.18539,1,0,OLI:SA:1569,Europe/Paris,0,OLI, +OLI:SP:SPR002,1,"Spriet",50.673536,3.185573,1,0,OLI:SA:1569,Europe/Paris,0,OLI, +OLI:SP:SPR003,1,"Spriet",50.674694,3.185381,1,0,OLI:SA:1569,Europe/Paris,0,OLI, +OLI:SP:SPR004,1,"Spriet",50.67464,3.18545,1,0,OLI:SA:1569,Europe/Paris,0,OLI, +OLI:SP:SPV001,1,"Prevert",50.540542,3.022828,1,0,OLI:SA:1659,Europe/Paris,0,OLI, +OLI:SP:SPV002,1,"Prevert",50.540696,3.022535,1,0,OLI:SA:1659,Europe/Paris,0,OLI, +OLI:SP:SQB001,1,"Square Bartholdi",50.672706,3.179743,1,0,OLI:SA:1491,Europe/Paris,0,OLI, +OLI:SP:SQB002,1,"Square Bartholdi",50.673115,3.180145,1,0,OLI:SA:1491,Europe/Paris,0,OLI, +OLI:SP:SQC001,1,"Square Calmette",50.706759,3.201252,1,0,OLI:SA:3034,Europe/Paris,0,OLI, +OLI:SP:SQC002,1,"Square Calmette",50.706523,3.201629,1,0,OLI:SA:3034,Europe/Paris,0,OLI, +OLI:SP:SQD002,1,"Square Des Platanes",50.676841,3.187549,1,0,OLI:SA:1524,Europe/Paris,0,OLI, +OLI:SP:SQD003,1,"Square Des Platanes",50.676572,3.187516,1,0,OLI:SA:1524,Europe/Paris,0,OLI, +OLI:SP:SQM001,1,"Square Des Meres",50.634013,3.094477,1,0,OLI:SA:831,Europe/Paris,0,OLI, +OLI:SP:SQM002,1,"Square Des Meres",50.634034,3.095366,1,0,OLI:SA:831,Europe/Paris,0,OLI, +OLI:SP:SQP001,1,"Square Des Pres",50.685477,3.19172,1,0,OLI:SA:1517,Europe/Paris,0,OLI, +OLI:SP:SQP002,1,"Square Des Pres",50.685667,3.191596,1,0,OLI:SA:1517,Europe/Paris,0,OLI, +OLI:SP:SRA001,1,"Ramponneau",50.594043,2.958846,1,0,OLI:SA:1633,Europe/Paris,0,OLI, +OLI:SP:SRA002,1,"Ramponneau",50.593899,2.959041,1,0,OLI:SA:1633,Europe/Paris,0,OLI, +OLI:SP:SRB001,1,"Sentier Des Briques",50.690056,3.147149,1,0,OLI:SA:2085,Europe/Paris,0,OLI, +OLI:SP:SRB002,1,"Sentier Des Briques",50.690198,3.147321,1,0,OLI:SA:2085,Europe/Paris,0,OLI, +OLI:SP:SRE001,1,"Republique",50.532088,2.816365,1,0,OLI:SA:5690,Europe/Paris,0,OLI, +OLI:SP:SRE002,1,"Republique",50.532069,2.816505,1,0,OLI:SA:5690,Europe/Paris,0,OLI, +OLI:SP:SRH001,1,"Rue Du 8 Mai 45",50.569461,2.891561,1,0,OLI:SA:1586,Europe/Paris,0,OLI, +OLI:SP:SRH002,1,"Rue Du 8 Mai 45",50.569686,2.891366,1,0,OLI:SA:1586,Europe/Paris,0,OLI, +OLI:SP:SRP001,1,"Rue Pasteur",50.535263,2.841268,1,0,OLI:SA:1626,Europe/Paris,0,OLI, +OLI:SP:SRP002,1,"Rue Pasteur",50.535316,2.841367,1,0,OLI:SA:1626,Europe/Paris,0,OLI, +OLI:SP:SRR002,1,"Sarrail",50.691479,3.169257,1,0,OLI:SA:1488,Europe/Paris,0,OLI, +OLI:SP:SSM001,1,"Eglise",50.73977,3.013171,1,0,OLI:SA:260,Europe/Paris,0,OLI, +OLI:SP:SSM002,1,"Eglise",50.739185,3.013375,1,0,OLI:SA:260,Europe/Paris,0,OLI, +OLI:SP:SSO001,1,"Securite Sociale",50.681761,2.881146,1,0,OLI:SA:6953,Europe/Paris,0,OLI, +OLI:SP:SSO002,1,"Securite Sociale",50.681797,2.88109,1,0,OLI:SA:6953,Europe/Paris,0,OLI, +OLI:SP:SSU001,1,"Le Sart Sud",50.662817,3.13848,1,0,OLI:SA:5415,Europe/Paris,0,OLI, +OLI:SP:SSU002,1,"Le Sart Sud",50.662809,3.138339,1,0,OLI:SA:5415,Europe/Paris,0,OLI, +OLI:SP:STA001,1,"Grand St Andre",50.664624,3.035694,1,0,OLI:SA:1613,Europe/Paris,0,OLI, +OLI:SP:STC001,1,"Saint Clement",50.686657,3.144228,1,0,OLI:SA:2052,Europe/Paris,0,OLI, +OLI:SP:STC002,1,"Saint Clement",50.686865,3.144062,1,0,OLI:SA:2052,Europe/Paris,0,OLI, +OLI:SP:STE001,1,"Stemberg",50.74739,3.078005,1,0,OLI:SA:984,Europe/Paris,0,OLI, +OLI:SP:STE002,1,"Stemberg",50.747749,3.077982,1,0,OLI:SA:984,Europe/Paris,0,OLI, +OLI:SP:STL001,1,"Eglise Saint Louis",50.65915,3.080648,1,0,OLI:SA:1161,Europe/Paris,0,OLI, +OLI:SP:STL002,1,"Eglise Saint Louis",50.659213,3.080705,1,0,OLI:SA:1161,Europe/Paris,0,OLI, +OLI:SP:STM001,1,"St Maurice",50.641386,3.08415,1,0,OLI:SA:847,Europe/Paris,0,OLI, +OLI:SP:STM002,1,"St Maurice",50.64139,3.086436,1,0,OLI:SA:847,Europe/Paris,0,OLI, +OLI:SP:STR001,1,"Saint Charles",50.630515,3.026981,1,0,OLI:SA:821,Europe/Paris,0,OLI, +OLI:SP:STR002,1,"Saint Charles",50.630523,3.027024,1,0,OLI:SA:821,Europe/Paris,0,OLI, +OLI:SP:STS001,1,"Stephenson",50.696164,3.209174,1,0,OLI:SA:2148,Europe/Paris,0,OLI, +OLI:SP:STS002,1,"Stephenson",50.696057,3.209116,1,0,OLI:SA:2148,Europe/Paris,0,OLI, +OLI:SP:STU001,1,"Stadium",50.631246,3.13497,1,0,OLI:SA:1901,Europe/Paris,0,OLI, +OLI:SP:STU002,1,"Stadium",50.630783,3.134469,1,0,OLI:SA:1901,Europe/Paris,0,OLI, +OLI:SP:STV001,1,"Saint Venant",50.600304,3.085214,1,0,OLI:SA:1335,Europe/Paris,0,OLI, +OLI:SP:STV002,1,"Saint Venant",50.600208,3.084762,1,0,OLI:SA:1335,Europe/Paris,0,OLI, +OLI:SP:STX001,1,"College Saint Exupery",50.629004,3.118067,1,0,OLI:SA:498,Europe/Paris,0,OLI, +OLI:SP:SUE001,1,"Guesde",50.610473,3.064811,1,0,OLI:SA:346,Europe/Paris,0,OLI, +OLI:SP:SUE002,1,"Guesde",50.609719,3.06332,1,0,OLI:SA:346,Europe/Paris,0,OLI, +OLI:SP:SVD001,1,"Saint Vincent De Paul",50.707557,3.196081,1,0,OLI:SA:2174,Europe/Paris,0,OLI, +OLI:SP:SVD002,1,"Saint Vincent De Paul",50.707223,3.196485,1,0,OLI:SA:2174,Europe/Paris,0,OLI, +OLI:SP:SWG001,1,"Gare De Don",50.551336,2.913721,1,0,OLI:SA:1591,Europe/Paris,0,OLI, +OLI:SP:SWJ001,1,"College Saint Joseph",50.701584,3.219015,1,0,OLI:SA:2200,Europe/Paris,0,OLI, +OLI:SP:SWL001,1,"Trois Louches",50.701498,3.035758,1,0,OLI:SA:5855,Europe/Paris,0,OLI, +OLI:SP:SWL002,1,"Trois Louches",50.701256,3.035699,1,0,OLI:SA:5855,Europe/Paris,0,OLI, +OLI:SP:SWP001,1,"Republique",50.559713,2.904438,1,0,OLI:SA:1585,Europe/Paris,0,OLI, +OLI:SP:SWP002,1,"Republique",50.559614,2.904564,1,0,OLI:SA:1585,Europe/Paris,0,OLI, +OLI:SP:SWR001,1,"Renovation",50.565884,2.894916,1,0,OLI:SA:1588,Europe/Paris,0,OLI, +OLI:SP:SWR002,1,"Renovation",50.565929,2.894917,1,0,OLI:SA:1588,Europe/Paris,0,OLI, +OLI:SP:TAB001,1,"Tabac",50.649547,3.224361,1,0,OLI:SA:4391,Europe/Paris,0,OLI, +OLI:SP:TAB002,1,"Tabac",50.649086,3.224846,1,0,OLI:SA:4391,Europe/Paris,0,OLI, +OLI:SP:TAB003,1,"Tabac",50.649199,3.223974,1,0,OLI:SA:4391,Europe/Paris,0,OLI, +OLI:SP:TAC001,1,"Place A. Tacq",50.620329,3.034089,1,0,OLI:SA:765,Europe/Paris,0,OLI, +OLI:SP:TAG001,1,"La Montagne",50.663292,2.964661,1,0,OLI:SA:5825,Europe/Paris,0,OLI, +OLI:SP:TAG002,1,"La Montagne",50.663158,2.964391,1,0,OLI:SA:5825,Europe/Paris,0,OLI, +OLI:SP:TAI001,1,"Voltaire",50.726528,3.128721,1,0,OLI:SA:1784,Europe/Paris,0,OLI, +OLI:SP:TAL001,1,"Comtesse De Segur",50.602229,3.09019,1,0,OLI:SA:1334,Europe/Paris,0,OLI, +OLI:SP:TAL002,1,"Comtesse De Segur",50.601985,3.09061,1,0,OLI:SA:1334,Europe/Paris,0,OLI, +OLI:SP:TBO098,1,"Bourgogne",50.739496,3.179274,1,0,OLI:SA:1719,Europe/Paris,0,OLI, +OLI:SP:TBO099,1,"Bourgogne",50.739646,3.179715,1,0,OLI:SA:1719,Europe/Paris,0,OLI, +OLI:SP:TBR001,1,"Brossolette",50.730305,3.134236,1,0,OLI:SA:5766,Europe/Paris,0,OLI, +OLI:SP:TBR002,1,"Brossolette",50.730114,3.134586,1,0,OLI:SA:5766,Europe/Paris,0,OLI, +OLI:SP:TCC001,1,"Tourcoing C.Cial",50.738608,3.13875,1,0,OLI:SA:6693,Europe/Paris,0,OLI, +OLI:SP:TCL001,1,"Clinquet",50.725896,3.130817,1,0,OLI:SA:5589,Europe/Paris,0,OLI, +OLI:SP:TEL001,1,"Cartelot",50.683569,3.119527,1,0,OLI:SA:2086,Europe/Paris,0,OLI, +OLI:SP:TEL012,1,"Cartelot",50.683597,3.119414,1,0,OLI:SA:2086,Europe/Paris,0,OLI, +OLI:SP:TEM001,1,"Eglise",50.571044,3.054349,1,0,OLI:SA:1705,Europe/Paris,0,OLI, +OLI:SP:TEM002,1,"Eglise",50.571466,3.054299,1,0,OLI:SA:1705,Europe/Paris,0,OLI, +OLI:SP:TET001,1,"Potente",50.726068,3.1847,1,0,OLI:SA:4646,Europe/Paris,0,OLI, +OLI:SP:TET002,1,"Potente",50.72669,3.184188,1,0,OLI:SA:4646,Europe/Paris,0,OLI, +OLI:SP:TEU001,1,"Pasteur",50.568397,3.056044,1,0,OLI:SA:1702,Europe/Paris,0,OLI, +OLI:SP:TEU002,1,"Pasteur",50.568524,3.055849,1,0,OLI:SA:1702,Europe/Paris,0,OLI, +OLI:SP:TFF001,1,"Toufflers Douane",50.661336,3.232727,1,0,OLI:SA:1712,Europe/Paris,0,OLI, +OLI:SP:TFT001,1,"Les Trois Fetus",50.727845,3.052364,1,0,OLI:SA:978,Europe/Paris,0,OLI, +OLI:SP:TFT002,1,"Les Trois Fetus",50.727731,3.051797,1,0,OLI:SA:978,Europe/Paris,0,OLI, +OLI:SP:TGA001,1,"Gare",50.717427,3.167952,1,0,OLI:SA:1749,Europe/Paris,0,OLI, +OLI:SP:TGA002,1,"Gare",50.717077,3.16806,1,0,OLI:SA:1749,Europe/Paris,0,OLI, +OLI:SP:TGA004,1,"Gare",50.716998,3.16786,1,0,OLI:SA:1749,Europe/Paris,0,OLI, +OLI:SP:TGA005,1,"Gare",50.717279,3.167371,1,0,OLI:SA:1749,Europe/Paris,0,OLI, +OLI:SP:TGA006,1,"Gare",50.717282,3.16689,1,0,OLI:SA:1749,Europe/Paris,0,OLI, +OLI:SP:TGA007,1,"Gare",50.716834,3.166883,1,0,OLI:SA:1749,Europe/Paris,0,OLI, +OLI:SP:TGC001,1,"Cimetiere",50.739433,3.168658,1,0,OLI:SA:6310,Europe/Paris,0,OLI, +OLI:SP:TGC002,1,"Cimetiere",50.73946,3.168687,1,0,OLI:SA:6310,Europe/Paris,0,OLI, +OLI:SP:TGE001,1,"Einstein",50.717575,3.14015,1,0,OLI:SA:1833,Europe/Paris,0,OLI, +OLI:SP:TGR001,1,"Gressart",50.623867,3.196012,1,0,OLI:SA:1880,Europe/Paris,0,OLI, +OLI:SP:TGR002,1,"Gressart",50.624073,3.195987,1,0,OLI:SA:1880,Europe/Paris,0,OLI, +OLI:SP:THB001,1,"Theodore Brasme",50.571179,2.865872,1,0,OLI:SA:2239,Europe/Paris,0,OLI, +OLI:SP:THB002,1,"Theodore Brasme",50.571108,2.865857,1,0,OLI:SA:2239,Europe/Paris,0,OLI, +OLI:SP:THD001,1,"Hotel De Ville",50.723889,3.159313,1,0,OLI:SA:7608,Europe/Paris,0,OLI, +OLI:SP:THD002,1,"Hotel De Ville",50.724233,3.158909,1,0,OLI:SA:7608,Europe/Paris,0,OLI, +OLI:SP:THD090,1,"Hotel De Ville",50.723997,3.159273,1,0,OLI:SA:7608,Europe/Paris,0,OLI, +OLI:SP:THI001,1,"Place Thiers",50.687426,2.877932,1,0,OLI:SA:5887,Europe/Paris,0,OLI, +OLI:SP:THI002,1,"Place Thiers",50.687282,2.877917,1,0,OLI:SA:5887,Europe/Paris,0,OLI, +OLI:SP:THO001,1,"Place Thomas",50.709652,3.206995,1,0,OLI:SA:2199,Europe/Paris,0,OLI, +OLI:SP:THO002,1,"Place Thomas",50.709777,3.207081,1,0,OLI:SA:2199,Europe/Paris,0,OLI, +OLI:SP:TIE001,1,"Rue Thiers",50.608853,3.17465,1,0,OLI:SA:7650,Europe/Paris,0,OLI, +OLI:SP:TIE002,1,"Rue Thiers",50.608775,3.174282,1,0,OLI:SA:7650,Europe/Paris,0,OLI, +OLI:SP:TIL001,1,"Tilleul",50.718835,3.169374,1,0,OLI:SA:1779,Europe/Paris,0,OLI, +OLI:SP:TIL002,1,"Tilleul",50.718834,3.169572,1,0,OLI:SA:1779,Europe/Paris,0,OLI, +OLI:SP:TIM003,1,"Tilmant",50.607715,3.059316,1,0,OLI:SA:949,Europe/Paris,0,OLI, +OLI:SP:TIM004,1,"Tilmant",50.607911,3.059558,1,0,OLI:SA:949,Europe/Paris,0,OLI, +OLI:SP:TIO098,1,"Triolo",50.616294,3.14164,1,0,OLI:SA:1903,Europe/Paris,0,OLI, +OLI:SP:TIO099,1,"Triolo",50.616294,3.14164,1,0,OLI:SA:1903,Europe/Paris,0,OLI, +OLI:SP:TLC001,1,"Le Christ",50.745698,3.158683,1,0,OLI:SA:5890,Europe/Paris,0,OLI, +OLI:SP:TLC002,1,"Le Christ",50.74577,3.158586,1,0,OLI:SA:5890,Europe/Paris,0,OLI, +OLI:SP:TME001,1,"Le Mesnil",50.643341,3.207689,1,0,OLI:SA:6910,Europe/Paris,0,OLI, +OLI:SP:TME002,1,"Le Mesnil",50.643302,3.208083,1,0,OLI:SA:6910,Europe/Paris,0,OLI, +OLI:SP:TMI011,1,"Tremiere",50.619746,3.137691,1,0,OLI:SA:6920,Europe/Paris,0,OLI, +OLI:SP:TMI012,1,"Tremiere",50.619836,3.139103,1,0,OLI:SA:6920,Europe/Paris,0,OLI, +OLI:SP:TNA001,1,"La Forgette",50.74679,3.177715,1,0,OLI:SA:1865,Europe/Paris,0,OLI, +OLI:SP:TNA002,1,"La Forgette",50.74656,3.177245,1,0,OLI:SA:1865,Europe/Paris,0,OLI, +OLI:SP:TNB001,1,"Tourne Bride",50.647473,3.228274,1,0,OLI:SA:4392,Europe/Paris,0,OLI, +OLI:SP:TNB002,1,"Tourne Bride",50.647447,3.228105,1,0,OLI:SA:4392,Europe/Paris,0,OLI, +OLI:SP:TOM001,1,"Meunier",50.663382,3.216364,1,0,OLI:SA:1709,Europe/Paris,0,OLI, +OLI:SP:TON001,1,"Tonkin",50.675451,3.217015,1,0,OLI:SA:1088,Europe/Paris,0,OLI, +OLI:SP:TON002,1,"Tonkin",50.674124,3.215678,1,0,OLI:SA:1088,Europe/Paris,0,OLI, +OLI:SP:TOS001,1,"Tossee",50.70933,3.167733,1,0,OLI:SA:1764,Europe/Paris,0,OLI, +OLI:SP:TOS002,1,"Tossee",50.709194,3.167886,1,0,OLI:SA:1764,Europe/Paris,0,OLI, +OLI:SP:TOU098,1,"Tourcoing Centre",50.720554,3.160445,1,0,OLI:SA:7123,Europe/Paris,0,OLI, +OLI:SP:TOU099,1,"Tourcoing Centre",50.720554,3.160445,1,0,OLI:SA:7123,Europe/Paris,0,OLI, +OLI:SP:TOU111,1,"Tourcoing Centre",50.720723,3.159261,1,0,OLI:SA:7123,Europe/Paris,0,OLI, +OLI:SP:TOU202,1,"Tourcoing Centre",50.720572,3.159103,1,0,OLI:SA:7123,Europe/Paris,0,OLI, +OLI:SP:TOU222,1,"Tourcoing Centre",50.720603,3.15981,1,0,OLI:SA:7123,Europe/Paris,0,OLI, +OLI:SP:TPH098,1,"Phalempins",50.73242,3.157744,1,0,OLI:SA:1818,Europe/Paris,0,OLI, +OLI:SP:TPH099,1,"Phalempins",50.73242,3.157744,1,0,OLI:SA:1818,Europe/Paris,0,OLI, +OLI:SP:TPL001,1,"Place Tiers",50.658409,3.102242,1,0,OLI:SA:1123,Europe/Paris,0,OLI, +OLI:SP:TPL002,1,"Place Tiers",50.658402,3.101875,1,0,OLI:SA:1123,Europe/Paris,0,OLI, +OLI:SP:TPO001,1,"Poste",50.719236,3.16308,1,0,OLI:SA:1718,Europe/Paris,0,OLI, +OLI:SP:TPO002,1,"Poste",50.718712,3.16365,1,0,OLI:SA:1718,Europe/Paris,0,OLI, +OLI:SP:TRC001,1,"Rochdale",50.731699,3.167823,1,0,OLI:SA:5760,Europe/Paris,0,OLI, +OLI:SP:TRC002,1,"Rochdale",50.732405,3.168103,1,0,OLI:SA:5760,Europe/Paris,0,OLI, +OLI:SP:TRD001,1,"Tradition",50.614708,3.142771,1,0,OLI:SA:1984,Europe/Paris,0,OLI, +OLI:SP:TRD002,1,"Tradition",50.614678,3.141882,1,0,OLI:SA:1984,Europe/Paris,0,OLI, +OLI:SP:TRE001,1,"Curie",50.734287,3.184288,1,0,OLI:SA:5590,Europe/Paris,0,OLI, +OLI:SP:TRE002,1,"Curie",50.734136,3.183975,1,0,OLI:SA:5590,Europe/Paris,0,OLI, +OLI:SP:TRI001,1,"Triez",50.691086,3.132099,1,0,OLI:SA:6732,Europe/Paris,0,OLI, +OLI:SP:TRI002,1,"Triez",50.692202,3.131467,1,0,OLI:SA:6732,Europe/Paris,0,OLI, +OLI:SP:TRI021,1,"Triez",50.692767,3.131547,1,0,OLI:SA:6732,Europe/Paris,0,OLI, +OLI:SP:TRI032,1,"Triez",50.692359,3.130834,1,0,OLI:SA:6732,Europe/Paris,0,OLI, +OLI:SP:TRO001,1,"Trocmet",50.635375,2.990968,1,0,OLI:SA:5967,Europe/Paris,0,OLI, +OLI:SP:TRO002,1,"Trocmet",50.636188,2.991515,1,0,OLI:SA:5967,Europe/Paris,0,OLI, +OLI:SP:TRS001,1,"Trois Sources",50.676897,3.147077,1,0,OLI:SA:293,Europe/Paris,0,OLI, +OLI:SP:TRS002,1,"Trois Sources",50.677199,3.14759,1,0,OLI:SA:293,Europe/Paris,0,OLI, +OLI:SP:TRV001,1,"Trevise",50.621264,3.07247,1,0,OLI:SA:873,Europe/Paris,0,OLI, +OLI:SP:TRV002,1,"Trevise",50.62068,3.072631,1,0,OLI:SA:873,Europe/Paris,0,OLI, +OLI:SP:TSS001,1,"Cimetiere Du Sud",50.612328,3.046595,1,0,OLI:SA:940,Europe/Paris,0,OLI, +OLI:SP:TSS002,1,"Cimetiere Du Sud",50.612847,3.046913,1,0,OLI:SA:940,Europe/Paris,0,OLI, +OLI:SP:TSU002,1,"Lycee Louis Pasteur",50.640152,3.070138,1,0,OLI:SA:815,Europe/Paris,0,OLI, +OLI:SP:TTE001,1,"Watteeuw",50.665183,3.196242,1,0,OLI:SA:5622,Europe/Paris,0,OLI, +OLI:SP:TTE002,1,"Watteeuw",50.665165,3.19627,1,0,OLI:SA:5622,Europe/Paris,0,OLI, +OLI:SP:TVI001,1,"Vieux Moulin",50.552084,3.039419,1,0,OLI:SA:1652,Europe/Paris,0,OLI, +OLI:SP:TVI002,1,"Vieux Moulin",50.552292,3.039239,1,0,OLI:SA:1652,Europe/Paris,0,OLI, +OLI:SP:TWA001,1,"Watt",50.728943,3.136786,1,0,OLI:SA:1838,Europe/Paris,0,OLI, +OLI:SP:TWA002,1,"Watt",50.728732,3.136119,1,0,OLI:SA:1838,Europe/Paris,0,OLI, +OLI:SP:TYR002,1,"Musee",50.69423,3.166945,1,0,OLI:SA:5475,Europe/Paris,0,OLI, +OLI:SP:UAN001,1,"Chats Huants",50.746937,3.126684,1,0,OLI:SA:2653,Europe/Paris,0,OLI, +OLI:SP:UAN002,1,"Chats Huants",50.746482,3.126352,1,0,OLI:SA:2653,Europe/Paris,0,OLI, +OLI:SP:UEI001,1,"Recherche",50.648947,3.157982,1,0,OLI:SA:5405,Europe/Paris,0,OLI, +OLI:SP:UEI002,1,"Recherche",50.649378,3.157904,1,0,OLI:SA:5405,Europe/Paris,0,OLI, +OLI:SP:UEI003,1,"Recherche",50.649122,3.158648,1,0,OLI:SA:5405,Europe/Paris,0,OLI, +OLI:SP:UET001,1,"Jacquet",50.637442,3.083767,1,0,OLI:SA:2647,Europe/Paris,0,OLI, +OLI:SP:UET002,1,"Jacquet",50.637337,3.086304,1,0,OLI:SA:2647,Europe/Paris,0,OLI, +OLI:SP:UIL002,1,"Champreuille",50.693559,3.126984,1,0,OLI:SA:6364,Europe/Paris,0,OLI, +OLI:SP:UIS001,1,"Buisine",50.688377,3.188762,1,0,OLI:SA:1518,Europe/Paris,0,OLI, +OLI:SP:UIS002,1,"Buisine",50.688205,3.189041,1,0,OLI:SA:1518,Europe/Paris,0,OLI, +OLI:SP:ULI001,1,"Moulin",50.699159,3.213153,1,0,OLI:SA:2185,Europe/Paris,0,OLI, +OLI:SP:ULI002,1,"Moulin",50.698643,3.212551,1,0,OLI:SA:2185,Europe/Paris,0,OLI, +OLI:SP:UQU001,1,"Touquet",50.721992,3.181395,1,0,OLI:SA:1867,Europe/Paris,0,OLI, +OLI:SP:UQU002,1,"Touquet",50.722504,3.181262,1,0,OLI:SA:1867,Europe/Paris,0,OLI, +OLI:SP:URE001,1,"Jean Jaures",50.680788,3.137724,1,0,OLI:SA:5868,Europe/Paris,0,OLI, +OLI:SP:URE002,1,"Jean Jaures",50.680973,3.13695,1,0,OLI:SA:5868,Europe/Paris,0,OLI, +OLI:SP:URE003,1,"Jean Jaures",50.680748,3.136989,1,0,OLI:SA:5868,Europe/Paris,0,OLI, +OLI:SP:URI002,1,"Roubaix Charles Fourier",50.671604,3.182167,1,0,OLI:SA:4710,Europe/Paris,0,OLI, +OLI:SP:URI006,1,"Roubaix Charles Fourier",50.671871,3.181056,1,0,OLI:SA:4710,Europe/Paris,0,OLI, +OLI:SP:USS002,1,"Curie",50.607689,3.013246,1,0,OLI:SA:4499,Europe/Paris,0,OLI, +OLI:SP:UST001,1,"Justice",50.674069,3.203185,1,0,OLI:SA:6876,Europe/Paris,0,OLI, +OLI:SP:UST002,1,"Justice",50.674506,3.203489,1,0,OLI:SA:6876,Europe/Paris,0,OLI, +OLI:SP:UST003,1,"Justice",50.674697,3.20304,1,0,OLI:SA:6876,Europe/Paris,0,OLI, +OLI:SP:UVR001,1,"Ouvroir",50.705996,3.090117,1,0,OLI:SA:5786,Europe/Paris,0,OLI, +OLI:SP:UVR002,1,"Ouvroir",50.706531,3.090704,1,0,OLI:SA:5786,Europe/Paris,0,OLI, +OLI:SP:V21301,1,"Voie 213",50.713261,3.075281,1,0,OLI:SA:7221,Europe/Paris,0,OLI, +OLI:SP:V21302,1,"Voie 213",50.713153,3.075237,1,0,OLI:SA:7221,Europe/Paris,0,OLI, +OLI:SP:V22001,1,"Voie 22",50.708119,3.078651,1,0,OLI:SA:7225,Europe/Paris,0,OLI, +OLI:SP:V22002,1,"Voie 22",50.708228,3.078526,1,0,OLI:SA:7225,Europe/Paris,0,OLI, +OLI:SP:V27001,1,"Voie 227",50.717444,3.073181,1,0,OLI:SA:7227,Europe/Paris,0,OLI, +OLI:SP:V27002,1,"Voie 227",50.71731,3.073151,1,0,OLI:SA:7227,Europe/Paris,0,OLI, +OLI:SP:V41001,1,"Voie 41",50.704362,3.082974,1,0,OLI:SA:7226,Europe/Paris,0,OLI, +OLI:SP:V41002,1,"Voie 41",50.704667,3.082922,1,0,OLI:SA:7226,Europe/Paris,0,OLI, +OLI:SP:VAC001,1,"Chem Des Vaches",50.773034,3.06396,1,0,OLI:SA:5731,Europe/Paris,0,OLI, +OLI:SP:VAC002,1,"Chem Des Vaches",50.773063,3.065176,1,0,OLI:SA:5731,Europe/Paris,0,OLI, +OLI:SP:VAH001,1,"Hopital Prive",50.65323,3.150461,1,0,OLI:SA:6832,Europe/Paris,0,OLI, +OLI:SP:VAH002,1,"Hopital Prive",50.653703,3.150906,1,0,OLI:SA:6832,Europe/Paris,0,OLI, +OLI:SP:VAH003,1,"Hopital Prive",50.655127,3.152594,1,0,OLI:SA:6832,Europe/Paris,0,OLI, +OLI:SP:VAH004,1,"Hopital Prive",50.655053,3.152889,1,0,OLI:SA:6832,Europe/Paris,0,OLI, +OLI:SP:VAI001,1,"Edouard Vaillant",50.674149,3.174559,1,0,OLI:SA:4779,Europe/Paris,0,OLI, +OLI:SP:VAI002,1,"Edouard Vaillant",50.673971,3.175629,1,0,OLI:SA:4779,Europe/Paris,0,OLI, +OLI:SP:VAN001,1,"Vandamme",50.733504,3.076909,1,0,OLI:SA:987,Europe/Paris,0,OLI, +OLI:SP:VAN002,1,"Vandamme",50.733857,3.076377,1,0,OLI:SA:987,Europe/Paris,0,OLI, +OLI:SP:VAO001,1,"Vallon",50.704891,3.226898,1,0,OLI:SA:2175,Europe/Paris,0,OLI, +OLI:SP:VAO002,1,"Vallon",50.704014,3.225357,1,0,OLI:SA:2175,Europe/Paris,0,OLI, +OLI:SP:VAO003,1,"Vallon",50.704506,3.225578,1,0,OLI:SA:2175,Europe/Paris,0,OLI, +OLI:SP:VAR001,1,"Les Arts",50.690406,3.161967,1,0,OLI:SA:1433,Europe/Paris,0,OLI, +OLI:SP:VAR002,1,"Les Arts",50.690158,3.161483,1,0,OLI:SA:1433,Europe/Paris,0,OLI, +OLI:SP:VAU001,1,"Vauban",50.70172,3.153412,1,0,OLI:SA:1834,Europe/Paris,0,OLI, +OLI:SP:VAU002,1,"Vauban",50.701721,3.153285,1,0,OLI:SA:1834,Europe/Paris,0,OLI, +OLI:SP:VBO001,1,"Val Boise",50.608867,3.168644,1,0,OLI:SA:1950,Europe/Paris,0,OLI, +OLI:SP:VBO002,1,"Val Boise",50.60884,3.1687,1,0,OLI:SA:1950,Europe/Paris,0,OLI, +OLI:SP:VBR001,1,"Vieux Bureau",50.723714,3.190566,1,0,OLI:SA:2183,Europe/Paris,0,OLI, +OLI:SP:VBR002,1,"Vieux Bureau",50.723853,3.189919,1,0,OLI:SA:2183,Europe/Paris,0,OLI, +OLI:SP:VCA001,1,"Calvaire",50.684042,3.000147,1,0,OLI:SA:7143,Europe/Paris,0,OLI, +OLI:SP:VCA002,1,"Calvaire",50.684042,3.000147,1,0,OLI:SA:7143,Europe/Paris,0,OLI, +OLI:SP:VCE001,1,"Cheval Blanc",50.680293,2.996766,1,0,OLI:SA:7144,Europe/Paris,0,OLI, +OLI:SP:VCE002,1,"Cheval Blanc",50.679635,2.995698,1,0,OLI:SA:7144,Europe/Paris,0,OLI, +OLI:SP:VCH001,1,"Chateau",50.63624,3.135473,1,0,OLI:SA:7145,Europe/Paris,0,OLI, +OLI:SP:VCH002,1,"Chateau",50.636195,3.135416,1,0,OLI:SA:7145,Europe/Paris,0,OLI, +OLI:SP:VCN001,1,"Vieux Chene",50.676557,2.841254,1,0,OLI:SA:2547,Europe/Paris,0,OLI, +OLI:SP:VCN002,1,"Vieux Chene",50.676461,2.840547,1,0,OLI:SA:2547,Europe/Paris,0,OLI, +OLI:SP:VCO001,1,"Le Corbeau",50.669947,3.023828,1,0,OLI:SA:7146,Europe/Paris,0,OLI, +OLI:SP:VCO002,1,"Le Corbeau",50.670235,3.023705,1,0,OLI:SA:7146,Europe/Paris,0,OLI, +OLI:SP:VDM002,1,"College Van Der Meersch",50.680887,3.204249,1,0,OLI:SA:1538,Europe/Paris,0,OLI, +OLI:SP:VDM003,1,"College Van Der Meersch",50.680558,3.205132,1,0,OLI:SA:1538,Europe/Paris,0,OLI, +OLI:SP:VDM004,1,"College Van Der Meersch",50.680512,3.205358,1,0,OLI:SA:1538,Europe/Paris,0,OLI, +OLI:SP:VDM005,1,"College Van Der Meersch",50.680681,3.204245,1,0,OLI:SA:1538,Europe/Paris,0,OLI, +OLI:SP:VED001,1,"Verdun",50.672328,3.096823,1,0,OLI:SA:1110,Europe/Paris,0,OLI, +OLI:SP:VED002,1,"Verdun",50.672176,3.096623,1,0,OLI:SA:1110,Europe/Paris,0,OLI, +OLI:SP:VEF001,1,"Vert Feuillage",50.64954,2.946852,1,0,OLI:SA:331,Europe/Paris,0,OLI, +OLI:SP:VEF002,1,"Vert Feuillage",50.649575,2.947008,1,0,OLI:SA:331,Europe/Paris,0,OLI, +OLI:SP:VEF004,1,"Vert Feuillage",50.650174,2.947396,1,0,OLI:SA:331,Europe/Paris,0,OLI, +OLI:SP:VEG001,1,"Verghelles",50.652307,3.006654,1,0,OLI:SA:5922,Europe/Paris,0,OLI, +OLI:SP:VEG002,1,"Verghelles",50.652195,3.005905,1,0,OLI:SA:5922,Europe/Paris,0,OLI, +OLI:SP:VEL001,1,"Le Velo",50.711436,3.126801,1,0,OLI:SA:5849,Europe/Paris,0,OLI, +OLI:SP:VEL002,1,"Le Velo",50.711267,3.12653,1,0,OLI:SA:5849,Europe/Paris,0,OLI, +OLI:SP:VEM001,1,"Verdun",50.554245,2.865187,1,0,OLI:SA:1198,Europe/Paris,0,OLI, +OLI:SP:VEM002,1,"Verdun",50.553715,2.865364,1,0,OLI:SA:1198,Europe/Paris,0,OLI, +OLI:SP:VEM003,1,"Verdun",50.553898,2.864465,1,0,OLI:SA:1198,Europe/Paris,0,OLI, +OLI:SP:VEN001,1,"Eglise",50.576363,3.081771,1,0,OLI:SA:1888,Europe/Paris,0,OLI, +OLI:SP:VEN003,1,"Eglise",50.576187,3.081346,1,0,OLI:SA:1888,Europe/Paris,0,OLI, +OLI:SP:VEP001,1,"Vert Pre",50.677272,3.215762,1,0,OLI:SA:1095,Europe/Paris,0,OLI, +OLI:SP:VEP002,1,"Vert Pre",50.676634,3.214593,1,0,OLI:SA:1095,Europe/Paris,0,OLI, +OLI:SP:VER001,1,"Verdun",50.589731,3.113719,1,0,OLI:SA:725,Europe/Paris,0,OLI, +OLI:SP:VEZ001,1,"Z I Vendeville",50.578945,3.085134,1,0,OLI:SA:1884,Europe/Paris,0,OLI, +OLI:SP:VEZ002,1,"Z I Vendeville",50.579274,3.085576,1,0,OLI:SA:1884,Europe/Paris,0,OLI, +OLI:SP:VFE001,1,"Vert Feuillage",50.743447,3.085,1,0,OLI:SA:5500,Europe/Paris,0,OLI, +OLI:SP:VFE002,1,"Vert Feuillage",50.743132,3.085052,1,0,OLI:SA:5500,Europe/Paris,0,OLI, +OLI:SP:VFO001,1,"La Fontaine",50.656803,3.149983,1,0,OLI:SA:1954,Europe/Paris,0,OLI, +OLI:SP:VFO002,1,"La Fontaine",50.656641,3.150178,1,0,OLI:SA:1954,Europe/Paris,0,OLI, +OLI:SP:VGE001,1,"Verger",50.604917,3.147378,1,0,OLI:SA:1983,Europe/Paris,0,OLI, +OLI:SP:VGE002,1,"Verger",50.605023,3.147633,1,0,OLI:SA:1983,Europe/Paris,0,OLI, +OLI:SP:VGH001,1,"Mairie",50.681016,2.995618,1,0,OLI:SA:5799,Europe/Paris,0,OLI, +OLI:SP:VGN001,1,"La Vignette",50.746035,3.085604,1,0,OLI:SA:5499,Europe/Paris,0,OLI, +OLI:SP:VGN002,1,"La Vignette",50.746169,3.085649,1,0,OLI:SA:5499,Europe/Paris,0,OLI, +OLI:SP:VHU001,1,"Victor Hugo",50.74572,3.08871,1,0,OLI:SA:982,Europe/Paris,0,OLI, +OLI:SP:VHU002,1,"Victor Hugo",50.74601,3.088276,1,0,OLI:SA:982,Europe/Paris,0,OLI, +OLI:SP:VIC001,1,"Hotel De Ville",50.672397,2.897093,1,0,OLI:SA:591,Europe/Paris,0,OLI, +OLI:SP:VIC002,1,"Hotel De Ville",50.672633,2.89663,1,0,OLI:SA:591,Europe/Paris,0,OLI, +OLI:SP:VIE003,1,"Mont Fleuri",50.775964,3.134471,1,0,OLI:SA:439,Europe/Paris,0,OLI, +OLI:SP:VIE004,1,"Mont Fleuri",50.775863,3.134852,1,0,OLI:SA:439,Europe/Paris,0,OLI, +OLI:SP:VIG001,1,"La Vigne",50.701175,3.183825,1,0,OLI:SA:4450,Europe/Paris,0,OLI, +OLI:SP:VIG002,1,"La Vigne",50.701094,3.183852,1,0,OLI:SA:4450,Europe/Paris,0,OLI, +OLI:SP:VIL001,1,"Villas",50.696898,3.152853,1,0,OLI:SA:1799,Europe/Paris,0,OLI, +OLI:SP:VIL002,1,"Villas",50.696311,3.152081,1,0,OLI:SA:1799,Europe/Paris,0,OLI, +OLI:SP:VIN001,1,"Vingtieme Siecle",50.703923,3.006004,1,0,OLI:SA:1320,Europe/Paris,0,OLI, +OLI:SP:VIN002,1,"Vingtieme Siecle",50.703644,3.006184,1,0,OLI:SA:1320,Europe/Paris,0,OLI, +OLI:SP:VIP001,1,"Vieille Place",50.703216,3.21023,1,0,OLI:SA:2197,Europe/Paris,0,OLI, +OLI:SP:VIP002,1,"Vieille Place",50.703279,3.21016,1,0,OLI:SA:2197,Europe/Paris,0,OLI, +OLI:SP:VIR001,1,"Virolois",50.725019,3.174141,1,0,OLI:SA:1787,Europe/Paris,0,OLI, +OLI:SP:VIR002,1,"Virolois",50.724858,3.173997,1,0,OLI:SA:1787,Europe/Paris,0,OLI, +OLI:SP:VIS001,1,"Beau Visage",50.645802,2.98858,1,0,OLI:SA:4021,Europe/Paris,0,OLI, +OLI:SP:VIS002,1,"Beau Visage",50.645723,2.988212,1,0,OLI:SA:4021,Europe/Paris,0,OLI, +OLI:SP:VIT001,1,"Victoire",50.769412,3.038888,1,0,OLI:SA:5746,Europe/Paris,0,OLI, +OLI:SP:VIT002,1,"Victoire",50.769572,3.039131,1,0,OLI:SA:5746,Europe/Paris,0,OLI, +OLI:SP:VJU001,1,"Justice",50.621098,3.150516,1,0,OLI:SA:1918,Europe/Paris,0,OLI, +OLI:SP:VJU002,1,"Justice",50.620928,3.150471,1,0,OLI:SA:1918,Europe/Paris,0,OLI, +OLI:SP:VLA003,1,"Valentine Labbe",50.647072,3.072384,1,0,OLI:SA:4543,Europe/Paris,0,OLI, +OLI:SP:VLG001,1,"Avelghem",50.695172,3.19841,1,0,OLI:SA:4830,Europe/Paris,0,OLI, +OLI:SP:VLG002,1,"Avelghem",50.695153,3.198636,1,0,OLI:SA:4830,Europe/Paris,0,OLI, +OLI:SP:VLI001,1,"Paul Verlaine",50.70431,3.066038,1,0,OLI:SA:5909,Europe/Paris,0,OLI, +OLI:SP:VLI002,1,"Paul Verlaine",50.704408,3.066138,1,0,OLI:SA:5909,Europe/Paris,0,OLI, +OLI:SP:VLL001,1,"Mairie",50.575336,3.078107,1,0,OLI:SA:1885,Europe/Paris,0,OLI, +OLI:SP:VLL002,1,"Mairie",50.575536,3.079068,1,0,OLI:SA:1885,Europe/Paris,0,OLI, +OLI:SP:VMO001,1,"Le Moulin",50.677378,3.01323,1,0,OLI:SA:6329,Europe/Paris,0,OLI, +OLI:SP:VMO002,1,"Le Moulin",50.677641,3.01281,1,0,OLI:SA:6329,Europe/Paris,0,OLI, +OLI:SP:VOI001,1,"Voisinage",50.64449,3.193502,1,0,OLI:SA:522,Europe/Paris,0,OLI, +OLI:SP:VOI002,1,"Voisinage",50.644578,3.193743,1,0,OLI:SA:522,Europe/Paris,0,OLI, +OLI:SP:VOI013,1,"Voie 213",50.713153,3.075237,1,0,OLI:SA:7221,Europe/Paris,0,OLI, +OLI:SP:VOI027,1,"Voie227",50.71731,3.073151,1,0,OLI:SA:5173,Europe/Paris,0,OLI, +OLI:SP:VOI122,1,"Voie 22",50.708228,3.078526,1,0,OLI:SA:7225,Europe/Paris,0,OLI, +OLI:SP:VOI141,1,"Voie 41",50.704667,3.082922,1,0,OLI:SA:7226,Europe/Paris,0,OLI, +OLI:SP:VOI213,1,"Voie 213",50.713261,3.075281,1,0,OLI:SA:7221,Europe/Paris,0,OLI, +OLI:SP:VOI222,1,"Voie 22",50.708228,3.078526,1,0,OLI:SA:7225,Europe/Paris,0,OLI, +OLI:SP:VOI227,1,"Voie 227",50.717444,3.073181,1,0,OLI:SA:7227,Europe/Paris,0,OLI, +OLI:SP:VOI241,1,"Voie 41",50.704362,3.082974,1,0,OLI:SA:7226,Europe/Paris,0,OLI, +OLI:SP:VOS001,1,"Prevost",50.638385,3.101187,1,0,OLI:SA:4145,Europe/Paris,0,OLI, +OLI:SP:VOS002,1,"Prevost",50.638636,3.101191,1,0,OLI:SA:4145,Europe/Paris,0,OLI, +OLI:SP:VOT001,1,"La Prevote",50.678421,2.963355,1,0,OLI:SA:1291,Europe/Paris,0,OLI, +OLI:SP:VOT002,1,"La Prevote",50.677844,2.963968,1,0,OLI:SA:1291,Europe/Paris,0,OLI, +OLI:SP:VOY001,1,"Voyette",50.583039,3.127804,1,0,OLI:SA:712,Europe/Paris,0,OLI, +OLI:SP:VPE001,1,"Peupliers",50.653649,3.156352,1,0,OLI:SA:2011,Europe/Paris,0,OLI, +OLI:SP:VPE002,1,"Peupliers",50.653594,3.156506,1,0,OLI:SA:2011,Europe/Paris,0,OLI, +OLI:SP:VPO001,1,"Mairie",50.576166,3.052972,1,0,OLI:SA:1701,Europe/Paris,0,OLI, +OLI:SP:VPO002,1,"Mairie",50.575905,3.053053,1,0,OLI:SA:1701,Europe/Paris,0,OLI, +OLI:SP:VRO001,1,"Chevron D'Or",50.758846,2.994807,1,0,OLI:SA:5842,Europe/Paris,0,OLI, +OLI:SP:VRO002,1,"Chevron D'Or",50.758491,2.994152,1,0,OLI:SA:5842,Europe/Paris,0,OLI, +OLI:SP:VRS001,1,"Viersen",50.651786,3.010189,1,0,OLI:SA:673,Europe/Paris,0,OLI, +OLI:SP:VRS002,1,"Viersen",50.651816,3.011177,1,0,OLI:SA:673,Europe/Paris,0,OLI, +OLI:SP:VSA001,1,"Versailles",50.614878,3.128858,1,0,OLI:SA:1907,Europe/Paris,0,OLI, +OLI:SP:VSA002,1,"Versailles",50.614368,3.128652,1,0,OLI:SA:1907,Europe/Paris,0,OLI, +OLI:SP:VST001,1,"Villa Saint Eloi",50.579327,3.050777,1,0,OLI:SA:1704,Europe/Paris,0,OLI, +OLI:SP:VST002,1,"Villa Saint Eloi",50.579718,3.049979,1,0,OLI:SA:1704,Europe/Paris,0,OLI, +OLI:SP:VTO001,1,"Vert Touquet",50.625172,2.984926,1,0,OLI:SA:5666,Europe/Paris,0,OLI, +OLI:SP:VTO002,1,"Vert Touquet",50.625564,2.985439,1,0,OLI:SA:5666,Europe/Paris,0,OLI, +OLI:SP:VTR001,1,"Dupleix",50.639017,3.084355,1,0,OLI:SA:964,Europe/Paris,0,OLI, +OLI:SP:VTR002,1,"Dupleix",50.638331,3.086545,1,0,OLI:SA:964,Europe/Paris,0,OLI, +OLI:SP:VUE001,1,"Belle Vue",50.737835,2.957839,1,0,OLI:SA:5802,Europe/Paris,0,OLI, +OLI:SP:VUE002,1,"Belle Vue",50.737655,2.957823,1,0,OLI:SA:5802,Europe/Paris,0,OLI, +OLI:SP:VVA001,1,"Valmy",50.617058,3.134447,1,0,OLI:SA:4358,Europe/Paris,0,OLI, +OLI:SP:VVA002,1,"Valmy",50.616757,3.133921,1,0,OLI:SA:4358,Europe/Paris,0,OLI, +OLI:SP:WAC001,1,"Clemenceau",50.681587,3.139148,1,0,OLI:SA:2065,Europe/Paris,0,OLI, +OLI:SP:WAC002,1,"Clemenceau",50.681763,3.139532,1,0,OLI:SA:2065,Europe/Paris,0,OLI, +OLI:SP:WAE002,1,"Eglise",50.5735,2.938911,1,0,OLI:SA:2214,Europe/Paris,0,OLI, +OLI:SP:WAG001,1,"Wagner",50.713346,3.185275,1,0,OLI:SA:2205,Europe/Paris,0,OLI, +OLI:SP:WAG002,1,"Wagner",50.713161,3.185978,1,0,OLI:SA:2205,Europe/Paris,0,OLI, +OLI:SP:WAH001,1,"Hotel De Ville",50.702281,3.215637,1,0,OLI:SA:2157,Europe/Paris,0,OLI, +OLI:SP:WAH002,1,"Hotel De Ville",50.702525,3.21526,1,0,OLI:SA:2157,Europe/Paris,0,OLI, +OLI:SP:WAM001,1,"Agrippin",50.686961,3.038421,1,0,OLI:SA:2026,Europe/Paris,0,OLI, +OLI:SP:WAM023,1,"Agrippin",50.68692,3.03787,1,0,OLI:SA:2026,Europe/Paris,0,OLI, +OLI:SP:WAM090,1,"Agrippin",50.687256,3.036999,1,0,OLI:SA:2026,Europe/Paris,0,OLI, +OLI:SP:WAM091,1,"Agrippin",50.68626,3.037197,1,0,OLI:SA:2026,Europe/Paris,0,OLI, +OLI:SP:WAM092,1,"Agrippin",50.68692,3.037757,1,0,OLI:SA:2026,Europe/Paris,0,OLI, +OLI:SP:WAR001,1,"Warneton Belgique",50.754868,2.948536,1,0,OLI:SA:2457,Europe/Paris,0,OLI, +OLI:SP:WAS050,1,"Centre",50.671859,3.127248,1,0,OLI:SA:2087,Europe/Paris,0,OLI, +OLI:SP:WAS051,1,"Centre",50.669617,3.128596,1,0,OLI:SA:2087,Europe/Paris,0,OLI, +OLI:SP:WAT001,1,"Centre",50.703231,3.214411,1,0,OLI:SA:2150,Europe/Paris,0,OLI, +OLI:SP:WAT005,1,"Centre",50.703053,3.214196,1,0,OLI:SA:2150,Europe/Paris,0,OLI, +OLI:SP:WAV001,1,"Avelin",50.696873,3.225484,1,0,OLI:SA:2163,Europe/Paris,0,OLI, +OLI:SP:WAY001,1,"Chateau",50.686508,3.053438,1,0,OLI:SA:6289,Europe/Paris,0,OLI, +OLI:SP:WAZ098,1,"Wazemmes",50.623272,3.051348,1,0,OLI:SA:5457,Europe/Paris,0,OLI, +OLI:SP:WAZ099,1,"Wazemmes",50.623272,3.051348,1,0,OLI:SA:5457,Europe/Paris,0,OLI, +OLI:SP:WBL001,1,"Wattignies Blum",50.590459,3.050992,1,0,OLI:SA:6324,Europe/Paris,0,OLI, +OLI:SP:WBL002,1,"Wattignies Blum",50.591517,3.051162,1,0,OLI:SA:6324,Europe/Paris,0,OLI, +OLI:SP:WBO001,1,"Bourget",50.602865,3.055722,1,0,OLI:SA:6352,Europe/Paris,0,OLI, +OLI:SP:WBO002,1,"Bourget",50.603462,3.056463,1,0,OLI:SA:6352,Europe/Paris,0,OLI, +OLI:SP:WBT001,1,"Bleriot",50.588818,3.039878,1,0,OLI:SA:6941,Europe/Paris,0,OLI, +OLI:SP:WBT002,1,"Bleriot",50.589037,3.039261,1,0,OLI:SA:6941,Europe/Paris,0,OLI, +OLI:SP:WCA001,1,"Pole Emploi",50.693818,3.232505,1,0,OLI:SA:5694,Europe/Paris,0,OLI, +OLI:SP:WCA002,1,"Pole Emploi",50.694105,3.231225,1,0,OLI:SA:5694,Europe/Paris,0,OLI, +OLI:SP:WCC001,1,"Centre Commercial",50.589746,3.051743,1,0,OLI:SA:7555,Europe/Paris,0,OLI, +OLI:SP:WCH001,1,"Winoc Chocquel",50.721376,3.170364,1,0,OLI:SA:4556,Europe/Paris,0,OLI, +OLI:SP:WCH002,1,"Winoc Chocquel",50.721071,3.170316,1,0,OLI:SA:4556,Europe/Paris,0,OLI, +OLI:SP:WCI001,1,"Mendes France",50.700599,3.231313,1,0,OLI:SA:2149,Europe/Paris,0,OLI, +OLI:SP:WCI002,1,"Mendes France",50.700643,3.231399,1,0,OLI:SA:2149,Europe/Paris,0,OLI, +OLI:SP:WCV001,1,"Cavle",50.686394,3.049723,1,0,OLI:SA:5907,Europe/Paris,0,OLI, +OLI:SP:WCV002,1,"Cavle",50.686706,3.050137,1,0,OLI:SA:5907,Europe/Paris,0,OLI, +OLI:SP:WDG002,1,"Gare",50.574557,2.937374,1,0,OLI:SA:2225,Europe/Paris,0,OLI, +OLI:SP:WDZ001,1,"Rue Des Wazieres",50.564667,2.919523,1,0,OLI:SA:2222,Europe/Paris,0,OLI, +OLI:SP:WDZ002,1,"Rue Des Wazieres",50.564648,2.919748,1,0,OLI:SA:2222,Europe/Paris,0,OLI, +OLI:SP:WEB001,1,"Eglise Beaulieu",50.704487,3.241778,1,0,OLI:SA:4706,Europe/Paris,0,OLI, +OLI:SP:WEB002,1,"Eglise Beaulieu",50.704714,3.241472,1,0,OLI:SA:4706,Europe/Paris,0,OLI, +OLI:SP:WEZ001,1,"Wez-Macquart",50.659851,2.927462,1,0,OLI:SA:596,Europe/Paris,0,OLI, +OLI:SP:WEZ002,1,"Wez-Macquart",50.659951,2.927237,1,0,OLI:SA:596,Europe/Paris,0,OLI, +OLI:SP:WFL001,1,"Fleming",50.588593,3.044765,1,0,OLI:SA:5540,Europe/Paris,0,OLI, +OLI:SP:WFL002,1,"Fleming",50.588669,3.045569,1,0,OLI:SA:5540,Europe/Paris,0,OLI, +OLI:SP:WGA001,1,"Vieux Tilleul",50.572349,2.862856,1,0,OLI:SA:2240,Europe/Paris,0,OLI, +OLI:SP:WGL002,1,"Egalite",50.579014,2.852472,1,0,OLI:SA:5724,Europe/Paris,0,OLI, +OLI:SP:WHC001,1,"La Chapelle",50.723944,3.030223,1,0,OLI:SA:1321,Europe/Paris,0,OLI, +OLI:SP:WHC002,1,"La Chapelle",50.723917,3.030109,1,0,OLI:SA:1321,Europe/Paris,0,OLI, +OLI:SP:WHD001,1,"Hotel De Ville",50.58737,3.051455,1,0,OLI:SA:2109,Europe/Paris,0,OLI, +OLI:SP:WHD002,1,"Hotel De Ville",50.588312,3.051455,1,0,OLI:SA:2109,Europe/Paris,0,OLI, +OLI:SP:WHO001,1,"La Houzarde",50.71046,3.233312,1,0,OLI:SA:2177,Europe/Paris,0,OLI, +OLI:SP:WHO002,1,"La Houzarde",50.710355,3.232915,1,0,OLI:SA:2177,Europe/Paris,0,OLI, +OLI:SP:WHT001,1,"Winhoutte",50.716488,3.20036,1,0,OLI:SA:2126,Europe/Paris,0,OLI, +OLI:SP:WHT002,1,"Winhoutte",50.716289,3.200625,1,0,OLI:SA:2126,Europe/Paris,0,OLI, +OLI:SP:WIC001,1,"4 Chemins",50.580457,2.87386,1,0,OLI:SA:5708,Europe/Paris,0,OLI, +OLI:SP:WIC002,1,"4 Chemins",50.580402,2.873916,1,0,OLI:SA:5708,Europe/Paris,0,OLI, +OLI:SP:WIM001,1,"Wicres Mairie",50.571438,2.868213,1,0,OLI:SA:5701,Europe/Paris,0,OLI, +OLI:SP:WIM002,1,"Wicres Mairie",50.571599,2.868426,1,0,OLI:SA:5701,Europe/Paris,0,OLI, +OLI:SP:WIN001,1,"Levant",50.719344,3.177761,1,0,OLI:SA:4677,Europe/Paris,0,OLI, +OLI:SP:WIN002,1,"Levant",50.718743,3.176437,1,0,OLI:SA:4677,Europe/Paris,0,OLI, +OLI:SP:WJB001,1,"Duthoit",50.694817,3.210648,1,0,OLI:SA:4680,Europe/Paris,0,OLI, +OLI:SP:WJB002,1,"Duthoit",50.694361,3.210485,1,0,OLI:SA:4680,Europe/Paris,0,OLI, +OLI:SP:WMA001,1,"Mairie",50.747229,2.951595,1,0,OLI:SA:2043,Europe/Paris,0,OLI, +OLI:SP:WMA002,1,"Mairie",50.747229,2.951665,1,0,OLI:SA:2043,Europe/Paris,0,OLI, +OLI:SP:WMI001,1,"Hotel De Ville",50.669809,3.130843,1,0,OLI:SA:2044,Europe/Paris,0,OLI, +OLI:SP:WMI002,1,"Hotel De Ville",50.669913,3.131339,1,0,OLI:SA:2044,Europe/Paris,0,OLI, +OLI:SP:WMI098,1,"Hotel De Ville",50.670093,3.131243,1,0,OLI:SA:2044,Europe/Paris,0,OLI, +OLI:SP:WMI099,1,"Hotel De Ville",50.670093,3.131243,1,0,OLI:SA:2044,Europe/Paris,0,OLI, +OLI:SP:WMT001,1,"Martelotte",50.701847,3.239697,1,0,OLI:SA:2206,Europe/Paris,0,OLI, +OLI:SP:WMT002,1,"Martelotte",50.701767,3.239681,1,0,OLI:SA:2206,Europe/Paris,0,OLI, +OLI:SP:WPL001,1,"Place",50.700966,3.215021,1,0,OLI:SA:2186,Europe/Paris,0,OLI, +OLI:SP:WPL002,1,"Place",50.70111,3.21508,1,0,OLI:SA:2186,Europe/Paris,0,OLI, +OLI:SP:WPT001,1,"Petites Haies",50.585805,2.943215,1,0,OLI:SA:6392,Europe/Paris,0,OLI, +OLI:SP:WPT002,1,"Petites Haies",50.586295,2.94387,1,0,OLI:SA:6392,Europe/Paris,0,OLI, +OLI:SP:WRA001,1,"Racine",50.586356,3.034278,1,0,OLI:SA:5538,Europe/Paris,0,OLI, +OLI:SP:WRA002,1,"Racine",50.586526,3.034351,1,0,OLI:SA:5538,Europe/Paris,0,OLI, +OLI:SP:WRE005,1,"Republique",50.581472,3.042861,1,0,OLI:SA:7664,Europe/Paris,0,OLI, +OLI:SP:WRP001,1,"Republique",50.568898,2.931489,1,0,OLI:SA:2215,Europe/Paris,0,OLI, +OLI:SP:WRP002,1,"Republique",50.568942,2.931686,1,0,OLI:SA:2215,Europe/Paris,0,OLI, +OLI:SP:WTC001,1,"Cimetiere",50.58442,3.040338,1,0,OLI:SA:7634,Europe/Paris,0,OLI, +OLI:SP:WTE001,1,"Terray",50.58999,3.035822,1,0,OLI:SA:5542,Europe/Paris,0,OLI, +OLI:SP:WTE002,1,"Terray",50.590044,3.035654,1,0,OLI:SA:5542,Europe/Paris,0,OLI, +OLI:SP:XRC001,1,"Rue De Croix",50.677569,3.134778,1,0,OLI:SA:5864,Europe/Paris,0,OLI, +OLI:SP:XRC002,1,"Rue De Croix",50.67732,3.134576,1,0,OLI:SA:5864,Europe/Paris,0,OLI, +OLI:SP:YOU001,1,"Parc De L'Yser",50.743113,3.170953,1,0,OLI:SA:5613,Europe/Paris,0,OLI, +OLI:SP:YOU002,1,"Parc De L'Yser",50.743281,3.171337,1,0,OLI:SA:5613,Europe/Paris,0,OLI, +OLI:SP:YSE001,1,"Yser",50.660706,3.037037,1,0,OLI:SA:1601,Europe/Paris,0,OLI, +OLI:SP:YSE002,1,"Yser",50.661177,3.036126,1,0,OLI:SA:1601,Europe/Paris,0,OLI, +OLI:SP:ZAC001,1,"Zac Du Moulin",50.605038,2.9524,1,0,OLI:SA:405,Europe/Paris,0,OLI, +OLI:SP:ZAC002,1,"Zac Du Moulin",50.605711,2.952225,1,0,OLI:SA:405,Europe/Paris,0,OLI, +OLI:SP:ZAF001,1,"Zone Artisanale",50.709067,2.931208,1,0,OLI:SA:5806,Europe/Paris,0,OLI, +OLI:SP:ZAF002,1,"Zone Artisanale",50.709156,2.931336,1,0,OLI:SA:5806,Europe/Paris,0,OLI, +OLI:SP:ZAR001,1,"Zone Artisanale",50.665046,3.180983,1,0,OLI:SA:511,Europe/Paris,0,OLI, +OLI:SP:ZAR002,1,"Zone Artisanale",50.665208,3.180788,1,0,OLI:SA:511,Europe/Paris,0,OLI, +OLI:SP:ZAS001,1,"Za Du Melantois",50.588799,3.136083,1,0,OLI:SA:2553,Europe/Paris,0,OLI, +OLI:SP:ZAS002,1,"Zac Du Mélantois",50.587063,3.136675,1,0,OLI:SA:7216,Europe/Paris,0,OLI, +OLI:SP:ZBE002,1,"Aristide Briand",50.70084,3.235201,1,0,OLI:SA:2587,Europe/Paris,0,OLI, +OLI:SP:ZBE003,1,"Aristide Briand",50.700843,3.234749,1,0,OLI:SA:2587,Europe/Paris,0,OLI, +OLI:SP:ZBE005,1,"Quart. Beaulieu",50.703101,3.235044,1,0,OLI:SA:6942,Europe/Paris,0,OLI, +OLI:SP:ZBE006,1,"Quart. Beaulieu",50.703472,3.234571,1,0,OLI:SA:6942,Europe/Paris,0,OLI, +OLI:SP:ZBE007,1,"Quart. Beaulieu",50.703127,3.235172,1,0,OLI:SA:6942,Europe/Paris,0,OLI, +OLI:SP:ZBE012,1,"Quart. Beaulieu",50.703418,3.234683,1,0,OLI:SA:6942,Europe/Paris,0,OLI, +OLI:SP:ZEN001,1,"Zenith",50.632958,3.076084,1,0,OLI:SA:829,Europe/Paris,0,OLI, +OLI:SP:ZEN002,1,"Zenith",50.633602,3.076319,1,0,OLI:SA:829,Europe/Paris,0,OLI, +OLI:SP:ZIH001,1,"Zi Hellu - Epine",50.61801,3.104599,1,0,OLI:SA:7151,Europe/Paris,0,OLI, +OLI:SP:ZIH002,1,"Zi Hellu - Epine",50.618086,3.103824,1,0,OLI:SA:7151,Europe/Paris,0,OLI, +OLI:SP:ZIL001,1,"Zone Indus.",50.676667,3.232536,1,0,OLI:SA:4682,Europe/Paris,0,OLI, +OLI:SP:ZIL002,1,"Zone Indus.",50.676631,3.232564,1,0,OLI:SA:4682,Europe/Paris,0,OLI, +OLI:SP:ZIL003,1,"Zone Indus.",50.67567,3.232688,1,0,OLI:SA:4682,Europe/Paris,0,OLI, +OLI:SP:ZIL004,1,"Zone Indus.",50.675742,3.232661,1,0,OLI:SA:4682,Europe/Paris,0,OLI, +OLI:SP:ZIR001,1,"Zi Rouge Bouton",50.564124,3.04094,1,0,OLI:SA:1661,Europe/Paris,0,OLI, +OLI:SP:ZIR002,1,"Zi Rouge Bouton",50.565175,3.040631,1,0,OLI:SA:1661,Europe/Paris,0,OLI, +OLI:SP:ZIT001,1,"Z.I Tourcoing Nord",50.75672,3.16544,1,0,OLI:SA:1259,Europe/Paris,0,OLI, +OLI:SP:ZMO001,1,"P.A. Du Moulin",50.68489,3.060192,1,0,OLI:SA:2031,Europe/Paris,0,OLI, +OLI:SP:ZMO002,1,"P.A. Du Moulin",50.684735,3.060571,1,0,OLI:SA:2031,Europe/Paris,0,OLI, +OLI:SP:ZOL001,1,"Zola",50.673106,3.197155,1,0,OLI:SA:1495,Europe/Paris,0,OLI, +OLI:SP:ZOL002,1,"Zola",50.673267,3.197228,1,0,OLI:SA:1495,Europe/Paris,0,OLI, +OLI:SP:ZON001,1,"Pierre Brizon",50.596693,3.129049,1,0,OLI:SA:6895,Europe/Paris,0,OLI, +OLI:SP:ZON002,1,"Pierre Brizon",50.597236,3.129805,1,0,OLI:SA:6895,Europe/Paris,0,OLI, +OLI:SP:ZPE001,1,"Les Peupliers",50.713827,3.145543,1,0,OLI:SA:7013,Europe/Paris,0,OLI, +OLI:SP:ZPE002,1,"Les Peupliers",50.713376,3.145861,1,0,OLI:SA:7013,Europe/Paris,0,OLI, +OLI:SP:ZPI001,1,"Pilaterie",50.652756,3.109661,1,0,OLI:SA:1099,Europe/Paris,0,OLI, +OLI:SP:ZPI002,1,"Pilaterie",50.652605,3.109546,1,0,OLI:SA:1099,Europe/Paris,0,OLI, +OLI:SP:ZUI001,1,"Zuidstraadt",50.788235,3.136945,1,0,OLI:SA:2493,Europe/Paris,0,OLI, +OLI:SP:ZWH001,1,"Egalite",50.71496,3.202142,1,0,OLI:SA:4679,Europe/Paris,0,OLI, +OLI:SP:ZWH002,1,"Egalite",50.71496,3.202072,1,0,OLI:SA:4679,Europe/Paris,0,OLI, +OLI:SP:ZWH004,1,"Zac Winhoutte",50.71437,3.204364,1,0,OLI:SA:4719,Europe/Paris,0,OLI, +OLO:SP:13000001,1,"Vieux Moulin",49.390392,2.931673,0,0,OLO:SA:CTP13000001,Europe/Paris,,OLO, +OLO:SP:13000002,1,"Saint Jean aux Bois",49.347221,2.906573,0,0,OLO:SA:CTP13000002,Europe/Paris,,OLO, +OLO:SP:13000003,1,"Malassise",49.350122,2.885497,0,0,OLO:SA:CTP13000003,Europe/Paris,,OLO, +OLO:SP:13000004,1,"La Brévière",49.354371,2.873481,0,0,OLO:SA:CTP13000004,Europe/Paris,,OLO, +OLO:SP:13000005,1,"Lycée Pierre d'Ailly",49.40625,2.833744,0,0,OLO:SA:CTP13000005,Europe/Paris,,OLO, +OLO:SP:13000006,1,"Lycée Mireille Grenet",49.400281,2.814993,0,0,OLO:SA:CTP13000006,Europe/Paris,,OLO, +OLO:SP:13000007,1,"Lycée Charles de Gaulle",49.383708,2.78187,0,0,OLO:SA:CTP13100001,Europe/Paris,,OLO, +OLO:SP:13000008,1,"St Jacques",49.417139,2.826909,0,0,ODV:SA:CTP22413707,Europe/Paris,,OLO, +OLO:SP:13000009,1,"Palais",49.417994,2.829315,0,0,OLO:SA:CTP13000009,Europe/Paris,,OLO, +OLO:SP:13000010,1,"Gare Routière",49.421929,2.824187,0,0,SIN:SA:OCE87276691,Europe/Paris,,OLO, +OLO:SP:13000011,1,"Collège F Bac",49.419444,2.829905,0,0,OLO:SA:CTP13000011,Europe/Paris,,OLO, +OLO:SP:13000012,1,"Magenta",49.416204,2.827121,0,0,OLO:SA:CTP13000012,Europe/Paris,,OLO, +OLO:SP:13000013,1,"LE FRANCPORT (Rue Victor Hugo)",49.434901,2.902258,0,0,OLO:SA:CTP13000013,Europe/Paris,,OLO, +OLO:SP:13000014,1,"LE FRANCPORT (Pont)",49.435333,2.907841,0,0,OLO:SA:CTP13000014,Europe/Paris,,OLO, +OLO:SP:13000015,1,"LE FRANCPORT (Château)",49.434311,2.912967,0,0,OLO:SA:CTP13000015,Europe/Paris,,OLO, +OLO:SP:13000016,1,"Marbonnerie",49.318433,2.776838,0,0,OLO:SA:CTP13000016,Europe/Paris,,OLO, +OLO:SP:13000017,1,"Aristide Briand",49.313381,2.78012,0,0,ODV:SA:CTP22403081,Europe/Paris,,OLO, +OLO:SP:13000018,1,"Eglise",49.318075,2.783858,0,0,ODV:SA:CTP22403080,Europe/Paris,,OLO, +OLO:SP:13000019,1,"Route de Compiègne",49.324339,2.778401,0,0,ODV:SA:CTP22403079,Europe/Paris,,OLO, +OLO:SP:13000020,1,"Le Bac",49.352583,2.773679,0,0,ODV:SA:CTP22403078,Europe/Paris,,OLO, +OLO:SP:13000021,1,"Mairie La Croix",49.355447,2.786232,0,0,OLO:SA:CTP13000021,Europe/Paris,,OLO, +OLO:SP:13000022,1,"Nord",49.358,2.790655,0,0,OLO:SA:CTP13000022,Europe/Paris,,OLO, +OLO:SP:13000023,1,"Hôpital",49.38742,2.790805,0,0,OLO:SA:CTP13000023,Europe/Paris,,OLO, +OLO:SP:13000024,1,"JANVILLE",49.453453,2.862034,0,0,OLO:SA:CTP13000024,Europe/Paris,,OLO, +OLO:SP:13000025,1,"Voirie Nicole",49.448555,2.864643,0,0,OLO:SA:CTP13000025,Europe/Paris,,OLO, +OLO:SP:13000026,1,"Bac à l'Aumône",49.441905,2.861021,0,0,OLO:SA:CTP13000026,Europe/Paris,,OLO, +OLO:SP:13000027,1,"Port à Carreaux",49.438924,2.850383,0,0,OLO:SA:CTP13000027,Europe/Paris,,OLO, +OLO:SP:13000028,1,"Centre",49.439869,2.843533,0,0,OLO:SA:CTP13000028,Europe/Paris,,OLO, +OLO:SP:13000029,1,"Ouïnels",49.43459,2.834252,0,0,OLO:SA:CTP13000029,Europe/Paris,,OLO, +OLO:SP:13000030,1,"Collège Debussy",49.43253,2.828406,0,0,OLO:SA:CTP13000030,Europe/Paris,,OLO, +OLO:SP:13000031,1,"République",49.428889,2.822449,0,0,OLO:SA:CTP13000031,Europe/Paris,,OLO, +OLO:SP:13000032,1,"Barthou",49.424774,2.811297,0,0,OLO:SA:CTP13000101,Europe/Paris,,OLO, +OLO:SP:13000034,1,"Square Nolet",49.413582,2.79949,0,0,OLO:SA:CTP13000034,Europe/Paris,,OLO, +OLO:SP:13000038,1,"BIENVILLE",49.449605,2.828735,0,0,OLO:SA:CTP13000038,Europe/Paris,,OLO, +OLO:SP:13000039,1,"Château de Venette",49.41854,2.804464,0,0,OLO:SA:CTP13100060,Europe/Paris,,OLO, +OLO:SP:13000041,1,"JONQUIERES-CHATEAU",49.38921,2.731591,0,0,OLO:SA:CTP13000041,Europe/Paris,,OLO, +OLO:SP:13000042,1,"Centre",49.366395,2.744263,0,0,OLO:SA:CTP13000042,Europe/Paris,,OLO, +OLO:SP:13000043,1,"Croisette",49.361243,2.750728,0,0,OLO:SA:CTP13000043,Europe/Paris,,OLO, +OLO:SP:13000044,1,"ARMANCOURT",49.371828,2.76552,0,0,OLO:SA:CTP13000044,Europe/Paris,,OLO, +OLO:SP:13000045,1,"Bas des Racques",49.37827,2.770265,0,0,OLO:SA:CTP13000045,Europe/Paris,,OLO, +OLO:SP:13000046,1,"Place",49.386316,2.776057,0,0,OLO:SA:CTP13000046,Europe/Paris,,OLO, +OLO:SP:13000047,1,"Rue des Grignons",49.391575,2.777451,0,0,OLO:SA:CTP13000047,Europe/Paris,,OLO, +OLO:SP:13000049,1,"Pérelles",49.406927,2.792175,0,0,OLO:SA:CTP13000049,Europe/Paris,,OLO, +OLO:SP:13000051,1,"Choisy Centre",49.437946,2.87886,0,0,OLO:SA:CTP13000051,Europe/Paris,,OLO, +OLO:SP:13000052,1,"Léo Delibes",49.439773,2.873051,0,0,OLO:SA:CTP13000052,Europe/Paris,,OLO, +OLO:SP:13000053,1,"Royaumont",49.442142,2.882638,0,0,OLO:SA:CTP13000053,Europe/Paris,,OLO, +OLO:SP:13000054,1,"Sergenteret",49.44348,2.886688,0,0,OLO:SA:CTP13000054,Europe/Paris,,OLO, +OLO:SP:13000055,1,"Linières",49.447295,2.881356,0,0,OLO:SA:CTP13000055,Europe/Paris,,OLO, +OLO:SP:13000056,1,"Marronniers",49.433962,2.875815,0,0,OLO:SA:CTP13000056,Europe/Paris,,OLO, +OLO:SP:13000059,1,"La Croix Collège",49.356879,2.776947,0,0,OLO:SA:CTP13000059,Europe/Paris,,OLO, +OLO:SP:13000060,1,"Barbillon",49.433433,2.845017,0,0,OLO:SA:CTP13200044,Europe/Paris,,OLO, +OLO:SP:13000061,1,"Hyppolyte Bottier",49.420234,2.82525,0,0,OLO:SA:CTP13000061,Europe/Paris,,OLO, +OLO:SP:13000063,1,"Dizocourt",49.381882,2.760058,0,0,OLO:SA:CTP13000063,Europe/Paris,,OLO, +OLO:SP:13000064,1,"Caulmont",49.378905,2.755837,0,0,OLO:SA:CTP13000064,Europe/Paris,,OLO, +OLO:SP:13000065,1,"dienval",49.395231,2.77996,0,0,OLO:SA:CTP13000065,Europe/Paris,,OLO, +OLO:SP:13000066,1,"Val Adam",49.399267,2.783501,0,0,OLO:SA:CTP13000066,Europe/Paris,,OLO, +OLO:SP:13000067,1,"Mairie de Margny",49.424798,2.81883,0,0,OLO:SA:CTP13000113,Europe/Paris,,OLO, +OLO:SP:13000068,1,"Rue de Beauvais",49.41791,2.813767,0,0,OLO:SA:CTP13000068,Europe/Paris,,OLO, +OLO:SP:13000069,1,"Solferino",49.419451,2.823792,0,0,OLO:SA:CTP13000069,Europe/Paris,,OLO, +OLO:SP:13000070,1,"Rue d'Amiens",49.422589,2.820916,0,0,OLO:SA:CTP13100116,Europe/Paris,,OLO, +OLO:SP:13000071,1,"Varanval",49.391388,2.751879,0,0,OLO:SA:CTP13000071,Europe/Paris,,OLO, +OLO:SP:13000072,1,"Rue de Noyon",49.424867,2.826733,0,0,OLO:SA:CTP13000072,Europe/Paris,,OLO, +OLO:SP:13000074,1,"Mousquetaires",49.433974,2.842042,0,0,OLO:SA:CTP13000074,Europe/Paris,,OLO, +OLO:SP:13000076,1,"Victor Hugo",49.415751,2.830311,0,0,OLO:SA:CTP13000076,Europe/Paris,,OLO, +OLO:SP:13000077,1,"Mercières Aux Bois",49.380188,2.786159,0,0,OLO:SA:CTP13000077,Europe/Paris,,OLO, +OLO:SP:13000078,1,"Ecole des Bruyères",49.355047,2.796423,0,0,OLO:SA:CTP13000078,Europe/Paris,,OLO, +OLO:SP:13000081,1,"Les Tartres",49.388597,2.753522,0,0,OLO:SA:CTP13000081,Europe/Paris,,OLO, +OLO:SP:13000083,1,"Route de Compiègne",49.324365,2.77847,0,0,ODV:SA:CTP22403079,Europe/Paris,,OLO, +OLO:SP:13000084,1,"Saint Jean aux Bois",49.347258,2.906463,0,0,OLO:SA:CTP13000002,Europe/Paris,,OLO, +OLO:SP:13000085,1,"Le Bac",49.352673,2.773611,0,0,ODV:SA:CTP22403078,Europe/Paris,,OLO, +OLO:SP:13000087,1,"Mairie La Croix",49.355564,2.786192,0,0,OLO:SA:CTP13000021,Europe/Paris,,OLO, +OLO:SP:13000088,1,"JANVILLE",49.453443,2.862269,0,0,OLO:SA:CTP13000024,Europe/Paris,,OLO, +OLO:SP:13000089,1,"Nord",49.35793,2.790297,0,0,OLO:SA:CTP13000022,Europe/Paris,,OLO, +OLO:SP:13000090,1,"Hôpital",49.38724,2.791037,0,0,OLO:SA:CTP13000023,Europe/Paris,,OLO, +OLO:SP:13000091,1,"Voirie Nicole",49.448565,2.864451,0,0,OLO:SA:CTP13000025,Europe/Paris,,OLO, +OLO:SP:13000092,1,"Bac à l'Aumône",49.442005,2.860884,0,0,OLO:SA:CTP13000026,Europe/Paris,,OLO, +OLO:SP:13000093,1,"Centre",49.439923,2.843437,0,0,OLO:SA:CTP13000028,Europe/Paris,,OLO, +OLO:SP:13000094,1,"Centre",49.366457,2.744374,0,0,OLO:SA:CTP13000042,Europe/Paris,,OLO, +OLO:SP:13000095,1,"Choisy Centre",49.437935,2.879356,0,0,OLO:SA:CTP13000051,Europe/Paris,,OLO, +OLO:SP:13000097,1,"Ouïnels",49.434581,2.834307,0,0,OLO:SA:CTP13000029,Europe/Paris,,OLO, +OLO:SP:13000098,1,"Malassise",49.350041,2.885427,0,0,OLO:SA:CTP13000003,Europe/Paris,,OLO, +OLO:SP:13000099,1,"Collège Debussy",49.43253,2.828406,0,0,OLO:SA:CTP13000030,Europe/Paris,,OLO, +OLO:SP:13000100,1,"République",49.428977,2.823001,0,0,OLO:SA:CTP13000031,Europe/Paris,,OLO, +OLO:SP:13000101,1,"Barthou",49.424355,2.810563,0,0,OLO:SA:CTP13000101,Europe/Paris,,OLO, +OLO:SP:13000102,1,"Square Nolet",49.413502,2.799228,0,0,OLO:SA:CTP13000034,Europe/Paris,,OLO, +OLO:SP:13000104,1,"Château de Venette",49.418451,2.804078,0,0,OLO:SA:CTP13100060,Europe/Paris,,OLO, +OLO:SP:13000105,1,"JONQUIERES-CHATEAU",49.389183,2.731673,0,0,OLO:SA:CTP13000041,Europe/Paris,,OLO, +OLO:SP:13000106,1,"Croisette",49.361242,2.750976,0,0,OLO:SA:CTP13000043,Europe/Paris,,OLO, +OLO:SP:13000107,1,"ARMANCOURT",49.3713,2.764786,0,0,OLO:SA:CTP13000044,Europe/Paris,,OLO, +OLO:SP:13000108,1,"Marronniers",49.434115,2.875762,0,0,OLO:SA:CTP13000056,Europe/Paris,,OLO, +OLO:SP:13000109,1,"Hyppolyte Bottier",49.420414,2.825674,0,0,OLO:SA:CTP13000061,Europe/Paris,,OLO, +OLO:SP:13000110,1,"Dizocourt",49.381872,2.760278,0,0,OLO:SA:CTP13000063,Europe/Paris,,OLO, +OLO:SP:13000111,1,"dienval",49.395357,2.779933,0,0,OLO:SA:CTP13000065,Europe/Paris,,OLO, +OLO:SP:13000112,1,"Val Adam",49.399306,2.783409,0,0,OLO:SA:CTP13000066,Europe/Paris,,OLO, +OLO:SP:13000113,1,"Mairie de Margny",49.424257,2.8195,0,0,OLO:SA:CTP13000113,Europe/Paris,,OLO, +OLO:SP:13000114,1,"Rue de Beauvais",49.417841,2.813036,0,0,OLO:SA:CTP13000068,Europe/Paris,,OLO, +OLO:SP:13000115,1,"Rue d'Amiens",49.42276,2.820945,0,0,OLO:SA:CTP13100116,Europe/Paris,,OLO, +OLO:SP:13000116,1,"Varanval",49.39137,2.751797,0,0,OLO:SA:CTP13000071,Europe/Paris,,OLO, +OLO:SP:13000117,1,"Rue de Noyon",49.425016,2.827232,0,0,OLO:SA:CTP13000072,Europe/Paris,,OLO, +OLO:SP:13000118,1,"Mousquetaires",49.433366,2.841347,0,0,OLO:SA:CTP13000074,Europe/Paris,,OLO, +OLO:SP:13000120,1,"Grignons",49.391737,2.777425,0,0,OLO:SA:CTP13000047,Europe/Paris,,OLO, +OLO:SP:13000121,1,"Les Tartres",49.388597,2.753522,0,0,OLO:SA:CTP13000081,Europe/Paris,,OLO, +OLO:SP:13000122,1,"Parc de Loisirs",49.388941,2.785245,0,0,OLO:SA:CTP13000122,Europe/Paris,,OLO, +OLO:SP:13000123,1,"Parc de Loisirs",49.389016,2.784461,0,0,OLO:SA:CTP13000122,Europe/Paris,,OLO, +OLO:SP:13000124,1,"LE FRANCPORT (Château)",49.434039,2.913584,0,0,OLO:SA:CTP13000015,Europe/Paris,,OLO, +OLO:SP:13000125,1,"Matra Lecuru",49.359331,2.787806,0,0,OLO:SA:CTP13000125,Europe/Paris,,OLO, +OLO:SP:13000126,1,"Matra Lecuru",49.359305,2.787765,0,0,OLO:SA:CTP13000125,Europe/Paris,,OLO, +OLO:SP:13000127,1,"Longues Rayes",49.357531,2.774244,0,0,OLO:SA:CTP13000127,Europe/Paris,,OLO, +OLO:SP:13000140,1,"Square Nolet",49.413582,2.79949,0,0,OLO:SA:CTP13000034,Europe/Paris,,OLO, +OLO:SP:13000221,1,"Réservoirs",49.406948,2.825807,0,0,OLO:SA:CTP13000221,Europe/Paris,,OLO, +OLO:SP:13100001,1,"Lycée Charles de Gaulle",49.383708,2.78187,0,0,OLO:SA:CTP13100001,Europe/Paris,,OLO, +OLO:SP:13100002,1,"Jean Monnet",49.381427,2.781423,0,0,OLO:SA:CTP13100002,Europe/Paris,,OLO, +OLO:SP:13100003,1,"Mercure",49.380715,2.784609,0,0,OLO:SA:CTP13100003,Europe/Paris,,OLO, +OLO:SP:13100004,1,"CIMA",49.384026,2.787982,0,0,OLO:SA:CTP13100004,Europe/Paris,,OLO, +OLO:SP:13100006,1,"Hôpital Départ",49.38742,2.790805,0,0,OLO:SA:CTP13000023,Europe/Paris,,OLO, +OLO:SP:13100007,1,"Mercières",49.392179,2.788989,0,0,OLO:SA:CTP13100007,Europe/Paris,,OLO, +OLO:SP:13100008,1,"Blaise Pascal",49.396534,2.79423,0,0,OLO:SA:CTP13100008,Europe/Paris,,OLO, +OLO:SP:13100009,1,"Centre Commercial Royallieu",49.396758,2.796765,0,0,OLO:SA:CTP13100009,Europe/Paris,,OLO, +OLO:SP:13100010,1,"Vivier Corax",49.396082,2.799883,0,0,OLO:SA:CTP13100010,Europe/Paris,,OLO, +OLO:SP:13100011,1,"Pillet Will",49.396671,2.80783,0,0,OLO:SA:CTP13100011,Europe/Paris,,OLO, +OLO:SP:13100012,1,"Abbaye",49.398048,2.804856,0,0,OLO:SA:CTP13100012,Europe/Paris,,OLO, +OLO:SP:13100013,1,"Mémorial",49.402632,2.808848,0,0,OLO:SA:CTP13100013,Europe/Paris,,OLO, +OLO:SP:13100014,1,"Picardie",49.399667,2.808904,0,0,OLO:SA:CTP13100014,Europe/Paris,,OLO, +OLO:SP:13100015,1,"Jean L'Huillier",49.39915,2.812409,0,0,OLO:SA:CTP13100015,Europe/Paris,,OLO, +OLO:SP:13100016,1,"Piscine",49.402137,2.818149,0,0,OLO:SA:CTP13100016,Europe/Paris,,OLO, +OLO:SP:13100017,1,"Libération",49.405,2.82543,0,0,OLO:SA:CTP13100017,Europe/Paris,,OLO, +OLO:SP:13100018,1,"Verdun",49.402888,2.827861,0,0,OLO:SA:CTP13100018,Europe/Paris,,OLO, +OLO:SP:13100019,1,"Victoire",49.404784,2.823267,0,0,OLO:SA:CTP13100019,Europe/Paris,,OLO, +OLO:SP:13100020,1,"Réservoirs",49.407037,2.825973,0,0,OLO:SA:CTP13000221,Europe/Paris,,OLO, +OLO:SP:13100021,1,"Carnot",49.409169,2.82971,0,0,OLO:SA:CTP13100021,Europe/Paris,,OLO, +OLO:SP:13100022,1,"La Vènerie",49.407245,2.832253,0,0,OLO:SA:CTP13100022,Europe/Paris,,OLO, +OLO:SP:13100023,1,"Lycée Pierre d'Ailly",49.405733,2.837152,0,0,OLO:SA:CTP13100023,Europe/Paris,,OLO, +OLO:SP:13100024,1,"Route Forestière du Moulin",49.400905,2.833774,0,0,OLO:SA:CTP13100024,Europe/Paris,,OLO, +OLO:SP:13100025,1,"Maison de l'Europe",49.406866,2.836888,0,0,OLO:SA:CTP13100025,Europe/Paris,,OLO, +OLO:SP:13100026,1,"Bournonville",49.408282,2.83558,0,0,OLO:SA:CTP13100026,Europe/Paris,,OLO, +OLO:SP:13100027,1,"Bournonville 2",49.409427,2.834586,0,0,OLO:SA:CTP13100027,Europe/Paris,,OLO, +OLO:SP:13100028,1,"Saint-Lazare",49.411882,2.831816,0,0,OLO:SA:CTP13100028,Europe/Paris,,OLO, +OLO:SP:13100029,1,"Jacques Monod",49.414246,2.829167,0,0,OLO:SA:CTP13100029,Europe/Paris,,OLO, +OLO:SP:13100030,1,"Victor Hugo",49.415751,2.830311,0,0,OLO:SA:CTP13000076,Europe/Paris,,OLO, +OLO:SP:13100031,1,"Grande-Bretagne",49.408647,2.83853,0,0,OLO:SA:CTP13100031,Europe/Paris,,OLO, +OLO:SP:13100032,1,"Rond Royal",49.412785,2.837084,0,0,OLO:SA:CTP13100032,Europe/Paris,,OLO, +OLO:SP:13100033,1,"Sous-Préfecture",49.41582,2.833203,0,0,OLO:SA:CTP13100033,Europe/Paris,,OLO, +OLO:SP:13100034,1,"Palais",49.417992,2.829313,0,0,OLO:SA:CTP13000009,Europe/Paris,,OLO, +OLO:SP:13100035,1,"Saint-Jacques",49.416871,2.826659,0,0,ODV:SA:CTP22413707,Europe/Paris,,OLO, +OLO:SP:13100036,1,"Solférino",49.418548,2.82494,0,0,OLO:SA:CTP13100036,Europe/Paris,,OLO, +OLO:SP:13100037,1,"Gare",49.421724,2.823703,0,0,SIN:SA:OCE87276691,Europe/Paris,,OLO, +OLO:SP:13100038,1,"Anatole France",49.407629,2.805866,0,0,OLO:SA:CTP13100038,Europe/Paris,,OLO, +OLO:SP:13100039,1,"André Malraux",49.398993,2.794995,0,0,OLO:SA:CTP13100039,Europe/Paris,,OLO, +OLO:SP:13100041,1,"Ancien Hôpital",49.413331,2.822219,0,0,OLO:SA:CTP13100041,Europe/Paris,,OLO, +OLO:SP:13100045,1,"Barthou",49.424355,2.810563,0,0,OLO:SA:CTP13000101,Europe/Paris,,OLO, +OLO:SP:13100046,1,"Bataillon de France",49.423181,2.838796,0,0,OLO:SA:CTP13100046,Europe/Paris,,OLO, +OLO:SP:13100047,1,"Belin",49.386285,2.796423,0,0,OLO:SA:CTP13100047,Europe/Paris,,OLO, +OLO:SP:13100048,1,"Bellicart Départ",49.427294,2.847582,0,0,OLO:SA:CTP13100048,Europe/Paris,,OLO, +OLO:SP:13100052,1,"Centre Commercial Jaux Venette",49.407569,2.781388,0,0,OLO:SA:CTP13100052,Europe/Paris,,OLO, +OLO:SP:13100054,1,"Camp du Roy",49.404134,2.779968,0,0,OLO:SA:CTP13100054,Europe/Paris,,OLO, +OLO:SP:13100057,1,"Castors",49.421481,2.805758,0,0,OLO:SA:CTP13100057,Europe/Paris,,OLO, +OLO:SP:13100058,1,"L'écharde",49.425986,2.844663,0,0,OLO:SA:CTP13100058,Europe/Paris,,OLO, +OLO:SP:13100059,1,"Centre de Recherches",49.400862,2.799513,0,0,OLO:SA:CTP13100059,Europe/Paris,,OLO, +OLO:SP:13100060,1,"Château de Venette",49.418567,2.804286,0,0,OLO:SA:CTP13100060,Europe/Paris,,OLO, +OLO:SP:13100061,1,"Cimetière de Venette",49.410391,2.795496,0,0,OLO:SA:CTP13100061,Europe/Paris,,OLO, +OLO:SP:13100062,1,"Cimetière Nord",49.424632,2.841936,0,0,OLO:SA:CTP13100062,Europe/Paris,,OLO, +OLO:SP:13100064,1,"Clos des Roses",49.407118,2.803355,0,0,OLO:SA:CTP13100064,Europe/Paris,,OLO, +OLO:SP:13100065,1,"Collège Debussy",49.432601,2.828682,0,0,OLO:SA:CTP13000030,Europe/Paris,,OLO, +OLO:SP:13100066,1,"Couttolenc",49.415401,2.819155,0,0,OLO:SA:CTP13100066,Europe/Paris,,OLO, +OLO:SP:13100067,1,"Centre Culturel",49.407778,2.80913,0,0,OLO:SA:CTP13100067,Europe/Paris,,OLO, +OLO:SP:13100068,1,"Centre de Secours",49.409765,2.801603,0,0,OLO:SA:CTP13100068,Europe/Paris,,OLO, +OLO:SP:13100070,1,"De Lattre de Tassigny",49.404474,2.815528,0,0,OLO:SA:CTP13100070,Europe/Paris,,OLO, +OLO:SP:13100071,1,"Delaïdde",49.408515,2.808971,0,0,OLO:SA:CTP13100071,Europe/Paris,,OLO, +OLO:SP:13100072,1,"Denielou",49.400918,2.796651,0,0,OLO:SA:CTP13100072,Europe/Paris,,OLO, +OLO:SP:13100073,1,"Robert Desnos",49.404131,2.802048,0,0,OLO:SA:CTP13100073,Europe/Paris,,OLO, +OLO:SP:13100074,1,"Domeliers",49.414547,2.823704,0,0,OLO:SA:CTP13100074,Europe/Paris,,OLO, +OLO:SP:13100075,1,"Docteur Calmette",49.400053,2.792596,0,0,OLO:SA:CTP13100075,Europe/Paris,,OLO, +OLO:SP:13100076,1,"Docteur Guérin",49.399083,2.790138,0,0,OLO:SA:CTP13100076,Europe/Paris,,OLO, +OLO:SP:13100078,1,"Ecole St-Germain",49.409735,2.816155,0,0,OLO:SA:CTP13100078,Europe/Paris,,OLO, +OLO:SP:13100079,1,"Eglise St-Germain",49.413763,2.815256,0,0,OLO:SA:CTP13100079,Europe/Paris,,OLO, +OLO:SP:13100081,1,"Ferdinand De Lesseps",49.395986,2.784866,0,0,OLO:SA:CTP13100081,Europe/Paris,,OLO, +OLO:SP:13100083,1,"Foyer Edith Piaf",49.428268,2.820515,0,0,OLO:SA:CTP13100083,Europe/Paris,,OLO, +OLO:SP:13100084,1,"Gambetta",49.412166,2.814925,0,0,OLO:SA:CTP13100084,Europe/Paris,,OLO, +OLO:SP:13100087,1,"Glacière",49.405505,2.818126,0,0,OLO:SA:CTP13100087,Europe/Paris,,OLO, +OLO:SP:13100088,1,"Gymnase de Margny",49.421113,2.810244,0,0,OLO:SA:CTP13100088,Europe/Paris,,OLO, +OLO:SP:13100089,1,"Hippolyte Bottier",49.420414,2.825674,0,0,OLO:SA:CTP13100089,Europe/Paris,,OLO, +OLO:SP:13100091,1,"Hauts de Venette",49.414054,2.791123,0,0,OLO:SA:CTP13100091,Europe/Paris,,OLO, +OLO:SP:13100092,1,"Hôpital de Jour",49.404915,2.799178,0,0,OLO:SA:CTP13100092,Europe/Paris,,OLO, +OLO:SP:13100093,1,"Les Jardins",49.408533,2.806714,0,0,OLO:SA:CTP13100093,Europe/Paris,,OLO, +OLO:SP:13100094,1,"Jeanne d'Arc",49.428231,2.829535,0,0,OLO:SA:CTP13100094,Europe/Paris,,OLO, +OLO:SP:13100095,1,"Justice",49.408001,2.823105,0,0,OLO:SA:CTP13100095,Europe/Paris,,OLO, +OLO:SP:13100097,1,"Mairie de Margny",49.424257,2.8195,0,0,OLO:SA:CTP13000113,Europe/Paris,,OLO, +OLO:SP:13100098,1,"Mairie de Venette",49.415983,2.798892,0,0,OLO:SA:CTP13100098,Europe/Paris,,OLO, +OLO:SP:13100099,1,"Margny de Gaulle",49.422738,2.810576,0,0,OLO:SA:CTP13100099,Europe/Paris,,OLO, +OLO:SP:13100101,1,"Multiplexe",49.403377,2.775474,0,0,OLO:SA:CTP13100101,Europe/Paris,,OLO, +OLO:SP:13100103,1,"Octave Butin",49.426629,2.817098,0,0,OLO:SA:CTP13100103,Europe/Paris,,OLO, +OLO:SP:13100104,1,"Ouïnels",49.434581,2.834156,0,0,OLO:SA:CTP13000029,Europe/Paris,,OLO, +OLO:SP:13100105,1,"Paramé",49.429732,2.827098,0,0,OLO:SA:CTP13100105,Europe/Paris,,OLO, +OLO:SP:13100106,1,"Parc de Loisirs",49.388941,2.785245,0,0,OLO:SA:CTP13000122,Europe/Paris,,OLO, +OLO:SP:13100110,1,"Prairie",49.420849,2.807258,0,0,OLO:SA:CTP13100110,Europe/Paris,,OLO, +OLO:SP:13100111,1,"Raleigh",49.410633,2.807242,0,0,OLO:SA:CTP13100111,Europe/Paris,,OLO, +OLO:SP:13100112,1,"République",49.428889,2.822449,0,0,OLO:SA:CTP13000031,Europe/Paris,,OLO, +OLO:SP:13100113,1,"Résidence Universitaire",49.411148,2.813167,0,0,OLO:SA:CTP13100113,Europe/Paris,,OLO, +OLO:SP:13100114,1,"Robida",49.404361,2.812264,0,0,OLO:SA:CTP13100114,Europe/Paris,,OLO, +OLO:SP:13100115,1,"Rostand",49.402739,2.802035,0,0,OLO:SA:CTP13100115,Europe/Paris,,OLO, +OLO:SP:13100116,1,"Rue d'Amiens",49.422589,2.820916,0,0,OLO:SA:CTP13100116,Europe/Paris,,OLO, +OLO:SP:13100120,1,"Soissons",49.422503,2.835429,0,0,OLO:SA:CTP13100120,Europe/Paris,,OLO, +OLO:SP:13100121,1,"Sports Nautiques",49.422685,2.830515,0,0,OLO:SA:CTP13100121,Europe/Paris,,OLO, +OLO:SP:13100122,1,"Square Bonnault",49.407218,2.827847,0,0,OLO:SA:CTP13100122,Europe/Paris,,OLO, +OLO:SP:13100126,1,"Saint Fiacre",49.407098,2.812978,0,0,OLO:SA:CTP13100126,Europe/Paris,,OLO, +OLO:SP:13100127,1,"Saint Joseph",49.410472,2.82054,0,0,OLO:SA:CTP13100127,Europe/Paris,,OLO, +OLO:SP:13100128,1,"Stade du Clos des Roses",49.407281,2.800645,0,0,OLO:SA:CTP13100128,Europe/Paris,,OLO, +OLO:SP:13100129,1,"Stade Dubois",49.430062,2.825655,0,0,OLO:SA:CTP13100129,Europe/Paris,,OLO, +OLO:SP:13100130,1,"Stalingrad",49.393902,2.798955,0,0,OLO:SA:CTP13100130,Europe/Paris,,OLO, +OLO:SP:13100132,1,"Veneurs",49.411018,2.830031,0,0,OLO:SA:CTP13100132,Europe/Paris,,OLO, +OLO:SP:13100134,1,"Weygand",49.406562,2.807577,0,0,OLO:SA:CTP13100134,Europe/Paris,,OLO, +OLO:SP:13200006,1,"Hôpital Arrivée",49.38724,2.791037,0,0,OLO:SA:CTP13000023,Europe/Paris,,OLO, +OLO:SP:13200007,1,"Mercières",49.392196,2.789333,0,0,OLO:SA:CTP13100007,Europe/Paris,,OLO, +OLO:SP:13200008,1,"Blaise Pascal",49.39675,2.794232,0,0,OLO:SA:CTP13100008,Europe/Paris,,OLO, +OLO:SP:13200009,1,"Centre Commercial Royallieu",49.396756,2.797274,0,0,OLO:SA:CTP13100009,Europe/Paris,,OLO, +OLO:SP:13200010,1,"Vivier Corax",49.396172,2.799815,0,0,OLO:SA:CTP13100010,Europe/Paris,,OLO, +OLO:SP:13200012,1,"Abbaye",49.398084,2.804829,0,0,OLO:SA:CTP13100012,Europe/Paris,,OLO, +OLO:SP:13200014,1,"Picardie",49.400299,2.80807,0,0,OLO:SA:CTP13100014,Europe/Paris,,OLO, +OLO:SP:13200015,1,"Jean L'Huillier",49.39915,2.812299,0,0,OLO:SA:CTP13100015,Europe/Paris,,OLO, +OLO:SP:13200016,1,"Piscine",49.402779,2.819284,0,0,OLO:SA:CTP13100016,Europe/Paris,,OLO, +OLO:SP:13200017,1,"Libération",49.405063,2.825404,0,0,OLO:SA:CTP13100017,Europe/Paris,,OLO, +OLO:SP:13200018,1,"Verdun",49.403086,2.827849,0,0,OLO:SA:CTP13100018,Europe/Paris,,OLO, +OLO:SP:13200019,1,"Victoire",49.40425,2.82212,0,0,OLO:SA:CTP13100019,Europe/Paris,,OLO, +OLO:SP:13200021,1,"Carnot",49.409097,2.829572,0,0,OLO:SA:CTP13100021,Europe/Paris,,OLO, +OLO:SP:13200022,1,"La Vènerie",49.406877,2.832125,0,0,OLO:SA:CTP13100022,Europe/Paris,,OLO, +OLO:SP:13200023,1,"Lycée Pierre d'Ailly",49.405797,2.837029,0,0,OLO:SA:CTP13100023,Europe/Paris,,OLO, +OLO:SP:13200026,1,"Bournonville",49.408192,2.835593,0,0,OLO:SA:CTP13100026,Europe/Paris,,OLO, +OLO:SP:13200027,1,"Bournonville 2",49.409392,2.834476,0,0,OLO:SA:CTP13100027,Europe/Paris,,OLO, +OLO:SP:13200028,1,"Saint-Lazare",49.411702,2.831951,0,0,OLO:SA:CTP13100028,Europe/Paris,,OLO, +OLO:SP:13200029,1,"Jacques Monod",49.41412,2.829304,0,0,OLO:SA:CTP13100029,Europe/Paris,,OLO, +OLO:SP:13200031,1,"Grande-Bretagne",49.408917,2.838505,0,0,OLO:SA:CTP13100031,Europe/Paris,,OLO, +OLO:SP:13200032,1,"Rond Royal",49.412714,2.837069,0,0,OLO:SA:CTP13100032,Europe/Paris,,OLO, +OLO:SP:13200033,1,"Sous-Préfecture",49.415685,2.833298,0,0,OLO:SA:CTP13100033,Europe/Paris,,OLO, +OLO:SP:13200036,1,"Solférino",49.419451,2.823792,0,0,OLO:SA:CTP13100036,Europe/Paris,,OLO, +OLO:SP:13200037,1,"Gare",49.421724,2.823703,0,0,SIN:SA:OCE87276691,Europe/Paris,,OLO, +OLO:SP:13200038,1,"Anatole France",49.407649,2.805356,0,0,OLO:SA:CTP13100038,Europe/Paris,,OLO, +OLO:SP:13200039,1,"André Malraux",49.398967,2.794679,0,0,OLO:SA:CTP13100039,Europe/Paris,,OLO, +OLO:SP:13200041,1,"Ancien Hôpital",49.412714,2.821676,0,0,OLO:SA:CTP13100041,Europe/Paris,,OLO, +OLO:SP:13200042,1,"Aventis",49.429895,2.859094,0,0,OLO:SA:CTP13200042,Europe/Paris,,OLO, +OLO:SP:13200044,1,"Barbillon",49.433431,2.845012,0,0,OLO:SA:CTP13200044,Europe/Paris,,OLO, +OLO:SP:13200045,1,"Barthou",49.424774,2.811297,0,0,OLO:SA:CTP13000101,Europe/Paris,,OLO, +OLO:SP:13200048,1,"Bellicart Arrivée",49.427294,2.847582,0,0,OLO:SA:CTP13200048,Europe/Paris,,OLO, +OLO:SP:13200053,1,"Cailloux",49.406062,2.783192,0,0,OLO:SA:CTP13200053,Europe/Paris,,OLO, +OLO:SP:13200056,1,"Capucins",49.414486,2.821115,0,0,OLO:SA:CTP13200056,Europe/Paris,,OLO, +OLO:SP:13200057,1,"Castors",49.421383,2.805523,0,0,OLO:SA:CTP13100057,Europe/Paris,,OLO, +OLO:SP:13200059,1,"Centre de Recherches",49.400898,2.799445,0,0,OLO:SA:CTP13100059,Europe/Paris,,OLO, +OLO:SP:13200060,1,"Château de Venette",49.418451,2.804078,0,0,OLO:SA:CTP13100060,Europe/Paris,,OLO, +OLO:SP:13200061,1,"Cimetière de Venette",49.410355,2.795372,0,0,OLO:SA:CTP13100061,Europe/Paris,,OLO, +OLO:SP:13200064,1,"Clos des Roses",49.406787,2.802747,0,0,OLO:SA:CTP13100064,Europe/Paris,,OLO, +OLO:SP:13200065,1,"Collège Debussy",49.432664,2.828462,0,0,OLO:SA:CTP13000030,Europe/Paris,,OLO, +OLO:SP:13200066,1,"Couttolenc",49.415401,2.819003,0,0,OLO:SA:CTP13100066,Europe/Paris,,OLO, +OLO:SP:13200067,1,"Centre Culturel",49.407967,2.808939,0,0,OLO:SA:CTP13100067,Europe/Paris,,OLO, +OLO:SP:13200068,1,"Centre de Secours",49.409919,2.801329,0,0,OLO:SA:CTP13100068,Europe/Paris,,OLO, +OLO:SP:13200069,1,"Cugnot",49.393053,2.783602,0,0,OLO:SA:CTP13200069,Europe/Paris,,OLO, +OLO:SP:13200070,1,"De Lattre de Tassigny",49.404565,2.815185,0,0,OLO:SA:CTP13100070,Europe/Paris,,OLO, +OLO:SP:13200071,1,"Delaïdde",49.408435,2.808778,0,0,OLO:SA:CTP13100071,Europe/Paris,,OLO, +OLO:SP:13200072,1,"Denielou",49.400901,2.796416,0,0,OLO:SA:CTP13100072,Europe/Paris,,OLO, +OLO:SP:13200073,1,"Robert Desnos",49.404231,2.801815,0,0,OLO:SA:CTP13100073,Europe/Paris,,OLO, +OLO:SP:13200075,1,"Docteur Calmette",49.400079,2.79272,0,0,OLO:SA:CTP13100075,Europe/Paris,,OLO, +OLO:SP:13200076,1,"Docteur Guérin",49.399137,2.790055,0,0,OLO:SA:CTP13100076,Europe/Paris,,OLO, +OLO:SP:13200078,1,"Ecole St-Germain",49.409646,2.816003,0,0,OLO:SA:CTP13100078,Europe/Paris,,OLO, +OLO:SP:13200079,1,"Eglise St-Germain",49.414003,2.815837,0,0,OLO:SA:CTP13100079,Europe/Paris,,OLO, +OLO:SP:13200081,1,"Ferdinand De Lesseps",49.395869,2.784714,0,0,OLO:SA:CTP13100081,Europe/Paris,,OLO, +OLO:SP:13200083,1,"Foyer Edith Piaf",49.428179,2.820198,0,0,OLO:SA:CTP13100083,Europe/Paris,,OLO, +OLO:SP:13200084,1,"Gambetta",49.412184,2.814898,0,0,OLO:SA:CTP13100084,Europe/Paris,,OLO, +OLO:SP:13200086,1,"Gare Arrivée",49.421724,2.823703,0,0,SIN:SA:OCE87276691,Europe/Paris,,OLO, +OLO:SP:13200087,1,"Glacière",49.406832,2.81873,0,0,OLO:SA:CTP13100087,Europe/Paris,,OLO, +OLO:SP:13200088,1,"Gymnase de Margny",49.421114,2.810106,0,0,OLO:SA:CTP13100088,Europe/Paris,,OLO, +OLO:SP:13200089,1,"Hippolyte Bottier",49.420263,2.82519,0,0,OLO:SA:CTP13100089,Europe/Paris,,OLO, +OLO:SP:13200090,1,"Harlay",49.419338,2.823006,0,0,OLO:SA:CTP13200090,Europe/Paris,,OLO, +OLO:SP:13200091,1,"Hauts de Venette",49.414082,2.791041,0,0,OLO:SA:CTP13100091,Europe/Paris,,OLO, +OLO:SP:13200092,1,"Hôpital de Jour",49.404996,2.798972,0,0,OLO:SA:CTP13100092,Europe/Paris,,OLO, +OLO:SP:13200093,1,"Les Jardins",49.409296,2.806913,0,0,OLO:SA:CTP13100093,Europe/Paris,,OLO, +OLO:SP:13200094,1,"Jeanne d'Arc",49.428267,2.829618,0,0,OLO:SA:CTP13100094,Europe/Paris,,OLO, +OLO:SP:13200095,1,"Justice",49.408065,2.822816,0,0,OLO:SA:CTP13100095,Europe/Paris,,OLO, +OLO:SP:13200096,1,"Magenta",49.416204,2.827121,0,0,OLO:SA:CTP13000012,Europe/Paris,,OLO, +OLO:SP:13200097,1,"Mairie de Margny",49.424798,2.81883,0,0,OLO:SA:CTP13000113,Europe/Paris,,OLO, +OLO:SP:13200098,1,"Mairie de Venette",49.416276,2.79979,0,0,OLO:SA:CTP13100098,Europe/Paris,,OLO, +OLO:SP:13200099,1,"Margny de Gaulle",49.422584,2.810863,0,0,OLO:SA:CTP13100099,Europe/Paris,,OLO, +OLO:SP:13200103,1,"Octave Butin",49.42664,2.81652,0,0,OLO:SA:CTP13100103,Europe/Paris,,OLO, +OLO:SP:13200104,1,"Ouïnels",49.434644,2.834156,0,0,OLO:SA:CTP13000029,Europe/Paris,,OLO, +OLO:SP:13200105,1,"Paramé",49.429822,2.827113,0,0,OLO:SA:CTP13100105,Europe/Paris,,OLO, +OLO:SP:13200106,1,"Parc de Loisirs",49.389016,2.784461,0,0,OLO:SA:CTP13000122,Europe/Paris,,OLO, +OLO:SP:13200109,1,"Port à Bateaux",49.415714,2.819364,0,0,OLO:SA:CTP13200109,Europe/Paris,,OLO, +OLO:SP:13200110,1,"Prairie",49.421026,2.807214,0,0,OLO:SA:CTP13100110,Europe/Paris,,OLO, +OLO:SP:13200111,1,"Raleigh",49.410709,2.806169,0,0,OLO:SA:CTP13100111,Europe/Paris,,OLO, +OLO:SP:13200112,1,"République",49.428968,2.823001,0,0,OLO:SA:CTP13000031,Europe/Paris,,OLO, +OLO:SP:13200113,1,"Résidence Universitaire",49.410863,2.812669,0,0,OLO:SA:CTP13100113,Europe/Paris,,OLO, +OLO:SP:13200114,1,"Robida",49.404519,2.813078,0,0,OLO:SA:CTP13100114,Europe/Paris,,OLO, +OLO:SP:13200115,1,"Rostand",49.403034,2.8023,0,0,OLO:SA:CTP13100115,Europe/Paris,,OLO, +OLO:SP:13200116,1,"Rue d'Amiens",49.42276,2.820945,0,0,OLO:SA:CTP13100116,Europe/Paris,,OLO, +OLO:SP:13200117,1,"Rue de l'Aisne",49.429294,2.837699,0,0,OLO:SA:CTP13200117,Europe/Paris,,OLO, +OLO:SP:13200119,1,"Salle des Sports",49.412763,2.827102,0,0,OLO:SA:CTP13200119,Europe/Paris,,OLO, +OLO:SP:13200121,1,"Sports Nautiques",49.422748,2.830433,0,0,OLO:SA:CTP13100121,Europe/Paris,,OLO, +OLO:SP:13200122,1,"Square Bonnault",49.407235,2.828081,0,0,OLO:SA:CTP13100122,Europe/Paris,,OLO, +OLO:SP:13200123,1,"Square Nolet",49.413502,2.799228,0,0,OLO:SA:CTP13000034,Europe/Paris,,OLO, +OLO:SP:13200124,1,"Pommerelles",49.410097,2.828962,0,0,OLO:SA:CTP13200124,Europe/Paris,,OLO, +OLO:SP:13200126,1,"Saint Fiacre",49.406919,2.812756,0,0,OLO:SA:CTP13100126,Europe/Paris,,OLO, +OLO:SP:13200127,1,"Saint Joseph",49.409863,2.820273,0,0,OLO:SA:CTP13100127,Europe/Paris,,OLO, +OLO:SP:13200128,1,"Stade du Clos des Roses",49.407237,2.800369,0,0,OLO:SA:CTP13100128,Europe/Paris,,OLO, +OLO:SP:13200129,1,"Stade Dubois",49.430134,2.825629,0,0,OLO:SA:CTP13100129,Europe/Paris,,OLO, +OLO:SP:13200133,1,"Vermandois",49.431535,2.840806,0,0,OLO:SA:CTP13200133,Europe/Paris,,OLO, +OLO:SP:13200134,1,"Weygand",49.406688,2.807564,0,0,OLO:SA:CTP13100134,Europe/Paris,,OLO, +OLO:SP:13200135,1,"Monnet",49.409016,2.778716,0,0,OLO:SA:CTP13200135,Europe/Paris,,OLO, +OLO:SP:13400043,1,"Bannière du Roi",49.425814,2.834071,0,0,OLO:SA:CTP13400043,Europe/Paris,,OLO, +OLO:SP:13400045,1,"Carrefour Napoleon",49.406299,2.837241,0,0,OLO:SA:CTP13400045,Europe/Paris,,OLO, +OLO:SP:13400047,1,"Gare Départ",49.421724,2.823703,0,0,SIN:SA:OCE87276691,Europe/Paris,,OLO, +OLO:SP:13400059,1,"Royallieu",49.395115,2.803563,0,0,ODV:SA:CTP22403073,Europe/Paris,,OLO, +OLO:SP:13400061,1,"Chemin d'Armancourt",49.390432,2.794878,0,0,OLO:SA:CTP13400061,Europe/Paris,,OLO, +OLO:SP:13400063,1,"Bois de Plaisance",49.412705,2.772167,0,0,OLO:SA:CTP13400063,Europe/Paris,,OLO, +OLO:SP:13400064,1,"Poincaré Centre Commercial",49.428683,2.833396,0,0,OLO:SA:CTP13400064,Europe/Paris,,OLO, +OLO:SP:13400065,1,"Poincaré Centre Commercial",49.428559,2.832858,0,0,OLO:SA:CTP13400064,Europe/Paris,,OLO, +OLO:SP:13400066,1,"La Planchette",49.430315,2.836166,0,0,OLO:SA:CTP13400066,Europe/Paris,,OLO, +OLO:SP:13400067,1,"La Planchette",49.430521,2.836237,0,0,OLO:SA:CTP13400066,Europe/Paris,,OLO, +OLO:SP:13400068,1,"Huy Senlis",49.394347,2.804657,0,0,OLO:SA:CTP13400068,Europe/Paris,,OLO, +OLO:SP:13400069,1,"Parc de Loisirs",49.388505,2.783022,0,0,OLO:SA:CTP13000122,Europe/Paris,,OLO, +OLO:SP:13400070,1,"La Vènerie",49.407146,2.832252,0,0,OLO:SA:CTP13100022,Europe/Paris,,OLO, +OLO:SP:13400071,1,"Mercières",49.392152,2.790991,0,0,OLO:SA:CTP13100007,Europe/Paris,,OLO, +OLO:SP:13400072,1,"Saint Joseph",49.409086,2.820205,0,0,OLO:SA:CTP13100127,Europe/Paris,,OLO, +OLO:SP:13400073,1,"Saint Joseph",49.408899,2.819773,0,0,OLO:SA:CTP13100127,Europe/Paris,,OLO, +OLO:SP:13400074,1,"Cugnot",49.393,2.783382,0,0,OLO:SA:CTP13200069,Europe/Paris,,OLO, +OLO:SP:13400075,1,"Saint-Jacques",49.416996,2.826715,0,0,ODV:SA:CTP22413707,Europe/Paris,,OLO, +OLO:SP:13400076,1,"Jacques Monod",49.414129,2.829373,0,0,OLO:SA:CTP13100029,Europe/Paris,,OLO, +OLO:SP:13400077,1,"Rue de Clermont",49.418599,2.81683,0,0,OLO:SA:CTP13400078,Europe/Paris,,OLO, +OLO:SP:13400078,1,"Rue de Clermont",49.418901,2.817618,0,0,OLO:SA:CTP13400078,Europe/Paris,,OLO, +OLO:SP:13400079,1,"Port à Bateaux",49.416238,2.818804,0,0,OLO:SA:CTP13200109,Europe/Paris,,OLO, +OLO:SP:13400080,1,"Saint Corneille",49.416661,2.822884,0,0,OLO:SA:CTP13400080,Europe/Paris,,OLO, +OLO:SP:13400081,1,"Saint Côme - Mémorial",49.403473,2.807245,0,0,OLO:SA:CTP13400081,Europe/Paris,,OLO, +OLO:SP:13400082,1,"Saint Côme - Mémorial",49.4033,2.807822,0,0,OLO:SA:CTP13400081,Europe/Paris,,OLO, +OLO:SP:13400083,1,"Camp de Royallieu",49.403761,2.804853,0,0,OLO:SA:CTP13400083,Europe/Paris,,OLO, +OLO:SP:13400084,1,"Camp de Royallieu",49.403814,2.805019,0,0,OLO:SA:CTP13400083,Europe/Paris,,OLO, +OLO:SP:13400085,1,"Croix Rouge",49.405469,2.811449,0,0,OLO:SA:CTP13400085,Europe/Paris,,OLO, +OLO:SP:13400086,1,"Croix Rouge",49.405093,2.811046,0,0,OLO:SA:CTP13400085,Europe/Paris,,OLO, +OLO:SP:13400087,1,"Rue de Paris",49.410548,2.817278,0,0,OLO:SA:CTP13400087,Europe/Paris,,OLO, +OLO:SP:13400088,1,"Rue de Paris",49.410557,2.817305,0,0,OLO:SA:CTP13400087,Europe/Paris,,OLO, +OLO:SP:13400090,1,"Port à carreaux",49.43787,2.84905,0,0,OLO:SA:CTP13400090,Europe/Paris,,OLO, +OLO:SP:13400091,1,"Marronniers",49.433962,2.875912,0,0,OLO:SA:CTP13000056,Europe/Paris,,OLO, +OLO:SP:13400092,1,"Aventis",49.430093,2.858862,0,0,OLO:SA:CTP13200042,Europe/Paris,,OLO, +OLO:SP:13400094,1,"Bellicart",49.427294,2.847582,0,0,OLO:SA:CTP13400095,Europe/Paris,,OLO, +OLO:SP:13400095,1,"Bellicart",49.427751,2.847751,0,0,OLO:SA:CTP13400095,Europe/Paris,,OLO, +OLO:SP:13400097,1,"Centre Commercial Jaux Venette",49.407703,2.781431,0,0,OLO:SA:CTP13100052,Europe/Paris,,OLO, +OLO:SP:13400100,1,"Gambetta",49.412101,2.81531,0,0,OLO:SA:CTP13100084,Europe/Paris,,OLO, +OLO:SP:13400101,1,"Octave Butin",49.426772,2.817154,0,0,OLO:SA:CTP13100103,Europe/Paris,,OLO, +OLO:SP:13400102,1,"Multiplexe",49.403377,2.775474,0,0,OLO:SA:CTP13100101,Europe/Paris,,OLO, +OLO:SP:13400103,1,"Palais",49.417992,2.829313,0,0,OLO:SA:CTP13000009,Europe/Paris,,OLO, +OLO:SP:13400104,1,"Cailloux",49.406269,2.78318,0,0,OLO:SA:CTP13200053,Europe/Paris,,OLO, +OLO:SP:13400105,1,"Monnet",49.409016,2.778716,0,0,OLO:SA:CTP13200135,Europe/Paris,,OLO, +OLO:SP:13400106,1,"Port à carreaux",49.43787,2.84905,0,0,OLO:SA:CTP13400090,Europe/Paris,,OLO, +OLO:SP:13400107,1,"Marronniers",49.433962,2.875912,0,0,OLO:SA:CTP13000056,Europe/Paris,,OLO, +OLO:SP:13400108,1,"Mousquetaires",49.433974,2.842042,0,0,OLO:SA:CTP13000074,Europe/Paris,,OLO, +OLO:SP:13400109,1,"Mousquetaires",49.433366,2.841347,0,0,OLO:SA:CTP13000074,Europe/Paris,,OLO, +OLO:SP:13400110,1,"Parc Songeons",49.418462,2.82191,0,0,OLO:SA:CTP13400110,Europe/Paris,,OLO, +OLO:SP:13400111,1,"Les Clos Blancs Armancourt",49.37292,2.758994,0,0,OLO:SA:CTP13400111,Europe/Paris,,OLO, +OLO:SP:13400112,1,"Hauts de Margny",49.43777,2.802808,0,0,OLO:SA:CTP13400112,Europe/Paris,,OLO, +OLO:SP:13400113,1,"Carrefour D'Elblag",49.404941,2.817721,0,0,OLO:SA:CTP13400113,Europe/Paris,,OLO, +OLO:SP:13400114,1,"College Malraux",49.399051,2.796249,0,0,OLO:SA:CTP13400114,Europe/Paris,,OLO, +OLO:SP:13400115,1,"JONQUIERES-ECOLE",49.389357,2.733326,0,0,OLO:SA:CTP13400115,Europe/Paris,,OLO, +OLO:SP:13400116,1,"JONQUIERES-ECOLE",49.389393,2.733395,0,0,OLO:SA:CTP13400115,Europe/Paris,,OLO, +OLO:SP:13400118,1,"Port à Carreaux",49.438696,2.849169,0,0,OLO:SA:CTP13000027,Europe/Paris,,OLO, +OLO:SP:13400119,1,"Parc Tertiaire",49.381747,2.78378,0,0,OLO:SA:CTP13400119,Europe/Paris,,OLO, +OLO:SP:13400120,1,"Parc Tertiaire",49.381811,2.783469,0,0,OLO:SA:CTP13400119,Europe/Paris,,OLO, +OLO:SP:13400121,1,"Zone d'Activité",49.323116,2.747703,0,0,OLO:SA:CTP13400121,Europe/Paris,,OLO, +OLO:SP:13400122,1,"Automne",49.317548,2.740451,0,0,OLO:SA:CTP13400122,Europe/Paris,,OLO, +OLO:SP:13400123,1,"Eglise",49.310742,2.731216,0,0,ODV:SA:CTP22403093,Europe/Paris,,OLO, +OLO:SP:13400124,1,"Aramont",49.307503,2.720574,0,0,OLO:SA:CTP13400125,Europe/Paris,,OLO, +OLO:SP:13400125,1,"Aramont",49.307621,2.718931,0,0,OLO:SA:CTP13400125,Europe/Paris,,OLO, +OLO:SP:13400126,1,"Mairie",49.309422,2.730894,0,0,OLO:SA:CTP13400126,Europe/Paris,,OLO, +OLO:SP:13400127,1,"ZAC du valadan",49.440348,2.834129,0,0,OLO:SA:CTP13400127,Europe/Paris,,OLO, +OMZ:SP:20001,1,"REPUBLIQUE",49.115467,6.174264,0,0,OMZ:SA:10668,Europe/Paris,,OMZ, +OMZ:SP:20002,1,"REPUBLIQUE",49.115523,6.173431,0,0,OMZ:SA:10668,Europe/Paris,,OMZ, +OMZ:SP:20007,1,"REPUBLIQUE",49.114359,6.1725,0,0,OMZ:SA:10668,Europe/Paris,,OMZ, +OMZ:SP:20008,1,"REPUBLIQUE",49.114789,6.173284,0,0,OMZ:SA:10668,Europe/Paris,,OMZ, +OMZ:SP:20011,1,"REPUBLIQUE",49.114863,6.173356,0,0,OMZ:SA:10668,Europe/Paris,,OMZ, +OMZ:SP:20012,1,"REPUBLIQUE",49.115204,6.173734,0,0,OMZ:SA:10668,Europe/Paris,,OMZ, +OMZ:SP:20013,1,"GARE",49.111025,6.17717,0,0,OMZ:SA:10672,Europe/Paris,,OMZ, +OMZ:SP:20014,1,"GARE",49.110863,6.176897,0,0,OMZ:SA:10672,Europe/Paris,,OMZ, +OMZ:SP:20015,1,"GARE",49.110319,6.175636,0,0,OMZ:SA:10672,Europe/Paris,,OMZ, +OMZ:SP:20016,1,"GARE",49.110119,6.175749,0,0,OMZ:SA:10672,Europe/Paris,,OMZ, +OMZ:SP:20018,1,"PLAPPEVILLE",49.130544,6.124422,0,0,OMZ:SA:10171,Europe/Paris,,OMZ, +OMZ:SP:20019,1,"PLACE D'ARMES",49.119991,6.175829,0,0,OMZ:SA:10003,Europe/Paris,,OMZ, +OMZ:SP:20020,1,"PLACE D'ARMES",49.119538,6.175495,0,0,OMZ:SA:10003,Europe/Paris,,OMZ, +OMZ:SP:20024,1,"SQUARE DU LUXEMBOURG",49.12131,6.168103,0,0,OMZ:SA:10007,Europe/Paris,,OMZ, +OMZ:SP:20025,1,"ST-NICOLAS",49.11297,6.177281,0,0,OMZ:SA:10008,Europe/Paris,,OMZ, +OMZ:SP:20026,1,"LAFAYETTE",49.10808,6.17297,0,0,OMZ:SA:10009,Europe/Paris,,OMZ, +OMZ:SP:20027,1,"LAFAYETTE",49.10774,6.17283,0,0,OMZ:SA:10009,Europe/Paris,,OMZ, +OMZ:SP:20028,1,"BON SECOURS",49.107153,6.168661,0,0,OMZ:SA:10010,Europe/Paris,,OMZ, +OMZ:SP:20029,1,"BON SECOURS",49.107041,6.168986,0,0,OMZ:SA:10010,Europe/Paris,,OMZ, +OMZ:SP:20030,1,"CHARLES PETRE",49.105376,6.166618,0,0,OMZ:SA:10011,Europe/Paris,,OMZ, +OMZ:SP:20031,1,"CHARLES PETRE",49.105118,6.166607,0,0,OMZ:SA:10011,Europe/Paris,,OMZ, +OMZ:SP:20032,1,"MANGIN",49.10279,6.164497,0,0,OMZ:SA:10012,Europe/Paris,,OMZ, +OMZ:SP:20033,1,"MANGIN",49.102981,6.164812,0,0,OMZ:SA:10012,Europe/Paris,,OMZ, +OMZ:SP:20034,1,"VAILLANT",49.099734,6.161893,0,0,OMZ:SA:10013,Europe/Paris,,OMZ, +OMZ:SP:20035,1,"VAILLANT",49.100301,6.162633,0,0,OMZ:SA:10013,Europe/Paris,,OMZ, +OMZ:SP:20036,1,"SEMINAIRE",49.097296,6.159947,0,0,OMZ:SA:10014,Europe/Paris,,OMZ, +OMZ:SP:20037,1,"SEMINAIRE",49.097819,6.160639,0,0,OMZ:SA:10014,Europe/Paris,,OMZ, +OMZ:SP:20039,1,"ST-ANDRE",49.096197,6.159156,0,0,OMZ:SA:10015,Europe/Paris,,OMZ, +OMZ:SP:20042,1,"LYAUTEY",49.093867,6.167411,0,0,OMZ:SA:10017,Europe/Paris,,OMZ, +OMZ:SP:20043,1,"LYAUTEY",49.093463,6.168015,0,0,OMZ:SA:10017,Europe/Paris,,OMZ, +OMZ:SP:20044,1,"JERUSALEM",49.091913,6.167229,0,0,OMZ:SA:10018,Europe/Paris,,OMZ, +OMZ:SP:20045,1,"JERUSALEM",49.091747,6.167272,0,0,OMZ:SA:10018,Europe/Paris,,OMZ, +OMZ:SP:20046,1,"COLSON",49.089859,6.166111,0,0,OMZ:SA:10019,Europe/Paris,,OMZ, +OMZ:SP:20047,1,"COLSON",49.090385,6.166508,0,0,OMZ:SA:10019,Europe/Paris,,OMZ, +OMZ:SP:20048,1,"VACONS",49.087508,6.164527,0,0,OMZ:SA:10020,Europe/Paris,,OMZ, +OMZ:SP:20049,1,"VACONS",49.087429,6.1643,0,0,OMZ:SA:10020,Europe/Paris,,OMZ, +OMZ:SP:20050,1,"MARGUERITE",49.088519,6.159345,0,0,OMZ:SA:10021,Europe/Paris,,OMZ, +OMZ:SP:20051,1,"MARGUERITE",49.088249,6.159647,0,0,OMZ:SA:10021,Europe/Paris,,OMZ, +OMZ:SP:20052,1,"VOLONTAIRES",49.086598,6.156631,0,0,OMZ:SA:10022,Europe/Paris,,OMZ, +OMZ:SP:20053,1,"VOLONTAIRES",49.086516,6.156709,0,0,OMZ:SA:10022,Europe/Paris,,OMZ, +OMZ:SP:20054,1,"MONTIGNY ST-PRIVAT",49.084679,6.154756,0,0,OMZ:SA:10023,Europe/Paris,,OMZ, +OMZ:SP:20060,1,"ST-NICOLAS",49.112211,6.178573,0,0,OMZ:SA:10008,Europe/Paris,,OMZ, +OMZ:SP:20063,1,"SERRET",49.109933,6.099509,0,0,OMZ:SA:10030,Europe/Paris,,OMZ, +OMZ:SP:20064,1,"SERRET",49.109953,6.099902,0,0,OMZ:SA:10030,Europe/Paris,,OMZ, +OMZ:SP:20065,1,"ST-JEAN",49.107987,6.104914,0,0,OMZ:SA:10031,Europe/Paris,,OMZ, +OMZ:SP:20066,1,"ST-JEAN",49.107874,6.10563,0,0,OMZ:SA:10031,Europe/Paris,,OMZ, +OMZ:SP:20067,1,"MAGNY-AU-BOIS",49.075431,6.19535,0,0,OMZ:SA:10032,Europe/Paris,,OMZ, +OMZ:SP:20068,1,"LE PATIS",49.15625,6.140045,0,0,OMZ:SA:10067,Europe/Paris,,OMZ, +OMZ:SP:20069,1,"LIBERTE",49.107626,6.116943,0,0,OMZ:SA:10033,Europe/Paris,,OMZ, +OMZ:SP:20070,1,"LIBERTE",49.107329,6.116123,0,0,OMZ:SA:10033,Europe/Paris,,OMZ, +OMZ:SP:20071,1,"MOULINS",49.105465,6.110442,0,0,OMZ:SA:10034,Europe/Paris,,OMZ, +OMZ:SP:20072,1,"MOULINS",49.106365,6.111226,0,0,OMZ:SA:10034,Europe/Paris,,OMZ, +OMZ:SP:20073,1,"MOULINS",49.106518,6.11127,0,0,OMZ:SA:10034,Europe/Paris,,OMZ, +OMZ:SP:20075,1,"DAGA",49.136612,6.155832,0,0,OMZ:SA:10050,Europe/Paris,,OMZ, +OMZ:SP:20076,1,"PREVILLE",49.102093,6.104476,0,0,OMZ:SA:10036,Europe/Paris,,OMZ, +OMZ:SP:20077,1,"ARDECHE",49.101008,6.106688,0,0,OMZ:SA:10037,Europe/Paris,,OMZ, +OMZ:SP:20078,1,"ARDECHE",49.101443,6.106323,0,0,OMZ:SA:10037,Europe/Paris,,OMZ, +OMZ:SP:20080,1,"LORRAINE",49.102676,6.10923,0,0,OMZ:SA:10038,Europe/Paris,,OMZ, +OMZ:SP:20081,1,"SCY BAS",49.108537,6.12199,0,0,OMZ:SA:10039,Europe/Paris,,OMZ, +OMZ:SP:20082,1,"SCY BAS",49.108351,6.120437,0,0,OMZ:SA:10039,Europe/Paris,,OMZ, +OMZ:SP:20083,1,"LECLERC",49.110828,6.129677,0,0,OMZ:SA:10040,Europe/Paris,,OMZ, +OMZ:SP:20084,1,"LECLERC",49.111013,6.130629,0,0,OMZ:SA:10040,Europe/Paris,,OMZ, +OMZ:SP:20085,1,"LONGEVILLE",49.112734,6.135214,0,0,OMZ:SA:10041,Europe/Paris,,OMZ, +OMZ:SP:20086,1,"LONGEVILLE",49.112335,6.134383,0,0,OMZ:SA:10041,Europe/Paris,,OMZ, +OMZ:SP:20087,1,"MIGETTE",49.114024,6.138556,0,0,OMZ:SA:10042,Europe/Paris,,OMZ, +OMZ:SP:20088,1,"MIGETTE",49.11407,6.139107,0,0,OMZ:SA:10042,Europe/Paris,,OMZ, +OMZ:SP:20089,1,"CASINO",49.116611,6.141301,0,0,OMZ:SA:10043,Europe/Paris,,OMZ, +OMZ:SP:20090,1,"CASINO",49.116421,6.141448,0,0,OMZ:SA:10043,Europe/Paris,,OMZ, +OMZ:SP:20091,1,"PONT DE VERDUN",49.119105,6.143872,0,0,OMZ:SA:10044,Europe/Paris,,OMZ, +OMZ:SP:20092,1,"PONT DE VERDUN",49.119034,6.144262,0,0,OMZ:SA:10044,Europe/Paris,,OMZ, +OMZ:SP:20093,1,"FOCH",49.120605,6.147488,0,0,OMZ:SA:10045,Europe/Paris,,OMZ, +OMZ:SP:20094,1,"FOCH",49.120773,6.148538,0,0,OMZ:SA:10045,Europe/Paris,,OMZ, +OMZ:SP:20095,1,"ST-MARTIN",49.121739,6.151237,0,0,OMZ:SA:10046,Europe/Paris,,OMZ, +OMZ:SP:20096,1,"ST-MARTIN",49.121498,6.150858,0,0,OMZ:SA:10046,Europe/Paris,,OMZ, +OMZ:SP:20097,1,"TIGNOMONT",49.125884,6.159294,0,0,OMZ:SA:10047,Europe/Paris,,OMZ, +OMZ:SP:20098,1,"TIGNOMONT",49.126206,6.159475,0,0,OMZ:SA:10047,Europe/Paris,,OMZ, +OMZ:SP:20099,1,"FORT MOSELLE",49.124075,6.165021,0,0,OMZ:SA:10048,Europe/Paris,,OMZ, +OMZ:SP:20100,1,"FORT MOSELLE",49.124845,6.164707,0,0,OMZ:SA:10048,Europe/Paris,,OMZ, +OMZ:SP:20103,1,"DEUX FONTAINES",49.148186,6.171778,0,0,OMZ:SA:10081,Europe/Paris,,OMZ, +OMZ:SP:20104,1,"MOULINS MAIRIE",49.106999,6.106378,0,0,OMZ:SA:10082,Europe/Paris,,OMZ, +OMZ:SP:20106,1,"CLETTE",49.133269,6.133859,0,0,OMZ:SA:10230,Europe/Paris,,OMZ, +OMZ:SP:20107,1,"ST-JACQUES",49.118268,6.176644,0,0,OMZ:SA:10052,Europe/Paris,,OMZ, +OMZ:SP:20110,1,"ROI GEORGE",49.111132,6.171995,0,0,OMZ:SA:10671,Europe/Paris,,OMZ, +OMZ:SP:20111,1,"ROI GEORGE",49.111281,6.172136,0,0,OMZ:SA:10671,Europe/Paris,,OMZ, +OMZ:SP:20112,1,"DEMBOUR",49.106519,6.17921,0,0,OMZ:SA:10055,Europe/Paris,,OMZ, +OMZ:SP:20113,1,"DEMBOUR",49.106203,6.179397,0,0,OMZ:SA:10055,Europe/Paris,,OMZ, +OMZ:SP:20116,1,"PIERNE",49.102553,6.179745,0,0,OMZ:SA:10057,Europe/Paris,,OMZ, +OMZ:SP:20117,1,"PIERNE",49.102273,6.179878,0,0,OMZ:SA:10057,Europe/Paris,,OMZ, +OMZ:SP:20118,1,"LOTHAIRE",49.09957,6.180289,0,0,OMZ:SA:10058,Europe/Paris,,OMZ, +OMZ:SP:20119,1,"LOTHAIRE",49.099278,6.180501,0,0,OMZ:SA:10058,Europe/Paris,,OMZ, +OMZ:SP:20120,1,"VANDERNOOT",49.095549,6.180628,0,0,OMZ:SA:10059,Europe/Paris,,OMZ, +OMZ:SP:20121,1,"VANDERNOOT",49.095755,6.180724,0,0,OMZ:SA:10059,Europe/Paris,,OMZ, +OMZ:SP:20122,1,"BOUCHOTTE",49.092488,6.181196,0,0,OMZ:SA:10060,Europe/Paris,,OMZ, +OMZ:SP:20123,1,"BOUCHOTTE",49.092612,6.181337,0,0,OMZ:SA:10060,Europe/Paris,,OMZ, +OMZ:SP:20124,1,"FRECOT",49.091349,6.181371,0,0,OMZ:SA:10061,Europe/Paris,,OMZ, +OMZ:SP:20125,1,"FRECOT",49.090629,6.181719,0,0,OMZ:SA:10061,Europe/Paris,,OMZ, +OMZ:SP:20128,1,"FAUBOURG",49.085398,6.182696,0,0,OMZ:SA:10063,Europe/Paris,,OMZ, +OMZ:SP:20129,1,"FAUBOURG",49.085052,6.182626,0,0,OMZ:SA:10063,Europe/Paris,,OMZ, +OMZ:SP:20130,1,"APREMONT",49.079329,6.187963,0,0,OMZ:SA:10064,Europe/Paris,,OMZ, +OMZ:SP:20131,1,"APREMONT",49.08029,6.187103,0,0,OMZ:SA:10064,Europe/Paris,,OMZ, +OMZ:SP:20132,1,"LA PLAINE",49.078722,6.189621,0,0,OMZ:SA:10065,Europe/Paris,,OMZ, +OMZ:SP:20133,1,"LA PLAINE",49.078761,6.18982,0,0,OMZ:SA:10065,Europe/Paris,,OMZ, +OMZ:SP:20134,1,"ROOSEVELT",49.077088,6.193902,0,0,OMZ:SA:10066,Europe/Paris,,OMZ, +OMZ:SP:20135,1,"ROOSEVELT",49.077317,6.193746,0,0,OMZ:SA:10066,Europe/Paris,,OMZ, +OMZ:SP:20136,1,"TIGNOMONT",49.127531,6.16001,0,0,OMZ:SA:10047,Europe/Paris,,OMZ, +OMZ:SP:20137,1,"MEY LES VIGNES",49.133892,6.237556,0,0,OMZ:SA:10252,Europe/Paris,,OMZ, +OMZ:SP:20138,1,"OBELLIANE",49.076163,6.192663,0,0,OMZ:SA:10068,Europe/Paris,,OMZ, +OMZ:SP:20139,1,"OBELLIANE",49.075987,6.192814,0,0,OMZ:SA:10068,Europe/Paris,,OMZ, +OMZ:SP:20140,1,"ARMOISIERES",49.077312,6.189445,0,0,OMZ:SA:10069,Europe/Paris,,OMZ, +OMZ:SP:20141,1,"ARMOISIERES",49.077139,6.189865,0,0,OMZ:SA:10069,Europe/Paris,,OMZ, +OMZ:SP:20142,1,"BEAUSOLEIL",49.075723,6.186822,0,0,OMZ:SA:10070,Europe/Paris,,OMZ, +OMZ:SP:20143,1,"BEAUSOLEIL",49.075796,6.18719,0,0,OMZ:SA:10070,Europe/Paris,,OMZ, +OMZ:SP:20144,1,"HAUTS-DE-MAGNY",49.074047,6.190765,0,0,OMZ:SA:10071,Europe/Paris,,OMZ, +OMZ:SP:20145,1,"HAUTS-DE-MAGNY",49.074146,6.190783,0,0,OMZ:SA:10071,Europe/Paris,,OMZ, +OMZ:SP:20147,1,"FRANCOIS ARAGO",49.100696,6.221001,0,0,OMZ:SA:10688,Europe/Paris,,OMZ, +OMZ:SP:20148,1,"MAGNY-AU-BOIS",49.075172,6.195029,0,0,OMZ:SA:10032,Europe/Paris,,OMZ, +OMZ:SP:20150,1,"AUBEPINE",49.072259,6.193105,0,0,OMZ:SA:10073,Europe/Paris,,OMZ, +OMZ:SP:20151,1,"VALERIANE",49.070881,6.18879,0,0,OMZ:SA:10074,Europe/Paris,,OMZ, +OMZ:SP:20152,1,"VALERIANE",49.071002,6.192665,0,0,OMZ:SA:10074,Europe/Paris,,OMZ, +OMZ:SP:20153,1,"ROSEAUX",49.071234,6.186713,0,0,OMZ:SA:10075,Europe/Paris,,OMZ, +OMZ:SP:20154,1,"ROSEAUX",49.071289,6.18571,0,0,OMZ:SA:10075,Europe/Paris,,OMZ, +OMZ:SP:20155,1,"ACACIAS",49.073202,6.184489,0,0,OMZ:SA:10076,Europe/Paris,,OMZ, +OMZ:SP:20156,1,"ACACIAS",49.073447,6.184585,0,0,OMZ:SA:10076,Europe/Paris,,OMZ, +OMZ:SP:20157,1,"PETIT CLOU",49.07477,6.184236,0,0,OMZ:SA:10077,Europe/Paris,,OMZ, +OMZ:SP:20158,1,"PETIT CLOU",49.076555,6.184082,0,0,OMZ:SA:10077,Europe/Paris,,OMZ, +OMZ:SP:20159,1,"ST-ROCH",49.078376,6.183774,0,0,OMZ:SA:10078,Europe/Paris,,OMZ, +OMZ:SP:20160,1,"ST-ROCH",49.079101,6.184166,0,0,OMZ:SA:10078,Europe/Paris,,OMZ, +OMZ:SP:20161,1,"MORLOT",49.141066,6.150739,0,0,OMZ:SA:10079,Europe/Paris,,OMZ, +OMZ:SP:20162,1,"MORLOT",49.141094,6.150243,0,0,OMZ:SA:10079,Europe/Paris,,OMZ, +OMZ:SP:20163,1,"QUATRE BORNES",49.139201,6.153432,0,0,OMZ:SA:10080,Europe/Paris,,OMZ, +OMZ:SP:20164,1,"QUATRE BORNES",49.139406,6.153482,0,0,OMZ:SA:10080,Europe/Paris,,OMZ, +OMZ:SP:20165,1,"COMEDIE",49.12096,6.172025,0,0,OMZ:SA:10072,Europe/Paris,,OMZ, +OMZ:SP:20167,1,"INTENDANTS JOBA",49.141433,6.165285,0,0,OMZ:SA:10324,Europe/Paris,,OMZ, +OMZ:SP:20169,1,"ST-JULIEN FORT",49.141353,6.206686,0,0,OMZ:SA:10343,Europe/Paris,,OMZ, +OMZ:SP:20170,1,"CARRIERES",49.13008,6.209024,0,0,OMZ:SA:10317,Europe/Paris,,OMZ, +OMZ:SP:20171,1,"DAGA",49.136468,6.156072,0,0,OMZ:SA:10050,Europe/Paris,,OMZ, +OMZ:SP:20172,1,"PAQUET",49.135036,6.156721,0,0,OMZ:SA:10083,Europe/Paris,,OMZ, +OMZ:SP:20173,1,"PAQUET",49.135095,6.15679,0,0,OMZ:SA:10083,Europe/Paris,,OMZ, +OMZ:SP:20174,1,"PATROTTE",49.134585,6.161236,0,0,OMZ:SA:10084,Europe/Paris,,OMZ, +OMZ:SP:20175,1,"PATROTTE",49.135189,6.160736,0,0,OMZ:SA:10084,Europe/Paris,,OMZ, +OMZ:SP:20181,1,"DALES",49.132861,6.165017,0,0,OMZ:SA:10087,Europe/Paris,,OMZ, +OMZ:SP:20188,1,"PONTIFFROY",49.127256,6.176198,0,0,OMZ:SA:10090,Europe/Paris,,OMZ, +OMZ:SP:20189,1,"PONTIFFROY",49.127513,6.174827,0,0,OMZ:SA:10090,Europe/Paris,,OMZ, +OMZ:SP:20192,1,"RIMPORT",49.124126,6.181019,0,0,OMZ:SA:10091,Europe/Paris,,OMZ, +OMZ:SP:20193,1,"RIMPORT",49.12442,6.182156,0,0,OMZ:SA:10091,Europe/Paris,,OMZ, +OMZ:SP:20194,1,"ST-GEORGES",49.122724,6.178301,0,0,OMZ:SA:10092,Europe/Paris,,OMZ, +OMZ:SP:20195,1,"ST-GEORGES",49.122428,6.17803,0,0,OMZ:SA:10092,Europe/Paris,,OMZ, +OMZ:SP:20196,1,"ARENES",49.105895,6.173556,0,0,OMZ:SA:10093,Europe/Paris,,OMZ, +OMZ:SP:20197,1,"ARENES",49.106035,6.173556,0,0,OMZ:SA:10093,Europe/Paris,,OMZ, +OMZ:SP:20198,1,"BOILVIN",49.103435,6.174783,0,0,OMZ:SA:10094,Europe/Paris,,OMZ, +OMZ:SP:20199,1,"BOILVIN",49.103217,6.174654,0,0,OMZ:SA:10094,Europe/Paris,,OMZ, +OMZ:SP:20200,1,"ST-LIVIER",49.101246,6.174749,0,0,OMZ:SA:10095,Europe/Paris,,OMZ, +OMZ:SP:20203,1,"EGLISE",49.09846,6.172271,0,0,OMZ:SA:10098,Europe/Paris,,OMZ, +OMZ:SP:20204,1,"EGLISE",49.099052,6.173756,0,0,OMZ:SA:10098,Europe/Paris,,OMZ, +OMZ:SP:20205,1,"LAVOIR",49.097018,6.174891,0,0,OMZ:SA:10099,Europe/Paris,,OMZ, +OMZ:SP:20206,1,"LAVOIR",49.097251,6.174771,0,0,OMZ:SA:10099,Europe/Paris,,OMZ, +OMZ:SP:20209,1,"QUATRE VENTS",49.094444,6.176016,0,0,OMZ:SA:10101,Europe/Paris,,OMZ, +OMZ:SP:20210,1,"QUATRE VENTS",49.094442,6.176213,0,0,OMZ:SA:10101,Europe/Paris,,OMZ, +OMZ:SP:20211,1,"LA HORGNE",49.093299,6.172565,0,0,OMZ:SA:10102,Europe/Paris,,OMZ, +OMZ:SP:20212,1,"LA HORGNE",49.092954,6.172783,0,0,OMZ:SA:10102,Europe/Paris,,OMZ, +OMZ:SP:20221,1,"SABLIERES",49.086285,6.163121,0,0,OMZ:SA:10107,Europe/Paris,,OMZ, +OMZ:SP:20222,1,"SABLIERES",49.08643,6.163806,0,0,OMZ:SA:10107,Europe/Paris,,OMZ, +OMZ:SP:20223,1,"CUGNOT",49.085555,6.163519,0,0,OMZ:SA:10108,Europe/Paris,,OMZ, +OMZ:SP:20239,1,"FONTAINES",49.14641,6.171613,0,0,OMZ:SA:10115,Europe/Paris,,OMZ, +OMZ:SP:20240,1,"FONTAINES",49.146559,6.171951,0,0,OMZ:SA:10115,Europe/Paris,,OMZ, +OMZ:SP:20241,1,"DE CHARDIN",49.144518,6.17181,0,0,OMZ:SA:10116,Europe/Paris,,OMZ, +OMZ:SP:20242,1,"DE CHARDIN",49.143952,6.172245,0,0,OMZ:SA:10116,Europe/Paris,,OMZ, +OMZ:SP:20246,1,"BOILEAU",49.142906,6.168727,0,0,OMZ:SA:10120,Europe/Paris,,OMZ, +OMZ:SP:20247,1,"BOILEAU",49.142901,6.169416,0,0,OMZ:SA:10120,Europe/Paris,,OMZ, +OMZ:SP:20249,1,"CONSTANTINE",49.092155,6.125161,0,0,OMZ:SA:10121,Europe/Paris,,OMZ, +OMZ:SP:20252,1,"SAVOIE",49.096073,6.127213,0,0,OMZ:SA:10124,Europe/Paris,,OMZ, +OMZ:SP:20253,1,"ALSACE",49.097851,6.129572,0,0,OMZ:SA:10125,Europe/Paris,,OMZ, +OMZ:SP:20254,1,"ALSACE",49.097586,6.129162,0,0,OMZ:SA:10125,Europe/Paris,,OMZ, +OMZ:SP:20255,1,"SAVOIE",49.09608,6.127482,0,0,OMZ:SA:10124,Europe/Paris,,OMZ, +OMZ:SP:20256,1,"HAUT-RHELE",49.099102,6.132342,0,0,OMZ:SA:10126,Europe/Paris,,OMZ, +OMZ:SP:20257,1,"HAUT-RHELE",49.099033,6.13236,0,0,OMZ:SA:10126,Europe/Paris,,OMZ, +OMZ:SP:20258,1,"8 MAI 1945",49.099941,6.138384,0,0,OMZ:SA:10127,Europe/Paris,,OMZ, +OMZ:SP:20259,1,"8 MAI 1945",49.099762,6.138629,0,0,OMZ:SA:10127,Europe/Paris,,OMZ, +OMZ:SP:20260,1,"LES FRICHES",49.100099,6.141933,0,0,OMZ:SA:10128,Europe/Paris,,OMZ, +OMZ:SP:20261,1,"LES FRICHES",49.099933,6.141901,0,0,OMZ:SA:10128,Europe/Paris,,OMZ, +OMZ:SP:20263,1,"ST-QUENTIN",49.097305,6.144397,0,0,OMZ:SA:10129,Europe/Paris,,OMZ, +OMZ:SP:20264,1,"ST-QUENTIN",49.097133,6.143214,0,0,OMZ:SA:10129,Europe/Paris,,OMZ, +OMZ:SP:20265,1,"VOSGES",49.093101,6.130913,0,0,OMZ:SA:10130,Europe/Paris,,OMZ, +OMZ:SP:20266,1,"VOSGES",49.093487,6.132556,0,0,OMZ:SA:10130,Europe/Paris,,OMZ, +OMZ:SP:20267,1,"ALGER",49.094319,6.13477,0,0,OMZ:SA:10131,Europe/Paris,,OMZ, +OMZ:SP:20268,1,"ALGER",49.094357,6.135257,0,0,OMZ:SA:10131,Europe/Paris,,OMZ, +OMZ:SP:20269,1,"TOURAINE",49.095159,6.137307,0,0,OMZ:SA:10132,Europe/Paris,,OMZ, +OMZ:SP:20270,1,"TOURAINE",49.095512,6.138724,0,0,OMZ:SA:10132,Europe/Paris,,OMZ, +OMZ:SP:20271,1,"TOURNEBRIDE",49.086098,6.112645,0,0,OMZ:SA:10133,Europe/Paris,,OMZ, +OMZ:SP:20272,1,"ROTONDE",49.087279,6.117113,0,0,OMZ:SA:10134,Europe/Paris,,OMZ, +OMZ:SP:20273,1,"ROTONDE",49.087741,6.11829,0,0,OMZ:SA:10134,Europe/Paris,,OMZ, +OMZ:SP:20274,1,"LOTISSEMENT INDUSTRIEL",49.089649,6.124102,0,0,OMZ:SA:10135,Europe/Paris,,OMZ, +OMZ:SP:20275,1,"LOTISSEMENT INDUSTRIEL",49.089491,6.124281,0,0,OMZ:SA:10135,Europe/Paris,,OMZ, +OMZ:SP:20276,1,"CITE SNCF",49.090607,6.127315,0,0,OMZ:SA:10136,Europe/Paris,,OMZ, +OMZ:SP:20277,1,"CITE SNCF",49.09067,6.128154,0,0,OMZ:SA:10136,Europe/Paris,,OMZ, +OMZ:SP:20278,1,"ST-VICTOR",49.097991,6.146249,0,0,OMZ:SA:10137,Europe/Paris,,OMZ, +OMZ:SP:20279,1,"ST-VICTOR",49.098273,6.147471,0,0,OMZ:SA:10137,Europe/Paris,,OMZ, +OMZ:SP:20280,1,"LITALDUS-HOTEL DE VILLE",49.099475,6.151035,0,0,OMZ:SA:10138,Europe/Paris,,OMZ, +OMZ:SP:20281,1,"LITALDUS-HOTEL DE VILLE",49.099935,6.152666,0,0,OMZ:SA:10138,Europe/Paris,,OMZ, +OMZ:SP:20282,1,"NATION",49.101335,6.154605,0,0,OMZ:SA:10139,Europe/Paris,,OMZ, +OMZ:SP:20283,1,"NATION",49.101279,6.154658,0,0,OMZ:SA:10139,Europe/Paris,,OMZ, +OMZ:SP:20284,1,"EUROPA COURCELLES",49.102123,6.158735,0,0,OMZ:SA:10140,Europe/Paris,,OMZ, +OMZ:SP:20285,1,"EUROPA COURCELLES",49.101873,6.158445,0,0,OMZ:SA:10140,Europe/Paris,,OMZ, +OMZ:SP:20286,1,"BOTANIQUE",49.103736,6.162055,0,0,OMZ:SA:10141,Europe/Paris,,OMZ, +OMZ:SP:20287,1,"BOTANIQUE",49.103928,6.162672,0,0,OMZ:SA:10141,Europe/Paris,,OMZ, +OMZ:SP:20288,1,"GENIE",49.106469,6.164285,0,0,OMZ:SA:10142,Europe/Paris,,OMZ, +OMZ:SP:20289,1,"GENIE",49.105477,6.163709,0,0,OMZ:SA:10142,Europe/Paris,,OMZ, +OMZ:SP:20290,1,"VERLAINE",49.109523,6.166817,0,0,OMZ:SA:10143,Europe/Paris,,OMZ, +OMZ:SP:20291,1,"VERLAINE",49.10818,6.167951,0,0,OMZ:SA:10143,Europe/Paris,,OMZ, +OMZ:SP:20294,1,"SEILLE",49.111299,6.186052,0,0,OMZ:SA:10674,Europe/Paris,,OMZ, +OMZ:SP:20295,1,"SEILLE",49.111468,6.186143,0,0,OMZ:SA:10674,Europe/Paris,,OMZ, +OMZ:SP:20306,1,"PROVENCE",49.112996,6.215892,0,0,OMZ:SA:10679,Europe/Paris,,OMZ, +OMZ:SP:20307,1,"PROVENCE",49.112216,6.215858,0,0,OMZ:SA:10679,Europe/Paris,,OMZ, +OMZ:SP:20310,1,"LES BORDES",49.11455,6.221373,0,0,OMZ:SA:10152,Europe/Paris,,OMZ, +OMZ:SP:20311,1,"LES BORDES",49.114235,6.222056,0,0,OMZ:SA:10152,Europe/Paris,,OMZ, +OMZ:SP:20318,1,"NONNETIERS",49.114735,6.23563,0,0,OMZ:SA:10156,Europe/Paris,,OMZ, +OMZ:SP:20319,1,"NONNETIERS",49.114687,6.237015,0,0,OMZ:SA:10156,Europe/Paris,,OMZ, +OMZ:SP:20322,1,"SERRURIERS",49.118251,6.240068,0,0,OMZ:SA:10158,Europe/Paris,,OMZ, +OMZ:SP:20324,1,"POTIERS D'ETAIN",49.115608,6.243734,0,0,OMZ:SA:10159,Europe/Paris,,OMZ, +OMZ:SP:20329,1,"CONSTANTINE",49.092004,6.125538,0,0,OMZ:SA:10121,Europe/Paris,,OMZ, +OMZ:SP:20330,1,"ROI GEORGE",49.110361,6.170707,0,0,OMZ:SA:10671,Europe/Paris,,OMZ, +OMZ:SP:20331,1,"ROI GEORGE",49.110445,6.169078,0,0,OMZ:SA:10671,Europe/Paris,,OMZ, +OMZ:SP:20334,1,"HESTAUX",49.100914,6.191513,0,0,OMZ:SA:10163,Europe/Paris,,OMZ, +OMZ:SP:20336,1,"GOUSSEL",49.101488,6.195573,0,0,OMZ:SA:10164,Europe/Paris,,OMZ, +OMZ:SP:20337,1,"CLAUDEL",49.101626,6.198827,0,0,OMZ:SA:10165,Europe/Paris,,OMZ, +OMZ:SP:20338,1,"OBERLING",49.10188,6.203653,0,0,OMZ:SA:10166,Europe/Paris,,OMZ, +OMZ:SP:20339,1,"OBERLING",49.103234,6.2028,0,0,OMZ:SA:10166,Europe/Paris,,OMZ, +OMZ:SP:20340,1,"GENDARMERIE",49.104579,6.199729,0,0,OMZ:SA:10167,Europe/Paris,,OMZ, +OMZ:SP:20341,1,"GENDARMERIE",49.104741,6.199533,0,0,OMZ:SA:10167,Europe/Paris,,OMZ, +OMZ:SP:20342,1,"ST-MAXIMIN",49.105649,6.196698,0,0,OMZ:SA:10168,Europe/Paris,,OMZ, +OMZ:SP:20343,1,"ST-MAXIMIN",49.105825,6.196758,0,0,OMZ:SA:10168,Europe/Paris,,OMZ, +OMZ:SP:20344,1,"PUYMAIGRE",49.107066,6.194766,0,0,OMZ:SA:10169,Europe/Paris,,OMZ, +OMZ:SP:20346,1,"TREIZE",49.110119,6.189559,0,0,OMZ:SA:10170,Europe/Paris,,OMZ, +OMZ:SP:20349,1,"MAZELLE",49.114821,6.184905,0,0,OMZ:SA:10172,Europe/Paris,,OMZ, +OMZ:SP:20358,1,"PALAIS SPORTS",49.111023,6.161439,0,0,OMZ:SA:10176,Europe/Paris,,OMZ, +OMZ:SP:20359,1,"PALAIS SPORTS",49.111258,6.161258,0,0,OMZ:SA:10176,Europe/Paris,,OMZ, +OMZ:SP:20360,1,"VILLAS",49.112663,6.157677,0,0,OMZ:SA:10177,Europe/Paris,,OMZ, +OMZ:SP:20361,1,"VILLAS",49.112664,6.157947,0,0,OMZ:SA:10177,Europe/Paris,,OMZ, +OMZ:SP:20362,1,"PEPINIERES",49.114005,6.15485,0,0,OMZ:SA:10178,Europe/Paris,,OMZ, +OMZ:SP:20363,1,"PEPINIERES",49.114318,6.154543,0,0,OMZ:SA:10178,Europe/Paris,,OMZ, +OMZ:SP:20364,1,"BEAU RIVAGE",49.115903,6.15083,0,0,OMZ:SA:10179,Europe/Paris,,OMZ, +OMZ:SP:20365,1,"BEAU RIVAGE",49.115946,6.150981,0,0,OMZ:SA:10179,Europe/Paris,,OMZ, +OMZ:SP:20366,1,"SIGISBERT",49.122201,6.14891,0,0,OMZ:SA:10180,Europe/Paris,,OMZ, +OMZ:SP:20367,1,"SIGISBERT",49.122495,6.148806,0,0,OMZ:SA:10180,Europe/Paris,,OMZ, +OMZ:SP:20368,1,"LARDEMELLE",49.12381,6.14935,0,0,OMZ:SA:10181,Europe/Paris,,OMZ, +OMZ:SP:20369,1,"LARDEMELLE",49.124068,6.150026,0,0,OMZ:SA:10181,Europe/Paris,,OMZ, +OMZ:SP:20370,1,"VICTOIRE",49.125158,6.153212,0,0,OMZ:SA:10182,Europe/Paris,,OMZ, +OMZ:SP:20371,1,"VICTOIRE",49.124951,6.153146,0,0,OMZ:SA:10182,Europe/Paris,,OMZ, +OMZ:SP:20372,1,"MARNE",49.126738,6.153943,0,0,OMZ:SA:10183,Europe/Paris,,OMZ, +OMZ:SP:20373,1,"MARNE",49.126762,6.154139,0,0,OMZ:SA:10183,Europe/Paris,,OMZ, +OMZ:SP:20374,1,"ST-SIMON",49.127661,6.151916,0,0,OMZ:SA:10184,Europe/Paris,,OMZ, +OMZ:SP:20375,1,"ST-SIMON",49.12763,6.152168,0,0,OMZ:SA:10184,Europe/Paris,,OMZ, +OMZ:SP:20376,1,"TORTUE",49.128288,6.148186,0,0,OMZ:SA:10185,Europe/Paris,,OMZ, +OMZ:SP:20377,1,"TORTUE",49.128386,6.148448,0,0,OMZ:SA:10185,Europe/Paris,,OMZ, +OMZ:SP:20378,1,"CASTORS",49.128357,6.145873,0,0,OMZ:SA:10186,Europe/Paris,,OMZ, +OMZ:SP:20379,1,"CASTORS",49.128481,6.14578,0,0,OMZ:SA:10186,Europe/Paris,,OMZ, +OMZ:SP:20380,1,"FELIX MARECHAL",49.130181,6.138578,0,0,OMZ:SA:10187,Europe/Paris,,OMZ, +OMZ:SP:20382,1,"LES VIGNES",49.128856,6.145152,0,0,OMZ:SA:10188,Europe/Paris,,OMZ, +OMZ:SP:20383,1,"LES VIGNES",49.129115,6.145212,0,0,OMZ:SA:10188,Europe/Paris,,OMZ, +OMZ:SP:20384,1,"MIRABELLES",49.1313,6.145831,0,0,OMZ:SA:10189,Europe/Paris,,OMZ, +OMZ:SP:20385,1,"MIRABELLES",49.131201,6.145872,0,0,OMZ:SA:10189,Europe/Paris,,OMZ, +OMZ:SP:20386,1,"LA BUTTE",49.132891,6.147007,0,0,OMZ:SA:10190,Europe/Paris,,OMZ, +OMZ:SP:20387,1,"LA BUTTE",49.133194,6.147402,0,0,OMZ:SA:10190,Europe/Paris,,OMZ, +OMZ:SP:20389,1,"DUPLOYE",49.109411,6.189032,0,0,OMZ:SA:10192,Europe/Paris,,OMZ, +OMZ:SP:20390,1,"TROIS EVECHES",49.106289,6.191827,0,0,OMZ:SA:10193,Europe/Paris,,OMZ, +OMZ:SP:20391,1,"DEVILLY",49.10496,6.194459,0,0,OMZ:SA:10194,Europe/Paris,,OMZ, +OMZ:SP:20396,1,"ROI GEORGE",49.109775,6.170285,0,0,OMZ:SA:10671,Europe/Paris,,OMZ, +OMZ:SP:20398,1,"FRIANT",49.10828,6.187721,0,0,OMZ:SA:10199,Europe/Paris,,OMZ, +OMZ:SP:20399,1,"FRIANT",49.108679,6.18772,0,0,OMZ:SA:10199,Europe/Paris,,OMZ, +OMZ:SP:20400,1,"HERMITE",49.105768,6.187311,0,0,OMZ:SA:10200,Europe/Paris,,OMZ, +OMZ:SP:20401,1,"HERMITE",49.105852,6.187463,0,0,OMZ:SA:10200,Europe/Paris,,OMZ, +OMZ:SP:20402,1,"COLLIGNON",49.104451,6.18736,0,0,OMZ:SA:10201,Europe/Paris,,OMZ, +OMZ:SP:20403,1,"COLLIGNON",49.104182,6.187191,0,0,OMZ:SA:10201,Europe/Paris,,OMZ, +OMZ:SP:20404,1,"DUCROCQ",49.101329,6.188334,0,0,OMZ:SA:10202,Europe/Paris,,OMZ, +OMZ:SP:20405,1,"DUCROCQ",49.101871,6.188323,0,0,OMZ:SA:10202,Europe/Paris,,OMZ, +OMZ:SP:20406,1,"TIVOLI",49.099542,6.189834,0,0,OMZ:SA:10203,Europe/Paris,,OMZ, +OMZ:SP:20407,1,"TIVOLI",49.099718,6.189421,0,0,OMZ:SA:10203,Europe/Paris,,OMZ, +OMZ:SP:20408,1,"GRANDMAISON",49.097972,6.194278,0,0,OMZ:SA:10204,Europe/Paris,,OMZ, +OMZ:SP:20409,1,"GRANDMAISON",49.098211,6.194501,0,0,OMZ:SA:10204,Europe/Paris,,OMZ, +OMZ:SP:20410,1,"GIRAUDOUX",49.097204,6.200458,0,0,OMZ:SA:10205,Europe/Paris,,OMZ, +OMZ:SP:20411,1,"GIRAUDOUX",49.097543,6.199679,0,0,OMZ:SA:10205,Europe/Paris,,OMZ, +OMZ:SP:20412,1,"ROEDERER",49.09803,6.202615,0,0,OMZ:SA:10206,Europe/Paris,,OMZ, +OMZ:SP:20413,1,"ROEDERER",49.098638,6.203798,0,0,OMZ:SA:10206,Europe/Paris,,OMZ, +OMZ:SP:20414,1,"GENERAL FRERE",49.1,6.205476,0,0,OMZ:SA:10207,Europe/Paris,,OMZ, +OMZ:SP:20415,1,"GENERAL FRERE",49.100192,6.206181,0,0,OMZ:SA:10207,Europe/Paris,,OMZ, +OMZ:SP:20416,1,"SEULHOTTE",49.101331,6.208305,0,0,OMZ:SA:10208,Europe/Paris,,OMZ, +OMZ:SP:20417,1,"SEULHOTTE",49.101414,6.208648,0,0,OMZ:SA:10208,Europe/Paris,,OMZ, +OMZ:SP:20418,1,"SYMPHONIE",49.104673,6.214215,0,0,OMZ:SA:10209,Europe/Paris,,OMZ, +OMZ:SP:20421,1,"CHAPPE",49.106308,6.221995,0,0,OMZ:SA:10210,Europe/Paris,,OMZ, +OMZ:SP:20434,1,"CUVION",49.09248,6.242702,0,0,OMZ:SA:10217,Europe/Paris,,OMZ, +OMZ:SP:20435,1,"CUVION",49.092385,6.242829,0,0,OMZ:SA:10217,Europe/Paris,,OMZ, +OMZ:SP:20436,1,"DOLICHE",49.094228,6.245647,0,0,OMZ:SA:10218,Europe/Paris,,OMZ, +OMZ:SP:20437,1,"DOLICHE",49.094615,6.246003,0,0,OMZ:SA:10218,Europe/Paris,,OMZ, +OMZ:SP:20438,1,"LA DAME",49.098897,6.2433,0,0,OMZ:SA:10219,Europe/Paris,,OMZ, +OMZ:SP:20439,1,"LA DAME",49.098537,6.244019,0,0,OMZ:SA:10219,Europe/Paris,,OMZ, +OMZ:SP:20440,1,"FALOGNE",49.097961,6.240284,0,0,OMZ:SA:10220,Europe/Paris,,OMZ, +OMZ:SP:20441,1,"FALOGNE",49.098072,6.240245,0,0,OMZ:SA:10220,Europe/Paris,,OMZ, +OMZ:SP:20442,1,"LE LAC",49.096216,6.238373,0,0,OMZ:SA:10221,Europe/Paris,,OMZ, +OMZ:SP:20443,1,"MOMENE",49.129137,6.127592,0,0,OMZ:SA:10222,Europe/Paris,,OMZ, +OMZ:SP:20445,1,"LA CROIX",49.128974,6.130409,0,0,OMZ:SA:10223,Europe/Paris,,OMZ, +OMZ:SP:20447,1,"CROIX D'OREE",49.132377,6.125455,0,0,OMZ:SA:10224,Europe/Paris,,OMZ, +OMZ:SP:20448,1,"STADE",49.131664,6.130795,0,0,OMZ:SA:10225,Europe/Paris,,OMZ, +OMZ:SP:20450,1,"BRION",49.12972,6.13305,0,0,OMZ:SA:10226,Europe/Paris,,OMZ, +OMZ:SP:20451,1,"BRION",49.1298,6.13416,0,0,OMZ:SA:10226,Europe/Paris,,OMZ, +OMZ:SP:20454,1,"PRES ST-JACQUES",49.134329,6.130716,0,0,OMZ:SA:10228,Europe/Paris,,OMZ, +OMZ:SP:20458,1,"FELIX MARECHAL",49.129281,6.137229,0,0,OMZ:SA:10187,Europe/Paris,,OMZ, +OMZ:SP:20459,1,"CLETTE",49.133166,6.133541,0,0,OMZ:SA:10230,Europe/Paris,,OMZ, +OMZ:SP:20460,1,"CAILLOUX",49.134432,6.136231,0,0,OMZ:SA:10231,Europe/Paris,,OMZ, +OMZ:SP:20461,1,"CAILLOUX",49.134777,6.137378,0,0,OMZ:SA:10231,Europe/Paris,,OMZ, +OMZ:SP:20462,1,"ROUSSEL",49.135469,6.139449,0,0,OMZ:SA:10232,Europe/Paris,,OMZ, +OMZ:SP:20463,1,"ROUSSEL",49.13551,6.139901,0,0,OMZ:SA:10232,Europe/Paris,,OMZ, +OMZ:SP:20464,1,"BAUCHEZ",49.1365,6.142755,0,0,OMZ:SA:10233,Europe/Paris,,OMZ, +OMZ:SP:20465,1,"BAUCHEZ",49.136516,6.143053,0,0,OMZ:SA:10233,Europe/Paris,,OMZ, +OMZ:SP:20466,1,"SANSONNET",49.136331,6.147258,0,0,OMZ:SA:10234,Europe/Paris,,OMZ, +OMZ:SP:20467,1,"SANSONNET",49.136522,6.147127,0,0,OMZ:SA:10234,Europe/Paris,,OMZ, +OMZ:SP:20468,1,"BUCHOZ",49.135377,6.14934,0,0,OMZ:SA:10235,Europe/Paris,,OMZ, +OMZ:SP:20469,1,"BUCHOZ",49.135269,6.149745,0,0,OMZ:SA:10235,Europe/Paris,,OMZ, +OMZ:SP:20470,1,"NICOLAS JUNG",49.13365,6.152483,0,0,OMZ:SA:10236,Europe/Paris,,OMZ, +OMZ:SP:20471,1,"NICOLAS JUNG",49.133359,6.153132,0,0,OMZ:SA:10236,Europe/Paris,,OMZ, +OMZ:SP:20472,1,"LE MOYNE",49.131432,6.156283,0,0,OMZ:SA:10237,Europe/Paris,,OMZ, +OMZ:SP:20473,1,"LE MOYNE",49.131298,6.156734,0,0,OMZ:SA:10237,Europe/Paris,,OMZ, +OMZ:SP:20474,1,"COLIBRI",49.130273,6.158385,0,0,OMZ:SA:10238,Europe/Paris,,OMZ, +OMZ:SP:20475,1,"COLIBRI",49.130071,6.158906,0,0,OMZ:SA:10238,Europe/Paris,,OMZ, +OMZ:SP:20480,1,"JUIN",49.118138,6.189829,0,0,OMZ:SA:10241,Europe/Paris,,OMZ, +OMZ:SP:20481,1,"JUIN",49.118393,6.190042,0,0,OMZ:SA:10241,Europe/Paris,,OMZ, +OMZ:SP:20482,1,"RAPHAEL LEVY",49.120011,6.190535,0,0,OMZ:SA:10242,Europe/Paris,,OMZ, +OMZ:SP:20483,1,"RAPHAEL LEVY",49.120307,6.190807,0,0,OMZ:SA:10242,Europe/Paris,,OMZ, +OMZ:SP:20484,1,"ARTILLEURS",49.120309,6.193463,0,0,OMZ:SA:10243,Europe/Paris,,OMZ, +OMZ:SP:20485,1,"ARTILLEURS",49.120142,6.193077,0,0,OMZ:SA:10243,Europe/Paris,,OMZ, +OMZ:SP:20486,1,"BERNE",49.122776,6.193886,0,0,OMZ:SA:10244,Europe/Paris,,OMZ, +OMZ:SP:20487,1,"BERNE",49.122851,6.194142,0,0,OMZ:SA:10244,Europe/Paris,,OMZ, +OMZ:SP:20488,1,"ALSACE-LORRAINE",49.12123,6.195397,0,0,OMZ:SA:10245,Europe/Paris,,OMZ, +OMZ:SP:20489,1,"ALSACE-LORRAINE",49.121446,6.194768,0,0,OMZ:SA:10245,Europe/Paris,,OMZ, +OMZ:SP:20490,1,"STOXEY",49.119173,6.196262,0,0,OMZ:SA:10246,Europe/Paris,,OMZ, +OMZ:SP:20491,1,"STOXEY",49.120076,6.196212,0,0,OMZ:SA:10246,Europe/Paris,,OMZ, +OMZ:SP:20492,1,"PETITES SOEURS",49.119098,6.204376,0,0,OMZ:SA:10247,Europe/Paris,,OMZ, +OMZ:SP:20493,1,"PETITES SOEURS",49.118934,6.204221,0,0,OMZ:SA:10247,Europe/Paris,,OMZ, +OMZ:SP:20494,1,"METMAN",49.120102,6.208867,0,0,OMZ:SA:10248,Europe/Paris,,OMZ, +OMZ:SP:20495,1,"METMAN",49.120055,6.209572,0,0,OMZ:SA:10248,Europe/Paris,,OMZ, +OMZ:SP:20496,1,"MAUJEAN",49.120243,6.214953,0,0,OMZ:SA:10249,Europe/Paris,,OMZ, +OMZ:SP:20497,1,"MAUJEAN",49.120122,6.214525,0,0,OMZ:SA:10249,Europe/Paris,,OMZ, +OMZ:SP:20498,1,"GENIVAUX",49.122143,6.216615,0,0,OMZ:SA:10250,Europe/Paris,,OMZ, +OMZ:SP:20499,1,"GENIVAUX",49.122045,6.21658,0,0,OMZ:SA:10250,Europe/Paris,,OMZ, +OMZ:SP:20500,1,"FOUGERES",49.122636,6.218927,0,0,OMZ:SA:10251,Europe/Paris,,OMZ, +OMZ:SP:20501,1,"FOUGERES",49.121747,6.219027,0,0,OMZ:SA:10251,Europe/Paris,,OMZ, +OMZ:SP:20504,1,"LORIENT",49.122506,6.224808,0,0,OMZ:SA:10253,Europe/Paris,,OMZ, +OMZ:SP:20505,1,"LORIENT",49.122605,6.225379,0,0,OMZ:SA:10253,Europe/Paris,,OMZ, +OMZ:SP:20506,1,"JACINTHES",49.123995,6.225873,0,0,OMZ:SA:10254,Europe/Paris,,OMZ, +OMZ:SP:20507,1,"JACINTHES",49.123898,6.226301,0,0,OMZ:SA:10254,Europe/Paris,,OMZ, +OMZ:SP:20508,1,"OEILLETS",49.125157,6.230597,0,0,OMZ:SA:10255,Europe/Paris,,OMZ, +OMZ:SP:20510,1,"PIVOINES",49.125901,6.227387,0,0,OMZ:SA:10256,Europe/Paris,,OMZ, +OMZ:SP:20512,1,"JURA",49.118411,6.20051,0,0,OMZ:SA:10257,Europe/Paris,,OMZ, +OMZ:SP:20513,1,"JURA",49.118502,6.200633,0,0,OMZ:SA:10257,Europe/Paris,,OMZ, +OMZ:SP:20514,1,"TANNEURS",49.119442,6.181847,0,0,OMZ:SA:10258,Europe/Paris,,OMZ, +OMZ:SP:20516,1,"PARAIGES",49.117189,6.179771,0,0,OMZ:SA:10259,Europe/Paris,,OMZ, +OMZ:SP:20518,1,"TIGNOMONT",49.127595,6.160145,0,0,OMZ:SA:10047,Europe/Paris,,OMZ, +OMZ:SP:20520,1,"FONNY",49.12959,6.235033,0,0,OMZ:SA:10260,Europe/Paris,,OMZ, +OMZ:SP:20521,1,"FONNY",49.1295,6.234914,0,0,OMZ:SA:10260,Europe/Paris,,OMZ, +OMZ:SP:20522,1,"BARBE",49.12963,6.23001,0,0,OMZ:SA:10261,Europe/Paris,,OMZ, +OMZ:SP:20523,1,"BARBE",49.129329,6.229601,0,0,OMZ:SA:10261,Europe/Paris,,OMZ, +OMZ:SP:20524,1,"MY MANGENOT",49.127811,6.22547,0,0,OMZ:SA:10262,Europe/Paris,,OMZ, +OMZ:SP:20525,1,"MY MANGENOT",49.127851,6.225813,0,0,OMZ:SA:10262,Europe/Paris,,OMZ, +OMZ:SP:20526,1,"SAULNOIS",49.126443,6.221837,0,0,OMZ:SA:10263,Europe/Paris,,OMZ, +OMZ:SP:20527,1,"SAULNOIS",49.126457,6.222068,0,0,OMZ:SA:10263,Europe/Paris,,OMZ, +OMZ:SP:20528,1,"JEAN PIERRE JEAN",49.125791,6.217504,0,0,OMZ:SA:10264,Europe/Paris,,OMZ, +OMZ:SP:20529,1,"JEAN PIERRE JEAN",49.125669,6.217188,0,0,OMZ:SA:10264,Europe/Paris,,OMZ, +OMZ:SP:20530,1,"CORCHADE",49.123105,6.215337,0,0,OMZ:SA:10265,Europe/Paris,,OMZ, +OMZ:SP:20531,1,"CORCHADE",49.123155,6.215441,0,0,OMZ:SA:10265,Europe/Paris,,OMZ, +OMZ:SP:20532,1,"JUGAN",49.1225,6.212216,0,0,OMZ:SA:10266,Europe/Paris,,OMZ, +OMZ:SP:20533,1,"JUGAN",49.122294,6.213355,0,0,OMZ:SA:10266,Europe/Paris,,OMZ, +OMZ:SP:20534,1,"JOUSSE",49.123052,6.206278,0,0,OMZ:SA:10267,Europe/Paris,,OMZ, +OMZ:SP:20535,1,"JOUSSE",49.122876,6.206871,0,0,OMZ:SA:10267,Europe/Paris,,OMZ, +OMZ:SP:20536,1,"DUNANT",49.123693,6.203378,0,0,OMZ:SA:10268,Europe/Paris,,OMZ, +OMZ:SP:20537,1,"DUNANT",49.123836,6.2023,0,0,OMZ:SA:10268,Europe/Paris,,OMZ, +OMZ:SP:20538,1,"BILLOTTE",49.125904,6.196706,0,0,OMZ:SA:10269,Europe/Paris,,OMZ, +OMZ:SP:20539,1,"BILLOTTE",49.125468,6.197392,0,0,OMZ:SA:10269,Europe/Paris,,OMZ, +OMZ:SP:20540,1,"TANNERIES",49.127027,6.192853,0,0,OMZ:SA:10270,Europe/Paris,,OMZ, +OMZ:SP:20541,1,"TANNERIES",49.126925,6.193033,0,0,OMZ:SA:10270,Europe/Paris,,OMZ, +OMZ:SP:20542,1,"ARSENAL",49.122889,6.187089,0,0,OMZ:SA:10271,Europe/Paris,,OMZ, +OMZ:SP:20543,1,"ARSENAL",49.122945,6.186773,0,0,OMZ:SA:10271,Europe/Paris,,OMZ, +OMZ:SP:20544,1,"LOGES",49.099098,6.158229,0,0,OMZ:SA:10272,Europe/Paris,,OMZ, +OMZ:SP:20545,1,"LOGES",49.098722,6.159194,0,0,OMZ:SA:10272,Europe/Paris,,OMZ, +OMZ:SP:20546,1,"ST-LADRE",49.096782,6.155238,0,0,OMZ:SA:10273,Europe/Paris,,OMZ, +OMZ:SP:20547,1,"ST-LADRE",49.09703,6.155166,0,0,OMZ:SA:10273,Europe/Paris,,OMZ, +OMZ:SP:20548,1,"MERMOZ",49.094013,6.152037,0,0,OMZ:SA:10274,Europe/Paris,,OMZ, +OMZ:SP:20549,1,"MERMOZ",49.09353,6.151576,0,0,OMZ:SA:10274,Europe/Paris,,OMZ, +OMZ:SP:20552,1,"PONSARD",49.089645,6.147196,0,0,OMZ:SA:10276,Europe/Paris,,OMZ, +OMZ:SP:20553,1,"PONSARD",49.089551,6.147214,0,0,OMZ:SA:10276,Europe/Paris,,OMZ, +OMZ:SP:20554,1,"SIMMINGER",49.090319,6.144903,0,0,OMZ:SA:10277,Europe/Paris,,OMZ, +OMZ:SP:20555,1,"SIMMINGER",49.090114,6.144795,0,0,OMZ:SA:10277,Europe/Paris,,OMZ, +OMZ:SP:20556,1,"COUBERTIN",49.091935,6.144348,0,0,OMZ:SA:10278,Europe/Paris,,OMZ, +OMZ:SP:20558,1,"PEUPLIERS",49.105033,6.21012,0,0,OMZ:SA:10280,Europe/Paris,,OMZ, +OMZ:SP:20559,1,"PEUPLIERS",49.104616,6.208622,0,0,OMZ:SA:10280,Europe/Paris,,OMZ, +OMZ:SP:20560,1,"MARCONI",49.100633,6.217788,0,0,OMZ:SA:10281,Europe/Paris,,OMZ, +OMZ:SP:20561,1,"MARCONI",49.100535,6.217985,0,0,OMZ:SA:10281,Europe/Paris,,OMZ, +OMZ:SP:20564,1,"FRANCOIS ARAGO",49.10053,6.22206,0,0,OMZ:SA:10688,Europe/Paris,,OMZ, +OMZ:SP:20565,1,"SYMPHONIE",49.104239,6.214974,0,0,OMZ:SA:10209,Europe/Paris,,OMZ, +OMZ:SP:20567,1,"PLACE DE GAULLE",49.060536,6.162871,0,0,OMZ:SA:10285,Europe/Paris,,OMZ, +OMZ:SP:20575,1,"BLEUETS",49.066503,6.16446,0,0,OMZ:SA:10289,Europe/Paris,,OMZ, +OMZ:SP:20576,1,"AZALEES",49.067353,6.168055,0,0,OMZ:SA:10290,Europe/Paris,,OMZ, +OMZ:SP:20577,1,"HAUTS DE BOUTAN",49.067218,6.169894,0,0,OMZ:SA:10291,Europe/Paris,,OMZ, +OMZ:SP:20579,1,"AVENUE DE MAGNY",49.064101,6.167127,0,0,OMZ:SA:10292,Europe/Paris,,OMZ, +OMZ:SP:20584,1,"BRAZZA",49.057156,6.167665,0,0,OMZ:SA:10296,Europe/Paris,,OMZ, +OMZ:SP:20588,1,"LES ECOLES",49.05881,6.156493,0,0,OMZ:SA:10298,Europe/Paris,,OMZ, +OMZ:SP:20589,1,"LES ECOLES",49.058985,6.156363,0,0,OMZ:SA:10298,Europe/Paris,,OMZ, +OMZ:SP:20590,1,"HOTEL DE VILLE",49.059997,6.154176,0,0,OMZ:SA:10299,Europe/Paris,,OMZ, +OMZ:SP:20591,1,"HOTEL DE VILLE",49.060104,6.154189,0,0,OMZ:SA:10299,Europe/Paris,,OMZ, +OMZ:SP:20596,1,"ST-BRICE",49.060257,6.149938,0,0,OMZ:SA:10302,Europe/Paris,,OMZ, +OMZ:SP:20597,1,"ST-BRICE",49.060263,6.150131,0,0,OMZ:SA:10302,Europe/Paris,,OMZ, +OMZ:SP:20598,1,"LARGANTIER",49.062113,6.14635,0,0,OMZ:SA:10303,Europe/Paris,,OMZ, +OMZ:SP:20599,1,"LARGANTIER",49.062809,6.146279,0,0,OMZ:SA:10303,Europe/Paris,,OMZ, +OMZ:SP:20600,1,"LES SORBIERS",49.068917,6.146973,0,0,OMZ:SA:10304,Europe/Paris,,OMZ, +OMZ:SP:20601,1,"LES SORBIERS",49.068538,6.146654,0,0,OMZ:SA:10304,Europe/Paris,,OMZ, +OMZ:SP:20602,1,"LES CLOS",49.073823,6.147771,0,0,OMZ:SA:10305,Europe/Paris,,OMZ, +OMZ:SP:20603,1,"LES CLOS",49.072941,6.147909,0,0,OMZ:SA:10305,Europe/Paris,,OMZ, +OMZ:SP:20604,1,"GARENNES",49.076519,6.146425,0,0,OMZ:SA:10306,Europe/Paris,,OMZ, +OMZ:SP:20605,1,"GARENNES",49.076569,6.146633,0,0,OMZ:SA:10306,Europe/Paris,,OMZ, +OMZ:SP:20606,1,"GRANGE AUX ORMES",49.080681,6.146224,0,0,OMZ:SA:10307,Europe/Paris,,OMZ, +OMZ:SP:20607,1,"GRANGE AUX ORMES",49.080816,6.146549,0,0,OMZ:SA:10307,Europe/Paris,,OMZ, +OMZ:SP:20608,1,"COSTES ET BELLONTE",49.084284,6.149271,0,0,OMZ:SA:10308,Europe/Paris,,OMZ, +OMZ:SP:20609,1,"COSTES ET BELLONTE",49.083426,6.148866,0,0,OMZ:SA:10308,Europe/Paris,,OMZ, +OMZ:SP:20610,1,"JEANNE D'ARC",49.089656,6.153652,0,0,OMZ:SA:10309,Europe/Paris,,OMZ, +OMZ:SP:20611,1,"JEANNE D'ARC",49.089674,6.153626,0,0,OMZ:SA:10309,Europe/Paris,,OMZ, +OMZ:SP:20612,1,"PREVOTE",49.091624,6.155317,0,0,OMZ:SA:10310,Europe/Paris,,OMZ, +OMZ:SP:20613,1,"PREVOTE",49.092832,6.156508,0,0,OMZ:SA:10310,Europe/Paris,,OMZ, +OMZ:SP:20614,1,"ST-ANDRE",49.094882,6.158003,0,0,OMZ:SA:10015,Europe/Paris,,OMZ, +OMZ:SP:20615,1,"TERRES ROUGES",49.129794,6.197226,0,0,OMZ:SA:10311,Europe/Paris,,OMZ, +OMZ:SP:20616,1,"TERRES ROUGES",49.129912,6.19764,0,0,OMZ:SA:10311,Europe/Paris,,OMZ, +OMZ:SP:20617,1,"ST-JULIEN EGLISE",49.134357,6.202566,0,0,OMZ:SA:10312,Europe/Paris,,OMZ, +OMZ:SP:20618,1,"ST-JULIEN EGLISE",49.134476,6.202759,0,0,OMZ:SA:10312,Europe/Paris,,OMZ, +OMZ:SP:20619,1,"CIMETIERE",49.137146,6.205755,0,0,OMZ:SA:10313,Europe/Paris,,OMZ, +OMZ:SP:20620,1,"CIMETIERE",49.137187,6.206023,0,0,OMZ:SA:10313,Europe/Paris,,OMZ, +OMZ:SP:20623,1,"ERABLES",49.13245,6.205824,0,0,OMZ:SA:10315,Europe/Paris,,OMZ, +OMZ:SP:20624,1,"HETRES",49.132293,6.208659,0,0,OMZ:SA:10316,Europe/Paris,,OMZ, +OMZ:SP:20625,1,"CARRIERES",49.129886,6.209666,0,0,OMZ:SA:10317,Europe/Paris,,OMZ, +OMZ:SP:20626,1,"FRENES",49.132278,6.211891,0,0,OMZ:SA:10318,Europe/Paris,,OMZ, +OMZ:SP:20627,1,"PINS",49.13237,6.215862,0,0,OMZ:SA:10319,Europe/Paris,,OMZ, +OMZ:SP:20629,1,"MARRONNIERS",49.134355,6.215341,0,0,OMZ:SA:10320,Europe/Paris,,OMZ, +OMZ:SP:20630,1,"BOUZONVILLE",49.135426,6.213675,0,0,OMZ:SA:10321,Europe/Paris,,OMZ, +OMZ:SP:20631,1,"TILLEULS",49.134521,6.209846,0,0,OMZ:SA:10322,Europe/Paris,,OMZ, +OMZ:SP:20632,1,"GRIMONT",49.140429,6.217495,0,0,OMZ:SA:10323,Europe/Paris,,OMZ, +OMZ:SP:20633,1,"INTENDANTS JOBA",49.141179,6.16567,0,0,OMZ:SA:10324,Europe/Paris,,OMZ, +OMZ:SP:20640,1,"GANNE",49.115262,6.204143,0,0,OMZ:SA:10328,Europe/Paris,,OMZ, +OMZ:SP:20641,1,"GANNE",49.115622,6.205456,0,0,OMZ:SA:10328,Europe/Paris,,OMZ, +OMZ:SP:20642,1,"BERNARD",49.11457,6.211416,0,0,OMZ:SA:10329,Europe/Paris,,OMZ, +OMZ:SP:20643,1,"BERNARD",49.115608,6.210108,0,0,OMZ:SA:10329,Europe/Paris,,OMZ, +OMZ:SP:20652,1,"JULES MICHELET",49.107277,6.228187,0,0,OMZ:SA:10334,Europe/Paris,,OMZ, +OMZ:SP:20654,1,"SEBASTOPOL",49.10793,6.23789,0,0,OMZ:SA:10336,Europe/Paris,,OMZ, +OMZ:SP:20655,1,"SEBASTOPOL",49.107569,6.238713,0,0,OMZ:SA:10336,Europe/Paris,,OMZ, +OMZ:SP:20656,1,"SOLIDARITE",49.107696,6.243086,0,0,OMZ:SA:10337,Europe/Paris,,OMZ, +OMZ:SP:20657,1,"SOLIDARITE",49.108065,6.243105,0,0,OMZ:SA:10337,Europe/Paris,,OMZ, +OMZ:SP:20658,1,"FAURNEL",49.099859,6.242836,0,0,OMZ:SA:10338,Europe/Paris,,OMZ, +OMZ:SP:20659,1,"FAURNEL",49.100487,6.243099,0,0,OMZ:SA:10338,Europe/Paris,,OMZ, +OMZ:SP:20660,1,"ARIANE",49.094847,6.238683,0,0,OMZ:SA:10339,Europe/Paris,,OMZ, +OMZ:SP:20661,1,"ARIANE",49.095468,6.238725,0,0,OMZ:SA:10339,Europe/Paris,,OMZ, +OMZ:SP:20662,1,"PASSOTTE",49.09287,6.239918,0,0,OMZ:SA:10340,Europe/Paris,,OMZ, +OMZ:SP:20663,1,"PASSOTTE",49.093028,6.239778,0,0,OMZ:SA:10340,Europe/Paris,,OMZ, +OMZ:SP:20664,1,"AUBIGNY",49.09422,6.269894,0,0,OMZ:SA:10341,Europe/Paris,,OMZ, +OMZ:SP:20668,1,"PREFECTURE",49.121736,6.174354,0,0,OMZ:SA:10342,Europe/Paris,,OMZ, +OMZ:SP:20669,1,"PREFECTURE",49.121497,6.175702,0,0,OMZ:SA:10342,Europe/Paris,,OMZ, +OMZ:SP:20670,1,"MELEZES",49.128164,6.203304,0,0,OMZ:SA:10344,Europe/Paris,,OMZ, +OMZ:SP:20671,1,"MELEZES",49.12785,6.203632,0,0,OMZ:SA:10344,Europe/Paris,,OMZ, +OMZ:SP:20672,1,"AULNES",49.127244,6.207678,0,0,OMZ:SA:10345,Europe/Paris,,OMZ, +OMZ:SP:20673,1,"AULNES",49.127298,6.207678,0,0,OMZ:SA:10345,Europe/Paris,,OMZ, +OMZ:SP:20674,1,"CEDRES",49.127401,6.211911,0,0,OMZ:SA:10346,Europe/Paris,,OMZ, +OMZ:SP:20675,1,"CEDRES",49.127435,6.211656,0,0,OMZ:SA:10346,Europe/Paris,,OMZ, +OMZ:SP:20676,1,"VOLO",49.125352,6.206442,0,0,OMZ:SA:10347,Europe/Paris,,OMZ, +OMZ:SP:20677,1,"VOLO",49.125279,6.206401,0,0,OMZ:SA:10347,Europe/Paris,,OMZ, +OMZ:SP:20678,1,"BLIDA",49.125879,6.181409,0,0,OMZ:SA:10348,Europe/Paris,,OMZ, +OMZ:SP:20679,1,"BLIDA",49.125692,6.181443,0,0,OMZ:SA:10348,Europe/Paris,,OMZ, +OMZ:SP:20684,1,"FRENES",49.13197,6.211513,0,0,OMZ:SA:10318,Europe/Paris,,OMZ, +OMZ:SP:20685,1,"PINS",49.131941,6.214953,0,0,OMZ:SA:10319,Europe/Paris,,OMZ, +OMZ:SP:20686,1,"MARRONNIERS",49.134202,6.215343,0,0,OMZ:SA:10320,Europe/Paris,,OMZ, +OMZ:SP:20687,1,"ST-EXUPERY",49.086418,6.154538,0,0,OMZ:SA:10351,Europe/Paris,,OMZ, +OMZ:SP:20688,1,"ST-EXUPERY",49.086585,6.15405,0,0,OMZ:SA:10351,Europe/Paris,,OMZ, +OMZ:SP:20694,1,"MEURISSE",49.102278,6.155149,0,0,OMZ:SA:10355,Europe/Paris,,OMZ, +OMZ:SP:20695,1,"MEURISSE",49.102396,6.155538,0,0,OMZ:SA:10355,Europe/Paris,,OMZ, +OMZ:SP:20696,1,"COUVENTS",49.1033,6.15344,0,0,OMZ:SA:10356,Europe/Paris,,OMZ, +OMZ:SP:20697,1,"COUVENTS",49.103613,6.152323,0,0,OMZ:SA:10356,Europe/Paris,,OMZ, +OMZ:SP:20698,1,"CHATRIAN",49.10326,6.14874,0,0,OMZ:SA:10357,Europe/Paris,,OMZ, +OMZ:SP:20699,1,"CHATRIAN",49.103342,6.149002,0,0,OMZ:SA:10357,Europe/Paris,,OMZ, +OMZ:SP:20700,1,"VERGERS",49.102288,6.1459,0,0,OMZ:SA:10358,Europe/Paris,,OMZ, +OMZ:SP:20701,1,"VERGERS",49.102349,6.14573,0,0,OMZ:SA:10358,Europe/Paris,,OMZ, +OMZ:SP:20704,1,"LILAS",49.095684,6.143428,0,0,OMZ:SA:10360,Europe/Paris,,OMZ, +OMZ:SP:20705,1,"LILAS",49.095615,6.143766,0,0,OMZ:SA:10360,Europe/Paris,,OMZ, +OMZ:SP:20717,1,"FABERT",49.118938,6.175497,0,0,OMZ:SA:10367,Europe/Paris,,OMZ, +OMZ:SP:20718,1,"PETIT PARIS",49.118241,6.175291,0,0,OMZ:SA:10368,Europe/Paris,,OMZ, +OMZ:SP:20719,1,"TETE D'OR",49.117314,6.177093,0,0,OMZ:SA:10369,Europe/Paris,,OMZ, +OMZ:SP:20734,1,"ST-LOUIS",49.116808,6.178356,0,0,OMZ:SA:10174,Europe/Paris,,OMZ, +OMZ:SP:20735,1,"ST-LOUIS",49.116663,6.179721,0,0,OMZ:SA:10174,Europe/Paris,,OMZ, +OMZ:SP:20736,1,"ROYALE",49.115552,6.178874,0,0,OMZ:SA:10175,Europe/Paris,,OMZ, +OMZ:SP:20737,1,"ROYALE",49.115341,6.179071,0,0,OMZ:SA:10175,Europe/Paris,,OMZ, +OMZ:SP:20740,1,"EN FOURNIRUE",49.118008,6.178726,0,0,OMZ:SA:10377,Europe/Paris,,OMZ, +OMZ:SP:20741,1,"PLACE D'ARMES",49.119321,6.175582,0,0,OMZ:SA:10003,Europe/Paris,,OMZ, +OMZ:SP:20769,1,"FRANCLONCHAMPS",49.171161,6.189857,0,0,OMZ:SA:10394,Europe/Paris,,OMZ, +OMZ:SP:20770,1,"LA MAXE",49.168613,6.189582,0,0,OMZ:SA:10395,Europe/Paris,,OMZ, +OMZ:SP:20771,1,"LA MAXE",49.168694,6.18952,0,0,OMZ:SA:10395,Europe/Paris,,OMZ, +OMZ:SP:20772,1,"CHENEVIERES",49.165766,6.189568,0,0,OMZ:SA:10396,Europe/Paris,,OMZ, +OMZ:SP:20773,1,"CHENEVIERES",49.165828,6.189745,0,0,OMZ:SA:10396,Europe/Paris,,OMZ, +OMZ:SP:20774,1,"PIERRET",49.164096,6.188652,0,0,OMZ:SA:10397,Europe/Paris,,OMZ, +OMZ:SP:20775,1,"PIERRET",49.163536,6.188565,0,0,OMZ:SA:10397,Europe/Paris,,OMZ, +OMZ:SP:20776,1,"CENTRALE",49.155008,6.185911,0,0,OMZ:SA:10398,Europe/Paris,,OMZ, +OMZ:SP:20777,1,"CENTRALE",49.154691,6.186467,0,0,OMZ:SA:10398,Europe/Paris,,OMZ, +OMZ:SP:20778,1,"GRANGE-AUX-DAMES",49.146147,6.19066,0,0,OMZ:SA:10399,Europe/Paris,,OMZ, +OMZ:SP:20779,1,"GRANGE-AUX-DAMES",49.146451,6.190955,0,0,OMZ:SA:10399,Europe/Paris,,OMZ, +OMZ:SP:20780,1,"LES SILOS",49.140376,6.186403,0,0,OMZ:SA:10400,Europe/Paris,,OMZ, +OMZ:SP:20781,1,"LES SILOS",49.140729,6.187279,0,0,OMZ:SA:10400,Europe/Paris,,OMZ, +OMZ:SP:20782,1,"PORT DE METZ",49.137322,6.180787,0,0,OMZ:SA:10401,Europe/Paris,,OMZ, +OMZ:SP:20783,1,"PORT DE METZ",49.137538,6.181121,0,0,OMZ:SA:10401,Europe/Paris,,OMZ, +OMZ:SP:20784,1,"11ème D'AVIATION",49.085783,6.146222,0,0,OMZ:SA:10402,Europe/Paris,,OMZ, +OMZ:SP:20790,1,"AUBEPINE",49.071542,6.193494,0,0,OMZ:SA:10073,Europe/Paris,,OMZ, +OMZ:SP:20805,1,"CUVRY",49.042872,6.158778,0,0,OMZ:SA:10414,Europe/Paris,,OMZ, +OMZ:SP:20807,1,"MICHEL ANGE",49.059369,6.169179,0,0,OMZ:SA:10415,Europe/Paris,,OMZ, +OMZ:SP:20811,1,"CHAMBIERE",49.128066,6.18553,0,0,OMZ:SA:10419,Europe/Paris,,OMZ, +OMZ:SP:20812,1,"CHAMBIERE",49.127379,6.184542,0,0,OMZ:SA:10419,Europe/Paris,,OMZ, +OMZ:SP:20815,1,"ST-JULIEN FORT",49.140828,6.205776,0,0,OMZ:SA:10343,Europe/Paris,,OMZ, +OMZ:SP:20816,1,"SQUARE DU LUXEMBOURG",49.121344,6.168984,0,0,OMZ:SA:10007,Europe/Paris,,OMZ, +OMZ:SP:20817,1,"BOURGOGNE",49.114273,6.227053,0,0,OMZ:SA:10421,Europe/Paris,,OMZ, +OMZ:SP:20818,1,"BOURGOGNE",49.114178,6.227007,0,0,OMZ:SA:10421,Europe/Paris,,OMZ, +OMZ:SP:20823,1,"FEIVRES",49.115151,6.240668,0,0,OMZ:SA:10424,Europe/Paris,,OMZ, +OMZ:SP:20824,1,"FEIVRES",49.114754,6.240076,0,0,OMZ:SA:10424,Europe/Paris,,OMZ, +OMZ:SP:20828,1,"JUSSY - STE-RUFFINE",49.105111,6.089326,0,0,OMZ:SA:10426,Europe/Paris,,OMZ, +OMZ:SP:20829,1,"PLACE DE FRANCE",49.156314,6.15322,0,0,OMZ:SA:10427,Europe/Paris,,OMZ, +OMZ:SP:20830,1,"WOIPPY-HOTEL DE VILLE",49.151263,6.149991,0,0,OMZ:SA:10428,Europe/Paris,,OMZ, +OMZ:SP:20831,1,"WOIPPY-HOTEL DE VILLE",49.151293,6.150132,0,0,OMZ:SA:10428,Europe/Paris,,OMZ, +OMZ:SP:20832,1,"GAMBETTA",49.14939,6.159635,0,0,OMZ:SA:10429,Europe/Paris,,OMZ, +OMZ:SP:20833,1,"GAMBETTA",49.149076,6.160073,0,0,OMZ:SA:10429,Europe/Paris,,OMZ, +OMZ:SP:20834,1,"COUPILLON",49.141369,6.148121,0,0,OMZ:SA:10430,Europe/Paris,,OMZ, +OMZ:SP:20835,1,"COUPILLON",49.141575,6.148088,0,0,OMZ:SA:10430,Europe/Paris,,OMZ, +OMZ:SP:20836,1,"RUCHER",49.144807,6.147837,0,0,OMZ:SA:10431,Europe/Paris,,OMZ, +OMZ:SP:20837,1,"RUCHER",49.145042,6.147958,0,0,OMZ:SA:10431,Europe/Paris,,OMZ, +OMZ:SP:20838,1,"SAULES",49.147614,6.152408,0,0,OMZ:SA:10432,Europe/Paris,,OMZ, +OMZ:SP:20839,1,"SAULES",49.147658,6.152498,0,0,OMZ:SA:10432,Europe/Paris,,OMZ, +OMZ:SP:20842,1,"WOIPPY CHATEAU",49.152891,6.144917,0,0,OMZ:SA:10434,Europe/Paris,,OMZ, +OMZ:SP:20843,1,"WOIPPY CHATEAU",49.152574,6.145724,0,0,OMZ:SA:10434,Europe/Paris,,OMZ, +OMZ:SP:20844,1,"LADONCHAMPS",49.154362,6.152998,0,0,OMZ:SA:10435,Europe/Paris,,OMZ, +OMZ:SP:20845,1,"LADONCHAMPS",49.153984,6.152469,0,0,OMZ:SA:10435,Europe/Paris,,OMZ, +OMZ:SP:20846,1,"ROGET",49.149197,6.168863,0,0,OMZ:SA:10436,Europe/Paris,,OMZ, +OMZ:SP:20847,1,"ROGET",49.148881,6.167447,0,0,OMZ:SA:10436,Europe/Paris,,OMZ, +OMZ:SP:20848,1,"ARS LAQUENEXY",49.092779,6.270352,0,0,OMZ:SA:10437,Europe/Paris,,OMZ, +OMZ:SP:20849,1,"ARS LAQUENEXY",49.092812,6.270065,0,0,OMZ:SA:10437,Europe/Paris,,OMZ, +OMZ:SP:20850,1,"PLATEAU",49.081531,6.185122,0,0,OMZ:SA:10438,Europe/Paris,,OMZ, +OMZ:SP:20851,1,"PLATEAU",49.082391,6.184228,0,0,OMZ:SA:10438,Europe/Paris,,OMZ, +OMZ:SP:20852,1,"EN PRILLE",49.109407,6.125291,0,0,OMZ:SA:10439,Europe/Paris,,OMZ, +OMZ:SP:20853,1,"EN PRILLE",49.10948,6.126021,0,0,OMZ:SA:10439,Europe/Paris,,OMZ, +OMZ:SP:20854,1,"HAIE BRULEE",49.11072,6.097227,0,0,OMZ:SA:10029,Europe/Paris,,OMZ, +OMZ:SP:20855,1,"IKEA",49.151666,6.189128,0,0,OMZ:SA:10440,Europe/Paris,,OMZ, +OMZ:SP:20856,1,"IKEA",49.151773,6.188043,0,0,OMZ:SA:10440,Europe/Paris,,OMZ, +OMZ:SP:20858,1,"HAIE BRULEE",49.111091,6.096849,0,0,OMZ:SA:10029,Europe/Paris,,OMZ, +OMZ:SP:20859,1,"CHATEL-ST-GERMAIN",49.122234,6.081553,0,0,OMZ:SA:10442,Europe/Paris,,OMZ, +OMZ:SP:20861,1,"CHEMIN DES DAMES",49.116918,6.088182,0,0,OMZ:SA:10443,Europe/Paris,,OMZ, +OMZ:SP:20862,1,"CHEMIN DES DAMES",49.11726,6.087838,0,0,OMZ:SA:10443,Europe/Paris,,OMZ, +OMZ:SP:20863,1,"CLERY",49.121184,6.080518,0,0,OMZ:SA:10444,Europe/Paris,,OMZ, +OMZ:SP:20864,1,"CHAHURY",49.117661,6.084813,0,0,OMZ:SA:10445,Europe/Paris,,OMZ, +OMZ:SP:20865,1,"RN3",49.109684,6.09121,0,0,OMZ:SA:10446,Europe/Paris,,OMZ, +OMZ:SP:20866,1,"RN3",49.109673,6.09102,0,0,OMZ:SA:10446,Europe/Paris,,OMZ, +OMZ:SP:20869,1,"CHAMPAGNE",49.041264,6.160788,0,0,OMZ:SA:10447,Europe/Paris,,OMZ, +OMZ:SP:20870,1,"CHAMPAGNE",49.041564,6.160678,0,0,OMZ:SA:10447,Europe/Paris,,OMZ, +OMZ:SP:20871,1,"LA POMMERAIE",49.033626,6.162012,0,0,OMZ:SA:10448,Europe/Paris,,OMZ, +OMZ:SP:20872,1,"LA POMMERAIE",49.03343,6.162369,0,0,OMZ:SA:10448,Europe/Paris,,OMZ, +OMZ:SP:20874,1,"COIN-LES-CUVRY",49.033538,6.155293,0,0,OMZ:SA:10449,Europe/Paris,,OMZ, +OMZ:SP:20876,1,"LE CHAVEAU",49.031998,6.150907,0,0,OMZ:SA:10450,Europe/Paris,,OMZ, +OMZ:SP:20877,1,"POURNOY-LA-CHETIVE",49.021059,6.154688,0,0,OMZ:SA:10451,Europe/Paris,,OMZ, +OMZ:SP:20878,1,"POURNOY-LA-CHETIVE",49.020781,6.154436,0,0,OMZ:SA:10451,Europe/Paris,,OMZ, +OMZ:SP:20879,1,"COIN-SUR-SEILLE",49.009076,6.159937,0,0,OMZ:SA:10452,Europe/Paris,,OMZ, +OMZ:SP:20880,1,"CUVRY",49.042993,6.158728,0,0,OMZ:SA:10414,Europe/Paris,,OMZ, +OMZ:SP:20885,1,"GARE D'AUGNY",49.070182,6.137521,0,0,OMZ:SA:10455,Europe/Paris,,OMZ, +OMZ:SP:20886,1,"GARE D'AUGNY",49.070208,6.137694,0,0,OMZ:SA:10455,Europe/Paris,,OMZ, +OMZ:SP:20887,1,"AUGNY MAIRIE",49.05865,6.121845,0,0,OMZ:SA:10456,Europe/Paris,,OMZ, +OMZ:SP:20888,1,"AUGNY MAIRIE",49.058702,6.121926,0,0,OMZ:SA:10456,Europe/Paris,,OMZ, +OMZ:SP:20889,1,"LIBERATION",49.061187,6.117857,0,0,OMZ:SA:10457,Europe/Paris,,OMZ, +OMZ:SP:20890,1,"LIBERATION",49.061266,6.118074,0,0,OMZ:SA:10457,Europe/Paris,,OMZ, +OMZ:SP:20891,1,"LOTISSEMENT",49.063505,6.116401,0,0,OMZ:SA:10458,Europe/Paris,,OMZ, +OMZ:SP:20892,1,"LOTISSEMENT",49.064034,6.116671,0,0,OMZ:SA:10458,Europe/Paris,,OMZ, +OMZ:SP:20893,1,"ZAC D'AUGNY",49.074174,6.107641,0,0,OMZ:SA:10459,Europe/Paris,,OMZ, +OMZ:SP:20894,1,"ZAC D'AUGNY",49.075077,6.106751,0,0,OMZ:SA:10459,Europe/Paris,,OMZ, +OMZ:SP:20895,1,"ACTISUD DUNIL",49.076466,6.102942,0,0,OMZ:SA:10460,Europe/Paris,,OMZ, +OMZ:SP:20896,1,"ACTISUD DUNIL",49.076518,6.10284,0,0,OMZ:SA:10460,Europe/Paris,,OMZ, +OMZ:SP:20897,1,"VAL DE METZ",49.093368,6.092531,0,0,OMZ:SA:10461,Europe/Paris,,OMZ, +OMZ:SP:20898,1,"VAL DE METZ",49.09327,6.093404,0,0,OMZ:SA:10461,Europe/Paris,,OMZ, +OMZ:SP:20899,1,"VAUX MAIRIE",49.093245,6.080532,0,0,OMZ:SA:10462,Europe/Paris,,OMZ, +OMZ:SP:20900,1,"NOUILLONS",49.111846,6.097379,0,0,OMZ:SA:10463,Europe/Paris,,OMZ, +OMZ:SP:20901,1,"NOUILLONS",49.112055,6.097331,0,0,OMZ:SA:10463,Europe/Paris,,OMZ, +OMZ:SP:20902,1,"ERMITAGE",49.118285,6.096176,0,0,OMZ:SA:10464,Europe/Paris,,OMZ, +OMZ:SP:20903,1,"ERMITAGE",49.118338,6.096492,0,0,OMZ:SA:10464,Europe/Paris,,OMZ, +OMZ:SP:20904,1,"LESSY",49.120937,6.094775,0,0,OMZ:SA:10465,Europe/Paris,,OMZ, +OMZ:SP:20905,1,"LESSY",49.120937,6.094775,0,0,OMZ:SA:10465,Europe/Paris,,OMZ, +OMZ:SP:20906,1,"LE QUOITY",49.123278,6.094878,0,0,OMZ:SA:10466,Europe/Paris,,OMZ, +OMZ:SP:20907,1,"SCY-CHAZELLES",49.114118,6.116556,0,0,OMZ:SA:10467,Europe/Paris,,OMZ, +OMZ:SP:20908,1,"FRIERES",49.140146,6.135521,0,0,OMZ:SA:10468,Europe/Paris,,OMZ, +OMZ:SP:20909,1,"FRIERES",49.140403,6.135219,0,0,OMZ:SA:10468,Europe/Paris,,OMZ, +OMZ:SP:20910,1,"CARREFOUR",49.144423,6.127608,0,0,OMZ:SA:10469,Europe/Paris,,OMZ, +OMZ:SP:20911,1,"CARREFOUR",49.144455,6.127848,0,0,OMZ:SA:10469,Europe/Paris,,OMZ, +OMZ:SP:20912,1,"ATELIERS MUNICIPAUX",49.142488,6.122013,0,0,OMZ:SA:10470,Europe/Paris,,OMZ, +OMZ:SP:20913,1,"ATELIERS MUNICIPAUX",49.14252,6.12179,0,0,OMZ:SA:10470,Europe/Paris,,OMZ, +OMZ:SP:20914,1,"LORRY GRAND RUE",49.141735,6.118591,0,0,OMZ:SA:10471,Europe/Paris,,OMZ, +OMZ:SP:20915,1,"LORRY GRAND RUE",49.141806,6.118326,0,0,OMZ:SA:10471,Europe/Paris,,OMZ, +OMZ:SP:20916,1,"CHAPELLE",49.141664,6.115763,0,0,OMZ:SA:10472,Europe/Paris,,OMZ, +OMZ:SP:20917,1,"CHAPELLE",49.141731,6.11564,0,0,OMZ:SA:10472,Europe/Paris,,OMZ, +OMZ:SP:20918,1,"LES PLAQUETTES",49.16903,6.050299,0,0,OMZ:SA:10473,Europe/Paris,,OMZ, +OMZ:SP:20919,1,"LES PLAQUETTES",49.168981,6.049968,0,0,OMZ:SA:10473,Europe/Paris,,OMZ, +OMZ:SP:20920,1,"GRAND RUE",49.168571,6.048406,0,0,OMZ:SA:10474,Europe/Paris,,OMZ, +OMZ:SP:20921,1,"GRAND RUE",49.16866,6.048524,0,0,OMZ:SA:10474,Europe/Paris,,OMZ, +OMZ:SP:20922,1,"AMANVILLERS MAIRIE",49.167315,6.044089,0,0,OMZ:SA:10475,Europe/Paris,,OMZ, +OMZ:SP:20923,1,"AMANVILLERS MAIRIE",49.167352,6.043792,0,0,OMZ:SA:10475,Europe/Paris,,OMZ, +OMZ:SP:20924,1,"DOUANIERS",49.169993,6.047781,0,0,OMZ:SA:10476,Europe/Paris,,OMZ, +OMZ:SP:20925,1,"DOUANIERS",49.16917,6.049078,0,0,OMZ:SA:10476,Europe/Paris,,OMZ, +OMZ:SP:20926,1,"JUSTICE",49.166546,6.03834,0,0,OMZ:SA:10477,Europe/Paris,,OMZ, +OMZ:SP:20931,1,"PLACE PUBLIQUE",49.154456,6.118011,0,0,OMZ:SA:10480,Europe/Paris,,OMZ, +OMZ:SP:20932,1,"PLACE PUBLIQUE",49.154613,6.118068,0,0,OMZ:SA:10480,Europe/Paris,,OMZ, +OMZ:SP:20933,1,"RUE DE METZ",49.155718,6.112978,0,0,OMZ:SA:10481,Europe/Paris,,OMZ, +OMZ:SP:20934,1,"RUE DE METZ",49.155796,6.11311,0,0,OMZ:SA:10481,Europe/Paris,,OMZ, +OMZ:SP:20935,1,"SAULNY CENTRE",49.158584,6.106055,0,0,OMZ:SA:10482,Europe/Paris,,OMZ, +OMZ:SP:20936,1,"BREUIL",49.160456,6.225804,0,0,OMZ:SA:10483,Europe/Paris,,OMZ, +OMZ:SP:20937,1,"BREUIL",49.160339,6.225823,0,0,OMZ:SA:10483,Europe/Paris,,OMZ, +OMZ:SP:20938,1,"CHIEULLES",49.159406,6.228951,0,0,OMZ:SA:10484,Europe/Paris,,OMZ, +OMZ:SP:20939,1,"CHIEULLES",49.159454,6.228745,0,0,OMZ:SA:10484,Europe/Paris,,OMZ, +OMZ:SP:20940,1,"VANY",49.156538,6.239113,0,0,OMZ:SA:10485,Europe/Paris,,OMZ, +OMZ:SP:20941,1,"VANY",49.156121,6.239521,0,0,OMZ:SA:10485,Europe/Paris,,OMZ, +OMZ:SP:20942,1,"VILLERS-L'ORME",49.151966,6.247561,0,0,OMZ:SA:10486,Europe/Paris,,OMZ, +OMZ:SP:20943,1,"FALEE",49.132918,6.252872,0,0,OMZ:SA:10487,Europe/Paris,,OMZ, +OMZ:SP:20944,1,"FALEE",49.133048,6.25347,0,0,OMZ:SA:10487,Europe/Paris,,OMZ, +OMZ:SP:20945,1,"NOUILLY CENTRE",49.136069,6.258508,0,0,OMZ:SA:10488,Europe/Paris,,OMZ, +OMZ:SP:20946,1,"NOUILLY CENTRE",49.135925,6.258621,0,0,OMZ:SA:10488,Europe/Paris,,OMZ, +OMZ:SP:20947,1,"PINOTS MELES",49.134485,6.270597,0,0,OMZ:SA:10489,Europe/Paris,,OMZ, +OMZ:SP:20948,1,"PINOTS MELES",49.134379,6.271577,0,0,OMZ:SA:10489,Europe/Paris,,OMZ, +OMZ:SP:20949,1,"LES CHAULMES",49.133555,6.276123,0,0,OMZ:SA:10490,Europe/Paris,,OMZ, +OMZ:SP:20950,1,"LES CHAULMES",49.134104,6.27577,0,0,OMZ:SA:10490,Europe/Paris,,OMZ, +OMZ:SP:20951,1,"MAS AU LIEVRE",49.131792,6.275067,0,0,OMZ:SA:10491,Europe/Paris,,OMZ, +OMZ:SP:20959,1,"RUE D'ARS",49.111687,6.028925,0,0,OMZ:SA:10496,Europe/Paris,,OMZ, +OMZ:SP:20963,1,"MALMAISON",49.124887,6.017052,0,0,OMZ:SA:10498,Europe/Paris,,OMZ, +OMZ:SP:20964,1,"MALMAISON",49.12504,6.016909,0,0,OMZ:SA:10498,Europe/Paris,,OMZ, +OMZ:SP:20969,1,"POUILLY",49.049823,6.188433,0,0,OMZ:SA:10501,Europe/Paris,,OMZ, +OMZ:SP:20971,1,"COLOMBIER",49.048226,6.185612,0,0,OMZ:SA:10502,Europe/Paris,,OMZ, +OMZ:SP:20973,1,"THERMES",49.050279,6.183357,0,0,OMZ:SA:10503,Europe/Paris,,OMZ, +OMZ:SP:20974,1,"MAHIRE",49.050078,6.184572,0,0,OMZ:SA:10504,Europe/Paris,,OMZ, +OMZ:SP:20981,1,"ABBE BAUZIN",49.18934,6.034948,0,0,OMZ:SA:10510,Europe/Paris,,OMZ, +OMZ:SP:20982,1,"ABBE BAUZIN",49.189125,6.036346,0,0,OMZ:SA:10510,Europe/Paris,,OMZ, +OMZ:SP:20983,1,"CHAMP BANAL",49.17265,6.04543,0,0,OMZ:SA:10511,Europe/Paris,,OMZ, +OMZ:SP:20984,1,"CHAMP BANAL",49.173234,6.045326,0,0,OMZ:SA:10511,Europe/Paris,,OMZ, +OMZ:SP:20987,1,"GRANDE FLAMEE",49.182824,6.040168,0,0,OMZ:SA:10513,Europe/Paris,,OMZ, +OMZ:SP:20988,1,"GRANDE FLAMEE",49.183115,6.040279,0,0,OMZ:SA:10513,Europe/Paris,,OMZ, +OMZ:SP:20996,1,"SALETTE",49.152869,6.246799,0,0,OMZ:SA:10518,Europe/Paris,,OMZ, +OMZ:SP:21000,1,"SCHUMAN",49.110626,6.112125,0,0,OMZ:SA:10521,Europe/Paris,,OMZ, +OMZ:SP:21001,1,"SCHUMAN",49.110858,6.111853,0,0,OMZ:SA:10521,Europe/Paris,,OMZ, +OMZ:SP:21002,1,"CHENEAU",49.108874,6.120752,0,0,OMZ:SA:10522,Europe/Paris,,OMZ, +OMZ:SP:21003,1,"CHENEAU",49.10891,6.120849,0,0,OMZ:SA:10522,Europe/Paris,,OMZ, +OMZ:SP:21004,1,"LASSAUX",49.116189,6.097918,0,0,OMZ:SA:10523,Europe/Paris,,OMZ, +OMZ:SP:21005,1,"LASSAUX",49.116285,6.097991,0,0,OMZ:SA:10523,Europe/Paris,,OMZ, +OMZ:SP:21007,1,"POSTE EDF",49.151962,6.213736,0,0,OMZ:SA:10524,Europe/Paris,,OMZ, +OMZ:SP:21008,1,"POSTE EDF",49.151962,6.213736,0,0,OMZ:SA:10524,Europe/Paris,,OMZ, +OMZ:SP:21010,1,"VERDUN",49.080076,6.058153,0,0,OMZ:SA:10525,Europe/Paris,,OMZ, +OMZ:SP:21012,1,"CLEMENCEAU",49.080143,6.083968,0,0,OMZ:SA:10526,Europe/Paris,,OMZ, +OMZ:SP:21013,1,"CLEMENCEAU",49.080944,6.084693,0,0,OMZ:SA:10526,Europe/Paris,,OMZ, +OMZ:SP:21014,1,"CROISEMENT RD6",49.093875,6.095382,0,0,OMZ:SA:10527,Europe/Paris,,OMZ, +OMZ:SP:21015,1,"CROISEMENT RD6",49.09299,6.094943,0,0,OMZ:SA:10527,Europe/Paris,,OMZ, +OMZ:SP:21016,1,"SCHWALBACH",49.079296,6.065861,0,0,OMZ:SA:10528,Europe/Paris,,OMZ, +OMZ:SP:21017,1,"SCHWALBACH",49.079248,6.065779,0,0,OMZ:SA:10528,Europe/Paris,,OMZ, +OMZ:SP:21018,1,"ARS SUR MOSELLE",49.075878,6.076714,0,0,OMZ:SA:10529,Europe/Paris,,OMZ, +OMZ:SP:21019,1,"ARS SUR MOSELLE",49.075693,6.076565,0,0,OMZ:SA:10529,Europe/Paris,,OMZ, +OMZ:SP:21023,1,"LORRAINE",49.101225,6.107976,0,0,OMZ:SA:10038,Europe/Paris,,OMZ, +OMZ:SP:21024,1,"HETRES",49.131988,6.209227,0,0,OMZ:SA:10316,Europe/Paris,,OMZ, +OMZ:SP:21025,1,"ERABLES",49.131608,6.205349,0,0,OMZ:SA:10315,Europe/Paris,,OMZ, +OMZ:SP:21026,1,"BOUZONVILLE",49.135046,6.213811,0,0,OMZ:SA:10321,Europe/Paris,,OMZ, +OMZ:SP:21028,1,"PETIT COEUR",49.166103,6.040458,0,0,OMZ:SA:10531,Europe/Paris,,OMZ, +OMZ:SP:21029,1,"CARCAN",49.093788,6.086953,0,0,OMZ:SA:10532,Europe/Paris,,OMZ, +OMZ:SP:21030,1,"CARCAN",49.093696,6.086799,0,0,OMZ:SA:10532,Europe/Paris,,OMZ, +OMZ:SP:21032,1,"PENSEES",49.134764,6.273566,0,0,OMZ:SA:10533,Europe/Paris,,OMZ, +OMZ:SP:21033,1,"PENSEES",49.134655,6.273923,0,0,OMZ:SA:10533,Europe/Paris,,OMZ, +OMZ:SP:21034,1,"PRESSOIR",49.13517,6.256955,0,0,OMZ:SA:10534,Europe/Paris,,OMZ, +OMZ:SP:21035,1,"PRESSOIR",49.13519,6.257154,0,0,OMZ:SA:10534,Europe/Paris,,OMZ, +OMZ:SP:21041,1,"CRIMEE",49.114361,6.112973,0,0,OMZ:SA:10538,Europe/Paris,,OMZ, +OMZ:SP:21042,1,"CRIMEE",49.113562,6.113576,0,0,OMZ:SA:10538,Europe/Paris,,OMZ, +OMZ:SP:21045,1,"MARIEULLES",48.998756,6.100187,0,0,OMZ:SA:10541,Europe/Paris,,OMZ, +OMZ:SP:21046,1,"VEZON",49.00654,6.094826,0,0,OMZ:SA:10542,Europe/Paris,,OMZ, +OMZ:SP:21047,1,"VEZON",49.006575,6.094954,0,0,OMZ:SA:10542,Europe/Paris,,OMZ, +OMZ:SP:21048,1,"FEY",49.029075,6.09659,0,0,OMZ:SA:10543,Europe/Paris,,OMZ, +OMZ:SP:21049,1,"FEY",49.029056,6.096845,0,0,OMZ:SA:10543,Europe/Paris,,OMZ, +OMZ:SP:21050,1,"GLISSU",49.055881,6.119799,0,0,OMZ:SA:10544,Europe/Paris,,OMZ, +OMZ:SP:21051,1,"GLISSU",49.055814,6.119876,0,0,OMZ:SA:10544,Europe/Paris,,OMZ, +OMZ:SP:21054,1,"MAISON NEUVE",49.11029,6.091101,0,0,OMZ:SA:10546,Europe/Paris,,OMZ, +OMZ:SP:21067,1,"GEORGES BERNANOS",49.132944,6.167915,0,0,OMZ:SA:10552,Europe/Paris,,OMZ, +OMZ:SP:21069,1,"GEORGES BERNANOS",49.132994,6.16778,0,0,OMZ:SA:10552,Europe/Paris,,OMZ, +OMZ:SP:21075,1,"CENTRE POMPIDOU METZ",49.108441,6.180427,0,0,OMZ:SA:10673,Europe/Paris,,OMZ, +OMZ:SP:21077,1,"FELIX MARECHAL",49.129499,6.138163,0,0,OMZ:SA:10187,Europe/Paris,,OMZ, +OMZ:SP:21080,1,"TRENTE JOURS",49.09626,6.245818,0,0,OMZ:SA:10556,Europe/Paris,,OMZ, +OMZ:SP:21081,1,"TRENTE JOURS",49.096462,6.24581,0,0,OMZ:SA:10556,Europe/Paris,,OMZ, +OMZ:SP:21082,1,"CHEMIN NOIR",49.114182,6.097957,0,0,OMZ:SA:10557,Europe/Paris,,OMZ, +OMZ:SP:21083,1,"CHEMIN NOIR",49.114174,6.098109,0,0,OMZ:SA:10557,Europe/Paris,,OMZ, +OMZ:SP:21084,1,"11ème D'AVIATION",49.08619,6.14531,0,0,OMZ:SA:10402,Europe/Paris,,OMZ, +OMZ:SP:21085,1,"LUETTE",49.085191,6.148565,0,0,OMZ:SA:10558,Europe/Paris,,OMZ, +OMZ:SP:21086,1,"LUETTE",49.085451,6.148358,0,0,OMZ:SA:10558,Europe/Paris,,OMZ, +OMZ:SP:21087,1,"GRAVELOTTE EGLISE",49.109085,6.030246,0,0,OMZ:SA:10559,Europe/Paris,,OMZ, +OMZ:SP:21088,1,"GRAVELOTTE EGLISE",49.109163,6.030398,0,0,OMZ:SA:10559,Europe/Paris,,OMZ, +OMZ:SP:21089,1,"LAQUENEXY",49.078178,6.316323,0,0,OMZ:SA:10560,Europe/Paris,,OMZ, +OMZ:SP:21092,1,"LAUVALLIERES",49.124121,6.259923,0,0,OMZ:SA:10562,Europe/Paris,,OMZ, +OMZ:SP:21093,1,"RUE DU MOULIN",49.155819,6.105067,0,0,OMZ:SA:10563,Europe/Paris,,OMZ, +OMZ:SP:21095,1,"HOPITAL MERCY",49.08583,6.24386,0,0,OMZ:SA:10692,Europe/Paris,,OMZ, +OMZ:SP:21096,1,"TELEGRAPHE",49.146915,6.003114,0,0,OMZ:SA:10566,Europe/Paris,,OMZ, +OMZ:SP:21097,1,"TELEGRAPHE",49.146804,6.003065,0,0,OMZ:SA:10566,Europe/Paris,,OMZ, +OMZ:SP:21098,1,"VIGNOTTES",49.041864,6.156111,0,0,OMZ:SA:10567,Europe/Paris,,OMZ, +OMZ:SP:21099,1,"VIGNOTTES",49.04201,6.156139,0,0,OMZ:SA:10567,Europe/Paris,,OMZ, +OMZ:SP:21100,1,"RUE D'ARS",49.111983,6.028914,0,0,OMZ:SA:10496,Europe/Paris,,OMZ, +OMZ:SP:21101,1,"GRANDES ECOLES",49.09352,6.229699,0,0,OMZ:SA:10690,Europe/Paris,,OMZ, +OMZ:SP:21102,1,"GRANDES ECOLES",49.094288,6.229231,0,0,OMZ:SA:10690,Europe/Paris,,OMZ, +OMZ:SP:21103,1,"VERDUN",49.080169,6.058095,0,0,OMZ:SA:10525,Europe/Paris,,OMZ, +OMZ:SP:21104,1,"RUISSEAU",49.151022,6.158542,0,0,OMZ:SA:10569,Europe/Paris,,OMZ, +OMZ:SP:21105,1,"RUISSEAU",49.151112,6.158716,0,0,OMZ:SA:10569,Europe/Paris,,OMZ, +OMZ:SP:21106,1,"CHAPITRE",49.152122,6.161751,0,0,OMZ:SA:10570,Europe/Paris,,OMZ, +OMZ:SP:21107,1,"CHAPITRE",49.152043,6.161432,0,0,OMZ:SA:10570,Europe/Paris,,OMZ, +OMZ:SP:21108,1,"POULMAIRE",49.151093,6.165768,0,0,OMZ:SA:10571,Europe/Paris,,OMZ, +OMZ:SP:21109,1,"POULMAIRE",49.151192,6.166926,0,0,OMZ:SA:10571,Europe/Paris,,OMZ, +OMZ:SP:21110,1,"REPUBLIQUE",49.114359,6.1725,0,0,OMZ:SA:10668,Europe/Paris,,OMZ, +OMZ:SP:21117,1,"PAQUERETTES",49.094384,6.123934,0,0,OMZ:SA:10576,Europe/Paris,,OMZ, +OMZ:SP:21118,1,"PAQUERETTES",49.094455,6.12373,0,0,OMZ:SA:10576,Europe/Paris,,OMZ, +OMZ:SP:21119,1,"LES MOULINS",49.129983,6.237456,0,0,OMZ:SA:10577,Europe/Paris,,OMZ, +OMZ:SP:21120,1,"LES MOULINS",49.130018,6.237729,0,0,OMZ:SA:10577,Europe/Paris,,OMZ, +OMZ:SP:21123,1,"TROIS HAIES",49.090713,6.122692,0,0,OMZ:SA:10579,Europe/Paris,,OMZ, +OMZ:SP:21124,1,"TROIS HAIES",49.090659,6.123134,0,0,OMZ:SA:10579,Europe/Paris,,OMZ, +OMZ:SP:21125,1,"ZAC LES GRAVIERES",49.077468,6.113065,0,0,OMZ:SA:10580,Europe/Paris,,OMZ, +OMZ:SP:21126,1,"WAVES ACTISUD",49.081041,6.102594,0,0,OMZ:SA:10581,Europe/Paris,,OMZ, +OMZ:SP:21128,1,"TEMPLE",49.078842,6.069938,0,0,OMZ:SA:10583,Europe/Paris,,OMZ, +OMZ:SP:21129,1,"TEMPLE",49.07911,6.069737,0,0,OMZ:SA:10583,Europe/Paris,,OMZ, +OMZ:SP:21130,1,"JEAN FERRAT",49.078385,6.081764,0,0,OMZ:SA:10584,Europe/Paris,,OMZ, +OMZ:SP:21131,1,"JEAN FERRAT",49.07752,6.080705,0,0,OMZ:SA:10584,Europe/Paris,,OMZ, +OMZ:SP:21132,1,"JUSTICE",49.166546,6.03834,0,0,OMZ:SA:10477,Europe/Paris,,OMZ, +OMZ:SP:21133,1,"JURY CORBON",49.067498,6.256537,0,0,OMZ:SA:10585,Europe/Paris,,OMZ, +OMZ:SP:21134,1,"PETIT COEUR",49.166103,6.040458,0,0,OMZ:SA:10531,Europe/Paris,,OMZ, +OMZ:SP:21150,1,"CENTRE POMPIDOU METZ",49.108298,6.180342,0,0,OMZ:SA:10673,Europe/Paris,,OMZ, +OMZ:SP:21152,1,"CENTRE POMPIDOU METZ",49.108441,6.180427,0,0,OMZ:SA:10673,Europe/Paris,,OMZ, +OMZ:SP:21164,1,"OBERLING",49.103092,6.205012,0,0,OMZ:SA:10166,Europe/Paris,,OMZ, +OMZ:SP:21167,1,"HOPITAL SCHUMAN",49.12335,6.242088,0,0,OMZ:SA:10600,Europe/Paris,,OMZ, +OMZ:SP:21170,1,"GARE DE WOIPPY",49.148634,6.155258,0,0,SIN:SA:OCE87192088,Europe/Paris,,OMZ, +OMZ:SP:21171,1,"GARE DE WOIPPY",49.148682,6.155426,0,0,SIN:SA:OCE87192088,Europe/Paris,,OMZ, +OMZ:SP:21185,1,"JUNGLING",49.148473,6.152707,0,0,OMZ:SA:10602,Europe/Paris,,OMZ, +OMZ:SP:21186,1,"JUNGLING",49.148411,6.152358,0,0,OMZ:SA:10602,Europe/Paris,,OMZ, +OMZ:SP:21187,1,"CLOUTIERS",49.114855,6.229297,0,0,OMZ:SA:10155,Europe/Paris,,OMZ, +OMZ:SP:21188,1,"CLOUTIERS",49.114797,6.229454,0,0,OMZ:SA:10155,Europe/Paris,,OMZ, +OMZ:SP:21192,1,"AMPERE",49.10333,6.228751,0,0,OMZ:SA:10612,Europe/Paris,,OMZ, +OMZ:SP:21193,1,"AMPERE",49.103633,6.228885,0,0,OMZ:SA:10612,Europe/Paris,,OMZ, +OMZ:SP:21194,1,"CLAUDEL",49.101722,6.199697,0,0,OMZ:SA:10165,Europe/Paris,,OMZ, +OMZ:SP:21205,1,"POLE MULTIMODAL",49.107502,6.177571,0,0,OMZ:SA:10619,Europe/Paris,,OMZ, +OMZ:SP:21206,1,"POLE MULTIMODAL",49.107628,6.177904,0,0,OMZ:SA:10619,Europe/Paris,,OMZ, +OMZ:SP:21207,1,"POLE MULTIMODAL",49.107382,6.177498,0,0,OMZ:SA:10619,Europe/Paris,,OMZ, +OMZ:SP:21208,1,"POLE MULTIMODAL",49.107492,6.177825,0,0,OMZ:SA:10619,Europe/Paris,,OMZ, +OMZ:SP:21209,1,"POLE MULTIMODAL",49.10756,6.177989,0,0,OMZ:SA:10619,Europe/Paris,,OMZ, +OMZ:SP:21210,1,"POLE MULTIMODAL",49.107563,6.177741,0,0,OMZ:SA:10619,Europe/Paris,,OMZ, +OMZ:SP:21211,1,"POLE MULTIMODAL",49.107431,6.177643,0,0,OMZ:SA:10619,Europe/Paris,,OMZ, +OMZ:SP:21212,1,"POLE MULTIMODAL",49.10745,6.177414,0,0,OMZ:SA:10619,Europe/Paris,,OMZ, +OMZ:SP:21213,1,"ORLY",49.075613,6.116799,0,0,OMZ:SA:10620,Europe/Paris,,OMZ, +OMZ:SP:21214,1,"ORLY",49.075875,6.116839,0,0,OMZ:SA:10620,Europe/Paris,,OMZ, +OMZ:SP:21215,1,"CHANTRENNE",49.144098,6.010361,0,0,OMZ:SA:10621,Europe/Paris,,OMZ, +OMZ:SP:21216,1,"PREVILLE",49.102755,6.104556,0,0,OMZ:SA:10036,Europe/Paris,,OMZ, +OMZ:SP:21218,1,"BELLEVUE",49.172239,6.152838,0,0,OMZ:SA:10623,Europe/Paris,,OMZ, +OMZ:SP:21221,1,"STE-AGATHE",49.16426,6.153709,0,0,OMZ:SA:10625,Europe/Paris,,OMZ, +OMZ:SP:21222,1,"STE-AGATHE",49.164147,6.15392,0,0,OMZ:SA:10625,Europe/Paris,,OMZ, +OMZ:SP:21229,1,"POINCARE",49.116703,6.168605,0,0,OMZ:SA:10629,Europe/Paris,,OMZ, +OMZ:SP:21230,1,"POINCARE",49.116926,6.16884,0,0,OMZ:SA:10629,Europe/Paris,,OMZ, +OMZ:SP:21231,1,"LAVANDIERES",49.148296,6.124059,0,0,OMZ:SA:10630,Europe/Paris,,OMZ, +OMZ:SP:21232,1,"LAVANDIERES",49.148385,6.124206,0,0,OMZ:SA:10630,Europe/Paris,,OMZ, +OMZ:SP:21239,1,"MAZELLE",49.114293,6.182271,0,0,OMZ:SA:10172,Europe/Paris,,OMZ, +OMZ:SP:21240,1,"ST-REMY",49.173757,6.161965,0,0,OMZ:SA:10633,Europe/Paris,,OMZ, +OMZ:SP:21241,1,"D953",49.162709,6.160139,0,0,OMZ:SA:10634,Europe/Paris,,OMZ, +OMZ:SP:21242,1,"D953",49.162748,6.160301,0,0,OMZ:SA:10634,Europe/Paris,,OMZ, +OMZ:SP:21243,1,"BERLANGE",49.155729,6.157042,0,0,OMZ:SA:10635,Europe/Paris,,OMZ, +OMZ:SP:21244,1,"BERLANGE",49.156139,6.157314,0,0,OMZ:SA:10635,Europe/Paris,,OMZ, +OMZ:SP:21253,1,"GOUSSEL",49.101573,6.194526,0,0,OMZ:SA:10164,Europe/Paris,,OMZ, +OMZ:SP:21255,1,"GRIGY",49.094942,6.220846,0,0,OMZ:SA:10641,Europe/Paris,,OMZ, +OMZ:SP:21256,1,"GRIGY",49.095111,6.220787,0,0,OMZ:SA:10641,Europe/Paris,,OMZ, +OMZ:SP:21263,1,"ROSE GONTHIER",49.103621,6.243188,0,0,OMZ:SA:10644,Europe/Paris,,OMZ, +OMZ:SP:21264,1,"ROSE GONTHIER",49.103605,6.243327,0,0,OMZ:SA:10644,Europe/Paris,,OMZ, +OMZ:SP:21266,1,"TANNEURS",49.120157,6.184085,0,0,OMZ:SA:10258,Europe/Paris,,OMZ, +OMZ:SP:21269,1,"P+R ROCHAMBEAU",49.128726,6.170968,0,0,OMZ:SA:10643,Europe/Paris,,OMZ, +OMZ:SP:21270,1,"P+R ROCHAMBEAU",49.129069,6.170938,0,0,OMZ:SA:10643,Europe/Paris,,OMZ, +OMZ:SP:21271,1,"DALES",49.133262,6.164217,0,0,OMZ:SA:10087,Europe/Paris,,OMZ, +OMZ:SP:21272,1,"RUELLE CHENEAU",49.115065,6.197867,0,0,OMZ:SA:10645,Europe/Paris,,OMZ, +OMZ:SP:21273,1,"RUELLE CHENEAU",49.115106,6.196945,0,0,OMZ:SA:10645,Europe/Paris,,OMZ, +OMZ:SP:21274,1,"ROUTE DE BORNY",49.114977,6.1928,0,0,OMZ:SA:10646,Europe/Paris,,OMZ, +OMZ:SP:21275,1,"ROUTE DE BORNY",49.115073,6.192005,0,0,OMZ:SA:10646,Europe/Paris,,OMZ, +OMZ:SP:21276,1,"PONT ROUGE",49.114865,6.188836,0,0,OMZ:SA:10647,Europe/Paris,,OMZ, +OMZ:SP:21277,1,"PONT ROUGE",49.114709,6.189086,0,0,OMZ:SA:10647,Europe/Paris,,OMZ, +OMZ:SP:21278,1,"SERRURIERS",49.118616,6.240034,0,0,OMZ:SA:10158,Europe/Paris,,OMZ, +OMZ:SP:21286,1,"SUGNON",49.094114,6.163399,0,0,OMZ:SA:10651,Europe/Paris,,OMZ, +OMZ:SP:21287,1,"SUGNON",49.094047,6.163126,0,0,OMZ:SA:10651,Europe/Paris,,OMZ, +OMZ:SP:21295,1,"TOURNEBRIDE",49.085967,6.113334,0,0,OMZ:SA:10133,Europe/Paris,,OMZ, +OMZ:SP:21302,1,"HESTAUX",49.101026,6.191654,0,0,OMZ:SA:10163,Europe/Paris,,OMZ, +OMZ:SP:21304,1,"POTIERS D'ETAIN",49.116151,6.243566,0,0,OMZ:SA:10159,Europe/Paris,,OMZ, +OMZ:SP:21305,1,"P+R WOIPPY",49.15036,6.17332,0,0,OMZ:SA:10657,Europe/Paris,,OMZ, +OMZ:SP:21306,1,"P+R WOIPPY",49.150339,6.173323,0,0,OMZ:SA:10657,Europe/Paris,,OMZ, +OMZ:SP:21307,1,"DEUX FONTAINES",49.149376,6.172092,0,0,OMZ:SA:10081,Europe/Paris,,OMZ, +OMZ:SP:21308,1,"DEUX FONTAINES",49.149361,6.172152,0,0,OMZ:SA:10081,Europe/Paris,,OMZ, +OMZ:SP:21309,1,"DOCTEUR CHARCOT",49.148333,6.166956,0,0,OMZ:SA:10659,Europe/Paris,,OMZ, +OMZ:SP:21310,1,"DOCTEUR CHARCOT",49.148334,6.167002,0,0,OMZ:SA:10659,Europe/Paris,,OMZ, +OMZ:SP:21311,1,"EMILE ROUX",49.144722,6.166309,0,0,OMZ:SA:10660,Europe/Paris,,OMZ, +OMZ:SP:21312,1,"EMILE ROUX",49.144729,6.166338,0,0,OMZ:SA:10660,Europe/Paris,,OMZ, +OMZ:SP:21313,1,"INTENDANTS JOBA",49.141565,6.165318,0,0,OMZ:SA:10324,Europe/Paris,,OMZ, +OMZ:SP:21314,1,"INTENDANTS JOBA",49.141065,6.165638,0,0,OMZ:SA:10324,Europe/Paris,,OMZ, +OMZ:SP:21315,1,"RENE CASSIN",49.13589,6.16593,0,0,OMZ:SA:10662,Europe/Paris,,OMZ, +OMZ:SP:21316,1,"RENE CASSIN",49.135433,6.166366,0,0,OMZ:SA:10662,Europe/Paris,,OMZ, +OMZ:SP:21317,1,"GEORGES BERNANOS",49.133304,6.168915,0,0,OMZ:SA:10552,Europe/Paris,,OMZ, +OMZ:SP:21318,1,"GEORGES BERNANOS",49.133329,6.168924,0,0,OMZ:SA:10552,Europe/Paris,,OMZ, +OMZ:SP:21319,1,"P+R ROCHAMBEAU",49.129617,6.170192,0,0,OMZ:SA:10643,Europe/Paris,,OMZ, +OMZ:SP:21320,1,"P+R ROCHAMBEAU",49.129626,6.170214,0,0,OMZ:SA:10643,Europe/Paris,,OMZ, +OMZ:SP:21321,1,"PONTIFFROY",49.127136,6.174852,0,0,OMZ:SA:10090,Europe/Paris,,OMZ, +OMZ:SP:21322,1,"PONTIFFROY",49.127142,6.174904,0,0,OMZ:SA:10090,Europe/Paris,,OMZ, +OMZ:SP:21323,1,"SQUARE DU LUXEMBOURG",49.121251,6.168907,0,0,OMZ:SA:10007,Europe/Paris,,OMZ, +OMZ:SP:21324,1,"SQUARE DU LUXEMBOURG",49.121237,6.168938,0,0,OMZ:SA:10007,Europe/Paris,,OMZ, +OMZ:SP:21325,1,"ST-VINCENT",49.123278,6.171381,0,0,OMZ:SA:10667,Europe/Paris,,OMZ, +OMZ:SP:21326,1,"ST-VINCENT",49.123879,6.172155,0,0,OMZ:SA:10667,Europe/Paris,,OMZ, +OMZ:SP:21327,1,"REPUBLIQUE",49.114999,6.173374,0,0,OMZ:SA:10668,Europe/Paris,,OMZ, +OMZ:SP:21328,1,"REPUBLIQUE",49.115844,6.172889,0,0,OMZ:SA:10668,Europe/Paris,,OMZ, +OMZ:SP:21329,1,"CITE U",49.120318,6.159562,0,0,OMZ:SA:10669,Europe/Paris,,OMZ, +OMZ:SP:21330,1,"CITE U",49.119987,6.159675,0,0,OMZ:SA:10669,Europe/Paris,,OMZ, +OMZ:SP:21331,1,"SAULCY",49.120738,6.164675,0,0,OMZ:SA:10670,Europe/Paris,,OMZ, +OMZ:SP:21332,1,"SAULCY",49.120431,6.164551,0,0,OMZ:SA:10670,Europe/Paris,,OMZ, +OMZ:SP:21333,1,"ROI GEORGE",49.11064,6.171608,0,0,OMZ:SA:10671,Europe/Paris,,OMZ, +OMZ:SP:21334,1,"ROI GEORGE",49.110662,6.17162,0,0,OMZ:SA:10671,Europe/Paris,,OMZ, +OMZ:SP:21335,1,"GARE",49.11035,6.17761,0,0,OMZ:SA:10672,Europe/Paris,,OMZ, +OMZ:SP:21336,1,"GARE",49.110389,6.17761,0,0,OMZ:SA:10672,Europe/Paris,,OMZ, +OMZ:SP:21337,1,"CENTRE POMPIDOU METZ",49.109089,6.180892,0,0,OMZ:SA:10673,Europe/Paris,,OMZ, +OMZ:SP:21338,1,"CENTRE POMPIDOU METZ",49.109106,6.180866,0,0,OMZ:SA:10673,Europe/Paris,,OMZ, +OMZ:SP:21339,1,"SEILLE",49.111727,6.18591,0,0,OMZ:SA:10674,Europe/Paris,,OMZ, +OMZ:SP:21340,1,"SEILLE",49.111661,6.185613,0,0,OMZ:SA:10674,Europe/Paris,,OMZ, +OMZ:SP:21341,1,"HOPITAL LEGOUEST",49.111694,6.192063,0,0,OMZ:SA:10675,Europe/Paris,,OMZ, +OMZ:SP:21342,1,"HOPITAL LEGOUEST",49.111857,6.192934,0,0,OMZ:SA:10675,Europe/Paris,,OMZ, +OMZ:SP:21343,1,"FELIX ALCAN",49.112559,6.199143,0,0,OMZ:SA:10676,Europe/Paris,,OMZ, +OMZ:SP:21344,1,"FELIX ALCAN",49.112743,6.197768,0,0,OMZ:SA:10676,Europe/Paris,,OMZ, +OMZ:SP:21345,1,"CIMETIERE DE L'EST",49.109376,6.204202,0,0,OMZ:SA:10677,Europe/Paris,,OMZ, +OMZ:SP:21346,1,"CIMETIERE DE L'EST",49.108853,6.204944,0,0,OMZ:SA:10677,Europe/Paris,,OMZ, +OMZ:SP:21347,1,"BELLETANCHE",49.110637,6.21065,0,0,OMZ:SA:10678,Europe/Paris,,OMZ, +OMZ:SP:21348,1,"BELLETANCHE",49.110661,6.210629,0,0,OMZ:SA:10678,Europe/Paris,,OMZ, +OMZ:SP:21349,1,"PROVENCE",49.113254,6.216816,0,0,OMZ:SA:10679,Europe/Paris,,OMZ, +OMZ:SP:21350,1,"PROVENCE",49.113277,6.216809,0,0,OMZ:SA:10679,Europe/Paris,,OMZ, +OMZ:SP:21351,1,"LES BORDES",49.114371,6.220989,0,0,OMZ:SA:10152,Europe/Paris,,OMZ, +OMZ:SP:21352,1,"LES BORDES",49.114393,6.220976,0,0,OMZ:SA:10152,Europe/Paris,,OMZ, +OMZ:SP:21353,1,"HAUTS DE BLEMONT",49.115609,6.225863,0,0,OMZ:SA:10681,Europe/Paris,,OMZ, +OMZ:SP:21354,1,"HAUTS DE BLEMONT",49.115631,6.225848,0,0,OMZ:SA:10681,Europe/Paris,,OMZ, +OMZ:SP:21355,1,"CLOUTIERS",49.114064,6.230091,0,0,OMZ:SA:10155,Europe/Paris,,OMZ, +OMZ:SP:21356,1,"CLOUTIERS",49.114071,6.230131,0,0,OMZ:SA:10155,Europe/Paris,,OMZ, +OMZ:SP:21357,1,"COLOMBEY",49.110849,6.230531,0,0,OMZ:SA:10683,Europe/Paris,,OMZ, +OMZ:SP:21358,1,"COLOMBEY",49.110853,6.230575,0,0,OMZ:SA:10683,Europe/Paris,,OMZ, +OMZ:SP:21359,1,"JULES MICHELET",49.107664,6.228689,0,0,OMZ:SA:10334,Europe/Paris,,OMZ, +OMZ:SP:21360,1,"JULES MICHELET",49.107637,6.228691,0,0,OMZ:SA:10334,Europe/Paris,,OMZ, +OMZ:SP:21361,1,"GUYENNE",49.111437,6.218903,0,0,OMZ:SA:10685,Europe/Paris,,OMZ, +OMZ:SP:21362,1,"GUYENNE",49.111446,6.218938,0,0,OMZ:SA:10685,Europe/Paris,,OMZ, +OMZ:SP:21363,1,"HENRI BERGSON",49.108548,6.220664,0,0,OMZ:SA:10686,Europe/Paris,,OMZ, +OMZ:SP:21364,1,"HENRI BERGSON",49.108556,6.220695,0,0,OMZ:SA:10686,Europe/Paris,,OMZ, +OMZ:SP:21365,1,"GRAHAM BELL",49.105093,6.223321,0,0,OMZ:SA:10687,Europe/Paris,,OMZ, +OMZ:SP:21366,1,"GRAHAM BELL",49.105107,6.223361,0,0,OMZ:SA:10687,Europe/Paris,,OMZ, +OMZ:SP:21367,1,"FRANCOIS ARAGO",49.101865,6.224261,0,0,OMZ:SA:10688,Europe/Paris,,OMZ, +OMZ:SP:21368,1,"FRANCOIS ARAGO",49.101866,6.224302,0,0,OMZ:SA:10688,Europe/Paris,,OMZ, +OMZ:SP:21369,1,"LINIERES",49.096493,6.226113,0,0,OMZ:SA:10689,Europe/Paris,,OMZ, +OMZ:SP:21370,1,"LINIERES",49.096519,6.226123,0,0,OMZ:SA:10689,Europe/Paris,,OMZ, +OMZ:SP:21371,1,"GRANDES ECOLES",49.09336,6.230113,0,0,OMZ:SA:10690,Europe/Paris,,OMZ, +OMZ:SP:21372,1,"GRANDES ECOLES",49.093383,6.230109,0,0,OMZ:SA:10690,Europe/Paris,,OMZ, +OMZ:SP:21373,1,"P+R FOIRE EXPO",49.091479,6.231406,0,0,OMZ:SA:10691,Europe/Paris,,OMZ, +OMZ:SP:21374,1,"P+R FOIRE EXPO",49.091476,6.231446,0,0,OMZ:SA:10691,Europe/Paris,,OMZ, +OMZ:SP:21375,1,"HOPITAL MERCY",49.08457,6.242094,0,0,OMZ:SA:10692,Europe/Paris,,OMZ, +OMZ:SP:21376,1,"HOPITAL MERCY",49.084597,6.2421,0,0,OMZ:SA:10692,Europe/Paris,,OMZ, +OMZ:SP:21377,1,"MATERNITE",49.08216,6.23901,0,0,OMZ:SA:10693,Europe/Paris,,OMZ, +OMZ:SP:21378,1,"MATERNITE",49.082089,6.238728,0,0,OMZ:SA:10693,Europe/Paris,,OMZ, +OMZ:SP:21391,1,"ZONE HERGOTT",49.159781,6.158916,0,0,OMZ:SA:10709,Europe/Paris,,OMZ, +OMZ:SP:21396,1,"VERNEVILLE",49.145226,6.005294,0,0,OMZ:SA:10707,Europe/Paris,,OMZ, +OMZ:SP:21397,1,"VERNEVILLE",49.145085,6.005816,0,0,OMZ:SA:10707,Europe/Paris,,OMZ, +OMZ:SP:21400,1,"ZONE HERGOTT",49.158799,6.158671,0,0,OMZ:SA:10709,Europe/Paris,,OMZ, +OMZ:SP:21401,1,"VERLIN",49.1133,6.027807,0,0,OMZ:SA:10710,Europe/Paris,,OMZ, +OMZ:SP:21402,1,"VERLIN",49.113355,6.027959,0,0,OMZ:SA:10710,Europe/Paris,,OMZ, +OMZ:SP:21403,1,"JEAN LAURAIN",49.153319,6.139988,0,0,OMZ:SA:10711,Europe/Paris,,OMZ, +OMZ:SP:21404,1,"JEAN LAURAIN",49.153092,6.139902,0,0,OMZ:SA:10711,Europe/Paris,,OMZ, +OMZ:SP:21405,1,"COTEAUX",49.154808,6.148127,0,0,OMZ:SA:10712,Europe/Paris,,OMZ, +OMZ:SP:21406,1,"COTEAUX",49.154801,6.148471,0,0,OMZ:SA:10712,Europe/Paris,,OMZ, +OMZ:SP:21408,1,"METZANINE",49.107049,6.231263,0,0,OMZ:SA:10714,Europe/Paris,,OMZ, +OMZ:SP:21409,1,"METZANINE",49.106731,6.231498,0,0,OMZ:SA:10714,Europe/Paris,,OMZ, +OMZ:SP:21413,1,"GRAVIERES",49.080426,6.110713,0,0,OMZ:SA:10716,Europe/Paris,,OMZ, +OMZ:SP:21414,1,"FOSSE",49.100238,6.145135,0,0,OMZ:SA:10718,Europe/Paris,,OMZ, +OMZ:SP:21418,1,"LOTHAIRE",49.100287,6.180865,0,0,OMZ:SA:10058,Europe/Paris,,OMZ, +OMZ:SP:21419,1,"OBERLING",49.103204,6.204033,0,0,OMZ:SA:10166,Europe/Paris,,OMZ, +OMZ:SP:21421,1,"FOSSE",49.100443,6.145396,0,0,OMZ:SA:10718,Europe/Paris,,OMZ, +OMZ:SP:21426,1,"TILLEULS",49.133853,6.207198,0,0,OMZ:SA:10322,Europe/Paris,,OMZ, +OMZ:SP:21429,1,"CHEVROTTES",49.092667,6.274526,0,0,OMZ:SA:10720,Europe/Paris,,OMZ, +OMZ:SP:21430,1,"CHEVROTTES",49.092791,6.274357,0,0,OMZ:SA:10720,Europe/Paris,,OMZ, +OMZ:SP:21549,1,"PAUL JOLY",49.063942,6.148265,0,0,OMZ:SA:10789,Europe/Paris,,OMZ, +OMZ:SP:21550,1,"PAUL JOLY",49.063957,6.148419,0,0,OMZ:SA:10789,Europe/Paris,,OMZ, +OMZ:SP:21552,1,"ROUTE DE BOULAY",49.126692,6.27577,0,0,OMZ:SA:10790,Europe/Paris,,OMZ, +OMZ:SP:21553,1,"ROUTE DE BOULAY",49.126606,6.26771,0,0,OMZ:SA:10790,Europe/Paris,,OMZ, +OMZ:SP:21554,1,"MAS AU LIEVRE",49.131539,6.275074,0,0,OMZ:SA:10491,Europe/Paris,,OMZ, +OMZ:SP:21574,1,"SARRE",49.114652,6.231016,0,0,OMZ:SA:10800,Europe/Paris,,OMZ, +OMZ:SP:21575,1,"SARRE",49.114632,6.233649,0,0,OMZ:SA:10800,Europe/Paris,,OMZ, +OMZ:SP:21577,1,"19 NOVEMBRE",49.092054,6.16141,0,0,OMZ:SA:10802,Europe/Paris,,OMZ, +OMZ:SP:21578,1,"19 NOVEMBRE",49.091852,6.161423,0,0,OMZ:SA:10802,Europe/Paris,,OMZ, +OMZ:SP:21579,1,"MARC SANGNIER",49.089264,6.159224,0,0,OMZ:SA:10803,Europe/Paris,,OMZ, +OMZ:SP:21580,1,"MARC SANGNIER",49.089419,6.159492,0,0,OMZ:SA:10803,Europe/Paris,,OMZ, +OMZ:SP:21581,1,"COUBERTIN",49.091872,6.144876,0,0,OMZ:SA:10278,Europe/Paris,,OMZ, +OMZ:SP:21582,1,"LYAUTEY",49.093998,6.168257,0,0,OMZ:SA:10017,Europe/Paris,,OMZ, +OMZ:SP:21583,1,"SQUARE DU LUXEMBOURG",49.121477,6.168071,0,0,OMZ:SA:10007,Europe/Paris,,OMZ, +OMZ:SP:21585,1,"ROI GEORGE",49.110816,6.171037,0,0,OMZ:SA:10671,Europe/Paris,,OMZ, +OMZ:SP:21586,1,"ROI GEORGE",49.11087,6.171084,0,0,OMZ:SA:10671,Europe/Paris,,OMZ, +OMZ:SP:21587,1,"HOPITAL SCHUMAN",49.12335,6.242088,0,0,OMZ:SA:10600,Europe/Paris,,OMZ, +OMZ:SP:21588,1,"FOURNIER",49.122436,6.183335,0,0,OMZ:SA:10804,Europe/Paris,,OMZ, +OMZ:SP:21589,1,"FOURNIER",49.122394,6.183452,0,0,OMZ:SA:10804,Europe/Paris,,OMZ, +OMZ:SP:21590,1,"SIMMINGER",49.089919,6.144544,0,0,OMZ:SA:10277,Europe/Paris,,OMZ, +OMZ:SP:21591,1,"SIMMINGER",49.089883,6.144691,0,0,OMZ:SA:10277,Europe/Paris,,OMZ, +OMZ:SP:21592,1,"DEUX FONTAINES",49.148041,6.171433,0,0,OMZ:SA:10081,Europe/Paris,,OMZ, +OMZ:SP:21593,1,"CLEMENT ADER",49.088777,6.150808,0,0,OMZ:SA:10805,Europe/Paris,,OMZ, +OMZ:SP:21594,1,"CLEMENT ADER",49.089085,6.150313,0,0,OMZ:SA:10805,Europe/Paris,,OMZ, +OMZ:SP:21596,1,"LOTHAIRE",49.100393,6.181052,0,0,OMZ:SA:10058,Europe/Paris,,OMZ, +OMZ:SP:21597,1,"ROSE MARCUS",49.147523,6.148621,0,0,OMZ:SA:10806,Europe/Paris,,OMZ, +OMZ:SP:21598,1,"ROSE MARCUS",49.147354,6.148508,0,0,OMZ:SA:10806,Europe/Paris,,OMZ, +OMZ:SP:21599,1,"JULES MICHELET",49.107583,6.227988,0,0,OMZ:SA:10334,Europe/Paris,,OMZ, +OMZ:SP:21600,1,"ST-LIVIER",49.100238,6.175488,0,0,OMZ:SA:10095,Europe/Paris,,OMZ, +OMZ:SP:21601,1,"LACRETELLE",49.112754,6.184942,0,0,OMZ:SA:10807,Europe/Paris,,OMZ, +OMZ:SP:21602,1,"LACRETELLE",49.113247,6.185746,0,0,OMZ:SA:10807,Europe/Paris,,OMZ, +OMZ:SP:21603,1,"CHAPPE",49.107009,6.222241,0,0,OMZ:SA:10210,Europe/Paris,,OMZ, +OMZ:SP:21604,1,"VECRIN",49.091551,6.266716,0,0,OMZ:SA:10808,Europe/Paris,,OMZ, +OMZ:SP:21605,1,"VECRIN",49.091517,6.266945,0,0,OMZ:SA:10808,Europe/Paris,,OMZ, +OMZ:SP:21607,1,"FRONTIGNY",49.05856,6.26377,0,0,OMZ:SA:10809,Europe/Paris,,OMZ, +OMZ:SP:21608,1,"LANCEUMONT",49.054228,6.275283,0,0,OMZ:SA:10810,Europe/Paris,,OMZ, +OMZ:SP:21609,1,"LANCEUMONT",49.05399,6.253428,0,0,OMZ:SA:10810,Europe/Paris,,OMZ, +OMZ:SP:21610,1,"LES TARREAUX",49.044075,6.27072,0,0,OMZ:SA:10811,Europe/Paris,,OMZ, +OMZ:SP:21611,1,"LES TARREAUX",49.0439,6.27061,0,0,OMZ:SA:10811,Europe/Paris,,OMZ, +OMZ:SP:21612,1,"MECLEUVES",49.04225,6.268461,0,0,OMZ:SA:10812,Europe/Paris,,OMZ, +OMZ:SP:21613,1,"MECLEUVES",49.0424,6.26812,0,0,OMZ:SA:10812,Europe/Paris,,OMZ, +OMZ:SP:21616,1,"VILLAGE CANADIEN",49.056185,6.2396,0,0,OMZ:SA:10814,Europe/Paris,,OMZ, +OMZ:SP:21617,1,"VILLAGE CANADIEN",49.05654,6.23932,0,0,OMZ:SA:10814,Europe/Paris,,OMZ, +OMZ:SP:21618,1,"PELTRE GARE",49.07438,6.22364,0,0,OMZ:SA:10815,Europe/Paris,,OMZ, +OMZ:SP:21619,1,"PELTRE GARE",49.07433,6.2227,0,0,OMZ:SA:10815,Europe/Paris,,OMZ, +OMZ:SP:21620,1,"GARGAN",49.07572,6.22675,0,0,OMZ:SA:10816,Europe/Paris,,OMZ, +OMZ:SP:21621,1,"GARGAN",49.07566,6.22684,0,0,OMZ:SA:10816,Europe/Paris,,OMZ, +OMZ:SP:21622,1,"PEUMONT",49.07681,6.23214,0,0,OMZ:SA:10817,Europe/Paris,,OMZ, +OMZ:SP:21623,1,"PEUMONT",49.0767,6.23207,0,0,OMZ:SA:10817,Europe/Paris,,OMZ, +OMZ:SP:21624,1,"PETIT JURY",49.06709,6.24555,0,0,OMZ:SA:10818,Europe/Paris,,OMZ, +OMZ:SP:21625,1,"JURY",49.069668,6.253471,0,0,OMZ:SA:10819,Europe/Paris,,OMZ, +OMZ:SP:21626,1,"JURY",49.069541,6.253196,0,0,OMZ:SA:10819,Europe/Paris,,OMZ, +OMZ:SP:21629,1,"LES VALLONS",49.07776,6.26511,0,0,OMZ:SA:10821,Europe/Paris,,OMZ, +OMZ:SP:21630,1,"LES VALLONS",49.07818,6.26656,0,0,OMZ:SA:10821,Europe/Paris,,OMZ, +OMZ:SP:21633,1,"FRONTIGNY",49.05852,6.2642,0,0,OMZ:SA:10809,Europe/Paris,,OMZ, +OMZ:SP:21634,1,"PETIT JURY",49.06695,6.24542,0,0,OMZ:SA:10818,Europe/Paris,,OMZ, +OMZ:SP:21635,1,"HOPITAL MERCY",49.08584,6.24371,0,0,OMZ:SA:10692,Europe/Paris,,OMZ, +OMZ:SP:21638,1,"COMEDIE",49.120888,6.172755,0,0,OMZ:SA:10072,Europe/Paris,,OMZ, +OMZ:SP:21644,1,"PRE NET",49.081245,6.308129,0,0,OMZ:SA:10828,Europe/Paris,,OMZ, +OMZ:SP:21645,1,"PRE NET",49.081094,6.308261,0,0,OMZ:SA:10828,Europe/Paris,,OMZ, +OMZ:SP:21650,1,"BELLE FONTAINE",49.066985,6.142763,0,0,OMZ:SA:10831,Europe/Paris,,OMZ, +OMZ:SP:21651,1,"BELLE FONTAINE",49.066876,6.142687,0,0,OMZ:SA:10831,Europe/Paris,,OMZ, +OMZ:SP:21652,1,"ST-ANDRE",49.095161,6.159006,0,0,OMZ:SA:10015,Europe/Paris,,OMZ, +OMZ:SP:21654,1,"MARLY",49.061007,6.166711,0,0,OMZ:SA:10832,Europe/Paris,,OMZ, +OMZ:SP:21655,1,"PLACE DE GAULLE",49.060063,6.162657,0,0,OMZ:SA:10285,Europe/Paris,,OMZ, +OMZ:SP:21656,1,"CROIX ST JOSEPH",49.058964,6.159215,0,0,OMZ:SA:10833,Europe/Paris,,OMZ, +OMZ:SP:21657,1,"CROIX ST JOSEPH",49.058975,6.158888,0,0,OMZ:SA:10833,Europe/Paris,,OMZ, +OMZ:SP:21660,1,"CHESNY MAIRIE",49.054562,6.242311,0,0,OMZ:SA:10835,Europe/Paris,,OMZ, +OMZ:SP:21661,1,"CHESNY MAIRIE",49.054713,6.243257,0,0,OMZ:SA:10835,Europe/Paris,,OMZ, +OMZ:SP:21691,1,"CAMELIAS",49.064173,6.162733,0,0,OMZ:SA:10288,Europe/Paris,,OMZ, +OMZ:SP:21695,1,"LAUVALLIERES",49.124121,6.259923,0,0,OMZ:SA:10562,Europe/Paris,,OMZ, +OMZ:SP:21696,1,"DRAPIERS",49.109577,6.247579,0,0,OMZ:SA:10849,Europe/Paris,,OMZ, +OMZ:SP:21697,1,"DRAPIERS",49.109489,6.247751,0,0,OMZ:SA:10849,Europe/Paris,,OMZ, +OMZ:SP:21698,1,"SELLIERS",49.114191,6.247356,0,0,OMZ:SA:10850,Europe/Paris,,OMZ, +OMZ:SP:21699,1,"SELLIERS",49.114048,6.247509,0,0,OMZ:SA:10850,Europe/Paris,,OMZ, +OMZ:SP:21700,1,"PISCINE OLYMPIQUE",49.100642,6.186512,0,0,OMZ:SA:10851,Europe/Paris,,OMZ, +OMZ:SP:21701,1,"PISCINE OLYMPIQUE",49.100489,6.185619,0,0,OMZ:SA:10851,Europe/Paris,,OMZ, +OMZ:SP:21704,1,"ARBALETRIERS",49.050773,6.187019,0,0,OMZ:SA:10854,Europe/Paris,,OMZ, +OMZ:SP:21707,1,"VILLERS",49.077253,6.324477,0,0,OMZ:SA:10856,Europe/Paris,,OMZ, +OMZ:SP:21708,1,"LAQUENEXY",49.07854,6.31524,0,0,OMZ:SA:10560,Europe/Paris,,OMZ, +OMZ:SP:21709,1,"VILLERS",49.077215,6.323694,0,0,OMZ:SA:10856,Europe/Paris,,OMZ, +OMZ:SP:21713,1,"ST-PRIVAT-LA-MONTAGNE",49.184845,6.044487,0,0,OMZ:SA:10860,Europe/Paris,,OMZ, +OMZ:SP:21723,1,"HAMEAU JERUSALEM",49.186009,6.037485,0,0,OMZ:SA:10866,Europe/Paris,,OMZ, +OMZ:SP:21724,1,"HAMEAU JERUSALEM",49.186068,6.03772,0,0,OMZ:SA:10866,Europe/Paris,,OMZ, +OMZ:SP:21725,1,"ST PAUL",49.08315,6.086634,0,0,OMZ:SA:10867,Europe/Paris,,OMZ, +OMZ:SP:21726,1,"ST PAUL",49.083369,6.087056,0,0,OMZ:SA:10867,Europe/Paris,,OMZ, +OMZ:SP:21727,1,"PLACE D'ARMES",49.119444,6.175504,0,0,OMZ:SA:10003,Europe/Paris,,OMZ, +OMZ:SP:21728,1,"RUE DES ECOLES",49.188786,6.03856,0,0,OMZ:SA:10868,Europe/Paris,,OMZ, +OMZ:SP:21729,1,"RUE DES ECOLES",49.188728,6.038486,0,0,OMZ:SA:10868,Europe/Paris,,OMZ, +OMZ:SP:21730,1,"CEDRE BLEU",49.033781,6.158202,0,0,OMZ:SA:10869,Europe/Paris,,OMZ, +OMZ:SP:21731,1,"CEDRE BLEU",49.033846,6.15818,0,0,OMZ:SA:10869,Europe/Paris,,OMZ, +ONY:SP:1,1,"Vandoeuvre CHU Brabois",48.64949,6.146569,0,0,ONY:SA:CTP1,Europe/Paris,2,ONY, +ONY:SP:10,1,"Blandan",48.672037,6.172621,0,0,ONY:SA:CTP10,Europe/Paris,2,ONY, +ONY:SP:1002,1,"Forêt de Haye",48.650835,6.148019,0,0,ONY:SA:CTP2,Europe/Paris,2,ONY, +ONY:SP:1003,1,"Faisanderie",48.653601,6.151855,0,0,ONY:SA:CTP3,Europe/Paris,2,ONY, +ONY:SP:1004,1,"Doyen Roubault",48.657594,6.155699,0,0,ONY:SA:CTP1004,Europe/Paris,0,ONY, +ONY:SP:1005,1,"Saint-André",48.660318,6.159475,0,0,ONY:SA:CTP5,Europe/Paris,0,ONY, +ONY:SP:1006,1,"Le Reclus",48.662611,6.16201,0,0,ONY:SA:CTP6,Europe/Paris,0,ONY, +ONY:SP:1007,1,"Callot",48.666143,6.165952,0,0,ONY:SA:CTP7,Europe/Paris,2,ONY, +ONY:SP:1008,1,"Vélodrome",48.666886,6.166813,0,0,ONY:SA:CTP8,Europe/Paris,2,ONY, +ONY:SP:1009,1,"Montet Octroi",48.668443,6.168555,0,0,ONY:SA:CTP9,Europe/Paris,2,ONY, +ONY:SP:1010,1,"Blandan",48.672089,6.172506,0,0,ONY:SA:CTP10,Europe/Paris,2,ONY, +ONY:SP:1011,1,"Exelmans",48.675298,6.176095,0,0,ONY:SA:CTP11,Europe/Paris,2,ONY, +ONY:SP:1012,1,"Jean Jaurès",48.679198,6.179703,0,0,ONY:SA:CTP12,Europe/Paris,2,ONY, +ONY:SP:1013,1,"Garenne",48.681155,6.178455,0,0,ONY:SA:CTP13,Europe/Paris,2,ONY, +ONY:SP:1014,1,"Mon Desert",48.684359,6.176328,0,0,ONY:SA:CTP14,Europe/Paris,2,ONY, +ONY:SP:1015,1,"Kennedy",48.686464,6.174668,0,0,ONY:SA:CTP15,Europe/Paris,2,ONY, +ONY:SP:1016,1,"Nancy Gare",48.689189,6.175893,0,0,ONY:SA:CTP16,Europe/Paris,2,ONY, +ONY:SP:1017,1,"Maginot",48.689252,6.177576,0,0,ONY:SA:CTP17,Europe/Paris,2,ONY, +ONY:SP:1018,1,"Point Central",48.690962,6.182861,0,0,ONY:SA:CTP18,Europe/Paris,2,ONY, +ONY:SP:1019,1,"Cathédrale",48.691941,6.185927,0,0,ONY:SA:CTP19,Europe/Paris,2,ONY, +ONY:SP:102,1,"Hôtel de Ville",48.660378,6.171979,0,0,ONY:SA:CTP102,Europe/Paris,0,ONY, +ONY:SP:1020,1,"Division de Fer",48.693145,6.190416,0,0,ONY:SA:CTP20,Europe/Paris,2,ONY, +ONY:SP:1021,1,"Saint-Georges",48.695654,6.195168,0,0,ONY:SA:CTP21,Europe/Paris,2,ONY, +ONY:SP:1022,1,"Cristalleries",48.697537,6.198772,0,0,ONY:SA:CTP22,Europe/Paris,2,ONY, +ONY:SP:1023,1,"Gérard Barrois - Stade Marcel Picot",48.699678,6.20451,0,0,ONY:SA:CTP23,Europe/Paris,2,ONY, +ONY:SP:1024,1,"Saint-Livier",48.700953,6.208935,0,0,ONY:SA:CTP24,Europe/Paris,0,ONY, +ONY:SP:1025,1,"Washington Foch",48.7022,6.21324,0,0,ONY:SA:CTP25,Europe/Paris,0,ONY, +ONY:SP:1026,1,"Clinique Pasteur",48.703065,6.216379,0,0,ONY:SA:CTP26,Europe/Paris,0,ONY, +ONY:SP:1027,1,"Essey Roosevelt",48.703732,6.220983,0,0,ONY:SA:CTP27,Europe/Paris,2,ONY, +ONY:SP:1028,1,"Essey Mouzimpré",48.701772,6.224821,0,0,ONY:SA:CTP28,Europe/Paris,2,ONY, +ONY:SP:1029,1,"Bruges",48.6653,6.168441,0,0,ONY:SA:CTP29,Europe/Paris,2,ONY, +ONY:SP:103,1,"Lisbonne",48.661844,6.168906,0,0,ONY:SA:CTP103,Europe/Paris,2,ONY, +ONY:SP:1030,1,"Nations",48.66193,6.174189,0,0,ONY:SA:CTP30,Europe/Paris,2,ONY, +ONY:SP:1032,1,"Cristalleries",48.697407,6.198921,0,0,ONY:SA:CTP22,Europe/Paris,2,ONY, +ONY:SP:1034,1,"Boufflers",48.692962,6.138127,0,0,ONY:SA:CTP34,Europe/Paris,2,ONY, +ONY:SP:1037,1,"Colline",48.69625,6.14287,0,0,ONY:SA:CTP37,Europe/Paris,2,ONY, +ONY:SP:1038,1,"Buthegnémont",48.696624,6.146748,0,0,ONY:SA:CTP38,Europe/Paris,2,ONY, +ONY:SP:1039,1,"Saint-Mansuy",48.69737,6.15468,0,0,ONY:SA:CTP39,Europe/Paris,2,ONY, +ONY:SP:104,1,"Repentir",48.664541,6.167383,0,0,ONY:SA:CTP104,Europe/Paris,2,ONY, +ONY:SP:1040,1,"La Foucotte",48.697,6.1591,0,0,ONY:SA:CTP40,Europe/Paris,2,ONY, +ONY:SP:1041,1,"Cité Universitaire",48.69634,6.16245,0,0,ONY:SA:CTP41,Europe/Paris,2,ONY, +ONY:SP:1042,1,"Cavallier",48.694333,6.165234,0,0,ONY:SA:CTP1042,Europe/Paris,2,ONY, +ONY:SP:1043,1,"Place Godefroy de Bouillon",48.692782,6.166526,0,0,ONY:SA:CTP43,Europe/Paris,2,ONY, +ONY:SP:1047,1,"Gare Thiers - Mazagran",48.690967,6.17466,0,0,ONY:SA:CTP1047,Europe/Paris,2,ONY, +ONY:SP:1048,1,"Gare Saint-Léon",48.69077,6.17126,0,0,ONY:SA:CTP1048,Europe/Paris,2,ONY, +ONY:SP:1049,1,"Belgique",48.666759,6.170065,0,0,ONY:SA:CTP1049,Europe/Paris,0,ONY, +ONY:SP:105,1,"Villers Clairlieu",48.658748,6.111692,0,0,ONY:SA:CTP105,Europe/Paris,2,ONY, +ONY:SP:1052,1,"Vélodrome",48.666274,6.167195,0,0,ONY:SA:CTP8,Europe/Paris,2,ONY, +ONY:SP:1055,1,"Joseph Laurent",48.66847,6.162068,0,0,ONY:SA:CTP55,Europe/Paris,2,ONY, +ONY:SP:1056,1,"Paul Muller",48.670755,6.157601,0,0,ONY:SA:CTP56,Europe/Paris,0,ONY, +ONY:SP:1057,1,"Villers Mairie",48.672506,6.154654,0,0,ONY:SA:CTP57,Europe/Paris,2,ONY, +ONY:SP:1058,1,"Saint-Sébastien",48.675037,6.151887,0,0,ONY:SA:CTP58,Europe/Paris,2,ONY, +ONY:SP:1060,1,"Castelnau",48.67662,6.154316,0,0,ONY:SA:CTP60,Europe/Paris,2,ONY, +ONY:SP:1061,1,"Libération",48.676589,6.156891,0,0,ONY:SA:CTP1061,Europe/Paris,2,ONY, +ONY:SP:1062,1,"Libération",48.676569,6.157099,0,0,ONY:SA:CTP1061,Europe/Paris,2,ONY, +ONY:SP:1063,1,"Foch",48.678431,6.155416,0,0,ONY:SA:CTP63,Europe/Paris,0,ONY, +ONY:SP:1064,1,"Europe",48.680171,6.151706,0,0,ONY:SA:CTP64,Europe/Paris,2,ONY, +ONY:SP:1066,1,"Laxou Provinces",48.679769,6.148032,0,0,ONY:SA:CTP66,Europe/Paris,2,ONY, +ONY:SP:1067,1,"Ville d'Avray",48.679447,6.144281,0,0,ONY:SA:CTP67,Europe/Paris,0,ONY, +ONY:SP:1068,1,"Croix Saint-Claude",48.68917,6.13346,0,0,ONY:SA:CTP68,Europe/Paris,2,ONY, +ONY:SP:1069,1,"Sapinière",48.691071,6.128513,0,0,ONY:SA:CTP69,Europe/Paris,2,ONY, +ONY:SP:107,1,"Bois de L'Hospice",48.655739,6.108886,0,0,ONY:SA:CTP107,Europe/Paris,2,ONY, +ONY:SP:1071,1,"Mouzon",48.696079,6.12381,0,0,ONY:SA:CTP1071,Europe/Paris,0,ONY, +ONY:SP:1074,1,"Madine",48.69925,6.12799,0,0,ONY:SA:CTP74,Europe/Paris,2,ONY, +ONY:SP:1077,1,"Observatoire",48.68935,6.13522,0,0,ONY:SA:CTP77,Europe/Paris,2,ONY, +ONY:SP:1078,1,"Beauregard",48.691278,6.138579,0,0,ONY:SA:CTP78,Europe/Paris,2,ONY, +ONY:SP:108,1,"Valtriche",48.656343,6.112478,0,0,ONY:SA:CTP108,Europe/Paris,2,ONY, +ONY:SP:1080,1,"Palais des Sports - Gentilly",48.69963,6.13844,0,0,ONY:SA:CTP80,Europe/Paris,2,ONY, +ONY:SP:1081,1,"Cliniques",48.70015,6.1434,0,0,ONY:SA:CTP81,Europe/Paris,2,ONY, +ONY:SP:1082,1,"Les Ombelles",48.70098,6.14713,0,0,ONY:SA:CTP82,Europe/Paris,2,ONY, +ONY:SP:1083,1,"Cèdre Bleu",48.702,6.15087,0,0,ONY:SA:CTP83,Europe/Paris,2,ONY, +ONY:SP:1086,1,"Tamaris",48.70322,6.15502,0,0,ONY:SA:CTP86,Europe/Paris,2,ONY, +ONY:SP:1088,1,"Les Egrez",48.638759,6.180671,0,0,ONY:SA:CTP88,Europe/Paris,0,ONY, +ONY:SP:1089,1,"Poncel",48.6366,6.178854,0,0,ONY:SA:CTP89,Europe/Paris,0,ONY, +ONY:SP:109,1,"Villers Ecoles",48.654992,6.114248,0,0,ONY:SA:CTP109,Europe/Paris,2,ONY, +ONY:SP:1090,1,"Rouzé",48.638356,6.177623,0,0,ONY:SA:CTP90,Europe/Paris,0,ONY, +ONY:SP:1092,1,"Mancés",48.642003,6.177034,0,0,ONY:SA:CTP92,Europe/Paris,2,ONY, +ONY:SP:1093,1,"Montauban",48.644198,6.176408,0,0,ONY:SA:CTP93,Europe/Paris,2,ONY, +ONY:SP:1094,1,"Houdemont Mairie",48.645206,6.175247,0,0,ONY:SA:CTP94,Europe/Paris,2,ONY, +ONY:SP:1095,1,"La Ronchère",48.648911,6.175927,0,0,ONY:SA:CTP95,Europe/Paris,0,ONY, +ONY:SP:1096,1,"Haut-de-Penoy",48.652005,6.17585,0,0,ONY:SA:CTP96,Europe/Paris,2,ONY, +ONY:SP:1097,1,"Rimbaud",48.654522,6.176296,0,0,ONY:SA:CTP97,Europe/Paris,2,ONY, +ONY:SP:1098,1,"Crévic",48.657068,6.174901,0,0,ONY:SA:CTP98,Europe/Paris,2,ONY, +ONY:SP:11,1,"Exelmans",48.674907,6.175811,0,0,ONY:SA:CTP11,Europe/Paris,2,ONY, +ONY:SP:110,1,"Gymnase",48.656557,6.117301,0,0,ONY:SA:CTP110,Europe/Paris,2,ONY, +ONY:SP:1102,1,"Hôtel de Ville",48.659493,6.173026,0,0,ONY:SA:CTP102,Europe/Paris,2,ONY, +ONY:SP:1103,1,"Lisbonne",48.661761,6.168805,0,0,ONY:SA:CTP103,Europe/Paris,2,ONY, +ONY:SP:1104,1,"Repentir",48.664519,6.167196,0,0,ONY:SA:CTP104,Europe/Paris,2,ONY, +ONY:SP:1106,1,"Saint-Bernard",48.657175,6.111283,0,0,ONY:SA:CTP1106,Europe/Paris,2,ONY, +ONY:SP:1107,1,"Bois de L'Hospice",48.656008,6.108541,0,0,ONY:SA:CTP107,Europe/Paris,2,ONY, +ONY:SP:1108,1,"Valtriche",48.656867,6.112151,0,0,ONY:SA:CTP108,Europe/Paris,2,ONY, +ONY:SP:1109,1,"Villers Ecoles",48.655081,6.114233,0,0,ONY:SA:CTP109,Europe/Paris,2,ONY, +ONY:SP:111,1,"Les Essarts",48.657903,6.115093,0,0,ONY:SA:CTP111,Europe/Paris,2,ONY, +ONY:SP:1110,1,"Gymnase",48.656577,6.117149,0,0,ONY:SA:CTP110,Europe/Paris,2,ONY, +ONY:SP:1111,1,"Les Essarts",48.657864,6.114934,0,0,ONY:SA:CTP111,Europe/Paris,2,ONY, +ONY:SP:1112,1,"Villers Stade",48.65636,6.12499,0,0,ONY:SA:CTP112,Europe/Paris,2,ONY, +ONY:SP:1113,1,"Pôle Technologique",48.656769,6.129814,0,0,ONY:SA:CTP113,Europe/Paris,2,ONY, +ONY:SP:1114,1,"Camping",48.658241,6.138453,0,0,ONY:SA:CTP114,Europe/Paris,2,ONY, +ONY:SP:1115,1,"Cottages",48.661641,6.14169,0,0,ONY:SA:CTP115,Europe/Paris,2,ONY, +ONY:SP:1116,1,"Saint-Fiacre",48.667902,6.146946,0,0,ONY:SA:CTP116,Europe/Paris,2,ONY, +ONY:SP:1117,1,"Remicourt",48.669501,6.151437,0,0,ONY:SA:CTP117,Europe/Paris,2,ONY, +ONY:SP:1118,1,"Mutualité - Télécom Nancy",48.669707,6.155317,0,0,ONY:SA:CTP118,Europe/Paris,2,ONY, +ONY:SP:1119,1,"Louis Armand",48.670641,6.158833,0,0,ONY:SA:CTP119,Europe/Paris,2,ONY, +ONY:SP:112,1,"Villers Stade",48.656239,6.125475,0,0,ONY:SA:CTP112,Europe/Paris,2,ONY, +ONY:SP:1120,1,"Mangin",48.672372,6.16072,0,0,ONY:SA:CTP120,Europe/Paris,2,ONY, +ONY:SP:1121,1,"France Lanord",48.674609,6.158694,0,0,ONY:SA:CTP121,Europe/Paris,2,ONY, +ONY:SP:1122,1,"Baudricourt",48.677909,6.158809,0,0,ONY:SA:CTP122,Europe/Paris,2,ONY, +ONY:SP:1123,1,"Zola",48.680148,6.157695,0,0,ONY:SA:CTP123,Europe/Paris,2,ONY, +ONY:SP:1125,1,"Charlemagne",48.681735,6.16217,0,0,ONY:SA:CTP125,Europe/Paris,2,ONY, +ONY:SP:1126,1,"Painlevé",48.68209,6.164516,0,0,ONY:SA:CTP126,Europe/Paris,2,ONY, +ONY:SP:1127,1,"Painlevé",48.68237,6.165768,0,0,ONY:SA:CTP126,Europe/Paris,2,ONY, +ONY:SP:113,1,"Pôle Technologique",48.656591,6.129678,0,0,ONY:SA:CTP113,Europe/Paris,2,ONY, +ONY:SP:1130,1,"Commanderie",48.685546,6.166749,0,0,ONY:SA:CTP130,Europe/Paris,2,ONY, +ONY:SP:1131,1,"Gare Saint-Léon",48.689911,6.171239,0,0,ONY:SA:CTP1048,Europe/Paris,2,ONY, +ONY:SP:1132,1,"Foch",48.689326,6.16929,0,0,ONY:SA:CTP44,Europe/Paris,2,ONY, +ONY:SP:1133,1,"Préville",48.68754,6.166172,0,0,ONY:SA:CTP1133,Europe/Paris,2,ONY, +ONY:SP:1135,1,"Amsterdam",48.659765,6.182724,0,0,ONY:SA:CTP135,Europe/Paris,2,ONY, +ONY:SP:1136,1,"La Haye",48.661231,6.184909,0,0,ONY:SA:CTP136,Europe/Paris,2,ONY, +ONY:SP:1137,1,"Jonquilles",48.662758,6.184885,0,0,ONY:SA:CTP137,Europe/Paris,2,ONY, +ONY:SP:1138,1,"Myosotis",48.664003,6.184387,0,0,ONY:SA:CTP1138,Europe/Paris,2,ONY, +ONY:SP:1139,1,"Glaïeuls",48.666337,6.186481,0,0,ONY:SA:CTP1139,Europe/Paris,2,ONY, +ONY:SP:114,1,"Camping",48.658434,6.139129,0,0,ONY:SA:CTP114,Europe/Paris,2,ONY, +ONY:SP:1140,1,"Saint-François d'Assise",48.667651,6.188094,0,0,ONY:SA:CTP140,Europe/Paris,2,ONY, +ONY:SP:1141,1,"Biancamaria",48.669027,6.185375,0,0,ONY:SA:CTP141,Europe/Paris,2,ONY, +ONY:SP:1142,1,"Faron",48.670732,6.181156,0,0,ONY:SA:CTP142,Europe/Paris,2,ONY, +ONY:SP:1143,1,"Wilson",48.670825,6.177778,0,0,ONY:SA:CTP143,Europe/Paris,2,ONY, +ONY:SP:1146,1,"Vauban",48.674831,6.170539,0,0,ONY:SA:CTP1146,Europe/Paris,2,ONY, +ONY:SP:1148,1,"Nancy Thermal",48.679146,6.167156,0,0,ONY:SA:CTP148,Europe/Paris,2,ONY, +ONY:SP:115,1,"Cottages",48.662274,6.142193,0,0,ONY:SA:CTP115,Europe/Paris,2,ONY, +ONY:SP:1150,1,"Verlaine",48.624039,6.174556,0,0,ONY:SA:CTP150,Europe/Paris,0,ONY, +ONY:SP:1151,1,"Ludres Gare",48.621838,6.170377,0,0,STE:SA:OCE87141481,Europe/Paris,2,ONY, +ONY:SP:1152,1,"Collège Monod",48.620874,6.167883,0,0,ONY:SA:CTP152,Europe/Paris,0,ONY, +ONY:SP:1153,1,"Ludres Mairie",48.6213,6.161599,0,0,ONY:SA:CTP153,Europe/Paris,2,ONY, +ONY:SP:1154,1,"Ecoles",48.62077,6.160307,0,0,ONY:SA:CTP154,Europe/Paris,2,ONY, +ONY:SP:1155,1,"Secours",48.619233,6.159639,0,0,ONY:SA:CTP155,Europe/Paris,2,ONY, +ONY:SP:1156,1,"Messein",48.616373,6.159594,0,0,ONY:SA:CTP156,Europe/Paris,0,ONY, +ONY:SP:1157,1,"Frères Lumière",48.614063,6.160564,0,0,ONY:SA:CTP157,Europe/Paris,0,ONY, +ONY:SP:1158,1,"Eurydice",48.615088,6.164239,0,0,ONY:SA:CTP138,Europe/Paris,0,ONY, +ONY:SP:1159,1,"Albâtre",48.614638,6.166946,0,0,ONY:SA:CTP159,Europe/Paris,0,ONY, +ONY:SP:116,1,"Saint-Fiacre",48.667561,6.146849,0,0,ONY:SA:CTP116,Europe/Paris,2,ONY, +ONY:SP:1160,1,"Ravel",48.61229,6.171914,0,0,ONY:SA:CTP160,Europe/Paris,0,ONY, +ONY:SP:1161,1,"Vert Village",48.614347,6.174686,0,0,ONY:SA:CTP161,Europe/Paris,2,ONY, +ONY:SP:1162,1,"Cinéma",48.618167,6.176429,0,0,ONY:SA:CTP162,Europe/Paris,2,ONY, +ONY:SP:1163,1,"Baraques de Ludres",48.621982,6.178119,0,0,ONY:SA:CTP163,Europe/Paris,2,ONY, +ONY:SP:1164,1,"Erables",48.642649,6.181988,0,0,ONY:SA:CTP1164,Europe/Paris,2,ONY, +ONY:SP:1165,1,"Route d'Heillecourt",48.652252,6.184567,0,0,ONY:SA:CTP165,Europe/Paris,0,ONY, +ONY:SP:1166,1,"Sud Europe",48.654087,6.17845,0,0,ONY:SA:CTP166,Europe/Paris,0,ONY, +ONY:SP:1167,1,"Jeanne d'Arc",48.658549,6.178631,0,0,ONY:SA:CTP167,Europe/Paris,2,ONY, +ONY:SP:1168,1,"Goethe",48.660282,6.179568,0,0,ONY:SA:CTP168,Europe/Paris,2,ONY, +ONY:SP:1169,1,"Parc des Sports - Nations",48.6628,6.176146,0,0,ONY:SA:CTP169,Europe/Paris,2,ONY, +ONY:SP:117,1,"Remicourt",48.669494,6.152791,0,0,ONY:SA:CTP117,Europe/Paris,2,ONY, +ONY:SP:1171,1,"Joseph Laurent",48.668188,6.160277,0,0,ONY:SA:CTP55,Europe/Paris,2,ONY, +ONY:SP:1172,1,"UFR Staps",48.667232,6.158194,0,0,ONY:SA:CTP172,Europe/Paris,2,ONY, +ONY:SP:1173,1,"Grande Corvée",48.664753,6.15572,0,0,ONY:SA:CTP173,Europe/Paris,2,ONY, +ONY:SP:1174,1,"Villers Jardin Botanique",48.663361,6.155736,0,0,ONY:SA:CTP174,Europe/Paris,2,ONY, +ONY:SP:1176,1,"Château",48.625608,6.203281,0,0,ONY:SA:CTP176,Europe/Paris,2,ONY, +ONY:SP:1177,1,"Fléville Mairie",48.625948,6.206098,0,0,ONY:SA:CTP177,Europe/Paris,2,ONY, +ONY:SP:1178,1,"Croix du Soldat",48.629217,6.208385,0,0,ONY:SA:CTP178,Europe/Paris,2,ONY, +ONY:SP:1179,1,"L'Orée du Bois",48.644004,6.210045,0,0,ONY:SA:CTP179,Europe/Paris,2,ONY, +ONY:SP:118,1,"Mutualité - Télécom Nancy",48.669684,6.156644,0,0,ONY:SA:CTP118,Europe/Paris,2,ONY, +ONY:SP:1180,1,"Besançon",48.648534,6.208784,0,0,ONY:SA:CTP180,Europe/Paris,2,ONY, +ONY:SP:1182,1,"Pléiade",48.648128,6.206399,0,0,ONY:SA:CTP182,Europe/Paris,0,ONY, +ONY:SP:1183,1,"Victor Hugo",48.646431,6.205592,0,0,ONY:SA:CTP183,Europe/Paris,0,ONY, +ONY:SP:1184,1,"Versailles",48.644256,6.201316,0,0,ONY:SA:CTP184,Europe/Paris,0,ONY, +ONY:SP:1185,1,"Morlaix",48.641449,6.197602,0,0,ONY:SA:CTP185,Europe/Paris,0,ONY, +ONY:SP:1186,1,"Chateaubriand",48.644924,6.1968,0,0,ONY:SA:CTP186,Europe/Paris,2,ONY, +ONY:SP:1187,1,"Parc Embanie",48.647586,6.196513,0,0,ONY:SA:CTP187,Europe/Paris,2,ONY, +ONY:SP:1188,1,"Temps Libre",48.650514,6.194202,0,0,ONY:SA:CTP188,Europe/Paris,0,ONY, +ONY:SP:1189,1,"Emile Gallé",48.652659,6.193578,0,0,ONY:SA:CTP189,Europe/Paris,0,ONY, +ONY:SP:119,1,"Louis Armand",48.671207,6.160141,0,0,ONY:SA:CTP119,Europe/Paris,2,ONY, +ONY:SP:1190,1,"Grande Rue",48.652632,6.186474,0,0,ONY:SA:CTP190,Europe/Paris,0,ONY, +ONY:SP:1192,1,"Haute-Malgrange",48.660282,6.186582,0,0,ONY:SA:CTP192,Europe/Paris,2,ONY, +ONY:SP:1193,1,"Saint-François d'Assise",48.66807,6.18956,0,0,ONY:SA:CTP140,Europe/Paris,2,ONY, +ONY:SP:1194,1,"Européen",48.663973,6.188853,0,0,ONY:SA:CTP1194,Europe/Paris,0,ONY, +ONY:SP:1197,1,"Clemenceau",48.667781,6.198838,0,0,ONY:SA:CTP197,Europe/Paris,2,ONY, +ONY:SP:1198,1,"Evrard",48.667827,6.202028,0,0,ONY:SA:CTP198,Europe/Paris,0,ONY, +ONY:SP:12,1,"Jean Jaurès",48.678364,6.179663,0,0,ONY:SA:CTP12,Europe/Paris,2,ONY, +ONY:SP:120,1,"Mangin",48.672326,6.160942,0,0,ONY:SA:CTP120,Europe/Paris,2,ONY, +ONY:SP:1201,1,"Jarville Californie",48.673525,6.20645,0,0,ONY:SA:CTP201,Europe/Paris,2,ONY, +ONY:SP:1202,1,"Marcel Brot",48.679263,6.204716,0,0,ONY:SA:CTP202,Europe/Paris,2,ONY, +ONY:SP:1203,1,"Krug",48.682765,6.202949,0,0,ONY:SA:CTP203,Europe/Paris,0,ONY, +ONY:SP:1204,1,"Victor",48.6866,6.20075,0,0,ONY:SA:CTP204,Europe/Paris,2,ONY, +ONY:SP:1206,1,"Saint-Georges",48.695582,6.195405,0,0,ONY:SA:CTP21,Europe/Paris,2,ONY, +ONY:SP:1207,1,"Bazin",48.696723,6.192764,0,0,ONY:SA:CTP207,Europe/Paris,0,ONY, +ONY:SP:1208,1,"Dieuze",48.698584,6.192355,0,0,ONY:SA:CTP208,Europe/Paris,2,ONY, +ONY:SP:121,1,"France Lanord",48.675086,6.158442,0,0,ONY:SA:CTP121,Europe/Paris,2,ONY, +ONY:SP:1212,1,"La Poste - Champ le Boeuf",48.70094,6.13326,0,0,ONY:SA:CTP212,Europe/Paris,2,ONY, +ONY:SP:1213,1,"Cascade - La Fontaine",48.69914,6.13528,0,0,ONY:SA:CTP213,Europe/Paris,2,ONY, +ONY:SP:1215,1,"Jean Lamour",48.70495,6.16286,0,0,ONY:SA:CTP215,Europe/Paris,2,ONY, +ONY:SP:1216,1,"Alix Le Clerc",48.70202,6.1641,0,0,ONY:SA:CTP216,Europe/Paris,2,ONY, +ONY:SP:1217,1,"Place Aimé Morot",48.69953,6.16572,0,0,ONY:SA:CTP217,Europe/Paris,2,ONY, +ONY:SP:1218,1,"Campus Lettres",48.695783,6.167525,0,0,ONY:SA:CTP218,Europe/Paris,2,ONY, +ONY:SP:1219,1,"Place Godefroy de Bouillon",48.6929,6.16834,0,0,ONY:SA:CTP43,Europe/Paris,2,ONY, +ONY:SP:122,1,"Baudricourt",48.677763,6.158662,0,0,ONY:SA:CTP122,Europe/Paris,2,ONY, +ONY:SP:1223,1,"Hardeval",48.680907,6.152905,0,0,ONY:SA:CTP223,Europe/Paris,2,ONY, +ONY:SP:1224,1,"Victoire",48.683205,6.15112,0,0,ONY:SA:CTP224,Europe/Paris,2,ONY, +ONY:SP:1225,1,"Sainte-Anne",48.68481,6.154496,0,0,ONY:SA:CTP225,Europe/Paris,2,ONY, +ONY:SP:1226,1,"Gridel",48.686702,6.16073,0,0,ONY:SA:CTP1226,Europe/Paris,2,ONY, +ONY:SP:1227,1,"Préville",48.688129,6.16543,0,0,ONY:SA:CTP1133,Europe/Paris,2,ONY, +ONY:SP:1229,1,"Canal",48.70295,6.182697,0,0,ONY:SA:CTP229,Europe/Paris,2,ONY, +ONY:SP:123,1,"Zola",48.680957,6.157858,0,0,ONY:SA:CTP123,Europe/Paris,2,ONY, +ONY:SP:1230,1,"Maxéville Mairie",48.71279,6.1617,0,0,ONY:SA:CTP230,Europe/Paris,2,ONY, +ONY:SP:1231,1,"Charcot",48.712647,6.163332,0,0,ONY:SA:CTP1231,Europe/Paris,0,ONY, +ONY:SP:1232,1,"Lavoir",48.709135,6.167121,0,0,ONY:SA:CTP232,Europe/Paris,2,ONY, +ONY:SP:1233,1,"Courbet",48.711534,6.167828,0,0,ONY:SA:CTP233,Europe/Paris,2,ONY, +ONY:SP:1234,1,"Carsat",48.703263,6.170466,0,0,ONY:SA:CTP234,Europe/Paris,2,ONY, +ONY:SP:1235,1,"Saint-Fiacre",48.700865,6.172176,0,0,ONY:SA:CTP235,Europe/Paris,2,ONY, +ONY:SP:1237,1,"Désilles",48.698427,6.173943,0,0,ONY:SA:CTP237,Europe/Paris,2,ONY, +ONY:SP:1238,1,"Haut-Bourgeois",48.695987,6.176476,0,0,ONY:SA:CTP1238,Europe/Paris,2,ONY, +ONY:SP:1239,1,"Place Carnot",48.694251,6.177728,0,0,ONY:SA:CTP239,Europe/Paris,2,ONY, +ONY:SP:1240,1,"Amerval",48.693577,6.180458,0,0,ONY:SA:CTP240,Europe/Paris,0,ONY, +ONY:SP:1243,1,"Place Charles III - Point Central",48.68962,6.183417,0,0,ONY:SA:CTP1243,Europe/Paris,2,ONY, +ONY:SP:1244,1,"Quartier Saint-Nicolas",48.68763,6.1849,0,0,ONY:SA:CTP244,Europe/Paris,2,ONY, +ONY:SP:1245,1,"Place des Vosges",48.68484,6.18737,0,0,ONY:SA:CTP246,Europe/Paris,2,ONY, +ONY:SP:1247,1,"Hôpital Central-Maternité",48.68232,6.19207,0,0,ONY:SA:CTP248,Europe/Paris,2,ONY, +ONY:SP:125,1,"Charlemagne",48.6816,6.162064,0,0,ONY:SA:CTP125,Europe/Paris,2,ONY, +ONY:SP:1251,1,"Achille Lévy",48.67771,6.19882,0,0,ONY:SA:CTP687,Europe/Paris,2,ONY, +ONY:SP:1252,1,"Oberlin",48.69961,6.189615,0,0,ONY:SA:CTP252,Europe/Paris,2,ONY, +ONY:SP:1253,1,"Alsace-Bonsecours",48.67528,6.20077,0,0,ONY:SA:CTP253,Europe/Paris,2,ONY, +ONY:SP:1254,1,"Jarville Mairie",48.673286,6.202521,0,0,ONY:SA:CTP254,Europe/Paris,2,ONY, +ONY:SP:1256,1,"Fonteno",48.668881,6.204653,0,0,ONY:SA:CTP256,Europe/Paris,0,ONY, +ONY:SP:1257,1,"Musée de l'Histoire du Fer",48.665346,6.208113,0,0,ONY:SA:CTP257,Europe/Paris,2,ONY, +ONY:SP:1258,1,"Montaigu",48.663596,6.207739,0,0,ONY:SA:CTP258,Europe/Paris,2,ONY, +ONY:SP:1259,1,"Emmaüs",48.659948,6.206781,0,0,ONY:SA:CTP259,Europe/Paris,2,ONY, +ONY:SP:126,1,"Painlevé",48.682277,6.166225,0,0,ONY:SA:CTP126,Europe/Paris,2,ONY, +ONY:SP:1260,1,"FLEVILLE",48.621528,6.202338,0,0,ONY:SA:CTP260,Europe/Paris,2,ONY, +ONY:SP:1261,1,"Autoroute",48.617705,6.203463,0,0,ONY:SA:CTP261,Europe/Paris,2,ONY, +ONY:SP:1262,1,"Eiffel",48.612376,6.197549,0,0,ONY:SA:CTP262,Europe/Paris,2,ONY, +ONY:SP:1263,1,"FLEVILLE Dynapôle",48.610367,6.19286,0,0,ONY:SA:CTP263,Europe/Paris,2,ONY, +ONY:SP:1270,1,"Sion",48.664543,6.198582,0,0,ONY:SA:CTP270,Europe/Paris,2,ONY, +ONY:SP:1271,1,"Léon Songeur",48.660498,6.200146,0,0,ONY:SA:CTP271,Europe/Paris,2,ONY, +ONY:SP:1273,1,"La Rotonde",48.656659,6.199129,0,0,ONY:SA:CTP273,Europe/Paris,0,ONY, +ONY:SP:1275,1,"Tournelle",48.65386,6.197516,0,0,ONY:SA:CTP275,Europe/Paris,0,ONY, +ONY:SP:1277,1,"Belle Croix",48.672016,6.201165,0,0,ONY:SA:CTP277,Europe/Paris,0,ONY, +ONY:SP:128,1,"Kléber",48.684656,6.168128,0,0,ONY:SA:CTP128,Europe/Paris,2,ONY, +ONY:SP:1282,1,"Parc",48.697546,6.132023,0,0,ONY:SA:CTP282,Europe/Paris,2,ONY, +ONY:SP:1284,1,"Vologne",48.6972,6.13776,0,0,ONY:SA:CTP79,Europe/Paris,2,ONY, +ONY:SP:1285,1,"Sainte-Anne",48.693299,6.14015,0,0,ONY:SA:CTP285,Europe/Paris,2,ONY, +ONY:SP:1286,1,"Viray",48.69261,6.14588,0,0,ONY:SA:CTP286,Europe/Paris,2,ONY, +ONY:SP:1287,1,"La Côte",48.691917,6.149115,0,0,ONY:SA:CTP287,Europe/Paris,2,ONY, +ONY:SP:1288,1,"Marquette",48.691181,6.1527,0,0,ONY:SA:CTP288,Europe/Paris,2,ONY, +ONY:SP:1289,1,"Chemin Blanc",48.690521,6.155771,0,0,ONY:SA:CTP289,Europe/Paris,2,ONY, +ONY:SP:1290,1,"Santifontaine",48.689052,6.162624,0,0,ONY:SA:CTP290,Europe/Paris,2,ONY, +ONY:SP:1291,1,"Préville",48.688488,6.166491,0,0,ONY:SA:CTP1133,Europe/Paris,2,ONY, +ONY:SP:1293,1,"Place Dombasle",48.69218,6.17866,0,0,ONY:SA:CTP292,Europe/Paris,2,ONY, +ONY:SP:1295,1,"Garenne",48.681269,6.182717,0,0,ONY:SA:CTP295,Europe/Paris,2,ONY, +ONY:SP:1296,1,"Clemenceau",48.679305,6.180721,0,0,ONY:SA:CTP296,Europe/Paris,2,ONY, +ONY:SP:1298,1,"Sainte-Colette",48.674718,6.182805,0,0,ONY:SA:CTP1298,Europe/Paris,2,ONY, +ONY:SP:13,1,"Garenne",48.681183,6.17856,0,0,ONY:SA:CTP13,Europe/Paris,2,ONY, +ONY:SP:130,1,"Commanderie",48.686541,6.167954,0,0,ONY:SA:CTP130,Europe/Paris,2,ONY, +ONY:SP:1302,1,"Clinchant",48.678768,6.184689,0,0,ONY:SA:CTP302,Europe/Paris,2,ONY, +ONY:SP:1303,1,"Villard",48.680271,6.187736,0,0,ONY:SA:CTP1303,Europe/Paris,0,ONY, +ONY:SP:1304,1,"Villemin",48.678964,6.189971,0,0,ONY:SA:CTP304,Europe/Paris,0,ONY, +ONY:SP:1307,1,"Briand",48.672663,6.182129,0,0,ONY:SA:CTP307,Europe/Paris,2,ONY, +ONY:SP:1308,1,"Wilson",48.669948,6.178639,0,0,ONY:SA:CTP143,Europe/Paris,2,ONY, +ONY:SP:1309,1,"Norvège",48.666928,6.177045,0,0,ONY:SA:CTP309,Europe/Paris,2,ONY, +ONY:SP:1310,1,"Vandoeuvre - Marché",48.664847,6.17482,0,0,ONY:SA:CTP310,Europe/Paris,2,ONY, +ONY:SP:1314,1,"Malzéville",48.725285,6.181127,0,0,ONY:SA:CTP1314,Europe/Paris,2,ONY, +ONY:SP:1315,1,"Pléiade",48.663267,6.140874,0,0,ONY:SA:CTP315,Europe/Paris,2,ONY, +ONY:SP:1316,1,"Villers G. Chepfer",48.665067,6.139041,0,0,ONY:SA:CTP1316,Europe/Paris,2,ONY, +ONY:SP:1317,1,"Carrière",48.668014,6.139899,0,0,ONY:SA:CTP317,Europe/Paris,2,ONY, +ONY:SP:1318,1,"Monument",48.670768,6.142117,0,0,ONY:SA:CTP1318,Europe/Paris,2,ONY, +ONY:SP:1319,1,"Asnée",48.672306,6.145006,0,0,ONY:SA:CTP1319,Europe/Paris,2,ONY, +ONY:SP:1320,1,"Albert 1er",48.672959,6.147647,0,0,ONY:SA:CTP320,Europe/Paris,2,ONY, +ONY:SP:1321,1,"Médreville",48.685778,6.157701,0,0,ONY:SA:CTP321,Europe/Paris,2,ONY, +ONY:SP:1322,1,"Brasseries",48.706188,6.167879,0,0,ONY:SA:CTP322,Europe/Paris,2,ONY, +ONY:SP:1326,1,"Houdemont Porte Sud",48.637466,6.184899,0,0,ONY:SA:CTP326,Europe/Paris,2,ONY, +ONY:SP:1327,1,"La Sance",48.657316,6.120846,0,0,ONY:SA:CTP327,Europe/Paris,2,ONY, +ONY:SP:1332,1,"Avenue de Brabois",48.672945,6.163896,0,0,ONY:SA:CTP332,Europe/Paris,2,ONY, +ONY:SP:1333,1,"Haussonville",48.674944,6.162625,0,0,ONY:SA:CTP333,Europe/Paris,2,ONY, +ONY:SP:1335,1,"Baudricourt",48.677608,6.159925,0,0,ONY:SA:CTP122,Europe/Paris,2,ONY, +ONY:SP:1341,1,"Charles V",48.698494,6.175182,0,0,ONY:SA:CTP341,Europe/Paris,2,ONY, +ONY:SP:1342,1,"Faubourg",48.701448,6.176614,0,0,ONY:SA:CTP1342,Europe/Paris,0,ONY, +ONY:SP:1346,1,"MJC 3 Maisons",48.705898,6.175673,0,0,ONY:SA:CTP1346,Europe/Paris,2,ONY, +ONY:SP:1347,1,"Dusaulx",48.70485,6.17413,0,0,ONY:SA:CTP1347,Europe/Paris,2,ONY, +ONY:SP:1348,1,"Deville",48.707949,6.171985,0,0,ONY:SA:CTP348,Europe/Paris,0,ONY, +ONY:SP:1349,1,"La Meurthe",48.710092,6.172079,0,0,ONY:SA:CTP1349,Europe/Paris,0,ONY, +ONY:SP:135,1,"Amsterdam",48.659508,6.182477,0,0,ONY:SA:CTP135,Europe/Paris,2,ONY, +ONY:SP:1351,1,"Vayringe",48.707274,6.17758,0,0,ONY:SA:CTP351,Europe/Paris,0,ONY, +ONY:SP:1352,1,"Douëra",48.709103,6.180891,0,0,ONY:SA:CTP352,Europe/Paris,0,ONY, +ONY:SP:1353,1,"Malzéville Stade",48.713843,6.176834,0,0,ONY:SA:CTP353,Europe/Paris,2,ONY, +ONY:SP:1357,1,"Verlaine",48.723965,6.18092,0,0,ONY:SA:CTP357,Europe/Paris,2,ONY, +ONY:SP:1358,1,"Longefond",48.721249,6.181394,0,0,ONY:SA:CTP358,Europe/Paris,2,ONY, +ONY:SP:1359,1,"Pavillon",48.71824,6.183196,0,0,ONY:SA:CTP359,Europe/Paris,2,ONY, +ONY:SP:136,1,"La Haye",48.661273,6.185171,0,0,ONY:SA:CTP136,Europe/Paris,2,ONY, +ONY:SP:1360,1,"Croix de Mission",48.714813,6.184533,0,0,ONY:SA:CTP360,Europe/Paris,2,ONY, +ONY:SP:1361,1,"Passerelle",48.712653,6.184323,0,0,ONY:SA:CTP1361,Europe/Paris,2,ONY, +ONY:SP:1362,1,"Ecole Paul Bert",48.710704,6.184365,0,0,ONY:SA:CTP1362,Europe/Paris,2,ONY, +ONY:SP:1365,1,"Orme",48.707739,6.184683,0,0,ONY:SA:CTP1365,Europe/Paris,2,ONY, +ONY:SP:1366,1,"Mac Mahon",48.704363,6.18295,0,0,ONY:SA:CTP366,Europe/Paris,2,ONY, +ONY:SP:137,1,"Jonquilles",48.663561,6.18473,0,0,ONY:SA:CTP137,Europe/Paris,2,ONY, +ONY:SP:1371,1,"Sainte-Catherine",48.694984,6.189873,0,0,ONY:SA:CTP1371,Europe/Paris,0,ONY, +ONY:SP:1372,1,"Division de Fer",48.692616,6.190091,0,0,ONY:SA:CTP20,Europe/Paris,2,ONY, +ONY:SP:1373,1,"Lobau",48.688714,6.194085,0,0,ONY:SA:CTP1373,Europe/Paris,0,ONY, +ONY:SP:1375,1,"Saint-Julien",48.685906,6.191255,0,0,ONY:SA:CTP375,Europe/Paris,2,ONY, +ONY:SP:1376,1,"Loritz",48.685821,6.196938,0,0,ONY:SA:CTP376,Europe/Paris,2,ONY, +ONY:SP:1377,1,"Victor",48.686271,6.201263,0,0,ONY:SA:CTP204,Europe/Paris,2,ONY, +ONY:SP:1378,1,"Austrasie",48.68734,6.20425,0,0,ONY:SA:CTP378,Europe/Paris,2,ONY, +ONY:SP:1379,1,"La Meurthe",48.68804,6.20767,0,0,ONY:SA:CTP379,Europe/Paris,2,ONY, +ONY:SP:138,1,"Eurydice",48.614838,6.164387,0,0,ONY:SA:CTP138,Europe/Paris,0,ONY, +ONY:SP:1380,1,"Tomblaine Mairie",48.686539,6.210524,0,0,ONY:SA:CTP1380,Europe/Paris,0,ONY, +ONY:SP:1381,1,"Barbusse",48.684564,6.213359,0,0,ONY:SA:CTP1381,Europe/Paris,0,ONY, +ONY:SP:1382,1,"Les Ensanges",48.679356,6.217072,0,0,ONY:SA:CTP382,Europe/Paris,0,ONY, +ONY:SP:1383,1,"Galilée",48.676301,6.222133,0,0,ONY:SA:CTP383,Europe/Paris,2,ONY, +ONY:SP:1384,1,"Salengro",48.675868,6.225947,0,0,ONY:SA:CTP384,Europe/Paris,2,ONY, +ONY:SP:1385,1,"Bois La Dame",48.676233,6.234637,0,0,ONY:SA:CTP385,Europe/Paris,2,ONY, +ONY:SP:1387,1,"Tuilerie",48.675876,6.221672,0,0,ONY:SA:CTP387,Europe/Paris,2,ONY, +ONY:SP:1388,1,"Sainte-Marguerite",48.672651,6.22589,0,0,ONY:SA:CTP388,Europe/Paris,2,ONY, +ONY:SP:1389,1,"Napoléon",48.668302,6.23304,0,0,ONY:SA:CTP1389,Europe/Paris,0,ONY, +ONY:SP:139,1,"Brichambeau",48.665308,6.186745,0,0,ONY:SA:CTP139,Europe/Paris,2,ONY, +ONY:SP:1390,1,"Bosserville",48.66157,6.241465,0,0,ONY:SA:CTP390,Europe/Paris,2,ONY, +ONY:SP:1391,1,"Repentir",48.661462,6.254913,0,0,ONY:SA:CTP391,Europe/Paris,2,ONY, +ONY:SP:1392,1,"Art-sur-Meurthe - Château",48.658809,6.260075,0,0,ONY:SA:CTP392,Europe/Paris,2,ONY, +ONY:SP:1393,1,"Art-sur-Meurthe",48.658528,6.269226,0,0,ONY:SA:CTP393,Europe/Paris,2,ONY, +ONY:SP:1397,1,"Porte de Bosserville",48.675905,6.230788,0,0,ONY:SA:CTP397,Europe/Paris,2,ONY, +ONY:SP:14,1,"Mon Desert",48.6844,6.176445,0,0,ONY:SA:CTP14,Europe/Paris,2,ONY, +ONY:SP:140,1,"Saint-François d'Assise",48.667703,6.188206,0,0,ONY:SA:CTP140,Europe/Paris,2,ONY, +ONY:SP:1401,1,"Seichamps - Eglise",48.71703,6.26533,0,0,ONY:SA:CTP401,Europe/Paris,2,ONY, +ONY:SP:1402,1,"Voirincourt",48.715633,6.270839,0,0,ONY:SA:CTP402,Europe/Paris,2,ONY, +ONY:SP:1403,1,"Galibier",48.715204,6.273696,0,0,ONY:SA:CTP403,Europe/Paris,2,ONY, +ONY:SP:1404,1,"Le Hohneck",48.713726,6.27162,0,0,ONY:SA:CTP404,Europe/Paris,2,ONY, +ONY:SP:1407,1,"Varinchamps",48.711206,6.263931,0,0,ONY:SA:CTP1407,Europe/Paris,2,ONY, +ONY:SP:1409,1,"Saint-Laurent",48.714984,6.259116,0,0,ONY:SA:CTP409,Europe/Paris,2,ONY, +ONY:SP:141,1,"Biancamaria",48.669166,6.185273,0,0,ONY:SA:CTP141,Europe/Paris,2,ONY, +ONY:SP:1410,1,"Les Rosiers",48.71359,6.25586,0,0,ONY:SA:CTP410,Europe/Paris,2,ONY, +ONY:SP:1411,1,"Les Bijoins",48.712341,6.253844,0,0,ONY:SA:CTP411,Europe/Paris,2,ONY, +ONY:SP:1412,1,"Montréal",48.713069,6.251487,0,0,ONY:SA:CTP412,Europe/Paris,2,ONY, +ONY:SP:1414,1,"Edith Piaf",48.70913,6.23951,0,0,ONY:SA:CTP414,Europe/Paris,2,ONY, +ONY:SP:1415,1,"Colonies",48.70709,6.23439,0,0,ONY:SA:CTP415,Europe/Paris,2,ONY, +ONY:SP:1416,1,"69ème RI",48.70545,6.23039,0,0,ONY:SA:CTP416,Europe/Paris,2,ONY, +ONY:SP:142,1,"Faron",48.670764,6.181329,0,0,ONY:SA:CTP142,Europe/Paris,2,ONY, +ONY:SP:1421,1,"Lebrun",48.699647,6.255306,0,0,ONY:SA:CTP421,Europe/Paris,2,ONY, +ONY:SP:1422,1,"Pulnoy République",48.701933,6.257533,0,0,ONY:SA:CTP422,Europe/Paris,2,ONY, +ONY:SP:1423,1,"Sorbiers",48.704026,6.260177,0,0,ONY:SA:CTP423,Europe/Paris,2,ONY, +ONY:SP:1424,1,"Collège Goncourt",48.70664,6.26149,0,0,ONY:SA:CTP424,Europe/Paris,2,ONY, +ONY:SP:1425,1,"Petite Fin",48.70887,6.257497,0,0,ONY:SA:CTP425,Europe/Paris,2,ONY, +ONY:SP:1426,1,"Masserine",48.706543,6.257166,0,0,ONY:SA:CTP426,Europe/Paris,2,ONY, +ONY:SP:1427,1,"Charles de Gaulle",48.70437,6.25444,0,0,ONY:SA:CTP427,Europe/Paris,2,ONY, +ONY:SP:1429,1,"Porte Verte",48.705061,6.245612,0,0,ONY:SA:CTP429,Europe/Paris,2,ONY, +ONY:SP:143,1,"Wilson",48.671246,6.178345,0,0,ONY:SA:CTP143,Europe/Paris,2,ONY, +ONY:SP:1436,1,"Citadelle",48.700363,6.178465,0,0,ONY:SA:CTP776,Europe/Paris,2,ONY, +ONY:SP:1439,1,"Haut-Bourgeois",48.697472,6.176054,0,0,ONY:SA:CTP1238,Europe/Paris,2,ONY, +ONY:SP:144,1,"Chevert",48.672882,6.175987,0,0,ONY:SA:CTP144,Europe/Paris,2,ONY, +ONY:SP:1440,1,"Arsenal",48.696819,6.17776,0,0,ONY:SA:CTP1440,Europe/Paris,0,ONY, +ONY:SP:1441,1,"Saint-Epvre",48.695534,6.179663,0,0,ONY:SA:CTP441,Europe/Paris,0,ONY, +ONY:SP:1443,1,"Braconnot",48.698872,6.179189,0,0,ONY:SA:CTP1443,Europe/Paris,0,ONY, +ONY:SP:1444,1,"Sellier",48.700466,6.179905,0,0,ONY:SA:CTP1444,Europe/Paris,0,ONY, +ONY:SP:145,1,"Gébhart",48.673596,6.173645,0,0,ONY:SA:CTP145,Europe/Paris,2,ONY, +ONY:SP:1450,1,"Didelot",48.683407,6.143838,0,0,ONY:SA:CTP450,Europe/Paris,0,ONY, +ONY:SP:1451,1,"Jet d'eau",48.68623,6.14062,0,0,ONY:SA:CTP1451,Europe/Paris,2,ONY, +ONY:SP:1452,1,"Place de la liberté",48.686474,6.142527,0,0,ONY:SA:CTP452,Europe/Paris,2,ONY, +ONY:SP:1453,1,"Square Renan",48.685024,6.1473,0,0,ONY:SA:CTP453,Europe/Paris,0,ONY, +ONY:SP:1454,1,"Emest Albert",48.686081,6.150517,0,0,ONY:SA:CTP454,Europe/Paris,0,ONY, +ONY:SP:1455,1,"Jacquot de France",48.686878,6.153702,0,0,ONY:SA:CTP455,Europe/Paris,2,ONY, +ONY:SP:1456,1,"Bel Air",48.68845,6.154932,0,0,ONY:SA:CTP456,Europe/Paris,0,ONY, +ONY:SP:1457,1,"Berdaine",48.689339,6.152496,0,0,ONY:SA:CTP457,Europe/Paris,2,ONY, +ONY:SP:1458,1,"Petit Arbois",48.687443,6.145072,0,0,ONY:SA:CTP458,Europe/Paris,2,ONY, +ONY:SP:1459,1,"Plateau",48.688202,6.140805,0,0,ONY:SA:CTP459,Europe/Paris,0,ONY, +ONY:SP:146,1,"Sivry",48.675465,6.171946,0,0,ONY:SA:CTP146,Europe/Paris,2,ONY, +ONY:SP:1461,1,"Mouzimpré",48.70165,6.22579,0,0,ONY:SA:CTP1461,Europe/Paris,2,ONY, +ONY:SP:1465,1,"Laxou Champ-le-boeuf",48.697863,6.123044,0,0,ONY:SA:CTP465,Europe/Paris,2,ONY, +ONY:SP:1467,1,"Voltaire",48.691018,6.210789,0,0,ONY:SA:CTP467,Europe/Paris,2,ONY, +ONY:SP:147,1,"Maréchal Juin",48.677687,6.170301,0,0,ONY:SA:CTP147,Europe/Paris,2,ONY, +ONY:SP:1471,1,"Clemenceau",48.701741,6.206014,0,0,ONY:SA:CTP471,Europe/Paris,2,ONY, +ONY:SP:1473,1,"Place de Gaulle",48.703498,6.205144,0,0,ONY:SA:CTP473,Europe/Paris,2,ONY, +ONY:SP:1474,1,"Libérator",48.703794,6.200483,0,0,ONY:SA:CTP474,Europe/Paris,0,ONY, +ONY:SP:1475,1,"Massenet",48.705236,6.198705,0,0,ONY:SA:CTP475,Europe/Paris,2,ONY, +ONY:SP:1476,1,"Pinsons",48.706633,6.1978,0,0,ONY:SA:CTP1476,Europe/Paris,0,ONY, +ONY:SP:1477,1,"Le Nid",48.705066,6.19409,0,0,ONY:SA:CTP477,Europe/Paris,2,ONY, +ONY:SP:1478,1,"Ecole Pasteur",48.70752,6.190968,0,0,ONY:SA:CTP478,Europe/Paris,0,ONY, +ONY:SP:1479,1,"Barrès",48.707455,6.188495,0,0,ONY:SA:CTP1479,Europe/Paris,0,ONY, +ONY:SP:148,1,"Nancy Thermal",48.679631,6.167043,0,0,ONY:SA:CTP148,Europe/Paris,2,ONY, +ONY:SP:1482,1,"Alouettes",48.709866,6.219341,0,0,ONY:SA:CTP482,Europe/Paris,0,ONY, +ONY:SP:1483,1,"Essey Tamaris",48.71048,6.218449,0,0,ONY:SA:CTP483,Europe/Paris,0,ONY, +ONY:SP:1484,1,"Erables",48.710025,6.215344,0,0,ONY:SA:CTP484,Europe/Paris,0,ONY, +ONY:SP:1485,1,"Bas Château",48.707899,6.215882,0,0,ONY:SA:CTP485,Europe/Paris,2,ONY, +ONY:SP:1486,1,"Saint-Médard",48.706695,6.212532,0,0,ONY:SA:CTP486,Europe/Paris,2,ONY, +ONY:SP:1487,1,"Charmettes",48.705604,6.208687,0,0,ONY:SA:CTP487,Europe/Paris,2,ONY, +ONY:SP:1488,1,"Dommartemont",48.711154,6.209661,0,0,ONY:SA:CTP488,Europe/Paris,2,ONY, +ONY:SP:1489,1,"Haie le Comte",48.711073,6.206759,0,0,ONY:SA:CTP489,Europe/Paris,2,ONY, +ONY:SP:149,1,"Ludres",48.625364,6.175504,0,0,ONY:SA:CTP149,Europe/Paris,2,ONY, +ONY:SP:1490,1,"Chemin Stratégique",48.710958,6.20454,0,0,ONY:SA:CTP490,Europe/Paris,0,ONY, +ONY:SP:1491,1,"Balzac",48.708286,6.204155,0,0,ONY:SA:CTP491,Europe/Paris,0,ONY, +ONY:SP:1492,1,"Charpentier",48.706319,6.204022,0,0,ONY:SA:CTP492,Europe/Paris,0,ONY, +ONY:SP:1493,1,"Alexandre 1er",48.70452,6.192495,0,0,ONY:SA:CTP493,Europe/Paris,2,ONY, +ONY:SP:1494,1,"Jacques Cartier",48.703029,6.196141,0,0,ONY:SA:CTP494,Europe/Paris,2,ONY, +ONY:SP:1495,1,"Blaison - Parc",48.70187,6.199176,0,0,ONY:SA:CTP495,Europe/Paris,2,ONY, +ONY:SP:1496,1,"Stade Matter",48.689705,6.202296,0,0,ONY:SA:CTP496,Europe/Paris,2,ONY, +ONY:SP:1497,1,"Charles Gide",48.680923,6.144105,0,0,ONY:SA:CTP497,Europe/Paris,0,ONY, +ONY:SP:15,1,"Kennedy",48.686499,6.17478,0,0,ONY:SA:CTP15,Europe/Paris,2,ONY, +ONY:SP:150,1,"Verlaine",48.623967,6.174135,0,0,ONY:SA:CTP150,Europe/Paris,0,ONY, +ONY:SP:1501,1,"Oppidum",48.713819,6.221583,0,0,ONY:SA:CTP501,Europe/Paris,0,ONY, +ONY:SP:1502,1,"Bois Châtel",48.712525,6.222285,0,0,ONY:SA:CTP502,Europe/Paris,0,ONY, +ONY:SP:1503,1,"Chanoine Laurent",48.707679,6.219327,0,0,ONY:SA:CTP503,Europe/Paris,2,ONY, +ONY:SP:1504,1,"La Fallée",48.710056,6.221349,0,0,ONY:SA:CTP504,Europe/Paris,0,ONY, +ONY:SP:1505,1,"Beaupré",48.716932,6.221693,0,0,ONY:SA:CTP1505,Europe/Paris,0,ONY, +ONY:SP:1506,1,"Pottier",48.688711,6.215935,0,0,ONY:SA:CTP506,Europe/Paris,2,ONY, +ONY:SP:1507,1,"Grande Haie",48.685753,6.218447,0,0,ONY:SA:CTP507,Europe/Paris,2,ONY, +ONY:SP:1508,1,"Leroux",48.684049,6.229051,0,0,ONY:SA:CTP508,Europe/Paris,0,ONY, +ONY:SP:1509,1,"Vert Pré",48.684236,6.235681,0,0,ONY:SA:CTP509,Europe/Paris,2,ONY, +ONY:SP:151,1,"Ludres Gare",48.622204,6.17072,0,0,STE:SA:OCE87141481,Europe/Paris,2,ONY, +ONY:SP:1510,1,"Barrès",48.685658,6.240524,0,0,ONY:SA:CTP510,Europe/Paris,2,ONY, +ONY:SP:1512,1,"Saulxures - Eglise",48.688997,6.249048,0,0,ONY:SA:CTP512,Europe/Paris,2,ONY, +ONY:SP:1513,1,"Saulxures - Château",48.6922,6.251304,0,0,ONY:SA:CTP513,Europe/Paris,2,ONY, +ONY:SP:1516,1,"Route de Fléville",48.656944,6.206597,0,0,ONY:SA:CTP516,Europe/Paris,2,ONY, +ONY:SP:1517,1,"Flaubert",48.657368,6.217953,0,0,ONY:SA:CTP517,Europe/Paris,0,ONY, +ONY:SP:1518,1,"5 Fontaines",48.656217,6.221625,0,0,ONY:SA:CTP518,Europe/Paris,0,ONY, +ONY:SP:152,1,"Collège Monod",48.620947,6.167794,0,0,ONY:SA:CTP152,Europe/Paris,0,ONY, +ONY:SP:1520,1,"Tricoterie",48.68157,6.243785,0,0,ONY:SA:CTP520,Europe/Paris,0,ONY, +ONY:SP:1521,1,"Lorraine",48.679411,6.242655,0,0,ONY:SA:CTP521,Europe/Paris,0,ONY, +ONY:SP:1522,1,"Champagne",48.678609,6.239481,0,0,ONY:SA:CTP522,Europe/Paris,0,ONY, +ONY:SP:1523,1,"Grands Pâquis",48.678205,6.235638,0,0,ONY:SA:CTP523,Europe/Paris,0,ONY, +ONY:SP:153,1,"Ludres Mairie",48.621485,6.161587,0,0,ONY:SA:CTP153,Europe/Paris,2,ONY, +ONY:SP:1531,1,"L'Atelier",48.66877,6.20796,0,0,ONY:SA:CTP531,Europe/Paris,2,ONY, +ONY:SP:1533,1,"Château de Montaigu",48.665117,6.217025,0,0,ONY:SA:CTP533,Europe/Paris,2,ONY, +ONY:SP:1534,1,"Sainte-Valdrée",48.661492,6.22237,0,0,ONY:SA:CTP534,Europe/Paris,2,ONY, +ONY:SP:1535,1,"Cartonneries",48.659152,6.225528,0,0,ONY:SA:CTP535,Europe/Paris,0,ONY, +ONY:SP:1537,1,"Laneuveville Piscine",48.65928,6.22769,0,0,ONY:SA:CTP537,Europe/Paris,2,ONY, +ONY:SP:1538,1,"Laneuveville Mairie",48.65663,6.231128,0,0,ONY:SA:CTP538,Europe/Paris,0,ONY, +ONY:SP:1539,1,"Leclerc",48.654791,6.232327,0,0,ONY:SA:CTP539,Europe/Paris,0,ONY, +ONY:SP:154,1,"Ecoles",48.620552,6.159981,0,0,ONY:SA:CTP154,Europe/Paris,2,ONY, +ONY:SP:1540,1,"Transformateur",48.652906,6.233407,0,0,ONY:SA:CTP540,Europe/Paris,0,ONY, +ONY:SP:1541,1,"Gérardcourt",48.649205,6.232431,0,0,ONY:SA:CTP541,Europe/Paris,2,ONY, +ONY:SP:1542,1,"Huit Mai",48.650334,6.22962,0,0,ONY:SA:CTP542,Europe/Paris,2,ONY, +ONY:SP:1544,1,"LES AULNOIS",48.653572,6.226551,0,0,ONY:SA:CTP1544,Europe/Paris,0,ONY, +ONY:SP:155,1,"Secours",48.61907,6.159424,0,0,ONY:SA:CTP155,Europe/Paris,2,ONY, +ONY:SP:1557,1,"Mermoz",48.655794,6.185894,0,0,ONY:SA:CTP557,Europe/Paris,0,ONY, +ONY:SP:1558,1,"Barthou",48.672533,6.184507,0,0,ONY:SA:CTP558,Europe/Paris,0,ONY, +ONY:SP:156,1,"Messein",48.616299,6.159423,0,0,ONY:SA:CTP156,Europe/Paris,0,ONY, +ONY:SP:1565,1,"Morvan",48.649954,6.148648,0,0,ONY:SA:CTP565,Europe/Paris,2,ONY, +ONY:SP:157,1,"Frères Lumière",48.614047,6.161121,0,0,ONY:SA:CTP157,Europe/Paris,0,ONY, +ONY:SP:1577,1,"Campus Brabois - Ecoles d'Ingénieurs",48.650923,6.146069,0,0,ONY:SA:CTP577,Europe/Paris,2,ONY, +ONY:SP:1578,1,"Campus Brabois - Faculté de Médecine",48.650985,6.142301,0,0,ONY:SA:CTP578,Europe/Paris,2,ONY, +ONY:SP:1579,1,"La Champelle",48.653131,6.135684,0,0,ONY:SA:CTP579,Europe/Paris,2,ONY, +ONY:SP:158,1,"Eurydice",48.615005,6.16393,0,0,ONY:SA:CTP138,Europe/Paris,2,ONY, +ONY:SP:1580,1,"Forêt de la Reine",48.655038,6.133341,0,0,ONY:SA:CTP580,Europe/Paris,2,ONY, +ONY:SP:1582,1,"Jean Moulin",48.694561,6.211139,0,0,ONY:SA:CTP582,Europe/Paris,0,ONY, +ONY:SP:1583,1,"Varoquaux",48.697236,6.215352,0,0,ONY:SA:CTP583,Europe/Paris,2,ONY, +ONY:SP:159,1,"Albâtre",48.614699,6.166468,0,0,ONY:SA:CTP159,Europe/Paris,0,ONY, +ONY:SP:1597,1,"Porte de Bosserville",48.676545,6.22907,0,0,ONY:SA:CTP397,Europe/Paris,2,ONY, +ONY:SP:16,1,"Nancy Gare",48.689089,6.175897,0,0,ONY:SA:CTP16,Europe/Paris,2,ONY, +ONY:SP:160,1,"Ravel",48.612217,6.171931,0,0,ONY:SA:CTP160,Europe/Paris,0,ONY, +ONY:SP:1601,1,"Centre Pénitentiaire",48.705768,6.152888,0,0,ONY:SA:CTP601,Europe/Paris,2,ONY, +ONY:SP:1603,1,"Majorelle",48.70125,6.144305,0,0,ONY:SA:CTP603,Europe/Paris,2,ONY, +ONY:SP:1604,1,"Nancy Pôle de santé",48.7035,6.141921,0,0,ONY:SA:CTP604,Europe/Paris,2,ONY, +ONY:SP:1607,1,"Semoir",48.70924,6.26424,0,0,ONY:SA:CTP607,Europe/Paris,2,ONY, +ONY:SP:1608,1,"Donon",48.714798,6.26929,0,0,ONY:SA:CTP608,Europe/Paris,2,ONY, +ONY:SP:161,1,"Vert Village",48.614392,6.174806,0,0,ONY:SA:CTP161,Europe/Paris,2,ONY, +ONY:SP:1610,1,"Gérard Barrois - Stade Marcel Picot",48.699546,6.204653,0,0,ONY:SA:CTP23,Europe/Paris,2,ONY, +ONY:SP:1618,1,"Victoire",48.684326,6.152351,0,0,ONY:SA:CTP224,Europe/Paris,2,ONY, +ONY:SP:162,1,"Cinéma",48.619221,6.177315,0,0,ONY:SA:CTP162,Europe/Paris,2,ONY, +ONY:SP:1620,1,"Ecole",48.682346,6.155897,0,0,ONY:SA:CTP620,Europe/Paris,0,ONY, +ONY:SP:1621,1,"Zola",48.681023,6.157879,0,0,ONY:SA:CTP123,Europe/Paris,2,ONY, +ONY:SP:1625,1,"Air Lorraine",48.657219,6.134535,0,0,ONY:SA:CTP625,Europe/Paris,2,ONY, +ONY:SP:1627,1,"Angleterre",48.659188,6.180814,0,0,ONY:SA:CTP627,Europe/Paris,2,ONY, +ONY:SP:163,1,"Baraques de Ludres",48.622128,6.178376,0,0,ONY:SA:CTP163,Europe/Paris,2,ONY, +ONY:SP:1633,1,"Esplanade",48.688292,6.199801,0,0,ONY:SA:CTP633,Europe/Paris,2,ONY, +ONY:SP:1635,1,"Les Aulnes",48.705685,6.155718,0,0,ONY:SA:CTP635,Europe/Paris,2,ONY, +ONY:SP:1638,1,"Fribourg",48.65748,6.175101,0,0,ONY:SA:CTP638,Europe/Paris,2,ONY, +ONY:SP:164,1,"Erables",48.644981,6.181933,0,0,ONY:SA:CTP164,Europe/Paris,2,ONY, +ONY:SP:1643,1,"Pie X",48.704201,6.227421,0,0,ONY:SA:CTP643,Europe/Paris,2,ONY, +ONY:SP:165,1,"Route d'Heillecourt",48.652414,6.184898,0,0,ONY:SA:CTP165,Europe/Paris,0,ONY, +ONY:SP:1655,1,"Maréville",48.682777,6.148821,0,0,ONY:SA:CTP655,Europe/Paris,0,ONY, +ONY:SP:1656,1,"Gambetta",48.71241,6.166818,0,0,ONY:SA:CTP1656,Europe/Paris,2,ONY, +ONY:SP:1657,1,"Les Mûriers",48.650029,6.183383,0,0,ONY:SA:CTP657,Europe/Paris,2,ONY, +ONY:SP:1658,1,"Simon",48.700462,6.176472,0,0,ONY:SA:CTP1658,Europe/Paris,0,ONY, +ONY:SP:166,1,"Sud Europe",48.654064,6.178584,0,0,ONY:SA:CTP166,Europe/Paris,0,ONY, +ONY:SP:1660,1,"Messier",48.689684,6.159632,0,0,ONY:SA:CTP660,Europe/Paris,2,ONY, +ONY:SP:1663,1,"Chartreuse",48.661924,6.247822,0,0,ONY:SA:CTP663,Europe/Paris,2,ONY, +ONY:SP:1665,1,"Foyer",48.669934,6.18771,0,0,ONY:SA:CTP665,Europe/Paris,0,ONY, +ONY:SP:1666,1,"Houdemont Gare",48.64504,6.181757,0,0,ONY:SA:CTP666,Europe/Paris,2,ONY, +ONY:SP:1669,1,"Jarville Gare",48.669934,6.202161,0,0,ONY:SA:CTP669,Europe/Paris,2,ONY, +ONY:SP:167,1,"Jeanne d'Arc",48.658377,6.178648,0,0,ONY:SA:CTP167,Europe/Paris,2,ONY, +ONY:SP:1670,1,"Mouzimpré",48.701754,6.22487,0,0,ONY:SA:CTP1461,Europe/Paris,2,ONY, +ONY:SP:1679,1,"Maison de l'Amitié",48.712787,6.262663,0,0,ONY:SA:CTP1679,Europe/Paris,2,ONY, +ONY:SP:168,1,"Goethe",48.660277,6.179708,0,0,ONY:SA:CTP168,Europe/Paris,2,ONY, +ONY:SP:1680,1,"Malzéville Mairie",48.708664,6.183598,0,0,ONY:SA:CTP1680,Europe/Paris,0,ONY, +ONY:SP:1681,1,"Pichon",48.6845,6.18658,0,0,ONY:SA:CTP681,Europe/Paris,2,ONY, +ONY:SP:1682,1,"Saint-Jacques II",48.702648,6.130752,0,0,ONY:SA:CTP682,Europe/Paris,2,ONY, +ONY:SP:1683,1,"Maxéville Patton",48.70699,6.16134,0,0,ONY:SA:CTP683,Europe/Paris,2,ONY, +ONY:SP:1686,1,"Vic",48.68062,6.19478,0,0,ONY:SA:CTP686,Europe/Paris,2,ONY, +ONY:SP:1688,1,"Jarville République",48.67088,6.20623,0,0,ONY:SA:CTP688,Europe/Paris,2,ONY, +ONY:SP:1689,1,"Gabriel Fauré",48.666447,6.213649,0,0,ONY:SA:CTP689,Europe/Paris,2,ONY, +ONY:SP:169,1,"Parc des Sports - Nations",48.662748,6.176655,0,0,ONY:SA:CTP169,Europe/Paris,2,ONY, +ONY:SP:17,1,"Maginot",48.689176,6.177631,0,0,ONY:SA:CTP17,Europe/Paris,2,ONY, +ONY:SP:170,1,"Vandoeuvre Marché",48.664631,6.173576,0,0,ONY:SA:CTP170,Europe/Paris,0,ONY, +ONY:SP:1700,1,"Gare Thiers - Foch",48.68921,6.17588,0,0,ONY:SA:CTP1700,Europe/Paris,2,ONY, +ONY:SP:1701,1,"Jean Jaurès",48.693011,6.21057,0,0,ONY:SA:CTP701,Europe/Paris,2,ONY, +ONY:SP:1702,1,"Saulxures Mairie",48.687653,6.245018,0,0,ONY:SA:CTP702,Europe/Paris,2,ONY, +ONY:SP:1703,1,"Vervaux",48.697123,6.254668,0,0,ONY:SA:CTP703,Europe/Paris,2,ONY, +ONY:SP:1704,1,"Blés d'Or",48.705243,6.258297,0,0,ONY:SA:CTP704,Europe/Paris,2,ONY, +ONY:SP:1705,1,"Frocourt",48.637713,6.182594,0,0,ONY:SA:CTP705,Europe/Paris,2,ONY, +ONY:SP:1708,1,"Sadi Carnot",48.707187,6.185291,0,0,ONY:SA:CTP1708,Europe/Paris,0,ONY, +ONY:SP:171,1,"Joseph Laurent",48.668168,6.160454,0,0,ONY:SA:CTP55,Europe/Paris,2,ONY, +ONY:SP:1712,1,"Charles de Foucauld",48.702536,6.181666,0,0,ONY:SA:CTP712,Europe/Paris,0,ONY, +ONY:SP:172,1,"UFR Staps",48.667173,6.158277,0,0,ONY:SA:CTP172,Europe/Paris,2,ONY, +ONY:SP:1723,1,"Fraternité",48.69485,6.216,0,0,ONY:SA:CTP723,Europe/Paris,2,ONY, +ONY:SP:1724,1,"Varsovie",48.68358,6.1839,0,0,ONY:SA:CTP697,Europe/Paris,2,ONY, +ONY:SP:173,1,"Grande Corvée",48.665625,6.156316,0,0,ONY:SA:CTP173,Europe/Paris,2,ONY, +ONY:SP:1730,1,"Pré la Dame",48.65259,6.207662,0,0,ONY:SA:CTP730,Europe/Paris,2,ONY, +ONY:SP:1732,1,"Collège Montaigu",48.657424,6.208709,0,0,ONY:SA:CTP732,Europe/Paris,2,ONY, +ONY:SP:1734,1,"Parterres Fleuris",48.710067,6.253953,0,0,ONY:SA:CTP734,Europe/Paris,2,ONY, +ONY:SP:1736,1,"Port Cros",48.653144,6.203103,0,0,ONY:SA:CTP736,Europe/Paris,0,ONY, +ONY:SP:174,1,"Villers Jardin Botanique",48.663348,6.155817,0,0,ONY:SA:CTP174,Europe/Paris,2,ONY, +ONY:SP:1740,1,"Renaissance",48.70472,6.24883,0,0,ONY:SA:CTP740,Europe/Paris,2,ONY, +ONY:SP:1742,1,"Robert Damery",48.658834,6.216223,0,0,ONY:SA:CTP742,Europe/Paris,0,ONY, +ONY:SP:175,1,"Fleurychamp",48.623262,6.199081,0,0,ONY:SA:CTP175,Europe/Paris,2,ONY, +ONY:SP:1750,1,"Saint-Sébastien",48.68816,6.17963,0,0,ONY:SA:CTP750,Europe/Paris,2,ONY, +ONY:SP:1753,1,"Stade Darnys",48.706772,6.148532,0,0,ONY:SA:CTP753,Europe/Paris,0,ONY, +ONY:SP:1755,1,"Tronc qui fume",48.70917,6.24407,0,0,ONY:SA:CTP755,Europe/Paris,2,ONY, +ONY:SP:176,1,"Château",48.625698,6.203096,0,0,ONY:SA:CTP176,Europe/Paris,2,ONY, +ONY:SP:1763,1,"Jarville Mairie",48.673954,6.201795,0,0,ONY:SA:CTP254,Europe/Paris,2,ONY, +ONY:SP:1764,1,"Zénith",48.710088,6.147855,0,0,ONY:SA:CTP764,Europe/Paris,0,ONY, +ONY:SP:1765,1,"Cheverny",48.713461,6.15534,0,0,ONY:SA:CTP765,Europe/Paris,0,ONY, +ONY:SP:1767,1,"Place Alexandre 1er",48.68517,6.18163,0,0,ONY:SA:CTP767,Europe/Paris,2,ONY, +ONY:SP:1768,1,"Fournier",48.654333,6.176881,0,0,ONY:SA:CTP768,Europe/Paris,0,ONY, +ONY:SP:1769,1,"Jéricho",48.706698,6.189764,0,0,ONY:SA:CTP769,Europe/Paris,0,ONY, +ONY:SP:177,1,"Fléville Mairie",48.62559,6.204634,0,0,ONY:SA:CTP177,Europe/Paris,2,ONY, +ONY:SP:1770,1,"Libremont",48.710161,6.197696,0,0,ONY:SA:CTP770,Europe/Paris,0,ONY, +ONY:SP:1771,1,"Jolimont",48.711621,6.204851,0,0,ONY:SA:CTP771,Europe/Paris,0,ONY, +ONY:SP:1778,1,"Lion d'Or",48.709507,6.180573,0,0,ONY:SA:CTP778,Europe/Paris,0,ONY, +ONY:SP:1779,1,"Maria Deraismes",48.680744,6.223537,0,0,ONY:SA:CTP779,Europe/Paris,2,ONY, +ONY:SP:178,1,"Croix du Soldat",48.628293,6.207366,0,0,ONY:SA:CTP178,Europe/Paris,2,ONY, +ONY:SP:1781,1,"Saint-François d'Assise",48.667085,6.188888,0,0,ONY:SA:CTP140,Europe/Paris,2,ONY, +ONY:SP:1789,1,"Résidences Vertes",48.702449,6.250388,0,0,ONY:SA:CTP789,Europe/Paris,2,ONY, +ONY:SP:179,1,"L'Orée du Bois",48.64387,6.210301,0,0,ONY:SA:CTP179,Europe/Paris,2,ONY, +ONY:SP:1792,1,"Vezouze",48.695069,6.131749,0,0,ONY:SA:CTP792,Europe/Paris,2,ONY, +ONY:SP:1793,1,"Parc des Expositions",48.667171,6.192854,0,0,ONY:SA:CTP793,Europe/Paris,2,ONY, +ONY:SP:1794,1,"La Malgrange",48.665743,6.197075,0,0,ONY:SA:CTP794,Europe/Paris,2,ONY, +ONY:SP:1795,1,"Victoire Daubié",48.679981,6.226492,0,0,ONY:SA:CTP795,Europe/Paris,2,ONY, +ONY:SP:1796,1,"Solvay",48.717072,6.16607,0,0,ONY:SA:CTP796,Europe/Paris,0,ONY, +ONY:SP:1797,1,"CPN",48.67913,6.142101,0,0,ONY:SA:CTP797,Europe/Paris,0,ONY, +ONY:SP:1798,1,"Grands Prés",48.714528,6.250879,0,0,ONY:SA:CTP798,Europe/Paris,0,ONY, +ONY:SP:18,1,"Point Central",48.690536,6.181861,0,0,ONY:SA:CTP18,Europe/Paris,2,ONY, +ONY:SP:180,1,"Besançon",48.647623,6.208817,0,0,ONY:SA:CTP180,Europe/Paris,2,ONY, +ONY:SP:1800,1,"Marie Marvingt",48.61849,6.160011,0,0,ONY:SA:CTP800,Europe/Paris,0,ONY, +ONY:SP:181,1,"HEILLECOURT",48.648075,6.209914,0,0,ONY:SA:CTP181,Europe/Paris,0,ONY, +ONY:SP:182,1,"Pléiade",48.647536,6.2064,0,0,ONY:SA:CTP182,Europe/Paris,0,ONY, +ONY:SP:183,1,"Victor Hugo",48.646268,6.205865,0,0,ONY:SA:CTP183,Europe/Paris,0,ONY, +ONY:SP:184,1,"Versailles",48.644212,6.2015,0,0,ONY:SA:CTP184,Europe/Paris,0,ONY, +ONY:SP:185,1,"Morlaix",48.641264,6.198017,0,0,ONY:SA:CTP185,Europe/Paris,0,ONY, +ONY:SP:186,1,"Chateaubriand",48.644958,6.196604,0,0,ONY:SA:CTP186,Europe/Paris,0,ONY, +ONY:SP:187,1,"Parc Embanie",48.64746,6.196494,0,0,ONY:SA:CTP187,Europe/Paris,2,ONY, +ONY:SP:188,1,"Temps Libre",48.650392,6.194026,0,0,ONY:SA:CTP188,Europe/Paris,0,ONY, +ONY:SP:189,1,"Emile Gallé",48.652355,6.193532,0,0,ONY:SA:CTP189,Europe/Paris,0,ONY, +ONY:SP:19,1,"Cathédrale",48.691661,6.185329,0,0,ONY:SA:CTP19,Europe/Paris,2,ONY, +ONY:SP:190,1,"Grande Rue",48.65271,6.186408,0,0,ONY:SA:CTP190,Europe/Paris,0,ONY, +ONY:SP:1901,1,"Genobois",48.617515,6.166253,0,0,ONY:SA:CTP801,Europe/Paris,0,ONY, +ONY:SP:1902,1,"Améthyste",48.715375,6.167293,0,0,ONY:SA:CTP802,Europe/Paris,0,ONY, +ONY:SP:1904,1,"Le Bourgarel",48.723626,6.17649,0,0,ONY:SA:CTP804,Europe/Paris,0,ONY, +ONY:SP:1905,1,"Collège Monod",48.620046,6.167063,0,0,ONY:SA:CTP152,Europe/Paris,0,ONY, +ONY:SP:191,1,"Route d'Heillecourt",48.652569,6.184465,0,0,ONY:SA:CTP165,Europe/Paris,0,ONY, +ONY:SP:192,1,"Haute-Malgrange",48.661477,6.188132,0,0,ONY:SA:CTP192,Europe/Paris,2,ONY, +ONY:SP:193,1,"Saint-François d'Assise",48.666663,6.191078,0,0,ONY:SA:CTP140,Europe/Paris,2,ONY, +ONY:SP:197,1,"Clemenceau",48.668575,6.199123,0,0,ONY:SA:CTP197,Europe/Paris,2,ONY, +ONY:SP:198,1,"Evrard",48.668073,6.20177,0,0,ONY:SA:CTP198,Europe/Paris,0,ONY, +ONY:SP:2,1,"Forêt de Haye",48.650683,6.148491,0,0,ONY:SA:CTP2,Europe/Paris,0,ONY, +ONY:SP:20,1,"Division de Fer",48.693107,6.19053,0,0,ONY:SA:CTP20,Europe/Paris,2,ONY, +ONY:SP:201,1,"Jarville Californie",48.673504,6.206607,0,0,ONY:SA:CTP201,Europe/Paris,2,ONY, +ONY:SP:202,1,"Marcel Brot",48.679216,6.204945,0,0,ONY:SA:CTP202,Europe/Paris,2,ONY, +ONY:SP:203,1,"Krug",48.682917,6.203076,0,0,ONY:SA:CTP203,Europe/Paris,0,ONY, +ONY:SP:204,1,"Victor",48.68651,6.19971,0,0,ONY:SA:CTP204,Europe/Paris,2,ONY, +ONY:SP:206,1,"Saint-Georges",48.695576,6.193705,0,0,ONY:SA:CTP21,Europe/Paris,2,ONY, +ONY:SP:207,1,"Bazin",48.696669,6.192927,0,0,ONY:SA:CTP207,Europe/Paris,0,ONY, +ONY:SP:208,1,"Dieuze",48.698111,6.192705,0,0,ONY:SA:CTP208,Europe/Paris,0,ONY, +ONY:SP:21,1,"Saint-Georges",48.695597,6.195243,0,0,ONY:SA:CTP21,Europe/Paris,2,ONY, +ONY:SP:212,1,"La Poste - Champ le Boeuf",48.70022,6.13339,0,0,ONY:SA:CTP212,Europe/Paris,2,ONY, +ONY:SP:213,1,"Cascade - La Fontaine",48.699,6.13504,0,0,ONY:SA:CTP213,Europe/Paris,2,ONY, +ONY:SP:215,1,"Jean Lamour",48.70368,6.16316,0,0,ONY:SA:CTP215,Europe/Paris,2,ONY, +ONY:SP:216,1,"Alix Le Clerc",48.701402,6.16408,0,0,ONY:SA:CTP216,Europe/Paris,2,ONY, +ONY:SP:217,1,"Place Aimé Morot",48.69926,6.16575,0,0,ONY:SA:CTP217,Europe/Paris,2,ONY, +ONY:SP:218,1,"Campus Lettres",48.69556,6.16732,0,0,ONY:SA:CTP218,Europe/Paris,2,ONY, +ONY:SP:219,1,"Laxou Sapinière",48.69102,6.12825,0,0,ONY:SA:CTP219,Europe/Paris,2,ONY, +ONY:SP:22,1,"Cristalleries",48.697499,6.198912,0,0,ONY:SA:CTP22,Europe/Paris,2,ONY, +ONY:SP:223,1,"Hardeval",48.681437,6.152594,0,0,ONY:SA:CTP223,Europe/Paris,2,ONY, +ONY:SP:224,1,"Victoire",48.684278,6.152343,0,0,ONY:SA:CTP224,Europe/Paris,2,ONY, +ONY:SP:225,1,"Sainte-Anne",48.684716,6.156217,0,0,ONY:SA:CTP225,Europe/Paris,2,ONY, +ONY:SP:226,1,"Sacré Coeur",48.686205,6.162817,0,0,ONY:SA:CTP226,Europe/Paris,2,ONY, +ONY:SP:228,1,"Sarre",48.695533,6.127157,0,0,ONY:SA:CTP228,Europe/Paris,0,ONY, +ONY:SP:229,1,"Canal",48.703132,6.182137,0,0,ONY:SA:CTP229,Europe/Paris,2,ONY, +ONY:SP:23,1,"Gérard Barrois - Stade Marcel Picot",48.699609,6.204588,0,0,ONY:SA:CTP23,Europe/Paris,2,ONY, +ONY:SP:230,1,"Maxéville Mairie",48.71267,6.161905,0,0,ONY:SA:CTP230,Europe/Paris,2,ONY, +ONY:SP:231,1,"Justice",48.713443,6.165013,0,0,ONY:SA:CTP231,Europe/Paris,2,ONY, +ONY:SP:232,1,"Lavoir",48.708989,6.166906,0,0,ONY:SA:CTP232,Europe/Paris,2,ONY, +ONY:SP:233,1,"Courbet",48.712679,6.167697,0,0,ONY:SA:CTP233,Europe/Paris,2,ONY, +ONY:SP:234,1,"Carsat",48.703116,6.170398,0,0,ONY:SA:CTP234,Europe/Paris,2,ONY, +ONY:SP:235,1,"Saint-Fiacre",48.701004,6.171893,0,0,ONY:SA:CTP235,Europe/Paris,2,ONY, +ONY:SP:237,1,"Désilles",48.698,6.173909,0,0,ONY:SA:CTP237,Europe/Paris,2,ONY, +ONY:SP:238,1,"Baron Louis",48.696362,6.174433,0,0,ONY:SA:CTP238,Europe/Paris,2,ONY, +ONY:SP:239,1,"Place Carnot",48.692936,6.176887,0,0,ONY:SA:CTP239,Europe/Paris,0,ONY, +ONY:SP:24,1,"Saint-Livier",48.700819,6.208928,0,0,ONY:SA:CTP24,Europe/Paris,0,ONY, +ONY:SP:240,1,"Amerval",48.692928,6.180707,0,0,ONY:SA:CTP240,Europe/Paris,0,ONY, +ONY:SP:242,1,"Place Stanislas - Dom Calmet",48.690948,6.180873,0,0,ONY:SA:CTP242,Europe/Paris,2,ONY, +ONY:SP:243,1,"Place Charles III - Marché",48.68914,6.18221,0,0,ONY:SA:CTP243,Europe/Paris,2,ONY, +ONY:SP:244,1,"Quartier Saint-Nicolas",48.686087,6.184439,0,0,ONY:SA:CTP244,Europe/Paris,2,ONY, +ONY:SP:246,1,"Place des Vosges",48.68475,6.18784,0,0,ONY:SA:CTP246,Europe/Paris,2,ONY, +ONY:SP:248,1,"Hôpital Central-Maternité",48.68199,6.19221,0,0,ONY:SA:CTP248,Europe/Paris,2,ONY, +ONY:SP:25,1,"Washington Foch",48.70209,6.21337,0,0,ONY:SA:CTP25,Europe/Paris,0,ONY, +ONY:SP:252,1,"Oberlin",48.699541,6.189544,0,0,ONY:SA:CTP252,Europe/Paris,2,ONY, +ONY:SP:253,1,"Alsace-Bonsecours",48.676185,6.199676,0,0,ONY:SA:CTP253,Europe/Paris,2,ONY, +ONY:SP:254,1,"Jarville Mairie",48.6733,6.20231,0,0,ONY:SA:CTP254,Europe/Paris,2,ONY, +ONY:SP:256,1,"Fonteno",48.668643,6.20493,0,0,ONY:SA:CTP256,Europe/Paris,0,ONY, +ONY:SP:257,1,"Musée de l'Histoire du Fer",48.665275,6.207972,0,0,ONY:SA:CTP257,Europe/Paris,2,ONY, +ONY:SP:258,1,"Montaigu",48.662963,6.207378,0,0,ONY:SA:CTP258,Europe/Paris,2,ONY, +ONY:SP:259,1,"Emmaüs",48.659006,6.206416,0,0,ONY:SA:CTP259,Europe/Paris,2,ONY, +ONY:SP:26,1,"Clinique Pasteur",48.703289,6.217593,0,0,ONY:SA:CTP26,Europe/Paris,0,ONY, +ONY:SP:260,1,"FLEVILLE",48.621479,6.202212,0,0,ONY:SA:CTP260,Europe/Paris,2,ONY, +ONY:SP:261,1,"Autoroute",48.617521,6.203449,0,0,ONY:SA:CTP261,Europe/Paris,0,ONY, +ONY:SP:262,1,"Eiffel",48.612235,6.196947,0,0,ONY:SA:CTP262,Europe/Paris,2,ONY, +ONY:SP:263,1,"FLEVILLE Dynapôle",48.610396,6.192694,0,0,ONY:SA:CTP263,Europe/Paris,0,ONY, +ONY:SP:264,1,"Papin",48.612413,6.191485,0,0,ONY:SA:CTP264,Europe/Paris,0,ONY, +ONY:SP:265,1,"Dynapôle",48.614761,6.192121,0,0,ONY:SA:CTP265,Europe/Paris,0,ONY, +ONY:SP:27,1,"Essey Roosevelt",48.704387,6.221099,0,0,ONY:SA:CTP27,Europe/Paris,2,ONY, +ONY:SP:270,1,"Sion",48.664604,6.198318,0,0,ONY:SA:CTP270,Europe/Paris,2,ONY, +ONY:SP:271,1,"Léon Songeur",48.66151,6.200072,0,0,ONY:SA:CTP271,Europe/Paris,2,ONY, +ONY:SP:272,1,"Vigne des Sables",48.659509,6.197747,0,0,ONY:SA:CTP272,Europe/Paris,0,ONY, +ONY:SP:273,1,"La Rotonde",48.656926,6.198746,0,0,ONY:SA:CTP273,Europe/Paris,0,ONY, +ONY:SP:274,1,"Husson",48.654868,6.199665,0,0,ONY:SA:CTP274,Europe/Paris,0,ONY, +ONY:SP:275,1,"Tournelle",48.653869,6.196893,0,0,ONY:SA:CTP275,Europe/Paris,0,ONY, +ONY:SP:277,1,"Belle Croix",48.671624,6.200827,0,0,ONY:SA:CTP277,Europe/Paris,0,ONY, +ONY:SP:278,1,"Jarville Sion",48.664723,6.198512,0,0,ONY:SA:CTP278,Europe/Paris,0,ONY, +ONY:SP:279,1,"Laxou Sapinière",48.689671,6.126178,0,0,ONY:SA:CTP219,Europe/Paris,2,ONY, +ONY:SP:28,1,"Essey Mouzimpré",48.701161,6.224778,0,0,ONY:SA:CTP28,Europe/Paris,2,ONY, +ONY:SP:2805,1,"Ludres J. Monod",48.62027,6.168326,0,0,ONY:SA:CTP2805,Europe/Paris,0,ONY, +ONY:SP:2810,1,"Division de Fer",48.693142,6.192386,0,0,ONY:SA:CTP20,Europe/Paris,2,ONY, +ONY:SP:2811,1,"Essey Mairie",48.704986,6.222922,0,0,ONY:SA:CTP2811,Europe/Paris,0,ONY, +ONY:SP:2813,1,"Art-sur-Meurthe - Bosserville",48.662231,6.24482,0,0,ONY:SA:CTP2813,Europe/Paris,0,ONY, +ONY:SP:2814,1,"Heillecourt Montaigu",48.657448,6.208746,0,0,ONY:SA:CTP2814,Europe/Paris,0,ONY, +ONY:SP:282,1,"Parc",48.697024,6.131245,0,0,ONY:SA:CTP282,Europe/Paris,2,ONY, +ONY:SP:2820,1,"Tomblaine Groupe Scolaire",48.696453,6.21611,0,0,ONY:SA:CTP2820,Europe/Paris,0,ONY, +ONY:SP:2824,1,"Malzéville Paul Verlaine",48.725195,6.180915,0,0,ONY:SA:CTP2824,Europe/Paris,0,ONY, +ONY:SP:2825,1,"Vandoeuvre Monplaisir",48.66562,6.161882,0,0,ONY:SA:CTP2825,Europe/Paris,0,ONY, +ONY:SP:285,1,"Sainte-Anne",48.693203,6.140304,0,0,ONY:SA:CTP285,Europe/Paris,2,ONY, +ONY:SP:286,1,"Viray",48.692483,6.14595,0,0,ONY:SA:CTP286,Europe/Paris,2,ONY, +ONY:SP:287,1,"La Côte",48.691718,6.149583,0,0,ONY:SA:CTP287,Europe/Paris,2,ONY, +ONY:SP:288,1,"Marquette",48.691071,6.152716,0,0,ONY:SA:CTP288,Europe/Paris,2,ONY, +ONY:SP:289,1,"Chemin Blanc",48.690364,6.156037,0,0,ONY:SA:CTP289,Europe/Paris,2,ONY, +ONY:SP:29,1,"Bruges",48.664752,6.168924,0,0,ONY:SA:CTP29,Europe/Paris,2,ONY, +ONY:SP:290,1,"Santifontaine",48.688806,6.163323,0,0,ONY:SA:CTP290,Europe/Paris,2,ONY, +ONY:SP:292,1,"Place Dombasle",48.69168,6.17897,0,0,ONY:SA:CTP292,Europe/Paris,2,ONY, +ONY:SP:295,1,"Garenne",48.681997,6.183752,0,0,ONY:SA:CTP295,Europe/Paris,2,ONY, +ONY:SP:296,1,"Clemenceau",48.679251,6.180452,0,0,ONY:SA:CTP296,Europe/Paris,2,ONY, +ONY:SP:297,1,"Leclerc",48.676282,6.178604,0,0,ONY:SA:CTP297,Europe/Paris,2,ONY, +ONY:SP:298,1,"Vaucouleurs",48.674397,6.181294,0,0,ONY:SA:CTP298,Europe/Paris,2,ONY, +ONY:SP:299,1,"Oudinot",48.676077,6.181887,0,0,ONY:SA:CTP299,Europe/Paris,2,ONY, +ONY:SP:3,1,"Faisanderie",48.654203,6.152742,0,0,ONY:SA:CTP3,Europe/Paris,0,ONY, +ONY:SP:30,1,"Nations",48.661697,6.173887,0,0,ONY:SA:CTP30,Europe/Paris,2,ONY, +ONY:SP:301,1,"Crépin",48.677773,6.184819,0,0,ONY:SA:CTP301,Europe/Paris,0,ONY, +ONY:SP:302,1,"Clinchant",48.680283,6.184611,0,0,ONY:SA:CTP302,Europe/Paris,0,ONY, +ONY:SP:304,1,"Villemin",48.678951,6.188739,0,0,ONY:SA:CTP304,Europe/Paris,0,ONY, +ONY:SP:305,1,"Nancy Cimetière de Sud",48.676643,6.191082,0,0,ONY:SA:CTP305,Europe/Paris,0,ONY, +ONY:SP:306,1,"Brice",48.679668,6.181888,0,0,ONY:SA:CTP306,Europe/Paris,0,ONY, +ONY:SP:307,1,"Briand",48.672275,6.181447,0,0,ONY:SA:CTP307,Europe/Paris,2,ONY, +ONY:SP:308,1,"Wilson",48.670126,6.178581,0,0,ONY:SA:CTP143,Europe/Paris,2,ONY, +ONY:SP:309,1,"Norvège",48.667179,6.176978,0,0,ONY:SA:CTP309,Europe/Paris,2,ONY, +ONY:SP:31,1,"Kehl",48.660429,6.176312,0,0,ONY:SA:CTP31,Europe/Paris,2,ONY, +ONY:SP:310,1,"Vandoeuvre - Marché",48.665013,6.174703,0,0,ONY:SA:CTP310,Europe/Paris,2,ONY, +ONY:SP:315,1,"Pléiade",48.663341,6.140959,0,0,ONY:SA:CTP315,Europe/Paris,2,ONY, +ONY:SP:317,1,"Carrière",48.668899,6.140508,0,0,ONY:SA:CTP317,Europe/Paris,2,ONY, +ONY:SP:318,1,"Haut de la Taye",48.670257,6.142929,0,0,ONY:SA:CTP318,Europe/Paris,2,ONY, +ONY:SP:319,1,"Villers - Eglise",48.669617,6.145505,0,0,ONY:SA:CTP319,Europe/Paris,2,ONY, +ONY:SP:32,1,"Cristalleries",48.697639,6.196702,0,0,ONY:SA:CTP22,Europe/Paris,2,ONY, +ONY:SP:320,1,"Albert 1er",48.672878,6.147764,0,0,ONY:SA:CTP320,Europe/Paris,2,ONY, +ONY:SP:321,1,"Médreville",48.685266,6.160266,0,0,ONY:SA:CTP321,Europe/Paris,2,ONY, +ONY:SP:322,1,"Brasseries",48.706033,6.167834,0,0,ONY:SA:CTP322,Europe/Paris,2,ONY, +ONY:SP:326,1,"Houdemont Porte Sud",48.637517,6.18505,0,0,ONY:SA:CTP326,Europe/Paris,2,ONY, +ONY:SP:327,1,"La Sance",48.657019,6.121154,0,0,ONY:SA:CTP327,Europe/Paris,2,ONY, +ONY:SP:332,1,"Avenue de Brabois",48.672753,6.163733,0,0,ONY:SA:CTP332,Europe/Paris,2,ONY, +ONY:SP:333,1,"Haussonville",48.675389,6.163129,0,0,ONY:SA:CTP333,Europe/Paris,0,ONY, +ONY:SP:335,1,"Baudricourt",48.677206,6.160525,0,0,ONY:SA:CTP122,Europe/Paris,2,ONY, +ONY:SP:339,1,"Cyfflé",48.68619,6.181449,0,0,ONY:SA:CTP339,Europe/Paris,0,ONY, +ONY:SP:34,1,"Boufflers",48.693018,6.138255,0,0,ONY:SA:CTP34,Europe/Paris,2,ONY, +ONY:SP:341,1,"Charles V",48.698592,6.175418,0,0,ONY:SA:CTP341,Europe/Paris,2,ONY, +ONY:SP:343,1,"Pierson",48.703104,6.175318,0,0,ONY:SA:CTP343,Europe/Paris,0,ONY, +ONY:SP:345,1,"Fontenoy",48.704417,6.175538,0,0,ONY:SA:CTP345,Europe/Paris,2,ONY, +ONY:SP:348,1,"Deville",48.707689,6.172196,0,0,ONY:SA:CTP348,Europe/Paris,0,ONY, +ONY:SP:35,1,"Gentilly",48.69482,6.138509,0,0,ONY:SA:CTP35,Europe/Paris,2,ONY, +ONY:SP:350,1,"La Meurthe",48.688241,6.175833,0,0,ONY:SA:CTP350,Europe/Paris,0,ONY, +ONY:SP:351,1,"Vayringe",48.706504,6.176995,0,0,ONY:SA:CTP351,Europe/Paris,0,ONY, +ONY:SP:352,1,"Douëra",48.709779,6.180348,0,0,ONY:SA:CTP352,Europe/Paris,0,ONY, +ONY:SP:353,1,"Malzéville Stade",48.712129,6.178808,0,0,ONY:SA:CTP353,Europe/Paris,2,ONY, +ONY:SP:354,1,"Malzéville Savlons",48.713655,6.181491,0,0,ONY:SA:CTP354,Europe/Paris,2,ONY, +ONY:SP:355,1,"Malzéville Pixerécourt",48.731617,6.182196,0,0,ONY:SA:CTP355,Europe/Paris,2,ONY, +ONY:SP:357,1,"Verlaine",48.723716,6.180963,0,0,ONY:SA:CTP357,Europe/Paris,2,ONY, +ONY:SP:358,1,"Longefond",48.720885,6.181702,0,0,ONY:SA:CTP358,Europe/Paris,2,ONY, +ONY:SP:359,1,"Pavillon",48.718248,6.183314,0,0,ONY:SA:CTP359,Europe/Paris,2,ONY, +ONY:SP:360,1,"Croix de Mission",48.715741,6.184863,0,0,ONY:SA:CTP360,Europe/Paris,2,ONY, +ONY:SP:363,1,"Malzéville - Eglise",48.711799,6.186639,0,0,ONY:SA:CTP363,Europe/Paris,2,ONY, +ONY:SP:366,1,"Mac Mahon",48.704256,6.183024,0,0,ONY:SA:CTP366,Europe/Paris,2,ONY, +ONY:SP:37,1,"Colline",48.695651,6.140859,0,0,ONY:SA:CTP37,Europe/Paris,2,ONY, +ONY:SP:374,1,"Jardiniers",48.688456,6.191889,0,0,ONY:SA:CTP374,Europe/Paris,2,ONY, +ONY:SP:375,1,"Saint-Julien",48.685974,6.191078,0,0,ONY:SA:CTP375,Europe/Paris,2,ONY, +ONY:SP:376,1,"Loritz",48.687152,6.195507,0,0,ONY:SA:CTP376,Europe/Paris,2,ONY, +ONY:SP:378,1,"Austrasie",48.68745,6.20439,0,0,ONY:SA:CTP378,Europe/Paris,2,ONY, +ONY:SP:379,1,"La Meurthe",48.68832,6.20839,0,0,ONY:SA:CTP379,Europe/Paris,2,ONY, +ONY:SP:38,1,"Buthegnémont",48.696527,6.146906,0,0,ONY:SA:CTP38,Europe/Paris,2,ONY, +ONY:SP:380,1,"Concorde",48.687075,6.211584,0,0,ONY:SA:CTP380,Europe/Paris,2,ONY, +ONY:SP:3806,1,"Haut de Fléville",48.624378,6.191177,0,0,ONY:SA:CTP3806,Europe/Paris,0,ONY, +ONY:SP:381,1,"La Paix",48.684823,6.214013,0,0,ONY:SA:CTP381,Europe/Paris,2,ONY, +ONY:SP:382,1,"Les Ensanges",48.679999,6.216649,0,0,ONY:SA:CTP382,Europe/Paris,0,ONY, +ONY:SP:383,1,"Galilée",48.676439,6.221579,0,0,ONY:SA:CTP383,Europe/Paris,2,ONY, +ONY:SP:384,1,"Salengro",48.675914,6.226139,0,0,ONY:SA:CTP384,Europe/Paris,2,ONY, +ONY:SP:385,1,"Bois La Dame",48.676342,6.234283,0,0,ONY:SA:CTP385,Europe/Paris,2,ONY, +ONY:SP:386,1,"Saulxures Forêt",48.675636,6.241953,0,0,ONY:SA:CTP386,Europe/Paris,0,ONY, +ONY:SP:387,1,"Tuilerie",48.674534,6.223656,0,0,ONY:SA:CTP387,Europe/Paris,2,ONY, +ONY:SP:388,1,"Sainte-Marguerite",48.672124,6.226922,0,0,ONY:SA:CTP388,Europe/Paris,2,ONY, +ONY:SP:389,1,"Napoléon",48.66657,6.235493,0,0,ONY:SA:CTP389,Europe/Paris,2,ONY, +ONY:SP:39,1,"Saint-Mansuy",48.697316,6.155144,0,0,ONY:SA:CTP39,Europe/Paris,2,ONY, +ONY:SP:390,1,"Bosserville",48.663465,6.24181,0,0,ONY:SA:CTP390,Europe/Paris,0,ONY, +ONY:SP:391,1,"Repentir",48.661562,6.25496,0,0,ONY:SA:CTP391,Europe/Paris,2,ONY, +ONY:SP:392,1,"Art-sur-Meurthe - Château",48.658488,6.260907,0,0,ONY:SA:CTP392,Europe/Paris,2,ONY, +ONY:SP:393,1,"Art-sur-Meurthe",48.658643,6.269271,0,0,ONY:SA:CTP393,Europe/Paris,2,ONY, +ONY:SP:394,1,"Art-sur-Meurthe - Mairie",48.65561,6.265089,0,0,ONY:SA:CTP394,Europe/Paris,2,ONY, +ONY:SP:395,1,"18 juin",48.656199,6.265249,0,0,ONY:SA:CTP395,Europe/Paris,2,ONY, +ONY:SP:396,1,"Division de Fer",48.693256,6.19105,0,0,ONY:SA:CTP20,Europe/Paris,2,ONY, +ONY:SP:397,1,"Porte de Bosserville",48.675676,6.228971,0,0,ONY:SA:CTP397,Europe/Paris,2,ONY, +ONY:SP:40,1,"La Foucotte",48.69685,6.1593,0,0,ONY:SA:CTP40,Europe/Paris,2,ONY, +ONY:SP:400,1,"Seichamps Haie Cerlin",48.719568,6.265854,0,0,ONY:SA:CTP400,Europe/Paris,2,ONY, +ONY:SP:401,1,"Seichamps - Eglise",48.716878,6.265558,0,0,ONY:SA:CTP401,Europe/Paris,2,ONY, +ONY:SP:402,1,"Voirincourt",48.715602,6.271159,0,0,ONY:SA:CTP402,Europe/Paris,2,ONY, +ONY:SP:403,1,"Galibier",48.715512,6.273835,0,0,ONY:SA:CTP403,Europe/Paris,2,ONY, +ONY:SP:404,1,"Le Hohneck",48.713786,6.271466,0,0,ONY:SA:CTP404,Europe/Paris,2,ONY, +ONY:SP:405,1,"Jardin Roussel",48.71282,6.267857,0,0,ONY:SA:CTP405,Europe/Paris,2,ONY, +ONY:SP:406,1,"Renoir",48.713134,6.266355,0,0,ONY:SA:CTP406,Europe/Paris,2,ONY, +ONY:SP:409,1,"Saint-Laurent",48.715106,6.25918,0,0,ONY:SA:CTP409,Europe/Paris,2,ONY, +ONY:SP:41,1,"Cité Universitaire",48.696017,6.16337,0,0,ONY:SA:CTP41,Europe/Paris,2,ONY, +ONY:SP:410,1,"Les Rosiers",48.713672,6.255788,0,0,ONY:SA:CTP410,Europe/Paris,2,ONY, +ONY:SP:411,1,"Les Bijoins",48.712342,6.253679,0,0,ONY:SA:CTP411,Europe/Paris,2,ONY, +ONY:SP:412,1,"Montréal",48.712974,6.251743,0,0,ONY:SA:CTP412,Europe/Paris,2,ONY, +ONY:SP:414,1,"Edith Piaf",48.70891,6.238627,0,0,ONY:SA:CTP414,Europe/Paris,2,ONY, +ONY:SP:415,1,"Colonies",48.70741,6.23482,0,0,ONY:SA:CTP415,Europe/Paris,2,ONY, +ONY:SP:416,1,"69ème RI",48.70549,6.23018,0,0,ONY:SA:CTP416,Europe/Paris,2,ONY, +ONY:SP:42,1,"Cavalier",48.693198,6.165357,0,0,ONY:SA:CTP42,Europe/Paris,2,ONY, +ONY:SP:421,1,"Lebrun",48.699489,6.25527,0,0,ONY:SA:CTP421,Europe/Paris,2,ONY, +ONY:SP:422,1,"Pulnoy République",48.70207,6.258019,0,0,ONY:SA:CTP422,Europe/Paris,2,ONY, +ONY:SP:423,1,"Sorbiers",48.704094,6.260301,0,0,ONY:SA:CTP423,Europe/Paris,2,ONY, +ONY:SP:424,1,"Collège Goncourt",48.70611,6.2609,0,0,ONY:SA:CTP424,Europe/Paris,2,ONY, +ONY:SP:425,1,"Petite Fin",48.708848,6.257955,0,0,ONY:SA:CTP425,Europe/Paris,2,ONY, +ONY:SP:426,1,"Masserine",48.707474,6.255455,0,0,ONY:SA:CTP426,Europe/Paris,2,ONY, +ONY:SP:427,1,"Charles de Gaulle",48.70451,6.25456,0,0,ONY:SA:CTP427,Europe/Paris,2,ONY, +ONY:SP:429,1,"Porte Verte",48.706945,6.245024,0,0,ONY:SA:CTP429,Europe/Paris,2,ONY, +ONY:SP:43,1,"Place Godefroy de Bouillon",48.691911,6.168252,0,0,ONY:SA:CTP43,Europe/Paris,2,ONY, +ONY:SP:430,1,"Quartier Kléber",48.703695,6.230137,0,0,ONY:SA:CTP430,Europe/Paris,2,ONY, +ONY:SP:437,1,"Porte de la Craffe",48.698643,6.177065,0,0,ONY:SA:CTP437,Europe/Paris,0,ONY, +ONY:SP:438,1,"Laxou Plateau de Haye",48.697657,6.120121,0,0,ONY:SA:CTP438,Europe/Paris,2,ONY, +ONY:SP:44,1,"Foch",48.68839,6.17023,0,0,ONY:SA:CTP44,Europe/Paris,2,ONY, +ONY:SP:441,1,"Saint-Epvre",48.695374,6.179896,0,0,ONY:SA:CTP441,Europe/Paris,0,ONY, +ONY:SP:442,1,"Palais Ducal",48.696396,6.180651,0,0,ONY:SA:CTP442,Europe/Paris,0,ONY, +ONY:SP:450,1,"Didelot",48.683247,6.14346,0,0,ONY:SA:CTP450,Europe/Paris,0,ONY, +ONY:SP:451,1,"Jet d'Eau",48.686234,6.140471,0,0,ONY:SA:CTP451,Europe/Paris,0,ONY, +ONY:SP:452,1,"Place de la liberté",48.686226,6.142644,0,0,ONY:SA:CTP452,Europe/Paris,2,ONY, +ONY:SP:453,1,"Square Renan",48.684998,6.14757,0,0,ONY:SA:CTP453,Europe/Paris,0,ONY, +ONY:SP:454,1,"Emest Albert",48.685993,6.150755,0,0,ONY:SA:CTP454,Europe/Paris,0,ONY, +ONY:SP:455,1,"Jacquot de France",48.686832,6.154038,0,0,ONY:SA:CTP455,Europe/Paris,2,ONY, +ONY:SP:456,1,"Bel Air",48.688484,6.154934,0,0,ONY:SA:CTP456,Europe/Paris,0,ONY, +ONY:SP:457,1,"Berdaine",48.689472,6.152492,0,0,ONY:SA:CTP457,Europe/Paris,2,ONY, +ONY:SP:458,1,"Petit Arbois",48.687469,6.145073,0,0,ONY:SA:CTP458,Europe/Paris,2,ONY, +ONY:SP:459,1,"Plateau",48.688221,6.140208,0,0,ONY:SA:CTP459,Europe/Paris,0,ONY, +ONY:SP:46,1,"NANCY Centre de Congrès Prouvé",48.688675,6.176927,0,0,ONY:SA:CTP46,Europe/Paris,0,ONY, +ONY:SP:462,1,"Vandoeuvre Roberval",48.653536,6.179714,0,0,ONY:SA:CTP462,Europe/Paris,2,ONY, +ONY:SP:463,1,"Ducret",48.623486,6.202204,0,0,ONY:SA:CTP463,Europe/Paris,2,ONY, +ONY:SP:465,1,"Laxou Champ-le-boeuf",48.69817,6.12222,0,0,ONY:SA:CTP465,Europe/Paris,2,ONY, +ONY:SP:466,1,"Quai de la Bataille",48.681949,6.185405,0,0,ONY:SA:CTP466,Europe/Paris,0,ONY, +ONY:SP:467,1,"Voltaire",48.69069,6.210787,0,0,ONY:SA:CTP467,Europe/Paris,2,ONY, +ONY:SP:471,1,"Clemenceau",48.701501,6.206047,0,0,ONY:SA:CTP471,Europe/Paris,2,ONY, +ONY:SP:473,1,"Place de Gaulle",48.703477,6.204782,0,0,ONY:SA:CTP473,Europe/Paris,2,ONY, +ONY:SP:474,1,"Libérator",48.704197,6.20138,0,0,ONY:SA:CTP474,Europe/Paris,0,ONY, +ONY:SP:475,1,"Massenet",48.705055,6.198326,0,0,ONY:SA:CTP475,Europe/Paris,2,ONY, +ONY:SP:477,1,"Le Nid",48.705177,6.195042,0,0,ONY:SA:CTP477,Europe/Paris,2,ONY, +ONY:SP:478,1,"Ecole Pasteur",48.707413,6.191021,0,0,ONY:SA:CTP478,Europe/Paris,0,ONY, +ONY:SP:479,1,"Driant",48.708772,6.187934,0,0,ONY:SA:CTP479,Europe/Paris,0,ONY, +ONY:SP:482,1,"Alouettes",48.710125,6.219197,0,0,ONY:SA:CTP482,Europe/Paris,0,ONY, +ONY:SP:483,1,"Essey Tamaris",48.710636,6.218453,0,0,ONY:SA:CTP483,Europe/Paris,0,ONY, +ONY:SP:484,1,"Erables",48.710126,6.215431,0,0,ONY:SA:CTP484,Europe/Paris,0,ONY, +ONY:SP:485,1,"Bas Château",48.707853,6.215786,0,0,ONY:SA:CTP485,Europe/Paris,0,ONY, +ONY:SP:486,1,"Saint-Médard",48.7067,6.21201,0,0,ONY:SA:CTP486,Europe/Paris,2,ONY, +ONY:SP:487,1,"Charmettes",48.705807,6.208815,0,0,ONY:SA:CTP487,Europe/Paris,2,ONY, +ONY:SP:488,1,"Dommartemont",48.711154,6.209661,0,0,ONY:SA:CTP488,Europe/Paris,2,ONY, +ONY:SP:489,1,"Haie le Comte",48.711088,6.206994,0,0,ONY:SA:CTP489,Europe/Paris,2,ONY, +ONY:SP:490,1,"Chemin Stratégique",48.711003,6.204426,0,0,ONY:SA:CTP490,Europe/Paris,0,ONY, +ONY:SP:491,1,"Balzac",48.7088,6.204,0,0,ONY:SA:CTP491,Europe/Paris,0,ONY, +ONY:SP:492,1,"Charpentier",48.705732,6.203075,0,0,ONY:SA:CTP492,Europe/Paris,0,ONY, +ONY:SP:493,1,"Alexandre 1er",48.704441,6.192353,0,0,ONY:SA:CTP493,Europe/Paris,2,ONY, +ONY:SP:494,1,"Jacques Cartier",48.703038,6.195816,0,0,ONY:SA:CTP494,Europe/Paris,0,ONY, +ONY:SP:495,1,"Blaison - Parc",48.701523,6.199842,0,0,ONY:SA:CTP495,Europe/Paris,2,ONY, +ONY:SP:496,1,"Stade Matter",48.689553,6.20254,0,0,ONY:SA:CTP496,Europe/Paris,2,ONY, +ONY:SP:497,1,"Charles Gide",48.681087,6.144076,0,0,ONY:SA:CTP497,Europe/Paris,0,ONY, +ONY:SP:5,1,"Saint-André",48.660252,6.159559,0,0,ONY:SA:CTP5,Europe/Paris,0,ONY, +ONY:SP:50,1,"Vandoeuvre CHU",48.649354,6.149928,0,0,ONY:SA:CTP50,Europe/Paris,0,ONY, +ONY:SP:500,1,"Plein Soleil",48.715549,6.221294,0,0,ONY:SA:CTP500,Europe/Paris,0,ONY, +ONY:SP:501,1,"Oppidum",48.713987,6.22124,0,0,ONY:SA:CTP501,Europe/Paris,0,ONY, +ONY:SP:502,1,"Bois Châtel",48.712428,6.222319,0,0,ONY:SA:CTP502,Europe/Paris,0,ONY, +ONY:SP:503,1,"Chanoine Laurent",48.706955,6.219232,0,0,ONY:SA:CTP503,Europe/Paris,2,ONY, +ONY:SP:504,1,"La Fallée",48.709826,6.220389,0,0,ONY:SA:CTP504,Europe/Paris,0,ONY, +ONY:SP:505,1,"Seichamps Chanois",48.715587,6.253423,0,0,ONY:SA:CTP505,Europe/Paris,0,ONY, +ONY:SP:506,1,"Pottier",48.689911,6.215222,0,0,ONY:SA:CTP506,Europe/Paris,2,ONY, +ONY:SP:507,1,"Grande Haie",48.686878,6.217665,0,0,ONY:SA:CTP507,Europe/Paris,2,ONY, +ONY:SP:508,1,"Leroux",48.684093,6.229351,0,0,ONY:SA:CTP508,Europe/Paris,0,ONY, +ONY:SP:509,1,"Vert Pré",48.684305,6.235608,0,0,ONY:SA:CTP509,Europe/Paris,2,ONY, +ONY:SP:51,1,"Seichamps Mairie",48.714309,6.260551,0,0,ONY:SA:CTP51,Europe/Paris,2,ONY, +ONY:SP:510,1,"Barrès",48.685733,6.240424,0,0,ONY:SA:CTP510,Europe/Paris,2,ONY, +ONY:SP:512,1,"Saulxures - Eglise",48.689135,6.249208,0,0,ONY:SA:CTP512,Europe/Paris,2,ONY, +ONY:SP:513,1,"Saulxures - Château",48.692172,6.251143,0,0,ONY:SA:CTP513,Europe/Paris,2,ONY, +ONY:SP:514,1,"Saulxures Centre",48.690625,6.247136,0,0,ONY:SA:CTP514,Europe/Paris,0,ONY, +ONY:SP:516,1,"Route de Fléville",48.656113,6.206613,0,0,ONY:SA:CTP516,Europe/Paris,2,ONY, +ONY:SP:517,1,"Flaubert",48.657146,6.217917,0,0,ONY:SA:CTP517,Europe/Paris,0,ONY, +ONY:SP:518,1,"5 Fontaines",48.65628,6.22173,0,0,ONY:SA:CTP518,Europe/Paris,0,ONY, +ONY:SP:520,1,"Tricoterie",48.681827,6.243812,0,0,ONY:SA:CTP520,Europe/Paris,0,ONY, +ONY:SP:521,1,"Lorraine",48.679432,6.243337,0,0,ONY:SA:CTP521,Europe/Paris,0,ONY, +ONY:SP:522,1,"Champagne",48.678454,6.239245,0,0,ONY:SA:CTP522,Europe/Paris,0,ONY, +ONY:SP:523,1,"Grands Pâquis",48.678099,6.235607,0,0,ONY:SA:CTP523,Europe/Paris,0,ONY, +ONY:SP:53,1,"Vélodrome",48.665941,6.166592,0,0,ONY:SA:CTP8,Europe/Paris,2,ONY, +ONY:SP:531,1,"L'Atelier",48.66885,6.20767,0,0,ONY:SA:CTP531,Europe/Paris,2,ONY, +ONY:SP:533,1,"Château de Montaigu",48.66535,6.21638,0,0,ONY:SA:CTP533,Europe/Paris,2,ONY, +ONY:SP:534,1,"Sainte-Valdrée",48.66141,6.22224,0,0,ONY:SA:CTP534,Europe/Paris,2,ONY, +ONY:SP:535,1,"Cartonneries",48.658679,6.224465,0,0,ONY:SA:CTP535,Europe/Paris,0,ONY, +ONY:SP:537,1,"Laneuveville Piscine",48.65914,6.22773,0,0,ONY:SA:CTP537,Europe/Paris,2,ONY, +ONY:SP:538,1,"Laneuveville Mairie",48.656443,6.231107,0,0,ONY:SA:CTP538,Europe/Paris,0,ONY, +ONY:SP:539,1,"Leclerc",48.6544,6.232376,0,0,ONY:SA:CTP539,Europe/Paris,0,ONY, +ONY:SP:540,1,"Transformateur",48.65287,6.233304,0,0,ONY:SA:CTP540,Europe/Paris,0,ONY, +ONY:SP:541,1,"Gérardcourt",48.649271,6.232511,0,0,ONY:SA:CTP541,Europe/Paris,2,ONY, +ONY:SP:542,1,"Huit Mai",48.650762,6.229153,0,0,ONY:SA:CTP542,Europe/Paris,2,ONY, +ONY:SP:55,1,"Joseph Laurent",48.668416,6.161751,0,0,ONY:SA:CTP55,Europe/Paris,2,ONY, +ONY:SP:550,1,"Pascal",48.618272,6.177628,0,0,ONY:SA:CTP550,Europe/Paris,2,ONY, +ONY:SP:555,1,"Grignard",48.615342,6.188138,0,0,ONY:SA:CTP555,Europe/Paris,0,ONY, +ONY:SP:556,1,"Lavoisier",48.615698,6.182882,0,0,ONY:SA:CTP556,Europe/Paris,0,ONY, +ONY:SP:557,1,"Mermoz",48.65486,6.186083,0,0,ONY:SA:CTP557,Europe/Paris,0,ONY, +ONY:SP:558,1,"Barthou",48.672622,6.184845,0,0,ONY:SA:CTP558,Europe/Paris,0,ONY, +ONY:SP:56,1,"Paul Muller",48.670428,6.157705,0,0,ONY:SA:CTP56,Europe/Paris,0,ONY, +ONY:SP:565,1,"Morvan",48.650236,6.14843,0,0,ONY:SA:CTP565,Europe/Paris,2,ONY, +ONY:SP:57,1,"Villers Mairie",48.67216,6.154819,0,0,ONY:SA:CTP57,Europe/Paris,2,ONY, +ONY:SP:577,1,"Campus Brabois - Ecoles d'Ingénieurs",48.650969,6.14667,0,0,ONY:SA:CTP577,Europe/Paris,2,ONY, +ONY:SP:578,1,"Campus Brabois - Faculté de Médecine",48.651152,6.141427,0,0,ONY:SA:CTP578,Europe/Paris,2,ONY, +ONY:SP:579,1,"La Champelle",48.65372,6.135307,0,0,ONY:SA:CTP579,Europe/Paris,2,ONY, +ONY:SP:58,1,"Saint-Sébastien",48.675154,6.151829,0,0,ONY:SA:CTP58,Europe/Paris,2,ONY, +ONY:SP:580,1,"Forêt de la Reine",48.655379,6.133259,0,0,ONY:SA:CTP580,Europe/Paris,2,ONY, +ONY:SP:582,1,"Jean Moulin",48.69449,6.211247,0,0,ONY:SA:CTP582,Europe/Paris,0,ONY, +ONY:SP:583,1,"Varoquaux",48.697357,6.215415,0,0,ONY:SA:CTP583,Europe/Paris,2,ONY, +ONY:SP:584,1,"Pont de pierre",48.700119,6.214565,0,0,ONY:SA:CTP584,Europe/Paris,2,ONY, +ONY:SP:6,1,"Le Reclus",48.6625,6.162039,0,0,ONY:SA:CTP6,Europe/Paris,0,ONY, +ONY:SP:60,1,"Castelnau",48.676711,6.154768,0,0,ONY:SA:CTP60,Europe/Paris,2,ONY, +ONY:SP:601,1,"Centre Pénitentiaire",48.705537,6.151794,0,0,ONY:SA:CTP601,Europe/Paris,2,ONY, +ONY:SP:603,1,"Majorelle",48.701587,6.144063,0,0,ONY:SA:CTP603,Europe/Paris,2,ONY, +ONY:SP:604,1,"Nancy Pôle de santé",48.703597,6.142026,0,0,ONY:SA:CTP604,Europe/Paris,2,ONY, +ONY:SP:607,1,"Semoir",48.70972,6.26432,0,0,ONY:SA:CTP607,Europe/Paris,2,ONY, +ONY:SP:608,1,"Donon",48.714851,6.269153,0,0,ONY:SA:CTP608,Europe/Paris,2,ONY, +ONY:SP:610,1,"Gérard Barrois - Stade Marcel Picot",48.699737,6.204418,0,0,ONY:SA:CTP23,Europe/Paris,2,ONY, +ONY:SP:612,1,"Essey Roosevelt",48.704102,6.221168,0,0,ONY:SA:CTP27,Europe/Paris,2,ONY, +ONY:SP:618,1,"Victoire",48.684391,6.152486,0,0,ONY:SA:CTP224,Europe/Paris,2,ONY, +ONY:SP:619,1,"Joli Coeur",48.702426,6.174425,0,0,ONY:SA:CTP619,Europe/Paris,2,ONY, +ONY:SP:620,1,"Ecole",48.683331,6.155507,0,0,ONY:SA:CTP620,Europe/Paris,0,ONY, +ONY:SP:621,1,"Zola",48.679977,6.157353,0,0,ONY:SA:CTP123,Europe/Paris,2,ONY, +ONY:SP:625,1,"Air Lorraine",48.657186,6.135472,0,0,ONY:SA:CTP625,Europe/Paris,2,ONY, +ONY:SP:627,1,"Angleterre",48.65905,6.180945,0,0,ONY:SA:CTP627,Europe/Paris,2,ONY, +ONY:SP:628,1,"Essey Point Central",48.705178,6.222131,0,0,ONY:SA:CTP628,Europe/Paris,0,ONY, +ONY:SP:629,1,"Gare Saint-Léon",48.688287,6.173049,0,0,ONY:SA:CTP629,Europe/Paris,2,ONY, +ONY:SP:63,1,"Foch",48.678046,6.155584,0,0,ONY:SA:CTP63,Europe/Paris,0,ONY, +ONY:SP:633,1,"Esplanade",48.688132,6.200056,0,0,ONY:SA:CTP633,Europe/Paris,2,ONY, +ONY:SP:635,1,"Les Aulnes",48.705575,6.156024,0,0,ONY:SA:CTP635,Europe/Paris,2,ONY, +ONY:SP:636,1,"Nancy Tamaris",48.703504,6.15519,0,0,ONY:SA:CTP636,Europe/Paris,2,ONY, +ONY:SP:638,1,"Fribourg",48.65771,6.175237,0,0,ONY:SA:CTP638,Europe/Paris,2,ONY, +ONY:SP:64,1,"Europe",48.680046,6.151365,0,0,ONY:SA:CTP64,Europe/Paris,2,ONY, +ONY:SP:641,1,"Ornain",48.696059,6.122838,0,0,ONY:SA:CTP641,Europe/Paris,2,ONY, +ONY:SP:643,1,"Pie X",48.704375,6.227323,0,0,ONY:SA:CTP643,Europe/Paris,2,ONY, +ONY:SP:655,1,"Maréville",48.682674,6.148976,0,0,ONY:SA:CTP655,Europe/Paris,0,ONY, +ONY:SP:657,1,"Les Mûriers",48.65015,6.183705,0,0,ONY:SA:CTP657,Europe/Paris,0,ONY, +ONY:SP:66,1,"Laxou Provinces",48.679683,6.148083,0,0,ONY:SA:CTP66,Europe/Paris,2,ONY, +ONY:SP:660,1,"Messier",48.689488,6.160139,0,0,ONY:SA:CTP660,Europe/Paris,2,ONY, +ONY:SP:662,1,"Laneuveville Gare",48.655285,6.227758,0,0,STE:SA:OCE87141093,Europe/Paris,2,ONY, +ONY:SP:663,1,"Chartreuse",48.661842,6.247855,0,0,ONY:SA:CTP663,Europe/Paris,2,ONY, +ONY:SP:664,1,"Kehl",48.659593,6.176526,0,0,ONY:SA:CTP31,Europe/Paris,2,ONY, +ONY:SP:665,1,"Foyer",48.670087,6.188043,0,0,ONY:SA:CTP665,Europe/Paris,0,ONY, +ONY:SP:666,1,"Houdemont Gare",48.644954,6.182,0,0,ONY:SA:CTP666,Europe/Paris,2,ONY, +ONY:SP:668,1,"ARTEM",48.673296,6.171653,0,0,ONY:SA:CTP668,Europe/Paris,2,ONY, +ONY:SP:669,1,"Jarville Gare",48.66982,6.202049,0,0,ONY:SA:CTP669,Europe/Paris,2,ONY, +ONY:SP:67,1,"Ville d'Avray",48.679364,6.144503,0,0,ONY:SA:CTP67,Europe/Paris,0,ONY, +ONY:SP:673,1,"Pasteur",48.614988,6.181237,0,0,ONY:SA:CTP673,Europe/Paris,2,ONY, +ONY:SP:674,1,"Descartes",48.613117,6.18221,0,0,ONY:SA:CTP674,Europe/Paris,2,ONY, +ONY:SP:675,1,"Ader",48.61258,6.184951,0,0,ONY:SA:CTP675,Europe/Paris,2,ONY, +ONY:SP:677,1,"Place Stanislas - Dom Calmet",48.691998,6.181637,0,0,ONY:SA:CTP242,Europe/Paris,2,ONY, +ONY:SP:678,1,"Curie",48.61683,6.181121,0,0,ONY:SA:CTP678,Europe/Paris,2,ONY, +ONY:SP:68,1,"Croix Saint-Claude",48.689305,6.131945,0,0,ONY:SA:CTP68,Europe/Paris,2,ONY, +ONY:SP:681,1,"Pichon",48.68356,6.18534,0,0,ONY:SA:CTP681,Europe/Paris,2,ONY, +ONY:SP:682,1,"Saint-Jacques II",48.702508,6.130998,0,0,ONY:SA:CTP682,Europe/Paris,2,ONY, +ONY:SP:683,1,"Maxéville Patton",48.70781,6.16213,0,0,ONY:SA:CTP683,Europe/Paris,2,ONY, +ONY:SP:685,1,"Laxou V. Prouvé",48.677212,6.144798,0,0,ONY:SA:CTP685,Europe/Paris,2,ONY, +ONY:SP:686,1,"Vic",48.68042,6.19473,0,0,ONY:SA:CTP686,Europe/Paris,2,ONY, +ONY:SP:687,1,"Achille Lévy",48.67824,6.19783,0,0,ONY:SA:CTP687,Europe/Paris,2,ONY, +ONY:SP:688,1,"Jarville République",48.670715,6.206182,0,0,ONY:SA:CTP688,Europe/Paris,2,ONY, +ONY:SP:689,1,"Gabriel Fauré",48.66641,6.21339,0,0,ONY:SA:CTP689,Europe/Paris,2,ONY, +ONY:SP:69,1,"Sapinière",48.690907,6.12828,0,0,ONY:SA:CTP69,Europe/Paris,2,ONY, +ONY:SP:690,1,"Laneuveville Centre",48.65918,6.23004,0,0,ONY:SA:CTP690,Europe/Paris,2,ONY, +ONY:SP:697,1,"Varsovie",48.683627,6.183903,0,0,ONY:SA:CTP697,Europe/Paris,0,ONY, +ONY:SP:7,1,"Callot",48.666096,6.16605,0,0,ONY:SA:CTP7,Europe/Paris,2,ONY, +ONY:SP:70,1,"Vair",48.695675,6.124307,0,0,ONY:SA:CTP70,Europe/Paris,0,ONY, +ONY:SP:700,1,"Gare Thiers - Poirel",48.690381,6.175747,0,0,ONY:SA:CTP700,Europe/Paris,2,ONY, +ONY:SP:701,1,"Jean Jaurès",48.692601,6.212723,0,0,ONY:SA:CTP701,Europe/Paris,2,ONY, +ONY:SP:702,1,"Saulxures Mairie",48.687631,6.245225,0,0,ONY:SA:CTP702,Europe/Paris,2,ONY, +ONY:SP:703,1,"Vervaux",48.697395,6.254661,0,0,ONY:SA:CTP703,Europe/Paris,2,ONY, +ONY:SP:704,1,"Blés d'Or",48.705473,6.258897,0,0,ONY:SA:CTP704,Europe/Paris,2,ONY, +ONY:SP:705,1,"Frocourt",48.637352,6.182874,0,0,ONY:SA:CTP705,Europe/Paris,2,ONY, +ONY:SP:707,1,"Essey Emile Gallé",48.700127,6.220908,0,0,ONY:SA:CTP707,Europe/Paris,0,ONY, +ONY:SP:710,1,"Boulevard de l'Europe",48.65769,6.17775,0,0,ONY:SA:CTP710,Europe/Paris,2,ONY, +ONY:SP:712,1,"Charles de Foucauld",48.70254,6.180667,0,0,ONY:SA:CTP712,Europe/Paris,0,ONY, +ONY:SP:72,1,"Moselotte",48.697399,6.125089,0,0,ONY:SA:CTP72,Europe/Paris,0,ONY, +ONY:SP:723,1,"Fraternité",48.693931,6.213806,0,0,ONY:SA:CTP723,Europe/Paris,2,ONY, +ONY:SP:724,1,"Varsovie",48.68341,6.18387,0,0,ONY:SA:CTP697,Europe/Paris,2,ONY, +ONY:SP:725,1,"Jardin Roussel",48.711892,6.266659,0,0,ONY:SA:CTP405,Europe/Paris,2,ONY, +ONY:SP:730,1,"Pré la Dame",48.65257,6.207493,0,0,ONY:SA:CTP730,Europe/Paris,2,ONY, +ONY:SP:732,1,"Collège Montaigu",48.657689,6.209697,0,0,ONY:SA:CTP732,Europe/Paris,0,ONY, +ONY:SP:734,1,"Parterres Fleuris",48.710154,6.254039,0,0,ONY:SA:CTP734,Europe/Paris,2,ONY, +ONY:SP:736,1,"Port Cros",48.653321,6.203031,0,0,ONY:SA:CTP736,Europe/Paris,0,ONY, +ONY:SP:739,1,"Quartier Kléber",48.703496,6.230018,0,0,ONY:SA:CTP430,Europe/Paris,2,ONY, +ONY:SP:74,1,"Madine",48.699,6.12767,0,0,ONY:SA:CTP74,Europe/Paris,2,ONY, +ONY:SP:740,1,"Renaissance",48.70462,6.2489,0,0,ONY:SA:CTP740,Europe/Paris,2,ONY, +ONY:SP:742,1,"Robert Damery",48.658845,6.215935,0,0,ONY:SA:CTP742,Europe/Paris,0,ONY, +ONY:SP:745,1,"Route d'Heillecourt",48.652596,6.183717,0,0,ONY:SA:CTP165,Europe/Paris,0,ONY, +ONY:SP:748,1,"Sablonnière",48.654352,6.225163,0,0,ONY:SA:CTP748,Europe/Paris,0,ONY, +ONY:SP:750,1,"Saint-Sébastien",48.68825,6.17944,0,0,ONY:SA:CTP750,Europe/Paris,2,ONY, +ONY:SP:751,1,"Seichamps - Mairie",48.714188,6.260721,0,0,ONY:SA:CTP751,Europe/Paris,0,ONY, +ONY:SP:753,1,"Stade Darnys",48.706786,6.148611,0,0,ONY:SA:CTP753,Europe/Paris,0,ONY, +ONY:SP:755,1,"Tronc qui fume",48.70896,6.24379,0,0,ONY:SA:CTP755,Europe/Paris,2,ONY, +ONY:SP:759,1,"Gentilly",48.695338,6.139327,0,0,ONY:SA:CTP35,Europe/Paris,2,ONY, +ONY:SP:76,1,"Laxou Champ-le-Boeuf",48.6981,6.12426,0,0,ONY:SA:CTP76,Europe/Paris,2,ONY, +ONY:SP:762,1,"Boulevard de l'Europe",48.658884,6.177482,0,0,ONY:SA:CTP710,Europe/Paris,2,ONY, +ONY:SP:763,1,"Jarville Mairie",48.67412,6.201858,0,0,ONY:SA:CTP254,Europe/Paris,2,ONY, +ONY:SP:764,1,"Zénith",48.71011,6.147965,0,0,ONY:SA:CTP764,Europe/Paris,0,ONY, +ONY:SP:765,1,"Cheverny",48.7134,6.155366,0,0,ONY:SA:CTP765,Europe/Paris,0,ONY, +ONY:SP:766,1,"Maxéville Mairie",48.71287,6.16172,0,0,ONY:SA:CTP230,Europe/Paris,2,ONY, +ONY:SP:767,1,"Place Alexandre 1er",48.68545,6.18168,0,0,ONY:SA:CTP767,Europe/Paris,2,ONY, +ONY:SP:768,1,"Fournier",48.654227,6.176829,0,0,ONY:SA:CTP768,Europe/Paris,0,ONY, +ONY:SP:769,1,"Jéricho",48.70666,6.189897,0,0,ONY:SA:CTP769,Europe/Paris,0,ONY, +ONY:SP:77,1,"Observatoire",48.68948,6.13524,0,0,ONY:SA:CTP77,Europe/Paris,2,ONY, +ONY:SP:770,1,"Libremont",48.71007,6.197626,0,0,ONY:SA:CTP770,Europe/Paris,0,ONY, +ONY:SP:771,1,"Jolimont",48.711363,6.204026,0,0,ONY:SA:CTP771,Europe/Paris,0,ONY, +ONY:SP:774,1,"Bertin",48.679269,6.161435,0,0,ONY:SA:CTP774,Europe/Paris,0,ONY, +ONY:SP:775,1,"Parc de la Pépinière",48.699931,6.183465,0,0,ONY:SA:CTP775,Europe/Paris,0,ONY, +ONY:SP:776,1,"Citadelle",48.700363,6.177349,0,0,ONY:SA:CTP776,Europe/Paris,2,ONY, +ONY:SP:778,1,"Lion d'Or",48.709721,6.180399,0,0,ONY:SA:CTP778,Europe/Paris,0,ONY, +ONY:SP:779,1,"Maria Deraismes",48.680606,6.223836,0,0,ONY:SA:CTP779,Europe/Paris,2,ONY, +ONY:SP:78,1,"Beauregard",48.690508,6.137828,0,0,ONY:SA:CTP78,Europe/Paris,2,ONY, +ONY:SP:780,1,"Galilée",48.67718,6.220077,0,0,ONY:SA:CTP383,Europe/Paris,2,ONY, +ONY:SP:781,1,"Saint-François d'Assise",48.667064,6.188692,0,0,ONY:SA:CTP140,Europe/Paris,2,ONY, +ONY:SP:782,1,"Essey Ecole",48.706292,6.219355,0,0,ONY:SA:CTP782,Europe/Paris,2,ONY, +ONY:SP:783,1,"La Bure",48.715519,6.222398,0,0,ONY:SA:CTP783,Europe/Paris,0,ONY, +ONY:SP:789,1,"Résidences Vertes",48.702432,6.250452,0,0,ONY:SA:CTP789,Europe/Paris,2,ONY, +ONY:SP:79,1,"Vologne",48.697125,6.137653,0,0,ONY:SA:CTP79,Europe/Paris,2,ONY, +ONY:SP:791,1,"Houdemont Les Egrez",48.638542,6.180406,0,0,ONY:SA:CTP791,Europe/Paris,0,ONY, +ONY:SP:792,1,"Vezouze",48.695093,6.131861,0,0,ONY:SA:CTP792,Europe/Paris,2,ONY, +ONY:SP:793,1,"Parc des Expositions",48.667079,6.193081,0,0,ONY:SA:CTP793,Europe/Paris,2,ONY, +ONY:SP:794,1,"La Malgrange",48.665706,6.197004,0,0,ONY:SA:CTP794,Europe/Paris,2,ONY, +ONY:SP:795,1,"Victoire Daubié",48.680131,6.226438,0,0,ONY:SA:CTP795,Europe/Paris,2,ONY, +ONY:SP:796,1,"Solvay",48.717028,6.166649,0,0,ONY:SA:CTP796,Europe/Paris,0,ONY, +ONY:SP:797,1,"CPN",48.678618,6.142324,0,0,ONY:SA:CTP797,Europe/Paris,0,ONY, +ONY:SP:798,1,"Grands Prés",48.714576,6.25085,0,0,ONY:SA:CTP798,Europe/Paris,0,ONY, +ONY:SP:799,1,"Grives",48.71058,6.220881,0,0,ONY:SA:CTP799,Europe/Paris,0,ONY, +ONY:SP:8,1,"Vélodrome",48.666833,6.1669,0,0,ONY:SA:CTP8,Europe/Paris,2,ONY, +ONY:SP:80,1,"Palais des Sports - Gentilly",48.69977,6.14058,0,0,ONY:SA:CTP80,Europe/Paris,2,ONY, +ONY:SP:800,1,"Marie Marvingt",48.61675,6.160014,0,0,ONY:SA:CTP800,Europe/Paris,0,ONY, +ONY:SP:801,1,"Genobois",48.617601,6.166239,0,0,ONY:SA:CTP801,Europe/Paris,0,ONY, +ONY:SP:802,1,"Améthyste",48.716166,6.167527,0,0,ONY:SA:CTP802,Europe/Paris,0,ONY, +ONY:SP:803,1,"Malzéville Margeville",48.719507,6.177142,0,0,ONY:SA:CTP803,Europe/Paris,0,ONY, +ONY:SP:804,1,"Le Bourgarel",48.72323,6.176558,0,0,ONY:SA:CTP804,Europe/Paris,0,ONY, +ONY:SP:805,1,"Ludres Marvingt",48.619318,6.165614,0,0,ONY:SA:CTP805,Europe/Paris,0,ONY, +ONY:SP:81,1,"Cliniques",48.70018,6.14407,0,0,ONY:SA:CTP81,Europe/Paris,2,ONY, +ONY:SP:82,1,"Les Ombelles",48.70094,6.14732,0,0,ONY:SA:CTP82,Europe/Paris,2,ONY, +ONY:SP:83,1,"Cèdre Bleu",48.70229,6.15216,0,0,ONY:SA:CTP83,Europe/Paris,2,ONY, +ONY:SP:86,1,"Tamaris",48.70318,6.15516,0,0,ONY:SA:CTP86,Europe/Paris,2,ONY, +ONY:SP:88,1,"Les Egrez",48.638769,6.180791,0,0,ONY:SA:CTP88,Europe/Paris,0,ONY, +ONY:SP:89,1,"Poncel",48.636692,6.178938,0,0,ONY:SA:CTP89,Europe/Paris,0,ONY, +ONY:SP:9,1,"Montet Octroi",48.668397,6.168653,0,0,ONY:SA:CTP9,Europe/Paris,2,ONY, +ONY:SP:90,1,"Rouzé",48.63858,6.177628,0,0,ONY:SA:CTP90,Europe/Paris,0,ONY, +ONY:SP:905,1,"Collège Monod",48.62023,6.167579,0,0,ONY:SA:CTP152,Europe/Paris,0,ONY, +ONY:SP:92,1,"Mancés",48.642198,6.17721,0,0,ONY:SA:CTP92,Europe/Paris,0,ONY, +ONY:SP:93,1,"Montauban",48.644318,6.176518,0,0,ONY:SA:CTP93,Europe/Paris,2,ONY, +ONY:SP:94,1,"Houdemont Mairie",48.645287,6.175293,0,0,ONY:SA:CTP94,Europe/Paris,2,ONY, +ONY:SP:95,1,"La Ronchère",48.650159,6.176517,0,0,ONY:SA:CTP95,Europe/Paris,0,ONY, +ONY:SP:96,1,"Haut-de-Penoy",48.652174,6.175941,0,0,ONY:SA:CTP96,Europe/Paris,2,ONY, +ONY:SP:97,1,"Rimbaud",48.654757,6.176516,0,0,ONY:SA:CTP97,Europe/Paris,2,ONY, +ONY:SP:98,1,"Crévic",48.656501,6.175706,0,0,ONY:SA:CTP98,Europe/Paris,2,ONY, +ORL:SP:27000001,1,"Gare",49.641725,2.563091,0,0,ORL:SA:CTP27000001,Europe/Paris,,ORL, +ORL:SP:27000002,1,"Gare",49.641725,2.563091,0,0,ORL:SA:CTP27000001,Europe/Paris,,ORL, +ORL:SP:27000003,1,"Place Foch",49.645819,2.572791,0,0,ORL:SA:CTP27000003,Europe/Paris,,ORL, +ORL:SP:27000004,1,"Lycée Jean Racine",49.653056,2.577222,0,0,ORL:SA:CTP27000004,Europe/Paris,,ORL, +ORL:SP:27000005,1,"Lycée Jean Racine",49.653067,2.577154,0,0,ORL:SA:CTP27000004,Europe/Paris,,ORL, +ORL:SP:27000012,1,"Place du Centre",49.678055,2.764833,0,0,ORL:SA:CTP27000012,Europe/Paris,,ORL, +ORL:SP:27000013,1,"Place du Centre",49.678055,2.764833,0,0,ORL:SA:CTP27000012,Europe/Paris,,ORL, +ORL:SP:27000016,1,"Centre",49.698,2.792972,0,0,ORL:SA:CTP27000016,Europe/Paris,,ORL, +ORL:SP:27000017,1,"Centre",49.698,2.792972,0,0,ORL:SA:CTP27000016,Europe/Paris,,ORL, +ORL:SP:27000018,1,"Acienne Gare",49.707834,2.789139,0,0,ORL:SA:CTP27000018,Europe/Paris,,ORL, +ORL:SP:27000019,1,"Acienne Gare",49.707899,2.789183,0,0,ORL:SA:CTP27000018,Europe/Paris,,ORL, +ORL:SP:27000022,1,"Collège Louise Michel",49.709806,2.785861,0,0,ORL:SA:CTP27000022,Europe/Paris,,ORL, +ORL:SP:27000023,1,"Collège Louise Michel",49.709806,2.785861,0,0,ORL:SA:CTP27000022,Europe/Paris,,ORL, +ORL:SP:27000032,1,"Gare",49.807705,2.801337,0,0,ORL:SA:CTP27000032,Europe/Paris,,ORL, +ORL:SP:27000033,1,"Gare",49.807705,2.801337,0,0,ORL:SA:CTP27000032,Europe/Paris,,ORL, +ORL:SP:27000040,1,"VILLERS-CARBONNEL Eglise",49.87492,2.894624,0,0,ORL:SA:CTP27000040,Europe/Paris,,ORL, +ORL:SP:27000041,1,"VILLERS-CARBONNEL Eglise",49.87492,2.894624,0,0,ORL:SA:CTP27000040,Europe/Paris,,ORL, +ORL:SP:27000042,1,"Rue de la gare",49.891031,2.923592,0,0,ORL:SA:CTP27000042,Europe/Paris,,ORL, +ORL:SP:27000043,1,"Rue de la gare",49.891031,2.923592,0,0,ORL:SA:CTP27000042,Europe/Paris,,ORL, +ORL:SP:27000047,1,"Centre",49.930288,2.936225,0,0,ORL:SA:CTP27000047,Europe/Paris,,ORL, +ORL:SP:27000059,1,"Salle des Fêtes",49.944405,3.071054,0,0,ORL:SA:CTP27000059,Europe/Paris,,ORL, +ORL:SP:27000060,1,"Salle des Fêtes",49.944405,3.071054,0,0,ORL:SA:CTP27000059,Europe/Paris,,ORL, +ORL:SP:27000061,1,"Poste",49.945758,3.100285,0,0,ORL:SA:CTP27000061,Europe/Paris,,ORL, +ORL:SP:27000062,1,"Poste",49.945758,3.100285,0,0,ORL:SA:CTP27000061,Europe/Paris,,ORL, +ORL:SP:27000064,1,"Place Faidherbe",49.646983,2.571587,0,0,ORL:SA:CTP27000064,Europe/Paris,,ORL, +ORL:SP:27000065,1,"Place Faidherbe",49.64707,2.571579,0,0,ORL:SA:CTP27000064,Europe/Paris,,ORL, +ORL:SP:27000066,1,"Centre",49.626955,2.555947,0,0,ORL:SA:CTP27000066,Europe/Paris,,ORL, +ORL:SP:27000067,1,"Centre",49.626919,2.555988,0,0,ORL:SA:CTP27000066,Europe/Paris,,ORL, +ORL:SP:27000068,1,"Eglise",49.609062,2.528442,0,0,ORL:SA:CTP27000068,Europe/Paris,,ORL, +ORL:SP:27000069,1,"Eglise",49.609067,2.528326,0,0,ORL:SA:CTP27000068,Europe/Paris,,ORL, +ORL:SP:27000070,1,"Rue de Royaucourt",49.603171,2.553598,0,0,ORL:SA:CTP27000070,Europe/Paris,,ORL, +ORL:SP:27000071,1,"Rue de Royaucourt",49.603168,2.553703,0,0,ORL:SA:CTP27000070,Europe/Paris,,ORL, +ORL:SP:27000072,1,"Centre",49.588374,2.552635,0,0,ORL:SA:CTP27000072,Europe/Paris,,ORL, +ORL:SP:27000073,1,"Centre",49.589645,2.552535,0,0,ORL:SA:CTP27000072,Europe/Paris,,ORL, +ORL:SP:27000074,1,"Monument aux morts",49.594245,2.535729,0,0,ORL:SA:CTP27000074,Europe/Paris,,ORL, +ORL:SP:27000075,1,"Monument aux morts",49.594254,2.535648,0,0,ORL:SA:CTP27000074,Europe/Paris,,ORL, +ORL:SP:27000076,1,"FERRIERES Carrefour La croix",49.589718,2.515727,0,0,ORL:SA:CTP27000076,Europe/Paris,,ORL, +ORL:SP:27000077,1,"FERRIERES Carrefour La croix",49.589718,2.515727,0,0,ORL:SA:CTP27000076,Europe/Paris,,ORL, +ORL:SP:27000078,1,"CREVECOEUR LE PETIT Mairie",49.577702,2.503636,0,0,ORL:SA:CTP27000078,Europe/Paris,,ORL, +ORL:SP:27000079,1,"CREVECOEUR LE PETIT Mairie",49.577588,2.503625,0,0,ORL:SA:CTP27000078,Europe/Paris,,ORL, +ORL:SP:27000084,1,"MONTIGNY D938/G Leclerc",49.551895,2.507749,0,0,ORL:SA:CTP27000084,Europe/Paris,,ORL, +ORL:SP:27000085,1,"MONTIGNY D938/G Leclerc",49.551904,2.507749,0,0,ORL:SA:CTP27000084,Europe/Paris,,ORL, +ORL:SP:27000090,1,"D117",49.527235,2.440371,0,0,ORL:SA:CTP27000090,Europe/Paris,,ORL, +ORL:SP:27000091,1,"D117",49.528368,2.439573,0,0,ORL:SA:CTP27000090,Europe/Paris,,ORL, +ORL:SP:27000093,1,"SAINT JUST EN CHAUSSEE Gare",49.503334,2.429445,0,0,SIN:SA:OCE87313270,Europe/Paris,,ORL, +ORL:SP:27000094,1,"Gare Routière",49.426819,2.084747,0,0,ORL:SA:CTP27000094,Europe/Paris,,ORL, +ORL:SP:27000095,1,"Gare Routière",49.426819,2.084747,0,0,ORL:SA:CTP27000094,Europe/Paris,,ORL, +ORL:SP:27000096,1,"Gare SNCF",49.426603,2.087902,0,0,OIS:SA:CTP3014170,Europe/Paris,,ORL, +ORL:SP:27000097,1,"Gare SNCF",49.426729,2.087869,0,0,OIS:SA:CTP3014170,Europe/Paris,,ORL, +ORL:SP:27000098,1,"Brière Gare SNCF",49.428615,2.089137,0,0,ORL:SA:CTP27000098,Europe/Paris,,ORL, +ORL:SP:27000099,1,"Felix Faure",49.434894,2.089087,0,0,ORL:SA:CTP27000099,Europe/Paris,,ORL, +ORL:SP:27000100,1,"Centre-Ville",49.434413,2.087844,0,0,ORL:SA:CTP27000100,Europe/Paris,,ORL, +ORL:SP:27000101,1,"Parc Marcel Dassault",49.450182,2.09754,0,0,ORL:SA:CTP27000101,Europe/Paris,,ORL, +ORL:SP:27000102,1,"Parc Marcel Dassault",49.450278,2.0975,0,0,ORL:SA:CTP27000101,Europe/Paris,,ORL, +ORL:SP:27000103,1,"TILLE Aéroport",49.46,2.112777,0,0,OIS:SA:CTP3014355,Europe/Paris,,ORL, +ORL:SP:27000105,1,"R.N",49.566944,2.221944,0,0,ORL:SA:CTP27000105,Europe/Paris,,ORL, +ORL:SP:27000106,1,"R.N",49.566944,2.221944,0,0,ORL:SA:CTP27000105,Europe/Paris,,ORL, +ORL:SP:27000107,1,"R.N 1",49.63139,2.291667,0,0,ORL:SA:CTP27000107,Europe/Paris,,ORL, +ORL:SP:27000108,1,"R.N 1",49.630138,2.293233,0,0,ORL:SA:CTP27000107,Europe/Paris,,ORL, +ORL:SP:27000109,1,"C.H.U Amiens",49.877052,2.25596,0,0,ORL:SA:CTP27000109,Europe/Paris,,ORL, +ORL:SP:27000111,1,"Campus",49.874165,2.265001,0,0,ORL:SA:CTP27000111,Europe/Paris,,ORL, +ORL:SP:27000112,1,"Campus",49.873794,2.264703,0,0,ORL:SA:CTP27000111,Europe/Paris,,ORL, +ORL:SP:27000113,1,"Cité scolaire",49.879073,2.297837,0,0,ORL:SA:CTP27000113,Europe/Paris,,ORL, +ORL:SP:27000114,1,"Cité scolaire",49.879412,2.295826,0,0,ORL:SA:CTP27000113,Europe/Paris,,ORL, +ORL:SP:27000115,1,"Gare Routière",49.891206,2.308162,0,0,ORL:SA:CTP27000115,Europe/Paris,,ORL, +ORL:SP:27000116,1,"Gare Routière",49.891206,2.308162,0,0,ORL:SA:CTP27000115,Europe/Paris,,ORL, +ORL:SP:27000128,1,"Gare St-Roch",49.893793,2.284254,0,0,ORL:SA:CTP27000128,Europe/Paris,,ORL, +ORL:SP:27000129,1,"Gare St-Roch",49.893894,2.28473,0,0,ORL:SA:CTP27000128,Europe/Paris,,ORL, +ORL:SP:27000130,1,"DANCOURT POPINCOURT D930/D133",49.672918,2.743555,0,0,ORL:SA:CTP27000130,Europe/Paris,,ORL, +ORL:SP:27000131,1,"Route de Paris",49.694166,2.790778,0,0,ORL:SA:CTP27000131,Europe/Paris,,ORL, +ORL:SP:27000132,1,"Salengro",49.710313,2.790317,0,0,ORL:SA:CTP27000132,Europe/Paris,,ORL, +ORL:SP:27000133,1,"SAINT MARD Centre",49.693185,2.762944,0,0,ORL:SA:CTP27000133,Europe/Paris,,ORL, +ORL:SP:27000134,1,"FRESNOY-LES-ROYE Mairie",49.737605,2.774732,0,0,ORL:SA:CTP27000134,Europe/Paris,,ORL, +ORL:SP:27000135,1,"Mairie",49.768348,2.788084,0,0,ORL:SA:CTP27000135,Europe/Paris,,ORL, +ORL:SP:27000136,1,"D132/D39",49.793199,2.789289,0,0,ORL:SA:CTP27000136,Europe/Paris,,ORL, +ORL:SP:27000137,1,"Jean Jaures",49.818333,2.799722,0,0,ORL:SA:CTP27000137,Europe/Paris,,ORL, +ORL:SP:27000138,1,"MARCHELEPOT Centre",49.834715,2.871508,0,0,ORL:SA:CTP27000138,Europe/Paris,,ORL, +ORL:SP:27000139,1,"FRESNE MAZENCOURT Route Nationale",49.850056,2.876165,0,0,ORL:SA:CTP27000139,Europe/Paris,,ORL, +ORL:SP:27000140,1,"Chapelette Route de Paris",49.912657,2.931295,0,0,ORL:SA:CTP27000140,Europe/Paris,,ORL, +ORL:SP:27000141,1,"Centre Ville Saint Sauveur",49.930287,2.936408,0,0,ORL:SA:CTP27000141,Europe/Paris,,ORL, +ORL:SP:27000142,1,"Lycée Mendes France",49.935564,2.940141,0,0,ORL:SA:CTP27000142,Europe/Paris,,ORL, +ORL:SP:27000143,1,"Place William Poivre",49.919558,2.971995,0,0,ORL:SA:CTP27000143,Europe/Paris,,ORL, +ORL:SP:27000144,1,"Mairie",49.912663,3.012668,0,0,ORL:SA:CTP27000144,Europe/Paris,,ORL, +ORL:SP:27000145,1,"Boucly",49.935195,3.050084,0,0,ORL:SA:CTP27000145,Europe/Paris,,ORL, +ORL:SP:27000146,1,"TINCOURT BOUCLY Centre",49.942519,3.050006,0,0,ORL:SA:CTP27000146,Europe/Paris,,ORL, +ORL:SP:27000147,1,"MAIGNELAY Centre",49.552778,2.519723,0,0,ORL:SA:CTP27000147,Europe/Paris,,ORL, +ORL:SP:27000148,1,"MAIGNELAY College",49.550852,2.514635,0,0,ORL:SA:CTP27000148,Europe/Paris,,ORL, +ORL:SP:27000149,1,"SAINS MORAINVILLERS Centre",49.573316,2.47223,0,0,ORL:SA:CTP27000149,Europe/Paris,,ORL, +ORL:SP:27000150,1,"BRUNVILLIERS la MOTTE D23/D564",49.549464,2.452205,0,0,ORL:SA:CTP27000150,Europe/Paris,,ORL, +ORL:SP:27000151,1,"Gymnase (Collège Saint Vincent)",49.646392,2.569391,0,0,ORL:SA:CTP27000151,Europe/Paris,,ORL, +ORM:SP:28000001,1,"MAIRIE",49.305829,1.612217,0,0,ORM:SA:CTP28000001,Europe/Paris,,ORM, +ORM:SP:28000003,1,"MAIRIE",49.305835,1.611667,0,0,ORM:SA:CTP28000001,Europe/Paris,,ORM, +ORM:SP:28000004,1,"CIMETIÈRE",49.304165,1.623891,0,0,ORM:SA:CTP28000004,Europe/Paris,,ORM, +ORM:SP:28000005,1,"CIMETIÈRE",49.304447,1.624451,0,0,ORM:SA:CTP28000004,Europe/Paris,,ORM, +ORM:SP:28000006,1,"PLACE DE LA LIBERATION",49.293435,1.696774,0,0,ORM:SA:CTP28000006,Europe/Paris,,ORM, +ORM:SP:28000007,1,"PLACE DE LA LIBERATION",49.293579,1.696882,0,0,ORM:SA:CTP28000006,Europe/Paris,,ORM, +ORM:SP:28000008,1,"POSTE",49.294725,1.704451,0,0,ORM:SA:CTP28000008,Europe/Paris,,ORM, +ORM:SP:28000009,1,"POSTE",49.294725,1.704451,0,0,ORM:SA:CTP28000008,Europe/Paris,,ORM, +ORM:SP:28000010,1,"LES RICQUETS",49.288615,1.716393,0,0,ORM:SA:CTP28000010,Europe/Paris,,ORM, +ORM:SP:28000011,1,"LES RICQUETS",49.288892,1.716115,0,0,ORM:SA:CTP28000010,Europe/Paris,,ORM, +ORM:SP:28000012,1,"LES BOSQUETS",49.283345,1.734777,0,0,ORM:SA:CTP28000012,Europe/Paris,,ORM, +ORM:SP:28000013,1,"LES BOSQUETS",49.282844,1.737062,0,0,ORM:SA:CTP28000012,Europe/Paris,,ORM, +ORM:SP:28000014,1,"HOPITAL",49.279447,1.760832,0,0,ORM:SA:CTP28000014,Europe/Paris,,ORM, +ORM:SP:28000015,1,"HOPITAL",49.279447,1.760832,0,0,ORM:SA:CTP28000014,Europe/Paris,,ORM, +ORM:SP:28000016,1,"PLACE BLANMONT",49.279882,1.772774,0,0,ORM:SA:CTP28000016,Europe/Paris,,ORM, +ORM:SP:28000017,1,"PLACE BLANMONT",49.279872,1.772651,0,0,ORM:SA:CTP28000016,Europe/Paris,,ORM, +ORM:SP:28000018,1,"LES REMPARTS",49.283056,1.779167,0,0,ORM:SA:CTP28000018,Europe/Paris,,ORM, +ORM:SP:28000019,1,"LES REMPARTS",49.283056,1.779167,0,0,ORM:SA:CTP28000018,Europe/Paris,,ORM, +ORM:SP:28000020,1,"GARE SNCF",49.285405,1.784058,0,0,TRN:SA:DUA8738124,Europe/Paris,,ORM, +ORM:SP:28000021,1,"GARE SNCF",49.285113,1.784858,0,0,TRN:SA:DUA8738124,Europe/Paris,,ORM, +ORM:SP:28000022,1,"AVENUE FORCINAL",49.284996,1.790833,0,0,ORM:SA:CTP28000022,Europe/Paris,,ORM, +ORM:SP:28000023,1,"AVENUE FORCINAL",49.284996,1.790833,0,0,ORM:SA:CTP28000022,Europe/Paris,,ORM, +ORM:SP:28000024,1,"CENTRE",49.283915,1.822624,0,0,ORM:SA:CTP28000024,Europe/Paris,,ORM, +ORM:SP:28000025,1,"CENTRE",49.284479,1.822261,0,0,ORM:SA:CTP28000024,Europe/Paris,,ORM, +ORM:SP:28000026,1,"GRAND CERF",49.264894,1.882629,0,0,ORM:SA:CTP28000026,Europe/Paris,,ORM, +ORM:SP:28000027,1,"GRAND CERF",49.264948,1.882629,0,0,ORM:SA:CTP28000026,Europe/Paris,,ORM, +ORM:SP:28000028,1,"RUE HOTEL DE VILLE",49.262736,1.882086,0,0,ORM:SA:CTP28000028,Europe/Paris,,ORM, +ORM:SP:28000029,1,"RUE HOTEL DE VILLE",49.262682,1.882017,0,0,ORM:SA:CTP28000028,Europe/Paris,,ORM, +ORM:SP:28000030,1,"COLLEGE ST EX",49.262134,1.875062,0,0,ORM:SA:CTP28000030,Europe/Paris,,ORM, +ORM:SP:28000031,1,"COLLEGE ST EX",49.262134,1.875062,0,0,ORM:SA:CTP28000030,Europe/Paris,,ORM, +ORM:SP:28000032,1,"CENTRE",49.190432,1.881025,0,0,ORM:SA:CTP28000032,Europe/Paris,,ORM, +ORM:SP:28000033,1,"CENTRE",49.190549,1.881065,0,0,ORM:SA:CTP28000032,Europe/Paris,,ORM, +ORM:SP:28000034,1,"SAINT CHRISTOPHE RER",49.049863,2.034317,0,0,ORM:SA:CTP28000034,Europe/Paris,,ORM, +ORM:SP:28000035,1,"SAINT CHRISTOPHE RER",49.049863,2.034317,0,0,ORM:SA:CTP28000034,Europe/Paris,,ORM, +ORM:SP:28000036,1,"LE VERGER",49.050471,2.04372,0,0,ORM:SA:CTP28000036,Europe/Paris,,ORM, +ORM:SP:28000037,1,"LE VERGER",49.050471,2.04372,0,0,ORM:SA:CTP28000036,Europe/Paris,,ORM, +ORM:SP:28000038,1,"MARJOBERT",49.04115,2.07357,0,0,ORM:SA:CTP28000038,Europe/Paris,,ORM, +ORM:SP:28000039,1,"MARJOBERT",49.041411,2.073637,0,0,ORM:SA:CTP28000038,Europe/Paris,,ORM, +ORM:SP:28000040,1,"PREFECTURE RER",49.037173,2.079263,0,0,ORM:SA:CTP28000040,Europe/Paris,,ORM, +ORM:SP:28000041,1,"PREFECTURE RER",49.035175,2.082075,0,0,ORM:SA:CTP28000041,Europe/Paris,,ORM, +ORQ:SP:29000001,1,"Gare SNCF",49.264163,2.470279,0,0,OGN:SA:CTP6090043,Europe/Paris,,ORQ, +ORQ:SP:29000002,1,"Gare SNCF",49.264199,2.470293,0,0,OGN:SA:CTP6090043,Europe/Paris,,ORQ, +ORQ:SP:29000003,1,"Valois",49.252109,2.483492,0,0,ORQ:SA:CTP29000003,Europe/Paris,,ORQ, +ORQ:SP:29000004,1,"Valois",49.25209,2.483684,0,0,ORQ:SA:CTP29000003,Europe/Paris,,ORQ, +ORQ:SP:29000005,1,"place des arènes",49.206909,2.577187,0,0,ORQ:SA:CTP29000005,Europe/Paris,,ORQ, +ORQ:SP:29000007,1,"Gare Routière",49.206115,2.591938,0,0,ODV:SA:CTP22403067,Europe/Paris,,ORQ, +ORQ:SP:29000008,1,"Gare Routière",49.206043,2.592047,0,0,ODV:SA:CTP22403067,Europe/Paris,,ORQ, +ORQ:SP:29000009,1,"ROISSY-POLE Gare Routière",49.010673,2.55935,0,0,ORQ:SA:CTP29000009,Europe/Paris,,ORQ, +ORQ:SP:29000010,1,"ROISSY-POLE Gare Routière",49.010808,2.559078,0,0,ORQ:SA:CTP29000009,Europe/Paris,,ORQ, +ORQ:SP:29000011,1,"Base Aérienne",49.243903,2.506043,0,0,ORQ:SA:CTP29000011,Europe/Paris,,ORQ, +ORQ:SP:29000012,1,"Base Aérienne",49.244243,2.507018,0,0,ORQ:SA:CTP29000011,Europe/Paris,,ORQ, +ORQ:SP:29000013,1,"ROISSY",49.010803,2.560517,0,0,ORQ:SA:CTP29000013,Europe/Paris,,ORQ, +ORQ:SP:29000014,1,"ROISSY",49.010803,2.560517,0,0,ORQ:SA:CTP29000013,Europe/Paris,,ORQ, +ORQ:SP:29000015,1,"NANTEUIL LE HAUDOUIN",49.142503,2.794771,0,0,ORQ:SA:CTP29000015,Europe/Paris,,ORQ, +ORQ:SP:29000016,1,"NANTEUIL LE HAUDOUIN",49.142503,2.794771,0,0,ORQ:SA:CTP29000015,Europe/Paris,,ORQ, +ORQ:SP:29000017,1,"LAGNY-LE-SEC",49.095697,2.739651,0,0,ORQ:SA:CTP29000017,Europe/Paris,,ORQ, +ORQ:SP:29000018,1,"LAGNY-LE-SEC",49.095697,2.739651,0,0,ORQ:SA:CTP29000017,Europe/Paris,,ORQ, +ORQ:SP:29000019,1,"CREPY EN VALOIS GARE SNCF",49.231408,2.886733,0,0,ORQ:SA:CTP29000019,Europe/Paris,,ORQ, +ORQ:SP:29000020,1,"CREPY EN VALOIS GARE SNCF",49.231408,2.886733,0,0,ORQ:SA:CTP29000019,Europe/Paris,,ORQ, +ORQ:SP:29000021,1,"Place des arènes",49.20681,2.577557,0,0,ORQ:SA:CTP29000005,Europe/Paris,,ORQ, +OSP:SP:19000001,1,"SAINT LEU D'ESSERENT Val",49.220016,2.416658,0,0,OSP:SA:CTP19000001,Europe/Paris,,OSP, +OSP:SP:19000003,1,"SAINT LEU D'ESSERENT Guy Mocquet",49.224032,2.417419,0,0,OSP:SA:CTP19000003,Europe/Paris,,OSP, +OSP:SP:19000007,1,"SAINT LEU D'ESSERENT Gare SNCF",49.213887,2.418335,0,0,OSP:SA:CTP19000007,Europe/Paris,,OSP, +OSP:SP:19000008,1,"SAINT MAXIMIN Croizat",49.221096,2.438332,0,0,OSP:SA:CTP19000008,Europe/Paris,,OSP, +OSP:SP:19000009,1,"SAINT MAXIMIN Mairie",49.222606,2.443226,0,0,OSP:SA:CTP19000009,Europe/Paris,,OSP, +OSP:SP:19000010,1,"SAINT MAXIMIN Dewaele",49.221105,2.453268,0,0,OSP:SA:CTP19000010,Europe/Paris,,OSP, +OSP:SP:19000012,1,"Gare SNCF",49.188336,2.45972,0,0,OYY:SA:CTP4010011,Europe/Paris,,OSP, +OSP:SP:19000014,1,"SAINT LEU D'ESSERENT Collège Jules Vallés",49.218459,2.405971,0,0,OSP:SA:CTP19000014,Europe/Paris,,OSP, +OSP:SP:19000016,1,"SAINT LEU D'ESSERENT La muette",49.216111,2.410837,0,0,OSP:SA:CTP19000016,Europe/Paris,,OSP, +OSP:SP:19000017,1,"SAINT LEU D'ESSERENT Place de la République",49.215945,2.418599,0,0,OSP:SA:CTP19000017,Europe/Paris,,OSP, +OSP:SP:19000019,1,"SAINT LEU D'ESSERENT Art et Culture",49.217119,2.423141,0,0,OSP:SA:CTP19000019,Europe/Paris,,OSP, +OSP:SP:19000021,1,"SAINT LEU D'ESSERENT Petit Therain",49.243986,2.440586,0,0,OSP:SA:CTP19000021,Europe/Paris,,OSP, +OSP:SP:19000022,1,"THIVERNY Carrière",49.239038,2.438573,0,0,OSP:SA:CTP19000022,Europe/Paris,,OSP, +OSP:SP:19000023,1,"Grand Marais",49.246165,2.43587,0,0,OSP:SA:CTP19000023,Europe/Paris,,OSP, +OSP:SP:19000024,1,"Mairie",49.247685,2.433114,0,0,OSP:SA:CTP19000024,Europe/Paris,,OSP, +OSP:SP:19000025,1,"THIVERNY Gare SNCF",49.250828,2.435206,0,0,OSP:SA:CTP19000025,Europe/Paris,,OSP, +OSP:SP:19000026,1,"Jean Jaurès",49.255559,2.458521,0,0,OSP:SA:CTP19000026,Europe/Paris,,OSP, +OSP:SP:19000028,1,"Vieux Moulin",49.223335,2.455469,0,0,OSP:SA:CTP19000028,Europe/Paris,,OSP, +OSP:SP:19000029,1,"Révolution française (C.Cial)",49.234166,2.468336,0,0,OSP:SA:CTP19000029,Europe/Paris,,OSP, +OSP:SP:19000030,1,"Marseillaise",49.233177,2.461213,0,0,OSP:SA:CTP19000030,Europe/Paris,,OSP, +OSP:SP:19000031,1,"Fraternité",49.238383,2.465767,0,0,OSP:SA:CTP19000031,Europe/Paris,,OSP, +OSP:SP:19000032,1,"Montagnards",49.238612,2.469719,0,0,OSP:SA:CTP19000032,Europe/Paris,,OSP, +OSP:SP:19000033,1,"Porte de Creil",49.243887,2.468607,0,0,OSP:SA:CTP19000033,Europe/Paris,,OSP, +OSP:SP:19000034,1,"Mairie",49.30712,2.397722,0,0,OSP:SA:CTP19000034,Europe/Paris,,OSP, +OSP:SP:19000035,1,"Flandre",49.294,2.38599,0,0,OSP:SA:CTP19000035,Europe/Paris,,OSP, +OSP:SP:19000036,1,"Lanterne",49.260555,2.37834,0,0,OSP:SA:CTP19000036,Europe/Paris,,OSP, +OSP:SP:19000037,1,"Mairie",49.260431,2.374057,0,0,OSP:SA:CTP19000037,Europe/Paris,,OSP, +OSP:SP:19000038,1,"Salengro",49.263415,2.4103,0,0,OSP:SA:CTP19000038,Europe/Paris,,OSP, +OSP:SP:19000039,1,"Parvillée",49.25667,2.40583,0,0,OSP:SA:CTP19000039,Europe/Paris,,OSP, +OSP:SP:19000040,1,"Ginistri - Centre Cial Leclerc",49.25303,2.43484,0,0,OSP:SA:CTP19000040,Europe/Paris,,OSP, +OSP:SP:19000041,1,"Victor Hugo",49.260277,2.438477,0,0,OSP:SA:CTP19000041,Europe/Paris,,OSP, +OSP:SP:19000044,1,"Mairie",49.247793,2.432963,0,0,OSP:SA:CTP19000024,Europe/Paris,,OSP, +OSP:SP:19000046,1,"Jean Cassé",49.249168,2.433062,0,0,OSP:SA:CTP19000046,Europe/Paris,,OSP, +OSP:SP:19000049,1,"Commune de Paris",49.265553,2.394172,0,0,OSP:SA:CTP19000049,Europe/Paris,,OSP, +OSP:SP:19000053,1,"Guesdière",49.216948,2.422784,0,0,OSP:SA:CTP19000053,Europe/Paris,,OSP, +OSP:SP:19000054,1,"Croix Aude",49.220282,2.421939,0,0,OSP:SA:CTP19000054,Europe/Paris,,OSP, +OSP:SP:19000055,1,"Salvador Allende",49.215,2.406666,0,0,OSP:SA:CTP19000055,Europe/Paris,,OSP, +OSP:SP:19000068,1,"SAINT MAXIMIN Croizat",49.220431,2.438125,0,0,OSP:SA:CTP19000008,Europe/Paris,,OSP, +OSP:SP:19000069,1,"SAINT MAXIMIN Mairie",49.222844,2.442896,0,0,OSP:SA:CTP19000009,Europe/Paris,,OSP, +OSP:SP:19000070,1,"SAINT MAXIMIN Dewaele",49.221067,2.453251,0,0,OSP:SA:CTP19000010,Europe/Paris,,OSP, +OSP:SP:19000071,1,"Marseillaise",49.233213,2.460938,0,0,OSP:SA:CTP19000030,Europe/Paris,,OSP, +OSP:SP:19000072,1,"Gare SNCF",49.261811,2.468406,0,0,OSP:SA:CTP19000072,Europe/Paris,,OSP, +OSP:SP:19000073,1,"SAINT LEU D'ESSERENT Val",49.219217,2.415806,0,0,OSP:SA:CTP19000001,Europe/Paris,,OSP, +OSP:SP:19000074,1,"Abribus",49.265608,2.391015,0,0,OSP:SA:CTP19000074,Europe/Paris,,OSP, +OSP:SP:19000075,1,"Parvillée",49.255557,2.404442,0,0,OSP:SA:CTP19000039,Europe/Paris,,OSP, +OSP:SP:19000076,1,"Jean Cassé",49.249724,2.433612,0,0,OSP:SA:CTP19000046,Europe/Paris,,OSP, +OSP:SP:19000077,1,"Grand Marais",49.246272,2.435829,0,0,OSP:SA:CTP19000023,Europe/Paris,,OSP, +OSP:SP:19000080,1,"Hôpital",49.247532,2.46299,0,0,OSP:SA:CTP19000080,Europe/Paris,,OSP, +OSP:SP:19000081,1,"Magenta",49.25859,2.410568,0,0,OGN:SA:CTP6090073,Europe/Paris,,OSP, +OSP:SP:19000082,1,"Magenta",49.258545,2.410458,0,0,OGN:SA:CTP6090073,Europe/Paris,,OSP, +OSP:SP:19000083,1,"Séguin",49.255501,2.421228,0,0,OSP:SA:CTP19000083,Europe/Paris,,OSP, +OSP:SP:19000084,1,"Séguin",49.255457,2.421242,0,0,OSP:SA:CTP19000083,Europe/Paris,,OSP, +OSP:SP:19000085,1,"Ginisti",49.256135,2.427228,0,0,OGN:SA:CTP6090046,Europe/Paris,,OSP, +OSP:SP:19000086,1,"Ginisti",49.256135,2.427241,0,0,OGN:SA:CTP6090046,Europe/Paris,,OSP, +OSP:SP:19000087,1,"Mairie - Place de la Mairie",49.256569,2.434819,0,0,OSP:SA:CTP19000087,Europe/Paris,,OSP, +OSP:SP:19000088,1,"Mairie - Guy Môquet",49.255456,2.434323,0,0,OSP:SA:CTP19000088,Europe/Paris,,OSP, +OSP:SP:19000090,1,"Gare SNCF",49.251636,2.436035,0,0,OSP:SA:CTP19000090,Europe/Paris,,OSP, +OST:SP:23NOV_01,1,"23 Novembre",48.533176,7.706438,0,0,OST:SA:CTP23NOV_01,Europe/Paris,,OST, +OST:SP:23NOV_02,1,"23 Novembre",48.533146,7.706489,0,0,OST:SA:CTP23NOV_01,Europe/Paris,,OST, +OST:SP:23NOV_03,1,"23 Novembre",48.532712,7.704172,0,0,OST:SA:CTP23NOV_01,Europe/Paris,,OST, +OST:SP:23NOV_04,1,"23 Novembre",48.532603,7.70433,0,0,OST:SA:CTP23NOV_01,Europe/Paris,,OST, +OST:SP:ABATT_01,1,"Abattoirs",48.557093,7.650669,0,0,OST:SA:CTPABATT_01,Europe/Paris,,OST, +OST:SP:ABATT_02,1,"Abattoirs",48.556923,7.653701,0,0,OST:SA:CTPABATT_01,Europe/Paris,,OST, +OST:SP:ABBAT_01,1,"Abbatiale",48.491551,7.715934,0,0,OST:SA:CTPABBAT_01,Europe/Paris,,OST, +OST:SP:ABBAT_02,1,"Abbatiale",48.491657,7.716065,0,0,OST:SA:CTPABBAT_01,Europe/Paris,,OST, +OST:SP:ABEPE_01,1,"Abbé de l'Epée",48.545452,7.760698,0,0,OST:SA:CTPABEPE_01,Europe/Paris,,OST, +OST:SP:ABEPE_02,1,"Abbé de l'Epée",48.545544,7.761205,0,0,OST:SA:CTPABEPE_01,Europe/Paris,,OST, +OST:SP:ABLEM_01,1,"Abbé Lemire",48.578203,7.724582,0,0,OST:SA:CTPABLEM_01,Europe/Paris,,OST, +OST:SP:ABLEM_02,1,"Abbé Lemire",48.578139,7.724718,0,0,OST:SA:CTPABLEM_01,Europe/Paris,,OST, +OST:SP:ACACI_01,1,"Acacias",48.515908,7.711009,0,0,OST:SA:CTPACACI_01,Europe/Paris,,OST, +OST:SP:ACACI_02,1,"Acacias",48.515912,7.711258,0,0,OST:SA:CTPACACI_01,Europe/Paris,,OST, +OST:SP:AEROP_02,1,"Aeroparc",48.54182,7.651548,0,0,OST:SA:CTPAEROP_02,Europe/Paris,,OST, +OST:SP:AEROP_03,1,"Aeroparc",48.541947,7.652057,0,0,OST:SA:CTPAEROP_02,Europe/Paris,,OST, +OST:SP:ALAIG_01,1,"A l'Aigle",48.557102,7.645975,0,0,OST:SA:CTPALAIG_01,Europe/Paris,,OST, +OST:SP:ALAIG_02,1,"A l'Aigle",48.557061,7.645882,0,0,OST:SA:CTPALAIG_01,Europe/Paris,,OST, +OST:SP:ALEUR_01,1,"Allée de l'Euro",48.604529,7.705552,0,0,OST:SA:CTPALEUR_01,Europe/Paris,,OST, +OST:SP:ALEUR_02,1,"Allée de l'Euro",48.604613,7.70578,0,0,OST:SA:CTPALEUR_01,Europe/Paris,,OST, +OST:SP:ALOUE_01,1,"Alouettes",48.642839,7.753812,0,0,OST:SA:CTPALOUE_01,Europe/Paris,,OST, +OST:SP:ALOUE_02,1,"Alouettes",48.643508,7.753633,0,0,OST:SA:CTPALOUE_01,Europe/Paris,,OST, +OST:SP:ALOUT_01,1,"Lingolsheim Alouettes",48.551291,7.692661,0,0,OST:SA:CTPALOUT_01,Europe/Paris,,OST, +OST:SP:ALOUT_02,1,"Lingolsheim Alouettes",48.551359,7.692683,0,0,OST:SA:CTPALOUT_01,Europe/Paris,,OST, +OST:SP:ALOUT_03,1,"Lingolsheim Alouettes L.15",48.551607,7.692828,0,0,OST:SA:CTPALOUT_03,Europe/Paris,,OST, +OST:SP:ALOUT_04,1,"Lingolsheim Alouettes L12/22",48.551524,7.692538,0,0,OST:SA:CTPALOUT_04,Europe/Paris,,OST, +OST:SP:ALOUT_05,1,"Lingolsheim Alouettes L.15",48.551194,7.692627,0,0,OST:SA:CTPALOUT_03,Europe/Paris,,OST, +OST:SP:ALOUT_06,1,"Lingolsheim Alouettes",48.551194,7.692627,0,0,OST:SA:CTPALOUT_01,Europe/Paris,,OST, +OST:SP:ALSCH_01,1,"Albert Schweitzer",48.491422,7.687577,0,0,OST:SA:CTPALSCH_01,Europe/Paris,,OST, +OST:SP:ALSCH_02,1,"Albert Schweitzer",48.49128,7.689082,0,0,OST:SA:CTPALSCH_01,Europe/Paris,,OST, +OST:SP:ALWIN_01,1,"Alt Winmärik-Vieux Marché aux Vins",48.583449,7.740324,0,0,OST:SA:CTPALWIN_01,Europe/Paris,,OST, +OST:SP:ALWIN_02,1,"Alt Winmärik-Vieux Marché aux Vins",48.583308,7.740049,0,0,OST:SA:CTPALWIN_01,Europe/Paris,,OST, +OST:SP:ANDOU_01,1,"Ancienne Douane",48.579683,7.749871,0,0,OST:SA:CTPANDOU_01,Europe/Paris,,OST, +OST:SP:ANEMO_01,1,"Anémones",48.643182,7.722844,0,0,OST:SA:CTPANEMO_01,Europe/Paris,,OST, +OST:SP:ANEMO_02,1,"Anémones",48.64324,7.723721,0,0,OST:SA:CTPANEMO_01,Europe/Paris,,OST, +OST:SP:ANFOR_01,1,"Ancienne Forge",48.531486,7.63135,0,0,OST:SA:CTPANFOR_01,Europe/Paris,,OST, +OST:SP:ANFOR_02,1,"Ancienne Forge",48.531669,7.632548,0,0,OST:SA:CTPANFOR_01,Europe/Paris,,OST, +OST:SP:ANGLE_01,1,"Angle",48.611576,7.788651,0,0,OST:SA:CTPANGLE_01,Europe/Paris,,OST, +OST:SP:ANGLE_02,1,"Angle",48.611576,7.788651,0,0,OST:SA:CTPANGLE_01,Europe/Paris,,OST, +OST:SP:ANKAR_03,1,"Ankara",48.575391,7.771443,0,0,OST:SA:CTPANKAR_03,Europe/Paris,,OST, +OST:SP:ANKAR_04,1,"Ankara",48.576531,7.77125,0,0,OST:SA:CTPANKAR_03,Europe/Paris,,OST, +OST:SP:ANSYN_01,1,"Ancienne Synagogue / Les Halles",48.585329,7.742377,0,0,OST:SA:CTPANSYN_01,Europe/Paris,,OST, +OST:SP:ANSYN_02,1,"Ancienne Synagogue / Les Halles",48.585304,7.742246,0,0,OST:SA:CTPANSYN_01,Europe/Paris,,OST, +OST:SP:ARANS_01,1,"Artisans",48.660473,7.721051,0,0,OST:SA:CTPARANS_01,Europe/Paris,,OST, +OST:SP:ARANS_02,1,"Artisans",48.659722,7.721216,0,0,OST:SA:CTPARANS_01,Europe/Paris,,OST, +OST:SP:ARBRI_03,1,"Aristide Briand",48.56827,7.776242,0,0,OST:SA:CTPARBRI_03,Europe/Paris,,OST, +OST:SP:ARBRI_05,1,"Aristide Briand",48.568531,7.776861,0,0,OST:SA:CTPARBRI_03,Europe/Paris,,OST, +OST:SP:ARBRI_06,1,"Aristide Briand",48.568504,7.77658,0,0,OST:SA:CTPARBRI_03,Europe/Paris,,OST, +OST:SP:ARBRI_09,1,"Aristide Briand",48.568237,7.776177,0,0,OST:SA:CTPARBRI_03,Europe/Paris,,OST, +OST:SP:ARBRI_10,1,"Aristide Briand",48.568593,7.776426,0,0,OST:SA:CTPARBRI_03,Europe/Paris,,OST, +OST:SP:ARBRI_11,1,"Aristide Briand",48.568237,7.776177,0,0,OST:SA:CTPARBRI_03,Europe/Paris,,OST, +OST:SP:ARBRI_12,1,"Aristide briand",48.568237,7.776177,0,0,OST:SA:CTPARBRI_12,Europe/Paris,,OST, +OST:SP:ARIBR_01,1,"Aristide Briand",48.56827,7.776242,0,0,OST:SA:CTPARBRI_03,Europe/Paris,,OST, +OST:SP:ATHEN_01,1,"Athènes",48.60818,7.709767,0,0,OST:SA:CTPATHEN_01,Europe/Paris,,OST, +OST:SP:ATHEN_02,1,"Athènes",48.60828,7.709767,0,0,OST:SA:CTPATHEN_01,Europe/Paris,,OST, +OST:SP:AULIZ_01,1,"Austerlitz",48.578071,7.754061,0,0,OST:SA:CTPAULIZ_01,Europe/Paris,,OST, +OST:SP:AULIZ_02,1,"Austerlitz",48.578084,7.754122,0,0,OST:SA:CTPAULIZ_01,Europe/Paris,,OST, +OST:SP:AUTA4_03,1,"Autoroute A4 fictif SAE (garage Toyota)",48.644403,7.732478,0,0,OST:SA:CTPAUTA4_03,Europe/Paris,,OST, +OST:SP:AUTA4_06,1,"Autoroute A4 fictif SAE (dir Halles)",48.644403,7.732478,0,0,OST:SA:CTPAUTA4_06,Europe/Paris,,OST, +OST:SP:AUTO4_05,1,"Autoroute A4 fictif SAE (Bretelle)",48.644403,7.732478,0,0,OST:SA:CTPAUTO4_05,Europe/Paris,,OST, +OST:SP:AUTO4_06,1,"Autoroute A4 fictif SAE (Bretelle Dir Halles)",48.644403,7.732478,0,0,OST:SA:CTPAUTO4_06,Europe/Paris,,OST, +OST:SP:AVENI_01,1,"Avenir",48.565031,7.698712,0,0,OST:SA:CTPAVENI_01,Europe/Paris,,OST, +OST:SP:AVENI_02,1,"Avenir",48.564928,7.698467,0,0,OST:SA:CTPAVENI_01,Europe/Paris,,OST, +OST:SP:BAGGE_01,1,"Baggersee",48.545164,7.737916,0,0,OST:SA:CTPBAGGE_01,Europe/Paris,,OST, +OST:SP:BAGGE_02,1,"Baggersee",48.544862,7.738013,0,0,OST:SA:CTPBAGGE_01,Europe/Paris,,OST, +OST:SP:BAGGE_03,1,"Baggersee",48.544925,7.737849,0,0,OST:SA:CTPBAGGE_01,Europe/Paris,,OST, +OST:SP:BAGGE_04,1,"Baggersee",48.545049,7.738,0,0,OST:SA:CTPBAGGE_01,Europe/Paris,,OST, +OST:SP:BAILL_01,1,"Baillis",48.606999,7.779919,0,0,OST:SA:CTPBAILL_01,Europe/Paris,,OST, +OST:SP:BAILL_02,1,"Baillis",48.606594,7.780041,0,0,OST:SA:CTPBAILL_01,Europe/Paris,,OST, +OST:SP:BALEE_01,1,"Bâle",48.537169,7.709897,0,0,OST:SA:CTPBALEE_01,Europe/Paris,,OST, +OST:SP:BALEE_02,1,"Bâle",48.536541,7.709881,0,0,OST:SA:CTPBALEE_01,Europe/Paris,,OST, +OST:SP:BALLA_01,1,"Ballastière",48.506777,7.717167,0,0,OST:SA:CTPBALLA_01,Europe/Paris,,OST, +OST:SP:BALLA_02,1,"Ballastière",48.506906,7.717232,0,0,OST:SA:CTPBALLA_01,Europe/Paris,,OST, +OST:SP:BANLI_01,1,"Banlieue",48.600985,7.697851,0,0,OST:SA:CTPBANLI_01,Europe/Paris,,OST, +OST:SP:BANLI_02,1,"Banlieue",48.600787,7.698122,0,0,OST:SA:CTPBANLI_01,Europe/Paris,,OST, +OST:SP:BARRR_01,1,"Barr",48.601866,7.745233,0,0,OST:SA:CTPBARRR_01,Europe/Paris,,OST, +OST:SP:BARRR_02,1,"Barr",48.601729,7.745187,0,0,OST:SA:CTPBARRR_01,Europe/Paris,,OST, +OST:SP:BARTI_01,1,"Bartischgut",48.554697,7.739554,0,0,OST:SA:CTPBARTI_01,Europe/Paris,,OST, +OST:SP:BARTI_02,1,"Bartischgut",48.554784,7.739586,0,0,OST:SA:CTPBARTI_01,Europe/Paris,,OST, +OST:SP:BELZW_01,1,"Beltzwoerth",48.619291,7.793011,0,0,OST:SA:CTPBELZW_01,Europe/Paris,,OST, +OST:SP:BELZW_02,1,"Beltzwoerth",48.619288,7.792329,0,0,OST:SA:CTPBELZW_01,Europe/Paris,,OST, +OST:SP:BERGE_01,1,"Bergerac",48.554375,7.762509,0,0,OST:SA:CTPBERGE_01,Europe/Paris,,OST, +OST:SP:BERGE_02,1,"Bergerac",48.554304,7.763005,0,0,OST:SA:CTPBERGE_01,Europe/Paris,,OST, +OST:SP:BERLI_01,1,"Berlioz",48.637043,7.70974,0,0,OST:SA:CTPBERLI_01,Europe/Paris,,OST, +OST:SP:BERLI_02,1,"Berlioz",48.637129,7.710319,0,0,OST:SA:CTPBERLI_01,Europe/Paris,,OST, +OST:SP:BERLI_04,1,"Berlioz",48.637062,7.709809,0,0,OST:SA:CTPBERLI_01,Europe/Paris,,OST, +OST:SP:BERST_01,1,"Berstett",48.600196,7.711793,0,0,OST:SA:CTPBERST_01,Europe/Paris,,OST, +OST:SP:BERST_02,1,"Berstett",48.600143,7.711702,0,0,OST:SA:CTPBERST_01,Europe/Paris,,OST, +OST:SP:BETHL_01,1,"Bethel",48.611424,7.686581,0,0,OST:SA:CTPBETHL_01,Europe/Paris,,OST, +OST:SP:BETHL_02,1,"Bethel",48.611883,7.686979,0,0,OST:SA:CTPBETHL_01,Europe/Paris,,OST, +OST:SP:BETHS_01,1,"Bethesda",48.592316,7.761379,0,0,OST:SA:CTPBETHS_01,Europe/Paris,,OST, +OST:SP:BETHS_02,1,"Bethesda",48.59234,7.761055,0,0,OST:SA:CTPBETHS_01,Europe/Paris,,OST, +OST:SP:BIGAR_01,1,"Bischheim Gare",48.61452,7.744617,0,0,SIN:SA:OCE87658930,Europe/Paris,,OST, +OST:SP:BIGAR_02,1,"Bischheim Gare",48.614394,7.74514,0,0,SIN:SA:OCE87658930,Europe/Paris,,OST, +OST:SP:BITCH_03,1,"Bitche",48.609771,7.753252,0,0,OST:SA:CTPBITCH_03,Europe/Paris,,OST, +OST:SP:BITCH_04,1,"Bitche",48.609814,7.753012,0,0,OST:SA:CTPBITCH_03,Europe/Paris,,OST, +OST:SP:BLAES_01,1,"Blaesheim",48.566097,7.703393,0,0,OST:SA:CTPBLAES_01,Europe/Paris,,OST, +OST:SP:BLAES_02,1,"Blaesheim",48.566095,7.703501,0,0,OST:SA:CTPBLAES_01,Europe/Paris,,OST, +OST:SP:BLOUE_02,1,"Blaesheim Ouest",48.504345,7.600308,0,0,OST:SA:CTPBLOUE_02,Europe/Paris,,OST, +OST:SP:BOECK_01,1,"Robertsau Boecklin",48.598065,7.778031,0,0,OST:SA:CTPBOECK_01,Europe/Paris,,OST, +OST:SP:BOECK_02,1,"Robertsau Boecklin",48.597973,7.778253,0,0,OST:SA:CTPBOECK_01,Europe/Paris,,OST, +OST:SP:BOISF_01,1,"Bois Fleuri",48.603368,7.790562,0,0,OST:SA:CTPBOISF_01,Europe/Paris,,OST, +OST:SP:BOISF_02,1,"Bois Fleuri",48.60342,7.790589,0,0,OST:SA:CTPBOISF_01,Europe/Paris,,OST, +OST:SP:BORIE_01,1,"Bohrie",48.550001,7.703202,0,0,OST:SA:CTPBORIE_01,Europe/Paris,,OST, +OST:SP:BORIE_02,1,"Bohrie",48.549817,7.702749,0,0,OST:SA:CTPBORIE_01,Europe/Paris,,OST, +OST:SP:BOROU_01,1,"Boeuf Rouge",48.587084,7.668036,0,0,OST:SA:CTPBOROU_01,Europe/Paris,,OST, +OST:SP:BOROU_02,1,"Boeuf Rouge",48.587029,7.668115,0,0,OST:SA:CTPBOROU_01,Europe/Paris,,OST, +OST:SP:BOSCO_01,1,"Bosco",48.581821,7.702862,0,0,OST:SA:CTPBOSCO_01,Europe/Paris,,OST, +OST:SP:BOSCO_02,1,"Bosco",48.581814,7.703052,0,0,OST:SA:CTPBOSCO_01,Europe/Paris,,OST, +OST:SP:BOUGU_01,1,"Bouguer",48.540396,7.769024,0,0,OST:SA:CTPBOUGU_01,Europe/Paris,,OST, +OST:SP:BOUGU_02,1,"Bouguer",48.540803,7.769753,0,0,OST:SA:CTPBOUGU_01,Europe/Paris,,OST, +OST:SP:BOULO_01,1,"Boulogne",48.539912,7.787929,0,0,OST:SA:CTPBOULO_01,Europe/Paris,,OST, +OST:SP:BOULO_02,1,"Boulogne",48.539756,7.787817,0,0,OST:SA:CTPBOULO_01,Europe/Paris,,OST, +OST:SP:BOURG_01,1,"Bourgogne",48.547836,7.747899,0,0,OST:SA:CTPBOURG_01,Europe/Paris,,OST, +OST:SP:BOURG_02,1,"Bourgogne",48.547874,7.748111,0,0,OST:SA:CTPBOURG_01,Europe/Paris,,OST, +OST:SP:BOUVR_01,1,"Bouvreuil",48.634969,7.731315,0,0,OST:SA:CTPBOUVR_01,Europe/Paris,,OST, +OST:SP:BOUVR_02,1,"Bouvreuil",48.634888,7.731547,0,0,OST:SA:CTPBOUVR_01,Europe/Paris,,OST, +OST:SP:BREME_01,1,"Brême",48.598696,7.790978,0,0,OST:SA:CTPBREME_01,Europe/Paris,,OST, +OST:SP:BREME_02,1,"Brême",48.598811,7.791034,0,0,OST:SA:CTPBREME_01,Europe/Paris,,OST, +OST:SP:BROGL_01,1,"Broglie",48.584826,7.749513,0,0,OST:SA:CTPBROGL_01,Europe/Paris,,OST, +OST:SP:BROGL_02,1,"Broglie",48.584663,7.749073,0,0,OST:SA:CTPBROGL_01,Europe/Paris,,OST, +OST:SP:BRUCH_01,1,"Bruche",48.570085,7.711055,0,0,OST:SA:CTPBRUCH_01,Europe/Paris,,OST, +OST:SP:BRUCH_02,1,"Bruche",48.570234,7.711272,0,0,OST:SA:CTPBRUCH_01,Europe/Paris,,OST, +OST:SP:BRUNI_01,1,"Brant Université",48.585848,7.761431,0,0,OST:SA:CTPBRUNI_01,Europe/Paris,,OST, +OST:SP:BRUNI_02,1,"Brant Université",48.585591,7.761672,0,0,OST:SA:CTPBRUNI_01,Europe/Paris,,OST, +OST:SP:BRUNI_03,1,"Brant Université",48.585635,7.761317,0,0,OST:SA:CTPBRUNI_01,Europe/Paris,,OST, +OST:SP:BRUXE_01,1,"Bruxelles",48.584186,7.77515,0,0,OST:SA:CTPBRUXE_01,Europe/Paris,,OST, +OST:SP:BRUXE_02,1,"Bruxelles",48.584154,7.775265,0,0,OST:SA:CTPBRUXE_01,Europe/Paris,,OST, +OST:SP:BRXEL_01,1,"Bruxelles (Marché)",48.584186,7.77515,0,0,OST:SA:CTPBRXEL_01,Europe/Paris,,OST, +OST:SP:BRXEL_02,1,"Bruxelles (Marché)",48.584154,7.775265,0,0,OST:SA:CTPBRXEL_01,Europe/Paris,,OST, +OST:SP:BUGAT_01,1,"Bugatti",48.58941,7.687845,0,0,OST:SA:CTPBUGAT_01,Europe/Paris,,OST, +OST:SP:BUGAT_02,1,"Bugatti",48.589503,7.688592,0,0,OST:SA:CTPBUGAT_01,Europe/Paris,,OST, +OST:SP:BUSSI_01,1,"Bussière",48.621292,7.797872,0,0,OST:SA:CTPBUSSI_01,Europe/Paris,,OST, +OST:SP:BUSSI_02,1,"Bussière",48.621137,7.797398,0,0,OST:SA:CTPBUSSI_01,Europe/Paris,,OST, +OST:SP:CAHAU_01,1,"Carpe Haute",48.59614,7.788215,0,0,OST:SA:CTPCAHAU_01,Europe/Paris,,OST, +OST:SP:CAHAU_02,1,"Carpe Haute",48.596081,7.78829,0,0,OST:SA:CTPCAHAU_01,Europe/Paris,,OST, +OST:SP:CAILL_03,1,"Campus d'Illkirch",48.529354,7.732779,0,0,OST:SA:CTPCAILL_03,Europe/Paris,,OST, +OST:SP:CAILL_04,1,"Campus d'Illkirch",48.52957,7.732904,0,0,OST:SA:CTPCAILL_03,Europe/Paris,,OST, +OST:SP:CAILL_06,1,"Campus d'Illkirch",48.529198,7.732881,0,0,OST:SA:CTPCAILL_03,Europe/Paris,,OST, +OST:SP:CAILL_09,1,"Campus d'Illkirch",48.529521,7.733092,0,0,OST:SA:CTPCAILL_03,Europe/Paris,,OST, +OST:SP:CAILL_14,1,"Campus d'Illkirch",48.529521,7.733092,0,0,OST:SA:CTPCAILL_03,Europe/Paris,,OST, +OST:SP:CAITIR_1,1,"Campus d'Illkirch Tiroir",48.529354,7.732779,0,0,OST:SA:CTPCAITIR_1,Europe/Paris,,OST, +OST:SP:CAMPI_01,1,"Camping",48.573304,7.718337,0,0,OST:SA:CTPCAMPI_01,Europe/Paris,,OST, +OST:SP:CAMPI_02,1,"Camping",48.573371,7.719249,0,0,OST:SA:CTPCAMPI_01,Europe/Paris,,OST, +OST:SP:CANAL_01,1,"Canal",48.678465,7.697228,0,0,OST:SA:CTPCANAL_01,Europe/Paris,,OST, +OST:SP:CANAL_02,1,"Canal",48.678461,7.697079,0,0,OST:SA:CTPCANAL_01,Europe/Paris,,OST, +OST:SP:CAPIE_01,1,"Capitainerie",48.576597,7.787845,0,0,OST:SA:CTPCAPIE_01,Europe/Paris,,OST, +OST:SP:CAPIE_02,1,"Capitainerie",48.576559,7.787691,0,0,OST:SA:CTPCAPIE_01,Europe/Paris,,OST, +OST:SP:CAPUC_01,1,"Capucins",48.578036,7.704871,0,0,OST:SA:CTPCAPUC_01,Europe/Paris,,OST, +OST:SP:CAPUC_02,1,"Capucins",48.578059,7.705836,0,0,OST:SA:CTPCAPUC_01,Europe/Paris,,OST, +OST:SP:CATHE_01,1,"Catherine",48.597212,7.704863,0,0,OST:SA:CTPCATHE_01,Europe/Paris,,OST, +OST:SP:CATHE_02,1,"Catherine",48.596685,7.705974,0,0,OST:SA:CTPCATHE_01,Europe/Paris,,OST, +OST:SP:CERIS_01,1,"Cerisiers",48.534764,7.642884,0,0,OST:SA:CTPCERIS_01,Europe/Paris,,OST, +OST:SP:CERIS_02,1,"Cerisiers",48.534535,7.642645,0,0,OST:SA:CTPCERIS_01,Europe/Paris,,OST, +OST:SP:CERVA_01,1,"Cervantès",48.593112,7.698508,0,0,OST:SA:CTPCERVA_01,Europe/Paris,,OST, +OST:SP:CERVA_02,1,"Cervantès",48.593286,7.69883,0,0,OST:SA:CTPCERVA_01,Europe/Paris,,OST, +OST:SP:CESPO_01,1,"Centre Sportif",48.491252,7.683793,0,0,OST:SA:CTPCESPO_01,Europe/Paris,,OST, +OST:SP:CESPO_02,1,"Centre Sportif",48.491296,7.684157,0,0,OST:SA:CTPCESPO_01,Europe/Paris,,OST, +OST:SP:CETRA_01,1,"Centre de Traumatologie",48.537527,7.728189,0,0,OST:SA:CTPCETRA_01,Europe/Paris,,OST, +OST:SP:CETRA_02,1,"Centre de Traumatologie",48.537511,7.727969,0,0,OST:SA:CTPCETRA_01,Europe/Paris,,OST, +OST:SP:CHARM_01,1,"Charmille",48.579865,7.717295,0,0,OST:SA:CTPCHARM_01,Europe/Paris,,OST, +OST:SP:CHARM_02,1,"Charmille",48.579739,7.716863,0,0,OST:SA:CTPCHARM_01,Europe/Paris,,OST, +OST:SP:CHATE_01,1,"Chateaubriand",48.523902,7.721365,0,0,OST:SA:CTPCHATE_01,Europe/Paris,,OST, +OST:SP:CHATE_02,1,"Chateaubriand",48.523691,7.721453,0,0,OST:SA:CTPCHATE_01,Europe/Paris,,OST, +OST:SP:CHBLA_01,1,"Cheval Blanc",48.613596,7.751868,0,0,OST:SA:CTPCHBLA_01,Europe/Paris,,OST, +OST:SP:CHBLA_02,1,"Cheval Blanc",48.614406,7.752389,0,0,OST:SA:CTPCHBLA_01,Europe/Paris,,OST, +OST:SP:CHBLA_03,1,"Cheval Blanc",48.614039,7.752609,0,0,OST:SA:CTPCHBLA_01,Europe/Paris,,OST, +OST:SP:CHBLA_04,1,"Cheval Blanc",48.61405,7.751665,0,0,OST:SA:CTPCHBLA_01,Europe/Paris,,OST, +OST:SP:CHBLA_06,1,"Cheval Blanc",48.61405,7.751665,0,0,OST:SA:CTPCHBLA_01,Europe/Paris,,OST, +OST:SP:CHEAU_01,1,"Château d'Eau",48.673123,7.703967,0,0,OST:SA:CTPCHEAU_01,Europe/Paris,,OST, +OST:SP:CHEAU_02,1,"Château d'Eau",48.672508,7.703956,0,0,OST:SA:CTPCHEAU_01,Europe/Paris,,OST, +OST:SP:CHERB_01,1,"Cherbourg",48.533537,7.782757,0,0,OST:SA:CTPCHERB_01,Europe/Paris,,OST, +OST:SP:CHERB_02,1,"Cherbourg",48.533494,7.782936,0,0,OST:SA:CTPCHERB_01,Europe/Paris,,OST, +OST:SP:CHMAN_01,1,"Champ de Manoeuvre",48.60154,7.710467,0,0,OST:SA:CTPCHMAN_01,Europe/Paris,,OST, +OST:SP:CHMAN_02,1,"Champ de Manoeuvre",48.601641,7.710522,0,0,OST:SA:CTPCHMAN_01,Europe/Paris,,OST, +OST:SP:CHMAN_03,1,"Champ de Manoeuvre",48.60154,7.709567,0,0,OST:SA:CTPCHMAN_01,Europe/Paris,,OST, +OST:SP:CHMAN_04,1,"Champ de Manoeuvre",48.60154,7.709767,0,0,OST:SA:CTPCHMAN_01,Europe/Paris,,OST, +OST:SP:CHMET_03,1,"Chambre de Métiers",48.615073,7.718638,0,0,OST:SA:CTPCHMET_03,Europe/Paris,,OST, +OST:SP:CHMET_04,1,"Chambre de Métiers",48.615501,7.719487,0,0,OST:SA:CTPCHMET_03,Europe/Paris,,OST, +OST:SP:CHMET_05,1,"Chambre de Métiers",48.615073,7.718638,0,0,OST:SA:CTPCHMET_03,Europe/Paris,,OST, +OST:SP:CHMET_06,1,"Chambre de métiers",48.615501,7.719487,0,0,OST:SA:CTPCHMET_06,Europe/Paris,,OST, +OST:SP:CHOPI_01,1,"Chopin",48.525195,7.68304,0,0,OST:SA:CTPCHOPI_01,Europe/Paris,,OST, +OST:SP:CHOPI_02,1,"Chopin",48.525493,7.683837,0,0,OST:SA:CTPCHOPI_01,Europe/Paris,,OST, +OST:SP:CIADM_01,1,"Cité Administrative",48.578394,7.760513,0,0,OST:SA:CTPCIADM_01,Europe/Paris,,OST, +OST:SP:CIADM_02,1,"Cité Administrative",48.577959,7.761833,0,0,OST:SA:CTPCIADM_01,Europe/Paris,,OST, +OST:SP:CICEQ_01,1,"Cirque – Centre Equestre ",48.570028,7.796347,0,0,OST:SA:CTPCICEQ_01,Europe/Paris,,OST, +OST:SP:CICEQ_02,1,"Cirque – Centre Equestre ",48.570014,7.796292,0,0,OST:SA:CTPCICEQ_01,Europe/Paris,,OST, +OST:SP:CIILL_01,1,"Cité de l'Ill",48.612942,7.773601,0,0,OST:SA:CTPCIILL_01,Europe/Paris,,OST, +OST:SP:CIILL_02,1,"Cité de l'Ill",48.612898,7.773362,0,0,OST:SA:CTPCIILL_01,Europe/Paris,,OST, +OST:SP:CIMEI_03,1,"Cité Meinau",48.547982,7.75638,0,0,OST:SA:CTPCIMEI_03,Europe/Paris,,OST, +OST:SP:CIMEI_04,1,"Cité Meinau",48.548105,7.755597,0,0,OST:SA:CTPCIMEI_03,Europe/Paris,,OST, +OST:SP:CIMET_01,1,"Cimetière",48.55111,7.68029,0,0,OST:SA:CTPCIMET_01,Europe/Paris,,OST, +OST:SP:CIMET_02,1,"Cimetière",48.551458,7.680291,0,0,OST:SA:CTPCIMET_01,Europe/Paris,,OST, +OST:SP:CINOR_01,1,"Cimetière Nord",48.609122,7.779778,0,0,OST:SA:CTPCINOR_01,Europe/Paris,,OST, +OST:SP:CINOR_02,1,"Cimetière Nord",48.608971,7.779582,0,0,OST:SA:CTPCINOR_01,Europe/Paris,,OST, +OST:SP:CIRUS_01,1,"Cité Russi",48.559158,7.689043,0,0,OST:SA:CTPCIRUS_01,Europe/Paris,,OST, +OST:SP:CIRUS_02,1,"Cité Russi",48.55936,7.68968,0,0,OST:SA:CTPCIRUS_01,Europe/Paris,,OST, +OST:SP:CISUD_01,1,"Cimetière Sud",48.545879,7.756841,0,0,OST:SA:CTPCISUD_01,Europe/Paris,,OST, +OST:SP:CISUD_02,1,"Cimetière Sud",48.545931,7.755921,0,0,OST:SA:CTPCISUD_01,Europe/Paris,,OST, +OST:SP:CIUNI_01,1,"Cité Universitaire",48.602153,7.775597,0,0,OST:SA:CTPCIUNI_01,Europe/Paris,,OST, +OST:SP:CIUNI_02,1,"Cité Universitaire",48.601837,7.775417,0,0,OST:SA:CTPCIUNI_01,Europe/Paris,,OST, +OST:SP:CLEME_01,1,"Clémenceau",48.592157,7.754644,0,0,OST:SA:CTPCLEME_01,Europe/Paris,,OST, +OST:SP:CLEME_02,1,"Clémenceau",48.591967,7.754704,0,0,OST:SA:CTPCLEME_01,Europe/Paris,,OST, +OST:SP:CLORA_01,1,"Clinique de l'Orangerie",48.587949,7.76533,0,0,OST:SA:CTPCLORA_01,Europe/Paris,,OST, +OST:SP:CLORA_02,1,"Clinique de l'Orangerie",48.587663,7.764617,0,0,OST:SA:CTPCLORA_01,Europe/Paris,,OST, +OST:SP:CLSTA_01,1,"Clinique Sainte Anne",48.615408,7.785353,0,0,OST:SA:CTPCLSTA_01,Europe/Paris,,OST, +OST:SP:CLSTA_02,1,"Clinique Sainte Anne",48.615342,7.786053,0,0,OST:SA:CTPCLSTA_01,Europe/Paris,,OST, +OST:SP:CMCOO_01,1,"CMCO",48.600941,7.74965,0,0,OST:SA:CTPCMCOO_01,Europe/Paris,,OST, +OST:SP:CMCOO_02,1,"CMCO",48.60089,7.749774,0,0,OST:SA:CTPCMCOO_01,Europe/Paris,,OST, +OST:SP:COBOI_01,1,"Coucou des Bois",48.530715,7.773826,0,0,OST:SA:CTPCOBOI_01,Europe/Paris,,OST, +OST:SP:COCHA_01,1,"Cor de Chasse",48.513188,7.712275,0,0,OST:SA:CTPCOCHA_01,Europe/Paris,,OST, +OST:SP:COCHA_02,1,"Cor de Chasse",48.513507,7.712409,0,0,OST:SA:CTPCOCHA_01,Europe/Paris,,OST, +OST:SP:COCHA_03,1,"Cor de Chasse",48.513655,7.712823,0,0,OST:SA:CTPCOCHA_01,Europe/Paris,,OST, +OST:SP:COCHA_04,1,"Cor de Chasse",48.513655,7.712823,0,0,OST:SA:CTPCOCHA_01,Europe/Paris,,OST, +OST:SP:COEHO_01,1,"Coehorn",48.610451,7.786045,0,0,OST:SA:CTPCOEHO_01,Europe/Paris,,OST, +OST:SP:COEHO_02,1,"Coehorn",48.610646,7.786292,0,0,OST:SA:CTPCOEHO_01,Europe/Paris,,OST, +OST:SP:COEUR_01,1,"Conseil de l'Europe",48.593978,7.772223,0,0,OST:SA:CTPCOEUR_01,Europe/Paris,,OST, +OST:SP:COEUR_02,1,"Conseil de l'Europe",48.593957,7.771985,0,0,OST:SA:CTPCOEUR_01,Europe/Paris,,OST, +OST:SP:COFON_01,1,"Collège La Fontaine",48.516943,7.650673,0,0,OST:SA:CTPCOFON_01,Europe/Paris,,OST, +OST:SP:COFON_02,1,"Collège La Fontaine",48.516776,7.650278,0,0,OST:SA:CTPCOFON_01,Europe/Paris,,OST, +OST:SP:COGAL_01,1,"Collège Galilée",48.55054,7.687088,0,0,OST:SA:CTPCOGAL_01,Europe/Paris,,OST, +OST:SP:COGAL_02,1,"Collège Galilée",48.550494,7.687106,0,0,OST:SA:CTPCOGAL_01,Europe/Paris,,OST, +OST:SP:COGAL_03,1,"Collège Galilée",48.551244,7.685867,0,0,OST:SA:CTPCOGAL_01,Europe/Paris,,OST, +OST:SP:COGAL_04,1,"Collège Galilée",48.551031,7.687144,0,0,OST:SA:CTPCOGAL_01,Europe/Paris,,OST, +OST:SP:COILL_01,1,"Cours de L'Illiade",48.527797,7.710297,0,0,OST:SA:CTPCOILL_01,Europe/Paris,,OST, +OST:SP:COILL_02,1,"Cours de L'Illiade",48.527641,7.710797,0,0,OST:SA:CTPCOILL_01,Europe/Paris,,OST, +OST:SP:COILL_03,1,"Cours de l'Illiade",48.527587,7.709993,0,0,OST:SA:CTPCOILL_03,Europe/Paris,,OST, +OST:SP:COILL_04,1,"Cours de l'Illiade",48.527599,7.709857,0,0,OST:SA:CTPCOILL_03,Europe/Paris,,OST, +OST:SP:COLEC_01,1,"Collège Leclerc",48.608319,7.731394,0,0,OST:SA:CTPCOLEC_01,Europe/Paris,,OST, +OST:SP:COLEC_02,1,"Collège Leclerc",48.608717,7.731704,0,0,OST:SA:CTPCOLEC_01,Europe/Paris,,OST, +OST:SP:COLIL_02,1,"Colonel Lilly",48.503522,7.693644,0,0,OST:SA:CTPCOLIL_02,Europe/Paris,,OST, +OST:SP:COLIL_03,1,"Colonel Lilly",48.503402,7.693981,0,0,OST:SA:CTPCOLIL_02,Europe/Paris,,OST, +OST:SP:COLLE_01,1,"Collège",48.642648,7.708103,0,0,OST:SA:CTPCOLLE_01,Europe/Paris,,OST, +OST:SP:COLLE_02,1,"Collège",48.642626,7.708547,0,0,OST:SA:CTPCOLLE_01,Europe/Paris,,OST, +OST:SP:COLOM_01,1,"Colombes",48.530224,7.768475,0,0,OST:SA:CTPCOLOM_01,Europe/Paris,,OST, +OST:SP:COLON_01,1,"Colonne",48.538454,7.733259,0,0,OST:SA:CTPCOLON_01,Europe/Paris,,OST, +OST:SP:COLON_02,1,"Colonne",48.538141,7.733108,0,0,OST:SA:CTPCOLON_01,Europe/Paris,,OST, +OST:SP:COLON_03,1,"Colonne",48.537948,7.733592,0,0,OST:SA:CTPCOLON_01,Europe/Paris,,OST, +OST:SP:COLON_04,1,"Colonne",48.538168,7.733557,0,0,OST:SA:CTPCOLON_01,Europe/Paris,,OST, +OST:SP:COMME_01,1,"Commerce",48.532412,7.683132,0,0,OST:SA:CTPCOMME_01,Europe/Paris,,OST, +OST:SP:COMME_02,1,"Commerce",48.532306,7.682471,0,0,OST:SA:CTPCOMME_01,Europe/Paris,,OST, +OST:SP:COOPE_01,1,"Coopérative",48.574734,7.793071,0,0,OST:SA:CTPCOOPE_01,Europe/Paris,,OST, +OST:SP:COOPE_02,1,"Coopérative",48.574818,7.792269,0,0,OST:SA:CTPCOOPE_01,Europe/Paris,,OST, +OST:SP:COPEN_01,1,"Copenhague",48.607722,7.71804,0,0,OST:SA:CTPCOPEN_01,Europe/Paris,,OST, +OST:SP:COPEN_02,1,"Copenhague",48.607767,7.717841,0,0,OST:SA:CTPCOPEN_01,Europe/Paris,,OST, +OST:SP:COPER_01,1,"Copernic",48.600927,7.715377,0,0,OST:SA:CTPCOPER_01,Europe/Paris,,OST, +OST:SP:COPER_02,1,"Copernic",48.600901,7.715578,0,0,OST:SA:CTPCOPER_01,Europe/Paris,,OST, +OST:SP:COQUI_01,1,"Conseil des Quinze",48.58741,7.782298,0,0,OST:SA:CTPCOQUI_01,Europe/Paris,,OST, +OST:SP:COQUI_02,1,"Conseil des Quinze",48.58736,7.782373,0,0,OST:SA:CTPCOQUI_01,Europe/Paris,,OST, +OST:SP:CORBE_06,1,"Corbeau",48.579292,7.751066,0,0,OST:SA:CTPCORBE_06,Europe/Paris,,OST, +OST:SP:CORBE_07,1,"Corbeau",48.579292,7.751066,0,0,OST:SA:CTPCORBE_06,Europe/Paris,,OST, +OST:SP:COREU_02,1,"Neuhof Corps Européen",48.544209,7.781414,0,0,OST:SA:CTPCOREU_02,Europe/Paris,,OST, +OST:SP:COREU_03,1,"Neuhof Corps Européen",48.543934,7.781178,0,0,OST:SA:CTPCOREU_02,Europe/Paris,,OST, +OST:SP:COURO_01,1,"Couronne",48.586847,7.65234,0,0,OST:SA:CTPCOURO_01,Europe/Paris,,OST, +OST:SP:COURO_02,1,"Couronne",48.586794,7.652299,0,0,OST:SA:CTPCOURO_01,Europe/Paris,,OST, +OST:SP:CRAMM_01,1,"C.R.A.M.",48.500185,7.717667,0,0,OST:SA:CTPCRAMM_01,Europe/Paris,,OST, +OST:SP:CRAMM_02,1,"C.R.A.M.",48.500133,7.717724,0,0,OST:SA:CTPCRAMM_01,Europe/Paris,,OST, +OST:SP:CRARA_02,1,"Arago",48.604617,7.716785,0,0,OST:SA:CTPCRARA_02,Europe/Paris,,OST, +OST:SP:CRARA_03,1,"Arago",48.604758,7.716366,0,0,OST:SA:CTPCRARA_02,Europe/Paris,,OST, +OST:SP:CRARA_04,1,"Arago",48.604773,7.716071,0,0,OST:SA:CTPCRARA_02,Europe/Paris,,OST, +OST:SP:CRAVV_01,1,"CARSAT",48.551316,7.733422,0,0,OST:SA:CTPCRAVV_01,Europe/Paris,,OST, +OST:SP:CRAVV_02,1,"CARSAT",48.550633,7.733002,0,0,OST:SA:CTPCRAVV_01,Europe/Paris,,OST, +OST:SP:CRCHA_01,1,"Cressier Château d'eau",48.490395,7.69482,0,0,OST:SA:CTPCRCHA_01,Europe/Paris,,OST, +OST:SP:CRCHA_02,1,"Cressier Château d'eau",48.490311,7.694973,0,0,OST:SA:CTPCRCHA_01,Europe/Paris,,OST, +OST:SP:CROIX_02,1,"Croix",48.55526,7.678813,0,0,OST:SA:CTPCROIX_02,Europe/Paris,,OST, +OST:SP:CUIVR_01,1,"Cuivre",48.58305,7.707489,0,0,OST:SA:CTPCUIVR_01,Europe/Paris,,OST, +OST:SP:CUIVR_02,1,"Cuivre",48.582829,7.707388,0,0,OST:SA:CTPCUIVR_01,Europe/Paris,,OST, +OST:SP:DALIS_01,1,"Dalis",48.539609,7.768098,0,0,OST:SA:CTPDALIS_01,Europe/Paris,,OST, +OST:SP:DALIS_02,1,"Dalis",48.539701,7.768164,0,0,OST:SA:CTPDALIS_01,Europe/Paris,,OST, +OST:SP:DANTE_01,1,"Dante",48.59141,7.703047,0,0,OST:SA:CTPDANTE_01,Europe/Paris,,OST, +OST:SP:DANTE_02,1,"Dante",48.591183,7.702663,0,0,OST:SA:CTPDANTE_01,Europe/Paris,,OST, +OST:SP:DANTE_03,1,"Dante",48.591183,7.702663,0,0,OST:SA:CTPDANTE_01,Europe/Paris,,OST, +OST:SP:DANTE_05,1,"Dante",48.59141,7.703047,0,0,OST:SA:CTPDANTE_01,Europe/Paris,,OST, +OST:SP:DANUB_01,1,"Danube",48.57291,7.770777,0,0,OST:SA:CTPDANUB_01,Europe/Paris,,OST, +OST:SP:DANUB_02,1,"Danube",48.573004,7.770971,0,0,OST:SA:CTPDANUB_01,Europe/Paris,,OST, +OST:SP:DAUPH_01,1,"Dauphiné",48.633782,7.744912,0,0,OST:SA:CTPDAUPH_01,Europe/Paris,,OST, +OST:SP:DAUPH_02,1,"Dauphiné",48.633907,7.746044,0,0,OST:SA:CTPDAUPH_01,Europe/Paris,,OST, +OST:SP:DECLE_01,1,"Deux Clés",48.531747,7.715067,0,0,OST:SA:CTPDECLE_01,Europe/Paris,,OST, +OST:SP:DECLE_02,1,"Deux Clés",48.531912,7.716025,0,0,OST:SA:CTPDECLE_01,Europe/Paris,,OST, +OST:SP:DEGAU_01,1,"De Gaulle",48.488688,7.709413,0,0,OST:SA:CTPDEGAU_01,Europe/Paris,,OST, +OST:SP:DEGAU_02,1,"De Gaulle",48.488611,7.7102,0,0,OST:SA:CTPDEGAU_01,Europe/Paris,,OST, +OST:SP:DELAT_01,1,"De Lattre de Tassigny",48.493368,7.683866,0,0,OST:SA:CTPDELAT_01,Europe/Paris,,OST, +OST:SP:DELAT_02,1,"De Lattre de Tassigny",48.493545,7.684128,0,0,OST:SA:CTPDELAT_01,Europe/Paris,,OST, +OST:SP:DEPAP_01,1,"Denis Papin",48.513371,7.705246,0,0,OST:SA:CTPDEPAP_01,Europe/Paris,,OST, +OST:SP:DEPAP_02,1,"Denis Papin",48.51332,7.70511,0,0,OST:SA:CTPDEPAP_01,Europe/Paris,,OST, +OST:SP:DIETT_01,1,"Dietterlin",48.552817,7.748923,0,0,OST:SA:CTPDIETT_01,Europe/Paris,,OST, +OST:SP:DIETT_02,1,"Dietterlin",48.552673,7.749444,0,0,OST:SA:CTPDIETT_01,Europe/Paris,,OST, +OST:SP:DIGUE_01,1,"Graffenstaden Digue",48.520869,7.705154,0,0,OST:SA:CTPDIGUE_01,Europe/Paris,,OST, +OST:SP:DIGUE_02,1,"Graffenstaden Digue",48.520262,7.705249,0,0,OST:SA:CTPDIGUE_01,Europe/Paris,,OST, +OST:SP:DNIED_01,1,"d'Niedergass",48.487983,7.718774,0,0,OST:SA:CTPDNIED_01,Europe/Paris,,OST, +OST:SP:DNIED_02,1,"d'Niedergass",48.488033,7.718758,0,0,OST:SA:CTPDNIED_01,Europe/Paris,,OST, +OST:SP:DONON_01,1,"Donon",48.586972,7.666144,0,0,OST:SA:CTPDONON_01,Europe/Paris,,OST, +OST:SP:DONON_02,1,"Donon",48.586908,7.665515,0,0,OST:SA:CTPDONON_01,Europe/Paris,,OST, +OST:SP:DORDO_01,1,"Dordogne",48.589996,7.766948,0,0,OST:SA:CTPDORDO_01,Europe/Paris,,OST, +OST:SP:DORDO_02,1,"Dordogne",48.589926,7.766811,0,0,OST:SA:CTPDORDO_01,Europe/Paris,,OST, +OST:SP:DORDO_03,1,"Dordogne",48.589035,7.766591,0,0,OST:SA:CTPDORDO_01,Europe/Paris,,OST, +OST:SP:DORDO_04,1,"Dordogne",48.589466,7.766736,0,0,OST:SA:CTPDORDO_01,Europe/Paris,,OST, +OST:SP:DOUBS_01,1,"Doubs",48.568411,7.73914,0,0,OST:SA:CTPDOUBS_01,Europe/Paris,,OST, +OST:SP:DOUBS_02,1,"Doubs",48.568411,7.739281,0,0,OST:SA:CTPDOUBS_01,Europe/Paris,,OST, +OST:SP:DRHOM_03,1,"Droits de l'Homme",48.596222,7.774072,0,0,OST:SA:CTPDRHOM_03,Europe/Paris,,OST, +OST:SP:DRHOM_04,1,"Droits de l'Homme",48.596054,7.774235,0,0,OST:SA:CTPDRHOM_03,Europe/Paris,,OST, +OST:SP:DRHOM_05,1,"Droits de l'Homme",48.596062,7.775367,0,0,OST:SA:CTPDRHOM_03,Europe/Paris,,OST, +OST:SP:DRHOM_06,1,"Droits de l'Homme",48.596142,7.774997,0,0,OST:SA:CTPDRHOM_03,Europe/Paris,,OST, +OST:SP:DUALS_01,1,"Ducs d'Alsace",48.590203,7.715447,0,0,OST:SA:CTPDUALS_01,Europe/Paris,,OST, +OST:SP:DUALS_02,1,"Ducs d'Alsace",48.590149,7.715093,0,0,OST:SA:CTPDUALS_01,Europe/Paris,,OST, +OST:SP:DUALS_05,1,"Ducs d'Alsace",48.590549,7.715793,0,0,OST:SA:CTPDUALS_01,Europe/Paris,,OST, +OST:SP:DUALS_06,1,"Ducs d'Alsace",48.590724,7.716031,0,0,OST:SA:CTPDUALS_01,Europe/Paris,,OST, +OST:SP:DUNKE_01,1,"Dunkerque",48.577945,7.784299,0,0,OST:SA:CTPDUNKE_01,Europe/Paris,,OST, +OST:SP:DUNKE_02,1,"Dunkerque",48.577714,7.784656,0,0,OST:SA:CTPDUNKE_01,Europe/Paris,,OST, +OST:SP:DUNTZ_01,1,"Duntzenheim",48.598542,7.70253,0,0,OST:SA:CTPDUNTZ_01,Europe/Paris,,OST, +OST:SP:DUNTZ_02,1,"Duntzenheim",48.598716,7.702134,0,0,OST:SA:CTPDUNTZ_01,Europe/Paris,,OST, +OST:SP:ECCEN_01,1,"Eckbolsheim Centre",48.580779,7.686589,0,0,OST:SA:CTPECCEN_01,Europe/Paris,,OST, +OST:SP:ECCEN_02,1,"Eckbolsheim Centre",48.580344,7.687407,0,0,OST:SA:CTPECCEN_01,Europe/Paris,,OST, +OST:SP:ECCIM_01,1,"Eckwersheim Cimetière",48.682972,7.694346,0,0,OST:SA:CTPECCIM_01,Europe/Paris,,OST, +OST:SP:ECCIM_02,1,"Eckwersheim Cimetière",48.683291,7.694713,0,0,OST:SA:CTPECCIM_01,Europe/Paris,,OST, +OST:SP:ECHIP_01,1,"Eckwersheim Hippodrome",48.68516,7.698146,0,0,OST:SA:CTPECHIP_01,Europe/Paris,,OST, +OST:SP:ECKPA_02,1,"Eckbolsheim Parc d'Activités",48.590518,7.683523,0,0,OST:SA:CTPECKPA_02,Europe/Paris,,OST, +OST:SP:ECMAI_01,1,"Eckwersheim Mairie",48.681391,7.693862,0,0,OST:SA:CTPECMAI_01,Europe/Paris,,OST, +OST:SP:ECMAI_02,1,"Eckwersheim Mairie",48.68058,7.694406,0,0,OST:SA:CTPECMAI_01,Europe/Paris,,OST, +OST:SP:ECOLE_01,1,"Ecole",48.505112,7.608633,0,0,OST:SA:CTPECOLE_01,Europe/Paris,,OST, +OST:SP:ECOLE_03,1,"Ecole",48.505523,7.608112,0,0,OST:SA:CTPECOLE_01,Europe/Paris,,OST, +OST:SP:ECRIV_01,1,"Ecrivains",48.609603,7.734331,0,0,OST:SA:CTPECRIV_01,Europe/Paris,,OST, +OST:SP:ECRIV_02,1,"Ecrivains",48.610287,7.734166,0,0,OST:SA:CTPECRIV_01,Europe/Paris,,OST, +OST:SP:ECRIV_03,1,"Ecrivains",48.610774,7.734679,0,0,OST:SA:CTPECRIV_01,Europe/Paris,,OST, +OST:SP:ECRIV_04,1,"Ecrivains",48.610695,7.734834,0,0,OST:SA:CTPECRIV_01,Europe/Paris,,OST, +OST:SP:EDROS_01,1,"Edmond Rostand",48.591314,7.692165,0,0,OST:SA:CTPEDROS_01,Europe/Paris,,OST, +OST:SP:EDROS_02,1,"Edmond Rostand",48.591752,7.692795,0,0,OST:SA:CTPEDROS_01,Europe/Paris,,OST, +OST:SP:EHNNN_01,1,"Ehn",48.517012,7.671914,0,0,OST:SA:CTPEHNNN_01,Europe/Paris,,OST, +OST:SP:EHNNN_02,1,"Ehn",48.517135,7.673261,0,0,OST:SA:CTPEHNNN_01,Europe/Paris,,OST, +OST:SP:ELISA_01,1,"Elisa",48.515097,7.697658,0,0,OST:SA:CTPELISA_01,Europe/Paris,,OST, +OST:SP:ELISA_02,1,"Elisa",48.517187,7.700896,0,0,OST:SA:CTPELISA_02,Europe/Paris,,OST, +OST:SP:ELMER_01,1,"Elmerforst",48.562548,7.710266,0,0,OST:SA:CTPELMER_01,Europe/Paris,,OST, +OST:SP:ELMER_02,1,"Elmerforst",48.561897,7.711092,0,0,OST:SA:CTPELMER_01,Europe/Paris,,OST, +OST:SP:ELMER_03,1,"Elmerforst",48.563178,7.711698,0,0,OST:SA:CTPELMER_01,Europe/Paris,,OST, +OST:SP:ELMER_04,1,"Elmerforst",48.562955,7.711401,0,0,OST:SA:CTPELMER_01,Europe/Paris,,OST, +OST:SP:ELMER_07,1,"Elmerforst",48.563137,7.711549,0,0,OST:SA:CTPELMER_01,Europe/Paris,,OST, +OST:SP:ELSAU_01,1,"Elsau",48.567685,7.726111,0,0,OST:SA:CTPELSAU_01,Europe/Paris,,OST, +OST:SP:ELSAU_02,1,"Elsau",48.567799,7.726103,0,0,OST:SA:CTPELSAU_01,Europe/Paris,,OST, +OST:SP:ELSAU_03,1,"Elsau",48.567775,7.726405,0,0,OST:SA:CTPELSAU_01,Europe/Paris,,OST, +OST:SP:ELSAU_04,1,"Elsau",48.56789,7.726139,0,0,OST:SA:CTPELSAU_01,Europe/Paris,,OST, +OST:SP:EMAIL_01,1,"Emailleries",48.625933,7.755849,0,0,OST:SA:CTPEMAIL_01,Europe/Paris,,OST, +OST:SP:EMAIL_03,1,"Emailleries",48.625954,7.755956,0,0,OST:SA:CTPEMAIL_01,Europe/Paris,,OST, +OST:SP:EMALL_02,1,"Emailleries",48.625238,7.755036,0,0,OST:SA:CTPEMAIL_01,Europe/Paris,,OST, +OST:SP:EMALL_04,1,"Emailleries",48.62521,7.754916,0,0,OST:SA:CTPEMAIL_01,Europe/Paris,,OST, +OST:SP:EMBRA_01,1,"Embranchement",48.599746,7.739717,0,0,OST:SA:CTPEMBRA_01,Europe/Paris,,OST, +OST:SP:EMBRA_02,1,"Embranchement",48.600175,7.739632,0,0,OST:SA:CTPEMBRA_01,Europe/Paris,,OST, +OST:SP:EMMAT_01,1,"Emile Mathis",48.553557,7.745398,0,0,OST:SA:CTPEMMAT_01,Europe/Paris,,OST, +OST:SP:EMMAT_02,1,"Emile Mathis",48.552842,7.744193,0,0,OST:SA:CTPEMMAT_01,Europe/Paris,,OST, +OST:SP:EMMAT_03,1,"Emile Mathis",48.553055,7.744141,0,0,OST:SA:CTPEMMAT_01,Europe/Paris,,OST, +OST:SP:EMMAT_04,1,"Emile Mathis",48.553357,7.744402,0,0,OST:SA:CTPEMMAT_01,Europe/Paris,,OST, +OST:SP:EMMAT_07,1,"Emile Mathis",48.553087,7.744382,0,0,OST:SA:CTPEMMAT_01,Europe/Paris,,OST, +OST:SP:EMMTH_01,1,"Emile Mathis",48.55325,7.743025,0,0,OST:SA:CTPEMMAT_01,Europe/Paris,,OST, +OST:SP:EMMTH_02,1,"Emile Mathis",48.55325,7.743025,0,0,OST:SA:CTPEMMAT_01,Europe/Paris,,OST, +OST:SP:ENCEN_01,1,"Entzheim centre",48.532876,7.635235,0,0,OST:SA:CTPENCEN_01,Europe/Paris,,OST, +OST:SP:ENCEN_02,1,"Entzheim centre",48.532763,7.635108,0,0,OST:SA:CTPENCEN_01,Europe/Paris,,OST, +OST:SP:ENGAR_01,1,"Entzheim Gare",48.547005,7.627954,0,0,SIN:SA:OCE87214528,Europe/Paris,,OST, +OST:SP:ENGAR_02,1,"Entzheim Gare",48.547005,7.627954,0,0,SIN:SA:OCE87214528,Europe/Paris,,OST, +OST:SP:ENGEL_01,1,"Engelbreit",48.580582,7.707625,0,0,OST:SA:CTPENGEL_01,Europe/Paris,,OST, +OST:SP:ENGEL_02,1,"Engelbreit",48.580534,7.707757,0,0,OST:SA:CTPENGEL_01,Europe/Paris,,OST, +OST:SP:ENOUE_01,1,"Entzheim Ouest",48.531317,7.629176,0,0,OST:SA:CTPENOUE_01,Europe/Paris,,OST, +OST:SP:ERMIT_01,1,"Ermitage",48.495998,7.717221,0,0,OST:SA:CTPERMIT_01,Europe/Paris,,OST, +OST:SP:ERMIT_02,1,"Ermitage",48.495996,7.71728,0,0,OST:SA:CTPERMIT_01,Europe/Paris,,OST, +OST:SP:ESCAL_01,1,"l'Escale",48.610749,7.782443,0,0,OST:SA:CTPESCAL_01,Europe/Paris,,OST, +OST:SP:ESCAL_02,1,"l'Escale",48.610765,7.782138,0,0,OST:SA:CTPESCAL_01,Europe/Paris,,OST, +OST:SP:ESEUE_03,1,"Espace Européen de l' Entreprise",48.616467,7.719799,0,0,OST:SA:CTPESEUE_03,Europe/Paris,,OST, +OST:SP:ESEUE_04,1,"Espace Européen de l' Entreprise",48.616492,7.719622,0,0,OST:SA:CTPESEUE_03,Europe/Paris,,OST, +OST:SP:ESEUE_05,1,"Espace Européen de l' Entreprise",48.616467,7.719799,0,0,OST:SA:CTPESEUE_03,Europe/Paris,,OST, +OST:SP:ESEUE_06,1,"Espace Européen de l' Entreprise",48.616467,7.719799,0,0,OST:SA:CTPESEUE_03,Europe/Paris,,OST, +OST:SP:ESMAI_01,1,"Eschau Mairie",48.484155,7.714038,0,0,OST:SA:CTPESMAI_01,Europe/Paris,,OST, +OST:SP:ESMAI_02,1,"Eschau Mairie",48.484009,7.713863,0,0,OST:SA:CTPESMAI_01,Europe/Paris,,OST, +OST:SP:ESPER_01,1,"Espérance",48.467702,7.735102,0,0,OST:SA:CTPESPER_01,Europe/Paris,,OST, +OST:SP:ESPLA_01,1,"Esplanade",48.57822,7.769272,0,0,OST:SA:CTPESPLA_01,Europe/Paris,,OST, +OST:SP:ESPLA_02,1,"Esplanade",48.57852,7.769623,0,0,OST:SA:CTPESPLA_01,Europe/Paris,,OST, +OST:SP:ESPLA_03,1,"Esplanade",48.578233,7.769395,0,0,OST:SA:CTPESPLA_01,Europe/Paris,,OST, +OST:SP:ESPLA_04,1,"Esplanade",48.578464,7.769489,0,0,OST:SA:CTPESPLA_01,Europe/Paris,,OST, +OST:SP:ESPLA_05,1,"Esplanade",48.57852,7.769623,0,0,OST:SA:CTPESPLA_01,Europe/Paris,,OST, +OST:SP:ETBOU_03,1,"Etoile Bourse",48.574469,7.753743,0,0,OST:SA:CTPETBOU_03,Europe/Paris,,OST, +OST:SP:ETBOU_04,1,"Etoile Bourse",48.575153,7.752641,0,0,OST:SA:CTPETBOU_03,Europe/Paris,,OST, +OST:SP:ETBOU_07,1,"Etoile Bourse",48.575198,7.754238,0,0,OST:SA:CTPETBOU_03,Europe/Paris,,OST, +OST:SP:ETBOU_1B,1,"Etoile Bourse",48.574325,7.753655,0,0,OST:SA:CTPETBOU_03,Europe/Paris,,OST, +OST:SP:ETDOR_01,1,"Etoile d'Or",48.594746,7.710918,0,0,OST:SA:CTPETDOR_01,Europe/Paris,,OST, +OST:SP:ETDOR_02,1,"Etoile d'Or",48.594839,7.710474,0,0,OST:SA:CTPETDOR_01,Europe/Paris,,OST, +OST:SP:ETOIL_01,1,"Etoile",48.574624,7.753482,0,0,OST:SA:CTPETOIL_01,Europe/Paris,,OST, +OST:SP:ETOIL_02,1,"Etoile",48.574938,7.753464,0,0,OST:SA:CTPETOIL_01,Europe/Paris,,OST, +OST:SP:ETPOL_01,1,"Etoile Polygone",48.571626,7.755256,0,0,OST:SA:CTPETPOL_01,Europe/Paris,,OST, +OST:SP:ETPOL_02,1,"Etoile Polygone",48.571528,7.75568,0,0,OST:SA:CTPETPOL_01,Europe/Paris,,OST, +OST:SP:ETPOL_03,1,"Etoile Polygone (14/24)",48.571634,7.755631,0,0,OST:SA:CTPETPOL_03,Europe/Paris,,OST, +OST:SP:ETPOL_04,1,"Etoile Polygone (14/24)",48.571959,7.755108,0,0,OST:SA:CTPETPOL_03,Europe/Paris,,OST, +OST:SP:EUROF_04,1,"Eurofret",48.525215,7.778832,0,0,OST:SA:CTPEUROF_04,Europe/Paris,,OST, +OST:SP:EUROF_06,1,"Eurofret",48.524404,7.78276,0,0,OST:SA:CTPEUROF_06,Europe/Paris,,OST, +OST:SP:EUROF_07,1,"Eurofret",48.524255,7.78246,0,0,OST:SA:CTPEUROF_06,Europe/Paris,,OST, +OST:SP:FAALE_01,1,"Faubourg d'Alençon",48.653511,7.828683,0,0,OST:SA:CTPFAALE_01,Europe/Paris,,OST, +OST:SP:FAALE_02,1,"Faubourg d'Alençon",48.653541,7.828236,0,0,OST:SA:CTPFAALE_01,Europe/Paris,,OST, +OST:SP:FAANS_01,1,"Faisans",48.552502,7.673546,0,0,OST:SA:CTPFAANS_01,Europe/Paris,,OST, +OST:SP:FAANS_02,1,"Faisans",48.552177,7.672779,0,0,OST:SA:CTPFAANS_01,Europe/Paris,,OST, +OST:SP:FANAG_01,1,"Faubourg National-Gare",48.582423,7.736863,0,0,OST:SA:CTPFANAG_01,Europe/Paris,,OST, +OST:SP:FANAG_02,1,"Faubourg National-Gare",48.582419,7.736421,0,0,OST:SA:CTPFANAG_01,Europe/Paris,,OST, +OST:SP:FAPAI_01,1,"Faubourg de la Paix",48.519812,7.709212,0,0,OST:SA:CTPFAPAI_01,Europe/Paris,,OST, +OST:SP:FAPAI_02,1,"Faubourg de la Paix",48.520221,7.708878,0,0,OST:SA:CTPFAPAI_01,Europe/Paris,,OST, +OST:SP:FAPIE_01,1,"Faubourg de Pierre",48.587494,7.746212,0,0,OST:SA:CTPFAPIE_01,Europe/Paris,,OST, +OST:SP:FAPIE_02,1,"Faubourg de Pierre",48.58749,7.746351,0,0,OST:SA:CTPFAPIE_01,Europe/Paris,,OST, +OST:SP:FARIE_01,1,"Faisanderie",48.534429,7.760374,0,0,OST:SA:CTPFARIE_01,Europe/Paris,,OST, +OST:SP:FARIE_02,1,"Faisanderie",48.534705,7.760451,0,0,OST:SA:CTPFARIE_01,Europe/Paris,,OST, +OST:SP:FASAV_01,1,"Faubourg de Saverne",48.585302,7.740354,0,0,OST:SA:CTPFASAV_01,Europe/Paris,,OST, +OST:SP:FASAV_04,1,"Faubourg de Saverne",48.58618,7.739871,0,0,OST:SA:CTPFASAV_01,Europe/Paris,,OST, +OST:SP:FASAV_05,1,"Faubourg de Saverne",48.585903,7.739982,0,0,OST:SA:CTPFASAV_01,Europe/Paris,,OST, +OST:SP:FASAV_06,1,"Faubourg de Saverne",48.585982,7.740858,0,0,OST:SA:CTPFASAV_01,Europe/Paris,,OST, +OST:SP:FEDER_01,1,"Fédération",48.564246,7.738609,0,0,OST:SA:CTPFEDER_01,Europe/Paris,,OST, +OST:SP:FEDER_02,1,"Fédération",48.564142,7.738719,0,0,OST:SA:CTPFEDER_01,Europe/Paris,,OST, +OST:SP:FEMAI_03,1,"Fegersheim Mairie",48.490468,7.679929,0,0,OST:SA:CTPFEMAI_03,Europe/Paris,,OST, +OST:SP:FEMAI_04,1,"Fegersheim Mairie",48.4905,7.679832,0,0,OST:SA:CTPFEMAI_03,Europe/Paris,,OST, +OST:SP:FISCH_01,1,"Fischacker",48.618815,7.788021,0,0,OST:SA:CTPFISCH_01,Europe/Paris,,OST, +OST:SP:FISCH_02,1,"Fischacker",48.618719,7.787433,0,0,OST:SA:CTPFISCH_01,Europe/Paris,,OST, +OST:SP:FLORA_01,1,"Floralies",48.536875,7.64302,0,0,OST:SA:CTPFLORA_01,Europe/Paris,,OST, +OST:SP:FLORA_02,1,"Floralies",48.536769,7.643036,0,0,OST:SA:CTPFLORA_01,Europe/Paris,,OST, +OST:SP:FOCHH_01,1,"Foch",48.627723,7.753751,0,0,OST:SA:CTPFOCHH_01,Europe/Paris,,OST, +OST:SP:FOCHH_02,1,"Foch",48.627853,7.753846,0,0,OST:SA:CTPFOCHH_01,Europe/Paris,,OST, +OST:SP:FODES_01,1,"Fort Desaix",48.634658,7.727745,0,0,OST:SA:CTPFODES_01,Europe/Paris,,OST, +OST:SP:FODES_04,1,"Fort Desaix",48.634959,7.729424,0,0,OST:SA:CTPFODES_01,Europe/Paris,,OST, +OST:SP:FOLEF_01,1,"Fort Lefèbvre",48.524893,7.690099,0,0,OST:SA:CTPFOLEF_01,Europe/Paris,,OST, +OST:SP:FOLEF_02,1,"Fort Lefèbvre",48.525185,7.689684,0,0,OST:SA:CTPFOLEF_01,Europe/Paris,,OST, +OST:SP:FOLOU_01,1,"Fort Louis",48.604833,7.77786,0,0,OST:SA:CTPFOLOU_01,Europe/Paris,,OST, +OST:SP:FOLOU_02,1,"Fort Louis",48.605173,7.777886,0,0,OST:SA:CTPFOLOU_01,Europe/Paris,,OST, +OST:SP:FONDE_01,1,"Fondeur",48.609199,7.745253,0,0,OST:SA:CTPFONDE_01,Europe/Paris,,OST, +OST:SP:FONDE_02,1,"Fondeur",48.608724,7.744157,0,0,OST:SA:CTPFONDE_01,Europe/Paris,,OST, +OST:SP:FONTA_01,1,"Fontaine",48.623766,7.750826,0,0,OST:SA:CTPFONTA_01,Europe/Paris,,OST, +OST:SP:FONTA_02,1,"Fontaine",48.623784,7.75198,0,0,OST:SA:CTPFONTA_01,Europe/Paris,,OST, +OST:SP:FORGE_03,1,"Forges",48.585174,7.706875,0,0,OST:SA:CTPFORGE_03,Europe/Paris,,OST, +OST:SP:FORGE_04,1,"Forges",48.585203,7.707004,0,0,OST:SA:CTPFORGE_03,Europe/Paris,,OST, +OST:SP:FORLE_01,1,"Forlen",48.536046,7.68352,0,0,OST:SA:CTPFORLE_01,Europe/Paris,,OST, +OST:SP:FORLE_02,1,"Forlen",48.536121,7.683198,0,0,OST:SA:CTPFORLE_01,Europe/Paris,,OST, +OST:SP:FOUHR_01,1,"Illkirch Fort Uhrich",48.51448,7.723259,0,0,OST:SA:CTPFOUHR_01,Europe/Paris,,OST, +OST:SP:FOUHR_02,1,"Illkirch Fort Uhrich",48.51448,7.723259,0,0,OST:SA:CTPFOUHR_01,Europe/Paris,,OST, +OST:SP:FOUHR_03,1,"Illkirch Fort Uhrich",48.51448,7.723259,0,0,OST:SA:CTPFOUHR_01,Europe/Paris,,OST, +OST:SP:FRCOM_01,1,"Franche Comté",48.551969,7.751757,0,0,OST:SA:CTPFRCOM_01,Europe/Paris,,OST, +OST:SP:FRCOM_02,1,"Franche Comté",48.551731,7.751517,0,0,OST:SA:CTPFRCOM_01,Europe/Paris,,OST, +OST:SP:FREBE_01,1,"Frères Eberts",48.555226,7.735063,0,0,OST:SA:CTPFREBE_01,Europe/Paris,,OST, +OST:SP:FREBE_02,1,"Frères Eberts",48.555323,7.734834,0,0,OST:SA:CTPFREBE_01,Europe/Paris,,OST, +OST:SP:FRLUM_01,1,"Frères Lumière",48.614526,7.738282,0,0,OST:SA:CTPFRLUM_01,Europe/Paris,,OST, +OST:SP:FRLUM_02,1,"Frères Lumière",48.614477,7.738283,0,0,OST:SA:CTPFRLUM_01,Europe/Paris,,OST, +OST:SP:FUAMB_01,1,"Fuchs am Buckel",48.62605,7.804035,0,0,OST:SA:CTPFUAMB_01,Europe/Paris,,OST, +OST:SP:FUAMB_02,1,"Fuchs am Buckel",48.625962,7.803872,0,0,OST:SA:CTPFUAMB_01,Europe/Paris,,OST, +OST:SP:FUGLA_01,1,"Futura Glacière",48.605142,7.759552,0,0,OST:SA:CTPFUGLA_01,Europe/Paris,,OST, +OST:SP:FUGLA_02,1,"Futura Glacière",48.604979,7.759215,0,0,OST:SA:CTPFUGLA_01,Europe/Paris,,OST, +OST:SP:FUMAR_01,1,"Fusiliers Marins",48.491351,7.729979,0,0,OST:SA:CTPFUMAR_01,Europe/Paris,,OST, +OST:SP:FUMAR_02,1,"Fusiliers Marins",48.491356,7.7299,0,0,OST:SA:CTPFUMAR_01,Europe/Paris,,OST, +OST:SP:GACEN_01,1,"Gare Centrale",48.58544,7.735637,0,0,OST:SA:CTPGACEN_01,Europe/Paris,,OST, +OST:SP:GACEN_02,1,"Gare Centrale",48.585486,7.735935,0,0,OST:SA:CTPGACEN_01,Europe/Paris,,OST, +OST:SP:GACEN_03,1,"Gare Centrale",48.585042,7.735228,0,0,OST:SA:CTPGACEN_01,Europe/Paris,,OST, +OST:SP:GACEN_04,1,"Gare Centrale",48.585266,7.735452,0,0,OST:SA:CTPGACEN_01,Europe/Paris,,OST, +OST:SP:GACEN_06,1,"Gare Centrale",48.585462,7.735566,0,0,OST:SA:CTPGACEN_01,Europe/Paris,,OST, +OST:SP:GACEN_07,1,"Gare Centrale",48.585231,7.735458,0,0,OST:SA:CTPGACEN_01,Europe/Paris,,OST, +OST:SP:GACEN_09,1,"Gare Centrale",48.585158,7.735516,0,0,OST:SA:CTPGACEN_01,Europe/Paris,,OST, +OST:SP:GACEN_10,1,"Gare Centrale",48.585096,7.735483,0,0,OST:SA:CTPGACEN_01,Europe/Paris,,OST, +OST:SP:GACEN_11,1,"Gare Centrale",48.585816,7.735988,0,0,OST:SA:CTPGACEN_01,Europe/Paris,,OST, +OST:SP:GACTN_01,1,"Gare Centrale (Arrivée)",48.585101,7.73526,0,0,OST:SA:CTPGACTN_01,Europe/Paris,,OST, +OST:SP:GACTN_02,1,"Gare Centrale (Arrivée)",48.585172,7.7354,0,0,OST:SA:CTPGACTN_01,Europe/Paris,,OST, +OST:SP:GAERT_01,1,"Gaertel",48.632514,7.728211,0,0,OST:SA:CTPGAERT_01,Europe/Paris,,OST, +OST:SP:GAERT_02,1,"Gaertel",48.632109,7.728453,0,0,OST:SA:CTPGAERT_01,Europe/Paris,,OST, +OST:SP:GAFOR_01,1,"Gardes Forestiers",48.621088,7.787241,0,0,OST:SA:CTPGAFOR_01,Europe/Paris,,OST, +OST:SP:GAFOR_02,1,"Gardes Forestiers",48.62126,7.787212,0,0,OST:SA:CTPGAFOR_01,Europe/Paris,,OST, +OST:SP:GALLI_01,1,"Gallia",48.584421,7.759,0,0,OST:SA:CTPGALLI_01,Europe/Paris,,OST, +OST:SP:GALLI_02,1,"Gallia",48.584458,7.759232,0,0,OST:SA:CTPGALLI_01,Europe/Paris,,OST, +OST:SP:GALLI_03,1,"Gallia",48.584295,7.758531,0,0,OST:SA:CTPGALLI_01,Europe/Paris,,OST, +OST:SP:GALLI_04,1,"Gallia",48.584452,7.758229,0,0,OST:SA:CTPGALLI_01,Europe/Paris,,OST, +OST:SP:GAMAR_01,1,"Gare aux Marchandises",48.591842,7.732548,0,0,OST:SA:CTPGAMAR_01,Europe/Paris,,OST, +OST:SP:GAMAR_02,1,"Gare aux Marchandises",48.591811,7.732639,0,0,OST:SA:CTPGAMAR_01,Europe/Paris,,OST, +OST:SP:GEBUR_01,1,"Georges Burger",48.615168,7.729182,0,0,OST:SA:CTPGEBUR_01,Europe/Paris,,OST, +OST:SP:GEBUR_02,1,"Georges Burger",48.615144,7.729713,0,0,OST:SA:CTPGEBUR_01,Europe/Paris,,OST, +OST:SP:GECEN_03,1,"Geispolsheim Centre Commercial",48.523094,7.691774,0,0,OST:SA:CTPGECEN_03,Europe/Paris,,OST, +OST:SP:GECEN_04,1,"Geispolsheim Centre Commercial",48.522218,7.692391,0,0,OST:SA:CTPGECEN_03,Europe/Paris,,OST, +OST:SP:GEGAR_01,1,"Geispolsheim Gare",48.518424,7.68343,0,0,OST:SA:CTPGEGAR_01,Europe/Paris,,OST, +OST:SP:GEGAR_02,1,"Geispolsheim Gare",48.518783,7.683848,0,0,OST:SA:CTPGEGAR_01,Europe/Paris,,OST, +OST:SP:GEGAR_07,1,"Geispolsheim Gare",48.521111,7.685384,0,0,OST:SA:CTPGEGAR_07,Europe/Paris,,OST, +OST:SP:GEGAU_01,1,"Général de Gaulle",48.621623,7.763785,0,0,OST:SA:CTPGEGAU_01,Europe/Paris,,OST, +OST:SP:GEGAU_02,1,"Général de Gaulle",48.621625,7.764157,0,0,OST:SA:CTPGEGAU_01,Europe/Paris,,OST, +OST:SP:GELEC_01,1,"Général Leclerc",48.655072,7.831295,0,0,OST:SA:CTPGELEC_01,Europe/Paris,,OST, +OST:SP:GELEC_02,1,"Général Leclerc",48.65584,7.830783,0,0,OST:SA:CTPGELEC_01,Europe/Paris,,OST, +OST:SP:GELEJ_01,1,"Général Lejeune",48.612993,7.78833,0,0,OST:SA:CTPGELEJ_01,Europe/Paris,,OST, +OST:SP:GELEJ_02,1,"Général Lejeune",48.612908,7.788306,0,0,OST:SA:CTPGELEJ_01,Europe/Paris,,OST, +OST:SP:GEMAI_01,1,"Geispolsheim Mairie",48.51512,7.64274,0,0,OST:SA:CTPGEMAI_01,Europe/Paris,,OST, +OST:SP:GEMAI_02,1,"Geispolsheim Mairie",48.514963,7.642114,0,0,OST:SA:CTPGEMAI_01,Europe/Paris,,OST, +OST:SP:GEOUE_01,1,"Geispolsheim Ouest",48.51506,7.640602,0,0,OST:SA:CTPGEOUE_01,Europe/Paris,,OST, +OST:SP:GEOUE_02,1,"Geispolsheim Ouest",48.51506,7.640602,0,0,OST:SA:CTPGEOUE_01,Europe/Paris,,OST, +OST:SP:GEOUE_04,1,"Geispolsheim Ouest",48.514631,7.639831,0,0,OST:SA:CTPGEOUE_01,Europe/Paris,,OST, +OST:SP:GEROL_01,1,"Geroldseck",48.581864,7.71503,0,0,OST:SA:CTPGEROL_01,Europe/Paris,,OST, +OST:SP:GEROL_02,1,"Geroldseck",48.582396,7.714703,0,0,OST:SA:CTPGEROL_01,Europe/Paris,,OST, +OST:SP:GEZOI_01,1,"Geispolsheim ZI",48.53183,7.6851,0,0,OST:SA:CTPGEZOI_01,Europe/Paris,,OST, +OST:SP:GEZOI_02,1,"Geispolsheim ZI",48.528839,7.68561,0,0,OST:SA:CTPGEZOI_02,Europe/Paris,,OST, +OST:SP:GLAUB_01,1,"Glaubitz",48.543088,7.764249,0,0,OST:SA:CTPGLAUB_01,Europe/Paris,,OST, +OST:SP:GLAUB_02,1,"Glaubitz",48.543379,7.764699,0,0,OST:SA:CTPGLAUB_01,Europe/Paris,,OST, +OST:SP:GLIES_01,1,"Gliesberg",48.5679,7.709232,0,0,OST:SA:CTPGLIES_01,Europe/Paris,,OST, +OST:SP:GLIES_02,1,"Gliesberg",48.567659,7.709154,0,0,OST:SA:CTPGLIES_01,Europe/Paris,,OST, +OST:SP:GLOEC_01,1,"Gloeckelsberg",48.504503,7.602833,0,0,OST:SA:CTPGLOEC_01,Europe/Paris,,OST, +OST:SP:GLOEC_02,1,"Gloeckelsberg",48.504585,7.604292,0,0,OST:SA:CTPGLOEC_01,Europe/Paris,,OST, +OST:SP:GOLBE_01,1,"Golbery",48.587463,7.766799,0,0,OST:SA:CTPGOLBE_01,Europe/Paris,,OST, +OST:SP:GOLBE_02,1,"Golbery",48.587126,7.766053,0,0,OST:SA:CTPGOLBE_01,Europe/Paris,,OST, +OST:SP:GOLDS_01,1,"Goldschmidt",48.533519,7.771489,0,0,OST:SA:CTPGOLDS_01,Europe/Paris,,OST, +OST:SP:GOLDS_02,1,"Goldschmidt",48.533371,7.771473,0,0,OST:SA:CTPGOLDS_01,Europe/Paris,,OST, +OST:SP:GRAVI_01,1,"Gravière",48.561305,7.764239,0,0,OST:SA:CTPGRAVI_01,Europe/Paris,,OST, +OST:SP:GRAVI_02,1,"Gravière",48.561494,7.764532,0,0,OST:SA:CTPGRAVI_01,Europe/Paris,,OST, +OST:SP:GRGAR_01,1,"Graffenstaden-Gare",48.53242,7.69118,0,0,OST:SA:CTPGRGAR_01,Europe/Paris,,OST, +OST:SP:GRGAR_02,1,"Graffenstaden-Gare",48.532655,7.69133,0,0,OST:SA:CTPGRGAR_01,Europe/Paris,,OST, +OST:SP:GRGAR_03,1,"Graffenstaden Gare",48.532851,7.689414,0,0,OST:SA:CTPGRGAR_03,Europe/Paris,,OST, +OST:SP:GRGAR_04,1,"Graffenstaden Gare",48.532851,7.689414,0,0,OST:SA:CTPGRGAR_03,Europe/Paris,,OST, +OST:SP:GRUBE_01,1,"Grüber",48.578658,7.709597,0,0,OST:SA:CTPGRUBE_01,Europe/Paris,,OST, +OST:SP:GRUBE_02,1,"Grüber",48.578631,7.710025,0,0,OST:SA:CTPGRUBE_01,Europe/Paris,,OST, +OST:SP:GRUND_01,1,"Grundgrübe",48.488048,7.721531,0,0,OST:SA:CTPGRUND_01,Europe/Paris,,OST, +OST:SP:GRUND_02,1,"Grundgrübe",48.488312,7.722191,0,0,OST:SA:CTPGRUND_01,Europe/Paris,,OST, +OST:SP:GRZOI_01,1,"Graffenstaden Z.I",48.510601,7.713738,0,0,OST:SA:CTPGRZOI_01,Europe/Paris,,OST, +OST:SP:GRZOI_02,1,"Graffenstaden Z.I",48.510202,7.714422,0,0,OST:SA:CTPGRZOI_01,Europe/Paris,,OST, +OST:SP:GUTEN_02,1,"Gutenberg",48.665935,7.808832,0,0,OST:SA:CTPGUTEN_02,Europe/Paris,,OST, +OST:SP:GUTEN_03,1,"Gutenberg",48.665948,7.808728,0,0,OST:SA:CTPGUTEN_02,Europe/Paris,,OST, +OST:SP:HALDE_01,1,"Haldenbourg",48.603158,7.713261,0,0,OST:SA:CTPHALDE_01,Europe/Paris,,OST, +OST:SP:HALDE_02,1,"Haldenbourg",48.603145,7.713069,0,0,OST:SA:CTPHALDE_01,Europe/Paris,,OST, +OST:SP:HANGE_01,1,"Hangenbieten",48.559435,7.636329,0,0,OST:SA:CTPHANGE_01,Europe/Paris,,OST, +OST:SP:HANGE_03,1,"Hangenbieten",48.559414,7.63623,0,0,OST:SA:CTPHANGE_01,Europe/Paris,,OST, +OST:SP:HANMA_01,1,"Hangenbieten Mairie",48.559283,7.614164,0,0,OST:SA:CTPHANMA_01,Europe/Paris,,OST, +OST:SP:HANMA_02,1,"Hangenbieten Mairie",48.559256,7.614082,0,0,OST:SA:CTPHANMA_01,Europe/Paris,,OST, +OST:SP:HAUTE_03,1,"Hautefort",48.54941,7.769182,0,0,OST:SA:CTPHAUTE_03,Europe/Paris,,OST, +OST:SP:HAUTE_04,1,"Hautefort",48.549998,7.768752,0,0,OST:SA:CTPHAUTE_03,Europe/Paris,,OST, +OST:SP:HAYYY_01,1,"Hay",48.64859,7.751789,0,0,OST:SA:CTPHAYYY_01,Europe/Paris,,OST, +OST:SP:HECHN_01,1,"Hechner",48.61232,7.776821,0,0,OST:SA:CTPHECHN_01,Europe/Paris,,OST, +OST:SP:HECHN_02,1,"Hechner",48.612334,7.776263,0,0,OST:SA:CTPHECHN_01,Europe/Paris,,OST, +OST:SP:HEFRE_01,1,"Henri Frenay",48.579894,7.697711,0,0,OST:SA:CTPHEFRE_01,Europe/Paris,,OST, +OST:SP:HEFRE_02,1,"Henri Frenay",48.579763,7.697767,0,0,OST:SA:CTPHEFRE_01,Europe/Paris,,OST, +OST:SP:HERRA_01,1,"Herrade",48.583554,7.714684,0,0,OST:SA:CTPHERRA_01,Europe/Paris,,OST, +OST:SP:HERRA_02,1,"Herrade",48.584254,7.714484,0,0,OST:SA:CTPHERRA_01,Europe/Paris,,OST, +OST:SP:HERRE_01,1,"Herrenwasser",48.587105,7.662081,0,0,OST:SA:CTPHERRE_01,Europe/Paris,,OST, +OST:SP:HERRE_02,1,"Herrenwasser",48.587015,7.662425,0,0,OST:SA:CTPHERRE_01,Europe/Paris,,OST, +OST:SP:HETZL_01,1,"Hetzlader",48.488761,7.728547,0,0,OST:SA:CTPHETZL_01,Europe/Paris,,OST, +OST:SP:HETZL_02,1,"Hetzlader",48.488832,7.728522,0,0,OST:SA:CTPHETZL_01,Europe/Paris,,OST, +OST:SP:HIESE_01,1,"Hieselrain",48.488579,7.715599,0,0,OST:SA:CTPHIESE_01,Europe/Paris,,OST, +OST:SP:HIESE_02,1,"Hieselrain",48.488529,7.715566,0,0,OST:SA:CTPHIESE_01,Europe/Paris,,OST, +OST:SP:HIRON_01,1,"Hirondelles",48.645532,7.75281,0,0,OST:SA:CTPHIRON_01,Europe/Paris,,OST, +OST:SP:HIRON_02,1,"Hirondelles",48.64621,7.753682,0,0,OST:SA:CTPHIRON_01,Europe/Paris,,OST, +OST:SP:HOCEN_03,1,"Holtzheim Centre",48.557961,7.643114,0,0,OST:SA:CTPHOCEN_03,Europe/Paris,,OST, +OST:SP:HOCEN_04,1,"Holtzheim Centre",48.557707,7.643109,0,0,OST:SA:CTPHOCEN_03,Europe/Paris,,OST, +OST:SP:HOCHF_01,1,"Hochfelden",48.595702,7.727831,0,0,OST:SA:CTPHOCHF_01,Europe/Paris,,OST, +OST:SP:HOCHF_02,1,"Hochfelden",48.595662,7.727769,0,0,OST:SA:CTPHOCHF_01,Europe/Paris,,OST, +OST:SP:HOCIG_01,1,"Hoenheim Cigognes",48.623202,7.746812,0,0,OST:SA:CTPHOCIG_01,Europe/Paris,,OST, +OST:SP:HOCIV_01,1,"Hôpital Civil",48.574178,7.742255,0,0,OST:SA:CTPHOCIV_01,Europe/Paris,,OST, +OST:SP:HOCIV_02,1,"Hôpital Civil",48.574023,7.743325,0,0,OST:SA:CTPHOCIV_01,Europe/Paris,,OST, +OST:SP:HODEP_01,1,"Hôtel du Département",48.578539,7.739216,0,0,OST:SA:CTPHODEP_01,Europe/Paris,,OST, +OST:SP:HODEP_02,1,"Hôtel du Département",48.578712,7.739761,0,0,OST:SA:CTPHODEP_01,Europe/Paris,,OST, +OST:SP:HOEGA_02,1,"Hoenheim Gare",48.628035,7.758928,0,0,OST:SA:CTPHOEGA_02,Europe/Paris,,OST, +OST:SP:HOEGA_03,1,"Hoenheim Gare",48.628154,7.758929,0,0,OST:SA:CTPHOEGA_02,Europe/Paris,,OST, +OST:SP:HOEGA_04,1,"Hoenheim Gare",48.628256,7.758923,0,0,OST:SA:CTPHOEGA_02,Europe/Paris,,OST, +OST:SP:HOEGL_01,1,"Holtzheim Eglise",48.559063,7.64095,0,0,OST:SA:CTPHOEGL_01,Europe/Paris,,OST, +OST:SP:HOEGL_02,1,"Holtzheim Eglise",48.558994,7.640855,0,0,OST:SA:CTPHOEGL_01,Europe/Paris,,OST, +OST:SP:HOFER_04,1,"Homme de Fer",48.584351,7.744991,0,0,OST:SA:CTPHOFER_04,Europe/Paris,,OST, +OST:SP:HOFER_05,1,"Homme de Fer",48.584386,7.744683,0,0,OST:SA:CTPHOFER_04,Europe/Paris,,OST, +OST:SP:HOFER_11,1,"Homme de Fer",48.583973,7.744608,0,0,OST:SA:CTPHOFER_04,Europe/Paris,,OST, +OST:SP:HOFER_12,1,"Homme de Fer",48.584131,7.744567,0,0,OST:SA:CTPHOFER_04,Europe/Paris,,OST, +OST:SP:HOGAR_01,1,"Hoenheim Gare",48.628006,7.758312,0,0,OST:SA:CTPHOEGA_02,Europe/Paris,,OST, +OST:SP:HOGAR_05,1,"Hoenheim Gare",48.627988,7.75863,0,0,OST:SA:CTPHOEGA_02,Europe/Paris,,OST, +OST:SP:HOGAR_06,1,"Hoenheim Gare",48.62789,7.75862,0,0,OST:SA:CTPHOEGA_02,Europe/Paris,,OST, +OST:SP:HOHAU_01,1,"Hôpital de Hautepierre",48.591531,7.707097,0,0,OST:SA:CTPHOHAU_01,Europe/Paris,,OST, +OST:SP:HOHAU_02,1,"Hôpital de Hautepierre",48.591611,7.706746,0,0,OST:SA:CTPHOHAU_01,Europe/Paris,,OST, +OST:SP:HOHLL_01,1,"Hohl",48.671022,7.704008,0,0,OST:SA:CTPHOHLL_01,Europe/Paris,,OST, +OST:SP:HOHLL_02,1,"Hohl",48.670466,7.704412,0,0,OST:SA:CTPHOHLL_01,Europe/Paris,,OST, +OST:SP:HOHWA_01,1,"Hohwart",48.549203,7.74152,0,0,OST:SA:CTPHOHWA_01,Europe/Paris,,OST, +OST:SP:HOHWA_02,1,"Hohwart",48.549401,7.741703,0,0,OST:SA:CTPHOHWA_01,Europe/Paris,,OST, +OST:SP:HOHWA_03,1,"Hohwart",48.549269,7.740209,0,0,OST:SA:CTPHOHWA_01,Europe/Paris,,OST, +OST:SP:HOHWA_04,1,"Hohwart",48.549176,7.740933,0,0,OST:SA:CTPHOHWA_01,Europe/Paris,,OST, +OST:SP:HOHWA_05,1,"Hohwart",48.549306,7.741782,0,0,OST:SA:CTPHOHWA_01,Europe/Paris,,OST, +OST:SP:HOHWA_06,1,"Hohwart",48.549403,7.741463,0,0,OST:SA:CTPHOHWA_01,Europe/Paris,,OST, +OST:SP:HOLZA_01,1,"Holtzheim ZA",48.559632,7.653116,0,0,OST:SA:CTPHOLZA_01,Europe/Paris,,OST, +OST:SP:HOLZA_02,1,"Holtzheim ZA",48.559632,7.653116,0,0,OST:SA:CTPHOLZA_01,Europe/Paris,,OST, +OST:SP:HOMAI_01,1,"Hoenheim Mairie",48.62157,7.755202,0,0,OST:SA:CTPHOMAI_01,Europe/Paris,,OST, +OST:SP:HOMAI_02,1,"Hoenheim Mairie",48.621365,7.755303,0,0,OST:SA:CTPHOMAI_01,Europe/Paris,,OST, +OST:SP:HONAU_01,1,"Honau",48.640339,7.808444,0,0,OST:SA:CTPHONAU_01,Europe/Paris,,OST, +OST:SP:HONAU_02,1,"Honau",48.640568,7.808543,0,0,OST:SA:CTPHONAU_01,Europe/Paris,,OST, +OST:SP:HOOUE_02,1,"Holtzheim Ouest",48.562328,7.636233,0,0,OST:SA:CTPHOOUE_02,Europe/Paris,,OST, +OST:SP:HOPOL_01,1,"Hôtel de Police",48.574524,7.748867,0,0,OST:SA:CTPHOPOL_01,Europe/Paris,,OST, +OST:SP:HOPOL_02,1,"Hôtel de Police",48.574689,7.750374,0,0,OST:SA:CTPHOPOL_01,Europe/Paris,,OST, +OST:SP:HORAC_01,1,"Horace",48.583201,7.699544,0,0,OST:SA:CTPHORAC_01,Europe/Paris,,OST, +OST:SP:HORAC_02,1,"Horace",48.582759,7.699292,0,0,OST:SA:CTPHORAC_01,Europe/Paris,,OST, +OST:SP:ICARE_01,1,"Icare",48.543431,7.655066,0,0,OST:SA:CTPICARE_01,Europe/Paris,,OST, +OST:SP:ICARE_02,1,"Icare",48.543504,7.654955,0,0,OST:SA:CTPICARE_01,Europe/Paris,,OST, +OST:SP:ICARE_03,1,"Icare",48.544754,7.654455,0,0,OST:SA:CTPICARE_01,Europe/Paris,,OST, +OST:SP:ICARE_04,1,"Icare",48.544724,7.654055,0,0,OST:SA:CTPICARE_01,Europe/Paris,,OST, +OST:SP:ILDFR_01,1,"Ile de France",48.549408,7.750125,0,0,OST:SA:CTPILDFR_01,Europe/Paris,,OST, +OST:SP:ILDFR_02,1,"Ile de France",48.549871,7.750923,0,0,OST:SA:CTPILDFR_01,Europe/Paris,,OST, +OST:SP:ILGRA_01,1,"Illkirch Graffenstaden",48.524521,7.707865,0,0,OST:SA:CTPILGRA_01,Europe/Paris,,OST, +OST:SP:ILGRA_02,1,"Illkirch Graffenstaden",48.524245,7.707919,0,0,OST:SA:CTPILGRA_01,Europe/Paris,,OST, +OST:SP:ILGRA_03,1,"Illkirch Graffenstaden",48.524255,7.707823,0,0,OST:SA:CTPILGRA_01,Europe/Paris,,OST, +OST:SP:ILLIX_04,1,"Illkirch Lixenbuhl",48.529809,7.724789,0,0,OST:SA:CTPILLIX_04,Europe/Paris,,OST, +OST:SP:ILLIX_05,1,"Illkirch Lixenbuhl",48.529906,7.724413,0,0,OST:SA:CTPILLIX_04,Europe/Paris,,OST, +OST:SP:ILMAI_01,1,"Illkirch Mairie",48.529502,7.711029,0,0,OST:SA:CTPILMAI_01,Europe/Paris,,OST, +OST:SP:ILMAI_02,1,"Illkirch Mairie",48.529258,7.711073,0,0,OST:SA:CTPILMAI_01,Europe/Paris,,OST, +OST:SP:ILMAI_03,1,"Illkirch Mairie",48.529208,7.711032,0,0,OST:SA:CTPILMAI_01,Europe/Paris,,OST, +OST:SP:ILMAI_04,1,"Illkirch Mairie",48.529259,7.711073,0,0,OST:SA:CTPILMAI_01,Europe/Paris,,OST, +OST:SP:ILMAI_07,1,"Illkirch Mairie",48.53072,7.710875,0,0,OST:SA:CTPILMAI_01,Europe/Paris,,OST, +OST:SP:ILMAI_08,1,"Illkirch Mairie",48.53056,7.71084,0,0,OST:SA:CTPILMAI_01,Europe/Paris,,OST, +OST:SP:ILMAI_11,1,"Illkirch Mairie",48.529259,7.711073,0,0,OST:SA:CTPILMAI_01,Europe/Paris,,OST, +OST:SP:ILPAI_01,1,"Illkirch Parc d'Innovation",48.519269,7.735657,0,0,OST:SA:CTPILPAI_01,Europe/Paris,,OST, +OST:SP:ILPAI_02,1,"Illkirch Parc d'Innovation",48.519377,7.735706,0,0,OST:SA:CTPILPAI_01,Europe/Paris,,OST, +OST:SP:ILPIN_01,1,"Ilkirch Parc d'Innovation",48.518434,7.734438,0,0,OST:SA:CTPILPIN_01,Europe/Paris,,OST, +OST:SP:IMPRI_01,1,"Imprimeurs",48.534703,7.678816,0,0,OST:SA:CTPIMPRI_01,Europe/Paris,,OST, +OST:SP:IMPRI_02,1,"Imprimeurs",48.535024,7.678556,0,0,OST:SA:CTPIMPRI_01,Europe/Paris,,OST, +OST:SP:INGOL_01,1,"Ingold",48.545579,7.772178,0,0,OST:SA:CTPINGOL_01,Europe/Paris,,OST, +OST:SP:INGOL_02,1,"Ingold",48.54559,7.772243,0,0,OST:SA:CTPINGOL_01,Europe/Paris,,OST, +OST:SP:IUTPA_01,1,"I.U.T. Pasteur",48.606435,7.70939,0,0,OST:SA:CTPIUTPA_01,Europe/Paris,,OST, +OST:SP:IUTPA_02,1,"I.U.T. Pasteur",48.606529,7.70957,0,0,OST:SA:CTPIUTPA_01,Europe/Paris,,OST, +OST:SP:JACOB_01,1,"Jacob",48.592477,7.717263,0,0,OST:SA:CTPJACOB_01,Europe/Paris,,OST, +OST:SP:JACOB_02,1,"Jacob",48.592341,7.717599,0,0,OST:SA:CTPJACOB_01,Europe/Paris,,OST, +OST:SP:JACQU_01,1,"Jacqueline",48.593613,7.694736,0,0,OST:SA:CTPJACQU_01,Europe/Paris,,OST, +OST:SP:JACQU_02,1,"Jacqueline",48.593558,7.694935,0,0,OST:SA:CTPJACQU_01,Europe/Paris,,OST, +OST:SP:JANET_01,1,"Jacobi Netter",48.586643,7.704837,0,0,OST:SA:CTPJANET_01,Europe/Paris,,OST, +OST:SP:JANET_02,1,"Jacobi Netter",48.586764,7.704944,0,0,OST:SA:CTPJANET_01,Europe/Paris,,OST, +OST:SP:JARDI_01,1,"Jardins",48.586947,7.670899,0,0,OST:SA:CTPJARDI_01,Europe/Paris,,OST, +OST:SP:JARDI_02,1,"Jardins",48.586886,7.670893,0,0,OST:SA:CTPJARDI_01,Europe/Paris,,OST, +OST:SP:JARIV_01,1,"Jardin des deux Rives",48.569216,7.79498,0,0,OST:SA:CTPJARIV_01,Europe/Paris,,OST, +OST:SP:JARIV_02,1,"Jardin des deux Rives",48.569219,7.79493,0,0,OST:SA:CTPJARIV_01,Europe/Paris,,OST, +OST:SP:JAROS_01,1,"Jardin des Roses",48.580614,7.690764,0,0,OST:SA:CTPJAROS_01,Europe/Paris,,OST, +OST:SP:JAROS_02,1,"Jardin des Roses",48.580528,7.690438,0,0,OST:SA:CTPJAROS_01,Europe/Paris,,OST, +OST:SP:JAURE_01,1,"Jean Jaures",48.567208,7.772213,0,0,OST:SA:CTPJAURE_01,Europe/Paris,,OST, +OST:SP:JAURE_02,1,"Jean Jaures",48.567313,7.771894,0,0,OST:SA:CTPJAURE_01,Europe/Paris,,OST, +OST:SP:JAVIG_01,1,"Jardin des Vignes",48.582506,7.682775,0,0,OST:SA:CTPJAVIG_01,Europe/Paris,,OST, +OST:SP:JAVIG_02,1,"Jardin des Vignes",48.582353,7.682933,0,0,OST:SA:CTPJAVIG_01,Europe/Paris,,OST, +OST:SP:JEJAU_01,1,"Jean Jaures",48.56683,7.773474,0,0,OST:SA:CTPJAURE_01,Europe/Paris,,OST, +OST:SP:JEJAU_02,1,"Jean Jaures",48.566415,7.773128,0,0,OST:SA:CTPJAURE_01,Europe/Paris,,OST, +OST:SP:JEJAU_03,1,"Jean Jaures",48.567139,7.772133,0,0,OST:SA:CTPJAURE_01,Europe/Paris,,OST, +OST:SP:JEJAU_04,1,"Jean Jaures",48.567167,7.772022,0,0,OST:SA:CTPJAURE_01,Europe/Paris,,OST, +OST:SP:JEMON_01,1,"Jean Monnet",48.586762,7.687318,0,0,OST:SA:CTPJEMON_01,Europe/Paris,,OST, +OST:SP:JEMON_02,1,"Jean Monnet",48.587567,7.68747,0,0,OST:SA:CTPJEMON_01,Europe/Paris,,OST, +OST:SP:JEMON_03,1,"Jean Monnet",48.587144,7.686774,0,0,OST:SA:CTPJEMON_01,Europe/Paris,,OST, +OST:SP:JESUI_03,1,"Jésuites",48.539094,7.761101,0,0,OST:SA:CTPJESUI_03,Europe/Paris,,OST, +OST:SP:JESUI_04,1,"Jésuites",48.538936,7.760937,0,0,OST:SA:CTPJESUI_03,Europe/Paris,,OST, +OST:SP:JPERR_01,1,"Jean Perrin",48.587901,7.683443,0,0,OST:SA:CTPJPERR_01,Europe/Paris,,OST, +OST:SP:JPERR_02,1,"Jean Perrin",48.587779,7.683518,0,0,OST:SA:CTPJPERR_01,Europe/Paris,,OST, +OST:SP:KARIN_03,1,"Karine",48.596248,7.695763,0,0,OST:SA:CTPKARIN_03,Europe/Paris,,OST, +OST:SP:KARIN_04,1,"Karine",48.596248,7.696063,0,0,OST:SA:CTPKARIN_03,Europe/Paris,,OST, +OST:SP:KASTL_01,1,"Kastler",48.548754,7.683853,0,0,OST:SA:CTPKASTL_01,Europe/Paris,,OST, +OST:SP:KASTL_02,1,"Kastler",48.548837,7.684324,0,0,OST:SA:CTPKASTL_01,Europe/Paris,,OST, +OST:SP:KEBAH_03,1,"Kehl Bahnhof",48.575022,7.807235,0,0,OST:SA:CTPKEBAH_03,Europe/Paris,,OST, +OST:SP:KEBAH_04,1,"Kehl Bahnhof",48.575866,7.8067,0,0,OST:SA:CTPKEBAH_03,Europe/Paris,,OST, +OST:SP:KEMPF_01,1,"Kempf",48.608937,7.789573,0,0,OST:SA:CTPKEMPF_01,Europe/Paris,,OST, +OST:SP:KEMPF_2,1,"Kempf",48.608859,7.78953,0,0,OST:SA:CTPKEMPF_01,Europe/Paris,,OST, +OST:SP:KEPLE_01,1,"Kepler",48.605208,7.720754,0,0,OST:SA:CTPKEPLE_01,Europe/Paris,,OST, +OST:SP:KEPLE_02,1,"Kepler",48.605268,7.720861,0,0,OST:SA:CTPKEPLE_01,Europe/Paris,,OST, +OST:SP:KIBIT_01,1,"Kibitzenau",48.555094,7.767189,0,0,OST:SA:CTPKIBIT_01,Europe/Paris,,OST, +OST:SP:KIBIT_02,1,"Kibitzenau",48.555313,7.767256,0,0,OST:SA:CTPKIBIT_01,Europe/Paris,,OST, +OST:SP:KIBIT_04,1,"Kibitzenau",48.554793,7.767275,0,0,OST:SA:CTPKIBIT_01,Europe/Paris,,OST, +OST:SP:KIBIT_05,1,"Kibitzenau",48.554963,7.766342,0,0,OST:SA:CTPKIBIT_01,Europe/Paris,,OST, +OST:SP:KIBIT_06,1,"Kibitzenau",48.554931,7.766508,0,0,OST:SA:CTPKIBIT_01,Europe/Paris,,OST, +OST:SP:KIBIT_07,1,"Kibitzenau parking",48.554773,7.766999,0,0,OST:SA:CTPKIBIT_07,Europe/Paris,,OST, +OST:SP:KIBTZ_01,1,"Kibitzenau",48.554931,7.766507,0,0,OST:SA:CTPKIBIT_01,Europe/Paris,,OST, +OST:SP:KIEFE_01,1,"Kiefer",48.547444,7.770236,0,0,OST:SA:CTPKIEFE_01,Europe/Paris,,OST, +OST:SP:KIEFE_02,1,"Kiefer",48.547579,7.770046,0,0,OST:SA:CTPKIEFE_01,Europe/Paris,,OST, +OST:SP:KLEBS_01,1,"Klebsau",48.54436,7.773439,0,0,OST:SA:CTPKLEBS_01,Europe/Paris,,OST, +OST:SP:KLEBS_02,1,"Klebsau",48.54418,7.773366,0,0,OST:SA:CTPKLEBS_01,Europe/Paris,,OST, +OST:SP:KOMAI_01,1,"Kolbsheim Mairie",48.560482,7.586214,0,0,OST:SA:CTPKOMAI_01,Europe/Paris,,OST, +OST:SP:KOMAI_02,1,"Kolbsheim Mairie",48.56044,7.586219,0,0,OST:SA:CTPKOMAI_01,Europe/Paris,,OST, +OST:SP:KRIMM_03,1,"Krimmeri",48.562996,7.752633,0,0,OST:SA:CTPKRIMM_03,Europe/Paris,,OST, +OST:SP:KRIMM_04,1,"Krimmeri",48.563216,7.752654,0,0,OST:SA:CTPKRIMM_03,Europe/Paris,,OST, +OST:SP:KRMEI_01,1,"Krimmeri Meinau",48.562996,7.752633,0,0,OST:SA:CTPKRMEI_01,Europe/Paris,,OST, +OST:SP:KRMEI_02,1,"Krimmeri Meinau",48.562996,7.752633,0,0,OST:SA:CTPKRMEI_01,Europe/Paris,,OST, +OST:SP:KRUTE_01,1,"Krutenau",48.579962,7.757949,0,0,OST:SA:CTPKRUTE_01,Europe/Paris,,OST, +OST:SP:KRUTE_02,1,"Krutenau",48.580177,7.757712,0,0,OST:SA:CTPKRUTE_01,Europe/Paris,,OST, +OST:SP:LAALI_01,1,"Lampertheim Alisiers",48.647261,7.688398,0,0,OST:SA:CTPLAALI_01,Europe/Paris,,OST, +OST:SP:LAALI_02,1,"Lampertheim Alisiers",48.647261,7.688398,0,0,OST:SA:CTPLAALI_01,Europe/Paris,,OST, +OST:SP:LAEGL_01,1,"Lampertheim Eglise",48.650883,7.701003,0,0,OST:SA:CTPLAEGL_01,Europe/Paris,,OST, +OST:SP:LAEGL_02,1,"Lampertheim Eglise",48.650927,7.700952,0,0,OST:SA:CTPLAEGL_01,Europe/Paris,,OST, +OST:SP:LAGRR_01,1,"Langstross/Grand Rue",48.58135,7.746296,0,0,OST:SA:CTPLAGRR_01,Europe/Paris,,OST, +OST:SP:LAGRR_02,1,"Langstross/Grand Rue",48.58161,7.746313,0,0,OST:SA:CTPLAGRR_01,Europe/Paris,,OST, +OST:SP:LAITE_01,1,"Laiterie",48.57553,7.730835,0,0,OST:SA:CTPLAITE_01,Europe/Paris,,OST, +OST:SP:LAITE_02,1,"Laiterie",48.576011,7.732552,0,0,OST:SA:CTPLAITE_01,Europe/Paris,,OST, +OST:SP:LAITE_03,1,"Laiterie",48.57599,7.731608,0,0,OST:SA:CTPLAITE_01,Europe/Paris,,OST, +OST:SP:LAITE_04,1,"Laiterie",48.575864,7.73137,0,0,OST:SA:CTPLAITE_01,Europe/Paris,,OST, +OST:SP:LAMAR_01,1,"Lamartine",48.611118,7.738219,0,0,OST:SA:CTPLAMAR_01,Europe/Paris,,OST, +OST:SP:LAMAR_02,1,"Lamartine",48.610988,7.737598,0,0,OST:SA:CTPLAMAR_01,Europe/Paris,,OST, +OST:SP:LAMEY_01,1,"Lamey",48.588386,7.755508,0,0,OST:SA:CTPLAMEY_01,Europe/Paris,,OST, +OST:SP:LAMEY_02,1,"Lamey",48.58829,7.756298,0,0,OST:SA:CTPLAMEY_01,Europe/Paris,,OST, +OST:SP:LAMPR_01,1,"Lamproie",48.601953,7.792598,0,0,OST:SA:CTPLAMPR_01,Europe/Paris,,OST, +OST:SP:LAMPR_02,1,"Lamproie",48.601771,7.792771,0,0,OST:SA:CTPLAMPR_01,Europe/Paris,,OST, +OST:SP:LAMRI_01,1,"Lampertheim Mairie",48.651091,7.699309,0,0,OST:SA:CTPLAMRI_01,Europe/Paris,,OST, +OST:SP:LAMRI_02,1,"Lampertheim Mairie",48.65067,7.700076,0,0,OST:SA:CTPLAMRI_01,Europe/Paris,,OST, +OST:SP:LANDS_05,1,"Landsberg",48.569341,7.764091,0,0,OST:SA:CTPLANDS_05,Europe/Paris,,OST, +OST:SP:LANDS_06,1,"Landsberg",48.569893,7.762312,0,0,OST:SA:CTPLANDS_05,Europe/Paris,,OST, +OST:SP:LANDS_07,1,"Landsberg",48.570226,7.763544,0,0,OST:SA:CTPLANDS_05,Europe/Paris,,OST, +OST:SP:LANDS_10,1,"Landsberg",48.570226,7.763544,0,0,OST:SA:CTPLANDS_05,Europe/Paris,,OST, +OST:SP:LANDS_11,1,"Landsberg",48.570226,7.763544,0,0,OST:SA:CTPLANDS_05,Europe/Paris,,OST, +OST:SP:LAROC_01,1,"La Rochelle",48.535304,7.785455,0,0,OST:SA:CTPLAROC_01,Europe/Paris,,OST, +OST:SP:LAROC_02,1,"La Rochelle",48.536269,7.786885,0,0,OST:SA:CTPLAROC_01,Europe/Paris,,OST, +OST:SP:LASOU_01,1,"La Souffel",48.628482,7.729228,0,0,OST:SA:CTPLASOU_01,Europe/Paris,,OST, +OST:SP:LASOU_02,1,"La Souffel",48.628826,7.729239,0,0,OST:SA:CTPLASOU_01,Europe/Paris,,OST, +OST:SP:LAUTE_01,1,"Lauterbourg",48.609573,7.74218,0,0,OST:SA:CTPLAUTE_01,Europe/Paris,,OST, +OST:SP:LAUTE_02,1,"Lauterbourg",48.60949,7.742359,0,0,OST:SA:CTPLAUTE_01,Europe/Paris,,OST, +OST:SP:LAVIG_01,1,"La Vigie",48.534054,7.695762,0,0,OST:SA:CTPLAVIG_01,Europe/Paris,,OST, +OST:SP:LAVIG_02,1,"La Vigie",48.53364,7.694187,0,0,OST:SA:CTPLAVIG_01,Europe/Paris,,OST, +OST:SP:LAVOI_01,1,"Lavoisier",48.602723,7.719177,0,0,OST:SA:CTPLAVOI_01,Europe/Paris,,OST, +OST:SP:LAVOI_02,1,"Lavoisier",48.602593,7.719377,0,0,OST:SA:CTPLAVOI_01,Europe/Paris,,OST, +OST:SP:LAVOI_03,1,"Lavoisier",48.601913,7.719077,0,0,OST:SA:CTPLAVOI_01,Europe/Paris,,OST, +OST:SP:LAVOI_04,1,"Lavoisier",48.602113,7.719577,0,0,OST:SA:CTPLAVOI_01,Europe/Paris,,OST, +OST:SP:LAZAR_01,1,"Lazaret",48.563518,7.761451,0,0,OST:SA:CTPLAZAR_01,Europe/Paris,,OST, +OST:SP:LAZAR_02,1,"Lazaret",48.563226,7.761944,0,0,OST:SA:CTPLAZAR_01,Europe/Paris,,OST, +OST:SP:LECLE_01,1,"Leclerc",48.534343,7.734434,0,0,OST:SA:CTPLECLE_01,Europe/Paris,,OST, +OST:SP:LECLE_02,1,"Leclerc",48.534535,7.734477,0,0,OST:SA:CTPLECLE_01,Europe/Paris,,OST, +OST:SP:LEFEB_01,1,"Lefèbvre",48.559516,7.74582,0,0,OST:SA:CTPLEFEB_01,Europe/Paris,,OST, +OST:SP:LEFEB_02,1,"Lefèbvre",48.559663,7.745736,0,0,OST:SA:CTPLEFEB_01,Europe/Paris,,OST, +OST:SP:LEGAL_01,1,"Le Galet",48.596208,7.69839,0,0,OST:SA:CTPLEGAL_01,Europe/Paris,,OST, +OST:SP:LEGAL_02,1,"Le Galet",48.596238,7.698486,0,0,OST:SA:CTPLEGAL_01,Europe/Paris,,OST, +OST:SP:LEMAR_01,1,"Le Marais",48.609288,7.765869,0,0,OST:SA:CTPLEMAR_01,Europe/Paris,,OST, +OST:SP:LEMAR_02,1,"Le Marais",48.609388,7.76587,0,0,OST:SA:CTPLEMAR_01,Europe/Paris,,OST, +OST:SP:LEMAR_03,1,"Le Marais",48.609988,7.765869,0,0,OST:SA:CTPLEMAR_01,Europe/Paris,,OST, +OST:SP:LEMAR_04,1,"Le Marais",48.609853,7.765564,0,0,OST:SA:CTPLEMAR_01,Europe/Paris,,OST, +OST:SP:LERCH_01,1,"Lerchenberg",48.619901,7.7313,0,0,OST:SA:CTPLERCH_01,Europe/Paris,,OST, +OST:SP:LERCH_02,1,"Lerchenberg",48.619695,7.731517,0,0,OST:SA:CTPLERCH_01,Europe/Paris,,OST, +OST:SP:LERIE_01,1,"Le Ried",48.62146,7.767628,0,0,OST:SA:CTPLERIE_01,Europe/Paris,,OST, +OST:SP:LERIE_02,1,"Le Ried",48.621334,7.767888,0,0,OST:SA:CTPLERIE_01,Europe/Paris,,OST, +OST:SP:LHPPA_01,1,"Les Halles - Pont de Paris",48.585889,7.74376,0,0,OST:SA:CTPLHPPA_01,Europe/Paris,,OST, +OST:SP:LHPPA_02,1,"Les Halles - Pont de Paris",48.585251,7.743493,0,0,OST:SA:CTPLHPPA_01,Europe/Paris,,OST, +OST:SP:LHPPA_F1,1,"Les Halles - Pont de Paris",48.585214,7.74343,0,0,OST:SA:CTPLHPPA_01,Europe/Paris,,OST, +OST:SP:LHPPA_F2,1,"Les Halles - Pont de Paris",48.585889,7.74376,0,0,OST:SA:CTPLHPPA_01,Europe/Paris,,OST, +OST:SP:LHSEB_01,1,"Les Halles Sébastopol",48.586231,7.743013,0,0,OST:SA:CTPLHSEB_01,Europe/Paris,,OST, +OST:SP:LIBER_01,1,"Liberté",48.585996,7.758126,0,0,OST:SA:CTPLIBER_01,Europe/Paris,,OST, +OST:SP:LIBER_02,1,"Liberté",48.586175,7.757966,0,0,OST:SA:CTPLIBER_01,Europe/Paris,,OST, +OST:SP:LICEN_01,1,"Lipsheim Centre",48.490333,7.664972,0,0,OST:SA:CTPLICEN_01,Europe/Paris,,OST, +OST:SP:LIEST_01,1,"Lipsheim Est",48.491642,7.669958,0,0,OST:SA:CTPLIEST_01,Europe/Paris,,OST, +OST:SP:LIEST_02,1,"Lipsheim Est",48.49129,7.669706,0,0,OST:SA:CTPLIEST_01,Europe/Paris,,OST, +OST:SP:LIGAR_06,1,"Lipsheim gare",48.490755,7.674905,0,0,OST:SA:CTPLIGAR_06,Europe/Paris,,OST, +OST:SP:LIPGA_01,1,"Lipsheim Gare (Départ vers LIP.C)",48.491236,7.672752,0,0,SIN:SA:OCE87212266,Europe/Paris,,OST, +OST:SP:LIPGA_02,1,"Lipsheim Gare (Départ vers GG)",48.491236,7.672752,0,0,SIN:SA:OCE87212266,Europe/Paris,,OST, +OST:SP:LIPGA_03,1,"Lipsheim Gare Départ (Ligne 63)",48.491236,7.672752,0,0,SIN:SA:OCE87212266,Europe/Paris,,OST, +OST:SP:LITIE_01,1,"Lingolsheim Tiergaertel",48.55379,7.689424,0,0,OST:SA:CTPLITIE_01,Europe/Paris,,OST, +OST:SP:LNCEN_01,1,"Lingolsheim Centre",48.558164,7.685198,0,0,OST:SA:CTPLNCEN_01,Europe/Paris,,OST, +OST:SP:LNCEN_02,1,"Lingolsheim Centre",48.558466,7.686152,0,0,OST:SA:CTPLNCEN_01,Europe/Paris,,OST, +OST:SP:LNCHA_01,1,"Lingolsheim Château",48.553722,7.67982,0,0,OST:SA:CTPLNCHA_01,Europe/Paris,,OST, +OST:SP:LNGAR_01,1,"Lingolsheim Gare",48.559597,7.678139,0,0,STE:SA:OCE87214502,Europe/Paris,,OST, +OST:SP:LNMAI_01,1,"Lingolsheim Mairie",48.55736,7.682803,0,0,OST:SA:CTPLNMAI_01,Europe/Paris,,OST, +OST:SP:LNMAI_02,1,"Lingolsheim Mairie",48.557434,7.682789,0,0,OST:SA:CTPLNMAI_01,Europe/Paris,,OST, +OST:SP:LOAMP_01,1,"Louis Ampère",48.509972,7.710765,0,0,OST:SA:CTPLOAMP_01,Europe/Paris,,OST, +OST:SP:LOAMP_02,1,"Louis Ampère",48.509802,7.710698,0,0,OST:SA:CTPLOAMP_01,Europe/Paris,,OST, +OST:SP:LOEBB_01,1,"Loeb",48.475789,7.709604,0,0,OST:SA:CTPLOEBB_01,Europe/Paris,,OST, +OST:SP:LOEBB_02,1,"Loeb",48.475705,7.709995,0,0,OST:SA:CTPLOEBB_01,Europe/Paris,,OST, +OST:SP:LOLOU_03,1,"Louis Loucheur",48.549464,7.758013,0,0,OST:SA:CTPLOLOU_03,Europe/Paris,,OST, +OST:SP:LOLOU_04,1,"Louis Loucheur",48.549409,7.758141,0,0,OST:SA:CTPLOLOU_03,Europe/Paris,,OST, +OST:SP:LONDR_01,1,"Londres",48.610448,7.712063,0,0,OST:SA:CTPLONDR_01,Europe/Paris,,OST, +OST:SP:LONDR_02,1,"Londres",48.610428,7.712263,0,0,OST:SA:CTPLONDR_01,Europe/Paris,,OST, +OST:SP:LONDR_05,1,"Londres",48.610428,7.712263,0,0,OST:SA:CTPLONDR_01,Europe/Paris,,OST, +OST:SP:LONDR_06,1,"Londres",48.610448,7.712063,0,0,OST:SA:CTPLONDR_01,Europe/Paris,,OST, +OST:SP:LORRA_01,1,"Lorraine",48.651977,7.695394,0,0,OST:SA:CTPLORRA_01,Europe/Paris,,OST, +OST:SP:LORRA_02,1,"Lorraine",48.651272,7.696777,0,0,OST:SA:CTPLORRA_01,Europe/Paris,,OST, +OST:SP:LWAEG_01,1,"La Wantzenau Eglise",48.662812,7.822248,0,0,OST:SA:CTPLWAEG_01,Europe/Paris,,OST, +OST:SP:LWAEG_02,1,"La Wantzenau Eglise",48.662569,7.822048,0,0,OST:SA:CTPLWAEG_01,Europe/Paris,,OST, +OST:SP:LWAGO_01,1,"La Wantzenau Le Golf",48.675906,7.815439,0,0,OST:SA:CTPLWAGO_01,Europe/Paris,,OST, +OST:SP:LWAGO_02,1,"La Wantzenau Le Golf",48.675906,7.815439,0,0,OST:SA:CTPLWAGO_01,Europe/Paris,,OST, +OST:SP:LWAMA_01,1,"La Wantzenau Mairie",48.658027,7.82794,0,0,OST:SA:CTPLWAMA_01,Europe/Paris,,OST, +OST:SP:LWATI_01,1,"La Wantzenau Le Tilleul",48.660711,7.823604,0,0,OST:SA:CTPLWATI_01,Europe/Paris,,OST, +OST:SP:LWATI_02,1,"La Wantzenau Le Tilleul",48.660779,7.823411,0,0,OST:SA:CTPLWATI_01,Europe/Paris,,OST, +OST:SP:LWAZA_01,1,"La Wantzenau ZA",48.669308,7.812723,0,0,OST:SA:CTPLWAZA_01,Europe/Paris,,OST, +OST:SP:LWECO_01,1,"La Wantzenau Ecole",48.659713,7.825284,0,0,OST:SA:CTPLWECO_01,Europe/Paris,,OST, +OST:SP:LWECO_02,1,"La Wantzenau Ecole",48.659338,7.82559,0,0,OST:SA:CTPLWECO_01,Europe/Paris,,OST, +OST:SP:LWGAR_02,1,"La Wantzenau Gare",48.664716,7.823937,0,0,OST:SA:CTPLWGAR_02,Europe/Paris,,OST, +OST:SP:LWGAR_03,1,"La Wantzenau Gare",48.664716,7.823937,0,0,OST:SA:CTPLWGAR_02,Europe/Paris,,OST, +OST:SP:LYCOU_01,1,"Lycée Couffignal",48.558673,7.748078,0,0,OST:SA:CTPLYCOU_01,Europe/Paris,,OST, +OST:SP:LYCOU_02,1,"Lycée Couffignal",48.558747,7.748188,0,0,OST:SA:CTPLYCOU_01,Europe/Paris,,OST, +OST:SP:LYCOU_03,1,"Lycée Couffignal",48.558753,7.749079,0,0,OST:SA:CTPLYCOU_01,Europe/Paris,,OST, +OST:SP:LYCOU_04,1,"Lycée Couffignal",48.558899,7.749289,0,0,OST:SA:CTPLYCOU_01,Europe/Paris,,OST, +OST:SP:LYCOU_07,1,"Lycée Couffignal",48.558899,7.749289,0,0,OST:SA:CTPLYCOU_01,Europe/Paris,,OST, +OST:SP:LYCOU_08,1,"Lycée Couffignal",48.558899,7.749289,0,0,OST:SA:CTPLYCOU_01,Europe/Paris,,OST, +OST:SP:LYJMO_01,1,"Lycée Jean Monnet",48.564409,7.769393,0,0,OST:SA:CTPLYJMO_01,Europe/Paris,,OST, +OST:SP:LYJMO_02,1,"Lycée Jean Monnet",48.564495,7.769611,0,0,OST:SA:CTPLYJMO_01,Europe/Paris,,OST, +OST:SP:LYKLE_01,1,"Lycée Kléber",48.593362,7.757618,0,0,OST:SA:CTPLYKLE_01,Europe/Paris,,OST, +OST:SP:LYKLE_02,1,"Lycée Kléber",48.593453,7.758141,0,0,OST:SA:CTPLYKLE_01,Europe/Paris,,OST, +OST:SP:LYKLE_05,1,"Lycée Kléber",48.594188,7.757804,0,0,OST:SA:CTPLYKLE_01,Europe/Paris,,OST, +OST:SP:LYKLE_06,1,"Lycée Kléber",48.593963,7.757776,0,0,OST:SA:CTPLYKLE_01,Europe/Paris,,OST, +OST:SP:LYMAB_01,1,"Lycée Marc Bloch",48.616616,7.768009,0,0,OST:SA:CTPLYMAB_01,Europe/Paris,,OST, +OST:SP:LYMAB_02,1,"Lycée Marc Bloch",48.616416,7.767852,0,0,OST:SA:CTPLYMAB_01,Europe/Paris,,OST, +OST:SP:LYOPA_01,1,"Lyon-Pasteur",48.574896,7.734354,0,0,OST:SA:CTPLYOPA_01,Europe/Paris,,OST, +OST:SP:LYPAS_01,1,"Lycée Pasteur",48.574508,7.738546,0,0,OST:SA:CTPLYPAS_01,Europe/Paris,,OST, +OST:SP:LYPAS_02,1,"Lycée Pasteur",48.574327,7.738782,0,0,OST:SA:CTPLYPAS_01,Europe/Paris,,OST, +OST:SP:MAALE_01,1,"Maxime Alexandre",48.561675,7.68134,0,0,OST:SA:CTPMAALE_01,Europe/Paris,,OST, +OST:SP:MAALE_02,1,"Maxime Alexandre",48.561739,7.682459,0,0,OST:SA:CTPMAALE_01,Europe/Paris,,OST, +OST:SP:MAARM_01,1,"Musée d'Art Moderne",48.578313,7.73403,0,0,OST:SA:CTPMAARM_01,Europe/Paris,,OST, +OST:SP:MAARM_02,1,"Musée d'Art Moderne",48.578272,7.734029,0,0,OST:SA:CTPMAARM_01,Europe/Paris,,OST, +OST:SP:MAARM_03,1,"Musée d'Art Moderne",48.578212,7.733809,0,0,OST:SA:CTPMAARM_01,Europe/Paris,,OST, +OST:SP:MAARM_04,1,"Musée d'Art Moderne",48.577986,7.734148,0,0,OST:SA:CTPMAARM_01,Europe/Paris,,OST, +OST:SP:MAARM_05,1,"Musée d'Art Moderne",48.577811,7.733867,0,0,OST:SA:CTPMAARM_01,Europe/Paris,,OST, +OST:SP:MAARM_06,1,"Musée d'Art Moderne",48.578011,7.734967,0,0,OST:SA:CTPMAARM_01,Europe/Paris,,OST, +OST:SP:MAARM_07,1,"Musée d'Art Moderne",48.577811,7.733867,0,0,OST:SA:CTPMAARM_01,Europe/Paris,,OST, +OST:SP:MADRI_01,1,"Madrid",48.60908,7.706857,0,0,OST:SA:CTPMADRI_01,Europe/Paris,,OST, +OST:SP:MADRI_02,1,"Madrid",48.60938,7.706657,0,0,OST:SA:CTPMADRI_01,Europe/Paris,,OST, +OST:SP:MALTE_01,1,"Malterie",48.613632,7.756011,0,0,OST:SA:CTPMALTE_01,Europe/Paris,,OST, +OST:SP:MALTE_02,1,"Malterie",48.613646,7.756407,0,0,OST:SA:CTPMALTE_01,Europe/Paris,,OST, +OST:SP:MAPAG_01,1,"Marcel Pagnol",48.602432,7.702702,0,0,OST:SA:CTPMAPAG_01,Europe/Paris,,OST, +OST:SP:MAPAG_02,1,"Marcel Pagnol",48.602474,7.702839,0,0,OST:SA:CTPMAPAG_01,Europe/Paris,,OST, +OST:SP:MARGU_01,1,"Marguerite",48.614206,7.760119,0,0,OST:SA:CTPMARGU_01,Europe/Paris,,OST, +OST:SP:MARGU_02,1,"Marguerite",48.61423,7.759704,0,0,OST:SA:CTPMARGU_01,Europe/Paris,,OST, +OST:SP:MARNE_01,1,"Marne",48.58369,7.773158,0,0,OST:SA:CTPMARNE_01,Europe/Paris,,OST, +OST:SP:MARNE_02,1,"Marne",48.583805,7.772867,0,0,OST:SA:CTPMARNE_01,Europe/Paris,,OST, +OST:SP:MARNE_03,1,"Marne (déviation marché)",48.583805,7.772867,0,0,OST:SA:CTPMARNE_03,Europe/Paris,,OST, +OST:SP:MAROU_01,1,"Maison Rouge",48.60729,7.749489,0,0,OST:SA:CTPMAROU_01,Europe/Paris,,OST, +OST:SP:MAROU_02,1,"Maison Rouge",48.607885,7.749939,0,0,OST:SA:CTPMAROU_01,Europe/Paris,,OST, +OST:SP:MARRO_01,1,"Maison Rouge",48.607069,7.74888,0,0,OST:SA:CTPMAROU_01,Europe/Paris,,OST, +OST:SP:MARRO_02,1,"Maison Rouge",48.607405,7.748659,0,0,OST:SA:CTPMAROU_01,Europe/Paris,,OST, +OST:SP:MARUD_01,1,"Marcel Rudloff",48.587447,7.69766,0,0,OST:SA:CTPMARUD_01,Europe/Paris,,OST, +OST:SP:MARUD_02,1,"Marcel Rudloff",48.587487,7.697472,0,0,OST:SA:CTPMARUD_01,Europe/Paris,,OST, +OST:SP:MARUD_05,1,"Marcel Rudloff",48.585828,7.695451,0,0,OST:SA:CTPMARUD_01,Europe/Paris,,OST, +OST:SP:MARUD_06,1,"Marcel Rudloff",48.585318,7.694542,0,0,OST:SA:CTPMARUD_06,Europe/Paris,,OST, +OST:SP:MASCH_01,1,"Maires Schaub",48.613204,7.764087,0,0,OST:SA:CTPMASCH_01,Europe/Paris,,OST, +OST:SP:MASCH_02,1,"Maires Schaub",48.613027,7.764626,0,0,OST:SA:CTPMASCH_01,Europe/Paris,,OST, +OST:SP:MASEG_01,1,"Marc Seguin",48.615562,7.732311,0,0,OST:SA:CTPMASEG_01,Europe/Paris,,OST, +OST:SP:MASEG_02,1,"Marc Seguin",48.616761,7.732122,0,0,OST:SA:CTPMASEG_01,Europe/Paris,,OST, +OST:SP:MASEG_03,1,"Marc Seguin",48.616181,7.732809,0,0,OST:SA:CTPMASEG_01,Europe/Paris,,OST, +OST:SP:MASEG_04,1,"Marc Seguin",48.616068,7.732747,0,0,OST:SA:CTPMASEG_01,Europe/Paris,,OST, +OST:SP:MASEG_05,1,"Marc Seguin",48.616086,7.731702,0,0,OST:SA:CTPMASEG_01,Europe/Paris,,OST, +OST:SP:MAZEL_03,1,"Mathieu Zell",48.595276,7.718333,0,0,OST:SA:CTPMAZEL_03,Europe/Paris,,OST, +OST:SP:MAZEL_04,1,"Mathieu Zell",48.595262,7.718333,0,0,OST:SA:CTPMAZEL_03,Europe/Paris,,OST, +OST:SP:MAZEL_05,1,"Mathieu Zell",48.594754,7.71768,0,0,OST:SA:CTPMAZEL_03,Europe/Paris,,OST, +OST:SP:MAZEL_06,1,"Mathieu Zell",48.594794,7.717616,0,0,OST:SA:CTPMAZEL_03,Europe/Paris,,OST, +OST:SP:MIANG_01,1,"Michel Ange",48.564206,7.720291,0,0,OST:SA:CTPMIANG_01,Europe/Paris,,OST, +OST:SP:MIANG_02,1,"Michel Ange",48.564133,7.720194,0,0,OST:SA:CTPMIANG_01,Europe/Paris,,OST, +OST:SP:MIEGL_01,1,"Mittelhausbergen Eglise",48.614333,7.694425,0,0,OST:SA:CTPMIEGL_01,Europe/Paris,,OST, +OST:SP:MIEGL_02,1,"Mittelhausbergen Eglise",48.614312,7.694014,0,0,OST:SA:CTPMIEGL_01,Europe/Paris,,OST, +OST:SP:MIMIT_01,1,"Mittelhausbergen Mittelberg",48.612408,7.696913,0,0,OST:SA:CTPMIMIT_01,Europe/Paris,,OST, +OST:SP:MIMIT_02,1,"Mittelhausbergen Mittelberg",48.612408,7.696914,0,0,OST:SA:CTPMIMIT_01,Europe/Paris,,OST, +OST:SP:MITMI_01,1,"Mittelhausbergen Mittelberg",48.612267,7.69704,0,0,OST:SA:CTPMIMIT_01,Europe/Paris,,OST, +OST:SP:MOLKE_01,1,"Molkenbronn",48.562994,7.701294,0,0,OST:SA:CTPMOLKE_01,Europe/Paris,,OST, +OST:SP:MOLKE_02,1,"Molkenbronn",48.5628,7.700256,0,0,OST:SA:CTPMOLKE_01,Europe/Paris,,OST, +OST:SP:MOSER_01,1,"Moser",48.603248,7.737933,0,0,OST:SA:CTPMOSER_01,Europe/Paris,,OST, +OST:SP:MOSER_02,1,"Moser",48.603207,7.738068,0,0,OST:SA:CTPMOSER_01,Europe/Paris,,OST, +OST:SP:MOULI_01,1,"Moulin",48.580983,7.666424,0,0,OST:SA:CTPMOULI_01,Europe/Paris,,OST, +OST:SP:MOULI_02,1,"Moulin",48.581434,7.666384,0,0,OST:SA:CTPMOULI_01,Europe/Paris,,OST, +OST:SP:MOVER_01,1,"Montagne Verte",48.574673,7.727018,0,0,OST:SA:CTPMOVER_01,Europe/Paris,,OST, +OST:SP:MOVER_02,1,"Montagne Verte",48.574582,7.727055,0,0,OST:SA:CTPMOVER_01,Europe/Paris,,OST, +OST:SP:MOVER_03,1,"Montagne Verte",48.574468,7.727385,0,0,OST:SA:CTPMOVER_01,Europe/Paris,,OST, +OST:SP:MOVER_04,1,"Montagne Verte",48.574753,7.727073,0,0,OST:SA:CTPMOVER_01,Europe/Paris,,OST, +OST:SP:MOVER_05,1,"Montagne Verte",48.574673,7.727018,0,0,OST:SA:CTPMOVER_01,Europe/Paris,,OST, +OST:SP:MOVER_06,1,"Montagne Verte",48.574582,7.727055,0,0,OST:SA:CTPMOVER_01,Europe/Paris,,OST, +OST:SP:MOVER_F1,1,"Montagne Verte",48.574568,7.727413,0,0,OST:SA:CTPMOVER_01,Europe/Paris,,OST, +OST:SP:MOZAR_01,1,"Mozart",48.629792,7.753648,0,0,OST:SA:CTPMOZAR_01,Europe/Paris,,OST, +OST:SP:MOZAR_02,1,"Mozart",48.630087,7.753755,0,0,OST:SA:CTPMOZAR_01,Europe/Paris,,OST, +OST:SP:MSCHO_01,1,"Martin Schongauer",48.566258,7.720173,0,0,OST:SA:CTPMSCHO_01,Europe/Paris,,OST, +OST:SP:MSCHO_02,1,"Martin Schongauer",48.5661,7.720068,0,0,OST:SA:CTPMSCHO_01,Europe/Paris,,OST, +OST:SP:MSCHO_03,1,"Martin Schongauer",48.566122,7.720272,0,0,OST:SA:CTPMSCHO_01,Europe/Paris,,OST, +OST:SP:MSCHO_04,1,"Martin Schongauer",48.565543,7.720033,0,0,OST:SA:CTPMSCHO_01,Europe/Paris,,OST, +OST:SP:MUHLB_01,1,"Mühlbach",48.586907,7.655794,0,0,OST:SA:CTPMUHLB_01,Europe/Paris,,OST, +OST:SP:MUHLB_02,1,"Mühlbach",48.58675,7.654898,0,0,OST:SA:CTPMUHLB_01,Europe/Paris,,OST, +OST:SP:MULHO_01,1,"Mulhouse",48.568116,7.757536,0,0,OST:SA:CTPMULHO_01,Europe/Paris,,OST, +OST:SP:MULHO_02,1,"Mulhouse",48.568388,7.75739,0,0,OST:SA:CTPMULHO_01,Europe/Paris,,OST, +OST:SP:MUMAI_01,1,"Mundolsheim Mairie",48.64173,7.714654,0,0,OST:SA:CTPMUMAI_01,Europe/Paris,,OST, +OST:SP:MUMAI_02,1,"Mundolsheim Mairie",48.641742,7.715355,0,0,OST:SA:CTPMUMAI_01,Europe/Paris,,OST, +OST:SP:MURHO_01,1,"Murhof",48.559093,7.711897,0,0,OST:SA:CTPMURHO_01,Europe/Paris,,OST, +OST:SP:MURHO_02,1,"Murhof",48.559054,7.71215,0,0,OST:SA:CTPMURHO_01,Europe/Paris,,OST, +OST:SP:MUSAU_01,1,"Musau",48.561194,7.781334,0,0,OST:SA:CTPMUSAU_01,Europe/Paris,,OST, +OST:SP:MUSAU_02,1,"Musau",48.561319,7.780661,0,0,OST:SA:CTPMUSAU_01,Europe/Paris,,OST, +OST:SP:NEDGR_01,1,"Neudorf Gravière",48.561301,7.763827,0,0,OST:SA:CTPNEDGR_01,Europe/Paris,,OST, +OST:SP:NEDGR_02,1,"Neudorf Gravière",48.561455,7.763831,0,0,OST:SA:CTPNEDGR_01,Europe/Paris,,OST, +OST:SP:NEDMA_01,1,"Neudorf Marché",48.566053,7.758881,0,0,OST:SA:CTPNEDMA_01,Europe/Paris,,OST, +OST:SP:NEDMA_02,1,"Neudorf Marché",48.565959,7.759183,0,0,OST:SA:CTPNEDMA_01,Europe/Paris,,OST, +OST:SP:NEDMA_04,1,"Neudorf Marché",48.565959,7.759183,0,0,OST:SA:CTPNEDMA_01,Europe/Paris,,OST, +OST:SP:NEDMA_05,1,"Neudorf Marché",48.565579,7.75956,0,0,OST:SA:CTPNEDMA_01,Europe/Paris,,OST, +OST:SP:NEHEG_01,1,"Neuhof Eglise",48.536857,7.770598,0,0,OST:SA:CTPNEHEG_01,Europe/Paris,,OST, +OST:SP:NEHEG_02,1,"Neuhof Eglise",48.536907,7.770652,0,0,OST:SA:CTPNEHEG_01,Europe/Paris,,OST, +OST:SP:NEHGA_01,1,"Neuhof Ganzau",48.527302,7.760185,0,0,OST:SA:CTPNEHGA_01,Europe/Paris,,OST, +OST:SP:NEHJM_01,1,"Jean Moulin",48.541437,7.775478,0,0,OST:SA:CTPNEHJM_01,Europe/Paris,,OST, +OST:SP:NEHJM_02,1,"Jean Moulin",48.541675,7.775539,0,0,OST:SA:CTPNEHJM_01,Europe/Paris,,OST, +OST:SP:NEHLO_03,1,"Neuhof Lorient",48.543911,7.788798,0,0,OST:SA:CTPNEHLO_03,Europe/Paris,,OST, +OST:SP:NEHLO_04,1,"Neuhof Lorient",48.544652,7.787587,0,0,OST:SA:CTPNEHLO_03,Europe/Paris,,OST, +OST:SP:NEHST_01,1,"Neuhof Stéphanie",48.527668,7.76947,0,0,OST:SA:CTPNEHST_01,Europe/Paris,,OST, +OST:SP:NEUVE_01,1,"Neuve",48.5916,7.721769,0,0,OST:SA:CTPNEUVE_01,Europe/Paris,,OST, +OST:SP:NEUVE_02,1,"Neuve",48.591508,7.721935,0,0,OST:SA:CTPNEUVE_01,Europe/Paris,,OST, +OST:SP:NICIG_01,1,"Nid de Cigognes",48.572301,7.714615,0,0,OST:SA:CTPNICIG_01,Europe/Paris,,OST, +OST:SP:NICIG_02,1,"Nid de Cigognes",48.572493,7.7155,0,0,OST:SA:CTPNICIG_01,Europe/Paris,,OST, +OST:SP:NIEDE_01,1,"Niederbourg",48.533014,7.720782,0,0,OST:SA:CTPNIEDE_01,Europe/Paris,,OST, +OST:SP:NIEDE_02,1,"Niederbourg",48.533102,7.72117,0,0,OST:SA:CTPNIEDE_01,Europe/Paris,,OST, +OST:SP:NIMAI_01,1,"Niederhausbergen Mairie",48.623253,7.699993,0,0,OST:SA:CTPNIMAI_01,Europe/Paris,,OST, +OST:SP:NIMAI_02,1,"Niederhausbergen Mairie",48.623165,7.700204,0,0,OST:SA:CTPNIMAI_01,Europe/Paris,,OST, +OST:SP:NIOUE_01,1,"Niederhausbergen Centre",48.624849,7.700056,0,0,OST:SA:CTPNIOUE_01,Europe/Paris,,OST, +OST:SP:NIOUE_02,1,"Niederhausbergen Centre",48.625121,7.700212,0,0,OST:SA:CTPNIOUE_01,Europe/Paris,,OST, +OST:SP:NITER_01,1,"Niederhausbergen Ouest",48.626924,7.70147,0,0,OST:SA:CTPNITER_01,Europe/Paris,,OST, +OST:SP:NORDD_01,1,"Nord",48.623185,7.711779,0,0,OST:SA:CTPNORDD_01,Europe/Paris,,OST, +OST:SP:NORDD_02,1,"Nord",48.623137,7.712054,0,0,OST:SA:CTPNORDD_01,Europe/Paris,,OST, +OST:SP:OBEES_01,1,"Oberhausbergen Est",48.602071,7.69502,0,0,OST:SA:CTPOBEES_01,Europe/Paris,,OST, +OST:SP:OBEES_02,1,"Oberhausbergen Est",48.601807,7.695523,0,0,OST:SA:CTPOBEES_01,Europe/Paris,,OST, +OST:SP:OBHEG_01,1,"Oberhausbergen Eglise",48.609943,7.684742,0,0,OST:SA:CTPOBHEG_01,Europe/Paris,,OST, +OST:SP:OBHEG_02,1,"Oberhausbergen Eglise",48.609969,7.684676,0,0,OST:SA:CTPOBHEG_01,Europe/Paris,,OST, +OST:SP:OBHMA_01,1,"Oberhausbergen Mairie",48.606246,7.685544,0,0,OST:SA:CTPOBHMA_01,Europe/Paris,,OST, +OST:SP:OBHMA_02,1,"Oberhausbergen Mairie",48.6058,7.686102,0,0,OST:SA:CTPOBHMA_01,Europe/Paris,,OST, +OST:SP:OBLYO_01,1,"Obernai-Lyon",48.578488,7.73147,0,0,OST:SA:CTPOBLYO_01,Europe/Paris,,OST, +OST:SP:OBLYO_02,1,"Obernai-Lyon",48.578404,7.731643,0,0,OST:SA:CTPOBLYO_01,Europe/Paris,,OST, +OST:SP:OBLYO_03,1,"Obernai-Lyon",48.578147,7.731115,0,0,OST:SA:CTPOBLYO_01,Europe/Paris,,OST, +OST:SP:OBLYO_04,1,"Obernai-Lyon",48.578763,7.731205,0,0,OST:SA:CTPOBLYO_01,Europe/Paris,,OST, +OST:SP:OBSCA_01,1,"Oberschaeffolsheim Canal",48.584685,7.646791,0,0,OST:SA:CTPOBSCA_01,Europe/Paris,,OST, +OST:SP:OBSCA_02,1,"Oberschaeffolsheim Canal",48.584779,7.646879,0,0,OST:SA:CTPOBSCA_01,Europe/Paris,,OST, +OST:SP:OBSER_01,1,"Observatoire",48.580887,7.770566,0,0,OST:SA:CTPOBSER_01,Europe/Paris,,OST, +OST:SP:OBSER_04,1,"Observatoire",48.58151,7.770459,0,0,OST:SA:CTPOBSER_01,Europe/Paris,,OST, +OST:SP:OBSER_05,1,"Observatoire",48.581303,7.769115,0,0,OST:SA:CTPOBSER_01,Europe/Paris,,OST, +OST:SP:OBSER_06,1,"Observatoire",48.581512,7.768798,0,0,OST:SA:CTPOBSER_01,Europe/Paris,,OST, +OST:SP:OBSER_07,1,"Observatoire",48.581512,7.768798,0,0,OST:SA:CTPOBSER_01,Europe/Paris,,OST, +OST:SP:OBSER_08,1,"Observatoire",48.581512,7.768798,0,0,OST:SA:CTPOBSER_01,Europe/Paris,,OST, +OST:SP:OBSER_10,1,"Observatoire (Blvd Leblois)",48.581489,7.770314,0,0,OST:SA:CTPOBSER_10,Europe/Paris,,OST, +OST:SP:OBSER_11,1,"Observatoire",48.581547,7.768799,0,0,OST:SA:CTPOBSER_01,Europe/Paris,,OST, +OST:SP:OBSER_F3,1,"Observatoire (Blvd Leblois)",48.581547,7.768799,0,0,OST:SA:CTPOBSER_10,Europe/Paris,,OST, +OST:SP:OBSER_F4,1,"Observatoire",48.581547,7.77051,0,0,OST:SA:CTPOBSER_01,Europe/Paris,,OST, +OST:SP:OBSMA_01,1,"Oberschaeffolsheim Mairie",48.586076,7.648357,0,0,OST:SA:CTPOBSMA_01,Europe/Paris,,OST, +OST:SP:OBSMA_02,1,"Oberschaeffolsheim Mairie",48.586255,7.649282,0,0,OST:SA:CTPOBSMA_01,Europe/Paris,,OST, +OST:SP:OBSST_01,1,"Oberschaeffolsheim Stade (départ 70)",48.582135,7.647222,0,0,OST:SA:CTPOBSST_01,Europe/Paris,,OST, +OST:SP:OCTRO_01,1,"Octroi",48.580541,7.69525,0,0,OST:SA:CTPOCTRO_01,Europe/Paris,,OST, +OST:SP:OCTRO_02,1,"Octroi",48.580485,7.695138,0,0,OST:SA:CTPOCTRO_01,Europe/Paris,,OST, +OST:SP:OHEGL_01,1,"Ohnheim Eglise",48.489564,7.699663,0,0,OST:SA:CTPOHEGL_01,Europe/Paris,,OST, +OST:SP:OHEGL_02,1,"Ohnheim Eglise",48.489441,7.699813,0,0,OST:SA:CTPOHEGL_01,Europe/Paris,,OST, +OST:SP:ORANG_01,1,"Orangerie",48.591778,7.769587,0,0,OST:SA:CTPORANG_01,Europe/Paris,,OST, +OST:SP:ORANG_02,1,"Orangerie",48.592177,7.769619,0,0,OST:SA:CTPORANG_01,Europe/Paris,,OST, +OST:SP:ORBEY_01,1,"Orbey",48.563116,7.773677,0,0,OST:SA:CTPORBEY_01,Europe/Paris,,OST, +OST:SP:ORBEY_02,1,"Orbey",48.562551,7.773484,0,0,OST:SA:CTPORBEY_01,Europe/Paris,,OST, +OST:SP:ORMES_01,1,"Ormes",48.516078,7.722182,0,0,OST:SA:CTPORMES_01,Europe/Paris,,OST, +OST:SP:ORMES_02,1,"Ormes",48.515974,7.722257,0,0,OST:SA:CTPORMES_01,Europe/Paris,,OST, +OST:SP:OSBEL_01,1,"Ostwald Bellevue",48.539875,7.710259,0,0,OST:SA:CTPOSBEL_01,Europe/Paris,,OST, +OST:SP:OSBEL_02,1,"Ostwald Bellevue",48.53952,7.710295,0,0,OST:SA:CTPOSBEL_01,Europe/Paris,,OST, +OST:SP:OSHVI_01,1,"Ostwald Hotel de Ville",48.550965,7.710415,0,0,OST:SA:CTPOSHVI_01,Europe/Paris,,OST, +OST:SP:OSHVI_02,1,"Ostwald Hotel de Ville",48.55103,7.710206,0,0,OST:SA:CTPOSHVI_01,Europe/Paris,,OST, +OST:SP:OSHVI_05,1,"Ostwald Hôtel de Ville",48.55056,7.710733,0,0,OST:SA:CTPOSHVI_05,Europe/Paris,,OST, +OST:SP:OSHVI_06,1,"Ostwald Hôtel de Ville",48.550428,7.710538,0,0,OST:SA:CTPOSHVI_05,Europe/Paris,,OST, +OST:SP:OSMAI_01,1,"Ostwald Eglise",48.54316,7.709335,0,0,OST:SA:CTPOSMAI_01,Europe/Paris,,OST, +OST:SP:OSMAI_02,1,"Ostwald Eglise",48.543623,7.710267,0,0,OST:SA:CTPOSMAI_01,Europe/Paris,,OST, +OST:SP:PACON_01,1,"Parc du Contades",48.590408,7.756063,0,0,OST:SA:CTPPACON_01,Europe/Paris,,OST, +OST:SP:PACON_02,1,"Parc du Contades",48.590201,7.755885,0,0,OST:SA:CTPPACON_01,Europe/Paris,,OST, +OST:SP:PAELU_03,1,"Paul Eluard",48.590197,7.697824,0,0,OST:SA:CTPPAELU_03,Europe/Paris,,OST, +OST:SP:PAELU_04,1,"Paul Eluard",48.590197,7.697824,0,0,OST:SA:CTPPAELU_03,Europe/Paris,,OST, +OST:SP:PAEUR_01,1,"Conseil de l'Europe",48.593928,7.772143,0,0,OST:SA:CTPCOEUR_01,Europe/Paris,,OST, +OST:SP:PAEUR_02,1,"Conseil de l'Europe",48.593993,7.772047,0,0,OST:SA:CTPCOEUR_01,Europe/Paris,,OST, +OST:SP:PAFET_01,1,"Palais des Fêtes",48.590177,7.749126,0,0,OST:SA:CTPPAFET_01,Europe/Paris,,OST, +OST:SP:PAFET_02,1,"Palais des Fêtes",48.590364,7.748879,0,0,OST:SA:CTPPAFET_01,Europe/Paris,,OST, +OST:SP:PAIXX_01,1,"Paix",48.606317,7.72943,0,0,OST:SA:CTPPAIXX_01,Europe/Paris,,OST, +OST:SP:PAIXX_02,1,"Paix",48.606241,7.729586,0,0,OST:SA:CTPPAIXX_01,Europe/Paris,,OST, +OST:SP:PALER_01,1,"Palerme",48.577743,7.764166,0,0,OST:SA:CTPPALER_01,Europe/Paris,,OST, +OST:SP:PALER_02,1,"Palerme",48.57764,7.763854,0,0,OST:SA:CTPPALER_01,Europe/Paris,,OST, +OST:SP:PAMAL_01,1,"Parc Malraux",48.526941,7.720381,0,0,OST:SA:CTPPAMAL_01,Europe/Paris,,OST, +OST:SP:PAMAL_02,1,"Parc Malraux",48.526743,7.720845,0,0,OST:SA:CTPPAMAL_01,Europe/Paris,,OST, +OST:SP:PAMAL_03,1,"Parc Malraux",48.526298,7.721093,0,0,OST:SA:CTPPAMAL_01,Europe/Paris,,OST, +OST:SP:PAMAL_04,1,"Parc Malraux",48.526368,7.721226,0,0,OST:SA:CTPPAMAL_01,Europe/Paris,,OST, +OST:SP:PAPET_01,1,"Papeterie",48.611602,7.780412,0,0,OST:SA:CTPPAPET_01,Europe/Paris,,OST, +OST:SP:PAPET_02,1,"Papeterie",48.611519,7.78042,0,0,OST:SA:CTPPAPET_01,Europe/Paris,,OST, +OST:SP:PAPET_03,1,"Papeterie",48.611711,7.781641,0,0,OST:SA:CTPPAPET_01,Europe/Paris,,OST, +OST:SP:PAPET_04,1,"Papeterie",48.611673,7.781727,0,0,OST:SA:CTPPAPET_01,Europe/Paris,,OST, +OST:SP:PAPOT_01,1,"Poteries",48.582479,7.691918,0,0,OST:SA:CTPPAPOT_01,Europe/Paris,,OST, +OST:SP:PAPOT_02,1,"Poteries",48.583215,7.690534,0,0,OST:SA:CTPPAPOT_01,Europe/Paris,,OST, +OST:SP:PARCC_01,1,"Parc",48.535033,7.639548,0,0,OST:SA:CTPPARCC_01,Europe/Paris,,OST, +OST:SP:PARCC_02,1,"Parc",48.535178,7.639081,0,0,OST:SA:CTPPARCC_01,Europe/Paris,,OST, +OST:SP:PARLE_01,1,"Parlement Européen",48.599285,7.766551,0,0,OST:SA:CTPPARLE_01,Europe/Paris,,OST, +OST:SP:PARLE_02,1,"Parlement Européen",48.599432,7.767264,0,0,OST:SA:CTPPARLE_01,Europe/Paris,,OST, +OST:SP:PASPO_01,1,"Parc des sports",48.598547,7.694039,0,0,OST:SA:CTPPASPO_01,Europe/Paris,,OST, +OST:SP:PASPO_02,1,"Parc des sports",48.598572,7.694146,0,0,OST:SA:CTPPASPO_01,Europe/Paris,,OST, +OST:SP:PASPO_03,1,"Parc des sports",48.598784,7.695257,0,0,OST:SA:CTPPASPO_01,Europe/Paris,,OST, +OST:SP:PASPO_04,1,"Parc des sports",48.598703,7.695064,0,0,OST:SA:CTPPASPO_01,Europe/Paris,,OST, +OST:SP:PATRO_01,1,"Patronage",48.657165,7.829868,0,0,OST:SA:CTPPATRO_01,Europe/Paris,,OST, +OST:SP:PAWOD_01,1,"Parc Wodli",48.616493,7.75359,0,0,OST:SA:CTPPAWOD_01,Europe/Paris,,OST, +OST:SP:PAWOD_02,1,"Parc Wodli",48.617265,7.754242,0,0,OST:SA:CTPPAWOD_01,Europe/Paris,,OST, +OST:SP:PENEI_01,1,"Perce-neige",48.552421,7.68322,0,0,OST:SA:CTPPENEI_01,Europe/Paris,,OST, +OST:SP:PENEI_02,1,"Perce-neige",48.552054,7.684211,0,0,OST:SA:CTPPENEI_01,Europe/Paris,,OST, +OST:SP:PERDR_01,1,"Perdrix",48.663684,7.72,0,0,OST:SA:CTPPERDR_01,Europe/Paris,,OST, +OST:SP:PERDR_02,1,"Perdrix",48.663972,7.719871,0,0,OST:SA:CTPPERDR_01,Europe/Paris,,OST, +OST:SP:PERDR_03,1,"Perdrix",48.467126,7.737446,0,0,OST:SA:CTPPERDR_03,Europe/Paris,,OST, +OST:SP:PETIT_01,1,"Petite",48.640858,7.710176,0,0,OST:SA:CTPPETIT_01,Europe/Paris,,OST, +OST:SP:PETIT_02,1,"Petite",48.641062,7.710063,0,0,OST:SA:CTPPETIT_01,Europe/Paris,,OST, +OST:SP:PFIST_01,1,"Pfister",48.55469,7.753274,0,0,OST:SA:CTPPFIST_01,Europe/Paris,,OST, +OST:SP:PFIST_02,1,"Pfister",48.55465,7.753378,0,0,OST:SA:CTPPFIST_01,Europe/Paris,,OST, +OST:SP:PHALS_01,1,"Phalsbourg",48.591545,7.749116,0,0,OST:SA:CTPPHALS_01,Europe/Paris,,OST, +OST:SP:PHALS_02,1,"Phalsbourg",48.591341,7.74909,0,0,OST:SA:CTPPHALS_01,Europe/Paris,,OST, +OST:SP:PIGEO_01,1,"Pigeons",48.534783,7.708505,0,0,OST:SA:CTPPIGEO_01,Europe/Paris,,OST, +OST:SP:PIGEO_02,1,"Pigeons",48.535211,7.709129,0,0,OST:SA:CTPPIGEO_01,Europe/Paris,,OST, +OST:SP:PLBOU_01,1,"Plaine des Bouchers",48.562224,7.739611,0,0,OST:SA:CTPPLBOU_01,Europe/Paris,,OST, +OST:SP:PLBOU_02,1,"Plaine des Bouchers",48.562357,7.73953,0,0,OST:SA:CTPPLBOU_01,Europe/Paris,,OST, +OST:SP:PLCOL_01,1,"Place des Colombes",48.53097,7.770667,0,0,OST:SA:CTPPLCOL_01,Europe/Paris,,OST, +OST:SP:PLISL_01,1,"Place d'Islande",48.580339,7.776344,0,0,OST:SA:CTPPLISL_01,Europe/Paris,,OST, +OST:SP:PLISL_03,1,"Place d'Islande",48.580788,7.776812,0,0,OST:SA:CTPPLISL_01,Europe/Paris,,OST, +OST:SP:PLISL_05,1,"Place d'Islande",48.580249,7.776116,0,0,OST:SA:CTPPLISL_01,Europe/Paris,,OST, +OST:SP:PLOCA_01,1,"Plobsheim Canal",48.470873,7.718531,0,0,OST:SA:CTPPLOCA_01,Europe/Paris,,OST, +OST:SP:PLOCA_02,1,"Plobsheim Canal",48.470825,7.718486,0,0,OST:SA:CTPPLOCA_01,Europe/Paris,,OST, +OST:SP:PLOEG_01,1,"Plobsheim Eglise",48.470491,7.722571,0,0,OST:SA:CTPPLOEG_01,Europe/Paris,,OST, +OST:SP:PLOEG_02,1,"Plobsheim Eglise",48.470294,7.723163,0,0,OST:SA:CTPPLOEG_01,Europe/Paris,,OST, +OST:SP:PLOMA_01,1,"Plobsheim Mairie",48.470499,7.725797,0,0,OST:SA:CTPPLOMA_01,Europe/Paris,,OST, +OST:SP:PLOMA_02,1,"Plobsheim Mairie",48.470206,7.726025,0,0,OST:SA:CTPPLOMA_01,Europe/Paris,,OST, +OST:SP:PLOST_01,1,"Plobsheim Est",48.465594,7.735869,0,0,OST:SA:CTPPLOST_01,Europe/Paris,,OST, +OST:SP:PLPIE_01,1,"Place de Pierre",48.590729,7.744946,0,0,OST:SA:CTPPLPIE_01,Europe/Paris,,OST, +OST:SP:PLPIE_02,1,"Place de Pierre",48.590634,7.745337,0,0,OST:SA:CTPPLPIE_01,Europe/Paris,,OST, +OST:SP:PLPIE_03,1,"Place de Pierre",48.590724,7.744452,0,0,OST:SA:CTPPLPIE_01,Europe/Paris,,OST, +OST:SP:PLPIE_04,1,"Place de Pierre",48.590857,7.744452,0,0,OST:SA:CTPPLPIE_01,Europe/Paris,,OST, +OST:SP:PLPIE_06,1,"Place de Pierre",48.590857,7.744452,0,0,OST:SA:CTPPLPIE_01,Europe/Paris,,OST, +OST:SP:PLROM_01,1,"Place des Romains",48.579945,7.703841,0,0,OST:SA:CTPPLROM_01,Europe/Paris,,OST, +OST:SP:PLROM_02,1,"Place des Romains",48.579872,7.703752,0,0,OST:SA:CTPPLROM_01,Europe/Paris,,OST, +OST:SP:PLWAT_01,1,"Place de Wattwiller",48.5608,7.783982,0,0,OST:SA:CTPPLWAT_01,Europe/Paris,,OST, +OST:SP:PLWAT_02,1,"Place de Wattwiller",48.560576,7.784425,0,0,OST:SA:CTPPLWAT_01,Europe/Paris,,OST, +OST:SP:POAPI_01,1,"Pôle API",48.525619,7.736521,0,0,OST:SA:CTPPOAPI_01,Europe/Paris,,OST, +OST:SP:POAPI_02,1,"Pôle API",48.526352,7.735236,0,0,OST:SA:CTPPOAPI_01,Europe/Paris,,OST, +OST:SP:POAUT_01,1,"Port Autonome Sud",48.516015,7.775377,0,0,OST:SA:CTPPOAUT_01,Europe/Paris,,OST, +OST:SP:POINC_01,1,"Poincaré",48.614067,7.732811,0,0,OST:SA:CTPPOINC_01,Europe/Paris,,OST, +OST:SP:POINC_02,1,"Poincaré",48.614011,7.73298,0,0,OST:SA:CTPPOINC_01,Europe/Paris,,OST, +OST:SP:POKUS_01,1,"Pont Kuss",48.58321,7.738449,0,0,OST:SA:CTPPOKUS_01,Europe/Paris,,OST, +OST:SP:POKUS_02,1,"Pont Kuss",48.583471,7.739817,0,0,OST:SA:CTPPOKUS_01,Europe/Paris,,OST, +OST:SP:POLYG_01,1,"Polygone",48.55758,7.76613,0,0,OST:SA:CTPPOLYG_01,Europe/Paris,,OST, +OST:SP:POLYG_02,1,"Polygone",48.55785,7.766234,0,0,OST:SA:CTPPOLYG_01,Europe/Paris,,OST, +OST:SP:POPEA_01,1,"Pont du Péage",48.518397,7.702528,0,0,OST:SA:CTPPOPEA_01,Europe/Paris,,OST, +OST:SP:POPEA_02,1,"Pont du Péage",48.518807,7.703401,0,0,OST:SA:CTPPOPEA_01,Europe/Paris,,OST, +OST:SP:POPHA_01,1,"Robertsau Pont Phario",48.612932,7.768666,0,0,OST:SA:CTPPOPHA_01,Europe/Paris,,OST, +OST:SP:POPHA_02,1,"Robertsau Pont Phario",48.61262,7.767998,0,0,OST:SA:CTPPOPHA_01,Europe/Paris,,OST, +OST:SP:POPHA_03,1,"Pont Phario",48.613058,7.767205,0,0,OST:SA:CTPPOPHA_03,Europe/Paris,,OST, +OST:SP:POPHA_04,1,"Pont Phario",48.612858,7.76714,0,0,OST:SA:CTPPOPHA_03,Europe/Paris,,OST, +OST:SP:POPHA_07,1,"Robertsau Pont Phario",48.61322,7.769182,0,0,OST:SA:CTPPOPHA_01,Europe/Paris,,OST, +OST:SP:POPIE_01,1,"Pont de Pierre",48.586421,7.746276,0,0,OST:SA:CTPPOPIE_01,Europe/Paris,,OST, +OST:SP:POPIE_02,1,"Pont de Pierre",48.586874,7.746073,0,0,OST:SA:CTPPOPIE_01,Europe/Paris,,OST, +OST:SP:POSCH_03,1,"Pont Schuhansen",48.541293,7.762415,0,0,OST:SA:CTPPOSCH_03,Europe/Paris,,OST, +OST:SP:POSCH_04,1,"Pont Schuhansen",48.541369,7.762431,0,0,OST:SA:CTPPOSCH_03,Europe/Paris,,OST, +OST:SP:POSNC_01,1,"Pont S.N.C.F.",48.66784,7.717008,0,0,OST:SA:CTPPOSNC_01,Europe/Paris,,OST, +OST:SP:POSNC_02,1,"Pont S.N.C.F.",48.667792,7.716908,0,0,OST:SA:CTPPOSNC_01,Europe/Paris,,OST, +OST:SP:POTER_03,1,"Poteries",48.584149,7.693418,0,0,OST:SA:CTPPAPOT_01,Europe/Paris,,OST, +OST:SP:POTER_04,1,"Poteries",48.584279,7.692918,0,0,OST:SA:CTPPAPOT_01,Europe/Paris,,OST, +OST:SP:POTER_05,1,"Poteries",48.583483,7.69215,0,0,OST:SA:CTPPAPOT_01,Europe/Paris,,OST, +OST:SP:POVOS_01,1,"Pont des Vosges",48.587234,7.75962,0,0,OST:SA:CTPPOVOS_01,Europe/Paris,,OST, +OST:SP:POVOS_02,1,"Pont des Vosges",48.587749,7.758204,0,0,OST:SA:CTPPOVOS_01,Europe/Paris,,OST, +OST:SP:PRESS_01,1,"Prés",48.560065,7.691988,0,0,OST:SA:CTPPRESS_01,Europe/Paris,,OST, +OST:SP:PRESS_02,1,"Prés",48.55992,7.691575,0,0,OST:SA:CTPPRESS_01,Europe/Paris,,OST, +OST:SP:PROVE_05,1,"Provence",48.546424,7.75815,0,0,OST:SA:CTPPROVE_05,Europe/Paris,,OST, +OST:SP:PROVE_06,1,"Provence",48.546466,7.758244,0,0,OST:SA:CTPPROVE_05,Europe/Paris,,OST, +OST:SP:PRRHI_03,1,"Port du Rhin",48.572745,7.795144,0,0,OST:SA:CTPPRRHI_03,Europe/Paris,,OST, +OST:SP:PRRHI_04,1,"Port du Rhin",48.572709,7.795157,0,0,OST:SA:CTPPRRHI_03,Europe/Paris,,OST, +OST:SP:PRRHI_05,1,"Port du Rhin",48.572379,7.794804,0,0,OST:SA:CTPPRRHI_03,Europe/Paris,,OST, +OST:SP:PRRHI_06,1,"Port du Rhin",48.572372,7.79487,0,0,OST:SA:CTPPRRHI_03,Europe/Paris,,OST, +OST:SP:PRRTIR_1,1,"Port du Rhin Tiroir 1",48.576559,7.787691,0,0,OST:SA:CTPPRRTIR_1,Europe/Paris,,OST, +OST:SP:PRUNE_01,1,"Prunelliers",48.614747,7.734879,0,0,OST:SA:CTPPRUNE_01,Europe/Paris,,OST, +OST:SP:PRUNE_02,1,"Prunelliers",48.614716,7.734531,0,0,OST:SA:CTPPRUNE_01,Europe/Paris,,OST, +OST:SP:PTHOP_01,1,"Porte de l'Hôpital",48.578068,7.750463,0,0,OST:SA:CTPPTHOP_01,Europe/Paris,,OST, +OST:SP:PTHOP_02,1,"Porte de l'Hôpital",48.578183,7.750914,0,0,OST:SA:CTPPTHOP_01,Europe/Paris,,OST, +OST:SP:PTHOP_03,1,"Porte de l'Hôpital",48.578037,7.750289,0,0,OST:SA:CTPPTHOP_01,Europe/Paris,,OST, +OST:SP:PTHOP_04,1,"Porte de l'Hôpital",48.578144,7.750047,0,0,OST:SA:CTPPTHOP_01,Europe/Paris,,OST, +OST:SP:PTHOP_09,1,"Porte de l'Hôpital",48.578144,7.750047,0,0,OST:SA:CTPPTHOP_01,Europe/Paris,,OST, +OST:SP:PULVE_01,1,"Pulverlaechel",48.488546,7.724408,0,0,OST:SA:CTPPULVE_01,Europe/Paris,,OST, +OST:SP:PULVE_02,1,"Pulverlaechel",48.488676,7.725575,0,0,OST:SA:CTPPULVE_01,Europe/Paris,,OST, +OST:SP:QUQUI_01,1,"Quartier des Quinze",48.589207,7.782672,0,0,OST:SA:CTPQUQUI_01,Europe/Paris,,OST, +OST:SP:QUQUI_02,1,"Quartier des Quinze",48.589279,7.782724,0,0,OST:SA:CTPQUQUI_01,Europe/Paris,,OST, +OST:SP:RADOR_01,1,"Raisin d'Or",48.633128,7.753963,0,0,OST:SA:CTPRADOR_01,Europe/Paris,,OST, +OST:SP:RADOR_02,1,"Raisin d'Or",48.632916,7.754073,0,0,OST:SA:CTPRADOR_01,Europe/Paris,,OST, +OST:SP:RATHS_01,1,"Rathsamhausen",48.480877,7.712151,0,0,OST:SA:CTPRATHS_01,Europe/Paris,,OST, +OST:SP:RATHS_02,1,"Rathsamhausen",48.481156,7.712212,0,0,OST:SA:CTPRATHS_01,Europe/Paris,,OST, +OST:SP:REMAI_01,1,"Reichstett Mairie",48.648528,7.753378,0,0,OST:SA:CTPREMAI_01,Europe/Paris,,OST, +OST:SP:REMBR_01,1,"Rembrandt",48.566617,7.723507,0,0,OST:SA:CTPREMBR_01,Europe/Paris,,OST, +OST:SP:REMBR_02,1,"Rembrandt",48.566571,7.723692,0,0,OST:SA:CTPREMBR_01,Europe/Paris,,OST, +OST:SP:REPUB_01,1,"République",48.586592,7.75384,0,0,OST:SA:CTPREPUB_01,Europe/Paris,,OST, +OST:SP:REPUB_02,1,"République",48.586767,7.752724,0,0,OST:SA:CTPREPUB_01,Europe/Paris,,OST, +OST:SP:REPUB_03,1,"République",48.586593,7.753809,0,0,OST:SA:CTPREPUB_01,Europe/Paris,,OST, +OST:SP:REPUB_05,1,"République",48.586457,7.7537,0,0,OST:SA:CTPREPUB_01,Europe/Paris,,OST, +OST:SP:REPUB_06,1,"République",48.586604,7.754792,0,0,OST:SA:CTPREPUB_01,Europe/Paris,,OST, +OST:SP:REPUB_07,1,"République",48.585845,7.755186,0,0,OST:SA:CTPREPUB_01,Europe/Paris,,OST, +OST:SP:RHINN_01,1,"Rhin",48.467241,7.731191,0,0,OST:SA:CTPRHINN_01,Europe/Paris,,OST, +OST:SP:RHINN_02,1,"Rhin",48.466884,7.731585,0,0,OST:SA:CTPRHINN_01,Europe/Paris,,OST, +OST:SP:RHTOR_01,1,"Rhin Tortu",48.553454,7.757868,0,0,OST:SA:CTPRHTOR_01,Europe/Paris,,OST, +OST:SP:RHTOR_02,1,"Rhin Tortu",48.553246,7.757973,0,0,OST:SA:CTPRHTOR_01,Europe/Paris,,OST, +OST:SP:RIAAR_01,1,"Rives de l'Aar",48.60033,7.754237,0,0,OST:SA:CTPRIAAR_01,Europe/Paris,,OST, +OST:SP:RIAAR_02,1,"Rives de l'Aar",48.600193,7.754459,0,0,OST:SA:CTPRIAAR_01,Europe/Paris,,OST, +OST:SP:RIAAR_03,1,"Rives de l'Aar",48.600851,7.754612,0,0,OST:SA:CTPRIAAR_01,Europe/Paris,,OST, +OST:SP:RIAAR_04,1,"Rives de l'Aar",48.600661,7.754593,0,0,OST:SA:CTPRIAAR_01,Europe/Paris,,OST, +OST:SP:RIEHL_01,1,"Riehl",48.542845,7.766073,0,0,OST:SA:CTPRIEHL_01,Europe/Paris,,OST, +OST:SP:RIEHL_02,1,"Riehl",48.542953,7.766065,0,0,OST:SA:CTPRIEHL_01,Europe/Paris,,OST, +OST:SP:RIETH_03,1,"Rieth",48.601769,7.722937,0,0,OST:SA:CTPRIETH_03,Europe/Paris,,OST, +OST:SP:RIETH_04,1,"Rieth",48.601623,7.722782,0,0,OST:SA:CTPRIETH_03,Europe/Paris,,OST, +OST:SP:RIETH_05,1,"Rieth",48.602058,7.722658,0,0,OST:SA:CTPRIETH_03,Europe/Paris,,OST, +OST:SP:RIETH_06,1,"Rieth",48.602104,7.722728,0,0,OST:SA:CTPRIETH_03,Europe/Paris,,OST, +OST:SP:ROBOE_01,1,"Robertsau Boecklin",48.597944,7.777026,0,0,OST:SA:CTPBOECK_01,Europe/Paris,,OST, +OST:SP:ROBOE_02,1,"Robertsau Boecklin",48.598153,7.77743,0,0,OST:SA:CTPBOECK_01,Europe/Paris,,OST, +OST:SP:ROBOE_03,1,"Robertsau Boecklin",48.597708,7.776215,0,0,OST:SA:CTPBOECK_01,Europe/Paris,,OST, +OST:SP:ROBOE_04,1,"Robertsau Boecklin",48.597524,7.776142,0,0,OST:SA:CTPBOECK_01,Europe/Paris,,OST, +OST:SP:ROBOE_05,1,"Robertsau Boecklin",48.598199,7.779055,0,0,OST:SA:CTPBOECK_01,Europe/Paris,,OST, +OST:SP:ROBOE_06,1,"Robertsau Boecklin",48.598199,7.779055,0,0,OST:SA:CTPBOECK_01,Europe/Paris,,OST, +OST:SP:ROBOE_07,1,"Robertsau Boecklin",48.598422,7.778196,0,0,OST:SA:CTPBOECK_01,Europe/Paris,,OST, +OST:SP:ROBOE_08,1,"Robertsau Boecklin",48.598352,7.778287,0,0,OST:SA:CTPBOECK_01,Europe/Paris,,OST, +OST:SP:ROCHA_01,1,"Robertsau Chasseurs",48.623492,7.786523,0,0,OST:SA:CTPROCHA_01,Europe/Paris,,OST, +OST:SP:ROCHA_F1,1,"Robertsau Chasseurs",48.623535,7.786521,0,0,OST:SA:CTPROCHA_01,Europe/Paris,,OST, +OST:SP:ROCHE_01,1,"Rochechouart",48.649565,7.823183,0,0,OST:SA:CTPROCHE_01,Europe/Paris,,OST, +OST:SP:ROCHE_02,1,"Rochechouart",48.649349,7.823038,0,0,OST:SA:CTPROCHE_01,Europe/Paris,,OST, +OST:SP:ROCHF_01,1,"Rochefort",48.521231,7.782139,0,0,OST:SA:CTPROCHF_01,Europe/Paris,,OST, +OST:SP:ROCHF_02,1,"Rochefort",48.521245,7.782009,0,0,OST:SA:CTPROCHF_01,Europe/Paris,,OST, +OST:SP:RODIN_01,1,"Rodin",48.613158,7.68871,0,0,OST:SA:CTPRODIN_01,Europe/Paris,,OST, +OST:SP:RODIN_02,1,"Rodin",48.613193,7.688692,0,0,OST:SA:CTPRODIN_01,Europe/Paris,,OST, +OST:SP:ROEGL_01,1,"Robertsau Eglise",48.602973,7.78336,0,0,OST:SA:CTPROEGL_01,Europe/Paris,,OST, +OST:SP:ROEGL_02,1,"Robertsau Eglise",48.603266,7.783623,0,0,OST:SA:CTPROEGL_01,Europe/Paris,,OST, +OST:SP:ROEGL_03,1,"Robertsau Eglise",48.603033,7.783442,0,0,OST:SA:CTPROEGL_01,Europe/Paris,,OST, +OST:SP:ROEGL_04,1,"Robertsau Eglise",48.603308,7.783666,0,0,OST:SA:CTPROEGL_01,Europe/Paris,,OST, +OST:SP:ROETH_01,1,"Roethig",48.564499,7.706775,0,0,OST:SA:CTPROETH_01,Europe/Paris,,OST, +OST:SP:ROETH_05,1,"Roethig",48.564667,7.706195,0,0,OST:SA:CTPROETH_01,Europe/Paris,,OST, +OST:SP:ROETH_06,1,"Roethig",48.564563,7.705836,0,0,OST:SA:CTPROETH_01,Europe/Paris,,OST, +OST:SP:ROETH_09,1,"Roethig",48.564563,7.705836,0,0,OST:SA:CTPROETH_01,Europe/Paris,,OST, +OST:SP:ROHAN_01,1,"Route de Hangenbieten",48.560772,7.59043,0,0,OST:SA:CTPROHAN_01,Europe/Paris,,OST, +OST:SP:ROHAN_02,1,"Route de Hangenbieten",48.560709,7.590417,0,0,OST:SA:CTPROHAN_01,Europe/Paris,,OST, +OST:SP:ROHME_03,1,"Rohmer",48.527903,7.716318,0,0,OST:SA:CTPROHME_03,Europe/Paris,,OST, +OST:SP:ROHME_04,1,"Rohmer",48.527979,7.716442,0,0,OST:SA:CTPROHME_03,Europe/Paris,,OST, +OST:SP:ROHOL_01,1,"Route de Holtzheim",48.555572,7.617609,0,0,OST:SA:CTPROHOL_01,Europe/Paris,,OST, +OST:SP:ROHOL_02,1,"Route de Holtzheim",48.555572,7.617675,0,0,OST:SA:CTPROHOL_01,Europe/Paris,,OST, +OST:SP:ROMAI_01,1,"Romains",48.57844,7.701089,0,0,OST:SA:CTPROMAI_01,Europe/Paris,,OST, +OST:SP:ROMAI_02,1,"Romains",48.578482,7.700794,0,0,OST:SA:CTPROMAI_01,Europe/Paris,,OST, +OST:SP:ROMEE_01,1,"Rome",48.577258,7.768393,0,0,OST:SA:CTPROMEE_01,Europe/Paris,,OST, +OST:SP:ROMEE_02,1,"Rome",48.577192,7.76816,0,0,OST:SA:CTPROMEE_01,Europe/Paris,,OST, +OST:SP:ROREN_02,1,"Robertsau Renaissance",48.61467,7.790165,0,0,OST:SA:CTPROREN_02,Europe/Paris,,OST, +OST:SP:ROREN_03,1,"Robertsau Renaissance",48.614956,7.790047,0,0,OST:SA:CTPROREN_02,Europe/Paris,,OST, +OST:SP:ROREU_01,1,"Neuhof Rodolphe Reuss",48.546108,7.766902,0,0,OST:SA:CTPROREU_01,Europe/Paris,,OST, +OST:SP:ROREU_02,1,"Neuhof Rodolphe Reuss",48.546228,7.766717,0,0,OST:SA:CTPROREU_01,Europe/Paris,,OST, +OST:SP:ROREU_03,1,"Neuhof Rodolphe Reuss",48.545654,7.765674,0,0,OST:SA:CTPROREU_01,Europe/Paris,,OST, +OST:SP:ROREU_04,1,"Neuhof Rodolphe Reuss",48.545603,7.765591,0,0,OST:SA:CTPROREU_01,Europe/Paris,,OST, +OST:SP:ROREU_05,1,"Neuhof Rodolphe Reuss",48.54651,7.766977,0,0,OST:SA:CTPROREU_01,Europe/Paris,,OST, +OST:SP:ROREU_06,1,"Neuhof Rodolphe Reuss",48.546496,7.766594,0,0,OST:SA:CTPROREU_01,Europe/Paris,,OST, +OST:SP:ROSEA_01,1,"Roseaux",48.518004,7.718848,0,0,OST:SA:CTPROSEA_01,Europe/Paris,,OST, +OST:SP:ROSEA_02,1,"Roseaux",48.518296,7.719038,0,0,OST:SA:CTPROSEA_01,Europe/Paris,,OST, +OST:SP:ROSTA_01,1,"Robertsau Sainte Anne",48.617298,7.788242,0,0,OST:SA:CTPROSTA_01,Europe/Paris,,OST, +OST:SP:ROSTA_02,1,"Robertsau Sainte Anne",48.617589,7.788564,0,0,OST:SA:CTPROSTA_01,Europe/Paris,,OST, +OST:SP:ROSTA_03,1,"Robertsau Sainte Anne (terminus 15a-30)",48.616921,7.788108,0,0,OST:SA:CTPROSTA_03,Europe/Paris,,OST, +OST:SP:ROTON_05,1,"Rotonde",48.591836,7.725191,0,0,OST:SA:CTPROTON_05,Europe/Paris,,OST, +OST:SP:ROTON_06,1,"Rotonde",48.591909,7.72474,0,0,OST:SA:CTPROTON_05,Europe/Paris,,OST, +OST:SP:ROTON_11,1,"Rotonde",48.591908,7.72554,0,0,OST:SA:CTPROTON_05,Europe/Paris,,OST, +OST:SP:ROYAN_01,1,"Royan",48.51854,7.778294,0,0,OST:SA:CTPROYAN_01,Europe/Paris,,OST, +OST:SP:ROYAN_02,1,"Royan",48.518616,7.77834,0,0,OST:SA:CTPROYAN_01,Europe/Paris,,OST, +OST:SP:RTWAN_01,1,"Route de La Wantzenau",48.624275,7.754655,0,0,OST:SA:CTPRTWAN_01,Europe/Paris,,OST, +OST:SP:RTWAN_02,1,"Route de La Wantzenau",48.623926,7.754988,0,0,OST:SA:CTPRTWAN_01,Europe/Paris,,OST, +OST:SP:RTWOL_01,1,"Route de Wolfisheim",48.584255,7.679092,0,0,OST:SA:CTPRTWOL_01,Europe/Paris,,OST, +OST:SP:RTWOL_02,1,"Route de Wolfisheim",48.584319,7.678829,0,0,OST:SA:CTPRTWOL_01,Europe/Paris,,OST, +OST:SP:RUCHA_01,1,"Rue des Champs",48.644156,7.821515,0,0,OST:SA:CTPRUCHA_01,Europe/Paris,,OST, +OST:SP:RUCHA_02,1,"Rue des Champs",48.643894,7.821026,0,0,OST:SA:CTPRUCHA_01,Europe/Paris,,OST, +OST:SP:RUCHR_01,1,"Rue des Charmilles",48.512623,7.717703,0,0,OST:SA:CTPRUCHR_01,Europe/Paris,,OST, +OST:SP:RUCHR_02,1,"Rue des Charmilles",48.512922,7.717883,0,0,OST:SA:CTPRUCHR_01,Europe/Paris,,OST, +OST:SP:RUECK_01,1,"Rue d'Eckbolsheim",48.564086,7.690588,0,0,OST:SA:CTPRUECK_01,Europe/Paris,,OST, +OST:SP:RUECK_02,1,"Rue d'Eckbolsheim",48.563999,7.690558,0,0,OST:SA:CTPRUECK_01,Europe/Paris,,OST, +OST:SP:RUETA_03,1,"Rue de l'Etang",48.49607,7.687013,0,0,OST:SA:CTPRUETA_03,Europe/Paris,,OST, +OST:SP:RUETA_04,1,"Rue de l'Etang",48.496039,7.687125,0,0,OST:SA:CTPRUETA_03,Europe/Paris,,OST, +OST:SP:RUFOR_03,1,"Rue du Fort",48.529792,7.690381,0,0,OST:SA:CTPRUFOR_03,Europe/Paris,,OST, +OST:SP:RUFOR_04,1,"Rue du Fort",48.530148,7.690424,0,0,OST:SA:CTPRUFOR_03,Europe/Paris,,OST, +OST:SP:RUGAR_01,1,"Rue de la Gare",48.61054,7.750744,0,0,OST:SA:CTPRUGAR_01,Europe/Paris,,OST, +OST:SP:RUGAR_02,1,"Rue de la Gare",48.610917,7.750954,0,0,OST:SA:CTPRUGAR_01,Europe/Paris,,OST, +OST:SP:RUHOE_01,1,"Rue de Hoenheim",48.624298,7.705576,0,0,OST:SA:CTPRUHOE_01,Europe/Paris,,OST, +OST:SP:RUHOE_02,1,"Rue de Hoenheim",48.62389,7.706791,0,0,OST:SA:CTPRUHOE_01,Europe/Paris,,OST, +OST:SP:RUJUI_01,1,"Rue des Juifs",48.554523,7.679926,0,0,OST:SA:CTPRUJUI_01,Europe/Paris,,OST, +OST:SP:RUJUI_02,1,"Rue des Juifs",48.554239,7.679948,0,0,OST:SA:CTPRUJUI_01,Europe/Paris,,OST, +OST:SP:RUMUN_01,1,"Rue de Mundolsheim",48.647809,7.702229,0,0,OST:SA:CTPRUMUN_01,Europe/Paris,,OST, +OST:SP:RUMUN_02,1,"Rue de Mundolsheim",48.647765,7.702199,0,0,OST:SA:CTPRUMUN_01,Europe/Paris,,OST, +OST:SP:SALMM_01,1,"Salm",48.563776,7.708547,0,0,OST:SA:CTPSALMM_01,Europe/Paris,,OST, +OST:SP:SCBAT_01,1,"Schiltigheim Campus Battement",48.610088,7.705189,0,0,OST:SA:CTPSCBAT_01,Europe/Paris,,OST, +OST:SP:SCCAM_01,1,"Schiltigheim Campus",48.610088,7.705189,0,0,OST:SA:CTPSCCAM_01,Europe/Paris,,OST, +OST:SP:SCCAM_02,1,"Schiltigheim Campus",48.610104,7.705069,0,0,OST:SA:CTPSCCAM_01,Europe/Paris,,OST, +OST:SP:SCHAA_01,1,"Schaal",48.487131,7.715366,0,0,OST:SA:CTPSCHAA_01,Europe/Paris,,OST, +OST:SP:SCHAA_02,1,"Schaal",48.487815,7.715471,0,0,OST:SA:CTPSCHAA_01,Europe/Paris,,OST, +OST:SP:SCHEI_01,1,"Scheidstein",48.49797,7.731188,0,0,OST:SA:CTPSCHEI_01,Europe/Paris,,OST, +OST:SP:SCHEI_02,1,"Scheidstein",48.497782,7.731033,0,0,OST:SA:CTPSCHEI_01,Europe/Paris,,OST, +OST:SP:SCHLE_01,1,"Schiltigheim le Marais",48.608714,7.767612,0,0,OST:SA:CTPSCHLE_01,Europe/Paris,,OST, +OST:SP:SCHLU_01,1,"Schluthfeld",48.568488,7.751662,0,0,OST:SA:CTPSCHLU_01,Europe/Paris,,OST, +OST:SP:SCHLU_02,1,"Schluthfeld",48.568694,7.751729,0,0,OST:SA:CTPSCHLU_01,Europe/Paris,,OST, +OST:SP:SCHMA_01,1,"Schiltigheim Mairie",48.605238,7.74795,0,0,OST:SA:CTPSCHMA_01,Europe/Paris,,OST, +OST:SP:SCHMA_02,1,"Schiltigheim Mairie",48.604824,7.747766,0,0,OST:SA:CTPSCHMA_01,Europe/Paris,,OST, +OST:SP:SCHNO_01,1,"Schnokeloch",48.579054,7.712191,0,0,OST:SA:CTPSCHNO_01,Europe/Paris,,OST, +OST:SP:SCHNO_02,1,"Schnokeloch",48.579054,7.712534,0,0,OST:SA:CTPSCHNO_01,Europe/Paris,,OST, +OST:SP:SCHNO_04,1,"Schnokeloch",48.579554,7.712834,0,0,OST:SA:CTPSCHNO_01,Europe/Paris,,OST, +OST:SP:SCHOT_01,1,"Schott",48.600394,7.780524,0,0,OST:SA:CTPSCHOT_01,Europe/Paris,,OST, +OST:SP:SCHOT_02,1,"Schott",48.600457,7.780565,0,0,OST:SA:CTPSCHOT_01,Europe/Paris,,OST, +OST:SP:SCHOT_03,1,"Schott",48.600392,7.781078,0,0,OST:SA:CTPSCHOT_01,Europe/Paris,,OST, +OST:SP:SCHUL_01,1,"Schulmeister",48.549876,7.75263,0,0,OST:SA:CTPSCHUL_01,Europe/Paris,,OST, +OST:SP:SCHUL_02,1,"Schulmeister",48.550152,7.752265,0,0,OST:SA:CTPSCHUL_01,Europe/Paris,,OST, +OST:SP:SDMWA_01,1,"Stade Michel Walter",48.542612,7.771194,0,0,OST:SA:CTPSDMWA_01,Europe/Paris,,OST, +OST:SP:SDMWA_02,1,"Stade Michel Walter",48.543013,7.771663,0,0,OST:SA:CTPSDMWA_01,Europe/Paris,,OST, +OST:SP:SENEE_01,1,"Séné",48.516857,7.6554,0,0,OST:SA:CTPSENEE_01,Europe/Paris,,OST, +OST:SP:SENEE_02,1,"Séné",48.516731,7.653442,0,0,OST:SA:CTPSENEE_01,Europe/Paris,,OST, +OST:SP:SESOC_03,1,"Sécurité Sociale",48.575949,7.75657,0,0,OST:SA:CTPSESOC_03,Europe/Paris,,OST, +OST:SP:SESOC_04,1,"Sécurité Sociale",48.57609,7.756662,0,0,OST:SA:CTPSESOC_03,Europe/Paris,,OST, +OST:SP:SHAKE_01,1,"Shakespeare",48.594623,7.703932,0,0,OST:SA:CTPSHAKE_01,Europe/Paris,,OST, +OST:SP:SHAKE_02,1,"Shakespeare",48.594493,7.703905,0,0,OST:SA:CTPSHAKE_01,Europe/Paris,,OST, +OST:SP:SOCAN_01,1,"Souffelweyersheim Canal(Départ)",48.634362,7.751383,0,0,OST:SA:CTPSOCAN_01,Europe/Paris,,OST, +OST:SP:SOCAN_02,1,"Souffelweyersheim Canal",48.634165,7.75171,0,0,OST:SA:CTPSOCAN_02,Europe/Paris,,OST, +OST:SP:SOCAN_03,1,"Souffelweyersheim Canal",48.63405,7.75189,0,0,OST:SA:CTPSOCAN_02,Europe/Paris,,OST, +OST:SP:SOCEN_01,1,"Souffelweyersheim Centre",48.634281,7.737773,0,0,OST:SA:CTPSOCEN_01,Europe/Paris,,OST, +OST:SP:SOCEN_02,1,"Souffelweyersheim Centre",48.634532,7.736475,0,0,OST:SA:CTPSOCEN_01,Europe/Paris,,OST, +OST:SP:SOECO_01,1,"Souffelweyersheim Ecole",48.63351,7.741402,0,0,OST:SA:CTPSOECO_01,Europe/Paris,,OST, +OST:SP:SOECO_02,1,"Souffelweyersheim Ecole",48.633529,7.7407,0,0,OST:SA:CTPSOECO_01,Europe/Paris,,OST, +OST:SP:SOULT_01,1,"Soultz",48.565258,7.778442,0,0,OST:SA:CTPSOULT_01,Europe/Paris,,OST, +OST:SP:SOULT_02,1,"Soultz",48.565438,7.778539,0,0,OST:SA:CTPSOULT_01,Europe/Paris,,OST, +OST:SP:SPORT_01,1,"Sports",48.564205,7.693828,0,0,OST:SA:CTPSPORT_01,Europe/Paris,,OST, +OST:SP:SPORT_02,1,"Sports",48.56418,7.694035,0,0,OST:SA:CTPSPORT_01,Europe/Paris,,OST, +OST:SP:SQCHA_01,1,"Square du Château",48.603645,7.750283,0,0,OST:SA:CTPSQCHA_01,Europe/Paris,,OST, +OST:SP:SQCHA_02,1,"Square du Château",48.603349,7.75005,0,0,OST:SA:CTPSQCHA_01,Europe/Paris,,OST, +OST:SP:STANT_01,1,"Saint Antoine",48.59782,7.709538,0,0,OST:SA:CTPSTANT_01,Europe/Paris,,OST, +OST:SP:STANT_02,1,"Saint Antoine",48.597729,7.709581,0,0,OST:SA:CTPSTANT_01,Europe/Paris,,OST, +OST:SP:STATI_01,1,"Station de Pompage",48.507661,7.609647,0,0,OST:SA:CTPSTATI_01,Europe/Paris,,OST, +OST:SP:STATI_02,1,"Station de Pompage",48.508434,7.611007,0,0,OST:SA:CTPSTATI_01,Europe/Paris,,OST, +OST:SP:STAUR_01,1,"Sainte Aurélie",48.581757,7.732151,0,0,OST:SA:CTPSTAUR_01,Europe/Paris,,OST, +OST:SP:STAUR_02,1,"Sainte Aurélie",48.581439,7.732251,0,0,OST:SA:CTPSTAUR_01,Europe/Paris,,OST, +OST:SP:STCHR_01,1,"Saint Christophe",48.551061,7.766293,0,0,OST:SA:CTPSTCHR_01,Europe/Paris,,OST, +OST:SP:STCHR_02,1,"Saint Christophe",48.55122,7.766451,0,0,OST:SA:CTPSTCHR_01,Europe/Paris,,OST, +OST:SP:STCHR_03,1,"Saint Christophe",48.55145,7.767001,0,0,OST:SA:CTPSTCHR_01,Europe/Paris,,OST, +OST:SP:STCHR_04,1,"Saint Christophe",48.551854,7.766395,0,0,OST:SA:CTPSTCHR_01,Europe/Paris,,OST, +OST:SP:STCHR_05,1,"Saint Christophe",48.551313,7.765966,0,0,OST:SA:CTPSTCHR_01,Europe/Paris,,OST, +OST:SP:STCHR_06,1,"Saint Christophe",48.551352,7.766095,0,0,OST:SA:CTPSTCHR_01,Europe/Paris,,OST, +OST:SP:STFLO_03,1,"Saint Florent",48.591613,7.720414,0,0,OST:SA:CTPSTFLO_03,Europe/Paris,,OST, +OST:SP:STFLO_04,1,"Saint Florent",48.591581,7.720143,0,0,OST:SA:CTPSTFLO_03,Europe/Paris,,OST, +OST:SP:STFLO_06,1,"Eglise Saint Florent",48.595814,7.722023,0,0,OST:SA:CTPSTFLO_06,Europe/Paris,,OST, +OST:SP:STFLO_07,1,"Eglise Saint Florent",48.595803,7.722184,0,0,OST:SA:CTPSTFLO_06,Europe/Paris,,OST, +OST:SP:STFRA_01,1,"Saint François",48.603533,7.787217,0,0,OST:SA:CTPSTFRA_01,Europe/Paris,,OST, +OST:SP:STFRA_02,1,"Saint François",48.603686,7.787381,0,0,OST:SA:CTPSTFRA_01,Europe/Paris,,OST, +OST:SP:STGAL_01,1,"Saint Gall",48.580237,7.719905,0,0,OST:SA:CTPSTGAL_01,Europe/Paris,,OST, +OST:SP:STGAL_02,1,"Saint Gall",48.580236,7.72036,0,0,OST:SA:CTPSTGAL_01,Europe/Paris,,OST, +OST:SP:STGUI_01,1,"Saint Guillaume",48.582835,7.75752,0,0,OST:SA:CTPSTGUI_01,Europe/Paris,,OST, +OST:SP:STGUI_02,1,"Saint Guillaume",48.582801,7.757623,0,0,OST:SA:CTPSTGUI_01,Europe/Paris,,OST, +OST:SP:STHEL_01,1,"Sainte Hélène",48.597194,7.741842,0,0,OST:SA:CTPSTHEL_01,Europe/Paris,,OST, +OST:SP:STHEL_02,1,"Sainte Hélène",48.596816,7.742011,0,0,OST:SA:CTPSTHEL_01,Europe/Paris,,OST, +OST:SP:STHEL_03,1,"Sainte Hélène",48.597344,7.741054,0,0,OST:SA:CTPSTHEL_01,Europe/Paris,,OST, +OST:SP:STHEL_04,1,"Sainte Hélène",48.597043,7.741432,0,0,OST:SA:CTPSTHEL_01,Europe/Paris,,OST, +OST:SP:STIGN_01,1,"Saint Ignace",48.531441,7.761653,0,0,OST:SA:CTPSTIGN_01,Europe/Paris,,OST, +OST:SP:STIGN_02,1,"Saint Ignace",48.532081,7.761766,0,0,OST:SA:CTPSTIGN_01,Europe/Paris,,OST, +OST:SP:STJUN_01,1,"Saint Junien",48.607383,7.723196,0,0,OST:SA:CTPSTJUN_01,Europe/Paris,,OST, +OST:SP:STJUN_02,1,"Saint Junien",48.607289,7.723182,0,0,OST:SA:CTPSTJUN_01,Europe/Paris,,OST, +OST:SP:STMAR_01,1,"Sainte Marguerite",48.581361,7.736518,0,0,OST:SA:CTPSTMAR_01,Europe/Paris,,OST, +OST:SP:STMAR_02,1,"Sainte Marguerite",48.58131,7.737046,0,0,OST:SA:CTPSTMAR_01,Europe/Paris,,OST, +OST:SP:STMAU_01,1,"Saint Maurice",48.58573,7.772154,0,0,OST:SA:CTPSTMAU_01,Europe/Paris,,OST, +OST:SP:STMAU_02,1,"Saint Maurice",48.585721,7.771993,0,0,OST:SA:CTPSTMAU_01,Europe/Paris,,OST, +OST:SP:STNAZ_01,1,"Saint Nazaire",48.530686,7.779914,0,0,OST:SA:CTPSTNAZ_01,Europe/Paris,,OST, +OST:SP:STNAZ_02,1,"Saint Nazaire",48.530645,7.780171,0,0,OST:SA:CTPSTNAZ_01,Europe/Paris,,OST, +OST:SP:STNIC_01,1,"Saint Nicolas",48.578501,7.748223,0,0,OST:SA:CTPSTNIC_01,Europe/Paris,,OST, +OST:SP:STNIC_02,1,"Saint Nicolas",48.578385,7.748019,0,0,OST:SA:CTPSTNIC_01,Europe/Paris,,OST, +OST:SP:STOSK_01,1,"Stoskopf",48.479283,7.707863,0,0,OST:SA:CTPSTOSK_01,Europe/Paris,,OST, +OST:SP:STOSK_02,1,"Stoskopf",48.479318,7.707848,0,0,OST:SA:CTPSTOSK_01,Europe/Paris,,OST, +OST:SP:STPAU_01,1,"Saint Paul",48.469342,7.728729,0,0,OST:SA:CTPSTPAU_01,Europe/Paris,,OST, +OST:SP:STPAU_02,1,"Saint Paul",48.469311,7.728683,0,0,OST:SA:CTPSTPAU_01,Europe/Paris,,OST, +OST:SP:STTHO_01,1,"Saint Thomas Finkwiller",48.578847,7.744372,0,0,OST:SA:CTPSTTHO_01,Europe/Paris,,OST, +OST:SP:STTHO_02,1,"Saint Thomas Finkwiller",48.57888,7.743728,0,0,OST:SA:CTPSTTHO_01,Europe/Paris,,OST, +OST:SP:STUTZ_01,1,"Stutzheim",48.598363,7.714116,0,0,OST:SA:CTPSTUTZ_01,Europe/Paris,,OST, +OST:SP:STUTZ_02,1,"Stutzheim",48.598322,7.714009,0,0,OST:SA:CTPSTUTZ_01,Europe/Paris,,OST, +OST:SP:STYRI_01,1,"Saint Yrieix",48.652183,7.825224,0,0,OST:SA:CTPSTYRI_01,Europe/Paris,,OST, +OST:SP:STYRI_02,1,"Saint Yrieix",48.652087,7.825069,0,0,OST:SA:CTPSTYRI_01,Europe/Paris,,OST, +OST:SP:TANNE_03,1,"Tanneries",48.561512,7.694769,0,0,OST:SA:CTPTANNE_03,Europe/Paris,,OST, +OST:SP:TANNE_04,1,"Tanneries",48.561789,7.695853,0,0,OST:SA:CTPTANNE_03,Europe/Paris,,OST, +OST:SP:TAULE_01,1,"Tauler",48.588101,7.769788,0,0,OST:SA:CTPTAULE_01,Europe/Paris,,OST, +OST:SP:TAULE_02,1,"Tauler",48.588359,7.769442,0,0,OST:SA:CTPTAULE_01,Europe/Paris,,OST, +OST:SP:TAULE_03,1,"Tauler",48.588714,7.769421,0,0,OST:SA:CTPTAULE_01,Europe/Paris,,OST, +OST:SP:TAULE_04,1,"Tauler",48.588135,7.769812,0,0,OST:SA:CTPTAULE_01,Europe/Paris,,OST, +OST:SP:TECHA_01,1,"Terres de la chapelle",48.538975,7.646093,0,0,OST:SA:CTPTECHA_01,Europe/Paris,,OST, +OST:SP:TECHA_02,1,"Terres de la chapelle",48.539066,7.646037,0,0,OST:SA:CTPTECHA_01,Europe/Paris,,OST, +OST:SP:TEMPL_01,1,"Temple",48.669333,7.708062,0,0,OST:SA:CTPTEMPL_01,Europe/Paris,,OST, +OST:SP:TEMPL_02,1,"Temple",48.669367,7.707773,0,0,OST:SA:CTPTEMPL_01,Europe/Paris,,OST, +OST:SP:TINTO_01,1,"Tintoret",48.565008,7.728073,0,0,OST:SA:CTPTINTO_01,Europe/Paris,,OST, +OST:SP:TITIE_01,1,"Titien",48.564558,7.725737,0,0,OST:SA:CTPTITIE_01,Europe/Paris,,OST, +OST:SP:TITIE_02,1,"Titien",48.564595,7.726752,0,0,OST:SA:CTPTITIE_01,Europe/Paris,,OST, +OST:SP:TOSTI_01,1,"Tobias Stimmer",48.52229,7.740898,0,0,OST:SA:CTPTOSTI_01,Europe/Paris,,OST, +OST:SP:TOSTI_02,1,"Tobias Stimmer",48.52221,7.740871,0,0,OST:SA:CTPTOSTI_01,Europe/Paris,,OST, +OST:SP:TOURA_01,1,"Touraine",48.562806,7.688142,0,0,OST:SA:CTPTOURA_01,Europe/Paris,,OST, +OST:SP:TOURA_02,1,"Touraine",48.563079,7.688354,0,0,OST:SA:CTPTOURA_01,Europe/Paris,,OST, +OST:SP:TRAVA_01,1,"Travail",48.589753,7.741963,0,0,OST:SA:CTPTRAVA_01,Europe/Paris,,OST, +OST:SP:TRAVA_02,1,"Travail",48.589973,7.742078,0,0,OST:SA:CTPTRAVA_01,Europe/Paris,,OST, +OST:SP:TRAVA_03,1,"Travail",48.589587,7.742288,0,0,OST:SA:CTPTRAVA_01,Europe/Paris,,OST, +OST:SP:TREPI_01,1,"Trois Epis",48.606837,7.735936,0,0,OST:SA:CTPTREPI_01,Europe/Paris,,OST, +OST:SP:TREPI_02,1,"Trois Epis",48.607,7.73603,0,0,OST:SA:CTPTREPI_01,Europe/Paris,,OST, +OST:SP:TRFON_01,1,"Tribunal - Fonderie",48.586874,7.749583,0,0,OST:SA:CTPTRFON_01,Europe/Paris,,OST, +OST:SP:TRFON_02,1,"Tribunal - Fonderie",48.587436,7.748816,0,0,OST:SA:CTPTRFON_01,Europe/Paris,,OST, +OST:SP:UNELS_01,1,"Unterelsau",48.562183,7.729874,0,0,OST:SA:CTPUNELS_01,Europe/Paris,,OST, +OST:SP:UNIVE_01,1,"Université",48.582685,7.764064,0,0,OST:SA:CTPUNIVE_01,Europe/Paris,,OST, +OST:SP:UNIVE_02,1,"Université",48.582855,7.76385,0,0,OST:SA:CTPUNIVE_01,Europe/Paris,,OST, +OST:SP:UNIVE_03,1,"Université",48.582855,7.76385,0,0,OST:SA:CTPUNIVE_01,Europe/Paris,,OST, +OST:SP:UNIVE_04,1,"Université",48.582855,7.76385,0,0,OST:SA:CTPUNIVE_01,Europe/Paris,,OST, +OST:SP:UNJAE_01,1,"Unterjaegerhof",48.631639,7.80474,0,0,OST:SA:CTPUNJAE_01,Europe/Paris,,OST, +OST:SP:UNJAE_02,1,"Unterjaegerhof",48.631572,7.804673,0,0,OST:SA:CTPUNJAE_01,Europe/Paris,,OST, +OST:SP:URBAN_01,1,"Urban",48.520124,7.688491,0,0,OST:SA:CTPURBAN_01,Europe/Paris,,OST, +OST:SP:URBAN_02,1,"Urban",48.520294,7.689536,0,0,OST:SA:CTPURBAN_01,Europe/Paris,,OST, +OST:SP:VANNE_01,1,"Vanneaux",48.554388,7.759435,0,0,OST:SA:CTPVANNE_01,Europe/Paris,,OST, +OST:SP:VANNE_02,1,"Vanneaux",48.554303,7.76039,0,0,OST:SA:CTPVANNE_01,Europe/Paris,,OST, +OST:SP:VEGAR_01,1,"Vendenheim Gare",48.666699,7.717378,0,0,OST:SA:CTPVEGAR_01,Europe/Paris,,OST, +OST:SP:VEGAR_02,1,"Vendenheim Gare",48.666394,7.717583,0,0,OST:SA:CTPVEGAR_01,Europe/Paris,,OST, +OST:SP:VEMAI_01,1,"Vendenheim Mairie",48.665576,7.711403,0,0,OST:SA:CTPVEMAI_01,Europe/Paris,,OST, +OST:SP:VEMAI_02,1,"Vendenheim Mairie",48.665233,7.711529,0,0,OST:SA:CTPVEMAI_01,Europe/Paris,,OST, +OST:SP:VERDN_01,1,"Verdun",48.588031,7.774003,0,0,OST:SA:CTPVERDN_01,Europe/Paris,,OST, +OST:SP:VERDN_02,1,"Verdun",48.588134,7.772957,0,0,OST:SA:CTPVERDN_01,Europe/Paris,,OST, +OST:SP:VERDO_01,1,"Verdon",48.549587,7.736462,0,0,OST:SA:CTPVERDO_01,Europe/Paris,,OST, +OST:SP:VERDO_02,1,"Verdon",48.54972,7.735617,0,0,OST:SA:CTPVERDO_01,Europe/Paris,,OST, +OST:SP:VERDU_01,1,"Geispolsheim Verdun",48.522345,7.683508,0,0,OST:SA:CTPVERDU_01,Europe/Paris,,OST, +OST:SP:VERDU_02,1,"Geispolsheim Verdun",48.523537,7.683162,0,0,OST:SA:CTPVERDU_01,Europe/Paris,,OST, +OST:SP:VERMA_05,1,"Vernois Mangold",48.546999,7.709238,0,0,OST:SA:CTPVERMA_05,Europe/Paris,,OST, +OST:SP:VERMA_06,1,"Vernois Mangold",48.546997,7.709318,0,0,OST:SA:CTPVERMA_05,Europe/Paris,,OST, +OST:SP:VETIL_01,1,"Vendenheim au Tilleul",48.66871,7.71047,0,0,OST:SA:CTPVETIL_01,Europe/Paris,,OST, +OST:SP:VETIL_02,1,"Vendenheim au Tilleul",48.668701,7.710372,0,0,OST:SA:CTPVETIL_01,Europe/Paris,,OST, +OST:SP:VIENN_01,1,"Vienne",48.613501,7.716661,0,0,OST:SA:CTPVIENN_01,Europe/Paris,,OST, +OST:SP:VIENN_02,1,"Vienne",48.613632,7.716521,0,0,OST:SA:CTPVIENN_01,Europe/Paris,,OST, +OST:SP:VIGNS_01,1,"Vignes",48.521337,7.720316,0,0,OST:SA:CTPVIGNS_01,Europe/Paris,,OST, +OST:SP:VIGNS_02,1,"Vignes",48.521677,7.72058,0,0,OST:SA:CTPVIGNS_01,Europe/Paris,,OST, +OST:SP:VIHUG_01,1,"Victor Hugo",48.622671,7.730569,0,0,OST:SA:CTPVIHUG_01,Europe/Paris,,OST, +OST:SP:VIHUG_02,1,"Victor Hugo",48.622582,7.730717,0,0,OST:SA:CTPVIHUG_01,Europe/Paris,,OST, +OST:SP:VILVE_01,1,"Villa Vénitienne",48.594693,7.725937,0,0,OST:SA:CTPVILVE_01,Europe/Paris,,OST, +OST:SP:VILVE_02,1,"Villa Vénitienne",48.594698,7.725919,0,0,OST:SA:CTPVILVE_01,Europe/Paris,,OST, +OST:SP:VIMOU_01,1,"Vieux Moulin",48.517868,7.679559,0,0,OST:SA:CTPVIMOU_01,Europe/Paris,,OST, +OST:SP:VIMOU_02,1,"Vieux Moulin",48.517832,7.67958,0,0,OST:SA:CTPVIMOU_01,Europe/Paris,,OST, +OST:SP:VIRGI_01,1,"Virgile",48.581436,7.699783,0,0,OST:SA:CTPVIRGI_01,Europe/Paris,,OST, +OST:SP:VIRGI_02,1,"Virgile",48.58142,7.700096,0,0,OST:SA:CTPVIRGI_01,Europe/Paris,,OST, +OST:SP:VOLTA_01,1,"Voltaire",48.614239,7.748387,0,0,OST:SA:CTPVOLTA_01,Europe/Paris,,OST, +OST:SP:VOLTA_02,1,"Voltaire",48.614183,7.748937,0,0,OST:SA:CTPVOLTA_01,Europe/Paris,,OST, +OST:SP:VOOBE_01,1,"Vosges Oberlin",48.58965,7.750983,0,0,OST:SA:CTPVOOBE_01,Europe/Paris,,OST, +OST:SP:VOOBE_02,1,"Vosges Oberlin",48.589693,7.751273,0,0,OST:SA:CTPVOOBE_01,Europe/Paris,,OST, +OST:SP:VOSGE_01,1,"Vosges",48.60409,7.690017,0,0,OST:SA:CTPVOSGE_01,Europe/Paris,,OST, +OST:SP:VOSGE_02,1,"Vosges",48.603968,7.690202,0,0,OST:SA:CTPVOSGE_01,Europe/Paris,,OST, +OST:SP:WACKE_01,1,"Wacken",48.598302,7.761213,0,0,OST:SA:CTPWACKE_01,Europe/Paris,,OST, +OST:SP:WACKE_04,1,"Wacken",48.598457,7.761968,0,0,OST:SA:CTPWACKE_01,Europe/Paris,,OST, +OST:SP:WACKE_05,1,"Wacken",48.598675,7.760722,0,0,OST:SA:CTPWACKE_01,Europe/Paris,,OST, +OST:SP:WACKE_06,1,"Wacken",48.598513,7.760559,0,0,OST:SA:CTPWACKE_01,Europe/Paris,,OST, +OST:SP:WAGNE_01,1,"Wagner",48.586986,7.777441,0,0,OST:SA:CTPWAGNE_01,Europe/Paris,,OST, +OST:SP:WAGNE_02,1,"Wagner",48.587223,7.77596,0,0,OST:SA:CTPWAGNE_01,Europe/Paris,,OST, +OST:SP:WALDH_01,1,"Waldhorn",48.510016,7.72981,0,0,OST:SA:CTPWALDH_01,Europe/Paris,,OST, +OST:SP:WALDH_02,1,"Waldhorn",48.509982,7.729531,0,0,OST:SA:CTPWALDH_01,Europe/Paris,,OST, +OST:SP:WASSE_01,1,"Wasselonne",48.584253,7.688099,0,0,OST:SA:CTPWASSE_01,Europe/Paris,,OST, +OST:SP:WASSE_02,1,"Wasselonne",48.584459,7.687874,0,0,OST:SA:CTPWASSE_01,Europe/Paris,,OST, +OST:SP:WATTW_01,1,"Wattwiller",48.5612,7.785896,0,0,OST:SA:CTPWATTW_01,Europe/Paris,,OST, +OST:SP:WATTW_F1,1,"Wattwiller descente",48.561182,7.785881,0,0,OST:SA:CTPWATTW_F1,Europe/Paris,,OST, +OST:SP:WEEBE_01,1,"Weeber",48.546099,7.751811,0,0,OST:SA:CTPWEEBE_01,Europe/Paris,,OST, +OST:SP:WEEBE_02,1,"Weeber",48.546101,7.752129,0,0,OST:SA:CTPWEEBE_01,Europe/Paris,,OST, +OST:SP:WELSC_01,1,"Welsch",48.533599,7.768401,0,0,OST:SA:CTPWELSC_01,Europe/Paris,,OST, +OST:SP:WICHA_01,1,"Wibolsheim Chapelle",48.47678,7.706888,0,0,OST:SA:CTPWICHA_01,Europe/Paris,,OST, +OST:SP:WICHA_02,1,"Wibolsheim Chapelle",48.477073,7.706992,0,0,OST:SA:CTPWICHA_01,Europe/Paris,,OST, +OST:SP:WICHU_01,1,"Winston Churchill",48.57391,7.766615,0,0,OST:SA:CTPWICHU_01,Europe/Paris,,OST, +OST:SP:WICHU_02,1,"Winston Churchill",48.574076,7.766816,0,0,OST:SA:CTPWICHU_01,Europe/Paris,,OST, +OST:SP:WIHRE_01,1,"Wihrel",48.554748,7.712829,0,0,OST:SA:CTPWIHRE_01,Europe/Paris,,OST, +OST:SP:WIHRE_02,1,"Wihrel",48.554613,7.712754,0,0,OST:SA:CTPWIHRE_01,Europe/Paris,,OST, +OST:SP:WIHRE_03,1,"Wihrel",48.555529,7.712775,0,0,OST:SA:CTPWIHRE_01,Europe/Paris,,OST, +OST:SP:WIHRE_04,1,"Wihrel",48.554541,7.712896,0,0,OST:SA:CTPWIHRE_01,Europe/Paris,,OST, +OST:SP:WILSO_01,1,"Wilson",48.588121,7.739013,0,0,OST:SA:CTPWILSO_01,Europe/Paris,,OST, +OST:SP:WILSO_02,1,"Wilson",48.587967,7.739222,0,0,OST:SA:CTPWILSO_01,Europe/Paris,,OST, +OST:SP:WILSO_03,1,"Wilson",48.587905,7.73897,0,0,OST:SA:CTPWILSO_01,Europe/Paris,,OST, +OST:SP:WILSO_06,1,"Wilson",48.587946,7.738355,0,0,OST:SA:CTPWILSO_01,Europe/Paris,,OST, +OST:SP:WILSO_07,1,"Wilson",48.587801,7.738422,0,0,OST:SA:CTPWILSO_01,Europe/Paris,,OST, +OST:SP:WILSO_08,1,"Wilson",48.587987,7.73951,0,0,OST:SA:CTPWILSO_01,Europe/Paris,,OST, +OST:SP:WISSE_01,1,"Wissembourg",48.589972,7.741073,0,0,OST:SA:CTPWISSE_01,Europe/Paris,,OST, +OST:SP:WISSE_02,1,"Wissembourg",48.589989,7.741367,0,0,OST:SA:CTPWISSE_01,Europe/Paris,,OST, +OST:SP:WOLMA_01,1,"Wolfisheim Mairie",48.58341,7.666169,0,0,OST:SA:CTPWOLMA_01,Europe/Paris,,OST, +OST:SP:WOLMA_02,1,"Wolfisheim Mairie",48.583847,7.666486,0,0,OST:SA:CTPWOLMA_01,Europe/Paris,,OST, +OST:SP:WOLSD_01,1,"Wolfisheim Stade",48.579017,7.666614,0,0,OST:SA:CTPWOLSD_01,Europe/Paris,,OST, +OST:SP:WOLSD_02,1,"Wolfisheim Stade",48.578905,7.666595,0,0,OST:SA:CTPWOLSD_01,Europe/Paris,,OST, +OST:SP:YPRES_01,1,"Ypres",48.586232,7.780678,0,0,OST:SA:CTPYPRES_01,Europe/Paris,,OST, +OST:SP:YPRES_02,1,"Ypres",48.586164,7.78074,0,0,OST:SA:CTPYPRES_01,Europe/Paris,,OST, +OST:SP:ZACBA_01,1,"ZAC des Maréchaux battement",48.634155,7.715307,0,0,OST:SA:CTPZACBA_01,Europe/Paris,,OST, +OST:SP:ZACMA_01,1,"ZAC des Maréchaux",48.634155,7.715307,0,0,OST:SA:CTPZACMA_01,Europe/Paris,,OST, +OST:SP:ZOCOM_01,1,"Zone Commerciale",48.656658,7.722085,0,0,OST:SA:CTPZOCOM_01,Europe/Paris,,OST, +OST:SP:ZOCOM_02,1,"Zone Commerciale",48.656532,7.721919,0,0,OST:SA:CTPZOCOM_01,Europe/Paris,,OST, +OST:SP:ZORNN_01,1,"Zorn",48.609306,7.75763,0,0,OST:SA:CTPZORNN_01,Europe/Paris,,OST, +OST:SP:ZORNN_02,1,"Zorn",48.609235,7.757893,0,0,OST:SA:CTPZORNN_01,Europe/Paris,,OST, +OST:SP:ZURIC_01,1,"Zurich",48.579648,7.756089,0,0,OST:SA:CTPZURIC_01,Europe/Paris,,OST, +OST:SP:ZURIC_02,1,"Zurich",48.57967,7.756192,0,0,OST:SA:CTPZURIC_01,Europe/Paris,,OST, +OTC:SP:31000001,1,"Les Hôtels",49.387751,2.39029,0,0,OTC:SA:CTP31000001,Europe/Paris,,OTC, +OTC:SP:31000002,1,"Croix Verte",49.38865,2.39777,0,0,OTC:SA:CTP31000002,Europe/Paris,,OTC, +OTC:SP:31000003,1,"République",49.375931,2.451968,0,0,OTC:SA:CTP31000003,Europe/Paris,,OTC, +OTC:SP:31000004,1,"République",49.375401,2.451238,0,0,OTC:SA:CTP31000003,Europe/Paris,,OTC, +OTC:SP:31000005,1,"Boulloirs",49.371201,2.4544,0,0,OTC:SA:CTP31000005,Europe/Paris,,OTC, +OTC:SP:31000006,1,"Boulloirs",49.37119,2.45437,0,0,OTC:SA:CTP31000005,Europe/Paris,,OTC, +OTC:SP:31000007,1,"Croix Blanche",49.373982,2.459998,0,0,OTC:SA:CTP31000007,Europe/Paris,,OTC, +OTC:SP:31000008,1,"Verdun",49.372511,2.450913,0,0,OTC:SA:CTP31000009,Europe/Paris,,OTC, +OTC:SP:31000009,1,"Verdun",49.372597,2.450156,0,0,OTC:SA:CTP31000009,Europe/Paris,,OTC, +OTC:SP:31000010,1,"Zone Industrielle",49.379854,2.454206,0,0,OTC:SA:CTP31000010,Europe/Paris,,OTC, +OTC:SP:31000011,1,"Guy Boulet",49.381931,2.45054,0,0,OTC:SA:CTP31000011,Europe/Paris,,OTC, +OTC:SP:31000012,1,"Guy Boulet",49.38196,2.45046,0,0,OTC:SA:CTP31000011,Europe/Paris,,OTC, +OTC:SP:31000013,1,"Grand Air",49.360556,2.422522,0,0,OTC:SA:CTP31000013,Europe/Paris,,OTC, +OTC:SP:31000014,1,"Grand Air",49.360611,2.422872,0,0,OTC:SA:CTP31000013,Europe/Paris,,OTC, +OTC:SP:31000015,1,"Lycée Roberval",49.363758,2.420264,0,0,OTC:SA:CTP31000015,Europe/Paris,,OTC, +OTC:SP:31000016,1,"Rotheleux",49.364456,2.409619,0,0,OTC:SA:CTP31000016,Europe/Paris,,OTC, +OTC:SP:31000017,1,"Petheil",49.36801,2.40748,0,0,OTC:SA:CTP31000017,Europe/Paris,,OTC, +OTC:SP:31000018,1,"Paul Louis",49.370832,2.416389,0,0,OTC:SA:CTP31000018,Europe/Paris,,OTC, +OTC:SP:31000021,1,"Ursulines",49.3746,2.41426,0,0,OTC:SA:CTP31000021,Europe/Paris,,OTC, +OTC:SP:31000023,1,"Jean Jaurès",49.38277,2.41091,0,0,OTC:SA:CTP31000023,Europe/Paris,,OTC, +OTC:SP:31000024,1,"Jean Jaurès",49.38277,2.41095,0,0,OTC:SA:CTP31000023,Europe/Paris,,OTC, +OTC:SP:31000025,1,"Colimaçon",49.383651,2.413559,0,0,OTC:SA:CTP31000026,Europe/Paris,,OTC, +OTC:SP:31000026,1,"Colimaçon",49.383894,2.413499,0,0,OTC:SA:CTP31000026,Europe/Paris,,OTC, +OTC:SP:31000027,1,"Saint Laurent",49.382353,2.40577,0,0,OTC:SA:CTP31000027,Europe/Paris,,OTC, +OTC:SP:31000028,1,"Gare SNCF Départ",49.384841,2.41772,0,0,ODT:SA:CTP21002407,Europe/Paris,,OTC, +OTC:SP:31000029,1,"Pont de pierre",49.381583,2.429553,0,0,OTC:SA:CTP31000029,Europe/Paris,,OTC, +OTC:SP:31000030,1,"Pont de pierre",49.38152,2.429181,0,0,OTC:SA:CTP31000029,Europe/Paris,,OTC, +OTC:SP:31000031,1,"Centre",49.376087,2.413391,0,0,OTC:SA:CTP31000032,Europe/Paris,,OTC, +OTC:SP:31000032,1,"Centre",49.376105,2.413391,0,0,OTC:SA:CTP31000032,Europe/Paris,,OTC, +OTC:SP:31000033,1,"Vienot",49.374089,2.40825,0,0,OTC:SA:CTP31000033,Europe/Paris,,OTC, +OTC:SP:31000034,1,"De Gaulle",49.379267,2.413374,0,0,OTC:SA:CTP31000034,Europe/Paris,,OTC, +OTC:SP:31000035,1,"De Gaulle",49.379267,2.413423,0,0,OTC:SA:CTP31000034,Europe/Paris,,OTC, +OTC:SP:31000036,1,"La Croix de Creil",49.368439,2.41798,0,0,OTC:SA:CTP31000036,Europe/Paris,,OTC, +OTC:SP:31000037,1,"La Croix de Creil",49.368819,2.41789,0,0,OTC:SA:CTP31000036,Europe/Paris,,OTC, +OTC:SP:31000038,1,"Fernel",49.38461,2.396931,0,0,OTC:SA:CTP31000038,Europe/Paris,,OTC, +OTC:SP:31000039,1,"Bethencourthel",49.372699,2.40782,0,0,OTC:SA:CTP31000039,Europe/Paris,,OTC, +OTC:SP:31000040,1,"Clos de Censé",49.379719,2.40074,0,0,OTC:SA:CTP31000040,Europe/Paris,,OTC, +OTC:SP:31000041,1,"Les Sables",49.38572,2.40095,0,0,OTC:SA:CTP31000041,Europe/Paris,,OTC, +OTC:SP:31000042,1,"C.H.I.",49.38497,2.43966,0,0,OTC:SA:CTP31000042,Europe/Paris,,OTC, +OTC:SP:31000043,1,"Grande Rue",49.34488,2.40813,0,0,OTC:SA:CTP31000043,Europe/Paris,,OTC, +OTC:SP:31000044,1,"Grande Rue",49.344761,2.40831,0,0,OTC:SA:CTP31000043,Europe/Paris,,OTC, +OTC:SP:31000045,1,"Commanderie",49.34581,2.4141,0,0,OTC:SA:CTP31000045,Europe/Paris,,OTC, +OTC:SP:31000046,1,"Commanderie",49.345689,2.41395,0,0,OTC:SA:CTP31000045,Europe/Paris,,OTC, +OTC:SP:31000047,1,"Centre commercial",49.348748,2.430264,0,0,OTC:SA:CTP31000047,Europe/Paris,,OTC, +OTC:SP:31000048,1,"Centre commercial",49.350134,2.426375,0,0,OTC:SA:CTP31000048,Europe/Paris,,OTC, +OTC:SP:31000049,1,"Gare SNCF Arrivée",49.384841,2.41772,0,0,ODT:SA:CTP21002407,Europe/Paris,,OTC, +OTC:SP:31000050,1,"Voltaire",49.390829,2.41615,0,0,ODV:SA:CTP22413704,Europe/Paris,,OTC, +OTC:SP:31000052,1,"Place de la république",49.3899,2.43074,0,0,OTC:SA:CTP31000052,Europe/Paris,,OTC, +OTC:SP:31000053,1,"Place de la république",49.390309,2.43038,0,0,OTC:SA:CTP31000052,Europe/Paris,,OTC, +OTC:SP:31000054,1,"Nelson Mandela",49.3962,2.4203,0,0,OTC:SA:CTP31000054,Europe/Paris,,OTC, +OTC:SP:31000055,1,"Louis Aragon",49.39374,2.42586,0,0,OTC:SA:CTP31000055,Europe/Paris,,OTC, +OTC:SP:31000057,1,"Centre Aquatique",49.39839,2.42025,0,0,OTC:SA:CTP31000057,Europe/Paris,,OTC, +OTC:SP:31000059,1,"Rue du Grand air",49.390469,2.42358,0,0,OTC:SA:CTP31000058,Europe/Paris,,OTC, +OTC:SP:31000060,1,"Alfred Kastler",49.39586,2.42228,0,0,OTC:SA:CTP31000060,Europe/Paris,,OTC, +OTC:SP:31000090,1,"Paul Louis",49.370922,2.41661,0,0,OTC:SA:CTP31000018,Europe/Paris,,OTC, +OTC:SP:31000091,1,"Ursulines",49.374539,2.414185,0,0,OTC:SA:CTP31000021,Europe/Paris,,OTC, +OTC:SP:31000092,1,"Gambetta",49.38243,2.40422,0,0,OTC:SA:CTP31000022,Europe/Paris,,OTC, +OTC:SP:31000094,1,"Vienot",49.374121,2.408175,0,0,OTC:SA:CTP31000033,Europe/Paris,,OTC, +OTC:SP:31000095,1,"Fernel",49.384541,2.396878,0,0,OTC:SA:CTP31000038,Europe/Paris,,OTC, +OTC:SP:31000097,1,"Mairie",49.378943,2.415046,0,0,OTC:SA:CTP31000097,Europe/Paris,,OTC, +OTC:SP:31000098,1,"Commerces",49.377429,2.414836,0,0,OTC:SA:CTP31000098,Europe/Paris,,OTC, +OTC:SP:31000099,1,"Fontaines",49.378236,2.41023,0,0,OTC:SA:CTP31000099,Europe/Paris,,OTC, +OTC:SP:31000100,1,"hôpital",49.379843,2.411979,0,0,OTC:SA:CTP31000100,Europe/Paris,,OTC, +OTC:SP:31000102,1,"De Nerval",49.382203,2.400948,0,0,OTC:SA:CTP31000101,Europe/Paris,,OTC, +OTC:SP:31000103,1,"Samson / Fay",49.379972,2.405953,0,0,OTC:SA:CTP31000103,Europe/Paris,,OTC, +OTC:SP:31000104,1,"Samson / Fay",49.380026,2.40594,0,0,OTC:SA:CTP31000103,Europe/Paris,,OTC, +OTC:SP:31000110,1,"Calvaire",49.363978,2.413428,0,0,OTC:SA:CTP31000110,Europe/Paris,,OTC, +OTC:SP:31000111,1,"Calvaire",49.363951,2.41343,0,0,OTC:SA:CTP31000110,Europe/Paris,,OTC, +OTC:SP:31000114,1,"Marais",49.365662,2.419662,0,0,OTC:SA:CTP31000114,Europe/Paris,,OTC, +OTC:SP:31000115,1,"Marais",49.365905,2.419621,0,0,OTC:SA:CTP31000114,Europe/Paris,,OTC, +OTC:SP:31000117,1,"Gare SNCF",49.384841,2.41772,0,0,ODT:SA:CTP21002407,Europe/Paris,,OTC, +OUM:SP:7000001,1,"Zone Industrielle",49.305809,2.577099,0,0,OUM:SA:CTP7000001,Europe/Paris,,OUM, +OUM:SP:7000002,1,"Artisans",49.305894,2.579696,0,0,OUM:SA:CTP7000002,Europe/Paris,,OUM, +OUM:SP:7000003,1,"Papeterie",49.306971,2.58757,0,0,OUM:SA:CTP7000003,Europe/Paris,,OUM, +OUM:SP:7000004,1,"SALPA",49.307393,2.591975,0,0,OUM:SA:CTP7000004,Europe/Paris,,OUM, +OUM:SP:7000006,1,"Gare départ",49.309636,2.602921,0,0,SIN:SA:OCE87276329,Europe/Paris,,OUM, +OUM:SP:7000007,1,"Bateliers",49.30457,2.609324,0,0,OUM:SA:CTP7000007,Europe/Paris,,OUM, +OUM:SP:7000008,1,"Ecluses",49.307585,2.615881,0,0,OUM:SA:CTP7000008,Europe/Paris,,OUM, +OUM:SP:7000009,1,"Oursel",49.310346,2.618369,0,0,OUM:SA:CTP7000009,Europe/Paris,,OUM, +OUM:SP:7000011,1,"Charles de Gaulle",49.315814,2.619842,0,0,OUM:SA:CTP7000011,Europe/Paris,,OUM, +OUM:SP:7000012,1,"Vieux moulin",49.312801,2.613669,0,0,OUM:SA:CTP7000012,Europe/Paris,,OUM, +OUM:SP:7000013,1,"Courtes Rayes",49.310951,2.609537,0,0,OUM:SA:CTP7000013,Europe/Paris,,OUM, +OUM:SP:7000014,1,"Grégoire",49.309896,2.607008,0,0,OUM:SA:CTP7000014,Europe/Paris,,OUM, +OUM:SP:7000015,1,"Champs de Mars",49.30701,2.604048,0,0,OUM:SA:CTP7000015,Europe/Paris,,OUM, +OUM:SP:7000016,1,"Mairie",49.30108,2.60436,0,0,ODV:SA:CTP22403664,Europe/Paris,,OUM, +OUM:SP:7000017,1,"Marie Bray",49.296498,2.604529,0,0,ODV:SA:CTP22403665,Europe/Paris,,OUM, +OUM:SP:7000018,1,"Vieille montagne",49.293223,2.604598,0,0,OUM:SA:CTP7000018,Europe/Paris,,OUM, +OUM:SP:7000019,1,"Clément-Brassens",49.295928,2.597088,0,0,OUM:SA:CTP7000019,Europe/Paris,,OUM, +OUM:SP:7000020,1,"Piscine",49.294084,2.59713,0,0,OUM:SA:CTP7000020,Europe/Paris,,OUM, +OUM:SP:7005002,1,"Artisans",49.306322,2.582495,0,0,OUM:SA:CTP7000002,Europe/Paris,,OUM, +OUM:SP:7005004,1,"SALPA",49.30749,2.592038,0,0,OUM:SA:CTP7000004,Europe/Paris,,OUM, +OUM:SP:7005006,1,"Gare",49.30955,2.603179,0,0,SIN:SA:OCE87276329,Europe/Paris,,OUM, +OUM:SP:7005015,1,"Champs de Mars",49.307036,2.604295,0,0,OUM:SA:CTP7000015,Europe/Paris,,OUM, +OUM:SP:7005016,1,"Mairie",49.301268,2.60454,0,0,ODV:SA:CTP22403664,Europe/Paris,,OUM, +OUM:SP:7005017,1,"Marie Bray",49.296461,2.604735,0,0,ODV:SA:CTP22403665,Europe/Paris,,OUM, +OUM:SP:7005018,1,"Vieille montagne",49.29329,2.604856,0,0,OUM:SA:CTP7000018,Europe/Paris,,OUM, +OUM:SP:7005021,1,"Collège",49.294063,2.598493,0,0,OUM:SA:CTP7005021,Europe/Paris,,OUM, +OUM:SP:7005024,1,"Age d'Or",49.307989,2.603044,0,0,OUM:SA:CTP7005024,Europe/Paris,,OUM, +OUM:SP:7005026,1,"La Plaine",49.314273,2.622045,0,0,OUM:SA:CTP7005026,Europe/Paris,,OUM, +OUM:SP:7005031,1,"Z.A.C. Pasteur",49.30521,2.59317,0,0,OUM:SA:CTP7005031,Europe/Paris,,OUM, +OUM:SP:7005034,1,"AUVELAIS",49.318112,2.605206,0,0,OUM:SA:CTP7005035,Europe/Paris,,OUM, +OUM:SP:7005035,1,"AUVELAIS",49.317961,2.605191,0,0,OUM:SA:CTP7005035,Europe/Paris,,OUM, +OUM:SP:7005036,1,"VAL D'HALATTE",49.31887,2.605718,0,0,OUM:SA:CTP7005036,Europe/Paris,,OUM, +OUM:SP:7005037,1,"Gare",49.309636,2.602921,0,0,SIN:SA:OCE87276329,Europe/Paris,,OUM, +OUM:SP:7005038,1,"Seuris",49.293402,2.606923,0,0,OUM:SA:CTP7005038,Europe/Paris,,OUM, +OUM:SP:7005039,1,"Hôpital",49.296048,2.605889,0,0,OUM:SA:CTP7005039,Europe/Paris,,OUM, +OUM:SP:7005040,1,"Cérabati",49.307713,2.596079,0,0,OUM:SA:CTP7005040,Europe/Paris,,OUM, +OUM:SP:7005041,1,"Pompidou",49.307912,2.602377,0,0,OUM:SA:CTP7005041,Europe/Paris,,OUM, +OUM:SP:7005042,1,"Age d'Or",49.307848,2.60309,0,0,OUM:SA:CTP7005024,Europe/Paris,,OUM, +OUM:SP:7005043,1,"Cérabati",49.307682,2.597554,0,0,OUM:SA:CTP7005040,Europe/Paris,,OUM, +OUM:SP:7005044,1,"Papeterie",49.306944,2.587839,0,0,OUM:SA:CTP7000003,Europe/Paris,,OUM, +OUM:SP:7005045,1,"Zone Industrielle",49.305809,2.577099,0,0,OUM:SA:CTP7000001,Europe/Paris,,OUM, +OUS:SP:5040001,1,"Beauséjour",49.579285,2.988382,0,0,OUS:SA:CTP-OUS5040001,Europe/Paris,,OUS, +OUS:SP:5040002,1,"Centre Hospitalier",49.588331,3.002125,0,0,OUS:SA:CTP-OUS5040002,Europe/Paris,,OUS, +OUS:SP:5040003,1,"Chevalet",49.582279,2.998541,0,0,OUS:SA:CTP-OUS5040003,Europe/Paris,,OUS, +OUS:SP:5040004,1,"Cité Scolaire",49.583707,3.015314,0,0,OUS:SA:CTP-OUS5040004,Europe/Paris,,OUS, +OUS:SP:5040005,1,"Coizel",49.586124,3.009373,0,0,OUS:SA:CTP-OUS5040005,Europe/Paris,,OUS, +OUS:SP:5040006,1,"Alsace Lorraine",49.586425,2.998909,0,0,OUS:SA:CTP-OUS5040006,Europe/Paris,,OUS, +OUS:SP:5040007,1,"Ernest Noël Cinéma",49.58022,3.009197,0,0,OUS:SA:CTP-OUS5040007,Europe/Paris,,OUS, +OUS:SP:5040008,1,"Faubourg d'Amiens Collège Eluard",49.584129,2.99587,0,0,OUS:SA:CTP-OUS5040008,Europe/Paris,,OUS, +OUS:SP:5040009,1,"Faubourg de Chauny",49.578986,3.017908,0,0,OUS:SA:CTP-OUS5040009,Europe/Paris,,OUS, +OUS:SP:5040010,1,"Gare de Noyon",49.577907,3.006004,0,0,OUS:SA:CTP-OUS5040010,Europe/Paris,,OUS, +OUS:SP:5040011,1,"Maréchal Leclerc",49.581774,3.00756,0,0,OUS:SA:CTP-OUS5040011,Europe/Paris,,OUS, +OUS:SP:5040012,1,"Goele",49.592293,3.013313,0,0,OUS:SA:CTP-OUS5040012,Europe/Paris,,OUS, +OUS:SP:5040013,1,"Grimaldi République",49.582721,3.002862,0,0,OUS:SA:CTP-OUS5040013,Europe/Paris,,OUS, +OUS:SP:5040014,1,"Happlincourt",49.589402,3.013084,0,0,OUS:SA:CTP-OUS5040014,Europe/Paris,,OUS, +OUS:SP:5040015,1,"Jean Jaurès",49.573476,2.988529,0,0,OUS:SA:CTP-OUS5040015,Europe/Paris,,OUS, +OUS:SP:5040016,1,"Kennedy",49.575191,2.998071,0,0,OUS:SA:CTP-OUS5040016,Europe/Paris,,OUS, +OUS:SP:5040017,1,"Landrimont",49.580489,3.012509,0,0,OUS:SA:CTP-OUS5040017,Europe/Paris,,OUS, +OUS:SP:5040018,1,"Mont Renaud",49.571166,2.977436,0,0,OUS:SA:CTP-OUS5040018,Europe/Paris,,OUS, +OUS:SP:5040019,1,"Moulin du Chatelain",49.590892,2.992953,0,0,OUS:SA:CTP-OUS5040019,Europe/Paris,,OUS, +OUS:SP:5040020,1,"Orroire Ecole",49.57419,3.012575,0,0,OUS:SA:CTP-OUS5040020,Europe/Paris,,OUS, +OUS:SP:5040021,1,"Orroire Hesdin",49.570513,3.018781,0,0,OUS:SA:CTP-OUS5040021,Europe/Paris,,OUS, +OUS:SP:5040022,1,"Orroire Joncquoy",49.569664,3.025117,0,0,OUS:SA:CTP-OUS5040022,Europe/Paris,,OUS, +OUS:SP:5040023,1,"Place Saint Jacques",49.579074,2.992576,0,0,OUS:SA:CTP-OUS5040023,Europe/Paris,,OUS, +OUS:SP:5040024,1,"Campus Inovia",49.598719,3.006062,0,0,OUS:SA:CTP-OUS5040024,Europe/Paris,,OUS, +OUS:SP:5040025,1,"Rue de Paris",49.579895,2.996922,0,0,OUS:SA:CTP-OUS5040025,Europe/Paris,,OUS, +OUS:SP:5040026,1,"Saint Barthélémy Dumontois",49.584815,3.004541,0,0,OUS:SA:CTP-OUS5040026,Europe/Paris,,OUS, +OUS:SP:5040027,1,"Saint Blaise",49.574256,3.00682,0,0,OUS:SA:CTP-OUS5040027,Europe/Paris,,OUS, +OUS:SP:5040028,1,"Saint Eloi",49.579975,3.002723,0,0,OUS:SA:CTP-OUS5040028,Europe/Paris,,OUS, +OUS:SP:5040029,1,"Saint Exupéry Ecole",49.580462,2.992552,0,0,OUS:SA:CTP-OUS5040029,Europe/Paris,,OUS, +OUS:SP:5040030,1,"Saint Siméon Maison de Quartier",49.580911,3.01851,0,0,OUS:SA:CTP-OUS5040030,Europe/Paris,,OUS, +OUS:SP:5040031,1,"Tarlefesse",49.597939,3.015522,0,0,OUS:SA:CTP-OUS5040031,Europe/Paris,,OUS, +OUS:SP:5040032,1,"Vauquelin",49.587461,2.99332,0,0,OUS:SA:CTP-OUS5040032,Europe/Paris,,OUS, +OUS:SP:5040033,1,"Zone Industrielle",49.574386,3.020091,0,0,OUS:SA:CTP-OUS5040033,Europe/Paris,,OUS, +OUS:SP:5040034,1,"Carnot",49.577723,3.000709,0,0,OUS:SA:CTP-OUS5040034,Europe/Paris,,OUS, +OUS:SP:5040035,1,"Charmolue",49.580456,2.995366,0,0,OUS:SA:CTP-OUS5040035,Europe/Paris,,OUS, +OUS:SP:5040036,1,"Mony Paul Eluard",49.583911,3.000716,0,0,OUS:SA:CTP-OUS5040036,Europe/Paris,,OUS, +OUS:SP:5040037,1,"ESAT Leopold Bellan",49.573268,3.026337,0,0,OUS:SA:CTP-OUS5040037,Europe/Paris,,OUS, +OUS:SP:5040038,1,"Chevalet",49.582606,2.998433,0,0,OUS:SA:CTP-OUS5040038,Europe/Paris,,OUS, +OUS:SP:5040041,1,"Gare de Noyon",49.577841,3.005832,0,0,OUS:SA:CTP-OUS5040010,Europe/Paris,,OUS, +OUS:SP:5040043,1,"Jean Bouin",49.576442,2.993491,0,0,OUS:SA:CTP-OUS5040043,Europe/Paris,,OUS, +OUS:SP:5040044,1,"Chemin de ronde",49.587852,2.997796,0,0,OUS:SA:CTP-OUS5040044,Europe/Paris,,OUS, +OUS:SP:5040045,1,"Moulin Saint-Blaise",49.575958,3.003071,0,0,OUS:SA:CTP-OUS5040045,Europe/Paris,,OUS, +OUS:SP:5040046,1,"L'Orée du Bois",49.583295,3.021084,0,0,OUS:SA:CTP-OUS5040046,Europe/Paris,,OUS, +OYY:SP:4010001,1,"Office de Tourisme",49.194368,2.472841,0,0,OYY:SA:CTP4010001,Europe/Paris,,OYY, +OYY:SP:4010003,1,"Boussac",49.169779,2.453469,0,0,OYY:SA:CTP4010003,Europe/Paris,,OYY, +OYY:SP:4010004,1,"Centre culturel",49.193306,2.46682,0,0,OYY:SA:CTP4010004,Europe/Paris,,OYY, +OYY:SP:4010005,1,"Collège des Bourgognes",49.202765,2.467927,0,0,OYY:SA:CTP4010005,Europe/Paris,,OYY, +OYY:SP:4010006,1,"Château",49.191488,2.485116,0,0,OYY:SA:CTP4010006,Europe/Paris,,OYY, +OYY:SP:4010008,1,"Cimetière St Pierre",49.187577,2.486942,0,0,OYY:SA:CTP4010008,Europe/Paris,,OYY, +OYY:SP:4010009,1,"Clinique des Jockeys",49.17991,2.457,0,0,OYY:SA:CTP4010009,Europe/Paris,,OYY, +OYY:SP:4010010,1,"Eglise",49.176612,2.457609,0,0,OYY:SA:CTP4010010,Europe/Paris,,OYY, +OYY:SP:4010011,1,"Gare Arrivée",49.188308,2.459994,0,0,OYY:SA:CTP4010011,Europe/Paris,,OYY, +OYY:SP:4010012,1,"Gendarmerie",49.171935,2.453501,0,0,OYY:SA:CTP4010012,Europe/Paris,,OYY, +OYY:SP:4010013,1,"Lefébure",49.201641,2.460739,0,0,OYY:SA:CTP4015013,Europe/Paris,,OYY, +OYY:SP:4010014,1,"Lycée J.Rostand",49.181539,2.463007,0,0,OYY:SA:CTP4010014,Europe/Paris,,OYY, +OYY:SP:4010015,1,"Magdeleine",49.174261,2.455301,0,0,OYY:SA:CTP4010015,Europe/Paris,,OYY, +OYY:SP:4010016,1,"Mairie",49.19241,2.464624,0,0,OYY:SA:CTP4010016,Europe/Paris,,OYY, +OYY:SP:4010017,1,"Notre dame / Musée du cheval",49.194514,2.478681,0,0,OYY:SA:CTP4010017,Europe/Paris,,OYY, +OYY:SP:4010018,1,"Parc W Boitsfort",49.197428,2.46387,0,0,OYY:SA:CTP4010018,Europe/Paris,,OYY, +OYY:SP:4010019,1,"Place Omer Vallon",49.194196,2.465725,0,0,OYY:SA:CTP4010019,Europe/Paris,,OYY, +OYY:SP:4010020,1,"Quai de la Canardière",49.195348,2.463905,0,0,OYY:SA:CTP4015020,Europe/Paris,,OYY, +OYY:SP:4010022,1,"Square Marie Amélie",49.178569,2.45967,0,0,OYY:SA:CTP4010022,Europe/Paris,,OYY, +OYY:SP:4015001,1,"Office de Tourisme",49.19437,2.471346,0,0,OYY:SA:CTP4010001,Europe/Paris,,OYY, +OYY:SP:4015002,1,"Avenue Bourbon",49.180463,2.46112,0,0,OYY:SA:CTP4015002,Europe/Paris,,OYY, +OYY:SP:4015003,1,"Boussac",49.169905,2.453496,0,0,OYY:SA:CTP4010003,Europe/Paris,,OYY, +OYY:SP:4015007,1,"Cimetière Bourillon",49.189411,2.462807,0,0,OYY:SA:CTP4015007,Europe/Paris,,OYY, +OYY:SP:4015011,1,"Gare Départ",49.18812,2.459994,0,0,OYY:SA:CTP4010011,Europe/Paris,,OYY, +OYY:SP:4015013,1,"Lefébure",49.201811,2.460972,0,0,OYY:SA:CTP4015013,Europe/Paris,,OYY, +OYY:SP:4015016,1,"Mairie",49.192634,2.464858,0,0,OYY:SA:CTP4010016,Europe/Paris,,OYY, +OYY:SP:4015017,1,"Notre dame / Musée du cheval",49.194514,2.478791,0,0,OYY:SA:CTP4010017,Europe/Paris,,OYY, +OYY:SP:4015018,1,"Parc W. Boitsfort",49.198623,2.462319,0,0,OYY:SA:CTP4015018,Europe/Paris,,OYY, +OYY:SP:4015019,1,"Place Omer Vallon",49.194196,2.465986,0,0,OYY:SA:CTP4010019,Europe/Paris,,OYY, +OYY:SP:4015020,1,"Quai de la Canardière",49.195294,2.463987,0,0,OYY:SA:CTP4015020,Europe/Paris,,OYY, +OYY:SP:4015021,1,"Résidence le Morny",49.177121,2.461242,0,0,OYY:SA:CTP4015021,Europe/Paris,,OYY, +OYY:SP:4015023,1,"Suffren",49.173791,2.457849,0,0,OYY:SA:CTP4015023,Europe/Paris,,OYY, +OYY:SP:4015030,1,"Avenue de Sylvie",49.183005,2.462312,0,0,OYY:SA:CTP4015030,Europe/Paris,,OYY, +OYY:SP:4015031,1,"Place Omer Vallon",49.194637,2.465699,0,0,OYY:SA:CTP4010019,Europe/Paris,,OYY, +OYY:SP:4015036,1,"Gare départ",49.18794,2.460007,0,0,OYY:SA:CTP4010011,Europe/Paris,,OYY, +OYY:SP:4015037,1,"Victor Hugo - Gare",49.187175,2.458565,0,0,OYY:SA:CTP4015037,Europe/Paris,,OYY, +SIN:SP:OCECarTER-80142927,1,"Gare de Kehl",48.576507,7.808029,-1,0,SIN:SA:OCE80142927,Europe/Paris,,SIN, +SIN:SP:OCECarTER-80253914,1,"Gare de Saarbrucken-Hbf",49.240676,6.990983,-1,0,SIN:SA:OCE80253914,Europe/Paris,,SIN, +SIN:SP:OCECarTER-82001000,1,"Gare de Luxembourg",49.599652,6.134007,-1,0,SIN:SA:OCE82001000,Europe/Paris,,SIN, +SIN:SP:OCECarTER-82006030,1,"Gare de Bettembourg",49.515996,6.099371,-1,0,SIN:SA:OCE82006030,Europe/Paris,,SIN, +SIN:SP:OCECarTER-85000109,1,"Gare de Basel-SBB",47.547038,7.589567,-1,0,SIN:SA:OCE85000109,Europe/Paris,,SIN, +SIN:SP:OCECarTER-85011031,1,"Gare de Vallorbe-Cff",46.712229,6.370815,-1,0,SIN:SA:OCE85011031,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87023655,1,"Vézelay",47.463587,3.741643,-1,0,SIN:SA:OCE87023655,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87107409,1,"Vignory Centre",48.278333,5.101387,-1,0,SIN:SA:OCE87107409,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87107417,1,"Chaumont-Hôpital",48.119716,5.139157,-1,0,SIN:SA:OCE87107417,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87107425,1,"Bologne-Salle-des-Fêtes",48.199715,5.141379,-1,0,SIN:SA:OCE87107425,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87107433,1,"Soncourt",48.252218,5.116931,-1,0,SIN:SA:OCE87107433,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87107458,1,"Gudmont-Centre",48.342494,5.136931,-1,0,SIN:SA:OCE87107458,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87107466,1,"Eurville-Mairie",48.585276,5.037212,-1,0,SIN:SA:OCE87107466,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87107474,1,"St-Dizier-Godard-Jeanso",48.631387,4.950264,-1,0,SIN:SA:OCE87107474,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87107482,1,"Chatonrupt",48.488885,5.127497,-1,0,SIN:SA:OCE87107482,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87107490,1,"Fronville-Lotissement",48.404721,5.154718,-1,0,SIN:SA:OCE87107490,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87107508,1,"Marnaval-Eglise",48.62527,4.989994,-1,0,SIN:SA:OCE87107508,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87108829,1,"Sedan-Place-Calonne",49.699714,4.944158,-1,0,SIN:SA:OCE87108829,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87110346,1,"Ervy-le-Châtel-Halle",48.041658,3.911108,-1,0,SIN:SA:OCE87110346,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87110361,1,"Villeneuve-au-Chemin",48.089996,3.851378,-1,0,SIN:SA:OCE87110361,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87110379,1,"Fays-La-Chapelle",48.129717,4.018883,-1,0,SIN:SA:OCE87110379,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87111567,1,"Rodange.",27.140973,-3.404561,-1,0,SIN:SA:OCE87111567,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87112326,1,"Carignan Rue Paix",49.635832,5.160544,-1,0,SIN:SA:OCE87112326,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87112334,1,"Wé",49.640831,5.153887,-1,0,SIN:SA:OCE87112334,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87112342,1,"Fromy",49.596383,5.249437,-1,0,SIN:SA:OCE87112342,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87112714,1,"Margut Village",49.585269,5.265268,-1,0,SIN:SA:OCE87112714,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87112771,1,"St-Hilaire-sous-Romilly",48.515828,3.656109,-1,0,SIN:SA:OCE87112771,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87113001,1,"Gare de Paris-Est",48.87657,2.359151,-1,0,SIN:SA:OCE87113001,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87113746,1,"Gare de Nogent-le-Perreux",48.838721,2.494077,-1,0,SIN:SA:OCE87113746,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87113795,1,"Gare de Villiers/M.-Plessis-Tr.",48.82318,2.542323,-1,0,SIN:SA:OCE87113795,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87116582,1,"Gare de Château-Thierry",49.038171,3.409266,-1,0,TRN:SA:DUA8711658,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87116673,1,"Gare de La Ferté-Milon",49.179556,3.121028,-1,0,TRN:SA:DUA8711667,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87116681,1,"Neuilly-St-Front",49.187092,3.270741,-1,0,SIN:SA:OCE87116681,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87116699,1,"Oulchy-Brény",49.187631,3.35255,-1,0,SIN:SA:OCE87116699,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87117119,1,"Auxon Eglise",48.103054,3.918328,-1,0,SIN:SA:OCE87117119,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87117135,1,"Rehainviller",48.562601,6.469999,-1,0,SIN:SA:OCE87117135,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87117143,1,"St-Pierremont",48.437495,6.576381,-1,0,SIN:SA:OCE87117143,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87117267,1,"Orville",47.564566,5.213052,-1,0,SIN:SA:OCE87117267,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87117275,1,"Torcenay",47.815703,5.463167,-1,0,SIN:SA:OCE87117275,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87117341,1,"Vernois-sur-Mance",47.845704,5.785817,-1,0,SIN:SA:OCE87117341,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87117366,1,"Blondefontaine",47.877692,5.867,-1,0,SIN:SA:OCE87117366,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87117374,1,"Raincourt",47.859999,5.88583,-1,0,SIN:SA:OCE87117374,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87117382,1,"Gevigney",47.79888,5.931665,-1,0,SIN:SA:OCE87117382,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87117390,1,"Baulay",47.786524,6.009752,-1,0,SIN:SA:OCE87117390,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87117408,1,"Amoncourt",47.735747,6.05986,-1,0,SIN:SA:OCE87117408,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87117416,1,"Chaux-les-Port",47.712938,6.038739,-1,0,SIN:SA:OCE87117416,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87117424,1,"Charmoille",47.662773,6.107495,-1,0,SIN:SA:OCE87117424,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87117432,1,"Pusey",47.651939,6.126942,-1,0,SIN:SA:OCE87117432,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87117440,1,"Martigny-les-Gerbonvaux",48.444794,5.792706,-1,0,SIN:SA:OCE87117440,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87117457,1,"Autreville",48.484057,5.849124,-1,0,SIN:SA:OCE87117457,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87117465,1,"Allamps-Esat",48.542793,5.79684,-1,0,SIN:SA:OCE87117465,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87117473,1,"Mont-le-Vignoble-Centre",48.612419,5.841278,-1,0,SIN:SA:OCE87117473,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87117499,1,"Hestroff",49.262272,6.433705,-1,0,SIN:SA:OCE87117499,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87117507,1,"Vaudreching",49.285177,6.524443,-1,0,SIN:SA:OCE87117507,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87117515,1,"Alzing",49.279032,6.552215,-1,0,SIN:SA:OCE87117515,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87117523,1,"Hargarten-aux-Mines",49.225273,6.609162,-1,0,SIN:SA:OCE87117523,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87117564,1,"Villette",49.474162,5.545541,-1,0,SIN:SA:OCE87117564,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87117572,1,"Colmey-Flabeuville",49.457652,5.557194,-1,0,SIN:SA:OCE87117572,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87117598,1,"Montigny-sur-Chiers",49.478761,5.669634,-1,0,SIN:SA:OCE87117598,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87117606,1,"Lexy",49.499003,5.727229,-1,0,SIN:SA:OCE87117606,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87117689,1,"Hertzing",48.686471,6.950671,-1,0,SIN:SA:OCE87117689,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87117697,1,"Bébing",48.711785,6.998485,-1,0,SIN:SA:OCE87117697,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87117903,1,"Bouilly (Mairie)",48.193611,3.998598,-1,0,SIN:SA:OCE87117903,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87117911,1,"Chamoy-Carrefour D1/D23",48.116937,3.973048,-1,0,SIN:SA:OCE87117911,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87117929,1,"Jeugny (Eglise)",48.130275,4.036379,-1,0,SIN:SA:OCE87117929,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87117937,1,"Montigny-les-Monts-Mair",48.103333,3.946105,-1,0,SIN:SA:OCE87117937,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87117945,1,"St-Germain (Aube) M.",27.140973,-3.404561,-1,0,SIN:SA:OCE87117945,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87117952,1,"St Jean Bonneval (Egl.)",48.171664,4.048877,-1,0,SIN:SA:OCE87117952,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87117960,1,"St Phal (Mon. Morts)",48.120549,3.996385,-1,0,SIN:SA:OCE87117960,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87117978,1,"Villery",48.171102,4.018606,-1,0,SIN:SA:OCE87117978,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87117986,1,"Neuvy-Sautour-RN",48.042774,3.792765,-1,0,SIN:SA:OCE87117986,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87117994,1,"Brienon Mairie",47.991943,3.616936,-1,0,SIN:SA:OCE87117994,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87118000,1,"Gare de Troyes",48.29503,4.065384,-1,0,SIN:SA:OCE87118000,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87118067,1,"St-Lyé",48.358808,3.999129,-1,0,SIN:SA:OCE87118067,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87118075,1,"Payns",48.382222,3.97749,-1,0,SIN:SA:OCE87118075,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87118083,1,"Savières",48.412215,3.947215,-1,0,SIN:SA:OCE87118083,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87118091,1,"St-Mesmin",48.4388,3.925694,-1,0,SIN:SA:OCE87118091,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87118117,1,"Vallant-St-Georges",48.466079,3.899576,-1,0,SIN:SA:OCE87118117,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87118133,1,"Chatres",48.499081,3.855185,-1,0,SIN:SA:OCE87118133,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87118141,1,"Maizières-Gde-Parroisse",48.505066,3.78596,-1,0,SIN:SA:OCE87118141,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87118158,1,"Gare de Romilly-sur-Seine",48.514173,3.728332,-1,0,SIN:SA:OCE87118158,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87118182,1,"Marnay-sur-Seine",48.50942,3.561349,-1,0,SIN:SA:OCE87118182,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87118190,1,"Gare de Nogent-sur-Seine",48.497837,3.493708,-1,0,SIN:SA:OCE87118190,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87118257,1,"Gare de Vendeuvre (Aube)",48.240336,4.467188,-1,0,SIN:SA:OCE87118257,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87118299,1,"Gare de Bar-sur-Aube",48.23855,4.706838,-1,0,SIN:SA:OCE87118299,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87118414,1,"Ervy-le-Châtel-Gare",48.045023,3.922395,-1,0,SIN:SA:OCE87118414,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87131961,1,"Gare de Brion-Montréal-La Cluse",46.175782,5.55851,-1,0,SIN:SA:OCE87131961,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87134296,1,"Rouvray",47.424998,4.102215,-1,0,SIN:SA:OCE87134296,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87139501,1,"Troyes-St-Martin",48.303328,4.06249,-1,0,SIN:SA:OCE87139501,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87139519,1,"La Chapelle-St-Luc",48.313049,4.047777,-1,0,SIN:SA:OCE87139519,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87139527,1,"Barberey-Centre-Comm",48.334158,4.023879,-1,0,SIN:SA:OCE87139527,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87139535,1,"Barberey-Route-de-Méry",48.338883,4.030546,-1,0,SIN:SA:OCE87139535,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87139550,1,"Mesgrigny",48.486386,3.8836,-1,0,SIN:SA:OCE87139550,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87139568,1,"Méry-sur-Seine",48.508603,3.889157,-1,0,SIN:SA:OCE87139568,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87139584,1,"Les Granges",48.501382,3.780554,-1,0,SIN:SA:OCE87139584,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87139592,1,"Romilly-P-Sémard",48.506381,3.750829,-1,0,SIN:SA:OCE87139592,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87139600,1,"Romilly-Gornet-Boivin",48.511942,3.741385,-1,0,SIN:SA:OCE87139600,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87139659,1,"Troyes-Chambre-Commerce",48.291106,4.071103,-1,0,SIN:SA:OCE87139659,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87139667,1,"Troyes-Lombards",48.278053,4.065822,-1,0,SIN:SA:OCE87139667,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87139683,1,"St-André-Reine-Blanche",48.274716,4.059717,-1,0,SIN:SA:OCE87139683,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87139733,1,"Rosières",48.256665,4.064713,-1,0,SIN:SA:OCE87139733,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87139774,1,"St-Léger",48.235277,4.078885,-1,0,SIN:SA:OCE87139774,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87139824,1,"Moussey",48.214441,4.094437,-1,0,SIN:SA:OCE87139824,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87139857,1,"Roncenay",48.191102,4.065275,-1,0,SIN:SA:OCE87139857,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87139865,1,"Lirey-La-Chapelle",48.156381,4.04221,-1,0,SIN:SA:OCE87139865,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87139873,1,"Machy",48.139992,4.044165,-1,0,SIN:SA:OCE87139873,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87139899,1,"Le Cheminot",48.147496,4.010272,-1,0,SIN:SA:OCE87139899,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87139907,1,"Coursan-en-Othe",48.079717,3.830265,-1,0,SIN:SA:OCE87139907,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87139998,1,"Toutry",47.499521,4.12221,-1,0,SIN:SA:OCE87139998,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87141002,1,"Gare de Nancy-Ville",48.689782,6.174272,-1,0,SIN:SA:OCE87141002,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87141044,1,"Gare de Toul",48.679041,5.880577,-1,0,SIN:SA:OCE87141044,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87141069,1,"Gare de Liverdun",48.749397,6.061636,-1,0,SIN:SA:OCE87141069,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87141077,1,"Gare de Frouard",48.755524,6.144248,-1,0,SIN:SA:OCE87141077,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87141085,1,"Gare de Champigneulles",48.735091,6.169047,-1,0,SIN:SA:OCE87141085,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87141143,1,"Gare de Mont-sur-Meurthe",48.559946,6.44984,-1,0,SIN:SA:OCE87141143,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87141150,1,"Gare de Lunéville",48.587994,6.497035,-1,0,SIN:SA:OCE87141150,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87141226,1,"Xermaménil",48.533236,6.461248,-1,0,SIN:SA:OCE87141226,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87141234,1,"Gerbéviller",48.497216,6.51055,-1,0,SIN:SA:OCE87141234,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87141242,1,"Moyen",48.483426,6.566433,-1,0,SIN:SA:OCE87141242,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87141259,1,"Soulosse",48.400713,5.731763,-1,0,SIN:SA:OCE87141259,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87141267,1,"Magnières",48.445293,6.565552,-1,0,SIN:SA:OCE87141267,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87141291,1,"Gare de Neufchâteau",48.357259,5.690179,-1,0,SIN:SA:OCE87141291,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87141523,1,"Gare de Pont-St-Vincent",48.602471,6.102964,-1,0,SIN:SA:OCE87141523,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87141531,1,"Bainville",48.586548,6.099358,-1,0,SIN:SA:OCE87141531,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87141549,1,"Xeuilley",48.569708,6.101966,-1,0,SIN:SA:OCE87141549,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87141556,1,"Pierreville",48.549229,6.123817,-1,0,SIN:SA:OCE87141556,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87141564,1,"Pulligny-Autrey",48.536024,6.13763,-1,0,SIN:SA:OCE87141564,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87141572,1,"Ceintrey",48.523902,6.157423,-1,0,SIN:SA:OCE87141572,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87141598,1,"Tantonville",48.483925,6.129099,-1,0,SIN:SA:OCE87141598,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87141606,1,"Vézelise",48.480657,6.100419,-1,0,SIN:SA:OCE87141606,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87141622,1,"Praye-sous-Vaudémont",48.432946,6.100703,-1,0,SIN:SA:OCE87141622,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87141648,1,"Diarville",48.397397,6.126434,-1,0,SIN:SA:OCE87141648,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87141705,1,"Domgermain-Centre.",48.645117,5.834001,-1,0,SIN:SA:OCE87141705,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87141713,1,"Charmes-la-Côte-St-Flor",48.628973,5.835266,-1,0,SIN:SA:OCE87141713,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87141721,1,"Blénod-lès-Toul-Les-Nau",48.599503,5.843529,-1,0,SIN:SA:OCE87141721,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87141739,1,"Bulligny-Centre",48.576463,5.851268,-1,0,SIN:SA:OCE87141739,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87141747,1,"Lamerey",48.221665,6.2386,-1,0,SIN:SA:OCE87141747,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87141754,1,"Barisey-la-Côte",48.534725,5.840462,-1,0,SIN:SA:OCE87141754,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87141788,1,"Gare de Pompey",48.773245,6.130667,-1,0,SIN:SA:OCE87141788,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87141796,1,"Gare de Marbache",48.801207,6.10931,-1,0,SIN:SA:OCE87141796,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87141804,1,"Gare de Belleville",48.819461,6.101753,-1,0,SIN:SA:OCE87141804,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87141812,1,"Gare de Dieulouard",48.843705,6.071669,-1,0,SIN:SA:OCE87141812,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87141820,1,"Gare de Pont-à-Mousson",48.900276,6.050802,-1,0,SIN:SA:OCE87141820,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87142000,1,"Gare de Chaumont",48.109454,5.134445,-1,0,SIN:SA:OCE87142000,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87142042,1,"Luzy-sur-Marne",48.060276,5.180277,-1,0,SIN:SA:OCE87142042,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87142091,1,"Gare de Langres",47.877255,5.34468,-1,0,SIN:SA:OCE87142091,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87142125,1,"Gare de Culmont-Chalindrey",47.810232,5.443216,-1,0,SIN:SA:OCE87142125,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87142133,1,"Chaudenay (Haute-Marne)",47.817407,5.490823,-1,0,SIN:SA:OCE87142133,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87142174,1,"Vitrey-Vernois",47.832454,5.781196,-1,0,SIN:SA:OCE87142174,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87142182,1,"Barges",47.862585,5.846754,-1,0,SIN:SA:OCE87142182,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87142240,1,"Gare de Froncles",48.296653,5.141589,-1,0,SIN:SA:OCE87142240,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87142273,1,"Gare de Donjeux",48.365953,5.148406,-1,0,SIN:SA:OCE87142273,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87142406,1,"Merrey (Haute-Marne)",48.054082,5.594866,-1,0,SIN:SA:OCE87142406,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87142497,1,"Damblain",48.093964,5.657025,-1,0,SIN:SA:OCE87142497,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87142554,1,"Châtillon-sur-Seine",47.87019,4.571746,-1,0,SIN:SA:OCE87142554,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87142612,1,"Prauthoy",47.683207,5.293521,-1,0,SIN:SA:OCE87142612,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87142620,1,"Vaux-sous-Aubigny",47.656763,5.288917,-1,0,SIN:SA:OCE87142620,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87142646,1,"Selongey",47.575529,5.203177,-1,0,SIN:SA:OCE87142646,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87142661,1,"Maatz",47.702046,5.447827,-1,0,SIN:SA:OCE87142661,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87142687,1,"Champlitte",47.617099,5.512465,-1,0,SIN:SA:OCE87142687,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87142695,1,"Neuvelle-les-Champlitte",47.585646,5.545273,-1,0,SIN:SA:OCE87142695,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87142703,1,"Oyrières",47.532031,5.56372,-1,0,SIN:SA:OCE87142703,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87142711,1,"Chargey-les-Gray",47.487217,5.576663,-1,0,SIN:SA:OCE87142711,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87142786,1,"Til-Chatel-Mairie",47.515636,5.175507,-1,0,SIN:SA:OCE87142786,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87143024,1,"Gare de Vraincourt-Vieville",48.237101,5.123848,-1,0,SIN:SA:OCE87143024,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87143107,1,"Le Pailly",47.791664,5.414719,-1,0,SIN:SA:OCE87143107,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87143206,1,"Rivières-le-Bois",47.737773,5.441665,-1,0,SIN:SA:OCE87143206,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87143214,1,"Grandchamp",47.723325,5.450823,-1,0,SIN:SA:OCE87143214,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87143222,1,"Leffond",47.662532,5.463552,-1,0,SIN:SA:OCE87143222,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87143305,1,"Arc-les-Gray",47.456096,5.589146,-1,0,SIN:SA:OCE87143305,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87143354,1,"Coublanc",47.69111,5.459557,-1,0,SIN:SA:OCE87143354,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87143362,1,"Ecuelle",47.55223,5.555345,-1,0,SIN:SA:OCE87143362,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87143420,1,"Dampierre-sur-Salon",47.555271,5.678048,-1,0,SIN:SA:OCE87143420,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87143594,1,"Roville-aux-Chênes",48.385262,6.602697,-1,0,SIN:SA:OCE87143594,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87144006,1,"Gare de Epinal",48.178078,6.441555,-1,0,SIN:SA:OCE87144006,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87144014,1,"Gare de St-Dié-des-Vosges",48.282238,6.948056,-1,0,SIN:SA:OCE87144014,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87144030,1,"Gare de Docelles-Cheniménil",48.141471,6.606979,-1,0,SIN:SA:OCE87144030,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87144048,1,"Gare de Lépanges",48.17268,6.67216,-1,0,SIN:SA:OCE87144048,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87144055,1,"Gare de Charmes (Vosges)",48.378659,6.301303,-1,0,SIN:SA:OCE87144055,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87144105,1,"Gare de Raves-Ban-de-Laveline",48.265719,7.037474,-1,0,SIN:SA:OCE87144105,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87144154,1,"Gare de Bruyères (Vosges)",48.20475,6.719211,-1,0,SIN:SA:OCE87144154,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87144162,1,"Gare de Laveline-devant-Bruyère",48.185524,6.751638,-1,0,SIN:SA:OCE87144162,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87144188,1,"Gare de Biffontaine",48.205873,6.806999,-1,0,SIN:SA:OCE87144188,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87144196,1,"Gare de Corcieux-Vanémont",48.198435,6.877644,-1,0,SIN:SA:OCE87144196,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87144212,1,"Mirecourt",48.299226,6.129346,-1,0,SIN:SA:OCE87144212,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87144220,1,"Hymont-Mattaincourt",48.270735,6.14054,-1,0,SIN:SA:OCE87144220,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87144279,1,"Vittel",48.202459,5.942257,-1,0,SIN:SA:OCE87144279,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87144287,1,"Contrexéville",48.17998,5.890984,-1,0,SIN:SA:OCE87144287,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87144295,1,"Martigny-les-Bains",48.108694,5.825823,-1,0,SIN:SA:OCE87144295,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87144303,1,"Lamarche (Vosges)",48.089978,5.76027,-1,0,SIN:SA:OCE87144303,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87144311,1,"Rozières-sur-Mouzon",48.120892,5.705341,-1,0,SIN:SA:OCE87144311,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87144345,1,"Gare de Provenchères-sur-Fave",48.304653,7.085157,-1,0,SIN:SA:OCE87144345,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87144410,1,"Gare de Arches",48.119961,6.528009,-1,0,SIN:SA:OCE87144410,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87144451,1,"Gare de Remiremont",48.016367,6.599041,-1,0,SIN:SA:OCE87144451,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87144469,1,"Vecoux",47.978727,6.636332,-1,0,SIN:SA:OCE87144469,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87144477,1,"Gare de St-Léonard (Vosges)",48.217703,6.942358,-1,0,SIN:SA:OCE87144477,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87144519,1,"Rupt-sur-Moselle",47.92397,6.659957,-1,0,SIN:SA:OCE87144519,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87144527,1,"Ferdrupt",47.907734,6.707536,-1,0,SIN:SA:OCE87144527,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87144535,1,"Ramonchamp",47.892175,6.739542,-1,0,SIN:SA:OCE87144535,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87144543,1,"Le Thillot",47.882071,6.760914,-1,0,SIN:SA:OCE87144543,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87144550,1,"Fresse",47.875741,6.782663,-1,0,SIN:SA:OCE87144550,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87144568,1,"St-Maurice-sur-Moselle",47.854787,6.818736,-1,0,SIN:SA:OCE87144568,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87144634,1,"Vagney",48.009166,6.716272,-1,0,SIN:SA:OCE87144634,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87144659,1,"Zainvillers",47.993952,6.716336,-1,0,SIN:SA:OCE87144659,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87144667,1,"Thiéfosse",47.971802,6.729827,-1,0,SIN:SA:OCE87144667,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87144675,1,"Saulxures-sur-Moselotte",47.948988,6.770857,-1,0,SIN:SA:OCE87144675,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87144691,1,"Cornimont",47.962676,6.8374,-1,0,SIN:SA:OCE87144691,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87144709,1,"Deinvillers",48.422969,6.58175,-1,0,SIN:SA:OCE87144709,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87144725,1,"Rambervillers",48.340631,6.634851,-1,0,SIN:SA:OCE87144725,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87144733,1,"Jeanménil",48.329993,6.674988,-1,0,SIN:SA:OCE87144733,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87144758,1,"Autrey",48.296467,6.687948,-1,0,SIN:SA:OCE87144758,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87144774,1,"Dompaire",48.220559,6.227686,-1,0,SIN:SA:OCE87144774,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87144782,1,"Brouvelieures",48.235242,6.731518,-1,0,SIN:SA:OCE87144782,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87146019,1,"Bocquegney",48.218331,6.30777,-1,0,SIN:SA:OCE87146019,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87146035,1,"Racécourt",48.257083,6.193229,-1,0,SIN:SA:OCE87146035,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87146043,1,"Velotte-et-Tatignécourt",48.263105,6.171184,-1,0,SIN:SA:OCE87146043,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87146225,1,"Hielle (Rupt)",47.963755,6.634213,-1,0,SIN:SA:OCE87146225,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87146233,1,"Maxonchamp",47.94568,6.635435,-1,0,SIN:SA:OCE87146233,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87146241,1,"Dommartin (Vosges)",47.998602,6.644434,-1,0,SIN:SA:OCE87146241,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87146290,1,"Blanchifontaine",48.33861,6.658604,-1,0,SIN:SA:OCE87146290,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87146308,1,"Frémifontaine",48.276503,6.692577,-1,0,SIN:SA:OCE87146308,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87151761,1,"Ouge",47.796645,5.704103,-1,0,SIN:SA:OCE87151761,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87171009,1,"Gare de Reims",49.259066,4.024017,-1,0,SIN:SA:OCE87171009,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87171330,1,"Gare de Fismes",49.31085,3.682292,-1,0,SIN:SA:OCE87171330,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87171348,1,"Bazoches",49.305277,3.61325,-1,0,SIN:SA:OCE87171348,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87171355,1,"Mont-Notre-Dame",49.296667,3.576533,-1,0,SIN:SA:OCE87171355,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87171371,1,"Fère-en-Tardenois",49.208562,3.504261,-1,0,SIN:SA:OCE87171371,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87171512,1,"Gare de Dormans",49.079251,3.641728,-1,0,SIN:SA:OCE87171512,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87171553,1,"Gare de Epernay",49.046521,3.96021,-1,0,SIN:SA:OCE87171553,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87171611,1,"Gare de Val-de-Vesle (Marne)",49.178405,4.221674,-1,0,SIN:SA:OCE87171611,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87171629,1,"Gare de Prunay",49.198825,4.183555,-1,0,SIN:SA:OCE87171629,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87171637,1,"Gare de Sillery",49.203362,4.144066,-1,0,SIN:SA:OCE87171637,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87171645,1,"Gare de Sept-Saulx",49.151483,4.25648,-1,0,SIN:SA:OCE87171645,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87171926,1,"Gare de Champagne-Ardenne",49.21164,3.988788,-1,0,SIN:SA:OCE87171926,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87172007,1,"Gare de Charleville-Mézières",49.76742,4.724849,-1,0,SIN:SA:OCE87172007,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87172155,1,"Gare de Mohon",49.752647,4.733252,-1,0,SIN:SA:OCE87172155,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87172189,1,"Gare de Lumes-Halte",49.733176,4.782873,-1,0,SIN:SA:OCE87172189,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87172213,1,"Gare de Nouvion-sur-Meuse",49.696976,4.794932,-1,0,SIN:SA:OCE87172213,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87172221,1,"Gare de Vrigne-Meuse",49.70068,4.843068,-1,0,SIN:SA:OCE87172221,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87172239,1,"Gare de Donchery",49.698119,4.874566,-1,0,SIN:SA:OCE87172239,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87172254,1,"Gare de Sedan",49.694861,4.929989,-1,0,SIN:SA:OCE87172254,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87172304,1,"Pont-Maugis",49.670284,4.955128,-1,0,SIN:SA:OCE87172304,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87172312,1,"Bazeilles",49.672205,4.9866,-1,0,SIN:SA:OCE87172312,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87172320,1,"Douzy",49.671665,5.036666,-1,0,SIN:SA:OCE87172320,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87172338,1,"Pouru-St-Rémy",49.67327,5.082375,-1,0,SIN:SA:OCE87172338,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87172346,1,"Sachy",49.669161,5.130821,-1,0,SIN:SA:OCE87172346,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87172353,1,"Gare de Carignan",49.62852,5.168468,-1,0,SIN:SA:OCE87172353,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87172387,1,"Blagny",49.619637,5.189692,-1,0,SIN:SA:OCE87172387,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87172395,1,"Linay",49.61527,5.221109,-1,0,SIN:SA:OCE87172395,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87172411,1,"Margut-Fromy",49.590646,5.257004,-1,0,SIN:SA:OCE87172411,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87172700,1,"Remilly-Aillicourt",49.655386,4.990211,-1,0,SIN:SA:OCE87172700,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87173302,1,"Wadelincourt",49.685275,4.94083,-1,0,SIN:SA:OCE87173302,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87173401,1,"La Ferté-sur-Chiers",49.57555,5.239708,-1,0,SIN:SA:OCE87173401,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87174003,1,"Gare de Châlons-en-Champagne",48.955509,4.348954,-1,0,SIN:SA:OCE87174003,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87174276,1,"Gare de Vitry-le-François",48.717733,4.587232,-1,0,SIN:SA:OCE87174276,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87174326,1,"Blesme-Haussignemont",48.721554,4.752511,-1,0,SIN:SA:OCE87174326,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87174409,1,"Gare de Mourmelon-le-Petit",49.131225,4.317717,-1,0,SIN:SA:OCE87174409,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87174425,1,"Uxegney",48.194543,6.368601,-1,0,SIN:SA:OCE87174425,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87174433,1,"Gare de Bouy",49.090872,4.353519,-1,0,SIN:SA:OCE87174433,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87174441,1,"Gare de St-Hilaire-au-Temple",49.056345,4.379006,-1,0,SIN:SA:OCE87174441,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87174458,1,"Darnieulles",48.199046,6.349891,-1,0,SIN:SA:OCE87174458,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87174482,1,"Mattaincourt",48.279668,6.136535,-1,0,SIN:SA:OCE87174482,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87174490,1,"St-Amé",48.024994,6.669711,-1,0,SIN:SA:OCE87174490,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87174508,1,"Le Syndicat",48.024869,6.683771,-1,0,SIN:SA:OCE87174508,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87175000,1,"Gare de St-Dizier",48.642806,4.947186,-1,0,SIN:SA:OCE87175000,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87175042,1,"Gare de Bar-le-Duc",48.773631,5.167016,-1,0,SIN:SA:OCE87175042,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87175091,1,"Gare de Joinville",48.44475,5.144287,-1,0,SIN:SA:OCE87175091,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87175109,1,"Curel",48.492221,5.135552,-1,0,SIN:SA:OCE87175109,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87175117,1,"Gare de Chevillon",48.524273,5.111825,-1,0,SIN:SA:OCE87175117,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87175133,1,"Gare de Bayard",48.551521,5.076273,-1,0,SIN:SA:OCE87175133,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87175208,1,"Villiers-en-Lieu",48.663352,4.89748,-1,0,SIN:SA:OCE87175208,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87175216,1,"St-Eulien",48.678227,4.868118,-1,0,SIN:SA:OCE87175216,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87175257,1,"Gare de Commercy",48.765868,5.588885,-1,0,SIN:SA:OCE87175257,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87175778,1,"Gare de Verdun",49.165423,5.380066,-1,0,SIN:SA:OCE87175778,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87175794,1,"Gare de Etain",49.207707,5.639482,-1,0,SIN:SA:OCE87175794,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87181131,1,"Gare de Graffenwald",47.780296,7.225576,-1,0,SIN:SA:OCE87181131,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87181552,1,"Gare de St-Gilles-L (Haut-Rhin)",48.075345,7.26056,-1,0,SIN:SA:OCE87181552,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87182014,1,"Gare de Colmar",48.073154,7.347084,-1,0,SIN:SA:OCE87182014,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87182063,1,"Gare de Mulhouse",47.741798,7.34285,-1,0,SIN:SA:OCE87182063,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87182089,1,"Gare de Habsheim",47.737589,7.417936,-1,0,SIN:SA:OCE87182089,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87182139,1,"Gare de St-Louis (Haut-Rhin)",47.590366,7.55553,-1,0,SIN:SA:OCE87182139,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87182238,1,"Gare de Altkirch",47.627106,7.239591,-1,0,SIN:SA:OCE87182238,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87182253,1,"Gare de Dannemarie",47.627404,7.123805,-1,0,SIN:SA:OCE87182253,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87182329,1,"Gare de Herrlisheim-près-Colmar",48.017573,7.320563,-1,0,SIN:SA:OCE87182329,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87182337,1,"Gare de Rouffach",47.960089,7.312419,-1,0,SIN:SA:OCE87182337,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87182360,1,"Gare de Walbach-la-Forge",48.058625,7.234064,-1,0,SIN:SA:OCE87182360,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87182378,1,"Gare de Wihr-au-Val-Soultzbach",48.04621,7.209664,-1,0,SIN:SA:OCE87182378,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87182394,1,"Gare de Munster",48.038247,7.132837,-1,0,SIN:SA:OCE87182394,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87182410,1,"Gare de Cernay (Haut-Rhin)",47.801708,7.173937,-1,0,SIN:SA:OCE87182410,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87182568,1,"Gare de Thann",47.809107,7.107,-1,0,SIN:SA:OCE87182568,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87182584,1,"Gare de Willer-sur-Thur",47.842615,7.069192,-1,0,SIN:SA:OCE87182584,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87182592,1,"Gare de Moosch",47.86109,7.050591,-1,0,SIN:SA:OCE87182592,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87182618,1,"Gare de Wesserling",47.889741,6.997841,-1,0,SIN:SA:OCE87182618,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87182642,1,"Gare de Kruth",47.922469,6.969584,-1,0,SIN:SA:OCE87182642,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87182667,1,"Gare de Lutterbach (Haut-Rhin)",47.757923,7.276764,-1,0,SIN:SA:OCE87182667,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87182717,1,"Gare de Raedersheim",47.886989,7.284056,-1,0,SIN:SA:OCE87182717,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87182725,1,"Gare de Merxheim",47.913117,7.302415,-1,0,SIN:SA:OCE87182725,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87182733,1,"Gare de Muhlbach-sur-Munster",48.024584,7.087677,-1,0,SIN:SA:OCE87182733,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87182816,1,"Gare de Metzeral",48.013586,7.073178,-1,0,SIN:SA:OCE87182816,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87182881,1,"Gare de Thann-Saint-Jacques",47.813107,7.094012,-1,0,SIN:SA:OCE87182881,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87184002,1,"Gare de Belfort-Ville",47.632447,6.853924,-1,0,SIN:SA:OCE87184002,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87184267,1,"Gare de Petit-Croix",47.610113,6.994637,-1,0,SIN:SA:OCE87184267,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87184275,1,"Gare de Montreux-Vieux",47.617858,7.025393,-1,0,SIN:SA:OCE87184275,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87184507,1,"Gare de Héricourt",47.573218,6.769411,-1,0,SIN:SA:OCE87184507,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87184523,1,"Gare de Montbéliard-Ville",47.510544,6.801315,-1,0,SIN:SA:OCE87184523,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87185009,1,"Gare de Vesoul",47.617799,6.151767,-1,0,SIN:SA:OCE87185009,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87185108,1,"Port-d'Atelier-Amance",47.762474,6.039972,-1,0,SIN:SA:OCE87185108,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87185124,1,"Port-sur-Saône",47.688329,6.044996,-1,0,SIN:SA:OCE87185124,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87185157,1,"Grattery",47.680725,6.083344,-1,0,SIN:SA:OCE87185157,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87185165,1,"Vaivre",47.63287,6.101362,-1,0,SIN:SA:OCE87185165,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87185173,1,"Noidans-lès-Vesoul",47.618803,6.126894,-1,0,SIN:SA:OCE87185173,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87185207,1,"Colombier",47.664099,6.210149,-1,0,SIN:SA:OCE87185207,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87185249,1,"Gare de Lure",47.683249,6.492557,-1,0,SIN:SA:OCE87185249,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87185280,1,"Montureux-les-Baulay",47.814096,5.984973,-1,0,SIN:SA:OCE87185280,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87185314,1,"Gare de Ronchamp",47.698972,6.623448,-1,0,SIN:SA:OCE87185314,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87185330,1,"St-Loup-sur-Semouse",47.885633,6.275746,-1,0,SIN:SA:OCE87185330,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87185348,1,"Gare de Champagney",47.702952,6.701246,-1,0,SIN:SA:OCE87185348,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87185355,1,"Jussey",47.836792,5.903474,-1,0,SIN:SA:OCE87185355,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87185405,1,"Mont-le-Vernois",47.607245,6.04614,-1,0,SIN:SA:OCE87185405,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87185421,1,"Velle-le-Châtel",47.601017,6.045212,-1,0,SIN:SA:OCE87185421,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87185439,1,"Razé",47.582802,6.011189,-1,0,SIN:SA:OCE87185439,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87185447,1,"Noidans-le-Ferroux",47.570731,5.953729,-1,0,SIN:SA:OCE87185447,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87185454,1,"Fresne-St-Mamès",47.5486,5.859783,-1,0,SIN:SA:OCE87185454,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87185488,1,"Vellexon",47.561622,5.80587,-1,0,SIN:SA:OCE87185488,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87185512,1,"Seveux",47.556594,5.748604,-1,0,SIN:SA:OCE87185512,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87185520,1,"Savoyeux-Mercey",47.546675,5.745495,-1,0,SIN:SA:OCE87185520,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87185538,1,"Autet",47.541866,5.693945,-1,0,SIN:SA:OCE87185538,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87185546,1,"Montureux",47.506037,5.637755,-1,0,SIN:SA:OCE87185546,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87185553,1,"Vereux",47.521268,5.64698,-1,0,SIN:SA:OCE87185553,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87185579,1,"Gray",47.451552,5.57849,-1,0,SIN:SA:OCE87185579,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87185595,1,"Gare de Luxeuil-les-Bains",47.814919,6.372675,-1,0,SIN:SA:OCE87185595,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87185629,1,"Gare de Aillevillers",47.913865,6.337389,-1,0,SIN:SA:OCE87185629,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87191007,1,"Gare de Thionville",49.353923,6.168855,-1,0,SIN:SA:OCE87191007,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87191106,1,"Gare de Maizières-lès-Metz",49.215223,6.158484,-1,0,SIN:SA:OCE87191106,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87191114,1,"Gare de Hagondange",49.253812,6.164402,-1,0,SIN:SA:OCE87191114,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87191130,1,"Gare de Uckange",49.303334,6.15658,-1,0,SIN:SA:OCE87191130,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87191163,1,"Gare de Hettange-Grande",49.40764,6.1568,-1,0,SIN:SA:OCE87191163,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87191213,1,"Knutange-Nilvange",49.340765,6.039121,-1,0,SIN:SA:OCE87191213,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87191239,1,"Gare de Hayange",49.330412,6.073163,-1,0,SIN:SA:OCE87191239,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87191296,1,"Metzeresche",49.299188,6.304982,-1,0,SIN:SA:OCE87191296,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87191304,1,"Yutz",49.36113,6.208928,-1,0,SIN:SA:OCE87191304,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87191346,1,"Kédange",49.305607,6.33251,-1,0,SIN:SA:OCE87191346,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87191379,1,"Ebersviller",49.274601,6.411122,-1,0,SIN:SA:OCE87191379,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87191387,1,"Anzeling",49.262586,6.458432,-1,0,SIN:SA:OCE87191387,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87191395,1,"Freistroff",49.278649,6.493273,-1,0,SIN:SA:OCE87191395,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87191403,1,"Aboncourt",49.261034,6.346529,-1,0,SIN:SA:OCE87191403,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87191411,1,"Remelfang",49.272123,6.504515,-1,0,SIN:SA:OCE87191411,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87191601,1,"Gare de Basse-Ham",49.380299,6.23447,-1,0,SIN:SA:OCE87191601,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87191684,1,"Gare de Auboué",49.216148,5.971047,-1,0,SIN:SA:OCE87191684,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87191692,1,"Gare de Homécourt",49.218358,5.999515,-1,0,SIN:SA:OCE87191692,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87191700,1,"Gare de Joeuf",49.22508,6.017915,-1,0,SIN:SA:OCE87191700,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87191718,1,"Gare de Moyeuvre-Grande",49.247012,6.043197,-1,0,SIN:SA:OCE87191718,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87191734,1,"Gare de Rombas-Clouange",49.256043,6.099254,-1,0,SIN:SA:OCE87191734,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87191742,1,"Gare de Gandrange-Amnéville",49.260891,6.135794,-1,0,SIN:SA:OCE87191742,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87192039,1,"Gare de Metz-Ville",49.109787,6.177198,-1,0,SIN:SA:OCE87192039,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87192088,1,"Gare de Woippy",49.148358,6.155677,-1,0,SIN:SA:OCE87192088,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87192104,1,"Aubecourt",48.995552,6.428886,-1,0,SIN:SA:OCE87192104,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87192120,1,"Lucy",48.942322,6.468105,-1,0,SIN:SA:OCE87192120,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87192138,1,"Chenois",48.959425,6.499004,-1,0,SIN:SA:OCE87192138,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87192146,1,"Holacourt",48.972723,6.514797,-1,0,SIN:SA:OCE87192146,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87192153,1,"Arraincourt",48.970926,6.531397,-1,0,SIN:SA:OCE87192153,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87192179,1,"Racrange",48.925555,6.661939,-1,0,SIN:SA:OCE87192179,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87192187,1,"Bermering",48.931381,6.709719,-1,0,SIN:SA:OCE87192187,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87192195,1,"Marimont-lès-Bénestroff",48.889993,6.783881,-1,0,SIN:SA:OCE87192195,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87192237,1,"Gare de Rémilly",49.014066,6.395031,-1,0,SIN:SA:OCE87192237,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87192245,1,"Baudrecourt",48.96132,6.452198,-1,0,SIN:SA:OCE87192245,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87192252,1,"Lesse",48.962518,6.506305,-1,0,SIN:SA:OCE87192252,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87192260,1,"Brulange",48.96954,6.548494,-1,0,SIN:SA:OCE87192260,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87192286,1,"Gare de Morhange",48.936774,6.659093,-1,0,SIN:SA:OCE87192286,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87192401,1,"Gare de Ars-sur-Moselle",49.074565,6.077928,-1,0,SIN:SA:OCE87192401,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87192419,1,"Gare de Ancy-sur-Moselle",49.057435,6.062451,-1,0,SIN:SA:OCE87192419,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87192427,1,"Gare de Novéant",49.028657,6.05203,-1,0,SIN:SA:OCE87192427,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87192435,1,"Gare de Onville",49.01364,5.979094,-1,0,SIN:SA:OCE87192435,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87192468,1,"Gare de Pagny-sur-Moselle",48.985345,6.025174,-1,0,SIN:SA:OCE87192468,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87192476,1,"Gare de Vandières",48.952497,6.038855,-1,0,SIN:SA:OCE87192476,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87192658,1,"Gare de Baroncourt",49.284381,5.700175,-1,0,SIN:SA:OCE87192658,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87192666,1,"Gare de Conflans-Jarny",49.16638,5.868244,-1,0,SIN:SA:OCE87192666,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87192724,1,"Gare de Hatrize",49.193944,5.907503,-1,0,SIN:SA:OCE87192724,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87192732,1,"Gare de Valleroy-Moineville",49.20574,5.935926,-1,0,SIN:SA:OCE87192732,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87192880,1,"Ugny-Meurthe-et-Moselle",49.471984,5.697419,-1,0,SIN:SA:OCE87192880,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87193003,1,"Gare de Forbach",49.189491,6.901849,-1,0,SIN:SA:OCE87193003,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87193110,1,"Baronville",48.934417,6.60861,-1,0,SIN:SA:OCE87193110,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87193128,1,"Vahl-lès-Bénestroff",48.913329,6.786664,-1,0,SIN:SA:OCE87193128,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87193136,1,"Han-sur-Nied",48.990499,6.436376,-1,0,SIN:SA:OCE87193136,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87193144,1,"Hargarten-Falck",49.218802,6.633624,-1,0,SIN:SA:OCE87193144,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87193151,1,"Téterchen",49.227211,6.572298,-1,0,SIN:SA:OCE87193151,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87193169,1,"Brettnach",49.257848,6.563853,-1,0,SIN:SA:OCE87193169,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87193177,1,"Bouzonville",49.289832,6.529747,-1,0,SIN:SA:OCE87193177,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87193219,1,"Merten",49.248719,6.661951,-1,0,SIN:SA:OCE87193219,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87193235,1,"Marville",49.452999,5.458305,-1,0,SIN:SA:OCE87193235,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87193243,1,"Ire-le-Sec",49.476132,5.386516,-1,0,SIN:SA:OCE87193243,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87193250,1,"Gare de Bening",49.138076,6.829009,-1,0,SIN:SA:OCE87193250,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87193268,1,"Peccavillers",48.015553,6.668331,-1,0,SIN:SA:OCE87193268,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87193508,1,"Théding",49.117754,6.889214,-1,0,SIN:SA:OCE87193508,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87193532,1,"Diebling-Centre.",49.109092,6.939875,-1,0,SIN:SA:OCE87193532,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87193540,1,"Gare de Hundling",49.107541,6.981621,-1,0,SIN:SA:OCE87193540,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87193557,1,"Metzing",49.105603,6.957756,-1,0,SIN:SA:OCE87193557,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87193565,1,"Ippling",49.106363,7.004946,-1,0,SIN:SA:OCE87193565,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87193607,1,"Welferding",49.112602,7.046235,-1,0,SIN:SA:OCE87193607,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87193615,1,"Gare de Sarreguemines",49.107505,7.068873,-1,0,SIN:SA:OCE87193615,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87193623,1,"Gare de Remelfing",49.091438,7.09129,-1,0,SIN:SA:OCE87193623,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87193631,1,"Gare de Sarreinsming",49.086181,7.11183,-1,0,SIN:SA:OCE87193631,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87193649,1,"Gare de Zetting",49.078333,7.134496,-1,0,SIN:SA:OCE87193649,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87193656,1,"Gare de Wittring",49.055964,7.141142,-1,0,SIN:SA:OCE87193656,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87193664,1,"Gare de Kalhausen",49.034995,7.125484,-1,0,SIN:SA:OCE87193664,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87193672,1,"Gare de Herbitzheim",49.016428,7.081851,-1,0,SIN:SA:OCE87193672,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87193714,1,"Gare de Sarralbe",49.00095,7.035714,-1,0,SIN:SA:OCE87193714,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87193771,1,"Woelfling-Sarreguemines",49.094869,7.190733,-1,0,SIN:SA:OCE87193771,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87193789,1,"Rohrbach-les-Bitche",49.055356,7.26436,-1,0,SIN:SA:OCE87193789,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87193797,1,"Petit-Rederching",49.049382,7.299487,-1,0,SIN:SA:OCE87193797,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87193813,1,"Lemberg (Moselle)",49.00072,7.3801,-1,0,SIN:SA:OCE87193813,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87193821,1,"Bitche",49.049123,7.431601,-1,0,SIN:SA:OCE87193821,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87193839,1,"Bitche-Camp",49.052865,7.477499,-1,0,SIN:SA:OCE87193839,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87194001,1,"Gare de Longwy",49.513026,5.769596,-1,0,SIN:SA:OCE87194001,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87194019,1,"Ebring",49.116599,6.910996,-1,0,SIN:SA:OCE87194019,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87194209,1,"Gare de Montmédy",49.522788,5.371044,-1,0,SIN:SA:OCE87194209,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87194258,1,"Charency-Vezin",49.487538,5.513344,-1,0,SIN:SA:OCE87194258,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87194274,1,"Gare de Longuyon",49.444275,5.604598,-1,0,SIN:SA:OCE87194274,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87194357,1,"Gare de Audun-le-Roman",49.366686,5.891201,-1,0,SIN:SA:OCE87194357,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87194365,1,"Fontoy",49.355792,5.989775,-1,0,SIN:SA:OCE87194365,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87194449,1,"Rehon",49.50863,5.755632,-1,0,SIN:SA:OCE87194449,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87194456,1,"Cons-la-Grandville",49.486196,5.70557,-1,0,SIN:SA:OCE87194456,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87194480,1,"La Roche-sous-Montigny",49.476382,5.657475,-1,0,SIN:SA:OCE87194480,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87194498,1,"Viviers-sur-Chiers",49.471276,5.633208,-1,0,SIN:SA:OCE87194498,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87199604,1,"Gros-Réderching",49.068039,7.219696,-1,0,SIN:SA:OCE87199604,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87199612,1,"Schwangerbach",49.032556,7.408492,-1,0,SIN:SA:OCE87199612,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87199620,1,"Destry",48.943426,6.584706,-1,0,SIN:SA:OCE87199620,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87204677,1,"Cussy-les-Forges",47.4713,4.025991,-1,0,SIN:SA:OCE87204677,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87204685,1,"Huis Renaud (l')",47.2001,4.27231,-1,0,SIN:SA:OCE87204685,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87212027,1,"Gare de Strasbourg",48.585172,7.733968,-1,0,SIN:SA:OCE87212027,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87212142,1,"Gare de Mommenheim",48.755663,7.642139,-1,0,SIN:SA:OCE87212142,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87212167,1,"Gare de Hochfelden",48.755437,7.571964,-1,0,SIN:SA:OCE87212167,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87212183,1,"Gare de Dettwiller",48.751711,7.465417,-1,0,SIN:SA:OCE87212183,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87212225,1,"Gare de Saverne",48.744779,7.362152,-1,0,SIN:SA:OCE87212225,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87212266,1,"Gare de Fegersheim-Lipsheim",48.490943,7.672556,-1,0,SIN:SA:OCE87212266,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87212308,1,"Gare de Bischheim",48.61165,7.742136,-1,0,SIN:SA:OCE87212308,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87212316,1,"Gare de La Wantzenau",48.665081,7.824465,-1,0,STE:SA:OCE87212316,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87212324,1,"Gare de Kilstett",48.679216,7.854015,-1,0,SIN:SA:OCE87212324,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87212332,1,"Gare de Gambsheim",48.694941,7.87892,-1,0,SIN:SA:OCE87212332,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87212340,1,"Gare de Herrlisheim (Bas-Rhin)",48.727519,7.910374,-1,0,SIN:SA:OCE87212340,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87212357,1,"Gare de Drusenheim",48.765977,7.947479,-1,0,SIN:SA:OCE87212357,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87212365,1,"Gare de Sessenheim",48.796075,7.988694,-1,0,SIN:SA:OCE87212365,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87212373,1,"Gare de Rountzenheim",48.820027,8.01138,-1,0,SIN:SA:OCE87212373,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87212407,1,"Gare de Roeschwoog",48.833395,8.029565,-1,0,SIN:SA:OCE87212407,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87212415,1,"Gare de Roppenheim",48.851169,8.06231,-1,0,SIN:SA:OCE87212415,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87212431,1,"Gare de Seltz",48.89644,8.098003,-1,0,SIN:SA:OCE87212431,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87212464,1,"Gare de Lauterbourg",48.967255,8.182819,-1,0,SIN:SA:OCE87212464,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87213058,1,"Gare de Haguenau",48.813433,7.782371,-1,0,SIN:SA:OCE87213058,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87213108,1,"Gare de Schweighouse (Bas-Rhin)",48.828558,7.742343,-1,0,SIN:SA:OCE87213108,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87213132,1,"Pfaffenhoffen",48.843559,7.615192,-1,0,SIN:SA:OCE87213132,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87213165,1,"Gare de Obermodern",48.84255,7.547196,-1,0,SIN:SA:OCE87213165,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87213207,1,"Gare de Mertzwiller",48.871997,7.678352,-1,0,SIN:SA:OCE87213207,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87213223,1,"Gare de Gundershoffen",48.905376,7.653103,-1,0,SIN:SA:OCE87213223,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87213231,1,"Reichshoffen-Usines",48.919457,7.652459,-1,0,SIN:SA:OCE87213231,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87213249,1,"Gare de Reichshoffen-Ville",48.930713,7.657977,-1,0,SIN:SA:OCE87213249,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87213256,1,"Gare de Niederbronn",48.952354,7.633796,-1,0,SIN:SA:OCE87213256,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87213298,1,"Bannstein",49.004991,7.502957,-1,0,SIN:SA:OCE87213298,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87213421,1,"Gare de Soultz-sous-Forêts",48.934514,7.882145,-1,0,SIN:SA:OCE87213421,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87213470,1,"Gare de Wissembourg",49.031533,7.950306,-1,0,SIN:SA:OCE87213470,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87213603,1,"Gare de Marienthal",48.781823,7.823388,-1,0,SIN:SA:OCE87213603,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87213611,1,"Gare de Bischwiller",48.765425,7.851189,-1,0,SIN:SA:OCE87213611,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87213744,1,"Gare de Wingen-sur-Moder",48.920058,7.380586,-1,0,SIN:SA:OCE87213744,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87213769,1,"Wimmenau",48.911274,7.427249,-1,0,SIN:SA:OCE87213769,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87213785,1,"Gare de Ingwiller",48.871759,7.476802,-1,0,SIN:SA:OCE87213785,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87213827,1,"Ettendorf-Gare-Routière",48.80917,7.584605,-1,0,SIN:SA:OCE87213827,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87213884,1,"Niedermodern/Uberach",48.846527,7.627873,-1,0,SIN:SA:OCE87213884,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87214056,1,"Gare de Sélestat",48.259638,7.442103,-1,0,SIN:SA:OCE87214056,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87214122,1,"Gare de Benfeld",48.373796,7.584374,-1,0,SIN:SA:OCE87214122,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87214148,1,"Gare de Erstein",48.422869,7.638134,-1,0,SIN:SA:OCE87214148,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87214205,1,"Gare de Scherwiller",48.286584,7.43054,-1,0,SIN:SA:OCE87214205,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87214213,1,"Gare de Dambach-la-Ville",48.321184,7.4355,-1,0,SIN:SA:OCE87214213,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87214247,1,"Gare de Barr",48.403046,7.456908,-1,0,SIN:SA:OCE87214247,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87214254,1,"Gare de Gertwiller",48.413295,7.465911,-1,0,SIN:SA:OCE87214254,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87214270,1,"Gare de Goxwiller",48.432595,7.478705,-1,0,SIN:SA:OCE87214270,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87214296,1,"Gare de Bischoffsheim",48.48678,7.498058,-1,0,SIN:SA:OCE87214296,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87214320,1,"Gare de Rosheim",48.504968,7.491276,-1,0,SIN:SA:OCE87214320,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87214338,1,"Gare de Dorlisheim",48.524289,7.492819,-1,0,SIN:SA:OCE87214338,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87214528,1,"Gare de Entzheim-Aéroport",48.547002,7.62795,-1,0,SIN:SA:OCE87214528,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87214536,1,"Gare de Duppigheim",48.544067,7.587094,-1,0,SIN:SA:OCE87214536,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87214544,1,"Gare de Duttlenheim",48.545603,7.565647,-1,0,SIN:SA:OCE87214544,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87214577,1,"Gare de Molsheim",48.537525,7.500206,-1,0,SIN:SA:OCE87214577,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87214627,1,"Gare de Heiligenberg-Mollkirch",48.527489,7.381501,-1,0,SIN:SA:OCE87214627,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87214635,1,"Gare de Urmatt",48.525535,7.338268,-1,0,SIN:SA:OCE87214635,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87214676,1,"Gare de Wisches",48.507634,7.27018,-1,0,SIN:SA:OCE87214676,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87214684,1,"Gare de Russ-Hersbach",48.498292,7.252274,-1,0,SIN:SA:OCE87214684,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87214692,1,"Gare de Schirmeck-la-Broque",48.480459,7.216195,-1,0,SIN:SA:OCE87214692,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87214726,1,"Gare de Rothau",48.45899,7.207337,-1,0,SIN:SA:OCE87214726,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87214742,1,"Gare de St-Blaise-Roche-Poutay",48.407599,7.165357,-1,0,SIN:SA:OCE87214742,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87214783,1,"Gare de Saales",48.347087,7.110546,-1,0,SIN:SA:OCE87214783,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87214841,1,"Ste-Croix-aux-Mines",48.261719,7.230034,-1,0,SIN:SA:OCE87214841,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87214940,1,"Le Ménilot",48.239166,4.298606,-1,0,SIN:SA:OCE87214940,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87214965,1,"Forges-de-Clairvaux(Les",48.159992,4.789996,-1,0,SIN:SA:OCE87214965,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87214981,1,"Daudes",48.244998,4.183884,-1,0,SIN:SA:OCE87214981,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87215012,1,"Gare de Sarrebourg",48.737941,7.052781,-1,0,SIN:SA:OCE87215012,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87215038,1,"Marnay-sur-Marne",48.015548,5.241382,-1,0,SIN:SA:OCE87215038,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87215061,1,"Chaumont-Quartier-Foch",48.096662,5.145277,-1,0,SIN:SA:OCE87215061,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87215103,1,"Gare de Igney-Avricourt",48.646398,6.805818,-1,0,SIN:SA:OCE87215103,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87215111,1,"Nouvel-Avricourt",48.651707,6.821629,-1,0,SIN:SA:OCE87215111,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87215129,1,"Réchicourt-le-Château",48.665157,6.840662,-1,0,SIN:SA:OCE87215129,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87215137,1,"Gondrexange",27.140973,-3.404561,-1,0,SIN:SA:OCE87215137,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87215145,1,"Héming",48.691743,6.970887,-1,0,SIN:SA:OCE87215145,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87215152,1,"Arzviller",48.717693,7.164208,-1,0,SIN:SA:OCE87215152,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87215160,1,"Gare de Lutzelbourg",48.729855,7.251401,-1,0,SIN:SA:OCE87215160,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87215178,1,"Hommarting",48.748183,7.137154,-1,0,SIN:SA:OCE87215178,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87215202,1,"Villiers-le-Sec(Mairie)",48.108051,5.065276,-1,0,SIN:SA:OCE87215202,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87215210,1,"Villiers-le-Sec(Poste)",48.109164,5.066933,-1,0,SIN:SA:OCE87215210,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87215228,1,"Buxieres-les-Villiers",48.105,5.036934,-1,0,SIN:SA:OCE87215228,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87215236,1,"St-Jean-de-Bassel",48.803542,6.991207,-1,0,SIN:SA:OCE87215236,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87215244,1,"Gosselming",48.792855,7.000837,-1,0,SIN:SA:OCE87215244,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87215251,1,"Dolving",48.773806,7.019313,-1,0,SIN:SA:OCE87215251,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87215277,1,"Cutting",48.84611,6.832491,-1,0,SIN:SA:OCE87215277,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87215285,1,"Domnon-les-Dieuze",48.859715,6.821938,-1,0,SIN:SA:OCE87215285,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87215293,1,"Bassing",48.867771,6.801103,-1,0,SIN:SA:OCE87215293,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87215301,1,"Nébing",48.904685,6.811019,-1,0,SIN:SA:OCE87215301,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87215319,1,"Loudrefing",48.851329,6.877591,-1,0,SIN:SA:OCE87215319,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87215327,1,"Mittersheim",48.86189,6.941759,-1,0,SIN:SA:OCE87215327,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87215335,1,"Gare de Berthelming",48.81027,7.00836,-1,0,SIN:SA:OCE87215335,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87215343,1,"Oberstinzel",48.792631,7.03509,-1,0,SIN:SA:OCE87215343,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87215350,1,"Sarraltroff-Gare-SNCF",48.770065,7.065766,-1,0,SIN:SA:OCE87215350,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87215368,1,"Bettborn",48.801137,7.020567,-1,0,SIN:SA:OCE87215368,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87215418,1,"Niederstinzel",48.86355,7.031314,-1,0,SIN:SA:OCE87215418,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87215426,1,"Wolfskirchen",48.879265,7.071438,-1,0,SIN:SA:OCE87215426,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87215434,1,"Bischtroff-sur-Sarre",48.903465,7.073502,-1,0,SIN:SA:OCE87215434,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87215442,1,"Sarrewerden",48.923883,7.082161,-1,0,SIN:SA:OCE87215442,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87215459,1,"Gare de Sarre-Union",48.9366,7.085419,-1,0,SIN:SA:OCE87215459,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87215483,1,"Gare de Schopperten",48.945649,7.055715,-1,0,SIN:SA:OCE87215483,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87215491,1,"Gare de Keskastel",48.965412,7.048837,-1,0,SIN:SA:OCE87215491,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87215533,1,"Orges",48.080828,4.926654,-1,0,SIN:SA:OCE87215533,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87215541,1,"Pont-la-Ville",48.083611,4.890833,-1,0,SIN:SA:OCE87215541,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87215558,1,"Cirfontaines-en-Azois",48.110549,4.872499,-1,0,SIN:SA:OCE87215558,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87215574,1,"Longchamp-sur-Aujon",48.148056,4.83305,-1,0,SIN:SA:OCE87215574,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87215582,1,"Ville-sous-La-Ferté",48.119997,4.789435,-1,0,SIN:SA:OCE87215582,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87215608,1,"Bar-sur-Aube(Hôpital)",48.230829,4.714999,-1,0,SIN:SA:OCE87215608,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87215616,1,"Bar-sur-Aube(Piscine)",48.241109,4.697217,-1,0,SIN:SA:OCE87215616,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87215624,1,"Ailleville",48.254722,4.682218,-1,0,SIN:SA:OCE87215624,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87215632,1,"Gare de Oermingen",49.001048,7.131929,-1,0,SIN:SA:OCE87215632,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87215665,1,"Gare de Diemeringen",48.941036,7.184781,-1,0,SIN:SA:OCE87215665,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87215699,1,"Gare de Tieffenbach-Struth",48.906027,7.255304,-1,0,SIN:SA:OCE87215699,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87215707,1,"Arsonval",48.268047,4.648888,-1,0,SIN:SA:OCE87215707,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87215731,1,"Trannes",48.302777,4.584722,-1,0,SIN:SA:OCE87215731,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87215756,1,"Bossancourt",48.283605,4.60138,-1,0,SIN:SA:OCE87215756,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87215921,1,"Chanoy",47.924163,5.291666,-1,0,SIN:SA:OCE87215921,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87215939,1,"Magny-Fouchard",48.241663,4.534436,-1,0,SIN:SA:OCE87215939,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87215947,1,"Vendeuvre-Centre",48.237498,4.466939,-1,0,SIN:SA:OCE87215947,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87215988,1,"Lusigny-sur-Barse Centr",48.254719,4.267497,-1,0,SIN:SA:OCE87215988,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87216010,1,"Rouilly-St-Loup-D21",48.262776,4.151105,-1,0,SIN:SA:OCE87216010,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87216028,1,"St-Julien-Villas-Mairie",48.273883,4.100833,-1,0,SIN:SA:OCE87216028,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87216036,1,"Troyes(Bld 14 Juillet)",48.294162,4.079709,-1,0,SIN:SA:OCE87216036,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87216051,1,"Troyes-Victor-Hugo",48.29305,4.06916,-1,0,SIN:SA:OCE87216051,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87216077,1,"Langres-Boulière",47.862777,5.33055,-1,0,SIN:SA:OCE87216077,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87216093,1,"Langres-St-Gilles",47.872774,5.338326,-1,0,SIN:SA:OCE87216093,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87216101,1,"Langres-Bel-Air",47.858604,5.332212,-1,0,SIN:SA:OCE87216101,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87216119,1,"Romilly-S/S SNCF",48.513884,3.729989,-1,0,SIN:SA:OCE87216119,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87216127,1,"Romilly-S/S Hôpital",48.515824,3.715546,-1,0,SIN:SA:OCE87216127,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87216135,1,"Pont-S/S Fleming",48.513053,3.598878,-1,0,SIN:SA:OCE87216135,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87216143,1,"Pont-sur-Seine S.Martin",48.516658,3.597219,-1,0,SIN:SA:OCE87216143,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87216150,1,"Nogent-S/S De Gaulle",48.492216,3.509437,-1,0,SIN:SA:OCE87216150,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87216168,1,"Nogent-sur-Seine-Théât.",48.492494,3.50222,-1,0,SIN:SA:OCE87216168,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87216184,1,"Crancey RN",48.514439,3.639442,-1,0,SIN:SA:OCE87216184,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87217042,1,"Chaumont-Gendarmerie",48.101936,5.144443,-1,0,SIN:SA:OCE87217042,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87217059,1,"Langres-La-Maladière",47.871389,5.326383,-1,0,SIN:SA:OCE87217059,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87218149,1,"Senailly",47.585182,4.266763,-1,0,SIN:SA:OCE87218149,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87276006,1,"Gare de Creil",49.263769,2.46918,-1,0,SIN:SA:OCE87276006,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87276204,1,"Gare de Laigneville",49.292664,2.449433,-1,0,SIN:SA:OCE87276204,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87276212,1,"Gare de Liancourt-Rantigny",49.324758,2.445298,-1,0,SIN:SA:OCE87276212,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87276691,1,"Gare de Compiègne",49.422013,2.823486,-1,0,SIN:SA:OCE87276691,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87276782,1,"Gare de Noyon",49.577341,3.006376,-1,0,SIN:SA:OCE87276782,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87279869,1,"Vouécourt",48.26722,5.136107,-1,0,SIN:SA:OCE87279869,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87279877,1,"Bricon(la Poste)",48.080825,4.977219,-1,0,SIN:SA:OCE87279877,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87279885,1,"Maranville-la-Poste",48.135272,4.862495,-1,0,SIN:SA:OCE87279885,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87279893,1,"Clairvaux D12",48.14611,4.793046,-1,0,SIN:SA:OCE87279893,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87279901,1,"Bayel-Eglise",48.198884,4.776109,-1,0,SIN:SA:OCE87279901,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87279919,1,"Jessains-Eglise",48.296937,4.577772,-1,0,SIN:SA:OCE87279919,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87279927,1,"Vauchonvilliers-Mairie",48.265555,4.5261,-1,0,SIN:SA:OCE87279927,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87279935,1,"La Villeneuve-Ch.RN19",48.23722,4.386385,-1,0,SIN:SA:OCE87279935,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87279943,1,"Montiéramey-Eglise",48.230828,4.307772,-1,0,SIN:SA:OCE87279943,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87279950,1,"Lusigny-sur-Barse RN19",48.253605,4.26083,-1,0,SIN:SA:OCE87279950,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87279968,1,"Montaulin-Mairie",48.252216,4.193888,-1,0,SIN:SA:OCE87279968,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87279976,1,"Rolampont-Mairie",47.951942,5.284996,-1,0,SIN:SA:OCE87279976,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87279984,1,"Humes RN19",47.903883,5.302497,-1,0,SIN:SA:OCE87279984,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87279992,1,"Foulain RN19",48.038329,5.214166,-1,0,SIN:SA:OCE87279992,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87280008,1,"Vesaignes-sur-Marne",47.998332,5.262771,-1,0,SIN:SA:OCE87280008,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87280016,1,"Rouilly-St-Loup-Guérade",48.268331,4.136654,-1,0,SIN:SA:OCE87280016,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87281071,1,"Gare de Calais Fréthun",50.901263,1.811027,-1,0,SIN:SA:OCE87281071,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87281428,1,"Gare de Audruicq",50.875669,2.076354,-1,0,SIN:SA:OCE87281428,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87281436,1,"Gare de Watten Eperlecques",50.825955,2.207706,-1,0,SIN:SA:OCE87281436,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87281444,1,"Gare de St Omer",50.753721,2.266863,-1,0,SIN:SA:OCE87281444,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87282335,1,"Perrigny-sur-Loire",46.530542,3.846116,-1,0,SIN:SA:OCE87282335,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87286005,1,"Gare de Lille Flandres",50.636201,3.071023,-1,0,SIN:SA:OCE87286005,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87286146,1,"Gare de Armentières",50.680765,2.877505,-1,0,SIN:SA:OCE87286146,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87286179,1,"Gare de Bailleul (Nord)",50.729122,2.7345,-1,0,SIN:SA:OCE87286179,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87286203,1,"Gare de Strazeele",50.713446,2.630871,-1,0,SIN:SA:OCE87286203,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87286302,1,"Gare de Hazebrouck",50.725043,2.541526,-1,0,SIN:SA:OCE87286302,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87286500,1,"Gare de Phalempin",50.515368,3.019935,-1,0,SIN:SA:OCE87286500,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87286518,1,"Gare de Seclin",50.548568,3.03496,-1,0,SIN:SA:OCE87286518,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87286526,1,"Gare de Wattignies Templemars",50.579352,3.051536,-1,0,SIN:SA:OCE87286526,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87286534,1,"Gare de Ronchin",50.604528,3.078311,-1,0,SIN:SA:OCE87286534,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87286567,1,"Gare de Rosult",50.456419,3.348858,-1,0,SIN:SA:OCE87286567,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87286583,1,"Gare de Orchies",50.477047,3.24888,-1,0,SIN:SA:OCE87286583,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87286625,1,"Gare de Templeuve",50.528681,3.175601,-1,0,SIN:SA:OCE87286625,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87286641,1,"Gare de Fretin (Nord)",50.559844,3.149519,-1,0,SIN:SA:OCE87286641,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87286849,1,"Gare de Lesquin",50.590703,3.117706,-1,0,SIN:SA:OCE87286849,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87295006,1,"Gare de Maubeuge",50.272805,3.966406,-1,0,SIN:SA:OCE87295006,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87295014,1,"Gare de Jeumont",50.296097,4.086377,-1,0,SIN:SA:OCE87295014,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87295048,1,"Gare de Fourmies",50.015362,4.053588,-1,0,SIN:SA:OCE87295048,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87295055,1,"Gare de Anor",49.985002,4.093351,-1,0,SIN:SA:OCE87295055,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87295063,1,"Gare de Hirson",49.914576,4.084294,-1,0,SIN:SA:OCE87295063,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87295568,1,"Gare de Hautmont",50.253961,3.915171,-1,0,SIN:SA:OCE87295568,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87295600,1,"Gare de Aulnoye Aymeries",50.197327,3.843239,-1,0,SIN:SA:OCE87295600,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87295709,1,"Gare de Sains du Nord",50.0889,4.00159,-1,0,SIN:SA:OCE87295709,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87295733,1,"Gare de Avesnes",50.126688,3.932939,-1,0,SIN:SA:OCE87295733,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87295774,1,"Gare de Dompierre (Nord)",50.146002,3.870976,-1,0,SIN:SA:OCE87295774,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87296004,1,"Gare de St Quentin",49.840022,3.296932,-1,0,SIN:SA:OCE87296004,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87296095,1,"Gare de Marle-sur-Serre",49.747016,3.769653,-1,0,SIN:SA:OCE87296095,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87296129,1,"Gare de Vervins",49.82986,3.893424,-1,0,SIN:SA:OCE87296129,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87296145,1,"Gare de Origny-en-Thiérache",49.890785,4.024008,-1,0,SIN:SA:OCE87296145,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87296244,1,"Gare de Busigny",50.039489,3.446338,-1,0,SIN:SA:OCE87296244,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87296269,1,"Gare de Bohain",49.988477,3.443202,-1,0,SIN:SA:OCE87296269,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87296293,1,"Gare de Fresnoy-le-Grand",49.949746,3.43206,-1,0,SIN:SA:OCE87296293,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87296442,1,"Gare de Tergnier",49.659244,3.297225,-1,0,SIN:SA:OCE87296442,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87296616,1,"Gare de Chauny",49.610199,3.222522,-1,0,SIN:SA:OCE87296616,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87297085,1,"Gare de La Bouteille",49.859656,3.981535,-1,0,SIN:SA:OCE87297085,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87297119,1,"Gare de Verneuil-sur-Serre",49.648669,3.667775,-1,0,SIN:SA:OCE87297119,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87297143,1,"Gare de Dercy-Froidmont",49.702731,3.692036,-1,0,SIN:SA:OCE87297143,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87297150,1,"Gare de Voyenne",49.726126,3.720062,-1,0,SIN:SA:OCE87297150,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87297291,1,"Gare de Barenton-Bugny",49.630657,3.655787,-1,0,SIN:SA:OCE87297291,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87299834,1,"Miannay",50.097221,1.721385,-1,0,SIN:SA:OCE87299834,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87299842,1,"Yzengremer",50.061104,1.521662,-1,0,SIN:SA:OCE87299842,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87312587,1,"Troyes-Quennedey",48.290277,4.089444,-1,0,SIN:SA:OCE87312587,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87313304,1,"Gare de Clermont-de-l'Oise",49.385338,2.417203,-1,0,SIN:SA:OCE87313304,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87313395,1,"Gare de Poix-de-Picardie",49.777802,1.989828,-1,0,SIN:SA:OCE87313395,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87313510,1,"Gare de Beauvais-Gare-SNCF",49.42651,2.088638,-1,0,SIN:SA:OCE87313510,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87313692,1,"Gare de Herchies",49.487955,2.011126,-1,0,SIN:SA:OCE87313692,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87313700,1,"Gare de Milly-sur-Thérain",49.503872,1.98864,-1,0,SIN:SA:OCE87313700,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87313718,1,"Gare de St-Omer-en-Chaussée",49.531041,1.997645,-1,0,SIN:SA:OCE87313718,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87313726,1,"Gare de Marseille-en-Beauvaisis",49.57107,1.954691,-1,0,SIN:SA:OCE87313726,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87313734,1,"Gare de Grandvilliers",49.659393,1.938451,-1,0,SIN:SA:OCE87313734,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87313742,1,"Gare de Feuquières-Broquiers",49.654339,1.830979,-1,0,SIN:SA:OCE87313742,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87313759,1,"Gare de Abancourt",49.685665,1.77418,-1,0,SIN:SA:OCE87313759,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87313874,1,"Gare de Amiens",49.890532,2.308098,-1,0,SIN:SA:OCE87313874,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87314880,1,"Sancerre-Hôtel-du-Remp.",47.332492,2.836944,-1,0,SIN:SA:OCE87314880,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87314898,1,"St-Satur-Place-du-Marc.",47.339717,2.856941,-1,0,SIN:SA:OCE87314898,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87314906,1,"Bannay-Bourg",47.386944,2.885826,-1,0,SIN:SA:OCE87314906,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87316562,1,"Vitrey-sur-Mance",47.813318,5.759423,-1,0,SIN:SA:OCE87316562,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87317057,1,"Gare de Rang du Fl. Verton Ber.",50.41581,1.648077,-1,0,SIN:SA:OCE87317057,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87317065,1,"Gare de Etaples Le Touquet",50.516717,1.642496,-1,0,SIN:SA:OCE87317065,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87317107,1,"Gare de Hesdigneul",50.66089,1.667347,-1,0,SIN:SA:OCE87317107,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87317263,1,"Gare de Calais Ville",50.953456,1.850745,-1,0,SIN:SA:OCE87317263,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87317362,1,"Gare de Abbeville",50.102194,1.824485,-1,0,SIN:SA:OCE87317362,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87317396,1,"Gare de Noyelles-sur-Mer",50.187334,1.704474,-1,0,SIN:SA:OCE87317396,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87317404,1,"Gare de Rue",50.273198,1.675613,-1,0,SIN:SA:OCE87317404,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87317495,1,"Gare de Chépy-Valines",50.06814,1.635563,-1,0,SIN:SA:OCE87317495,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87317503,1,"Gare de Feuquières-en-Vimeu-Fre",50.063305,1.589164,-1,0,SIN:SA:OCE87317503,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87317511,1,"Gare de Woincourt",50.058666,1.537138,-1,0,SIN:SA:OCE87317511,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87317529,1,"Gare de Le Tréport-Mers-Les-B",50.06272,1.376115,-1,0,SIN:SA:OCE87317529,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87317537,1,"Gare de Eu",50.05429,1.416892,-1,0,SIN:SA:OCE87317537,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87317586,1,"Gare de Boulogne Ville",50.715585,1.609806,-1,0,SIN:SA:OCE87317586,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87319756,1,"Vieville",48.239439,5.135272,-1,0,SIN:SA:OCE87319756,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87319764,1,"Montaulin-vallée-Verte",48.256102,4.197217,-1,0,SIN:SA:OCE87319764,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87320408,1,"Jussey-Centre",47.8277,5.901685,-1,0,SIN:SA:OCE87320408,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87324335,1,"Gare de Hirson-Ecoles",49.929656,4.085384,-1,0,SIN:SA:OCE87324335,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87326462,1,"Roôcourt-la-Côte",48.211939,5.145276,-1,0,SIN:SA:OCE87326462,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87338129,1,"Langres-Gendarmerie",47.853051,5.333609,-1,0,SIN:SA:OCE87338129,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87338145,1,"St-Dizier-St-Amand",48.624992,4.967771,-1,0,SIN:SA:OCE87338145,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87338152,1,"Gourzon",48.545829,5.084712,-1,0,SIN:SA:OCE87338152,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87338160,1,"Rachecourt-sur-Marne",48.526937,5.100266,-1,0,SIN:SA:OCE87338160,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87338178,1,"Vecqueville",48.457217,5.143605,-1,0,SIN:SA:OCE87338178,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87338186,1,"Rupt",48.425272,5.139444,-1,0,SIN:SA:OCE87338186,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87338194,1,"Rouvroy-sur-Marne",48.358049,5.147496,-1,0,SIN:SA:OCE87338194,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87338517,1,"Gare de Hoenheim-Tram",48.628233,7.757438,-1,0,SIN:SA:OCE87338517,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87342006,1,"Gare de Béthune",50.521434,2.640398,-1,0,SIN:SA:OCE87342006,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87342014,1,"Gare de Arras",50.286816,2.781126,-1,0,SIN:SA:OCE87342014,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87342089,1,"Gare de Roeux (Pas de Calais)",50.303484,2.894725,-1,0,SIN:SA:OCE87342089,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87342097,1,"Gare de Biache St Vaast",50.316248,2.941551,-1,0,SIN:SA:OCE87342097,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87342113,1,"Gare de Vitry en Artois",50.327123,2.980596,-1,0,SIN:SA:OCE87342113,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87342238,1,"Gare de Lillers",50.561628,2.478962,-1,0,SIN:SA:OCE87342238,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87342279,1,"Gare de Isbergues",50.613953,2.462785,-1,0,SIN:SA:OCE87342279,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87342337,1,"Gare de St Pol sur Ternoise",50.37914,2.33898,-1,0,SIN:SA:OCE87342337,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87342535,1,"Gare de Vis à Marles",50.505006,2.517221,-1,0,SIN:SA:OCE87342535,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87342543,1,"Gare de Calonne Ricouart",50.482759,2.481046,-1,0,SIN:SA:OCE87342543,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87342550,1,"Gare de Pernes-Camblain",50.48025,2.43094,-1,0,SIN:SA:OCE87342550,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87342576,1,"Gare de Vimy",50.374073,2.822405,-1,0,SIN:SA:OCE87342576,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87343004,1,"Gare de Valenciennes",50.363237,3.517116,-1,0,SIN:SA:OCE87343004,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87343103,1,"Gare de St-Amand-les-Eaux",50.44323,3.419355,-1,0,SIN:SA:OCE87343103,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87343301,1,"Gare de Wallers",50.384549,3.393937,-1,0,SIN:SA:OCE87343301,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87343319,1,"Gare de Raismes (Nord)",50.390177,3.479105,-1,0,SIN:SA:OCE87343319,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87343475,1,"Gare de Lourches",50.310203,3.343214,-1,0,SIN:SA:OCE87343475,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87344127,1,"St-Lyé-Libération",48.345555,4.023045,-1,0,SIN:SA:OCE87344127,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87345009,1,"Gare de Douai",50.371675,3.089961,-1,0,SIN:SA:OCE87345009,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87345025,1,"Gare de Lens",50.426766,2.828195,-1,0,SIN:SA:OCE87345025,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87345041,1,"Gare de Liévin",50.434201,2.771725,-1,0,SIN:SA:OCE87345041,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87345108,1,"Gare de Brebières Sud",50.336223,3.0139,-1,0,SIN:SA:OCE87345108,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87345116,1,"Gare de Corbehem",50.342796,3.040407,-1,0,SIN:SA:OCE87345116,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87345207,1,"Gare de Pont de la Deule",50.398133,3.084883,-1,0,SIN:SA:OCE87345207,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87345223,1,"Gare de Leforest",50.427769,3.059703,-1,0,SIN:SA:OCE87345223,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87345249,1,"Gare de Ostricourt",50.4452,3.03202,-1,0,SIN:SA:OCE87345249,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87345256,1,"Gare de Libercourt",50.480161,3.008657,-1,0,SIN:SA:OCE87345256,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87345306,1,"Gare de Montigny en Ostrevent",50.36144,3.188342,-1,0,SIN:SA:OCE87345306,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87345314,1,"Gare de Somain",50.355584,3.277691,-1,0,SIN:SA:OCE87345314,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87345405,1,"Gare de Sin le Noble",50.356621,3.112557,-1,0,SIN:SA:OCE87345405,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87345413,1,"Gare de Cantin",50.312508,3.12194,-1,0,SIN:SA:OCE87345413,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87345421,1,"Gare de Arleux",50.286194,3.120676,-1,0,SIN:SA:OCE87345421,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87345439,1,"Gare de Brunémont",50.27824,3.145901,-1,0,SIN:SA:OCE87345439,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87345447,1,"Gare de Aubigny au Bac",50.268615,3.158755,-1,0,SIN:SA:OCE87345447,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87345520,1,"Gare de Cambrai Ville",50.176611,3.241216,-1,0,SIN:SA:OCE87345520,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87345561,1,"Gare de Caudry",50.11141,3.409737,-1,0,SIN:SA:OCE87345561,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87352047,1,"Gare de Champagnole-PE-Victor",46.74221,5.919807,-1,0,SIN:SA:OCE87352047,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87391300,1,"Gare de Morre",47.22599,6.067367,-1,0,SIN:SA:OCE87391300,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87398735,1,"Bar-sur-Aube (HV)",48.233333,4.706387,-1,0,SIN:SA:OCE87398735,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87402818,1,"Thivet",47.99111,5.280549,-1,0,SIN:SA:OCE87402818,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87402826,1,"Bienville",48.581659,5.045551,-1,0,SIN:SA:OCE87402826,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87405571,1,"Anzeling (Carrefour)",49.263954,6.463133,-1,0,SIN:SA:OCE87405571,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87405605,1,"Brouvelieures (Forges)",48.239167,6.731078,-1,0,SIN:SA:OCE87405605,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87405613,1,"Bruyères (Cameroun)",48.209194,6.721981,-1,0,SIN:SA:OCE87405613,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87405621,1,"Gerbéviller (Rue Gambet",48.500221,6.512376,-1,0,SIN:SA:OCE87405621,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87405639,1,"Magnières (Lotissement)",48.449571,6.563773,-1,0,SIN:SA:OCE87405639,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87405647,1,"Mont-sur-Meurthe (Mont)",48.554785,6.444484,-1,0,SIN:SA:OCE87405647,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87405662,1,"Rambervillers (11 Nov)",48.33319,6.636671,-1,0,SIN:SA:OCE87405662,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87405670,1,"Rambervillers (Boucher)",48.347027,6.635754,-1,0,SIN:SA:OCE87405670,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87405688,1,"Rambervillers (Lunev.)",48.351998,6.631786,-1,0,SIN:SA:OCE87405688,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87405696,1,"Roville-aux-Chènes Lyc.",48.387549,6.604195,-1,0,SIN:SA:OCE87405696,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87405704,1,"Vallois (Centre)",48.463329,6.548602,-1,0,SIN:SA:OCE87405704,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87405712,1,"Barisey-la-Côte Mairie",48.544081,5.842649,-1,0,SIN:SA:OCE87405712,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87405720,1,"Domgermain (Bois-le-C.)",48.659597,5.851558,-1,0,SIN:SA:OCE87405720,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87405746,1,"Neufchâteau (Hôpital)",27.140973,-3.404561,-1,0,SIN:SA:OCE87405746,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87405753,1,"Toul-Gare-Routière",48.674144,5.88637,-1,0,SIN:SA:OCE87405753,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87405779,1,"Cornimont (Hôp. Rural)",47.971975,6.831929,-1,0,SIN:SA:OCE87405779,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87405787,1,"Cornimont (Lansauchamp)",47.985552,6.837488,-1,0,SIN:SA:OCE87405787,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87405795,1,"Cornimont (Perception)",47.963427,6.838711,-1,0,SIN:SA:OCE87405795,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87405803,1,"Dommartin (Franould)",48.004538,6.654918,-1,0,SIN:SA:OCE87405803,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87405811,1,"La-Bresse (Pl Champtel)",48.003214,6.873665,-1,0,SIN:SA:OCE87405811,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87405852,1,"Saulxures/M (Pl Claude)",47.949715,6.784433,-1,0,SIN:SA:OCE87405852,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87405878,1,"Bussang (Gare SNCF)",27.140973,-3.404561,-1,0,SIN:SA:OCE87405878,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87405886,1,"Fresse (La Hardoye)",47.869035,6.79483,-1,0,SIN:SA:OCE87405886,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87405894,1,"Hielle (Lépange)",47.95384,6.626085,-1,0,SIN:SA:OCE87405894,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87405902,1,"Le-Thillot (Pl. Républ)",47.878338,6.766962,-1,0,SIN:SA:OCE87405902,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87405910,1,"Remiremont (Cora)",48.004577,6.612661,-1,0,SIN:SA:OCE87405910,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87405928,1,"Rupt/Moselle (Saulx)",47.90989,6.68912,-1,0,SIN:SA:OCE87405928,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87405944,1,"St-Maurice/M. (Mairie)",47.859165,6.825532,-1,0,SIN:SA:OCE87405944,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87405951,1,"Darnieulles (Stat. Sce)",48.196879,6.36194,-1,0,SIN:SA:OCE87405951,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87405969,1,"Dompaire Rte Mirecourt",48.225453,6.219898,-1,0,SIN:SA:OCE87405969,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87405977,1,"Mattaincourt De Gaulle",48.279718,6.13666,-1,0,SIN:SA:OCE87174482,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87405985,1,"Mattaincourt (MVM)",48.274722,6.136082,-1,0,SIN:SA:OCE87405985,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87405993,1,"Mirecourt (Lycée Agric)",48.293601,6.132109,-1,0,SIN:SA:OCE87405993,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87406009,1,"Audun-le-Roman (H. V).",27.140973,-3.404561,-1,0,SIN:SA:OCE87407098,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87406090,1,"Eoiez-sur-Chiers",49.491365,5.504528,-1,0,SIN:SA:OCE87406090,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87406595,1,"Flabeuville (Carrefour)",49.465921,5.54039,-1,0,SIN:SA:OCE87406595,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87406603,1,"Longuyon (Collège)",49.434433,5.614433,-1,0,SIN:SA:OCE87406603,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87406611,1,"Longuyon (Pont-2-Eaux)",49.448647,5.599512,-1,0,SIN:SA:OCE87406611,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87406637,1,"Montmédy (Centre)",49.519333,5.366518,-1,0,SIN:SA:OCE87406637,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87406645,1,"Vezin",49.482491,5.511099,-1,0,SIN:SA:OCE87406645,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87406660,1,"Cons-la-Grandville Lot.",49.48806,5.708343,-1,0,SIN:SA:OCE87406660,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87406678,1,"Cons-la-Grandville (Mo)",49.484085,5.701623,-1,0,SIN:SA:OCE87406678,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87406686,1,"Lexy (Providence-Usine)",49.496033,5.738489,-1,0,SIN:SA:OCE87406686,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87406694,1,"Lexy (Rue du Square)",49.495559,5.727871,-1,0,SIN:SA:OCE87406694,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87406702,1,"Longuyon (La Machine)",49.453927,5.600428,-1,0,SIN:SA:OCE87406702,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87406710,1,"Longwy-Espace-Bus",49.513643,5.768754,-1,0,SIN:SA:OCE87406710,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87406728,1,"Bouzonville (Alzing)",49.289937,6.535229,-1,0,SIN:SA:OCE87406728,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87406736,1,"Creutzwald G.R.",49.207778,6.697198,-1,0,SIN:SA:OCE87406736,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87406744,1,"Distroff (Eglise)",49.332211,6.263052,-1,0,SIN:SA:OCE87406744,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87406751,1,"Ebersviller (Centre)",49.276342,6.401979,-1,0,SIN:SA:OCE87406751,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87406769,1,"Falck (Rue principale)",49.229234,6.633026,-1,0,SIN:SA:OCE87406769,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87406777,1,"Hombourg (Chapelle)",49.295867,6.343513,-1,0,SIN:SA:OCE87406777,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87406793,1,"Hombourg (Tilleuls)",49.298147,6.338807,-1,0,SIN:SA:OCE87406793,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87406801,1,"Kédange (Eglise)",49.308319,6.338321,-1,0,SIN:SA:OCE87406801,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87406819,1,"Kuntzig (Bibiche)",49.343594,6.244127,-1,0,SIN:SA:OCE87406819,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87406827,1,"Kuntzig (Place liberté)",49.347195,6.237104,-1,0,SIN:SA:OCE87406827,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87406835,1,"Metzervisse (Centre)",49.315561,6.285292,-1,0,SIN:SA:OCE87406835,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87406843,1,"Metzervisse (Eglise)",49.314156,6.282061,-1,0,SIN:SA:OCE87406843,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87406850,1,"Cocheren (Village)",49.146112,6.856983,-1,0,SIN:SA:OCE87406850,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87406868,1,"Farébersviller (Cité)",49.117643,6.873189,-1,0,SIN:SA:OCE87406868,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87406884,1,"Farébersviller (Moulin)",49.116121,6.865843,-1,0,SIN:SA:OCE87406884,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87406900,1,"Sarreguemines (Poste)",49.113014,7.064099,-1,0,SIN:SA:OCE87406900,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87406918,1,"Mertzwiller-(Moulin)",48.867389,7.681877,-1,0,SIN:SA:OCE87406918,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87406926,1,"Philippsbourg (Lieschb)",48.991556,7.558148,-1,0,SIN:SA:OCE87406926,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87406934,1,"Bitche (Rue de la Paix)",49.048881,7.428604,-1,0,SIN:SA:OCE87406934,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87406959,1,"Enchenberg (Mairie)",49.014714,7.33751,-1,0,SIN:SA:OCE87406959,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87406967,1,"Rohrbach-les-Mines (Ca)",49.046039,7.26521,-1,0,SIN:SA:OCE87406967,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87406975,1,"Fénétrange (Gendarm.)",48.844293,7.019857,-1,0,SIN:SA:OCE87406975,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87406983,1,"Fénétrange-Val-Fleuri",48.847804,7.019165,-1,0,SIN:SA:OCE87406983,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87406991,1,"Sarralbe (Hôtel de Vill",49.001842,7.029747,-1,0,SIN:SA:OCE87406991,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87407015,1,"Sarraltroff (Mairie)",48.773061,7.061993,-1,0,SIN:SA:OCE87407015,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87407023,1,"Sarraltroff Ag. Postale",48.773886,7.061387,-1,0,SIN:SA:OCE87407023,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87407031,1,"Sarrebourg-Méphisto",48.749792,7.06746,-1,0,SIN:SA:OCE87407031,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87407049,1,"Avricourt (Café St Nic)",48.650525,6.806213,-1,0,SIN:SA:OCE87407049,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87407056,1,"Avricourt (Rue de Lorr)",48.650093,6.812888,-1,0,SIN:SA:OCE87407056,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87407064,1,"Igney (Centre)",48.633205,6.814248,-1,0,SIN:SA:OCE87407064,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87407072,1,"Lunéville (Cité Scolai)",48.597499,6.508054,-1,0,SIN:SA:OCE87407072,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87407098,1,"Réchicourt-le-Chateau c",27.140973,-3.404561,-1,0,SIN:SA:OCE87407098,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87407106,1,"Sarrebourg (Verreries)",48.733041,7.042834,-1,0,SIN:SA:OCE87407106,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87407114,1,"Bénestroff (Centre)",48.904418,6.758631,-1,0,SIN:SA:OCE87407114,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87407122,1,"Fénétrange Carrefour Et",48.845551,7.014419,-1,0,SIN:SA:OCE87407122,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87407130,1,"Gosselming (Poste)",48.790873,7.00431,-1,0,SIN:SA:OCE87407130,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87407148,1,"Mittersheim (L'Escale)",48.860503,6.934555,-1,0,SIN:SA:OCE87407148,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87407155,1,"Morhange (Pl. Républiq)",48.923919,6.635005,-1,0,SIN:SA:OCE87407155,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87407171,1,"Morhange Jeanne d'Arc",48.93647,6.659272,-1,0,SIN:SA:OCE87192286,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87407189,1,"Sarrebourg (Place Math)",48.736883,7.057191,-1,0,SIN:SA:OCE87407189,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87407197,1,"Sarrebourg (Zone Indus)",48.748876,7.065824,-1,0,SIN:SA:OCE87407197,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87407247,1,"Budange",49.276666,6.34471,-1,0,SIN:SA:OCE87407247,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87407262,1,"Gundershoffen (cygne)",48.907556,7.658547,-1,0,SIN:SA:OCE87407262,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87407270,1,"Niederbronn (Archéo)",48.947893,7.650638,-1,0,SIN:SA:OCE87407270,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87407296,1,"Niederbronn (Usine)",48.956997,7.630661,-1,0,SIN:SA:OCE87407296,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87407320,1,"Schweighouse-(Villa)",48.819469,7.742336,-1,0,SIN:SA:OCE87407320,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87407338,1,"Diedendorff",48.877071,7.054134,-1,0,SIN:SA:OCE87407338,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87407379,1,"Sarrewerden Lotissement",48.920775,7.08603,-1,0,SIN:SA:OCE87407379,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87407403,1,"Gondrexange (Centre)",48.685181,6.926378,-1,0,SIN:SA:OCE87407403,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87407411,1,"Remanvillers",47.900028,6.727834,-1,0,SIN:SA:OCE87407411,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87409771,1,"Letra-Gabodière",45.961434,4.51648,-1,0,SIN:SA:OCE87409771,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87411017,1,"Gare de Rouen-Rive-Droite",49.44903,1.094154,-1,0,SIN:SA:OCE87411017,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87411454,1,"Gare de Montérolier-Buchy",49.603131,1.334709,-1,0,SIN:SA:OCE87411454,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87411470,1,"Gare de Serqueux",49.631545,1.53934,-1,0,SIN:SA:OCE87411470,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87413229,1,"Longeau",47.767175,5.309968,-1,0,SIN:SA:OCE87413229,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87414011,1,"St-Louis57",48.718439,7.194233,-1,0,SIN:SA:OCE87414011,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87417477,1,"Blesme-Centre",48.72555,4.776102,-1,0,SIN:SA:OCE87417477,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87420208,1,"Dracy-St-Loup-Mairie",47.02331,4.33715,-1,0,SIN:SA:OCE87420208,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87429761,1,"Auxon-Route-Nationale",48.109162,3.915543,-1,0,SIN:SA:OCE87429761,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87438655,1,"Gray-Gare-Routière",47.447905,5.595839,-1,0,SIN:SA:OCE87438655,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87458794,1,"Pont-de-Rupt",27.140973,-3.404561,-1,0,SIN:SA:OCE87458794,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87458810,1,"Buzy-Village",49.171063,5.710099,-1,0,SIN:SA:OCE87458810,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87458828,1,"Etain-Centre",49.213447,5.635142,-1,0,SIN:SA:OCE87458828,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87458836,1,"Verdun-la-Tour-du-Champ",27.140973,-3.404561,-1,0,SIN:SA:OCE87458836,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87458869,1,"Neufchateau-Lp",27.140973,-3.404561,-1,0,SIN:SA:OCE87405746,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87463604,1,"Hommarting-Tilleuls",48.738813,7.145722,-1,0,SIN:SA:OCE87463604,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87463612,1,"Guntzviller",48.710164,7.161549,-1,0,SIN:SA:OCE87463612,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87463620,1,"Arzviller-Fontaines",48.720368,7.165954,-1,0,SIN:SA:OCE87463620,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87463638,1,"St-Louis-57-Incliné",27.140973,-3.404561,-1,0,SIN:SA:OCE87117945,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87475723,1,"Bard-le-Régulier",47.143871,4.313488,-1,0,SIN:SA:OCE87475723,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87476747,1,"Luneville-LP",48.598876,6.492448,-1,0,SIN:SA:OCE87476747,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87476788,1,"Gerbeviller-Foch",27.140973,-3.404561,-1,0,SIN:SA:OCE87476788,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87476796,1,"Gérardmer-La-Mauselaine",27.140973,-3.404561,-1,0,SIN:SA:OCE87407098,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87476804,1,"Gérardmer-Les-Bas-Rupt",27.140973,-3.404561,-1,0,SIN:SA:OCE87635862,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87476846,1,"Remiremont-Pont",48.009076,6.613764,-1,0,SIN:SA:OCE87476846,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87476853,1,"Remilly-Place-du-11-Nov",49.010793,6.397592,-1,0,SIN:SA:OCE87476853,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87476861,1,"Diebling-Forestière",49.112001,6.933513,-1,0,SIN:SA:OCE87476861,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87476879,1,"Fenetrange-Mairie",48.84574,7.016946,-1,0,SIN:SA:OCE87476879,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87476887,1,"Romelfing-Rue-Europe",48.831934,7.020691,-1,0,SIN:SA:OCE87476887,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87476911,1,"Romelfing-Eglise",48.94804,6.434623,-1,0,SIN:SA:OCE87476911,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87476929,1,"Vatimont-Mairie",48.980021,6.464405,-1,0,SIN:SA:OCE87476929,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87476937,1,"Yutz-St-Vitus",49.356074,6.1919,-1,0,SIN:SA:OCE87476937,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87477158,1,"Merten-République",49.248913,6.667053,-1,0,SIN:SA:OCE87477158,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87477562,1,"Berthelming-Mairie",48.816243,7.006662,-1,0,SIN:SA:OCE87477562,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87477570,1,"Rehon-Poste",49.504192,5.754259,-1,0,SIN:SA:OCE87477570,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87477588,1,"Longwy-Route-de-Metz",49.511939,5.762605,-1,0,SIN:SA:OCE87477588,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87477620,1,"Sarrebourg-Abri-Phalsbo",48.737989,7.063118,-1,0,SIN:SA:OCE87477620,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87477638,1,"Sarrebourg-LP-Messmer",48.736739,7.068721,-1,0,SIN:SA:OCE87477638,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87477646,1,"Sarrebourg-Mairie",48.730495,7.05073,-1,0,SIN:SA:OCE87477646,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87478503,1,"Autun-St-Jean",46.958275,4.301098,-1,0,SIN:SA:OCE87478503,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87478628,1,"Cordesse-Igornay-Centre",47.037807,4.339743,-1,0,SIN:SA:OCE87478628,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87478693,1,"Digoin-Lycée",46.477062,3.991897,-1,0,SIN:SA:OCE87478693,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87478776,1,"Creusot-Lycée-Jean-Jaur",46.805076,4.41407,-1,0,SIN:SA:OCE87478776,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87478784,1,"Le-Guidon",46.378786,4.249614,-1,0,SIN:SA:OCE87478784,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87478792,1,"Saulieu-Place",47.28028,4.231286,-1,0,SIN:SA:OCE87478792,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87478818,1,"Selongey-Ecole-Ménagère",47.5869,5.180004,-1,0,SIN:SA:OCE87478818,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87478826,1,"Selongey-Patenée",47.588146,5.183862,-1,0,SIN:SA:OCE87478826,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87478834,1,"Surmoulin",47.008141,4.320838,-1,0,SIN:SA:OCE87478834,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87478842,1,"Til-Chatel-Poste",47.518701,5.178274,-1,0,SIN:SA:OCE87478842,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87478859,1,"Til-Chatel-Perdrixiere",47.517309,5.169683,-1,0,SIN:SA:OCE87478859,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87484576,1,"Lamure-Collège",46.052071,4.492879,-1,0,SIN:SA:OCE87484576,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87484584,1,"Poule-Mairie",46.148101,4.443914,-1,0,SIN:SA:OCE87484584,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87497222,1,"Chantenay-Imbert-Bourg",46.733078,3.183144,-1,0,SIN:SA:OCE87497222,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87499863,1,"Cosne-sur-Loire-Sud",27.140973,-3.404561,-1,0,SIN:SA:OCE87499863,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87499897,1,"Decize-Café-Bel-Aire",46.828363,3.479863,-1,0,SIN:SA:OCE87499897,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87499905,1,"Decize-Lycée",46.828333,3.447208,-1,0,SIN:SA:OCE87499905,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87499913,1,"Decize-Ville",46.831463,3.465731,-1,0,SIN:SA:OCE87499913,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87499939,1,"Imphy-le-Grand-Vernay",46.91117,3.279444,-1,0,SIN:SA:OCE87499939,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87499954,1,"Imphy-Square-Lamartine",46.926083,3.264498,-1,0,SIN:SA:OCE87499954,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87500082,1,"Luzy-Ville",46.790502,3.968988,-1,0,SIN:SA:OCE87500082,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87500793,1,"Nevers-Mouesse-ANPE",46.989765,3.169011,-1,0,SIN:SA:OCE87500793,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87500876,1,"St-Ouen-Arrêt-Cars",46.884636,3.304477,-1,0,SIN:SA:OCE87500876,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87500900,1,"St-Ouen-le-Port-des-Boi",46.89561,3.295093,-1,0,SIN:SA:OCE87500900,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87500934,1,"Sougy-BIF-N81-D262",46.848841,3.389692,-1,0,SIN:SA:OCE87500934,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87500991,1,"St-Léger-Vignes-Valette",46.841156,3.442397,-1,0,SIN:SA:OCE87500991,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87501023,1,"Pierre-Le-Moutier-Monum",46.791381,3.11839,-1,0,SIN:SA:OCE87501023,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87501049,1,"Tannay-Place-Eglise",47.367486,3.592235,-1,0,SIN:SA:OCE87501049,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87515601,1,"Longeville-Sur-Mogne-Ma",27.140973,-3.404561,-1,0,SIN:SA:OCE87499863,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87524843,1,"Bresse-Honeck (la)",27.140973,-3.404561,-1,0,SIN:SA:OCE87458836,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87524850,1,"Bresse-Claudel (la)",27.140973,-3.404561,-1,0,SIN:SA:OCE87458836,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87524868,1,"Bresse-Le-Lispach (la)",27.140973,-3.404561,-1,0,SIN:SA:OCE87458836,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87524876,1,"Villers-le-Rond",49.46432,5.489628,-1,0,SIN:SA:OCE87524876,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87524884,1,"Jean-les-Longuyon (St)",49.453057,5.463672,-1,0,SIN:SA:OCE87524884,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87533547,1,"Béard-Bourg",46.86315,3.326719,-1,0,SIN:SA:OCE87533547,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87536367,1,"Santenay-Haut",46.910343,4.68335,-1,0,SIN:SA:OCE87536367,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87536375,1,"Nolay-Place-Carnot",46.951639,4.634732,-1,0,SIN:SA:OCE87536375,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87536383,1,"Saisy",46.96413,4.548697,-1,0,SIN:SA:OCE87536383,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87536391,1,"Epinac-la-Garenne",46.985331,4.53192,-1,0,SIN:SA:OCE87536391,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87536409,1,"Epinac-Hauts-des-Champs",46.988423,4.524076,-1,0,SIN:SA:OCE87536409,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87536417,1,"Epinac-Quartier-Dinay",46.994656,4.504836,-1,0,SIN:SA:OCE87536417,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87536425,1,"Autun-Lycée-Technique",46.938386,4.293763,-1,0,STE:SA:OCE87536425,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87536441,1,"Chatillon-Joffre",47.856553,4.570689,-1,0,SIN:SA:OCE87536441,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87541912,1,"Chatillon-Lycée",47.865291,4.57436,-1,0,SIN:SA:OCE87541912,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87552141,1,"Ribeauville-Gare-Routiè",48.192213,7.325772,-1,0,SIN:SA:OCE87552141,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87559070,1,"Gare de Nevers-Le-Banlay",47.006817,3.163619,-1,0,SIN:SA:OCE87559070,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87564781,1,"Bazoches-OT",47.377287,3.784524,-1,0,SIN:SA:OCE87564781,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87564799,1,"Père (st)-Place-Mairie",47.459372,3.764918,-1,0,SIN:SA:OCE87564799,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87576207,1,"Gare de Bourges",47.094094,2.394226,-1,0,SIN:SA:OCE87576207,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87576405,1,"Gare de St-Germain-du-Puy",47.09629,2.484255,-1,0,SIN:SA:OCE87576405,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87576439,1,"Gare de Avord",47.034779,2.652604,-1,0,SIN:SA:OCE87576439,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87576447,1,"Gare de Bengy",47.000396,2.749106,-1,0,SIN:SA:OCE87576447,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87576454,1,"Gare de Nérondes",46.999796,2.821991,-1,0,SIN:SA:OCE87576454,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87576470,1,"Gare de La Guerche-sur-l'Aubois",46.94785,2.948455,-1,0,SIN:SA:OCE87576470,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87588954,1,"Laon-Gare-Routière-Poma",49.569728,3.625831,-1,0,SIN:SA:OCE87588954,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87595983,1,"La-Walck-Monument",48.848374,7.612243,-1,0,SIN:SA:OCE87595983,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87598219,1,"Gare de Le Locle-Col-des-Roches",47.04989,6.725831,-1,0,SIN:SA:OCE87598219,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87598227,1,"Gare de Le Locle.",47.057708,6.746141,-1,0,SIN:SA:OCE87598227,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87599753,1,"Nevers-Petit-Canal",46.989406,3.187307,-1,0,SIN:SA:OCE87599753,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87599779,1,"Nevers-Place-Résistance",46.992527,3.160205,-1,0,SIN:SA:OCE87599779,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87635771,1,"Lemberg-Mairie",27.140973,-3.404561,-1,0,SIN:SA:OCE87635771,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87635789,1,"Uxegney-Bois-L'-Abbé",27.140973,-3.404561,-1,0,SIN:SA:OCE87458836,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87635797,1,"Uxegney-La-Ménère",27.140973,-3.404561,-1,0,SIN:SA:OCE87458836,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87635805,1,"Cremanvillers",48.009221,6.716263,-1,0,SIN:SA:OCE87635805,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87635821,1,"Koenigsmacker-Centre",49.396543,6.279747,-1,0,SIN:SA:OCE87635821,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87635847,1,"Sierck-Pl-Morbach",49.441553,6.357475,-1,0,SIN:SA:OCE87635847,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87635854,1,"Apach-Eglise",49.460193,6.374297,-1,0,SIN:SA:OCE87635854,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87635862,1,"Les-Islettes-Centre",27.140973,-3.404561,-1,0,SIN:SA:OCE87635862,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87635870,1,"Clermont-En-Argonne-Cen",49.105825,5.070793,-1,0,SIN:SA:OCE87635870,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87635920,1,"Suippes-Camp",49.12225,4.544656,-1,0,SIN:SA:OCE87635920,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87635938,1,"Ste-Ménéhould-Médiathèq",49.092128,4.897874,-1,0,SIN:SA:OCE87635938,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87639922,1,"Minversheim-Rue-Princip",48.784842,7.620531,-1,0,SIN:SA:OCE87639922,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87639930,1,"Alteckendorf-Eckendorf",48.78972,7.601546,-1,0,SIN:SA:OCE87639930,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87639948,1,"Alteckendorf-Mairie",48.792845,7.594651,-1,0,SIN:SA:OCE87639948,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87639955,1,"Alteckendorf-Abri",48.794558,7.589739,-1,0,SIN:SA:OCE87639955,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87639963,1,"Ettendorf-Pl,-de-L'ecol",48.813023,7.58344,-1,0,SIN:SA:OCE87639963,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87639971,1,"Ettendorf-(Angle-Pont)",48.812193,7.58101,-1,0,SIN:SA:OCE87639971,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87639989,1,"Hattmatt-S.-Polyvalente",48.792188,7.426915,-1,0,SIN:SA:OCE87639989,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87639997,1,"Bouxwiller-Babenhausen",48.829076,7.483687,-1,0,SIN:SA:OCE87639997,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87640144,1,"Suippes-Garage",49.128118,4.525608,-1,0,SIN:SA:OCE87640144,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87640375,1,"Sélestat-(Schweisguth)",48.261515,7.450126,-1,0,SIN:SA:OCE87640375,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87640383,1,"Selestat-(Koeberlé)",48.263278,7.455358,-1,0,SIN:SA:OCE87640383,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87640391,1,"Sèlestat-(Schwilgué)",48.253908,7.4479,-1,0,SIN:SA:OCE87640391,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87640409,1,"Sélestat-R-S-Marie-/-Ms",48.264183,7.439739,-1,0,SIN:SA:OCE87640409,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87640441,1,"Châtenois-(Gare)",48.276127,7.401678,-1,0,SIN:SA:OCE87640441,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87640458,1,"Châtenois-V.-Villé-Gare",48.283074,7.381952,-1,0,SIN:SA:OCE87640458,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87640466,1,"La-Vancelle-(hurst)",48.278906,7.342232,-1,0,SIN:SA:OCE87640466,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87640474,1,"La-Vancelle-(Centre)",48.284354,7.303418,-1,0,SIN:SA:OCE87640474,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87640482,1,"Lièpvre-(Rte-Vancelle)",48.271914,7.289054,-1,0,SIN:SA:OCE87640482,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87640490,1,"Lièpvre-Bois-Abesse-ZI",48.275571,7.313625,-1,0,SIN:SA:OCE87640490,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87640789,1,"Lièpvre-(Centre)",48.270852,7.280695,-1,0,SIN:SA:OCE87640789,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87640797,1,"Liepvre-(-Ecoles-)",48.271433,7.281006,-1,0,SIN:SA:OCE87640797,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87640805,1,"Rombach-Le-F-(Pl-Fêtes)",48.281957,7.264452,-1,0,SIN:SA:OCE87640805,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87640813,1,"Rombach-Le-F-(Scierie)",48.278908,7.270563,-1,0,SIN:SA:OCE87640813,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87640821,1,"Lièpvre-R.-Vieux-Moulin",48.277514,7.27695,-1,0,SIN:SA:OCE87640821,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87640839,1,"Liepvre-(-R.-GUTH-)",48.270072,7.269448,-1,0,SIN:SA:OCE87640839,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87640847,1,"Liepvre-(-Musloch-)",48.267648,7.248574,-1,0,SIN:SA:OCE87640847,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87640854,1,"Ste-Croix/Mines-Stimbac",48.264712,7.233875,-1,0,SIN:SA:OCE87640854,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87640870,1,"Ste-Croix/Mines-Sq-de-G",48.261128,7.218902,-1,0,SIN:SA:OCE87640870,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87640912,1,"Ste-Marie-/-Ms-S.Techni",48.252235,7.195008,-1,0,SIN:SA:OCE87640912,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87640920,1,"Ste-Marie-/-Ms-(Musées)",48.24888,7.18833,-1,0,SIN:SA:OCE87640920,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87640938,1,"Ste-Marie-/-Mines-Maire",48.245573,7.182239,-1,0,SIN:SA:OCE87640938,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87640946,1,"Ste-Marie-/-Ms-Pl-.CdG",48.243625,7.176394,-1,0,SIN:SA:OCE87640946,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87640953,1,"Ste-Marie/-Ms-(-Théâtre",48.243614,7.18083,-1,0,SIN:SA:OCE87640953,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87640961,1,"Ste-Marie-/-Ms-(-Super-",48.248629,7.189184,-1,0,SIN:SA:OCE87640961,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87640979,1,"Raves-(Ancienne-Gare)",48.271957,7.049732,-1,0,SIN:SA:OCE87640979,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87640987,1,"Remomeix-(Abri)",48.265016,6.993338,-1,0,SIN:SA:OCE87640987,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87640995,1,"Ste-Marguerite-Village",48.268627,6.980842,-1,0,SIN:SA:OCE87640995,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87641027,1,"Ste-Marguerite-(Cora)",48.273744,6.967574,-1,0,SIN:SA:OCE87641027,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87641332,1,"Saint-Die-Rue-D'Alsace",48.279999,6.95555,-1,0,SIN:SA:OCE87641332,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87641688,1,"Cernay-(Lycée)",47.80334,7.182793,-1,0,SIN:SA:OCE87641688,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87641696,1,"Cernay-(St André)",47.791122,7.155841,-1,0,SIN:SA:OCE87641696,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87641902,1,"Aspach-le-Haut-D103/34",47.776125,7.134103,-1,0,SIN:SA:OCE87641902,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87641910,1,"Aspach-le-Haut-(gare)",47.768902,7.141682,-1,0,SIN:SA:OCE87641910,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87641928,1,"Aspach-Bs-Malakov",47.761124,7.153069,-1,0,SIN:SA:OCE87641928,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87641936,1,"Burnhaupt-Ht-Gendarmeri",47.740005,7.144724,-1,0,SIN:SA:OCE87641936,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87641944,1,"Burnhaupt-Ht- Café/Gare",47.742231,7.134452,-1,0,SIN:SA:OCE87641944,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87641951,1,"Guewenheim-Café-2-clés",47.752579,7.09329,-1,0,SIN:SA:OCE87641951,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87641969,1,"Sentheim-M.-de-Repos",47.75588,7.056468,-1,0,SIN:SA:OCE87641969,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87641977,1,"Sentheim-(Eglise)",47.75612,7.051666,-1,0,SIN:SA:OCE87641977,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87641985,1,"Sentheim-Gge-Renault",47.757227,7.043013,-1,0,SIN:SA:OCE87641985,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87641993,1,"Lauw-(Cimetère)",47.757788,7.025292,-1,0,SIN:SA:OCE87641993,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87642009,1,"Lauw-numéro-20",47.756948,7.017508,-1,0,SIN:SA:OCE87642009,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87642017,1,"Masevaux-Café-Sports",47.779449,6.99223,-1,0,SIN:SA:OCE87642017,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87642025,1,"Masevaux-(Pharmacie)",47.77473,6.99918,-1,0,SIN:SA:OCE87642025,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87642033,1,"Masevaux-Off.-Tourisme",47.772674,6.996058,-1,0,SIN:SA:OCE87642033,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87642041,1,"Sickert-(Abri)",47.781121,6.978342,-1,0,SIN:SA:OCE87642041,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87642058,1,"Niederbruck-Centre",47.784176,6.968344,-1,0,SIN:SA:OCE87642058,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87642066,1,"Kirchberg-(Lotissement)",47.788618,6.964722,-1,0,SIN:SA:OCE87642066,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87642074,1,"Kirchberg-(Café-Rose)",47.791681,6.962223,-1,0,SIN:SA:OCE87642074,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87642116,1,"Wegscheid-(Numéro-64)",47.798621,6.960556,-1,0,SIN:SA:OCE87642116,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87642124,1,"Oberbruck-(Rest.Ast)",47.807786,6.943892,-1,0,SIN:SA:OCE87642124,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87642132,1,"Dolleren-(Mairie)",47.805839,6.932503,-1,0,SIN:SA:OCE87642132,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87642140,1,"Sewen-(11-Gd-Rue)",47.80668,6.911113,-1,0,SIN:SA:OCE87642140,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87642157,1,"Sewen-(Eglise)",47.807233,6.90529,-1,0,SIN:SA:OCE87642157,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87642165,1,"Hattmatt-(Mairie)",48.79064,7.422674,-1,0,SIN:SA:OCE87642165,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87642173,1,"Steinbourg-Ernolsheiml",48.773232,7.409793,-1,0,SIN:SA:OCE87642173,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87642181,1,"Steinbourg-(Mairie)",48.769393,7.413206,-1,0,SIN:SA:OCE87642181,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87642199,1,"Steinbourg-Rte-Saverne",48.761334,7.414407,-1,0,SIN:SA:OCE87642199,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87642207,1,"Monswiller-(Zornhoff)",48.752737,7.383054,-1,0,SIN:SA:OCE87642207,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87642215,1,"Monswiller-(Rue-Haute)",48.754682,7.376692,-1,0,SIN:SA:OCE87642215,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87642223,1,"Saverne-(Lycée-Verne)",48.735126,7.374412,-1,0,SIN:SA:OCE87642223,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87642231,1,"Saverne-(Lycée-Sources)",48.735133,7.366189,-1,0,SIN:SA:OCE87642231,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87642249,1,"Saverne-(Pl.-Dragons)",48.739777,7.361791,-1,0,SIN:SA:OCE87642249,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87642256,1,"Saverne-(Ht-Barr)",48.731543,7.352267,-1,0,SIN:SA:OCE87642256,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87642264,1,"Dossenheim-(Mairie)",48.805222,7.402438,-1,0,SIN:SA:OCE87642264,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87642272,1,"Dossenheim-Lotissement",48.807521,7.402158,-1,0,SIN:SA:OCE87642272,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87642280,1,"Neuwiller-(Pharmacie)",48.823476,7.402694,-1,0,SIN:SA:OCE87642280,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87642298,1,"Neuwiller-R.-Bouxwiller",48.822911,7.407072,-1,0,SIN:SA:OCE87642298,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87642306,1,"Bouxwiller-Schattenmann",48.826399,7.478933,-1,0,SIN:SA:OCE87642306,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87642314,1,"Bouxwiller-Centre-Ville",48.82747,7.482913,-1,0,SIN:SA:OCE87642314,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87642330,1,"Menchhoffen-(Abri)",48.859548,7.494659,-1,0,SIN:SA:OCE87642330,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87642348,1,"Wimmenau-(D919 R/Gar)",48.910054,7.419956,-1,0,SIN:SA:OCE87642348,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87642355,1,"Wingen-sur-Moder-Mairie",48.922868,7.370993,-1,0,SIN:SA:OCE87642355,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87642363,1,"Rosteig-Mon.-Aux-Morts",48.932877,7.342485,-1,0,SIN:SA:OCE87642363,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87642371,1,"Col-De-Puberg",48.91702,7.318393,-1,0,SIN:SA:OCE87642371,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87642389,1,"Frohmuhl- (Lavoir)",48.907902,7.281136,-1,0,SIN:SA:OCE87642389,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87642801,1,"Bitche-Quartier-Driant",49.05497,7.456169,-1,0,SIN:SA:OCE87642801,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87643197,1,"Suippes-Ferme",27.140973,-3.404561,-1,0,SIN:SA:OCE87643197,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87643403,1,"Cigoland",48.256317,7.419759,-1,0,SIN:SA:OCE87643403,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87643411,1,"Kintzheim-Mairie",48.254457,7.39501,-1,0,SIN:SA:OCE87643411,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87643429,1,"Orschwiller-Chapelle",48.241122,7.383904,-1,0,SIN:SA:OCE87643429,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87643437,1,"St-Hippolyte-Hot-Munsch",48.23139,7.371127,-1,0,SIN:SA:OCE87643437,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87643445,1,"St-Hippolyte-Parc-Walte",48.232232,7.366407,-1,0,SIN:SA:OCE87643445,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87643452,1,"Rorschwihr-Mairie",48.217515,7.363338,-1,0,SIN:SA:OCE87643452,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87643460,1,"Bergheim-Porte-Haute",48.205571,7.358622,-1,0,SIN:SA:OCE87643460,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87643882,1,"St-Satur-Fontenay",47.33879,2.83871,-1,0,SIN:SA:OCE87117945,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87643890,1,"Bannay-Hautes-De-Bussy",47.385935,2.886173,-1,0,SIN:SA:OCE87643890,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87643932,1,"Sancerre-Porte-Cesar",47.333641,2.837524,-1,0,SIN:SA:OCE87643932,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87654384,1,"Lichtenberg-(Eglise).",48.921189,7.481754,-1,0,SIN:SA:OCE87654384,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87654392,1,"Lichtenberg-(Picardie)",48.925384,7.479069,-1,0,SIN:SA:OCE87654392,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87654442,1,"Reipertswiller-SP.",48.933253,7.464091,-1,0,SIN:SA:OCE87654442,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87654467,1,"Wimmenau-(Centre).",48.910843,7.421318,-1,0,SIN:SA:OCE87654467,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87654475,1,"Rouffach-(CHS)",47.950568,7.29112,-1,0,SIN:SA:OCE87654475,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87654541,1,"Merxheim-(Pl.-CDG)",47.910552,7.292778,-1,0,SIN:SA:OCE87654541,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87654558,1,"Illfurth-Croisement-Gar",47.674592,6.924543,-1,0,SIN:SA:OCE87654558,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87654574,1,"Zillisheim-(Mohn)",47.693802,7.2942,-1,0,SIN:SA:OCE87654574,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87654590,1,"Stephansfeld-(Hopital).",48.717009,7.706155,-1,0,SIN:SA:OCE87654590,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87654673,1,"Brumath-(Mairie).",48.730887,7.708653,-1,0,SIN:SA:OCE87654673,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87658716,1,"Schwindratzheim-Leclerc",48.754098,7.600003,-1,0,SIN:SA:OCE87658716,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87658740,1,"Wilwisheim-(Hte Montée)",48.747946,7.506738,-1,0,SIN:SA:OCE87658740,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87658849,1,"Pfaffenhoffen-(Mairie).",48.844897,7.610811,-1,0,SIN:SA:OCE87658849,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87658856,1,"Adamswiller Lot. forêt.",48.905629,7.208236,-1,0,SIN:SA:OCE87658856,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87658922,1,"Adamswiller-(Mairie).",48.903847,7.201171,-1,0,SIN:SA:OCE87658922,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87658930,1,"Bischheim-Arrêt-CTS-R.G",48.363915,7.45301,-1,0,SIN:SA:OCE87658930,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87658948,1,"Kilstett-Rue-de-la-Gare",48.679219,7.854927,-1,0,SIN:SA:OCE87658948,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87659094,1,"Gerbeviller-Barbe",27.140973,-3.404561,-1,0,SIN:SA:OCE87476788,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87659631,1,"Bouverans-Halte-Routier",27.140973,-3.404561,-1,0,SIN:SA:OCE87659631,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87659649,1,"Domblans-Halte-Routier.",46.763588,5.597361,-1,0,SIN:SA:OCE87659649,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87659656,1,"Buvilly-Halte-Routiere.",46.869346,5.716556,-1,0,SIN:SA:OCE87659656,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87659664,1,"Dompierre-Halte-Rout.",27.140973,-3.404561,-1,0,SIN:SA:OCE87659631,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87659680,1,"Marnoz-Halte-Routiere.",27.140973,-3.404561,-1,0,SIN:SA:OCE87659631,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87659706,1,"Pagnoz-Halte-Routiere.",27.140973,-3.404561,-1,0,SIN:SA:OCE87659631,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87659714,1,"Saulx-Halte-Routiere",47.695363,6.278552,-1,0,SIN:SA:OCE87659714,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87659722,1,"Voiteur-Halte-Routiere.",46.755103,5.611312,-1,0,SIN:SA:OCE87659722,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87659730,1,"Gambsheim-Peugeot.",48.688807,7.871924,-1,0,SIN:SA:OCE87659730,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87659748,1,"Gambsheim-(Poste).",48.692156,7.883346,-1,0,SIN:SA:OCE87659748,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87659755,1,"Hoerdt-(M.De-Retraite)",48.692008,7.782179,-1,0,SIN:SA:OCE87659755,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87659763,1,"Hoerdt-(Mairie)",48.698884,7.78471,-1,0,SIN:SA:OCE87659763,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87659771,1,"Weyersheim-R-République",48.717811,7.800244,-1,0,SIN:SA:OCE87659771,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87659789,1,"Kurtzenhouse-(Mairie)",48.739191,7.806731,-1,0,SIN:SA:OCE87659789,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87659797,1,"Kurtzenhouse-(CMDP)",48.742351,7.812445,-1,0,SIN:SA:OCE87659797,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87659805,1,"Bischwiller-Eglise",48.764098,7.859771,-1,0,SIN:SA:OCE87659805,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87659813,1,"Bischwiller-(Vestra).",48.770589,7.847867,-1,0,SIN:SA:OCE87659813,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87659821,1,"Kaltenhouse-Rue-Bischwi",48.790448,7.836,-1,0,SIN:SA:OCE87659821,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87659839,1,"Marienthal-(Basilique-N",48.780133,7.816474,-1,0,SIN:SA:OCE87659839,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87659847,1,"Haguenau-(Statuette)",48.782214,7.822543,-1,0,SIN:SA:OCE87659847,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87659854,1,"Rixheim-Arrêt-Barrière.",47.747834,7.409712,-1,0,SIN:SA:OCE87659854,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87659862,1,"Sierentz-Rest.-Soleil.",47.654089,7.454797,-1,0,SIN:SA:OCE87659862,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87659870,1,"Bartenheim-(Pharmacie).",47.635004,7.476119,-1,0,SIN:SA:OCE87659870,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87659888,1,"Oderen-(La-Poste).",47.909457,6.975557,-1,0,SIN:SA:OCE87659888,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87659896,1,"Fellering-(Eglise).",47.896382,6.985835,-1,0,SIN:SA:OCE87659896,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87659904,1,"Ranspach-Anc.-Fonderie.",47.881403,7.009453,-1,0,SIN:SA:OCE87659904,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87659912,1,"St-Amarin-Hotel-Cheval.",47.874735,7.028347,-1,0,SIN:SA:OCE87659912,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87659920,1,"Malmerspach-Rond-Point.",47.867039,7.03871,-1,0,SIN:SA:OCE87659920,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87659938,1,"Moosch-(Mairie).",47.950054,7.056919,-1,0,SIN:SA:OCE87659938,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87659946,1,"Willer-/-Thur-(Mairie).",47.843066,7.0714,-1,0,SIN:SA:OCE87659946,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87659953,1,"Bitschwiller-/-T-Mairie",47.829177,7.079736,-1,0,SIN:SA:OCE87659953,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87659979,1,"Vieux-Thann-Park.-Gare.",47.806118,7.119704,-1,0,SIN:SA:OCE87659979,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87659987,1,"Cernay-(Eglise).",47.809181,7.174728,-1,0,SIN:SA:OCE87659987,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87659995,1,"Dornach-Incorporation",47.7472,7.310183,-1,0,SIN:SA:OCE87659995,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87660043,1,"Walbourg-Séminaire.",48.886536,7.789393,-1,0,SIN:SA:OCE87660043,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87660050,1,"Surbourg-St-Aboga.",48.906924,7.847097,-1,0,SIN:SA:OCE87660050,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87660126,1,"Schoenenbourg-Centre.",48.952404,7.912299,-1,0,SIN:SA:OCE87660126,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87660340,1,"Ingolsheim-(Centre).",48.974765,7.937294,-1,0,SIN:SA:OCE87660340,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87660365,1,"Riedseltz-Chapelle",48.990342,7.950716,-1,0,SIN:SA:OCE87660365,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87660373,1,"Riedseltz-Centre",48.995052,7.953993,-1,0,SIN:SA:OCE87660373,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87660381,1,"Wissembourg-Altenstadt.",49.028245,7.963881,-1,0,SIN:SA:OCE87660381,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87660514,1,"Dachstein-R.-Gare.",48.542993,7.532903,-1,0,SIN:SA:OCE87660514,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87660548,1,"Mutzig-Passage-A-Niveau",48.533912,7.46108,-1,0,SIN:SA:OCE87660548,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87660571,1,"Mutzig-Porte-Ctre.",48.538663,7.456012,-1,0,SIN:SA:OCE87660571,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87660589,1,"Gresswiller-(Abri).",48.535711,7.425486,-1,0,SIN:SA:OCE87660589,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87660605,1,"Lutzelhouse-Abri-Eglise",48.519609,7.287747,-1,0,SIN:SA:OCE87660605,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87660795,1,"Devant-Fouday-RN-420.",48.421397,7.183412,-1,0,SIN:SA:OCE87660795,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87660811,1,"Saulxures-(N-420).",48.389399,7.146311,-1,0,SIN:SA:OCE87660811,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87660886,1,"Bourg-Bruche-Eglise.",27.140973,-3.404561,-1,0,SIN:SA:OCE87660886,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87660894,1,"Saales-(Mairie).",48.348286,7.106291,-1,0,SIN:SA:OCE87660894,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87660902,1,"Rosheim-Maison-Enfance.",48.498331,7.478609,-1,0,SIN:SA:OCE87660902,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87660910,1,"Obernai-Passage-Niveau.",48.46085,7.489412,-1,0,SIN:SA:OCE87660910,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87660936,1,"Eichhoffen-Gare.",48.38269,7.448883,-1,0,SIN:SA:OCE87660936,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87660977,1,"Epfig-Eglise-/-RN.",48.359165,7.466106,-1,0,SIN:SA:OCE87660977,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87665240,1,"Colmar-St-Jo-VSG",48.081128,7.346674,-1,0,SIN:SA:OCE87665240,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87665331,1,"Logelbach-Arrêt-Hirn",48.088748,7.321807,-1,0,SIN:SA:OCE87665331,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87665356,1,"Ingersheim-Arrêt-Centre",48.096533,7.303553,-1,0,SIN:SA:OCE87665356,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87665380,1,"Turckheim-P.-République",48.086124,7.278902,-1,0,SIN:SA:OCE87665380,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87665455,1,"Walbach-La-Forge",48.059739,7.233066,-1,0,SIN:SA:OCE87665455,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87665463,1,"Wihr-Soultz-D-417.",48.046681,7.20917,-1,0,SIN:SA:OCE87665463,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87665471,1,"Gunsbach-Restaurant.",48.04278,7.174173,-1,0,SIN:SA:OCE87665471,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87665489,1,"Munster-D417-Badischhof",48.040662,7.150374,-1,0,SIN:SA:OCE87665489,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87665505,1,"Luttenbach-R-Principale",48.035851,7.119172,-1,0,SIN:SA:OCE87665505,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87665513,1,"Luttenbach-(Fronzel).",48.032513,7.110004,-1,0,SIN:SA:OCE87665513,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87665562,1,"Breitenbach-Breit's-Bar",48.026678,7.098892,-1,0,SIN:SA:OCE87665562,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87665620,1,"Muhlbach/Munster-Mairie",48.025566,7.083898,-1,0,SIN:SA:OCE87665620,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87666099,1,"Chamelet-Centre.",27.140973,-3.404561,-1,0,SIN:SA:OCE87635862,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87667980,1,"Diou-ville-Allier-(Bus)",46.533349,3.747946,-1,0,SIN:SA:OCE87667980,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87668004,1,"Villeneuve-/-Allier-Cen",46.660109,3.247787,-1,0,SIN:SA:OCE87668004,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87668095,1,"Thiel-Sur-Acolin-Bus",46.526266,3.578794,-1,0,SIN:SA:OCE87668095,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87668111,1,"Montbeugny-Centre",46.528189,3.492704,-1,0,SIN:SA:OCE87668111,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87668137,1,"Philippsbg-Falkenstein",48.984098,7.567411,-1,0,SIN:SA:OCE87668137,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87668152,1,"Eguelshardt-(-Abri-)",49.02126,7.491193,-1,0,SIN:SA:OCE87668152,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87676569,1,"Pagny-Le-Chateau-Mairie",47.046992,5.195881,-1,0,SIN:SA:OCE87676569,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87676593,1,"Nolay-Mairie",46.951807,4.629942,-1,0,SIN:SA:OCE87676593,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87676718,1,"Chatillon-Seine-Pl-Marm",47.861258,4.574925,-1,0,SIN:SA:OCE87676718,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87676734,1,"Manlay-Centre",47.129214,4.341481,-1,0,SIN:SA:OCE87676734,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87676767,1,"Liernais-Centre",47.206327,4.281395,-1,0,SIN:SA:OCE87676767,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87676809,1,"Saint-Didier-Chanteau",47.330119,4.181835,-1,0,SIN:SA:OCE87676809,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87676833,1,"St-Eloi-Eglise",46.973771,3.22176,-1,0,SIN:SA:OCE87117945,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87676890,1,"St-Leger-Dheune-Port-Ca",46.846229,4.632942,-1,0,SIN:SA:OCE87676890,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87676908,1,"Rully-Place",46.874688,4.740887,-1,0,SIN:SA:OCE87676908,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87677047,1,"Brion-Laisy-Mairie",46.907192,4.191076,-1,0,SIN:SA:OCE87677047,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87677096,1,"Changy-Tourny-Monument",46.403334,4.253001,-1,0,SIN:SA:OCE87677096,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87677138,1,"Chauffailles-Gambetta",46.206913,4.336505,-1,0,SIN:SA:OCE87677138,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87677146,1,"Autun-Orme-St-Pantaleon",46.987363,4.313483,-1,0,SIN:SA:OCE87677146,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87677195,1,"Voutenay-/-Cure-Mairie",47.561728,3.784678,-1,0,SIN:SA:OCE87677195,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87677245,1,"Lucy-Sur-Cure-RD-606",47.627782,3.744653,-1,0,SIN:SA:OCE87677245,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87677252,1,"Accolay-Le-Pont",47.659446,3.713922,-1,0,SIN:SA:OCE87677252,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87678458,1,"Chèvremont-M.Mort.",47.631193,6.92455,-1,0,SIN:SA:OCE87678458,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87678466,1,"Uttwiller-R-Principale.",48.846228,7.487765,-1,0,SIN:SA:OCE87678466,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87678474,1,"Guémar-Rd-Point-Sony",48.19001,7.370837,-1,0,SIN:SA:OCE87678474,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87678482,1,"Ste-Croix-Ms-Centre",48.262501,7.22444,-1,0,SIN:SA:OCE87678482,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87678490,1,"Lièpvre-(Pharmacie)",48.270852,7.280695,-1,0,SIN:SA:OCE87640789,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87678524,1,"Niederbronn-H.-de-Ville",48.950819,7.642391,-1,0,SIN:SA:OCE87678524,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87678680,1,"Haguenau-Moulin-Neuf.",48.813031,7.781128,-1,0,SIN:SA:OCE87678680,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87678698,1,"Schweighouse-Eglise-P.",48.820338,7.740844,-1,0,SIN:SA:OCE87678698,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87678706,1,"Schweighouse-M.-Leclerc",48.8221,7.731423,-1,0,SIN:SA:OCE87678706,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87678714,1,"Neubourg-(Eglise).",48.838635,7.681258,-1,0,SIN:SA:OCE87678714,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87678730,1,"Pfaffenhoffen-Républiqu",48.844006,7.607554,-1,0,SIN:SA:OCE87678730,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87683268,1,"Gare de Laroche-Migennes",47.960853,3.512941,-1,0,SIN:SA:OCE87683268,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87683318,1,"Gare de St-Florentin-Vergigny",47.980415,3.730949,-1,0,SIN:SA:OCE87683318,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87683334,1,"St-Florentin-Ville",48.004576,3.74046,-1,0,SIN:SA:OCE87683334,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87683342,1,"Neuvy-Sautour",48.042693,3.792776,-1,0,SIN:SA:OCE87117986,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87683532,1,"Gare de Chemilly-Appoigny",47.897372,3.554407,-1,0,SIN:SA:OCE87683532,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87683557,1,"Gare de Monéteau-Gurgy",47.850719,3.579952,-1,0,SIN:SA:OCE87683557,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87683573,1,"Gare de Auxerre-St-Gervais",47.797614,3.58514,-1,0,SIN:SA:OCE87683573,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87683615,1,"Gare de Champs-St-Bris",47.738246,3.603611,-1,0,SIN:SA:OCE87683615,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87683631,1,"Gare de Vincelles",47.704279,3.628359,-1,0,SIN:SA:OCE87683631,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87683649,1,"Gare de Cravant-Bazarnes",47.678581,3.681465,-1,0,SIN:SA:OCE87683649,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87683664,1,"Gare de Vermenton",47.661022,3.73114,-1,0,SIN:SA:OCE87683664,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87683680,1,"Gare de Arcy-sur-Cure",47.60062,3.767049,-1,0,SIN:SA:OCE87683680,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87683722,1,"Gare de Sermizelles-Vézelay",47.528692,3.792851,-1,0,SIN:SA:OCE87683722,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87683789,1,"Gare de Avallon",47.495524,3.91253,-1,0,SIN:SA:OCE87683789,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87683847,1,"Gare de Mailly-la-Ville",47.604361,3.675079,-1,0,SIN:SA:OCE87683847,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87685784,1,"Les-Tavins",27.140973,-3.404561,-1,0,SIN:SA:OCE87635862,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87690396,1,"Montfey",27.140973,-3.404561,-1,0,SIN:SA:OCE87690396,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87691352,1,"Arcy-Sur-Cure-RD606",27.140973,-3.404561,-1,0,SIN:SA:OCE87499863,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87691360,1,"Coulanges/Y-Pré-Cambaul",27.140973,-3.404561,-1,0,SIN:SA:OCE87691360,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87691378,1,"St-Sauveur-Halte-Rout",27.140973,-3.404561,-1,0,SIN:SA:OCE87659631,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87691386,1,"Comberjon-HR",27.140973,-3.404561,-1,0,SIN:SA:OCE87691386,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87691576,1,"La-Cluse-Ville",46.170815,5.576363,-1,0,SIN:SA:OCE87691576,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87691600,1,"Gare de Les Perrières",47.005616,3.146543,-1,0,SIN:SA:OCE87691600,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87691626,1,"St-Léger-des-Vignes",46.838553,3.451102,-1,0,SIN:SA:OCE87691626,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87691675,1,"Verneuil",46.842435,3.58425,-1,0,SIN:SA:OCE87691675,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87691725,1,"Avrée",46.810672,3.852822,-1,0,SIN:SA:OCE87691725,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87694000,1,"Gare de Le Creusot",46.807829,4.430429,-1,0,SIN:SA:OCE87694000,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87694141,1,"Gare de Etang",46.867893,4.183846,-1,0,SIN:SA:OCE87694141,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87694158,1,"Gare de Mesvres",46.862798,4.244954,-1,0,SIN:SA:OCE87694158,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87694166,1,"Gare de Broye",46.861944,4.296092,-1,0,SIN:SA:OCE87694166,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87694174,1,"Gare de St-Symphorien-de-Marma.",46.844215,4.337746,-1,0,SIN:SA:OCE87694174,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87694182,1,"Gare de Marmagne-Gare",46.833426,4.360203,-1,0,SIN:SA:OCE87694182,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87694307,1,"Gare de Montchanin",46.759158,4.481462,-1,0,SIN:SA:OCE87694307,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87694364,1,"Gare de St-Léger-sur-Dheune",46.847999,4.627718,-1,0,SIN:SA:OCE87694364,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87694398,1,"Gare de Cheilly-les-Maranges",46.892889,4.675986,-1,0,SIN:SA:OCE87694398,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87694448,1,"La Roche-en-Brenil",47.385054,4.170247,-1,0,SIN:SA:OCE87694448,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87694455,1,"Molphey",47.340016,4.20149,-1,0,SIN:SA:OCE87694455,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87694471,1,"Saulieu",47.2829,4.236113,-1,0,SIN:SA:OCE87694471,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87694489,1,"St-Martin-de-la-Mer",47.23716,4.248244,-1,0,SIN:SA:OCE87694489,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87694513,1,"Brazey-en-Morvan",47.171727,4.286738,-1,0,SIN:SA:OCE87694513,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87694539,1,"Barnay",47.087213,4.338068,-1,0,SIN:SA:OCE87694539,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87694547,1,"Cordesse-Igornay",47.051769,4.344108,-1,0,SIN:SA:OCE87694547,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87694554,1,"Dracy-St-Loup",47.008377,4.343501,-1,0,SIN:SA:OCE87694554,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87694570,1,"Gare de Autun",46.954678,4.293028,-1,0,SIN:SA:OCE87694570,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87694596,1,"Gare de Brion-Laizy",46.908559,4.207195,-1,0,SIN:SA:OCE87694596,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87694687,1,"Gare de Paray-le-Monial",46.447256,4.113628,-1,0,SIN:SA:OCE87694687,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87694695,1,"Gare de Digoin",46.485196,3.987637,-1,0,SIN:SA:OCE87694695,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87694729,1,"Dyo",46.351716,4.26604,-1,0,SIN:SA:OCE87694729,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87694737,1,"Gare de La Clayette-Baudemont",46.288162,4.298451,-1,0,SIN:SA:OCE87694737,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87694778,1,"Gare de Chauffailles",46.207404,4.345377,-1,0,SIN:SA:OCE87694778,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87694851,1,"Gare de St-Agnan",46.502017,3.879009,-1,0,SIN:SA:OCE87694851,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87694869,1,"Gare de Gilly-sur-Loire",46.536983,3.781787,-1,0,SIN:SA:OCE87694869,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87694885,1,"Charolles",46.435153,4.273414,-1,0,SIN:SA:OCE87694885,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87695973,1,"Bellignat-Lycée-Arbez-C",46.250586,5.632869,-1,0,SIN:SA:OCE87407098,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87695981,1,"Bellignat-Mairie",46.24243,5.629702,-1,0,SIN:SA:OCE87635771,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87695999,1,"Bourg-En-Bresse-Archive",27.140973,-3.404561,-1,0,SIN:SA:OCE87458836,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87696005,1,"Gare de Nevers",46.987349,3.15087,-1,0,SIN:SA:OCE87696005,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87696013,1,"Bourg-En-Bresse-Gare-Ro",46.200098,5.214981,-1,0,SIN:SA:OCE87458836,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87696054,1,"Ceyzeriat-Mairie",46.17902,5.322054,-1,0,SIN:SA:OCE87635771,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87696146,1,"Gare de Cosne-sur-Loire",47.414026,2.932089,-1,0,SIN:SA:OCE87696146,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87696153,1,"Hautecourt-Primaire",46.157876,5.420158,-1,0,SIN:SA:OCE87696153,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87696260,1,"Gare de Saincaize",46.931373,3.071971,-1,0,SIN:SA:OCE87696260,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87696294,1,"Gare de St-Pierre-le-Moûtier",46.793271,3.111736,-1,0,SIN:SA:OCE87696294,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87696302,1,"Gare de Chantenay-St-Imbert",46.728304,3.171699,-1,0,SIN:SA:OCE87696302,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87696328,1,"Gare de Moulins-sur-Allier",46.561364,3.338755,-1,0,SIN:SA:OCE87696328,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87696427,1,"Gare de Dompierre-Sept-Fons",46.526267,3.674899,-1,0,SIN:SA:OCE87696427,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87696450,1,"Gare de Imphy",46.9334,3.259751,-1,0,SIN:SA:OCE87696450,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87696468,1,"Gare de Béard",46.865303,3.318114,-1,0,SIN:SA:OCE87696468,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87696484,1,"Gare de Decize",46.837332,3.467296,-1,0,SIN:SA:OCE87696484,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87696492,1,"Gare de Cercy-la-Tour",46.857926,3.645024,-1,0,SIN:SA:OCE87696492,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87696518,1,"Fours",46.817243,3.721173,-1,0,SIN:SA:OCE87696518,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87696526,1,"Remilly-St-Honoré-les-B",46.835272,3.815712,-1,0,SIN:SA:OCE87696526,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87696534,1,"Gare de Luzy(Nièvre)",46.794044,3.969226,-1,0,SIN:SA:OCE87696534,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87696617,1,"Gare de Corbigny",47.253977,3.677881,-1,0,SIN:SA:OCE87696617,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87696633,1,"Gare de Flez-Cuzy-Tannay",47.362541,3.615025,-1,0,SIN:SA:OCE87696633,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87696807,1,"Gare de Clamecy",47.466487,3.520646,-1,0,SIN:SA:OCE87696807,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87696831,1,"Gare de Coulanges-Sur-Yonne",47.527366,3.547154,-1,0,SIN:SA:OCE87696831,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87696856,1,"Gare de Châtel-Censoir",47.537739,3.635345,-1,0,SIN:SA:OCE87696856,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87697128,1,"Gare de Lyon-Part-Dieu-Gare-Rou",45.760585,4.859435,-1,0,SIN:SA:OCE87458836,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87697169,1,"Legny-Ponts-Tarrets",45.906795,4.575537,-1,0,SIN:SA:OCE87697169,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87697672,1,"Bourg-en-Bresse-Charité",27.140973,-3.404561,-1,0,SIN:SA:OCE87458836,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87697706,1,"Polliat-Mairie",46.249302,5.126,-1,0,SIN:SA:OCE87635771,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87697730,1,"Simandre-Suran-Mairie",46.224562,5.415107,-1,0,SIN:SA:OCE87635771,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87697839,1,"Perl-Gare-DB",27.140973,-3.404561,-1,0,SIN:SA:OCE87405878,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87697979,1,"Vincelles-Avenue-Gare",27.140973,-3.404561,-1,0,SIN:SA:OCE87405878,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87697987,1,"Fléty-Pont -Boudot",27.140973,-3.404561,-1,0,SIN:SA:OCE87458794,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87699009,1,"La Chapelle-sous-Dun",46.258054,4.295551,-1,0,SIN:SA:OCE87699009,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87699629,1,"Echevannes",47.523861,5.181818,-1,0,SIN:SA:OCE87699629,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87699850,1,"Malbuisson",46.799257,6.304993,-1,0,SIN:SA:OCE87699850,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87700880,1,"Charolles-Est-RD-17",27.140973,-3.404561,-1,0,SIN:SA:OCE87700880,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87700906,1,"Tantonville-L.-Pasteur",27.140973,-3.404561,-1,0,SIN:SA:OCE87458836,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87700930,1,"Diarville-Place-Midon",27.140973,-3.404561,-1,0,SIN:SA:OCE87700930,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87700955,1,"Mattaincourt-la-Poste",27.140973,-3.404561,-1,0,SIN:SA:OCE87700955,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87700963,1,"Hymont-Mairie",27.140973,-3.404561,-1,0,SIN:SA:OCE87635771,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87700971,1,"Hareville-Monfort-Abri",27.140973,-3.404561,-1,0,SIN:SA:OCE87700971,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87700989,1,"Martigny-les-B-Thiebaut",27.140973,-3.404561,-1,0,SIN:SA:OCE87635862,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87700997,1,"Lamarche-Centre-Arrêt",27.140973,-3.404561,-1,0,SIN:SA:OCE87635862,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87701086,1,"Pierreville-Xeuilley",27.140973,-3.404561,-1,0,SIN:SA:OCE87701086,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87701094,1,"Pulligny-Foyer-Culturel",27.140973,-3.404561,-1,0,SIN:SA:OCE87701094,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87701102,1,"Ceintrey-Grp-Scolaire",27.140973,-3.404561,-1,0,SIN:SA:OCE87701102,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87701110,1,"Vézelise-J.-Leclerc",27.140973,-3.404561,-1,0,SIN:SA:OCE87701110,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87702068,1,"Zellenberg-Route-du-Vin",27.140973,-3.404561,-1,0,SIN:SA:OCE87458836,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87702076,1,"Riquewihr-Poste",27.140973,-3.404561,-1,0,SIN:SA:OCE87700955,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87702084,1,"Bouxwiller-Clos-des-S.",27.140973,-3.404561,-1,0,SIN:SA:OCE87702084,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87712026,1,"Gare de Rully",46.880291,4.760774,-1,0,SIN:SA:OCE87712026,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87712133,1,"Paris-l'Hôpital",46.913745,4.635807,-1,0,SIN:SA:OCE87712133,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87712190,1,"Sully-le-Château",47.006005,4.469681,-1,0,SIN:SA:OCE87712190,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87712265,1,"Gare de Brétigny-Norges",47.389627,5.109756,-1,0,SIN:SA:OCE87712265,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87712604,1,"Gare de Ouges",47.255673,5.073252,-1,0,SIN:SA:OCE87712604,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87712620,1,"Gare de Longecourt-en-Plaine",47.19387,5.134814,-1,0,SIN:SA:OCE87712620,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87712679,1,"Gare de Chaugey",47.087531,5.255282,-1,0,SIN:SA:OCE87712679,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87713008,1,"Gare de Dijon-Porte-Neuve",47.322794,5.054861,-1,0,SIN:SA:OCE87713008,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87713040,1,"Gare de Dijon-Ville",47.323404,5.02728,-1,0,SIN:SA:OCE87713040,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87713115,1,"Gare de Les Laumes-Alésia",47.543319,4.462868,-1,0,SIN:SA:OCE87713115,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87713131,1,"Gare de Montbard",47.61872,4.336152,-1,0,SIN:SA:OCE87713131,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87713156,1,"Gare de Nuits-sous-Ravières",47.72921,4.211266,-1,0,SIN:SA:OCE87713156,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87713198,1,"Gare de Tonnerre",47.859603,3.973496,-1,0,SIN:SA:OCE87713198,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87713271,1,"Epoisses",47.50651,4.171347,-1,0,SIN:SA:OCE87713271,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87713412,1,"Gare de Dole-Ville",47.096155,5.488036,-1,0,SIN:SA:OCE87713412,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87713503,1,"Gare de Gevrey-Chambertin",47.227388,4.998789,-1,0,SIN:SA:OCE87713503,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87713511,1,"Gare de Vougeot-Gilly-Les-Cît.",47.175618,4.971269,-1,0,SIN:SA:OCE87713511,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87713529,1,"Gare de Nuits-St-Georges",47.130668,4.956228,-1,0,SIN:SA:OCE87713529,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87713537,1,"Gare de Corgoloin",47.084212,4.916892,-1,0,SIN:SA:OCE87713537,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87713545,1,"Gare de Beaune",47.023041,4.848723,-1,0,SIN:SA:OCE87713545,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87713560,1,"Gare de Meursault",46.969182,4.795415,-1,0,SIN:SA:OCE87713560,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87713578,1,"Gare de Chagny",46.907429,4.74965,-1,0,SIN:SA:OCE87713578,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87713586,1,"Gare de Fontaines-Mercurey",46.851217,4.774869,-1,0,SIN:SA:OCE87713586,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87713594,1,"Gare de Santenay-les-Bains",46.910985,4.702054,-1,0,SIN:SA:OCE87713594,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87713610,1,"Epinac-les-Mines-Mairie",46.991053,4.513543,-1,0,SIN:SA:OCE87713610,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87713628,1,"Gare de Saulon",47.224183,5.104766,-1,0,SIN:SA:OCE87713628,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87713636,1,"Gare de Aiserey",47.170648,5.158391,-1,0,SIN:SA:OCE87713636,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87713644,1,"Gare de Brazey-en-Plaine",47.131563,5.212223,-1,0,SIN:SA:OCE87713644,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87713651,1,"Gare de St-Jean-de-Losne",47.099799,5.244335,-1,0,SIN:SA:OCE87713651,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87713677,1,"Gare de Seurre",46.99645,5.151248,-1,0,SIN:SA:OCE87713677,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87713685,1,"Navilly",46.932458,5.138979,-1,0,SIN:SA:OCE87713685,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87713693,1,"St-Bonnet-en-Bresse",46.854845,5.16594,-1,0,SIN:SA:OCE87713693,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87713701,1,"Gare de Mervans",46.798883,5.179536,-1,0,SIN:SA:OCE87713701,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87713735,1,"Gare de Louhans",46.631126,5.217708,-1,0,SIN:SA:OCE87713735,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87713826,1,"Gare de Ruffey",47.370702,5.079387,-1,0,SIN:SA:OCE87713826,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87713834,1,"Gare de St-Julien-Clenay",47.405559,5.128045,-1,0,SIN:SA:OCE87713834,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87713842,1,"Gare de Gemeaux",47.477803,5.130078,-1,0,SIN:SA:OCE87713842,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87713859,1,"Gare de Is-sur-Tille",47.520228,5.129833,-1,0,SIN:SA:OCE87713859,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87713933,1,"Change",46.930115,4.631856,-1,0,SIN:SA:OCE87713933,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87713966,1,"Dezize",46.909647,4.654321,-1,0,SIN:SA:OCE87713966,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87715003,1,"Gare de Pontarlier",46.900982,6.353365,-1,0,SIN:SA:OCE87715003,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87715102,1,"Gare de Andelot",46.85938,5.923725,-1,0,SIN:SA:OCE87715102,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87715136,1,"Gare de Frasne",46.85745,6.157695,-1,0,SIN:SA:OCE87715136,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87715144,1,"Gare de La Rivière",46.870105,6.213439,-1,0,SIN:SA:OCE87715144,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87715151,1,"Gare de Ste-Colombe",46.87902,6.265864,-1,0,SIN:SA:OCE87715151,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87715169,1,"Les Granges-Narboz",46.879024,6.309097,-1,0,SIN:SA:OCE87715169,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87715193,1,"Bonnevaux",46.808419,6.184197,-1,0,SIN:SA:OCE87715193,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87715201,1,"Vaux-et-Chantegrue",46.813687,6.24877,-1,0,SIN:SA:OCE87715201,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87715219,1,"Gare de Labergement-Ste-Marie",46.773147,6.280666,-1,0,SIN:SA:OCE87715219,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87715227,1,"Les Longevilles-Rochej.",46.753627,6.315217,-1,0,SIN:SA:OCE87715227,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87715235,1,"Les Granges-Ste-Marie",46.787984,6.277751,-1,0,SIN:SA:OCE87715235,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87715250,1,"St-Antoine",46.775615,6.341803,-1,0,SIN:SA:OCE87715250,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87715268,1,"Métabief",46.7735,6.350221,-1,0,SIN:SA:OCE87715268,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87715326,1,"Gare de Champagnole",46.749247,5.909936,-1,0,SIN:SA:OCE87715326,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87715383,1,"Gare de La Chaux-des-Crotenay",46.654536,5.943833,-1,0,SIN:SA:OCE87715383,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87715391,1,"Gare de La Chaumusse-Fort-du-Pl",46.604902,5.96146,-1,0,SIN:SA:OCE87715391,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87715417,1,"Gare de St-Laurent-en-Grandvaux",46.574925,5.951383,-1,0,SIN:SA:OCE87715417,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87715433,1,"Gare de Morbier",46.539109,6.017909,-1,0,SIN:SA:OCE87715433,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87715441,1,"Gare de Morez",46.526327,6.023801,-1,0,SIN:SA:OCE87715441,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87715516,1,"Les Hôpitaux-Neufs",46.776001,6.371321,-1,0,SIN:SA:OCE87715516,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87715524,1,"Jougne",46.760077,6.388785,-1,0,SIN:SA:OCE87715524,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87718007,1,"Gare de Besançon-Viotte",47.247038,6.021912,-1,0,SIN:SA:OCE87718007,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87718015,1,"Gare de Besançon-Mouillère",47.240382,6.033751,-1,0,SIN:SA:OCE87718015,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87718122,1,"Gare de Byans",47.118586,5.85224,-1,0,SIN:SA:OCE87718122,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87718130,1,"Gare de Liesle",47.058829,5.820603,-1,0,SIN:SA:OCE87718130,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87718155,1,"Gare de Arbois (Jura)",46.912425,5.764767,-1,0,SIN:SA:OCE87718155,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87718189,1,"Gare de Poligny",46.844169,5.700318,-1,0,SIN:SA:OCE87718189,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87718197,1,"Gare de St-Lothain",46.823719,5.64506,-1,0,SIN:SA:OCE87718197,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87718205,1,"Passenans",46.798483,5.618023,-1,0,SIN:SA:OCE87718205,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87718221,1,"Montain-Lavigny",46.715514,5.585348,-1,0,SIN:SA:OCE87718221,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87718239,1,"Gare de Lons-le-Saunier",46.668398,5.550877,-1,0,SIN:SA:OCE87718239,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87718502,1,"Gare de Saône",47.209573,6.101417,-1,0,SIN:SA:OCE87718502,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87718510,1,"Gare de Mamirolle",47.199891,6.161878,-1,0,SIN:SA:OCE87718510,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87718528,1,"Gare de L'Hôpital-du-Gros-Bois",47.169216,6.213308,-1,0,SIN:SA:OCE87718528,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87718544,1,"Gare de Le Valdahon",47.149697,6.342275,-1,0,SIN:SA:OCE87718544,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87718551,1,"Gare de Avoudrey",47.129855,6.434848,-1,0,SIN:SA:OCE87718551,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87718577,1,"Gare de Gilley",47.050484,6.49229,-1,0,SIN:SA:OCE87718577,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87718619,1,"Gare de Morteau",47.053691,6.60486,-1,0,SIN:SA:OCE87718619,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87718833,1,"Gare de Mouchard",46.976813,5.799724,-1,0,SIN:SA:OCE87718833,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87718841,1,"Gare de Arc-et-Senans",47.030456,5.776935,-1,0,SIN:SA:OCE87718841,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87718866,1,"Gare de Montbarrey",47.035877,5.637226,-1,0,SIN:SA:OCE87718866,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87718890,1,"Salins-les-Bains",46.937011,5.876125,-1,0,SIN:SA:OCE87718890,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87719906,1,"Marcilly sur Tille",47.521609,5.147178,-1,0,SIN:SA:OCE87719906,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87719914,1,"Ampilly-le-Sec",47.812061,4.530932,-1,0,SIN:SA:OCE87719914,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87719922,1,"Coulmier-le-Sec",47.750198,4.493285,-1,0,SIN:SA:OCE87719922,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87719930,1,"Etais",47.708282,4.437541,-1,0,SIN:SA:OCE87719930,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87719948,1,"Puits",47.731624,4.464591,-1,0,SIN:SA:OCE87719948,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87721332,1,"Gare de Villefranche-sur-Saône",45.984444,4.720814,-1,0,SIN:SA:OCE87721332,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87721340,1,"Gare de St-Georges-de-Reneins",46.062191,4.718887,-1,0,SIN:SA:OCE87721340,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87721357,1,"Gare de Belleville-sur-Saône",46.111942,4.729002,-1,0,SIN:SA:OCE87721357,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87721423,1,"Gare de Lozanne",45.854135,4.68146,-1,0,SIN:SA:OCE87721423,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87721753,1,"Gare de Chatillon-d'Azergues",45.875254,4.645199,-1,0,SIN:SA:OCE87721753,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87721761,1,"Gare de Chessy (Rhône)",45.885537,4.622497,-1,0,SIN:SA:OCE87721761,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87721779,1,"Le Breuil (Rhône)",45.896771,4.591215,-1,0,SIN:SA:OCE87721779,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87721787,1,"Gare de Bois-d'Oingt-Légny",45.906588,4.57558,-1,0,SIN:SA:OCE87721787,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87721811,1,"Ternand",45.946157,4.536593,-1,0,SIN:SA:OCE87721811,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87721829,1,"Gare de Chamelet",45.981605,4.507096,-1,0,SIN:SA:OCE87721829,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87721845,1,"Chambost-Allières.",46.018686,4.499135,-1,0,SIN:SA:OCE87721845,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87721852,1,"Grandris-Folletière.",46.035952,4.49333,-1,0,SIN:SA:OCE87721852,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87721860,1,"Gare de Lamure-sur-Azergues",46.061095,4.492123,-1,0,SIN:SA:OCE87721860,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87721878,1,"St-Nizier-d'Azergues",46.087032,4.48043,-1,0,SIN:SA:OCE87721878,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87721894,1,"Poule",46.148108,4.456527,-1,0,SIN:SA:OCE87721894,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87725002,1,"Gare de Chalon-sur-Saône",46.78157,4.843489,-1,0,SIN:SA:OCE87725002,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87725689,1,"Gare de Mâcon-Ville",46.302659,4.825149,-1,0,SIN:SA:OCE87725689,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87725705,1,"Gare de Mâcon-Loché-TGV",46.282898,4.778948,-1,0,SIN:SA:OCE87725705,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87725713,1,"Gare de Crêches-sur-Saône",46.246615,4.783901,-1,0,SIN:SA:OCE87725713,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87725739,1,"Gare de Romanèche-Thorins",46.176382,4.742101,-1,0,SIN:SA:OCE87725739,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87725804,1,"Gare de Pont-de-Veyle",46.267827,4.892948,-1,0,SIN:SA:OCE87725804,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87725812,1,"St-Jean-sur-Veyle",46.260588,4.915644,-1,0,SIN:SA:OCE87725812,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87725820,1,"Gare de Vonnas",46.227197,4.991746,-1,0,SIN:SA:OCE87725820,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87725838,1,"Gare de Mézériat",46.234927,5.046569,-1,0,SIN:SA:OCE87725838,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87739912,1,"Remigny",46.908033,4.721624,-1,0,SIN:SA:OCE87739912,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87739961,1,"St-Symphorien-des-Bois",46.332735,4.2814,-1,0,SIN:SA:OCE87739961,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87743005,1,"Gare de Bourg-en-Bresse",46.200126,5.214969,-1,0,SIN:SA:OCE87743005,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87743328,1,"Gare de Villereversure",46.194155,5.397522,-1,0,SIN:SA:OCE87743328,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87743351,1,"Gare de Nurieux",46.184727,5.527912,-1,0,SIN:SA:OCE87743351,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87743500,1,"Montréal",46.184275,5.577369,-1,0,SIN:SA:OCE87743500,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87743518,1,"Martignat",46.209449,5.610343,-1,0,SIN:SA:OCE87743518,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87743534,1,"Gare de Oyonnax",46.259609,5.653252,-1,0,SIN:SA:OCE87743534,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87743591,1,"Gare de Molinges",46.356961,5.768063,-1,0,SIN:SA:OCE87743591,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87743633,1,"Gare de St-Claude",46.38993,5.860389,-1,0,SIN:SA:OCE87743633,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87936989,1,"Buswiller-Eglise",48.819683,7.559425,-1,0,SIN:SA:OCE87936989,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87113001,1,"Gare de Paris-Est",48.87657,2.359151,-1,0,SIN:SA:OCE87113001,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87116137,1,"Gare de Longueville (S.-et-M.)",48.513511,3.249685,-1,0,SIN:SA:OCE87116137,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87118000,1,"Gare de Troyes",48.29503,4.065384,-1,0,SIN:SA:OCE87118000,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87118158,1,"Gare de Romilly-sur-Seine",48.514173,3.728332,-1,0,SIN:SA:OCE87118158,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87118190,1,"Gare de Nogent-sur-Seine",48.497837,3.493708,-1,0,SIN:SA:OCE87118190,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87118257,1,"Gare de Vendeuvre (Aube)",48.240336,4.467188,-1,0,SIN:SA:OCE87118257,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87118299,1,"Gare de Bar-sur-Aube",48.23855,4.706838,-1,0,SIN:SA:OCE87118299,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87141002,1,"Gare de Nancy-Ville",48.689782,6.174272,-1,0,SIN:SA:OCE87141002,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87141150,1,"Gare de Lunéville",48.587994,6.497035,-1,0,SIN:SA:OCE87141150,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87142000,1,"Gare de Chaumont",48.109454,5.134445,-1,0,SIN:SA:OCE87142000,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87142091,1,"Gare de Langres",47.877255,5.34468,-1,0,SIN:SA:OCE87142091,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87142125,1,"Gare de Culmont-Chalindrey",47.810232,5.443216,-1,0,SIN:SA:OCE87142125,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87182063,1,"Gare de Mulhouse",47.741798,7.34285,-1,0,SIN:SA:OCE87182063,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87182238,1,"Gare de Altkirch",47.627106,7.239591,-1,0,SIN:SA:OCE87182238,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87184002,1,"Gare de Belfort-Ville",47.632447,6.853924,-1,0,SIN:SA:OCE87184002,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87185009,1,"Gare de Vesoul",47.617799,6.151767,-1,0,SIN:SA:OCE87185009,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87185249,1,"Gare de Lure",47.683249,6.492557,-1,0,SIN:SA:OCE87185249,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87212027,1,"Gare de Strasbourg",48.585172,7.733968,-1,0,SIN:SA:OCE87212027,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87212225,1,"Gare de Saverne",48.744779,7.362152,-1,0,SIN:SA:OCE87212225,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87215012,1,"Gare de Sarrebourg",48.737941,7.052781,-1,0,SIN:SA:OCE87215012,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87271007,1,"Gare de Paris-Nord",48.880138,2.354887,-1,0,SIN:SA:OCE87271007,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87276006,1,"Gare de Creil",49.263769,2.46918,-1,0,SIN:SA:OCE87276006,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87276329,1,"Gare de Pont-Ste-Maxence",49.30978,2.602853,-1,0,SIN:SA:OCE87276329,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87276691,1,"Gare de Compiègne",49.422013,2.823486,-1,0,SIN:SA:OCE87276691,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87276782,1,"Gare de Noyon",49.577341,3.006376,-1,0,SIN:SA:OCE87276782,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87295006,1,"Gare de Maubeuge",50.272805,3.966406,-1,0,SIN:SA:OCE87295006,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87295220,1,"Gare de Le Cateau",50.091461,3.540021,-1,0,SIN:SA:OCE87295220,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87295600,1,"Gare de Aulnoye Aymeries",50.197327,3.843239,-1,0,SIN:SA:OCE87295600,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87296004,1,"Gare de St Quentin",49.840022,3.296932,-1,0,SIN:SA:OCE87296004,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87296244,1,"Gare de Busigny",50.039489,3.446338,-1,0,SIN:SA:OCE87296244,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87296442,1,"Gare de Tergnier",49.659244,3.297225,-1,0,SIN:SA:OCE87296442,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87296616,1,"Gare de Chauny",49.610199,3.222522,-1,0,SIN:SA:OCE87296616,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87313049,1,"Gare de Longueau",49.863438,2.352228,-1,0,SIN:SA:OCE87313049,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87313270,1,"Gare de St-Just-SNCF",49.503496,2.429221,-1,0,SIN:SA:OCE87313270,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87313304,1,"Gare de Clermont-de-l'Oise",49.385338,2.417203,-1,0,SIN:SA:OCE87313304,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87313874,1,"Gare de Amiens",49.890532,2.308098,-1,0,SIN:SA:OCE87313874,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87317057,1,"Gare de Rang du Fl. Verton Ber.",50.41581,1.648077,-1,0,SIN:SA:OCE87317057,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87317065,1,"Gare de Etaples Le Touquet",50.516717,1.642496,-1,0,SIN:SA:OCE87317065,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87317362,1,"Gare de Abbeville",50.102194,1.824485,-1,0,SIN:SA:OCE87317362,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87317396,1,"Gare de Noyelles-sur-Mer",50.187334,1.704474,-1,0,SIN:SA:OCE87317396,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87317404,1,"Gare de Rue",50.273198,1.675613,-1,0,SIN:SA:OCE87317404,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87317586,1,"Gare de Boulogne Ville",50.715585,1.609806,-1,0,SIN:SA:OCE87317586,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87345520,1,"Gare de Cambrai Ville",50.176611,3.241216,-1,0,SIN:SA:OCE87345520,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87345561,1,"Gare de Caudry",50.11141,3.409737,-1,0,SIN:SA:OCE87345561,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87481002,1,"Gare de Nantes",47.217505,-1.541925,-1,0,SIN:SA:OCE87481002,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87484006,1,"Gare de Angers-St-Laud",47.464434,-0.556949,-1,0,SIN:SA:OCE87484006,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87487603,1,"Gare de Saumur",47.268972,-0.07143,-1,0,SIN:SA:OCE87487603,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87571000,1,"Gare de Tours",47.389814,0.693505,-1,0,SIN:SA:OCE87571000,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87571240,1,"Gare de St-Pierre-des-Corps",47.385732,0.725054,-1,0,SIN:SA:OCE87571240,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87576009,1,"Gare de Vierzon",47.226516,2.059824,-1,0,SIN:SA:OCE87576009,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87576207,1,"Gare de Bourges",47.094094,2.394226,-1,0,SIN:SA:OCE87576207,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87684001,1,"Gare de Montargis",48.00718,2.742976,-1,0,SIN:SA:OCE87684001,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87684126,1,"Gare de Nemours-St-Pierre",48.267909,2.685654,-1,0,SIN:SA:OCE87684126,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87684274,1,"Gare de Nogent-sur-Vernisson",47.85285,2.737637,-1,0,SIN:SA:OCE87684274,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87684290,1,"Gare de Gien",47.698883,2.636752,-1,0,SIN:SA:OCE87684290,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87686006,1,"Gare de Paris-Gare-de-Lyon",48.844922,2.373462,-1,0,SIN:SA:OCE87686006,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87686667,1,"Gare de Paris-Bercy",48.839211,2.382799,-1,0,SIN:SA:OCE87686667,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87696005,1,"Gare de Nevers",46.987349,3.15087,-1,0,SIN:SA:OCE87696005,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87696088,1,"Gare de Briare",47.646499,2.733685,-1,0,SIN:SA:OCE87696088,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87696146,1,"Gare de Cosne-sur-Loire",47.414026,2.932089,-1,0,SIN:SA:OCE87696146,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87696161,1,"Gare de Tracy-Sancerre",47.33691,2.880508,-1,0,SIN:SA:OCE87696161,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87696179,1,"Gare de Pouilly-sur-Loire",47.28217,2.966063,-1,0,SIN:SA:OCE87696179,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87696195,1,"Gare de La-Charité-sur-Loire",47.180995,3.024014,-1,0,SIN:SA:OCE87696195,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87696211,1,"Gare de Pougues-les-Eaux",47.076975,3.093823,-1,0,SIN:SA:OCE87696211,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87696229,1,"Gare de Fourchambault",47.019234,3.087301,-1,0,SIN:SA:OCE87696229,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87696260,1,"Gare de Saincaize",46.931373,3.071971,-1,0,SIN:SA:OCE87696260,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87696328,1,"Gare de Moulins-sur-Allier",46.561364,3.338755,-1,0,SIN:SA:OCE87696328,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87713008,1,"Gare de Dijon-Porte-Neuve",47.322794,5.054861,-1,0,SIN:SA:OCE87713008,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87713040,1,"Gare de Dijon-Ville",47.323404,5.02728,-1,0,SIN:SA:OCE87713040,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87713859,1,"Gare de Is-sur-Tille",47.520228,5.129833,-1,0,SIN:SA:OCE87713859,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87722025,1,"Gare de Lyon-Perrache",45.748492,4.825748,-1,0,OID:SA:18,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87723197,1,"Gare de Lyon-Part-Dieu",45.760585,4.859435,-1,0,SIN:SA:OCE87723197,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87726802,1,"Gare de Roanne",46.040211,4.063135,-1,0,SIN:SA:OCE87726802,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87732008,1,"Gare de Vichy",46.12697,3.430489,-1,0,SIN:SA:OCE87732008,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87732206,1,"Gare de St-Germain-des-Fossés",46.209103,3.430489,-1,0,SIN:SA:OCE87732206,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87734004,1,"Gare de Clermont-Ferrand",45.778569,3.100519,-1,0,SIN:SA:OCE87734004,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87734053,1,"Gare de Riom-Châtel-Guyon",45.889842,3.120813,-1,0,SIN:SA:OCE87734053,Europe/Paris,,SIN, +STE:SP:OCECarTER-80142927,1,"Gare de Kehl",48.576507,7.808029,-1,0,SIN:SA:OCE80142927,Europe/Paris,,STE, +STE:SP:OCECarTER-80253914,1,"Gare de Saarbrucken-Hbf",49.240676,6.990983,-1,0,SIN:SA:OCE80253914,Europe/Paris,,STE, +STE:SP:OCECarTER-82001000,1,"Gare de Luxembourg",49.599652,6.134007,-1,0,SIN:SA:OCE82001000,Europe/Paris,,STE, +STE:SP:OCECarTER-82006030,1,"Gare de Bettembourg",49.515996,6.099371,-1,0,SIN:SA:OCE82006030,Europe/Paris,,STE, +STE:SP:OCECarTER-85000109,1,"Gare de Basel-SBB",47.547038,7.589567,-1,0,SIN:SA:OCE85000109,Europe/Paris,,STE, +STE:SP:OCECarTER-85011031,1,"Gare de Vallorbe-Cff",46.712229,6.370815,-1,0,SIN:SA:OCE85011031,Europe/Paris,,STE, +STE:SP:OCECarTER-87023655,1,"Vézelay",47.463587,3.741643,-1,0,SIN:SA:OCE87023655,Europe/Paris,,STE, +STE:SP:OCECarTER-87107409,1,"Vignory Centre",48.278333,5.101387,-1,0,SIN:SA:OCE87107409,Europe/Paris,,STE, +STE:SP:OCECarTER-87107417,1,"Chaumont-Hôpital",48.119716,5.139157,-1,0,SIN:SA:OCE87107417,Europe/Paris,,STE, +STE:SP:OCECarTER-87107425,1,"Bologne-Salle-des-Fêtes",48.199715,5.141379,-1,0,SIN:SA:OCE87107425,Europe/Paris,,STE, +STE:SP:OCECarTER-87107433,1,"Soncourt",48.252218,5.116931,-1,0,SIN:SA:OCE87107433,Europe/Paris,,STE, +STE:SP:OCECarTER-87107458,1,"Gudmont-Centre",48.342494,5.136931,-1,0,SIN:SA:OCE87107458,Europe/Paris,,STE, +STE:SP:OCECarTER-87107466,1,"Eurville-Mairie",48.585276,5.037212,-1,0,SIN:SA:OCE87107466,Europe/Paris,,STE, +STE:SP:OCECarTER-87107474,1,"St-Dizier-Godard-Jeanso",48.631387,4.950264,-1,0,SIN:SA:OCE87107474,Europe/Paris,,STE, +STE:SP:OCECarTER-87107482,1,"Chatonrupt",48.488885,5.127497,-1,0,SIN:SA:OCE87107482,Europe/Paris,,STE, +STE:SP:OCECarTER-87107490,1,"Fronville-Lotissement",48.404721,5.154718,-1,0,SIN:SA:OCE87107490,Europe/Paris,,STE, +STE:SP:OCECarTER-87107508,1,"Marnaval-Eglise",48.62527,4.989994,-1,0,SIN:SA:OCE87107508,Europe/Paris,,STE, +STE:SP:OCECarTER-87108829,1,"Sedan-Place-Calonne",49.699714,4.944158,-1,0,SIN:SA:OCE87108829,Europe/Paris,,STE, +STE:SP:OCECarTER-87110346,1,"Ervy-le-Châtel-Halle",48.041658,3.911108,-1,0,SIN:SA:OCE87110346,Europe/Paris,,STE, +STE:SP:OCECarTER-87110361,1,"Villeneuve-au-Chemin",48.089996,3.851378,-1,0,SIN:SA:OCE87110361,Europe/Paris,,STE, +STE:SP:OCECarTER-87110379,1,"Fays-La-Chapelle",48.129717,4.018883,-1,0,SIN:SA:OCE87110379,Europe/Paris,,STE, +STE:SP:OCECarTER-87111567,1,"Rodange.",27.140973,-3.404561,-1,0,SIN:SA:OCE87111567,Europe/Paris,,STE, +STE:SP:OCECarTER-87112326,1,"Carignan Rue Paix",49.635832,5.160544,-1,0,SIN:SA:OCE87112326,Europe/Paris,,STE, +STE:SP:OCECarTER-87112334,1,"Wé",49.640831,5.153887,-1,0,SIN:SA:OCE87112334,Europe/Paris,,STE, +STE:SP:OCECarTER-87112342,1,"Fromy",49.596383,5.249437,-1,0,SIN:SA:OCE87112342,Europe/Paris,,STE, +STE:SP:OCECarTER-87112714,1,"Margut Village",49.585269,5.265268,-1,0,SIN:SA:OCE87112714,Europe/Paris,,STE, +STE:SP:OCECarTER-87112771,1,"St-Hilaire-sous-Romilly",48.515828,3.656109,-1,0,SIN:SA:OCE87112771,Europe/Paris,,STE, +STE:SP:OCECarTER-87113001,1,"Gare de Paris-Est",48.87657,2.359151,-1,0,SIN:SA:OCE87113001,Europe/Paris,,STE, +STE:SP:OCECarTER-87113746,1,"Gare de Nogent-le-Perreux",48.838721,2.494077,-1,0,SIN:SA:OCE87113746,Europe/Paris,,STE, +STE:SP:OCECarTER-87113795,1,"Gare de Villiers/M.-Plessis-Tr.",48.82318,2.542323,-1,0,SIN:SA:OCE87113795,Europe/Paris,,STE, +STE:SP:OCECarTER-87116582,1,"Gare de Château-Thierry",49.038171,3.409266,-1,0,TRN:SA:DUA8711658,Europe/Paris,,STE, +STE:SP:OCECarTER-87116673,1,"Gare de La Ferté-Milon",49.179556,3.121028,-1,0,TRN:SA:DUA8711667,Europe/Paris,,STE, +STE:SP:OCECarTER-87116681,1,"Neuilly-St-Front",49.187092,3.270741,-1,0,SIN:SA:OCE87116681,Europe/Paris,,STE, +STE:SP:OCECarTER-87116699,1,"Oulchy-Brény",49.187631,3.35255,-1,0,SIN:SA:OCE87116699,Europe/Paris,,STE, +STE:SP:OCECarTER-87117119,1,"Auxon Eglise",48.103054,3.918328,-1,0,SIN:SA:OCE87117119,Europe/Paris,,STE, +STE:SP:OCECarTER-87117135,1,"Rehainviller",48.562601,6.469999,-1,0,SIN:SA:OCE87117135,Europe/Paris,,STE, +STE:SP:OCECarTER-87117143,1,"St-Pierremont",48.437495,6.576381,-1,0,SIN:SA:OCE87117143,Europe/Paris,,STE, +STE:SP:OCECarTER-87117267,1,"Orville",47.564566,5.213052,-1,0,SIN:SA:OCE87117267,Europe/Paris,,STE, +STE:SP:OCECarTER-87117275,1,"Torcenay",47.815703,5.463167,-1,0,SIN:SA:OCE87117275,Europe/Paris,,STE, +STE:SP:OCECarTER-87117341,1,"Vernois-sur-Mance",47.845704,5.785817,-1,0,SIN:SA:OCE87117341,Europe/Paris,,STE, +STE:SP:OCECarTER-87117366,1,"Blondefontaine",47.877692,5.867,-1,0,SIN:SA:OCE87117366,Europe/Paris,,STE, +STE:SP:OCECarTER-87117374,1,"Raincourt",47.859999,5.88583,-1,0,SIN:SA:OCE87117374,Europe/Paris,,STE, +STE:SP:OCECarTER-87117382,1,"Gevigney",47.79888,5.931665,-1,0,SIN:SA:OCE87117382,Europe/Paris,,STE, +STE:SP:OCECarTER-87117390,1,"Baulay",47.786524,6.009752,-1,0,SIN:SA:OCE87117390,Europe/Paris,,STE, +STE:SP:OCECarTER-87117408,1,"Amoncourt",47.735747,6.05986,-1,0,SIN:SA:OCE87117408,Europe/Paris,,STE, +STE:SP:OCECarTER-87117416,1,"Chaux-les-Port",47.712938,6.038739,-1,0,SIN:SA:OCE87117416,Europe/Paris,,STE, +STE:SP:OCECarTER-87117424,1,"Charmoille",47.662773,6.107495,-1,0,SIN:SA:OCE87117424,Europe/Paris,,STE, +STE:SP:OCECarTER-87117432,1,"Pusey",47.651939,6.126942,-1,0,SIN:SA:OCE87117432,Europe/Paris,,STE, +STE:SP:OCECarTER-87117440,1,"Martigny-les-Gerbonvaux",48.444794,5.792706,-1,0,SIN:SA:OCE87117440,Europe/Paris,,STE, +STE:SP:OCECarTER-87117457,1,"Autreville",48.484057,5.849124,-1,0,SIN:SA:OCE87117457,Europe/Paris,,STE, +STE:SP:OCECarTER-87117465,1,"Allamps-Esat",48.542793,5.79684,-1,0,SIN:SA:OCE87117465,Europe/Paris,,STE, +STE:SP:OCECarTER-87117473,1,"Mont-le-Vignoble-Centre",48.612419,5.841278,-1,0,SIN:SA:OCE87117473,Europe/Paris,,STE, +STE:SP:OCECarTER-87117499,1,"Hestroff",49.262272,6.433705,-1,0,SIN:SA:OCE87117499,Europe/Paris,,STE, +STE:SP:OCECarTER-87117507,1,"Vaudreching",49.285177,6.524443,-1,0,SIN:SA:OCE87117507,Europe/Paris,,STE, +STE:SP:OCECarTER-87117515,1,"Alzing",49.279032,6.552215,-1,0,SIN:SA:OCE87117515,Europe/Paris,,STE, +STE:SP:OCECarTER-87117523,1,"Hargarten-aux-Mines",49.225273,6.609162,-1,0,SIN:SA:OCE87117523,Europe/Paris,,STE, +STE:SP:OCECarTER-87117564,1,"Villette",49.474162,5.545541,-1,0,SIN:SA:OCE87117564,Europe/Paris,,STE, +STE:SP:OCECarTER-87117572,1,"Colmey-Flabeuville",49.457652,5.557194,-1,0,SIN:SA:OCE87117572,Europe/Paris,,STE, +STE:SP:OCECarTER-87117598,1,"Montigny-sur-Chiers",49.478761,5.669634,-1,0,SIN:SA:OCE87117598,Europe/Paris,,STE, +STE:SP:OCECarTER-87117606,1,"Lexy",49.499003,5.727229,-1,0,SIN:SA:OCE87117606,Europe/Paris,,STE, +STE:SP:OCECarTER-87117689,1,"Hertzing",48.686471,6.950671,-1,0,SIN:SA:OCE87117689,Europe/Paris,,STE, +STE:SP:OCECarTER-87117697,1,"Bébing",48.711785,6.998485,-1,0,SIN:SA:OCE87117697,Europe/Paris,,STE, +STE:SP:OCECarTER-87117903,1,"Bouilly (Mairie)",48.193611,3.998598,-1,0,SIN:SA:OCE87117903,Europe/Paris,,STE, +STE:SP:OCECarTER-87117911,1,"Chamoy-Carrefour D1/D23",48.116937,3.973048,-1,0,SIN:SA:OCE87117911,Europe/Paris,,STE, +STE:SP:OCECarTER-87117929,1,"Jeugny (Eglise)",48.130275,4.036379,-1,0,SIN:SA:OCE87117929,Europe/Paris,,STE, +STE:SP:OCECarTER-87117937,1,"Montigny-les-Monts-Mair",48.103333,3.946105,-1,0,SIN:SA:OCE87117937,Europe/Paris,,STE, +STE:SP:OCECarTER-87117945,1,"St-Germain (Aube) M.",27.140973,-3.404561,-1,0,SIN:SA:OCE87117945,Europe/Paris,,STE, +STE:SP:OCECarTER-87117952,1,"St Jean Bonneval (Egl.)",48.171664,4.048877,-1,0,SIN:SA:OCE87117952,Europe/Paris,,STE, +STE:SP:OCECarTER-87117960,1,"St Phal (Mon. Morts)",48.120549,3.996385,-1,0,SIN:SA:OCE87117960,Europe/Paris,,STE, +STE:SP:OCECarTER-87117978,1,"Villery",48.171102,4.018606,-1,0,SIN:SA:OCE87117978,Europe/Paris,,STE, +STE:SP:OCECarTER-87117986,1,"Neuvy-Sautour-RN",48.042774,3.792765,-1,0,SIN:SA:OCE87117986,Europe/Paris,,STE, +STE:SP:OCECarTER-87117994,1,"Brienon Mairie",47.991943,3.616936,-1,0,SIN:SA:OCE87117994,Europe/Paris,,STE, +STE:SP:OCECarTER-87118000,1,"Gare de Troyes",48.29503,4.065384,-1,0,SIN:SA:OCE87118000,Europe/Paris,,STE, +STE:SP:OCECarTER-87118067,1,"St-Lyé",48.358808,3.999129,-1,0,SIN:SA:OCE87118067,Europe/Paris,,STE, +STE:SP:OCECarTER-87118075,1,"Payns",48.382222,3.97749,-1,0,SIN:SA:OCE87118075,Europe/Paris,,STE, +STE:SP:OCECarTER-87118083,1,"Savières",48.412215,3.947215,-1,0,SIN:SA:OCE87118083,Europe/Paris,,STE, +STE:SP:OCECarTER-87118091,1,"St-Mesmin",48.4388,3.925694,-1,0,SIN:SA:OCE87118091,Europe/Paris,,STE, +STE:SP:OCECarTER-87118117,1,"Vallant-St-Georges",48.466079,3.899576,-1,0,SIN:SA:OCE87118117,Europe/Paris,,STE, +STE:SP:OCECarTER-87118133,1,"Chatres",48.499081,3.855185,-1,0,SIN:SA:OCE87118133,Europe/Paris,,STE, +STE:SP:OCECarTER-87118141,1,"Maizières-Gde-Parroisse",48.505066,3.78596,-1,0,SIN:SA:OCE87118141,Europe/Paris,,STE, +STE:SP:OCECarTER-87118158,1,"Gare de Romilly-sur-Seine",48.514173,3.728332,-1,0,SIN:SA:OCE87118158,Europe/Paris,,STE, +STE:SP:OCECarTER-87118182,1,"Marnay-sur-Seine",48.50942,3.561349,-1,0,SIN:SA:OCE87118182,Europe/Paris,,STE, +STE:SP:OCECarTER-87118190,1,"Gare de Nogent-sur-Seine",48.497837,3.493708,-1,0,SIN:SA:OCE87118190,Europe/Paris,,STE, +STE:SP:OCECarTER-87118257,1,"Gare de Vendeuvre (Aube)",48.240336,4.467188,-1,0,SIN:SA:OCE87118257,Europe/Paris,,STE, +STE:SP:OCECarTER-87118299,1,"Gare de Bar-sur-Aube",48.23855,4.706838,-1,0,SIN:SA:OCE87118299,Europe/Paris,,STE, +STE:SP:OCECarTER-87118414,1,"Ervy-le-Châtel-Gare",48.045023,3.922395,-1,0,SIN:SA:OCE87118414,Europe/Paris,,STE, +STE:SP:OCECarTER-87131961,1,"Gare de Brion-Montréal-La Cluse",46.175782,5.55851,-1,0,SIN:SA:OCE87131961,Europe/Paris,,STE, +STE:SP:OCECarTER-87134296,1,"Rouvray",47.424998,4.102215,-1,0,SIN:SA:OCE87134296,Europe/Paris,,STE, +STE:SP:OCECarTER-87139501,1,"Troyes-St-Martin",48.303328,4.06249,-1,0,SIN:SA:OCE87139501,Europe/Paris,,STE, +STE:SP:OCECarTER-87139519,1,"La Chapelle-St-Luc",48.313049,4.047777,-1,0,SIN:SA:OCE87139519,Europe/Paris,,STE, +STE:SP:OCECarTER-87139527,1,"Barberey-Centre-Comm",48.334158,4.023879,-1,0,SIN:SA:OCE87139527,Europe/Paris,,STE, +STE:SP:OCECarTER-87139535,1,"Barberey-Route-de-Méry",48.338883,4.030546,-1,0,SIN:SA:OCE87139535,Europe/Paris,,STE, +STE:SP:OCECarTER-87139550,1,"Mesgrigny",48.486386,3.8836,-1,0,SIN:SA:OCE87139550,Europe/Paris,,STE, +STE:SP:OCECarTER-87139568,1,"Méry-sur-Seine",48.508603,3.889157,-1,0,SIN:SA:OCE87139568,Europe/Paris,,STE, +STE:SP:OCECarTER-87139584,1,"Les Granges",48.501382,3.780554,-1,0,SIN:SA:OCE87139584,Europe/Paris,,STE, +STE:SP:OCECarTER-87139592,1,"Romilly-P-Sémard",48.506381,3.750829,-1,0,SIN:SA:OCE87139592,Europe/Paris,,STE, +STE:SP:OCECarTER-87139600,1,"Romilly-Gornet-Boivin",48.511942,3.741385,-1,0,SIN:SA:OCE87139600,Europe/Paris,,STE, +STE:SP:OCECarTER-87139659,1,"Troyes-Chambre-Commerce",48.291106,4.071103,-1,0,SIN:SA:OCE87139659,Europe/Paris,,STE, +STE:SP:OCECarTER-87139667,1,"Troyes-Lombards",48.278053,4.065822,-1,0,SIN:SA:OCE87139667,Europe/Paris,,STE, +STE:SP:OCECarTER-87139683,1,"St-André-Reine-Blanche",48.274716,4.059717,-1,0,SIN:SA:OCE87139683,Europe/Paris,,STE, +STE:SP:OCECarTER-87139733,1,"Rosières",48.256665,4.064713,-1,0,SIN:SA:OCE87139733,Europe/Paris,,STE, +STE:SP:OCECarTER-87139774,1,"St-Léger",48.235277,4.078885,-1,0,SIN:SA:OCE87139774,Europe/Paris,,STE, +STE:SP:OCECarTER-87139824,1,"Moussey",48.214441,4.094437,-1,0,SIN:SA:OCE87139824,Europe/Paris,,STE, +STE:SP:OCECarTER-87139857,1,"Roncenay",48.191102,4.065275,-1,0,SIN:SA:OCE87139857,Europe/Paris,,STE, +STE:SP:OCECarTER-87139865,1,"Lirey-La-Chapelle",48.156381,4.04221,-1,0,SIN:SA:OCE87139865,Europe/Paris,,STE, +STE:SP:OCECarTER-87139873,1,"Machy",48.139992,4.044165,-1,0,SIN:SA:OCE87139873,Europe/Paris,,STE, +STE:SP:OCECarTER-87139899,1,"Le Cheminot",48.147496,4.010272,-1,0,SIN:SA:OCE87139899,Europe/Paris,,STE, +STE:SP:OCECarTER-87139907,1,"Coursan-en-Othe",48.079717,3.830265,-1,0,SIN:SA:OCE87139907,Europe/Paris,,STE, +STE:SP:OCECarTER-87139998,1,"Toutry",47.499521,4.12221,-1,0,SIN:SA:OCE87139998,Europe/Paris,,STE, +STE:SP:OCECarTER-87141002,1,"Gare de Nancy-Ville",48.689782,6.174272,-1,0,SIN:SA:OCE87141002,Europe/Paris,,STE, +STE:SP:OCECarTER-87141044,1,"Gare de Toul",48.679041,5.880577,-1,0,SIN:SA:OCE87141044,Europe/Paris,,STE, +STE:SP:OCECarTER-87141069,1,"Gare de Liverdun",48.749397,6.061636,-1,0,SIN:SA:OCE87141069,Europe/Paris,,STE, +STE:SP:OCECarTER-87141077,1,"Gare de Frouard",48.755524,6.144248,-1,0,SIN:SA:OCE87141077,Europe/Paris,,STE, +STE:SP:OCECarTER-87141085,1,"Gare de Champigneulles",48.735091,6.169047,-1,0,SIN:SA:OCE87141085,Europe/Paris,,STE, +STE:SP:OCECarTER-87141143,1,"Gare de Mont-sur-Meurthe",48.559946,6.44984,-1,0,SIN:SA:OCE87141143,Europe/Paris,,STE, +STE:SP:OCECarTER-87141150,1,"Gare de Lunéville",48.587994,6.497035,-1,0,SIN:SA:OCE87141150,Europe/Paris,,STE, +STE:SP:OCECarTER-87141226,1,"Xermaménil",48.533236,6.461248,-1,0,SIN:SA:OCE87141226,Europe/Paris,,STE, +STE:SP:OCECarTER-87141234,1,"Gerbéviller",48.497216,6.51055,-1,0,SIN:SA:OCE87141234,Europe/Paris,,STE, +STE:SP:OCECarTER-87141242,1,"Moyen",48.483426,6.566433,-1,0,SIN:SA:OCE87141242,Europe/Paris,,STE, +STE:SP:OCECarTER-87141259,1,"Soulosse",48.400713,5.731763,-1,0,SIN:SA:OCE87141259,Europe/Paris,,STE, +STE:SP:OCECarTER-87141267,1,"Magnières",48.445293,6.565552,-1,0,SIN:SA:OCE87141267,Europe/Paris,,STE, +STE:SP:OCECarTER-87141291,1,"Gare de Neufchâteau",48.357259,5.690179,-1,0,SIN:SA:OCE87141291,Europe/Paris,,STE, +STE:SP:OCECarTER-87141523,1,"Gare de Pont-St-Vincent",48.602471,6.102964,-1,0,SIN:SA:OCE87141523,Europe/Paris,,STE, +STE:SP:OCECarTER-87141531,1,"Bainville",48.586548,6.099358,-1,0,SIN:SA:OCE87141531,Europe/Paris,,STE, +STE:SP:OCECarTER-87141549,1,"Xeuilley",48.569708,6.101966,-1,0,SIN:SA:OCE87141549,Europe/Paris,,STE, +STE:SP:OCECarTER-87141556,1,"Pierreville",48.549229,6.123817,-1,0,SIN:SA:OCE87141556,Europe/Paris,,STE, +STE:SP:OCECarTER-87141564,1,"Pulligny-Autrey",48.536024,6.13763,-1,0,SIN:SA:OCE87141564,Europe/Paris,,STE, +STE:SP:OCECarTER-87141572,1,"Ceintrey",48.523902,6.157423,-1,0,SIN:SA:OCE87141572,Europe/Paris,,STE, +STE:SP:OCECarTER-87141598,1,"Tantonville",48.483925,6.129099,-1,0,SIN:SA:OCE87141598,Europe/Paris,,STE, +STE:SP:OCECarTER-87141606,1,"Vézelise",48.480657,6.100419,-1,0,SIN:SA:OCE87141606,Europe/Paris,,STE, +STE:SP:OCECarTER-87141622,1,"Praye-sous-Vaudémont",48.432946,6.100703,-1,0,SIN:SA:OCE87141622,Europe/Paris,,STE, +STE:SP:OCECarTER-87141648,1,"Diarville",48.397397,6.126434,-1,0,SIN:SA:OCE87141648,Europe/Paris,,STE, +STE:SP:OCECarTER-87141705,1,"Domgermain-Centre.",48.645117,5.834001,-1,0,SIN:SA:OCE87141705,Europe/Paris,,STE, +STE:SP:OCECarTER-87141713,1,"Charmes-la-Côte-St-Flor",48.628973,5.835266,-1,0,SIN:SA:OCE87141713,Europe/Paris,,STE, +STE:SP:OCECarTER-87141721,1,"Blénod-lès-Toul-Les-Nau",48.599503,5.843529,-1,0,SIN:SA:OCE87141721,Europe/Paris,,STE, +STE:SP:OCECarTER-87141739,1,"Bulligny-Centre",48.576463,5.851268,-1,0,SIN:SA:OCE87141739,Europe/Paris,,STE, +STE:SP:OCECarTER-87141747,1,"Lamerey",48.221665,6.2386,-1,0,SIN:SA:OCE87141747,Europe/Paris,,STE, +STE:SP:OCECarTER-87141754,1,"Barisey-la-Côte",48.534725,5.840462,-1,0,SIN:SA:OCE87141754,Europe/Paris,,STE, +STE:SP:OCECarTER-87141788,1,"Gare de Pompey",48.773245,6.130667,-1,0,SIN:SA:OCE87141788,Europe/Paris,,STE, +STE:SP:OCECarTER-87141796,1,"Gare de Marbache",48.801207,6.10931,-1,0,SIN:SA:OCE87141796,Europe/Paris,,STE, +STE:SP:OCECarTER-87141804,1,"Gare de Belleville",48.819461,6.101753,-1,0,SIN:SA:OCE87141804,Europe/Paris,,STE, +STE:SP:OCECarTER-87141812,1,"Gare de Dieulouard",48.843705,6.071669,-1,0,SIN:SA:OCE87141812,Europe/Paris,,STE, +STE:SP:OCECarTER-87141820,1,"Gare de Pont-à-Mousson",48.900276,6.050802,-1,0,SIN:SA:OCE87141820,Europe/Paris,,STE, +STE:SP:OCECarTER-87142000,1,"Gare de Chaumont",48.109454,5.134445,-1,0,SIN:SA:OCE87142000,Europe/Paris,,STE, +STE:SP:OCECarTER-87142042,1,"Luzy-sur-Marne",48.060276,5.180277,-1,0,SIN:SA:OCE87142042,Europe/Paris,,STE, +STE:SP:OCECarTER-87142091,1,"Gare de Langres",47.877255,5.34468,-1,0,SIN:SA:OCE87142091,Europe/Paris,,STE, +STE:SP:OCECarTER-87142125,1,"Gare de Culmont-Chalindrey",47.810232,5.443216,-1,0,SIN:SA:OCE87142125,Europe/Paris,,STE, +STE:SP:OCECarTER-87142133,1,"Chaudenay (Haute-Marne)",47.817407,5.490823,-1,0,SIN:SA:OCE87142133,Europe/Paris,,STE, +STE:SP:OCECarTER-87142174,1,"Vitrey-Vernois",47.832454,5.781196,-1,0,SIN:SA:OCE87142174,Europe/Paris,,STE, +STE:SP:OCECarTER-87142182,1,"Barges",47.862585,5.846754,-1,0,SIN:SA:OCE87142182,Europe/Paris,,STE, +STE:SP:OCECarTER-87142240,1,"Gare de Froncles",48.296653,5.141589,-1,0,SIN:SA:OCE87142240,Europe/Paris,,STE, +STE:SP:OCECarTER-87142273,1,"Gare de Donjeux",48.365953,5.148406,-1,0,SIN:SA:OCE87142273,Europe/Paris,,STE, +STE:SP:OCECarTER-87142406,1,"Merrey (Haute-Marne)",48.054082,5.594866,-1,0,SIN:SA:OCE87142406,Europe/Paris,,STE, +STE:SP:OCECarTER-87142497,1,"Damblain",48.093964,5.657025,-1,0,SIN:SA:OCE87142497,Europe/Paris,,STE, +STE:SP:OCECarTER-87142554,1,"Châtillon-sur-Seine",47.87019,4.571746,-1,0,SIN:SA:OCE87142554,Europe/Paris,,STE, +STE:SP:OCECarTER-87142612,1,"Prauthoy",47.683207,5.293521,-1,0,SIN:SA:OCE87142612,Europe/Paris,,STE, +STE:SP:OCECarTER-87142620,1,"Vaux-sous-Aubigny",47.656763,5.288917,-1,0,SIN:SA:OCE87142620,Europe/Paris,,STE, +STE:SP:OCECarTER-87142646,1,"Selongey",47.575529,5.203177,-1,0,SIN:SA:OCE87142646,Europe/Paris,,STE, +STE:SP:OCECarTER-87142661,1,"Maatz",47.702046,5.447827,-1,0,SIN:SA:OCE87142661,Europe/Paris,,STE, +STE:SP:OCECarTER-87142687,1,"Champlitte",47.617099,5.512465,-1,0,SIN:SA:OCE87142687,Europe/Paris,,STE, +STE:SP:OCECarTER-87142695,1,"Neuvelle-les-Champlitte",47.585646,5.545273,-1,0,SIN:SA:OCE87142695,Europe/Paris,,STE, +STE:SP:OCECarTER-87142703,1,"Oyrières",47.532031,5.56372,-1,0,SIN:SA:OCE87142703,Europe/Paris,,STE, +STE:SP:OCECarTER-87142711,1,"Chargey-les-Gray",47.487217,5.576663,-1,0,SIN:SA:OCE87142711,Europe/Paris,,STE, +STE:SP:OCECarTER-87142786,1,"Til-Chatel-Mairie",47.515636,5.175507,-1,0,SIN:SA:OCE87142786,Europe/Paris,,STE, +STE:SP:OCECarTER-87143024,1,"Gare de Vraincourt-Vieville",48.237101,5.123848,-1,0,SIN:SA:OCE87143024,Europe/Paris,,STE, +STE:SP:OCECarTER-87143107,1,"Le Pailly",47.791664,5.414719,-1,0,SIN:SA:OCE87143107,Europe/Paris,,STE, +STE:SP:OCECarTER-87143206,1,"Rivières-le-Bois",47.737773,5.441665,-1,0,SIN:SA:OCE87143206,Europe/Paris,,STE, +STE:SP:OCECarTER-87143214,1,"Grandchamp",47.723325,5.450823,-1,0,SIN:SA:OCE87143214,Europe/Paris,,STE, +STE:SP:OCECarTER-87143222,1,"Leffond",47.662532,5.463552,-1,0,SIN:SA:OCE87143222,Europe/Paris,,STE, +STE:SP:OCECarTER-87143305,1,"Arc-les-Gray",47.456096,5.589146,-1,0,SIN:SA:OCE87143305,Europe/Paris,,STE, +STE:SP:OCECarTER-87143354,1,"Coublanc",47.69111,5.459557,-1,0,SIN:SA:OCE87143354,Europe/Paris,,STE, +STE:SP:OCECarTER-87143362,1,"Ecuelle",47.55223,5.555345,-1,0,SIN:SA:OCE87143362,Europe/Paris,,STE, +STE:SP:OCECarTER-87143420,1,"Dampierre-sur-Salon",47.555271,5.678048,-1,0,SIN:SA:OCE87143420,Europe/Paris,,STE, +STE:SP:OCECarTER-87143594,1,"Roville-aux-Chênes",48.385262,6.602697,-1,0,SIN:SA:OCE87143594,Europe/Paris,,STE, +STE:SP:OCECarTER-87144006,1,"Gare de Epinal",48.178078,6.441555,-1,0,SIN:SA:OCE87144006,Europe/Paris,,STE, +STE:SP:OCECarTER-87144014,1,"Gare de St-Dié-des-Vosges",48.282238,6.948056,-1,0,SIN:SA:OCE87144014,Europe/Paris,,STE, +STE:SP:OCECarTER-87144030,1,"Gare de Docelles-Cheniménil",48.141471,6.606979,-1,0,SIN:SA:OCE87144030,Europe/Paris,,STE, +STE:SP:OCECarTER-87144048,1,"Gare de Lépanges",48.17268,6.67216,-1,0,SIN:SA:OCE87144048,Europe/Paris,,STE, +STE:SP:OCECarTER-87144055,1,"Gare de Charmes (Vosges)",48.378659,6.301303,-1,0,SIN:SA:OCE87144055,Europe/Paris,,STE, +STE:SP:OCECarTER-87144105,1,"Gare de Raves-Ban-de-Laveline",48.265719,7.037474,-1,0,SIN:SA:OCE87144105,Europe/Paris,,STE, +STE:SP:OCECarTER-87144154,1,"Gare de Bruyères (Vosges)",48.20475,6.719211,-1,0,SIN:SA:OCE87144154,Europe/Paris,,STE, +STE:SP:OCECarTER-87144162,1,"Gare de Laveline-devant-Bruyère",48.185524,6.751638,-1,0,SIN:SA:OCE87144162,Europe/Paris,,STE, +STE:SP:OCECarTER-87144188,1,"Gare de Biffontaine",48.205873,6.806999,-1,0,SIN:SA:OCE87144188,Europe/Paris,,STE, +STE:SP:OCECarTER-87144196,1,"Gare de Corcieux-Vanémont",48.198435,6.877644,-1,0,SIN:SA:OCE87144196,Europe/Paris,,STE, +STE:SP:OCECarTER-87144212,1,"Mirecourt",48.299226,6.129346,-1,0,SIN:SA:OCE87144212,Europe/Paris,,STE, +STE:SP:OCECarTER-87144220,1,"Hymont-Mattaincourt",48.270735,6.14054,-1,0,SIN:SA:OCE87144220,Europe/Paris,,STE, +STE:SP:OCECarTER-87144279,1,"Vittel",48.202459,5.942257,-1,0,SIN:SA:OCE87144279,Europe/Paris,,STE, +STE:SP:OCECarTER-87144287,1,"Contrexéville",48.17998,5.890984,-1,0,SIN:SA:OCE87144287,Europe/Paris,,STE, +STE:SP:OCECarTER-87144295,1,"Martigny-les-Bains",48.108694,5.825823,-1,0,SIN:SA:OCE87144295,Europe/Paris,,STE, +STE:SP:OCECarTER-87144303,1,"Lamarche (Vosges)",48.089978,5.76027,-1,0,SIN:SA:OCE87144303,Europe/Paris,,STE, +STE:SP:OCECarTER-87144311,1,"Rozières-sur-Mouzon",48.120892,5.705341,-1,0,SIN:SA:OCE87144311,Europe/Paris,,STE, +STE:SP:OCECarTER-87144345,1,"Gare de Provenchères-sur-Fave",48.304653,7.085157,-1,0,SIN:SA:OCE87144345,Europe/Paris,,STE, +STE:SP:OCECarTER-87144410,1,"Gare de Arches",48.119961,6.528009,-1,0,SIN:SA:OCE87144410,Europe/Paris,,STE, +STE:SP:OCECarTER-87144451,1,"Gare de Remiremont",48.016367,6.599041,-1,0,SIN:SA:OCE87144451,Europe/Paris,,STE, +STE:SP:OCECarTER-87144469,1,"Vecoux",47.978727,6.636332,-1,0,SIN:SA:OCE87144469,Europe/Paris,,STE, +STE:SP:OCECarTER-87144477,1,"Gare de St-Léonard (Vosges)",48.217703,6.942358,-1,0,SIN:SA:OCE87144477,Europe/Paris,,STE, +STE:SP:OCECarTER-87144519,1,"Rupt-sur-Moselle",47.92397,6.659957,-1,0,SIN:SA:OCE87144519,Europe/Paris,,STE, +STE:SP:OCECarTER-87144527,1,"Ferdrupt",47.907734,6.707536,-1,0,SIN:SA:OCE87144527,Europe/Paris,,STE, +STE:SP:OCECarTER-87144535,1,"Ramonchamp",47.892175,6.739542,-1,0,SIN:SA:OCE87144535,Europe/Paris,,STE, +STE:SP:OCECarTER-87144543,1,"Le Thillot",47.882071,6.760914,-1,0,SIN:SA:OCE87144543,Europe/Paris,,STE, +STE:SP:OCECarTER-87144550,1,"Fresse",47.875741,6.782663,-1,0,SIN:SA:OCE87144550,Europe/Paris,,STE, +STE:SP:OCECarTER-87144568,1,"St-Maurice-sur-Moselle",47.854787,6.818736,-1,0,SIN:SA:OCE87144568,Europe/Paris,,STE, +STE:SP:OCECarTER-87144634,1,"Vagney",48.009166,6.716272,-1,0,SIN:SA:OCE87144634,Europe/Paris,,STE, +STE:SP:OCECarTER-87144659,1,"Zainvillers",47.993952,6.716336,-1,0,SIN:SA:OCE87144659,Europe/Paris,,STE, +STE:SP:OCECarTER-87144667,1,"Thiéfosse",47.971802,6.729827,-1,0,SIN:SA:OCE87144667,Europe/Paris,,STE, +STE:SP:OCECarTER-87144675,1,"Saulxures-sur-Moselotte",47.948988,6.770857,-1,0,SIN:SA:OCE87144675,Europe/Paris,,STE, +STE:SP:OCECarTER-87144691,1,"Cornimont",47.962676,6.8374,-1,0,SIN:SA:OCE87144691,Europe/Paris,,STE, +STE:SP:OCECarTER-87144709,1,"Deinvillers",48.422969,6.58175,-1,0,SIN:SA:OCE87144709,Europe/Paris,,STE, +STE:SP:OCECarTER-87144725,1,"Rambervillers",48.340631,6.634851,-1,0,SIN:SA:OCE87144725,Europe/Paris,,STE, +STE:SP:OCECarTER-87144733,1,"Jeanménil",48.329993,6.674988,-1,0,SIN:SA:OCE87144733,Europe/Paris,,STE, +STE:SP:OCECarTER-87144758,1,"Autrey",48.296467,6.687948,-1,0,SIN:SA:OCE87144758,Europe/Paris,,STE, +STE:SP:OCECarTER-87144774,1,"Dompaire",48.220559,6.227686,-1,0,SIN:SA:OCE87144774,Europe/Paris,,STE, +STE:SP:OCECarTER-87144782,1,"Brouvelieures",48.235242,6.731518,-1,0,SIN:SA:OCE87144782,Europe/Paris,,STE, +STE:SP:OCECarTER-87146019,1,"Bocquegney",48.218331,6.30777,-1,0,SIN:SA:OCE87146019,Europe/Paris,,STE, +STE:SP:OCECarTER-87146035,1,"Racécourt",48.257083,6.193229,-1,0,SIN:SA:OCE87146035,Europe/Paris,,STE, +STE:SP:OCECarTER-87146043,1,"Velotte-et-Tatignécourt",48.263105,6.171184,-1,0,SIN:SA:OCE87146043,Europe/Paris,,STE, +STE:SP:OCECarTER-87146225,1,"Hielle (Rupt)",47.963755,6.634213,-1,0,SIN:SA:OCE87146225,Europe/Paris,,STE, +STE:SP:OCECarTER-87146233,1,"Maxonchamp",47.94568,6.635435,-1,0,SIN:SA:OCE87146233,Europe/Paris,,STE, +STE:SP:OCECarTER-87146241,1,"Dommartin (Vosges)",47.998602,6.644434,-1,0,SIN:SA:OCE87146241,Europe/Paris,,STE, +STE:SP:OCECarTER-87146290,1,"Blanchifontaine",48.33861,6.658604,-1,0,SIN:SA:OCE87146290,Europe/Paris,,STE, +STE:SP:OCECarTER-87146308,1,"Frémifontaine",48.276503,6.692577,-1,0,SIN:SA:OCE87146308,Europe/Paris,,STE, +STE:SP:OCECarTER-87151761,1,"Ouge",47.796645,5.704103,-1,0,SIN:SA:OCE87151761,Europe/Paris,,STE, +STE:SP:OCECarTER-87171009,1,"Gare de Reims",49.259066,4.024017,-1,0,SIN:SA:OCE87171009,Europe/Paris,,STE, +STE:SP:OCECarTER-87171330,1,"Gare de Fismes",49.31085,3.682292,-1,0,SIN:SA:OCE87171330,Europe/Paris,,STE, +STE:SP:OCECarTER-87171348,1,"Bazoches",49.305277,3.61325,-1,0,SIN:SA:OCE87171348,Europe/Paris,,STE, +STE:SP:OCECarTER-87171355,1,"Mont-Notre-Dame",49.296667,3.576533,-1,0,SIN:SA:OCE87171355,Europe/Paris,,STE, +STE:SP:OCECarTER-87171371,1,"Fère-en-Tardenois",49.208562,3.504261,-1,0,SIN:SA:OCE87171371,Europe/Paris,,STE, +STE:SP:OCECarTER-87171512,1,"Gare de Dormans",49.079251,3.641728,-1,0,SIN:SA:OCE87171512,Europe/Paris,,STE, +STE:SP:OCECarTER-87171553,1,"Gare de Epernay",49.046521,3.96021,-1,0,SIN:SA:OCE87171553,Europe/Paris,,STE, +STE:SP:OCECarTER-87171611,1,"Gare de Val-de-Vesle (Marne)",49.178405,4.221674,-1,0,SIN:SA:OCE87171611,Europe/Paris,,STE, +STE:SP:OCECarTER-87171629,1,"Gare de Prunay",49.198825,4.183555,-1,0,SIN:SA:OCE87171629,Europe/Paris,,STE, +STE:SP:OCECarTER-87171637,1,"Gare de Sillery",49.203362,4.144066,-1,0,SIN:SA:OCE87171637,Europe/Paris,,STE, +STE:SP:OCECarTER-87171645,1,"Gare de Sept-Saulx",49.151483,4.25648,-1,0,SIN:SA:OCE87171645,Europe/Paris,,STE, +STE:SP:OCECarTER-87171926,1,"Gare de Champagne-Ardenne",49.21164,3.988788,-1,0,SIN:SA:OCE87171926,Europe/Paris,,STE, +STE:SP:OCECarTER-87172007,1,"Gare de Charleville-Mézières",49.76742,4.724849,-1,0,SIN:SA:OCE87172007,Europe/Paris,,STE, +STE:SP:OCECarTER-87172155,1,"Gare de Mohon",49.752647,4.733252,-1,0,SIN:SA:OCE87172155,Europe/Paris,,STE, +STE:SP:OCECarTER-87172189,1,"Gare de Lumes-Halte",49.733176,4.782873,-1,0,SIN:SA:OCE87172189,Europe/Paris,,STE, +STE:SP:OCECarTER-87172213,1,"Gare de Nouvion-sur-Meuse",49.696976,4.794932,-1,0,SIN:SA:OCE87172213,Europe/Paris,,STE, +STE:SP:OCECarTER-87172221,1,"Gare de Vrigne-Meuse",49.70068,4.843068,-1,0,SIN:SA:OCE87172221,Europe/Paris,,STE, +STE:SP:OCECarTER-87172239,1,"Gare de Donchery",49.698119,4.874566,-1,0,SIN:SA:OCE87172239,Europe/Paris,,STE, +STE:SP:OCECarTER-87172254,1,"Gare de Sedan",49.694861,4.929989,-1,0,SIN:SA:OCE87172254,Europe/Paris,,STE, +STE:SP:OCECarTER-87172304,1,"Pont-Maugis",49.670284,4.955128,-1,0,SIN:SA:OCE87172304,Europe/Paris,,STE, +STE:SP:OCECarTER-87172312,1,"Bazeilles",49.672205,4.9866,-1,0,SIN:SA:OCE87172312,Europe/Paris,,STE, +STE:SP:OCECarTER-87172320,1,"Douzy",49.671665,5.036666,-1,0,SIN:SA:OCE87172320,Europe/Paris,,STE, +STE:SP:OCECarTER-87172338,1,"Pouru-St-Rémy",49.67327,5.082375,-1,0,SIN:SA:OCE87172338,Europe/Paris,,STE, +STE:SP:OCECarTER-87172346,1,"Sachy",49.669161,5.130821,-1,0,SIN:SA:OCE87172346,Europe/Paris,,STE, +STE:SP:OCECarTER-87172353,1,"Gare de Carignan",49.62852,5.168468,-1,0,SIN:SA:OCE87172353,Europe/Paris,,STE, +STE:SP:OCECarTER-87172387,1,"Blagny",49.619637,5.189692,-1,0,SIN:SA:OCE87172387,Europe/Paris,,STE, +STE:SP:OCECarTER-87172395,1,"Linay",49.61527,5.221109,-1,0,SIN:SA:OCE87172395,Europe/Paris,,STE, +STE:SP:OCECarTER-87172411,1,"Margut-Fromy",49.590646,5.257004,-1,0,SIN:SA:OCE87172411,Europe/Paris,,STE, +STE:SP:OCECarTER-87172700,1,"Remilly-Aillicourt",49.655386,4.990211,-1,0,SIN:SA:OCE87172700,Europe/Paris,,STE, +STE:SP:OCECarTER-87173302,1,"Wadelincourt",49.685275,4.94083,-1,0,SIN:SA:OCE87173302,Europe/Paris,,STE, +STE:SP:OCECarTER-87173401,1,"La Ferté-sur-Chiers",49.57555,5.239708,-1,0,SIN:SA:OCE87173401,Europe/Paris,,STE, +STE:SP:OCECarTER-87174003,1,"Gare de Châlons-en-Champagne",48.955509,4.348954,-1,0,SIN:SA:OCE87174003,Europe/Paris,,STE, +STE:SP:OCECarTER-87174276,1,"Gare de Vitry-le-François",48.717733,4.587232,-1,0,SIN:SA:OCE87174276,Europe/Paris,,STE, +STE:SP:OCECarTER-87174326,1,"Blesme-Haussignemont",48.721554,4.752511,-1,0,SIN:SA:OCE87174326,Europe/Paris,,STE, +STE:SP:OCECarTER-87174409,1,"Gare de Mourmelon-le-Petit",49.131225,4.317717,-1,0,SIN:SA:OCE87174409,Europe/Paris,,STE, +STE:SP:OCECarTER-87174425,1,"Uxegney",48.194543,6.368601,-1,0,SIN:SA:OCE87174425,Europe/Paris,,STE, +STE:SP:OCECarTER-87174433,1,"Gare de Bouy",49.090872,4.353519,-1,0,SIN:SA:OCE87174433,Europe/Paris,,STE, +STE:SP:OCECarTER-87174441,1,"Gare de St-Hilaire-au-Temple",49.056345,4.379006,-1,0,SIN:SA:OCE87174441,Europe/Paris,,STE, +STE:SP:OCECarTER-87174458,1,"Darnieulles",48.199046,6.349891,-1,0,SIN:SA:OCE87174458,Europe/Paris,,STE, +STE:SP:OCECarTER-87174482,1,"Mattaincourt",48.279668,6.136535,-1,0,SIN:SA:OCE87174482,Europe/Paris,,STE, +STE:SP:OCECarTER-87174490,1,"St-Amé",48.024994,6.669711,-1,0,SIN:SA:OCE87174490,Europe/Paris,,STE, +STE:SP:OCECarTER-87174508,1,"Le Syndicat",48.024869,6.683771,-1,0,SIN:SA:OCE87174508,Europe/Paris,,STE, +STE:SP:OCECarTER-87175000,1,"Gare de St-Dizier",48.642806,4.947186,-1,0,SIN:SA:OCE87175000,Europe/Paris,,STE, +STE:SP:OCECarTER-87175042,1,"Gare de Bar-le-Duc",48.773631,5.167016,-1,0,SIN:SA:OCE87175042,Europe/Paris,,STE, +STE:SP:OCECarTER-87175091,1,"Gare de Joinville",48.44475,5.144287,-1,0,SIN:SA:OCE87175091,Europe/Paris,,STE, +STE:SP:OCECarTER-87175109,1,"Curel",48.492221,5.135552,-1,0,SIN:SA:OCE87175109,Europe/Paris,,STE, +STE:SP:OCECarTER-87175117,1,"Gare de Chevillon",48.524273,5.111825,-1,0,SIN:SA:OCE87175117,Europe/Paris,,STE, +STE:SP:OCECarTER-87175133,1,"Gare de Bayard",48.551521,5.076273,-1,0,SIN:SA:OCE87175133,Europe/Paris,,STE, +STE:SP:OCECarTER-87175208,1,"Villiers-en-Lieu",48.663352,4.89748,-1,0,SIN:SA:OCE87175208,Europe/Paris,,STE, +STE:SP:OCECarTER-87175216,1,"St-Eulien",48.678227,4.868118,-1,0,SIN:SA:OCE87175216,Europe/Paris,,STE, +STE:SP:OCECarTER-87175257,1,"Gare de Commercy",48.765868,5.588885,-1,0,SIN:SA:OCE87175257,Europe/Paris,,STE, +STE:SP:OCECarTER-87175778,1,"Gare de Verdun",49.165423,5.380066,-1,0,SIN:SA:OCE87175778,Europe/Paris,,STE, +STE:SP:OCECarTER-87175794,1,"Gare de Etain",49.207707,5.639482,-1,0,SIN:SA:OCE87175794,Europe/Paris,,STE, +STE:SP:OCECarTER-87181131,1,"Gare de Graffenwald",47.780296,7.225576,-1,0,SIN:SA:OCE87181131,Europe/Paris,,STE, +STE:SP:OCECarTER-87181552,1,"Gare de St-Gilles-L (Haut-Rhin)",48.075345,7.26056,-1,0,SIN:SA:OCE87181552,Europe/Paris,,STE, +STE:SP:OCECarTER-87182014,1,"Gare de Colmar",48.073154,7.347084,-1,0,SIN:SA:OCE87182014,Europe/Paris,,STE, +STE:SP:OCECarTER-87182063,1,"Gare de Mulhouse",47.741798,7.34285,-1,0,SIN:SA:OCE87182063,Europe/Paris,,STE, +STE:SP:OCECarTER-87182089,1,"Gare de Habsheim",47.737589,7.417936,-1,0,SIN:SA:OCE87182089,Europe/Paris,,STE, +STE:SP:OCECarTER-87182139,1,"Gare de St-Louis (Haut-Rhin)",47.590366,7.55553,-1,0,SIN:SA:OCE87182139,Europe/Paris,,STE, +STE:SP:OCECarTER-87182238,1,"Gare de Altkirch",47.627106,7.239591,-1,0,SIN:SA:OCE87182238,Europe/Paris,,STE, +STE:SP:OCECarTER-87182253,1,"Gare de Dannemarie",47.627404,7.123805,-1,0,SIN:SA:OCE87182253,Europe/Paris,,STE, +STE:SP:OCECarTER-87182329,1,"Gare de Herrlisheim-près-Colmar",48.017573,7.320563,-1,0,SIN:SA:OCE87182329,Europe/Paris,,STE, +STE:SP:OCECarTER-87182337,1,"Gare de Rouffach",47.960089,7.312419,-1,0,SIN:SA:OCE87182337,Europe/Paris,,STE, +STE:SP:OCECarTER-87182360,1,"Gare de Walbach-la-Forge",48.058625,7.234064,-1,0,SIN:SA:OCE87182360,Europe/Paris,,STE, +STE:SP:OCECarTER-87182378,1,"Gare de Wihr-au-Val-Soultzbach",48.04621,7.209664,-1,0,SIN:SA:OCE87182378,Europe/Paris,,STE, +STE:SP:OCECarTER-87182394,1,"Gare de Munster",48.038247,7.132837,-1,0,SIN:SA:OCE87182394,Europe/Paris,,STE, +STE:SP:OCECarTER-87182410,1,"Gare de Cernay (Haut-Rhin)",47.801708,7.173937,-1,0,SIN:SA:OCE87182410,Europe/Paris,,STE, +STE:SP:OCECarTER-87182568,1,"Gare de Thann",47.809107,7.107,-1,0,SIN:SA:OCE87182568,Europe/Paris,,STE, +STE:SP:OCECarTER-87182584,1,"Gare de Willer-sur-Thur",47.842615,7.069192,-1,0,SIN:SA:OCE87182584,Europe/Paris,,STE, +STE:SP:OCECarTER-87182592,1,"Gare de Moosch",47.86109,7.050591,-1,0,SIN:SA:OCE87182592,Europe/Paris,,STE, +STE:SP:OCECarTER-87182618,1,"Gare de Wesserling",47.889741,6.997841,-1,0,SIN:SA:OCE87182618,Europe/Paris,,STE, +STE:SP:OCECarTER-87182642,1,"Gare de Kruth",47.922469,6.969584,-1,0,SIN:SA:OCE87182642,Europe/Paris,,STE, +STE:SP:OCECarTER-87182667,1,"Gare de Lutterbach (Haut-Rhin)",47.757923,7.276764,-1,0,SIN:SA:OCE87182667,Europe/Paris,,STE, +STE:SP:OCECarTER-87182717,1,"Gare de Raedersheim",47.886989,7.284056,-1,0,SIN:SA:OCE87182717,Europe/Paris,,STE, +STE:SP:OCECarTER-87182725,1,"Gare de Merxheim",47.913117,7.302415,-1,0,SIN:SA:OCE87182725,Europe/Paris,,STE, +STE:SP:OCECarTER-87182733,1,"Gare de Muhlbach-sur-Munster",48.024584,7.087677,-1,0,SIN:SA:OCE87182733,Europe/Paris,,STE, +STE:SP:OCECarTER-87182816,1,"Gare de Metzeral",48.013586,7.073178,-1,0,SIN:SA:OCE87182816,Europe/Paris,,STE, +STE:SP:OCECarTER-87182881,1,"Gare de Thann-Saint-Jacques",47.813107,7.094012,-1,0,SIN:SA:OCE87182881,Europe/Paris,,STE, +STE:SP:OCECarTER-87184002,1,"Gare de Belfort-Ville",47.632447,6.853924,-1,0,SIN:SA:OCE87184002,Europe/Paris,,STE, +STE:SP:OCECarTER-87184267,1,"Gare de Petit-Croix",47.610113,6.994637,-1,0,SIN:SA:OCE87184267,Europe/Paris,,STE, +STE:SP:OCECarTER-87184275,1,"Gare de Montreux-Vieux",47.617858,7.025393,-1,0,SIN:SA:OCE87184275,Europe/Paris,,STE, +STE:SP:OCECarTER-87184507,1,"Gare de Héricourt",47.573218,6.769411,-1,0,SIN:SA:OCE87184507,Europe/Paris,,STE, +STE:SP:OCECarTER-87184523,1,"Gare de Montbéliard-Ville",47.510544,6.801315,-1,0,SIN:SA:OCE87184523,Europe/Paris,,STE, +STE:SP:OCECarTER-87185009,1,"Gare de Vesoul",47.617799,6.151767,-1,0,SIN:SA:OCE87185009,Europe/Paris,,STE, +STE:SP:OCECarTER-87185108,1,"Port-d'Atelier-Amance",47.762474,6.039972,-1,0,SIN:SA:OCE87185108,Europe/Paris,,STE, +STE:SP:OCECarTER-87185124,1,"Port-sur-Saône",47.688329,6.044996,-1,0,SIN:SA:OCE87185124,Europe/Paris,,STE, +STE:SP:OCECarTER-87185157,1,"Grattery",47.680725,6.083344,-1,0,SIN:SA:OCE87185157,Europe/Paris,,STE, +STE:SP:OCECarTER-87185165,1,"Vaivre",47.63287,6.101362,-1,0,SIN:SA:OCE87185165,Europe/Paris,,STE, +STE:SP:OCECarTER-87185173,1,"Noidans-lès-Vesoul",47.618803,6.126894,-1,0,SIN:SA:OCE87185173,Europe/Paris,,STE, +STE:SP:OCECarTER-87185207,1,"Colombier",47.664099,6.210149,-1,0,SIN:SA:OCE87185207,Europe/Paris,,STE, +STE:SP:OCECarTER-87185249,1,"Gare de Lure",47.683249,6.492557,-1,0,SIN:SA:OCE87185249,Europe/Paris,,STE, +STE:SP:OCECarTER-87185280,1,"Montureux-les-Baulay",47.814096,5.984973,-1,0,SIN:SA:OCE87185280,Europe/Paris,,STE, +STE:SP:OCECarTER-87185314,1,"Gare de Ronchamp",47.698972,6.623448,-1,0,SIN:SA:OCE87185314,Europe/Paris,,STE, +STE:SP:OCECarTER-87185330,1,"St-Loup-sur-Semouse",47.885633,6.275746,-1,0,SIN:SA:OCE87185330,Europe/Paris,,STE, +STE:SP:OCECarTER-87185348,1,"Gare de Champagney",47.702952,6.701246,-1,0,SIN:SA:OCE87185348,Europe/Paris,,STE, +STE:SP:OCECarTER-87185355,1,"Jussey",47.836792,5.903474,-1,0,SIN:SA:OCE87185355,Europe/Paris,,STE, +STE:SP:OCECarTER-87185405,1,"Mont-le-Vernois",47.607245,6.04614,-1,0,SIN:SA:OCE87185405,Europe/Paris,,STE, +STE:SP:OCECarTER-87185421,1,"Velle-le-Châtel",47.601017,6.045212,-1,0,SIN:SA:OCE87185421,Europe/Paris,,STE, +STE:SP:OCECarTER-87185439,1,"Razé",47.582802,6.011189,-1,0,SIN:SA:OCE87185439,Europe/Paris,,STE, +STE:SP:OCECarTER-87185447,1,"Noidans-le-Ferroux",47.570731,5.953729,-1,0,SIN:SA:OCE87185447,Europe/Paris,,STE, +STE:SP:OCECarTER-87185454,1,"Fresne-St-Mamès",47.5486,5.859783,-1,0,SIN:SA:OCE87185454,Europe/Paris,,STE, +STE:SP:OCECarTER-87185488,1,"Vellexon",47.561622,5.80587,-1,0,SIN:SA:OCE87185488,Europe/Paris,,STE, +STE:SP:OCECarTER-87185512,1,"Seveux",47.556594,5.748604,-1,0,SIN:SA:OCE87185512,Europe/Paris,,STE, +STE:SP:OCECarTER-87185520,1,"Savoyeux-Mercey",47.546675,5.745495,-1,0,SIN:SA:OCE87185520,Europe/Paris,,STE, +STE:SP:OCECarTER-87185538,1,"Autet",47.541866,5.693945,-1,0,SIN:SA:OCE87185538,Europe/Paris,,STE, +STE:SP:OCECarTER-87185546,1,"Montureux",47.506037,5.637755,-1,0,SIN:SA:OCE87185546,Europe/Paris,,STE, +STE:SP:OCECarTER-87185553,1,"Vereux",47.521268,5.64698,-1,0,SIN:SA:OCE87185553,Europe/Paris,,STE, +STE:SP:OCECarTER-87185579,1,"Gray",47.451552,5.57849,-1,0,SIN:SA:OCE87185579,Europe/Paris,,STE, +STE:SP:OCECarTER-87185595,1,"Gare de Luxeuil-les-Bains",47.814919,6.372675,-1,0,SIN:SA:OCE87185595,Europe/Paris,,STE, +STE:SP:OCECarTER-87185629,1,"Gare de Aillevillers",47.913865,6.337389,-1,0,SIN:SA:OCE87185629,Europe/Paris,,STE, +STE:SP:OCECarTER-87191007,1,"Gare de Thionville",49.353923,6.168855,-1,0,SIN:SA:OCE87191007,Europe/Paris,,STE, +STE:SP:OCECarTER-87191106,1,"Gare de Maizières-lès-Metz",49.215223,6.158484,-1,0,SIN:SA:OCE87191106,Europe/Paris,,STE, +STE:SP:OCECarTER-87191114,1,"Gare de Hagondange",49.253812,6.164402,-1,0,SIN:SA:OCE87191114,Europe/Paris,,STE, +STE:SP:OCECarTER-87191130,1,"Gare de Uckange",49.303334,6.15658,-1,0,SIN:SA:OCE87191130,Europe/Paris,,STE, +STE:SP:OCECarTER-87191163,1,"Gare de Hettange-Grande",49.40764,6.1568,-1,0,SIN:SA:OCE87191163,Europe/Paris,,STE, +STE:SP:OCECarTER-87191213,1,"Knutange-Nilvange",49.340765,6.039121,-1,0,SIN:SA:OCE87191213,Europe/Paris,,STE, +STE:SP:OCECarTER-87191239,1,"Gare de Hayange",49.330412,6.073163,-1,0,SIN:SA:OCE87191239,Europe/Paris,,STE, +STE:SP:OCECarTER-87191296,1,"Metzeresche",49.299188,6.304982,-1,0,SIN:SA:OCE87191296,Europe/Paris,,STE, +STE:SP:OCECarTER-87191304,1,"Yutz",49.36113,6.208928,-1,0,SIN:SA:OCE87191304,Europe/Paris,,STE, +STE:SP:OCECarTER-87191346,1,"Kédange",49.305607,6.33251,-1,0,SIN:SA:OCE87191346,Europe/Paris,,STE, +STE:SP:OCECarTER-87191379,1,"Ebersviller",49.274601,6.411122,-1,0,SIN:SA:OCE87191379,Europe/Paris,,STE, +STE:SP:OCECarTER-87191387,1,"Anzeling",49.262586,6.458432,-1,0,SIN:SA:OCE87191387,Europe/Paris,,STE, +STE:SP:OCECarTER-87191395,1,"Freistroff",49.278649,6.493273,-1,0,SIN:SA:OCE87191395,Europe/Paris,,STE, +STE:SP:OCECarTER-87191403,1,"Aboncourt",49.261034,6.346529,-1,0,SIN:SA:OCE87191403,Europe/Paris,,STE, +STE:SP:OCECarTER-87191411,1,"Remelfang",49.272123,6.504515,-1,0,SIN:SA:OCE87191411,Europe/Paris,,STE, +STE:SP:OCECarTER-87191601,1,"Gare de Basse-Ham",49.380299,6.23447,-1,0,SIN:SA:OCE87191601,Europe/Paris,,STE, +STE:SP:OCECarTER-87191684,1,"Gare de Auboué",49.216148,5.971047,-1,0,SIN:SA:OCE87191684,Europe/Paris,,STE, +STE:SP:OCECarTER-87191692,1,"Gare de Homécourt",49.218358,5.999515,-1,0,SIN:SA:OCE87191692,Europe/Paris,,STE, +STE:SP:OCECarTER-87191700,1,"Gare de Joeuf",49.22508,6.017915,-1,0,SIN:SA:OCE87191700,Europe/Paris,,STE, +STE:SP:OCECarTER-87191718,1,"Gare de Moyeuvre-Grande",49.247012,6.043197,-1,0,SIN:SA:OCE87191718,Europe/Paris,,STE, +STE:SP:OCECarTER-87191734,1,"Gare de Rombas-Clouange",49.256043,6.099254,-1,0,SIN:SA:OCE87191734,Europe/Paris,,STE, +STE:SP:OCECarTER-87191742,1,"Gare de Gandrange-Amnéville",49.260891,6.135794,-1,0,SIN:SA:OCE87191742,Europe/Paris,,STE, +STE:SP:OCECarTER-87192039,1,"Gare de Metz-Ville",49.109787,6.177198,-1,0,SIN:SA:OCE87192039,Europe/Paris,,STE, +STE:SP:OCECarTER-87192088,1,"Gare de Woippy",49.148358,6.155677,-1,0,SIN:SA:OCE87192088,Europe/Paris,,STE, +STE:SP:OCECarTER-87192104,1,"Aubecourt",48.995552,6.428886,-1,0,SIN:SA:OCE87192104,Europe/Paris,,STE, +STE:SP:OCECarTER-87192120,1,"Lucy",48.942322,6.468105,-1,0,SIN:SA:OCE87192120,Europe/Paris,,STE, +STE:SP:OCECarTER-87192138,1,"Chenois",48.959425,6.499004,-1,0,SIN:SA:OCE87192138,Europe/Paris,,STE, +STE:SP:OCECarTER-87192146,1,"Holacourt",48.972723,6.514797,-1,0,SIN:SA:OCE87192146,Europe/Paris,,STE, +STE:SP:OCECarTER-87192153,1,"Arraincourt",48.970926,6.531397,-1,0,SIN:SA:OCE87192153,Europe/Paris,,STE, +STE:SP:OCECarTER-87192179,1,"Racrange",48.925555,6.661939,-1,0,SIN:SA:OCE87192179,Europe/Paris,,STE, +STE:SP:OCECarTER-87192187,1,"Bermering",48.931381,6.709719,-1,0,SIN:SA:OCE87192187,Europe/Paris,,STE, +STE:SP:OCECarTER-87192195,1,"Marimont-lès-Bénestroff",48.889993,6.783881,-1,0,SIN:SA:OCE87192195,Europe/Paris,,STE, +STE:SP:OCECarTER-87192237,1,"Gare de Rémilly",49.014066,6.395031,-1,0,SIN:SA:OCE87192237,Europe/Paris,,STE, +STE:SP:OCECarTER-87192245,1,"Baudrecourt",48.96132,6.452198,-1,0,SIN:SA:OCE87192245,Europe/Paris,,STE, +STE:SP:OCECarTER-87192252,1,"Lesse",48.962518,6.506305,-1,0,SIN:SA:OCE87192252,Europe/Paris,,STE, +STE:SP:OCECarTER-87192260,1,"Brulange",48.96954,6.548494,-1,0,SIN:SA:OCE87192260,Europe/Paris,,STE, +STE:SP:OCECarTER-87192286,1,"Gare de Morhange",48.936774,6.659093,-1,0,SIN:SA:OCE87192286,Europe/Paris,,STE, +STE:SP:OCECarTER-87192401,1,"Gare de Ars-sur-Moselle",49.074565,6.077928,-1,0,SIN:SA:OCE87192401,Europe/Paris,,STE, +STE:SP:OCECarTER-87192419,1,"Gare de Ancy-sur-Moselle",49.057435,6.062451,-1,0,SIN:SA:OCE87192419,Europe/Paris,,STE, +STE:SP:OCECarTER-87192427,1,"Gare de Novéant",49.028657,6.05203,-1,0,SIN:SA:OCE87192427,Europe/Paris,,STE, +STE:SP:OCECarTER-87192435,1,"Gare de Onville",49.01364,5.979094,-1,0,SIN:SA:OCE87192435,Europe/Paris,,STE, +STE:SP:OCECarTER-87192468,1,"Gare de Pagny-sur-Moselle",48.985345,6.025174,-1,0,SIN:SA:OCE87192468,Europe/Paris,,STE, +STE:SP:OCECarTER-87192476,1,"Gare de Vandières",48.952497,6.038855,-1,0,SIN:SA:OCE87192476,Europe/Paris,,STE, +STE:SP:OCECarTER-87192658,1,"Gare de Baroncourt",49.284381,5.700175,-1,0,SIN:SA:OCE87192658,Europe/Paris,,STE, +STE:SP:OCECarTER-87192666,1,"Gare de Conflans-Jarny",49.16638,5.868244,-1,0,SIN:SA:OCE87192666,Europe/Paris,,STE, +STE:SP:OCECarTER-87192724,1,"Gare de Hatrize",49.193944,5.907503,-1,0,SIN:SA:OCE87192724,Europe/Paris,,STE, +STE:SP:OCECarTER-87192732,1,"Gare de Valleroy-Moineville",49.20574,5.935926,-1,0,SIN:SA:OCE87192732,Europe/Paris,,STE, +STE:SP:OCECarTER-87192880,1,"Ugny-Meurthe-et-Moselle",49.471984,5.697419,-1,0,SIN:SA:OCE87192880,Europe/Paris,,STE, +STE:SP:OCECarTER-87193003,1,"Gare de Forbach",49.189491,6.901849,-1,0,SIN:SA:OCE87193003,Europe/Paris,,STE, +STE:SP:OCECarTER-87193110,1,"Baronville",48.934417,6.60861,-1,0,SIN:SA:OCE87193110,Europe/Paris,,STE, +STE:SP:OCECarTER-87193128,1,"Vahl-lès-Bénestroff",48.913329,6.786664,-1,0,SIN:SA:OCE87193128,Europe/Paris,,STE, +STE:SP:OCECarTER-87193136,1,"Han-sur-Nied",48.990499,6.436376,-1,0,SIN:SA:OCE87193136,Europe/Paris,,STE, +STE:SP:OCECarTER-87193144,1,"Hargarten-Falck",49.218802,6.633624,-1,0,SIN:SA:OCE87193144,Europe/Paris,,STE, +STE:SP:OCECarTER-87193151,1,"Téterchen",49.227211,6.572298,-1,0,SIN:SA:OCE87193151,Europe/Paris,,STE, +STE:SP:OCECarTER-87193169,1,"Brettnach",49.257848,6.563853,-1,0,SIN:SA:OCE87193169,Europe/Paris,,STE, +STE:SP:OCECarTER-87193177,1,"Bouzonville",49.289832,6.529747,-1,0,SIN:SA:OCE87193177,Europe/Paris,,STE, +STE:SP:OCECarTER-87193219,1,"Merten",49.248719,6.661951,-1,0,SIN:SA:OCE87193219,Europe/Paris,,STE, +STE:SP:OCECarTER-87193235,1,"Marville",49.452999,5.458305,-1,0,SIN:SA:OCE87193235,Europe/Paris,,STE, +STE:SP:OCECarTER-87193243,1,"Ire-le-Sec",49.476132,5.386516,-1,0,SIN:SA:OCE87193243,Europe/Paris,,STE, +STE:SP:OCECarTER-87193250,1,"Gare de Bening",49.138076,6.829009,-1,0,SIN:SA:OCE87193250,Europe/Paris,,STE, +STE:SP:OCECarTER-87193268,1,"Peccavillers",48.015553,6.668331,-1,0,SIN:SA:OCE87193268,Europe/Paris,,STE, +STE:SP:OCECarTER-87193508,1,"Théding",49.117754,6.889214,-1,0,SIN:SA:OCE87193508,Europe/Paris,,STE, +STE:SP:OCECarTER-87193532,1,"Diebling-Centre.",49.109092,6.939875,-1,0,SIN:SA:OCE87193532,Europe/Paris,,STE, +STE:SP:OCECarTER-87193540,1,"Gare de Hundling",49.107541,6.981621,-1,0,SIN:SA:OCE87193540,Europe/Paris,,STE, +STE:SP:OCECarTER-87193557,1,"Metzing",49.105603,6.957756,-1,0,SIN:SA:OCE87193557,Europe/Paris,,STE, +STE:SP:OCECarTER-87193565,1,"Ippling",49.106363,7.004946,-1,0,SIN:SA:OCE87193565,Europe/Paris,,STE, +STE:SP:OCECarTER-87193607,1,"Welferding",49.112602,7.046235,-1,0,SIN:SA:OCE87193607,Europe/Paris,,STE, +STE:SP:OCECarTER-87193615,1,"Gare de Sarreguemines",49.107505,7.068873,-1,0,SIN:SA:OCE87193615,Europe/Paris,,STE, +STE:SP:OCECarTER-87193623,1,"Gare de Remelfing",49.091438,7.09129,-1,0,SIN:SA:OCE87193623,Europe/Paris,,STE, +STE:SP:OCECarTER-87193631,1,"Gare de Sarreinsming",49.086181,7.11183,-1,0,SIN:SA:OCE87193631,Europe/Paris,,STE, +STE:SP:OCECarTER-87193649,1,"Gare de Zetting",49.078333,7.134496,-1,0,SIN:SA:OCE87193649,Europe/Paris,,STE, +STE:SP:OCECarTER-87193656,1,"Gare de Wittring",49.055964,7.141142,-1,0,SIN:SA:OCE87193656,Europe/Paris,,STE, +STE:SP:OCECarTER-87193664,1,"Gare de Kalhausen",49.034995,7.125484,-1,0,SIN:SA:OCE87193664,Europe/Paris,,STE, +STE:SP:OCECarTER-87193672,1,"Gare de Herbitzheim",49.016428,7.081851,-1,0,SIN:SA:OCE87193672,Europe/Paris,,STE, +STE:SP:OCECarTER-87193714,1,"Gare de Sarralbe",49.00095,7.035714,-1,0,SIN:SA:OCE87193714,Europe/Paris,,STE, +STE:SP:OCECarTER-87193771,1,"Woelfling-Sarreguemines",49.094869,7.190733,-1,0,SIN:SA:OCE87193771,Europe/Paris,,STE, +STE:SP:OCECarTER-87193789,1,"Rohrbach-les-Bitche",49.055356,7.26436,-1,0,SIN:SA:OCE87193789,Europe/Paris,,STE, +STE:SP:OCECarTER-87193797,1,"Petit-Rederching",49.049382,7.299487,-1,0,SIN:SA:OCE87193797,Europe/Paris,,STE, +STE:SP:OCECarTER-87193813,1,"Lemberg (Moselle)",49.00072,7.3801,-1,0,SIN:SA:OCE87193813,Europe/Paris,,STE, +STE:SP:OCECarTER-87193821,1,"Bitche",49.049123,7.431601,-1,0,SIN:SA:OCE87193821,Europe/Paris,,STE, +STE:SP:OCECarTER-87193839,1,"Bitche-Camp",49.052865,7.477499,-1,0,SIN:SA:OCE87193839,Europe/Paris,,STE, +STE:SP:OCECarTER-87194001,1,"Gare de Longwy",49.513026,5.769596,-1,0,SIN:SA:OCE87194001,Europe/Paris,,STE, +STE:SP:OCECarTER-87194019,1,"Ebring",49.116599,6.910996,-1,0,SIN:SA:OCE87194019,Europe/Paris,,STE, +STE:SP:OCECarTER-87194209,1,"Gare de Montmédy",49.522788,5.371044,-1,0,SIN:SA:OCE87194209,Europe/Paris,,STE, +STE:SP:OCECarTER-87194258,1,"Charency-Vezin",49.487538,5.513344,-1,0,SIN:SA:OCE87194258,Europe/Paris,,STE, +STE:SP:OCECarTER-87194274,1,"Gare de Longuyon",49.444275,5.604598,-1,0,SIN:SA:OCE87194274,Europe/Paris,,STE, +STE:SP:OCECarTER-87194357,1,"Gare de Audun-le-Roman",49.366686,5.891201,-1,0,SIN:SA:OCE87194357,Europe/Paris,,STE, +STE:SP:OCECarTER-87194365,1,"Fontoy",49.355792,5.989775,-1,0,SIN:SA:OCE87194365,Europe/Paris,,STE, +STE:SP:OCECarTER-87194449,1,"Rehon",49.50863,5.755632,-1,0,SIN:SA:OCE87194449,Europe/Paris,,STE, +STE:SP:OCECarTER-87194456,1,"Cons-la-Grandville",49.486196,5.70557,-1,0,SIN:SA:OCE87194456,Europe/Paris,,STE, +STE:SP:OCECarTER-87194480,1,"La Roche-sous-Montigny",49.476382,5.657475,-1,0,SIN:SA:OCE87194480,Europe/Paris,,STE, +STE:SP:OCECarTER-87194498,1,"Viviers-sur-Chiers",49.471276,5.633208,-1,0,SIN:SA:OCE87194498,Europe/Paris,,STE, +STE:SP:OCECarTER-87199604,1,"Gros-Réderching",49.068039,7.219696,-1,0,SIN:SA:OCE87199604,Europe/Paris,,STE, +STE:SP:OCECarTER-87199612,1,"Schwangerbach",49.032556,7.408492,-1,0,SIN:SA:OCE87199612,Europe/Paris,,STE, +STE:SP:OCECarTER-87199620,1,"Destry",48.943426,6.584706,-1,0,SIN:SA:OCE87199620,Europe/Paris,,STE, +STE:SP:OCECarTER-87204677,1,"Cussy-les-Forges",47.4713,4.025991,-1,0,SIN:SA:OCE87204677,Europe/Paris,,STE, +STE:SP:OCECarTER-87204685,1,"Huis Renaud (l')",47.2001,4.27231,-1,0,SIN:SA:OCE87204685,Europe/Paris,,STE, +STE:SP:OCECarTER-87212027,1,"Gare de Strasbourg",48.585172,7.733968,-1,0,SIN:SA:OCE87212027,Europe/Paris,,STE, +STE:SP:OCECarTER-87212142,1,"Gare de Mommenheim",48.755663,7.642139,-1,0,SIN:SA:OCE87212142,Europe/Paris,,STE, +STE:SP:OCECarTER-87212167,1,"Gare de Hochfelden",48.755437,7.571964,-1,0,SIN:SA:OCE87212167,Europe/Paris,,STE, +STE:SP:OCECarTER-87212183,1,"Gare de Dettwiller",48.751711,7.465417,-1,0,SIN:SA:OCE87212183,Europe/Paris,,STE, +STE:SP:OCECarTER-87212225,1,"Gare de Saverne",48.744779,7.362152,-1,0,SIN:SA:OCE87212225,Europe/Paris,,STE, +STE:SP:OCECarTER-87212266,1,"Gare de Fegersheim-Lipsheim",48.490943,7.672556,-1,0,SIN:SA:OCE87212266,Europe/Paris,,STE, +STE:SP:OCECarTER-87212308,1,"Gare de Bischheim",48.61165,7.742136,-1,0,SIN:SA:OCE87212308,Europe/Paris,,STE, +STE:SP:OCECarTER-87212316,1,"Gare de La Wantzenau",48.665081,7.824465,-1,0,STE:SA:OCE87212316,Europe/Paris,,STE, +STE:SP:OCECarTER-87212324,1,"Gare de Kilstett",48.679216,7.854015,-1,0,SIN:SA:OCE87212324,Europe/Paris,,STE, +STE:SP:OCECarTER-87212332,1,"Gare de Gambsheim",48.694941,7.87892,-1,0,SIN:SA:OCE87212332,Europe/Paris,,STE, +STE:SP:OCECarTER-87212340,1,"Gare de Herrlisheim (Bas-Rhin)",48.727519,7.910374,-1,0,SIN:SA:OCE87212340,Europe/Paris,,STE, +STE:SP:OCECarTER-87212357,1,"Gare de Drusenheim",48.765977,7.947479,-1,0,SIN:SA:OCE87212357,Europe/Paris,,STE, +STE:SP:OCECarTER-87212365,1,"Gare de Sessenheim",48.796075,7.988694,-1,0,SIN:SA:OCE87212365,Europe/Paris,,STE, +STE:SP:OCECarTER-87212373,1,"Gare de Rountzenheim",48.820027,8.01138,-1,0,SIN:SA:OCE87212373,Europe/Paris,,STE, +STE:SP:OCECarTER-87212407,1,"Gare de Roeschwoog",48.833395,8.029565,-1,0,SIN:SA:OCE87212407,Europe/Paris,,STE, +STE:SP:OCECarTER-87212415,1,"Gare de Roppenheim",48.851169,8.06231,-1,0,SIN:SA:OCE87212415,Europe/Paris,,STE, +STE:SP:OCECarTER-87212431,1,"Gare de Seltz",48.89644,8.098003,-1,0,SIN:SA:OCE87212431,Europe/Paris,,STE, +STE:SP:OCECarTER-87212464,1,"Gare de Lauterbourg",48.967255,8.182819,-1,0,SIN:SA:OCE87212464,Europe/Paris,,STE, +STE:SP:OCECarTER-87213058,1,"Gare de Haguenau",48.813433,7.782371,-1,0,SIN:SA:OCE87213058,Europe/Paris,,STE, +STE:SP:OCECarTER-87213108,1,"Gare de Schweighouse (Bas-Rhin)",48.828558,7.742343,-1,0,SIN:SA:OCE87213108,Europe/Paris,,STE, +STE:SP:OCECarTER-87213132,1,"Pfaffenhoffen",48.843559,7.615192,-1,0,SIN:SA:OCE87213132,Europe/Paris,,STE, +STE:SP:OCECarTER-87213165,1,"Gare de Obermodern",48.84255,7.547196,-1,0,SIN:SA:OCE87213165,Europe/Paris,,STE, +STE:SP:OCECarTER-87213207,1,"Gare de Mertzwiller",48.871997,7.678352,-1,0,SIN:SA:OCE87213207,Europe/Paris,,STE, +STE:SP:OCECarTER-87213223,1,"Gare de Gundershoffen",48.905376,7.653103,-1,0,SIN:SA:OCE87213223,Europe/Paris,,STE, +STE:SP:OCECarTER-87213231,1,"Reichshoffen-Usines",48.919457,7.652459,-1,0,SIN:SA:OCE87213231,Europe/Paris,,STE, +STE:SP:OCECarTER-87213249,1,"Gare de Reichshoffen-Ville",48.930713,7.657977,-1,0,SIN:SA:OCE87213249,Europe/Paris,,STE, +STE:SP:OCECarTER-87213256,1,"Gare de Niederbronn",48.952354,7.633796,-1,0,SIN:SA:OCE87213256,Europe/Paris,,STE, +STE:SP:OCECarTER-87213298,1,"Bannstein",49.004991,7.502957,-1,0,SIN:SA:OCE87213298,Europe/Paris,,STE, +STE:SP:OCECarTER-87213421,1,"Gare de Soultz-sous-Forêts",48.934514,7.882145,-1,0,SIN:SA:OCE87213421,Europe/Paris,,STE, +STE:SP:OCECarTER-87213470,1,"Gare de Wissembourg",49.031533,7.950306,-1,0,SIN:SA:OCE87213470,Europe/Paris,,STE, +STE:SP:OCECarTER-87213603,1,"Gare de Marienthal",48.781823,7.823388,-1,0,SIN:SA:OCE87213603,Europe/Paris,,STE, +STE:SP:OCECarTER-87213611,1,"Gare de Bischwiller",48.765425,7.851189,-1,0,SIN:SA:OCE87213611,Europe/Paris,,STE, +STE:SP:OCECarTER-87213744,1,"Gare de Wingen-sur-Moder",48.920058,7.380586,-1,0,SIN:SA:OCE87213744,Europe/Paris,,STE, +STE:SP:OCECarTER-87213769,1,"Wimmenau",48.911274,7.427249,-1,0,SIN:SA:OCE87213769,Europe/Paris,,STE, +STE:SP:OCECarTER-87213785,1,"Gare de Ingwiller",48.871759,7.476802,-1,0,SIN:SA:OCE87213785,Europe/Paris,,STE, +STE:SP:OCECarTER-87213827,1,"Ettendorf-Gare-Routière",48.80917,7.584605,-1,0,SIN:SA:OCE87213827,Europe/Paris,,STE, +STE:SP:OCECarTER-87213884,1,"Niedermodern/Uberach",48.846527,7.627873,-1,0,SIN:SA:OCE87213884,Europe/Paris,,STE, +STE:SP:OCECarTER-87214056,1,"Gare de Sélestat",48.259638,7.442103,-1,0,SIN:SA:OCE87214056,Europe/Paris,,STE, +STE:SP:OCECarTER-87214122,1,"Gare de Benfeld",48.373796,7.584374,-1,0,SIN:SA:OCE87214122,Europe/Paris,,STE, +STE:SP:OCECarTER-87214148,1,"Gare de Erstein",48.422869,7.638134,-1,0,SIN:SA:OCE87214148,Europe/Paris,,STE, +STE:SP:OCECarTER-87214205,1,"Gare de Scherwiller",48.286584,7.43054,-1,0,SIN:SA:OCE87214205,Europe/Paris,,STE, +STE:SP:OCECarTER-87214213,1,"Gare de Dambach-la-Ville",48.321184,7.4355,-1,0,SIN:SA:OCE87214213,Europe/Paris,,STE, +STE:SP:OCECarTER-87214247,1,"Gare de Barr",48.403046,7.456908,-1,0,SIN:SA:OCE87214247,Europe/Paris,,STE, +STE:SP:OCECarTER-87214254,1,"Gare de Gertwiller",48.413295,7.465911,-1,0,SIN:SA:OCE87214254,Europe/Paris,,STE, +STE:SP:OCECarTER-87214270,1,"Gare de Goxwiller",48.432595,7.478705,-1,0,SIN:SA:OCE87214270,Europe/Paris,,STE, +STE:SP:OCECarTER-87214296,1,"Gare de Bischoffsheim",48.48678,7.498058,-1,0,SIN:SA:OCE87214296,Europe/Paris,,STE, +STE:SP:OCECarTER-87214320,1,"Gare de Rosheim",48.504968,7.491276,-1,0,SIN:SA:OCE87214320,Europe/Paris,,STE, +STE:SP:OCECarTER-87214338,1,"Gare de Dorlisheim",48.524289,7.492819,-1,0,SIN:SA:OCE87214338,Europe/Paris,,STE, +STE:SP:OCECarTER-87214528,1,"Gare de Entzheim-Aéroport",48.547002,7.62795,-1,0,SIN:SA:OCE87214528,Europe/Paris,,STE, +STE:SP:OCECarTER-87214536,1,"Gare de Duppigheim",48.544067,7.587094,-1,0,SIN:SA:OCE87214536,Europe/Paris,,STE, +STE:SP:OCECarTER-87214544,1,"Gare de Duttlenheim",48.545603,7.565647,-1,0,SIN:SA:OCE87214544,Europe/Paris,,STE, +STE:SP:OCECarTER-87214577,1,"Gare de Molsheim",48.537525,7.500206,-1,0,SIN:SA:OCE87214577,Europe/Paris,,STE, +STE:SP:OCECarTER-87214627,1,"Gare de Heiligenberg-Mollkirch",48.527489,7.381501,-1,0,SIN:SA:OCE87214627,Europe/Paris,,STE, +STE:SP:OCECarTER-87214635,1,"Gare de Urmatt",48.525535,7.338268,-1,0,SIN:SA:OCE87214635,Europe/Paris,,STE, +STE:SP:OCECarTER-87214676,1,"Gare de Wisches",48.507634,7.27018,-1,0,SIN:SA:OCE87214676,Europe/Paris,,STE, +STE:SP:OCECarTER-87214684,1,"Gare de Russ-Hersbach",48.498292,7.252274,-1,0,SIN:SA:OCE87214684,Europe/Paris,,STE, +STE:SP:OCECarTER-87214692,1,"Gare de Schirmeck-la-Broque",48.480459,7.216195,-1,0,SIN:SA:OCE87214692,Europe/Paris,,STE, +STE:SP:OCECarTER-87214726,1,"Gare de Rothau",48.45899,7.207337,-1,0,SIN:SA:OCE87214726,Europe/Paris,,STE, +STE:SP:OCECarTER-87214742,1,"Gare de St-Blaise-Roche-Poutay",48.407599,7.165357,-1,0,SIN:SA:OCE87214742,Europe/Paris,,STE, +STE:SP:OCECarTER-87214783,1,"Gare de Saales",48.347087,7.110546,-1,0,SIN:SA:OCE87214783,Europe/Paris,,STE, +STE:SP:OCECarTER-87214841,1,"Ste-Croix-aux-Mines",48.261719,7.230034,-1,0,SIN:SA:OCE87214841,Europe/Paris,,STE, +STE:SP:OCECarTER-87214940,1,"Le Ménilot",48.239166,4.298606,-1,0,SIN:SA:OCE87214940,Europe/Paris,,STE, +STE:SP:OCECarTER-87214965,1,"Forges-de-Clairvaux(Les",48.159992,4.789996,-1,0,SIN:SA:OCE87214965,Europe/Paris,,STE, +STE:SP:OCECarTER-87214981,1,"Daudes",48.244998,4.183884,-1,0,SIN:SA:OCE87214981,Europe/Paris,,STE, +STE:SP:OCECarTER-87215012,1,"Gare de Sarrebourg",48.737941,7.052781,-1,0,SIN:SA:OCE87215012,Europe/Paris,,STE, +STE:SP:OCECarTER-87215038,1,"Marnay-sur-Marne",48.015548,5.241382,-1,0,SIN:SA:OCE87215038,Europe/Paris,,STE, +STE:SP:OCECarTER-87215061,1,"Chaumont-Quartier-Foch",48.096662,5.145277,-1,0,SIN:SA:OCE87215061,Europe/Paris,,STE, +STE:SP:OCECarTER-87215103,1,"Gare de Igney-Avricourt",48.646398,6.805818,-1,0,SIN:SA:OCE87215103,Europe/Paris,,STE, +STE:SP:OCECarTER-87215111,1,"Nouvel-Avricourt",48.651707,6.821629,-1,0,SIN:SA:OCE87215111,Europe/Paris,,STE, +STE:SP:OCECarTER-87215129,1,"Réchicourt-le-Château",48.665157,6.840662,-1,0,SIN:SA:OCE87215129,Europe/Paris,,STE, +STE:SP:OCECarTER-87215137,1,"Gondrexange",27.140973,-3.404561,-1,0,SIN:SA:OCE87215137,Europe/Paris,,STE, +STE:SP:OCECarTER-87215145,1,"Héming",48.691743,6.970887,-1,0,SIN:SA:OCE87215145,Europe/Paris,,STE, +STE:SP:OCECarTER-87215152,1,"Arzviller",48.717693,7.164208,-1,0,SIN:SA:OCE87215152,Europe/Paris,,STE, +STE:SP:OCECarTER-87215160,1,"Gare de Lutzelbourg",48.729855,7.251401,-1,0,SIN:SA:OCE87215160,Europe/Paris,,STE, +STE:SP:OCECarTER-87215178,1,"Hommarting",48.748183,7.137154,-1,0,SIN:SA:OCE87215178,Europe/Paris,,STE, +STE:SP:OCECarTER-87215202,1,"Villiers-le-Sec(Mairie)",48.108051,5.065276,-1,0,SIN:SA:OCE87215202,Europe/Paris,,STE, +STE:SP:OCECarTER-87215210,1,"Villiers-le-Sec(Poste)",48.109164,5.066933,-1,0,SIN:SA:OCE87215210,Europe/Paris,,STE, +STE:SP:OCECarTER-87215228,1,"Buxieres-les-Villiers",48.105,5.036934,-1,0,SIN:SA:OCE87215228,Europe/Paris,,STE, +STE:SP:OCECarTER-87215236,1,"St-Jean-de-Bassel",48.803542,6.991207,-1,0,SIN:SA:OCE87215236,Europe/Paris,,STE, +STE:SP:OCECarTER-87215244,1,"Gosselming",48.792855,7.000837,-1,0,SIN:SA:OCE87215244,Europe/Paris,,STE, +STE:SP:OCECarTER-87215251,1,"Dolving",48.773806,7.019313,-1,0,SIN:SA:OCE87215251,Europe/Paris,,STE, +STE:SP:OCECarTER-87215277,1,"Cutting",48.84611,6.832491,-1,0,SIN:SA:OCE87215277,Europe/Paris,,STE, +STE:SP:OCECarTER-87215285,1,"Domnon-les-Dieuze",48.859715,6.821938,-1,0,SIN:SA:OCE87215285,Europe/Paris,,STE, +STE:SP:OCECarTER-87215293,1,"Bassing",48.867771,6.801103,-1,0,SIN:SA:OCE87215293,Europe/Paris,,STE, +STE:SP:OCECarTER-87215301,1,"Nébing",48.904685,6.811019,-1,0,SIN:SA:OCE87215301,Europe/Paris,,STE, +STE:SP:OCECarTER-87215319,1,"Loudrefing",48.851329,6.877591,-1,0,SIN:SA:OCE87215319,Europe/Paris,,STE, +STE:SP:OCECarTER-87215327,1,"Mittersheim",48.86189,6.941759,-1,0,SIN:SA:OCE87215327,Europe/Paris,,STE, +STE:SP:OCECarTER-87215335,1,"Gare de Berthelming",48.81027,7.00836,-1,0,SIN:SA:OCE87215335,Europe/Paris,,STE, +STE:SP:OCECarTER-87215343,1,"Oberstinzel",48.792631,7.03509,-1,0,SIN:SA:OCE87215343,Europe/Paris,,STE, +STE:SP:OCECarTER-87215350,1,"Sarraltroff-Gare-SNCF",48.770065,7.065766,-1,0,SIN:SA:OCE87215350,Europe/Paris,,STE, +STE:SP:OCECarTER-87215368,1,"Bettborn",48.801137,7.020567,-1,0,SIN:SA:OCE87215368,Europe/Paris,,STE, +STE:SP:OCECarTER-87215418,1,"Niederstinzel",48.86355,7.031314,-1,0,SIN:SA:OCE87215418,Europe/Paris,,STE, +STE:SP:OCECarTER-87215426,1,"Wolfskirchen",48.879265,7.071438,-1,0,SIN:SA:OCE87215426,Europe/Paris,,STE, +STE:SP:OCECarTER-87215434,1,"Bischtroff-sur-Sarre",48.903465,7.073502,-1,0,SIN:SA:OCE87215434,Europe/Paris,,STE, +STE:SP:OCECarTER-87215442,1,"Sarrewerden",48.923883,7.082161,-1,0,SIN:SA:OCE87215442,Europe/Paris,,STE, +STE:SP:OCECarTER-87215459,1,"Gare de Sarre-Union",48.9366,7.085419,-1,0,SIN:SA:OCE87215459,Europe/Paris,,STE, +STE:SP:OCECarTER-87215483,1,"Gare de Schopperten",48.945649,7.055715,-1,0,SIN:SA:OCE87215483,Europe/Paris,,STE, +STE:SP:OCECarTER-87215491,1,"Gare de Keskastel",48.965412,7.048837,-1,0,SIN:SA:OCE87215491,Europe/Paris,,STE, +STE:SP:OCECarTER-87215533,1,"Orges",48.080828,4.926654,-1,0,SIN:SA:OCE87215533,Europe/Paris,,STE, +STE:SP:OCECarTER-87215541,1,"Pont-la-Ville",48.083611,4.890833,-1,0,SIN:SA:OCE87215541,Europe/Paris,,STE, +STE:SP:OCECarTER-87215558,1,"Cirfontaines-en-Azois",48.110549,4.872499,-1,0,SIN:SA:OCE87215558,Europe/Paris,,STE, +STE:SP:OCECarTER-87215574,1,"Longchamp-sur-Aujon",48.148056,4.83305,-1,0,SIN:SA:OCE87215574,Europe/Paris,,STE, +STE:SP:OCECarTER-87215582,1,"Ville-sous-La-Ferté",48.119997,4.789435,-1,0,SIN:SA:OCE87215582,Europe/Paris,,STE, +STE:SP:OCECarTER-87215608,1,"Bar-sur-Aube(Hôpital)",48.230829,4.714999,-1,0,SIN:SA:OCE87215608,Europe/Paris,,STE, +STE:SP:OCECarTER-87215616,1,"Bar-sur-Aube(Piscine)",48.241109,4.697217,-1,0,SIN:SA:OCE87215616,Europe/Paris,,STE, +STE:SP:OCECarTER-87215624,1,"Ailleville",48.254722,4.682218,-1,0,SIN:SA:OCE87215624,Europe/Paris,,STE, +STE:SP:OCECarTER-87215632,1,"Gare de Oermingen",49.001048,7.131929,-1,0,SIN:SA:OCE87215632,Europe/Paris,,STE, +STE:SP:OCECarTER-87215665,1,"Gare de Diemeringen",48.941036,7.184781,-1,0,SIN:SA:OCE87215665,Europe/Paris,,STE, +STE:SP:OCECarTER-87215699,1,"Gare de Tieffenbach-Struth",48.906027,7.255304,-1,0,SIN:SA:OCE87215699,Europe/Paris,,STE, +STE:SP:OCECarTER-87215707,1,"Arsonval",48.268047,4.648888,-1,0,SIN:SA:OCE87215707,Europe/Paris,,STE, +STE:SP:OCECarTER-87215731,1,"Trannes",48.302777,4.584722,-1,0,SIN:SA:OCE87215731,Europe/Paris,,STE, +STE:SP:OCECarTER-87215756,1,"Bossancourt",48.283605,4.60138,-1,0,SIN:SA:OCE87215756,Europe/Paris,,STE, +STE:SP:OCECarTER-87215921,1,"Chanoy",47.924163,5.291666,-1,0,SIN:SA:OCE87215921,Europe/Paris,,STE, +STE:SP:OCECarTER-87215939,1,"Magny-Fouchard",48.241663,4.534436,-1,0,SIN:SA:OCE87215939,Europe/Paris,,STE, +STE:SP:OCECarTER-87215947,1,"Vendeuvre-Centre",48.237498,4.466939,-1,0,SIN:SA:OCE87215947,Europe/Paris,,STE, +STE:SP:OCECarTER-87215988,1,"Lusigny-sur-Barse Centr",48.254719,4.267497,-1,0,SIN:SA:OCE87215988,Europe/Paris,,STE, +STE:SP:OCECarTER-87216010,1,"Rouilly-St-Loup-D21",48.262776,4.151105,-1,0,SIN:SA:OCE87216010,Europe/Paris,,STE, +STE:SP:OCECarTER-87216028,1,"St-Julien-Villas-Mairie",48.273883,4.100833,-1,0,SIN:SA:OCE87216028,Europe/Paris,,STE, +STE:SP:OCECarTER-87216036,1,"Troyes(Bld 14 Juillet)",48.294162,4.079709,-1,0,SIN:SA:OCE87216036,Europe/Paris,,STE, +STE:SP:OCECarTER-87216051,1,"Troyes-Victor-Hugo",48.29305,4.06916,-1,0,SIN:SA:OCE87216051,Europe/Paris,,STE, +STE:SP:OCECarTER-87216077,1,"Langres-Boulière",47.862777,5.33055,-1,0,SIN:SA:OCE87216077,Europe/Paris,,STE, +STE:SP:OCECarTER-87216093,1,"Langres-St-Gilles",47.872774,5.338326,-1,0,SIN:SA:OCE87216093,Europe/Paris,,STE, +STE:SP:OCECarTER-87216101,1,"Langres-Bel-Air",47.858604,5.332212,-1,0,SIN:SA:OCE87216101,Europe/Paris,,STE, +STE:SP:OCECarTER-87216119,1,"Romilly-S/S SNCF",48.513884,3.729989,-1,0,SIN:SA:OCE87216119,Europe/Paris,,STE, +STE:SP:OCECarTER-87216127,1,"Romilly-S/S Hôpital",48.515824,3.715546,-1,0,SIN:SA:OCE87216127,Europe/Paris,,STE, +STE:SP:OCECarTER-87216135,1,"Pont-S/S Fleming",48.513053,3.598878,-1,0,SIN:SA:OCE87216135,Europe/Paris,,STE, +STE:SP:OCECarTER-87216143,1,"Pont-sur-Seine S.Martin",48.516658,3.597219,-1,0,SIN:SA:OCE87216143,Europe/Paris,,STE, +STE:SP:OCECarTER-87216150,1,"Nogent-S/S De Gaulle",48.492216,3.509437,-1,0,SIN:SA:OCE87216150,Europe/Paris,,STE, +STE:SP:OCECarTER-87216168,1,"Nogent-sur-Seine-Théât.",48.492494,3.50222,-1,0,SIN:SA:OCE87216168,Europe/Paris,,STE, +STE:SP:OCECarTER-87216184,1,"Crancey RN",48.514439,3.639442,-1,0,SIN:SA:OCE87216184,Europe/Paris,,STE, +STE:SP:OCECarTER-87217042,1,"Chaumont-Gendarmerie",48.101936,5.144443,-1,0,SIN:SA:OCE87217042,Europe/Paris,,STE, +STE:SP:OCECarTER-87217059,1,"Langres-La-Maladière",47.871389,5.326383,-1,0,SIN:SA:OCE87217059,Europe/Paris,,STE, +STE:SP:OCECarTER-87218149,1,"Senailly",47.585182,4.266763,-1,0,SIN:SA:OCE87218149,Europe/Paris,,STE, +STE:SP:OCECarTER-87276006,1,"Gare de Creil",49.263769,2.46918,-1,0,SIN:SA:OCE87276006,Europe/Paris,,STE, +STE:SP:OCECarTER-87276204,1,"Gare de Laigneville",49.292664,2.449433,-1,0,SIN:SA:OCE87276204,Europe/Paris,,STE, +STE:SP:OCECarTER-87276212,1,"Gare de Liancourt-Rantigny",49.324758,2.445298,-1,0,SIN:SA:OCE87276212,Europe/Paris,,STE, +STE:SP:OCECarTER-87276691,1,"Gare de Compiègne",49.422013,2.823486,-1,0,SIN:SA:OCE87276691,Europe/Paris,,STE, +STE:SP:OCECarTER-87276782,1,"Gare de Noyon",49.577341,3.006376,-1,0,SIN:SA:OCE87276782,Europe/Paris,,STE, +STE:SP:OCECarTER-87279869,1,"Vouécourt",48.26722,5.136107,-1,0,SIN:SA:OCE87279869,Europe/Paris,,STE, +STE:SP:OCECarTER-87279877,1,"Bricon(la Poste)",48.080825,4.977219,-1,0,SIN:SA:OCE87279877,Europe/Paris,,STE, +STE:SP:OCECarTER-87279885,1,"Maranville-la-Poste",48.135272,4.862495,-1,0,SIN:SA:OCE87279885,Europe/Paris,,STE, +STE:SP:OCECarTER-87279893,1,"Clairvaux D12",48.14611,4.793046,-1,0,SIN:SA:OCE87279893,Europe/Paris,,STE, +STE:SP:OCECarTER-87279901,1,"Bayel-Eglise",48.198884,4.776109,-1,0,SIN:SA:OCE87279901,Europe/Paris,,STE, +STE:SP:OCECarTER-87279919,1,"Jessains-Eglise",48.296937,4.577772,-1,0,SIN:SA:OCE87279919,Europe/Paris,,STE, +STE:SP:OCECarTER-87279927,1,"Vauchonvilliers-Mairie",48.265555,4.5261,-1,0,SIN:SA:OCE87279927,Europe/Paris,,STE, +STE:SP:OCECarTER-87279935,1,"La Villeneuve-Ch.RN19",48.23722,4.386385,-1,0,SIN:SA:OCE87279935,Europe/Paris,,STE, +STE:SP:OCECarTER-87279943,1,"Montiéramey-Eglise",48.230828,4.307772,-1,0,SIN:SA:OCE87279943,Europe/Paris,,STE, +STE:SP:OCECarTER-87279950,1,"Lusigny-sur-Barse RN19",48.253605,4.26083,-1,0,SIN:SA:OCE87279950,Europe/Paris,,STE, +STE:SP:OCECarTER-87279968,1,"Montaulin-Mairie",48.252216,4.193888,-1,0,SIN:SA:OCE87279968,Europe/Paris,,STE, +STE:SP:OCECarTER-87279976,1,"Rolampont-Mairie",47.951942,5.284996,-1,0,SIN:SA:OCE87279976,Europe/Paris,,STE, +STE:SP:OCECarTER-87279984,1,"Humes RN19",47.903883,5.302497,-1,0,SIN:SA:OCE87279984,Europe/Paris,,STE, +STE:SP:OCECarTER-87279992,1,"Foulain RN19",48.038329,5.214166,-1,0,SIN:SA:OCE87279992,Europe/Paris,,STE, +STE:SP:OCECarTER-87280008,1,"Vesaignes-sur-Marne",47.998332,5.262771,-1,0,SIN:SA:OCE87280008,Europe/Paris,,STE, +STE:SP:OCECarTER-87280016,1,"Rouilly-St-Loup-Guérade",48.268331,4.136654,-1,0,SIN:SA:OCE87280016,Europe/Paris,,STE, +STE:SP:OCECarTER-87281071,1,"Gare de Calais Fréthun",50.901263,1.811027,-1,0,SIN:SA:OCE87281071,Europe/Paris,,STE, +STE:SP:OCECarTER-87281428,1,"Gare de Audruicq",50.875669,2.076354,-1,0,SIN:SA:OCE87281428,Europe/Paris,,STE, +STE:SP:OCECarTER-87281436,1,"Gare de Watten Eperlecques",50.825955,2.207706,-1,0,SIN:SA:OCE87281436,Europe/Paris,,STE, +STE:SP:OCECarTER-87281444,1,"Gare de St Omer",50.753721,2.266863,-1,0,SIN:SA:OCE87281444,Europe/Paris,,STE, +STE:SP:OCECarTER-87282335,1,"Perrigny-sur-Loire",46.530542,3.846116,-1,0,SIN:SA:OCE87282335,Europe/Paris,,STE, +STE:SP:OCECarTER-87286005,1,"Gare de Lille Flandres",50.636201,3.071023,-1,0,SIN:SA:OCE87286005,Europe/Paris,,STE, +STE:SP:OCECarTER-87286146,1,"Gare de Armentières",50.680765,2.877505,-1,0,SIN:SA:OCE87286146,Europe/Paris,,STE, +STE:SP:OCECarTER-87286179,1,"Gare de Bailleul (Nord)",50.729122,2.7345,-1,0,SIN:SA:OCE87286179,Europe/Paris,,STE, +STE:SP:OCECarTER-87286203,1,"Gare de Strazeele",50.713446,2.630871,-1,0,SIN:SA:OCE87286203,Europe/Paris,,STE, +STE:SP:OCECarTER-87286302,1,"Gare de Hazebrouck",50.725043,2.541526,-1,0,SIN:SA:OCE87286302,Europe/Paris,,STE, +STE:SP:OCECarTER-87286500,1,"Gare de Phalempin",50.515368,3.019935,-1,0,SIN:SA:OCE87286500,Europe/Paris,,STE, +STE:SP:OCECarTER-87286518,1,"Gare de Seclin",50.548568,3.03496,-1,0,SIN:SA:OCE87286518,Europe/Paris,,STE, +STE:SP:OCECarTER-87286526,1,"Gare de Wattignies Templemars",50.579352,3.051536,-1,0,SIN:SA:OCE87286526,Europe/Paris,,STE, +STE:SP:OCECarTER-87286534,1,"Gare de Ronchin",50.604528,3.078311,-1,0,SIN:SA:OCE87286534,Europe/Paris,,STE, +STE:SP:OCECarTER-87286567,1,"Gare de Rosult",50.456419,3.348858,-1,0,SIN:SA:OCE87286567,Europe/Paris,,STE, +STE:SP:OCECarTER-87286583,1,"Gare de Orchies",50.477047,3.24888,-1,0,SIN:SA:OCE87286583,Europe/Paris,,STE, +STE:SP:OCECarTER-87286625,1,"Gare de Templeuve",50.528681,3.175601,-1,0,SIN:SA:OCE87286625,Europe/Paris,,STE, +STE:SP:OCECarTER-87286641,1,"Gare de Fretin (Nord)",50.559844,3.149519,-1,0,SIN:SA:OCE87286641,Europe/Paris,,STE, +STE:SP:OCECarTER-87286849,1,"Gare de Lesquin",50.590703,3.117706,-1,0,SIN:SA:OCE87286849,Europe/Paris,,STE, +STE:SP:OCECarTER-87295006,1,"Gare de Maubeuge",50.272805,3.966406,-1,0,SIN:SA:OCE87295006,Europe/Paris,,STE, +STE:SP:OCECarTER-87295014,1,"Gare de Jeumont",50.296097,4.086377,-1,0,SIN:SA:OCE87295014,Europe/Paris,,STE, +STE:SP:OCECarTER-87295048,1,"Gare de Fourmies",50.015362,4.053588,-1,0,SIN:SA:OCE87295048,Europe/Paris,,STE, +STE:SP:OCECarTER-87295055,1,"Gare de Anor",49.985002,4.093351,-1,0,SIN:SA:OCE87295055,Europe/Paris,,STE, +STE:SP:OCECarTER-87295063,1,"Gare de Hirson",49.914576,4.084294,-1,0,SIN:SA:OCE87295063,Europe/Paris,,STE, +STE:SP:OCECarTER-87295568,1,"Gare de Hautmont",50.253961,3.915171,-1,0,SIN:SA:OCE87295568,Europe/Paris,,STE, +STE:SP:OCECarTER-87295600,1,"Gare de Aulnoye Aymeries",50.197327,3.843239,-1,0,SIN:SA:OCE87295600,Europe/Paris,,STE, +STE:SP:OCECarTER-87295709,1,"Gare de Sains du Nord",50.0889,4.00159,-1,0,SIN:SA:OCE87295709,Europe/Paris,,STE, +STE:SP:OCECarTER-87295733,1,"Gare de Avesnes",50.126688,3.932939,-1,0,SIN:SA:OCE87295733,Europe/Paris,,STE, +STE:SP:OCECarTER-87295774,1,"Gare de Dompierre (Nord)",50.146002,3.870976,-1,0,SIN:SA:OCE87295774,Europe/Paris,,STE, +STE:SP:OCECarTER-87296004,1,"Gare de St Quentin",49.840022,3.296932,-1,0,SIN:SA:OCE87296004,Europe/Paris,,STE, +STE:SP:OCECarTER-87296095,1,"Gare de Marle-sur-Serre",49.747016,3.769653,-1,0,SIN:SA:OCE87296095,Europe/Paris,,STE, +STE:SP:OCECarTER-87296129,1,"Gare de Vervins",49.82986,3.893424,-1,0,SIN:SA:OCE87296129,Europe/Paris,,STE, +STE:SP:OCECarTER-87296145,1,"Gare de Origny-en-Thiérache",49.890785,4.024008,-1,0,SIN:SA:OCE87296145,Europe/Paris,,STE, +STE:SP:OCECarTER-87296244,1,"Gare de Busigny",50.039489,3.446338,-1,0,SIN:SA:OCE87296244,Europe/Paris,,STE, +STE:SP:OCECarTER-87296269,1,"Gare de Bohain",49.988477,3.443202,-1,0,SIN:SA:OCE87296269,Europe/Paris,,STE, +STE:SP:OCECarTER-87296293,1,"Gare de Fresnoy-le-Grand",49.949746,3.43206,-1,0,SIN:SA:OCE87296293,Europe/Paris,,STE, +STE:SP:OCECarTER-87296442,1,"Gare de Tergnier",49.659244,3.297225,-1,0,SIN:SA:OCE87296442,Europe/Paris,,STE, +STE:SP:OCECarTER-87296616,1,"Gare de Chauny",49.610199,3.222522,-1,0,SIN:SA:OCE87296616,Europe/Paris,,STE, +STE:SP:OCECarTER-87297085,1,"Gare de La Bouteille",49.859656,3.981535,-1,0,SIN:SA:OCE87297085,Europe/Paris,,STE, +STE:SP:OCECarTER-87297119,1,"Gare de Verneuil-sur-Serre",49.648669,3.667775,-1,0,SIN:SA:OCE87297119,Europe/Paris,,STE, +STE:SP:OCECarTER-87297143,1,"Gare de Dercy-Froidmont",49.702731,3.692036,-1,0,SIN:SA:OCE87297143,Europe/Paris,,STE, +STE:SP:OCECarTER-87297150,1,"Gare de Voyenne",49.726126,3.720062,-1,0,SIN:SA:OCE87297150,Europe/Paris,,STE, +STE:SP:OCECarTER-87297291,1,"Gare de Barenton-Bugny",49.630657,3.655787,-1,0,SIN:SA:OCE87297291,Europe/Paris,,STE, +STE:SP:OCECarTER-87299834,1,"Miannay",50.097221,1.721385,-1,0,SIN:SA:OCE87299834,Europe/Paris,,STE, +STE:SP:OCECarTER-87299842,1,"Yzengremer",50.061104,1.521662,-1,0,SIN:SA:OCE87299842,Europe/Paris,,STE, +STE:SP:OCECarTER-87312587,1,"Troyes-Quennedey",48.290277,4.089444,-1,0,SIN:SA:OCE87312587,Europe/Paris,,STE, +STE:SP:OCECarTER-87313304,1,"Gare de Clermont-de-l'Oise",49.385338,2.417203,-1,0,SIN:SA:OCE87313304,Europe/Paris,,STE, +STE:SP:OCECarTER-87313395,1,"Gare de Poix-de-Picardie",49.777802,1.989828,-1,0,SIN:SA:OCE87313395,Europe/Paris,,STE, +STE:SP:OCECarTER-87313510,1,"Gare de Beauvais-Gare-SNCF",49.42651,2.088638,-1,0,STE:SA:OCE87313510,Europe/Paris,,STE, +STE:SP:OCECarTER-87313692,1,"Gare de Herchies",49.487955,2.011126,-1,0,SIN:SA:OCE87313692,Europe/Paris,,STE, +STE:SP:OCECarTER-87313700,1,"Gare de Milly-sur-Thérain",49.503872,1.98864,-1,0,SIN:SA:OCE87313700,Europe/Paris,,STE, +STE:SP:OCECarTER-87313718,1,"Gare de St-Omer-en-Chaussée",49.531041,1.997645,-1,0,SIN:SA:OCE87313718,Europe/Paris,,STE, +STE:SP:OCECarTER-87313726,1,"Gare de Marseille-en-Beauvaisis",49.57107,1.954691,-1,0,SIN:SA:OCE87313726,Europe/Paris,,STE, +STE:SP:OCECarTER-87313734,1,"Gare de Grandvilliers",49.659393,1.938451,-1,0,SIN:SA:OCE87313734,Europe/Paris,,STE, +STE:SP:OCECarTER-87313742,1,"Gare de Feuquières-Broquiers",49.654339,1.830979,-1,0,SIN:SA:OCE87313742,Europe/Paris,,STE, +STE:SP:OCECarTER-87313759,1,"Gare de Abancourt",49.685665,1.77418,-1,0,SIN:SA:OCE87313759,Europe/Paris,,STE, +STE:SP:OCECarTER-87313874,1,"Gare de Amiens",49.890532,2.308098,-1,0,SIN:SA:OCE87313874,Europe/Paris,,STE, +STE:SP:OCECarTER-87314880,1,"Sancerre-Hôtel-du-Remp.",47.332492,2.836944,-1,0,SIN:SA:OCE87314880,Europe/Paris,,STE, +STE:SP:OCECarTER-87314898,1,"St-Satur-Place-du-Marc.",47.339717,2.856941,-1,0,SIN:SA:OCE87314898,Europe/Paris,,STE, +STE:SP:OCECarTER-87314906,1,"Bannay-Bourg",47.386944,2.885826,-1,0,SIN:SA:OCE87314906,Europe/Paris,,STE, +STE:SP:OCECarTER-87316562,1,"Vitrey-sur-Mance",47.813318,5.759423,-1,0,SIN:SA:OCE87316562,Europe/Paris,,STE, +STE:SP:OCECarTER-87317057,1,"Gare de Rang du Fl. Verton Ber.",50.41581,1.648077,-1,0,SIN:SA:OCE87317057,Europe/Paris,,STE, +STE:SP:OCECarTER-87317065,1,"Gare de Etaples Le Touquet",50.516717,1.642496,-1,0,SIN:SA:OCE87317065,Europe/Paris,,STE, +STE:SP:OCECarTER-87317107,1,"Gare de Hesdigneul",50.66089,1.667347,-1,0,SIN:SA:OCE87317107,Europe/Paris,,STE, +STE:SP:OCECarTER-87317263,1,"Gare de Calais Ville",50.953456,1.850745,-1,0,SIN:SA:OCE87317263,Europe/Paris,,STE, +STE:SP:OCECarTER-87317362,1,"Gare de Abbeville",50.102194,1.824485,-1,0,SIN:SA:OCE87317362,Europe/Paris,,STE, +STE:SP:OCECarTER-87317396,1,"Gare de Noyelles-sur-Mer",50.187334,1.704474,-1,0,SIN:SA:OCE87317396,Europe/Paris,,STE, +STE:SP:OCECarTER-87317404,1,"Gare de Rue",50.273198,1.675613,-1,0,SIN:SA:OCE87317404,Europe/Paris,,STE, +STE:SP:OCECarTER-87317495,1,"Gare de Chépy-Valines",50.06814,1.635563,-1,0,SIN:SA:OCE87317495,Europe/Paris,,STE, +STE:SP:OCECarTER-87317503,1,"Gare de Feuquières-en-Vimeu-Fre",50.063305,1.589164,-1,0,SIN:SA:OCE87317503,Europe/Paris,,STE, +STE:SP:OCECarTER-87317511,1,"Gare de Woincourt",50.058666,1.537138,-1,0,SIN:SA:OCE87317511,Europe/Paris,,STE, +STE:SP:OCECarTER-87317529,1,"Gare de Le Tréport-Mers-Les-B",50.06272,1.376115,-1,0,SIN:SA:OCE87317529,Europe/Paris,,STE, +STE:SP:OCECarTER-87317537,1,"Gare de Eu",50.05429,1.416892,-1,0,SIN:SA:OCE87317537,Europe/Paris,,STE, +STE:SP:OCECarTER-87317586,1,"Gare de Boulogne Ville",50.715585,1.609806,-1,0,SIN:SA:OCE87317586,Europe/Paris,,STE, +STE:SP:OCECarTER-87319756,1,"Vieville",48.239439,5.135272,-1,0,SIN:SA:OCE87319756,Europe/Paris,,STE, +STE:SP:OCECarTER-87319764,1,"Montaulin-vallée-Verte",48.256102,4.197217,-1,0,SIN:SA:OCE87319764,Europe/Paris,,STE, +STE:SP:OCECarTER-87320408,1,"Jussey-Centre",47.8277,5.901685,-1,0,SIN:SA:OCE87320408,Europe/Paris,,STE, +STE:SP:OCECarTER-87324335,1,"Gare de Hirson-Ecoles",49.929656,4.085384,-1,0,SIN:SA:OCE87324335,Europe/Paris,,STE, +STE:SP:OCECarTER-87326462,1,"Roôcourt-la-Côte",48.211939,5.145276,-1,0,SIN:SA:OCE87326462,Europe/Paris,,STE, +STE:SP:OCECarTER-87338129,1,"Langres-Gendarmerie",47.853051,5.333609,-1,0,SIN:SA:OCE87338129,Europe/Paris,,STE, +STE:SP:OCECarTER-87338145,1,"St-Dizier-St-Amand",48.624992,4.967771,-1,0,SIN:SA:OCE87338145,Europe/Paris,,STE, +STE:SP:OCECarTER-87338152,1,"Gourzon",48.545829,5.084712,-1,0,SIN:SA:OCE87338152,Europe/Paris,,STE, +STE:SP:OCECarTER-87338160,1,"Rachecourt-sur-Marne",48.526937,5.100266,-1,0,SIN:SA:OCE87338160,Europe/Paris,,STE, +STE:SP:OCECarTER-87338178,1,"Vecqueville",48.457217,5.143605,-1,0,SIN:SA:OCE87338178,Europe/Paris,,STE, +STE:SP:OCECarTER-87338186,1,"Rupt",48.425272,5.139444,-1,0,SIN:SA:OCE87338186,Europe/Paris,,STE, +STE:SP:OCECarTER-87338194,1,"Rouvroy-sur-Marne",48.358049,5.147496,-1,0,SIN:SA:OCE87338194,Europe/Paris,,STE, +STE:SP:OCECarTER-87338517,1,"Gare de Hoenheim-Tram",48.628233,7.757438,-1,0,SIN:SA:OCE87338517,Europe/Paris,,STE, +STE:SP:OCECarTER-87342006,1,"Gare de Béthune",50.521434,2.640398,-1,0,SIN:SA:OCE87342006,Europe/Paris,,STE, +STE:SP:OCECarTER-87342014,1,"Gare de Arras",50.286816,2.781126,-1,0,SIN:SA:OCE87342014,Europe/Paris,,STE, +STE:SP:OCECarTER-87342089,1,"Gare de Roeux (Pas de Calais)",50.303484,2.894725,-1,0,SIN:SA:OCE87342089,Europe/Paris,,STE, +STE:SP:OCECarTER-87342097,1,"Gare de Biache St Vaast",50.316248,2.941551,-1,0,SIN:SA:OCE87342097,Europe/Paris,,STE, +STE:SP:OCECarTER-87342113,1,"Gare de Vitry en Artois",50.327123,2.980596,-1,0,SIN:SA:OCE87342113,Europe/Paris,,STE, +STE:SP:OCECarTER-87342238,1,"Gare de Lillers",50.561628,2.478962,-1,0,SIN:SA:OCE87342238,Europe/Paris,,STE, +STE:SP:OCECarTER-87342279,1,"Gare de Isbergues",50.613953,2.462785,-1,0,SIN:SA:OCE87342279,Europe/Paris,,STE, +STE:SP:OCECarTER-87342337,1,"Gare de St Pol sur Ternoise",50.37914,2.33898,-1,0,SIN:SA:OCE87342337,Europe/Paris,,STE, +STE:SP:OCECarTER-87342535,1,"Gare de Vis à Marles",50.505006,2.517221,-1,0,SIN:SA:OCE87342535,Europe/Paris,,STE, +STE:SP:OCECarTER-87342543,1,"Gare de Calonne Ricouart",50.482759,2.481046,-1,0,SIN:SA:OCE87342543,Europe/Paris,,STE, +STE:SP:OCECarTER-87342550,1,"Gare de Pernes-Camblain",50.48025,2.43094,-1,0,SIN:SA:OCE87342550,Europe/Paris,,STE, +STE:SP:OCECarTER-87342576,1,"Gare de Vimy",50.374073,2.822405,-1,0,SIN:SA:OCE87342576,Europe/Paris,,STE, +STE:SP:OCECarTER-87343004,1,"Gare de Valenciennes",50.363237,3.517116,-1,0,SIN:SA:OCE87343004,Europe/Paris,,STE, +STE:SP:OCECarTER-87343103,1,"Gare de St-Amand-les-Eaux",50.44323,3.419355,-1,0,SIN:SA:OCE87343103,Europe/Paris,,STE, +STE:SP:OCECarTER-87343301,1,"Gare de Wallers",50.384549,3.393937,-1,0,SIN:SA:OCE87343301,Europe/Paris,,STE, +STE:SP:OCECarTER-87343319,1,"Gare de Raismes (Nord)",50.390177,3.479105,-1,0,SIN:SA:OCE87343319,Europe/Paris,,STE, +STE:SP:OCECarTER-87343475,1,"Gare de Lourches",50.310203,3.343214,-1,0,SIN:SA:OCE87343475,Europe/Paris,,STE, +STE:SP:OCECarTER-87344127,1,"St-Lyé-Libération",48.345555,4.023045,-1,0,SIN:SA:OCE87344127,Europe/Paris,,STE, +STE:SP:OCECarTER-87345009,1,"Gare de Douai",50.371675,3.089961,-1,0,SIN:SA:OCE87345009,Europe/Paris,,STE, +STE:SP:OCECarTER-87345025,1,"Gare de Lens",50.426766,2.828195,-1,0,SIN:SA:OCE87345025,Europe/Paris,,STE, +STE:SP:OCECarTER-87345041,1,"Gare de Liévin",50.434201,2.771725,-1,0,SIN:SA:OCE87345041,Europe/Paris,,STE, +STE:SP:OCECarTER-87345108,1,"Gare de Brebières Sud",50.336223,3.0139,-1,0,SIN:SA:OCE87345108,Europe/Paris,,STE, +STE:SP:OCECarTER-87345116,1,"Gare de Corbehem",50.342796,3.040407,-1,0,SIN:SA:OCE87345116,Europe/Paris,,STE, +STE:SP:OCECarTER-87345207,1,"Gare de Pont de la Deule",50.398133,3.084883,-1,0,SIN:SA:OCE87345207,Europe/Paris,,STE, +STE:SP:OCECarTER-87345223,1,"Gare de Leforest",50.427769,3.059703,-1,0,SIN:SA:OCE87345223,Europe/Paris,,STE, +STE:SP:OCECarTER-87345249,1,"Gare de Ostricourt",50.4452,3.03202,-1,0,SIN:SA:OCE87345249,Europe/Paris,,STE, +STE:SP:OCECarTER-87345256,1,"Gare de Libercourt",50.480161,3.008657,-1,0,SIN:SA:OCE87345256,Europe/Paris,,STE, +STE:SP:OCECarTER-87345306,1,"Gare de Montigny en Ostrevent",50.36144,3.188342,-1,0,SIN:SA:OCE87345306,Europe/Paris,,STE, +STE:SP:OCECarTER-87345314,1,"Gare de Somain",50.355584,3.277691,-1,0,SIN:SA:OCE87345314,Europe/Paris,,STE, +STE:SP:OCECarTER-87345405,1,"Gare de Sin le Noble",50.356621,3.112557,-1,0,SIN:SA:OCE87345405,Europe/Paris,,STE, +STE:SP:OCECarTER-87345413,1,"Gare de Cantin",50.312508,3.12194,-1,0,SIN:SA:OCE87345413,Europe/Paris,,STE, +STE:SP:OCECarTER-87345421,1,"Gare de Arleux",50.286194,3.120676,-1,0,SIN:SA:OCE87345421,Europe/Paris,,STE, +STE:SP:OCECarTER-87345439,1,"Gare de Brunémont",50.27824,3.145901,-1,0,SIN:SA:OCE87345439,Europe/Paris,,STE, +STE:SP:OCECarTER-87345447,1,"Gare de Aubigny au Bac",50.268615,3.158755,-1,0,SIN:SA:OCE87345447,Europe/Paris,,STE, +STE:SP:OCECarTER-87345520,1,"Gare de Cambrai Ville",50.176611,3.241216,-1,0,SIN:SA:OCE87345520,Europe/Paris,,STE, +STE:SP:OCECarTER-87345561,1,"Gare de Caudry",50.11141,3.409737,-1,0,SIN:SA:OCE87345561,Europe/Paris,,STE, +STE:SP:OCECarTER-87352047,1,"Gare de Champagnole-PE-Victor",46.74221,5.919807,-1,0,SIN:SA:OCE87352047,Europe/Paris,,STE, +STE:SP:OCECarTER-87391300,1,"Gare de Morre",47.22599,6.067367,-1,0,SIN:SA:OCE87391300,Europe/Paris,,STE, +STE:SP:OCECarTER-87398735,1,"Bar-sur-Aube (HV)",48.233333,4.706387,-1,0,SIN:SA:OCE87398735,Europe/Paris,,STE, +STE:SP:OCECarTER-87402818,1,"Thivet",47.99111,5.280549,-1,0,SIN:SA:OCE87402818,Europe/Paris,,STE, +STE:SP:OCECarTER-87402826,1,"Bienville",48.581659,5.045551,-1,0,SIN:SA:OCE87402826,Europe/Paris,,STE, +STE:SP:OCECarTER-87405571,1,"Anzeling (Carrefour)",49.263954,6.463133,-1,0,SIN:SA:OCE87405571,Europe/Paris,,STE, +STE:SP:OCECarTER-87405605,1,"Brouvelieures (Forges)",48.239167,6.731078,-1,0,SIN:SA:OCE87405605,Europe/Paris,,STE, +STE:SP:OCECarTER-87405613,1,"Bruyères (Cameroun)",48.209194,6.721981,-1,0,SIN:SA:OCE87405613,Europe/Paris,,STE, +STE:SP:OCECarTER-87405621,1,"Gerbéviller (Rue Gambet",48.500221,6.512376,-1,0,SIN:SA:OCE87405621,Europe/Paris,,STE, +STE:SP:OCECarTER-87405639,1,"Magnières (Lotissement)",48.449571,6.563773,-1,0,SIN:SA:OCE87405639,Europe/Paris,,STE, +STE:SP:OCECarTER-87405647,1,"Mont-sur-Meurthe (Mont)",48.554785,6.444484,-1,0,SIN:SA:OCE87405647,Europe/Paris,,STE, +STE:SP:OCECarTER-87405662,1,"Rambervillers (11 Nov)",48.33319,6.636671,-1,0,SIN:SA:OCE87405662,Europe/Paris,,STE, +STE:SP:OCECarTER-87405670,1,"Rambervillers (Boucher)",48.347027,6.635754,-1,0,SIN:SA:OCE87405670,Europe/Paris,,STE, +STE:SP:OCECarTER-87405688,1,"Rambervillers (Lunev.)",48.351998,6.631786,-1,0,SIN:SA:OCE87405688,Europe/Paris,,STE, +STE:SP:OCECarTER-87405696,1,"Roville-aux-Chènes Lyc.",48.387549,6.604195,-1,0,SIN:SA:OCE87405696,Europe/Paris,,STE, +STE:SP:OCECarTER-87405704,1,"Vallois (Centre)",48.463329,6.548602,-1,0,SIN:SA:OCE87405704,Europe/Paris,,STE, +STE:SP:OCECarTER-87405712,1,"Barisey-la-Côte Mairie",48.544081,5.842649,-1,0,SIN:SA:OCE87405712,Europe/Paris,,STE, +STE:SP:OCECarTER-87405720,1,"Domgermain (Bois-le-C.)",48.659597,5.851558,-1,0,SIN:SA:OCE87405720,Europe/Paris,,STE, +STE:SP:OCECarTER-87405746,1,"Neufchâteau (Hôpital)",27.140973,-3.404561,-1,0,SIN:SA:OCE87405746,Europe/Paris,,STE, +STE:SP:OCECarTER-87405753,1,"Toul-Gare-Routière",48.674144,5.88637,-1,0,SIN:SA:OCE87405753,Europe/Paris,,STE, +STE:SP:OCECarTER-87405779,1,"Cornimont (Hôp. Rural)",47.971975,6.831929,-1,0,SIN:SA:OCE87405779,Europe/Paris,,STE, +STE:SP:OCECarTER-87405787,1,"Cornimont (Lansauchamp)",47.985552,6.837488,-1,0,SIN:SA:OCE87405787,Europe/Paris,,STE, +STE:SP:OCECarTER-87405795,1,"Cornimont (Perception)",47.963427,6.838711,-1,0,SIN:SA:OCE87405795,Europe/Paris,,STE, +STE:SP:OCECarTER-87405803,1,"Dommartin (Franould)",48.004538,6.654918,-1,0,SIN:SA:OCE87405803,Europe/Paris,,STE, +STE:SP:OCECarTER-87405811,1,"La-Bresse (Pl Champtel)",48.003214,6.873665,-1,0,SIN:SA:OCE87405811,Europe/Paris,,STE, +STE:SP:OCECarTER-87405852,1,"Saulxures/M (Pl Claude)",47.949715,6.784433,-1,0,SIN:SA:OCE87405852,Europe/Paris,,STE, +STE:SP:OCECarTER-87405878,1,"Bussang (Gare SNCF)",27.140973,-3.404561,-1,0,SIN:SA:OCE87405878,Europe/Paris,,STE, +STE:SP:OCECarTER-87405886,1,"Fresse (La Hardoye)",47.869035,6.79483,-1,0,SIN:SA:OCE87405886,Europe/Paris,,STE, +STE:SP:OCECarTER-87405894,1,"Hielle (Lépange)",47.95384,6.626085,-1,0,SIN:SA:OCE87405894,Europe/Paris,,STE, +STE:SP:OCECarTER-87405902,1,"Le-Thillot (Pl. Républ)",47.878338,6.766962,-1,0,SIN:SA:OCE87405902,Europe/Paris,,STE, +STE:SP:OCECarTER-87405910,1,"Remiremont (Cora)",48.004577,6.612661,-1,0,SIN:SA:OCE87405910,Europe/Paris,,STE, +STE:SP:OCECarTER-87405928,1,"Rupt/Moselle (Saulx)",47.90989,6.68912,-1,0,SIN:SA:OCE87405928,Europe/Paris,,STE, +STE:SP:OCECarTER-87405944,1,"St-Maurice/M. (Mairie)",47.859165,6.825532,-1,0,SIN:SA:OCE87405944,Europe/Paris,,STE, +STE:SP:OCECarTER-87405951,1,"Darnieulles (Stat. Sce)",48.196879,6.36194,-1,0,SIN:SA:OCE87405951,Europe/Paris,,STE, +STE:SP:OCECarTER-87405969,1,"Dompaire Rte Mirecourt",48.225453,6.219898,-1,0,SIN:SA:OCE87405969,Europe/Paris,,STE, +STE:SP:OCECarTER-87405977,1,"Mattaincourt De Gaulle",48.279718,6.13666,-1,0,SIN:SA:OCE87174482,Europe/Paris,,STE, +STE:SP:OCECarTER-87405985,1,"Mattaincourt (MVM)",48.274722,6.136082,-1,0,SIN:SA:OCE87405985,Europe/Paris,,STE, +STE:SP:OCECarTER-87405993,1,"Mirecourt (Lycée Agric)",48.293601,6.132109,-1,0,SIN:SA:OCE87405993,Europe/Paris,,STE, +STE:SP:OCECarTER-87406009,1,"Audun-le-Roman (H. V).",27.140973,-3.404561,-1,0,SIN:SA:OCE87407098,Europe/Paris,,STE, +STE:SP:OCECarTER-87406090,1,"Eoiez-sur-Chiers",49.491365,5.504528,-1,0,SIN:SA:OCE87406090,Europe/Paris,,STE, +STE:SP:OCECarTER-87406595,1,"Flabeuville (Carrefour)",49.465921,5.54039,-1,0,SIN:SA:OCE87406595,Europe/Paris,,STE, +STE:SP:OCECarTER-87406603,1,"Longuyon (Collège)",49.434433,5.614433,-1,0,SIN:SA:OCE87406603,Europe/Paris,,STE, +STE:SP:OCECarTER-87406611,1,"Longuyon (Pont-2-Eaux)",49.448647,5.599512,-1,0,SIN:SA:OCE87406611,Europe/Paris,,STE, +STE:SP:OCECarTER-87406637,1,"Montmédy (Centre)",49.519333,5.366518,-1,0,SIN:SA:OCE87406637,Europe/Paris,,STE, +STE:SP:OCECarTER-87406645,1,"Vezin",49.482491,5.511099,-1,0,SIN:SA:OCE87406645,Europe/Paris,,STE, +STE:SP:OCECarTER-87406660,1,"Cons-la-Grandville Lot.",49.48806,5.708343,-1,0,SIN:SA:OCE87406660,Europe/Paris,,STE, +STE:SP:OCECarTER-87406678,1,"Cons-la-Grandville (Mo)",49.484085,5.701623,-1,0,SIN:SA:OCE87406678,Europe/Paris,,STE, +STE:SP:OCECarTER-87406686,1,"Lexy (Providence-Usine)",49.496033,5.738489,-1,0,SIN:SA:OCE87406686,Europe/Paris,,STE, +STE:SP:OCECarTER-87406694,1,"Lexy (Rue du Square)",49.495559,5.727871,-1,0,SIN:SA:OCE87406694,Europe/Paris,,STE, +STE:SP:OCECarTER-87406702,1,"Longuyon (La Machine)",49.453927,5.600428,-1,0,SIN:SA:OCE87406702,Europe/Paris,,STE, +STE:SP:OCECarTER-87406710,1,"Longwy-Espace-Bus",49.513643,5.768754,-1,0,SIN:SA:OCE87406710,Europe/Paris,,STE, +STE:SP:OCECarTER-87406728,1,"Bouzonville (Alzing)",49.289937,6.535229,-1,0,SIN:SA:OCE87406728,Europe/Paris,,STE, +STE:SP:OCECarTER-87406736,1,"Creutzwald G.R.",49.207778,6.697198,-1,0,SIN:SA:OCE87406736,Europe/Paris,,STE, +STE:SP:OCECarTER-87406744,1,"Distroff (Eglise)",49.332211,6.263052,-1,0,SIN:SA:OCE87406744,Europe/Paris,,STE, +STE:SP:OCECarTER-87406751,1,"Ebersviller (Centre)",49.276342,6.401979,-1,0,SIN:SA:OCE87406751,Europe/Paris,,STE, +STE:SP:OCECarTER-87406769,1,"Falck (Rue principale)",49.229234,6.633026,-1,0,SIN:SA:OCE87406769,Europe/Paris,,STE, +STE:SP:OCECarTER-87406777,1,"Hombourg (Chapelle)",49.295867,6.343513,-1,0,SIN:SA:OCE87406777,Europe/Paris,,STE, +STE:SP:OCECarTER-87406793,1,"Hombourg (Tilleuls)",49.298147,6.338807,-1,0,SIN:SA:OCE87406793,Europe/Paris,,STE, +STE:SP:OCECarTER-87406801,1,"Kédange (Eglise)",49.308319,6.338321,-1,0,SIN:SA:OCE87406801,Europe/Paris,,STE, +STE:SP:OCECarTER-87406819,1,"Kuntzig (Bibiche)",49.343594,6.244127,-1,0,SIN:SA:OCE87406819,Europe/Paris,,STE, +STE:SP:OCECarTER-87406827,1,"Kuntzig (Place liberté)",49.347195,6.237104,-1,0,SIN:SA:OCE87406827,Europe/Paris,,STE, +STE:SP:OCECarTER-87406835,1,"Metzervisse (Centre)",49.315561,6.285292,-1,0,SIN:SA:OCE87406835,Europe/Paris,,STE, +STE:SP:OCECarTER-87406843,1,"Metzervisse (Eglise)",49.314156,6.282061,-1,0,SIN:SA:OCE87406843,Europe/Paris,,STE, +STE:SP:OCECarTER-87406850,1,"Cocheren (Village)",49.146112,6.856983,-1,0,SIN:SA:OCE87406850,Europe/Paris,,STE, +STE:SP:OCECarTER-87406868,1,"Farébersviller (Cité)",49.117643,6.873189,-1,0,SIN:SA:OCE87406868,Europe/Paris,,STE, +STE:SP:OCECarTER-87406884,1,"Farébersviller (Moulin)",49.116121,6.865843,-1,0,SIN:SA:OCE87406884,Europe/Paris,,STE, +STE:SP:OCECarTER-87406900,1,"Sarreguemines (Poste)",49.113014,7.064099,-1,0,SIN:SA:OCE87406900,Europe/Paris,,STE, +STE:SP:OCECarTER-87406918,1,"Mertzwiller-(Moulin)",48.867389,7.681877,-1,0,SIN:SA:OCE87406918,Europe/Paris,,STE, +STE:SP:OCECarTER-87406926,1,"Philippsbourg (Lieschb)",48.991556,7.558148,-1,0,SIN:SA:OCE87406926,Europe/Paris,,STE, +STE:SP:OCECarTER-87406934,1,"Bitche (Rue de la Paix)",49.048881,7.428604,-1,0,SIN:SA:OCE87406934,Europe/Paris,,STE, +STE:SP:OCECarTER-87406959,1,"Enchenberg (Mairie)",49.014714,7.33751,-1,0,SIN:SA:OCE87406959,Europe/Paris,,STE, +STE:SP:OCECarTER-87406967,1,"Rohrbach-les-Mines (Ca)",49.046039,7.26521,-1,0,SIN:SA:OCE87406967,Europe/Paris,,STE, +STE:SP:OCECarTER-87406975,1,"Fénétrange (Gendarm.)",48.844293,7.019857,-1,0,SIN:SA:OCE87406975,Europe/Paris,,STE, +STE:SP:OCECarTER-87406983,1,"Fénétrange-Val-Fleuri",48.847804,7.019165,-1,0,SIN:SA:OCE87406983,Europe/Paris,,STE, +STE:SP:OCECarTER-87406991,1,"Sarralbe (Hôtel de Vill",49.001842,7.029747,-1,0,SIN:SA:OCE87406991,Europe/Paris,,STE, +STE:SP:OCECarTER-87407015,1,"Sarraltroff (Mairie)",48.773061,7.061993,-1,0,SIN:SA:OCE87407015,Europe/Paris,,STE, +STE:SP:OCECarTER-87407023,1,"Sarraltroff Ag. Postale",48.773886,7.061387,-1,0,SIN:SA:OCE87407023,Europe/Paris,,STE, +STE:SP:OCECarTER-87407031,1,"Sarrebourg-Méphisto",48.749792,7.06746,-1,0,SIN:SA:OCE87407031,Europe/Paris,,STE, +STE:SP:OCECarTER-87407049,1,"Avricourt (Café St Nic)",48.650525,6.806213,-1,0,SIN:SA:OCE87407049,Europe/Paris,,STE, +STE:SP:OCECarTER-87407056,1,"Avricourt (Rue de Lorr)",48.650093,6.812888,-1,0,SIN:SA:OCE87407056,Europe/Paris,,STE, +STE:SP:OCECarTER-87407064,1,"Igney (Centre)",48.633205,6.814248,-1,0,SIN:SA:OCE87407064,Europe/Paris,,STE, +STE:SP:OCECarTER-87407072,1,"Lunéville (Cité Scolai)",48.597499,6.508054,-1,0,SIN:SA:OCE87407072,Europe/Paris,,STE, +STE:SP:OCECarTER-87407098,1,"Réchicourt-le-Chateau c",27.140973,-3.404561,-1,0,SIN:SA:OCE87407098,Europe/Paris,,STE, +STE:SP:OCECarTER-87407106,1,"Sarrebourg (Verreries)",48.733041,7.042834,-1,0,SIN:SA:OCE87407106,Europe/Paris,,STE, +STE:SP:OCECarTER-87407114,1,"Bénestroff (Centre)",48.904418,6.758631,-1,0,SIN:SA:OCE87407114,Europe/Paris,,STE, +STE:SP:OCECarTER-87407122,1,"Fénétrange Carrefour Et",48.845551,7.014419,-1,0,SIN:SA:OCE87407122,Europe/Paris,,STE, +STE:SP:OCECarTER-87407130,1,"Gosselming (Poste)",48.790873,7.00431,-1,0,SIN:SA:OCE87407130,Europe/Paris,,STE, +STE:SP:OCECarTER-87407148,1,"Mittersheim (L'Escale)",48.860503,6.934555,-1,0,SIN:SA:OCE87407148,Europe/Paris,,STE, +STE:SP:OCECarTER-87407155,1,"Morhange (Pl. Républiq)",48.923919,6.635005,-1,0,SIN:SA:OCE87407155,Europe/Paris,,STE, +STE:SP:OCECarTER-87407171,1,"Morhange Jeanne d'Arc",48.93647,6.659272,-1,0,SIN:SA:OCE87192286,Europe/Paris,,STE, +STE:SP:OCECarTER-87407189,1,"Sarrebourg (Place Math)",48.736883,7.057191,-1,0,SIN:SA:OCE87407189,Europe/Paris,,STE, +STE:SP:OCECarTER-87407197,1,"Sarrebourg (Zone Indus)",48.748876,7.065824,-1,0,SIN:SA:OCE87407197,Europe/Paris,,STE, +STE:SP:OCECarTER-87407247,1,"Budange",49.276666,6.34471,-1,0,SIN:SA:OCE87407247,Europe/Paris,,STE, +STE:SP:OCECarTER-87407262,1,"Gundershoffen (cygne)",48.907556,7.658547,-1,0,SIN:SA:OCE87407262,Europe/Paris,,STE, +STE:SP:OCECarTER-87407270,1,"Niederbronn (Archéo)",48.947893,7.650638,-1,0,SIN:SA:OCE87407270,Europe/Paris,,STE, +STE:SP:OCECarTER-87407296,1,"Niederbronn (Usine)",48.956997,7.630661,-1,0,SIN:SA:OCE87407296,Europe/Paris,,STE, +STE:SP:OCECarTER-87407320,1,"Schweighouse-(Villa)",48.819469,7.742336,-1,0,SIN:SA:OCE87407320,Europe/Paris,,STE, +STE:SP:OCECarTER-87407338,1,"Diedendorff",48.877071,7.054134,-1,0,SIN:SA:OCE87407338,Europe/Paris,,STE, +STE:SP:OCECarTER-87407379,1,"Sarrewerden Lotissement",48.920775,7.08603,-1,0,SIN:SA:OCE87407379,Europe/Paris,,STE, +STE:SP:OCECarTER-87407403,1,"Gondrexange (Centre)",48.685181,6.926378,-1,0,SIN:SA:OCE87407403,Europe/Paris,,STE, +STE:SP:OCECarTER-87407411,1,"Remanvillers",47.900028,6.727834,-1,0,SIN:SA:OCE87407411,Europe/Paris,,STE, +STE:SP:OCECarTER-87409771,1,"Letra-Gabodière",45.961434,4.51648,-1,0,SIN:SA:OCE87409771,Europe/Paris,,STE, +STE:SP:OCECarTER-87411017,1,"Gare de Rouen-Rive-Droite",49.44903,1.094154,-1,0,SIN:SA:OCE87411017,Europe/Paris,,STE, +STE:SP:OCECarTER-87411454,1,"Gare de Montérolier-Buchy",49.603131,1.334709,-1,0,SIN:SA:OCE87411454,Europe/Paris,,STE, +STE:SP:OCECarTER-87411470,1,"Gare de Serqueux",49.631545,1.53934,-1,0,SIN:SA:OCE87411470,Europe/Paris,,STE, +STE:SP:OCECarTER-87413229,1,"Longeau",47.767175,5.309968,-1,0,SIN:SA:OCE87413229,Europe/Paris,,STE, +STE:SP:OCECarTER-87414011,1,"St-Louis57",48.718439,7.194233,-1,0,SIN:SA:OCE87414011,Europe/Paris,,STE, +STE:SP:OCECarTER-87417477,1,"Blesme-Centre",48.72555,4.776102,-1,0,SIN:SA:OCE87417477,Europe/Paris,,STE, +STE:SP:OCECarTER-87420208,1,"Dracy-St-Loup-Mairie",47.02331,4.33715,-1,0,SIN:SA:OCE87420208,Europe/Paris,,STE, +STE:SP:OCECarTER-87429761,1,"Auxon-Route-Nationale",48.109162,3.915543,-1,0,SIN:SA:OCE87429761,Europe/Paris,,STE, +STE:SP:OCECarTER-87438655,1,"Gray-Gare-Routière",47.447905,5.595839,-1,0,SIN:SA:OCE87438655,Europe/Paris,,STE, +STE:SP:OCECarTER-87458794,1,"Pont-de-Rupt",27.140973,-3.404561,-1,0,SIN:SA:OCE87458794,Europe/Paris,,STE, +STE:SP:OCECarTER-87458810,1,"Buzy-Village",49.171063,5.710099,-1,0,SIN:SA:OCE87458810,Europe/Paris,,STE, +STE:SP:OCECarTER-87458828,1,"Etain-Centre",49.213447,5.635142,-1,0,SIN:SA:OCE87458828,Europe/Paris,,STE, +STE:SP:OCECarTER-87458836,1,"Verdun-la-Tour-du-Champ",27.140973,-3.404561,-1,0,SIN:SA:OCE87458836,Europe/Paris,,STE, +STE:SP:OCECarTER-87458869,1,"Neufchateau-Lp",27.140973,-3.404561,-1,0,SIN:SA:OCE87405746,Europe/Paris,,STE, +STE:SP:OCECarTER-87463604,1,"Hommarting-Tilleuls",48.738813,7.145722,-1,0,SIN:SA:OCE87463604,Europe/Paris,,STE, +STE:SP:OCECarTER-87463612,1,"Guntzviller",48.710164,7.161549,-1,0,SIN:SA:OCE87463612,Europe/Paris,,STE, +STE:SP:OCECarTER-87463620,1,"Arzviller-Fontaines",48.720368,7.165954,-1,0,SIN:SA:OCE87463620,Europe/Paris,,STE, +STE:SP:OCECarTER-87463638,1,"St-Louis-57-Incliné",27.140973,-3.404561,-1,0,SIN:SA:OCE87117945,Europe/Paris,,STE, +STE:SP:OCECarTER-87475723,1,"Bard-le-Régulier",47.143871,4.313488,-1,0,SIN:SA:OCE87475723,Europe/Paris,,STE, +STE:SP:OCECarTER-87476747,1,"Luneville-LP",48.598876,6.492448,-1,0,SIN:SA:OCE87476747,Europe/Paris,,STE, +STE:SP:OCECarTER-87476788,1,"Gerbeviller-Foch",27.140973,-3.404561,-1,0,SIN:SA:OCE87476788,Europe/Paris,,STE, +STE:SP:OCECarTER-87476796,1,"Gérardmer-La-Mauselaine",27.140973,-3.404561,-1,0,SIN:SA:OCE87458836,Europe/Paris,,STE, +STE:SP:OCECarTER-87476804,1,"Gérardmer-Les-Bas-Rupt",27.140973,-3.404561,-1,0,SIN:SA:OCE87458794,Europe/Paris,,STE, +STE:SP:OCECarTER-87476846,1,"Remiremont-Pont",48.009076,6.613764,-1,0,SIN:SA:OCE87476846,Europe/Paris,,STE, +STE:SP:OCECarTER-87476853,1,"Remilly-Place-du-11-Nov",49.010793,6.397592,-1,0,SIN:SA:OCE87476853,Europe/Paris,,STE, +STE:SP:OCECarTER-87476861,1,"Diebling-Forestière",49.112001,6.933513,-1,0,SIN:SA:OCE87476861,Europe/Paris,,STE, +STE:SP:OCECarTER-87476879,1,"Fenetrange-Mairie",48.84574,7.016946,-1,0,SIN:SA:OCE87476879,Europe/Paris,,STE, +STE:SP:OCECarTER-87476887,1,"Romelfing-Rue-Europe",48.831934,7.020691,-1,0,SIN:SA:OCE87476887,Europe/Paris,,STE, +STE:SP:OCECarTER-87476911,1,"Romelfing-Eglise",48.94804,6.434623,-1,0,SIN:SA:OCE87476911,Europe/Paris,,STE, +STE:SP:OCECarTER-87476929,1,"Vatimont-Mairie",48.980021,6.464405,-1,0,SIN:SA:OCE87476929,Europe/Paris,,STE, +STE:SP:OCECarTER-87476937,1,"Yutz-St-Vitus",49.356074,6.1919,-1,0,SIN:SA:OCE87476937,Europe/Paris,,STE, +STE:SP:OCECarTER-87477158,1,"Merten-République",49.248913,6.667053,-1,0,SIN:SA:OCE87477158,Europe/Paris,,STE, +STE:SP:OCECarTER-87477562,1,"Berthelming-Mairie",48.816243,7.006662,-1,0,SIN:SA:OCE87477562,Europe/Paris,,STE, +STE:SP:OCECarTER-87477570,1,"Rehon-Poste",49.504192,5.754259,-1,0,SIN:SA:OCE87477570,Europe/Paris,,STE, +STE:SP:OCECarTER-87477588,1,"Longwy-Route-de-Metz",49.511939,5.762605,-1,0,SIN:SA:OCE87477588,Europe/Paris,,STE, +STE:SP:OCECarTER-87477620,1,"Sarrebourg-Abri-Phalsbo",48.737989,7.063118,-1,0,SIN:SA:OCE87477620,Europe/Paris,,STE, +STE:SP:OCECarTER-87477638,1,"Sarrebourg-LP-Messmer",48.736739,7.068721,-1,0,SIN:SA:OCE87477638,Europe/Paris,,STE, +STE:SP:OCECarTER-87477646,1,"Sarrebourg-Mairie",48.730495,7.05073,-1,0,SIN:SA:OCE87477646,Europe/Paris,,STE, +STE:SP:OCECarTER-87478503,1,"Autun-St-Jean",46.958275,4.301098,-1,0,SIN:SA:OCE87478503,Europe/Paris,,STE, +STE:SP:OCECarTER-87478628,1,"Cordesse-Igornay-Centre",47.037807,4.339743,-1,0,SIN:SA:OCE87478628,Europe/Paris,,STE, +STE:SP:OCECarTER-87478693,1,"Digoin-Lycée",46.477062,3.991897,-1,0,SIN:SA:OCE87478693,Europe/Paris,,STE, +STE:SP:OCECarTER-87478776,1,"Creusot-Lycée-Jean-Jaur",46.805076,4.41407,-1,0,SIN:SA:OCE87478776,Europe/Paris,,STE, +STE:SP:OCECarTER-87478784,1,"Le-Guidon",46.378786,4.249614,-1,0,SIN:SA:OCE87478784,Europe/Paris,,STE, +STE:SP:OCECarTER-87478792,1,"Saulieu-Place",47.28028,4.231286,-1,0,SIN:SA:OCE87478792,Europe/Paris,,STE, +STE:SP:OCECarTER-87478818,1,"Selongey-Ecole-Ménagère",47.5869,5.180004,-1,0,SIN:SA:OCE87478818,Europe/Paris,,STE, +STE:SP:OCECarTER-87478826,1,"Selongey-Patenée",47.588146,5.183862,-1,0,SIN:SA:OCE87478826,Europe/Paris,,STE, +STE:SP:OCECarTER-87478834,1,"Surmoulin",47.008141,4.320838,-1,0,SIN:SA:OCE87478834,Europe/Paris,,STE, +STE:SP:OCECarTER-87478842,1,"Til-Chatel-Poste",47.518701,5.178274,-1,0,SIN:SA:OCE87478842,Europe/Paris,,STE, +STE:SP:OCECarTER-87478859,1,"Til-Chatel-Perdrixiere",47.517309,5.169683,-1,0,SIN:SA:OCE87478859,Europe/Paris,,STE, +STE:SP:OCECarTER-87484576,1,"Lamure-Collège",46.052071,4.492879,-1,0,SIN:SA:OCE87484576,Europe/Paris,,STE, +STE:SP:OCECarTER-87484584,1,"Poule-Mairie",46.148101,4.443914,-1,0,SIN:SA:OCE87484584,Europe/Paris,,STE, +STE:SP:OCECarTER-87497222,1,"Chantenay-Imbert-Bourg",46.733078,3.183144,-1,0,SIN:SA:OCE87497222,Europe/Paris,,STE, +STE:SP:OCECarTER-87499863,1,"Cosne-sur-Loire-Sud",27.140973,-3.404561,-1,0,SIN:SA:OCE87499863,Europe/Paris,,STE, +STE:SP:OCECarTER-87499897,1,"Decize-Café-Bel-Aire",46.828363,3.479863,-1,0,SIN:SA:OCE87499897,Europe/Paris,,STE, +STE:SP:OCECarTER-87499905,1,"Decize-Lycée",46.828333,3.447208,-1,0,SIN:SA:OCE87499905,Europe/Paris,,STE, +STE:SP:OCECarTER-87499913,1,"Decize-Ville",46.831463,3.465731,-1,0,SIN:SA:OCE87499913,Europe/Paris,,STE, +STE:SP:OCECarTER-87499939,1,"Imphy-le-Grand-Vernay",46.91117,3.279444,-1,0,SIN:SA:OCE87499939,Europe/Paris,,STE, +STE:SP:OCECarTER-87499954,1,"Imphy-Square-Lamartine",46.926083,3.264498,-1,0,SIN:SA:OCE87499954,Europe/Paris,,STE, +STE:SP:OCECarTER-87500082,1,"Luzy-Ville",46.790502,3.968988,-1,0,SIN:SA:OCE87500082,Europe/Paris,,STE, +STE:SP:OCECarTER-87500793,1,"Nevers-Mouesse-ANPE",46.989765,3.169011,-1,0,SIN:SA:OCE87500793,Europe/Paris,,STE, +STE:SP:OCECarTER-87500876,1,"St-Ouen-Arrêt-Cars",46.884636,3.304477,-1,0,SIN:SA:OCE87500876,Europe/Paris,,STE, +STE:SP:OCECarTER-87500900,1,"St-Ouen-le-Port-des-Boi",46.89561,3.295093,-1,0,SIN:SA:OCE87500900,Europe/Paris,,STE, +STE:SP:OCECarTER-87500934,1,"Sougy-BIF-N81-D262",46.848841,3.389692,-1,0,SIN:SA:OCE87500934,Europe/Paris,,STE, +STE:SP:OCECarTER-87500991,1,"St-Léger-Vignes-Valette",46.841156,3.442397,-1,0,SIN:SA:OCE87500991,Europe/Paris,,STE, +STE:SP:OCECarTER-87501023,1,"Pierre-Le-Moutier-Monum",46.791381,3.11839,-1,0,SIN:SA:OCE87501023,Europe/Paris,,STE, +STE:SP:OCECarTER-87501049,1,"Tannay-Place-Eglise",47.367486,3.592235,-1,0,SIN:SA:OCE87501049,Europe/Paris,,STE, +STE:SP:OCECarTER-87515601,1,"Longeville-Sur-Mogne-Ma",27.140973,-3.404561,-1,0,SIN:SA:OCE87499863,Europe/Paris,,STE, +STE:SP:OCECarTER-87524843,1,"Bresse-Honeck (la)",27.140973,-3.404561,-1,0,SIN:SA:OCE87458836,Europe/Paris,,STE, +STE:SP:OCECarTER-87524850,1,"Bresse-Claudel (la)",27.140973,-3.404561,-1,0,SIN:SA:OCE87458836,Europe/Paris,,STE, +STE:SP:OCECarTER-87524868,1,"Bresse-Le-Lispach (la)",27.140973,-3.404561,-1,0,SIN:SA:OCE87407098,Europe/Paris,,STE, +STE:SP:OCECarTER-87524876,1,"Villers-le-Rond",49.46432,5.489628,-1,0,SIN:SA:OCE87524876,Europe/Paris,,STE, +STE:SP:OCECarTER-87524884,1,"Jean-les-Longuyon (St)",49.453057,5.463672,-1,0,SIN:SA:OCE87524884,Europe/Paris,,STE, +STE:SP:OCECarTER-87533547,1,"Béard-Bourg",46.86315,3.326719,-1,0,SIN:SA:OCE87533547,Europe/Paris,,STE, +STE:SP:OCECarTER-87536367,1,"Santenay-Haut",46.910343,4.68335,-1,0,SIN:SA:OCE87536367,Europe/Paris,,STE, +STE:SP:OCECarTER-87536375,1,"Nolay-Place-Carnot",46.951639,4.634732,-1,0,SIN:SA:OCE87536375,Europe/Paris,,STE, +STE:SP:OCECarTER-87536383,1,"Saisy",46.96413,4.548697,-1,0,SIN:SA:OCE87536383,Europe/Paris,,STE, +STE:SP:OCECarTER-87536391,1,"Epinac-la-Garenne",46.985331,4.53192,-1,0,SIN:SA:OCE87536391,Europe/Paris,,STE, +STE:SP:OCECarTER-87536409,1,"Epinac-Hauts-des-Champs",46.988423,4.524076,-1,0,SIN:SA:OCE87536409,Europe/Paris,,STE, +STE:SP:OCECarTER-87536417,1,"Epinac-Quartier-Dinay",46.994656,4.504836,-1,0,SIN:SA:OCE87536417,Europe/Paris,,STE, +STE:SP:OCECarTER-87536425,1,"Autun-Lycée-Technique",46.938386,4.293763,-1,0,STE:SA:OCE87536425,Europe/Paris,,STE, +STE:SP:OCECarTER-87536441,1,"Chatillon-Joffre",47.856553,4.570689,-1,0,SIN:SA:OCE87536441,Europe/Paris,,STE, +STE:SP:OCECarTER-87541912,1,"Chatillon-Lycée",47.865291,4.57436,-1,0,SIN:SA:OCE87541912,Europe/Paris,,STE, +STE:SP:OCECarTER-87552141,1,"Ribeauville-Gare-Routiè",48.192213,7.325772,-1,0,SIN:SA:OCE87552141,Europe/Paris,,STE, +STE:SP:OCECarTER-87559070,1,"Gare de Nevers-Le-Banlay",47.006817,3.163619,-1,0,SIN:SA:OCE87559070,Europe/Paris,,STE, +STE:SP:OCECarTER-87564781,1,"Bazoches-OT",47.377287,3.784524,-1,0,SIN:SA:OCE87564781,Europe/Paris,,STE, +STE:SP:OCECarTER-87564799,1,"Père (st)-Place-Mairie",47.459372,3.764918,-1,0,SIN:SA:OCE87564799,Europe/Paris,,STE, +STE:SP:OCECarTER-87576207,1,"Gare de Bourges",47.094094,2.394226,-1,0,SIN:SA:OCE87576207,Europe/Paris,,STE, +STE:SP:OCECarTER-87576405,1,"Gare de St-Germain-du-Puy",47.09629,2.484255,-1,0,SIN:SA:OCE87576405,Europe/Paris,,STE, +STE:SP:OCECarTER-87576439,1,"Gare de Avord",47.034779,2.652604,-1,0,SIN:SA:OCE87576439,Europe/Paris,,STE, +STE:SP:OCECarTER-87576447,1,"Gare de Bengy",47.000396,2.749106,-1,0,SIN:SA:OCE87576447,Europe/Paris,,STE, +STE:SP:OCECarTER-87576454,1,"Gare de Nérondes",46.999796,2.821991,-1,0,SIN:SA:OCE87576454,Europe/Paris,,STE, +STE:SP:OCECarTER-87576470,1,"Gare de La Guerche-sur-l'Aubois",46.94785,2.948455,-1,0,SIN:SA:OCE87576470,Europe/Paris,,STE, +STE:SP:OCECarTER-87588954,1,"Laon-Gare-Routière-Poma",49.569728,3.625831,-1,0,SIN:SA:OCE87588954,Europe/Paris,,STE, +STE:SP:OCECarTER-87595983,1,"La-Walck-Monument",48.848374,7.612243,-1,0,SIN:SA:OCE87595983,Europe/Paris,,STE, +STE:SP:OCECarTER-87598219,1,"Gare de Le Locle-Col-des-Roches",47.04989,6.725831,-1,0,SIN:SA:OCE87598219,Europe/Paris,,STE, +STE:SP:OCECarTER-87598227,1,"Gare de Le Locle.",47.057708,6.746141,-1,0,SIN:SA:OCE87598227,Europe/Paris,,STE, +STE:SP:OCECarTER-87599753,1,"Nevers-Petit-Canal",46.989406,3.187307,-1,0,SIN:SA:OCE87599753,Europe/Paris,,STE, +STE:SP:OCECarTER-87599779,1,"Nevers-Place-Résistance",46.992527,3.160205,-1,0,SIN:SA:OCE87599779,Europe/Paris,,STE, +STE:SP:OCECarTER-87635771,1,"Lemberg-Mairie",27.140973,-3.404561,-1,0,SIN:SA:OCE87635771,Europe/Paris,,STE, +STE:SP:OCECarTER-87635789,1,"Uxegney-Bois-L'-Abbé",27.140973,-3.404561,-1,0,SIN:SA:OCE87458836,Europe/Paris,,STE, +STE:SP:OCECarTER-87635797,1,"Uxegney-La-Ménère",27.140973,-3.404561,-1,0,SIN:SA:OCE87458836,Europe/Paris,,STE, +STE:SP:OCECarTER-87635805,1,"Cremanvillers",48.009221,6.716263,-1,0,SIN:SA:OCE87635805,Europe/Paris,,STE, +STE:SP:OCECarTER-87635821,1,"Koenigsmacker-Centre",49.396543,6.279747,-1,0,SIN:SA:OCE87635821,Europe/Paris,,STE, +STE:SP:OCECarTER-87635847,1,"Sierck-Pl-Morbach",49.441553,6.357475,-1,0,SIN:SA:OCE87635847,Europe/Paris,,STE, +STE:SP:OCECarTER-87635854,1,"Apach-Eglise",49.460193,6.374297,-1,0,SIN:SA:OCE87635854,Europe/Paris,,STE, +STE:SP:OCECarTER-87635862,1,"Les-Islettes-Centre",27.140973,-3.404561,-1,0,SIN:SA:OCE87635862,Europe/Paris,,STE, +STE:SP:OCECarTER-87635870,1,"Clermont-En-Argonne-Cen",49.105825,5.070793,-1,0,SIN:SA:OCE87635870,Europe/Paris,,STE, +STE:SP:OCECarTER-87635920,1,"Suippes-Camp",49.12225,4.544656,-1,0,SIN:SA:OCE87635920,Europe/Paris,,STE, +STE:SP:OCECarTER-87635938,1,"Ste-Ménéhould-Médiathèq",49.092128,4.897874,-1,0,SIN:SA:OCE87635938,Europe/Paris,,STE, +STE:SP:OCECarTER-87639922,1,"Minversheim-Rue-Princip",48.784842,7.620531,-1,0,SIN:SA:OCE87639922,Europe/Paris,,STE, +STE:SP:OCECarTER-87639930,1,"Alteckendorf-Eckendorf",48.78972,7.601546,-1,0,SIN:SA:OCE87639930,Europe/Paris,,STE, +STE:SP:OCECarTER-87639948,1,"Alteckendorf-Mairie",48.792845,7.594651,-1,0,SIN:SA:OCE87639948,Europe/Paris,,STE, +STE:SP:OCECarTER-87639955,1,"Alteckendorf-Abri",48.794558,7.589739,-1,0,SIN:SA:OCE87639955,Europe/Paris,,STE, +STE:SP:OCECarTER-87639963,1,"Ettendorf-Pl,-de-L'ecol",48.813023,7.58344,-1,0,SIN:SA:OCE87639963,Europe/Paris,,STE, +STE:SP:OCECarTER-87639971,1,"Ettendorf-(Angle-Pont)",48.812193,7.58101,-1,0,SIN:SA:OCE87639971,Europe/Paris,,STE, +STE:SP:OCECarTER-87639989,1,"Hattmatt-S.-Polyvalente",48.792188,7.426915,-1,0,SIN:SA:OCE87639989,Europe/Paris,,STE, +STE:SP:OCECarTER-87639997,1,"Bouxwiller-Babenhausen",48.829076,7.483687,-1,0,SIN:SA:OCE87639997,Europe/Paris,,STE, +STE:SP:OCECarTER-87640144,1,"Suippes-Garage",49.128118,4.525608,-1,0,SIN:SA:OCE87640144,Europe/Paris,,STE, +STE:SP:OCECarTER-87640375,1,"Sélestat-(Schweisguth)",48.261515,7.450126,-1,0,SIN:SA:OCE87640375,Europe/Paris,,STE, +STE:SP:OCECarTER-87640383,1,"Selestat-(Koeberlé)",48.263278,7.455358,-1,0,SIN:SA:OCE87640383,Europe/Paris,,STE, +STE:SP:OCECarTER-87640391,1,"Sèlestat-(Schwilgué)",48.253908,7.4479,-1,0,SIN:SA:OCE87640391,Europe/Paris,,STE, +STE:SP:OCECarTER-87640409,1,"Sélestat-R-S-Marie-/-Ms",48.264183,7.439739,-1,0,SIN:SA:OCE87640409,Europe/Paris,,STE, +STE:SP:OCECarTER-87640441,1,"Châtenois-(Gare)",48.276127,7.401678,-1,0,SIN:SA:OCE87640441,Europe/Paris,,STE, +STE:SP:OCECarTER-87640458,1,"Châtenois-V.-Villé-Gare",48.283074,7.381952,-1,0,SIN:SA:OCE87640458,Europe/Paris,,STE, +STE:SP:OCECarTER-87640466,1,"La-Vancelle-(hurst)",48.278906,7.342232,-1,0,SIN:SA:OCE87640466,Europe/Paris,,STE, +STE:SP:OCECarTER-87640474,1,"La-Vancelle-(Centre)",48.284354,7.303418,-1,0,SIN:SA:OCE87640474,Europe/Paris,,STE, +STE:SP:OCECarTER-87640482,1,"Lièpvre-(Rte-Vancelle)",48.271914,7.289054,-1,0,SIN:SA:OCE87640482,Europe/Paris,,STE, +STE:SP:OCECarTER-87640490,1,"Lièpvre-Bois-Abesse-ZI",48.275571,7.313625,-1,0,SIN:SA:OCE87640490,Europe/Paris,,STE, +STE:SP:OCECarTER-87640789,1,"Lièpvre-(Centre)",48.270852,7.280695,-1,0,SIN:SA:OCE87640789,Europe/Paris,,STE, +STE:SP:OCECarTER-87640797,1,"Liepvre-(-Ecoles-)",48.271433,7.281006,-1,0,SIN:SA:OCE87640797,Europe/Paris,,STE, +STE:SP:OCECarTER-87640805,1,"Rombach-Le-F-(Pl-Fêtes)",48.281957,7.264452,-1,0,SIN:SA:OCE87640805,Europe/Paris,,STE, +STE:SP:OCECarTER-87640813,1,"Rombach-Le-F-(Scierie)",48.278908,7.270563,-1,0,SIN:SA:OCE87640813,Europe/Paris,,STE, +STE:SP:OCECarTER-87640821,1,"Lièpvre-R.-Vieux-Moulin",48.277514,7.27695,-1,0,SIN:SA:OCE87640821,Europe/Paris,,STE, +STE:SP:OCECarTER-87640839,1,"Liepvre-(-R.-GUTH-)",48.270072,7.269448,-1,0,SIN:SA:OCE87640839,Europe/Paris,,STE, +STE:SP:OCECarTER-87640847,1,"Liepvre-(-Musloch-)",48.267648,7.248574,-1,0,SIN:SA:OCE87640847,Europe/Paris,,STE, +STE:SP:OCECarTER-87640854,1,"Ste-Croix/Mines-Stimbac",48.264712,7.233875,-1,0,SIN:SA:OCE87640854,Europe/Paris,,STE, +STE:SP:OCECarTER-87640870,1,"Ste-Croix/Mines-Sq-de-G",48.261128,7.218902,-1,0,SIN:SA:OCE87640870,Europe/Paris,,STE, +STE:SP:OCECarTER-87640912,1,"Ste-Marie-/-Ms-S.Techni",48.252235,7.195008,-1,0,SIN:SA:OCE87640912,Europe/Paris,,STE, +STE:SP:OCECarTER-87640920,1,"Ste-Marie-/-Ms-(Musées)",48.24888,7.18833,-1,0,SIN:SA:OCE87640920,Europe/Paris,,STE, +STE:SP:OCECarTER-87640938,1,"Ste-Marie-/-Mines-Maire",48.245573,7.182239,-1,0,SIN:SA:OCE87640938,Europe/Paris,,STE, +STE:SP:OCECarTER-87640946,1,"Ste-Marie-/-Ms-Pl-.CdG",48.243625,7.176394,-1,0,SIN:SA:OCE87640946,Europe/Paris,,STE, +STE:SP:OCECarTER-87640953,1,"Ste-Marie/-Ms-(-Théâtre",48.243614,7.18083,-1,0,SIN:SA:OCE87640953,Europe/Paris,,STE, +STE:SP:OCECarTER-87640961,1,"Ste-Marie-/-Ms-(-Super-",48.248629,7.189184,-1,0,SIN:SA:OCE87640961,Europe/Paris,,STE, +STE:SP:OCECarTER-87640979,1,"Raves-(Ancienne-Gare)",48.271957,7.049732,-1,0,SIN:SA:OCE87640979,Europe/Paris,,STE, +STE:SP:OCECarTER-87640987,1,"Remomeix-(Abri)",48.265016,6.993338,-1,0,SIN:SA:OCE87640987,Europe/Paris,,STE, +STE:SP:OCECarTER-87640995,1,"Ste-Marguerite-Village",48.268627,6.980842,-1,0,SIN:SA:OCE87640995,Europe/Paris,,STE, +STE:SP:OCECarTER-87641027,1,"Ste-Marguerite-(Cora)",48.273744,6.967574,-1,0,SIN:SA:OCE87641027,Europe/Paris,,STE, +STE:SP:OCECarTER-87641332,1,"Saint-Die-Rue-D'Alsace",48.279999,6.95555,-1,0,SIN:SA:OCE87641332,Europe/Paris,,STE, +STE:SP:OCECarTER-87641688,1,"Cernay-(Lycée)",47.80334,7.182793,-1,0,SIN:SA:OCE87641688,Europe/Paris,,STE, +STE:SP:OCECarTER-87641696,1,"Cernay-(St André)",47.791122,7.155841,-1,0,SIN:SA:OCE87641696,Europe/Paris,,STE, +STE:SP:OCECarTER-87641902,1,"Aspach-le-Haut-D103/34",47.776125,7.134103,-1,0,SIN:SA:OCE87641902,Europe/Paris,,STE, +STE:SP:OCECarTER-87641910,1,"Aspach-le-Haut-(gare)",47.768902,7.141682,-1,0,SIN:SA:OCE87641910,Europe/Paris,,STE, +STE:SP:OCECarTER-87641928,1,"Aspach-Bs-Malakov",47.761124,7.153069,-1,0,SIN:SA:OCE87641928,Europe/Paris,,STE, +STE:SP:OCECarTER-87641936,1,"Burnhaupt-Ht-Gendarmeri",47.740005,7.144724,-1,0,SIN:SA:OCE87641936,Europe/Paris,,STE, +STE:SP:OCECarTER-87641944,1,"Burnhaupt-Ht- Café/Gare",47.742231,7.134452,-1,0,SIN:SA:OCE87641944,Europe/Paris,,STE, +STE:SP:OCECarTER-87641951,1,"Guewenheim-Café-2-clés",47.752579,7.09329,-1,0,SIN:SA:OCE87641951,Europe/Paris,,STE, +STE:SP:OCECarTER-87641969,1,"Sentheim-M.-de-Repos",47.75588,7.056468,-1,0,SIN:SA:OCE87641969,Europe/Paris,,STE, +STE:SP:OCECarTER-87641977,1,"Sentheim-(Eglise)",47.75612,7.051666,-1,0,SIN:SA:OCE87641977,Europe/Paris,,STE, +STE:SP:OCECarTER-87641985,1,"Sentheim-Gge-Renault",47.757227,7.043013,-1,0,SIN:SA:OCE87641985,Europe/Paris,,STE, +STE:SP:OCECarTER-87641993,1,"Lauw-(Cimetère)",47.757788,7.025292,-1,0,SIN:SA:OCE87641993,Europe/Paris,,STE, +STE:SP:OCECarTER-87642009,1,"Lauw-numéro-20",47.756948,7.017508,-1,0,SIN:SA:OCE87642009,Europe/Paris,,STE, +STE:SP:OCECarTER-87642017,1,"Masevaux-Café-Sports",47.779449,6.99223,-1,0,SIN:SA:OCE87642017,Europe/Paris,,STE, +STE:SP:OCECarTER-87642025,1,"Masevaux-(Pharmacie)",47.77473,6.99918,-1,0,SIN:SA:OCE87642025,Europe/Paris,,STE, +STE:SP:OCECarTER-87642033,1,"Masevaux-Off.-Tourisme",47.772674,6.996058,-1,0,SIN:SA:OCE87642033,Europe/Paris,,STE, +STE:SP:OCECarTER-87642041,1,"Sickert-(Abri)",47.781121,6.978342,-1,0,SIN:SA:OCE87642041,Europe/Paris,,STE, +STE:SP:OCECarTER-87642058,1,"Niederbruck-Centre",47.784176,6.968344,-1,0,SIN:SA:OCE87642058,Europe/Paris,,STE, +STE:SP:OCECarTER-87642066,1,"Kirchberg-(Lotissement)",47.788618,6.964722,-1,0,SIN:SA:OCE87642066,Europe/Paris,,STE, +STE:SP:OCECarTER-87642074,1,"Kirchberg-(Café-Rose)",47.791681,6.962223,-1,0,SIN:SA:OCE87642074,Europe/Paris,,STE, +STE:SP:OCECarTER-87642116,1,"Wegscheid-(Numéro-64)",47.798621,6.960556,-1,0,SIN:SA:OCE87642116,Europe/Paris,,STE, +STE:SP:OCECarTER-87642124,1,"Oberbruck-(Rest.Ast)",47.807786,6.943892,-1,0,SIN:SA:OCE87642124,Europe/Paris,,STE, +STE:SP:OCECarTER-87642132,1,"Dolleren-(Mairie)",47.805839,6.932503,-1,0,SIN:SA:OCE87642132,Europe/Paris,,STE, +STE:SP:OCECarTER-87642140,1,"Sewen-(11-Gd-Rue)",47.80668,6.911113,-1,0,SIN:SA:OCE87642140,Europe/Paris,,STE, +STE:SP:OCECarTER-87642157,1,"Sewen-(Eglise)",47.807233,6.90529,-1,0,SIN:SA:OCE87642157,Europe/Paris,,STE, +STE:SP:OCECarTER-87642165,1,"Hattmatt-(Mairie)",48.79064,7.422674,-1,0,SIN:SA:OCE87642165,Europe/Paris,,STE, +STE:SP:OCECarTER-87642173,1,"Steinbourg-Ernolsheiml",48.773232,7.409793,-1,0,SIN:SA:OCE87642173,Europe/Paris,,STE, +STE:SP:OCECarTER-87642181,1,"Steinbourg-(Mairie)",48.769393,7.413206,-1,0,SIN:SA:OCE87642181,Europe/Paris,,STE, +STE:SP:OCECarTER-87642199,1,"Steinbourg-Rte-Saverne",48.761334,7.414407,-1,0,SIN:SA:OCE87642199,Europe/Paris,,STE, +STE:SP:OCECarTER-87642207,1,"Monswiller-(Zornhoff)",48.752737,7.383054,-1,0,SIN:SA:OCE87642207,Europe/Paris,,STE, +STE:SP:OCECarTER-87642215,1,"Monswiller-(Rue-Haute)",48.754682,7.376692,-1,0,SIN:SA:OCE87642215,Europe/Paris,,STE, +STE:SP:OCECarTER-87642223,1,"Saverne-(Lycée-Verne)",48.735126,7.374412,-1,0,SIN:SA:OCE87642223,Europe/Paris,,STE, +STE:SP:OCECarTER-87642231,1,"Saverne-(Lycée-Sources)",48.735133,7.366189,-1,0,SIN:SA:OCE87642231,Europe/Paris,,STE, +STE:SP:OCECarTER-87642249,1,"Saverne-(Pl.-Dragons)",48.739777,7.361791,-1,0,SIN:SA:OCE87642249,Europe/Paris,,STE, +STE:SP:OCECarTER-87642256,1,"Saverne-(Ht-Barr)",48.731543,7.352267,-1,0,SIN:SA:OCE87642256,Europe/Paris,,STE, +STE:SP:OCECarTER-87642264,1,"Dossenheim-(Mairie)",48.805222,7.402438,-1,0,SIN:SA:OCE87642264,Europe/Paris,,STE, +STE:SP:OCECarTER-87642272,1,"Dossenheim-Lotissement",48.807521,7.402158,-1,0,SIN:SA:OCE87642272,Europe/Paris,,STE, +STE:SP:OCECarTER-87642280,1,"Neuwiller-(Pharmacie)",48.823476,7.402694,-1,0,SIN:SA:OCE87642280,Europe/Paris,,STE, +STE:SP:OCECarTER-87642298,1,"Neuwiller-R.-Bouxwiller",48.822911,7.407072,-1,0,SIN:SA:OCE87642298,Europe/Paris,,STE, +STE:SP:OCECarTER-87642306,1,"Bouxwiller-Schattenmann",48.826399,7.478933,-1,0,SIN:SA:OCE87642306,Europe/Paris,,STE, +STE:SP:OCECarTER-87642314,1,"Bouxwiller-Centre-Ville",48.82747,7.482913,-1,0,SIN:SA:OCE87642314,Europe/Paris,,STE, +STE:SP:OCECarTER-87642330,1,"Menchhoffen-(Abri)",48.859548,7.494659,-1,0,SIN:SA:OCE87642330,Europe/Paris,,STE, +STE:SP:OCECarTER-87642348,1,"Wimmenau-(D919 R/Gar)",48.910054,7.419956,-1,0,SIN:SA:OCE87642348,Europe/Paris,,STE, +STE:SP:OCECarTER-87642355,1,"Wingen-sur-Moder-Mairie",48.922868,7.370993,-1,0,SIN:SA:OCE87642355,Europe/Paris,,STE, +STE:SP:OCECarTER-87642363,1,"Rosteig-Mon.-Aux-Morts",48.932877,7.342485,-1,0,SIN:SA:OCE87642363,Europe/Paris,,STE, +STE:SP:OCECarTER-87642371,1,"Col-De-Puberg",48.91702,7.318393,-1,0,SIN:SA:OCE87642371,Europe/Paris,,STE, +STE:SP:OCECarTER-87642389,1,"Frohmuhl- (Lavoir)",48.907902,7.281136,-1,0,SIN:SA:OCE87642389,Europe/Paris,,STE, +STE:SP:OCECarTER-87642801,1,"Bitche-Quartier-Driant",49.05497,7.456169,-1,0,SIN:SA:OCE87642801,Europe/Paris,,STE, +STE:SP:OCECarTER-87643197,1,"Suippes-Ferme",27.140973,-3.404561,-1,0,SIN:SA:OCE87643197,Europe/Paris,,STE, +STE:SP:OCECarTER-87643403,1,"Cigoland",48.256317,7.419759,-1,0,SIN:SA:OCE87643403,Europe/Paris,,STE, +STE:SP:OCECarTER-87643411,1,"Kintzheim-Mairie",48.254457,7.39501,-1,0,SIN:SA:OCE87643411,Europe/Paris,,STE, +STE:SP:OCECarTER-87643429,1,"Orschwiller-Chapelle",48.241122,7.383904,-1,0,SIN:SA:OCE87643429,Europe/Paris,,STE, +STE:SP:OCECarTER-87643437,1,"St-Hippolyte-Hot-Munsch",48.23139,7.371127,-1,0,SIN:SA:OCE87643437,Europe/Paris,,STE, +STE:SP:OCECarTER-87643445,1,"St-Hippolyte-Parc-Walte",48.232232,7.366407,-1,0,SIN:SA:OCE87643445,Europe/Paris,,STE, +STE:SP:OCECarTER-87643452,1,"Rorschwihr-Mairie",48.217515,7.363338,-1,0,SIN:SA:OCE87643452,Europe/Paris,,STE, +STE:SP:OCECarTER-87643460,1,"Bergheim-Porte-Haute",48.205571,7.358622,-1,0,SIN:SA:OCE87643460,Europe/Paris,,STE, +STE:SP:OCECarTER-87643882,1,"St-Satur-Fontenay",47.33879,2.83871,-1,0,SIN:SA:OCE87117945,Europe/Paris,,STE, +STE:SP:OCECarTER-87643890,1,"Bannay-Hautes-De-Bussy",47.385935,2.886173,-1,0,SIN:SA:OCE87643890,Europe/Paris,,STE, +STE:SP:OCECarTER-87643932,1,"Sancerre-Porte-Cesar",47.333641,2.837524,-1,0,SIN:SA:OCE87643932,Europe/Paris,,STE, +STE:SP:OCECarTER-87654384,1,"Lichtenberg-(Eglise).",48.921189,7.481754,-1,0,SIN:SA:OCE87654384,Europe/Paris,,STE, +STE:SP:OCECarTER-87654392,1,"Lichtenberg-(Picardie)",48.925384,7.479069,-1,0,SIN:SA:OCE87654392,Europe/Paris,,STE, +STE:SP:OCECarTER-87654442,1,"Reipertswiller-SP.",48.933253,7.464091,-1,0,SIN:SA:OCE87654442,Europe/Paris,,STE, +STE:SP:OCECarTER-87654467,1,"Wimmenau-(Centre).",48.910843,7.421318,-1,0,SIN:SA:OCE87654467,Europe/Paris,,STE, +STE:SP:OCECarTER-87654475,1,"Rouffach-(CHS)",47.950568,7.29112,-1,0,SIN:SA:OCE87654475,Europe/Paris,,STE, +STE:SP:OCECarTER-87654541,1,"Merxheim-(Pl.-CDG)",47.910552,7.292778,-1,0,SIN:SA:OCE87654541,Europe/Paris,,STE, +STE:SP:OCECarTER-87654558,1,"Illfurth-Croisement-Gar",47.674592,6.924543,-1,0,SIN:SA:OCE87654558,Europe/Paris,,STE, +STE:SP:OCECarTER-87654574,1,"Zillisheim-(Mohn)",47.693802,7.2942,-1,0,SIN:SA:OCE87654574,Europe/Paris,,STE, +STE:SP:OCECarTER-87654590,1,"Stephansfeld-(Hopital).",48.717009,7.706155,-1,0,SIN:SA:OCE87654590,Europe/Paris,,STE, +STE:SP:OCECarTER-87654673,1,"Brumath-(Mairie).",48.730887,7.708653,-1,0,SIN:SA:OCE87654673,Europe/Paris,,STE, +STE:SP:OCECarTER-87658716,1,"Schwindratzheim-Leclerc",48.754098,7.600003,-1,0,SIN:SA:OCE87658716,Europe/Paris,,STE, +STE:SP:OCECarTER-87658740,1,"Wilwisheim-(Hte Montée)",48.747946,7.506738,-1,0,SIN:SA:OCE87658740,Europe/Paris,,STE, +STE:SP:OCECarTER-87658849,1,"Pfaffenhoffen-(Mairie).",48.844897,7.610811,-1,0,SIN:SA:OCE87658849,Europe/Paris,,STE, +STE:SP:OCECarTER-87658856,1,"Adamswiller Lot. forêt.",48.905629,7.208236,-1,0,SIN:SA:OCE87658856,Europe/Paris,,STE, +STE:SP:OCECarTER-87658922,1,"Adamswiller-(Mairie).",48.903847,7.201171,-1,0,SIN:SA:OCE87658922,Europe/Paris,,STE, +STE:SP:OCECarTER-87658930,1,"Bischheim-Arrêt-CTS-R.G",48.363915,7.45301,-1,0,SIN:SA:OCE87658930,Europe/Paris,,STE, +STE:SP:OCECarTER-87658948,1,"Kilstett-Rue-de-la-Gare",48.679219,7.854927,-1,0,SIN:SA:OCE87658948,Europe/Paris,,STE, +STE:SP:OCECarTER-87659094,1,"Gerbeviller-Barbe",27.140973,-3.404561,-1,0,SIN:SA:OCE87476788,Europe/Paris,,STE, +STE:SP:OCECarTER-87659631,1,"Bouverans-Halte-Routier",27.140973,-3.404561,-1,0,SIN:SA:OCE87659631,Europe/Paris,,STE, +STE:SP:OCECarTER-87659649,1,"Domblans-Halte-Routier.",46.763588,5.597361,-1,0,SIN:SA:OCE87659649,Europe/Paris,,STE, +STE:SP:OCECarTER-87659656,1,"Buvilly-Halte-Routiere.",46.869346,5.716556,-1,0,SIN:SA:OCE87659656,Europe/Paris,,STE, +STE:SP:OCECarTER-87659664,1,"Dompierre-Halte-Rout.",27.140973,-3.404561,-1,0,SIN:SA:OCE87659631,Europe/Paris,,STE, +STE:SP:OCECarTER-87659680,1,"Marnoz-Halte-Routiere.",27.140973,-3.404561,-1,0,SIN:SA:OCE87659631,Europe/Paris,,STE, +STE:SP:OCECarTER-87659706,1,"Pagnoz-Halte-Routiere.",27.140973,-3.404561,-1,0,SIN:SA:OCE87659631,Europe/Paris,,STE, +STE:SP:OCECarTER-87659714,1,"Saulx-Halte-Routiere",47.695363,6.278552,-1,0,SIN:SA:OCE87659714,Europe/Paris,,STE, +STE:SP:OCECarTER-87659722,1,"Voiteur-Halte-Routiere.",46.755103,5.611312,-1,0,SIN:SA:OCE87659722,Europe/Paris,,STE, +STE:SP:OCECarTER-87659730,1,"Gambsheim-Peugeot.",48.688807,7.871924,-1,0,SIN:SA:OCE87659730,Europe/Paris,,STE, +STE:SP:OCECarTER-87659748,1,"Gambsheim-(Poste).",48.692156,7.883346,-1,0,SIN:SA:OCE87659748,Europe/Paris,,STE, +STE:SP:OCECarTER-87659755,1,"Hoerdt-(M.De-Retraite)",48.692008,7.782179,-1,0,SIN:SA:OCE87659755,Europe/Paris,,STE, +STE:SP:OCECarTER-87659763,1,"Hoerdt-(Mairie)",48.698884,7.78471,-1,0,SIN:SA:OCE87659763,Europe/Paris,,STE, +STE:SP:OCECarTER-87659771,1,"Weyersheim-R-République",48.717811,7.800244,-1,0,SIN:SA:OCE87659771,Europe/Paris,,STE, +STE:SP:OCECarTER-87659789,1,"Kurtzenhouse-(Mairie)",48.739191,7.806731,-1,0,SIN:SA:OCE87659789,Europe/Paris,,STE, +STE:SP:OCECarTER-87659797,1,"Kurtzenhouse-(CMDP)",48.742351,7.812445,-1,0,SIN:SA:OCE87659797,Europe/Paris,,STE, +STE:SP:OCECarTER-87659805,1,"Bischwiller-Eglise",48.764098,7.859771,-1,0,SIN:SA:OCE87659805,Europe/Paris,,STE, +STE:SP:OCECarTER-87659813,1,"Bischwiller-(Vestra).",48.770589,7.847867,-1,0,SIN:SA:OCE87659813,Europe/Paris,,STE, +STE:SP:OCECarTER-87659821,1,"Kaltenhouse-Rue-Bischwi",48.790448,7.836,-1,0,SIN:SA:OCE87659821,Europe/Paris,,STE, +STE:SP:OCECarTER-87659839,1,"Marienthal-(Basilique-N",48.780133,7.816474,-1,0,SIN:SA:OCE87659839,Europe/Paris,,STE, +STE:SP:OCECarTER-87659847,1,"Haguenau-(Statuette)",48.782214,7.822543,-1,0,SIN:SA:OCE87659847,Europe/Paris,,STE, +STE:SP:OCECarTER-87659854,1,"Rixheim-Arrêt-Barrière.",47.747834,7.409712,-1,0,SIN:SA:OCE87659854,Europe/Paris,,STE, +STE:SP:OCECarTER-87659862,1,"Sierentz-Rest.-Soleil.",47.654089,7.454797,-1,0,SIN:SA:OCE87659862,Europe/Paris,,STE, +STE:SP:OCECarTER-87659870,1,"Bartenheim-(Pharmacie).",47.635004,7.476119,-1,0,SIN:SA:OCE87659870,Europe/Paris,,STE, +STE:SP:OCECarTER-87659888,1,"Oderen-(La-Poste).",47.909457,6.975557,-1,0,SIN:SA:OCE87659888,Europe/Paris,,STE, +STE:SP:OCECarTER-87659896,1,"Fellering-(Eglise).",47.896382,6.985835,-1,0,SIN:SA:OCE87659896,Europe/Paris,,STE, +STE:SP:OCECarTER-87659904,1,"Ranspach-Anc.-Fonderie.",47.881403,7.009453,-1,0,SIN:SA:OCE87659904,Europe/Paris,,STE, +STE:SP:OCECarTER-87659912,1,"St-Amarin-Hotel-Cheval.",47.874735,7.028347,-1,0,SIN:SA:OCE87659912,Europe/Paris,,STE, +STE:SP:OCECarTER-87659920,1,"Malmerspach-Rond-Point.",47.867039,7.03871,-1,0,SIN:SA:OCE87659920,Europe/Paris,,STE, +STE:SP:OCECarTER-87659938,1,"Moosch-(Mairie).",47.950054,7.056919,-1,0,SIN:SA:OCE87659938,Europe/Paris,,STE, +STE:SP:OCECarTER-87659946,1,"Willer-/-Thur-(Mairie).",47.843066,7.0714,-1,0,SIN:SA:OCE87659946,Europe/Paris,,STE, +STE:SP:OCECarTER-87659953,1,"Bitschwiller-/-T-Mairie",47.829177,7.079736,-1,0,SIN:SA:OCE87659953,Europe/Paris,,STE, +STE:SP:OCECarTER-87659979,1,"Vieux-Thann-Park.-Gare.",47.806118,7.119704,-1,0,SIN:SA:OCE87659979,Europe/Paris,,STE, +STE:SP:OCECarTER-87659987,1,"Cernay-(Eglise).",47.809181,7.174728,-1,0,SIN:SA:OCE87659987,Europe/Paris,,STE, +STE:SP:OCECarTER-87659995,1,"Dornach-Incorporation",47.7472,7.310183,-1,0,SIN:SA:OCE87659995,Europe/Paris,,STE, +STE:SP:OCECarTER-87660043,1,"Walbourg-Séminaire.",48.886536,7.789393,-1,0,SIN:SA:OCE87660043,Europe/Paris,,STE, +STE:SP:OCECarTER-87660050,1,"Surbourg-St-Aboga.",48.906924,7.847097,-1,0,SIN:SA:OCE87660050,Europe/Paris,,STE, +STE:SP:OCECarTER-87660126,1,"Schoenenbourg-Centre.",48.952404,7.912299,-1,0,SIN:SA:OCE87660126,Europe/Paris,,STE, +STE:SP:OCECarTER-87660340,1,"Ingolsheim-(Centre).",48.974765,7.937294,-1,0,SIN:SA:OCE87660340,Europe/Paris,,STE, +STE:SP:OCECarTER-87660365,1,"Riedseltz-Chapelle",48.990342,7.950716,-1,0,SIN:SA:OCE87660365,Europe/Paris,,STE, +STE:SP:OCECarTER-87660373,1,"Riedseltz-Centre",48.995052,7.953993,-1,0,SIN:SA:OCE87660373,Europe/Paris,,STE, +STE:SP:OCECarTER-87660381,1,"Wissembourg-Altenstadt.",49.028245,7.963881,-1,0,SIN:SA:OCE87660381,Europe/Paris,,STE, +STE:SP:OCECarTER-87660514,1,"Dachstein-R.-Gare.",48.542993,7.532903,-1,0,SIN:SA:OCE87660514,Europe/Paris,,STE, +STE:SP:OCECarTER-87660548,1,"Mutzig-Passage-A-Niveau",48.533912,7.46108,-1,0,SIN:SA:OCE87660548,Europe/Paris,,STE, +STE:SP:OCECarTER-87660571,1,"Mutzig-Porte-Ctre.",48.538663,7.456012,-1,0,SIN:SA:OCE87660571,Europe/Paris,,STE, +STE:SP:OCECarTER-87660589,1,"Gresswiller-(Abri).",48.535711,7.425486,-1,0,SIN:SA:OCE87660589,Europe/Paris,,STE, +STE:SP:OCECarTER-87660605,1,"Lutzelhouse-Abri-Eglise",48.519609,7.287747,-1,0,SIN:SA:OCE87660605,Europe/Paris,,STE, +STE:SP:OCECarTER-87660795,1,"Devant-Fouday-RN-420.",48.421397,7.183412,-1,0,SIN:SA:OCE87660795,Europe/Paris,,STE, +STE:SP:OCECarTER-87660811,1,"Saulxures-(N-420).",48.389399,7.146311,-1,0,SIN:SA:OCE87660811,Europe/Paris,,STE, +STE:SP:OCECarTER-87660886,1,"Bourg-Bruche-Eglise.",27.140973,-3.404561,-1,0,SIN:SA:OCE87660886,Europe/Paris,,STE, +STE:SP:OCECarTER-87660894,1,"Saales-(Mairie).",48.348286,7.106291,-1,0,SIN:SA:OCE87660894,Europe/Paris,,STE, +STE:SP:OCECarTER-87660902,1,"Rosheim-Maison-Enfance.",48.498331,7.478609,-1,0,SIN:SA:OCE87660902,Europe/Paris,,STE, +STE:SP:OCECarTER-87660910,1,"Obernai-Passage-Niveau.",48.46085,7.489412,-1,0,SIN:SA:OCE87660910,Europe/Paris,,STE, +STE:SP:OCECarTER-87660936,1,"Eichhoffen-Gare.",48.38269,7.448883,-1,0,SIN:SA:OCE87660936,Europe/Paris,,STE, +STE:SP:OCECarTER-87660977,1,"Epfig-Eglise-/-RN.",48.359165,7.466106,-1,0,SIN:SA:OCE87660977,Europe/Paris,,STE, +STE:SP:OCECarTER-87665240,1,"Colmar-St-Jo-VSG",48.081128,7.346674,-1,0,SIN:SA:OCE87665240,Europe/Paris,,STE, +STE:SP:OCECarTER-87665331,1,"Logelbach-Arrêt-Hirn",48.088748,7.321807,-1,0,SIN:SA:OCE87665331,Europe/Paris,,STE, +STE:SP:OCECarTER-87665356,1,"Ingersheim-Arrêt-Centre",48.096533,7.303553,-1,0,SIN:SA:OCE87665356,Europe/Paris,,STE, +STE:SP:OCECarTER-87665380,1,"Turckheim-P.-République",48.086124,7.278902,-1,0,SIN:SA:OCE87665380,Europe/Paris,,STE, +STE:SP:OCECarTER-87665455,1,"Walbach-La-Forge",48.059739,7.233066,-1,0,SIN:SA:OCE87665455,Europe/Paris,,STE, +STE:SP:OCECarTER-87665463,1,"Wihr-Soultz-D-417.",48.046681,7.20917,-1,0,SIN:SA:OCE87665463,Europe/Paris,,STE, +STE:SP:OCECarTER-87665471,1,"Gunsbach-Restaurant.",48.04278,7.174173,-1,0,SIN:SA:OCE87665471,Europe/Paris,,STE, +STE:SP:OCECarTER-87665489,1,"Munster-D417-Badischhof",48.040662,7.150374,-1,0,SIN:SA:OCE87665489,Europe/Paris,,STE, +STE:SP:OCECarTER-87665505,1,"Luttenbach-R-Principale",48.035851,7.119172,-1,0,SIN:SA:OCE87665505,Europe/Paris,,STE, +STE:SP:OCECarTER-87665513,1,"Luttenbach-(Fronzel).",48.032513,7.110004,-1,0,SIN:SA:OCE87665513,Europe/Paris,,STE, +STE:SP:OCECarTER-87665562,1,"Breitenbach-Breit's-Bar",48.026678,7.098892,-1,0,SIN:SA:OCE87665562,Europe/Paris,,STE, +STE:SP:OCECarTER-87665620,1,"Muhlbach/Munster-Mairie",48.025566,7.083898,-1,0,SIN:SA:OCE87665620,Europe/Paris,,STE, +STE:SP:OCECarTER-87666099,1,"Chamelet-Centre.",27.140973,-3.404561,-1,0,SIN:SA:OCE87635862,Europe/Paris,,STE, +STE:SP:OCECarTER-87667980,1,"Diou-ville-Allier-(Bus)",46.533349,3.747946,-1,0,SIN:SA:OCE87667980,Europe/Paris,,STE, +STE:SP:OCECarTER-87668004,1,"Villeneuve-/-Allier-Cen",46.660109,3.247787,-1,0,SIN:SA:OCE87668004,Europe/Paris,,STE, +STE:SP:OCECarTER-87668095,1,"Thiel-Sur-Acolin-Bus",46.526266,3.578794,-1,0,SIN:SA:OCE87668095,Europe/Paris,,STE, +STE:SP:OCECarTER-87668111,1,"Montbeugny-Centre",46.528189,3.492704,-1,0,SIN:SA:OCE87668111,Europe/Paris,,STE, +STE:SP:OCECarTER-87668137,1,"Philippsbg-Falkenstein",48.984098,7.567411,-1,0,SIN:SA:OCE87668137,Europe/Paris,,STE, +STE:SP:OCECarTER-87668152,1,"Eguelshardt-(-Abri-)",49.02126,7.491193,-1,0,SIN:SA:OCE87668152,Europe/Paris,,STE, +STE:SP:OCECarTER-87676569,1,"Pagny-Le-Chateau-Mairie",47.046992,5.195881,-1,0,SIN:SA:OCE87676569,Europe/Paris,,STE, +STE:SP:OCECarTER-87676593,1,"Nolay-Mairie",46.951807,4.629942,-1,0,SIN:SA:OCE87676593,Europe/Paris,,STE, +STE:SP:OCECarTER-87676718,1,"Chatillon-Seine-Pl-Marm",47.861258,4.574925,-1,0,SIN:SA:OCE87676718,Europe/Paris,,STE, +STE:SP:OCECarTER-87676734,1,"Manlay-Centre",47.129214,4.341481,-1,0,SIN:SA:OCE87676734,Europe/Paris,,STE, +STE:SP:OCECarTER-87676767,1,"Liernais-Centre",47.206327,4.281395,-1,0,SIN:SA:OCE87676767,Europe/Paris,,STE, +STE:SP:OCECarTER-87676809,1,"Saint-Didier-Chanteau",47.330119,4.181835,-1,0,SIN:SA:OCE87676809,Europe/Paris,,STE, +STE:SP:OCECarTER-87676833,1,"St-Eloi-Eglise",46.973771,3.22176,-1,0,SIN:SA:OCE87117945,Europe/Paris,,STE, +STE:SP:OCECarTER-87676890,1,"St-Leger-Dheune-Port-Ca",46.846229,4.632942,-1,0,SIN:SA:OCE87676890,Europe/Paris,,STE, +STE:SP:OCECarTER-87676908,1,"Rully-Place",46.874688,4.740887,-1,0,SIN:SA:OCE87676908,Europe/Paris,,STE, +STE:SP:OCECarTER-87677047,1,"Brion-Laisy-Mairie",46.907192,4.191076,-1,0,SIN:SA:OCE87677047,Europe/Paris,,STE, +STE:SP:OCECarTER-87677096,1,"Changy-Tourny-Monument",46.403334,4.253001,-1,0,SIN:SA:OCE87677096,Europe/Paris,,STE, +STE:SP:OCECarTER-87677138,1,"Chauffailles-Gambetta",46.206913,4.336505,-1,0,SIN:SA:OCE87677138,Europe/Paris,,STE, +STE:SP:OCECarTER-87677146,1,"Autun-Orme-St-Pantaleon",46.987363,4.313483,-1,0,SIN:SA:OCE87677146,Europe/Paris,,STE, +STE:SP:OCECarTER-87677195,1,"Voutenay-/-Cure-Mairie",47.561728,3.784678,-1,0,SIN:SA:OCE87677195,Europe/Paris,,STE, +STE:SP:OCECarTER-87677245,1,"Lucy-Sur-Cure-RD-606",47.627782,3.744653,-1,0,SIN:SA:OCE87677245,Europe/Paris,,STE, +STE:SP:OCECarTER-87677252,1,"Accolay-Le-Pont",47.659446,3.713922,-1,0,SIN:SA:OCE87677252,Europe/Paris,,STE, +STE:SP:OCECarTER-87678458,1,"Chèvremont-M.Mort.",47.631193,6.92455,-1,0,SIN:SA:OCE87678458,Europe/Paris,,STE, +STE:SP:OCECarTER-87678466,1,"Uttwiller-R-Principale.",48.846228,7.487765,-1,0,SIN:SA:OCE87678466,Europe/Paris,,STE, +STE:SP:OCECarTER-87678474,1,"Guémar-Rd-Point-Sony",48.19001,7.370837,-1,0,SIN:SA:OCE87678474,Europe/Paris,,STE, +STE:SP:OCECarTER-87678482,1,"Ste-Croix-Ms-Centre",48.262501,7.22444,-1,0,SIN:SA:OCE87678482,Europe/Paris,,STE, +STE:SP:OCECarTER-87678490,1,"Lièpvre-(Pharmacie)",48.270852,7.280695,-1,0,SIN:SA:OCE87640789,Europe/Paris,,STE, +STE:SP:OCECarTER-87678524,1,"Niederbronn-H.-de-Ville",48.950819,7.642391,-1,0,SIN:SA:OCE87678524,Europe/Paris,,STE, +STE:SP:OCECarTER-87678680,1,"Haguenau-Moulin-Neuf.",48.813031,7.781128,-1,0,SIN:SA:OCE87678680,Europe/Paris,,STE, +STE:SP:OCECarTER-87678698,1,"Schweighouse-Eglise-P.",48.820338,7.740844,-1,0,SIN:SA:OCE87678698,Europe/Paris,,STE, +STE:SP:OCECarTER-87678706,1,"Schweighouse-M.-Leclerc",48.8221,7.731423,-1,0,SIN:SA:OCE87678706,Europe/Paris,,STE, +STE:SP:OCECarTER-87678714,1,"Neubourg-(Eglise).",48.838635,7.681258,-1,0,SIN:SA:OCE87678714,Europe/Paris,,STE, +STE:SP:OCECarTER-87678730,1,"Pfaffenhoffen-Républiqu",48.844006,7.607554,-1,0,SIN:SA:OCE87678730,Europe/Paris,,STE, +STE:SP:OCECarTER-87683268,1,"Gare de Laroche-Migennes",47.960853,3.512941,-1,0,SIN:SA:OCE87683268,Europe/Paris,,STE, +STE:SP:OCECarTER-87683318,1,"Gare de St-Florentin-Vergigny",47.980415,3.730949,-1,0,SIN:SA:OCE87683318,Europe/Paris,,STE, +STE:SP:OCECarTER-87683334,1,"St-Florentin-Ville",48.004576,3.74046,-1,0,SIN:SA:OCE87683334,Europe/Paris,,STE, +STE:SP:OCECarTER-87683342,1,"Neuvy-Sautour",48.042693,3.792776,-1,0,SIN:SA:OCE87117986,Europe/Paris,,STE, +STE:SP:OCECarTER-87683532,1,"Gare de Chemilly-Appoigny",47.897372,3.554407,-1,0,SIN:SA:OCE87683532,Europe/Paris,,STE, +STE:SP:OCECarTER-87683557,1,"Gare de Monéteau-Gurgy",47.850719,3.579952,-1,0,SIN:SA:OCE87683557,Europe/Paris,,STE, +STE:SP:OCECarTER-87683573,1,"Gare de Auxerre-St-Gervais",47.797614,3.58514,-1,0,SIN:SA:OCE87683573,Europe/Paris,,STE, +STE:SP:OCECarTER-87683615,1,"Gare de Champs-St-Bris",47.738246,3.603611,-1,0,SIN:SA:OCE87683615,Europe/Paris,,STE, +STE:SP:OCECarTER-87683631,1,"Gare de Vincelles",47.704279,3.628359,-1,0,SIN:SA:OCE87683631,Europe/Paris,,STE, +STE:SP:OCECarTER-87683649,1,"Gare de Cravant-Bazarnes",47.678581,3.681465,-1,0,SIN:SA:OCE87683649,Europe/Paris,,STE, +STE:SP:OCECarTER-87683664,1,"Gare de Vermenton",47.661022,3.73114,-1,0,SIN:SA:OCE87683664,Europe/Paris,,STE, +STE:SP:OCECarTER-87683680,1,"Gare de Arcy-sur-Cure",47.60062,3.767049,-1,0,SIN:SA:OCE87683680,Europe/Paris,,STE, +STE:SP:OCECarTER-87683722,1,"Gare de Sermizelles-Vézelay",47.528692,3.792851,-1,0,SIN:SA:OCE87683722,Europe/Paris,,STE, +STE:SP:OCECarTER-87683789,1,"Gare de Avallon",47.495524,3.91253,-1,0,SIN:SA:OCE87683789,Europe/Paris,,STE, +STE:SP:OCECarTER-87683847,1,"Gare de Mailly-la-Ville",47.604361,3.675079,-1,0,SIN:SA:OCE87683847,Europe/Paris,,STE, +STE:SP:OCECarTER-87685784,1,"Les-Tavins",27.140973,-3.404561,-1,0,SIN:SA:OCE87635862,Europe/Paris,,STE, +STE:SP:OCECarTER-87690396,1,"Montfey",27.140973,-3.404561,-1,0,SIN:SA:OCE87690396,Europe/Paris,,STE, +STE:SP:OCECarTER-87691352,1,"Arcy-Sur-Cure-RD606",27.140973,-3.404561,-1,0,SIN:SA:OCE87499863,Europe/Paris,,STE, +STE:SP:OCECarTER-87691360,1,"Coulanges/Y-Pré-Cambaul",27.140973,-3.404561,-1,0,SIN:SA:OCE87691360,Europe/Paris,,STE, +STE:SP:OCECarTER-87691378,1,"St-Sauveur-Halte-Rout",27.140973,-3.404561,-1,0,SIN:SA:OCE87117945,Europe/Paris,,STE, +STE:SP:OCECarTER-87691386,1,"Comberjon-HR",27.140973,-3.404561,-1,0,SIN:SA:OCE87691386,Europe/Paris,,STE, +STE:SP:OCECarTER-87691576,1,"La-Cluse-Ville",46.170815,5.576363,-1,0,SIN:SA:OCE87691576,Europe/Paris,,STE, +STE:SP:OCECarTER-87691600,1,"Gare de Les Perrières",47.005616,3.146543,-1,0,SIN:SA:OCE87691600,Europe/Paris,,STE, +STE:SP:OCECarTER-87691626,1,"St-Léger-des-Vignes",46.838553,3.451102,-1,0,SIN:SA:OCE87691626,Europe/Paris,,STE, +STE:SP:OCECarTER-87691675,1,"Verneuil",46.842435,3.58425,-1,0,SIN:SA:OCE87691675,Europe/Paris,,STE, +STE:SP:OCECarTER-87691725,1,"Avrée",46.810672,3.852822,-1,0,SIN:SA:OCE87691725,Europe/Paris,,STE, +STE:SP:OCECarTER-87694000,1,"Gare de Le Creusot",46.807829,4.430429,-1,0,SIN:SA:OCE87694000,Europe/Paris,,STE, +STE:SP:OCECarTER-87694141,1,"Gare de Etang",46.867893,4.183846,-1,0,SIN:SA:OCE87694141,Europe/Paris,,STE, +STE:SP:OCECarTER-87694158,1,"Gare de Mesvres",46.862798,4.244954,-1,0,SIN:SA:OCE87694158,Europe/Paris,,STE, +STE:SP:OCECarTER-87694166,1,"Gare de Broye",46.861944,4.296092,-1,0,SIN:SA:OCE87694166,Europe/Paris,,STE, +STE:SP:OCECarTER-87694174,1,"Gare de St-Symphorien-de-Marma.",46.844215,4.337746,-1,0,SIN:SA:OCE87694174,Europe/Paris,,STE, +STE:SP:OCECarTER-87694182,1,"Gare de Marmagne-Gare",46.833426,4.360203,-1,0,SIN:SA:OCE87694182,Europe/Paris,,STE, +STE:SP:OCECarTER-87694307,1,"Gare de Montchanin",46.759158,4.481462,-1,0,SIN:SA:OCE87694307,Europe/Paris,,STE, +STE:SP:OCECarTER-87694364,1,"Gare de St-Léger-sur-Dheune",46.847999,4.627718,-1,0,SIN:SA:OCE87694364,Europe/Paris,,STE, +STE:SP:OCECarTER-87694398,1,"Gare de Cheilly-les-Maranges",46.892889,4.675986,-1,0,SIN:SA:OCE87694398,Europe/Paris,,STE, +STE:SP:OCECarTER-87694448,1,"La Roche-en-Brenil",47.385054,4.170247,-1,0,SIN:SA:OCE87694448,Europe/Paris,,STE, +STE:SP:OCECarTER-87694455,1,"Molphey",47.340016,4.20149,-1,0,SIN:SA:OCE87694455,Europe/Paris,,STE, +STE:SP:OCECarTER-87694471,1,"Saulieu",47.2829,4.236113,-1,0,SIN:SA:OCE87694471,Europe/Paris,,STE, +STE:SP:OCECarTER-87694489,1,"St-Martin-de-la-Mer",47.23716,4.248244,-1,0,SIN:SA:OCE87694489,Europe/Paris,,STE, +STE:SP:OCECarTER-87694513,1,"Brazey-en-Morvan",47.171727,4.286738,-1,0,SIN:SA:OCE87694513,Europe/Paris,,STE, +STE:SP:OCECarTER-87694539,1,"Barnay",47.087213,4.338068,-1,0,SIN:SA:OCE87694539,Europe/Paris,,STE, +STE:SP:OCECarTER-87694547,1,"Cordesse-Igornay",47.051769,4.344108,-1,0,SIN:SA:OCE87694547,Europe/Paris,,STE, +STE:SP:OCECarTER-87694554,1,"Dracy-St-Loup",47.008377,4.343501,-1,0,SIN:SA:OCE87694554,Europe/Paris,,STE, +STE:SP:OCECarTER-87694570,1,"Gare de Autun",46.954678,4.293028,-1,0,SIN:SA:OCE87694570,Europe/Paris,,STE, +STE:SP:OCECarTER-87694596,1,"Gare de Brion-Laizy",46.908559,4.207195,-1,0,SIN:SA:OCE87694596,Europe/Paris,,STE, +STE:SP:OCECarTER-87694687,1,"Gare de Paray-le-Monial",46.447256,4.113628,-1,0,SIN:SA:OCE87694687,Europe/Paris,,STE, +STE:SP:OCECarTER-87694695,1,"Gare de Digoin",46.485196,3.987637,-1,0,SIN:SA:OCE87694695,Europe/Paris,,STE, +STE:SP:OCECarTER-87694729,1,"Dyo",46.351716,4.26604,-1,0,SIN:SA:OCE87694729,Europe/Paris,,STE, +STE:SP:OCECarTER-87694737,1,"Gare de La Clayette-Baudemont",46.288162,4.298451,-1,0,SIN:SA:OCE87694737,Europe/Paris,,STE, +STE:SP:OCECarTER-87694778,1,"Gare de Chauffailles",46.207404,4.345377,-1,0,SIN:SA:OCE87694778,Europe/Paris,,STE, +STE:SP:OCECarTER-87694851,1,"Gare de St-Agnan",46.502017,3.879009,-1,0,SIN:SA:OCE87694851,Europe/Paris,,STE, +STE:SP:OCECarTER-87694869,1,"Gare de Gilly-sur-Loire",46.536983,3.781787,-1,0,SIN:SA:OCE87694869,Europe/Paris,,STE, +STE:SP:OCECarTER-87694885,1,"Charolles",46.435153,4.273414,-1,0,SIN:SA:OCE87694885,Europe/Paris,,STE, +STE:SP:OCECarTER-87695973,1,"Bellignat-Lycée-Arbez-C",46.250586,5.632869,-1,0,SIN:SA:OCE87407098,Europe/Paris,,STE, +STE:SP:OCECarTER-87695981,1,"Bellignat-Mairie",46.24243,5.629702,-1,0,SIN:SA:OCE87635771,Europe/Paris,,STE, +STE:SP:OCECarTER-87695999,1,"Bourg-En-Bresse-Archive",27.140973,-3.404561,-1,0,SIN:SA:OCE87458836,Europe/Paris,,STE, +STE:SP:OCECarTER-87696005,1,"Gare de Nevers",46.987349,3.15087,-1,0,SIN:SA:OCE87696005,Europe/Paris,,STE, +STE:SP:OCECarTER-87696013,1,"Bourg-En-Bresse-Gare-Ro",46.200098,5.214981,-1,0,SIN:SA:OCE87458836,Europe/Paris,,STE, +STE:SP:OCECarTER-87696054,1,"Ceyzeriat-Mairie",46.17902,5.322054,-1,0,SIN:SA:OCE87635771,Europe/Paris,,STE, +STE:SP:OCECarTER-87696146,1,"Gare de Cosne-sur-Loire",47.414026,2.932089,-1,0,SIN:SA:OCE87696146,Europe/Paris,,STE, +STE:SP:OCECarTER-87696153,1,"Hautecourt-Primaire",46.157876,5.420158,-1,0,SIN:SA:OCE87696153,Europe/Paris,,STE, +STE:SP:OCECarTER-87696260,1,"Gare de Saincaize",46.931373,3.071971,-1,0,SIN:SA:OCE87696260,Europe/Paris,,STE, +STE:SP:OCECarTER-87696294,1,"Gare de St-Pierre-le-Moûtier",46.793271,3.111736,-1,0,SIN:SA:OCE87696294,Europe/Paris,,STE, +STE:SP:OCECarTER-87696302,1,"Gare de Chantenay-St-Imbert",46.728304,3.171699,-1,0,SIN:SA:OCE87696302,Europe/Paris,,STE, +STE:SP:OCECarTER-87696328,1,"Gare de Moulins-sur-Allier",46.561364,3.338755,-1,0,SIN:SA:OCE87696328,Europe/Paris,,STE, +STE:SP:OCECarTER-87696427,1,"Gare de Dompierre-Sept-Fons",46.526267,3.674899,-1,0,SIN:SA:OCE87696427,Europe/Paris,,STE, +STE:SP:OCECarTER-87696450,1,"Gare de Imphy",46.9334,3.259751,-1,0,SIN:SA:OCE87696450,Europe/Paris,,STE, +STE:SP:OCECarTER-87696468,1,"Gare de Béard",46.865303,3.318114,-1,0,SIN:SA:OCE87696468,Europe/Paris,,STE, +STE:SP:OCECarTER-87696484,1,"Gare de Decize",46.837332,3.467296,-1,0,SIN:SA:OCE87696484,Europe/Paris,,STE, +STE:SP:OCECarTER-87696492,1,"Gare de Cercy-la-Tour",46.857926,3.645024,-1,0,SIN:SA:OCE87696492,Europe/Paris,,STE, +STE:SP:OCECarTER-87696518,1,"Fours",46.817243,3.721173,-1,0,SIN:SA:OCE87696518,Europe/Paris,,STE, +STE:SP:OCECarTER-87696526,1,"Remilly-St-Honoré-les-B",46.835272,3.815712,-1,0,SIN:SA:OCE87696526,Europe/Paris,,STE, +STE:SP:OCECarTER-87696534,1,"Gare de Luzy(Nièvre)",46.794044,3.969226,-1,0,SIN:SA:OCE87696534,Europe/Paris,,STE, +STE:SP:OCECarTER-87696617,1,"Gare de Corbigny",47.253977,3.677881,-1,0,SIN:SA:OCE87696617,Europe/Paris,,STE, +STE:SP:OCECarTER-87696633,1,"Gare de Flez-Cuzy-Tannay",47.362541,3.615025,-1,0,SIN:SA:OCE87696633,Europe/Paris,,STE, +STE:SP:OCECarTER-87696807,1,"Gare de Clamecy",47.466487,3.520646,-1,0,SIN:SA:OCE87696807,Europe/Paris,,STE, +STE:SP:OCECarTER-87696831,1,"Gare de Coulanges-Sur-Yonne",47.527366,3.547154,-1,0,SIN:SA:OCE87696831,Europe/Paris,,STE, +STE:SP:OCECarTER-87696856,1,"Gare de Châtel-Censoir",47.537739,3.635345,-1,0,SIN:SA:OCE87696856,Europe/Paris,,STE, +STE:SP:OCECarTER-87697128,1,"Gare de Lyon-Part-Dieu-Gare-Rou",45.760585,4.859435,-1,0,SIN:SA:OCE87458836,Europe/Paris,,STE, +STE:SP:OCECarTER-87697169,1,"Legny-Ponts-Tarrets",45.906795,4.575537,-1,0,SIN:SA:OCE87697169,Europe/Paris,,STE, +STE:SP:OCECarTER-87697672,1,"Bourg-en-Bresse-Charité",27.140973,-3.404561,-1,0,SIN:SA:OCE87458836,Europe/Paris,,STE, +STE:SP:OCECarTER-87697706,1,"Polliat-Mairie",46.249302,5.126,-1,0,SIN:SA:OCE87635771,Europe/Paris,,STE, +STE:SP:OCECarTER-87697730,1,"Simandre-Suran-Mairie",46.224562,5.415107,-1,0,SIN:SA:OCE87635771,Europe/Paris,,STE, +STE:SP:OCECarTER-87697839,1,"Perl-Gare-DB",27.140973,-3.404561,-1,0,SIN:SA:OCE87405878,Europe/Paris,,STE, +STE:SP:OCECarTER-87697979,1,"Vincelles-Avenue-Gare",27.140973,-3.404561,-1,0,SIN:SA:OCE87405878,Europe/Paris,,STE, +STE:SP:OCECarTER-87697987,1,"Fléty-Pont -Boudot",27.140973,-3.404561,-1,0,SIN:SA:OCE87458794,Europe/Paris,,STE, +STE:SP:OCECarTER-87699009,1,"La Chapelle-sous-Dun",46.258054,4.295551,-1,0,SIN:SA:OCE87699009,Europe/Paris,,STE, +STE:SP:OCECarTER-87699629,1,"Echevannes",47.523861,5.181818,-1,0,SIN:SA:OCE87699629,Europe/Paris,,STE, +STE:SP:OCECarTER-87699850,1,"Malbuisson",46.799257,6.304993,-1,0,SIN:SA:OCE87699850,Europe/Paris,,STE, +STE:SP:OCECarTER-87700880,1,"Charolles-Est-RD-17",27.140973,-3.404561,-1,0,SIN:SA:OCE87700880,Europe/Paris,,STE, +STE:SP:OCECarTER-87700906,1,"Tantonville-L.-Pasteur",27.140973,-3.404561,-1,0,SIN:SA:OCE87458836,Europe/Paris,,STE, +STE:SP:OCECarTER-87700930,1,"Diarville-Place-Midon",27.140973,-3.404561,-1,0,SIN:SA:OCE87700930,Europe/Paris,,STE, +STE:SP:OCECarTER-87700955,1,"Mattaincourt-la-Poste",27.140973,-3.404561,-1,0,SIN:SA:OCE87458836,Europe/Paris,,STE, +STE:SP:OCECarTER-87700963,1,"Hymont-Mairie",27.140973,-3.404561,-1,0,SIN:SA:OCE87635771,Europe/Paris,,STE, +STE:SP:OCECarTER-87700971,1,"Hareville-Monfort-Abri",27.140973,-3.404561,-1,0,SIN:SA:OCE87700971,Europe/Paris,,STE, +STE:SP:OCECarTER-87700989,1,"Martigny-les-B-Thiebaut",27.140973,-3.404561,-1,0,SIN:SA:OCE87635862,Europe/Paris,,STE, +STE:SP:OCECarTER-87700997,1,"Lamarche-Centre-Arrêt",27.140973,-3.404561,-1,0,SIN:SA:OCE87635862,Europe/Paris,,STE, +STE:SP:OCECarTER-87701086,1,"Pierreville-Xeuilley",27.140973,-3.404561,-1,0,SIN:SA:OCE87701086,Europe/Paris,,STE, +STE:SP:OCECarTER-87701094,1,"Pulligny-Foyer-Culturel",27.140973,-3.404561,-1,0,SIN:SA:OCE87701094,Europe/Paris,,STE, +STE:SP:OCECarTER-87701102,1,"Ceintrey-Grp-Scolaire",27.140973,-3.404561,-1,0,SIN:SA:OCE87701102,Europe/Paris,,STE, +STE:SP:OCECarTER-87701110,1,"Vézelise-J.-Leclerc",27.140973,-3.404561,-1,0,SIN:SA:OCE87701110,Europe/Paris,,STE, +STE:SP:OCECarTER-87702068,1,"Zellenberg-Route-du-Vin",27.140973,-3.404561,-1,0,SIN:SA:OCE87458836,Europe/Paris,,STE, +STE:SP:OCECarTER-87702076,1,"Riquewihr-Poste",27.140973,-3.404561,-1,0,SIN:SA:OCE87700955,Europe/Paris,,STE, +STE:SP:OCECarTER-87702084,1,"Bouxwiller-Clos-des-S.",27.140973,-3.404561,-1,0,SIN:SA:OCE87702084,Europe/Paris,,STE, +STE:SP:OCECarTER-87712026,1,"Gare de Rully",46.880291,4.760774,-1,0,SIN:SA:OCE87712026,Europe/Paris,,STE, +STE:SP:OCECarTER-87712133,1,"Paris-l'Hôpital",46.913745,4.635807,-1,0,SIN:SA:OCE87712133,Europe/Paris,,STE, +STE:SP:OCECarTER-87712190,1,"Sully-le-Château",47.006005,4.469681,-1,0,SIN:SA:OCE87712190,Europe/Paris,,STE, +STE:SP:OCECarTER-87712265,1,"Gare de Brétigny-Norges",47.389627,5.109756,-1,0,SIN:SA:OCE87712265,Europe/Paris,,STE, +STE:SP:OCECarTER-87712604,1,"Gare de Ouges",47.255673,5.073252,-1,0,SIN:SA:OCE87712604,Europe/Paris,,STE, +STE:SP:OCECarTER-87712620,1,"Gare de Longecourt-en-Plaine",47.19387,5.134814,-1,0,SIN:SA:OCE87712620,Europe/Paris,,STE, +STE:SP:OCECarTER-87712679,1,"Gare de Chaugey",47.087531,5.255282,-1,0,SIN:SA:OCE87712679,Europe/Paris,,STE, +STE:SP:OCECarTER-87713008,1,"Gare de Dijon-Porte-Neuve",47.322794,5.054861,-1,0,SIN:SA:OCE87713008,Europe/Paris,,STE, +STE:SP:OCECarTER-87713040,1,"Gare de Dijon-Ville",47.323404,5.02728,-1,0,SIN:SA:OCE87713040,Europe/Paris,,STE, +STE:SP:OCECarTER-87713115,1,"Gare de Les Laumes-Alésia",47.543319,4.462868,-1,0,SIN:SA:OCE87713115,Europe/Paris,,STE, +STE:SP:OCECarTER-87713131,1,"Gare de Montbard",47.61872,4.336152,-1,0,SIN:SA:OCE87713131,Europe/Paris,,STE, +STE:SP:OCECarTER-87713156,1,"Gare de Nuits-sous-Ravières",47.72921,4.211266,-1,0,SIN:SA:OCE87713156,Europe/Paris,,STE, +STE:SP:OCECarTER-87713198,1,"Gare de Tonnerre",47.859603,3.973496,-1,0,SIN:SA:OCE87713198,Europe/Paris,,STE, +STE:SP:OCECarTER-87713271,1,"Epoisses",47.50651,4.171347,-1,0,SIN:SA:OCE87713271,Europe/Paris,,STE, +STE:SP:OCECarTER-87713412,1,"Gare de Dole-Ville",47.096155,5.488036,-1,0,SIN:SA:OCE87713412,Europe/Paris,,STE, +STE:SP:OCECarTER-87713503,1,"Gare de Gevrey-Chambertin",47.227388,4.998789,-1,0,SIN:SA:OCE87713503,Europe/Paris,,STE, +STE:SP:OCECarTER-87713511,1,"Gare de Vougeot-Gilly-Les-Cît.",47.175618,4.971269,-1,0,SIN:SA:OCE87713511,Europe/Paris,,STE, +STE:SP:OCECarTER-87713529,1,"Gare de Nuits-St-Georges",47.130668,4.956228,-1,0,SIN:SA:OCE87713529,Europe/Paris,,STE, +STE:SP:OCECarTER-87713537,1,"Gare de Corgoloin",47.084212,4.916892,-1,0,SIN:SA:OCE87713537,Europe/Paris,,STE, +STE:SP:OCECarTER-87713545,1,"Gare de Beaune",47.023041,4.848723,-1,0,SIN:SA:OCE87713545,Europe/Paris,,STE, +STE:SP:OCECarTER-87713560,1,"Gare de Meursault",46.969182,4.795415,-1,0,SIN:SA:OCE87713560,Europe/Paris,,STE, +STE:SP:OCECarTER-87713578,1,"Gare de Chagny",46.907429,4.74965,-1,0,SIN:SA:OCE87713578,Europe/Paris,,STE, +STE:SP:OCECarTER-87713586,1,"Gare de Fontaines-Mercurey",46.851217,4.774869,-1,0,SIN:SA:OCE87713586,Europe/Paris,,STE, +STE:SP:OCECarTER-87713594,1,"Gare de Santenay-les-Bains",46.910985,4.702054,-1,0,SIN:SA:OCE87713594,Europe/Paris,,STE, +STE:SP:OCECarTER-87713610,1,"Epinac-les-Mines-Mairie",46.991053,4.513543,-1,0,SIN:SA:OCE87713610,Europe/Paris,,STE, +STE:SP:OCECarTER-87713628,1,"Gare de Saulon",47.224183,5.104766,-1,0,SIN:SA:OCE87713628,Europe/Paris,,STE, +STE:SP:OCECarTER-87713636,1,"Gare de Aiserey",47.170648,5.158391,-1,0,SIN:SA:OCE87713636,Europe/Paris,,STE, +STE:SP:OCECarTER-87713644,1,"Gare de Brazey-en-Plaine",47.131563,5.212223,-1,0,SIN:SA:OCE87713644,Europe/Paris,,STE, +STE:SP:OCECarTER-87713651,1,"Gare de St-Jean-de-Losne",47.099799,5.244335,-1,0,SIN:SA:OCE87713651,Europe/Paris,,STE, +STE:SP:OCECarTER-87713677,1,"Gare de Seurre",46.99645,5.151248,-1,0,SIN:SA:OCE87713677,Europe/Paris,,STE, +STE:SP:OCECarTER-87713685,1,"Navilly",46.932458,5.138979,-1,0,SIN:SA:OCE87713685,Europe/Paris,,STE, +STE:SP:OCECarTER-87713693,1,"St-Bonnet-en-Bresse",46.854845,5.16594,-1,0,SIN:SA:OCE87713693,Europe/Paris,,STE, +STE:SP:OCECarTER-87713701,1,"Gare de Mervans",46.798883,5.179536,-1,0,SIN:SA:OCE87713701,Europe/Paris,,STE, +STE:SP:OCECarTER-87713735,1,"Gare de Louhans",46.631126,5.217708,-1,0,SIN:SA:OCE87713735,Europe/Paris,,STE, +STE:SP:OCECarTER-87713826,1,"Gare de Ruffey",47.370702,5.079387,-1,0,SIN:SA:OCE87713826,Europe/Paris,,STE, +STE:SP:OCECarTER-87713834,1,"Gare de St-Julien-Clenay",47.405559,5.128045,-1,0,SIN:SA:OCE87713834,Europe/Paris,,STE, +STE:SP:OCECarTER-87713842,1,"Gare de Gemeaux",47.477803,5.130078,-1,0,SIN:SA:OCE87713842,Europe/Paris,,STE, +STE:SP:OCECarTER-87713859,1,"Gare de Is-sur-Tille",47.520228,5.129833,-1,0,SIN:SA:OCE87713859,Europe/Paris,,STE, +STE:SP:OCECarTER-87713933,1,"Change",46.930115,4.631856,-1,0,SIN:SA:OCE87713933,Europe/Paris,,STE, +STE:SP:OCECarTER-87713966,1,"Dezize",46.909647,4.654321,-1,0,SIN:SA:OCE87713966,Europe/Paris,,STE, +STE:SP:OCECarTER-87715003,1,"Gare de Pontarlier",46.900982,6.353365,-1,0,SIN:SA:OCE87715003,Europe/Paris,,STE, +STE:SP:OCECarTER-87715102,1,"Gare de Andelot",46.85938,5.923725,-1,0,SIN:SA:OCE87715102,Europe/Paris,,STE, +STE:SP:OCECarTER-87715136,1,"Gare de Frasne",46.85745,6.157695,-1,0,SIN:SA:OCE87715136,Europe/Paris,,STE, +STE:SP:OCECarTER-87715144,1,"Gare de La Rivière",46.870105,6.213439,-1,0,SIN:SA:OCE87715144,Europe/Paris,,STE, +STE:SP:OCECarTER-87715151,1,"Gare de Ste-Colombe",46.87902,6.265864,-1,0,SIN:SA:OCE87715151,Europe/Paris,,STE, +STE:SP:OCECarTER-87715169,1,"Les Granges-Narboz",46.879024,6.309097,-1,0,SIN:SA:OCE87715169,Europe/Paris,,STE, +STE:SP:OCECarTER-87715193,1,"Bonnevaux",46.808419,6.184197,-1,0,SIN:SA:OCE87715193,Europe/Paris,,STE, +STE:SP:OCECarTER-87715201,1,"Vaux-et-Chantegrue",46.813687,6.24877,-1,0,SIN:SA:OCE87715201,Europe/Paris,,STE, +STE:SP:OCECarTER-87715219,1,"Gare de Labergement-Ste-Marie",46.773147,6.280666,-1,0,SIN:SA:OCE87715219,Europe/Paris,,STE, +STE:SP:OCECarTER-87715227,1,"Les Longevilles-Rochej.",46.753627,6.315217,-1,0,SIN:SA:OCE87715227,Europe/Paris,,STE, +STE:SP:OCECarTER-87715235,1,"Les Granges-Ste-Marie",46.787984,6.277751,-1,0,SIN:SA:OCE87715235,Europe/Paris,,STE, +STE:SP:OCECarTER-87715250,1,"St-Antoine",46.775615,6.341803,-1,0,SIN:SA:OCE87715250,Europe/Paris,,STE, +STE:SP:OCECarTER-87715268,1,"Métabief",46.7735,6.350221,-1,0,SIN:SA:OCE87715268,Europe/Paris,,STE, +STE:SP:OCECarTER-87715326,1,"Gare de Champagnole",46.749247,5.909936,-1,0,SIN:SA:OCE87715326,Europe/Paris,,STE, +STE:SP:OCECarTER-87715383,1,"Gare de La Chaux-des-Crotenay",46.654536,5.943833,-1,0,SIN:SA:OCE87715383,Europe/Paris,,STE, +STE:SP:OCECarTER-87715391,1,"Gare de La Chaumusse-Fort-du-Pl",46.604902,5.96146,-1,0,SIN:SA:OCE87715391,Europe/Paris,,STE, +STE:SP:OCECarTER-87715417,1,"Gare de St-Laurent-en-Grandvaux",46.574925,5.951383,-1,0,SIN:SA:OCE87715417,Europe/Paris,,STE, +STE:SP:OCECarTER-87715433,1,"Gare de Morbier",46.539109,6.017909,-1,0,SIN:SA:OCE87715433,Europe/Paris,,STE, +STE:SP:OCECarTER-87715441,1,"Gare de Morez",46.526327,6.023801,-1,0,SIN:SA:OCE87715441,Europe/Paris,,STE, +STE:SP:OCECarTER-87715516,1,"Les Hôpitaux-Neufs",46.776001,6.371321,-1,0,SIN:SA:OCE87715516,Europe/Paris,,STE, +STE:SP:OCECarTER-87715524,1,"Jougne",46.760077,6.388785,-1,0,SIN:SA:OCE87715524,Europe/Paris,,STE, +STE:SP:OCECarTER-87718007,1,"Gare de Besançon-Viotte",47.247038,6.021912,-1,0,SIN:SA:OCE87718007,Europe/Paris,,STE, +STE:SP:OCECarTER-87718015,1,"Gare de Besançon-Mouillère",47.240382,6.033751,-1,0,SIN:SA:OCE87718015,Europe/Paris,,STE, +STE:SP:OCECarTER-87718122,1,"Gare de Byans",47.118586,5.85224,-1,0,SIN:SA:OCE87718122,Europe/Paris,,STE, +STE:SP:OCECarTER-87718130,1,"Gare de Liesle",47.058829,5.820603,-1,0,SIN:SA:OCE87718130,Europe/Paris,,STE, +STE:SP:OCECarTER-87718155,1,"Gare de Arbois (Jura)",46.912425,5.764767,-1,0,SIN:SA:OCE87718155,Europe/Paris,,STE, +STE:SP:OCECarTER-87718189,1,"Gare de Poligny",46.844169,5.700318,-1,0,SIN:SA:OCE87718189,Europe/Paris,,STE, +STE:SP:OCECarTER-87718197,1,"Gare de St-Lothain",46.823719,5.64506,-1,0,SIN:SA:OCE87718197,Europe/Paris,,STE, +STE:SP:OCECarTER-87718205,1,"Passenans",46.798483,5.618023,-1,0,SIN:SA:OCE87718205,Europe/Paris,,STE, +STE:SP:OCECarTER-87718221,1,"Montain-Lavigny",46.715514,5.585348,-1,0,SIN:SA:OCE87718221,Europe/Paris,,STE, +STE:SP:OCECarTER-87718239,1,"Gare de Lons-le-Saunier",46.668398,5.550877,-1,0,SIN:SA:OCE87718239,Europe/Paris,,STE, +STE:SP:OCECarTER-87718502,1,"Gare de Saône",47.209573,6.101417,-1,0,SIN:SA:OCE87718502,Europe/Paris,,STE, +STE:SP:OCECarTER-87718510,1,"Gare de Mamirolle",47.199891,6.161878,-1,0,SIN:SA:OCE87718510,Europe/Paris,,STE, +STE:SP:OCECarTER-87718528,1,"Gare de L'Hôpital-du-Gros-Bois",47.169216,6.213308,-1,0,SIN:SA:OCE87718528,Europe/Paris,,STE, +STE:SP:OCECarTER-87718544,1,"Gare de Le Valdahon",47.149697,6.342275,-1,0,SIN:SA:OCE87718544,Europe/Paris,,STE, +STE:SP:OCECarTER-87718551,1,"Gare de Avoudrey",47.129855,6.434848,-1,0,SIN:SA:OCE87718551,Europe/Paris,,STE, +STE:SP:OCECarTER-87718577,1,"Gare de Gilley",47.050484,6.49229,-1,0,SIN:SA:OCE87718577,Europe/Paris,,STE, +STE:SP:OCECarTER-87718619,1,"Gare de Morteau",47.053691,6.60486,-1,0,SIN:SA:OCE87718619,Europe/Paris,,STE, +STE:SP:OCECarTER-87718833,1,"Gare de Mouchard",46.976813,5.799724,-1,0,SIN:SA:OCE87718833,Europe/Paris,,STE, +STE:SP:OCECarTER-87718841,1,"Gare de Arc-et-Senans",47.030456,5.776935,-1,0,SIN:SA:OCE87718841,Europe/Paris,,STE, +STE:SP:OCECarTER-87718866,1,"Gare de Montbarrey",47.035877,5.637226,-1,0,SIN:SA:OCE87718866,Europe/Paris,,STE, +STE:SP:OCECarTER-87718890,1,"Salins-les-Bains",46.937011,5.876125,-1,0,SIN:SA:OCE87718890,Europe/Paris,,STE, +STE:SP:OCECarTER-87719906,1,"Marcilly sur Tille",47.521609,5.147178,-1,0,SIN:SA:OCE87719906,Europe/Paris,,STE, +STE:SP:OCECarTER-87719914,1,"Ampilly-le-Sec",47.812061,4.530932,-1,0,SIN:SA:OCE87719914,Europe/Paris,,STE, +STE:SP:OCECarTER-87719922,1,"Coulmier-le-Sec",47.750198,4.493285,-1,0,SIN:SA:OCE87719922,Europe/Paris,,STE, +STE:SP:OCECarTER-87719930,1,"Etais",47.708282,4.437541,-1,0,SIN:SA:OCE87719930,Europe/Paris,,STE, +STE:SP:OCECarTER-87719948,1,"Puits",47.731624,4.464591,-1,0,SIN:SA:OCE87719948,Europe/Paris,,STE, +STE:SP:OCECarTER-87721332,1,"Gare de Villefranche-sur-Saône",45.984444,4.720814,-1,0,SIN:SA:OCE87721332,Europe/Paris,,STE, +STE:SP:OCECarTER-87721340,1,"Gare de St-Georges-de-Reneins",46.062191,4.718887,-1,0,SIN:SA:OCE87721340,Europe/Paris,,STE, +STE:SP:OCECarTER-87721357,1,"Gare de Belleville-sur-Saône",46.111942,4.729002,-1,0,SIN:SA:OCE87721357,Europe/Paris,,STE, +STE:SP:OCECarTER-87721423,1,"Gare de Lozanne",45.854135,4.68146,-1,0,SIN:SA:OCE87721423,Europe/Paris,,STE, +STE:SP:OCECarTER-87721753,1,"Gare de Chatillon-d'Azergues",45.875254,4.645199,-1,0,SIN:SA:OCE87721753,Europe/Paris,,STE, +STE:SP:OCECarTER-87721761,1,"Gare de Chessy (Rhône)",45.885537,4.622497,-1,0,SIN:SA:OCE87721761,Europe/Paris,,STE, +STE:SP:OCECarTER-87721779,1,"Le Breuil (Rhône)",45.896771,4.591215,-1,0,SIN:SA:OCE87721779,Europe/Paris,,STE, +STE:SP:OCECarTER-87721787,1,"Gare de Bois-d'Oingt-Légny",45.906588,4.57558,-1,0,SIN:SA:OCE87721787,Europe/Paris,,STE, +STE:SP:OCECarTER-87721811,1,"Ternand",45.946157,4.536593,-1,0,SIN:SA:OCE87721811,Europe/Paris,,STE, +STE:SP:OCECarTER-87721829,1,"Gare de Chamelet",45.981605,4.507096,-1,0,SIN:SA:OCE87721829,Europe/Paris,,STE, +STE:SP:OCECarTER-87721845,1,"Chambost-Allières.",46.018686,4.499135,-1,0,SIN:SA:OCE87721845,Europe/Paris,,STE, +STE:SP:OCECarTER-87721852,1,"Grandris-Folletière.",46.035952,4.49333,-1,0,SIN:SA:OCE87721852,Europe/Paris,,STE, +STE:SP:OCECarTER-87721860,1,"Gare de Lamure-sur-Azergues",46.061095,4.492123,-1,0,SIN:SA:OCE87721860,Europe/Paris,,STE, +STE:SP:OCECarTER-87721878,1,"St-Nizier-d'Azergues",46.087032,4.48043,-1,0,SIN:SA:OCE87721878,Europe/Paris,,STE, +STE:SP:OCECarTER-87721894,1,"Poule",46.148108,4.456527,-1,0,SIN:SA:OCE87721894,Europe/Paris,,STE, +STE:SP:OCECarTER-87725002,1,"Gare de Chalon-sur-Saône",46.78157,4.843489,-1,0,SIN:SA:OCE87725002,Europe/Paris,,STE, +STE:SP:OCECarTER-87725689,1,"Gare de Mâcon-Ville",46.302659,4.825149,-1,0,SIN:SA:OCE87725689,Europe/Paris,,STE, +STE:SP:OCECarTER-87725705,1,"Gare de Mâcon-Loché-TGV",46.282898,4.778948,-1,0,SIN:SA:OCE87725705,Europe/Paris,,STE, +STE:SP:OCECarTER-87725713,1,"Gare de Crêches-sur-Saône",46.246615,4.783901,-1,0,SIN:SA:OCE87725713,Europe/Paris,,STE, +STE:SP:OCECarTER-87725739,1,"Gare de Romanèche-Thorins",46.176382,4.742101,-1,0,SIN:SA:OCE87725739,Europe/Paris,,STE, +STE:SP:OCECarTER-87725804,1,"Gare de Pont-de-Veyle",46.267827,4.892948,-1,0,SIN:SA:OCE87725804,Europe/Paris,,STE, +STE:SP:OCECarTER-87725812,1,"St-Jean-sur-Veyle",46.260588,4.915644,-1,0,SIN:SA:OCE87725812,Europe/Paris,,STE, +STE:SP:OCECarTER-87725820,1,"Gare de Vonnas",46.227197,4.991746,-1,0,SIN:SA:OCE87725820,Europe/Paris,,STE, +STE:SP:OCECarTER-87725838,1,"Gare de Mézériat",46.234927,5.046569,-1,0,SIN:SA:OCE87725838,Europe/Paris,,STE, +STE:SP:OCECarTER-87739912,1,"Remigny",46.908033,4.721624,-1,0,SIN:SA:OCE87739912,Europe/Paris,,STE, +STE:SP:OCECarTER-87739961,1,"St-Symphorien-des-Bois",46.332735,4.2814,-1,0,SIN:SA:OCE87739961,Europe/Paris,,STE, +STE:SP:OCECarTER-87743005,1,"Gare de Bourg-en-Bresse",46.200126,5.214969,-1,0,SIN:SA:OCE87743005,Europe/Paris,,STE, +STE:SP:OCECarTER-87743328,1,"Gare de Villereversure",46.194155,5.397522,-1,0,SIN:SA:OCE87743328,Europe/Paris,,STE, +STE:SP:OCECarTER-87743351,1,"Gare de Nurieux",46.184727,5.527912,-1,0,SIN:SA:OCE87743351,Europe/Paris,,STE, +STE:SP:OCECarTER-87743500,1,"Montréal",46.184275,5.577369,-1,0,SIN:SA:OCE87743500,Europe/Paris,,STE, +STE:SP:OCECarTER-87743518,1,"Martignat",46.209449,5.610343,-1,0,SIN:SA:OCE87743518,Europe/Paris,,STE, +STE:SP:OCECarTER-87743534,1,"Gare de Oyonnax",46.259609,5.653252,-1,0,SIN:SA:OCE87743534,Europe/Paris,,STE, +STE:SP:OCECarTER-87743591,1,"Gare de Molinges",46.356961,5.768063,-1,0,SIN:SA:OCE87743591,Europe/Paris,,STE, +STE:SP:OCECarTER-87743633,1,"Gare de St-Claude",46.38993,5.860389,-1,0,SIN:SA:OCE87743633,Europe/Paris,,STE, +STE:SP:OCECarTER-87936989,1,"Buswiller-Eglise",48.819683,7.559425,-1,0,SIN:SA:OCE87936989,Europe/Paris,,STE, +STE:SP:OCETrainTER-80142893,1,"Gare de Appenweier",48.541345,7.973698,-1,0,STE:SA:OCE80142893,Europe/Paris,,STE, +STE:SP:OCETrainTER-80142901,1,"Gare de Legelshurst",48.558591,7.913749,-1,0,STE:SA:OCE80142901,Europe/Paris,,STE, +STE:SP:OCETrainTER-80142919,1,"Gare de Kork",48.570037,7.874033,-1,0,STE:SA:OCE80142919,Europe/Paris,,STE, +STE:SP:OCETrainTER-80142927,1,"Gare de Kehl",48.576507,7.808029,-1,0,SIN:SA:OCE80142927,Europe/Paris,,STE, +STE:SP:OCETrainTER-80143099,1,"Gare de Offenburg",48.476466,7.946721,-1,0,STE:SA:OCE80143099,Europe/Paris,,STE, +STE:SP:OCETrainTER-80143503,1,"Gare de Freiburg-Breisgau",47.99779,7.841586,-1,0,STE:SA:OCE80143503,Europe/Paris,,STE, +STE:SP:OCETrainTER-80144139,1,"Gare de Mullheim-Baden-Bf",47.809698,7.600059,-1,0,STE:SA:OCE80144139,Europe/Paris,,STE, +STE:SP:OCETrainTER-80144154,1,"Gare de NEUENBURG BADEN",47.811651,7.56288,-1,0,STE:SA:OCE80144154,Europe/Paris,,STE, +STE:SP:OCETrainTER-80191031,1,"Gare de WOERTH RHEIN",49.046095,8.273348,-1,0,STE:SA:OCE80191031,Europe/Paris,,STE, +STE:SP:OCETrainTER-80194035,1,"Gare de Neustadt (Weinstr) Hbf",49.350062,8.140676,-1,0,STE:SA:OCE80194035,Europe/Paris,,STE, +STE:SP:OCETrainTER-80194258,1,"Gare de Landau Hbf",49.197626,8.125599,-1,0,STE:SA:OCE80194258,Europe/Paris,,STE, +STE:SP:OCETrainTER-80194324,1,"Gare de WINDEN PFALZ",49.09544,8.122406,-1,0,STE:SA:OCE80194324,Europe/Paris,,STE, +STE:SP:OCETrainTER-80251819,1,"Gare de Trier-Hbf",49.756797,6.652356,-1,0,STE:SA:OCE80251819,Europe/Paris,,STE, +STE:SP:OCETrainTER-80251850,1,"Gare de Konz-Mitte",49.70008,6.573271,-1,0,STE:SA:OCE80251850,Europe/Paris,,STE, +STE:SP:OCETrainTER-80251967,1,"Gare de Perl",49.473195,6.369305,-1,0,STE:SA:OCE80251967,Europe/Paris,,STE, +STE:SP:OCETrainTER-80253914,1,"Gare de Saarbrucken-Hbf",49.240676,6.990983,-1,0,SIN:SA:OCE80253914,Europe/Paris,,STE, +STE:SP:OCETrainTER-82001000,1,"Gare de Luxembourg",49.599652,6.134007,-1,0,SIN:SA:OCE82001000,Europe/Paris,,STE, +STE:SP:OCETrainTER-82002370,1,"Gare de Rodange",49.551039,5.839638,-1,0,STE:SA:OCE82002370,Europe/Paris,,STE, +STE:SP:OCETrainTER-82006030,1,"Gare de Bettembourg",49.515996,6.099371,-1,0,SIN:SA:OCE82006030,Europe/Paris,,STE, +STE:SP:OCETrainTER-82009300,1,"Gare de Petange",49.552084,5.860895,-1,0,STE:SA:OCE82009300,Europe/Paris,,STE, +STE:SP:OCETrainTER-85000109,1,"Gare de Basel-SBB",47.547038,7.589567,-1,0,SIN:SA:OCE85000109,Europe/Paris,,STE, +STE:SP:OCETrainTER-85011031,1,"Gare de Vallorbe-Cff",46.712229,6.370815,-1,0,SIN:SA:OCE85011031,Europe/Paris,,STE, +STE:SP:OCETrainTER-85042150,1,"Gare de Travers",47.5423,7.41307,-1,0,STE:SA:OCE85042150,Europe/Paris,,STE, +STE:SP:OCETrainTER-85042218,1,"Gare de Neuchâtel",47.596593,7.672129,-1,0,STE:SA:OCE85042218,Europe/Paris,,STE, +STE:SP:OCETrainTER-85043141,1,"Gare de La Chaux-de-Fonds",47.098901,6.825585,-1,0,STE:SA:OCE85043141,Europe/Paris,,STE, +STE:SP:OCETrainTER-85043158,1,"Gare de Crêt-du-Locle (le)",47.077743,6.785299,-1,0,STE:SA:OCE85043158,Europe/Paris,,STE, +STE:SP:OCETrainTER-87109306,1,"Gare de Lille CHR",50.614528,3.035514,-1,0,STE:SA:OCE87109306,Europe/Paris,,STE, +STE:SP:OCETrainTER-87113001,1,"Gare de Paris-Est",48.87657,2.359151,-1,0,SIN:SA:OCE87113001,Europe/Paris,,STE, +STE:SP:OCETrainTER-87116137,1,"Gare de Longueville (S.-et-M.)",48.513511,3.249685,-1,0,SIN:SA:OCE87116137,Europe/Paris,,STE, +STE:SP:OCETrainTER-87116582,1,"Gare de Château-Thierry",49.038171,3.409266,-1,0,TRN:SA:DUA8711658,Europe/Paris,,STE, +STE:SP:OCETrainTER-87118000,1,"Gare de Troyes",48.29503,4.065384,-1,0,SIN:SA:OCE87118000,Europe/Paris,,STE, +STE:SP:OCETrainTER-87118158,1,"Gare de Romilly-sur-Seine",48.514173,3.728332,-1,0,SIN:SA:OCE87118158,Europe/Paris,,STE, +STE:SP:OCETrainTER-87118190,1,"Gare de Nogent-sur-Seine",48.497837,3.493708,-1,0,SIN:SA:OCE87118190,Europe/Paris,,STE, +STE:SP:OCETrainTER-87118257,1,"Gare de Vendeuvre (Aube)",48.240336,4.467188,-1,0,SIN:SA:OCE87118257,Europe/Paris,,STE, +STE:SP:OCETrainTER-87118299,1,"Gare de Bar-sur-Aube",48.23855,4.706838,-1,0,SIN:SA:OCE87118299,Europe/Paris,,STE, +STE:SP:OCETrainTER-87131961,1,"Gare de Brion-Montréal-La Cluse",46.175782,5.55851,-1,0,SIN:SA:OCE87131961,Europe/Paris,,STE, +STE:SP:OCETrainTER-87141002,1,"Gare de Nancy-Ville",48.689782,6.174272,-1,0,SIN:SA:OCE87141002,Europe/Paris,,STE, +STE:SP:OCETrainTER-87141010,1,"Gare de Jarville-la-Malgrange",48.669949,6.202212,-1,0,STE:SA:OCE87141010,Europe/Paris,,STE, +STE:SP:OCETrainTER-87141036,1,"Gare de Foug",48.679149,5.791507,-1,0,STE:SA:OCE87141036,Europe/Paris,,STE, +STE:SP:OCETrainTER-87141044,1,"Gare de Toul",48.679041,5.880577,-1,0,SIN:SA:OCE87141044,Europe/Paris,,STE, +STE:SP:OCETrainTER-87141051,1,"Gare de Fontenoy-sur-Moselle",48.711451,5.980135,-1,0,STE:SA:OCE87141051,Europe/Paris,,STE, +STE:SP:OCETrainTER-87141069,1,"Gare de Liverdun",48.749397,6.061636,-1,0,SIN:SA:OCE87141069,Europe/Paris,,STE, +STE:SP:OCETrainTER-87141077,1,"Gare de Frouard",48.755524,6.144248,-1,0,SIN:SA:OCE87141077,Europe/Paris,,STE, +STE:SP:OCETrainTER-87141085,1,"Gare de Champigneulles",48.735091,6.169047,-1,0,SIN:SA:OCE87141085,Europe/Paris,,STE, +STE:SP:OCETrainTER-87141093,1,"Gare de Laneuveville-devt-Nancy",48.65565,6.228019,-1,0,STE:SA:OCE87141093,Europe/Paris,,STE, +STE:SP:OCETrainTER-87141101,1,"Gare de Varangéville-St-Nicolas",48.63515,6.313367,-1,0,STE:SA:OCE87141101,Europe/Paris,,STE, +STE:SP:OCETrainTER-87141119,1,"Gare de Dombasle-sur-Meurthe",48.623342,6.343528,-1,0,STE:SA:OCE87141119,Europe/Paris,,STE, +STE:SP:OCETrainTER-87141127,1,"Gare de Rosières-aux-Salines",48.605424,6.350632,-1,0,STE:SA:OCE87141127,Europe/Paris,,STE, +STE:SP:OCETrainTER-87141135,1,"Gare de Blainville-Damelevières",48.564914,6.38672,-1,0,STE:SA:OCE87141135,Europe/Paris,,STE, +STE:SP:OCETrainTER-87141143,1,"Gare de Mont-sur-Meurthe",48.559946,6.44984,-1,0,SIN:SA:OCE87141143,Europe/Paris,,STE, +STE:SP:OCETrainTER-87141150,1,"Gare de Lunéville",48.587994,6.497035,-1,0,SIN:SA:OCE87141150,Europe/Paris,,STE, +STE:SP:OCETrainTER-87141200,1,"Gare de Einvaux",48.503597,6.393219,-1,0,STE:SA:OCE87141200,Europe/Paris,,STE, +STE:SP:OCETrainTER-87141218,1,"Gare de Bayon",48.468049,6.322897,-1,0,STE:SA:OCE87141218,Europe/Paris,,STE, +STE:SP:OCETrainTER-87141291,1,"Gare de Neufchâteau",48.357259,5.690179,-1,0,SIN:SA:OCE87141291,Europe/Paris,,STE, +STE:SP:OCETrainTER-87141374,1,"Gare de St-Clément-Laronxe",48.531156,6.608597,-1,0,STE:SA:OCE87141374,Europe/Paris,,STE, +STE:SP:OCETrainTER-87141382,1,"Gare de Chenevières",48.519542,6.632446,-1,0,STE:SA:OCE87141382,Europe/Paris,,STE, +STE:SP:OCETrainTER-87141390,1,"Gare de Ménil-Flin",48.504998,6.659214,-1,0,STE:SA:OCE87141390,Europe/Paris,,STE, +STE:SP:OCETrainTER-87141408,1,"Gare de Azerailles",48.491271,6.69614,-1,0,STE:SA:OCE87141408,Europe/Paris,,STE, +STE:SP:OCETrainTER-87141416,1,"Gare de Baccarat",48.452278,6.744065,-1,0,STE:SA:OCE87141416,Europe/Paris,,STE, +STE:SP:OCETrainTER-87141424,1,"Gare de Bertrichamps",48.428407,6.791071,-1,0,STE:SA:OCE87141424,Europe/Paris,,STE, +STE:SP:OCETrainTER-87141432,1,"Gare de Thiaville",48.413851,6.810229,-1,0,STE:SA:OCE87141432,Europe/Paris,,STE, +STE:SP:OCETrainTER-87141473,1,"Gare de Houdemont",48.645555,6.179676,-1,0,STE:SA:OCE87141473,Europe/Paris,,STE, +STE:SP:OCETrainTER-87141481,1,"Gare de Ludres",48.621999,6.170892,-1,0,STE:SA:OCE87141481,Europe/Paris,,STE, +STE:SP:OCETrainTER-87141499,1,"Gare de Messein",48.612824,6.138063,-1,0,STE:SA:OCE87141499,Europe/Paris,,STE, +STE:SP:OCETrainTER-87141507,1,"Gare de Neuves-Maisons",48.6148,6.107791,-1,0,STE:SA:OCE87141507,Europe/Paris,,STE, +STE:SP:OCETrainTER-87141523,1,"Gare de Pont-St-Vincent",48.602471,6.102964,-1,0,SIN:SA:OCE87141523,Europe/Paris,,STE, +STE:SP:OCETrainTER-87141788,1,"Gare de Pompey",48.773245,6.130667,-1,0,SIN:SA:OCE87141788,Europe/Paris,,STE, +STE:SP:OCETrainTER-87141796,1,"Gare de Marbache",48.801207,6.10931,-1,0,SIN:SA:OCE87141796,Europe/Paris,,STE, +STE:SP:OCETrainTER-87141804,1,"Gare de Belleville",48.819461,6.101753,-1,0,SIN:SA:OCE87141804,Europe/Paris,,STE, +STE:SP:OCETrainTER-87141812,1,"Gare de Dieulouard",48.843705,6.071669,-1,0,SIN:SA:OCE87141812,Europe/Paris,,STE, +STE:SP:OCETrainTER-87141820,1,"Gare de Pont-à-Mousson",48.900276,6.050802,-1,0,SIN:SA:OCE87141820,Europe/Paris,,STE, +STE:SP:OCETrainTER-87142000,1,"Gare de Chaumont",48.109454,5.134445,-1,0,SIN:SA:OCE87142000,Europe/Paris,,STE, +STE:SP:OCETrainTER-87142091,1,"Gare de Langres",47.877255,5.34468,-1,0,SIN:SA:OCE87142091,Europe/Paris,,STE, +STE:SP:OCETrainTER-87142125,1,"Gare de Culmont-Chalindrey",47.810232,5.443216,-1,0,SIN:SA:OCE87142125,Europe/Paris,,STE, +STE:SP:OCETrainTER-87142224,1,"Gare de Bologne",48.198598,5.13424,-1,0,STE:SA:OCE87142224,Europe/Paris,,STE, +STE:SP:OCETrainTER-87142232,1,"Gare de Vignory",48.270507,5.124221,-1,0,STE:SA:OCE87142232,Europe/Paris,,STE, +STE:SP:OCETrainTER-87142240,1,"Gare de Froncles",48.296653,5.141589,-1,0,SIN:SA:OCE87142240,Europe/Paris,,STE, +STE:SP:OCETrainTER-87142265,1,"Gare de Gudmont",48.337453,5.140831,-1,0,STE:SA:OCE87142265,Europe/Paris,,STE, +STE:SP:OCETrainTER-87142273,1,"Gare de Donjeux",48.365953,5.148406,-1,0,SIN:SA:OCE87142273,Europe/Paris,,STE, +STE:SP:OCETrainTER-87143024,1,"Gare de Vraincourt-Vieville",48.237101,5.123848,-1,0,SIN:SA:OCE87143024,Europe/Paris,,STE, +STE:SP:OCETrainTER-87144006,1,"Gare de Epinal",48.178078,6.441555,-1,0,SIN:SA:OCE87144006,Europe/Paris,,STE, +STE:SP:OCETrainTER-87144014,1,"Gare de St-Dié-des-Vosges",48.282238,6.948056,-1,0,SIN:SA:OCE87144014,Europe/Paris,,STE, +STE:SP:OCETrainTER-87144030,1,"Gare de Docelles-Cheniménil",48.141471,6.606979,-1,0,SIN:SA:OCE87144030,Europe/Paris,,STE, +STE:SP:OCETrainTER-87144048,1,"Gare de Lépanges",48.17268,6.67216,-1,0,SIN:SA:OCE87144048,Europe/Paris,,STE, +STE:SP:OCETrainTER-87144055,1,"Gare de Charmes (Vosges)",48.378659,6.301303,-1,0,SIN:SA:OCE87144055,Europe/Paris,,STE, +STE:SP:OCETrainTER-87144063,1,"Gare de Vincey (Vosges)",48.343427,6.335839,-1,0,STE:SA:OCE87144063,Europe/Paris,,STE, +STE:SP:OCETrainTER-87144071,1,"Gare de Châtel-Nomexy",48.307118,6.388046,-1,0,STE:SA:OCE87144071,Europe/Paris,,STE, +STE:SP:OCETrainTER-87144089,1,"Gare de Igney",48.270914,6.399598,-1,0,STE:SA:OCE87144089,Europe/Paris,,STE, +STE:SP:OCETrainTER-87144097,1,"Gare de Thaon",48.244676,6.416316,-1,0,STE:SA:OCE87144097,Europe/Paris,,STE, +STE:SP:OCETrainTER-87144105,1,"Gare de Raves-Ban-de-Laveline",48.265719,7.037474,-1,0,SIN:SA:OCE87144105,Europe/Paris,,STE, +STE:SP:OCETrainTER-87144121,1,"Gare de Xertigny",48.053001,6.376753,-1,0,STE:SA:OCE87144121,Europe/Paris,,STE, +STE:SP:OCETrainTER-87144147,1,"Gare de Bains-les-Bains",47.981215,6.295184,-1,0,STE:SA:OCE87144147,Europe/Paris,,STE, +STE:SP:OCETrainTER-87144154,1,"Gare de Bruyères (Vosges)",48.20475,6.719211,-1,0,SIN:SA:OCE87144154,Europe/Paris,,STE, +STE:SP:OCETrainTER-87144162,1,"Gare de Laveline-devant-Bruyère",48.185524,6.751638,-1,0,SIN:SA:OCE87144162,Europe/Paris,,STE, +STE:SP:OCETrainTER-87144188,1,"Gare de Biffontaine",48.205873,6.806999,-1,0,SIN:SA:OCE87144188,Europe/Paris,,STE, +STE:SP:OCETrainTER-87144196,1,"Gare de Corcieux-Vanémont",48.198435,6.877644,-1,0,SIN:SA:OCE87144196,Europe/Paris,,STE, +STE:SP:OCETrainTER-87144329,1,"Gare de Lesseux-Frapelle",48.289721,7.07661,-1,0,STE:SA:OCE87144329,Europe/Paris,,STE, +STE:SP:OCETrainTER-87144345,1,"Gare de Provenchères-sur-Fave",48.304653,7.085157,-1,0,SIN:SA:OCE87144345,Europe/Paris,,STE, +STE:SP:OCETrainTER-87144386,1,"Gare de Colroy-Lubine",48.314656,7.131263,-1,0,STE:SA:OCE87144386,Europe/Paris,,STE, +STE:SP:OCETrainTER-87144410,1,"Gare de Arches",48.119961,6.528009,-1,0,SIN:SA:OCE87144410,Europe/Paris,,STE, +STE:SP:OCETrainTER-87144428,1,"Gare de Pouxeux",48.103977,6.580836,-1,0,STE:SA:OCE87144428,Europe/Paris,,STE, +STE:SP:OCETrainTER-87144436,1,"Gare de Eloyes",48.08715,6.60007,-1,0,STE:SA:OCE87144436,Europe/Paris,,STE, +STE:SP:OCETrainTER-87144451,1,"Gare de Remiremont",48.016367,6.599041,-1,0,SIN:SA:OCE87144451,Europe/Paris,,STE, +STE:SP:OCETrainTER-87144477,1,"Gare de St-Léonard (Vosges)",48.217703,6.942358,-1,0,SIN:SA:OCE87144477,Europe/Paris,,STE, +STE:SP:OCETrainTER-87144626,1,"Gare de Raon-l'Etape",48.40395,6.837079,-1,0,STE:SA:OCE87144626,Europe/Paris,,STE, +STE:SP:OCETrainTER-87144642,1,"Gare de Etival-Clairefontaine",48.367033,6.877098,-1,0,STE:SA:OCE87144642,Europe/Paris,,STE, +STE:SP:OCETrainTER-87144683,1,"Gare de St-Michel-sur-Meurthe",48.327484,6.888187,-1,0,STE:SA:OCE87144683,Europe/Paris,,STE, +STE:SP:OCETrainTER-87146217,1,"Gare de St-Nabord",48.045747,6.581609,-1,0,STE:SA:OCE87146217,Europe/Paris,,STE, +STE:SP:OCETrainTER-87171009,1,"Gare de Reims",49.259066,4.024017,-1,0,SIN:SA:OCE87171009,Europe/Paris,,STE, +STE:SP:OCETrainTER-87171256,1,"Gare de Montbré",49.193805,4.038664,-1,0,STE:SA:OCE87171256,Europe/Paris,,STE, +STE:SP:OCETrainTER-87171264,1,"Gare de Trois-Puits",49.206777,4.038379,-1,0,STE:SA:OCE87171264,Europe/Paris,,STE, +STE:SP:OCETrainTER-87171272,1,"Gare de Reims-Maison-Blanche",49.233392,4.022709,-1,0,STE:SA:OCE87171272,Europe/Paris,,STE, +STE:SP:OCETrainTER-87171298,1,"Gare de Muizon (PN32)",49.278258,3.891022,-1,0,STE:SA:OCE87171298,Europe/Paris,,STE, +STE:SP:OCETrainTER-87171314,1,"Gare de Jonchery-sur-Vesle",49.289725,3.819838,-1,0,STE:SA:OCE87171314,Europe/Paris,,STE, +STE:SP:OCETrainTER-87171322,1,"Gare de Breuil-Romain",49.308527,3.766017,-1,0,STE:SA:OCE87171322,Europe/Paris,,STE, +STE:SP:OCETrainTER-87171330,1,"Gare de Fismes",49.31085,3.682292,-1,0,SIN:SA:OCE87171330,Europe/Paris,,STE, +STE:SP:OCETrainTER-87171462,1,"Gare de Bazancourt",49.360999,4.173952,-1,0,STE:SA:OCE87171462,Europe/Paris,,STE, +STE:SP:OCETrainTER-87171512,1,"Gare de Dormans",49.079251,3.641728,-1,0,SIN:SA:OCE87171512,Europe/Paris,,STE, +STE:SP:OCETrainTER-87171553,1,"Gare de Epernay",49.046521,3.96021,-1,0,SIN:SA:OCE87171553,Europe/Paris,,STE, +STE:SP:OCETrainTER-87171561,1,"Gare de Ay",49.048792,4.001644,-1,0,STE:SA:OCE87171561,Europe/Paris,,STE, +STE:SP:OCETrainTER-87171579,1,"Gare de Avenay",49.064536,4.043282,-1,0,STE:SA:OCE87171579,Europe/Paris,,STE, +STE:SP:OCETrainTER-87171587,1,"Gare de Germaine",49.127942,4.022495,-1,0,STE:SA:OCE87171587,Europe/Paris,,STE, +STE:SP:OCETrainTER-87171595,1,"Gare de Rilly-la-Montagne",49.167204,4.041171,-1,0,STE:SA:OCE87171595,Europe/Paris,,STE, +STE:SP:OCETrainTER-87171611,1,"Gare de Val-de-Vesle (Marne)",49.178405,4.221674,-1,0,SIN:SA:OCE87171611,Europe/Paris,,STE, +STE:SP:OCETrainTER-87171629,1,"Gare de Prunay",49.198825,4.183555,-1,0,SIN:SA:OCE87171629,Europe/Paris,,STE, +STE:SP:OCETrainTER-87171637,1,"Gare de Sillery",49.203362,4.144066,-1,0,SIN:SA:OCE87171637,Europe/Paris,,STE, +STE:SP:OCETrainTER-87171645,1,"Gare de Sept-Saulx",49.151483,4.25648,-1,0,SIN:SA:OCE87171645,Europe/Paris,,STE, +STE:SP:OCETrainTER-87171702,1,"Gare de Aguilcourt-Variscourt",49.408007,3.972984,-1,0,STE:SA:OCE87171702,Europe/Paris,,STE, +STE:SP:OCETrainTER-87171710,1,"Gare de Courcy-Brimont",49.329158,4.014949,-1,0,STE:SA:OCE87171710,Europe/Paris,,STE, +STE:SP:OCETrainTER-87171728,1,"Gare de Loivre",49.346751,3.990411,-1,0,STE:SA:OCE87171728,Europe/Paris,,STE, +STE:SP:OCETrainTER-87171736,1,"Gare de Guignicourt (Aisne)",49.435105,3.961078,-1,0,STE:SA:OCE87171736,Europe/Paris,,STE, +STE:SP:OCETrainTER-87171744,1,"Gare de Amifontaine",49.484648,3.910675,-1,0,STE:SA:OCE87171744,Europe/Paris,,STE, +STE:SP:OCETrainTER-87171751,1,"Gare de St-Erme",49.526773,3.857401,-1,0,STE:SA:OCE87171751,Europe/Paris,,STE, +STE:SP:OCETrainTER-87171769,1,"Gare de Coucy-les-Eppes",49.555629,3.775876,-1,0,STE:SA:OCE87171769,Europe/Paris,,STE, +STE:SP:OCETrainTER-87171926,1,"Gare de Champagne-Ardenne",49.21164,3.988788,-1,0,SIN:SA:OCE87171926,Europe/Paris,,STE, +STE:SP:OCETrainTER-87172007,1,"Gare de Charleville-Mézières",49.76742,4.724849,-1,0,SIN:SA:OCE87172007,Europe/Paris,,STE, +STE:SP:OCETrainTER-87172023,1,"Gare de Nouzonville",49.812193,4.742666,-1,0,STE:SA:OCE87172023,Europe/Paris,,STE, +STE:SP:OCETrainTER-87172031,1,"Gare de Joigny-sur-Meuse",49.833377,4.766973,-1,0,STE:SA:OCE87172031,Europe/Paris,,STE, +STE:SP:OCETrainTER-87172049,1,"Gare de Bogny-sur-Meuse",49.858458,4.763337,-1,0,STE:SA:OCE87172049,Europe/Paris,,STE, +STE:SP:OCETrainTER-87172056,1,"Gare de Monthermé",49.865549,4.740996,-1,0,STE:SA:OCE87172056,Europe/Paris,,STE, +STE:SP:OCETrainTER-87172064,1,"Gare de Deville",49.879547,4.707018,-1,0,STE:SA:OCE87172064,Europe/Paris,,STE, +STE:SP:OCETrainTER-87172072,1,"Gare de Laifour",49.911504,4.692807,-1,0,STE:SA:OCE87172072,Europe/Paris,,STE, +STE:SP:OCETrainTER-87172080,1,"Gare de Revin",49.938564,4.642754,-1,0,STE:SA:OCE87172080,Europe/Paris,,STE, +STE:SP:OCETrainTER-87172098,1,"Gare de Fumay",49.986212,4.69199,-1,0,STE:SA:OCE87172098,Europe/Paris,,STE, +STE:SP:OCETrainTER-87172106,1,"Gare de Haybes",50.01174,4.703909,-1,0,STE:SA:OCE87172106,Europe/Paris,,STE, +STE:SP:OCETrainTER-87172114,1,"Gare de Vireux-Molhain",50.082871,4.723135,-1,0,STE:SA:OCE87172114,Europe/Paris,,STE, +STE:SP:OCETrainTER-87172122,1,"Gare de Aubrives",50.103662,4.760893,-1,0,STE:SA:OCE87172122,Europe/Paris,,STE, +STE:SP:OCETrainTER-87172130,1,"Gare de Givet",50.140253,4.817939,-1,0,STE:SA:OCE87172130,Europe/Paris,,STE, +STE:SP:OCETrainTER-87172155,1,"Gare de Mohon",49.752647,4.733252,-1,0,SIN:SA:OCE87172155,Europe/Paris,,STE, +STE:SP:OCETrainTER-87172171,1,"Gare de Poix-Terron",49.65,4.636409,-1,0,STE:SA:OCE87172171,Europe/Paris,,STE, +STE:SP:OCETrainTER-87172189,1,"Gare de Lumes-Halte",49.733176,4.782873,-1,0,SIN:SA:OCE87172189,Europe/Paris,,STE, +STE:SP:OCETrainTER-87172213,1,"Gare de Nouvion-sur-Meuse",49.696976,4.794932,-1,0,SIN:SA:OCE87172213,Europe/Paris,,STE, +STE:SP:OCETrainTER-87172221,1,"Gare de Vrigne-Meuse",49.70068,4.843068,-1,0,SIN:SA:OCE87172221,Europe/Paris,,STE, +STE:SP:OCETrainTER-87172239,1,"Gare de Donchery",49.698119,4.874566,-1,0,SIN:SA:OCE87172239,Europe/Paris,,STE, +STE:SP:OCETrainTER-87172254,1,"Gare de Sedan",49.694861,4.929989,-1,0,SIN:SA:OCE87172254,Europe/Paris,,STE, +STE:SP:OCETrainTER-87172262,1,"Gare de Amagne-Lucquy",49.523728,4.47375,-1,0,STE:SA:OCE87172262,Europe/Paris,,STE, +STE:SP:OCETrainTER-87172270,1,"Gare de Rethel",49.504571,4.370284,-1,0,STE:SA:OCE87172270,Europe/Paris,,STE, +STE:SP:OCETrainTER-87172353,1,"Gare de Carignan",49.62852,5.168468,-1,0,SIN:SA:OCE87172353,Europe/Paris,,STE, +STE:SP:OCETrainTER-87172544,1,"Gare de Liart-SNCF",49.771014,4.335172,-1,0,STE:SA:OCE87172544,Europe/Paris,,STE, +STE:SP:OCETrainTER-87172858,1,"Gare de Anchamps",49.930389,4.671588,-1,0,STE:SA:OCE87172858,Europe/Paris,,STE, +STE:SP:OCETrainTER-87172874,1,"Gare de Fépin",50.023735,4.725742,-1,0,STE:SA:OCE87172874,Europe/Paris,,STE, +STE:SP:OCETrainTER-87174003,1,"Gare de Châlons-en-Champagne",48.955509,4.348954,-1,0,SIN:SA:OCE87174003,Europe/Paris,,STE, +STE:SP:OCETrainTER-87174276,1,"Gare de Vitry-le-François",48.717733,4.587232,-1,0,SIN:SA:OCE87174276,Europe/Paris,,STE, +STE:SP:OCETrainTER-87174409,1,"Gare de Mourmelon-le-Petit",49.131225,4.317717,-1,0,SIN:SA:OCE87174409,Europe/Paris,,STE, +STE:SP:OCETrainTER-87174433,1,"Gare de Bouy",49.090872,4.353519,-1,0,SIN:SA:OCE87174433,Europe/Paris,,STE, +STE:SP:OCETrainTER-87174441,1,"Gare de St-Hilaire-au-Temple",49.056345,4.379006,-1,0,SIN:SA:OCE87174441,Europe/Paris,,STE, +STE:SP:OCETrainTER-87175000,1,"Gare de St-Dizier",48.642806,4.947186,-1,0,SIN:SA:OCE87175000,Europe/Paris,,STE, +STE:SP:OCETrainTER-87175018,1,"Gare de Revigny",48.824197,4.985552,-1,0,STE:SA:OCE87175018,Europe/Paris,,STE, +STE:SP:OCETrainTER-87175042,1,"Gare de Bar-le-Duc",48.773631,5.167016,-1,0,SIN:SA:OCE87175042,Europe/Paris,,STE, +STE:SP:OCETrainTER-87175067,1,"Gare de Nançois-Tronville",48.717984,5.291109,-1,0,STE:SA:OCE87175067,Europe/Paris,,STE, +STE:SP:OCETrainTER-87175075,1,"Gare de Fronville-St-Urbain",48.401361,5.156023,-1,0,STE:SA:OCE87175075,Europe/Paris,,STE, +STE:SP:OCETrainTER-87175091,1,"Gare de Joinville",48.44475,5.144287,-1,0,SIN:SA:OCE87175091,Europe/Paris,,STE, +STE:SP:OCETrainTER-87175117,1,"Gare de Chevillon",48.524273,5.111825,-1,0,SIN:SA:OCE87175117,Europe/Paris,,STE, +STE:SP:OCETrainTER-87175133,1,"Gare de Bayard",48.551521,5.076273,-1,0,SIN:SA:OCE87175133,Europe/Paris,,STE, +STE:SP:OCETrainTER-87175141,1,"Gare de Eurville",48.582915,5.044871,-1,0,STE:SA:OCE87175141,Europe/Paris,,STE, +STE:SP:OCETrainTER-87175240,1,"Gare de Lérouville",48.79625,5.539362,-1,0,STE:SA:OCE87175240,Europe/Paris,,STE, +STE:SP:OCETrainTER-87175257,1,"Gare de Commercy",48.765868,5.588885,-1,0,SIN:SA:OCE87175257,Europe/Paris,,STE, +STE:SP:OCETrainTER-87175778,1,"Gare de Verdun",49.165423,5.380066,-1,0,SIN:SA:OCE87175778,Europe/Paris,,STE, +STE:SP:OCETrainTER-87175794,1,"Gare de Etain",49.207707,5.639482,-1,0,SIN:SA:OCE87175794,Europe/Paris,,STE, +STE:SP:OCETrainTER-87175828,1,"Gare de Pagny-sur-Meuse",48.696575,5.733624,-1,0,STE:SA:OCE87175828,Europe/Paris,,STE, +STE:SP:OCETrainTER-87181016,1,"Gare de St-Louis-la-Chaussée",47.60952,7.531261,-1,0,STE:SA:OCE87181016,Europe/Paris,,STE, +STE:SP:OCETrainTER-87181024,1,"Gare de Hasenrain",47.736301,7.331322,-1,0,STE:SA:OCE87181024,Europe/Paris,,STE, +STE:SP:OCETrainTER-87181040,1,"Gare de Flaxlanden",47.698837,7.304603,-1,0,STE:SA:OCE87181040,Europe/Paris,,STE, +STE:SP:OCETrainTER-87181057,1,"Gare de Tagolsheim",47.654951,7.263919,-1,0,STE:SA:OCE87181057,Europe/Paris,,STE, +STE:SP:OCETrainTER-87181065,1,"Gare de Walheim",47.641795,7.26323,-1,0,STE:SA:OCE87181065,Europe/Paris,,STE, +STE:SP:OCETrainTER-87181131,1,"Gare de Graffenwald",47.780296,7.225576,-1,0,SIN:SA:OCE87181131,Europe/Paris,,STE, +STE:SP:OCETrainTER-87181222,1,"Gare de Colmar-St-Joseph",48.082108,7.343768,-1,0,STE:SA:OCE87181222,Europe/Paris,,STE, +STE:SP:OCETrainTER-87181289,1,"Gare de Vieux-Thann-Zi",47.80194,7.133222,-1,0,STE:SA:OCE87181289,Europe/Paris,,STE, +STE:SP:OCETrainTER-87181552,1,"Gare de St-Gilles-L (Haut-Rhin)",48.075345,7.26056,-1,0,SIN:SA:OCE87181552,Europe/Paris,,STE, +STE:SP:OCETrainTER-87182014,1,"Gare de Colmar",48.073154,7.347084,-1,0,SIN:SA:OCE87182014,Europe/Paris,,STE, +STE:SP:OCETrainTER-87182055,1,"Gare de Mulhouse-Dornach",47.74691,7.308525,-1,0,STE:SA:OCE87182055,Europe/Paris,,STE, +STE:SP:OCETrainTER-87182063,1,"Gare de Mulhouse",47.741798,7.34285,-1,0,SIN:SA:OCE87182063,Europe/Paris,,STE, +STE:SP:OCETrainTER-87182071,1,"Gare de Rixheim",47.74872,7.40655,-1,0,STE:SA:OCE87182071,Europe/Paris,,STE, +STE:SP:OCETrainTER-87182089,1,"Gare de Habsheim",47.737589,7.417936,-1,0,SIN:SA:OCE87182089,Europe/Paris,,STE, +STE:SP:OCETrainTER-87182105,1,"Gare de Sierentz",47.656098,7.459127,-1,0,STE:SA:OCE87182105,Europe/Paris,,STE, +STE:SP:OCETrainTER-87182113,1,"Gare de Bartenheim",47.634789,7.487687,-1,0,STE:SA:OCE87182113,Europe/Paris,,STE, +STE:SP:OCETrainTER-87182139,1,"Gare de St-Louis (Haut-Rhin)",47.590366,7.55553,-1,0,SIN:SA:OCE87182139,Europe/Paris,,STE, +STE:SP:OCETrainTER-87182196,1,"Gare de Zillisheim",47.694317,7.294181,-1,0,STE:SA:OCE87182196,Europe/Paris,,STE, +STE:SP:OCETrainTER-87182204,1,"Gare de Illfurth",47.675939,7.268178,-1,0,STE:SA:OCE87182204,Europe/Paris,,STE, +STE:SP:OCETrainTER-87182238,1,"Gare de Altkirch",47.627106,7.239591,-1,0,SIN:SA:OCE87182238,Europe/Paris,,STE, +STE:SP:OCETrainTER-87182253,1,"Gare de Dannemarie",47.627404,7.123805,-1,0,SIN:SA:OCE87182253,Europe/Paris,,STE, +STE:SP:OCETrainTER-87182329,1,"Gare de Herrlisheim-près-Colmar",48.017573,7.320563,-1,0,SIN:SA:OCE87182329,Europe/Paris,,STE, +STE:SP:OCETrainTER-87182337,1,"Gare de Rouffach",47.960089,7.312419,-1,0,SIN:SA:OCE87182337,Europe/Paris,,STE, +STE:SP:OCETrainTER-87182345,1,"Gare de Logelbach",48.087292,7.321091,-1,0,STE:SA:OCE87182345,Europe/Paris,,STE, +STE:SP:OCETrainTER-87182352,1,"Gare de Turckheim",48.085653,7.279168,-1,0,STE:SA:OCE87182352,Europe/Paris,,STE, +STE:SP:OCETrainTER-87182360,1,"Gare de Walbach-la-Forge",48.058625,7.234064,-1,0,SIN:SA:OCE87182360,Europe/Paris,,STE, +STE:SP:OCETrainTER-87182378,1,"Gare de Wihr-au-Val-Soultzbach",48.04621,7.209664,-1,0,SIN:SA:OCE87182378,Europe/Paris,,STE, +STE:SP:OCETrainTER-87182386,1,"Gare de Gunsbach-Griesbach",48.04161,7.174361,-1,0,STE:SA:OCE87182386,Europe/Paris,,STE, +STE:SP:OCETrainTER-87182394,1,"Gare de Munster",48.038247,7.132837,-1,0,SIN:SA:OCE87182394,Europe/Paris,,STE, +STE:SP:OCETrainTER-87182402,1,"Gare de Ranspach",47.881388,7.009157,-1,0,SIN:SA:OCE87659904,Europe/Paris,,STE, +STE:SP:OCETrainTER-87182410,1,"Gare de Cernay (Haut-Rhin)",47.801708,7.173937,-1,0,SIN:SA:OCE87182410,Europe/Paris,,STE, +STE:SP:OCETrainTER-87182543,1,"Gare de Luttenbach-près-Munster",48.035467,7.119097,-1,0,SIN:SA:OCE87665505,Europe/Paris,,STE, +STE:SP:OCETrainTER-87182550,1,"Gare de Vieux-Thann",47.805867,7.119454,-1,0,SIN:SA:OCE87659979,Europe/Paris,,STE, +STE:SP:OCETrainTER-87182568,1,"Gare de Thann",47.809107,7.107,-1,0,SIN:SA:OCE87182568,Europe/Paris,,STE, +STE:SP:OCETrainTER-87182576,1,"Gare de Bitschwiller (Ht-Rhin)",47.827795,7.078274,-1,0,STE:SA:OCE87182576,Europe/Paris,,STE, +STE:SP:OCETrainTER-87182584,1,"Gare de Willer-sur-Thur",47.842615,7.069192,-1,0,SIN:SA:OCE87182584,Europe/Paris,,STE, +STE:SP:OCETrainTER-87182592,1,"Gare de Moosch",47.86109,7.050591,-1,0,SIN:SA:OCE87182592,Europe/Paris,,STE, +STE:SP:OCETrainTER-87182600,1,"Gare de St-Amarin",47.873046,7.028693,-1,0,STE:SA:OCE87182600,Europe/Paris,,STE, +STE:SP:OCETrainTER-87182618,1,"Gare de Wesserling",47.889741,6.997841,-1,0,SIN:SA:OCE87182618,Europe/Paris,,STE, +STE:SP:OCETrainTER-87182626,1,"Gare de Fellering",47.897501,6.986938,-1,0,STE:SA:OCE87182626,Europe/Paris,,STE, +STE:SP:OCETrainTER-87182634,1,"Gare de Oderen",47.911289,6.973681,-1,0,STE:SA:OCE87182634,Europe/Paris,,STE, +STE:SP:OCETrainTER-87182642,1,"Gare de Kruth",47.922469,6.969584,-1,0,SIN:SA:OCE87182642,Europe/Paris,,STE, +STE:SP:OCETrainTER-87182659,1,"Gare de Breitenbach",48.028261,7.103602,-1,0,STE:SA:OCE87182659,Europe/Paris,,STE, +STE:SP:OCETrainTER-87182667,1,"Gare de Lutterbach (Haut-Rhin)",47.757923,7.276764,-1,0,SIN:SA:OCE87182667,Europe/Paris,,STE, +STE:SP:OCETrainTER-87182691,1,"Gare de Staffelfelden",47.827568,7.264953,-1,0,STE:SA:OCE87182691,Europe/Paris,,STE, +STE:SP:OCETrainTER-87182709,1,"Gare de Bollwiller",47.856726,7.267338,-1,0,STE:SA:OCE87182709,Europe/Paris,,STE, +STE:SP:OCETrainTER-87182717,1,"Gare de Raedersheim",47.886989,7.284056,-1,0,SIN:SA:OCE87182717,Europe/Paris,,STE, +STE:SP:OCETrainTER-87182725,1,"Gare de Merxheim",47.913117,7.302415,-1,0,SIN:SA:OCE87182725,Europe/Paris,,STE, +STE:SP:OCETrainTER-87182733,1,"Gare de Muhlbach-sur-Munster",48.024584,7.087677,-1,0,SIN:SA:OCE87182733,Europe/Paris,,STE, +STE:SP:OCETrainTER-87182816,1,"Gare de Metzeral",48.013586,7.073178,-1,0,SIN:SA:OCE87182816,Europe/Paris,,STE, +STE:SP:OCETrainTER-87182840,1,"Gare de Bantzenheim",47.811517,7.504448,-1,0,STE:SA:OCE87182840,Europe/Paris,,STE, +STE:SP:OCETrainTER-87182881,1,"Gare de Thann-Saint-Jacques",47.813107,7.094012,-1,0,SIN:SA:OCE87182881,Europe/Paris,,STE, +STE:SP:OCETrainTER-87182915,1,"Gare de Neuenburg-Baden-Frontiè",47.811421,7.562777,-1,0,STE:SA:OCE87182915,Europe/Paris,,STE, +STE:SP:OCETrainTER-87184002,1,"Gare de Belfort-Ville",47.632447,6.853924,-1,0,SIN:SA:OCE87184002,Europe/Paris,,STE, +STE:SP:OCETrainTER-87184200,1,"Gare de Bas-Evette",47.681087,6.807055,-1,0,STE:SA:OCE87184200,Europe/Paris,,STE, +STE:SP:OCETrainTER-87184242,1,"Gare de Trois-Chênes",47.648068,6.846055,-1,0,STE:SA:OCE87184242,Europe/Paris,,STE, +STE:SP:OCETrainTER-87184259,1,"Gare de Chèvremont",47.621698,6.922224,-1,0,SIN:SA:OCE87678458,Europe/Paris,,STE, +STE:SP:OCETrainTER-87184267,1,"Gare de Petit-Croix",47.610113,6.994637,-1,0,SIN:SA:OCE87184267,Europe/Paris,,STE, +STE:SP:OCETrainTER-87184275,1,"Gare de Montreux-Vieux",47.617858,7.025393,-1,0,SIN:SA:OCE87184275,Europe/Paris,,STE, +STE:SP:OCETrainTER-87184507,1,"Gare de Héricourt",47.573218,6.769411,-1,0,SIN:SA:OCE87184507,Europe/Paris,,STE, +STE:SP:OCETrainTER-87184523,1,"Gare de Montbéliard-Ville",47.510544,6.801315,-1,0,SIN:SA:OCE87184523,Europe/Paris,,STE, +STE:SP:OCETrainTER-87184531,1,"Gare de Voujeaucourt",47.479129,6.769869,-1,0,STE:SA:OCE87184531,Europe/Paris,,STE, +STE:SP:OCETrainTER-87184556,1,"Gare de Colombier-Fontaine",47.455399,6.689141,-1,0,STE:SA:OCE87184556,Europe/Paris,,STE, +STE:SP:OCETrainTER-87184572,1,"Gare de L'Isle-sur-le-Doubs",47.44748,6.581431,-1,0,STE:SA:OCE87184572,Europe/Paris,,STE, +STE:SP:OCETrainTER-87184622,1,"Gare de Clerval",47.396604,6.492318,-1,0,STE:SA:OCE87184622,Europe/Paris,,STE, +STE:SP:OCETrainTER-87185009,1,"Gare de Vesoul",47.617799,6.151767,-1,0,SIN:SA:OCE87185009,Europe/Paris,,STE, +STE:SP:OCETrainTER-87185249,1,"Gare de Lure",47.683249,6.492557,-1,0,SIN:SA:OCE87185249,Europe/Paris,,STE, +STE:SP:OCETrainTER-87185314,1,"Gare de Ronchamp",47.698972,6.623448,-1,0,SIN:SA:OCE87185314,Europe/Paris,,STE, +STE:SP:OCETrainTER-87185348,1,"Gare de Champagney",47.702952,6.701246,-1,0,SIN:SA:OCE87185348,Europe/Paris,,STE, +STE:SP:OCETrainTER-87185595,1,"Gare de Luxeuil-les-Bains",47.814919,6.372675,-1,0,SIN:SA:OCE87185595,Europe/Paris,,STE, +STE:SP:OCETrainTER-87185629,1,"Gare de Aillevillers",47.913865,6.337389,-1,0,SIN:SA:OCE87185629,Europe/Paris,,STE, +STE:SP:OCETrainTER-87187930,1,"Gare de Bâle-St-Jean",47.570369,7.5728,-1,0,STE:SA:OCE87187930,Europe/Paris,,STE, +STE:SP:OCETrainTER-87191007,1,"Gare de Thionville",49.353923,6.168855,-1,0,SIN:SA:OCE87191007,Europe/Paris,,STE, +STE:SP:OCETrainTER-87191106,1,"Gare de Maizières-lès-Metz",49.215223,6.158484,-1,0,SIN:SA:OCE87191106,Europe/Paris,,STE, +STE:SP:OCETrainTER-87191114,1,"Gare de Hagondange",49.253812,6.164402,-1,0,SIN:SA:OCE87191114,Europe/Paris,,STE, +STE:SP:OCETrainTER-87191130,1,"Gare de Uckange",49.303334,6.15658,-1,0,SIN:SA:OCE87191130,Europe/Paris,,STE, +STE:SP:OCETrainTER-87191163,1,"Gare de Hettange-Grande",49.40764,6.1568,-1,0,SIN:SA:OCE87191163,Europe/Paris,,STE, +STE:SP:OCETrainTER-87191239,1,"Gare de Hayange",49.330412,6.073163,-1,0,SIN:SA:OCE87191239,Europe/Paris,,STE, +STE:SP:OCETrainTER-87191601,1,"Gare de Basse-Ham",49.380299,6.23447,-1,0,SIN:SA:OCE87191601,Europe/Paris,,STE, +STE:SP:OCETrainTER-87191619,1,"Gare de Koenigsmacker",49.396456,6.273898,-1,0,STE:SA:OCE87191619,Europe/Paris,,STE, +STE:SP:OCETrainTER-87191627,1,"Gare de Malling",49.421708,6.30249,-1,0,STE:SA:OCE87191627,Europe/Paris,,STE, +STE:SP:OCETrainTER-87191635,1,"Gare de Sierck-les-Bains",49.443694,6.350181,-1,0,STE:SA:OCE87191635,Europe/Paris,,STE, +STE:SP:OCETrainTER-87191643,1,"Gare de Apach (Moselle)",49.458945,6.372363,-1,0,STE:SA:OCE87191643,Europe/Paris,,STE, +STE:SP:OCETrainTER-87191684,1,"Gare de Auboué",49.216148,5.971047,-1,0,SIN:SA:OCE87191684,Europe/Paris,,STE, +STE:SP:OCETrainTER-87191692,1,"Gare de Homécourt",49.218358,5.999515,-1,0,SIN:SA:OCE87191692,Europe/Paris,,STE, +STE:SP:OCETrainTER-87191700,1,"Gare de Joeuf",49.22508,6.017915,-1,0,SIN:SA:OCE87191700,Europe/Paris,,STE, +STE:SP:OCETrainTER-87191718,1,"Gare de Moyeuvre-Grande",49.247012,6.043197,-1,0,SIN:SA:OCE87191718,Europe/Paris,,STE, +STE:SP:OCETrainTER-87191734,1,"Gare de Rombas-Clouange",49.256043,6.099254,-1,0,SIN:SA:OCE87191734,Europe/Paris,,STE, +STE:SP:OCETrainTER-87191742,1,"Gare de Gandrange-Amnéville",49.260891,6.135794,-1,0,SIN:SA:OCE87191742,Europe/Paris,,STE, +STE:SP:OCETrainTER-87192039,1,"Gare de Metz-Ville",49.109787,6.177198,-1,0,SIN:SA:OCE87192039,Europe/Paris,,STE, +STE:SP:OCETrainTER-87192070,1,"Gare de Metz-Nord",49.136868,6.167576,-1,0,STE:SA:OCE87192070,Europe/Paris,,STE, +STE:SP:OCETrainTER-87192088,1,"Gare de Woippy",49.148358,6.155677,-1,0,SIN:SA:OCE87192088,Europe/Paris,,STE, +STE:SP:OCETrainTER-87192203,1,"Gare de Peltre",49.074006,6.222108,-1,0,STE:SA:OCE87192203,Europe/Paris,,STE, +STE:SP:OCETrainTER-87192211,1,"Gare de Courcelles-sur-Nied",49.063231,6.31121,-1,0,STE:SA:OCE87192211,Europe/Paris,,STE, +STE:SP:OCETrainTER-87192229,1,"Gare de Sanry-sur-Nied",49.044714,6.339801,-1,0,STE:SA:OCE87192229,Europe/Paris,,STE, +STE:SP:OCETrainTER-87192237,1,"Gare de Rémilly",49.014066,6.395031,-1,0,SIN:SA:OCE87192237,Europe/Paris,,STE, +STE:SP:OCETrainTER-87192286,1,"Gare de Morhange",48.936774,6.659093,-1,0,SIN:SA:OCE87192286,Europe/Paris,,STE, +STE:SP:OCETrainTER-87192302,1,"Gare de Bénestroff",48.906561,6.75327,-1,0,STE:SA:OCE87192302,Europe/Paris,,STE, +STE:SP:OCETrainTER-87192401,1,"Gare de Ars-sur-Moselle",49.074565,6.077928,-1,0,SIN:SA:OCE87192401,Europe/Paris,,STE, +STE:SP:OCETrainTER-87192419,1,"Gare de Ancy-sur-Moselle",49.057435,6.062451,-1,0,SIN:SA:OCE87192419,Europe/Paris,,STE, +STE:SP:OCETrainTER-87192427,1,"Gare de Novéant",49.028657,6.05203,-1,0,SIN:SA:OCE87192427,Europe/Paris,,STE, +STE:SP:OCETrainTER-87192435,1,"Gare de Onville",49.01364,5.979094,-1,0,SIN:SA:OCE87192435,Europe/Paris,,STE, +STE:SP:OCETrainTER-87192468,1,"Gare de Pagny-sur-Moselle",48.985345,6.025174,-1,0,SIN:SA:OCE87192468,Europe/Paris,,STE, +STE:SP:OCETrainTER-87192476,1,"Gare de Vandières",48.952497,6.038855,-1,0,SIN:SA:OCE87192476,Europe/Paris,,STE, +STE:SP:OCETrainTER-87192658,1,"Gare de Baroncourt",49.284381,5.700175,-1,0,SIN:SA:OCE87192658,Europe/Paris,,STE, +STE:SP:OCETrainTER-87192666,1,"Gare de Conflans-Jarny",49.16638,5.868244,-1,0,SIN:SA:OCE87192666,Europe/Paris,,STE, +STE:SP:OCETrainTER-87192724,1,"Gare de Hatrize",49.193944,5.907503,-1,0,SIN:SA:OCE87192724,Europe/Paris,,STE, +STE:SP:OCETrainTER-87192732,1,"Gare de Valleroy-Moineville",49.20574,5.935926,-1,0,SIN:SA:OCE87192732,Europe/Paris,,STE, +STE:SP:OCETrainTER-87193003,1,"Gare de Forbach",49.189491,6.901849,-1,0,SIN:SA:OCE87193003,Europe/Paris,,STE, +STE:SP:OCETrainTER-87193250,1,"Gare de Bening",49.138076,6.829009,-1,0,SIN:SA:OCE87193250,Europe/Paris,,STE, +STE:SP:OCETrainTER-87193276,1,"Gare de Hombourg-Haut",49.126127,6.77491,-1,0,STE:SA:OCE87193276,Europe/Paris,,STE, +STE:SP:OCETrainTER-87193318,1,"Gare de St-Avold",49.0857,6.72072,-1,0,STE:SA:OCE87193318,Europe/Paris,,STE, +STE:SP:OCETrainTER-87193342,1,"Gare de Téting (Moselle)",49.051889,6.664666,-1,0,STE:SA:OCE87193342,Europe/Paris,,STE, +STE:SP:OCETrainTER-87193359,1,"Gare de Faulquemont",49.045336,6.60366,-1,0,STE:SA:OCE87193359,Europe/Paris,,STE, +STE:SP:OCETrainTER-87193383,1,"Gare de Herny",49.003618,6.476822,-1,0,STE:SA:OCE87193383,Europe/Paris,,STE, +STE:SP:OCETrainTER-87193516,1,"Gare de Farebersviller",49.118083,6.861586,-1,0,STE:SA:OCE87193516,Europe/Paris,,STE, +STE:SP:OCETrainTER-87193524,1,"Gare de Farschviller",49.088013,6.908159,-1,0,STE:SA:OCE87193524,Europe/Paris,,STE, +STE:SP:OCETrainTER-87193540,1,"Gare de Hundling",49.107541,6.981621,-1,0,SIN:SA:OCE87193540,Europe/Paris,,STE, +STE:SP:OCETrainTER-87193615,1,"Gare de Sarreguemines",49.107505,7.068873,-1,0,SIN:SA:OCE87193615,Europe/Paris,,STE, +STE:SP:OCETrainTER-87193623,1,"Gare de Remelfing",49.091438,7.09129,-1,0,SIN:SA:OCE87193623,Europe/Paris,,STE, +STE:SP:OCETrainTER-87193631,1,"Gare de Sarreinsming",49.086181,7.11183,-1,0,SIN:SA:OCE87193631,Europe/Paris,,STE, +STE:SP:OCETrainTER-87193649,1,"Gare de Zetting",49.078333,7.134496,-1,0,SIN:SA:OCE87193649,Europe/Paris,,STE, +STE:SP:OCETrainTER-87193656,1,"Gare de Wittring",49.055964,7.141142,-1,0,SIN:SA:OCE87193656,Europe/Paris,,STE, +STE:SP:OCETrainTER-87193664,1,"Gare de Kalhausen",49.034995,7.125484,-1,0,SIN:SA:OCE87193664,Europe/Paris,,STE, +STE:SP:OCETrainTER-87193672,1,"Gare de Herbitzheim",49.016428,7.081851,-1,0,SIN:SA:OCE87193672,Europe/Paris,,STE, +STE:SP:OCETrainTER-87193714,1,"Gare de Sarralbe",49.00095,7.035714,-1,0,SIN:SA:OCE87193714,Europe/Paris,,STE, +STE:SP:OCETrainTER-87194001,1,"Gare de Longwy",49.513026,5.769596,-1,0,SIN:SA:OCE87194001,Europe/Paris,,STE, +STE:SP:OCETrainTER-87194209,1,"Gare de Montmédy",49.522788,5.371044,-1,0,SIN:SA:OCE87194209,Europe/Paris,,STE, +STE:SP:OCETrainTER-87194274,1,"Gare de Longuyon",49.444275,5.604598,-1,0,SIN:SA:OCE87194274,Europe/Paris,,STE, +STE:SP:OCETrainTER-87194357,1,"Gare de Audun-le-Roman",49.366686,5.891201,-1,0,SIN:SA:OCE87194357,Europe/Paris,,STE, +STE:SP:OCETrainTER-87212027,1,"Gare de Strasbourg",48.585172,7.733968,-1,0,SIN:SA:OCE87212027,Europe/Paris,,STE, +STE:SP:OCETrainTER-87212100,1,"Gare de Mundolsheim",48.645018,7.72132,-1,0,STE:SA:OCE87212100,Europe/Paris,,STE, +STE:SP:OCETrainTER-87212118,1,"Gare de Vendenheim",48.665842,7.717696,-1,0,STE:SA:OCE87212118,Europe/Paris,,STE, +STE:SP:OCETrainTER-87212126,1,"Gare de Stephansfeld",48.717475,7.704815,-1,0,STE:SA:OCE87212126,Europe/Paris,,STE, +STE:SP:OCETrainTER-87212134,1,"Gare de Brumath",48.733034,7.700431,-1,0,STE:SA:OCE87212134,Europe/Paris,,STE, +STE:SP:OCETrainTER-87212142,1,"Gare de Mommenheim",48.755663,7.642139,-1,0,SIN:SA:OCE87212142,Europe/Paris,,STE, +STE:SP:OCETrainTER-87212159,1,"Gare de Schwindratzheim",48.753638,7.600624,-1,0,STE:SA:OCE87212159,Europe/Paris,,STE, +STE:SP:OCETrainTER-87212167,1,"Gare de Hochfelden",48.755437,7.571964,-1,0,SIN:SA:OCE87212167,Europe/Paris,,STE, +STE:SP:OCETrainTER-87212175,1,"Gare de Wilwisheim",48.745822,7.507726,-1,0,STE:SA:OCE87212175,Europe/Paris,,STE, +STE:SP:OCETrainTER-87212183,1,"Gare de Dettwiller",48.751711,7.465417,-1,0,SIN:SA:OCE87212183,Europe/Paris,,STE, +STE:SP:OCETrainTER-87212191,1,"Gare de Strasbourg-Roethig",48.563145,7.693648,-1,0,STE:SA:OCE87212191,Europe/Paris,,STE, +STE:SP:OCETrainTER-87212209,1,"Gare de Steinbourg",48.76372,7.416534,-1,0,STE:SA:OCE87212209,Europe/Paris,,STE, +STE:SP:OCETrainTER-87212225,1,"Gare de Saverne",48.744779,7.362152,-1,0,SIN:SA:OCE87212225,Europe/Paris,,STE, +STE:SP:OCETrainTER-87212241,1,"Gare de Graffenstaden",48.533373,7.690114,-1,0,STE:SA:OCE87212241,Europe/Paris,,STE, +STE:SP:OCETrainTER-87212258,1,"Gare de Geispolsheim",48.521919,7.68537,-1,0,STE:SA:OCE87212258,Europe/Paris,,STE, +STE:SP:OCETrainTER-87212266,1,"Gare de Fegersheim-Lipsheim",48.490943,7.672556,-1,0,SIN:SA:OCE87212266,Europe/Paris,,STE, +STE:SP:OCETrainTER-87212274,1,"Gare de Limersheim",48.461114,7.659671,-1,0,STE:SA:OCE87212274,Europe/Paris,,STE, +STE:SP:OCETrainTER-87212308,1,"Gare de Bischheim",48.61165,7.742136,-1,0,SIN:SA:OCE87212308,Europe/Paris,,STE, +STE:SP:OCETrainTER-87212316,1,"Gare de La Wantzenau",48.665081,7.824465,-1,0,STE:SA:OCE87212316,Europe/Paris,,STE, +STE:SP:OCETrainTER-87212324,1,"Gare de Kilstett",48.679216,7.854015,-1,0,SIN:SA:OCE87212324,Europe/Paris,,STE, +STE:SP:OCETrainTER-87212332,1,"Gare de Gambsheim",48.694941,7.87892,-1,0,SIN:SA:OCE87212332,Europe/Paris,,STE, +STE:SP:OCETrainTER-87212340,1,"Gare de Herrlisheim (Bas-Rhin)",48.727519,7.910374,-1,0,SIN:SA:OCE87212340,Europe/Paris,,STE, +STE:SP:OCETrainTER-87212357,1,"Gare de Drusenheim",48.765977,7.947479,-1,0,SIN:SA:OCE87212357,Europe/Paris,,STE, +STE:SP:OCETrainTER-87212365,1,"Gare de Sessenheim",48.796075,7.988694,-1,0,SIN:SA:OCE87212365,Europe/Paris,,STE, +STE:SP:OCETrainTER-87212373,1,"Gare de Rountzenheim",48.820027,8.01138,-1,0,SIN:SA:OCE87212373,Europe/Paris,,STE, +STE:SP:OCETrainTER-87212407,1,"Gare de Roeschwoog",48.833395,8.029565,-1,0,SIN:SA:OCE87212407,Europe/Paris,,STE, +STE:SP:OCETrainTER-87212415,1,"Gare de Roppenheim",48.851169,8.06231,-1,0,SIN:SA:OCE87212415,Europe/Paris,,STE, +STE:SP:OCETrainTER-87212431,1,"Gare de Seltz",48.89644,8.098003,-1,0,SIN:SA:OCE87212431,Europe/Paris,,STE, +STE:SP:OCETrainTER-87212449,1,"Gare de Munchhausen",48.923852,8.141056,-1,0,STE:SA:OCE87212449,Europe/Paris,,STE, +STE:SP:OCETrainTER-87212456,1,"Gare de Mothern",48.934823,8.161642,-1,0,STE:SA:OCE87212456,Europe/Paris,,STE, +STE:SP:OCETrainTER-87212464,1,"Gare de Lauterbourg",48.967255,8.182819,-1,0,SIN:SA:OCE87212464,Europe/Paris,,STE, +STE:SP:OCETrainTER-87213058,1,"Gare de Haguenau",48.813433,7.782371,-1,0,SIN:SA:OCE87213058,Europe/Paris,,STE, +STE:SP:OCETrainTER-87213108,1,"Gare de Schweighouse (Bas-Rhin)",48.828558,7.742343,-1,0,SIN:SA:OCE87213108,Europe/Paris,,STE, +STE:SP:OCETrainTER-87213165,1,"Gare de Obermodern",48.84255,7.547196,-1,0,SIN:SA:OCE87213165,Europe/Paris,,STE, +STE:SP:OCETrainTER-87213207,1,"Gare de Mertzwiller",48.871997,7.678352,-1,0,SIN:SA:OCE87213207,Europe/Paris,,STE, +STE:SP:OCETrainTER-87213223,1,"Gare de Gundershoffen",48.905376,7.653103,-1,0,SIN:SA:OCE87213223,Europe/Paris,,STE, +STE:SP:OCETrainTER-87213249,1,"Gare de Reichshoffen-Ville",48.930713,7.657977,-1,0,SIN:SA:OCE87213249,Europe/Paris,,STE, +STE:SP:OCETrainTER-87213256,1,"Gare de Niederbronn",48.952354,7.633796,-1,0,SIN:SA:OCE87213256,Europe/Paris,,STE, +STE:SP:OCETrainTER-87213405,1,"Gare de Walbourg",48.886239,7.809211,-1,0,STE:SA:OCE87213405,Europe/Paris,,STE, +STE:SP:OCETrainTER-87213413,1,"Gare de Hoelschloch-Surbourg",48.916342,7.831424,-1,0,STE:SA:OCE87213413,Europe/Paris,,STE, +STE:SP:OCETrainTER-87213421,1,"Gare de Soultz-sous-Forêts",48.934514,7.882145,-1,0,SIN:SA:OCE87213421,Europe/Paris,,STE, +STE:SP:OCETrainTER-87213447,1,"Gare de Hoffen",48.931201,7.933505,-1,0,STE:SA:OCE87213447,Europe/Paris,,STE, +STE:SP:OCETrainTER-87213454,1,"Gare de Hunspach",48.961636,7.953795,-1,0,STE:SA:OCE87213454,Europe/Paris,,STE, +STE:SP:OCETrainTER-87213462,1,"Gare de Riedseltz",48.991133,7.962986,-1,0,STE:SA:OCE87213462,Europe/Paris,,STE, +STE:SP:OCETrainTER-87213470,1,"Gare de Wissembourg",49.031533,7.950306,-1,0,SIN:SA:OCE87213470,Europe/Paris,,STE, +STE:SP:OCETrainTER-87213603,1,"Gare de Marienthal",48.781823,7.823388,-1,0,SIN:SA:OCE87213603,Europe/Paris,,STE, +STE:SP:OCETrainTER-87213611,1,"Gare de Bischwiller",48.765425,7.851189,-1,0,SIN:SA:OCE87213611,Europe/Paris,,STE, +STE:SP:OCETrainTER-87213660,1,"Gare de Kurtzenhouse",48.741882,7.813036,-1,0,STE:SA:OCE87213660,Europe/Paris,,STE, +STE:SP:OCETrainTER-87213678,1,"Gare de Weyersheim",48.717822,7.797072,-1,0,STE:SA:OCE87213678,Europe/Paris,,STE, +STE:SP:OCETrainTER-87213686,1,"Gare de Hoerdt",48.702981,7.779068,-1,0,STE:SA:OCE87213686,Europe/Paris,,STE, +STE:SP:OCETrainTER-87213744,1,"Gare de Wingen-sur-Moder",48.920058,7.380586,-1,0,SIN:SA:OCE87213744,Europe/Paris,,STE, +STE:SP:OCETrainTER-87213785,1,"Gare de Ingwiller",48.871759,7.476802,-1,0,SIN:SA:OCE87213785,Europe/Paris,,STE, +STE:SP:OCETrainTER-87214056,1,"Gare de Sélestat",48.259638,7.442103,-1,0,SIN:SA:OCE87214056,Europe/Paris,,STE, +STE:SP:OCETrainTER-87214106,1,"Gare de Ebersheim",48.308808,7.492684,-1,0,STE:SA:OCE87214106,Europe/Paris,,STE, +STE:SP:OCETrainTER-87214114,1,"Gare de Kogenheim",48.338753,7.534624,-1,0,STE:SA:OCE87214114,Europe/Paris,,STE, +STE:SP:OCETrainTER-87214122,1,"Gare de Benfeld",48.373796,7.584374,-1,0,SIN:SA:OCE87214122,Europe/Paris,,STE, +STE:SP:OCETrainTER-87214130,1,"Gare de Matzenheim",48.398984,7.619608,-1,0,STE:SA:OCE87214130,Europe/Paris,,STE, +STE:SP:OCETrainTER-87214148,1,"Gare de Erstein",48.422869,7.638134,-1,0,SIN:SA:OCE87214148,Europe/Paris,,STE, +STE:SP:OCETrainTER-87214205,1,"Gare de Scherwiller",48.286584,7.43054,-1,0,SIN:SA:OCE87214205,Europe/Paris,,STE, +STE:SP:OCETrainTER-87214213,1,"Gare de Dambach-la-Ville",48.321184,7.4355,-1,0,SIN:SA:OCE87214213,Europe/Paris,,STE, +STE:SP:OCETrainTER-87214221,1,"Gare de Epfig",48.363597,7.450383,-1,0,STE:SA:OCE87214221,Europe/Paris,,STE, +STE:SP:OCETrainTER-87214239,1,"Gare de Eichhoffen",48.38269,7.448883,-1,0,SIN:SA:OCE87660936,Europe/Paris,,STE, +STE:SP:OCETrainTER-87214247,1,"Gare de Barr",48.403046,7.456908,-1,0,SIN:SA:OCE87214247,Europe/Paris,,STE, +STE:SP:OCETrainTER-87214254,1,"Gare de Gertwiller",48.413295,7.465911,-1,0,SIN:SA:OCE87214254,Europe/Paris,,STE, +STE:SP:OCETrainTER-87214270,1,"Gare de Goxwiller",48.432595,7.478705,-1,0,SIN:SA:OCE87214270,Europe/Paris,,STE, +STE:SP:OCETrainTER-87214288,1,"Gare de Obernai",48.462327,7.489016,-1,0,STE:SA:OCE87214288,Europe/Paris,,STE, +STE:SP:OCETrainTER-87214296,1,"Gare de Bischoffsheim",48.48678,7.498058,-1,0,SIN:SA:OCE87214296,Europe/Paris,,STE, +STE:SP:OCETrainTER-87214320,1,"Gare de Rosheim",48.504968,7.491276,-1,0,SIN:SA:OCE87214320,Europe/Paris,,STE, +STE:SP:OCETrainTER-87214338,1,"Gare de Dorlisheim",48.524289,7.492819,-1,0,SIN:SA:OCE87214338,Europe/Paris,,STE, +STE:SP:OCETrainTER-87214502,1,"Gare de Lingolsheim",48.559438,7.678594,-1,0,STE:SA:OCE87214502,Europe/Paris,,STE, +STE:SP:OCETrainTER-87214528,1,"Gare de Entzheim-Aéroport",48.547002,7.62795,-1,0,SIN:SA:OCE87214528,Europe/Paris,,STE, +STE:SP:OCETrainTER-87214536,1,"Gare de Duppigheim",48.544067,7.587094,-1,0,SIN:SA:OCE87214536,Europe/Paris,,STE, +STE:SP:OCETrainTER-87214544,1,"Gare de Duttlenheim",48.545603,7.565647,-1,0,SIN:SA:OCE87214544,Europe/Paris,,STE, +STE:SP:OCETrainTER-87214551,1,"Gare de Dachstein",48.542916,7.533208,-1,0,SIN:SA:OCE87660514,Europe/Paris,,STE, +STE:SP:OCETrainTER-87214577,1,"Gare de Molsheim",48.537525,7.500206,-1,0,SIN:SA:OCE87214577,Europe/Paris,,STE, +STE:SP:OCETrainTER-87214585,1,"Gare de Mutzig",48.533803,7.462141,-1,0,STE:SA:OCE87214585,Europe/Paris,,STE, +STE:SP:OCETrainTER-87214593,1,"Gare de Gresswiller",48.532999,7.424665,-1,0,STE:SA:OCE87214593,Europe/Paris,,STE, +STE:SP:OCETrainTER-87214627,1,"Gare de Heiligenberg-Mollkirch",48.527489,7.381501,-1,0,SIN:SA:OCE87214627,Europe/Paris,,STE, +STE:SP:OCETrainTER-87214635,1,"Gare de Urmatt",48.525535,7.338268,-1,0,SIN:SA:OCE87214635,Europe/Paris,,STE, +STE:SP:OCETrainTER-87214643,1,"Gare de Mullerhof",48.524737,7.311924,-1,0,STE:SA:OCE87214643,Europe/Paris,,STE, +STE:SP:OCETrainTER-87214650,1,"Gare de Lutzelhouse",48.517616,7.292954,-1,0,STE:SA:OCE87214650,Europe/Paris,,STE, +STE:SP:OCETrainTER-87214676,1,"Gare de Wisches",48.507634,7.27018,-1,0,SIN:SA:OCE87214676,Europe/Paris,,STE, +STE:SP:OCETrainTER-87214684,1,"Gare de Russ-Hersbach",48.498292,7.252274,-1,0,SIN:SA:OCE87214684,Europe/Paris,,STE, +STE:SP:OCETrainTER-87214692,1,"Gare de Schirmeck-la-Broque",48.480459,7.216195,-1,0,SIN:SA:OCE87214692,Europe/Paris,,STE, +STE:SP:OCETrainTER-87214726,1,"Gare de Rothau",48.45899,7.207337,-1,0,SIN:SA:OCE87214726,Europe/Paris,,STE, +STE:SP:OCETrainTER-87214734,1,"Gare de Fouday",48.424844,7.187413,-1,0,STE:SA:OCE87214734,Europe/Paris,,STE, +STE:SP:OCETrainTER-87214742,1,"Gare de St-Blaise-Roche-Poutay",48.407599,7.165357,-1,0,SIN:SA:OCE87214742,Europe/Paris,,STE, +STE:SP:OCETrainTER-87214759,1,"Gare de Saulxures (Bas-Rhin)",48.38956,7.147895,-1,0,STE:SA:OCE87214759,Europe/Paris,,STE, +STE:SP:OCETrainTER-87214775,1,"Gare de Bourg-Bruche",48.359787,7.137372,-1,0,STE:SA:OCE87214775,Europe/Paris,,STE, +STE:SP:OCETrainTER-87214783,1,"Gare de Saales",48.347087,7.110546,-1,0,SIN:SA:OCE87214783,Europe/Paris,,STE, +STE:SP:OCETrainTER-87215012,1,"Gare de Sarrebourg",48.737941,7.052781,-1,0,SIN:SA:OCE87215012,Europe/Paris,,STE, +STE:SP:OCETrainTER-87215079,1,"Gare de Reding",48.742827,7.09618,-1,0,STE:SA:OCE87215079,Europe/Paris,,STE, +STE:SP:OCETrainTER-87215103,1,"Gare de Igney-Avricourt",48.646398,6.805818,-1,0,SIN:SA:OCE87215103,Europe/Paris,,STE, +STE:SP:OCETrainTER-87215160,1,"Gare de Lutzelbourg",48.729855,7.251401,-1,0,SIN:SA:OCE87215160,Europe/Paris,,STE, +STE:SP:OCETrainTER-87215335,1,"Gare de Berthelming",48.81027,7.00836,-1,0,SIN:SA:OCE87215335,Europe/Paris,,STE, +STE:SP:OCETrainTER-87215459,1,"Gare de Sarre-Union",48.9366,7.085419,-1,0,SIN:SA:OCE87215459,Europe/Paris,,STE, +STE:SP:OCETrainTER-87215483,1,"Gare de Schopperten",48.945649,7.055715,-1,0,SIN:SA:OCE87215483,Europe/Paris,,STE, +STE:SP:OCETrainTER-87215491,1,"Gare de Keskastel",48.965412,7.048837,-1,0,SIN:SA:OCE87215491,Europe/Paris,,STE, +STE:SP:OCETrainTER-87215632,1,"Gare de Oermingen",49.001048,7.131929,-1,0,SIN:SA:OCE87215632,Europe/Paris,,STE, +STE:SP:OCETrainTER-87215665,1,"Gare de Diemeringen",48.941036,7.184781,-1,0,SIN:SA:OCE87215665,Europe/Paris,,STE, +STE:SP:OCETrainTER-87215699,1,"Gare de Tieffenbach-Struth",48.906027,7.255304,-1,0,SIN:SA:OCE87215699,Europe/Paris,,STE, +STE:SP:OCETrainTER-87223263,1,"Gare de Lille Europe",50.638846,3.075745,-1,0,STE:SA:OCE87223263,Europe/Paris,,STE, +STE:SP:OCETrainTER-87271007,1,"Gare de Paris-Nord",48.880138,2.354887,-1,0,SIN:SA:OCE87271007,Europe/Paris,,STE, +STE:SP:OCETrainTER-87271536,1,"Gare de Dammartin-Juilly-St-Mar",49.032493,2.698583,-1,0,TRN:SA:DUA8727153,Europe/Paris,,STE, +STE:SP:OCETrainTER-87271551,1,"Gare de Le Plessis-Belleville",49.096127,2.744677,-1,0,TRN:SA:DUA8727155,Europe/Paris,,STE, +STE:SP:OCETrainTER-87271577,1,"Gare de Nanteuil-le-Haudouin",49.142172,2.793852,-1,0,STE:SA:OCE87271577,Europe/Paris,,STE, +STE:SP:OCETrainTER-87271593,1,"Gare de Crépy-en-Valois",49.231257,2.88644,-1,0,STE:SA:OCE87271593,Europe/Paris,,STE, +STE:SP:OCETrainTER-87271601,1,"Gare de Vaumoise",49.233918,2.988437,-1,0,STE:SA:OCE87271601,Europe/Paris,,STE, +STE:SP:OCETrainTER-87271734,1,"Gare de Villers-Cotterets",49.250229,3.093653,-1,0,STE:SA:OCE87271734,Europe/Paris,,STE, +STE:SP:OCETrainTER-87271775,1,"Gare de Longpont",49.272642,3.230221,-1,0,STE:SA:OCE87271775,Europe/Paris,,STE, +STE:SP:OCETrainTER-87271783,1,"Gare de Vierzy",49.290996,3.277559,-1,0,STE:SA:OCE87271783,Europe/Paris,,STE, +STE:SP:OCETrainTER-87271817,1,"Gare de Soissons",49.369193,3.338051,-1,0,STE:SA:OCE87271817,Europe/Paris,,STE, +STE:SP:OCETrainTER-87271874,1,"Gare de Crouy",49.403745,3.357269,-1,0,STE:SA:OCE87271874,Europe/Paris,,STE, +STE:SP:OCETrainTER-87271882,1,"Gare de Margival",49.439473,3.402945,-1,0,STE:SA:OCE87271882,Europe/Paris,,STE, +STE:SP:OCETrainTER-87272013,1,"Gare de Jaux",49.386546,2.777064,-1,0,STE:SA:OCE87272013,Europe/Paris,,STE, +STE:SP:OCETrainTER-87272096,1,"Gare de Esches",49.212605,2.170942,-1,0,STE:SA:OCE87272096,Europe/Paris,,STE, +STE:SP:OCETrainTER-87272195,1,"Gare de Longueil-Annel",49.467227,2.863209,-1,0,STE:SA:OCE87272195,Europe/Paris,,STE, +STE:SP:OCETrainTER-87272286,1,"Gare de Corcy",49.255074,3.215943,-1,0,STE:SA:OCE87272286,Europe/Paris,,STE, +STE:SP:OCETrainTER-87276006,1,"Gare de Creil",49.263769,2.46918,-1,0,SIN:SA:OCE87276006,Europe/Paris,,STE, +STE:SP:OCETrainTER-87276113,1,"Gare de Chantilly-Gouvieux",49.186979,2.459827,-1,0,TRN:SA:DUA8727611,Europe/Paris,,STE, +STE:SP:OCETrainTER-87276204,1,"Gare de Laigneville",49.292664,2.449433,-1,0,SIN:SA:OCE87276204,Europe/Paris,,STE, +STE:SP:OCETrainTER-87276212,1,"Gare de Liancourt-Rantigny",49.324758,2.445298,-1,0,SIN:SA:OCE87276212,Europe/Paris,,STE, +STE:SP:OCETrainTER-87276279,1,"Gare de Orry-la-Ville-Coye",49.138713,2.489593,-1,0,TRN:SA:DUA8727627,Europe/Paris,,STE, +STE:SP:OCETrainTER-87276303,1,"Gare de Longueil-Ste-Marie",49.342441,2.717881,-1,0,STE:SA:OCE87276303,Europe/Paris,,STE, +STE:SP:OCETrainTER-87276311,1,"Gare de Chevrières",49.337399,2.68298,-1,0,STE:SA:OCE87276311,Europe/Paris,,STE, +STE:SP:OCETrainTER-87276329,1,"Gare de Pont-Ste-Maxence",49.30978,2.602853,-1,0,SIN:SA:OCE87276329,Europe/Paris,,STE, +STE:SP:OCETrainTER-87276352,1,"Gare de Rieux-Angicourt",49.297843,2.519682,-1,0,STE:SA:OCE87276352,Europe/Paris,,STE, +STE:SP:OCETrainTER-87276378,1,"Gare de Villers-St-Paul",49.282468,2.489347,-1,0,STE:SA:OCE87276378,Europe/Paris,,STE, +STE:SP:OCETrainTER-87276469,1,"Gare de Persan-Beaumont",49.148149,2.279384,-1,0,TRN:SA:DUA8727646,Europe/Paris,,STE, +STE:SP:OCETrainTER-87276618,1,"Gare de Montataire",49.251241,2.435948,-1,0,STE:SA:OCE87276618,Europe/Paris,,STE, +STE:SP:OCETrainTER-87276691,1,"Gare de Compiègne",49.422013,2.823486,-1,0,SIN:SA:OCE87276691,Europe/Paris,,STE, +STE:SP:OCETrainTER-87276717,1,"Gare de Bornel-Belle-Eglise",49.194644,2.20722,-1,0,STE:SA:OCE87276717,Europe/Paris,,STE, +STE:SP:OCETrainTER-87276725,1,"Gare de Chambly",49.163615,2.240497,-1,0,STE:SA:OCE87276725,Europe/Paris,,STE, +STE:SP:OCETrainTER-87276733,1,"Gare de Le Meux-Croix-St-Ouen",49.359339,2.753271,-1,0,STE:SA:OCE87276733,Europe/Paris,,STE, +STE:SP:OCETrainTER-87276741,1,"Gare de Thourotte",49.475364,2.88182,-1,0,STE:SA:OCE87276741,Europe/Paris,,STE, +STE:SP:OCETrainTER-87276766,1,"Gare de Ribécourt",49.50632,2.927115,-1,0,STE:SA:OCE87276766,Europe/Paris,,STE, +STE:SP:OCETrainTER-87276774,1,"Gare de Ourscamps",49.53394,2.954083,-1,0,STE:SA:OCE87276774,Europe/Paris,,STE, +STE:SP:OCETrainTER-87276782,1,"Gare de Noyon",49.577341,3.006376,-1,0,SIN:SA:OCE87276782,Europe/Paris,,STE, +STE:SP:OCETrainTER-87281006,1,"Gare de Dunkerque",51.030438,2.368943,-1,0,STE:SA:OCE87281006,Europe/Paris,,STE, +STE:SP:OCETrainTER-87281055,1,"Gare de Croix l'Allumette",50.686837,3.151232,-1,0,STE:SA:OCE87281055,Europe/Paris,,STE, +STE:SP:OCETrainTER-87281071,1,"Gare de Calais Fréthun",50.901263,1.811027,-1,0,SIN:SA:OCE87281071,Europe/Paris,,STE, +STE:SP:OCETrainTER-87281105,1,"Gare de Bergues",50.968936,2.425672,-1,0,STE:SA:OCE87281105,Europe/Paris,,STE, +STE:SP:OCETrainTER-87281113,1,"Gare de Esquelbecq",50.889711,2.412191,-1,0,STE:SA:OCE87281113,Europe/Paris,,STE, +STE:SP:OCETrainTER-87281121,1,"Gare de Arnèke",50.831562,2.408436,-1,0,STE:SA:OCE87281121,Europe/Paris,,STE, +STE:SP:OCETrainTER-87281139,1,"Gare de Cassel",50.787472,2.460534,-1,0,STE:SA:OCE87281139,Europe/Paris,,STE, +STE:SP:OCETrainTER-87281246,1,"Gare de Gravelines",50.97887,2.12326,-1,0,STE:SA:OCE87281246,Europe/Paris,,STE, +STE:SP:OCETrainTER-87281279,1,"Gare de Bourbourg",50.952299,2.194346,-1,0,STE:SA:OCE87281279,Europe/Paris,,STE, +STE:SP:OCETrainTER-87281311,1,"Gare de Grande Synthe",51.002648,2.313412,-1,0,STE:SA:OCE87281311,Europe/Paris,,STE, +STE:SP:OCETrainTER-87281402,1,"Gare de Coudekerque Branche",51.017921,2.375089,-1,0,STE:SA:OCE87281402,Europe/Paris,,STE, +STE:SP:OCETrainTER-87281410,1,"Gare de Pont d'Ardres",50.892134,1.970732,-1,0,STE:SA:OCE87281410,Europe/Paris,,STE, +STE:SP:OCETrainTER-87281428,1,"Gare de Audruicq",50.875669,2.076354,-1,0,SIN:SA:OCE87281428,Europe/Paris,,STE, +STE:SP:OCETrainTER-87281436,1,"Gare de Watten Eperlecques",50.825955,2.207706,-1,0,SIN:SA:OCE87281436,Europe/Paris,,STE, +STE:SP:OCETrainTER-87281444,1,"Gare de St Omer",50.753721,2.266863,-1,0,SIN:SA:OCE87281444,Europe/Paris,,STE, +STE:SP:OCETrainTER-87281451,1,"Gare de Renescure",50.732059,2.372061,-1,0,STE:SA:OCE87281451,Europe/Paris,,STE, +STE:SP:OCETrainTER-87281469,1,"Gare de Ebblinghem",50.730608,2.409012,-1,0,STE:SA:OCE87281469,Europe/Paris,,STE, +STE:SP:OCETrainTER-87282624,1,"Gare de Lyon-Jean-Macé",45.745198,4.841515,-1,0,STE:SA:OCE87282624,Europe/Paris,,STE, +STE:SP:OCETrainTER-87286005,1,"Gare de Lille Flandres",50.636201,3.071023,-1,0,SIN:SA:OCE87286005,Europe/Paris,,STE, +STE:SP:OCETrainTER-87286062,1,"Gare de Hellemmes",50.622663,3.115244,-1,0,STE:SA:OCE87286062,Europe/Paris,,STE, +STE:SP:OCETrainTER-87286096,1,"Gare de Haubourdin",50.607053,2.990089,-1,0,OLI:SA:454,Europe/Paris,,STE, +STE:SP:OCETrainTER-87286112,1,"Gare de Loos lès Lille",50.612874,3.016923,-1,0,STE:SA:OCE87286112,Europe/Paris,,STE, +STE:SP:OCETrainTER-87286146,1,"Gare de Armentières",50.680765,2.877505,-1,0,SIN:SA:OCE87286146,Europe/Paris,,STE, +STE:SP:OCETrainTER-87286161,1,"Gare de Steenwerck",50.712905,2.787105,-1,0,STE:SA:OCE87286161,Europe/Paris,,STE, +STE:SP:OCETrainTER-87286179,1,"Gare de Bailleul (Nord)",50.729122,2.7345,-1,0,SIN:SA:OCE87286179,Europe/Paris,,STE, +STE:SP:OCETrainTER-87286187,1,"Gare de La Madeleine (Nord)",50.6606,3.072567,-1,0,STE:SA:OCE87286187,Europe/Paris,,STE, +STE:SP:OCETrainTER-87286195,1,"Gare de St-André (Nord)",50.654332,3.047612,-1,0,STE:SA:OCE87286195,Europe/Paris,,STE, +STE:SP:OCETrainTER-87286203,1,"Gare de Strazeele",50.713446,2.630871,-1,0,SIN:SA:OCE87286203,Europe/Paris,,STE, +STE:SP:OCETrainTER-87286229,1,"Gare de Wambrechies",50.68104,3.040552,-1,0,STE:SA:OCE87286229,Europe/Paris,,STE, +STE:SP:OCETrainTER-87286245,1,"Gare de Quesnoy sur Deule",50.708071,2.995506,-1,0,STE:SA:OCE87286245,Europe/Paris,,STE, +STE:SP:OCETrainTER-87286260,1,"Gare de Comines (France)",50.761001,3.009723,-1,0,OLI:SA:5836,Europe/Paris,,STE, +STE:SP:OCETrainTER-87286278,1,"Gare de Pérenchies",50.666978,2.977266,-1,0,STE:SA:OCE87286278,Europe/Paris,,STE, +STE:SP:OCETrainTER-87286302,1,"Gare de Hazebrouck",50.725043,2.541526,-1,0,SIN:SA:OCE87286302,Europe/Paris,,STE, +STE:SP:OCETrainTER-87286401,1,"Gare de Santes",50.59202,2.961919,-1,0,STE:SA:OCE87286401,Europe/Paris,,STE, +STE:SP:OCETrainTER-87286419,1,"Gare de Wavrin",50.574401,2.936581,-1,0,STE:SA:OCE87286419,Europe/Paris,,STE, +STE:SP:OCETrainTER-87286427,1,"Gare de La Fontaine (Nord)",50.566208,2.926074,-1,0,STE:SA:OCE87286427,Europe/Paris,,STE, +STE:SP:OCETrainTER-87286435,1,"Gare de Don Sainghin",50.55172,2.914526,-1,0,STE:SA:OCE87286435,Europe/Paris,,STE, +STE:SP:OCETrainTER-87286500,1,"Gare de Phalempin",50.515368,3.019935,-1,0,SIN:SA:OCE87286500,Europe/Paris,,STE, +STE:SP:OCETrainTER-87286518,1,"Gare de Seclin",50.548568,3.03496,-1,0,SIN:SA:OCE87286518,Europe/Paris,,STE, +STE:SP:OCETrainTER-87286526,1,"Gare de Wattignies Templemars",50.579352,3.051536,-1,0,SIN:SA:OCE87286526,Europe/Paris,,STE, +STE:SP:OCETrainTER-87286534,1,"Gare de Ronchin",50.604528,3.078311,-1,0,SIN:SA:OCE87286534,Europe/Paris,,STE, +STE:SP:OCETrainTER-87286542,1,"Gare de Tourcoing",50.716729,3.168009,-1,0,STE:SA:OCE87286542,Europe/Paris,,STE, +STE:SP:OCETrainTER-87286567,1,"Gare de Rosult",50.456419,3.348858,-1,0,SIN:SA:OCE87286567,Europe/Paris,,STE, +STE:SP:OCETrainTER-87286575,1,"Gare de Landas",50.468593,3.290592,-1,0,STE:SA:OCE87286575,Europe/Paris,,STE, +STE:SP:OCETrainTER-87286583,1,"Gare de Orchies",50.477047,3.24888,-1,0,SIN:SA:OCE87286583,Europe/Paris,,STE, +STE:SP:OCETrainTER-87286609,1,"Gare de Nomain",50.502479,3.206,-1,0,STE:SA:OCE87286609,Europe/Paris,,STE, +STE:SP:OCETrainTER-87286625,1,"Gare de Templeuve",50.528681,3.175601,-1,0,SIN:SA:OCE87286625,Europe/Paris,,STE, +STE:SP:OCETrainTER-87286641,1,"Gare de Fretin (Nord)",50.559844,3.149519,-1,0,SIN:SA:OCE87286641,Europe/Paris,,STE, +STE:SP:OCETrainTER-87286716,1,"Gare de Croix Wasquehal",50.678545,3.138095,-1,0,STE:SA:OCE87286716,Europe/Paris,,STE, +STE:SP:OCETrainTER-87286732,1,"Gare de Roubaix",50.695352,3.163021,-1,0,STE:SA:OCE87286732,Europe/Paris,,STE, +STE:SP:OCETrainTER-87286831,1,"Gare de Pont de Bois",50.623857,3.130718,-1,0,STE:SA:OCE87286831,Europe/Paris,,STE, +STE:SP:OCETrainTER-87286849,1,"Gare de Lesquin",50.590703,3.117706,-1,0,SIN:SA:OCE87286849,Europe/Paris,,STE, +STE:SP:OCETrainTER-87286856,1,"Gare de Annappes",50.622813,3.146368,-1,0,STE:SA:OCE87286856,Europe/Paris,,STE, +STE:SP:OCETrainTER-87286864,1,"Gare de Ascq",50.621746,3.159874,-1,0,STE:SA:OCE87286864,Europe/Paris,,STE, +STE:SP:OCETrainTER-87286872,1,"Gare de Baisieux",50.618346,3.23469,-1,0,OLI:SA:150,Europe/Paris,,STE, +STE:SP:OCETrainTER-87287102,1,"Gare de Lezennes",50.620321,3.098216,-1,0,STE:SA:OCE87287102,Europe/Paris,,STE, +STE:SP:OCETrainTER-87287128,1,"Gare de Mont de Terre",50.618038,3.095982,-1,0,STE:SA:OCE87287128,Europe/Paris,,STE, +STE:SP:OCETrainTER-87287151,1,"Gare de Nieppe",50.69688,2.828747,-1,0,STE:SA:OCE87287151,Europe/Paris,,STE, +STE:SP:OCETrainTER-87287169,1,"Gare de Marquette",50.672387,3.051059,-1,0,STE:SA:OCE87287169,Europe/Paris,,STE, +STE:SP:OCETrainTER-87287185,1,"Gare de Deulémont",50.716118,2.993394,-1,0,STE:SA:OCE87287185,Europe/Paris,,STE, +STE:SP:OCETrainTER-87287193,1,"Gare de Ste Marguerite",50.740277,3.009203,-1,0,STE:SA:OCE87287193,Europe/Paris,,STE, +STE:SP:OCETrainTER-87287250,1,"Gare de Lille Porte de Douai",50.611973,3.07532,-1,0,STE:SA:OCE87287250,Europe/Paris,,STE, +STE:SP:OCETrainTER-87287276,1,"Gare de Ennevelin",50.549188,3.158639,-1,0,STE:SA:OCE87287276,Europe/Paris,,STE, +STE:SP:OCETrainTER-87287292,1,"Gare de Nortkerque",50.882854,2.02336,-1,0,STE:SA:OCE87287292,Europe/Paris,,STE, +STE:SP:OCETrainTER-87287300,1,"Gare de Ruminghem",50.86179,2.158292,-1,0,STE:SA:OCE87287300,Europe/Paris,,STE, +STE:SP:OCETrainTER-87295006,1,"Gare de Maubeuge",50.272805,3.966406,-1,0,SIN:SA:OCE87295006,Europe/Paris,,STE, +STE:SP:OCETrainTER-87295014,1,"Gare de Jeumont",50.296097,4.086377,-1,0,SIN:SA:OCE87295014,Europe/Paris,,STE, +STE:SP:OCETrainTER-87295022,1,"Gare de Recquignies",50.28411,4.044003,-1,0,STE:SA:OCE87295022,Europe/Paris,,STE, +STE:SP:OCETrainTER-87295048,1,"Gare de Fourmies",50.015362,4.053588,-1,0,SIN:SA:OCE87295048,Europe/Paris,,STE, +STE:SP:OCETrainTER-87295055,1,"Gare de Anor",49.985002,4.093351,-1,0,SIN:SA:OCE87295055,Europe/Paris,,STE, +STE:SP:OCETrainTER-87295063,1,"Gare de Hirson",49.914576,4.084294,-1,0,SIN:SA:OCE87295063,Europe/Paris,,STE, +STE:SP:OCETrainTER-87295220,1,"Gare de Le Cateau",50.091461,3.540021,-1,0,SIN:SA:OCE87295220,Europe/Paris,,STE, +STE:SP:OCETrainTER-87295535,1,"Gare de Louvroil",50.268371,3.953504,-1,0,STE:SA:OCE87295535,Europe/Paris,,STE, +STE:SP:OCETrainTER-87295543,1,"Gare de Sous-le-Bois",50.265383,3.93834,-1,0,STE:SA:OCE87295543,Europe/Paris,,STE, +STE:SP:OCETrainTER-87295568,1,"Gare de Hautmont",50.253961,3.915171,-1,0,SIN:SA:OCE87295568,Europe/Paris,,STE, +STE:SP:OCETrainTER-87295600,1,"Gare de Aulnoye Aymeries",50.197327,3.843239,-1,0,SIN:SA:OCE87295600,Europe/Paris,,STE, +STE:SP:OCETrainTER-87295642,1,"Gare de Landrecies",50.128133,3.682158,-1,0,STE:SA:OCE87295642,Europe/Paris,,STE, +STE:SP:OCETrainTER-87295667,1,"Gare de Ors",50.103386,3.626911,-1,0,STE:SA:OCE87295667,Europe/Paris,,STE, +STE:SP:OCETrainTER-87295709,1,"Gare de Sains du Nord",50.0889,4.00159,-1,0,SIN:SA:OCE87295709,Europe/Paris,,STE, +STE:SP:OCETrainTER-87295725,1,"Gare de Avesnelles",50.118493,3.948528,-1,0,STE:SA:OCE87295725,Europe/Paris,,STE, +STE:SP:OCETrainTER-87295733,1,"Gare de Avesnes",50.126688,3.932939,-1,0,SIN:SA:OCE87295733,Europe/Paris,,STE, +STE:SP:OCETrainTER-87295774,1,"Gare de Dompierre (Nord)",50.146002,3.870976,-1,0,SIN:SA:OCE87295774,Europe/Paris,,STE, +STE:SP:OCETrainTER-87295790,1,"Gare de Leval",50.184544,3.83665,-1,0,STE:SA:OCE87295790,Europe/Paris,,STE, +STE:SP:OCETrainTER-87295808,1,"Gare de Berlaimont",50.198039,3.810509,-1,0,STE:SA:OCE87295808,Europe/Paris,,STE, +STE:SP:OCETrainTER-87295857,1,"Gare de Le Quesnoy (Nord)",50.250206,3.645506,-1,0,STE:SA:OCE87295857,Europe/Paris,,STE, +STE:SP:OCETrainTER-87296004,1,"Gare de St Quentin",49.840022,3.296932,-1,0,SIN:SA:OCE87296004,Europe/Paris,,STE, +STE:SP:OCETrainTER-87296012,1,"Gare de Laon",49.570552,3.624374,-1,0,STE:SA:OCE87296012,Europe/Paris,,STE, +STE:SP:OCETrainTER-87296095,1,"Gare de Marle-sur-Serre",49.747016,3.769653,-1,0,SIN:SA:OCE87296095,Europe/Paris,,STE, +STE:SP:OCETrainTER-87296129,1,"Gare de Vervins",49.82986,3.893424,-1,0,SIN:SA:OCE87296129,Europe/Paris,,STE, +STE:SP:OCETrainTER-87296145,1,"Gare de Origny-en-Thiérache",49.890785,4.024008,-1,0,SIN:SA:OCE87296145,Europe/Paris,,STE, +STE:SP:OCETrainTER-87296152,1,"Gare de Crépy-Couvron",49.623301,3.51649,-1,0,STE:SA:OCE87296152,Europe/Paris,,STE, +STE:SP:OCETrainTER-87296178,1,"Gare de Clacy-Mons",49.543655,3.576526,-1,0,STE:SA:OCE87296178,Europe/Paris,,STE, +STE:SP:OCETrainTER-87296244,1,"Gare de Busigny",50.039489,3.446338,-1,0,SIN:SA:OCE87296244,Europe/Paris,,STE, +STE:SP:OCETrainTER-87296269,1,"Gare de Bohain",49.988477,3.443202,-1,0,SIN:SA:OCE87296269,Europe/Paris,,STE, +STE:SP:OCETrainTER-87296293,1,"Gare de Fresnoy-le-Grand",49.949746,3.43206,-1,0,SIN:SA:OCE87296293,Europe/Paris,,STE, +STE:SP:OCETrainTER-87296418,1,"Gare de Montescourt",49.738716,3.251914,-1,0,STE:SA:OCE87296418,Europe/Paris,,STE, +STE:SP:OCETrainTER-87296434,1,"Gare de Mennessis",49.691037,3.271922,-1,0,STE:SA:OCE87296434,Europe/Paris,,STE, +STE:SP:OCETrainTER-87296442,1,"Gare de Tergnier",49.659244,3.297225,-1,0,SIN:SA:OCE87296442,Europe/Paris,,STE, +STE:SP:OCETrainTER-87296459,1,"Gare de Appilly",49.580711,3.121198,-1,0,STE:SA:OCE87296459,Europe/Paris,,STE, +STE:SP:OCETrainTER-87296566,1,"Gare de Anizy-Pinon",49.496158,3.448713,-1,0,STE:SA:OCE87296566,Europe/Paris,,STE, +STE:SP:OCETrainTER-87296608,1,"Gare de Versigny",49.657466,3.433591,-1,0,STE:SA:OCE87296608,Europe/Paris,,STE, +STE:SP:OCETrainTER-87296616,1,"Gare de Chauny",49.610199,3.222522,-1,0,SIN:SA:OCE87296616,Europe/Paris,,STE, +STE:SP:OCETrainTER-87296632,1,"Gare de La Fère",49.658027,3.369753,-1,0,STE:SA:OCE87296632,Europe/Paris,,STE, +STE:SP:OCETrainTER-87296871,1,"Gare de Flavy-le-Martel",49.718471,3.190744,-1,0,STE:SA:OCE87296871,Europe/Paris,,STE, +STE:SP:OCETrainTER-87297051,1,"Gare de Viry-Noureuil",49.627436,3.250197,-1,0,STE:SA:OCE87297051,Europe/Paris,,STE, +STE:SP:OCETrainTER-87297085,1,"Gare de La Bouteille",49.859656,3.981535,-1,0,SIN:SA:OCE87297085,Europe/Paris,,STE, +STE:SP:OCETrainTER-87297119,1,"Gare de Verneuil-sur-Serre",49.648669,3.667775,-1,0,SIN:SA:OCE87297119,Europe/Paris,,STE, +STE:SP:OCETrainTER-87297143,1,"Gare de Dercy-Froidmont",49.702731,3.692036,-1,0,SIN:SA:OCE87297143,Europe/Paris,,STE, +STE:SP:OCETrainTER-87297150,1,"Gare de Voyenne",49.726126,3.720062,-1,0,SIN:SA:OCE87297150,Europe/Paris,,STE, +STE:SP:OCETrainTER-87297283,1,"Gare de Vauxaillon",49.474242,3.409679,-1,0,STE:SA:OCE87297283,Europe/Paris,,STE, +STE:SP:OCETrainTER-87297291,1,"Gare de Barenton-Bugny",49.630657,3.655787,-1,0,SIN:SA:OCE87297291,Europe/Paris,,STE, +STE:SP:OCETrainTER-87297515,1,"Gare de Les Bons Pères",50.279957,4.011168,-1,0,STE:SA:OCE87297515,Europe/Paris,,STE, +STE:SP:OCETrainTER-87297523,1,"Gare de Hachette",50.158167,3.743126,-1,0,STE:SA:OCE87297523,Europe/Paris,,STE, +STE:SP:OCETrainTER-87297531,1,"Gare de St Hilaire",50.132012,3.91354,-1,0,STE:SA:OCE87297531,Europe/Paris,,STE, +STE:SP:OCETrainTER-87300863,1,"Gare de Besançon-Franche-Comté",47.307471,5.954759,-1,0,STE:SA:OCE87300863,Europe/Paris,,STE, +STE:SP:OCETrainTER-87303875,1,"Gare de Ingersheim-Cité-Sc.",48.08887,7.297705,-1,0,STE:SA:OCE87303875,Europe/Paris,,STE, +STE:SP:OCETrainTER-87313049,1,"Gare de Longueau",49.863438,2.352228,-1,0,SIN:SA:OCE87313049,Europe/Paris,,STE, +STE:SP:OCETrainTER-87313056,1,"Gare de Corbie",49.911589,2.499656,-1,0,STE:SA:OCE87313056,Europe/Paris,,STE, +STE:SP:OCETrainTER-87313064,1,"Gare de Méricourt Ribémont",49.955374,2.571988,-1,0,STE:SA:OCE87313064,Europe/Paris,,STE, +STE:SP:OCETrainTER-87313072,1,"Gare de Albert",50.005397,2.644524,-1,0,STE:SA:OCE87313072,Europe/Paris,,STE, +STE:SP:OCETrainTER-87313080,1,"Gare de St-Roch (Somme)",49.893424,2.283719,-1,0,STE:SA:OCE87313080,Europe/Paris,,STE, +STE:SP:OCETrainTER-87313098,1,"Gare de Ailly-sur-Somme",49.928347,2.200556,-1,0,STE:SA:OCE87313098,Europe/Paris,,STE, +STE:SP:OCETrainTER-87313106,1,"Gare de Picquigny",49.946466,2.142353,-1,0,STE:SA:OCE87313106,Europe/Paris,,STE, +STE:SP:OCETrainTER-87313114,1,"Gare de Hangest",49.982803,2.065276,-1,0,STE:SA:OCE87313114,Europe/Paris,,STE, +STE:SP:OCETrainTER-87313122,1,"Gare de Longpré-Corps-Saints",50.011331,2.002784,-1,0,STE:SA:OCE87313122,Europe/Paris,,STE, +STE:SP:OCETrainTER-87313130,1,"Gare de Pont-Rémy",50.047332,1.899038,-1,0,STE:SA:OCE87313130,Europe/Paris,,STE, +STE:SP:OCETrainTER-87313213,1,"Gare de Boves",49.846409,2.397711,-1,0,STE:SA:OCE87313213,Europe/Paris,,STE, +STE:SP:OCETrainTER-87313221,1,"Gare de Ailly-sur-Noye",49.754401,2.364171,-1,0,STE:SA:OCE87313221,Europe/Paris,,STE, +STE:SP:OCETrainTER-87313239,1,"Gare de La Faloise",49.69651,2.348704,-1,0,STE:SA:OCE87313239,Europe/Paris,,STE, +STE:SP:OCETrainTER-87313247,1,"Gare de Breteuil-Embranchement",49.626407,2.384717,-1,0,STE:SA:OCE87313247,Europe/Paris,,STE, +STE:SP:OCETrainTER-87313262,1,"Gare de Gannes",49.572102,2.437023,-1,0,STE:SA:OCE87313262,Europe/Paris,,STE, +STE:SP:OCETrainTER-87313270,1,"Gare de St-Just-SNCF",49.503496,2.429221,-1,0,SIN:SA:OCE87313270,Europe/Paris,,STE, +STE:SP:OCETrainTER-87313288,1,"Gare de St-Rémy-en-l'Eau",49.468072,2.425546,-1,0,STE:SA:OCE87313288,Europe/Paris,,STE, +STE:SP:OCETrainTER-87313296,1,"Gare de Avrechy",49.444525,2.417901,-1,0,STE:SA:OCE87313296,Europe/Paris,,STE, +STE:SP:OCETrainTER-87313304,1,"Gare de Clermont-de-l'Oise",49.385338,2.417203,-1,0,SIN:SA:OCE87313304,Europe/Paris,,STE, +STE:SP:OCETrainTER-87313320,1,"Gare de Moreuil",49.776981,2.475806,-1,0,STE:SA:OCE87313320,Europe/Paris,,STE, +STE:SP:OCETrainTER-87313338,1,"Gare de Hargicourt-Pierrepont",49.714289,2.531213,-1,0,STE:SA:OCE87313338,Europe/Paris,,STE, +STE:SP:OCETrainTER-87313346,1,"Gare de Montdidier-SNCF",49.641491,2.562979,-1,0,STE:SA:OCE87313346,Europe/Paris,,STE, +STE:SP:OCETrainTER-87313353,1,"Gare de Tricot",49.561998,2.581794,-1,0,STE:SA:OCE87313353,Europe/Paris,,STE, +STE:SP:OCETrainTER-87313379,1,"Gare de Namps-Quevauvillers",49.808311,2.105406,-1,0,STE:SA:OCE87313379,Europe/Paris,,STE, +STE:SP:OCETrainTER-87313387,1,"Gare de Estrées-St-Denis",49.438266,2.641978,-1,0,STE:SA:OCE87313387,Europe/Paris,,STE, +STE:SP:OCETrainTER-87313395,1,"Gare de Poix-de-Picardie",49.777802,1.989828,-1,0,SIN:SA:OCE87313395,Europe/Paris,,STE, +STE:SP:OCETrainTER-87313403,1,"Gare de Rémy (Oise)",49.433318,2.705705,-1,0,STE:SA:OCE87313403,Europe/Paris,,STE, +STE:SP:OCETrainTER-87313437,1,"Gare de Villers-Bretonneux",49.862842,2.520932,-1,0,STE:SA:OCE87313437,Europe/Paris,,STE, +STE:SP:OCETrainTER-87313445,1,"Gare de Marcelcave",49.853155,2.581737,-1,0,STE:SA:OCE87313445,Europe/Paris,,STE, +STE:SP:OCETrainTER-87313460,1,"Gare de Rosières (Somme)",49.822548,2.711259,-1,0,STE:SA:OCE87313460,Europe/Paris,,STE, +STE:SP:OCETrainTER-87313478,1,"Gare de Chaulnes-SNCF",49.807629,2.801183,-1,0,STE:SA:OCE87313478,Europe/Paris,,STE, +STE:SP:OCETrainTER-87313486,1,"Gare de Nesle (Somme)",49.763814,2.909151,-1,0,STE:SA:OCE87313486,Europe/Paris,,STE, +STE:SP:OCETrainTER-87313494,1,"Gare de Ham (Somme)",49.739833,3.070381,-1,0,STE:SA:OCE87313494,Europe/Paris,,STE, +STE:SP:OCETrainTER-87313510,1,"Gare de Beauvais-Gare-SNCF",49.42651,2.088638,-1,0,STE:SA:OCE87313510,Europe/Paris,,STE, +STE:SP:OCETrainTER-87313544,1,"Gare de Cramoisy",49.256509,2.404882,-1,0,STE:SA:OCE87313544,Europe/Paris,,STE, +STE:SP:OCETrainTER-87313551,1,"Gare de Cires-lès-Mello",49.271826,2.360472,-1,0,STE:SA:OCE87313551,Europe/Paris,,STE, +STE:SP:OCETrainTER-87313569,1,"Gare de Balagny-St-Epin",49.294288,2.343999,-1,0,STE:SA:OCE87313569,Europe/Paris,,STE, +STE:SP:OCETrainTER-87313577,1,"Gare de Mouy-Bury",49.320494,2.326439,-1,0,STE:SA:OCE87313577,Europe/Paris,,STE, +STE:SP:OCETrainTER-87313585,1,"Gare de Hermes-Berthecourt",49.354406,2.24176,-1,0,STE:SA:OCE87313585,Europe/Paris,,STE, +STE:SP:OCETrainTER-87313593,1,"Gare de Villers-St-Sépulcre",49.367898,2.220537,-1,0,STE:SA:OCE87313593,Europe/Paris,,STE, +STE:SP:OCETrainTER-87313601,1,"Gare de Rochy-Condé",49.398664,2.172761,-1,0,STE:SA:OCE87313601,Europe/Paris,,STE, +STE:SP:OCETrainTER-87313668,1,"Gare de Méru",49.232338,2.132546,-1,0,STE:SA:OCE87313668,Europe/Paris,,STE, +STE:SP:OCETrainTER-87313676,1,"Gare de Laboissière-le-Déluge",49.288532,2.13614,-1,0,STE:SA:OCE87313676,Europe/Paris,,STE, +STE:SP:OCETrainTER-87313684,1,"Gare de St-Sulpice-Auteuil",49.347422,2.116453,-1,0,STE:SA:OCE87313684,Europe/Paris,,STE, +STE:SP:OCETrainTER-87313692,1,"Gare de Herchies",49.487955,2.011126,-1,0,SIN:SA:OCE87313692,Europe/Paris,,STE, +STE:SP:OCETrainTER-87313700,1,"Gare de Milly-sur-Thérain",49.503872,1.98864,-1,0,SIN:SA:OCE87313700,Europe/Paris,,STE, +STE:SP:OCETrainTER-87313718,1,"Gare de St-Omer-en-Chaussée",49.531041,1.997645,-1,0,SIN:SA:OCE87313718,Europe/Paris,,STE, +STE:SP:OCETrainTER-87313726,1,"Gare de Marseille-en-Beauvaisis",49.57107,1.954691,-1,0,SIN:SA:OCE87313726,Europe/Paris,,STE, +STE:SP:OCETrainTER-87313734,1,"Gare de Grandvilliers",49.659393,1.938451,-1,0,SIN:SA:OCE87313734,Europe/Paris,,STE, +STE:SP:OCETrainTER-87313742,1,"Gare de Feuquières-Broquiers",49.654339,1.830979,-1,0,SIN:SA:OCE87313742,Europe/Paris,,STE, +STE:SP:OCETrainTER-87313759,1,"Gare de Abancourt",49.685665,1.77418,-1,0,SIN:SA:OCE87313759,Europe/Paris,,STE, +STE:SP:OCETrainTER-87313767,1,"Gare de Aumale",49.765126,1.756083,-1,0,STE:SA:OCE87313767,Europe/Paris,,STE, +STE:SP:OCETrainTER-87313809,1,"Gare de Blangy-sur-Bresle",49.932369,1.625632,-1,0,STE:SA:OCE87313809,Europe/Paris,,STE, +STE:SP:OCETrainTER-87313817,1,"Gare de Longroy-Gamaches",49.981947,1.552815,-1,0,STE:SA:OCE87313817,Europe/Paris,,STE, +STE:SP:OCETrainTER-87313833,1,"Gare de Formerie",49.654153,1.722819,-1,0,STE:SA:OCE87313833,Europe/Paris,,STE, +STE:SP:OCETrainTER-87313841,1,"Gare de Fouilloy",49.736236,1.825538,-1,0,STE:SA:OCE87313841,Europe/Paris,,STE, +STE:SP:OCETrainTER-87313874,1,"Gare de Amiens",49.890532,2.308098,-1,0,SIN:SA:OCE87313874,Europe/Paris,,STE, +STE:SP:OCETrainTER-87315044,1,"Gare de Daours",49.899139,2.458682,-1,0,STE:SA:OCE87315044,Europe/Paris,,STE, +STE:SP:OCETrainTER-87316059,1,"Gare de Heilly",49.943384,2.53949,-1,0,STE:SA:OCE87316059,Europe/Paris,,STE, +STE:SP:OCETrainTER-87316067,1,"Gare de Buire sur l'Ancre",49.964783,2.598211,-1,0,STE:SA:OCE87316067,Europe/Paris,,STE, +STE:SP:OCETrainTER-87316075,1,"Gare de Dreuil-lès-Amiens",49.914551,2.230793,-1,0,STE:SA:OCE87316075,Europe/Paris,,STE, +STE:SP:OCETrainTER-87316109,1,"Gare de Dommartin-Remiencourt",49.799289,2.39255,-1,0,STE:SA:OCE87316109,Europe/Paris,,STE, +STE:SP:OCETrainTER-87316125,1,"Gare de Thézy-Glimont",49.811716,2.435883,-1,0,STE:SA:OCE87316125,Europe/Paris,,STE, +STE:SP:OCETrainTER-87316208,1,"Gare de Wacquemoulin",49.502949,2.611758,-1,0,STE:SA:OCE87316208,Europe/Paris,,STE, +STE:SP:OCETrainTER-87316398,1,"Gare de Heilles-Mouchy",49.340268,2.272926,-1,0,STE:SA:OCE87316398,Europe/Paris,,STE, +STE:SP:OCETrainTER-87316406,1,"Gare de Montreuil-sur-Thérain",49.381334,2.200762,-1,0,STE:SA:OCE87316406,Europe/Paris,,STE, +STE:SP:OCETrainTER-87316679,1,"Gare de Pihen",50.872785,1.784601,-1,0,STE:SA:OCE87316679,Europe/Paris,,STE, +STE:SP:OCETrainTER-87316687,1,"Gare de Le Haut-Banc",50.816414,1.772302,-1,0,STE:SA:OCE87316687,Europe/Paris,,STE, +STE:SP:OCETrainTER-87316745,1,"Gare de Acheux-Franleu",50.082617,1.657279,-1,0,STE:SA:OCE87316745,Europe/Paris,,STE, +STE:SP:OCETrainTER-87316752,1,"Gare de Feuquerolles",50.064885,1.605555,-1,0,STE:SA:OCE87316752,Europe/Paris,,STE, +STE:SP:OCETrainTER-87317016,1,"Gare de Boulogne Tintelleries",50.72725,1.609085,-1,0,STE:SA:OCE87317016,Europe/Paris,,STE, +STE:SP:OCETrainTER-87317057,1,"Gare de Rang du Fl. Verton Ber.",50.41581,1.648077,-1,0,SIN:SA:OCE87317057,Europe/Paris,,STE, +STE:SP:OCETrainTER-87317065,1,"Gare de Etaples Le Touquet",50.516717,1.642496,-1,0,SIN:SA:OCE87317065,Europe/Paris,,STE, +STE:SP:OCETrainTER-87317081,1,"Gare de Dannes Camiers",50.57585,1.614725,-1,0,STE:SA:OCE87317081,Europe/Paris,,STE, +STE:SP:OCETrainTER-87317099,1,"Gare de Neufchâtel-Hardelot-Pge",50.623631,1.643366,-1,0,STE:SA:OCE87317099,Europe/Paris,,STE, +STE:SP:OCETrainTER-87317107,1,"Gare de Hesdigneul",50.66089,1.667347,-1,0,SIN:SA:OCE87317107,Europe/Paris,,STE, +STE:SP:OCETrainTER-87317115,1,"Gare de Pont de Briques",50.682472,1.627188,-1,0,STE:SA:OCE87317115,Europe/Paris,,STE, +STE:SP:OCETrainTER-87317123,1,"Gare de Wimille Wimereux",50.763843,1.613599,-1,0,STE:SA:OCE87317123,Europe/Paris,,STE, +STE:SP:OCETrainTER-87317263,1,"Gare de Calais Ville",50.953456,1.850745,-1,0,SIN:SA:OCE87317263,Europe/Paris,,STE, +STE:SP:OCETrainTER-87317305,1,"Gare de Les Fontinettes",50.940972,1.849846,-1,0,STE:SA:OCE87317305,Europe/Paris,,STE, +STE:SP:OCETrainTER-87317321,1,"Gare de Caffiers",50.84977,1.812153,-1,0,STE:SA:OCE87317321,Europe/Paris,,STE, +STE:SP:OCETrainTER-87317339,1,"Gare de Marquise Rinxent",50.805649,1.729852,-1,0,STE:SA:OCE87317339,Europe/Paris,,STE, +STE:SP:OCETrainTER-87317362,1,"Gare de Abbeville",50.102194,1.824485,-1,0,SIN:SA:OCE87317362,Europe/Paris,,STE, +STE:SP:OCETrainTER-87317396,1,"Gare de Noyelles-sur-Mer",50.187334,1.704474,-1,0,SIN:SA:OCE87317396,Europe/Paris,,STE, +STE:SP:OCETrainTER-87317404,1,"Gare de Rue",50.273198,1.675613,-1,0,SIN:SA:OCE87317404,Europe/Paris,,STE, +STE:SP:OCETrainTER-87317487,1,"Gare de Quesnoy-le-Montant",50.108964,1.702482,-1,0,STE:SA:OCE87317487,Europe/Paris,,STE, +STE:SP:OCETrainTER-87317495,1,"Gare de Chépy-Valines",50.06814,1.635563,-1,0,SIN:SA:OCE87317495,Europe/Paris,,STE, +STE:SP:OCETrainTER-87317503,1,"Gare de Feuquières-en-Vimeu-Fre",50.063305,1.589164,-1,0,SIN:SA:OCE87317503,Europe/Paris,,STE, +STE:SP:OCETrainTER-87317511,1,"Gare de Woincourt",50.058666,1.537138,-1,0,SIN:SA:OCE87317511,Europe/Paris,,STE, +STE:SP:OCETrainTER-87317529,1,"Gare de Le Tréport-Mers-Les-B",50.06272,1.376115,-1,0,SIN:SA:OCE87317529,Europe/Paris,,STE, +STE:SP:OCETrainTER-87317537,1,"Gare de Eu",50.05429,1.416892,-1,0,SIN:SA:OCE87317537,Europe/Paris,,STE, +STE:SP:OCETrainTER-87317586,1,"Gare de Boulogne Ville",50.715585,1.609806,-1,0,SIN:SA:OCE87317586,Europe/Paris,,STE, +STE:SP:OCETrainTER-87317610,1,"Gare de Beau Marais",50.945383,1.898071,-1,0,STE:SA:OCE87317610,Europe/Paris,,STE, +STE:SP:OCETrainTER-87324335,1,"Gare de Hirson-Ecoles",49.929656,4.085384,-1,0,SIN:SA:OCE87324335,Europe/Paris,,STE, +STE:SP:OCETrainTER-87338517,1,"Gare de Hoenheim-Tram",48.628233,7.757438,-1,0,SIN:SA:OCE87338517,Europe/Paris,,STE, +STE:SP:OCETrainTER-87338525,1,"Gare de Krimmeri-Meinau",48.563621,7.752629,-1,0,STE:SA:OCE87338525,Europe/Paris,,STE, +STE:SP:OCETrainTER-87342006,1,"Gare de Béthune",50.521434,2.640398,-1,0,SIN:SA:OCE87342006,Europe/Paris,,STE, +STE:SP:OCETrainTER-87342014,1,"Gare de Arras",50.286816,2.781126,-1,0,SIN:SA:OCE87342014,Europe/Paris,,STE, +STE:SP:OCETrainTER-87342030,1,"Gare de Miraumont",50.094941,2.734372,-1,0,STE:SA:OCE87342030,Europe/Paris,,STE, +STE:SP:OCETrainTER-87342048,1,"Gare de Achiet",50.131685,2.78014,-1,0,STE:SA:OCE87342048,Europe/Paris,,STE, +STE:SP:OCETrainTER-87342063,1,"Gare de Courcelles-le-Comte",50.169552,2.787893,-1,0,STE:SA:OCE87342063,Europe/Paris,,STE, +STE:SP:OCETrainTER-87342071,1,"Gare de Boisleux",50.210403,2.771839,-1,0,STE:SA:OCE87342071,Europe/Paris,,STE, +STE:SP:OCETrainTER-87342089,1,"Gare de Roeux (Pas de Calais)",50.303484,2.894725,-1,0,SIN:SA:OCE87342089,Europe/Paris,,STE, +STE:SP:OCETrainTER-87342097,1,"Gare de Biache St Vaast",50.316248,2.941551,-1,0,SIN:SA:OCE87342097,Europe/Paris,,STE, +STE:SP:OCETrainTER-87342105,1,"Gare de Bully Grenay",50.448364,2.733149,-1,0,STE:SA:OCE87342105,Europe/Paris,,STE, +STE:SP:OCETrainTER-87342113,1,"Gare de Vitry en Artois",50.327123,2.980596,-1,0,SIN:SA:OCE87342113,Europe/Paris,,STE, +STE:SP:OCETrainTER-87342121,1,"Gare de Mazingarbe",50.460494,2.701283,-1,0,STE:SA:OCE87342121,Europe/Paris,,STE, +STE:SP:OCETrainTER-87342139,1,"Gare de Noeux",50.482893,2.674208,-1,0,STE:SA:OCE87342139,Europe/Paris,,STE, +STE:SP:OCETrainTER-87342188,1,"Gare de Maroeuil",50.3224,2.698433,-1,0,STE:SA:OCE87342188,Europe/Paris,,STE, +STE:SP:OCETrainTER-87342204,1,"Gare de Fouquereuil",50.525393,2.60818,-1,0,STE:SA:OCE87342204,Europe/Paris,,STE, +STE:SP:OCETrainTER-87342212,1,"Gare de Frévin Capelle",50.347234,2.633192,-1,0,STE:SA:OCE87342212,Europe/Paris,,STE, +STE:SP:OCETrainTER-87342220,1,"Gare de Chocques",50.538274,2.564794,-1,0,STE:SA:OCE87342220,Europe/Paris,,STE, +STE:SP:OCETrainTER-87342238,1,"Gare de Lillers",50.561628,2.478962,-1,0,SIN:SA:OCE87342238,Europe/Paris,,STE, +STE:SP:OCETrainTER-87342246,1,"Gare de Aubigny en Artois",50.352924,2.592553,-1,0,STE:SA:OCE87342246,Europe/Paris,,STE, +STE:SP:OCETrainTER-87342253,1,"Gare de Savy-Berlette",50.353808,2.557816,-1,0,STE:SA:OCE87342253,Europe/Paris,,STE, +STE:SP:OCETrainTER-87342261,1,"Gare de Ham en Artois",50.590026,2.465811,-1,0,STE:SA:OCE87342261,Europe/Paris,,STE, +STE:SP:OCETrainTER-87342279,1,"Gare de Isbergues",50.613953,2.462785,-1,0,SIN:SA:OCE87342279,Europe/Paris,,STE, +STE:SP:OCETrainTER-87342287,1,"Gare de Thiennes",50.652415,2.472673,-1,0,STE:SA:OCE87342287,Europe/Paris,,STE, +STE:SP:OCETrainTER-87342295,1,"Gare de Steenbecque",50.681419,2.510756,-1,0,STE:SA:OCE87342295,Europe/Paris,,STE, +STE:SP:OCETrainTER-87342303,1,"Gare de Tincques",50.357015,2.497966,-1,0,STE:SA:OCE87342303,Europe/Paris,,STE, +STE:SP:OCETrainTER-87342337,1,"Gare de St Pol sur Ternoise",50.37914,2.33898,-1,0,SIN:SA:OCE87342337,Europe/Paris,,STE, +STE:SP:OCETrainTER-87342402,1,"Gare de Beuvry (Pas de Calais)",50.535705,2.691525,-1,0,STE:SA:OCE87342402,Europe/Paris,,STE, +STE:SP:OCETrainTER-87342410,1,"Gare de Cuinchy",50.521932,2.747352,-1,0,STE:SA:OCE87342410,Europe/Paris,,STE, +STE:SP:OCETrainTER-87342436,1,"Gare de La Bassée",50.528034,2.804895,-1,0,OLI:SA:578,Europe/Paris,,STE, +STE:SP:OCETrainTER-87342451,1,"Gare de Salomé",50.541569,2.837444,-1,0,STE:SA:OCE87342451,Europe/Paris,,STE, +STE:SP:OCETrainTER-87342469,1,"Gare de Marquillies",50.548039,2.867104,-1,0,STE:SA:OCE87342469,Europe/Paris,,STE, +STE:SP:OCETrainTER-87342527,1,"Gare de Farbus",50.357679,2.83114,-1,0,STE:SA:OCE87342527,Europe/Paris,,STE, +STE:SP:OCETrainTER-87342535,1,"Gare de Vis à Marles",50.505006,2.517221,-1,0,SIN:SA:OCE87342535,Europe/Paris,,STE, +STE:SP:OCETrainTER-87342543,1,"Gare de Calonne Ricouart",50.482759,2.481046,-1,0,SIN:SA:OCE87342543,Europe/Paris,,STE, +STE:SP:OCETrainTER-87342550,1,"Gare de Pernes-Camblain",50.48025,2.43094,-1,0,SIN:SA:OCE87342550,Europe/Paris,,STE, +STE:SP:OCETrainTER-87342576,1,"Gare de Vimy",50.374073,2.822405,-1,0,SIN:SA:OCE87342576,Europe/Paris,,STE, +STE:SP:OCETrainTER-87342584,1,"Gare de Avion",50.407174,2.83369,-1,0,STE:SA:OCE87342584,Europe/Paris,,STE, +STE:SP:OCETrainTER-87342592,1,"Gare de Bailleul Sir Berthoult",50.335313,2.841099,-1,0,STE:SA:OCE87342592,Europe/Paris,,STE, +STE:SP:OCETrainTER-87343004,1,"Gare de Valenciennes",50.363237,3.517116,-1,0,SIN:SA:OCE87343004,Europe/Paris,,STE, +STE:SP:OCETrainTER-87343103,1,"Gare de St-Amand-les-Eaux",50.44323,3.419355,-1,0,SIN:SA:OCE87343103,Europe/Paris,,STE, +STE:SP:OCETrainTER-87343160,1,"Gare de Beuvrages",50.389529,3.506097,-1,0,STE:SA:OCE87343160,Europe/Paris,,STE, +STE:SP:OCETrainTER-87343210,1,"Gare de Le Poirier Université",50.330009,3.502555,-1,0,STE:SA:OCE87343210,Europe/Paris,,STE, +STE:SP:OCETrainTER-87343301,1,"Gare de Wallers",50.384549,3.393937,-1,0,SIN:SA:OCE87343301,Europe/Paris,,STE, +STE:SP:OCETrainTER-87343319,1,"Gare de Raismes (Nord)",50.390177,3.479105,-1,0,SIN:SA:OCE87343319,Europe/Paris,,STE, +STE:SP:OCETrainTER-87343400,1,"Gare de Trith St Léger",50.331614,3.48944,-1,0,STE:SA:OCE87343400,Europe/Paris,,STE, +STE:SP:OCETrainTER-87343418,1,"Gare de Prouvy Thiant",50.316653,3.461415,-1,0,STE:SA:OCE87343418,Europe/Paris,,STE, +STE:SP:OCETrainTER-87343459,1,"Gare de Denain",50.334483,3.388679,-1,0,STE:SA:OCE87343459,Europe/Paris,,STE, +STE:SP:OCETrainTER-87343475,1,"Gare de Lourches",50.310203,3.343214,-1,0,SIN:SA:OCE87343475,Europe/Paris,,STE, +STE:SP:OCETrainTER-87345009,1,"Gare de Douai",50.371675,3.089961,-1,0,SIN:SA:OCE87345009,Europe/Paris,,STE, +STE:SP:OCETrainTER-87345025,1,"Gare de Lens",50.426766,2.828195,-1,0,SIN:SA:OCE87345025,Europe/Paris,,STE, +STE:SP:OCETrainTER-87345033,1,"Gare de Loos en Gohelle",50.437811,2.793251,-1,0,STE:SA:OCE87345033,Europe/Paris,,STE, +STE:SP:OCETrainTER-87345041,1,"Gare de Liévin",50.434201,2.771725,-1,0,SIN:SA:OCE87345041,Europe/Paris,,STE, +STE:SP:OCETrainTER-87345108,1,"Gare de Brebières Sud",50.336223,3.0139,-1,0,SIN:SA:OCE87345108,Europe/Paris,,STE, +STE:SP:OCETrainTER-87345116,1,"Gare de Corbehem",50.342796,3.040407,-1,0,SIN:SA:OCE87345116,Europe/Paris,,STE, +STE:SP:OCETrainTER-87345124,1,"Gare de Pont de Sallaumines",50.415791,2.863195,-1,0,STE:SA:OCE87345124,Europe/Paris,,STE, +STE:SP:OCETrainTER-87345132,1,"Gare de Coron de Méricourt",50.414928,2.88609,-1,0,STE:SA:OCE87345132,Europe/Paris,,STE, +STE:SP:OCETrainTER-87345140,1,"Gare de Billy Montigny",50.415528,2.912034,-1,0,STE:SA:OCE87345140,Europe/Paris,,STE, +STE:SP:OCETrainTER-87345157,1,"Gare de Hénin Beaumont",50.416994,2.95206,-1,0,STE:SA:OCE87345157,Europe/Paris,,STE, +STE:SP:OCETrainTER-87345165,1,"Gare de Dourges",50.431996,2.98711,-1,0,STE:SA:OCE87345165,Europe/Paris,,STE, +STE:SP:OCETrainTER-87345207,1,"Gare de Pont de la Deule",50.398133,3.084883,-1,0,SIN:SA:OCE87345207,Europe/Paris,,STE, +STE:SP:OCETrainTER-87345215,1,"Gare de Sallaumines",50.422239,2.855496,-1,0,STE:SA:OCE87345215,Europe/Paris,,STE, +STE:SP:OCETrainTER-87345223,1,"Gare de Leforest",50.427769,3.059703,-1,0,SIN:SA:OCE87345223,Europe/Paris,,STE, +STE:SP:OCETrainTER-87345231,1,"Gare de Loison sous Lens",50.440473,2.859365,-1,0,STE:SA:OCE87345231,Europe/Paris,,STE, +STE:SP:OCETrainTER-87345249,1,"Gare de Ostricourt",50.4452,3.03202,-1,0,SIN:SA:OCE87345249,Europe/Paris,,STE, +STE:SP:OCETrainTER-87345256,1,"Gare de Libercourt",50.480161,3.008657,-1,0,SIN:SA:OCE87345256,Europe/Paris,,STE, +STE:SP:OCETrainTER-87345264,1,"Gare de Pont à Vendin",50.471225,2.875164,-1,0,STE:SA:OCE87345264,Europe/Paris,,STE, +STE:SP:OCETrainTER-87345272,1,"Gare de Meurchin",50.496798,2.892781,-1,0,STE:SA:OCE87345272,Europe/Paris,,STE, +STE:SP:OCETrainTER-87345280,1,"Gare de Bauvin Provin",50.51114,2.905364,-1,0,STE:SA:OCE87345280,Europe/Paris,,STE, +STE:SP:OCETrainTER-87345306,1,"Gare de Montigny en Ostrevent",50.36144,3.188342,-1,0,SIN:SA:OCE87345306,Europe/Paris,,STE, +STE:SP:OCETrainTER-87345314,1,"Gare de Somain",50.355584,3.277691,-1,0,SIN:SA:OCE87345314,Europe/Paris,,STE, +STE:SP:OCETrainTER-87345389,1,"Gare de Bouchain",50.278059,3.331676,-1,0,STE:SA:OCE87345389,Europe/Paris,,STE, +STE:SP:OCETrainTER-87345397,1,"Gare de Iwuy",50.225677,3.329873,-1,0,STE:SA:OCE87345397,Europe/Paris,,STE, +STE:SP:OCETrainTER-87345405,1,"Gare de Sin le Noble",50.356621,3.112557,-1,0,SIN:SA:OCE87345405,Europe/Paris,,STE, +STE:SP:OCETrainTER-87345413,1,"Gare de Cantin",50.312508,3.12194,-1,0,SIN:SA:OCE87345413,Europe/Paris,,STE, +STE:SP:OCETrainTER-87345421,1,"Gare de Arleux",50.286194,3.120676,-1,0,SIN:SA:OCE87345421,Europe/Paris,,STE, +STE:SP:OCETrainTER-87345439,1,"Gare de Brunémont",50.27824,3.145901,-1,0,SIN:SA:OCE87345439,Europe/Paris,,STE, +STE:SP:OCETrainTER-87345447,1,"Gare de Aubigny au Bac",50.268615,3.158755,-1,0,SIN:SA:OCE87345447,Europe/Paris,,STE, +STE:SP:OCETrainTER-87345496,1,"Gare de Escaudoeuvres",50.191783,3.275504,-1,0,STE:SA:OCE87345496,Europe/Paris,,STE, +STE:SP:OCETrainTER-87345520,1,"Gare de Cambrai Ville",50.176611,3.241216,-1,0,SIN:SA:OCE87345520,Europe/Paris,,STE, +STE:SP:OCETrainTER-87345546,1,"Gare de Maurois",50.067489,3.456213,-1,0,STE:SA:OCE87345546,Europe/Paris,,STE, +STE:SP:OCETrainTER-87345553,1,"Gare de Bertry",50.09123,3.448784,-1,0,STE:SA:OCE87345553,Europe/Paris,,STE, +STE:SP:OCETrainTER-87345561,1,"Gare de Caudry",50.11141,3.409737,-1,0,SIN:SA:OCE87345561,Europe/Paris,,STE, +STE:SP:OCETrainTER-87345587,1,"Gare de Cattenières",50.128112,3.333709,-1,0,STE:SA:OCE87345587,Europe/Paris,,STE, +STE:SP:OCETrainTER-87345595,1,"Gare de Wambaix",50.133831,3.31138,-1,0,STE:SA:OCE87345595,Europe/Paris,,STE, +STE:SP:OCETrainTER-87352047,1,"Gare de Champagnole-PE-Victor",46.74221,5.919807,-1,0,SIN:SA:OCE87352047,Europe/Paris,,STE, +STE:SP:OCETrainTER-87381244,1,"Gare de Gisors",49.28512,1.7845,-1,0,TRN:SA:DUA8738124,Europe/Paris,,STE, +STE:SP:OCETrainTER-87381269,1,"Gare de Sérifontaine",49.357202,1.764112,-1,0,STE:SA:OCE87381269,Europe/Paris,,STE, +STE:SP:OCETrainTER-87381293,1,"Gare de Gournay-Ferrières",49.481555,1.738111,-1,0,ODS:SA:CTP20203002,Europe/Paris,,STE, +STE:SP:OCETrainTER-87386540,1,"Gare de Munster-Badischhof",48.039175,7.153019,-1,0,STE:SA:OCE87386540,Europe/Paris,,STE, +STE:SP:OCETrainTER-87391300,1,"Gare de Morre",47.22599,6.067367,-1,0,SIN:SA:OCE87391300,Europe/Paris,,STE, +STE:SP:OCETrainTER-87400986,1,"Gare de Magneux-Courlandon",49.310001,3.733144,-1,0,STE:SA:OCE87400986,Europe/Paris,,STE, +STE:SP:OCETrainTER-87402297,1,"Gare de Colmar-Mésanges",48.085751,7.333989,-1,0,STE:SA:OCE87402297,Europe/Paris,,STE, +STE:SP:OCETrainTER-87411017,1,"Gare de Rouen-Rive-Droite",49.44903,1.094154,-1,0,SIN:SA:OCE87411017,Europe/Paris,,STE, +STE:SP:OCETrainTER-87411413,1,"Gare de St-Martin-du-Vivier",49.470847,1.161736,-1,0,STE:SA:OCE87411413,Europe/Paris,,STE, +STE:SP:OCETrainTER-87411439,1,"Gare de Morgny",49.523226,1.247811,-1,0,STE:SA:OCE87411439,Europe/Paris,,STE, +STE:SP:OCETrainTER-87411447,1,"Gare de Longuerue-Vieux-Manoir",49.556827,1.276671,-1,0,STE:SA:OCE87411447,Europe/Paris,,STE, +STE:SP:OCETrainTER-87411454,1,"Gare de Montérolier-Buchy",49.603131,1.334709,-1,0,SIN:SA:OCE87411454,Europe/Paris,,STE, +STE:SP:OCETrainTER-87411462,1,"Gare de Sommery",49.629443,1.43567,-1,0,STE:SA:OCE87411462,Europe/Paris,,STE, +STE:SP:OCETrainTER-87411470,1,"Gare de Serqueux",49.631545,1.53934,-1,0,SIN:SA:OCE87411470,Europe/Paris,,STE, +STE:SP:OCETrainTER-87417444,1,"Gare de Franchet-D'espèrey",49.241762,4.014172,-1,0,STE:SA:OCE87417444,Europe/Paris,,STE, +STE:SP:OCETrainTER-87472605,1,"Gare de Thann-Centre",47.809751,7.101628,-1,0,STE:SA:OCE87472605,Europe/Paris,,STE, +STE:SP:OCETrainTER-87543009,1,"Gare de Orléans",47.908153,1.904753,-1,0,STE:SA:OCE87543009,Europe/Paris,,STE, +STE:SP:OCETrainTER-87543116,1,"Gare de St-Cyr-en-Val-La-Source",47.819197,1.947569,-1,0,STE:SA:OCE87543116,Europe/Paris,,STE, +STE:SP:OCETrainTER-87543124,1,"Gare de La Ferté-St-Aubin",47.720968,1.932337,-1,0,STE:SA:OCE87543124,Europe/Paris,,STE, +STE:SP:OCETrainTER-87543140,1,"Gare de Lamotte-Beuvron",47.59397,2.022591,-1,0,STE:SA:OCE87543140,Europe/Paris,,STE, +STE:SP:OCETrainTER-87543165,1,"Gare de Salbris",47.42514,2.047737,-1,0,STE:SA:OCE87543165,Europe/Paris,,STE, +STE:SP:OCETrainTER-87559070,1,"Gare de Nevers-Le-Banlay",47.006817,3.163619,-1,0,SIN:SA:OCE87559070,Europe/Paris,,STE, +STE:SP:OCETrainTER-87571000,1,"Gare de Tours",47.389814,0.693505,-1,0,SIN:SA:OCE87571000,Europe/Paris,,STE, +STE:SP:OCETrainTER-87571240,1,"Gare de St-Pierre-des-Corps",47.385732,0.725054,-1,0,SIN:SA:OCE87571240,Europe/Paris,,STE, +STE:SP:OCETrainTER-87574434,1,"Gare de Veretz-Montlouis",47.371332,0.819784,-1,0,STE:SA:OCE87574434,Europe/Paris,,STE, +STE:SP:OCETrainTER-87574442,1,"Gare de Azay-sur-Cher",47.365095,0.859978,-1,0,STE:SA:OCE87574442,Europe/Paris,,STE, +STE:SP:OCETrainTER-87574459,1,"Gare de St-Martin-le-Beau",47.354949,0.905961,-1,0,STE:SA:OCE87574459,Europe/Paris,,STE, +STE:SP:OCETrainTER-87574475,1,"Gare de Bléré-la-Croix",47.337723,0.987737,-1,0,STE:SA:OCE87574475,Europe/Paris,,STE, +STE:SP:OCETrainTER-87574491,1,"Gare de Chenonceaux",47.330651,1.065394,-1,0,STE:SA:OCE87574491,Europe/Paris,,STE, +STE:SP:OCETrainTER-87574848,1,"Gare de Chissay-en-Touraine",47.334934,1.133578,-1,0,STE:SA:OCE87574848,Europe/Paris,,STE, +STE:SP:OCETrainTER-87574855,1,"Gare de Montrichard",47.343576,1.17182,-1,0,STE:SA:OCE87574855,Europe/Paris,,STE, +STE:SP:OCETrainTER-87574897,1,"Gare de St-Aignan-Noyers",47.286728,1.383662,-1,0,STE:SA:OCE87574897,Europe/Paris,,STE, +STE:SP:OCETrainTER-87576009,1,"Gare de Vierzon",47.226516,2.059824,-1,0,SIN:SA:OCE87576009,Europe/Paris,,STE, +STE:SP:OCETrainTER-87576090,1,"Gare de Vierzon-Forges",47.210349,2.099327,-1,0,STE:SA:OCE87576090,Europe/Paris,,STE, +STE:SP:OCETrainTER-87576108,1,"Gare de Foëcy",47.17599,2.162264,-1,0,STE:SA:OCE87576108,Europe/Paris,,STE, +STE:SP:OCETrainTER-87576116,1,"Gare de Mehun-sur-Yèvre",47.139572,2.207314,-1,0,STE:SA:OCE87576116,Europe/Paris,,STE, +STE:SP:OCETrainTER-87576132,1,"Gare de Marmagne",47.100077,2.282647,-1,0,STE:SA:OCE87576132,Europe/Paris,,STE, +STE:SP:OCETrainTER-87576207,1,"Gare de Bourges",47.094094,2.394226,-1,0,SIN:SA:OCE87576207,Europe/Paris,,STE, +STE:SP:OCETrainTER-87576405,1,"Gare de St-Germain-du-Puy",47.09629,2.484255,-1,0,SIN:SA:OCE87576405,Europe/Paris,,STE, +STE:SP:OCETrainTER-87576439,1,"Gare de Avord",47.034779,2.652604,-1,0,SIN:SA:OCE87576439,Europe/Paris,,STE, +STE:SP:OCETrainTER-87576447,1,"Gare de Bengy",47.000396,2.749106,-1,0,SIN:SA:OCE87576447,Europe/Paris,,STE, +STE:SP:OCETrainTER-87576454,1,"Gare de Nérondes",46.999796,2.821991,-1,0,SIN:SA:OCE87576454,Europe/Paris,,STE, +STE:SP:OCETrainTER-87576470,1,"Gare de La Guerche-sur-l'Aubois",46.94785,2.948455,-1,0,SIN:SA:OCE87576470,Europe/Paris,,STE, +STE:SP:OCETrainTER-87576728,1,"Gare de Mennetou-sur-Cher",47.268848,1.876472,-1,0,STE:SA:OCE87576728,Europe/Paris,,STE, +STE:SP:OCETrainTER-87576868,1,"Gare de Selles-sur-Cher",47.281595,1.546144,-1,0,STE:SA:OCE87576868,Europe/Paris,,STE, +STE:SP:OCETrainTER-87576876,1,"Gare de Gièvres",47.27873,1.667812,-1,0,STE:SA:OCE87576876,Europe/Paris,,STE, +STE:SP:OCETrainTER-87576884,1,"Gare de Villefranche-sur-Cher",47.29474,1.768037,-1,0,STE:SA:OCE87576884,Europe/Paris,,STE, +STE:SP:OCETrainTER-87598219,1,"Gare de Le Locle-Col-des-Roches",47.04989,6.725831,-1,0,SIN:SA:OCE87598219,Europe/Paris,,STE, +STE:SP:OCETrainTER-87598227,1,"Gare de Le Locle.",47.057708,6.746141,-1,0,SIN:SA:OCE87598227,Europe/Paris,,STE, +STE:SP:OCETrainTER-87682005,1,"Gare de Melun",48.527597,2.655392,-1,0,TRN:SA:DUA8768200,Europe/Paris,,STE, +STE:SP:OCETrainTER-87682203,1,"Gare de Bois-le-Roi",48.475567,2.692001,-1,0,TRN:SA:DUA8768220,Europe/Paris,,STE, +STE:SP:OCETrainTER-87682211,1,"Gare de Fontainebleau-Avon",48.416366,2.726255,-1,0,TRN:SA:DUA8768221,Europe/Paris,,STE, +STE:SP:OCETrainTER-87682278,1,"Gare de Moret-Veneux-les-Sabl.",48.378404,2.799525,-1,0,STE:SA:OCE87682278,Europe/Paris,,STE, +STE:SP:OCETrainTER-87682294,1,"Gare de St-Mammès",48.382178,2.815863,-1,0,TRN:SA:DUA8768229,Europe/Paris,,STE, +STE:SP:OCETrainTER-87682302,1,"Gare de Montereau",48.379832,2.94291,-1,0,TRN:SA:DUA8768230,Europe/Paris,,STE, +STE:SP:OCETrainTER-87682450,1,"Gare de Champagne-sur-Seine",48.406582,2.79922,-1,0,STE:SA:OCE87682450,Europe/Paris,,STE, +STE:SP:OCETrainTER-87683003,1,"Gare de Sens",48.198038,3.267327,-1,0,TRN:SA:DUA8768300,Europe/Paris,,STE, +STE:SP:OCETrainTER-87683102,1,"Gare de Villeneuve-la-Guyard",48.342902,3.071783,-1,0,STE:SA:OCE87683102,Europe/Paris,,STE, +STE:SP:OCETrainTER-87683128,1,"Gare de Champigny-sur-Yonne",48.324141,3.130856,-1,0,TRN:SA:DUA8768312,Europe/Paris,,STE, +STE:SP:OCETrainTER-87683136,1,"Gare de Pont-sur-Yonne",48.286695,3.20175,-1,0,TRN:SA:DUA8768313,Europe/Paris,,STE, +STE:SP:OCETrainTER-87683201,1,"Gare de Etigny-Véron",48.138262,3.290171,-1,0,STE:SA:OCE87683201,Europe/Paris,,STE, +STE:SP:OCETrainTER-87683219,1,"Gare de Villeneuve-sur-Yonne",48.08494,3.286253,-1,0,TRN:SA:DUA8768321,Europe/Paris,,STE, +STE:SP:OCETrainTER-87683227,1,"Gare de St-Julien-du-Sault",48.026953,3.302732,-1,0,TRN:SA:DUA8768322,Europe/Paris,,STE, +STE:SP:OCETrainTER-87683243,1,"Gare de Joigny",47.973833,3.392956,-1,0,TRN:SA:DUA8768324,Europe/Paris,,STE, +STE:SP:OCETrainTER-87683268,1,"Gare de Laroche-Migennes",47.960853,3.512941,-1,0,SIN:SA:OCE87683268,Europe/Paris,,STE, +STE:SP:OCETrainTER-87683318,1,"Gare de St-Florentin-Vergigny",47.980415,3.730949,-1,0,SIN:SA:OCE87683318,Europe/Paris,,STE, +STE:SP:OCETrainTER-87683532,1,"Gare de Chemilly-Appoigny",47.897372,3.554407,-1,0,SIN:SA:OCE87683532,Europe/Paris,,STE, +STE:SP:OCETrainTER-87683557,1,"Gare de Monéteau-Gurgy",47.850719,3.579952,-1,0,SIN:SA:OCE87683557,Europe/Paris,,STE, +STE:SP:OCETrainTER-87683573,1,"Gare de Auxerre-St-Gervais",47.797614,3.58514,-1,0,SIN:SA:OCE87683573,Europe/Paris,,STE, +STE:SP:OCETrainTER-87683615,1,"Gare de Champs-St-Bris",47.738246,3.603611,-1,0,SIN:SA:OCE87683615,Europe/Paris,,STE, +STE:SP:OCETrainTER-87683631,1,"Gare de Vincelles",47.704279,3.628359,-1,0,SIN:SA:OCE87683631,Europe/Paris,,STE, +STE:SP:OCETrainTER-87683649,1,"Gare de Cravant-Bazarnes",47.678581,3.681465,-1,0,SIN:SA:OCE87683649,Europe/Paris,,STE, +STE:SP:OCETrainTER-87683664,1,"Gare de Vermenton",47.661022,3.73114,-1,0,SIN:SA:OCE87683664,Europe/Paris,,STE, +STE:SP:OCETrainTER-87683680,1,"Gare de Arcy-sur-Cure",47.60062,3.767049,-1,0,SIN:SA:OCE87683680,Europe/Paris,,STE, +STE:SP:OCETrainTER-87683722,1,"Gare de Sermizelles-Vézelay",47.528692,3.792851,-1,0,SIN:SA:OCE87683722,Europe/Paris,,STE, +STE:SP:OCETrainTER-87683789,1,"Gare de Avallon",47.495524,3.91253,-1,0,SIN:SA:OCE87683789,Europe/Paris,,STE, +STE:SP:OCETrainTER-87683847,1,"Gare de Mailly-la-Ville",47.604361,3.675079,-1,0,SIN:SA:OCE87683847,Europe/Paris,,STE, +STE:SP:OCETrainTER-87686006,1,"Gare de Paris-Gare-de-Lyon",48.844922,2.373462,-1,0,SIN:SA:OCE87686006,Europe/Paris,,STE, +STE:SP:OCETrainTER-87686667,1,"Gare de Paris-Bercy",48.839211,2.382799,-1,0,SIN:SA:OCE87686667,Europe/Paris,,STE, +STE:SP:OCETrainTER-87691394,1,"Gare de La Marche",47.139763,3.039386,-1,0,STE:SA:OCE87691394,Europe/Paris,,STE, +STE:SP:OCETrainTER-87691436,1,"Gare de Garchizy",47.043048,3.085856,-1,0,STE:SA:OCE87691436,Europe/Paris,,STE, +STE:SP:OCETrainTER-87691469,1,"Gare de Vauzelles",47.001357,3.134209,-1,0,STE:SA:OCE87691469,Europe/Paris,,STE, +STE:SP:OCETrainTER-87691600,1,"Gare de Les Perrières",47.005616,3.146543,-1,0,SIN:SA:OCE87691600,Europe/Paris,,STE, +STE:SP:OCETrainTER-87694000,1,"Gare de Le Creusot",46.807829,4.430429,-1,0,SIN:SA:OCE87694000,Europe/Paris,,STE, +STE:SP:OCETrainTER-87694141,1,"Gare de Etang",46.867893,4.183846,-1,0,SIN:SA:OCE87694141,Europe/Paris,,STE, +STE:SP:OCETrainTER-87694158,1,"Gare de Mesvres",46.862798,4.244954,-1,0,SIN:SA:OCE87694158,Europe/Paris,,STE, +STE:SP:OCETrainTER-87694166,1,"Gare de Broye",46.861944,4.296092,-1,0,SIN:SA:OCE87694166,Europe/Paris,,STE, +STE:SP:OCETrainTER-87694174,1,"Gare de St-Symphorien-de-Marma.",46.844215,4.337746,-1,0,SIN:SA:OCE87694174,Europe/Paris,,STE, +STE:SP:OCETrainTER-87694182,1,"Gare de Marmagne-Gare",46.833426,4.360203,-1,0,SIN:SA:OCE87694182,Europe/Paris,,STE, +STE:SP:OCETrainTER-87694307,1,"Gare de Montchanin",46.759158,4.481462,-1,0,SIN:SA:OCE87694307,Europe/Paris,,STE, +STE:SP:OCETrainTER-87694364,1,"Gare de St-Léger-sur-Dheune",46.847999,4.627718,-1,0,SIN:SA:OCE87694364,Europe/Paris,,STE, +STE:SP:OCETrainTER-87694398,1,"Gare de Cheilly-les-Maranges",46.892889,4.675986,-1,0,SIN:SA:OCE87694398,Europe/Paris,,STE, +STE:SP:OCETrainTER-87694570,1,"Gare de Autun",46.954678,4.293028,-1,0,SIN:SA:OCE87694570,Europe/Paris,,STE, +STE:SP:OCETrainTER-87694596,1,"Gare de Brion-Laizy",46.908559,4.207195,-1,0,SIN:SA:OCE87694596,Europe/Paris,,STE, +STE:SP:OCETrainTER-87694612,1,"Gare de Blanzy",46.693734,4.39101,-1,0,STE:SA:OCE87694612,Europe/Paris,,STE, +STE:SP:OCETrainTER-87694620,1,"Gare de Montceau-les-Mines",46.671068,4.362067,-1,0,STE:SA:OCE87694620,Europe/Paris,,STE, +STE:SP:OCETrainTER-87694638,1,"Gare de Galuzot",46.642025,4.32992,-1,0,STE:SA:OCE87694638,Europe/Paris,,STE, +STE:SP:OCETrainTER-87694646,1,"Gare de Ciry-le-Noble",46.604259,4.299516,-1,0,STE:SA:OCE87694646,Europe/Paris,,STE, +STE:SP:OCETrainTER-87694653,1,"Gare de Génelard",46.581192,4.23795,-1,0,STE:SA:OCE87694653,Europe/Paris,,STE, +STE:SP:OCETrainTER-87694687,1,"Gare de Paray-le-Monial",46.447256,4.113628,-1,0,SIN:SA:OCE87694687,Europe/Paris,,STE, +STE:SP:OCETrainTER-87694695,1,"Gare de Digoin",46.485196,3.987637,-1,0,SIN:SA:OCE87694695,Europe/Paris,,STE, +STE:SP:OCETrainTER-87694737,1,"Gare de La Clayette-Baudemont",46.288162,4.298451,-1,0,SIN:SA:OCE87694737,Europe/Paris,,STE, +STE:SP:OCETrainTER-87694778,1,"Gare de Chauffailles",46.207404,4.345377,-1,0,SIN:SA:OCE87694778,Europe/Paris,,STE, +STE:SP:OCETrainTER-87694851,1,"Gare de St-Agnan",46.502017,3.879009,-1,0,SIN:SA:OCE87694851,Europe/Paris,,STE, +STE:SP:OCETrainTER-87694869,1,"Gare de Gilly-sur-Loire",46.536983,3.781787,-1,0,SIN:SA:OCE87694869,Europe/Paris,,STE, +STE:SP:OCETrainTER-87696005,1,"Gare de Nevers",46.987349,3.15087,-1,0,SIN:SA:OCE87696005,Europe/Paris,,STE, +STE:SP:OCETrainTER-87696146,1,"Gare de Cosne-sur-Loire",47.414026,2.932089,-1,0,SIN:SA:OCE87696146,Europe/Paris,,STE, +STE:SP:OCETrainTER-87696161,1,"Gare de Tracy-Sancerre",47.33691,2.880508,-1,0,SIN:SA:OCE87696161,Europe/Paris,,STE, +STE:SP:OCETrainTER-87696179,1,"Gare de Pouilly-sur-Loire",47.28217,2.966063,-1,0,SIN:SA:OCE87696179,Europe/Paris,,STE, +STE:SP:OCETrainTER-87696187,1,"Gare de Mesves-Bulcy",47.242461,3.006256,-1,0,STE:SA:OCE87696187,Europe/Paris,,STE, +STE:SP:OCETrainTER-87696195,1,"Gare de La-Charité-sur-Loire",47.180995,3.024014,-1,0,SIN:SA:OCE87696195,Europe/Paris,,STE, +STE:SP:OCETrainTER-87696203,1,"Gare de Tronsanges",47.112881,3.054216,-1,0,STE:SA:OCE87696203,Europe/Paris,,STE, +STE:SP:OCETrainTER-87696211,1,"Gare de Pougues-les-Eaux",47.076975,3.093823,-1,0,SIN:SA:OCE87696211,Europe/Paris,,STE, +STE:SP:OCETrainTER-87696229,1,"Gare de Fourchambault",47.019234,3.087301,-1,0,SIN:SA:OCE87696229,Europe/Paris,,STE, +STE:SP:OCETrainTER-87696260,1,"Gare de Saincaize",46.931373,3.071971,-1,0,SIN:SA:OCE87696260,Europe/Paris,,STE, +STE:SP:OCETrainTER-87696294,1,"Gare de St-Pierre-le-Moûtier",46.793271,3.111736,-1,0,SIN:SA:OCE87696294,Europe/Paris,,STE, +STE:SP:OCETrainTER-87696302,1,"Gare de Chantenay-St-Imbert",46.728304,3.171699,-1,0,SIN:SA:OCE87696302,Europe/Paris,,STE, +STE:SP:OCETrainTER-87696310,1,"Gare de Villeneuve-sur-Allier",46.659305,3.246989,-1,0,STE:SA:OCE87696310,Europe/Paris,,STE, +STE:SP:OCETrainTER-87696328,1,"Gare de Moulins-sur-Allier",46.561364,3.338755,-1,0,SIN:SA:OCE87696328,Europe/Paris,,STE, +STE:SP:OCETrainTER-87696336,1,"Gare de Bessay",46.442932,3.360574,-1,0,STE:SA:OCE87696336,Europe/Paris,,STE, +STE:SP:OCETrainTER-87696351,1,"Gare de Varennes-sur-Allier",46.315441,3.394161,-1,0,STE:SA:OCE87696351,Europe/Paris,,STE, +STE:SP:OCETrainTER-87696427,1,"Gare de Dompierre-Sept-Fons",46.526267,3.674899,-1,0,SIN:SA:OCE87696427,Europe/Paris,,STE, +STE:SP:OCETrainTER-87696450,1,"Gare de Imphy",46.9334,3.259751,-1,0,SIN:SA:OCE87696450,Europe/Paris,,STE, +STE:SP:OCETrainTER-87696468,1,"Gare de Béard",46.865303,3.318114,-1,0,SIN:SA:OCE87696468,Europe/Paris,,STE, +STE:SP:OCETrainTER-87696484,1,"Gare de Decize",46.837332,3.467296,-1,0,SIN:SA:OCE87696484,Europe/Paris,,STE, +STE:SP:OCETrainTER-87696492,1,"Gare de Cercy-la-Tour",46.857926,3.645024,-1,0,SIN:SA:OCE87696492,Europe/Paris,,STE, +STE:SP:OCETrainTER-87696534,1,"Gare de Luzy(Nièvre)",46.794044,3.969226,-1,0,SIN:SA:OCE87696534,Europe/Paris,,STE, +STE:SP:OCETrainTER-87696617,1,"Gare de Corbigny",47.253977,3.677881,-1,0,SIN:SA:OCE87696617,Europe/Paris,,STE, +STE:SP:OCETrainTER-87696633,1,"Gare de Flez-Cuzy-Tannay",47.362541,3.615025,-1,0,SIN:SA:OCE87696633,Europe/Paris,,STE, +STE:SP:OCETrainTER-87696807,1,"Gare de Clamecy",47.466487,3.520646,-1,0,SIN:SA:OCE87696807,Europe/Paris,,STE, +STE:SP:OCETrainTER-87696831,1,"Gare de Coulanges-Sur-Yonne",47.527366,3.547154,-1,0,SIN:SA:OCE87696831,Europe/Paris,,STE, +STE:SP:OCETrainTER-87696856,1,"Gare de Châtel-Censoir",47.537739,3.635345,-1,0,SIN:SA:OCE87696856,Europe/Paris,,STE, +STE:SP:OCETrainTER-87710731,1,"Gare de Ecole-Valentin",47.275017,5.993911,-1,0,STE:SA:OCE87710731,Europe/Paris,,STE, +STE:SP:OCETrainTER-87712026,1,"Gare de Rully",46.880291,4.760774,-1,0,SIN:SA:OCE87712026,Europe/Paris,,STE, +STE:SP:OCETrainTER-87712182,1,"Gare de Neuilly-lès-Dijon",47.28178,5.11079,-1,0,STE:SA:OCE87712182,Europe/Paris,,STE, +STE:SP:OCETrainTER-87712265,1,"Gare de Brétigny-Norges",47.389627,5.109756,-1,0,SIN:SA:OCE87712265,Europe/Paris,,STE, +STE:SP:OCETrainTER-87712323,1,"Gare de Lantenay",47.33524,4.86045,-1,0,STE:SA:OCE87712323,Europe/Paris,,STE, +STE:SP:OCETrainTER-87712331,1,"Gare de Velars",47.326241,4.926739,-1,0,STE:SA:OCE87712331,Europe/Paris,,STE, +STE:SP:OCETrainTER-87712604,1,"Gare de Ouges",47.255673,5.073252,-1,0,SIN:SA:OCE87712604,Europe/Paris,,STE, +STE:SP:OCETrainTER-87712620,1,"Gare de Longecourt-en-Plaine",47.19387,5.134814,-1,0,SIN:SA:OCE87712620,Europe/Paris,,STE, +STE:SP:OCETrainTER-87712679,1,"Gare de Chaugey",47.087531,5.255282,-1,0,SIN:SA:OCE87712679,Europe/Paris,,STE, +STE:SP:OCETrainTER-87713008,1,"Gare de Dijon-Porte-Neuve",47.322794,5.054861,-1,0,SIN:SA:OCE87713008,Europe/Paris,,STE, +STE:SP:OCETrainTER-87713040,1,"Gare de Dijon-Ville",47.323404,5.02728,-1,0,SIN:SA:OCE87713040,Europe/Paris,,STE, +STE:SP:OCETrainTER-87713065,1,"Gare de Malain",47.327279,4.80947,-1,0,STE:SA:OCE87713065,Europe/Paris,,STE, +STE:SP:OCETrainTER-87713073,1,"Gare de Blaisy-Bas",47.373254,4.741372,-1,0,STE:SA:OCE87713073,Europe/Paris,,STE, +STE:SP:OCETrainTER-87713081,1,"Gare de Verrey",47.438539,4.670304,-1,0,STE:SA:OCE87713081,Europe/Paris,,STE, +STE:SP:OCETrainTER-87713099,1,"Gare de Thenissey",47.494372,4.62357,-1,0,STE:SA:OCE87713099,Europe/Paris,,STE, +STE:SP:OCETrainTER-87713115,1,"Gare de Les Laumes-Alésia",47.543319,4.462868,-1,0,SIN:SA:OCE87713115,Europe/Paris,,STE, +STE:SP:OCETrainTER-87713131,1,"Gare de Montbard",47.61872,4.336152,-1,0,SIN:SA:OCE87713131,Europe/Paris,,STE, +STE:SP:OCETrainTER-87713156,1,"Gare de Nuits-sous-Ravières",47.72921,4.211266,-1,0,SIN:SA:OCE87713156,Europe/Paris,,STE, +STE:SP:OCETrainTER-87713198,1,"Gare de Tonnerre",47.859603,3.973496,-1,0,SIN:SA:OCE87713198,Europe/Paris,,STE, +STE:SP:OCETrainTER-87713313,1,"Gare de Genlis",47.244309,5.22378,-1,0,STE:SA:OCE87713313,Europe/Paris,,STE, +STE:SP:OCETrainTER-87713321,1,"Gare de Collonges (Côte-d'Or)",47.221055,5.266023,-1,0,STE:SA:OCE87713321,Europe/Paris,,STE, +STE:SP:OCETrainTER-87713339,1,"Gare de Villers-les-Pots",47.206737,5.347999,-1,0,STE:SA:OCE87713339,Europe/Paris,,STE, +STE:SP:OCETrainTER-87713347,1,"Gare de Auxonne",47.192909,5.377162,-1,0,STE:SA:OCE87713347,Europe/Paris,,STE, +STE:SP:OCETrainTER-87713412,1,"Gare de Dole-Ville",47.096155,5.488036,-1,0,SIN:SA:OCE87713412,Europe/Paris,,STE, +STE:SP:OCETrainTER-87713503,1,"Gare de Gevrey-Chambertin",47.227388,4.998789,-1,0,SIN:SA:OCE87713503,Europe/Paris,,STE, +STE:SP:OCETrainTER-87713511,1,"Gare de Vougeot-Gilly-Les-Cît.",47.175618,4.971269,-1,0,SIN:SA:OCE87713511,Europe/Paris,,STE, +STE:SP:OCETrainTER-87713529,1,"Gare de Nuits-St-Georges",47.130668,4.956228,-1,0,SIN:SA:OCE87713529,Europe/Paris,,STE, +STE:SP:OCETrainTER-87713537,1,"Gare de Corgoloin",47.084212,4.916892,-1,0,SIN:SA:OCE87713537,Europe/Paris,,STE, +STE:SP:OCETrainTER-87713545,1,"Gare de Beaune",47.023041,4.848723,-1,0,SIN:SA:OCE87713545,Europe/Paris,,STE, +STE:SP:OCETrainTER-87713560,1,"Gare de Meursault",46.969182,4.795415,-1,0,SIN:SA:OCE87713560,Europe/Paris,,STE, +STE:SP:OCETrainTER-87713578,1,"Gare de Chagny",46.907429,4.74965,-1,0,SIN:SA:OCE87713578,Europe/Paris,,STE, +STE:SP:OCETrainTER-87713586,1,"Gare de Fontaines-Mercurey",46.851217,4.774869,-1,0,SIN:SA:OCE87713586,Europe/Paris,,STE, +STE:SP:OCETrainTER-87713594,1,"Gare de Santenay-les-Bains",46.910985,4.702054,-1,0,SIN:SA:OCE87713594,Europe/Paris,,STE, +STE:SP:OCETrainTER-87713628,1,"Gare de Saulon",47.224183,5.104766,-1,0,SIN:SA:OCE87713628,Europe/Paris,,STE, +STE:SP:OCETrainTER-87713636,1,"Gare de Aiserey",47.170648,5.158391,-1,0,SIN:SA:OCE87713636,Europe/Paris,,STE, +STE:SP:OCETrainTER-87713644,1,"Gare de Brazey-en-Plaine",47.131563,5.212223,-1,0,SIN:SA:OCE87713644,Europe/Paris,,STE, +STE:SP:OCETrainTER-87713651,1,"Gare de St-Jean-de-Losne",47.099799,5.244335,-1,0,SIN:SA:OCE87713651,Europe/Paris,,STE, +STE:SP:OCETrainTER-87713669,1,"Gare de Pagny (Côte-d'Or)",47.046176,5.200803,-1,0,STE:SA:OCE87713669,Europe/Paris,,STE, +STE:SP:OCETrainTER-87713677,1,"Gare de Seurre",46.99645,5.151248,-1,0,SIN:SA:OCE87713677,Europe/Paris,,STE, +STE:SP:OCETrainTER-87713701,1,"Gare de Mervans",46.798883,5.179536,-1,0,SIN:SA:OCE87713701,Europe/Paris,,STE, +STE:SP:OCETrainTER-87713735,1,"Gare de Louhans",46.631126,5.217708,-1,0,SIN:SA:OCE87713735,Europe/Paris,,STE, +STE:SP:OCETrainTER-87713826,1,"Gare de Ruffey",47.370702,5.079387,-1,0,SIN:SA:OCE87713826,Europe/Paris,,STE, +STE:SP:OCETrainTER-87713834,1,"Gare de St-Julien-Clenay",47.405559,5.128045,-1,0,SIN:SA:OCE87713834,Europe/Paris,,STE, +STE:SP:OCETrainTER-87713842,1,"Gare de Gemeaux",47.477803,5.130078,-1,0,SIN:SA:OCE87713842,Europe/Paris,,STE, +STE:SP:OCETrainTER-87713859,1,"Gare de Is-sur-Tille",47.520228,5.129833,-1,0,SIN:SA:OCE87713859,Europe/Paris,,STE, +STE:SP:OCETrainTER-87715003,1,"Gare de Pontarlier",46.900982,6.353365,-1,0,SIN:SA:OCE87715003,Europe/Paris,,STE, +STE:SP:OCETrainTER-87715102,1,"Gare de Andelot",46.85938,5.923725,-1,0,SIN:SA:OCE87715102,Europe/Paris,,STE, +STE:SP:OCETrainTER-87715136,1,"Gare de Frasne",46.85745,6.157695,-1,0,SIN:SA:OCE87715136,Europe/Paris,,STE, +STE:SP:OCETrainTER-87715144,1,"Gare de La Rivière",46.870105,6.213439,-1,0,SIN:SA:OCE87715144,Europe/Paris,,STE, +STE:SP:OCETrainTER-87715151,1,"Gare de Ste-Colombe",46.87902,6.265864,-1,0,SIN:SA:OCE87715151,Europe/Paris,,STE, +STE:SP:OCETrainTER-87715219,1,"Gare de Labergement-Ste-Marie",46.773147,6.280666,-1,0,SIN:SA:OCE87715219,Europe/Paris,,STE, +STE:SP:OCETrainTER-87715326,1,"Gare de Champagnole",46.749247,5.909936,-1,0,SIN:SA:OCE87715326,Europe/Paris,,STE, +STE:SP:OCETrainTER-87715383,1,"Gare de La Chaux-des-Crotenay",46.654536,5.943833,-1,0,SIN:SA:OCE87715383,Europe/Paris,,STE, +STE:SP:OCETrainTER-87715391,1,"Gare de La Chaumusse-Fort-du-Pl",46.604902,5.96146,-1,0,SIN:SA:OCE87715391,Europe/Paris,,STE, +STE:SP:OCETrainTER-87715417,1,"Gare de St-Laurent-en-Grandvaux",46.574925,5.951383,-1,0,SIN:SA:OCE87715417,Europe/Paris,,STE, +STE:SP:OCETrainTER-87715433,1,"Gare de Morbier",46.539109,6.017909,-1,0,SIN:SA:OCE87715433,Europe/Paris,,STE, +STE:SP:OCETrainTER-87715441,1,"Gare de Morez",46.526327,6.023801,-1,0,SIN:SA:OCE87715441,Europe/Paris,,STE, +STE:SP:OCETrainTER-87718007,1,"Gare de Besançon-Viotte",47.247038,6.021912,-1,0,SIN:SA:OCE87718007,Europe/Paris,,STE, +STE:SP:OCETrainTER-87718015,1,"Gare de Besançon-Mouillère",47.240382,6.033751,-1,0,SIN:SA:OCE87718015,Europe/Paris,,STE, +STE:SP:OCETrainTER-87718106,1,"Gare de Montferrand-Thoraise",47.184788,5.90765,-1,0,STE:SA:OCE87718106,Europe/Paris,,STE, +STE:SP:OCETrainTER-87718114,1,"Gare de Torpes-Boussières",47.16394,5.888766,-1,0,STE:SA:OCE87718114,Europe/Paris,,STE, +STE:SP:OCETrainTER-87718122,1,"Gare de Byans",47.118586,5.85224,-1,0,SIN:SA:OCE87718122,Europe/Paris,,STE, +STE:SP:OCETrainTER-87718130,1,"Gare de Liesle",47.058829,5.820603,-1,0,SIN:SA:OCE87718130,Europe/Paris,,STE, +STE:SP:OCETrainTER-87718155,1,"Gare de Arbois (Jura)",46.912425,5.764767,-1,0,SIN:SA:OCE87718155,Europe/Paris,,STE, +STE:SP:OCETrainTER-87718189,1,"Gare de Poligny",46.844169,5.700318,-1,0,SIN:SA:OCE87718189,Europe/Paris,,STE, +STE:SP:OCETrainTER-87718197,1,"Gare de St-Lothain",46.823719,5.64506,-1,0,SIN:SA:OCE87718197,Europe/Paris,,STE, +STE:SP:OCETrainTER-87718213,1,"Gare de Domblans-Voiteur",46.762743,5.597938,-1,0,STE:SA:OCE87718213,Europe/Paris,,STE, +STE:SP:OCETrainTER-87718239,1,"Gare de Lons-le-Saunier",46.668398,5.550877,-1,0,SIN:SA:OCE87718239,Europe/Paris,,STE, +STE:SP:OCETrainTER-87718270,1,"Gare de Cousance",46.535157,5.38705,-1,0,STE:SA:OCE87718270,Europe/Paris,,STE, +STE:SP:OCETrainTER-87718296,1,"Gare de St-Amour",46.433678,5.334537,-1,0,STE:SA:OCE87718296,Europe/Paris,,STE, +STE:SP:OCETrainTER-87718304,1,"Gare de Franois",47.227514,5.93727,-1,0,STE:SA:OCE87718304,Europe/Paris,,STE, +STE:SP:OCETrainTER-87718312,1,"Gare de Dannemarie-Velesmes",47.203748,5.873609,-1,0,STE:SA:OCE87718312,Europe/Paris,,STE, +STE:SP:OCETrainTER-87718320,1,"Gare de St-Vit",47.183489,5.809006,-1,0,STE:SA:OCE87718320,Europe/Paris,,STE, +STE:SP:OCETrainTER-87718338,1,"Gare de Ranchot",47.152487,5.724631,-1,0,STE:SA:OCE87718338,Europe/Paris,,STE, +STE:SP:OCETrainTER-87718361,1,"Gare de Orchamps",47.150078,5.659305,-1,0,STE:SA:OCE87718361,Europe/Paris,,STE, +STE:SP:OCETrainTER-87718403,1,"Gare de Roche-lez-Beaupré",47.276417,6.111272,-1,0,STE:SA:OCE87718403,Europe/Paris,,STE, +STE:SP:OCETrainTER-87718411,1,"Gare de Novillars",47.283906,6.132791,-1,0,STE:SA:OCE87718411,Europe/Paris,,STE, +STE:SP:OCETrainTER-87718429,1,"Gare de Deluz",47.292454,6.199545,-1,0,STE:SA:OCE87718429,Europe/Paris,,STE, +STE:SP:OCETrainTER-87718437,1,"Gare de Laissey",47.298881,6.23369,-1,0,STE:SA:OCE87718437,Europe/Paris,,STE, +STE:SP:OCETrainTER-87718460,1,"Gare de Baume-les-Dames",47.353962,6.359671,-1,0,STE:SA:OCE87718460,Europe/Paris,,STE, +STE:SP:OCETrainTER-87718502,1,"Gare de Saône",47.209573,6.101417,-1,0,SIN:SA:OCE87718502,Europe/Paris,,STE, +STE:SP:OCETrainTER-87718510,1,"Gare de Mamirolle",47.199891,6.161878,-1,0,SIN:SA:OCE87718510,Europe/Paris,,STE, +STE:SP:OCETrainTER-87718528,1,"Gare de L'Hôpital-du-Gros-Bois",47.169216,6.213308,-1,0,SIN:SA:OCE87718528,Europe/Paris,,STE, +STE:SP:OCETrainTER-87718536,1,"Gare de Etalans",47.155726,6.270615,-1,0,STE:SA:OCE87718536,Europe/Paris,,STE, +STE:SP:OCETrainTER-87718544,1,"Gare de Le Valdahon",47.149697,6.342275,-1,0,SIN:SA:OCE87718544,Europe/Paris,,STE, +STE:SP:OCETrainTER-87718551,1,"Gare de Avoudrey",47.129855,6.434848,-1,0,SIN:SA:OCE87718551,Europe/Paris,,STE, +STE:SP:OCETrainTER-87718577,1,"Gare de Gilley",47.050484,6.49229,-1,0,SIN:SA:OCE87718577,Europe/Paris,,STE, +STE:SP:OCETrainTER-87718601,1,"Gare de Valdahon-Camp-Militaire",47.150613,6.315078,-1,0,STE:SA:OCE87718601,Europe/Paris,,STE, +STE:SP:OCETrainTER-87718619,1,"Gare de Morteau",47.053691,6.60486,-1,0,SIN:SA:OCE87718619,Europe/Paris,,STE, +STE:SP:OCETrainTER-87718833,1,"Gare de Mouchard",46.976813,5.799724,-1,0,SIN:SA:OCE87718833,Europe/Paris,,STE, +STE:SP:OCETrainTER-87718841,1,"Gare de Arc-et-Senans",47.030456,5.776935,-1,0,SIN:SA:OCE87718841,Europe/Paris,,STE, +STE:SP:OCETrainTER-87718866,1,"Gare de Montbarrey",47.035877,5.637226,-1,0,SIN:SA:OCE87718866,Europe/Paris,,STE, +STE:SP:OCETrainTER-87721001,1,"Gare de Lyon-Vaise",45.780142,4.80405,-1,0,STE:SA:OCE87721001,Europe/Paris,,STE, +STE:SP:OCETrainTER-87721225,1,"Gare de Collonges-Fontaines",45.82911,4.846667,-1,0,STE:SA:OCE87721225,Europe/Paris,,STE, +STE:SP:OCETrainTER-87721241,1,"Gare de Couzon-au-Mont-d'Or",45.848701,4.829517,-1,0,STE:SA:OCE87721241,Europe/Paris,,STE, +STE:SP:OCETrainTER-87721266,1,"Gare de Albigny-Neuville",45.874857,4.832844,-1,0,STE:SA:OCE87721266,Europe/Paris,,STE, +STE:SP:OCETrainTER-87721282,1,"Gare de St-Germain-au-Mont-d'Or",45.888442,4.804176,-1,0,STE:SA:OCE87721282,Europe/Paris,,STE, +STE:SP:OCETrainTER-87721290,1,"Gare de Quincieux",45.906904,4.778574,-1,0,STE:SA:OCE87721290,Europe/Paris,,STE, +STE:SP:OCETrainTER-87721324,1,"Gare de Anse",45.939335,4.719743,-1,0,STE:SA:OCE87721324,Europe/Paris,,STE, +STE:SP:OCETrainTER-87721332,1,"Gare de Villefranche-sur-Saône",45.984444,4.720814,-1,0,SIN:SA:OCE87721332,Europe/Paris,,STE, +STE:SP:OCETrainTER-87721340,1,"Gare de St-Georges-de-Reneins",46.062191,4.718887,-1,0,SIN:SA:OCE87721340,Europe/Paris,,STE, +STE:SP:OCETrainTER-87721357,1,"Gare de Belleville-sur-Saône",46.111942,4.729002,-1,0,SIN:SA:OCE87721357,Europe/Paris,,STE, +STE:SP:OCETrainTER-87721423,1,"Gare de Lozanne",45.854135,4.68146,-1,0,SIN:SA:OCE87721423,Europe/Paris,,STE, +STE:SP:OCETrainTER-87721753,1,"Gare de Chatillon-d'Azergues",45.875254,4.645199,-1,0,SIN:SA:OCE87721753,Europe/Paris,,STE, +STE:SP:OCETrainTER-87721761,1,"Gare de Chessy (Rhône)",45.885537,4.622497,-1,0,SIN:SA:OCE87721761,Europe/Paris,,STE, +STE:SP:OCETrainTER-87721787,1,"Gare de Bois-d'Oingt-Légny",45.906588,4.57558,-1,0,SIN:SA:OCE87721787,Europe/Paris,,STE, +STE:SP:OCETrainTER-87721829,1,"Gare de Chamelet",45.981605,4.507096,-1,0,SIN:SA:OCE87721829,Europe/Paris,,STE, +STE:SP:OCETrainTER-87721860,1,"Gare de Lamure-sur-Azergues",46.061095,4.492123,-1,0,SIN:SA:OCE87721860,Europe/Paris,,STE, +STE:SP:OCETrainTER-87722025,1,"Gare de Lyon-Perrache",45.748492,4.825748,-1,0,STE:SA:OCE87722025,Europe/Paris,,STE, +STE:SP:OCETrainTER-87722538,1,"Gare de Feyzin",45.665891,4.853071,-1,0,STE:SA:OCE87722538,Europe/Paris,,STE, +STE:SP:OCETrainTER-87722546,1,"Gare de Sérézin",45.627175,4.818039,-1,0,STE:SA:OCE87722546,Europe/Paris,,STE, +STE:SP:OCETrainTER-87722561,1,"Gare de Chasse-sur-Rhône",45.582394,4.79485,-1,0,STE:SA:OCE87722561,Europe/Paris,,STE, +STE:SP:OCETrainTER-87722579,1,"Gare de Estressin",45.540271,4.868264,-1,0,STE:SA:OCE87722579,Europe/Paris,,STE, +STE:SP:OCETrainTER-87722587,1,"Gare de Vienne",45.521214,4.874305,-1,0,STE:SA:OCE87722587,Europe/Paris,,STE, +STE:SP:OCETrainTER-87722652,1,"Gare de St-Clair-les-Roches",45.450387,4.769905,-1,0,STE:SA:OCE87722652,Europe/Paris,,STE, +STE:SP:OCETrainTER-87722678,1,"Gare de Le Péage-de-Roussillon",45.371659,4.795408,-1,0,STE:SA:OCE87722678,Europe/Paris,,STE, +STE:SP:OCETrainTER-87723197,1,"Gare de Lyon-Part-Dieu",45.760585,4.859435,-1,0,SIN:SA:OCE87723197,Europe/Paris,,STE, +STE:SP:OCETrainTER-87723585,1,"Gare de Meximieux-Pérouges",45.901787,5.193333,-1,0,STE:SA:OCE87723585,Europe/Paris,,STE, +STE:SP:OCETrainTER-87723700,1,"Gare de Sathonay-Rillieux",45.82025,4.875267,-1,0,STE:SA:OCE87723700,Europe/Paris,,STE, +STE:SP:OCETrainTER-87723718,1,"Gare de Les Echets",45.874622,4.910811,-1,0,STE:SA:OCE87723718,Europe/Paris,,STE, +STE:SP:OCETrainTER-87723726,1,"Gare de Mionnay",45.896772,4.919585,-1,0,STE:SA:OCE87723726,Europe/Paris,,STE, +STE:SP:OCETrainTER-87723734,1,"Gare de St-André-de-Corcy",45.92593,4.948782,-1,0,STE:SA:OCE87723734,Europe/Paris,,STE, +STE:SP:OCETrainTER-87723742,1,"Gare de St-Marcel-en-Dombes",45.950366,4.977512,-1,0,STE:SA:OCE87723742,Europe/Paris,,STE, +STE:SP:OCETrainTER-87723759,1,"Gare de Villars-les-Dombes",46.004255,5.028411,-1,0,STE:SA:OCE87723759,Europe/Paris,,STE, +STE:SP:OCETrainTER-87723767,1,"Gare de Marlieux-Chatillon",46.06406,5.073203,-1,0,STE:SA:OCE87723767,Europe/Paris,,STE, +STE:SP:OCETrainTER-87723783,1,"Gare de St-Paul-de-Varax",46.100057,5.128181,-1,0,STE:SA:OCE87723783,Europe/Paris,,STE, +STE:SP:OCETrainTER-87723791,1,"Gare de Servas-Lent",46.130662,5.168125,-1,0,STE:SA:OCE87723791,Europe/Paris,,STE, +STE:SP:OCETrainTER-87725002,1,"Gare de Chalon-sur-Saône",46.78157,4.843489,-1,0,SIN:SA:OCE87725002,Europe/Paris,,STE, +STE:SP:OCETrainTER-87725614,1,"Gare de Sennecey-le-Grand",46.640615,4.87426,-1,0,STE:SA:OCE87725614,Europe/Paris,,STE, +STE:SP:OCETrainTER-87725622,1,"Gare de Tournus",46.566719,4.906522,-1,0,STE:SA:OCE87725622,Europe/Paris,,STE, +STE:SP:OCETrainTER-87725663,1,"Gare de Fleurville-Pont-de-Vaux",46.450838,4.884239,-1,0,STE:SA:OCE87725663,Europe/Paris,,STE, +STE:SP:OCETrainTER-87725671,1,"Gare de Senozan",46.391482,4.870517,-1,0,STE:SA:OCE87725671,Europe/Paris,,STE, +STE:SP:OCETrainTER-87725689,1,"Gare de Mâcon-Ville",46.302659,4.825149,-1,0,SIN:SA:OCE87725689,Europe/Paris,,STE, +STE:SP:OCETrainTER-87725713,1,"Gare de Crêches-sur-Saône",46.246615,4.783901,-1,0,SIN:SA:OCE87725713,Europe/Paris,,STE, +STE:SP:OCETrainTER-87725721,1,"Gare de Pontanevaux",46.213025,4.772877,-1,0,STE:SA:OCE87725721,Europe/Paris,,STE, +STE:SP:OCETrainTER-87725739,1,"Gare de Romanèche-Thorins",46.176382,4.742101,-1,0,SIN:SA:OCE87725739,Europe/Paris,,STE, +STE:SP:OCETrainTER-87725804,1,"Gare de Pont-de-Veyle",46.267827,4.892948,-1,0,SIN:SA:OCE87725804,Europe/Paris,,STE, +STE:SP:OCETrainTER-87725820,1,"Gare de Vonnas",46.227197,4.991746,-1,0,SIN:SA:OCE87725820,Europe/Paris,,STE, +STE:SP:OCETrainTER-87725838,1,"Gare de Mézériat",46.234927,5.046569,-1,0,SIN:SA:OCE87725838,Europe/Paris,,STE, +STE:SP:OCETrainTER-87725846,1,"Gare de Polliat",46.244737,5.123833,-1,0,STE:SA:OCE87725846,Europe/Paris,,STE, +STE:SP:OCETrainTER-87726802,1,"Gare de Roanne",46.040211,4.063135,-1,0,SIN:SA:OCE87726802,Europe/Paris,,STE, +STE:SP:OCETrainTER-87728501,1,"Gare de St Fons",45.70576,4.852555,-1,0,STE:SA:OCE87728501,Europe/Paris,,STE, +STE:SP:OCETrainTER-87732008,1,"Gare de Vichy",46.12697,3.430489,-1,0,SIN:SA:OCE87732008,Europe/Paris,,STE, +STE:SP:OCETrainTER-87732206,1,"Gare de St-Germain-des-Fossés",46.209103,3.430489,-1,0,SIN:SA:OCE87732206,Europe/Paris,,STE, +STE:SP:OCETrainTER-87734004,1,"Gare de Clermont-Ferrand",45.778569,3.100519,-1,0,SIN:SA:OCE87734004,Europe/Paris,,STE, +STE:SP:OCETrainTER-87734046,1,"Gare de Gerzat",45.833317,3.143098,-1,0,STE:SA:OCE87734046,Europe/Paris,,STE, +STE:SP:OCETrainTER-87734053,1,"Gare de Riom-Châtel-Guyon",45.889842,3.120813,-1,0,SIN:SA:OCE87734053,Europe/Paris,,STE, +STE:SP:OCETrainTER-87734152,1,"Gare de Sarliève-Cournon",45.7387,3.168053,-1,0,STE:SA:OCE87734152,Europe/Paris,,STE, +STE:SP:OCETrainTER-87734160,1,"Gare de Le Cendre-Orcet",45.723817,3.188689,-1,0,STE:SA:OCE87734160,Europe/Paris,,STE, +STE:SP:OCETrainTER-87734178,1,"Gare de Les Martres-de-Veyre",45.688172,3.193299,-1,0,STE:SA:OCE87734178,Europe/Paris,,STE, +STE:SP:OCETrainTER-87734186,1,"Gare de Vic-le-Comte",45.664898,3.207027,-1,0,STE:SA:OCE87734186,Europe/Paris,,STE, +STE:SP:OCETrainTER-87743005,1,"Gare de Bourg-en-Bresse",46.200126,5.214969,-1,0,SIN:SA:OCE87743005,Europe/Paris,,STE, +STE:SP:OCETrainTER-87743112,1,"Gare de St-Martin-du-Mont",46.095816,5.303041,-1,0,STE:SA:OCE87743112,Europe/Paris,,STE, +STE:SP:OCETrainTER-87743120,1,"Gare de Pont-d'Ain",46.054006,5.334332,-1,0,STE:SA:OCE87743120,Europe/Paris,,STE, +STE:SP:OCETrainTER-87743146,1,"Gare de Ambronay-Priay",46.011639,5.338266,-1,0,STE:SA:OCE87743146,Europe/Paris,,STE, +STE:SP:OCETrainTER-87743302,1,"Gare de Ceyzériat",46.183336,5.325673,-1,0,STE:SA:OCE87743302,Europe/Paris,,STE, +STE:SP:OCETrainTER-87743328,1,"Gare de Villereversure",46.194155,5.397522,-1,0,SIN:SA:OCE87743328,Europe/Paris,,STE, +STE:SP:OCETrainTER-87743336,1,"Gare de Simandre-sur-Suran",46.220324,5.420952,-1,0,STE:SA:OCE87743336,Europe/Paris,,STE, +STE:SP:OCETrainTER-87743344,1,"Gare de Cize-Bolozon",46.213642,5.453868,-1,0,STE:SA:OCE87743344,Europe/Paris,,STE, +STE:SP:OCETrainTER-87743351,1,"Gare de Nurieux",46.184727,5.527912,-1,0,SIN:SA:OCE87743351,Europe/Paris,,STE, +STE:SP:OCETrainTER-87743526,1,"Gare de Bellignat",46.238626,5.630446,-1,0,STE:SA:OCE87743526,Europe/Paris,,STE, +STE:SP:OCETrainTER-87743534,1,"Gare de Oyonnax",46.259609,5.653252,-1,0,SIN:SA:OCE87743534,Europe/Paris,,STE, +STE:SP:OCETrainTER-87743591,1,"Gare de Molinges",46.356961,5.768063,-1,0,SIN:SA:OCE87743591,Europe/Paris,,STE, +STE:SP:OCETrainTER-87743633,1,"Gare de St-Claude",46.38993,5.860389,-1,0,SIN:SA:OCE87743633,Europe/Paris,,STE, +STE:SP:OCETrainTER-87743716,1,"Gare de Ambérieu-en-Bugey",45.954008,5.342313,-1,0,STE:SA:OCE87743716,Europe/Paris,,STE, +STE:SP:OCETrainTER-87761007,1,"Gare de Valence-Ville",44.92807,4.893295,-1,0,STE:SA:OCE87761007,Europe/Paris,,STE, +STE:SP:OCETrainTER-87761106,1,"Gare de St-Rambert-d'Albon",45.297816,4.810625,-1,0,STE:SA:OCE87761106,Europe/Paris,,STE, +STE:SP:OCETrainTER-87761130,1,"Gare de St-Vallier-sur-Rhône",45.185682,4.814339,-1,0,STE:SA:OCE87761130,Europe/Paris,,STE, +STE:SP:OCETrainTER-87761163,1,"Gare de Tain",45.072181,4.839746,-1,0,STE:SA:OCE87761163,Europe/Paris,,STE, +STE:SP:OCETrainTER-87761247,1,"Gare de Livron",44.779597,4.830567,-1,0,STE:SA:OCE87761247,Europe/Paris,,STE, +STE:SP:OCETrainTER-87761262,1,"Gare de Loriol",44.754494,4.817237,-1,0,STE:SA:OCE87761262,Europe/Paris,,STE, +STE:SP:OCETrainTER-87764001,1,"Gare de Montélimar",44.559,4.74479,-1,0,STE:SA:OCE87764001,Europe/Paris,,STE, +STE:SP:OCETrainTER-87764290,1,"Gare de Donzère",44.442629,4.705126,-1,0,STE:SA:OCE87764290,Europe/Paris,,STE, +STE:SP:OCETrainTER-87764308,1,"Gare de Pierrelatte",44.374572,4.703759,-1,0,STE:SA:OCE87764308,Europe/Paris,,STE, +STE:SP:OCETrainTER-87764357,1,"Gare de Bollène-la-Croisière",44.271536,4.707954,-1,0,STE:SA:OCE87764357,Europe/Paris,,STE, +STE:SP:OCETrainTER-87765008,1,"Gare de Avignon-Centre",43.941877,4.805262,-1,0,STE:SA:OCE87765008,Europe/Paris,,STE, +STE:SP:OCETrainTER-87765107,1,"Gare de Orange",44.137305,4.819495,-1,0,STE:SA:OCE87765107,Europe/Paris,,STE, +STE:SP:OCETrainTER-87765180,1,"Gare de Courthézon",44.089995,4.888176,-1,0,STE:SA:OCE87765180,Europe/Paris,,STE, +STE:SP:OCETrainTER-87765198,1,"Gare de Bédarrides",44.040764,4.893118,-1,0,STE:SA:OCE87765198,Europe/Paris,,STE, +STE:SP:OCETrainTER-87765206,1,"Gare de Sorgues-Chât.du-Pape",44.005417,4.87561,-1,0,STE:SA:OCE87765206,Europe/Paris,,STE, +STE:SP:OCETrainTER-87782607,1,"Gare de Clermont-la-Pardieu",45.766954,3.134207,-1,0,STE:SA:OCE87782607,Europe/Paris,,STE, +STE:SP:OCETrainTER-88210060,1,"Gare de Anvers/Antwerpen C.",51.216151,4.421137,-1,0,STE:SA:OCE88210060,Europe/Paris,,STE, +STE:SP:OCETrainTER-88630080,1,"Gare de Namur",50.468968,4.862509,-1,0,STE:SA:OCE88630080,Europe/Paris,,STE, +STE:SP:OCETrainTER-88720090,1,"Gare de Charleroi Sud",50.40476,4.438642,-1,0,STE:SA:OCE88720090,Europe/Paris,,STE, +STE:SP:OCETrainTER-88810000,1,"Gare de Mons",50.456158,3.94454,-1,0,STE:SA:OCE88810000,Europe/Paris,,STE, +STE:SP:OCETrainTER-88840040,1,"Gare de Ghislain",50.442502,3.819202,-1,0,STE:SA:OCE88840040,Europe/Paris,,STE, +STE:SP:OCETrainTER-88850010,1,"Gare de Tournai",50.612801,3.3968,-1,0,STE:SA:OCE88850010,Europe/Paris,,STE, +STE:SP:OCETrainTER-88850685,1,"Gare de Froyennes.",50.630348,3.354084,-1,0,STE:SA:OCE88850685,Europe/Paris,,STE, +STE:SP:OCETrainTER-88857040,1,"Gare de Mouscron / Moeskroen",50.740031,3.22748,-1,0,STE:SA:OCE88857040,Europe/Paris,,STE, +STE:SP:OCETrainTER-88920070,1,"Gare de Gand/Gent-Sint-Pieters",51.635491,4.447424,-1,0,STE:SA:OCE88920070,Europe/Paris,,STE, +STE:SP:OCETrainTER-88960080,1,"Gare de Courtrai/Kortrijk",50.824469,3.264444,-1,0,STE:SA:OCE88960080,Europe/Paris,,STE, +STE:SP:OCETrainTER-88961490,1,"Gare de Waregem",50.891775,3.424409,-1,0,STE:SA:OCE88961490,Europe/Paris,,STE, +TRN:SP:DUA8711300,1,"PARIS EST",48.877376,2.359457,-1,0,TRN:SA:DUA8711300,Europe/Paris,,TRN, +TRN:SP:DUA8711610,1,"MEAUX",48.957269,2.873448,-1,0,TRN:SA:DUA8711610,Europe/Paris,,TRN, +TRN:SP:DUA8711649,1,"TRILPORT",48.960226,2.95006,-1,0,TRN:SA:DUA8711649,Europe/Paris,,TRN, +TRN:SP:DUA8711650,1,"CHANGIS SAINT-JEAN",48.959164,3.026111,-1,0,TRN:SA:DUA8711650,Europe/Paris,,TRN, +TRN:SP:DUA8711651,1,"LA FERTE SOUS JOUARRE",48.95082,3.124909,-1,0,TRN:SA:DUA8711651,Europe/Paris,,TRN, +TRN:SP:DUA8711655,1,"NANTEUIL SAACY",48.974027,3.219303,-1,0,TRN:SA:DUA8711655,Europe/Paris,,TRN, +TRN:SP:DUA8711656,1,"NOGENT L'ARTAUD CHARLY",48.968768,3.322956,-1,0,TRN:SA:DUA8711656,Europe/Paris,,TRN, +TRN:SP:DUA8711657,1,"CHEZY SUR MARNE",48.990359,3.361628,-1,0,TRN:SA:DUA8711657,Europe/Paris,,TRN, +TRN:SP:DUA8711658,1,"CHATEAU THIERRY",49.037949,3.409597,-1,0,TRN:SA:DUA8711658,Europe/Paris,,TRN, +TRN:SP:DUA8711661,1,"ISLES ARMENTIERES CONGIS",48.998415,3.007953,-1,0,TRN:SA:DUA8711661,Europe/Paris,,TRN, +TRN:SP:DUA8711663,1,"LIZY SUR OURCQ",49.021757,3.031758,-1,0,TRN:SA:DUA8711663,Europe/Paris,,TRN, +TRN:SP:DUA8711664,1,"CROUY SUR OURCQ",49.091883,3.06269,-1,0,TRN:SA:DUA8711664,Europe/Paris,,TRN, +TRN:SP:DUA8711666,1,"MAREUIL SUR OURCQ",49.135474,3.075627,-1,0,TRN:SA:DUA8711666,Europe/Paris,,TRN, +TRN:SP:DUA8711667,1,"LA FERTE MILON",49.179505,3.120613,-1,0,TRN:SA:DUA8711667,Europe/Paris,,TRN, +TRN:SP:DUA8716478,1,"STADE DE FRANCE SAINT-DENIS",48.917567,2.35039,-1,0,TRN:SA:DUA8716478,Europe/Paris,,TRN, +TRN:SP:DUA8727100,1,"PARIS NORD",48.880845,2.356722,-1,0,TRN:SA:DUA8727103,Europe/Paris,,TRN, +TRN:SP:DUA8727101,1,"SAINT-DENIS",48.934456,2.345604,-1,0,TRN:SA:DUA8727101,Europe/Paris,,TRN, +TRN:SP:DUA8727102,1,"PARIS NORD",48.880769,2.357115,-1,0,TRN:SA:DUA8727103,Europe/Paris,,TRN, +TRN:SP:DUA8727103,1,"PARIS NORD",48.880845,2.356722,-1,0,TRN:SA:DUA8727103,Europe/Paris,,TRN, +TRN:SP:DUA8727116,1,"PIERREFITTE STAINS",48.963755,2.372103,-1,0,TRN:SA:DUA8727116,Europe/Paris,,TRN, +TRN:SP:DUA8727141,1,"AULNAY SOUS BOIS",48.932114,2.495755,-1,0,TRN:SA:DUA8727141,Europe/Paris,,TRN, +TRN:SP:DUA8727152,1,"MITRY CLAYE",48.975859,2.642406,-1,0,TRN:SA:DUA8727152,Europe/Paris,,TRN, +TRN:SP:DUA8727153,1,"DAMMARTIN JUILLY SAINT-MARD",49.032574,2.699453,-1,0,TRN:SA:DUA8727153,Europe/Paris,,TRN, +TRN:SP:DUA8727155,1,"LE PLESSIS BELLEVILLE",49.096121,2.744686,-1,0,TRN:SA:DUA8727155,Europe/Paris,,TRN, +TRN:SP:DUA8727157,1,"NANTEUIL LE HAUDOIN",49.142827,2.794553,-1,0,TRN:SA:DUA8727157,Europe/Paris,,TRN, +TRN:SP:DUA8727158,1,"ORMOY VILLERS",49.200877,2.838108,-1,0,TRN:SA:DUA8727158,Europe/Paris,,TRN, +TRN:SP:DUA8727159,1,"CREPY EN VALOIS",49.231222,2.888467,-1,0,TRN:SA:DUA8727159,Europe/Paris,,TRN, +TRN:SP:DUA8727204,1,"COMPANS",48.991391,2.66506,-1,0,TRN:SA:DUA8727204,Europe/Paris,,TRN, +TRN:SP:DUA8727205,1,"THIEUX NANTOUILLET",49.008114,2.680252,-1,0,TRN:SA:DUA8727205,Europe/Paris,,TRN, +TRN:SP:DUA8727600,1,"CREIL",49.263944,2.468914,-1,0,SIN:SA:OCE87276006,Europe/Paris,,TRN, +TRN:SP:DUA8727610,1,"SAINT-OUEN L'AUMONE",49.045312,2.105111,-1,0,TRN:SA:DUA8727610,Europe/Paris,,TRN, +TRN:SP:DUA8727611,1,"CHANTILLY GOUVIEUX",49.187334,2.45952,-1,0,TRN:SA:DUA8727611,Europe/Paris,,TRN, +TRN:SP:DUA8727613,1,"PONTOISE",49.046646,2.095195,-1,0,TRN:SA:DUA8727613,Europe/Paris,,TRN, +TRN:SP:DUA8727614,1,"EPLUCHES",49.055102,2.122736,-1,0,TRN:SA:DUA8727614,Europe/Paris,,TRN, +TRN:SP:DUA8727615,1,"PONT PETIT",49.060592,2.130874,-1,0,TRN:SA:DUA8727615,Europe/Paris,,TRN, +TRN:SP:DUA8727616,1,"CHAPONVAL",49.069314,2.141697,-1,0,TRN:SA:DUA8727616,Europe/Paris,,TRN, +TRN:SP:DUA8727619,1,"GARGES SARCELLES",48.976748,2.390594,-1,0,TRN:SA:DUA8727619,Europe/Paris,,TRN, +TRN:SP:DUA8727622,1,"VILLIERS LE BEL GONESSE ARNOUVILLE",48.993777,2.416187,-1,0,TRN:SA:DUA8727622,Europe/Paris,,TRN, +TRN:SP:DUA8727623,1,"LES NOUES",49.033183,2.478033,-1,0,TRN:SA:DUA8727623,Europe/Paris,,TRN, +TRN:SP:DUA8727624,1,"GOUSSAINVILLE",49.023162,2.462169,-1,0,TRN:SA:DUA8727624,Europe/Paris,,TRN, +TRN:SP:DUA8727625,1,"LOUVRES",49.049326,2.501758,-1,0,TRN:SA:DUA8727625,Europe/Paris,,TRN, +TRN:SP:DUA8727626,1,"SURVILLIERS FOSSES",49.099587,2.525532,-1,0,TRN:SA:DUA8727626,Europe/Paris,,TRN, +TRN:SP:DUA8727627,1,"ORRY LA VILLE COYE LA FORET",49.138717,2.489615,-1,0,TRN:SA:DUA8727627,Europe/Paris,,TRN, +TRN:SP:DUA8727628,1,"LA BORNE BLANCHE",49.126781,2.506144,-1,0,TRN:SA:DUA8727628,Europe/Paris,,TRN, +TRN:SP:DUA8727640,1,"ST LEU D ESSERENT",49.213856,2.417369,-1,0,TRN:SA:DUA8727640,Europe/Paris,,TRN, +TRN:SP:DUA8727641,1,"PRECY SUR OISE",49.203266,2.376601,-1,0,TRN:SA:DUA8727641,Europe/Paris,,TRN, +TRN:SP:DUA8727644,1,"BORAN SUR OISE",49.166775,2.362304,-1,0,TRN:SA:DUA8727644,Europe/Paris,,TRN, +TRN:SP:DUA8727645,1,"BRUYERES SUR OISE",49.15519,2.325754,-1,0,TRN:SA:DUA8727645,Europe/Paris,,TRN, +TRN:SP:DUA8727646,1,"PERSAN BEAUMONT",49.14772,2.277823,-1,0,TRN:SA:DUA8727646,Europe/Paris,,TRN, +TRN:SP:DUA8727651,1,"CHAMPAGNE SUR OISE",49.136001,2.242678,-1,0,TRN:SA:DUA8727651,Europe/Paris,,TRN, +TRN:SP:DUA8727652,1,"L'ISLE ADAM PARMAIN",49.114784,2.21002,-1,0,TRN:SA:DUA8727652,Europe/Paris,,TRN, +TRN:SP:DUA8727653,1,"VALMONDOIS",49.091073,2.201823,-1,0,TRN:SA:DUA8727653,Europe/Paris,,TRN, +TRN:SP:DUA8727654,1,"AUVERS SUR OISE",49.070462,2.175304,-1,0,TRN:SA:DUA8727654,Europe/Paris,,TRN, +TRN:SP:DUA8738107,1,"BOIS COLOMBES",48.914246,2.271599,-1,0,TRN:SA:DUA8738107,Europe/Paris,,TRN, +TRN:SP:DUA8738108,1,"COLOMBES",48.923919,2.259346,-1,0,TRN:SA:DUA8738108,Europe/Paris,,TRN, +TRN:SP:DUA8738109,1,"LE STADE",48.931054,2.260602,-1,0,TRN:SA:DUA8738109,Europe/Paris,,TRN, +TRN:SP:DUA8738113,1,"ASNIERES",48.905664,2.283573,-1,0,TRN:SA:DUA8738113,Europe/Paris,,TRN, +TRN:SP:DUA8738114,1,"OSNY",49.06297,2.057903,-1,0,TRN:SA:DUA8738114,Europe/Paris,,TRN, +TRN:SP:DUA8738115,1,"BOISSY L'AILLERIE",49.075843,2.024953,-1,0,TRN:SA:DUA8738115,Europe/Paris,,TRN, +TRN:SP:DUA8738116,1,"MONTGEROULT COURCELLES",49.080494,2.003715,-1,0,TRN:SA:DUA8738116,Europe/Paris,,TRN, +TRN:SP:DUA8738117,1,"US",49.09965,1.970536,-1,0,TRN:SA:DUA8738117,Europe/Paris,,TRN, +TRN:SP:DUA8738118,1,"SANTEUIL LE PERCHAY",49.123452,1.949333,-1,0,TRN:SA:DUA8738118,Europe/Paris,,TRN, +TRN:SP:DUA8738119,1,"CHARS",49.162671,1.936929,-1,0,TRN:SA:DUA8738119,Europe/Paris,,TRN, +TRN:SP:DUA8738120,1,"LA VILLETERTRE",49.202694,1.920548,-1,0,TRN:SA:DUA8738120,Europe/Paris,,TRN, +TRN:SP:DUA8738121,1,"LIANCOURT SAINT-PIERRE",49.220807,1.905299,-1,0,TRN:SA:DUA8738121,Europe/Paris,,TRN, +TRN:SP:DUA8738122,1,"CHAUMONT EN VEXIN",49.261322,1.872589,-1,0,TRN:SA:DUA8738122,Europe/Paris,,TRN, +TRN:SP:DUA8738123,1,"TRIE CHATEAU",49.28259,1.818082,-1,0,TRN:SA:DUA8738123,Europe/Paris,,TRN, +TRN:SP:DUA8738124,1,"GISORS",49.285264,1.785066,-1,0,TRN:SA:DUA8738124,Europe/Paris,,TRN, +TRN:SP:DUA8738141,1,"ERAGNY NEUVILLE",49.018349,2.090906,-1,0,TRN:SA:DUA8738141,Europe/Paris,,TRN, +TRN:SP:DUA8738142,1,"GARE DE ST OUEN L AUMONE QUARTIER DE L EGLISE",49.039981,2.103853,-1,0,TRN:SA:DUA8738142,Europe/Paris,,TRN, +TRN:SP:DUA8738179,1,"VAL D'ARGENTEUIL",48.950304,2.23111,-1,0,TRN:SA:DUA8738179,Europe/Paris,,TRN, +TRN:SP:DUA8738184,1,"ARGENTEUIL",48.946797,2.257897,-1,0,TRN:SA:DUA8738184,Europe/Paris,,TRN, +TRN:SP:DUA8738186,1,"CORMEILLES EN PARISIS",48.968496,2.193443,-1,0,TRN:SA:DUA8738186,Europe/Paris,,TRN, +TRN:SP:DUA8738187,1,"LA FRETTE MONTIGNY",48.980264,2.180012,-1,0,TRN:SA:DUA8738187,Europe/Paris,,TRN, +TRN:SP:DUA8738188,1,"HERBLAY",48.99029,2.161907,-1,0,TRN:SA:DUA8738188,Europe/Paris,,TRN, +TRN:SP:DUA8738189,1,"CONFLANS SAINTE-HONORINE",48.99663,2.097774,-1,0,TRN:SA:DUA8738189,Europe/Paris,,TRN, +TRN:SP:DUA8738400,1,"PARIS SAINT-LAZARE",48.875442,2.324806,-1,0,TRN:SA:DUA8738400,Europe/Paris,,TRN, +TRN:SP:DUA8754524,1,"JUVISY",48.689457,2.383139,-1,0,TRN:SA:DUA8754524,Europe/Paris,,TRN, +TRN:SP:DUA8760880,1,"CRETEIL POMPADOUR",48.773318,2.436146,-1,0,TRN:SA:DUA8760880,Europe/Paris,,TRN, +TRN:SP:DUA8768100,1,"CORBEIL ESSONNES",48.613428,2.472934,-1,0,TRN:SA:DUA8768100,Europe/Paris,,TRN, +TRN:SP:DUA8768115,1,"MAISONS ALFORT ALFORTVILLE",48.802049,2.426482,-1,0,TRN:SA:DUA8768115,Europe/Paris,,TRN, +TRN:SP:DUA8768124,1,"LE VERT DE MAISONS",48.788915,2.43207,-1,0,TRN:SA:DUA8768124,Europe/Paris,,TRN, +TRN:SP:DUA8768130,1,"VIGNEUX SUR SEINE",48.708366,2.414359,-1,0,TRN:SA:DUA8768130,Europe/Paris,,TRN, +TRN:SP:DUA8768131,1,"VIRY CHATILLON",48.676092,2.386784,-1,0,TRN:SA:DUA8768131,Europe/Paris,,TRN, +TRN:SP:DUA8768133,1,"RIS ORANGIS",48.658975,2.415207,-1,0,TRN:SA:DUA8768133,Europe/Paris,,TRN, +TRN:SP:DUA8768135,1,"GRAND BOURG",48.648489,2.435331,-1,0,TRN:SA:DUA8768135,Europe/Paris,,TRN, +TRN:SP:DUA8768136,1,"EVRY - Val de Seine",48.634479,2.45229,-1,0,TRN:SA:DUA8768136,Europe/Paris,,TRN, +TRN:SP:DUA8768180,1,"VILLENEUVE TRIAGE",48.745231,2.438344,-1,0,TRN:SA:DUA8768180,Europe/Paris,,TRN, +TRN:SP:DUA8768182,1,"VILLENEUVE SAINT-GEORGES",48.730117,2.446136,-1,0,TRN:SA:DUA8768182,Europe/Paris,,TRN, +TRN:SP:DUA8768200,1,"MELUN",48.527243,2.65499,-1,0,TRN:SA:DUA8768200,Europe/Paris,,TRN, +TRN:SP:DUA8768220,1,"BOIS LE ROI",48.475523,2.692033,-1,0,TRN:SA:DUA8768220,Europe/Paris,,TRN, +TRN:SP:DUA8768221,1,"FONTAINEBLEAU AVON",48.416377,2.726662,-1,0,TRN:SA:DUA8768221,Europe/Paris,,TRN, +TRN:SP:DUA8768227,1,"MORET VENEUX LES SABLONS",48.378598,2.799307,-1,0,TRN:SA:DUA8768227,Europe/Paris,,TRN, +TRN:SP:DUA8768229,1,"SAINT-MAMMES",48.382358,2.815957,-1,0,TRN:SA:DUA8768229,Europe/Paris,,TRN, +TRN:SP:DUA8768230,1,"MONTEREAU",48.379526,2.942523,-1,0,TRN:SA:DUA8768230,Europe/Paris,,TRN, +TRN:SP:DUA8768300,1,"SENS",48.198417,3.26732,-1,0,TRN:SA:DUA8768300,Europe/Paris,,TRN, +TRN:SP:DUA8768310,1,"VILLENEUVE LA GUYARD",48.343269,3.069688,-1,0,TRN:SA:DUA8768310,Europe/Paris,,TRN, +TRN:SP:DUA8768312,1,"CHAMPIGNY SUR YONNE",48.324052,3.13114,-1,0,TRN:SA:DUA8768312,Europe/Paris,,TRN, +TRN:SP:DUA8768313,1,"PONT SUR YONNE",48.286391,3.201894,-1,0,TRN:SA:DUA8768313,Europe/Paris,,TRN, +TRN:SP:DUA8768320,1,"ETIGNY VERON",48.137611,3.289742,-1,0,TRN:SA:DUA8768320,Europe/Paris,,TRN, +TRN:SP:DUA8768321,1,"VILLENEUVE SUR YONNE",48.085184,3.286257,-1,0,TRN:SA:DUA8768321,Europe/Paris,,TRN, +TRN:SP:DUA8768322,1,"SAINT-JULIEN DU SAULT",48.026687,3.302565,-1,0,TRN:SA:DUA8768322,Europe/Paris,,TRN, +TRN:SP:DUA8768324,1,"JOIGNY",47.97343,3.392865,-1,0,TRN:SA:DUA8768324,Europe/Paris,,TRN, +TRN:SP:DUA8768326,1,"LAROCHE MIGENNES",47.961118,3.514336,-1,0,TRN:SA:DUA8768326,Europe/Paris,,TRN, +TRN:SP:DUA8768600,1,"PARIS GARE DE LYON",48.844266,2.373755,-1,0,SIN:SA:OCE87686006,Europe/Paris,,TRN, +TRN:SP:DUA8768603,1,"PARIS GARE DE LYON",48.843773,2.373916,-1,0,SIN:SA:OCE87686006,Europe/Paris,,TRN, +TRN:SP:DUA8775860,1,"CHATELET LES HALLES",48.861822,2.347013,-1,0,TRN:SA:DUA8775860,Europe/Paris,,TRN, diff --git a/flatisfy/data_files/stops_fr-nw.txt b/flatisfy/data_files/stops_fr-nw.txt new file mode 100644 index 0000000..8821e56 --- /dev/null +++ b/flatisfy/data_files/stops_fr-nw.txt @@ -0,0 +1,15287 @@ +stop_id,visible,stop_name,stop_lat,stop_lon,zone_id,location_type,parent_station,stop_timezone,equipment_id,contributor_id,geometry_id +OAN:SA:zone_18_JUIN_MONTREUIL,1,"18 JUIN MONTREUIL",47.529591,-0.618051,,1,,Europe/Paris,,OAN, +OAN:SA:zone_2_CROIX,1,"2 CROIX",47.475071,-0.527975,,1,,Europe/Paris,,OAN, +OAN:SA:zone_7_SONNETTES,1,"7 SONNETTES",47.48607,-0.514745,,1,,Europe/Paris,,OAN, +OAN:SA:zone_8_MAI_TRELAZE,1,"8 MAI TRELAZE",47.449356,-0.464693,,1,,Europe/Paris,,OAN, +OAN:SA:zone_ACACIAS,1,"ACACIAS",47.503739,-0.585677,,1,,Europe/Paris,,OAN, +OAN:SA:zone_AFPA,1,"AFPA",47.471531,-0.522763,,1,,Europe/Paris,,OAN, +OAN:SA:zone_AIGREFOIN,1,"AIGREFOIN",47.47362,-0.43902,,1,,Europe/Paris,,OAN, +OAN:SA:zone_ALIENOR_DAQUITAINE,1,"ALIENOR D'AQUITAINE",47.463122,-0.61506,,1,,Europe/Paris,,OAN, +OAN:SA:zone_ALLARD,1,"ALLARD",47.449623,-0.538732,,1,,Europe/Paris,,OAN, +OAN:SA:zone_ALLEMAGNE,1,"ALLEMAGNE",47.528046,-0.599972,,1,,Europe/Paris,,OAN, +OAN:SA:zone_ALLONNEAU,1,"ALLONNEAU",47.485222,-0.526929,,1,,Europe/Paris,,OAN, +OAN:SA:zone_ALLUMETTES,1,"ALLUMETTES",47.445114,-0.502257,,1,,Europe/Paris,,OAN, +OAN:SA:zone_AMIPI,1,"AMIPI",47.463767,-0.626599,,1,,Europe/Paris,,OAN, +OAN:SA:zone_ANATOLE_FRANCE,1,"ANATOLE FRANCE",47.531558,-0.613905,,1,,Europe/Paris,,OAN, +OAN:SA:zone_ANDRE_LEROY,1,"ANDRE LEROY",47.46471,-0.54829,,1,,Europe/Paris,,OAN, +OAN:SA:zone_ANGERS_-_ROSERAIE,1,"ANGERS - ROSERAIE",47.444891,-0.551588,,1,,Europe/Paris,,OAN, +OAN:SA:zone_ANNE_FRANK,1,"ANNE FRANK",47.463547,-0.537732,,1,,Europe/Paris,,OAN, +OAN:SA:zone_APPENTIS,1,"APPENTIS",47.445471,-0.546247,,1,,Europe/Paris,,OAN, +OAN:SA:zone_ARAGON,1,"ARAGON",47.471781,-0.56703,,1,,Europe/Paris,,OAN, +OAN:SA:zone_ARBORETUM,1,"ARBORETUM",47.449451,-0.544227,,1,,Europe/Paris,,OAN, +OAN:SA:zone_ARCADES,1,"ARCADES",47.507207,-0.516602,,1,,Europe/Paris,,OAN, +OAN:SA:zone_ARCEAU,1,"ARCEAU",47.47105,-0.519749,,1,,Europe/Paris,,OAN, +OAN:SA:zone_ARENA_LOIRE,1,"ARENA LOIRE",47.44348,-0.478275,,1,,Europe/Paris,,OAN, +OAN:SA:zone_AROBASE,1,"AROBASE",47.464503,-0.531562,,1,,Europe/Paris,,OAN, +OAN:SA:zone_ARTAUD,1,"ARTAUD",47.434028,-0.610857,,1,,Europe/Paris,,OAN, +OAN:SA:zone_ARTS_ET_METIERS,1,"ARTS ET METIERS",47.475452,-0.558916,,1,,Europe/Paris,,OAN, +OAN:SA:zone_ATHLETIS,1,"ATHLETIS",47.441589,-0.528153,,1,,Europe/Paris,,OAN, +OAN:SA:zone_AUBEPINE,1,"AUBEPINE",47.461703,-0.495885,,1,,Europe/Paris,,OAN, +OAN:SA:zone_AUBERDERIE,1,"AUBERDERIE",47.53797,-0.47853,,1,,Europe/Paris,,OAN, +OAN:SA:zone_AUBRIAIS,1,"AUBRIAIS",47.516063,-0.667603,,1,,Europe/Paris,,OAN, +OAN:SA:zone_AUBRY,1,"AUBRY",47.441795,-0.552178,,1,,Europe/Paris,,OAN, +OAN:SA:zone_AUCHAN,1,"AUCHAN",47.518753,-0.606552,,1,,Europe/Paris,,OAN, +OAN:SA:zone_AUGUSTE_RENOIR,1,"AUGUSTE RENOIR",47.536211,-0.619573,,1,,Europe/Paris,,OAN, +OAN:SA:zone_AULNERIE,1,"AULNERIE",47.58755,-0.49284,,1,,Europe/Paris,,OAN, +OAN:SA:zone_AURIOL,1,"AURIOL",47.491417,-0.564044,,1,,Europe/Paris,,OAN, +OAN:SA:zone_AUTHION,1,"AUTHION",47.431694,-0.528536,,1,,Europe/Paris,,OAN, +OAN:SA:zone_AUTRICHE,1,"AUTRICHE",47.522956,-0.609763,,1,,Europe/Paris,,OAN, +OAN:SA:zone_AUVERGNE,1,"AUVERGNE",47.490211,-0.530079,,1,,Europe/Paris,,OAN, +OAN:SA:zone_AVENUE_DE_LEUROPE,1,"AVENUE DE L'EUROPE",47.52824,-0.594826,,1,,Europe/Paris,,OAN, +OAN:SA:zone_AVICENNE,1,"AVICENNE",47.481325,-0.688601,,1,,Europe/Paris,,OAN, +OAN:SA:zone_AVRILLE_-_ARDENNE,1,"AVRILLE - ARDENNE",47.511986,-0.595502,,1,,Europe/Paris,,OAN, +OAN:SA:zone_AVRILLE_ADEZIERE,1,"AVRILLE ADEZIERE",47.504921,-0.605045,,1,,Europe/Paris,,OAN, +OAN:SA:zone_AVRILLE_SALETTE,1,"AVRILLE SALETTE",47.512543,-0.586654,,1,,Europe/Paris,,OAN, +OAN:SA:zone_BAHONNEAU,1,"BAHONNEAU",47.453045,-0.483199,,1,,Europe/Paris,,OAN, +OAN:SA:zone_BALLOUR,1,"BALLOUR",47.483276,-0.562422,,1,,Europe/Paris,,OAN, +OAN:SA:zone_BALUERES,1,"BALUERES",47.379133,-0.524034,,1,,Europe/Paris,,OAN, +OAN:SA:zone_BALZAC,1,"BALZAC",47.472596,-0.576116,,1,,Europe/Paris,,OAN, +OAN:SA:zone_BAMAKO,1,"BAMAKO",47.452231,-0.556162,,1,,Europe/Paris,,OAN, +OAN:SA:zone_BANCHAIS,1,"BANCHAIS",47.485886,-0.511835,,1,,Europe/Paris,,OAN, +OAN:SA:zone_BARBOTTERIE,1,"BARBOTTERIE",47.400597,-0.524841,,1,,Europe/Paris,,OAN, +OAN:SA:zone_BARRA,1,"BARRA",47.483818,-0.563792,,1,,Europe/Paris,,OAN, +OAN:SA:zone_BASCULE,1,"BASCULE",47.508854,-0.591553,,1,,Europe/Paris,,OAN, +OAN:SA:zone_BASSES_VALLEES,1,"BASSES VALLEES",47.57926,-0.499701,,1,,Europe/Paris,,OAN, +OAN:SA:zone_BASSE_CHESNAIE,1,"BASSE CHESNAIE",47.573732,-0.675781,,1,,Europe/Paris,,OAN, +OAN:SA:zone_BASSE_LANDE,1,"BASSE LANDE",47.505413,-0.594881,,1,,Europe/Paris,,OAN, +OAN:SA:zone_BASSE_MARZELLE,1,"BASSE MARZELLE",47.49392,-0.49891,,1,,Europe/Paris,,OAN, +OAN:SA:zone_BAS_MORTIER,1,"BAS MORTIER",47.51535,-0.474597,,1,,Europe/Paris,,OAN, +OAN:SA:zone_BAUDON,1,"BAUDON",47.5394,-0.57917,,1,,Europe/Paris,,OAN, +OAN:SA:zone_BAUDRAIRIE,1,"BAUDRAIRIE",47.437885,-0.507232,,1,,Europe/Paris,,OAN, +OAN:SA:zone_BEAUCOUZE,1,"BEAUCOUZE",47.470332,-0.625157,,1,,Europe/Paris,,OAN, +OAN:SA:zone_BEAULIEU,1,"BEAULIEU",47.495504,-0.436678,,1,,Europe/Paris,,OAN, +OAN:SA:zone_BEAUMANOIR,1,"BEAUMANOIR",47.45189,-0.510474,,1,,Europe/Paris,,OAN, +OAN:SA:zone_BEAUREGARD,1,"BEAUREGARD",47.53386,-0.43471,,1,,Europe/Paris,,OAN, +OAN:SA:zone_BEAUREPAIRE,1,"BEAUREPAIRE",47.47403,-0.559496,,1,,Europe/Paris,,OAN, +OAN:SA:zone_BEAUREPAIRE_SOULAIRE,1,"BEAUREPAIRE SOULAIRE",47.55647,-0.5556,,1,,Europe/Paris,,OAN, +OAN:SA:zone_BEAUVAL,1,"BEAUVAL",47.451727,-0.550617,,1,,Europe/Paris,,OAN, +OAN:SA:zone_BEAU_SOLEIL,1,"BEAU SOLEIL",47.426701,-0.721223,,1,,Europe/Paris,,OAN, +OAN:SA:zone_BECKER,1,"BECKER",47.538871,-0.622076,,1,,Europe/Paris,,OAN, +OAN:SA:zone_BEDAUDIERE,1,"BEDAUDIERE",47.501364,-0.393624,,1,,Europe/Paris,,OAN, +OAN:SA:zone_BEDIER,1,"BEDIER",47.450082,-0.552654,,1,,Europe/Paris,,OAN, +OAN:SA:zone_BELLANGERIE,1,"BELLANGERIE",47.482287,-0.684555,,1,,Europe/Paris,,OAN, +OAN:SA:zone_BELLEBRANCHE,1,"BELLEBRANCHE",47.528112,-0.528261,,1,,Europe/Paris,,OAN, +OAN:SA:zone_BELLEVUE,1,"BELLEVUE",47.5048,-0.4403,,1,,Europe/Paris,,OAN, +OAN:SA:zone_BELLE_MOTTE,1,"BELLE MOTTE",47.531064,-0.516285,,1,,Europe/Paris,,OAN, +OAN:SA:zone_BELLE_POULE,1,"BELLE POULE",47.428478,-0.527224,,1,,Europe/Paris,,OAN, +OAN:SA:zone_BEL_AIR,1,"BEL AIR",47.529846,-0.606227,,1,,Europe/Paris,,OAN, +OAN:SA:zone_BEL_OEIL,1,"BEL OEIL",47.427044,-0.556719,,1,,Europe/Paris,,OAN, +OAN:SA:zone_BENE,1,"BENE",47.541109,-0.609493,,1,,Europe/Paris,,OAN, +OAN:SA:zone_BERGERIE,1,"BERGERIE",47.487471,-0.471337,,1,,Europe/Paris,,OAN, +OAN:SA:zone_BERGES_DE_MAINE,1,"BERGES DE MAINE",47.479325,-0.548897,,1,,Europe/Paris,,OAN, +OAN:SA:zone_BERGES_DE_MAINE_BUS,1,"BERGES DE MAINE BUS",47.478715,-0.549693,,1,,Europe/Paris,,OAN, +OAN:SA:zone_BERNIER,1,"BERNIER",47.474727,-0.592048,,1,,Europe/Paris,,OAN, +OAN:SA:zone_BEURRIERE,1,"BEURRIERE",47.497562,-0.589286,,1,,Europe/Paris,,OAN, +OAN:SA:zone_BIAIS,1,"BIAIS",47.58479,-0.53931,,1,,Europe/Paris,,OAN, +OAN:SA:zone_BICHON,1,"BICHON",47.479347,-0.563609,,1,,Europe/Paris,,OAN, +OAN:SA:zone_BIGOT,1,"BIGOT",47.482204,-0.561009,,1,,Europe/Paris,,OAN, +OAN:SA:zone_BIOPOLE,1,"BIOPOLE",47.482282,-0.496442,,1,,Europe/Paris,,OAN, +OAN:SA:zone_BIRGE,1,"BIRGE",47.475216,-0.519832,,1,,Europe/Paris,,OAN, +OAN:SA:zone_BLANDEAU,1,"BLANDEAU",47.457478,-0.54319,,1,,Europe/Paris,,OAN, +OAN:SA:zone_BLERIOT,1,"BLERIOT",47.486129,-0.563258,,1,,Europe/Paris,,OAN, +OAN:SA:zone_BLITOURNE,1,"BLITOURNE",47.527416,-0.434127,,1,,Europe/Paris,,OAN, +OAN:SA:zone_BODINIERE,1,"BODINIERE",47.58533,-0.44778,,1,,Europe/Paris,,OAN, +OAN:SA:zone_BOISRAME,1,"BOISRAME",47.478359,-0.584725,,1,,Europe/Paris,,OAN, +OAN:SA:zone_BOIS_DE_LHOPITAL,1,"BOIS DE L'HOPITAL",47.47059,-0.45893,,1,,Europe/Paris,,OAN, +OAN:SA:zone_BOIS_DU_ROY,1,"BOIS DU ROY",47.499733,-0.583069,,1,,Europe/Paris,,OAN, +OAN:SA:zone_BOIS_LABBE,1,"BOIS L'ABBE",47.490417,-0.513995,,1,,Europe/Paris,,OAN, +OAN:SA:zone_BOIS_RINIER,1,"BOIS RINIER",47.476571,-0.497397,,1,,Europe/Paris,,OAN, +OAN:SA:zone_BONNERIE,1,"BONNERIE",47.52271,-0.44631,,1,,Europe/Paris,,OAN, +OAN:SA:zone_BON_PASTEUR,1,"BON PASTEUR",47.470462,-0.569707,,1,,Europe/Paris,,OAN, +OAN:SA:zone_BOREAU,1,"BOREAU",47.475315,-0.545991,,1,,Europe/Paris,,OAN, +OAN:SA:zone_BOSQUET,1,"BOSQUET",47.409931,-0.524569,,1,,Europe/Paris,,OAN, +OAN:SA:zone_BOUCHEMAINE,1,"BOUCHEMAINE",47.421753,-0.610432,,1,,Europe/Paris,,OAN, +OAN:SA:zone_BOUCHEMAINE_PONT,1,"BOUCHEMAINE PONT",47.420657,-0.610389,,1,,Europe/Paris,,OAN, +OAN:SA:zone_BOUCHE_THOMAS,1,"BOUCHE THOMAS",47.444791,-0.550058,,1,,Europe/Paris,,OAN, +OAN:SA:zone_BOULLE,1,"BOULLE",47.486777,-0.628609,,1,,Europe/Paris,,OAN, +OAN:SA:zone_BOURG,1,"BOURG",47.591078,-0.555286,,1,,Europe/Paris,,OAN, +OAN:SA:zone_BOURGONNIER,1,"BOURGONNIER",47.462166,-0.541216,,1,,Europe/Paris,,OAN, +OAN:SA:zone_BOURG_DE_LA_MEMBROLLE,1,"BOURG DE LA MEMBROLLE",47.558554,-0.669726,,1,,Europe/Paris,,OAN, +OAN:SA:zone_BOURG_DE_PAILLE,1,"BOURG DE PAILLE",47.474522,-0.62486,,1,,Europe/Paris,,OAN, +OAN:SA:zone_BOURG_DE_SAINT_MARTIN,1,"BOURG DE SAINT MARTIN",47.431366,-0.70308,,1,,Europe/Paris,,OAN, +OAN:SA:zone_BOURG_DE_SOULAINES,1,"BOURG DE SOULAINES",47.364943,-0.524983,,1,,Europe/Paris,,OAN, +OAN:SA:zone_BOURG_LA_CROIX,1,"BOURG LA CROIX",47.45086,-0.52382,,1,,Europe/Paris,,OAN, +OAN:SA:zone_BOURRELIERE,1,"BOURRELIERE",47.38211,-0.56407,,1,,Europe/Paris,,OAN, +OAN:SA:zone_BOURSE,1,"BOURSE",47.44273,-0.495197,,1,,Europe/Paris,,OAN, +OAN:SA:zone_BOUTEILLERIE,1,"BOUTEILLERIE",47.47985,-0.43187,,1,,Europe/Paris,,OAN, +OAN:SA:zone_BOUVET,1,"BOUVET",47.563324,-0.675835,,1,,Europe/Paris,,OAN, +OAN:SA:zone_BOUZINAC,1,"BOUZINAC",47.503288,-0.50965,,1,,Europe/Paris,,OAN, +OAN:SA:zone_BRARDIERE,1,"BRARDIERE",47.58182,-0.49436,,1,,Europe/Paris,,OAN, +OAN:SA:zone_BRASSENS,1,"BRASSENS",47.494945,-0.586415,,1,,Europe/Paris,,OAN, +OAN:SA:zone_BRISEPOTIERE,1,"BRISEPOTIERE",47.479616,-0.527246,,1,,Europe/Paris,,OAN, +OAN:SA:zone_BUCHETIERE,1,"BUCHETIERE",47.559784,-0.428115,,1,,Europe/Paris,,OAN, +OAN:SA:zone_BUISSON,1,"BUISSON",47.442007,-0.483038,,1,,Europe/Paris,,OAN, +OAN:SA:zone_CAMELIA,1,"CAMELIA",47.471362,-0.518874,,1,,Europe/Paris,,OAN, +OAN:SA:zone_CAMPING_DE_BOUCHEMAINE,1,"CAMPING DE BOUCHEMAINE",47.419309,-0.611358,,1,,Europe/Paris,,OAN, +OAN:SA:zone_CAMPING_DE_JUIGNE,1,"CAMPING DE JUIGNE",47.537556,-0.616859,,1,,Europe/Paris,,OAN, +OAN:SA:zone_CAMUS,1,"CAMUS",47.485125,-0.575835,,1,,Europe/Paris,,OAN, +OAN:SA:zone_CAPUCINS,1,"CAPUCINS",47.487443,-0.554535,,1,,Europe/Paris,,OAN, +OAN:SA:zone_CARNOT,1,"CARNOT",47.474892,-0.547236,,1,,Europe/Paris,,OAN, +OAN:SA:zone_CARREAUX,1,"CARREAUX",47.51256,-0.471439,,1,,Europe/Paris,,OAN, +OAN:SA:zone_CARREFOUR_SAINT_SERGE,1,"CARREFOUR SAINT SERGE",47.487616,-0.543218,,1,,Europe/Paris,,OAN, +OAN:SA:zone_CARREFOUR_ST_SERGE,1,"CARREFOUR ST SERGE",47.488167,-0.542548,,1,,Europe/Paris,,OAN, +OAN:SA:zone_CENTRE_COMMERCIAL,1,"CENTRE COMMERCIAL",47.437798,-0.526661,,1,,Europe/Paris,,OAN, +OAN:SA:zone_CENTRE_COMMERCIAL_BOURG_DE_PAILLE,1,"CENTRE COMMERCIAL BOURG DE PAILLE",47.473272,-0.62325,,1,,Europe/Paris,,OAN, +OAN:SA:zone_CENTRE_COMMERCIAL_CROIX_CADEAU,1,"CENTRE COMMERCIAL CROIX CADEAU",47.517638,-0.608085,,1,,Europe/Paris,,OAN, +OAN:SA:zone_CENTRE_DE_TRI,1,"CENTRE DE TRI",47.452342,-0.570537,,1,,Europe/Paris,,OAN, +OAN:SA:zone_CENTRE_EQUESTRE,1,"CENTRE EQUESTRE",47.45958,-0.484518,,1,,Europe/Paris,,OAN, +OAN:SA:zone_CEVERT,1,"CEVERT",47.446651,-0.543684,,1,,Europe/Paris,,OAN, +OAN:SA:zone_CEZANNE,1,"CEZANNE",47.469794,-0.491965,,1,,Europe/Paris,,OAN, +OAN:SA:zone_CHAGALL,1,"CHAGALL",47.56017,-0.677,,1,,Europe/Paris,,OAN, +OAN:SA:zone_CHALOUERE,1,"CHALOUERE",47.481419,-0.536576,,1,,Europe/Paris,,OAN, +OAN:SA:zone_CHAMPBOUREAU,1,"CHAMPBOUREAU",47.396632,-0.636697,,1,,Europe/Paris,,OAN, +OAN:SA:zone_CHAMPDOLLANT,1,"CHAMPDOLLANT",47.556806,-0.561455,,1,,Europe/Paris,,OAN, +OAN:SA:zone_CHAMPFLEUR,1,"CHAMPFLEUR",47.482912,-0.503977,,1,,Europe/Paris,,OAN, +OAN:SA:zone_CHAMPS_BLANCS,1,"CHAMPS BLANCS",47.518326,-0.475419,,1,,Europe/Paris,,OAN, +OAN:SA:zone_CHAMP_DES_MARTYRS,1,"CHAMP DES MARTYRS",47.490074,-0.582698,,1,,Europe/Paris,,OAN, +OAN:SA:zone_CHAMP_FLEURI_CANTENAY,1,"CHAMP FLEURI CANTENAY",47.537268,-0.57111,,1,,Europe/Paris,,OAN, +OAN:SA:zone_CHAMP_FLEURI_FENEU,1,"CHAMP FLEURI FENEU",47.56797,-0.57942,,1,,Europe/Paris,,OAN, +OAN:SA:zone_CHANTERIE,1,"CHANTERIE",47.470989,-0.628029,,1,,Europe/Paris,,OAN, +OAN:SA:zone_CHANTOURTEAU,1,"CHANTOURTEAU",47.406158,-0.62199,,1,,Europe/Paris,,OAN, +OAN:SA:zone_CHANZY,1,"CHANZY",47.460161,-0.557327,,1,,Europe/Paris,,OAN, +OAN:SA:zone_CHAPELLE_BELLE_BEILLE,1,"CHAPELLE BELLE BEILLE",47.475803,-0.586044,,1,,Europe/Paris,,OAN, +OAN:SA:zone_CHARLES_PEGUY,1,"CHARLES PEGUY",47.53,-0.620318,,1,,Europe/Paris,,OAN, +OAN:SA:zone_CHARNASSERIE,1,"CHARNASSERIE",47.491936,-0.556652,,1,,Europe/Paris,,OAN, +OAN:SA:zone_CHARRUAU,1,"CHARRUAU",47.37301,-0.50992,,1,,Europe/Paris,,OAN, +OAN:SA:zone_CHATAIGNERAIE,1,"CHATAIGNERAIE",47.44144,-0.607582,,1,,Europe/Paris,,OAN, +OAN:SA:zone_CHATEAU_DANGERS,1,"CHATEAU D'ANGERS",47.469246,-0.559147,,1,,Europe/Paris,,OAN, +OAN:SA:zone_CHATEAU_ERIGNE,1,"CHATEAU ERIGNE",47.406471,-0.525829,,1,,Europe/Paris,,OAN, +OAN:SA:zone_CHATELAIN,1,"CHATELAIN",47.483204,-0.514246,,1,,Europe/Paris,,OAN, +OAN:SA:zone_CHATENAY,1,"CHATENAY",47.482791,-0.521075,,1,,Europe/Paris,,OAN, +OAN:SA:zone_CHAUMIERES,1,"CHAUMIERES",47.524145,-0.523193,,1,,Europe/Paris,,OAN, +OAN:SA:zone_CHEMIN_DU_PRE,1,"CHEMIN DU PRE",47.46728,-0.6355,,1,,Europe/Paris,,OAN, +OAN:SA:zone_CHEMIN_NOIR,1,"CHEMIN NOIR",47.529598,-0.590551,,1,,Europe/Paris,,OAN, +OAN:SA:zone_CHENE_ROND,1,"CHENE ROND",47.39575,-0.53665,,1,,Europe/Paris,,OAN, +OAN:SA:zone_CHENE_VERT,1,"CHENE VERT",47.470381,-0.51482,,1,,Europe/Paris,,OAN, +OAN:SA:zone_CHEVALLERIE,1,"CHEVALLERIE",47.554716,-0.659867,,1,,Europe/Paris,,OAN, +OAN:SA:zone_CHEVRIERE,1,"CHEVRIERE",47.423893,-0.60914,,1,,Europe/Paris,,OAN, +OAN:SA:zone_CHOUANIERE,1,"CHOUANIERE",47.458885,-0.598866,,1,,Europe/Paris,,OAN, +OAN:SA:zone_CHOUTEAU,1,"CHOUTEAU",47.44622,-0.496982,,1,,Europe/Paris,,OAN, +OAN:SA:zone_CHU_-_HOPITAL,1,"CHU - HOPITAL",47.481483,-0.553597,,1,,Europe/Paris,,OAN, +OAN:SA:zone_CIMETIERE_DAVRILLE,1,"CIMETIERE D'AVRILLE",47.506565,-0.590564,,1,,Europe/Paris,,OAN, +OAN:SA:zone_CIMETIERE_DES_PONTS_DE_CE,1,"CIMETIERE DES PONTS DE CE",47.434349,-0.52979,,1,,Europe/Paris,,OAN, +OAN:SA:zone_CIMETIERE_DE_LEST,1,"CIMETIERE DE L'EST",47.471354,-0.527763,,1,,Europe/Paris,,OAN, +OAN:SA:zone_CIMETIERE_DE_LOUEST,1,"CIMETIERE DE L'OUEST",47.479301,-0.569693,,1,,Europe/Paris,,OAN, +OAN:SA:zone_CIMETIERE_DE_SARRIGNE,1,"CIMETIERE DE SARRIGNE",47.501488,-0.387442,,1,,Europe/Paris,,OAN, +OAN:SA:zone_CIMETIERE_DE_TRELAZE,1,"CIMETIERE DE TRELAZE",47.44641,-0.462376,,1,,Europe/Paris,,OAN, +OAN:SA:zone_CITE_UNIVERSITAIRE,1,"CITE UNIVERSITAIRE",47.478855,-0.597896,,1,,Europe/Paris,,OAN, +OAN:SA:zone_CITRONNELLE,1,"CITRONNELLE",47.479421,-0.633786,,1,,Europe/Paris,,OAN, +OAN:SA:zone_CLAIE,1,"CLAIE",47.460724,-0.627053,,1,,Europe/Paris,,OAN, +OAN:SA:zone_CLARTE,1,"CLARTE",47.454044,-0.481274,,1,,Europe/Paris,,OAN, +OAN:SA:zone_CLAUDEL,1,"CLAUDEL",47.449907,-0.566215,,1,,Europe/Paris,,OAN, +OAN:SA:zone_CLAVERIE,1,"CLAVERIE",47.486633,-0.504591,,1,,Europe/Paris,,OAN, +OAN:SA:zone_CLINIQUE_DE_LANJOU,1,"CLINIQUE DE L'ANJOU",47.444277,-0.539217,,1,,Europe/Paris,,OAN, +OAN:SA:zone_CLINIQUE_SAINT_DIDIER,1,"CLINIQUE SAINT DIDIER",47.485294,-0.58713,,1,,Europe/Paris,,OAN, +OAN:SA:zone_CLOS_DE_LA_VIGNE,1,"CLOS DE LA VIGNE",47.441634,-0.61129,,1,,Europe/Paris,,OAN, +OAN:SA:zone_CLOS_DOREAU,1,"CLOS DOREAU",47.496327,-0.425173,,1,,Europe/Paris,,OAN, +OAN:SA:zone_CLOS_NEUF,1,"CLOS NEUF",47.422515,-0.565444,,1,,Europe/Paris,,OAN, +OAN:SA:zone_CLOUET,1,"CLOUET",47.480556,-0.566162,,1,,Europe/Paris,,OAN, +OAN:SA:zone_CNFPT,1,"CNFPT",47.472406,-0.599782,,1,,Europe/Paris,,OAN, +OAN:SA:zone_COINTREAU,1,"COINTREAU",47.476467,-0.50742,,1,,Europe/Paris,,OAN, +OAN:SA:zone_COLLEGE_DEBUSSY,1,"COLLEGE DEBUSSY",47.488392,-0.516098,,1,,Europe/Paris,,OAN, +OAN:SA:zone_COLLEGE_JANEQUIN,1,"COLLEGE JANEQUIN",47.49777,-0.59169,,1,,Europe/Paris,,OAN, +OAN:SA:zone_COLLEGE_JEANNE_DARC,1,"COLLEGE JEANNE D'ARC",47.52026,-0.46556,,1,,Europe/Paris,,OAN, +OAN:SA:zone_COLLEGE_JEAN_ZAY,1,"COLLEGE JEAN ZAY",47.52967,-0.6076,,1,,Europe/Paris,,OAN, +OAN:SA:zone_COLLEGE_MERMOZ,1,"COLLEGE MERMOZ",47.45179,-0.566839,,1,,Europe/Paris,,OAN, +OAN:SA:zone_COLOMBIER,1,"COLOMBIER",47.482354,-0.490461,,1,,Europe/Paris,,OAN, +OAN:SA:zone_COLTRIE,1,"COLTRIE",47.485465,-0.675857,,1,,Europe/Paris,,OAN, +OAN:SA:zone_CONSTANT_LEMOINE,1,"CONSTANT LEMOINE",47.471974,-0.542067,,1,,Europe/Paris,,OAN, +OAN:SA:zone_CORMIERS,1,"CORMIERS",47.458148,-0.515533,,1,,Europe/Paris,,OAN, +OAN:SA:zone_COSSE,1,"COSSE",47.438282,-0.553259,,1,,Europe/Paris,,OAN, +OAN:SA:zone_COSSIERES,1,"COSSIERES",47.52566,-0.44787,,1,,Europe/Paris,,OAN, +OAN:SA:zone_COTTAGE,1,"COTTAGE",47.494816,-0.515243,,1,,Europe/Paris,,OAN, +OAN:SA:zone_COUBERTIN,1,"COUBERTIN",47.462593,-0.532309,,1,,Europe/Paris,,OAN, +OAN:SA:zone_CRESSONNIERE,1,"CRESSONNIERE",47.47348,-0.49273,,1,,Europe/Paris,,OAN, +OAN:SA:zone_CROISEE,1,"CROISEE",47.459009,-0.66748,,1,,Europe/Paris,,OAN, +OAN:SA:zone_CROISETTE,1,"CROISETTE",47.451336,-0.599751,,1,,Europe/Paris,,OAN, +OAN:SA:zone_CROIX_BLANCHE,1,"CROIX BLANCHE",47.480843,-0.5172,,1,,Europe/Paris,,OAN, +OAN:SA:zone_CROIX_CADEAU,1,"CROIX CADEAU",47.520195,-0.609437,,1,,Europe/Paris,,OAN, +OAN:SA:zone_CROIX_DES_FRUX,1,"CROIX DES FRUX",47.503277,-0.690992,,1,,Europe/Paris,,OAN, +OAN:SA:zone_CROIX_DE_BEAUVAIS,1,"CROIX DE BEAUVAIS",47.611938,-0.585146,,1,,Europe/Paris,,OAN, +OAN:SA:zone_CROIX_DE_CHEMINEE,1,"CROIX DE CHEMINEE",47.467733,-0.502891,,1,,Europe/Paris,,OAN, +OAN:SA:zone_CROIX_DE_SARTHE,1,"CROIX DE SARTHE",47.540082,-0.569944,,1,,Europe/Paris,,OAN, +OAN:SA:zone_DANEMARK,1,"DANEMARK",47.527813,-0.597565,,1,,Europe/Paris,,OAN, +OAN:SA:zone_DANIEL_GELIN,1,"DANIEL GELIN",47.444727,-0.52726,,1,,Europe/Paris,,OAN, +OAN:SA:zone_DAUTEL,1,"DAUTEL",47.442833,-0.483269,,1,,Europe/Paris,,OAN, +OAN:SA:zone_DEBUSSY,1,"DEBUSSY",47.488392,-0.515878,,1,,Europe/Paris,,OAN, +OAN:SA:zone_DELACROIX,1,"DELACROIX",47.454906,-0.528668,,1,,Europe/Paris,,OAN, +OAN:SA:zone_DELESCLUZE,1,"DELESCLUZE",47.466092,-0.604972,,1,,Europe/Paris,,OAN, +OAN:SA:zone_DESCAZEAUX,1,"DESCAZEAUX",47.477409,-0.565521,,1,,Europe/Paris,,OAN, +OAN:SA:zone_DESJARDINS,1,"DESJARDINS",47.478051,-0.530035,,1,,Europe/Paris,,OAN, +OAN:SA:zone_DESMAZIERES,1,"DESMAZIERES",47.462681,-0.534506,,1,,Europe/Paris,,OAN, +OAN:SA:zone_DEUX_VALLEES,1,"DEUX VALLEES",47.5678,-0.49966,,1,,Europe/Paris,,OAN, +OAN:SA:zone_DE_BEAUVOIR,1,"DE BEAUVOIR",47.529022,-0.614669,,1,,Europe/Paris,,OAN, +OAN:SA:zone_DE_GAULLE,1,"DE GAULLE",47.453236,-0.478272,,1,,Europe/Paris,,OAN, +OAN:SA:zone_DE_LATTRE,1,"DE LATTRE",47.453345,-0.541233,,1,,Europe/Paris,,OAN, +OAN:SA:zone_DE_SERRE,1,"DE SERRE",47.477818,-0.61479,,1,,Europe/Paris,,OAN, +OAN:SA:zone_DIONNEAU,1,"DIONNEAU",47.438587,-0.53022,,1,,Europe/Paris,,OAN, +OAN:SA:zone_DIONNIERE,1,"DIONNIERE",47.543669,-0.485086,,1,,Europe/Paris,,OAN, +OAN:SA:zone_DOJO_DAGUERRE,1,"DOJO DAGUERRE",47.44659,-0.506391,,1,,Europe/Paris,,OAN, +OAN:SA:zone_DOLANTINES,1,"DOLANTINES",47.52792,-0.44495,,1,,Europe/Paris,,OAN, +OAN:SA:zone_DOMAINE_DES_CHENES,1,"DOMAINE DES CHENES",47.55904,-0.67329,,1,,Europe/Paris,,OAN, +OAN:SA:zone_DOMAINE_DU_VAL,1,"DOMAINE DU VAL",47.536877,-0.624855,,1,,Europe/Paris,,OAN, +OAN:SA:zone_DOYENNE,1,"DOYENNE",47.490613,-0.532345,,1,,Europe/Paris,,OAN, +OAN:SA:zone_DUBE,1,"DUBE",47.415825,-0.523179,,1,,Europe/Paris,,OAN, +OAN:SA:zone_DUMESNIL,1,"DUMESNIL",47.47381,-0.566978,,1,,Europe/Paris,,OAN, +OAN:SA:zone_DUMESNIL_MONPROFIT,1,"DUMESNIL MONPROFIT",47.473695,-0.567264,,1,,Europe/Paris,,OAN, +OAN:SA:zone_DUMNACUS,1,"DUMNACUS",47.786323,-0.592057,,1,,Europe/Paris,,OAN, +OAN:SA:zone_DUMONT_DURVILLE,1,"DUMONT D'URVILLE",47.445145,-0.557176,,1,,Europe/Paris,,OAN, +OAN:SA:zone_DUNANT,1,"DUNANT",47.483498,-0.525575,,1,,Europe/Paris,,OAN, +OAN:SA:zone_DU_BELLAY,1,"DU BELLAY",47.492432,-0.513279,,1,,Europe/Paris,,OAN, +OAN:SA:zone_EBEAUPIN,1,"EBEAUPIN",47.464419,-0.624679,,1,,Europe/Paris,,OAN, +OAN:SA:zone_EBLE,1,"EBLE",47.455383,-0.566279,,1,,Europe/Paris,,OAN, +OAN:SA:zone_ECHATS,1,"ECHATS",47.481021,-0.631914,,1,,Europe/Paris,,OAN, +OAN:SA:zone_ECHMAN,1,"ECHMAN",47.490879,-0.575762,,1,,Europe/Paris,,OAN, +OAN:SA:zone_ECLATERIES,1,"ECLATERIES",47.451374,-0.519975,,1,,Europe/Paris,,OAN, +OAN:SA:zone_ECOLE_BALZAC,1,"ECOLE BALZAC",47.55698,-0.67224,,1,,Europe/Paris,,OAN, +OAN:SA:zone_ECOLE_DE_SOULAINES,1,"ECOLE DE SOULAINES",47.36497,-0.52172,,1,,Europe/Paris,,OAN, +OAN:SA:zone_ECOLE_DE_VILLEVEQUE,1,"ECOLE DE VILLEVEQUE",47.560978,-0.421446,,1,,Europe/Paris,,OAN, +OAN:SA:zone_ECOTIERE,1,"ECOTIERE",47.364456,-0.504602,,1,,Europe/Paris,,OAN, +OAN:SA:zone_ECUILLE,1,"ECUILLE",47.616111,-0.562469,,1,,Europe/Paris,,OAN, +OAN:SA:zone_EGLISE_DE_FENEU,1,"EGLISE DE FENEU",47.569565,-0.594392,,1,,Europe/Paris,,OAN, +OAN:SA:zone_EGLISE_DE_LA_MEIGNANNE,1,"EGLISE DE LA MEIGNANNE",47.519701,-0.66769,,1,,Europe/Paris,,OAN, +OAN:SA:zone_EGLISE_DE_PELLOUAILLES,1,"EGLISE DE PELLOUAILLES",47.521539,-0.443999,,1,,Europe/Paris,,OAN, +OAN:SA:zone_EGLISE_DE_SAINT_CLEMENT,1,"EGLISE DE SAINT CLEMENT",47.524832,-0.745265,,1,,Europe/Paris,,OAN, +OAN:SA:zone_EGLISE_DE_TRELAZE,1,"EGLISE DE TRELAZE",47.445515,-0.464849,,1,,Europe/Paris,,OAN, +OAN:SA:zone_ELYSEE,1,"ELYSEE",47.473638,-0.584554,,1,,Europe/Paris,,OAN, +OAN:SA:zone_EMPIRE,1,"EMPIRE",47.423148,-0.592871,,1,,Europe/Paris,,OAN, +OAN:SA:zone_EPIRE,1,"EPIRE",47.398563,-0.634451,,1,,Europe/Paris,,OAN, +OAN:SA:zone_ERIGNE,1,"ERIGNE",47.401424,-0.529747,,1,,Europe/Paris,,OAN, +OAN:SA:zone_ESA,1,"ESA",47.45895,-0.544922,,1,,Europe/Paris,,OAN, +OAN:SA:zone_ESPACE_ANJOU,1,"ESPACE ANJOU",47.468164,-0.52033,,1,,Europe/Paris,,OAN, +OAN:SA:zone_ESPACE_LONGUENEE,1,"ESPACE LONGUENEE",47.540237,-0.672806,,1,,Europe/Paris,,OAN, +OAN:SA:zone_ESPERANTO,1,"ESPERANTO",47.529503,-0.603652,,1,,Europe/Paris,,OAN, +OAN:SA:zone_ESSCA,1,"ESSCA",47.477318,-0.597497,,1,,Europe/Paris,,OAN, +OAN:SA:zone_ESTAMINET,1,"ESTAMINET",47.56604,-0.50351,,1,,Europe/Paris,,OAN, +OAN:SA:zone_ETAS,1,"ETAS",47.524514,-0.619963,,1,,Europe/Paris,,OAN, +OAN:SA:zone_EVENTARD,1,"EVENTARD",47.496839,-0.51495,,1,,Europe/Paris,,OAN, +OAN:SA:zone_FACULTE,1,"FACULTE",47.479292,-0.550747,,1,,Europe/Paris,,OAN, +OAN:SA:zone_FAC_DE_MEDECINE,1,"FAC. DE MEDECINE",47.487061,-0.552719,,1,,Europe/Paris,,OAN, +OAN:SA:zone_FELIX_FAURE,1,"FELIX FAURE",47.485615,-0.546982,,1,,Europe/Paris,,OAN, +OAN:SA:zone_FENEU,1,"FENEU",47.579533,-0.592068,,1,,Europe/Paris,,OAN, +OAN:SA:zone_FIEF_GENTIL,1,"FIEF GENTIL",47.533256,-0.526021,,1,,Europe/Paris,,OAN, +OAN:SA:zone_FLORILOIRE,1,"FLORILOIRE",47.43046,-0.542146,,1,,Europe/Paris,,OAN, +OAN:SA:zone_FOCH_HARAS,1,"FOCH HARAS",47.467212,-0.551934,,1,,Europe/Paris,,OAN, +OAN:SA:zone_FOCH_MAISON_BLEUE,1,"FOCH MAISON BLEUE",47.469681,-0.548551,,1,,Europe/Paris,,OAN, +OAN:SA:zone_FOCH_SAINT_AUBIN,1,"FOCH SAINT AUBIN",47.468235,-0.550533,,1,,Europe/Paris,,OAN, +OAN:SA:zone_FONTAINE,1,"FONTAINE",47.461293,-0.598999,,1,,Europe/Paris,,OAN, +OAN:SA:zone_FOUDON,1,"FOUDON",47.49222,-0.42518,,1,,Europe/Paris,,OAN, +OAN:SA:zone_FOUQUETTERIE,1,"FOUQUETTERIE",47.46832,-0.705178,,1,,Europe/Paris,,OAN, +OAN:SA:zone_FOUSSEAUX,1,"FOUSSEAUX",47.515965,-0.468356,,1,,Europe/Paris,,OAN, +OAN:SA:zone_FRANCAISERIE,1,"FRANCAISERIE",47.521492,-0.465817,,1,,Europe/Paris,,OAN, +OAN:SA:zone_FRANCOIS_MITTERRAND,1,"FRANCOIS MITTERRAND",47.476627,-0.551105,,1,,Europe/Paris,,OAN, +OAN:SA:zone_FRANCOIS_VILLON_PARKING,1,"FRANCOIS VILLON PARKING",47.433156,-0.522406,,1,,Europe/Paris,,OAN, +OAN:SA:zone_FRATELLINI,1,"FRATELLINI",47.471541,-0.530892,,1,,Europe/Paris,,OAN, +OAN:SA:zone_FRATERNITE,1,"FRATERNITE",47.490726,-0.561473,,1,,Europe/Paris,,OAN, +OAN:SA:zone_FREMOND,1,"FREMOND",47.485676,-0.561565,,1,,Europe/Paris,,OAN, +OAN:SA:zone_FREMUR,1,"FREMUR",47.458719,-0.558205,,1,,Europe/Paris,,OAN, +OAN:SA:zone_FRESNAIES,1,"FRESNAIES",47.448273,-0.500503,,1,,Europe/Paris,,OAN, +OAN:SA:zone_FRONT_DE_MAINE,1,"FRONT DE MAINE",47.472634,-0.566273,,1,,Europe/Paris,,OAN, +OAN:SA:zone_FUNAULT,1,"FUNAULT",47.53465,-0.45658,,1,,Europe/Paris,,OAN, +OAN:SA:zone_GAIGNE,1,"GAIGNE",47.38398,-0.55243,,1,,Europe/Paris,,OAN, +OAN:SA:zone_GALILEE,1,"GALILEE",47.456792,-0.667408,,1,,Europe/Paris,,OAN, +OAN:SA:zone_GALLIENI,1,"GALLIENI",47.434788,-0.524431,,1,,Europe/Paris,,OAN, +OAN:SA:zone_GARDONNE,1,"GARDONNE",47.521778,-0.471841,,1,,Europe/Paris,,OAN, +OAN:SA:zone_GARDOT,1,"GARDOT",47.468292,-0.533399,,1,,Europe/Paris,,OAN, +OAN:SA:zone_GARENNE,1,"GARENNE",47.478355,-0.57661,,1,,Europe/Paris,,OAN, +OAN:SA:zone_GARES_BREMONT,1,"GARES BREMONT",47.465971,-0.559369,,1,,Europe/Paris,,OAN, +OAN:SA:zone_GARES_PAPIN,1,"GARES PAPIN",47.465171,-0.557506,,1,,Europe/Paris,,OAN, +OAN:SA:zone_GARES_SEMARD,1,"GARES SEMARD",47.46497,-0.559488,,1,,Europe/Paris,,OAN, +OAN:SA:zone_GARE_DECOUFLANT,1,"GARE D'ECOUFLANT",47.503916,-0.519653,,1,,Europe/Paris,,OAN, +OAN:SA:zone_GARE_DE_BOUCHEMAINE,1,"GARE DE BOUCHEMAINE",47.416639,-0.614852,,1,,Europe/Paris,,OAN, +OAN:SA:zone_GARE_SAVENNIERES,1,"GARE SAVENNIERES",47.381207,-0.655615,,1,,Europe/Paris,,OAN, +OAN:SA:zone_GASNIER,1,"GASNIER",47.485237,-0.571729,,1,,Europe/Paris,,OAN, +OAN:SA:zone_GASPALON,1,"GASPALON",47.453312,-0.506954,,1,,Europe/Paris,,OAN, +OAN:SA:zone_GAUBERT,1,"GAUBERT",47.475296,-0.599519,,1,,Europe/Paris,,OAN, +OAN:SA:zone_GAUBOURGS,1,"GAUBOURGS",47.449312,-0.572355,,1,,Europe/Paris,,OAN, +OAN:SA:zone_GEMMETRIE,1,"GEMMETRIE",47.463297,-0.499167,,1,,Europe/Paris,,OAN, +OAN:SA:zone_GENETIERE,1,"GENETIERE",47.494963,-0.4436,,1,,Europe/Paris,,OAN, +OAN:SA:zone_GENIE,1,"GENIE",47.458145,-0.563795,,1,,Europe/Paris,,OAN, +OAN:SA:zone_GENTRIC,1,"GENTRIC",47.447803,-0.485178,,1,,Europe/Paris,,OAN, +OAN:SA:zone_GEOFFRAY,1,"GEOFFRAY",47.458584,-0.545676,,1,,Europe/Paris,,OAN, +OAN:SA:zone_GEORGE_SAND,1,"GEORGE SAND",47.433468,-0.519613,,1,,Europe/Paris,,OAN, +OAN:SA:zone_GERICAULT,1,"GERICAULT",47.460101,-0.523722,,1,,Europe/Paris,,OAN, +OAN:SA:zone_GERMAINE_TILLION,1,"GERMAINE TILLION",47.53701,-0.62743,,1,,Europe/Paris,,OAN, +OAN:SA:zone_GILLIER,1,"GILLIER",47.475033,-0.52545,,1,,Europe/Paris,,OAN, +OAN:SA:zone_GIRARD,1,"GIRARD",47.490862,-0.581207,,1,,Europe/Paris,,OAN, +OAN:SA:zone_GIRARDEAU,1,"GIRARDEAU",47.43656,-0.520354,,1,,Europe/Paris,,OAN, +OAN:SA:zone_GIRAUDIERE,1,"GIRAUDIERE",47.521362,-0.435983,,1,,Europe/Paris,,OAN, +OAN:SA:zone_GLOUTIERE,1,"GLOUTIERE",47.509348,-0.643552,,1,,Europe/Paris,,OAN, +OAN:SA:zone_GLYCINES,1,"GLYCINES",47.498932,-0.523666,,1,,Europe/Paris,,OAN, +OAN:SA:zone_GOURONNIERES,1,"GOURONNIERES",47.483056,-0.569351,,1,,Europe/Paris,,OAN, +OAN:SA:zone_GRANDMONT,1,"GRANDMONT",47.487567,-0.58758,,1,,Europe/Paris,,OAN, +OAN:SA:zone_GRANDS_CHAMPS,1,"GRANDS CHAMPS",47.514759,-0.434073,,1,,Europe/Paris,,OAN, +OAN:SA:zone_GRAND_CLAYE,1,"GRAND CLAYE",47.387113,-0.538381,,1,,Europe/Paris,,OAN, +OAN:SA:zone_GRAND_MAINE,1,"GRAND MAINE",47.467619,-0.593016,,1,,Europe/Paris,,OAN, +OAN:SA:zone_GRAND_MOTTAY,1,"GRAND MOTTAY",47.576,-0.47713,,1,,Europe/Paris,,OAN, +OAN:SA:zone_GRAND_PERIGNE,1,"GRAND PERIGNE",47.473869,-0.614627,,1,,Europe/Paris,,OAN, +OAN:SA:zone_GRAND_PIN,1,"GRAND PIN",47.47332,-0.631338,,1,,Europe/Paris,,OAN, +OAN:SA:zone_GRAND_PRESSOIR,1,"GRAND PRESSOIR",47.399456,-0.527772,,1,,Europe/Paris,,OAN, +OAN:SA:zone_GRANGE_AUX_BELLES,1,"GRANGE AUX BELLES",47.476733,-0.62791,,1,,Europe/Paris,,OAN, +OAN:SA:zone_GRESILLE,1,"GRESILLE",47.460021,-0.605127,,1,,Europe/Paris,,OAN, +OAN:SA:zone_GRIMORELLE,1,"GRIMORELLE",47.529501,-0.50736,,1,,Europe/Paris,,OAN, +OAN:SA:zone_GROLIERE,1,"GROLIERE",47.354089,-0.527351,,1,,Europe/Paris,,OAN, +OAN:SA:zone_GROUPE_COMMERCIAL,1,"GROUPE COMMERCIAL",47.445727,-0.606086,,1,,Europe/Paris,,OAN, +OAN:SA:zone_GUERANDAIS,1,"GUERANDAIS",47.527415,-0.748504,,1,,Europe/Paris,,OAN, +OAN:SA:zone_GUICHARD,1,"GUICHARD",47.455295,-0.547962,,1,,Europe/Paris,,OAN, +OAN:SA:zone_GUILLAUMIERE,1,"GUILLAUMIERE",47.533064,-0.666845,,1,,Europe/Paris,,OAN, +OAN:SA:zone_GUILLEBOTTE,1,"GUILLEBOTTE",47.437437,-0.512979,,1,,Europe/Paris,,OAN, +OAN:SA:zone_GUINEZER,1,"GUINEZER",47.461798,-0.631054,,1,,Europe/Paris,,OAN, +OAN:SA:zone_HAIE_JOULAIN,1,"HAIE JOULAIN",47.517773,-0.463508,,1,,Europe/Paris,,OAN, +OAN:SA:zone_HALTE_FERROVIAIRE,1,"HALTE FERROVIAIRE",47.452407,-0.466448,,1,,Europe/Paris,,OAN, +OAN:SA:zone_HARENCHERES,1,"HARENCHERES",47.448726,-0.615664,,1,,Europe/Paris,,OAN, +OAN:SA:zone_HAUTE_DE_RECULEE,1,"HAUTE DE RECULEE",47.484825,-0.552587,,1,,Europe/Paris,,OAN, +OAN:SA:zone_HAUTE_MARZELLE,1,"HAUTE MARZELLE",47.343019,-0.529604,,1,,Europe/Paris,,OAN, +OAN:SA:zone_HAUTE_ROCHE,1,"HAUTE ROCHE",47.46921,-0.63475,,1,,Europe/Paris,,OAN, +OAN:SA:zone_HAUTS_DE_BOUCHEMAINE,1,"HAUTS DE BOUCHEMAINE",47.430481,-0.609363,,1,,Europe/Paris,,OAN, +OAN:SA:zone_HAUTS_DE_SAINT_AUBIN,1,"HAUTS DE SAINT AUBIN",47.492218,-0.560439,,1,,Europe/Paris,,OAN, +OAN:SA:zone_HAUT_COUDRAY,1,"HAUT COUDRAY",47.530561,-0.624416,,1,,Europe/Paris,,OAN, +OAN:SA:zone_HAUT_PRESSOIR,1,"HAUT PRESSOIR",47.453197,-0.538026,,1,,Europe/Paris,,OAN, +OAN:SA:zone_HERMITAGE,1,"HERMITAGE",47.477795,-0.63525,,1,,Europe/Paris,,OAN, +OAN:SA:zone_HIPPODROME,1,"HIPPODROME",47.501183,-0.507466,,1,,Europe/Paris,,OAN, +OAN:SA:zone_HOPITAL_DE_SAINTE_GEMMES,1,"HOPITAL DE SAINTE GEMMES",47.422956,-0.560773,,1,,Europe/Paris,,OAN, +OAN:SA:zone_HOTELLERIE,1,"HOTELLERIE",47.489296,-0.518919,,1,,Europe/Paris,,OAN, +OAN:SA:zone_HOTEL_DE_VILLE,1,"HOTEL DE VILLE",47.401878,-0.536493,,1,,Europe/Paris,,OAN, +OAN:SA:zone_HOTEL_DIEU,1,"HOTEL DIEU",47.479354,-0.559441,,1,,Europe/Paris,,OAN, +OAN:SA:zone_HUETTERIE,1,"HUETTERIE",47.45957,-0.47741,,1,,Europe/Paris,,OAN, +OAN:SA:zone_HULLETERIES,1,"HULLETERIES",47.465382,-0.720752,,1,,Europe/Paris,,OAN, +OAN:SA:zone_HUTREAU,1,"HUTREAU",47.432922,-0.554655,,1,,Europe/Paris,,OAN, +OAN:SA:zone_INDUSTRIE,1,"INDUSTRIE",47.49017,-0.522846,,1,,Europe/Paris,,OAN, +OAN:SA:zone_INRA,1,"INRA",47.47472,-0.61113,,1,,Europe/Paris,,OAN, +OAN:SA:zone_INTERMARCHE,1,"INTERMARCHE",47.45578,-0.533786,,1,,Europe/Paris,,OAN, +OAN:SA:zone_INTREPIDE,1,"INTREPIDE",47.447365,-0.552111,,1,,Europe/Paris,,OAN, +OAN:SA:zone_IRLANDE,1,"IRLANDE",47.523087,-0.604309,,1,,Europe/Paris,,OAN, +OAN:SA:zone_ISORET,1,"ISORET",47.47465,-0.520126,,1,,Europe/Paris,,OAN, +OAN:SA:zone_ISTIA,1,"ISTIA",47.480684,-0.594598,,1,,Europe/Paris,,OAN, +OAN:SA:zone_ITALIE,1,"ITALIE",47.524834,-0.602067,,1,,Europe/Paris,,OAN, +OAN:SA:zone_IUT,1,"IUT",47.480524,-0.602401,,1,,Europe/Paris,,OAN, +OAN:SA:zone_JANVRIE,1,"JANVRIE",47.504155,-0.699691,,1,,Europe/Paris,,OAN, +OAN:SA:zone_JARDINS_FAMILIAUX,1,"JARDINS FAMILIAUX",47.485554,-0.508291,,1,,Europe/Paris,,OAN, +OAN:SA:zone_JARDIN_BOTANIQUE,1,"JARDIN BOTANIQUE",47.57153,-0.50278,,1,,Europe/Paris,,OAN, +OAN:SA:zone_JAUDETTE,1,"JAUDETTE",47.463827,-0.490139,,1,,Europe/Paris,,OAN, +OAN:SA:zone_JEAN_BOUIN,1,"JEAN BOUIN",47.458953,-0.532869,,1,,Europe/Paris,,OAN, +OAN:SA:zone_JEAN_BOUTTON,1,"JEAN BOUTTON",47.438793,-0.50724,,1,,Europe/Paris,,OAN, +OAN:SA:zone_JEAN_CARMET,1,"JEAN CARMET",47.40061,-0.542629,,1,,Europe/Paris,,OAN, +OAN:SA:zone_JEAN_HUEZ,1,"JEAN HUEZ",47.530872,-0.59428,,1,,Europe/Paris,,OAN, +OAN:SA:zone_JEAN_JAURES,1,"JEAN JAURES",47.457652,-0.522885,,1,,Europe/Paris,,OAN, +OAN:SA:zone_JEAN_MOULIN,1,"JEAN MOULIN",47.492986,-0.550046,,1,,Europe/Paris,,OAN, +OAN:SA:zone_JEAN_VILAR,1,"JEAN VILAR",47.444925,-0.562258,,1,,Europe/Paris,,OAN, +OAN:SA:zone_JEAN_XXIII,1,"JEAN XXIII",47.448627,-0.562853,,1,,Europe/Paris,,OAN, +OAN:SA:zone_JERUSALEM,1,"JERUSALEM",47.473566,-0.529793,,1,,Europe/Paris,,OAN, +OAN:SA:zone_JOFFRE,1,"JOFFRE",47.471943,-0.545158,,1,,Europe/Paris,,OAN, +OAN:SA:zone_JOSEPH_WRESINSKI,1,"JOSEPH WRESINSKI",47.484559,-0.559358,,1,,Europe/Paris,,OAN, +OAN:SA:zone_JOXE,1,"JOXE",47.48444,-0.54142,,1,,Europe/Paris,,OAN, +OAN:SA:zone_JUIGNE,1,"JUIGNE",47.539925,-0.615382,,1,,Europe/Paris,,OAN, +OAN:SA:zone_JULES_FERRY,1,"JULES FERRY",47.46638,-0.49873,,1,,Europe/Paris,,OAN, +OAN:SA:zone_JULES_VERNE,1,"JULES VERNE",47.447445,-0.561627,,1,,Europe/Paris,,OAN, +OAN:SA:zone_JUSTICES,1,"JUSTICES",47.453564,-0.526251,,1,,Europe/Paris,,OAN, +OAN:SA:zone_KENNEDY,1,"KENNEDY",47.492407,-0.577263,,1,,Europe/Paris,,OAN, +OAN:SA:zone_LACRETELLE,1,"LACRETELLE",47.465867,-0.616766,,1,,Europe/Paris,,OAN, +OAN:SA:zone_LAC_DE_MAINE_ACCUEIL,1,"LAC DE MAINE ACCUEIL",47.464031,-0.594305,,1,,Europe/Paris,,OAN, +OAN:SA:zone_LAC_DE_MAINE_CAMPING,1,"LAC DE MAINE CAMPING",47.457948,-0.59705,,1,,Europe/Paris,,OAN, +OAN:SA:zone_LAC_DE_MAINE_NAUTIQUE,1,"LAC DE MAINE NAUTIQUE",47.461201,-0.596154,,1,,Europe/Paris,,OAN, +OAN:SA:zone_LAENNEC,1,"LAENNEC",47.539427,-0.618446,,1,,Europe/Paris,,OAN, +OAN:SA:zone_LAFAUVELAIE,1,"LAFAUVELAIE",47.452129,-0.512166,,1,,Europe/Paris,,OAN, +OAN:SA:zone_LAKANAL,1,"LAKANAL",47.477795,-0.602229,,1,,Europe/Paris,,OAN, +OAN:SA:zone_LANDE,1,"LANDE",47.562423,-0.585343,,1,,Europe/Paris,,OAN, +OAN:SA:zone_LANGEVIN,1,"LANGEVIN",47.518013,-0.612652,,1,,Europe/Paris,,OAN, +OAN:SA:zone_LANGEVINE,1,"LANGEVINE",47.478816,-0.691599,,1,,Europe/Paris,,OAN, +OAN:SA:zone_LAREVELLIERE,1,"LAREVELLIERE",47.471345,-0.531808,,1,,Europe/Paris,,OAN, +OAN:SA:zone_LATOLL,1,"L'ATOLL",47.484248,-0.626463,,1,,Europe/Paris,,OAN, +OAN:SA:zone_LAVOIR,1,"LAVOIR",47.441051,-0.498525,,1,,Europe/Paris,,OAN, +OAN:SA:zone_LA_BARRE,1,"LA BARRE",47.473249,-0.597319,,1,,Europe/Paris,,OAN, +OAN:SA:zone_LA_BARRE_VILLEVEQUE,1,"LA BARRE VILLEVEQUE",47.552285,-0.42919,,1,,Europe/Paris,,OAN, +OAN:SA:zone_LA_BOISSIERE,1,"LA BOISSIERE",47.50478,-0.600003,,1,,Europe/Paris,,OAN, +OAN:SA:zone_LA_BROSSE_ECOUFLANT,1,"LA BROSSE ECOUFLANT",47.532744,-0.522091,,1,,Europe/Paris,,OAN, +OAN:SA:zone_LA_BRUYERE,1,"LA BRUYERE",47.476574,-0.573319,,1,,Europe/Paris,,OAN, +OAN:SA:zone_LA_BUISSAIE,1,"LA BUISSAIE",47.396179,-0.55204,,1,,Europe/Paris,,OAN, +OAN:SA:zone_LA_CHAUVELAIE,1,"LA CHAUVELAIE",47.436521,-0.584332,,1,,Europe/Paris,,OAN, +OAN:SA:zone_LA_CHENAIE,1,"LA CHENAIE",47.54803,-0.47442,,1,,Europe/Paris,,OAN, +OAN:SA:zone_LA_CHESNAIE,1,"LA CHESNAIE",47.437138,-0.523997,,1,,Europe/Paris,,OAN, +OAN:SA:zone_LA_CITE_CHABADA,1,"LA CITE CHABADA",47.48845,-0.535917,,1,,Europe/Paris,,OAN, +OAN:SA:zone_LA_COUDRE,1,"LA COUDRE",47.460947,-0.710006,,1,,Europe/Paris,,OAN, +OAN:SA:zone_LA_FONTAINE,1,"LA FONTAINE",47.570567,-0.590499,,1,,Europe/Paris,,OAN, +OAN:SA:zone_LA_FOURERIE,1,"LA FOURERIE",47.54632,-0.47798,,1,,Europe/Paris,,OAN, +OAN:SA:zone_LA_GRANGE,1,"LA GRANGE",47.504576,-0.632229,,1,,Europe/Paris,,OAN, +OAN:SA:zone_LA_MARE,1,"LA MARE",47.46847,-0.4652,,1,,Europe/Paris,,OAN, +OAN:SA:zone_LA_MEIGNANNE,1,"LA MEIGNANNE",47.484352,-0.582181,,1,,Europe/Paris,,OAN, +OAN:SA:zone_LA_MONNAIE,1,"LA MONNAIE",47.44525,-0.51241,,1,,Europe/Paris,,OAN, +OAN:SA:zone_LA_PINEAUDIERE,1,"LA PINEAUDIERE",47.59328,-0.5369,,1,,Europe/Paris,,OAN, +OAN:SA:zone_LA_PLESSE,1,"LA PLESSE",47.49955,-0.620354,,1,,Europe/Paris,,OAN, +OAN:SA:zone_LA_POINTE,1,"LA POINTE",47.410366,-0.619811,,1,,Europe/Paris,,OAN, +OAN:SA:zone_LA_REUX,1,"LA REUX",47.469512,-0.510403,,1,,Europe/Paris,,OAN, +OAN:SA:zone_LA_ROCHE,1,"LA ROCHE",47.458122,-0.65695,,1,,Europe/Paris,,OAN, +OAN:SA:zone_LA_ROCHEFOUCAULD,1,"LA ROCHEFOUCAULD",47.479416,-0.556582,,1,,Europe/Paris,,OAN, +OAN:SA:zone_LA_ROCHETTE,1,"LA ROCHETTE",47.528785,-0.751731,,1,,Europe/Paris,,OAN, +OAN:SA:zone_LA_SABLE,1,"LA SABLE",47.586998,-0.590492,,1,,Europe/Paris,,OAN, +OAN:SA:zone_LA_TURMINIERE,1,"LA TURMINIERE",47.56682,-0.54555,,1,,Europe/Paris,,OAN, +OAN:SA:zone_LA_VENRIE,1,"LA VENRIE",47.421398,-0.57001,,1,,Europe/Paris,,OAN, +OAN:SA:zone_LECLERC,1,"LECLERC",47.518668,-0.466495,,1,,Europe/Paris,,OAN, +OAN:SA:zone_LECUIT,1,"LECUIT",47.490299,-0.562711,,1,,Europe/Paris,,OAN, +OAN:SA:zone_LEFEVRE,1,"LEFEVRE",47.443359,-0.48879,,1,,Europe/Paris,,OAN, +OAN:SA:zone_LEGRAS,1,"LEGRAS",47.52923,-0.566899,,1,,Europe/Paris,,OAN, +OAN:SA:zone_LEMERCIER,1,"LEMERCIER",47.49872,-0.522524,,1,,Europe/Paris,,OAN, +OAN:SA:zone_LEO_LAGRANGE,1,"LEO LAGRANGE",47.447744,-0.508798,,1,,Europe/Paris,,OAN, +OAN:SA:zone_LESNAUDERIE,1,"L'ESNAUDERIE",47.59329,-0.54957,,1,,Europe/Paris,,OAN, +OAN:SA:zone_LES_AULNAIES,1,"LES AULNAIES",47.5869,-0.43976,,1,,Europe/Paris,,OAN, +OAN:SA:zone_LES_CHAPELLES,1,"LES CHAPELLES",47.57706,-0.54466,,1,,Europe/Paris,,OAN, +OAN:SA:zone_LES_DENIERS,1,"LES DENIERS",47.466053,-0.598517,,1,,Europe/Paris,,OAN, +OAN:SA:zone_LES_ECOTS,1,"LES ECOTS",47.475583,-0.695597,,1,,Europe/Paris,,OAN, +OAN:SA:zone_LES_ESSARTS,1,"LES ESSARTS",47.469161,-0.73654,,1,,Europe/Paris,,OAN, +OAN:SA:zone_LES_FORGES,1,"LES FORGES",47.386489,-0.645081,,1,,Europe/Paris,,OAN, +OAN:SA:zone_LES_GARES,1,"LES GARES",47.465415,-0.555373,,1,,Europe/Paris,,OAN, +OAN:SA:zone_LES_GATS,1,"LES GATS",47.514455,-0.516839,,1,,Europe/Paris,,OAN, +OAN:SA:zone_LES_NONNAINS,1,"LES NONNAINS",47.586937,-0.423106,,1,,Europe/Paris,,OAN, +OAN:SA:zone_LES_PLANTES,1,"LES PLANTES",47.502621,-0.379517,,1,,Europe/Paris,,OAN, +OAN:SA:zone_LES_RIVES,1,"LES RIVES",47.526778,-0.525079,,1,,Europe/Paris,,OAN, +OAN:SA:zone_LES_ROSES,1,"LES ROSES",47.427056,-0.55126,,1,,Europe/Paris,,OAN, +OAN:SA:zone_LES_VIGNES,1,"LES VIGNES",47.409199,-0.626258,,1,,Europe/Paris,,OAN, +OAN:SA:zone_LETANDUERE,1,"LETANDUERE",47.453104,-0.552958,,1,,Europe/Paris,,OAN, +OAN:SA:zone_LEVESQUE,1,"LEVESQUE",47.402191,-0.534428,,1,,Europe/Paris,,OAN, +OAN:SA:zone_LE_CHENE,1,"LE CHENE",47.420979,-0.576037,,1,,Europe/Paris,,OAN, +OAN:SA:zone_LE_CORBUSIER,1,"LE CORBUSIER",47.485365,-0.631027,,1,,Europe/Paris,,OAN, +OAN:SA:zone_LE_COTEAU,1,"LE COTEAU",47.398293,-0.548785,,1,,Europe/Paris,,OAN, +OAN:SA:zone_LE_FRESNE,1,"LE FRESNE",47.442474,-0.583639,,1,,Europe/Paris,,OAN, +OAN:SA:zone_LE_FROMIOUX,1,"LE FROMIOUX",47.51008,-0.71492,,1,,Europe/Paris,,OAN, +OAN:SA:zone_LE_LANDREAU,1,"LE LANDREAU",47.474113,-0.617466,,1,,Europe/Paris,,OAN, +OAN:SA:zone_LE_NOTRE,1,"LE NOTRE",47.476261,-0.607219,,1,,Europe/Paris,,OAN, +OAN:SA:zone_LE_PORT,1,"LE PORT",47.421607,-0.573657,,1,,Europe/Paris,,OAN, +OAN:SA:zone_LE_TEMPLE,1,"LE TEMPLE",47.48933,-0.42842,,1,,Europe/Paris,,OAN, +OAN:SA:zone_LE_TERTRE_SOULAINES,1,"LE TERTRE SOULAINES",47.362837,-0.521774,,1,,Europe/Paris,,OAN, +OAN:SA:zone_LHERMITAGE_SOUCELLES,1,"L'HERMITAGE SOUCELLES",47.584554,-0.417496,,1,,Europe/Paris,,OAN, +OAN:SA:zone_LHOIRIE,1,"L'HOIRIE",47.467107,-0.618301,,1,,Europe/Paris,,OAN, +OAN:SA:zone_LICORNE,1,"LICORNE",47.473425,-0.593272,,1,,Europe/Paris,,OAN, +OAN:SA:zone_LILAS,1,"LILAS",47.459481,-0.662865,,1,,Europe/Paris,,OAN, +OAN:SA:zone_LINNE,1,"LINNE",47.446552,-0.547686,,1,,Europe/Paris,,OAN, +OAN:SA:zone_LINO_VENTURA,1,"LINO VENTURA",47.4473,-0.529062,,1,,Europe/Paris,,OAN, +OAN:SA:zone_LIZE,1,"LIZE",47.488198,-0.572796,,1,,Europe/Paris,,OAN, +OAN:SA:zone_LOIRE,1,"LOIRE",47.418827,-0.523359,,1,,Europe/Paris,,OAN, +OAN:SA:zone_LOMBARDIERES,1,"LOMBARDIERES",47.442501,-0.690443,,1,,Europe/Paris,,OAN, +OAN:SA:zone_LOREE,1,"L'OREE",47.542754,-0.672203,,1,,Europe/Paris,,OAN, +OAN:SA:zone_LORETTE,1,"LORETTE",47.451288,-0.547942,,1,,Europe/Paris,,OAN, +OAN:SA:zone_LORRAINE,1,"LORRAINE",47.470314,-0.54706,,1,,Europe/Paris,,OAN, +OAN:SA:zone_LOTISSEMENT_DE_VILLEVEQUE,1,"LOTISSEMENT DE VILLEVEQUE",47.556772,-0.424174,,1,,Europe/Paris,,OAN, +OAN:SA:zone_LOUET,1,"LOUET",47.412418,-0.523748,,1,,Europe/Paris,,OAN, +OAN:SA:zone_LOUPINOT,1,"LOUPINOT",47.424648,-0.552573,,1,,Europe/Paris,,OAN, +OAN:SA:zone_LUTIN,1,"LUTIN",47.475754,-0.534199,,1,,Europe/Paris,,OAN, +OAN:SA:zone_LYCEE_CHEVROLLIER,1,"LYCEE CHEVROLLIER",47.454563,-0.556704,,1,,Europe/Paris,,OAN, +OAN:SA:zone_LYCEE_JEAN_BODIN,1,"LYCEE JEAN BODIN",47.441582,-0.528152,,1,,Europe/Paris,,OAN, +OAN:SA:zone_MACE,1,"MACE",47.47699,-0.53181,,1,,Europe/Paris,,OAN, +OAN:SA:zone_MADELEINE,1,"MADELEINE",47.459206,-0.535543,,1,,Europe/Paris,,OAN, +OAN:SA:zone_MAIL,1,"MAIL",47.471121,-0.546361,,1,,Europe/Paris,,OAN, +OAN:SA:zone_MAIL_DES_QUATRE_VENTS,1,"MAIL DES QUATRE VENTS",47.531784,-0.528412,,1,,Europe/Paris,,OAN, +OAN:SA:zone_MAIRIE_DAVRILLE,1,"MAIRIE D'AVRILLE",47.504925,-0.589973,,1,,Europe/Paris,,OAN, +OAN:SA:zone_MAIRIE_DES_PONTS_DE_CE,1,"MAIRIE DES PONTS DE CE",47.425606,-0.524455,,1,,Europe/Paris,,OAN, +OAN:SA:zone_MAIRIE_DE_BEAUCOUZE,1,"MAIRIE DE BEAUCOUZE",47.474611,-0.632113,,1,,Europe/Paris,,OAN, +OAN:SA:zone_MAIRIE_DE_BRIOLLAY,1,"MAIRIE DE BRIOLLAY",47.563684,-0.507357,,1,,Europe/Paris,,OAN, +OAN:SA:zone_MAIRIE_DE_LA_MEMBROLLE,1,"MAIRIE DE LA MEMBROLLE",47.56051,-0.67236,,1,,Europe/Paris,,OAN, +OAN:SA:zone_MAIRIE_DE_PELLOUAILLES,1,"MAIRIE DE PELLOUAILLES",47.521823,-0.439413,,1,,Europe/Paris,,OAN, +OAN:SA:zone_MAIRIE_DE_SAINTE_GEMMES,1,"MAIRIE DE SAINTE GEMMES",47.422836,-0.556586,,1,,Europe/Paris,,OAN, +OAN:SA:zone_MAIRIE_DE_SAINT_JEAN_DE_LINIERES,1,"MAIRIE DE SAINT JEAN DE LINIERES",47.458534,-0.658459,,1,,Europe/Paris,,OAN, +OAN:SA:zone_MAIRIE_DE_SAINT_SYLVAIN,1,"MAIRIE DE SAINT SYLVAIN",47.52093,-0.470239,,1,,Europe/Paris,,OAN, +OAN:SA:zone_MAIRIE_DE_SARRIGNE,1,"MAIRIE DE SARRIGNE",47.50173,-0.383121,,1,,Europe/Paris,,OAN, +OAN:SA:zone_MAIRIE_DE_TRELAZE,1,"MAIRIE DE TRELAZE",47.44561,-0.468499,,1,,Europe/Paris,,OAN, +OAN:SA:zone_MAIRIE_DE_VILLEVEQUE,1,"MAIRIE DE VILLEVEQUE",47.559464,-0.422118,,1,,Europe/Paris,,OAN, +OAN:SA:zone_MAIRIE_DU_PLESSIS_GRAMMOIRE,1,"MAIRIE DU PLESSIS GRAMMOIRE",47.501766,-0.430833,,1,,Europe/Paris,,OAN, +OAN:SA:zone_MAIRIE_DU_PLESSIS_MACE,1,"MAIRIE DU PLESSIS MACE",47.543886,-0.675045,,1,,Europe/Paris,,OAN, +OAN:SA:zone_MAISONS_ROUGES,1,"MAISONS ROUGES",47.474495,-0.511842,,1,,Europe/Paris,,OAN, +OAN:SA:zone_MAISON_DES_ARTS,1,"MAISON DES ARTS",47.471829,-0.537337,,1,,Europe/Paris,,OAN, +OAN:SA:zone_MAISON_DE_LA_DANSE,1,"MAISON DE LA DANSE",47.488823,-0.584874,,1,,Europe/Paris,,OAN, +OAN:SA:zone_MAISON_DE_TECHNOPOLE,1,"MAISON DE TECHNOPOLE",47.478603,-0.605094,,1,,Europe/Paris,,OAN, +OAN:SA:zone_MALAQUAIS,1,"MALAQUAIS",47.444263,-0.490182,,1,,Europe/Paris,,OAN, +OAN:SA:zone_MALEMBARDIERES,1,"MALEMBARDIERES",47.451942,-0.473488,,1,,Europe/Paris,,OAN, +OAN:SA:zone_MALNOUE,1,"MALNOUE",47.3694,-0.51644,,1,,Europe/Paris,,OAN, +OAN:SA:zone_MALRAUX,1,"MALRAUX",47.457594,-0.473421,,1,,Europe/Paris,,OAN, +OAN:SA:zone_MARECHAL_JUIN,1,"MARECHAL JUIN",47.449936,-0.567906,,1,,Europe/Paris,,OAN, +OAN:SA:zone_MARECHAL_LECLERC,1,"MARECHAL LECLERC",47.518669,-0.466495,,1,,Europe/Paris,,OAN, +OAN:SA:zone_MARECHAL_LYAUTEY,1,"MARECHAL LYAUTEY",47.49183,-0.583704,,1,,Europe/Paris,,OAN, +OAN:SA:zone_MARIANNE,1,"MARIANNE",47.44944,-0.530174,,1,,Europe/Paris,,OAN, +OAN:SA:zone_MARIE_CURIE,1,"MARIE CURIE",47.433434,-0.516572,,1,,Europe/Paris,,OAN, +OAN:SA:zone_MAROTTIERES,1,"MAROTTIERES",47.536252,-0.568767,,1,,Europe/Paris,,OAN, +OAN:SA:zone_MARTINIERE,1,"MARTINIERE",47.608597,-0.563678,,1,,Europe/Paris,,OAN, +OAN:SA:zone_MARY_CASSATT,1,"MARY CASSATT",47.511318,-0.602793,,1,,Europe/Paris,,OAN, +OAN:SA:zone_MASSON,1,"MASSON",47.532095,-0.567492,,1,,Europe/Paris,,OAN, +OAN:SA:zone_MASTELLE,1,"MASTELLE",47.529445,-0.591995,,1,,Europe/Paris,,OAN, +OAN:SA:zone_MAUFINEE,1,"MAUFINEE",47.502593,-0.588884,,1,,Europe/Paris,,OAN, +OAN:SA:zone_MAUPERTHUIS,1,"MAUPERTHUIS",47.433876,-0.485674,,1,,Europe/Paris,,OAN, +OAN:SA:zone_MEILLAND,1,"MEILLAND",47.448566,-0.546256,,1,,Europe/Paris,,OAN, +OAN:SA:zone_MENARD,1,"MENARD",47.445816,-0.493936,,1,,Europe/Paris,,OAN, +OAN:SA:zone_MENDES_FRANCE,1,"MENDES FRANCE",47.472967,-0.545585,,1,,Europe/Paris,,OAN, +OAN:SA:zone_MERCIER,1,"MERCIER",47.492696,-0.458265,,1,,Europe/Paris,,OAN, +OAN:SA:zone_MICHELET,1,"MICHELET",47.463482,-0.544257,,1,,Europe/Paris,,OAN, +OAN:SA:zone_MILLARDIERE,1,"MILLARDIERE",47.514183,-0.471043,,1,,Europe/Paris,,OAN, +OAN:SA:zone_MILLOT_COUBERTIN,1,"MILLOT COUBERTIN",47.45917,-0.532817,,1,,Europe/Paris,,OAN, +OAN:SA:zone_MILLOT_SCOLAIRE,1,"MILLOT SCOLAIRE",47.456686,-0.533362,,1,,Europe/Paris,,OAN, +OAN:SA:zone_MIMOSAS,1,"MIMOSAS",47.48163,-0.523251,,1,,Europe/Paris,,OAN, +OAN:SA:zone_MIRABEAU,1,"MIRABEAU",47.460091,-0.549029,,1,,Europe/Paris,,OAN, +OAN:SA:zone_MIRBEAU,1,"MIRBEAU",47.488409,-0.510063,,1,,Europe/Paris,,OAN, +OAN:SA:zone_MOLIERE,1,"MOLIERE",47.474539,-0.554298,,1,,Europe/Paris,,OAN, +OAN:SA:zone_MOLINERIE,1,"MOLINERIE",47.524476,-0.666503,,1,,Europe/Paris,,OAN, +OAN:SA:zone_MONGAZON,1,"MONGAZON",47.460949,-0.528608,,1,,Europe/Paris,,OAN, +OAN:SA:zone_MONNET,1,"MONNET",47.46554,-0.601158,,1,,Europe/Paris,,OAN, +OAN:SA:zone_MONNIER,1,"MONNIER",47.403168,-0.525121,,1,,Europe/Paris,,OAN, +OAN:SA:zone_MONOD,1,"MONOD",47.478971,-0.63642,,1,,Europe/Paris,,OAN, +OAN:SA:zone_MONPLAISIR,1,"MONPLAISIR",47.491135,-0.527397,,1,,Europe/Paris,,OAN, +OAN:SA:zone_MONPLAISIR_PLESSIS_GRAMMOIRE,1,"MONPLAISIR PLESSIS GRAMMOIRE",47.499931,-0.428712,,1,,Europe/Paris,,OAN, +OAN:SA:zone_MONPROFIT,1,"MONPROFIT",47.475619,-0.566689,,1,,Europe/Paris,,OAN, +OAN:SA:zone_MONTAIGNE,1,"MONTAIGNE",47.470863,-0.53136,,1,,Europe/Paris,,OAN, +OAN:SA:zone_MONTECLAIR,1,"MONTECLAIR",47.464486,-0.604735,,1,,Europe/Paris,,OAN, +OAN:SA:zone_MONTESQUIEU,1,"MONTESQUIEU",47.473785,-0.579177,,1,,Europe/Paris,,OAN, +OAN:SA:zone_MONTHIBERT,1,"MONTHIBERT",47.444752,-0.47334,,1,,Europe/Paris,,OAN, +OAN:SA:zone_MONT_CASSIN,1,"MONT CASSIN",47.447224,-0.569417,,1,,Europe/Paris,,OAN, +OAN:SA:zone_MOREL,1,"MOREL",47.47493,-0.608513,,1,,Europe/Paris,,OAN, +OAN:SA:zone_MORELLERIE,1,"MORELLERIE",47.452709,-0.54482,,1,,Europe/Paris,,OAN, +OAN:SA:zone_MORETTE,1,"MORETTE",47.604333,-0.560084,,1,,Europe/Paris,,OAN, +OAN:SA:zone_MORLIERE,1,"MORLIERE",47.46162,-0.482373,,1,,Europe/Paris,,OAN, +OAN:SA:zone_MOULIN_DES_LANDES,1,"MOULIN DES LANDES",47.53029,-0.47645,,1,,Europe/Paris,,OAN, +OAN:SA:zone_MOULIN_MARCILLE,1,"MOULIN MARCILLE",47.435126,-0.500682,,1,,Europe/Paris,,OAN, +OAN:SA:zone_MOUNIER_LYCEE,1,"MOUNIER LYCEE",47.489496,-0.526925,,1,,Europe/Paris,,OAN, +OAN:SA:zone_MURS_ERIGNE,1,"MURS ERIGNE",47.395409,-0.555869,,1,,Europe/Paris,,OAN, +OAN:SA:zone_MUSSET,1,"MUSSET",47.473706,-0.53877,,1,,Europe/Paris,,OAN, +OAN:SA:zone_MUTUALITE,1,"MUTUALITE",47.45565,-0.540779,,1,,Europe/Paris,,OAN, +OAN:SA:zone_NERUDA,1,"NERUDA",47.445176,-0.541096,,1,,Europe/Paris,,OAN, +OAN:SA:zone_NOTRE_DAME_DU_LAC,1,"NOTRE DAME DU LAC",47.479657,-0.589655,,1,,Europe/Paris,,OAN, +OAN:SA:zone_NOUELLE,1,"NOUELLE",47.544957,-0.669613,,1,,Europe/Paris,,OAN, +OAN:SA:zone_NOYANT,1,"NOYANT",47.56337,-0.5456,,1,,Europe/Paris,,OAN, +OAN:SA:zone_NOZAY,1,"NOZAY",47.487831,-0.532009,,1,,Europe/Paris,,OAN, +OAN:SA:zone_OFFICE_DE_TOURISME,1,"OFFICE DE TOURISME",47.469143,-0.557856,,1,,Europe/Paris,,OAN, +OAN:SA:zone_OISEAUX,1,"OISEAUX",47.501536,-0.587245,,1,,Europe/Paris,,OAN, +OAN:SA:zone_OLIVERAIE,1,"OLIVERAIE",47.427259,-0.712397,,1,,Europe/Paris,,OAN, +OAN:SA:zone_ORGEMONT,1,"ORGEMONT",47.447929,-0.541856,,1,,Europe/Paris,,OAN, +OAN:SA:zone_ORMEAUX,1,"ORMEAUX",47.480076,-0.51919,,1,,Europe/Paris,,OAN, +OAN:SA:zone_PAGNOL,1,"PAGNOL",47.55422,-0.66856,,1,,Europe/Paris,,OAN, +OAN:SA:zone_PALLACH,1,"PALLACH",47.446178,-0.558731,,1,,Europe/Paris,,OAN, +OAN:SA:zone_PAPERIE,1,"PAPERIE",47.468743,-0.506503,,1,,Europe/Paris,,OAN, +OAN:SA:zone_PAQUERETTE,1,"PAQUERETTE",47.485937,-0.649222,,1,,Europe/Paris,,OAN, +OAN:SA:zone_PARC_EXPO_CITE_DE_LOBJET_CONNECTE,1,"PARC EXPO CITE DE L'OBJET CONNECTE",47.497051,-0.493459,,1,,Europe/Paris,,OAN, +OAN:SA:zone_PARC_INDUSTRIEL_Angers-Ecouflant,1,"PARC INDUSTRIEL Angers-Ecouflant",47.506335,-0.507799,,1,,Europe/Paris,,OAN, +OAN:SA:zone_PARC_INDUSTRILE_Angers-Ecouflant,1,"PARC INDUSTRILE Angers-Ecouflant",47.506323,-0.507884,,1,,Europe/Paris,,OAN, +OAN:SA:zone_PARMENTIER,1,"PARMENTIER",47.45314,-0.518489,,1,,Europe/Paris,,OAN, +OAN:SA:zone_PASTEUR,1,"PASTEUR",47.467113,-0.492965,,1,,Europe/Paris,,OAN, +OAN:SA:zone_PATINOIRE,1,"PATINOIRE",47.466259,-0.552536,,1,,Europe/Paris,,OAN, +OAN:SA:zone_PATIO,1,"PATIO",47.51064,-0.64989,,1,,Europe/Paris,,OAN, +OAN:SA:zone_PATIS,1,"PATIS",47.54048,-0.58237,,1,,Europe/Paris,,OAN, +OAN:SA:zone_PATTON,1,"PATTON",47.473446,-0.584705,,1,,Europe/Paris,,OAN, +OAN:SA:zone_PATUREAUX,1,"PATUREAUX",47.43399,-0.527917,,1,,Europe/Paris,,OAN, +OAN:SA:zone_PAUGER,1,"PAUGER",47.483106,-0.677973,,1,,Europe/Paris,,OAN, +OAN:SA:zone_PAVILLON,1,"PAVILLON",47.465945,-0.620985,,1,,Europe/Paris,,OAN, +OAN:SA:zone_PELLERINIERE,1,"PELLERINIERE",47.460669,-0.488082,,1,,Europe/Paris,,OAN, +OAN:SA:zone_PELLOUAILLES_EGLISE,1,"PELLOUAILLES EGLISE",47.52225,-0.4433,,1,,Europe/Paris,,OAN, +OAN:SA:zone_PELUAU,1,"PELUAU",47.489651,-0.567417,,1,,Europe/Paris,,OAN, +OAN:SA:zone_PERDRIAU,1,"PERDRIAU",47.440155,-0.48758,,1,,Europe/Paris,,OAN, +OAN:SA:zone_PERRAUDIERE,1,"PERRAUDIERE",47.482288,-0.681225,,1,,Europe/Paris,,OAN, +OAN:SA:zone_PERRAUDIERE_RD_723,1,"PERRAUDIERE RD 723",47.438475,-0.698642,,1,,Europe/Paris,,OAN, +OAN:SA:zone_PERRAUDIERE_ST_LAMBERT,1,"PERRAUDIERE ST LAMBERT",47.482359,-0.681381,,1,,Europe/Paris,,OAN, +OAN:SA:zone_PERRAUDIERE_ZA,1,"PERRAUDIERE ZA",47.436282,-0.700112,,1,,Europe/Paris,,OAN, +OAN:SA:zone_PERUSSAIE,1,"PERUSSAIE",47.466011,-0.595477,,1,,Europe/Paris,,OAN, +OAN:SA:zone_PETITES_PANNES,1,"PETITES PANNES",47.48877,-0.569852,,1,,Europe/Paris,,OAN, +OAN:SA:zone_PETITES_VALINIERES,1,"PETITES VALINIERES",47.50679,-0.44439,,1,,Europe/Paris,,OAN, +OAN:SA:zone_PETITE_GARDE,1,"PETITE GARDE",47.508404,-0.588006,,1,,Europe/Paris,,OAN, +OAN:SA:zone_PETITE_LANDE,1,"PETITE LANDE",47.554468,-0.580109,,1,,Europe/Paris,,OAN, +OAN:SA:zone_PETITS_GRANDCHAMPS,1,"PETITS GRANDCHAMPS",47.463991,-0.714332,,1,,Europe/Paris,,OAN, +OAN:SA:zone_PETIT_ANJOU,1,"PETIT ANJOU",47.44454,-0.6146,,1,,Europe/Paris,,OAN, +OAN:SA:zone_PETIT_MONGAZON,1,"PETIT MONGAZON",47.486971,-0.483308,,1,,Europe/Paris,,OAN, +OAN:SA:zone_PETIT_PORT,1,"PETIT PORT",47.42588,-0.60961,,1,,Europe/Paris,,OAN, +OAN:SA:zone_PICASSO,1,"PICASSO",47.452981,-0.521782,,1,,Europe/Paris,,OAN, +OAN:SA:zone_PIECE_DU_MOULIN,1,"PIECE DU MOULIN",47.507133,-0.596253,,1,,Europe/Paris,,OAN, +OAN:SA:zone_PIERRE_LISE,1,"PIERRE LISE",47.472526,-0.541784,,1,,Europe/Paris,,OAN, +OAN:SA:zone_PIGNONNIERE,1,"PIGNONNIERE",47.487221,-0.498314,,1,,Europe/Paris,,OAN, +OAN:SA:zone_PINSONS,1,"PINSONS",47.472603,-0.630091,,1,,Europe/Paris,,OAN, +OAN:SA:zone_PISCINE_CAMILLE_MUFFAT,1,"PISCINE CAMILLE MUFFAT",47.534572,-0.61673,,1,,Europe/Paris,,OAN, +OAN:SA:zone_PIVERDIERE,1,"PIVERDIERE",47.437737,-0.609665,,1,,Europe/Paris,,OAN, +OAN:SA:zone_PLACE_DE_LA_FONTAINE,1,"PLACE DE LA FONTAINE",47.577093,-0.662803,,1,,Europe/Paris,,OAN, +OAN:SA:zone_PLACE_DE_LEUROPE,1,"PLACE DE L'EUROPE",47.48777,-0.527132,,1,,Europe/Paris,,OAN, +OAN:SA:zone_PLACE_DU_LYCEE,1,"PLACE DU LYCEE",47.466953,-0.544432,,1,,Europe/Paris,,OAN, +OAN:SA:zone_PLACE_LA_FAYETTE,1,"PLACE LA FAYETTE",47.460867,-0.55429,,1,,Europe/Paris,,OAN, +OAN:SA:zone_PLACE_LORRAINE,1,"PLACE LORRAINE",47.470169,-0.54769,,1,,Europe/Paris,,OAN, +OAN:SA:zone_PLACE_NEY,1,"PLACE NEY",47.478535,-0.543256,,1,,Europe/Paris,,OAN, +OAN:SA:zone_PLATEAU_DE_MAYENNE,1,"PLATEAU DE MAYENNE",47.496548,-0.579454,,1,,Europe/Paris,,OAN, +OAN:SA:zone_PLATEAU_DU_MAINE,1,"PLATEAU DU MAINE",47.458015,-0.603224,,1,,Europe/Paris,,OAN, +OAN:SA:zone_PLATEAU_FLEURI,1,"PLATEAU FLEURI",47.529942,-0.597671,,1,,Europe/Paris,,OAN, +OAN:SA:zone_PLOTINIERE,1,"PLOTINIERE",47.468818,-0.433327,,1,,Europe/Paris,,OAN, +OAN:SA:zone_POINCARE,1,"POINCARE",47.500277,-0.589491,,1,,Europe/Paris,,OAN, +OAN:SA:zone_POIREL,1,"POIREL",47.46189,-0.562081,,1,,Europe/Paris,,OAN, +OAN:SA:zone_POISSONNERIE,1,"POISSONNERIE",47.472492,-0.557069,,1,,Europe/Paris,,OAN, +OAN:SA:zone_POLE_49,1,"POLE 49",47.489015,-0.491545,,1,,Europe/Paris,,OAN, +OAN:SA:zone_POLE_TASSIGNY,1,"POLE TASSIGNY",47.446495,-0.537214,,1,,Europe/Paris,,OAN, +OAN:SA:zone_POMANJOU,1,"POMANJOU",47.500233,-0.520737,,1,,Europe/Paris,,OAN, +OAN:SA:zone_POMONE,1,"POMONE",47.481422,-0.574242,,1,,Europe/Paris,,OAN, +OAN:SA:zone_POMPIDOU,1,"POMPIDOU",47.492084,-0.59223,,1,,Europe/Paris,,OAN, +OAN:SA:zone_PONT_AUX_FILLES,1,"PONT AUX FILLES",47.512583,-0.514949,,1,,Europe/Paris,,OAN, +OAN:SA:zone_PONT_LAITIER,1,"PONT LAITIER",47.413208,-0.617052,,1,,Europe/Paris,,OAN, +OAN:SA:zone_PONT_NOIR,1,"PONT NOIR",47.463989,-0.562673,,1,,Europe/Paris,,OAN, +OAN:SA:zone_PORT_LAUNAY,1,"PORT LAUNAY",47.521011,-0.521577,,1,,Europe/Paris,,OAN, +OAN:SA:zone_POUILLE,1,"POUILLE",47.432869,-0.53177,,1,,Europe/Paris,,OAN, +OAN:SA:zone_PREVERT,1,"PREVERT",47.48788,-0.59766,,1,,Europe/Paris,,OAN, +OAN:SA:zone_PRIEURE,1,"PRIEURE",47.471943,-0.633465,,1,,Europe/Paris,,OAN, +OAN:SA:zone_PRINCE,1,"PRINCE",47.389568,-0.525732,,1,,Europe/Paris,,OAN, +OAN:SA:zone_PROMENIERS,1,"PROMENIERS",47.477386,-0.631432,,1,,Europe/Paris,,OAN, +OAN:SA:zone_PROUDHON,1,"PROUDHON",47.46166,-0.603306,,1,,Europe/Paris,,OAN, +OAN:SA:zone_PROVINS,1,"PROVINS",47.492593,-0.50204,,1,,Europe/Paris,,OAN, +OAN:SA:zone_PRUNIERS,1,"PRUNIERS",47.449276,-0.602491,,1,,Europe/Paris,,OAN, +OAN:SA:zone_PYRAMIDE,1,"PYRAMIDE",47.440922,-0.488549,,1,,Europe/Paris,,OAN, +OAN:SA:zone_QUANTINIERE,1,"QUANTINIERE",47.455252,-0.471607,,1,,Europe/Paris,,OAN, +OAN:SA:zone_QUATRE_VENTS,1,"QUATRE VENTS",47.497244,-0.420842,,1,,Europe/Paris,,OAN, +OAN:SA:zone_RABELAIS,1,"RABELAIS",47.461745,-0.546921,,1,,Europe/Paris,,OAN, +OAN:SA:zone_RAINIERE,1,"RAINIERE",47.57877,-0.47687,,1,,Europe/Paris,,OAN, +OAN:SA:zone_RALLIEMENT,1,"RALLIEMENT",47.471285,-0.55168,,1,,Europe/Paris,,OAN, +OAN:SA:zone_RAMON,1,"RAMON",47.486614,-0.537972,,1,,Europe/Paris,,OAN, +OAN:SA:zone_RANGEARDIERE,1,"RANGEARDIERE",47.410194,-0.622754,,1,,Europe/Paris,,OAN, +OAN:SA:zone_RAPIDEX,1,"RAPIDEX",47.502754,-0.513859,,1,,Europe/Paris,,OAN, +OAN:SA:zone_RASPAIL,1,"RASPAIL",47.475071,-0.570012,,1,,Europe/Paris,,OAN, +OAN:SA:zone_RENARDIERE,1,"RENARDIERE",47.483814,-0.67414,,1,,Europe/Paris,,OAN, +OAN:SA:zone_RENE_CLAIR,1,"RENE CLAIR",47.536756,-0.621767,,1,,Europe/Paris,,OAN, +OAN:SA:zone_RENNES,1,"RENNES",47.477245,-0.549069,,1,,Europe/Paris,,OAN, +OAN:SA:zone_RENOU,1,"RENOU",47.437309,-0.486813,,1,,Europe/Paris,,OAN, +OAN:SA:zone_REPUBLIQUE,1,"REPUBLIQUE",47.471695,-0.553946,,1,,Europe/Paris,,OAN, +OAN:SA:zone_REPUBLIQUE_MONTREUIL,1,"REPUBLIQUE MONTREUIL",47.528919,-0.610971,,1,,Europe/Paris,,OAN, +OAN:SA:zone_REPUBLIQUE_TRELAZE,1,"REPUBLIQUE TRELAZE",47.450605,-0.504218,,1,,Europe/Paris,,OAN, +OAN:SA:zone_RESIDENCE,1,"RESIDENCE",47.57281,-0.48691,,1,,Europe/Paris,,OAN, +OAN:SA:zone_RESTAURANT_UNIVERSITAIRE,1,"RESTAURANT UNIVERSITAIRE",47.479527,-0.600159,,1,,Europe/Paris,,OAN, +OAN:SA:zone_REUSSIERES,1,"REUSSIERES",47.56955,-0.56264,,1,,Europe/Paris,,OAN, +OAN:SA:zone_REVERIES,1,"REVERIES",47.482052,-0.57785,,1,,Europe/Paris,,OAN, +OAN:SA:zone_RIOTTEAU,1,"RIOTTEAU",47.443913,-0.498833,,1,,Europe/Paris,,OAN, +OAN:SA:zone_RIPOLLET,1,"RIPOLLET",47.511136,-0.588503,,1,,Europe/Paris,,OAN, +OAN:SA:zone_RIVET,1,"RIVET",47.436726,-0.515925,,1,,Europe/Paris,,OAN, +OAN:SA:zone_ROBIN,1,"ROBIN",47.476116,-0.594684,,1,,Europe/Paris,,OAN, +OAN:SA:zone_ROBINIERES,1,"ROBINIERES",47.470734,-0.697238,,1,,Europe/Paris,,OAN, +OAN:SA:zone_ROCHETTE,1,"ROCHETTE",47.528844,-0.751712,,1,,Europe/Paris,,OAN, +OAN:SA:zone_ROCHE_AUX_MOINES,1,"ROCHE AUX MOINES",47.393936,-0.645718,,1,,Europe/Paris,,OAN, +OAN:SA:zone_ROCHE_FOULQUES,1,"ROCHE FOULQUES",47.57584,-0.45484,,1,,Europe/Paris,,OAN, +OAN:SA:zone_ROCHE_MAROTTE,1,"ROCHE MAROTTE",47.44753,-0.51933,,1,,Europe/Paris,,OAN, +OAN:SA:zone_ROCHE_MORNA,1,"ROCHE MORNA",47.4203,-0.581543,,1,,Europe/Paris,,OAN, +OAN:SA:zone_ROCHE_TINARD,1,"ROCHE TINARD",47.496397,-0.403759,,1,,Europe/Paris,,OAN, +OAN:SA:zone_ROC_EPINE,1,"ROC EPINE",47.480293,-0.575875,,1,,Europe/Paris,,OAN, +OAN:SA:zone_RODIN,1,"RODIN",47.476032,-0.625645,,1,,Europe/Paris,,OAN, +OAN:SA:zone_ROI_DE_POLOGNE,1,"ROI DE POLOGNE",47.469545,-0.561275,,1,,Europe/Paris,,OAN, +OAN:SA:zone_ROMANERIE,1,"ROMANERIE",47.484568,-0.507747,,1,,Europe/Paris,,OAN, +OAN:SA:zone_RONCERAY,1,"RONCERAY",47.529993,-0.564791,,1,,Europe/Paris,,OAN, +OAN:SA:zone_RONCEVAUX,1,"RONCEVAUX",47.486731,-0.598707,,1,,Europe/Paris,,OAN, +OAN:SA:zone_RONCIERES,1,"RONCIERES",47.4361,-0.513559,,1,,Europe/Paris,,OAN, +OAN:SA:zone_ROSTAND,1,"ROSTAND",47.434338,-0.513808,,1,,Europe/Paris,,OAN, +OAN:SA:zone_ROUAIRIE,1,"ROUAIRIE",47.475498,-0.638799,,1,,Europe/Paris,,OAN, +OAN:SA:zone_ROUTE_DANGERS,1,"ROUTE D'ANGERS",47.42548,-0.556321,,1,,Europe/Paris,,OAN, +OAN:SA:zone_ROUTE_DES_GILARDIERES,1,"ROUTE DES GILARDIERES",47.38594,-0.5647,,1,,Europe/Paris,,OAN, +OAN:SA:zone_ROUTE_DE_BOUCHEMAINE,1,"ROUTE DE BOUCHEMAINE",47.444944,-0.577144,,1,,Europe/Paris,,OAN, +OAN:SA:zone_ROUTE_DE_BRIOLLAY,1,"ROUTE DE BRIOLLAY",47.486406,-0.532838,,1,,Europe/Paris,,OAN, +OAN:SA:zone_ROUTE_DE_CHAMPIGNE,1,"ROUTE DE CHAMPIGNE",47.573242,-0.593334,,1,,Europe/Paris,,OAN, +OAN:SA:zone_ROUTE_DE_LA_CHANSONNIERE,1,"ROUTE DE LA CHANSONNIERE",47.58381,-0.48357,,1,,Europe/Paris,,OAN, +OAN:SA:zone_ROUTE_DE_LA_MEIGNANNE,1,"ROUTE DE LA MEIGNANNE",47.477722,-0.639337,,1,,Europe/Paris,,OAN, +OAN:SA:zone_ROUTE_DE_LETANG,1,"ROUTE DE L'ETANG",47.50791,-0.60723,,1,,Europe/Paris,,OAN, +OAN:SA:zone_ROUTE_DE_PARIS,1,"ROUTE DE PARIS",47.489786,-0.507339,,1,,Europe/Paris,,OAN, +OAN:SA:zone_ROUTE_DE_SORGES,1,"ROUTE DE SORGES",47.43211,-0.48948,,1,,Europe/Paris,,OAN, +OAN:SA:zone_ROUTE_DE_TIERCE,1,"ROUTE DE TIERCE",47.58427,-0.4968,,1,,Europe/Paris,,OAN, +OAN:SA:zone_ROUTE_N_4,1,"ROUTE N 4",47.441788,-0.492386,,1,,Europe/Paris,,OAN, +OAN:SA:zone_RUELLES,1,"RUELLES",47.43745,-0.531453,,1,,Europe/Paris,,OAN, +OAN:SA:zone_SABLONS,1,"SABLONS",47.439861,-0.532872,,1,,Europe/Paris,,OAN, +OAN:SA:zone_SAILLERIE,1,"SAILLERIE",47.486553,-0.506804,,1,,Europe/Paris,,OAN, +OAN:SA:zone_SAINTE_CROIX,1,"SAINTE CROIX",47.470036,-0.554506,,1,,Europe/Paris,,OAN, +OAN:SA:zone_SAINTE_MELAINE,1,"SAINTE MELAINE",47.37053,-0.49634,,1,,Europe/Paris,,OAN, +OAN:SA:zone_SAINTE_THERESE,1,"SAINTE THERESE",47.480846,-0.564241,,1,,Europe/Paris,,OAN, +OAN:SA:zone_SAINT_AUBIN_LA_SALLE,1,"SAINT AUBIN LA SALLE",47.489725,-0.502485,,1,,Europe/Paris,,OAN, +OAN:SA:zone_SAINT_BARTHELEMY,1,"SAINT BARTHELEMY",47.472619,-0.485793,,1,,Europe/Paris,,OAN, +OAN:SA:zone_SAINT_EXUPERY,1,"SAINT EXUPERY",47.468076,-0.536359,,1,,Europe/Paris,,OAN, +OAN:SA:zone_SAINT_GILLES,1,"SAINT GILLES",47.506515,-0.589365,,1,,Europe/Paris,,OAN, +OAN:SA:zone_SAINT_JACQUES,1,"SAINT JACQUES",47.473663,-0.57119,,1,,Europe/Paris,,OAN, +OAN:SA:zone_SAINT_JEAN,1,"SAINT JEAN",47.478184,-0.556635,,1,,Europe/Paris,,OAN, +OAN:SA:zone_SAINT_JOSEPH,1,"SAINT JOSEPH",47.46492,-0.541175,,1,,Europe/Paris,,OAN, +OAN:SA:zone_SAINT_LAUD,1,"SAINT LAUD",47.41773,-0.52251,,1,,Europe/Paris,,OAN, +OAN:SA:zone_SAINT_LEONARD,1,"SAINT LEONARD",47.459778,-0.520354,,1,,Europe/Paris,,OAN, +OAN:SA:zone_SAINT_LEZIN,1,"SAINT LEZIN",47.450417,-0.487885,,1,,Europe/Paris,,OAN, +OAN:SA:zone_SAINT_LOUIS,1,"SAINT LOUIS",47.487628,-0.586492,,1,,Europe/Paris,,OAN, +OAN:SA:zone_SAINT_NICOLAS,1,"SAINT NICOLAS",47.473697,-0.577937,,1,,Europe/Paris,,OAN, +OAN:SA:zone_SAINT_SERGE_-_UNIVERSITE,1,"SAINT SERGE - UNIVERSITE",47.476855,-0.551276,,1,,Europe/Paris,,OAN, +OAN:SA:zone_SAINT_SYLVAIN,1,"SAINT SYLVAIN",47.512098,-0.471689,,1,,Europe/Paris,,OAN, +OAN:SA:zone_SALLE_DE_SPORT,1,"SALLE DE SPORT",47.561846,-0.505224,,1,,Europe/Paris,,OAN, +OAN:SA:zone_SARRIGNE_LES_PLANTES,1,"SARRIGNE LES PLANTES",47.502621,-0.379517,,1,,Europe/Paris,,OAN, +OAN:SA:zone_SAULAIS,1,"SAULAIS",47.47029,-0.46194,,1,,Europe/Paris,,OAN, +OAN:SA:zone_SAUMUROISE,1,"SAUMUROISE",47.457294,-0.531921,,1,,Europe/Paris,,OAN, +OAN:SA:zone_SAVARY,1,"SAVARY",47.473499,-0.541313,,1,,Europe/Paris,,OAN, +OAN:SA:zone_SAVENNIERES_MAIL,1,"SAVENNIERES MAIL",47.383408,-0.655517,,1,,Europe/Paris,,OAN, +OAN:SA:zone_SCANIA,1,"SCANIA",47.49358,-0.522292,,1,,Europe/Paris,,OAN, +OAN:SA:zone_SCANIA_MURS_ERIGNE,1,"SCANIA MURS ERIGNE",47.38382,-0.54877,,1,,Europe/Paris,,OAN, +OAN:SA:zone_SCHUMAN,1,"SCHUMAN",47.489496,-0.526895,,1,,Europe/Paris,,OAN, +OAN:SA:zone_SCHWALBACH,1,"SCHWALBACH",47.503914,-0.602426,,1,,Europe/Paris,,OAN, +OAN:SA:zone_SCHWEITZER,1,"SCHWEITZER",47.482536,-0.522067,,1,,Europe/Paris,,OAN, +OAN:SA:zone_SECURITE_SOCIALE,1,"SECURITE SOCIALE",47.46912,-0.540062,,1,,Europe/Paris,,OAN, +OAN:SA:zone_SHAKESPEARE,1,"SHAKESPEARE",47.461906,-0.612412,,1,,Europe/Paris,,OAN, +OAN:SA:zone_SOLAND,1,"SOLAND",47.399568,-0.53092,,1,,Europe/Paris,,OAN, +OAN:SA:zone_SOLEIL_LEVANT,1,"SOLEIL LEVANT",47.484642,-0.517323,,1,,Europe/Paris,,OAN, +OAN:SA:zone_SORGES,1,"SORGES",47.431801,-0.48514,,1,,Europe/Paris,,OAN, +OAN:SA:zone_SOUCELLES,1,"SOUCELLES",47.570132,-0.420353,,1,,Europe/Paris,,OAN, +OAN:SA:zone_SOULAIRE,1,"SOULAIRE",47.57744,-0.554203,,1,,Europe/Paris,,OAN, +OAN:SA:zone_STADE_DE_PELLOUAILLES,1,"STADE DE PELLOUAILLES",47.523355,-0.438853,,1,,Europe/Paris,,OAN, +OAN:SA:zone_STADE_DE_SAINT_BARTHELEMY,1,"STADE DE SAINT BARTHELEMY",47.461331,-0.49189,,1,,Europe/Paris,,OAN, +OAN:SA:zone_STADE_RAYMOND_KOPA,1,"STADE RAYMOND KOPA",47.46149,-0.531138,,1,,Europe/Paris,,OAN, +OAN:SA:zone_STRASBOURG,1,"STRASBOURG",47.457472,-0.55409,,1,,Europe/Paris,,OAN, +OAN:SA:zone_ST_GILLES,1,"ST GILLES",47.495168,-0.432063,,1,,Europe/Paris,,OAN, +OAN:SA:zone_TALET,1,"TALET",47.476604,-0.547335,,1,,Europe/Paris,,OAN, +OAN:SA:zone_TANCELLERIE,1,"TANCELLERIE",47.515963,-0.663658,,1,,Europe/Paris,,OAN, +OAN:SA:zone_TARTELUSSE,1,"TARTELUSSE",47.558783,-0.437558,,1,,Europe/Paris,,OAN, +OAN:SA:zone_TERNIERE,1,"TERNIERE",47.505707,-0.592854,,1,,Europe/Paris,,OAN, +OAN:SA:zone_TERRA_BOTANICA,1,"TERRA BOTANICA",47.494278,-0.574465,,1,,Europe/Paris,,OAN, +OAN:SA:zone_THOMASSERIE,1,"THOMASSERIE",47.461792,-0.625373,,1,,Europe/Paris,,OAN, +OAN:SA:zone_THULEAU,1,"THULEAU",47.477465,-0.528162,,1,,Europe/Paris,,OAN, +OAN:SA:zone_TINELLIERE,1,"TINELLIERE",47.48375,-0.43145,,1,,Europe/Paris,,OAN, +OAN:SA:zone_TOURAINE,1,"TOURAINE",47.539122,-0.435361,,1,,Europe/Paris,,OAN, +OAN:SA:zone_TRELAZE,1,"TRELAZE",47.459836,-0.474624,,1,,Europe/Paris,,OAN, +OAN:SA:zone_TRINITE,1,"TRINITE",47.475278,-0.561754,,1,,Europe/Paris,,OAN, +OAN:SA:zone_TROIS_PAROISSES,1,"TROIS PAROISSES",47.443695,-0.534644,,1,,Europe/Paris,,OAN, +OAN:SA:zone_TURNER,1,"TURNER",47.51147,-0.59871,,1,,Europe/Paris,,OAN, +OAN:SA:zone_UNION,1,"UNION",47.520203,-0.474854,,1,,Europe/Paris,,OAN, +OAN:SA:zone_VAILLANTE,1,"VAILLANTE",47.48531,-0.533417,,1,,Europe/Paris,,OAN, +OAN:SA:zone_VALENTIN_HAUY,1,"VALENTIN HAUY",47.485275,-0.556515,,1,,Europe/Paris,,OAN, +OAN:SA:zone_VALEO,1,"VALEO",47.502117,-0.516694,,1,,Europe/Paris,,OAN, +OAN:SA:zone_VALLON,1,"VALLON",47.463678,-0.601834,,1,,Europe/Paris,,OAN, +OAN:SA:zone_VAL_DE_LOIRE,1,"VAL DE LOIRE",47.448997,-0.513473,,1,,Europe/Paris,,OAN, +OAN:SA:zone_VAL_DE_MAINE,1,"VAL DE MAINE",47.443027,-0.61288,,1,,Europe/Paris,,OAN, +OAN:SA:zone_VAL_DOR,1,"VAL D'OR",47.484798,-0.584049,,1,,Europe/Paris,,OAN, +OAN:SA:zone_VANDELLANT,1,"VANDELLANT",47.478243,-0.520805,,1,,Europe/Paris,,OAN, +OAN:SA:zone_VARENNES,1,"VARENNES",47.566008,-0.504505,,1,,Europe/Paris,,OAN, +OAN:SA:zone_VAUBAN,1,"VAUBAN",47.460244,-0.560753,,1,,Europe/Paris,,OAN, +OAN:SA:zone_VAUGAREAU,1,"VAUGAREAU",47.483646,-0.526731,,1,,Europe/Paris,,OAN, +OAN:SA:zone_VAURAGERE,1,"VAURAGERE",47.472965,-0.635422,,1,,Europe/Paris,,OAN, +OAN:SA:zone_VEILLEROT,1,"VEILLEROT",47.52131,-0.4722,,1,,Europe/Paris,,OAN, +OAN:SA:zone_VENAISERIE,1,"VENAISERIE",47.471027,-0.489641,,1,,Europe/Paris,,OAN, +OAN:SA:zone_VENAISERIE_COLLEGE,1,"VENAISERIE COLLEGE",47.471672,-0.486163,,1,,Europe/Paris,,OAN, +OAN:SA:zone_VERDUN,1,"VERDUN",47.468287,-0.493012,,1,,Europe/Paris,,OAN, +OAN:SA:zone_VERIGNE,1,"VERIGNE",47.588282,-0.493522,,1,,Europe/Paris,,OAN, +OAN:SA:zone_VERNEAU,1,"VERNEAU",47.49245,-0.564621,,1,,Europe/Paris,,OAN, +OAN:SA:zone_VERNEAU_AQUAVITA,1,"VERNEAU AQUAVITA",47.493897,-0.56506,,1,,Europe/Paris,,OAN, +OAN:SA:zone_VICTOR_HUGO,1,"VICTOR HUGO",47.528206,-0.469473,,1,,Europe/Paris,,OAN, +OAN:SA:zone_VICTOR_HUGO_MONTREUIL,1,"VICTOR HUGO MONTREUIL",47.528206,-0.611746,,1,,Europe/Paris,,OAN, +OAN:SA:zone_VIEILLE_MAINE,1,"VIEILLE MAINE",47.53002,-0.527759,,1,,Europe/Paris,,OAN, +OAN:SA:zone_VIEUX_PORT,1,"VIEUX PORT",47.57076,-0.49352,,1,,Europe/Paris,,OAN, +OAN:SA:zone_VILLAGE_SANTE,1,"VILLAGE SANTE",47.457401,-0.512072,,1,,Europe/Paris,,OAN, +OAN:SA:zone_VILLECHIEN,1,"VILLECHIEN",47.46328,-0.519537,,1,,Europe/Paris,,OAN, +OAN:SA:zone_VILLESICARD,1,"VILLESICARD",47.452427,-0.538382,,1,,Europe/Paris,,OAN, +OAN:SA:zone_VILLON,1,"VILLON",47.433739,-0.522908,,1,,Europe/Paris,,OAN, +OAN:SA:zone_VIVIERS,1,"VIVIERS",47.451672,-0.535032,,1,,Europe/Paris,,OAN, +OAN:SA:zone_VOLNEY,1,"VOLNEY",47.460627,-0.538056,,1,,Europe/Paris,,OAN, +OAN:SA:zone_VOLTAIRE,1,"VOLTAIRE",47.484813,-0.531092,,1,,Europe/Paris,,OAN, +OAN:SA:zone_V_HUGO_MONTREUIL,1,"V. HUGO MONTREUIL",47.528238,-0.611853,,1,,Europe/Paris,,OAN, +OAN:SA:zone_WALCOURT,1,"WALCOURT",47.463359,-0.485944,,1,,Europe/Paris,,OAN, +OAN:SA:zone_WIGAN,1,"WIGAN",47.459465,-0.608133,,1,,Europe/Paris,,OAN, +OAN:SA:zone_ZI_BEAUCOUZE,1,"ZI BEAUCOUZE",47.460007,-0.6193,,1,,Europe/Paris,,OAN, +OAN:SA:zone_ZI_BRUNELLERIES,1,"ZI BRUNELLERIES",47.435634,-0.616199,,1,,Europe/Paris,,OAN, +OAN:SA:zone_ZI_ECOUFLANT,1,"ZI ECOUFLANT",47.496838,-0.514963,,1,,Europe/Paris,,OAN, +OAN:SA:zone_ZI_EST,1,"ZI EST",47.475233,-0.493786,,1,,Europe/Paris,,OAN, +OAN:SA:zone_ZONE_ARTISANALE,1,"ZONE ARTISANALE",47.592031,-0.592031,,1,,Europe/Paris,,OAN, +OBI:SA:CTP4CHEM_1,1,"4 Chemins",48.405392,-4.477817,,1,,Europe/Paris,,OBI, +OBI:SA:CTP4MOULI_1,1,"4 Moulins",48.38266,-4.512486,,1,,Europe/Paris,,OBI, +OBI:SA:CTP8MAI_2,1,"8 mai 1945",48.413361,-4.475469,,1,,Europe/Paris,,OBI, +OBI:SA:CTPABER_1,1,"Aber-Ildut",48.380985,-4.613691,,1,,Europe/Paris,,OBI, +OBI:SA:CTPAFPA_1,1,"AFPA",48.412582,-4.501556,,1,,Europe/Paris,,OBI, +OBI:SA:CTPAFRANC_1,1,"A.France",48.38372,-4.506041,,1,,Europe/Paris,,OBI, +OBI:SA:CTPAIRPOR,1,"Aéroport",48.442749,-4.419929,,1,,Europe/Paris,,OBI, +OBI:SA:CTPALB1ER_1,1,"Albert 1er",48.397049,-4.487108,,1,,Europe/Paris,,OBI, +OBI:SA:CTPALFOST,1,"Alfost",48.371441,-4.51791,,1,,Europe/Paris,,OBI, +OBI:SA:CTPAMUNDS_2,1,"Amundsen",48.377964,-4.523359,,1,,Europe/Paris,,OBI, +OBI:SA:CTPANJOU_2,1,"Anjou",48.45491,-4.464996,,1,,Europe/Paris,,OBI, +OBI:SA:CTPANNE_2,1,"Anne de Bretagne",48.437187,-4.408332,,1,,Europe/Paris,,OBI, +OBI:SA:CTPARRET_1,1,"Maison d'arrêt",48.420853,-4.477165,,1,,Europe/Paris,,OBI, +OBI:SA:CTPARTILL_2,1,"Quai des Subsistances",48.379234,-4.497352,,1,,Europe/Paris,,OBI, +OBI:SA:CTPATELIERS,1,"Ateliers",48.388313,-4.497362,,1,,Europe/Paris,,OBI, +OBI:SA:CTPAUMALE_2,1,"Duc d'Aumale",48.401253,-4.506903,,1,,Europe/Paris,,OBI, +OBI:SA:CTPAURIOL_1,1,"Auriol",48.44231,-4.432295,,1,,Europe/Paris,,OBI, +OBI:SA:CTPAWENA_1,1,"Guipavas Awena",48.440479,-4.403117,,1,,Europe/Paris,,OBI, +OBI:SA:CTPA_RONA_1,1,"Amiral Ronarc'h",48.395489,-4.523859,,1,,Europe/Paris,,OBI, +OBI:SA:CTPB,1,"Multiplexe",48.391159,-4.487693,,1,,Europe/Paris,,OBI, +OBI:SA:CTPBACH,1,"Bach",48.394325,-4.529289,,1,,Europe/Paris,,OBI, +OBI:SA:CTPBACHET_2,1,"Poul-ar-Bachet",48.396946,-4.471267,,1,,Europe/Paris,,OBI, +OBI:SA:CTPBARADO_2,1,"Baradozic",48.395214,-4.412801,,1,,Europe/Paris,,OBI, +OBI:SA:CTPBARATI_2,1,"Baratier",48.401424,-4.509365,,1,,Europe/Paris,,OBI, +OBI:SA:CTPBARBE_2,1,"Ste Barbe",48.400944,-4.419261,,1,,Europe/Paris,,OBI, +OBI:SA:CTPBASSAN_2,1,"Fou de Bassan",48.443779,-4.470706,,1,,Europe/Paris,,OBI, +OBI:SA:CTPBEAUMA_1,1,"Beaumanoir",48.386425,-4.516002,,1,,Europe/Paris,,OBI, +OBI:SA:CTPBECQUE_1,1,"Becquerel",48.431541,-4.448973,,1,,Europe/Paris,,OBI, +OBI:SA:CTPBERGOT_1,1,"Bergot",48.407158,-4.509629,,1,,Europe/Paris,,OBI, +OBI:SA:CTPBERLIO_2,1,"Berlioz",48.413078,-4.497772,,1,,Europe/Paris,,OBI, +OBI:SA:CTPBERNAR_1,1,"Bernard",48.398113,-4.446823,,1,,Europe/Paris,,OBI, +OBI:SA:CTPBERRY_1,1,"Berry",48.404045,-4.515808,,1,,Europe/Paris,,OBI, +OBI:SA:CTPBEUZIT_2,1,"Beuzit",48.421879,-4.519383,,1,,Europe/Paris,,OBI, +OBI:SA:CTPBLEUET_1,1,"Bleuets",48.374252,-4.584278,,1,,Europe/Paris,,OBI, +OBI:SA:CTPBLOGNE_2,1,"Boulogne",48.395374,-4.493909,,1,,Europe/Paris,,OBI, +OBI:SA:CTPBLUM_2,1,"Blum",48.407978,-4.485216,,1,,Europe/Paris,,OBI, +OBI:SA:CTPBODONN_1,1,"Bodonn",48.370586,-4.379052,,1,,Europe/Paris,,OBI, +OBI:SA:CTPBOHARS_1,1,"Bohars bourg",48.427929,-4.515107,,1,,Europe/Paris,,OBI, +OBI:SA:CTPBOHARS_2,1,"Bohars Bourg",48.428745,-4.515675,,1,,Europe/Paris,,OBI, +OBI:SA:CTPBOIS_2,1,"Le Bois",48.45063,-4.459053,,1,,Europe/Paris,,OBI, +OBI:SA:CTPBORDE_2,1,"Bordenave",48.392586,-4.501472,,1,,Europe/Paris,,OBI, +OBI:SA:CTPBOTREL_1,1,"Botrel",48.379726,-4.375446,,1,,Europe/Paris,,OBI, +OBI:SA:CTPBOT_1,1,"Rue du Bot",48.405212,-4.457518,,1,,Europe/Paris,,OBI, +OBI:SA:CTPBOUDOT_1,1,"Baudot",48.423691,-4.489847,,1,,Europe/Paris,,OBI, +OBI:SA:CTPBOUGUE_2,1,"Bouguen",48.40044,-4.498936,,1,,Europe/Paris,,OBI, +OBI:SA:CTPBOURAY_1,1,"Bourayne",48.381657,-4.526946,,1,,Europe/Paris,,OBI, +OBI:SA:CTPBOURBO_2,1,"Bourbonnais",48.406834,-4.512717,,1,,Europe/Paris,,OBI, +OBI:SA:CTPBRAILL_1,1,"Braille",48.403515,-4.471744,,1,,Europe/Paris,,OBI, +OBI:SA:CTPBRANLY_2,1,"Branly",48.365788,-4.589184,,1,,Europe/Paris,,OBI, +OBI:SA:CTPBRASSE_1,1,"Brasserie",48.417568,-4.494482,,1,,Europe/Paris,,OBI, +OBI:SA:CTPBRAS_2,1,"Le Bras",48.450516,-4.461995,,1,,Europe/Paris,,OBI, +OBI:SA:CTPBRAZZA_2,1,"Brazza",48.398174,-4.461575,,1,,Europe/Paris,,OBI, +OBI:SA:CTPBRAZ_1,1,"Lannével-Braz",48.373798,-4.576185,,1,,Europe/Paris,,OBI, +OBI:SA:CTPBRECON_2,1,"Brecon",48.445404,-4.466619,,1,,Europe/Paris,,OBI, +OBI:SA:CTPBRETAG_2,1,"Place Bretagne",48.41309,-4.49296,,1,,Europe/Paris,,OBI, +OBI:SA:CTPBRUYER_1,1,"Bruyère",48.438145,-4.470093,,1,,Europe/Paris,,OBI, +OBI:SA:CTPBSSAIS_2,1,"Broussais",48.422562,-4.494079,,1,,Europe/Paris,,OBI, +OBI:SA:CTPCAF_2,1,"C A F",48.392033,-4.490802,,1,,Europe/Paris,,OBI, +OBI:SA:CTPCAMELI_2,1,"Camélias",48.428562,-4.563344,,1,,Europe/Paris,,OBI, +OBI:SA:CTPCAMFR_2,1,"Camfrout",48.397636,-4.392423,,1,,Europe/Paris,,OBI, +OBI:SA:CTPCAPUCI_2,1,"Capucines",48.453064,-4.458624,,1,,Europe/Paris,,OBI, +OBI:SA:CTPCARENE_1,1,"La Carène",48.384552,-4.481587,,1,,Europe/Paris,,OBI, +OBI:SA:CTPCASA_1,1,"Casabianca",48.373512,-4.536266,,1,,Europe/Paris,,OBI, +OBI:SA:CTPCASTEL_1,1,"Castelmein",48.413227,-4.541293,,1,,Europe/Paris,,OBI, +OBI:SA:CTPCAST_D_2,1,"Castel-an-Daol",48.38271,-4.521706,,1,,Europe/Paris,,OBI, +OBI:SA:CTPCESKRX_2,1,"Keranroux",48.381599,-4.540406,,1,,Europe/Paris,,OBI, +OBI:SA:CTPCHAMP_1,1,"Champagne",48.438229,-4.387082,,1,,Europe/Paris,,OBI, +OBI:SA:CTPCHAPAL_2,1,"Chapalain",48.415596,-4.488313,,1,,Europe/Paris,,OBI, +OBI:SA:CTPCHAPEL_2,1,"Chapelle",48.425468,-4.516723,,1,,Europe/Paris,,OBI, +OBI:SA:CTPCHARCO_1,1,"Charcot",48.410328,-4.400199,,1,,Europe/Paris,,OBI, +OBI:SA:CTPCHARP_4,1,"Charpentier",48.407875,-4.501617,,1,,Europe/Paris,,OBI, +OBI:SA:CTPCHATAI_1,1,"Châtaigniers",48.43401,-4.565529,,1,,Europe/Paris,,OBI, +OBI:SA:CTPCHATEL_1,1,"Chatellier",48.409653,-4.501606,,1,,Europe/Paris,,OBI, +OBI:SA:CTPCHAT_TA,1,"Château",48.385448,-4.492435,,1,,Europe/Paris,,OBI, +OBI:SA:CTPCHDEAU_1,1,"Château d'eau",48.37492,-4.556758,,1,,Europe/Paris,,OBI, +OBI:SA:CTPCHFOIR_1,1,"Champ de Foire",48.373871,-4.36803,,1,,Europe/Paris,,OBI, +OBI:SA:CTPCHOISE_2,1,"Choiseul",48.406746,-4.476408,,1,,Europe/Paris,,OBI, +OBI:SA:CTPCHRIST_1,1,"St Christophe",48.411816,-4.48645,,1,,Europe/Paris,,OBI, +OBI:SA:CTPCHR_A1,1,"Hopital Cavale 2",48.400761,-4.529444,,1,,Europe/Paris,,OBI, +OBI:SA:CTPCHR_R2,1,"Hôpital Cavale 1",48.401489,-4.52622,,1,,Europe/Paris,,OBI, +OBI:SA:CTPCIN_2,1,"Ecole Navale",48.374966,-4.526067,,1,,Europe/Paris,,OBI, +OBI:SA:CTPCKERA_1,1,"Cl.Keraudren",48.429317,-4.476861,,1,,Europe/Paris,,OBI, +OBI:SA:CTPCKERA_2,1,"Clinique Keraudren",48.429932,-4.477144,,1,,Europe/Paris,,OBI, +OBI:SA:CTPCLAUZ_1,1,"Clauzel",48.401058,-4.512705,,1,,Europe/Paris,,OBI, +OBI:SA:CTPCLOITR_2,1,"Cloître",48.377895,-4.615773,,1,,Europe/Paris,,OBI, +OBI:SA:CTPCOATAU_1,1,"Coataudon",48.414333,-4.440337,,1,,Europe/Paris,,OBI, +OBI:SA:CTPCOATU_2,1,"Coatuelen",48.374031,-4.567613,,1,,Europe/Paris,,OBI, +OBI:SA:CTPCOATY_1,1,"Coat ty Ogant",48.418102,-4.548524,,1,,Europe/Paris,,OBI, +OBI:SA:CTPCOAT_J_2,1,"Coat-Jestin",48.427429,-4.413416,,1,,Europe/Paris,,OBI, +OBI:SA:CTPCOAT_M_1,1,"Coat Mez",48.420891,-4.554085,,1,,Europe/Paris,,OBI, +OBI:SA:CTPCOAT_T_4,1,"Coat Tan",48.386055,-4.534746,,1,,Europe/Paris,,OBI, +OBI:SA:CTPCOCT_2,1,"Cocteau",48.373894,-4.540515,,1,,Europe/Paris,,OBI, +OBI:SA:CTPCOLL_VAL,1,"Camille Vallaux",48.402847,-4.398813,,1,,Europe/Paris,,OBI, +OBI:SA:CTPCOMTE_1,1,"Comte",48.377949,-4.536796,,1,,Europe/Paris,,OBI, +OBI:SA:CTPCOPPIN_2,1,"Coppin",48.39399,-4.494392,,1,,Europe/Paris,,OBI, +OBI:SA:CTPCOQ_HA_2,1,"Coq Hardi",48.405663,-4.462564,,1,,Europe/Paris,,OBI, +OBI:SA:CTPCORIO_1,1,"Coriolis",48.42733,-4.446839,,1,,Europe/Paris,,OBI, +OBI:SA:CTPCORMO_1,1,"Cormorans",48.404099,-4.387171,,1,,Europe/Paris,,OBI, +OBI:SA:CTPCOSMAO_1,1,"Cosmao Prétôt",48.382923,-4.517236,,1,,Europe/Paris,,OBI, +OBI:SA:CTPCOSMAO_2,1,"Cosmao Prêtôt",48.382832,-4.516804,,1,,Europe/Paris,,OBI, +OBI:SA:CTPCOSQUE_1,1,"Cosquer",48.36631,-4.547522,,1,,Europe/Paris,,OBI, +OBI:SA:CTPCOULOM_1,1,"Coulomb",48.410149,-4.462484,,1,,Europe/Paris,,OBI, +OBI:SA:CTPCOUPER_2,1,"Couperin",48.412163,-4.499726,,1,,Europe/Paris,,OBI, +OBI:SA:CTPCPCIN_1,1,"Les Capucins",48.391823,-4.504555,,1,,Europe/Paris,,OBI, +OBI:SA:CTPCRANN_2,1,"Le Crann",48.455643,-4.472106,,1,,Europe/Paris,,OBI, +OBI:SA:CTPCREACH_1,1,"Pen-ar-Créac'h",48.403847,-4.465228,,1,,Europe/Paris,,OBI, +OBI:SA:CTPCROASB_1,1,"Croas-ar-Bis",48.381599,-4.357427,,1,,Europe/Paris,,OBI, +OBI:SA:CTPCROAS_1,1,"Croas ar Go",48.362545,-4.583729,,1,,Europe/Paris,,OBI, +OBI:SA:CTPCRUG_1,1,"Cruguel",48.372944,-4.538751,,1,,Europe/Paris,,OBI, +OBI:SA:CTPCUIRA_2,1,"Cuirassé",48.404114,-4.49695,,1,,Europe/Paris,,OBI, +OBI:SA:CTPCURIE_1,1,"Curie",48.431973,-4.456812,,1,,Europe/Paris,,OBI, +OBI:SA:CTPCVILLE,1,"C ville pour navettes",48.391479,-4.485432,,1,,Europe/Paris,,OBI, +OBI:SA:CTPCX_RGE_1,1,"Croix Rouge",48.407623,-4.48883,,1,,Europe/Paris,,OBI, +OBI:SA:CTPC_BELL_2,1,"Créac'h Bellec",48.425026,-4.52636,,1,,Europe/Paris,,OBI, +OBI:SA:CTPC_CRO_2,1,"Chapelle Croix",48.411358,-4.373631,,1,,Europe/Paris,,OBI, +OBI:SA:CTPC_NEVZ_2,1,"Castel Nevez",48.384937,-4.602279,,1,,Europe/Paris,,OBI, +OBI:SA:CTPC_RES_2,1,"Cent. Réseaux",48.390671,-4.497968,,1,,Europe/Paris,,OBI, +OBI:SA:CTPC_SALI_1,1,"Croas Saliou",48.381279,-4.59865,,1,,Europe/Paris,,OBI, +OBI:SA:CTPDAGRE_2,1,"Daguerre",48.430355,-4.462649,,1,,Europe/Paris,,OBI, +OBI:SA:CTPDANTON_2,1,"Danton",48.407711,-4.402287,,1,,Europe/Paris,,OBI, +OBI:SA:CTPDAUPHI_2,1,"Dauphiné",48.40522,-4.515636,,1,,Europe/Paris,,OBI, +OBI:SA:CTPDAURAT_2,1,"Daurat",48.425297,-4.553447,,1,,Europe/Paris,,OBI, +OBI:SA:CTPDEGAUL_2,1,"De Gaulle",48.447262,-4.464297,,1,,Europe/Paris,,OBI, +OBI:SA:CTPDELACR_1,1,"Delacroix",48.408798,-4.456507,,1,,Europe/Paris,,OBI, +OBI:SA:CTPDEMY_1,1,"Demy",48.392986,-4.529154,,1,,Europe/Paris,,OBI, +OBI:SA:CTPDEREDE_1,1,"Dérédec",48.378826,-4.379218,,1,,Europe/Paris,,OBI, +OBI:SA:CTPDESCHART,1,"Deschart",48.41695,-4.492828,,1,,Europe/Paris,,OBI, +OBI:SA:CTPDE_RO_2,1,"De Rochon",48.36105,-4.564936,,1,,Europe/Paris,,OBI, +OBI:SA:CTPDIGUE_1,1,"La Digue",48.39732,-4.515074,,1,,Europe/Paris,,OBI, +OBI:SA:CTPDIREC_2,1,"Bassin 3",48.387764,-4.496897,,1,,Europe/Paris,,OBI, +OBI:SA:CTPDIWAN_2,1,"Diwan",48.398037,-4.411242,,1,,Europe/Paris,,OBI, +OBI:SA:CTPDIXMUD_2,1,"Dixmude",48.39896,-4.459347,,1,,Europe/Paris,,OBI, +OBI:SA:CTPDJACQ_2,1,"Dourjacq",48.407856,-4.471416,,1,,Europe/Paris,,OBI, +OBI:SA:CTPDONNAR_1,1,"Donnart",48.400013,-4.485775,,1,,Europe/Paris,,OBI, +OBI:SA:CTPDOURIC_1,1,"Douric",48.397968,-4.465722,,1,,Europe/Paris,,OBI, +OBI:SA:CTPDOUVEZ_2,1,"Le Douvez",48.41468,-4.349458,,1,,Europe/Paris,,OBI, +OBI:SA:CTPDROGOU_2,1,"Drogou",48.404949,-4.494159,,1,,Europe/Paris,,OBI, +OBI:SA:CTPDUNANT_2,1,"Dunant",48.42091,-4.493645,,1,,Europe/Paris,,OBI, +OBI:SA:CTPDUPUY_TA,1,"Dupuy de Lôme",48.390553,-4.510202,,1,,Europe/Paris,,OBI, +OBI:SA:CTPDUPUY_TR,1,"Dupuy de Lome",48.390644,-4.509876,,1,,Europe/Paris,,OBI, +OBI:SA:CTPD_BIAN_1,1,"Dour-Bian",48.392376,-4.458341,,1,,Europe/Paris,,OBI, +OBI:SA:CTPEAU_B_TA,1,"Eau Blanche",48.416862,-4.459861,,1,,Europe/Paris,,OBI, +OBI:SA:CTPECNA_1,1,"Ecole Navale CIN",48.375809,-4.525988,,1,,Europe/Paris,,OBI, +OBI:SA:CTPECOLES_1,1,"Ecoles",48.360859,-4.567565,,1,,Europe/Paris,,OBI, +OBI:SA:CTPENCLOS_2,1,"Enclos",48.369221,-4.588488,,1,,Europe/Paris,,OBI, +OBI:SA:CTPENTREE_D,1,"Dépot",48.422417,-4.456816,,1,,Europe/Paris,,OBI, +OBI:SA:CTPEPI_2,1,"SLM",48.372635,-4.512147,,1,,Europe/Paris,,OBI, +OBI:SA:CTPEROUSS_2,1,"Emile Rousse",48.38633,-4.528495,,1,,Europe/Paris,,OBI, +OBI:SA:CTPESNLE,1,"ESNLE",48.375988,-4.51932,,1,,Europe/Paris,,OBI, +OBI:SA:CTPESTREE_1,1,"D'Estrées",48.394814,-4.462222,,1,,Europe/Paris,,OBI, +OBI:SA:CTPETANG1,1,"Etang",48.410358,-4.520865,,1,,Europe/Paris,,OBI, +OBI:SA:CTPEUROP_TA,1,"Europe",48.411331,-4.471123,,1,,Europe/Paris,,OBI, +OBI:SA:CTPE_COM_2,1,"Ecole Commerce",48.406902,-4.52174,,1,,Europe/Paris,,OBI, +OBI:SA:CTPFARAD_1,1,"Faraday",48.360905,-4.57999,,1,,Europe/Paris,,OBI, +OBI:SA:CTPFFI_1,1,"Place des FFI",48.41534,-4.491642,,1,,Europe/Paris,,OBI, +OBI:SA:CTPFILLIG_1,1,"Filliger",48.375637,-4.379878,,1,,Europe/Paris,,OBI, +OBI:SA:CTPFLIBRE_1,1,"Français Libres",48.384258,-4.493092,,1,,Europe/Paris,,OBI, +OBI:SA:CTPFLLERE_1,1,"Feuillère",48.391529,-4.532363,,1,,Europe/Paris,,OBI, +OBI:SA:CTPFLMING_1,1,"Fleming",48.41032,-4.394356,,1,,Europe/Paris,,OBI, +OBI:SA:CTPFLOCH_1,1,"Floch",48.401173,-4.454512,,1,,Europe/Paris,,OBI, +OBI:SA:CTPFLOTI_2,1,"Gymnase",48.370659,-4.515369,,1,,Europe/Paris,,OBI, +OBI:SA:CTPFMARGOT,1,"College Fontaine Margot",48.382965,-4.540396,,1,,Europe/Paris,,OBI, +OBI:SA:CTPFOCH_1,1,"Foch",48.39669,-4.488769,,1,,Europe/Paris,,OBI, +OBI:SA:CTPFONT_B_1,1,"Fontaine Blanche",48.370911,-4.363736,,1,,Europe/Paris,,OBI, +OBI:SA:CTPFOREST_1,1,"Forest",48.432022,-4.461307,,1,,Europe/Paris,,OBI, +OBI:SA:CTPFORES_2,1,"Forestou",48.390392,-4.468326,,1,,Europe/Paris,,OBI, +OBI:SA:CTPFORMES_1,1,"Formes",48.385857,-4.475593,,1,,Europe/Paris,,OBI, +OBI:SA:CTPFORTIN_2,1,"Fortin",48.433483,-4.510059,,1,,Europe/Paris,,OBI, +OBI:SA:CTPFOURN_1,1,"Fourneuf",48.441399,-4.451435,,1,,Europe/Paris,,OBI, +OBI:SA:CTPFRANKL_2,1,"Franklin",48.408073,-4.497739,,1,,Europe/Paris,,OBI, +OBI:SA:CTPFRENES_2,1,"Frênes",48.456306,-4.469099,,1,,Europe/Paris,,OBI, +OBI:SA:CTPFRESN_1,1,"Fresnel",48.428822,-4.448362,,1,,Europe/Paris,,OBI, +OBI:SA:CTPFROUT_1,1,"Froutven",48.415688,-4.434806,,1,,Europe/Paris,,OBI, +OBI:SA:CTPFRYSS_1,1,"Freyssinet",48.427395,-4.57058,,1,,Europe/Paris,,OBI, +OBI:SA:CTPFUSILL_2,1,"Place des Fusillés",48.450676,-4.466086,,1,,Europe/Paris,,OBI, +OBI:SA:CTPF_ESPE_2,1,"Fr. d' Espérey",48.382542,-4.50861,,1,,Europe/Paris,,OBI, +OBI:SA:CTPGAMBET_2,1,"Gambetta-Gare",48.388344,-4.482055,,1,,Europe/Paris,,OBI, +OBI:SA:CTPGARE_2,1,"Gare",48.388103,-4.480601,,1,,Europe/Paris,,OBI, +OBI:SA:CTPGASCO_1,1,"Gascogne",48.406528,-4.517503,,1,,Europe/Paris,,OBI, +OBI:SA:CTPGERGOT_1,1,"Gergotich",48.376637,-4.544873,,1,,Europe/Paris,,OBI, +OBI:SA:CTPGILARD_2,1,"Colas",48.38504,-4.34932,,1,,Europe/Paris,,OBI, +OBI:SA:CTPGILOUX_2,1,"Giloux",48.415859,-4.486884,,1,,Europe/Paris,,OBI, +OBI:SA:CTPGLEUZ_2,1,"Kergleuz",48.412182,-4.365008,,1,,Europe/Paris,,OBI, +OBI:SA:CTPGNEMER_2,1,"Guynemer",48.394787,-4.463681,,1,,Europe/Paris,,OBI, +OBI:SA:CTPGNENO_2,1,"Guéhenno",48.410648,-4.398058,,1,,Europe/Paris,,OBI, +OBI:SA:CTPGOFFIC_2,1,"Le Goffic",48.39743,-4.444242,,1,,Europe/Paris,,OBI, +OBI:SA:CTPGONIO_1,1,"Gonio",48.366673,-4.59132,,1,,Europe/Paris,,OBI, +OBI:SA:CTPGORGEU_2,1,"Le Gorgeu",48.404011,-4.505394,,1,,Europe/Paris,,OBI, +OBI:SA:CTPGOUEZ_2,1,"Gouez",48.411037,-4.526676,,1,,Europe/Paris,,OBI, +OBI:SA:CTPGRECO_2,1,"Le Greco",48.395477,-4.526378,,1,,Europe/Paris,,OBI, +OBI:SA:CTPGRETRY_1,1,"Grétry",48.409328,-4.496819,,1,,Europe/Paris,,OBI, +OBI:SA:CTPGRNIER_2,1,"Garnier",48.399803,-4.511781,,1,,Europe/Paris,,OBI, +OBI:SA:CTPGROIX_1,1,"Groix",48.407177,-4.504128,,1,,Europe/Paris,,OBI, +OBI:SA:CTPGUELM_2,1,"Guelmeur Eglise",48.391998,-4.463995,,1,,Europe/Paris,,OBI, +OBI:SA:CTPGUELM_4,1,"Guelmeur",48.393826,-4.459505,,1,,Europe/Paris,,OBI, +OBI:SA:CTPGUEPRA_2,1,"Guépratte",48.457127,-4.465978,,1,,Europe/Paris,,OBI, +OBI:SA:CTPGUIL_E_2,1,"Guilers Eglise",48.425148,-4.558417,,1,,Europe/Paris,,OBI, +OBI:SA:CTPGUIL_M_3,1,"Guilers Mairie",48.423553,-4.558668,,1,,Europe/Paris,,OBI, +OBI:SA:CTPGUIVAR_2,1,"Guivarch",48.377674,-4.364265,,1,,Europe/Paris,,OBI, +OBI:SA:CTPG_KERI_1,1,"Grand Kerizac",48.426659,-4.499401,,1,,Europe/Paris,,OBI, +OBI:SA:CTPG_RIV_1,1,"Grande Rivière",48.375984,-4.508252,,1,,Europe/Paris,,OBI, +OBI:SA:CTPG_RIV_2,1,"Grande Rivière",48.374111,-4.513777,,1,,Europe/Paris,,OBI, +OBI:SA:CTPH,1,"Liberté Place",48.390869,-4.486775,,1,,Europe/Paris,,OBI, +OBI:SA:CTPHARTEL_2,1,"Harteloire",48.392868,-4.491034,,1,,Europe/Paris,,OBI, +OBI:SA:CTPHDEVIL_1,1,"Hôtel de Ville",48.392277,-4.484736,,1,,Europe/Paris,,OBI, +OBI:SA:CTPHERBOT_2,1,"St-Herbot",48.435093,-4.400604,,1,,Europe/Paris,,OBI, +OBI:SA:CTPHOCHE_2,1,"Hoche",48.404072,-4.475395,,1,,Europe/Paris,,OBI, +OBI:SA:CTPHOP_1,1,"Hôpital Tromeur",48.435738,-4.505121,,1,,Europe/Paris,,OBI, +OBI:SA:CTPHYDRO_2,1,"Hydro",48.378754,-4.499254,,1,,Europe/Paris,,OBI, +OBI:SA:CTPILES_1,1,"Les îles",48.382607,-4.486982,,1,,Europe/Paris,,OBI, +OBI:SA:CTPIROISE_1,1,"Clinique Iroise",48.435478,-4.502781,,1,,Europe/Paris,,OBI, +OBI:SA:CTPISEN_2,1,"ISEN",48.406685,-4.495674,,1,,Europe/Paris,,OBI, +OBI:SA:CTPJANSEN_1,1,"Jansen",48.42852,-4.442316,,1,,Europe/Paris,,OBI, +OBI:SA:CTPJARDIN_1,1,"Jardin Botanique",48.401081,-4.446206,,1,,Europe/Paris,,OBI, +OBI:SA:CTPJAVOUH_1,1,"Javouhey",48.383236,-4.503675,,1,,Europe/Paris,,OBI, +OBI:SA:CTPJEANMOUL,1,"Jean Moulin",48.385597,-4.493808,,1,,Europe/Paris,,OBI, +OBI:SA:CTPJEZEQL_2,1,"Jézéquel",48.404224,-4.393164,,1,,Europe/Paris,,OBI, +OBI:SA:CTPJJAUR_TA,1,"Jean Jaurès",48.392395,-4.482679,,1,,Europe/Paris,,OBI, +OBI:SA:CTPJ_BART_2,1,"Jean Bart",48.382729,-4.496997,,1,,Europe/Paris,,OBI, +OBI:SA:CTPJ_LESV_2,1,"Jules Lesven",48.409279,-4.481754,,1,,Europe/Paris,,OBI, +OBI:SA:CTPKANT_1,1,"Kant",48.394806,-4.519623,,1,,Europe/Paris,,OBI, +OBI:SA:CTPKAP_H_1,1,"Kap Huella",48.38446,-4.389926,,1,,Europe/Paris,,OBI, +OBI:SA:CTPKASTL_1,1,"Kastler",48.430008,-4.442211,,1,,Europe/Paris,,OBI, +OBI:SA:CTPKCAO_1,1,"Kerscao",48.405922,-4.408738,,1,,Europe/Paris,,OBI, +OBI:SA:CTPKENNED_1,1,"Kennedy Gare",48.38747,-4.482618,,1,,Europe/Paris,,OBI, +OBI:SA:CTPKERAFL_2,1,"Kerafloch",48.41386,-4.354733,,1,,Europe/Paris,,OBI, +OBI:SA:CTPKERAF_1,1,"Kerafur",48.43985,-4.392973,,1,,Europe/Paris,,OBI, +OBI:SA:CTPKERALE_1,1,"Keraleunoc",48.449726,-4.455178,,1,,Europe/Paris,,OBI, +OBI:SA:CTPKERALL_2,1,"Keralloche",48.407333,-4.490405,,1,,Europe/Paris,,OBI, +OBI:SA:CTPKERAL_2,1,"Kerallan",48.379036,-4.589193,,1,,Europe/Paris,,OBI, +OBI:SA:CTPKERAMA_1,1,"Keramazé",48.372849,-4.579459,,1,,Europe/Paris,,OBI, +OBI:SA:CTPKERANG_2,1,"Kerangoff",48.381214,-4.509859,,1,,Europe/Paris,,OBI, +OBI:SA:CTPKERANNA,1,"Keranna",48.436371,-4.409488,,1,,Europe/Paris,,OBI, +OBI:SA:CTPKERAUDRY,1,"Keraudry",48.434662,-4.360547,,1,,Europe/Paris,,OBI, +OBI:SA:CTPKERAV_1,1,"Keravel",48.377151,-4.371688,,1,,Europe/Paris,,OBI, +OBI:SA:CTPKERBER_1,1,"Kerbernard",48.407612,-4.459551,,1,,Europe/Paris,,OBI, +OBI:SA:CTPKERBON_1,1,"Kerbonne",48.382259,-4.51532,,1,,Europe/Paris,,OBI, +OBI:SA:CTPKERBR_1,1,"Kerbrat",48.367828,-4.366035,,1,,Europe/Paris,,OBI, +OBI:SA:CTPKERB_E_2,1,"Kerbonne Eglise",48.380543,-4.515704,,1,,Europe/Paris,,OBI, +OBI:SA:CTPKERCAS_1,1,"Kercastrec",48.421341,-4.497688,,1,,Europe/Paris,,OBI, +OBI:SA:CTPKERDAN_2,1,"Kerdangui",48.375587,-4.367017,,1,,Europe/Paris,,OBI, +OBI:SA:CTPKERER_1,1,"Kerervern",48.425732,-4.441547,,1,,Europe/Paris,,OBI, +OBI:SA:CTPKERFEU_2,1,"Kerfeunteun",48.388557,-4.528395,,1,,Europe/Paris,,OBI, +OBI:SA:CTPKERGA_1,1,"Kergaradec",48.425198,-4.46713,,1,,Europe/Paris,,OBI, +OBI:SA:CTPKERGOM_2,1,"Kergompez",48.43671,-4.383482,,1,,Europe/Paris,,OBI, +OBI:SA:CTPKERGO_1,1,"Kergonan",48.422729,-4.457331,,1,,Europe/Paris,,OBI, +OBI:SA:CTPKERGRO_1,1,"Kergroas",48.43998,-4.475052,,1,,Europe/Paris,,OBI, +OBI:SA:CTPKERHAL_1,1,"Kerhallet",48.402935,-4.50837,,1,,Europe/Paris,,OBI, +OBI:SA:CTPKERHOU_2,1,"Kerhourlo",48.366955,-4.586346,,1,,Europe/Paris,,OBI, +OBI:SA:CTPKERIGL_1,1,"Keriguel",48.402821,-4.398797,,1,,Europe/Paris,,OBI, +OBI:SA:CTPKERIGO_2,1,"Kerigonan",48.397369,-4.482976,,1,,Europe/Paris,,OBI, +OBI:SA:CTPKERINA_2,1,"Kerinaouen",48.436508,-4.466557,,1,,Europe/Paris,,OBI, +OBI:SA:CTPKERION_1,1,"Kerionoc",48.42432,-4.560884,,1,,Europe/Paris,,OBI, +OBI:SA:CTPKERISB_1,1,"Kérisbian",48.398746,-4.448843,,1,,Europe/Paris,,OBI, +OBI:SA:CTPKERJAN_1,1,"Kerjean",48.398773,-4.405145,,1,,Europe/Paris,,OBI, +OBI:SA:CTPKERJA_1,1,"Kerjaouen",48.429073,-4.410674,,1,,Europe/Paris,,OBI, +OBI:SA:CTPKERLA_TA,1,"Kerlaurent",48.418633,-4.453409,,1,,Europe/Paris,,OBI, +OBI:SA:CTPKERLOIS1,1,"Kerloïs",48.441986,-4.465806,,1,,Europe/Paris,,OBI, +OBI:SA:CTPKERLOIS4,1,"Kerloïs scolaire",48.441967,-4.466252,,1,,Europe/Paris,,OBI, +OBI:SA:CTPKERLOIS5,1,"Kerlois Botred",48.441505,-4.46569,,1,,Europe/Paris,,OBI, +OBI:SA:CTPKERLO_A1,1,"Kerlois",48.441269,-4.465063,,1,,Europe/Paris,,OBI, +OBI:SA:CTPKERMA_4,1,"Kermaria",48.417522,-4.476892,,1,,Europe/Paris,,OBI, +OBI:SA:CTPKEROUM_1,1,"Keroumen",48.41227,-4.394499,,1,,Europe/Paris,,OBI, +OBI:SA:CTPKEROU_1,1,"Kerouriat",48.428036,-4.551964,,1,,Europe/Paris,,OBI, +OBI:SA:CTPKERRA_2,1,"Kerrarouz",48.373707,-4.594352,,1,,Europe/Paris,,OBI, +OBI:SA:CTPKERVAL_1,1,"Kervallon",48.388542,-4.516524,,1,,Europe/Paris,,OBI, +OBI:SA:CTPKERVAO_2,1,"Kervao",48.423061,-4.504326,,1,,Europe/Paris,,OBI, +OBI:SA:CTPKERVEN_2,1,"Petit Kerven",48.43314,-4.500115,,1,,Europe/Paris,,OBI, +OBI:SA:CTPKERVIL_2,1,"Kervillerm",48.413799,-4.444741,,1,,Europe/Paris,,OBI, +OBI:SA:CTPKERZES_1,1,"Kerzespez",48.432674,-4.559792,,1,,Europe/Paris,,OBI, +OBI:SA:CTPKERZUD_1,1,"Kerzudal",48.380894,-4.531317,,1,,Europe/Paris,,OBI, +OBI:SA:CTPKERZU_2,1,"Kerzu",48.410038,-4.476295,,1,,Europe/Paris,,OBI, +OBI:SA:CTPKGLEUZ_3,1,"Kermengleuz",48.424625,-4.564857,,1,,Europe/Paris,,OBI, +OBI:SA:CTPKGNAN_1,1,"Kergonan",48.411274,-4.456964,,1,,Europe/Paris,,OBI, +OBI:SA:CTPKGOAT_2,1,"Kergoat",48.401108,-4.509662,,1,,Europe/Paris,,OBI, +OBI:SA:CTPKGOUYA_2,1,"Kerargaouyat",48.375679,-4.529615,,1,,Europe/Paris,,OBI, +OBI:SA:CTPKGUEN_2,1,"Kerguen",48.424694,-4.459702,,1,,Europe/Paris,,OBI, +OBI:SA:CTPKGUILO_1,1,"Bohars-Kerguillo",48.418484,-4.523561,,1,,Europe/Paris,,OBI, +OBI:SA:CTPKHN_B_2,1,"Kerhuon Bourg",48.407963,-4.398932,,1,,Europe/Paris,,OBI, +OBI:SA:CTPKHN_M_1,1,"Kerhuon Mairie",48.407597,-4.396025,,1,,Europe/Paris,,OBI, +OBI:SA:CTPKILRUS_1,1,"Kilrush",48.38179,-4.620695,,1,,Europe/Paris,,OBI, +OBI:SA:CTPKLYCEE_1,1,"Kerichen Lycée",48.405296,-4.484595,,1,,Europe/Paris,,OBI, +OBI:SA:CTPKMADEC_1,1,"Kermadec",48.402187,-4.41705,,1,,Europe/Paris,,OBI, +OBI:SA:CTPKMGUY_1,1,"Kermenguy",48.401184,-4.501066,,1,,Europe/Paris,,OBI, +OBI:SA:CTPKNABAT_2,1,"Kernabat",48.376041,-4.538671,,1,,Europe/Paris,,OBI, +OBI:SA:CTPKNEIS_1,1,"Kerneïs",48.406715,-4.506331,,1,,Europe/Paris,,OBI, +OBI:SA:CTPKNEIS_2,1,"Kernéis",48.40649,-4.50637,,1,,Europe/Paris,,OBI, +OBI:SA:CTPKPLACE_1,1,"Kerinou",48.404099,-4.489575,,1,,Europe/Paris,,OBI, +OBI:SA:CTPKRDREN_1,1,"Keraudren",48.426758,-4.476824,,1,,Europe/Paris,,OBI, +OBI:SA:CTPKROAZKER,1,"Kroaz Kervern",48.387192,-4.350855,,1,,Europe/Paris,,OBI, +OBI:SA:CTPKRQE_1,1,"Kéranquéré",48.379204,-4.530918,,1,,Europe/Paris,,OBI, +OBI:SA:CTPKRUCH_1,1,"Keruchen",48.427925,-4.471756,,1,,Europe/Paris,,OBI, +OBI:SA:CTPKRUHEL_1,1,"Kerhuel",48.4039,-4.411783,,1,,Europe/Paris,,OBI, +OBI:SA:CTPKVAREC_2,1,"Kergavarec",48.409687,-4.356407,,1,,Europe/Paris,,OBI, +OBI:SA:CTPKVENAL_1,1,"Kervenal",48.381947,-4.349899,,1,,Europe/Paris,,OBI, +OBI:SA:CTPK_LESV_1,1,"Kerichen Lesven",48.406078,-4.479059,,1,,Europe/Paris,,OBI, +OBI:SA:CTPLACROS_2,1,"Lacrosse",48.428329,-4.461016,,1,,Europe/Paris,,OBI, +OBI:SA:CTPLAGADER1,1,"Lagadec",48.428463,-4.470227,,1,,Europe/Paris,,OBI, +OBI:SA:CTPLAMB_R2,1,"Lambézellec",48.417191,-4.487112,,1,,Europe/Paris,,OBI, +OBI:SA:CTPLAMOT_1,1,"Lamotte Picquet",48.394852,-4.492648,,1,,Europe/Paris,,OBI, +OBI:SA:CTPLANCEL_1,1,"Lancelot",48.4226,-4.556006,,1,,Europe/Paris,,OBI, +OBI:SA:CTPLANDAI_1,1,"Landais",48.388824,-4.50984,,1,,Europe/Paris,,OBI, +OBI:SA:CTPLANDEL_1,1,"Landelle",48.396225,-4.43964,,1,,Europe/Paris,,OBI, +OBI:SA:CTPLANDRE_1,1,"Landréan",48.378532,-4.618839,,1,,Europe/Paris,,OBI, +OBI:SA:CTPLANGEV_2,1,"Langevin",48.402401,-4.49861,,1,,Europe/Paris,,OBI, +OBI:SA:CTPLANING_1,1,"Lanninguer",48.387245,-4.537369,,1,,Europe/Paris,,OBI, +OBI:SA:CTPLANINO_2,1,"Direction DCNS",48.377678,-4.507539,,1,,Europe/Paris,,OBI, +OBI:SA:CTPLANNOC_1,1,"Lannoc",48.411358,-4.522719,,1,,Europe/Paris,,OBI, +OBI:SA:CTPLANRO_1,1,"Lanroze",48.420063,-4.491094,,1,,Europe/Paris,,OBI, +OBI:SA:CTPLANTEL,1,"Lantel",48.452976,-4.470184,,1,,Europe/Paris,,OBI, +OBI:SA:CTPLAVALL_1,1,"Lavallot",48.420689,-4.425518,,1,,Europe/Paris,,OBI, +OBI:SA:CTPLAVOIS_1,1,"Lavoisier",48.426956,-4.443631,,1,,Europe/Paris,,OBI, +OBI:SA:CTPLEBOT_1,1,"Le Bot Haut",48.401985,-4.459361,,1,,Europe/Paris,,OBI, +OBI:SA:CTPLECOAT_2,1,"Le Coat",48.432095,-4.405369,,1,,Europe/Paris,,OBI, +OBI:SA:CTPLENOBL_1,1,"Le Nobletz",48.416904,-4.485827,,1,,Europe/Paris,,OBI, +OBI:SA:CTPLEREUN_1,1,"Le Reun",48.408604,-4.395653,,1,,Europe/Paris,,OBI, +OBI:SA:CTPLE_PAS_1,1,"Le Passage",48.397877,-4.385204,,1,,Europe/Paris,,OBI, +OBI:SA:CTPLIBE_1,1,"Libération",48.397068,-4.518429,,1,,Europe/Paris,,OBI, +OBI:SA:CTPLIBE_TA,1,"Liberté",48.39032,-4.485145,,1,,Europe/Paris,,OBI, +OBI:SA:CTPLIPPMAN2,1,"Lippman",48.42635,-4.457911,,1,,Europe/Paris,,OBI, +OBI:SA:CTPLOSCOA_1,1,"Loscoat",48.422218,-4.499389,,1,,Europe/Paris,,OBI, +OBI:SA:CTPLOTTI_2,1,"Loti",48.382729,-4.50648,,1,,Europe/Paris,,OBI, +OBI:SA:CTPLOURCH_2,1,"Lourc'h",48.379639,-4.618457,,1,,Europe/Paris,,OBI, +OBI:SA:CTPLTEY_2,1,"Lyautey",48.398506,-4.465372,,1,,Europe/Paris,,OBI, +OBI:SA:CTPLUSSAC_2,1,"Gay Lussac",48.40749,-4.494898,,1,,Europe/Paris,,OBI, +OBI:SA:CTPL_R,1,"Hôpital Morvan",48.392773,-4.487837,,1,,Europe/Paris,,OBI, +OBI:SA:CTPM,1,"Liberté Morvan",48.391399,-4.486628,,1,,Europe/Paris,,OBI, +OBI:SA:CTPMAC_O_TA,1,"Mac Orlan",48.384739,-4.503912,,1,,Europe/Paris,,OBI, +OBI:SA:CTPMAISSI_1,1,"Maissin",48.384109,-4.502922,,1,,Europe/Paris,,OBI, +OBI:SA:CTPMALAKO_2,1,"Malakoff",48.395962,-4.484066,,1,,Europe/Paris,,OBI, +OBI:SA:CTPMALEYS_2,1,"Maleyssie",48.396431,-4.460955,,1,,Europe/Paris,,OBI, +OBI:SA:CTPMALMAN_2,1,"Malmanche",48.382534,-4.604318,,1,,Europe/Paris,,OBI, +OBI:SA:CTPMANET_1,1,"Manet",48.431496,-4.564559,,1,,Europe/Paris,,OBI, +OBI:SA:CTPMARREG_2,1,"Marréguès",48.42992,-4.500683,,1,,Europe/Paris,,OBI, +OBI:SA:CTPMART1_1,1,"Martin",48.423542,-4.457315,,1,,Europe/Paris,,OBI, +OBI:SA:CTPMAZE_2,1,"Mazé",48.396156,-4.403249,,1,,Europe/Paris,,OBI, +OBI:SA:CTPMBLANC_1,1,"Moulin Blanc",48.396763,-4.420739,,1,,Europe/Paris,,OBI, +OBI:SA:CTPMEDATQ_1,1,"Médiathèque",48.402542,-4.391998,,1,,Europe/Paris,,OBI, +OBI:SA:CTPMEHEUT_1,1,"Méheut",48.372025,-4.366195,,1,,Europe/Paris,,OBI, +OBI:SA:CTPMELOU_1,1,"Melou",48.391338,-4.461674,,1,,Europe/Paris,,OBI, +OBI:SA:CTPMENDY_2,1,"Le Mendy",48.394859,-4.409057,,1,,Europe/Paris,,OBI, +OBI:SA:CTPMENEZ_1,1,"Ty ar Menez",48.384201,-4.354848,,1,,Europe/Paris,,OBI, +OBI:SA:CTPMENEZ_TA,1,"Menez Paul",48.406784,-4.467779,,1,,Europe/Paris,,OBI, +OBI:SA:CTPMERCEU_1,1,"Merceur",48.40947,-4.412232,,1,,Europe/Paris,,OBI, +OBI:SA:CTPMESCOU_2,1,"Mescouezel",48.376312,-4.597286,,1,,Europe/Paris,,OBI, +OBI:SA:CTPMESDOU_3,1,"Mesdoun",48.378765,-4.526525,,1,,Europe/Paris,,OBI, +OBI:SA:CTPMESME_2,1,"Mesmerrien",48.421093,-4.467421,,1,,Europe/Paris,,OBI, +OBI:SA:CTPMESNOS_2,1,"Mesnos",48.39093,-4.536756,,1,,Europe/Paris,,OBI, +OBI:SA:CTPMESSIO_1,1,"Messioual",48.41964,-4.50865,,1,,Europe/Paris,,OBI, +OBI:SA:CTPMESSI_1,1,"Messidou",48.400646,-4.48293,,1,,Europe/Paris,,OBI, +OBI:SA:CTPMIMOSA_2,1,"Mimosas",48.367767,-4.548378,,1,,Europe/Paris,,OBI, +OBI:SA:CTPMIRAB_A1,1,"Mirabeau",48.40974,-4.485514,,1,,Europe/Paris,,OBI, +OBI:SA:CTPMOIGNE_2,1,"Le Moigne",48.383404,-4.508398,,1,,Europe/Paris,,OBI, +OBI:SA:CTPMONNET_2,1,"Monnet",48.439182,-4.408753,,1,,Europe/Paris,,OBI, +OBI:SA:CTPMONTAI_1,1,"Montaigne",48.403416,-4.480798,,1,,Europe/Paris,,OBI, +OBI:SA:CTPMONTB_3,1,"Fort Montbarey",48.378216,-4.543943,,1,,Europe/Paris,,OBI, +OBI:SA:CTPMOQUET_1,1,"Moquet",48.380188,-4.599345,,1,,Europe/Paris,,OBI, +OBI:SA:CTPMOUCH_2,1,"Mouchotte",48.386246,-4.507144,,1,,Europe/Paris,,OBI, +OBI:SA:CTPMOUETT_2,1,"Mouettes",48.381584,-4.617754,,1,,Europe/Paris,,OBI, +OBI:SA:CTPMOULIN,1,"Le Moulin",48.446434,-4.470633,,1,,Europe/Paris,,OBI, +OBI:SA:CTPMOULT_1,1,"Le Moult",48.401657,-4.483401,,1,,Europe/Paris,,OBI, +OBI:SA:CTPMUSEEM_1,1,"Musée Marine",48.382915,-4.492428,,1,,Europe/Paris,,OBI, +OBI:SA:CTPMYOSO_2,1,"Myosotis",48.372936,-4.589644,,1,,Europe/Paris,,OBI, +OBI:SA:CTPM_ANGE_2,1,"Michel-Ange",48.393452,-4.519635,,1,,Europe/Paris,,OBI, +OBI:SA:CTPNERVAL_1,1,"De Nerval",48.375385,-4.535889,,1,,Europe/Paris,,OBI, +OBI:SA:CTPNIEPCE_2,1,"Niepce",48.424812,-4.48316,,1,,Europe/Paris,,OBI, +OBI:SA:CTPNORMAN_2,1,"Normandie",48.402172,-4.510005,,1,,Europe/Paris,,OBI, +OBI:SA:CTPN_1,1,"Liberté Frézier",48.391468,-4.485322,,1,,Europe/Paris,,OBI, +OBI:SA:CTPOCEANO_2,1,"Océanopolis",48.39114,-4.435999,,1,,Europe/Paris,,OBI, +OBI:SA:CTPOCTROI_2,1,"Octroi",48.396713,-4.475112,,1,,Europe/Paris,,OBI, +OBI:SA:CTPORVES_1,1,"D'Est. d'Orves",48.390594,-4.465439,,1,,Europe/Paris,,OBI, +OBI:SA:CTPPAF_1,1,"Poul ar Feunteun",48.424053,-4.485976,,1,,Europe/Paris,,OBI, +OBI:SA:CTPPALAR_2,1,"Palaren",48.396675,-4.436053,,1,,Europe/Paris,,OBI, +OBI:SA:CTPPAMIS_1,1,"Pont Amis",48.456501,-4.457403,,1,,Europe/Paris,,OBI, +OBI:SA:CTPPASTEU_2,1,"Pasteur",48.400822,-4.488943,,1,,Europe/Paris,,OBI, +OBI:SA:CTPPATINO_2,1,"Patinoire",48.403584,-4.50836,,1,,Europe/Paris,,OBI, +OBI:SA:CTPPAULET_2,1,"Paulet",48.414841,-4.475187,,1,,Europe/Paris,,OBI, +OBI:SA:CTPPCHAT1,1,"Port du Château",48.381973,-4.489528,,1,,Europe/Paris,,OBI, +OBI:SA:CTPPCOMME1,1,"Port de Commerce",48.385361,-4.476504,,1,,Europe/Paris,,OBI, +OBI:SA:CTPPDALAR_1,1,"Pen-an-Dalar",48.43573,-4.389472,,1,,Europe/Paris,,OBI, +OBI:SA:CTPPEGUY_1,1,"Péguy",48.401993,-4.488839,,1,,Europe/Paris,,OBI, +OBI:SA:CTPPENARC_1,1,"Pen-ar-C'hleuz",48.417282,-4.482121,,1,,Europe/Paris,,OBI, +OBI:SA:CTPPENARC_B,1,"Pen-ar-c'hleuz",48.416092,-4.483945,,1,,Europe/Paris,,OBI, +OBI:SA:CTPPENARC_T,1,"pen-ar-c'hleuz",48.416977,-4.481296,,1,,Europe/Paris,,OBI, +OBI:SA:CTPPENFLD1,1,"Penfeld",48.410007,-4.532722,,1,,Europe/Paris,,OBI, +OBI:SA:CTPPENGUE_1,1,"Penguerec",48.444157,-4.474581,,1,,Europe/Paris,,OBI, +OBI:SA:CTPPENHO_1,1,"Penhoat",48.455952,-4.452679,,1,,Europe/Paris,,OBI, +OBI:SA:CTPPENHU_1,1,"Penhuel",48.381931,-4.612069,,1,,Europe/Paris,,OBI, +OBI:SA:CTPPENNOC_2,1,"Croas-ar-Pennoc",48.425785,-4.550759,,1,,Europe/Paris,,OBI, +OBI:SA:CTPPERROS_1,1,"Perros",48.424896,-4.494167,,1,,Europe/Paris,,OBI, +OBI:SA:CTPPEUPLI_2,1,"Peupliers",48.454014,-4.463293,,1,,Europe/Paris,,OBI, +OBI:SA:CTPPFLEUR_1,1,"Panier Fleuri",48.379803,-4.539952,,1,,Europe/Paris,,OBI, +OBI:SA:CTPPGARE_1,1,"Petite Gare",48.431435,-4.510849,,1,,Europe/Paris,,OBI, +OBI:SA:CTPPGOUES2,1,"Porte Gouesnou",48.430801,-4.468173,,1,,Europe/Paris,,OBI, +OBI:SA:CTPPGROA_2,1,"Pors ar Groas",48.449108,-4.476204,,1,,Europe/Paris,,OBI, +OBI:SA:CTPPGUEAR_1,1,"Pen-ar-Guear",48.429752,-4.513258,,1,,Europe/Paris,,OBI, +OBI:SA:CTPPGUENA_2,1,"Père Gwenaël",48.381187,-4.368495,,1,,Europe/Paris,,OBI, +OBI:SA:CTPPGUINA2,1,"Poulguinan",48.424755,-4.392314,,1,,Europe/Paris,,OBI, +OBI:SA:CTPPICCAR_1,1,"Piccard",48.362133,-4.564009,,1,,Europe/Paris,,OBI, +OBI:SA:CTPPILIE_TA,1,"Pilier Rouge",48.398842,-4.472679,,1,,Europe/Paris,,OBI, +OBI:SA:CTPPISCI_2,1,"Piscine",48.368729,-4.518475,,1,,Europe/Paris,,OBI, +OBI:SA:CTPPLCALV_1,1,"Calvaire",48.374111,-4.368873,,1,,Europe/Paris,,OBI, +OBI:SA:CTPPLCOM_1,1,"Commerce",48.371521,-4.590513,,1,,Europe/Paris,,OBI, +OBI:SA:CTPPLEDAN_1,1,"Prat-Ledan",48.383873,-4.50514,,1,,Europe/Paris,,OBI, +OBI:SA:CTPPLEDAN_4,1,"Prat Lédan",48.384151,-4.505013,,1,,Europe/Paris,,OBI, +OBI:SA:CTPPLZMAI_1,1,"Plouzané Mairie",48.380291,-4.601581,,1,,Europe/Paris,,OBI, +OBI:SA:CTPPLZ_1,1,"Plouzané Bourg",48.38184,-4.622287,,1,,Europe/Paris,,OBI, +OBI:SA:CTPPMENEZ_2,1,"Pen-ar-Menez",48.408947,-4.490738,,1,,Europe/Paris,,OBI, +OBI:SA:CTPPMESDO_1,1,"Porte de Mesdoun",48.373596,-4.523557,,1,,Europe/Paris,,OBI, +OBI:SA:CTPPNEUF_2,1,"Pont Neuf",48.408897,-4.457469,,1,,Europe/Paris,,OBI, +OBI:SA:CTPPOINTE_1,1,"Restau de la Pointe",48.379932,-4.50163,,1,,Europe/Paris,,OBI, +OBI:SA:CTPPOLYG_1,1,"Polygone",48.38662,-4.518127,,1,,Europe/Paris,,OBI, +OBI:SA:CTPPOMPI_1,1,"Pompidou",48.441498,-4.400007,,1,,Europe/Paris,,OBI, +OBI:SA:CTPPONTA_TA,1,"Pontanézen",48.415058,-4.471732,,1,,Europe/Paris,,OBI, +OBI:SA:CTPPORTZI_1,1,"Portzic",48.37022,-4.55229,,1,,Europe/Paris,,OBI, +OBI:SA:CTPPORTZM_2,1,"Portzmoguer",48.393398,-4.494829,,1,,Europe/Paris,,OBI, +OBI:SA:CTPPORT_P_1,1,"Port Plaisance",48.394695,-4.434062,,1,,Europe/Paris,,OBI, +OBI:SA:CTPPOSTE4_2,1,"Poste 4",48.384754,-4.497722,,1,,Europe/Paris,,OBI, +OBI:SA:CTPPOULED_2,1,"Pouléder",48.379078,-4.532785,,1,,Europe/Paris,,OBI, +OBI:SA:CTPPOULL_2,1,"Poull-Pren",48.426975,-4.567134,,1,,Europe/Paris,,OBI, +OBI:SA:CTPPRAJEN_2,1,"Du Prajen",48.424507,-4.502875,,1,,Europe/Paris,,OBI, +OBI:SA:CTPPRAT_P,1,"Prat Pip",48.442749,-4.415209,,1,,Europe/Paris,,OBI, +OBI:SA:CTPPREVER_1,1,"Prévert",48.384403,-4.597683,,1,,Europe/Paris,,OBI, +OBI:SA:CTPPRINCE_1,1,"Prince Russe",48.395325,-4.399198,,1,,Europe/Paris,,OBI, +OBI:SA:CTPPROVEN_3,1,"Provence",48.407604,-4.514784,,1,,Europe/Paris,,OBI, +OBI:SA:CTPPSNCF_1,1,"Pont SNCF",48.407036,-4.393716,,1,,Europe/Paris,,OBI, +OBI:SA:CTPPTGUI_1A,1,"Porte de Guipavas",48.419006,-4.444564,,1,,Europe/Paris,,OBI, +OBI:SA:CTPPTGUI_TA,1,"Porte Guipavas",48.419151,-4.444434,,1,,Europe/Paris,,OBI, +OBI:SA:CTPPVALY_2,1,"Pen-ar-Valy",48.424511,-4.519065,,1,,Europe/Paris,,OBI, +OBI:SA:CTPPYROTE_2,1,"Pyrotechnie",48.402508,-4.386723,,1,,Europe/Paris,,OBI, +OBI:SA:CTPP_BERT_2,1,"Paul Bert",48.381348,-4.51333,,1,,Europe/Paris,,OBI, +OBI:SA:CTPP_PLZ_1,1,"Porte Plouzané",48.376244,-4.553275,,1,,Europe/Paris,,OBI, +OBI:SA:CTPQUARTZ_1,1,"Liberté Quartz",48.389549,-4.485112,,1,,Europe/Paris,,OBI, +OBI:SA:CTPQUESTE_2,1,"Questel",48.399078,-4.531622,,1,,Europe/Paris,,OBI, +OBI:SA:CTPQUILBI_2,1,"Quilbignon",48.379269,-4.533948,,1,,Europe/Paris,,OBI, +OBI:SA:CTPRAMPES_1,1,"Rampes",48.383099,-4.487724,,1,,Europe/Paris,,OBI, +OBI:SA:CTPRECOUV_2,1,"Recouvrance",48.384087,-4.499301,,1,,Europe/Paris,,OBI, +OBI:SA:CTPREPUBL_2,1,"République",48.38892,-4.479244,,1,,Europe/Paris,,OBI, +OBI:SA:CTPRESIST_1,1,"Résistance",48.406628,-4.389814,,1,,Europe/Paris,,OBI, +OBI:SA:CTPRESTIC_2,1,"Restic",48.427124,-4.492764,,1,,Europe/Paris,,OBI, +OBI:SA:CTPREUN_2,1,"Reun-ar-C'hoat",48.413483,-4.397611,,1,,Europe/Paris,,OBI, +OBI:SA:CTPRIBEUZ_1,1,"Ribeuze",48.441536,-4.396011,,1,,Europe/Paris,,OBI, +OBI:SA:CTPRICHEL_2,1,"Richelieu",48.394409,-4.474852,,1,,Europe/Paris,,OBI, +OBI:SA:CTPRKERE_1,1,"Roc'h-Kerezen",48.382439,-4.377921,,1,,Europe/Paris,,OBI, +OBI:SA:CTPROBERV_3,1,"Roberval",48.427998,-4.570009,,1,,Europe/Paris,,OBI, +OBI:SA:CTPRODIN_2,1,"Rodin",48.397205,-4.464742,,1,,Europe/Paris,,OBI, +OBI:SA:CTPRODY_1,1,"Rody",48.397942,-4.432234,,1,,Europe/Paris,,OBI, +OBI:SA:CTPROSTAN_1,1,"Rostand",48.419136,-4.495731,,1,,Europe/Paris,,OBI, +OBI:SA:CTPROUDOU_1,1,"Roudous",48.430252,-4.560014,,1,,Europe/Paris,,OBI, +OBI:SA:CTPROZ_V_1,1,"Roz-Vian",48.413784,-4.522631,,1,,Europe/Paris,,OBI, +OBI:SA:CTPRTE_BH_2,1,"Rte de Bohars",48.436062,-4.509028,,1,,Europe/Paris,,OBI, +OBI:SA:CTPRTE_QP_2,1,"Rte de Quimper",48.401398,-4.44931,,1,,Europe/Paris,,OBI, +OBI:SA:CTPRUQUELEN,1,"Ruquelen",48.435192,-4.368168,,1,,Europe/Paris,,OBI, +OBI:SA:CTPR_GUIL_1,1,"Route de Guilers",48.387985,-4.512331,,1,,Europe/Paris,,OBI, +OBI:SA:CTPSALANG_1,1,"Salanguis",48.417843,-4.430301,,1,,Europe/Paris,,OBI, +OBI:SA:CTPSALAUN_1,1,"Salaun",48.372536,-4.379858,,1,,Europe/Paris,,OBI, +OBI:SA:CTPSANE_1,1,"Sané",48.389709,-4.474022,,1,,Europe/Paris,,OBI, +OBI:SA:CTPSANQUE_2,1,"Sanquer",48.391487,-4.474024,,1,,Europe/Paris,,OBI, +OBI:SA:CTPSAUPIN_1,1,"Anse Saupin",48.400875,-4.515541,,1,,Europe/Paris,,OBI, +OBI:SA:CTPSCHARL,1,"Saint Charles",48.433975,-4.397233,,1,,Europe/Paris,,OBI, +OBI:SA:CTPSCHUB_2,1,"Schubert",48.391964,-4.52322,,1,,Europe/Paris,,OBI, +OBI:SA:CTPSCHUM_1,1,"Schuman",48.39822,-4.407444,,1,,Europe/Paris,,OBI, +OBI:SA:CTPSEGUIN_1,1,"Seguin",48.416656,-4.524134,,1,,Europe/Paris,,OBI, +OBI:SA:CTPSEGUR_1,1,"Ségur",48.39925,-4.492261,,1,,Europe/Paris,,OBI, +OBI:SA:CTPSIAM_TA,1,"Siam",48.388199,-4.488892,,1,,Europe/Paris,,OBI, +OBI:SA:CTPSMART_TA,1,"Saint Martin",48.394138,-4.480047,,1,,Europe/Paris,,OBI, +OBI:SA:CTPSNLE_2,1,"Bassin 8",48.379875,-4.505131,,1,,Europe/Paris,,OBI, +OBI:SA:CTPSOMPY_2,1,"Sommepy",48.403751,-4.487131,,1,,Europe/Paris,,OBI, +OBI:SA:CTPSOURCE_1,1,"La Source",48.430256,-4.556434,,1,,Europe/Paris,,OBI, +OBI:SA:CTPSPA,1,"Spadium Parc",48.396915,-4.422154,,1,,Europe/Paris,,OBI, +OBI:SA:CTPSPROUX_1,1,"St Pol Roux",48.399853,-4.481065,,1,,Europe/Paris,,OBI, +OBI:SA:CTPSTANG_1,1,"Stang-Alar",48.410912,-4.454424,,1,,Europe/Paris,,OBI, +OBI:SA:CTPSTANNE_1,1,"Plage Ste Anne",48.361763,-4.554317,,1,,Europe/Paris,,OBI, +OBI:SA:CTPSTELLE_2,1,"Stelle",48.378757,-4.599738,,1,,Europe/Paris,,OBI, +OBI:SA:CTPSTELOI_1,1,"St-Eloi",48.435608,-4.394771,,1,,Europe/Paris,,OBI, +OBI:SA:CTPSTEND_2,1,"Stendhal",48.376541,-4.532018,,1,,Europe/Paris,,OBI, +OBI:SA:CTPSTFBLE1,1,"Stade F.Le Blé",48.402267,-4.462705,,1,,Europe/Paris,,OBI, +OBI:SA:CTPSTMARC_2,1,"St Marc",48.398579,-4.454703,,1,,Europe/Paris,,OBI, +OBI:SA:CTPSTONGE_2,1,"Saintonge",48.403145,-4.514836,,1,,Europe/Paris,,OBI, +OBI:SA:CTPSTPIER_1,1,"St Pierre",48.379681,-4.537294,,1,,Europe/Paris,,OBI, +OBI:SA:CTPSTVINC_2,1,"St Vincent",48.418907,-4.487988,,1,,Europe/Paris,,OBI, +OBI:SA:CTPST_2,1,"Strasbourg",48.403111,-4.466406,,1,,Europe/Paris,,OBI, +OBI:SA:CTPST_AL_2,1,"Strasbourg louppe",48.402561,-4.467486,,1,,Europe/Paris,,OBI, +OBI:SA:CTPST_EX_TA,1,"Saint-Exupéry",48.387283,-4.504367,,1,,Europe/Paris,,OBI, +OBI:SA:CTPST_EX_TR,1,"Saint-Exupery",48.387165,-4.504365,,1,,Europe/Paris,,OBI, +OBI:SA:CTPST_JJ,1,"Place Strasbourg",48.401947,-4.467975,,1,,Europe/Paris,,OBI, +OBI:SA:CTPST_LUC_1,1,"St Luc",48.403301,-4.484307,,1,,Europe/Paris,,OBI, +OBI:SA:CTPST_VA_1,1,"Strasbourg Valmy",48.401299,-4.466969,,1,,Europe/Paris,,OBI, +OBI:SA:CTPSYVOM_2,1,"Sycomores",48.377327,-4.586339,,1,,Europe/Paris,,OBI, +OBI:SA:CTPTAINE_1,1,"Taine",48.377747,-4.538368,,1,,Europe/Paris,,OBI, +OBI:SA:CTPTALLIN_2,1,"Tallinn",48.389412,-4.524673,,1,,Europe/Paris,,OBI, +OBI:SA:CTPTARENT_1,1,"Tarente",48.405323,-4.510622,,1,,Europe/Paris,,OBI, +OBI:SA:CTPTARTU_1,1,"Tartu",48.383686,-4.527701,,1,,Europe/Paris,,OBI, +OBI:SA:CTPTECHNO_1,1,"Technopôle",48.360378,-4.569574,,1,,Europe/Paris,,OBI, +OBI:SA:CTPTHIB_1,1,"Thibaudet",48.375259,-4.5414,,1,,Europe/Paris,,OBI, +OBI:SA:CTPTHOUAR_2,1,"Dupetit Thouars",48.379154,-4.520318,,1,,Europe/Paris,,OBI, +OBI:SA:CTPTHUDON_3,1,"St Thudon",48.441231,-4.422906,,1,,Europe/Paris,,OBI, +OBI:SA:CTPTI_RUZ_2,1,"Ti-Ruz",48.423504,-4.420202,,1,,Europe/Paris,,OBI, +OBI:SA:CTPTOULL_1,1,"Toull-ar-Ranig",48.367855,-4.372566,,1,,Europe/Paris,,OBI, +OBI:SA:CTPTOURB_1,1,"Tourbian",48.413273,-4.449973,,1,,Europe/Paris,,OBI, +OBI:SA:CTPTREORN_1,1,"Tréornou",48.411133,-4.498967,,1,,Europe/Paris,,OBI, +OBI:SA:CTPTRINIT_1,1,"La Trinité",48.370682,-4.585945,,1,,Europe/Paris,,OBI, +OBI:SA:CTPTY_ARM_2,1,"Ty Armor",48.383606,-4.391767,,1,,Europe/Paris,,OBI, +OBI:SA:CTPTY_YAN_1,1,"Ty-Yann",48.389717,-4.439215,,1,,Europe/Paris,,OBI, +OBI:SA:CTPT_PRIG_1,1,"Prigent",48.396927,-4.529523,,1,,Europe/Paris,,OBI, +OBI:SA:CTPUNIVER_2,1,"Universités",48.399387,-4.495504,,1,,Europe/Paris,,OBI, +OBI:SA:CTPVALLEE_2,1,"Vallée Verte",48.437054,-4.473056,,1,,Europe/Paris,,OBI, +OBI:SA:CTPVAL_HI_5,1,"Vali Hir",48.386993,-4.525914,,1,,Europe/Paris,,OBI, +OBI:SA:CTPVENDEE_2,1,"Vendée",48.404369,-4.511147,,1,,Europe/Paris,,OBI, +OBI:SA:CTPVENTURA,1,"Ventura",48.395203,-4.533741,,1,,Europe/Paris,,OBI, +OBI:SA:CTPVILNE_1,1,"Villeneuve",48.408909,-4.467432,,1,,Europe/Paris,,OBI, +OBI:SA:CTPVIZAC,1,"Vizac",48.436008,-4.405725,,1,,Europe/Paris,,OBI, +OBI:SA:CTPWAGNER_2,1,"Wagner",48.394993,-4.52851,,1,,Europe/Paris,,OBI, +OBI:SA:CTPWARSP_1,1,"Warspite",48.390106,-4.521621,,1,,Europe/Paris,,OBI, +OBI:SA:CTPWATTO_2,1,"Watteau",48.412914,-4.473702,,1,,Europe/Paris,,OBI, +OBI:SA:CTPYPRES_2,1,"Ypres",48.373512,-4.527271,,1,,Europe/Paris,,OBI, +ONA:SA:ABDU,1,"Abel Durand",47.220157,-1.603392,,1,,Europe/Paris,,ONA, +ONA:SA:ABLA,1,"Avenue Blanche",47.229731,-1.589421,,1,,Europe/Paris,,ONA, +ONA:SA:ABOL,1,"Adrienne Bolland",47.267913,-1.476846,,1,,Europe/Paris,,ONA, +ONA:SA:ACHA,1,"Angle Chaillou",47.269777,-1.571852,,1,,Europe/Paris,,ONA, +ONA:SA:ADBO,1,"Audubon",47.214016,-1.723236,,1,,Europe/Paris,,ONA, +ONA:SA:ADEL,1,"Aimé Delrue",47.208997,-1.550098,,1,,Europe/Paris,,ONA, +ONA:SA:ADPI,1,"Avenue des Pins",47.253261,-1.596704,,1,,Europe/Paris,,ONA, +ONA:SA:AECL,1,"Aéroclub",47.159364,-1.597996,,1,,Europe/Paris,,ONA, +ONA:SA:AEPO,1,"Aéroport",47.157702,-1.596553,,1,,Europe/Paris,,ONA, +ONA:SA:AESP,1,"Aérospatiale",47.160789,-1.587932,,1,,Europe/Paris,,ONA, +ONA:SA:AFRA,1,"Anatole France",47.22393,-1.57194,,1,,Europe/Paris,,ONA, +ONA:SA:AGBE,1,"L'Angebert",47.140541,-1.455769,,1,,Europe/Paris,,ONA, +ONA:SA:AGVI,1,"Angevinière",47.245299,-1.610933,,1,,Europe/Paris,,ONA, +ONA:SA:AIBU,1,"Airbus",47.158695,-1.591212,,1,,Europe/Paris,,ONA, +ONA:SA:AIGU,1,"Aiguillon",47.254459,-1.496919,,1,,Europe/Paris,,ONA, +ONA:SA:ALCH,1,"Chant de l'Alouette",47.283286,-1.579855,,1,,Europe/Paris,,ONA, +ONA:SA:ALNE,1,"Aulne",47.276331,-1.63837,,1,,Europe/Paris,,ONA, +ONA:SA:ALOT,1,"Allouettes",47.201573,-1.601628,,1,,Europe/Paris,,ONA, +ONA:SA:AMCA,1,"Armoricaine",47.258273,-1.647479,,1,,Europe/Paris,,ONA, +ONA:SA:AMER,1,"Américains",47.236126,-1.568203,,1,,Europe/Paris,,ONA, +ONA:SA:AMOR,1,"Ar Mor",47.228019,-1.623673,,1,,Europe/Paris,,ONA, +ONA:SA:AMPE,1,"Ampère",47.26086,-1.553207,,1,,Europe/Paris,,ONA, +ONA:SA:ANGE,1,"Les Anges",47.275204,-1.637095,,1,,Europe/Paris,,ONA, +ONA:SA:ANTO,1,"Antons",47.25769,-1.622564,,1,,Europe/Paris,,ONA, +ONA:SA:APAV,1,"Apave",47.225395,-1.647542,,1,,Europe/Paris,,ONA, +ONA:SA:APER,1,"Ampère",47.302277,-1.507897,,1,,Europe/Paris,,ONA, +ONA:SA:APRE,1,"Ambroise Paré",47.229078,-1.608545,,1,,Europe/Paris,,ONA, +ONA:SA:AQUI,1,"Aquitaine",47.209855,-1.614926,,1,,Europe/Paris,,ONA, +ONA:SA:ARAG,1,"Arago",47.303461,-1.504805,,1,,Europe/Paris,,ONA, +ONA:SA:ARBO,1,"Arbois",47.258629,-1.581885,,1,,Europe/Paris,,ONA, +ONA:SA:ARCA,1,"Arcades",47.211794,-1.652742,,1,,Europe/Paris,,ONA, +ONA:SA:ARGO,1,"Argonautes",47.302422,-1.481825,,1,,Europe/Paris,,ONA, +ONA:SA:ARMO,1,"Armorique",47.271472,-1.445344,,1,,Europe/Paris,,ONA, +ONA:SA:ATAR,1,"Antarès",47.281718,-1.4597,,1,,Europe/Paris,,ONA, +ONA:SA:AUCP,1,"La Chapelle Aulnay",47.308383,-1.543427,,1,,Europe/Paris,,ONA, +ONA:SA:AUFR,1,"L'Aufrère",47.168048,-1.52507,,1,,Europe/Paris,,ONA, +ONA:SA:AUGE,1,"Augé",47.194966,-1.517367,,1,,Europe/Paris,,ONA, +ONA:SA:AVEN,1,"Aveneaux",47.233659,-1.629909,,1,,Europe/Paris,,ONA, +ONA:SA:BABI,1,"Barbinière",47.159768,-1.48169,,1,,Europe/Paris,,ONA, +ONA:SA:BAGA,1,"Bagatelle",47.243455,-1.620055,,1,,Europe/Paris,,ONA, +ONA:SA:BAIE,1,"Babinière",47.259205,-1.546207,,1,,Europe/Paris,,ONA, +ONA:SA:BAIR,1,"Bel Air",47.225442,-1.559225,,1,,Europe/Paris,,ONA, +ONA:SA:BALI,1,"Balinière",47.18453,-1.554531,,1,,Europe/Paris,,ONA, +ONA:SA:BANS,1,"Bois des Anses",47.247234,-1.494814,,1,,Europe/Paris,,ONA, +ONA:SA:BARR,1,"La Barre",47.308814,-1.382579,,1,,Europe/Paris,,ONA, +ONA:SA:BAST,1,"Bastille",47.179386,-1.597221,,1,,Europe/Paris,,ONA, +ONA:SA:BATI,1,"Batignolles",47.255528,-1.529669,,1,,Europe/Paris,,ONA, +ONA:SA:BAUG,1,"Baugerie",47.203494,-1.520888,,1,,Europe/Paris,,ONA, +ONA:SA:BAVO,1,"Basse Orévière",47.220407,-1.658937,,1,,Europe/Paris,,ONA, +ONA:SA:BBON,1,"Boisbonne",47.286861,-1.508376,,1,,Europe/Paris,,ONA, +ONA:SA:BCDI,1,"Boucardière",47.200671,-1.59905,,1,,Europe/Paris,,ONA, +ONA:SA:BCES,1,"Bois Cesbron",47.261135,-1.624539,,1,,Europe/Paris,,ONA, +ONA:SA:BCGA,1,"Bd C. Gautier",47.221518,-1.608384,,1,,Europe/Paris,,ONA, +ONA:SA:BCHE,1,"Basse Chênaie",47.241014,-1.508518,,1,,Europe/Paris,,ONA, +ONA:SA:BCOI,1,"Branchoire",47.217826,-1.603089,,1,,Europe/Paris,,ONA, +ONA:SA:BCTT,1,"Blanchet",47.171314,-1.543136,,1,,Europe/Paris,,ONA, +ONA:SA:BDAN,1,"Bd des Anglais",47.226708,-1.582984,,1,,Europe/Paris,,ONA, +ONA:SA:BDEL,1,"Baudelaire",47.233657,-1.593147,,1,,Europe/Paris,,ONA, +ONA:SA:BDIN,1,"Bodinières",47.210007,-1.641902,,1,,Europe/Paris,,ONA, +ONA:SA:BDLA,1,"Bout des Landes",47.267442,-1.582267,,1,,Europe/Paris,,ONA, +ONA:SA:BDNN,1,"Bourdonnais",47.205554,-1.579981,,1,,Europe/Paris,,ONA, +ONA:SA:BDOU,1,"Bd de Doulon",47.224697,-1.519773,,1,,Europe/Paris,,ONA, +ONA:SA:BDRI,1,"Bourderies",47.206632,-1.59592,,1,,Europe/Paris,,ONA, +ONA:SA:BDSP,1,"Bd des Sports",47.1656,-1.468768,,1,,Europe/Paris,,ONA, +ONA:SA:BDUC,1,"Bourgault-Ducoudray",47.202465,-1.548831,,1,,Europe/Paris,,ONA, +ONA:SA:BEDR,1,"Bel endroit",47.154707,-1.633965,,1,,Europe/Paris,,ONA, +ONA:SA:BEGE,1,"Beauger",47.234204,-1.55312,,1,,Europe/Paris,,ONA, +ONA:SA:BEHI,1,"Béhinière",47.19777,-1.792578,,1,,Europe/Paris,,ONA, +ONA:SA:BEIL,1,"Beillevaire",47.249387,-1.607266,,1,,Europe/Paris,,ONA, +ONA:SA:BEMZ,1,"Belges-Montbazon",47.234613,-1.540984,,1,,Europe/Paris,,ONA, +ONA:SA:BENA,1,"Beaulieu",47.203943,-1.537044,,1,,Europe/Paris,,ONA, +ONA:SA:BEOC,1,"Belloc",47.203741,-1.614607,,1,,Europe/Paris,,ONA, +ONA:SA:BESS,1,"Bessonneau",47.214629,-1.7135,,1,,Europe/Paris,,ONA, +ONA:SA:BETO,1,"Belle Etoile",47.280181,-1.451651,,1,,Europe/Paris,,ONA, +ONA:SA:BEVA,1,"Beauvaiserie",47.136272,-1.654445,,1,,Europe/Paris,,ONA, +ONA:SA:BGAR,1,"Bonne Garde",47.196753,-1.531238,,1,,Europe/Paris,,ONA, +ONA:SA:BGCY,1,"Beaugency",47.203795,-1.49025,,1,,Europe/Paris,,ONA, +ONA:SA:BGLA,1,"Basse-Goulaine",47.208294,-1.468632,,1,,Europe/Paris,,ONA, +ONA:SA:BGNN,1,"Bourgonnière",47.207377,-1.655453,,1,,Europe/Paris,,ONA, +ONA:SA:BGOG,1,"Bourgogne",47.246671,-1.58921,,1,,Europe/Paris,,ONA, +ONA:SA:BGRI,1,"Bougrière",47.25511,-1.471832,,1,,Europe/Paris,,ONA, +ONA:SA:BGSH,1,"Bergerie",47.23795,-1.628244,,1,,Europe/Paris,,ONA, +ONA:SA:BGTT,1,"Bergeronnettes",47.239505,-1.601247,,1,,Europe/Paris,,ONA, +ONA:SA:BGUT,1,"Louis Breguet",47.272053,-1.466027,,1,,Europe/Paris,,ONA, +ONA:SA:BGVI,1,"Bougainville",47.198946,-1.583594,,1,,Europe/Paris,,ONA, +ONA:SA:BHAR,1,"Bois Hardy",47.198276,-1.600592,,1,,Europe/Paris,,ONA, +ONA:SA:BIAN,1,"Aristide Briand",47.296396,-1.495162,,1,,Europe/Paris,,ONA, +ONA:SA:BIEE,1,"Belle-Ile",47.223964,-1.732321,,1,,Europe/Paris,,ONA, +ONA:SA:BIGN,1,"Bignons",47.199472,-1.49298,,1,,Europe/Paris,,ONA, +ONA:SA:BILE,1,"Basse Ile",47.195677,-1.563137,,1,,Europe/Paris,,ONA, +ONA:SA:BIND,1,"Basse Indre",47.19786,-1.672716,,1,,Europe/Paris,,ONA, +ONA:SA:BIOT,1,"Bigeottière",47.256083,-1.619534,,1,,Europe/Paris,,ONA, +ONA:SA:BJLI,1,"Bois Jaulin",47.177576,-1.63685,,1,,Europe/Paris,,ONA, +ONA:SA:BJOI,1,"Beaujoire",47.25884,-1.524882,,1,,Europe/Paris,,ONA, +ONA:SA:BLAV,1,"Balavoine",47.30638,-1.554801,,1,,Europe/Paris,,ONA, +ONA:SA:BLCH,1,"Blancho",47.213153,-1.734936,,1,,Europe/Paris,,ONA, +ONA:SA:BLDR,1,"Boulodrome",47.257626,-1.515402,,1,,Europe/Paris,,ONA, +ONA:SA:BLEM,1,"Belem",47.265637,-1.453001,,1,,Europe/Paris,,ONA, +ONA:SA:BLGO,1,"Berligout",47.215672,-1.678546,,1,,Europe/Paris,,ONA, +ONA:SA:BLLE,1,"Bellestre",47.147934,-1.694065,,1,,Europe/Paris,,ONA, +ONA:SA:BLNO,1,"Bois de La Noé",47.141789,-1.671424,,1,,Europe/Paris,,ONA, +ONA:SA:BLOR,1,"Blordière",47.179908,-1.533984,,1,,Europe/Paris,,ONA, +ONA:SA:BLSL,1,"Bellevue",47.235418,-1.473604,,1,,Europe/Paris,,ONA, +ONA:SA:BLUA,1,"Bélouga",47.165802,-1.583545,,1,,Europe/Paris,,ONA, +ONA:SA:BLVU,1,"Mendès-France-Bellevue",47.208899,-1.611287,,1,,Europe/Paris,,ONA, +ONA:SA:BLZZ,1,"Berlioz",47.239612,-1.571631,,1,,Europe/Paris,,ONA, +ONA:SA:BNAR,1,"Bernard",47.167325,-1.52515,,1,,Europe/Paris,,ONA, +ONA:SA:BNCH,1,"Blanchetière",47.289674,-1.556099,,1,,Europe/Paris,,ONA, +ONA:SA:BNET,1,"Bignonnet",47.175537,-1.465116,,1,,Europe/Paris,,ONA, +ONA:SA:BNIE,1,"Bournière",47.254396,-1.455247,,1,,Europe/Paris,,ONA, +ONA:SA:BNLU,1,"Bénélux",47.254025,-1.499136,,1,,Europe/Paris,,ONA, +ONA:SA:BNNO,1,"Bernanos",47.206486,-1.613356,,1,,Europe/Paris,,ONA, +ONA:SA:BNON,1,"Bignon",47.249263,-1.597733,,1,,Europe/Paris,,ONA, +ONA:SA:BNTA,1,"BN",47.183949,-1.496625,,1,,Europe/Paris,,ONA, +ONA:SA:BNVI,1,"Bonneville",47.24395,-1.536503,,1,,Europe/Paris,,ONA, +ONA:SA:BOCE,1,"Centre de Bouguenais",47.178672,-1.623325,,1,,Europe/Paris,,ONA, +ONA:SA:BODO,1,"Bourdonnières",47.187376,-1.520783,,1,,Europe/Paris,,ONA, +ONA:SA:BOFA,1,"Bouffay",47.214492,-1.552744,,1,,Europe/Paris,,ONA, +ONA:SA:BOGE,1,"Bourgeonnière",47.253019,-1.561367,,1,,Europe/Paris,,ONA, +ONA:SA:BOLL,1,"Bois Tillac",47.20024,-1.771357,,1,,Europe/Paris,,ONA, +ONA:SA:BOND,1,"Bonde",47.222618,-1.552145,,1,,Europe/Paris,,ONA, +ONA:SA:BORL,1,"Bourrelière",47.158314,-1.498356,,1,,Europe/Paris,,ONA, +ONA:SA:BOSI,1,"Boissière",47.255123,-1.565754,,1,,Europe/Paris,,ONA, +ONA:SA:BOTI,1,"Boutière",47.157513,-1.468194,,1,,Europe/Paris,,ONA, +ONA:SA:BOUE,1,"Bio Ouest Laënnec",47.232796,-1.641879,,1,,Europe/Paris,,ONA, +ONA:SA:BOVR,1,"Bouvre",47.178212,-1.613119,,1,,Europe/Paris,,ONA, +ONA:SA:BPTY,1,"Boulay Paty",47.228917,-1.576271,,1,,Europe/Paris,,ONA, +ONA:SA:BRAG,1,"Bois Raguenet",47.266643,-1.600468,,1,,Europe/Paris,,ONA, +ONA:SA:BRBI,1,"Bois Robillard",47.235145,-1.519733,,1,,Europe/Paris,,ONA, +ONA:SA:BRCH,1,"Bréchetière",47.284683,-1.503455,,1,,Europe/Paris,,ONA, +ONA:SA:BRDI,1,"Briandière",47.189709,-1.692058,,1,,Europe/Paris,,ONA, +ONA:SA:BRET,1,"Bretonnière",47.166514,-1.462891,,1,,Europe/Paris,,ONA, +ONA:SA:BRGA,1,"Beauregard",47.210763,-1.656499,,1,,Europe/Paris,,ONA, +ONA:SA:BRIN,1,"Brains",47.169615,-1.723039,,1,,Europe/Paris,,ONA, +ONA:SA:BRLA,1,"Brouillard",47.273959,-1.514462,,1,,Europe/Paris,,ONA, +ONA:SA:BRNI,1,"Baronnière",47.259589,-1.603917,,1,,Europe/Paris,,ONA, +ONA:SA:BROS,1,"Brossais",47.162581,-1.585554,,1,,Europe/Paris,,ONA, +ONA:SA:BRTA,1,"Bretagne",47.217099,-1.558221,,1,,Europe/Paris,,ONA, +ONA:SA:BRUN,1,"Bruneau",47.22798,-1.561394,,1,,Europe/Paris,,ONA, +ONA:SA:BRVI,1,"Boris Vian",47.153167,-1.683499,,1,,Europe/Paris,,ONA, +ONA:SA:BSAN,1,"Bobby Sands",47.229893,-1.652902,,1,,Europe/Paris,,ONA, +ONA:SA:BSIS,1,"Bossis",47.21251,-1.712282,,1,,Europe/Paris,,ONA, +ONA:SA:BSLO,1,"Bois St-Louis",47.245804,-1.580284,,1,,Europe/Paris,,ONA, +ONA:SA:BSNI,1,"Bussonnière",47.269723,-1.443765,,1,,Europe/Paris,,ONA, +ONA:SA:BSOL,1,"Beau Soleil",47.177662,-1.644783,,1,,Europe/Paris,,ONA, +ONA:SA:BSSL,1,"Beau Soleil",47.260949,-1.475026,,1,,Europe/Paris,,ONA, +ONA:SA:BSTI,1,"Bastière",47.148438,-1.459364,,1,,Europe/Paris,,ONA, +ONA:SA:BSYS,1,"Bois St-Lys",47.300347,-1.481942,,1,,Europe/Paris,,ONA, +ONA:SA:BTAI,1,"BTAI",47.221701,-1.665777,,1,,Europe/Paris,,ONA, +ONA:SA:BTCY,1,"Lycée Bois Tillac",47.203431,-1.77028,,1,,Europe/Paris,,ONA, +ONA:SA:BTIE,1,"Bottière",47.240234,-1.518381,,1,,Europe/Paris,,ONA, +ONA:SA:BTLE,1,"Bouteillerie",47.221465,-1.5436,,1,,Europe/Paris,,ONA, +ONA:SA:BTRA,1,"Bertrand",47.257128,-1.57569,,1,,Europe/Paris,,ONA, +ONA:SA:BUGA,1,"Bugallière",47.259962,-1.637682,,1,,Europe/Paris,,ONA, +ONA:SA:BULA,1,"Butte des Landes",47.160808,-1.493781,,1,,Europe/Paris,,ONA, +ONA:SA:BUON,1,"Bougon",47.173787,-1.610812,,1,,Europe/Paris,,ONA, +ONA:SA:BUSS,1,"Buisson",47.259905,-1.48752,,1,,Europe/Paris,,ONA, +ONA:SA:BVDI,1,"Bouvardière",47.238522,-1.598398,,1,,Europe/Paris,,ONA, +ONA:SA:BVER,1,"Bouvernière",47.238075,-1.611457,,1,,Europe/Paris,,ONA, +ONA:SA:BVOI,1,"Beauvoir",47.178512,-1.630579,,1,,Europe/Paris,,ONA, +ONA:SA:BYCE,1,"Centre de Bouaye",47.143875,-1.691647,,1,,Europe/Paris,,ONA, +ONA:SA:BYTO,1,"Bouaye Coteaux",47.164482,-1.67933,,1,,Europe/Paris,,ONA, +ONA:SA:BZAR,1,"Buzardières",47.207231,-1.659672,,1,,Europe/Paris,,ONA, +ONA:SA:CABR,1,"Cabrol",47.203276,-1.588669,,1,,Europe/Paris,,ONA, +ONA:SA:CACE,1,"Centre de Carquefou",47.296537,-1.490936,,1,,Europe/Paris,,ONA, +ONA:SA:CADO,1,"Cadoire",47.256734,-1.488087,,1,,Europe/Paris,,ONA, +ONA:SA:CAGE,1,"Chalonges",47.276136,-1.429398,,1,,Europe/Paris,,ONA, +ONA:SA:CAHL,1,"Charlière",47.320851,-1.550293,,1,,Europe/Paris,,ONA, +ONA:SA:CAIO,1,"Le Caillou Blanc",47.29895,-1.585373,,1,,Europe/Paris,,ONA, +ONA:SA:CALI,1,"Californie",47.191808,-1.58426,,1,,Europe/Paris,,ONA, +ONA:SA:CANC,1,"Canclaux",47.213837,-1.574771,,1,,Europe/Paris,,ONA, +ONA:SA:CAPE,1,"Capellia",47.279715,-1.554977,,1,,Europe/Paris,,ONA, +ONA:SA:CARQ,1,"Carquefou",47.303746,-1.485362,,1,,Europe/Paris,,ONA, +ONA:SA:CAST,1,"Castorama",47.259122,-1.508366,,1,,Europe/Paris,,ONA, +ONA:SA:CATI,1,"Cartier",47.268165,-1.455562,,1,,Europe/Paris,,ONA, +ONA:SA:CATV,1,"CAT Vertonne",47.184251,-1.482115,,1,,Europe/Paris,,ONA, +ONA:SA:CAUX,1,"Château D'Aux",47.185366,-1.674555,,1,,Europe/Paris,,ONA, +ONA:SA:CBAC,1,"Bac de Couëron",47.205983,-1.751706,,1,,Europe/Paris,,ONA, +ONA:SA:CBEA,1,"Charbonneau",47.300683,-1.490836,,1,,Europe/Paris,,ONA, +ONA:SA:CBGE,1,"Chapeau Berger",47.171004,-1.468756,,1,,Europe/Paris,,ONA, +ONA:SA:CBIN,1,"Corbinerie",47.161624,-1.542038,,1,,Europe/Paris,,ONA, +ONA:SA:CBLE,1,"Chemin Bleu",47.178228,-1.525012,,1,,Europe/Paris,,ONA, +ONA:SA:CBNA,1,"Cambronne",47.225353,-1.54851,,1,,Europe/Paris,,ONA, +ONA:SA:CBOU,1,"Couëron-Bougon",47.225081,-1.73386,,1,,Europe/Paris,,ONA, +ONA:SA:CBSS,1,"Cambronne",47.206589,-1.506441,,1,,Europe/Paris,,ONA, +ONA:SA:CBTE,1,"Choblèterie",47.136212,-1.461402,,1,,Europe/Paris,,ONA, +ONA:SA:CCAN,1,"Couchant",47.268386,-1.599538,,1,,Europe/Paris,,ONA, +ONA:SA:CCDI,1,"Cochardières",47.229943,-1.633204,,1,,Europe/Paris,,ONA, +ONA:SA:CCHA,1,"Couchant",47.270109,-1.513787,,1,,Europe/Paris,,ONA, +ONA:SA:CCLA,1,"Cimetière de la Classerie",47.17135,-1.558064,,1,,Europe/Paris,,ONA, +ONA:SA:CCOU,1,"Champ de Courses",47.244561,-1.561148,,1,,Europe/Paris,,ONA, +ONA:SA:CCRE,1,"Chêne Creux",47.170054,-1.54846,,1,,Europe/Paris,,ONA, +ONA:SA:CDAN,1,"Chêne des Anglais",47.261539,-1.573102,,1,,Europe/Paris,,ONA, +ONA:SA:CDCO,1,"Cité Internationale des Congrès",47.213497,-1.544873,,1,,Europe/Paris,,ONA, +ONA:SA:CDMA,1,"Champ de Manoeuvre",47.272286,-1.499785,,1,,Europe/Paris,,ONA, +ONA:SA:CEDR,1,"Le Cèdre",47.299454,-1.559857,,1,,Europe/Paris,,ONA, +ONA:SA:CELL,1,"Le Cellier",47.32362,-1.347719,,1,,Europe/Paris,,ONA, +ONA:SA:CFOI,1,"Champ de Foire",47.12424,-1.618907,,1,,Europe/Paris,,ONA, +ONA:SA:CGAU,1,"Cimetière de la Gaudinière",47.241729,-1.583557,,1,,Europe/Paris,,ONA, +ONA:SA:CGLA,1,"Chêne Gala",47.183154,-1.539238,,1,,Europe/Paris,,ONA, +ONA:SA:CHAB,1,"Chabossière",47.215364,-1.682224,,1,,Europe/Paris,,ONA, +ONA:SA:CHBE,1,"Chambelles",47.23163,-1.530586,,1,,Europe/Paris,,ONA, +ONA:SA:CHER,1,"Cochère",47.202695,-1.778286,,1,,Europe/Paris,,ONA, +ONA:SA:CHFL,1,"Champ Fleuri",47.144073,-1.525586,,1,,Europe/Paris,,ONA, +ONA:SA:CHIN,1,"La Chesnaie",47.281747,-1.53739,,1,,Europe/Paris,,ONA, +ONA:SA:CHME,1,"Charmes",47.191157,-1.461205,,1,,Europe/Paris,,ONA, +ONA:SA:CHNI,1,"Charbonnière",47.263774,-1.642067,,1,,Europe/Paris,,ONA, +ONA:SA:CHOC,1,"Chocolaterie",47.242805,-1.527691,,1,,Europe/Paris,,ONA, +ONA:SA:CHPO,1,"Champonnière",47.163917,-1.505888,,1,,Europe/Paris,,ONA, +ONA:SA:CHRE,1,"Chalâtres",47.231835,-1.537874,,1,,Europe/Paris,,ONA, +ONA:SA:CHSS,1,"Chaussée",47.176649,-1.521067,,1,,Europe/Paris,,ONA, +ONA:SA:CHTE,1,"Châtelets",47.196887,-1.540629,,1,,Europe/Paris,,ONA, +ONA:SA:CHVE,1,"Chauvais",47.336727,-1.573575,,1,,Europe/Paris,,ONA, +ONA:SA:CHZY,1,"Chanzy",47.225371,-1.547982,,1,,Europe/Paris,,ONA, +ONA:SA:CJOS,1,"Cimetière de St-Joseph-de-Porterie",47.268527,-1.520686,,1,,Europe/Paris,,ONA, +ONA:SA:CLAM,1,"Clos Ami",47.212148,-1.655545,,1,,Europe/Paris,,ONA, +ONA:SA:CLBO,1,"Clos Bonnet",47.189177,-1.563589,,1,,Europe/Paris,,ONA, +ONA:SA:CLCC,1,"Centre René Gauducheau",47.238507,-1.638204,,1,,Europe/Paris,,ONA, +ONA:SA:CLET,1,"Clétras",47.255109,-1.512575,,1,,Europe/Paris,,ONA, +ONA:SA:CLMO,1,"Cimetière de La Montagne",47.187293,-1.686459,,1,,Europe/Paris,,ONA, +ONA:SA:CLNA,1,"Colonac",47.224218,-1.603163,,1,,Europe/Paris,,ONA, +ONA:SA:CLOT,1,"Clotais",47.193025,-1.718208,,1,,Europe/Paris,,ONA, +ONA:SA:CLPT,1,"Clépettre",47.29698,-1.547762,,1,,Europe/Paris,,ONA, +ONA:SA:CLRO,1,"Clos Roux",47.198125,-1.749784,,1,,Europe/Paris,,ONA, +ONA:SA:CLSE,1,"Closeaux",47.239953,-1.627599,,1,,Europe/Paris,,ONA, +ONA:SA:CLTT,1,"Châlet",47.229453,-1.544444,,1,,Europe/Paris,,ONA, +ONA:SA:CLUE,1,"Clouet",47.167442,-1.510895,,1,,Europe/Paris,,ONA, +ONA:SA:CLVA,1,"Calvaire",47.146006,-1.518993,,1,,Europe/Paris,,ONA, +ONA:SA:CLZE,1,"Clouzeaux",47.1794,-1.492601,,1,,Europe/Paris,,ONA, +ONA:SA:CMAR,1,"Cirque-Marais",47.218218,-1.557113,,1,,Europe/Paris,,ONA, +ONA:SA:CMCI,1,"Clémencière",47.269537,-1.43568,,1,,Europe/Paris,,ONA, +ONA:SA:CMLL,1,"Charmille",47.257083,-1.606114,,1,,Europe/Paris,,ONA, +ONA:SA:CMNE,1,"Commune 1871",47.199145,-1.500092,,1,,Europe/Paris,,ONA, +ONA:SA:CMOU,1,"Clos du Moulin",47.145207,-1.521312,,1,,Europe/Paris,,ONA, +ONA:SA:CMUS,1,"Camus",47.219133,-1.572647,,1,,Europe/Paris,,ONA, +ONA:SA:CNAV,1,"Chantiers Navals",47.208849,-1.567798,,1,,Europe/Paris,,ONA, +ONA:SA:CNCE,1,"Chenonceau",47.272639,-1.434444,,1,,Europe/Paris,,ONA, +ONA:SA:CNGO,1,"Congo",47.239652,-1.610119,,1,,Europe/Paris,,ONA, +ONA:SA:CNON,1,"Chinon",47.274168,-1.428994,,1,,Europe/Paris,,ONA, +ONA:SA:CNTR,1,"Centaure",47.170073,-1.62718,,1,,Europe/Paris,,ONA, +ONA:SA:COAY,1,"Corlay",47.207949,-1.644128,,1,,Europe/Paris,,ONA, +ONA:SA:COBI,1,"Corbières",47.201906,-1.487472,,1,,Europe/Paris,,ONA, +ONA:SA:COCH,1,"Cochard",47.224024,-1.550529,,1,,Europe/Paris,,ONA, +ONA:SA:COET,1,"Les Couëts",47.180645,-1.586746,,1,,Europe/Paris,,ONA, +ONA:SA:COHO,1,"Chohonnière",47.263111,-1.485897,,1,,Europe/Paris,,ONA, +ONA:SA:COLI,1,"Colinière",47.2357,-1.508533,,1,,Europe/Paris,,ONA, +ONA:SA:COMM,1,"Commerce",47.213375,-1.556496,,1,,Europe/Paris,,ONA, +ONA:SA:CONI,1,"Corniche",47.252619,-1.594408,,1,,Europe/Paris,,ONA, +ONA:SA:COQU,1,"Coquelicots",47.22254,-1.729304,,1,,Europe/Paris,,ONA, +ONA:SA:CORA,1,"Conraie",47.26092,-1.588668,,1,,Europe/Paris,,ONA, +ONA:SA:COST,1,"Cousteau",47.239876,-1.512933,,1,,Europe/Paris,,ONA, +ONA:SA:COTA,1,"Coutancière",47.306201,-1.560085,,1,,Europe/Paris,,ONA, +ONA:SA:COUD,1,"Coudray",47.232224,-1.542398,,1,,Europe/Paris,,ONA, +ONA:SA:CP3R,1,"Chapelles",47.165216,-1.539657,,1,,Europe/Paris,,ONA, +ONA:SA:CP4L,1,"Chapelle Laënnec",47.235367,-1.637838,,1,,Europe/Paris,,ONA, +ONA:SA:CPER,1,"Copernic",47.214909,-1.564407,,1,,Europe/Paris,,ONA, +ONA:SA:CPGN,1,"Champagnère",47.210339,-1.461244,,1,,Europe/Paris,,ONA, +ONA:SA:CPLI,1,"Chaplin",47.222419,-1.616251,,1,,Europe/Paris,,ONA, +ONA:SA:CPRE,1,"Chaupières",47.243173,-1.495052,,1,,Europe/Paris,,ONA, +ONA:SA:CQGU,1,"Chat-Qui-Guette",47.191964,-1.697117,,1,,Europe/Paris,,ONA, +ONA:SA:CQLU,1,"Coqueluchon",47.183831,-1.470328,,1,,Europe/Paris,,ONA, +ONA:SA:CRAI,1,"Clairais",47.275214,-1.438331,,1,,Europe/Paris,,ONA, +ONA:SA:CRBE,1,"Corberie",47.152415,-1.523943,,1,,Europe/Paris,,ONA, +ONA:SA:CRCE,1,"Courocerie",47.252215,-1.499403,,1,,Europe/Paris,,ONA, +ONA:SA:CREZ,1,"Château de Rezé",47.184805,-1.559703,,1,,Europe/Paris,,ONA, +ONA:SA:CRME,1,"Crémetterie",47.218212,-1.607612,,1,,Europe/Paris,,ONA, +ONA:SA:CROU,1,"Chemin Rouge",47.251878,-1.517633,,1,,Europe/Paris,,ONA, +ONA:SA:CRPO,1,"Criport",47.158322,-1.503506,,1,,Europe/Paris,,ONA, +ONA:SA:CRQU,1,"Place du Cirque",47.216879,-1.556751,,1,,Europe/Paris,,ONA, +ONA:SA:CRSA,1,"Croissant",47.240551,-1.530438,,1,,Europe/Paris,,ONA, +ONA:SA:CRTI,1,"Crétinières",47.276533,-1.553157,,1,,Europe/Paris,,ONA, +ONA:SA:CRVA,1,"Cravate",47.243279,-1.588299,,1,,Europe/Paris,,ONA, +ONA:SA:CSAY,1,"Chassay",47.245248,-1.484091,,1,,Europe/Paris,,ONA, +ONA:SA:CSCL,1,"Cimetière St-Clair",47.216573,-1.592289,,1,,Europe/Paris,,ONA, +ONA:SA:CSER,1,"Chapelle-sur-Erdre",47.29933,-1.550183,,1,,Europe/Paris,,ONA, +ONA:SA:CSGR,1,"Cassegrain",47.187675,-1.487512,,1,,Europe/Paris,,ONA, +ONA:SA:CSHB,1,"Carrières",47.208154,-1.638196,,1,,Europe/Paris,,ONA, +ONA:SA:CSIB,1,"Clos Siban",47.21023,-1.645884,,1,,Europe/Paris,,ONA, +ONA:SA:CSMP,1,"Casimir Périer",47.23198,-1.568297,,1,,Europe/Paris,,ONA, +ONA:SA:CSRI,1,"Classerie",47.168174,-1.558757,,1,,Europe/Paris,,ONA, +ONA:SA:CSTE,1,"Casterneau",47.227148,-1.532642,,1,,Europe/Paris,,ONA, +ONA:SA:CSVA,1,"Conservatoire",47.207243,-1.532657,,1,,Europe/Paris,,ONA, +ONA:SA:CTAR,1,"Cotalard",47.286325,-1.537854,,1,,Europe/Paris,,ONA, +ONA:SA:CTBO,1,"Coteaux",47.184377,-1.669328,,1,,Europe/Paris,,ONA, +ONA:SA:CTEU,1,"Caboteurs",47.186475,-1.587437,,1,,Europe/Paris,,ONA, +ONA:SA:CTIE,1,"Châtelier",47.184836,-1.593262,,1,,Europe/Paris,,ONA, +ONA:SA:CTLI,1,"Courteline",47.236388,-1.587,,1,,Europe/Paris,,ONA, +ONA:SA:CTNS,1,"Carterons",47.218606,-1.738656,,1,,Europe/Paris,,ONA, +ONA:SA:CTOR,1,"Clos Toreau",47.194123,-1.529066,,1,,Europe/Paris,,ONA, +ONA:SA:CTRE,1,"Chantrerie",47.282303,-1.518107,,1,,Europe/Paris,,ONA, +ONA:SA:CTYY,1,"Coty",47.249075,-1.4882,,1,,Europe/Paris,,ONA, +ONA:SA:CUIE,1,"Chausserie",47.149115,-1.704057,,1,,Europe/Paris,,ONA, +ONA:SA:CURI,1,"Curie",47.190486,-1.48692,,1,,Europe/Paris,,ONA, +ONA:SA:CUVI,1,"Cuvier",47.210706,-1.574146,,1,,Europe/Paris,,ONA, +ONA:SA:CVBL,1,"Cheveux Blancs",47.265453,-1.635179,,1,,Europe/Paris,,ONA, +ONA:SA:CVDO,1,"Cimetière de Vieux Doulon",47.238492,-1.500403,,1,,Europe/Paris,,ONA, +ONA:SA:CVER,1,"Chapeau Verni",47.189166,-1.510343,,1,,Europe/Paris,,ONA, +ONA:SA:CVLE,1,"Chevalerie",47.252215,-1.545171,,1,,Europe/Paris,,ONA, +ONA:SA:CVNI,1,"Chauvinière",47.250982,-1.571007,,1,,Europe/Paris,,ONA, +ONA:SA:CVRN,1,"Cheverny",47.245399,-1.605385,,1,,Europe/Paris,,ONA, +ONA:SA:CVTI,1,"Convention",47.210729,-1.586705,,1,,Europe/Paris,,ONA, +ONA:SA:CZIN,1,"Chézine",47.233729,-1.598971,,1,,Europe/Paris,,ONA, +ONA:SA:DAKK,1,"Danemark",47.260979,-1.498577,,1,,Europe/Paris,,ONA, +ONA:SA:DALB,1,"Dalby",47.22508,-1.529848,,1,,Europe/Paris,,ONA, +ONA:SA:DANU,1,"Danube",47.304051,-1.50061,,1,,Europe/Paris,,ONA, +ONA:SA:DAVU,1,"Davum",47.26475,-1.496202,,1,,Europe/Paris,,ONA, +ONA:SA:DAYA,1,"Dayat",47.200869,-1.674263,,1,,Europe/Paris,,ONA, +ONA:SA:DCAN,1,"Duchesse Anne-Château",47.216202,-1.547449,,1,,Europe/Paris,,ONA, +ONA:SA:DCFF,1,"Du Chaffault",47.207647,-1.581985,,1,,Europe/Paris,,ONA, +ONA:SA:DEMO,1,"Desmoulins",47.232272,-1.52217,,1,,Europe/Paris,,ONA, +ONA:SA:DERV,1,"Dervallières",47.228895,-1.598086,,1,,Europe/Paris,,ONA, +ONA:SA:DIAN,1,"Diane",47.239663,-1.578115,,1,,Europe/Paris,,ONA, +ONA:SA:DIDE,1,"Espace Diderot",47.183705,-1.562926,,1,,Europe/Paris,,ONA, +ONA:SA:DLCR,1,"Delacroix",47.223608,-1.589368,,1,,Europe/Paris,,ONA, +ONA:SA:DLLE,1,"Drillet",47.234764,-1.665697,,1,,Europe/Paris,,ONA, +ONA:SA:DLME,1,"Delorme",47.215708,-1.56473,,1,,Europe/Paris,,ONA, +ONA:SA:DMAI,1,"Domaine",47.178409,-1.470867,,1,,Europe/Paris,,ONA, +ONA:SA:DMUR,1,"Dumont d'Urville",47.225872,-1.636339,,1,,Europe/Paris,,ONA, +ONA:SA:DNAI,1,"Danais",47.213604,-1.589559,,1,,Europe/Paris,,ONA, +ONA:SA:DOCE,1,"Doucet",47.277969,-1.632669,,1,,Europe/Paris,,ONA, +ONA:SA:DOLT,1,"Dolto",47.21651,-1.636173,,1,,Europe/Paris,,ONA, +ONA:SA:DOME,1,"Doumer",47.222269,-1.578429,,1,,Europe/Paris,,ONA, +ONA:SA:DOTT,1,"Douettée",47.207823,-1.499129,,1,,Europe/Paris,,ONA, +ONA:SA:DPBL,1,"Le Bêle",47.264729,-1.510357,,1,,Europe/Paris,,ONA, +ONA:SA:DPTE,1,"Déportés",47.196358,-1.491832,,1,,Europe/Paris,,ONA, +ONA:SA:DRAD,1,"Désirade",47.278198,-1.484462,,1,,Europe/Paris,,ONA, +ONA:SA:DRID,1,"Druides",47.238619,-1.50742,,1,,Europe/Paris,,ONA, +ONA:SA:DROI,1,"Droitière",47.308217,-1.373137,,1,,Europe/Paris,,ONA, +ONA:SA:DSNE,1,"Desnerie",47.277957,-1.540291,,1,,Europe/Paris,,ONA, +ONA:SA:DUKA,1,"Dukas",47.235229,-1.602519,,1,,Europe/Paris,,ONA, +ONA:SA:DUNA,1,"Dunant",47.24392,-1.521291,,1,,Europe/Paris,,ONA, +ONA:SA:EBCA,1,"Embarcadère",47.194085,-1.646533,,1,,Europe/Paris,,ONA, +ONA:SA:ECBU,1,"Ecobuts",47.19394,-1.507647,,1,,Europe/Paris,,ONA, +ONA:SA:ECHO,1,"Echoppes",47.143102,-1.686454,,1,,Europe/Paris,,ONA, +ONA:SA:ECLI,1,"Echalier",47.215182,-1.461852,,1,,Europe/Paris,,ONA, +ONA:SA:ECOS,1,"Ecosse",47.215204,-1.526227,,1,,Europe/Paris,,ONA, +ONA:SA:ECSU,1,"Ecole Centrale-Audencia",47.248951,-1.551151,,1,,Europe/Paris,,ONA, +ONA:SA:ECTE,1,"Enchanterie",47.230418,-1.523755,,1,,Europe/Paris,,ONA, +ONA:SA:EDNA,1,"Edit de Nantes",47.214406,-1.5686,,1,,Europe/Paris,,ONA, +ONA:SA:EDRE,1,"Erdreau",47.29115,-1.501272,,1,,Europe/Paris,,ONA, +ONA:SA:EGLA,1,"Eglantine",47.23518,-1.588102,,1,,Europe/Paris,,ONA, +ONA:SA:EGLI,1,"Egalité",47.209395,-1.588854,,1,,Europe/Paris,,ONA, +ONA:SA:EINS,1,"Einstein",47.263955,-1.570897,,1,,Europe/Paris,,ONA, +ONA:SA:EMBE,1,"Embellie",47.265543,-1.518354,,1,,Europe/Paris,,ONA, +ONA:SA:ENCO,1,"Ennerie Corbon",47.141976,-1.704706,,1,,Europe/Paris,,ONA, +ONA:SA:EPEL,1,"Ecoles",47.197523,-1.759121,,1,,Europe/Paris,,ONA, +ONA:SA:EPIN,1,"Epinais",47.136326,-1.61056,,1,,Europe/Paris,,ONA, +ONA:SA:EPYY,1,"Epinay",47.292346,-1.48693,,1,,Europe/Paris,,ONA, +ONA:SA:EQPE,1,"Equipement",47.223809,-1.575501,,1,,Europe/Paris,,ONA, +ONA:SA:ERAC,1,"Erdre Active",47.283147,-1.543977,,1,,Europe/Paris,,ONA, +ONA:SA:ERDI,1,"Eraudière",47.243015,-1.534848,,1,,Europe/Paris,,ONA, +ONA:SA:ESCA,1,"Escall",47.199408,-1.503018,,1,,Europe/Paris,,ONA, +ONA:SA:ESOR,1,"Ecoles",47.146663,-1.528941,,1,,Europe/Paris,,ONA, +ONA:SA:ESSO,1,"Esso",47.194753,-1.627158,,1,,Europe/Paris,,ONA, +ONA:SA:ESUE,1,"Eugène Sue",47.233378,-1.596036,,1,,Europe/Paris,,ONA, +ONA:SA:EUCA,1,"Europe",47.260165,-1.504075,,1,,Europe/Paris,,ONA, +ONA:SA:EUVE,1,"Europe",47.173006,-1.476295,,1,,Europe/Paris,,ONA, +ONA:SA:EVET,1,"Ecole Vétérinaire",47.289987,-1.522632,,1,,Europe/Paris,,ONA, +ONA:SA:EVRD,1,"Evardière",47.298233,-1.564005,,1,,Europe/Paris,,ONA, +ONA:SA:FACU,1,"Facultés",47.246733,-1.555486,,1,,Europe/Paris,,ONA, +ONA:SA:FADI,1,"Fardière",47.198513,-1.606821,,1,,Europe/Paris,,ONA, +ONA:SA:FALI,1,"Fallières",47.224852,-1.579279,,1,,Europe/Paris,,ONA, +ONA:SA:FAME,1,"Frère Amieux",47.201743,-1.609834,,1,,Europe/Paris,,ONA, +ONA:SA:FANE,1,"Faneurs",47.213679,-1.702059,,1,,Europe/Paris,,ONA, +ONA:SA:FATA,1,"Fantaisie",47.25353,-1.575559,,1,,Europe/Paris,,ONA, +ONA:SA:FAUV,1,"Fauvelière",47.282833,-1.50491,,1,,Europe/Paris,,ONA, +ONA:SA:FBLA,1,"Fresche Blanc",47.253126,-1.5582,,1,,Europe/Paris,,ONA, +ONA:SA:FDAY,1,"Faraday",47.226646,-1.616431,,1,,Europe/Paris,,ONA, +ONA:SA:FDDR,1,"Fac de Droit",47.24379,-1.551965,,1,,Europe/Paris,,ONA, +ONA:SA:FDLE,1,"Fac de Lettres",47.245416,-1.551819,,1,,Europe/Paris,,ONA, +ONA:SA:FERI,1,"Ferrière",47.244357,-1.591024,,1,,Europe/Paris,,ONA, +ONA:SA:FFAU,1,"Félix Faure",47.226989,-1.569387,,1,,Europe/Paris,,ONA, +ONA:SA:FGRI,1,"Fief Guérin",47.14388,-1.660491,,1,,Europe/Paris,,ONA, +ONA:SA:FIRC,1,"Firmin Colas",47.203729,-1.607073,,1,,Europe/Paris,,ONA, +ONA:SA:FLAN,1,"Flandre",47.285646,-1.547335,,1,,Europe/Paris,,ONA, +ONA:SA:FLEU,1,"Fleuriaye",47.298506,-1.499418,,1,,Europe/Paris,,ONA, +ONA:SA:FLRI,1,"Floride",47.213486,-1.603562,,1,,Europe/Paris,,ONA, +ONA:SA:FLUR,1,"Fleurs",47.215909,-1.718091,,1,,Europe/Paris,,ONA, +ONA:SA:FNLL,1,"Fresnel",47.24304,-1.523344,,1,,Europe/Paris,,ONA, +ONA:SA:FNSO,1,"Fenaison",47.269667,-1.592476,,1,,Europe/Paris,,ONA, +ONA:SA:FOCH,1,"Foch-Cathédrale",47.219253,-1.550446,,1,,Europe/Paris,,ONA, +ONA:SA:FOND,1,"Fonderies",47.206412,-1.543963,,1,,Europe/Paris,,ONA, +ONA:SA:FORU,1,"Forum d'Orvault",47.254431,-1.615179,,1,,Europe/Paris,,ONA, +ONA:SA:FOTA,1,"Fontaine",47.205542,-1.489185,,1,,Europe/Paris,,ONA, +ONA:SA:FOUL,1,"Foulquier",47.309818,-1.546312,,1,,Europe/Paris,,ONA, +ONA:SA:FRAC,1,"Frachon",47.219112,-1.620766,,1,,Europe/Paris,,ONA, +ONA:SA:FRBA,1,"Frébaudière",47.272306,-1.627087,,1,,Europe/Paris,,ONA, +ONA:SA:FRCH,1,"Fraîches",47.17455,-1.48948,,1,,Europe/Paris,,ONA, +ONA:SA:FRET,1,"Forêt",47.244348,-1.575416,,1,,Europe/Paris,,ONA, +ONA:SA:FRGA,1,"Frégate",47.235246,-1.476104,,1,,Europe/Paris,,ONA, +ONA:SA:FRII,1,"François II",47.21839,-1.683245,,1,,Europe/Paris,,ONA, +ONA:SA:FRKL,1,"Franklin",47.22651,-1.620388,,1,,Europe/Paris,,ONA, +ONA:SA:FRMO,1,"Frémoire",47.15337,-1.476349,,1,,Europe/Paris,,ONA, +ONA:SA:FRNE,1,"Frênes",47.253238,-1.487572,,1,,Europe/Paris,,ONA, +ONA:SA:FRON,1,"Frêne Rond",47.190261,-1.496417,,1,,Europe/Paris,,ONA, +ONA:SA:FTAB,1,"Félix Tableau",47.187402,-1.546812,,1,,Europe/Paris,,ONA, +ONA:SA:FTDO,1,"Fructidor",47.23952,-1.561045,,1,,Europe/Paris,,ONA, +ONA:SA:GADO,1,"Gandonnière",47.307129,-1.540555,,1,,Europe/Paris,,ONA, +ONA:SA:GAGN,1,"Gagnerie",47.232231,-1.507226,,1,,Europe/Paris,,ONA, +ONA:SA:GAIL,1,"Garillère",47.192511,-1.520757,,1,,Europe/Paris,,ONA, +ONA:SA:GALH,1,"Galheur",47.165973,-1.58118,,1,,Europe/Paris,,ONA, +ONA:SA:GAMB,1,"Gambetta",47.22353,-1.538462,,1,,Europe/Paris,,ONA, +ONA:SA:GARO,1,"Garotterie",47.12621,-1.627103,,1,,Europe/Paris,,ONA, +ONA:SA:GASS,1,"Gassendi",47.199875,-1.580094,,1,,Europe/Paris,,ONA, +ONA:SA:GATI,1,"Gâtine",47.21325,-1.660121,,1,,Europe/Paris,,ONA, +ONA:SA:GAUT,1,"Gautellerie",47.177418,-1.602097,,1,,Europe/Paris,,ONA, +ONA:SA:GBLO,1,"Grand Blottereau",47.229758,-1.511147,,1,,Europe/Paris,,ONA, +ONA:SA:GBNI,1,"Guiblinière",47.292317,-1.520286,,1,,Europe/Paris,,ONA, +ONA:SA:GBTA,1,"Grande-Bretagne",47.262203,-1.502369,,1,,Europe/Paris,,ONA, +ONA:SA:GCEN,1,"Grande Censive",47.252145,-1.549928,,1,,Europe/Paris,,ONA, +ONA:SA:GCHE,1,"Gachet",47.293276,-1.523929,,1,,Europe/Paris,,ONA, +ONA:SA:GCOU,1,"Gauchoux",47.14604,-1.60045,,1,,Europe/Paris,,ONA, +ONA:SA:GCSO,1,"Glacisol",47.251599,-1.504386,,1,,Europe/Paris,,ONA, +ONA:SA:GDCH,1,"Gare de Chantenay",47.197886,-1.59356,,1,,Europe/Paris,,ONA, +ONA:SA:GDEN,1,"Goldens",47.161756,-1.500451,,1,,Europe/Paris,,ONA, +ONA:SA:GDNN,1,"Gendronnerie",47.127328,-1.639064,,1,,Europe/Paris,,ONA, +ONA:SA:GDOU,1,"Grande Ouche",47.181336,-1.579663,,1,,Europe/Paris,,ONA, +ONA:SA:GDPI,1,"Grande Pièce",47.198964,-1.510915,,1,,Europe/Paris,,ONA, +ONA:SA:GDRE,1,"Guindré",47.239216,-1.538012,,1,,Europe/Paris,,ONA, +ONA:SA:GELL,1,"Grande Noëlle",47.162418,-1.502215,,1,,Europe/Paris,,ONA, +ONA:SA:GERA,1,"Géraudière",47.26174,-1.567163,,1,,Europe/Paris,,ONA, +ONA:SA:GESV,1,"Gesvrine",47.269813,-1.552139,,1,,Europe/Paris,,ONA, +ONA:SA:GEVR,1,"Gesvres",47.263626,-1.548646,,1,,Europe/Paris,,ONA, +ONA:SA:GGNO,1,"Grignon",47.216468,-1.46657,,1,,Europe/Paris,,ONA, +ONA:SA:GGUI,1,"Gauguin",47.166929,-1.555629,,1,,Europe/Paris,,ONA, +ONA:SA:GIAR,1,"Gilarderie",47.185899,-1.682522,,1,,Europe/Paris,,ONA, +ONA:SA:GIBR,1,"Gibraye",47.204957,-1.517557,,1,,Europe/Paris,,ONA, +ONA:SA:GIND,1,"Gare d'Indre",47.204889,-1.662272,,1,,Europe/Paris,,ONA, +ONA:SA:GIQU,1,"Gicquelière",47.258057,-1.458946,,1,,Europe/Paris,,ONA, +ONA:SA:GLAU,1,"Grillaud",47.220266,-1.581719,,1,,Europe/Paris,,ONA, +ONA:SA:GLDE,1,"Grande Lande",47.192292,-1.497619,,1,,Europe/Paris,,ONA, +ONA:SA:GLIE,1,"Gilière",47.299223,-1.553353,,1,,Europe/Paris,,ONA, +ONA:SA:GLNE,1,"Galarne",47.208144,-1.529946,,1,,Europe/Paris,,ONA, +ONA:SA:GMAR,1,"Gare Maritime",47.20704,-1.573349,,1,,Europe/Paris,,ONA, +ONA:SA:GMOL,1,"Guy Mollet",47.249046,-1.55367,,1,,Europe/Paris,,ONA, +ONA:SA:GNRA,1,"Gréneraie",47.199399,-1.532882,,1,,Europe/Paris,,ONA, +ONA:SA:GOBI,1,"Gobinière",47.249443,-1.587164,,1,,Europe/Paris,,ONA, +ONA:SA:GOCH,1,"Grande Ouche",47.211239,-1.466727,,1,,Europe/Paris,,ONA, +ONA:SA:GOLF,1,"Golf",47.2365,-1.604861,,1,,Europe/Paris,,ONA, +ONA:SA:GONI,1,"Gournière",47.268285,-1.549381,,1,,Europe/Paris,,ONA, +ONA:SA:GPOR,1,"Grand Portail",47.202345,-1.52292,,1,,Europe/Paris,,ONA, +ONA:SA:GRAM,1,"Grammoire",47.183573,-1.472688,,1,,Europe/Paris,,ONA, +ONA:SA:GRCH,1,"Grand chemin",47.197353,-1.784087,,1,,Europe/Paris,,ONA, +ONA:SA:GRET,1,"Gare de l'Etat",47.203974,-1.560174,,1,,Europe/Paris,,ONA, +ONA:SA:GRIM,1,"Grimm",47.216097,-1.645528,,1,,Europe/Paris,,ONA, +ONA:SA:GRLI,1,"Graslin",47.212779,-1.563459,,1,,Europe/Paris,,ONA, +ONA:SA:GRMA,1,"Grimau",47.227763,-1.654595,,1,,Europe/Paris,,ONA, +ONA:SA:GRPO,1,"Gripots",47.192395,-1.491813,,1,,Europe/Paris,,ONA, +ONA:SA:GRTE,1,"Garotterie",47.224995,-1.60679,,1,,Europe/Paris,,ONA, +ONA:SA:GSAN,1,"George Sand",47.165821,-1.545776,,1,,Europe/Paris,,ONA, +ONA:SA:GSEN,1,"Grasse Noue",47.280245,-1.581882,,1,,Europe/Paris,,ONA, +ONA:SA:GSIN,1,"Grassinière",47.165827,-1.508006,,1,,Europe/Paris,,ONA, +ONA:SA:GSNO,1,"Gare SNCF Nord",47.217804,-1.542674,,1,,Europe/Paris,,ONA, +ONA:SA:GSSU,1,"Gare SNCF Sud",47.215196,-1.542287,,1,,Europe/Paris,,ONA, +ONA:SA:GTLA,1,"Garettes-Landreau",47.273091,-1.630454,,1,,Europe/Paris,,ONA, +ONA:SA:GTVE,1,"Gaston Veil",47.210163,-1.555602,,1,,Europe/Paris,,ONA, +ONA:SA:GULO,1,"Guilloterie",47.172545,-1.557358,,1,,Europe/Paris,,ONA, +ONA:SA:GURO,1,"Gustave Roch",47.20407,-1.551987,,1,,Europe/Paris,,ONA, +ONA:SA:GVNO,1,"Gare de Vertou Nord",47.186988,-1.478347,,1,,Europe/Paris,,ONA, +ONA:SA:GVSU,1,"Gare de Vertou Sud",47.185693,-1.47667,,1,,Europe/Paris,,ONA, +ONA:SA:HALU,1,"Haluchère-Batignolles",47.249361,-1.522874,,1,,Europe/Paris,,ONA, +ONA:SA:HARO,1,"Harouys",47.217056,-1.567472,,1,,Europe/Paris,,ONA, +ONA:SA:HAUB,1,"Haubans",47.214451,-1.529873,,1,,Europe/Paris,,ONA, +ONA:SA:HAVE,1,"Halvêque",47.257463,-1.520285,,1,,Europe/Paris,,ONA, +ONA:SA:HBAN,1,"Hangar à Bananes",47.200382,-1.573127,,1,,Europe/Paris,,ONA, +ONA:SA:HBDE,1,"Halbarderie",47.268287,-1.438106,,1,,Europe/Paris,,ONA, +ONA:SA:HBLI,1,"Hôpital Bellier",47.221016,-1.524795,,1,,Europe/Paris,,ONA, +ONA:SA:HBRA,1,"Herbray",47.150485,-1.470995,,1,,Europe/Paris,,ONA, +ONA:SA:HCOU,1,"Hauts de Couëron",47.24057,-1.669702,,1,,Europe/Paris,,ONA, +ONA:SA:HDIE,1,"Haudrière",47.154471,-1.467582,,1,,Europe/Paris,,ONA, +ONA:SA:HERM,1,"Hermeland",47.229966,-1.616809,,1,,Europe/Paris,,ONA, +ONA:SA:HFLE,1,"Hameau Fleuri",47.251055,-1.59006,,1,,Europe/Paris,,ONA, +ONA:SA:HFNA,1,"Haute Forêt",47.233495,-1.555448,,1,,Europe/Paris,,ONA, +ONA:SA:HFVE,1,"Haute Forêt",47.168314,-1.465659,,1,,Europe/Paris,,ONA, +ONA:SA:HILE,1,"Haute Ile",47.194736,-1.55633,,1,,Europe/Paris,,ONA, +ONA:SA:HIND,1,"Haute Indre",47.195408,-1.649935,,1,,Europe/Paris,,ONA, +ONA:SA:HIPP,1,"Hippodrome",47.247055,-1.567281,,1,,Europe/Paris,,ONA, +ONA:SA:HLAN,1,"Haute Lande",47.153955,-1.523658,,1,,Europe/Paris,,ONA, +ONA:SA:HMLL,1,"Houmaille",47.189103,-1.586969,,1,,Europe/Paris,,ONA, +ONA:SA:HMVE,1,"8 Mai",47.172683,-1.472441,,1,,Europe/Paris,,ONA, +ONA:SA:HOGR,1,"Hongrie",47.216105,-1.523516,,1,,Europe/Paris,,ONA, +ONA:SA:HPLA,1,"Hôpital Laënnec",47.236885,-1.64086,,1,,Europe/Paris,,ONA, +ONA:SA:HREG,1,"Hôtel de Région",47.210313,-1.526253,,1,,Europe/Paris,,ONA, +ONA:SA:HRLL,1,"Hérelle",47.201363,-1.586679,,1,,Europe/Paris,,ONA, +ONA:SA:HVCQ,1,"Mairie de Carquefou",47.298899,-1.490311,,1,,Europe/Paris,,ONA, +ONA:SA:HVNA,1,"Hôtel de Ville",47.217772,-1.554305,,1,,Europe/Paris,,ONA, +ONA:SA:HVTI,1,"Helvêtie",47.250821,-1.497981,,1,,Europe/Paris,,ONA, +ONA:SA:IDFR,1,"Ile de France",47.169408,-1.467982,,1,,Europe/Paris,,ONA, +ONA:SA:IDNA,1,"Ile de Nantes",47.205956,-1.538775,,1,,Europe/Paris,,ONA, +ONA:SA:IMPR,1,"Imprimeurs",47.23866,-1.67022,,1,,Europe/Paris,,ONA, +ONA:SA:INLA,1,"Internat Laënnec",47.235002,-1.640588,,1,,Europe/Paris,,ONA, +ONA:SA:INRE,1,"Indre",47.201255,-1.668345,,1,,Europe/Paris,,ONA, +ONA:SA:IRLA,1,"Irlandais",47.223185,-1.607053,,1,,Europe/Paris,,ONA, +ONA:SA:IROI,1,"Iroise",47.248366,-1.536426,,1,,Europe/Paris,,ONA, +ONA:SA:ISLE,1,"Islettes",47.26334,-1.476255,,1,,Europe/Paris,,ONA, +ONA:SA:IUTH,1,"IUT",47.297868,-1.505065,,1,,Europe/Paris,,ONA, +ONA:SA:JALI,1,"Jalière",47.264069,-1.596957,,1,,Europe/Paris,,ONA, +ONA:SA:JAME,1,"Jamet",47.21001,-1.602513,,1,,Europe/Paris,,ONA, +ONA:SA:JANA,1,"Jaunais",47.17595,-1.53383,,1,,Europe/Paris,,ONA, +ONA:SA:JAPY,1,"Japy",47.259465,-1.511565,,1,,Europe/Paris,,ONA, +ONA:SA:JARI,1,"Jarriais",47.212902,-1.719053,,1,,Europe/Paris,,ONA, +ONA:SA:JAUR,1,"Jacqueline Auriol",47.271044,-1.472042,,1,,Europe/Paris,,ONA, +ONA:SA:JBAR,1,"Jean Bart",47.19921,-1.675328,,1,,Europe/Paris,,ONA, +ONA:SA:JBNA,1,"Jeanne Bernard",47.235252,-1.591281,,1,,Europe/Paris,,ONA, +ONA:SA:JCAR,1,"Jacques Cartier",47.223895,-1.636192,,1,,Europe/Paris,,ONA, +ONA:SA:JCDM,1,"Jacques Demy",47.158136,-1.682829,,1,,Europe/Paris,,ONA, +ONA:SA:JCOU,1,"Joncours",47.220005,-1.586724,,1,,Europe/Paris,,ONA, +ONA:SA:JDGA,1,"Jardins de Gaïa",47.157498,-1.678146,,1,,Europe/Paris,,ONA, +ONA:SA:JEVV,1,"Jean V",47.211975,-1.565911,,1,,Europe/Paris,,ONA, +ONA:SA:JFER,1,"Jules Ferry",47.250902,-1.487405,,1,,Europe/Paris,,ONA, +ONA:SA:JFRA,1,"Jean Fraix",47.186124,-1.541964,,1,,Europe/Paris,,ONA, +ONA:SA:JGUE,1,"Jaguère",47.175634,-1.567225,,1,,Europe/Paris,,ONA, +ONA:SA:JHDI,1,"Jahardières",47.1254,-1.642748,,1,,Europe/Paris,,ONA, +ONA:SA:JJCE,1,"Jean Jaurès",47.301234,-1.549792,,1,,Europe/Paris,,ONA, +ONA:SA:JJNA,1,"Jean Jaurès",47.218389,-1.560034,,1,,Europe/Paris,,ONA, +ONA:SA:JMAC,1,"Jean Macé",47.200554,-1.589262,,1,,Europe/Paris,,ONA, +ONA:SA:JMLI,1,"Jean Moulin",47.206744,-1.600554,,1,,Europe/Paris,,ONA, +ONA:SA:JMNT,1,"Jean Monnet",47.166581,-1.549925,,1,,Europe/Paris,,ONA, +ONA:SA:JMON,1,"Jean Monnet",47.166256,-1.465249,,1,,Europe/Paris,,ONA, +ONA:SA:JNAI,1,"Jaunaie",47.218898,-1.727837,,1,,Europe/Paris,,ONA, +ONA:SA:JNLI,1,"Jonelière",47.251643,-1.540764,,1,,Europe/Paris,,ONA, +ONA:SA:JOTE,1,"Jouetterie",47.131479,-1.662496,,1,,Europe/Paris,,ONA, +ONA:SA:JPER,1,"Jean Perrin",47.181252,-1.560898,,1,,Europe/Paris,,ONA, +ONA:SA:JROS,1,"Jean Rostand",47.246064,-1.593794,,1,,Europe/Paris,,ONA, +ONA:SA:JTIC,1,"Justice",47.209482,-1.631025,,1,,Europe/Paris,,ONA, +ONA:SA:JUIV,1,"Juiverie",47.210782,-1.624644,,1,,Europe/Paris,,ONA, +ONA:SA:JUME,1,"Jumelière",47.294301,-1.487731,,1,,Europe/Paris,,ONA, +ONA:SA:JVAL,1,"Jules Vallès",47.173249,-1.571146,,1,,Europe/Paris,,ONA, +ONA:SA:JVNA,1,"Jules Verne",47.248827,-1.517281,,1,,Europe/Paris,,ONA, +ONA:SA:JVRA,1,"Janvraie",47.199945,-1.612344,,1,,Europe/Paris,,ONA, +ONA:SA:KERE,1,"Keren",47.244407,-1.533627,,1,,Europe/Paris,,ONA, +ONA:SA:KOEN,1,"Koenig",47.198036,-1.615507,,1,,Europe/Paris,,ONA, +ONA:SA:KOUF,1,"Koufra",47.250191,-1.530342,,1,,Europe/Paris,,ONA, +ONA:SA:LABE,1,"Lac de Beaulieu",47.21933,-1.692438,,1,,Europe/Paris,,ONA, +ONA:SA:LACH,1,"L'Arche",47.212828,-1.70834,,1,,Europe/Paris,,ONA, +ONA:SA:LADO,1,"Ladoumègue",47.296142,-1.48654,,1,,Europe/Paris,,ONA, +ONA:SA:LAGE,1,"Largeau",47.195033,-1.509972,,1,,Europe/Paris,,ONA, +ONA:SA:LAIL,1,"Les Ailes",47.170213,-1.575679,,1,,Europe/Paris,,ONA, +ONA:SA:LALL,1,"Lallié",47.227552,-1.5458,,1,,Europe/Paris,,ONA, +ONA:SA:LAMA,1,"Lamartine",47.216488,-1.578931,,1,,Europe/Paris,,ONA, +ONA:SA:LANA,1,"Launay",47.265467,-1.632137,,1,,Europe/Paris,,ONA, +ONA:SA:LAUR,1,"Lauriers",47.20487,-1.605307,,1,,Europe/Paris,,ONA, +ONA:SA:LAXX,1,"La Croix",47.165276,-1.486705,,1,,Europe/Paris,,ONA, +ONA:SA:LBAU,1,"Les Bauches",47.263366,-1.677233,,1,,Europe/Paris,,ONA, +ONA:SA:LBER,1,"Lindbergh",47.154607,-1.597514,,1,,Europe/Paris,,ONA, +ONA:SA:LBOS,1,"La Brosse",47.33307,-1.569862,,1,,Europe/Paris,,ONA, +ONA:SA:LBPI,1,"L'Ebaupin",47.171615,-1.510006,,1,,Europe/Paris,,ONA, +ONA:SA:LBTE,1,"Liberté",47.198308,-1.589098,,1,,Europe/Paris,,ONA, +ONA:SA:LCAR,1,"Le Cardo",47.261702,-1.584227,,1,,Europe/Paris,,ONA, +ONA:SA:LCBU,1,"Le Corbusier",47.19009,-1.568544,,1,,Europe/Paris,,ONA, +ONA:SA:LCEE,1,"La Carrée",47.168892,-1.542829,,1,,Europe/Paris,,ONA, +ONA:SA:LCLE,1,"La Coulée",47.260133,-1.574719,,1,,Europe/Paris,,ONA, +ONA:SA:LCNE,1,"Le Chêne",47.16526,-1.484459,,1,,Europe/Paris,,ONA, +ONA:SA:LCOG,1,"La Cogne",47.28684,-1.557349,,1,,Europe/Paris,,ONA, +ONA:SA:LCSE,1,"La Close",47.240834,-1.572779,,1,,Europe/Paris,,ONA, +ONA:SA:LCTE,1,"La Côte",47.282142,-1.560448,,1,,Europe/Paris,,ONA, +ONA:SA:LDAS,1,"Landas",47.169338,-1.510767,,1,,Europe/Paris,,ONA, +ONA:SA:LDRE,1,"Landreau",47.232479,-1.515971,,1,,Europe/Paris,,ONA, +ONA:SA:LDSS,1,"Landas",47.174715,-1.559761,,1,,Europe/Paris,,ONA, +ONA:SA:LECH,1,"Lechat",47.203532,-1.581155,,1,,Europe/Paris,,ONA, +ONA:SA:LEGU,1,"Leygues",47.20324,-1.541883,,1,,Europe/Paris,,ONA, +ONA:SA:LEVO,1,"Levoyer",47.19444,-1.581018,,1,,Europe/Paris,,ONA, +ONA:SA:LFAU,1,"Les Faulx",47.15723,-1.522706,,1,,Europe/Paris,,ONA, +ONA:SA:LFER,1,"La ferme",47.264249,-1.680342,,1,,Europe/Paris,,ONA, +ONA:SA:LFLE,1,"Laurier Fleuri",47.187815,-1.483294,,1,,Europe/Paris,,ONA, +ONA:SA:LFOR,1,"La Forêt",47.149475,-1.639387,,1,,Europe/Paris,,ONA, +ONA:SA:LFVR,1,"Lefeuvre",47.266861,-1.49503,,1,,Europe/Paris,,ONA, +ONA:SA:LGAR,1,"La Garde",47.255762,-1.509182,,1,,Europe/Paris,,ONA, +ONA:SA:LGOF,1,"Le Goffic",47.230869,-1.563852,,1,,Europe/Paris,,ONA, +ONA:SA:LGRI,1,"La Grille",47.250928,-1.48119,,1,,Europe/Paris,,ONA, +ONA:SA:LGTH,1,"Lagathu",47.180363,-1.536526,,1,,Europe/Paris,,ONA, +ONA:SA:LHAC,1,"La Hache",47.262318,-1.498938,,1,,Europe/Paris,,ONA, +ONA:SA:LHER,1,"La Herdrie",47.197737,-1.452818,,1,,Europe/Paris,,ONA, +ONA:SA:LHIE,1,"La Haie",47.289956,-1.542353,,1,,Europe/Paris,,ONA, +ONA:SA:LHLE,1,"Le Halleray",47.269841,-1.456607,,1,,Europe/Paris,,ONA, +ONA:SA:LHOU,1,"La Houssais",47.173685,-1.55295,,1,,Europe/Paris,,ONA, +ONA:SA:LHPI,1,"L'Hopitau",47.272261,-1.551655,,1,,Europe/Paris,,ONA, +ONA:SA:LIBE,1,"Libération",47.177281,-1.679101,,1,,Europe/Paris,,ONA, +ONA:SA:LILA,1,"Lilas",47.137766,-1.468903,,1,,Europe/Paris,,ONA, +ONA:SA:LION,1,"Lionnière",47.218667,-1.695957,,1,,Europe/Paris,,ONA, +ONA:SA:LIPP,1,"Lippmann",47.238336,-1.521285,,1,,Europe/Paris,,ONA, +ONA:SA:LITT,1,"Littré",47.217808,-1.582465,,1,,Europe/Paris,,ONA, +ONA:SA:LJOS,1,"Léon Jost",47.235837,-1.563421,,1,,Europe/Paris,,ONA, +ONA:SA:LLGR,1,"Léo Lagrange",47.296996,-1.555309,,1,,Europe/Paris,,ONA, +ONA:SA:LLIO,1,"Les Lions",47.249826,-1.6155,,1,,Europe/Paris,,ONA, +ONA:SA:LLMO,1,"Le Clémois",47.137383,-1.722577,,1,,Europe/Paris,,ONA, +ONA:SA:LLOR,1,"La Lorie",47.23499,-1.656589,,1,,Europe/Paris,,ONA, +ONA:SA:LMAR,1,"La Marche",47.180677,-1.659143,,1,,Europe/Paris,,ONA, +ONA:SA:LMBR,1,"Lambert",47.171362,-1.539045,,1,,Europe/Paris,,ONA, +ONA:SA:LMEE,1,"La martinière",47.206332,-1.784911,,1,,Europe/Paris,,ONA, +ONA:SA:LMIC,1,"Louise Michel",47.219885,-1.616593,,1,,Europe/Paris,,ONA, +ONA:SA:LMNE,1,"Lemoine",47.235563,-1.547533,,1,,Europe/Paris,,ONA, +ONA:SA:LMRI,1,"Lamoricière",47.214456,-1.572437,,1,,Europe/Paris,,ONA, +ONA:SA:LNAI,1,"Le Nain",47.226635,-1.600961,,1,,Europe/Paris,,ONA, +ONA:SA:LNOU,1,"La Noue",47.140388,-1.607691,,1,,Europe/Paris,,ONA, +ONA:SA:LNTT,1,"Linot",47.265471,-1.52589,,1,,Europe/Paris,,ONA, +ONA:SA:LOIR,1,"Loire",47.248498,-1.486572,,1,,Europe/Paris,,ONA, +ONA:SA:LONG,1,"Longchamp",47.234843,-1.582126,,1,,Europe/Paris,,ONA, +ONA:SA:LPBA,1,"Bac du Pellerin",47.202897,-1.754907,,1,,Europe/Paris,,ONA, +ONA:SA:LPEL,1,"Le Pellerin",47.201215,-1.75914,,1,,Europe/Paris,,ONA, +ONA:SA:LPLE,1,"La Plée",47.194006,-1.462199,,1,,Europe/Paris,,ONA, +ONA:SA:LPME,1,"La Plume",47.194922,-1.505207,,1,,Europe/Paris,,ONA, +ONA:SA:LRCH,1,"La Roche",47.21683,-1.518016,,1,,Europe/Paris,,ONA, +ONA:SA:LRHE,1,"Les Roches",47.263732,-1.580142,,1,,Europe/Paris,,ONA, +ONA:SA:LRNE,1,"Lourneau",47.200537,-1.488035,,1,,Europe/Paris,,ONA, +ONA:SA:LRYA,1,"Le Gray 2",47.283322,-1.584093,,1,,Europe/Paris,,ONA, +ONA:SA:LSAL,1,"La Salle",47.214424,-1.688499,,1,,Europe/Paris,,ONA, +ONA:SA:LSLL,1,"Les Salles",47.25027,-1.536035,,1,,Europe/Paris,,ONA, +ONA:SA:LSOU,1,"La Source",47.305583,-1.551698,,1,,Europe/Paris,,ONA, +ONA:SA:LSYY,1,"Léon Say",47.229604,-1.569313,,1,,Europe/Paris,,ONA, +ONA:SA:LTOU,1,"Le Tour",47.151608,-1.689456,,1,,Europe/Paris,,ONA, +ONA:SA:LUNI,1,"Lieu Unique",47.215851,-1.545308,,1,,Europe/Paris,,ONA, +ONA:SA:LYBR,1,"Lycée Brottier",47.160665,-1.677723,,1,,Europe/Paris,,ONA, +ONA:SA:LYCQ,1,"Lycée de Carquefou",47.279391,-1.491958,,1,,Europe/Paris,,ONA, +ONA:SA:LYOR,1,"Lycée d'Orbigny",47.154271,-1.680281,,1,,Europe/Paris,,ONA, +ONA:SA:LYPE,1,"Lycée Appert",47.251067,-1.610829,,1,,Europe/Paris,,ONA, +ONA:SA:LYRI,1,"Lycée Rieffel",47.255558,-1.642646,,1,,Europe/Paris,,ONA, +ONA:SA:LZCA,1,"Lusançay",47.202679,-1.582414,,1,,Europe/Paris,,ONA, +ONA:SA:MAAR,1,"Maillardière",47.273871,-1.633952,,1,,Europe/Paris,,ONA, +ONA:SA:MACH,1,"MIN",47.201577,-1.553788,,1,,Europe/Paris,,ONA, +ONA:SA:MADO,1,"Mandon",47.160404,-1.470644,,1,,Europe/Paris,,ONA, +ONA:SA:MAGA,1,"Mauves-Gare",47.293185,-1.389698,,1,,Europe/Paris,,ONA, +ONA:SA:MAI8,1,"8 Mai",47.189241,-1.551041,,1,,Europe/Paris,,ONA, +ONA:SA:MALL,1,"Mail",47.269053,-1.611628,,1,,Europe/Paris,,ONA, +ONA:SA:MAMT,1,"8 Mai",47.179676,-1.677563,,1,,Europe/Paris,,ONA, +ONA:SA:MARR,1,"Maison d'Arrêt",47.266404,-1.503333,,1,,Europe/Paris,,ONA, +ONA:SA:MASS,1,"Massigné",47.298878,-1.579542,,1,,Europe/Paris,,ONA, +ONA:SA:MATI,1,"Matière",47.276485,-1.449007,,1,,Europe/Paris,,ONA, +ONA:SA:MAUC,1,"Centre De Mauves",47.296775,-1.39286,,1,,Europe/Paris,,ONA, +ONA:SA:MAZE,1,"Mazères",47.313622,-1.350605,,1,,Europe/Paris,,ONA, +ONA:SA:MBCH,1,"Maison Blanche",47.221644,-1.604692,,1,,Europe/Paris,,ONA, +ONA:SA:MBLA,1,"Mont-Blanc",47.17577,-1.555215,,1,,Europe/Paris,,ONA, +ONA:SA:MBOU,1,"Mairie de Bouguenais",47.17901,-1.618726,,1,,Europe/Paris,,ONA, +ONA:SA:MBRU,1,"Moulin Brûlé",47.259469,-1.65458,,1,,Europe/Paris,,ONA, +ONA:SA:MBSE,1,"Moulin Boisseau",47.288386,-1.484131,,1,,Europe/Paris,,ONA, +ONA:SA:MCAS,1,"Moulin Cassé",47.25628,-1.469138,,1,,Europe/Paris,,ONA, +ONA:SA:MCCO,1,"Marché Commun",47.259673,-1.499939,,1,,Europe/Paris,,ONA, +ONA:SA:MCHA,1,"Mairie de Chantenay",47.206367,-1.587839,,1,,Europe/Paris,,ONA, +ONA:SA:MCOU,1,"Mairie de Couëron",47.21217,-1.727062,,1,,Europe/Paris,,ONA, +ONA:SA:MCUR,1,"Madame Curie",47.18913,-1.554337,,1,,Europe/Paris,,ONA, +ONA:SA:MDAR,1,"Maison des Arts",47.211116,-1.617531,,1,,Europe/Paris,,ONA, +ONA:SA:MDEL,1,"Mandel",47.202591,-1.537078,,1,,Europe/Paris,,ONA, +ONA:SA:MDLA,1,"Moulin des Landes",47.261544,-1.481551,,1,,Europe/Paris,,ONA, +ONA:SA:MDNE,1,"Madeleine",47.275799,-1.483496,,1,,Europe/Paris,,ONA, +ONA:SA:MDOU,1,"Mairie de Doulon",47.226991,-1.518484,,1,,Europe/Paris,,ONA, +ONA:SA:MDPO,1,"Moulin de Porterie",47.275616,-1.51339,,1,,Europe/Paris,,ONA, +ONA:SA:MDRE,1,"Madoire",47.265083,-1.638063,,1,,Europe/Paris,,ONA, +ONA:SA:MDSI,1,"Mondésir",47.217731,-1.568843,,1,,Europe/Paris,,ONA, +ONA:SA:MDTH,1,"Médiathèque",47.211054,-1.561218,,1,,Europe/Paris,,ONA, +ONA:SA:MEDI,1,"Méditerranée",47.271066,-1.48501,,1,,Europe/Paris,,ONA, +ONA:SA:MELI,1,"Méliès",47.181678,-1.556305,,1,,Europe/Paris,,ONA, +ONA:SA:META,1,"Métairie",47.213809,-1.698367,,1,,Europe/Paris,,ONA, +ONA:SA:MGAL,1,"Marie Galante",47.26417,-1.451045,,1,,Europe/Paris,,ONA, +ONA:SA:MGCH,1,"Monge-Chauvinière",47.252837,-1.569423,,1,,Europe/Paris,,ONA, +ONA:SA:MGDR,1,"Mongendrière",47.292337,-1.554572,,1,,Europe/Paris,,ONA, +ONA:SA:MGEL,1,"Margelle",47.272716,-1.594165,,1,,Europe/Paris,,ONA, +ONA:SA:MGIN,1,"Mangin",47.201606,-1.544936,,1,,Europe/Paris,,ONA, +ONA:SA:MGLI,1,"Magnoliers",47.226203,-1.605689,,1,,Europe/Paris,,ONA, +ONA:SA:MGNO,1,"Mignonnerie",47.242623,-1.481787,,1,,Europe/Paris,,ONA, +ONA:SA:MGUA,1,"Mainguais",47.282665,-1.485575,,1,,Europe/Paris,,ONA, +ONA:SA:MHDI,1,"Mahaudières",47.188925,-1.560399,,1,,Europe/Paris,,ONA, +ONA:SA:MHUI,1,"Moulin à l'Huile",47.177762,-1.562889,,1,,Europe/Paris,,ONA, +ONA:SA:MIAI,1,"Minais",47.257099,-1.466154,,1,,Europe/Paris,,ONA, +ONA:SA:MICH,1,"Michelet",47.234511,-1.557374,,1,,Europe/Paris,,ONA, +ONA:SA:MIMO,1,"Mimosas",47.241321,-1.587626,,1,,Europe/Paris,,ONA, +ONA:SA:MIND,1,"Mairie d'Indre",47.200716,-1.668304,,1,,Europe/Paris,,ONA, +ONA:SA:MITR,1,"Mitrie",47.227755,-1.525282,,1,,Europe/Paris,,ONA, +ONA:SA:MKSU,1,"Malakoff",47.216001,-1.521261,,1,,Europe/Paris,,ONA, +ONA:SA:MLAN,1,"Magellan",47.188083,-1.464289,,1,,Europe/Paris,,ONA, +ONA:SA:MLCH,1,"Morlachère",47.162043,-1.483701,,1,,Europe/Paris,,ONA, +ONA:SA:MLHE,1,"Moulin Hérel",47.219434,-1.63758,,1,,Europe/Paris,,ONA, +ONA:SA:MLIN,1,"Moulin",47.188667,-1.503701,,1,,Europe/Paris,,ONA, +ONA:SA:MLLI,1,"Mellinet",47.211753,-1.577791,,1,,Europe/Paris,,ONA, +ONA:SA:MLNE,1,"Moulinets",47.209815,-1.629199,,1,,Europe/Paris,,ONA, +ONA:SA:MLON,1,"Mulonnière",47.265563,-1.549977,,1,,Europe/Paris,,ONA, +ONA:SA:MLRA,1,"Malraux",47.254308,-1.517676,,1,,Europe/Paris,,ONA, +ONA:SA:MMNA,1,"Mermoz",47.23934,-1.584968,,1,,Europe/Paris,,ONA, +ONA:SA:MMSS,1,"Mermoz",47.19872,-1.515523,,1,,Europe/Paris,,ONA, +ONA:SA:MNEF,1,"Moulin Neuf",47.229852,-1.516442,,1,,Europe/Paris,,ONA, +ONA:SA:MNFA,1,"Manufacture",47.218691,-1.537715,,1,,Europe/Paris,,ONA, +ONA:SA:MNIE,1,"Moulinier",47.135264,-1.665564,,1,,Europe/Paris,,ONA, +ONA:SA:MNOT,1,"Minoterie",47.216866,-1.721601,,1,,Europe/Paris,,ONA, +ONA:SA:MNSS,1,"Malnoue",47.20321,-1.505141,,1,,Europe/Paris,,ONA, +ONA:SA:MNTR,1,"Ménétrier",47.241221,-1.523874,,1,,Europe/Paris,,ONA, +ONA:SA:MNVE,1,"Maison Neuve",47.274624,-1.467268,,1,,Europe/Paris,,ONA, +ONA:SA:MOCT,1,"Moulin Collet",47.200329,-1.766341,,1,,Europe/Paris,,ONA, +ONA:SA:MOET,1,"Mouettes",47.210551,-1.742273,,1,,Europe/Paris,,ONA, +ONA:SA:MOIN,1,"Moinard",47.213348,-1.729399,,1,,Europe/Paris,,ONA, +ONA:SA:MONE,1,"Moinet",47.264698,-1.492361,,1,,Europe/Paris,,ONA, +ONA:SA:MORH,1,"Morrhonnière-Petit Port",47.240997,-1.557317,,1,,Europe/Paris,,ONA, +ONA:SA:MOTE,1,"Motte Rouge",47.227965,-1.553856,,1,,Europe/Paris,,ONA, +ONA:SA:MOUT,1,"Moutonnerie",47.219556,-1.533415,,1,,Europe/Paris,,ONA, +ONA:SA:MOVA,1,"Mairie d'Orvault",47.271162,-1.623694,,1,,Europe/Paris,,ONA, +ONA:SA:MOZI,1,"Monzie",47.203396,-1.539911,,1,,Europe/Paris,,ONA, +ONA:SA:MPAU,1,"Marcel Paul",47.245765,-1.615729,,1,,Europe/Paris,,ONA, +ONA:SA:MPER,1,"Millepertuis",47.222037,-1.67942,,1,,Europe/Paris,,ONA, +ONA:SA:MPMN,1,"Melpomène",47.277039,-1.500391,,1,,Europe/Paris,,ONA, +ONA:SA:MPTA,1,"Maison Poitard",47.147005,-1.648314,,1,,Europe/Paris,,ONA, +ONA:SA:MQDI,1,"Marquis de Dion",47.297091,-1.487799,,1,,Europe/Paris,,ONA, +ONA:SA:MQLI,1,"Mocquelière",47.233132,-1.619027,,1,,Europe/Paris,,ONA, +ONA:SA:MRAI,1,"Maraîchers",47.184656,-1.510547,,1,,Europe/Paris,,ONA, +ONA:SA:MRDI,1,"Maison Radieuse",47.188342,-1.566963,,1,,Europe/Paris,,ONA, +ONA:SA:MREZ,1,"Mairie de Rezé",47.191384,-1.570224,,1,,Europe/Paris,,ONA, +ONA:SA:MRGE,1,"Morges",47.164952,-1.472024,,1,,Europe/Paris,,ONA, +ONA:SA:MRIE,1,"Maurienne",47.275529,-1.442455,,1,,Europe/Paris,,ONA, +ONA:SA:MROT,1,"Moulin Rothard",47.195908,-1.741157,,1,,Europe/Paris,,ONA, +ONA:SA:MRRI,1,"Marrière",47.237502,-1.524663,,1,,Europe/Paris,,ONA, +ONA:SA:MRTE,1,"Marterie",47.178491,-1.530579,,1,,Europe/Paris,,ONA, +ONA:SA:MSHE,1,"Mairie de St-Herblain",47.210943,-1.648713,,1,,Europe/Paris,,ONA, +ONA:SA:MSLL,1,"Marseillaise",47.20749,-1.591886,,1,,Europe/Paris,,ONA, +ONA:SA:MSOR,1,"Mairie des Sorinières",47.149598,-1.532718,,1,,Europe/Paris,,ONA, +ONA:SA:MSSI,1,"Mississipi",47.237164,-1.609142,,1,,Europe/Paris,,ONA, +ONA:SA:MTEI,1,"Monteil",47.21409,-1.549172,,1,,Europe/Paris,,ONA, +ONA:SA:MTIE,1,"Métairie",47.205249,-1.511499,,1,,Europe/Paris,,ONA, +ONA:SA:MTLI,1,"Martellière",47.199036,-1.524927,,1,,Europe/Paris,,ONA, +ONA:SA:MTRA,1,"Mortrais",47.12801,-1.616678,,1,,Europe/Paris,,ONA, +ONA:SA:MTYY,1,"Monty",47.274214,-1.4331,,1,,Europe/Paris,,ONA, +ONA:SA:MULI,1,"Mouline",47.323548,-1.553138,,1,,Europe/Paris,,ONA, +ONA:SA:MVAN,1,"Mortier Vannerie",47.179985,-1.49938,,1,,Europe/Paris,,ONA, +ONA:SA:MVRD,1,"Monteverdi",47.266577,-1.446321,,1,,Europe/Paris,,ONA, +ONA:SA:MVSI,1,"Mauvoisins",47.190011,-1.525466,,1,,Europe/Paris,,ONA, +ONA:SA:MZUR,1,"Mazure",47.257967,-1.480767,,1,,Europe/Paris,,ONA, +ONA:SA:NATL,1,"Nantes-Atlantique",47.157733,-1.600913,,1,,Europe/Paris,,ONA, +ONA:SA:NBEL,1,"Nouveau Bêle",47.268703,-1.50191,,1,,Europe/Paris,,ONA, +ONA:SA:NBLA,1,"Noé Blanche",47.257395,-1.506125,,1,,Europe/Paris,,ONA, +ONA:SA:NCTE,1,"Noé Cottée",47.194433,-1.479274,,1,,Europe/Paris,,ONA, +ONA:SA:NDRE,1,"Naudières",47.173624,-1.536039,,1,,Europe/Paris,,ONA, +ONA:SA:NETR,1,"Neustrie",47.177217,-1.592175,,1,,Europe/Paris,,ONA, +ONA:SA:NIAG,1,"Niagara",47.306003,-1.493336,,1,,Europe/Paris,,ONA, +ONA:SA:NILL,1,"Nil",47.241867,-1.608563,,1,,Europe/Paris,,ONA, +ONA:SA:NIZA,1,"Nizan",47.205749,-1.550258,,1,,Europe/Paris,,ONA, +ONA:SA:NLBR,1,"Noé Lambert",47.230079,-1.528491,,1,,Europe/Paris,,ONA, +ONA:SA:NLLA,1,"Noé Allais",47.220363,-1.688681,,1,,Europe/Paris,,ONA, +ONA:SA:NOAH,1,"Noë St-Jean",47.219186,-1.734998,,1,,Europe/Paris,,ONA, +ONA:SA:NOBE,1,"Nobel",47.237471,-1.51752,,1,,Europe/Paris,,ONA, +ONA:SA:NOHH,1,"North'House",47.195494,-1.571184,,1,,Europe/Paris,,ONA, +ONA:SA:NONO,1,"Noé Nozou 1",47.130247,-1.637221,,1,,Europe/Paris,,ONA, +ONA:SA:NOSH,1,"Noëlles",47.2403,-1.604348,,1,,Europe/Paris,,ONA, +ONA:SA:NOZO,1,"Noé Nozou 2",47.132104,-1.641635,,1,,Europe/Paris,,ONA, +ONA:SA:NRCA,1,"Noé Rocard",47.163343,-1.490661,,1,,Europe/Paris,,ONA, +ONA:SA:NRDA,1,"Néruda",47.217725,-1.613921,,1,,Europe/Paris,,ONA, +ONA:SA:NVER,1,"Noue Verrière",47.277881,-1.571915,,1,,Europe/Paris,,ONA, +ONA:SA:OBLA,1,"Ouche Blanche",47.179964,-1.56437,,1,,Europe/Paris,,ONA, +ONA:SA:OCEA,1,"Couëron-Océan",47.213363,-1.739182,,1,,Europe/Paris,,ONA, +ONA:SA:OCOR,1,"Ouche Cormier",47.264666,-1.624007,,1,,Europe/Paris,,ONA, +ONA:SA:ODLA,1,"Ouche des landes",47.194889,-1.481817,,1,,Europe/Paris,,ONA, +ONA:SA:ODNE,1,"Ordronneau",47.193837,-1.574895,,1,,Europe/Paris,,ONA, +ONA:SA:OGVA,1,"Orvault-Grand Val",47.262973,-1.594508,,1,,Europe/Paris,,ONA, +ONA:SA:OLIV,1,"Olivier",47.217478,-1.724689,,1,,Europe/Paris,,ONA, +ONA:SA:OLVE,1,"Oliveraie",47.188042,-1.530476,,1,,Europe/Paris,,ONA, +ONA:SA:OLYM,1,"Olympe de Gouge",47.308972,-1.544661,,1,,Europe/Paris,,ONA, +ONA:SA:OMRL,1,"Orvault-Morlière",47.246994,-1.603518,,1,,Europe/Paris,,ONA, +ONA:SA:ONCH,1,"Onchère",47.202762,-1.46705,,1,,Europe/Paris,,ONA, +ONA:SA:OQNE,1,"Ouche Quinet",47.196022,-1.504625,,1,,Europe/Paris,,ONA, +ONA:SA:ORNG,1,"Orangeraie",47.30849,-1.540257,,1,,Europe/Paris,,ONA, +ONA:SA:ORVA,1,"Orvault",47.278783,-1.640406,,1,,Europe/Paris,,ONA, +ONA:SA:OSAN,1,"Ouessant",47.270077,-1.446701,,1,,Europe/Paris,,ONA, +ONA:SA:OTAG,1,"50 Otages",47.219906,-1.555121,,1,,Europe/Paris,,ONA, +ONA:SA:PABO,1,"Paix",47.182432,-1.592425,,1,,Europe/Paris,,ONA, +ONA:SA:PACQ,1,"Parc",47.272354,-1.484176,,1,,Europe/Paris,,ONA, +ONA:SA:PAEB,1,"Pablée",47.215761,-1.740158,,1,,Europe/Paris,,ONA, +ONA:SA:PAGO,1,"Parc",47.214243,-1.479365,,1,,Europe/Paris,,ONA, +ONA:SA:PAJO,1,"Petit Anjou",47.205842,-1.504537,,1,,Europe/Paris,,ONA, +ONA:SA:PALL,1,"Pont Allard",47.196553,-1.666275,,1,,Europe/Paris,,ONA, +ONA:SA:PAMI,1,"Palmiers",47.190118,-1.533004,,1,,Europe/Paris,,ONA, +ONA:SA:PATR,1,"Pâtis Rondin",47.247758,-1.516939,,1,,Europe/Paris,,ONA, +ONA:SA:PB1B,1,"Parc de la Bouvre 1",47.174991,-1.612485,,1,,Europe/Paris,,ONA, +ONA:SA:PBAI,1,"Parc Bel Air",47.178728,-1.474853,,1,,Europe/Paris,,ONA, +ONA:SA:PBER,1,"Paul Bert",47.213226,-1.597991,,1,,Europe/Paris,,ONA, +ONA:SA:PBFF,1,"Paimboeuf",47.176566,-1.619074,,1,,Europe/Paris,,ONA, +ONA:SA:PBLE,1,"Pâtis Brûlé",47.199173,-1.507362,,1,,Europe/Paris,,ONA, +ONA:SA:PBOT,1,"Poulbot",47.213297,-1.64836,,1,,Europe/Paris,,ONA, +ONA:SA:PBRE,1,"Petit Breton",47.213334,-1.600114,,1,,Europe/Paris,,ONA, +ONA:SA:PBUY,1,"Pé de Buzay",47.202501,-1.816338,,1,,Europe/Paris,,ONA, +ONA:SA:PBYE,1,"Port Boyer",47.241094,-1.538412,,1,,Europe/Paris,,ONA, +ONA:SA:PCAC,1,"Petit Carcouët",47.228199,-1.586796,,1,,Europe/Paris,,ONA, +ONA:SA:PCDI,1,"Picaudière",47.280419,-1.485415,,1,,Europe/Paris,,ONA, +ONA:SA:PCEN,1,"Place Centrale",47.262198,-1.671985,,1,,Europe/Paris,,ONA, +ONA:SA:PCHA,1,"Portechaise",47.200721,-1.52571,,1,,Europe/Paris,,ONA, +ONA:SA:PCNN,1,"Planchonnais",47.253572,-1.474765,,1,,Europe/Paris,,ONA, +ONA:SA:PCSI,1,"Petite Censive",47.260503,-1.561119,,1,,Europe/Paris,,ONA, +ONA:SA:PCTI,1,"Petit Chantilly",47.254478,-1.60063,,1,,Europe/Paris,,ONA, +ONA:SA:PCVO,1,"Pontecorvo",47.246149,-1.532695,,1,,Europe/Paris,,ONA, +ONA:SA:PCZI,1,"Pont de Chézine",47.238156,-1.614373,,1,,Europe/Paris,,ONA, +ONA:SA:PDAN,1,"Pas d'Ane",47.181306,-1.470413,,1,,Europe/Paris,,ONA, +ONA:SA:PDCE,1,"Pont du Cens",47.248607,-1.577315,,1,,Europe/Paris,,ONA, +ONA:SA:PDEA,1,"Porteurs d'Eau",47.271504,-1.597624,,1,,Europe/Paris,,ONA, +ONA:SA:PDJO,1,"Point du jour",47.265398,-1.581455,,1,,Europe/Paris,,ONA, +ONA:SA:PDOU,1,"Porte Douillard",47.289738,-1.519305,,1,,Europe/Paris,,ONA, +ONA:SA:PDPI,1,"Pomme de Pin",47.267107,-1.595362,,1,,Europe/Paris,,ONA, +ONA:SA:PDUC,1,"Prairie au Duc",47.204258,-1.565084,,1,,Europe/Paris,,ONA, +ONA:SA:PEDR,1,"Perdriaux",47.161259,-1.485626,,1,,Europe/Paris,,ONA, +ONA:SA:PEGE,1,"Pégers",47.137589,-1.47153,,1,,Europe/Paris,,ONA, +ONA:SA:PELO,1,"Pelousière",47.207759,-1.647022,,1,,Europe/Paris,,ONA, +ONA:SA:PEON,1,"Perron",47.224897,-1.601758,,1,,Europe/Paris,,ONA, +ONA:SA:PERR,1,"Perray",47.247491,-1.514142,,1,,Europe/Paris,,ONA, +ONA:SA:PETR,1,"Pétrels",47.254305,-1.506961,,1,,Europe/Paris,,ONA, +ONA:SA:PFNA,1,"Purfina",47.194575,-1.634941,,1,,Europe/Paris,,ONA, +ONA:SA:PGRI,1,"Pagerie",47.178722,-1.653184,,1,,Europe/Paris,,ONA, +ONA:SA:PGTI,1,"Plinguetière",47.132974,-1.613744,,1,,Europe/Paris,,ONA, +ONA:SA:PGUY,1,"Péguy",47.221607,-1.613679,,1,,Europe/Paris,,ONA, +ONA:SA:PHTR,1,"Parc Chantrerie",47.286797,-1.521078,,1,,Europe/Paris,,ONA, +ONA:SA:PHVE,1,"Pré Hervé",47.243684,-1.517571,,1,,Europe/Paris,,ONA, +ONA:SA:PIAO,1,"Piano'cktail",47.17483,-1.606662,,1,,Europe/Paris,,ONA, +ONA:SA:PIBL,1,"Pierre Blanche",47.172054,-1.627194,,1,,Europe/Paris,,ONA, +ONA:SA:PICA,1,"Picasso",47.21542,-1.535892,,1,,Europe/Paris,,ONA, +ONA:SA:PIEA,1,"Pierre Abélard",47.155084,-1.684581,,1,,Europe/Paris,,ONA, +ONA:SA:PIPA,1,"Pipay",47.225743,-1.536904,,1,,Europe/Paris,,ONA, +ONA:SA:PIRM,1,"Pirmil",47.196466,-1.542449,,1,,Europe/Paris,,ONA, +ONA:SA:PISE,1,"Pin Sec",47.243756,-1.518106,,1,,Europe/Paris,,ONA, +ONA:SA:PJOU,1,"Point du jour",47.264407,-1.444022,,1,,Europe/Paris,,ONA, +ONA:SA:PLAC,1,"Placis",47.199563,-1.519944,,1,,Europe/Paris,,ONA, +ONA:SA:PLBL,1,"Port la Blanche",47.271633,-1.516676,,1,,Europe/Paris,,ONA, +ONA:SA:PLCH,1,"Pte La Chapelle",47.259375,-1.5572,,1,,Europe/Paris,,ONA, +ONA:SA:PLCL,1,"Polyclinique",47.227981,-1.611638,,1,,Europe/Paris,,ONA, +ONA:SA:PLES,1,"Plessis",47.300966,-1.552421,,1,,Europe/Paris,,ONA, +ONA:SA:PLGU,1,"Pouliguen",47.240242,-1.542318,,1,,Europe/Paris,,ONA, +ONA:SA:PLNA,1,"Port launay",47.209688,-1.746305,,1,,Europe/Paris,,ONA, +ONA:SA:PLOR,1,"Ploreau",47.303054,-1.551911,,1,,Europe/Paris,,ONA, +ONA:SA:PLPC,1,"Place des Pêcheurs",47.136442,-1.668714,,1,,Europe/Paris,,ONA, +ONA:SA:PLSS,1,"Plessis",47.260359,-1.660071,,1,,Europe/Paris,,ONA, +ONA:SA:PLTI,1,"Platière",47.194576,-1.561075,,1,,Europe/Paris,,ONA, +ONA:SA:PMAR,1,"Pont Marchand",47.260629,-1.631381,,1,,Europe/Paris,,ONA, +ONA:SA:PMEU,1,"Port aux Meules",47.165425,-1.493054,,1,,Europe/Paris,,ONA, +ONA:SA:PMTR,1,"Pont de la Métairie",47.262444,-1.446028,,1,,Europe/Paris,,ONA, +ONA:SA:PMVE,1,"Prairie de Mauves",47.220306,-1.516416,,1,,Europe/Paris,,ONA, +ONA:SA:PNAN,1,"Prière",47.222364,-1.596812,,1,,Europe/Paris,,ONA, +ONA:SA:PNLU,1,"Pinier",47.252712,-1.481714,,1,,Europe/Paris,,ONA, +ONA:SA:PNPI,1,"Pont Pilet",47.339472,-1.572318,,1,,Europe/Paris,,ONA, +ONA:SA:PNRZ,1,"Pinier",47.182761,-1.545551,,1,,Europe/Paris,,ONA, +ONA:SA:PNTI,1,"Plantiveau",47.246496,-1.511558,,1,,Europe/Paris,,ONA, +ONA:SA:POIT,1,"Poitou",47.224068,-1.565207,,1,,Europe/Paris,,ONA, +ONA:SA:POLE,1,"Poulenc",47.255408,-1.581252,,1,,Europe/Paris,,ONA, +ONA:SA:POMM,1,"Pommeraie",47.146252,-1.695787,,1,,Europe/Paris,,ONA, +ONA:SA:PONT,1,"Pontereau",47.306413,-1.378837,,1,,Europe/Paris,,ONA, +ONA:SA:POON,1,"Potiron",47.270485,-1.51871,,1,,Europe/Paris,,ONA, +ONA:SA:POST,1,"Poste",47.295234,-1.554122,,1,,Europe/Paris,,ONA, +ONA:SA:POTT,1,"Pottier",47.177633,-1.627343,,1,,Europe/Paris,,ONA, +ONA:SA:POYA,1,"Poyaux",47.166587,-1.53104,,1,,Europe/Paris,,ONA, +ONA:SA:PPDO,1,"Pompidou",47.209234,-1.528234,,1,,Europe/Paris,,ONA, +ONA:SA:PPFA,1,"Petit Port",47.243301,-1.555765,,1,,Europe/Paris,,ONA, +ONA:SA:PPLI,1,"Peupliers",47.199327,-1.49733,,1,,Europe/Paris,,ONA, +ONA:SA:PPOU,1,"Pré Poulain",47.272037,-1.44459,,1,,Europe/Paris,,ONA, +ONA:SA:PPSI,1,"Petit Plessis",47.301853,-1.386198,,1,,Europe/Paris,,ONA, +ONA:SA:PPTR,1,"Papotière",47.240143,-1.496818,,1,,Europe/Paris,,ONA, +ONA:SA:PPUN,1,"Petit Port-Université",47.243133,-1.547421,,1,,Europe/Paris,,ONA, +ONA:SA:PRCE,1,"Procé",47.222606,-1.581758,,1,,Europe/Paris,,ONA, +ONA:SA:PRDI,1,"Praudière",47.25685,-1.583872,,1,,Europe/Paris,,ONA, +ONA:SA:PREU,1,"Preux",47.221179,-1.618275,,1,,Europe/Paris,,ONA, +ONA:SA:PRFO,1,"Profondine",47.196197,-1.488517,,1,,Europe/Paris,,ONA, +ONA:SA:PRGE,1,"Portail Rouge",47.244304,-1.504391,,1,,Europe/Paris,,ONA, +ONA:SA:PRHE,1,"Petit Rocher",47.240554,-1.478995,,1,,Europe/Paris,,ONA, +ONA:SA:PRIM,1,"Primevères",47.224876,-1.67289,,1,,Europe/Paris,,ONA, +ONA:SA:PRMI,1,"Pyramide",47.208123,-1.492806,,1,,Europe/Paris,,ONA, +ONA:SA:PRNE,1,"Perrines",47.227636,-1.515357,,1,,Europe/Paris,,ONA, +ONA:SA:PRRI,1,"Perrières",47.309914,-1.551483,,1,,Europe/Paris,,ONA, +ONA:SA:PRSS,1,"Pressoir",47.12364,-1.638922,,1,,Europe/Paris,,ONA, +ONA:SA:PRTE,1,"Portereau",47.168289,-1.501712,,1,,Europe/Paris,,ONA, +ONA:SA:PRUT,1,"Proutière",47.198119,-1.780313,,1,,Europe/Paris,,ONA, +ONA:SA:PRZE,1,"Porte de Rezé",47.157248,-1.540929,,1,,Europe/Paris,,ONA, +ONA:SA:PSAU,1,"Porte de Sautron",47.250796,-1.618746,,1,,Europe/Paris,,ONA, +ONA:SA:PSCE,1,"Plaisance",47.240207,-1.591248,,1,,Europe/Paris,,ONA, +ONA:SA:PSEV,1,"Parc de la Sèvre",47.164442,-1.47925,,1,,Europe/Paris,,ONA, +ONA:SA:PSIN,1,"Pasteur",47.200987,-1.678633,,1,,Europe/Paris,,ONA, +ONA:SA:PSLI,1,"Plessis Cellier",47.203001,-1.60464,,1,,Europe/Paris,,ONA, +ONA:SA:PSME,1,"Place St Méen",47.319131,-1.347277,,1,,Europe/Paris,,ONA, +ONA:SA:PSOR,1,"Prières",47.150349,-1.526435,,1,,Europe/Paris,,ONA, +ONA:SA:PSPO,1,"Parc des Sports",47.260543,-1.449068,,1,,Europe/Paris,,ONA, +ONA:SA:PSUD,1,"Pôle Sud",47.18865,-1.468954,,1,,Europe/Paris,,ONA, +ONA:SA:PTBO,1,"Petit Bois",47.185412,-1.67839,,1,,Europe/Paris,,ONA, +ONA:SA:PTCH,1,"Patache",47.270956,-1.619179,,1,,Europe/Paris,,ONA, +ONA:SA:PTEC,1,"Polytech'",47.280831,-1.513633,,1,,Europe/Paris,,ONA, +ONA:SA:PTGO,1,"Poitou",47.209808,-1.469137,,1,,Europe/Paris,,ONA, +ONA:SA:PTIS,1,"Plessis Tison",47.236667,-1.533463,,1,,Europe/Paris,,ONA, +ONA:SA:PTLA,1,"CES Petite Lande",47.177942,-1.549561,,1,,Europe/Paris,,ONA, +ONA:SA:PTNE,1,"Platanes",47.245606,-1.52472,,1,,Europe/Paris,,ONA, +ONA:SA:PTON,1,"Portillon",47.149234,-1.468002,,1,,Europe/Paris,,ONA, +ONA:SA:PTPS,1,"Printemps",47.188508,-1.500387,,1,,Europe/Paris,,ONA, +ONA:SA:PTQQ,1,"Portricq",47.265087,-1.521232,,1,,Europe/Paris,,ONA, +ONA:SA:PTRE,1,"Portereau",47.193236,-1.477339,,1,,Europe/Paris,,ONA, +ONA:SA:PTUR,1,"Pâtures",47.304435,-1.556381,,1,,Europe/Paris,,ONA, +ONA:SA:PTVI,1,"Pâtis Viaud",47.138679,-1.457617,,1,,Europe/Paris,,ONA, +ONA:SA:PTYY,1,"Planty",47.175269,-1.494947,,1,,Europe/Paris,,ONA, +ONA:SA:PUCH,1,"Pluchets",47.218581,-1.654438,,1,,Europe/Paris,,ONA, +ONA:SA:PVIL,1,"Petit Village",47.217006,-1.650487,,1,,Europe/Paris,,ONA, +ONA:SA:PVLO,1,"Pavillon",47.143584,-1.679348,,1,,Europe/Paris,,ONA, +ONA:SA:PXCE,1,"Port aux Cerises",47.311877,-1.541297,,1,,Europe/Paris,,ONA, +ONA:SA:QANT,1,"Quai des Antilles",47.203746,-1.56954,,1,,Europe/Paris,,ONA, +ONA:SA:QBNA,1,"Quai Brunais",47.196438,-1.66957,,1,,Europe/Paris,,ONA, +ONA:SA:QSCO,1,"Quai surcouf",47.194907,-1.577881,,1,,Europe/Paris,,ONA, +ONA:SA:QTNE,1,"Quintaine",47.216721,-1.464341,,1,,Europe/Paris,,ONA, +ONA:SA:RABI,1,"Rabine",47.26075,-1.643562,,1,,Europe/Paris,,ONA, +ONA:SA:RAGO,1,"Ragon",47.165393,-1.542443,,1,,Europe/Paris,,ONA, +ONA:SA:RAVA,1,"Ravardière",47.183796,-1.665321,,1,,Europe/Paris,,ONA, +ONA:SA:RAZA,1,"Ranzay",47.253331,-1.530701,,1,,Europe/Paris,,ONA, +ONA:SA:RBAL,1,"Roche Ballue",47.179534,-1.655755,,1,,Europe/Paris,,ONA, +ONA:SA:RBHI,1,"René Bouhier",47.209901,-1.571311,,1,,Europe/Paris,,ONA, +ONA:SA:RBNI,1,"Robinière",47.163642,-1.535581,,1,,Europe/Paris,,ONA, +ONA:SA:RBRN,1,"René Bernier",47.193942,-1.499455,,1,,Europe/Paris,,ONA, +ONA:SA:RCAS,1,"René Cassin",47.264845,-1.573873,,1,,Europe/Paris,,ONA, +ONA:SA:RCER,1,"Rocher",47.213153,-1.639492,,1,,Europe/Paris,,ONA, +ONA:SA:RCHE,1,"Rocher",47.169433,-1.505227,,1,,Europe/Paris,,ONA, +ONA:SA:RCPE,1,"Route de la Chapelle",47.254859,-1.576185,,1,,Europe/Paris,,ONA, +ONA:SA:RCUU,1,"Rochu",47.215101,-1.666473,,1,,Europe/Paris,,ONA, +ONA:SA:RDFY,1,"Raoul Dufy",47.222718,-1.599615,,1,,Europe/Paris,,ONA, +ONA:SA:RDGO,1,"Radigois",47.193052,-1.518022,,1,,Europe/Paris,,ONA, +ONA:SA:RDIE,1,"Rouaudière",47.294296,-1.584502,,1,,Europe/Paris,,ONA, +ONA:SA:RDMV,1,"Rue de Mauves",47.271527,-1.432645,,1,,Europe/Paris,,ONA, +ONA:SA:RDNT,1,"Rue de Nantes",47.151346,-1.534296,,1,,Europe/Paris,,ONA, +ONA:SA:REDR,1,"Redras",47.16475,-1.502514,,1,,Europe/Paris,,ONA, +ONA:SA:REFR,1,"Réfractaires",47.303044,-1.546879,,1,,Europe/Paris,,ONA, +ONA:SA:RETA,1,"Retas",47.15495,-1.536933,,1,,Europe/Paris,,ONA, +ONA:SA:REYN,1,"Reynière",47.256126,-1.578659,,1,,Europe/Paris,,ONA, +ONA:SA:RGNI,1,"Reigniers",47.137147,-1.465824,,1,,Europe/Paris,,ONA, +ONA:SA:RIND,1,"Rue d'Indre",47.204011,-1.664189,,1,,Europe/Paris,,ONA, +ONA:SA:RIVI,1,"Rivière",47.21508,-1.475856,,1,,Europe/Paris,,ONA, +ONA:SA:RLEA,1,"Rouleaux",47.200093,-1.466067,,1,,Europe/Paris,,ONA, +ONA:SA:RLON,1,"Rennes-Longchamp",47.238655,-1.570636,,1,,Europe/Paris,,ONA, +ONA:SA:RMAU,1,"Roche Maurice",47.196319,-1.618288,,1,,Europe/Paris,,ONA, +ONA:SA:RMNE,1,"Romanet",47.211864,-1.608862,,1,,Europe/Paris,,ONA, +ONA:SA:RNAN,1,"Renan",47.216315,-1.613024,,1,,Europe/Paris,,ONA, +ONA:SA:RNIE,1,"Rinière",47.129059,-1.635892,,1,,Europe/Paris,,ONA, +ONA:SA:RNLT,1,"Renault",47.263416,-1.495709,,1,,Europe/Paris,,ONA, +ONA:SA:RNRE,1,"Renaudières",47.299483,-1.507961,,1,,Europe/Paris,,ONA, +ONA:SA:RNTI,1,"Reinetière",47.256898,-1.491273,,1,,Europe/Paris,,ONA, +ONA:SA:ROCA,1,"Rocade",47.163341,-1.474418,,1,,Europe/Paris,,ONA, +ONA:SA:ROET,1,"Rouet",47.1486,-1.522216,,1,,Europe/Paris,,ONA, +ONA:SA:RPAR,1,"Rond-Point de Paris",47.23404,-1.536579,,1,,Europe/Paris,,ONA, +ONA:SA:RPBL,1,"République",47.205603,-1.554609,,1,,Europe/Paris,,ONA, +ONA:SA:RPCH,1,"Repos de Chasse",47.21656,-1.597972,,1,,Europe/Paris,,ONA, +ONA:SA:RPSI,1,"Ripossière",47.191597,-1.534565,,1,,Europe/Paris,,ONA, +ONA:SA:RQIO,1,"Trentemoult-Roquios",47.195559,-1.582553,,1,,Europe/Paris,,ONA, +ONA:SA:RROL,1,"Romain Rolland",47.206779,-1.610073,,1,,Europe/Paris,,ONA, +ONA:SA:RSCO,1,"Robert Scott",47.186999,-1.458928,,1,,Europe/Paris,,ONA, +ONA:SA:RSLI,1,"Rousselière",47.175659,-1.518354,,1,,Europe/Paris,,ONA, +ONA:SA:RSNB,1,"Rosenberg",47.235599,-1.659808,,1,,Europe/Paris,,ONA, +ONA:SA:RSRA,1,"Roseraie",47.260796,-1.528331,,1,,Europe/Paris,,ONA, +ONA:SA:RTSC,1,"Recteur Schmitt",47.252316,-1.55285,,1,,Europe/Paris,,ONA, +ONA:SA:RUET,1,"Ruette",47.233357,-1.511274,,1,,Europe/Paris,,ONA, +ONA:SA:RVAN,1,"Rond-Point de Vannes",47.229568,-1.573013,,1,,Europe/Paris,,ONA, +ONA:SA:RVDI,1,"Rivaudière",47.227101,-1.650314,,1,,Europe/Paris,,ONA, +ONA:SA:RVER,1,"Roches Vertes",47.185195,-1.524061,,1,,Europe/Paris,,ONA, +ONA:SA:SADU,1,"Santos Dumont",47.259593,-1.566742,,1,,Europe/Paris,,ONA, +ONA:SA:SAGL,1,"St-Aignan-de-Grand-Lieu",47.123256,-1.634407,,1,,Europe/Paris,,ONA, +ONA:SA:SAIG,1,"St-Aignan",47.208038,-1.578445,,1,,Europe/Paris,,ONA, +ONA:SA:SALE,1,"Salentine",47.248475,-1.610241,,1,,Europe/Paris,,ONA, +ONA:SA:SAOR,1,"Sables d'Or",47.265092,-1.455873,,1,,Europe/Paris,,ONA, +ONA:SA:SAPI,1,"Saupin",47.184803,-1.476342,,1,,Europe/Paris,,ONA, +ONA:SA:SATR,1,"Sautron",47.265387,-1.683868,,1,,Europe/Paris,,ONA, +ONA:SA:SAUP,1,"Saupin-Crédit Municipal",47.213836,-1.540139,,1,,Europe/Paris,,ONA, +ONA:SA:SAVA,1,"Savarières",47.208678,-1.489674,,1,,Europe/Paris,,ONA, +ONA:SA:SBAI,1,"St-Blaise",47.167208,-1.469147,,1,,Europe/Paris,,ONA, +ONA:SA:SBLL,1,"Sébilleau",47.204843,-1.53169,,1,,Europe/Paris,,ONA, +ONA:SA:SBSA,1,"St-Jean-Baptiste de la Salle",47.233429,-1.560072,,1,,Europe/Paris,,ONA, +ONA:SA:SCHW,1,"Schweitzer",47.294864,-1.495185,,1,,Europe/Paris,,ONA, +ONA:SA:SCLE,1,"St-Clément",47.222172,-1.546692,,1,,Europe/Paris,,ONA, +ONA:SA:SDON,1,"St-Donatien",47.229411,-1.540342,,1,,Europe/Paris,,ONA, +ONA:SA:SECH,1,"Schoelcher",47.220655,-1.628284,,1,,Europe/Paris,,ONA, +ONA:SA:SEIL,1,"Seil",47.193886,-1.570803,,1,,Europe/Paris,,ONA, +ONA:SA:SERC,1,"Sercel",47.266771,-1.489599,,1,,Europe/Paris,,ONA, +ONA:SA:SEVR,1,"Sèvres",47.186167,-1.527302,,1,,Europe/Paris,,ONA, +ONA:SA:SFEL,1,"St-Félix",47.231568,-1.556498,,1,,Europe/Paris,,ONA, +ONA:SA:SFRA,1,"San-Francisco",47.217987,-1.51572,,1,,Europe/Paris,,ONA, +ONA:SA:SGRA,1,"Sageran",47.219631,-1.571229,,1,,Europe/Paris,,ONA, +ONA:SA:SILL,1,"Sillon de Bretagne",47.245564,-1.608439,,1,,Europe/Paris,,ONA, +ONA:SA:SINI,1,"Sinière",47.225695,-1.677844,,1,,Europe/Paris,,ONA, +ONA:SA:SJAC,1,"St-Jacques",47.194015,-1.537646,,1,,Europe/Paris,,ONA, +ONA:SA:SJEA,1,"St-Jean",47.19178,-1.523743,,1,,Europe/Paris,,ONA, +ONA:SA:SJPO,1,"St-Joseph-de-Porterie",47.267842,-1.516932,,1,,Europe/Paris,,ONA, +ONA:SA:SLAU,1,"St-Laurent",47.223576,-1.598224,,1,,Europe/Paris,,ONA, +ONA:SA:SLCE,1,"Ste-Luce-sur-Loire",47.250348,-1.485117,,1,,Europe/Paris,,ONA, +ONA:SA:SLDA,1,"Solidarité",47.217189,-1.587443,,1,,Europe/Paris,,ONA, +ONA:SA:SLGE,1,"Salorges",47.204731,-1.575031,,1,,Europe/Paris,,ONA, +ONA:SA:SLVI,1,"St-Léger-les-Vignes",47.13657,-1.730304,,1,,Europe/Paris,,ONA, +ONA:SA:SMAR,1,"St-Martin",47.213454,-1.693053,,1,,Europe/Paris,,ONA, +ONA:SA:SMHI,1,"St-Mihiel",47.223567,-1.553404,,1,,Europe/Paris,,ONA, +ONA:SA:SMIC,1,"St-Michel",47.224147,-1.644541,,1,,Europe/Paris,,ONA, +ONA:SA:SNIC,1,"St-Nicolas",47.215806,-1.559185,,1,,Europe/Paris,,ONA, +ONA:SA:SNTA,1,"Sanitat",47.210781,-1.569261,,1,,Europe/Paris,,ONA, +ONA:SA:SNUC,1,"Stade SNUC",47.227943,-1.581092,,1,,Europe/Paris,,ONA, +ONA:SA:SOCH,1,"Souchais",47.307658,-1.489615,,1,,Europe/Paris,,ONA, +ONA:SA:SOEC,1,"Souchais-Ecole",47.303676,-1.498333,,1,,Europe/Paris,,ONA, +ONA:SA:SORI,1,"Sorin",47.195247,-1.567863,,1,,Europe/Paris,,ONA, +ONA:SA:SOUI,1,"Souillarderie",47.238418,-1.516134,,1,,Europe/Paris,,ONA, +ONA:SA:SOWE,1,"Soweto",47.233272,-1.651567,,1,,Europe/Paris,,ONA, +ONA:SA:SPHI,1,"Saphirs",47.204972,-1.657256,,1,,Europe/Paris,,ONA, +ONA:SA:SPRU,1,"Sully Prudhomme",47.236321,-1.596913,,1,,Europe/Paris,,ONA, +ONA:SA:SPSA,1,"St-Paul-Salengro",47.185349,-1.546267,,1,,Europe/Paris,,ONA, +ONA:SA:SRDI,1,"Sarradin",47.220386,-1.570226,,1,,Europe/Paris,,ONA, +ONA:SA:SRNI,1,"Les Sorinières",47.159185,-1.518093,,1,,Europe/Paris,,ONA, +ONA:SA:SRTR,1,"Sartre",47.214298,-1.640239,,1,,Europe/Paris,,ONA, +ONA:SA:SSEB,1,"St-Sébastien-sur-Loire",47.207409,-1.50346,,1,,Europe/Paris,,ONA, +ONA:SA:SSTA,1,"St-Stanislas",47.222813,-1.557051,,1,,Europe/Paris,,ONA, +ONA:SA:STBS,1,"Stade",47.191316,-1.707903,,1,,Europe/Paris,,ONA, +ONA:SA:STHR,1,"Alexandre Vincent-Ste-Thérèse",47.232664,-1.577338,,1,,Europe/Paris,,ONA, +ONA:SA:STMA,1,"St-Martin",47.199292,-1.594588,,1,,Europe/Paris,,ONA, +ONA:SA:STPI,1,"St-Pierre",47.218126,-1.551819,,1,,Europe/Paris,,ONA, +ONA:SA:STXU,1,"St-Exupéry",47.152896,-1.59488,,1,,Europe/Paris,,ONA, +ONA:SA:SUCO,1,"Surcouf",47.268845,-1.445819,,1,,Europe/Paris,,ONA, +ONA:SA:SVAU,1,"Savaudière",47.289259,-1.51477,,1,,Europe/Paris,,ONA, +ONA:SA:SVDI,1,"Solvardière",47.218012,-1.642233,,1,,Europe/Paris,,ONA, +ONA:SA:SVIN,1,"Stévin",47.260058,-1.634911,,1,,Europe/Paris,,ONA, +ONA:SA:SVNN,1,"Savonnières",47.197485,-1.662776,,1,,Europe/Paris,,ONA, +ONA:SA:SYRM,1,"Syrma",47.277142,-1.470094,,1,,Europe/Paris,,ONA, +ONA:SA:SZAI,1,"Saulzaie",47.231071,-1.631833,,1,,Europe/Paris,,ONA, +ONA:SA:TADI,1,"Taillandier",47.214343,-1.716519,,1,,Europe/Paris,,ONA, +ONA:SA:TAID,1,"Toutes Aides",47.226464,-1.52347,,1,,Europe/Paris,,ONA, +ONA:SA:TBAU,1,"Thébaudières",47.310566,-1.358868,,1,,Europe/Paris,,ONA, +ONA:SA:TBCH,1,"Trébuchet",47.220182,-1.546945,,1,,Europe/Paris,,ONA, +ONA:SA:TBER,1,"Tristan Bernard",47.205806,-1.464887,,1,,Europe/Paris,,ONA, +ONA:SA:TBLY,1,"Tabarly",47.195525,-1.548987,,1,,Europe/Paris,,ONA, +ONA:SA:TCHE,1,"Trois Chênes",47.25819,-1.474036,,1,,Europe/Paris,,ONA, +ONA:SA:TDGA,1,"Tredégar",47.254734,-1.603692,,1,,Europe/Paris,,ONA, +ONA:SA:TEBS,1,"Tertre",47.19669,-1.74452,,1,,Europe/Paris,,ONA, +ONA:SA:TEGO,1,"Tertre",47.216204,-1.471839,,1,,Europe/Paris,,ONA, +ONA:SA:TEIF,1,"Tour Eiffel",47.199587,-1.754257,,1,,Europe/Paris,,ONA, +ONA:SA:TENA,1,"Tertre",47.214766,-1.608283,,1,,Europe/Paris,,ONA, +ONA:SA:TERR,1,"Terray",47.251393,-1.526725,,1,,Europe/Paris,,ONA, +ONA:SA:THAT,1,"Théatre",47.216435,-1.728708,,1,,Europe/Paris,,ONA, +ONA:SA:THCE,1,"Centre de Thouaré-sur-Loire",47.267029,-1.441312,,1,,Europe/Paris,,ONA, +ONA:SA:TILL,1,"Tillay",47.228795,-1.606277,,1,,Europe/Paris,,ONA, +ONA:SA:TJOI,1,"Toutes Joies",47.221195,-1.57293,,1,,Europe/Paris,,ONA, +ONA:SA:TLDI,1,"Télindière",47.196143,-1.737078,,1,,Europe/Paris,,ONA, +ONA:SA:TLSA,1,"Talensac",47.221505,-1.555766,,1,,Europe/Paris,,ONA, +ONA:SA:TMET,1,"Trois Métairies",47.176397,-1.501632,,1,,Europe/Paris,,ONA, +ONA:SA:TMLI,1,"Tourmaline",47.221484,-1.632973,,1,,Europe/Paris,,ONA, +ONA:SA:TMOU,1,"Trois Moulins",47.178125,-1.544158,,1,,Europe/Paris,,ONA, +ONA:SA:TMSS,1,"Trémissinière",47.238576,-1.543652,,1,,Europe/Paris,,ONA, +ONA:SA:TNVA,1,"Terre Neuvas",47.185891,-1.591358,,1,,Europe/Paris,,ONA, +ONA:SA:TOSC,1,"Toscane",47.282996,-1.548466,,1,,Europe/Paris,,ONA, +ONA:SA:TOTR,1,"Tortière",47.235312,-1.54963,,1,,Europe/Paris,,ONA, +ONA:SA:TOUG,1,"Tougas",47.194142,-1.639666,,1,,Europe/Paris,,ONA, +ONA:SA:TPCH,1,"Terpsichore",47.282224,-1.501558,,1,,Europe/Paris,,ONA, +ONA:SA:TPOD,1,"Tripode",47.208145,-1.540652,,1,,Europe/Paris,,ONA, +ONA:SA:TRCA,1,"Tréca",47.250258,-1.501379,,1,,Europe/Paris,,ONA, +ONA:SA:TRIA,1,"Trianon",47.273222,-1.430383,,1,,Europe/Paris,,ONA, +ONA:SA:TRNE,1,"Tribunes",47.249176,-1.568494,,1,,Europe/Paris,,ONA, +ONA:SA:TROC,1,"Trocardière",47.183186,-1.570286,,1,,Europe/Paris,,ONA, +ONA:SA:TRQU,1,"Terres Quartières",47.134791,-1.659232,,1,,Europe/Paris,,ONA, +ONA:SA:TTMO,1,"Trentemoult",47.191493,-1.582916,,1,,Europe/Paris,,ONA, +ONA:SA:TZEL,1,"Touzelles",47.208543,-1.466536,,1,,Europe/Paris,,ONA, +ONA:SA:UBRU,1,"Usine Brûlée",47.194944,-1.632061,,1,,Europe/Paris,,ONA, +ONA:SA:UGAZ,1,"Usine à gaz",47.19462,-1.620541,,1,,Europe/Paris,,ONA, +ONA:SA:UTCH,1,"Utrecht",47.283146,-1.55205,,1,,Europe/Paris,,ONA, +ONA:SA:UTLO,1,"Utrillo",47.182066,-1.563467,,1,,Europe/Paris,,ONA, +ONA:SA:VAIL,1,"Vaillant",47.199627,-1.67113,,1,,Europe/Paris,,ONA, +ONA:SA:VALL,1,"Vallée",47.250426,-1.576787,,1,,Europe/Paris,,ONA, +ONA:SA:VARI,1,"Vincent Auriol",47.221798,-1.592276,,1,,Europe/Paris,,ONA, +ONA:SA:VCSO,1,"Vaucanson",47.212714,-1.581298,,1,,Europe/Paris,,ONA, +ONA:SA:VDCE,1,"Val du Cens",47.261084,-1.665153,,1,,Europe/Paris,,ONA, +ONA:SA:VDLO,1,"Vieux Doulon",47.23549,-1.504022,,1,,Europe/Paris,,ONA, +ONA:SA:VDNI,1,"Ville-au-Denis",47.162692,-1.62703,,1,,Europe/Paris,,ONA, +ONA:SA:VDUR,1,"Verdure",47.195918,-1.653409,,1,,Europe/Paris,,ONA, +ONA:SA:VEAG,1,"Véga",47.27967,-1.464451,,1,,Europe/Paris,,ONA, +ONA:SA:VEGE,1,"Verger",47.293092,-1.497043,,1,,Europe/Paris,,ONA, +ONA:SA:VEIE,1,"Verrière",47.276937,-1.570523,,1,,Europe/Paris,,ONA, +ONA:SA:VEPR,1,"Vesprées",47.246,-1.502132,,1,,Europe/Paris,,ONA, +ONA:SA:VERL,1,"Verlaine",47.233868,-1.594882,,1,,Europe/Paris,,ONA, +ONA:SA:VEXP,1,"Village Expo",47.214994,-1.614777,,1,,Europe/Paris,,ONA, +ONA:SA:VFOU,1,"Vieux Four",47.190932,-1.700871,,1,,Europe/Paris,,ONA, +ONA:SA:VGAC,1,"Vincent Gâche",47.20636,-1.548188,,1,,Europe/Paris,,ONA, +ONA:SA:VIAR,1,"Viarme-Talensac",47.221184,-1.562617,,1,,Europe/Paris,,ONA, +ONA:SA:VIER,1,"Viv'Erdre",47.285544,-1.550372,,1,,Europe/Paris,,ONA, +ONA:SA:VILE,1,"Violettes",47.198132,-1.508873,,1,,Europe/Paris,,ONA, +ONA:SA:VINE,1,"Villeneuve",47.194114,-1.513209,,1,,Europe/Paris,,ONA, +ONA:SA:VISO,1,"Vison",47.244218,-1.509675,,1,,Europe/Paris,,ONA, +ONA:SA:VIVI,1,"Viviers",47.173082,-1.484885,,1,,Europe/Paris,,ONA, +ONA:SA:VORR,1,"Val d'Or",47.243917,-1.582791,,1,,Europe/Paris,,ONA, +ONA:SA:VRIE,1,"Vrière",47.282109,-1.556078,,1,,Europe/Paris,,ONA, +ONA:SA:VSCO,1,"Vincent Scotto",47.25241,-1.566085,,1,,Europe/Paris,,ONA, +ONA:SA:VTNN,1,"Vertonne",47.186998,-1.494334,,1,,Europe/Paris,,ONA, +ONA:SA:VTOU,1,"Vertou",47.169479,-1.471289,,1,,Europe/Paris,,ONA, +ONA:SA:VVRE,1,"Vièvre",47.198066,-1.814408,,1,,Europe/Paris,,ONA, +ONA:SA:WATT,1,"Wattignies",47.203807,-1.546417,,1,,Europe/Paris,,ONA, +ONA:SA:WDIS,1,"Walt Disney",47.194348,-1.489971,,1,,Europe/Paris,,ONA, +ONA:SA:XBON,1,"Croix Bonneau",47.20961,-1.595743,,1,,Europe/Paris,,ONA, +ONA:SA:XJAN,1,"Croix Jeannette",47.171093,-1.623689,,1,,Europe/Paris,,ONA, +ONA:SA:XREZ,1,"Croix de Rezé",47.179428,-1.558915,,1,,Europe/Paris,,ONA, +ONA:SA:XSYY,1,"Croisy",47.253417,-1.626348,,1,,Europe/Paris,,ONA, +ONA:SA:XTRU,1,"Croix Truin",47.191361,-1.711739,,1,,Europe/Paris,,ONA, +ONA:SA:ZENI,1,"Zénith",47.230528,-1.62928,,1,,Europe/Paris,,ONA, +ONA:SA:ZIMM,1,"Zimmer",47.210029,-1.651686,,1,,Europe/Paris,,ONA, +ONA:SA:ZOLA,1,"Zola",47.213811,-1.586137,,1,,Europe/Paris,,ONA, +OOY:SA:CTPaubchar,1,"Charmille",46.604885,-1.450329,,1,,Europe/Paris,,OOY, +OOY:SA:CTPaubegli,1,"Eglise d'Aubigny",46.595882,-1.452914,,1,,Europe/Paris,,OOY, +OOY:SA:CTPaubmino,1,"Minoterie",46.600952,-1.45272,,1,,Europe/Paris,,OOY, +OOY:SA:CTPauborde,1,"Ordeville",46.594444,-1.459869,,1,,Europe/Paris,,OOY, +OOY:SA:CTPaubpell,1,"Pelleraies",46.610344,-1.446555,,1,,Europe/Paris,,OOY, +OOY:SA:CTPchaamp,1,"Folie",46.666809,-1.333124,,1,,Europe/Paris,,OOY, +OOY:SA:CTPchacurz,1,"Curzais",46.665546,-1.35233,,1,,Europe/Paris,,OOY, +OOY:SA:CTPchafoli,1,"Folie Nord",46.665459,-1.340343,,1,,Europe/Paris,,OOY, +OOY:SA:CTPchagrel,1,"Grelière",46.664867,-1.357914,,1,,Europe/Paris,,OOY, +OOY:SA:CTPchaharb,1,"Harbrière",46.671741,-1.303822,,1,,Europe/Paris,,OOY, +OOY:SA:CTPchamie,1,"Mairie",46.672455,-1.296616,,1,,Europe/Paris,,OOY, +OOY:SA:CTPchamoin,1,"Folie 2",46.666599,-1.322911,,1,,Europe/Paris,,OOY, +OOY:SA:CTPclomair,1,"Mairie des Clouzeaux",46.630527,-1.509826,,1,,Europe/Paris,,OOY, +OOY:SA:CTPcloprai,1,"Prairie",46.627098,-1.510134,,1,,Europe/Paris,,OOY, +OOY:SA:CTPcloprou,1,"Proutière",46.631039,-1.503888,,1,,Europe/Paris,,OOY, +OOY:SA:CTPclosimo,1,"Simotière",46.641129,-1.442693,,1,,Europe/Paris,,OOY, +OOY:SA:CTPclosoul,1,"Soulinière",46.639217,-1.458853,,1,,Europe/Paris,,OOY, +OOY:SA:CTPclotino,1,"Tinouze",46.634033,-1.509251,,1,,Europe/Paris,,OOY, +OOY:SA:CTPclovign,1,"Vignes",46.625984,-1.508699,,1,,Europe/Paris,,OOY, +OOY:SA:CTPdombell,1,"Bellevue",46.735939,-1.385675,,1,,Europe/Paris,,OOY, +OOY:SA:CTPdombert,1,"Berthelière",46.721279,-1.403485,,1,,Europe/Paris,,OOY, +OOY:SA:CTPdomcrea,1,"Créancière",46.726093,-1.396784,,1,,Europe/Paris,,OOY, +OOY:SA:CTPdomgpr2,1,"Grand Pré",46.734112,-1.396134,,1,,Europe/Paris,,OOY, +OOY:SA:CTPdomhall,1,"Halliers",46.733139,-1.391495,,1,,Europe/Paris,,OOY, +OOY:SA:CTPdomjgil2,1,"Justinien Gillaizeau",46.738049,-1.392541,,1,,Europe/Paris,,OOY, +OOY:SA:CTPdommaga2,1,"Magaud",46.740532,-1.384764,,1,,Europe/Paris,,OOY, +OOY:SA:CTPdommart2,1,"Martinière",46.73613,-1.395016,,1,,Europe/Paris,,OOY, +OOY:SA:CTPdommore,1,"Morelière",46.710632,-1.413915,,1,,Europe/Paris,,OOY, +OOY:SA:CTPdommott2,1,"Motte",46.74041,-1.38958,,1,,Europe/Paris,,OOY, +OOY:SA:CTPdomresi2,1,"Place de la Résistance",46.737759,-1.385133,,1,,Europe/Paris,,OOY, +OOY:SA:CTPferbari,1,"Barillon",46.711311,-1.316513,,1,,Europe/Paris,,OOY, +OOY:SA:CTPfermarc,1,"Place du Marché",46.714043,-1.31302,,1,,Europe/Paris,,OOY, +OOY:SA:CTPflocent,1,"Tilleuls",46.595093,-1.318192,,1,,Europe/Paris,,OOY, +OOY:SA:CTPfloclem2,1,"Clémenceau",46.600498,-1.328087,,1,,Europe/Paris,,OOY, +OOY:SA:CTPflopisc,1,"Rives de l'Yon Piscine",46.623199,-1.37018,,1,,Europe/Paris,,OOY, +OOY:SA:CTPflorive1,1,"Tamaris",46.593964,-1.320924,,1,,Europe/Paris,,OOY, +OOY:SA:CTPflorive2,1,"Françoise Dolto",46.590866,-1.315225,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlryafpa,1,"Afpa",46.659389,-1.437533,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlryagar,1,"Armand Garreau",46.67897,-1.424453,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlryagat,1,"Agatha Christie",46.667164,-1.394821,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlryajon,1,"Ajoncs",46.692928,-1.367774,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlryaliz,1,"Alisiers",46.644127,-1.425087,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlryallu,1,"Alluchon",46.683067,-1.416257,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlryambo,1,"Val d'Amboise",46.660027,-1.457488,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlryandr,1,"St André d'Ornay",46.666325,-1.457145,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlryange,1,"Angelmière",46.655052,-1.449936,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlryangl,1,"Angleterre",46.675198,-1.426912,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlryasto,1,"Astoul",46.657104,-1.428652,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlryatla,1,"Atlantique",46.684986,-1.446777,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlrybaff,1,"Baffert",46.684364,-1.442248,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlrybast,1,"Bastide",46.666725,-1.442336,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlrybaum,1,"Baumann",46.658985,-1.401909,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlrybeet,1,"Beethoven",46.650703,-1.428961,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlrybelp,1,"Belle Place Bunsen",46.643162,-1.41554,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlrybelpl,1,"Belle Place Cugnot",46.642708,-1.412086,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlryberl,1,"Berlioz",46.685299,-1.424592,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlrybiro,1,"Birotheau",46.654308,-1.445484,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlryboca,1,"Bocage",46.650463,-1.440598,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlrybomb,1,"Alain Bombard",46.687504,-1.446356,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlrybout,1,"Boutelier",46.682888,-1.440352,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlrybowl,1,"Bowling",46.666748,-1.407784,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlrybrai,1,"Braille",46.683826,-1.438363,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlrybran,1,"Branly",46.673923,-1.441976,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlrybrass,1,"Georges Brassens",46.654919,-1.411415,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlrybros,1,"Brossardière",46.677784,-1.451302,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlrycac3,1,"Cacérès Sco",46.658833,-1.416646,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlrycace,1,"Cacérès",46.660404,-1.413611,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlrycail,1,"Hubert Cailler",46.674351,-1.406911,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlrycart,1,"Cartier",46.679348,-1.435158,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlrycaso2,1,"Castors",46.682995,-1.441989,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlryccha2,1,"Claude Chappe",46.706017,-1.430028,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlryccom,1,"Centre Commercial",46.702538,-1.430322,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlryccovi,1,"Centre Commercial Jaulnières",46.653824,-1.427615,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlrychap,1,"Chaptal",46.655533,-1.432188,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlrychat,1,"Château d'eau",46.690914,-1.433203,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlrycime,1,"Cimetière",46.665257,-1.398737,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlrycine2,1,"Cinéville",46.697697,-1.426385,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlryclin,1,"Clinique St Charles",46.657589,-1.413259,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlryclos,1,"Clos des Charmes",46.667755,-1.438104,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlrycolu2,1,"Côte de Lumière",46.662727,-1.459588,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlrycome,1,"Comète",46.671589,-1.412346,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlrycomm2,1,"Commerce",46.654358,-1.442019,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlrycope,1,"Copernic",46.665123,-1.410328,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlrycote,1,"Côteau",46.655075,-1.416564,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlrycoty,1,"Coty",46.659168,-1.444281,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlrycour,1,"Courtaisière",46.676609,-1.405314,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlrycroc1,1,"Napoléon Crocodile",46.670162,-1.427018,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlrycuri,1,"Curie",46.664799,-1.432743,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlrydefe,1,"Defferre",46.678658,-1.409578,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlrydena,1,"Denant",46.648811,-1.435787,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlryderv,1,"Dervieux",46.648174,-1.411574,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlrydonq,1,"Don Quichotte",46.66671,-1.403961,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlrydrom1,1,"Napoléon Dromadaire",46.670963,-1.426375,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlrydufy,1,"Duffy",46.654808,-1.428177,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlrydura,1,"Durand",46.660248,-1.416125,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlrydura3,1,"Durand Sco",46.659252,-1.418131,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlryecol,1,"Ecole de la Santé",46.676052,-1.398693,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlryecqu,1,"Ecquebouille Mutualité",46.667427,-1.41941,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlryedis,1,"Edison",46.681919,-1.438543,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlryeins,1,"Einstein",46.66383,-1.415445,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlryelbe,1,"Elbée",46.662647,-1.404504,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlryelde,1,"Marc Elder",46.66357,-1.454362,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlryelpl2,1,"Belle Place Cugnot",46.643246,-1.411205,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlryenri,1,"Enrilise",46.680458,-1.426362,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlryepin,1,"Epinettes",46.657997,-1.450906,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlryesta,1,"Eglise de St André",46.665134,-1.449068,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlryetab,1,"Etablières",46.687786,-1.429988,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlryeuro,1,"Europe",46.69722,-1.431522,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlryeyla,1,"Eylau",46.683788,-1.428544,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlryfcev2,1,"François Cevert",46.698448,-1.42844,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlryflan,1,"Flâneries",46.699451,-1.430552,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlryfmon,1,"Montlahuc",46.679554,-1.413042,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlryfoch,1,"Foch",46.671944,-1.427427,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlryforg,1,"Forges",46.679771,-1.440828,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlryfort,1,"Forton",46.65118,-1.431244,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlryfoss,1,"Diane Fossey",46.6782,-1.412634,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlryfour,1,"Fourcade",46.656605,-1.452748,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlryfoye,1,"Foyer G.Bourrieau",46.664692,-1.45533,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlryfrat,1,"Fraternité",46.660267,-1.441519,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlryfrie,1,"Friedland",46.675896,-1.424814,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlryfrom2,1,"Château Fromage",46.679142,-1.355778,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlrygare,1,"Garenne",46.679688,-1.422369,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlrygaul,1,"De Gaulle",46.671204,-1.419634,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlrygava,1,"Cinéville Gavardie",46.69627,-1.42397,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlrygbel2,1,"Graham Bell",46.695316,-1.428313,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlrygene,1,"Généraudière",46.652905,-1.443581,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlryglua,1,"Gluard",46.666595,-1.432057,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlrygrai,1,"Grainetière",46.649803,-1.445012,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlryguer,1,"Guérin",46.660614,-1.41025,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlrygur,1,"Guérif",46.676975,-1.447382,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlryhall,1,"Halles Résistance",46.671543,-1.422444,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlryhaut,1,"Hauts de Renou",46.673161,-1.409393,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlryhaxo,1,"Haxo",46.675663,-1.418216,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlryhipp1,1,"Napoléon Hippopotame",46.670383,-1.426059,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlryhopi,1,"Hôpital",46.66787,-1.411599,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlryhorb,1,"Horbetoux",46.681385,-1.451633,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlryhorb1,1,"Horbetoux 1",46.681286,-1.45192,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlryhosu,1,"Hôpital Sud",46.650173,-1.434104,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlryhtaz2,1,"Haroun Tazieff",46.704056,-1.428569,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlryibis1,1,"Napoléon Ibis Sacré",46.670757,-1.427237,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlryjard,1,"Jardins de l'Ornay",46.646843,-1.441104,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlryjaul,1,"Jaulnières",46.6506,-1.432904,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlryje23,1,"Jean XXIII",46.684738,-1.417001,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlryjmou,1,"Jean Moulin",46.676682,-1.440585,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlryjrei,1,"Jean Reiller",46.653984,-1.416554,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlrykleb,1,"Kléber",46.663452,-1.40698,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlrykpl2,1,"Kepler",46.672321,-1.400945,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlrylaen,1,"Laënnec",46.660789,-1.435997,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlrylavo,1,"Lavoisier",46.663197,-1.443621,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlrylbla,1,"Louis Blanc",46.676521,-1.435301,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlrylebo,1,"Lebon",46.692581,-1.432887,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlryleru,1,"RU",46.678013,-1.406733,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlrylibe,1,"Liberté",46.662544,-1.434234,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlrylieu,1,"Richelieu",46.654255,-1.409378,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlrylitt,1,"Littoral",46.649998,-1.438329,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlrylmar,1,"Léon Martin",46.659424,-1.411672,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlryloge,1,"Loge",46.667362,-1.450572,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlrylune,1,"Lune",46.659996,-1.42083,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlrylval,1,"Lucien Valéry",46.679073,-1.41967,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlrylyc,1,"Lycée Nature",46.664585,-1.381237,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlrymalb,1,"Malboire",46.673756,-1.402595,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlrymane,1,"Manet",46.653675,-1.432804,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlrymare,1,"Marengo",46.680439,-1.417305,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlrymaro2,1,"Marronnière",46.656609,-1.394127,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlrymaur,1,"Maurois",46.661938,-1.400075,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlrymazu,1,"Mazurelle",46.646767,-1.433003,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlrymbou,1,"Mairie du Bourg",46.660969,-1.40414,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlrymend,1,"Pierre Mendès France",46.666607,-1.445128,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlrymerl,1,"Préfet Merlet",46.676678,-1.447796,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlrymerm,1,"Mermoz",46.678268,-1.432086,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlrymess,1,"Messaiaen",46.656227,-1.413881,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlrymleb,1,"Maurice Leblanc",46.668011,-1.397248,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlrymnla3,1,"Maison Neuve des Landes",46.688354,-1.452853,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlrymong,1,"Monge",46.68494,-1.433604,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlrymore,1,"Moreau",46.667736,-1.409589,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlrymori,1,"Pont Morineau",46.668259,-1.435993,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlrymoul,1,"Moulin de la Garde",46.65834,-1.431952,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlrymsta,1,"Mairie de St André",46.665348,-1.451569,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlrynewt2,1,"Newton",46.670521,-1.407098,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlryney,1,"Ney",46.674923,-1.428973,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlryomni,1,"Salle Omnisports",46.680927,-1.434208,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlryorme,1,"Ormeaux",46.664032,-1.412044,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlryouda,1,"Oudairies",46.667416,-1.401969,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlrypali2,1,"Palissy",46.693523,-1.429432,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlrypaqu,1,"Pâquerettes",46.679386,-1.443497,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlrypboi,1,"Pont Boileau",46.663494,-1.423154,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlrypero,1,"Peronnière",46.645874,-1.418664,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlrypevi2,1,"Paul Emile Victor",46.696236,-1.426191,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlrypica,1,"Picasso",46.656116,-1.423726,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlryplai,1,"Plaine",46.651691,-1.446178,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlryples,1,"Plessis",46.665611,-1.446851,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlrypoin,1,"Point du Jour",46.677402,-1.430546,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlrypont,1,"Pont Rouge",46.670288,-1.414074,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlryppat,1,"Piscine Patinoire",46.669247,-1.445849,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlrypref,1,"Préfecture",46.667915,-1.425371,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlryraci,1,"Racine",46.674633,-1.422986,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlryrayn,1,"Raynal",46.667973,-1.455443,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlryreau,1,"Réaumur",46.672138,-1.443196,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlryreno,1,"Renoir",46.660778,-1.407475,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlryrep,1,"Mon Repos",46.683697,-1.445571,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlryrobe,1,"Francine Robert",46.66082,-1.455915,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlryrobr2,1,"Robretières",46.685371,-1.422845,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlryroma,1,"Romanet",46.685516,-1.419346,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlryroui,1,"Rouillé",46.660557,-1.431884,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlryrous,1,"Rousseau",46.665337,-1.424054,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlryrout,1,"Gare Routière",46.674053,-1.419478,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlrysecu,1,"Sécurité Sociale",46.663105,-1.416637,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlrysimb,1,"Simbrandière",46.661274,-1.426199,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlrysncf2,1,"Gare SNCF",46.672138,-1.434618,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlrysori,1,"Sorinière",46.64732,-1.437541,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlrysoub,1,"Numa Soubeyran",46.684605,-1.444248,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlrysqua,1,"Square Lange",46.678921,-1.446723,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlrysuif,1,"Suifferie",46.665375,-1.419359,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlrytaba2,1,"Tabarly Terres Noires",46.689285,-1.448851,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlryterr,1,"Terrasses",46.678635,-1.418566,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlrytine,1,"Lamartine",46.667446,-1.399381,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlrytort,1,"Tortat",46.657631,-1.428542,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlrytour,1,"Tournefou",46.646152,-1.434412,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlrytris,1,"Flora Tristan",46.668106,-1.45673,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlryturg,1,"Turgot",46.659016,-1.441981,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlryulm,1,"Ulm",46.682247,-1.428345,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlryvalm,1,"Valmy",46.639973,-1.402648,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlryvaly,1,"Val d'Yon",46.669338,-1.418837,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlryvend1,1,"Vendée",46.669769,-1.431596,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlryvern,1,"Jules Verne",46.663006,-1.425461,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlryvert,1,"Vallée Verte",46.658665,-1.425369,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlryvig,1,"Vigée Lebrun",46.655334,-1.411101,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlryvign,1,"Vigne aux Roses",46.661041,-1.421876,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlryvinc,1,"Léonard de Vinci",46.652134,-1.427007,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlryviol,1,"Viollet le Duc",46.654369,-1.425619,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlrywill,1,"Willy Brandt",46.65395,-1.413119,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlryyole,1,"Jean Yole",46.680538,-1.430961,,1,,Europe/Paris,,OOY, +OOY:SA:CTPlryzd,1,"Gustave Zédé",46.690048,-1.43508,,1,,Europe/Paris,,OOY, +OOY:SA:CTPmlcbeau,1,"Parc de Beaupuy",46.712414,-1.431862,,1,,Europe/Paris,,OOY, +OOY:SA:CTPmlccalm,1,"Calme",46.716442,-1.453402,,1,,Europe/Paris,,OOY, +OOY:SA:CTPmlccent,1,"Mouilleron Centre",46.719307,-1.458968,,1,,Europe/Paris,,OOY, +OOY:SA:CTPmlcchau,1,"Chaumes",46.721863,-1.463313,,1,,Europe/Paris,,OOY, +OOY:SA:CTPmlcchen3,1,"Chênes",46.717537,-1.450385,,1,,Europe/Paris,,OOY, +OOY:SA:CTPmlcetan,1,"Etangs",46.727047,-1.464319,,1,,Europe/Paris,,OOY, +OOY:SA:CTPmlcvend,1,"Vendespace",46.711224,-1.430758,,1,,Europe/Paris,,OOY, +OOY:SA:CTPvenbeau2,1,"Beauséjour",46.683884,-1.507538,,1,,Europe/Paris,,OOY, +OOY:SA:CTPvenguyo,1,"Guyon",46.68483,-1.511571,,1,,Europe/Paris,,OOY, +OOY:SA:CTPvenmerc,1,"Mercury",46.690342,-1.51538,,1,,Europe/Paris,,OOY, +OOY:SA:CTPvenvfle,1,"Val Fleuri",46.683788,-1.514729,,1,,Europe/Paris,,OOY, +OPL:SA:AST-00052-A-00052-R,1,"Bosselas",47.421078,-2.174785,,1,,Europe/Paris,,OPL, +OPL:SA:AST-00054-A-00054-R,1,"Plaisance",47.411866,-2.168071,,1,,Europe/Paris,,OPL, +OPL:SA:AST-00083-A-00083-R,1,"La Croix d'Haut",47.500619,-2.132531,,1,,Europe/Paris,,OPL, +OPL:SA:AST-00105-A-00105-R,1,"Calvaire",47.442576,-2.134974,,1,,Europe/Paris,,OPL, +OPL:SA:AST-00119-A-00119-R,1,"Bas Callac",47.424207,-2.141982,,1,,Europe/Paris,,OPL, +OPL:SA:AST-00120-A-00120-R,1,"Callac",47.424406,-2.139157,,1,,Europe/Paris,,OPL, +OPL:SA:AST-00126-A-00126-R,1,"Piolais",47.421753,-2.151288,,1,,Europe/Paris,,OPL, +OPL:SA:AST-00140-A-00140-R,1,"La Ratelais",47.405002,-2.157081,,1,,Europe/Paris,,OPL, +OPL:SA:AST-00173-A-00173-R,1,"Place de Gaulle",47.326739,-2.156071,,1,,Europe/Paris,,OPL, +OPL:SA:AST-00193-A-00193-R,1,"Gare",47.550532,-2.072966,,1,,Europe/Paris,,OPL, +OPL:SA:AST-00195-A-00195-R,1,"Les Landes",47.548065,-2.077631,,1,,Europe/Paris,,OPL, +OPL:SA:AST-00208-A-00208-R,1,"La Gouarais",47.518995,-2.109939,,1,,Europe/Paris,,OPL, +OPL:SA:AST-00256-A-00256-R,1,"La Noé",47.45202,-2.084867,,1,,Europe/Paris,,OPL, +OPL:SA:AST-00268-A-00268-R,1,"Croix de Mission",47.431135,-2.08466,,1,,Europe/Paris,,OPL, +OPL:SA:AST-00272-A-00272-R,1,"La Herviais",47.427691,-2.110721,,1,,Europe/Paris,,OPL, +OPL:SA:AST-00290-A-00290-R,1,"ZA Harrois",47.404696,-2.090481,,1,,Europe/Paris,,OPL, +OPL:SA:AST-00293-A-00293-R,1,"Centre",47.397897,-2.091342,,1,,Europe/Paris,,OPL, +OPL:SA:AST-00303-A-00303-R,1,"Moulin Neuf",47.38814,-2.093132,,1,,Europe/Paris,,OPL, +OPL:SA:AST-00324-A-00324-R,1,"La Duchée",47.362912,-2.098639,,1,,Europe/Paris,,OPL, +OPL:SA:AST-00338-A-00338-R,1,"La Pommeraie",47.353163,-2.105132,,1,,Europe/Paris,,OPL, +OPL:SA:AST-00344-A-00344-R,1,"Six Croix",47.339777,-2.09333,,1,,Europe/Paris,,OPL, +OPL:SA:AST-00421-A-00421-R,1,"Gourap",47.506548,-2.041732,,1,,Europe/Paris,,OPL, +OPL:SA:AST-00435-A-00435-R,1,"Ferme École",47.486752,-2.051276,,1,,Europe/Paris,,OPL, +OPL:SA:AST-00440-A-00440-R,1,"La Vallée du Bourg",47.472637,-2.062025,,1,,Europe/Paris,,OPL, +OPL:SA:AST-00442-A-00442-R,1,"Beaubois",47.465895,-2.070969,,1,,Europe/Paris,,OPL, +OPL:SA:AST-00453-A-00453-R,1,"Saint Lomer",47.446783,-2.028897,,1,,Europe/Paris,,OPL, +OPL:SA:AST-00458-A-00458-R,1,"Le Binar",47.440607,-2.043242,,1,,Europe/Paris,,OPL, +OPL:SA:AST-00591-A-00591-R,1,"La Turcaudais",47.462139,-1.989623,,1,,Europe/Paris,,OPL, +OPL:SA:AST-00593-A-00593-R,1,"Les 4 Routes",47.460677,-1.997243,,1,,Europe/Paris,,OPL, +OPL:SA:AST-00598-A-00598-R,1,"Eglise",47.459561,-2.006173,,1,,Europe/Paris,,OPL, +OPL:SA:AST-00650-A-00650-R,1,"Rue Courtil Ballu",47.362573,-2.010291,,1,,Europe/Paris,,OPL, +OPL:SA:AST-00727-A-00727-R,1,"Église",47.412734,-1.969151,,1,,Europe/Paris,,OPL, +OPL:SA:AST-00749-A-00749-R,1,"Gare Routière Beausoleil",47.36167,-1.943847,,1,,Europe/Paris,,OPL, +OPL:SA:AST-00751-A-00751-R,1,"La Pendière",47.464166,-1.942903,,1,,Europe/Paris,,OPL, +OPL:SA:AST-00756-A-00756-R,1,"Moulin de la Justice",47.519233,-1.963947,,1,,Europe/Paris,,OPL, +OPL:SA:AST-00821-A-00821-R,1,"Pont David",47.367289,-1.412544,,1,,Europe/Paris,,OPL, +OPL:SA:AST-00849-A-00849-R,1,"Tacon",47.416309,-1.250244,,1,,Europe/Paris,,OPL, +OPL:SA:AST-00866-A-00866-R,1,"Bel Air",47.407192,-1.265563,,1,,Europe/Paris,,OPL, +OPL:SA:AST-00898-A-00898-R,1,"Église",47.390822,-1.293271,,1,,Europe/Paris,,OPL, +OPL:SA:AST-00927-A-00927-R,1,"La Métellerie",47.372527,-1.318972,,1,,Europe/Paris,,OPL, +OPL:SA:AST-00932-A-00932-R,1,"La Poussaudière",47.367272,-1.324153,,1,,Europe/Paris,,OPL, +OPL:SA:AST-00955-A-00955-R,1,"La Savariais",47.333092,-1.343194,,1,,Europe/Paris,,OPL, +OPL:SA:AST-00961-A-00961-R,1,"La Joie",47.339763,-1.349107,,1,,Europe/Paris,,OPL, +OPL:SA:AST-00962-A-00962-R,1,"Place Saint Méen",47.319256,-1.347364,,1,,Europe/Paris,,OPL, +OPL:SA:AST-01244-A-01244-R,1,"Rue Neuve",47.523573,-1.182698,,1,,Europe/Paris,,OPL, +OPL:SA:AST-01413-A-01413-R,1,"Champ de Foire",47.519614,-1.29619,,1,,Europe/Paris,,OPL, +OPL:SA:AST-01472-A-01472-R,1,"La Chapelle Breton",47.448952,-1.326529,,1,,Europe/Paris,,OPL, +OPL:SA:AST-01474-A-01474-R,1,"Le Boulay",47.430362,-1.332512,,1,,Europe/Paris,,OPL, +OPL:SA:AST-01495-A-01495-R,1,"Rue des Genêts",47.476902,-1.375199,,1,,Europe/Paris,,OPL, +OPL:SA:AST-01533-A-01533-R,1,"Le Grand Patis",47.375305,-1.450427,,1,,Europe/Paris,,OPL, +OPL:SA:AST-01535-A-01535-R,1,"Place de l'Église",47.395435,-1.454825,,1,,Europe/Paris,,OPL, +OPL:SA:AST-01539-A-01539-R,1,"La Marchanderie",47.437504,-1.460074,,1,,Europe/Paris,,OPL, +OPL:SA:AST-01564-A-01564-R,1,"Église",47.485352,-1.239256,,1,,Europe/Paris,,OPL, +OPL:SA:AST-01673-A-01673-R,1,"Stade",47.456005,-1.162256,,1,,Europe/Paris,,OPL, +OPL:SA:AST-02273-A-02273-R,1,"Mairie",47.687096,-1.734836,,1,,Europe/Paris,,OPL, +OPL:SA:AST-02283-A-02283-R,1,"Transformateur",47.684331,-1.684191,,1,,Europe/Paris,,OPL, +OPL:SA:AST-02325-A-02325-R,1,"Bibliothèque",47.624944,-1.751406,,1,,Europe/Paris,,OPL, +OPL:SA:AST-02411-A-02411-R,1,"Rue du Stade",47.553897,-1.700614,,1,,Europe/Paris,,OPL, +OPL:SA:AST-02446-A-02446-R,1,"Mairie",47.520244,-1.74831,,1,,Europe/Paris,,OPL, +OPL:SA:AST-02457-A-02457-R,1,"Place Jollan de Clerville",47.475393,-1.76154,,1,,Europe/Paris,,OPL, +OPL:SA:AST-02593-A-02593-R,1,"Bellevue",47.626069,-1.643461,,1,,Europe/Paris,,OPL, +OPL:SA:AST-02593-A1,1,"Bellevue VC5",47.62621,-1.644881,,1,,Europe/Paris,,OPL, +OPL:SA:AST-02624-A-02624-R,1,"Rue Isaie Rabu",47.597718,-1.680442,,1,,Europe/Paris,,OPL, +OPL:SA:AST-02640-A-02640-R,1,"Champ de Foire",47.567025,-1.625491,,1,,Europe/Paris,,OPL, +OPL:SA:AST-02672-A1-02672-R1,1,"Église",47.526671,-1.66707,,1,,Europe/Paris,,OPL, +OPL:SA:AST-026721-A-026721-R,1,"L'océan",47.527037,-1.667448,,1,,Europe/Paris,,OPL, +OPL:SA:AST-02729-A-02729-R,1,"Église",47.46684,-1.67197,,1,,Europe/Paris,,OPL, +OPL:SA:AST-02996-A-02996-R,1,"Route d'Abbaretz",47.522769,-1.614878,,1,,Europe/Paris,,OPL, +OPL:SA:AST-03221-A-03221-R,1,"Rue du Don",47.620691,-1.537033,,1,,Europe/Paris,,OPL, +OPL:SA:AST-03509-A-03509-R,1,"Gare SNCF",47.663966,-1.498615,,1,,Europe/Paris,,OPL, +OPL:SA:AST-03523-A-03523-R,1,"Mairie",47.6556,-1.498837,,1,,Europe/Paris,,OPL, +OPL:SA:AST-03635-A-03635-R,1,"Rue du Bocage",47.495993,-1.419319,,1,,Europe/Paris,,OPL, +OPL:SA:AST-03732,1,"Église de Bere",47.723492,-1.386815,,1,,Europe/Paris,,OPL, +OPL:SA:AST-03757-A-03757-R,1,"Gare",47.68321,-1.446095,,1,,Europe/Paris,,OPL, +OPL:SA:AST-03869,1,"Rue de Verdun",47.725206,-1.384485,,1,,Europe/Paris,,OPL, +OPL:SA:AST-03893,1,"Acacias",47.716837,-1.363349,,1,,Europe/Paris,,OPL, +OPL:SA:AST-03961,1,"Ville aux Roses",47.711984,-1.381717,,1,,Europe/Paris,,OPL, +OPL:SA:AST-04115,1,"HLM Vitré",47.723439,-1.37106,,1,,Europe/Paris,,OPL, +OPL:SA:AST-04120,1,"République",47.717647,-1.382516,,1,,Europe/Paris,,OPL, +OPL:SA:AST-04124,1,"C. M. des Sports",47.7132,-1.379453,,1,,Europe/Paris,,OPL, +OPL:SA:AST-04128,1,"Route d'Ancenis",47.712115,-1.371806,,1,,Europe/Paris,,OPL, +OPL:SA:AST-04129,1,"Cité Paul Huard",47.712298,-1.375055,,1,,Europe/Paris,,OPL, +OPL:SA:AST-04132,1,"Montherlant",47.712629,-1.364083,,1,,Europe/Paris,,OPL, +OPL:SA:AST-04135-A-04135-R,1,"La Ville en Bois",47.705963,-1.382837,,1,,Europe/Paris,,OPL, +OPL:SA:AST-04368-A-04368-R,1,"Haut Bourg",47.461872,-1.279211,,1,,Europe/Paris,,OPL, +OPL:SA:AST-04508-A-04508-R,1,"Église",47.527702,-1.237117,,1,,Europe/Paris,,OPL, +OPL:SA:AST-04750-A-04750-R,1,"Chaussée le Retz",47.194206,-1.852284,,1,,Europe/Paris,,OPL, +OPL:SA:AST-04759-A-04759-R,1,"Mairie",47.199805,-1.87732,,1,,Europe/Paris,,OPL, +OPL:SA:AST-04872-A-04872-R,1,"Gendarmerie",47.044054,-1.949632,,1,,Europe/Paris,,OPL, +OPL:SA:AST-04880-A-04880-R,1,"Place du relais",47.11404,-1.937562,,1,,Europe/Paris,,OPL, +OPL:SA:AST-04918-A-04918-R,1,"Gare SNCF",47.047012,-1.956583,,1,,Europe/Paris,,OPL, +OPL:SA:AST-04980-A-04980-R,1,"La Boizonnière",47.119525,-1.952384,,1,,Europe/Paris,,OPL, +OPL:SA:AST-04989-A-04989-R,1,"Haute Perche",47.131285,-1.969731,,1,,Europe/Paris,,OPL, +OPL:SA:AST-05045-A-05045-R,1,"La Sicaudais",47.187342,-1.947477,,1,,Europe/Paris,,OPL, +OPL:SA:AST-05103-A-05103-R,1,"Église",47.244358,-1.934254,,1,,Europe/Paris,,OPL, +OPL:SA:AST-05112-A-05112-R,1,"Le Migron",47.254853,-1.9168,,1,,Europe/Paris,,OPL, +OPL:SA:AST-05337-A-05337-R,1,"Place du Centre",47.063602,-2.00133,,1,,Europe/Paris,,OPL, +OPL:SA:AST-05338-A-05338-R,1,"Prigny",47.06424,-1.986547,,1,,Europe/Paris,,OPL, +OPL:SA:AST-05345-A-05345-R,1,"Salle des Fêtes",47.078833,-2.033854,,1,,Europe/Paris,,OPL, +OPL:SA:AST-05347-A-05347-R,1,"La Noé Fleurie",47.092481,-2.036096,,1,,Europe/Paris,,OPL, +OPL:SA:AST-05357-A-05357-R,1,"La Rogère",47.097649,-2.0451,,1,,Europe/Paris,,OPL, +OPL:SA:AST-05418-A-05418-R,1,"Église",47.151111,-1.985507,,1,,Europe/Paris,,OPL, +OPL:SA:AST-05460-A-05460-R,1,"Ennerie",47.192489,-2.023022,,1,,Europe/Paris,,OPL, +OPL:SA:AST-05533-A-05533-R,1,"Rue de la Gare",47.252711,-2.021104,,1,,Europe/Paris,,OPL, +OPL:SA:AST-05539-A-05539-A1-05539-R-05539-R1,1,"Route de Paimboeuf",47.256396,-2.013954,,1,,Europe/Paris,,OPL, +OPL:SA:AST-05568-A-05568-R,1,"Centre",47.277539,-2.059366,,1,,Europe/Paris,,OPL, +OPL:SA:AST-05572-A-05572-A1-05572-R,1,"Kuhlmann Floralies",47.283069,-2.016377,,1,,Europe/Paris,,OPL, +OPL:SA:AST-05575-A-05575-R,1,"Square Kerbez",47.288992,-2.039103,,1,,Europe/Paris,,OPL, +OPL:SA:AST-05584-A-05584-R,1,"Place du Marché",47.288448,-2.031704,,1,,Europe/Paris,,OPL, +OPL:SA:AST-05708-A-05708-R,1,"Chêne Bonnet",47.277443,-2.066322,,1,,Europe/Paris,,OPL, +OPL:SA:AST-05738-A-05738-R,1,"La Fléchousserie",47.10258,-2.06055,,1,,Europe/Paris,,OPL, +OPL:SA:AST-05754-A-05754-R,1,"Terres Jarries",47.122554,-2.119061,,1,,Europe/Paris,,OPL, +OPL:SA:AST-05755-A-05755-R,1,"Rond-Point EDF",47.122665,-2.123938,,1,,Europe/Paris,,OPL, +OPL:SA:AST-05791-A-05791-R,1,"La Joselière",47.106392,-2.074641,,1,,Europe/Paris,,OPL, +OPL:SA:AST-05796-A-05796-R,1,"Ste Marie Pl. de Verdun",47.114805,-2.129728,,1,,Europe/Paris,,OPL, +OPL:SA:AST-05802-A-05802-R,1,"Cinéma St Gilles",47.120034,-2.100775,,1,,Europe/Paris,,OPL, +OPL:SA:AST-05805-A-05805-R,1,"Le Sandier",47.121544,-2.11089,,1,,Europe/Paris,,OPL, +OPL:SA:AST-05848-A-05848-R,1,"La Dalonnerie",47.160273,-2.146358,,1,,Europe/Paris,,OPL, +OPL:SA:AST-05878-A-05878-R,1,"Mairie",47.182644,-2.14789,,1,,Europe/Paris,,OPL, +OPL:SA:AST-05884-A-05884-R,1,"La Poste",47.181598,-2.152007,,1,,Europe/Paris,,OPL, +OPL:SA:AST-05999-A-05999-R,1,"La Baie de Loire",47.260798,-2.124985,,1,,Europe/Paris,,OPL, +OPL:SA:AST-06000-A-06000-R,1,"Basse Prinais",47.26292,-2.153826,,1,,Europe/Paris,,OPL, +OPL:SA:AST-06002-A-06002-R,1,"La Moisenais",47.263775,-2.100045,,1,,Europe/Paris,,OPL, +OPL:SA:AST-06006-A-06006-R,1,"Greix",47.264314,-2.107376,,1,,Europe/Paris,,OPL, +OPL:SA:AST-06018-A-06018-R,1,"La Mabilais",47.273397,-2.088833,,1,,Europe/Paris,,OPL, +OPL:SA:AST-06024-A-06024-R,1,"La Birochère",47.109393,-2.087413,,1,,Europe/Paris,,OPL, +OPL:SA:AST-06187-A-06187-R,1,"Quirouard",47.129055,-2.207928,,1,,Europe/Paris,,OPL, +OPL:SA:AST-06285-A-06285-R,1,"Le Cormier",47.155175,-2.174444,,1,,Europe/Paris,,OPL, +OPL:SA:AST-06335-A-06335-R,1,"Messan",47.192795,-1.852472,,1,,Europe/Paris,,OPL, +OPL:SA:AST-06337-A-06337-R,1,"Place de l'Église",47.185389,-1.86097,,1,,Europe/Paris,,OPL, +OPL:SA:AST-06543-A-06543-R,1,"St Jean de Boiseau",47.195874,-1.724895,,1,,Europe/Paris,,OPL, +OPL:SA:AST-06609-A-06609-R,1,"Centre",47.136377,-1.729957,,1,,Europe/Paris,,OPL, +OPL:SA:AST-06610-A-06610-R,1,"Église",47.13454,-1.747417,,1,,Europe/Paris,,OPL, +OPL:SA:AST-06614-A-06614-R,1,"Ecomarché",47.131669,-1.751728,,1,,Europe/Paris,,OPL, +OPL:SA:AST-06666-A-06666-R,1,"Église",47.055466,-1.726583,,1,,Europe/Paris,,OPL, +OPL:SA:AST-06796-A-06796-R,1,"Allende",47.175342,-1.62354,,1,,Europe/Paris,,OPL, +OPL:SA:AST-06867-A-06867-R,1,"Vannerie",47.060518,-1.631704,,1,,Europe/Paris,,OPL, +OPL:SA:AST-06868-A-06868-R,1,"Brissonnière",47.056307,-1.633676,,1,,Europe/Paris,,OPL, +OPL:SA:AST-06916-A-06916-R,1,"Les Rairies",47.139326,-1.57856,,1,,Europe/Paris,,OPL, +OPL:SA:AST-06918-A-06918-R,1,"Le Moulinier",47.130908,-1.580018,,1,,Europe/Paris,,OPL, +OPL:SA:AST-06939-A-06939-R,1,"Le Fréty Grand",47.124367,-1.603185,,1,,Europe/Paris,,OPL, +OPL:SA:AST-06941-A-06941-R,1,"Église",47.123077,-1.584067,,1,,Europe/Paris,,OPL, +OPL:SA:AST-06945-A-06945-R,1,"Les Coutumes",47.106969,-1.59049,,1,,Europe/Paris,,OPL, +OPL:SA:AST-06948-A-06948-R,1,"La Chaussée",47.099143,-1.60915,,1,,Europe/Paris,,OPL, +OPL:SA:AST-06952-A-06952-R,1,"Église",47.094176,-1.61237,,1,,Europe/Paris,,OPL, +OPL:SA:AST-06986-A-06986-R,1,"La Tournelle",47.153656,-1.558949,,1,,Europe/Paris,,OPL, +OPL:SA:AST-06990-A-06990-R,1,"La Gautellerie",47.147183,-1.563069,,1,,Europe/Paris,,OPL, +OPL:SA:AST-06996-A-06996-R,1,"Planchette",47.142789,-1.572076,,1,,Europe/Paris,,OPL, +OPL:SA:AST-07019-A-07019-R,1,"Viais",47.118562,-1.537622,,1,,Europe/Paris,,OPL, +OPL:SA:AST-07021-A-07021-R,1,"Le Patis",47.112526,-1.571856,,1,,Europe/Paris,,OPL, +OPL:SA:AST-07365-A-07365-R,1,"Les Fosses",46.997441,-1.73718,,1,,Europe/Paris,,OPL, +OPL:SA:AST-07457-A-07457-R,1,"Tour Eiffel",47.199658,-1.754524,,1,,Europe/Paris,,OPL, +OPL:SA:AST-07474-A-07474-R,1,"La Compointerie",47.034854,-1.668791,,1,,Europe/Paris,,OPL, +OPL:SA:AST-07479-A-07479-R,1,"Les Troissarts",47.036227,-1.694282,,1,,Europe/Paris,,OPL, +OPL:SA:AST-07485-A-07485-R,1,"La Pironnière",47.038656,-1.704742,,1,,Europe/Paris,,OPL, +OPL:SA:AST-07490-A-07490-R,1,"Le Plessis",47.035243,-1.683599,,1,,Europe/Paris,,OPL, +OPL:SA:AST-07492-A-07492-R,1,"Le Pied Pain",47.028453,-1.671859,,1,,Europe/Paris,,OPL, +OPL:SA:AST-07495-A-07495-R,1,"La Gravouillerie",47.022489,-1.68691,,1,,Europe/Paris,,OPL, +OPL:SA:AST-07570-A-07570-R,1,"Église",46.900667,-1.685285,,1,,Europe/Paris,,OPL, +OPL:SA:AST-07581-A-07581-R,1,"Moulin de Passay",47.093539,-1.631102,,1,,Europe/Paris,,OPL, +OPL:SA:AST-07582-A-07582-R,1,"Passay Rue du Lac",47.095577,-1.631381,,1,,Europe/Paris,,OPL, +OPL:SA:AST-07590-A-07590-R,1,"Félix Platel",47.037436,-1.646755,,1,,Europe/Paris,,OPL, +OPL:SA:AST-07604-A-07604-R,1,"Passay",47.096294,-1.635768,,1,,Europe/Paris,,OPL, +OPL:SA:AST-07605-A-07605-R,1,"Vieux Moulin",47.090796,-1.629297,,1,,Europe/Paris,,OPL, +OPL:SA:AST-07606-A-07606-R,1,"Le Pont du Guy",47.086504,-1.628265,,1,,Europe/Paris,,OPL, +OPL:SA:AST-07608-A-07608-R,1,"L'Aubrais",47.079123,-1.631165,,1,,Europe/Paris,,OPL, +OPL:SA:AST-07620-A-07620-R,1,"Guinèvre",47.050617,-1.635296,,1,,Europe/Paris,,OPL, +OPL:SA:AST-07623-A-07623-R,1,"Moulin de la Chaussée",47.046618,-1.638345,,1,,Europe/Paris,,OPL, +OPL:SA:AST-07632-A-07632-R,1,"Église",47.036346,-1.640834,,1,,Europe/Paris,,OPL, +OPL:SA:AST-07776-A-07776-R,1,"Stade",47.08994,-1.615741,,1,,Europe/Paris,,OPL, +OPL:SA:AST-07847-A-07847-R,1,"Aujardière",47.019004,-1.599709,,1,,Europe/Paris,,OPL, +OPL:SA:AST-07858-A-07858-R,1,"Église",47.009437,-1.583014,,1,,Europe/Paris,,OPL, +OPL:SA:AST-07865-A-07865-R,1,"Place Henri IV",46.991665,-1.59369,,1,,Europe/Paris,,OPL, +OPL:SA:AST-07894-A-07894-R,1,"Saint Jean de Corcoué",46.963431,-1.584104,,1,,Europe/Paris,,OPL, +OPL:SA:AST-07898-A-07898-R,1,"La Bénate",46.954906,-1.60513,,1,,Europe/Paris,,OPL, +OPL:SA:AST-07909-A-07909-R,1,"La Croix Verte",46.938494,-1.603031,,1,,Europe/Paris,,OPL, +OPL:SA:AST-07921-A-07921-R,1,"Le Moulin Guérin",46.920872,-1.599546,,1,,Europe/Paris,,OPL, +OPL:SA:AST-07955-A-07955-R,1,"Basse Parnière",46.891786,-1.584522,,1,,Europe/Paris,,OPL, +OPL:SA:AST-08058-A-08058-R,1,"Sainte Marie",46.972691,-1.575613,,1,,Europe/Paris,,OPL, +OPL:SA:AST-08059-A-08059-R,1,"Huit Mai",46.966832,-1.576528,,1,,Europe/Paris,,OPL, +OPL:SA:AST-08153-A-08153-R,1,"Place Georges Gaudet",47.055921,-1.512598,,1,,Europe/Paris,,OPL, +OPL:SA:AST-08275-A-08275-R,1,"Place Saint Thomas",46.972249,-1.433461,,1,,Europe/Paris,,OPL, +OPL:SA:AST-08287-A-08287-R,1,"Place des Fêtes",46.968326,-1.437811,,1,,Europe/Paris,,OPL, +OPL:SA:AST-08419-A-08419-R,1,"Écoles",47.081548,-1.337905,,1,,Europe/Paris,,OPL, +OPL:SA:AST-08508-A-08508-R,1,"Mairie",47.07684,-1.248415,,1,,Europe/Paris,,OPL, +OPL:SA:AST-08697-A-08697-R,1,"Les 3 Hermines",47.108917,-1.472117,,1,,Europe/Paris,,OPL, +OPL:SA:AST-08715-A-08715-R,1,"Maison Rouge",47.118063,-1.523999,,1,,Europe/Paris,,OPL, +OPL:SA:AST-08724-A-08724-R,1,"Mairie",47.075426,-1.397835,,1,,Europe/Paris,,OPL, +OPL:SA:AST-08728-A-08728-R,1,"La Croix des Prés",47.061821,-1.493858,,1,,Europe/Paris,,OPL, +OPL:SA:AST-08746-A-08746-R,1,"Le Plessis",47.078397,-1.405983,,1,,Europe/Paris,,OPL, +OPL:SA:AST-08765-A-08765-R,1,"Le Haut Coin",47.082715,-1.415833,,1,,Europe/Paris,,OPL, +OPL:SA:AST-08822-A-08822-R,1,"Les Aires",47.098628,-1.493386,,1,,Europe/Paris,,OPL, +OPL:SA:AST-08823-A-08823-R,1,"Église",47.098151,-1.488975,,1,,Europe/Paris,,OPL, +OPL:SA:AST-08826-A-08826-R,1,"La Jarrie",47.105531,-1.508921,,1,,Europe/Paris,,OPL, +OPL:SA:AST-08836-A-08836-R,1,"La Loirière",47.097085,-1.53257,,1,,Europe/Paris,,OPL, +OPL:SA:AST-08840-A-08840-R,1,"La Boule d'Or",47.088759,-1.528616,,1,,Europe/Paris,,OPL, +OPL:SA:AST-08857-A-08857-R,1,"Les Chaises",47.079242,-1.494082,,1,,Europe/Paris,,OPL, +OPL:SA:AST-08859-A-08859-R,1,"L'Hommeau",47.070919,-1.496685,,1,,Europe/Paris,,OPL, +OPL:SA:AST-08864-A-08864-R,1,"Mairie",47.058093,-1.489032,,1,,Europe/Paris,,OPL, +OPL:SA:AST-08878-A-08878-R,1,"La Poste",47.055183,-1.487457,,1,,Europe/Paris,,OPL, +OPL:SA:AST-08964-A-08964-R,1,"Route de Nantes",47.017349,-1.436307,,1,,Europe/Paris,,OPL, +OPL:SA:AST-08975-A-08975-R,1,"Le Noyer",47.022961,-1.449504,,1,,Europe/Paris,,OPL, +OPL:SA:AST-08989-A-08989-R,1,"Nonnaire",47.036213,-1.469125,,1,,Europe/Paris,,OPL, +OPL:SA:AST-09007-A-09007-R,1,"Cinq Routes",47.006255,-1.454762,,1,,Europe/Paris,,OPL, +OPL:SA:AST-09009-A-09009-R,1,"L'Audonnière",46.996113,-1.453915,,1,,Europe/Paris,,OPL, +OPL:SA:AST-09070-A-09070-R,1,"La Chebuette",47.26803,-1.408866,,1,,Europe/Paris,,OPL, +OPL:SA:AST-09080-A-09080-R,1,"Le Bout des Ponts",47.257593,-1.425866,,1,,Europe/Paris,,OPL, +OPL:SA:AST-09089-A-09089-R,1,"Boire Courant",47.246101,-1.436216,,1,,Europe/Paris,,OPL, +OPL:SA:AST-09151-A-09151-R,1,"Champ Failli",47.190866,-1.401396,,1,,Europe/Paris,,OPL, +OPL:SA:AST-09193-A-09193-R,1,"La Bourchinière",47.151316,-1.429019,,1,,Europe/Paris,,OPL, +OPL:SA:AST-09194-A-09194-R,1,"Mairie",47.143262,-1.416101,,1,,Europe/Paris,,OPL, +OPL:SA:AST-09206-A-09206-R,1,"Saint Martin",47.132778,-1.42271,,1,,Europe/Paris,,OPL, +OPL:SA:AST-09211-A-09211-R,1,"Croix verte",47.12607,-1.422942,,1,,Europe/Paris,,OPL, +OPL:SA:AST-09231-A-09231-R,1,"La Jaunaie",47.092935,-1.440734,,1,,Europe/Paris,,OPL, +OPL:SA:AST-09238-A-09238-R,1,"Allée du Château",47.19543,-1.414957,,1,,Europe/Paris,,OPL, +OPL:SA:AST-09269-A-09269-R,1,"Port Égaud",47.249238,-1.377956,,1,,Europe/Paris,,OPL, +OPL:SA:AST-09336-A-09336-R,1,"Église",47.253799,-1.385011,,1,,Europe/Paris,,OPL, +OPL:SA:AST-09343-A-09343-R,1,"Cour du Chêne",47.244835,-1.361002,,1,,Europe/Paris,,OPL, +OPL:SA:AST-09393-A-09393-R,1,"La Poterie",47.176792,-1.388336,,1,,Europe/Paris,,OPL, +OPL:SA:AST-09397-A-09397-R,1,"La Cerclerie",47.172953,-1.35415,,1,,Europe/Paris,,OPL, +OPL:SA:AST-09398-A-09398-R,1,"La Bernardière",47.173072,-1.368775,,1,,Europe/Paris,,OPL, +OPL:SA:AST-09433-A-09433-R,1,"Rue de la Mairie",47.099029,-1.385328,,1,,Europe/Paris,,OPL, +OPL:SA:AST-09473-A-09473-R,1,"Gendarmerie",47.241085,-1.355725,,1,,Europe/Paris,,OPL, +OPL:SA:AST-09527-A-09527-R,1,"Mairie",47.271323,-1.339865,,1,,Europe/Paris,,OPL, +OPL:SA:AST-09629-A-09629-R,1,"Église",47.176363,-1.339793,,1,,Europe/Paris,,OPL, +OPL:SA:AST-09631-A-09631-R,1,"La Gobinière",47.176923,-1.324343,,1,,Europe/Paris,,OPL, +OPL:SA:AST-09634-A-09634-R,1,"Moulin de la Verrie",47.174387,-1.319129,,1,,Europe/Paris,,OPL, +OPL:SA:AST-09747-A-09747-R,1,"Église Barbechat",47.277289,-1.286995,,1,,Europe/Paris,,OPL, +OPL:SA:AST-09807-A-09807-R,1,"Les Nouelles",47.207745,-1.3058,,1,,Europe/Paris,,OPL, +OPL:SA:AST-09824-A-09824-R,1,"La Tournerie",47.173049,-1.305672,,1,,Europe/Paris,,OPL, +OPL:SA:AST-09827-A-09827-R,1,"Landreau Village",47.172798,-1.293511,,1,,Europe/Paris,,OPL, +OPL:SA:AST-09834-A-09834-R,1,"Luxembourg",47.165035,-1.272832,,1,,Europe/Paris,,OPL, +OPL:SA:AST-09836-A-09836-R,1,"La Moucletière",47.170416,-1.287869,,1,,Europe/Paris,,OPL, +OPL:SA:AST-09846-A-09846-R,1,"Gendarmerie",47.157754,-1.272511,,1,,Europe/Paris,,OPL, +OPL:SA:AST-09893-A-09893-R,1,"Église",47.10103,-1.302625,,1,,Europe/Paris,,OPL, +OPL:SA:AST-09923-A-09923-R,1,"Église",47.237813,-1.243385,,1,,Europe/Paris,,OPL, +OPL:SA:AST-09924-A-09924-R,1,"Les Mauges",47.231874,-1.218837,,1,,Europe/Paris,,OPL, +OPL:SA:AST-09948-A-09948-R,1,"La Chalousière",47.160351,-1.223433,,1,,Europe/Paris,,OPL, +OPL:SA:AST-10079-A-10079-R,1,"École",47.180622,-1.177171,,1,,Europe/Paris,,OPL, +OPL:SA:AST-10091-A-10091-R-10091-R1,1,"Pirmil",47.19629,-1.542501,,1,,Europe/Paris,,OPL, +OPL:SA:AST-10096-A-10096-R,1,"Hôtel Dieu",47.212582,-1.552579,,1,,Europe/Paris,,OPL, +OPL:SA:AST-10097-A-10097-R,1,"Rue de Nantes",47.151318,-1.53437,,1,,Europe/Paris,,OPL, +OPL:SA:AST-10141-A-10141-R,1,"La Herdrie",47.198391,-1.453067,,1,,Europe/Paris,,OPL, +OPL:SA:AST-11088-A-11088-R,1,"La Sureté",47.473641,-2.167087,,1,,Europe/Paris,,OPL, +OPL:SA:AST-11096-A-11096-R,1,"L'Angle Bertho",47.465675,-2.218994,,1,,Europe/Paris,,OPL, +OPL:SA:AST-11108-A-11108-R,1,"Bergon",47.460357,-2.208672,,1,,Europe/Paris,,OPL, +OPL:SA:AST-11110-A-11110-R,1,"L'Organais",47.452341,-2.193391,,1,,Europe/Paris,,OPL, +OPL:SA:AST-11130-A-11130-R,1,"Montfort",47.440598,-2.191602,,1,,Europe/Paris,,OPL, +OPL:SA:AST-11131-A-11131-R,1,"Marongle",47.433661,-2.191354,,1,,Europe/Paris,,OPL, +OPL:SA:AST-11163-A-11163-R,1,"Gare SNCF",47.285442,-2.21152,,1,,Europe/Paris,,OPL, +OPL:SA:AST-11211-A-11211-R,1,"Saint Cado",47.43958,-2.192257,,1,,Europe/Paris,,OPL, +OPL:SA:AST-11213-A-11213-R,1,"La Poterie",47.430993,-2.182806,,1,,Europe/Paris,,OPL, +OPL:SA:AST-11222-A-11222-R,1,"Le Bourg",47.481901,-2.159217,,1,,Europe/Paris,,OPL, +OPL:SA:AST-11231-A-11231-R,1,"La Villeneuve",47.485636,-2.156763,,1,,Europe/Paris,,OPL, +OPL:SA:AST-11331-A-11331-R,1,"SEM",47.35613,-2.02667,,1,,Europe/Paris,,OPL, +OPL:SA:AST-11333-A-11333-R,1,"Tremblay",47.354594,-2.007756,,1,,Europe/Paris,,OPL, +OPL:SA:AST-11348-A-11348-R,1,"La Crochardais",47.463798,-1.962736,,1,,Europe/Paris,,OPL, +OPL:SA:AST-11399-A-11399-R,1,"Groupe Scolaire",47.37037,-1.970653,,1,,Europe/Paris,,OPL, +OPL:SA:AST-11520-A-11520-R,1,"Mairie",47.320572,-1.910091,,1,,Europe/Paris,,OPL, +OPL:SA:AST-11577-A-11577-R,1,"Croix Blanche",47.350747,-1.865043,,1,,Europe/Paris,,OPL, +OPL:SA:AST-11612-A-11612-R,1,"Papinais",47.299439,-1.849799,,1,,Europe/Paris,,OPL, +OPL:SA:AST-11704-A-11704-R,1,"Croix de Bauche",47.294376,-1.82727,,1,,Europe/Paris,,OPL, +OPL:SA:AST-11783-R,1,"Louis Girard",47.328102,-1.791588,,1,,Europe/Paris,,OPL, +OPL:SA:AST-11789-A-11789-R,1,"La Bretonnière",47.325651,-1.784224,,1,,Europe/Paris,,OPL, +OPL:SA:AST-11800-A-11800-R,1,"Église",47.326797,-1.737754,,1,,Europe/Paris,,OPL, +OPL:SA:AST-11806-A-11806-R,1,"La Croix de Pierre",47.321583,-1.735543,,1,,Europe/Paris,,OPL, +OPL:SA:AST-11808-A-11808-R,1,"La Valinière",47.322168,-1.750689,,1,,Europe/Paris,,OPL, +OPL:SA:AST-11813-A-11813-R,1,"La Freuzière",47.320201,-1.768069,,1,,Europe/Paris,,OPL, +OPL:SA:AST-11831-A-11831-R,1,"Le Bas Vernay",47.315136,-1.731672,,1,,Europe/Paris,,OPL, +OPL:SA:AST-11839-A-11839-R,1,"Moulin-Malescot",47.308924,-1.72287,,1,,Europe/Paris,,OPL, +OPL:SA:AST-11872-A-11872-R,1,"École du Gaz",47.283043,-1.739793,,1,,Europe/Paris,,OPL, +OPL:SA:AST-11873-A-11873-R,1,"Petit Rouillonnais",47.285044,-1.748057,,1,,Europe/Paris,,OPL, +OPL:SA:AST-11888-A-11888-R,1,"Route du Temple",47.279461,-1.781512,,1,,Europe/Paris,,OPL, +OPL:SA:AST-11890-A-11890-R,1,"Bois Alix",47.282816,-1.802612,,1,,Europe/Paris,,OPL, +OPL:SA:AST-11924-A-11924-R,1,"La Rouillonnais",47.26367,-1.764152,,1,,Europe/Paris,,OPL, +OPL:SA:AST-11946-A-11946-R,1,"Le Chêne Creux",47.25418,-1.752989,,1,,Europe/Paris,,OPL, +OPL:SA:AST-11955-A-11955-R,1,"La Garneraie",47.245245,-1.726785,,1,,Europe/Paris,,OPL, +OPL:SA:AST-11980-A-11980-R,1,"La Guerche",47.278865,-1.791068,,1,,Europe/Paris,,OPL, +OPL:SA:AST-11990-A-11990-R,1,"Golf",47.292184,-1.703801,,1,,Europe/Paris,,OPL, +OPL:SA:AST-11991-A-11991-R,1,"Naudières",47.269687,-1.697079,,1,,Europe/Paris,,OPL, +OPL:SA:AST-11997-A-11997-R,1,"Le Bois Rignoux",47.33663,-1.699553,,1,,Europe/Paris,,OPL, +OPL:SA:AST-12001-A-12001-R,1,"La Paquelais",47.331522,-1.696762,,1,,Europe/Paris,,OPL, +OPL:SA:AST-12005-A-12005-R,1,"La Bouvardière",47.321014,-1.695819,,1,,Europe/Paris,,OPL, +OPL:SA:AST-12012-A-12012-R,1,"Cinq Chemins de Valais",47.315907,-1.689257,,1,,Europe/Paris,,OPL, +OPL:SA:AST-12019-A-12019-R,1,"La Chouamétrie",47.308168,-1.679502,,1,,Europe/Paris,,OPL, +OPL:SA:AST-12024-A-12024-R,1,"Gaudinière",47.301272,-1.710843,,1,,Europe/Paris,,OPL, +OPL:SA:AST-12033-A-12033-R,1,"La Plée",47.299455,-1.66447,,1,,Europe/Paris,,OPL, +OPL:SA:AST-12038-A-12038-R,1,"Bel Abord",47.276468,-1.711434,,1,,Europe/Paris,,OPL, +OPL:SA:AST-12041-A-12041-R,1,"Rousselière",47.232719,-1.646021,,1,,Europe/Paris,,OPL, +OPL:SA:AST-12131-A-12131-R,1,"Château de Clermont",47.327421,-1.341662,,1,,Europe/Paris,,OPL, +OPL:SA:AST-12136-A-12136-R,1,"Relandières Parking",47.319818,-1.378696,,1,,Europe/Paris,,OPL, +OPL:SA:AST-12190-A-12190-R,1,"Le Moulin Blanc",47.324235,-1.614873,,1,,Europe/Paris,,OPL, +OPL:SA:AST-12203-A-12203-R,1,"Le Gray",47.283937,-1.586716,,1,,Europe/Paris,,OPL, +OPL:SA:AST-12231-A-12231-R,1,"La Butte",47.369428,-1.606401,,1,,Europe/Paris,,OPL, +OPL:SA:AST-12232-A-12232-R,1,"Mairie",47.364215,-1.606006,,1,,Europe/Paris,,OPL, +OPL:SA:AST-12243-A-12243-R,1,"Bellevue",47.356519,-1.604302,,1,,Europe/Paris,,OPL, +OPL:SA:AST-12251-A-12251-R,1,"Rochère",47.346058,-1.608278,,1,,Europe/Paris,,OPL, +OPL:SA:AST-12262-A-12262-R,1,"Belle Etoile",47.330727,-1.617539,,1,,Europe/Paris,,OPL, +OPL:SA:AST-12264-A-12264-R,1,"Poste de Gesvres",47.327489,-1.616087,,1,,Europe/Paris,,OPL, +OPL:SA:AST-12274-A-12274-R,1,"Ménardais",47.306899,-1.617944,,1,,Europe/Paris,,OPL, +OPL:SA:AST-12280-A-12280-R,1,"Noé Violin",47.30073,-1.591603,,1,,Europe/Paris,,OPL, +OPL:SA:AST-12286-A-12286-R-12286-R1,1,"Pigeon Blanc",47.296365,-1.611996,,1,,Europe/Paris,,OPL, +OPL:SA:AST-12287-A-12287-R,1,"Télégraphe",47.290273,-1.607687,,1,,Europe/Paris,,OPL, +OPL:SA:AST-12369-A-12369-R,1,"Pas Chevalier",47.400682,-1.540082,,1,,Europe/Paris,,OPL, +OPL:SA:AST-12382-A-12382-R,1,"Château d'Eau",47.387953,-1.556335,,1,,Europe/Paris,,OPL, +OPL:SA:AST-12387-A-12387-R,1,"Rue du Château",47.384795,-1.559873,,1,,Europe/Paris,,OPL, +OPL:SA:AST-12396-A-12396-R,1,"Beauchêne",47.369714,-1.551647,,1,,Europe/Paris,,OPL, +OPL:SA:AST-12400-A-12400-R,1,"Cornette",47.357223,-1.540649,,1,,Europe/Paris,,OPL, +OPL:SA:AST-12410-A-12410-R,1,"Maison Blanche",47.352502,-1.537986,,1,,Europe/Paris,,OPL, +OPL:SA:AST-12469-A-12469-R,1,"Rond-point de Paris",47.233859,-1.535906,,1,,Europe/Paris,,OPL, +OPL:SA:AST-12470-A-12470-R,1,"St Clément",47.222128,-1.54688,,1,,Europe/Paris,,OPL, +OPL:SA:AST-12490-A-12490-R,1,"St Donatien",47.229132,-1.540591,,1,,Europe/Paris,,OPL, +OPL:SA:AST-12545-A-12545-R,1,"Faubourg Saint Georges",47.440534,-1.487337,,1,,Europe/Paris,,OPL, +OPL:SA:AST-12625-A-12625-R,1,"Centre",47.296593,-1.490995,,1,,Europe/Paris,,OPL, +OPL:SA:AST-12630-A-12630-R,1,"Bréchetière",47.284667,-1.503577,,1,,Europe/Paris,,OPL, +OPL:SA:AST-12653-A-12653-R,1,"Haluchère-Batignolles",47.249706,-1.52346,,1,,Europe/Paris,,OPL, +OPL:SA:AST-12747-A-12747-R,1,"L'Isle",47.425053,-1.482225,,1,,Europe/Paris,,OPL, +OPL:SA:AST-12767-A-12767-R,1,"La Furetière",47.409149,-1.463994,,1,,Europe/Paris,,OPL, +OPL:SA:AST-12780-A-12780-R,1,"Pharmacie",47.39171,-1.455339,,1,,Europe/Paris,,OPL, +OPL:SA:AST-12784-A-12784-R,1,"La Dechausserie",47.382502,-1.453192,,1,,Europe/Paris,,OPL, +OPL:SA:AST-12793-A-12793-R,1,"La Grée",47.366149,-1.454673,,1,,Europe/Paris,,OPL, +OPL:SA:AST-12796-A-12796-R,1,"Beauchène",47.357792,-1.457337,,1,,Europe/Paris,,OPL, +OPL:SA:AST-12807-A-12807-R,1,"La Noé",47.349273,-1.464724,,1,,Europe/Paris,,OPL, +OPL:SA:AST-12819-A-12819-R,1,"Le Perray",47.335901,-1.452874,,1,,Europe/Paris,,OPL, +OPL:SA:AST-12834-A-12834-R,1,"L'Épeau",47.321332,-1.469831,,1,,Europe/Paris,,OPL, +OPL:SA:AST-13011-A-13011-R,1,"La Treluère",47.372936,-1.406964,,1,,Europe/Paris,,OPL, +OPL:SA:AST-13029-A-13029-R,1,"Pinsoison",47.359247,-1.410322,,1,,Europe/Paris,,OPL, +OPL:SA:AST-13041-A-13041-R,1,"La Goulière",47.351173,-1.418874,,1,,Europe/Paris,,OPL, +OPL:SA:AST-13049-A-13049-R,1,"Longrais",47.342137,-1.438999,,1,,Europe/Paris,,OPL, +OPL:SA:AST-13136-A-13136-R,1,"Le Plessis",47.398357,-1.380017,,1,,Europe/Paris,,OPL, +OPL:SA:AST-13143-A-13143-R,1,"Bel Air",47.38073,-1.395119,,1,,Europe/Paris,,OPL, +OPL:SA:AST-13170-A-13170-R,1,"Mairie",47.447901,-1.346653,,1,,Europe/Paris,,OPL, +OPL:SA:AST-13209-A-13209-R,1,"Levée des dons",47.302713,-1.626787,,1,,Europe/Paris,,OPL, +OPL:SA:AST-13219-A-13219-R,1,"Curette",47.359307,-1.63183,,1,,Europe/Paris,,OPL, +OPL:SA:AST-13236-A-13236-R,1,"Boeufs Gras",47.347329,-1.625818,,1,,Europe/Paris,,OPL, +OPL:SA:AST-13241-A-13241-R,1,"Place de la Liberté",47.330828,-1.623654,,1,,Europe/Paris,,OPL, +OPL:SA:AST-13245-A-13245-R,1,"Muzon",47.331224,-1.668744,,1,,Europe/Paris,,OPL, +OPL:SA:AST-13247-A-13247-R,1,"Grehandière",47.326537,-1.64366,,1,,Europe/Paris,,OPL, +OPL:SA:AST-13251-A-13251-R,1,"Sionnière",47.318114,-1.639644,,1,,Europe/Paris,,OPL, +OPL:SA:AST-13252-A-13252-R,1,"Garambeau",47.313449,-1.633496,,1,,Europe/Paris,,OPL, +OPL:SA:AST-13259-A-13259-R,1,"La Fontaine",47.310226,-1.631813,,1,,Europe/Paris,,OPL, +OPL:SA:AST-13422-A-13422-R,1,"Jean Burel",47.644356,-2.07189,,1,,Europe/Paris,,OPL, +OPL:SA:AST-13435-A-13435-R,1,"Jean du Dresnay",47.586201,-2.043061,,1,,Europe/Paris,,OPL, +OPL:SA:AST-13673-A-13673-R,1,"La Normandais",47.55673,-2.054687,,1,,Europe/Paris,,OPL, +OPL:SA:AST-13812-A-13812-R,1,"Mairie",47.519555,-1.955275,,1,,Europe/Paris,,OPL, +OPL:SA:AST-13972-A-13972-R,1,"Notre Dame de Grace",47.489606,-1.931305,,1,,Europe/Paris,,OPL, +OPL:SA:AST-14002-A-14002-R,1,"Saint-Eloi",47.417177,-1.893481,,1,,Europe/Paris,,OPL, +OPL:SA:AST-14149-A-14149-R,1,"La Laiterie",47.549515,-1.862294,,1,,Europe/Paris,,OPL, +OPL:SA:AST-14150-A,1,"Le Plessis",47.554429,-1.872212,,1,,Europe/Paris,,OPL, +OPL:SA:AST-14150-R,1,"Le Plessis",47.551369,-1.873094,,1,,Europe/Paris,,OPL, +OPL:SA:AST-14161-A-14161-R,1,"Place du Lion d'Or",47.540888,-1.887292,,1,,Europe/Paris,,OPL, +OPL:SA:AST-14275-A-14275-R,1,"Église",47.361032,-1.863321,,1,,Europe/Paris,,OPL, +OPL:SA:AST-14299-A-14299-R,1,"Rue Saint Jean",47.627802,-1.833261,,1,,Europe/Paris,,OPL, +OPL:SA:AST-14413-A-14413-R,1,"Trelan",47.558483,-1.807799,,1,,Europe/Paris,,OPL, +OPL:SA:AST-14416-A-14416-R,1,"Maison Blanche",47.559583,-1.821595,,1,,Europe/Paris,,OPL, +OPL:SA:AST-14420-A-14420-R,1,"Le Coudray",47.55792,-1.839548,,1,,Europe/Paris,,OPL, +OPL:SA:AST-14466-A-14466-R,1,"Pont Piétin",47.46117,-1.814676,,1,,Europe/Paris,,OPL, +OPL:SA:AST-14495-A-14495-R,1,"Hôtel de France RN 171",47.443625,-1.812802,,1,,Europe/Paris,,OPL, +OPL:SA:AST-14495-A1-14495-R1,1,"Hôtel de France RD 81",47.44392,-1.814162,,1,,Europe/Paris,,OPL, +OPL:SA:AST-14505-A-14505-R,1,"La Ridelais",47.416408,-1.828132,,1,,Europe/Paris,,OPL, +OPL:SA:AST-14717-A-14717-A1-14717-R,1,"La Carrée",47.461921,-1.783651,,1,,Europe/Paris,,OPL, +OPL:SA:AST-14719-A-14719-R,1,"Pont de Maffre",47.462861,-1.780172,,1,,Europe/Paris,,OPL, +OPL:SA:AST-14741-A-14741-R,1,"La Croix Couëdel",47.416256,-1.796908,,1,,Europe/Paris,,OPL, +OPL:SA:AST-14751-A-14751-R,1,"La Porte du Gué-Géraud",47.409391,-1.760128,,1,,Europe/Paris,,OPL, +OPL:SA:AST-14920-A-14920-R,1,"La Roberdais",47.540232,-1.755671,,1,,Europe/Paris,,OPL, +OPL:SA:AST-15034-A-15034-R,1,"Bredeloup",47.399157,-1.724533,,1,,Europe/Paris,,OPL, +OPL:SA:AST-15252-A-15252-R,1,"La Bosse des Landes",47.401171,-1.646091,,1,,Europe/Paris,,OPL, +OPL:SA:AST-15294-A-15294-R,1,"L'Épine",47.369422,-1.703897,,1,,Europe/Paris,,OPL, +OPL:SA:AST-15296-A-15296-R,1,"La Boissière",47.347596,-1.696385,,1,,Europe/Paris,,OPL, +OPL:SA:AST-15767-PV,1,"Nantes Gare sncf",47.216102,-1.540342,,1,,Europe/Paris,,OPL, +OPL:SA:AST-15784-A-15784-R,1,"La Harlière",47.409953,-1.931523,,1,,Europe/Paris,,OPL, +OPL:SA:AST-15788-A-15788-R,1,"Église",47.476112,-2.056672,,1,,Europe/Paris,,OPL, +OPL:SA:AST-15882-A-15882-R,1,"La Bauche Tue Loup",47.139662,-1.551012,,1,,Europe/Paris,,OPL, +OPL:SA:AST-20713-A-20713-R,1,"St Jean Baptiste de la Salle",47.233414,-1.559968,,1,,Europe/Paris,,OPL, +OPL:SA:AST-20818-A-20818-R,1,"Lycée Appert",47.251409,-1.61104,,1,,Europe/Paris,,OPL, +OPL:SA:AST-20826-A-20826-A1-20826-R,1,"Louise Michel",47.286449,-2.024663,,1,,Europe/Paris,,OPL, +OPL:SA:AST-20954-A-20954-R,1,"Collège Ste Anne",47.190422,-1.565135,,1,,Europe/Paris,,OPL, +OPL:SA:AST-20956-A-20956-R,1,"Collège Petite Lande",47.17776,-1.550076,,1,,Europe/Paris,,OPL, +OPL:SA:AST-20958-R-25251-A-25251-R,1,"Pinier",47.182563,-1.545211,,1,,Europe/Paris,,OPL, +OPL:SA:AST-20960-A-20960-R,1,"Jean Perrin",47.181295,-1.560837,,1,,Europe/Paris,,OPL, +OPL:SA:AST-21111-A-21111-R,1,"CIFAM",47.266256,-1.487014,,1,,Europe/Paris,,OPL, +OPL:SA:AST-21247,1,"Maison Familiale Rurale",47.040849,-1.645839,,1,,Europe/Paris,,OPL, +OPL:SA:AST-21267-A-21267-A1-21267-R-21267-R1,1,"Joliverie",47.189735,-1.518085,,1,,Europe/Paris,,OPL, +OPL:SA:AST-22098-A-22098-R,1,"Le Pilon Carrefour",47.184058,-1.778972,,1,,Europe/Paris,,OPL, +OPL:SA:AST-22110-A-22110-R,1,"3 Moulins",47.178367,-1.544356,,1,,Europe/Paris,,OPL, +OPL:SA:AST-22111-A,1,"La Carrée - Rivière",47.168797,-1.542906,,1,,Europe/Paris,,OPL, +OPL:SA:AST-22111-A1,1,"La Carrée-Praud",47.168508,-1.543542,,1,,Europe/Paris,,OPL, +OPL:SA:AST-22111-R,1,"La Carrée-Rivière",47.168755,-1.543008,,1,,Europe/Paris,,OPL, +OPL:SA:AST-22111-R1,1,"La carrée - Praud",47.168389,-1.543215,,1,,Europe/Paris,,OPL, +OPL:SA:AST-22112-A-22112-R,1,"Corbinerie",47.1615,-1.542204,,1,,Europe/Paris,,OPL, +OPL:SA:AST-22117-A-22117-R,1,"CCAS ESPLANADE DE VERDUN",46.981925,-1.306538,,1,,Europe/Paris,,OPL, +OPL:SA:AST-22118-A-22118-R,1,"Atout Sud",47.19293,-1.570341,,1,,Europe/Paris,,OPL, +OPL:SA:AST-22131-A-22131-R,1,"Le Butay",47.096093,-1.448407,,1,,Europe/Paris,,OPL, +OPL:SA:AST-22134-A-22134-R,1,"La Moune",47.0123,-1.443778,,1,,Europe/Paris,,OPL, +OPL:SA:AST-22144-A-22144-R,1,"Place de la Gare",47.129379,-2.212816,,1,,Europe/Paris,,OPL, +OPL:SA:AST-22148-A-22148-R,1,"Zone Industrielle",47.100788,-1.602138,,1,,Europe/Paris,,OPL, +OPL:SA:AST-22149-A-22149-R,1,"Stade",47.127466,-1.581184,,1,,Europe/Paris,,OPL, +OPL:SA:AST-22150-A-22150-R,1,"La Croix Blot",47.119796,-1.580937,,1,,Europe/Paris,,OPL, +OPL:SA:AST-22151-A-22151-R,1,"Bel Air",47.136457,-1.581429,,1,,Europe/Paris,,OPL, +OPL:SA:AST-22152-A-22152-R,1,"Génetais",47.163478,-1.55367,,1,,Europe/Paris,,OPL, +OPL:SA:AST-22153-A-22153-R,1,"Lechat",47.17595,-1.543816,,1,,Europe/Paris,,OPL, +OPL:SA:AST-22154-A-22154-R,1,"St Paul Salengro",47.184865,-1.546218,,1,,Europe/Paris,,OPL, +OPL:SA:AST-22155-A-22155-R,1,"Félix Tableau",47.187439,-1.54692,,1,,Europe/Paris,,OPL, +OPL:SA:AST-22156-A-22156-R,1,"Pont Rousseau-Martyrs",47.192171,-1.547602,,1,,Europe/Paris,,OPL, +OPL:SA:AST-22159-A-22159-R,1,"Mont Plaisir",46.904586,-1.60107,,1,,Europe/Paris,,OPL, +OPL:SA:AST-22160-A-22160-R,1,"Tournebride",47.079644,-1.565793,,1,,Europe/Paris,,OPL, +OPL:SA:AST-22166-A-22166-R,1,"Rue de Clisson",46.871383,-1.017485,,1,,Europe/Paris,,OPL, +OPL:SA:AST-22167-A-22167-R,1,"Américains",47.235922,-1.56806,,1,,Europe/Paris,,OPL, +OPL:SA:AST-22168-A-22168-R,1,"Picabia",47.254545,-1.57677,,1,,Europe/Paris,,OPL, +OPL:SA:AST-22168-A1,1,"Bout des Pavés",47.252745,-1.576387,,1,,Europe/Paris,,OPL, +OPL:SA:AST-22184-A-22184-R,1,"Mairie",47.270929,-1.623468,,1,,Europe/Paris,,OPL, +OPL:SA:AST-22185-A-22185-R-22185-R1,1,"Le Cardo",47.262009,-1.584146,,1,,Europe/Paris,,OPL, +OPL:SA:AST-22186-A-22186-R,1,"Le Goffic",47.230375,-1.563454,,1,,Europe/Paris,,OPL, +OPL:SA:AST-22188-A-22188-R,1,"Bel Air",47.225595,-1.559447,,1,,Europe/Paris,,OPL, +OPL:SA:AST-22189-A-22189-R,1,"Talensac",47.221448,-1.555893,,1,,Europe/Paris,,OPL, +OPL:SA:AST-22190-A-22190-R,1,"Place du Cirque",47.21682,-1.556816,,1,,Europe/Paris,,OPL, +OPL:SA:AST-22194-A-22194-R,1,"Le Bon Tour",47.478044,-2.179055,,1,,Europe/Paris,,OPL, +OPL:SA:AST-22197-A-22197-R,1,"La Gicquelais",47.40529,-1.96256,,1,,Europe/Paris,,OPL, +OPL:SA:AST-22202-A-22202-R,1,"Val du Cens",47.261251,-1.665962,,1,,Europe/Paris,,OPL, +OPL:SA:AST-22204-A-22204-R,1,"Moulin Brûlé",47.259552,-1.65478,,1,,Europe/Paris,,OPL, +OPL:SA:AST-22207-A-22207-R,1,"Forum d'Orvault",47.254233,-1.61517,,1,,Europe/Paris,,OPL, +OPL:SA:AST-22211-A-22211-R,1,"Beauséjour",47.238167,-1.587004,,1,,Europe/Paris,,OPL, +OPL:SA:AST-22214-A-22214-R,1,"Mairie de Doulon",47.226796,-1.519285,,1,,Europe/Paris,,OPL, +OPL:SA:AST-22218-A-22218-R,1,"Château d'Eau",47.198755,-1.436865,,1,,Europe/Paris,,OPL, +OPL:SA:AST-22219-A-22219-R,1,"Epinettes",47.200481,-1.444204,,1,,Europe/Paris,,OPL, +OPL:SA:AST-22223-A-22223-R,1,"Montoir Centre",47.327659,-2.152899,,1,,Europe/Paris,,OPL, +OPL:SA:AST-22234-A-22234-R,1,"La Buterie",47.113221,-1.441463,,1,,Europe/Paris,,OPL, +OPL:SA:AST-22238-A-22238-R,1,"Jules Verne",47.326204,-2.145516,,1,,Europe/Paris,,OPL, +OPL:SA:AST-22242-A-22242-R,1,"Graviers",47.467975,-1.768705,,1,,Europe/Paris,,OPL, +OPL:SA:AST-22253-A-22253-R,1,"Plessis Tison",47.236653,-1.533544,,1,,Europe/Paris,,OPL, +OPL:SA:AST-22255-A-22255-R,1,"Delorme",47.215398,-1.564293,,1,,Europe/Paris,,OPL, +OPL:SA:AST-22256-A-22256-R,1,"Mondésir",47.217736,-1.568892,,1,,Europe/Paris,,OPL, +OPL:SA:AST-22259-A-22259-R,1,"Poincaré",47.222287,-1.584793,,1,,Europe/Paris,,OPL, +OPL:SA:AST-22260-A-22260-R,1,"Dufy",47.222517,-1.600048,,1,,Europe/Paris,,OPL, +OPL:SA:AST-22266-A-22266-R,1,"Pont de 15 mètres",47.348629,-1.926893,,1,,Europe/Paris,,OPL, +OPL:SA:AST-22270-A-22270-R,1,"Garage",47.516203,-1.289552,,1,,Europe/Paris,,OPL, +OPL:SA:AST-22275-A-22275-R,1,"Tournebride",47.316498,-1.478074,,1,,Europe/Paris,,OPL, +OPL:SA:AST-22276-A-22276-R,1,"Pré du Bourg",47.092208,-1.494497,,1,,Europe/Paris,,OPL, +OPL:SA:AST-22280-A-22280-R,1,"L' Arche du Fouan",47.406517,-1.731274,,1,,Europe/Paris,,OPL, +OPL:SA:AST-22281-A-22281-R,1,"Chatillon",47.289599,-1.656805,,1,,Europe/Paris,,OPL, +OPL:SA:AST-22284-A-22284-R,1,"Ker David Hele",47.375972,-2.097669,,1,,Europe/Paris,,OPL, +OPL:SA:AST-22288-A-22288-R,1,"Gare SNCF",47.651131,-2.088635,,1,,Europe/Paris,,OPL, +OPL:SA:AST-22290-A-22290-R,1,"Le Pérou",47.124219,-1.5277,,1,,Europe/Paris,,OPL, +OPL:SA:AST-22292-A-22292-R,1,"La Chère",47.459979,-1.418627,,1,,Europe/Paris,,OPL, +OPL:SA:AST-22294-A-22294-R,1,"Champ de Foire",47.437775,-1.501466,,1,,Europe/Paris,,OPL, +OPL:SA:AST-22316-A-22316-R,1,"Maison Départementale",47.267552,-2.159272,,1,,Europe/Paris,,OPL, +OPL:SA:AST-22338-A-22338-R,1,"Dr Schweitzer",47.326377,-2.161557,,1,,Europe/Paris,,OPL, +OPL:SA:AST-22359-A-22359-R,1,"Route de Clisson",47.139695,-1.282155,,1,,Europe/Paris,,OPL, +OPL:SA:AST-22457-A-22457-R,1,"Gare",47.650161,-1.738027,,1,,Europe/Paris,,OPL, +OPL:SA:AST-22501-A-22501-R,1,"Tourneuve",47.279082,-1.598064,,1,,Europe/Paris,,OPL, +OPL:SA:AST-22502-A-22502-R,1,"Gergaudière",47.289715,-1.585833,,1,,Europe/Paris,,OPL, +OPL:SA:AST-22576-A-22576-R,1,"Gare SNCF",47.187048,-1.478406,,1,,Europe/Paris,,OPL, +OPL:SA:AST-22605-A-22605-R,1,"Tharon",47.166321,-2.161969,,1,,Europe/Paris,,OPL, +OPL:SA:AST-22733-A-22733-R,1,"Le Clémois",47.137397,-1.722425,,1,,Europe/Paris,,OPL, +OPL:SA:AST-22767-A-22767-R,1,"Mairie",47.18137,-1.815029,,1,,Europe/Paris,,OPL, +OPL:SA:AST-22804-A-22804-R,1,"École",47.433546,-1.230412,,1,,Europe/Paris,,OPL, +OPL:SA:AST-22874-A-22874-R,1,"Plessis de l'Angle",47.280876,-1.768869,,1,,Europe/Paris,,OPL, +OPL:SA:AST-22875-A-22875-R,1,"Rue de Nantes (N°40)",47.277746,-1.777069,,1,,Europe/Paris,,OPL, +OPL:SA:AST-22876-A-22876-R,1,"Rue Georges Bonnet",47.328924,-1.791419,,1,,Europe/Paris,,OPL, +OPL:SA:AST-22908-A-22908-R,1,"La Trimossière",47.280929,-1.707462,,1,,Europe/Paris,,OPL, +OPL:SA:AST-22915-A-22915-R,1,"Croix Morzel Gare",47.302513,-1.844963,,1,,Europe/Paris,,OPL, +OPL:SA:AST-22952-A-22952-R,1,"Mercerie",47.329016,-1.458154,,1,,Europe/Paris,,OPL, +OPL:SA:AST-22972-A-22972-R,1,"Église",47.238395,-1.348887,,1,,Europe/Paris,,OPL, +OPL:SA:AST-22981-A-22981-R,1,"Intermarché",47.091283,-1.288884,,1,,Europe/Paris,,OPL, +OPL:SA:AST-23012-A-23012-R,1,"Place Abbé Corbille",47.417578,-1.845761,,1,,Europe/Paris,,OPL, +OPL:SA:AST-23025-A-23025-R,1,"L'Anglechais",47.513841,-1.751797,,1,,Europe/Paris,,OPL, +OPL:SA:AST-23031-A-23031-R,1,"Gendarmerie",47.561777,-1.627543,,1,,Europe/Paris,,OPL, +OPL:SA:AST-23038-A-23038-R,1,"La Boulaie",47.071537,-1.623497,,1,,Europe/Paris,,OPL, +OPL:SA:AST-23040-A-23040-R,1,"La Montagne",47.188637,-1.689696,,1,,Europe/Paris,,OPL, +OPL:SA:AST-23070-A-23070-R,1,"L'ilette",47.580346,-2.040903,,1,,Europe/Paris,,OPL, +OPL:SA:AST-23072-A-23072-R,1,"Saint Blaise",47.245043,-1.707231,,1,,Europe/Paris,,OPL, +OPL:SA:AST-23073-A-23073-R,1,"La Montagne",47.24472,-1.69108,,1,,Europe/Paris,,OPL, +OPL:SA:AST-23105-A-23105-R,1,"Bois de Sendal",47.131175,-1.56464,,1,,Europe/Paris,,OPL, +OPL:SA:AST-23165-A-23165-R,1,"Perrières",47.085325,-1.612712,,1,,Europe/Paris,,OPL, +OPL:SA:AST-23167-A-23167-R,1,"Église",47.461332,-1.954338,,1,,Europe/Paris,,OPL, +OPL:SA:AST-23181-A-23181-R,1,"Le Tillon",47.380027,-1.966984,,1,,Europe/Paris,,OPL, +OPL:SA:AST-23234-A-23234-R,1,"Bilais",47.459625,-2.077446,,1,,Europe/Paris,,OPL, +OPL:SA:AST-23247-A-23247-R,1,"Place Centrale",47.261844,-1.669767,,1,,Europe/Paris,,OPL, +OPL:SA:AST-23263-A-23263-R,1,"Grand Perret",47.276798,-2.079216,,1,,Europe/Paris,,OPL, +OPL:SA:AST-23279-A-23279-R,1,"Pré Burel",47.518057,-2.038028,,1,,Europe/Paris,,OPL, +OPL:SA:AST-23296-A-23296-R,1,"Bout de Bois",47.450858,-1.63795,,1,,Europe/Paris,,OPL, +OPL:SA:AST-23344-A-23344-R,1,"Moulin du Greix",47.264695,-2.113194,,1,,Europe/Paris,,OPL, +OPL:SA:AST-23390-A-23390-R,1,"Le Redois",47.181375,-2.161437,,1,,Europe/Paris,,OPL, +OPL:SA:AST-23394-A-23394-R,1,"Mairie",47.289218,-2.035151,,1,,Europe/Paris,,OPL, +OPL:SA:AST-23560-A-23560-R,1,"Parking de la Poste",47.443297,-1.431306,,1,,Europe/Paris,,OPL, +OPL:SA:AST-23608-A-23608-R,1,"Route de Sucé",47.330952,-1.477138,,1,,Europe/Paris,,OPL, +OPL:SA:AST-23615-A-23615-R,1,"Champsiome",47.147938,-1.558742,,1,,Europe/Paris,,OPL, +OPL:SA:AST-23627-A-23627-R,1,"Mairie",47.256135,-2.019246,,1,,Europe/Paris,,OPL, +OPL:SA:AST-23650-A-23650-R,1,"Championnière",47.110583,-1.584429,,1,,Europe/Paris,,OPL, +OPL:SA:AST-23655-A-23655-R,1,"Boule d'Or",47.436881,-2.093907,,1,,Europe/Paris,,OPL, +OPL:SA:AST-23784-A-23784-R,1,"Les Amourettes",47.284652,-2.032682,,1,,Europe/Paris,,OPL, +OPL:SA:AST-23875-A-23875-R,1,"La Noé",47.318897,-1.869833,,1,,Europe/Paris,,OPL, +OPL:SA:AST-23877-A-23877-R,1,"La Noe",47.354855,-2.015916,,1,,Europe/Paris,,OPL, +OPL:SA:AST-23894-A-23894-R,1,"Les Pierres Rousses",47.117302,-1.930147,,1,,Europe/Paris,,OPL, +OPL:SA:AST-24022-A-24022-R,1,"Grapilles",47.130795,-1.586242,,1,,Europe/Paris,,OPL, +OPL:SA:AST-24118-A-24118-R,1,"Terres aux Moines",47.118868,-2.126047,,1,,Europe/Paris,,OPL, +OPL:SA:AST-24124-A-24124-R,1,"La Fosse des Prés",47.198664,-1.906239,,1,,Europe/Paris,,OPL, +OPL:SA:AST-24147-A-24147-R,1,"La Meslière",47.488403,-1.173834,,1,,Europe/Paris,,OPL, +OPL:SA:AST-24164-A-24164-R,1,"Stade la Fuie",47.247319,-1.946239,,1,,Europe/Paris,,OPL, +OPL:SA:AST-24218-A,1,"Chaillereaux",47.326879,-1.881791,,1,,Europe/Paris,,OPL, +OPL:SA:AST-24218-R,1,"Bouée Chaillereau",47.327275,-1.881923,,1,,Europe/Paris,,OPL, +OPL:SA:AST-24225-A-24225-R,1,"La Quintaine",47.257459,-1.388166,,1,,Europe/Paris,,OPL, +OPL:SA:AST-24358-A-24358-R,1,"Centre",47.36698,-1.406543,,1,,Europe/Paris,,OPL, +OPL:SA:AST-24365-A-24365-R,1,"Rue de Blain",47.382104,-1.710273,,1,,Europe/Paris,,OPL, +OPL:SA:AST-24377-A-24377-R,1,"Plaisance",47.290914,-1.872573,,1,,Europe/Paris,,OPL, +OPL:SA:AST-24391-A-24391-R,1,"Les Halles",47.09186,-1.621005,,1,,Europe/Paris,,OPL, +OPL:SA:AST-24398-A-24398-R,1,"Les Hauts Viais",47.115013,-1.541071,,1,,Europe/Paris,,OPL, +OPL:SA:AST-24548-A-24548-R,1,"Charles de Gaulle",47.24467,-1.93602,,1,,Europe/Paris,,OPL, +OPL:SA:AST-24567-A-24567-R,1,"Michelet",47.234505,-1.557283,,1,,Europe/Paris,,OPL, +OPL:SA:AST-24570-A-24570-R,1,"Recteur Schmitt",47.252774,-1.553126,,1,,Europe/Paris,,OPL, +OPL:SA:AST-24627-A-24627-R,1,"La Grue",47.031032,-1.629386,,1,,Europe/Paris,,OPL, +OPL:SA:AST-24753-A-24753-R,1,"Fief du Parc",47.083214,-1.256769,,1,,Europe/Paris,,OPL, +OPL:SA:AST-24754-A-24754-R,1,"Recouvrance",47.077885,-1.240223,,1,,Europe/Paris,,OPL, +OPL:SA:AST-24755-A-24755-R,1,"Route de Bretagne",47.058272,-1.375118,,1,,Europe/Paris,,OPL, +OPL:SA:AST-24762-A-24762-R,1,"Les Noés",47.445668,-2.191032,,1,,Europe/Paris,,OPL, +OPL:SA:AST-24764-A-24764-R,1,"Rotz",47.399534,-2.152586,,1,,Europe/Paris,,OPL, +OPL:SA:AST-24765-A-24765-R,1,"La Guesne",47.383215,-2.135037,,1,,Europe/Paris,,OPL, +OPL:SA:AST-24770-A-24770-R,1,"Centre Commercial",47.51165,-2.039267,,1,,Europe/Paris,,OPL, +OPL:SA:AST-24773-A-24773-R,1,"Charles de Gaulle",47.440268,-2.093705,,1,,Europe/Paris,,OPL, +OPL:SA:AST-24774-A-24774-R,1,"Église",47.437964,-2.088376,,1,,Europe/Paris,,OPL, +OPL:SA:AST-24775-A-24775-R,1,"Chataigneraie",47.436211,-2.083407,,1,,Europe/Paris,,OPL, +OPL:SA:AST-24780-A-24780-R,1,"Armoricaine",47.258393,-1.647931,,1,,Europe/Paris,,OPL, +OPL:SA:AST-24787-A-24787-R,1,"Chauvinière",47.228664,-1.635863,,1,,Europe/Paris,,OPL, +OPL:SA:AST-24788-A-24788-R,1,"La Potence",47.242999,-1.674216,,1,,Europe/Paris,,OPL, +OPL:SA:AST-24789-A-24789-R,1,"Marigny",47.271489,-1.775707,,1,,Europe/Paris,,OPL, +OPL:SA:AST-24790-A-24790-R,1,"Mairie",47.274463,-1.78185,,1,,Europe/Paris,,OPL, +OPL:SA:AST-24791-A-24791-R,1,"Croix Morzel (RD 17)",47.3039,-1.843259,,1,,Europe/Paris,,OPL, +OPL:SA:AST-24792-A-24792-R,1,"Médiathèque",47.290601,-1.877875,,1,,Europe/Paris,,OPL, +OPL:SA:AST-24797-A-24797-R,1,"Quiételais",47.248152,-1.737145,,1,,Europe/Paris,,OPL, +OPL:SA:AST-24816-A-24816-R,1,"Le Pont",47.3757,-1.55453,,1,,Europe/Paris,,OPL, +OPL:SA:AST-24817-A-24817-R,1,"Halvèque",47.259207,-1.519085,,1,,Europe/Paris,,OPL, +OPL:SA:AST-24818-A-24818-R,1,"ICAM route Carquefou",47.275904,-1.509625,,1,,Europe/Paris,,OPL, +OPL:SA:AST-24819-A-24819-R,1,"La Gauterie",47.337379,-1.474433,,1,,Europe/Paris,,OPL, +OPL:SA:AST-24827-A-24827-R,1,"Carrefour",47.187488,-1.804063,,1,,Europe/Paris,,OPL, +OPL:SA:AST-24831-A-24831-R,1,"La Digue",47.647902,-2.083078,,1,,Europe/Paris,,OPL, +OPL:SA:AST-24833-A-24833-R,1,"Hôpital",47.112647,-2.066352,,1,,Europe/Paris,,OPL, +OPL:SA:AST-24834-A-24834-R,1,"Route de Paimboeuf",47.199117,-1.88725,,1,,Europe/Paris,,OPL, +OPL:SA:AST-24835-A-24835-R,1,"Plein Air",47.276756,-2.011999,,1,,Europe/Paris,,OPL, +OPL:SA:AST-24837-A-24837-R,1,"Petit Bois",47.304659,-1.631012,,1,,Europe/Paris,,OPL, +OPL:SA:AST-24838-A-24838-R,1,"Les Anges",47.27527,-1.637148,,1,,Europe/Paris,,OPL, +OPL:SA:AST-24839-A-24839-R,1,"Rue de la Madeleine",47.414942,-1.787868,,1,,Europe/Paris,,OPL, +OPL:SA:AST-24840-A-24840-R,1,"ZA de l'Erette",47.376726,-1.644177,,1,,Europe/Paris,,OPL, +OPL:SA:AST-24845-A-24845-R,1,"La Grande Haie",47.372864,-1.638849,,1,,Europe/Paris,,OPL, +OPL:SA:AST-24846-A-24846-R,1,"Plein Ciel",47.411986,-1.650847,,1,,Europe/Paris,,OPL, +OPL:SA:AST-24856-A-24856-R,1,"Dejoie",47.163184,-1.265422,,1,,Europe/Paris,,OPL, +OPL:SA:AST-24861-A-24861-R,1,"Église",47.199281,-1.429847,,1,,Europe/Paris,,OPL, +OPL:SA:AST-24862-A-24862-R,1,"Rue du Port",47.039748,-1.641622,,1,,Europe/Paris,,OPL, +OPL:SA:AST-24865-A-24865-R,1,"Saint Guillaume",47.421757,-2.122079,,1,,Europe/Paris,,OPL, +OPL:SA:AST-24866-A-24866-R,1,"Le Louaré",47.311259,-1.85577,,1,,Europe/Paris,,OPL, +OPL:SA:AST-24890-A-24890-R,1,"L'Aujardière",47.169867,-1.189837,,1,,Europe/Paris,,OPL, +OPL:SA:AST-24891-A-24891-R,1,"Sacré Cœur",47.089888,-1.610887,,1,,Europe/Paris,,OPL, +OPL:SA:AST-24892-A-24892-R,1,"Champ de Foire",46.885916,-1.597295,,1,,Europe/Paris,,OPL, +OPL:SA:AST-24896-A-24896-R,1,"Bonnoeuvre",47.453593,-1.420403,,1,,Europe/Paris,,OPL, +OPL:SA:AST-24912-A-24912-R,1,"Fontaine aux Bruns",47.299042,-2.207319,,1,,Europe/Paris,,OPL, +OPL:SA:AST-24913-A-24913-R,1,"ZAC Grandchamp",47.293459,-2.208379,,1,,Europe/Paris,,OPL, +OPL:SA:AST-24914-A-24914-R,1,"Joli Séjour",47.113107,-2.091005,,1,,Europe/Paris,,OPL, +OPL:SA:AST-24918-A-24918-R,1,"Port de Comberge",47.173964,-2.164433,,1,,Europe/Paris,,OPL, +OPL:SA:AST-24930-A-24930-R,1,"Rue du Pont",47.46054,-1.276202,,1,,Europe/Paris,,OPL, +OPL:SA:AST-24933-A-24933-R,1,"La Poste",47.411693,-1.374749,,1,,Europe/Paris,,OPL, +OPL:SA:AST-24938-A-24938-R,1,"Le Cellier",47.324134,-1.348055,,1,,Europe/Paris,,OPL, +OPL:SA:AST-25034-A-25034-R,1,"Georges Brassens",47.286858,-2.029357,,1,,Europe/Paris,,OPL, +OPL:SA:AST-25037-A-25037-R,1,"Fontaine",47.24298,-2.157317,,1,,Europe/Paris,,OPL, +OPL:SA:AST-25097-A-25097-R,1,"Sensive",47.262444,-1.342724,,1,,Europe/Paris,,OPL, +OPL:SA:AST-25210-A-25210-R,1,"Néricou",47.558562,-1.76775,,1,,Europe/Paris,,OPL, +OPL:SA:AST-25211-A-25211-R,1,"La Petiaudais",47.554663,-1.852763,,1,,Europe/Paris,,OPL, +OPL:SA:AST-25244-A-25244-R,1,"Desaix",47.227023,-1.542649,,1,,Europe/Paris,,OPL, +OPL:SA:AST-25246-A-25246-R-25246-R1,1,"Colinière",47.235686,-1.508551,,1,,Europe/Paris,,OPL, +OPL:SA:AST-25247-A-25247-A1-25247-R-25247-R1-25247-R2,1,"Bourdonnières",47.186983,-1.520058,,1,,Europe/Paris,,OPL, +OPL:SA:AST-25248-A-25248-R,1,"Perrines",47.227584,-1.515523,,1,,Europe/Paris,,OPL, +OPL:SA:AST-25255-A-25255-R,1,"Rond-point de Rennes",47.232534,-1.56526,,1,,Europe/Paris,,OPL, +OPL:SA:AST-25256-A-25256-R,1,"Berlioz",47.240212,-1.572145,,1,,Europe/Paris,,OPL, +OPL:SA:AST-25259-A-25259-R,1,"St Nicolas",47.215655,-1.559841,,1,,Europe/Paris,,OPL, +OPL:SA:AST-25260,1,"Petit Port",47.242977,-1.556587,,1,,Europe/Paris,,OPL, +OPL:SA:AST-25262-A-25262-R,1,"Lycée Rieffel",47.255567,-1.642342,,1,,Europe/Paris,,OPL, +OPL:SA:AST-25298,1,"27 Otages",47.719039,-1.364558,,1,,Europe/Paris,,OPL, +OPL:SA:AST-25299,1,"Les Fauvettes",47.718045,-1.363189,,1,,Europe/Paris,,OPL, +OPL:SA:AST-25300,1,"Poste",47.719104,-1.378484,,1,,Europe/Paris,,OPL, +OPL:SA:AST-25301,1,"Resto du Cœur",47.707836,-1.37638,,1,,Europe/Paris,,OPL, +OPL:SA:AST-25302,1,"Provence",47.709603,-1.378952,,1,,Europe/Paris,,OPL, +OPL:SA:AST-25303,1,"Centre Commercial Rue Franklin",47.70736,-1.384577,,1,,Europe/Paris,,OPL, +OPL:SA:AST-25304,1,"Centre Commercial Rue Eisenhower",47.706286,-1.388147,,1,,Europe/Paris,,OPL, +OPL:SA:AST-25307,1,"Av de la Fraternité",47.710281,-1.387948,,1,,Europe/Paris,,OPL, +OPL:SA:AST-25309,1,"Halte Garderie",47.713376,-1.387275,,1,,Europe/Paris,,OPL, +OPL:SA:AST-25310,1,"Centre Commercial R. Brient",47.717687,-1.388386,,1,,Europe/Paris,,OPL, +OPL:SA:AST-25311,1,"Trinité",47.72279,-1.380702,,1,,Europe/Paris,,OPL, +OPL:SA:AST-25313,1,"Hôpital",47.726218,-1.383161,,1,,Europe/Paris,,OPL, +OPL:SA:AST-25314,1,"Angle Brest/Metz",47.72675,-1.387777,,1,,Europe/Paris,,OPL, +OPL:SA:AST-25315,1,"Mairie",47.721586,-1.37608,,1,,Europe/Paris,,OPL, +OPL:SA:AST-25435-A-25435-R,1,"Porte de Vertou",47.180835,-1.505134,,1,,Europe/Paris,,OPL, +OPL:SA:AST-25483-A-25483-R,1,"La Bernardière",47.286839,-1.70551,,1,,Europe/Paris,,OPL, +OPL:SA:AST-25489-A-25489-R,1,"Les Rousses",47.512929,-1.95807,,1,,Europe/Paris,,OPL, +OPL:SA:AST-25490-A-25490-R,1,"Croix Millette",47.481318,-1.91533,,1,,Europe/Paris,,OPL, +OPL:SA:AST-25491-A-25491-R,1,"Château Rouge",47.520529,-2.01285,,1,,Europe/Paris,,OPL, +OPL:SA:AST-25492-A-25492-R,1,"Bas Épaud",47.485642,-1.922389,,1,,Europe/Paris,,OPL, +OPL:SA:AST-25493-A-25493-R,1,"Govilon",47.4768,-2.162794,,1,,Europe/Paris,,OPL, +OPL:SA:AST-25496-A-25496-R,1,"Grand Rue",47.461122,-1.950238,,1,,Europe/Paris,,OPL, +OPL:SA:AST-25516,1,"Maison de Retraite",47.724247,-1.382959,,1,,Europe/Paris,,OPL, +OPL:SA:AST-25551-A-25551-R,1,"Mairie",47.207438,-2.043701,,1,,Europe/Paris,,OPL, +OPL:SA:AST-25566-A-25566-R,1,"Foyer",47.434189,-2.092912,,1,,Europe/Paris,,OPL, +OPL:SA:AST-25568-A-25568-R,1,"Marboeuf",47.066459,-1.518101,,1,,Europe/Paris,,OPL, +OPL:SA:AST-25570-A-25570-R,1,"Coët Rotz",47.444144,-2.092336,,1,,Europe/Paris,,OPL, +OPL:SA:AST-25572-A-25572-R,1,"3m",47.427259,-2.06972,,1,,Europe/Paris,,OPL, +OPL:SA:AST-25573-A-25573-R,1,"Pharmacie",47.516854,-1.29303,,1,,Europe/Paris,,OPL, +OPL:SA:AST-25581-A-25581-R,1,"ZA des Bauches",47.632325,-2.052433,,1,,Europe/Paris,,OPL, +OPL:SA:AST-25585-A-25585-R,1,"Plongeon",47.467026,-1.717071,,1,,Europe/Paris,,OPL, +OPL:SA:AST-25682-A-25682-R,1,"Centre",47.169622,-1.723035,,1,,Europe/Paris,,OPL, +OPL:SA:AST-25752-A-25752-R,1,"Pan Loup",47.240405,-1.661177,,1,,Europe/Paris,,OPL, +OPL:SA:AST-25756-A-25756-R,1,"Pôle de Bresse",47.247905,-2.162267,,1,,Europe/Paris,,OPL, +OPL:SA:AST-25787-A-25787-R,1,"Maillardais",47.525813,-1.768377,,1,,Europe/Paris,,OPL, +OPL:SA:AST-25788-A-25788-R,1,"Rond point de la Belle Étoile",47.516414,-1.802581,,1,,Europe/Paris,,OPL, +OPL:SA:AST-25789-A-25789-R,1,"Centre Commercial",47.473463,-1.746779,,1,,Europe/Paris,,OPL, +OPL:SA:AST-25790-A-25790-R,1,"L'Oseraye",47.517942,-1.642168,,1,,Europe/Paris,,OPL, +OPL:SA:AST-25828-A-25828-R,1,"Centre",47.138342,-2.190913,,1,,Europe/Paris,,OPL, +OPL:SA:AST-25880-A-25880-R,1,"Neuville Rond-point",47.420603,-1.657444,,1,,Europe/Paris,,OPL, +OPL:SA:AST-25901-A-25901-R,1,"Maladrie",47.188203,-1.495194,,1,,Europe/Paris,,OPL, +OPL:SA:AST-26142-A-26142-R,1,"Le Moulin de la Croix",47.034599,-1.654794,,1,,Europe/Paris,,OPL, +OPL:SA:AST-26158-A-26158-R,1,"Croissant",47.240925,-1.53004,,1,,Europe/Paris,,OPL, +OPL:SA:AST-26159-A-26159-R,1,"George Sand",47.1658,-1.545216,,1,,Europe/Paris,,OPL, +OPL:SA:AST-26166-A-26166-R,1,"Route de Remouillé",47.059252,-1.361843,,1,,Europe/Paris,,OPL, +OPL:SA:AST-26202-A-26202-R,1,"Pont Béranger",47.131011,-1.835468,,1,,Europe/Paris,,OPL, +OPL:SA:AST-26222-A-26222-R,1,"Le Poteau Vert",47.611749,-2.039088,,1,,Europe/Paris,,OPL, +OPL:SA:AST-26232-A-26232-R,1,"Mairie",47.313164,-1.321847,,1,,Europe/Paris,,OPL, +OPL:SA:AST-26233-A-26233-R,1,"Grand Carcouët",47.231276,-1.592155,,1,,Europe/Paris,,OPL, +OPL:SA:AST-26234,1,"Maison de l'Enfance",47.714499,-1.358356,,1,,Europe/Paris,,OPL, +OPL:SA:AST-26236,1,"Centre Commercial Vent d'Ouest",47.705259,-1.391438,,1,,Europe/Paris,,OPL, +OPL:SA:AST-26244-A-26244-R,1,"La Haie Maheas",47.287971,-1.816156,,1,,Europe/Paris,,OPL, +OPL:SA:AST-26257-A-26257-R,1,"La Morandais",47.384286,-2.09354,,1,,Europe/Paris,,OPL, +OPL:SA:AST-26981-A-26981-R,1,"Cent Sillons",47.37011,-1.608588,,1,,Europe/Paris,,OPL, +OPL:SA:AST-27071,1,"Anna de Noailles",47.714275,-1.368427,,1,,Europe/Paris,,OPL, +OPL:SA:AST-27091-A-27091-R,1,"Gare SNCF",47.717309,-1.371868,,1,,Europe/Paris,,OPL, +OPL:SA:AST-27107-A-27107-R,1,"Gare Sncf",46.686755,-1.050143,,1,,Europe/Paris,,OPL, +OPL:SA:AST-27159-A-27159-R,1,"Montagné",47.439829,-1.475011,,1,,Europe/Paris,,OPL, +OPL:SA:AST-27263-A-27263-R,1,"Ville Halluard",47.284437,-2.20271,,1,,Europe/Paris,,OPL, +OPL:SA:AST-27264-A-27264-R,1,"Bellevue",47.30693,-2.179319,,1,,Europe/Paris,,OPL, +OPL:SA:AST-27265-A-27265-R,1,"Émile Zola",47.299003,-2.192313,,1,,Europe/Paris,,OPL, +OPL:SA:AST-27308-A-27308-R,1,"Espace Diderot",47.184106,-1.563201,,1,,Europe/Paris,,OPL, +OPL:SA:AST-27313-A-27313-R,1,"Morlière",47.246973,-1.60329,,1,,Europe/Paris,,OPL, +OPL:SA:AST-27359-A-27359-R,1,"Le Pé Bardou",47.228297,-1.313605,,1,,Europe/Paris,,OPL, +OPL:SA:AST-27401-A-27401-R,1,"Carrefour Emilière",47.119401,-1.563154,,1,,Europe/Paris,,OPL, +OPL:SA:AST-27423-A-27423-R,1,"François Mitterrand",47.222058,-1.638502,,1,,Europe/Paris,,OPL, +OPL:SA:AST-27426-A-27426-R,1,"La Paclais",47.359415,-2.102265,,1,,Europe/Paris,,OPL, +OPL:SA:AST-27428,1,"Depan' Vit",47.720295,-1.359111,,1,,Europe/Paris,,OPL, +OPL:SA:AST-27457-A-27457-R,1,"Malraux",47.25437,-1.51756,,1,,Europe/Paris,,OPL, +OPL:SA:AST-27477-A-27477-R,1,"Gare SNCF",47.441516,-1.502864,,1,,Europe/Paris,,OPL, +OPL:SA:AST-27508-A-27508-R,1,"Herbins",47.289717,-2.209465,,1,,Europe/Paris,,OPL, +OPL:SA:AST-27509-A-27509-R,1,"Édouard Herriot",47.32015,-2.191845,,1,,Europe/Paris,,OPL, +OPL:SA:AST-27519-A-27519-R,1,"Thébaudières",47.244451,-1.606278,,1,,Europe/Paris,,OPL, +OPL:SA:AST-27546-A-27546-R,1,"ESAT",47.428552,-2.074355,,1,,Europe/Paris,,OPL, +OPL:SA:AST-27586-A-27586-R,1,"Rue de Nantes",47.664688,-1.668696,,1,,Europe/Paris,,OPL, +OPL:SA:AST-27736-A-27736-R,1,"Place République",46.647847,-0.741953,,1,,Europe/Paris,,OPL, +OPL:SA:AST-27737-A-27737-R,1,"Foch Cathédrale",47.219014,-1.550341,,1,,Europe/Paris,,OPL, +OPL:SA:AST-27738-A-27738-R,1,"Anglourie",47.392788,-2.092666,,1,,Europe/Paris,,OPL, +OPL:SA:AST-27746-A-27746-R,1,"Rue de Bretagne",46.93971,-1.513217,,1,,Europe/Paris,,OPL, +OPL:SA:AST-27774-A-27774-R,1,"Guénardière Rond-point",47.436432,-1.483153,,1,,Europe/Paris,,OPL, +OPL:SA:AST-27777-A-27777-R,1,"Revin",47.373609,-2.125804,,1,,Europe/Paris,,OPL, +OPL:SA:AST-27793-A-27793-R,1,"Aire de Covoiturage",47.442412,-1.434034,,1,,Europe/Paris,,OPL, +OPL:SA:AST-27796-A-27796-R,1,"La Chapelaine",47.269823,-1.334671,,1,,Europe/Paris,,OPL, +OPL:SA:AST-27797-A-27797-R,1,"Rond-Point des Places",47.242809,-1.427662,,1,,Europe/Paris,,OPL, +OPL:SA:AST-27799-A-27799-R,1,"Boulevard de Doulon",47.224445,-1.520245,,1,,Europe/Paris,,OPL, +OPL:SA:AST-27961,1,"Cité Scolaire",47.726675,-1.370827,,1,,Europe/Paris,,OPL, +OPL:SA:AST-27962,1,"Centre Bretagne",47.714359,-1.387641,,1,,Europe/Paris,,OPL, +OPL:SA:AST-27963,1,"César Franck",47.712743,-1.385886,,1,,Europe/Paris,,OPL, +OPL:SA:AST-27964,1,"Kuhn",47.705776,-1.3944,,1,,Europe/Paris,,OPL, +OPL:SA:AST-28243-A-28243-R,1,"Aire du golfeur",47.367775,-1.935495,,1,,Europe/Paris,,OPL, +OPL:SA:AST-6933-A-6933-R,1,"Le fréty Petit",47.123396,-1.600516,,1,,Europe/Paris,,OPL, +OPL:SA:AST-6973-A-6973-R,1,"L'Essart",47.137565,-1.554426,,1,,Europe/Paris,,OPL, +OPL:SA:AST-6974-A-6974-R,1,"Moulin Robert",47.123961,-1.551623,,1,,Europe/Paris,,OPL, +OPL:SA:AST-6977-A-6977-R,1,"L'enclose",47.118169,-1.537177,,1,,Europe/Paris,,OPL, +OPL:SA:AST-7008-A-7008-R,1,"La Vincée",47.128954,-1.545473,,1,,Europe/Paris,,OPL, +OPL:SA:AST-7009-A-7009-R,1,"Basses Ménanties",47.128848,-1.566618,,1,,Europe/Paris,,OPL, +OPL:SA:AST-7012-A-7012-R,1,"Ménanties",47.128945,-1.561974,,1,,Europe/Paris,,OPL, +OPL:SA:AST-7015-A-7015-R,1,"La colletterie",47.122729,-1.547534,,1,,Europe/Paris,,OPL, +OPL:SA:AST-7022-A-7022-R,1,"La benêtière",47.113317,-1.534427,,1,,Europe/Paris,,OPL, +OPL:SA:AST-7341-A-7341-R,1,"La Padiolière",47.04473,-1.717976,,1,,Europe/Paris,,OPL, +OPL:SA:AST-85191-A-85191-R,1,"PEM / Gare SNCF",46.672981,-1.435501,,1,,Europe/Paris,,OPL, +OPL:SA:AST-CHGN1-CHGN2,1,"Châtaigniers",47.221621,-1.601929,,1,,Europe/Paris,,OPL, +OPL:SA:AST-CHLI1-CHLI2,1,"Cholière",47.250977,-1.606691,,1,,Europe/Paris,,OPL, +OPL:SA:AST-CLGE2-A-CLGE3-R,1,"Chalonges",47.18921,-1.472494,,1,,Europe/Paris,,OPL, +OPL:SA:AST-GLOU1-GLOU2,1,"Grange au Loup",47.263664,-1.515602,,1,,Europe/Paris,,OPL, +OPL:SA:AST-HOSE1-HOSE2,1,"Housseau (lycée carquefou)",47.280929,-1.498436,,1,,Europe/Paris,,OPL, +OPL:SA:AST-ICAM1-ICAM2,1,"ICAM",47.273642,-1.501897,,1,,Europe/Paris,,OPL, +OPL:SA:AST-temp014-A-temp014-R,1,"Arthus Princé",47.12172,-1.916311,,1,,Europe/Paris,,OPL, +OPL:SA:AST-temp032-A-temp032-R,1,"Le Clion Sur Mer / Rue de la Gare",47.119428,-2.050032,,1,,Europe/Paris,,OPL, +OPL:SA:AST-temp049-A-temp049-R,1,"Le Bosquet",47.264021,-2.164607,,1,,Europe/Paris,,OPL, +OPL:SA:AST-temp065-A-temp065-R,1,"Prés Chauveau",47.254687,-1.411019,,1,,Europe/Paris,,OPL, +OPL:SA:AST-temp068-A-temp068-R,1,"La Busnière",47.401968,-1.53618,,1,,Europe/Paris,,OPL, +OPL:SA:AST-temp1-A-temp1-R,1,"La Contentinais",47.25283,-2.006385,,1,,Europe/Paris,,OPL, +OPL:SA:AST-temp100-A-temp100-R,1,"Océane",47.227472,-1.636149,,1,,Europe/Paris,,OPL, +OPL:SA:AST-temp2-A-temp2-R,1,"Moulin cassé",47.640557,-2.065047,,1,,Europe/Paris,,OPL, +OPL:SA:AST-tempSCO1-A-tempSCO1-R,1,"Lotissement du Lac",47.121786,-1.575463,,1,,Europe/Paris,,OPL, +OPL:SA:AST-tempSCO3-A-tempSCO3-R,1,"L'Arentée",47.148458,-1.556057,,1,,Europe/Paris,,OPL, +OPL:SA:AST-tempSCO8-A-tempSCO8-R,1,"Lotissement du Haugard",47.124309,-1.591907,,1,,Europe/Paris,,OPL, +ORE:SA:CTP1001,1,"Longs Champs",48.129077,-1.63253,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1002,1,"Bouzat",48.128283,-1.637782,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1003,1,"Gallet",48.127369,-1.640433,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1004,1,"Donzelot",48.125244,-1.642676,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1005,1,"Mirabeau",48.123081,-1.647064,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1006,1,"Turmel",48.12229,-1.650742,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1007,1,"Assomption",48.121446,-1.655036,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1008,1,"Painlevé",48.123212,-1.660216,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1009,1,"Metz Volney",48.121635,-1.663186,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1010,1,"Guéhenno",48.119241,-1.667693,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1011,1,"Fac de Droit",48.118312,-1.671315,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1012,1,"Sévigné",48.11605,-1.674245,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1014,1,"Sainte-Anne",48.113739,-1.679038,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1015,1,"Champ Jacquet",48.11252,-1.680352,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1016,1,"République",48.110073,-1.680101,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1017,1,"Les Halles",48.108415,-1.680213,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1018,1,"Plélo Colombier",48.106204,-1.680999,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1019,1,"Cité Judiciaire",48.105084,-1.684731,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1020,1,"Mermoz",48.097442,-1.689566,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1027,1,"Hôtel Dieu",48.117163,-1.677351,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1040,1,"Donelière",48.130069,-1.684377,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1041,1,"Trois Croix",48.128749,-1.6836,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1042,1,"Cimetière Nord",48.124255,-1.681766,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1043,1,"Saint-Martin",48.123614,-1.684238,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1044,1,"ESPE de Bretagne",48.122179,-1.685924,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1046,1,"Anatole France",48.11824,-1.689403,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1047,1,"La Touche",48.11612,-1.691288,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1048,1,"Brest Verdun",48.113357,-1.693476,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1049,1,"Horizons",48.111632,-1.689371,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1050,1,"Les Lices",48.111647,-1.686999,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1051,1,"Place de Bretagne",48.109888,-1.68328,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1054,1,"Liberté TNB",48.107564,-1.675176,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1055,1,"Champs Libres",48.106057,-1.67401,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1056,1,"Gares",48.10421,-1.672411,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1057,1,"Laënnec",48.104779,-1.665701,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1060,1,"Piré",48.099452,-1.657522,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1061,1,"Bourgeois",48.097255,-1.654254,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1062,1,"Calmette",48.09511,-1.650566,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1063,1,"Monsieur Vincent",48.09273,-1.64749,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1064,1,"Lycée Descartes",48.090281,-1.645018,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1065,1,"La Poterie",48.087621,-1.64393,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1066,1,"Monnet",48.087788,-1.638596,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1067,1,"Bourgueil",48.089455,-1.635281,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1068,1,"Gohier",48.092067,-1.636471,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1069,1,"Ronceray",48.092756,-1.63962,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1070,1,"CARSAT",48.094492,-1.637889,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1071,1,"Haut Sancé",48.096225,-1.636899,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1103,1,"Saint-Laurent",48.138802,-1.659072,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1104,1,"Hôtel de Région",48.134745,-1.658572,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1105,1,"Héronière",48.1355,-1.655711,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1106,1,"Gayeulles Piscine",48.134264,-1.652215,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1107,1,"Le Blizz",48.13087,-1.652121,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1108,1,"Gayeulles",48.128344,-1.652232,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1111,1,"Docteur Quentin",48.120189,-1.65077,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1112,1,"Vitré Danton",48.11893,-1.651063,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1113,1,"Jeanne d'Arc",48.116369,-1.655681,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1114,1,"Durafour",48.114521,-1.658017,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1115,1,"Oberthur",48.113459,-1.661409,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1116,1,"Saint-Vincent",48.112746,-1.664452,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1117,1,"Châteaudun",48.112528,-1.666797,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1118,1,"Thabor",48.111816,-1.671244,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1121,1,"Charles de Gaulle",48.106067,-1.677817,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1122,1,"Gare Sud Féval",48.102778,-1.676782,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1123,1,"Ginguené",48.099181,-1.675756,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1124,1,"Jacques Cartier",48.097396,-1.675489,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1125,1,"Sacrés Coeurs",48.096926,-1.679166,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1126,1,"Garigliano",48.096023,-1.681712,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1127,1,"Frères Moine",48.093042,-1.681932,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1128,1,"Champs Manceaux",48.09107,-1.682187,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1129,1,"Suède",48.087271,-1.682479,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1130,1,"Canada",48.085168,-1.682537,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1160,1,"Tournebride",48.114099,-1.637565,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1161,1,"Plaine de Baud",48.112232,-1.644227,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1163,1,"Robidou",48.110164,-1.660479,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1164,1,"Pont de Châteaudun",48.110145,-1.663921,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1165,1,"Paul Bert",48.110111,-1.67021,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1166,1,"Musée Beaux Arts",48.109914,-1.675145,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1173,1,"Pont de Strasbourg",48.110055,-1.656165,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1175,1,"Beaulieu Chimie",48.117101,-1.633896,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1176,1,"Beaulieu INSA",48.119028,-1.63521,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1177,1,"Beaulieu Restau U",48.122317,-1.639592,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1178,1,"Beaulieu Cité U",48.120832,-1.643865,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1180,1,"Balzac",48.116193,-1.659373,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1181,1,"Musset Cité U",48.116147,-1.662569,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1182,1,"George Sand",48.116298,-1.664773,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1184,1,"Dinan",48.117227,-1.681484,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1185,1,"Legraverend",48.117788,-1.684992,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1187,1,"Maison Diocésaine",48.114035,-1.698235,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1188,1,"La Salle",48.114898,-1.701959,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1189,1,"Languedoc",48.116068,-1.705584,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1190,1,"Villejean-Churchill",48.11739,-1.70835,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1198,1,"George Sand",48.116266,-1.668859,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1201,1,"Vitré Foulon",48.119102,-1.649111,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1205,1,"Veyettes",48.097147,-1.629252,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1208,1,"Saint-Saëns",48.104165,-1.637787,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1209,1,"Pavie",48.105033,-1.64458,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1210,1,"Cimetière de l'Est",48.10431,-1.64971,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1211,1,"Serpette",48.103116,-1.652491,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1212,1,"Mouézy",48.101949,-1.656538,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1213,1,"Croix Saint-Hélier",48.102902,-1.661403,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1216,1,"Le Mail",48.109176,-1.690514,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1217,1,"Chèques Postaux",48.108292,-1.694376,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1218,1,"Guilloux Lorient",48.109099,-1.697997,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1219,1,"Papeteries",48.108274,-1.703743,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1220,1,"Kerviler",48.109162,-1.706366,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1221,1,"Géniaux",48.108871,-1.710766,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1222,1,"Roazhon Park",48.108107,-1.714065,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1223,1,"Le Hô",48.106212,-1.723891,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1224,1,"Robinot de St-Cyr",48.102975,-1.7234,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1225,1,"Jardin Moderne",48.10213,-1.727062,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1226,1,"Servigné",48.101258,-1.731769,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1233,1,"Lemaistre",48.107021,-1.72162,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1236,1,"Kerviler",48.10876,-1.705656,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1237,1,"Papeteries",48.107689,-1.702121,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1238,1,"Guilloux Lorient",48.108687,-1.698735,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1248,1,"Pré Garel",48.103911,-1.635839,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1252,1,"Patton",48.138782,-1.66602,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1253,1,"Monts d'Arrée",48.136711,-1.667527,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1254,1,"Neruda",48.136796,-1.671078,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1255,1,"Condate",48.134477,-1.673097,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1256,1,"Bellangerais",48.132591,-1.671614,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1257,1,"Morbihan",48.13267,-1.667599,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1258,1,"Houx Cité U",48.130788,-1.663953,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1259,1,"Rochester",48.129452,-1.663592,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1260,1,"Gros Chêne",48.126715,-1.665432,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1261,1,"Volney",48.125322,-1.666645,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1262,1,"Jules Ferry",48.121471,-1.67097,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1263,1,"Rectorat",48.119629,-1.674316,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1264,1,"Pont de Nantes",48.10206,-1.684417,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1265,1,"Foyer Rennais",48.099809,-1.687123,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1267,1,"Félix Eboué",48.085707,-1.693903,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1268,1,"Boberil",48.083743,-1.693637,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1269,1,"Lycée Bréquigny",48.084081,-1.692043,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1273,1,"Saint-Yves",48.092735,-1.6912,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1274,1,"Pilate",48.095038,-1.689979,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1291,1,"IUT",48.125147,-1.633208,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1293,1,"Guilloux",48.110001,-1.698679,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1294,1,"Marbeuf",48.111305,-1.701301,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1295,1,"Berger",48.116762,-1.704608,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1296,1,"Université",48.119313,-1.704499,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1297,1,"Villejean-Université",48.121918,-1.703705,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1298,1,"Bois Labbé",48.125698,-1.703017,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1299,1,"Olympe de Gouges",48.127905,-1.702753,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1300,1,"Cucillé",48.128595,-1.698884,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1301,1,"Préfecture - ESC",48.128165,-1.69398,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1302,1,"Léonard",48.131493,-1.691785,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1316,1,"Raison",48.101171,-1.652938,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1317,1,"Villebois-Mareuil",48.100101,-1.649415,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1318,1,"Landry",48.09913,-1.646084,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1319,1,"Domaine",48.097002,-1.641653,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1321,1,"Sauvaie",48.093777,-1.633778,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1328,1,"Lycée Mendès France",48.133338,-1.685372,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1329,1,"Lenoir",48.12158,-1.683279,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1330,1,"Auberge de Jeunesse",48.120357,-1.681603,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1331,1,"Square de la Rance",48.118043,-1.680797,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1334,1,"Châtillon",48.097716,-1.6713,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1335,1,"Ormeaux",48.097705,-1.6684,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1336,1,"Bigot de Préameneu",48.097982,-1.666405,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1337,1,"Sainte-Thérèse",48.097532,-1.66289,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1338,1,"Leray",48.09502,-1.661622,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1339,1,"Langevin",48.094676,-1.658629,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1340,1,"Gide",48.091996,-1.658498,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1341,1,"Landrel",48.091222,-1.654578,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1342,1,"Pologne",48.091175,-1.651756,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1344,1,"Galicie",48.0877,-1.650088,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1346,1,"Hôpital Sud",48.084724,-1.655211,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1347,1,"Torigné",48.084769,-1.657925,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1367,1,"Rennes Mairie",48.111022,-1.679517,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1374,1,"Longs Prés",48.133162,-1.65696,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1375,1,"Gast",48.130103,-1.656774,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1376,1,"Europe",48.128579,-1.657192,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1377,1,"Trégain",48.126826,-1.65857,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1378,1,"Saint-Exupéry",48.12477,-1.661615,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1381,1,"Malakoff",48.105128,-1.696468,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1382,1,"Voltaire",48.105074,-1.698818,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1383,1,"Dargent",48.103589,-1.700048,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1384,1,"Champion de Cicé",48.102651,-1.703856,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1385,1,"De Lesseps",48.100655,-1.707006,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1386,1,"Guérinais",48.098922,-1.705488,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1387,1,"Récipon",48.098044,-1.708181,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1388,1,"Montand",48.099353,-1.711217,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1389,1,"Clinique La Sagesse",48.101249,-1.71181,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1390,1,"Cleunay",48.104175,-1.713394,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1401,1,"Redon",48.105574,-1.687728,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1408,1,"Vitré Péguy",48.119751,-1.65133,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1409,1,"Joliot-Curie",48.126831,-1.653313,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1410,1,"Hélias",48.136512,-1.662483,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1412,1,"Cours Kennedy",48.1214,-1.707774,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1414,1,"Merlin",48.116416,-1.712265,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1417,1,"Les Arts",48.111171,-1.712864,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1421,1,"Chambre Agriculture",48.114636,-1.715503,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1433,1,"Durafour Strasbourg",48.113595,-1.65655,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1435,1,"Chardonnet",48.105688,-1.650713,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1438,1,"Le Dantec",48.099251,-1.652881,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1440,1,"Le Blosne",48.087647,-1.653923,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1441,1,"Triangle",48.08608,-1.660855,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1442,1,"Binquenais",48.091639,-1.66733,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1443,1,"Binquenais Collège",48.091624,-1.662448,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1444,1,"Combes",48.093622,-1.66964,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1445,1,"Clemenceau",48.093147,-1.674668,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1446,1,"Argonautes",48.089583,-1.674997,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1447,1,"Henri Fréville",48.08721,-1.675075,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1449,1,"Norvège",48.086865,-1.683079,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1450,1,"Coubertin",48.08669,-1.688453,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1451,1,"Lycée Bréquigny",48.086857,-1.691262,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1452,1,"Bréquigny Piscine",48.089851,-1.690987,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1453,1,"Pigeon Blanc",48.089768,-1.692985,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1480,1,"ZA Saint-Sulpice",48.131978,-1.634928,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1481,1,"Pâtis Tatelin",48.129789,-1.642252,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1487,1,"Patton Gast",48.131345,-1.662406,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1492,1,"Grand Quartier",48.133784,-1.69386,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1496,1,"Lycée St-Exupéry",48.132313,-1.709762,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1498,1,"Petit Champeaux",48.116622,-1.723945,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1499,1,"Colin",48.1163,-1.716029,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1500,1,"Agrocampus",48.113203,-1.704506,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1506,1,"Berthault",48.106766,-1.730277,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1507,1,"Lycée Zola",48.109406,-1.6751,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1512,1,"Le Guyader",48.085329,-1.695562,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1513,1,"Bois Perrin",48.115378,-1.648495,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1514,1,"Moulin de Joué",48.113326,-1.647648,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1517,1,"Berry",48.118565,-1.713574,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1518,1,"Bourbonnais",48.120593,-1.710572,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1522,1,"Piletière",48.113884,-1.642719,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1524,1,"Hôpital Régnier",48.114621,-1.651278,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1536,1,"Clos Courtel",48.12678,-1.630245,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1540,1,"Pont de Bretagne",48.109999,-1.685158,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1545,1,"Cleunay Stade",48.101549,-1.708422,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1547,1,"Etangs d'Apigné",48.091983,-1.737811,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1552,1,"Place Pasteur",48.110624,-1.673506,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1554,1,"Binquenais Le Moine",48.090732,-1.66125,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1555,1,"Fossés",48.113304,-1.675306,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1566,1,"Lycée Basch",48.125304,-1.692431,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1568,1,"Kennedy Guyenne",48.121028,-1.713571,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1570,1,"Coeur de Courrouze",48.098203,-1.699023,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1572,1,"Vincennes",48.118015,-1.675219,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1588,1,"Jules Maniez",48.098019,-1.703694,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1590,1,"Jules Verne",48.098899,-1.69354,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1596,1,"Clotilde Vautier",48.125861,-1.668462,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1603,1,"Les Préales",48.11325,-1.641287,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1606,1,"Place Hoche",48.115697,-1.676699,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1608,1,"Collège Cleunay",48.098331,-1.70864,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1612,1,"Saint-Conwoïon",48.103539,-1.688429,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1617,1,"Longs Champs Est",48.129137,-1.630168,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1622,1,"Alma",48.084157,-1.679166,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1625,1,"Armorique",48.13073,-1.675781,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1637,1,"Lycée Chateaubriand",48.123062,-1.651491,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1646,1,"Italie",48.086632,-1.668834,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1652,1,"Dulac",48.132848,-1.69573,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1654,1,"Motte Brûlon",48.129576,-1.674167,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1665,1,"Atalante Champeaux",48.113248,-1.713671,,1,,Europe/Paris,,ORE, +ORE:SA:CTP1667,1,"Robiquette",48.136333,-1.696931,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2002,1,"Cesson Hôpital Privé",48.130233,-1.627664,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2005,1,"Grand Domaine",48.124609,-1.594305,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2006,1,"Petits Champs",48.125255,-1.596592,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2007,1,"Bourgchevreuil",48.123121,-1.600517,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2008,1,"La Coulée",48.123628,-1.604384,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2009,1,"Fontenelle",48.123585,-1.608134,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2010,1,"Mare Pavée",48.12279,-1.610938,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2011,1,"Maison d'Accueil",48.121108,-1.60998,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2012,1,"Muguet",48.11839,-1.608504,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2013,1,"Vilaine",48.116419,-1.607397,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2014,1,"Sports et Nature",48.114721,-1.609708,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2015,1,"Hublais",48.114253,-1.616314,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2016,1,"Taillis",48.114224,-1.621951,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2017,1,"Champs Péans",48.114121,-1.630367,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2032,1,"Charmilles",48.106229,-1.621342,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2033,1,"Bas Village",48.10133,-1.623467,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2034,1,"Forum",48.099569,-1.621217,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2037,1,"Erbonière",48.106047,-1.62563,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2038,1,"Haut Grippé",48.114975,-1.590774,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2039,1,"Bordage",48.114462,-1.600472,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2040,1,"Chalotais",48.116167,-1.600377,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2041,1,"Cesson Collège",48.120514,-1.599543,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2042,1,"Les Lacs",48.124644,-1.613102,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2043,1,"Cormier",48.124354,-1.618478,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2044,1,"Belle Fontaine",48.127362,-1.62431,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2046,1,"Clos Courtel",48.127395,-1.626957,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2052,1,"Lycée Ozanam",48.131149,-1.597037,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2054,1,"Métairies Chalotais",48.123129,-1.601975,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2055,1,"Cesson Piscine",48.119961,-1.602179,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2056,1,"Cesson Mairie",48.118557,-1.604529,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2057,1,"Cesson Gare",48.113861,-1.603295,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2058,1,"Peupliers",48.112638,-1.607261,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2059,1,"Monniais",48.109302,-1.609073,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2060,1,"Rond Point de Bray",48.10784,-1.614683,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2070,1,"Victoire",48.145148,-1.608661,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2071,1,"Calendrou",48.140415,-1.616907,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2076,1,"Lande Bouhard",48.134039,-1.629208,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2079,1,"Verger",48.12886,-1.605971,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2080,1,"Gaudais",48.127399,-1.612799,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2081,1,"Bouriande",48.126799,-1.619769,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2085,1,"Champelé",48.116152,-1.582472,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2088,1,"Stade Dézerseul",48.124609,-1.590688,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2089,1,"Rigourdière",48.113572,-1.59052,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2091,1,"Lycée Sévigné",48.119072,-1.597622,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2101,1,"Village Collectivités",48.131755,-1.597946,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2107,1,"Ménouriais",48.099651,-1.603046,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2114,1,"Château de Vaux",48.137351,-1.62275,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2122,1,"Buisson",48.104606,-1.63076,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2124,1,"Chêne Germain",48.131589,-1.624653,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2126,1,"Champs Blancs",48.134763,-1.621832,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2201,1,"Morinais",48.075489,-1.716264,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2202,1,"Collège Jean Moulin",48.077395,-1.715725,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2203,1,"Médiathèque",48.07942,-1.71571,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2204,1,"Jean Marin",48.082557,-1.715255,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2205,1,"Roger Dodin",48.083243,-1.710049,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2206,1,"Gaité",48.087497,-1.706946,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2207,1,"Lilas",48.093689,-1.700128,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2208,1,"Commeurec",48.095802,-1.694528,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2216,1,"Pressoirs",48.08731,-1.69473,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2217,1,"25 Fusillés",48.090645,-1.695013,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2220,1,"Gautrais",48.061591,-1.72464,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2221,1,"Rossel",48.063117,-1.720383,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2222,1,"Pommerais",48.066422,-1.720279,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2223,1,"Abbé Grimault",48.067334,-1.716885,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2226,1,"Rablais Allende",48.086645,-1.701446,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2227,1,"Croix Verte",48.089415,-1.697855,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2236,1,"Parc Expo",48.059996,-1.734101,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2237,1,"Aire Libre Aéroport",48.067372,-1.721674,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2238,1,"Centre Météo",48.065007,-1.724483,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2239,1,"Haut Bois",48.077838,-1.712445,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2240,1,"St-Jacques Mairie",48.080594,-1.712287,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2248,1,"Bellevue",48.079346,-1.733128,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2249,1,"Le Pâtis",48.085087,-1.727469,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2250,1,"Reuzerais",48.086736,-1.721996,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2251,1,"Maffeys",48.086662,-1.713071,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2258,1,"Dominos",48.093537,-1.704339,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2262,1,"Vallon",48.068729,-1.697896,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2263,1,"Jean Jaurès",48.082518,-1.712313,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2266,1,"Parc Expo",48.056515,-1.732068,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2267,1,"Auriol",48.075278,-1.729484,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2272,1,"Mivoie",48.070178,-1.70307,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2273,1,"Jean Pont",48.092241,-1.697691,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2303,1,"Haut Launay",48.02471,-1.757238,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2304,1,"Rabine",48.025619,-1.760676,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2305,1,"Vert Buisson",48.029342,-1.758019,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2306,1,"Cicé Blossac",48.033686,-1.765896,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2307,1,"Gavrinis",48.031275,-1.759442,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2308,1,"Croix Madame",48.041413,-1.754424,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2309,1,"Schuman",48.044622,-1.746502,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2311,1,"Coeur de Campus",48.047249,-1.741955,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2312,1,"Etangs",48.049424,-1.740454,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2313,1,"Lande du Pont",48.052679,-1.73829,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2314,1,"Porte de Ker-Lann",48.054937,-1.739708,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2326,1,"Doublé",48.034154,-1.723867,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2327,1,"Pont-Réan",48.005026,-1.77502,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2329,1,"Croix Vaisserelle",48.008586,-1.773845,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2331,1,"Noë",48.021416,-1.752313,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2332,1,"Epalet",48.019493,-1.744988,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2334,1,"Pasteur",48.023814,-1.736056,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2335,1,"Bobinais",48.02629,-1.734494,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2336,1,"Champ Niguel",48.030226,-1.734384,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2337,1,"Lavoisier",48.032956,-1.733031,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2348,1,"Bruz Centre",48.023484,-1.743371,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2350,1,"Mare de la Salle",48.029314,-1.719086,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2365,1,"Brossolette",48.020489,-1.743438,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2366,1,"Aire du 8 Mai",48.026878,-1.745504,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2367,1,"Anita Conti",48.033353,-1.733602,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2372,1,"Bruz Gare",48.029045,-1.752705,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2374,1,"Châteliers",48.024146,-1.752978,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2376,1,"Corbières",48.035213,-1.757358,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2401,1,"Champ Devant",48.177029,-1.651134,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2402,1,"Omblais",48.179301,-1.651047,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2403,1,"Brocéliande",48.180722,-1.651937,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2404,1,"Trégor",48.183007,-1.646075,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2405,1,"Betton Mairie",48.181894,-1.641783,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2406,1,"Betton Centre",48.181123,-1.637898,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2407,1,"Haye Renaud Gare",48.18021,-1.634936,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2408,1,"Marronniers",48.176154,-1.637359,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2409,1,"Housset",48.172332,-1.637445,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2410,1,"Enseigne Abbaye",48.17135,-1.642053,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2411,1,"Betton Vallée",48.161724,-1.647868,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2422,1,"Petite Hublais",48.182171,-1.616139,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2423,1,"Cour Neuve",48.175419,-1.622928,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2424,1,"Champ Giron",48.170897,-1.622292,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2425,1,"Tihouït",48.163742,-1.625164,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2430,1,"Betton Rue de Rennes",48.175999,-1.639619,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2431,1,"Mozart",48.182984,-1.637374,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2432,1,"J. Sébastien Bach",48.186271,-1.633356,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2438,1,"Mézières",48.18499,-1.65024,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2451,1,"Gentilhommière",48.19085,-1.629331,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2452,1,"Chaperonnais",48.175446,-1.662388,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2454,1,"Renaudais",48.183218,-1.654765,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2456,1,"Pont Brand",48.178784,-1.660945,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2501,1,"Noë Diolé",48.102436,-1.832289,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2502,1,"Lycée Monod",48.100526,-1.806596,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2503,1,"Champs Freslons",48.098908,-1.801395,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2504,1,"L'Autre Lieu",48.098973,-1.796821,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2505,1,"Bouleaux",48.101535,-1.794453,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2506,1,"Genêts",48.099251,-1.791133,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2507,1,"Barberais",48.097502,-1.781275,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2508,1,"Les Pins",48.096835,-1.77559,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2509,1,"Pont d'Avoine",48.096139,-1.764573,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2510,1,"Plessix Saucourt",48.10389,-1.75034,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2521,1,"Gerhoui",48.090998,-1.786814,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2522,1,"Mahomat",48.093981,-1.773941,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2525,1,"Haut Plessis",48.078547,-1.771361,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2526,1,"Moigné",48.080424,-1.774424,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2534,1,"Collège Brassens",48.098948,-1.800305,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2537,1,"Gaston Bardet",48.102407,-1.787351,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2539,1,"Acquêts",48.096488,-1.79816,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2541,1,"Egalité",48.094422,-1.795931,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2601,1,"Croix Malinge",48.038508,-1.602504,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2602,1,"Bel Air",48.043401,-1.601647,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2603,1,"La Poste",48.044735,-1.603959,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2604,1,"Croix Rouge",48.049558,-1.606153,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2605,1,"Fosse Gauchère",48.049414,-1.609809,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2606,1,"Solidor",48.050629,-1.614982,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2607,1,"Haute Abbaye",48.052615,-1.613836,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2608,1,"Bretonnière",48.05838,-1.616486,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2609,1,"Val d'Orson",48.064138,-1.623074,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2610,1,"Garenne",48.067768,-1.625701,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2611,1,"Hallerais",48.072416,-1.628709,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2621,1,"Vern La Touche",48.040905,-1.602366,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2622,1,"Champ Martin",48.059886,-1.613109,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2627,1,"Vaugon",48.031482,-1.599454,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2629,1,"Vern Eglise",48.047187,-1.602518,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2630,1,"Maillardière",48.045052,-1.598931,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2631,1,"Moulin",48.047527,-1.598567,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2701,1,"Janais",48.059075,-1.700988,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2705,1,"Bray",48.02908,-1.659799,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2706,1,"Molène",48.038455,-1.670722,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2707,1,"Potiers",48.040768,-1.671907,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2708,1,"Centre",48.042386,-1.665537,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2709,1,"Louis Texier",48.044053,-1.661183,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2710,1,"Petite Saudrais",48.047169,-1.661203,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2711,1,"Croix Fleurie",48.056658,-1.663721,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2712,1,"Mail Lancé",48.06368,-1.66369,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2713,1,"Petit Beaulieu",48.068453,-1.665713,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2714,1,"Hil-Bintinais",48.077187,-1.661021,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2725,1,"Guyomerais",48.03955,-1.676476,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2727,1,"Pont",48.038446,-1.666525,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2729,1,"Croix de Pierre",48.046972,-1.664678,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2733,1,"Côteaux",48.034197,-1.663402,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2749,1,"Touche Tizon",48.055865,-1.701124,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2750,1,"Monts Gaultier",48.039253,-1.680543,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2803,1,"La Plesse",48.137419,-1.68861,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2804,1,"Ricoquais",48.159112,-1.676618,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2805,1,"Camus",48.159128,-1.681343,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2806,1,"Vivier Louis",48.159027,-1.685578,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2807,1,"Pontay",48.159802,-1.692137,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2808,1,"Uttenreuth",48.156845,-1.687389,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2809,1,"Discalceat",48.154339,-1.686723,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2810,1,"Paul-Emile Victor",48.153808,-1.691979,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2811,1,"Cité des Jardins",48.151378,-1.691295,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2812,1,"Forge",48.150852,-1.685834,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2813,1,"Haut Trait",48.147437,-1.686162,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2814,1,"CHP Saint-Grégoire",48.143099,-1.686451,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2827,1,"Maison Blanche",48.148996,-1.656601,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2831,1,"Holywell",48.153536,-1.678717,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2833,1,"Jean-Paul II",48.16014,-1.677217,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2837,1,"La Brosse",48.17698,-1.721962,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2838,1,"Alphasis",48.153909,-1.6969,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2840,1,"MFR Rabinardières",48.176664,-1.690277,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2842,1,"Nobel",48.158103,-1.672049,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2844,1,"Champ Daguet",48.155286,-1.671435,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2851,1,"Edonia",48.148089,-1.696862,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2855,1,"Kerfleury",48.138277,-1.671885,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2856,1,"Kerguelen",48.15137,-1.69711,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2901,1,"Croix aux Potiers",48.046733,-1.710633,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2902,1,"Croix aux Potiers",48.047893,-1.713543,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2903,1,"Chaussairie",48.033355,-1.71163,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2904,1,"Taillebois",48.037002,-1.712353,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2905,1,"Callouët",48.042325,-1.712032,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2911,1,"Parc de Loisirs",48.033268,-1.707228,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2912,1,"Argoat",48.035455,-1.70627,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2913,1,"Cornouaille",48.034611,-1.69941,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2914,1,"Vieux Bourg",48.036918,-1.697008,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2915,1,"Collège Pôle Sud",48.041376,-1.698416,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2916,1,"Auditoire",48.04169,-1.702632,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2917,1,"Chartres Centre",48.042349,-1.706501,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2928,1,"Constant Mérel",48.031429,-1.708755,,1,,Europe/Paris,,ORE, +ORE:SA:CTP2944,1,"Ferme des Peupliers",48.029175,-1.707963,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3001,1,"Gériatrie",48.085047,-1.610381,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3002,1,"Deux Ruisseaux",48.085765,-1.614047,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3003,1,"Bourgogne",48.089159,-1.612603,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3006,1,"Chantepie Mairie",48.08848,-1.6192,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3007,1,"Loges",48.090504,-1.623943,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3011,1,"Hallouvry",48.090381,-1.615346,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3014,1,"Breillou",48.098087,-1.622908,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3016,1,"Cucé",48.093514,-1.607562,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3017,1,"EDEFS",48.092504,-1.61292,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3018,1,"Rocade Sud",48.085481,-1.627229,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3019,1,"Val Blanc",48.080508,-1.630849,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3024,1,"Martinière",48.07696,-1.631808,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3027,1,"Touche Annette",48.085803,-1.608136,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3028,1,"Rosa Parks",48.085464,-1.604031,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3035,1,"Landes",48.090498,-1.61905,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3037,1,"Chantepie Eglise",48.087406,-1.616535,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3102,1,"Pie Neuve",48.150803,-1.792262,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3103,1,"Docteur Léon",48.149232,-1.788989,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3104,1,"Touche Milon",48.148463,-1.784791,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3105,1,"Pinault",48.14765,-1.780916,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3107,1,"Renan",48.151185,-1.77754,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3108,1,"Duchesse Anne",48.150859,-1.771989,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3109,1,"Pacé Cimetière",48.148142,-1.769909,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3110,1,"Carré Dumaine",48.145758,-1.770753,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3111,1,"Le Ponant",48.142756,-1.770101,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3112,1,"Opéra",48.141059,-1.767294,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3123,1,"Chapitre",48.174088,-1.789401,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3125,1,"Pâtis Roussel",48.16049,-1.768011,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3126,1,"Ouessant",48.15725,-1.765795,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3134,1,"Nominoë",48.141622,-1.770457,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3136,1,"Pont Amelin",48.15469,-1.784414,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3137,1,"Rive Ouest",48.140206,-1.763554,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3142,1,"Haute Rabine",48.167342,-1.787109,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3143,1,"Haute Rabine",48.169948,-1.787892,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3145,1,"Touche Champagne",48.179959,-1.801675,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3162,1,"Centre scolaire Pacé",48.152311,-1.771231,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3167,1,"Champalaune",48.154567,-1.763809,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3169,1,"Beausoleil",48.152618,-1.763563,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3171,1,"Baiersdorf",48.15162,-1.759805,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3173,1,"Teillais",48.148248,-1.763821,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3201,1,"Fort Joual",47.96981,-1.646041,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3202,1,"Frogerais",47.975399,-1.651256,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3203,1,"Petite Rochelle",47.976283,-1.657445,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3204,1,"Télégraphe",47.983336,-1.660015,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3209,1,"Surcouf",47.992563,-1.668787,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3210,1,"Coteau",47.995,-1.670694,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3211,1,"Groupe Scolaire",47.997273,-1.668431,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3212,1,"Levant",48.000737,-1.666758,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3213,1,"Plardière",48.009507,-1.66592,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3225,1,"ZA L'Hermitière",47.962608,-1.684894,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3245,1,"L'Hermitière Village",47.964349,-1.681718,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3246,1,"Collège Récipon",48.002386,-1.668891,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3249,1,"Orgerblon",48.014928,-1.663969,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3257,1,"Haye Longue",48.005371,-1.665736,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3259,1,"Ormes Blanches",47.992652,-1.662984,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3301,1,"Landelles",48.155188,-1.573107,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3302,1,"Thorigné Mairie",48.153039,-1.579445,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3304,1,"Anne de Bretagne",48.155658,-1.580848,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3305,1,"Bocage",48.158973,-1.579631,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3306,1,"Juteauderies",48.164176,-1.579265,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3307,1,"Fouillard",48.160412,-1.586021,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3308,1,"Placis Vert",48.174332,-1.602138,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3309,1,"Portail",48.156271,-1.592376,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3317,1,"Pâtis du Moulinet",48.141094,-1.573652,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3319,1,"Pâtis du Moulinet",48.141665,-1.577357,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3322,1,"Curien",48.149328,-1.577527,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3401,1,"Parc des Sports",48.041337,-1.553405,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3402,1,"Langlois",48.040949,-1.549602,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3403,1,"Chêne Centenaire",48.040203,-1.542002,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3404,1,"Menault",48.041308,-1.544619,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3405,1,"Eclosel",48.04458,-1.561621,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3407,1,"Grée Barel",48.042359,-1.549754,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3411,1,"Crotigné",48.031367,-1.558356,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3412,1,"La Croix de l'Epine",48.02933,-1.564303,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3413,1,"La Drouais",48.024066,-1.573263,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3414,1,"La Jaunais",48.013162,-1.570605,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3415,1,"La Jaille",48.012582,-1.557306,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3416,1,"Le Petit Beauvais",48.011936,-1.5459,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3417,1,"Epron",48.015078,-1.539572,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3418,1,"La Tertronais",48.021901,-1.547245,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3419,1,"L'Ourmais",48.028985,-1.5514,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3500,1,"Silandière",48.163969,-1.731752,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3501,1,"Fougerolle",48.157221,-1.723306,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3502,1,"Pierre Texier",48.155655,-1.720614,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3503,1,"Montgermont Mairie",48.15574,-1.71654,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3504,1,"Courtines",48.157226,-1.714447,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3505,1,"Belle Epine",48.155304,-1.710895,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3506,1,"Décoparc",48.152987,-1.706581,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3507,1,"Vizeule",48.148918,-1.704108,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3509,1,"Métrie",48.153005,-1.708878,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3601,1,"La Renardière",48.183471,-1.835694,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3602,1,"Parthenay Mairie",48.192003,-1.831209,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3603,1,"Clos des Tilleuls",48.191638,-1.827121,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3604,1,"La Noë",48.191281,-1.824629,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3605,1,"Placis de la Touche",48.189982,-1.820845,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3606,1,"Le Reuvre",48.186405,-1.816641,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3617,1,"Parthenay Fontaine",48.193762,-1.832214,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3705,1,"Saint-Gilles Centre",48.15298,-1.829806,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3707,1,"Pont aux Moines",48.150683,-1.825279,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3708,1,"Vigne",48.152801,-1.820678,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3709,1,"Fouaye",48.152952,-1.809229,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3715,1,"Clos des Cerisiers",48.153745,-1.834034,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3717,1,"Maison Neuve",48.153985,-1.8376,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3732,1,"Ile des Bois",48.14933,-1.839024,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3751,1,"ZI Ouest",48.107431,-1.739281,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3752,1,"Trois Marches",48.104704,-1.739009,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3754,1,"Haie de Terre",48.12091,-1.772466,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3755,1,"Vallée",48.120211,-1.765417,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3756,1,"Lion d'Or",48.119004,-1.760926,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3757,1,"Vezin Centre",48.11887,-1.756833,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3758,1,"Tertre",48.118334,-1.742441,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3759,1,"Champ Noël",48.117611,-1.731377,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3768,1,"Marais",48.104219,-1.735894,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3770,1,"Champs Bleus",48.119011,-1.749601,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3801,1,"Centre de Loisirs",47.990142,-1.613855,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3802,1,"Bourgbarré Mairie",47.994926,-1.614233,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3803,1,"La Motte",47.996045,-1.617451,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3804,1,"La Basse Erable",47.995183,-1.624234,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3805,1,"Perelle",47.994576,-1.631502,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3810,1,"Moc Souris",47.960038,-1.632394,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3811,1,"Sept Fours",47.959332,-1.637267,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3814,1,"Rue de Rennes",47.997686,-1.619187,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3816,1,"Launay Garnier",48.000758,-1.594361,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3851,1,"Mordelles Pâtis",48.074582,-1.853723,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3852,1,"Mordelles Eglise",48.071956,-1.849829,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3853,1,"Mordelles Mairie",48.073718,-1.846282,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3854,1,"Mordelles Lilas",48.075808,-1.842153,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3855,1,"Gretay",48.077668,-1.837422,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3856,1,"Croix Ignon",48.081318,-1.826616,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3857,1,"Grande Fontaine",48.083954,-1.813568,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3858,1,"Vivier des Bois",48.08823,-1.798671,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3880,1,"Morvan Lebesque",48.071465,-1.841111,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3881,1,"Collège St-Yves",48.073566,-1.851712,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3901,1,"Bois Esnault",47.999909,-1.696968,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3902,1,"Caliorne",48.006505,-1.69847,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3903,1,"Mouton Blanc",48.010649,-1.700885,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3904,1,"Chemin Vert",48.012935,-1.702976,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3905,1,"Pont-Péan Mairie",48.010604,-1.707005,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3906,1,"Rivaudière",48.013631,-1.707588,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3907,1,"Fontaine Blanche",48.016278,-1.705639,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3908,1,"Renaissance",48.019925,-1.706935,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3951,1,"Cropy",48.225212,-1.570409,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3952,1,"Chesnais",48.223261,-1.576352,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3953,1,"Bourg",48.217907,-1.581457,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3954,1,"Terrain des Sports",48.21475,-1.586501,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3955,1,"Tronchay",48.211688,-1.590809,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3956,1,"Oliverie",48.197922,-1.599137,,1,,Europe/Paris,,ORE, +ORE:SA:CTP3958,1,"Lande Saint-Denis",48.203176,-1.595,,1,,Europe/Paris,,ORE, +ORE:SA:CTP4001,1,"Timonière",48.137043,-1.526335,,1,,Europe/Paris,,ORE, +ORE:SA:CTP4002,1,"Verdaudais",48.136905,-1.533137,,1,,Europe/Paris,,ORE, +ORE:SA:CTP4003,1,"Acigné Mairie",48.134242,-1.534801,,1,,Europe/Paris,,ORE, +ORE:SA:CTP4004,1,"Foyer",48.133958,-1.537791,,1,,Europe/Paris,,ORE, +ORE:SA:CTP4006,1,"Pont d'Ohin",48.137273,-1.549814,,1,,Europe/Paris,,ORE, +ORE:SA:CTP4007,1,"Boulais",48.139094,-1.558744,,1,,Europe/Paris,,ORE, +ORE:SA:CTP4010,1,"Lande",48.134632,-1.542142,,1,,Europe/Paris,,ORE, +ORE:SA:CTP4019,1,"Botrel",48.14065,-1.527479,,1,,Europe/Paris,,ORE, +ORE:SA:CTP4053,1,"Métairie",48.17951,-1.729201,,1,,Europe/Paris,,ORE, +ORE:SA:CTP4054,1,"Mairie",48.177108,-1.732207,,1,,Europe/Paris,,ORE, +ORE:SA:CTP4055,1,"Viennais",48.174111,-1.735204,,1,,Europe/Paris,,ORE, +ORE:SA:CTP4056,1,"Sénestrais",48.17016,-1.736188,,1,,Europe/Paris,,ORE, +ORE:SA:CTP4066,1,"Quatre Vents",48.168594,-1.742983,,1,,Europe/Paris,,ORE, +ORE:SA:CTP4069,1,"Besneraie",48.183129,-1.726001,,1,,Europe/Paris,,ORE, +ORE:SA:CTP4101,1,"Corps-Nuds Gare",47.985025,-1.576372,,1,,Europe/Paris,,ORE, +ORE:SA:CTP4102,1,"Huberdières",47.982393,-1.580817,,1,,Europe/Paris,,ORE, +ORE:SA:CTP4103,1,"Place de Kildare",47.977794,-1.585033,,1,,Europe/Paris,,ORE, +ORE:SA:CTP4104,1,"Corps-Nuds Mairie",47.979393,-1.587834,,1,,Europe/Paris,,ORE, +ORE:SA:CTP4105,1,"Chêne Hervé",47.982053,-1.588248,,1,,Europe/Paris,,ORE, +ORE:SA:CTP4151,1,"Anjou",48.109864,-1.481103,,1,,Europe/Paris,,ORE, +ORE:SA:CTP4152,1,"Mainguère",48.108998,-1.47848,,1,,Europe/Paris,,ORE, +ORE:SA:CTP4153,1,"Saules",48.107127,-1.479136,,1,,Europe/Paris,,ORE, +ORE:SA:CTP4154,1,"Provence",48.107516,-1.482935,,1,,Europe/Paris,,ORE, +ORE:SA:CTP4155,1,"Destiers",48.107643,-1.486165,,1,,Europe/Paris,,ORE, +ORE:SA:CTP4156,1,"Pâtis",48.109445,-1.503174,,1,,Europe/Paris,,ORE, +ORE:SA:CTP4162,1,"Turbanière",48.108409,-1.507807,,1,,Europe/Paris,,ORE, +ORE:SA:CTP4201,1,"Croix Blanche",48.051925,-1.797682,,1,,Europe/Paris,,ORE, +ORE:SA:CTP4202,1,"Calvaire",48.051992,-1.79066,,1,,Europe/Paris,,ORE, +ORE:SA:CTP4203,1,"Alfred de Musset",48.05512,-1.790086,,1,,Europe/Paris,,ORE, +ORE:SA:CTP4204,1,"Avenir",48.053984,-1.783762,,1,,Europe/Paris,,ORE, +ORE:SA:CTP4205,1,"Grippay",48.0582,-1.776254,,1,,Europe/Paris,,ORE, +ORE:SA:CTP4206,1,"Mare Doux",48.063257,-1.772312,,1,,Europe/Paris,,ORE, +ORE:SA:CTP4252,1,"Rochers",48.123011,-1.860726,,1,,Europe/Paris,,ORE, +ORE:SA:CTP4253,1,"Piardière",48.121939,-1.846158,,1,,Europe/Paris,,ORE, +ORE:SA:CTP4254,1,"Grippière",48.121285,-1.837645,,1,,Europe/Paris,,ORE, +ORE:SA:CTP4264,1,"Place de la Mairie",48.123069,-1.865899,,1,,Europe/Paris,,ORE, +ORE:SA:CTP4267,1,"Ville aux Archers",48.122595,-1.868366,,1,,Europe/Paris,,ORE, +ORE:SA:CTP4301,1,"Hautière",48.122924,-1.821633,,1,,Europe/Paris,,ORE, +ORE:SA:CTP4302,1,"ESAT La Hautière",48.118827,-1.822672,,1,,Europe/Paris,,ORE, +ORE:SA:CTP4303,1,"L'Hermitage Gare",48.123875,-1.817721,,1,,Europe/Paris,,ORE, +ORE:SA:CTP4304,1,"L'Hermitage Centre",48.125578,-1.815962,,1,,Europe/Paris,,ORE, +ORE:SA:CTP4305,1,"Village",48.124609,-1.811557,,1,,Europe/Paris,,ORE, +ORE:SA:CTP4306,1,"Clairefontaine",48.123163,-1.806172,,1,,Europe/Paris,,ORE, +ORE:SA:CTP4315,1,"Noë Biche",48.122997,-1.802546,,1,,Europe/Paris,,ORE, +ORE:SA:CTP4351,1,"Parc d'Activités",48.01727,-1.660332,,1,,Europe/Paris,,ORE, +ORE:SA:CTP4352,1,"Champ Mulon",48.01881,-1.657566,,1,,Europe/Paris,,ORE, +ORE:SA:CTP4353,1,"Paul Féval",48.017654,-1.654585,,1,,Europe/Paris,,ORE, +ORE:SA:CTP4356,1,"Croix du Pigeonnet",48.017076,-1.664587,,1,,Europe/Paris,,ORE, +ORE:SA:CTP4358,1,"Croix Faucheux",48.017732,-1.649365,,1,,Europe/Paris,,ORE, +ORE:SA:CTP4359,1,"Leuzières",48.021537,-1.653502,,1,,Europe/Paris,,ORE, +ORE:SA:CTP4362,1,"Alexandre Gilois",48.016196,-1.651517,,1,,Europe/Paris,,ORE, +ORE:SA:CTP4379,1,"Collège Saint-Paul",48.017946,-1.660456,,1,,Europe/Paris,,ORE, +ORE:SA:CTP4401,1,"Le Verger Eglise",48.069918,-1.932427,,1,,Europe/Paris,,ORE, +ORE:SA:CTP4402,1,"Bouvrais",48.070241,-1.928997,,1,,Europe/Paris,,ORE, +ORE:SA:CTP4451,1,"Clairville",48.180991,-1.850524,,1,,Europe/Paris,,ORE, +ORE:SA:CTP4452,1,"Croix Simon",48.181419,-1.853554,,1,,Europe/Paris,,ORE, +ORE:SA:CTP4453,1,"Clayes Centre",48.176019,-1.85261,,1,,Europe/Paris,,ORE, +ORE:SA:CTP4454,1,"Terseul",48.180941,-1.844779,,1,,Europe/Paris,,ORE, +ORE:SA:CTP4459,1,"La Cour aux Pages",48.178132,-1.85278,,1,,Europe/Paris,,ORE, +ORE:SA:CTP4502,1,"Gévezé Mairie",48.220986,-1.788723,,1,,Europe/Paris,,ORE, +ORE:SA:CTP4503,1,"Flume",48.218704,-1.784055,,1,,Europe/Paris,,ORE, +ORE:SA:CTP4507,1,"Cheval Blanc",48.221783,-1.802327,,1,,Europe/Paris,,ORE, +ORE:SA:CTP4508,1,"Coualeuc",48.224482,-1.800785,,1,,Europe/Paris,,ORE, +ORE:SA:CTP4510,1,"Prés Verts",48.223615,-1.79363,,1,,Europe/Paris,,ORE, +ORE:SA:CTP4551,1,"Saint-Armel Eglise",48.013468,-1.590988,,1,,Europe/Paris,,ORE, +ORE:SA:CTP4552,1,"Saint-Armel Gare",48.013906,-1.594286,,1,,Europe/Paris,,ORE, +ORE:SA:CTP4553,1,"Lande du Jardin",48.01463,-1.598304,,1,,Europe/Paris,,ORE, +ORE:SA:CTP4601,1,"Chevaigné Mairie",48.211782,-1.630337,,1,,Europe/Paris,,ORE, +ORE:SA:CTP4602,1,"Fonderies",48.214316,-1.628818,,1,,Europe/Paris,,ORE, +ORE:SA:CTP4603,1,"Pommiers",48.210932,-1.626041,,1,,Europe/Paris,,ORE, +ORE:SA:CTP4607,1,"Chevaigné Gare",48.207641,-1.630846,,1,,Europe/Paris,,ORE, +ORE:SA:CTP4609,1,"Chopinais",48.199145,-1.627451,,1,,Europe/Paris,,ORE, +ORE:SA:CTP4652,1,"Chêne Vert",48.105043,-1.872646,,1,,Europe/Paris,,ORE, +ORE:SA:CTP4653,1,"Saint-Melaine",48.103336,-1.869545,,1,,Europe/Paris,,ORE, +ORE:SA:CTP4700,1,"Point du Jour",47.978438,-1.713688,,1,,Europe/Paris,,ORE, +ORE:SA:CTP4702,1,"Orée du Bois",47.975433,-1.717111,,1,,Europe/Paris,,ORE, +ORE:SA:CTP4704,1,"Laillé Eglise",47.978117,-1.72041,,1,,Europe/Paris,,ORE, +ORE:SA:CTP4706,1,"Châtaigneraie",47.97919,-1.724314,,1,,Europe/Paris,,ORE, +ORE:SA:CTP4708,1,"Gingouillère",47.980092,-1.730909,,1,,Europe/Paris,,ORE, +ORE:SA:CTP4709,1,"Bout de Lande",47.979926,-1.693073,,1,,Europe/Paris,,ORE, +ORE:SA:CTP4711,1,"Estuaires",47.975394,-1.691403,,1,,Europe/Paris,,ORE, +ORE:SA:CTP4721,1,"Château d'Eau",47.974425,-1.697982,,1,,Europe/Paris,,ORE, +ORE:SA:CTP4800,1,"Bécherel Centre",48.296245,-1.945373,,1,,Europe/Paris,,ORE, +ORE:SA:CTP4802,1,"Sévignière",48.29968,-1.93946,,1,,Europe/Paris,,ORE, +ORE:SA:CTP4850,1,"Chapelle-Chaussée",48.271961,-1.856918,,1,,Europe/Paris,,ORE, +ORE:SA:CTP4900,1,"Langan Bourg",48.245235,-1.853734,,1,,Europe/Paris,,ORE, +ORE:SA:CTP4950,1,"Miniac Eglise",48.284693,-1.930733,,1,,Europe/Paris,,ORE, +ORE:SA:CTP6000,1,"Romillé Collège",48.218676,-1.893365,,1,,Europe/Paris,,ORE, +ORE:SA:CTP6001,1,"Frères Aubert",48.216915,-1.89045,,1,,Europe/Paris,,ORE, +ORE:SA:CTP6003,1,"Romillé Mairie",48.214912,-1.892418,,1,,Europe/Paris,,ORE, +ORE:SA:CTP6005,1,"Mettrie Templiers",48.212494,-1.890895,,1,,Europe/Paris,,ORE, +ORE:SA:CTP9209,1,"Vallès",48.10488,-1.709334,,1,,Europe/Paris,,ORE, +ORE:SA:JFK,1,"J.F. Kennedy",48.121319,-1.711461,,1,,Europe/Paris,,ORE, +ORE:SA:PON,1,"Pontchaillou",48.121539,-1.693383,,1,,Europe/Paris,,ORE, +SIN:SA:OCE71793150,1,"Gare de Port-Bou",42.424471,3.157848,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87009696,1,"Gare de La Douzillère",47.338631,0.653003,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87110296,1,"Azay-le-Rideau(Mairie)",47.26189,0.465921,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87110320,1,"Neuille (Gendarmerie)",47.546386,0.551658,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87110338,1,"St Christophe / Nais C.",47.615551,0.475275,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87115337,1,"Azay-sur-Indre-Le Parad",47.209438,0.946106,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87137810,1,"Chartres-Gare-Routière",48.447533,1.480534,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87201541,1,"Châteauroux Gare Rout.",46.809648,1.698686,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87201566,1,"Argenton-sur-Creuse-LEP",46.588875,1.518999,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87201582,1,"St-Gaultier-Gendarmerie",46.634292,1.418469,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87201608,1,"Le-Blanc-Pl-du-Bateau",46.630748,1.063564,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87202440,1,"St-Savin",46.565795,0.863838,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87202465,1,"Chauvigny",46.569697,0.644031,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87202481,1,"Poitiers-Gare-Routière",46.582767,0.334016,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87205575,1,"Chambray-CHR-Trousseau",47.347769,0.709996,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87206771,1,"Le Tranger",46.95666,1.240265,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87216663,1,"Surins-Carref-RN143",46.829162,1.564433,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87216671,1,"Palluau-Mairie",46.944158,1.314719,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87216689,1,"Flere-La-Rivière-Mairie",47.02083,1.107222,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87279174,1,"Mehun-sur-Indre",46.840833,1.530832,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87280057,1,"TOURS LYCEE GRANDMONT",47.360269,0.699989,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87280065,1,"Bridoré-Carrefour-943",47.033049,1.095547,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87299834,1,"Miannay",50.097221,1.721385,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87299842,1,"Yzengremer",50.061104,1.521662,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87304626,1,"Deols",46.826018,1.701323,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87304642,1,"Issoudun-Place-de-la-G.",46.948607,1.985823,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87304659,1,"Charost-café-du-Centre",46.99277,2.11583,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87304691,1,"Avail",46.964073,2.05851,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87309757,1,"Chaumont-sur-Tharonne",47.610616,1.904381,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87309765,1,"St-Hilaire-La-Gravelle",47.924716,1.207213,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87309773,1,"Mereau",47.162559,2.049801,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87310813,1,"St-Florent-sur-Cher-M.",46.992677,2.245377,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87310862,1,"Neuvy-Pailloux-4-Routes",46.886656,1.858561,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87312546,1,"Mery-sur-Cher",47.246355,1.988267,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87313395,1,"Gare de Poix-de-Picardie",49.777802,1.989828,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87313759,1,"Gare de Abancourt",49.685665,1.77418,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87313874,1,"Gare de Amiens",49.890532,2.308098,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87314518,1,"Aubigny-sur-Nere-Mail",47.487775,2.437775,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87314526,1,"Argent-sur-Sauldre",47.559993,2.447771,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87314534,1,"Coullons",47.699165,2.492493,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87314880,1,"Sancerre-Hôtel-du-Remp.",47.332492,2.836944,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87314898,1,"St-Satur-Place-du-Marc.",47.339717,2.856941,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87314906,1,"Bannay-Bourg",47.386944,2.885826,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87317362,1,"Gare de Abbeville",50.102194,1.824485,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87317495,1,"Gare de Chépy-Valines",50.06814,1.635563,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87317503,1,"Gare de Feuquières-en-Vimeu-Fre",50.063305,1.589164,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87317511,1,"Gare de Woincourt",50.058666,1.537138,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87317529,1,"Gare de Le Tréport-Mers-Les-B",50.06272,1.376115,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87317537,1,"Gare de Eu",50.05429,1.416892,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87317701,1,"Lury-sur-Arnon",47.127325,2.058347,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87317727,1,"Chéry-Centre",47.120783,2.04673,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87321687,1,"Marigny-Centre",49.09861,-1.240283,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87321745,1,"Gare de Penhoet",47.289885,-2.200876,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87324095,1,"Gare de Futuroscope",46.66985,0.377202,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87328195,1,"Gare de Thesee",47.322432,1.312006,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87331397,1,"Epuisay-Eglise",47.900271,0.929716,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87332635,1,"Mondoubleau-Station-Tot",47.979995,0.893323,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87333005,1,"Pouzauges (centre)",46.780272,-0.839449,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87334508,1,"Gare de La Poterie",48.092062,-1.630786,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87337501,1,"Cormery-Pl-du-Croissant",47.268608,0.835268,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87337527,1,"Reignac-Café-Brulé",47.226936,0.914997,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87337543,1,"Chambourg-Chopin",47.182215,0.968046,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87338574,1,"Montargis-OT",48.006943,2.743885,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87340380,1,"Cormenon-Centre",47.967777,0.893054,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87341156,1,"Lunery-Eglise",46.935567,2.268735,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87343152,1,"Cloyes-Médiathèque",47.995194,1.235784,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87344440,1,"Ste Gemme",46.90166,-0.287785,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87352484,1,"Bagnoles-de-l'Orne O.T.",48.557217,-0.412509,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87358556,1,"Droué (Centre)",48.039166,1.077213,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87358564,1,"Sargé/Braye (Centre)",47.924439,0.85333,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87358697,1,"Savigny/Braye (Centre)",47.880271,0.80971,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87381509,1,"Gare de Mantes-la-Jolie",48.989687,1.703294,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87381624,1,"Gare de Bréval",48.943126,1.54133,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87384008,1,"Gare de Paris-St-Lazare",48.877865,2.324433,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87387001,1,"Gare de Evreux - Normandie",49.018559,1.149888,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87387092,1,"Gare de Bueil",48.92509,1.443776,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87387159,1,"Gare de Conches",48.962341,0.938965,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87387183,1,"Gare de Beaumont-le-Roger",49.074181,0.772625,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87388199,1,"Cérences (Centre)",48.933054,-1.435834,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87389924,1,"St-Hilaire-Riez (Cent.)",46.726109,-1.974779,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87391102,1,"Gare de Paris-Montp.3-Vaug.",48.838706,2.316627,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87391672,1,"Aube-Centre RN 26",48.739439,0.545554,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87391680,1,"La Ferté-Macé Pl. Neust",48.590271,-0.355842,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87391698,1,"Le Merlerault-Centre",48.700273,0.283877,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87391706,1,"Nonant-Centre",48.704996,0.223604,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87391714,1,"Ecouche-Centre",48.715549,-0.120842,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87393009,1,"Gare de Versailles-Chantiers",48.795566,2.135465,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87393256,1,"Gare de La Verrière",48.755593,1.94384,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87393314,1,"Gare de Rambouillet",48.643788,1.831202,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87393348,1,"Gare de Gazeran",48.625959,1.772769,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87393488,1,"Gare de Dreux",48.731483,1.370166,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87393553,1,"Gare de Nonancourt",48.775751,1.192799,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87393595,1,"Gare de Verneuil-sur-Avre",48.742735,0.929201,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87394007,1,"Gare de Chartres",48.448203,1.481226,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87394114,1,"Gare de Epernon",48.605155,1.681418,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87394130,1,"Gare de Maintenon",48.585364,1.592455,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87394148,1,"Gare de St-Piat",48.542441,1.590103,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87394155,1,"Gare de Jouy",48.51019,1.557496,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87394171,1,"Gare de La Villette-St-Prest",48.482743,1.52292,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87394296,1,"Gare de Nogent-le-Rotrou",48.325496,0.810058,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87394403,1,"Gare de La Taye",48.407398,1.373239,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87394411,1,"Gare de Bailleau-le-Pin",48.36683,1.325031,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87394437,1,"Gare de Illiers-Combray",48.304019,1.244945,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87394452,1,"Gare de Brou",48.215657,1.160602,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87394486,1,"Gare de Arrou",48.099887,1.128189,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87394494,1,"Gare de Courtalain-St-Pellerin",48.073829,1.126935,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87396002,1,"Gare de Le Mans",47.995584,0.192143,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87396036,1,"Gare de La Guierche",48.114021,0.193131,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87396044,1,"Gare de Montbizot",48.151328,0.19083,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87396093,1,"Gare de La Hutte-Coulombiers",48.303346,0.105456,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87396200,1,"Gare de Domfront (Sarthe)",48.107786,0.026255,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87396218,1,"Gare de Conlie",48.127106,-0.011062,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87396234,1,"Gare de Sillé-le-Guillaume",48.181744,-0.128864,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87396309,1,"Gare de Connerré-Beillé",48.073752,0.48694,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87396325,1,"Gare de La Ferté-Bernard",48.186487,0.639325,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87396564,1,"Gare de Ecommoy",47.824528,0.269013,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87396606,1,"Gare de Château-du-Loir",47.683279,0.414985,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87397950,1,"Santec",27.140973,-3.404561,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87402008,1,"Romorantin-BA-G.R.",47.359434,1.744431,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87402016,1,"Villefranche / Cher G.R",27.140973,-3.404561,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87407726,1,"La Grave-Carrefour",46.53344,2.619822,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87408906,1,"Meaulne-Place-Centrale",46.598944,2.613285,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87408971,1,"Reugny RN 144",46.462006,2.615466,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87409490,1,"Urcay-Hotel-du-Lyon-d'O",46.626818,2.589411,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87411017,1,"Gare de Rouen-Rive-Droite",49.44903,1.094154,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87411207,1,"Gare de Oissel",49.343042,1.101821,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87411454,1,"Gare de Montérolier-Buchy",49.603131,1.334709,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87411470,1,"Gare de Serqueux",49.631545,1.53934,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87413013,1,"Gare de Le Havre",49.492653,0.124835,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87413344,1,"Gare de Bréauté-Beuzeville",49.603595,0.417162,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87413385,1,"Gare de Yvetot",49.622113,0.750072,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87413542,1,"Gare de Fécamp",49.75946,0.373888,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87414276,1,"Guiscriff-5-Chemins",48.067492,-3.661953,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87414284,1,"Carhaix-Lycée-Diwan",48.272218,-3.553615,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87414292,1,"Carhaix-République",48.275552,-3.575561,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87414318,1,"Morlaix-Lycée-Corbière",48.566936,-3.822499,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87414326,1,"Henvic-Pont-de-la-Corde",48.644994,-3.948066,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87414334,1,"Roscoff-Port-de-Bloscon",48.721383,-3.967226,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87415604,1,"Gare de Vernon-Giverny",49.091286,1.478363,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87415620,1,"Gare de Gaillon-Aubevoye",49.174632,1.352518,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87415877,1,"Gare de Val-de-Reuil",49.275399,1.224609,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87415893,1,"Gare de Bonnières",49.038603,1.581508,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87419291,1,"St-Sever (Centre)",48.840276,-1.045835,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87422394,1,"Château-Renault-La-Tann",47.590549,0.90777,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87422402,1,"Château-Renault-Pl.J.J.",47.59277,0.914998,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87422469,1,"St-Amand-Longpré",47.69305,1.012209,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87427393,1,"Monnaie-Jean-Baptiste-M",47.501863,0.790455,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87430785,1,"Goderville",49.645564,0.367784,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87437376,1,"Vierzon-Médiathèque",47.221386,2.062531,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87441543,1,"Civray-Grand-Entrevin",46.994374,2.11727,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87444000,1,"Gare de Caen",49.176544,-0.34827,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87444067,1,"Gare de Bayeux",49.269444,-0.697712,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87444208,1,"Gare de Mézidon-Canon",49.070867,-0.074966,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87444265,1,"Gare de Lisieux",49.137252,0.231682,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87444299,1,"Gare de Bernay",49.086989,0.595728,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87444315,1,"Gare de Serquigny",49.107673,0.719577,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87444349,1,"Gare de Pont-l'Evêque",49.287024,0.191969,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87444372,1,"Gare de Trouville-Deauville",49.3585,0.084843,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87444539,1,"Gare de Argentan",48.738459,-0.025724,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87444562,1,"Gare de Surdon",48.664901,0.13413,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87444588,1,"Gare de Le Merlerault",48.702415,0.283494,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87444604,1,"Gare de Ste-Gauburge",48.717263,0.428108,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87444638,1,"Gare de L'Aigle",48.766684,0.620733,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87444695,1,"Gare de Sées",48.600161,0.166112,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87444711,1,"Gare de Alençon",48.433803,0.09905,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87444877,1,"Gare de Cherbourg",49.633499,-1.621473,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87447003,1,"Gare de St-Lô",49.115895,-1.101089,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87447110,1,"Gare de Coutances",49.042797,-1.441267,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87447219,1,"Gare de Lison",49.227053,-1.050285,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87447243,1,"Gare de Carentan",49.301803,-1.242098,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87447284,1,"Gare de Valognes",49.505386,-1.480323,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87447508,1,"Orval-Hyenville",48.995277,-1.461952,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87447615,1,"Quettreville (Centre)",48.971663,-1.468061,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87447649,1,"Gare de Folligny",48.829153,-1.4064,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87447672,1,"St-Planchers",48.836941,-1.49668,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87447680,1,"Gare de Granville",48.838844,-1.586778,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87447698,1,"Gare de Villedieu (Gare)",48.834152,-1.225455,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87447706,1,"St-Aubin (Embt.)",48.822218,-1.111401,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87447722,1,"Mesnil-Clinchamps(Emb.)",48.84027,-0.986675,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87448001,1,"Gare de Flers",48.744373,-0.573681,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87448076,1,"Fromentel-Embt.",48.718883,-0.266112,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87448084,1,"Gare de Briouze",48.702003,-0.367444,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87448092,1,"Bellou-en-Houlme (Ctre)",48.690555,-0.442503,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87448100,1,"Messei-Centre",48.713607,-0.539174,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87448159,1,"Gare de Vire",48.846354,-0.883169,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87448464,1,"La Ferté-Macé",48.59472,-0.356398,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87448514,1,"Gare de Avranches",48.690409,-1.369974,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87449330,1,"Bagnoles- Orne Egl.Mad.",48.549719,-0.424727,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87449868,1,"Lonlay-le-Tesson",48.643329,-0.353063,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87453373,1,"St-Benoit-La-Foret-Hopi",47.222731,0.322288,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87453381,1,"Bruere-Allichamp-Mairie",46.768403,2.433175,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87453399,1,"Morée-Centre",47.902154,1.234928,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87453597,1,"St-Florent-Sur-Cher-Gar",46.99216,2.252175,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87454249,1,"Bourges-Gare-Routière",27.140973,-3.404561,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87455097,1,"Fontenay-Pt-Tranchefêtu",48.394816,1.413299,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87462960,1,"Cholet-les-Halles",47.060194,-0.880296,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87463083,1,"Nantes-Pirmil",47.196725,-1.543036,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87463125,1,"Ste-Pazanne-Rue-Vigneau",47.1059,-1.810952,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87465690,1,"Bourges-Aéroport",47.062304,2.365809,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87465716,1,"St-Lactensin-Tesseau",46.898619,1.494449,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87465724,1,"Tauxigny-Node-Park",47.215162,0.834364,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87471029,1,"Gare de Vern",48.04683,-1.59656,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87471201,1,"Gare de Fougeray-Langon",47.73022,-1.85118,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87471219,1,"Gare de Beslé",47.699196,-1.870289,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87471318,1,"Gare de St-Armel",48.014277,-1.594801,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87471334,1,"Gare de Janzé",47.955123,-1.49741,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87471342,1,"Gare de Le Theil-de-Bretagne",47.918713,-1.432376,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87471359,1,"Gare de Retiers",47.913212,-1.389718,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87471367,1,"Gare de Martigné-Ferchaud",47.831974,-1.313728,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87471607,1,"Fougères",48.35029,-1.194508,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87473009,1,"Gare de St-Brieuc",48.507223,-2.765467,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87473108,1,"Gare de Lamballe",48.465922,-2.511489,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87473116,1,"Gare de Yffiniac",48.470113,-2.652377,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87473207,1,"Gare de Guingamp",48.555536,-3.142716,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87473264,1,"Gare de Landébia",48.507364,-2.331714,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87473272,1,"Gare de Plancoet",48.52147,-2.228839,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87473496,1,"Gourin",48.139992,-3.605281,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87473504,1,"Gare de Carhaix",48.275812,-3.56411,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87473595,1,"Kerbiquet",48.09972,-3.629726,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87473769,1,"Port-de-Carhaix",48.243048,-3.60251,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87473777,1,"Motreff",48.190827,-3.568614,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87474007,1,"Gare de Brest",48.388083,-4.478918,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87474015,1,"Gare de Dirinon",48.392594,-4.285596,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87474056,1,"Gare de Pont-de-Buis",48.254317,-4.086314,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87474064,1,"Gare de Châteaulin-Emb.",48.201506,-4.09404,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87474098,1,"Gare de Quimper",47.994658,-4.092103,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87474155,1,"Gare de Rosporden",47.96019,-3.832758,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87474239,1,"Gare de Landerneau",48.453834,-4.256209,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87474338,1,"Gare de Morlaix",48.577979,-3.832761,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87474445,1,"Ernée",48.296658,-0.940003,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87474544,1,"Henvic (Centre)",48.63222,-3.9264,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87474551,1,"Plouénan (Car.C25/D769)",48.641108,-3.970429,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87474569,1,"Gare de St-Pol-de-Léon",48.676806,-3.987578,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87474635,1,"Gare de Roscoff",48.720554,-3.982457,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87474668,1,"Kernevel",47.960277,-3.814167,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87474676,1,"Scaer",48.026938,-3.706391,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87476002,1,"Gare de Lorient",47.755203,-3.366348,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87476317,1,"Gare de Quimperlé",47.869063,-3.553011,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87476671,1,"Gare de Questembert",47.683131,-2.449669,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87476689,1,"Gare de Malansac",47.675428,-2.295754,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87476754,1,"Gare de Sévérac",47.550054,-2.072783,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87476762,1,"Gare de St-Gildas-des-Bois",47.516565,-2.04365,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87476770,1,"Gare de Dreffeac",47.482389,-2.050246,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87478073,1,"Gare de Dol",48.542976,-1.75047,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87478123,1,"Gare de Plerguer",48.531538,-1.850443,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87478164,1,"Gare de Dinan",48.456966,-2.052987,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87478180,1,"Gare de Corseul-Languenan",48.496002,-2.141404,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87478263,1,"Gare de Pontorson-Mt-St-Michel",48.552444,-1.505068,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87478404,1,"Gare de Laval",48.076252,-0.760939,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87478537,1,"Gare de Montsurs",48.141106,-0.551436,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87478552,1,"Gare de Evron",48.155535,-0.39717,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87481002,1,"Gare de Nantes",47.217505,-1.541925,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87481051,1,"Gare de Chantenay",47.197211,-1.594316,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87481069,1,"Gare de La Basse-Indre-St-Herb.",47.20411,-1.660311,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87481176,1,"Gare de Boussay-la-Bruffière",47.050461,-1.182848,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87481366,1,"Gare de Machecoul",46.990618,-1.82263,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87481390,1,"Gare de Challans",46.844046,-1.87183,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87481648,1,"Gare de Châteaubriant",47.716996,-1.371397,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87481689,1,"Gare de La Croix-de-Méan",47.300547,-2.193,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87481697,1,"Gare de La Baule-les-Pins",47.283575,-2.364769,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87481705,1,"Gare de St-Nazaire",47.286474,-2.211074,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87481713,1,"Gare de Montoir-de-Bretagne",47.321047,-2.16164,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87481721,1,"Gare de Donges",47.308686,-2.071699,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87481747,1,"Gare de Pornichet",47.270485,-2.344737,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87481754,1,"Gare de La Baule-Escoublac",47.288622,-2.389225,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87481762,1,"Gare de Le Pouliguen",47.282524,-2.433157,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87481770,1,"Gare de Batz-sur-Mer",47.280836,-2.479,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87481788,1,"Gare de Le Croisic",47.289889,-2.507288,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87481812,1,"Gare de St-Etienne-de-Montluc",47.274767,-1.785623,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87481820,1,"Gare de Cordemais",47.302199,-1.846616,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87481846,1,"Gare de Pontchâteau",47.435338,-2.088488,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87484006,1,"Gare de Angers-St-Laud",47.464434,-0.556949,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87484204,1,"Gare de Chalonnes",47.343005,-0.743764,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87484246,1,"Gare de Chemillé",47.217598,-0.732093,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87484303,1,"Gare de Cholet",47.065732,-0.869612,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87484337,1,"Gare de La Possonnière",47.371493,-0.691742,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87485003,1,"Gare de La Rochelle-Ville",46.152701,-1.1453,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87485144,1,"Gare de Rochefort",45.947416,-0.963788,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87486019,1,"Gare de La Roche-sur-Yon",46.672025,-1.43568,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87486258,1,"Gare de Luçon",46.46372,-1.167445,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87486332,1,"Gare de Chantonnay",46.690119,-1.054358,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87486423,1,"Gare de La Mothe-Achard",46.606815,-1.659679,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87486449,1,"Gare de Les Sables-d'Olonne",46.499983,-1.781155,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87486563,1,"Gare de St-Hilaire-de-Riez SNCF",46.716579,-1.949586,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87486571,1,"Gare de St-Gilles-Croix-de-Vie",46.69638,-1.94137,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87486894,1,"Gare de Torfou",47.033135,-1.117308,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87487009,1,"Gare de Thouars",46.985249,-0.210513,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87487231,1,"Noirterre",46.869564,-0.396173,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87487249,1,"Gare de Bressuire",46.837167,-0.496485,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87487264,1,"Subdray-Lycée-Agricole",47.021754,2.293593,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87487280,1,"Gare de Cerizay",46.817312,-0.667487,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87487298,1,"St-Mesmin-le-Vieux",46.790413,-0.732186,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87487603,1,"Gare de Saumur",47.268972,-0.07143,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87487611,1,"Brion-près-Thouet",47.04872,-0.18491,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87487637,1,"Gare de Montreuil-Bellay",47.125325,-0.148041,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87487884,1,"Gare de La Menitré",47.397369,-0.275869,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87487892,1,"Gare de St-Mathurin",47.412078,-0.318063,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87491001,1,"Gare de Saintes",45.747843,-0.617576,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87491142,1,"Gare de Jonzac",45.438714,-0.442003,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87499863,1,"Cosne-sur-Loire-Sud",27.140973,-3.404561,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87543009,1,"Gare de Orléans",47.908153,1.904753,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87543017,1,"Gare de Aubrais-(les)",47.926917,1.906085,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87543033,1,"Gare de Cercottes",47.986387,1.884447,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87543041,1,"Gare de Chevilly",48.026636,1.879047,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87543058,1,"Gare de Artenay",48.080653,1.883355,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87543066,1,"Gare de Château-Gaillard",48.141549,1.912467,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87543140,1,"Gare de Lamotte-Beuvron",47.59397,2.022591,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87543157,1,"Gare de Nouan-le-Fuzelier",47.534058,2.033265,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87543165,1,"Gare de Salbris",47.42514,2.047737,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87545525,1,"Gare de Dourdan",48.533612,2.009701,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87545657,1,"Gare de Auneau",48.445413,1.779718,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87545707,1,"Gare de Voves",48.274974,1.622171,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87545731,1,"Gare de Bonneval",48.186288,1.386117,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87545756,1,"Gare de Châteaudun",48.073354,1.338105,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87547000,1,"Gare de Paris-Austerlitz",48.841652,2.366039,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87571000,1,"Gare de Tours",47.389814,0.693505,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87571216,1,"Gare de Vendôme-Villiers-s-Loir",47.820324,1.019667,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87571240,1,"Gare de St-Pierre-des-Corps",47.385732,0.725054,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87571273,1,"Gare de Montlouis",47.391554,0.817513,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87571406,1,"Gare de Montbazon",47.291644,0.721504,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87571414,1,"Gare de Veigné",47.2915,0.734441,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87571422,1,"Gare de Esvres",47.284119,0.781561,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87571430,1,"Gare de Cormery",47.262354,0.833818,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87571448,1,"Gare de Courcay-Tauxigny",47.237832,0.867626,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87571455,1,"Gare de Reignac",47.217787,0.901295,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87571471,1,"Gare de Loches",47.1304,1.00097,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87571489,1,"Perrusson",47.101184,1.014017,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87571539,1,"Gare de St-Antoine-du-Rocher",47.50381,0.616365,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87571547,1,"Gare de Neuillé-Pont-Pierre",47.558461,0.564038,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87571554,1,"Gare de St-Paterne",47.60408,0.478045,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87571604,1,"Gare de Ballan",47.336758,0.61808,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87571612,1,"Gare de Druye",47.306788,0.535467,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87571638,1,"Gare de Azay-le-Rideau",47.266246,0.447778,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87571653,1,"Gare de Rivarennes",47.267661,0.361921,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87571687,1,"Gare de Chinon",47.163053,0.252044,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87571703,1,"La Roche-Clermault",47.140127,0.194878,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87571711,1,"Beuxes",47.094612,0.176771,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87571729,1,"Basses-Sammarçolles",47.035547,0.122767,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87571794,1,"Gare de Port-Boulet",47.248527,0.154869,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87571828,1,"Gare de Langeais",47.323944,0.410325,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87571836,1,"Gare de Cinq-Mars",47.344792,0.460078,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87571885,1,"Gare de Joué-lès-Tours",47.354238,0.667088,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87574004,1,"Gare de Blois-Chambord",47.585424,1.323728,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87574301,1,"Gare de Chouzy",47.520345,1.247575,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87574327,1,"Gare de Veuves-Monteaux",47.475503,1.123663,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87574335,1,"Gare de Limeray",47.450291,1.049821,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87574343,1,"Gare de Amboise",47.421431,0.981219,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87574509,1,"Gare de Cloyes",47.992169,1.243123,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87574533,1,"Gare de Fréteval-Morée",47.892032,1.21187,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87574541,1,"Gare de Pézou",47.86722,1.140699,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87574558,1,"Gare de Vendôme",47.802156,1.067688,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87574665,1,"Gare de Château-Renault",47.588287,0.901595,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87574897,1,"Gare de St-Aignan-Noyers",47.286728,1.383662,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87575001,1,"Gare de Poitiers",46.582183,0.333084,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87575084,1,"Loudun",47.016026,0.083345,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87575100,1,"Arçay",46.971648,0.011179,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87575209,1,"Pas-de-Jeu",46.975275,-0.041957,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87576009,1,"Gare de Vierzon",47.226516,2.059824,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87576025,1,"Gare de Romorantin-Blanc-Argent",47.355567,1.739246,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87576082,1,"Gare de La Ferté-Imbault",47.383746,1.958033,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87576140,1,"Gare de Selles-St-Denis",47.388346,1.92233,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87576157,1,"Gare de Loreux",47.390409,1.8344,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87576165,1,"Gare de Villeherviers",47.369236,1.796982,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87576173,1,"Gare de Faubourg-d'Orléans",47.366995,1.740137,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87576181,1,"Gare de Les Quatre-Roues",47.332539,1.702295,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87576199,1,"Gare de Pruniers",47.313207,1.671891,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87576207,1,"Gare de Bourges",47.094094,2.394226,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87576215,1,"Gare de Valençay",47.163058,1.558696,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87576223,1,"Gare de Chabris",47.255124,1.646253,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87576231,1,"Gare de Varennes-sur-Fouzon",47.214383,1.614208,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87576272,1,"Gare de St-Florent-sur-Cher",46.992115,2.252149,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87576280,1,"Gare de Lunery",46.93513,2.275066,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87576298,1,"Gare de Châteauneuf-sur-Cher",46.856686,2.310212,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87576306,1,"Gare de Bigny",46.801897,2.368226,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87576322,1,"Gare de St-Amand-Montrond-Orval",46.726521,2.486062,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87576355,1,"La Gauterie",47.140132,1.491708,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87576363,1,"Luçay-le-Male",47.13328,1.43642,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87576405,1,"Gare de St-Germain-du-Puy",47.09629,2.484255,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87576439,1,"Gare de Avord",47.034779,2.652604,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87576447,1,"Gare de Bengy",47.000396,2.749106,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87576454,1,"Gare de Nérondes",46.999796,2.821991,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87576470,1,"Gare de La Guerche-sur-l'Aubois",46.94785,2.948455,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87576702,1,"Thénioux",47.255538,1.929939,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87576710,1,"Chatres (Loir-et-Cher)",47.264689,1.905911,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87576728,1,"Gare de Mennetou-sur-Cher",47.268848,1.876472,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87576736,1,"Langon (Loir-et-Cher)",47.283727,1.82521,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87576868,1,"Gare de Selles-sur-Cher",47.281595,1.546144,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87576876,1,"Gare de Gièvres",47.27873,1.667812,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87576884,1,"Gare de Villefranche-sur-Cher",47.29474,1.768037,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87580944,1,"Fougères-Carnot",27.140973,-3.404561,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87581009,1,"Gare de Bordeaux-St-Jean",44.82654,-0.556194,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87583005,1,"Gare de Angoulême",45.653935,0.164528,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87589580,1,"Ville-Gozet-Henri-Dunan",46.347913,2.593641,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87589804,1,"Reugny-Rue-Bascule",46.46278,2.615431,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87592006,1,"Gare de Limoges-Bénédictins",45.836208,1.267452,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87592378,1,"Gare de La Souterraine",46.23975,1.492234,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87594002,1,"Gare de Brive-la-Gaillarde",45.152562,1.528623,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87594200,1,"Gare de Uzerche",45.440621,1.570228,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87594333,1,"Gare de Souillac",44.902337,1.465215,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87594572,1,"Gare de St-Denis-près-Martel",44.945792,1.666287,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87597005,1,"Gare de Châteauroux",46.809823,1.699457,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87597039,1,"Gare de Reuilly (Indre)",47.086015,2.047182,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87597047,1,"Diou (Indre)",47.048116,2.023854,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87597054,1,"Gare de Ste-Lizaigne",47.00264,2.030076,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87597062,1,"Gare de Issoudun",46.947849,1.984921,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87597070,1,"Gare de Neuvy-Pailloux",46.882688,1.862808,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87597120,1,"Gare de Argenton-sur-Creuse",46.592225,1.51823,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87597153,1,"Gare de Eguzon",46.440492,1.552365,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87597369,1,"Villedieu-Chambon",46.842852,1.540373,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87597377,1,"Buzançais",46.884864,1.41841,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87597401,1,"Clion-sur-Indre",46.945201,1.238725,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87611004,1,"Gare de Toulouse-Matabiau",43.611464,1.453558,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87611244,1,"Gare de Montauban-Ville-Bourbon",44.014639,1.341974,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87611343,1,"Gare de Pamiers",43.116175,1.618998,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87611368,1,"Gare de Saverdun",43.239421,1.570422,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87611384,1,"Gare de Auterive",43.348835,1.468624,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87611483,1,"Gare de Latour-de-Carol-Enveitg",42.458157,1.90584,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87611509,1,"Gare de Porte-Puymorens",42.538759,1.82485,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87611517,1,"Gare de Andorre-L'Hospitalet",42.588385,1.798515,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87611525,1,"Gare de Mérens-les-Vals",42.658677,1.83642,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87611533,1,"Gare de Ax-les-Thermes",42.724805,1.833315,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87611558,1,"Gare de Luzenac-Garanou",42.764444,1.753154,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87611574,1,"Gare de Les Cabannes",42.786537,1.68618,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87611590,1,"Gare de Tarascon-sur-Ariège",42.849453,1.600031,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87611616,1,"Gare de Foix",42.969299,1.607394,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87613000,1,"Gare de Cahors",44.44916,1.433238,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87613042,1,"Gare de Rocamadour-Padirac",44.817911,1.657445,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87613059,1,"Gare de Gramat",44.77349,1.722371,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87613075,1,"Gare de Assier",44.674593,1.869747,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87613091,1,"Gare de Figeac",44.603514,2.037077,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87613109,1,"Gare de Capdenac",44.577656,2.078902,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87613141,1,"Gare de Gourdon",44.741898,1.389276,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87613224,1,"Gare de Aubin",44.527356,2.239559,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87613232,1,"Gare de Cransac",44.523063,2.270767,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87613257,1,"Gare de St-Christophe",44.464687,2.407487,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87613356,1,"Gare de Caussade (T.-et-G.)",44.162304,1.533453,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87613422,1,"Gare de Rodez",44.362652,2.580253,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87613661,1,"Gare de Viviez-Decazeville",44.55704,2.218024,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87615005,1,"Gare de Albi-Ville",43.922036,2.138635,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87615039,1,"Gare de Castelnaudary",43.312646,1.950989,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87615112,1,"Gare de Lézignan-Corbières",43.199971,2.769857,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87615195,1,"Gare de Albi-Madeleine.",43.937899,2.141168,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87615286,1,"Gare de Carcassonne",43.217715,2.351883,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87615625,1,"Gare de Carmaux",44.049004,2.152389,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87641001,1,"Gare de Montluçon-Ville",46.337875,2.596412,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87641357,1,"Gare de Vallon-en-Sully",46.536485,2.610803,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87641365,1,"Gare de Magnette",46.46415,2.603004,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87643726,1,"Bigny-Place-Bascoulard",46.801563,2.370531,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87643734,1,"Bourges-Place-Nation",47.084191,2.391279,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87643759,1,"Charost-Pont",46.992479,2.123563,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87643767,1,"Issoudun-CHU",46.957808,1.996957,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87643775,1,"Lamotte-Beuvron-College",27.140973,-3.404561,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87643783,1,"Montierchaume-Crevant",46.864465,1.79278,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87643791,1,"Montierchaume-Rosiers",46.844185,1.745454,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87643809,1,"Noyers-S-Cher-Pl-Guerri",47.276972,1.400676,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87643825,1,"St-Aignan-Lep",47.266216,1.371631,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87643866,1,"St-Marcel-Prieure",46.599788,1.522659,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87643890,1,"Bannay-Hautes-De-Bussy",47.385935,2.886173,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87643908,1,"Chouzy-Mairie",47.522001,1.245788,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87643916,1,"Gien-Place-Leclerc",47.684064,2.63194,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87643924,1,"Gien-Rte-De-Bourges",47.675394,2.63895,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87643932,1,"Sancerre-Porte-Cesar",47.333641,2.837524,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87643957,1,"Arrou-Place-De-L'eglise",48.098097,1.123007,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87643965,1,"Auneau-Piscine",48.46519,1.77752,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87643981,1,"Brou-Centre",48.211865,1.166217,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87643999,1,"Courtalain-Centre",48.079445,1.136053,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87644005,1,"Mondoubleau-Rue-Leroy",47.982031,0.90022,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87644039,1,"Azay-Rivieres",47.209205,0.946165,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87644062,1,"Buzancais-Sapin-Vert",46.888365,1.433284,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87644070,1,"Chambray-Trousseau",27.140973,-3.404561,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87644088,1,"Chateau-Renault-ZI",47.602962,0.922307,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87644096,1,"Chatillon-Mail",46.988385,1.1718,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87644104,1,"Courcay-Rouvre",47.237889,0.866435,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87644120,1,"Esvres-Champgault",47.287737,0.814738,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87644146,1,"Esvres-Les-Recais",47.294195,0.80572,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87644237,1,"Reignac-Jonquilles",47.225729,0.920721,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87674275,1,"Le Loreur (Emb.d'Hud.)",48.86916,-1.43084,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87684274,1,"Gare de Nogent-sur-Vernisson",47.85285,2.737637,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87684290,1,"Gare de Gien",47.698883,2.636752,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87686667,1,"Gare de Paris-Bercy",48.839211,2.382799,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87688945,1,"Verneuil-Laiterie",47.076475,1.058285,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87689422,1,"Avail-Halte",46.968187,2.045175,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87689513,1,"Châteauroux-Médiathèque",46.808803,1.69086,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87689653,1,"Montierchaume-Couturier",46.864138,1.771875,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87689703,1,"Palluau-Onzay",46.930625,1.316578,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87689729,1,"Monnaie-Gendarmerie",47.505865,0.79707,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87689935,1,"Issoudun-Jardin",46.949686,1.994683,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87690230,1,"Chatres-Zelie-Fouquet",47.267014,1.888131,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87696005,1,"Gare de Nevers",46.987349,3.15087,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87696088,1,"Gare de Briare",47.646499,2.733685,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87696146,1,"Gare de Cosne-sur-Loire",47.414026,2.932089,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87696161,1,"Gare de Tracy-Sancerre",47.33691,2.880508,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87696179,1,"Gare de Pouilly-sur-Loire",47.28217,2.966063,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87696195,1,"Gare de La-Charité-sur-Loire",47.180995,3.024014,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87696211,1,"Gare de Pougues-les-Eaux",47.076975,3.093823,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87696229,1,"Gare de Fourchambault",47.019234,3.087301,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87696328,1,"Gare de Moulins-sur-Allier",46.561364,3.338755,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87722025,1,"Gare de Lyon-Perrache",45.748492,4.825748,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87723197,1,"Gare de Lyon-Part-Dieu",45.760585,4.859435,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87726802,1,"Gare de Roanne",46.040211,4.063135,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87732206,1,"Gare de St-Germain-des-Fossés",46.209103,3.430489,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87784009,1,"Gare de Perpignan",42.696075,2.879617,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87784207,1,"Gare de Elne",42.597369,2.963521,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87784231,1,"Gare de Argelès-sur-Mer",42.543951,3.0215,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87784256,1,"Gare de Collioure",42.526892,3.078721,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87784264,1,"Gare de Port-Vendres",42.513381,3.102386,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87784298,1,"Gare de Banyuls-sur-Mer",42.482619,3.124411,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87785006,1,"Gare de Cerbère",42.442764,3.165525,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87930958,1,"Truyes-Chapelle",47.275277,0.830547,,1,,Europe/Paris,,SIN, +STE:SA:OCE87159947,1,"Gare de Ker Lann",48.043815,-1.738948,,1,,Europe/Paris,,STE, +STE:SA:OCE87271007,1,"Gare de Paris-Nord",48.880138,2.354887,,1,,Europe/Paris,,STE, +STE:SA:OCE87272096,1,"Gare de Esches",49.212605,2.170942,,1,,Europe/Paris,,STE, +STE:SA:OCE87276469,1,"Gare de Persan-Beaumont",49.148149,2.279384,,1,,Europe/Paris,,STE, +STE:SA:OCE87276717,1,"Gare de Bornel-Belle-Eglise",49.194644,2.20722,,1,,Europe/Paris,,STE, +STE:SA:OCE87276725,1,"Gare de Chambly",49.163615,2.240497,,1,,Europe/Paris,,STE, +STE:SA:OCE87286005,1,"Gare de Lille Flandres",50.636201,3.071023,,1,,Europe/Paris,,STE, +STE:SA:OCE87313056,1,"Gare de Corbie",49.911589,2.499656,,1,,Europe/Paris,,STE, +STE:SA:OCE87313072,1,"Gare de Albert",50.005397,2.644524,,1,,Europe/Paris,,STE, +STE:SA:OCE87313080,1,"Gare de St-Roch (Somme)",49.893424,2.283719,,1,,Europe/Paris,,STE, +STE:SA:OCE87313098,1,"Gare de Ailly-sur-Somme",49.928347,2.200556,,1,,Europe/Paris,,STE, +STE:SA:OCE87313122,1,"Gare de Longpré-Corps-Saints",50.011331,2.002784,,1,,Europe/Paris,,STE, +STE:SA:OCE87313379,1,"Gare de Namps-Quevauvillers",49.808311,2.105406,,1,,Europe/Paris,,STE, +STE:SA:OCE87313510,1,"Gare de Beauvais-Gare-SNCF",49.42651,2.088638,,1,,Europe/Paris,,STE, +STE:SA:OCE87313668,1,"Gare de Méru",49.232338,2.132546,,1,,Europe/Paris,,STE, +STE:SA:OCE87313676,1,"Gare de Laboissière-le-Déluge",49.288532,2.13614,,1,,Europe/Paris,,STE, +STE:SA:OCE87313684,1,"Gare de St-Sulpice-Auteuil",49.347422,2.116453,,1,,Europe/Paris,,STE, +STE:SA:OCE87313692,1,"Gare de Herchies",49.487955,2.011126,,1,,Europe/Paris,,STE, +STE:SA:OCE87313700,1,"Gare de Milly-sur-Thérain",49.503872,1.98864,,1,,Europe/Paris,,STE, +STE:SA:OCE87313718,1,"Gare de St-Omer-en-Chaussée",49.531041,1.997645,,1,,Europe/Paris,,STE, +STE:SA:OCE87313726,1,"Gare de Marseille-en-Beauvaisis",49.57107,1.954691,,1,,Europe/Paris,,STE, +STE:SA:OCE87313734,1,"Gare de Grandvilliers",49.659393,1.938451,,1,,Europe/Paris,,STE, +STE:SA:OCE87313742,1,"Gare de Feuquières-Broquiers",49.654339,1.830979,,1,,Europe/Paris,,STE, +STE:SA:OCE87313767,1,"Gare de Aumale",49.765126,1.756083,,1,,Europe/Paris,,STE, +STE:SA:OCE87313809,1,"Gare de Blangy-sur-Bresle",49.932369,1.625632,,1,,Europe/Paris,,STE, +STE:SA:OCE87313817,1,"Gare de Longroy-Gamaches",49.981947,1.552815,,1,,Europe/Paris,,STE, +STE:SA:OCE87313833,1,"Gare de Formerie",49.654153,1.722819,,1,,Europe/Paris,,STE, +STE:SA:OCE87313841,1,"Gare de Fouilloy",49.736236,1.825538,,1,,Europe/Paris,,STE, +STE:SA:OCE87316745,1,"Gare de Acheux-Franleu",50.082617,1.657279,,1,,Europe/Paris,,STE, +STE:SA:OCE87316752,1,"Gare de Feuquerolles",50.064885,1.605555,,1,,Europe/Paris,,STE, +STE:SA:OCE87317487,1,"Gare de Quesnoy-le-Montant",50.108964,1.702482,,1,,Europe/Paris,,STE, +STE:SA:OCE87322347,1,"Gare de Traou Nez",48.748509,-3.135312,,1,,Europe/Paris,,STE, +STE:SA:OCE87323675,1,"Gare de Montluçon-Rimard",46.335626,2.611261,,1,,Europe/Paris,,STE, +STE:SA:OCE87334490,1,"Gare de Cesson-Sévigné",48.112364,-1.602511,,1,,Europe/Paris,,STE, +STE:SA:OCE87337378,1,"Gare de Dives-sur-Mer-Port-Guil",49.289192,-0.104079,,1,,Europe/Paris,,STE, +STE:SA:OCE87342014,1,"Gare de Arras",50.286816,2.781126,,1,,Europe/Paris,,STE, +STE:SA:OCE87342030,1,"Gare de Miraumont",50.094941,2.734372,,1,,Europe/Paris,,STE, +STE:SA:OCE87342048,1,"Gare de Achiet",50.131685,2.78014,,1,,Europe/Paris,,STE, +STE:SA:OCE87345009,1,"Gare de Douai",50.371675,3.089961,,1,,Europe/Paris,,STE, +STE:SA:OCE87381269,1,"Gare de Sérifontaine",49.357202,1.764112,,1,,Europe/Paris,,STE, +STE:SA:OCE87381293,1,"Gare de Gournay-Ferrières",49.481555,1.738111,,1,,Europe/Paris,,STE, +STE:SA:OCE87387142,1,"Gare de La Bonneville-sur-Iton",48.988539,1.035821,,1,,Europe/Paris,,STE, +STE:SA:OCE87387175,1,"Gare de Romilly-la-Puthenaye",49.004845,0.85265,,1,,Europe/Paris,,STE, +STE:SA:OCE87391003,1,"Gare de Paris-Montparnasse 1-2",48.84063,2.319894,,1,,Europe/Paris,,STE, +STE:SA:OCE87393314,1,"Gare de Rambouillet",48.643788,1.831202,,1,,Europe/Paris,,STE, +STE:SA:OCE87394007,1,"Gare de Chartres",48.448203,1.481226,,1,,Europe/Paris,,STE, +STE:SA:OCE87394015,1,"Gare de Lucé",48.436127,1.452995,,1,,Europe/Paris,,STE, +STE:SA:OCE87394114,1,"Gare de Epernon",48.605155,1.681418,,1,,Europe/Paris,,STE, +STE:SA:OCE87394130,1,"Gare de Maintenon",48.585364,1.592455,,1,,Europe/Paris,,STE, +STE:SA:OCE87394148,1,"Gare de St-Piat",48.542441,1.590103,,1,,Europe/Paris,,STE, +STE:SA:OCE87394155,1,"Gare de Jouy",48.51019,1.557496,,1,,Europe/Paris,,STE, +STE:SA:OCE87394171,1,"Gare de La Villette-St-Prest",48.482743,1.52292,,1,,Europe/Paris,,STE, +STE:SA:OCE87394205,1,"Gare de Amilly-Ouerray",48.43845,1.389557,,1,,Europe/Paris,,STE, +STE:SA:OCE87394213,1,"Gare de St-Aubin-St-Luperce",48.447456,1.3337,,1,,Europe/Paris,,STE, +STE:SA:OCE87394221,1,"Gare de Courville-sur-Eure",48.451359,1.234934,,1,,Europe/Paris,,STE, +STE:SA:OCE87394247,1,"Gare de Pontgouin",48.477854,1.141446,,1,,Europe/Paris,,STE, +STE:SA:OCE87394254,1,"Gare de La Loupe",48.473845,1.010874,,1,,Europe/Paris,,STE, +STE:SA:OCE87394270,1,"Gare de Bretoncelles",48.43273,0.892351,,1,,Europe/Paris,,STE, +STE:SA:OCE87394288,1,"Gare de Condé-sur-Huisne",48.383272,0.848763,,1,,Europe/Paris,,STE, +STE:SA:OCE87394429,1,"Gare de Magny-Blandainville",48.334157,1.281173,,1,,Europe/Paris,,STE, +STE:SA:OCE87396028,1,"Gare de Neuville-sur-Sarthe",48.070597,0.199839,,1,,Europe/Paris,,STE, +STE:SA:OCE87396051,1,"Gare de Teillé (Sarthe)",48.181339,0.191501,,1,,Europe/Paris,,STE, +STE:SA:OCE87396077,1,"Gare de Vivoin-Beaumont",48.230137,0.144676,,1,,Europe/Paris,,STE, +STE:SA:OCE87396226,1,"Gare de Crissé",48.16796,-0.065616,,1,,Europe/Paris,,STE, +STE:SA:OCE87396259,1,"Gare de Rouessé-Vassé",48.1601,-0.199774,,1,,Europe/Paris,,STE, +STE:SA:OCE87396275,1,"Gare de Champagné",48.019751,0.335704,,1,,Europe/Paris,,STE, +STE:SA:OCE87396283,1,"Gare de St-Mars-la-Brière",48.02852,0.365826,,1,,Europe/Paris,,STE, +STE:SA:OCE87396291,1,"Gare de Montfort-le-Gesnois",48.040636,0.406323,,1,,Europe/Paris,,STE, +STE:SA:OCE87396317,1,"Gare de Sceaux-Boessé",48.122234,0.572271,,1,,Europe/Paris,,STE, +STE:SA:OCE87396333,1,"Gare de Le Theil-la-Rouge",48.267129,0.694274,,1,,Europe/Paris,,STE, +STE:SA:OCE87396358,1,"Gare de Voivres",47.930502,0.085258,,1,,Europe/Paris,,STE, +STE:SA:OCE87396366,1,"Gare de La Suze",47.892244,0.026558,,1,,Europe/Paris,,STE, +STE:SA:OCE87396374,1,"Gare de Noyen",47.874428,-0.098398,,1,,Europe/Paris,,STE, +STE:SA:OCE87396408,1,"Gare de Sablé-sur-Sarthe",47.841718,-0.342048,,1,,Europe/Paris,,STE, +STE:SA:OCE87396549,1,"Gare de Arnage",47.928565,0.189859,,1,,Europe/Paris,,STE, +STE:SA:OCE87396556,1,"Gare de Laigné-St-Gervais",47.874014,0.217134,,1,,Europe/Paris,,STE, +STE:SA:OCE87396572,1,"Gare de Aubigné-Racan",47.687026,0.265805,,1,,Europe/Paris,,STE, +STE:SA:OCE87396580,1,"Gare de Mayet",47.760122,0.266056,,1,,Europe/Paris,,STE, +STE:SA:OCE87396598,1,"Gare de Vaas",47.670705,0.316446,,1,,Europe/Paris,,STE, +STE:SA:OCE87411173,1,"Gare de Elbeuf-St-Aubin",49.302676,1.010197,,1,,Europe/Paris,,STE, +STE:SA:OCE87411181,1,"Gare de Tourville",49.324554,1.098568,,1,,Europe/Paris,,STE, +STE:SA:OCE87411215,1,"Gare de St-Etienne-du-Rouvray",49.377126,1.109422,,1,,Europe/Paris,,STE, +STE:SA:OCE87411223,1,"Gare de Sotteville",49.412883,1.102356,,1,,Europe/Paris,,STE, +STE:SA:OCE87411249,1,"Gare de Maromme",49.479854,1.050595,,1,,Europe/Paris,,STE, +STE:SA:OCE87411256,1,"Gare de Malaunay-le-Houlme",49.513297,1.03949,,1,,Europe/Paris,,STE, +STE:SA:OCE87411264,1,"Gare de Barentin",49.550124,0.953326,,1,,Europe/Paris,,STE, +STE:SA:OCE87411272,1,"Gare de Pavilly",49.564528,0.950574,,1,,Europe/Paris,,STE, +STE:SA:OCE87411280,1,"Gare de Motteville",49.636885,0.850149,,1,,Europe/Paris,,STE, +STE:SA:OCE87411413,1,"Gare de St-Martin-du-Vivier",49.470847,1.161736,,1,,Europe/Paris,,STE, +STE:SA:OCE87411439,1,"Gare de Morgny",49.523226,1.247811,,1,,Europe/Paris,,STE, +STE:SA:OCE87411447,1,"Gare de Longuerue-Vieux-Manoir",49.556827,1.276671,,1,,Europe/Paris,,STE, +STE:SA:OCE87411462,1,"Gare de Sommery",49.629443,1.43567,,1,,Europe/Paris,,STE, +STE:SA:OCE87411801,1,"Gare de Montville",49.551033,1.069749,,1,,Europe/Paris,,STE, +STE:SA:OCE87411819,1,"Gare de Clères",49.59908,1.106174,,1,,Europe/Paris,,STE, +STE:SA:OCE87413203,1,"Gare de Le Havre-Graville",49.499874,0.160697,,1,,Europe/Paris,,STE, +STE:SA:OCE87413302,1,"Gare de Harfleur",49.513582,0.199141,,1,,Europe/Paris,,STE, +STE:SA:OCE87413310,1,"Gare de St-Laurent-Gainneville",49.528036,0.25135,,1,,Europe/Paris,,STE, +STE:SA:OCE87413328,1,"Gare de Etainhus-St-Romain",49.560798,0.330553,,1,,Europe/Paris,,STE, +STE:SA:OCE87413336,1,"Gare de Virville-Manneville",49.583552,0.354297,,1,,Europe/Paris,,STE, +STE:SA:OCE87413351,1,"Gare de Bolbec-Nointot",49.591697,0.484912,,1,,Europe/Paris,,STE, +STE:SA:OCE87413377,1,"Gare de Foucart-Alvimare",49.608319,0.59692,,1,,Europe/Paris,,STE, +STE:SA:OCE87413708,1,"Gare de Harfleur (Halte)",49.506683,0.192171,,1,,Europe/Paris,,STE, +STE:SA:OCE87413716,1,"Gare de J.Monod-la-Demi-Lieue",49.526962,0.186048,,1,,Europe/Paris,,STE, +STE:SA:OCE87413724,1,"Gare de Montivilliers",49.54307,0.189471,,1,,Europe/Paris,,STE, +STE:SA:OCE87413732,1,"Gare de Epouville",49.563757,0.223771,,1,,Europe/Paris,,STE, +STE:SA:OCE87413740,1,"Gare de Rolleville",49.581857,0.215865,,1,,Europe/Paris,,STE, +STE:SA:OCE87415018,1,"Gare de Dieppe",49.921243,1.081128,,1,,Europe/Paris,,STE, +STE:SA:OCE87415125,1,"Gare de St-Aubin-sur-Scie",49.871589,1.066614,,1,,Europe/Paris,,STE, +STE:SA:OCE87415141,1,"Gare de Longueville-sur-Scie",49.791596,1.110547,,1,,Europe/Paris,,STE, +STE:SA:OCE87415158,1,"Gare de Auffay",49.716088,1.098417,,1,,Europe/Paris,,STE, +STE:SA:OCE87415166,1,"Gare de St-Victor",49.677006,1.109511,,1,,Europe/Paris,,STE, +STE:SA:OCE87415323,1,"Gare de Bourgthéroulde-T.h.",49.317501,0.839658,,1,,Europe/Paris,,STE, +STE:SA:OCE87415349,1,"Gare de Glos-Montfort",49.273611,0.681863,,1,,Europe/Paris,,STE, +STE:SA:OCE87415364,1,"Gare de Brionne (Eure)",49.196339,0.711567,,1,,Europe/Paris,,STE, +STE:SA:OCE87415604,1,"Gare de Vernon-Giverny",49.091286,1.478363,,1,,Europe/Paris,,STE, +STE:SA:OCE87415646,1,"Gare de St-Pierre-du-Vauvray",49.233861,1.224656,,1,,Europe/Paris,,STE, +STE:SA:OCE87415661,1,"Gare de Pont-de-l'Arche",49.317063,1.159675,,1,,Europe/Paris,,STE, +STE:SA:OCE87444042,1,"Gare de Bretteville-Norrey",49.20315,-0.512036,,1,,Europe/Paris,,STE, +STE:SA:OCE87444059,1,"Gare de Audrieu",49.216093,-0.596472,,1,,Europe/Paris,,STE, +STE:SA:OCE87444083,1,"Gare de Le Molay-Littry",49.24892,-0.883239,,1,,Europe/Paris,,STE, +STE:SA:OCE87444182,1,"Gare de Frénouville-Cagny",49.140423,-0.258443,,1,,Europe/Paris,,STE, +STE:SA:OCE87444190,1,"Gare de Moult-Argences",49.110975,-0.186407,,1,,Europe/Paris,,STE, +STE:SA:OCE87444216,1,"Gare de St-Pierre-sur-Dives",49.02264,-0.041506,,1,,Europe/Paris,,STE, +STE:SA:OCE87444232,1,"Gare de Couliboeuf",48.923581,-0.09849,,1,,Europe/Paris,,STE, +STE:SA:OCE87444323,1,"Gare de Le Grand-Jardin",49.150305,0.227203,,1,,Europe/Paris,,STE, +STE:SA:OCE87444380,1,"Gare de Blonville-Bénerville",49.33123,0.03535,,1,,Europe/Paris,,STE, +STE:SA:OCE87444398,1,"Gare de Villers-sur-Mer",49.315964,0.009913,,1,,Europe/Paris,,STE, +STE:SA:OCE87444406,1,"Gare de Houlgate",49.299998,-0.077709,,1,,Europe/Paris,,STE, +STE:SA:OCE87444414,1,"Gare de Dives-Cabourg",49.28236,-0.109868,,1,,Europe/Paris,,STE, +STE:SA:OCE87447144,1,"Gare de Carantilly",49.067787,-1.246182,,1,,Europe/Paris,,STE, +STE:SA:OCE87447185,1,"Gare de Pont-Hébert",49.162041,-1.127044,,1,,Europe/Paris,,STE, +STE:SA:OCE87463083,1,"Nantes-Pirmil",47.196725,-1.543036,,1,,Europe/Paris,,STE, +STE:SA:OCE87471003,1,"Gare de Rennes",48.103515,-1.672327,,1,,Europe/Paris,,STE, +STE:SA:OCE87471037,1,"Gare de Bruz",48.02852,-1.751994,,1,,Europe/Paris,,STE, +STE:SA:OCE87471045,1,"Gare de Betton",48.181749,-1.634129,,1,,Europe/Paris,,STE, +STE:SA:OCE87471052,1,"Gare de St-Jacques-de-la-Lande",48.067402,-1.713907,,1,,Europe/Paris,,STE, +STE:SA:OCE87471060,1,"Gare de L'Hermitage-Mordelles",48.123163,-1.819188,,1,,Europe/Paris,,STE, +STE:SA:OCE87471078,1,"Gare de Montfort-sur-Meu",48.138992,-1.948855,,1,,Europe/Paris,,STE, +STE:SA:OCE87471086,1,"Gare de Montauban-de-Bretagne",48.189893,-2.053103,,1,,Europe/Paris,,STE, +STE:SA:OCE87471094,1,"Gare de La Brohinière",48.213308,-2.110537,,1,,Europe/Paris,,STE, +STE:SA:OCE87471102,1,"Gare de Breteil",48.140375,-1.89764,,1,,Europe/Paris,,STE, +STE:SA:OCE87471144,1,"Gare de Laillé",47.970606,-1.749555,,1,,Europe/Paris,,STE, +STE:SA:OCE87471151,1,"Gare de Guichen-Bourg-des-Comp.",47.934178,-1.760683,,1,,Europe/Paris,,STE, +STE:SA:OCE87471169,1,"Gare de St-Senoux-Pléchatel",47.897838,-1.766166,,1,,Europe/Paris,,STE, +STE:SA:OCE87471177,1,"Gare de Pléchatel",47.871684,-1.776462,,1,,Europe/Paris,,STE, +STE:SA:OCE87471185,1,"Gare de Messac-Guipry",47.822214,-1.818668,,1,,Europe/Paris,,STE, +STE:SA:OCE87471227,1,"Gare de Massérac",47.674596,-1.914426,,1,,Europe/Paris,,STE, +STE:SA:OCE87471300,1,"Gare de Redon",47.651763,-2.087877,,1,,Europe/Paris,,STE, +STE:SA:OCE87471318,1,"Gare de St-Armel",48.014277,-1.594801,,1,,Europe/Paris,,STE, +STE:SA:OCE87471326,1,"Gare de Corps-Nuds",47.985608,-1.575469,,1,,Europe/Paris,,STE, +STE:SA:OCE87471391,1,"Gare de Pontchaillou",48.118326,-1.691797,,1,,Europe/Paris,,STE, +STE:SA:OCE87471458,1,"Gare de Chevaigne",48.208895,-1.631158,,1,,Europe/Paris,,STE, +STE:SA:OCE87471508,1,"Gare de Vitré",48.12242,-1.211966,,1,,Europe/Paris,,STE, +STE:SA:OCE87471516,1,"Gare de Les Lacs",48.109026,-1.321814,,1,,Europe/Paris,,STE, +STE:SA:OCE87471524,1,"Gare de Châteaubourg",48.106148,-1.405296,,1,,Europe/Paris,,STE, +STE:SA:OCE87471532,1,"Gare de Servon",48.112056,-1.465967,,1,,Europe/Paris,,STE, +STE:SA:OCE87471540,1,"Gare de Noyal-Acigné",48.118724,-1.528552,,1,,Europe/Paris,,STE, +STE:SA:OCE87473058,1,"Gare de Quédillac",48.248539,-2.145631,,1,,Europe/Paris,,STE, +STE:SA:OCE87473066,1,"Gare de Caulnes",48.284354,-2.155806,,1,,Europe/Paris,,STE, +STE:SA:OCE87473074,1,"Gare de Broons",48.333357,-2.236432,,1,,Europe/Paris,,STE, +STE:SA:OCE87473082,1,"Gare de Plenée-Jugon",48.376543,-2.354806,,1,,Europe/Paris,,STE, +STE:SA:OCE87473090,1,"Gare de Plestan",48.425631,-2.442669,,1,,Europe/Paris,,STE, +STE:SA:OCE87473124,1,"Gare de La Méaugon",48.499975,-2.845023,,1,,Europe/Paris,,STE, +STE:SA:OCE87473132,1,"Gare de Plouvara-Plerneuf",48.508553,-2.892234,,1,,Europe/Paris,,STE, +STE:SA:OCE87473140,1,"Gare de Chatelaudren-Plouagat",48.533189,-2.974163,,1,,Europe/Paris,,STE, +STE:SA:OCE87473165,1,"Gare de Belle-Isle-Bégard",48.593342,-3.323103,,1,,Europe/Paris,,STE, +STE:SA:OCE87473181,1,"Gare de Plouaret-Trégor",48.606189,-3.46681,,1,,Europe/Paris,,STE, +STE:SA:OCE87473199,1,"Gare de Plounérin",48.581474,-3.56838,,1,,Europe/Paris,,STE, +STE:SA:OCE87473223,1,"Gare de Lannion",48.726952,-3.460669,,1,,Europe/Paris,,STE, +STE:SA:OCE87473512,1,"Gare de Mousteru",48.507636,-3.24305,,1,,Europe/Paris,,STE, +STE:SA:OCE87473520,1,"Gare de Pont-Melvez",48.470073,-3.311587,,1,,Europe/Paris,,STE, +STE:SA:OCE87473538,1,"Gare de Plougonver",48.458123,-3.37091,,1,,Europe/Paris,,STE, +STE:SA:OCE87473546,1,"Gare de Callac",48.40689,-3.418668,,1,,Europe/Paris,,STE, +STE:SA:OCE87473553,1,"Gare de Le Pénity",48.364176,-3.476685,,1,,Europe/Paris,,STE, +STE:SA:OCE87473561,1,"Gare de Carnoët-Locarn",48.340295,-3.490717,,1,,Europe/Paris,,STE, +STE:SA:OCE87473579,1,"Gare de Coat-Guégan",48.480433,-3.273719,,1,,Europe/Paris,,STE, +STE:SA:OCE87473587,1,"Gare de Les Mais",48.426354,-3.38289,,1,,Europe/Paris,,STE, +STE:SA:OCE87473801,1,"Gare de Gourland",48.559919,-3.166107,,1,,Europe/Paris,,STE, +STE:SA:OCE87473819,1,"Gare de Trégonneau-Squiffiec",48.624465,-3.174104,,1,,Europe/Paris,,STE, +STE:SA:OCE87473827,1,"Gare de Brélidy-Plouec",48.66911,-3.196239,,1,,Europe/Paris,,STE, +STE:SA:OCE87473835,1,"Gare de Pontrieux (Halte)",48.698004,-3.164374,,1,,Europe/Paris,,STE, +STE:SA:OCE87473843,1,"Gare de Pontrieux",48.705577,-3.156709,,1,,Europe/Paris,,STE, +STE:SA:OCE87473850,1,"Gare de Lancerf",48.761773,-3.118068,,1,,Europe/Paris,,STE, +STE:SA:OCE87473868,1,"Gare de Paimpol",48.776705,-3.046355,,1,,Europe/Paris,,STE, +STE:SA:OCE87473876,1,"Gare de Frynaudour",48.728158,-3.128618,,1,,Europe/Paris,,STE, +STE:SA:OCE87474189,1,"Gare de Bannalec",47.926507,-3.706728,,1,,Europe/Paris,,STE, +STE:SA:OCE87474213,1,"Gare de Kerhuon",48.409591,-4.387987,,1,,Europe/Paris,,STE, +STE:SA:OCE87474221,1,"Gare de La Forest",48.426187,-4.307496,,1,,Europe/Paris,,STE, +STE:SA:OCE87474262,1,"Gare de La Roche (Maurice)",48.47398,-4.205001,,1,,Europe/Paris,,STE, +STE:SA:OCE87474270,1,"Gare de Landivisiau",48.495611,-4.082704,,1,,Europe/Paris,,STE, +STE:SA:OCE87474296,1,"Gare de Guimiliau",48.484987,-3.998917,,1,,Europe/Paris,,STE, +STE:SA:OCE87474312,1,"Gare de St-Thégonnec",48.494189,-3.948119,,1,,Europe/Paris,,STE, +STE:SA:OCE87474320,1,"Gare de Pleyber-Christ",48.507585,-3.882852,,1,,Europe/Paris,,STE, +STE:SA:OCE87474411,1,"Gare de Plouigneau",48.564523,-3.710343,,1,,Europe/Paris,,STE, +STE:SA:OCE87476200,1,"Gare de Auray",47.680189,-2.999999,,1,,Europe/Paris,,STE, +STE:SA:OCE87476226,1,"Gare de Landaul-Mendon",47.735853,-3.086205,,1,,Europe/Paris,,STE, +STE:SA:OCE87476234,1,"Gare de Landevant",47.759474,-3.125688,,1,,Europe/Paris,,STE, +STE:SA:OCE87476242,1,"Gare de Branderion",47.782315,-3.19509,,1,,Europe/Paris,,STE, +STE:SA:OCE87476259,1,"Gare de Hennebont",47.79893,-3.285657,,1,,Europe/Paris,,STE, +STE:SA:OCE87476309,1,"Gare de Gestel",47.803103,-3.443365,,1,,Europe/Paris,,STE, +STE:SA:OCE87476606,1,"Gare de Vannes",47.665324,-2.752524,,1,,Europe/Paris,,STE, +STE:SA:OCE87476648,1,"Gare de Ste-Anne (Morbihan)",47.678459,-2.960394,,1,,Europe/Paris,,STE, +STE:SA:OCE87476754,1,"Gare de Sévérac",47.550054,-2.072783,,1,,Europe/Paris,,STE, +STE:SA:OCE87478016,1,"Gare de St-Germain-sur-Ille",48.238917,-1.653591,,1,,Europe/Paris,,STE, +STE:SA:OCE87478024,1,"Gare de St-Médard-sur-Ille",48.273515,-1.666582,,1,,Europe/Paris,,STE, +STE:SA:OCE87478032,1,"Gare de Montreuil-sur-Ille",48.30632,-1.674271,,1,,Europe/Paris,,STE, +STE:SA:OCE87478040,1,"Gare de Dingé",48.350128,-1.68584,,1,,Europe/Paris,,STE, +STE:SA:OCE87478057,1,"Gare de Combourg",48.415974,-1.727542,,1,,Europe/Paris,,STE, +STE:SA:OCE87478065,1,"Gare de Bonnemain",48.477088,-1.765864,,1,,Europe/Paris,,STE, +STE:SA:OCE87478081,1,"Gare de La Fresnais",48.593623,-1.843152,,1,,Europe/Paris,,STE, +STE:SA:OCE87478099,1,"Gare de La Gouesnière-Cancale",48.614362,-1.905965,,1,,Europe/Paris,,STE, +STE:SA:OCE87478107,1,"Gare de St-Malo",48.646652,-2.00462,,1,,Europe/Paris,,STE, +STE:SA:OCE87478131,1,"Gare de Miniac",48.531528,-1.91503,,1,,Europe/Paris,,STE, +STE:SA:OCE87478149,1,"Gare de Pleudihen",48.499297,-1.96181,,1,,Europe/Paris,,STE, +STE:SA:OCE87478156,1,"Gare de La Hisse",48.49607,-2.003037,,1,,Europe/Paris,,STE, +STE:SA:OCE87478511,1,"Gare de Louverné",48.109093,-0.713775,,1,,Europe/Paris,,STE, +STE:SA:OCE87478545,1,"Gare de Neau",48.157253,-0.477164,,1,,Europe/Paris,,STE, +STE:SA:OCE87478560,1,"Gare de Voutré",48.134169,-0.292323,,1,,Europe/Paris,,STE, +STE:SA:OCE87478743,1,"Gare de Le Genest",48.096774,-0.885341,,1,,Europe/Paris,,STE, +STE:SA:OCE87478750,1,"Gare de Port-Brillet",48.110739,-0.973978,,1,,Europe/Paris,,STE, +STE:SA:OCE87478768,1,"Gare de St-Pierre-la-Cour",48.113655,-1.025542,,1,,Europe/Paris,,STE, +STE:SA:OCE87481002,1,"Gare de Nantes",47.217505,-1.541925,,1,,Europe/Paris,,STE, +STE:SA:OCE87481036,1,"Gare de Rezé-Pont-Rousseau",47.193323,-1.549369,,1,,Europe/Paris,,STE, +STE:SA:OCE87481143,1,"Gare de Thouaré",47.265114,-1.440938,,1,,Europe/Paris,,STE, +STE:SA:OCE87481150,1,"Gare de Mauves-sur-Loire",47.293,-1.389301,,1,,Europe/Paris,,STE, +STE:SA:OCE87481168,1,"Gare de Le Cellier",47.31316,-1.350957,,1,,Europe/Paris,,STE, +STE:SA:OCE87481184,1,"Gare de Oudon",47.343339,-1.292019,,1,,Europe/Paris,,STE, +STE:SA:OCE87481192,1,"Gare de Ancenis",47.369458,-1.177608,,1,,Europe/Paris,,STE, +STE:SA:OCE87481200,1,"Gare de Bouaye",47.138165,-1.681054,,1,,Europe/Paris,,STE, +STE:SA:OCE87481218,1,"Gare de Port-St-Père-St-M.",47.116495,-1.739351,,1,,Europe/Paris,,STE, +STE:SA:OCE87481226,1,"Gare de Ste-Pazanne",47.10543,-1.813739,,1,,Europe/Paris,,STE, +STE:SA:OCE87481234,1,"Gare de St-Hilaire-de-Chaléons",47.105743,-1.865168,,1,,Europe/Paris,,STE, +STE:SA:OCE87481242,1,"Gare de Bourgneuf-en-Retz",47.046854,-1.955271,,1,,Europe/Paris,,STE, +STE:SA:OCE87481259,1,"Gare de Les Moutiers-en-Retz",47.061898,-2.001131,,1,,Europe/Paris,,STE, +STE:SA:OCE87481267,1,"Gare de La Bernerie-en-Retz",47.083188,-2.034193,,1,,Europe/Paris,,STE, +STE:SA:OCE87481283,1,"Gare de Pornic",47.114495,-2.097789,,1,,Europe/Paris,,STE, +STE:SA:OCE87481440,1,"Gare de Clisson",47.085986,-1.286356,,1,,Europe/Paris,,STE, +STE:SA:OCE87481457,1,"Gare de Cugand",47.058314,-1.253309,,1,,Europe/Paris,,STE, +STE:SA:OCE87481465,1,"Gare de Montaigu (Vendée)",46.983734,-1.316257,,1,,Europe/Paris,,STE, +STE:SA:OCE87481648,1,"Gare de Châteaubriant",47.716996,-1.371397,,1,,Europe/Paris,,STE, +STE:SA:OCE87481804,1,"Gare de Couéron",47.221924,-1.723519,,1,,Europe/Paris,,STE, +STE:SA:OCE87481838,1,"Gare de Savenay",47.358554,-1.951034,,1,,Europe/Paris,,STE, +STE:SA:OCE87484048,1,"Gare de Angers-Maitre-Ecole",47.467005,-0.532493,,1,,Europe/Paris,,STE, +STE:SA:OCE87484139,1,"Gare de Le Vieux-Briollay",47.573623,-0.483078,,1,,Europe/Paris,,STE, +STE:SA:OCE87484147,1,"Gare de Tiercé",47.617532,-0.469436,,1,,Europe/Paris,,STE, +STE:SA:OCE87484154,1,"Gare de Etriché-Chateauneuf",47.656717,-0.460852,,1,,Europe/Paris,,STE, +STE:SA:OCE87484170,1,"Gare de Morannes",47.73902,-0.418196,,1,,Europe/Paris,,STE, +STE:SA:OCE87484329,1,"Gare de Savennières-Béhuard",47.381571,-0.654542,,1,,Europe/Paris,,STE, +STE:SA:OCE87484352,1,"Gare de Champtocé-sur-Loire",47.410322,-0.868067,,1,,Europe/Paris,,STE, +STE:SA:OCE87484360,1,"Gare de Ingrandes-sur-Loire",47.405932,-0.920793,,1,,Europe/Paris,,STE, +STE:SA:OCE87484386,1,"Gare de Varades-St-Florent Le V",47.374543,-1.019803,,1,,Europe/Paris,,STE, +STE:SA:OCE87485227,1,"Gare de Surgères",46.113416,-0.762133,,1,,Europe/Paris,,STE, +STE:SA:OCE87485250,1,"Gare de Mauzé",46.199688,-0.673597,,1,,Europe/Paris,,STE, +STE:SA:OCE87485300,1,"Gare de Niort",46.319345,-0.454391,,1,,Europe/Paris,,STE, +STE:SA:OCE87485474,1,"Gare de La Crèche",46.360423,-0.296278,,1,,Europe/Paris,,STE, +STE:SA:OCE87485490,1,"Gare de St-Maixent (Deux-Sèvr.)",46.406308,-0.201306,,1,,Europe/Paris,,STE, +STE:SA:OCE87485508,1,"Gare de La Mothe-St-Héray",46.380923,-0.129873,,1,,Europe/Paris,,STE, +STE:SA:OCE87485524,1,"Gare de Pamproux",46.399808,-0.051976,,1,,Europe/Paris,,STE, +STE:SA:OCE87485540,1,"Gare de Lusignan",46.435002,0.115756,,1,,Europe/Paris,,STE, +STE:SA:OCE87486019,1,"Gare de La Roche-sur-Yon",46.672025,-1.43568,,1,,Europe/Paris,,STE, +STE:SA:OCE87486126,1,"Gare de L'Herbergement-les-Br.",46.906963,-1.371326,,1,,Europe/Paris,,STE, +STE:SA:OCE87486142,1,"Gare de Belleville-sur-Vie",46.788327,-1.434478,,1,,Europe/Paris,,STE, +STE:SA:OCE87486308,1,"Gare de La Chaize-le-Vicomte",46.676832,-1.283399,,1,,Europe/Paris,,STE, +STE:SA:OCE87486316,1,"Gare de Fougeré",46.665367,-1.231964,,1,,Europe/Paris,,STE, +STE:SA:OCE87486324,1,"Gare de Bournezeau",46.651484,-1.178474,,1,,Europe/Paris,,STE, +STE:SA:OCE87486431,1,"Gare de Olonne-sur-Mer",46.548608,-1.767379,,1,,Europe/Paris,,STE, +STE:SA:OCE87487314,1,"Gare de Pouzauges",46.752408,-0.814623,,1,,Europe/Paris,,STE, +STE:SA:OCE87487843,1,"Gare de La Bohalle",47.434177,-0.400197,,1,,Europe/Paris,,STE, +STE:SA:OCE87487876,1,"Gare de Les Rosiers-sur-Loire",47.361852,-0.219611,,1,,Europe/Paris,,STE, +STE:SA:OCE87543074,1,"Gare de Toury",48.187331,1.936611,,1,,Europe/Paris,,STE, +STE:SA:OCE87543082,1,"Gare de Boisseaux",48.256469,1.972949,,1,,Europe/Paris,,STE, +STE:SA:OCE87543090,1,"Gare de Angerville",48.311334,2.00369,,1,,Europe/Paris,,STE, +STE:SA:OCE87543116,1,"Gare de St-Cyr-en-Val-La-Source",47.819197,1.947569,,1,,Europe/Paris,,STE, +STE:SA:OCE87543124,1,"Gare de La Ferté-St-Aubin",47.720968,1.932337,,1,,Europe/Paris,,STE, +STE:SA:OCE87543199,1,"Gare de Theillay",47.314356,2.044474,,1,,Europe/Paris,,STE, +STE:SA:OCE87543371,1,"Gare de La Chapelle-St-Mesmin",47.892865,1.826933,,1,,Europe/Paris,,STE, +STE:SA:OCE87545111,1,"Gare de Monnerville",48.348329,2.032238,,1,,Europe/Paris,,STE, +STE:SA:OCE87545129,1,"Gare de Guillerval",48.374615,2.060221,,1,,Europe/Paris,,STE, +STE:SA:OCE87545137,1,"Gare de Etampes",48.43658,2.159494,,1,,Europe/Paris,,STE, +STE:SA:OCE87571463,1,"Gare de Chambourg",47.181644,0.965421,,1,,Europe/Paris,,STE, +STE:SA:OCE87571513,1,"Gare de La Membrolle-sur-Chois.",47.431824,0.641308,,1,,Europe/Paris,,STE, +STE:SA:OCE87571802,1,"Gare de La Chapelle-sur-Loire",47.251299,0.219119,,1,,Europe/Paris,,STE, +STE:SA:OCE87571810,1,"Gare de St-Patrice",47.285701,0.309878,,1,,Europe/Paris,,STE, +STE:SA:OCE87571844,1,"Gare de Savonnières",47.360481,0.543798,,1,,Europe/Paris,,STE, +STE:SA:OCE87571851,1,"Gare de St-Genouph",47.370982,0.596887,,1,,Europe/Paris,,STE, +STE:SA:OCE87574111,1,"Gare de Chaingy-Fourneaux-Plage",47.877443,1.783796,,1,,Europe/Paris,,STE, +STE:SA:OCE87574129,1,"Gare de St-Ay",47.863059,1.75,,1,,Europe/Paris,,STE, +STE:SA:OCE87574137,1,"Gare de Meung-sur-Loire",47.829899,1.691935,,1,,Europe/Paris,,STE, +STE:SA:OCE87574152,1,"Gare de Baule",47.811942,1.668615,,1,,Europe/Paris,,STE, +STE:SA:OCE87574160,1,"Gare de Beaugency",47.778349,1.62594,,1,,Europe/Paris,,STE, +STE:SA:OCE87574194,1,"Gare de Mer (Loir-et-Cher)",47.705882,1.506358,,1,,Europe/Paris,,STE, +STE:SA:OCE87574236,1,"Gare de Suèvres",47.680561,1.45477,,1,,Europe/Paris,,STE, +STE:SA:OCE87574244,1,"Gare de Ménars",47.644901,1.405769,,1,,Europe/Paris,,STE, +STE:SA:OCE87574251,1,"Gare de La Chaussée-St-Victor",47.612531,1.353673,,1,,Europe/Paris,,STE, +STE:SA:OCE87574319,1,"Gare de Onzain-Chaumont-/-L",47.491942,1.185736,,1,,Europe/Paris,,STE, +STE:SA:OCE87574368,1,"Gare de Noizay",47.409842,0.896113,,1,,Europe/Paris,,STE, +STE:SA:OCE87574434,1,"Gare de Veretz-Montlouis",47.371332,0.819784,,1,,Europe/Paris,,STE, +STE:SA:OCE87574442,1,"Gare de Azay-sur-Cher",47.365095,0.859978,,1,,Europe/Paris,,STE, +STE:SA:OCE87574459,1,"Gare de St-Martin-le-Beau",47.354949,0.905961,,1,,Europe/Paris,,STE, +STE:SA:OCE87574475,1,"Gare de Bléré-la-Croix",47.337723,0.987737,,1,,Europe/Paris,,STE, +STE:SA:OCE87574491,1,"Gare de Chenonceaux",47.330651,1.065394,,1,,Europe/Paris,,STE, +STE:SA:OCE87574681,1,"Gare de Monnaie",47.498675,0.792897,,1,,Europe/Paris,,STE, +STE:SA:OCE87574699,1,"Gare de Notre-Dame-d'Oé",47.459721,0.70825,,1,,Europe/Paris,,STE, +STE:SA:OCE87574848,1,"Gare de Chissay-en-Touraine",47.334934,1.133578,,1,,Europe/Paris,,STE, +STE:SA:OCE87574855,1,"Gare de Montrichard",47.343576,1.17182,,1,,Europe/Paris,,STE, +STE:SA:OCE87575035,1,"Gare de Monts (Indre-et-Loire)",47.281999,0.654734,,1,,Europe/Paris,,STE, +STE:SA:OCE87575043,1,"Gare de Villeperdue",47.202059,0.633534,,1,,Europe/Paris,,STE, +STE:SA:OCE87575050,1,"Gare de Ste-Maure-Noyant",47.111113,0.577006,,1,,Europe/Paris,,STE, +STE:SA:OCE87575068,1,"Gare de Maillé",47.052959,0.583006,,1,,Europe/Paris,,STE, +STE:SA:OCE87575076,1,"Gare de Port-de-Piles",47.010147,0.598559,,1,,Europe/Paris,,STE, +STE:SA:OCE87575118,1,"Gare de Les Ormes-sur-Vienne",46.97078,0.608165,,1,,Europe/Paris,,STE, +STE:SA:OCE87575126,1,"Gare de Dangé",46.93781,0.608778,,1,,Europe/Paris,,STE, +STE:SA:OCE87575134,1,"Gare de Ingrandes-sur-Vienne",46.874825,0.569515,,1,,Europe/Paris,,STE, +STE:SA:OCE87575142,1,"Gare de Chatellerault",46.818565,0.549218,,1,,Europe/Paris,,STE, +STE:SA:OCE87575167,1,"Gare de Nerpuy",46.783509,0.525449,,1,,Europe/Paris,,STE, +STE:SA:OCE87575175,1,"Gare de Naintré-les-Barres",46.759517,0.496071,,1,,Europe/Paris,,STE, +STE:SA:OCE87575183,1,"Gare de La Tricherie",46.728667,0.440467,,1,,Europe/Paris,,STE, +STE:SA:OCE87575191,1,"Gare de Dissay (Vienne)",46.703732,0.421131,,1,,Europe/Paris,,STE, +STE:SA:OCE87575217,1,"Gare de Jaunay-Clan",46.682305,0.38189,,1,,Europe/Paris,,STE, +STE:SA:OCE87575225,1,"Gare de Chasseneuil (Vienne)",46.651794,0.372811,,1,,Europe/Paris,,STE, +STE:SA:OCE87576090,1,"Gare de Vierzon-Forges",47.210349,2.099327,,1,,Europe/Paris,,STE, +STE:SA:OCE87576108,1,"Gare de Foëcy",47.17599,2.162264,,1,,Europe/Paris,,STE, +STE:SA:OCE87576116,1,"Gare de Mehun-sur-Yèvre",47.139572,2.207314,,1,,Europe/Paris,,STE, +STE:SA:OCE87576132,1,"Gare de Marmagne",47.100077,2.282647,,1,,Europe/Paris,,STE, +STE:SA:OCE87576348,1,"Gare de Urçay",46.629334,2.58668,,1,,Europe/Paris,,STE, +STE:SA:OCE87592048,1,"Gare de Les Bardys",45.904628,1.377447,,1,,Europe/Paris,,STE, +STE:SA:OCE87592311,1,"Gare de Ambazac",45.952901,1.406502,,1,,Europe/Paris,,STE, +STE:SA:OCE87592337,1,"Gare de La Jonchère",45.994286,1.479859,,1,,Europe/Paris,,STE, +STE:SA:OCE87592345,1,"Gare de St-Sulpice-Laurière",46.046867,1.476283,,1,,Europe/Paris,,STE, +STE:SA:OCE87592352,1,"Gare de Bersac",46.083843,1.432048,,1,,Europe/Paris,,STE, +STE:SA:OCE87592360,1,"Gare de Fromental",46.171357,1.432475,,1,,Europe/Paris,,STE, +STE:SA:OCE87592493,1,"Gare de St-Sébastien",46.386035,1.54652,,1,,Europe/Paris,,STE, +STE:SA:OCE87597096,1,"Gare de Luant",46.73505,1.589621,,1,,Europe/Paris,,STE, +STE:SA:OCE87597104,1,"Gare de Lothiers",46.694718,1.562837,,1,,Europe/Paris,,STE, +STE:SA:OCE87597112,1,"Gare de Chabenet",46.626439,1.507853,,1,,Europe/Paris,,STE, +STE:SA:OCE87641191,1,"Gare de La Ville-Gozet",46.350058,2.591728,,1,,Europe/Paris,,STE, +STE:SA:OCE87641373,1,"Gare de Les Trillers",46.414413,2.599717,,1,,Europe/Paris,,STE, +STE:SA:OCE87641415,1,"Gare de Commentry",46.295196,2.740011,,1,,Europe/Paris,,STE, +STE:SA:OCE87644062,1,"Buzancais-Sapin-Vert",46.888365,1.433284,,1,,Europe/Paris,,STE, +STE:SA:OCE87644088,1,"Chateau-Renault-ZI",47.602962,0.922307,,1,,Europe/Paris,,STE, +STE:SA:OCE87644260,1,"St-Genou-ZI",46.905197,1.354355,,1,,Europe/Paris,,STE, +STE:SA:OCE87694000,1,"Gare de Le Creusot",46.807829,4.430429,,1,,Europe/Paris,,STE, +STE:SA:OCE87694141,1,"Gare de Etang",46.867893,4.183846,,1,,Europe/Paris,,STE, +STE:SA:OCE87694307,1,"Gare de Montchanin",46.759158,4.481462,,1,,Europe/Paris,,STE, +STE:SA:OCE87694687,1,"Gare de Paray-le-Monial",46.447256,4.113628,,1,,Europe/Paris,,STE, +STE:SA:OCE87694695,1,"Gare de Digoin",46.485196,3.987637,,1,,Europe/Paris,,STE, +STE:SA:OCE87694737,1,"Gare de La Clayette-Baudemont",46.288162,4.298451,,1,,Europe/Paris,,STE, +STE:SA:OCE87694778,1,"Gare de Chauffailles",46.207404,4.345377,,1,,Europe/Paris,,STE, +STE:SA:OCE87694869,1,"Gare de Gilly-sur-Loire",46.536983,3.781787,,1,,Europe/Paris,,STE, +STE:SA:OCE87696427,1,"Gare de Dompierre-Sept-Fons",46.526267,3.674899,,1,,Europe/Paris,,STE, +STE:SA:OCE87696450,1,"Gare de Imphy",46.9334,3.259751,,1,,Europe/Paris,,STE, +STE:SA:OCE87696484,1,"Gare de Decize",46.837332,3.467296,,1,,Europe/Paris,,STE, +STE:SA:OCE87696492,1,"Gare de Cercy-la-Tour",46.857926,3.645024,,1,,Europe/Paris,,STE, +STE:SA:OCE87696534,1,"Gare de Luzy(Nièvre)",46.794044,3.969226,,1,,Europe/Paris,,STE, +STE:SA:OCE87713040,1,"Gare de Dijon-Ville",47.323404,5.02728,,1,,Europe/Paris,,STE, +STE:SA:OCE87713545,1,"Gare de Beaune",47.023041,4.848723,,1,,Europe/Paris,,STE, +STE:SA:OCE87721787,1,"Gare de Bois-d'Oingt-Légny",45.906588,4.57558,,1,,Europe/Paris,,STE, +STE:SA:OCE87721860,1,"Gare de Lamure-sur-Azergues",46.061095,4.492123,,1,,Europe/Paris,,STE, +STT:SA:OCE87208553,1,"Gare de Casino-Lacroix-Laval",45.787828,4.730892,,1,,Europe/Paris,,STT, +STT:SA:OCE87471318,1,"Gare de St-Armel",48.014277,-1.594801,,1,,Europe/Paris,,STT, +STT:SA:OCE87481002,1,"Gare de Nantes",47.217505,-1.541925,,1,,Europe/Paris,,STT, +STT:SA:OCE87481564,1,"Gare de La-Chapelle-Centre",47.297758,-1.547924,,1,,Europe/Paris,,STT, +STT:SA:OCE87481598,1,"Gare de Nort-sur-Erdre",47.441978,-1.503271,,1,,Europe/Paris,,STT, +STT:SA:OCE87481614,1,"Gare de Abbaretz",47.55523,-1.524196,,1,,Europe/Paris,,STT, +STT:SA:OCE87481622,1,"Gare de Issé",47.627038,-1.450334,,1,,Europe/Paris,,STT, +STT:SA:OCE87481648,1,"Gare de Châteaubriant",47.716996,-1.371397,,1,,Europe/Paris,,STT, +STT:SA:OCE87566919,1,"Gare de Lentilly-Charpenay",45.816462,4.681294,,1,,Europe/Paris,,STT, +STT:SA:OCE87590331,1,"Gare de Haluchère-Batignolles",47.249112,-1.522499,,1,,Europe/Paris,,STT, +STT:SA:OCE87590349,1,"Gare de Babinière",47.259109,-1.545327,,1,,Europe/Paris,,STT, +STT:SA:OCE87590356,1,"Gare de Erdre-Active",47.283069,-1.544686,,1,,Europe/Paris,,STT, +STT:SA:OCE87590364,1,"Gare de La-Chapelle-Aulnay",47.308441,-1.541167,,1,,Europe/Paris,,STT, +STT:SA:OCE87590372,1,"Gare de Châteaubriant-TT",47.717091,-1.37155,,1,,Europe/Paris,,STT, +STT:SA:OCE87590828,1,"Gare de Sucé-Sur-Erdre",47.342958,-1.530279,,1,,Europe/Paris,,STT, +STT:SA:OCE87698332,1,"Lyon-St-Paul-Quai-Bondy",45.766488,4.828105,,1,,Europe/Paris,,STT, +STT:SA:OCE87698639,1,"Roanne-Gare-Routière",46.041211,4.060763,,1,,Europe/Paris,,STT, +STT:SA:OCE87721035,1,"Gare de Amplepuis",45.971001,4.326723,,1,,Europe/Paris,,STT, +STT:SA:OCE87721043,1,"Gare de St-Victor-Thizy",46.002585,4.281147,,1,,Europe/Paris,,STT, +STT:SA:OCE87721050,1,"Gare de Régny",45.987729,4.215111,,1,,Europe/Paris,,STT, +STT:SA:OCE87721159,1,"Gare de Lyon-St-Paul",45.766082,4.826904,,1,,Europe/Paris,,STT, +STT:SA:OCE87721175,1,"Gare de Lyon-Gorge-de-Loup",45.766077,4.804731,,1,,Europe/Paris,,STT, +STT:SA:OCE87721423,1,"Gare de Lozanne",45.854135,4.68146,,1,,Europe/Paris,,STT, +STT:SA:OCE87721431,1,"Gare de L'Arbresle",45.833249,4.618236,,1,,Europe/Paris,,STT, +STT:SA:OCE87721449,1,"Gare de Dardilly-Le-Jubin",45.813655,4.758482,,1,,Europe/Paris,,STT, +STT:SA:OCE87721456,1,"Gare de St-Romain-de-Popey",45.861532,4.542259,,1,,Europe/Paris,,STT, +STT:SA:OCE87721464,1,"Gare de Pontcharra-St-Forgeux",45.871509,4.492797,,1,,Europe/Paris,,STT, +STT:SA:OCE87721472,1,"Gare de Tarare",45.889788,4.439075,,1,,Europe/Paris,,STT, +STT:SA:OCE87721480,1,"Gare de Dardilly-Les-Mouilles",45.801183,4.756221,,1,,Europe/Paris,,STT, +STT:SA:OCE87721506,1,"Gare de Ecully-la-Demi-Lune",45.76571,4.77952,,1,,Europe/Paris,,STT, +STT:SA:OCE87721514,1,"Gare de Tassin",45.761528,4.758592,,1,,Europe/Paris,,STT, +STT:SA:OCE87721522,1,"Gare de Le Méridien",45.768833,4.748303,,1,,Europe/Paris,,STT, +STT:SA:OCE87721530,1,"Gare de Charbonnières-les-Bains",45.78216,4.735855,,1,,Europe/Paris,,STT, +STT:SA:OCE87721548,1,"Gare de La Tour-de-Salvagny",45.800077,4.716151,,1,,Europe/Paris,,STT, +STT:SA:OCE87721555,1,"Gare de Lentilly",45.821682,4.667021,,1,,Europe/Paris,,STT, +STT:SA:OCE87721563,1,"Gare de Fleurieux-sur-Arbresle",45.844749,4.660569,,1,,Europe/Paris,,STT, +STT:SA:OCE87721605,1,"Gare de Sain-Bel",45.811064,4.601252,,1,,Europe/Paris,,STT, +STT:SA:OCE87721704,1,"Gare de Les Flachères",45.777326,4.753923,,1,,Europe/Paris,,STT, +STT:SA:OCE87721738,1,"Gare de Dommartin-Lissieu",45.847855,4.732195,,1,,Europe/Paris,,STT, +STT:SA:OCE87721746,1,"Gare de Civrieux-d'Azergues",45.859195,4.718249,,1,,Europe/Paris,,STT, +STT:SA:OCE87726828,1,"Gare de Le Coteau",46.023935,4.086301,,1,,Europe/Paris,,STT, +TRN:SA:DUA8716478,1,"STADE DE FRANCE SAINT-DENIS",48.917795,2.351937,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8727101,1,"SAINT-DENIS",48.935038,2.34646,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8727103,1,"GARE DE PARIS NORD",48.88034,2.356399,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8727116,1,"PIERREFITTE STAINS",48.963176,2.370633,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8727613,1,"PONTOISE",49.04681,2.094921,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8727619,1,"GARGES SARCELLES",48.976931,2.390746,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8727622,1,"VILLIERS LE BEL GONESSE ARNOUVILLE",48.994148,2.416817,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8727624,1,"GOUSSAINVILLE",49.02383,2.462604,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8738107,1,"BOIS COLOMBES",48.91462,2.270839,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8738108,1,"COLOMBES",48.923773,2.258756,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8738109,1,"LE STADE",48.930851,2.260779,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8738113,1,"ASNIERES SUR SEINE",48.906287,2.284263,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8738114,1,"OSNY",49.062963,2.057494,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8738115,1,"BOISSY L'AILLERIE",49.0758,2.025234,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8738116,1,"MONTGEROULT COURCELLES",49.080606,2.003398,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8738117,1,"US",49.099669,1.970525,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8738118,1,"SANTEUIL LE PERCHAY",49.123439,1.949362,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8738119,1,"CHARS",49.162901,1.93679,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8738120,1,"LA VILLETERTRE",49.20255,1.920503,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8738121,1,"LIANCOURT SAINT-PIERRE",49.220538,1.90542,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8738122,1,"CHAUMONT EN VEXIN",49.261386,1.872031,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8738123,1,"TRIE CHATEAU",49.28256,1.818119,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8738124,1,"GISORS",49.285264,1.785066,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8738141,1,"GARE D'ERAGNY NEUVILLE",49.018049,2.090858,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8738142,1,"GARE DE ST OUEN L'AUMONE QUARTIER DE L'EGLISE",49.040009,2.103737,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8738179,1,"VAL D'ARGENTEUIL",48.950568,2.231009,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8738184,1,"ARGENTEUIL",48.946536,2.25736,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8738186,1,"CORMEILLES EN PARISIS",48.968437,2.194301,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8738187,1,"LA FRETTE MONTIGNY",48.980128,2.181456,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8738188,1,"HERBLAY",48.99084,2.161372,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8738189,1,"CONFLANS SAINTE-HONORINE",48.997082,2.09727,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8738400,1,"PARIS SAINT-LAZARE",48.875823,2.324667,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8739100,1,"GARE DE PARIS MONTPARNASSE",48.842507,2.321825,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8739153,1,"VANVES MALAKOFF",48.819489,2.291559,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8739156,1,"CLAMART",48.813654,2.273253,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8739300,1,"VERSAILLES CHANTIERS",48.796091,2.136182,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8739310,1,"MEUDON",48.814807,2.241096,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8739311,1,"BELLEVUE",48.819047,2.229571,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8739312,1,"SEVRES RIVE GAUCHE",48.821021,2.216073,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8739320,1,"CHAVILLE RIVE GAUCHE",48.804783,2.188307,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8739321,1,"VIROFLAY RIVE GAUCHE",48.800944,2.171299,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8739322,1,"SAINT-CYR",48.798902,2.071969,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8739340,1,"FONTENAY LE FLEURY",48.807418,2.040155,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8739341,1,"VILLEPREUX LES CLAYES",48.823745,1.991822,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8739342,1,"PLAISIR GRIGNON",48.831509,1.944166,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8739343,1,"GARANCIERES LA QUEUE",48.810719,1.765057,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8739344,1,"ORGERUS BEHOUST",48.826573,1.702797,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8739345,1,"TACOIGNIERES RICHEBOURG",48.829569,1.668882,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8739346,1,"HOUDAN",48.795824,1.602382,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8739347,1,"MARCHEZAIS BROUE",48.768422,1.513333,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8739362,1,"PLAISIR LES CLAYES",48.830684,1.959876,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8739388,1,"VILLIERS NEAUPHLE PONTCHARTRAIN",48.814471,1.875527,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8739389,1,"MONTFORT L'AMAURY MERE",48.802427,1.815305,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8741560,1,"VERNON",49.090874,1.478857,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8741588,1,"ROSNY SUR SEINE",48.99717,1.630312,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8741589,1,"BONNIERES",49.038343,1.579625,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8754524,1,"JUVISY",48.689302,2.383947,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8768100,1,"CORBEIL ESSONNES",48.613699,2.472803,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8768115,1,"MAISONS ALFORT ALFORTVILLE",48.801402,2.427485,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8768130,1,"VIGNEUX SUR SEINE",48.708412,2.41503,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8768134,1,"ORANGIS BOIS DE L EPINE",48.636614,2.407522,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8768137,1,"GRIGNY CENTRE",48.653291,2.395299,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8768138,1,"EVRY COURCOURONNES - Centre",48.625578,2.428341,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8768139,1,"LE BRAS DE FER - Evry Génopole",48.623681,2.450889,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8768140,1,"MOULIN GALANT",48.586785,2.473101,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8768141,1,"MENNECY",48.571103,2.433037,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8768143,1,"BALLANCOURT",48.532036,2.371195,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8768145,1,"LA FERTE ALAIS",48.48472,2.350933,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8768147,1,"BOUTIGNY SUR ESSONNE",48.43498,2.376677,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8768148,1,"MAISSE",48.392869,2.393543,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8768151,1,"BUNO GIRONVILLE",48.370476,2.387357,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8768182,1,"VILLENEUVE SAINT-GEORGES",48.730187,2.446892,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8768200,1,"MELUN",48.527263,2.654838,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8768210,1,"MONTGERON CROSNE",48.707937,2.462522,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8768211,1,"YERRES",48.706912,2.483302,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8768212,1,"BRUNOY",48.699397,2.50586,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8768213,1,"BOUSSY SAINT-ANTOINE",48.680997,2.533058,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8768214,1,"COMBS LA VILLE QUINCY",48.66771,2.548161,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8768215,1,"LIEUSAINT MOISSY",48.628582,2.568565,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8768216,1,"CESSON",48.564999,2.593887,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8768217,1,"LE MEE",48.540107,2.624186,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8768218,1,"SAVIGNY LE TEMPLE NANDY",48.595883,2.584527,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8768220,1,"BOIS LE ROI",48.475137,2.692057,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8768221,1,"FONTAINEBLEAU AVON",48.415817,2.726509,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8768225,1,"THOMERY",48.394308,2.764028,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8768227,1,"MORET VENEUX LES SABLONS",48.377931,2.798599,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8768400,1,"MONTARGIS",48.007032,2.743038,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8768410,1,"MONTIGNY SUR LOING",48.336312,2.738544,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8768411,1,"BOURRON MARLOTTE GREZ",48.332889,2.692429,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8768412,1,"NEMOURS SAINT-PIERRE",48.267883,2.685681,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8768419,1,"BAGNEAUX SUR LOING",48.230053,2.703526,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8768421,1,"SOUPPES CHATEAU LANDON",48.181604,2.735577,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8768423,1,"DORDIVES",48.147218,2.762728,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8768424,1,"FERRIERES FONTENAY",48.100858,2.773714,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8768440,1,"BOIGNEVILLE",48.342608,2.378621,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8768441,1,"MALESHERBES",48.294597,2.400663,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8768603,1,"PARIS GARE DE LYON",48.844671,2.373131,,1,,Europe/Paris,,TRN, +TRN:SA:DUA8775860,1,"CHATELET LES HALLES",48.861624,2.347167,,1,,Europe/Paris,,TRN, +OAN:SP:1AARD,1,"AVRILLE - ARDENNE",47.51151,-0.59615,-1,0,OAN:SA:zone_AVRILLE_-_ARDENNE,Europe/Paris,2,OAN, +OAN:SP:1ACAS,1,"ACACIAS",47.503662,-0.586485,-1,0,OAN:SA:zone_ACACIAS,Europe/Paris,2,OAN, +OAN:SP:1BAMA,1,"BAMAKO",47.452231,-0.55634,-1,0,OAN:SA:zone_BAMAKO,Europe/Paris,2,OAN, +OAN:SP:1BASC,1,"BASCULE",47.508797,-0.591643,-1,0,OAN:SA:zone_BASCULE,Europe/Paris,2,OAN, +OAN:SP:1BMAI,1,"BERGES DE MAINE",47.479251,-0.549497,-1,0,OAN:SA:zone_BERGES_DE_MAINE,Europe/Paris,2,OAN, +OAN:SP:1BOTA,1,"TERRA BOTANICA",47.494143,-0.574887,-1,0,OAN:SA:zone_TERRA_BOTANICA,Europe/Paris,2,OAN, +OAN:SP:1BROY,1,"BOIS DU ROY",47.499656,-0.58329,-1,0,OAN:SA:zone_BOIS_DU_ROY,Europe/Paris,2,OAN, +OAN:SP:1CAPU,1,"CAPUCINS",47.486972,-0.555014,-1,0,OAN:SA:zone_CAPUCINS,Europe/Paris,2,OAN, +OAN:SP:1FMBL,1,"FOCH MAISON BLEUE",47.469026,-0.549513,-1,0,OAN:SA:zone_FOCH_MAISON_BLEUE,Europe/Paris,2,OAN, +OAN:SP:1HARA,1,"FOCH HARAS",47.466817,-0.552566,-1,0,OAN:SA:zone_FOCH_HARAS,Europe/Paris,2,OAN, +OAN:SP:1HOPA,1,"CHU - HOPITAL",47.481483,-0.553866,-1,0,OAN:SA:zone_CHU_-_HOPITAL,Europe/Paris,2,OAN, +OAN:SP:1HSAU,1,"HAUTS DE SAINT AUBIN",47.492137,-0.560448,-1,0,OAN:SA:zone_HAUTS_DE_SAINT_AUBIN,Europe/Paris,2,OAN, +OAN:SP:1JE23,1,"JEAN XXIII",47.448556,-0.562908,-1,0,OAN:SA:zone_JEAN_XXIII,Europe/Paris,2,OAN, +OAN:SP:1JMOU,1,"JEAN MOULIN",47.490537,-0.552074,-1,0,OAN:SA:zone_JEAN_MOULIN,Europe/Paris,2,OAN, +OAN:SP:1JVIL,1,"JEAN VILAR",47.444925,-0.562352,-1,0,OAN:SA:zone_JEAN_VILAR,Europe/Paris,2,OAN, +OAN:SP:1LAFA,1,"PLACE LA FAYETTE",47.460867,-0.554739,-1,0,OAN:SA:zone_PLACE_LA_FAYETTE,Europe/Paris,2,OAN, +OAN:SP:1LGAR,1,"LES GARES",47.464476,-0.555479,-1,0,OAN:SA:zone_LES_GARES,Europe/Paris,2,OAN, +OAN:SP:1MOLI,1,"MOLIERE",47.474151,-0.554783,-1,0,OAN:SA:zone_MOLIERE,Europe/Paris,2,OAN, +OAN:SP:1PMAY,1,"PLATEAU DE MAYENNE",47.495756,-0.580181,-1,0,OAN:SA:zone_PLATEAU_DE_MAYENNE,Europe/Paris,2,OAN, +OAN:SP:1RALL,1,"RALLIEMENT",47.471211,-0.551782,-1,0,OAN:SA:zone_RALLIEMENT,Europe/Paris,2,OAN, +OAN:SP:1SERG,1,"SAINT SERGE - UNIVERSITE",47.476855,-0.551372,-1,0,OAN:SA:zone_SAINT_SERGE_-_UNIVERSITE,Europe/Paris,2,OAN, +OAN:SP:1STGI,1,"SAINT GILLES",47.506466,-0.589496,-1,0,OAN:SA:zone_SAINT_GILLES,Europe/Paris,2,OAN, +OAN:SP:1STRA,1,"STRASBOURG",47.456849,-0.554136,-1,0,OAN:SA:zone_STRASBOURG,Europe/Paris,2,OAN, +OAN:SP:1VERN,1,"VERNEAU",47.492362,-0.567312,-1,0,OAN:SA:zone_VERNEAU,Europe/Paris,2,OAN, +OAN:SP:2ACAS,1,"ACACIAS",47.503739,-0.586277,-1,0,OAN:SA:zone_ACACIAS,Europe/Paris,2,OAN, +OAN:SP:2ANRO,1,"ANGERS - ROSERAIE",47.443964,-0.553981,-1,0,OAN:SA:zone_ANGERS_-_ROSERAIE,Europe/Paris,2,OAN, +OAN:SP:2BAMA,1,"BAMAKO",47.452179,-0.556271,-1,0,OAN:SA:zone_BAMAKO,Europe/Paris,2,OAN, +OAN:SP:2BASC,1,"BASCULE",47.508797,-0.591643,-1,0,OAN:SA:zone_BASCULE,Europe/Paris,2,OAN, +OAN:SP:2BMAI,1,"BERGES DE MAINE",47.479325,-0.549421,-1,0,OAN:SA:zone_BERGES_DE_MAINE,Europe/Paris,2,OAN, +OAN:SP:2BOTA,1,"TERRA BOTANICA",47.494275,-0.575013,-1,0,OAN:SA:zone_TERRA_BOTANICA,Europe/Paris,2,OAN, +OAN:SP:2BROY,1,"BOIS DU ROY",47.499715,-0.583108,-1,0,OAN:SA:zone_BOIS_DU_ROY,Europe/Paris,2,OAN, +OAN:SP:2CAPU,1,"CAPUCINS",47.486938,-0.554933,-1,0,OAN:SA:zone_CAPUCINS,Europe/Paris,2,OAN, +OAN:SP:2FMBL,1,"FOCH MAISON BLEUE",47.469087,-0.549596,-1,0,OAN:SA:zone_FOCH_MAISON_BLEUE,Europe/Paris,2,OAN, +OAN:SP:2HARA,1,"FOCH HARAS",47.466764,-0.55251,-1,0,OAN:SA:zone_FOCH_HARAS,Europe/Paris,2,OAN, +OAN:SP:2HOPA,1,"CHU - HOPITAL",47.481483,-0.553866,-1,0,OAN:SA:zone_CHU_-_HOPITAL,Europe/Paris,2,OAN, +OAN:SP:2HSAU,1,"HAUTS DE SAINT AUBIN",47.492209,-0.560452,-1,0,OAN:SA:zone_HAUTS_DE_SAINT_AUBIN,Europe/Paris,2,OAN, +OAN:SP:2JE23,1,"JEAN XXIII",47.448521,-0.562853,-1,0,OAN:SA:zone_JEAN_XXIII,Europe/Paris,2,OAN, +OAN:SP:2JMOU,1,"JEAN MOULIN",47.490514,-0.55194,-1,0,OAN:SA:zone_JEAN_MOULIN,Europe/Paris,2,OAN, +OAN:SP:2JVIL,1,"JEAN VILAR",47.444918,-0.562259,-1,0,OAN:SA:zone_JEAN_VILAR,Europe/Paris,2,OAN, +OAN:SP:2LAFA,1,"PLACE LA FAYETTE",47.460867,-0.554739,-1,0,OAN:SA:zone_PLACE_LA_FAYETTE,Europe/Paris,2,OAN, +OAN:SP:2LGAR,1,"LES GARES",47.464478,-0.555373,-1,0,OAN:SA:zone_LES_GARES,Europe/Paris,2,OAN, +OAN:SP:2MOLI,1,"MOLIERE",47.474218,-0.554614,-1,0,OAN:SA:zone_MOLIERE,Europe/Paris,2,OAN, +OAN:SP:2PMAY,1,"PLATEAU DE MAYENNE",47.495805,-0.580011,-1,0,OAN:SA:zone_PLATEAU_DE_MAYENNE,Europe/Paris,2,OAN, +OAN:SP:2RALL,1,"RALLIEMENT",47.471285,-0.55168,-1,0,OAN:SA:zone_RALLIEMENT,Europe/Paris,2,OAN, +OAN:SP:2SERG,1,"SAINT SERGE - UNIVERSITE",47.476813,-0.551276,-1,0,OAN:SA:zone_SAINT_SERGE_-_UNIVERSITE,Europe/Paris,2,OAN, +OAN:SP:2STGI,1,"SAINT GILLES",47.506515,-0.589365,-1,0,OAN:SA:zone_SAINT_GILLES,Europe/Paris,2,OAN, +OAN:SP:2STRA,1,"STRASBOURG",47.457472,-0.55409,-1,0,OAN:SA:zone_STRASBOURG,Europe/Paris,2,OAN, +OAN:SP:2VERN,1,"VERNEAU",47.492443,-0.567304,-1,0,OAN:SA:zone_VERNEAU,Europe/Paris,2,OAN, +OAN:SP:AAMIPI,1,"AMIPI",47.463662,-0.626599,-1,0,OAN:SA:zone_AMIPI,Europe/Paris,0,OAN, +OAN:SP:AAMIPI-E,1,"AMIPI",47.463767,-0.626619,-1,0,OAN:SA:zone_AMIPI,Europe/Paris,0,OAN, +OAN:SP:AARD-7C,1,"AVRILLE - ARDENNE",47.511085,-0.595502,-1,0,OAN:SA:zone_AVRILLE_-_ARDENNE,Europe/Paris,2,OAN, +OAN:SP:AARD-7E,1,"AVRILLE - ARDENNE",47.511986,-0.596535,-1,0,OAN:SA:zone_AVRILLE_-_ARDENNE,Europe/Paris,2,OAN, +OAN:SP:ABI,1,"AVICENNE",47.481325,-0.688601,-1,0,OAN:SA:zone_AVICENNE,Europe/Paris,0,OAN, +OAN:SP:ABI-E,1,"AVICENNE",47.481238,-0.68887,-1,0,OAN:SA:zone_AVICENNE,Europe/Paris,0,OAN, +OAN:SP:ACAS-7C,1,"ACACIAS",47.502728,-0.585677,-1,0,OAN:SA:zone_ACACIAS,Europe/Paris,0,OAN, +OAN:SP:ACAS-7E,1,"ACACIAS",47.503235,-0.585904,-1,0,OAN:SA:zone_ACACIAS,Europe/Paris,0,OAN, +OAN:SP:ADEZIERE,1,"AVRILLE ADEZIERE",47.504921,-0.605045,-1,0,OAN:SA:zone_AVRILLE_ADEZIERE,Europe/Paris,2,OAN, +OAN:SP:AIGREFOI,1,"AIGREFOIN",47.47362,-0.43902,-1,0,OAN:SA:zone_AIGREFOIN,Europe/Paris,2,OAN, +OAN:SP:ALEROY,1,"ANDRE LEROY",47.464496,-0.548538,-1,0,OAN:SA:zone_ANDRE_LEROY,Europe/Paris,0,OAN, +OAN:SP:ALLARD,1,"ALLARD",47.449623,-0.538895,-1,0,OAN:SA:zone_ALLARD,Europe/Paris,2,OAN, +OAN:SP:ALLARD-E,1,"ALLARD",47.44906,-0.538732,-1,0,OAN:SA:zone_ALLARD,Europe/Paris,2,OAN, +OAN:SP:ALLEMA-E,1,"ALLEMAGNE",47.528046,-0.599972,-1,0,OAN:SA:zone_ALLEMAGNE,Europe/Paris,2,OAN, +OAN:SP:ALLEMAGN,1,"ALLEMAGNE",47.526691,-0.601943,-1,0,OAN:SA:zone_ALLEMAGNE,Europe/Paris,2,OAN, +OAN:SP:ALLONN-E,1,"ALLONNEAU",47.485222,-0.526929,-1,0,OAN:SA:zone_ALLONNEAU,Europe/Paris,2,OAN, +OAN:SP:ALLONNEA,1,"ALLONNEAU",47.485156,-0.527018,-1,0,OAN:SA:zone_ALLONNEAU,Europe/Paris,2,OAN, +OAN:SP:ALLUME-E,1,"ALLUMETTES",47.445034,-0.502306,-1,0,OAN:SA:zone_ALLUMETTES,Europe/Paris,0,OAN, +OAN:SP:ALLUMETT,1,"ALLUMETTES",47.445114,-0.502324,-1,0,OAN:SA:zone_ALLUMETTES,Europe/Paris,0,OAN, +OAN:SP:ANAFRA-E,1,"ANATOLE FRANCE",47.531558,-0.613905,-1,0,OAN:SA:zone_ANATOLE_FRANCE,Europe/Paris,2,OAN, +OAN:SP:ANAFRAN,1,"ANATOLE FRANCE",47.531443,-0.614918,-1,0,OAN:SA:zone_ANATOLE_FRANCE,Europe/Paris,2,OAN, +OAN:SP:ANFRAN-E,1,"ANNE FRANK",47.463478,-0.537732,-1,0,OAN:SA:zone_ANNE_FRANK,Europe/Paris,2,OAN, +OAN:SP:ANFRANCK,1,"ANNE FRANK",47.463547,-0.537828,-1,0,OAN:SA:zone_ANNE_FRANK,Europe/Paris,2,OAN, +OAN:SP:ANLERO-E,1,"ANDRE LEROY",47.46471,-0.549014,-1,0,OAN:SA:zone_ANDRE_LEROY,Europe/Paris,2,OAN, +OAN:SP:ANLEROY,1,"ANDRE LEROY",47.464573,-0.54829,-1,0,OAN:SA:zone_ANDRE_LEROY,Europe/Paris,2,OAN, +OAN:SP:ANRO-11C,1,"ANGERS - ROSERAIE",47.44487,-0.551588,-1,0,OAN:SA:zone_ANGERS_-_ROSERAIE,Europe/Paris,0,OAN, +OAN:SP:ANRO-11E,1,"ANGERS - ROSERAIE",47.444891,-0.551828,-1,0,OAN:SA:zone_ANGERS_-_ROSERAIE,Europe/Paris,0,OAN, +OAN:SP:ANRO-5A,1,"ANGERS - ROSERAIE",47.443975,-0.553875,-1,0,OAN:SA:zone_ANGERS_-_ROSERAIE,Europe/Paris,2,OAN, +OAN:SP:ANRO-5B,1,"ANGERS - ROSERAIE",47.443817,-0.553721,-1,0,OAN:SA:zone_ANGERS_-_ROSERAIE,Europe/Paris,2,OAN, +OAN:SP:APPENT-E,1,"APPENTIS",47.445235,-0.546686,-1,0,OAN:SA:zone_APPENTIS,Europe/Paris,2,OAN, +OAN:SP:APPENTIS,1,"APPENTIS",47.445471,-0.546247,-1,0,OAN:SA:zone_APPENTIS,Europe/Paris,2,OAN, +OAN:SP:AQUA-D5A,1,"VERNEAU AQUAVITA",47.493156,-0.565443,-1,0,OAN:SA:zone_VERNEAU_AQUAVITA,Europe/Paris,2,OAN, +OAN:SP:AQUAVITA,1,"VERNEAU AQUAVITA",47.493897,-0.565311,-1,0,OAN:SA:zone_VERNEAU_AQUAVITA,Europe/Paris,0,OAN, +OAN:SP:AQUITA-E,1,"ALIENOR D'AQUITAINE",47.462994,-0.61506,-1,0,OAN:SA:zone_ALIENOR_DAQUITAINE,Europe/Paris,0,OAN, +OAN:SP:AQUITAI,1,"ALIENOR D'AQUITAINE",47.463122,-0.615572,-1,0,OAN:SA:zone_ALIENOR_DAQUITAINE,Europe/Paris,0,OAN, +OAN:SP:AQVI-D5B,1,"VERNEAU AQUAVITA",47.493446,-0.565353,-1,0,OAN:SA:zone_VERNEAU_AQUAVITA,Europe/Paris,2,OAN, +OAN:SP:ARAGO-E,1,"ARAGON",47.471781,-0.567504,-1,0,OAN:SA:zone_ARAGON,Europe/Paris,0,OAN, +OAN:SP:ARAGON,1,"ARAGON",47.471603,-0.56703,-1,0,OAN:SA:zone_ARAGON,Europe/Paris,0,OAN, +OAN:SP:ARBORE-E,1,"ARBORETUM",47.449451,-0.54434,-1,0,OAN:SA:zone_ARBORETUM,Europe/Paris,2,OAN, +OAN:SP:ARBORETU,1,"ARBORETUM",47.449329,-0.544227,-1,0,OAN:SA:zone_ARBORETUM,Europe/Paris,2,OAN, +OAN:SP:ARCAD-E,1,"ARCADES",47.507207,-0.516602,-1,0,OAN:SA:zone_ARCADES,Europe/Paris,0,OAN, +OAN:SP:ARCADES,1,"ARCADES",47.506739,-0.516936,-1,0,OAN:SA:zone_ARCADES,Europe/Paris,0,OAN, +OAN:SP:ARCEAU,1,"ARCEAU",47.47105,-0.519755,-1,0,OAN:SA:zone_ARCEAU,Europe/Paris,2,OAN, +OAN:SP:ARCEAU-E,1,"ARCEAU",47.470925,-0.519749,-1,0,OAN:SA:zone_ARCEAU,Europe/Paris,2,OAN, +OAN:SP:AROBA-E,1,"AROBASE",47.464041,-0.531683,-1,0,OAN:SA:zone_AROBASE,Europe/Paris,0,OAN, +OAN:SP:AROBASE,1,"AROBASE",47.464503,-0.531562,-1,0,OAN:SA:zone_AROBASE,Europe/Paris,0,OAN, +OAN:SP:ARTAUD,1,"ARTAUD",47.434028,-0.611029,-1,0,OAN:SA:zone_ARTAUD,Europe/Paris,2,OAN, +OAN:SP:ARTAUD-E,1,"ARTAUD",47.433321,-0.610857,-1,0,OAN:SA:zone_ARTAUD,Europe/Paris,2,OAN, +OAN:SP:ARTMET-E,1,"ARTS ET METIERS",47.475323,-0.559055,-1,0,OAN:SA:zone_ARTS_ET_METIERS,Europe/Paris,2,OAN, +OAN:SP:ARTMETIE,1,"ARTS ET METIERS",47.475452,-0.558916,-1,0,OAN:SA:zone_ARTS_ET_METIERS,Europe/Paris,2,OAN, +OAN:SP:ATHLET-E,1,"ATHLETIS",47.441357,-0.528459,-1,0,OAN:SA:zone_ATHLETIS,Europe/Paris,2,OAN, +OAN:SP:ATHLETIS,1,"ATHLETIS",47.441589,-0.528153,-1,0,OAN:SA:zone_ATHLETIS,Europe/Paris,2,OAN, +OAN:SP:ATOLL,1,"L'ATOLL",47.482997,-0.632222,-1,0,OAN:SA:zone_LATOLL,Europe/Paris,0,OAN, +OAN:SP:ATOLL-E,1,"L'ATOLL",47.483196,-0.633002,-1,0,OAN:SA:zone_LATOLL,Europe/Paris,0,OAN, +OAN:SP:ATOLLBEA,1,"L'ATOLL",47.484248,-0.626463,-1,0,OAN:SA:zone_LATOLL,Europe/Paris,2,OAN, +OAN:SP:AUBEPI-E,1,"AUBEPINE",47.461579,-0.495885,-1,0,OAN:SA:zone_AUBEPINE,Europe/Paris,2,OAN, +OAN:SP:AUBEPINE,1,"AUBEPINE",47.461703,-0.495994,-1,0,OAN:SA:zone_AUBEPINE,Europe/Paris,2,OAN, +OAN:SP:AUBERD-E,1,"AUBERDERIE",47.53797,-0.47853,-1,0,OAN:SA:zone_AUBERDERIE,Europe/Paris,2,OAN, +OAN:SP:AUBERDER,1,"AUBERDERIE",47.53792,-0.47875,-1,0,OAN:SA:zone_AUBERDERIE,Europe/Paris,2,OAN, +OAN:SP:AUBRIA-E,1,"AUBRIAIS",47.515758,-0.667603,-1,0,OAN:SA:zone_AUBRIAIS,Europe/Paris,0,OAN, +OAN:SP:AUBRIAIS,1,"AUBRIAIS",47.516063,-0.667862,-1,0,OAN:SA:zone_AUBRIAIS,Europe/Paris,0,OAN, +OAN:SP:AUBRY,1,"AUBRY",47.440954,-0.552331,-1,0,OAN:SA:zone_AUBRY,Europe/Paris,0,OAN, +OAN:SP:AUBRY-E,1,"AUBRY",47.441795,-0.552178,-1,0,OAN:SA:zone_AUBRY,Europe/Paris,0,OAN, +OAN:SP:AULNAI-E,1,"LES AULNAIES",47.5869,-0.43987,-1,0,OAN:SA:zone_LES_AULNAIES,Europe/Paris,2,OAN, +OAN:SP:AULNAIES,1,"LES AULNAIES",47.58681,-0.43976,-1,0,OAN:SA:zone_LES_AULNAIES,Europe/Paris,2,OAN, +OAN:SP:AULNERIE,1,"AULNERIE",47.58741,-0.49294,-1,0,OAN:SA:zone_AULNERIE,Europe/Paris,2,OAN, +OAN:SP:AURIOL,1,"AURIOL",47.491122,-0.565054,-1,0,OAN:SA:zone_AURIOL,Europe/Paris,0,OAN, +OAN:SP:AURIOL-E,1,"AURIOL",47.490877,-0.564044,-1,0,OAN:SA:zone_AURIOL,Europe/Paris,0,OAN, +OAN:SP:AUTHIO-E,1,"AUTHION",47.431694,-0.528695,-1,0,OAN:SA:zone_AUTHION,Europe/Paris,2,OAN, +OAN:SP:AUTHION,1,"AUTHION",47.431438,-0.528536,-1,0,OAN:SA:zone_AUTHION,Europe/Paris,2,OAN, +OAN:SP:AUTRIC-E,1,"AUTRICHE",47.522956,-0.609763,-1,0,OAN:SA:zone_AUTRICHE,Europe/Paris,2,OAN, +OAN:SP:AUTRICH,1,"AUTRICHE",47.522949,-0.609949,-1,0,OAN:SA:zone_AUTRICHE,Europe/Paris,2,OAN, +OAN:SP:AUVERG-E,1,"AUVERGNE",47.490211,-0.530079,-1,0,OAN:SA:zone_AUVERGNE,Europe/Paris,2,OAN, +OAN:SP:AUVERGNE,1,"AUVERGNE",47.489544,-0.530773,-1,0,OAN:SA:zone_AUVERGNE,Europe/Paris,2,OAN, +OAN:SP:AVENEU-E,1,"AVENUE DE L'EUROPE",47.52824,-0.594826,-1,0,OAN:SA:zone_AVENUE_DE_LEUROPE,Europe/Paris,2,OAN, +OAN:SP:AVENEURO,1,"AVENUE DE L'EUROPE",47.527908,-0.595778,-1,0,OAN:SA:zone_AVENUE_DE_LEUROPE,Europe/Paris,2,OAN, +OAN:SP:BAHONN-E,1,"BAHONNEAU",47.453045,-0.483199,-1,0,OAN:SA:zone_BAHONNEAU,Europe/Paris,0,OAN, +OAN:SP:BAHONNEA,1,"BAHONNEAU",47.452825,-0.48336,-1,0,OAN:SA:zone_BAHONNEAU,Europe/Paris,0,OAN, +OAN:SP:BALAND-E,1,"BASSE LANDE",47.505413,-0.595482,-1,0,OAN:SA:zone_BASSE_LANDE,Europe/Paris,2,OAN, +OAN:SP:BALANDE,1,"BASSE LANDE",47.505123,-0.594881,-1,0,OAN:SA:zone_BASSE_LANDE,Europe/Paris,2,OAN, +OAN:SP:BALLOUR,1,"BALLOUR",47.483276,-0.562422,-1,0,OAN:SA:zone_BALLOUR,Europe/Paris,0,OAN, +OAN:SP:BANCHA-E,1,"BANCHAIS",47.485539,-0.511835,-1,0,OAN:SA:zone_BANCHAIS,Europe/Paris,2,OAN, +OAN:SP:BANCHAIS,1,"BANCHAIS",47.485288,-0.512154,-1,0,OAN:SA:zone_BANCHAIS,Europe/Paris,2,OAN, +OAN:SP:BANCST-E,1,"BANCHAIS",47.485847,-0.512489,-1,0,OAN:SA:zone_BANCHAIS,Europe/Paris,0,OAN, +OAN:SP:BANCSTMA,1,"BANCHAIS",47.485886,-0.512371,-1,0,OAN:SA:zone_BANCHAIS,Europe/Paris,0,OAN, +OAN:SP:BARBOT-E,1,"BARBOTTERIE",47.400597,-0.524957,-1,0,OAN:SA:zone_BARBOTTERIE,Europe/Paris,2,OAN, +OAN:SP:BARBOTER,1,"BARBOTTERIE",47.400429,-0.524841,-1,0,OAN:SA:zone_BARBOTTERIE,Europe/Paris,2,OAN, +OAN:SP:BARONAR,1,"SAINT AUBIN LA SALLE",47.489725,-0.5036,-1,0,OAN:SA:zone_SAINT_AUBIN_LA_SALLE,Europe/Paris,0,OAN, +OAN:SP:BARONERI,1,"SAINT AUBIN LA SALLE",47.489454,-0.502485,-1,0,OAN:SA:zone_SAINT_AUBIN_LA_SALLE,Europe/Paris,0,OAN, +OAN:SP:BARONNER,1,"SAINT AUBIN LA SALLE",47.489367,-0.503405,-1,0,OAN:SA:zone_SAINT_AUBIN_LA_SALLE,Europe/Paris,2,OAN, +OAN:SP:BARRA,1,"BARRA",47.483616,-0.563901,-1,0,OAN:SA:zone_BARRA,Europe/Paris,2,OAN, +OAN:SP:BARRA-E,1,"BARRA",47.483818,-0.563792,-1,0,OAN:SA:zone_BARRA,Europe/Paris,2,OAN, +OAN:SP:BASCHESN,1,"BASSE CHESNAIE",47.573732,-0.675781,-1,0,OAN:SA:zone_BASSE_CHESNAIE,Europe/Paris,0,OAN, +OAN:SP:BASMOR-E,1,"BAS MORTIER",47.515232,-0.474657,-1,0,OAN:SA:zone_BAS_MORTIER,Europe/Paris,2,OAN, +OAN:SP:BASMORTI,1,"BAS MORTIER",47.51535,-0.474597,-1,0,OAN:SA:zone_BAS_MORTIER,Europe/Paris,2,OAN, +OAN:SP:BAUDON,1,"BAUDON",47.5394,-0.57917,-1,0,OAN:SA:zone_BAUDON,Europe/Paris,2,OAN, +OAN:SP:BAUDON-E,1,"BAUDON",47.53922,-0.57927,-1,0,OAN:SA:zone_BAUDON,Europe/Paris,2,OAN, +OAN:SP:BAUDRA-E,1,"BAUDRAIRIE",47.437839,-0.507614,-1,0,OAN:SA:zone_BAUDRAIRIE,Europe/Paris,2,OAN, +OAN:SP:BAUDRAI,1,"BAUDRAIRIE",47.437885,-0.507232,-1,0,OAN:SA:zone_BAUDRAIRIE,Europe/Paris,2,OAN, +OAN:SP:BBESSCA,1,"ESSCA",47.477238,-0.599905,-1,0,OAN:SA:zone_ESSCA,Europe/Paris,2,OAN, +OAN:SP:BBMAT,1,"MAISON DE TECHNOPOLE",47.478266,-0.60632,-1,0,OAN:SA:zone_MAISON_DE_TECHNOPOLE,Europe/Paris,2,OAN, +OAN:SP:BBRANC-E,1,"BELLEBRANCHE",47.528084,-0.528345,-1,0,OAN:SA:zone_BELLEBRANCHE,Europe/Paris,2,OAN, +OAN:SP:BBRANCHE,1,"BELLEBRANCHE",47.528112,-0.528261,-1,0,OAN:SA:zone_BELLEBRANCHE,Europe/Paris,2,OAN, +OAN:SP:BEADI-AR,1,"MAIRIE DE BEAUCOUZE",47.474611,-0.632113,-1,0,OAN:SA:zone_MAIRIE_DE_BEAUCOUZE,Europe/Paris,0,OAN, +OAN:SP:BEADIM,1,"MAIRIE DE BEAUCOUZE",47.474611,-0.632113,-1,0,OAN:SA:zone_MAIRIE_DE_BEAUCOUZE,Europe/Paris,0,OAN, +OAN:SP:BEAUCAR,1,"BEAUCOUZE",47.470332,-0.6259,-1,0,OAN:SA:zone_BEAUCOUZE,Europe/Paris,0,OAN, +OAN:SP:BEAUCOUZ,1,"BEAUCOUZE",47.470312,-0.625157,-1,0,OAN:SA:zone_BEAUCOUZE,Europe/Paris,0,OAN, +OAN:SP:BEAUFI-E,1,"BEAUMANOIR",47.45189,-0.510475,-1,0,OAN:SA:zone_BEAUMANOIR,Europe/Paris,0,OAN, +OAN:SP:BEAULI-E,1,"BEAULIEU",47.495504,-0.436678,-1,0,OAN:SA:zone_BEAULIEU,Europe/Paris,0,OAN, +OAN:SP:BEAULIEU,1,"BEAULIEU",47.495502,-0.437021,-1,0,OAN:SA:zone_BEAULIEU,Europe/Paris,0,OAN, +OAN:SP:BEAUM-E,1,"BEAUMANOIR",47.451353,-0.510764,-1,0,OAN:SA:zone_BEAUMANOIR,Europe/Paris,0,OAN, +OAN:SP:BEAUMAN,1,"BEAUMANOIR",47.451641,-0.510474,-1,0,OAN:SA:zone_BEAUMANOIR,Europe/Paris,0,OAN, +OAN:SP:BEAURE-E,1,"BEAUREPAIRE",47.473907,-0.559496,-1,0,OAN:SA:zone_BEAUREPAIRE,Europe/Paris,0,OAN, +OAN:SP:BEAUREPA,1,"BEAUREPAIRE",47.47403,-0.559688,-1,0,OAN:SA:zone_BEAUREPAIRE,Europe/Paris,0,OAN, +OAN:SP:BEAUVA-E,1,"BEAUVAL",47.451727,-0.551283,-1,0,OAN:SA:zone_BEAUVAL,Europe/Paris,0,OAN, +OAN:SP:BEAUVAL,1,"BEAUVAL",47.451438,-0.550617,-1,0,OAN:SA:zone_BEAUVAL,Europe/Paris,0,OAN, +OAN:SP:BECK-E,1,"BECKER",47.53886,-0.622155,-1,0,OAN:SA:zone_BECKER,Europe/Paris,0,OAN, +OAN:SP:BECKE,1,"BECKER",47.538871,-0.622076,-1,0,OAN:SA:zone_BECKER,Europe/Paris,0,OAN, +OAN:SP:BEDAUD-E,1,"BEDAUDIERE",47.501364,-0.393624,-1,0,OAN:SA:zone_BEDAUDIERE,Europe/Paris,0,OAN, +OAN:SP:BEDAUDIE,1,"BEDAUDIERE",47.501299,-0.395064,-1,0,OAN:SA:zone_BEDAUDIERE,Europe/Paris,0,OAN, +OAN:SP:BEDIER,1,"BEDIER",47.450082,-0.552654,-1,0,OAN:SA:zone_BEDIER,Europe/Paris,0,OAN, +OAN:SP:BEDIER-E,1,"BEDIER",47.449951,-0.55278,-1,0,OAN:SA:zone_BEDIER,Europe/Paris,0,OAN, +OAN:SP:BELAIR,1,"BEL AIR",47.529846,-0.607035,-1,0,OAN:SA:zone_BEL_AIR,Europe/Paris,0,OAN, +OAN:SP:BELAIR-E,1,"BEL AIR",47.52919,-0.606294,-1,0,OAN:SA:zone_BEL_AIR,Europe/Paris,0,OAN, +OAN:SP:BELFON-E,1,"MAISON DES ARTS",47.471753,-0.537337,-1,0,OAN:SA:zone_MAISON_DES_ARTS,Europe/Paris,2,OAN, +OAN:SP:BELFONTA,1,"MAISON DES ARTS",47.471829,-0.537755,-1,0,OAN:SA:zone_MAISON_DES_ARTS,Europe/Paris,2,OAN, +OAN:SP:BELLAN-E,1,"BELLANGERIE",47.482287,-0.684555,-1,0,OAN:SA:zone_BELLANGERIE,Europe/Paris,0,OAN, +OAN:SP:BELLANGE,1,"BELLANGERIE",47.482243,-0.684838,-1,0,OAN:SA:zone_BELLANGERIE,Europe/Paris,0,OAN, +OAN:SP:BELLVUTR,1,"BELLEVUE",47.448155,-0.506838,-1,0,OAN:SA:zone_BELLEVUE,Europe/Paris,2,OAN, +OAN:SP:BELOEI-E,1,"BEL OEIL",47.427044,-0.556724,-1,0,OAN:SA:zone_BEL_OEIL,Europe/Paris,0,OAN, +OAN:SP:BELOEIL,1,"BEL OEIL",47.426703,-0.556719,-1,0,OAN:SA:zone_BEL_OEIL,Europe/Paris,0,OAN, +OAN:SP:BELPOU-E,1,"BELLE POULE",47.428478,-0.527647,-1,0,OAN:SA:zone_BELLE_POULE,Europe/Paris,0,OAN, +OAN:SP:BELPOULE,1,"BELLE POULE",47.427761,-0.527224,-1,0,OAN:SA:zone_BELLE_POULE,Europe/Paris,0,OAN, +OAN:SP:BELVTR-E,1,"BELLEVUE",47.447899,-0.508045,-1,0,OAN:SA:zone_BELLEVUE,Europe/Paris,2,OAN, +OAN:SP:BENE,1,"BENE",47.541064,-0.609823,-1,0,OAN:SA:zone_BENE,Europe/Paris,2,OAN, +OAN:SP:BENE-E,1,"BENE",47.541109,-0.609493,-1,0,OAN:SA:zone_BENE,Europe/Paris,2,OAN, +OAN:SP:BEURRI-E,1,"BEURRIERE",47.497345,-0.589286,-1,0,OAN:SA:zone_BEURRIERE,Europe/Paris,2,OAN, +OAN:SP:BEURRIER,1,"BEURRIERE",47.497562,-0.589524,-1,0,OAN:SA:zone_BEURRIERE,Europe/Paris,2,OAN, +OAN:SP:BIAIS,1,"BIAIS",47.5847,-0.53931,-1,0,OAN:SA:zone_BIAIS,Europe/Paris,2,OAN, +OAN:SP:BIAIS-E,1,"BIAIS",47.58479,-0.53952,-1,0,OAN:SA:zone_BIAIS,Europe/Paris,2,OAN, +OAN:SP:BICHO-E,1,"BICHON",47.479347,-0.564744,-1,0,OAN:SA:zone_BICHON,Europe/Paris,2,OAN, +OAN:SP:BICHON,1,"BICHON",47.479302,-0.564768,-1,0,OAN:SA:zone_BICHON,Europe/Paris,2,OAN, +OAN:SP:BICHON-E,1,"BICHON",47.479221,-0.563609,-1,0,OAN:SA:zone_BICHON,Europe/Paris,2,OAN, +OAN:SP:BIGOT-E,1,"BIGOT",47.482204,-0.561009,-1,0,OAN:SA:zone_BIGOT,Europe/Paris,2,OAN, +OAN:SP:BIOP-E,1,"BIOPOLE",47.481983,-0.496442,-1,0,OAN:SA:zone_BIOPOLE,Europe/Paris,2,OAN, +OAN:SP:BIOPOL,1,"BIOPOLE",47.482282,-0.496711,-1,0,OAN:SA:zone_BIOPOLE,Europe/Paris,2,OAN, +OAN:SP:BIRGTE-E,1,"BIRGE",47.475216,-0.519832,-1,0,OAN:SA:zone_BIRGE,Europe/Paris,2,OAN, +OAN:SP:BIRGTEC,1,"BIRGE",47.474712,-0.519845,-1,0,OAN:SA:zone_BIRGE,Europe/Paris,2,OAN, +OAN:SP:BLANDE-E,1,"BLANDEAU",47.457392,-0.54319,-1,0,OAN:SA:zone_BLANDEAU,Europe/Paris,2,OAN, +OAN:SP:BLANDEAU,1,"BLANDEAU",47.457478,-0.54334,-1,0,OAN:SA:zone_BLANDEAU,Europe/Paris,2,OAN, +OAN:SP:BLERIO-E,1,"BLERIOT",47.486129,-0.563507,-1,0,OAN:SA:zone_BLERIOT,Europe/Paris,2,OAN, +OAN:SP:BLERIOT,1,"BLERIOT",47.485965,-0.563591,-1,0,OAN:SA:zone_BLERIOT,Europe/Paris,2,OAN, +OAN:SP:BLITOU-E,1,"BLITOURNE",47.527416,-0.434127,-1,0,OAN:SA:zone_BLITOURNE,Europe/Paris,0,OAN, +OAN:SP:BLITOURN,1,"BLITOURNE",47.527097,-0.434247,-1,0,OAN:SA:zone_BLITOURNE,Europe/Paris,0,OAN, +OAN:SP:BMAI-9C,1,"BERGES DE MAINE BUS",47.478715,-0.549693,-1,0,OAN:SA:zone_BERGES_DE_MAINE_BUS,Europe/Paris,2,OAN, +OAN:SP:BMAI-9E,1,"BERGES DE MAINE",47.478474,-0.548897,-1,0,OAN:SA:zone_BERGES_DE_MAINE,Europe/Paris,2,OAN, +OAN:SP:BMARZE-E,1,"BASSE MARZELLE",47.49392,-0.49891,-1,0,OAN:SA:zone_BASSE_MARZELLE,Europe/Paris,0,OAN, +OAN:SP:BMARZELL,1,"BASSE MARZELLE",47.49392,-0.49891,-1,0,OAN:SA:zone_BASSE_MARZELLE,Europe/Paris,0,OAN, +OAN:SP:BMOTTE,1,"BELLE MOTTE",47.531064,-0.516539,-1,0,OAN:SA:zone_BELLE_MOTTE,Europe/Paris,2,OAN, +OAN:SP:BMOTTE-E,1,"BELLE MOTTE",47.530937,-0.516285,-1,0,OAN:SA:zone_BELLE_MOTTE,Europe/Paris,2,OAN, +OAN:SP:BODINI-E,1,"BODINIERE",47.58533,-0.4478,-1,0,OAN:SA:zone_BODINIERE,Europe/Paris,2,OAN, +OAN:SP:BODINIER,1,"BODINIERE",47.58527,-0.44778,-1,0,OAN:SA:zone_BODINIERE,Europe/Paris,2,OAN, +OAN:SP:BOISAB-E,1,"BOIS L'ABBE",47.490417,-0.513995,-1,0,OAN:SA:zone_BOIS_LABBE,Europe/Paris,0,OAN, +OAN:SP:BOISABBE,1,"BOIS L'ABBE",47.490342,-0.514177,-1,0,OAN:SA:zone_BOIS_LABBE,Europe/Paris,0,OAN, +OAN:SP:BOISHO-E,1,"BOIS DE L'HOPITAL",47.47037,-0.45893,-1,0,OAN:SA:zone_BOIS_DE_LHOPITAL,Europe/Paris,2,OAN, +OAN:SP:BOISHOPI,1,"BOIS DE L'HOPITAL",47.47059,-0.45897,-1,0,OAN:SA:zone_BOIS_DE_LHOPITAL,Europe/Paris,2,OAN, +OAN:SP:BOISRA-E,1,"BOISRAME",47.478359,-0.584725,-1,0,OAN:SA:zone_BOISRAME,Europe/Paris,2,OAN, +OAN:SP:BOISRAME,1,"BOISRAME",47.478296,-0.584735,-1,0,OAN:SA:zone_BOISRAME,Europe/Paris,2,OAN, +OAN:SP:BONNER-E,1,"BONNERIE",47.52271,-0.44631,-1,0,OAN:SA:zone_BONNERIE,Europe/Paris,2,OAN, +OAN:SP:BOPON-E,1,"BOUCHEMAINE PONT",47.420516,-0.610561,-1,0,OAN:SA:zone_BOUCHEMAINE_PONT,Europe/Paris,0,OAN, +OAN:SP:BOPONT,1,"BOUCHEMAINE PONT",47.420657,-0.610389,-1,0,OAN:SA:zone_BOUCHEMAINE_PONT,Europe/Paris,0,OAN, +OAN:SP:BOREAU,1,"BOREAU",47.475315,-0.545991,-1,0,OAN:SA:zone_BOREAU,Europe/Paris,2,OAN, +OAN:SP:BOSCH,1,"BOIS RINIER",47.476571,-0.498013,-1,0,OAN:SA:zone_BOIS_RINIER,Europe/Paris,0,OAN, +OAN:SP:BOSCH-E,1,"BOIS RINIER",47.476478,-0.497397,-1,0,OAN:SA:zone_BOIS_RINIER,Europe/Paris,0,OAN, +OAN:SP:BOSQUE-E,1,"BOSQUET",47.409777,-0.524693,-1,0,OAN:SA:zone_BOSQUET,Europe/Paris,0,OAN, +OAN:SP:BOSQUET,1,"BOSQUET",47.409931,-0.524569,-1,0,OAN:SA:zone_BOSQUET,Europe/Paris,0,OAN, +OAN:SP:BOUCHE-E,1,"BOUCHEMAINE",47.421537,-0.610432,-1,0,OAN:SA:zone_BOUCHEMAINE,Europe/Paris,0,OAN, +OAN:SP:BOUCHEM,1,"BOUCHEMAINE",47.421753,-0.610467,-1,0,OAN:SA:zone_BOUCHEMAINE,Europe/Paris,0,OAN, +OAN:SP:BOUGO-E,1,"BOURGONNIER",47.461645,-0.541216,-1,0,OAN:SA:zone_BOURGONNIER,Europe/Paris,2,OAN, +OAN:SP:BOUGONNI,1,"BOURGONNIER",47.462166,-0.542373,-1,0,OAN:SA:zone_BOURGONNIER,Europe/Paris,2,OAN, +OAN:SP:BOULLE,1,"BOULLE",47.486777,-0.628609,-1,0,OAN:SA:zone_BOULLE,Europe/Paris,2,OAN, +OAN:SP:BOULLE-E,1,"BOULLE",47.48655,-0.62869,-1,0,OAN:SA:zone_BOULLE,Europe/Paris,2,OAN, +OAN:SP:BOURG,1,"BOURG",47.590729,-0.555286,-1,0,OAN:SA:zone_BOURG,Europe/Paris,2,OAN, +OAN:SP:BOURG-E,1,"BOURG",47.591078,-0.55529,-1,0,OAN:SA:zone_BOURG,Europe/Paris,2,OAN, +OAN:SP:BOURGL-E,1,"BOURG LA CROIX",47.45072,-0.52383,-1,0,OAN:SA:zone_BOURG_LA_CROIX,Europe/Paris,2,OAN, +OAN:SP:BOURGLAC,1,"BOURG LA CROIX",47.45086,-0.52382,-1,0,OAN:SA:zone_BOURG_LA_CROIX,Europe/Paris,2,OAN, +OAN:SP:BOURRELI,1,"BOURRELIERE",47.38211,-0.56407,-1,0,OAN:SA:zone_BOURRELIERE,Europe/Paris,2,OAN, +OAN:SP:BOURSE,1,"BOURSE",47.44273,-0.495443,-1,0,OAN:SA:zone_BOURSE,Europe/Paris,0,OAN, +OAN:SP:BOURSE-E,1,"BOURSE",47.442589,-0.495197,-1,0,OAN:SA:zone_BOURSE,Europe/Paris,0,OAN, +OAN:SP:BOUTEI-E,1,"BOUTEILLERIE",47.47983,-0.43187,-1,0,OAN:SA:zone_BOUTEILLERIE,Europe/Paris,2,OAN, +OAN:SP:BOUTEILL,1,"BOUTEILLERIE",47.47985,-0.43215,-1,0,OAN:SA:zone_BOUTEILLERIE,Europe/Paris,2,OAN, +OAN:SP:BOUTHO-E,1,"BOUCHE THOMAS",47.444761,-0.55015,-1,0,OAN:SA:zone_BOUCHE_THOMAS,Europe/Paris,2,OAN, +OAN:SP:BOUTHOMA,1,"BOUCHE THOMAS",47.444791,-0.550058,-1,0,OAN:SA:zone_BOUCHE_THOMAS,Europe/Paris,2,OAN, +OAN:SP:BOUVET,1,"BOUVET",47.563271,-0.675934,-1,0,OAN:SA:zone_BOUVET,Europe/Paris,0,OAN, +OAN:SP:BOUVET-E,1,"BOUVET",47.563324,-0.675835,-1,0,OAN:SA:zone_BOUVET,Europe/Paris,0,OAN, +OAN:SP:BPASTE-E,1,"BON PASTEUR",47.470462,-0.569822,-1,0,OAN:SA:zone_BON_PASTEUR,Europe/Paris,2,OAN, +OAN:SP:BPASTEUR,1,"BON PASTEUR",47.470294,-0.569707,-1,0,OAN:SA:zone_BON_PASTEUR,Europe/Paris,0,OAN, +OAN:SP:BRARDIER,1,"BRARDIERE",47.58176,-0.49436,-1,0,OAN:SA:zone_BRARDIERE,Europe/Paris,2,OAN, +OAN:SP:BRASSE-E,1,"BRASSENS",47.494945,-0.587348,-1,0,OAN:SA:zone_BRASSENS,Europe/Paris,2,OAN, +OAN:SP:BRASSENS,1,"BRASSENS",47.49415,-0.586415,-1,0,OAN:SA:zone_BRASSENS,Europe/Paris,2,OAN, +OAN:SP:BREMON-E,1,"GARES BREMONT",47.465954,-0.559369,-1,0,OAN:SA:zone_GARES_BREMONT,Europe/Paris,2,OAN, +OAN:SP:BRGPAI-E,1,"BOURG DE PAILLE",47.474522,-0.62486,-1,0,OAN:SA:zone_BOURG_DE_PAILLE,Europe/Paris,2,OAN, +OAN:SP:BRGPAILL,1,"BOURG DE PAILLE",47.47427,-0.624913,-1,0,OAN:SA:zone_BOURG_DE_PAILLE,Europe/Paris,2,OAN, +OAN:SP:BRIOLL-E,1,"MAIRIE DE BRIOLLAY",47.563476,-0.507357,-1,0,OAN:SA:zone_MAIRIE_DE_BRIOLLAY,Europe/Paris,0,OAN, +OAN:SP:BRIOLLAY,1,"MAIRIE DE BRIOLLAY",47.563684,-0.507665,-1,0,OAN:SA:zone_MAIRIE_DE_BRIOLLAY,Europe/Paris,0,OAN, +OAN:SP:BRISEA-E,1,"BRISEPOTIERE",47.479616,-0.527928,-1,0,OAN:SA:zone_BRISEPOTIERE,Europe/Paris,2,OAN, +OAN:SP:BRISEP-E,1,"BRISEPOTIERE",47.479376,-0.527296,-1,0,OAN:SA:zone_BRISEPOTIERE,Europe/Paris,2,OAN, +OAN:SP:BRISEPOA,1,"BRISEPOTIERE",47.479494,-0.528121,-1,0,OAN:SA:zone_BRISEPOTIERE,Europe/Paris,2,OAN, +OAN:SP:BRISEPOT,1,"BRISEPOTIERE",47.479515,-0.527246,-1,0,OAN:SA:zone_BRISEPOTIERE,Europe/Paris,2,OAN, +OAN:SP:BSOLEI-E,1,"BEAU SOLEIL",47.426701,-0.721223,-1,0,OAN:SA:zone_BEAU_SOLEIL,Europe/Paris,0,OAN, +OAN:SP:BSOLEIL,1,"BEAU SOLEIL",47.426608,-0.721238,-1,0,OAN:SA:zone_BEAU_SOLEIL,Europe/Paris,0,OAN, +OAN:SP:BUCHET-E,1,"BUCHETIERE",47.559784,-0.428115,-1,0,OAN:SA:zone_BUCHETIERE,Europe/Paris,2,OAN, +OAN:SP:BUCHETIE,1,"BUCHETIERE",47.559563,-0.428238,-1,0,OAN:SA:zone_BUCHETIERE,Europe/Paris,2,OAN, +OAN:SP:BUISSO-E,1,"BUISSON",47.442007,-0.484075,-1,0,OAN:SA:zone_BUISSON,Europe/Paris,2,OAN, +OAN:SP:BUISSON,1,"BUISSON",47.441879,-0.484466,-1,0,OAN:SA:zone_BUISSON,Europe/Paris,2,OAN, +OAN:SP:BVALLE-E,1,"BASSES VALLEES",47.57908,-0.499747,-1,0,OAN:SA:zone_BASSES_VALLEES,Europe/Paris,0,OAN, +OAN:SP:BVALLEES,1,"BASSES VALLEES",47.57926,-0.499701,-1,0,OAN:SA:zone_BASSES_VALLEES,Europe/Paris,0,OAN, +OAN:SP:CAMELI-E,1,"CAMELIA",47.471362,-0.519161,-1,0,OAN:SA:zone_CAMELIA,Europe/Paris,2,OAN, +OAN:SP:CAMELIAS,1,"CAMELIA",47.471198,-0.518874,-1,0,OAN:SA:zone_CAMELIA,Europe/Paris,2,OAN, +OAN:SP:CAMLAC-E,1,"LAC DE MAINE CAMPING",47.45772,-0.597196,-1,0,OAN:SA:zone_LAC_DE_MAINE_CAMPING,Europe/Paris,2,OAN, +OAN:SP:CAMLACMA,1,"LAC DE MAINE CAMPING",47.457948,-0.59705,-1,0,OAN:SA:zone_LAC_DE_MAINE_CAMPING,Europe/Paris,0,OAN, +OAN:SP:CAMPBO-E,1,"CAMPING DE BOUCHEMAINE",47.419177,-0.611662,-1,0,OAN:SA:zone_CAMPING_DE_BOUCHEMAINE,Europe/Paris,2,OAN, +OAN:SP:CAMPBOUC,1,"CAMPING DE BOUCHEMAINE",47.419309,-0.611358,-1,0,OAN:SA:zone_CAMPING_DE_BOUCHEMAINE,Europe/Paris,0,OAN, +OAN:SP:CAMPJU-E,1,"CAMPING DE JUIGNE",47.537094,-0.61694,-1,0,OAN:SA:zone_CAMPING_DE_JUIGNE,Europe/Paris,0,OAN, +OAN:SP:CAMPJUIG,1,"CAMPING DE JUIGNE",47.537556,-0.616859,-1,0,OAN:SA:zone_CAMPING_DE_JUIGNE,Europe/Paris,0,OAN, +OAN:SP:CAMUS05,1,"CAMUS",47.485125,-0.575907,-1,0,OAN:SA:zone_CAMUS,Europe/Paris,2,OAN, +OAN:SP:CAMUS5-E,1,"CAMUS",47.48502,-0.575835,-1,0,OAN:SA:zone_CAMUS,Europe/Paris,2,OAN, +OAN:SP:CANTCH-E,1,"CHAMP FLEURI CANTENAY",47.537268,-0.57111,-1,0,OAN:SA:zone_CHAMP_FLEURI_CANTENAY,Europe/Paris,2,OAN, +OAN:SP:CANTCHFL,1,"CHAMP FLEURI CANTENAY",47.537208,-0.57116,-1,0,OAN:SA:zone_CHAMP_FLEURI_CANTENAY,Europe/Paris,2,OAN, +OAN:SP:CANTPA-E,1,"PATIS",47.54037,-0.58237,-1,0,OAN:SA:zone_PATIS,Europe/Paris,2,OAN, +OAN:SP:CANTPAT,1,"PATIS",47.54048,-0.58238,-1,0,OAN:SA:zone_PATIS,Europe/Paris,2,OAN, +OAN:SP:CAPU8-C,1,"CAPUCINS",47.487426,-0.554827,-1,0,OAN:SA:zone_CAPUCINS,Europe/Paris,2,OAN, +OAN:SP:CAPU8-E,1,"CAPUCINS",47.487443,-0.554535,-1,0,OAN:SA:zone_CAPUCINS,Europe/Paris,2,OAN, +OAN:SP:CARCIT-E,1,"CARREFOUR SAINT SERGE",47.487616,-0.543218,-1,0,OAN:SA:zone_CARREFOUR_SAINT_SERGE,Europe/Paris,2,OAN, +OAN:SP:CARCITR,1,"CARREFOUR SAINT SERGE",47.487209,-0.543661,-1,0,OAN:SA:zone_CARREFOUR_SAINT_SERGE,Europe/Paris,2,OAN, +OAN:SP:CARLIN-E,1,"LINNE",47.446541,-0.547712,-1,0,OAN:SA:zone_LINNE,Europe/Paris,0,OAN, +OAN:SP:CARLINNE,1,"LINNE",47.446552,-0.547686,-1,0,OAN:SA:zone_LINNE,Europe/Paris,0,OAN, +OAN:SP:CARMET,1,"JEAN CARMET",47.400297,-0.543964,-1,0,OAN:SA:zone_JEAN_CARMET,Europe/Paris,2,OAN, +OAN:SP:CARMET-E,1,"JEAN CARMET",47.40061,-0.542629,-1,0,OAN:SA:zone_JEAN_CARMET,Europe/Paris,2,OAN, +OAN:SP:CARNOT,1,"CARNOT",47.474865,-0.547865,-1,0,OAN:SA:zone_CARNOT,Europe/Paris,2,OAN, +OAN:SP:CARNOT-E,1,"CARNOT",47.47477,-0.547236,-1,0,OAN:SA:zone_CARNOT,Europe/Paris,2,OAN, +OAN:SP:CARREA-E,1,"CARREAUX",47.511897,-0.471439,-1,0,OAN:SA:zone_CARREAUX,Europe/Paris,0,OAN, +OAN:SP:CARREAUX,1,"CARREAUX",47.51256,-0.471952,-1,0,OAN:SA:zone_CARREAUX,Europe/Paris,0,OAN, +OAN:SP:CARRF5B,1,"CARREFOUR ST SERGE",47.487993,-0.542548,-1,0,OAN:SA:zone_CARREFOUR_ST_SERGE,Europe/Paris,2,OAN, +OAN:SP:CARRSS-E,1,"CARREFOUR ST SERGE",47.488167,-0.543487,-1,0,OAN:SA:zone_CARREFOUR_ST_SERGE,Europe/Paris,2,OAN, +OAN:SP:CCADE-IR,1,"CENTRE COMMERCIAL CROIX CADEAU",47.517638,-0.608085,-1,0,OAN:SA:zone_CENTRE_COMMERCIAL_CROIX_CADEAU,Europe/Paris,2,OAN, +OAN:SP:CCADEA,1,"CROIX CADEAU",47.519939,-0.609437,-1,0,OAN:SA:zone_CROIX_CADEAU,Europe/Paris,0,OAN, +OAN:SP:CCADEA-E,1,"CROIX CADEAU",47.520195,-0.60961,-1,0,OAN:SA:zone_CROIX_CADEAU,Europe/Paris,2,OAN, +OAN:SP:CCBGPAI,1,"CENTRE COMMERCIAL BOURG DE PAILLE",47.473272,-0.62325,-1,0,OAN:SA:zone_CENTRE_COMMERCIAL_BOURG_DE_PAILLE,Europe/Paris,2,OAN, +OAN:SP:CCHEMI-E,1,"CROIX DE CHEMINEE",47.467562,-0.502891,-1,0,OAN:SA:zone_CROIX_DE_CHEMINEE,Europe/Paris,0,OAN, +OAN:SP:CCHEMINE,1,"CROIX DE CHEMINEE",47.467733,-0.50322,-1,0,OAN:SA:zone_CROIX_DE_CHEMINEE,Europe/Paris,0,OAN, +OAN:SP:CCOMME-E,1,"CENTRE COMMERCIAL",47.437798,-0.526808,-1,0,OAN:SA:zone_CENTRE_COMMERCIAL,Europe/Paris,0,OAN, +OAN:SP:CCOMMERC,1,"CENTRE COMMERCIAL",47.437782,-0.526661,-1,0,OAN:SA:zone_CENTRE_COMMERCIAL,Europe/Paris,0,OAN, +OAN:SP:CEEQUE-E,1,"CENTRE EQUESTRE",47.45958,-0.484518,-1,0,OAN:SA:zone_CENTRE_EQUESTRE,Europe/Paris,2,OAN, +OAN:SP:CEEQUEST,1,"CENTRE EQUESTRE",47.459563,-0.484681,-1,0,OAN:SA:zone_CENTRE_EQUESTRE,Europe/Paris,2,OAN, +OAN:SP:CESARG-E,1,"GEOFFRAY",47.458454,-0.545676,-1,0,OAN:SA:zone_GEOFFRAY,Europe/Paris,2,OAN, +OAN:SP:CESARGEO,1,"GEOFFRAY",47.458584,-0.545948,-1,0,OAN:SA:zone_GEOFFRAY,Europe/Paris,2,OAN, +OAN:SP:CEZAN-E,1,"CEZANNE",47.469643,-0.491965,-1,0,OAN:SA:zone_CEZANNE,Europe/Paris,2,OAN, +OAN:SP:CEZANNE,1,"CEZANNE",47.469794,-0.49198,-1,0,OAN:SA:zone_CEZANNE,Europe/Paris,2,OAN, +OAN:SP:CFPA,1,"AFPA",47.471531,-0.523351,-1,0,OAN:SA:zone_AFPA,Europe/Paris,2,OAN, +OAN:SP:CFPA-E,1,"AFPA",47.471456,-0.522763,-1,0,OAN:SA:zone_AFPA,Europe/Paris,2,OAN, +OAN:SP:CHABLA-E,1,"CHAMPS BLANCS",47.518326,-0.475419,-1,0,OAN:SA:zone_CHAMPS_BLANCS,Europe/Paris,2,OAN, +OAN:SP:CHABLANC,1,"CHAMPS BLANCS",47.518279,-0.475496,-1,0,OAN:SA:zone_CHAMPS_BLANCS,Europe/Paris,2,OAN, +OAN:SP:CHADL-E,1,"CHAMPDOLLANT",47.556423,-0.561455,-1,0,OAN:SA:zone_CHAMPDOLLANT,Europe/Paris,0,OAN, +OAN:SP:CHAERI-E,1,"CHATEAU ERIGNE",47.406342,-0.525954,-1,0,OAN:SA:zone_CHATEAU_ERIGNE,Europe/Paris,0,OAN, +OAN:SP:CHAERIGN,1,"CHATEAU ERIGNE",47.406471,-0.525829,-1,0,OAN:SA:zone_CHATEAU_ERIGNE,Europe/Paris,0,OAN, +OAN:SP:CHAGALL,1,"CHAGALL",47.56017,-0.677,-1,0,OAN:SA:zone_CHAGALL,Europe/Paris,2,OAN, +OAN:SP:CHALOU-E,1,"CHALOUERE",47.481419,-0.536576,-1,0,OAN:SA:zone_CHALOUERE,Europe/Paris,2,OAN, +OAN:SP:CHALOUER,1,"CHALOUERE",47.481361,-0.536705,-1,0,OAN:SA:zone_CHALOUERE,Europe/Paris,2,OAN, +OAN:SP:CHAMBO-E,1,"CHAMPBOUREAU",47.396632,-0.636697,-1,0,OAN:SA:zone_CHAMPBOUREAU,Europe/Paris,0,OAN, +OAN:SP:CHAMBOUR,1,"CHAMPBOUREAU",47.396576,-0.636707,-1,0,OAN:SA:zone_CHAMPBOUREAU,Europe/Paris,0,OAN, +OAN:SP:CHAMF-E,1,"CHAMPFLEUR",47.482599,-0.503977,-1,0,OAN:SA:zone_CHAMPFLEUR,Europe/Paris,0,OAN, +OAN:SP:CHAMFL,1,"CHAMPFLEUR",47.482912,-0.50406,-1,0,OAN:SA:zone_CHAMPFLEUR,Europe/Paris,0,OAN, +OAN:SP:CHAMPD,1,"CHAMPDOLLANT",47.556806,-0.56153,-1,0,OAN:SA:zone_CHAMPDOLLANT,Europe/Paris,0,OAN, +OAN:SP:CHANSONN,1,"ROUTE DE LA CHANSONNIERE",47.58372,-0.48365,-1,0,OAN:SA:zone_ROUTE_DE_LA_CHANSONNIERE,Europe/Paris,2,OAN, +OAN:SP:CHANT-AR,1,"CHANTOURTEAU",47.406141,-0.62199,-1,0,OAN:SA:zone_CHANTOURTEAU,Europe/Paris,0,OAN, +OAN:SP:CHANTE-E,1,"CHANTERIE",47.470989,-0.628208,-1,0,OAN:SA:zone_CHANTERIE,Europe/Paris,0,OAN, +OAN:SP:CHANTERI,1,"CHANTERIE",47.470867,-0.628029,-1,0,OAN:SA:zone_CHANTERIE,Europe/Paris,0,OAN, +OAN:SP:CHANTOUR,1,"CHANTOURTEAU",47.406158,-0.623079,-1,0,OAN:SA:zone_CHANTOURTEAU,Europe/Paris,2,OAN, +OAN:SP:CHANZY,1,"CHANZY",47.460161,-0.557327,-1,0,OAN:SA:zone_CHANZY,Europe/Paris,2,OAN, +OAN:SP:CHANZY-E,1,"CHANZY",47.460055,-0.557679,-1,0,OAN:SA:zone_CHANZY,Europe/Paris,2,OAN, +OAN:SP:CHARNA-E,1,"CHARNASSERIE",47.491936,-0.556652,-1,0,OAN:SA:zone_CHARNASSERIE,Europe/Paris,2,OAN, +OAN:SP:CHARNASS,1,"CHARNASSERIE",47.491547,-0.557773,-1,0,OAN:SA:zone_CHARNASSERIE,Europe/Paris,2,OAN, +OAN:SP:CHARRU-E,1,"CHARRUAU",47.37279,-0.50992,-1,0,OAN:SA:zone_CHARRUAU,Europe/Paris,2,OAN, +OAN:SP:CHARRUAU,1,"CHARRUAU",47.37301,-0.50996,-1,0,OAN:SA:zone_CHARRUAU,Europe/Paris,2,OAN, +OAN:SP:CHATEL-E,1,"CHATELAIN",47.483204,-0.514246,-1,0,OAN:SA:zone_CHATELAIN,Europe/Paris,2,OAN, +OAN:SP:CHATELAI,1,"CHATELAIN",47.482849,-0.514718,-1,0,OAN:SA:zone_CHATELAIN,Europe/Paris,0,OAN, +OAN:SP:CHATEN-E,1,"CHATENAY",47.482584,-0.521187,-1,0,OAN:SA:zone_CHATENAY,Europe/Paris,2,OAN, +OAN:SP:CHATENAY,1,"CHATENAY",47.482791,-0.521075,-1,0,OAN:SA:zone_CHATENAY,Europe/Paris,2,OAN, +OAN:SP:CHAU-E,1,"LA CHAUVELAIE",47.436457,-0.584394,-1,0,OAN:SA:zone_LA_CHAUVELAIE,Europe/Paris,0,OAN, +OAN:SP:CHAUMI-E,1,"CHAUMIERES",47.524145,-0.523193,-1,0,OAN:SA:zone_CHAUMIERES,Europe/Paris,0,OAN, +OAN:SP:CHAUMIER,1,"CHAUMIERES",47.524062,-0.523217,-1,0,OAN:SA:zone_CHAUMIERES,Europe/Paris,2,OAN, +OAN:SP:CHAUVE,1,"LA CHAUVELAIE",47.436521,-0.584332,-1,0,OAN:SA:zone_LA_CHAUVELAIE,Europe/Paris,0,OAN, +OAN:SP:CHBBEI-E,1,"CHAPELLE BELLE BEILLE",47.475311,-0.586044,-1,0,OAN:SA:zone_CHAPELLE_BELLE_BEILLE,Europe/Paris,2,OAN, +OAN:SP:CHBBEILL,1,"CHAPELLE BELLE BEILLE",47.475803,-0.586138,-1,0,OAN:SA:zone_CHAPELLE_BELLE_BEILLE,Europe/Paris,2,OAN, +OAN:SP:CHDARR,1,"CHATEAU D'ANGERS",47.468722,-0.559147,-1,0,OAN:SA:zone_CHATEAU_DANGERS,Europe/Paris,2,OAN, +OAN:SP:CHDARR-E,1,"CHATEAU D'ANGERS",47.469246,-0.560158,-1,0,OAN:SA:zone_CHATEAU_DANGERS,Europe/Paris,2,OAN, +OAN:SP:CHEMIPRE,1,"CHEMIN DU PRE",47.46728,-0.63565,-1,0,OAN:SA:zone_CHEMIN_DU_PRE,Europe/Paris,2,OAN, +OAN:SP:CHENAI-E,1,"LA CHENAIE",47.54803,-0.47452,-1,0,OAN:SA:zone_LA_CHENAIE,Europe/Paris,2,OAN, +OAN:SP:CHENAIE,1,"LA CHENAIE",47.54788,-0.47442,-1,0,OAN:SA:zone_LA_CHENAIE,Europe/Paris,2,OAN, +OAN:SP:CHENERON,1,"CHENE ROND",47.39575,-0.53665,-1,0,OAN:SA:zone_CHENE_ROND,Europe/Paris,2,OAN, +OAN:SP:CHENOI-E,1,"CHEMIN NOIR",47.529598,-0.591085,-1,0,OAN:SA:zone_CHEMIN_NOIR,Europe/Paris,2,OAN, +OAN:SP:CHENOIR,1,"CHEMIN NOIR",47.529323,-0.590551,-1,0,OAN:SA:zone_CHEMIN_NOIR,Europe/Paris,2,OAN, +OAN:SP:CHEPRE-E,1,"CHEMIN DU PRE",47.46722,-0.6355,-1,0,OAN:SA:zone_CHEMIN_DU_PRE,Europe/Paris,2,OAN, +OAN:SP:CHESNA-E,1,"LA CHESNAIE",47.437077,-0.523997,-1,0,OAN:SA:zone_LA_CHESNAIE,Europe/Paris,2,OAN, +OAN:SP:CHESNAIE,1,"LA CHESNAIE",47.437138,-0.524053,-1,0,OAN:SA:zone_LA_CHESNAIE,Europe/Paris,2,OAN, +OAN:SP:CHEVA-E,1,"CHEVALLERIE",47.554716,-0.660979,-1,0,OAN:SA:zone_CHEVALLERIE,Europe/Paris,0,OAN, +OAN:SP:CHEVAL,1,"CHEVALLERIE",47.554401,-0.659867,-1,0,OAN:SA:zone_CHEVALLERIE,Europe/Paris,0,OAN, +OAN:SP:CHEVRI-E,1,"CHEVRIERE",47.423893,-0.609195,-1,0,OAN:SA:zone_CHEVRIERE,Europe/Paris,0,OAN, +OAN:SP:CHEVRIER,1,"CHEVRIERE",47.423859,-0.60914,-1,0,OAN:SA:zone_CHEVRIERE,Europe/Paris,0,OAN, +OAN:SP:CHEVRO-E,1,"LYCEE CHEVROLLIER",47.454385,-0.55696,-1,0,OAN:SA:zone_LYCEE_CHEVROLLIER,Europe/Paris,2,OAN, +OAN:SP:CHEVROLL,1,"LYCEE CHEVROLLIER",47.454563,-0.556704,-1,0,OAN:SA:zone_LYCEE_CHEVROLLIER,Europe/Paris,2,OAN, +OAN:SP:CHMART-E,1,"CHAMP DES MARTYRS",47.490074,-0.582698,-1,0,OAN:SA:zone_CHAMP_DES_MARTYRS,Europe/Paris,2,OAN, +OAN:SP:CHMARTYR,1,"CHAMP DES MARTYRS",47.489788,-0.582975,-1,0,OAN:SA:zone_CHAMP_DES_MARTYRS,Europe/Paris,2,OAN, +OAN:SP:CHOUAN-E,1,"CHOUANIERE",47.458828,-0.59893,-1,0,OAN:SA:zone_CHOUANIERE,Europe/Paris,0,OAN, +OAN:SP:CHOUANIE,1,"CHOUANIERE",47.458885,-0.598866,-1,0,OAN:SA:zone_CHOUANIERE,Europe/Paris,0,OAN, +OAN:SP:CHOUTE-E,1,"CHOUTEAU",47.446182,-0.49702,-1,0,OAN:SA:zone_CHOUTEAU,Europe/Paris,2,OAN, +OAN:SP:CHOUTEAU,1,"CHOUTEAU",47.44622,-0.496982,-1,0,OAN:SA:zone_CHOUTEAU,Europe/Paris,2,OAN, +OAN:SP:CHPEGU-E,1,"CHARLES PEGUY",47.53,-0.620318,-1,0,OAN:SA:zone_CHARLES_PEGUY,Europe/Paris,2,OAN, +OAN:SP:CHPEGUY,1,"CHARLES PEGUY",47.529909,-0.620326,-1,0,OAN:SA:zone_CHARLES_PEGUY,Europe/Paris,2,OAN, +OAN:SP:CHVERT,1,"CHENE VERT",47.470289,-0.51482,-1,0,OAN:SA:zone_CHENE_VERT,Europe/Paris,2,OAN, +OAN:SP:CHVERT-E,1,"CHENE VERT",47.470381,-0.516581,-1,0,OAN:SA:zone_CHENE_VERT,Europe/Paris,2,OAN, +OAN:SP:CIAVRI-E,1,"CIMETIERE D'AVRILLE",47.506565,-0.590564,-1,0,OAN:SA:zone_CIMETIERE_DAVRILLE,Europe/Paris,2,OAN, +OAN:SP:CIAVRILL,1,"CIMETIERE D'AVRILLE",47.506432,-0.590888,-1,0,OAN:SA:zone_CIMETIERE_DAVRILLE,Europe/Paris,2,OAN, +OAN:SP:CIEST-E,1,"FRATELLINI",47.471541,-0.530892,-1,0,OAN:SA:zone_FRATELLINI,Europe/Paris,0,OAN, +OAN:SP:CIMEPO-E,1,"CIMETIERE DES PONTS DE CE",47.434349,-0.530098,-1,0,OAN:SA:zone_CIMETIERE_DES_PONTS_DE_CE,Europe/Paris,2,OAN, +OAN:SP:CIMEPONT,1,"CIMETIERE DES PONTS DE CE",47.434296,-0.52979,-1,0,OAN:SA:zone_CIMETIERE_DES_PONTS_DE_CE,Europe/Paris,2,OAN, +OAN:SP:CIMETI-E,1,"CIMETIERE DE L'EST",47.471276,-0.527763,-1,0,OAN:SA:zone_CIMETIERE_DE_LEST,Europe/Paris,2,OAN, +OAN:SP:CIMETIER,1,"CIMETIERE DE L'EST",47.471354,-0.527781,-1,0,OAN:SA:zone_CIMETIERE_DE_LEST,Europe/Paris,2,OAN, +OAN:SP:CIMETR-E,1,"CIMETIERE DE TRELAZE",47.446178,-0.462376,-1,0,OAN:SA:zone_CIMETIERE_DE_TRELAZE,Europe/Paris,2,OAN, +OAN:SP:CIMTRELA,1,"CIMETIERE DE TRELAZE",47.44641,-0.462495,-1,0,OAN:SA:zone_CIMETIERE_DE_TRELAZE,Europe/Paris,2,OAN, +OAN:SP:CIOUES-E,1,"CIMETIERE DE L'OUEST",47.479301,-0.570836,-1,0,OAN:SA:zone_CIMETIERE_DE_LOUEST,Europe/Paris,2,OAN, +OAN:SP:CIOUEST,1,"CIMETIERE DE L'OUEST",47.478558,-0.569693,-1,0,OAN:SA:zone_CIMETIERE_DE_LOUEST,Europe/Paris,2,OAN, +OAN:SP:CITESO-E,1,"LA CITE CHABADA",47.488401,-0.535917,-1,0,OAN:SA:zone_LA_CITE_CHABADA,Europe/Paris,2,OAN, +OAN:SP:CITESOLI,1,"LA CITE CHABADA",47.48845,-0.536105,-1,0,OAN:SA:zone_LA_CITE_CHABADA,Europe/Paris,2,OAN, +OAN:SP:CITEUN-E,1,"CITE UNIVERSITAIRE",47.478676,-0.598218,-1,0,OAN:SA:zone_CITE_UNIVERSITAIRE,Europe/Paris,2,OAN, +OAN:SP:CITEUNIV,1,"CITE UNIVERSITAIRE",47.478855,-0.597896,-1,0,OAN:SA:zone_CITE_UNIVERSITAIRE,Europe/Paris,2,OAN, +OAN:SP:CITRON-E,1,"CITRONNELLE",47.479353,-0.633786,-1,0,OAN:SA:zone_CITRONNELLE,Europe/Paris,2,OAN, +OAN:SP:CITRONNL,1,"CITRONNELLE",47.479421,-0.633949,-1,0,OAN:SA:zone_CITRONNELLE,Europe/Paris,2,OAN, +OAN:SP:CLAIE,1,"CLAIE",47.460697,-0.627264,-1,0,OAN:SA:zone_CLAIE,Europe/Paris,0,OAN, +OAN:SP:CLAIE-E,1,"CLAIE",47.460724,-0.627053,-1,0,OAN:SA:zone_CLAIE,Europe/Paris,0,OAN, +OAN:SP:CLART-E,1,"CLARTE",47.454044,-0.481288,-1,0,OAN:SA:zone_CLARTE,Europe/Paris,0,OAN, +OAN:SP:CLARTE,1,"CLARTE",47.454029,-0.481274,-1,0,OAN:SA:zone_CLARTE,Europe/Paris,0,OAN, +OAN:SP:CLAUDE-E,1,"CLAUDEL",47.449907,-0.56683,-1,0,OAN:SA:zone_CLAUDEL,Europe/Paris,2,OAN, +OAN:SP:CLAUDEL,1,"CLAUDEL",47.449589,-0.566215,-1,0,OAN:SA:zone_CLAUDEL,Europe/Paris,2,OAN, +OAN:SP:CLAVERIE,1,"CLAVERIE",47.486633,-0.504591,-1,0,OAN:SA:zone_CLAVERIE,Europe/Paris,2,OAN, +OAN:SP:CLEMEG-E,1,"EGLISE DE SAINT CLEMENT",47.524829,-0.745265,-1,0,OAN:SA:zone_EGLISE_DE_SAINT_CLEMENT,Europe/Paris,0,OAN, +OAN:SP:CLEMEGLI,1,"EGLISE DE SAINT CLEMENT",47.524832,-0.745578,-1,0,OAN:SA:zone_EGLISE_DE_SAINT_CLEMENT,Europe/Paris,0,OAN, +OAN:SP:CLEMOI-E,1,"CONSTANT LEMOINE",47.471807,-0.54227,-1,0,OAN:SA:zone_CONSTANT_LEMOINE,Europe/Paris,2,OAN, +OAN:SP:CLEMOINE,1,"CONSTANT LEMOINE",47.471974,-0.542067,-1,0,OAN:SA:zone_CONSTANT_LEMOINE,Europe/Paris,2,OAN, +OAN:SP:CLIANJ-E,1,"NERUDA",47.445176,-0.541096,-1,0,OAN:SA:zone_NERUDA,Europe/Paris,0,OAN, +OAN:SP:CLINANJO,1,"CLINIQUE DE L'ANJOU",47.444277,-0.539217,-1,0,OAN:SA:zone_CLINIQUE_DE_LANJOU,Europe/Paris,2,OAN, +OAN:SP:CLINIQ-E,1,"CLINIQUE SAINT DIDIER",47.485294,-0.587416,-1,0,OAN:SA:zone_CLINIQUE_SAINT_DIDIER,Europe/Paris,2,OAN, +OAN:SP:CLINIQUE,1,"CLINIQUE SAINT DIDIER",47.485168,-0.58713,-1,0,OAN:SA:zone_CLINIQUE_SAINT_DIDIER,Europe/Paris,2,OAN, +OAN:SP:CLODOR-E,1,"CLOS DOREAU",47.496327,-0.425182,-1,0,OAN:SA:zone_CLOS_DOREAU,Europe/Paris,0,OAN, +OAN:SP:CLODOREA,1,"CLOS DOREAU",47.496211,-0.425173,-1,0,OAN:SA:zone_CLOS_DOREAU,Europe/Paris,0,OAN, +OAN:SP:CLOS9-E,1,"CLOS NEUF",47.422515,-0.565444,-1,0,OAN:SA:zone_CLOS_NEUF,Europe/Paris,2,OAN, +OAN:SP:CLOSNEUF,1,"CLOS NEUF",47.422424,-0.565505,-1,0,OAN:SA:zone_CLOS_NEUF,Europe/Paris,2,OAN, +OAN:SP:CLOSVI-E,1,"CLOS DE LA VIGNE",47.441628,-0.61129,-1,0,OAN:SA:zone_CLOS_DE_LA_VIGNE,Europe/Paris,2,OAN, +OAN:SP:CLOSVIGN,1,"CLOS DE LA VIGNE",47.441634,-0.611383,-1,0,OAN:SA:zone_CLOS_DE_LA_VIGNE,Europe/Paris,2,OAN, +OAN:SP:CLOUET,1,"CLOUET",47.480267,-0.566162,-1,0,OAN:SA:zone_CLOUET,Europe/Paris,2,OAN, +OAN:SP:CLOUET-E,1,"CLOUET",47.480556,-0.566403,-1,0,OAN:SA:zone_CLOUET,Europe/Paris,2,OAN, +OAN:SP:CNFPT,1,"CNFPT",47.472406,-0.599811,-1,0,OAN:SA:zone_CNFPT,Europe/Paris,2,OAN, +OAN:SP:CNFPT-E,1,"CNFPT",47.472274,-0.600056,-1,0,OAN:SA:zone_CNFPT,Europe/Paris,2,OAN, +OAN:SP:COINTR-E,1,"COINTREAU",47.476467,-0.50742,-1,0,OAN:SA:zone_COINTREAU,Europe/Paris,0,OAN, +OAN:SP:COINTREA,1,"COINTREAU",47.476456,-0.507499,-1,0,OAN:SA:zone_COINTREAU,Europe/Paris,0,OAN, +OAN:SP:COLOM-E,1,"COLOMBIER",47.482354,-0.490461,-1,0,OAN:SA:zone_COLOMBIER,Europe/Paris,2,OAN, +OAN:SP:COLOMB,1,"COLOMBIER",47.482044,-0.490975,-1,0,OAN:SA:zone_COLOMBIER,Europe/Paris,2,OAN, +OAN:SP:COLTRIAR,1,"COLTRIE",47.485364,-0.675857,-1,0,OAN:SA:zone_COLTRIE,Europe/Paris,0,OAN, +OAN:SP:COLTRIE,1,"COLTRIE",47.485465,-0.675932,-1,0,OAN:SA:zone_COLTRIE,Europe/Paris,0,OAN, +OAN:SP:CORMI-E,1,"CORMIERS",47.458093,-0.51561,-1,0,OAN:SA:zone_CORMIERS,Europe/Paris,2,OAN, +OAN:SP:CORMIER,1,"CORMIERS",47.458148,-0.515533,-1,0,OAN:SA:zone_CORMIERS,Europe/Paris,2,OAN, +OAN:SP:COSSE,1,"COSSE",47.438239,-0.553259,-1,0,OAN:SA:zone_COSSE,Europe/Paris,0,OAN, +OAN:SP:COSSE-E,1,"COSSE",47.438282,-0.553354,-1,0,OAN:SA:zone_COSSE,Europe/Paris,0,OAN, +OAN:SP:COSSIERE,1,"COSSIERES",47.52566,-0.44787,-1,0,OAN:SA:zone_COSSIERES,Europe/Paris,2,OAN, +OAN:SP:COTTAG-E,1,"COTTAGE",47.494637,-0.515243,-1,0,OAN:SA:zone_COTTAGE,Europe/Paris,2,OAN, +OAN:SP:COTTAGE,1,"COTTAGE",47.494816,-0.515306,-1,0,OAN:SA:zone_COTTAGE,Europe/Paris,2,OAN, +OAN:SP:COUBER-E,1,"MILLOT COUBERTIN",47.458925,-0.532817,-1,0,OAN:SA:zone_MILLOT_COUBERTIN,Europe/Paris,0,OAN, +OAN:SP:COUBERTI,1,"MILLOT COUBERTIN",47.45917,-0.532946,-1,0,OAN:SA:zone_MILLOT_COUBERTIN,Europe/Paris,0,OAN, +OAN:SP:CRBEAU,1,"CROIX DE BEAUVAIS",47.611828,-0.585292,-1,0,OAN:SA:zone_CROIX_DE_BEAUVAIS,Europe/Paris,0,OAN, +OAN:SP:CRBEAU-E,1,"CROIX DE BEAUVAIS",47.611938,-0.585146,-1,0,OAN:SA:zone_CROIX_DE_BEAUVAIS,Europe/Paris,0,OAN, +OAN:SP:CRBLAN-E,1,"CROIX BLANCHE",47.48077,-0.517223,-1,0,OAN:SA:zone_CROIX_BLANCHE,Europe/Paris,0,OAN, +OAN:SP:CRBLANCH,1,"CROIX BLANCHE",47.480843,-0.5172,-1,0,OAN:SA:zone_CROIX_BLANCHE,Europe/Paris,0,OAN, +OAN:SP:CRESSO-E,1,"CRESSONNIERE",47.47337,-0.49273,-1,0,OAN:SA:zone_CRESSONNIERE,Europe/Paris,2,OAN, +OAN:SP:CRESSONN,1,"CRESSONNIERE",47.47348,-0.49303,-1,0,OAN:SA:zone_CRESSONNIERE,Europe/Paris,2,OAN, +OAN:SP:CRFRUX,1,"CROIX DES FRUX",47.503277,-0.691038,-1,0,OAN:SA:zone_CROIX_DES_FRUX,Europe/Paris,0,OAN, +OAN:SP:CRFRUX-E,1,"CROIX DES FRUX",47.503274,-0.690992,-1,0,OAN:SA:zone_CROIX_DES_FRUX,Europe/Paris,0,OAN, +OAN:SP:CROISE-E,1,"CROISETTE",47.45089,-0.600363,-1,0,OAN:SA:zone_CROISETTE,Europe/Paris,2,OAN, +OAN:SP:CROISETT,1,"CROISETTE",47.451336,-0.599751,-1,0,OAN:SA:zone_CROISETTE,Europe/Paris,2,OAN, +OAN:SP:CROIXV-E,1,"ROUTE DE BOUCHEMAINE",47.444944,-0.577247,-1,0,OAN:SA:zone_ROUTE_DE_BOUCHEMAINE,Europe/Paris,0,OAN, +OAN:SP:CROIXVER,1,"ROUTE DE BOUCHEMAINE",47.444906,-0.577144,-1,0,OAN:SA:zone_ROUTE_DE_BOUCHEMAINE,Europe/Paris,0,OAN, +OAN:SP:CSARTH-E,1,"CROIX DE SARTHE",47.540082,-0.569944,-1,0,OAN:SA:zone_CROIX_DE_SARTHE,Europe/Paris,0,OAN, +OAN:SP:CSARTHE,1,"CROIX DE SARTHE",47.539976,-0.570308,-1,0,OAN:SA:zone_CROIX_DE_SARTHE,Europe/Paris,0,OAN, +OAN:SP:CTRETR-E,1,"CENTRE DE TRI",47.452181,-0.570537,-1,0,OAN:SA:zone_CENTRE_DE_TRI,Europe/Paris,0,OAN, +OAN:SP:CTRETRI,1,"CENTRE DE TRI",47.452342,-0.570572,-1,0,OAN:SA:zone_CENTRE_DE_TRI,Europe/Paris,0,OAN, +OAN:SP:DAGUER-E,1,"DOJO DAGUERRE",47.44659,-0.506781,-1,0,OAN:SA:zone_DOJO_DAGUERRE,Europe/Paris,0,OAN, +OAN:SP:DAGUERRE,1,"DOJO DAGUERRE",47.446503,-0.506391,-1,0,OAN:SA:zone_DOJO_DAGUERRE,Europe/Paris,0,OAN, +OAN:SP:DANEMA,1,"DANEMARK",47.527782,-0.597565,-1,0,OAN:SA:zone_DANEMARK,Europe/Paris,2,OAN, +OAN:SP:DANEMA-E,1,"DANEMARK",47.527813,-0.597886,-1,0,OAN:SA:zone_DANEMARK,Europe/Paris,2,OAN, +OAN:SP:DANGELIN,1,"DANIEL GELIN",47.444727,-0.52726,-1,0,OAN:SA:zone_DANIEL_GELIN,Europe/Paris,2,OAN, +OAN:SP:DAUTEL,1,"DAUTEL",47.442818,-0.483269,-1,0,OAN:SA:zone_DAUTEL,Europe/Paris,0,OAN, +OAN:SP:DAUTEL-E,1,"DAUTEL",47.442833,-0.483428,-1,0,OAN:SA:zone_DAUTEL,Europe/Paris,0,OAN, +OAN:SP:DEBEAU-E,1,"DE BEAUVOIR",47.529022,-0.614737,-1,0,OAN:SA:zone_DE_BEAUVOIR,Europe/Paris,0,OAN, +OAN:SP:DEBEAUVO,1,"DE BEAUVOIR",47.528988,-0.614669,-1,0,OAN:SA:zone_DE_BEAUVOIR,Europe/Paris,0,OAN, +OAN:SP:DEBU22-E,1,"DEBUSSY",47.487554,-0.516272,-1,0,OAN:SA:zone_DEBUSSY,Europe/Paris,0,OAN, +OAN:SP:DEBU31-E,1,"COLLEGE DEBUSSY",47.488392,-0.516098,-1,0,OAN:SA:zone_COLLEGE_DEBUSSY,Europe/Paris,0,OAN, +OAN:SP:DEBUSS-E,1,"DEBUSSY",47.488392,-0.515878,-1,0,OAN:SA:zone_DEBUSSY,Europe/Paris,0,OAN, +OAN:SP:DEBUSS22,1,"DEBUSSY",47.487773,-0.516164,-1,0,OAN:SA:zone_DEBUSSY,Europe/Paris,0,OAN, +OAN:SP:DEBUSSY,1,"DEBUSSY",47.48827,-0.516098,-1,0,OAN:SA:zone_DEBUSSY,Europe/Paris,0,OAN, +OAN:SP:DEGAUL-E,1,"DE GAULLE",47.453209,-0.478272,-1,0,OAN:SA:zone_DE_GAULLE,Europe/Paris,0,OAN, +OAN:SP:DEGAULLE,1,"DE GAULLE",47.453236,-0.478273,-1,0,OAN:SA:zone_DE_GAULLE,Europe/Paris,0,OAN, +OAN:SP:DELACR-E,1,"DELACROIX",47.454906,-0.528763,-1,0,OAN:SA:zone_DELACROIX,Europe/Paris,2,OAN, +OAN:SP:DELACROI,1,"DELACROIX",47.454865,-0.528668,-1,0,OAN:SA:zone_DELACROIX,Europe/Paris,2,OAN, +OAN:SP:DELATA-E,1,"DE LATTRE",47.453234,-0.541346,-1,0,OAN:SA:zone_DE_LATTRE,Europe/Paris,2,OAN, +OAN:SP:DELATR-E,1,"DE LATTRE",47.452374,-0.541897,-1,0,OAN:SA:zone_DE_LATTRE,Europe/Paris,2,OAN, +OAN:SP:DELATTAS,1,"DE LATTRE",47.453345,-0.541233,-1,0,OAN:SA:zone_DE_LATTRE,Europe/Paris,2,OAN, +OAN:SP:DELATTRE,1,"DE LATTRE",47.452579,-0.541656,-1,0,OAN:SA:zone_DE_LATTRE,Europe/Paris,2,OAN, +OAN:SP:DELESC-E,1,"DELESCLUZE",47.465963,-0.605084,-1,0,OAN:SA:zone_DELESCLUZE,Europe/Paris,0,OAN, +OAN:SP:DELESCL,1,"DELESCLUZE",47.466092,-0.604972,-1,0,OAN:SA:zone_DELESCLUZE,Europe/Paris,0,OAN, +OAN:SP:DESCAZ-E,1,"DESCAZEAUX",47.476784,-0.566184,-1,0,OAN:SA:zone_DESCAZEAUX,Europe/Paris,2,OAN, +OAN:SP:DESCAZEA,1,"DESCAZEAUX",47.477409,-0.5659,-1,0,OAN:SA:zone_DESCAZEAUX,Europe/Paris,2,OAN, +OAN:SP:DESER-E,1,"DE SERRE",47.477741,-0.61479,-1,0,OAN:SA:zone_DE_SERRE,Europe/Paris,0,OAN, +OAN:SP:DESERRE,1,"DE SERRE",47.477818,-0.615284,-1,0,OAN:SA:zone_DE_SERRE,Europe/Paris,0,OAN, +OAN:SP:DESJAR-E,1,"DESJARDINS",47.477924,-0.530094,-1,0,OAN:SA:zone_DESJARDINS,Europe/Paris,2,OAN, +OAN:SP:DESJARDI,1,"DESJARDINS",47.478051,-0.530035,-1,0,OAN:SA:zone_DESJARDINS,Europe/Paris,2,OAN, +OAN:SP:DESMAZ,1,"DESMAZIERES",47.462479,-0.534506,-1,0,OAN:SA:zone_DESMAZIERES,Europe/Paris,2,OAN, +OAN:SP:DESMAZ-E,1,"DESMAZIERES",47.462681,-0.535008,-1,0,OAN:SA:zone_DESMAZIERES,Europe/Paris,0,OAN, +OAN:SP:DEUCRO-E,1,"2 CROIX",47.475071,-0.528932,-1,0,OAN:SA:zone_2_CROIX,Europe/Paris,2,OAN, +OAN:SP:DEUCROIX,1,"2 CROIX",47.475052,-0.529037,-1,0,OAN:SA:zone_2_CROIX,Europe/Paris,2,OAN, +OAN:SP:DEUVAL,1,"DEUX VALLEES",47.5678,-0.49966,-1,0,OAN:SA:zone_DEUX_VALLEES,Europe/Paris,2,OAN, +OAN:SP:DEUXCR,1,"2 CROIX",47.474815,-0.52844,-1,0,OAN:SA:zone_2_CROIX,Europe/Paris,2,OAN, +OAN:SP:DEUXCR-E,1,"2 CROIX",47.474808,-0.527975,-1,0,OAN:SA:zone_2_CROIX,Europe/Paris,2,OAN, +OAN:SP:DGELIN-E,1,"DANIEL GELIN",47.444727,-0.52726,-1,0,OAN:SA:zone_DANIEL_GELIN,Europe/Paris,2,OAN, +OAN:SP:DIONNE-E,1,"DIONNEAU",47.438576,-0.530299,-1,0,OAN:SA:zone_DIONNEAU,Europe/Paris,2,OAN, +OAN:SP:DIONNEAU,1,"DIONNEAU",47.438587,-0.53022,-1,0,OAN:SA:zone_DIONNEAU,Europe/Paris,2,OAN, +OAN:SP:DIONNI-E,1,"DIONNIERE",47.543669,-0.485098,-1,0,OAN:SA:zone_DIONNIERE,Europe/Paris,0,OAN, +OAN:SP:DIONNIER,1,"DIONNIERE",47.543661,-0.485086,-1,0,OAN:SA:zone_DIONNIERE,Europe/Paris,0,OAN, +OAN:SP:DIX8JU-E,1,"18 JUIN MONTREUIL",47.529587,-0.618051,-1,0,OAN:SA:zone_18_JUIN_MONTREUIL,Europe/Paris,0,OAN, +OAN:SP:DIX8JUI,1,"18 JUIN MONTREUIL",47.529591,-0.618158,-1,0,OAN:SA:zone_18_JUIN_MONTREUIL,Europe/Paris,0,OAN, +OAN:SP:DOLANTIN,1,"DOLANTINES",47.52792,-0.44495,-1,0,OAN:SA:zone_DOLANTINES,Europe/Paris,2,OAN, +OAN:SP:DOMCHENE,1,"DOMAINE DES CHENES",47.55904,-0.67329,-1,0,OAN:SA:zone_DOMAINE_DES_CHENES,Europe/Paris,2,OAN, +OAN:SP:DOMETA-E,1,"ROUTE DE L'ETANG",47.50791,-0.60723,-1,0,OAN:SA:zone_ROUTE_DE_LETANG,Europe/Paris,0,OAN, +OAN:SP:DOMETANG,1,"ROUTE DE L'ETANG",47.50714,-0.60772,-1,0,OAN:SA:zone_ROUTE_DE_LETANG,Europe/Paris,0,OAN, +OAN:SP:DOMVAL,1,"DOMAINE DU VAL",47.536877,-0.624887,-1,0,OAN:SA:zone_DOMAINE_DU_VAL,Europe/Paris,0,OAN, +OAN:SP:DOMVAL-E,1,"DOMAINE DU VAL",47.536794,-0.624949,-1,0,OAN:SA:zone_DOMAINE_DU_VAL,Europe/Paris,2,OAN, +OAN:SP:DOYENN-E,1,"DOYENNE",47.490613,-0.532345,-1,0,OAN:SA:zone_DOYENNE,Europe/Paris,0,OAN, +OAN:SP:DOYENNE,1,"DOYENNE",47.4906,-0.53253,-1,0,OAN:SA:zone_DOYENNE,Europe/Paris,0,OAN, +OAN:SP:DSBA-ENT,1,"ZI EST",47.474871,-0.495772,-1,0,OAN:SA:zone_ZI_EST,Europe/Paris,0,OAN, +OAN:SP:DSBAR-CV,1,"ZI EST",47.475233,-0.495685,-1,0,OAN:SA:zone_ZI_EST,Europe/Paris,2,OAN, +OAN:SP:DSCAZE-E,1,"DESCAZEAUX",47.476196,-0.565926,-1,0,OAN:SA:zone_DESCAZEAUX,Europe/Paris,2,OAN, +OAN:SP:DSCAZEAU,1,"DESCAZEAUX",47.476589,-0.567116,-1,0,OAN:SA:zone_DESCAZEAUX,Europe/Paris,2,OAN, +OAN:SP:DUBE,1,"DUBE",47.415825,-0.523188,-1,0,OAN:SA:zone_DUBE,Europe/Paris,2,OAN, +OAN:SP:DUBE-E,1,"DUBE",47.415413,-0.523179,-1,0,OAN:SA:zone_DUBE,Europe/Paris,2,OAN, +OAN:SP:DUBELL-E,1,"DU BELLAY",47.492172,-0.513279,-1,0,OAN:SA:zone_DU_BELLAY,Europe/Paris,0,OAN, +OAN:SP:DUBELLAY,1,"DU BELLAY",47.492432,-0.513306,-1,0,OAN:SA:zone_DU_BELLAY,Europe/Paris,0,OAN, +OAN:SP:DUMESN-E,1,"DUMESNIL",47.47381,-0.566978,-1,0,OAN:SA:zone_DUMESNIL,Europe/Paris,2,OAN, +OAN:SP:DUMESNIL,1,"DUMESNIL MONPROFIT",47.473695,-0.567264,-1,0,OAN:SA:zone_DUMESNIL_MONPROFIT,Europe/Paris,2,OAN, +OAN:SP:DUMNACUS,1,"DUMNACUS",47.786323,-0.592092,-1,0,OAN:SA:zone_DUMNACUS,Europe/Paris,0,OAN, +OAN:SP:DUNAN,1,"DUNANT",47.483498,-0.525575,-1,0,OAN:SA:zone_DUNANT,Europe/Paris,0,OAN, +OAN:SP:DUNAN-E,1,"DUNANT",47.483396,-0.525728,-1,0,OAN:SA:zone_DUNANT,Europe/Paris,2,OAN, +OAN:SP:DURVIL-E,1,"DUMONT D'URVILLE",47.445099,-0.5572,-1,0,OAN:SA:zone_DUMONT_DURVILLE,Europe/Paris,2,OAN, +OAN:SP:DURVILLE,1,"DUMONT D'URVILLE",47.445145,-0.557176,-1,0,OAN:SA:zone_DUMONT_DURVILLE,Europe/Paris,2,OAN, +OAN:SP:EBEAUP-E,1,"EBEAUPIN",47.464419,-0.624819,-1,0,OAN:SA:zone_EBEAUPIN,Europe/Paris,0,OAN, +OAN:SP:EBEAUPIN,1,"EBEAUPIN",47.464365,-0.624679,-1,0,OAN:SA:zone_EBEAUPIN,Europe/Paris,0,OAN, +OAN:SP:EBLE,1,"EBLE",47.455338,-0.566343,-1,0,OAN:SA:zone_EBLE,Europe/Paris,2,OAN, +OAN:SP:EBLE-E,1,"EBLE",47.455383,-0.566279,-1,0,OAN:SA:zone_EBLE,Europe/Paris,2,OAN, +OAN:SP:ECHATS,1,"ECHATS",47.480776,-0.632006,-1,0,OAN:SA:zone_ECHATS,Europe/Paris,2,OAN, +OAN:SP:ECHATS-E,1,"ECHATS",47.481021,-0.631914,-1,0,OAN:SA:zone_ECHATS,Europe/Paris,2,OAN, +OAN:SP:ECHMA-E,1,"ECHMAN",47.490879,-0.576195,-1,0,OAN:SA:zone_ECHMAN,Europe/Paris,2,OAN, +OAN:SP:ECHMAN,1,"ECHMAN",47.490231,-0.575762,-1,0,OAN:SA:zone_ECHMAN,Europe/Paris,2,OAN, +OAN:SP:ECLATE-E,1,"ECLATERIES",47.451153,-0.519975,-1,0,OAN:SA:zone_ECLATERIES,Europe/Paris,2,OAN, +OAN:SP:ECLATERI,1,"ECLATERIES",47.451374,-0.520492,-1,0,OAN:SA:zone_ECLATERIES,Europe/Paris,2,OAN, +OAN:SP:ECOTIE-E,1,"ECOTIERE",47.364456,-0.504988,-1,0,OAN:SA:zone_ECOTIERE,Europe/Paris,0,OAN, +OAN:SP:ECOTIERE,1,"ECOTIERE",47.363934,-0.504602,-1,0,OAN:SA:zone_ECOTIERE,Europe/Paris,0,OAN, +OAN:SP:ECUIL-E,1,"ECUILLE",47.616073,-0.562469,-1,0,OAN:SA:zone_ECUILLE,Europe/Paris,0,OAN, +OAN:SP:ECUILL,1,"ECUILLE",47.616111,-0.562674,-1,0,OAN:SA:zone_ECUILLE,Europe/Paris,0,OAN, +OAN:SP:EDF,1,"BERGERIE",47.487471,-0.471337,-1,0,OAN:SA:zone_BERGERIE,Europe/Paris,0,OAN, +OAN:SP:EDF-E,1,"BERGERIE",47.487421,-0.47135,-1,0,OAN:SA:zone_BERGERIE,Europe/Paris,0,OAN, +OAN:SP:EGLTRE-E,1,"EGLISE DE TRELAZE",47.445515,-0.464849,-1,0,OAN:SA:zone_EGLISE_DE_TRELAZE,Europe/Paris,2,OAN, +OAN:SP:EGLTRELA,1,"EGLISE DE TRELAZE",47.445515,-0.464889,-1,0,OAN:SA:zone_EGLISE_DE_TRELAZE,Europe/Paris,2,OAN, +OAN:SP:ELYSEE,1,"ELYSEE",47.473583,-0.584609,-1,0,OAN:SA:zone_ELYSEE,Europe/Paris,0,OAN, +OAN:SP:ELYSEE-E,1,"ELYSEE",47.473638,-0.58493,-1,0,OAN:SA:zone_ELYSEE,Europe/Paris,0,OAN, +OAN:SP:EMPIRE,1,"EMPIRE",47.423148,-0.592871,-1,0,OAN:SA:zone_EMPIRE,Europe/Paris,0,OAN, +OAN:SP:EMPIRE-E,1,"EMPIRE",47.422868,-0.593194,-1,0,OAN:SA:zone_EMPIRE,Europe/Paris,0,OAN, +OAN:SP:EPIRE,1,"EPIRE",47.398563,-0.634606,-1,0,OAN:SA:zone_EPIRE,Europe/Paris,0,OAN, +OAN:SP:EPIRE-E,1,"EPIRE",47.398196,-0.634451,-1,0,OAN:SA:zone_EPIRE,Europe/Paris,0,OAN, +OAN:SP:ERIGNE,1,"ERIGNE",47.400465,-0.531061,-1,0,OAN:SA:zone_ERIGNE,Europe/Paris,2,OAN, +OAN:SP:ERIGNE-E,1,"ERIGNE",47.401424,-0.529747,-1,0,OAN:SA:zone_ERIGNE,Europe/Paris,2,OAN, +OAN:SP:ESA,1,"ESA",47.458501,-0.544922,-1,0,OAN:SA:zone_ESA,Europe/Paris,2,OAN, +OAN:SP:ESA-E,1,"ESA",47.45895,-0.545318,-1,0,OAN:SA:zone_ESA,Europe/Paris,2,OAN, +OAN:SP:ESCALAV,1,"ESSCA",47.477318,-0.59886,-1,0,OAN:SA:zone_ESSCA,Europe/Paris,2,OAN, +OAN:SP:ESNAUD-E,1,"L'ESNAUDERIE",47.5931,-0.54963,-1,0,OAN:SA:zone_LESNAUDERIE,Europe/Paris,2,OAN, +OAN:SP:ESNAUDER,1,"L'ESNAUDERIE",47.59329,-0.54957,-1,0,OAN:SA:zone_LESNAUDERIE,Europe/Paris,2,OAN, +OAN:SP:ESP-LON,1,"ESPACE LONGUENEE",47.540089,-0.67293,-1,0,OAN:SA:zone_ESPACE_LONGUENEE,Europe/Paris,2,OAN, +OAN:SP:ESPACE5A,1,"ESPACE ANJOU",47.467419,-0.52033,-1,0,OAN:SA:zone_ESPACE_ANJOU,Europe/Paris,2,OAN, +OAN:SP:ESPACE5B,1,"ESPACE ANJOU",47.467594,-0.520486,-1,0,OAN:SA:zone_ESPACE_ANJOU,Europe/Paris,2,OAN, +OAN:SP:ESPACEAN,1,"ESPACE ANJOU",47.468164,-0.526039,-1,0,OAN:SA:zone_ESPACE_ANJOU,Europe/Paris,0,OAN, +OAN:SP:ESPAJEUN,1,"MAISON DE LA DANSE",47.488823,-0.584874,-1,0,OAN:SA:zone_MAISON_DE_LA_DANSE,Europe/Paris,2,OAN, +OAN:SP:ESPJEU-E,1,"MAISON DE LA DANSE",47.488522,-0.585402,-1,0,OAN:SA:zone_MAISON_DE_LA_DANSE,Europe/Paris,2,OAN, +OAN:SP:ESPLO-E,1,"ESPACE LONGUENEE",47.540237,-0.672806,-1,0,OAN:SA:zone_ESPACE_LONGUENEE,Europe/Paris,2,OAN, +OAN:SP:ESPMON-E,1,"ESPERANTO",47.529503,-0.603654,-1,0,OAN:SA:zone_ESPERANTO,Europe/Paris,2,OAN, +OAN:SP:ESPMONTR,1,"ESPERANTO",47.529476,-0.603652,-1,0,OAN:SA:zone_ESPERANTO,Europe/Paris,2,OAN, +OAN:SP:ESSCA,1,"ESSCA",47.476769,-0.599228,-1,0,OAN:SA:zone_ESSCA,Europe/Paris,2,OAN, +OAN:SP:ESSCA-E,1,"ESSCA",47.476669,-0.597497,-1,0,OAN:SA:zone_ESSCA,Europe/Paris,0,OAN, +OAN:SP:ESTAMI-E,1,"ESTAMINET",47.56595,-0.50351,-1,0,OAN:SA:zone_ESTAMINET,Europe/Paris,2,OAN, +OAN:SP:ESTAMINE,1,"ESTAMINET",47.56604,-0.50362,-1,0,OAN:SA:zone_ESTAMINET,Europe/Paris,2,OAN, +OAN:SP:ETAS,1,"ETAS",47.524514,-0.619963,-1,0,OAN:SA:zone_ETAS,Europe/Paris,0,OAN, +OAN:SP:ETAS-E,1,"ETAS",47.524514,-0.619963,-1,0,OAN:SA:zone_ETAS,Europe/Paris,0,OAN, +OAN:SP:EURPORCH,1,"PLACE DE L'EUROPE",47.487564,-0.52825,-1,0,OAN:SA:zone_PLACE_DE_LEUROPE,Europe/Paris,2,OAN, +OAN:SP:EVENTAT,1,"EVENTARD",47.496839,-0.51495,-1,0,OAN:SA:zone_EVENTARD,Europe/Paris,0,OAN, +OAN:SP:FACUL-SS,1,"FACULTE",47.479286,-0.550986,-1,0,OAN:SA:zone_FACULTE,Europe/Paris,2,OAN, +OAN:SP:FACULT-E,1,"FACULTE",47.479292,-0.550747,-1,0,OAN:SA:zone_FACULTE,Europe/Paris,2,OAN, +OAN:SP:FARCY,1,"BALZAC",47.472437,-0.576116,-1,0,OAN:SA:zone_BALZAC,Europe/Paris,0,OAN, +OAN:SP:FARCY-E,1,"BALZAC",47.472596,-0.576244,-1,0,OAN:SA:zone_BALZAC,Europe/Paris,0,OAN, +OAN:SP:FENCH-E,1,"CHAMP FLEURI FENEU",47.56784,-0.57951,-1,0,OAN:SA:zone_CHAMP_FLEURI_FENEU,Europe/Paris,2,OAN, +OAN:SP:FENCHFL,1,"CHAMP FLEURI FENEU",47.56797,-0.57942,-1,0,OAN:SA:zone_CHAMP_FLEURI_FENEU,Europe/Paris,2,OAN, +OAN:SP:FENEUBUS,1,"EGLISE DE FENEU",47.569565,-0.594392,-1,0,OAN:SA:zone_EGLISE_DE_FENEU,Europe/Paris,2,OAN, +OAN:SP:FFAURE,1,"FELIX FAURE",47.485615,-0.547319,-1,0,OAN:SA:zone_FELIX_FAURE,Europe/Paris,0,OAN, +OAN:SP:FFAURE-E,1,"FELIX FAURE",47.485534,-0.546982,-1,0,OAN:SA:zone_FELIX_FAURE,Europe/Paris,0,OAN, +OAN:SP:FIEFGENT,1,"FIEF GENTIL",47.533256,-0.526258,-1,0,OAN:SA:zone_FIEF_GENTIL,Europe/Paris,0,OAN, +OAN:SP:FIEGEN-E,1,"FIEF GENTIL",47.533228,-0.526021,-1,0,OAN:SA:zone_FIEF_GENTIL,Europe/Paris,0,OAN, +OAN:SP:FMEDEC-E,1,"FAC. DE MEDECINE",47.487011,-0.552719,-1,0,OAN:SA:zone_FAC_DE_MEDECINE,Europe/Paris,0,OAN, +OAN:SP:FMEDECIN,1,"FAC. DE MEDECINE",47.487061,-0.552828,-1,0,OAN:SA:zone_FAC_DE_MEDECINE,Europe/Paris,0,OAN, +OAN:SP:FMITTE-E,1,"FRANCOIS MITTERRAND",47.476582,-0.551105,-1,0,OAN:SA:zone_FRANCOIS_MITTERRAND,Europe/Paris,2,OAN, +OAN:SP:FMITTERA,1,"FRANCOIS MITTERRAND",47.476627,-0.551903,-1,0,OAN:SA:zone_FRANCOIS_MITTERRAND,Europe/Paris,2,OAN, +OAN:SP:FO-LOR-R,1,"FOCH MAISON BLEUE",47.469681,-0.548872,-1,0,OAN:SA:zone_FOCH_MAISON_BLEUE,Europe/Paris,2,OAN, +OAN:SP:FONTAI-E,1,"LA FONTAINE",47.570567,-0.591582,-1,0,OAN:SA:zone_LA_FONTAINE,Europe/Paris,0,OAN, +OAN:SP:FONTAINE,1,"LA FONTAINE",47.569635,-0.590499,-1,0,OAN:SA:zone_LA_FONTAINE,Europe/Paris,0,OAN, +OAN:SP:FORGES,1,"LES FORGES",47.386489,-0.645249,-1,0,OAN:SA:zone_LES_FORGES,Europe/Paris,0,OAN, +OAN:SP:FORGES-E,1,"LES FORGES",47.386292,-0.645081,-1,0,OAN:SA:zone_LES_FORGES,Europe/Paris,0,OAN, +OAN:SP:FOUDON,1,"FOUDON",47.49222,-0.42536,-1,0,OAN:SA:zone_FOUDON,Europe/Paris,2,OAN, +OAN:SP:FOUDON-E,1,"FOUDON",47.49217,-0.42518,-1,0,OAN:SA:zone_FOUDON,Europe/Paris,2,OAN, +OAN:SP:FOUQUE-E,1,"FOUQUETTERIE",47.46832,-0.705178,-1,0,OAN:SA:zone_FOUQUETTERIE,Europe/Paris,0,OAN, +OAN:SP:FOUQUETT,1,"FOUQUETTERIE",47.467944,-0.705195,-1,0,OAN:SA:zone_FOUQUETTERIE,Europe/Paris,0,OAN, +OAN:SP:FOURER-E,1,"LA FOURERIE",47.54632,-0.47807,-1,0,OAN:SA:zone_LA_FOURERIE,Europe/Paris,2,OAN, +OAN:SP:FOURERIE,1,"LA FOURERIE",47.54619,-0.47798,-1,0,OAN:SA:zone_LA_FOURERIE,Europe/Paris,2,OAN, +OAN:SP:FOUSSE-E,1,"FOUSSEAUX",47.515793,-0.468549,-1,0,OAN:SA:zone_FOUSSEAUX,Europe/Paris,0,OAN, +OAN:SP:FOUSSEAU,1,"FOUSSEAUX",47.515785,-0.468535,-1,0,OAN:SA:zone_FOUSSEAUX,Europe/Paris,0,OAN, +OAN:SP:FRANCA-E,1,"FRANCAISERIE",47.521492,-0.466192,-1,0,OAN:SA:zone_FRANCAISERIE,Europe/Paris,2,OAN, +OAN:SP:FRANCAIS,1,"FRANCAISERIE",47.520897,-0.465829,-1,0,OAN:SA:zone_FRANCAISERIE,Europe/Paris,2,OAN, +OAN:SP:FRANVI-E,1,"VILLON",47.433601,-0.522908,-1,0,OAN:SA:zone_VILLON,Europe/Paris,2,OAN, +OAN:SP:FRANVILL,1,"VILLON",47.433739,-0.523115,-1,0,OAN:SA:zone_VILLON,Europe/Paris,2,OAN, +OAN:SP:FRATE-E,1,"FRATERNITE",47.490726,-0.561473,-1,0,OAN:SA:zone_FRATERNITE,Europe/Paris,2,OAN, +OAN:SP:FRATER,1,"FRATERNITE",47.490726,-0.561473,-1,0,OAN:SA:zone_FRATERNITE,Europe/Paris,2,OAN, +OAN:SP:FRAVISCO,1,"FRANCOIS VILLON PARKING",47.433156,-0.522406,-1,0,OAN:SA:zone_FRANCOIS_VILLON_PARKING,Europe/Paris,2,OAN, +OAN:SP:FRCEVE-E,1,"CEVERT",47.446651,-0.543684,-1,0,OAN:SA:zone_CEVERT,Europe/Paris,2,OAN, +OAN:SP:FRCEVERT,1,"CEVERT",47.446327,-0.544078,-1,0,OAN:SA:zone_CEVERT,Europe/Paris,2,OAN, +OAN:SP:FREMON-E,1,"FREMOND",47.485592,-0.561565,-1,0,OAN:SA:zone_FREMOND,Europe/Paris,0,OAN, +OAN:SP:FREMONT,1,"FREMOND",47.485676,-0.562128,-1,0,OAN:SA:zone_FREMOND,Europe/Paris,0,OAN, +OAN:SP:FREMUR,1,"FREMUR",47.458719,-0.558205,-1,0,OAN:SA:zone_FREMUR,Europe/Paris,2,OAN, +OAN:SP:FREMUR-E,1,"FREMUR",47.458646,-0.558228,-1,0,OAN:SA:zone_FREMUR,Europe/Paris,2,OAN, +OAN:SP:FRESN-AR,1,"LE FRESNE",47.442438,-0.583639,-1,0,OAN:SA:zone_LE_FRESNE,Europe/Paris,0,OAN, +OAN:SP:FRESNA-E,1,"FRESNAIES",47.448273,-0.5009,-1,0,OAN:SA:zone_FRESNAIES,Europe/Paris,2,OAN, +OAN:SP:FRESNAIE,1,"FRESNAIES",47.448059,-0.500503,-1,0,OAN:SA:zone_FRESNAIES,Europe/Paris,2,OAN, +OAN:SP:FRESNE,1,"LE FRESNE",47.442453,-0.583651,-1,0,OAN:SA:zone_LE_FRESNE,Europe/Paris,0,OAN, +OAN:SP:FRMEIL-E,1,"MEILLAND",47.448566,-0.546256,-1,0,OAN:SA:zone_MEILLAND,Europe/Paris,2,OAN, +OAN:SP:FRMEILLA,1,"MEILLAND",47.447964,-0.546595,-1,0,OAN:SA:zone_MEILLAND,Europe/Paris,0,OAN, +OAN:SP:FROMIO-E,1,"LE FROMIOUX",47.51008,-0.71703,-1,0,OAN:SA:zone_LE_FROMIOUX,Europe/Paris,2,OAN, +OAN:SP:FROMIOUX,1,"LE FROMIOUX",47.50899,-0.71492,-1,0,OAN:SA:zone_LE_FROMIOUX,Europe/Paris,2,OAN, +OAN:SP:FRONDEMA,1,"FRONT DE MAINE",47.472469,-0.566533,-1,0,OAN:SA:zone_FRONT_DE_MAINE,Europe/Paris,2,OAN, +OAN:SP:FRONDM-E,1,"FRONT DE MAINE",47.472334,-0.566273,-1,0,OAN:SA:zone_FRONT_DE_MAINE,Europe/Paris,2,OAN, +OAN:SP:FUNAUL-E,1,"FUNAULT",47.53455,-0.45658,-1,0,OAN:SA:zone_FUNAULT,Europe/Paris,2,OAN, +OAN:SP:FUNAULT,1,"FUNAULT",47.53465,-0.4566,-1,0,OAN:SA:zone_FUNAULT,Europe/Paris,2,OAN, +OAN:SP:GAIGNE,1,"GAIGNE",47.38398,-0.55243,-1,0,OAN:SA:zone_GAIGNE,Europe/Paris,2,OAN, +OAN:SP:GALIL-E,1,"GALILEE",47.456792,-0.667711,-1,0,OAN:SA:zone_GALILEE,Europe/Paris,0,OAN, +OAN:SP:GALILEE,1,"GALILEE",47.456351,-0.667408,-1,0,OAN:SA:zone_GALILEE,Europe/Paris,0,OAN, +OAN:SP:GALLI-E,1,"GALLIENI",47.434788,-0.524431,-1,0,OAN:SA:zone_GALLIENI,Europe/Paris,2,OAN, +OAN:SP:GALLIE,1,"GALLIENI",47.434654,-0.524755,-1,0,OAN:SA:zone_GALLIENI,Europe/Paris,2,OAN, +OAN:SP:GARDON-E,1,"GARDONNE",47.52177,-0.471841,-1,0,OAN:SA:zone_GARDONNE,Europe/Paris,2,OAN, +OAN:SP:GARDONNE,1,"GARDONNE",47.521778,-0.471881,-1,0,OAN:SA:zone_GARDONNE,Europe/Paris,2,OAN, +OAN:SP:GARDOT,1,"GARDOT",47.468292,-0.533399,-1,0,OAN:SA:zone_GARDOT,Europe/Paris,2,OAN, +OAN:SP:GARDOT-E,1,"GARDOT",47.468212,-0.533434,-1,0,OAN:SA:zone_GARDOT,Europe/Paris,2,OAN, +OAN:SP:GAREBO-E,1,"GARE DE BOUCHEMAINE",47.416639,-0.614855,-1,0,OAN:SA:zone_GARE_DE_BOUCHEMAINE,Europe/Paris,2,OAN, +OAN:SP:GAREBOUC,1,"GARE DE BOUCHEMAINE",47.416594,-0.614852,-1,0,OAN:SA:zone_GARE_DE_BOUCHEMAINE,Europe/Paris,0,OAN, +OAN:SP:GARECO-E,1,"GARE D'ECOUFLANT",47.503916,-0.519653,-1,0,OAN:SA:zone_GARE_DECOUFLANT,Europe/Paris,0,OAN, +OAN:SP:GARECOUF,1,"GARE D'ECOUFLANT",47.50356,-0.520126,-1,0,OAN:SA:zone_GARE_DECOUFLANT,Europe/Paris,0,OAN, +OAN:SP:GAREPA-E,1,"GARES PAPIN",47.465171,-0.55754,-1,0,OAN:SA:zone_GARES_PAPIN,Europe/Paris,0,OAN, +OAN:SP:GAREPAPI,1,"GARES PAPIN",47.46494,-0.557787,-1,0,OAN:SA:zone_GARES_PAPIN,Europe/Paris,0,OAN, +OAN:SP:GARESEMA,1,"GARES SEMARD",47.46497,-0.559488,-1,0,OAN:SA:zone_GARES_SEMARD,Europe/Paris,0,OAN, +OAN:SP:GARESNCF,1,"LES GARES",47.464733,-0.558147,-1,0,OAN:SA:zone_LES_GARES,Europe/Paris,0,OAN, +OAN:SP:GARR-AR,1,"GARES SEMARD",47.464687,-0.560003,-1,0,OAN:SA:zone_GARES_SEMARD,Europe/Paris,0,OAN, +OAN:SP:GASNIE-E,1,"GASNIER",47.485203,-0.571729,-1,0,OAN:SA:zone_GASNIER,Europe/Paris,2,OAN, +OAN:SP:GASNIER,1,"GASNIER",47.485237,-0.571824,-1,0,OAN:SA:zone_GASNIER,Europe/Paris,2,OAN, +OAN:SP:GASPAL-E,1,"GASPALON",47.452862,-0.507222,-1,0,OAN:SA:zone_GASPALON,Europe/Paris,0,OAN, +OAN:SP:GASPALON,1,"GASPALON",47.453312,-0.506954,-1,0,OAN:SA:zone_GASPALON,Europe/Paris,0,OAN, +OAN:SP:GATS,1,"LES GATS",47.474389,-0.517611,-1,0,OAN:SA:zone_LES_GATS,Europe/Paris,2,OAN, +OAN:SP:GATS-E,1,"LES GATS",47.474354,-0.516839,-1,0,OAN:SA:zone_LES_GATS,Europe/Paris,2,OAN, +OAN:SP:GAUBER-E,1,"GAUBERT",47.475296,-0.599519,-1,0,OAN:SA:zone_GAUBERT,Europe/Paris,2,OAN, +OAN:SP:GAUBERT,1,"GAUBERT",47.474586,-0.599785,-1,0,OAN:SA:zone_GAUBERT,Europe/Paris,2,OAN, +OAN:SP:GAUBLOCA,1,"GAUBOURGS",47.448315,-0.572502,-1,0,OAN:SA:zone_GAUBOURGS,Europe/Paris,0,OAN, +OAN:SP:GAUBLOCB,1,"GAUBOURGS",47.4486,-0.573298,-1,0,OAN:SA:zone_GAUBOURGS,Europe/Paris,0,OAN, +OAN:SP:GAUBOU-E,1,"GAUBOURGS",47.449312,-0.572954,-1,0,OAN:SA:zone_GAUBOURGS,Europe/Paris,0,OAN, +OAN:SP:GAUBOUR5,1,"GAUBOURGS",47.448022,-0.572366,-1,0,OAN:SA:zone_GAUBOURGS,Europe/Paris,2,OAN, +OAN:SP:GBREM-E,1,"GARES BREMONT",47.465291,-0.559571,-1,0,OAN:SA:zone_GARES_BREMONT,Europe/Paris,2,OAN, +OAN:SP:GDMAIN-E,1,"GRAND MAINE",47.467388,-0.593614,-1,0,OAN:SA:zone_GRAND_MAINE,Europe/Paris,2,OAN, +OAN:SP:GDMAINE,1,"GRAND MAINE",47.467619,-0.593016,-1,0,OAN:SA:zone_GRAND_MAINE,Europe/Paris,2,OAN, +OAN:SP:GDMOTTAY,1,"GRAND MOTTAY",47.576,-0.47727,-1,0,OAN:SA:zone_GRAND_MOTTAY,Europe/Paris,2,OAN, +OAN:SP:GDPERI-E,1,"GRAND PERIGNE",47.473857,-0.614627,-1,0,OAN:SA:zone_GRAND_PERIGNE,Europe/Paris,2,OAN, +OAN:SP:GDPERIGN,1,"GRAND PERIGNE",47.473869,-0.614854,-1,0,OAN:SA:zone_GRAND_PERIGNE,Europe/Paris,2,OAN, +OAN:SP:GDPRES-E,1,"GRAND PRESSOIR",47.399429,-0.528182,-1,0,OAN:SA:zone_GRAND_PRESSOIR,Europe/Paris,0,OAN, +OAN:SP:GDPRESSO,1,"GRAND PRESSOIR",47.399456,-0.527772,-1,0,OAN:SA:zone_GRAND_PRESSOIR,Europe/Paris,2,OAN, +OAN:SP:GEMMET-E,1,"GEMMETRIE",47.463297,-0.499339,-1,0,OAN:SA:zone_GEMMETRIE,Europe/Paris,2,OAN, +OAN:SP:GEMMETR,1,"GEMMETRIE",47.46321,-0.499167,-1,0,OAN:SA:zone_GEMMETRIE,Europe/Paris,2,OAN, +OAN:SP:GENETI-E,1,"GENETIERE",47.494936,-0.443785,-1,0,OAN:SA:zone_GENETIERE,Europe/Paris,0,OAN, +OAN:SP:GENETIER,1,"GENETIERE",47.494963,-0.4436,-1,0,OAN:SA:zone_GENETIERE,Europe/Paris,2,OAN, +OAN:SP:GENIE,1,"GENIE",47.45803,-0.563795,-1,0,OAN:SA:zone_GENIE,Europe/Paris,2,OAN, +OAN:SP:GENIE-E,1,"GENIE",47.458145,-0.563828,-1,0,OAN:SA:zone_GENIE,Europe/Paris,2,OAN, +OAN:SP:GENTR-E,1,"GENTRIC",47.447803,-0.485178,-1,0,OAN:SA:zone_GENTRIC,Europe/Paris,0,OAN, +OAN:SP:GENTRIC,1,"GENTRIC",47.447411,-0.485449,-1,0,OAN:SA:zone_GENTRIC,Europe/Paris,0,OAN, +OAN:SP:GERICA-E,1,"GERICAULT",47.459892,-0.523722,-1,0,OAN:SA:zone_GERICAULT,Europe/Paris,2,OAN, +OAN:SP:GERICAUL,1,"GERICAULT",47.460101,-0.524702,-1,0,OAN:SA:zone_GERICAULT,Europe/Paris,2,OAN, +OAN:SP:GGESSAND,1,"GEORGE SAND",47.433468,-0.519916,-1,0,OAN:SA:zone_GEORGE_SAND,Europe/Paris,2,OAN, +OAN:SP:GGSAND-E,1,"GEORGE SAND",47.433258,-0.519613,-1,0,OAN:SA:zone_GEORGE_SAND,Europe/Paris,2,OAN, +OAN:SP:GILLIE-E,1,"GILLIER",47.475014,-0.52545,-1,0,OAN:SA:zone_GILLIER,Europe/Paris,2,OAN, +OAN:SP:GILLIER,1,"GILLIER",47.475033,-0.52581,-1,0,OAN:SA:zone_GILLIER,Europe/Paris,2,OAN, +OAN:SP:GIRAD-E,1,"GIRARDEAU",47.436446,-0.520354,-1,0,OAN:SA:zone_GIRARDEAU,Europe/Paris,2,OAN, +OAN:SP:GIRARD,1,"GIRARD",47.490747,-0.581207,-1,0,OAN:SA:zone_GIRARD,Europe/Paris,0,OAN, +OAN:SP:GIRARD-E,1,"GIRARD",47.490862,-0.581266,-1,0,OAN:SA:zone_GIRARD,Europe/Paris,0,OAN, +OAN:SP:GIRARDE,1,"GIRARDEAU",47.43656,-0.520838,-1,0,OAN:SA:zone_GIRARDEAU,Europe/Paris,2,OAN, +OAN:SP:GIRAUD,1,"GIRAUDIERE",47.521362,-0.436064,-1,0,OAN:SA:zone_GIRAUDIERE,Europe/Paris,0,OAN, +OAN:SP:GLYCIN-E,1,"GLYCINES",47.498792,-0.524036,-1,0,OAN:SA:zone_GLYCINES,Europe/Paris,0,OAN, +OAN:SP:GLYCINES,1,"GLYCINES",47.498932,-0.523666,-1,0,OAN:SA:zone_GLYCINES,Europe/Paris,0,OAN, +OAN:SP:GOURON-E,1,"GOURONNIERES",47.483002,-0.569351,-1,0,OAN:SA:zone_GOURONNIERES,Europe/Paris,2,OAN, +OAN:SP:GOURONNI,1,"GOURONNIERES",47.483056,-0.569421,-1,0,OAN:SA:zone_GOURONNIERES,Europe/Paris,2,OAN, +OAN:SP:GPOMPI-E,1,"POMPIDOU",47.492065,-0.59223,-1,0,OAN:SA:zone_POMPIDOU,Europe/Paris,0,OAN, +OAN:SP:GPOMPIDO,1,"POMPIDOU",47.492084,-0.592787,-1,0,OAN:SA:zone_POMPIDOU,Europe/Paris,0,OAN, +OAN:SP:GRANBE-E,1,"GRANGE AUX BELLES",47.476596,-0.62791,-1,0,OAN:SA:zone_GRANGE_AUX_BELLES,Europe/Paris,2,OAN, +OAN:SP:GRANBELL,1,"GRANGE AUX BELLES",47.476733,-0.628555,-1,0,OAN:SA:zone_GRANGE_AUX_BELLES,Europe/Paris,2,OAN, +OAN:SP:GRANCLAY,1,"GRAND CLAYE",47.387113,-0.538381,-1,0,OAN:SA:zone_GRAND_CLAYE,Europe/Paris,2,OAN, +OAN:SP:GRANDM-E,1,"GRANDMONT",47.487026,-0.588002,-1,0,OAN:SA:zone_GRANDMONT,Europe/Paris,2,OAN, +OAN:SP:GRANDMON,1,"GRANDMONT",47.487567,-0.58758,-1,0,OAN:SA:zone_GRANDMONT,Europe/Paris,2,OAN, +OAN:SP:GRANDPIN,1,"GRAND PIN",47.47332,-0.631803,-1,0,OAN:SA:zone_GRAND_PIN,Europe/Paris,2,OAN, +OAN:SP:GRANPI-E,1,"GRAND PIN",47.473313,-0.631338,-1,0,OAN:SA:zone_GRAND_PIN,Europe/Paris,2,OAN, +OAN:SP:GRCARR-E,1,"ARENA LOIRE",47.44348,-0.478275,-1,0,OAN:SA:zone_ARENA_LOIRE,Europe/Paris,2,OAN, +OAN:SP:GRCARREA,1,"ARENA LOIRE",47.443448,-0.478675,-1,0,OAN:SA:zone_ARENA_LOIRE,Europe/Paris,2,OAN, +OAN:SP:GRCHAM-E,1,"GRANDS CHAMPS",47.514759,-0.434073,-1,0,OAN:SA:zone_GRANDS_CHAMPS,Europe/Paris,0,OAN, +OAN:SP:GRCHAMPS,1,"GRANDS CHAMPS",47.514576,-0.434143,-1,0,OAN:SA:zone_GRANDS_CHAMPS,Europe/Paris,0,OAN, +OAN:SP:GRCPRU-E,1,"GROUPE COMMERCIAL",47.445727,-0.606196,-1,0,OAN:SA:zone_GROUPE_COMMERCIAL,Europe/Paris,2,OAN, +OAN:SP:GRCPRUNI,1,"GROUPE COMMERCIAL",47.445658,-0.606086,-1,0,OAN:SA:zone_GROUPE_COMMERCIAL,Europe/Paris,2,OAN, +OAN:SP:GRES11-E,1,"GRESILLE",47.460021,-0.605127,-1,0,OAN:SA:zone_GRESILLE,Europe/Paris,0,OAN, +OAN:SP:GRESILLE,1,"GRESILLE",47.459606,-0.605582,-1,0,OAN:SA:zone_GRESILLE,Europe/Paris,0,OAN, +OAN:SP:GRIMOR-E,1,"GRIMORELLE",47.529363,-0.507436,-1,0,OAN:SA:zone_GRIMORELLE,Europe/Paris,0,OAN, +OAN:SP:GRIMOREL,1,"GRIMORELLE",47.529501,-0.50736,-1,0,OAN:SA:zone_GRIMORELLE,Europe/Paris,0,OAN, +OAN:SP:GROLLI-E,1,"GROLIERE",47.354089,-0.527351,-1,0,OAN:SA:zone_GROLIERE,Europe/Paris,0,OAN, +OAN:SP:GROLLIER,1,"GROLIERE",47.353853,-0.527648,-1,0,OAN:SA:zone_GROLIERE,Europe/Paris,0,OAN, +OAN:SP:GUERAN-E,1,"GUERANDAIS",47.527198,-0.748504,-1,0,OAN:SA:zone_GUERANDAIS,Europe/Paris,0,OAN, +OAN:SP:GUERAND,1,"GUERANDAIS",47.527415,-0.748868,-1,0,OAN:SA:zone_GUERANDAIS,Europe/Paris,0,OAN, +OAN:SP:GUICHA-E,1,"GUICHARD",47.454692,-0.547962,-1,0,OAN:SA:zone_GUICHARD,Europe/Paris,0,OAN, +OAN:SP:GUICHARD,1,"GUICHARD",47.455295,-0.549291,-1,0,OAN:SA:zone_GUICHARD,Europe/Paris,2,OAN, +OAN:SP:GUILL-E,1,"GUILLAUMIERE",47.533064,-0.671783,-1,0,OAN:SA:zone_GUILLAUMIERE,Europe/Paris,0,OAN, +OAN:SP:GUILLAU,1,"GUILLAUMIERE",47.53306,-0.67169,-1,0,OAN:SA:zone_GUILLAUMIERE,Europe/Paris,0,OAN, +OAN:SP:GUILLE-E,1,"GUILLEBOTTE",47.437321,-0.513689,-1,0,OAN:SA:zone_GUILLEBOTTE,Europe/Paris,2,OAN, +OAN:SP:GUILLEB,1,"GUILLEBOTTE",47.437437,-0.512979,-1,0,OAN:SA:zone_GUILLEBOTTE,Europe/Paris,2,OAN, +OAN:SP:GUINEZ-E,1,"GUINEZER",47.461798,-0.631081,-1,0,OAN:SA:zone_GUINEZER,Europe/Paris,0,OAN, +OAN:SP:GUINEZE,1,"GUINEZER",47.461781,-0.631054,-1,0,OAN:SA:zone_GUINEZER,Europe/Paris,0,OAN, +OAN:SP:HARAS,1,"FOCH HARAS",47.467147,-0.551934,-1,0,OAN:SA:zone_FOCH_HARAS,Europe/Paris,2,OAN, +OAN:SP:HARAS-E,1,"FOCH HARAS",47.467212,-0.552229,-1,0,OAN:SA:zone_FOCH_HARAS,Europe/Paris,2,OAN, +OAN:SP:HARENC,1,"HARENCHERES",47.448726,-0.615664,-1,0,OAN:SA:zone_HARENCHERES,Europe/Paris,2,OAN, +OAN:SP:HAUBOU-E,1,"HAUTS DE BOUCHEMAINE",47.430046,-0.609363,-1,0,OAN:SA:zone_HAUTS_DE_BOUCHEMAINE,Europe/Paris,2,OAN, +OAN:SP:HAUBOUCH,1,"HAUTS DE BOUCHEMAINE",47.430481,-0.609572,-1,0,OAN:SA:zone_HAUTS_DE_BOUCHEMAINE,Europe/Paris,2,OAN, +OAN:SP:HAUCOU-E,1,"HAUT COUDRAY",47.530561,-0.624416,-1,0,OAN:SA:zone_HAUT_COUDRAY,Europe/Paris,2,OAN, +OAN:SP:HAUCOUD,1,"HAUT COUDRAY",47.530464,-0.624575,-1,0,OAN:SA:zone_HAUT_COUDRAY,Europe/Paris,2,OAN, +OAN:SP:HAUTE-E,1,"HAUTE ROCHE",47.46921,-0.63488,-1,0,OAN:SA:zone_HAUTE_ROCHE,Europe/Paris,2,OAN, +OAN:SP:HAUTERO,1,"HAUTE ROCHE",47.4692,-0.63475,-1,0,OAN:SA:zone_HAUTE_ROCHE,Europe/Paris,2,OAN, +OAN:SP:HAUTPR-E,1,"HAUT PRESSOIR",47.45319,-0.538026,-1,0,OAN:SA:zone_HAUT_PRESSOIR,Europe/Paris,2,OAN, +OAN:SP:HAUTPRES,1,"HAUT PRESSOIR",47.453197,-0.538411,-1,0,OAN:SA:zone_HAUT_PRESSOIR,Europe/Paris,2,OAN, +OAN:SP:HERMIT-E,1,"HERMITAGE",47.47776,-0.63525,-1,0,OAN:SA:zone_HERMITAGE,Europe/Paris,2,OAN, +OAN:SP:HERMITAG,1,"HERMITAGE",47.477795,-0.635929,-1,0,OAN:SA:zone_HERMITAGE,Europe/Paris,2,OAN, +OAN:SP:HERMLT32,1,"L'HERMITAGE SOUCELLES",47.584554,-0.417496,-1,0,OAN:SA:zone_LHERMITAGE_SOUCELLES,Europe/Paris,0,OAN, +OAN:SP:HIPPOD-E,1,"HIPPODROME",47.500805,-0.507804,-1,0,OAN:SA:zone_HIPPODROME,Europe/Paris,2,OAN, +OAN:SP:HIPPODRO,1,"HIPPODROME",47.501183,-0.507466,-1,0,OAN:SA:zone_HIPPODROME,Europe/Paris,2,OAN, +OAN:SP:HJOU32,1,"HAIE JOULAIN",47.517773,-0.463704,-1,0,OAN:SA:zone_HAIE_JOULAIN,Europe/Paris,0,OAN, +OAN:SP:HJOU32-E,1,"HAIE JOULAIN",47.517732,-0.463508,-1,0,OAN:SA:zone_HAIE_JOULAIN,Europe/Paris,0,OAN, +OAN:SP:HMAI,1,"LORRAINE",47.470293,-0.54706,-1,0,OAN:SA:zone_LORRAINE,Europe/Paris,2,OAN, +OAN:SP:HMTRE-E,1,"8 MAI TRELAZE",47.449356,-0.464958,-1,0,OAN:SA:zone_8_MAI_TRELAZE,Europe/Paris,2,OAN, +OAN:SP:HMTREL,1,"8 MAI TRELAZE",47.449354,-0.464693,-1,0,OAN:SA:zone_8_MAI_TRELAZE,Europe/Paris,0,OAN, +OAN:SP:HOPA8-C,1,"CHU - HOPITAL",47.480558,-0.554844,-1,0,OAN:SA:zone_CHU_-_HOPITAL,Europe/Paris,2,OAN, +OAN:SP:HOSGEM-E,1,"HOPITAL DE SAINTE GEMMES",47.422956,-0.560773,-1,0,OAN:SA:zone_HOPITAL_DE_SAINTE_GEMMES,Europe/Paris,2,OAN, +OAN:SP:HOSGEMME,1,"HOPITAL DE SAINTE GEMMES",47.422846,-0.560886,-1,0,OAN:SA:zone_HOPITAL_DE_SAINTE_GEMMES,Europe/Paris,2,OAN, +OAN:SP:HOTDIE-E,1,"HOTEL DIEU",47.479354,-0.560907,-1,0,OAN:SA:zone_HOTEL_DIEU,Europe/Paris,2,OAN, +OAN:SP:HOTDIEU,1,"HOTEL DIEU",47.479255,-0.559441,-1,0,OAN:SA:zone_HOTEL_DIEU,Europe/Paris,2,OAN, +OAN:SP:HOTELL-E,1,"HOTELLERIE",47.488876,-0.518919,-1,0,OAN:SA:zone_HOTELLERIE,Europe/Paris,0,OAN, +OAN:SP:HOTELLER,1,"HOTELLERIE",47.489296,-0.519778,-1,0,OAN:SA:zone_HOTELLERIE,Europe/Paris,0,OAN, +OAN:SP:HRECUL-E,1,"HAUTE DE RECULEE",47.484825,-0.552587,-1,0,OAN:SA:zone_HAUTE_DE_RECULEE,Europe/Paris,0,OAN, +OAN:SP:HRECULEE,1,"HAUTE DE RECULEE",47.484745,-0.552649,-1,0,OAN:SA:zone_HAUTE_DE_RECULEE,Europe/Paris,0,OAN, +OAN:SP:HUETTE-E,1,"HUETTERIE",47.45949,-0.47741,-1,0,OAN:SA:zone_HUETTERIE,Europe/Paris,2,OAN, +OAN:SP:HUETTERI,1,"HUETTERIE",47.45957,-0.47747,-1,0,OAN:SA:zone_HUETTERIE,Europe/Paris,2,OAN, +OAN:SP:HULLET-E,1,"HULLETERIES",47.465382,-0.720876,-1,0,OAN:SA:zone_HULLETERIES,Europe/Paris,0,OAN, +OAN:SP:HULLETER,1,"HULLETERIES",47.465382,-0.720752,-1,0,OAN:SA:zone_HULLETERIES,Europe/Paris,0,OAN, +OAN:SP:HUTREA-E,1,"HUTREAU",47.431328,-0.555391,-1,0,OAN:SA:zone_HUTREAU,Europe/Paris,0,OAN, +OAN:SP:HUTREAU,1,"HUTREAU",47.432922,-0.554655,-1,0,OAN:SA:zone_HUTREAU,Europe/Paris,0,OAN, +OAN:SP:IMTEC,1,"BOUZINAC",47.503288,-0.50965,-1,0,OAN:SA:zone_BOUZINAC,Europe/Paris,0,OAN, +OAN:SP:IMTEC-E,1,"BOUZINAC",47.503259,-0.509742,-1,0,OAN:SA:zone_BOUZINAC,Europe/Paris,0,OAN, +OAN:SP:INDUST-E,1,"INDUSTRIE",47.490047,-0.522846,-1,0,OAN:SA:zone_INDUSTRIE,Europe/Paris,0,OAN, +OAN:SP:INDUSTRI,1,"INDUSTRIE",47.49017,-0.522932,-1,0,OAN:SA:zone_INDUSTRIE,Europe/Paris,0,OAN, +OAN:SP:INRA,1,"INRA",47.47472,-0.61113,-1,0,OAN:SA:zone_INRA,Europe/Paris,2,OAN, +OAN:SP:INRA-E,1,"INRA",47.474688,-0.611341,-1,0,OAN:SA:zone_INRA,Europe/Paris,2,OAN, +OAN:SP:INTAVR-E,1,"AUCHAN",47.51824,-0.606552,-1,0,OAN:SA:zone_AUCHAN,Europe/Paris,2,OAN, +OAN:SP:INTERAVR,1,"AUCHAN",47.518753,-0.607604,-1,0,OAN:SA:zone_AUCHAN,Europe/Paris,2,OAN, +OAN:SP:INTERMIL,1,"INTERMARCHE",47.454485,-0.534831,-1,0,OAN:SA:zone_INTERMARCHE,Europe/Paris,2,OAN, +OAN:SP:INTMIL-E,1,"INTERMARCHE",47.45578,-0.533786,-1,0,OAN:SA:zone_INTERMARCHE,Europe/Paris,2,OAN, +OAN:SP:INTREP-E,1,"INTREPIDE",47.447365,-0.552254,-1,0,OAN:SA:zone_INTREPIDE,Europe/Paris,0,OAN, +OAN:SP:INTREPID,1,"INTREPIDE",47.447161,-0.552111,-1,0,OAN:SA:zone_INTREPIDE,Europe/Paris,0,OAN, +OAN:SP:IRLAND-E,1,"IRLANDE",47.523087,-0.604309,-1,0,OAN:SA:zone_IRLANDE,Europe/Paris,2,OAN, +OAN:SP:IRLANDE,1,"IRLANDE",47.522961,-0.604966,-1,0,OAN:SA:zone_IRLANDE,Europe/Paris,2,OAN, +OAN:SP:ISORET,1,"ISORET",47.47465,-0.520891,-1,0,OAN:SA:zone_ISORET,Europe/Paris,2,OAN, +OAN:SP:ISORET-E,1,"ISORET",47.474498,-0.520126,-1,0,OAN:SA:zone_ISORET,Europe/Paris,2,OAN, +OAN:SP:ITALIE,1,"ITALIE",47.524513,-0.602315,-1,0,OAN:SA:zone_ITALIE,Europe/Paris,2,OAN, +OAN:SP:ITALIE-E,1,"ITALIE",47.524834,-0.602067,-1,0,OAN:SA:zone_ITALIE,Europe/Paris,2,OAN, +OAN:SP:IUT,1,"IUT",47.480259,-0.602401,-1,0,OAN:SA:zone_IUT,Europe/Paris,2,OAN, +OAN:SP:IUT-E,1,"IUT",47.480524,-0.602981,-1,0,OAN:SA:zone_IUT,Europe/Paris,2,OAN, +OAN:SP:JANEQUIN,1,"COLLEGE JANEQUIN",47.49777,-0.59169,-1,0,OAN:SA:zone_COLLEGE_JANEQUIN,Europe/Paris,2,OAN, +OAN:SP:JARDBOTA,1,"JARDIN BOTANIQUE",47.57146,-0.50278,-1,0,OAN:SA:zone_JARDIN_BOTANIQUE,Europe/Paris,2,OAN, +OAN:SP:JARDF-E,1,"JARDINS FAMILIAUX",47.485554,-0.508304,-1,0,OAN:SA:zone_JARDINS_FAMILIAUX,Europe/Paris,2,OAN, +OAN:SP:JARDFA,1,"JARDINS FAMILIAUX",47.485538,-0.508515,-1,0,OAN:SA:zone_JARDINS_FAMILIAUX,Europe/Paris,2,OAN, +OAN:SP:JAUDE-E,1,"JAUDETTE",47.46356,-0.490857,-1,0,OAN:SA:zone_JAUDETTE,Europe/Paris,0,OAN, +OAN:SP:JAUDET-E,1,"JAUDETTE",47.463827,-0.490378,-1,0,OAN:SA:zone_JAUDETTE,Europe/Paris,2,OAN, +OAN:SP:JAUDETT,1,"JAUDETTE",47.463293,-0.491095,-1,0,OAN:SA:zone_JAUDETTE,Europe/Paris,0,OAN, +OAN:SP:JAUDETTE,1,"JAUDETTE",47.463698,-0.490139,-1,0,OAN:SA:zone_JAUDETTE,Europe/Paris,2,OAN, +OAN:SP:JBODIN,1,"LYCEE JEAN BODIN",47.441582,-0.528152,-1,0,OAN:SA:zone_LYCEE_JEAN_BODIN,Europe/Paris,0,OAN, +OAN:SP:JBODIN-E,1,"LYCEE JEAN BODIN",47.441582,-0.528152,-1,0,OAN:SA:zone_LYCEE_JEAN_BODIN,Europe/Paris,0,OAN, +OAN:SP:JE23-E,1,"JEAN XXIII",47.448469,-0.563859,-1,0,OAN:SA:zone_JEAN_XXIII,Europe/Paris,2,OAN, +OAN:SP:JEAN23,1,"JEAN XXIII",47.44833,-0.563652,-1,0,OAN:SA:zone_JEAN_XXIII,Europe/Paris,2,OAN, +OAN:SP:JEANM-E,1,"MONNET",47.465518,-0.601316,-1,0,OAN:SA:zone_MONNET,Europe/Paris,0,OAN, +OAN:SP:JEANMON,1,"MONNET",47.46554,-0.601158,-1,0,OAN:SA:zone_MONNET,Europe/Paris,0,OAN, +OAN:SP:JEANNARC,1,"COLLEGE JEANNE D'ARC",47.52026,-0.46556,-1,0,OAN:SA:zone_COLLEGE_JEANNE_DARC,Europe/Paris,2,OAN, +OAN:SP:JEANZAY,1,"COLLEGE JEAN ZAY",47.52967,-0.6076,-1,0,OAN:SA:zone_COLLEGE_JEAN_ZAY,Europe/Paris,2,OAN, +OAN:SP:JEBOUI-E,1,"JEAN BOUIN",47.458953,-0.532869,-1,0,OAN:SA:zone_JEAN_BOUIN,Europe/Paris,0,OAN, +OAN:SP:JEBOUIN,1,"JEAN BOUIN",47.458718,-0.532974,-1,0,OAN:SA:zone_JEAN_BOUIN,Europe/Paris,0,OAN, +OAN:SP:JEBOUT-E,1,"JEAN BOUTTON",47.438793,-0.50724,-1,0,OAN:SA:zone_JEAN_BOUTTON,Europe/Paris,2,OAN, +OAN:SP:JEBOUTON,1,"JEAN BOUTTON",47.438725,-0.507475,-1,0,OAN:SA:zone_JEAN_BOUTTON,Europe/Paris,2,OAN, +OAN:SP:JEHUEZ,1,"JEAN HUEZ",47.530872,-0.594333,-1,0,OAN:SA:zone_JEAN_HUEZ,Europe/Paris,0,OAN, +OAN:SP:JEHUEZ-E,1,"JEAN HUEZ",47.530865,-0.59428,-1,0,OAN:SA:zone_JEAN_HUEZ,Europe/Paris,0,OAN, +OAN:SP:JEJAUR-E,1,"JEAN JAURES",47.457652,-0.522885,-1,0,OAN:SA:zone_JEAN_JAURES,Europe/Paris,2,OAN, +OAN:SP:JEJAURES,1,"JEAN JAURES",47.457303,-0.523185,-1,0,OAN:SA:zone_JEAN_JAURES,Europe/Paris,2,OAN, +OAN:SP:JEROST-E,1,"ROSTAND",47.434288,-0.514017,-1,0,OAN:SA:zone_ROSTAND,Europe/Paris,2,OAN, +OAN:SP:JEROSTAN,1,"ROSTAND",47.434338,-0.513808,-1,0,OAN:SA:zone_ROSTAND,Europe/Paris,2,OAN, +OAN:SP:JERUSA-E,1,"JERUSALEM",47.473566,-0.529793,-1,0,OAN:SA:zone_JERUSALEM,Europe/Paris,2,OAN, +OAN:SP:JERUSALE,1,"JERUSALEM",47.473043,-0.530203,-1,0,OAN:SA:zone_JERUSALEM,Europe/Paris,2,OAN, +OAN:SP:JOFFRE,1,"JOFFRE",47.471943,-0.545158,-1,0,OAN:SA:zone_JOFFRE,Europe/Paris,2,OAN, +OAN:SP:JOXE,1,"JOXE",47.484344,-0.541633,-1,0,OAN:SA:zone_JOXE,Europe/Paris,0,OAN, +OAN:SP:JOXE-E,1,"JOXE",47.48444,-0.54142,-1,0,OAN:SA:zone_JOXE,Europe/Paris,0,OAN, +OAN:SP:JUFERR-E,1,"JULES FERRY",47.466362,-0.498862,-1,0,OAN:SA:zone_JULES_FERRY,Europe/Paris,2,OAN, +OAN:SP:JUFERRY,1,"JULES FERRY",47.46638,-0.49873,-1,0,OAN:SA:zone_JULES_FERRY,Europe/Paris,2,OAN, +OAN:SP:JUIGDEP,1,"JUIGNE",47.539925,-0.615382,-1,0,OAN:SA:zone_JUIGNE,Europe/Paris,0,OAN, +OAN:SP:JUIGN-E,1,"JUIGNE",47.539119,-0.616241,-1,0,OAN:SA:zone_JUIGNE,Europe/Paris,0,OAN, +OAN:SP:JULESV-E,1,"JULES VERNE",47.447445,-0.561627,-1,0,OAN:SA:zone_JULES_VERNE,Europe/Paris,2,OAN, +OAN:SP:JULESVER,1,"JULES VERNE",47.447445,-0.562025,-1,0,OAN:SA:zone_JULES_VERNE,Europe/Paris,2,OAN, +OAN:SP:JUSTIC-E,1,"JUSTICES",47.453365,-0.526251,-1,0,OAN:SA:zone_JUSTICES,Europe/Paris,2,OAN, +OAN:SP:JUSTICES,1,"JUSTICES",47.453564,-0.526607,-1,0,OAN:SA:zone_JUSTICES,Europe/Paris,2,OAN, +OAN:SP:KENNED-E,1,"KENNEDY",47.492407,-0.578404,-1,0,OAN:SA:zone_KENNEDY,Europe/Paris,2,OAN, +OAN:SP:KENNEDY,1,"KENNEDY",47.492184,-0.577263,-1,0,OAN:SA:zone_KENNEDY,Europe/Paris,2,OAN, +OAN:SP:LABA32-E,1,"LA BARRE VILLEVEQUE",47.552285,-0.42919,-1,0,OAN:SA:zone_LA_BARRE_VILLEVEQUE,Europe/Paris,0,OAN, +OAN:SP:LABARR-E,1,"LA BARRE",47.473249,-0.598171,-1,0,OAN:SA:zone_LA_BARRE,Europe/Paris,0,OAN, +OAN:SP:LABARR32,1,"LA BARRE VILLEVEQUE",47.552192,-0.42932,-1,0,OAN:SA:zone_LA_BARRE_VILLEVEQUE,Europe/Paris,0,OAN, +OAN:SP:LABARRE,1,"LA BARRE",47.473206,-0.597386,-1,0,OAN:SA:zone_LA_BARRE,Europe/Paris,0,OAN, +OAN:SP:LABOI-E,1,"LA BOISSIERE",47.504555,-0.600296,-1,0,OAN:SA:zone_LA_BOISSIERE,Europe/Paris,2,OAN, +OAN:SP:LABOISS,1,"LA BOISSIERE",47.50478,-0.600003,-1,0,OAN:SA:zone_LA_BOISSIERE,Europe/Paris,2,OAN, +OAN:SP:LABROS-E,1,"LA BROSSE ECOUFLANT",47.532744,-0.523253,-1,0,OAN:SA:zone_LA_BROSSE_ECOUFLANT,Europe/Paris,2,OAN, +OAN:SP:LABROSSE,1,"LA BROSSE ECOUFLANT",47.532512,-0.522091,-1,0,OAN:SA:zone_LA_BROSSE_ECOUFLANT,Europe/Paris,2,OAN, +OAN:SP:LABRUY-E,1,"LA BRUYERE",47.476406,-0.573319,-1,0,OAN:SA:zone_LA_BRUYERE,Europe/Paris,2,OAN, +OAN:SP:LABRUYER,1,"LA BRUYERE",47.476574,-0.573793,-1,0,OAN:SA:zone_LA_BRUYERE,Europe/Paris,2,OAN, +OAN:SP:LABUIS-E,1,"LA BUISSAIE",47.395936,-0.552823,-1,0,OAN:SA:zone_LA_BUISSAIE,Europe/Paris,2,OAN, +OAN:SP:LABUISSA,1,"LA BUISSAIE",47.396179,-0.55204,-1,0,OAN:SA:zone_LA_BUISSAIE,Europe/Paris,2,OAN, +OAN:SP:LACACC-E,1,"LAC DE MAINE ACCUEIL",47.464031,-0.594305,-1,0,OAN:SA:zone_LAC_DE_MAINE_ACCUEIL,Europe/Paris,2,OAN, +OAN:SP:LACACCUE,1,"LAC DE MAINE ACCUEIL",47.463894,-0.594338,-1,0,OAN:SA:zone_LAC_DE_MAINE_ACCUEIL,Europe/Paris,2,OAN, +OAN:SP:LACDMA-E,1,"LAC DE MAINE NAUTIQUE",47.461079,-0.59636,-1,0,OAN:SA:zone_LAC_DE_MAINE_NAUTIQUE,Europe/Paris,2,OAN, +OAN:SP:LACDMAIN,1,"LAC DE MAINE NAUTIQUE",47.461201,-0.596154,-1,0,OAN:SA:zone_LAC_DE_MAINE_NAUTIQUE,Europe/Paris,2,OAN, +OAN:SP:LACOUD-E,1,"LA COUDRE",47.460947,-0.710216,-1,0,OAN:SA:zone_LA_COUDRE,Europe/Paris,0,OAN, +OAN:SP:LACOUDRE,1,"LA COUDRE",47.460667,-0.710006,-1,0,OAN:SA:zone_LA_COUDRE,Europe/Paris,0,OAN, +OAN:SP:LACRET-E,1,"LACRETELLE",47.465867,-0.616985,-1,0,OAN:SA:zone_LACRETELLE,Europe/Paris,0,OAN, +OAN:SP:LACRETE,1,"LACRETELLE",47.464783,-0.616766,-1,0,OAN:SA:zone_LACRETELLE,Europe/Paris,2,OAN, +OAN:SP:LAEN-E,1,"LAENNEC",47.539427,-0.618638,-1,0,OAN:SA:zone_LAENNEC,Europe/Paris,0,OAN, +OAN:SP:LAENN,1,"LAENNEC",47.539324,-0.618446,-1,0,OAN:SA:zone_LAENNEC,Europe/Paris,0,OAN, +OAN:SP:LAFA8-C,1,"PLACE LA FAYETTE",47.460414,-0.55429,-1,0,OAN:SA:zone_PLACE_LA_FAYETTE,Europe/Paris,2,OAN, +OAN:SP:LAFA8-E,1,"PLACE LA FAYETTE",47.460338,-0.554863,-1,0,OAN:SA:zone_PLACE_LA_FAYETTE,Europe/Paris,2,OAN, +OAN:SP:LAFAUV-E,1,"LAFAUVELAIE",47.452011,-0.512166,-1,0,OAN:SA:zone_LAFAUVELAIE,Europe/Paris,0,OAN, +OAN:SP:LAFAUVEL,1,"LAFAUVELAIE",47.452129,-0.512822,-1,0,OAN:SA:zone_LAFAUVELAIE,Europe/Paris,0,OAN, +OAN:SP:LAGLOU-E,1,"GLOUTIERE",47.508082,-0.643552,-1,0,OAN:SA:zone_GLOUTIERE,Europe/Paris,0,OAN, +OAN:SP:LAGLOUTI,1,"GLOUTIERE",47.509348,-0.646244,-1,0,OAN:SA:zone_GLOUTIERE,Europe/Paris,0,OAN, +OAN:SP:LAGRAN-E,1,"LA GRANGE",47.504576,-0.636794,-1,0,OAN:SA:zone_LA_GRANGE,Europe/Paris,0,OAN, +OAN:SP:LAGRANGE,1,"LA GRANGE",47.503199,-0.632229,-1,0,OAN:SA:zone_LA_GRANGE,Europe/Paris,0,OAN, +OAN:SP:LAJANV-E,1,"JANVRIE",47.504155,-0.699928,-1,0,OAN:SA:zone_JANVRIE,Europe/Paris,0,OAN, +OAN:SP:LAJANVRI,1,"JANVRIE",47.504089,-0.699691,-1,0,OAN:SA:zone_JANVRIE,Europe/Paris,0,OAN, +OAN:SP:LAKANA-E,1,"LAKANAL",47.477795,-0.602432,-1,0,OAN:SA:zone_LAKANAL,Europe/Paris,2,OAN, +OAN:SP:LAKANAL,1,"LAKANAL",47.477726,-0.602229,-1,0,OAN:SA:zone_LAKANAL,Europe/Paris,2,OAN, +OAN:SP:LALAN-E,1,"LANDE",47.562423,-0.585343,-1,0,OAN:SA:zone_LANDE,Europe/Paris,0,OAN, +OAN:SP:LALANDE,1,"LANDE",47.562351,-0.585407,-1,0,OAN:SA:zone_LANDE,Europe/Paris,0,OAN, +OAN:SP:LAMARE,1,"LA MARE",47.46835,-0.4652,-1,0,OAN:SA:zone_LA_MARE,Europe/Paris,2,OAN, +OAN:SP:LAMARE-E,1,"LA MARE",47.46847,-0.46537,-1,0,OAN:SA:zone_LA_MARE,Europe/Paris,2,OAN, +OAN:SP:LAMART,1,"LAREVELLIERE",47.471232,-0.531808,-1,0,OAN:SA:zone_LAREVELLIERE,Europe/Paris,2,OAN, +OAN:SP:LAMART-E,1,"LAREVELLIERE",47.471345,-0.53353,-1,0,OAN:SA:zone_LAREVELLIERE,Europe/Paris,2,OAN, +OAN:SP:LANDRE-E,1,"LE LANDREAU",47.474113,-0.617655,-1,0,OAN:SA:zone_LE_LANDREAU,Europe/Paris,2,OAN, +OAN:SP:LANDREAU,1,"LE LANDREAU",47.474055,-0.617466,-1,0,OAN:SA:zone_LE_LANDREAU,Europe/Paris,2,OAN, +OAN:SP:LANGEV-E,1,"LANGEVINE",47.478816,-0.691897,-1,0,OAN:SA:zone_LANGEVINE,Europe/Paris,0,OAN, +OAN:SP:LANGEVIN,1,"LANGEVINE",47.477864,-0.691977,-1,0,OAN:SA:zone_LANGEVINE,Europe/Paris,0,OAN, +OAN:SP:LAPLES-E,1,"LA PLESSE",47.49955,-0.62045,-1,0,OAN:SA:zone_LA_PLESSE,Europe/Paris,0,OAN, +OAN:SP:LAPLESSE,1,"LA PLESSE",47.499433,-0.620354,-1,0,OAN:SA:zone_LA_PLESSE,Europe/Paris,0,OAN, +OAN:SP:LAPOIN-E,1,"LA POINTE",47.409839,-0.620286,-1,0,OAN:SA:zone_LA_POINTE,Europe/Paris,2,OAN, +OAN:SP:LAPOINTE,1,"LA POINTE",47.410366,-0.619811,-1,0,OAN:SA:zone_LA_POINTE,Europe/Paris,2,OAN, +OAN:SP:LAREU-E,1,"LA REUX",47.469425,-0.510403,-1,0,OAN:SA:zone_LA_REUX,Europe/Paris,0,OAN, +OAN:SP:LAREUX,1,"LA REUX",47.469512,-0.51042,-1,0,OAN:SA:zone_LA_REUX,Europe/Paris,0,OAN, +OAN:SP:LAROCHE,1,"LA ROCHE",47.458122,-0.65695,-1,0,OAN:SA:zone_LA_ROCHE,Europe/Paris,0,OAN, +OAN:SP:LAVOIR,1,"LAVOIR",47.441051,-0.498525,-1,0,OAN:SA:zone_LAVOIR,Europe/Paris,2,OAN, +OAN:SP:LAVOIR-E,1,"LAVOIR",47.440895,-0.49857,-1,0,OAN:SA:zone_LAVOIR,Europe/Paris,2,OAN, +OAN:SP:LBALUE-E,1,"BALUERES",47.379133,-0.524034,-1,0,OAN:SA:zone_BALUERES,Europe/Paris,0,OAN, +OAN:SP:LBALUERE,1,"BALUERES",47.378982,-0.524056,-1,0,OAN:SA:zone_BALUERES,Europe/Paris,0,OAN, +OAN:SP:LCHATA-E,1,"CHATAIGNERAIE",47.441281,-0.607582,-1,0,OAN:SA:zone_CHATAIGNERAIE,Europe/Paris,0,OAN, +OAN:SP:LCHATAIG,1,"CHATAIGNERAIE",47.44144,-0.607684,-1,0,OAN:SA:zone_CHATAIGNERAIE,Europe/Paris,2,OAN, +OAN:SP:LECHEN-E,1,"LE CHENE",47.420692,-0.577493,-1,0,OAN:SA:zone_LE_CHENE,Europe/Paris,0,OAN, +OAN:SP:LECHENE,1,"LE CHENE",47.420979,-0.576037,-1,0,OAN:SA:zone_LE_CHENE,Europe/Paris,0,OAN, +OAN:SP:LECL05-E,1,"LECLERC",47.483038,-0.575859,-1,0,OAN:SA:zone_LECLERC,Europe/Paris,2,OAN, +OAN:SP:LECLERC5,1,"LECLERC",47.483027,-0.575939,-1,0,OAN:SA:zone_LECLERC,Europe/Paris,2,OAN, +OAN:SP:LECLSY-E,1,"MARECHAL LECLERC",47.51832,-0.466743,-1,0,OAN:SA:zone_MARECHAL_LECLERC,Europe/Paris,2,OAN, +OAN:SP:LECLSYLV,1,"MARECHAL LECLERC",47.518669,-0.466495,-1,0,OAN:SA:zone_MARECHAL_LECLERC,Europe/Paris,2,OAN, +OAN:SP:LECOLO-E,1,"GUILLAUMIERE",47.525444,-0.666845,-1,0,OAN:SA:zone_GUILLAUMIERE,Europe/Paris,2,OAN, +OAN:SP:LECOLOM,1,"GUILLAUMIERE",47.525832,-0.667282,-1,0,OAN:SA:zone_GUILLAUMIERE,Europe/Paris,2,OAN, +OAN:SP:LECORB-E,1,"LE CORBUSIER",47.485365,-0.631027,-1,0,OAN:SA:zone_LE_CORBUSIER,Europe/Paris,2,OAN, +OAN:SP:LECORBUS,1,"LE CORBUSIER",47.484456,-0.631733,-1,0,OAN:SA:zone_LE_CORBUSIER,Europe/Paris,2,OAN, +OAN:SP:LECOTE-E,1,"LE COTEAU",47.398293,-0.548854,-1,0,OAN:SA:zone_LE_COTEAU,Europe/Paris,2,OAN, +OAN:SP:LECOTEAU,1,"LE COTEAU",47.398243,-0.548785,-1,0,OAN:SA:zone_LE_COTEAU,Europe/Paris,2,OAN, +OAN:SP:LECUIT,1,"LECUIT",47.490116,-0.562794,-1,0,OAN:SA:zone_LECUIT,Europe/Paris,2,OAN, +OAN:SP:LECUIT-E,1,"LECUIT",47.489441,-0.562837,-1,0,OAN:SA:zone_LECUIT,Europe/Paris,2,OAN, +OAN:SP:LEDENI-E,1,"LES DENIERS",47.466038,-0.598517,-1,0,OAN:SA:zone_LES_DENIERS,Europe/Paris,0,OAN, +OAN:SP:LEDENIER,1,"LES DENIERS",47.466053,-0.598731,-1,0,OAN:SA:zone_LES_DENIERS,Europe/Paris,0,OAN, +OAN:SP:LEFEVR-E,1,"LEFEVRE",47.443115,-0.489122,-1,0,OAN:SA:zone_LEFEVRE,Europe/Paris,2,OAN, +OAN:SP:LEFEVRE,1,"LEFEVRE",47.443359,-0.48879,-1,0,OAN:SA:zone_LEFEVRE,Europe/Paris,2,OAN, +OAN:SP:LEGRAS,1,"LEGRAS",47.52923,-0.566971,-1,0,OAN:SA:zone_LEGRAS,Europe/Paris,2,OAN, +OAN:SP:LEGRAS-E,1,"LEGRAS",47.529207,-0.566899,-1,0,OAN:SA:zone_LEGRAS,Europe/Paris,2,OAN, +OAN:SP:LEMERC-E,1,"LEMERCIER",47.498642,-0.522524,-1,0,OAN:SA:zone_LEMERCIER,Europe/Paris,0,OAN, +OAN:SP:LEMERCIE,1,"LEMERCIER",47.49872,-0.522634,-1,0,OAN:SA:zone_LEMERCIER,Europe/Paris,0,OAN, +OAN:SP:LENOT-E,1,"LE NOTRE",47.476177,-0.607347,-1,0,OAN:SA:zone_LE_NOTRE,Europe/Paris,2,OAN, +OAN:SP:LENOTRE,1,"LE NOTRE",47.476261,-0.607219,-1,0,OAN:SA:zone_LE_NOTRE,Europe/Paris,2,OAN, +OAN:SP:LEOLA2-E,1,"LEO LAGRANGE",47.447717,-0.510025,-1,0,OAN:SA:zone_LEO_LAGRANGE,Europe/Paris,2,OAN, +OAN:SP:LEOLAGRA,1,"LEO LAGRANGE",47.447744,-0.510027,-1,0,OAN:SA:zone_LEO_LAGRANGE,Europe/Paris,2,OAN, +OAN:SP:LESECO-E,1,"LES ECOTS",47.475495,-0.695774,-1,0,OAN:SA:zone_LES_ECOTS,Europe/Paris,0,OAN, +OAN:SP:LESECOTS,1,"LES ECOTS",47.475583,-0.695597,-1,0,OAN:SA:zone_LES_ECOTS,Europe/Paris,0,OAN, +OAN:SP:LESGARES,1,"LES GARES",47.465162,-0.555755,-1,0,OAN:SA:zone_LES_GARES,Europe/Paris,2,OAN, +OAN:SP:LESLAN-E,1,"ROBINIERES",47.470734,-0.697238,-1,0,OAN:SA:zone_ROBINIERES,Europe/Paris,0,OAN, +OAN:SP:LESLANDE,1,"ROBINIERES",47.470382,-0.697305,-1,0,OAN:SA:zone_ROBINIERES,Europe/Paris,0,OAN, +OAN:SP:LESRIV-E,1,"LES RIVES",47.526778,-0.525149,-1,0,OAN:SA:zone_LES_RIVES,Europe/Paris,0,OAN, +OAN:SP:LESRIVES,1,"LES RIVES",47.526652,-0.525079,-1,0,OAN:SA:zone_LES_RIVES,Europe/Paris,2,OAN, +OAN:SP:LESROS-E,1,"LES ROSES",47.426835,-0.551818,-1,0,OAN:SA:zone_LES_ROSES,Europe/Paris,0,OAN, +OAN:SP:LESROSES,1,"LES ROSES",47.427056,-0.55126,-1,0,OAN:SA:zone_LES_ROSES,Europe/Paris,0,OAN, +OAN:SP:LESSAR-E,1,"LES ESSARTS",47.469161,-0.73654,-1,0,OAN:SA:zone_LES_ESSARTS,Europe/Paris,0,OAN, +OAN:SP:LESSARTS,1,"LES ESSARTS",47.469109,-0.736688,-1,0,OAN:SA:zone_LES_ESSARTS,Europe/Paris,0,OAN, +OAN:SP:LETAND-E,1,"LETANDUERE",47.453104,-0.553455,-1,0,OAN:SA:zone_LETANDUERE,Europe/Paris,2,OAN, +OAN:SP:LETAND16,1,"LETANDUERE",47.452796,-0.553186,-1,0,OAN:SA:zone_LETANDUERE,Europe/Paris,2,OAN, +OAN:SP:LEVESQ-E,1,"LEVESQUE",47.402191,-0.534428,-1,0,OAN:SA:zone_LEVESQUE,Europe/Paris,2,OAN, +OAN:SP:LEVESQUE,1,"LEVESQUE",47.402161,-0.534467,-1,0,OAN:SA:zone_LEVESQUE,Europe/Paris,2,OAN, +OAN:SP:LHOI11-E,1,"L'HOIRIE",47.467107,-0.618474,-1,0,OAN:SA:zone_LHOIRIE,Europe/Paris,0,OAN, +OAN:SP:LHOIRI11,1,"L'HOIRIE",47.467094,-0.618301,-1,0,OAN:SA:zone_LHOIRIE,Europe/Paris,0,OAN, +OAN:SP:LICOR-E,1,"LICORNE",47.473425,-0.594066,-1,0,OAN:SA:zone_LICORNE,Europe/Paris,0,OAN, +OAN:SP:LICORNE,1,"LICORNE",47.473229,-0.593272,-1,0,OAN:SA:zone_LICORNE,Europe/Paris,0,OAN, +OAN:SP:LILAS,1,"LILAS",47.459481,-0.662865,-1,0,OAN:SA:zone_LILAS,Europe/Paris,0,OAN, +OAN:SP:LILAS-E,1,"LILAS",47.459466,-0.663039,-1,0,OAN:SA:zone_LILAS,Europe/Paris,0,OAN, +OAN:SP:LINOVE-E,1,"LINO VENTURA",47.44714,-0.529062,-1,0,OAN:SA:zone_LINO_VENTURA,Europe/Paris,0,OAN, +OAN:SP:LINOVENT,1,"LINO VENTURA",47.4473,-0.52911,-1,0,OAN:SA:zone_LINO_VENTURA,Europe/Paris,0,OAN, +OAN:SP:LIZE,1,"LIZE",47.487098,-0.574395,-1,0,OAN:SA:zone_LIZE,Europe/Paris,2,OAN, +OAN:SP:LIZE-E,1,"LIZE",47.486889,-0.573056,-1,0,OAN:SA:zone_LIZE,Europe/Paris,2,OAN, +OAN:SP:LIZE05-E,1,"LIZE",47.487724,-0.572796,-1,0,OAN:SA:zone_LIZE,Europe/Paris,2,OAN, +OAN:SP:LMARZE-E,1,"HAUTE MARZELLE",47.342933,-0.529679,-1,0,OAN:SA:zone_HAUTE_MARZELLE,Europe/Paris,0,OAN, +OAN:SP:LMARZELL,1,"HAUTE MARZELLE",47.343019,-0.529604,-1,0,OAN:SA:zone_HAUTE_MARZELLE,Europe/Paris,0,OAN, +OAN:SP:LOHUIT,1,"LORRAINE",47.470314,-0.5473,-1,0,OAN:SA:zone_LORRAINE,Europe/Paris,2,OAN, +OAN:SP:LOIRE,1,"LOIRE",47.418827,-0.523402,-1,0,OAN:SA:zone_LOIRE,Europe/Paris,2,OAN, +OAN:SP:LOIRE-E,1,"LOIRE",47.417774,-0.523359,-1,0,OAN:SA:zone_LOIRE,Europe/Paris,2,OAN, +OAN:SP:LOMBAR-E,1,"LOMBARDIERES",47.442501,-0.690636,-1,0,OAN:SA:zone_LOMBARDIERES,Europe/Paris,0,OAN, +OAN:SP:LOMBARD,1,"LOMBARDIERES",47.442489,-0.690443,-1,0,OAN:SA:zone_LOMBARDIERES,Europe/Paris,0,OAN, +OAN:SP:LOR-FO-A,1,"FOCH MAISON BLEUE",47.469639,-0.548551,-1,0,OAN:SA:zone_FOCH_MAISON_BLEUE,Europe/Paris,2,OAN, +OAN:SP:LORETT-E,1,"LORETTE",47.451099,-0.548237,-1,0,OAN:SA:zone_LORETTE,Europe/Paris,0,OAN, +OAN:SP:LORETTE,1,"LORETTE",47.451288,-0.547942,-1,0,OAN:SA:zone_LORETTE,Europe/Paris,0,OAN, +OAN:SP:LORPLM,1,"L'OREE",47.542615,-0.672214,-1,0,OAN:SA:zone_LOREE,Europe/Paris,0,OAN, +OAN:SP:LORPLM-E,1,"L'OREE",47.542754,-0.672203,-1,0,OAN:SA:zone_LOREE,Europe/Paris,0,OAN, +OAN:SP:LORRAIN1,1,"LORRAINE",47.470259,-0.547695,-1,0,OAN:SA:zone_LORRAINE,Europe/Paris,2,OAN, +OAN:SP:LORRTERM,1,"PLACE LORRAINE",47.470169,-0.54769,-1,0,OAN:SA:zone_PLACE_LORRAINE,Europe/Paris,2,OAN, +OAN:SP:LOTISS-E,1,"LOTISSEMENT DE VILLEVEQUE",47.556772,-0.424174,-1,0,OAN:SA:zone_LOTISSEMENT_DE_VILLEVEQUE,Europe/Paris,2,OAN, +OAN:SP:LOTISSEM,1,"LOTISSEMENT DE VILLEVEQUE",47.556625,-0.424416,-1,0,OAN:SA:zone_LOTISSEMENT_DE_VILLEVEQUE,Europe/Paris,2,OAN, +OAN:SP:LOUET,1,"LOUET",47.412258,-0.523752,-1,0,OAN:SA:zone_LOUET,Europe/Paris,0,OAN, +OAN:SP:LOUET-E,1,"LOUET",47.412418,-0.523748,-1,0,OAN:SA:zone_LOUET,Europe/Paris,0,OAN, +OAN:SP:LOUPIN-E,1,"LOUPINOT",47.424648,-0.552575,-1,0,OAN:SA:zone_LOUPINOT,Europe/Paris,0,OAN, +OAN:SP:LOUPINO,1,"LOUPINOT",47.42461,-0.552573,-1,0,OAN:SA:zone_LOUPINOT,Europe/Paris,0,OAN, +OAN:SP:LTAC-E,1,"BOURG DE SOULAINES",47.364605,-0.524983,-1,0,OAN:SA:zone_BOURG_DE_SOULAINES,Europe/Paris,0,OAN, +OAN:SP:LTACHON,1,"BOURG DE SOULAINES",47.364943,-0.525169,-1,0,OAN:SA:zone_BOURG_DE_SOULAINES,Europe/Paris,0,OAN, +OAN:SP:LUTIN,1,"LUTIN",47.475048,-0.535741,-1,0,OAN:SA:zone_LUTIN,Europe/Paris,2,OAN, +OAN:SP:LUTIN-E,1,"LUTIN",47.475754,-0.534199,-1,0,OAN:SA:zone_LUTIN,Europe/Paris,2,OAN, +OAN:SP:LYCEEJMO,1,"JEAN MOULIN",47.492986,-0.551317,-1,0,OAN:SA:zone_JEAN_MOULIN,Europe/Paris,2,OAN, +OAN:SP:LYCJMO-E,1,"JEAN MOULIN",47.492082,-0.550046,-1,0,OAN:SA:zone_JEAN_MOULIN,Europe/Paris,2,OAN, +OAN:SP:MA4VE-E,1,"MAIL DES QUATRE VENTS",47.531708,-0.528412,-1,0,OAN:SA:zone_MAIL_DES_QUATRE_VENTS,Europe/Paris,0,OAN, +OAN:SP:MACASS-E,1,"MARY CASSATT",47.510435,-0.604259,-1,0,OAN:SA:zone_MARY_CASSATT,Europe/Paris,0,OAN, +OAN:SP:MACASSAT,1,"MARY CASSATT",47.511318,-0.602793,-1,0,OAN:SA:zone_MARY_CASSATT,Europe/Paris,0,OAN, +OAN:SP:MACE,1,"MACE",47.476635,-0.53272,-1,0,OAN:SA:zone_MACE,Europe/Paris,2,OAN, +OAN:SP:MACE-E,1,"MACE",47.47699,-0.53181,-1,0,OAN:SA:zone_MACE,Europe/Paris,2,OAN, +OAN:SP:MACURI-E,1,"MARIE CURIE",47.433434,-0.516572,-1,0,OAN:SA:zone_MARIE_CURIE,Europe/Paris,2,OAN, +OAN:SP:MACURIE,1,"MARIE CURIE",47.433361,-0.516634,-1,0,OAN:SA:zone_MARIE_CURIE,Europe/Paris,2,OAN, +OAN:SP:MADELE-E,1,"MADELEINE",47.459067,-0.535543,-1,0,OAN:SA:zone_MADELEINE,Europe/Paris,2,OAN, +OAN:SP:MADELEIN,1,"MADELEINE",47.459206,-0.535723,-1,0,OAN:SA:zone_MADELEINE,Europe/Paris,2,OAN, +OAN:SP:MAETUD-E,1,"ISTIA",47.480684,-0.594598,-1,0,OAN:SA:zone_ISTIA,Europe/Paris,2,OAN, +OAN:SP:MAETUDIA,1,"ISTIA",47.480567,-0.594631,-1,0,OAN:SA:zone_ISTIA,Europe/Paris,2,OAN, +OAN:SP:MAI4VEN,1,"MAIL DES QUATRE VENTS",47.531784,-0.528441,-1,0,OAN:SA:zone_MAIL_DES_QUATRE_VENTS,Europe/Paris,2,OAN, +OAN:SP:MAIL-HDV,1,"MAIL",47.471121,-0.546361,-1,0,OAN:SA:zone_MAIL,Europe/Paris,2,OAN, +OAN:SP:MAIRAV-E,1,"MAIRIE D'AVRILLE",47.504925,-0.590726,-1,0,OAN:SA:zone_MAIRIE_DAVRILLE,Europe/Paris,2,OAN, +OAN:SP:MAIRAVR,1,"MAIRIE D'AVRILLE",47.50452,-0.589973,-1,0,OAN:SA:zone_MAIRIE_DAVRILLE,Europe/Paris,2,OAN, +OAN:SP:MAIRTR-E,1,"MAIRIE DE TRELAZE",47.445526,-0.468499,-1,0,OAN:SA:zone_MAIRIE_DE_TRELAZE,Europe/Paris,2,OAN, +OAN:SP:MAIRTREL,1,"MAIRIE DE TRELAZE",47.44561,-0.46918,-1,0,OAN:SA:zone_MAIRIE_DE_TRELAZE,Europe/Paris,2,OAN, +OAN:SP:MAISONSR,1,"MAISONS ROUGES",47.474495,-0.511842,-1,0,OAN:SA:zone_MAISONS_ROUGES,Europe/Paris,2,OAN, +OAN:SP:MAISRO-E,1,"MAISONS ROUGES",47.474449,-0.511906,-1,0,OAN:SA:zone_MAISONS_ROUGES,Europe/Paris,2,OAN, +OAN:SP:MAJUIN5B,1,"MARECHAL JUIN",47.449936,-0.567906,-1,0,OAN:SA:zone_MARECHAL_JUIN,Europe/Paris,2,OAN, +OAN:SP:MALAQU-E,1,"MALAQUAIS",47.444099,-0.490182,-1,0,OAN:SA:zone_MALAQUAIS,Europe/Paris,2,OAN, +OAN:SP:MALAQUAI,1,"MALAQUAIS",47.444263,-0.49051,-1,0,OAN:SA:zone_MALAQUAIS,Europe/Paris,0,OAN, +OAN:SP:MALEMBAR,1,"MALEMBARDIERES",47.451571,-0.473488,-1,0,OAN:SA:zone_MALEMBARDIERES,Europe/Paris,0,OAN, +OAN:SP:MALNOU-E,1,"MALNOUE",47.36933,-0.51644,-1,0,OAN:SA:zone_MALNOUE,Europe/Paris,2,OAN, +OAN:SP:MALNOUE,1,"MALNOUE",47.3694,-0.51651,-1,0,OAN:SA:zone_MALNOUE,Europe/Paris,2,OAN, +OAN:SP:MAPTSCE,1,"MAIRIE DES PONTS DE CE",47.425606,-0.524455,-1,0,OAN:SA:zone_MAIRIE_DES_PONTS_DE_CE,Europe/Paris,0,OAN, +OAN:SP:MAREJU-E,1,"MARECHAL JUIN",47.449924,-0.567972,-1,0,OAN:SA:zone_MARECHAL_JUIN,Europe/Paris,2,OAN, +OAN:SP:MARIAN-E,1,"MARIANNE",47.449326,-0.530174,-1,0,OAN:SA:zone_MARIANNE,Europe/Paris,0,OAN, +OAN:SP:MARIANNE,1,"MARIANNE",47.44944,-0.530247,-1,0,OAN:SA:zone_MARIANNE,Europe/Paris,0,OAN, +OAN:SP:MAROTT-E,1,"MAROTTIERES",47.536233,-0.568767,-1,0,OAN:SA:zone_MAROTTIERES,Europe/Paris,0,OAN, +OAN:SP:MAROTTIE,1,"MAROTTIERES",47.536252,-0.568939,-1,0,OAN:SA:zone_MAROTTIERES,Europe/Paris,0,OAN, +OAN:SP:MASGEM-E,1,"MAIRIE DE SAINTE GEMMES",47.422836,-0.556588,-1,0,OAN:SA:zone_MAIRIE_DE_SAINTE_GEMMES,Europe/Paris,2,OAN, +OAN:SP:MASGEMME,1,"MAIRIE DE SAINTE GEMMES",47.4228,-0.556586,-1,0,OAN:SA:zone_MAIRIE_DE_SAINTE_GEMMES,Europe/Paris,2,OAN, +OAN:SP:MASJLI-E,1,"MAIRIE DE SAINT JEAN DE LINIERES",47.458534,-0.659001,-1,0,OAN:SA:zone_MAIRIE_DE_SAINT_JEAN_DE_LINIERES,Europe/Paris,0,OAN, +OAN:SP:MASJLIN,1,"MAIRIE DE SAINT JEAN DE LINIERES",47.458118,-0.658459,-1,0,OAN:SA:zone_MAIRIE_DE_SAINT_JEAN_DE_LINIERES,Europe/Paris,0,OAN, +OAN:SP:MASSON,1,"MASSON",47.531779,-0.567492,-1,0,OAN:SA:zone_MASSON,Europe/Paris,0,OAN, +OAN:SP:MASSON-E,1,"MASSON",47.532095,-0.567819,-1,0,OAN:SA:zone_MASSON,Europe/Paris,0,OAN, +OAN:SP:MASTEL-E,1,"MASTELLE",47.529445,-0.591995,-1,0,OAN:SA:zone_MASTELLE,Europe/Paris,2,OAN, +OAN:SP:MASTELLE,1,"MASTELLE",47.529381,-0.592417,-1,0,OAN:SA:zone_MASTELLE,Europe/Paris,2,OAN, +OAN:SP:MATEC,1,"MAISON DE TECHNOPOLE",47.478313,-0.605394,-1,0,OAN:SA:zone_MAISON_DE_TECHNOPOLE,Europe/Paris,2,OAN, +OAN:SP:MATEC-AR,1,"MAISON DE TECHNOPOLE",47.478275,-0.605419,-1,0,OAN:SA:zone_MAISON_DE_TECHNOPOLE,Europe/Paris,0,OAN, +OAN:SP:MATECHNO,1,"MAISON DE TECHNOPOLE",47.478603,-0.605689,-1,0,OAN:SA:zone_MAISON_DE_TECHNOPOLE,Europe/Paris,2,OAN, +OAN:SP:MATER89,1,"MARTINIERE",47.608597,-0.563678,-1,0,OAN:SA:zone_MARTINIERE,Europe/Paris,0,OAN, +OAN:SP:MATERN25,1,"MARTINIERE",47.608542,-0.563719,-1,0,OAN:SA:zone_MARTINIERE,Europe/Paris,0,OAN, +OAN:SP:MAUFIN-E,1,"MAUFINEE",47.502593,-0.588884,-1,0,OAN:SA:zone_MAUFINEE,Europe/Paris,2,OAN, +OAN:SP:MAUFINE,1,"MAUFINEE",47.502337,-0.589056,-1,0,OAN:SA:zone_MAUFINEE,Europe/Paris,2,OAN, +OAN:SP:MAUPER-E,1,"MAUPERTHUIS",47.433632,-0.485674,-1,0,OAN:SA:zone_MAUPERTHUIS,Europe/Paris,0,OAN, +OAN:SP:MAUPERTH,1,"MAUPERTHUIS",47.433876,-0.485674,-1,0,OAN:SA:zone_MAUPERTHUIS,Europe/Paris,0,OAN, +OAN:SP:MAURIA-E,1,"MALRAUX",47.457594,-0.473421,-1,0,OAN:SA:zone_MALRAUX,Europe/Paris,2,OAN, +OAN:SP:MAURIAC,1,"MALRAUX",47.457512,-0.473443,-1,0,OAN:SA:zone_MALRAUX,Europe/Paris,2,OAN, +OAN:SP:MEIG34-E,1,"EGLISE DE LA MEIGNANNE",47.519701,-0.66769,-1,0,OAN:SA:zone_EGLISE_DE_LA_MEIGNANNE,Europe/Paris,0,OAN, +OAN:SP:MEIGNA-E,1,"LA MEIGNANNE",47.484352,-0.582663,-1,0,OAN:SA:zone_LA_MEIGNANNE,Europe/Paris,2,OAN, +OAN:SP:MEIGNA34,1,"EGLISE DE LA MEIGNANNE",47.519388,-0.667741,-1,0,OAN:SA:zone_EGLISE_DE_LA_MEIGNANNE,Europe/Paris,0,OAN, +OAN:SP:MEIGNANN,1,"LA MEIGNANNE",47.484032,-0.582181,-1,0,OAN:SA:zone_LA_MEIGNANNE,Europe/Paris,2,OAN, +OAN:SP:MEMBALZA,1,"ECOLE BALZAC",47.55698,-0.67224,-1,0,OAN:SA:zone_ECOLE_BALZAC,Europe/Paris,2,OAN, +OAN:SP:MEMBMA-E,1,"MAIRIE DE LA MEMBROLLE",47.56051,-0.67236,-1,0,OAN:SA:zone_MAIRIE_DE_LA_MEMBROLLE,Europe/Paris,0,OAN, +OAN:SP:MEMBRO-E,1,"BOURG DE LA MEMBROLLE",47.558435,-0.669726,-1,0,OAN:SA:zone_BOURG_DE_LA_MEMBROLLE,Europe/Paris,0,OAN, +OAN:SP:MEMBROLL,1,"BOURG DE LA MEMBROLLE",47.558554,-0.670086,-1,0,OAN:SA:zone_BOURG_DE_LA_MEMBROLLE,Europe/Paris,0,OAN, +OAN:SP:MEMMAIR,1,"MAIRIE DE LA MEMBROLLE",47.560465,-0.672443,-1,0,OAN:SA:zone_MAIRIE_DE_LA_MEMBROLLE,Europe/Paris,0,OAN, +OAN:SP:MENA-E,1,"MENARD",47.445786,-0.49408,-1,0,OAN:SA:zone_MENARD,Europe/Paris,2,OAN, +OAN:SP:MENARD,1,"MENARD",47.445816,-0.493936,-1,0,OAN:SA:zone_MENARD,Europe/Paris,0,OAN, +OAN:SP:MENDES-E,1,"MENDES FRANCE",47.472967,-0.545585,-1,0,OAN:SA:zone_MENDES_FRANCE,Europe/Paris,2,OAN, +OAN:SP:MENDESFR,1,"MENDES FRANCE",47.472455,-0.546288,-1,0,OAN:SA:zone_MENDES_FRANCE,Europe/Paris,2,OAN, +OAN:SP:MERCIE-E,1,"MERCIER",47.492696,-0.458265,-1,0,OAN:SA:zone_MERCIER,Europe/Paris,0,OAN, +OAN:SP:MERCIER,1,"MERCIER",47.492657,-0.458593,-1,0,OAN:SA:zone_MERCIER,Europe/Paris,0,OAN, +OAN:SP:MERMO-E,1,"COLLEGE MERMOZ",47.45179,-0.566839,-1,0,OAN:SA:zone_COLLEGE_MERMOZ,Europe/Paris,2,OAN, +OAN:SP:MICHEL-E,1,"MICHELET",47.462891,-0.544257,-1,0,OAN:SA:zone_MICHELET,Europe/Paris,2,OAN, +OAN:SP:MICHELET,1,"MICHELET",47.463482,-0.545589,-1,0,OAN:SA:zone_MICHELET,Europe/Paris,2,OAN, +OAN:SP:MILLAR-E,1,"MILLARDIERE",47.513763,-0.473583,-1,0,OAN:SA:zone_MILLARDIERE,Europe/Paris,2,OAN, +OAN:SP:MILLARDI,1,"MILLARDIERE",47.514183,-0.474456,-1,0,OAN:SA:zone_MILLARDIERE,Europe/Paris,2,OAN, +OAN:SP:MILLCO-E,1,"MILLOT SCOLAIRE",47.456686,-0.533362,-1,0,OAN:SA:zone_MILLOT_SCOLAIRE,Europe/Paris,0,OAN, +OAN:SP:MILLOT,1,"SAUMUROISE",47.457294,-0.532554,-1,0,OAN:SA:zone_SAUMUROISE,Europe/Paris,2,OAN, +OAN:SP:MILLOT-E,1,"SAUMUROISE",47.456879,-0.531921,-1,0,OAN:SA:zone_SAUMUROISE,Europe/Paris,2,OAN, +OAN:SP:MILLOTCO,1,"MILLOT SCOLAIRE",47.45617,-0.533747,-1,0,OAN:SA:zone_MILLOT_SCOLAIRE,Europe/Paris,0,OAN, +OAN:SP:MIRABE-E,1,"MIRABEAU",47.459587,-0.549029,-1,0,OAN:SA:zone_MIRABEAU,Europe/Paris,0,OAN, +OAN:SP:MIRABEAU,1,"MIRABEAU",47.460091,-0.550529,-1,0,OAN:SA:zone_MIRABEAU,Europe/Paris,0,OAN, +OAN:SP:MIRBE-E,1,"MIRBEAU",47.488409,-0.510063,-1,0,OAN:SA:zone_MIRBEAU,Europe/Paris,0,OAN, +OAN:SP:MIRBEAU,1,"MIRBEAU",47.488194,-0.510729,-1,0,OAN:SA:zone_MIRBEAU,Europe/Paris,0,OAN, +OAN:SP:MLYAUT-E,1,"MARECHAL LYAUTEY",47.49183,-0.583804,-1,0,OAN:SA:zone_MARECHAL_LYAUTEY,Europe/Paris,2,OAN, +OAN:SP:MLYAUTEY,1,"MARECHAL LYAUTEY",47.491698,-0.583704,-1,0,OAN:SA:zone_MARECHAL_LYAUTEY,Europe/Paris,2,OAN, +OAN:SP:MOLINE-E,1,"MOLINERIE",47.524476,-0.666503,-1,0,OAN:SA:zone_MOLINERIE,Europe/Paris,2,OAN, +OAN:SP:MOLINERI,1,"MOLINERIE",47.523663,-0.666595,-1,0,OAN:SA:zone_MOLINERIE,Europe/Paris,2,OAN, +OAN:SP:MON1,1,"MONGAZON",47.460949,-0.528623,-1,0,OAN:SA:zone_MONGAZON,Europe/Paris,2,OAN, +OAN:SP:MON1GA-E,1,"MONGAZON",47.460915,-0.528608,-1,0,OAN:SA:zone_MONGAZON,Europe/Paris,2,OAN, +OAN:SP:MONNAI-E,1,"LA MONNAIE",47.44506,-0.51271,-1,0,OAN:SA:zone_LA_MONNAIE,Europe/Paris,2,OAN, +OAN:SP:MONNAIE,1,"LA MONNAIE",47.44525,-0.51241,-1,0,OAN:SA:zone_LA_MONNAIE,Europe/Paris,2,OAN, +OAN:SP:MONNIE-E,1,"MONNIER",47.402592,-0.52517,-1,0,OAN:SA:zone_MONNIER,Europe/Paris,2,OAN, +OAN:SP:MONNIER,1,"MONNIER",47.403168,-0.525121,-1,0,OAN:SA:zone_MONNIER,Europe/Paris,2,OAN, +OAN:SP:MONOD,1,"MONOD",47.478785,-0.636622,-1,0,OAN:SA:zone_MONOD,Europe/Paris,2,OAN, +OAN:SP:MONOD-E,1,"MONOD",47.478971,-0.63642,-1,0,OAN:SA:zone_MONOD,Europe/Paris,2,OAN, +OAN:SP:MONPEV-E,1,"MONPLAISIR",47.490718,-0.527397,-1,0,OAN:SA:zone_MONPLAISIR,Europe/Paris,0,OAN, +OAN:SP:MONPL22,1,"MONPLAISIR",47.49103,-0.527615,-1,0,OAN:SA:zone_MONPLAISIR,Europe/Paris,2,OAN, +OAN:SP:MONPLAIS,1,"MONPLAISIR",47.491135,-0.528296,-1,0,OAN:SA:zone_MONPLAISIR,Europe/Paris,2,OAN, +OAN:SP:MONPR-E,1,"MONPROFIT",47.474552,-0.567191,-1,0,OAN:SA:zone_MONPROFIT,Europe/Paris,2,OAN, +OAN:SP:MONPRO-E,1,"MONPROFIT",47.474303,-0.566699,-1,0,OAN:SA:zone_MONPROFIT,Europe/Paris,2,OAN, +OAN:SP:MONPROF,1,"MONPROFIT",47.474348,-0.566689,-1,0,OAN:SA:zone_MONPROFIT,Europe/Paris,2,OAN, +OAN:SP:MONPROFI,1,"MONPROFIT",47.474625,-0.5675,-1,0,OAN:SA:zone_MONPROFIT,Europe/Paris,2,OAN, +OAN:SP:MONTAI-E,1,"MONTAIGNE",47.469505,-0.531632,-1,0,OAN:SA:zone_MONTAIGNE,Europe/Paris,0,OAN, +OAN:SP:MONTAIG,1,"MONTAIGNE",47.470863,-0.53136,-1,0,OAN:SA:zone_MONTAIGNE,Europe/Paris,2,OAN, +OAN:SP:MONTCA-E,1,"MONT CASSIN",47.447147,-0.569532,-1,0,OAN:SA:zone_MONT_CASSIN,Europe/Paris,2,OAN, +OAN:SP:MONTCASB,1,"MONT CASSIN",47.447224,-0.569417,-1,0,OAN:SA:zone_MONT_CASSIN,Europe/Paris,2,OAN, +OAN:SP:MONTEC-E,1,"MONTECLAIR",47.464432,-0.604735,-1,0,OAN:SA:zone_MONTECLAIR,Europe/Paris,0,OAN, +OAN:SP:MONTECLA,1,"MONTECLAIR",47.464486,-0.604837,-1,0,OAN:SA:zone_MONTECLAIR,Europe/Paris,0,OAN, +OAN:SP:MONTEQ-E,1,"MONTESQUIEU",47.473785,-0.579827,-1,0,OAN:SA:zone_MONTESQUIEU,Europe/Paris,0,OAN, +OAN:SP:MONTES-E,1,"MONTESQUIEU",47.473782,-0.579177,-1,0,OAN:SA:zone_MONTESQUIEU,Europe/Paris,0,OAN, +OAN:SP:MONTESQU,1,"MONTESQUIEU",47.473753,-0.580357,-1,0,OAN:SA:zone_MONTESQUIEU,Europe/Paris,0,OAN, +OAN:SP:MONTHI-E,1,"MONTHIBERT",47.444752,-0.47334,-1,0,OAN:SA:zone_MONTHIBERT,Europe/Paris,2,OAN, +OAN:SP:MONTHIBE,1,"MONTHIBERT",47.444689,-0.473695,-1,0,OAN:SA:zone_MONTHIBERT,Europe/Paris,2,OAN, +OAN:SP:MONTREP,1,"REPUBLIQUE MONTREUIL",47.528893,-0.611301,-1,0,OAN:SA:zone_REPUBLIQUE_MONTREUIL,Europe/Paris,2,OAN, +OAN:SP:MOREL,1,"MOREL",47.47493,-0.608593,-1,0,OAN:SA:zone_MOREL,Europe/Paris,2,OAN, +OAN:SP:MOREL-E,1,"MOREL",47.47493,-0.608513,-1,0,OAN:SA:zone_MOREL,Europe/Paris,2,OAN, +OAN:SP:MORELE-E,1,"MORELLERIE",47.451222,-0.54482,-1,0,OAN:SA:zone_MORELLERIE,Europe/Paris,0,OAN, +OAN:SP:MORELI-E,1,"MORELLERIE",47.451702,-0.545403,-1,0,OAN:SA:zone_MORELLERIE,Europe/Paris,0,OAN, +OAN:SP:MORELL,1,"MORELLERIE",47.452709,-0.545113,-1,0,OAN:SA:zone_MORELLERIE,Europe/Paris,0,OAN, +OAN:SP:MORELL-E,1,"MORELLERIE",47.452682,-0.545098,-1,0,OAN:SA:zone_MORELLERIE,Europe/Paris,0,OAN, +OAN:SP:MORELLER,1,"MORELLERIE",47.45142,-0.544897,-1,0,OAN:SA:zone_MORELLERIE,Europe/Paris,0,OAN, +OAN:SP:MORELLIE,1,"MORELLERIE",47.451839,-0.545331,-1,0,OAN:SA:zone_MORELLERIE,Europe/Paris,2,OAN, +OAN:SP:MORET-E,1,"MORETTE",47.604333,-0.560084,-1,0,OAN:SA:zone_MORETTE,Europe/Paris,0,OAN, +OAN:SP:MORETT,1,"MORETTE",47.604228,-0.560768,-1,0,OAN:SA:zone_MORETTE,Europe/Paris,0,OAN, +OAN:SP:MORLIE-E,1,"MORLIERE",47.461572,-0.482373,-1,0,OAN:SA:zone_MORLIERE,Europe/Paris,2,OAN, +OAN:SP:MORLIERE,1,"MORLIERE",47.46162,-0.482454,-1,0,OAN:SA:zone_MORLIERE,Europe/Paris,2,OAN, +OAN:SP:MOULAN-E,1,"MOULIN DES LANDES",47.53029,-0.47645,-1,0,OAN:SA:zone_MOULIN_DES_LANDES,Europe/Paris,2,OAN, +OAN:SP:MOULANDE,1,"MOULIN DES LANDES",47.53023,-0.47677,-1,0,OAN:SA:zone_MOULIN_DES_LANDES,Europe/Paris,2,OAN, +OAN:SP:MOULINMA,1,"MOULIN MARCILLE",47.433716,-0.500682,-1,0,OAN:SA:zone_MOULIN_MARCILLE,Europe/Paris,2,OAN, +OAN:SP:MOUNLY-E,1,"MOUNIER LYCEE",47.4892,-0.526925,-1,0,OAN:SA:zone_MOUNIER_LYCEE,Europe/Paris,0,OAN, +OAN:SP:MOUNLYCE,1,"MOUNIER LYCEE",47.489496,-0.527073,-1,0,OAN:SA:zone_MOUNIER_LYCEE,Europe/Paris,0,OAN, +OAN:SP:MPLAIS-E,1,"MONPLAISIR PLESSIS GRAMMOIRE",47.499931,-0.428712,-1,0,OAN:SA:zone_MONPLAISIR_PLESSIS_GRAMMOIRE,Europe/Paris,0,OAN, +OAN:SP:MPLAISIR,1,"MONPLAISIR PLESSIS GRAMMOIRE",47.49944,-0.43031,-1,0,OAN:SA:zone_MONPLAISIR_PLESSIS_GRAMMOIRE,Europe/Paris,0,OAN, +OAN:SP:MURSERIG,1,"MURS ERIGNE",47.395409,-0.555869,-1,0,OAN:SA:zone_MURS_ERIGNE,Europe/Paris,0,OAN, +OAN:SP:MURSHDV,1,"HOTEL DE VILLE",47.401878,-0.536493,-1,0,OAN:SA:zone_HOTEL_DE_VILLE,Europe/Paris,2,OAN, +OAN:SP:MURSHV-E,1,"HOTEL DE VILLE",47.401798,-0.537152,-1,0,OAN:SA:zone_HOTEL_DE_VILLE,Europe/Paris,2,OAN, +OAN:SP:MUSSET,1,"MUSSET",47.473706,-0.539744,-1,0,OAN:SA:zone_MUSSET,Europe/Paris,2,OAN, +OAN:SP:MUSSET-E,1,"MUSSET",47.473613,-0.53877,-1,0,OAN:SA:zone_MUSSET,Europe/Paris,2,OAN, +OAN:SP:MUTUAL-E,1,"MUTUALITE",47.455265,-0.540779,-1,0,OAN:SA:zone_MUTUALITE,Europe/Paris,2,OAN, +OAN:SP:MUTUALIT,1,"MUTUALITE",47.45565,-0.540839,-1,0,OAN:SA:zone_MUTUALITE,Europe/Paris,2,OAN, +OAN:SP:NDAMELAC,1,"NOTRE DAME DU LAC",47.479654,-0.589761,-1,0,OAN:SA:zone_NOTRE_DAME_DU_LAC,Europe/Paris,2,OAN, +OAN:SP:NDAMLA-E,1,"NOTRE DAME DU LAC",47.479657,-0.589655,-1,0,OAN:SA:zone_NOTRE_DAME_DU_LAC,Europe/Paris,2,OAN, +OAN:SP:NONNA-E,1,"LES NONNAINS",47.586489,-0.423106,-1,0,OAN:SA:zone_LES_NONNAINS,Europe/Paris,0,OAN, +OAN:SP:NONNAINS,1,"LES NONNAINS",47.586937,-0.423694,-1,0,OAN:SA:zone_LES_NONNAINS,Europe/Paris,0,OAN, +OAN:SP:NOUE-E,1,"NOUELLE",47.54494,-0.669613,-1,0,OAN:SA:zone_NOUELLE,Europe/Paris,0,OAN, +OAN:SP:NOUELLE,1,"NOUELLE",47.544957,-0.669676,-1,0,OAN:SA:zone_NOUELLE,Europe/Paris,0,OAN, +OAN:SP:NOYANT,1,"NOYANT",47.56335,-0.5456,-1,0,OAN:SA:zone_NOYANT,Europe/Paris,2,OAN, +OAN:SP:NOYANT-E,1,"NOYANT",47.56337,-0.54583,-1,0,OAN:SA:zone_NOYANT,Europe/Paris,2,OAN, +OAN:SP:NOZAY,1,"NOZAY",47.487831,-0.532009,-1,0,OAN:SA:zone_NOZAY,Europe/Paris,2,OAN, +OAN:SP:NOZAY-E,1,"NOZAY",47.487602,-0.532103,-1,0,OAN:SA:zone_NOZAY,Europe/Paris,2,OAN, +OAN:SP:OFFTOU-E,1,"OFFICE DE TOURISME",47.469143,-0.557856,-1,0,OAN:SA:zone_OFFICE_DE_TOURISME,Europe/Paris,2,OAN, +OAN:SP:OFFTOURI,1,"OFFICE DE TOURISME",47.468853,-0.558252,-1,0,OAN:SA:zone_OFFICE_DE_TOURISME,Europe/Paris,2,OAN, +OAN:SP:OISEA-E,1,"OISEAUX",47.501194,-0.588329,-1,0,OAN:SA:zone_OISEAUX,Europe/Paris,0,OAN, +OAN:SP:OISEAUX,1,"OISEAUX",47.501536,-0.587245,-1,0,OAN:SA:zone_OISEAUX,Europe/Paris,0,OAN, +OAN:SP:OLIVER-E,1,"OLIVERAIE",47.427259,-0.712397,-1,0,OAN:SA:zone_OLIVERAIE,Europe/Paris,0,OAN, +OAN:SP:OLIVERAI,1,"OLIVERAIE",47.427245,-0.712747,-1,0,OAN:SA:zone_OLIVERAIE,Europe/Paris,0,OAN, +OAN:SP:ORGEM2-E,1,"ORGEMONT",47.447929,-0.541856,-1,0,OAN:SA:zone_ORGEMONT,Europe/Paris,0,OAN, +OAN:SP:ORGEMONT,1,"ORGEMONT",47.447067,-0.542565,-1,0,OAN:SA:zone_ORGEMONT,Europe/Paris,0,OAN, +OAN:SP:ORMEAU-E,1,"ORMEAUX",47.480076,-0.51919,-1,0,OAN:SA:zone_ORMEAUX,Europe/Paris,2,OAN, +OAN:SP:ORMEAUX,1,"ORMEAUX",47.479847,-0.520054,-1,0,OAN:SA:zone_ORMEAUX,Europe/Paris,2,OAN, +OAN:SP:P-ANJO-E,1,"PETIT ANJOU",47.44454,-0.614635,-1,0,OAN:SA:zone_PETIT_ANJOU,Europe/Paris,0,OAN, +OAN:SP:P-ANJOU,1,"PETIT ANJOU",47.444388,-0.6146,-1,0,OAN:SA:zone_PETIT_ANJOU,Europe/Paris,0,OAN, +OAN:SP:PAGNOL,1,"PAGNOL",47.55417,-0.66869,-1,0,OAN:SA:zone_PAGNOL,Europe/Paris,2,OAN, +OAN:SP:PALLAC-E,1,"PALLACH",47.445915,-0.558731,-1,0,OAN:SA:zone_PALLACH,Europe/Paris,2,OAN, +OAN:SP:PALLACH,1,"PALLACH",47.446178,-0.559063,-1,0,OAN:SA:zone_PALLACH,Europe/Paris,2,OAN, +OAN:SP:PAPERI-E,1,"PAPERIE",47.46849,-0.506503,-1,0,OAN:SA:zone_PAPERIE,Europe/Paris,2,OAN, +OAN:SP:PAPERIE,1,"PAPERIE",47.468743,-0.507152,-1,0,OAN:SA:zone_PAPERIE,Europe/Paris,2,OAN, +OAN:SP:PAQUER-E,1,"PAQUERETTE",47.485911,-0.649433,-1,0,OAN:SA:zone_PAQUERETTE,Europe/Paris,0,OAN, +OAN:SP:PAQUERET,1,"PAQUERETTE",47.485937,-0.649222,-1,0,OAN:SA:zone_PAQUERETTE,Europe/Paris,0,OAN, +OAN:SP:PARC,1,"RONCEVAUX",47.486731,-0.598707,-1,0,OAN:SA:zone_RONCEVAUX,Europe/Paris,0,OAN, +OAN:SP:PARCEX-E,1,"PARC EXPO CITE DE L'OBJET CONNECTE",47.497051,-0.493459,-1,0,OAN:SA:zone_PARC_EXPO_CITE_DE_LOBJET_CONNECTE,Europe/Paris,2,OAN, +OAN:SP:PARCEXPO,1,"PARC EXPO CITE DE L'OBJET CONNECTE",47.49692,-0.494037,-1,0,OAN:SA:zone_PARC_EXPO_CITE_DE_LOBJET_CONNECTE,Europe/Paris,2,OAN, +OAN:SP:PARCGA-E,1,"GARENNE",47.478355,-0.576626,-1,0,OAN:SA:zone_GARENNE,Europe/Paris,2,OAN, +OAN:SP:PARCGARE,1,"GARENNE",47.478313,-0.57661,-1,0,OAN:SA:zone_GARENNE,Europe/Paris,2,OAN, +OAN:SP:PARCIN-E,1,"PARC INDUSTRIEL Angers-Ecouflant",47.506335,-0.507799,-1,0,OAN:SA:zone_PARC_INDUSTRIEL_Angers-Ecouflant,Europe/Paris,2,OAN, +OAN:SP:PARCINDU,1,"PARC INDUSTRIEL Angers-Ecouflant",47.506323,-0.507884,-1,0,OAN:SA:zone_PARC_INDUSTRILE_Angers-Ecouflant,Europe/Paris,2,OAN, +OAN:SP:PARMEN-E,1,"PARMENTIER",47.45314,-0.518543,-1,0,OAN:SA:zone_PARMENTIER,Europe/Paris,0,OAN, +OAN:SP:PARMENTI,1,"PARMENTIER",47.453125,-0.518489,-1,0,OAN:SA:zone_PARMENTIER,Europe/Paris,0,OAN, +OAN:SP:PASTEU-E,1,"PASTEUR",47.467113,-0.492965,-1,0,OAN:SA:zone_PASTEUR,Europe/Paris,2,OAN, +OAN:SP:PASTEUR,1,"PASTEUR",47.466996,-0.493055,-1,0,OAN:SA:zone_PASTEUR,Europe/Paris,2,OAN, +OAN:SP:PATIO,1,"PATIO",47.51038,-0.64989,-1,0,OAN:SA:zone_PATIO,Europe/Paris,2,OAN, +OAN:SP:PATIO-E,1,"PATIO",47.51064,-0.65068,-1,0,OAN:SA:zone_PATIO,Europe/Paris,2,OAN, +OAN:SP:PATIS,1,"PATIS",47.464888,-0.707857,-1,0,OAN:SA:zone_PATIS,Europe/Paris,0,OAN, +OAN:SP:PATIS-E,1,"PATIS",47.464754,-0.706973,-1,0,OAN:SA:zone_PATIS,Europe/Paris,0,OAN, +OAN:SP:PATNOIRE,1,"PATINOIRE",47.466259,-0.552536,-1,0,OAN:SA:zone_PATINOIRE,Europe/Paris,2,OAN, +OAN:SP:PATTON,1,"PATTON",47.473446,-0.591465,-1,0,OAN:SA:zone_PATTON,Europe/Paris,0,OAN, +OAN:SP:PATTON-E,1,"PATTON",47.473396,-0.591993,-1,0,OAN:SA:zone_PATTON,Europe/Paris,0,OAN, +OAN:SP:PATUR-E,1,"PATUREAUX",47.43399,-0.527917,-1,0,OAN:SA:zone_PATUREAUX,Europe/Paris,2,OAN, +OAN:SP:PATUREAU,1,"PATUREAUX",47.433861,-0.528109,-1,0,OAN:SA:zone_PATUREAUX,Europe/Paris,2,OAN, +OAN:SP:PAUGE-E,1,"PAUGER",47.483106,-0.67802,-1,0,OAN:SA:zone_PAUGER,Europe/Paris,0,OAN, +OAN:SP:PAUGER,1,"PAUGER",47.483063,-0.677973,-1,0,OAN:SA:zone_PAUGER,Europe/Paris,0,OAN, +OAN:SP:PAVILL-E,1,"PAVILLON",47.465945,-0.620985,-1,0,OAN:SA:zone_PAVILLON,Europe/Paris,0,OAN, +OAN:SP:PAVILLO,1,"PAVILLON",47.465411,-0.621792,-1,0,OAN:SA:zone_PAVILLON,Europe/Paris,0,OAN, +OAN:SP:PCOUBE-E,1,"COUBERTIN",47.462593,-0.532309,-1,0,OAN:SA:zone_COUBERTIN,Europe/Paris,0,OAN, +OAN:SP:PCOUBERT,1,"COUBERTIN",47.461948,-0.532553,-1,0,OAN:SA:zone_COUBERTIN,Europe/Paris,0,OAN, +OAN:SP:PEGARD-E,1,"PETITE GARDE",47.508377,-0.588006,-1,0,OAN:SA:zone_PETITE_GARDE,Europe/Paris,2,OAN, +OAN:SP:PEGARDE,1,"PETITE GARDE",47.508404,-0.588021,-1,0,OAN:SA:zone_PETITE_GARDE,Europe/Paris,2,OAN, +OAN:SP:PELEGL-E,1,"EGLISE DE PELLOUAILLES",47.521531,-0.443999,-1,0,OAN:SA:zone_EGLISE_DE_PELLOUAILLES,Europe/Paris,2,OAN, +OAN:SP:PELEGLIS,1,"EGLISE DE PELLOUAILLES",47.521539,-0.444147,-1,0,OAN:SA:zone_EGLISE_DE_PELLOUAILLES,Europe/Paris,2,OAN, +OAN:SP:PELLEG-E,1,"PELLOUAILLES EGLISE",47.52225,-0.4433,-1,0,OAN:SA:zone_PELLOUAILLES_EGLISE,Europe/Paris,2,OAN, +OAN:SP:PELLER-E,1,"PELLERINIERE",47.460669,-0.488505,-1,0,OAN:SA:zone_PELLERINIERE,Europe/Paris,2,OAN, +OAN:SP:PELLERI,1,"PELLERINIERE",47.460637,-0.488082,-1,0,OAN:SA:zone_PELLERINIERE,Europe/Paris,2,OAN, +OAN:SP:PELMAI-E,1,"MAIRIE DE PELLOUAILLES",47.521782,-0.439413,-1,0,OAN:SA:zone_MAIRIE_DE_PELLOUAILLES,Europe/Paris,0,OAN, +OAN:SP:PELSTA-E,1,"STADE DE PELLOUAILLES",47.523355,-0.438853,-1,0,OAN:SA:zone_STADE_DE_PELLOUAILLES,Europe/Paris,0,OAN, +OAN:SP:PELSTADE,1,"STADE DE PELLOUAILLES",47.523254,-0.438916,-1,0,OAN:SA:zone_STADE_DE_PELLOUAILLES,Europe/Paris,0,OAN, +OAN:SP:PELUAU,1,"PELUAU",47.489651,-0.567417,-1,0,OAN:SA:zone_PELUAU,Europe/Paris,2,OAN, +OAN:SP:PELUAU-E,1,"PELUAU",47.489487,-0.567859,-1,0,OAN:SA:zone_PELUAU,Europe/Paris,0,OAN, +OAN:SP:PEPINI-E,1,"HALTE FERROVIAIRE",47.451192,-0.466448,-1,0,OAN:SA:zone_HALTE_FERROVIAIRE,Europe/Paris,0,OAN, +OAN:SP:PEPINIER,1,"HALTE FERROVIAIRE",47.452407,-0.469914,-1,0,OAN:SA:zone_HALTE_FERROVIAIRE,Europe/Paris,0,OAN, +OAN:SP:PERAUD-E,1,"PERRAUDIERE ZA",47.436282,-0.700197,-1,0,OAN:SA:zone_PERRAUDIERE_ZA,Europe/Paris,0,OAN, +OAN:SP:PERAUDIE,1,"PERRAUDIERE ZA",47.43619,-0.700112,-1,0,OAN:SA:zone_PERRAUDIERE_ZA,Europe/Paris,0,OAN, +OAN:SP:PERDRIAU,1,"PERDRIAU",47.439554,-0.48758,-1,0,OAN:SA:zone_PERDRIAU,Europe/Paris,0,OAN, +OAN:SP:PERN23-C,1,"PERRAUDIERE RD 723",47.438475,-0.698642,-1,0,OAN:SA:zone_PERRAUDIERE_RD_723,Europe/Paris,0,OAN, +OAN:SP:PERRAU-E,1,"PERRAUDIERE ST LAMBERT",47.482359,-0.681381,-1,0,OAN:SA:zone_PERRAUDIERE_ST_LAMBERT,Europe/Paris,0,OAN, +OAN:SP:PERRAUDI,1,"PERRAUDIERE",47.482288,-0.681225,-1,0,OAN:SA:zone_PERRAUDIERE,Europe/Paris,0,OAN, +OAN:SP:PERUSS-E,1,"PERUSSAIE",47.465549,-0.595477,-1,0,OAN:SA:zone_PERUSSAIE,Europe/Paris,0,OAN, +OAN:SP:PERUSSAI,1,"PERUSSAIE",47.466011,-0.596392,-1,0,OAN:SA:zone_PERUSSAIE,Europe/Paris,0,OAN, +OAN:SP:PETIPA-E,1,"PETITES PANNES",47.48877,-0.569852,-1,0,OAN:SA:zone_PETITES_PANNES,Europe/Paris,2,OAN, +OAN:SP:PETIPANN,1,"PETITES PANNES",47.48872,-0.570009,-1,0,OAN:SA:zone_PETITES_PANNES,Europe/Paris,2,OAN, +OAN:SP:PETLAN-E,1,"PETITE LANDE",47.554468,-0.581559,-1,0,OAN:SA:zone_PETITE_LANDE,Europe/Paris,0,OAN, +OAN:SP:PETLANDE,1,"PETITE LANDE",47.550773,-0.580109,-1,0,OAN:SA:zone_PETITE_LANDE,Europe/Paris,0,OAN, +OAN:SP:PETPOR-E,1,"PETIT PORT",47.425636,-0.609663,-1,0,OAN:SA:zone_PETIT_PORT,Europe/Paris,2,OAN, +OAN:SP:PETPORT,1,"PETIT PORT",47.42588,-0.60961,-1,0,OAN:SA:zone_PETIT_PORT,Europe/Paris,2,OAN, +OAN:SP:PICAS,1,"PICASSO",47.452981,-0.52286,-1,0,OAN:SA:zone_PICASSO,Europe/Paris,2,OAN, +OAN:SP:PICAS-E,1,"PICASSO",47.452918,-0.521782,-1,0,OAN:SA:zone_PICASSO,Europe/Paris,2,OAN, +OAN:SP:PICASS-E,1,"REPUBLIQUE TRELAZE",47.450553,-0.505593,-1,0,OAN:SA:zone_REPUBLIQUE_TRELAZE,Europe/Paris,0,OAN, +OAN:SP:PICASSO,1,"REPUBLIQUE TRELAZE",47.450605,-0.505495,-1,0,OAN:SA:zone_REPUBLIQUE_TRELAZE,Europe/Paris,0,OAN, +OAN:SP:PIECE,1,"PIECE DU MOULIN",47.507133,-0.596254,-1,0,OAN:SA:zone_PIECE_DU_MOULIN,Europe/Paris,2,OAN, +OAN:SP:PIECE-E,1,"PIECE DU MOULIN",47.507114,-0.596253,-1,0,OAN:SA:zone_PIECE_DU_MOULIN,Europe/Paris,2,OAN, +OAN:SP:PIGNONIE,1,"PIGNONNIERE",47.487221,-0.498314,-1,0,OAN:SA:zone_PIGNONNIERE,Europe/Paris,2,OAN, +OAN:SP:PIJUIG-E,1,"PISCINE CAMILLE MUFFAT",47.534565,-0.61673,-1,0,OAN:SA:zone_PISCINE_CAMILLE_MUFFAT,Europe/Paris,2,OAN, +OAN:SP:PIJUIGI,1,"PISCINE CAMILLE MUFFAT",47.534572,-0.617143,-1,0,OAN:SA:zone_PISCINE_CAMILLE_MUFFAT,Europe/Paris,2,OAN, +OAN:SP:PILISE,1,"PIERRE LISE",47.472526,-0.541784,-1,0,OAN:SA:zone_PIERRE_LISE,Europe/Paris,2,OAN, +OAN:SP:PILISE-E,1,"PIERRE LISE",47.472423,-0.542165,-1,0,OAN:SA:zone_PIERRE_LISE,Europe/Paris,2,OAN, +OAN:SP:PINEAU-E,1,"LA PINEAUDIERE",47.59326,-0.53711,-1,0,OAN:SA:zone_LA_PINEAUDIERE,Europe/Paris,2,OAN, +OAN:SP:PINEAUDI,1,"LA PINEAUDIERE",47.59328,-0.5369,-1,0,OAN:SA:zone_LA_PINEAUDIERE,Europe/Paris,2,OAN, +OAN:SP:PINSON-E,1,"PINSONS",47.472603,-0.630263,-1,0,OAN:SA:zone_PINSONS,Europe/Paris,0,OAN, +OAN:SP:PINSONS,1,"PINSONS",47.472374,-0.630091,-1,0,OAN:SA:zone_PINSONS,Europe/Paris,0,OAN, +OAN:SP:PISCJU-E,1,"PISCINE CAMILLE MUFFAT",47.534454,-0.617803,-1,0,OAN:SA:zone_PISCINE_CAMILLE_MUFFAT,Europe/Paris,0,OAN, +OAN:SP:PISCJUIG,1,"PISCINE CAMILLE MUFFAT",47.534489,-0.618137,-1,0,OAN:SA:zone_PISCINE_CAMILLE_MUFFAT,Europe/Paris,0,OAN, +OAN:SP:PIVERD-E,1,"PIVERDIERE",47.437737,-0.609695,-1,0,OAN:SA:zone_PIVERDIERE,Europe/Paris,0,OAN, +OAN:SP:PIVERDIE,1,"PIVERDIERE",47.437683,-0.609665,-1,0,OAN:SA:zone_PIVERDIERE,Europe/Paris,0,OAN, +OAN:SP:PLACEN-E,1,"PLACE NEY",47.478535,-0.543271,-1,0,OAN:SA:zone_PLACE_NEY,Europe/Paris,0,OAN, +OAN:SP:PLACENEY,1,"PLACE NEY",47.478355,-0.5435,-1,0,OAN:SA:zone_PLACE_NEY,Europe/Paris,0,OAN, +OAN:SP:PLATEF-E,1,"PLATEAU FLEURI",47.529942,-0.597671,-1,0,OAN:SA:zone_PLATEAU_FLEURI,Europe/Paris,0,OAN, +OAN:SP:PLATFLEU,1,"PLATEAU FLEURI",47.529713,-0.598123,-1,0,OAN:SA:zone_PLATEAU_FLEURI,Europe/Paris,0,OAN, +OAN:SP:PLATMA-E,1,"PLATEAU DU MAINE",47.458015,-0.603278,-1,0,OAN:SA:zone_PLATEAU_DU_MAINE,Europe/Paris,0,OAN, +OAN:SP:PLATMAIN,1,"PLATEAU DU MAINE",47.458008,-0.603224,-1,0,OAN:SA:zone_PLATEAU_DU_MAINE,Europe/Paris,0,OAN, +OAN:SP:PLDEUR-E,1,"PLACE DE L'EUROPE",47.48777,-0.527132,-1,0,OAN:SA:zone_PLACE_DE_LEUROPE,Europe/Paris,2,OAN, +OAN:SP:PLDULY-E,1,"PLACE DU LYCEE",47.466953,-0.544569,-1,0,OAN:SA:zone_PLACE_DU_LYCEE,Europe/Paris,0,OAN, +OAN:SP:PLDULYCE,1,"PLACE DU LYCEE",47.466866,-0.544432,-1,0,OAN:SA:zone_PLACE_DU_LYCEE,Europe/Paris,0,OAN, +OAN:SP:PLGBEL-E,1,"BELLEVUE",47.50473,-0.44034,-1,0,OAN:SA:zone_BELLEVUE,Europe/Paris,2,OAN, +OAN:SP:PLGBELVU,1,"BELLEVUE",47.5048,-0.4403,-1,0,OAN:SA:zone_BELLEVUE,Europe/Paris,2,OAN, +OAN:SP:PLGRAM-E,1,"MAIRIE DU PLESSIS GRAMMOIRE",47.501766,-0.430833,-1,0,OAN:SA:zone_MAIRIE_DU_PLESSIS_GRAMMOIRE,Europe/Paris,0,OAN, +OAN:SP:PLGRAMMO,1,"MAIRIE DU PLESSIS GRAMMOIRE",47.500969,-0.431588,-1,0,OAN:SA:zone_MAIRIE_DU_PLESSIS_GRAMMOIRE,Europe/Paris,0,OAN, +OAN:SP:PLMACE,1,"MAIRIE DU PLESSIS MACE",47.543886,-0.675045,-1,0,OAN:SA:zone_MAIRIE_DU_PLESSIS_MACE,Europe/Paris,0,OAN, +OAN:SP:PLMACE-E,1,"MAIRIE DU PLESSIS MACE",47.543674,-0.675385,-1,0,OAN:SA:zone_MAIRIE_DU_PLESSIS_MACE,Europe/Paris,0,OAN, +OAN:SP:PLOTIN-E,1,"PLOTINIERE",47.468818,-0.433327,-1,0,OAN:SA:zone_PLOTINIERE,Europe/Paris,2,OAN, +OAN:SP:PLOTINIE,1,"PLOTINIERE",47.468747,-0.43336,-1,0,OAN:SA:zone_PLOTINIERE,Europe/Paris,2,OAN, +OAN:SP:PMONPROF,1,"MONPROFIT",47.475619,-0.566948,-1,0,OAN:SA:zone_MONPROFIT,Europe/Paris,0,OAN, +OAN:SP:POINCA-E,1,"POINCARE",47.500277,-0.5897,-1,0,OAN:SA:zone_POINCARE,Europe/Paris,2,OAN, +OAN:SP:POINCARE,1,"POINCARE",47.499869,-0.589491,-1,0,OAN:SA:zone_POINCARE,Europe/Paris,2,OAN, +OAN:SP:POIREL,1,"POIREL",47.461655,-0.562081,-1,0,OAN:SA:zone_POIREL,Europe/Paris,2,OAN, +OAN:SP:POIREL-E,1,"POIREL",47.46189,-0.562399,-1,0,OAN:SA:zone_POIREL,Europe/Paris,2,OAN, +OAN:SP:POISSO-E,1,"POISSONNERIE",47.472492,-0.557069,-1,0,OAN:SA:zone_POISSONNERIE,Europe/Paris,2,OAN, +OAN:SP:POISSONN,1,"POISSONNERIE",47.47229,-0.557231,-1,0,OAN:SA:zone_POISSONNERIE,Europe/Paris,2,OAN, +OAN:SP:POMANJ-E,1,"POMANJOU",47.500233,-0.520737,-1,0,OAN:SA:zone_POMANJOU,Europe/Paris,0,OAN, +OAN:SP:POMANJO,1,"POMANJOU",47.500202,-0.520894,-1,0,OAN:SA:zone_POMANJOU,Europe/Paris,0,OAN, +OAN:SP:POMONE,1,"POMONE",47.481388,-0.574521,-1,0,OAN:SA:zone_POMONE,Europe/Paris,2,OAN, +OAN:SP:POMONE-E,1,"POMONE",47.481415,-0.574244,-1,0,OAN:SA:zone_POMONE,Europe/Paris,2,OAN, +OAN:SP:PONTLA-E,1,"PONT LAITIER",47.41291,-0.617433,-1,0,OAN:SA:zone_PONT_LAITIER,Europe/Paris,2,OAN, +OAN:SP:PONTLAIT,1,"PONT LAITIER",47.413208,-0.617052,-1,0,OAN:SA:zone_PONT_LAITIER,Europe/Paris,0,OAN, +OAN:SP:PONTNO-E,1,"PONT NOIR",47.463989,-0.562673,-1,0,OAN:SA:zone_PONT_NOIR,Europe/Paris,0,OAN, +OAN:SP:PONTNOIR,1,"PONT NOIR",47.463913,-0.562868,-1,0,OAN:SA:zone_PONT_NOIR,Europe/Paris,0,OAN, +OAN:SP:PONTSC-E,1,"MAIRIE DES PONTS DE CE",47.425125,-0.525411,-1,0,OAN:SA:zone_MAIRIE_DES_PONTS_DE_CE,Europe/Paris,2,OAN, +OAN:SP:PONTSCEM,1,"MAIRIE DES PONTS DE CE",47.42524,-0.525417,-1,0,OAN:SA:zone_MAIRIE_DES_PONTS_DE_CE,Europe/Paris,2,OAN, +OAN:SP:PORTSG,1,"LE PORT",47.421607,-0.573657,-1,0,OAN:SA:zone_LE_PORT,Europe/Paris,0,OAN, +OAN:SP:PORTSG-E,1,"LE PORT",47.421555,-0.574012,-1,0,OAN:SA:zone_LE_PORT,Europe/Paris,0,OAN, +OAN:SP:POUILAR,1,"POUILLE",47.432823,-0.532139,-1,0,OAN:SA:zone_POUILLE,Europe/Paris,2,OAN, +OAN:SP:POUILLE,1,"POUILLE",47.432869,-0.53177,-1,0,OAN:SA:zone_POUILLE,Europe/Paris,2,OAN, +OAN:SP:PREVERT,1,"PREVERT",47.48788,-0.59766,-1,0,OAN:SA:zone_PREVERT,Europe/Paris,2,OAN, +OAN:SP:PRIEUR-E,1,"PRIEURE",47.471943,-0.633465,-1,0,OAN:SA:zone_PRIEURE,Europe/Paris,2,OAN, +OAN:SP:PRIEURE,1,"PRIEURE",47.471924,-0.633584,-1,0,OAN:SA:zone_PRIEURE,Europe/Paris,2,OAN, +OAN:SP:PRINCE,1,"PRINCE",47.389477,-0.525732,-1,0,OAN:SA:zone_PRINCE,Europe/Paris,0,OAN, +OAN:SP:PRINCE-E,1,"PRINCE",47.389568,-0.52581,-1,0,OAN:SA:zone_PRINCE,Europe/Paris,0,OAN, +OAN:SP:PROME-E,1,"PROMENIERS",47.477386,-0.631472,-1,0,OAN:SA:zone_PROMENIERS,Europe/Paris,2,OAN, +OAN:SP:PROMENIE,1,"PROMENIERS",47.477371,-0.631458,-1,0,OAN:SA:zone_PROMENIERS,Europe/Paris,2,OAN, +OAN:SP:PROUD-E,1,"PROUDHON",47.46166,-0.603307,-1,0,OAN:SA:zone_PROUDHON,Europe/Paris,0,OAN, +OAN:SP:PROUDH-E,1,"PROUDHON",47.461642,-0.603306,-1,0,OAN:SA:zone_PROUDHON,Europe/Paris,2,OAN, +OAN:SP:PROUDHON,1,"PROUDHON",47.461269,-0.603816,-1,0,OAN:SA:zone_PROUDHON,Europe/Paris,2,OAN, +OAN:SP:PROVIN-E,1,"PROVINS",47.492593,-0.50204,-1,0,OAN:SA:zone_PROVINS,Europe/Paris,2,OAN, +OAN:SP:PROVINS,1,"PROVINS",47.492521,-0.502395,-1,0,OAN:SA:zone_PROVINS,Europe/Paris,2,OAN, +OAN:SP:PRTLAU-E,1,"PORT LAUNAY",47.521011,-0.521742,-1,0,OAN:SA:zone_PORT_LAUNAY,Europe/Paris,0,OAN, +OAN:SP:PRTLAUNA,1,"PORT LAUNAY",47.520787,-0.521577,-1,0,OAN:SA:zone_PORT_LAUNAY,Europe/Paris,0,OAN, +OAN:SP:PRUILLE,1,"PLACE DE LA FONTAINE",47.577093,-0.662803,-1,0,OAN:SA:zone_PLACE_DE_LA_FONTAINE,Europe/Paris,2,OAN, +OAN:SP:PRUNIE-E,1,"PRUNIERS",47.449276,-0.602491,-1,0,OAN:SA:zone_PRUNIERS,Europe/Paris,2,OAN, +OAN:SP:PRUNIERS,1,"PRUNIERS",47.449127,-0.602748,-1,0,OAN:SA:zone_PRUNIERS,Europe/Paris,2,OAN, +OAN:SP:PTANJO-E,1,"CROISEE",47.458919,-0.66819,-1,0,OAN:SA:zone_CROISEE,Europe/Paris,0,OAN, +OAN:SP:PTANJOU,1,"CROISEE",47.459009,-0.66748,-1,0,OAN:SA:zone_CROISEE,Europe/Paris,0,OAN, +OAN:SP:PTASSI-E,1,"POLE TASSIGNY",47.446495,-0.537214,-1,0,OAN:SA:zone_POLE_TASSIGNY,Europe/Paris,2,OAN, +OAN:SP:PTFILL-E,1,"PONT AUX FILLES",47.512583,-0.515063,-1,0,OAN:SA:zone_PONT_AUX_FILLES,Europe/Paris,0,OAN, +OAN:SP:PTFILLES,1,"PONT AUX FILLES",47.512084,-0.514949,-1,0,OAN:SA:zone_PONT_AUX_FILLES,Europe/Paris,0,OAN, +OAN:SP:PTGRCH-E,1,"PETITS GRANDCHAMPS",47.463991,-0.71435,-1,0,OAN:SA:zone_PETITS_GRANDCHAMPS,Europe/Paris,0,OAN, +OAN:SP:PTGRCHAM,1,"PETITS GRANDCHAMPS",47.463967,-0.714332,-1,0,OAN:SA:zone_PETITS_GRANDCHAMPS,Europe/Paris,0,OAN, +OAN:SP:PTMONG-E,1,"PETIT MONGAZON",47.486745,-0.483308,-1,0,OAN:SA:zone_PETIT_MONGAZON,Europe/Paris,0,OAN, +OAN:SP:PTMONGAZ,1,"PETIT MONGAZON",47.486971,-0.483463,-1,0,OAN:SA:zone_PETIT_MONGAZON,Europe/Paris,0,OAN, +OAN:SP:PYRA10-E,1,"PYRAMIDE",47.440192,-0.488715,-1,0,OAN:SA:zone_PYRAMIDE,Europe/Paris,0,OAN, +OAN:SP:PYRAM02,1,"PYRAMIDE",47.440832,-0.488696,-1,0,OAN:SA:zone_PYRAMIDE,Europe/Paris,2,OAN, +OAN:SP:PYRAM10,1,"PYRAMIDE",47.440922,-0.490147,-1,0,OAN:SA:zone_PYRAMIDE,Europe/Paris,0,OAN, +OAN:SP:PYRAM2-E,1,"PYRAMIDE",47.440819,-0.488549,-1,0,OAN:SA:zone_PYRAMIDE,Europe/Paris,2,OAN, +OAN:SP:QUANTI-E,1,"QUANTINIERE",47.455252,-0.471638,-1,0,OAN:SA:zone_QUANTINIERE,Europe/Paris,2,OAN, +OAN:SP:QUANTIN,1,"QUANTINIERE",47.455172,-0.471607,-1,0,OAN:SA:zone_QUANTINIERE,Europe/Paris,2,OAN, +OAN:SP:QVENTS,1,"QUATRE VENTS",47.497244,-0.420842,-1,0,OAN:SA:zone_QUATRE_VENTS,Europe/Paris,0,OAN, +OAN:SP:QVENTS-E,1,"QUATRE VENTS",47.497124,-0.420842,-1,0,OAN:SA:zone_QUATRE_VENTS,Europe/Paris,0,OAN, +OAN:SP:RABELA-E,1,"RABELAIS",47.461602,-0.546921,-1,0,OAN:SA:zone_RABELAIS,Europe/Paris,2,OAN, +OAN:SP:RABELAI,1,"RABELAIS",47.461745,-0.546956,-1,0,OAN:SA:zone_RABELAIS,Europe/Paris,2,OAN, +OAN:SP:RAINIERE,1,"RAINIERE",47.57872,-0.47704,-1,0,OAN:SA:zone_RAINIERE,Europe/Paris,2,OAN, +OAN:SP:RAMON,1,"RAMON",47.486614,-0.537972,-1,0,OAN:SA:zone_RAMON,Europe/Paris,2,OAN, +OAN:SP:RAMON-E,1,"RAMON",47.486576,-0.538062,-1,0,OAN:SA:zone_RAMON,Europe/Paris,2,OAN, +OAN:SP:RANGEA-E,1,"RANGEARDIERE",47.41011,-0.622754,-1,0,OAN:SA:zone_RANGEARDIERE,Europe/Paris,2,OAN, +OAN:SP:RANGEARD,1,"RANGEARDIERE",47.410194,-0.622958,-1,0,OAN:SA:zone_RANGEARDIERE,Europe/Paris,2,OAN, +OAN:SP:RAPIDE-E,1,"RAPIDEX",47.502754,-0.513859,-1,0,OAN:SA:zone_RAPIDEX,Europe/Paris,0,OAN, +OAN:SP:RAPIDEX,1,"RAPIDEX",47.502739,-0.51411,-1,0,OAN:SA:zone_RAPIDEX,Europe/Paris,0,OAN, +OAN:SP:RASPAI-E,1,"RASPAIL",47.475071,-0.570193,-1,0,OAN:SA:zone_RASPAIL,Europe/Paris,0,OAN, +OAN:SP:RASPAIL,1,"RASPAIL",47.474922,-0.570012,-1,0,OAN:SA:zone_RASPAIL,Europe/Paris,0,OAN, +OAN:SP:RBRIOL-E,1,"ROUTE DE BRIOLLAY",47.486218,-0.532838,-1,0,OAN:SA:zone_ROUTE_DE_BRIOLLAY,Europe/Paris,2,OAN, +OAN:SP:RBRIOLLA,1,"ROUTE DE BRIOLLAY",47.486406,-0.532875,-1,0,OAN:SA:zone_ROUTE_DE_BRIOLLAY,Europe/Paris,2,OAN, +OAN:SP:RECLAI-E,1,"RENE CLAIR",47.536632,-0.621767,-1,0,OAN:SA:zone_RENE_CLAIR,Europe/Paris,2,OAN, +OAN:SP:RECLAIR,1,"RENE CLAIR",47.536756,-0.62185,-1,0,OAN:SA:zone_RENE_CLAIR,Europe/Paris,2,OAN, +OAN:SP:RENAR-E,1,"RENARDIERE",47.483729,-0.674186,-1,0,OAN:SA:zone_RENARDIERE,Europe/Paris,0,OAN, +OAN:SP:RENARD,1,"RENARDIERE",47.483814,-0.67414,-1,0,OAN:SA:zone_RENARDIERE,Europe/Paris,0,OAN, +OAN:SP:RENNES,1,"RENNES",47.477051,-0.549271,-1,0,OAN:SA:zone_RENNES,Europe/Paris,0,OAN, +OAN:SP:RENNES-E,1,"RENNES",47.477245,-0.549069,-1,0,OAN:SA:zone_RENNES,Europe/Paris,2,OAN, +OAN:SP:RENOIR,1,"AUGUSTE RENOIR",47.536211,-0.619573,-1,0,OAN:SA:zone_AUGUSTE_RENOIR,Europe/Paris,2,OAN, +OAN:SP:RENOIR-E,1,"AUGUSTE RENOIR",47.536129,-0.619622,-1,0,OAN:SA:zone_AUGUSTE_RENOIR,Europe/Paris,2,OAN, +OAN:SP:RENOU,1,"RENOU",47.436855,-0.486813,-1,0,OAN:SA:zone_RENOU,Europe/Paris,0,OAN, +OAN:SP:RENOU-E,1,"RENOU",47.437309,-0.486917,-1,0,OAN:SA:zone_RENOU,Europe/Paris,0,OAN, +OAN:SP:REPMON-E,1,"REPUBLIQUE MONTREUIL",47.528919,-0.610971,-1,0,OAN:SA:zone_REPUBLIQUE_MONTREUIL,Europe/Paris,2,OAN, +OAN:SP:REPTRE-E,1,"REPUBLIQUE TRELAZE",47.450281,-0.504218,-1,0,OAN:SA:zone_REPUBLIQUE_TRELAZE,Europe/Paris,2,OAN, +OAN:SP:REPTRELA,1,"REPUBLIQUE TRELAZE",47.450054,-0.504312,-1,0,OAN:SA:zone_REPUBLIQUE_TRELAZE,Europe/Paris,2,OAN, +OAN:SP:REPUBL-E,1,"REPUBLIQUE",47.471695,-0.553946,-1,0,OAN:SA:zone_REPUBLIQUE,Europe/Paris,2,OAN, +OAN:SP:REPUBLIQ,1,"REPUBLIQUE",47.471066,-0.554018,-1,0,OAN:SA:zone_REPUBLIQUE,Europe/Paris,2,OAN, +OAN:SP:RESIDENC,1,"RESIDENCE",47.57281,-0.48693,-1,0,OAN:SA:zone_RESIDENCE,Europe/Paris,0,OAN, +OAN:SP:RESTUN-E,1,"RESTAURANT UNIVERSITAIRE",47.479527,-0.600443,-1,0,OAN:SA:zone_RESTAURANT_UNIVERSITAIRE,Europe/Paris,2,OAN, +OAN:SP:RESTUNIV,1,"RESTAURANT UNIVERSITAIRE",47.479193,-0.600159,-1,0,OAN:SA:zone_RESTAURANT_UNIVERSITAIRE,Europe/Paris,2,OAN, +OAN:SP:REUSSI-E,1,"REUSSIERES",47.56941,-0.56264,-1,0,OAN:SA:zone_REUSSIERES,Europe/Paris,2,OAN, +OAN:SP:REUSSIER,1,"REUSSIERES",47.56955,-0.56272,-1,0,OAN:SA:zone_REUSSIERES,Europe/Paris,2,OAN, +OAN:SP:REVERI-E,1,"REVERIES",47.482052,-0.57785,-1,0,OAN:SA:zone_REVERIES,Europe/Paris,2,OAN, +OAN:SP:REVERIES,1,"REVERIES",47.48201,-0.578406,-1,0,OAN:SA:zone_REVERIES,Europe/Paris,2,OAN, +OAN:SP:RGILARDI,1,"ROUTE DES GILARDIERES",47.38594,-0.5647,-1,0,OAN:SA:zone_ROUTE_DES_GILARDIERES,Europe/Paris,2,OAN, +OAN:SP:RIOTTE-E,1,"RIOTTEAU",47.443844,-0.498833,-1,0,OAN:SA:zone_RIOTTEAU,Europe/Paris,0,OAN, +OAN:SP:RIOTTEAU,1,"RIOTTEAU",47.443913,-0.498889,-1,0,OAN:SA:zone_RIOTTEAU,Europe/Paris,0,OAN, +OAN:SP:RIPOLE-E,1,"RIPOLLET",47.511136,-0.588503,-1,0,OAN:SA:zone_RIPOLLET,Europe/Paris,2,OAN, +OAN:SP:RIPOLLE,1,"RIPOLLET",47.510904,-0.588783,-1,0,OAN:SA:zone_RIPOLLET,Europe/Paris,2,OAN, +OAN:SP:RIVET,1,"RIVET",47.436689,-0.516335,-1,0,OAN:SA:zone_RIVET,Europe/Paris,2,OAN, +OAN:SP:RIVET-E,1,"RIVET",47.436726,-0.515925,-1,0,OAN:SA:zone_RIVET,Europe/Paris,2,OAN, +OAN:SP:RMOINE-E,1,"ROCHE AUX MOINES",47.393936,-0.645817,-1,0,OAN:SA:zone_ROCHE_AUX_MOINES,Europe/Paris,0,OAN, +OAN:SP:RMOINES,1,"ROCHE AUX MOINES",47.393898,-0.645718,-1,0,OAN:SA:zone_ROCHE_AUX_MOINES,Europe/Paris,0,OAN, +OAN:SP:ROBIN,1,"ROBIN",47.475975,-0.594684,-1,0,OAN:SA:zone_ROBIN,Europe/Paris,0,OAN, +OAN:SP:ROBIN-E,1,"ROBIN",47.476116,-0.595143,-1,0,OAN:SA:zone_ROBIN,Europe/Paris,0,OAN, +OAN:SP:ROCEPI-E,1,"ROC EPINE",47.480175,-0.575875,-1,0,OAN:SA:zone_ROC_EPINE,Europe/Paris,2,OAN, +OAN:SP:ROCEPINE,1,"ROC EPINE",47.480293,-0.575882,-1,0,OAN:SA:zone_ROC_EPINE,Europe/Paris,2,OAN, +OAN:SP:ROCHE-E,1,"ROCHETTE",47.528844,-0.751712,-1,0,OAN:SA:zone_ROCHETTE,Europe/Paris,0,OAN, +OAN:SP:ROCHEF-E,1,"LA ROCHEFOUCAULD",47.479416,-0.556582,-1,0,OAN:SA:zone_LA_ROCHEFOUCAULD,Europe/Paris,2,OAN, +OAN:SP:ROCHEFOU,1,"LA ROCHEFOUCAULD",47.47887,-0.556901,-1,0,OAN:SA:zone_LA_ROCHEFOUCAULD,Europe/Paris,2,OAN, +OAN:SP:ROCHETTE,1,"LA ROCHETTE",47.528785,-0.751731,-1,0,OAN:SA:zone_LA_ROCHETTE,Europe/Paris,0,OAN, +OAN:SP:ROCHMA-E,1,"ROCHE MAROTTE",47.44742,-0.51936,-1,0,OAN:SA:zone_ROCHE_MAROTTE,Europe/Paris,2,OAN, +OAN:SP:ROCHMAR,1,"ROCHE MAROTTE",47.44753,-0.51933,-1,0,OAN:SA:zone_ROCHE_MAROTTE,Europe/Paris,2,OAN, +OAN:SP:RODIN,1,"RODIN",47.476032,-0.625714,-1,0,OAN:SA:zone_RODIN,Europe/Paris,2,OAN, +OAN:SP:RODIN-E,1,"RODIN",47.475986,-0.625645,-1,0,OAN:SA:zone_RODIN,Europe/Paris,2,OAN, +OAN:SP:ROFOULQ,1,"ROCHE FOULQUES",47.57575,-0.45499,-1,0,OAN:SA:zone_ROCHE_FOULQUES,Europe/Paris,2,OAN, +OAN:SP:ROIPOLO,1,"ROI DE POLOGNE",47.469545,-0.561275,-1,0,OAN:SA:zone_ROI_DE_POLOGNE,Europe/Paris,0,OAN, +OAN:SP:ROMA-AD,1,"ROCHE MORNA",47.4203,-0.581543,-1,0,OAN:SA:zone_ROCHE_MORNA,Europe/Paris,0,OAN, +OAN:SP:ROMAB-E,1,"ROMANERIE",47.484506,-0.508062,-1,0,OAN:SA:zone_ROMANERIE,Europe/Paris,0,OAN, +OAN:SP:ROMABLD,1,"ROMANERIE",47.484568,-0.507747,-1,0,OAN:SA:zone_ROMANERIE,Europe/Paris,0,OAN, +OAN:SP:ROMORNA,1,"ROCHE MORNA",47.4203,-0.581543,-1,0,OAN:SA:zone_ROCHE_MORNA,Europe/Paris,2,OAN, +OAN:SP:RONCER-E,1,"RONCERAY",47.529993,-0.565357,-1,0,OAN:SA:zone_RONCERAY,Europe/Paris,2,OAN, +OAN:SP:RONCERAY,1,"RONCERAY",47.529712,-0.564791,-1,0,OAN:SA:zone_RONCERAY,Europe/Paris,2,OAN, +OAN:SP:RONCIE-E,1,"RONCIERES",47.4361,-0.513597,-1,0,OAN:SA:zone_RONCIERES,Europe/Paris,2,OAN, +OAN:SP:RONCIERE,1,"RONCIERES",47.435883,-0.513559,-1,0,OAN:SA:zone_RONCIERES,Europe/Paris,2,OAN, +OAN:SP:ROSTAN-E,1,"FONTAINE",47.461256,-0.59901,-1,0,OAN:SA:zone_FONTAINE,Europe/Paris,0,OAN, +OAN:SP:ROSTAND,1,"FONTAINE",47.461293,-0.598999,-1,0,OAN:SA:zone_FONTAINE,Europe/Paris,0,OAN, +OAN:SP:ROUAIR-E,1,"ROUAIRIE",47.475452,-0.638799,-1,0,OAN:SA:zone_ROUAIRIE,Europe/Paris,2,OAN, +OAN:SP:ROUAIRIE,1,"ROUAIRIE",47.475498,-0.638828,-1,0,OAN:SA:zone_ROUAIRIE,Europe/Paris,2,OAN, +OAN:SP:ROUTE4-E,1,"ROUTE N 4",47.441624,-0.492386,-1,0,OAN:SA:zone_ROUTE_N_4,Europe/Paris,0,OAN, +OAN:SP:ROUTEN4,1,"ROUTE N 4",47.441788,-0.492726,-1,0,OAN:SA:zone_ROUTE_N_4,Europe/Paris,0,OAN, +OAN:SP:RTECHA-E,1,"ROUTE DE CHAMPIGNE",47.573242,-0.593334,-1,0,OAN:SA:zone_ROUTE_DE_CHAMPIGNE,Europe/Paris,0,OAN, +OAN:SP:RTECHAMP,1,"ROUTE DE CHAMPIGNE",47.573139,-0.593415,-1,0,OAN:SA:zone_ROUTE_DE_CHAMPIGNE,Europe/Paris,0,OAN, +OAN:SP:RTEDAN-E,1,"ROUTE D'ANGERS",47.42548,-0.556321,-1,0,OAN:SA:zone_ROUTE_DANGERS,Europe/Paris,2,OAN, +OAN:SP:RTEDANGE,1,"ROUTE D'ANGERS",47.4254,-0.556635,-1,0,OAN:SA:zone_ROUTE_DANGERS,Europe/Paris,2,OAN, +OAN:SP:RTEMEI-E,1,"ROUTE DE LA MEIGNANNE",47.477722,-0.639457,-1,0,OAN:SA:zone_ROUTE_DE_LA_MEIGNANNE,Europe/Paris,2,OAN, +OAN:SP:RTEMEIGN,1,"ROUTE DE LA MEIGNANNE",47.477708,-0.639337,-1,0,OAN:SA:zone_ROUTE_DE_LA_MEIGNANNE,Europe/Paris,2,OAN, +OAN:SP:RTEPAR-E,1,"ROUTE DE PARIS",47.489786,-0.507339,-1,0,OAN:SA:zone_ROUTE_DE_PARIS,Europe/Paris,2,OAN, +OAN:SP:RTEPARIS,1,"ROUTE DE PARIS",47.489565,-0.508053,-1,0,OAN:SA:zone_ROUTE_DE_PARIS,Europe/Paris,2,OAN, +OAN:SP:RTIERCE,1,"ROUTE DE TIERCE",47.58422,-0.4968,-1,0,OAN:SA:zone_ROUTE_DE_TIERCE,Europe/Paris,2,OAN, +OAN:SP:RTINAR-E,1,"ROCHE TINARD",47.496314,-0.403936,-1,0,OAN:SA:zone_ROCHE_TINARD,Europe/Paris,0,OAN, +OAN:SP:RTINARD,1,"ROCHE TINARD",47.496397,-0.403759,-1,0,OAN:SA:zone_ROCHE_TINARD,Europe/Paris,0,OAN, +OAN:SP:RTSORG-E,1,"ROUTE DE SORGES",47.43211,-0.48948,-1,0,OAN:SA:zone_ROUTE_DE_SORGES,Europe/Paris,2,OAN, +OAN:SP:RTSORGES,1,"ROUTE DE SORGES",47.43203,-0.48956,-1,0,OAN:SA:zone_ROUTE_DE_SORGES,Europe/Paris,2,OAN, +OAN:SP:RUELLE-E,1,"RUELLES",47.437332,-0.531453,-1,0,OAN:SA:zone_RUELLES,Europe/Paris,2,OAN, +OAN:SP:RUELLES,1,"RUELLES",47.43745,-0.531459,-1,0,OAN:SA:zone_RUELLES,Europe/Paris,2,OAN, +OAN:SP:SABLE-E,1,"LA SABLE",47.586849,-0.590492,-1,0,OAN:SA:zone_LA_SABLE,Europe/Paris,0,OAN, +OAN:SP:SABLON-E,1,"SABLONS",47.439861,-0.533234,-1,0,OAN:SA:zone_SABLONS,Europe/Paris,2,OAN, +OAN:SP:SABLONS,1,"SABLONS",47.439537,-0.532872,-1,0,OAN:SA:zone_SABLONS,Europe/Paris,2,OAN, +OAN:SP:SAICRO-E,1,"SAINTE CROIX",47.46994,-0.555085,-1,0,OAN:SA:zone_SAINTE_CROIX,Europe/Paris,2,OAN, +OAN:SP:SAICROIX,1,"SAINTE CROIX",47.470036,-0.554506,-1,0,OAN:SA:zone_SAINTE_CROIX,Europe/Paris,2,OAN, +OAN:SP:SAILLE-E,1,"SAILLERIE",47.486553,-0.506804,-1,0,OAN:SA:zone_SAILLERIE,Europe/Paris,0,OAN, +OAN:SP:SAJACQ-E,1,"SAINT JACQUES",47.473663,-0.572492,-1,0,OAN:SA:zone_SAINT_JACQUES,Europe/Paris,2,OAN, +OAN:SP:SAJACQUE,1,"SAINT JACQUES",47.473632,-0.57119,-1,0,OAN:SA:zone_SAINT_JACQUES,Europe/Paris,2,OAN, +OAN:SP:SALETTE,1,"AVRILLE SALETTE",47.512543,-0.586654,-1,0,OAN:SA:zone_AVRILLE_SALETTE,Europe/Paris,0,OAN, +OAN:SP:SARRCI-E,1,"CIMETIERE DE SARRIGNE",47.501459,-0.388097,-1,0,OAN:SA:zone_CIMETIERE_DE_SARRIGNE,Europe/Paris,0,OAN, +OAN:SP:SARRCIME,1,"CIMETIERE DE SARRIGNE",47.501488,-0.387442,-1,0,OAN:SA:zone_CIMETIERE_DE_SARRIGNE,Europe/Paris,0,OAN, +OAN:SP:SARRIG-E,1,"SARRIGNE LES PLANTES",47.502621,-0.379517,-1,0,OAN:SA:zone_SARRIGNE_LES_PLANTES,Europe/Paris,0,OAN, +OAN:SP:SARRIGNE,1,"LES PLANTES",47.502621,-0.379517,-1,0,OAN:SA:zone_LES_PLANTES,Europe/Paris,0,OAN, +OAN:SP:SARRMA-E,1,"MAIRIE DE SARRIGNE",47.50172,-0.383121,-1,0,OAN:SA:zone_MAIRIE_DE_SARRIGNE,Europe/Paris,0,OAN, +OAN:SP:SARRMAIR,1,"MAIRIE DE SARRIGNE",47.50173,-0.383242,-1,0,OAN:SA:zone_MAIRIE_DE_SARRIGNE,Europe/Paris,0,OAN, +OAN:SP:SAULAI-E,1,"SAULAIS",47.46991,-0.46264,-1,0,OAN:SA:zone_SAULAIS,Europe/Paris,2,OAN, +OAN:SP:SAULAIS,1,"SAULAIS",47.47029,-0.46194,-1,0,OAN:SA:zone_SAULAIS,Europe/Paris,2,OAN, +OAN:SP:SAVARY,1,"SAVARY",47.473499,-0.54272,-1,0,OAN:SA:zone_SAVARY,Europe/Paris,2,OAN, +OAN:SP:SAVARY-E,1,"SAVARY",47.473495,-0.541313,-1,0,OAN:SA:zone_SAVARY,Europe/Paris,2,OAN, +OAN:SP:SAVENNIE,1,"SAVENNIERES MAIL",47.383408,-0.655517,-1,0,OAN:SA:zone_SAVENNIERES_MAIL,Europe/Paris,0,OAN, +OAN:SP:SAVGARE,1,"GARE SAVENNIERES",47.381207,-0.655615,-1,0,OAN:SA:zone_GARE_SAVENNIERES,Europe/Paris,0,OAN, +OAN:SP:SBARTHEL,1,"SAINT BARTHELEMY",47.472619,-0.485793,-1,0,OAN:SA:zone_SAINT_BARTHELEMY,Europe/Paris,2,OAN, +OAN:SP:SCAMURS,1,"SCANIA MURS ERIGNE",47.38382,-0.54877,-1,0,OAN:SA:zone_SCANIA_MURS_ERIGNE,Europe/Paris,2,OAN, +OAN:SP:SCANIA,1,"SCANIA",47.493038,-0.522329,-1,0,OAN:SA:zone_SCANIA,Europe/Paris,0,OAN, +OAN:SP:SCANIA-E,1,"SCANIA",47.49358,-0.522292,-1,0,OAN:SA:zone_SCANIA,Europe/Paris,0,OAN, +OAN:SP:SCHUMA-E,1,"SCHUMAN",47.489199,-0.526895,-1,0,OAN:SA:zone_SCHUMAN,Europe/Paris,0,OAN, +OAN:SP:SCHWAL-E,1,"SCHWALBACH",47.503906,-0.602426,-1,0,OAN:SA:zone_SCHWALBACH,Europe/Paris,2,OAN, +OAN:SP:SCHWALBA,1,"SCHWALBACH",47.503914,-0.602439,-1,0,OAN:SA:zone_SCHWALBACH,Europe/Paris,2,OAN, +OAN:SP:SCHWE,1,"SCHWEITZER",47.482536,-0.522257,-1,0,OAN:SA:zone_SCHWEITZER,Europe/Paris,0,OAN, +OAN:SP:SCHWEITZ,1,"MIMOSAS",47.48163,-0.52327,-1,0,OAN:SA:zone_MIMOSAS,Europe/Paris,2,OAN, +OAN:SP:SCHWTZ-E,1,"MIMOSAS",47.481531,-0.523251,-1,0,OAN:SA:zone_MIMOSAS,Europe/Paris,2,OAN, +OAN:SP:SECUSO-E,1,"SECURITE SOCIALE",47.469017,-0.540062,-1,0,OAN:SA:zone_SECURITE_SOCIALE,Europe/Paris,2,OAN, +OAN:SP:SECUSOCI,1,"SECURITE SOCIALE",47.46912,-0.540185,-1,0,OAN:SA:zone_SECURITE_SOCIALE,Europe/Paris,2,OAN, +OAN:SP:SEMARD,1,"GARES SEMARD",47.464703,-0.560017,-1,0,OAN:SA:zone_GARES_SEMARD,Europe/Paris,0,OAN, +OAN:SP:SEPSON-E,1,"7 SONNETTES",47.485771,-0.515084,-1,0,OAN:SA:zone_7_SONNETTES,Europe/Paris,2,OAN, +OAN:SP:SEPSONET,1,"7 SONNETTES",47.48607,-0.514745,-1,0,OAN:SA:zone_7_SONNETTES,Europe/Paris,2,OAN, +OAN:SP:SHEAKS-E,1,"SHAKESPEARE",47.461906,-0.612412,-1,0,OAN:SA:zone_SHAKESPEARE,Europe/Paris,0,OAN, +OAN:SP:SHEAKSPE,1,"SHAKESPEARE",47.461868,-0.61249,-1,0,OAN:SA:zone_SHAKESPEARE,Europe/Paris,0,OAN, +OAN:SP:SLEZIN-E,1,"SAINT LEZIN",47.449314,-0.487885,-1,0,OAN:SA:zone_SAINT_LEZIN,Europe/Paris,0,OAN, +OAN:SP:SLEZIND,1,"SAINT LEZIN",47.450417,-0.488381,-1,0,OAN:SA:zone_SAINT_LEZIN,Europe/Paris,0,OAN, +OAN:SP:SOLAND,1,"SOLAND",47.39954,-0.531356,-1,0,OAN:SA:zone_SOLAND,Europe/Paris,2,OAN, +OAN:SP:SOLAND-E,1,"SOLAND",47.399568,-0.53092,-1,0,OAN:SA:zone_SOLAND,Europe/Paris,2,OAN, +OAN:SP:SOLELE-E,1,"SOLEIL LEVANT",47.484619,-0.517323,-1,0,OAN:SA:zone_SOLEIL_LEVANT,Europe/Paris,0,OAN, +OAN:SP:SOLELEVA,1,"SOLEIL LEVANT",47.484642,-0.517563,-1,0,OAN:SA:zone_SOLEIL_LEVANT,Europe/Paris,2,OAN, +OAN:SP:SORGES,1,"SORGES",47.431801,-0.48514,-1,0,OAN:SA:zone_SORGES,Europe/Paris,0,OAN, +OAN:SP:SOUCEL-E,1,"SOUCELLES",47.570132,-0.420353,-1,0,OAN:SA:zone_SOUCELLES,Europe/Paris,0,OAN, +OAN:SP:SOUCELLE,1,"SOUCELLES",47.569422,-0.420515,-1,0,OAN:SA:zone_SOUCELLES,Europe/Paris,0,OAN, +OAN:SP:SOUL-E,1,"SOULAIRE",47.577425,-0.554203,-1,0,OAN:SA:zone_SOULAIRE,Europe/Paris,2,OAN, +OAN:SP:SOULAI-E,1,"LE TERTRE SOULAINES",47.362837,-0.522703,-1,0,OAN:SA:zone_LE_TERTRE_SOULAINES,Europe/Paris,0,OAN, +OAN:SP:SOULAINE,1,"LE TERTRE SOULAINES",47.362494,-0.521774,-1,0,OAN:SA:zone_LE_TERTRE_SOULAINES,Europe/Paris,0,OAN, +OAN:SP:SOULAIR,1,"SOULAIRE",47.57744,-0.554294,-1,0,OAN:SA:zone_SOULAIRE,Europe/Paris,2,OAN, +OAN:SP:SOULBE-E,1,"BEAUREPAIRE SOULAIRE",47.55647,-0.55568,-1,0,OAN:SA:zone_BEAUREPAIRE_SOULAIRE,Europe/Paris,2,OAN, +OAN:SP:SOULBEAU,1,"BEAUREPAIRE SOULAIRE",47.55638,-0.5556,-1,0,OAN:SA:zone_BEAUREPAIRE_SOULAIRE,Europe/Paris,2,OAN, +OAN:SP:SOULCH-E,1,"LES CHAPELLES",47.57706,-0.54483,-1,0,OAN:SA:zone_LES_CHAPELLES,Europe/Paris,2,OAN, +OAN:SP:SOULCHAP,1,"LES CHAPELLES",47.57704,-0.54466,-1,0,OAN:SA:zone_LES_CHAPELLES,Europe/Paris,2,OAN, +OAN:SP:SOULEC-E,1,"ECOLE DE SOULAINES",47.36497,-0.52172,-1,0,OAN:SA:zone_ECOLE_DE_SOULAINES,Europe/Paris,2,OAN, +OAN:SP:SOULECOL,1,"ECOLE DE SOULAINES",47.36496,-0.52187,-1,0,OAN:SA:zone_ECOLE_DE_SOULAINES,Europe/Paris,2,OAN, +OAN:SP:SPORBR-E,1,"SALLE DE SPORT",47.561846,-0.505354,-1,0,OAN:SA:zone_SALLE_DE_SPORT,Europe/Paris,0,OAN, +OAN:SP:SPORBRIO,1,"SALLE DE SPORT",47.561688,-0.505224,-1,0,OAN:SA:zone_SALLE_DE_SPORT,Europe/Paris,0,OAN, +OAN:SP:SPOT,1,"GERMAINE TILLION",47.53694,-0.62743,-1,0,OAN:SA:zone_GERMAINE_TILLION,Europe/Paris,2,OAN, +OAN:SP:SPOT-E,1,"GERMAINE TILLION",47.53701,-0.62751,-1,0,OAN:SA:zone_GERMAINE_TILLION,Europe/Paris,2,OAN, +OAN:SP:STADE,1,"STADE DE SAINT BARTHELEMY",47.461331,-0.492101,-1,0,OAN:SA:zone_STADE_DE_SAINT_BARTHELEMY,Europe/Paris,2,OAN, +OAN:SP:STADE-E,1,"STADE DE SAINT BARTHELEMY",47.461263,-0.49189,-1,0,OAN:SA:zone_STADE_DE_SAINT_BARTHELEMY,Europe/Paris,2,OAN, +OAN:SP:STAUBI-E,1,"FOCH SAINT AUBIN",47.468178,-0.551047,-1,0,OAN:SA:zone_FOCH_SAINT_AUBIN,Europe/Paris,2,OAN, +OAN:SP:STAUBIN,1,"FOCH SAINT AUBIN",47.468235,-0.550533,-1,0,OAN:SA:zone_FOCH_SAINT_AUBIN,Europe/Paris,2,OAN, +OAN:SP:STEMAR-E,1,"JOSEPH WRESINSKI",47.484064,-0.559358,-1,0,OAN:SA:zone_JOSEPH_WRESINSKI,Europe/Paris,2,OAN, +OAN:SP:STEMARI,1,"JOSEPH WRESINSKI",47.484559,-0.559371,-1,0,OAN:SA:zone_JOSEPH_WRESINSKI,Europe/Paris,0,OAN, +OAN:SP:STEMELAI,1,"SAINTE MELAINE",47.37053,-0.49634,-1,0,OAN:SA:zone_SAINTE_MELAINE,Europe/Paris,2,OAN, +OAN:SP:STEXUP-E,1,"SAINT EXUPERY",47.468076,-0.537396,-1,0,OAN:SA:zone_SAINT_EXUPERY,Europe/Paris,2,OAN, +OAN:SP:STEXUPER,1,"SAINT EXUPERY",47.467805,-0.536359,-1,0,OAN:SA:zone_SAINT_EXUPERY,Europe/Paris,2,OAN, +OAN:SP:STGILL-E,1,"ST GILLES",47.495168,-0.432063,-1,0,OAN:SA:zone_ST_GILLES,Europe/Paris,0,OAN, +OAN:SP:STGILLES,1,"ST GILLES",47.495143,-0.432164,-1,0,OAN:SA:zone_ST_GILLES,Europe/Paris,0,OAN, +OAN:SP:STJEAN,1,"SAINT JEAN",47.477806,-0.556906,-1,0,OAN:SA:zone_SAINT_JEAN,Europe/Paris,2,OAN, +OAN:SP:STJEAN-E,1,"SAINT JEAN",47.478184,-0.556635,-1,0,OAN:SA:zone_SAINT_JEAN,Europe/Paris,2,OAN, +OAN:SP:STJOS-E,1,"SAINT JOSEPH",47.464806,-0.541175,-1,0,OAN:SA:zone_SAINT_JOSEPH,Europe/Paris,2,OAN, +OAN:SP:STJOSEP,1,"SAINT JOSEPH",47.46492,-0.541327,-1,0,OAN:SA:zone_SAINT_JOSEPH,Europe/Paris,2,OAN, +OAN:SP:STLAUD,1,"SAINT LAUD",47.41773,-0.52251,-1,0,OAN:SA:zone_SAINT_LAUD,Europe/Paris,2,OAN, +OAN:SP:STLAUR-E,1,"STADE RAYMOND KOPA",47.46149,-0.531851,-1,0,OAN:SA:zone_STADE_RAYMOND_KOPA,Europe/Paris,2,OAN, +OAN:SP:STLAURE,1,"STADE RAYMOND KOPA",47.461318,-0.531138,-1,0,OAN:SA:zone_STADE_RAYMOND_KOPA,Europe/Paris,2,OAN, +OAN:SP:STLEOB-E,1,"SAINT LEONARD",47.459209,-0.520354,-1,0,OAN:SA:zone_SAINT_LEONARD,Europe/Paris,0,OAN, +OAN:SP:STLEON-E,1,"SAINT LEONARD",47.459778,-0.520942,-1,0,OAN:SA:zone_SAINT_LEONARD,Europe/Paris,2,OAN, +OAN:SP:STLEONA,1,"SAINT LEONARD",47.45977,-0.521008,-1,0,OAN:SA:zone_SAINT_LEONARD,Europe/Paris,2,OAN, +OAN:SP:STLEONCB,1,"SAINT LEONARD",47.459402,-0.520896,-1,0,OAN:SA:zone_SAINT_LEONARD,Europe/Paris,0,OAN, +OAN:SP:STLOU-E,1,"SAINT LOUIS",47.487613,-0.586492,-1,0,OAN:SA:zone_SAINT_LOUIS,Europe/Paris,0,OAN, +OAN:SP:STLOUIS,1,"SAINT LOUIS",47.487628,-0.586772,-1,0,OAN:SA:zone_SAINT_LOUIS,Europe/Paris,0,OAN, +OAN:SP:STMART-E,1,"BOURG DE SAINT MARTIN",47.431366,-0.70308,-1,0,OAN:SA:zone_BOURG_DE_SAINT_MARTIN,Europe/Paris,0,OAN, +OAN:SP:STMARTIN,1,"BOURG DE SAINT MARTIN",47.431043,-0.703671,-1,0,OAN:SA:zone_BOURG_DE_SAINT_MARTIN,Europe/Paris,0,OAN, +OAN:SP:STNICOLA,1,"SAINT NICOLAS",47.473697,-0.577937,-1,0,OAN:SA:zone_SAINT_NICOLAS,Europe/Paris,0,OAN, +OAN:SP:STRAS2,1,"STRASBOURG",47.457236,-0.554502,-1,0,OAN:SA:zone_STRASBOURG,Europe/Paris,2,OAN, +OAN:SP:STRAS2-E,1,"STRASBOURG",47.457142,-0.554351,-1,0,OAN:SA:zone_STRASBOURG,Europe/Paris,2,OAN, +OAN:SP:STSMAI-E,1,"MAIRIE DE SAINT SYLVAIN",47.52093,-0.47106,-1,0,OAN:SA:zone_MAIRIE_DE_SAINT_SYLVAIN,Europe/Paris,2,OAN, +OAN:SP:STSMAIR,1,"MAIRIE DE SAINT SYLVAIN",47.520928,-0.471064,-1,0,OAN:SA:zone_MAIRIE_DE_SAINT_SYLVAIN,Europe/Paris,2,OAN, +OAN:SP:STSYLVAI,1,"SAINT SYLVAIN",47.512096,-0.471689,-1,0,OAN:SA:zone_SAINT_SYLVAIN,Europe/Paris,2,OAN, +OAN:SP:STTERESE,1,"SAINTE THERESE",47.480846,-0.564241,-1,0,OAN:SA:zone_SAINTE_THERESE,Europe/Paris,2,OAN, +OAN:SP:STTHER-E,1,"SAINTE THERESE",47.480602,-0.564268,-1,0,OAN:SA:zone_SAINTE_THERESE,Europe/Paris,2,OAN, +OAN:SP:TALET-E,1,"TALET",47.476604,-0.547335,-1,0,OAN:SA:zone_TALET,Europe/Paris,0,OAN, +OAN:SP:TANCE-E,1,"TANCELLERIE",47.515963,-0.663661,-1,0,OAN:SA:zone_TANCELLERIE,Europe/Paris,0,OAN, +OAN:SP:TANCELL,1,"TANCELLERIE",47.515927,-0.663658,-1,0,OAN:SA:zone_TANCELLERIE,Europe/Paris,0,OAN, +OAN:SP:TARTEL-E,1,"TARTELUSSE",47.558783,-0.437558,-1,0,OAN:SA:zone_TARTELUSSE,Europe/Paris,0,OAN, +OAN:SP:TARTELUS,1,"TARTELUSSE",47.558783,-0.437558,-1,0,OAN:SA:zone_TARTELUSSE,Europe/Paris,0,OAN, +OAN:SP:TEMPLE,1,"LE TEMPLE",47.48933,-0.42857,-1,0,OAN:SA:zone_LE_TEMPLE,Europe/Paris,2,OAN, +OAN:SP:TEMPLE-E,1,"LE TEMPLE",47.48931,-0.42842,-1,0,OAN:SA:zone_LE_TEMPLE,Europe/Paris,2,OAN, +OAN:SP:TERNEI-E,1,"TERNIERE",47.505699,-0.593067,-1,0,OAN:SA:zone_TERNIERE,Europe/Paris,2,OAN, +OAN:SP:TERNIERE,1,"TERNIERE",47.505707,-0.592854,-1,0,OAN:SA:zone_TERNIERE,Europe/Paris,2,OAN, +OAN:SP:THOMAS-E,1,"THOMASSERIE",47.461674,-0.62538,-1,0,OAN:SA:zone_THOMASSERIE,Europe/Paris,0,OAN, +OAN:SP:THOMASS,1,"THOMASSERIE",47.461792,-0.625373,-1,0,OAN:SA:zone_THOMASSERIE,Europe/Paris,0,OAN, +OAN:SP:THULEA-E,1,"THULEAU",47.477306,-0.528162,-1,0,OAN:SA:zone_THULEAU,Europe/Paris,2,OAN, +OAN:SP:THULEAU,1,"THULEAU",47.477465,-0.528277,-1,0,OAN:SA:zone_THULEAU,Europe/Paris,2,OAN, +OAN:SP:TINELL-E,1,"TINELLIERE",47.4837,-0.43145,-1,0,OAN:SA:zone_TINELLIERE,Europe/Paris,2,OAN, +OAN:SP:TINELLIE,1,"TINELLIERE",47.48375,-0.43173,-1,0,OAN:SA:zone_TINELLIERE,Europe/Paris,2,OAN, +OAN:SP:TOURAI-E,1,"TOURAINE",47.539122,-0.435361,-1,0,OAN:SA:zone_TOURAINE,Europe/Paris,0,OAN, +OAN:SP:TOURAINE,1,"TOURAINE",47.538988,-0.435406,-1,0,OAN:SA:zone_TOURAINE,Europe/Paris,0,OAN, +OAN:SP:TRELAAR,1,"TRELAZE",47.459836,-0.475596,-1,0,OAN:SA:zone_TRELAZE,Europe/Paris,2,OAN, +OAN:SP:TRELAZE,1,"TRELAZE",47.459116,-0.474624,-1,0,OAN:SA:zone_TRELAZE,Europe/Paris,2,OAN, +OAN:SP:TRINIT-E,1,"TRINITE",47.475147,-0.561754,-1,0,OAN:SA:zone_TRINITE,Europe/Paris,2,OAN, +OAN:SP:TRINITE,1,"TRINITE",47.475278,-0.56265,-1,0,OAN:SA:zone_TRINITE,Europe/Paris,2,OAN, +OAN:SP:TROIPA-E,1,"TROIS PAROISSES",47.443695,-0.53555,-1,0,OAN:SA:zone_TROIS_PAROISSES,Europe/Paris,0,OAN, +OAN:SP:TROPAROI,1,"TROIS PAROISSES",47.441906,-0.534644,-1,0,OAN:SA:zone_TROIS_PAROISSES,Europe/Paris,2,OAN, +OAN:SP:TURMIN-E,1,"LA TURMINIERE",47.56682,-0.54578,-1,0,OAN:SA:zone_LA_TURMINIERE,Europe/Paris,2,OAN, +OAN:SP:TURMINIE,1,"LA TURMINIERE",47.56676,-0.54555,-1,0,OAN:SA:zone_LA_TURMINIERE,Europe/Paris,2,OAN, +OAN:SP:TURNER,1,"TURNER",47.5114,-0.59871,-1,0,OAN:SA:zone_TURNER,Europe/Paris,2,OAN, +OAN:SP:TURNER-E,1,"TURNER",47.51147,-0.5988,-1,0,OAN:SA:zone_TURNER,Europe/Paris,2,OAN, +OAN:SP:UNION,1,"UNION",47.520145,-0.47505,-1,0,OAN:SA:zone_UNION,Europe/Paris,2,OAN, +OAN:SP:UNION-E,1,"UNION",47.520203,-0.474854,-1,0,OAN:SA:zone_UNION,Europe/Paris,2,OAN, +OAN:SP:VAILLA-E,1,"VAILLANTE",47.48488,-0.533417,-1,0,OAN:SA:zone_VAILLANTE,Europe/Paris,2,OAN, +OAN:SP:VAILLANT,1,"VAILLANTE",47.48531,-0.533559,-1,0,OAN:SA:zone_VAILLANTE,Europe/Paris,2,OAN, +OAN:SP:VALDEAR,1,"VAL DE MAINE",47.442997,-0.613011,-1,0,OAN:SA:zone_VAL_DE_MAINE,Europe/Paris,2,OAN, +OAN:SP:VALDEMAI,1,"VAL DE MAINE",47.443027,-0.61288,-1,0,OAN:SA:zone_VAL_DE_MAINE,Europe/Paris,2,OAN, +OAN:SP:VALEO,1,"VALEO",47.502117,-0.516694,-1,0,OAN:SA:zone_VALEO,Europe/Paris,2,OAN, +OAN:SP:VALEO-E,1,"VALEO",47.501968,-0.517164,-1,0,OAN:SA:zone_VALEO,Europe/Paris,2,OAN, +OAN:SP:VALHAUY,1,"VALENTIN HAUY",47.485268,-0.556515,-1,0,OAN:SA:zone_VALENTIN_HAUY,Europe/Paris,0,OAN, +OAN:SP:VALHUY-E,1,"VALENTIN HAUY",47.485275,-0.556675,-1,0,OAN:SA:zone_VALENTIN_HAUY,Europe/Paris,0,OAN, +OAN:SP:VALINI-E,1,"PETITES VALINIERES",47.50672,-0.44444,-1,0,OAN:SA:zone_PETITES_VALINIERES,Europe/Paris,2,OAN, +OAN:SP:VALINIER,1,"PETITES VALINIERES",47.50679,-0.44439,-1,0,OAN:SA:zone_PETITES_VALINIERES,Europe/Paris,2,OAN, +OAN:SP:VALLO,1,"VALLON",47.463678,-0.602752,-1,0,OAN:SA:zone_VALLON,Europe/Paris,0,OAN, +OAN:SP:VALLO-E,1,"VALLON",47.463572,-0.602684,-1,0,OAN:SA:zone_VALLON,Europe/Paris,0,OAN, +OAN:SP:VALLON,1,"VALLON",47.463363,-0.601834,-1,0,OAN:SA:zone_VALLON,Europe/Paris,0,OAN, +OAN:SP:VALLON-E,1,"VALLON",47.463281,-0.601883,-1,0,OAN:SA:zone_VALLON,Europe/Paris,0,OAN, +OAN:SP:VALOR,1,"VAL D'OR",47.484688,-0.584049,-1,0,OAN:SA:zone_VAL_DOR,Europe/Paris,2,OAN, +OAN:SP:VALOR-E,1,"VAL D'OR",47.484798,-0.585291,-1,0,OAN:SA:zone_VAL_DOR,Europe/Paris,2,OAN, +OAN:SP:VANDE-E,1,"VANDELLANT",47.478243,-0.520805,-1,0,OAN:SA:zone_VANDELLANT,Europe/Paris,2,OAN, +OAN:SP:VANDEL,1,"VANDELLANT",47.478119,-0.521103,-1,0,OAN:SA:zone_VANDELLANT,Europe/Paris,2,OAN, +OAN:SP:VANRIE,1,"LA VENRIE",47.421375,-0.57001,-1,0,OAN:SA:zone_LA_VENRIE,Europe/Paris,0,OAN, +OAN:SP:VANRIE-E,1,"LA VENRIE",47.421398,-0.570489,-1,0,OAN:SA:zone_LA_VENRIE,Europe/Paris,0,OAN, +OAN:SP:VARENN-E,1,"VARENNES",47.565925,-0.504505,-1,0,OAN:SA:zone_VARENNES,Europe/Paris,0,OAN, +OAN:SP:VARENNES,1,"VARENNES",47.566008,-0.504601,-1,0,OAN:SA:zone_VARENNES,Europe/Paris,0,OAN, +OAN:SP:VAUBA2-E,1,"VAUBAN",47.459962,-0.560753,-1,0,OAN:SA:zone_VAUBAN,Europe/Paris,2,OAN, +OAN:SP:VAUBAN,1,"VAUBAN",47.460244,-0.560869,-1,0,OAN:SA:zone_VAUBAN,Europe/Paris,2,OAN, +OAN:SP:VAUGA6,1,"VAUGAREAU",47.483646,-0.528729,-1,0,OAN:SA:zone_VAUGAREAU,Europe/Paris,2,OAN, +OAN:SP:VAUGA6-E,1,"VAUGAREAU",47.483448,-0.528387,-1,0,OAN:SA:zone_VAUGAREAU,Europe/Paris,2,OAN, +OAN:SP:VAUGAR-E,1,"VAUGAREAU",47.482372,-0.526736,-1,0,OAN:SA:zone_VAUGAREAU,Europe/Paris,0,OAN, +OAN:SP:VAUGAREA,1,"VAUGAREAU",47.482788,-0.526731,-1,0,OAN:SA:zone_VAUGAREAU,Europe/Paris,0,OAN, +OAN:SP:VAURAG-E,1,"VAURAGERE",47.472965,-0.635726,-1,0,OAN:SA:zone_VAURAGERE,Europe/Paris,2,OAN, +OAN:SP:VAURAGER,1,"VAURAGERE",47.472748,-0.635422,-1,0,OAN:SA:zone_VAURAGERE,Europe/Paris,2,OAN, +OAN:SP:VBERNI-E,1,"BERNIER",47.474628,-0.592048,-1,0,OAN:SA:zone_BERNIER,Europe/Paris,0,OAN, +OAN:SP:VBERNIER,1,"BERNIER",47.474727,-0.592066,-1,0,OAN:SA:zone_BERNIER,Europe/Paris,0,OAN, +OAN:SP:VDLOIR-E,1,"VAL DE LOIRE",47.44891,-0.513473,-1,0,OAN:SA:zone_VAL_DE_LOIRE,Europe/Paris,2,OAN, +OAN:SP:VDLOIRE,1,"VAL DE LOIRE",47.448997,-0.513623,-1,0,OAN:SA:zone_VAL_DE_LOIRE,Europe/Paris,2,OAN, +OAN:SP:VEILLE-E,1,"VEILLEROT",47.52131,-0.4722,-1,0,OAN:SA:zone_VEILLEROT,Europe/Paris,2,OAN, +OAN:SP:VEILLERO,1,"VEILLEROT",47.5213,-0.47255,-1,0,OAN:SA:zone_VEILLEROT,Europe/Paris,2,OAN, +OAN:SP:VENAIS-E,1,"VENAISERIE",47.470814,-0.489655,-1,0,OAN:SA:zone_VENAISERIE,Europe/Paris,2,OAN, +OAN:SP:VENAISER,1,"VENAISERIE",47.471027,-0.489641,-1,0,OAN:SA:zone_VENAISERIE,Europe/Paris,2,OAN, +OAN:SP:VENSCO,1,"VENAISERIE COLLEGE",47.471672,-0.486163,-1,0,OAN:SA:zone_VENAISERIE_COLLEGE,Europe/Paris,2,OAN, +OAN:SP:VERDUN,1,"VERDUN",47.468136,-0.493367,-1,0,OAN:SA:zone_VERDUN,Europe/Paris,2,OAN, +OAN:SP:VERDUN-E,1,"VERDUN",47.468287,-0.493012,-1,0,OAN:SA:zone_VERDUN,Europe/Paris,2,OAN, +OAN:SP:VERIGN-E,1,"VERIGNE",47.588282,-0.493522,-1,0,OAN:SA:zone_VERIGNE,Europe/Paris,0,OAN, +OAN:SP:VERIGNE,1,"VERIGNE",47.588251,-0.493617,-1,0,OAN:SA:zone_VERIGNE,Europe/Paris,0,OAN, +OAN:SP:VERN-ARA,1,"AURIOL",47.491417,-0.565136,-1,0,OAN:SA:zone_AURIOL,Europe/Paris,0,OAN, +OAN:SP:VERN-ARB,1,"AURIOL",47.491122,-0.565054,-1,0,OAN:SA:zone_AURIOL,Europe/Paris,0,OAN, +OAN:SP:VERNEA-E,1,"AURIOL",47.490648,-0.564589,-1,0,OAN:SA:zone_AURIOL,Europe/Paris,0,OAN, +OAN:SP:VERNEREN,1,"VERNEAU AQUAVITA",47.493083,-0.569052,-1,0,OAN:SA:zone_VERNEAU_AQUAVITA,Europe/Paris,2,OAN, +OAN:SP:VERNRE-E,1,"VERNEAU AQUAVITA",47.49296,-0.570373,-1,0,OAN:SA:zone_VERNEAU_AQUAVITA,Europe/Paris,2,OAN, +OAN:SP:VERNUSSO,1,"FLORILOIRE",47.43046,-0.542146,-1,0,OAN:SA:zone_FLORILOIRE,Europe/Paris,2,OAN, +OAN:SP:VERTRA-E,1,"VERNEAU",47.49245,-0.567357,-1,0,OAN:SA:zone_VERNEAU,Europe/Paris,2,OAN, +OAN:SP:VHUGO,1,"V. HUGO MONTREUIL",47.528238,-0.611853,-1,0,OAN:SA:zone_V_HUGO_MONTREUIL,Europe/Paris,0,OAN, +OAN:SP:VHUGO-E,1,"VICTOR HUGO MONTREUIL",47.528206,-0.611746,-1,0,OAN:SA:zone_VICTOR_HUGO_MONTREUIL,Europe/Paris,0,OAN, +OAN:SP:VHUGOMJ,1,"VICTOR HUGO",47.528206,-0.611746,-1,0,OAN:SA:zone_VICTOR_HUGO,Europe/Paris,0,OAN, +OAN:SP:VICTHU-E,1,"VICTOR HUGO",47.52216,-0.469509,-1,0,OAN:SA:zone_VICTOR_HUGO,Europe/Paris,0,OAN, +OAN:SP:VICTHUGO,1,"VICTOR HUGO",47.522232,-0.469526,-1,0,OAN:SA:zone_VICTOR_HUGO,Europe/Paris,0,OAN, +OAN:SP:VIELLMAI,1,"VIEILLE MAINE",47.529868,-0.527759,-1,0,OAN:SA:zone_VIEILLE_MAINE,Europe/Paris,2,OAN, +OAN:SP:VIELMA-E,1,"VIEILLE MAINE",47.53002,-0.527767,-1,0,OAN:SA:zone_VIEILLE_MAINE,Europe/Paris,2,OAN, +OAN:SP:VIEUXPOR,1,"VIEUX PORT",47.57076,-0.49361,-1,0,OAN:SA:zone_VIEUX_PORT,Europe/Paris,2,OAN, +OAN:SP:VIGNES,1,"LES VIGNES",47.409199,-0.626258,-1,0,OAN:SA:zone_LES_VIGNES,Europe/Paris,2,OAN, +OAN:SP:VIGNES-E,1,"LES VIGNES",47.409054,-0.626766,-1,0,OAN:SA:zone_LES_VIGNES,Europe/Paris,2,OAN, +OAN:SP:VILBRG-E,1,"BEAUREGARD",47.53386,-0.43471,-1,0,OAN:SA:zone_BEAUREGARD,Europe/Paris,2,OAN, +OAN:SP:VILLEC-E,1,"VILLECHIEN",47.46328,-0.519537,-1,0,OAN:SA:zone_VILLECHIEN,Europe/Paris,2,OAN, +OAN:SP:VILLECHI,1,"VILLECHIEN",47.462681,-0.519704,-1,0,OAN:SA:zone_VILLECHIEN,Europe/Paris,2,OAN, +OAN:SP:VILLES-E,1,"VILLESICARD",47.452427,-0.538383,-1,0,OAN:SA:zone_VILLESICARD,Europe/Paris,0,OAN, +OAN:SP:VILLESIC,1,"VILLESICARD",47.452415,-0.538382,-1,0,OAN:SA:zone_VILLESICARD,Europe/Paris,2,OAN, +OAN:SP:VILSAN-E,1,"VILLAGE SANTE",47.457218,-0.512072,-1,0,OAN:SA:zone_VILLAGE_SANTE,Europe/Paris,2,OAN, +OAN:SP:VILSANTE,1,"VILLAGE SANTE",47.457401,-0.512613,-1,0,OAN:SA:zone_VILLAGE_SANTE,Europe/Paris,2,OAN, +OAN:SP:VILVEC-E,1,"ECOLE DE VILLEVEQUE",47.560978,-0.421446,-1,0,OAN:SA:zone_ECOLE_DE_VILLEVEQUE,Europe/Paris,2,OAN, +OAN:SP:VILVECOL,1,"ECOLE DE VILLEVEQUE",47.560814,-0.421568,-1,0,OAN:SA:zone_ECOLE_DE_VILLEVEQUE,Europe/Paris,2,OAN, +OAN:SP:VILVEQ-E,1,"MAIRIE DE VILLEVEQUE",47.559422,-0.422118,-1,0,OAN:SA:zone_MAIRIE_DE_VILLEVEQUE,Europe/Paris,0,OAN, +OAN:SP:VILVEQUE,1,"MAIRIE DE VILLEVEQUE",47.559464,-0.422148,-1,0,OAN:SA:zone_MAIRIE_DE_VILLEVEQUE,Europe/Paris,0,OAN, +OAN:SP:VIVIER-E,1,"VIVIERS",47.451553,-0.535032,-1,0,OAN:SA:zone_VIVIERS,Europe/Paris,2,OAN, +OAN:SP:VIVIERS,1,"VIVIERS",47.451672,-0.535357,-1,0,OAN:SA:zone_VIVIERS,Europe/Paris,0,OAN, +OAN:SP:VOLNEY,1,"VOLNEY",47.460391,-0.538056,-1,0,OAN:SA:zone_VOLNEY,Europe/Paris,2,OAN, +OAN:SP:VOLNEY-E,1,"VOLNEY",47.460627,-0.53868,-1,0,OAN:SA:zone_VOLNEY,Europe/Paris,2,OAN, +OAN:SP:VOLTAI-E,1,"VOLTAIRE",47.484614,-0.531092,-1,0,OAN:SA:zone_VOLTAIRE,Europe/Paris,0,OAN, +OAN:SP:VOLTAIR,1,"VOLTAIRE",47.484813,-0.531421,-1,0,OAN:SA:zone_VOLTAIRE,Europe/Paris,0,OAN, +OAN:SP:WALCOU-E,1,"WALCOURT",47.463359,-0.486528,-1,0,OAN:SA:zone_WALCOURT,Europe/Paris,2,OAN, +OAN:SP:WALCOURT,1,"WALCOURT",47.46334,-0.485944,-1,0,OAN:SA:zone_WALCOURT,Europe/Paris,2,OAN, +OAN:SP:WIGAN,1,"WIGAN",47.459412,-0.608133,-1,0,OAN:SA:zone_WIGAN,Europe/Paris,0,OAN, +OAN:SP:WIGAN-E,1,"WIGAN",47.459465,-0.608216,-1,0,OAN:SA:zone_WIGAN,Europe/Paris,0,OAN, +OAN:SP:WTBO-E,1,"TERRA BOTANICA",47.494278,-0.574535,-1,0,OAN:SA:zone_TERRA_BOTANICA,Europe/Paris,0,OAN, +OAN:SP:WTBOT,1,"TERRA BOTANICA",47.494205,-0.574465,-1,0,OAN:SA:zone_TERRA_BOTANICA,Europe/Paris,0,OAN, +OAN:SP:WVERN,1,"VERNEAU",47.492378,-0.567313,-1,0,OAN:SA:zone_VERNEAU,Europe/Paris,0,OAN, +OAN:SP:YRTEPAR,1,"ROUTE DE PARIS",47.489561,-0.508115,-1,0,OAN:SA:zone_ROUTE_DE_PARIS,Europe/Paris,0,OAN, +OAN:SP:ZARTIS-E,1,"ZONE ARTISANALE",47.592031,-0.592031,-1,0,OAN:SA:zone_ZONE_ARTISANALE,Europe/Paris,0,OAN, +OAN:SP:ZARTISAN,1,"FENEU",47.579533,-0.592068,-1,0,OAN:SA:zone_FENEU,Europe/Paris,2,OAN, +OAN:SP:ZBRUNELL,1,"ZI BRUNELLERIES",47.435634,-0.616199,-1,0,OAN:SA:zone_ZI_BRUNELLERIES,Europe/Paris,2,OAN, +OAN:SP:ZCRXCA-E,1,"LANGEVIN",47.518013,-0.612652,-1,0,OAN:SA:zone_LANGEVIN,Europe/Paris,0,OAN, +OAN:SP:ZIBEAU-E,1,"ZI BEAUCOUZE",47.459976,-0.6193,-1,0,OAN:SA:zone_ZI_BEAUCOUZE,Europe/Paris,0,OAN, +OAN:SP:ZIBEAUC,1,"ZI BEAUCOUZE",47.460007,-0.619501,-1,0,OAN:SA:zone_ZI_BEAUCOUZE,Europe/Paris,0,OAN, +OAN:SP:ZIECOUFL,1,"ZI ECOUFLANT",47.496838,-0.514963,-1,0,OAN:SA:zone_ZI_ECOUFLANT,Europe/Paris,0,OAN, +OAN:SP:ZPOL49,1,"POLE 49",47.489015,-0.491545,-1,0,OAN:SA:zone_POLE_49,Europe/Paris,2,OAN, +OBI:SP:4CHEM_1,1,"4 Chemins",48.405392,-4.477817,-1,0,OBI:SA:CTP4CHEM_1,Europe/Paris,0,OBI, +OBI:SP:4MOULI_1,1,"4 Moulins",48.38266,-4.512486,-1,0,OBI:SA:CTP4MOULI_1,Europe/Paris,0,OBI, +OBI:SP:4MOULI_2,1,"4 Moulins",48.382637,-4.512294,-1,0,OBI:SA:CTP4MOULI_1,Europe/Paris,0,OBI, +OBI:SP:8MAI_1,1,"8 mai 1945",48.412968,-4.475593,-1,0,OBI:SA:CTP8MAI_2,Europe/Paris,0,OBI, +OBI:SP:8MAI_2,1,"8 mai 1945",48.413361,-4.475469,-1,0,OBI:SA:CTP8MAI_2,Europe/Paris,0,OBI, +OBI:SP:ABER_1,1,"Aber-Ildut",48.380985,-4.613691,-1,0,OBI:SA:CTPABER_1,Europe/Paris,2,OBI, +OBI:SP:ABER_2,1,"Aber-Ildut",48.380474,-4.613637,-1,0,OBI:SA:CTPABER_1,Europe/Paris,2,OBI, +OBI:SP:AFPA_1,1,"AFPA",48.412582,-4.501556,-1,0,OBI:SA:CTPAFPA_1,Europe/Paris,2,OBI, +OBI:SP:AFPA_2,1,"AFPA",48.411911,-4.501617,-1,0,OBI:SA:CTPAFPA_1,Europe/Paris,2,OBI, +OBI:SP:AFRANC_1,1,"A.France",48.38372,-4.506041,-1,0,OBI:SA:CTPAFRANC_1,Europe/Paris,2,OBI, +OBI:SP:AFRANC_2,1,"A.France",48.38372,-4.50573,-1,0,OBI:SA:CTPAFRANC_1,Europe/Paris,2,OBI, +OBI:SP:AIRPOR,1,"Aéroport",48.442749,-4.419929,-1,0,OBI:SA:CTPAIRPOR,Europe/Paris,2,OBI, +OBI:SP:ALB1ER_1,1,"Albert 1er",48.397049,-4.487108,-1,0,OBI:SA:CTPALB1ER_1,Europe/Paris,2,OBI, +OBI:SP:ALB1ER_2,1,"Albert 1er",48.397186,-4.487235,-1,0,OBI:SA:CTPALB1ER_1,Europe/Paris,2,OBI, +OBI:SP:ALFOST,1,"Alfost",48.371441,-4.51791,-1,0,OBI:SA:CTPALFOST,Europe/Paris,2,OBI, +OBI:SP:AMUNDS_1,1,"Amundsen",48.378033,-4.523422,-1,0,OBI:SA:CTPAMUNDS_2,Europe/Paris,2,OBI, +OBI:SP:AMUNDS_2,1,"Amundsen",48.377964,-4.523359,-1,0,OBI:SA:CTPAMUNDS_2,Europe/Paris,2,OBI, +OBI:SP:ANJOU_2,1,"Anjou",48.45491,-4.464996,-1,0,OBI:SA:CTPANJOU_2,Europe/Paris,2,OBI, +OBI:SP:ANNE_1,1,"Anne de Bretagne",48.43726,-4.408437,-1,0,OBI:SA:CTPANNE_2,Europe/Paris,2,OBI, +OBI:SP:ANNE_2,1,"Anne de Bretagne",48.437187,-4.408332,-1,0,OBI:SA:CTPANNE_2,Europe/Paris,2,OBI, +OBI:SP:ARRET_1,1,"Maison d'arrêt",48.420853,-4.477165,-1,0,OBI:SA:CTPARRET_1,Europe/Paris,0,OBI, +OBI:SP:ARRET_2,1,"Maison d'arrêt",48.420502,-4.477147,-1,0,OBI:SA:CTPARRET_1,Europe/Paris,0,OBI, +OBI:SP:ARTILL_1,1,"Quai des Subsistances",48.37912,-4.49731,-1,0,OBI:SA:CTPARTILL_2,Europe/Paris,0,OBI, +OBI:SP:ARTILL_2,1,"Quai des Subsistances",48.379234,-4.497352,-1,0,OBI:SA:CTPARTILL_2,Europe/Paris,0,OBI, +OBI:SP:ATELIERS,1,"Ateliers",48.388313,-4.497362,-1,0,OBI:SA:CTPATELIERS,Europe/Paris,2,OBI, +OBI:SP:AUMALE_1,1,"Duc d'Aumale",48.401253,-4.506537,-1,0,OBI:SA:CTPAUMALE_2,Europe/Paris,2,OBI, +OBI:SP:AUMALE_2,1,"Duc d'Aumale",48.401253,-4.506903,-1,0,OBI:SA:CTPAUMALE_2,Europe/Paris,2,OBI, +OBI:SP:AURIOL_1,1,"Auriol",48.44231,-4.432295,-1,0,OBI:SA:CTPAURIOL_1,Europe/Paris,2,OBI, +OBI:SP:AURIOL_2,1,"Auriol",48.442074,-4.433526,-1,0,OBI:SA:CTPAURIOL_1,Europe/Paris,2,OBI, +OBI:SP:AWENA_1,1,"Guipavas Awena",48.440479,-4.403117,-1,0,OBI:SA:CTPAWENA_1,Europe/Paris,2,OBI, +OBI:SP:AWENA_2,1,"Guipavas Awena",48.440735,-4.40258,-1,0,OBI:SA:CTPAWENA_1,Europe/Paris,2,OBI, +OBI:SP:A_RONA_1,1,"Amiral Ronarc'h",48.395489,-4.523859,-1,0,OBI:SA:CTPA_RONA_1,Europe/Paris,2,OBI, +OBI:SP:A_RONA_2,1,"Amiral Ronarc'h",48.395424,-4.524541,-1,0,OBI:SA:CTPA_RONA_1,Europe/Paris,2,OBI, +OBI:SP:B,1,"Multiplexe",48.391159,-4.487693,-1,0,OBI:SA:CTPB,Europe/Paris,2,OBI, +OBI:SP:BACH,1,"Bach",48.394325,-4.529289,-1,0,OBI:SA:CTPBACH,Europe/Paris,0,OBI, +OBI:SP:BACHET_1,1,"Poul-ar-Bachet",48.397106,-4.469879,-1,0,OBI:SA:CTPBACHET_2,Europe/Paris,2,OBI, +OBI:SP:BACHET_2,1,"Poul-ar-Bachet",48.396946,-4.471267,-1,0,OBI:SA:CTPBACHET_2,Europe/Paris,2,OBI, +OBI:SP:BARADO_1,1,"Baradozic",48.395378,-4.415153,-1,0,OBI:SA:CTPBARADO_2,Europe/Paris,2,OBI, +OBI:SP:BARADO_2,1,"Baradozic",48.395214,-4.412801,-1,0,OBI:SA:CTPBARADO_2,Europe/Paris,2,OBI, +OBI:SP:BARATI_1,1,"Baratier",48.401665,-4.509423,-1,0,OBI:SA:CTPBARATI_2,Europe/Paris,0,OBI, +OBI:SP:BARATI_2,1,"Baratier",48.401424,-4.509365,-1,0,OBI:SA:CTPBARATI_2,Europe/Paris,0,OBI, +OBI:SP:BARBE_1,1,"Ste Barbe",48.400787,-4.419308,-1,0,OBI:SA:CTPBARBE_2,Europe/Paris,0,OBI, +OBI:SP:BARBE_2,1,"Ste Barbe",48.400944,-4.419261,-1,0,OBI:SA:CTPBARBE_2,Europe/Paris,0,OBI, +OBI:SP:BASSAN_1,1,"Fou de Bassan",48.443756,-4.470595,-1,0,OBI:SA:CTPBASSAN_2,Europe/Paris,0,OBI, +OBI:SP:BASSAN_2,1,"Fou de Bassan",48.443779,-4.470706,-1,0,OBI:SA:CTPBASSAN_2,Europe/Paris,0,OBI, +OBI:SP:BAUDOT_2,1,"Baudot",48.423748,-4.490125,-1,0,OBI:SA:CTPBOUDOT_1,Europe/Paris,0,OBI, +OBI:SP:BEAUMA_1,1,"Beaumanoir",48.386425,-4.516002,-1,0,OBI:SA:CTPBEAUMA_1,Europe/Paris,2,OBI, +OBI:SP:BEAUMA_2,1,"Beaumanoir",48.386677,-4.514937,-1,0,OBI:SA:CTPBEAUMA_1,Europe/Paris,2,OBI, +OBI:SP:BECQUE_1,1,"Becquerel",48.431541,-4.448973,-1,0,OBI:SA:CTPBECQUE_1,Europe/Paris,0,OBI, +OBI:SP:BERGOT_1,1,"Bergot",48.407158,-4.509629,-1,0,OBI:SA:CTPBERGOT_1,Europe/Paris,2,OBI, +OBI:SP:BERLIO_1,1,"Berlioz",48.413143,-4.496546,-1,0,OBI:SA:CTPBERLIO_2,Europe/Paris,0,OBI, +OBI:SP:BERLIO_2,1,"Berlioz",48.413078,-4.497772,-1,0,OBI:SA:CTPBERLIO_2,Europe/Paris,0,OBI, +OBI:SP:BERNAR_1,1,"Bernard",48.398113,-4.446823,-1,0,OBI:SA:CTPBERNAR_1,Europe/Paris,2,OBI, +OBI:SP:BERNAR_2,1,"Bernard",48.398109,-4.446742,-1,0,OBI:SA:CTPBERNAR_1,Europe/Paris,2,OBI, +OBI:SP:BERRY_1,1,"Berry",48.404045,-4.515808,-1,0,OBI:SA:CTPBERRY_1,Europe/Paris,2,OBI, +OBI:SP:BERRY_2,1,"Berry",48.403721,-4.515942,-1,0,OBI:SA:CTPBERRY_1,Europe/Paris,2,OBI, +OBI:SP:BEUZIT_1,1,"Beuzit",48.421261,-4.519275,-1,0,OBI:SA:CTPBEUZIT_2,Europe/Paris,2,OBI, +OBI:SP:BEUZIT_2,1,"Beuzit",48.421879,-4.519383,-1,0,OBI:SA:CTPBEUZIT_2,Europe/Paris,2,OBI, +OBI:SP:BLEUETS2,1,"Bleuets",48.374081,-4.584296,-1,0,OBI:SA:CTPBLEUET_1,Europe/Paris,2,OBI, +OBI:SP:BLEUET_1,1,"Bleuets",48.374252,-4.584278,-1,0,OBI:SA:CTPBLEUET_1,Europe/Paris,2,OBI, +OBI:SP:BLOGNE_1,1,"Boulogne",48.395596,-4.493613,-1,0,OBI:SA:CTPBLOGNE_2,Europe/Paris,0,OBI, +OBI:SP:BLOGNE_2,1,"Boulogne",48.395374,-4.493909,-1,0,OBI:SA:CTPBLOGNE_2,Europe/Paris,0,OBI, +OBI:SP:BLUM_1,1,"Blum",48.407806,-4.485058,-1,0,OBI:SA:CTPBLUM_2,Europe/Paris,2,OBI, +OBI:SP:BLUM_2,1,"Blum",48.407978,-4.485216,-1,0,OBI:SA:CTPBLUM_2,Europe/Paris,2,OBI, +OBI:SP:BODONN_1,1,"Bodonn",48.370586,-4.379052,-1,0,OBI:SA:CTPBODONN_1,Europe/Paris,2,OBI, +OBI:SP:BODONN_2,1,"Bodonn",48.370491,-4.379039,-1,0,OBI:SA:CTPBODONN_1,Europe/Paris,2,OBI, +OBI:SP:BOHARS_1,1,"Bohars bourg",48.427929,-4.515107,-1,0,OBI:SA:CTPBOHARS_1,Europe/Paris,2,OBI, +OBI:SP:BOHARS_2,1,"Bohars Bourg",48.428745,-4.515675,-1,0,OBI:SA:CTPBOHARS_2,Europe/Paris,2,OBI, +OBI:SP:BOIS_2,1,"Le Bois",48.45063,-4.459053,-1,0,OBI:SA:CTPBOIS_2,Europe/Paris,2,OBI, +OBI:SP:BORDE_1,1,"Bordenave",48.392597,-4.50177,-1,0,OBI:SA:CTPBORDE_2,Europe/Paris,2,OBI, +OBI:SP:BORDE_2,1,"Bordenave",48.392586,-4.501472,-1,0,OBI:SA:CTPBORDE_2,Europe/Paris,2,OBI, +OBI:SP:BOTREL_1,1,"Botrel",48.379726,-4.375446,-1,0,OBI:SA:CTPBOTREL_1,Europe/Paris,0,OBI, +OBI:SP:BOTREL_2,1,"Botrel",48.379429,-4.375164,-1,0,OBI:SA:CTPBOTREL_1,Europe/Paris,0,OBI, +OBI:SP:BOT_1,1,"Rue du Bot",48.405212,-4.457518,-1,0,OBI:SA:CTPBOT_1,Europe/Paris,2,OBI, +OBI:SP:BOT_2,1,"Rue du Bot",48.40451,-4.457806,-1,0,OBI:SA:CTPBOT_1,Europe/Paris,2,OBI, +OBI:SP:BOUDOT_1,1,"Baudot",48.423691,-4.489847,-1,0,OBI:SA:CTPBOUDOT_1,Europe/Paris,0,OBI, +OBI:SP:BOUGUE_1,1,"Bouguen",48.400074,-4.498129,-1,0,OBI:SA:CTPBOUGUE_2,Europe/Paris,2,OBI, +OBI:SP:BOUGUE_2,1,"Bouguen",48.40044,-4.498936,-1,0,OBI:SA:CTPBOUGUE_2,Europe/Paris,2,OBI, +OBI:SP:BOUG_R,1,"Bouguen",48.400635,-4.498731,-1,0,OBI:SA:CTPBOUGUE_2,Europe/Paris,2,OBI, +OBI:SP:BOURAY_1,1,"Bourayne",48.381657,-4.526946,-1,0,OBI:SA:CTPBOURAY_1,Europe/Paris,2,OBI, +OBI:SP:BOURAY_2,1,"Bourayne",48.381538,-4.527581,-1,0,OBI:SA:CTPBOURAY_1,Europe/Paris,2,OBI, +OBI:SP:BOURAY_3,1,"Bourayne",48.381184,-4.527114,-1,0,OBI:SA:CTPBOURAY_1,Europe/Paris,2,OBI, +OBI:SP:BOURAY_4,1,"Bourayne",48.381969,-4.527408,-1,0,OBI:SA:CTPBOURAY_1,Europe/Paris,2,OBI, +OBI:SP:BOURBO_1,1,"Bourbonnais",48.407127,-4.512796,-1,0,OBI:SA:CTPBOURBO_2,Europe/Paris,0,OBI, +OBI:SP:BOURBO_2,1,"Bourbonnais",48.406834,-4.512717,-1,0,OBI:SA:CTPBOURBO_2,Europe/Paris,0,OBI, +OBI:SP:BRAILL_1,1,"Braille",48.403515,-4.471744,-1,0,OBI:SA:CTPBRAILL_1,Europe/Paris,2,OBI, +OBI:SP:BRAILL_2,1,"Braille",48.403542,-4.471747,-1,0,OBI:SA:CTPBRAILL_1,Europe/Paris,2,OBI, +OBI:SP:BRANLY_1,1,"Branly",48.365723,-4.589054,-1,0,OBI:SA:CTPBRANLY_2,Europe/Paris,0,OBI, +OBI:SP:BRANLY_2,1,"Branly",48.365788,-4.589184,-1,0,OBI:SA:CTPBRANLY_2,Europe/Paris,0,OBI, +OBI:SP:BRASSE_1,1,"Brasserie",48.417568,-4.494482,-1,0,OBI:SA:CTPBRASSE_1,Europe/Paris,2,OBI, +OBI:SP:BRASSE_2,1,"Brasserie",48.417881,-4.494794,-1,0,OBI:SA:CTPBRASSE_1,Europe/Paris,2,OBI, +OBI:SP:BRAS_2,1,"Le Bras",48.450516,-4.461995,-1,0,OBI:SA:CTPBRAS_2,Europe/Paris,2,OBI, +OBI:SP:BRAZ,1,"Lannével-Braz",48.373772,-4.576019,-1,0,OBI:SA:CTPBRAZ_1,Europe/Paris,2,OBI, +OBI:SP:BRAZZA_1,1,"Brazza",48.397846,-4.461329,-1,0,OBI:SA:CTPBRAZZA_2,Europe/Paris,0,OBI, +OBI:SP:BRAZZA_2,1,"Brazza",48.398174,-4.461575,-1,0,OBI:SA:CTPBRAZZA_2,Europe/Paris,0,OBI, +OBI:SP:BRAZ_1,1,"Lannével-Braz",48.373798,-4.576185,-1,0,OBI:SA:CTPBRAZ_1,Europe/Paris,2,OBI, +OBI:SP:BRECON_1,1,"Brecon",48.445454,-4.466652,-1,0,OBI:SA:CTPBRECON_2,Europe/Paris,0,OBI, +OBI:SP:BRECON_2,1,"Brecon",48.445404,-4.466619,-1,0,OBI:SA:CTPBRECON_2,Europe/Paris,0,OBI, +OBI:SP:BRETAG_1,1,"Place Bretagne",48.413136,-4.492628,-1,0,OBI:SA:CTPBRETAG_2,Europe/Paris,2,OBI, +OBI:SP:BRETAG_2,1,"Place Bretagne",48.41309,-4.49296,-1,0,OBI:SA:CTPBRETAG_2,Europe/Paris,2,OBI, +OBI:SP:BRETAG_4,1,"Place Bretagne",48.412849,-4.491194,-1,0,OBI:SA:CTPBRETAG_2,Europe/Paris,2,OBI, +OBI:SP:BRETAG_5,1,"Place Bretagne",48.412773,-4.491225,-1,0,OBI:SA:CTPBRETAG_2,Europe/Paris,2,OBI, +OBI:SP:BRGOT_2,1,"Bergot",48.407227,-4.510126,-1,0,OBI:SA:CTPBERGOT_1,Europe/Paris,2,OBI, +OBI:SP:BRUYER_1,1,"Bruyère",48.438145,-4.470093,-1,0,OBI:SA:CTPBRUYER_1,Europe/Paris,2,OBI, +OBI:SP:BRUYER_2,1,"Bruyère",48.438286,-4.469691,-1,0,OBI:SA:CTPBRUYER_1,Europe/Paris,2,OBI, +OBI:SP:BSSAIS_1,1,"Broussais",48.422882,-4.493985,-1,0,OBI:SA:CTPBSSAIS_2,Europe/Paris,0,OBI, +OBI:SP:BSSAIS_2,1,"Broussais",48.422562,-4.494079,-1,0,OBI:SA:CTPBSSAIS_2,Europe/Paris,0,OBI, +OBI:SP:C,1,"Multiplexe",48.39093,-4.487569,-1,0,OBI:SA:CTPB,Europe/Paris,2,OBI, +OBI:SP:CAF_1,1,"C A F",48.3918,-4.491084,-1,0,OBI:SA:CTPCAF_2,Europe/Paris,2,OBI, +OBI:SP:CAF_2,1,"C A F",48.392033,-4.490802,-1,0,OBI:SA:CTPCAF_2,Europe/Paris,2,OBI, +OBI:SP:CAMELI_1,1,"Camélias",48.428558,-4.563411,-1,0,OBI:SA:CTPCAMELI_2,Europe/Paris,0,OBI, +OBI:SP:CAMELI_2,1,"Camélias",48.428562,-4.563344,-1,0,OBI:SA:CTPCAMELI_2,Europe/Paris,0,OBI, +OBI:SP:CAMFR_1,1,"Camfrout",48.397747,-4.392167,-1,0,OBI:SA:CTPCAMFR_2,Europe/Paris,0,OBI, +OBI:SP:CAMFR_2,1,"Camfrout",48.397636,-4.392423,-1,0,OBI:SA:CTPCAMFR_2,Europe/Paris,0,OBI, +OBI:SP:CAPUCI_2,1,"Capucines",48.453064,-4.458624,-1,0,OBI:SA:CTPCAPUCI_2,Europe/Paris,2,OBI, +OBI:SP:CAPUC_TA,1,"Les Capucins",48.390442,-4.504822,-1,0,OBI:SA:CTPCPCIN_1,Europe/Paris,2,OBI, +OBI:SP:CAPUC_TR,1,"Les Capucins",48.390282,-4.504774,-1,0,OBI:SA:CTPCPCIN_1,Europe/Paris,2,OBI, +OBI:SP:CARENE_1,1,"La Carène",48.384552,-4.481587,-1,0,OBI:SA:CTPCARENE_1,Europe/Paris,2,OBI, +OBI:SP:CARENE_2,1,"La Carène",48.384727,-4.480621,-1,0,OBI:SA:CTPCARENE_1,Europe/Paris,2,OBI, +OBI:SP:CASA_1,1,"Casabianca",48.373512,-4.536266,-1,0,OBI:SA:CTPCASA_1,Europe/Paris,2,OBI, +OBI:SP:CASA_2,1,"Casabianca",48.373531,-4.53654,-1,0,OBI:SA:CTPCASA_1,Europe/Paris,2,OBI, +OBI:SP:CASTEL_1,1,"Castelmein",48.413227,-4.541293,-1,0,OBI:SA:CTPCASTEL_1,Europe/Paris,0,OBI, +OBI:SP:CAST_D_1,1,"Castel-an-Daol",48.382637,-4.521114,-1,0,OBI:SA:CTPCAST_D_2,Europe/Paris,0,OBI, +OBI:SP:CAST_D_2,1,"Castel-an-Daol",48.38271,-4.521706,-1,0,OBI:SA:CTPCAST_D_2,Europe/Paris,0,OBI, +OBI:SP:CESKRX_1,1,"Keranroux",48.38155,-4.540657,-1,0,OBI:SA:CTPCESKRX_2,Europe/Paris,2,OBI, +OBI:SP:CESKRX_2,1,"Keranroux",48.381599,-4.540406,-1,0,OBI:SA:CTPCESKRX_2,Europe/Paris,2,OBI, +OBI:SP:CHAMP_1,1,"Champagne",48.438229,-4.387082,-1,0,OBI:SA:CTPCHAMP_1,Europe/Paris,2,OBI, +OBI:SP:CHAMP_2,1,"Champagne",48.438278,-4.387319,-1,0,OBI:SA:CTPCHAMP_1,Europe/Paris,2,OBI, +OBI:SP:CHAPAL_1,1,"Chapalain",48.415615,-4.488899,-1,0,OBI:SA:CTPCHAPAL_2,Europe/Paris,2,OBI, +OBI:SP:CHAPAL_2,1,"Chapalain",48.415596,-4.488313,-1,0,OBI:SA:CTPCHAPAL_2,Europe/Paris,2,OBI, +OBI:SP:CHAPEL_2,1,"Chapelle",48.425468,-4.516723,-1,0,OBI:SA:CTPCHAPEL_2,Europe/Paris,2,OBI, +OBI:SP:CHARCO_1,1,"Charcot",48.410328,-4.400199,-1,0,OBI:SA:CTPCHARCO_1,Europe/Paris,0,OBI, +OBI:SP:CHARCO_2,1,"Charcot",48.410667,-4.400758,-1,0,OBI:SA:CTPCHARCO_1,Europe/Paris,0,OBI, +OBI:SP:CHARP_3,1,"Charpentier",48.407475,-4.501673,-1,0,OBI:SA:CTPCHARP_4,Europe/Paris,2,OBI, +OBI:SP:CHARP_4,1,"Charpentier",48.407875,-4.501617,-1,0,OBI:SA:CTPCHARP_4,Europe/Paris,2,OBI, +OBI:SP:CHATAI_1,1,"Châtaigniers",48.43401,-4.565529,-1,0,OBI:SA:CTPCHATAI_1,Europe/Paris,2,OBI, +OBI:SP:CHATAI_2,1,"Châtaigniers",48.433952,-4.56529,-1,0,OBI:SA:CTPCHATAI_1,Europe/Paris,2,OBI, +OBI:SP:CHATEL_1,1,"Chatellier",48.409653,-4.501606,-1,0,OBI:SA:CTPCHATEL_1,Europe/Paris,2,OBI, +OBI:SP:CHATEL_2,1,"Chatellier",48.409325,-4.501658,-1,0,OBI:SA:CTPCHATEL_1,Europe/Paris,2,OBI, +OBI:SP:CHAT_TA,1,"Château",48.385448,-4.492435,-1,0,OBI:SA:CTPCHAT_TA,Europe/Paris,2,OBI, +OBI:SP:CHAT_TR,1,"Château",48.385509,-4.49247,-1,0,OBI:SA:CTPCHAT_TA,Europe/Paris,2,OBI, +OBI:SP:CHDEAU_1,1,"Château d'eau",48.37492,-4.556758,-1,0,OBI:SA:CTPCHDEAU_1,Europe/Paris,2,OBI, +OBI:SP:CHDEAU_2,1,"Château d'eau",48.374802,-4.557393,-1,0,OBI:SA:CTPCHDEAU_1,Europe/Paris,2,OBI, +OBI:SP:CHFOIR_1,1,"Champ de Foire",48.373871,-4.36803,-1,0,OBI:SA:CTPCHFOIR_1,Europe/Paris,2,OBI, +OBI:SP:CHFOIR_2,1,"Champ de Foire",48.373993,-4.368424,-1,0,OBI:SA:CTPCHFOIR_1,Europe/Paris,2,OBI, +OBI:SP:CHOISE_1,1,"Choiseul",48.406712,-4.475793,-1,0,OBI:SA:CTPCHOISE_2,Europe/Paris,2,OBI, +OBI:SP:CHOISE_2,1,"Choiseul",48.406746,-4.476408,-1,0,OBI:SA:CTPCHOISE_2,Europe/Paris,2,OBI, +OBI:SP:CHRIST_1,1,"St Christophe",48.411816,-4.48645,-1,0,OBI:SA:CTPCHRIST_1,Europe/Paris,0,OBI, +OBI:SP:CHRIST_2,1,"St Christophe",48.412403,-4.486567,-1,0,OBI:SA:CTPCHRIST_1,Europe/Paris,0,OBI, +OBI:SP:CHR_A1,1,"Hopital Cavale 2",48.400761,-4.529444,-1,0,OBI:SA:CTPCHR_A1,Europe/Paris,2,OBI, +OBI:SP:CHR_A2,1,"Hopital Cavale 2",48.40073,-4.529617,-1,0,OBI:SA:CTPCHR_A1,Europe/Paris,2,OBI, +OBI:SP:CHR_R1,1,"Hôpital Cavale 1",48.401493,-4.526315,-1,0,OBI:SA:CTPCHR_R2,Europe/Paris,2,OBI, +OBI:SP:CHR_R2,1,"Hôpital Cavale 1",48.401489,-4.52622,-1,0,OBI:SA:CTPCHR_R2,Europe/Paris,2,OBI, +OBI:SP:CIN_1,1,"Ecole Navale",48.375717,-4.526193,-1,0,OBI:SA:CTPCIN_2,Europe/Paris,0,OBI, +OBI:SP:CIN_2,1,"Ecole Navale",48.374966,-4.526067,-1,0,OBI:SA:CTPCIN_2,Europe/Paris,0,OBI, +OBI:SP:CKERA_1,1,"Cl.Keraudren",48.429317,-4.476861,-1,0,OBI:SA:CTPCKERA_1,Europe/Paris,2,OBI, +OBI:SP:CKERA_2,1,"Clinique Keraudren",48.429932,-4.477144,-1,0,OBI:SA:CTPCKERA_2,Europe/Paris,2,OBI, +OBI:SP:CLAUZ_1,1,"Clauzel",48.401058,-4.512705,-1,0,OBI:SA:CTPCLAUZ_1,Europe/Paris,2,OBI, +OBI:SP:CLAUZ_2,1,"Clauzel",48.401478,-4.512489,-1,0,OBI:SA:CTPCLAUZ_1,Europe/Paris,2,OBI, +OBI:SP:CLOITR_1,1,"Cloître",48.378445,-4.615019,-1,0,OBI:SA:CTPCLOITR_2,Europe/Paris,2,OBI, +OBI:SP:CLOITR_2,1,"Cloître",48.377895,-4.615773,-1,0,OBI:SA:CTPCLOITR_2,Europe/Paris,2,OBI, +OBI:SP:COATAU_1,1,"Coataudon",48.414333,-4.440337,-1,0,OBI:SA:CTPCOATAU_1,Europe/Paris,2,OBI, +OBI:SP:COATAU_2,1,"Coataudon",48.414272,-4.440316,-1,0,OBI:SA:CTPCOATAU_1,Europe/Paris,2,OBI, +OBI:SP:COATU_1,1,"Coatuelen",48.37402,-4.567977,-1,0,OBI:SA:CTPCOATU_2,Europe/Paris,2,OBI, +OBI:SP:COATU_2,1,"Coatuelen",48.374031,-4.567613,-1,0,OBI:SA:CTPCOATU_2,Europe/Paris,2,OBI, +OBI:SP:COATY_1,1,"Coat ty Ogant",48.418102,-4.548524,-1,0,OBI:SA:CTPCOATY_1,Europe/Paris,0,OBI, +OBI:SP:COAT_J_1,1,"Coat-Jestin",48.427189,-4.414158,-1,0,OBI:SA:CTPCOAT_J_2,Europe/Paris,0,OBI, +OBI:SP:COAT_J_2,1,"Coat-Jestin",48.427429,-4.413416,-1,0,OBI:SA:CTPCOAT_J_2,Europe/Paris,0,OBI, +OBI:SP:COAT_M_1,1,"Coat Mez",48.420891,-4.554085,-1,0,OBI:SA:CTPCOAT_M_1,Europe/Paris,2,OBI, +OBI:SP:COAT_M_2,1,"Coat Mez",48.420818,-4.554049,-1,0,OBI:SA:CTPCOAT_M_1,Europe/Paris,2,OBI, +OBI:SP:COAT_TA,1,"Coat Tan",48.386024,-4.533401,-1,0,OBI:SA:CTPCOAT_T_4,Europe/Paris,2,OBI, +OBI:SP:COAT_TR,1,"Coat Tan",48.386044,-4.533403,-1,0,OBI:SA:CTPCOAT_T_4,Europe/Paris,2,OBI, +OBI:SP:COAT_T_1,1,"Coat Tan",48.385895,-4.533614,-1,0,OBI:SA:CTPCOAT_T_4,Europe/Paris,2,OBI, +OBI:SP:COAT_T_2,1,"Coat Tan",48.385876,-4.533652,-1,0,OBI:SA:CTPCOAT_T_4,Europe/Paris,2,OBI, +OBI:SP:COAT_T_3,1,"Coat Tan",48.386307,-4.534942,-1,0,OBI:SA:CTPCOAT_T_4,Europe/Paris,2,OBI, +OBI:SP:COAT_T_4,1,"Coat Tan",48.386055,-4.534746,-1,0,OBI:SA:CTPCOAT_T_4,Europe/Paris,2,OBI, +OBI:SP:COCT_1,1,"Cocteau",48.373547,-4.540294,-1,0,OBI:SA:CTPCOCT_2,Europe/Paris,2,OBI, +OBI:SP:COCT_2,1,"Cocteau",48.373894,-4.540515,-1,0,OBI:SA:CTPCOCT_2,Europe/Paris,2,OBI, +OBI:SP:COLL_VAL,1,"Camille Vallaux",48.402847,-4.398813,-1,0,OBI:SA:CTPCOLL_VAL,Europe/Paris,0,OBI, +OBI:SP:COMTE_1,1,"Comte",48.377949,-4.536796,-1,0,OBI:SA:CTPCOMTE_1,Europe/Paris,0,OBI, +OBI:SP:COMTE_2,1,"Comte",48.377995,-4.536449,-1,0,OBI:SA:CTPCOMTE_1,Europe/Paris,0,OBI, +OBI:SP:COPPIN_1,1,"Coppin",48.393841,-4.494467,-1,0,OBI:SA:CTPCOPPIN_2,Europe/Paris,2,OBI, +OBI:SP:COPPIN_2,1,"Coppin",48.39399,-4.494392,-1,0,OBI:SA:CTPCOPPIN_2,Europe/Paris,2,OBI, +OBI:SP:COQ_HA_1,1,"Coq Hardi",48.405598,-4.462583,-1,0,OBI:SA:CTPCOQ_HA_2,Europe/Paris,0,OBI, +OBI:SP:COQ_HA_2,1,"Coq Hardi",48.405663,-4.462564,-1,0,OBI:SA:CTPCOQ_HA_2,Europe/Paris,0,OBI, +OBI:SP:CORIO_1,1,"Coriolis",48.42733,-4.446839,-1,0,OBI:SA:CTPCORIO_1,Europe/Paris,0,OBI, +OBI:SP:CORMO_1,1,"Cormorans",48.404099,-4.387171,-1,0,OBI:SA:CTPCORMO_1,Europe/Paris,0,OBI, +OBI:SP:CORMO_2,1,"Cormorans",48.404037,-4.38715,-1,0,OBI:SA:CTPCORMO_1,Europe/Paris,0,OBI, +OBI:SP:COSMAO_1,1,"Cosmao Prétôt",48.382923,-4.517236,-1,0,OBI:SA:CTPCOSMAO_1,Europe/Paris,2,OBI, +OBI:SP:COSMAO_2,1,"Cosmao Prêtôt",48.382832,-4.516804,-1,0,OBI:SA:CTPCOSMAO_2,Europe/Paris,2,OBI, +OBI:SP:COSQUE_1,1,"Cosquer",48.36631,-4.547522,-1,0,OBI:SA:CTPCOSQUE_1,Europe/Paris,0,OBI, +OBI:SP:COSQUE_2,1,"Cosquer",48.36615,-4.547663,-1,0,OBI:SA:CTPCOSQUE_1,Europe/Paris,0,OBI, +OBI:SP:COULOM_1,1,"Coulomb",48.410149,-4.462484,-1,0,OBI:SA:CTPCOULOM_1,Europe/Paris,2,OBI, +OBI:SP:COULOM_2,1,"Coulomb",48.410309,-4.46176,-1,0,OBI:SA:CTPCOULOM_1,Europe/Paris,2,OBI, +OBI:SP:COUPER_1,1,"Couperin",48.412052,-4.499779,-1,0,OBI:SA:CTPCOUPER_2,Europe/Paris,2,OBI, +OBI:SP:COUPER_2,1,"Couperin",48.412163,-4.499726,-1,0,OBI:SA:CTPCOUPER_2,Europe/Paris,2,OBI, +OBI:SP:CPCIN_1,1,"Les Capucins",48.391823,-4.504555,-1,0,OBI:SA:CTPCPCIN_1,Europe/Paris,2,OBI, +OBI:SP:CPCIN_2,1,"Les Capucins",48.391438,-4.505548,-1,0,OBI:SA:CTPCPCIN_1,Europe/Paris,2,OBI, +OBI:SP:CPLLE_1,1,"Chapelle",48.425716,-4.517773,-1,0,OBI:SA:CTPCHAPEL_2,Europe/Paris,2,OBI, +OBI:SP:CRANN_2,1,"Le Crann",48.455643,-4.472106,-1,0,OBI:SA:CTPCRANN_2,Europe/Paris,2,OBI, +OBI:SP:CREACH_1,1,"Pen-ar-Créac'h",48.403847,-4.465228,-1,0,OBI:SA:CTPCREACH_1,Europe/Paris,2,OBI, +OBI:SP:CREACH_2,1,"Pen-ar-Créac'h",48.403904,-4.465181,-1,0,OBI:SA:CTPCREACH_1,Europe/Paris,2,OBI, +OBI:SP:CROASB_1,1,"Croas-ar-Bis",48.381599,-4.357427,-1,0,OBI:SA:CTPCROASB_1,Europe/Paris,0,OBI, +OBI:SP:CROASB_2,1,"Croas-ar-Bis",48.381355,-4.3581,-1,0,OBI:SA:CTPCROASB_1,Europe/Paris,0,OBI, +OBI:SP:CROAS_1,1,"Croas ar Go",48.362545,-4.583729,-1,0,OBI:SA:CTPCROAS_1,Europe/Paris,2,OBI, +OBI:SP:CROAS_2,1,"Croas ar Go",48.362774,-4.584112,-1,0,OBI:SA:CTPCROAS_1,Europe/Paris,2,OBI, +OBI:SP:CRUG_1,1,"Cruguel",48.372944,-4.538751,-1,0,OBI:SA:CTPCRUG_1,Europe/Paris,0,OBI, +OBI:SP:CRUG_2,1,"Cruguel",48.372967,-4.538822,-1,0,OBI:SA:CTPCRUG_1,Europe/Paris,0,OBI, +OBI:SP:CUIRA_1,1,"Cuirassé",48.404106,-4.496868,-1,0,OBI:SA:CTPCUIRA_2,Europe/Paris,2,OBI, +OBI:SP:CUIRA_2,1,"Cuirassé",48.404114,-4.49695,-1,0,OBI:SA:CTPCUIRA_2,Europe/Paris,2,OBI, +OBI:SP:CURIE_1,1,"Curie",48.431973,-4.456812,-1,0,OBI:SA:CTPCURIE_1,Europe/Paris,0,OBI, +OBI:SP:CVILLE,1,"C ville pour navettes",48.391479,-4.485432,-1,0,OBI:SA:CTPCVILLE,Europe/Paris,2,OBI, +OBI:SP:CX_RGE_1,1,"Croix Rouge",48.407623,-4.48883,-1,0,OBI:SA:CTPCX_RGE_1,Europe/Paris,2,OBI, +OBI:SP:CX_RGE_2,1,"Croix Rouge",48.407463,-4.489134,-1,0,OBI:SA:CTPCX_RGE_1,Europe/Paris,2,OBI, +OBI:SP:C_BELL_1,1,"Créac'h Bellec",48.424957,-4.526337,-1,0,OBI:SA:CTPC_BELL_2,Europe/Paris,0,OBI, +OBI:SP:C_BELL_2,1,"Créac'h Bellec",48.425026,-4.52636,-1,0,OBI:SA:CTPC_BELL_2,Europe/Paris,0,OBI, +OBI:SP:C_CRO_2,1,"Chapelle Croix",48.411358,-4.373631,-1,0,OBI:SA:CTPC_CRO_2,Europe/Paris,0,OBI, +OBI:SP:C_NEVZ_1,1,"Castel Nevez",48.384811,-4.602222,-1,0,OBI:SA:CTPC_NEVZ_2,Europe/Paris,2,OBI, +OBI:SP:C_NEVZ_2,1,"Castel Nevez",48.384937,-4.602279,-1,0,OBI:SA:CTPC_NEVZ_2,Europe/Paris,2,OBI, +OBI:SP:C_RES_1,1,"Cent. Réseaux",48.390587,-4.497984,-1,0,OBI:SA:CTPC_RES_2,Europe/Paris,0,OBI, +OBI:SP:C_RES_2,1,"Cent. Réseaux",48.390671,-4.497968,-1,0,OBI:SA:CTPC_RES_2,Europe/Paris,0,OBI, +OBI:SP:C_SALI_1,1,"Croas Saliou",48.381279,-4.59865,-1,0,OBI:SA:CTPC_SALI_1,Europe/Paris,2,OBI, +OBI:SP:C_SALI_2,1,"Croas Saliou",48.38113,-4.598427,-1,0,OBI:SA:CTPC_SALI_1,Europe/Paris,2,OBI, +OBI:SP:DAGRE_2,1,"Daguerre",48.430355,-4.462649,-1,0,OBI:SA:CTPDAGRE_2,Europe/Paris,0,OBI, +OBI:SP:DANTON_1,1,"Danton",48.407822,-4.402084,-1,0,OBI:SA:CTPDANTON_2,Europe/Paris,2,OBI, +OBI:SP:DANTON_2,1,"Danton",48.407711,-4.402287,-1,0,OBI:SA:CTPDANTON_2,Europe/Paris,2,OBI, +OBI:SP:DAUPHI_1,1,"Dauphiné",48.405159,-4.515601,-1,0,OBI:SA:CTPDAUPHI_2,Europe/Paris,2,OBI, +OBI:SP:DAUPHI_2,1,"Dauphiné",48.40522,-4.515636,-1,0,OBI:SA:CTPDAUPHI_2,Europe/Paris,2,OBI, +OBI:SP:DAURAT_1,1,"Daurat",48.425251,-4.553752,-1,0,OBI:SA:CTPDAURAT_2,Europe/Paris,2,OBI, +OBI:SP:DAURAT_2,1,"Daurat",48.425297,-4.553447,-1,0,OBI:SA:CTPDAURAT_2,Europe/Paris,2,OBI, +OBI:SP:DEGAUL_1,1,"De Gaulle",48.447594,-4.464612,-1,0,OBI:SA:CTPDEGAUL_2,Europe/Paris,2,OBI, +OBI:SP:DEGAUL_2,1,"De Gaulle",48.447262,-4.464297,-1,0,OBI:SA:CTPDEGAUL_2,Europe/Paris,2,OBI, +OBI:SP:DELACR_1,1,"Delacroix",48.408798,-4.456507,-1,0,OBI:SA:CTPDELACR_1,Europe/Paris,0,OBI, +OBI:SP:DELACR_2,1,"Delacroix",48.408241,-4.456923,-1,0,OBI:SA:CTPDELACR_1,Europe/Paris,0,OBI, +OBI:SP:DEMY_1,1,"Demy",48.392986,-4.529154,-1,0,OBI:SA:CTPDEMY_1,Europe/Paris,0,OBI, +OBI:SP:DEMY_2,1,"Demy",48.392601,-4.529456,-1,0,OBI:SA:CTPDEMY_1,Europe/Paris,0,OBI, +OBI:SP:DEREDE_1,1,"Dérédec",48.378826,-4.379218,-1,0,OBI:SA:CTPDEREDE_1,Europe/Paris,2,OBI, +OBI:SP:DEREDE_2,1,"Dérédec",48.378464,-4.379401,-1,0,OBI:SA:CTPDEREDE_1,Europe/Paris,2,OBI, +OBI:SP:DESCHART,1,"Deschart",48.41695,-4.492828,-1,0,OBI:SA:CTPDESCHART,Europe/Paris,2,OBI, +OBI:SP:DE_RO_1,1,"De Rochon",48.361065,-4.564789,-1,0,OBI:SA:CTPDE_RO_2,Europe/Paris,2,OBI, +OBI:SP:DE_RO_2,1,"De Rochon",48.36105,-4.564936,-1,0,OBI:SA:CTPDE_RO_2,Europe/Paris,2,OBI, +OBI:SP:DIGUE_1,1,"La Digue",48.39732,-4.515074,-1,0,OBI:SA:CTPDIGUE_1,Europe/Paris,2,OBI, +OBI:SP:DIGUE_2,1,"La Digue",48.397488,-4.515285,-1,0,OBI:SA:CTPDIGUE_1,Europe/Paris,2,OBI, +OBI:SP:DIREC_1,1,"Bassin 3",48.387836,-4.497489,-1,0,OBI:SA:CTPDIREC_2,Europe/Paris,2,OBI, +OBI:SP:DIREC_2,1,"Bassin 3",48.387764,-4.496897,-1,0,OBI:SA:CTPDIREC_2,Europe/Paris,2,OBI, +OBI:SP:DIWAN_2,1,"Diwan",48.398037,-4.411242,-1,0,OBI:SA:CTPDIWAN_2,Europe/Paris,0,OBI, +OBI:SP:DIXMUD_1,1,"Dixmude",48.398922,-4.459572,-1,0,OBI:SA:CTPDIXMUD_2,Europe/Paris,2,OBI, +OBI:SP:DIXMUD_2,1,"Dixmude",48.39896,-4.459347,-1,0,OBI:SA:CTPDIXMUD_2,Europe/Paris,2,OBI, +OBI:SP:DJACQ_1,1,"Dourjacq",48.407681,-4.471962,-1,0,OBI:SA:CTPDJACQ_2,Europe/Paris,2,OBI, +OBI:SP:DJACQ_2,1,"Dourjacq",48.407856,-4.471416,-1,0,OBI:SA:CTPDJACQ_2,Europe/Paris,2,OBI, +OBI:SP:DONNAR_1,1,"Donnart",48.400013,-4.485775,-1,0,OBI:SA:CTPDONNAR_1,Europe/Paris,0,OBI, +OBI:SP:DONNAR_2,1,"Donnart",48.399563,-4.486217,-1,0,OBI:SA:CTPDONNAR_1,Europe/Paris,0,OBI, +OBI:SP:DOURIC_1,1,"Douric",48.397968,-4.465722,-1,0,OBI:SA:CTPDOURIC_1,Europe/Paris,2,OBI, +OBI:SP:DOURIC_2,1,"Douric",48.397972,-4.465871,-1,0,OBI:SA:CTPDOURIC_1,Europe/Paris,2,OBI, +OBI:SP:DOUVEZ_2,1,"Le Douvez",48.41468,-4.349458,-1,0,OBI:SA:CTPDOUVEZ_2,Europe/Paris,0,OBI, +OBI:SP:DROGOU_1,1,"Drogou",48.404877,-4.493892,-1,0,OBI:SA:CTPDROGOU_2,Europe/Paris,0,OBI, +OBI:SP:DROGOU_2,1,"Drogou",48.404949,-4.494159,-1,0,OBI:SA:CTPDROGOU_2,Europe/Paris,0,OBI, +OBI:SP:DUNANT_1,1,"Dunant",48.420902,-4.493481,-1,0,OBI:SA:CTPDUNANT_2,Europe/Paris,2,OBI, +OBI:SP:DUNANT_2,1,"Dunant",48.42091,-4.493645,-1,0,OBI:SA:CTPDUNANT_2,Europe/Paris,2,OBI, +OBI:SP:DUPUY_TA,1,"Dupuy de Lôme",48.390553,-4.510202,-1,0,OBI:SA:CTPDUPUY_TA,Europe/Paris,2,OBI, +OBI:SP:DUPUY_TR,1,"Dupuy de Lome",48.390644,-4.509876,-1,0,OBI:SA:CTPDUPUY_TR,Europe/Paris,2,OBI, +OBI:SP:D_BIAN_1,1,"Dour-Bian",48.392376,-4.458341,-1,0,OBI:SA:CTPD_BIAN_1,Europe/Paris,0,OBI, +OBI:SP:EAU_B_TA,1,"Eau Blanche",48.416862,-4.459861,-1,0,OBI:SA:CTPEAU_B_TA,Europe/Paris,2,OBI, +OBI:SP:EAU_B_TR,1,"Eau Blanche",48.416882,-4.459836,-1,0,OBI:SA:CTPEAU_B_TA,Europe/Paris,2,OBI, +OBI:SP:ECNA_1,1,"Ecole Navale CIN",48.375809,-4.525988,-1,0,OBI:SA:CTPECNA_1,Europe/Paris,2,OBI, +OBI:SP:ECOLES_1,1,"Ecoles",48.360859,-4.567565,-1,0,OBI:SA:CTPECOLES_1,Europe/Paris,2,OBI, +OBI:SP:ECOLES_2,1,"Ecoles",48.360786,-4.568314,-1,0,OBI:SA:CTPECOLES_1,Europe/Paris,2,OBI, +OBI:SP:ENCLOS_1,1,"Enclos",48.369427,-4.588542,-1,0,OBI:SA:CTPENCLOS_2,Europe/Paris,0,OBI, +OBI:SP:ENCLOS_2,1,"Enclos",48.369221,-4.588488,-1,0,OBI:SA:CTPENCLOS_2,Europe/Paris,0,OBI, +OBI:SP:ENTREE_D,1,"Dépot",48.422417,-4.456816,-1,0,OBI:SA:CTPENTREE_D,Europe/Paris,0,OBI, +OBI:SP:EPI_1,1,"SLM",48.37286,-4.511852,-1,0,OBI:SA:CTPEPI_2,Europe/Paris,0,OBI, +OBI:SP:EPI_2,1,"SLM",48.372635,-4.512147,-1,0,OBI:SA:CTPEPI_2,Europe/Paris,0,OBI, +OBI:SP:EROUSS_1,1,"Emile Rousse",48.386166,-4.528216,-1,0,OBI:SA:CTPEROUSS_2,Europe/Paris,2,OBI, +OBI:SP:EROUSS_2,1,"Emile Rousse",48.38633,-4.528495,-1,0,OBI:SA:CTPEROUSS_2,Europe/Paris,2,OBI, +OBI:SP:ESNLE,1,"ESNLE",48.375988,-4.51932,-1,0,OBI:SA:CTPESNLE,Europe/Paris,0,OBI, +OBI:SP:ESNLE2,1,"ESNLE",48.374329,-4.519319,-1,0,OBI:SA:CTPESNLE,Europe/Paris,0,OBI, +OBI:SP:ESTREE_1,1,"D'Estrées",48.394814,-4.462222,-1,0,OBI:SA:CTPESTREE_1,Europe/Paris,2,OBI, +OBI:SP:ESTREE_2,1,"D'Estrées",48.394772,-4.462514,-1,0,OBI:SA:CTPESTREE_1,Europe/Paris,2,OBI, +OBI:SP:ETANG1,1,"Etang",48.410358,-4.520865,-1,0,OBI:SA:CTPETANG1,Europe/Paris,2,OBI, +OBI:SP:ETANG2,1,"Etang",48.410305,-4.520696,-1,0,OBI:SA:CTPETANG1,Europe/Paris,2,OBI, +OBI:SP:EUROP_TA,1,"Europe",48.411331,-4.471123,-1,0,OBI:SA:CTPEUROP_TA,Europe/Paris,2,OBI, +OBI:SP:EUROP_TR,1,"Europe",48.4114,-4.471133,-1,0,OBI:SA:CTPEUROP_TA,Europe/Paris,2,OBI, +OBI:SP:E_COM_1,1,"Ecole Commerce",48.406815,-4.521729,-1,0,OBI:SA:CTPE_COM_2,Europe/Paris,2,OBI, +OBI:SP:E_COM_2,1,"Ecole Commerce",48.406902,-4.52174,-1,0,OBI:SA:CTPE_COM_2,Europe/Paris,2,OBI, +OBI:SP:F,1,"Liberté Place",48.391121,-4.486293,-1,0,OBI:SA:CTPH,Europe/Paris,2,OBI, +OBI:SP:FARAD_1,1,"Faraday",48.360905,-4.57999,-1,0,OBI:SA:CTPFARAD_1,Europe/Paris,2,OBI, +OBI:SP:FARAD_2,1,"Faraday",48.361164,-4.580499,-1,0,OBI:SA:CTPFARAD_1,Europe/Paris,2,OBI, +OBI:SP:FFI_1,1,"Place des FFI",48.41534,-4.491642,-1,0,OBI:SA:CTPFFI_1,Europe/Paris,2,OBI, +OBI:SP:FFI_2,1,"Place des FFI",48.415375,-4.49101,-1,0,OBI:SA:CTPFFI_1,Europe/Paris,2,OBI, +OBI:SP:FILLIG_1,1,"Filliger",48.375637,-4.379878,-1,0,OBI:SA:CTPFILLIG_1,Europe/Paris,2,OBI, +OBI:SP:FILLIG_2,1,"Filliger",48.375553,-4.379988,-1,0,OBI:SA:CTPFILLIG_1,Europe/Paris,2,OBI, +OBI:SP:FLIBRE_1,1,"Français Libres",48.384258,-4.493092,-1,0,OBI:SA:CTPFLIBRE_1,Europe/Paris,2,OBI, +OBI:SP:FLIBRE_2,1,"Français Libres",48.384178,-4.493217,-1,0,OBI:SA:CTPFLIBRE_1,Europe/Paris,2,OBI, +OBI:SP:FLLERE_1,1,"Feuillère",48.391529,-4.532363,-1,0,OBI:SA:CTPFLLERE_1,Europe/Paris,2,OBI, +OBI:SP:FLLERE_2,1,"Feuillère",48.391594,-4.532968,-1,0,OBI:SA:CTPFLLERE_1,Europe/Paris,2,OBI, +OBI:SP:FLMING_1,1,"Fleming",48.41032,-4.394356,-1,0,OBI:SA:CTPFLMING_1,Europe/Paris,0,OBI, +OBI:SP:FLMING_2,1,"Fleming",48.410179,-4.394311,-1,0,OBI:SA:CTPFLMING_1,Europe/Paris,0,OBI, +OBI:SP:FLOCH_1,1,"Floch",48.401173,-4.454512,-1,0,OBI:SA:CTPFLOCH_1,Europe/Paris,2,OBI, +OBI:SP:FLOCH_2,1,"Floch",48.401207,-4.455302,-1,0,OBI:SA:CTPFLOCH_1,Europe/Paris,2,OBI, +OBI:SP:FLOTI_1,1,"Gymnase",48.370636,-4.515488,-1,0,OBI:SA:CTPFLOTI_2,Europe/Paris,0,OBI, +OBI:SP:FLOTI_2,1,"Gymnase",48.370659,-4.515369,-1,0,OBI:SA:CTPFLOTI_2,Europe/Paris,0,OBI, +OBI:SP:FMARGOT,1,"College Fontaine Margot",48.382965,-4.540396,-1,0,OBI:SA:CTPFMARGOT,Europe/Paris,2,OBI, +OBI:SP:FMONT_TA,1,"Fort Montbarey",48.378693,-4.543992,-1,0,OBI:SA:CTPMONTB_3,Europe/Paris,2,OBI, +OBI:SP:FMONT_TR,1,"Fort Montbarey",48.378727,-4.544024,-1,0,OBI:SA:CTPMONTB_3,Europe/Paris,2,OBI, +OBI:SP:FOCH_1,1,"Foch",48.39669,-4.488769,-1,0,OBI:SA:CTPFOCH_1,Europe/Paris,2,OBI, +OBI:SP:FOCH_2,1,"Foch",48.3964,-4.488812,-1,0,OBI:SA:CTPFOCH_1,Europe/Paris,2,OBI, +OBI:SP:FONT_B_1,1,"Fontaine Blanche",48.370911,-4.363736,-1,0,OBI:SA:CTPFONT_B_1,Europe/Paris,2,OBI, +OBI:SP:FONT_B_2,1,"Fontaine Blanche",48.370975,-4.363853,-1,0,OBI:SA:CTPFONT_B_1,Europe/Paris,2,OBI, +OBI:SP:FOREST_1,1,"Forest",48.432022,-4.461307,-1,0,OBI:SA:CTPFOREST_1,Europe/Paris,0,OBI, +OBI:SP:FORES_1,1,"Forestou",48.390339,-4.468508,-1,0,OBI:SA:CTPFORES_2,Europe/Paris,2,OBI, +OBI:SP:FORES_2,1,"Forestou",48.390392,-4.468326,-1,0,OBI:SA:CTPFORES_2,Europe/Paris,2,OBI, +OBI:SP:FORMES_1,1,"Formes",48.385857,-4.475593,-1,0,OBI:SA:CTPFORMES_1,Europe/Paris,2,OBI, +OBI:SP:FORTIN_1,1,"Fortin",48.433475,-4.510072,-1,0,OBI:SA:CTPFORTIN_2,Europe/Paris,0,OBI, +OBI:SP:FORTIN_2,1,"Fortin",48.433483,-4.510059,-1,0,OBI:SA:CTPFORTIN_2,Europe/Paris,0,OBI, +OBI:SP:FOURN_1,1,"Fourneuf",48.441399,-4.451435,-1,0,OBI:SA:CTPFOURN_1,Europe/Paris,0,OBI, +OBI:SP:FOURN_2,1,"Fourneuf",48.441521,-4.451641,-1,0,OBI:SA:CTPFOURN_1,Europe/Paris,0,OBI, +OBI:SP:FRANKL_1,1,"Franklin",48.408073,-4.497739,-1,0,OBI:SA:CTPFRANKL_2,Europe/Paris,2,OBI, +OBI:SP:FRANKL_2,1,"Franklin",48.408073,-4.497739,-1,0,OBI:SA:CTPFRANKL_2,Europe/Paris,2,OBI, +OBI:SP:FRENES_2,1,"Frênes",48.456306,-4.469099,-1,0,OBI:SA:CTPFRENES_2,Europe/Paris,0,OBI, +OBI:SP:FRESN_1,1,"Fresnel",48.428822,-4.448362,-1,0,OBI:SA:CTPFRESN_1,Europe/Paris,0,OBI, +OBI:SP:FRESS_2,1,"Freyssinet",48.427483,-4.570523,-1,0,OBI:SA:CTPFRYSS_1,Europe/Paris,0,OBI, +OBI:SP:FROUT_1,1,"Froutven",48.415688,-4.434806,-1,0,OBI:SA:CTPFROUT_1,Europe/Paris,2,OBI, +OBI:SP:FROUT_2,1,"Froutven",48.415203,-4.435719,-1,0,OBI:SA:CTPFROUT_1,Europe/Paris,2,OBI, +OBI:SP:FRYSS_1,1,"Freyssinet",48.427395,-4.57058,-1,0,OBI:SA:CTPFRYSS_1,Europe/Paris,0,OBI, +OBI:SP:FUSILL_1,1,"Place des Fusillés",48.450443,-4.465296,-1,0,OBI:SA:CTPFUSILL_2,Europe/Paris,2,OBI, +OBI:SP:FUSILL_2,1,"Place des Fusillés",48.450676,-4.466086,-1,0,OBI:SA:CTPFUSILL_2,Europe/Paris,2,OBI, +OBI:SP:FUSILL_3,1,"Place des Fusillés",48.451065,-4.46653,-1,0,OBI:SA:CTPFUSILL_2,Europe/Paris,2,OBI, +OBI:SP:F_ESPE_1,1,"Fr. d' Espérey",48.382294,-4.508713,-1,0,OBI:SA:CTPF_ESPE_2,Europe/Paris,2,OBI, +OBI:SP:F_ESPE_2,1,"Fr. d' Espérey",48.382542,-4.50861,-1,0,OBI:SA:CTPF_ESPE_2,Europe/Paris,2,OBI, +OBI:SP:GAMBET_1,1,"Gambetta-Gare",48.388336,-4.482013,-1,0,OBI:SA:CTPGAMBET_2,Europe/Paris,2,OBI, +OBI:SP:GAMBET_2,1,"Gambetta-Gare",48.388344,-4.482055,-1,0,OBI:SA:CTPGAMBET_2,Europe/Paris,2,OBI, +OBI:SP:GARERK,1,"Gare R.Kerhuon",48.409332,-4.387967,-1,0,STE:SA:OCE87474213,Europe/Paris,2,OBI, +OBI:SP:GARE_1,1,"Gare",48.388069,-4.480691,-1,0,OBI:SA:CTPGARE_2,Europe/Paris,2,OBI, +OBI:SP:GARE_2,1,"Gare",48.388103,-4.480601,-1,0,OBI:SA:CTPGARE_2,Europe/Paris,2,OBI, +OBI:SP:GASCO_1,1,"Gascogne",48.406528,-4.517503,-1,0,OBI:SA:CTPGASCO_1,Europe/Paris,2,OBI, +OBI:SP:GASCO_2,1,"Gascogne",48.406578,-4.517428,-1,0,OBI:SA:CTPGASCO_1,Europe/Paris,2,OBI, +OBI:SP:GERGOT_1,1,"Gergotich",48.376637,-4.544873,-1,0,OBI:SA:CTPGERGOT_1,Europe/Paris,2,OBI, +OBI:SP:GERGOT_2,1,"Gergotich",48.376667,-4.544823,-1,0,OBI:SA:CTPGERGOT_1,Europe/Paris,2,OBI, +OBI:SP:GHENO_1,1,"Guéhenno",48.410866,-4.398046,-1,0,OBI:SA:CTPGNENO_2,Europe/Paris,0,OBI, +OBI:SP:GILARD_1,1,"Colas",48.384327,-4.349824,-1,0,OBI:SA:CTPGILARD_2,Europe/Paris,0,OBI, +OBI:SP:GILARD_2,1,"Colas",48.38504,-4.34932,-1,0,OBI:SA:CTPGILARD_2,Europe/Paris,0,OBI, +OBI:SP:GILOUX_1,1,"Giloux",48.415676,-4.486955,-1,0,OBI:SA:CTPGILOUX_2,Europe/Paris,2,OBI, +OBI:SP:GILOUX_2,1,"Giloux",48.415859,-4.486884,-1,0,OBI:SA:CTPGILOUX_2,Europe/Paris,2,OBI, +OBI:SP:GLEUZ_2,1,"Kergleuz",48.412182,-4.365008,-1,0,OBI:SA:CTPGLEUZ_2,Europe/Paris,0,OBI, +OBI:SP:GNEMER_1,1,"Guynemer",48.395035,-4.463727,-1,0,OBI:SA:CTPGNEMER_2,Europe/Paris,2,OBI, +OBI:SP:GNEMER_2,1,"Guynemer",48.394787,-4.463681,-1,0,OBI:SA:CTPGNEMER_2,Europe/Paris,2,OBI, +OBI:SP:GNENO_2,1,"Guéhenno",48.410648,-4.398058,-1,0,OBI:SA:CTPGNENO_2,Europe/Paris,0,OBI, +OBI:SP:GOFFIC_1,1,"Le Goffic",48.397274,-4.443543,-1,0,OBI:SA:CTPGOFFIC_2,Europe/Paris,2,OBI, +OBI:SP:GOFFIC_2,1,"Le Goffic",48.39743,-4.444242,-1,0,OBI:SA:CTPGOFFIC_2,Europe/Paris,2,OBI, +OBI:SP:GONIO_1,1,"Gonio",48.366673,-4.59132,-1,0,OBI:SA:CTPGONIO_1,Europe/Paris,0,OBI, +OBI:SP:GONIO_2,1,"Gonio",48.366707,-4.591175,-1,0,OBI:SA:CTPGONIO_1,Europe/Paris,0,OBI, +OBI:SP:GORGEU_1,1,"Le Gorgeu",48.404552,-4.505967,-1,0,OBI:SA:CTPGORGEU_2,Europe/Paris,2,OBI, +OBI:SP:GORGEU_2,1,"Le Gorgeu",48.404011,-4.505394,-1,0,OBI:SA:CTPGORGEU_2,Europe/Paris,2,OBI, +OBI:SP:GOUEZ_1,1,"Gouez",48.411411,-4.527362,-1,0,OBI:SA:CTPGOUEZ_2,Europe/Paris,0,OBI, +OBI:SP:GOUEZ_2,1,"Gouez",48.411037,-4.526676,-1,0,OBI:SA:CTPGOUEZ_2,Europe/Paris,0,OBI, +OBI:SP:GRECO_1,1,"Le Greco",48.395695,-4.527341,-1,0,OBI:SA:CTPGRECO_2,Europe/Paris,2,OBI, +OBI:SP:GRECO_2,1,"Le Greco",48.395477,-4.526378,-1,0,OBI:SA:CTPGRECO_2,Europe/Paris,2,OBI, +OBI:SP:GRETRY_1,1,"Grétry",48.409328,-4.496819,-1,0,OBI:SA:CTPGRETRY_1,Europe/Paris,2,OBI, +OBI:SP:GRETRY_2,1,"Grétry",48.409912,-4.496815,-1,0,OBI:SA:CTPGRETRY_1,Europe/Paris,2,OBI, +OBI:SP:GRNIER_1,1,"Garnier",48.399658,-4.511817,-1,0,OBI:SA:CTPGRNIER_2,Europe/Paris,2,OBI, +OBI:SP:GRNIER_2,1,"Garnier",48.399803,-4.511781,-1,0,OBI:SA:CTPGRNIER_2,Europe/Paris,2,OBI, +OBI:SP:GROIX_1,1,"Groix",48.407177,-4.504128,-1,0,OBI:SA:CTPGROIX_1,Europe/Paris,0,OBI, +OBI:SP:GROIX_2,1,"Groix",48.407139,-4.504042,-1,0,OBI:SA:CTPGROIX_1,Europe/Paris,0,OBI, +OBI:SP:GUELM_1,1,"Guelmeur Eglise",48.392052,-4.463975,-1,0,OBI:SA:CTPGUELM_2,Europe/Paris,2,OBI, +OBI:SP:GUELM_2,1,"Guelmeur Eglise",48.391998,-4.463995,-1,0,OBI:SA:CTPGUELM_2,Europe/Paris,2,OBI, +OBI:SP:GUELM_4,1,"Guelmeur",48.393826,-4.459505,-1,0,OBI:SA:CTPGUELM_4,Europe/Paris,2,OBI, +OBI:SP:GUEPRA_2,1,"Guépratte",48.457127,-4.465978,-1,0,OBI:SA:CTPGUEPRA_2,Europe/Paris,2,OBI, +OBI:SP:GUIL_E_2,1,"Guilers Eglise",48.425148,-4.558417,-1,0,OBI:SA:CTPGUIL_E_2,Europe/Paris,2,OBI, +OBI:SP:GUIL_E_3,1,"Guilers Eglise",48.42514,-4.559786,-1,0,OBI:SA:CTPGUIL_E_2,Europe/Paris,2,OBI, +OBI:SP:GUIL_M_3,1,"Guilers Mairie",48.423553,-4.558668,-1,0,OBI:SA:CTPGUIL_M_3,Europe/Paris,2,OBI, +OBI:SP:GUIL_M_4,1,"Guilers Mairie",48.423019,-4.558557,-1,0,OBI:SA:CTPGUIL_M_3,Europe/Paris,2,OBI, +OBI:SP:GUIVAR_1,1,"Guivarch",48.377609,-4.364446,-1,0,OBI:SA:CTPGUIVAR_2,Europe/Paris,2,OBI, +OBI:SP:GUIVAR_2,1,"Guivarch",48.377674,-4.364265,-1,0,OBI:SA:CTPGUIVAR_2,Europe/Paris,2,OBI, +OBI:SP:G_KERI_1,1,"Grand Kerizac",48.426659,-4.499401,-1,0,OBI:SA:CTPG_KERI_1,Europe/Paris,2,OBI, +OBI:SP:G_KERI_2,1,"Grand Kerizac",48.426731,-4.499383,-1,0,OBI:SA:CTPG_KERI_1,Europe/Paris,2,OBI, +OBI:SP:G_RIV_1,1,"Grande Rivière",48.375984,-4.508252,-1,0,OBI:SA:CTPG_RIV_1,Europe/Paris,0,OBI, +OBI:SP:G_RIV_2,1,"Grande Rivière",48.374111,-4.513777,-1,0,OBI:SA:CTPG_RIV_2,Europe/Paris,0,OBI, +OBI:SP:H,1,"Liberté Place",48.390869,-4.486775,-1,0,OBI:SA:CTPH,Europe/Paris,2,OBI, +OBI:SP:HARTEL_2,1,"Harteloire",48.392868,-4.491034,-1,0,OBI:SA:CTPHARTEL_2,Europe/Paris,2,OBI, +OBI:SP:HARTEL_3,1,"Harteloire",48.392792,-4.490969,-1,0,OBI:SA:CTPHARTEL_2,Europe/Paris,2,OBI, +OBI:SP:HDEVIL-2,1,"Hôtel de Ville",48.392326,-4.484648,-1,0,OBI:SA:CTPHDEVIL_1,Europe/Paris,2,OBI, +OBI:SP:HDEVIL_1,1,"Hôtel de Ville",48.392277,-4.484736,-1,0,OBI:SA:CTPHDEVIL_1,Europe/Paris,2,OBI, +OBI:SP:HERBOT_1,1,"St-Herbot",48.434998,-4.400836,-1,0,OBI:SA:CTPHERBOT_2,Europe/Paris,2,OBI, +OBI:SP:HERBOT_2,1,"St-Herbot",48.435093,-4.400604,-1,0,OBI:SA:CTPHERBOT_2,Europe/Paris,2,OBI, +OBI:SP:HOCHE_1,1,"Hoche",48.403831,-4.474536,-1,0,OBI:SA:CTPHOCHE_2,Europe/Paris,2,OBI, +OBI:SP:HOCHE_2,1,"Hoche",48.404072,-4.475395,-1,0,OBI:SA:CTPHOCHE_2,Europe/Paris,2,OBI, +OBI:SP:HOP_1,1,"Hôpital Tromeur",48.435738,-4.505121,-1,0,OBI:SA:CTPHOP_1,Europe/Paris,0,OBI, +OBI:SP:HOP_2,1,"Hôpital Tromeur",48.435883,-4.505587,-1,0,OBI:SA:CTPHOP_1,Europe/Paris,0,OBI, +OBI:SP:HYDRO_1,1,"Hydro",48.3783,-4.498381,-1,0,OBI:SA:CTPHYDRO_2,Europe/Paris,0,OBI, +OBI:SP:HYDRO_2,1,"Hydro",48.378754,-4.499254,-1,0,OBI:SA:CTPHYDRO_2,Europe/Paris,0,OBI, +OBI:SP:ILES_1,1,"Les îles",48.382607,-4.486982,-1,0,OBI:SA:CTPILES_1,Europe/Paris,2,OBI, +OBI:SP:ILES_2,1,"Les îles",48.382614,-4.487037,-1,0,OBI:SA:CTPILES_1,Europe/Paris,2,OBI, +OBI:SP:IROISE_1,1,"Clinique Iroise",48.435478,-4.502781,-1,0,OBI:SA:CTPIROISE_1,Europe/Paris,2,OBI, +OBI:SP:IROISE_2,1,"Clinique Iroise",48.435585,-4.503229,-1,0,OBI:SA:CTPIROISE_1,Europe/Paris,2,OBI, +OBI:SP:ISEN_1,1,"ISEN",48.406605,-4.495839,-1,0,OBI:SA:CTPISEN_2,Europe/Paris,2,OBI, +OBI:SP:ISEN_2,1,"ISEN",48.406685,-4.495674,-1,0,OBI:SA:CTPISEN_2,Europe/Paris,2,OBI, +OBI:SP:I_2,1,"Liberté Frézier",48.391296,-4.485936,-1,0,OBI:SA:CTPN_1,Europe/Paris,2,OBI, +OBI:SP:JANSEN_1,1,"Jansen",48.42852,-4.442316,-1,0,OBI:SA:CTPJANSEN_1,Europe/Paris,0,OBI, +OBI:SP:JARDIN_1,1,"Jardin Botanique",48.401081,-4.446206,-1,0,OBI:SA:CTPJARDIN_1,Europe/Paris,2,OBI, +OBI:SP:JARDIN_2,1,"Jardin Botanique",48.400482,-4.445355,-1,0,OBI:SA:CTPJARDIN_1,Europe/Paris,2,OBI, +OBI:SP:JAVOUH_1,1,"Javouhey",48.383236,-4.503675,-1,0,OBI:SA:CTPJAVOUH_1,Europe/Paris,0,OBI, +OBI:SP:JAVOUH_2,1,"Javouhey",48.383221,-4.503645,-1,0,OBI:SA:CTPJAVOUH_1,Europe/Paris,0,OBI, +OBI:SP:JEANMOUL,1,"Jean Moulin",48.385597,-4.493808,-1,0,OBI:SA:CTPJEANMOUL,Europe/Paris,2,OBI, +OBI:SP:JESEQL_1,1,"Jézéquel",48.404224,-4.393015,-1,0,OBI:SA:CTPJEZEQL_2,Europe/Paris,0,OBI, +OBI:SP:JEZEQL_2,1,"Jézéquel",48.404224,-4.393164,-1,0,OBI:SA:CTPJEZEQL_2,Europe/Paris,0,OBI, +OBI:SP:JJAUR_TA,1,"Jean Jaurès",48.392395,-4.482679,-1,0,OBI:SA:CTPJJAUR_TA,Europe/Paris,2,OBI, +OBI:SP:JJAUR_TR,1,"Jean Jaurès",48.392414,-4.482641,-1,0,OBI:SA:CTPJJAUR_TA,Europe/Paris,2,OBI, +OBI:SP:J_BART_1,1,"Jean Bart",48.38279,-4.497032,-1,0,OBI:SA:CTPJ_BART_2,Europe/Paris,0,OBI, +OBI:SP:J_BART_2,1,"Jean Bart",48.382729,-4.496997,-1,0,OBI:SA:CTPJ_BART_2,Europe/Paris,0,OBI, +OBI:SP:J_LESV_1,1,"Jules Lesven",48.409325,-4.482193,-1,0,OBI:SA:CTPJ_LESV_2,Europe/Paris,2,OBI, +OBI:SP:J_LESV_2,1,"Jules Lesven",48.409279,-4.481754,-1,0,OBI:SA:CTPJ_LESV_2,Europe/Paris,2,OBI, +OBI:SP:KANT_1,1,"Kant",48.394806,-4.519623,-1,0,OBI:SA:CTPKANT_1,Europe/Paris,2,OBI, +OBI:SP:KANT_2,1,"Kant",48.394859,-4.519657,-1,0,OBI:SA:CTPKANT_1,Europe/Paris,2,OBI, +OBI:SP:KAP_H_1,1,"Kap Huella",48.38446,-4.389926,-1,0,OBI:SA:CTPKAP_H_1,Europe/Paris,0,OBI, +OBI:SP:KASTL_1,1,"Kastler",48.430008,-4.442211,-1,0,OBI:SA:CTPKASTL_1,Europe/Paris,0,OBI, +OBI:SP:KCAO_1,1,"Kerscao",48.405922,-4.408738,-1,0,OBI:SA:CTPKCAO_1,Europe/Paris,2,OBI, +OBI:SP:KCAO_3,1,"Kerscao",48.40567,-4.409559,-1,0,OBI:SA:CTPKCAO_1,Europe/Paris,2,OBI, +OBI:SP:KCAO_4,1,"Kerscao",48.406063,-4.409434,-1,0,OBI:SA:CTPKCAO_1,Europe/Paris,2,OBI, +OBI:SP:KENNED_1,1,"Kennedy Gare",48.38747,-4.482618,-1,0,OBI:SA:CTPKENNED_1,Europe/Paris,2,OBI, +OBI:SP:KENNED_2,1,"Kennedy Gare",48.386879,-4.482121,-1,0,OBI:SA:CTPKENNED_1,Europe/Paris,2,OBI, +OBI:SP:KENNED_4,1,"Kennedy Gare",48.38747,-4.482618,-1,0,OBI:SA:CTPKENNED_1,Europe/Paris,2,OBI, +OBI:SP:KERAFL_2,1,"Kerafloch",48.41386,-4.354733,-1,0,OBI:SA:CTPKERAFL_2,Europe/Paris,0,OBI, +OBI:SP:KERAF_1,1,"Kerafur",48.43985,-4.392973,-1,0,OBI:SA:CTPKERAF_1,Europe/Paris,2,OBI, +OBI:SP:KERAF_2,1,"Kerafur",48.439964,-4.393069,-1,0,OBI:SA:CTPKERAF_1,Europe/Paris,2,OBI, +OBI:SP:KERALE_1,1,"Keraleunoc",48.449726,-4.455178,-1,0,OBI:SA:CTPKERALE_1,Europe/Paris,0,OBI, +OBI:SP:KERALL_1,1,"Keralloche",48.407295,-4.49002,-1,0,OBI:SA:CTPKERALL_2,Europe/Paris,2,OBI, +OBI:SP:KERALL_2,1,"Keralloche",48.407333,-4.490405,-1,0,OBI:SA:CTPKERALL_2,Europe/Paris,2,OBI, +OBI:SP:KERAL_1,1,"Kerallan",48.379017,-4.58892,-1,0,OBI:SA:CTPKERAL_2,Europe/Paris,0,OBI, +OBI:SP:KERAL_2,1,"Kerallan",48.379036,-4.589193,-1,0,OBI:SA:CTPKERAL_2,Europe/Paris,0,OBI, +OBI:SP:KERAMA_1,1,"Keramazé",48.372849,-4.579459,-1,0,OBI:SA:CTPKERAMA_1,Europe/Paris,2,OBI, +OBI:SP:KERAMA_2,1,"Keramazé",48.372459,-4.580261,-1,0,OBI:SA:CTPKERAMA_1,Europe/Paris,2,OBI, +OBI:SP:KERANG_1,1,"Kerangoff",48.38129,-4.5106,-1,0,OBI:SA:CTPKERANG_2,Europe/Paris,2,OBI, +OBI:SP:KERANG_2,1,"Kerangoff",48.381214,-4.509859,-1,0,OBI:SA:CTPKERANG_2,Europe/Paris,2,OBI, +OBI:SP:KERANNA,1,"Keranna",48.436371,-4.409488,-1,0,OBI:SA:CTPKERANNA,Europe/Paris,2,OBI, +OBI:SP:KERAUDRY,1,"Keraudry",48.434662,-4.360547,-1,0,OBI:SA:CTPKERAUDRY,Europe/Paris,0,OBI, +OBI:SP:KERAV_1,1,"Keravel",48.377151,-4.371688,-1,0,OBI:SA:CTPKERAV_1,Europe/Paris,0,OBI, +OBI:SP:KERAV_2,1,"Keravel",48.377785,-4.372013,-1,0,OBI:SA:CTPKERAV_1,Europe/Paris,0,OBI, +OBI:SP:KERBER_1,1,"Kerbernard",48.407612,-4.459551,-1,0,OBI:SA:CTPKERBER_1,Europe/Paris,0,OBI, +OBI:SP:KERBER_2,1,"Kerbernard",48.40731,-4.459919,-1,0,OBI:SA:CTPKERBER_1,Europe/Paris,0,OBI, +OBI:SP:KERBON_1,1,"Kerbonne",48.382259,-4.51532,-1,0,OBI:SA:CTPKERBON_1,Europe/Paris,2,OBI, +OBI:SP:KERBON_2,1,"Kerbonne",48.382507,-4.51542,-1,0,OBI:SA:CTPKERBON_1,Europe/Paris,2,OBI, +OBI:SP:KERBR_1,1,"Kerbrat",48.367828,-4.366035,-1,0,OBI:SA:CTPKERBR_1,Europe/Paris,2,OBI, +OBI:SP:KERBR_2,1,"Kerbrat",48.367523,-4.366836,-1,0,OBI:SA:CTPKERBR_1,Europe/Paris,2,OBI, +OBI:SP:KERB_E_1,1,"Kerbonne Eglise",48.380547,-4.515746,-1,0,OBI:SA:CTPKERB_E_2,Europe/Paris,0,OBI, +OBI:SP:KERB_E_2,1,"Kerbonne Eglise",48.380543,-4.515704,-1,0,OBI:SA:CTPKERB_E_2,Europe/Paris,0,OBI, +OBI:SP:KERCAS_1,1,"Kercastrec",48.421341,-4.497688,-1,0,OBI:SA:CTPKERCAS_1,Europe/Paris,0,OBI, +OBI:SP:KERCAS_2,1,"Kercastrec",48.421124,-4.497279,-1,0,OBI:SA:CTPKERCAS_1,Europe/Paris,0,OBI, +OBI:SP:KERDAN_1,1,"Kerdangui",48.375629,-4.367537,-1,0,OBI:SA:CTPKERDAN_2,Europe/Paris,0,OBI, +OBI:SP:KERDAN_2,1,"Kerdangui",48.375587,-4.367017,-1,0,OBI:SA:CTPKERDAN_2,Europe/Paris,0,OBI, +OBI:SP:KERER_1,1,"Kerervern",48.425732,-4.441547,-1,0,OBI:SA:CTPKERER_1,Europe/Paris,0,OBI, +OBI:SP:KERFEU_1,1,"Kerfeunteun",48.388035,-4.52849,-1,0,OBI:SA:CTPKERFEU_2,Europe/Paris,2,OBI, +OBI:SP:KERFEU_2,1,"Kerfeunteun",48.388557,-4.528395,-1,0,OBI:SA:CTPKERFEU_2,Europe/Paris,2,OBI, +OBI:SP:KERGA_1,1,"Kergaradec",48.425198,-4.46713,-1,0,OBI:SA:CTPKERGA_1,Europe/Paris,2,OBI, +OBI:SP:KERGA_2,1,"Kergaradec",48.42461,-4.466809,-1,0,OBI:SA:CTPKERGA_1,Europe/Paris,2,OBI, +OBI:SP:KERGA_TA,1,"Kergaradec",48.424503,-4.466904,-1,0,OBI:SA:CTPKERGA_1,Europe/Paris,2,OBI, +OBI:SP:KERGA_TR,1,"Kergaradec",48.424789,-4.466968,-1,0,OBI:SA:CTPKERGA_1,Europe/Paris,2,OBI, +OBI:SP:KERGOM_1,1,"Kergompez",48.436581,-4.383411,-1,0,OBI:SA:CTPKERGOM_2,Europe/Paris,2,OBI, +OBI:SP:KERGOM_2,1,"Kergompez",48.43671,-4.383482,-1,0,OBI:SA:CTPKERGOM_2,Europe/Paris,2,OBI, +OBI:SP:KERGO_1,1,"Kergonan",48.422729,-4.457331,-1,0,OBI:SA:CTPKERGO_1,Europe/Paris,0,OBI, +OBI:SP:KERGRO_1,1,"Kergroas",48.43998,-4.475052,-1,0,OBI:SA:CTPKERGRO_1,Europe/Paris,0,OBI, +OBI:SP:KERGRO_2,1,"Kergroas",48.439625,-4.474776,-1,0,OBI:SA:CTPKERGRO_1,Europe/Paris,0,OBI, +OBI:SP:KERHAL_1,1,"Kerhallet",48.402935,-4.50837,-1,0,OBI:SA:CTPKERHAL_1,Europe/Paris,2,OBI, +OBI:SP:KERHAL_2,1,"Kerhallet",48.403084,-4.508295,-1,0,OBI:SA:CTPKERHAL_1,Europe/Paris,2,OBI, +OBI:SP:KERHOU_1,1,"Kerhourlo",48.366756,-4.586061,-1,0,OBI:SA:CTPKERHOU_2,Europe/Paris,2,OBI, +OBI:SP:KERHOU_2,1,"Kerhourlo",48.366955,-4.586346,-1,0,OBI:SA:CTPKERHOU_2,Europe/Paris,2,OBI, +OBI:SP:KERIGL_1,1,"Keriguel",48.402821,-4.398797,-1,0,OBI:SA:CTPKERIGL_1,Europe/Paris,2,OBI, +OBI:SP:KERIGL_2,1,"Keriguel",48.402832,-4.399218,-1,0,OBI:SA:CTPKERIGL_1,Europe/Paris,2,OBI, +OBI:SP:KERIGO_1,1,"Kerigonan",48.397846,-4.482347,-1,0,OBI:SA:CTPKERIGO_2,Europe/Paris,2,OBI, +OBI:SP:KERIGO_2,1,"Kerigonan",48.397369,-4.482976,-1,0,OBI:SA:CTPKERIGO_2,Europe/Paris,2,OBI, +OBI:SP:KERINA_2,1,"Kerinaouen",48.436508,-4.466557,-1,0,OBI:SA:CTPKERINA_2,Europe/Paris,0,OBI, +OBI:SP:KERINO_1,1,"Kerinou",48.4034,-4.488996,-1,0,OBI:SA:CTPKPLACE_1,Europe/Paris,2,OBI, +OBI:SP:KERINO_2,1,"Kerinou",48.403889,-4.488951,-1,0,OBI:SA:CTPKPLACE_1,Europe/Paris,2,OBI, +OBI:SP:KERION_1,1,"Kerionoc",48.42432,-4.560884,-1,0,OBI:SA:CTPKERION_1,Europe/Paris,2,OBI, +OBI:SP:KERION_2,1,"Kerionoc",48.424267,-4.561026,-1,0,OBI:SA:CTPKERION_1,Europe/Paris,2,OBI, +OBI:SP:KERISB_1,1,"Kérisbian",48.398746,-4.448843,-1,0,OBI:SA:CTPKERISB_1,Europe/Paris,2,OBI, +OBI:SP:KERISB_2,1,"Kérisbian",48.398788,-4.448903,-1,0,OBI:SA:CTPKERISB_1,Europe/Paris,2,OBI, +OBI:SP:KERJAN_1,1,"Kerjean",48.398773,-4.405145,-1,0,OBI:SA:CTPKERJAN_1,Europe/Paris,0,OBI, +OBI:SP:KERJA_1,1,"Kerjaouen",48.429073,-4.410674,-1,0,OBI:SA:CTPKERJA_1,Europe/Paris,0,OBI, +OBI:SP:KERJA_2,1,"Kerjaouen",48.42907,-4.410605,-1,0,OBI:SA:CTPKERJA_1,Europe/Paris,0,OBI, +OBI:SP:KERLA_TA,1,"Kerlaurent",48.418633,-4.453409,-1,0,OBI:SA:CTPKERLA_TA,Europe/Paris,2,OBI, +OBI:SP:KERLA_TR,1,"Kerlaurent",48.418663,-4.453345,-1,0,OBI:SA:CTPKERLA_TA,Europe/Paris,2,OBI, +OBI:SP:KERLOIS1,1,"Kerloïs",48.441986,-4.465806,-1,0,OBI:SA:CTPKERLOIS1,Europe/Paris,2,OBI, +OBI:SP:KERLOIS2,1,"Kerloïs",48.441772,-4.465562,-1,0,OBI:SA:CTPKERLOIS1,Europe/Paris,2,OBI, +OBI:SP:KERLOIS3,1,"Kerloïs",48.441853,-4.465003,-1,0,OBI:SA:CTPKERLOIS1,Europe/Paris,2,OBI, +OBI:SP:KERLOIS4,1,"Kerloïs scolaire",48.441967,-4.466252,-1,0,OBI:SA:CTPKERLOIS4,Europe/Paris,2,OBI, +OBI:SP:KERLOIS5,1,"Kerlois Botred",48.441505,-4.46569,-1,0,OBI:SA:CTPKERLOIS5,Europe/Paris,2,OBI, +OBI:SP:KERLO_A1,1,"Kerlois",48.441269,-4.465063,-1,0,OBI:SA:CTPKERLO_A1,Europe/Paris,2,OBI, +OBI:SP:KERMA_4,1,"Kermaria",48.417522,-4.476892,-1,0,OBI:SA:CTPKERMA_4,Europe/Paris,0,OBI, +OBI:SP:KERMA_5,1,"Kermaria",48.417503,-4.477013,-1,0,OBI:SA:CTPKERMA_4,Europe/Paris,0,OBI, +OBI:SP:KEROUM_1,1,"Keroumen",48.41227,-4.394499,-1,0,OBI:SA:CTPKEROUM_1,Europe/Paris,2,OBI, +OBI:SP:KEROUM_2,1,"Keroumen",48.412315,-4.394492,-1,0,OBI:SA:CTPKEROUM_1,Europe/Paris,2,OBI, +OBI:SP:KEROU_1,1,"Kerouriat",48.428036,-4.551964,-1,0,OBI:SA:CTPKEROU_1,Europe/Paris,2,OBI, +OBI:SP:KEROU_2,1,"Kerouriat",48.427746,-4.551695,-1,0,OBI:SA:CTPKEROU_1,Europe/Paris,2,OBI, +OBI:SP:KERRA_1,1,"Kerrarouz",48.373985,-4.594972,-1,0,OBI:SA:CTPKERRA_2,Europe/Paris,2,OBI, +OBI:SP:KERRA_2,1,"Kerrarouz",48.373707,-4.594352,-1,0,OBI:SA:CTPKERRA_2,Europe/Paris,2,OBI, +OBI:SP:KERVAL_1,1,"Kervallon",48.388542,-4.516524,-1,0,OBI:SA:CTPKERVAL_1,Europe/Paris,0,OBI, +OBI:SP:KERVAO_1,1,"Kervao",48.423038,-4.504364,-1,0,OBI:SA:CTPKERVAO_2,Europe/Paris,0,OBI, +OBI:SP:KERVAO_2,1,"Kervao",48.423061,-4.504326,-1,0,OBI:SA:CTPKERVAO_2,Europe/Paris,0,OBI, +OBI:SP:KERVEN_1,1,"Petit Kerven",48.432354,-4.500744,-1,0,OBI:SA:CTPKERVEN_2,Europe/Paris,2,OBI, +OBI:SP:KERVEN_2,1,"Petit Kerven",48.43314,-4.500115,-1,0,OBI:SA:CTPKERVEN_2,Europe/Paris,2,OBI, +OBI:SP:KERVIL_1,1,"Kervillerm",48.413803,-4.445135,-1,0,OBI:SA:CTPKERVIL_2,Europe/Paris,2,OBI, +OBI:SP:KERVIL_2,1,"Kervillerm",48.413799,-4.444741,-1,0,OBI:SA:CTPKERVIL_2,Europe/Paris,2,OBI, +OBI:SP:KERZES_1,1,"Kerzespez",48.432674,-4.559792,-1,0,OBI:SA:CTPKERZES_1,Europe/Paris,2,OBI, +OBI:SP:KERZES_2,1,"Kerzespez",48.433064,-4.56044,-1,0,OBI:SA:CTPKERZES_1,Europe/Paris,2,OBI, +OBI:SP:KERZUD_1,1,"Kerzudal",48.380894,-4.531317,-1,0,OBI:SA:CTPKERZUD_1,Europe/Paris,2,OBI, +OBI:SP:KERZUD_2,1,"Kerzudal",48.380764,-4.53157,-1,0,OBI:SA:CTPKERZUD_1,Europe/Paris,2,OBI, +OBI:SP:KERZU_1,1,"Kerzu",48.409809,-4.476224,-1,0,OBI:SA:CTPKERZU_2,Europe/Paris,0,OBI, +OBI:SP:KERZU_2,1,"Kerzu",48.410038,-4.476295,-1,0,OBI:SA:CTPKERZU_2,Europe/Paris,0,OBI, +OBI:SP:KGLEUZ_3,1,"Kermengleuz",48.424625,-4.564857,-1,0,OBI:SA:CTPKGLEUZ_3,Europe/Paris,2,OBI, +OBI:SP:KGLEUZ_4,1,"Kermengleuz",48.424576,-4.56481,-1,0,OBI:SA:CTPKGLEUZ_3,Europe/Paris,2,OBI, +OBI:SP:KGNAN_1,1,"Kergonan",48.411274,-4.456964,-1,0,OBI:SA:CTPKGNAN_1,Europe/Paris,2,OBI, +OBI:SP:KGNAN_2,1,"Kergonan",48.411343,-4.457651,-1,0,OBI:SA:CTPKGNAN_1,Europe/Paris,2,OBI, +OBI:SP:KGOAT_1,1,"Kergoat",48.401119,-4.509149,-1,0,OBI:SA:CTPKGOAT_2,Europe/Paris,2,OBI, +OBI:SP:KGOAT_2,1,"Kergoat",48.401108,-4.509662,-1,0,OBI:SA:CTPKGOAT_2,Europe/Paris,2,OBI, +OBI:SP:KGONAN_3,1,"Kergonan",48.422779,-4.457256,-1,0,OBI:SA:CTPKERGO_1,Europe/Paris,0,OBI, +OBI:SP:KGOUYA_1,1,"Kerargaouyat",48.375626,-4.52992,-1,0,OBI:SA:CTPKGOUYA_2,Europe/Paris,2,OBI, +OBI:SP:KGOUYA_2,1,"Kerargaouyat",48.375679,-4.529615,-1,0,OBI:SA:CTPKGOUYA_2,Europe/Paris,2,OBI, +OBI:SP:KGUEN_2,1,"Kerguen",48.424694,-4.459702,-1,0,OBI:SA:CTPKGUEN_2,Europe/Paris,2,OBI, +OBI:SP:KGUILO_1,1,"Bohars-Kerguillo",48.418484,-4.523561,-1,0,OBI:SA:CTPKGUILO_1,Europe/Paris,2,OBI, +OBI:SP:KGUILO_2,1,"Bohars-Kerguillo",48.41843,-4.523839,-1,0,OBI:SA:CTPKGUILO_1,Europe/Paris,2,OBI, +OBI:SP:KHN_B_1,1,"Kerhuon Bourg",48.408005,-4.398856,-1,0,OBI:SA:CTPKHN_B_2,Europe/Paris,2,OBI, +OBI:SP:KHN_B_2,1,"Kerhuon Bourg",48.407963,-4.398932,-1,0,OBI:SA:CTPKHN_B_2,Europe/Paris,2,OBI, +OBI:SP:KHN_M_1,1,"Kerhuon Mairie",48.407597,-4.396025,-1,0,OBI:SA:CTPKHN_M_1,Europe/Paris,2,OBI, +OBI:SP:KHN_M_2,1,"Kerhuon Mairie",48.407505,-4.395782,-1,0,OBI:SA:CTPKHN_M_1,Europe/Paris,2,OBI, +OBI:SP:KILRUS_1,1,"Kilrush",48.38179,-4.620695,-1,0,OBI:SA:CTPKILRUS_1,Europe/Paris,2,OBI, +OBI:SP:KLYCEE_1,1,"Kerichen Lycée",48.405296,-4.484595,-1,0,OBI:SA:CTPKLYCEE_1,Europe/Paris,0,OBI, +OBI:SP:KLYCEE_2,1,"Kerichen Lycée",48.405163,-4.48474,-1,0,OBI:SA:CTPKLYCEE_1,Europe/Paris,0,OBI, +OBI:SP:KMADEC_1,1,"Kermadec",48.402187,-4.41705,-1,0,OBI:SA:CTPKMADEC_1,Europe/Paris,2,OBI, +OBI:SP:KMADEC_2,1,"Kermadec",48.402203,-4.416957,-1,0,OBI:SA:CTPKMADEC_1,Europe/Paris,2,OBI, +OBI:SP:KMGUY_1,1,"Kermenguy",48.401184,-4.501066,-1,0,OBI:SA:CTPKMGUY_1,Europe/Paris,2,OBI, +OBI:SP:KMGUY_2,1,"Kermenguy",48.401649,-4.501723,-1,0,OBI:SA:CTPKMGUY_1,Europe/Paris,2,OBI, +OBI:SP:KNABAT_1,1,"Kernabat",48.375973,-4.538649,-1,0,OBI:SA:CTPKNABAT_2,Europe/Paris,0,OBI, +OBI:SP:KNABAT_2,1,"Kernabat",48.376041,-4.538671,-1,0,OBI:SA:CTPKNABAT_2,Europe/Paris,0,OBI, +OBI:SP:KNEIS_1,1,"Kerneïs",48.406715,-4.506331,-1,0,OBI:SA:CTPKNEIS_1,Europe/Paris,0,OBI, +OBI:SP:KNEIS_2,1,"Kernéis",48.40649,-4.50637,-1,0,OBI:SA:CTPKNEIS_2,Europe/Paris,0,OBI, +OBI:SP:KPLACE_1,1,"Kerinou",48.404099,-4.489575,-1,0,OBI:SA:CTPKPLACE_1,Europe/Paris,2,OBI, +OBI:SP:KRDREN_1,1,"Keraudren",48.426758,-4.476824,-1,0,OBI:SA:CTPKRDREN_1,Europe/Paris,2,OBI, +OBI:SP:KRDREN_2,1,"Keraudren",48.426632,-4.477418,-1,0,OBI:SA:CTPKRDREN_1,Europe/Paris,2,OBI, +OBI:SP:KROAZKER,1,"Kroaz Kervern",48.387192,-4.350855,-1,0,OBI:SA:CTPKROAZKER,Europe/Paris,0,OBI, +OBI:SP:KROUX_TA,1,"Keranroux",48.382336,-4.539392,-1,0,OBI:SA:CTPCESKRX_2,Europe/Paris,2,OBI, +OBI:SP:KROUX_TR,1,"Keranroux",48.382362,-4.539409,-1,0,OBI:SA:CTPCESKRX_2,Europe/Paris,2,OBI, +OBI:SP:KRQE_1,1,"Kéranquéré",48.379204,-4.530918,-1,0,OBI:SA:CTPKRQE_1,Europe/Paris,0,OBI, +OBI:SP:KRUCH_1,1,"Keruchen",48.427925,-4.471756,-1,0,OBI:SA:CTPKRUCH_1,Europe/Paris,2,OBI, +OBI:SP:KRUCH_2,1,"Keruchen",48.427837,-4.47203,-1,0,OBI:SA:CTPKRUCH_1,Europe/Paris,2,OBI, +OBI:SP:KRUHEL_1,1,"Kerhuel",48.4039,-4.411783,-1,0,OBI:SA:CTPKRUHEL_1,Europe/Paris,2,OBI, +OBI:SP:KRUHEL_2,1,"Kerhuel",48.403938,-4.41172,-1,0,OBI:SA:CTPKRUHEL_1,Europe/Paris,2,OBI, +OBI:SP:KVAREC_2,1,"Kergavarec",48.409687,-4.356407,-1,0,OBI:SA:CTPKVAREC_2,Europe/Paris,0,OBI, +OBI:SP:KVENAL_1,1,"Kervenal",48.381947,-4.349899,-1,0,OBI:SA:CTPKVENAL_1,Europe/Paris,2,OBI, +OBI:SP:KVENAL_2,1,"Kervenal",48.381901,-4.349907,-1,0,OBI:SA:CTPKVENAL_1,Europe/Paris,2,OBI, +OBI:SP:K_LESV_1,1,"Kerichen Lesven",48.406078,-4.479059,-1,0,OBI:SA:CTPK_LESV_1,Europe/Paris,2,OBI, +OBI:SP:K_LESV_2,1,"Kerichen Lesven",48.407162,-4.479539,-1,0,OBI:SA:CTPK_LESV_1,Europe/Paris,2,OBI, +OBI:SP:LACROS_2,1,"Lacrosse",48.428329,-4.461016,-1,0,OBI:SA:CTPLACROS_2,Europe/Paris,0,OBI, +OBI:SP:LAGADEA1,1,"Lagadec",48.428528,-4.468377,-1,0,OBI:SA:CTPLAGADER1,Europe/Paris,2,OBI, +OBI:SP:LAGADEA2,1,"Lagadec",48.427708,-4.467674,-1,0,OBI:SA:CTPLAGADER1,Europe/Paris,2,OBI, +OBI:SP:LAGADER1,1,"Lagadec",48.428463,-4.470227,-1,0,OBI:SA:CTPLAGADER1,Europe/Paris,2,OBI, +OBI:SP:LAGADER2,1,"Lagadec",48.427624,-4.467297,-1,0,OBI:SA:CTPLAGADER1,Europe/Paris,2,OBI, +OBI:SP:LAMBE_2,1,"Lambézellec",48.417187,-4.487017,-1,0,OBI:SA:CTPLAMB_R2,Europe/Paris,0,OBI, +OBI:SP:LAMB_R2,1,"Lambézellec",48.417191,-4.487112,-1,0,OBI:SA:CTPLAMB_R2,Europe/Paris,0,OBI, +OBI:SP:LAMOT_1,1,"Lamotte Picquet",48.394852,-4.492648,-1,0,OBI:SA:CTPLAMOT_1,Europe/Paris,2,OBI, +OBI:SP:LAMOT_2,1,"Lamotte Picquet",48.394779,-4.49291,-1,0,OBI:SA:CTPLAMOT_1,Europe/Paris,2,OBI, +OBI:SP:LANCEL_1,1,"Lancelot",48.4226,-4.556006,-1,0,OBI:SA:CTPLANCEL_1,Europe/Paris,2,OBI, +OBI:SP:LANCEL_2,1,"Lancelot",48.422565,-4.556001,-1,0,OBI:SA:CTPLANCEL_1,Europe/Paris,2,OBI, +OBI:SP:LANDAI_1,1,"Landais",48.388824,-4.50984,-1,0,OBI:SA:CTPLANDAI_1,Europe/Paris,2,OBI, +OBI:SP:LANDAI_2,1,"Landais",48.389099,-4.509009,-1,0,OBI:SA:CTPLANDAI_1,Europe/Paris,2,OBI, +OBI:SP:LANDAI_4,1,"Landais",48.388283,-4.508753,-1,0,OBI:SA:CTPLANDAI_1,Europe/Paris,2,OBI, +OBI:SP:LANDEL_1,1,"Landelle",48.396225,-4.43964,-1,0,OBI:SA:CTPLANDEL_1,Europe/Paris,2,OBI, +OBI:SP:LANDEL_2,1,"Landelle",48.396484,-4.440324,-1,0,OBI:SA:CTPLANDEL_1,Europe/Paris,2,OBI, +OBI:SP:LANDRE_1,1,"Landréan",48.378532,-4.618839,-1,0,OBI:SA:CTPLANDRE_1,Europe/Paris,0,OBI, +OBI:SP:LANDRE_2,1,"Landréan",48.379574,-4.618476,-1,0,OBI:SA:CTPLANDRE_1,Europe/Paris,0,OBI, +OBI:SP:LANGEV_1,1,"Langevin",48.401749,-4.498971,-1,0,OBI:SA:CTPLANGEV_2,Europe/Paris,2,OBI, +OBI:SP:LANGEV_2,1,"Langevin",48.402401,-4.49861,-1,0,OBI:SA:CTPLANGEV_2,Europe/Paris,2,OBI, +OBI:SP:LANING_1,1,"Lanninguer",48.387245,-4.537369,-1,0,OBI:SA:CTPLANING_1,Europe/Paris,2,OBI, +OBI:SP:LANING_2,1,"Lanninguer",48.387474,-4.537832,-1,0,OBI:SA:CTPLANING_1,Europe/Paris,2,OBI, +OBI:SP:LANINO_1,1,"Direction DCNS",48.3773,-4.508126,-1,0,OBI:SA:CTPLANINO_2,Europe/Paris,0,OBI, +OBI:SP:LANINO_2,1,"Direction DCNS",48.377678,-4.507539,-1,0,OBI:SA:CTPLANINO_2,Europe/Paris,0,OBI, +OBI:SP:LANNOC_1,1,"Lannoc",48.411358,-4.522719,-1,0,OBI:SA:CTPLANNOC_1,Europe/Paris,2,OBI, +OBI:SP:LANNOC_2,1,"Lannoc",48.411716,-4.522779,-1,0,OBI:SA:CTPLANNOC_1,Europe/Paris,2,OBI, +OBI:SP:LANRO_1,1,"Lanroze",48.420063,-4.491094,-1,0,OBI:SA:CTPLANRO_1,Europe/Paris,2,OBI, +OBI:SP:LANRO_2,1,"Lanroze",48.419861,-4.490715,-1,0,OBI:SA:CTPLANRO_1,Europe/Paris,2,OBI, +OBI:SP:LANTEL,1,"Lantel",48.452976,-4.470184,-1,0,OBI:SA:CTPLANTEL,Europe/Paris,2,OBI, +OBI:SP:LAVALL_1,1,"Lavallot",48.420689,-4.425518,-1,0,OBI:SA:CTPLAVALL_1,Europe/Paris,0,OBI, +OBI:SP:LAVALL_2,1,"Lavallot",48.421253,-4.424154,-1,0,OBI:SA:CTPLAVALL_1,Europe/Paris,0,OBI, +OBI:SP:LAVOIS_1,1,"Lavoisier",48.426956,-4.443631,-1,0,OBI:SA:CTPLAVOIS_1,Europe/Paris,0,OBI, +OBI:SP:LEBOT_1,1,"Le Bot Haut",48.401985,-4.459361,-1,0,OBI:SA:CTPLEBOT_1,Europe/Paris,2,OBI, +OBI:SP:LEBOT_2,1,"Le Bot Haut",48.401989,-4.459714,-1,0,OBI:SA:CTPLEBOT_1,Europe/Paris,2,OBI, +OBI:SP:LECOAT_1,1,"Le Coat",48.432194,-4.405219,-1,0,OBI:SA:CTPLECOAT_2,Europe/Paris,2,OBI, +OBI:SP:LECOAT_2,1,"Le Coat",48.432095,-4.405369,-1,0,OBI:SA:CTPLECOAT_2,Europe/Paris,2,OBI, +OBI:SP:LENOBL_1,1,"Le Nobletz",48.416904,-4.485827,-1,0,OBI:SA:CTPLENOBL_1,Europe/Paris,0,OBI, +OBI:SP:LENOBL_2,1,"Le Nobletz",48.416893,-4.485541,-1,0,OBI:SA:CTPLENOBL_1,Europe/Paris,0,OBI, +OBI:SP:LEREUN_1,1,"Le Reun",48.408604,-4.395653,-1,0,OBI:SA:CTPLEREUN_1,Europe/Paris,2,OBI, +OBI:SP:LE_PAS_1,1,"Le Passage",48.397877,-4.385204,-1,0,OBI:SA:CTPLE_PAS_1,Europe/Paris,0,OBI, +OBI:SP:LE_PAS_2,1,"Le Passage",48.397476,-4.385424,-1,0,OBI:SA:CTPLE_PAS_1,Europe/Paris,0,OBI, +OBI:SP:LIBE_1,1,"Libération",48.397068,-4.518429,-1,0,OBI:SA:CTPLIBE_1,Europe/Paris,2,OBI, +OBI:SP:LIBE_2,1,"Libération",48.396824,-4.518763,-1,0,OBI:SA:CTPLIBE_1,Europe/Paris,2,OBI, +OBI:SP:LIBE_TA,1,"Liberté",48.39032,-4.485145,-1,0,OBI:SA:CTPLIBE_TA,Europe/Paris,2,OBI, +OBI:SP:LIBE_TR,1,"Liberté",48.390358,-4.485137,-1,0,OBI:SA:CTPLIBE_TA,Europe/Paris,2,OBI, +OBI:SP:LIPPMAN2,1,"Lippman",48.42635,-4.457911,-1,0,OBI:SA:CTPLIPPMAN2,Europe/Paris,0,OBI, +OBI:SP:LOSCOA_1,1,"Loscoat",48.422218,-4.499389,-1,0,OBI:SA:CTPLOSCOA_1,Europe/Paris,2,OBI, +OBI:SP:LOSCOA_2,1,"Loscoat",48.422249,-4.499339,-1,0,OBI:SA:CTPLOSCOA_1,Europe/Paris,2,OBI, +OBI:SP:LOTTI_1,1,"Loti",48.382549,-4.50536,-1,0,OBI:SA:CTPLOTTI_2,Europe/Paris,0,OBI, +OBI:SP:LOTTI_2,1,"Loti",48.382729,-4.50648,-1,0,OBI:SA:CTPLOTTI_2,Europe/Paris,0,OBI, +OBI:SP:LOURCH_1,1,"Lourc'h",48.380306,-4.618302,-1,0,OBI:SA:CTPLOURCH_2,Europe/Paris,0,OBI, +OBI:SP:LOURCH_2,1,"Lourc'h",48.379639,-4.618457,-1,0,OBI:SA:CTPLOURCH_2,Europe/Paris,0,OBI, +OBI:SP:LTEY_1,1,"Lyautey",48.398491,-4.465316,-1,0,OBI:SA:CTPLTEY_2,Europe/Paris,2,OBI, +OBI:SP:LTEY_2,1,"Lyautey",48.398506,-4.465372,-1,0,OBI:SA:CTPLTEY_2,Europe/Paris,2,OBI, +OBI:SP:LUSSAC_1,1,"Gay Lussac",48.408001,-4.495276,-1,0,OBI:SA:CTPLUSSAC_2,Europe/Paris,2,OBI, +OBI:SP:LUSSAC_2,1,"Gay Lussac",48.40749,-4.494898,-1,0,OBI:SA:CTPLUSSAC_2,Europe/Paris,2,OBI, +OBI:SP:L_A,1,"Hôpital Morvan",48.39259,-4.487609,-1,0,OBI:SA:CTPL_R,Europe/Paris,2,OBI, +OBI:SP:L_R,1,"Hôpital Morvan",48.392773,-4.487837,-1,0,OBI:SA:CTPL_R,Europe/Paris,2,OBI, +OBI:SP:M,1,"Liberté Morvan",48.391399,-4.486628,-1,0,OBI:SA:CTPM,Europe/Paris,2,OBI, +OBI:SP:MAC_O_TA,1,"Mac Orlan",48.384739,-4.503912,-1,0,OBI:SA:CTPMAC_O_TA,Europe/Paris,2,OBI, +OBI:SP:MAC_O_TR,1,"Mac Orlan",48.384678,-4.50385,-1,0,OBI:SA:CTPMAC_O_TA,Europe/Paris,2,OBI, +OBI:SP:MAISSI_1,1,"Maissin",48.384109,-4.502922,-1,0,OBI:SA:CTPMAISSI_1,Europe/Paris,2,OBI, +OBI:SP:MAISSI_2,1,"Maissin",48.384033,-4.502844,-1,0,OBI:SA:CTPMAISSI_1,Europe/Paris,2,OBI, +OBI:SP:MALAKO_1,1,"Malakoff",48.39621,-4.484275,-1,0,OBI:SA:CTPMALAKO_2,Europe/Paris,2,OBI, +OBI:SP:MALAKO_2,1,"Malakoff",48.395962,-4.484066,-1,0,OBI:SA:CTPMALAKO_2,Europe/Paris,2,OBI, +OBI:SP:MALAKO_R,1,"Malakoff",48.396515,-4.483854,-1,0,OBI:SA:CTPMALAKO_2,Europe/Paris,2,OBI, +OBI:SP:MALEYS_1,1,"Maleyssie",48.3955,-4.460685,-1,0,OBI:SA:CTPMALEYS_2,Europe/Paris,2,OBI, +OBI:SP:MALEYS_2,1,"Maleyssie",48.396431,-4.460955,-1,0,OBI:SA:CTPMALEYS_2,Europe/Paris,2,OBI, +OBI:SP:MALMAN_1,1,"Malmanche",48.382462,-4.604471,-1,0,OBI:SA:CTPMALMAN_2,Europe/Paris,2,OBI, +OBI:SP:MALMAN_2,1,"Malmanche",48.382534,-4.604318,-1,0,OBI:SA:CTPMALMAN_2,Europe/Paris,2,OBI, +OBI:SP:MANET_1,1,"Manet",48.431496,-4.564559,-1,0,OBI:SA:CTPMANET_1,Europe/Paris,2,OBI, +OBI:SP:MANET_2,1,"Manet",48.431614,-4.564696,-1,0,OBI:SA:CTPMANET_1,Europe/Paris,2,OBI, +OBI:SP:MARREG_1,1,"Marréguès",48.430206,-4.500788,-1,0,OBI:SA:CTPMARREG_2,Europe/Paris,0,OBI, +OBI:SP:MARREG_2,1,"Marréguès",48.42992,-4.500683,-1,0,OBI:SA:CTPMARREG_2,Europe/Paris,0,OBI, +OBI:SP:MART1_1,1,"Martin",48.423542,-4.457315,-1,0,OBI:SA:CTPMART1_1,Europe/Paris,0,OBI, +OBI:SP:MAZE_1,1,"Mazé",48.396221,-4.403379,-1,0,OBI:SA:CTPMAZE_2,Europe/Paris,2,OBI, +OBI:SP:MAZE_2,1,"Mazé",48.396156,-4.403249,-1,0,OBI:SA:CTPMAZE_2,Europe/Paris,2,OBI, +OBI:SP:MBLANC_1,1,"Moulin Blanc",48.396763,-4.420739,-1,0,OBI:SA:CTPMBLANC_1,Europe/Paris,2,OBI, +OBI:SP:MBLANC_2,1,"Moulin Blanc",48.397125,-4.419593,-1,0,OBI:SA:CTPMBLANC_1,Europe/Paris,2,OBI, +OBI:SP:MBLANC_3,1,"Moulin Blanc",48.396088,-4.419256,-1,0,OBI:SA:CTPMBLANC_1,Europe/Paris,2,OBI, +OBI:SP:MDATQ_2,1,"Médiathèque",48.402367,-4.39138,-1,0,OBI:SA:CTPMEDATQ_1,Europe/Paris,2,OBI, +OBI:SP:MEDATQ_1,1,"Médiathèque",48.402542,-4.391998,-1,0,OBI:SA:CTPMEDATQ_1,Europe/Paris,2,OBI, +OBI:SP:MEHEUT_1,1,"Méheut",48.372025,-4.366195,-1,0,OBI:SA:CTPMEHEUT_1,Europe/Paris,0,OBI, +OBI:SP:MEHEUT_2,1,"Méheut",48.372398,-4.366933,-1,0,OBI:SA:CTPMEHEUT_1,Europe/Paris,0,OBI, +OBI:SP:MELOU_1,1,"Melou",48.391338,-4.461674,-1,0,OBI:SA:CTPMELOU_1,Europe/Paris,2,OBI, +OBI:SP:MENDY_1,1,"Le Mendy",48.394981,-4.409289,-1,0,OBI:SA:CTPMENDY_2,Europe/Paris,2,OBI, +OBI:SP:MENDY_2,1,"Le Mendy",48.394859,-4.409057,-1,0,OBI:SA:CTPMENDY_2,Europe/Paris,2,OBI, +OBI:SP:MENEZ_1,1,"Ty ar Menez",48.384201,-4.354848,-1,0,OBI:SA:CTPMENEZ_1,Europe/Paris,2,OBI, +OBI:SP:MENEZ_TA,1,"Menez Paul",48.406784,-4.467779,-1,0,OBI:SA:CTPMENEZ_TA,Europe/Paris,2,OBI, +OBI:SP:MENEZ_TR,1,"Menez Paul",48.406898,-4.467835,-1,0,OBI:SA:CTPMENEZ_TA,Europe/Paris,2,OBI, +OBI:SP:MERCEU_1,1,"Merceur",48.40947,-4.412232,-1,0,OBI:SA:CTPMERCEU_1,Europe/Paris,2,OBI, +OBI:SP:MERCEU_2,1,"Merceur",48.410412,-4.412761,-1,0,OBI:SA:CTPMERCEU_1,Europe/Paris,2,OBI, +OBI:SP:MESCOU_1,1,"Mescouezel",48.375973,-4.597092,-1,0,OBI:SA:CTPMESCOU_2,Europe/Paris,2,OBI, +OBI:SP:MESCOU_2,1,"Mescouezel",48.376312,-4.597286,-1,0,OBI:SA:CTPMESCOU_2,Europe/Paris,2,OBI, +OBI:SP:MESDOU_1,1,"Mesdoun",48.379234,-4.52698,-1,0,OBI:SA:CTPMESDOU_3,Europe/Paris,2,OBI, +OBI:SP:MESDOU_2,1,"Mesdoun",48.379295,-4.527015,-1,0,OBI:SA:CTPMESDOU_3,Europe/Paris,2,OBI, +OBI:SP:MESDOU_3,1,"Mesdoun",48.378765,-4.526525,-1,0,OBI:SA:CTPMESDOU_3,Europe/Paris,2,OBI, +OBI:SP:MESDOU_4,1,"Mesdoun",48.378746,-4.526523,-1,0,OBI:SA:CTPMESDOU_3,Europe/Paris,2,OBI, +OBI:SP:MESME_1,1,"Mesmerrien",48.420246,-4.467392,-1,0,OBI:SA:CTPMESME_2,Europe/Paris,2,OBI, +OBI:SP:MESME_2,1,"Mesmerrien",48.421093,-4.467421,-1,0,OBI:SA:CTPMESME_2,Europe/Paris,2,OBI, +OBI:SP:MESME_TA,1,"Mesmerrien",48.419674,-4.467616,-1,0,OBI:SA:CTPMESME_2,Europe/Paris,2,OBI, +OBI:SP:MESME_TR,1,"Mesmerrien",48.419918,-4.467594,-1,0,OBI:SA:CTPMESME_2,Europe/Paris,2,OBI, +OBI:SP:MESNOS_1,1,"Mesnos",48.390907,-4.536794,-1,0,OBI:SA:CTPMESNOS_2,Europe/Paris,2,OBI, +OBI:SP:MESNOS_2,1,"Mesnos",48.39093,-4.536756,-1,0,OBI:SA:CTPMESNOS_2,Europe/Paris,2,OBI, +OBI:SP:MESSIO_1,1,"Messioual",48.41964,-4.50865,-1,0,OBI:SA:CTPMESSIO_1,Europe/Paris,2,OBI, +OBI:SP:MESSI_1,1,"Messidou",48.400646,-4.48293,-1,0,OBI:SA:CTPMESSI_1,Europe/Paris,2,OBI, +OBI:SP:MESSI_2,1,"Messidou",48.400337,-4.482347,-1,0,OBI:SA:CTPMESSI_1,Europe/Paris,2,OBI, +OBI:SP:MIMOSA_1,1,"Mimosas",48.368168,-4.548972,-1,0,OBI:SA:CTPMIMOSA_2,Europe/Paris,2,OBI, +OBI:SP:MIMOSA_2,1,"Mimosas",48.367767,-4.548378,-1,0,OBI:SA:CTPMIMOSA_2,Europe/Paris,2,OBI, +OBI:SP:MIRAB_1,1,"Mirabeau",48.409912,-4.485509,-1,0,OBI:SA:CTPMIRAB_A1,Europe/Paris,2,OBI, +OBI:SP:MIRAB_2,1,"Mirabeau",48.410191,-4.485844,-1,0,OBI:SA:CTPMIRAB_A1,Europe/Paris,2,OBI, +OBI:SP:MIRAB_A1,1,"Mirabeau",48.40974,-4.485514,-1,0,OBI:SA:CTPMIRAB_A1,Europe/Paris,2,OBI, +OBI:SP:MOIGNE_1,1,"Le Moigne",48.383053,-4.509761,-1,0,OBI:SA:CTPMOIGNE_2,Europe/Paris,0,OBI, +OBI:SP:MOIGNE_2,1,"Le Moigne",48.383404,-4.508398,-1,0,OBI:SA:CTPMOIGNE_2,Europe/Paris,0,OBI, +OBI:SP:MONNET_1,1,"Monnet",48.438965,-4.40943,-1,0,OBI:SA:CTPMONNET_2,Europe/Paris,2,OBI, +OBI:SP:MONNET_2,1,"Monnet",48.439182,-4.408753,-1,0,OBI:SA:CTPMONNET_2,Europe/Paris,2,OBI, +OBI:SP:MONTAI_1,1,"Montaigne",48.403416,-4.480798,-1,0,OBI:SA:CTPMONTAI_1,Europe/Paris,2,OBI, +OBI:SP:MONTAI_2,1,"Montaigne",48.403183,-4.480917,-1,0,OBI:SA:CTPMONTAI_1,Europe/Paris,2,OBI, +OBI:SP:MONTB_1,1,"Fort Montbarey",48.378643,-4.544352,-1,0,OBI:SA:CTPMONTB_3,Europe/Paris,2,OBI, +OBI:SP:MONTB_2,1,"Fort Montbarey",48.378426,-4.544201,-1,0,OBI:SA:CTPMONTB_3,Europe/Paris,2,OBI, +OBI:SP:MONTB_3,1,"Fort Montbarey",48.378216,-4.543943,-1,0,OBI:SA:CTPMONTB_3,Europe/Paris,2,OBI, +OBI:SP:MOQUET_1,1,"Moquet",48.380188,-4.599345,-1,0,OBI:SA:CTPMOQUET_1,Europe/Paris,2,OBI, +OBI:SP:MOQUET_2,1,"Moquet",48.380146,-4.599651,-1,0,OBI:SA:CTPMOQUET_1,Europe/Paris,2,OBI, +OBI:SP:MOUCH_1,1,"Mouchotte",48.386322,-4.507113,-1,0,OBI:SA:CTPMOUCH_2,Europe/Paris,2,OBI, +OBI:SP:MOUCH_2,1,"Mouchotte",48.386246,-4.507144,-1,0,OBI:SA:CTPMOUCH_2,Europe/Paris,2,OBI, +OBI:SP:MOUETT_1,1,"Mouettes",48.381622,-4.617868,-1,0,OBI:SA:CTPMOUETT_2,Europe/Paris,2,OBI, +OBI:SP:MOUETT_2,1,"Mouettes",48.381584,-4.617754,-1,0,OBI:SA:CTPMOUETT_2,Europe/Paris,2,OBI, +OBI:SP:MOULIN,1,"Le Moulin",48.446434,-4.470633,-1,0,OBI:SA:CTPMOULIN,Europe/Paris,0,OBI, +OBI:SP:MOULT_1,1,"Le Moult",48.401657,-4.483401,-1,0,OBI:SA:CTPMOULT_1,Europe/Paris,2,OBI, +OBI:SP:MOULT_2,1,"Le Moult",48.401848,-4.482938,-1,0,OBI:SA:CTPMOULT_1,Europe/Paris,2,OBI, +OBI:SP:MUSEEM_1,1,"Musée Marine",48.382915,-4.492428,-1,0,OBI:SA:CTPMUSEEM_1,Europe/Paris,2,OBI, +OBI:SP:MUSEEM_2,1,"Musée Marine",48.382862,-4.492367,-1,0,OBI:SA:CTPMUSEEM_1,Europe/Paris,2,OBI, +OBI:SP:MYOSO_1,1,"Myosotis",48.373112,-4.589085,-1,0,OBI:SA:CTPMYOSO_2,Europe/Paris,2,OBI, +OBI:SP:MYOSO_2,1,"Myosotis",48.372936,-4.589644,-1,0,OBI:SA:CTPMYOSO_2,Europe/Paris,2,OBI, +OBI:SP:M_ANGE_1,1,"Michel-Ange",48.393494,-4.519694,-1,0,OBI:SA:CTPM_ANGE_2,Europe/Paris,2,OBI, +OBI:SP:M_ANGE_2,1,"Michel-Ange",48.393452,-4.519635,-1,0,OBI:SA:CTPM_ANGE_2,Europe/Paris,2,OBI, +OBI:SP:NERVAL_1,1,"De Nerval",48.375385,-4.535889,-1,0,OBI:SA:CTPNERVAL_1,Europe/Paris,2,OBI, +OBI:SP:NERVAL_2,1,"De Nerval",48.37569,-4.536241,-1,0,OBI:SA:CTPNERVAL_1,Europe/Paris,2,OBI, +OBI:SP:NIEPCE_1,1,"Niepce",48.424805,-4.483091,-1,0,OBI:SA:CTPNIEPCE_2,Europe/Paris,2,OBI, +OBI:SP:NIEPCE_2,1,"Niepce",48.424812,-4.48316,-1,0,OBI:SA:CTPNIEPCE_2,Europe/Paris,2,OBI, +OBI:SP:NORMAN_1,1,"Normandie",48.402195,-4.509737,-1,0,OBI:SA:CTPNORMAN_2,Europe/Paris,0,OBI, +OBI:SP:NORMAN_2,1,"Normandie",48.402172,-4.510005,-1,0,OBI:SA:CTPNORMAN_2,Europe/Paris,0,OBI, +OBI:SP:N_1,1,"Liberté Frézier",48.391468,-4.485322,-1,0,OBI:SA:CTPN_1,Europe/Paris,2,OBI, +OBI:SP:OCEANO_2,1,"Océanopolis",48.39114,-4.435999,-1,0,OBI:SA:CTPOCEANO_2,Europe/Paris,2,OBI, +OBI:SP:OCTROI_1,1,"Octroi",48.39658,-4.474919,-1,0,OBI:SA:CTPOCTROI_2,Europe/Paris,2,OBI, +OBI:SP:OCTROI_2,1,"Octroi",48.396713,-4.475112,-1,0,OBI:SA:CTPOCTROI_2,Europe/Paris,2,OBI, +OBI:SP:OCTRO_TA,1,"Octroi",48.39658,-4.476219,-1,0,OBI:SA:CTPOCTROI_2,Europe/Paris,2,OBI, +OBI:SP:OCTRO_TR,1,"Octroi",48.396633,-4.476199,-1,0,OBI:SA:CTPOCTROI_2,Europe/Paris,2,OBI, +OBI:SP:ORVES_1,1,"D'Est. d'Orves",48.390594,-4.465439,-1,0,OBI:SA:CTPORVES_1,Europe/Paris,2,OBI, +OBI:SP:ORVES_2,1,"D'Est. d'Orves",48.390629,-4.465146,-1,0,OBI:SA:CTPORVES_1,Europe/Paris,2,OBI, +OBI:SP:PAF_1,1,"Poul ar Feunteun",48.424053,-4.485976,-1,0,OBI:SA:CTPPAF_1,Europe/Paris,2,OBI, +OBI:SP:PAF_2,1,"Poul ar Feunteun",48.424168,-4.485868,-1,0,OBI:SA:CTPPAF_1,Europe/Paris,2,OBI, +OBI:SP:PALAR_1,1,"Palaren",48.396736,-4.435803,-1,0,OBI:SA:CTPPALAR_2,Europe/Paris,2,OBI, +OBI:SP:PALAR_2,1,"Palaren",48.396675,-4.436053,-1,0,OBI:SA:CTPPALAR_2,Europe/Paris,2,OBI, +OBI:SP:PALAR_3,1,"Palaren",48.39727,-4.436401,-1,0,OBI:SA:CTPPALAR_2,Europe/Paris,2,OBI, +OBI:SP:PALAR_4,1,"Palaren",48.397121,-4.436165,-1,0,OBI:SA:CTPPALAR_2,Europe/Paris,2,OBI, +OBI:SP:PAMIS_1,1,"Pont Amis",48.456501,-4.457403,-1,0,OBI:SA:CTPPAMIS_1,Europe/Paris,0,OBI, +OBI:SP:PASTEU_1,1,"Pasteur",48.400051,-4.489032,-1,0,OBI:SA:CTPPASTEU_2,Europe/Paris,2,OBI, +OBI:SP:PASTEU_2,1,"Pasteur",48.400822,-4.488943,-1,0,OBI:SA:CTPPASTEU_2,Europe/Paris,2,OBI, +OBI:SP:PATINO_1,1,"Patinoire",48.403404,-4.508228,-1,0,OBI:SA:CTPPATINO_2,Europe/Paris,2,OBI, +OBI:SP:PATINO_2,1,"Patinoire",48.403584,-4.50836,-1,0,OBI:SA:CTPPATINO_2,Europe/Paris,2,OBI, +OBI:SP:PAULET_1,1,"Paulet",48.415321,-4.475317,-1,0,OBI:SA:CTPPAULET_2,Europe/Paris,0,OBI, +OBI:SP:PAULET_2,1,"Paulet",48.414841,-4.475187,-1,0,OBI:SA:CTPPAULET_2,Europe/Paris,0,OBI, +OBI:SP:PCHAT1,1,"Port du Château",48.381973,-4.489528,-1,0,OBI:SA:CTPPCHAT1,Europe/Paris,2,OBI, +OBI:SP:PCHAT2,1,"Port du Château",48.382057,-4.489593,-1,0,OBI:SA:CTPPCHAT1,Europe/Paris,2,OBI, +OBI:SP:PCOMME1,1,"Port de Commerce",48.385361,-4.476504,-1,0,OBI:SA:CTPPCOMME1,Europe/Paris,2,OBI, +OBI:SP:PCOMME2,1,"Port de Commerce",48.385326,-4.476662,-1,0,OBI:SA:CTPPCOMME1,Europe/Paris,2,OBI, +OBI:SP:PDALAR_1,1,"Pen-an-Dalar",48.43573,-4.389472,-1,0,OBI:SA:CTPPDALAR_1,Europe/Paris,2,OBI, +OBI:SP:PDALAR_2,1,"Pen-an-Dalar",48.435749,-4.388172,-1,0,OBI:SA:CTPPDALAR_1,Europe/Paris,2,OBI, +OBI:SP:PEGUY_1,1,"Péguy",48.401993,-4.488839,-1,0,OBI:SA:CTPPEGUY_1,Europe/Paris,0,OBI, +OBI:SP:PEGUY_2,1,"Péguy",48.401798,-4.488895,-1,0,OBI:SA:CTPPEGUY_1,Europe/Paris,0,OBI, +OBI:SP:PENARC_1,1,"Pen-ar-C'hleuz",48.417282,-4.482121,-1,0,OBI:SA:CTPPENARC_1,Europe/Paris,2,OBI, +OBI:SP:PENARC_2,1,"Pen-ar-C'hleuz",48.417107,-4.482641,-1,0,OBI:SA:CTPPENARC_1,Europe/Paris,2,OBI, +OBI:SP:PENARC_B,1,"Pen-ar-c'hleuz",48.416092,-4.483945,-1,0,OBI:SA:CTPPENARC_B,Europe/Paris,2,OBI, +OBI:SP:PENARC_T,1,"pen-ar-c'hleuz",48.416977,-4.481296,-1,0,OBI:SA:CTPPENARC_T,Europe/Paris,2,OBI, +OBI:SP:PENFLD1,1,"Penfeld",48.410007,-4.532722,-1,0,OBI:SA:CTPPENFLD1,Europe/Paris,2,OBI, +OBI:SP:PENFLD2,1,"Penfeld",48.410431,-4.532113,-1,0,OBI:SA:CTPPENFLD1,Europe/Paris,2,OBI, +OBI:SP:PENGUE_1,1,"Penguerec",48.444157,-4.474581,-1,0,OBI:SA:CTPPENGUE_1,Europe/Paris,0,OBI, +OBI:SP:PENGUE_2,1,"Penguerec",48.444134,-4.474699,-1,0,OBI:SA:CTPPENGUE_1,Europe/Paris,0,OBI, +OBI:SP:PENHO_1,1,"Penhoat",48.455952,-4.452679,-1,0,OBI:SA:CTPPENHO_1,Europe/Paris,0,OBI, +OBI:SP:PENHU_1,1,"Penhuel",48.381931,-4.612069,-1,0,OBI:SA:CTPPENHU_1,Europe/Paris,0,OBI, +OBI:SP:PENHU_2,1,"Penhuel",48.381927,-4.611987,-1,0,OBI:SA:CTPPENHU_1,Europe/Paris,0,OBI, +OBI:SP:PENNOC_1,1,"Croas-ar-Pennoc",48.425709,-4.550708,-1,0,OBI:SA:CTPPENNOC_2,Europe/Paris,2,OBI, +OBI:SP:PENNOC_2,1,"Croas-ar-Pennoc",48.425785,-4.550759,-1,0,OBI:SA:CTPPENNOC_2,Europe/Paris,2,OBI, +OBI:SP:PERROS_1,1,"Perros",48.424896,-4.494167,-1,0,OBI:SA:CTPPERROS_1,Europe/Paris,0,OBI, +OBI:SP:PERROS_2,1,"Perros",48.425034,-4.492721,-1,0,OBI:SA:CTPPERROS_1,Europe/Paris,0,OBI, +OBI:SP:PEUPLI_2,1,"Peupliers",48.454014,-4.463293,-1,0,OBI:SA:CTPPEUPLI_2,Europe/Paris,2,OBI, +OBI:SP:PFLEUR_1,1,"Panier Fleuri",48.379803,-4.539952,-1,0,OBI:SA:CTPPFLEUR_1,Europe/Paris,2,OBI, +OBI:SP:PFLEUR_2,1,"Panier Fleuri",48.379704,-4.538611,-1,0,OBI:SA:CTPPFLEUR_1,Europe/Paris,2,OBI, +OBI:SP:PGARE_1,1,"Petite Gare",48.431435,-4.510849,-1,0,OBI:SA:CTPPGARE_1,Europe/Paris,2,OBI, +OBI:SP:PGARE_2,1,"Petite Gare",48.431309,-4.510994,-1,0,OBI:SA:CTPPGARE_1,Europe/Paris,2,OBI, +OBI:SP:PGARE_3,1,"Petite Gare",48.431389,-4.510978,-1,0,OBI:SA:CTPPGARE_1,Europe/Paris,2,OBI, +OBI:SP:PGOUES2,1,"Porte Gouesnou",48.430801,-4.468173,-1,0,OBI:SA:CTPPGOUES2,Europe/Paris,2,OBI, +OBI:SP:PGOUESPK,1,"Porte Gouesnou",48.430904,-4.467169,-1,0,OBI:SA:CTPPGOUES2,Europe/Paris,2,OBI, +OBI:SP:PGOUES_5,1,"Porte Gouesnou",48.430885,-4.466922,-1,0,OBI:SA:CTPPGOUES2,Europe/Paris,2,OBI, +OBI:SP:PGOUES_A,1,"Porte Gouesnou",48.430923,-4.467931,-1,0,OBI:SA:CTPPGOUES2,Europe/Paris,2,OBI, +OBI:SP:PGROA_1,1,"Pors ar Groas",48.447968,-4.476448,-1,0,OBI:SA:CTPPGROA_2,Europe/Paris,0,OBI, +OBI:SP:PGROA_2,1,"Pors ar Groas",48.449108,-4.476204,-1,0,OBI:SA:CTPPGROA_2,Europe/Paris,0,OBI, +OBI:SP:PGUEAR_1,1,"Pen-ar-Guear",48.429752,-4.513258,-1,0,OBI:SA:CTPPGUEAR_1,Europe/Paris,2,OBI, +OBI:SP:PGUEAR_2,1,"Pen-ar-Guear",48.429356,-4.51402,-1,0,OBI:SA:CTPPGUEAR_1,Europe/Paris,2,OBI, +OBI:SP:PGUENA_2,1,"Père Gwenaël",48.381187,-4.368495,-1,0,OBI:SA:CTPPGUENA_2,Europe/Paris,0,OBI, +OBI:SP:PGUINA2,1,"Poulguinan",48.424755,-4.392314,-1,0,OBI:SA:CTPPGUINA2,Europe/Paris,0,OBI, +OBI:SP:PICCAR_1,1,"Piccard",48.362133,-4.564009,-1,0,OBI:SA:CTPPICCAR_1,Europe/Paris,0,OBI, +OBI:SP:PICCAR_2,1,"Piccard",48.362106,-4.564127,-1,0,OBI:SA:CTPPICCAR_1,Europe/Paris,0,OBI, +OBI:SP:PILIE_TA,1,"Pilier Rouge",48.398842,-4.472679,-1,0,OBI:SA:CTPPILIE_TA,Europe/Paris,2,OBI, +OBI:SP:PILIE_TR,1,"Pilier Rouge",48.39893,-4.472718,-1,0,OBI:SA:CTPPILIE_TA,Europe/Paris,2,OBI, +OBI:SP:PISCI_1,1,"Piscine",48.368782,-4.518522,-1,0,OBI:SA:CTPPISCI_2,Europe/Paris,0,OBI, +OBI:SP:PISCI_2,1,"Piscine",48.368729,-4.518475,-1,0,OBI:SA:CTPPISCI_2,Europe/Paris,0,OBI, +OBI:SP:PLCALV_1,1,"Calvaire",48.374111,-4.368873,-1,0,OBI:SA:CTPPLCALV_1,Europe/Paris,0,OBI, +OBI:SP:PLCALV_2,1,"Calvaire",48.374557,-4.370028,-1,0,OBI:SA:CTPPLCALV_1,Europe/Paris,0,OBI, +OBI:SP:PLCOM_1,1,"Commerce",48.371521,-4.590513,-1,0,OBI:SA:CTPPLCOM_1,Europe/Paris,0,OBI, +OBI:SP:PLCOM_2,1,"Commerce",48.371502,-4.590578,-1,0,OBI:SA:CTPPLCOM_1,Europe/Paris,0,OBI, +OBI:SP:PLEDAN_1,1,"Prat-Ledan",48.383873,-4.50514,-1,0,OBI:SA:CTPPLEDAN_1,Europe/Paris,2,OBI, +OBI:SP:PLEDAN_4,1,"Prat Lédan",48.384151,-4.505013,-1,0,OBI:SA:CTPPLEDAN_4,Europe/Paris,2,OBI, +OBI:SP:PLSTR_TA,1,"Place Strasbourg",48.402065,-4.46791,-1,0,OBI:SA:CTPST_JJ,Europe/Paris,2,OBI, +OBI:SP:PLSTR_TR,1,"Place Strasbourg",48.402088,-4.468007,-1,0,OBI:SA:CTPST_JJ,Europe/Paris,2,OBI, +OBI:SP:PLZMAI_1,1,"Plouzané Mairie",48.380291,-4.601581,-1,0,OBI:SA:CTPPLZMAI_1,Europe/Paris,0,OBI, +OBI:SP:PLZMAI_2,1,"Plouzané Mairie",48.38031,-4.601624,-1,0,OBI:SA:CTPPLZMAI_1,Europe/Paris,0,OBI, +OBI:SP:PLZMAI_5,1,"Plouzané Mairie",48.379787,-4.600498,-1,0,OBI:SA:CTPPLZMAI_1,Europe/Paris,0,OBI, +OBI:SP:PLZ_1,1,"Plouzané Bourg",48.38184,-4.622287,-1,0,OBI:SA:CTPPLZ_1,Europe/Paris,0,OBI, +OBI:SP:PMENEZ_1,1,"Pen-ar-Menez",48.409077,-4.490741,-1,0,OBI:SA:CTPPMENEZ_2,Europe/Paris,0,OBI, +OBI:SP:PMENEZ_2,1,"Pen-ar-Menez",48.408947,-4.490738,-1,0,OBI:SA:CTPPMENEZ_2,Europe/Paris,0,OBI, +OBI:SP:PMESDO_1,1,"Porte de Mesdoun",48.373596,-4.523557,-1,0,OBI:SA:CTPPMESDO_1,Europe/Paris,0,OBI, +OBI:SP:PMESDO_2,1,"Porte de Mesdoun",48.373455,-4.523633,-1,0,OBI:SA:CTPPMESDO_1,Europe/Paris,0,OBI, +OBI:SP:PNEUF_1,1,"Pont Neuf",48.409328,-4.456901,-1,0,OBI:SA:CTPPNEUF_2,Europe/Paris,0,OBI, +OBI:SP:PNEUF_2,1,"Pont Neuf",48.408897,-4.457469,-1,0,OBI:SA:CTPPNEUF_2,Europe/Paris,0,OBI, +OBI:SP:POINTE_1,1,"Restau de la Pointe",48.379932,-4.50163,-1,0,OBI:SA:CTPPOINTE_1,Europe/Paris,0,OBI, +OBI:SP:POINTE_2,1,"Restau de la Pointe",48.379631,-4.501116,-1,0,OBI:SA:CTPPOINTE_1,Europe/Paris,0,OBI, +OBI:SP:POLYG_1,1,"Polygone",48.38662,-4.518127,-1,0,OBI:SA:CTPPOLYG_1,Europe/Paris,2,OBI, +OBI:SP:POLYG_2,1,"Polygone",48.386703,-4.518531,-1,0,OBI:SA:CTPPOLYG_1,Europe/Paris,2,OBI, +OBI:SP:POLYG_TA,1,"Polygone",48.387241,-4.518711,-1,0,OBI:SA:CTPPOLYG_1,Europe/Paris,2,OBI, +OBI:SP:POLYG_TR,1,"Polygone",48.387291,-4.51869,-1,0,OBI:SA:CTPPOLYG_1,Europe/Paris,2,OBI, +OBI:SP:POMPI_1,1,"Pompidou",48.441498,-4.400007,-1,0,OBI:SA:CTPPOMPI_1,Europe/Paris,2,OBI, +OBI:SP:POMPI_2,1,"Pompidou",48.441498,-4.400183,-1,0,OBI:SA:CTPPOMPI_1,Europe/Paris,2,OBI, +OBI:SP:PONTA_TA,1,"Pontanézen",48.415058,-4.471732,-1,0,OBI:SA:CTPPONTA_TA,Europe/Paris,2,OBI, +OBI:SP:PONTA_TR,1,"Pontanézen",48.41515,-4.471716,-1,0,OBI:SA:CTPPONTA_TA,Europe/Paris,2,OBI, +OBI:SP:PORTZI_1,1,"Portzic",48.37022,-4.55229,-1,0,OBI:SA:CTPPORTZI_1,Europe/Paris,0,OBI, +OBI:SP:PORTZI_2,1,"Portzic",48.370308,-4.552451,-1,0,OBI:SA:CTPPORTZI_1,Europe/Paris,0,OBI, +OBI:SP:PORTZM_1,1,"Portzmoguer",48.393242,-4.494402,-1,0,OBI:SA:CTPPORTZM_2,Europe/Paris,2,OBI, +OBI:SP:PORTZM_2,1,"Portzmoguer",48.393398,-4.494829,-1,0,OBI:SA:CTPPORTZM_2,Europe/Paris,2,OBI, +OBI:SP:PORT_P_1,1,"Port Plaisance",48.394695,-4.434062,-1,0,OBI:SA:CTPPORT_P_1,Europe/Paris,2,OBI, +OBI:SP:PORT_P_2,1,"Port Plaisance",48.394985,-4.433937,-1,0,OBI:SA:CTPPORT_P_1,Europe/Paris,2,OBI, +OBI:SP:POSTE4_1,1,"Poste 4",48.384647,-4.497695,-1,0,OBI:SA:CTPPOSTE4_2,Europe/Paris,0,OBI, +OBI:SP:POSTE4_2,1,"Poste 4",48.384754,-4.497722,-1,0,OBI:SA:CTPPOSTE4_2,Europe/Paris,0,OBI, +OBI:SP:POULED_1,1,"Pouléder",48.378994,-4.532801,-1,0,OBI:SA:CTPPOULED_2,Europe/Paris,0,OBI, +OBI:SP:POULED_2,1,"Pouléder",48.379078,-4.532785,-1,0,OBI:SA:CTPPOULED_2,Europe/Paris,0,OBI, +OBI:SP:POULL_1,1,"Poull-Pren",48.427021,-4.567127,-1,0,OBI:SA:CTPPOULL_2,Europe/Paris,0,OBI, +OBI:SP:POULL_2,1,"Poull-Pren",48.426975,-4.567134,-1,0,OBI:SA:CTPPOULL_2,Europe/Paris,0,OBI, +OBI:SP:PRAJEN_1,1,"Du Prajen",48.424679,-4.502532,-1,0,OBI:SA:CTPPRAJEN_2,Europe/Paris,2,OBI, +OBI:SP:PRAJEN_2,1,"Du Prajen",48.424507,-4.502875,-1,0,OBI:SA:CTPPRAJEN_2,Europe/Paris,2,OBI, +OBI:SP:PRAT_P,1,"Prat Pip",48.442749,-4.415209,-1,0,OBI:SA:CTPPRAT_P,Europe/Paris,0,OBI, +OBI:SP:PREVER_1,1,"Prévert",48.384403,-4.597683,-1,0,OBI:SA:CTPPREVER_1,Europe/Paris,2,OBI, +OBI:SP:PREVER_2,1,"Prévert",48.384583,-4.597693,-1,0,OBI:SA:CTPPREVER_1,Europe/Paris,2,OBI, +OBI:SP:PRINCE_1,1,"Prince Russe",48.395325,-4.399198,-1,0,OBI:SA:CTPPRINCE_1,Europe/Paris,2,OBI, +OBI:SP:PRINCE_2,1,"Prince Russe",48.395344,-4.399661,-1,0,OBI:SA:CTPPRINCE_1,Europe/Paris,2,OBI, +OBI:SP:PROVEN_1,1,"Provence",48.407616,-4.514785,-1,0,OBI:SA:CTPPROVEN_3,Europe/Paris,2,OBI, +OBI:SP:PROVEN_2,1,"Provence",48.407467,-4.514698,-1,0,OBI:SA:CTPPROVEN_3,Europe/Paris,2,OBI, +OBI:SP:PROVEN_3,1,"Provence",48.407604,-4.514784,-1,0,OBI:SA:CTPPROVEN_3,Europe/Paris,2,OBI, +OBI:SP:PSNCF_1,1,"Pont SNCF",48.407036,-4.393716,-1,0,OBI:SA:CTPPSNCF_1,Europe/Paris,2,OBI, +OBI:SP:PSNCF_2,1,"Pont SNCF",48.406876,-4.393641,-1,0,OBI:SA:CTPPSNCF_1,Europe/Paris,2,OBI, +OBI:SP:PTGOU_TR,1,"Porte Gouesnou",48.430965,-4.46814,-1,0,OBI:SA:CTPPGOUES2,Europe/Paris,2,OBI, +OBI:SP:PTGUI_1A,1,"Porte de Guipavas",48.419006,-4.444564,-1,0,OBI:SA:CTPPTGUI_1A,Europe/Paris,2,OBI, +OBI:SP:PTGUI_TA,1,"Porte Guipavas",48.419151,-4.444434,-1,0,OBI:SA:CTPPTGUI_TA,Europe/Paris,2,OBI, +OBI:SP:PTPLZ_TA,1,"Porte Plouzané",48.376244,-4.553464,-1,0,OBI:SA:CTPP_PLZ_1,Europe/Paris,2,OBI, +OBI:SP:PTPLZ_TR,1,"Porte Plouzané",48.376255,-4.553561,-1,0,OBI:SA:CTPP_PLZ_1,Europe/Paris,2,OBI, +OBI:SP:PVALY_2,1,"Pen-ar-Valy",48.424511,-4.519065,-1,0,OBI:SA:CTPPVALY_2,Europe/Paris,2,OBI, +OBI:SP:PYROTE_1,1,"Pyrotechnie",48.402332,-4.386659,-1,0,OBI:SA:CTPPYROTE_2,Europe/Paris,0,OBI, +OBI:SP:PYROTE_2,1,"Pyrotechnie",48.402508,-4.386723,-1,0,OBI:SA:CTPPYROTE_2,Europe/Paris,0,OBI, +OBI:SP:P_BERT_1,1,"Paul Bert",48.38139,-4.513987,-1,0,OBI:SA:CTPP_BERT_2,Europe/Paris,0,OBI, +OBI:SP:P_BERT_2,1,"Paul Bert",48.381348,-4.51333,-1,0,OBI:SA:CTPP_BERT_2,Europe/Paris,0,OBI, +OBI:SP:P_PLZ_1,1,"Porte Plouzané",48.376244,-4.553275,-1,0,OBI:SA:CTPP_PLZ_1,Europe/Paris,2,OBI, +OBI:SP:P_PLZ_2,1,"Porte Plouzané",48.376396,-4.553431,-1,0,OBI:SA:CTPP_PLZ_1,Europe/Paris,2,OBI, +OBI:SP:QUARTZ_1,1,"Liberté Quartz",48.389549,-4.485112,-1,0,OBI:SA:CTPQUARTZ_1,Europe/Paris,2,OBI, +OBI:SP:QUARTZ_2,1,"Liberté Quartz",48.389709,-4.485146,-1,0,OBI:SA:CTPQUARTZ_1,Europe/Paris,2,OBI, +OBI:SP:QUESTE_1,1,"Questel",48.398838,-4.531753,-1,0,OBI:SA:CTPQUESTE_2,Europe/Paris,0,OBI, +OBI:SP:QUESTE_2,1,"Questel",48.399078,-4.531622,-1,0,OBI:SA:CTPQUESTE_2,Europe/Paris,0,OBI, +OBI:SP:QUILBI_1,1,"Quilbignon",48.378983,-4.534709,-1,0,OBI:SA:CTPQUILBI_2,Europe/Paris,0,OBI, +OBI:SP:QUILBI_2,1,"Quilbignon",48.379269,-4.533948,-1,0,OBI:SA:CTPQUILBI_2,Europe/Paris,0,OBI, +OBI:SP:RAMPES_1,1,"Rampes",48.383099,-4.487724,-1,0,OBI:SA:CTPRAMPES_1,Europe/Paris,0,OBI, +OBI:SP:RAMPES_2,1,"Rampes",48.383095,-4.487453,-1,0,OBI:SA:CTPRAMPES_1,Europe/Paris,0,OBI, +OBI:SP:RCKERE_2,1,"Roc'h-Kerezen",48.382519,-4.377728,-1,0,OBI:SA:CTPRKERE_1,Europe/Paris,2,OBI, +OBI:SP:RECOUV_1,1,"Recouvrance",48.384335,-4.499646,-1,0,OBI:SA:CTPRECOUV_2,Europe/Paris,2,OBI, +OBI:SP:RECOUV_2,1,"Recouvrance",48.384087,-4.499301,-1,0,OBI:SA:CTPRECOUV_2,Europe/Paris,2,OBI, +OBI:SP:RECOU_TA,1,"Recouvrance",48.384155,-4.499351,-1,0,OBI:SA:CTPRECOUV_2,Europe/Paris,2,OBI, +OBI:SP:RECOU_TR,1,"Recouvrance",48.384201,-4.499167,-1,0,OBI:SA:CTPRECOUV_2,Europe/Paris,2,OBI, +OBI:SP:REPUBL_1,1,"République",48.38905,-4.478259,-1,0,OBI:SA:CTPREPUBL_2,Europe/Paris,2,OBI, +OBI:SP:REPUBL_2,1,"République",48.38892,-4.479244,-1,0,OBI:SA:CTPREPUBL_2,Europe/Paris,2,OBI, +OBI:SP:RESIST_1,1,"Résistance",48.406628,-4.389814,-1,0,OBI:SA:CTPRESIST_1,Europe/Paris,0,OBI, +OBI:SP:RESIST_2,1,"Résistance",48.406445,-4.38956,-1,0,OBI:SA:CTPRESIST_1,Europe/Paris,0,OBI, +OBI:SP:RESTIC_1,1,"Restic",48.426727,-4.493498,-1,0,OBI:SA:CTPRESTIC_2,Europe/Paris,0,OBI, +OBI:SP:RESTIC_2,1,"Restic",48.427124,-4.492764,-1,0,OBI:SA:CTPRESTIC_2,Europe/Paris,0,OBI, +OBI:SP:REUN_1,1,"Reun-ar-C'hoat",48.412956,-4.397611,-1,0,OBI:SA:CTPREUN_2,Europe/Paris,2,OBI, +OBI:SP:REUN_2,1,"Reun-ar-C'hoat",48.413483,-4.397611,-1,0,OBI:SA:CTPREUN_2,Europe/Paris,2,OBI, +OBI:SP:RIBEUZ_1,1,"Ribeuze",48.441536,-4.396011,-1,0,OBI:SA:CTPRIBEUZ_1,Europe/Paris,0,OBI, +OBI:SP:RIBEUZ_2,1,"Ribeuze",48.441624,-4.396199,-1,0,OBI:SA:CTPRIBEUZ_1,Europe/Paris,0,OBI, +OBI:SP:RICHEL_1,1,"Richelieu",48.393925,-4.474667,-1,0,OBI:SA:CTPRICHEL_2,Europe/Paris,2,OBI, +OBI:SP:RICHEL_2,1,"Richelieu",48.394409,-4.474852,-1,0,OBI:SA:CTPRICHEL_2,Europe/Paris,2,OBI, +OBI:SP:RKERE_1,1,"Roc'h-Kerezen",48.382439,-4.377921,-1,0,OBI:SA:CTPRKERE_1,Europe/Paris,2,OBI, +OBI:SP:ROBERV_3,1,"Roberval",48.427998,-4.570009,-1,0,OBI:SA:CTPROBERV_3,Europe/Paris,0,OBI, +OBI:SP:RODIN_1,1,"Rodin",48.397339,-4.464773,-1,0,OBI:SA:CTPRODIN_2,Europe/Paris,2,OBI, +OBI:SP:RODIN_2,1,"Rodin",48.397205,-4.464742,-1,0,OBI:SA:CTPRODIN_2,Europe/Paris,2,OBI, +OBI:SP:RODY_1,1,"Rody",48.397942,-4.432234,-1,0,OBI:SA:CTPRODY_1,Europe/Paris,2,OBI, +OBI:SP:RODY_2,1,"Rody",48.397961,-4.432074,-1,0,OBI:SA:CTPRODY_1,Europe/Paris,2,OBI, +OBI:SP:ROSTAN_1,1,"Rostand",48.419136,-4.495731,-1,0,OBI:SA:CTPROSTAN_1,Europe/Paris,2,OBI, +OBI:SP:ROSTAN_2,1,"Rostand",48.418964,-4.495614,-1,0,OBI:SA:CTPROSTAN_1,Europe/Paris,2,OBI, +OBI:SP:ROUDOU_1,1,"Roudous",48.430252,-4.560014,-1,0,OBI:SA:CTPROUDOU_1,Europe/Paris,2,OBI, +OBI:SP:ROUDOU_2,1,"Roudous",48.42992,-4.559387,-1,0,OBI:SA:CTPROUDOU_1,Europe/Paris,2,OBI, +OBI:SP:ROZ_V_1,1,"Roz-Vian",48.413784,-4.522631,-1,0,OBI:SA:CTPROZ_V_1,Europe/Paris,2,OBI, +OBI:SP:ROZ_V_2,1,"Roz-Vian",48.414112,-4.522579,-1,0,OBI:SA:CTPROZ_V_1,Europe/Paris,2,OBI, +OBI:SP:RTE_BH_1,1,"Rte de Bohars",48.436298,-4.508679,-1,0,OBI:SA:CTPRTE_BH_2,Europe/Paris,2,OBI, +OBI:SP:RTE_BH_2,1,"Rte de Bohars",48.436062,-4.509028,-1,0,OBI:SA:CTPRTE_BH_2,Europe/Paris,2,OBI, +OBI:SP:RTE_QP_1,1,"Rte de Quimper",48.401192,-4.450232,-1,0,OBI:SA:CTPRTE_QP_2,Europe/Paris,2,OBI, +OBI:SP:RTE_QP_2,1,"Rte de Quimper",48.401398,-4.44931,-1,0,OBI:SA:CTPRTE_QP_2,Europe/Paris,2,OBI, +OBI:SP:RUQUELEN,1,"Ruquelen",48.435192,-4.368168,-1,0,OBI:SA:CTPRUQUELEN,Europe/Paris,0,OBI, +OBI:SP:R_GUIL_1,1,"Route de Guilers",48.387985,-4.512331,-1,0,OBI:SA:CTPR_GUIL_1,Europe/Paris,2,OBI, +OBI:SP:R_GUIL_2,1,"Route de Guilers",48.388088,-4.512074,-1,0,OBI:SA:CTPR_GUIL_1,Europe/Paris,2,OBI, +OBI:SP:SALANG_1,1,"Salanguis",48.417843,-4.430301,-1,0,OBI:SA:CTPSALANG_1,Europe/Paris,0,OBI, +OBI:SP:SALANG_2,1,"Salanguis",48.417812,-4.430053,-1,0,OBI:SA:CTPSALANG_1,Europe/Paris,0,OBI, +OBI:SP:SALAUN_1,1,"Salaun",48.372536,-4.379858,-1,0,OBI:SA:CTPSALAUN_1,Europe/Paris,2,OBI, +OBI:SP:SALAUN_2,1,"Salaun",48.372425,-4.379911,-1,0,OBI:SA:CTPSALAUN_1,Europe/Paris,2,OBI, +OBI:SP:SANE_1,1,"Sané",48.389709,-4.474022,-1,0,OBI:SA:CTPSANE_1,Europe/Paris,2,OBI, +OBI:SP:SANE_2,1,"Sané",48.389702,-4.474523,-1,0,OBI:SA:CTPSANE_1,Europe/Paris,2,OBI, +OBI:SP:SANQUE_1,1,"Sanquer",48.392113,-4.47416,-1,0,OBI:SA:CTPSANQUE_2,Europe/Paris,2,OBI, +OBI:SP:SANQUE_2,1,"Sanquer",48.391487,-4.474024,-1,0,OBI:SA:CTPSANQUE_2,Europe/Paris,2,OBI, +OBI:SP:SAUPIN_1,1,"Anse Saupin",48.400875,-4.515541,-1,0,OBI:SA:CTPSAUPIN_1,Europe/Paris,2,OBI, +OBI:SP:SAUPIN_2,1,"Anse Saupin",48.400867,-4.515512,-1,0,OBI:SA:CTPSAUPIN_1,Europe/Paris,2,OBI, +OBI:SP:SCHARL,1,"Saint Charles",48.433975,-4.397233,-1,0,OBI:SA:CTPSCHARL,Europe/Paris,0,OBI, +OBI:SP:SCHUB_1,1,"Schubert",48.39183,-4.523324,-1,0,OBI:SA:CTPSCHUB_2,Europe/Paris,2,OBI, +OBI:SP:SCHUB_2,1,"Schubert",48.391964,-4.52322,-1,0,OBI:SA:CTPSCHUB_2,Europe/Paris,2,OBI, +OBI:SP:SCHUM_1,1,"Schuman",48.39822,-4.407444,-1,0,OBI:SA:CTPSCHUM_1,Europe/Paris,0,OBI, +OBI:SP:SEGUIN_1,1,"Seguin",48.416656,-4.524134,-1,0,OBI:SA:CTPSEGUIN_1,Europe/Paris,2,OBI, +OBI:SP:SEGUIN_2,1,"Seguin",48.417011,-4.52437,-1,0,OBI:SA:CTPSEGUIN_1,Europe/Paris,2,OBI, +OBI:SP:SEGUR_1,1,"Ségur",48.39925,-4.492261,-1,0,OBI:SA:CTPSEGUR_1,Europe/Paris,2,OBI, +OBI:SP:SEGUR_2,1,"Ségur",48.399368,-4.492724,-1,0,OBI:SA:CTPSEGUR_1,Europe/Paris,2,OBI, +OBI:SP:SIAM_TA,1,"Siam",48.388199,-4.488892,-1,0,OBI:SA:CTPSIAM_TA,Europe/Paris,2,OBI, +OBI:SP:SIAM_TR,1,"Siam",48.388298,-4.488892,-1,0,OBI:SA:CTPSIAM_TA,Europe/Paris,2,OBI, +OBI:SP:SMART_TA,1,"Saint Martin",48.394138,-4.480047,-1,0,OBI:SA:CTPSMART_TA,Europe/Paris,2,OBI, +OBI:SP:SMART_TR,1,"Saint Martin",48.394211,-4.480003,-1,0,OBI:SA:CTPSMART_TA,Europe/Paris,2,OBI, +OBI:SP:SNLE_1,1,"Bassin 8",48.379951,-4.505195,-1,0,OBI:SA:CTPSNLE_2,Europe/Paris,2,OBI, +OBI:SP:SNLE_2,1,"Bassin 8",48.379875,-4.505131,-1,0,OBI:SA:CTPSNLE_2,Europe/Paris,2,OBI, +OBI:SP:SOMPY_1,1,"Sommepy",48.403717,-4.486963,-1,0,OBI:SA:CTPSOMPY_2,Europe/Paris,2,OBI, +OBI:SP:SOMPY_2,1,"Sommepy",48.403751,-4.487131,-1,0,OBI:SA:CTPSOMPY_2,Europe/Paris,2,OBI, +OBI:SP:SOURCE_1,1,"La Source",48.430256,-4.556434,-1,0,OBI:SA:CTPSOURCE_1,Europe/Paris,2,OBI, +OBI:SP:SOURCE_2,1,"La Source",48.430206,-4.55575,-1,0,OBI:SA:CTPSOURCE_1,Europe/Paris,2,OBI, +OBI:SP:SPA,1,"Spadium Parc",48.396915,-4.422154,-1,0,OBI:SA:CTPSPA,Europe/Paris,2,OBI, +OBI:SP:SPROUX_1,1,"St Pol Roux",48.399853,-4.481065,-1,0,OBI:SA:CTPSPROUX_1,Europe/Paris,0,OBI, +OBI:SP:STANG_1,1,"Stang-Alar",48.410912,-4.454424,-1,0,OBI:SA:CTPSTANG_1,Europe/Paris,0,OBI, +OBI:SP:STANG_2,1,"Stang-Alar",48.411064,-4.454185,-1,0,OBI:SA:CTPSTANG_1,Europe/Paris,0,OBI, +OBI:SP:STANNE_1,1,"Plage Ste Anne",48.361763,-4.554317,-1,0,OBI:SA:CTPSTANNE_1,Europe/Paris,2,OBI, +OBI:SP:STANNE_2,1,"Plage Ste Anne",48.361538,-4.554558,-1,0,OBI:SA:CTPSTANNE_1,Europe/Paris,2,OBI, +OBI:SP:STELLE_2,1,"Stelle",48.378757,-4.599738,-1,0,OBI:SA:CTPSTELLE_2,Europe/Paris,2,OBI, +OBI:SP:STELOI_1,1,"St-Eloi",48.435608,-4.394771,-1,0,OBI:SA:CTPSTELOI_1,Europe/Paris,2,OBI, +OBI:SP:STELOI_2,1,"St-Eloi",48.435593,-4.395149,-1,0,OBI:SA:CTPSTELOI_1,Europe/Paris,2,OBI, +OBI:SP:STEND_1,1,"Stendhal",48.376488,-4.532011,-1,0,OBI:SA:CTPSTEND_2,Europe/Paris,0,OBI, +OBI:SP:STEND_2,1,"Stendhal",48.376541,-4.532018,-1,0,OBI:SA:CTPSTEND_2,Europe/Paris,0,OBI, +OBI:SP:STFBLE1,1,"Stade F.Le Blé",48.402267,-4.462705,-1,0,OBI:SA:CTPSTFBLE1,Europe/Paris,2,OBI, +OBI:SP:STFBLE2,1,"Stade F.Le Blé",48.402267,-4.46368,-1,0,OBI:SA:CTPSTFBLE1,Europe/Paris,2,OBI, +OBI:SP:STMARC_1,1,"St Marc",48.398453,-4.453752,-1,0,OBI:SA:CTPSTMARC_2,Europe/Paris,2,OBI, +OBI:SP:STMARC_2,1,"St Marc",48.398579,-4.454703,-1,0,OBI:SA:CTPSTMARC_2,Europe/Paris,2,OBI, +OBI:SP:STONGE_1,1,"Saintonge",48.403557,-4.514551,-1,0,OBI:SA:CTPSTONGE_2,Europe/Paris,2,OBI, +OBI:SP:STONGE_2,1,"Saintonge",48.403145,-4.514836,-1,0,OBI:SA:CTPSTONGE_2,Europe/Paris,2,OBI, +OBI:SP:STPIER_1,1,"St Pierre",48.379681,-4.537294,-1,0,OBI:SA:CTPSTPIER_1,Europe/Paris,2,OBI, +OBI:SP:STPIER_2,1,"St Pierre",48.379608,-4.535442,-1,0,OBI:SA:CTPSTPIER_1,Europe/Paris,2,OBI, +OBI:SP:STVINC_1,1,"St Vincent",48.41898,-4.488037,-1,0,OBI:SA:CTPSTVINC_2,Europe/Paris,2,OBI, +OBI:SP:STVINC_2,1,"St Vincent",48.418907,-4.487988,-1,0,OBI:SA:CTPSTVINC_2,Europe/Paris,2,OBI, +OBI:SP:ST_1,1,"Strasbourg",48.403111,-4.466419,-1,0,OBI:SA:CTPST_2,Europe/Paris,2,OBI, +OBI:SP:ST_2,1,"Strasbourg",48.403111,-4.466406,-1,0,OBI:SA:CTPST_2,Europe/Paris,2,OBI, +OBI:SP:ST_AL_2,1,"Strasbourg louppe",48.402561,-4.467486,-1,0,OBI:SA:CTPST_AL_2,Europe/Paris,2,OBI, +OBI:SP:ST_AL_3,1,"Strasbourg",48.402885,-4.468301,-1,0,OBI:SA:CTPST_2,Europe/Paris,2,OBI, +OBI:SP:ST_EX_TA,1,"Saint-Exupéry",48.387283,-4.504367,-1,0,OBI:SA:CTPST_EX_TA,Europe/Paris,2,OBI, +OBI:SP:ST_EX_TR,1,"Saint-Exupery",48.387165,-4.504365,-1,0,OBI:SA:CTPST_EX_TR,Europe/Paris,2,OBI, +OBI:SP:ST_JJ,1,"Place Strasbourg",48.401947,-4.467975,-1,0,OBI:SA:CTPST_JJ,Europe/Paris,2,OBI, +OBI:SP:ST_LUC_1,1,"St Luc",48.403301,-4.484307,-1,0,OBI:SA:CTPST_LUC_1,Europe/Paris,2,OBI, +OBI:SP:ST_LUC_2,1,"St Luc",48.402966,-4.484371,-1,0,OBI:SA:CTPST_LUC_1,Europe/Paris,2,OBI, +OBI:SP:ST_R,1,"Place Strasbourg",48.402119,-4.46736,-1,0,OBI:SA:CTPST_JJ,Europe/Paris,2,OBI, +OBI:SP:ST_RQ_1,1,"Strasbourg",48.402473,-4.465876,-1,0,OBI:SA:CTPST_2,Europe/Paris,2,OBI, +OBI:SP:ST_RQ_2,1,"Strasbourg",48.402409,-4.465921,-1,0,OBI:SA:CTPST_2,Europe/Paris,2,OBI, +OBI:SP:ST_VA_1,1,"Strasbourg Valmy",48.401299,-4.466969,-1,0,OBI:SA:CTPST_VA_1,Europe/Paris,2,OBI, +OBI:SP:ST_VA_2,1,"Strasbourg Valmy",48.401089,-4.467037,-1,0,OBI:SA:CTPST_VA_1,Europe/Paris,2,OBI, +OBI:SP:SYCOM_1,1,"Sycomores",48.377377,-4.586575,-1,0,OBI:SA:CTPSYVOM_2,Europe/Paris,0,OBI, +OBI:SP:SYVOM_2,1,"Sycomores",48.377327,-4.586339,-1,0,OBI:SA:CTPSYVOM_2,Europe/Paris,0,OBI, +OBI:SP:TAINE_1,1,"Taine",48.377747,-4.538368,-1,0,OBI:SA:CTPTAINE_1,Europe/Paris,0,OBI, +OBI:SP:TAINE_2,1,"Taine",48.377544,-4.538585,-1,0,OBI:SA:CTPTAINE_1,Europe/Paris,0,OBI, +OBI:SP:TALLIN_1,1,"Tallinn",48.38966,-4.525383,-1,0,OBI:SA:CTPTALLIN_2,Europe/Paris,2,OBI, +OBI:SP:TALLIN_2,1,"Tallinn",48.389412,-4.524673,-1,0,OBI:SA:CTPTALLIN_2,Europe/Paris,2,OBI, +OBI:SP:TARENT_1,1,"Tarente",48.405323,-4.510622,-1,0,OBI:SA:CTPTARENT_1,Europe/Paris,2,OBI, +OBI:SP:TARENT_2,1,"Tarente",48.405468,-4.510762,-1,0,OBI:SA:CTPTARENT_1,Europe/Paris,2,OBI, +OBI:SP:TARTU_1,1,"Tartu",48.383686,-4.527701,-1,0,OBI:SA:CTPTARTU_1,Europe/Paris,2,OBI, +OBI:SP:TARTU_2,1,"Tartu",48.383949,-4.527844,-1,0,OBI:SA:CTPTARTU_1,Europe/Paris,2,OBI, +OBI:SP:TECHNO_1,1,"Technopôle",48.360378,-4.569574,-1,0,OBI:SA:CTPTECHNO_1,Europe/Paris,2,OBI, +OBI:SP:TECHNO_2,1,"Technopôle",48.360332,-4.571274,-1,0,OBI:SA:CTPTECHNO_1,Europe/Paris,2,OBI, +OBI:SP:THIB_1,1,"Thibaudet",48.375259,-4.5414,-1,0,OBI:SA:CTPTHIB_1,Europe/Paris,2,OBI, +OBI:SP:THIB_2,1,"Thibaudet",48.375622,-4.541867,-1,0,OBI:SA:CTPTHIB_1,Europe/Paris,2,OBI, +OBI:SP:THOUAR_1,1,"Dupetit Thouars",48.379303,-4.520365,-1,0,OBI:SA:CTPTHOUAR_2,Europe/Paris,2,OBI, +OBI:SP:THOUAR_2,1,"Dupetit Thouars",48.379154,-4.520318,-1,0,OBI:SA:CTPTHOUAR_2,Europe/Paris,2,OBI, +OBI:SP:THUDON_3,1,"St Thudon",48.441231,-4.422906,-1,0,OBI:SA:CTPTHUDON_3,Europe/Paris,0,OBI, +OBI:SP:TI_RUZ_1,1,"Ti-Ruz",48.422836,-4.421756,-1,0,OBI:SA:CTPTI_RUZ_2,Europe/Paris,0,OBI, +OBI:SP:TI_RUZ_2,1,"Ti-Ruz",48.423504,-4.420202,-1,0,OBI:SA:CTPTI_RUZ_2,Europe/Paris,0,OBI, +OBI:SP:TOULL_1,1,"Toull-ar-Ranig",48.367855,-4.372566,-1,0,OBI:SA:CTPTOULL_1,Europe/Paris,2,OBI, +OBI:SP:TOULL_2,1,"Toull-ar-Ranig",48.367783,-4.37257,-1,0,OBI:SA:CTPTOULL_1,Europe/Paris,2,OBI, +OBI:SP:TOURB_1,1,"Tourbian",48.413273,-4.449973,-1,0,OBI:SA:CTPTOURB_1,Europe/Paris,2,OBI, +OBI:SP:TOURB_2,1,"Tourbian",48.413151,-4.450201,-1,0,OBI:SA:CTPTOURB_1,Europe/Paris,2,OBI, +OBI:SP:TREORN_1,1,"Tréornou",48.411133,-4.498967,-1,0,OBI:SA:CTPTREORN_1,Europe/Paris,2,OBI, +OBI:SP:TREORN_2,1,"Tréornou",48.411179,-4.498498,-1,0,OBI:SA:CTPTREORN_1,Europe/Paris,2,OBI, +OBI:SP:TRINIT_1,1,"La Trinité",48.370682,-4.585945,-1,0,OBI:SA:CTPTRINIT_1,Europe/Paris,0,OBI, +OBI:SP:TRINIT_2,1,"La Trinité",48.370708,-4.585786,-1,0,OBI:SA:CTPTRINIT_1,Europe/Paris,0,OBI, +OBI:SP:TY_ARM_1,1,"Ty Armor",48.383518,-4.393747,-1,0,OBI:SA:CTPTY_ARM_2,Europe/Paris,2,OBI, +OBI:SP:TY_ARM_2,1,"Ty Armor",48.383606,-4.391767,-1,0,OBI:SA:CTPTY_ARM_2,Europe/Paris,2,OBI, +OBI:SP:TY_YAN_1,1,"Ty-Yann",48.389717,-4.439215,-1,0,OBI:SA:CTPTY_YAN_1,Europe/Paris,2,OBI, +OBI:SP:T_PRIG_1,1,"Prigent",48.396927,-4.529523,-1,0,OBI:SA:CTPT_PRIG_1,Europe/Paris,2,OBI, +OBI:SP:T_PRIG_2,1,"Prigent",48.397278,-4.530016,-1,0,OBI:SA:CTPT_PRIG_1,Europe/Paris,2,OBI, +OBI:SP:UNIVER_1,1,"Universités",48.398907,-4.494873,-1,0,OBI:SA:CTPUNIVER_2,Europe/Paris,2,OBI, +OBI:SP:UNIVER_2,1,"Universités",48.399387,-4.495504,-1,0,OBI:SA:CTPUNIVER_2,Europe/Paris,2,OBI, +OBI:SP:VALI_H_2,1,"Vali Hir",48.386955,-4.526098,-1,0,OBI:SA:CTPVAL_HI_5,Europe/Paris,2,OBI, +OBI:SP:VALI_TA,1,"Vali Hir",48.386963,-4.52675,-1,0,OBI:SA:CTPVAL_HI_5,Europe/Paris,2,OBI, +OBI:SP:VALI_TR,1,"Vali Hir",48.386997,-4.526646,-1,0,OBI:SA:CTPVAL_HI_5,Europe/Paris,2,OBI, +OBI:SP:VALLEE_1,1,"Vallée Verte",48.437031,-4.472836,-1,0,OBI:SA:CTPVALLEE_2,Europe/Paris,0,OBI, +OBI:SP:VALLEE_2,1,"Vallée Verte",48.437054,-4.473056,-1,0,OBI:SA:CTPVALLEE_2,Europe/Paris,0,OBI, +OBI:SP:VAL_HI_5,1,"Vali Hir",48.386993,-4.525914,-1,0,OBI:SA:CTPVAL_HI_5,Europe/Paris,2,OBI, +OBI:SP:VENDEE_1,1,"Vendée",48.40435,-4.511036,-1,0,OBI:SA:CTPVENDEE_2,Europe/Paris,0,OBI, +OBI:SP:VENDEE_2,1,"Vendée",48.404369,-4.511147,-1,0,OBI:SA:CTPVENDEE_2,Europe/Paris,0,OBI, +OBI:SP:VENTURA,1,"Ventura",48.395203,-4.533741,-1,0,OBI:SA:CTPVENTURA,Europe/Paris,0,OBI, +OBI:SP:VILNE_1,1,"Villeneuve",48.408909,-4.467432,-1,0,OBI:SA:CTPVILNE_1,Europe/Paris,2,OBI, +OBI:SP:VILNE_2,1,"Villeneuve",48.408901,-4.467079,-1,0,OBI:SA:CTPVILNE_1,Europe/Paris,2,OBI, +OBI:SP:VIZAC,1,"Vizac",48.436008,-4.405725,-1,0,OBI:SA:CTPVIZAC,Europe/Paris,2,OBI, +OBI:SP:VIZAC_2,1,"Vizac",48.436348,-4.407017,-1,0,OBI:SA:CTPVIZAC,Europe/Paris,2,OBI, +OBI:SP:WAGNER_1,1,"Wagner",48.394859,-4.528479,-1,0,OBI:SA:CTPWAGNER_2,Europe/Paris,2,OBI, +OBI:SP:WAGNER_2,1,"Wagner",48.394993,-4.52851,-1,0,OBI:SA:CTPWAGNER_2,Europe/Paris,2,OBI, +OBI:SP:WARSP_1,1,"Warspite",48.390106,-4.521621,-1,0,OBI:SA:CTPWARSP_1,Europe/Paris,2,OBI, +OBI:SP:WARSP_2,1,"Warspite",48.390148,-4.521531,-1,0,OBI:SA:CTPWARSP_1,Europe/Paris,2,OBI, +OBI:SP:WATTO_1,1,"Watteau",48.412796,-4.473727,-1,0,OBI:SA:CTPWATTO_2,Europe/Paris,0,OBI, +OBI:SP:WATTO_2,1,"Watteau",48.412914,-4.473702,-1,0,OBI:SA:CTPWATTO_2,Europe/Paris,0,OBI, +OBI:SP:YPRES_1,1,"Ypres",48.373932,-4.526933,-1,0,OBI:SA:CTPYPRES_2,Europe/Paris,2,OBI, +OBI:SP:YPRES_2,1,"Ypres",48.373512,-4.527271,-1,0,OBI:SA:CTPYPRES_2,Europe/Paris,2,OBI, +ONA:SP:ABDU1,1,"Abel Durand",47.220157,-1.603392,-1,0,ONA:SA:ABDU,Europe/Paris,2,ONA, +ONA:SP:ABLA1,1,"Avenue Blanche",47.229731,-1.589421,-1,0,ONA:SA:ABLA,Europe/Paris,2,ONA, +ONA:SP:ABLA2,1,"Avenue Blanche",47.22956,-1.589144,-1,0,ONA:SA:ABLA,Europe/Paris,2,ONA, +ONA:SP:ABOL1,1,"Adrienne Bolland",47.268012,-1.476589,-1,0,ONA:SA:ABOL,Europe/Paris,0,ONA, +ONA:SP:ABOL2,1,"Adrienne Bolland",47.267913,-1.476846,-1,0,ONA:SA:ABOL,Europe/Paris,0,ONA, +ONA:SP:ACHA1,1,"Angle Chaillou",47.269777,-1.571852,-1,0,ONA:SA:ACHA,Europe/Paris,0,ONA, +ONA:SP:ACHA2,1,"Angle Chaillou",47.269768,-1.572116,-1,0,ONA:SA:ACHA,Europe/Paris,0,ONA, +ONA:SP:ADBO1,1,"Audubon",47.214101,-1.723375,-1,0,ONA:SA:ADBO,Europe/Paris,2,ONA, +ONA:SP:ADBO2,1,"Audubon",47.214016,-1.723236,-1,0,ONA:SA:ADBO,Europe/Paris,2,ONA, +ONA:SP:ADEL1,1,"Aimé Delrue",47.209258,-1.550381,-1,0,ONA:SA:ADEL,Europe/Paris,2,ONA, +ONA:SP:ADEL2,1,"Aimé Delrue",47.208997,-1.550098,-1,0,ONA:SA:ADEL,Europe/Paris,2,ONA, +ONA:SP:ADPI1,1,"Avenue des Pins",47.253261,-1.596704,-1,0,ONA:SA:ADPI,Europe/Paris,2,ONA, +ONA:SP:ADPI3,1,"Avenue des Pins",47.253678,-1.597661,-1,0,ONA:SA:ADPI,Europe/Paris,2,ONA, +ONA:SP:AECL1,1,"Aéroclub",47.159355,-1.598259,-1,0,ONA:SA:AECL,Europe/Paris,0,ONA, +ONA:SP:AECL2,1,"Aéroclub",47.159364,-1.597996,-1,0,ONA:SA:AECL,Europe/Paris,0,ONA, +ONA:SP:AEPO1,1,"Aéroport",47.157702,-1.596553,-1,0,ONA:SA:AEPO,Europe/Paris,0,ONA, +ONA:SP:AEPO2,1,"Aéroport",47.157707,-1.596421,-1,0,ONA:SA:AEPO,Europe/Paris,0,ONA, +ONA:SP:AESP1,1,"Aérospatiale",47.160789,-1.587932,-1,0,ONA:SA:AESP,Europe/Paris,0,ONA, +ONA:SP:AESP2,1,"Aérospatiale",47.161449,-1.587056,-1,0,ONA:SA:AESP,Europe/Paris,0,ONA, +ONA:SP:AFRA1,1,"Anatole France",47.223773,-1.571267,-1,0,ONA:SA:AFRA,Europe/Paris,2,ONA, +ONA:SP:AFRA2,1,"Anatole France",47.223764,-1.571531,-1,0,ONA:SA:AFRA,Europe/Paris,0,ONA, +ONA:SP:AFRA3,1,"Anatole France",47.22393,-1.57194,-1,0,ONA:SA:AFRA,Europe/Paris,0,ONA, +ONA:SP:AGBE1,1,"L'Angebert",47.140541,-1.455769,-1,0,ONA:SA:AGBE,Europe/Paris,0,ONA, +ONA:SP:AGBE2,1,"L'Angebert",47.140729,-1.455518,-1,0,ONA:SA:AGBE,Europe/Paris,0,ONA, +ONA:SP:AGV98,1,"Angevinière",47.245299,-1.610933,-1,0,ONA:SA:AGVI,Europe/Paris,2,ONA, +ONA:SP:AGV99,1,"Angevinière",47.245299,-1.610933,-1,0,ONA:SA:AGVI,Europe/Paris,2,ONA, +ONA:SP:AGVI1,1,"Angevinière",47.24507,-1.61237,-1,0,ONA:SA:AGVI,Europe/Paris,2,ONA, +ONA:SP:AGVI2,1,"Angevinière",47.245097,-1.611579,-1,0,ONA:SA:AGVI,Europe/Paris,2,ONA, +ONA:SP:AIBU1,1,"Airbus",47.158695,-1.591212,-1,0,ONA:SA:AIBU,Europe/Paris,2,ONA, +ONA:SP:AIBU2,1,"Airbus",47.158125,-1.592095,-1,0,ONA:SA:AIBU,Europe/Paris,2,ONA, +ONA:SP:AIGU1,1,"Aiguillon",47.254472,-1.496523,-1,0,ONA:SA:AIGU,Europe/Paris,2,ONA, +ONA:SP:AIGU2,1,"Aiguillon",47.254459,-1.496919,-1,0,ONA:SA:AIGU,Europe/Paris,2,ONA, +ONA:SP:ALCH1,1,"Chant de l'Alouette",47.282828,-1.580086,-1,0,ONA:SA:ALCH,Europe/Paris,2,ONA, +ONA:SP:ALCH2,1,"Chant de l'Alouette",47.283286,-1.579855,-1,0,ONA:SA:ALCH,Europe/Paris,2,ONA, +ONA:SP:ALDE1,1,"Allende",47.17541,-1.623876,-1,0,OPL:SA:AST-06796-A-06796-R,Europe/Paris,2,ONA, +ONA:SP:ALDE2,1,"Allende",47.175253,-1.623204,-1,0,OPL:SA:AST-06796-A-06796-R,Europe/Paris,2,ONA, +ONA:SP:ALDE3,1,"Allende",47.174844,-1.624627,-1,0,OPL:SA:AST-06796-A-06796-R,Europe/Paris,2,ONA, +ONA:SP:ALNE1,1,"Aulne",47.276852,-1.638938,-1,0,ONA:SA:ALNE,Europe/Paris,2,ONA, +ONA:SP:ALNE2,1,"Aulne",47.276331,-1.63837,-1,0,ONA:SA:ALNE,Europe/Paris,2,ONA, +ONA:SP:ALOT1,1,"Allouettes",47.201856,-1.603895,-1,0,ONA:SA:ALOT,Europe/Paris,2,ONA, +ONA:SP:ALOT2,1,"Allouettes",47.201573,-1.601628,-1,0,ONA:SA:ALOT,Europe/Paris,2,ONA, +ONA:SP:AMCA1,1,"Armoricaine",47.258591,-1.648694,-1,0,ONA:SA:AMCA,Europe/Paris,0,ONA, +ONA:SP:AMCA2,1,"Armoricaine",47.258273,-1.647479,-1,0,ONA:SA:AMCA,Europe/Paris,2,ONA, +ONA:SP:AMER1,1,"Américains",47.236126,-1.568203,-1,0,ONA:SA:AMER,Europe/Paris,2,ONA, +ONA:SP:AMER2,1,"Américains",47.235776,-1.567913,-1,0,ONA:SA:AMER,Europe/Paris,2,ONA, +ONA:SP:AMOR1,1,"Ar Mor",47.228019,-1.623673,-1,0,ONA:SA:AMOR,Europe/Paris,2,ONA, +ONA:SP:AMOR2,1,"Ar Mor",47.228365,-1.624095,-1,0,ONA:SA:AMOR,Europe/Paris,2,ONA, +ONA:SP:AMPE1,1,"Ampère",47.26086,-1.553207,-1,0,ONA:SA:AMPE,Europe/Paris,2,ONA, +ONA:SP:AMPE2,1,"Ampère",47.260762,-1.553465,-1,0,ONA:SA:AMPE,Europe/Paris,2,ONA, +ONA:SP:ANGE1,1,"Les Anges",47.274778,-1.636402,-1,0,ONA:SA:ANGE,Europe/Paris,2,ONA, +ONA:SP:ANGE2,1,"Les Anges",47.275204,-1.637095,-1,0,ONA:SA:ANGE,Europe/Paris,2,ONA, +ONA:SP:ANTO1,1,"Antons",47.25769,-1.622564,-1,0,ONA:SA:ANTO,Europe/Paris,2,ONA, +ONA:SP:ANTO2,1,"Antons",47.257847,-1.623237,-1,0,ONA:SA:ANTO,Europe/Paris,2,ONA, +ONA:SP:APAV1,1,"Apave",47.22566,-1.647694,-1,0,ONA:SA:APAV,Europe/Paris,2,ONA, +ONA:SP:APAV2,1,"Apave",47.225395,-1.647542,-1,0,ONA:SA:APAV,Europe/Paris,2,ONA, +ONA:SP:APER1,1,"Ampère",47.302277,-1.507897,-1,0,ONA:SA:APER,Europe/Paris,0,ONA, +ONA:SP:APER2,1,"Ampère",47.302097,-1.507884,-1,0,ONA:SA:APER,Europe/Paris,0,ONA, +ONA:SP:APRE1,1,"Ambroise Paré",47.228894,-1.608664,-1,0,ONA:SA:APRE,Europe/Paris,2,ONA, +ONA:SP:APRE2,1,"Ambroise Paré",47.229078,-1.608545,-1,0,ONA:SA:APRE,Europe/Paris,2,ONA, +ONA:SP:AQUI1,1,"Aquitaine",47.209855,-1.614926,-1,0,ONA:SA:AQUI,Europe/Paris,2,ONA, +ONA:SP:AQUI2,1,"Aquitaine",47.209769,-1.614788,-1,0,ONA:SA:AQUI,Europe/Paris,2,ONA, +ONA:SP:ARAG1,1,"Arago",47.303461,-1.504805,-1,0,ONA:SA:ARAG,Europe/Paris,2,ONA, +ONA:SP:ARAG2,1,"Arago",47.303546,-1.504943,-1,0,ONA:SA:ARAG,Europe/Paris,2,ONA, +ONA:SP:ARBO1,1,"Arbois",47.258629,-1.581885,-1,0,ONA:SA:ARBO,Europe/Paris,2,ONA, +ONA:SP:ARBO2,1,"Arbois",47.258445,-1.582004,-1,0,ONA:SA:ARBO,Europe/Paris,2,ONA, +ONA:SP:ARCA1,1,"Arcades",47.211794,-1.652742,-1,0,ONA:SA:ARCA,Europe/Paris,2,ONA, +ONA:SP:ARCA2,1,"Arcades",47.212036,-1.653554,-1,0,ONA:SA:ARCA,Europe/Paris,2,ONA, +ONA:SP:ARGO1,1,"Argonautes",47.302422,-1.481825,-1,0,ONA:SA:ARGO,Europe/Paris,2,ONA, +ONA:SP:ARGO2,1,"Argonautes",47.302422,-1.481825,-1,0,ONA:SA:ARGO,Europe/Paris,2,ONA, +ONA:SP:ARMO2,1,"Armorique",47.271472,-1.445344,-1,0,ONA:SA:ARMO,Europe/Paris,0,ONA, +ONA:SP:ATAR1,1,"Antarès",47.281718,-1.4597,-1,0,ONA:SA:ATAR,Europe/Paris,2,ONA, +ONA:SP:ATAR2,1,"Antarès",47.281718,-1.4597,-1,0,ONA:SA:ATAR,Europe/Paris,2,ONA, +ONA:SP:AUCP1,1,"La Chapelle Aulnay",47.308213,-1.54315,-1,0,ONA:SA:AUCP,Europe/Paris,2,ONA, +ONA:SP:AUCP2,1,"La Chapelle Aulnay",47.308383,-1.543427,-1,0,ONA:SA:AUCP,Europe/Paris,2,ONA, +ONA:SP:AUCP3,1,"La Chapelle Aulnay",47.308145,-1.542483,-1,0,ONA:SA:AUCP,Europe/Paris,2,ONA, +ONA:SP:AUFR1,1,"L'Aufrère",47.168048,-1.52507,-1,0,ONA:SA:AUFR,Europe/Paris,0,ONA, +ONA:SP:AUGE1,1,"Augé",47.194966,-1.517367,-1,0,ONA:SA:AUGE,Europe/Paris,2,ONA, +ONA:SP:AVEN1,1,"Aveneaux",47.233659,-1.629909,-1,0,ONA:SA:AVEN,Europe/Paris,0,ONA, +ONA:SP:AVEN2,1,"Aveneaux",47.232918,-1.630515,-1,0,ONA:SA:AVEN,Europe/Paris,0,ONA, +ONA:SP:BABI1,1,"Barbinière",47.159584,-1.481809,-1,0,ONA:SA:BABI,Europe/Paris,2,ONA, +ONA:SP:BABI2,1,"Barbinière",47.159768,-1.48169,-1,0,ONA:SA:BABI,Europe/Paris,2,ONA, +ONA:SP:BAGA1,1,"Bagatelle",47.24345,-1.620187,-1,0,ONA:SA:BAGA,Europe/Paris,0,ONA, +ONA:SP:BAGA2,1,"Bagatelle",47.243455,-1.620055,-1,0,ONA:SA:BAGA,Europe/Paris,0,ONA, +ONA:SP:BAIE1,1,"Babinière",47.259205,-1.546207,-1,0,ONA:SA:BAIE,Europe/Paris,2,ONA, +ONA:SP:BAIR1,1,"Bel Air",47.225788,-1.559647,-1,0,ONA:SA:BAIR,Europe/Paris,2,ONA, +ONA:SP:BAIR2,1,"Bel Air",47.225442,-1.559225,-1,0,ONA:SA:BAIR,Europe/Paris,2,ONA, +ONA:SP:BALI1,1,"Balinière",47.186268,-1.553732,-1,0,ONA:SA:BALI,Europe/Paris,2,ONA, +ONA:SP:BALI2,1,"Balinière",47.185989,-1.553976,-1,0,ONA:SA:BALI,Europe/Paris,2,ONA, +ONA:SP:BALI3,1,"Balinière",47.18453,-1.554531,-1,0,ONA:SA:BALI,Europe/Paris,2,ONA, +ONA:SP:BALI4,1,"Balinière",47.184534,-1.554399,-1,0,ONA:SA:BALI,Europe/Paris,2,ONA, +ONA:SP:BANS1,1,"Bois des Anses",47.247234,-1.494814,-1,0,ONA:SA:BANS,Europe/Paris,2,ONA, +ONA:SP:BANS2,1,"Bois des Anses",47.247054,-1.494801,-1,0,ONA:SA:BANS,Europe/Paris,2,ONA, +ONA:SP:BANS3,1,"Bois des Anses",47.246605,-1.494769,-1,0,ONA:SA:BANS,Europe/Paris,2,ONA, +ONA:SP:BANS4,1,"Bois des Anses",47.246691,-1.494907,-1,0,ONA:SA:BANS,Europe/Paris,2,ONA, +ONA:SP:BARR1,1,"La Barre",47.308442,-1.38295,-1,0,ONA:SA:BARR,Europe/Paris,0,ONA, +ONA:SP:BARR2,1,"La Barre",47.308814,-1.382579,-1,0,ONA:SA:BARR,Europe/Paris,0,ONA, +ONA:SP:BAS98,1,"Bastille",47.179386,-1.597221,-1,0,ONA:SA:BAST,Europe/Paris,0,ONA, +ONA:SP:BAS99,1,"Bastille",47.179036,-1.596932,-1,0,ONA:SA:BAST,Europe/Paris,0,ONA, +ONA:SP:BAST1,1,"Bastille",47.179036,-1.596932,-1,0,ONA:SA:BAST,Europe/Paris,0,ONA, +ONA:SP:BAST2,1,"Bastille",47.179386,-1.597221,-1,0,ONA:SA:BAST,Europe/Paris,0,ONA, +ONA:SP:BATI1,1,"Batignolles",47.255528,-1.529669,-1,0,ONA:SA:BATI,Europe/Paris,2,ONA, +ONA:SP:BATI2,1,"Batignolles",47.255519,-1.529933,-1,0,ONA:SA:BATI,Europe/Paris,2,ONA, +ONA:SP:BAUG1,1,"Baugerie",47.203494,-1.520888,-1,0,ONA:SA:BAUG,Europe/Paris,2,ONA, +ONA:SP:BAUG2,1,"Baugerie",47.203786,-1.520248,-1,0,ONA:SA:BAUG,Europe/Paris,2,ONA, +ONA:SP:BAVO1,1,"Basse Orévière",47.220497,-1.658944,-1,0,ONA:SA:BAVO,Europe/Paris,2,ONA, +ONA:SP:BAVO2,1,"Basse Orévière",47.220407,-1.658937,-1,0,ONA:SA:BAVO,Europe/Paris,2,ONA, +ONA:SP:BBON1,1,"Boisbonne",47.286861,-1.508376,-1,0,ONA:SA:BBON,Europe/Paris,2,ONA, +ONA:SP:BBON2,1,"Boisbonne",47.286852,-1.50864,-1,0,ONA:SA:BBON,Europe/Paris,2,ONA, +ONA:SP:BCDI1,1,"Boucardière",47.200428,-1.59824,-1,0,ONA:SA:BCDI,Europe/Paris,2,ONA, +ONA:SP:BCDI2,1,"Boucardière",47.200671,-1.59905,-1,0,ONA:SA:BCDI,Europe/Paris,2,ONA, +ONA:SP:BCES1,1,"Bois Cesbron",47.261135,-1.624539,-1,0,ONA:SA:BCES,Europe/Paris,2,ONA, +ONA:SP:BCES2,1,"Bois Cesbron",47.260964,-1.624261,-1,0,ONA:SA:BCES,Europe/Paris,2,ONA, +ONA:SP:BCGA1,1,"Bd Charles Gautier",47.222277,-1.60725,-1,0,ONA:SA:BCGA,Europe/Paris,2,ONA, +ONA:SP:BCGA2,1,"Bd Charles Gautier",47.221823,-1.607349,-1,0,ONA:SA:BCGA,Europe/Paris,2,ONA, +ONA:SP:BCGA3,1,"Bd Charles Gautier",47.221518,-1.608384,-1,0,ONA:SA:BCGA,Europe/Paris,2,ONA, +ONA:SP:BCHE1,1,"Basse Chênaie",47.241014,-1.508518,-1,0,ONA:SA:BCHE,Europe/Paris,2,ONA, +ONA:SP:BCHE2,1,"Basse Chênaie",47.241485,-1.507891,-1,0,ONA:SA:BCHE,Europe/Paris,2,ONA, +ONA:SP:BCHE3,1,"Basse Chênaie",47.24101,-1.50865,-1,0,ONA:SA:BCHE,Europe/Paris,2,ONA, +ONA:SP:BCHE4,1,"Basse Chênaie",47.241814,-1.50884,-1,0,ONA:SA:BCHE,Europe/Paris,2,ONA, +ONA:SP:BCOI1,1,"Branchoire",47.217826,-1.603089,-1,0,ONA:SA:BCOI,Europe/Paris,2,ONA, +ONA:SP:BCOI2,1,"Branchoire",47.217997,-1.603366,-1,0,ONA:SA:BCOI,Europe/Paris,2,ONA, +ONA:SP:BCOI3,1,"Branchoire",47.218616,-1.603676,-1,0,ONA:SA:BCOI,Europe/Paris,2,ONA, +ONA:SP:BCOI4,1,"Branchoire",47.21788,-1.60415,-1,0,ONA:SA:BCOI,Europe/Paris,2,ONA, +ONA:SP:BCTT1,1,"Blanchet",47.171669,-1.543294,-1,0,ONA:SA:BCTT,Europe/Paris,2,ONA, +ONA:SP:BCTT2,1,"Blanchet",47.171314,-1.543136,-1,0,ONA:SA:BCTT,Europe/Paris,2,ONA, +ONA:SP:BDAN1,1,"Bd des Anglais",47.226447,-1.582701,-1,0,ONA:SA:BDAN,Europe/Paris,2,ONA, +ONA:SP:BDAN2,1,"Bd des Anglais",47.226425,-1.58336,-1,0,ONA:SA:BDAN,Europe/Paris,2,ONA, +ONA:SP:BDAN3,1,"Bd des Anglais",47.226708,-1.582984,-1,0,ONA:SA:BDAN,Europe/Paris,2,ONA, +ONA:SP:BDAN4,1,"Bd des Anglais",47.22616,-1.583209,-1,0,ONA:SA:BDAN,Europe/Paris,2,ONA, +ONA:SP:BDEL1,1,"Baudelaire",47.233657,-1.593147,-1,0,ONA:SA:BDEL,Europe/Paris,2,ONA, +ONA:SP:BDEL2,1,"Baudelaire",47.233949,-1.592507,-1,0,ONA:SA:BDEL,Europe/Paris,0,ONA, +ONA:SP:BDIN1,1,"Bodinières",47.209787,-1.643076,-1,0,ONA:SA:BDIN,Europe/Paris,2,ONA, +ONA:SP:BDIN2,1,"Bodinières",47.209796,-1.642812,-1,0,ONA:SA:BDIN,Europe/Paris,2,ONA, +ONA:SP:BDIN3,1,"Bodinières",47.210007,-1.641902,-1,0,ONA:SA:BDIN,Europe/Paris,2,ONA, +ONA:SP:BDIN4,1,"Bodinières",47.210281,-1.641791,-1,0,ONA:SA:BDIN,Europe/Paris,0,ONA, +ONA:SP:BDLA1,1,"Bout des Landes",47.267442,-1.582267,-1,0,ONA:SA:BDLA,Europe/Paris,2,ONA, +ONA:SP:BDNN1,1,"Bourdonnais",47.205554,-1.579981,-1,0,ONA:SA:BDNN,Europe/Paris,2,ONA, +ONA:SP:BDNN2,1,"Bourdonnais",47.20647,-1.579519,-1,0,ONA:SA:BDNN,Europe/Paris,2,ONA, +ONA:SP:BDOU1,1,"Bd de Doulon",47.224697,-1.519773,-1,0,ONA:SA:BDOU,Europe/Paris,2,ONA, +ONA:SP:BDOU2,1,"Bd de Doulon",47.224234,-1.520136,-1,0,ONA:SA:BDOU,Europe/Paris,2,ONA, +ONA:SP:BDOU3,1,"Bd de Doulon",47.22441,-1.520281,-1,0,ONA:SA:BDOU,Europe/Paris,2,ONA, +ONA:SP:BDOU7,1,"Bd de Doulon",47.223974,-1.519853,-1,0,ONA:SA:BDOU,Europe/Paris,2,ONA, +ONA:SP:BDPA1,1,"Bout des Pavés",47.252784,-1.576298,-1,0,OPL:SA:AST-22168-A1,Europe/Paris,2,ONA, +ONA:SP:BDPA2,1,"Bout des Pavés",47.252694,-1.576291,-1,0,OPL:SA:AST-22168-A1,Europe/Paris,2,ONA, +ONA:SP:BDPA6,1,"Bout des Pavés",47.253328,-1.576205,-1,0,OPL:SA:AST-22168-A1,Europe/Paris,2,ONA, +ONA:SP:BDRI1,1,"Bourderies",47.206632,-1.59592,-1,0,ONA:SA:BDRI,Europe/Paris,2,ONA, +ONA:SP:BDRI2,1,"Bourderies",47.206551,-1.59565,-1,0,ONA:SA:BDRI,Europe/Paris,2,ONA, +ONA:SP:BDSP1,1,"Bd des Sports",47.165891,-1.468129,-1,0,ONA:SA:BDSP,Europe/Paris,2,ONA, +ONA:SP:BDSP2,1,"Bd des Sports",47.1656,-1.468768,-1,0,ONA:SA:BDSP,Europe/Paris,2,ONA, +ONA:SP:BDUC2,1,"Bourgault-Ducoudray",47.202465,-1.548831,-1,0,ONA:SA:BDUC,Europe/Paris,0,ONA, +ONA:SP:BEDR1,1,"Bel Endroit",47.1533,-1.635578,-1,0,ONA:SA:BEDR,Europe/Paris,2,ONA, +ONA:SP:BEDR2,1,"Bel Endroit",47.154707,-1.633965,-1,0,ONA:SA:BEDR,Europe/Paris,2,ONA, +ONA:SP:BEGE1,1,"Beauger",47.234204,-1.55312,-1,0,ONA:SA:BEGE,Europe/Paris,0,ONA, +ONA:SP:BEGE2,1,"Beauger",47.234303,-1.552862,-1,0,ONA:SA:BEGE,Europe/Paris,0,ONA, +ONA:SP:BEHI1,1,"Béhinière",47.19777,-1.792578,-1,0,ONA:SA:BEHI,Europe/Paris,2,ONA, +ONA:SP:BEHI2,1,"Béhinière",47.197018,-1.790934,-1,0,ONA:SA:BEHI,Europe/Paris,2,ONA, +ONA:SP:BEIL1,1,"Beillevaire",47.249562,-1.607411,-1,0,ONA:SA:BEIL,Europe/Paris,2,ONA, +ONA:SP:BEIL2,1,"Beillevaire",47.249387,-1.607266,-1,0,ONA:SA:BEIL,Europe/Paris,2,ONA, +ONA:SP:BELE1,1,"Bêle",47.264729,-1.510357,-1,0,ONA:SA:DPBL,Europe/Paris,2,ONA, +ONA:SP:BELE2,1,"Bêle",47.264644,-1.510218,-1,0,ONA:SA:DPBL,Europe/Paris,2,ONA, +ONA:SP:BEMZ1,1,"Belges-Montbazon",47.234613,-1.540984,-1,0,ONA:SA:BEMZ,Europe/Paris,2,ONA, +ONA:SP:BEMZ2,1,"Belges-Montbazon",47.23446,-1.54018,-1,0,ONA:SA:BEMZ,Europe/Paris,2,ONA, +ONA:SP:BEMZ3,1,"Belges-Montbazon",47.23588,-1.540811,-1,0,ONA:SA:BEMZ,Europe/Paris,2,ONA, +ONA:SP:BEMZ4,1,"Belges-Montbazon",47.235601,-1.541056,-1,0,ONA:SA:BEMZ,Europe/Paris,2,ONA, +ONA:SP:BENA1,1,"Beaulieu",47.203943,-1.537044,-1,0,ONA:SA:BENA,Europe/Paris,2,ONA, +ONA:SP:BENA2,1,"Beaulieu",47.203943,-1.537044,-1,0,ONA:SA:BENA,Europe/Paris,2,ONA, +ONA:SP:BENA3,1,"Beaulieu",47.203479,-1.534763,-1,0,ONA:SA:BENA,Europe/Paris,2,ONA, +ONA:SP:BENA4,1,"Beaulieu",47.203681,-1.534117,-1,0,ONA:SA:BENA,Europe/Paris,2,ONA, +ONA:SP:BEOC1,1,"Belloc",47.203741,-1.614607,-1,0,ONA:SA:BEOC,Europe/Paris,2,ONA, +ONA:SP:BEOC2,1,"Belloc",47.203107,-1.614693,-1,0,ONA:SA:BEOC,Europe/Paris,2,ONA, +ONA:SP:BESS1,1,"Bessonneau",47.214799,-1.713777,-1,0,ONA:SA:BESS,Europe/Paris,2,ONA, +ONA:SP:BESS2,1,"Bessonneau",47.214629,-1.7135,-1,0,ONA:SA:BESS,Europe/Paris,2,ONA, +ONA:SP:BETO1,1,"Belle Etoile",47.280617,-1.452079,-1,0,ONA:SA:BETO,Europe/Paris,2,ONA, +ONA:SP:BETO2,1,"Belle Etoile",47.280181,-1.451651,-1,0,ONA:SA:BETO,Europe/Paris,2,ONA, +ONA:SP:BEVA1,1,"Beauvaiserie",47.136272,-1.654445,-1,0,ONA:SA:BEVA,Europe/Paris,0,ONA, +ONA:SP:BEVA2,1,"Beauvaiserie",47.13621,-1.65415,-1,0,ONA:SA:BEVA,Europe/Paris,0,ONA, +ONA:SP:BGAR1,1,"Bonne Garde",47.196932,-1.531251,-1,0,ONA:SA:BGAR,Europe/Paris,2,ONA, +ONA:SP:BGAR2,1,"Bonne Garde",47.196753,-1.531238,-1,0,ONA:SA:BGAR,Europe/Paris,2,ONA, +ONA:SP:BGCY1,1,"Beaugency",47.20318,-1.489809,-1,0,ONA:SA:BGCY,Europe/Paris,2,ONA, +ONA:SP:BGCY2,1,"Beaugency",47.203795,-1.49025,-1,0,ONA:SA:BGCY,Europe/Paris,0,ONA, +ONA:SP:BGLA1,1,"Basse-Goulaine",47.208303,-1.468369,-1,0,ONA:SA:BGLA,Europe/Paris,0,ONA, +ONA:SP:BGLA2,1,"Basse-Goulaine",47.208294,-1.468632,-1,0,ONA:SA:BGLA,Europe/Paris,0,ONA, +ONA:SP:BGNN1,1,"Bourgonnière",47.207377,-1.655453,-1,0,ONA:SA:BGNN,Europe/Paris,2,ONA, +ONA:SP:BGNN2,1,"Bourgonnière",47.206564,-1.655525,-1,0,ONA:SA:BGNN,Europe/Paris,2,ONA, +ONA:SP:BGOG1,1,"Bourgogne",47.246671,-1.58921,-1,0,ONA:SA:BGOG,Europe/Paris,2,ONA, +ONA:SP:BGOG2,1,"Bourgogne",47.246307,-1.589315,-1,0,ONA:SA:BGOG,Europe/Paris,2,ONA, +ONA:SP:BGRI1,1,"Bougrière",47.25511,-1.471832,-1,0,ONA:SA:BGRI,Europe/Paris,2,ONA, +ONA:SP:BGRI2,1,"Bougrière",47.255012,-1.47209,-1,0,ONA:SA:BGRI,Europe/Paris,2,ONA, +ONA:SP:BGSH1,1,"Bergerie",47.23795,-1.628244,-1,0,ONA:SA:BGSH,Europe/Paris,0,ONA, +ONA:SP:BGSH2,1,"Bergerie",47.237213,-1.628718,-1,0,ONA:SA:BGSH,Europe/Paris,0,ONA, +ONA:SP:BGTT1,1,"Bergeronnettes",47.239505,-1.601247,-1,0,ONA:SA:BGTT,Europe/Paris,0,ONA, +ONA:SP:BGTT2,1,"Bergeronnettes",47.239267,-1.600304,-1,0,ONA:SA:BGTT,Europe/Paris,0,ONA, +ONA:SP:BGUT1,1,"Louis Breguet",47.272053,-1.466027,-1,0,ONA:SA:BGUT,Europe/Paris,2,ONA, +ONA:SP:BGUT2,1,"Louis Breguet",47.272053,-1.466027,-1,0,ONA:SA:BGUT,Europe/Paris,2,ONA, +ONA:SP:BGVI1,1,"Bougainville",47.198946,-1.583594,-1,0,ONA:SA:BGVI,Europe/Paris,0,ONA, +ONA:SP:BGVI2,1,"Bougainville",47.198856,-1.583588,-1,0,ONA:SA:BGVI,Europe/Paris,0,ONA, +ONA:SP:BHAR1,1,"Bois Hardy",47.198276,-1.600592,-1,0,ONA:SA:BHAR,Europe/Paris,2,ONA, +ONA:SP:BHAR2,1,"Bois Hardy",47.198204,-1.600058,-1,0,ONA:SA:BHAR,Europe/Paris,2,ONA, +ONA:SP:BIAN1,1,"Aristide Briand",47.296401,-1.49503,-1,0,ONA:SA:BIAN,Europe/Paris,0,ONA, +ONA:SP:BIAN2,1,"Aristide Briand",47.296396,-1.495162,-1,0,ONA:SA:BIAN,Europe/Paris,2,ONA, +ONA:SP:BIEE1,1,"Belle-Ile",47.2244,-1.732751,-1,0,ONA:SA:BIEE,Europe/Paris,0,ONA, +ONA:SP:BIEE2,1,"Belle-Ile",47.223964,-1.732321,-1,0,ONA:SA:BIEE,Europe/Paris,2,ONA, +ONA:SP:BIGN1,1,"Bignons",47.199472,-1.49298,-1,0,ONA:SA:BIGN,Europe/Paris,2,ONA, +ONA:SP:BIGN2,1,"Bignons",47.199818,-1.493401,-1,0,ONA:SA:BIGN,Europe/Paris,0,ONA, +ONA:SP:BIGN3,1,"Bignons",47.199754,-1.492604,-1,0,ONA:SA:BIGN,Europe/Paris,0,ONA, +ONA:SP:BILE1,1,"Basse Ile",47.195982,-1.562102,-1,0,ONA:SA:BILE,Europe/Paris,0,ONA, +ONA:SP:BILE2,1,"Basse Ile",47.195677,-1.563137,-1,0,ONA:SA:BILE,Europe/Paris,2,ONA, +ONA:SP:BIND1,1,"Basse Indre",47.19786,-1.672716,-1,0,ONA:SA:BIND,Europe/Paris,2,ONA, +ONA:SP:BIND2,1,"Basse Indre",47.197614,-1.672037,-1,0,ONA:SA:BIND,Europe/Paris,2,ONA, +ONA:SP:BIND3,1,"Basse Indre",47.197482,-1.673216,-1,0,ONA:SA:BIND,Europe/Paris,2,ONA, +ONA:SP:BIOT1,1,"Bigeottière",47.256083,-1.619534,-1,0,ONA:SA:BIOT,Europe/Paris,2,ONA, +ONA:SP:BIOT2,1,"Bigeottière",47.255912,-1.619257,-1,0,ONA:SA:BIOT,Europe/Paris,2,ONA, +ONA:SP:BJLI1,1,"Bois Jaulin",47.177571,-1.636982,-1,0,ONA:SA:BJLI,Europe/Paris,2,ONA, +ONA:SP:BJLI2,1,"Bois Jaulin",47.177576,-1.63685,-1,0,ONA:SA:BJLI,Europe/Paris,2,ONA, +ONA:SP:BJOI1,1,"Beaujoire",47.25884,-1.524882,-1,0,ONA:SA:BJOI,Europe/Paris,2,ONA, +ONA:SP:BJOI2,1,"Beaujoire",47.258772,-1.524216,-1,0,ONA:SA:BJOI,Europe/Paris,2,ONA, +ONA:SP:BJOI6,1,"Beaujoire",47.259462,-1.527837,-1,0,ONA:SA:BJOI,Europe/Paris,2,ONA, +ONA:SP:BJOI7,1,"Beaujoire",47.259278,-1.527956,-1,0,ONA:SA:BJOI,Europe/Paris,2,ONA, +ONA:SP:BLAV1,1,"Balavoine",47.306577,-1.554286,-1,0,ONA:SA:BLAV,Europe/Paris,2,ONA, +ONA:SP:BLAV2,1,"Balavoine",47.30638,-1.554801,-1,0,ONA:SA:BLAV,Europe/Paris,2,ONA, +ONA:SP:BLCH1,1,"Blancho",47.213153,-1.734936,-1,0,ONA:SA:BLCH,Europe/Paris,2,ONA, +ONA:SP:BLCH2,1,"Blancho",47.213252,-1.734679,-1,0,ONA:SA:BLCH,Europe/Paris,2,ONA, +ONA:SP:BLDR1,1,"Boulodrome",47.257626,-1.515402,-1,0,ONA:SA:BLDR,Europe/Paris,2,ONA, +ONA:SP:BLDR2,1,"Boulodrome",47.258299,-1.514127,-1,0,ONA:SA:BLDR,Europe/Paris,2,ONA, +ONA:SP:BLEM1,1,"Belem",47.265637,-1.453001,-1,0,ONA:SA:BLEM,Europe/Paris,0,ONA, +ONA:SP:BLEM2,1,"Belem",47.265457,-1.452989,-1,0,ONA:SA:BLEM,Europe/Paris,0,ONA, +ONA:SP:BLGO1,1,"Berligout",47.215766,-1.67842,-1,0,ONA:SA:BLGO,Europe/Paris,0,ONA, +ONA:SP:BLGO2,1,"Berligout",47.215672,-1.678546,-1,0,ONA:SA:BLGO,Europe/Paris,0,ONA, +ONA:SP:BLLE1,1,"Bellestre",47.147934,-1.694065,-1,0,ONA:SA:BLLE,Europe/Paris,2,ONA, +ONA:SP:BLLE2,1,"Bellestre",47.148406,-1.693441,-1,0,ONA:SA:BLLE,Europe/Paris,2,ONA, +ONA:SP:BLNO1,1,"Bois de La Noé",47.141869,-1.671694,-1,0,ONA:SA:BLNO,Europe/Paris,0,ONA, +ONA:SP:BLNO2,1,"Bois de La Noé",47.141789,-1.671424,-1,0,ONA:SA:BLNO,Europe/Paris,0,ONA, +ONA:SP:BLOR1,1,"Blordière",47.179908,-1.533984,-1,0,ONA:SA:BLOR,Europe/Paris,2,ONA, +ONA:SP:BLOR2,1,"Blordière",47.180002,-1.533858,-1,0,ONA:SA:BLOR,Europe/Paris,2,ONA, +ONA:SP:BLSL1,1,"Bellevue",47.235418,-1.473604,-1,0,ONA:SA:BLSL,Europe/Paris,0,ONA, +ONA:SP:BLUA1,1,"Bélouga",47.165802,-1.583545,-1,0,ONA:SA:BLUA,Europe/Paris,2,ONA, +ONA:SP:BLVU1,1,"Mendès-France-Bellevue",47.208526,-1.611656,-1,0,ONA:SA:BLVU,Europe/Paris,2,ONA, +ONA:SP:BLVU2,1,"Mendès-France-Bellevue",47.208899,-1.611287,-1,0,ONA:SA:BLVU,Europe/Paris,2,ONA, +ONA:SP:BLVU3,1,"Mendès-France-Bellevue",47.208054,-1.612282,-1,0,ONA:SA:BLVU,Europe/Paris,2,ONA, +ONA:SP:BLVU4,1,"Mendès-France-Bellevue",47.208979,-1.611557,-1,0,ONA:SA:BLVU,Europe/Paris,2,ONA, +ONA:SP:BLVU5,1,"Mendès-France-Bellevue",47.208719,-1.611274,-1,0,ONA:SA:BLVU,Europe/Paris,2,ONA, +ONA:SP:BLVU6,1,"Mendès-France-Bellevue",47.20853,-1.611524,-1,0,ONA:SA:BLVU,Europe/Paris,2,ONA, +ONA:SP:BLVU7,1,"Mendès-France-Bellevue",47.208054,-1.612282,-1,0,ONA:SA:BLVU,Europe/Paris,0,ONA, +ONA:SP:BLZZ1,1,"Berlioz",47.239612,-1.571631,-1,0,ONA:SA:BLZZ,Europe/Paris,2,ONA, +ONA:SP:BLZZ3,1,"Berlioz",47.239617,-1.571499,-1,0,ONA:SA:BLZZ,Europe/Paris,2,ONA, +ONA:SP:BNAR1,1,"Bernard",47.167325,-1.52515,-1,0,ONA:SA:BNAR,Europe/Paris,0,ONA, +ONA:SP:BNCH1,1,"Blanchetière",47.289862,-1.555848,-1,0,ONA:SA:BNCH,Europe/Paris,2,ONA, +ONA:SP:BNCH2,1,"Blanchetière",47.289674,-1.556099,-1,0,ONA:SA:BNCH,Europe/Paris,2,ONA, +ONA:SP:BNET1,1,"Bignonnet",47.175537,-1.465116,-1,0,ONA:SA:BNET,Europe/Paris,2,ONA, +ONA:SP:BNET2,1,"Bignonnet",47.175533,-1.465248,-1,0,ONA:SA:BNET,Europe/Paris,2,ONA, +ONA:SP:BNIE1,1,"Bournière",47.254396,-1.455247,-1,0,ONA:SA:BNIE,Europe/Paris,0,ONA, +ONA:SP:BNLU1,1,"Bénélux",47.254115,-1.499143,-1,0,ONA:SA:BNLU,Europe/Paris,0,ONA, +ONA:SP:BNLU2,1,"Bénélux",47.254025,-1.499136,-1,0,ONA:SA:BNLU,Europe/Paris,0,ONA, +ONA:SP:BNNO1,1,"Bernanos",47.206486,-1.613356,-1,0,ONA:SA:BNNO,Europe/Paris,2,ONA, +ONA:SP:BNNO2,1,"Bernanos",47.206108,-1.613857,-1,0,ONA:SA:BNNO,Europe/Paris,2,ONA, +ONA:SP:BNO58,1,"Bignon",47.249263,-1.597733,-1,0,ONA:SA:BNON,Europe/Paris,0,ONA, +ONA:SP:BNO59,1,"Bignon",47.249263,-1.597733,-1,0,ONA:SA:BNON,Europe/Paris,0,ONA, +ONA:SP:BNON1,1,"Bignon",47.249343,-1.598004,-1,0,ONA:SA:BNON,Europe/Paris,2,ONA, +ONA:SP:BNON2,1,"Bignon",47.249083,-1.59772,-1,0,ONA:SA:BNON,Europe/Paris,2,ONA, +ONA:SP:BNTA1,1,"BN",47.183949,-1.496625,-1,0,ONA:SA:BNTA,Europe/Paris,0,ONA, +ONA:SP:BNTA2,1,"BN",47.184587,-1.496407,-1,0,ONA:SA:BNTA,Europe/Paris,2,ONA, +ONA:SP:BNVI1,1,"Bonneville",47.24395,-1.536503,-1,0,ONA:SA:BNVI,Europe/Paris,2,ONA, +ONA:SP:BNVI2,1,"Bonneville",47.243865,-1.536365,-1,0,ONA:SA:BNVI,Europe/Paris,2,ONA, +ONA:SP:BOCE1,1,"Centre de Bouguenais",47.179395,-1.623246,-1,0,ONA:SA:BOCE,Europe/Paris,0,ONA, +ONA:SP:BOCE2,1,"Centre de Bouguenais",47.178672,-1.623325,-1,0,ONA:SA:BOCE,Europe/Paris,0,ONA, +ONA:SP:BODO1,1,"Bourdonnières",47.187277,-1.521041,-1,0,ONA:SA:BODO,Europe/Paris,2,ONA, +ONA:SP:BODO2,1,"Bourdonnières",47.187376,-1.520783,-1,0,ONA:SA:BODO,Europe/Paris,2,ONA, +ONA:SP:BODO3,1,"Bourdonnières",47.186344,-1.52203,-1,0,ONA:SA:BODO,Europe/Paris,2,ONA, +ONA:SP:BODO4,1,"Bourdonnières",47.186429,-1.522168,-1,0,ONA:SA:BODO,Europe/Paris,2,ONA, +ONA:SP:BOFA1,1,"Bouffay",47.214609,-1.55196,-1,0,ONA:SA:BOFA,Europe/Paris,2,ONA, +ONA:SP:BOFA2,1,"Bouffay",47.214492,-1.552744,-1,0,ONA:SA:BOFA,Europe/Paris,2,ONA, +ONA:SP:BOGE1,1,"Bourgeonnière",47.253244,-1.560061,-1,0,ONA:SA:BOGE,Europe/Paris,2,ONA, +ONA:SP:BOGE2,1,"Bourgeonnière",47.253172,-1.559527,-1,0,ONA:SA:BOGE,Europe/Paris,2,ONA, +ONA:SP:BOGE3,1,"Bourgeonnière",47.253033,-1.560971,-1,0,ONA:SA:BOGE,Europe/Paris,0,ONA, +ONA:SP:BOGE4,1,"Bourgeonnière",47.253019,-1.561367,-1,0,ONA:SA:BOGE,Europe/Paris,0,ONA, +ONA:SP:BOLL1,1,"Bois Tillac",47.20024,-1.771357,-1,0,ONA:SA:BOLL,Europe/Paris,2,ONA, +ONA:SP:BOLL2,1,"Bois Tillac",47.200155,-1.771218,-1,0,ONA:SA:BOLL,Europe/Paris,2,ONA, +ONA:SP:BOND1,1,"Bonde",47.222802,-1.552026,-1,0,ONA:SA:BOND,Europe/Paris,2,ONA, +ONA:SP:BOND2,1,"Bonde",47.222618,-1.552145,-1,0,ONA:SA:BOND,Europe/Paris,2,ONA, +ONA:SP:BORL1,1,"Bourrelière",47.157932,-1.498989,-1,0,ONA:SA:BORL,Europe/Paris,0,ONA, +ONA:SP:BORL2,1,"Bourrelière",47.158314,-1.498356,-1,0,ONA:SA:BORL,Europe/Paris,0,ONA, +ONA:SP:BOSI1,1,"Boissière",47.255298,-1.565899,-1,0,ONA:SA:BOSI,Europe/Paris,2,ONA, +ONA:SP:BOSI2,1,"Boissière",47.254939,-1.565873,-1,0,ONA:SA:BOSI,Europe/Paris,2,ONA, +ONA:SP:BOSI3,1,"Boissière",47.255123,-1.565754,-1,0,ONA:SA:BOSI,Europe/Paris,0,ONA, +ONA:SP:BOSI4,1,"Boissière",47.254934,-1.566005,-1,0,ONA:SA:BOSI,Europe/Paris,2,ONA, +ONA:SP:BOTI1,1,"Boutière",47.157967,-1.468094,-1,0,ONA:SA:BOTI,Europe/Paris,2,ONA, +ONA:SP:BOTI2,1,"Boutière",47.157513,-1.468194,-1,0,ONA:SA:BOTI,Europe/Paris,2,ONA, +ONA:SP:BOUE1,1,"Bio Ouest Laënnec",47.232796,-1.641879,-1,0,ONA:SA:BOUE,Europe/Paris,0,ONA, +ONA:SP:BOUE2,1,"Bio Ouest Laënnec",47.232702,-1.642004,-1,0,ONA:SA:BOUE,Europe/Paris,0,ONA, +ONA:SP:BOVR1,1,"Bouvre",47.178055,-1.612447,-1,0,ONA:SA:BOVR,Europe/Paris,2,ONA, +ONA:SP:BOVR2,1,"Bouvre",47.178212,-1.613119,-1,0,ONA:SA:BOVR,Europe/Paris,2,ONA, +ONA:SP:BPTY1,1,"Boulay Paty",47.228917,-1.576271,-1,0,ONA:SA:BPTY,Europe/Paris,0,ONA, +ONA:SP:BPTY2,1,"Boulay Paty",47.229056,-1.574827,-1,0,ONA:SA:BPTY,Europe/Paris,0,ONA, +ONA:SP:BRAG1,1,"Bois Raguenet",47.266643,-1.600468,-1,0,ONA:SA:BRAG,Europe/Paris,2,ONA, +ONA:SP:BRAG2,1,"Bois Raguenet",47.266827,-1.600349,-1,0,ONA:SA:BRAG,Europe/Paris,2,ONA, +ONA:SP:BRBI1,1,"Bois Robillard",47.235145,-1.519733,-1,0,ONA:SA:BRBI,Europe/Paris,2,ONA, +ONA:SP:BRBI2,1,"Bois Robillard",47.235145,-1.519733,-1,0,ONA:SA:BRBI,Europe/Paris,2,ONA, +ONA:SP:BRCH1,1,"Bréchetière",47.284683,-1.503455,-1,0,ONA:SA:BRCH,Europe/Paris,2,ONA, +ONA:SP:BRCH2,1,"Bréchetière",47.284674,-1.503719,-1,0,ONA:SA:BRCH,Europe/Paris,2,ONA, +ONA:SP:BRDI1,1,"Briandière",47.190552,-1.693707,-1,0,ONA:SA:BRDI,Europe/Paris,2,ONA, +ONA:SP:BRDI2,1,"Briandière",47.189709,-1.692058,-1,0,ONA:SA:BRDI,Europe/Paris,2,ONA, +ONA:SP:BRE99,1,"Bretonnière",47.166514,-1.462891,-1,0,ONA:SA:BRET,Europe/Paris,2,ONA, +ONA:SP:BRET1,1,"Bretonnière",47.166514,-1.462891,-1,0,ONA:SA:BRET,Europe/Paris,2,ONA, +ONA:SP:BRET2,1,"Bretonnière",47.166339,-1.462746,-1,0,ONA:SA:BRET,Europe/Paris,2,ONA, +ONA:SP:BRGA1,1,"Beauregard",47.210763,-1.656499,-1,0,ONA:SA:BRGA,Europe/Paris,0,ONA, +ONA:SP:BRGA2,1,"Beauregard",47.210112,-1.657111,-1,0,ONA:SA:BRGA,Europe/Paris,2,ONA, +ONA:SP:BRIN1,1,"Brains",47.169615,-1.723039,-1,0,ONA:SA:BRIN,Europe/Paris,2,ONA, +ONA:SP:BRLA1,1,"Brouillard",47.273959,-1.514462,-1,0,ONA:SA:BRLA,Europe/Paris,2,ONA, +ONA:SP:BRLA2,1,"Brouillard",47.273775,-1.514581,-1,0,ONA:SA:BRLA,Europe/Paris,2,ONA, +ONA:SP:BRNI1,1,"Baronnière",47.259594,-1.603786,-1,0,ONA:SA:BRNI,Europe/Paris,2,ONA, +ONA:SP:BRNI2,1,"Baronnière",47.259589,-1.603917,-1,0,ONA:SA:BRNI,Europe/Paris,2,ONA, +ONA:SP:BROS1,1,"Brossais",47.162581,-1.585554,-1,0,ONA:SA:BROS,Europe/Paris,0,ONA, +ONA:SP:BROS2,1,"Brossais",47.163524,-1.584303,-1,0,ONA:SA:BROS,Europe/Paris,0,ONA, +ONA:SP:BRTA1,1,"Bretagne",47.217355,-1.558637,-1,0,ONA:SA:BRTA,Europe/Paris,2,ONA, +ONA:SP:BRTA2,1,"Bretagne",47.217099,-1.558221,-1,0,ONA:SA:BRTA,Europe/Paris,2,ONA, +ONA:SP:BRUN1,1,"Bruneau",47.228236,-1.561809,-1,0,ONA:SA:BRUN,Europe/Paris,2,ONA, +ONA:SP:BRUN2,1,"Bruneau",47.22798,-1.561394,-1,0,ONA:SA:BRUN,Europe/Paris,2,ONA, +ONA:SP:BRVI1,1,"Boris Vian",47.153379,-1.682591,-1,0,ONA:SA:BRVI,Europe/Paris,2,ONA, +ONA:SP:BRVI2,1,"Boris Vian",47.153167,-1.683499,-1,0,ONA:SA:BRVI,Europe/Paris,2,ONA, +ONA:SP:BSAN1,1,"Bobby Sands",47.229988,-1.652777,-1,0,ONA:SA:BSAN,Europe/Paris,2,ONA, +ONA:SP:BSAN2,1,"Bobby Sands",47.229893,-1.652902,-1,0,ONA:SA:BSAN,Europe/Paris,2,ONA, +ONA:SP:BSE10,1,"Beauséjour",47.237952,-1.586057,-1,0,OPL:SA:AST-22211-A-22211-R,Europe/Paris,2,ONA, +ONA:SP:BSE11,1,"Beauséjour",47.237956,-1.585925,-1,0,OPL:SA:AST-22211-A-22211-R,Europe/Paris,2,ONA, +ONA:SP:BSE12,1,"Beauséjour",47.237035,-1.586518,-1,0,OPL:SA:AST-22211-A-22211-R,Europe/Paris,0,ONA, +ONA:SP:BSE58,1,"Beauséjour",47.238289,-1.586743,-1,0,OPL:SA:AST-22211-A-22211-R,Europe/Paris,2,ONA, +ONA:SP:BSE59,1,"Beauséjour",47.23801,-1.586987,-1,0,OPL:SA:AST-22211-A-22211-R,Europe/Paris,2,ONA, +ONA:SP:BSEJ1,1,"Beauséjour",47.238271,-1.58727,-1,0,OPL:SA:AST-22211-A-22211-R,Europe/Paris,2,ONA, +ONA:SP:BSEJ2,1,"Beauséjour",47.238015,-1.586855,-1,0,OPL:SA:AST-22211-A-22211-R,Europe/Paris,2,ONA, +ONA:SP:BSEJ3,1,"Beauséjour",47.238015,-1.586855,-1,0,OPL:SA:AST-22211-A-22211-R,Europe/Paris,2,ONA, +ONA:SP:BSEJ4,1,"Beauséjour",47.238095,-1.587125,-1,0,OPL:SA:AST-22211-A-22211-R,Europe/Paris,2,ONA, +ONA:SP:BSEJ5,1,"Beauséjour",47.238266,-1.587402,-1,0,OPL:SA:AST-22211-A-22211-R,Europe/Paris,2,ONA, +ONA:SP:BSEJ6,1,"Beauséjour",47.23854,-1.58729,-1,0,OPL:SA:AST-22211-A-22211-R,Europe/Paris,2,ONA, +ONA:SP:BSEJ7,1,"Beauséjour",47.238374,-1.586881,-1,0,OPL:SA:AST-22211-A-22211-R,Europe/Paris,2,ONA, +ONA:SP:BSEJ8,1,"Beauséjour",47.238289,-1.586743,-1,0,OPL:SA:AST-22211-A-22211-R,Europe/Paris,2,ONA, +ONA:SP:BSEJ9,1,"Beauséjour",47.238118,-1.586466,-1,0,OPL:SA:AST-22211-A-22211-R,Europe/Paris,2,ONA, +ONA:SP:BSIS1,1,"Bossis",47.212491,-1.712809,-1,0,ONA:SA:BSIS,Europe/Paris,2,ONA, +ONA:SP:BSIS2,1,"Bossis",47.21251,-1.712282,-1,0,ONA:SA:BSIS,Europe/Paris,2,ONA, +ONA:SP:BSLO1,1,"Bois St-Louis",47.245804,-1.580284,-1,0,ONA:SA:BSLO,Europe/Paris,0,ONA, +ONA:SP:BSLO2,1,"Bois St-Louis",47.246289,-1.579262,-1,0,ONA:SA:BSLO,Europe/Paris,0,ONA, +ONA:SP:BSNI1,1,"Bussonnière",47.268936,-1.443047,-1,0,ONA:SA:BSNI,Europe/Paris,2,ONA, +ONA:SP:BSNI2,1,"Bussonnière",47.269723,-1.443765,-1,0,ONA:SA:BSNI,Europe/Paris,2,ONA, +ONA:SP:BSOL1,1,"Beau Soleil",47.177819,-1.645455,-1,0,ONA:SA:BSOL,Europe/Paris,0,ONA, +ONA:SP:BSOL2,1,"Beau Soleil",47.177662,-1.644783,-1,0,ONA:SA:BSOL,Europe/Paris,0,ONA, +ONA:SP:BSSL1,1,"Beau Soleil",47.260949,-1.475026,-1,0,ONA:SA:BSSL,Europe/Paris,2,ONA, +ONA:SP:BSSL2,1,"Beau Soleil",47.261124,-1.475171,-1,0,ONA:SA:BSSL,Europe/Paris,2,ONA, +ONA:SP:BSTI1,1,"Bastière",47.148438,-1.459364,-1,0,ONA:SA:BSTI,Europe/Paris,0,ONA, +ONA:SP:BSTI2,1,"Bastière",47.149157,-1.459415,-1,0,ONA:SA:BSTI,Europe/Paris,0,ONA, +ONA:SP:BSYS1,1,"Bois St-Lys",47.300347,-1.481942,-1,0,ONA:SA:BSYS,Europe/Paris,2,ONA, +ONA:SP:BSYS2,1,"Bois St-Lys",47.300347,-1.481942,-1,0,ONA:SA:BSYS,Europe/Paris,2,ONA, +ONA:SP:BTAI1,1,"Brétinais",47.221786,-1.665915,-1,0,ONA:SA:BTAI,Europe/Paris,2,ONA, +ONA:SP:BTAI2,1,"Brétinais",47.221701,-1.665777,-1,0,ONA:SA:BTAI,Europe/Paris,2,ONA, +ONA:SP:BTCY1,1,"Lycée Bois Tillac",47.203431,-1.77028,-1,0,ONA:SA:BTCY,Europe/Paris,2,ONA, +ONA:SP:BTIE1,1,"Bottière",47.240234,-1.518381,-1,0,ONA:SA:BTIE,Europe/Paris,2,ONA, +ONA:SP:BTIE2,1,"Bottière",47.240243,-1.518117,-1,0,ONA:SA:BTIE,Europe/Paris,2,ONA, +ONA:SP:BTLE1,1,"Bouteillerie",47.221465,-1.5436,-1,0,ONA:SA:BTLE,Europe/Paris,2,ONA, +ONA:SP:BTLE2,1,"Bouteillerie",47.221672,-1.542822,-1,0,ONA:SA:BTLE,Europe/Paris,2,ONA, +ONA:SP:BTRA1,1,"Bertrand",47.257128,-1.57569,-1,0,ONA:SA:BTRA,Europe/Paris,2,ONA, +ONA:SP:BTRA2,1,"Bertrand",47.257038,-1.575683,-1,0,ONA:SA:BTRA,Europe/Paris,2,ONA, +ONA:SP:BUGA1,1,"Bugallière",47.259962,-1.637682,-1,0,ONA:SA:BUGA,Europe/Paris,2,ONA, +ONA:SP:BUGA2,1,"Bugallière",47.259953,-1.637946,-1,0,ONA:SA:BUGA,Europe/Paris,2,ONA, +ONA:SP:BULA1,1,"Butte des Landes",47.160341,-1.494275,-1,0,ONA:SA:BULA,Europe/Paris,2,ONA, +ONA:SP:BULA2,1,"Butte des Landes",47.160808,-1.493781,-1,0,ONA:SA:BULA,Europe/Paris,2,ONA, +ONA:SP:BUON1,1,"Bougon",47.174156,-1.610575,-1,0,ONA:SA:BUON,Europe/Paris,2,ONA, +ONA:SP:BUON2,1,"Bougon",47.173787,-1.610812,-1,0,ONA:SA:BUON,Europe/Paris,0,ONA, +ONA:SP:BUSS1,1,"Buisson",47.260628,-1.487439,-1,0,ONA:SA:BUSS,Europe/Paris,0,ONA, +ONA:SP:BUSS2,1,"Buisson",47.259905,-1.48752,-1,0,ONA:SA:BUSS,Europe/Paris,0,ONA, +ONA:SP:BVDI1,1,"Bouvardière",47.238522,-1.598398,-1,0,ONA:SA:BVDI,Europe/Paris,0,ONA, +ONA:SP:BVDI2,1,"Bouvardière",47.238342,-1.598384,-1,0,ONA:SA:BVDI,Europe/Paris,0,ONA, +ONA:SP:BVER1,1,"Bouvernière",47.237617,-1.611688,-1,0,ONA:SA:BVER,Europe/Paris,2,ONA, +ONA:SP:BVER2,1,"Bouvernière",47.238075,-1.611457,-1,0,ONA:SA:BVER,Europe/Paris,2,ONA, +ONA:SP:BVOI1,1,"Beauvoir",47.17849,-1.631238,-1,0,ONA:SA:BVOI,Europe/Paris,0,ONA, +ONA:SP:BVOI2,1,"Beauvoir",47.178512,-1.630579,-1,0,ONA:SA:BVOI,Europe/Paris,0,ONA, +ONA:SP:BVOI3,1,"Beauvoir",47.178932,-1.626251,-1,0,ONA:SA:BVOI,Europe/Paris,2,ONA, +ONA:SP:BVOI4,1,"Beauvoir",47.178927,-1.626382,-1,0,ONA:SA:BVOI,Europe/Paris,2,ONA, +ONA:SP:BYCE1,1,"Centre de Bouaye",47.14396,-1.691786,-1,0,ONA:SA:BYCE,Europe/Paris,2,ONA, +ONA:SP:BYCE2,1,"Centre de Bouaye",47.143875,-1.691647,-1,0,ONA:SA:BYCE,Europe/Paris,2,ONA, +ONA:SP:BYGA1,1,"Gare de Bouaye",47.138259,-1.680942,-1,0,STE:SA:OCE87481200,Europe/Paris,0,ONA, +ONA:SP:BYGA2,1,"Gare de Bouaye",47.13825,-1.680941,-1,0,STE:SA:OCE87481200,Europe/Paris,0,ONA, +ONA:SP:BYTO1,1,"Bouaye Coteaux",47.164482,-1.67933,-1,0,ONA:SA:BYTO,Europe/Paris,2,ONA, +ONA:SP:BZAR1,1,"Buzardières",47.207231,-1.659672,-1,0,ONA:SA:BZAR,Europe/Paris,2,ONA, +ONA:SP:BZAR2,1,"Buzardières",47.206772,-1.659902,-1,0,ONA:SA:BZAR,Europe/Paris,2,ONA, +ONA:SP:CABR1,1,"Cabrol",47.203276,-1.588669,-1,0,ONA:SA:CABR,Europe/Paris,0,ONA, +ONA:SP:CABR2,1,"Cabrol",47.204188,-1.58834,-1,0,ONA:SA:CABR,Europe/Paris,0,ONA, +ONA:SP:CACE1,1,"Centre de Carquefou",47.297106,-1.49005,-1,0,ONA:SA:CACE,Europe/Paris,2,ONA, +ONA:SP:CACE2,1,"Centre de Carquefou",47.297152,-1.491378,-1,0,ONA:SA:CACE,Europe/Paris,2,ONA, +ONA:SP:CACE3,1,"Centre de Carquefou",47.296537,-1.490936,-1,0,ONA:SA:CACE,Europe/Paris,0,ONA, +ONA:SP:CADO1,1,"Cadoire",47.256734,-1.488087,-1,0,ONA:SA:CADO,Europe/Paris,2,ONA, +ONA:SP:CADO2,1,"Cadoire",47.256734,-1.488087,-1,0,ONA:SA:CADO,Europe/Paris,2,ONA, +ONA:SP:CAGE1,1,"Chalonges",47.276136,-1.429398,-1,0,ONA:SA:CAGE,Europe/Paris,0,ONA, +ONA:SP:CAHL1,1,"Charlière",47.321022,-1.55057,-1,0,ONA:SA:CAHL,Europe/Paris,0,ONA, +ONA:SP:CAHL2,1,"Charlière",47.320851,-1.550293,-1,0,ONA:SA:CAHL,Europe/Paris,0,ONA, +ONA:SP:CAIO1,1,"Le Caillou Blanc",47.298676,-1.585485,-1,0,ONA:SA:CAIO,Europe/Paris,2,ONA, +ONA:SP:CAIO2,1,"Le Caillou Blanc",47.29895,-1.585373,-1,0,ONA:SA:CAIO,Europe/Paris,2,ONA, +ONA:SP:CALI1,1,"Californie",47.191808,-1.58426,-1,0,ONA:SA:CALI,Europe/Paris,0,ONA, +ONA:SP:CALI2,1,"Californie",47.19126,-1.584485,-1,0,ONA:SA:CALI,Europe/Paris,0,ONA, +ONA:SP:CALI3,1,"Californie",47.190873,-1.585249,-1,0,ONA:SA:CALI,Europe/Paris,2,ONA, +ONA:SP:CANC1,1,"Canclaux",47.213837,-1.574771,-1,0,ONA:SA:CANC,Europe/Paris,2,ONA, +ONA:SP:CANC2,1,"Canclaux",47.213832,-1.574903,-1,0,ONA:SA:CANC,Europe/Paris,2,ONA, +ONA:SP:CANC3,1,"Canclaux",47.214919,-1.574718,-1,0,ONA:SA:CANC,Europe/Paris,2,ONA, +ONA:SP:CANC4,1,"Canclaux",47.215364,-1.574883,-1,0,ONA:SA:CANC,Europe/Paris,2,ONA, +ONA:SP:CAPE1,1,"Capellia",47.279715,-1.554977,-1,0,ONA:SA:CAPE,Europe/Paris,2,ONA, +ONA:SP:CAPE2,1,"Capellia",47.279715,-1.554977,-1,0,ONA:SA:CAPE,Europe/Paris,2,ONA, +ONA:SP:CARQ1,1,"Carquefou",47.303746,-1.485362,-1,0,ONA:SA:CARQ,Europe/Paris,0,ONA, +ONA:SP:CARQ2,1,"Carquefou",47.303652,-1.485488,-1,0,ONA:SA:CARQ,Europe/Paris,2,ONA, +ONA:SP:CAST1,1,"Castorama",47.259122,-1.508366,-1,0,ONA:SA:CAST,Europe/Paris,0,ONA, +ONA:SP:CAST2,1,"Castorama",47.25899,-1.506901,-1,0,ONA:SA:CAST,Europe/Paris,0,ONA, +ONA:SP:CATI1,1,"Cartier",47.268165,-1.455562,-1,0,ONA:SA:CATI,Europe/Paris,2,ONA, +ONA:SP:CATI2,1,"Cartier",47.267531,-1.45565,-1,0,ONA:SA:CATI,Europe/Paris,0,ONA, +ONA:SP:CATV1,1,"CAT Vertonne",47.184251,-1.482115,-1,0,ONA:SA:CATV,Europe/Paris,2,ONA, +ONA:SP:CATV2,1,"CAT Vertonne",47.184161,-1.482109,-1,0,ONA:SA:CATV,Europe/Paris,2,ONA, +ONA:SP:CAUX1,1,"Château D'Aux",47.185299,-1.673889,-1,0,ONA:SA:CAUX,Europe/Paris,2,ONA, +ONA:SP:CAUX2,1,"Château D'Aux",47.185106,-1.674271,-1,0,ONA:SA:CAUX,Europe/Paris,2,ONA, +ONA:SP:CAUX3,1,"Château D'Aux",47.185366,-1.674555,-1,0,ONA:SA:CAUX,Europe/Paris,2,ONA, +ONA:SP:CBAC1,1,"Bac de Couëron",47.205983,-1.751706,-1,0,ONA:SA:CBAC,Europe/Paris,0,ONA, +ONA:SP:CBEA1,1,"Charbonneau",47.300667,-1.488584,-1,0,ONA:SA:CBEA,Europe/Paris,2,ONA, +ONA:SP:CBEA2,1,"Charbonneau",47.300683,-1.490836,-1,0,ONA:SA:CBEA,Europe/Paris,2,ONA, +ONA:SP:CBEA3,1,"Charbonneau",47.300945,-1.48834,-1,0,ONA:SA:CBEA,Europe/Paris,0,ONA, +ONA:SP:CBG99,1,"Chapeau Berger",47.171004,-1.468756,-1,0,ONA:SA:CBGE,Europe/Paris,2,ONA, +ONA:SP:CBGE1,1,"Chapeau Berger",47.171004,-1.468756,-1,0,ONA:SA:CBGE,Europe/Paris,2,ONA, +ONA:SP:CBGE2,1,"Chapeau Berger",47.171543,-1.468794,-1,0,ONA:SA:CBGE,Europe/Paris,2,ONA, +ONA:SP:CBGE3,1,"Chapeau Berger",47.171869,-1.467101,-1,0,ONA:SA:CBGE,Europe/Paris,2,ONA, +ONA:SP:CBIN1,1,"Corbinerie",47.161435,-1.542288,-1,0,ONA:SA:CBIN,Europe/Paris,2,ONA, +ONA:SP:CBIN2,1,"Corbinerie",47.161624,-1.542038,-1,0,ONA:SA:CBIN,Europe/Paris,2,ONA, +ONA:SP:CBLE1,1,"Chemin Bleu",47.178228,-1.525012,-1,0,ONA:SA:CBLE,Europe/Paris,2,ONA, +ONA:SP:CBLE2,1,"Chemin Bleu",47.178313,-1.52515,-1,0,ONA:SA:CBLE,Europe/Paris,2,ONA, +ONA:SP:CBNA1,1,"Cambronne",47.225833,-1.547619,-1,0,ONA:SA:CBNA,Europe/Paris,2,ONA, +ONA:SP:CBNA2,1,"Cambronne",47.225353,-1.54851,-1,0,ONA:SA:CBNA,Europe/Paris,2,ONA, +ONA:SP:CBOU1,1,"Couëron-Bougon",47.225081,-1.73386,-1,0,ONA:SA:CBOU,Europe/Paris,2,ONA, +ONA:SP:CBSS1,1,"Cambronne",47.206387,-1.507087,-1,0,ONA:SA:CBSS,Europe/Paris,0,ONA, +ONA:SP:CBSS2,1,"Cambronne",47.206589,-1.506441,-1,0,ONA:SA:CBSS,Europe/Paris,0,ONA, +ONA:SP:CBTE1,1,"Choblèterie",47.136212,-1.461402,-1,0,ONA:SA:CBTE,Europe/Paris,2,ONA, +ONA:SP:CBTE2,1,"Choblèterie",47.136208,-1.461533,-1,0,ONA:SA:CBTE,Europe/Paris,0,ONA, +ONA:SP:CCAN1,1,"Couchant",47.268386,-1.599538,-1,0,ONA:SA:CCAN,Europe/Paris,0,ONA, +ONA:SP:CCDI1,1,"Cochardières",47.229943,-1.633204,-1,0,ONA:SA:CCDI,Europe/Paris,2,ONA, +ONA:SP:CCDI2,1,"Cochardières",47.229089,-1.634462,-1,0,ONA:SA:CCDI,Europe/Paris,2,ONA, +ONA:SP:CCDI3,1,"Cochardières",47.229821,-1.63412,-1,0,ONA:SA:CCDI,Europe/Paris,0,ONA, +ONA:SP:CCHA1,1,"Couchant",47.270203,-1.513662,-1,0,ONA:SA:CCHA,Europe/Paris,2,ONA, +ONA:SP:CCHA2,1,"Couchant",47.270109,-1.513787,-1,0,ONA:SA:CCHA,Europe/Paris,2,ONA, +ONA:SP:CCLA1,1,"Cimetière de la Classerie",47.170874,-1.558821,-1,0,ONA:SA:CCLA,Europe/Paris,2,ONA, +ONA:SP:CCLA2,1,"Cimetière de la Classerie",47.17135,-1.558064,-1,0,ONA:SA:CCLA,Europe/Paris,2,ONA, +ONA:SP:CCOU1,1,"Champ de Courses",47.244561,-1.561148,-1,0,ONA:SA:CCOU,Europe/Paris,2,ONA, +ONA:SP:CCOU2,1,"Champ de Courses",47.244983,-1.561972,-1,0,ONA:SA:CCOU,Europe/Paris,2,ONA, +ONA:SP:CCRE1,1,"Chêne Creux",47.170404,-1.548749,-1,0,ONA:SA:CCRE,Europe/Paris,2,ONA, +ONA:SP:CCRE2,1,"Chêne Creux",47.170054,-1.54846,-1,0,ONA:SA:CCRE,Europe/Paris,2,ONA, +ONA:SP:CDAN1,1,"Chêne des Anglais",47.261436,-1.573491,-1,0,ONA:SA:CDAN,Europe/Paris,2,ONA, +ONA:SP:CDAN2,1,"Chêne des Anglais",47.261364,-1.572957,-1,0,ONA:SA:CDAN,Europe/Paris,2,ONA, +ONA:SP:CDAN3,1,"Chêne des Anglais",47.261539,-1.573102,-1,0,ONA:SA:CDAN,Europe/Paris,2,ONA, +ONA:SP:CDAN4,1,"Chêne des Anglais",47.261521,-1.57363,-1,0,ONA:SA:CDAN,Europe/Paris,2,ONA, +ONA:SP:CDAN5,1,"Chêne des Anglais",47.2614,-1.574547,-1,0,ONA:SA:CDAN,Europe/Paris,2,ONA, +ONA:SP:CDAN6,1,"Chêne des Anglais",47.261391,-1.574811,-1,0,ONA:SA:CDAN,Europe/Paris,2,ONA, +ONA:SP:CDCO1,1,"Cité Internationale des Congrès",47.213672,-1.545018,-1,0,ONA:SA:CDCO,Europe/Paris,2,ONA, +ONA:SP:CDCO2,1,"Cité Internationale des Congrès",47.213497,-1.544873,-1,0,ONA:SA:CDCO,Europe/Paris,2,ONA, +ONA:SP:CDMA1,1,"Champ de Manoeuvre",47.272705,-1.500742,-1,0,ONA:SA:CDMA,Europe/Paris,2,ONA, +ONA:SP:CDMA2,1,"Champ de Manoeuvre",47.272286,-1.499785,-1,0,ONA:SA:CDMA,Europe/Paris,0,ONA, +ONA:SP:CEDR1,1,"Le Cèdre",47.299441,-1.560253,-1,0,ONA:SA:CEDR,Europe/Paris,2,ONA, +ONA:SP:CEDR2,1,"Le Cèdre",47.299454,-1.559857,-1,0,ONA:SA:CEDR,Europe/Paris,2,ONA, +ONA:SP:CELL1,1,"Le Cellier",47.323885,-1.34787,-1,0,ONA:SA:CELL,Europe/Paris,0,ONA, +ONA:SP:CELL2,1,"Le Cellier",47.32362,-1.347719,-1,0,ONA:SA:CELL,Europe/Paris,0,ONA, +ONA:SP:CFOI1,1,"Champ de Foire",47.12424,-1.618907,-1,0,ONA:SA:CFOI,Europe/Paris,2,ONA, +ONA:SP:CFOI2,1,"Champ de Foire",47.124613,-1.618539,-1,0,ONA:SA:CFOI,Europe/Paris,2,ONA, +ONA:SP:CGAU1,1,"Cimetière de la Gaudinière",47.241729,-1.583557,-1,0,ONA:SA:CGAU,Europe/Paris,2,ONA, +ONA:SP:CGAU2,1,"Cimetière de la Gaudinière",47.243019,-1.582725,-1,0,ONA:SA:CGAU,Europe/Paris,2,ONA, +ONA:SP:CGLA1,1,"Chêne Gala",47.183154,-1.539238,-1,0,ONA:SA:CGLA,Europe/Paris,2,ONA, +ONA:SP:CGLA2,1,"Chêne Gala",47.183859,-1.539686,-1,0,ONA:SA:CGLA,Europe/Paris,2,ONA, +ONA:SP:CHAB1,1,"Chabossière",47.215449,-1.682363,-1,0,ONA:SA:CHAB,Europe/Paris,2,ONA, +ONA:SP:CHAB2,1,"Chabossière",47.215364,-1.682224,-1,0,ONA:SA:CHAB,Europe/Paris,2,ONA, +ONA:SP:CHBE1,1,"Chambelles",47.23163,-1.530586,-1,0,ONA:SA:CHBE,Europe/Paris,2,ONA, +ONA:SP:CHBE2,1,"Chambelles",47.232052,-1.53141,-1,0,ONA:SA:CHBE,Europe/Paris,2,ONA, +ONA:SP:CHER1,1,"Cochère",47.202695,-1.778286,-1,0,ONA:SA:CHER,Europe/Paris,2,ONA, +ONA:SP:CHER2,1,"Cochère",47.202695,-1.778286,-1,0,ONA:SA:CHER,Europe/Paris,2,ONA, +ONA:SP:CHFL1,1,"Champ Fleuri",47.14374,-1.52477,-1,0,ONA:SA:CHFL,Europe/Paris,2,ONA, +ONA:SP:CHFL2,1,"Champ Fleuri",47.144073,-1.525586,-1,0,ONA:SA:CHFL,Europe/Paris,2,ONA, +ONA:SP:CHGN1,1,"Châtaigniers",47.221649,-1.601916,-1,0,OPL:SA:AST-CHGN1-CHGN2,Europe/Paris,2,ONA, +ONA:SP:CHGN2,1,"Châtaigniers",47.221739,-1.601922,-1,0,OPL:SA:AST-CHGN1-CHGN2,Europe/Paris,2,ONA, +ONA:SP:CHGN3,1,"Châtaigniers",47.222067,-1.602872,-1,0,OPL:SA:AST-CHGN1-CHGN2,Europe/Paris,2,ONA, +ONA:SP:CHGN4,1,"Châtaigniers",47.222156,-1.602879,-1,0,OPL:SA:AST-CHGN1-CHGN2,Europe/Paris,2,ONA, +ONA:SP:CHIN1,1,"La Chesnaie",47.281747,-1.53739,-1,0,ONA:SA:CHIN,Europe/Paris,2,ONA, +ONA:SP:CHIN2,1,"La Chesnaie",47.281653,-1.537515,-1,0,ONA:SA:CHIN,Europe/Paris,2,ONA, +ONA:SP:CHLI1,1,"Cholière",47.250937,-1.606719,-1,0,OPL:SA:AST-CHLI1-CHLI2,Europe/Paris,2,ONA, +ONA:SP:CHLI2,1,"Cholière",47.251027,-1.606726,-1,0,OPL:SA:AST-CHLI1-CHLI2,Europe/Paris,2,ONA, +ONA:SP:CHME1,1,"Charmes",47.190802,-1.461047,-1,0,ONA:SA:CHME,Europe/Paris,0,ONA, +ONA:SP:CHME2,1,"Charmes",47.191157,-1.461205,-1,0,ONA:SA:CHME,Europe/Paris,0,ONA, +ONA:SP:CHNI1,1,"Charbonnière",47.263675,-1.642325,-1,0,ONA:SA:CHNI,Europe/Paris,2,ONA, +ONA:SP:CHNI2,1,"Charbonnière",47.263774,-1.642067,-1,0,ONA:SA:CHNI,Europe/Paris,2,ONA, +ONA:SP:CHOC1,1,"Chocolaterie",47.242805,-1.527691,-1,0,ONA:SA:CHOC,Europe/Paris,2,ONA, +ONA:SP:CHOC2,1,"Chocolaterie",47.242706,-1.527949,-1,0,ONA:SA:CHOC,Europe/Paris,2,ONA, +ONA:SP:CHPO1,1,"Champonnière",47.164092,-1.506033,-1,0,ONA:SA:CHPO,Europe/Paris,2,ONA, +ONA:SP:CHPO2,1,"Champonnière",47.163917,-1.505888,-1,0,ONA:SA:CHPO,Europe/Paris,2,ONA, +ONA:SP:CHRE1,1,"Chalâtres",47.231835,-1.537874,-1,0,ONA:SA:CHRE,Europe/Paris,2,ONA, +ONA:SP:CHRE2,1,"Chalâtres",47.23109,-1.538613,-1,0,ONA:SA:CHRE,Europe/Paris,2,ONA, +ONA:SP:CHSS1,1,"Chaussée",47.176649,-1.521067,-1,0,ONA:SA:CHSS,Europe/Paris,2,ONA, +ONA:SP:CHSS2,1,"Chaussée",47.177247,-1.522035,-1,0,ONA:SA:CHSS,Europe/Paris,2,ONA, +ONA:SP:CHTE1,1,"Châtelets",47.196887,-1.540629,-1,0,ONA:SA:CHTE,Europe/Paris,2,ONA, +ONA:SP:CHTE2,1,"Châtelets",47.197157,-1.540649,-1,0,ONA:SA:CHTE,Europe/Paris,2,ONA, +ONA:SP:CHVE1,1,"Chauvais",47.337333,-1.571632,-1,0,ONA:SA:CHVE,Europe/Paris,0,ONA, +ONA:SP:CHVE2,1,"Chauvais",47.336727,-1.573575,-1,0,ONA:SA:CHVE,Europe/Paris,0,ONA, +ONA:SP:CHZY1,1,"Chanzy",47.224031,-1.544976,-1,0,ONA:SA:CHZY,Europe/Paris,2,ONA, +ONA:SP:CHZY2,1,"Chanzy",47.223564,-1.545471,-1,0,ONA:SA:CHZY,Europe/Paris,2,ONA, +ONA:SP:CIFA4,1,"CIFAM",47.266729,-1.48814,-1,0,OPL:SA:AST-21111-A-21111-R,Europe/Paris,0,ONA, +ONA:SP:CIFA5,1,"CIFAM",47.266713,-1.48589,-1,0,OPL:SA:AST-21111-A-21111-R,Europe/Paris,2,ONA, +ONA:SP:CJOS1,1,"Cimetière de St-Joseph-de-Porterie",47.268527,-1.520686,-1,0,ONA:SA:CJOS,Europe/Paris,2,ONA, +ONA:SP:CJOS2,1,"Cimetière de St-Joseph-de-Porterie",47.268137,-1.521584,-1,0,ONA:SA:CJOS,Europe/Paris,2,ONA, +ONA:SP:CLAM1,1,"Clos Ami",47.212148,-1.655545,-1,0,ONA:SA:CLAM,Europe/Paris,2,ONA, +ONA:SP:CLAM2,1,"Clos Ami",47.212362,-1.657147,-1,0,ONA:SA:CLAM,Europe/Paris,2,ONA, +ONA:SP:CLAM3,1,"Clos Ami",47.211765,-1.656177,-1,0,ONA:SA:CLAM,Europe/Paris,0,ONA, +ONA:SP:CLBO1,1,"Clos Bonnet",47.189177,-1.563589,-1,0,ONA:SA:CLBO,Europe/Paris,0,ONA, +ONA:SP:CLBO2,1,"Clos Bonnet",47.19039,-1.564998,-1,0,ONA:SA:CLBO,Europe/Paris,0,ONA, +ONA:SP:CLCC1,1,"Centre René Gauducheau",47.238507,-1.638204,-1,0,ONA:SA:CLCC,Europe/Paris,2,ONA, +ONA:SP:CLET1,1,"Clétras",47.254942,-1.512166,-1,0,ONA:SA:CLET,Europe/Paris,0,ONA, +ONA:SP:CLET2,1,"Clétras",47.255109,-1.512575,-1,0,ONA:SA:CLET,Europe/Paris,0,ONA, +ONA:SP:CLGE1,1,"Chalonges",47.189799,-1.472338,-1,0,OPL:SA:AST-CLGE2-A-CLGE3-R,Europe/Paris,2,ONA, +ONA:SP:CLGE2,1,"Chalonges",47.189161,-1.472557,-1,0,OPL:SA:AST-CLGE2-A-CLGE3-R,Europe/Paris,2,ONA, +ONA:SP:CLGE3,1,"Chalonges",47.18926,-1.4723,-1,0,OPL:SA:AST-CLGE2-A-CLGE3-R,Europe/Paris,2,ONA, +ONA:SP:CLGE4,1,"Chalonges",47.189704,-1.472464,-1,0,OPL:SA:AST-CLGE2-A-CLGE3-R,Europe/Paris,2,ONA, +ONA:SP:CLGE5,1,"Chalonges",47.189875,-1.47274,-1,0,OPL:SA:AST-CLGE2-A-CLGE3-R,Europe/Paris,2,ONA, +ONA:SP:CLMO1,1,"Cimetière de La Montagne",47.187468,-1.686604,-1,0,ONA:SA:CLMO,Europe/Paris,2,ONA, +ONA:SP:CLMO2,1,"Cimetière de La Montagne",47.187293,-1.686459,-1,0,ONA:SA:CLMO,Europe/Paris,2,ONA, +ONA:SP:CLNA1,1,"Colonac",47.225036,-1.602958,-1,0,ONA:SA:CLNA,Europe/Paris,2,ONA, +ONA:SP:CLNA2,1,"Colonac",47.224218,-1.603163,-1,0,ONA:SA:CLNA,Europe/Paris,2,ONA, +ONA:SP:CLOT1,1,"Clotais",47.19311,-1.718346,-1,0,ONA:SA:CLOT,Europe/Paris,2,ONA, +ONA:SP:CLOT2,1,"Clotais",47.193025,-1.718208,-1,0,ONA:SA:CLOT,Europe/Paris,2,ONA, +ONA:SP:CLPT1,1,"Clépettre",47.29698,-1.547762,-1,0,ONA:SA:CLPT,Europe/Paris,2,ONA, +ONA:SP:CLPT2,1,"Clépettre",47.296643,-1.547075,-1,0,ONA:SA:CLPT,Europe/Paris,2,ONA, +ONA:SP:CLRO1,1,"Clos Roux",47.198716,-1.750886,-1,0,ONA:SA:CLRO,Europe/Paris,2,ONA, +ONA:SP:CLRO2,1,"Clos Roux",47.198125,-1.749784,-1,0,ONA:SA:CLRO,Europe/Paris,2,ONA, +ONA:SP:CLSE1,1,"Closeaux",47.239127,-1.628066,-1,0,ONA:SA:CLSE,Europe/Paris,0,ONA, +ONA:SP:CLSE2,1,"Closeaux",47.239953,-1.627599,-1,0,ONA:SA:CLSE,Europe/Paris,0,ONA, +ONA:SP:CLTT1,1,"Châlet",47.230005,-1.544088,-1,0,ONA:SA:CLTT,Europe/Paris,2,ONA, +ONA:SP:CLTT2,1,"Châlet",47.229453,-1.544444,-1,0,ONA:SA:CLTT,Europe/Paris,2,ONA, +ONA:SP:CLUE1,1,"Clouet",47.167442,-1.510895,-1,0,ONA:SA:CLUE,Europe/Paris,0,ONA, +ONA:SP:CLUE2,1,"Clouet",47.1671,-1.510343,-1,0,ONA:SA:CLUE,Europe/Paris,0,ONA, +ONA:SP:CLVA1,1,"Calvaire",47.14681,-1.519183,-1,0,ONA:SA:CLVA,Europe/Paris,2,ONA, +ONA:SP:CLVA2,1,"Calvaire",47.146006,-1.518993,-1,0,ONA:SA:CLVA,Europe/Paris,2,ONA, +ONA:SP:CLZE1,1,"Clouzeaux",47.17931,-1.492595,-1,0,ONA:SA:CLZE,Europe/Paris,2,ONA, +ONA:SP:CLZE2,1,"Clouzeaux",47.1794,-1.492601,-1,0,ONA:SA:CLZE,Europe/Paris,2,ONA, +ONA:SP:CMAR1,1,"Cirque-Marais",47.218033,-1.557232,-1,0,ONA:SA:CMAR,Europe/Paris,2,ONA, +ONA:SP:CMAR2,1,"Cirque-Marais",47.218218,-1.557113,-1,0,ONA:SA:CMAR,Europe/Paris,2,ONA, +ONA:SP:CMCI1,1,"Clémencière",47.269537,-1.43568,-1,0,ONA:SA:CMCI,Europe/Paris,2,ONA, +ONA:SP:CMCI2,1,"Clémencière",47.269635,-1.435423,-1,0,ONA:SA:CMCI,Europe/Paris,2,ONA, +ONA:SP:CMLL1,1,"Charmille",47.257177,-1.605989,-1,0,ONA:SA:CMLL,Europe/Paris,2,ONA, +ONA:SP:CMLL2,1,"Charmille",47.257083,-1.606114,-1,0,ONA:SA:CMLL,Europe/Paris,2,ONA, +ONA:SP:CMNE1,1,"Commune 1871",47.199145,-1.500092,-1,0,ONA:SA:CMNE,Europe/Paris,2,ONA, +ONA:SP:CMNE2,1,"Commune 1871",47.199338,-1.49971,-1,0,ONA:SA:CMNE,Europe/Paris,2,ONA, +ONA:SP:CMOU1,1,"Clos du Moulin",47.145122,-1.521173,-1,0,ONA:SA:CMOU,Europe/Paris,2,ONA, +ONA:SP:CMOU2,1,"Clos du Moulin",47.145207,-1.521312,-1,0,ONA:SA:CMOU,Europe/Paris,2,ONA, +ONA:SP:CMUS1,1,"Camus",47.219133,-1.572647,-1,0,ONA:SA:CMUS,Europe/Paris,2,ONA, +ONA:SP:CNAV1,1,"Chantiers Navals",47.208957,-1.567277,-1,0,ONA:SA:CNAV,Europe/Paris,2,ONA, +ONA:SP:CNAV2,1,"Chantiers Navals",47.208849,-1.567798,-1,0,ONA:SA:CNAV,Europe/Paris,2,ONA, +ONA:SP:CNAV4,1,"Chantiers Navals",47.208768,-1.567528,-1,0,ONA:SA:CNAV,Europe/Paris,2,ONA, +ONA:SP:CNCE1,1,"Chenonceau",47.272639,-1.434444,-1,0,ONA:SA:CNCE,Europe/Paris,0,ONA, +ONA:SP:CNGO1,1,"Congo",47.240677,-1.609136,-1,0,ONA:SA:CNGO,Europe/Paris,2,ONA, +ONA:SP:CNGO2,1,"Congo",47.239652,-1.610119,-1,0,ONA:SA:CNGO,Europe/Paris,2,ONA, +ONA:SP:CNON1,1,"Chinon",47.274168,-1.428994,-1,0,ONA:SA:CNON,Europe/Paris,0,ONA, +ONA:SP:CNON2,1,"Chinon",47.274164,-1.429126,-1,0,ONA:SA:CNON,Europe/Paris,0,ONA, +ONA:SP:CNTR1,1,"Centaure",47.169987,-1.627042,-1,0,ONA:SA:CNTR,Europe/Paris,2,ONA, +ONA:SP:CNTR2,1,"Centaure",47.170073,-1.62718,-1,0,ONA:SA:CNTR,Europe/Paris,2,ONA, +ONA:SP:COAY1,1,"Corlay",47.207949,-1.644128,-1,0,ONA:SA:COAY,Europe/Paris,2,ONA, +ONA:SP:COAY2,1,"Corlay",47.208034,-1.644267,-1,0,ONA:SA:COAY,Europe/Paris,2,ONA, +ONA:SP:COBI1,1,"Corbières",47.201637,-1.487453,-1,0,ONA:SA:COBI,Europe/Paris,0,ONA, +ONA:SP:COBI2,1,"Corbières",47.201906,-1.487472,-1,0,ONA:SA:COBI,Europe/Paris,0,ONA, +ONA:SP:COCH1,1,"Cochard",47.22441,-1.549763,-1,0,ONA:SA:COCH,Europe/Paris,2,ONA, +ONA:SP:COCH2,1,"Cochard",47.224024,-1.550529,-1,0,ONA:SA:COCH,Europe/Paris,2,ONA, +ONA:SP:COET1,1,"Les Couëts",47.180752,-1.586225,-1,0,ONA:SA:COET,Europe/Paris,2,ONA, +ONA:SP:COET2,1,"Les Couëts",47.180645,-1.586746,-1,0,ONA:SA:COET,Europe/Paris,2,ONA, +ONA:SP:COHO1,1,"Chohonnière",47.263111,-1.485897,-1,0,ONA:SA:COHO,Europe/Paris,2,ONA, +ONA:SP:COHO2,1,"Chohonnière",47.263286,-1.486042,-1,0,ONA:SA:COHO,Europe/Paris,2,ONA, +ONA:SP:COLI1,1,"Colinière",47.235794,-1.508407,-1,0,ONA:SA:COLI,Europe/Paris,2,ONA, +ONA:SP:COLI2,1,"Colinière",47.235605,-1.508658,-1,0,ONA:SA:COLI,Europe/Paris,2,ONA, +ONA:SP:COLI3,1,"Colinière",47.23653,-1.507932,-1,0,ONA:SA:COLI,Europe/Paris,2,ONA, +ONA:SP:COMA4,1,"Commerce",47.213456,-1.556766,-1,0,ONA:SA:COMM,Europe/Paris,2,ONA, +ONA:SP:COMA6,1,"Commerce",47.213649,-1.556384,-1,0,ONA:SA:COMM,Europe/Paris,2,ONA, +ONA:SP:COMA8,1,"Commerce",47.213842,-1.556002,-1,0,ONA:SA:COMM,Europe/Paris,2,ONA, +ONA:SP:COMB2,1,"Commerce",47.213375,-1.556496,-1,0,ONA:SA:COMM,Europe/Paris,2,ONA, +ONA:SP:COMC1,1,"Commerce",47.213572,-1.555982,-1,0,ONA:SA:COMM,Europe/Paris,2,ONA, +ONA:SP:COMD2,1,"Commerce",47.2132,-1.556351,-1,0,ONA:SA:COMM,Europe/Paris,2,ONA, +ONA:SP:COMD3,1,"Commerce",47.213474,-1.556239,-1,0,ONA:SA:COMM,Europe/Paris,2,ONA, +ONA:SP:COMD4,1,"Commerce",47.213186,-1.556747,-1,0,ONA:SA:COMM,Europe/Paris,2,ONA, +ONA:SP:COMD5,1,"Commerce",47.213285,-1.55649,-1,0,ONA:SA:COMM,Europe/Paris,2,ONA, +ONA:SP:COMD6,1,"Commerce",47.213186,-1.556747,-1,0,ONA:SA:COMM,Europe/Paris,2,ONA, +ONA:SP:COME1,1,"Commerce",47.21474,-1.556067,-1,0,ONA:SA:COMM,Europe/Paris,2,ONA, +ONA:SP:COME2,1,"Commerce",47.2143,-1.55577,-1,0,ONA:SA:COMM,Europe/Paris,2,ONA, +ONA:SP:COME3,1,"Commerce",47.214473,-1.555704,-1,0,ONA:SA:COMM,Europe/Paris,2,ONA, +ONA:SP:COMF1,1,"Commerce",47.214724,-1.555748,-1,0,ONA:SA:COMM,Europe/Paris,2,ONA, +ONA:SP:CONI1,1,"Corniche",47.252619,-1.594408,-1,0,ONA:SA:CONI,Europe/Paris,2,ONA, +ONA:SP:CONI2,1,"Corniche",47.252789,-1.594686,-1,0,ONA:SA:CONI,Europe/Paris,0,ONA, +ONA:SP:COQU1,1,"Coquelicots",47.222544,-1.729172,-1,0,ONA:SA:COQU,Europe/Paris,0,ONA, +ONA:SP:COQU2,1,"Coquelicots",47.22254,-1.729304,-1,0,ONA:SA:COQU,Europe/Paris,0,ONA, +ONA:SP:CORA1,1,"Conraie",47.260772,-1.587731,-1,0,ONA:SA:CORA,Europe/Paris,2,ONA, +ONA:SP:CORA2,1,"Conraie",47.26092,-1.588668,-1,0,ONA:SA:CORA,Europe/Paris,2,ONA, +ONA:SP:COST1,1,"Cousteau",47.239876,-1.512933,-1,0,ONA:SA:COST,Europe/Paris,2,ONA, +ONA:SP:COST2,1,"Cousteau",47.239782,-1.513058,-1,0,ONA:SA:COST,Europe/Paris,2,ONA, +ONA:SP:COTA1,1,"Coutancière",47.306201,-1.560085,-1,0,ONA:SA:COTA,Europe/Paris,2,ONA, +ONA:SP:COUD1,1,"Coudray",47.232673,-1.54243,-1,0,ONA:SA:COUD,Europe/Paris,2,ONA, +ONA:SP:COUD2,1,"Coudray",47.232224,-1.542398,-1,0,ONA:SA:COUD,Europe/Paris,2,ONA, +ONA:SP:CP3R1,1,"Chapelles",47.163545,-1.538479,-1,0,ONA:SA:CP3R,Europe/Paris,0,ONA, +ONA:SP:CP3R2,1,"Chapelles",47.165216,-1.539657,-1,0,ONA:SA:CP3R,Europe/Paris,2,ONA, +ONA:SP:CP4L1,1,"Chapelle Laënnec",47.235367,-1.637838,-1,0,ONA:SA:CP4L,Europe/Paris,2,ONA, +ONA:SP:CPER1,1,"Copernic",47.214909,-1.564407,-1,0,ONA:SA:CPER,Europe/Paris,2,ONA, +ONA:SP:CPER2,1,"Copernic",47.2149,-1.564671,-1,0,ONA:SA:CPER,Europe/Paris,2,ONA, +ONA:SP:CPGN1,1,"Champagnère",47.210245,-1.46137,-1,0,ONA:SA:CPGN,Europe/Paris,2,ONA, +ONA:SP:CPGN2,1,"Champagnère",47.210339,-1.461244,-1,0,ONA:SA:CPGN,Europe/Paris,0,ONA, +ONA:SP:CPLI1,1,"Chaplin",47.222325,-1.616376,-1,0,ONA:SA:CPLI,Europe/Paris,2,ONA, +ONA:SP:CPLI2,1,"Chaplin",47.222419,-1.616251,-1,0,ONA:SA:CPLI,Europe/Paris,2,ONA, +ONA:SP:CPRE1,1,"Chaupières",47.243173,-1.495052,-1,0,ONA:SA:CPRE,Europe/Paris,0,ONA, +ONA:SP:CPRE2,1,"Chaupières",47.242365,-1.494994,-1,0,ONA:SA:CPRE,Europe/Paris,0,ONA, +ONA:SP:CQGU1,1,"Chat-Qui-Guette",47.19195,-1.697512,-1,0,ONA:SA:CQGU,Europe/Paris,2,ONA, +ONA:SP:CQGU2,1,"Chat-Qui-Guette",47.191964,-1.697117,-1,0,ONA:SA:CQGU,Europe/Paris,2,ONA, +ONA:SP:CQLU1,1,"Coqueluchon",47.183831,-1.470328,-1,0,ONA:SA:CQLU,Europe/Paris,0,ONA, +ONA:SP:CQLU2,1,"Coqueluchon",47.1841,-1.470347,-1,0,ONA:SA:CQLU,Europe/Paris,0,ONA, +ONA:SP:CRA99,1,"Clairais",47.275214,-1.438331,-1,0,ONA:SA:CRAI,Europe/Paris,2,ONA, +ONA:SP:CRAI1,1,"Clairais",47.275569,-1.438488,-1,0,ONA:SA:CRAI,Europe/Paris,2,ONA, +ONA:SP:CRBE1,1,"Corberie",47.152051,-1.524049,-1,0,ONA:SA:CRBE,Europe/Paris,2,ONA, +ONA:SP:CRBE2,1,"Corberie",47.152415,-1.523943,-1,0,ONA:SA:CRBE,Europe/Paris,2,ONA, +ONA:SP:CRCE1,1,"Courocerie",47.252314,-1.499146,-1,0,ONA:SA:CRCE,Europe/Paris,2,ONA, +ONA:SP:CRCE2,1,"Courocerie",47.252215,-1.499403,-1,0,ONA:SA:CRCE,Europe/Paris,2,ONA, +ONA:SP:CREZ1,1,"Château de Rezé",47.184729,-1.559301,-1,0,ONA:SA:CREZ,Europe/Paris,2,ONA, +ONA:SP:CREZ2,1,"Château de Rezé",47.184805,-1.559703,-1,0,ONA:SA:CREZ,Europe/Paris,2,ONA, +ONA:SP:CRME1,1,"Crémetterie",47.218212,-1.607612,-1,0,ONA:SA:CRME,Europe/Paris,0,ONA, +ONA:SP:CRME2,1,"Crémetterie",47.218283,-1.608146,-1,0,ONA:SA:CRME,Europe/Paris,2,ONA, +ONA:SP:CROU1,1,"Chemin Rouge",47.251608,-1.517613,-1,0,ONA:SA:CROU,Europe/Paris,2,ONA, +ONA:SP:CROU2,1,"Chemin Rouge",47.251878,-1.517633,-1,0,ONA:SA:CROU,Europe/Paris,2,ONA, +ONA:SP:CRPO1,1,"Criport",47.157958,-1.503612,-1,0,ONA:SA:CRPO,Europe/Paris,0,ONA, +ONA:SP:CRPO2,1,"Criport",47.158322,-1.503506,-1,0,ONA:SA:CRPO,Europe/Paris,0,ONA, +ONA:SP:CRQU1,1,"Place du Cirque",47.217135,-1.557166,-1,0,ONA:SA:CRQU,Europe/Paris,2,ONA, +ONA:SP:CRQU2,1,"Place du Cirque",47.21678,-1.557008,-1,0,ONA:SA:CRQU,Europe/Paris,2,ONA, +ONA:SP:CRQU3,1,"Place du Cirque",47.216609,-1.556732,-1,0,ONA:SA:CRQU,Europe/Paris,2,ONA, +ONA:SP:CRQU4,1,"Place du Cirque",47.216879,-1.556751,-1,0,ONA:SA:CRQU,Europe/Paris,2,ONA, +ONA:SP:CRSA1,1,"Croissant",47.240551,-1.530438,-1,0,ONA:SA:CRSA,Europe/Paris,2,ONA, +ONA:SP:CRSA2,1,"Croissant",47.241018,-1.529943,-1,0,ONA:SA:CRSA,Europe/Paris,2,ONA, +ONA:SP:CRTI1,1,"Crétinières",47.277154,-1.553467,-1,0,ONA:SA:CRTI,Europe/Paris,2,ONA, +ONA:SP:CRTI2,1,"Crétinières",47.276533,-1.553157,-1,0,ONA:SA:CRTI,Europe/Paris,2,ONA, +ONA:SP:CRVA1,1,"Cravate",47.243365,-1.588438,-1,0,ONA:SA:CRVA,Europe/Paris,2,ONA, +ONA:SP:CRVA2,1,"Cravate",47.243279,-1.588299,-1,0,ONA:SA:CRVA,Europe/Paris,2,ONA, +ONA:SP:CSAY1,1,"Chassay",47.245064,-1.48421,-1,0,ONA:SA:CSAY,Europe/Paris,0,ONA, +ONA:SP:CSAY2,1,"Chassay",47.245248,-1.484091,-1,0,ONA:SA:CSAY,Europe/Paris,2,ONA, +ONA:SP:CSAY3,1,"Chassay",47.245321,-1.484625,-1,0,ONA:SA:CSAY,Europe/Paris,0,ONA, +ONA:SP:CSCL1,1,"Cimetière St-Clair",47.216573,-1.592289,-1,0,ONA:SA:CSCL,Europe/Paris,0,ONA, +ONA:SP:CSCL2,1,"Cimetière St-Clair",47.216798,-1.593627,-1,0,ONA:SA:CSCL,Europe/Paris,0,ONA, +ONA:SP:CSER1,1,"Chapelle-sur-Erdre",47.299424,-1.550058,-1,0,ONA:SA:CSER,Europe/Paris,2,ONA, +ONA:SP:CSER2,1,"Chapelle-sur-Erdre",47.29933,-1.550183,-1,0,ONA:SA:CSER,Europe/Paris,2,ONA, +ONA:SP:CSGR1,1,"Cassegrain",47.187675,-1.487512,-1,0,ONA:SA:CSGR,Europe/Paris,0,ONA, +ONA:SP:CSGR2,1,"Cassegrain",47.187879,-1.489508,-1,0,ONA:SA:CSGR,Europe/Paris,2,ONA, +ONA:SP:CSHB1,1,"Carrières",47.208154,-1.638196,-1,0,ONA:SA:CSHB,Europe/Paris,2,ONA, +ONA:SP:CSHB2,1,"Carrières",47.208248,-1.638071,-1,0,ONA:SA:CSHB,Europe/Paris,2,ONA, +ONA:SP:CSIB1,1,"Clos Siban",47.21023,-1.645884,-1,0,ONA:SA:CSIB,Europe/Paris,2,ONA, +ONA:SP:CSIB2,1,"Clos Siban",47.210212,-1.646412,-1,0,ONA:SA:CSIB,Europe/Paris,2,ONA, +ONA:SP:CSMP1,1,"Casimir Périer",47.231508,-1.568923,-1,0,ONA:SA:CSMP,Europe/Paris,0,ONA, +ONA:SP:CSMP2,1,"Casimir Périer",47.231247,-1.56864,-1,0,ONA:SA:CSMP,Europe/Paris,0,ONA, +ONA:SP:CSMP3,1,"Casimir Périer",47.23198,-1.568297,-1,0,ONA:SA:CSMP,Europe/Paris,0,ONA, +ONA:SP:CSRI1,1,"Classerie",47.167995,-1.558744,-1,0,ONA:SA:CSRI,Europe/Paris,2,ONA, +ONA:SP:CSRI2,1,"Classerie",47.168174,-1.558757,-1,0,ONA:SA:CSRI,Europe/Paris,2,ONA, +ONA:SP:CSTE1,1,"Casterneau",47.227148,-1.532642,-1,0,ONA:SA:CSTE,Europe/Paris,2,ONA, +ONA:SP:CSTE2,1,"Casterneau",47.226981,-1.532233,-1,0,ONA:SA:CSTE,Europe/Paris,2,ONA, +ONA:SP:CSVA2,1,"Conservatoire",47.207058,-1.532775,-1,0,ONA:SA:CSVA,Europe/Paris,2,ONA, +ONA:SP:CSVA3,1,"Conservatoire",47.20705,-1.533039,-1,0,ONA:SA:CSVA,Europe/Paris,2,ONA, +ONA:SP:CTAR1,1,"Cotalard",47.286325,-1.537854,-1,0,ONA:SA:CTAR,Europe/Paris,2,ONA, +ONA:SP:CTAR2,1,"Cotalard",47.28615,-1.537709,-1,0,ONA:SA:CTAR,Europe/Paris,2,ONA, +ONA:SP:CTBO1,1,"Coteaux",47.184619,-1.670139,-1,0,ONA:SA:CTBO,Europe/Paris,2,ONA, +ONA:SP:CTBO2,1,"Coteaux",47.184377,-1.669328,-1,0,ONA:SA:CTBO,Europe/Paris,2,ONA, +ONA:SP:CTEU1,1,"Caboteurs",47.18639,-1.587299,-1,0,ONA:SA:CTEU,Europe/Paris,2,ONA, +ONA:SP:CTEU2,1,"Caboteurs",47.186475,-1.587437,-1,0,ONA:SA:CTEU,Europe/Paris,2,ONA, +ONA:SP:CTIE1,1,"Châtelier",47.18475,-1.593124,-1,0,ONA:SA:CTIE,Europe/Paris,0,ONA, +ONA:SP:CTIE2,1,"Châtelier",47.184836,-1.593262,-1,0,ONA:SA:CTIE,Europe/Paris,2,ONA, +ONA:SP:CTLI1,1,"Courteline",47.236388,-1.587,-1,0,ONA:SA:CTLI,Europe/Paris,0,ONA, +ONA:SP:CTLI2,1,"Courteline",47.236573,-1.586881,-1,0,ONA:SA:CTLI,Europe/Paris,0,ONA, +ONA:SP:CTNS1,1,"Carterons",47.218502,-1.739045,-1,0,ONA:SA:CTNS,Europe/Paris,2,ONA, +ONA:SP:CTNS2,1,"Carterons",47.218606,-1.738656,-1,0,ONA:SA:CTNS,Europe/Paris,2,ONA, +ONA:SP:CTOR1,1,"Clos Toreau",47.194303,-1.529079,-1,0,ONA:SA:CTOR,Europe/Paris,2,ONA, +ONA:SP:CTOR2,1,"Clos Toreau",47.194123,-1.529066,-1,0,ONA:SA:CTOR,Europe/Paris,2,ONA, +ONA:SP:CTRE1,1,"Chantrerie Grandes Ecoles",47.281799,-1.517012,-1,0,ONA:SA:CTRE,Europe/Paris,2,ONA, +ONA:SP:CTRE2,1,"Chantrerie Grandes Ecoles",47.281709,-1.517005,-1,0,ONA:SA:CTRE,Europe/Paris,2,ONA, +ONA:SP:CTRE3,1,"Chantrerie Grandes Ecoles",47.282303,-1.518107,-1,0,ONA:SA:CTRE,Europe/Paris,2,ONA, +ONA:SP:CTRE4,1,"Chantrerie Grandes Ecoles",47.282213,-1.518101,-1,0,ONA:SA:CTRE,Europe/Paris,2,ONA, +ONA:SP:CTYY1,1,"Coty",47.248989,-1.488062,-1,0,ONA:SA:CTYY,Europe/Paris,2,ONA, +ONA:SP:CTYY2,1,"Coty",47.249075,-1.4882,-1,0,ONA:SA:CTYY,Europe/Paris,2,ONA, +ONA:SP:CUGA1,1,"Gare de Couëron",47.221822,-1.724093,-1,0,STE:SA:OCE87481804,Europe/Paris,2,ONA, +ONA:SP:CUGA2,1,"Gare de Couëron",47.221737,-1.723954,-1,0,STE:SA:OCE87481804,Europe/Paris,2,ONA, +ONA:SP:CUIE1,1,"Chausserie",47.149469,-1.704216,-1,0,ONA:SA:CUIE,Europe/Paris,2,ONA, +ONA:SP:CUIE2,1,"Chausserie",47.149115,-1.704057,-1,0,ONA:SA:CUIE,Europe/Paris,2,ONA, +ONA:SP:CURI1,1,"Curie",47.190486,-1.48692,-1,0,ONA:SA:CURI,Europe/Paris,2,ONA, +ONA:SP:CURI2,1,"Curie",47.190559,-1.487454,-1,0,ONA:SA:CURI,Europe/Paris,2,ONA, +ONA:SP:CUVI1,1,"Cuvier",47.210706,-1.574146,-1,0,ONA:SA:CUVI,Europe/Paris,0,ONA, +ONA:SP:CUVI2,1,"Cuvier",47.210463,-1.573335,-1,0,ONA:SA:CUVI,Europe/Paris,0,ONA, +ONA:SP:CVBL1,1,"Cheveux Blancs",47.265457,-1.635047,-1,0,ONA:SA:CVBL,Europe/Paris,0,ONA, +ONA:SP:CVBL2,1,"Cheveux Blancs",47.265453,-1.635179,-1,0,ONA:SA:CVBL,Europe/Paris,0,ONA, +ONA:SP:CVDO1,1,"Cimetière de Vieux Doulon",47.238492,-1.500403,-1,0,ONA:SA:CVDO,Europe/Paris,2,ONA, +ONA:SP:CVDO2,1,"Cimetière de Vieux Doulon",47.238488,-1.500535,-1,0,ONA:SA:CVDO,Europe/Paris,2,ONA, +ONA:SP:CVER1,1,"Chapeau Verni",47.189212,-1.511667,-1,0,ONA:SA:CVER,Europe/Paris,2,ONA, +ONA:SP:CVER2,1,"Chapeau Verni",47.189166,-1.510343,-1,0,ONA:SA:CVER,Europe/Paris,2,ONA, +ONA:SP:CVER3,1,"Chapeau Verni",47.189112,-1.509282,-1,0,ONA:SA:CVER,Europe/Paris,0,ONA, +ONA:SP:CVER4,1,"Chapeau Verni",47.189125,-1.508887,-1,0,ONA:SA:CVER,Europe/Paris,2,ONA, +ONA:SP:CVLE1,1,"Chevalerie",47.252215,-1.545171,-1,0,ONA:SA:CVLE,Europe/Paris,2,ONA, +ONA:SP:CVLE2,1,"Chevalerie",47.2523,-1.545309,-1,0,ONA:SA:CVLE,Europe/Paris,0,ONA, +ONA:SP:CVNI1,1,"Chauvinière",47.250982,-1.571007,-1,0,ONA:SA:CVNI,Europe/Paris,2,ONA, +ONA:SP:CVNI2,1,"Chauvinière",47.251575,-1.572109,-1,0,ONA:SA:CVNI,Europe/Paris,2,ONA, +ONA:SP:CVRN1,1,"Cheverny",47.245956,-1.604897,-1,0,ONA:SA:CVRN,Europe/Paris,2,ONA, +ONA:SP:CVRN2,1,"Cheverny",47.245399,-1.605385,-1,0,ONA:SA:CVRN,Europe/Paris,2,ONA, +ONA:SP:CVTI1,1,"Convention",47.210729,-1.586705,-1,0,ONA:SA:CVTI,Europe/Paris,0,ONA, +ONA:SP:CVTI2,1,"Convention",47.211547,-1.5865,-1,0,ONA:SA:CVTI,Europe/Paris,0,ONA, +ONA:SP:CZIN1,1,"Chézine",47.233729,-1.598971,-1,0,ONA:SA:CZIN,Europe/Paris,0,ONA, +ONA:SP:CZIN2,1,"Chézine",47.233715,-1.599366,-1,0,ONA:SA:CZIN,Europe/Paris,0,ONA, +ONA:SP:DAKK1,1,"Danemark",47.260979,-1.498577,-1,0,ONA:SA:DAKK,Europe/Paris,2,ONA, +ONA:SP:DAKK2,1,"Danemark",47.261947,-1.49653,-1,0,ONA:SA:DAKK,Europe/Paris,2,ONA, +ONA:SP:DAKK3,1,"Danemark",47.261737,-1.497441,-1,0,ONA:SA:DAKK,Europe/Paris,0,ONA, +ONA:SP:DALB1,1,"Dalby",47.22508,-1.529848,-1,0,ONA:SA:DALB,Europe/Paris,2,ONA, +ONA:SP:DALB2,1,"Dalby",47.225551,-1.529221,-1,0,ONA:SA:DALB,Europe/Paris,2,ONA, +ONA:SP:DANU1,1,"Danube",47.304051,-1.50061,-1,0,ONA:SA:DANU,Europe/Paris,2,ONA, +ONA:SP:DANU2,1,"Danube",47.304055,-1.500478,-1,0,ONA:SA:DANU,Europe/Paris,2,ONA, +ONA:SP:DAVU1,1,"Davum",47.264934,-1.496082,-1,0,ONA:SA:DAVU,Europe/Paris,0,ONA, +ONA:SP:DAVU2,1,"Davum",47.26475,-1.496202,-1,0,ONA:SA:DAVU,Europe/Paris,0,ONA, +ONA:SP:DAYA1,1,"Dayat",47.200869,-1.674263,-1,0,ONA:SA:DAYA,Europe/Paris,2,ONA, +ONA:SP:DAYA2,1,"Dayat",47.201362,-1.675622,-1,0,ONA:SA:DAYA,Europe/Paris,2,ONA, +ONA:SP:DCAN1,1,"Duchesse Anne-Chateau",47.216305,-1.54706,-1,0,ONA:SA:DCAN,Europe/Paris,2,ONA, +ONA:SP:DCAN2,1,"Duchesse Anne-Chateau",47.216202,-1.547449,-1,0,ONA:SA:DCAN,Europe/Paris,2,ONA, +ONA:SP:DCAN3,1,"Duchesse Anne-Chateau",47.216314,-1.546796,-1,0,ONA:SA:DCAN,Europe/Paris,2,ONA, +ONA:SP:DCAN4,1,"Duchesse Anne-Chateau",47.21595,-1.546902,-1,0,ONA:SA:DCAN,Europe/Paris,2,ONA, +ONA:SP:DCFF1,1,"Du Chaffault",47.207481,-1.581576,-1,0,ONA:SA:DCFF,Europe/Paris,2,ONA, +ONA:SP:DCFF2,1,"Du Chaffault",47.207647,-1.581985,-1,0,ONA:SA:DCFF,Europe/Paris,2,ONA, +ONA:SP:DEMO1,1,"Desmoulins",47.232272,-1.52217,-1,0,ONA:SA:DEMO,Europe/Paris,2,ONA, +ONA:SP:DEMO2,1,"Desmoulins",47.233471,-1.521331,-1,0,ONA:SA:DEMO,Europe/Paris,2,ONA, +ONA:SP:DERV1,1,"Dervallières",47.228895,-1.598086,-1,0,ONA:SA:DERV,Europe/Paris,2,ONA, +ONA:SP:DERV2,1,"Dervallières",47.228801,-1.598211,-1,0,ONA:SA:DERV,Europe/Paris,2,ONA, +ONA:SP:DIAN1,1,"Diane",47.239663,-1.578115,-1,0,ONA:SA:DIAN,Europe/Paris,2,ONA, +ONA:SP:DIAN2,1,"Diane",47.239667,-1.577983,-1,0,ONA:SA:DIAN,Europe/Paris,2,ONA, +ONA:SP:DIDE1,1,"Espace Diderot",47.184446,-1.562319,-1,0,ONA:SA:DIDE,Europe/Paris,2,ONA, +ONA:SP:DIDE2,1,"Espace Diderot",47.184428,-1.562846,-1,0,ONA:SA:DIDE,Europe/Paris,2,ONA, +ONA:SP:DIDE3,1,"Espace Diderot",47.184334,-1.562971,-1,0,ONA:SA:DIDE,Europe/Paris,0,ONA, +ONA:SP:DIDE4,1,"Espace Diderot",47.183705,-1.562926,-1,0,ONA:SA:DIDE,Europe/Paris,2,ONA, +ONA:SP:DIDE5,1,"Espace Diderot",47.184496,-1.563512,-1,0,ONA:SA:DIDE,Europe/Paris,2,ONA, +ONA:SP:DLCR1,1,"Delacroix",47.223702,-1.589243,-1,0,ONA:SA:DLCR,Europe/Paris,2,ONA, +ONA:SP:DLCR2,1,"Delacroix",47.223608,-1.589368,-1,0,ONA:SA:DLCR,Europe/Paris,2,ONA, +ONA:SP:DLLE1,1,"Drillet",47.234835,-1.666231,-1,0,ONA:SA:DLLE,Europe/Paris,2,ONA, +ONA:SP:DLLE2,1,"Drillet",47.234764,-1.665697,-1,0,ONA:SA:DLLE,Europe/Paris,2,ONA, +ONA:SP:DLME3,1,"Delorme",47.215708,-1.56473,-1,0,ONA:SA:DLME,Europe/Paris,2,ONA, +ONA:SP:DLME4,1,"Delorme",47.215187,-1.564163,-1,0,ONA:SA:DLME,Europe/Paris,2,ONA, +ONA:SP:DMAI1,1,"Domaine",47.178409,-1.470867,-1,0,ONA:SA:DMAI,Europe/Paris,2,ONA, +ONA:SP:DMAI2,1,"Domaine",47.178324,-1.470729,-1,0,ONA:SA:DMAI,Europe/Paris,2,ONA, +ONA:SP:DMUR1,1,"Dumont d'Urville",47.225872,-1.636339,-1,0,ONA:SA:DMUR,Europe/Paris,2,ONA, +ONA:SP:DMUR2,1,"Dumont d'Urville",47.225782,-1.636333,-1,0,ONA:SA:DMUR,Europe/Paris,2,ONA, +ONA:SP:DNAI1,1,"Danais",47.213604,-1.589559,-1,0,ONA:SA:DNAI,Europe/Paris,2,ONA, +ONA:SP:DNAI2,1,"Danais",47.213779,-1.589704,-1,0,ONA:SA:DNAI,Europe/Paris,2,ONA, +ONA:SP:DOC99,1,"Doucet",47.277969,-1.632669,-1,0,ONA:SA:DOCE,Europe/Paris,2,ONA, +ONA:SP:DOLT1,1,"Dolto",47.21651,-1.636173,-1,0,ONA:SA:DOLT,Europe/Paris,2,ONA, +ONA:SP:DOLT2,1,"Dolto",47.216411,-1.63643,-1,0,ONA:SA:DOLT,Europe/Paris,2,ONA, +ONA:SP:DOME1,1,"Doumer",47.222269,-1.578429,-1,0,ONA:SA:DOME,Europe/Paris,0,ONA, +ONA:SP:DOME2,1,"Doumer",47.221815,-1.578528,-1,0,ONA:SA:DOME,Europe/Paris,2,ONA, +ONA:SP:DOTT1,1,"Douettée",47.20776,-1.498331,-1,0,ONA:SA:DOTT,Europe/Paris,2,ONA, +ONA:SP:DOTT2,1,"Douettée",47.207823,-1.499129,-1,0,ONA:SA:DOTT,Europe/Paris,2,ONA, +ONA:SP:DPTE1,1,"Déportés",47.196358,-1.491832,-1,0,ONA:SA:DPTE,Europe/Paris,2,ONA, +ONA:SP:DPTE2,1,"Déportés",47.197153,-1.492286,-1,0,ONA:SA:DPTE,Europe/Paris,0,ONA, +ONA:SP:DRAD1,1,"Désirade",47.278198,-1.484462,-1,0,ONA:SA:DRAD,Europe/Paris,0,ONA, +ONA:SP:DRAD2,1,"Désirade",47.277668,-1.484159,-1,0,ONA:SA:DRAD,Europe/Paris,0,ONA, +ONA:SP:DRID1,1,"Druides",47.238619,-1.50742,-1,0,ONA:SA:DRID,Europe/Paris,2,ONA, +ONA:SP:DRID2,1,"Druides",47.238619,-1.50742,-1,0,ONA:SA:DRID,Europe/Paris,2,ONA, +ONA:SP:DROI1,1,"Droitière",47.308217,-1.373137,-1,0,ONA:SA:DROI,Europe/Paris,0,ONA, +ONA:SP:DROI2,1,"Droitière",47.308217,-1.373137,-1,0,ONA:SA:DROI,Europe/Paris,0,ONA, +ONA:SP:DSAI1,1,"Desaix",47.227552,-1.542059,-1,0,OPL:SA:AST-25244-A-25244-R,Europe/Paris,2,ONA, +ONA:SP:DSAI2,1,"Desaix",47.226249,-1.543286,-1,0,OPL:SA:AST-25244-A-25244-R,Europe/Paris,2,ONA, +ONA:SP:DSNE1,1,"Desnerie",47.277957,-1.540291,-1,0,ONA:SA:DSNE,Europe/Paris,0,ONA, +ONA:SP:DSNE2,1,"Desnerie",47.27794,-1.540819,-1,0,ONA:SA:DSNE,Europe/Paris,0,ONA, +ONA:SP:DUKA1,1,"Dukas",47.235229,-1.602519,-1,0,ONA:SA:DUKA,Europe/Paris,2,ONA, +ONA:SP:DUKA2,1,"Dukas",47.234883,-1.602097,-1,0,ONA:SA:DUKA,Europe/Paris,0,ONA, +ONA:SP:DUNA1,1,"Dunant",47.243915,-1.521423,-1,0,ONA:SA:DUNA,Europe/Paris,2,ONA, +ONA:SP:DUNA2,1,"Dunant",47.24392,-1.521291,-1,0,ONA:SA:DUNA,Europe/Paris,2,ONA, +ONA:SP:EBCA1,1,"Embarcadère",47.194085,-1.646533,-1,0,ONA:SA:EBCA,Europe/Paris,2,ONA, +ONA:SP:EBCA2,1,"Embarcadère",47.193352,-1.646875,-1,0,ONA:SA:EBCA,Europe/Paris,2,ONA, +ONA:SP:ECBU1,1,"Ecobuts",47.193935,-1.507779,-1,0,ONA:SA:ECBU,Europe/Paris,2,ONA, +ONA:SP:ECBU2,1,"Ecobuts",47.19394,-1.507647,-1,0,ONA:SA:ECBU,Europe/Paris,0,ONA, +ONA:SP:ECHO1,1,"Echoppes",47.143997,-1.685584,-1,0,ONA:SA:ECHO,Europe/Paris,2,ONA, +ONA:SP:ECHO2,1,"Echoppes",47.143916,-1.685314,-1,0,ONA:SA:ECHO,Europe/Paris,2,ONA, +ONA:SP:ECHO3,1,"Echoppes",47.143102,-1.686454,-1,0,ONA:SA:ECHO,Europe/Paris,2,ONA, +ONA:SP:ECHO4,1,"Echoppes",47.142974,-1.686497,-1,0,ONA:SA:ECHO,Europe/Paris,2,ONA, +ONA:SP:ECLI1,1,"Echalier",47.214571,-1.46128,-1,0,ONA:SA:ECLI,Europe/Paris,0,ONA, +ONA:SP:ECLI2,1,"Echalier",47.215182,-1.461852,-1,0,ONA:SA:ECLI,Europe/Paris,0,ONA, +ONA:SP:ECOS1,1,"Ecosse",47.21511,-1.526352,-1,0,ONA:SA:ECOS,Europe/Paris,2,ONA, +ONA:SP:ECOS2,1,"Ecosse",47.215204,-1.526227,-1,0,ONA:SA:ECOS,Europe/Paris,2,ONA, +ONA:SP:ECSU1,1,"Ecole Centrale-Audencia",47.248776,-1.551006,-1,0,ONA:SA:ECSU,Europe/Paris,2,ONA, +ONA:SP:ECSU2,1,"Ecole Centrale-Audencia",47.248493,-1.551382,-1,0,ONA:SA:ECSU,Europe/Paris,2,ONA, +ONA:SP:ECSU3,1,"Ecole Centrale-Audencia",47.248578,-1.55152,-1,0,ONA:SA:ECSU,Europe/Paris,0,ONA, +ONA:SP:ECSU4,1,"Ecole Centrale-Audencia",47.248951,-1.551151,-1,0,ONA:SA:ECSU,Europe/Paris,0,ONA, +ONA:SP:ECSU5,1,"Ecole Centrale-Audencia",47.248125,-1.551619,-1,0,ONA:SA:ECSU,Europe/Paris,2,ONA, +ONA:SP:ECSU6,1,"Ecole Centrale-Audencia",47.247667,-1.551851,-1,0,ONA:SA:ECSU,Europe/Paris,2,ONA, +ONA:SP:ECTE1,1,"Enchanterie",47.230418,-1.523755,-1,0,ONA:SA:ECTE,Europe/Paris,0,ONA, +ONA:SP:ECTE2,1,"Enchanterie",47.2307,-1.523379,-1,0,ONA:SA:ECTE,Europe/Paris,0,ONA, +ONA:SP:EDNA1,1,"Edit de Nantes",47.214406,-1.5686,-1,0,ONA:SA:EDNA,Europe/Paris,2,ONA, +ONA:SP:EDNA2,1,"Edit de Nantes",47.214501,-1.568475,-1,0,ONA:SA:EDNA,Europe/Paris,2,ONA, +ONA:SP:EDRE1,1,"Erdreau",47.29115,-1.501272,-1,0,ONA:SA:EDRE,Europe/Paris,0,ONA, +ONA:SP:EDRE2,1,"Erdreau",47.291051,-1.50153,-1,0,ONA:SA:EDRE,Europe/Paris,0,ONA, +ONA:SP:EGLA1,1,"Eglantine",47.23518,-1.588102,-1,0,ONA:SA:EGLA,Europe/Paris,2,ONA, +ONA:SP:EGLA2,1,"Eglantine",47.235171,-1.588365,-1,0,ONA:SA:EGLA,Europe/Paris,2,ONA, +ONA:SP:EGLI1,1,"Egalité",47.209229,-1.588445,-1,0,ONA:SA:EGLI,Europe/Paris,2,ONA, +ONA:SP:EGLI2,1,"Egalité",47.209395,-1.588854,-1,0,ONA:SA:EGLI,Europe/Paris,2,ONA, +ONA:SP:EGLI3,1,"Egalité",47.209363,-1.587133,-1,0,ONA:SA:EGLI,Europe/Paris,2,ONA, +ONA:SP:EGLI4,1,"Egalité",47.208371,-1.587192,-1,0,ONA:SA:EGLI,Europe/Paris,0,ONA, +ONA:SP:EINS1,1,"Einstein",47.263955,-1.570897,-1,0,ONA:SA:EINS,Europe/Paris,2,ONA, +ONA:SP:EINS2,1,"Einstein",47.26413,-1.571042,-1,0,ONA:SA:EINS,Europe/Paris,2,ONA, +ONA:SP:EMBE1,1,"Embellie",47.264721,-1.518691,-1,0,ONA:SA:EMBE,Europe/Paris,2,ONA, +ONA:SP:EMBE2,1,"Embellie",47.265543,-1.518354,-1,0,ONA:SA:EMBE,Europe/Paris,2,ONA, +ONA:SP:ENCO1,1,"Ennerie Corbon",47.141976,-1.704706,-1,0,ONA:SA:ENCO,Europe/Paris,0,ONA, +ONA:SP:ENCO2,1,"Ennerie Corbon",47.141872,-1.705095,-1,0,ONA:SA:ENCO,Europe/Paris,0,ONA, +ONA:SP:EPEL1,1,"Ecoles",47.197788,-1.759274,-1,0,ONA:SA:EPEL,Europe/Paris,2,ONA, +ONA:SP:EPEL2,1,"Ecoles",47.197523,-1.759121,-1,0,ONA:SA:EPEL,Europe/Paris,2,ONA, +ONA:SP:EPIN1,1,"Epinais",47.136326,-1.61056,-1,0,ONA:SA:EPIN,Europe/Paris,0,ONA, +ONA:SP:EPIN2,1,"Epinais",47.136147,-1.610546,-1,0,ONA:SA:EPIN,Europe/Paris,0,ONA, +ONA:SP:EPYY1,1,"Epinay",47.292346,-1.48693,-1,0,ONA:SA:EPYY,Europe/Paris,0,ONA, +ONA:SP:EPYY2,1,"Epinay",47.292257,-1.486923,-1,0,ONA:SA:EPYY,Europe/Paris,2,ONA, +ONA:SP:EQPE1,1,"Equipement",47.223809,-1.575501,-1,0,ONA:SA:EQPE,Europe/Paris,2,ONA, +ONA:SP:EQPE2,1,"Equipement",47.22389,-1.575771,-1,0,ONA:SA:EQPE,Europe/Paris,2,ONA, +ONA:SP:ERAC1,1,"Erdre Active",47.283147,-1.543977,-1,0,ONA:SA:ERAC,Europe/Paris,0,ONA, +ONA:SP:ERAC2,1,"Erdre Active",47.283143,-1.544109,-1,0,ONA:SA:ERAC,Europe/Paris,0,ONA, +ONA:SP:ERDI1,1,"Eraudière",47.241757,-1.534757,-1,0,ONA:SA:ERDI,Europe/Paris,2,ONA, +ONA:SP:ERDI2,1,"Eraudière",47.241573,-1.534876,-1,0,ONA:SA:ERDI,Europe/Paris,2,ONA, +ONA:SP:ERDI3,1,"Eraudière",47.242642,-1.535218,-1,0,ONA:SA:ERDI,Europe/Paris,0,ONA, +ONA:SP:ERDI4,1,"Eraudière",47.243015,-1.534848,-1,0,ONA:SA:ERDI,Europe/Paris,0,ONA, +ONA:SP:ESCA1,1,"Escall",47.199408,-1.503018,-1,0,ONA:SA:ESCA,Europe/Paris,2,ONA, +ONA:SP:ESCA2,1,"Escall",47.199489,-1.503288,-1,0,ONA:SA:ESCA,Europe/Paris,2,ONA, +ONA:SP:ESOR1,1,"Ecoles",47.145449,-1.527534,-1,0,ONA:SA:ESOR,Europe/Paris,2,ONA, +ONA:SP:ESOR2,1,"Ecoles",47.146663,-1.528941,-1,0,ONA:SA:ESOR,Europe/Paris,2,ONA, +ONA:SP:ESSO1,1,"Esso",47.194753,-1.627158,-1,0,ONA:SA:ESSO,Europe/Paris,0,ONA, +ONA:SP:ESSO2,1,"Esso",47.194663,-1.627151,-1,0,ONA:SA:ESSO,Europe/Paris,0,ONA, +ONA:SP:ESUE1,1,"Eugène Sue",47.233378,-1.596036,-1,0,ONA:SA:ESUE,Europe/Paris,0,ONA, +ONA:SP:ESUE2,1,"Eugène Sue",47.233199,-1.596022,-1,0,ONA:SA:ESUE,Europe/Paris,0,ONA, +ONA:SP:EUCA1,1,"Europe",47.260165,-1.504075,-1,0,ONA:SA:EUCA,Europe/Paris,0,ONA, +ONA:SP:EUCA2,1,"Europe",47.261198,-1.502826,-1,0,ONA:SA:EUCA,Europe/Paris,0,ONA, +ONA:SP:EUVE1,1,"Europe",47.173006,-1.476295,-1,0,ONA:SA:EUVE,Europe/Paris,2,ONA, +ONA:SP:EUVE2,1,"Europe",47.173087,-1.476565,-1,0,ONA:SA:EUVE,Europe/Paris,2,ONA, +ONA:SP:EVET1,1,"Ecole Vétérinaire",47.289987,-1.522632,-1,0,ONA:SA:EVET,Europe/Paris,2,ONA, +ONA:SP:EVET2,1,"Ecole Vétérinaire",47.290949,-1.523496,-1,0,ONA:SA:EVET,Europe/Paris,2,ONA, +ONA:SP:EVRD1,1,"Evardière",47.298791,-1.566164,-1,0,ONA:SA:EVRD,Europe/Paris,0,ONA, +ONA:SP:EVRD2,1,"Evardière",47.298233,-1.564005,-1,0,ONA:SA:EVRD,Europe/Paris,0,ONA, +ONA:SP:FACU1,1,"Facultés",47.245848,-1.555025,-1,0,ONA:SA:FACU,Europe/Paris,2,ONA, +ONA:SP:FACU2,1,"Facultés",47.245655,-1.555408,-1,0,ONA:SA:FACU,Europe/Paris,2,ONA, +ONA:SP:FACU3,1,"Facultés",47.246733,-1.555486,-1,0,ONA:SA:FACU,Europe/Paris,2,ONA, +ONA:SP:FADI1,1,"Fardière",47.198513,-1.606821,-1,0,ONA:SA:FADI,Europe/Paris,2,ONA, +ONA:SP:FADI2,1,"Fardière",47.198118,-1.605206,-1,0,ONA:SA:FADI,Europe/Paris,2,ONA, +ONA:SP:FALI1,1,"Fallières",47.224852,-1.579279,-1,0,ONA:SA:FALI,Europe/Paris,2,ONA, +ONA:SP:FALI2,1,"Fallières",47.225027,-1.579424,-1,0,ONA:SA:FALI,Europe/Paris,2,ONA, +ONA:SP:FAME1,1,"Frère Amieux",47.202102,-1.60986,-1,0,ONA:SA:FAME,Europe/Paris,2,ONA, +ONA:SP:FAME2,1,"Frère Amieux",47.201743,-1.609834,-1,0,ONA:SA:FAME,Europe/Paris,2,ONA, +ONA:SP:FANE1,1,"Faneurs",47.213751,-1.702593,-1,0,ONA:SA:FANE,Europe/Paris,2,ONA, +ONA:SP:FANE2,1,"Faneurs",47.213679,-1.702059,-1,0,ONA:SA:FANE,Europe/Paris,2,ONA, +ONA:SP:FATA1,1,"Fantaisie",47.25353,-1.575559,-1,0,ONA:SA:FATA,Europe/Paris,0,ONA, +ONA:SP:FATA2,1,"Fantaisie",47.253565,-1.574503,-1,0,ONA:SA:FATA,Europe/Paris,0,ONA, +ONA:SP:FAUV1,1,"Fauvelière",47.283,-1.505319,-1,0,ONA:SA:FAUV,Europe/Paris,0,ONA, +ONA:SP:FAUV2,1,"Fauvelière",47.282833,-1.50491,-1,0,ONA:SA:FAUV,Europe/Paris,0,ONA, +ONA:SP:FBLA2,1,"Fresche Blanc",47.253126,-1.5582,-1,0,ONA:SA:FBLA,Europe/Paris,0,ONA, +ONA:SP:FBLA3,1,"Fresche Blanc",47.252812,-1.556855,-1,0,ONA:SA:FBLA,Europe/Paris,2,ONA, +ONA:SP:FDAY1,1,"Faraday",47.226646,-1.616431,-1,0,ONA:SA:FDAY,Europe/Paris,0,ONA, +ONA:SP:FDAY2,1,"Faraday",47.226731,-1.61657,-1,0,ONA:SA:FDAY,Europe/Paris,0,ONA, +ONA:SP:FDDR2,1,"Fac de Droit",47.243875,-1.552104,-1,0,ONA:SA:FDDR,Europe/Paris,2,ONA, +ONA:SP:FDDR3,1,"Fac de Droit",47.24379,-1.551965,-1,0,ONA:SA:FDDR,Europe/Paris,2,ONA, +ONA:SP:FDLE1,1,"Fac de Lettres",47.245596,-1.551832,-1,0,ONA:SA:FDLE,Europe/Paris,2,ONA, +ONA:SP:FDLE2,1,"Fac de Lettres",47.245416,-1.551819,-1,0,ONA:SA:FDLE,Europe/Paris,2,ONA, +ONA:SP:FER58,1,"Ferrière",47.243257,-1.591604,-1,0,ONA:SA:FERI,Europe/Paris,0,ONA, +ONA:SP:FER59,1,"Ferrière",47.243261,-1.591472,-1,0,ONA:SA:FERI,Europe/Paris,0,ONA, +ONA:SP:FERI1,1,"Ferrière",47.243351,-1.591479,-1,0,ONA:SA:FERI,Europe/Paris,2,ONA, +ONA:SP:FERI2,1,"Ferrière",47.243077,-1.591591,-1,0,ONA:SA:FERI,Europe/Paris,2,ONA, +ONA:SP:FERI3,1,"Ferrière",47.244357,-1.591024,-1,0,ONA:SA:FERI,Europe/Paris,2,ONA, +ONA:SP:FERI4,1,"Ferrière",47.244456,-1.590766,-1,0,ONA:SA:FERI,Europe/Paris,2,ONA, +ONA:SP:FFAU1,1,"Félix Faure",47.227335,-1.569809,-1,0,ONA:SA:FFAU,Europe/Paris,2,ONA, +ONA:SP:FFAU2,1,"Félix Faure",47.226989,-1.569387,-1,0,ONA:SA:FFAU,Europe/Paris,2,ONA, +ONA:SP:FFAU3,1,"Félix Faure",47.227142,-1.570191,-1,0,ONA:SA:FFAU,Europe/Paris,2,ONA, +ONA:SP:FFAU4,1,"Félix Faure",47.22778,-1.569973,-1,0,ONA:SA:FFAU,Europe/Paris,2,ONA, +ONA:SP:FGRI1,1,"Fief Guérin",47.143961,-1.660761,-1,0,ONA:SA:FGRI,Europe/Paris,0,ONA, +ONA:SP:FGRI2,1,"Fief Guérin",47.14388,-1.660491,-1,0,ONA:SA:FGRI,Europe/Paris,0,ONA, +ONA:SP:FIRC1,1,"Firmin Colas",47.203733,-1.606941,-1,0,ONA:SA:FIRC,Europe/Paris,0,ONA, +ONA:SP:FIRC2,1,"Firmin Colas",47.203729,-1.607073,-1,0,ONA:SA:FIRC,Europe/Paris,2,ONA, +ONA:SP:FLAN1,1,"Flandre",47.285646,-1.547335,-1,0,ONA:SA:FLAN,Europe/Paris,2,ONA, +ONA:SP:FLAN2,1,"Flandre",47.285754,-1.546813,-1,0,ONA:SA:FLAN,Europe/Paris,2,ONA, +ONA:SP:FLEU1,1,"Fleuriaye",47.298506,-1.499418,-1,0,ONA:SA:FLEU,Europe/Paris,2,ONA, +ONA:SP:FLEU2,1,"Fleuriaye",47.298412,-1.499544,-1,0,ONA:SA:FLEU,Europe/Paris,0,ONA, +ONA:SP:FLEU3,1,"Fleuriaye",47.299109,-1.500256,-1,0,ONA:SA:FLEU,Europe/Paris,0,ONA, +ONA:SP:FLEU4,1,"Fleuriaye",47.298934,-1.500111,-1,0,ONA:SA:FLEU,Europe/Paris,0,ONA, +ONA:SP:FLRI1,1,"Floride",47.213486,-1.603562,-1,0,ONA:SA:FLRI,Europe/Paris,2,ONA, +ONA:SP:FLRI2,1,"Floride",47.213477,-1.603826,-1,0,ONA:SA:FLRI,Europe/Paris,2,ONA, +ONA:SP:FLUR1,1,"Fleurs",47.215833,-1.717689,-1,0,ONA:SA:FLUR,Europe/Paris,2,ONA, +ONA:SP:FLUR2,1,"Fleurs",47.215909,-1.718091,-1,0,ONA:SA:FLUR,Europe/Paris,2,ONA, +ONA:SP:FMIT1,1,"François Mitterrand",47.222035,-1.637905,-1,0,OPL:SA:AST-27423-A-27423-R,Europe/Paris,2,ONA, +ONA:SP:FMIT2,1,"François Mitterrand",47.222102,-1.638571,-1,0,OPL:SA:AST-27423-A-27423-R,Europe/Paris,2,ONA, +ONA:SP:FMIT4,1,"François Mitterrand",47.22194,-1.63803,-1,0,OPL:SA:AST-27423-A-27423-R,Europe/Paris,2,ONA, +ONA:SP:FMIT5,1,"François Mitterrand",47.22203,-1.638037,-1,0,OPL:SA:AST-27423-A-27423-R,Europe/Paris,2,ONA, +ONA:SP:FMIT7,1,"François Mitterrand",47.222272,-1.638848,-1,0,OPL:SA:AST-27423-A-27423-R,Europe/Paris,2,ONA, +ONA:SP:FNLL1,1,"Fresnel",47.242861,-1.523331,-1,0,ONA:SA:FNLL,Europe/Paris,0,ONA, +ONA:SP:FNLL2,1,"Fresnel",47.24304,-1.523344,-1,0,ONA:SA:FNLL,Europe/Paris,2,ONA, +ONA:SP:FNSO1,1,"Fenaison",47.269707,-1.592489,-1,0,ONA:SA:FNSO,Europe/Paris,2,ONA, +ONA:SP:FOCH1,1,"Foch-Cathédrale",47.219347,-1.550321,-1,0,ONA:SA:FOCH,Europe/Paris,2,ONA, +ONA:SP:FOCH2,1,"Foch-Cathédrale",47.219258,-1.550315,-1,0,ONA:SA:FOCH,Europe/Paris,2,ONA, +ONA:SP:FOCH3,1,"Foch-Cathédrale",47.219253,-1.550446,-1,0,ONA:SA:FOCH,Europe/Paris,2,ONA, +ONA:SP:FOCH4,1,"Foch-Cathédrale",47.218799,-1.550546,-1,0,ONA:SA:FOCH,Europe/Paris,2,ONA, +ONA:SP:FOCH5,1,"Foch-Cathédrale",47.219792,-1.550486,-1,0,ONA:SA:FOCH,Europe/Paris,2,ONA, +ONA:SP:FOND1,1,"Fonderies",47.206412,-1.543963,-1,0,ONA:SA:FOND,Europe/Paris,2,ONA, +ONA:SP:FOND2,1,"Fonderies",47.206421,-1.543699,-1,0,ONA:SA:FOND,Europe/Paris,2,ONA, +ONA:SP:FORU2,1,"Forum d'Orvault",47.254431,-1.615179,-1,0,ONA:SA:FORU,Europe/Paris,0,ONA, +ONA:SP:FORU3,1,"Forum d'Orvault",47.254071,-1.615152,-1,0,ONA:SA:FORU,Europe/Paris,2,ONA, +ONA:SP:FOTA1,1,"Fontaine",47.205353,-1.489436,-1,0,ONA:SA:FOTA,Europe/Paris,0,ONA, +ONA:SP:FOTA2,1,"Fontaine",47.205542,-1.489185,-1,0,ONA:SA:FOTA,Europe/Paris,0,ONA, +ONA:SP:FOUL1,1,"Foulquier",47.309737,-1.546041,-1,0,ONA:SA:FOUL,Europe/Paris,2,ONA, +ONA:SP:FOUL2,1,"Foulquier",47.309818,-1.546312,-1,0,ONA:SA:FOUL,Europe/Paris,2,ONA, +ONA:SP:FRAC1,1,"Frachon",47.21895,-1.620225,-1,0,ONA:SA:FRAC,Europe/Paris,2,ONA, +ONA:SP:FRAC2,1,"Frachon",47.219112,-1.620766,-1,0,ONA:SA:FRAC,Europe/Paris,2,ONA, +ONA:SP:FRBA1,1,"Frébaudière",47.272234,-1.626552,-1,0,ONA:SA:FRBA,Europe/Paris,2,ONA, +ONA:SP:FRBA2,1,"Frébaudière",47.272306,-1.627087,-1,0,ONA:SA:FRBA,Europe/Paris,2,ONA, +ONA:SP:FRCH1,1,"Fraîches",47.17455,-1.48948,-1,0,ONA:SA:FRCH,Europe/Paris,2,ONA, +ONA:SP:FRCH2,1,"Fraîches",47.174875,-1.49056,-1,0,ONA:SA:FRCH,Europe/Paris,2,ONA, +ONA:SP:FRET1,1,"Forêt",47.244348,-1.575416,-1,0,ONA:SA:FRET,Europe/Paris,2,ONA, +ONA:SP:FRET2,1,"Forêt",47.244253,-1.575541,-1,0,ONA:SA:FRET,Europe/Paris,2,ONA, +ONA:SP:FRGA1,1,"Frégate",47.235259,-1.475708,-1,0,ONA:SA:FRGA,Europe/Paris,0,ONA, +ONA:SP:FRGA2,1,"Frégate",47.235246,-1.476104,-1,0,ONA:SA:FRGA,Europe/Paris,0,ONA, +ONA:SP:FRII1,1,"François II",47.21839,-1.683245,-1,0,ONA:SA:FRII,Europe/Paris,2,ONA, +ONA:SP:FRII2,1,"François II",47.218328,-1.682447,-1,0,ONA:SA:FRII,Europe/Paris,2,ONA, +ONA:SP:FRKL1,1,"Franklin",47.22651,-1.620388,-1,0,ONA:SA:FRKL,Europe/Paris,0,ONA, +ONA:SP:FRKL2,1,"Franklin",47.226861,-1.620678,-1,0,ONA:SA:FRKL,Europe/Paris,0,ONA, +ONA:SP:FRMO1,1,"Frémoire",47.152426,-1.474962,-1,0,ONA:SA:FRMO,Europe/Paris,0,ONA, +ONA:SP:FRMO2,1,"Frémoire",47.15337,-1.476349,-1,0,ONA:SA:FRMO,Europe/Paris,0,ONA, +ONA:SP:FRNE1,1,"Frênes",47.253234,-1.487704,-1,0,ONA:SA:FRNE,Europe/Paris,2,ONA, +ONA:SP:FRNE2,1,"Frênes",47.253238,-1.487572,-1,0,ONA:SA:FRNE,Europe/Paris,2,ONA, +ONA:SP:FRON3,1,"Frêne Rond",47.190351,-1.496423,-1,0,ONA:SA:FRON,Europe/Paris,2,ONA, +ONA:SP:FRON4,1,"Frêne Rond",47.190261,-1.496417,-1,0,ONA:SA:FRON,Europe/Paris,2,ONA, +ONA:SP:FTAB1,1,"Félix Tableau",47.187487,-1.546951,-1,0,ONA:SA:FTAB,Europe/Paris,2,ONA, +ONA:SP:FTAB2,1,"Félix Tableau",47.187402,-1.546812,-1,0,ONA:SA:FTAB,Europe/Paris,2,ONA, +ONA:SP:FTAB3,1,"Félix Tableau",47.188013,-1.547385,-1,0,ONA:SA:FTAB,Europe/Paris,2,ONA, +ONA:SP:FTAB4,1,"Félix Tableau",47.188314,-1.546482,-1,0,ONA:SA:FTAB,Europe/Paris,2,ONA, +ONA:SP:FTDO1,1,"Fructidor",47.240109,-1.559633,-1,0,ONA:SA:FTDO,Europe/Paris,0,ONA, +ONA:SP:FTDO2,1,"Fructidor",47.23952,-1.561045,-1,0,ONA:SA:FTDO,Europe/Paris,2,ONA, +ONA:SP:GADO1,1,"Gandonnière",47.307039,-1.540549,-1,0,ONA:SA:GADO,Europe/Paris,0,ONA, +ONA:SP:GADO2,1,"Gandonnière",47.307129,-1.540555,-1,0,ONA:SA:GADO,Europe/Paris,0,ONA, +ONA:SP:GAGN1,1,"Gagnerie",47.232231,-1.507226,-1,0,ONA:SA:GAGN,Europe/Paris,2,ONA, +ONA:SP:GAGN2,1,"Gagnerie",47.232226,-1.507358,-1,0,ONA:SA:GAGN,Europe/Paris,2,ONA, +ONA:SP:GAIL1,1,"Garillère",47.192511,-1.520757,-1,0,ONA:SA:GAIL,Europe/Paris,2,ONA, +ONA:SP:GAIL2,1,"Garillère",47.192408,-1.521146,-1,0,ONA:SA:GAIL,Europe/Paris,2,ONA, +ONA:SP:GALH1,1,"Galheur",47.165973,-1.58118,-1,0,ONA:SA:GALH,Europe/Paris,0,ONA, +ONA:SP:GALH2,1,"Galheur",47.166637,-1.580172,-1,0,ONA:SA:GALH,Europe/Paris,2,ONA, +ONA:SP:GAMB1,1,"Gambetta",47.22353,-1.538462,-1,0,ONA:SA:GAMB,Europe/Paris,2,ONA, +ONA:SP:GAMB2,1,"Gambetta",47.223431,-1.538719,-1,0,ONA:SA:GAMB,Europe/Paris,0,ONA, +ONA:SP:GARO1,1,"Garotterie",47.12621,-1.627103,-1,0,ONA:SA:GARO,Europe/Paris,0,ONA, +ONA:SP:GARO2,1,"Garotterie",47.12621,-1.627103,-1,0,ONA:SA:GARO,Europe/Paris,0,ONA, +ONA:SP:GASS1,1,"Gassendi",47.199875,-1.580094,-1,0,ONA:SA:GASS,Europe/Paris,0,ONA, +ONA:SP:GASS2,1,"Gassendi",47.199988,-1.579442,-1,0,ONA:SA:GASS,Europe/Paris,0,ONA, +ONA:SP:GATI1,1,"Gâtine",47.213411,-1.660662,-1,0,ONA:SA:GATI,Europe/Paris,2,ONA, +ONA:SP:GATI2,1,"Gâtine",47.21325,-1.660121,-1,0,ONA:SA:GATI,Europe/Paris,2,ONA, +ONA:SP:GAUT1,1,"Gautellerie",47.177423,-1.601965,-1,0,ONA:SA:GAUT,Europe/Paris,2,ONA, +ONA:SP:GAUT2,1,"Gautellerie",47.177418,-1.602097,-1,0,ONA:SA:GAUT,Europe/Paris,2,ONA, +ONA:SP:GBLO1,1,"Grand Blottereau",47.229758,-1.511147,-1,0,ONA:SA:GBLO,Europe/Paris,2,ONA, +ONA:SP:GBLO2,1,"Grand Blottereau",47.229754,-1.511279,-1,0,ONA:SA:GBLO,Europe/Paris,2,ONA, +ONA:SP:GBNI1,1,"Guiblinière",47.292317,-1.520286,-1,0,ONA:SA:GBNI,Europe/Paris,2,ONA, +ONA:SP:GBNI2,1,"Guiblinière",47.292403,-1.520424,-1,0,ONA:SA:GBNI,Europe/Paris,2,ONA, +ONA:SP:GBTA1,1,"Grande-Bretagne",47.262203,-1.502369,-1,0,ONA:SA:GBTA,Europe/Paris,0,ONA, +ONA:SP:GBTA2,1,"Grande-Bretagne",47.262298,-1.502244,-1,0,ONA:SA:GBTA,Europe/Paris,0,ONA, +ONA:SP:GCAR1,1,"Grand Carcouët",47.23151,-1.592725,-1,0,OPL:SA:AST-26233-A-26233-R,Europe/Paris,2,ONA, +ONA:SP:GCAR2,1,"Grand Carcouët",47.231505,-1.592857,-1,0,OPL:SA:AST-26233-A-26233-R,Europe/Paris,2,ONA, +ONA:SP:GCAR3,1,"Grand Carcouët",47.231092,-1.591768,-1,0,OPL:SA:AST-26233-A-26233-R,Europe/Paris,2,ONA, +ONA:SP:GCAR4,1,"Grand Carcouët",47.231348,-1.592184,-1,0,OPL:SA:AST-26233-A-26233-R,Europe/Paris,2,ONA, +ONA:SP:GCEN1,1,"Grande Censive",47.252468,-1.548364,-1,0,ONA:SA:GCEN,Europe/Paris,2,ONA, +ONA:SP:GCEN2,1,"Grande Censive",47.252145,-1.549928,-1,0,ONA:SA:GCEN,Europe/Paris,2,ONA, +ONA:SP:GCEN3,1,"Grande Censive",47.251345,-1.549605,-1,0,ONA:SA:GCEN,Europe/Paris,2,ONA, +ONA:SP:GCH98,1,"Gachet 1",47.293276,-1.523929,-1,0,ONA:SA:GCHE,Europe/Paris,0,ONA, +ONA:SP:GCHE1,1,"Gachet 1",47.293366,-1.523936,-1,0,ONA:SA:GCHE,Europe/Paris,2,ONA, +ONA:SP:GCHE2,1,"Gachet 2",47.292643,-1.524016,-1,0,ONA:SA:GCHE,Europe/Paris,2,ONA, +ONA:SP:GCOU1,1,"Gauchoux",47.14604,-1.60045,-1,0,ONA:SA:GCOU,Europe/Paris,0,ONA, +ONA:SP:GCOU2,1,"Gauchoux",47.146148,-1.599929,-1,0,ONA:SA:GCOU,Europe/Paris,0,ONA, +ONA:SP:GCSO1,1,"Glacisol",47.25168,-1.504656,-1,0,ONA:SA:GCSO,Europe/Paris,2,ONA, +ONA:SP:GCSO2,1,"Glacisol",47.251599,-1.504386,-1,0,ONA:SA:GCSO,Europe/Paris,2,ONA, +ONA:SP:GDCH2,1,"Gare de Chantenay",47.197782,-1.593949,-1,0,ONA:SA:GDCH,Europe/Paris,2,ONA, +ONA:SP:GDCH3,1,"Gare de Chantenay",47.197886,-1.59356,-1,0,ONA:SA:GDCH,Europe/Paris,2,ONA, +ONA:SP:GDCH4,1,"Gare de Chantenay",47.197796,-1.593553,-1,0,ONA:SA:GDCH,Europe/Paris,2,ONA, +ONA:SP:GDCH5,1,"Gare de Chantenay",47.197836,-1.59501,-1,0,ONA:SA:GDCH,Europe/Paris,2,ONA, +ONA:SP:GDEN1,1,"Goldens",47.161756,-1.500451,-1,0,ONA:SA:GDEN,Europe/Paris,2,ONA, +ONA:SP:GDEN2,1,"Goldens",47.161962,-1.499674,-1,0,ONA:SA:GDEN,Europe/Paris,2,ONA, +ONA:SP:GDNN1,1,"Gendronnerie",47.127328,-1.639064,-1,0,ONA:SA:GDNN,Europe/Paris,2,ONA, +ONA:SP:GDNN2,1,"Gendronnerie",47.127023,-1.640097,-1,0,ONA:SA:GDNN,Europe/Paris,2,ONA, +ONA:SP:GDOU1,1,"Grande Ouche",47.181354,-1.579135,-1,0,ONA:SA:GDOU,Europe/Paris,2,ONA, +ONA:SP:GDOU2,1,"Grande Ouche",47.181336,-1.579663,-1,0,ONA:SA:GDOU,Europe/Paris,2,ONA, +ONA:SP:GDPI1,1,"Grande Pièce",47.198964,-1.510915,-1,0,ONA:SA:GDPI,Europe/Paris,0,ONA, +ONA:SP:GDPI2,1,"Grande Pièce",47.199072,-1.510394,-1,0,ONA:SA:GDPI,Europe/Paris,2,ONA, +ONA:SP:GDRE1,1,"Guindré",47.239593,-1.53751,-1,0,ONA:SA:GDRE,Europe/Paris,2,ONA, +ONA:SP:GDRE2,1,"Guindré",47.239216,-1.538012,-1,0,ONA:SA:GDRE,Europe/Paris,2,ONA, +ONA:SP:GELL1,1,"Grande Noëlle",47.162418,-1.502215,-1,0,ONA:SA:GELL,Europe/Paris,2,ONA, +ONA:SP:GELL2,1,"Grande Noëlle",47.162328,-1.502209,-1,0,ONA:SA:GELL,Europe/Paris,2,ONA, +ONA:SP:GERA1,1,"Géraudière",47.26174,-1.567163,-1,0,ONA:SA:GERA,Europe/Paris,0,ONA, +ONA:SP:GERA2,1,"Géraudière",47.26174,-1.567163,-1,0,ONA:SA:GERA,Europe/Paris,2,ONA, +ONA:SP:GERA3,1,"Géraudière",47.262661,-1.566569,-1,0,ONA:SA:GERA,Europe/Paris,0,ONA, +ONA:SP:GERA4,1,"Géraudière",47.262895,-1.567644,-1,0,ONA:SA:GERA,Europe/Paris,0,ONA, +ONA:SP:GERA5,1,"Géraudière",47.262126,-1.566397,-1,0,ONA:SA:GERA,Europe/Paris,0,ONA, +ONA:SP:GESV1,1,"Gesvrine",47.270091,-1.551894,-1,0,ONA:SA:GESV,Europe/Paris,2,ONA, +ONA:SP:GESV2,1,"Gesvrine",47.269813,-1.552139,-1,0,ONA:SA:GESV,Europe/Paris,2,ONA, +ONA:SP:GEVR1,1,"Gesvres",47.2639,-1.548533,-1,0,ONA:SA:GEVR,Europe/Paris,2,ONA, +ONA:SP:GEVR2,1,"Gesvres",47.263626,-1.548646,-1,0,ONA:SA:GEVR,Europe/Paris,2,ONA, +ONA:SP:GGAU1,1,"Gergaudière",47.289656,-1.585882,-1,0,OPL:SA:AST-22502-A-22502-R,Europe/Paris,0,ONA, +ONA:SP:GGAU2,1,"Gergaudière",47.28984,-1.585763,-1,0,OPL:SA:AST-22502-A-22502-R,Europe/Paris,0,ONA, +ONA:SP:GGNO1,1,"Grignon",47.216386,-1.4663,-1,0,ONA:SA:GGNO,Europe/Paris,2,ONA, +ONA:SP:GGNO2,1,"Grignon",47.216468,-1.46657,-1,0,ONA:SA:GGNO,Europe/Paris,2,ONA, +ONA:SP:GGUI1,1,"Gauguin",47.166691,-1.554687,-1,0,ONA:SA:GGUI,Europe/Paris,2,ONA, +ONA:SP:GGUI2,1,"Gauguin",47.166929,-1.555629,-1,0,ONA:SA:GGUI,Europe/Paris,2,ONA, +ONA:SP:GIAR1,1,"Gilarderie",47.186217,-1.683735,-1,0,ONA:SA:GIAR,Europe/Paris,2,ONA, +ONA:SP:GIAR2,1,"Gilarderie",47.185899,-1.682522,-1,0,ONA:SA:GIAR,Europe/Paris,2,ONA, +ONA:SP:GIBR1,1,"Gibraye",47.20513,-1.515059,-1,0,ONA:SA:GIBR,Europe/Paris,2,ONA, +ONA:SP:GIBR2,1,"Gibraye",47.204957,-1.517557,-1,0,ONA:SA:GIBR,Europe/Paris,0,ONA, +ONA:SP:GIND1,1,"Gare d'Indre",47.204889,-1.662272,-1,0,ONA:SA:GIND,Europe/Paris,2,ONA, +ONA:SP:GIND2,1,"Gare d'Indre",47.204997,-1.661752,-1,0,ONA:SA:GIND,Europe/Paris,2,ONA, +ONA:SP:GIQU1,1,"Gicquelière",47.258057,-1.458946,-1,0,ONA:SA:GIQU,Europe/Paris,2,ONA, +ONA:SP:GIQU2,1,"Gicquelière",47.258142,-1.459084,-1,0,ONA:SA:GIQU,Europe/Paris,2,ONA, +ONA:SP:GLAU1,1,"Grillaud",47.219722,-1.581812,-1,0,ONA:SA:GLAU,Europe/Paris,2,ONA, +ONA:SP:GLAU2,1,"Grillaud",47.220266,-1.581719,-1,0,ONA:SA:GLAU,Europe/Paris,2,ONA, +ONA:SP:GLDE1,1,"Grande Lande",47.192468,-1.497764,-1,0,ONA:SA:GLDE,Europe/Paris,2,ONA, +ONA:SP:GLDE2,1,"Grande Lande",47.192292,-1.497619,-1,0,ONA:SA:GLDE,Europe/Paris,2,ONA, +ONA:SP:GLIE1,1,"Gilière",47.29943,-1.552574,-1,0,ONA:SA:GLIE,Europe/Paris,0,ONA, +ONA:SP:GLIE2,1,"Gilière",47.299223,-1.553353,-1,0,ONA:SA:GLIE,Europe/Paris,2,ONA, +ONA:SP:GLNE1,1,"Galarne",47.208144,-1.529946,-1,0,ONA:SA:GLNE,Europe/Paris,2,ONA, +ONA:SP:GLNE2,1,"Galarne",47.208149,-1.529814,-1,0,ONA:SA:GLNE,Europe/Paris,2,ONA, +ONA:SP:GLOU1,1,"Grange au Loup",47.262918,-1.516048,-1,0,OPL:SA:AST-GLOU1-GLOU2,Europe/Paris,0,ONA, +ONA:SP:GLOU2,1,"Grange au Loup",47.263282,-1.515942,-1,0,OPL:SA:AST-GLOU1-GLOU2,Europe/Paris,0,ONA, +ONA:SP:GMA99,1,"Gare Maritime",47.20686,-1.573336,-1,0,ONA:SA:GMAR,Europe/Paris,2,ONA, +ONA:SP:GMAR1,1,"Gare Maritime",47.207053,-1.572954,-1,0,ONA:SA:GMAR,Europe/Paris,2,ONA, +ONA:SP:GMAR2,1,"Gare Maritime",47.20704,-1.573349,-1,0,ONA:SA:GMAR,Europe/Paris,2,ONA, +ONA:SP:GMAR3,1,"Gare Maritime",47.206878,-1.572809,-1,0,ONA:SA:GMAR,Europe/Paris,2,ONA, +ONA:SP:GMAR9,1,"Gare Maritime",47.205238,-1.57335,-1,0,ONA:SA:GMAR,Europe/Paris,2,ONA, +ONA:SP:GMOL1,1,"Guy Mollet",47.249046,-1.55367,-1,0,ONA:SA:GMOL,Europe/Paris,2,ONA, +ONA:SP:GMOL2,1,"Guy Mollet",47.249217,-1.553947,-1,0,ONA:SA:GMOL,Europe/Paris,2,ONA, +ONA:SP:GNRA1,1,"Gréneraie",47.199736,-1.533568,-1,0,ONA:SA:GNRA,Europe/Paris,2,ONA, +ONA:SP:GNRA2,1,"Gréneraie",47.199557,-1.533555,-1,0,ONA:SA:GNRA,Europe/Paris,2,ONA, +ONA:SP:GNRA3,1,"Gréneraie",47.199449,-1.534075,-1,0,ONA:SA:GNRA,Europe/Paris,2,ONA, +ONA:SP:GNRA4,1,"Gréneraie",47.199278,-1.533799,-1,0,ONA:SA:GNRA,Europe/Paris,2,ONA, +ONA:SP:GNRA5,1,"Gréneraie",47.199395,-1.533014,-1,0,ONA:SA:GNRA,Europe/Paris,2,ONA, +ONA:SP:GNRA6,1,"Gréneraie",47.199399,-1.532882,-1,0,ONA:SA:GNRA,Europe/Paris,2,ONA, +ONA:SP:GNRA7,1,"Gréneraie",47.199108,-1.533522,-1,0,ONA:SA:GNRA,Europe/Paris,2,ONA, +ONA:SP:GOBI2,1,"Gobinière",47.250175,-1.586821,-1,0,ONA:SA:GOBI,Europe/Paris,2,ONA, +ONA:SP:GOBI3,1,"Gobinière",47.249443,-1.587164,-1,0,ONA:SA:GOBI,Europe/Paris,2,ONA, +ONA:SP:GOCH1,1,"Grande Ouche",47.211243,-1.466595,-1,0,ONA:SA:GOCH,Europe/Paris,0,ONA, +ONA:SP:GOCH2,1,"Grande Ouche",47.211239,-1.466727,-1,0,ONA:SA:GOCH,Europe/Paris,0,ONA, +ONA:SP:GOLF1,1,"Golf",47.2365,-1.604861,-1,0,ONA:SA:GOLF,Europe/Paris,0,ONA, +ONA:SP:GOLF2,1,"Golf",47.236248,-1.604313,-1,0,ONA:SA:GOLF,Europe/Paris,0,ONA, +ONA:SP:GONI1,1,"Gournière",47.268464,-1.549394,-1,0,ONA:SA:GONI,Europe/Paris,2,ONA, +ONA:SP:GONI2,1,"Gournière",47.268285,-1.549381,-1,0,ONA:SA:GONI,Europe/Paris,2,ONA, +ONA:SP:GPOR1,1,"Grand Portail",47.202345,-1.52292,-1,0,ONA:SA:GPOR,Europe/Paris,2,ONA, +ONA:SP:GPOR2,1,"Grand Portail",47.20142,-1.523646,-1,0,ONA:SA:GPOR,Europe/Paris,2,ONA, +ONA:SP:GPRO1,1,"Gare de Pont-Rousseau",47.192919,-1.548798,-1,0,STE:SA:OCE87481036,Europe/Paris,2,ONA, +ONA:SP:GPRO2,1,"Gare de Pont-Rousseau",47.193081,-1.549338,-1,0,STE:SA:OCE87481036,Europe/Paris,2,ONA, +ONA:SP:GRAM1,1,"Grammoire",47.183573,-1.472688,-1,0,ONA:SA:GRAM,Europe/Paris,0,ONA, +ONA:SP:GRAM2,1,"Grammoire",47.18365,-1.47309,-1,0,ONA:SA:GRAM,Europe/Paris,0,ONA, +ONA:SP:GRCH1,1,"Grand chemin",47.197353,-1.784087,-1,0,ONA:SA:GRCH,Europe/Paris,2,ONA, +ONA:SP:GRCH2,1,"Grand chemin",47.197273,-1.783816,-1,0,ONA:SA:GRCH,Europe/Paris,2,ONA, +ONA:SP:GRET1,1,"Gare de l'Etat",47.203974,-1.560174,-1,0,ONA:SA:GRET,Europe/Paris,2,ONA, +ONA:SP:GRET2,1,"Gare de l'Etat",47.204701,-1.559962,-1,0,ONA:SA:GRET,Europe/Paris,2,ONA, +ONA:SP:GRIM1,1,"Grimm",47.216641,-1.645436,-1,0,ONA:SA:GRIM,Europe/Paris,2,ONA, +ONA:SP:GRIM2,1,"Grimm",47.216056,-1.646715,-1,0,ONA:SA:GRIM,Europe/Paris,2,ONA, +ONA:SP:GRIM3,1,"Grimm",47.216097,-1.645528,-1,0,ONA:SA:GRIM,Europe/Paris,2,ONA, +ONA:SP:GRIM4,1,"Grimm",47.216878,-1.646379,-1,0,ONA:SA:GRIM,Europe/Paris,0,ONA, +ONA:SP:GRLI1,1,"Graslin",47.212779,-1.563459,-1,0,ONA:SA:GRLI,Europe/Paris,2,ONA, +ONA:SP:GRLI2,1,"Graslin",47.212694,-1.56332,-1,0,ONA:SA:GRLI,Europe/Paris,2,ONA, +ONA:SP:GRMA1,1,"Grimau",47.227768,-1.654463,-1,0,ONA:SA:GRMA,Europe/Paris,0,ONA, +ONA:SP:GRMA2,1,"Grimau",47.227763,-1.654595,-1,0,ONA:SA:GRMA,Europe/Paris,0,ONA, +ONA:SP:GRPO1,1,"Gripots",47.192395,-1.491813,-1,0,ONA:SA:GRPO,Europe/Paris,2,ONA, +ONA:SP:GRPO2,1,"Gripots",47.192485,-1.491819,-1,0,ONA:SA:GRPO,Europe/Paris,2,ONA, +ONA:SP:GRTE1,1,"Garotterie",47.224995,-1.60679,-1,0,ONA:SA:GRTE,Europe/Paris,2,ONA, +ONA:SP:GRTE2,1,"Garotterie",47.224361,-1.606875,-1,0,ONA:SA:GRTE,Europe/Paris,0,ONA, +ONA:SP:GSAN1,1,"George Sand",47.165758,-1.544979,-1,0,ONA:SA:GSAN,Europe/Paris,2,ONA, +ONA:SP:GSAN2,1,"George Sand",47.165821,-1.545776,-1,0,ONA:SA:GSAN,Europe/Paris,2,ONA, +ONA:SP:GSEN1,1,"Grasse Noue",47.280245,-1.581882,-1,0,ONA:SA:GSEN,Europe/Paris,0,ONA, +ONA:SP:GSEN2,1,"Grasse Noue",47.280245,-1.581882,-1,0,ONA:SA:GSEN,Europe/Paris,0,ONA, +ONA:SP:GSIN1,1,"Grassinière",47.165827,-1.508006,-1,0,ONA:SA:GSIN,Europe/Paris,2,ONA, +ONA:SP:GSIN2,1,"Grassinière",47.165818,-1.50827,-1,0,ONA:SA:GSIN,Europe/Paris,2,ONA, +ONA:SP:GSNO1,1,"Gare SNCF Nord",47.217822,-1.542146,-1,0,ONA:SA:GSNO,Europe/Paris,2,ONA, +ONA:SP:GSNO2,1,"Gare SNCF Nord",47.217804,-1.542674,-1,0,ONA:SA:GSNO,Europe/Paris,2,ONA, +ONA:SP:GSS98,1,"Gare SNCF Sud",47.215387,-1.542234,-1,0,ONA:SA:GSSU,Europe/Paris,2,ONA, +ONA:SP:GSSU1,1,"Gare SNCF Sud",47.215895,-1.543196,-1,0,ONA:SA:GSSU,Europe/Paris,2,ONA, +ONA:SP:GSSU2,1,"Gare SNCF Sud",47.215809,-1.543058,-1,0,ONA:SA:GSSU,Europe/Paris,2,ONA, +ONA:SP:GSSU3,1,"Gare SNCF Sud",47.215196,-1.542287,-1,0,ONA:SA:GSSU,Europe/Paris,0,ONA, +ONA:SP:GSSU4,1,"Gare SNCF Sud",47.215387,-1.542234,-1,0,ONA:SA:GSSU,Europe/Paris,2,ONA, +ONA:SP:GSSU5,1,"Gare SNCF Sud",47.215495,-1.542242,-1,0,ONA:SA:GSSU,Europe/Paris,2,ONA, +ONA:SP:GTLA1,1,"Garettes-Landreau",47.273172,-1.630724,-1,0,ONA:SA:GTLA,Europe/Paris,2,ONA, +ONA:SP:GTLA2,1,"Garettes-Landreau",47.273091,-1.630454,-1,0,ONA:SA:GTLA,Europe/Paris,2,ONA, +ONA:SP:GTVE1,1,"Gaston Veil",47.209978,-1.55572,-1,0,ONA:SA:GTVE,Europe/Paris,2,ONA, +ONA:SP:GTVE2,1,"Gaston Veil",47.210163,-1.555602,-1,0,ONA:SA:GTVE,Europe/Paris,2,ONA, +ONA:SP:GULO1,1,"Guilloterie",47.17228,-1.557207,-1,0,ONA:SA:GULO,Europe/Paris,2,ONA, +ONA:SP:GULO2,1,"Guilloterie",47.172545,-1.557358,-1,0,ONA:SA:GULO,Europe/Paris,2,ONA, +ONA:SP:GURO1,1,"Gustave Roch",47.203643,-1.551295,-1,0,ONA:SA:GURO,Europe/Paris,0,ONA, +ONA:SP:GURO2,1,"Gustave Roch",47.20407,-1.551987,-1,0,ONA:SA:GURO,Europe/Paris,0,ONA, +ONA:SP:GURO3,1,"Gustave Roch",47.203621,-1.551954,-1,0,ONA:SA:GURO,Europe/Paris,2,ONA, +ONA:SP:GVNO1,1,"Gare de Vertou Nord",47.186988,-1.478347,-1,0,ONA:SA:GVNO,Europe/Paris,2,ONA, +ONA:SP:GVNO2,1,"Gare de Vertou Nord",47.187074,-1.478486,-1,0,ONA:SA:GVNO,Europe/Paris,2,ONA, +ONA:SP:GVSU1,1,"Gare de Vertou Sud",47.185693,-1.47667,-1,0,ONA:SA:GVSU,Europe/Paris,2,ONA, +ONA:SP:GVSU2,1,"Gare de Vertou Sud",47.185872,-1.476683,-1,0,ONA:SA:GVSU,Europe/Paris,2,ONA, +ONA:SP:HAL99,1,"Haluchère-Batignolles",47.249078,-1.523251,-1,0,ONA:SA:HALU,Europe/Paris,2,ONA, +ONA:SP:HALA1,1,"Haluchère-Batignolles",47.248938,-1.52205,-1,0,ONA:SA:HALU,Europe/Paris,2,ONA, +ONA:SP:HALA2,1,"Haluchère-Batignolles",47.249109,-1.522327,-1,0,ONA:SA:HALU,Europe/Paris,2,ONA, +ONA:SP:HALA4,1,"Haluchère-Batignolles",47.24945,-1.522881,-1,0,ONA:SA:HALU,Europe/Paris,2,ONA, +ONA:SP:HALD1,1,"Haluchère-Batignolles",47.249361,-1.522874,-1,0,ONA:SA:HALU,Europe/Paris,2,ONA, +ONA:SP:HALE2,1,"Haluchère-Batignolles",47.248925,-1.522446,-1,0,ONA:SA:HALU,Europe/Paris,2,ONA, +ONA:SP:HALF1,1,"Haluchère-Batignolles",47.249244,-1.52366,-1,0,ONA:SA:HALU,Europe/Paris,2,ONA, +ONA:SP:HALF2,1,"Haluchère-Batignolles",47.249163,-1.523389,-1,0,ONA:SA:HALU,Europe/Paris,2,ONA, +ONA:SP:HALF3,1,"Haluchère-Batignolles",47.248907,-1.522974,-1,0,ONA:SA:HALU,Europe/Paris,2,ONA, +ONA:SP:HALG1,1,"Haluchère-Batignolles",47.2483,-1.522269,-1,0,ONA:SA:HALU,Europe/Paris,2,ONA, +ONA:SP:HARO1,1,"Harouys",47.217056,-1.567472,-1,0,ONA:SA:HARO,Europe/Paris,2,ONA, +ONA:SP:HARO2,1,"Harouys",47.21671,-1.56705,-1,0,ONA:SA:HARO,Europe/Paris,2,ONA, +ONA:SP:HAUB1,1,"Haubans",47.214626,-1.530018,-1,0,ONA:SA:HAUB,Europe/Paris,2,ONA, +ONA:SP:HAUB2,1,"Haubans",47.214451,-1.529873,-1,0,ONA:SA:HAUB,Europe/Paris,2,ONA, +ONA:SP:HAVE1,1,"Halvêque",47.257463,-1.520285,-1,0,ONA:SA:HAVE,Europe/Paris,2,ONA, +ONA:SP:HAVE2,1,"Halvêque",47.25709,-1.520655,-1,0,ONA:SA:HAVE,Europe/Paris,2,ONA, +ONA:SP:HAVE3,1,"Halvêque",47.259403,-1.518837,-1,0,ONA:SA:HAVE,Europe/Paris,0,ONA, +ONA:SP:HAVE4,1,"Halvêque",47.258931,-1.519464,-1,0,ONA:SA:HAVE,Europe/Paris,2,ONA, +ONA:SP:HBAN1,1,"Hangar à Bananes",47.200382,-1.573127,-1,0,ONA:SA:HBAN,Europe/Paris,2,ONA, +ONA:SP:HBDE1,1,"Halbarderie",47.268287,-1.438106,-1,0,ONA:SA:HBDE,Europe/Paris,2,ONA, +ONA:SP:HBDE2,1,"Halbarderie",47.268578,-1.437465,-1,0,ONA:SA:HBDE,Europe/Paris,2,ONA, +ONA:SP:HBLI1,1,"Hôpital Bellier",47.221303,-1.524288,-1,0,ONA:SA:HBLI,Europe/Paris,2,ONA, +ONA:SP:HBLI2,1,"Hôpital Bellier",47.221016,-1.524795,-1,0,ONA:SA:HBLI,Europe/Paris,2,ONA, +ONA:SP:HBRA1,1,"Herbray",47.150212,-1.471108,-1,0,ONA:SA:HBRA,Europe/Paris,0,ONA, +ONA:SP:HBRA2,1,"Herbray",47.150485,-1.470995,-1,0,ONA:SA:HBRA,Europe/Paris,0,ONA, +ONA:SP:HCOU1,1,"Hauts de Couëron",47.24057,-1.669702,-1,0,ONA:SA:HCOU,Europe/Paris,0,ONA, +ONA:SP:HDIE1,1,"Haudrière",47.154651,-1.467594,-1,0,ONA:SA:HDIE,Europe/Paris,2,ONA, +ONA:SP:HDIE2,1,"Haudrière",47.154471,-1.467582,-1,0,ONA:SA:HDIE,Europe/Paris,2,ONA, +ONA:SP:HERM1,1,"Hermeland",47.230491,-1.617244,-1,0,ONA:SA:HERM,Europe/Paris,2,ONA, +ONA:SP:HERM2,1,"Hermeland",47.230676,-1.617126,-1,0,ONA:SA:HERM,Europe/Paris,0,ONA, +ONA:SP:HERM3,1,"Hermeland",47.229786,-1.616796,-1,0,ONA:SA:HERM,Europe/Paris,2,ONA, +ONA:SP:HERM4,1,"Hermeland",47.229966,-1.616809,-1,0,ONA:SA:HERM,Europe/Paris,2,ONA, +ONA:SP:HFLE1,1,"Hameau Fleuri",47.251055,-1.59006,-1,0,ONA:SA:HFLE,Europe/Paris,2,ONA, +ONA:SP:HFLE2,1,"Hameau Fleuri",47.250898,-1.589388,-1,0,ONA:SA:HFLE,Europe/Paris,2,ONA, +ONA:SP:HFNA1,1,"Haute Forêt",47.233495,-1.555448,-1,0,ONA:SA:HFNA,Europe/Paris,2,ONA, +ONA:SP:HFNA2,1,"Haute Forêt",47.23323,-1.555297,-1,0,ONA:SA:HFNA,Europe/Paris,0,ONA, +ONA:SP:HFV99,1,"Haute Forêt",47.168314,-1.465659,-1,0,ONA:SA:HFVE,Europe/Paris,2,ONA, +ONA:SP:HFVE1,1,"Haute Forêt",47.168314,-1.465659,-1,0,ONA:SA:HFVE,Europe/Paris,2,ONA, +ONA:SP:HFVE2,1,"Haute Forêt",47.168053,-1.465377,-1,0,ONA:SA:HFVE,Europe/Paris,2,ONA, +ONA:SP:HILE1,1,"Haute Ile",47.193959,-1.555348,-1,0,ONA:SA:HILE,Europe/Paris,0,ONA, +ONA:SP:HILE2,1,"Haute Ile",47.194736,-1.55633,-1,0,ONA:SA:HILE,Europe/Paris,0,ONA, +ONA:SP:HIND1,1,"Haute Indre",47.195408,-1.649935,-1,0,ONA:SA:HIND,Europe/Paris,0,ONA, +ONA:SP:HIND2,1,"Haute Indre",47.19442,-1.649862,-1,0,ONA:SA:HIND,Europe/Paris,0,ONA, +ONA:SP:HIPP1,1,"Hippodrome",47.247055,-1.567281,-1,0,ONA:SA:HIPP,Europe/Paris,2,ONA, +ONA:SP:HIPP2,1,"Hippodrome",47.247581,-1.567716,-1,0,ONA:SA:HIPP,Europe/Paris,2,ONA, +ONA:SP:HLAN1,1,"Haute Lande",47.154773,-1.523453,-1,0,ONA:SA:HLAN,Europe/Paris,2,ONA, +ONA:SP:HLAN2,1,"Haute Lande",47.153955,-1.523658,-1,0,ONA:SA:HLAN,Europe/Paris,2,ONA, +ONA:SP:HMLL1,1,"Houmaille",47.189014,-1.586963,-1,0,ONA:SA:HMLL,Europe/Paris,2,ONA, +ONA:SP:HMLL2,1,"Houmaille",47.189103,-1.586969,-1,0,ONA:SA:HMLL,Europe/Paris,2,ONA, +ONA:SP:HMVE1,1,"8 Mai",47.172683,-1.472441,-1,0,ONA:SA:HMVE,Europe/Paris,2,ONA, +ONA:SP:HMVE2,1,"8 Mai",47.172773,-1.472448,-1,0,ONA:SA:HMVE,Europe/Paris,2,ONA, +ONA:SP:HODI1,1,"Hôtel Dieu",47.212125,-1.553497,-1,0,OPL:SA:AST-10096-A-10096-R,Europe/Paris,2,ONA, +ONA:SP:HODI2,1,"Hôtel Dieu",47.211514,-1.552924,-1,0,OPL:SA:AST-10096-A-10096-R,Europe/Paris,2,ONA, +ONA:SP:HODI3,1,"Hôtel Dieu",47.212634,-1.552834,-1,0,OPL:SA:AST-10096-A-10096-R,Europe/Paris,2,ONA, +ONA:SP:HODI4,1,"Hôtel Dieu",47.212357,-1.553038,-1,0,OPL:SA:AST-10096-A-10096-R,Europe/Paris,2,ONA, +ONA:SP:HOGR1,1,"Hongrie",47.215908,-1.52403,-1,0,ONA:SA:HOGR,Europe/Paris,2,ONA, +ONA:SP:HOGR2,1,"Hongrie",47.216105,-1.523516,-1,0,ONA:SA:HOGR,Europe/Paris,2,ONA, +ONA:SP:HOSE1,1,"Housseau",47.280978,-1.498424,-1,0,OPL:SA:AST-HOSE1-HOSE2,Europe/Paris,0,ONA, +ONA:SP:HOSE2,1,"Housseau",47.280883,-1.49855,-1,0,OPL:SA:AST-HOSE1-HOSE2,Europe/Paris,0,ONA, +ONA:SP:HPLA1,1,"Hôpital Laënnec",47.236885,-1.64086,-1,0,ONA:SA:HPLA,Europe/Paris,2,ONA, +ONA:SP:HREG1,1,"Hôtel de Région",47.210343,-1.52614,-1,0,ONA:SA:HREG,Europe/Paris,2,ONA, +ONA:SP:HREG2,1,"Hôtel de Région",47.210348,-1.526008,-1,0,ONA:SA:HREG,Europe/Paris,0,ONA, +ONA:SP:HRLL1,1,"Hérelle",47.201363,-1.586679,-1,0,ONA:SA:HRLL,Europe/Paris,2,ONA, +ONA:SP:HRLL2,1,"Hérelle",47.201632,-1.586698,-1,0,ONA:SA:HRLL,Europe/Paris,2,ONA, +ONA:SP:HVCQ1,1,"Mairie de Carquefou",47.298899,-1.490311,-1,0,ONA:SA:HVCQ,Europe/Paris,2,ONA, +ONA:SP:HVCQ2,1,"Mairie de Carquefou",47.298855,-1.491632,-1,0,ONA:SA:HVCQ,Europe/Paris,0,ONA, +ONA:SP:HVCQ3,1,"Mairie de Carquefou",47.298894,-1.490443,-1,0,ONA:SA:HVCQ,Europe/Paris,2,ONA, +ONA:SP:HVNA1,1,"Hôtel de Ville",47.217857,-1.554443,-1,0,ONA:SA:HVNA,Europe/Paris,2,ONA, +ONA:SP:HVNA2,1,"Hôtel de Ville",47.217772,-1.554305,-1,0,ONA:SA:HVNA,Europe/Paris,2,ONA, +ONA:SP:HVTI1,1,"Helvêtie",47.250821,-1.497981,-1,0,ONA:SA:HVTI,Europe/Paris,0,ONA, +ONA:SP:HVTI2,1,"Helvêtie",47.250732,-1.497974,-1,0,ONA:SA:HVTI,Europe/Paris,0,ONA, +ONA:SP:ICAM1,1,"ICAM",47.273568,-1.501862,-1,0,OPL:SA:AST-ICAM1-ICAM2,Europe/Paris,0,ONA, +ONA:SP:ICAM2,1,"ICAM",47.273748,-1.501875,-1,0,OPL:SA:AST-ICAM1-ICAM2,Europe/Paris,0,ONA, +ONA:SP:IDFR1,1,"Ile de France",47.169408,-1.467982,-1,0,ONA:SA:IDFR,Europe/Paris,2,ONA, +ONA:SP:IDNA1,1,"Ile de Nantes",47.206136,-1.538788,-1,0,ONA:SA:IDNA,Europe/Paris,2,ONA, +ONA:SP:IDNA2,1,"Ile de Nantes",47.205956,-1.538775,-1,0,ONA:SA:IDNA,Europe/Paris,2,ONA, +ONA:SP:IMPR1,1,"Imprimeurs",47.238665,-1.670088,-1,0,ONA:SA:IMPR,Europe/Paris,0,ONA, +ONA:SP:IMPR2,1,"Imprimeurs",47.23866,-1.67022,-1,0,ONA:SA:IMPR,Europe/Paris,0,ONA, +ONA:SP:INLA1,1,"Internat Laënnec",47.235002,-1.640588,-1,0,ONA:SA:INLA,Europe/Paris,0,ONA, +ONA:SP:INLA2,1,"Internat Laënnec",47.235079,-1.64099,-1,0,ONA:SA:INLA,Europe/Paris,0,ONA, +ONA:SP:INRE1,1,"Indre",47.201045,-1.666611,-1,0,ONA:SA:INRE,Europe/Paris,2,ONA, +ONA:SP:INRE2,1,"Indre",47.201255,-1.668345,-1,0,ONA:SA:INRE,Europe/Paris,2,ONA, +ONA:SP:IRLA1,1,"Irlandais",47.223185,-1.607053,-1,0,ONA:SA:IRLA,Europe/Paris,2,ONA, +ONA:SP:IRLA2,1,"Irlandais",47.223104,-1.606782,-1,0,ONA:SA:IRLA,Europe/Paris,2,ONA, +ONA:SP:IROI1,1,"Iroise",47.248366,-1.536426,-1,0,ONA:SA:IROI,Europe/Paris,2,ONA, +ONA:SP:IROI2,1,"Iroise",47.248182,-1.536545,-1,0,ONA:SA:IROI,Europe/Paris,2,ONA, +ONA:SP:ISLE1,1,"Islettes",47.26334,-1.476255,-1,0,ONA:SA:ISLE,Europe/Paris,2,ONA, +ONA:SP:ISLE2,1,"Islettes",47.26334,-1.476255,-1,0,ONA:SA:ISLE,Europe/Paris,2,ONA, +ONA:SP:IUTH1,1,"IUT",47.297868,-1.505065,-1,0,ONA:SA:IUTH,Europe/Paris,2,ONA, +ONA:SP:IUTH2,1,"IUT",47.29789,-1.504404,-1,0,ONA:SA:IUTH,Europe/Paris,2,ONA, +ONA:SP:JAL98,1,"Jalière",47.26424,-1.596983,-1,0,ONA:SA:JALI,Europe/Paris,2,ONA, +ONA:SP:JALI1,1,"Jalière",47.264334,-1.596858,-1,0,ONA:SA:JALI,Europe/Paris,2,ONA, +ONA:SP:JALI2,1,"Jalière",47.26415,-1.596977,-1,0,ONA:SA:JALI,Europe/Paris,2,ONA, +ONA:SP:JAME1,1,"Jamet",47.21001,-1.602513,-1,0,ONA:SA:JAME,Europe/Paris,2,ONA, +ONA:SP:JAME2,1,"Jamet",47.210077,-1.603179,-1,0,ONA:SA:JAME,Europe/Paris,2,ONA, +ONA:SP:JAME4,1,"Jamet",47.210001,-1.602777,-1,0,ONA:SA:JAME,Europe/Paris,2,ONA, +ONA:SP:JANA1,1,"Jaunais",47.176045,-1.533704,-1,0,ONA:SA:JANA,Europe/Paris,2,ONA, +ONA:SP:JANA2,1,"Jaunais",47.17595,-1.53383,-1,0,ONA:SA:JANA,Europe/Paris,2,ONA, +ONA:SP:JAPY1,1,"Japy",47.259465,-1.511565,-1,0,ONA:SA:JAPY,Europe/Paris,2,ONA, +ONA:SP:JAPY2,1,"Japy",47.259864,-1.510403,-1,0,ONA:SA:JAPY,Europe/Paris,2,ONA, +ONA:SP:JARI1,1,"Jarriais",47.21293,-1.718262,-1,0,ONA:SA:JARI,Europe/Paris,2,ONA, +ONA:SP:JARI2,1,"Jarriais",47.212902,-1.719053,-1,0,ONA:SA:JARI,Europe/Paris,2,ONA, +ONA:SP:JAUR1,1,"Jacqueline Auriol",47.270959,-1.471903,-1,0,ONA:SA:JAUR,Europe/Paris,2,ONA, +ONA:SP:JAUR2,1,"Jacqueline Auriol",47.271044,-1.472042,-1,0,ONA:SA:JAUR,Europe/Paris,0,ONA, +ONA:SP:JBAR1,1,"Jean Bart",47.19921,-1.675328,-1,0,ONA:SA:JBAR,Europe/Paris,0,ONA, +ONA:SP:JBAR2,1,"Jean Bart",47.199533,-1.67641,-1,0,ONA:SA:JBAR,Europe/Paris,2,ONA, +ONA:SP:JBNA1,1,"Jeanne Bernard",47.235252,-1.591281,-1,0,ONA:SA:JBNA,Europe/Paris,2,ONA, +ONA:SP:JBNA2,1,"Jeanne Bernard",47.235903,-1.590667,-1,0,ONA:SA:JBNA,Europe/Paris,2,ONA, +ONA:SP:JCAR1,1,"Jacques Cartier",47.223895,-1.636192,-1,0,ONA:SA:JCAR,Europe/Paris,2,ONA, +ONA:SP:JCAR2,1,"Jacques Cartier",47.223976,-1.636463,-1,0,ONA:SA:JCAR,Europe/Paris,2,ONA, +ONA:SP:JCDM1,1,"Jacques Demy",47.158136,-1.682829,-1,0,ONA:SA:JCDM,Europe/Paris,2,ONA, +ONA:SP:JCDM2,1,"Jacques Demy",47.158789,-1.683208,-1,0,ONA:SA:JCDM,Europe/Paris,2,ONA, +ONA:SP:JCOU1,1,"Joncours",47.220005,-1.586724,-1,0,ONA:SA:JCOU,Europe/Paris,2,ONA, +ONA:SP:JCOU2,1,"Joncours",47.220742,-1.586249,-1,0,ONA:SA:JCOU,Europe/Paris,2,ONA, +ONA:SP:JDGA1,1,"Jardins de Gaïa",47.157313,-1.678264,-1,0,ONA:SA:JDGA,Europe/Paris,2,ONA, +ONA:SP:JDGA2,1,"Jardins de Gaïa",47.157498,-1.678146,-1,0,ONA:SA:JDGA,Europe/Paris,2,ONA, +ONA:SP:JEVV1,1,"Jean V",47.211975,-1.565911,-1,0,ONA:SA:JEVV,Europe/Paris,0,ONA, +ONA:SP:JEVV2,1,"Jean V",47.211845,-1.564448,-1,0,ONA:SA:JEVV,Europe/Paris,0,ONA, +ONA:SP:JFER1,1,"Jules Ferry",47.250718,-1.487524,-1,0,ONA:SA:JFER,Europe/Paris,0,ONA, +ONA:SP:JFER2,1,"Jules Ferry",47.250902,-1.487405,-1,0,ONA:SA:JFER,Europe/Paris,0,ONA, +ONA:SP:JFRA1,1,"Jean Fraix",47.186124,-1.541964,-1,0,ONA:SA:JFRA,Europe/Paris,2,ONA, +ONA:SP:JFRA2,1,"Jean Fraix",47.186475,-1.542253,-1,0,ONA:SA:JFRA,Europe/Paris,2,ONA, +ONA:SP:JGUE1,1,"Jaguère",47.175634,-1.567225,-1,0,ONA:SA:JGUE,Europe/Paris,2,ONA, +ONA:SP:JGUE2,1,"Jaguère",47.175566,-1.56656,-1,0,ONA:SA:JGUE,Europe/Paris,2,ONA, +ONA:SP:JHDI1,1,"Jahardières",47.1254,-1.642748,-1,0,ONA:SA:JHDI,Europe/Paris,0,ONA, +ONA:SP:JHDI2,1,"Jahardières",47.125499,-1.642491,-1,0,ONA:SA:JHDI,Europe/Paris,0,ONA, +ONA:SP:JJCE1,1,"Jean Jaurès",47.301324,-1.549799,-1,0,ONA:SA:JJCE,Europe/Paris,0,ONA, +ONA:SP:JJCE2,1,"Jean Jaurès",47.301234,-1.549792,-1,0,ONA:SA:JJCE,Europe/Paris,0,ONA, +ONA:SP:JJNA1,1,"Jean Jaurès",47.218731,-1.560588,-1,0,ONA:SA:JJNA,Europe/Paris,2,ONA, +ONA:SP:JJNA2,1,"Jean Jaurès",47.218389,-1.560034,-1,0,ONA:SA:JJNA,Europe/Paris,2,ONA, +ONA:SP:JLIE1,1,"Joliverie",47.189945,-1.519383,-1,0,OPL:SA:AST-21267-A-21267-A1-21267-R-21267-R1,Europe/Paris,2,ONA, +ONA:SP:JLVE1,1,"Joliverie",47.189656,-1.517248,-1,0,OPL:SA:AST-21267-A-21267-A1-21267-R-21267-R1,Europe/Paris,2,ONA, +ONA:SP:JLVE2,1,"Joliverie",47.189575,-1.516978,-1,0,OPL:SA:AST-21267-A-21267-A1-21267-R-21267-R1,Europe/Paris,2,ONA, +ONA:SP:JLVE3,1,"Joliverie",47.189557,-1.517506,-1,0,OPL:SA:AST-21267-A-21267-A1-21267-R-21267-R1,Europe/Paris,0,ONA, +ONA:SP:JLVE4,1,"Joliverie",47.189678,-1.516589,-1,0,OPL:SA:AST-21267-A-21267-A1-21267-R-21267-R1,Europe/Paris,2,ONA, +ONA:SP:JLVE5,1,"Joliverie",47.189945,-1.519383,-1,0,OPL:SA:AST-21267-A-21267-A1-21267-R-21267-R1,Europe/Paris,2,ONA, +ONA:SP:JLVE6,1,"Joliverie",47.189855,-1.519377,-1,0,OPL:SA:AST-21267-A-21267-A1-21267-R-21267-R1,Europe/Paris,2,ONA, +ONA:SP:JMAC1,1,"Jean Macé",47.199481,-1.589051,-1,0,ONA:SA:JMAC,Europe/Paris,2,ONA, +ONA:SP:JMAC2,1,"Jean Macé",47.200554,-1.589262,-1,0,ONA:SA:JMAC,Europe/Paris,2,ONA, +ONA:SP:JMLI1,1,"Jean Moulin",47.207126,-1.599922,-1,0,ONA:SA:JMLI,Europe/Paris,2,ONA, +ONA:SP:JMLI2,1,"Jean Moulin",47.206744,-1.600554,-1,0,ONA:SA:JMLI,Europe/Paris,2,ONA, +ONA:SP:JMLI3,1,"Jean Moulin",47.207229,-1.599533,-1,0,ONA:SA:JMLI,Europe/Paris,2,ONA, +ONA:SP:JMLI4,1,"Jean Moulin",47.207306,-1.599935,-1,0,ONA:SA:JMLI,Europe/Paris,2,ONA, +ONA:SP:JMNT1,1,"Jean Monnet",47.166496,-1.549787,-1,0,ONA:SA:JMNT,Europe/Paris,2,ONA, +ONA:SP:JMNT2,1,"Jean Monnet",47.166581,-1.549925,-1,0,ONA:SA:JMNT,Europe/Paris,2,ONA, +ONA:SP:JMO99,1,"Jean Monnet",47.166256,-1.465249,-1,0,ONA:SA:JMON,Europe/Paris,2,ONA, +ONA:SP:JMON1,1,"Jean Monnet",47.166256,-1.465249,-1,0,ONA:SA:JMON,Europe/Paris,0,ONA, +ONA:SP:JNAI1,1,"Jaunaie",47.219191,-1.727198,-1,0,ONA:SA:JNAI,Europe/Paris,0,ONA, +ONA:SP:JNAI2,1,"Jaunaie",47.21964,-1.727232,-1,0,ONA:SA:JNAI,Europe/Paris,0,ONA, +ONA:SP:JNAI3,1,"Jaunaie",47.218983,-1.727976,-1,0,ONA:SA:JNAI,Europe/Paris,2,ONA, +ONA:SP:JNAI4,1,"Jaunaie",47.218898,-1.727837,-1,0,ONA:SA:JNAI,Europe/Paris,2,ONA, +ONA:SP:JNLI1,1,"Jonelière",47.251643,-1.540764,-1,0,ONA:SA:JNLI,Europe/Paris,0,ONA, +ONA:SP:JOTE1,1,"Jouetterie",47.131479,-1.662496,-1,0,ONA:SA:JOTE,Europe/Paris,0,ONA, +ONA:SP:JOTE2,1,"Jouetterie",47.131825,-1.662931,-1,0,ONA:SA:JOTE,Europe/Paris,0,ONA, +ONA:SP:JPER1,1,"Jean Perrin",47.181252,-1.560898,-1,0,ONA:SA:JPER,Europe/Paris,0,ONA, +ONA:SP:JPER2,1,"Jean Perrin",47.181256,-1.560766,-1,0,ONA:SA:JPER,Europe/Paris,2,ONA, +ONA:SP:JRO58,1,"Jean Rostand",47.246064,-1.593794,-1,0,ONA:SA:JROS,Europe/Paris,0,ONA, +ONA:SP:JRO59,1,"Jean Rostand",47.246154,-1.593801,-1,0,ONA:SA:JROS,Europe/Paris,0,ONA, +ONA:SP:JROS1,1,"Jean Rostand",47.246145,-1.594065,-1,0,ONA:SA:JROS,Europe/Paris,2,ONA, +ONA:SP:JROS2,1,"Jean Rostand",47.245799,-1.593643,-1,0,ONA:SA:JROS,Europe/Paris,2,ONA, +ONA:SP:JTIC1,1,"Justice",47.209482,-1.631025,-1,0,ONA:SA:JTIC,Europe/Paris,0,ONA, +ONA:SP:JTIC2,1,"Justice",47.209356,-1.632073,-1,0,ONA:SA:JTIC,Europe/Paris,0,ONA, +ONA:SP:JUIV1,1,"Juiverie",47.210782,-1.624644,-1,0,ONA:SA:JUIV,Europe/Paris,0,ONA, +ONA:SP:JUIV2,1,"Juiverie",47.210777,-1.624776,-1,0,ONA:SA:JUIV,Europe/Paris,0,ONA, +ONA:SP:JUME1,1,"Jumelière",47.294301,-1.487731,-1,0,ONA:SA:JUME,Europe/Paris,0,ONA, +ONA:SP:JUME2,1,"Jumelière",47.294579,-1.487487,-1,0,ONA:SA:JUME,Europe/Paris,0,ONA, +ONA:SP:JVAL1,1,"Jules Vallès",47.173249,-1.571146,-1,0,ONA:SA:JVAL,Europe/Paris,2,ONA, +ONA:SP:JVAL2,1,"Jules Vallès",47.173442,-1.570764,-1,0,ONA:SA:JVAL,Europe/Paris,2,ONA, +ONA:SP:JVNA1,1,"Jules Verne",47.248742,-1.517142,-1,0,ONA:SA:JVNA,Europe/Paris,2,ONA, +ONA:SP:JVNA2,1,"Jules Verne",47.248827,-1.517281,-1,0,ONA:SA:JVNA,Europe/Paris,2,ONA, +ONA:SP:JVRA1,1,"Janvraie",47.199945,-1.612344,-1,0,ONA:SA:JVRA,Europe/Paris,2,ONA, +ONA:SP:JVRA2,1,"Janvraie",47.199528,-1.611389,-1,0,ONA:SA:JVRA,Europe/Paris,2,ONA, +ONA:SP:JVRA4,1,"Janvraie",47.200062,-1.61156,-1,0,ONA:SA:JVRA,Europe/Paris,0,ONA, +ONA:SP:KERE1,1,"Keren",47.244775,-1.533389,-1,0,ONA:SA:KERE,Europe/Paris,2,ONA, +ONA:SP:KERE2,1,"Keren",47.244407,-1.533627,-1,0,ONA:SA:KERE,Europe/Paris,2,ONA, +ONA:SP:KOEN1,1,"Koenig",47.198031,-1.615639,-1,0,ONA:SA:KOEN,Europe/Paris,2,ONA, +ONA:SP:KOEN2,1,"Koenig",47.198036,-1.615507,-1,0,ONA:SA:KOEN,Europe/Paris,2,ONA, +ONA:SP:KOUF1,1,"Koufra",47.250119,-1.529807,-1,0,ONA:SA:KOUF,Europe/Paris,2,ONA, +ONA:SP:KOUF2,1,"Koufra",47.249391,-1.530019,-1,0,ONA:SA:KOUF,Europe/Paris,2,ONA, +ONA:SP:KOUF3,1,"Koufra",47.250344,-1.531146,-1,0,ONA:SA:KOUF,Europe/Paris,0,ONA, +ONA:SP:KOUF4,1,"Koufra",47.250191,-1.530342,-1,0,ONA:SA:KOUF,Europe/Paris,2,ONA, +ONA:SP:LABE1,1,"Lac de Beaulieu",47.219397,-1.693104,-1,0,ONA:SA:LABE,Europe/Paris,2,ONA, +ONA:SP:LABE2,1,"Lac de Beaulieu",47.21933,-1.692438,-1,0,ONA:SA:LABE,Europe/Paris,2,ONA, +ONA:SP:LACH1,1,"L'Arche",47.212909,-1.70861,-1,0,ONA:SA:LACH,Europe/Paris,0,ONA, +ONA:SP:LACH2,1,"L'Arche",47.212828,-1.70834,-1,0,ONA:SA:LACH,Europe/Paris,0,ONA, +ONA:SP:LADO1,1,"Ladoumègue",47.296142,-1.48654,-1,0,ONA:SA:LADO,Europe/Paris,0,ONA, +ONA:SP:LADO2,1,"Ladoumègue",47.295868,-1.486652,-1,0,ONA:SA:LADO,Europe/Paris,0,ONA, +ONA:SP:LAGE1,1,"Largeau",47.195567,-1.510142,-1,0,ONA:SA:LAGE,Europe/Paris,0,ONA, +ONA:SP:LAGE2,1,"Largeau",47.195006,-1.510763,-1,0,ONA:SA:LAGE,Europe/Paris,0,ONA, +ONA:SP:LAGE3,1,"Largeau",47.195456,-1.510795,-1,0,ONA:SA:LAGE,Europe/Paris,2,ONA, +ONA:SP:LAGE4,1,"Largeau",47.195033,-1.509972,-1,0,ONA:SA:LAGE,Europe/Paris,0,ONA, +ONA:SP:LAIL1,1,"Les Ailes",47.170213,-1.575679,-1,0,ONA:SA:LAIL,Europe/Paris,0,ONA, +ONA:SP:LAIL2,1,"Les Ailes",47.171255,-1.57417,-1,0,ONA:SA:LAIL,Europe/Paris,2,ONA, +ONA:SP:LALL1,1,"Lallié",47.228177,-1.544881,-1,0,ONA:SA:LALL,Europe/Paris,2,ONA, +ONA:SP:LALL2,1,"Lallié",47.226686,-1.546359,-1,0,ONA:SA:LALL,Europe/Paris,2,ONA, +ONA:SP:LAMA1,1,"Lamartine",47.216497,-1.578667,-1,0,ONA:SA:LAMA,Europe/Paris,2,ONA, +ONA:SP:LAMA2,1,"Lamartine",47.216488,-1.578931,-1,0,ONA:SA:LAMA,Europe/Paris,2,ONA, +ONA:SP:LAN99,1,"Launay",47.265463,-1.632269,-1,0,ONA:SA:LANA,Europe/Paris,0,ONA, +ONA:SP:LANA1,1,"Launay",47.265467,-1.632137,-1,0,ONA:SA:LANA,Europe/Paris,2,ONA, +ONA:SP:LANA2,1,"Launay",47.265463,-1.632269,-1,0,ONA:SA:LANA,Europe/Paris,2,ONA, +ONA:SP:LAUR1,1,"Lauriers",47.204619,-1.60476,-1,0,ONA:SA:LAUR,Europe/Paris,2,ONA, +ONA:SP:LAUR2,1,"Lauriers",47.20487,-1.605307,-1,0,ONA:SA:LAUR,Europe/Paris,2,ONA, +ONA:SP:LAXX1,1,"La Croix",47.165276,-1.486705,-1,0,ONA:SA:LAXX,Europe/Paris,2,ONA, +ONA:SP:LAXX2,1,"La Croix",47.165271,-1.486837,-1,0,ONA:SA:LAXX,Europe/Paris,2,ONA, +ONA:SP:LBAU1,1,"Les Bauches",47.263362,-1.677365,-1,0,ONA:SA:LBAU,Europe/Paris,2,ONA, +ONA:SP:LBAU2,1,"Les Bauches",47.263366,-1.677233,-1,0,ONA:SA:LBAU,Europe/Paris,2,ONA, +ONA:SP:LBER1,1,"Lindbergh",47.154607,-1.597514,-1,0,ONA:SA:LBER,Europe/Paris,0,ONA, +ONA:SP:LBER2,1,"Lindbergh",47.154782,-1.597659,-1,0,ONA:SA:LBER,Europe/Paris,0,ONA, +ONA:SP:LBOS1,1,"La Brosse",47.332989,-1.569591,-1,0,ONA:SA:LBOS,Europe/Paris,0,ONA, +ONA:SP:LBOS2,1,"La Brosse",47.33307,-1.569862,-1,0,ONA:SA:LBOS,Europe/Paris,0,ONA, +ONA:SP:LBPI1,1,"L'Ebaupin",47.171615,-1.510006,-1,0,ONA:SA:LBPI,Europe/Paris,2,ONA, +ONA:SP:LBPI2,1,"L'Ebaupin",47.171619,-1.509875,-1,0,ONA:SA:LBPI,Europe/Paris,2,ONA, +ONA:SP:LBTE1,1,"Liberté",47.198308,-1.589098,-1,0,ONA:SA:LBTE,Europe/Paris,2,ONA, +ONA:SP:LBTE2,1,"Liberté",47.198223,-1.588959,-1,0,ONA:SA:LBTE,Europe/Paris,2,ONA, +ONA:SP:LCAR1,1,"Le Cardo",47.261693,-1.584491,-1,0,ONA:SA:LCAR,Europe/Paris,2,ONA, +ONA:SP:LCAR2,1,"Le Cardo",47.261985,-1.583851,-1,0,ONA:SA:LCAR,Europe/Paris,2,ONA, +ONA:SP:LCAR3,1,"Le Cardo",47.261702,-1.584227,-1,0,ONA:SA:LCAR,Europe/Paris,2,ONA, +ONA:SP:LCAR4,1,"Le Cardo",47.261791,-1.584234,-1,0,ONA:SA:LCAR,Europe/Paris,2,ONA, +ONA:SP:LCAR5,1,"Le Cardo",47.261877,-1.584373,-1,0,ONA:SA:LCAR,Europe/Paris,2,ONA, +ONA:SP:LCAR6,1,"Le Cardo",47.261971,-1.584247,-1,0,ONA:SA:LCAR,Europe/Paris,2,ONA, +ONA:SP:LCBU1,1,"Le Corbusier",47.19009,-1.568544,-1,0,ONA:SA:LCBU,Europe/Paris,2,ONA, +ONA:SP:LCBU2,1,"Le Corbusier",47.190175,-1.568682,-1,0,ONA:SA:LCBU,Europe/Paris,0,ONA, +ONA:SP:LCEE1,1,"La Carrée",47.168498,-1.543856,-1,0,ONA:SA:LCEE,Europe/Paris,2,ONA, +ONA:SP:LCEE2,1,"La Carrée",47.16834,-1.543185,-1,0,ONA:SA:LCEE,Europe/Paris,2,ONA, +ONA:SP:LCEE3,1,"La Carrée",47.168892,-1.542829,-1,0,ONA:SA:LCEE,Europe/Paris,2,ONA, +ONA:SP:LCEE4,1,"La Carrée",47.168704,-1.543079,-1,0,ONA:SA:LCEE,Europe/Paris,2,ONA, +ONA:SP:LCHA1,1,"Lechat",47.176332,-1.543896,-1,0,OPL:SA:AST-22153-A-22153-R,Europe/Paris,2,ONA, +ONA:SP:LCHA2,1,"Lechat",47.175797,-1.543725,-1,0,OPL:SA:AST-22153-A-22153-R,Europe/Paris,2,ONA, +ONA:SP:LCLE1,1,"La Coulée",47.260133,-1.574719,-1,0,ONA:SA:LCLE,Europe/Paris,2,ONA, +ONA:SP:LCLE2,1,"La Coulée",47.259495,-1.574937,-1,0,ONA:SA:LCLE,Europe/Paris,2,ONA, +ONA:SP:LCNE1,1,"Le Chêne",47.16526,-1.484459,-1,0,ONA:SA:LCNE,Europe/Paris,2,ONA, +ONA:SP:LCNE2,1,"Le Chêne",47.165269,-1.484195,-1,0,ONA:SA:LCNE,Europe/Paris,2,ONA, +ONA:SP:LCOG1,1,"La Cogne",47.287581,-1.556741,-1,0,ONA:SA:LCOG,Europe/Paris,2,ONA, +ONA:SP:LCOG2,1,"La Cogne",47.28684,-1.557349,-1,0,ONA:SA:LCOG,Europe/Paris,0,ONA, +ONA:SP:LCSE1,1,"La Close",47.240834,-1.572779,-1,0,ONA:SA:LCSE,Europe/Paris,2,ONA, +ONA:SP:LCSE2,1,"La Close",47.241706,-1.573636,-1,0,ONA:SA:LCSE,Europe/Paris,2,ONA, +ONA:SP:LCTE1,1,"La Côte",47.282142,-1.560448,-1,0,ONA:SA:LCTE,Europe/Paris,2,ONA, +ONA:SP:LCTE2,1,"La Côte",47.282137,-1.56058,-1,0,ONA:SA:LCTE,Europe/Paris,2,ONA, +ONA:SP:LDAS1,1,"Landas",47.169338,-1.510767,-1,0,ONA:SA:LDAS,Europe/Paris,0,ONA, +ONA:SP:LDAS2,1,"Landas",47.168862,-1.511526,-1,0,ONA:SA:LDAS,Europe/Paris,0,ONA, +ONA:SP:LDRE1,1,"Landreau",47.232479,-1.515971,-1,0,ONA:SA:LDRE,Europe/Paris,2,ONA, +ONA:SP:LDRE2,1,"Landreau",47.232111,-1.516208,-1,0,ONA:SA:LDRE,Europe/Paris,2,ONA, +ONA:SP:LDRE3,1,"Landreau",47.231491,-1.515899,-1,0,ONA:SA:LDRE,Europe/Paris,2,ONA, +ONA:SP:LDRE4,1,"Landreau",47.231487,-1.516031,-1,0,ONA:SA:LDRE,Europe/Paris,2,ONA, +ONA:SP:LDSS1,1,"Landas",47.17445,-1.55961,-1,0,ONA:SA:LDSS,Europe/Paris,2,ONA, +ONA:SP:LDSS2,1,"Landas",47.174715,-1.559761,-1,0,ONA:SA:LDSS,Europe/Paris,2,ONA, +ONA:SP:LECH2,1,"Lechat",47.20408,-1.580931,-1,0,ONA:SA:LECH,Europe/Paris,2,ONA, +ONA:SP:LECH3,1,"Lechat",47.203532,-1.581155,-1,0,ONA:SA:LECH,Europe/Paris,2,ONA, +ONA:SP:LEGU1,1,"Leygues",47.203343,-1.541493,-1,0,ONA:SA:LEGU,Europe/Paris,2,ONA, +ONA:SP:LEGU2,1,"Leygues",47.20324,-1.541883,-1,0,ONA:SA:LEGU,Europe/Paris,2,ONA, +ONA:SP:LEVO1,1,"Levoyer",47.19444,-1.581018,-1,0,ONA:SA:LEVO,Europe/Paris,2,ONA, +ONA:SP:LEVO2,1,"Levoyer",47.193874,-1.581769,-1,0,ONA:SA:LEVO,Europe/Paris,2,ONA, +ONA:SP:LFAU1,1,"Les Faulx",47.157414,-1.522587,-1,0,ONA:SA:LFAU,Europe/Paris,2,ONA, +ONA:SP:LFAU2,1,"Les Faulx",47.15723,-1.522706,-1,0,ONA:SA:LFAU,Europe/Paris,2,ONA, +ONA:SP:LFER1,1,"La ferme",47.264276,-1.67955,-1,0,ONA:SA:LFER,Europe/Paris,2,ONA, +ONA:SP:LFER2,1,"La ferme",47.264249,-1.680342,-1,0,ONA:SA:LFER,Europe/Paris,2,ONA, +ONA:SP:LFLE1,1,"Laurier Fleuri",47.18742,-1.484323,-1,0,ONA:SA:LFLE,Europe/Paris,2,ONA, +ONA:SP:LFLE2,1,"Laurier Fleuri",47.187583,-1.484863,-1,0,ONA:SA:LFLE,Europe/Paris,2,ONA, +ONA:SP:LFLE3,1,"Laurier Fleuri",47.187815,-1.483294,-1,0,ONA:SA:LFLE,Europe/Paris,2,ONA, +ONA:SP:LFLE4,1,"Laurier Fleuri",47.188341,-1.483728,-1,0,ONA:SA:LFLE,Europe/Paris,2,ONA, +ONA:SP:LFOR1,1,"La Forêt",47.15032,-1.638394,-1,0,ONA:SA:LFOR,Europe/Paris,0,ONA, +ONA:SP:LFOR2,1,"La Forêt",47.149475,-1.639387,-1,0,ONA:SA:LFOR,Europe/Paris,0,ONA, +ONA:SP:LFVR1,1,"Lefeuvre",47.266587,-1.495142,-1,0,ONA:SA:LFVR,Europe/Paris,2,ONA, +ONA:SP:LFVR2,1,"Lefeuvre",47.266861,-1.49503,-1,0,ONA:SA:LFVR,Europe/Paris,2,ONA, +ONA:SP:LGAR1,1,"La Garde",47.255335,-1.50849,-1,0,ONA:SA:LGAR,Europe/Paris,0,ONA, +ONA:SP:LGAR2,1,"La Garde",47.255762,-1.509182,-1,0,ONA:SA:LGAR,Europe/Paris,2,ONA, +ONA:SP:LGAR3,1,"La Garde",47.256135,-1.508812,-1,0,ONA:SA:LGAR,Europe/Paris,2,ONA, +ONA:SP:LGAR4,1,"La Garde",47.257608,-1.50786,-1,0,ONA:SA:LGAR,Europe/Paris,0,ONA, +ONA:SP:LGOF1,1,"Le Goffic",47.229993,-1.563127,-1,0,ONA:SA:LGOF,Europe/Paris,2,ONA, +ONA:SP:LGOF2,1,"Le Goffic",47.230869,-1.563852,-1,0,ONA:SA:LGOF,Europe/Paris,2,ONA, +ONA:SP:LGRI1,1,"La Grille",47.250928,-1.48119,-1,0,ONA:SA:LGRI,Europe/Paris,2,ONA, +ONA:SP:LGRI2,1,"La Grille",47.250992,-1.481988,-1,0,ONA:SA:LGRI,Europe/Paris,2,ONA, +ONA:SP:LGTH1,1,"Lagathu",47.180363,-1.536526,-1,0,ONA:SA:LGTH,Europe/Paris,2,ONA, +ONA:SP:LGTH2,1,"Lagathu",47.181064,-1.537106,-1,0,ONA:SA:LGTH,Europe/Paris,2,ONA, +ONA:SP:LHAC1,1,"La Hache",47.262318,-1.498938,-1,0,ONA:SA:LHAC,Europe/Paris,0,ONA, +ONA:SP:LHAC2,1,"La Hache",47.262133,-1.499057,-1,0,ONA:SA:LHAC,Europe/Paris,2,ONA, +ONA:SP:LHER1,1,"La Herdrie",47.197737,-1.452818,-1,0,ONA:SA:LHER,Europe/Paris,0,ONA, +ONA:SP:LHIE1,1,"La Haie",47.289956,-1.542353,-1,0,ONA:SA:LHIE,Europe/Paris,0,ONA, +ONA:SP:LHIE2,1,"La Haie",47.290132,-1.542498,-1,0,ONA:SA:LHIE,Europe/Paris,0,ONA, +ONA:SP:LHLE1,1,"Le Halleray",47.269841,-1.456607,-1,0,ONA:SA:LHLE,Europe/Paris,2,ONA, +ONA:SP:LHOU1,1,"La Houssais",47.174287,-1.553786,-1,0,ONA:SA:LHOU,Europe/Paris,2,ONA, +ONA:SP:LHOU2,1,"La Houssais",47.173685,-1.55295,-1,0,ONA:SA:LHOU,Europe/Paris,0,ONA, +ONA:SP:LHPI1,1,"L'Hopitau",47.271991,-1.551636,-1,0,ONA:SA:LHPI,Europe/Paris,2,ONA, +ONA:SP:LHPI2,1,"L'Hopitau",47.272261,-1.551655,-1,0,ONA:SA:LHPI,Europe/Paris,2,ONA, +ONA:SP:LIBE1,1,"Libération",47.17756,-1.678858,-1,0,ONA:SA:LIBE,Europe/Paris,0,ONA, +ONA:SP:LIBE2,1,"Libération",47.177281,-1.679101,-1,0,ONA:SA:LIBE,Europe/Paris,0,ONA, +ONA:SP:LILA1,1,"Lilas",47.137766,-1.468903,-1,0,ONA:SA:LILA,Europe/Paris,2,ONA, +ONA:SP:LILA2,1,"Lilas",47.137608,-1.468232,-1,0,ONA:SA:LILA,Europe/Paris,2,ONA, +ONA:SP:LION1,1,"Lionnière",47.218204,-1.696319,-1,0,ONA:SA:LION,Europe/Paris,2,ONA, +ONA:SP:LION2,1,"Lionnière",47.218667,-1.695957,-1,0,ONA:SA:LION,Europe/Paris,2,ONA, +ONA:SP:LIPP1,1,"Lippmann",47.238336,-1.521285,-1,0,ONA:SA:LIPP,Europe/Paris,0,ONA, +ONA:SP:LIPP2,1,"Lippmann",47.238996,-1.520407,-1,0,ONA:SA:LIPP,Europe/Paris,2,ONA, +ONA:SP:LITT1,1,"Littré",47.217719,-1.582458,-1,0,ONA:SA:LITT,Europe/Paris,2,ONA, +ONA:SP:LITT2,1,"Littré",47.217808,-1.582465,-1,0,ONA:SA:LITT,Europe/Paris,2,ONA, +ONA:SP:LJOS1,1,"Léon Jost",47.236291,-1.563322,-1,0,ONA:SA:LJOS,Europe/Paris,0,ONA, +ONA:SP:LJOS2,1,"Léon Jost",47.235837,-1.563421,-1,0,ONA:SA:LJOS,Europe/Paris,0,ONA, +ONA:SP:LLGR1,1,"Léo Lagrange",47.297279,-1.554932,-1,0,ONA:SA:LLGR,Europe/Paris,2,ONA, +ONA:SP:LLGR2,1,"Léo Lagrange",47.296996,-1.555309,-1,0,ONA:SA:LLGR,Europe/Paris,2,ONA, +ONA:SP:LLIO1,1,"Les Lions",47.249611,-1.613896,-1,0,ONA:SA:LLIO,Europe/Paris,2,ONA, +ONA:SP:LLIO2,1,"Les Lions",47.249826,-1.6155,-1,0,ONA:SA:LLIO,Europe/Paris,2,ONA, +ONA:SP:LLMO1,1,"Le Clémois",47.137383,-1.722577,-1,0,ONA:SA:LLMO,Europe/Paris,0,ONA, +ONA:SP:LLMO2,1,"Le Clémois",47.137298,-1.722439,-1,0,ONA:SA:LLMO,Europe/Paris,0,ONA, +ONA:SP:LLOR1,1,"La Lorie",47.235246,-1.657004,-1,0,ONA:SA:LLOR,Europe/Paris,0,ONA, +ONA:SP:LLOR2,1,"La Lorie",47.23499,-1.656589,-1,0,ONA:SA:LLOR,Europe/Paris,0,ONA, +ONA:SP:LMAR1,1,"La Marche",47.181108,-1.659703,-1,0,ONA:SA:LMAR,Europe/Paris,2,ONA, +ONA:SP:LMAR2,1,"La Marche",47.180677,-1.659143,-1,0,ONA:SA:LMAR,Europe/Paris,2,ONA, +ONA:SP:LMBR1,1,"Lambert",47.17089,-1.539671,-1,0,ONA:SA:LMBR,Europe/Paris,2,ONA, +ONA:SP:LMBR2,1,"Lambert",47.171362,-1.539045,-1,0,ONA:SA:LMBR,Europe/Paris,2,ONA, +ONA:SP:LME98,1,"La Martinière",47.206332,-1.784911,-1,0,ONA:SA:LMEE,Europe/Paris,2,ONA, +ONA:SP:LMIC1,1,"Louise Michel",47.22011,-1.615287,-1,0,ONA:SA:LMIC,Europe/Paris,2,ONA, +ONA:SP:LMIC2,1,"Louise Michel",47.219885,-1.616593,-1,0,ONA:SA:LMIC,Europe/Paris,2,ONA, +ONA:SP:LMNE1,1,"Lemoine",47.235563,-1.547533,-1,0,ONA:SA:LMNE,Europe/Paris,0,ONA, +ONA:SP:LMNE2,1,"Lemoine",47.236237,-1.546259,-1,0,ONA:SA:LMNE,Europe/Paris,0,ONA, +ONA:SP:LMNE3,1,"Lemoine",47.235329,-1.546458,-1,0,ONA:SA:LMNE,Europe/Paris,2,ONA, +ONA:SP:LMRI1,1,"Lamoricière",47.214456,-1.572437,-1,0,ONA:SA:LMRI,Europe/Paris,2,ONA, +ONA:SP:LMRI2,1,"Lamoricière",47.214542,-1.572576,-1,0,ONA:SA:LMRI,Europe/Paris,2,ONA, +ONA:SP:LMTA1,1,"La Montagne",47.188795,-1.689875,-1,0,OPL:SA:AST-23040-A-23040-R,Europe/Paris,2,ONA, +ONA:SP:LMTA2,1,"La Montagne",47.188458,-1.689189,-1,0,OPL:SA:AST-23040-A-23040-R,Europe/Paris,2,ONA, +ONA:SP:LNAI1,1,"Le Nain",47.226635,-1.600961,-1,0,ONA:SA:LNAI,Europe/Paris,2,ONA, +ONA:SP:LNAI2,1,"Le Nain",47.227103,-1.600466,-1,0,ONA:SA:LNAI,Europe/Paris,2,ONA, +ONA:SP:LNOU1,1,"La Noue",47.140388,-1.607691,-1,0,ONA:SA:LNOU,Europe/Paris,2,ONA, +ONA:SP:LNOU2,1,"La Noue",47.140756,-1.607454,-1,0,ONA:SA:LNOU,Europe/Paris,2,ONA, +ONA:SP:LNTT1,1,"Linot",47.265471,-1.52589,-1,0,ONA:SA:LNTT,Europe/Paris,2,ONA, +ONA:SP:LNTT2,1,"Linot",47.265372,-1.526148,-1,0,ONA:SA:LNTT,Europe/Paris,2,ONA, +ONA:SP:LOIR1,1,"Loire",47.248319,-1.486559,-1,0,ONA:SA:LOIR,Europe/Paris,2,ONA, +ONA:SP:LOIR2,1,"Loire",47.248498,-1.486572,-1,0,ONA:SA:LOIR,Europe/Paris,2,ONA, +ONA:SP:LONG1,1,"Longchamp",47.235099,-1.582542,-1,0,ONA:SA:LONG,Europe/Paris,2,ONA, +ONA:SP:LONG2,1,"Longchamp",47.234843,-1.582126,-1,0,ONA:SA:LONG,Europe/Paris,2,ONA, +ONA:SP:LPBA1,1,"Bac du Pellerin",47.202897,-1.754907,-1,0,ONA:SA:LPBA,Europe/Paris,2,ONA, +ONA:SP:LPEL1,1,"Le Pellerin",47.201305,-1.759147,-1,0,ONA:SA:LPEL,Europe/Paris,0,ONA, +ONA:SP:LPEL2,1,"Le Pellerin",47.201215,-1.75914,-1,0,ONA:SA:LPEL,Europe/Paris,0,ONA, +ONA:SP:LPLE1,1,"La Plée",47.194416,-1.463418,-1,0,ONA:SA:LPLE,Europe/Paris,2,ONA, +ONA:SP:LPLE2,1,"La Plée",47.194006,-1.462199,-1,0,ONA:SA:LPLE,Europe/Paris,0,ONA, +ONA:SP:LPLE4,1,"La Plée",47.19318,-1.462669,-1,0,ONA:SA:LPLE,Europe/Paris,0,ONA, +ONA:SP:LPME1,1,"La Plume",47.194913,-1.505471,-1,0,ONA:SA:LPME,Europe/Paris,2,ONA, +ONA:SP:LPME2,1,"La Plume",47.194922,-1.505207,-1,0,ONA:SA:LPME,Europe/Paris,2,ONA, +ONA:SP:LRAY1,1,"Le Gray 1",47.284221,-1.586806,-1,0,OPL:SA:AST-12203-A-12203-R,Europe/Paris,0,ONA, +ONA:SP:LRAY2,1,"Le Gray 1",47.283686,-1.586635,-1,0,OPL:SA:AST-12203-A-12203-R,Europe/Paris,0,ONA, +ONA:SP:LRCH1,1,"La Roche",47.216516,-1.519315,-1,0,ONA:SA:LRCH,Europe/Paris,2,ONA, +ONA:SP:LRCH2,1,"La Roche",47.21683,-1.518016,-1,0,ONA:SA:LRCH,Europe/Paris,2,ONA, +ONA:SP:LRHE1,1,"Les Roches",47.26357,-1.579601,-1,0,ONA:SA:LRHE,Europe/Paris,0,ONA, +ONA:SP:LRHE2,1,"Les Roches",47.263094,-1.58036,-1,0,ONA:SA:LRHE,Europe/Paris,0,ONA, +ONA:SP:LRHE3,1,"Les Roches",47.263732,-1.580142,-1,0,ONA:SA:LRHE,Europe/Paris,2,ONA, +ONA:SP:LRNE1,1,"Lourneau",47.200254,-1.488411,-1,0,ONA:SA:LRNE,Europe/Paris,0,ONA, +ONA:SP:LRNE2,1,"Lourneau",47.200537,-1.488035,-1,0,ONA:SA:LRNE,Europe/Paris,2,ONA, +ONA:SP:LRNE3,1,"Lourneau",47.199526,-1.488623,-1,0,ONA:SA:LRNE,Europe/Paris,0,ONA, +ONA:SP:LRNE4,1,"Lourneau",47.199526,-1.488623,-1,0,ONA:SA:LRNE,Europe/Paris,0,ONA, +ONA:SP:LRYA1,1,"Le Gray 2",47.283318,-1.584225,-1,0,ONA:SA:LRYA,Europe/Paris,2,ONA, +ONA:SP:LRYA2,1,"Le Gray 2",47.283322,-1.584093,-1,0,ONA:SA:LRYA,Europe/Paris,2,ONA, +ONA:SP:LSAL1,1,"La Salle",47.214311,-1.689151,-1,0,ONA:SA:LSAL,Europe/Paris,2,ONA, +ONA:SP:LSAL2,1,"La Salle",47.214424,-1.688499,-1,0,ONA:SA:LSAL,Europe/Paris,2,ONA, +ONA:SP:LSLL1,1,"Les Salles",47.25027,-1.536035,-1,0,ONA:SA:LSLL,Europe/Paris,0,ONA, +ONA:SP:LSLL2,1,"Les Salles",47.25036,-1.536042,-1,0,ONA:SA:LSLL,Europe/Paris,0,ONA, +ONA:SP:LSOU1,1,"La Source",47.305673,-1.551704,-1,0,ONA:SA:LSOU,Europe/Paris,2,ONA, +ONA:SP:LSOU2,1,"La Source",47.305583,-1.551698,-1,0,ONA:SA:LSOU,Europe/Paris,2,ONA, +ONA:SP:LSYY1,1,"Léon Say",47.229604,-1.569313,-1,0,ONA:SA:LSYY,Europe/Paris,0,ONA, +ONA:SP:LSYY2,1,"Léon Say",47.229055,-1.569538,-1,0,ONA:SA:LSYY,Europe/Paris,0,ONA, +ONA:SP:LTOU1,1,"Le Tour",47.151608,-1.689456,-1,0,ONA:SA:LTOU,Europe/Paris,2,ONA, +ONA:SP:LTOU2,1,"Le Tour",47.151896,-1.68895,-1,0,ONA:SA:LTOU,Europe/Paris,2,ONA, +ONA:SP:LUNI1,1,"Lieu Unique",47.215699,-1.546064,-1,0,ONA:SA:LUNI,Europe/Paris,2,ONA, +ONA:SP:LUNI2,1,"Lieu Unique",47.215851,-1.545308,-1,0,ONA:SA:LUNI,Europe/Paris,2,ONA, +ONA:SP:LYBR1,1,"Lycée Brottier",47.159861,-1.677531,-1,0,ONA:SA:LYBR,Europe/Paris,2,ONA, +ONA:SP:LYBR2,1,"Lycée Brottier",47.160665,-1.677723,-1,0,ONA:SA:LYBR,Europe/Paris,2,ONA, +ONA:SP:LYCQ1,1,"Lycée de Carquefou",47.279391,-1.491958,-1,0,ONA:SA:LYCQ,Europe/Paris,2,ONA, +ONA:SP:LYOR1,1,"Lycée d'Orbigny",47.154374,-1.679893,-1,0,ONA:SA:LYOR,Europe/Paris,2,ONA, +ONA:SP:LYOR2,1,"Lycée d'Orbigny",47.154271,-1.680281,-1,0,ONA:SA:LYOR,Europe/Paris,2,ONA, +ONA:SP:LYOR3,1,"Lycée d'Orbigny",47.155757,-1.681581,-1,0,ONA:SA:LYOR,Europe/Paris,2,ONA, +ONA:SP:LYPE1,1,"Lycée Appert",47.251678,-1.611403,-1,0,ONA:SA:LYPE,Europe/Paris,2,ONA, +ONA:SP:LYPE2,1,"Lycée Appert",47.251067,-1.610829,-1,0,ONA:SA:LYPE,Europe/Paris,2,ONA, +ONA:SP:LYRI1,1,"Lycée Rieffel",47.255373,-1.642765,-1,0,ONA:SA:LYRI,Europe/Paris,2,ONA, +ONA:SP:LYRI2,1,"Lycée Rieffel",47.255558,-1.642646,-1,0,ONA:SA:LYRI,Europe/Paris,2,ONA, +ONA:SP:LZCA1,1,"Lusançay",47.202679,-1.582414,-1,0,ONA:SA:LZCA,Europe/Paris,2,ONA, +ONA:SP:LZCA2,1,"Lusançay",47.202764,-1.582552,-1,0,ONA:SA:LZCA,Europe/Paris,2,ONA, +ONA:SP:MAAR1,1,"Maillardière",47.274037,-1.634362,-1,0,ONA:SA:MAAR,Europe/Paris,2,ONA, +ONA:SP:MAAR2,1,"Maillardière",47.273871,-1.633952,-1,0,ONA:SA:MAAR,Europe/Paris,2,ONA, +ONA:SP:MACH1,1,"MIN",47.201577,-1.553788,-1,0,ONA:SA:MACH,Europe/Paris,2,ONA, +ONA:SP:MACH2,1,"MIN",47.201667,-1.553794,-1,0,ONA:SA:MACH,Europe/Paris,2,ONA, +ONA:SP:MADO1,1,"Mandon",47.16075,-1.471065,-1,0,ONA:SA:MADO,Europe/Paris,2,ONA, +ONA:SP:MADO2,1,"Mandon",47.160404,-1.470644,-1,0,ONA:SA:MADO,Europe/Paris,2,ONA, +ONA:SP:MAGA1,1,"Gare de Mauves",47.293185,-1.389698,-1,0,ONA:SA:MAGA,Europe/Paris,2,ONA, +ONA:SP:MAGA2,1,"Gare de Mauves",47.293185,-1.389698,-1,0,ONA:SA:MAGA,Europe/Paris,0,ONA, +ONA:SP:MAI81,1,"8 Mai",47.189501,-1.551325,-1,0,ONA:SA:MAI8,Europe/Paris,2,ONA, +ONA:SP:MAI82,1,"8 Mai",47.189219,-1.551701,-1,0,ONA:SA:MAI8,Europe/Paris,2,ONA, +ONA:SP:MAI83,1,"8 Mai",47.188864,-1.551543,-1,0,ONA:SA:MAI8,Europe/Paris,2,ONA, +ONA:SP:MAI84,1,"8 Mai",47.189039,-1.551687,-1,0,ONA:SA:MAI8,Europe/Paris,2,ONA, +ONA:SP:MAI85,1,"8 Mai",47.188971,-1.551022,-1,0,ONA:SA:MAI8,Europe/Paris,2,ONA, +ONA:SP:MAI86,1,"8 Mai",47.189241,-1.551041,-1,0,ONA:SA:MAI8,Europe/Paris,2,ONA, +ONA:SP:MALL1,1,"Mail",47.269053,-1.611628,-1,0,ONA:SA:MALL,Europe/Paris,2,ONA, +ONA:SP:MALL2,1,"Mail",47.269062,-1.611364,-1,0,ONA:SA:MALL,Europe/Paris,2,ONA, +ONA:SP:MAMT1,1,"8 Mai",47.179676,-1.677563,-1,0,ONA:SA:MAMT,Europe/Paris,0,ONA, +ONA:SP:MAMT2,1,"8 Mai",47.179308,-1.6778,-1,0,ONA:SA:MAMT,Europe/Paris,0,ONA, +ONA:SP:MARR1,1,"Maison d'Arrêt",47.266404,-1.503333,-1,0,ONA:SA:MARR,Europe/Paris,2,ONA, +ONA:SP:MARR2,1,"Maison d'Arrêt",47.266957,-1.502975,-1,0,ONA:SA:MARR,Europe/Paris,2,ONA, +ONA:SP:MASS1,1,"Massigné",47.298878,-1.579542,-1,0,ONA:SA:MASS,Europe/Paris,0,ONA, +ONA:SP:MASS2,1,"Massigné",47.298878,-1.579542,-1,0,ONA:SA:MASS,Europe/Paris,0,ONA, +ONA:SP:MATI1,1,"Matière",47.276485,-1.449007,-1,0,ONA:SA:MATI,Europe/Paris,2,ONA, +ONA:SP:MATI2,1,"Matière",47.276485,-1.449007,-1,0,ONA:SA:MATI,Europe/Paris,2,ONA, +ONA:SP:MAUC1,1,"Centre de Mauves",47.297456,-1.394099,-1,0,ONA:SA:MAUC,Europe/Paris,0,ONA, +ONA:SP:MAUC2,1,"Centre de Mauves",47.296775,-1.39286,-1,0,ONA:SA:MAUC,Europe/Paris,0,ONA, +ONA:SP:MAZE1,1,"Mazères",47.313716,-1.350479,-1,0,ONA:SA:MAZE,Europe/Paris,0,ONA, +ONA:SP:MAZE2,1,"Mazères",47.313622,-1.350605,-1,0,ONA:SA:MAZE,Europe/Paris,0,ONA, +ONA:SP:MBCH1,1,"Maison Blanche",47.22128,-1.604797,-1,0,ONA:SA:MBCH,Europe/Paris,2,ONA, +ONA:SP:MBCH2,1,"Maison Blanche",47.221644,-1.604692,-1,0,ONA:SA:MBCH,Europe/Paris,2,ONA, +ONA:SP:MBLA1,1,"Mont-Blanc",47.17674,-1.555814,-1,0,ONA:SA:MBLA,Europe/Paris,0,ONA, +ONA:SP:MBLA2,1,"Mont-Blanc",47.17577,-1.555215,-1,0,ONA:SA:MBLA,Europe/Paris,2,ONA, +ONA:SP:MBOU1,1,"Mairie de Bouguenais",47.178992,-1.619254,-1,0,ONA:SA:MBOU,Europe/Paris,2,ONA, +ONA:SP:MBOU2,1,"Mairie de Bouguenais",47.17901,-1.618726,-1,0,ONA:SA:MBOU,Europe/Paris,2,ONA, +ONA:SP:MBRU1,1,"Moulin Brûlé",47.259715,-1.65526,-1,0,ONA:SA:MBRU,Europe/Paris,2,ONA, +ONA:SP:MBRU2,1,"Moulin Brûlé",47.259469,-1.65458,-1,0,ONA:SA:MBRU,Europe/Paris,2,ONA, +ONA:SP:MBSE1,1,"Moulin Boisseau",47.288386,-1.484131,-1,0,ONA:SA:MBSE,Europe/Paris,2,ONA, +ONA:SP:MBSE2,1,"Moulin Boisseau",47.287483,-1.484199,-1,0,ONA:SA:MBSE,Europe/Paris,2,ONA, +ONA:SP:MCAS1,1,"Moulin Cassé",47.25628,-1.469138,-1,0,ONA:SA:MCAS,Europe/Paris,2,ONA, +ONA:SP:MCAS2,1,"Moulin Cassé",47.256571,-1.468497,-1,0,ONA:SA:MCAS,Europe/Paris,2,ONA, +ONA:SP:MCCO1,1,"Marché Commun",47.259673,-1.499939,-1,0,ONA:SA:MCCO,Europe/Paris,2,ONA, +ONA:SP:MCCO2,1,"Marché Commun",47.2604,-1.499726,-1,0,ONA:SA:MCCO,Europe/Paris,2,ONA, +ONA:SP:MCHA1,1,"Mairie de Chantenay",47.206367,-1.587839,-1,0,ONA:SA:MCHA,Europe/Paris,2,ONA, +ONA:SP:MCHA2,1,"Mairie de Chantenay",47.207189,-1.587502,-1,0,ONA:SA:MCHA,Europe/Paris,2,ONA, +ONA:SP:MCHA3,1,"Mairie de Chantenay",47.206897,-1.588142,-1,0,ONA:SA:MCHA,Europe/Paris,2,ONA, +ONA:SP:MCOU1,1,"Mairie de Couëron",47.212255,-1.7272,-1,0,ONA:SA:MCOU,Europe/Paris,2,ONA, +ONA:SP:MCOU2,1,"Mairie de Couëron",47.21217,-1.727062,-1,0,ONA:SA:MCOU,Europe/Paris,2,ONA, +ONA:SP:MCUR1,1,"Madame Curie",47.18913,-1.554337,-1,0,ONA:SA:MCUR,Europe/Paris,2,ONA, +ONA:SP:MCUR2,1,"Madame Curie",47.189179,-1.555529,-1,0,ONA:SA:MCUR,Europe/Paris,2,ONA, +ONA:SP:MDAR1,1,"Maison des Arts",47.211116,-1.617531,-1,0,ONA:SA:MDAR,Europe/Paris,2,ONA, +ONA:SP:MDAR2,1,"Maison des Arts",47.211929,-1.617459,-1,0,ONA:SA:MDAR,Europe/Paris,2,ONA, +ONA:SP:MDAR3,1,"Maison des Arts",47.211094,-1.61819,-1,0,ONA:SA:MDAR,Europe/Paris,2,ONA, +ONA:SP:MDEL1,1,"Mandel",47.202591,-1.537078,-1,0,ONA:SA:MDEL,Europe/Paris,2,ONA, +ONA:SP:MDEL2,1,"Mandel",47.202496,-1.537203,-1,0,ONA:SA:MDEL,Europe/Paris,2,ONA, +ONA:SP:MDLA1,1,"Moulin des Landes",47.261544,-1.481551,-1,0,ONA:SA:MDLA,Europe/Paris,2,ONA, +ONA:SP:MDLA2,1,"Moulin des Landes",47.262087,-1.481458,-1,0,ONA:SA:MDLA,Europe/Paris,2,ONA, +ONA:SP:MDNE1,1,"Madeleine",47.275799,-1.483496,-1,0,ONA:SA:MDNE,Europe/Paris,2,ONA, +ONA:SP:MDNE2,1,"Madeleine",47.275615,-1.483615,-1,0,ONA:SA:MDNE,Europe/Paris,2,ONA, +ONA:SP:MDOU1,1,"Mairie de Doulon",47.226991,-1.518484,-1,0,ONA:SA:MDOU,Europe/Paris,2,ONA, +ONA:SP:MDOU2,1,"Mairie de Doulon",47.226803,-1.518735,-1,0,ONA:SA:MDOU,Europe/Paris,2,ONA, +ONA:SP:MDOU3,1,"Mairie de Doulon",47.226983,-1.518748,-1,0,ONA:SA:MDOU,Europe/Paris,2,ONA, +ONA:SP:MDOU4,1,"Mairie de Doulon",47.226592,-1.519645,-1,0,ONA:SA:MDOU,Europe/Paris,2,ONA, +ONA:SP:MDPO1,1,"Moulin de Porterie",47.275831,-1.512347,-1,0,ONA:SA:MDPO,Europe/Paris,2,ONA, +ONA:SP:MDPO2,1,"Moulin de Porterie",47.275835,-1.512215,-1,0,ONA:SA:MDPO,Europe/Paris,2,ONA, +ONA:SP:MDPO3,1,"Moulin de Porterie",47.275616,-1.51339,-1,0,ONA:SA:MDPO,Europe/Paris,2,ONA, +ONA:SP:MDPO4,1,"Moulin de Porterie",47.275526,-1.513384,-1,0,ONA:SA:MDPO,Europe/Paris,2,ONA, +ONA:SP:MDRE1,1,"Madoire",47.265051,-1.638987,-1,0,ONA:SA:MDRE,Europe/Paris,0,ONA, +ONA:SP:MDRE2,1,"Madoire",47.265083,-1.638063,-1,0,ONA:SA:MDRE,Europe/Paris,0,ONA, +ONA:SP:MDSI1,1,"Mondésir",47.217731,-1.568843,-1,0,ONA:SA:MDSI,Europe/Paris,2,ONA, +ONA:SP:MDSI2,1,"Mondésir",47.217722,-1.569107,-1,0,ONA:SA:MDSI,Europe/Paris,2,ONA, +ONA:SP:MDTH1,1,"Médiathèque",47.211166,-1.560565,-1,0,ONA:SA:MDTH,Europe/Paris,2,ONA, +ONA:SP:MDTH2,1,"Médiathèque",47.211054,-1.561218,-1,0,ONA:SA:MDTH,Europe/Paris,2,ONA, +ONA:SP:MEDI1,1,"Méditerranée",47.271066,-1.48501,-1,0,ONA:SA:MEDI,Europe/Paris,0,ONA, +ONA:SP:MEDI2,1,"Méditerranée",47.270321,-1.485751,-1,0,ONA:SA:MEDI,Europe/Paris,0,ONA, +ONA:SP:MELI1,1,"Méliès",47.181678,-1.556305,-1,0,ONA:SA:MELI,Europe/Paris,2,ONA, +ONA:SP:MELI2,1,"Méliès",47.181592,-1.556167,-1,0,ONA:SA:MELI,Europe/Paris,2,ONA, +ONA:SP:META1,1,"Métairie",47.213956,-1.699304,-1,0,ONA:SA:META,Europe/Paris,2,ONA, +ONA:SP:META2,1,"Métairie",47.213809,-1.698367,-1,0,ONA:SA:META,Europe/Paris,2,ONA, +ONA:SP:MGAL1,1,"Marie Galante",47.26417,-1.451045,-1,0,ONA:SA:MGAL,Europe/Paris,2,ONA, +ONA:SP:MGAL2,1,"Marie Galante",47.264089,-1.450775,-1,0,ONA:SA:MGAL,Europe/Paris,0,ONA, +ONA:SP:MGCH1,1,"Monge-Chauvinière",47.252608,-1.568216,-1,0,ONA:SA:MGCH,Europe/Paris,2,ONA, +ONA:SP:MGCH2,1,"Monge-Chauvinière",47.252837,-1.569423,-1,0,ONA:SA:MGCH,Europe/Paris,2,ONA, +ONA:SP:MGDR1,1,"Mongendrière",47.292616,-1.554328,-1,0,ONA:SA:MGDR,Europe/Paris,2,ONA, +ONA:SP:MGDR2,1,"Mongendrière",47.292337,-1.554572,-1,0,ONA:SA:MGDR,Europe/Paris,2,ONA, +ONA:SP:MGEL1,1,"Margelle",47.272712,-1.594166,-1,0,ONA:SA:MGEL,Europe/Paris,0,ONA, +ONA:SP:MGIN1,1,"Mangin",47.201871,-1.545087,-1,0,ONA:SA:MGIN,Europe/Paris,2,ONA, +ONA:SP:MGIN2,1,"Mangin",47.201606,-1.544936,-1,0,ONA:SA:MGIN,Europe/Paris,2,ONA, +ONA:SP:MGIN3,1,"Mangin",47.20156,-1.543611,-1,0,ONA:SA:MGIN,Europe/Paris,2,ONA, +ONA:SP:MGIN4,1,"Mangin",47.20174,-1.543624,-1,0,ONA:SA:MGIN,Europe/Paris,2,ONA, +ONA:SP:MGIN5,1,"Mangin",47.201031,-1.545951,-1,0,ONA:SA:MGIN,Europe/Paris,2,ONA, +ONA:SP:MGIN6,1,"Mangin",47.200775,-1.545536,-1,0,ONA:SA:MGIN,Europe/Paris,2,ONA, +ONA:SP:MGLI1,1,"Magnoliers",47.226203,-1.605689,-1,0,ONA:SA:MGLI,Europe/Paris,0,ONA, +ONA:SP:MGLI2,1,"Magnoliers",47.226675,-1.605062,-1,0,ONA:SA:MGLI,Europe/Paris,0,ONA, +ONA:SP:MGNO1,1,"Mignonnerie",47.243662,-1.483052,-1,0,ONA:SA:MGNO,Europe/Paris,0,ONA, +ONA:SP:MGNO2,1,"Mignonnerie",47.242623,-1.481787,-1,0,ONA:SA:MGNO,Europe/Paris,2,ONA, +ONA:SP:MGUA1,1,"Mainguais",47.282665,-1.485575,-1,0,ONA:SA:MGUA,Europe/Paris,2,ONA, +ONA:SP:MGUA2,1,"Mainguais",47.281771,-1.485379,-1,0,ONA:SA:MGUA,Europe/Paris,2,ONA, +ONA:SP:MHDI1,1,"Mahaudières",47.188925,-1.560399,-1,0,ONA:SA:MHDI,Europe/Paris,0,ONA, +ONA:SP:MHDI2,1,"Mahaudières",47.188907,-1.560926,-1,0,ONA:SA:MHDI,Europe/Paris,0,ONA, +ONA:SP:MHUI1,1,"Moulin à l'Huile",47.177762,-1.562889,-1,0,ONA:SA:MHUI,Europe/Paris,0,ONA, +ONA:SP:MHUI2,1,"Moulin à l'Huile",47.176958,-1.562698,-1,0,ONA:SA:MHUI,Europe/Paris,2,ONA, +ONA:SP:MHUI3,1,"Moulin à l'Huile",47.177245,-1.562191,-1,0,ONA:SA:MHUI,Europe/Paris,2,ONA, +ONA:SP:MHUI4,1,"Moulin à l'Huile",47.176616,-1.562145,-1,0,ONA:SA:MHUI,Europe/Paris,0,ONA, +ONA:SP:MIAI1,1,"Minais",47.257099,-1.466154,-1,0,ONA:SA:MIAI,Europe/Paris,2,ONA, +ONA:SP:MIAI2,1,"Minais",47.25709,-1.466418,-1,0,ONA:SA:MIAI,Europe/Paris,2,ONA, +ONA:SP:MIC99,1,"Michelet",47.235171,-1.556496,-1,0,ONA:SA:MICH,Europe/Paris,2,ONA, +ONA:SP:MICH1,1,"Michelet",47.235351,-1.556509,-1,0,ONA:SA:MICH,Europe/Paris,2,ONA, +ONA:SP:MICH2,1,"Michelet",47.234987,-1.556615,-1,0,ONA:SA:MICH,Europe/Paris,2,ONA, +ONA:SP:MICH3,1,"Michelet",47.234511,-1.557374,-1,0,ONA:SA:MICH,Europe/Paris,2,ONA, +ONA:SP:MICH4,1,"Michelet",47.234524,-1.556978,-1,0,ONA:SA:MICH,Europe/Paris,2,ONA, +ONA:SP:MIMO1,1,"Mimosas",47.241235,-1.587488,-1,0,ONA:SA:MIMO,Europe/Paris,2,ONA, +ONA:SP:MIMO2,1,"Mimosas",47.241321,-1.587626,-1,0,ONA:SA:MIMO,Europe/Paris,2,ONA, +ONA:SP:MIND1,1,"Mairie d'Indre",47.200716,-1.668304,-1,0,ONA:SA:MIND,Europe/Paris,2,ONA, +ONA:SP:MIND2,1,"Mairie d'Indre",47.200419,-1.669075,-1,0,ONA:SA:MIND,Europe/Paris,2,ONA, +ONA:SP:MITR1,1,"Mitrie",47.228815,-1.525887,-1,0,ONA:SA:MITR,Europe/Paris,2,ONA, +ONA:SP:MITR2,1,"Mitrie",47.228254,-1.526508,-1,0,ONA:SA:MITR,Europe/Paris,2,ONA, +ONA:SP:MITR3,1,"Mitrie",47.227755,-1.525282,-1,0,ONA:SA:MITR,Europe/Paris,2,ONA, +ONA:SP:MITR4,1,"Mitrie",47.228874,-1.526817,-1,0,ONA:SA:MITR,Europe/Paris,2,ONA, +ONA:SP:MKSU1,1,"Malakoff",47.216095,-1.521136,-1,0,ONA:SA:MKSU,Europe/Paris,2,ONA, +ONA:SP:MKSU2,1,"Malakoff",47.216001,-1.521261,-1,0,ONA:SA:MKSU,Europe/Paris,2,ONA, +ONA:SP:MLAN1,1,"Magellan",47.188169,-1.464427,-1,0,ONA:SA:MLAN,Europe/Paris,2,ONA, +ONA:SP:MLAN2,1,"Magellan",47.188083,-1.464289,-1,0,ONA:SA:MLAN,Europe/Paris,2,ONA, +ONA:SP:MLCH1,1,"Morlachère",47.161808,-1.482628,-1,0,ONA:SA:MLCH,Europe/Paris,2,ONA, +ONA:SP:MLCH3,1,"Morlachère",47.162043,-1.483701,-1,0,ONA:SA:MLCH,Europe/Paris,2,ONA, +ONA:SP:MLDR1,1,"Maladrie",47.18808,-1.494279,-1,0,OPL:SA:AST-25901-A-25901-R,Europe/Paris,2,ONA, +ONA:SP:MLDR2,1,"Maladrie",47.188284,-1.496275,-1,0,OPL:SA:AST-25901-A-25901-R,Europe/Paris,2,ONA, +ONA:SP:MLHE1,1,"Moulin Hérel",47.219434,-1.63758,-1,0,ONA:SA:MLHE,Europe/Paris,2,ONA, +ONA:SP:MLHE2,1,"Moulin Hérel",47.219614,-1.637593,-1,0,ONA:SA:MLHE,Europe/Paris,2,ONA, +ONA:SP:MLIN1,1,"Moulin",47.188667,-1.503701,-1,0,ONA:SA:MLIN,Europe/Paris,2,ONA, +ONA:SP:MLIN2,1,"Moulin",47.188889,-1.50517,-1,0,ONA:SA:MLIN,Europe/Paris,2,ONA, +ONA:SP:MLLI1,1,"Mellinet",47.21089,-1.576671,-1,0,ONA:SA:MLLI,Europe/Paris,2,ONA, +ONA:SP:MLLI2,1,"Mellinet",47.211811,-1.576077,-1,0,ONA:SA:MLLI,Europe/Paris,2,ONA, +ONA:SP:MLLI3,1,"Mellinet",47.211753,-1.577791,-1,0,ONA:SA:MLLI,Europe/Paris,2,ONA, +ONA:SP:MLLI4,1,"Mellinet",47.211195,-1.575636,-1,0,ONA:SA:MLLI,Europe/Paris,2,ONA, +ONA:SP:MLNE1,1,"Moulinets",47.209815,-1.629199,-1,0,ONA:SA:MLNE,Europe/Paris,0,ONA, +ONA:SP:MLNE2,1,"Moulinets",47.209994,-1.629212,-1,0,ONA:SA:MLNE,Europe/Paris,0,ONA, +ONA:SP:MLON1,1,"Mulonnière",47.266012,-1.55001,-1,0,ONA:SA:MLON,Europe/Paris,2,ONA, +ONA:SP:MLON2,1,"Mulonnière",47.265563,-1.549977,-1,0,ONA:SA:MLON,Europe/Paris,2,ONA, +ONA:SP:MLRA1,1,"Malraux",47.254406,-1.517418,-1,0,ONA:SA:MLRA,Europe/Paris,0,ONA, +ONA:SP:MLRA2,1,"Malraux",47.254308,-1.517676,-1,0,ONA:SA:MLRA,Europe/Paris,2,ONA, +ONA:SP:MMNA2,1,"Mermoz",47.239713,-1.584599,-1,0,ONA:SA:MMNA,Europe/Paris,2,ONA, +ONA:SP:MMNA3,1,"Mermoz",47.23934,-1.584968,-1,0,ONA:SA:MMNA,Europe/Paris,2,ONA, +ONA:SP:MMSS1,1,"Mermoz",47.19872,-1.515523,-1,0,ONA:SA:MMSS,Europe/Paris,2,ONA, +ONA:SP:MMSS2,1,"Mermoz",47.19881,-1.515529,-1,0,ONA:SA:MMSS,Europe/Paris,0,ONA, +ONA:SP:MNEF1,1,"Moulin Neuf",47.230121,-1.516462,-1,0,ONA:SA:MNEF,Europe/Paris,2,ONA, +ONA:SP:MNEF2,1,"Moulin Neuf",47.229852,-1.516442,-1,0,ONA:SA:MNEF,Europe/Paris,2,ONA, +ONA:SP:MNFA1,1,"Manufacture",47.218803,-1.537062,-1,0,ONA:SA:MNFA,Europe/Paris,2,ONA, +ONA:SP:MNFA2,1,"Manufacture",47.218691,-1.537715,-1,0,ONA:SA:MNFA,Europe/Paris,2,ONA, +ONA:SP:MNIE1,1,"Moulinier",47.135264,-1.665564,-1,0,ONA:SA:MNIE,Europe/Paris,0,ONA, +ONA:SP:MNIE2,1,"Moulinier",47.135499,-1.665806,-1,0,ONA:SA:MNIE,Europe/Paris,0,ONA, +ONA:SP:MNOT1,1,"Minoterie",47.216956,-1.721608,-1,0,ONA:SA:MNOT,Europe/Paris,2,ONA, +ONA:SP:MNOT2,1,"Minoterie",47.216866,-1.721601,-1,0,ONA:SA:MNOT,Europe/Paris,2,ONA, +ONA:SP:MNSS1,1,"Malnoue",47.20321,-1.505141,-1,0,ONA:SA:MNSS,Europe/Paris,0,ONA, +ONA:SP:MNSS2,1,"Malnoue",47.202657,-1.505498,-1,0,ONA:SA:MNSS,Europe/Paris,0,ONA, +ONA:SP:MNTR2,1,"Ménétrier",47.241221,-1.523874,-1,0,ONA:SA:MNTR,Europe/Paris,0,ONA, +ONA:SP:MNTR3,1,"Ménétrier",47.241316,-1.523749,-1,0,ONA:SA:MNTR,Europe/Paris,2,ONA, +ONA:SP:MNVE1,1,"Maison Neuve",47.274714,-1.467275,-1,0,ONA:SA:MNVE,Europe/Paris,2,ONA, +ONA:SP:MNVE2,1,"Maison Neuve",47.274624,-1.467268,-1,0,ONA:SA:MNVE,Europe/Paris,0,ONA, +ONA:SP:MOCT1,1,"Moulin Collet",47.200329,-1.766341,-1,0,ONA:SA:MOCT,Europe/Paris,2,ONA, +ONA:SP:MOCT2,1,"Moulin Collet",47.200333,-1.766209,-1,0,ONA:SA:MOCT,Europe/Paris,2,ONA, +ONA:SP:MOET1,1,"Mouettes",47.210259,-1.742911,-1,0,ONA:SA:MOET,Europe/Paris,0,ONA, +ONA:SP:MOET2,1,"Mouettes",47.210551,-1.742273,-1,0,ONA:SA:MOET,Europe/Paris,0,ONA, +ONA:SP:MOIN1,1,"Moinard",47.213533,-1.72928,-1,0,ONA:SA:MOIN,Europe/Paris,0,ONA, +ONA:SP:MOIN2,1,"Moinard",47.213348,-1.729399,-1,0,ONA:SA:MOIN,Europe/Paris,0,ONA, +ONA:SP:MONE1,1,"Moinet",47.265771,-1.49257,-1,0,ONA:SA:MONE,Europe/Paris,0,ONA, +ONA:SP:MONE2,1,"Moinet",47.265519,-1.492023,-1,0,ONA:SA:MONE,Europe/Paris,0,ONA, +ONA:SP:MONE3,1,"Moinet",47.264698,-1.492361,-1,0,ONA:SA:MONE,Europe/Paris,2,ONA, +ONA:SP:MONE4,1,"Moinet",47.264976,-1.492116,-1,0,ONA:SA:MONE,Europe/Paris,2,ONA, +ONA:SP:MORH1,1,"Morrhonnière-Petit Port",47.241657,-1.556439,-1,0,ONA:SA:MORH,Europe/Paris,2,ONA, +ONA:SP:MORH2,1,"Morrhonnière-Petit Port",47.241298,-1.556413,-1,0,ONA:SA:MORH,Europe/Paris,2,ONA, +ONA:SP:MORH3,1,"Morrhonnière-Petit Port",47.241572,-1.556301,-1,0,ONA:SA:MORH,Europe/Paris,2,ONA, +ONA:SP:MORH4,1,"Morrhonnière-Petit Port",47.240997,-1.557317,-1,0,ONA:SA:MORH,Europe/Paris,0,ONA, +ONA:SP:MOTE1,1,"Motte Rouge",47.227965,-1.553856,-1,0,ONA:SA:MOTE,Europe/Paris,2,ONA, +ONA:SP:MOTE2,1,"Motte Rouge",47.227677,-1.554364,-1,0,ONA:SA:MOTE,Europe/Paris,2,ONA, +ONA:SP:MOUT1,1,"Moutonnerie",47.219569,-1.533019,-1,0,ONA:SA:MOUT,Europe/Paris,2,ONA, +ONA:SP:MOUT2,1,"Moutonnerie",47.219556,-1.533415,-1,0,ONA:SA:MOUT,Europe/Paris,2,ONA, +ONA:SP:MOVA1,1,"Mairie d'Orvault",47.271368,-1.622915,-1,0,ONA:SA:MOVA,Europe/Paris,2,ONA, +ONA:SP:MOVA2,1,"Mairie d'Orvault",47.271162,-1.623694,-1,0,ONA:SA:MOVA,Europe/Paris,2,ONA, +ONA:SP:MOVA4,1,"Mairie d'Orvault",47.270726,-1.623265,-1,0,ONA:SA:MOVA,Europe/Paris,2,ONA, +ONA:SP:MOZI1,1,"Monzie",47.203396,-1.539911,-1,0,ONA:SA:MOZI,Europe/Paris,2,ONA, +ONA:SP:MOZI2,1,"Monzie",47.203225,-1.539635,-1,0,ONA:SA:MOZI,Europe/Paris,2,ONA, +ONA:SP:MPA58,1,"Marcel Paul",47.245675,-1.615722,-1,0,ONA:SA:MPAU,Europe/Paris,2,ONA, +ONA:SP:MPA59,1,"Marcel Paul",47.245765,-1.615729,-1,0,ONA:SA:MPAU,Europe/Paris,2,ONA, +ONA:SP:MPAU1,1,"Marcel Paul",47.246007,-1.61654,-1,0,ONA:SA:MPAU,Europe/Paris,2,ONA, +ONA:SP:MPAU2,1,"Marcel Paul",47.24576,-1.61586,-1,0,ONA:SA:MPAU,Europe/Paris,2,ONA, +ONA:SP:MPAU3,1,"Marcel Paul",47.245585,-1.615715,-1,0,ONA:SA:MPAU,Europe/Paris,2,ONA, +ONA:SP:MPAU4,1,"Marcel Paul",47.246798,-1.617128,-1,0,ONA:SA:MPAU,Europe/Paris,2,ONA, +ONA:SP:MPAU6,1,"Marcel Paul",47.245765,-1.615729,-1,0,ONA:SA:MPAU,Europe/Paris,2,ONA, +ONA:SP:MPER1,1,"Millepertuis",47.222037,-1.67942,-1,0,ONA:SA:MPER,Europe/Paris,2,ONA, +ONA:SP:MPER2,1,"Millepertuis",47.221938,-1.679677,-1,0,ONA:SA:MPER,Europe/Paris,2,ONA, +ONA:SP:MPMN1,1,"Melpomène",47.277592,-1.500034,-1,0,ONA:SA:MPMN,Europe/Paris,0,ONA, +ONA:SP:MPMN2,1,"Melpomène",47.277039,-1.500391,-1,0,ONA:SA:MPMN,Europe/Paris,0,ONA, +ONA:SP:MPTA1,1,"Maison Poitard",47.146685,-1.649742,-1,0,ONA:SA:MPTA,Europe/Paris,0,ONA, +ONA:SP:MPTA2,1,"Maison Poitard",47.147005,-1.648314,-1,0,ONA:SA:MPTA,Europe/Paris,0,ONA, +ONA:SP:MQDI1,1,"Marquis de Dion",47.297091,-1.487799,-1,0,ONA:SA:MQDI,Europe/Paris,2,ONA, +ONA:SP:MQDI2,1,"Marquis de Dion",47.297086,-1.487931,-1,0,ONA:SA:MQDI,Europe/Paris,2,ONA, +ONA:SP:MQLI1,1,"Mocquelière",47.233132,-1.619027,-1,0,ONA:SA:MQLI,Europe/Paris,0,ONA, +ONA:SP:MQLI2,1,"Mocquelière",47.233326,-1.618644,-1,0,ONA:SA:MQLI,Europe/Paris,0,ONA, +ONA:SP:MRAI1,1,"Maraîchers",47.184831,-1.510692,-1,0,ONA:SA:MRAI,Europe/Paris,2,ONA, +ONA:SP:MRAI2,1,"Maraîchers",47.184656,-1.510547,-1,0,ONA:SA:MRAI,Europe/Paris,2,ONA, +ONA:SP:MRDI1,1,"Maison Radieuse",47.188342,-1.566963,-1,0,ONA:SA:MRDI,Europe/Paris,0,ONA, +ONA:SP:MRDI2,1,"Maison Radieuse",47.187821,-1.566396,-1,0,ONA:SA:MRDI,Europe/Paris,2,ONA, +ONA:SP:MREZ1,1,"Mairie de Rezé",47.191384,-1.570224,-1,0,ONA:SA:MREZ,Europe/Paris,0,ONA, +ONA:SP:MREZ2,1,"Mairie de Rezé",47.191307,-1.569822,-1,0,ONA:SA:MREZ,Europe/Paris,0,ONA, +ONA:SP:MRGE1,1,"Morges",47.164947,-1.472155,-1,0,ONA:SA:MRGE,Europe/Paris,2,ONA, +ONA:SP:MRGE2,1,"Morges",47.164952,-1.472024,-1,0,ONA:SA:MRGE,Europe/Paris,2,ONA, +ONA:SP:MRIE1,1,"Maurienne",47.275619,-1.442461,-1,0,ONA:SA:MRIE,Europe/Paris,2,ONA, +ONA:SP:MRIE2,1,"Maurienne",47.275529,-1.442455,-1,0,ONA:SA:MRIE,Europe/Paris,2,ONA, +ONA:SP:MROT1,1,"Moulin Rothard",47.195846,-1.740359,-1,0,ONA:SA:MROT,Europe/Paris,2,ONA, +ONA:SP:MROT2,1,"Moulin Rothard",47.195908,-1.741157,-1,0,ONA:SA:MROT,Europe/Paris,2,ONA, +ONA:SP:MRRI1,1,"Marrière",47.237502,-1.524663,-1,0,ONA:SA:MRRI,Europe/Paris,2,ONA, +ONA:SP:MRRI2,1,"Marrière",47.237516,-1.524268,-1,0,ONA:SA:MRRI,Europe/Paris,0,ONA, +ONA:SP:MRTE1,1,"Marterie",47.178465,-1.531369,-1,0,ONA:SA:MRTE,Europe/Paris,2,ONA, +ONA:SP:MRTE2,1,"Marterie",47.17926,-1.531823,-1,0,ONA:SA:MRTE,Europe/Paris,2,ONA, +ONA:SP:MRTE3,1,"Marterie",47.178491,-1.530579,-1,0,ONA:SA:MRTE,Europe/Paris,2,ONA, +ONA:SP:MSHE1,1,"Mairie de St-Herblain",47.210943,-1.648713,-1,0,ONA:SA:MSHE,Europe/Paris,2,ONA, +ONA:SP:MSHE2,1,"Mairie de St-Herblain",47.211028,-1.648852,-1,0,ONA:SA:MSHE,Europe/Paris,2,ONA, +ONA:SP:MSHE3,1,"Mairie de St-Herblain",47.211563,-1.649024,-1,0,ONA:SA:MSHE,Europe/Paris,2,ONA, +ONA:SP:MSHE4,1,"Mairie de St-Herblain",47.211572,-1.64876,-1,0,ONA:SA:MSHE,Europe/Paris,2,ONA, +ONA:SP:MSHE5,1,"Mairie de St-Herblain",47.21168,-1.64824,-1,0,ONA:SA:MSHE,Europe/Paris,0,ONA, +ONA:SP:MSLL1,1,"Marseillaise",47.207342,-1.59095,-1,0,ONA:SA:MSLL,Europe/Paris,2,ONA, +ONA:SP:MSLL2,1,"Marseillaise",47.20749,-1.591886,-1,0,ONA:SA:MSLL,Europe/Paris,2,ONA, +ONA:SP:MSOR1,1,"Mairie des Sorinières",47.149162,-1.53229,-1,0,ONA:SA:MSOR,Europe/Paris,2,ONA, +ONA:SP:MSOR2,1,"Mairie des Sorinières",47.149598,-1.532718,-1,0,ONA:SA:MSOR,Europe/Paris,2,ONA, +ONA:SP:MSSI1,1,"Mississipi",47.237164,-1.609142,-1,0,ONA:SA:MSSI,Europe/Paris,0,ONA, +ONA:SP:MSSI2,1,"Mississipi",47.237069,-1.609267,-1,0,ONA:SA:MSSI,Europe/Paris,0,ONA, +ONA:SP:MTEI1,1,"Monteil",47.213988,-1.549522,-1,0,ONA:SA:MTEI,Europe/Paris,2,ONA, +ONA:SP:MTEI2,1,"Monteil",47.21409,-1.549172,-1,0,ONA:SA:MTEI,Europe/Paris,2,ONA, +ONA:SP:MTIE1,1,"Métairie",47.204993,-1.511084,-1,0,ONA:SA:MTIE,Europe/Paris,0,ONA, +ONA:SP:MTIE3,1,"Métairie",47.205249,-1.511499,-1,0,ONA:SA:MTIE,Europe/Paris,0,ONA, +ONA:SP:MTLI1,1,"Martellière",47.199036,-1.524927,-1,0,ONA:SA:MTLI,Europe/Paris,2,ONA, +ONA:SP:MTLI2,1,"Martellière",47.199167,-1.526391,-1,0,ONA:SA:MTLI,Europe/Paris,0,ONA, +ONA:SP:MTRA1,1,"Mortrais",47.12801,-1.616678,-1,0,ONA:SA:MTRA,Europe/Paris,2,ONA, +ONA:SP:MTRA2,1,"Mortrais",47.128378,-1.616441,-1,0,ONA:SA:MTRA,Europe/Paris,2,ONA, +ONA:SP:MTYY1,1,"Monty",47.274214,-1.4331,-1,0,ONA:SA:MTYY,Europe/Paris,0,ONA, +ONA:SP:MULI1,1,"Mouline",47.323552,-1.553006,-1,0,ONA:SA:MULI,Europe/Paris,0,ONA, +ONA:SP:MULI2,1,"Mouline",47.323548,-1.553138,-1,0,ONA:SA:MULI,Europe/Paris,0,ONA, +ONA:SP:MVA98,1,"Mortier Vannerie",47.180165,-1.499393,-1,0,ONA:SA:MVAN,Europe/Paris,2,ONA, +ONA:SP:MVA99,1,"Mortier Vannerie",47.179985,-1.49938,-1,0,ONA:SA:MVAN,Europe/Paris,2,ONA, +ONA:SP:MVAN1,1,"Mortier Vannerie",47.179985,-1.49938,-1,0,ONA:SA:MVAN,Europe/Paris,2,ONA, +ONA:SP:MVAN2,1,"Mortier Vannerie",47.180165,-1.499393,-1,0,ONA:SA:MVAN,Europe/Paris,2,ONA, +ONA:SP:MVRD2,1,"Monteverdi",47.266577,-1.446321,-1,0,ONA:SA:MVRD,Europe/Paris,0,ONA, +ONA:SP:MVSI1,1,"Mauvoisins",47.190276,-1.525617,-1,0,ONA:SA:MVSI,Europe/Paris,2,ONA, +ONA:SP:MVSI2,1,"Mauvoisins",47.190011,-1.525466,-1,0,ONA:SA:MVSI,Europe/Paris,2,ONA, +ONA:SP:MZUR1,1,"Mazure",47.257176,-1.480181,-1,0,ONA:SA:MZUR,Europe/Paris,0,ONA, +ONA:SP:MZUR2,1,"Mazure",47.257967,-1.480767,-1,0,ONA:SA:MZUR,Europe/Paris,0,ONA, +ONA:SP:NAT98,1,"Nantes-Atlantique",47.157733,-1.600913,-1,0,ONA:SA:NATL,Europe/Paris,2,ONA, +ONA:SP:NATL1,1,"Nantes-Atlantique",47.157639,-1.601038,-1,0,ONA:SA:NATL,Europe/Paris,2,ONA, +ONA:SP:NBEL1,1,"Nouveau Bêle",47.268703,-1.50191,-1,0,ONA:SA:NBEL,Europe/Paris,2,ONA, +ONA:SP:NBEL2,1,"Nouveau Bêle",47.268973,-1.501929,-1,0,ONA:SA:NBEL,Europe/Paris,2,ONA, +ONA:SP:NBLA1,1,"Noé Blanche",47.257395,-1.506125,-1,0,ONA:SA:NBLA,Europe/Paris,2,ONA, +ONA:SP:NBLA2,1,"Noé Blanche",47.258535,-1.504355,-1,0,ONA:SA:NBLA,Europe/Paris,0,ONA, +ONA:SP:NCTE1,1,"Noé Cottée",47.194095,-1.47859,-1,0,ONA:SA:NCTE,Europe/Paris,2,ONA, +ONA:SP:NCTE2,1,"Noé Cottée",47.194433,-1.479274,-1,0,ONA:SA:NCTE,Europe/Paris,2,ONA, +ONA:SP:NDRE1,1,"Naudières",47.173153,-1.536665,-1,0,ONA:SA:NDRE,Europe/Paris,2,ONA, +ONA:SP:NDRE2,1,"Naudières",47.173624,-1.536039,-1,0,ONA:SA:NDRE,Europe/Paris,2,ONA, +ONA:SP:NET10,1,"Neustrie",47.177217,-1.592175,-1,0,ONA:SA:NETR,Europe/Paris,2,ONA, +ONA:SP:NETR1,1,"Neustrie",47.177298,-1.592445,-1,0,ONA:SA:NETR,Europe/Paris,2,ONA, +ONA:SP:NETR2,1,"Neustrie",47.17719,-1.592965,-1,0,ONA:SA:NETR,Europe/Paris,2,ONA, +ONA:SP:NETR5,1,"Neustrie",47.177109,-1.592695,-1,0,ONA:SA:NETR,Europe/Paris,2,ONA, +ONA:SP:NETR6,1,"Neustrie",47.176934,-1.59255,-1,0,ONA:SA:NETR,Europe/Paris,2,ONA, +ONA:SP:NETR7,1,"Neustrie",47.177114,-1.592563,-1,0,ONA:SA:NETR,Europe/Paris,2,ONA, +ONA:SP:NETR8,1,"Neustrie",47.177212,-1.592306,-1,0,ONA:SA:NETR,Europe/Paris,2,ONA, +ONA:SP:NETR9,1,"Neustrie",47.177217,-1.592175,-1,0,ONA:SA:NETR,Europe/Paris,2,ONA, +ONA:SP:NIAG1,1,"Niagara",47.306003,-1.493336,-1,0,ONA:SA:NIAG,Europe/Paris,2,ONA, +ONA:SP:NIAG2,1,"Niagara",47.305775,-1.494776,-1,0,ONA:SA:NIAG,Europe/Paris,2,ONA, +ONA:SP:NILL1,1,"Nil",47.242429,-1.607943,-1,0,ONA:SA:NILL,Europe/Paris,2,ONA, +ONA:SP:NILL2,1,"Nil",47.241634,-1.607488,-1,0,ONA:SA:NILL,Europe/Paris,2,ONA, +ONA:SP:NILL3,1,"Nil",47.241867,-1.608563,-1,0,ONA:SA:NILL,Europe/Paris,2,ONA, +ONA:SP:NIZA1,1,"Nizan",47.205749,-1.550258,-1,0,ONA:SA:NIZA,Europe/Paris,2,ONA, +ONA:SP:NIZA2,1,"Nizan",47.20566,-1.550252,-1,0,ONA:SA:NIZA,Europe/Paris,2,ONA, +ONA:SP:NLBR1,1,"Noé Lambert",47.230079,-1.528491,-1,0,ONA:SA:NLBR,Europe/Paris,2,ONA, +ONA:SP:NLBR2,1,"Noé Lambert",47.229818,-1.528208,-1,0,ONA:SA:NLBR,Europe/Paris,2,ONA, +ONA:SP:NLLA1,1,"Noé Allais",47.220386,-1.688022,-1,0,ONA:SA:NLLA,Europe/Paris,2,ONA, +ONA:SP:NLLA2,1,"Noé Allais",47.220363,-1.688681,-1,0,ONA:SA:NLLA,Europe/Paris,2,ONA, +ONA:SP:NOAH1,1,"Noë St-Jean",47.219271,-1.735137,-1,0,ONA:SA:NOAH,Europe/Paris,2,ONA, +ONA:SP:NOAH2,1,"Noë St-Jean",47.219186,-1.734998,-1,0,ONA:SA:NOAH,Europe/Paris,2,ONA, +ONA:SP:NOBE1,1,"Nobel",47.237471,-1.51752,-1,0,ONA:SA:NOBE,Europe/Paris,0,ONA, +ONA:SP:NOHH1,1,"North'House",47.195494,-1.571184,-1,0,ONA:SA:NOHH,Europe/Paris,2,ONA, +ONA:SP:NOHH2,1,"North'House",47.195921,-1.571876,-1,0,ONA:SA:NOHH,Europe/Paris,0,ONA, +ONA:SP:NONO1,1,"Noé Nozou 1",47.130247,-1.637221,-1,0,ONA:SA:NONO,Europe/Paris,2,ONA, +ONA:SP:NONO2,1,"Noé Nozou 1",47.1302,-1.637033,-1,0,ONA:SA:NONO,Europe/Paris,2,ONA, +ONA:SP:NOSH1,1,"Noëlles",47.2403,-1.604348,-1,0,ONA:SA:NOSH,Europe/Paris,2,ONA, +ONA:SP:NOSH2,1,"Noëlles",47.240287,-1.604743,-1,0,ONA:SA:NOSH,Europe/Paris,2,ONA, +ONA:SP:NOZO1,1,"Noé Nozou 2",47.132104,-1.641635,-1,0,ONA:SA:NOZO,Europe/Paris,2,ONA, +ONA:SP:NOZO2,1,"Noé Nozou 2",47.132424,-1.642266,-1,0,ONA:SA:NOZO,Europe/Paris,2,ONA, +ONA:SP:NRCA1,1,"Noé Rocard",47.163626,-1.490285,-1,0,ONA:SA:NRCA,Europe/Paris,0,ONA, +ONA:SP:NRCA2,1,"Noé Rocard",47.163343,-1.490661,-1,0,ONA:SA:NRCA,Europe/Paris,0,ONA, +ONA:SP:NRDA1,1,"Néruda",47.217564,-1.613381,-1,0,ONA:SA:NRDA,Europe/Paris,2,ONA, +ONA:SP:NRDA2,1,"Néruda",47.217725,-1.613921,-1,0,ONA:SA:NRDA,Europe/Paris,2,ONA, +ONA:SP:NRDA3,1,"Néruda",47.217487,-1.612978,-1,0,ONA:SA:NRDA,Europe/Paris,2,ONA, +ONA:SP:NRDA4,1,"Néruda",47.217308,-1.612965,-1,0,ONA:SA:NRDA,Europe/Paris,2,ONA, +ONA:SP:NRDA5,1,"Néruda",47.217631,-1.611403,-1,0,ONA:SA:NRDA,Europe/Paris,2,ONA, +ONA:SP:NRDA6,1,"Néruda",47.217825,-1.61102,-1,0,ONA:SA:NRDA,Europe/Paris,2,ONA, +ONA:SP:NVER1,1,"Noue Verrière",47.276017,-1.571117,-1,0,ONA:SA:NVER,Europe/Paris,0,ONA, +ONA:SP:NVER2,1,"Noue Verrière",47.277881,-1.571915,-1,0,ONA:SA:NVER,Europe/Paris,0,ONA, +ONA:SP:OBLA1,1,"Ouche Blanche",47.179523,-1.564074,-1,0,ONA:SA:OBLA,Europe/Paris,0,ONA, +ONA:SP:OBLA2,1,"Ouche Blanche",47.179964,-1.56437,-1,0,ONA:SA:OBLA,Europe/Paris,0,ONA, +ONA:SP:OCAN1,1,"Océane",47.227597,-1.635938,-1,0,OPL:SA:AST-temp100-A-temp100-R,Europe/Paris,2,ONA, +ONA:SP:OCAN2,1,"Océane",47.227404,-1.636321,-1,0,OPL:SA:AST-temp100-A-temp100-R,Europe/Paris,2,ONA, +ONA:SP:OCEA1,1,"Couëron-Océan",47.213543,-1.739196,-1,0,ONA:SA:OCEA,Europe/Paris,2,ONA, +ONA:SP:OCEA2,1,"Couëron-Océan",47.21376,-1.738155,-1,0,ONA:SA:OCEA,Europe/Paris,0,ONA, +ONA:SP:OCEA3,1,"Couëron-Océan",47.213854,-1.73803,-1,0,ONA:SA:OCEA,Europe/Paris,0,ONA, +ONA:SP:OCEA4,1,"Couëron-Océan",47.213363,-1.739182,-1,0,ONA:SA:OCEA,Europe/Paris,2,ONA, +ONA:SP:OCOR1,1,"Ouche Cormier",47.264666,-1.624007,-1,0,ONA:SA:OCOR,Europe/Paris,2,ONA, +ONA:SP:OCOR2,1,"Ouche Cormier",47.264679,-1.623611,-1,0,ONA:SA:OCOR,Europe/Paris,2,ONA, +ONA:SP:ODLA1,1,"Ouche des Landes",47.195123,-1.482891,-1,0,ONA:SA:ODLA,Europe/Paris,0,ONA, +ONA:SP:ODLA2,1,"Ouche des Landes",47.194889,-1.481817,-1,0,ONA:SA:ODLA,Europe/Paris,0,ONA, +ONA:SP:ODNE1,1,"Ordronneau",47.193945,-1.574375,-1,0,ONA:SA:ODNE,Europe/Paris,2,ONA, +ONA:SP:ODNE2,1,"Ordronneau",47.193837,-1.574895,-1,0,ONA:SA:ODNE,Europe/Paris,2,ONA, +ONA:SP:OGV99,1,"Orvault-Grand Val",47.262973,-1.594508,-1,0,ONA:SA:OGVA,Europe/Paris,2,ONA, +ONA:SP:OGVA1,1,"Orvault-Grand Val",47.261967,-1.592317,-1,0,ONA:SA:OGVA,Europe/Paris,2,ONA, +ONA:SP:OGVA2,1,"Orvault-Grand Val",47.261711,-1.591902,-1,0,ONA:SA:OGVA,Europe/Paris,2,ONA, +ONA:SP:OGVA3,1,"Orvault-Grand Val",47.261702,-1.592166,-1,0,ONA:SA:OGVA,Europe/Paris,2,ONA, +ONA:SP:OGVA4,1,"Orvault-Grand Val",47.262039,-1.592852,-1,0,ONA:SA:OGVA,Europe/Paris,2,ONA, +ONA:SP:OGVA5,1,"Orvault-Grand Val",47.262973,-1.594508,-1,0,ONA:SA:OGVA,Europe/Paris,2,ONA, +ONA:SP:OLIV1,1,"Olivier",47.217558,-1.724959,-1,0,ONA:SA:OLIV,Europe/Paris,2,ONA, +ONA:SP:OLIV2,1,"Olivier",47.217478,-1.724689,-1,0,ONA:SA:OLIV,Europe/Paris,2,ONA, +ONA:SP:OLVE1,1,"Oliveraie",47.188042,-1.530476,-1,0,ONA:SA:OLVE,Europe/Paris,0,ONA, +ONA:SP:OLVE2,1,"Oliveraie",47.188559,-1.531174,-1,0,ONA:SA:OLVE,Europe/Paris,2,ONA, +ONA:SP:OLYM1,1,"Olympe de Gouge",47.308707,-1.54451,-1,0,ONA:SA:OLYM,Europe/Paris,2,ONA, +ONA:SP:OLYM2,1,"Olympe de Gouge",47.308972,-1.544661,-1,0,ONA:SA:OLYM,Europe/Paris,2,ONA, +ONA:SP:OMR58,1,"Orvault-Morlière",47.247007,-1.603122,-1,0,ONA:SA:OMRL,Europe/Paris,2,ONA, +ONA:SP:OMR59,1,"Orvault-Morlière",47.24671,-1.603894,-1,0,ONA:SA:OMRL,Europe/Paris,2,ONA, +ONA:SP:OMRL1,1,"Orvault-Morlière",47.246904,-1.603512,-1,0,ONA:SA:OMRL,Europe/Paris,2,ONA, +ONA:SP:OMRL2,1,"Orvault-Morlière",47.247097,-1.603129,-1,0,ONA:SA:OMRL,Europe/Paris,2,ONA, +ONA:SP:OMRL3,1,"Orvault-Morlière",47.247007,-1.603122,-1,0,ONA:SA:OMRL,Europe/Paris,2,ONA, +ONA:SP:OMRL4,1,"Orvault-Morlière",47.246994,-1.603518,-1,0,ONA:SA:OMRL,Europe/Paris,2,ONA, +ONA:SP:OMRL5,1,"Orvault-Morlière",47.246706,-1.604026,-1,0,ONA:SA:OMRL,Europe/Paris,2,ONA, +ONA:SP:ONCH1,1,"Onchère",47.202762,-1.46705,-1,0,ONA:SA:ONCH,Europe/Paris,2,ONA, +ONA:SP:ONCH2,1,"Onchère",47.202762,-1.46705,-1,0,ONA:SA:ONCH,Europe/Paris,2,ONA, +ONA:SP:OQNE1,1,"Ouche Quinet",47.196026,-1.504494,-1,0,ONA:SA:OQNE,Europe/Paris,2,ONA, +ONA:SP:OQNE2,1,"Ouche Quinet",47.196022,-1.504625,-1,0,ONA:SA:OQNE,Europe/Paris,2,ONA, +ONA:SP:ORNG1,1,"Orangeraie - La Chapelle Aulnay",47.3084,-1.54025,-1,0,ONA:SA:ORNG,Europe/Paris,0,ONA, +ONA:SP:ORNG2,1,"Orangeraie - La Chapelle Aulnay",47.30849,-1.540257,-1,0,ONA:SA:ORNG,Europe/Paris,0,ONA, +ONA:SP:ORVA1,1,"Orvault",47.278783,-1.640406,-1,0,ONA:SA:ORVA,Europe/Paris,2,ONA, +ONA:SP:OSAN2,1,"Ouessant",47.270077,-1.446701,-1,0,ONA:SA:OSAN,Europe/Paris,0,ONA, +ONA:SP:OTAG1,1,"50 Otages",47.220162,-1.555536,-1,0,ONA:SA:OTAG,Europe/Paris,2,ONA, +ONA:SP:OTAG2,1,"50 Otages",47.219785,-1.556037,-1,0,ONA:SA:OTAG,Europe/Paris,2,ONA, +ONA:SP:OTAG3,1,"50 Otages",47.219709,-1.555635,-1,0,ONA:SA:OTAG,Europe/Paris,2,ONA, +ONA:SP:OTAG4,1,"50 Otages",47.219906,-1.555121,-1,0,ONA:SA:OTAG,Europe/Paris,2,ONA, +ONA:SP:PABO1,1,"Paix",47.182976,-1.592333,-1,0,ONA:SA:PABO,Europe/Paris,0,ONA, +ONA:SP:PABO2,1,"Paix",47.182432,-1.592425,-1,0,ONA:SA:PABO,Europe/Paris,2,ONA, +ONA:SP:PACQ1,1,"Parc",47.272354,-1.484176,-1,0,ONA:SA:PACQ,Europe/Paris,2,ONA, +ONA:SP:PACQ2,1,"Parc",47.272632,-1.483931,-1,0,ONA:SA:PACQ,Europe/Paris,0,ONA, +ONA:SP:PAEB1,1,"Pablée",47.215846,-1.740297,-1,0,ONA:SA:PAEB,Europe/Paris,2,ONA, +ONA:SP:PAEB2,1,"Pablée",47.215761,-1.740158,-1,0,ONA:SA:PAEB,Europe/Paris,2,ONA, +ONA:SP:PAGO1,1,"Parc",47.214261,-1.478838,-1,0,ONA:SA:PAGO,Europe/Paris,2,ONA, +ONA:SP:PAGO2,1,"Parc",47.214243,-1.479365,-1,0,ONA:SA:PAGO,Europe/Paris,2,ONA, +ONA:SP:PAJO1,1,"Petit Anjou",47.205842,-1.504537,-1,0,ONA:SA:PAJO,Europe/Paris,2,ONA, +ONA:SP:PAJO2,1,"Petit Anjou",47.205747,-1.504663,-1,0,ONA:SA:PAJO,Europe/Paris,2,ONA, +ONA:SP:PALL1,1,"Pont Allard",47.196553,-1.666275,-1,0,ONA:SA:PALL,Europe/Paris,2,ONA, +ONA:SP:PALL2,1,"Pont Allard",47.196728,-1.66642,-1,0,ONA:SA:PALL,Europe/Paris,2,ONA, +ONA:SP:PAMI1,1,"Palmiers",47.190118,-1.533004,-1,0,ONA:SA:PAMI,Europe/Paris,0,ONA, +ONA:SP:PAMI2,1,"Palmiers",47.190118,-1.533004,-1,0,ONA:SA:PAMI,Europe/Paris,0,ONA, +ONA:SP:PATR1,1,"Pâtis Rondin",47.247955,-1.516424,-1,0,ONA:SA:PATR,Europe/Paris,0,ONA, +ONA:SP:PATR2,1,"Pâtis Rondin",47.247758,-1.516939,-1,0,ONA:SA:PATR,Europe/Paris,2,ONA, +ONA:SP:PB1B1,1,"Parc de la Bouvre",47.176051,-1.613092,-1,0,ONA:SA:PB1B,Europe/Paris,2,ONA, +ONA:SP:PB1B2,1,"Parc de la Bouvre",47.176024,-1.613883,-1,0,ONA:SA:PB1B,Europe/Paris,2,ONA, +ONA:SP:PB1B3,1,"Parc de la Bouvre 1",47.175844,-1.613869,-1,0,ONA:SA:PB1B,Europe/Paris,2,ONA, +ONA:SP:PB1B4,1,"Parc de la Bouvre",47.174991,-1.612485,-1,0,ONA:SA:PB1B,Europe/Paris,0,ONA, +ONA:SP:PB1B6,1,"Parc de la Bouvre",47.176586,-1.613264,-1,0,ONA:SA:PB1B,Europe/Paris,0,ONA, +ONA:SP:PBAI1,1,"Parc Bel Air",47.178728,-1.474853,-1,0,ONA:SA:PBAI,Europe/Paris,2,ONA, +ONA:SP:PBAI2,1,"Parc Bel Air",47.178552,-1.474708,-1,0,ONA:SA:PBAI,Europe/Paris,0,ONA, +ONA:SP:PBER1,1,"Paul Bert",47.213226,-1.597991,-1,0,ONA:SA:PBER,Europe/Paris,2,ONA, +ONA:SP:PBER2,1,"Paul Bert",47.213141,-1.597853,-1,0,ONA:SA:PBER,Europe/Paris,0,ONA, +ONA:SP:PBFF1,1,"Paimboeuf",47.176332,-1.620642,-1,0,ONA:SA:PBFF,Europe/Paris,2,ONA, +ONA:SP:PBFF2,1,"Paimboeuf",47.176566,-1.619074,-1,0,ONA:SA:PBFF,Europe/Paris,2,ONA, +ONA:SP:PBLE1,1,"Pâtis Brûlé",47.199173,-1.507362,-1,0,ONA:SA:PBLE,Europe/Paris,2,ONA, +ONA:SP:PBLE2,1,"Pâtis Brûlé",47.200525,-1.507327,-1,0,ONA:SA:PBLE,Europe/Paris,0,ONA, +ONA:SP:PBLE3,1,"Pâtis Brûlé",47.200067,-1.507559,-1,0,ONA:SA:PBLE,Europe/Paris,0,ONA, +ONA:SP:PBLE4,1,"Pâtis Brûlé",47.199267,-1.507237,-1,0,ONA:SA:PBLE,Europe/Paris,2,ONA, +ONA:SP:PBOT1,1,"Poulbot",47.214029,-1.648018,-1,0,ONA:SA:PBOT,Europe/Paris,2,ONA, +ONA:SP:PBOT2,1,"Poulbot",47.213207,-1.648353,-1,0,ONA:SA:PBOT,Europe/Paris,2,ONA, +ONA:SP:PBRE1,1,"Petit Breton",47.213334,-1.600114,-1,0,ONA:SA:PBRE,Europe/Paris,2,ONA, +ONA:SP:PBRE2,1,"Petit Breton",47.21324,-1.600239,-1,0,ONA:SA:PBRE,Europe/Paris,0,ONA, +ONA:SP:PBU98,1,"Pé de Buzay",47.202501,-1.816338,-1,0,ONA:SA:PBUY,Europe/Paris,0,ONA, +ONA:SP:PBYE1,1,"Port Boyer",47.241175,-1.538683,-1,0,ONA:SA:PBYE,Europe/Paris,2,ONA, +ONA:SP:PBYE2,1,"Port Boyer",47.241094,-1.538412,-1,0,ONA:SA:PBYE,Europe/Paris,0,ONA, +ONA:SP:PBYE9,1,"Port Boyer",47.242103,-1.545891,-1,0,ONA:SA:PBYE,Europe/Paris,2,ONA, +ONA:SP:PCAC1,1,"Petit Carcouët",47.228199,-1.586796,-1,0,ONA:SA:PCAC,Europe/Paris,2,ONA, +ONA:SP:PCAC2,1,"Petit Carcouët",47.22793,-1.586776,-1,0,ONA:SA:PCAC,Europe/Paris,2,ONA, +ONA:SP:PCBI1,1,"Picabia",47.254662,-1.5767,-1,0,OPL:SA:AST-22168-A-22168-R,Europe/Paris,2,ONA, +ONA:SP:PCBI2,1,"Picabia",47.254568,-1.576825,-1,0,OPL:SA:AST-22168-A-22168-R,Europe/Paris,2,ONA, +ONA:SP:PCDI1,1,"Picaudière",47.280419,-1.485415,-1,0,ONA:SA:PCDI,Europe/Paris,0,ONA, +ONA:SP:PCDI2,1,"Picaudière",47.279349,-1.485073,-1,0,ONA:SA:PCDI,Europe/Paris,0,ONA, +ONA:SP:PCEN1,1,"Place Centrale",47.26252,-1.673067,-1,0,ONA:SA:PCEN,Europe/Paris,2,ONA, +ONA:SP:PCEN2,1,"Place Centrale",47.262198,-1.671985,-1,0,ONA:SA:PCEN,Europe/Paris,2,ONA, +ONA:SP:PCHA1,1,"Portechaise",47.200721,-1.52571,-1,0,ONA:SA:PCHA,Europe/Paris,2,ONA, +ONA:SP:PCHA2,1,"Portechaise",47.200622,-1.525967,-1,0,ONA:SA:PCHA,Europe/Paris,2,ONA, +ONA:SP:PCNN1,1,"Planchonnais",47.253572,-1.474765,-1,0,ONA:SA:PCNN,Europe/Paris,2,ONA, +ONA:SP:PCNN2,1,"Planchonnais",47.253375,-1.47528,-1,0,ONA:SA:PCNN,Europe/Paris,2,ONA, +ONA:SP:PCRE1,1,"Poincaré",47.222238,-1.58464,-1,0,OPL:SA:AST-22259-A-22259-R,Europe/Paris,2,ONA, +ONA:SP:PCRE2,1,"Poincaré",47.222332,-1.584515,-1,0,OPL:SA:AST-22259-A-22259-R,Europe/Paris,2,ONA, +ONA:SP:PCRE3,1,"Poincaré",47.222759,-1.585207,-1,0,OPL:SA:AST-22259-A-22259-R,Europe/Paris,2,ONA, +ONA:SP:PCRE4,1,"Poincaré",47.222764,-1.585075,-1,0,OPL:SA:AST-22259-A-22259-R,Europe/Paris,2,ONA, +ONA:SP:PCSI1,1,"Petite Censive",47.260503,-1.561119,-1,0,ONA:SA:PCSI,Europe/Paris,0,ONA, +ONA:SP:PCSI2,1,"Petite Censive",47.261299,-1.56422,-1,0,ONA:SA:PCSI,Europe/Paris,2,ONA, +ONA:SP:PCTI1,1,"Petit Chantilly",47.254478,-1.60063,-1,0,ONA:SA:PCTI,Europe/Paris,2,ONA, +ONA:SP:PCTI2,1,"Petit Chantilly",47.254563,-1.600769,-1,0,ONA:SA:PCTI,Europe/Paris,2,ONA, +ONA:SP:PCVO1,1,"Pontecorvo",47.246715,-1.531942,-1,0,ONA:SA:PCVO,Europe/Paris,2,ONA, +ONA:SP:PCVO2,1,"Pontecorvo",47.246149,-1.532695,-1,0,ONA:SA:PCVO,Europe/Paris,2,ONA, +ONA:SP:PCZI1,1,"Pont de Chézine",47.238156,-1.614373,-1,0,ONA:SA:PCZI,Europe/Paris,2,ONA, +ONA:SP:PCZI2,1,"Pont de Chézine",47.238066,-1.614366,-1,0,ONA:SA:PCZI,Europe/Paris,0,ONA, +ONA:SP:PDAN1,1,"Pas d'Ane",47.181306,-1.470413,-1,0,ONA:SA:PDAN,Europe/Paris,0,ONA, +ONA:SP:PDAN2,1,"Pas d'Ane",47.182043,-1.469937,-1,0,ONA:SA:PDAN,Europe/Paris,0,ONA, +ONA:SP:PDCE1,1,"Pont du Cens",47.248607,-1.577315,-1,0,ONA:SA:PDCE,Europe/Paris,2,ONA, +ONA:SP:PDCE3,1,"Pont du Cens",47.248885,-1.577071,-1,0,ONA:SA:PDCE,Europe/Paris,2,ONA, +ONA:SP:PDEA1,1,"Porteurs d'Eau",47.271512,-1.597651,-1,0,ONA:SA:PDEA,Europe/Paris,0,ONA, +ONA:SP:PDJO1,1,"Point du jour",47.265578,-1.581469,-1,0,ONA:SA:PDJO,Europe/Paris,0,ONA, +ONA:SP:PDJO2,1,"Point du jour",47.265398,-1.581455,-1,0,ONA:SA:PDJO,Europe/Paris,0,ONA, +ONA:SP:PDOU1,1,"Porte Douillard",47.289738,-1.519305,-1,0,ONA:SA:PDOU,Europe/Paris,0,ONA, +ONA:SP:PDOU2,1,"Porte Douillard",47.289581,-1.518632,-1,0,ONA:SA:PDOU,Europe/Paris,0,ONA, +ONA:SP:PDPI1,1,"Pomme de Pin",47.267088,-1.59534,-1,0,ONA:SA:PDPI,Europe/Paris,2,ONA, +ONA:SP:PDUC1,1,"Prairie aux Ducs",47.204258,-1.565084,-1,0,ONA:SA:PDUC,Europe/Paris,2,ONA, +ONA:SP:PDUC2,1,"Prairie aux Ducs",47.20428,-1.564425,-1,0,ONA:SA:PDUC,Europe/Paris,2,ONA, +ONA:SP:PEDR1,1,"Perdriaux",47.16143,-1.485902,-1,0,ONA:SA:PEDR,Europe/Paris,0,ONA, +ONA:SP:PEDR2,1,"Perdriaux",47.161259,-1.485626,-1,0,ONA:SA:PEDR,Europe/Paris,0,ONA, +ONA:SP:PEGE1,1,"Pégers",47.137589,-1.47153,-1,0,ONA:SA:PEGE,Europe/Paris,0,ONA, +ONA:SP:PELO1,1,"Pelousière",47.207759,-1.647022,-1,0,ONA:SA:PELO,Europe/Paris,2,ONA, +ONA:SP:PELO2,1,"Pelousière",47.207759,-1.647022,-1,0,ONA:SA:PELO,Europe/Paris,2,ONA, +ONA:SP:PEON1,1,"Perron",47.224897,-1.601758,-1,0,ONA:SA:PEON,Europe/Paris,2,ONA, +ONA:SP:PEON2,1,"Perron",47.224385,-1.600927,-1,0,ONA:SA:PEON,Europe/Paris,2,ONA, +ONA:SP:PERR1,1,"Perray",47.247491,-1.514142,-1,0,ONA:SA:PERR,Europe/Paris,2,ONA, +ONA:SP:PERR2,1,"Perray",47.247531,-1.512955,-1,0,ONA:SA:PERR,Europe/Paris,2,ONA, +ONA:SP:PETR1,1,"Pétrels",47.254561,-1.507376,-1,0,ONA:SA:PETR,Europe/Paris,0,ONA, +ONA:SP:PETR2,1,"Pétrels",47.254305,-1.506961,-1,0,ONA:SA:PETR,Europe/Paris,2,ONA, +ONA:SP:PFNA1,1,"Purfina",47.194575,-1.634941,-1,0,ONA:SA:PFNA,Europe/Paris,0,ONA, +ONA:SP:PFNA2,1,"Purfina",47.194584,-1.634677,-1,0,ONA:SA:PFNA,Europe/Paris,0,ONA, +ONA:SP:PGRI1,1,"Pagerie",47.178539,-1.650661,-1,0,ONA:SA:PGRI,Europe/Paris,2,ONA, +ONA:SP:PGRI2,1,"Pagerie",47.178722,-1.653184,-1,0,ONA:SA:PGRI,Europe/Paris,2,ONA, +ONA:SP:PGTI1,1,"Plinguetière",47.132974,-1.613744,-1,0,ONA:SA:PGTI,Europe/Paris,0,ONA, +ONA:SP:PGTI2,1,"Plinguetière",47.13381,-1.613014,-1,0,ONA:SA:PGTI,Europe/Paris,0,ONA, +ONA:SP:PGUY1,1,"Péguy",47.221508,-1.613936,-1,0,ONA:SA:PGUY,Europe/Paris,0,ONA, +ONA:SP:PGUY2,1,"Péguy",47.221607,-1.613679,-1,0,ONA:SA:PGUY,Europe/Paris,0,ONA, +ONA:SP:PHTR1,1,"Parc Chantrerie",47.286797,-1.521078,-1,0,ONA:SA:PHTR,Europe/Paris,0,ONA, +ONA:SP:PHTR2,1,"Parc Chantrerie",47.286172,-1.520901,-1,0,ONA:SA:PHTR,Europe/Paris,0,ONA, +ONA:SP:PHVE1,1,"Pré Hervé",47.244124,-1.517868,-1,0,ONA:SA:PHVE,Europe/Paris,2,ONA, +ONA:SP:PHVE2,1,"Pré Hervé",47.243684,-1.517571,-1,0,ONA:SA:PHVE,Europe/Paris,2,ONA, +ONA:SP:PIAO1,1,"Piano'cktail",47.174835,-1.60653,-1,0,ONA:SA:PIAO,Europe/Paris,2,ONA, +ONA:SP:PIAO2,1,"Piano'cktail",47.17483,-1.606662,-1,0,ONA:SA:PIAO,Europe/Paris,2,ONA, +ONA:SP:PIBL1,1,"Pierre Blanche",47.172139,-1.627333,-1,0,ONA:SA:PIBL,Europe/Paris,2,ONA, +ONA:SP:PIBL2,1,"Pierre Blanche",47.172054,-1.627194,-1,0,ONA:SA:PIBL,Europe/Paris,2,ONA, +ONA:SP:PICA1,1,"Picasso",47.215025,-1.536921,-1,0,ONA:SA:PICA,Europe/Paris,2,ONA, +ONA:SP:PICA2,1,"Picasso",47.21542,-1.535892,-1,0,ONA:SA:PICA,Europe/Paris,2,ONA, +ONA:SP:PIEA1,1,"Pierre Abélard",47.155084,-1.684581,-1,0,ONA:SA:PIEA,Europe/Paris,0,ONA, +ONA:SP:PIEA2,1,"Pierre Abélard",47.154753,-1.684793,-1,0,ONA:SA:PIEA,Europe/Paris,0,ONA, +ONA:SP:PIPA1,1,"Pipay",47.225743,-1.536904,-1,0,ONA:SA:PIPA,Europe/Paris,0,ONA, +ONA:SP:PIPA2,1,"Pipay",47.22555,-1.537286,-1,0,ONA:SA:PIPA,Europe/Paris,0,ONA, +ONA:SP:PIRA1,1,"Pirmil",47.196466,-1.542449,-1,0,ONA:SA:PIRM,Europe/Paris,2,ONA, +ONA:SP:PIRB2,1,"Pirmil",47.196089,-1.54295,-1,0,ONA:SA:PIRM,Europe/Paris,2,ONA, +ONA:SP:PIRC1,1,"Pirmil",47.196192,-1.542561,-1,0,ONA:SA:PIRM,Europe/Paris,2,ONA, +ONA:SP:PIRD1,1,"Pirmil",47.196008,-1.54268,-1,0,ONA:SA:PIRM,Europe/Paris,2,ONA, +ONA:SP:PIRD2,1,"Pirmil",47.195909,-1.542937,-1,0,ONA:SA:PIRM,Europe/Paris,2,ONA, +ONA:SP:PIRE1,1,"Pirmil",47.196749,-1.542073,-1,0,ONA:SA:PIRM,Europe/Paris,0,ONA, +ONA:SP:PIRF1,1,"Pirmil",47.196717,-1.542995,-1,0,ONA:SA:PIRM,Europe/Paris,2,ONA, +ONA:SP:PISE1,1,"Pin Sec",47.243756,-1.518106,-1,0,ONA:SA:PISE,Europe/Paris,2,ONA, +ONA:SP:PISE2,1,"Pin Sec",47.243401,-1.517948,-1,0,ONA:SA:PISE,Europe/Paris,2,ONA, +ONA:SP:PISE3,1,"Pin Sec",47.24328,-1.518865,-1,0,ONA:SA:PISE,Europe/Paris,2,ONA, +ONA:SP:PISE4,1,"Pin Sec",47.243289,-1.518601,-1,0,ONA:SA:PISE,Europe/Paris,2,ONA, +ONA:SP:PJOU1,1,"Point du jour",47.265046,-1.443566,-1,0,ONA:SA:PJOU,Europe/Paris,2,ONA, +ONA:SP:PJOU2,1,"Point du jour",47.264952,-1.443692,-1,0,ONA:SA:PJOU,Europe/Paris,2,ONA, +ONA:SP:PJOU4,1,"Point du jour",47.26484,-1.444345,-1,0,ONA:SA:PJOU,Europe/Paris,2,ONA, +ONA:SP:PLAC1,1,"Placis",47.199563,-1.519944,-1,0,ONA:SA:PLAC,Europe/Paris,0,ONA, +ONA:SP:PLAC2,1,"Placis",47.199648,-1.520082,-1,0,ONA:SA:PLAC,Europe/Paris,0,ONA, +ONA:SP:PLBL1,1,"Port la Blanche",47.271633,-1.516676,-1,0,ONA:SA:PLBL,Europe/Paris,0,ONA, +ONA:SP:PLBL2,1,"Port la Blanche",47.271912,-1.516431,-1,0,ONA:SA:PLBL,Europe/Paris,0,ONA, +ONA:SP:PLCH1,1,"Porte de la Chapelle",47.259793,-1.558157,-1,0,ONA:SA:PLCH,Europe/Paris,2,ONA, +ONA:SP:PLCH2,1,"Porte de la Chapelle",47.259883,-1.558163,-1,0,ONA:SA:PLCH,Europe/Paris,2,ONA, +ONA:SP:PLCH3,1,"Porte de La Chapelle",47.259375,-1.5572,-1,0,ONA:SA:PLCH,Europe/Paris,2,ONA, +ONA:SP:PLCH4,1,"Porte de la Chapelle",47.259276,-1.557458,-1,0,ONA:SA:PLCH,Europe/Paris,2,ONA, +ONA:SP:PLCL1,1,"Polyclinique",47.227986,-1.611506,-1,0,ONA:SA:PLCL,Europe/Paris,2,ONA, +ONA:SP:PLCL2,1,"Polyclinique",47.227981,-1.611638,-1,0,ONA:SA:PLCL,Europe/Paris,2,ONA, +ONA:SP:PLCL3,1,"Polyclinique",47.226777,-1.612607,-1,0,ONA:SA:PLCL,Europe/Paris,2,ONA, +ONA:SP:PLCL4,1,"Polyclinique",47.226863,-1.612745,-1,0,ONA:SA:PLCL,Europe/Paris,2,ONA, +ONA:SP:PLES1,1,"Plessis",47.30097,-1.552289,-1,0,ONA:SA:PLES,Europe/Paris,0,ONA, +ONA:SP:PLES2,1,"Plessis",47.300966,-1.552421,-1,0,ONA:SA:PLES,Europe/Paris,0,ONA, +ONA:SP:PLGU1,1,"Pouliguen",47.239497,-1.543057,-1,0,ONA:SA:PLGU,Europe/Paris,0,ONA, +ONA:SP:PLGU2,1,"Pouliguen",47.240242,-1.542318,-1,0,ONA:SA:PLGU,Europe/Paris,0,ONA, +ONA:SP:PLNA1,1,"Port launay",47.209669,-1.746832,-1,0,ONA:SA:PLNA,Europe/Paris,0,ONA, +ONA:SP:PLNA2,1,"Port launay",47.209688,-1.746305,-1,0,ONA:SA:PLNA,Europe/Paris,0,ONA, +ONA:SP:PLOR1,1,"Ploreau",47.303149,-1.551785,-1,0,ONA:SA:PLOR,Europe/Paris,2,ONA, +ONA:SP:PLOR2,1,"Ploreau",47.303054,-1.551911,-1,0,ONA:SA:PLOR,Europe/Paris,2,ONA, +ONA:SP:PLPC1,1,"Place des Pêcheurs",47.136442,-1.668714,-1,0,ONA:SA:PLPC,Europe/Paris,0,ONA, +ONA:SP:PLPC2,1,"Place des Pêcheurs",47.136459,-1.669019,-1,0,ONA:SA:PLPC,Europe/Paris,0,ONA, +ONA:SP:PLSS1,1,"Plessis",47.260445,-1.66021,-1,0,ONA:SA:PLSS,Europe/Paris,2,ONA, +ONA:SP:PLSS2,1,"Plessis",47.260359,-1.660071,-1,0,ONA:SA:PLSS,Europe/Paris,2,ONA, +ONA:SP:PLTI1,1,"Platière",47.194652,-1.558834,-1,0,ONA:SA:PLTI,Europe/Paris,0,ONA, +ONA:SP:PLTI2,1,"Platière",47.194576,-1.561075,-1,0,ONA:SA:PLTI,Europe/Paris,0,ONA, +ONA:SP:PMA99,1,"Pont Marchand",47.260629,-1.631381,-1,0,ONA:SA:PMAR,Europe/Paris,2,ONA, +ONA:SP:PMAR1,1,"Pont Marchand",47.260629,-1.631381,-1,0,ONA:SA:PMAR,Europe/Paris,2,ONA, +ONA:SP:PMAR2,1,"Pont Marchand",47.260634,-1.631249,-1,0,ONA:SA:PMAR,Europe/Paris,2,ONA, +ONA:SP:PMEU1,1,"Port aux Meules",47.165425,-1.493054,-1,0,ONA:SA:PMEU,Europe/Paris,2,ONA, +ONA:SP:PMEU2,1,"Port aux Meules",47.165762,-1.493739,-1,0,ONA:SA:PMEU,Europe/Paris,2,ONA, +ONA:SP:PMTR1,1,"Pont de la Métairie",47.262444,-1.446028,-1,0,ONA:SA:PMTR,Europe/Paris,2,ONA, +ONA:SP:PMTR2,1,"Pont de la Métairie",47.262345,-1.446286,-1,0,ONA:SA:PMTR,Europe/Paris,2,ONA, +ONA:SP:PMTR3,1,"Pont de la Métairie",47.262495,-1.447222,-1,0,ONA:SA:PMTR,Europe/Paris,2,ONA, +ONA:SP:PMTR4,1,"Pont de la Métairie",47.262405,-1.447216,-1,0,ONA:SA:PMTR,Europe/Paris,0,ONA, +ONA:SP:PMVE1,1,"Prairie de Mauves",47.220027,-1.51666,-1,0,ONA:SA:PMVE,Europe/Paris,2,ONA, +ONA:SP:PMVE2,1,"Prairie de Mauves",47.220306,-1.516416,-1,0,ONA:SA:PMVE,Europe/Paris,2,ONA, +ONA:SP:PNAN1,1,"Prière",47.222206,-1.59614,-1,0,ONA:SA:PNAN,Europe/Paris,2,ONA, +ONA:SP:PNAN2,1,"Prière",47.222364,-1.596812,-1,0,ONA:SA:PNAN,Europe/Paris,2,ONA, +ONA:SP:PNLU2,1,"Pinier",47.252712,-1.481714,-1,0,ONA:SA:PNLU,Europe/Paris,0,ONA, +ONA:SP:PNLU3,1,"Pinier",47.252712,-1.481714,-1,0,ONA:SA:PNLU,Europe/Paris,0,ONA, +ONA:SP:PNPI1,1,"Pont Pilet",47.339472,-1.572318,-1,0,ONA:SA:PNPI,Europe/Paris,0,ONA, +ONA:SP:PNRZ1,1,"Pinier",47.181597,-1.545334,-1,0,ONA:SA:PNRZ,Europe/Paris,2,ONA, +ONA:SP:PNRZ2,1,"Pinier",47.182761,-1.545551,-1,0,ONA:SA:PNRZ,Europe/Paris,2,ONA, +ONA:SP:PNTI1,1,"Plantiveau",47.246496,-1.511558,-1,0,ONA:SA:PNTI,Europe/Paris,2,ONA, +ONA:SP:PNTI2,1,"Plantiveau",47.246231,-1.511407,-1,0,ONA:SA:PNTI,Europe/Paris,2,ONA, +ONA:SP:POIT1,1,"Poitou",47.224329,-1.565491,-1,0,ONA:SA:POIT,Europe/Paris,2,ONA, +ONA:SP:POIT2,1,"Poitou",47.224068,-1.565207,-1,0,ONA:SA:POIT,Europe/Paris,2,ONA, +ONA:SP:POLE1,1,"Poulenc",47.255408,-1.581252,-1,0,ONA:SA:POLE,Europe/Paris,2,ONA, +ONA:SP:POLE2,1,"Poulenc",47.255323,-1.581114,-1,0,ONA:SA:POLE,Europe/Paris,2,ONA, +ONA:SP:POMM1,1,"Pommeraie",47.146252,-1.695787,-1,0,ONA:SA:POMM,Europe/Paris,2,ONA, +ONA:SP:POMM2,1,"Pommeraie",47.146503,-1.696334,-1,0,ONA:SA:POMM,Europe/Paris,2,ONA, +ONA:SP:PONT1,1,"Pontereau",47.306417,-1.378705,-1,0,ONA:SA:PONT,Europe/Paris,0,ONA, +ONA:SP:PONT2,1,"Pontereau",47.306413,-1.378837,-1,0,ONA:SA:PONT,Europe/Paris,0,ONA, +ONA:SP:POON1,1,"Potiron",47.270485,-1.51871,-1,0,ONA:SA:POON,Europe/Paris,2,ONA, +ONA:SP:POON2,1,"Potiron",47.270386,-1.518968,-1,0,ONA:SA:POON,Europe/Paris,2,ONA, +ONA:SP:POST1,1,"Poste",47.295234,-1.554122,-1,0,ONA:SA:POST,Europe/Paris,2,ONA, +ONA:SP:POST2,1,"Poste",47.295234,-1.554122,-1,0,ONA:SA:POST,Europe/Paris,2,ONA, +ONA:SP:POTT1,1,"Pottier",47.177988,-1.627502,-1,0,ONA:SA:POTT,Europe/Paris,2,ONA, +ONA:SP:POTT2,1,"Pottier",47.177633,-1.627343,-1,0,ONA:SA:POTT,Europe/Paris,0,ONA, +ONA:SP:POYA1,1,"Poyaux",47.166784,-1.530526,-1,0,ONA:SA:POYA,Europe/Paris,0,ONA, +ONA:SP:POYA2,1,"Poyaux",47.166587,-1.53104,-1,0,ONA:SA:POYA,Europe/Paris,0,ONA, +ONA:SP:PPDO1,1,"Pompidou",47.20919,-1.528304,-1,0,ONA:SA:PPDO,Europe/Paris,2,ONA, +ONA:SP:PPDO2,1,"Pompidou",47.209396,-1.527526,-1,0,ONA:SA:PPDO,Europe/Paris,2,ONA, +ONA:SP:PPFA3,1,"Petit Port",47.243005,-1.556537,-1,0,ONA:SA:PPFA,Europe/Paris,0,ONA, +ONA:SP:PPFA4,1,"Petit Port",47.243301,-1.555765,-1,0,ONA:SA:PPFA,Europe/Paris,2,ONA, +ONA:SP:PPFA5,1,"Petit Port",47.243706,-1.557117,-1,0,ONA:SA:PPFA,Europe/Paris,2,ONA, +ONA:SP:PPLI1,1,"Peupliers",47.199327,-1.49733,-1,0,ONA:SA:PPLI,Europe/Paris,2,ONA, +ONA:SP:PPLI2,1,"Peupliers",47.199654,-1.495636,-1,0,ONA:SA:PPLI,Europe/Paris,2,ONA, +ONA:SP:PPOU1,1,"Pré Poulain",47.272486,-1.444622,-1,0,ONA:SA:PPOU,Europe/Paris,2,ONA, +ONA:SP:PPOU2,1,"Pré Poulain",47.272037,-1.44459,-1,0,ONA:SA:PPOU,Europe/Paris,2,ONA, +ONA:SP:PPSI1,1,"Petit Plessis",47.301947,-1.386073,-1,0,ONA:SA:PPSI,Europe/Paris,0,ONA, +ONA:SP:PPSI2,1,"Petit Plessis",47.301853,-1.386198,-1,0,ONA:SA:PPSI,Europe/Paris,0,ONA, +ONA:SP:PPTR1,1,"Papotière",47.240143,-1.496818,-1,0,ONA:SA:PPTR,Europe/Paris,0,ONA, +ONA:SP:PPTR2,1,"Papotière",47.239856,-1.497327,-1,0,ONA:SA:PPTR,Europe/Paris,2,ONA, +ONA:SP:PPUN9,1,"Petit Port-Facultés",47.243133,-1.547421,-1,0,ONA:SA:PPUN,Europe/Paris,2,ONA, +ONA:SP:PRCE1,1,"Procé",47.222516,-1.581752,-1,0,ONA:SA:PRCE,Europe/Paris,2,ONA, +ONA:SP:PRCE2,1,"Procé",47.222606,-1.581758,-1,0,ONA:SA:PRCE,Europe/Paris,2,ONA, +ONA:SP:PRDI1,1,"Praudière",47.25685,-1.583872,-1,0,ONA:SA:PRDI,Europe/Paris,2,ONA, +ONA:SP:PRDI2,1,"Praudière",47.257394,-1.583779,-1,0,ONA:SA:PRDI,Europe/Paris,2,ONA, +ONA:SP:PREU1,1,"Preux",47.221273,-1.61815,-1,0,ONA:SA:PREU,Europe/Paris,0,ONA, +ONA:SP:PREU2,1,"Preux",47.221179,-1.618275,-1,0,ONA:SA:PREU,Europe/Paris,2,ONA, +ONA:SP:PRFO1,1,"Profondine",47.196189,-1.488781,-1,0,ONA:SA:PRFO,Europe/Paris,2,ONA, +ONA:SP:PRFO2,1,"Profondine",47.196197,-1.488517,-1,0,ONA:SA:PRFO,Europe/Paris,2,ONA, +ONA:SP:PRGE1,1,"Portail Rouge",47.244304,-1.504391,-1,0,ONA:SA:PRGE,Europe/Paris,2,ONA, +ONA:SP:PRGE2,1,"Portail Rouge",47.243927,-1.504893,-1,0,ONA:SA:PRGE,Europe/Paris,2,ONA, +ONA:SP:PRHE1,1,"Petit Rocher",47.240549,-1.479127,-1,0,ONA:SA:PRHE,Europe/Paris,0,ONA, +ONA:SP:PRHE2,1,"Petit Rocher",47.240554,-1.478995,-1,0,ONA:SA:PRHE,Europe/Paris,0,ONA, +ONA:SP:PRIM1,1,"Primevères",47.224961,-1.673028,-1,0,ONA:SA:PRIM,Europe/Paris,2,ONA, +ONA:SP:PRIM2,1,"Primevères",47.224876,-1.67289,-1,0,ONA:SA:PRIM,Europe/Paris,2,ONA, +ONA:SP:PRMI1,1,"Pyramide",47.208038,-1.492668,-1,0,ONA:SA:PRMI,Europe/Paris,2,ONA, +ONA:SP:PRMI2,1,"Pyramide",47.208123,-1.492806,-1,0,ONA:SA:PRMI,Europe/Paris,2,ONA, +ONA:SP:PRNE1,1,"Perrines",47.227538,-1.515615,-1,0,ONA:SA:PRNE,Europe/Paris,0,ONA, +ONA:SP:PRNE2,1,"Perrines",47.227636,-1.515357,-1,0,ONA:SA:PRNE,Europe/Paris,0,ONA, +ONA:SP:PROU1,1,"Pont-Rousseau-Martyrs",47.191859,-1.548193,-1,0,OPL:SA:AST-22156-A-22156-R,Europe/Paris,2,ONA, +ONA:SP:PROU2,1,"Pont-Rousseau-Martyrs",47.191854,-1.548325,-1,0,OPL:SA:AST-22156-A-22156-R,Europe/Paris,2,ONA, +ONA:SP:PROU3,1,"Pont-Rousseau-Martyrs",47.191966,-1.547672,-1,0,OPL:SA:AST-22156-A-22156-R,Europe/Paris,2,ONA, +ONA:SP:PROU5,1,"Pont-Rousseau-Martyrs",47.19242,-1.547573,-1,0,OPL:SA:AST-22156-A-22156-R,Europe/Paris,2,ONA, +ONA:SP:PRRI1,1,"Perrières",47.309914,-1.551483,-1,0,ONA:SA:PRRI,Europe/Paris,2,ONA, +ONA:SP:PRRI2,1,"Perrières",47.309442,-1.552111,-1,0,ONA:SA:PRRI,Europe/Paris,2,ONA, +ONA:SP:PRSS1,1,"Pressoir",47.12364,-1.638922,-1,0,ONA:SA:PRSS,Europe/Paris,0,ONA, +ONA:SP:PRSS2,1,"Pressoir",47.12356,-1.638652,-1,0,ONA:SA:PRSS,Europe/Paris,0,ONA, +ONA:SP:PRTE1,1,"Portereau",47.168289,-1.501712,-1,0,ONA:SA:PRTE,Europe/Paris,2,ONA, +ONA:SP:PRTE2,1,"Portereau",47.16814,-1.500776,-1,0,ONA:SA:PRTE,Europe/Paris,2,ONA, +ONA:SP:PRTE3,1,"Portereau",47.167305,-1.501509,-1,0,ONA:SA:PRTE,Europe/Paris,2,ONA, +ONA:SP:PRUT1,1,"Proutière",47.198119,-1.780313,-1,0,ONA:SA:PRUT,Europe/Paris,2,ONA, +ONA:SP:PRUT2,1,"Proutière",47.197835,-1.780688,-1,0,ONA:SA:PRUT,Europe/Paris,2,ONA, +ONA:SP:PRZE1,1,"Porte de Rezé",47.157162,-1.540791,-1,0,ONA:SA:PRZE,Europe/Paris,2,ONA, +ONA:SP:PRZE2,1,"Porte de Rezé",47.157248,-1.540929,-1,0,ONA:SA:PRZE,Europe/Paris,2,ONA, +ONA:SP:PSAU1,1,"Porte de Sautron",47.251209,-1.619835,-1,0,ONA:SA:PSAU,Europe/Paris,2,ONA, +ONA:SP:PSAU2,1,"Porte de Sautron",47.250796,-1.618746,-1,0,ONA:SA:PSAU,Europe/Paris,2,ONA, +ONA:SP:PSC58,1,"Plaisance",47.240207,-1.591248,-1,0,ONA:SA:PSCE,Europe/Paris,0,ONA, +ONA:SP:PSC59,1,"Plaisance",47.240283,-1.59165,-1,0,ONA:SA:PSCE,Europe/Paris,0,ONA, +ONA:SP:PSCE1,1,"Plaisance",47.240288,-1.591518,-1,0,ONA:SA:PSCE,Europe/Paris,2,ONA, +ONA:SP:PSCE2,1,"Plaisance",47.240121,-1.591109,-1,0,ONA:SA:PSCE,Europe/Paris,2,ONA, +ONA:SP:PSEV1,1,"Parc de la Sèvre",47.164442,-1.47925,-1,0,ONA:SA:PSEV,Europe/Paris,0,ONA, +ONA:SP:PSEV2,1,"Parc de la Sèvre",47.164762,-1.480462,-1,0,ONA:SA:PSEV,Europe/Paris,0,ONA, +ONA:SP:PSIN1,1,"Pasteur",47.200987,-1.678633,-1,0,ONA:SA:PSIN,Europe/Paris,0,ONA, +ONA:SP:PSIN2,1,"Pasteur",47.200978,-1.678897,-1,0,ONA:SA:PSIN,Europe/Paris,0,ONA, +ONA:SP:PSLI1,1,"Plessis Cellier",47.20301,-1.604377,-1,0,ONA:SA:PSLI,Europe/Paris,2,ONA, +ONA:SP:PSLI2,1,"Plessis Cellier",47.203001,-1.60464,-1,0,ONA:SA:PSLI,Europe/Paris,2,ONA, +ONA:SP:PSME1,1,"Place St Méen",47.319221,-1.347283,-1,0,ONA:SA:PSME,Europe/Paris,0,ONA, +ONA:SP:PSME2,1,"Place St Méen",47.319131,-1.347277,-1,0,ONA:SA:PSME,Europe/Paris,0,ONA, +ONA:SP:PSOR1,1,"Prières",47.150089,-1.526152,-1,0,ONA:SA:PSOR,Europe/Paris,2,ONA, +ONA:SP:PSOR2,1,"Prières",47.150349,-1.526435,-1,0,ONA:SA:PSOR,Europe/Paris,2,ONA, +ONA:SP:PSPO1,1,"Parc des Sports",47.260543,-1.449068,-1,0,ONA:SA:PSPO,Europe/Paris,2,ONA, +ONA:SP:PSPO2,1,"Parc des Sports",47.259875,-1.450212,-1,0,ONA:SA:PSPO,Europe/Paris,2,ONA, +ONA:SP:PSPO3,1,"Parc des sports",47.260944,-1.450552,-1,0,ONA:SA:PSPO,Europe/Paris,0,ONA, +ONA:SP:PSUD1,1,"Pôle sud",47.188889,-1.469895,-1,0,ONA:SA:PSUD,Europe/Paris,2,ONA, +ONA:SP:PSUD2,1,"Pôle sud",47.18865,-1.468954,-1,0,ONA:SA:PSUD,Europe/Paris,2,ONA, +ONA:SP:PTBO1,1,"Petit Bois",47.185719,-1.677356,-1,0,ONA:SA:PTBO,Europe/Paris,2,ONA, +ONA:SP:PTBO2,1,"Petit Bois",47.185412,-1.67839,-1,0,ONA:SA:PTBO,Europe/Paris,2,ONA, +ONA:SP:PTCH1,1,"Patache",47.270956,-1.619179,-1,0,ONA:SA:PTCH,Europe/Paris,2,ONA, +ONA:SP:PTCH2,1,"Patache",47.271302,-1.619602,-1,0,ONA:SA:PTCH,Europe/Paris,2,ONA, +ONA:SP:PTEC1,1,"Polytech'",47.280831,-1.513633,-1,0,ONA:SA:PTEC,Europe/Paris,2,ONA, +ONA:SP:PTEC2,1,"Polytech'",47.280737,-1.513759,-1,0,ONA:SA:PTEC,Europe/Paris,2,ONA, +ONA:SP:PTGO1,1,"Poitou",47.209247,-1.469758,-1,0,ONA:SA:PTGO,Europe/Paris,0,ONA, +ONA:SP:PTGO2,1,"Poitou",47.209808,-1.469137,-1,0,ONA:SA:PTGO,Europe/Paris,0,ONA, +ONA:SP:PTIS1,1,"Plessis Tison",47.236667,-1.533463,-1,0,ONA:SA:PTIS,Europe/Paris,2,ONA, +ONA:SP:PTIS2,1,"Plessis Tison",47.236573,-1.533589,-1,0,ONA:SA:PTIS,Europe/Paris,2,ONA, +ONA:SP:PTL98,1,"CES Petite Lande",47.177942,-1.549561,-1,0,ONA:SA:PTLA,Europe/Paris,2,ONA, +ONA:SP:PTNE1,1,"Platanes",47.245606,-1.52472,-1,0,ONA:SA:PTNE,Europe/Paris,2,ONA, +ONA:SP:PTNE2,1,"Platanes",47.245229,-1.525221,-1,0,ONA:SA:PTNE,Europe/Paris,2,ONA, +ONA:SP:PTON1,1,"Portillon",47.149665,-1.46856,-1,0,ONA:SA:PTON,Europe/Paris,0,ONA, +ONA:SP:PTON2,1,"Portillon",47.149289,-1.469062,-1,0,ONA:SA:PTON,Europe/Paris,0,ONA, +ONA:SP:PTON3,1,"Portillon",47.149234,-1.468002,-1,0,ONA:SA:PTON,Europe/Paris,2,ONA, +ONA:SP:PTON4,1,"Portillon",47.148668,-1.468754,-1,0,ONA:SA:PTON,Europe/Paris,0,ONA, +ONA:SP:PTPS1,1,"Printemps",47.188508,-1.500387,-1,0,ONA:SA:PTPS,Europe/Paris,2,ONA, +ONA:SP:PTPS2,1,"Printemps",47.188597,-1.500393,-1,0,ONA:SA:PTPS,Europe/Paris,2,ONA, +ONA:SP:PTQQ1,1,"Portricq",47.265249,-1.521772,-1,0,ONA:SA:PTQQ,Europe/Paris,2,ONA, +ONA:SP:PTQQ2,1,"Portricq",47.265087,-1.521232,-1,0,ONA:SA:PTQQ,Europe/Paris,2,ONA, +ONA:SP:PTRE1,1,"Portereau",47.192111,-1.475938,-1,0,ONA:SA:PTRE,Europe/Paris,0,ONA, +ONA:SP:PTRE2,1,"Portereau",47.193236,-1.477339,-1,0,ONA:SA:PTRE,Europe/Paris,2,ONA, +ONA:SP:PTUR1,1,"Pâtures",47.304525,-1.556387,-1,0,ONA:SA:PTUR,Europe/Paris,2,ONA, +ONA:SP:PTUR2,1,"Pâtures",47.304435,-1.556381,-1,0,ONA:SA:PTUR,Europe/Paris,2,ONA, +ONA:SP:PTVI1,1,"Pâtis Viaud",47.138679,-1.457617,-1,0,ONA:SA:PTVI,Europe/Paris,2,ONA, +ONA:SP:PTVI2,1,"Pâtis Viaud",47.138593,-1.457479,-1,0,ONA:SA:PTVI,Europe/Paris,2,ONA, +ONA:SP:PTYY1,1,"Planty",47.175269,-1.494947,-1,0,ONA:SA:PTYY,Europe/Paris,2,ONA, +ONA:SP:PTYY2,1,"Planty",47.175346,-1.495349,-1,0,ONA:SA:PTYY,Europe/Paris,2,ONA, +ONA:SP:PUCH1,1,"Pluchets",47.218581,-1.654438,-1,0,ONA:SA:PUCH,Europe/Paris,2,ONA, +ONA:SP:PUCH2,1,"Pluchets",47.218761,-1.654452,-1,0,ONA:SA:PUCH,Europe/Paris,2,ONA, +ONA:SP:PVIL1,1,"Petit Village",47.217006,-1.650487,-1,0,ONA:SA:PVIL,Europe/Paris,0,ONA, +ONA:SP:PVIL2,1,"Petit Village",47.217064,-1.651417,-1,0,ONA:SA:PVIL,Europe/Paris,0,ONA, +ONA:SP:PVLO1,1,"Pavillon",47.143669,-1.679486,-1,0,ONA:SA:PVLO,Europe/Paris,2,ONA, +ONA:SP:PVLO2,1,"Pavillon",47.143584,-1.679348,-1,0,ONA:SA:PVLO,Europe/Paris,2,ONA, +ONA:SP:PVT98,1,"Porte de Vertou",47.181126,-1.50567,-1,0,OPL:SA:AST-25435-A-25435-R,Europe/Paris,2,ONA, +ONA:SP:PVT99,1,"Porte de Vertou",47.180533,-1.504571,-1,0,OPL:SA:AST-25435-A-25435-R,Europe/Paris,2,ONA, +ONA:SP:PVTO1,1,"Porte de Vertou",47.18087,-1.505255,-1,0,OPL:SA:AST-25435-A-25435-R,Europe/Paris,2,ONA, +ONA:SP:PVTO2,1,"Porte de Vertou",47.180789,-1.504985,-1,0,OPL:SA:AST-25435-A-25435-R,Europe/Paris,2,ONA, +ONA:SP:PVTO3,1,"Porte de Vertou",47.180533,-1.504571,-1,0,OPL:SA:AST-25435-A-25435-R,Europe/Paris,2,ONA, +ONA:SP:PVTO4,1,"Porte de Vertou",47.180627,-1.504445,-1,0,OPL:SA:AST-25435-A-25435-R,Europe/Paris,2,ONA, +ONA:SP:PXCE1,1,"Port aux Cerises",47.311877,-1.541297,-1,0,ONA:SA:PXCE,Europe/Paris,0,ONA, +ONA:SP:PXCE2,1,"Port aux Cerises",47.311877,-1.541297,-1,0,ONA:SA:PXCE,Europe/Paris,0,ONA, +ONA:SP:QANT1,1,"Quai des Antilles",47.203746,-1.56954,-1,0,ONA:SA:QANT,Europe/Paris,2,ONA, +ONA:SP:QANT2,1,"Quai des Antilles",47.203746,-1.56954,-1,0,ONA:SA:QANT,Europe/Paris,2,ONA, +ONA:SP:QBNA1,1,"Quai Brunais",47.196438,-1.66957,-1,0,ONA:SA:QBNA,Europe/Paris,0,ONA, +ONA:SP:QBNA2,1,"Quai Brunais",47.196192,-1.668891,-1,0,ONA:SA:QBNA,Europe/Paris,0,ONA, +ONA:SP:QSCO1,1,"Quai Surcouf",47.194907,-1.577881,-1,0,ONA:SA:QSCO,Europe/Paris,2,ONA, +ONA:SP:QSCO2,1,"Quai Surcouf",47.194907,-1.577881,-1,0,ONA:SA:QSCO,Europe/Paris,2,ONA, +ONA:SP:QTNE1,1,"Quintaine",47.216721,-1.464341,-1,0,ONA:SA:QTNE,Europe/Paris,2,ONA, +ONA:SP:RABI1,1,"Rabine",47.26075,-1.643562,-1,0,ONA:SA:RABI,Europe/Paris,0,ONA, +ONA:SP:RABI2,1,"Rabine",47.260759,-1.643298,-1,0,ONA:SA:RABI,Europe/Paris,0,ONA, +ONA:SP:RAGO1,1,"Ragon",47.165119,-1.542555,-1,0,ONA:SA:RAGO,Europe/Paris,2,ONA, +ONA:SP:RAGO2,1,"Ragon",47.165393,-1.542443,-1,0,ONA:SA:RAGO,Europe/Paris,2,ONA, +ONA:SP:RAVA1,1,"Ravardière",47.183819,-1.664662,-1,0,ONA:SA:RAVA,Europe/Paris,0,ONA, +ONA:SP:RAVA2,1,"Ravardière",47.183796,-1.665321,-1,0,ONA:SA:RAVA,Europe/Paris,0,ONA, +ONA:SP:RAZA1,1,"Ranzay",47.253331,-1.530701,-1,0,ONA:SA:RAZA,Europe/Paris,2,ONA, +ONA:SP:RAZA2,1,"Ranzay",47.253169,-1.53016,-1,0,ONA:SA:RAZA,Europe/Paris,2,ONA, +ONA:SP:RAZA3,1,"Ranzay",47.25219,-1.529825,-1,0,ONA:SA:RAZA,Europe/Paris,2,ONA, +ONA:SP:RAZA4,1,"Ranzay",47.253901,-1.529816,-1,0,ONA:SA:RAZA,Europe/Paris,2,ONA, +ONA:SP:RAZA5,1,"Ranzay",47.25267,-1.528934,-1,0,ONA:SA:RAZA,Europe/Paris,2,ONA, +ONA:SP:RBAL1,1,"Roche Ballue",47.1797,-1.656163,-1,0,ONA:SA:RBAL,Europe/Paris,2,ONA, +ONA:SP:RBAL2,1,"Roche Ballue",47.179534,-1.655755,-1,0,ONA:SA:RBAL,Europe/Paris,2,ONA, +ONA:SP:RBHI1,1,"René Bouhier",47.209901,-1.571311,-1,0,ONA:SA:RBHI,Europe/Paris,0,ONA, +ONA:SP:RBHI2,1,"René Bouhier",47.20986,-1.569854,-1,0,ONA:SA:RBHI,Europe/Paris,0,ONA, +ONA:SP:RBNI1,1,"Robinière 1",47.163642,-1.535581,-1,0,ONA:SA:RBNI,Europe/Paris,0,ONA, +ONA:SP:RBNI2,1,"Robinière 2",47.164797,-1.536061,-1,0,ONA:SA:RBNI,Europe/Paris,0,ONA, +ONA:SP:RBNI3,1,"Robinière 3",47.163737,-1.535456,-1,0,ONA:SA:RBNI,Europe/Paris,0,ONA, +ONA:SP:RBRN1,1,"René Bernier",47.193951,-1.499191,-1,0,ONA:SA:RBRN,Europe/Paris,2,ONA, +ONA:SP:RBRN2,1,"René Bernier",47.193942,-1.499455,-1,0,ONA:SA:RBRN,Europe/Paris,2,ONA, +ONA:SP:RCAS1,1,"René Cassin",47.264127,-1.576467,-1,0,ONA:SA:RCAS,Europe/Paris,2,ONA, +ONA:SP:RCAS2,1,"René Cassin",47.264234,-1.575945,-1,0,ONA:SA:RCAS,Europe/Paris,2,ONA, +ONA:SP:RCAS3,1,"René Cassin",47.264845,-1.573873,-1,0,ONA:SA:RCAS,Europe/Paris,2,ONA, +ONA:SP:RCAS4,1,"René Cassin",47.264751,-1.573998,-1,0,ONA:SA:RCAS,Europe/Paris,2,ONA, +ONA:SP:RCAS5,1,"René Cassin",47.264199,-1.577001,-1,0,ONA:SA:RCAS,Europe/Paris,2,ONA, +ONA:SP:RCAS6,1,"René Cassin",47.264131,-1.576335,-1,0,ONA:SA:RCAS,Europe/Paris,2,ONA, +ONA:SP:RCER1,1,"Rocher",47.213153,-1.639492,-1,0,ONA:SA:RCER,Europe/Paris,2,ONA, +ONA:SP:RCER2,1,"Rocher",47.213058,-1.639618,-1,0,ONA:SA:RCER,Europe/Paris,2,ONA, +ONA:SP:RCHE1,1,"Rocher",47.169433,-1.505227,-1,0,ONA:SA:RCHE,Europe/Paris,2,ONA, +ONA:SP:RCHE2,1,"Rocher",47.169518,-1.505365,-1,0,ONA:SA:RCHE,Europe/Paris,2,ONA, +ONA:SP:RCPE1,1,"Route de la Chapelle",47.254859,-1.576185,-1,0,ONA:SA:RCPE,Europe/Paris,2,ONA, +ONA:SP:RCPE2,1,"Route de la Chapelle",47.254496,-1.576291,-1,0,ONA:SA:RCPE,Europe/Paris,2,ONA, +ONA:SP:RCUU1,1,"Rochu",47.215191,-1.66648,-1,0,ONA:SA:RCUU,Europe/Paris,2,ONA, +ONA:SP:RCUU2,1,"Rochu",47.215101,-1.666473,-1,0,ONA:SA:RCUU,Europe/Paris,2,ONA, +ONA:SP:RDFY1,1,"Raoul Dufy",47.222633,-1.599476,-1,0,ONA:SA:RDFY,Europe/Paris,0,ONA, +ONA:SP:RDFY2,1,"Raoul Dufy",47.222718,-1.599615,-1,0,ONA:SA:RDFY,Europe/Paris,2,ONA, +ONA:SP:RDGO1,1,"Radigois",47.193052,-1.518022,-1,0,ONA:SA:RDGO,Europe/Paris,2,ONA, +ONA:SP:RDGO2,1,"Radigois",47.19325,-1.517507,-1,0,ONA:SA:RDGO,Europe/Paris,2,ONA, +ONA:SP:RDIE1,1,"Rouaudière",47.294207,-1.584495,-1,0,ONA:SA:RDIE,Europe/Paris,0,ONA, +ONA:SP:RDIE2,1,"Rouaudière",47.294296,-1.584502,-1,0,ONA:SA:RDIE,Europe/Paris,0,ONA, +ONA:SP:RDMV1,1,"Rue de Mauves",47.271527,-1.432645,-1,0,ONA:SA:RDMV,Europe/Paris,2,ONA, +ONA:SP:RDMV2,1,"Rue de Mauves",47.271433,-1.432771,-1,0,ONA:SA:RDMV,Europe/Paris,2,ONA, +ONA:SP:RDNT1,1,"Rue de Nantes",47.151077,-1.534277,-1,0,ONA:SA:RDNT,Europe/Paris,2,ONA, +ONA:SP:RDNT2,1,"Rue de Nantes",47.151346,-1.534296,-1,0,ONA:SA:RDNT,Europe/Paris,2,ONA, +ONA:SP:REDR1,1,"Redras",47.16475,-1.502514,-1,0,ONA:SA:REDR,Europe/Paris,2,ONA, +ONA:SP:REDR2,1,"Redras",47.164588,-1.501975,-1,0,ONA:SA:REDR,Europe/Paris,2,ONA, +ONA:SP:REFR1,1,"Réfractaires",47.302752,-1.54752,-1,0,ONA:SA:REFR,Europe/Paris,2,ONA, +ONA:SP:REFR2,1,"Réfractaires",47.303044,-1.546879,-1,0,ONA:SA:REFR,Europe/Paris,2,ONA, +ONA:SP:RETA1,1,"Retas",47.154856,-1.537059,-1,0,ONA:SA:RETA,Europe/Paris,2,ONA, +ONA:SP:RETA2,1,"Retas",47.15495,-1.536933,-1,0,ONA:SA:RETA,Europe/Paris,2,ONA, +ONA:SP:REYN1,1,"Reynière",47.256126,-1.578659,-1,0,ONA:SA:REYN,Europe/Paris,2,ONA, +ONA:SP:REYN2,1,"Reynière",47.255839,-1.579167,-1,0,ONA:SA:REYN,Europe/Paris,2,ONA, +ONA:SP:RGNI1,1,"Reigniers",47.137147,-1.465824,-1,0,ONA:SA:RGNI,Europe/Paris,2,ONA, +ONA:SP:RGNI2,1,"Reigniers",47.136899,-1.465146,-1,0,ONA:SA:RGNI,Europe/Paris,2,ONA, +ONA:SP:RIND1,1,"Rue d'Indre",47.204011,-1.664189,-1,0,ONA:SA:RIND,Europe/Paris,2,ONA, +ONA:SP:RIND2,1,"Rue d'Indre",47.203742,-1.664169,-1,0,ONA:SA:RIND,Europe/Paris,2,ONA, +ONA:SP:RIVI1,1,"Rivière",47.214986,-1.475982,-1,0,ONA:SA:RIVI,Europe/Paris,0,ONA, +ONA:SP:RIVI2,1,"Rivière",47.21508,-1.475856,-1,0,ONA:SA:RIVI,Europe/Paris,0,ONA, +ONA:SP:RLEA1,1,"Rouleaux",47.200268,-1.466212,-1,0,ONA:SA:RLEA,Europe/Paris,2,ONA, +ONA:SP:RLEA2,1,"Rouleaux",47.200093,-1.466067,-1,0,ONA:SA:RLEA,Europe/Paris,2,ONA, +ONA:SP:RLON1,1,"Rennes-Longchamp",47.238655,-1.570636,-1,0,ONA:SA:RLON,Europe/Paris,2,ONA, +ONA:SP:RLON2,1,"Rennes-Longchamp",47.237959,-1.569923,-1,0,ONA:SA:RLON,Europe/Paris,2,ONA, +ONA:SP:RMAU1,1,"Roche Maurice",47.196319,-1.618288,-1,0,ONA:SA:RMAU,Europe/Paris,0,ONA, +ONA:SP:RMAU2,1,"Roche Maurice",47.196229,-1.618281,-1,0,ONA:SA:RMAU,Europe/Paris,2,ONA, +ONA:SP:RMNE1,1,"Romanet",47.211491,-1.609231,-1,0,ONA:SA:RMNE,Europe/Paris,2,ONA, +ONA:SP:RMNE2,1,"Romanet",47.211864,-1.608862,-1,0,ONA:SA:RMNE,Europe/Paris,2,ONA, +ONA:SP:RMNE3,1,"Romanet",47.212237,-1.608493,-1,0,ONA:SA:RMNE,Europe/Paris,2,ONA, +ONA:SP:RMNE4,1,"Romanet",47.212138,-1.60875,-1,0,ONA:SA:RMNE,Europe/Paris,2,ONA, +ONA:SP:RMNE6,1,"Romanet",47.210705,-1.608512,-1,0,ONA:SA:RMNE,Europe/Paris,2,ONA, +ONA:SP:RNAN1,1,"Renan",47.216315,-1.613024,-1,0,ONA:SA:RNAN,Europe/Paris,2,ONA, +ONA:SP:RNAN2,1,"Renan",47.216297,-1.613552,-1,0,ONA:SA:RNAN,Europe/Paris,2,ONA, +ONA:SP:RNIE1,1,"Rinière",47.129059,-1.635892,-1,0,ONA:SA:RNIE,Europe/Paris,0,ONA, +ONA:SP:RNIE2,1,"Rinière",47.128686,-1.636261,-1,0,ONA:SA:RNIE,Europe/Paris,0,ONA, +ONA:SP:RNLT1,1,"Renault",47.263245,-1.495432,-1,0,ONA:SA:RNLT,Europe/Paris,0,ONA, +ONA:SP:RNLT2,1,"Renault",47.263416,-1.495709,-1,0,ONA:SA:RNLT,Europe/Paris,2,ONA, +ONA:SP:RNRE1,1,"Renaudières",47.299483,-1.507961,-1,0,ONA:SA:RNRE,Europe/Paris,2,ONA, +ONA:SP:RNRE2,1,"Renaudières",47.299389,-1.508087,-1,0,ONA:SA:RNRE,Europe/Paris,2,ONA, +ONA:SP:RNTI1,1,"Reinetière",47.25689,-1.491537,-1,0,ONA:SA:RNTI,Europe/Paris,2,ONA, +ONA:SP:RNTI2,1,"Reinetière",47.256898,-1.491273,-1,0,ONA:SA:RNTI,Europe/Paris,2,ONA, +ONA:SP:ROCA1,1,"Rocade",47.163341,-1.474418,-1,0,ONA:SA:ROCA,Europe/Paris,0,ONA, +ONA:SP:ROCA2,1,"Rocade",47.163431,-1.474424,-1,0,ONA:SA:ROCA,Europe/Paris,2,ONA, +ONA:SP:ROET1,1,"Rouet",47.148267,-1.5214,-1,0,ONA:SA:ROET,Europe/Paris,2,ONA, +ONA:SP:ROET2,1,"Rouet",47.1486,-1.522216,-1,0,ONA:SA:ROET,Europe/Paris,2,ONA, +ONA:SP:RPAR1,1,"Rond-Point de Paris",47.23435,-1.535411,-1,0,ONA:SA:RPAR,Europe/Paris,2,ONA, +ONA:SP:RPAR2,1,"Rond-Point de Paris",47.233416,-1.536401,-1,0,ONA:SA:RPAR,Europe/Paris,2,ONA, +ONA:SP:RPAR3,1,"Rond-Point de Paris",47.23404,-1.536579,-1,0,ONA:SA:RPAR,Europe/Paris,0,ONA, +ONA:SP:RPAR4,1,"Rond-Point de Paris",47.233649,-1.534832,-1,0,ONA:SA:RPAR,Europe/Paris,0,ONA, +ONA:SP:RPBL1,1,"République",47.205598,-1.554741,-1,0,ONA:SA:RPBL,Europe/Paris,0,ONA, +ONA:SP:RPBL2,1,"République",47.205603,-1.554609,-1,0,ONA:SA:RPBL,Europe/Paris,2,ONA, +ONA:SP:RPBL3,1,"République",47.204408,-1.555315,-1,0,ONA:SA:RPBL,Europe/Paris,2,ONA, +ONA:SP:RPBL4,1,"République",47.205217,-1.555374,-1,0,ONA:SA:RPBL,Europe/Paris,2,ONA, +ONA:SP:RPCH1,1,"Repos de Chasse",47.21656,-1.597972,-1,0,ONA:SA:RPCH,Europe/Paris,0,ONA, +ONA:SP:RPCH2,1,"Repos de Chasse",47.216685,-1.599567,-1,0,ONA:SA:RPCH,Europe/Paris,2,ONA, +ONA:SP:RPSI1,1,"Ripossière",47.191597,-1.534565,-1,0,ONA:SA:RPSI,Europe/Paris,2,ONA, +ONA:SP:RPSI2,1,"Ripossière",47.192213,-1.535006,-1,0,ONA:SA:RPSI,Europe/Paris,2,ONA, +ONA:SP:RQIO9,1,"Trentemoult-Roquios",47.195559,-1.582553,-1,0,ONA:SA:RQIO,Europe/Paris,2,ONA, +ONA:SP:RRE98,1,"Rond-Point de Rennes",47.233426,-1.565493,-1,0,OPL:SA:AST-25255-A-25255-R,Europe/Paris,2,ONA, +ONA:SP:RREN1,1,"Rond-Point de Rennes",47.232532,-1.565296,-1,0,OPL:SA:AST-25255-A-25255-R,Europe/Paris,2,ONA, +ONA:SP:RREN2,1,"Rond-Point de Rennes",47.232621,-1.565302,-1,0,OPL:SA:AST-25255-A-25255-R,Europe/Paris,2,ONA, +ONA:SP:RREN3,1,"Rond-Point de Rennes",47.233039,-1.566258,-1,0,OPL:SA:AST-25255-A-25255-R,Europe/Paris,0,ONA, +ONA:SP:RREN4,1,"Rond-Point de Rennes",47.233228,-1.566007,-1,0,OPL:SA:AST-25255-A-25255-R,Europe/Paris,0,ONA, +ONA:SP:RROL1,1,"Romain Rolland",47.206532,-1.609394,-1,0,ONA:SA:RROL,Europe/Paris,2,ONA, +ONA:SP:RROL2,1,"Romain Rolland",47.206779,-1.610073,-1,0,ONA:SA:RROL,Europe/Paris,2,ONA, +ONA:SP:RSCO1,1,"Robert Scott",47.186999,-1.458928,-1,0,ONA:SA:RSCO,Europe/Paris,2,ONA, +ONA:SP:RSCO2,1,"Robert Scott",47.186999,-1.458928,-1,0,ONA:SA:RSCO,Europe/Paris,2,ONA, +ONA:SP:RSLI1,1,"Rousselière",47.175659,-1.518354,-1,0,ONA:SA:RSLI,Europe/Paris,2,ONA, +ONA:SP:RSLI2,1,"Rousselière",47.175505,-1.517551,-1,0,ONA:SA:RSLI,Europe/Paris,2,ONA, +ONA:SP:RSNB1,1,"Rosenberg",47.235689,-1.659815,-1,0,ONA:SA:RSNB,Europe/Paris,0,ONA, +ONA:SP:RSNB2,1,"Rosenberg",47.235599,-1.659808,-1,0,ONA:SA:RSNB,Europe/Paris,0,ONA, +ONA:SP:RSRA1,1,"Roseraie",47.260796,-1.528331,-1,0,ONA:SA:RSRA,Europe/Paris,2,ONA, +ONA:SP:RSRA2,1,"Roseraie",47.260706,-1.528324,-1,0,ONA:SA:RSRA,Europe/Paris,2,ONA, +ONA:SP:RTSC1,1,"Recteur Schmitt",47.252222,-1.552976,-1,0,ONA:SA:RTSC,Europe/Paris,2,ONA, +ONA:SP:RTSC2,1,"Recteur Schmitt",47.251872,-1.552686,-1,0,ONA:SA:RTSC,Europe/Paris,2,ONA, +ONA:SP:RTSC3,1,"Recteur Schmitt",47.252231,-1.552712,-1,0,ONA:SA:RTSC,Europe/Paris,2,ONA, +ONA:SP:RTSC4,1,"Recteur Schmitt",47.252316,-1.55285,-1,0,ONA:SA:RTSC,Europe/Paris,0,ONA, +ONA:SP:RTSC5,1,"Recteur Schmitt",47.252757,-1.553147,-1,0,ONA:SA:RTSC,Europe/Paris,0,ONA, +ONA:SP:RTSC6,1,"Recteur Schmitt",47.252662,-1.553272,-1,0,ONA:SA:RTSC,Europe/Paris,2,ONA, +ONA:SP:RUET1,1,"Ruette",47.23355,-1.510891,-1,0,ONA:SA:RUET,Europe/Paris,2,ONA, +ONA:SP:RUET2,1,"Ruette",47.233357,-1.511274,-1,0,ONA:SA:RUET,Europe/Paris,2,ONA, +ONA:SP:RVAN1,1,"Rond-Point de Vannes",47.230112,-1.57292,-1,0,ONA:SA:RVAN,Europe/Paris,2,ONA, +ONA:SP:RVAN2,1,"Rond-Point de Vannes",47.229757,-1.572762,-1,0,ONA:SA:RVAN,Europe/Paris,2,ONA, +ONA:SP:RVAN3,1,"Rond-Point de Vannes",47.229568,-1.573013,-1,0,ONA:SA:RVAN,Europe/Paris,2,ONA, +ONA:SP:RVAN4,1,"Rond-Point de Vannes",47.229784,-1.571971,-1,0,ONA:SA:RVAN,Europe/Paris,2,ONA, +ONA:SP:RVDI1,1,"Rivaudière",47.227177,-1.650716,-1,0,ONA:SA:RVDI,Europe/Paris,2,ONA, +ONA:SP:RVDI2,1,"Rivaudière",47.227101,-1.650314,-1,0,ONA:SA:RVDI,Europe/Paris,2,ONA, +ONA:SP:RVER1,1,"Roches Vertes",47.185195,-1.524061,-1,0,ONA:SA:RVER,Europe/Paris,2,ONA, +ONA:SP:RVER2,1,"Roches Vertes",47.184907,-1.524569,-1,0,ONA:SA:RVER,Europe/Paris,2,ONA, +ONA:SP:SADU1,1,"Santos Dumont",47.259539,-1.568325,-1,0,ONA:SA:SADU,Europe/Paris,2,ONA, +ONA:SP:SADU2,1,"Santos Dumont",47.259373,-1.567916,-1,0,ONA:SA:SADU,Europe/Paris,2,ONA, +ONA:SP:SADU3,1,"Santos Dumont",47.259593,-1.566742,-1,0,ONA:SA:SADU,Europe/Paris,2,ONA, +ONA:SP:SADU4,1,"Santos Dumont",47.259323,-1.566722,-1,0,ONA:SA:SADU,Europe/Paris,0,ONA, +ONA:SP:SAGL1,1,"St-Aignan-de-Grand-Lieu",47.123256,-1.634407,-1,0,ONA:SA:SAGL,Europe/Paris,2,ONA, +ONA:SP:SAIG1,1,"St-Aignan",47.208038,-1.578445,-1,0,ONA:SA:SAIG,Europe/Paris,2,ONA, +ONA:SP:SAIG2,1,"St-Aignan",47.208132,-1.578319,-1,0,ONA:SA:SAIG,Europe/Paris,2,ONA, +ONA:SP:SALE1,1,"Salentine",47.248475,-1.610241,-1,0,ONA:SA:SALE,Europe/Paris,2,ONA, +ONA:SP:SALE3,1,"Salentine",47.24865,-1.610386,-1,0,ONA:SA:SALE,Europe/Paris,2,ONA, +ONA:SP:SAOR1,1,"Sables d'Or",47.265092,-1.455873,-1,0,ONA:SA:SAOR,Europe/Paris,2,ONA, +ONA:SP:SAPI2,1,"Saupin",47.184803,-1.476342,-1,0,ONA:SA:SAPI,Europe/Paris,0,ONA, +ONA:SP:SAPI3,1,"Saupin",47.184012,-1.475757,-1,0,ONA:SA:SAPI,Europe/Paris,0,ONA, +ONA:SP:SATR1,1,"Sautron",47.265387,-1.683868,-1,0,ONA:SA:SATR,Europe/Paris,2,ONA, +ONA:SP:SAUP1,1,"Saupin-Crédit Municipal",47.214047,-1.539229,-1,0,ONA:SA:SAUP,Europe/Paris,2,ONA, +ONA:SP:SAUP2,1,"Saupin-Crédit Municipal",47.213836,-1.540139,-1,0,ONA:SA:SAUP,Europe/Paris,2,ONA, +ONA:SP:SAVA1,1,"Savarières",47.208631,-1.489723,-1,0,ONA:SA:SAVA,Europe/Paris,2,ONA, +ONA:SP:SAVA2,1,"Savarières",47.208678,-1.489674,-1,0,ONA:SA:SAVA,Europe/Paris,0,ONA, +ONA:SP:SAVA3,1,"Savarières",47.208237,-1.489378,-1,0,ONA:SA:SAVA,Europe/Paris,0,ONA, +ONA:SP:SAVA4,1,"Savarières",47.208062,-1.489233,-1,0,ONA:SA:SAVA,Europe/Paris,0,ONA, +ONA:SP:SAVA5,1,"Savarières",47.210727,-1.490349,-1,0,ONA:SA:SAVA,Europe/Paris,2,ONA, +ONA:SP:SAVA6,1,"Savarières",47.210282,-1.490185,-1,0,ONA:SA:SAVA,Europe/Paris,0,ONA, +ONA:SP:SBA99,1,"St-Blaise",47.167208,-1.469147,-1,0,ONA:SA:SBAI,Europe/Paris,2,ONA, +ONA:SP:SBAI1,1,"St-Blaise",47.167213,-1.469015,-1,0,ONA:SA:SBAI,Europe/Paris,2,ONA, +ONA:SP:SBAI2,1,"St-Blaise",47.167303,-1.469021,-1,0,ONA:SA:SBAI,Europe/Paris,2,ONA, +ONA:SP:SBLL1,1,"Sébilleau",47.205108,-1.531842,-1,0,ONA:SA:SBLL,Europe/Paris,2,ONA, +ONA:SP:SBLL2,1,"Sébilleau",47.204843,-1.53169,-1,0,ONA:SA:SBLL,Europe/Paris,2,ONA, +ONA:SP:SBSA1,1,"St-Jean-Baptiste de la Salle",47.233429,-1.560072,-1,0,ONA:SA:SBSA,Europe/Paris,0,ONA, +ONA:SP:SBSA2,1,"St-Jean-Baptiste de la Salle",47.23351,-1.560342,-1,0,ONA:SA:SBSA,Europe/Paris,0,ONA, +ONA:SP:SCHW3,1,"Schweitzer",47.294864,-1.495185,-1,0,ONA:SA:SCHW,Europe/Paris,2,ONA, +ONA:SP:SCHW4,1,"Schweitzer",47.294694,-1.494908,-1,0,ONA:SA:SCHW,Europe/Paris,2,ONA, +ONA:SP:SCLE1,1,"St-Clément",47.222172,-1.546692,-1,0,ONA:SA:SCLE,Europe/Paris,2,ONA, +ONA:SP:SCLE2,1,"St-Clément",47.221884,-1.5472,-1,0,ONA:SA:SCLE,Europe/Paris,2,ONA, +ONA:SP:SDON1,1,"St-Donatien",47.229411,-1.540342,-1,0,ONA:SA:SDON,Europe/Paris,2,ONA, +ONA:SP:SDON2,1,"St-Donatien",47.228944,-1.540837,-1,0,ONA:SA:SDON,Europe/Paris,2,ONA, +ONA:SP:SECH1,1,"Schoelcher",47.220403,-1.627736,-1,0,ONA:SA:SECH,Europe/Paris,2,ONA, +ONA:SP:SECH2,1,"Schoelcher",47.220655,-1.628284,-1,0,ONA:SA:SECH,Europe/Paris,2,ONA, +ONA:SP:SEIL1,1,"Seil",47.193886,-1.570803,-1,0,ONA:SA:SEIL,Europe/Paris,2,ONA, +ONA:SP:SEIL2,1,"Seil",47.193801,-1.570664,-1,0,ONA:SA:SEIL,Europe/Paris,2,ONA, +ONA:SP:SEIL3,1,"Seil",47.194654,-1.569405,-1,0,ONA:SA:SEIL,Europe/Paris,2,ONA, +ONA:SP:SEIL4,1,"Seil",47.194484,-1.571771,-1,0,ONA:SA:SEIL,Europe/Paris,2,ONA, +ONA:SP:SERC1,1,"Sercel",47.266771,-1.489599,-1,0,ONA:SA:SERC,Europe/Paris,2,ONA, +ONA:SP:SERC2,1,"Sercel",47.267708,-1.488475,-1,0,ONA:SA:SERC,Europe/Paris,2,ONA, +ONA:SP:SEVR1,1,"Sèvres",47.186167,-1.527302,-1,0,ONA:SA:SEVR,Europe/Paris,2,ONA, +ONA:SP:SEVR2,1,"Sèvres",47.186679,-1.528132,-1,0,ONA:SA:SEVR,Europe/Paris,2,ONA, +ONA:SP:SFEL1,1,"St-Félix",47.231568,-1.556498,-1,0,ONA:SA:SFEL,Europe/Paris,2,ONA, +ONA:SP:SFEL2,1,"St-Félix",47.231204,-1.556604,-1,0,ONA:SA:SFEL,Europe/Paris,2,ONA, +ONA:SP:SFRA1,1,"San-Francisco",47.217691,-1.516492,-1,0,ONA:SA:SFRA,Europe/Paris,2,ONA, +ONA:SP:SFRA2,1,"San-Francisco",47.217987,-1.51572,-1,0,ONA:SA:SFRA,Europe/Paris,2,ONA, +ONA:SP:SGRA1,1,"Sageran",47.219631,-1.571229,-1,0,ONA:SA:SGRA,Europe/Paris,0,ONA, +ONA:SP:SIL58,1,"Sillon de Bretagne",47.24565,-1.608578,-1,0,ONA:SA:SILL,Europe/Paris,2,ONA, +ONA:SP:SIL59,1,"Sillon de Bretagne",47.245645,-1.60871,-1,0,ONA:SA:SILL,Europe/Paris,2,ONA, +ONA:SP:SILL1,1,"Sillon de Bretagne",47.245551,-1.608835,-1,0,ONA:SA:SILL,Europe/Paris,2,ONA, +ONA:SP:SILL2,1,"Sillon de Bretagne",47.245564,-1.608439,-1,0,ONA:SA:SILL,Europe/Paris,2,ONA, +ONA:SP:SILL3,1,"Sillon de Bretagne",47.245735,-1.608716,-1,0,ONA:SA:SILL,Europe/Paris,2,ONA, +ONA:SP:SILL4,1,"Sillon de Bretagne",47.245564,-1.608439,-1,0,ONA:SA:SILL,Europe/Paris,2,ONA, +ONA:SP:SINI1,1,"Sinière",47.225492,-1.678489,-1,0,ONA:SA:SINI,Europe/Paris,2,ONA, +ONA:SP:SINI2,1,"Sinière",47.225695,-1.677844,-1,0,ONA:SA:SINI,Europe/Paris,2,ONA, +ONA:SP:SJAC2,1,"St-Jacques",47.196167,-1.537934,-1,0,ONA:SA:SJAC,Europe/Paris,2,ONA, +ONA:SP:SJAC4,1,"St-Jacques",47.194015,-1.537646,-1,0,ONA:SA:SJAC,Europe/Paris,2,ONA, +ONA:SP:SJBO1,1,"St-Jean-de-Boiseau",47.195857,-1.724766,-1,0,OPL:SA:AST-06543-A-06543-R,Europe/Paris,2,ONA, +ONA:SP:SJBO2,1,"St-Jean-de-Boiseau",47.195852,-1.724898,-1,0,OPL:SA:AST-06543-A-06543-R,Europe/Paris,2,ONA, +ONA:SP:SJEA1,1,"St-Jean",47.19178,-1.523743,-1,0,ONA:SA:SJEA,Europe/Paris,2,ONA, +ONA:SP:SJEA3,1,"St-Jean",47.191785,-1.523612,-1,0,ONA:SA:SJEA,Europe/Paris,2,ONA, +ONA:SP:SJPO1,1,"St-Joseph-de-Porterie",47.267936,-1.516806,-1,0,ONA:SA:SJPO,Europe/Paris,2,ONA, +ONA:SP:SJPO2,1,"St-Joseph-de-Porterie",47.267842,-1.516932,-1,0,ONA:SA:SJPO,Europe/Paris,2,ONA, +ONA:SP:SLAU1,1,"St-Laurent",47.223576,-1.598224,-1,0,ONA:SA:SLAU,Europe/Paris,2,ONA, +ONA:SP:SLAU2,1,"St-Laurent",47.223064,-1.597393,-1,0,ONA:SA:SLAU,Europe/Paris,2,ONA, +ONA:SP:SLCE1,1,"Ste-Luce-sur-Loire",47.250352,-1.484985,-1,0,ONA:SA:SLCE,Europe/Paris,2,ONA, +ONA:SP:SLCE2,1,"Ste-Luce-sur-Loire",47.250348,-1.485117,-1,0,ONA:SA:SLCE,Europe/Paris,2,ONA, +ONA:SP:SLDA3,1,"Solidarité",47.217189,-1.587443,-1,0,ONA:SA:SLDA,Europe/Paris,0,ONA, +ONA:SP:SLDA4,1,"Solidarité",47.217279,-1.587449,-1,0,ONA:SA:SLDA,Europe/Paris,0,ONA, +ONA:SP:SLGE1,1,"Salorges",47.204731,-1.575031,-1,0,ONA:SA:SLGE,Europe/Paris,0,ONA, +ONA:SP:SLGE2,1,"Salorges",47.205382,-1.574418,-1,0,ONA:SA:SLGE,Europe/Paris,2,ONA, +ONA:SP:SLVI1,1,"St-Léger-les-Vignes",47.13657,-1.730304,-1,0,ONA:SA:SLVI,Europe/Paris,2,ONA, +ONA:SP:SLVI2,1,"St-Léger-les-Vignes",47.136314,-1.729889,-1,0,ONA:SA:SLVI,Europe/Paris,2,ONA, +ONA:SP:SMAR1,1,"St-Martin",47.213445,-1.693316,-1,0,ONA:SA:SMAR,Europe/Paris,0,ONA, +ONA:SP:SMAR2,1,"St-Martin",47.213454,-1.693053,-1,0,ONA:SA:SMAR,Europe/Paris,2,ONA, +ONA:SP:SMHI1,1,"St-Mihiel",47.223567,-1.553404,-1,0,ONA:SA:SMHI,Europe/Paris,2,ONA, +ONA:SP:SMHI2,1,"St-Mihiel",47.223117,-1.553371,-1,0,ONA:SA:SMHI,Europe/Paris,2,ONA, +ONA:SP:SMIC1,1,"St-Michel",47.224152,-1.644409,-1,0,ONA:SA:SMIC,Europe/Paris,2,ONA, +ONA:SP:SMIC2,1,"St-Michel",47.224147,-1.644541,-1,0,ONA:SA:SMIC,Europe/Paris,2,ONA, +ONA:SP:SNIC1,1,"St-Nicolas",47.215806,-1.559185,-1,0,ONA:SA:SNIC,Europe/Paris,2,ONA, +ONA:SP:SNIC2,1,"St-Nicolas",47.215671,-1.560497,-1,0,ONA:SA:SNIC,Europe/Paris,2,ONA, +ONA:SP:SNTA1,1,"Sanitat",47.210781,-1.569261,-1,0,ONA:SA:SNTA,Europe/Paris,0,ONA, +ONA:SP:SNTA2,1,"Sanitat",47.210287,-1.567903,-1,0,ONA:SA:SNTA,Europe/Paris,2,ONA, +ONA:SP:SNUC1,1,"Stade SNUC",47.227943,-1.581092,-1,0,ONA:SA:SNUC,Europe/Paris,0,ONA, +ONA:SP:SNUC2,1,"Stade SNUC",47.228069,-1.580043,-1,0,ONA:SA:SNUC,Europe/Paris,0,ONA, +ONA:SP:SOCH1,1,"Souchais",47.307658,-1.489615,-1,0,ONA:SA:SOCH,Europe/Paris,2,ONA, +ONA:SP:SOEC1,1,"Souchais-Ecole",47.303676,-1.498333,-1,0,ONA:SA:SOEC,Europe/Paris,2,ONA, +ONA:SP:SOEC2,1,"Souchais-Ecole",47.303573,-1.498723,-1,0,ONA:SA:SOEC,Europe/Paris,2,ONA, +ONA:SP:SORI1,1,"Sorin",47.195157,-1.567856,-1,0,ONA:SA:SORI,Europe/Paris,0,ONA, +ONA:SP:SORI2,1,"Sorin",47.195247,-1.567863,-1,0,ONA:SA:SORI,Europe/Paris,2,ONA, +ONA:SP:SOUI1,1,"Souillarderie",47.238418,-1.516134,-1,0,ONA:SA:SOUI,Europe/Paris,2,ONA, +ONA:SP:SOUI2,1,"Souillarderie",47.238153,-1.515983,-1,0,ONA:SA:SOUI,Europe/Paris,2,ONA, +ONA:SP:SOUI4,1,"Souillarderie",47.237798,-1.515825,-1,0,ONA:SA:SOUI,Europe/Paris,2,ONA, +ONA:SP:SOUI5,1,"Souillarderie",47.238234,-1.516253,-1,0,ONA:SA:SOUI,Europe/Paris,2,ONA, +ONA:SP:SOWE1,1,"Soweto",47.233272,-1.651567,-1,0,ONA:SA:SOWE,Europe/Paris,0,ONA, +ONA:SP:SOWE2,1,"Soweto",47.233272,-1.651567,-1,0,ONA:SA:SOWE,Europe/Paris,0,ONA, +ONA:SP:SPHI1,1,"Saphirs",47.204972,-1.657256,-1,0,ONA:SA:SPHI,Europe/Paris,2,ONA, +ONA:SP:SPHI2,1,"Saphirs",47.204945,-1.658047,-1,0,ONA:SA:SPHI,Europe/Paris,2,ONA, +ONA:SP:SPR99,1,"Sully Prudhomme",47.236321,-1.596913,-1,0,ONA:SA:SPRU,Europe/Paris,2,ONA, +ONA:SP:SPRU1,1,"Sully Prudhomme",47.23624,-1.596643,-1,0,ONA:SA:SPRU,Europe/Paris,2,ONA, +ONA:SP:SPRU2,1,"Sully Prudhomme",47.23615,-1.596636,-1,0,ONA:SA:SPRU,Europe/Paris,2,ONA, +ONA:SP:SPSA1,1,"St-Paul-Salengro",47.184365,-1.546064,-1,0,ONA:SA:SPSA,Europe/Paris,2,ONA, +ONA:SP:SPSA2,1,"St-Paul-Salengro",47.185349,-1.546267,-1,0,ONA:SA:SPSA,Europe/Paris,2,ONA, +ONA:SP:SRDI1,1,"Sarradin",47.220386,-1.570226,-1,0,ONA:SA:SRDI,Europe/Paris,2,ONA, +ONA:SP:SRNI1,1,"Les Sorinières",47.159185,-1.518093,-1,0,ONA:SA:SRNI,Europe/Paris,2,ONA, +ONA:SP:SRTR1,1,"Sartre",47.214298,-1.640239,-1,0,ONA:SA:SRTR,Europe/Paris,0,ONA, +ONA:SP:SRTR2,1,"Sartre",47.214545,-1.640918,-1,0,ONA:SA:SRTR,Europe/Paris,0,ONA, +ONA:SP:SSEB1,1,"St-Sébastien-sur-Loire",47.207521,-1.502808,-1,0,ONA:SA:SSEB,Europe/Paris,2,ONA, +ONA:SP:SSEB2,1,"St-Sébastien-sur-Loire",47.207409,-1.50346,-1,0,ONA:SA:SSEB,Europe/Paris,2,ONA, +ONA:SP:SSTA1,1,"St-Stanislas",47.222202,-1.556478,-1,0,ONA:SA:SSTA,Europe/Paris,2,ONA, +ONA:SP:SSTA2,1,"St-Stanislas",47.222813,-1.557051,-1,0,ONA:SA:SSTA,Europe/Paris,2,ONA, +ONA:SP:STBS1,1,"Stade",47.191249,-1.707238,-1,0,ONA:SA:STBS,Europe/Paris,2,ONA, +ONA:SP:STBS2,1,"Stade",47.191316,-1.707903,-1,0,ONA:SA:STBS,Europe/Paris,2,ONA, +ONA:SP:STBS3,1,"Stade",47.191051,-1.707751,-1,0,ONA:SA:STBS,Europe/Paris,2,ONA, +ONA:SP:STHR1,1,"Alexandre Vincent-Ste-Thérèse",47.23292,-1.577754,-1,0,ONA:SA:STHR,Europe/Paris,2,ONA, +ONA:SP:STHR2,1,"Alexandre Vincent-Ste-Thérèse",47.232664,-1.577338,-1,0,ONA:SA:STHR,Europe/Paris,2,ONA, +ONA:SP:STMA1,1,"St- Martin",47.199278,-1.594983,-1,0,ONA:SA:STMA,Europe/Paris,2,ONA, +ONA:SP:STMA2,1,"St-Martin",47.199292,-1.594588,-1,0,ONA:SA:STMA,Europe/Paris,2,ONA, +ONA:SP:STPI1,1,"St-Pierre",47.218122,-1.55195,-1,0,ONA:SA:STPI,Europe/Paris,2,ONA, +ONA:SP:STPI2,1,"St-Pierre",47.218126,-1.551819,-1,0,ONA:SA:STPI,Europe/Paris,2,ONA, +ONA:SP:STXU1,1,"St-Exupéry",47.152896,-1.59488,-1,0,ONA:SA:STXU,Europe/Paris,0,ONA, +ONA:SP:STXU2,1,"St-Exupéry",47.152896,-1.59488,-1,0,ONA:SA:STXU,Europe/Paris,2,ONA, +ONA:SP:SUCO2,1,"Surcouf",47.268845,-1.445819,-1,0,ONA:SA:SUCO,Europe/Paris,0,ONA, +ONA:SP:SVAU1,1,"Savaudière",47.289259,-1.51477,-1,0,ONA:SA:SVAU,Europe/Paris,2,ONA, +ONA:SP:SVAU2,1,"Savaudière",47.289012,-1.514091,-1,0,ONA:SA:SVAU,Europe/Paris,2,ONA, +ONA:SP:SVDI1,1,"Solvardière",47.218116,-1.641844,-1,0,ONA:SA:SVDI,Europe/Paris,2,ONA, +ONA:SP:SVDI2,1,"Solvardière",47.218012,-1.642233,-1,0,ONA:SA:SVDI,Europe/Paris,2,ONA, +ONA:SP:SVIN1,1,"Stévin",47.260058,-1.634911,-1,0,ONA:SA:SVIN,Europe/Paris,2,ONA, +ONA:SP:SVIN2,1,"Stévin",47.260076,-1.634383,-1,0,ONA:SA:SVIN,Europe/Paris,2,ONA, +ONA:SP:SVNN1,1,"Savonnières",47.197485,-1.662776,-1,0,ONA:SA:SVNN,Europe/Paris,2,ONA, +ONA:SP:SVNN2,1,"Savonnières",47.197494,-1.662513,-1,0,ONA:SA:SVNN,Europe/Paris,2,ONA, +ONA:SP:SYRM1,1,"Syrma",47.276847,-1.470867,-1,0,ONA:SA:SYRM,Europe/Paris,2,ONA, +ONA:SP:SYRM2,1,"Syrma",47.277142,-1.470094,-1,0,ONA:SA:SYRM,Europe/Paris,2,ONA, +ONA:SP:SZAI1,1,"Saulzaie",47.231071,-1.631833,-1,0,ONA:SA:SZAI,Europe/Paris,2,ONA, +ONA:SP:SZAI2,1,"Saulzaie",47.231062,-1.632097,-1,0,ONA:SA:SZAI,Europe/Paris,2,ONA, +ONA:SP:TADI2,1,"Taillandier",47.214343,-1.716519,-1,0,ONA:SA:TADI,Europe/Paris,0,ONA, +ONA:SP:TAID1,1,"Toutes Aides",47.226464,-1.52347,-1,0,ONA:SA:TAID,Europe/Paris,2,ONA, +ONA:SP:TAID2,1,"Toutes Aides",47.226118,-1.523048,-1,0,ONA:SA:TAID,Europe/Paris,2,ONA, +ONA:SP:TAID3,1,"Toutes Aides",47.226162,-1.52173,-1,0,ONA:SA:TAID,Europe/Paris,2,ONA, +ONA:SP:TBAU1,1,"Thébaudières",47.310793,-1.360207,-1,0,ONA:SA:TBAU,Europe/Paris,0,ONA, +ONA:SP:TBAU2,1,"Thébaudières",47.310566,-1.358868,-1,0,ONA:SA:TBAU,Europe/Paris,0,ONA, +ONA:SP:TBCH1,1,"Trébuchet",47.219777,-1.545593,-1,0,ONA:SA:TBCH,Europe/Paris,2,ONA, +ONA:SP:TBCH2,1,"Trébuchet",47.220182,-1.546945,-1,0,ONA:SA:TBCH,Europe/Paris,2,ONA, +ONA:SP:TBER1,1,"Tristan Bernard",47.205104,-1.464309,-1,0,ONA:SA:TBER,Europe/Paris,0,ONA, +ONA:SP:TBER2,1,"Tristan Bernard",47.205806,-1.464887,-1,0,ONA:SA:TBER,Europe/Paris,0,ONA, +ONA:SP:TBLY1,1,"Tabarly",47.195444,-1.548717,-1,0,ONA:SA:TBLY,Europe/Paris,2,ONA, +ONA:SP:TBLY2,1,"Tabarly",47.195525,-1.548987,-1,0,ONA:SA:TBLY,Europe/Paris,2,ONA, +ONA:SP:TCHE1,1,"Trois Chênes",47.25819,-1.474036,-1,0,ONA:SA:TCHE,Europe/Paris,2,ONA, +ONA:SP:TCHE2,1,"Trois Chênes",47.259614,-1.474534,-1,0,ONA:SA:TCHE,Europe/Paris,2,ONA, +ONA:SP:TDGA1,1,"Tredégar",47.254693,-1.604879,-1,0,ONA:SA:TDGA,Europe/Paris,2,ONA, +ONA:SP:TDGA2,1,"Tredégar",47.254734,-1.603692,-1,0,ONA:SA:TDGA,Europe/Paris,2,ONA, +ONA:SP:TDGA3,1,"Tredégar",47.253979,-1.604694,-1,0,ONA:SA:TDGA,Europe/Paris,2,ONA, +ONA:SP:TEBS1,1,"Tertre",47.196865,-1.744666,-1,0,ONA:SA:TEBS,Europe/Paris,0,ONA, +ONA:SP:TEBS2,1,"Tertre",47.19669,-1.74452,-1,0,ONA:SA:TEBS,Europe/Paris,0,ONA, +ONA:SP:TEGO1,1,"Tertre",47.216019,-1.471958,-1,0,ONA:SA:TEGO,Europe/Paris,0,ONA, +ONA:SP:TEGO2,1,"Tertre",47.216204,-1.471839,-1,0,ONA:SA:TEGO,Europe/Paris,0,ONA, +ONA:SP:TEIF1,1,"Tour Eiffel",47.199748,-1.754798,-1,0,ONA:SA:TEIF,Europe/Paris,2,ONA, +ONA:SP:TEIF2,1,"Tour Eiffel",47.199587,-1.754257,-1,0,ONA:SA:TEIF,Europe/Paris,2,ONA, +ONA:SP:TENA1,1,"Tertre",47.21442,-1.607861,-1,0,ONA:SA:TENA,Europe/Paris,2,ONA, +ONA:SP:TENA2,1,"Tertre",47.214766,-1.608283,-1,0,ONA:SA:TENA,Europe/Paris,2,ONA, +ONA:SP:TENA3,1,"Tertre",47.213868,-1.605573,-1,0,ONA:SA:TENA,Europe/Paris,2,ONA, +ONA:SP:TENA4,1,"Tertre",47.213922,-1.606634,-1,0,ONA:SA:TENA,Europe/Paris,0,ONA, +ONA:SP:TENA5,1,"Tertre",47.214551,-1.606681,-1,0,ONA:SA:TENA,Europe/Paris,2,ONA, +ONA:SP:TENA6,1,"Tertre",47.21456,-1.606417,-1,0,ONA:SA:TENA,Europe/Paris,2,ONA, +ONA:SP:TERR1,1,"Terray",47.251825,-1.527285,-1,0,ONA:SA:TERR,Europe/Paris,2,ONA, +ONA:SP:TERR2,1,"Terray",47.251393,-1.526725,-1,0,ONA:SA:TERR,Europe/Paris,2,ONA, +ONA:SP:THAT1,1,"Théatre",47.215712,-1.728785,-1,0,ONA:SA:THAT,Europe/Paris,2,ONA, +ONA:SP:THAT2,1,"Théatre",47.216435,-1.728708,-1,0,ONA:SA:THAT,Europe/Paris,2,ONA, +ONA:SP:THCE1,1,"Centre de Thouaré-sur-Loire",47.266647,-1.44143,-1,0,ONA:SA:THCE,Europe/Paris,2,ONA, +ONA:SP:THCE2,1,"Centre de Thouaré-sur-Loire",47.266643,-1.441562,-1,0,ONA:SA:THCE,Europe/Paris,2,ONA, +ONA:SP:THEB1,1,"Thébaudières",47.244563,-1.606117,-1,0,OPL:SA:AST-27519-A-27519-R,Europe/Paris,2,ONA, +ONA:SP:THEB2,1,"Thébaudières",47.243907,-1.606862,-1,0,OPL:SA:AST-27519-A-27519-R,Europe/Paris,2,ONA, +ONA:SP:TILL1,1,"Tillay",47.228786,-1.60654,-1,0,ONA:SA:TILL,Europe/Paris,2,ONA, +ONA:SP:TILL2,1,"Tillay",47.228795,-1.606277,-1,0,ONA:SA:TILL,Europe/Paris,2,ONA, +ONA:SP:TJOI1,1,"Toutes Joies",47.221195,-1.57293,-1,0,ONA:SA:TJOI,Europe/Paris,2,ONA, +ONA:SP:TLDI1,1,"Télindière",47.196228,-1.737216,-1,0,ONA:SA:TLDI,Europe/Paris,2,ONA, +ONA:SP:TLDI2,1,"Télindière",47.196143,-1.737078,-1,0,ONA:SA:TLDI,Europe/Paris,2,ONA, +ONA:SP:TLSA1,1,"Talensac",47.221496,-1.55603,-1,0,ONA:SA:TLSA,Europe/Paris,2,ONA, +ONA:SP:TLSA2,1,"Talensac",47.221505,-1.555766,-1,0,ONA:SA:TLSA,Europe/Paris,2,ONA, +ONA:SP:TMET1,1,"Trois Métairies",47.176397,-1.501632,-1,0,ONA:SA:TMET,Europe/Paris,2,ONA, +ONA:SP:TMET2,1,"Trois Métairies",47.176654,-1.502047,-1,0,ONA:SA:TMET,Europe/Paris,2,ONA, +ONA:SP:TMLI1,1,"Tourmaline",47.221412,-1.632438,-1,0,ONA:SA:TMLI,Europe/Paris,2,ONA, +ONA:SP:TMLI2,1,"Tourmaline",47.221484,-1.632973,-1,0,ONA:SA:TMLI,Europe/Paris,2,ONA, +ONA:SP:TMOU1,1,"Trois Moulins",47.178475,-1.544448,-1,0,ONA:SA:TMOU,Europe/Paris,2,ONA, +ONA:SP:TMOU2,1,"Trois Moulins",47.178125,-1.544158,-1,0,ONA:SA:TMOU,Europe/Paris,2,ONA, +ONA:SP:TMSS1,1,"Trémissinière",47.238194,-1.544285,-1,0,ONA:SA:TMSS,Europe/Paris,2,ONA, +ONA:SP:TMSS2,1,"Trémissinière",47.238576,-1.543652,-1,0,ONA:SA:TMSS,Europe/Paris,2,ONA, +ONA:SP:TNVA1,1,"Terre Neuvas",47.186017,-1.59031,-1,0,ONA:SA:TNVA,Europe/Paris,2,ONA, +ONA:SP:TNVA2,1,"Terre Neuvas",47.185891,-1.591358,-1,0,ONA:SA:TNVA,Europe/Paris,2,ONA, +ONA:SP:TOSC1,1,"Toscane",47.282996,-1.548466,-1,0,ONA:SA:TOSC,Europe/Paris,2,ONA, +ONA:SP:TOSC2,1,"Toscane",47.28327,-1.548353,-1,0,ONA:SA:TOSC,Europe/Paris,2,ONA, +ONA:SP:TOTR1,1,"Tortière",47.235312,-1.54963,-1,0,ONA:SA:TOTR,Europe/Paris,0,ONA, +ONA:SP:TOTR2,1,"Tortière",47.235043,-1.54961,-1,0,ONA:SA:TOTR,Europe/Paris,0,ONA, +ONA:SP:TOUG1,1,"Tougas",47.194142,-1.639666,-1,0,ONA:SA:TOUG,Europe/Paris,2,ONA, +ONA:SP:TOUG2,1,"Tougas",47.194151,-1.639402,-1,0,ONA:SA:TOUG,Europe/Paris,2,ONA, +ONA:SP:TPCH1,1,"Terpsichore",47.282463,-1.502501,-1,0,ONA:SA:TPCH,Europe/Paris,0,ONA, +ONA:SP:TPCH2,1,"Terpsichore",47.282224,-1.501558,-1,0,ONA:SA:TPCH,Europe/Paris,0,ONA, +ONA:SP:TPOD1,1,"Tripode",47.208324,-1.540665,-1,0,ONA:SA:TPOD,Europe/Paris,2,ONA, +ONA:SP:TPOD2,1,"Tripode",47.208145,-1.540652,-1,0,ONA:SA:TPOD,Europe/Paris,2,ONA, +ONA:SP:TRCA1,1,"Tréca",47.250074,-1.501498,-1,0,ONA:SA:TRCA,Europe/Paris,2,ONA, +ONA:SP:TRCA2,1,"Tréca",47.250258,-1.501379,-1,0,ONA:SA:TRCA,Europe/Paris,2,ONA, +ONA:SP:TRIA1,1,"Trianon",47.273222,-1.430383,-1,0,ONA:SA:TRIA,Europe/Paris,2,ONA, +ONA:SP:TRNE1,1,"Tribunes",47.249176,-1.568494,-1,0,ONA:SA:TRNE,Europe/Paris,2,ONA, +ONA:SP:TRNE2,1,"Tribunes",47.250577,-1.569655,-1,0,ONA:SA:TRNE,Europe/Paris,0,ONA, +ONA:SP:TRNE3,1,"Tribunes",47.250802,-1.568349,-1,0,ONA:SA:TRNE,Europe/Paris,2,ONA, +ONA:SP:TROC1,1,"Trocardière",47.183204,-1.569759,-1,0,ONA:SA:TROC,Europe/Paris,2,ONA, +ONA:SP:TROC2,1,"Trocardière",47.183186,-1.570286,-1,0,ONA:SA:TROC,Europe/Paris,2,ONA, +ONA:SP:TRQU1,1,"Terres Quartières",47.134791,-1.659232,-1,0,ONA:SA:TRQU,Europe/Paris,0,ONA, +ONA:SP:TRQU2,1,"Terres Quartières",47.134709,-1.659503,-1,0,ONA:SA:TRQU,Europe/Paris,0,ONA, +ONA:SP:TTMO1,1,"Trentemoult",47.191493,-1.582916,-1,0,ONA:SA:TTMO,Europe/Paris,2,ONA, +ONA:SP:TTMO2,1,"Trentemoult",47.191902,-1.581493,-1,0,ONA:SA:TTMO,Europe/Paris,2,ONA, +ONA:SP:TTMO4,1,"Trentemoult",47.191408,-1.582778,-1,0,ONA:SA:TTMO,Europe/Paris,2,ONA, +ONA:SP:TTMO5,1,"Trentemoult",47.191893,-1.581756,-1,0,ONA:SA:TTMO,Europe/Paris,2,ONA, +ONA:SP:TZEL1,1,"Touzelles",47.208193,-1.466246,-1,0,ONA:SA:TZEL,Europe/Paris,0,ONA, +ONA:SP:TZEL2,1,"Touzelles",47.208543,-1.466536,-1,0,ONA:SA:TZEL,Europe/Paris,2,ONA, +ONA:SP:UBRU1,1,"Usine Brûlée",47.194944,-1.632061,-1,0,ONA:SA:UBRU,Europe/Paris,0,ONA, +ONA:SP:UBRU2,1,"Usine Brûlée",47.194855,-1.632054,-1,0,ONA:SA:UBRU,Europe/Paris,0,ONA, +ONA:SP:UGAZ1,1,"Usine à gaz",47.19462,-1.620541,-1,0,ONA:SA:UGAZ,Europe/Paris,0,ONA, +ONA:SP:UGAZ2,1,"Usine à gaz",47.195034,-1.618986,-1,0,ONA:SA:UGAZ,Europe/Paris,0,ONA, +ONA:SP:UTCH1,1,"Utrecht",47.283146,-1.55205,-1,0,ONA:SA:UTCH,Europe/Paris,2,ONA, +ONA:SP:UTCH2,1,"Utrecht",47.283141,-1.552182,-1,0,ONA:SA:UTCH,Europe/Paris,2,ONA, +ONA:SP:UTLO1,1,"Utrillo",47.18243,-1.563361,-1,0,ONA:SA:UTLO,Europe/Paris,2,ONA, +ONA:SP:UTLO2,1,"Utrillo",47.182066,-1.563467,-1,0,ONA:SA:UTLO,Europe/Paris,2,ONA, +ONA:SP:VAIL1,1,"Vaillant",47.199627,-1.67113,-1,0,ONA:SA:VAIL,Europe/Paris,2,ONA, +ONA:SP:VAIL2,1,"Vaillant",47.199627,-1.67113,-1,0,ONA:SA:VAIL,Europe/Paris,2,ONA, +ONA:SP:VALL1,1,"Vallée",47.250879,-1.576688,-1,0,ONA:SA:VALL,Europe/Paris,2,ONA, +ONA:SP:VALL2,1,"Vallée",47.250426,-1.576787,-1,0,ONA:SA:VALL,Europe/Paris,2,ONA, +ONA:SP:VARI1,1,"Vincent Auriol",47.221802,-1.592144,-1,0,ONA:SA:VARI,Europe/Paris,2,ONA, +ONA:SP:VARI2,1,"Vincent Auriol",47.221798,-1.592276,-1,0,ONA:SA:VARI,Europe/Paris,2,ONA, +ONA:SP:VCSO1,1,"Vaucanson",47.212889,-1.581443,-1,0,ONA:SA:VCSO,Europe/Paris,2,ONA, +ONA:SP:VCSO2,1,"Vaucanson",47.212714,-1.581298,-1,0,ONA:SA:VCSO,Europe/Paris,2,ONA, +ONA:SP:VDCE1,1,"Val du Cens",47.261464,-1.667167,-1,0,ONA:SA:VDCE,Europe/Paris,2,ONA, +ONA:SP:VDCE2,1,"Val du Cens",47.261084,-1.665153,-1,0,ONA:SA:VDCE,Europe/Paris,0,ONA, +ONA:SP:VDLO1,1,"Vieux Doulon",47.235531,-1.50548,-1,0,ONA:SA:VDLO,Europe/Paris,2,ONA, +ONA:SP:VDLO2,1,"Vieux Doulon",47.23549,-1.504022,-1,0,ONA:SA:VDLO,Europe/Paris,2,ONA, +ONA:SP:VDNI1,1,"Ville-au-Denis",47.162314,-1.62753,-1,0,ONA:SA:VDNI,Europe/Paris,0,ONA, +ONA:SP:VDNI2,1,"Ville-au-Denis",47.162692,-1.62703,-1,0,ONA:SA:VDNI,Europe/Paris,2,ONA, +ONA:SP:VDUR1,1,"Verdure",47.195918,-1.653409,-1,0,ONA:SA:VDUR,Europe/Paris,0,ONA, +ONA:SP:VDUR2,1,"Verdure",47.195474,-1.653244,-1,0,ONA:SA:VDUR,Europe/Paris,2,ONA, +ONA:SP:VEAG1,1,"Véga",47.28006,-1.463553,-1,0,ONA:SA:VEAG,Europe/Paris,2,ONA, +ONA:SP:VEAG2,1,"Véga",47.27967,-1.464451,-1,0,ONA:SA:VEAG,Europe/Paris,2,ONA, +ONA:SP:VEGE1,1,"Verger",47.293092,-1.497043,-1,0,ONA:SA:VEGE,Europe/Paris,0,ONA, +ONA:SP:VEGE2,1,"Verger",47.293087,-1.497175,-1,0,ONA:SA:VEGE,Europe/Paris,2,ONA, +ONA:SP:VEIE1,1,"Verrière",47.276937,-1.570523,-1,0,ONA:SA:VEIE,Europe/Paris,0,ONA, +ONA:SP:VEIE2,1,"Verrière",47.276749,-1.570774,-1,0,ONA:SA:VEIE,Europe/Paris,0,ONA, +ONA:SP:VEPR1,1,"Vesprées",47.246,-1.502132,-1,0,ONA:SA:VEPR,Europe/Paris,2,ONA, +ONA:SP:VEPR2,1,"Vesprées",47.245803,-1.502647,-1,0,ONA:SA:VEPR,Europe/Paris,2,ONA, +ONA:SP:VERL1,1,"Verlaine",47.233868,-1.594882,-1,0,ONA:SA:VERL,Europe/Paris,0,ONA, +ONA:SP:VERL2,1,"Verlaine",47.233338,-1.594578,-1,0,ONA:SA:VERL,Europe/Paris,0,ONA, +ONA:SP:VEXP1,1,"Village Expo",47.214994,-1.614777,-1,0,ONA:SA:VEXP,Europe/Paris,2,ONA, +ONA:SP:VEXP2,1,"Village Expo",47.214711,-1.615153,-1,0,ONA:SA:VEXP,Europe/Paris,2,ONA, +ONA:SP:VFOU1,1,"Vieux Four",47.190734,-1.701385,-1,0,ONA:SA:VFOU,Europe/Paris,2,ONA, +ONA:SP:VFOU2,1,"Vieux Four",47.190932,-1.700871,-1,0,ONA:SA:VFOU,Europe/Paris,2,ONA, +ONA:SP:VGAC1,1,"Vincent Gâche",47.20662,-1.548471,-1,0,ONA:SA:VGAC,Europe/Paris,2,ONA, +ONA:SP:VGAC2,1,"Vincent Gâche",47.20636,-1.548188,-1,0,ONA:SA:VGAC,Europe/Paris,2,ONA, +ONA:SP:VGAC3,1,"Vincent Gâche",47.206117,-1.547378,-1,0,ONA:SA:VGAC,Europe/Paris,2,ONA, +ONA:SP:VGAC4,1,"Vincent Gâche",47.205911,-1.548156,-1,0,ONA:SA:VGAC,Europe/Paris,2,ONA, +ONA:SP:VIAR1,1,"Viarme-Talensac",47.221539,-1.562775,-1,0,ONA:SA:VIAR,Europe/Paris,2,ONA, +ONA:SP:VIAR2,1,"Viarme-Talensac",47.221184,-1.562617,-1,0,ONA:SA:VIAR,Europe/Paris,2,ONA, +ONA:SP:VIER1,1,"Viv'Erdre",47.285544,-1.550372,-1,0,ONA:SA:VIER,Europe/Paris,0,ONA, +ONA:SP:VIER2,1,"Viv'Erdre",47.285634,-1.550378,-1,0,ONA:SA:VIER,Europe/Paris,0,ONA, +ONA:SP:VILE1,1,"Violettes",47.198132,-1.508873,-1,0,ONA:SA:VILE,Europe/Paris,2,ONA, +ONA:SP:VILE2,1,"Violettes",47.19749,-1.509223,-1,0,ONA:SA:VILE,Europe/Paris,2,ONA, +ONA:SP:VINE1,1,"Villeneuve",47.194114,-1.513209,-1,0,ONA:SA:VINE,Europe/Paris,2,ONA, +ONA:SP:VINE2,1,"Villeneuve",47.193912,-1.513855,-1,0,ONA:SA:VINE,Europe/Paris,0,ONA, +ONA:SP:VISO1,1,"Vison",47.244218,-1.509675,-1,0,ONA:SA:VISO,Europe/Paris,2,ONA, +ONA:SP:VISO2,1,"Vison",47.244483,-1.509826,-1,0,ONA:SA:VISO,Europe/Paris,2,ONA, +ONA:SP:VIVI1,1,"Viviers",47.173082,-1.484885,-1,0,ONA:SA:VIVI,Europe/Paris,2,ONA, +ONA:SP:VIVI2,1,"Viviers",47.173253,-1.485161,-1,0,ONA:SA:VIVI,Europe/Paris,2,ONA, +ONA:SP:VORR1,1,"Val d'Or",47.243917,-1.582791,-1,0,ONA:SA:VORR,Europe/Paris,0,ONA, +ONA:SP:VORR2,1,"Val d'Or",47.244667,-1.58192,-1,0,ONA:SA:VORR,Europe/Paris,0,ONA, +ONA:SP:VRIE1,1,"Vrière",47.283273,-1.556295,-1,0,ONA:SA:VRIE,Europe/Paris,2,ONA, +ONA:SP:VRIE2,1,"Vrière",47.282109,-1.556078,-1,0,ONA:SA:VRIE,Europe/Paris,2,ONA, +ONA:SP:VSCO1,1,"Vincent Scotto",47.251691,-1.566032,-1,0,ONA:SA:VSCO,Europe/Paris,2,ONA, +ONA:SP:VSCO2,1,"Vincent Scotto",47.252041,-1.566323,-1,0,ONA:SA:VSCO,Europe/Paris,2,ONA, +ONA:SP:VSCO4,1,"Vincent Scotto",47.25241,-1.566085,-1,0,ONA:SA:VSCO,Europe/Paris,0,ONA, +ONA:SP:VTNN1,1,"Vertonne",47.186998,-1.494334,-1,0,ONA:SA:VTNN,Europe/Paris,0,ONA, +ONA:SP:VTNN2,1,"Vertonne",47.186562,-1.493906,-1,0,ONA:SA:VTNN,Europe/Paris,0,ONA, +ONA:SP:VTOU1,1,"Vertou",47.169479,-1.471289,-1,0,ONA:SA:VTOU,Europe/Paris,2,ONA, +ONA:SP:VTOU2,1,"Vertou",47.168855,-1.471113,-1,0,ONA:SA:VTOU,Europe/Paris,2,ONA, +ONA:SP:VVRE2,1,"Vièvre",47.198066,-1.814408,-1,0,ONA:SA:VVRE,Europe/Paris,2,ONA, +ONA:SP:WATT1,1,"Wattignies",47.204073,-1.546568,-1,0,ONA:SA:WATT,Europe/Paris,2,ONA, +ONA:SP:WATT2,1,"Wattignies",47.203807,-1.546417,-1,0,ONA:SA:WATT,Europe/Paris,2,ONA, +ONA:SP:WDIS1,1,"Walt Disney",47.194348,-1.489971,-1,0,ONA:SA:WDIS,Europe/Paris,2,ONA, +ONA:SP:WDIS2,1,"Walt Disney",47.194887,-1.490009,-1,0,ONA:SA:WDIS,Europe/Paris,2,ONA, +ONA:SP:XBON1,1,"Croix Bonneau",47.209628,-1.595215,-1,0,ONA:SA:XBON,Europe/Paris,2,ONA, +ONA:SP:XBON2,1,"Croix Bonneau",47.20961,-1.595743,-1,0,ONA:SA:XBON,Europe/Paris,2,ONA, +ONA:SP:XBON3,1,"Croix Bonneau",47.210401,-1.596329,-1,0,ONA:SA:XBON,Europe/Paris,2,ONA, +ONA:SP:XBON4,1,"Croix Bonneau",47.210491,-1.596336,-1,0,ONA:SA:XBON,Europe/Paris,2,ONA, +ONA:SP:XBON5,1,"Croix Bonneau",47.209556,-1.597325,-1,0,ONA:SA:XBON,Europe/Paris,2,ONA, +ONA:SP:XJAN1,1,"Croix Jeannette",47.171093,-1.623689,-1,0,ONA:SA:XJAN,Europe/Paris,2,ONA, +ONA:SP:XREZ1,1,"Croix de Rezé",47.179149,-1.559159,-1,0,ONA:SA:XREZ,Europe/Paris,2,ONA, +ONA:SP:XREZ2,1,"Croix de Rezé",47.179428,-1.558915,-1,0,ONA:SA:XREZ,Europe/Paris,2,ONA, +ONA:SP:XREZ3,1,"Croix de Rezé",47.17936,-1.55825,-1,0,ONA:SA:XREZ,Europe/Paris,2,ONA, +ONA:SP:XREZ4,1,"Croix de Rezé",47.180057,-1.558961,-1,0,ONA:SA:XREZ,Europe/Paris,2,ONA, +ONA:SP:XSYY1,1,"Croisy",47.253762,-1.62677,-1,0,ONA:SA:XSYY,Europe/Paris,0,ONA, +ONA:SP:XSYY2,1,"Croisy",47.253417,-1.626348,-1,0,ONA:SA:XSYY,Europe/Paris,0,ONA, +ONA:SP:XTRU1,1,"Croix Truin",47.19138,-1.711212,-1,0,ONA:SA:XTRU,Europe/Paris,2,ONA, +ONA:SP:XTRU2,1,"Croix Truin",47.191361,-1.711739,-1,0,ONA:SA:XTRU,Europe/Paris,2,ONA, +ONA:SP:ZENI1,1,"Zénith",47.230528,-1.62928,-1,0,ONA:SA:ZENI,Europe/Paris,2,ONA, +ONA:SP:ZENI2,1,"Zénith",47.230614,-1.629419,-1,0,ONA:SA:ZENI,Europe/Paris,2,ONA, +ONA:SP:ZIMM1,1,"Zimmer",47.210029,-1.651686,-1,0,ONA:SA:ZIMM,Europe/Paris,2,ONA, +ONA:SP:ZIMM2,1,"Zimmer",47.210119,-1.651692,-1,0,ONA:SA:ZIMM,Europe/Paris,2,ONA, +ONA:SP:ZOLA1,1,"Zola",47.213811,-1.586137,-1,0,ONA:SA:ZOLA,Europe/Paris,0,ONA, +ONA:SP:ZOLA2,1,"Zola",47.21368,-1.584674,-1,0,ONA:SA:ZOLA,Europe/Paris,0,ONA, +ONA:SP:ZOLA3,1,"Zola",47.21404,-1.587344,-1,0,ONA:SA:ZOLA,Europe/Paris,2,ONA, +ONA:SP:ZOLA4,1,"Zola",47.215068,-1.58623,-1,0,ONA:SA:ZOLA,Europe/Paris,0,ONA, +OOY:SP:aubchar,1,"Charmille",46.604885,-1.450329,-1,0,OOY:SA:CTPaubchar,Europe/Paris,,OOY, +OOY:SP:aubchar2,1,"Charmille",46.604801,-1.450193,-1,0,OOY:SA:CTPaubchar,Europe/Paris,,OOY, +OOY:SP:aubegli,1,"Eglise d'Aubigny",46.595882,-1.452914,-1,0,OOY:SA:CTPaubegli,Europe/Paris,,OOY, +OOY:SP:aubegli2,1,"Eglise d'Aubigny",46.595818,-1.452753,-1,0,OOY:SA:CTPaubegli,Europe/Paris,,OOY, +OOY:SP:aubmino,1,"Minoterie",46.600952,-1.45272,-1,0,OOY:SA:CTPaubmino,Europe/Paris,,OOY, +OOY:SP:aubmino2,1,"Minoterie",46.60096,-1.452538,-1,0,OOY:SA:CTPaubmino,Europe/Paris,,OOY, +OOY:SP:auborde,1,"Ordeville",46.594444,-1.459869,-1,0,OOY:SA:CTPauborde,Europe/Paris,,OOY, +OOY:SP:auborde2,1,"Ordeville",46.594444,-1.459869,-1,0,OOY:SA:CTPauborde,Europe/Paris,,OOY, +OOY:SP:aubpell,1,"Pelleraies",46.610344,-1.446555,-1,0,OOY:SA:CTPaubpell,Europe/Paris,,OOY, +OOY:SP:aubpell2,1,"Pelleraies",46.610306,-1.446382,-1,0,OOY:SA:CTPaubpell,Europe/Paris,,OOY, +OOY:SP:chaamp,1,"Folie",46.666809,-1.333124,-1,0,OOY:SA:CTPchaamp,Europe/Paris,,OOY, +OOY:SP:chaamp2,1,"Folie",46.666832,-1.333456,-1,0,OOY:SA:CTPchaamp,Europe/Paris,,OOY, +OOY:SP:chacurz,1,"Curzais",46.665546,-1.35233,-1,0,OOY:SA:CTPchacurz,Europe/Paris,,OOY, +OOY:SP:chacurz2,1,"Curzais",46.665646,-1.352562,-1,0,OOY:SA:CTPchacurz,Europe/Paris,,OOY, +OOY:SP:chafoli,1,"Folie Nord",46.665459,-1.340343,-1,0,OOY:SA:CTPchafoli,Europe/Paris,,OOY, +OOY:SP:chafoli2,1,"Folie Nord",46.665436,-1.340803,-1,0,OOY:SA:CTPchafoli,Europe/Paris,,OOY, +OOY:SP:chagrel,1,"Grelière",46.664867,-1.357914,-1,0,OOY:SA:CTPchagrel,Europe/Paris,,OOY, +OOY:SP:chagrel2,1,"Grelière",46.664974,-1.358099,-1,0,OOY:SA:CTPchagrel,Europe/Paris,,OOY, +OOY:SP:chaharb,1,"Harbrière",46.671741,-1.303822,-1,0,OOY:SA:CTPchaharb,Europe/Paris,,OOY, +OOY:SP:chaharb2,1,"Harbrière",46.67178,-1.303287,-1,0,OOY:SA:CTPchaharb,Europe/Paris,,OOY, +OOY:SP:chamie,1,"Mairie",46.672455,-1.296616,-1,0,OOY:SA:CTPchamie,Europe/Paris,,OOY, +OOY:SP:chamoin,1,"Folie 2",46.666599,-1.322911,-1,0,OOY:SA:CTPchamoin,Europe/Paris,,OOY, +OOY:SP:chamoin2,1,"Folie 2",46.666603,-1.323333,-1,0,OOY:SA:CTPchamoin,Europe/Paris,,OOY, +OOY:SP:clomair,1,"Mairie des Clouzeaux",46.630527,-1.509826,-1,0,OOY:SA:CTPclomair,Europe/Paris,,OOY, +OOY:SP:clomair2,1,"Mairie des Clouzeaux",46.630604,-1.509727,-1,0,OOY:SA:CTPclomair,Europe/Paris,,OOY, +OOY:SP:cloprai,1,"Prairie",46.627098,-1.510134,-1,0,OOY:SA:CTPcloprai,Europe/Paris,,OOY, +OOY:SP:cloprai2,1,"Prairie",46.627178,-1.51015,-1,0,OOY:SA:CTPcloprai,Europe/Paris,,OOY, +OOY:SP:cloprou,1,"Proutière",46.631039,-1.503888,-1,0,OOY:SA:CTPcloprou,Europe/Paris,,OOY, +OOY:SP:cloprou2,1,"Proutière",46.631271,-1.503255,-1,0,OOY:SA:CTPcloprou,Europe/Paris,,OOY, +OOY:SP:closimo,1,"Simotière",46.641129,-1.442693,-1,0,OOY:SA:CTPclosimo,Europe/Paris,,OOY, +OOY:SP:closimo2,1,"Simotière",46.640926,-1.442564,-1,0,OOY:SA:CTPclosimo,Europe/Paris,,OOY, +OOY:SP:closoul,1,"Soulinière",46.639217,-1.458853,-1,0,OOY:SA:CTPclosoul,Europe/Paris,,OOY, +OOY:SP:closoul2,1,"Soulinière",46.639111,-1.458794,-1,0,OOY:SA:CTPclosoul,Europe/Paris,,OOY, +OOY:SP:clotino,1,"Tinouze",46.634033,-1.509251,-1,0,OOY:SA:CTPclotino,Europe/Paris,,OOY, +OOY:SP:clotino2,1,"Tinouze",46.63398,-1.509248,-1,0,OOY:SA:CTPclotino,Europe/Paris,,OOY, +OOY:SP:clovign,1,"Vignes",46.625984,-1.508699,-1,0,OOY:SA:CTPclovign,Europe/Paris,,OOY, +OOY:SP:clovign2,1,"Vignes",46.625916,-1.508682,-1,0,OOY:SA:CTPclovign,Europe/Paris,,OOY, +OOY:SP:dombell,1,"Bellevue",46.735939,-1.385675,-1,0,OOY:SA:CTPdombell,Europe/Paris,,OOY, +OOY:SP:dombert,1,"Berthelière",46.721279,-1.403485,-1,0,OOY:SA:CTPdombert,Europe/Paris,,OOY, +OOY:SP:dombert2,1,"Berthelière",46.721249,-1.403666,-1,0,OOY:SA:CTPdombert,Europe/Paris,,OOY, +OOY:SP:domcrea,1,"Créancière",46.726093,-1.396784,-1,0,OOY:SA:CTPdomcrea,Europe/Paris,,OOY, +OOY:SP:domcrea2,1,"Créancière",46.726162,-1.39692,-1,0,OOY:SA:CTPdomcrea,Europe/Paris,,OOY, +OOY:SP:domgpr2,1,"Grand Pré",46.734112,-1.396134,-1,0,OOY:SA:CTPdomgpr2,Europe/Paris,,OOY, +OOY:SP:domhall,1,"Halliers",46.733139,-1.391495,-1,0,OOY:SA:CTPdomhall,Europe/Paris,,OOY, +OOY:SP:domjgil2,1,"Justinien Gillaizeau",46.738049,-1.392541,-1,0,OOY:SA:CTPdomjgil2,Europe/Paris,,OOY, +OOY:SP:dommaga2,1,"Magaud",46.740532,-1.384764,-1,0,OOY:SA:CTPdommaga2,Europe/Paris,,OOY, +OOY:SP:dommart2,1,"Martinière",46.73613,-1.395016,-1,0,OOY:SA:CTPdommart2,Europe/Paris,,OOY, +OOY:SP:dommore,1,"Morelière",46.710632,-1.413915,-1,0,OOY:SA:CTPdommore,Europe/Paris,,OOY, +OOY:SP:dommore2,1,"Morelière",46.710571,-1.414085,-1,0,OOY:SA:CTPdommore,Europe/Paris,,OOY, +OOY:SP:dommott2,1,"Motte",46.74041,-1.38958,-1,0,OOY:SA:CTPdommott2,Europe/Paris,,OOY, +OOY:SP:domresi2,1,"Place de la Résistance",46.737759,-1.385133,-1,0,OOY:SA:CTPdomresi2,Europe/Paris,,OOY, +OOY:SP:ferbari,1,"Barillon",46.711311,-1.316513,-1,0,OOY:SA:CTPferbari,Europe/Paris,,OOY, +OOY:SP:ferbari2,1,"Barillon",46.711441,-1.316605,-1,0,OOY:SA:CTPferbari,Europe/Paris,,OOY, +OOY:SP:fermarc,1,"Place du Marché",46.714043,-1.31302,-1,0,OOY:SA:CTPfermarc,Europe/Paris,,OOY, +OOY:SP:flocent,1,"Tilleuls",46.595093,-1.318192,-1,0,OOY:SA:CTPflocent,Europe/Paris,,OOY, +OOY:SP:floclem2,1,"Clémenceau",46.600498,-1.328087,-1,0,OOY:SA:CTPfloclem2,Europe/Paris,,OOY, +OOY:SP:flocleme,1,"Clémenceau",46.600502,-1.32775,-1,0,OOY:SA:CTPfloclem2,Europe/Paris,,OOY, +OOY:SP:flopisc,1,"Rives de l'Yon Piscine",46.623199,-1.37018,-1,0,OOY:SA:CTPflopisc,Europe/Paris,,OOY, +OOY:SP:flopisc2,1,"Rives de l'Yon Piscine",46.624462,-1.371729,-1,0,OOY:SA:CTPflopisc,Europe/Paris,,OOY, +OOY:SP:florive1,1,"Tamaris",46.593964,-1.320924,-1,0,OOY:SA:CTPflorive1,Europe/Paris,,OOY, +OOY:SP:florive2,1,"Françoise Dolto",46.590866,-1.315225,-1,0,OOY:SA:CTPflorive2,Europe/Paris,,OOY, +OOY:SP:lryafpa,1,"Afpa",46.659389,-1.437533,-1,0,OOY:SA:CTPlryafpa,Europe/Paris,,OOY, +OOY:SP:lryafpa2,1,"Afpa",46.659534,-1.437517,-1,0,OOY:SA:CTPlryafpa,Europe/Paris,,OOY, +OOY:SP:lryagar,1,"Armand Garreau",46.67897,-1.424453,-1,0,OOY:SA:CTPlryagar,Europe/Paris,,OOY, +OOY:SP:lryagar2,1,"Armand Garreau",46.678974,-1.424322,-1,0,OOY:SA:CTPlryagar,Europe/Paris,,OOY, +OOY:SP:lryagat,1,"Agatha Christie",46.667164,-1.394821,-1,0,OOY:SA:CTPlryagat,Europe/Paris,,OOY, +OOY:SP:lryagat2,1,"Agatha Christie",46.667233,-1.39493,-1,0,OOY:SA:CTPlryagat,Europe/Paris,,OOY, +OOY:SP:lryajon,1,"Ajoncs",46.692928,-1.367774,-1,0,OOY:SA:CTPlryajon,Europe/Paris,,OOY, +OOY:SP:lryajon2,1,"Ajoncs",46.692928,-1.367774,-1,0,OOY:SA:CTPlryajon,Europe/Paris,,OOY, +OOY:SP:lryaliz,1,"Alisiers",46.644127,-1.425087,-1,0,OOY:SA:CTPlryaliz,Europe/Paris,,OOY, +OOY:SP:lryaliz2,1,"Alisiers",46.644279,-1.425284,-1,0,OOY:SA:CTPlryaliz,Europe/Paris,,OOY, +OOY:SP:lryallu,1,"Alluchon",46.683067,-1.416257,-1,0,OOY:SA:CTPlryallu,Europe/Paris,,OOY, +OOY:SP:lryallu2,1,"Alluchon",46.683075,-1.416126,-1,0,OOY:SA:CTPlryallu,Europe/Paris,,OOY, +OOY:SP:lryambo,1,"Val d'Amboise",46.660027,-1.457488,-1,0,OOY:SA:CTPlryambo,Europe/Paris,,OOY, +OOY:SP:lryambo2,1,"Val d'Amboise",46.660027,-1.457488,-1,0,OOY:SA:CTPlryambo,Europe/Paris,,OOY, +OOY:SP:lryandr,1,"St André d'Ornay",46.666325,-1.457145,-1,0,OOY:SA:CTPlryandr,Europe/Paris,,OOY, +OOY:SP:lryandr2,1,"St André d'Ornay",46.666286,-1.457221,-1,0,OOY:SA:CTPlryandr,Europe/Paris,,OOY, +OOY:SP:lryange,1,"Angelmière",46.655052,-1.449936,-1,0,OOY:SA:CTPlryange,Europe/Paris,,OOY, +OOY:SP:lryangl,1,"Angleterre",46.675198,-1.426912,-1,0,OOY:SA:CTPlryangl,Europe/Paris,,OOY, +OOY:SP:lryangl2,1,"Angleterre",46.674995,-1.426795,-1,0,OOY:SA:CTPlryangl,Europe/Paris,,OOY, +OOY:SP:lryasto,1,"Astoul",46.657104,-1.428652,-1,0,OOY:SA:CTPlryasto,Europe/Paris,,OOY, +OOY:SP:lryatla,1,"Atlantique",46.684986,-1.446777,-1,0,OOY:SA:CTPlryatla,Europe/Paris,,OOY, +OOY:SP:lryatla2,1,"Atlantique",46.684822,-1.447089,-1,0,OOY:SA:CTPlryatla,Europe/Paris,,OOY, +OOY:SP:lrybaff,1,"Baffert",46.684364,-1.442248,-1,0,OOY:SA:CTPlrybaff,Europe/Paris,,OOY, +OOY:SP:lrybaff2,1,"Baffert",46.684341,-1.442168,-1,0,OOY:SA:CTPlrybaff,Europe/Paris,,OOY, +OOY:SP:lrybast,1,"Bastide",46.666725,-1.442336,-1,0,OOY:SA:CTPlrybast,Europe/Paris,,OOY, +OOY:SP:lrybast2,1,"Bastide",46.666866,-1.442399,-1,0,OOY:SA:CTPlrybast,Europe/Paris,,OOY, +OOY:SP:lrybaum,1,"Baumann",46.658985,-1.401909,-1,0,OOY:SA:CTPlrybaum,Europe/Paris,,OOY, +OOY:SP:lrybeet,1,"Beethoven",46.650703,-1.428961,-1,0,OOY:SA:CTPlrybeet,Europe/Paris,,OOY, +OOY:SP:lrybelp,1,"Belle Place Bunsen",46.643162,-1.41554,-1,0,OOY:SA:CTPlrybelp,Europe/Paris,,OOY, +OOY:SP:lrybelp2,1,"Belle Place Bunsen",46.643631,-1.415724,-1,0,OOY:SA:CTPlrybelp,Europe/Paris,,OOY, +OOY:SP:lrybelpl,1,"Belle Place Cugnot",46.642708,-1.412086,-1,0,OOY:SA:CTPlrybelpl,Europe/Paris,,OOY, +OOY:SP:lryberl,1,"Berlioz",46.685299,-1.424592,-1,0,OOY:SA:CTPlryberl,Europe/Paris,,OOY, +OOY:SP:lryberl2,1,"Berlioz",46.685352,-1.424622,-1,0,OOY:SA:CTPlryberl,Europe/Paris,,OOY, +OOY:SP:lrybiro,1,"Birotheau",46.654308,-1.445484,-1,0,OOY:SA:CTPlrybiro,Europe/Paris,,OOY, +OOY:SP:lrybiro2,1,"Birotheau",46.654346,-1.445356,-1,0,OOY:SA:CTPlrybiro,Europe/Paris,,OOY, +OOY:SP:lryboca,1,"Bocage",46.650463,-1.440598,-1,0,OOY:SA:CTPlryboca,Europe/Paris,,OOY, +OOY:SP:lryboca2,1,"Bocage",46.650513,-1.440654,-1,0,OOY:SA:CTPlryboca,Europe/Paris,,OOY, +OOY:SP:lrybomb,1,"Alain Bombard",46.687504,-1.446356,-1,0,OOY:SA:CTPlrybomb,Europe/Paris,,OOY, +OOY:SP:lrybomb2,1,"Alain Bombard",46.687752,-1.44632,-1,0,OOY:SA:CTPlrybomb,Europe/Paris,,OOY, +OOY:SP:lrybout,1,"Boutelier",46.682888,-1.440352,-1,0,OOY:SA:CTPlrybout,Europe/Paris,,OOY, +OOY:SP:lrybout2,1,"Boutelier",46.682915,-1.440427,-1,0,OOY:SA:CTPlrybout,Europe/Paris,,OOY, +OOY:SP:lrybowl,1,"Bowling",46.666748,-1.407784,-1,0,OOY:SA:CTPlrybowl,Europe/Paris,,OOY, +OOY:SP:lrybowl2,1,"Bowling",46.666691,-1.407807,-1,0,OOY:SA:CTPlrybowl,Europe/Paris,,OOY, +OOY:SP:lrybrai,1,"Braille",46.683826,-1.438363,-1,0,OOY:SA:CTPlrybrai,Europe/Paris,,OOY, +OOY:SP:lrybrai2,1,"Braille",46.683876,-1.438229,-1,0,OOY:SA:CTPlrybrai,Europe/Paris,,OOY, +OOY:SP:lrybran,1,"Branly",46.673923,-1.441976,-1,0,OOY:SA:CTPlrybran,Europe/Paris,,OOY, +OOY:SP:lrybran2,1,"Branly",46.673897,-1.441765,-1,0,OOY:SA:CTPlrybran,Europe/Paris,,OOY, +OOY:SP:lrybrass,1,"Georges Brassens",46.654919,-1.411415,-1,0,OOY:SA:CTPlrybrass,Europe/Paris,,OOY, +OOY:SP:lrybros,1,"Brossardière",46.677784,-1.451302,-1,0,OOY:SA:CTPlrybros,Europe/Paris,,OOY, +OOY:SP:lrybros2,1,"Brossardière",46.677807,-1.451173,-1,0,OOY:SA:CTPlrybros,Europe/Paris,,OOY, +OOY:SP:lrycac3,1,"Cacérès Sco",46.658833,-1.416646,-1,0,OOY:SA:CTPlrycac3,Europe/Paris,,OOY, +OOY:SP:lrycace,1,"Cacérès",46.660404,-1.413611,-1,0,OOY:SA:CTPlrycace,Europe/Paris,,OOY, +OOY:SP:lrycace2,1,"Cacérès",46.66053,-1.41362,-1,0,OOY:SA:CTPlrycace,Europe/Paris,,OOY, +OOY:SP:lrycail,1,"Hubert Cailler",46.674351,-1.406911,-1,0,OOY:SA:CTPlrycail,Europe/Paris,,OOY, +OOY:SP:lrycail2,1,"Hubert Cailler",46.674282,-1.406827,-1,0,OOY:SA:CTPlrycail,Europe/Paris,,OOY, +OOY:SP:lrycart,1,"Cartier",46.679348,-1.435158,-1,0,OOY:SA:CTPlrycart,Europe/Paris,,OOY, +OOY:SP:lrycart2,1,"Cartier",46.679676,-1.435848,-1,0,OOY:SA:CTPlrycart,Europe/Paris,,OOY, +OOY:SP:lrycaso2,1,"Castors",46.682995,-1.441989,-1,0,OOY:SA:CTPlrycaso2,Europe/Paris,,OOY, +OOY:SP:lrycasto,1,"Castors",46.682934,-1.442011,-1,0,OOY:SA:CTPlrycaso2,Europe/Paris,,OOY, +OOY:SP:lryccha2,1,"Claude Chappe",46.706017,-1.430028,-1,0,OOY:SA:CTPlryccha2,Europe/Paris,,OOY, +OOY:SP:lrycchap,1,"Claude Chappe",46.705994,-1.430105,-1,0,OOY:SA:CTPlryccha2,Europe/Paris,,OOY, +OOY:SP:lryccom,1,"Centre Commercial",46.702538,-1.430322,-1,0,OOY:SA:CTPlryccom,Europe/Paris,,OOY, +OOY:SP:lryccom2,1,"Centre Commercial",46.703129,-1.430505,-1,0,OOY:SA:CTPlryccom,Europe/Paris,,OOY, +OOY:SP:lryccovi,1,"Centre Commercial Jaulnières",46.653824,-1.427615,-1,0,OOY:SA:CTPlryccovi,Europe/Paris,,OOY, +OOY:SP:lrychap,1,"Chaptal",46.655533,-1.432188,-1,0,OOY:SA:CTPlrychap,Europe/Paris,,OOY, +OOY:SP:lrychap2,1,"Chaptal",46.65556,-1.4324,-1,0,OOY:SA:CTPlrychap,Europe/Paris,,OOY, +OOY:SP:lrychat,1,"Château d'eau",46.690914,-1.433203,-1,0,OOY:SA:CTPlrychat,Europe/Paris,,OOY, +OOY:SP:lrycime,1,"Cimetière",46.665257,-1.398737,-1,0,OOY:SA:CTPlrycime,Europe/Paris,,OOY, +OOY:SP:lrycime2,1,"Cimetière",46.664875,-1.3992,-1,0,OOY:SA:CTPlrycime,Europe/Paris,,OOY, +OOY:SP:lrycine2,1,"Cinéville",46.697697,-1.426385,-1,0,OOY:SA:CTPlrycine2,Europe/Paris,,OOY, +OOY:SP:lryclin,1,"Clinique St Charles",46.657589,-1.413259,-1,0,OOY:SA:CTPlryclin,Europe/Paris,,OOY, +OOY:SP:lryclin2,1,"Clinique St Charles",46.657555,-1.413204,-1,0,OOY:SA:CTPlryclin,Europe/Paris,,OOY, +OOY:SP:lryclos,1,"Clos des Charmes",46.667755,-1.438104,-1,0,OOY:SA:CTPlryclos,Europe/Paris,,OOY, +OOY:SP:lryclos2,1,"Clos des Charmes",46.667667,-1.439112,-1,0,OOY:SA:CTPlryclos,Europe/Paris,,OOY, +OOY:SP:lrycolu2,1,"Côte de Lumière",46.662727,-1.459588,-1,0,OOY:SA:CTPlrycolu2,Europe/Paris,,OOY, +OOY:SP:lrycome,1,"Comète",46.671589,-1.412346,-1,0,OOY:SA:CTPlrycome,Europe/Paris,,OOY, +OOY:SP:lrycome2,1,"Comète",46.671535,-1.412238,-1,0,OOY:SA:CTPlrycome,Europe/Paris,,OOY, +OOY:SP:lrycomm2,1,"Commerce",46.654358,-1.442019,-1,0,OOY:SA:CTPlrycomm2,Europe/Paris,,OOY, +OOY:SP:lrycomme,1,"Commerce",46.654568,-1.442016,-1,0,OOY:SA:CTPlrycomm2,Europe/Paris,,OOY, +OOY:SP:lrycope,1,"Copernic",46.665123,-1.410328,-1,0,OOY:SA:CTPlrycope,Europe/Paris,,OOY, +OOY:SP:lrycope2,1,"Copernic",46.665173,-1.410488,-1,0,OOY:SA:CTPlrycope,Europe/Paris,,OOY, +OOY:SP:lrycote,1,"Côteau",46.655075,-1.416564,-1,0,OOY:SA:CTPlrycote,Europe/Paris,,OOY, +OOY:SP:lrycote2,1,"Côteau",46.655186,-1.415957,-1,0,OOY:SA:CTPlrycote,Europe/Paris,,OOY, +OOY:SP:lrycotel,1,"Côte de Lumière",46.662586,-1.459526,-1,0,OOY:SA:CTPlrycolu2,Europe/Paris,,OOY, +OOY:SP:lrycoty,1,"Coty",46.659168,-1.444281,-1,0,OOY:SA:CTPlrycoty,Europe/Paris,,OOY, +OOY:SP:lrycoty2,1,"Coty",46.659256,-1.444313,-1,0,OOY:SA:CTPlrycoty,Europe/Paris,,OOY, +OOY:SP:lrycour,1,"Courtaisière",46.676609,-1.405314,-1,0,OOY:SA:CTPlrycour,Europe/Paris,,OOY, +OOY:SP:lrycour2,1,"Courtaisière",46.676651,-1.405186,-1,0,OOY:SA:CTPlrycour,Europe/Paris,,OOY, +OOY:SP:lrycroc1,1,"Napoléon Crocodile",46.670162,-1.427018,-1,0,OOY:SA:CTPlrycroc1,Europe/Paris,,OOY, +OOY:SP:lrycuri,1,"Curie",46.664799,-1.432743,-1,0,OOY:SA:CTPlrycuri,Europe/Paris,,OOY, +OOY:SP:lrycuri2,1,"Curie",46.664848,-1.432851,-1,0,OOY:SA:CTPlrycuri,Europe/Paris,,OOY, +OOY:SP:lrydefe,1,"Defferre",46.678658,-1.409578,-1,0,OOY:SA:CTPlrydefe,Europe/Paris,,OOY, +OOY:SP:lrydefe2,1,"Defferre",46.678726,-1.409687,-1,0,OOY:SA:CTPlrydefe,Europe/Paris,,OOY, +OOY:SP:lrydena,1,"Denant",46.648811,-1.435787,-1,0,OOY:SA:CTPlrydena,Europe/Paris,,OOY, +OOY:SP:lrydena2,1,"Denant",46.64901,-1.435422,-1,0,OOY:SA:CTPlrydena,Europe/Paris,,OOY, +OOY:SP:lryderv,1,"Dervieux",46.648174,-1.411574,-1,0,OOY:SA:CTPlryderv,Europe/Paris,,OOY, +OOY:SP:lryderv2,1,"Dervieux",46.648373,-1.411481,-1,0,OOY:SA:CTPlryderv,Europe/Paris,,OOY, +OOY:SP:lrydonq,1,"Don Quichotte",46.66671,-1.403961,-1,0,OOY:SA:CTPlrydonq,Europe/Paris,,OOY, +OOY:SP:lrydonq2,1,"Don Quichotte",46.666656,-1.403957,-1,0,OOY:SA:CTPlrydonq,Europe/Paris,,OOY, +OOY:SP:lrydrom1,1,"Napoléon Dromadaire",46.670963,-1.426375,-1,0,OOY:SA:CTPlrydrom1,Europe/Paris,,OOY, +OOY:SP:lrydufy,1,"Duffy",46.654808,-1.428177,-1,0,OOY:SA:CTPlrydufy,Europe/Paris,,OOY, +OOY:SP:lrydura,1,"Durand",46.660248,-1.416125,-1,0,OOY:SA:CTPlrydura,Europe/Paris,,OOY, +OOY:SP:lrydura2,1,"Durand",46.660374,-1.416134,-1,0,OOY:SA:CTPlrydura,Europe/Paris,,OOY, +OOY:SP:lrydura3,1,"Durand Sco",46.659252,-1.418131,-1,0,OOY:SA:CTPlrydura3,Europe/Paris,,OOY, +OOY:SP:lryecol,1,"Ecole de la Santé",46.676052,-1.398693,-1,0,OOY:SA:CTPlryecol,Europe/Paris,,OOY, +OOY:SP:lryecol2,1,"Ecole de la Santé",46.676086,-1.398748,-1,0,OOY:SA:CTPlryecol,Europe/Paris,,OOY, +OOY:SP:lryecqu,1,"Ecquebouille Mutualité",46.667427,-1.41941,-1,0,OOY:SA:CTPlryecqu,Europe/Paris,,OOY, +OOY:SP:lryecqu2,1,"Ecquebouille Mutualité",46.6674,-1.419199,-1,0,OOY:SA:CTPlryecqu,Europe/Paris,,OOY, +OOY:SP:lryedis,1,"Edison",46.681919,-1.438543,-1,0,OOY:SA:CTPlryedis,Europe/Paris,,OOY, +OOY:SP:lryedis2,1,"Edison",46.682064,-1.438554,-1,0,OOY:SA:CTPlryedis,Europe/Paris,,OOY, +OOY:SP:lryeins,1,"Einstein",46.66383,-1.415445,-1,0,OOY:SA:CTPlryeins,Europe/Paris,,OOY, +OOY:SP:lryeins2,1,"Einstein",46.663845,-1.415524,-1,0,OOY:SA:CTPlryeins,Europe/Paris,,OOY, +OOY:SP:lryelbe,1,"Elbée",46.662647,-1.404504,-1,0,OOY:SA:CTPlryelbe,Europe/Paris,,OOY, +OOY:SP:lryelbe2,1,"Elbée",46.662613,-1.40445,-1,0,OOY:SA:CTPlryelbe,Europe/Paris,,OOY, +OOY:SP:lryelde,1,"Marc Elder",46.66357,-1.454362,-1,0,OOY:SA:CTPlryelde,Europe/Paris,,OOY, +OOY:SP:lryelde2,1,"Marc Elder",46.663528,-1.454464,-1,0,OOY:SA:CTPlryelde,Europe/Paris,,OOY, +OOY:SP:lryelpl2,1,"Belle Place Cugnot",46.643246,-1.411205,-1,0,OOY:SA:CTPlryelpl2,Europe/Paris,,OOY, +OOY:SP:lryenri,1,"Enrilise",46.680458,-1.426362,-1,0,OOY:SA:CTPlryenri,Europe/Paris,,OOY, +OOY:SP:lryenri2,1,"Enrilise",46.680546,-1.426368,-1,0,OOY:SA:CTPlryenri,Europe/Paris,,OOY, +OOY:SP:lryepin,1,"Epinettes",46.657997,-1.450906,-1,0,OOY:SA:CTPlryepin,Europe/Paris,,OOY, +OOY:SP:lryepin2,1,"Epinettes",46.658054,-1.451058,-1,0,OOY:SA:CTPlryepin,Europe/Paris,,OOY, +OOY:SP:lryesta,1,"Eglise de St André",46.665134,-1.449068,-1,0,OOY:SA:CTPlryesta,Europe/Paris,,OOY, +OOY:SP:lryesta2,1,"Eglise de St André",46.665394,-1.448576,-1,0,OOY:SA:CTPlryesta,Europe/Paris,,OOY, +OOY:SP:lryetab,1,"Etablières",46.687786,-1.429988,-1,0,OOY:SA:CTPlryetab,Europe/Paris,,OOY, +OOY:SP:lryetab2,1,"Etablières",46.687389,-1.42979,-1,0,OOY:SA:CTPlryetab,Europe/Paris,,OOY, +OOY:SP:lryeuro,1,"Europe",46.69722,-1.431522,-1,0,OOY:SA:CTPlryeuro,Europe/Paris,,OOY, +OOY:SP:lryeuro1,1,"Europe",46.697113,-1.431485,-1,0,OOY:SA:CTPlryeuro,Europe/Paris,,OOY, +OOY:SP:lryeyla,1,"Eylau",46.683788,-1.428544,-1,0,OOY:SA:CTPlryeyla,Europe/Paris,,OOY, +OOY:SP:lryeyla2,1,"Eylau",46.683865,-1.428471,-1,0,OOY:SA:CTPlryeyla,Europe/Paris,,OOY, +OOY:SP:lryeyla3,1,"Eylau",46.683777,-1.427889,-1,0,OOY:SA:CTPlryeyla,Europe/Paris,,OOY, +OOY:SP:lryeyla4,1,"Eylau",46.683811,-1.427944,-1,0,OOY:SA:CTPlryeyla,Europe/Paris,,OOY, +OOY:SP:lryfcev2,1,"François Cevert",46.698448,-1.42844,-1,0,OOY:SA:CTPlryfcev2,Europe/Paris,,OOY, +OOY:SP:lryflan,1,"Flâneries",46.699451,-1.430552,-1,0,OOY:SA:CTPlryflan,Europe/Paris,,OOY, +OOY:SP:lryflan2,1,"Flâneries",46.699467,-1.430632,-1,0,OOY:SA:CTPlryflan,Europe/Paris,,OOY, +OOY:SP:lryfmon,1,"Montlahuc",46.679554,-1.413042,-1,0,OOY:SA:CTPlryfmon,Europe/Paris,,OOY, +OOY:SP:lryfmon2,1,"Montlahuc",46.679523,-1.412909,-1,0,OOY:SA:CTPlryfmon,Europe/Paris,,OOY, +OOY:SP:lryfoch,1,"Foch",46.671944,-1.427427,-1,0,OOY:SA:CTPlryfoch,Europe/Paris,,OOY, +OOY:SP:lryfoch2,1,"Foch",46.672882,-1.427771,-1,0,OOY:SA:CTPlryfoch,Europe/Paris,,OOY, +OOY:SP:lryforg,1,"Forges",46.679771,-1.440828,-1,0,OOY:SA:CTPlryforg,Europe/Paris,,OOY, +OOY:SP:lryforg2,1,"Forges",46.679779,-1.440619,-1,0,OOY:SA:CTPlryforg,Europe/Paris,,OOY, +OOY:SP:lryfort,1,"Forton",46.65118,-1.431244,-1,0,OOY:SA:CTPlryfort,Europe/Paris,,OOY, +OOY:SP:lryfoss,1,"Diane Fossey",46.6782,-1.412634,-1,0,OOY:SA:CTPlryfoss,Europe/Paris,,OOY, +OOY:SP:lryfoss2,1,"Diane Fossey",46.678238,-1.412532,-1,0,OOY:SA:CTPlryfoss,Europe/Paris,,OOY, +OOY:SP:lryfour,1,"Fourcade",46.656605,-1.452748,-1,0,OOY:SA:CTPlryfour,Europe/Paris,,OOY, +OOY:SP:lryfour2,1,"Fourcade",46.656662,-1.452726,-1,0,OOY:SA:CTPlryfour,Europe/Paris,,OOY, +OOY:SP:lryfoye,1,"Foyer G.Bourrieau",46.664692,-1.45533,-1,0,OOY:SA:CTPlryfoye,Europe/Paris,,OOY, +OOY:SP:lryfoye2,1,"Foyer G.Bourrieau",46.664669,-1.455407,-1,0,OOY:SA:CTPlryfoye,Europe/Paris,,OOY, +OOY:SP:lryfrat,1,"Fraternité",46.660267,-1.441519,-1,0,OOY:SA:CTPlryfrat,Europe/Paris,,OOY, +OOY:SP:lryfrat2,1,"Fraternité",46.660511,-1.441261,-1,0,OOY:SA:CTPlryfrat,Europe/Paris,,OOY, +OOY:SP:lryfrie,1,"Friedland",46.675896,-1.424814,-1,0,OOY:SA:CTPlryfrie,Europe/Paris,,OOY, +OOY:SP:lryfrie2,1,"Friedland",46.675884,-1.424683,-1,0,OOY:SA:CTPlryfrie,Europe/Paris,,OOY, +OOY:SP:lryfrom2,1,"Château Fromage",46.679142,-1.355778,-1,0,OOY:SA:CTPlryfrom2,Europe/Paris,,OOY, +OOY:SP:lryfroma,1,"Château Fromage",46.679249,-1.355961,-1,0,OOY:SA:CTPlryfrom2,Europe/Paris,,OOY, +OOY:SP:lrygare,1,"Garenne",46.679688,-1.422369,-1,0,OOY:SA:CTPlrygare,Europe/Paris,,OOY, +OOY:SP:lrygare2,1,"Garenne",46.679634,-1.422366,-1,0,OOY:SA:CTPlrygare,Europe/Paris,,OOY, +OOY:SP:lrygaul,1,"De Gaulle",46.671204,-1.419634,-1,0,OOY:SA:CTPlrygaul,Europe/Paris,,OOY, +OOY:SP:lrygaul2,1,"De Gaulle",46.671295,-1.419614,-1,0,OOY:SA:CTPlrygaul,Europe/Paris,,OOY, +OOY:SP:lrygava,1,"Cinéville Gavardie",46.69627,-1.42397,-1,0,OOY:SA:CTPlrygava,Europe/Paris,,OOY, +OOY:SP:lrygava2,1,"Cinéville Gavardie",46.696259,-1.424262,-1,0,OOY:SA:CTPlrygava,Europe/Paris,,OOY, +OOY:SP:lrygbel2,1,"Graham Bell",46.695316,-1.428313,-1,0,OOY:SA:CTPlrygbel2,Europe/Paris,,OOY, +OOY:SP:lrygene,1,"Généraudière",46.652905,-1.443581,-1,0,OOY:SA:CTPlrygene,Europe/Paris,,OOY, +OOY:SP:lrygene2,1,"Généraudière",46.65287,-1.443526,-1,0,OOY:SA:CTPlrygene,Europe/Paris,,OOY, +OOY:SP:lryglua,1,"Gluard",46.666595,-1.432057,-1,0,OOY:SA:CTPlryglua,Europe/Paris,,OOY, +OOY:SP:lryglua2,1,"Gluard",46.666729,-1.431621,-1,0,OOY:SA:CTPlryglua,Europe/Paris,,OOY, +OOY:SP:lrygrai,1,"Grainetière",46.649803,-1.445012,-1,0,OOY:SA:CTPlrygrai,Europe/Paris,,OOY, +OOY:SP:lrygrai2,1,"Grainetière",46.649841,-1.444963,-1,0,OOY:SA:CTPlrygrai,Europe/Paris,,OOY, +OOY:SP:lryguer,1,"Guérin",46.660614,-1.41025,-1,0,OOY:SA:CTPlryguer,Europe/Paris,,OOY, +OOY:SP:lryguer2,1,"Guérin",46.66074,-1.410259,-1,0,OOY:SA:CTPlryguer,Europe/Paris,,OOY, +OOY:SP:lrygur,1,"Guérif",46.676975,-1.447382,-1,0,OOY:SA:CTPlrygur,Europe/Paris,,OOY, +OOY:SP:lryhall,1,"Halles Résistance",46.671543,-1.422444,-1,0,OOY:SA:CTPlryhall,Europe/Paris,,OOY, +OOY:SP:lryhall2,1,"Halles Résistance",46.671627,-1.422659,-1,0,OOY:SA:CTPlryhall,Europe/Paris,,OOY, +OOY:SP:lryhaut,1,"Hauts de Renou",46.673161,-1.409393,-1,0,OOY:SA:CTPlryhaut,Europe/Paris,,OOY, +OOY:SP:lryhaut2,1,"Hauts de Renou",46.673092,-1.409284,-1,0,OOY:SA:CTPlryhaut,Europe/Paris,,OOY, +OOY:SP:lryhaxo,1,"Haxo",46.675663,-1.418216,-1,0,OOY:SA:CTPlryhaxo,Europe/Paris,,OOY, +OOY:SP:lryhaxo2,1,"Haxo",46.675678,-1.418296,-1,0,OOY:SA:CTPlryhaxo,Europe/Paris,,OOY, +OOY:SP:lryhipp1,1,"Napoléon Hippopotame",46.670383,-1.426059,-1,0,OOY:SA:CTPlryhipp1,Europe/Paris,,OOY, +OOY:SP:lryhopi,1,"Hôpital",46.66787,-1.411599,-1,0,OOY:SA:CTPlryhopi,Europe/Paris,,OOY, +OOY:SP:lryhopi2,1,"Hôpital",46.66787,-1.411599,-1,0,OOY:SA:CTPlryhopi,Europe/Paris,,OOY, +OOY:SP:lryhorb,1,"Horbetoux",46.681385,-1.451633,-1,0,OOY:SA:CTPlryhorb,Europe/Paris,,OOY, +OOY:SP:lryhorb1,1,"Horbetoux 1",46.681286,-1.45192,-1,0,OOY:SA:CTPlryhorb1,Europe/Paris,,OOY, +OOY:SP:lryhosu,1,"Hôpital Sud",46.650173,-1.434104,-1,0,OOY:SA:CTPlryhosu,Europe/Paris,,OOY, +OOY:SP:lryhosu2,1,"Hôpital Sud",46.650948,-1.433569,-1,0,OOY:SA:CTPlryhosu,Europe/Paris,,OOY, +OOY:SP:lryhtaz2,1,"Haroun Tazieff",46.704056,-1.428569,-1,0,OOY:SA:CTPlryhtaz2,Europe/Paris,,OOY, +OOY:SP:lryibis1,1,"Napoléon Ibis Sacré",46.670757,-1.427237,-1,0,OOY:SA:CTPlryibis1,Europe/Paris,,OOY, +OOY:SP:lryjard,1,"Jardins de l'Ornay",46.646843,-1.441104,-1,0,OOY:SA:CTPlryjard,Europe/Paris,,OOY, +OOY:SP:lryjard2,1,"Jardins de l'Ornay",46.646843,-1.441104,-1,0,OOY:SA:CTPlryjard,Europe/Paris,,OOY, +OOY:SP:lryjaul,1,"Jaulnières",46.6506,-1.432904,-1,0,OOY:SA:CTPlryjaul,Europe/Paris,,OOY, +OOY:SP:lryjaul2,1,"Jaulnières",46.650513,-1.432845,-1,0,OOY:SA:CTPlryjaul,Europe/Paris,,OOY, +OOY:SP:lryje23,1,"Jean XXIII",46.684738,-1.417001,-1,0,OOY:SA:CTPlryje23,Europe/Paris,,OOY, +OOY:SP:lryje232,1,"Jean XXIII",46.684795,-1.416914,-1,0,OOY:SA:CTPlryje23,Europe/Paris,,OOY, +OOY:SP:lryjmou,1,"Jean Moulin",46.676682,-1.440585,-1,0,OOY:SA:CTPlryjmou,Europe/Paris,,OOY, +OOY:SP:lryjmou2,1,"Jean Moulin",46.676632,-1.440399,-1,0,OOY:SA:CTPlryjmou,Europe/Paris,,OOY, +OOY:SP:lryjrei,1,"Jean Reiller",46.653984,-1.416554,-1,0,OOY:SA:CTPlryjrei,Europe/Paris,,OOY, +OOY:SP:lryjrei2,1,"Jean Reiller",46.654037,-1.416557,-1,0,OOY:SA:CTPlryjrei,Europe/Paris,,OOY, +OOY:SP:lrykleb,1,"Kléber",46.663452,-1.40698,-1,0,OOY:SA:CTPlrykleb,Europe/Paris,,OOY, +OOY:SP:lrykleb2,1,"Kléber",46.663376,-1.407053,-1,0,OOY:SA:CTPlrykleb,Europe/Paris,,OOY, +OOY:SP:lrykpl2,1,"Kepler",46.672321,-1.400945,-1,0,OOY:SA:CTPlrykpl2,Europe/Paris,,OOY, +OOY:SP:lrykple,1,"Kepler",46.672432,-1.400971,-1,0,OOY:SA:CTPlrykpl2,Europe/Paris,,OOY, +OOY:SP:lrylaen,1,"Laënnec",46.660789,-1.435997,-1,0,OOY:SA:CTPlrylaen,Europe/Paris,,OOY, +OOY:SP:lrylavo,1,"Lavoisier",46.663197,-1.443621,-1,0,OOY:SA:CTPlrylavo,Europe/Paris,,OOY, +OOY:SP:lrylavo2,1,"Lavoisier",46.663239,-1.443414,-1,0,OOY:SA:CTPlrylavo,Europe/Paris,,OOY, +OOY:SP:lrylbla,1,"Louis Blanc",46.676521,-1.435301,-1,0,OOY:SA:CTPlrylbla,Europe/Paris,,OOY, +OOY:SP:lrylbla2,1,"Louis Blanc",46.676529,-1.43517,-1,0,OOY:SA:CTPlrylbla,Europe/Paris,,OOY, +OOY:SP:lrylebo,1,"Lebon",46.692581,-1.432887,-1,0,OOY:SA:CTPlrylebo,Europe/Paris,,OOY, +OOY:SP:lryleru,1,"RU",46.678013,-1.406733,-1,0,OOY:SA:CTPlryleru,Europe/Paris,,OOY, +OOY:SP:lryleru2,1,"RU",46.67807,-1.406632,-1,0,OOY:SA:CTPlryleru,Europe/Paris,,OOY, +OOY:SP:lrylibe,1,"Liberté",46.662544,-1.434234,-1,0,OOY:SA:CTPlrylibe,Europe/Paris,,OOY, +OOY:SP:lrylibe2,1,"Liberté",46.662498,-1.434466,-1,0,OOY:SA:CTPlrylibe,Europe/Paris,,OOY, +OOY:SP:lrylieu,1,"Richelieu",46.654255,-1.409378,-1,0,OOY:SA:CTPlrylieu,Europe/Paris,,OOY, +OOY:SP:lrylieu2,1,"Richelieu",46.654255,-1.409378,-1,0,OOY:SA:CTPlrylieu,Europe/Paris,,OOY, +OOY:SP:lrylitt,1,"Littoral",46.649998,-1.438329,-1,0,OOY:SA:CTPlrylitt,Europe/Paris,,OOY, +OOY:SP:lrylitt2,1,"Littoral",46.650032,-1.438384,-1,0,OOY:SA:CTPlrylitt,Europe/Paris,,OOY, +OOY:SP:lrylmar,1,"Léon Martin",46.659424,-1.411672,-1,0,OOY:SA:CTPlrylmar,Europe/Paris,,OOY, +OOY:SP:lrylmar2,1,"Léon Martin",46.659599,-1.411488,-1,0,OOY:SA:CTPlrylmar,Europe/Paris,,OOY, +OOY:SP:lryloge,1,"Loge",46.667362,-1.450572,-1,0,OOY:SA:CTPlryloge,Europe/Paris,,OOY, +OOY:SP:lryloge2,1,"Loge",46.667309,-1.450568,-1,0,OOY:SA:CTPlryloge,Europe/Paris,,OOY, +OOY:SP:lrylune,1,"Lune",46.659996,-1.42083,-1,0,OOY:SA:CTPlrylune,Europe/Paris,,OOY, +OOY:SP:lrylune2,1,"Lune",46.660168,-1.419685,-1,0,OOY:SA:CTPlrylune,Europe/Paris,,OOY, +OOY:SP:lrylval,1,"Lucien Valéry",46.679073,-1.41967,-1,0,OOY:SA:CTPlrylval,Europe/Paris,,OOY, +OOY:SP:lrylval2,1,"Lucien Valéry",46.67902,-1.419666,-1,0,OOY:SA:CTPlrylval,Europe/Paris,,OOY, +OOY:SP:lrylyc,1,"Lycée Nature",46.664585,-1.381237,-1,0,OOY:SA:CTPlrylyc,Europe/Paris,,OOY, +OOY:SP:lrylyc2,1,"Lycée Nature",46.664387,-1.381197,-1,0,OOY:SA:CTPlrylyc,Europe/Paris,,OOY, +OOY:SP:lrymalb,1,"Malboire",46.673756,-1.402595,-1,0,OOY:SA:CTPlrymalb,Europe/Paris,,OOY, +OOY:SP:lrymalb2,1,"Malboire",46.673809,-1.402643,-1,0,OOY:SA:CTPlrymalb,Europe/Paris,,OOY, +OOY:SP:lrymane,1,"Manet",46.653675,-1.432804,-1,0,OOY:SA:CTPlrymane,Europe/Paris,,OOY, +OOY:SP:lrymane2,1,"Manet",46.65284,-1.433295,-1,0,OOY:SA:CTPlrymane,Europe/Paris,,OOY, +OOY:SP:lrymare,1,"Marengo",46.680439,-1.417305,-1,0,OOY:SA:CTPlrymare,Europe/Paris,,OOY, +OOY:SP:lrymare2,1,"Marengo",46.680508,-1.417414,-1,0,OOY:SA:CTPlrymare,Europe/Paris,,OOY, +OOY:SP:lrymaro2,1,"Marronnière",46.656609,-1.394127,-1,0,OOY:SA:CTPlrymaro2,Europe/Paris,,OOY, +OOY:SP:lrymaron,1,"Marronnière",46.656609,-1.394127,-1,0,OOY:SA:CTPlrymaro2,Europe/Paris,,OOY, +OOY:SP:lrymaur,1,"Maurois",46.661938,-1.400075,-1,0,OOY:SA:CTPlrymaur,Europe/Paris,,OOY, +OOY:SP:lrymaur2,1,"Maurois",46.661827,-1.400252,-1,0,OOY:SA:CTPlrymaur,Europe/Paris,,OOY, +OOY:SP:lrymazu,1,"Mazurelle",46.646767,-1.433003,-1,0,OOY:SA:CTPlrymazu,Europe/Paris,,OOY, +OOY:SP:lrymazu2,1,"Mazurelle",46.646812,-1.432797,-1,0,OOY:SA:CTPlrymazu,Europe/Paris,,OOY, +OOY:SP:lrymbou,1,"Mairie du Bourg",46.660969,-1.40414,-1,0,OOY:SA:CTPlrymbou,Europe/Paris,,OOY, +OOY:SP:lrymbou2,1,"Mairie du Bourg",46.66106,-1.404735,-1,0,OOY:SA:CTPlrymbou,Europe/Paris,,OOY, +OOY:SP:lrymend,1,"Pierre Mendès France",46.666607,-1.445128,-1,0,OOY:SA:CTPlrymend,Europe/Paris,,OOY, +OOY:SP:lrymend2,1,"Pierre Mendès France",46.666454,-1.445562,-1,0,OOY:SA:CTPlrymend,Europe/Paris,,OOY, +OOY:SP:lrymerl,1,"Préfet Merlet",46.676678,-1.447796,-1,0,OOY:SA:CTPlrymerl,Europe/Paris,,OOY, +OOY:SP:lrymerl2,1,"Préfet Merlet",46.676731,-1.447826,-1,0,OOY:SA:CTPlrymerl,Europe/Paris,,OOY, +OOY:SP:lrymerm,1,"Mermoz",46.678268,-1.432086,-1,0,OOY:SA:CTPlrymerm,Europe/Paris,,OOY, +OOY:SP:lrymerm2,1,"Mermoz",46.678341,-1.432038,-1,0,OOY:SA:CTPlrymerm,Europe/Paris,,OOY, +OOY:SP:lrymess,1,"Messaiaen",46.656227,-1.413881,-1,0,OOY:SA:CTPlrymess,Europe/Paris,,OOY, +OOY:SP:lrymleb,1,"Maurice Leblanc",46.668011,-1.397248,-1,0,OOY:SA:CTPlrymleb,Europe/Paris,,OOY, +OOY:SP:lrymleb2,1,"Maurice Leblanc",46.668118,-1.397621,-1,0,OOY:SA:CTPlrymleb,Europe/Paris,,OOY, +OOY:SP:lrymnla3,1,"Maison Neuve des Landes",46.688354,-1.452853,-1,0,OOY:SA:CTPlrymnla3,Europe/Paris,,OOY, +OOY:SP:lrymnla4,1,"Maison Neuve des Landes",46.688431,-1.453152,-1,0,OOY:SA:CTPlrymnla3,Europe/Paris,,OOY, +OOY:SP:lrymong,1,"Monge",46.68494,-1.433604,-1,0,OOY:SA:CTPlrymong,Europe/Paris,,OOY, +OOY:SP:lrymong2,1,"Monge",46.68504,-1.433446,-1,0,OOY:SA:CTPlrymong,Europe/Paris,,OOY, +OOY:SP:lrymore,1,"Moreau",46.667736,-1.409589,-1,0,OOY:SA:CTPlrymore,Europe/Paris,,OOY, +OOY:SP:lrymore2,1,"Moreau",46.667351,-1.408714,-1,0,OOY:SA:CTPlrymore,Europe/Paris,,OOY, +OOY:SP:lrymori,1,"Pont Morineau",46.668259,-1.435993,-1,0,OOY:SA:CTPlrymori,Europe/Paris,,OOY, +OOY:SP:lrymori2,1,"Pont Morineau",46.6684,-1.436055,-1,0,OOY:SA:CTPlrymori,Europe/Paris,,OOY, +OOY:SP:lrymoul,1,"Moulin de la Garde",46.65834,-1.431952,-1,0,OOY:SA:CTPlrymoul,Europe/Paris,,OOY, +OOY:SP:lrymoul2,1,"Moulin de la Garde",46.658405,-1.432192,-1,0,OOY:SA:CTPlrymoul,Europe/Paris,,OOY, +OOY:SP:lrymsta,1,"Mairie de St André",46.665348,-1.451569,-1,0,OOY:SA:CTPlrymsta,Europe/Paris,,OOY, +OOY:SP:lrymsta2,1,"Mairie de St André",46.665352,-1.451438,-1,0,OOY:SA:CTPlrymsta,Europe/Paris,,OOY, +OOY:SP:lrynewt2,1,"Newton",46.670521,-1.407098,-1,0,OOY:SA:CTPlrynewt2,Europe/Paris,,OOY, +OOY:SP:lrynewt3,1,"Newton",46.670521,-1.407098,-1,0,OOY:SA:CTPlrynewt2,Europe/Paris,,OOY, +OOY:SP:lryney,1,"Ney",46.674923,-1.428973,-1,0,OOY:SA:CTPlryney,Europe/Paris,,OOY, +OOY:SP:lryney2,1,"Ney",46.674965,-1.428767,-1,0,OOY:SA:CTPlryney,Europe/Paris,,OOY, +OOY:SP:lryomni,1,"Salle Omnisports",46.680927,-1.434208,-1,0,OOY:SA:CTPlryomni,Europe/Paris,,OOY, +OOY:SP:lryomni2,1,"Salle Omnisports",46.681,-1.434161,-1,0,OOY:SA:CTPlryomni,Europe/Paris,,OOY, +OOY:SP:lryorme,1,"Ormeaux",46.664032,-1.412044,-1,0,OOY:SA:CTPlryorme,Europe/Paris,,OOY, +OOY:SP:lryorme2,1,"Ormeaux",46.664124,-1.411998,-1,0,OOY:SA:CTPlryorme,Europe/Paris,,OOY, +OOY:SP:lryouda,1,"Oudairies",46.667416,-1.401969,-1,0,OOY:SA:CTPlryouda,Europe/Paris,,OOY, +OOY:SP:lryouda2,1,"Oudairies",46.667397,-1.402147,-1,0,OOY:SA:CTPlryouda,Europe/Paris,,OOY, +OOY:SP:lrypali2,1,"Palissy",46.693523,-1.429432,-1,0,OOY:SA:CTPlrypali2,Europe/Paris,,OOY, +OOY:SP:lrypaqu,1,"Pâquerettes",46.679386,-1.443497,-1,0,OOY:SA:CTPlrypaqu,Europe/Paris,,OOY, +OOY:SP:lrypaqu2,1,"Pâquerettes",46.679451,-1.444797,-1,0,OOY:SA:CTPlrypaqu,Europe/Paris,,OOY, +OOY:SP:lrypboi,1,"Pont Boileau",46.663494,-1.423154,-1,0,OOY:SA:CTPlrypboi,Europe/Paris,,OOY, +OOY:SP:lrypboi2,1,"Pont Boileau",46.663536,-1.422947,-1,0,OOY:SA:CTPlrypboi,Europe/Paris,,OOY, +OOY:SP:lrypero,1,"Peronnière",46.645874,-1.418664,-1,0,OOY:SA:CTPlrypero,Europe/Paris,,OOY, +OOY:SP:lrypero2,1,"Peronnière",46.645988,-1.418617,-1,0,OOY:SA:CTPlrypero,Europe/Paris,,OOY, +OOY:SP:lrypevi2,1,"Paul Emile Victor",46.696236,-1.426191,-1,0,OOY:SA:CTPlrypevi2,Europe/Paris,,OOY, +OOY:SP:lrypica,1,"Picasso",46.656116,-1.423726,-1,0,OOY:SA:CTPlrypica,Europe/Paris,,OOY, +OOY:SP:lrypica2,1,"Picasso",46.65612,-1.423596,-1,0,OOY:SA:CTPlrypica,Europe/Paris,,OOY, +OOY:SP:lryplai,1,"Plaine",46.651691,-1.446178,-1,0,OOY:SA:CTPlryplai,Europe/Paris,,OOY, +OOY:SP:lryplai2,1,"Plaine",46.651638,-1.446174,-1,0,OOY:SA:CTPlryplai,Europe/Paris,,OOY, +OOY:SP:lryples,1,"Plessis",46.665611,-1.446851,-1,0,OOY:SA:CTPlryples,Europe/Paris,,OOY, +OOY:SP:lryples2,1,"Plessis",46.665752,-1.446913,-1,0,OOY:SA:CTPlryples,Europe/Paris,,OOY, +OOY:SP:lrypoin,1,"Point du Jour",46.677402,-1.430546,-1,0,OOY:SA:CTPlrypoin,Europe/Paris,,OOY, +OOY:SP:lrypoin2,1,"Point du Jour",46.677807,-1.42975,-1,0,OOY:SA:CTPlrypoin,Europe/Paris,,OOY, +OOY:SP:lrypont,1,"Pont Rouge",46.670288,-1.414074,-1,0,OOY:SA:CTPlrypont,Europe/Paris,,OOY, +OOY:SP:lrypont2,1,"Pont Rouge",46.670498,-1.413932,-1,0,OOY:SA:CTPlrypont,Europe/Paris,,OOY, +OOY:SP:lryppat,1,"Piscine Patinoire",46.669247,-1.445849,-1,0,OOY:SA:CTPlryppat,Europe/Paris,,OOY, +OOY:SP:lryppat2,1,"Piscine Patinoire",46.669277,-1.446061,-1,0,OOY:SA:CTPlryppat,Europe/Paris,,OOY, +OOY:SP:lrypref,1,"Préfecture",46.667915,-1.425371,-1,0,OOY:SA:CTPlrypref,Europe/Paris,,OOY, +OOY:SP:lrypref2,1,"Préfecture",46.667938,-1.425242,-1,0,OOY:SA:CTPlrypref,Europe/Paris,,OOY, +OOY:SP:lryraci,1,"Racine",46.674633,-1.422986,-1,0,OOY:SA:CTPlryraci,Europe/Paris,,OOY, +OOY:SP:lryraci2,1,"Racine",46.674744,-1.422863,-1,0,OOY:SA:CTPlryraci,Europe/Paris,,OOY, +OOY:SP:lryrayn,1,"Raynal",46.667973,-1.455443,-1,0,OOY:SA:CTPlryrayn,Europe/Paris,,OOY, +OOY:SP:lryrayn2,1,"Raynal",46.667587,-1.454013,-1,0,OOY:SA:CTPlryrayn,Europe/Paris,,OOY, +OOY:SP:lryreau,1,"Réaumur",46.672138,-1.443196,-1,0,OOY:SA:CTPlryreau,Europe/Paris,,OOY, +OOY:SP:lryreau2,1,"Réaumur",46.672131,-1.443676,-1,0,OOY:SA:CTPlryreau,Europe/Paris,,OOY, +OOY:SP:lryreno,1,"Renoir",46.660778,-1.407475,-1,0,OOY:SA:CTPlryreno,Europe/Paris,,OOY, +OOY:SP:lryreno2,1,"Renoir",46.660904,-1.407484,-1,0,OOY:SA:CTPlryreno,Europe/Paris,,OOY, +OOY:SP:lryrep,1,"Mon Repos",46.683697,-1.445571,-1,0,OOY:SA:CTPlryrep,Europe/Paris,,OOY, +OOY:SP:lryrep2,1,"Mon Repos",46.68372,-1.445656,-1,0,OOY:SA:CTPlryrep,Europe/Paris,,OOY, +OOY:SP:lryrobe,1,"Francine Robert",46.66082,-1.455915,-1,0,OOY:SA:CTPlryrobe,Europe/Paris,,OOY, +OOY:SP:lryrobe2,1,"Francine Robert",46.660995,-1.455633,-1,0,OOY:SA:CTPlryrobe,Europe/Paris,,OOY, +OOY:SP:lryrobr2,1,"Robretières",46.685371,-1.422845,-1,0,OOY:SA:CTPlryrobr2,Europe/Paris,,OOY, +OOY:SP:lryroma,1,"Romanet",46.685516,-1.419346,-1,0,OOY:SA:CTPlryroma,Europe/Paris,,OOY, +OOY:SP:lryroma2,1,"Romanet",46.685608,-1.419326,-1,0,OOY:SA:CTPlryroma,Europe/Paris,,OOY, +OOY:SP:lryroui,1,"Rouillé",46.660557,-1.431884,-1,0,OOY:SA:CTPlryroui,Europe/Paris,,OOY, +OOY:SP:lryroui2,1,"Rouillé",46.660271,-1.431367,-1,0,OOY:SA:CTPlryroui,Europe/Paris,,OOY, +OOY:SP:lryrous,1,"Rousseau",46.665337,-1.424054,-1,0,OOY:SA:CTPlryrous,Europe/Paris,,OOY, +OOY:SP:lryrous2,1,"Rousseau",46.665379,-1.423926,-1,0,OOY:SA:CTPlryrous,Europe/Paris,,OOY, +OOY:SP:lryrout,1,"Gare Routière",46.674053,-1.419478,-1,0,OOY:SA:CTPlryrout,Europe/Paris,,OOY, +OOY:SP:lryrout2,1,"Gare Routière",46.674088,-1.419533,-1,0,OOY:SA:CTPlryrout,Europe/Paris,,OOY, +OOY:SP:lrysecu,1,"Sécurité Sociale",46.663105,-1.416637,-1,0,OOY:SA:CTPlrysecu,Europe/Paris,,OOY, +OOY:SP:lrysecu2,1,"Sécurité Sociale",46.663143,-1.416588,-1,0,OOY:SA:CTPlrysecu,Europe/Paris,,OOY, +OOY:SP:lrysimb,1,"Simbrandière",46.661274,-1.426199,-1,0,OOY:SA:CTPlrysimb,Europe/Paris,,OOY, +OOY:SP:lrysimb2,1,"Simbrandière",46.661259,-1.426071,-1,0,OOY:SA:CTPlrysimb,Europe/Paris,,OOY, +OOY:SP:lrysncf2,1,"Gare SNCF",46.672138,-1.434618,-1,0,OOY:SA:CTPlrysncf2,Europe/Paris,,OOY, +OOY:SP:lrysncf3,1,"Gare SNCF",46.671986,-1.434606,-1,0,OOY:SA:CTPlrysncf2,Europe/Paris,,OOY, +OOY:SP:lrysori,1,"Sorinière",46.64732,-1.437541,-1,0,OOY:SA:CTPlrysori,Europe/Paris,,OOY, +OOY:SP:lrysori2,1,"Sorinière",46.647282,-1.43759,-1,0,OOY:SA:CTPlrysori,Europe/Paris,,OOY, +OOY:SP:lrysoub,1,"Numa Soubeyran",46.684605,-1.444248,-1,0,OOY:SA:CTPlrysoub,Europe/Paris,,OOY, +OOY:SP:lrysoub2,1,"Numa Soubeyran",46.684608,-1.44434,-1,0,OOY:SA:CTPlrysoub,Europe/Paris,,OOY, +OOY:SP:lrysqua,1,"Square Lange",46.678921,-1.446723,-1,0,OOY:SA:CTPlrysqua,Europe/Paris,,OOY, +OOY:SP:lrysqua2,1,"Square Lange",46.678974,-1.446752,-1,0,OOY:SA:CTPlrysqua,Europe/Paris,,OOY, +OOY:SP:lrysuif,1,"Suifferie",46.665375,-1.419359,-1,0,OOY:SA:CTPlrysuif,Europe/Paris,,OOY, +OOY:SP:lrysuif2,1,"Suifferie",46.665432,-1.419337,-1,0,OOY:SA:CTPlrysuif,Europe/Paris,,OOY, +OOY:SP:lrytaba2,1,"Tabarly Terres Noires",46.689285,-1.448851,-1,0,OOY:SA:CTPlrytaba2,Europe/Paris,,OOY, +OOY:SP:lrytabar,1,"Tabarly Terres Noires",46.689186,-1.448814,-1,0,OOY:SA:CTPlrytaba2,Europe/Paris,,OOY, +OOY:SP:lryterr,1,"Terrasses",46.678635,-1.418566,-1,0,OOY:SA:CTPlryterr,Europe/Paris,,OOY, +OOY:SP:lryterr2,1,"Terrasses",46.678699,-1.418754,-1,0,OOY:SA:CTPlryterr,Europe/Paris,,OOY, +OOY:SP:lrytine,1,"Lamartine",46.667446,-1.399381,-1,0,OOY:SA:CTPlrytine,Europe/Paris,,OOY, +OOY:SP:lrytine2,1,"Lamartine",46.667412,-1.399326,-1,0,OOY:SA:CTPlrytine,Europe/Paris,,OOY, +OOY:SP:lrytort,1,"Tortat",46.657631,-1.428542,-1,0,OOY:SA:CTPlrytort,Europe/Paris,,OOY, +OOY:SP:lrytour,1,"Tournefou",46.646152,-1.434412,-1,0,OOY:SA:CTPlrytour,Europe/Paris,,OOY, +OOY:SP:lrytour2,1,"Tournefou",46.646008,-1.434428,-1,0,OOY:SA:CTPlrytour,Europe/Paris,,OOY, +OOY:SP:lrytris,1,"Flora Tristan",46.668106,-1.45673,-1,0,OOY:SA:CTPlrytris,Europe/Paris,,OOY, +OOY:SP:lrytris2,1,"Flora Tristan",46.667534,-1.45727,-1,0,OOY:SA:CTPlrytris,Europe/Paris,,OOY, +OOY:SP:lryturg,1,"Turgot",46.659016,-1.441981,-1,0,OOY:SA:CTPlryturg,Europe/Paris,,OOY, +OOY:SP:lryturg2,1,"Turgot",46.659092,-1.441934,-1,0,OOY:SA:CTPlryturg,Europe/Paris,,OOY, +OOY:SP:lryulm,1,"Ulm",46.682247,-1.428345,-1,0,OOY:SA:CTPlryulm,Europe/Paris,,OOY, +OOY:SP:lryulm2,1,"Ulm",46.682251,-1.428267,-1,0,OOY:SA:CTPlryulm,Europe/Paris,,OOY, +OOY:SP:lryvalm,1,"Valmy",46.639973,-1.402648,-1,0,OOY:SA:CTPlryvalm,Europe/Paris,,OOY, +OOY:SP:lryvalm2,1,"Valmy",46.640163,-1.40267,-1,0,OOY:SA:CTPlryvalm,Europe/Paris,,OOY, +OOY:SP:lryvaly,1,"Val d'Yon",46.669338,-1.418837,-1,0,OOY:SA:CTPlryvaly,Europe/Paris,,OOY, +OOY:SP:lryvaly2,1,"Val d'Yon",46.669308,-1.418625,-1,0,OOY:SA:CTPlryvaly,Europe/Paris,,OOY, +OOY:SP:lryvend,1,"Vendée",46.669685,-1.431778,-1,0,OOY:SA:CTPlryvend1,Europe/Paris,,OOY, +OOY:SP:lryvend1,1,"Vendée",46.669769,-1.431596,-1,0,OOY:SA:CTPlryvend1,Europe/Paris,,OOY, +OOY:SP:lryvend3,1,"Vendée",46.66922,-1.431333,-1,0,OOY:SA:CTPlryvend1,Europe/Paris,,OOY, +OOY:SP:lryvend4,1,"Vendée",46.669117,-1.431505,-1,0,OOY:SA:CTPlryvend1,Europe/Paris,,OOY, +OOY:SP:lryvern,1,"Jules Verne",46.663006,-1.425461,-1,0,OOY:SA:CTPlryvern,Europe/Paris,,OOY, +OOY:SP:lryvern2,1,"Jules Verne",46.662971,-1.425328,-1,0,OOY:SA:CTPlryvern,Europe/Paris,,OOY, +OOY:SP:lryvert,1,"Vallée Verte",46.658665,-1.425369,-1,0,OOY:SA:CTPlryvert,Europe/Paris,,OOY, +OOY:SP:lryvert2,1,"Vallée Verte",46.658722,-1.425268,-1,0,OOY:SA:CTPlryvert,Europe/Paris,,OOY, +OOY:SP:lryvig,1,"Vigée Lebrun",46.655334,-1.411101,-1,0,OOY:SA:CTPlryvig,Europe/Paris,,OOY, +OOY:SP:lryvign,1,"Vigne aux Roses",46.661041,-1.421876,-1,0,OOY:SA:CTPlryvign,Europe/Paris,,OOY, +OOY:SP:lryvign2,1,"Vigne aux Roses",46.661457,-1.421874,-1,0,OOY:SA:CTPlryvign,Europe/Paris,,OOY, +OOY:SP:lryvinc,1,"Léonard de Vinci",46.652134,-1.427007,-1,0,OOY:SA:CTPlryvinc,Europe/Paris,,OOY, +OOY:SP:lryvinc2,1,"Léonard de Vinci",46.652103,-1.426874,-1,0,OOY:SA:CTPlryvinc,Europe/Paris,,OOY, +OOY:SP:lryviol,1,"Viollet le Duc",46.654369,-1.425619,-1,0,OOY:SA:CTPlryviol,Europe/Paris,,OOY, +OOY:SP:lryviol2,1,"Viollet le Duc",46.654369,-1.425122,-1,0,OOY:SA:CTPlryviol,Europe/Paris,,OOY, +OOY:SP:lrywill,1,"Willy Brandt",46.65395,-1.413119,-1,0,OOY:SA:CTPlrywill,Europe/Paris,,OOY, +OOY:SP:lrywill2,1,"Willy Brandt",46.654358,-1.413207,-1,0,OOY:SA:CTPlrywill,Europe/Paris,,OOY, +OOY:SP:lryyole,1,"Jean Yole",46.680538,-1.430961,-1,0,OOY:SA:CTPlryyole,Europe/Paris,,OOY, +OOY:SP:lryyole2,1,"Jean Yole",46.68063,-1.430941,-1,0,OOY:SA:CTPlryyole,Europe/Paris,,OOY, +OOY:SP:lryzd,1,"Gustave Zédé",46.690048,-1.43508,-1,0,OOY:SA:CTPlryzd,Europe/Paris,,OOY, +OOY:SP:lryzd2,1,"Gustave Zédé",46.690201,-1.43458,-1,0,OOY:SA:CTPlryzd,Europe/Paris,,OOY, +OOY:SP:mlcbeau,1,"Parc de Beaupuy",46.712414,-1.431862,-1,0,OOY:SA:CTPmlcbeau,Europe/Paris,,OOY, +OOY:SP:mlcbeau2,1,"Parc de Beaupuy",46.712486,-1.431815,-1,0,OOY:SA:CTPmlcbeau,Europe/Paris,,OOY, +OOY:SP:mlccalm,1,"Calme",46.716442,-1.453402,-1,0,OOY:SA:CTPmlccalm,Europe/Paris,,OOY, +OOY:SP:mlccalm2,1,"Calme",46.716408,-1.453534,-1,0,OOY:SA:CTPmlccalm,Europe/Paris,,OOY, +OOY:SP:mlccent,1,"Mouilleron Centre",46.719307,-1.458968,-1,0,OOY:SA:CTPmlccent,Europe/Paris,,OOY, +OOY:SP:mlccent2,1,"Mouilleron Centre",46.719521,-1.458917,-1,0,OOY:SA:CTPmlccent,Europe/Paris,,OOY, +OOY:SP:mlcchau,1,"Chaumes",46.721863,-1.463313,-1,0,OOY:SA:CTPmlcchau,Europe/Paris,,OOY, +OOY:SP:mlcchau2,1,"Chaumes",46.722027,-1.463259,-1,0,OOY:SA:CTPmlcchau,Europe/Paris,,OOY, +OOY:SP:mlcchen3,1,"Chênes",46.717537,-1.450385,-1,0,OOY:SA:CTPmlcchen3,Europe/Paris,,OOY, +OOY:SP:mlcchen4,1,"Chênes",46.717445,-1.450382,-1,0,OOY:SA:CTPmlcchen3,Europe/Paris,,OOY, +OOY:SP:mlcetan,1,"Etangs",46.727047,-1.464319,-1,0,OOY:SA:CTPmlcetan,Europe/Paris,,OOY, +OOY:SP:mlcvend,1,"Vendespace",46.711224,-1.430758,-1,0,OOY:SA:CTPmlcvend,Europe/Paris,,OOY, +OOY:SP:mlcvend2,1,"Vendespace",46.711227,-1.430679,-1,0,OOY:SA:CTPmlcvend,Europe/Paris,,OOY, +OOY:SP:venbeau2,1,"Beauséjour",46.683884,-1.507538,-1,0,OOY:SA:CTPvenbeau2,Europe/Paris,,OOY, +OOY:SP:venbeaus,1,"Beauséjour",46.683792,-1.50761,-1,0,OOY:SA:CTPvenbeau2,Europe/Paris,,OOY, +OOY:SP:venguyo,1,"Guyon",46.68483,-1.511571,-1,0,OOY:SA:CTPvenguyo,Europe/Paris,,OOY, +OOY:SP:venguyo2,1,"Guyon",46.684925,-1.511473,-1,0,OOY:SA:CTPvenguyo,Europe/Paris,,OOY, +OOY:SP:venmerc,1,"Mercury",46.690342,-1.51538,-1,0,OOY:SA:CTPvenmerc,Europe/Paris,,OOY, +OOY:SP:venmerc2,1,"Mercury",46.690342,-1.51538,-1,0,OOY:SA:CTPvenmerc,Europe/Paris,,OOY, +OOY:SP:venvfle,1,"Val Fleuri",46.683788,-1.514729,-1,0,OOY:SA:CTPvenvfle,Europe/Paris,,OOY, +OPL:SP:00052-A,1,"Bosselas",47.421,-2.174724,-1,0,OPL:SA:AST-00052-A-00052-R,Europe/Paris,0,OPL, +OPL:SP:00052-R,1,"Bosselas",47.421156,-2.174846,-1,0,OPL:SA:AST-00052-A-00052-R,Europe/Paris,0,OPL, +OPL:SP:00054-A,1,"Plaisance",47.412051,-2.167931,-1,0,OPL:SA:AST-00054-A-00054-R,Europe/Paris,0,OPL, +OPL:SP:00054-R,1,"Plaisance",47.411681,-2.168212,-1,0,OPL:SA:AST-00054-A-00054-R,Europe/Paris,0,OPL, +OPL:SP:00083-A,1,"La Croix d'Haut",47.500534,-2.132779,-1,0,OPL:SA:AST-00083-A-00083-R,Europe/Paris,0,OPL, +OPL:SP:00083-R,1,"La Croix d'Haut",47.500705,-2.132283,-1,0,OPL:SA:AST-00083-A-00083-R,Europe/Paris,0,OPL, +OPL:SP:00105-A,1,"Calvaire",47.442706,-2.134949,-1,0,OPL:SA:AST-00105-A-00105-R,Europe/Paris,0,OPL, +OPL:SP:00105-R,1,"Calvaire",47.442446,-2.134999,-1,0,OPL:SA:AST-00105-A-00105-R,Europe/Paris,0,OPL, +OPL:SP:00119-A,1,"Bas Callac",47.42424,-2.142911,-1,0,OPL:SA:AST-00119-A-00119-R,Europe/Paris,0,OPL, +OPL:SP:00119-R,1,"Bas Callac",47.424173,-2.141054,-1,0,OPL:SA:AST-00119-A-00119-R,Europe/Paris,0,OPL, +OPL:SP:00120-A,1,"Callac",47.42441,-2.139124,-1,0,OPL:SA:AST-00120-A-00120-R,Europe/Paris,0,OPL, +OPL:SP:00120-R,1,"Callac",47.424401,-2.13919,-1,0,OPL:SA:AST-00120-A-00120-R,Europe/Paris,0,OPL, +OPL:SP:00126-A,1,"Piolais",47.421757,-2.151436,-1,0,OPL:SA:AST-00126-A-00126-R,Europe/Paris,0,OPL, +OPL:SP:00126-R,1,"Piolais",47.42175,-2.15114,-1,0,OPL:SA:AST-00126-A-00126-R,Europe/Paris,0,OPL, +OPL:SP:00140-A,1,"La Ratelais",47.404819,-2.156954,-1,0,OPL:SA:AST-00140-A-00140-R,Europe/Paris,0,OPL, +OPL:SP:00140-R,1,"La Ratelais",47.405185,-2.157208,-1,0,OPL:SA:AST-00140-A-00140-R,Europe/Paris,0,OPL, +OPL:SP:00173-A,1,"Place de Gaulle",47.326832,-2.155627,-1,0,OPL:SA:AST-00173-A-00173-R,Europe/Paris,0,OPL, +OPL:SP:00173-R,1,"Place de Gaulle",47.326647,-2.156516,-1,0,OPL:SA:AST-00173-A-00173-R,Europe/Paris,0,OPL, +OPL:SP:00193-A,1,"Gare",47.550709,-2.073189,-1,0,OPL:SA:AST-00193-A-00193-R,Europe/Paris,0,OPL, +OPL:SP:00193-R,1,"Gare",47.550354,-2.072744,-1,0,OPL:SA:AST-00193-A-00193-R,Europe/Paris,0,OPL, +OPL:SP:00195-A,1,"Les Landes",47.548062,-2.077636,-1,0,OPL:SA:AST-00195-A-00195-R,Europe/Paris,2,OPL, +OPL:SP:00195-R,1,"Les Landes",47.548068,-2.077625,-1,0,OPL:SA:AST-00195-A-00195-R,Europe/Paris,2,OPL, +OPL:SP:00208-A,1,"La Gouarais",47.519069,-2.109956,-1,0,OPL:SA:AST-00208-A-00208-R,Europe/Paris,0,OPL, +OPL:SP:00208-R,1,"La Gouarais",47.518921,-2.109922,-1,0,OPL:SA:AST-00208-A-00208-R,Europe/Paris,0,OPL, +OPL:SP:00256-A,1,"La Noé",47.451818,-2.085146,-1,0,OPL:SA:AST-00256-A-00256-R,Europe/Paris,0,OPL, +OPL:SP:00256-R,1,"La Noé",47.452221,-2.084588,-1,0,OPL:SA:AST-00256-A-00256-R,Europe/Paris,0,OPL, +OPL:SP:00268-A,1,"Croix de Mission",47.431057,-2.084773,-1,0,OPL:SA:AST-00268-A-00268-R,Europe/Paris,0,OPL, +OPL:SP:00268-R,1,"Croix de Mission",47.431213,-2.084547,-1,0,OPL:SA:AST-00268-A-00268-R,Europe/Paris,0,OPL, +OPL:SP:00272-A,1,"La Herviais",47.427793,-2.110718,-1,0,OPL:SA:AST-00272-A-00272-R,Europe/Paris,0,OPL, +OPL:SP:00272-R,1,"La Herviais",47.42759,-2.110723,-1,0,OPL:SA:AST-00272-A-00272-R,Europe/Paris,0,OPL, +OPL:SP:00290-A,1,"ZA Harrois",47.404636,-2.09057,-1,0,OPL:SA:AST-00290-A-00290-R,Europe/Paris,0,OPL, +OPL:SP:00290-R,1,"ZA Harrois",47.404756,-2.090392,-1,0,OPL:SA:AST-00290-A-00290-R,Europe/Paris,0,OPL, +OPL:SP:00293-A,1,"Centre",47.397866,-2.091418,-1,0,OPL:SA:AST-00293-A-00293-R,Europe/Paris,0,OPL, +OPL:SP:00293-R,1,"Centre",47.397928,-2.091265,-1,0,OPL:SA:AST-00293-A-00293-R,Europe/Paris,0,OPL, +OPL:SP:00303-A,1,"Moulin Neuf",47.388393,-2.093209,-1,0,OPL:SA:AST-00303-A-00303-R,Europe/Paris,2,OPL, +OPL:SP:00303-R,1,"Moulin Neuf",47.387886,-2.093055,-1,0,OPL:SA:AST-00303-A-00303-R,Europe/Paris,2,OPL, +OPL:SP:00324-A,1,"La Duchée",47.362879,-2.098728,-1,0,OPL:SA:AST-00324-A-00324-R,Europe/Paris,0,OPL, +OPL:SP:00324-R,1,"La Duchée",47.362945,-2.09855,-1,0,OPL:SA:AST-00324-A-00324-R,Europe/Paris,0,OPL, +OPL:SP:00338-A,1,"La Pommeraie",47.353077,-2.105172,-1,0,OPL:SA:AST-00338-A-00338-R,Europe/Paris,0,OPL, +OPL:SP:00338-R,1,"La Pommeraie",47.353249,-2.105092,-1,0,OPL:SA:AST-00338-A-00338-R,Europe/Paris,0,OPL, +OPL:SP:00344-A,1,"Six Croix",47.339777,-2.093346,-1,0,OPL:SA:AST-00344-A-00344-R,Europe/Paris,0,OPL, +OPL:SP:00344-R,1,"Six Croix",47.339777,-2.093313,-1,0,OPL:SA:AST-00344-A-00344-R,Europe/Paris,0,OPL, +OPL:SP:00421-A,1,"Gourap",47.506523,-2.041825,-1,0,OPL:SA:AST-00421-A-00421-R,Europe/Paris,0,OPL, +OPL:SP:00421-R,1,"Gourap",47.506572,-2.041638,-1,0,OPL:SA:AST-00421-A-00421-R,Europe/Paris,0,OPL, +OPL:SP:00435-A,1,"Ferme École",47.486525,-2.051481,-1,0,OPL:SA:AST-00435-A-00435-R,Europe/Paris,0,OPL, +OPL:SP:00435-R,1,"Ferme École",47.48698,-2.051071,-1,0,OPL:SA:AST-00435-A-00435-R,Europe/Paris,0,OPL, +OPL:SP:00440-A,1,"La Vallée du Bourg",47.472601,-2.062202,-1,0,OPL:SA:AST-00440-A-00440-R,Europe/Paris,0,OPL, +OPL:SP:00440-R,1,"La Vallée du Bourg",47.472674,-2.061848,-1,0,OPL:SA:AST-00440-A-00440-R,Europe/Paris,2,OPL, +OPL:SP:00442-A,1,"Beaubois",47.465645,-2.071318,-1,0,OPL:SA:AST-00442-A-00442-R,Europe/Paris,0,OPL, +OPL:SP:00442-R,1,"Beaubois",47.466145,-2.070621,-1,0,OPL:SA:AST-00442-A-00442-R,Europe/Paris,0,OPL, +OPL:SP:00453-A,1,"Saint Lomer",47.447126,-2.028881,-1,0,OPL:SA:AST-00453-A-00453-R,Europe/Paris,0,OPL, +OPL:SP:00453-R,1,"Saint Lomer",47.44644,-2.028913,-1,0,OPL:SA:AST-00453-A-00453-R,Europe/Paris,0,OPL, +OPL:SP:00458-A,1,"Le Binar",47.440714,-2.043162,-1,0,OPL:SA:AST-00458-A-00458-R,Europe/Paris,0,OPL, +OPL:SP:00458-R,1,"Le Binar",47.4405,-2.043322,-1,0,OPL:SA:AST-00458-A-00458-R,Europe/Paris,0,OPL, +OPL:SP:00591-A,1,"La Turcaudais",47.462141,-1.989761,-1,0,OPL:SA:AST-00591-A-00591-R,Europe/Paris,0,OPL, +OPL:SP:00591-R,1,"La Turcaudais",47.462137,-1.989484,-1,0,OPL:SA:AST-00591-A-00591-R,Europe/Paris,0,OPL, +OPL:SP:00593-A,1,"Les 4 Routes",47.460701,-1.997588,-1,0,OPL:SA:AST-00593-A-00593-R,Europe/Paris,0,OPL, +OPL:SP:00593-R,1,"Les 4 Routes",47.460654,-1.996898,-1,0,OPL:SA:AST-00593-A-00593-R,Europe/Paris,0,OPL, +OPL:SP:00598-A,1,"Eglise",47.45961,-2.006323,-1,0,OPL:SA:AST-00598-A-00598-R,Europe/Paris,0,OPL, +OPL:SP:00598-R,1,"Eglise",47.459512,-2.006023,-1,0,OPL:SA:AST-00598-A-00598-R,Europe/Paris,0,OPL, +OPL:SP:00650-A,1,"Rue Courtil Ballu",47.362571,-2.010302,-1,0,OPL:SA:AST-00650-A-00650-R,Europe/Paris,0,OPL, +OPL:SP:00650-R,1,"Rue Courtil Ballu",47.362574,-2.010279,-1,0,OPL:SA:AST-00650-A-00650-R,Europe/Paris,0,OPL, +OPL:SP:00727-A,1,"Église",47.41274,-1.969146,-1,0,OPL:SA:AST-00727-A-00727-R,Europe/Paris,0,OPL, +OPL:SP:00727-R,1,"Église",47.412729,-1.969156,-1,0,OPL:SA:AST-00727-A-00727-R,Europe/Paris,0,OPL, +OPL:SP:00749-A,1,"Gare Routière Beausoleil",47.36167,-1.943839,-1,0,OPL:SA:AST-00749-A-00749-R,Europe/Paris,2,OPL, +OPL:SP:00749-R,1,"Gare Routière Beausoleil",47.36167,-1.943854,-1,0,OPL:SA:AST-00749-A-00749-R,Europe/Paris,2,OPL, +OPL:SP:00751-A,1,"La Pendière",47.464164,-1.942993,-1,0,OPL:SA:AST-00751-A-00751-R,Europe/Paris,0,OPL, +OPL:SP:00751-R,1,"La Pendière",47.464168,-1.942813,-1,0,OPL:SA:AST-00751-A-00751-R,Europe/Paris,0,OPL, +OPL:SP:00756-A,1,"Moulin de la Justice",47.519201,-1.963861,-1,0,OPL:SA:AST-00756-A-00756-R,Europe/Paris,0,OPL, +OPL:SP:00756-R,1,"Moulin de la Justice",47.519266,-1.964034,-1,0,OPL:SA:AST-00756-A-00756-R,Europe/Paris,0,OPL, +OPL:SP:00821-A,1,"Pont David",47.367316,-1.412609,-1,0,OPL:SA:AST-00821-A-00821-R,Europe/Paris,0,OPL, +OPL:SP:00821-R,1,"Pont David",47.367261,-1.41248,-1,0,OPL:SA:AST-00821-A-00821-R,Europe/Paris,0,OPL, +OPL:SP:00849-A,1,"Tacon",47.416229,-1.2506,-1,0,OPL:SA:AST-00849-A-00849-R,Europe/Paris,0,OPL, +OPL:SP:00849-R,1,"Tacon",47.416388,-1.249889,-1,0,OPL:SA:AST-00849-A-00849-R,Europe/Paris,0,OPL, +OPL:SP:00866-A,1,"Bel Air",47.407166,-1.265722,-1,0,OPL:SA:AST-00866-A-00866-R,Europe/Paris,0,OPL, +OPL:SP:00866-R,1,"Bel Air",47.407218,-1.265405,-1,0,OPL:SA:AST-00866-A-00866-R,Europe/Paris,0,OPL, +OPL:SP:00898-A,1,"Église",47.390903,-1.293261,-1,0,OPL:SA:AST-00898-A-00898-R,Europe/Paris,0,OPL, +OPL:SP:00898-R,1,"Église",47.39074,-1.293281,-1,0,OPL:SA:AST-00898-A-00898-R,Europe/Paris,0,OPL, +OPL:SP:00927-A,1,"La Métellerie",47.372565,-1.31902,-1,0,OPL:SA:AST-00927-A-00927-R,Europe/Paris,0,OPL, +OPL:SP:00927-R,1,"La Métellerie",47.37249,-1.318925,-1,0,OPL:SA:AST-00927-A-00927-R,Europe/Paris,0,OPL, +OPL:SP:00932-A,1,"La Poussaudière",47.367261,-1.324262,-1,0,OPL:SA:AST-00932-A-00932-R,Europe/Paris,0,OPL, +OPL:SP:00932-R,1,"La Poussaudière",47.367283,-1.324044,-1,0,OPL:SA:AST-00932-A-00932-R,Europe/Paris,0,OPL, +OPL:SP:00955-A,1,"La Savariais",47.333091,-1.343183,-1,0,OPL:SA:AST-00955-A-00955-R,Europe/Paris,0,OPL, +OPL:SP:00955-R,1,"La Savariais",47.333093,-1.343205,-1,0,OPL:SA:AST-00955-A-00955-R,Europe/Paris,0,OPL, +OPL:SP:00961-A,1,"La Joie",47.339668,-1.348943,-1,0,OPL:SA:AST-00961-A-00961-R,Europe/Paris,0,OPL, +OPL:SP:00961-R,1,"La Joie",47.339858,-1.349271,-1,0,OPL:SA:AST-00961-A-00961-R,Europe/Paris,0,OPL, +OPL:SP:00962-A,1,"Place Saint Méen",47.319255,-1.347356,-1,0,OPL:SA:AST-00962-A-00962-R,Europe/Paris,0,OPL, +OPL:SP:00962-R,1,"Place Saint Méen",47.319257,-1.347372,-1,0,OPL:SA:AST-00962-A-00962-R,Europe/Paris,0,OPL, +OPL:SP:01244-A,1,"Rue Neuve",47.52361,-1.182801,-1,0,OPL:SA:AST-01244-A-01244-R,Europe/Paris,2,OPL, +OPL:SP:01244-R,1,"Rue Neuve",47.523537,-1.182595,-1,0,OPL:SA:AST-01244-A-01244-R,Europe/Paris,2,OPL, +OPL:SP:01413-A,1,"Champ de Foire",47.519617,-1.296201,-1,0,OPL:SA:AST-01413-A-01413-R,Europe/Paris,0,OPL, +OPL:SP:01413-R,1,"Champ de Foire",47.519612,-1.29618,-1,0,OPL:SA:AST-01413-A-01413-R,Europe/Paris,0,OPL, +OPL:SP:01472-A,1,"La Chapelle Breton",47.449115,-1.327212,-1,0,OPL:SA:AST-01472-A-01472-R,Europe/Paris,0,OPL, +OPL:SP:01472-R,1,"La Chapelle Breton",47.448788,-1.325845,-1,0,OPL:SA:AST-01472-A-01472-R,Europe/Paris,0,OPL, +OPL:SP:01474-A,1,"Le Boulay",47.430415,-1.332642,-1,0,OPL:SA:AST-01474-A-01474-R,Europe/Paris,0,OPL, +OPL:SP:01474-R,1,"Le Boulay",47.43031,-1.332381,-1,0,OPL:SA:AST-01474-A-01474-R,Europe/Paris,0,OPL, +OPL:SP:01495-A,1,"Rue des Genêts",47.476954,-1.375196,-1,0,OPL:SA:AST-01495-A-01495-R,Europe/Paris,0,OPL, +OPL:SP:01495-R,1,"Rue des Genêts",47.476851,-1.375202,-1,0,OPL:SA:AST-01495-A-01495-R,Europe/Paris,0,OPL, +OPL:SP:01533-A,1,"Le Grand Patis",47.37531,-1.450495,-1,0,OPL:SA:AST-01533-A-01533-R,Europe/Paris,0,OPL, +OPL:SP:01533-R,1,"Le Grand Patis",47.375299,-1.450359,-1,0,OPL:SA:AST-01533-A-01533-R,Europe/Paris,0,OPL, +OPL:SP:01535-A,1,"Place de l'Église",47.395797,-1.454931,-1,0,OPL:SA:AST-01535-A-01535-R,Europe/Paris,0,OPL, +OPL:SP:01535-R,1,"Place de l'Église",47.395072,-1.45472,-1,0,OPL:SA:AST-01535-A-01535-R,Europe/Paris,0,OPL, +OPL:SP:01539-A,1,"La Marchanderie",47.437512,-1.460374,-1,0,OPL:SA:AST-01539-A-01539-R,Europe/Paris,0,OPL, +OPL:SP:01539-R,1,"La Marchanderie",47.437496,-1.459774,-1,0,OPL:SA:AST-01539-A-01539-R,Europe/Paris,0,OPL, +OPL:SP:01564-A,1,"Église",47.485353,-1.239243,-1,0,OPL:SA:AST-01564-A-01564-R,Europe/Paris,0,OPL, +OPL:SP:01564-R,1,"Église",47.48535,-1.239269,-1,0,OPL:SA:AST-01564-A-01564-R,Europe/Paris,0,OPL, +OPL:SP:01673-A,1,"Stade",47.455993,-1.162262,-1,0,OPL:SA:AST-01673-A-01673-R,Europe/Paris,0,OPL, +OPL:SP:01673-R,1,"Stade",47.456016,-1.162251,-1,0,OPL:SA:AST-01673-A-01673-R,Europe/Paris,0,OPL, +OPL:SP:02273-A,1,"Mairie",47.68706,-1.734651,-1,0,OPL:SA:AST-02273-A-02273-R,Europe/Paris,0,OPL, +OPL:SP:02273-R,1,"Mairie",47.687131,-1.735021,-1,0,OPL:SA:AST-02273-A-02273-R,Europe/Paris,0,OPL, +OPL:SP:02283-A,1,"Transformateur",47.683955,-1.683955,-1,0,OPL:SA:AST-02283-A-02283-R,Europe/Paris,0,OPL, +OPL:SP:02283-R,1,"Transformateur",47.684708,-1.684428,-1,0,OPL:SA:AST-02283-A-02283-R,Europe/Paris,0,OPL, +OPL:SP:02325-A,1,"Bibliothèque",47.624908,-1.7514,-1,0,OPL:SA:AST-02325-A-02325-R,Europe/Paris,0,OPL, +OPL:SP:02325-R,1,"Bibliothèque",47.624979,-1.751413,-1,0,OPL:SA:AST-02325-A-02325-R,Europe/Paris,0,OPL, +OPL:SP:02411-A,1,"Rue du Stade",47.553986,-1.700716,-1,0,OPL:SA:AST-02411-A-02411-R,Europe/Paris,0,OPL, +OPL:SP:02411-R,1,"Rue du Stade",47.553809,-1.700511,-1,0,OPL:SA:AST-02411-A-02411-R,Europe/Paris,0,OPL, +OPL:SP:02446-A,1,"Mairie",47.52025,-1.748351,-1,0,OPL:SA:AST-02446-A-02446-R,Europe/Paris,0,OPL, +OPL:SP:02446-R,1,"Mairie",47.520237,-1.748269,-1,0,OPL:SA:AST-02446-A-02446-R,Europe/Paris,0,OPL, +OPL:SP:02457-A,1,"Place Jollan de Clerville",47.475391,-1.761543,-1,0,OPL:SA:AST-02457-A-02457-R,Europe/Paris,2,OPL, +OPL:SP:02457-R,1,"Place Jollan de Clerville",47.475395,-1.761535,-1,0,OPL:SA:AST-02457-A-02457-R,Europe/Paris,2,OPL, +OPL:SP:02593-A,1,"Bellevue",47.62562,-1.643932,-1,0,OPL:SA:AST-02593-A-02593-R,Europe/Paris,0,OPL, +OPL:SP:02593-A1,1,"Bellevue VC5",47.62621,-1.644881,-1,0,OPL:SA:AST-02593-A1,Europe/Paris,0,OPL, +OPL:SP:02593-R,1,"Bellevue",47.626518,-1.64299,-1,0,OPL:SA:AST-02593-A-02593-R,Europe/Paris,0,OPL, +OPL:SP:02624-A,1,"Rue Isaie Rabu",47.597685,-1.680538,-1,0,OPL:SA:AST-02624-A-02624-R,Europe/Paris,2,OPL, +OPL:SP:02624-R,1,"Rue Isaie Rabu",47.597752,-1.680346,-1,0,OPL:SA:AST-02624-A-02624-R,Europe/Paris,2,OPL, +OPL:SP:02640-A,1,"Champ de Foire",47.566877,-1.62554,-1,0,OPL:SA:AST-02640-A-02640-R,Europe/Paris,0,OPL, +OPL:SP:02640-R,1,"Champ de Foire",47.567172,-1.625442,-1,0,OPL:SA:AST-02640-A-02640-R,Europe/Paris,0,OPL, +OPL:SP:02672-A1,1,"Église",47.526537,-1.666976,-1,0,OPL:SA:AST-02672-A1-02672-R1,Europe/Paris,0,OPL, +OPL:SP:02672-R1,1,"Église",47.526804,-1.667165,-1,0,OPL:SA:AST-02672-A1-02672-R1,Europe/Paris,0,OPL, +OPL:SP:026721-A,1,"L'océan",47.526697,-1.668242,-1,0,OPL:SA:AST-026721-A-026721-R,Europe/Paris,0,OPL, +OPL:SP:026721-R,1,"L'océan",47.527377,-1.666655,-1,0,OPL:SA:AST-026721-A-026721-R,Europe/Paris,0,OPL, +OPL:SP:02729-A,1,"Église",47.466836,-1.671971,-1,0,OPL:SA:AST-02729-A-02729-R,Europe/Paris,0,OPL, +OPL:SP:02729-R,1,"Église",47.466843,-1.671969,-1,0,OPL:SA:AST-02729-A-02729-R,Europe/Paris,0,OPL, +OPL:SP:02996-A,1,"Route d'Abbaretz",47.522769,-1.61488,-1,0,OPL:SA:AST-02996-A-02996-R,Europe/Paris,0,OPL, +OPL:SP:02996-R,1,"Route d'Abbaretz",47.522769,-1.614876,-1,0,OPL:SA:AST-02996-A-02996-R,Europe/Paris,0,OPL, +OPL:SP:03221-A,1,"Rue du Don",47.620282,-1.537313,-1,0,OPL:SA:AST-03221-A-03221-R,Europe/Paris,0,OPL, +OPL:SP:03221-R,1,"Rue du Don",47.621101,-1.536754,-1,0,OPL:SA:AST-03221-A-03221-R,Europe/Paris,0,OPL, +OPL:SP:03509-A,1,"Gare SNCF",47.66397,-1.498758,-1,0,OPL:SA:AST-03509-A-03509-R,Europe/Paris,0,OPL, +OPL:SP:03509-R,1,"Gare SNCF",47.663963,-1.498472,-1,0,OPL:SA:AST-03509-A-03509-R,Europe/Paris,0,OPL, +OPL:SP:03523-A,1,"Mairie",47.65564,-1.498643,-1,0,OPL:SA:AST-03523-A-03523-R,Europe/Paris,0,OPL, +OPL:SP:03523-R,1,"Mairie",47.65556,-1.499032,-1,0,OPL:SA:AST-03523-A-03523-R,Europe/Paris,0,OPL, +OPL:SP:03635-A,1,"Rue du Bocage",47.496016,-1.419603,-1,0,OPL:SA:AST-03635-A-03635-R,Europe/Paris,0,OPL, +OPL:SP:03635-R,1,"Rue du Bocage",47.49597,-1.419036,-1,0,OPL:SA:AST-03635-A-03635-R,Europe/Paris,0,OPL, +OPL:SP:03732,1,"Église de Bere",47.723492,-1.386815,-1,0,OPL:SA:AST-03732,Europe/Paris,0,OPL, +OPL:SP:03757-A,1,"Gare",47.683241,-1.446213,-1,0,OPL:SA:AST-03757-A-03757-R,Europe/Paris,0,OPL, +OPL:SP:03757-R,1,"Gare",47.683178,-1.445977,-1,0,OPL:SA:AST-03757-A-03757-R,Europe/Paris,0,OPL, +OPL:SP:03869,1,"Rue de Verdun",47.725206,-1.384485,-1,0,OPL:SA:AST-03869,Europe/Paris,0,OPL, +OPL:SP:03893,1,"Acacias",47.716837,-1.363349,-1,0,OPL:SA:AST-03893,Europe/Paris,0,OPL, +OPL:SP:03961,1,"Ville aux Roses",47.711984,-1.381717,-1,0,OPL:SA:AST-03961,Europe/Paris,0,OPL, +OPL:SP:04115,1,"HLM Vitré",47.723439,-1.37106,-1,0,OPL:SA:AST-04115,Europe/Paris,0,OPL, +OPL:SP:04120,1,"République",47.717647,-1.382516,-1,0,OPL:SA:AST-04120,Europe/Paris,0,OPL, +OPL:SP:04124,1,"C. M. des Sports",47.7132,-1.379453,-1,0,OPL:SA:AST-04124,Europe/Paris,0,OPL, +OPL:SP:04128,1,"Route d'Ancenis",47.712115,-1.371806,-1,0,OPL:SA:AST-04128,Europe/Paris,0,OPL, +OPL:SP:04129,1,"Cité Paul Huard",47.712298,-1.375055,-1,0,OPL:SA:AST-04129,Europe/Paris,0,OPL, +OPL:SP:04132,1,"Montherlant",47.712629,-1.364083,-1,0,OPL:SA:AST-04132,Europe/Paris,0,OPL, +OPL:SP:04135-A,1,"La Ville en Bois",47.705832,-1.382917,-1,0,OPL:SA:AST-04135-A-04135-R,Europe/Paris,0,OPL, +OPL:SP:04135-R,1,"La Ville en Bois",47.706094,-1.382756,-1,0,OPL:SA:AST-04135-A-04135-R,Europe/Paris,0,OPL, +OPL:SP:04368-A,1,"Haut Bourg",47.461918,-1.279193,-1,0,OPL:SA:AST-04368-A-04368-R,Europe/Paris,0,OPL, +OPL:SP:04368-R,1,"Haut Bourg",47.461827,-1.279228,-1,0,OPL:SA:AST-04368-A-04368-R,Europe/Paris,0,OPL, +OPL:SP:04508-A,1,"Église",47.527724,-1.237242,-1,0,OPL:SA:AST-04508-A-04508-R,Europe/Paris,0,OPL, +OPL:SP:04508-R,1,"Église",47.52768,-1.236992,-1,0,OPL:SA:AST-04508-A-04508-R,Europe/Paris,0,OPL, +OPL:SP:04750-A,1,"Chaussée le Retz",47.194049,-1.851936,-1,0,OPL:SA:AST-04750-A-04750-R,Europe/Paris,0,OPL, +OPL:SP:04750-R,1,"Chaussée le Retz",47.194363,-1.852632,-1,0,OPL:SA:AST-04750-A-04750-R,Europe/Paris,0,OPL, +OPL:SP:04759-A,1,"Mairie",47.199682,-1.877414,-1,0,OPL:SA:AST-04759-A-04759-R,Europe/Paris,2,OPL, +OPL:SP:04759-R,1,"Mairie",47.199928,-1.877225,-1,0,OPL:SA:AST-04759-A-04759-R,Europe/Paris,2,OPL, +OPL:SP:04872-A,1,"Gendarmerie",47.043958,-1.949679,-1,0,OPL:SA:AST-04872-A-04872-R,Europe/Paris,0,OPL, +OPL:SP:04872-R,1,"Gendarmerie",47.044149,-1.949585,-1,0,OPL:SA:AST-04872-A-04872-R,Europe/Paris,0,OPL, +OPL:SP:04880-A,1,"Place du relais",47.114079,-1.937399,-1,0,OPL:SA:AST-04880-A-04880-R,Europe/Paris,0,OPL, +OPL:SP:04880-R,1,"Place du relais",47.114001,-1.937725,-1,0,OPL:SA:AST-04880-A-04880-R,Europe/Paris,0,OPL, +OPL:SP:04918-A,1,"Gare SNCF",47.047334,-1.957258,-1,0,OPL:SA:AST-04918-A-04918-R,Europe/Paris,0,OPL, +OPL:SP:04918-R,1,"Gare SNCF",47.046691,-1.955909,-1,0,OPL:SA:AST-04918-A-04918-R,Europe/Paris,0,OPL, +OPL:SP:04980-A,1,"La Boizonnière",47.119448,-1.952448,-1,0,OPL:SA:AST-04980-A-04980-R,Europe/Paris,0,OPL, +OPL:SP:04980-R,1,"La Boizonnière",47.119601,-1.95232,-1,0,OPL:SA:AST-04980-A-04980-R,Europe/Paris,0,OPL, +OPL:SP:04989-A,1,"Haute Perche",47.131351,-1.96993,-1,0,OPL:SA:AST-04989-A-04989-R,Europe/Paris,0,OPL, +OPL:SP:04989-R,1,"Haute Perche",47.131219,-1.969532,-1,0,OPL:SA:AST-04989-A-04989-R,Europe/Paris,0,OPL, +OPL:SP:05045-A,1,"La Sicaudais",47.187341,-1.947486,-1,0,OPL:SA:AST-05045-A-05045-R,Europe/Paris,0,OPL, +OPL:SP:05045-R,1,"La Sicaudais",47.187344,-1.947468,-1,0,OPL:SA:AST-05045-A-05045-R,Europe/Paris,0,OPL, +OPL:SP:05103-A,1,"Église",47.244367,-1.934244,-1,0,OPL:SA:AST-05103-A-05103-R,Europe/Paris,0,OPL, +OPL:SP:05103-R,1,"Église",47.244349,-1.934265,-1,0,OPL:SA:AST-05103-A-05103-R,Europe/Paris,0,OPL, +OPL:SP:05112-A,1,"Le Migron",47.254853,-1.916805,-1,0,OPL:SA:AST-05112-A-05112-R,Europe/Paris,0,OPL, +OPL:SP:05112-R,1,"Le Migron",47.254852,-1.916795,-1,0,OPL:SA:AST-05112-A-05112-R,Europe/Paris,0,OPL, +OPL:SP:05337-A,1,"Place du Centre",47.063621,-2.001503,-1,0,OPL:SA:AST-05337-A-05337-R,Europe/Paris,0,OPL, +OPL:SP:05337-R,1,"Place du Centre",47.063584,-2.001157,-1,0,OPL:SA:AST-05337-A-05337-R,Europe/Paris,0,OPL, +OPL:SP:05338-A,1,"Prigny",47.064299,-1.986259,-1,0,OPL:SA:AST-05338-A-05338-R,Europe/Paris,0,OPL, +OPL:SP:05338-R,1,"Prigny",47.06418,-1.986836,-1,0,OPL:SA:AST-05338-A-05338-R,Europe/Paris,0,OPL, +OPL:SP:05345-A,1,"Salle des Fêtes",47.078888,-2.033804,-1,0,OPL:SA:AST-05345-A-05345-R,Europe/Paris,0,OPL, +OPL:SP:05345-R,1,"Salle des Fêtes",47.078778,-2.033904,-1,0,OPL:SA:AST-05345-A-05345-R,Europe/Paris,0,OPL, +OPL:SP:05347-A,1,"La Noé Fleurie",47.09251,-2.036265,-1,0,OPL:SA:AST-05347-A-05347-R,Europe/Paris,0,OPL, +OPL:SP:05347-R,1,"La Noé Fleurie",47.092452,-2.035926,-1,0,OPL:SA:AST-05347-A-05347-R,Europe/Paris,0,OPL, +OPL:SP:05357-A,1,"La Rogère",47.097623,-2.045185,-1,0,OPL:SA:AST-05357-A-05357-R,Europe/Paris,0,OPL, +OPL:SP:05357-R,1,"La Rogère",47.097675,-2.045015,-1,0,OPL:SA:AST-05357-A-05357-R,Europe/Paris,0,OPL, +OPL:SP:05418-A,1,"Église",47.150872,-1.985247,-1,0,OPL:SA:AST-05418-A-05418-R,Europe/Paris,0,OPL, +OPL:SP:05418-R,1,"Église",47.151351,-1.985767,-1,0,OPL:SA:AST-05418-A-05418-R,Europe/Paris,0,OPL, +OPL:SP:05460-A,1,"Ennerie",47.192322,-2.022743,-1,0,OPL:SA:AST-05460-A-05460-R,Europe/Paris,0,OPL, +OPL:SP:05460-R,1,"Ennerie",47.192656,-2.0233,-1,0,OPL:SA:AST-05460-A-05460-R,Europe/Paris,0,OPL, +OPL:SP:05533-A,1,"Rue de la Gare",47.2527,-2.02114,-1,0,OPL:SA:AST-05533-A-05533-R,Europe/Paris,0,OPL, +OPL:SP:05533-R,1,"Rue de la Gare",47.252722,-2.021067,-1,0,OPL:SA:AST-05533-A-05533-R,Europe/Paris,0,OPL, +OPL:SP:05539-A,1,"Route de Paimboeuf",47.255899,-2.014413,-1,0,OPL:SA:AST-05539-A-05539-A1-05539-R-05539-R1,Europe/Paris,0,OPL, +OPL:SP:05539-A1,1,"Route de Paimboeuf",47.256926,-2.013422,-1,0,OPL:SA:AST-05539-A-05539-A1-05539-R-05539-R1,Europe/Paris,0,OPL, +OPL:SP:05539-R,1,"Route de Paimboeuf",47.256892,-2.01347,-1,0,OPL:SA:AST-05539-A-05539-A1-05539-R-05539-R1,Europe/Paris,0,OPL, +OPL:SP:05539-R1,1,"Route de Paimboeuf",47.255868,-2.014512,-1,0,OPL:SA:AST-05539-A-05539-A1-05539-R-05539-R1,Europe/Paris,0,OPL, +OPL:SP:05568-A,1,"Centre",47.277578,-2.059144,-1,0,OPL:SA:AST-05568-A-05568-R,Europe/Paris,0,OPL, +OPL:SP:05568-R,1,"Centre",47.2775,-2.059589,-1,0,OPL:SA:AST-05568-A-05568-R,Europe/Paris,0,OPL, +OPL:SP:05572-A,1,"Kuhlmann Floralies",47.283201,-2.016999,-1,0,OPL:SA:AST-05572-A-05572-A1-05572-R,Europe/Paris,0,OPL, +OPL:SP:05572-A1,1,"Kuhlmann Floralies",47.282993,-2.01606,-1,0,OPL:SA:AST-05572-A-05572-A1-05572-R,Europe/Paris,0,OPL, +OPL:SP:05572-R,1,"Kuhlmann Floralies",47.283014,-2.016072,-1,0,OPL:SA:AST-05572-A-05572-A1-05572-R,Europe/Paris,0,OPL, +OPL:SP:05575-A,1,"Square Kerbez",47.28913,-2.038459,-1,0,OPL:SA:AST-05575-A-05575-R,Europe/Paris,0,OPL, +OPL:SP:05575-R,1,"Square Kerbez",47.288854,-2.039747,-1,0,OPL:SA:AST-05575-A-05575-R,Europe/Paris,0,OPL, +OPL:SP:05584-A,1,"Place du Marché",47.288466,-2.031626,-1,0,OPL:SA:AST-05584-A-05584-R,Europe/Paris,0,OPL, +OPL:SP:05584-R,1,"Place du Marché",47.28843,-2.031782,-1,0,OPL:SA:AST-05584-A-05584-R,Europe/Paris,0,OPL, +OPL:SP:05708-A,1,"Chêne Bonnet",47.277542,-2.066961,-1,0,OPL:SA:AST-05708-A-05708-R,Europe/Paris,0,OPL, +OPL:SP:05708-R,1,"Chêne Bonnet",47.277344,-2.065683,-1,0,OPL:SA:AST-05708-A-05708-R,Europe/Paris,0,OPL, +OPL:SP:05738-A,1,"La Fléchousserie",47.102431,-2.06027,-1,0,OPL:SA:AST-05738-A-05738-R,Europe/Paris,0,OPL, +OPL:SP:05738-R,1,"La Fléchousserie",47.102729,-2.060829,-1,0,OPL:SA:AST-05738-A-05738-R,Europe/Paris,0,OPL, +OPL:SP:05754-A,1,"Terres Jarries",47.122499,-2.119122,-1,0,OPL:SA:AST-05754-A-05754-R,Europe/Paris,0,OPL, +OPL:SP:05754-R,1,"Terres Jarries",47.122609,-2.119,-1,0,OPL:SA:AST-05754-A-05754-R,Europe/Paris,0,OPL, +OPL:SP:05755-A,1,"Rond-Point EDF",47.122751,-2.123792,-1,0,OPL:SA:AST-05755-A-05755-R,Europe/Paris,0,OPL, +OPL:SP:05755-R,1,"Rond-Point EDF",47.122579,-2.124084,-1,0,OPL:SA:AST-05755-A-05755-R,Europe/Paris,0,OPL, +OPL:SP:05791-A,1,"La Joselière",47.106347,-2.074585,-1,0,OPL:SA:AST-05791-A-05791-R,Europe/Paris,0,OPL, +OPL:SP:05791-R,1,"La Joselière",47.106437,-2.074696,-1,0,OPL:SA:AST-05791-A-05791-R,Europe/Paris,0,OPL, +OPL:SP:05796-A,1,"Ste Marie Pl. de Verdun",47.114765,-2.129613,-1,0,OPL:SA:AST-05796-A-05796-R,Europe/Paris,0,OPL, +OPL:SP:05796-R,1,"Ste Marie Pl. de Verdun",47.114845,-2.129842,-1,0,OPL:SA:AST-05796-A-05796-R,Europe/Paris,0,OPL, +OPL:SP:05797-A,1,"Gare SNCF",47.114359,-2.098031,-1,0,STE:SA:OCE87481283,Europe/Paris,0,OPL, +OPL:SP:05797-R,1,"Gare SNCF",47.114355,-2.098024,-1,0,STE:SA:OCE87481283,Europe/Paris,0,OPL, +OPL:SP:05802-A,1,"Cinéma St Gilles",47.120089,-2.100671,-1,0,OPL:SA:AST-05802-A-05802-R,Europe/Paris,0,OPL, +OPL:SP:05802-R,1,"Cinéma St Gilles",47.119979,-2.100878,-1,0,OPL:SA:AST-05802-A-05802-R,Europe/Paris,0,OPL, +OPL:SP:05805-A,1,"Le Sandier",47.121504,-2.110967,-1,0,OPL:SA:AST-05805-A-05805-R,Europe/Paris,0,OPL, +OPL:SP:05805-R,1,"Le Sandier",47.121585,-2.110814,-1,0,OPL:SA:AST-05805-A-05805-R,Europe/Paris,0,OPL, +OPL:SP:05848-A,1,"La Dalonnerie",47.160355,-2.146435,-1,0,OPL:SA:AST-05848-A-05848-R,Europe/Paris,0,OPL, +OPL:SP:05848-R,1,"La Dalonnerie",47.160191,-2.146281,-1,0,OPL:SA:AST-05848-A-05848-R,Europe/Paris,0,OPL, +OPL:SP:05878-A,1,"Mairie",47.182614,-2.147861,-1,0,OPL:SA:AST-05878-A-05878-R,Europe/Paris,0,OPL, +OPL:SP:05878-R,1,"Mairie",47.182674,-2.147919,-1,0,OPL:SA:AST-05878-A-05878-R,Europe/Paris,0,OPL, +OPL:SP:05884-A,1,"La Poste",47.181567,-2.151892,-1,0,OPL:SA:AST-05884-A-05884-R,Europe/Paris,0,OPL, +OPL:SP:05884-R,1,"La Poste",47.181628,-2.152122,-1,0,OPL:SA:AST-05884-A-05884-R,Europe/Paris,0,OPL, +OPL:SP:05999-A,1,"La Baie de Loire",47.260899,-2.124859,-1,0,OPL:SA:AST-05999-A-05999-R,Europe/Paris,0,OPL, +OPL:SP:05999-R,1,"La Baie de Loire",47.260697,-2.125112,-1,0,OPL:SA:AST-05999-A-05999-R,Europe/Paris,0,OPL, +OPL:SP:06000-A,1,"Basse Prinais",47.262949,-2.153798,-1,0,OPL:SA:AST-06000-A-06000-R,Europe/Paris,0,OPL, +OPL:SP:06000-R,1,"Basse Prinais",47.262891,-2.153854,-1,0,OPL:SA:AST-06000-A-06000-R,Europe/Paris,0,OPL, +OPL:SP:06002-A,1,"La Moisenais",47.263871,-2.099963,-1,0,OPL:SA:AST-06002-A-06002-R,Europe/Paris,0,OPL, +OPL:SP:06002-R,1,"La Moisenais",47.26368,-2.100126,-1,0,OPL:SA:AST-06002-A-06002-R,Europe/Paris,0,OPL, +OPL:SP:06006-A,1,"Greix",47.264324,-2.10723,-1,0,OPL:SA:AST-06006-A-06006-R,Europe/Paris,0,OPL, +OPL:SP:06006-R,1,"Greix",47.264304,-2.107522,-1,0,OPL:SA:AST-06006-A-06006-R,Europe/Paris,0,OPL, +OPL:SP:06018-A,1,"La Mabilais",47.273343,-2.088929,-1,0,OPL:SA:AST-06018-A-06018-R,Europe/Paris,0,OPL, +OPL:SP:06018-R,1,"La Mabilais",47.273451,-2.088738,-1,0,OPL:SA:AST-06018-A-06018-R,Europe/Paris,0,OPL, +OPL:SP:06024-A,1,"La Birochère",47.109321,-2.087301,-1,0,OPL:SA:AST-06024-A-06024-R,Europe/Paris,0,OPL, +OPL:SP:06024-R,1,"La Birochère",47.109465,-2.087525,-1,0,OPL:SA:AST-06024-A-06024-R,Europe/Paris,0,OPL, +OPL:SP:06187-A,1,"Quirouard",47.129015,-2.207909,-1,0,OPL:SA:AST-06187-A-06187-R,Europe/Paris,0,OPL, +OPL:SP:06187-R,1,"Quirouard",47.129094,-2.207946,-1,0,OPL:SA:AST-06187-A-06187-R,Europe/Paris,0,OPL, +OPL:SP:06285-A,1,"Le Cormier",47.155185,-2.174195,-1,0,OPL:SA:AST-06285-A-06285-R,Europe/Paris,0,OPL, +OPL:SP:06285-R,1,"Le Cormier",47.155165,-2.174693,-1,0,OPL:SA:AST-06285-A-06285-R,Europe/Paris,0,OPL, +OPL:SP:06335-A,1,"Messan",47.192798,-1.852455,-1,0,OPL:SA:AST-06335-A-06335-R,Europe/Paris,0,OPL, +OPL:SP:06335-R,1,"Messan",47.192793,-1.852489,-1,0,OPL:SA:AST-06335-A-06335-R,Europe/Paris,0,OPL, +OPL:SP:06337-A,1,"Place de l'Église",47.185403,-1.860981,-1,0,OPL:SA:AST-06337-A-06337-R,Europe/Paris,0,OPL, +OPL:SP:06337-R,1,"Place de l'Église",47.185376,-1.860958,-1,0,OPL:SA:AST-06337-A-06337-R,Europe/Paris,0,OPL, +OPL:SP:06543-A,1,"St Jean de Boiseau",47.195851,-1.72489,-1,0,OPL:SA:AST-06543-A-06543-R,Europe/Paris,0,OPL, +OPL:SP:06543-R,1,"St Jean de Boiseau",47.195896,-1.724899,-1,0,OPL:SA:AST-06543-A-06543-R,Europe/Paris,0,OPL, +OPL:SP:06609-A,1,"Centre",47.136355,-1.729831,-1,0,OPL:SA:AST-06609-A-06609-R,Europe/Paris,2,OPL, +OPL:SP:06609-R,1,"Centre",47.136398,-1.730083,-1,0,OPL:SA:AST-06609-A-06609-R,Europe/Paris,2,OPL, +OPL:SP:06610-A,1,"Église",47.134571,-1.747287,-1,0,OPL:SA:AST-06610-A-06610-R,Europe/Paris,0,OPL, +OPL:SP:06610-R,1,"Église",47.134509,-1.747547,-1,0,OPL:SA:AST-06610-A-06610-R,Europe/Paris,0,OPL, +OPL:SP:06614-A,1,"Ecomarché",47.131649,-1.751666,-1,0,OPL:SA:AST-06614-A-06614-R,Europe/Paris,0,OPL, +OPL:SP:06614-R,1,"Ecomarché",47.131688,-1.751789,-1,0,OPL:SA:AST-06614-A-06614-R,Europe/Paris,0,OPL, +OPL:SP:06666-A,1,"Église",47.055378,-1.726529,-1,0,OPL:SA:AST-06666-A-06666-R,Europe/Paris,0,OPL, +OPL:SP:06666-R,1,"Église",47.055554,-1.726637,-1,0,OPL:SA:AST-06666-A-06666-R,Europe/Paris,0,OPL, +OPL:SP:06796-A,1,"Allende",47.175263,-1.623161,-1,0,OPL:SA:AST-06796-A-06796-R,Europe/Paris,2,OPL, +OPL:SP:06796-R,1,"Allende",47.17542,-1.623919,-1,0,OPL:SA:AST-06796-A-06796-R,Europe/Paris,2,OPL, +OPL:SP:06867-A,1,"Vannerie",47.06057,-1.631634,-1,0,OPL:SA:AST-06867-A-06867-R,Europe/Paris,0,OPL, +OPL:SP:06867-R,1,"Vannerie",47.060466,-1.631775,-1,0,OPL:SA:AST-06867-A-06867-R,Europe/Paris,0,OPL, +OPL:SP:06868-A,1,"Brissonnière",47.056329,-1.633606,-1,0,OPL:SA:AST-06868-A-06868-R,Europe/Paris,0,OPL, +OPL:SP:06868-R,1,"Brissonnière",47.056284,-1.633746,-1,0,OPL:SA:AST-06868-A-06868-R,Europe/Paris,0,OPL, +OPL:SP:06916-A,1,"Les Rairies",47.139305,-1.578514,-1,0,OPL:SA:AST-06916-A-06916-R,Europe/Paris,0,OPL, +OPL:SP:06916-R,1,"Les Rairies",47.139346,-1.578606,-1,0,OPL:SA:AST-06916-A-06916-R,Europe/Paris,0,OPL, +OPL:SP:06918-A,1,"Le Moulinier",47.130769,-1.579923,-1,0,OPL:SA:AST-06918-A-06918-R,Europe/Paris,2,OPL, +OPL:SP:06918-R,1,"Le Moulinier",47.131048,-1.580112,-1,0,OPL:SA:AST-06918-A-06918-R,Europe/Paris,2,OPL, +OPL:SP:06939-A,1,"Le Fréty Grand",47.124373,-1.603177,-1,0,OPL:SA:AST-06939-A-06939-R,Europe/Paris,0,OPL, +OPL:SP:06939-R,1,"Le Fréty Grand",47.124362,-1.603192,-1,0,OPL:SA:AST-06939-A-06939-R,Europe/Paris,0,OPL, +OPL:SP:06941-A,1,"Église",47.123145,-1.584148,-1,0,OPL:SA:AST-06941-A-06941-R,Europe/Paris,2,OPL, +OPL:SP:06941-R,1,"Église",47.123008,-1.583985,-1,0,OPL:SA:AST-06941-A-06941-R,Europe/Paris,0,OPL, +OPL:SP:06945-A,1,"Les Coutumes",47.107008,-1.59027,-1,0,OPL:SA:AST-06945-A-06945-R,Europe/Paris,2,OPL, +OPL:SP:06945-R,1,"Les Coutumes",47.10693,-1.59071,-1,0,OPL:SA:AST-06945-A-06945-R,Europe/Paris,0,OPL, +OPL:SP:06948-A,1,"La Chaussée",47.099085,-1.609188,-1,0,OPL:SA:AST-06948-A-06948-R,Europe/Paris,0,OPL, +OPL:SP:06948-R,1,"La Chaussée",47.099202,-1.609111,-1,0,OPL:SA:AST-06948-A-06948-R,Europe/Paris,0,OPL, +OPL:SP:06952-A,1,"Église",47.09429,-1.612182,-1,0,OPL:SA:AST-06952-A-06952-R,Europe/Paris,2,OPL, +OPL:SP:06952-R,1,"Église",47.094062,-1.612557,-1,0,OPL:SA:AST-06952-A-06952-R,Europe/Paris,0,OPL, +OPL:SP:06986-A,1,"La Tournelle",47.153726,-1.558827,-1,0,OPL:SA:AST-06986-A-06986-R,Europe/Paris,2,OPL, +OPL:SP:06986-R,1,"La Tournelle",47.153586,-1.55907,-1,0,OPL:SA:AST-06986-A-06986-R,Europe/Paris,2,OPL, +OPL:SP:06990-A,1,"La Gautellerie",47.146974,-1.563082,-1,0,OPL:SA:AST-06990-A-06990-R,Europe/Paris,0,OPL, +OPL:SP:06990-R,1,"La Gautellerie",47.147393,-1.563056,-1,0,OPL:SA:AST-06990-A-06990-R,Europe/Paris,0,OPL, +OPL:SP:06996-A,1,"Planchette",47.142714,-1.572121,-1,0,OPL:SA:AST-06996-A-06996-R,Europe/Paris,0,OPL, +OPL:SP:06996-R,1,"Planchette",47.142863,-1.572031,-1,0,OPL:SA:AST-06996-A-06996-R,Europe/Paris,0,OPL, +OPL:SP:07019-A,1,"Viais",47.118778,-1.536978,-1,0,OPL:SA:AST-07019-A-07019-R,Europe/Paris,0,OPL, +OPL:SP:07019-R,1,"Viais",47.118346,-1.538265,-1,0,OPL:SA:AST-07019-A-07019-R,Europe/Paris,0,OPL, +OPL:SP:07021-A,1,"Le Patis",47.112538,-1.571848,-1,0,OPL:SA:AST-07021-A-07021-R,Europe/Paris,0,OPL, +OPL:SP:07021-R,1,"Le Patis",47.112513,-1.571865,-1,0,OPL:SA:AST-07021-A-07021-R,Europe/Paris,0,OPL, +OPL:SP:07365-A,1,"Les Fosses",46.997451,-1.73719,-1,0,OPL:SA:AST-07365-A-07365-R,Europe/Paris,2,OPL, +OPL:SP:07365-R,1,"Les Fosses",46.997431,-1.737171,-1,0,OPL:SA:AST-07365-A-07365-R,Europe/Paris,2,OPL, +OPL:SP:07457-A,1,"Tour Eiffel",47.199562,-1.754208,-1,0,OPL:SA:AST-07457-A-07457-R,Europe/Paris,2,OPL, +OPL:SP:07457-R,1,"Tour Eiffel",47.199754,-1.75484,-1,0,OPL:SA:AST-07457-A-07457-R,Europe/Paris,2,OPL, +OPL:SP:07474-A,1,"La Compointerie",47.034818,-1.668717,-1,0,OPL:SA:AST-07474-A-07474-R,Europe/Paris,0,OPL, +OPL:SP:07474-R,1,"La Compointerie",47.034889,-1.668865,-1,0,OPL:SA:AST-07474-A-07474-R,Europe/Paris,0,OPL, +OPL:SP:07479-A,1,"Les Troissarts",47.036198,-1.694278,-1,0,OPL:SA:AST-07479-A-07479-R,Europe/Paris,0,OPL, +OPL:SP:07479-R,1,"Les Troissarts",47.036256,-1.694287,-1,0,OPL:SA:AST-07479-A-07479-R,Europe/Paris,0,OPL, +OPL:SP:07485-A,1,"La Pironnière",47.038605,-1.704731,-1,0,OPL:SA:AST-07485-A-07485-R,Europe/Paris,0,OPL, +OPL:SP:07485-R,1,"La Pironnière",47.038706,-1.704755,-1,0,OPL:SA:AST-07485-A-07485-R,Europe/Paris,0,OPL, +OPL:SP:07490-A,1,"Le Plessis",47.035215,-1.683555,-1,0,OPL:SA:AST-07490-A-07490-R,Europe/Paris,0,OPL, +OPL:SP:07490-R,1,"Le Plessis",47.035271,-1.683642,-1,0,OPL:SA:AST-07490-A-07490-R,Europe/Paris,0,OPL, +OPL:SP:07492-A,1,"Le Pied Pain",47.028533,-1.671559,-1,0,OPL:SA:AST-07492-A-07492-R,Europe/Paris,0,OPL, +OPL:SP:07492-R,1,"Le Pied Pain",47.028373,-1.67216,-1,0,OPL:SA:AST-07492-A-07492-R,Europe/Paris,0,OPL, +OPL:SP:07495-A,1,"La Gravouillerie",47.02247,-1.686881,-1,0,OPL:SA:AST-07495-A-07495-R,Europe/Paris,0,OPL, +OPL:SP:07495-R,1,"La Gravouillerie",47.022507,-1.68694,-1,0,OPL:SA:AST-07495-A-07495-R,Europe/Paris,0,OPL, +OPL:SP:07570-A,1,"Église",46.900671,-1.685256,-1,0,OPL:SA:AST-07570-A-07570-R,Europe/Paris,0,OPL, +OPL:SP:07570-R,1,"Église",46.900663,-1.685313,-1,0,OPL:SA:AST-07570-A-07570-R,Europe/Paris,0,OPL, +OPL:SP:07581-A,1,"Moulin de Passay",47.093563,-1.631072,-1,0,OPL:SA:AST-07581-A-07581-R,Europe/Paris,0,OPL, +OPL:SP:07581-R,1,"Moulin de Passay",47.093515,-1.631132,-1,0,OPL:SA:AST-07581-A-07581-R,Europe/Paris,0,OPL, +OPL:SP:07582-A,1,"Passay Rue du Lac",47.095663,-1.631704,-1,0,OPL:SA:AST-07582-A-07582-R,Europe/Paris,0,OPL, +OPL:SP:07582-R,1,"Passay Rue du Lac",47.09549,-1.631058,-1,0,OPL:SA:AST-07582-A-07582-R,Europe/Paris,0,OPL, +OPL:SP:07590-A,1,"Félix Platel",47.037394,-1.646778,-1,0,OPL:SA:AST-07590-A-07590-R,Europe/Paris,0,OPL, +OPL:SP:07590-R,1,"Félix Platel",47.037478,-1.646732,-1,0,OPL:SA:AST-07590-A-07590-R,Europe/Paris,0,OPL, +OPL:SP:07604-A,1,"Passay",47.096319,-1.635738,-1,0,OPL:SA:AST-07604-A-07604-R,Europe/Paris,0,OPL, +OPL:SP:07604-R,1,"Passay",47.096269,-1.635798,-1,0,OPL:SA:AST-07604-A-07604-R,Europe/Paris,0,OPL, +OPL:SP:07605-A,1,"Vieux Moulin",47.0909,-1.629284,-1,0,OPL:SA:AST-07605-A-07605-R,Europe/Paris,0,OPL, +OPL:SP:07605-R,1,"Vieux Moulin",47.090692,-1.629311,-1,0,OPL:SA:AST-07605-A-07605-R,Europe/Paris,0,OPL, +OPL:SP:07606-A,1,"Le Pont du Guy",47.086166,-1.628125,-1,0,OPL:SA:AST-07606-A-07606-R,Europe/Paris,0,OPL, +OPL:SP:07606-R,1,"Le Pont du Guy",47.086842,-1.628405,-1,0,OPL:SA:AST-07606-A-07606-R,Europe/Paris,0,OPL, +OPL:SP:07608-A,1,"L'Aubrais",47.079189,-1.63112,-1,0,OPL:SA:AST-07608-A-07608-R,Europe/Paris,0,OPL, +OPL:SP:07608-R,1,"L'Aubrais",47.079058,-1.631211,-1,0,OPL:SA:AST-07608-A-07608-R,Europe/Paris,0,OPL, +OPL:SP:07620-A,1,"Guinèvre",47.050414,-1.635316,-1,0,OPL:SA:AST-07620-A-07620-R,Europe/Paris,2,OPL, +OPL:SP:07620-R,1,"Guinèvre",47.05082,-1.635276,-1,0,OPL:SA:AST-07620-A-07620-R,Europe/Paris,2,OPL, +OPL:SP:07623-A,1,"Moulin de la Chaussée",47.046624,-1.638277,-1,0,OPL:SA:AST-07623-A-07623-R,Europe/Paris,2,OPL, +OPL:SP:07623-R,1,"Moulin de la Chaussée",47.046613,-1.638412,-1,0,OPL:SA:AST-07623-A-07623-R,Europe/Paris,2,OPL, +OPL:SP:07632-A,1,"Église",47.036352,-1.640846,-1,0,OPL:SA:AST-07632-A-07632-R,Europe/Paris,2,OPL, +OPL:SP:07632-R,1,"Église",47.036339,-1.640821,-1,0,OPL:SA:AST-07632-A-07632-R,Europe/Paris,2,OPL, +OPL:SP:07776-A,1,"Stade",47.090012,-1.616073,-1,0,OPL:SA:AST-07776-A-07776-R,Europe/Paris,0,OPL, +OPL:SP:07776-R,1,"Stade",47.089868,-1.615409,-1,0,OPL:SA:AST-07776-A-07776-R,Europe/Paris,0,OPL, +OPL:SP:07847-A,1,"Aujardière",47.019185,-1.600047,-1,0,OPL:SA:AST-07847-A-07847-R,Europe/Paris,0,OPL, +OPL:SP:07847-R,1,"Aujardière",47.018822,-1.599371,-1,0,OPL:SA:AST-07847-A-07847-R,Europe/Paris,0,OPL, +OPL:SP:07858-A,1,"Église",47.009365,-1.582896,-1,0,OPL:SA:AST-07858-A-07858-R,Europe/Paris,2,OPL, +OPL:SP:07858-R,1,"Église",47.009509,-1.583132,-1,0,OPL:SA:AST-07858-A-07858-R,Europe/Paris,2,OPL, +OPL:SP:07865-A,1,"Place Henri IV",46.991707,-1.593703,-1,0,OPL:SA:AST-07865-A-07865-R,Europe/Paris,2,OPL, +OPL:SP:07865-R,1,"Place Henri IV",46.991623,-1.593676,-1,0,OPL:SA:AST-07865-A-07865-R,Europe/Paris,2,OPL, +OPL:SP:07894-A,1,"Saint Jean de Corcoué",46.963404,-1.584072,-1,0,OPL:SA:AST-07894-A-07894-R,Europe/Paris,0,OPL, +OPL:SP:07894-R,1,"Saint Jean de Corcoué",46.963459,-1.584136,-1,0,OPL:SA:AST-07894-A-07894-R,Europe/Paris,0,OPL, +OPL:SP:07898-A,1,"La Bénate",46.954885,-1.605092,-1,0,OPL:SA:AST-07898-A-07898-R,Europe/Paris,0,OPL, +OPL:SP:07898-R,1,"La Bénate",46.954926,-1.605168,-1,0,OPL:SA:AST-07898-A-07898-R,Europe/Paris,0,OPL, +OPL:SP:07909-A,1,"La Croix Verte",46.938487,-1.60298,-1,0,OPL:SA:AST-07909-A-07909-R,Europe/Paris,0,OPL, +OPL:SP:07909-R,1,"La Croix Verte",46.938501,-1.603081,-1,0,OPL:SA:AST-07909-A-07909-R,Europe/Paris,0,OPL, +OPL:SP:07921-A,1,"Le Moulin Guérin",46.920892,-1.599485,-1,0,OPL:SA:AST-07921-A-07921-R,Europe/Paris,0,OPL, +OPL:SP:07921-R,1,"Le Moulin Guérin",46.920852,-1.599607,-1,0,OPL:SA:AST-07921-A-07921-R,Europe/Paris,0,OPL, +OPL:SP:07955-A,1,"Basse Parnière",46.891786,-1.584499,-1,0,OPL:SA:AST-07955-A-07955-R,Europe/Paris,2,OPL, +OPL:SP:07955-R,1,"Basse Parnière",46.891787,-1.584545,-1,0,OPL:SA:AST-07955-A-07955-R,Europe/Paris,2,OPL, +OPL:SP:08058-A,1,"Sainte Marie",46.972737,-1.575592,-1,0,OPL:SA:AST-08058-A-08058-R,Europe/Paris,0,OPL, +OPL:SP:08058-R,1,"Sainte Marie",46.972644,-1.575635,-1,0,OPL:SA:AST-08058-A-08058-R,Europe/Paris,0,OPL, +OPL:SP:08059-A,1,"Huit Mai",46.966884,-1.576442,-1,0,OPL:SA:AST-08059-A-08059-R,Europe/Paris,0,OPL, +OPL:SP:08059-R,1,"Huit Mai",46.96678,-1.576613,-1,0,OPL:SA:AST-08059-A-08059-R,Europe/Paris,0,OPL, +OPL:SP:08153-A,1,"Place Georges Gaudet",47.055929,-1.512524,-1,0,OPL:SA:AST-08153-A-08153-R,Europe/Paris,0,OPL, +OPL:SP:08153-R,1,"Place Georges Gaudet",47.055913,-1.512672,-1,0,OPL:SA:AST-08153-A-08153-R,Europe/Paris,0,OPL, +OPL:SP:08275-A,1,"Place Saint Thomas",46.97227,-1.433361,-1,0,OPL:SA:AST-08275-A-08275-R,Europe/Paris,2,OPL, +OPL:SP:08275-R,1,"Place Saint Thomas",46.972228,-1.43356,-1,0,OPL:SA:AST-08275-A-08275-R,Europe/Paris,2,OPL, +OPL:SP:08287-A,1,"Place des Fêtes",46.96833,-1.437803,-1,0,OPL:SA:AST-08287-A-08287-R,Europe/Paris,0,OPL, +OPL:SP:08287-R,1,"Place des Fêtes",46.968321,-1.437818,-1,0,OPL:SA:AST-08287-A-08287-R,Europe/Paris,0,OPL, +OPL:SP:08419-A,1,"Écoles",47.081548,-1.337575,-1,0,OPL:SA:AST-08419-A-08419-R,Europe/Paris,2,OPL, +OPL:SP:08419-R,1,"Écoles",47.081548,-1.338235,-1,0,OPL:SA:AST-08419-A-08419-R,Europe/Paris,2,OPL, +OPL:SP:08508-A,1,"Mairie",47.07684,-1.248085,-1,0,OPL:SA:AST-08508-A-08508-R,Europe/Paris,2,OPL, +OPL:SP:08508-R,1,"Mairie",47.07684,-1.248745,-1,0,OPL:SA:AST-08508-A-08508-R,Europe/Paris,2,OPL, +OPL:SP:08697-A,1,"Les 3 Hermines",47.109268,-1.472476,-1,0,OPL:SA:AST-08697-A-08697-R,Europe/Paris,0,OPL, +OPL:SP:08697-R,1,"Les 3 Hermines",47.108567,-1.471758,-1,0,OPL:SA:AST-08697-A-08697-R,Europe/Paris,0,OPL, +OPL:SP:08715-A,1,"Maison Rouge",47.118088,-1.523953,-1,0,OPL:SA:AST-08715-A-08715-R,Europe/Paris,0,OPL, +OPL:SP:08715-R,1,"Maison Rouge",47.118037,-1.524045,-1,0,OPL:SA:AST-08715-A-08715-R,Europe/Paris,0,OPL, +OPL:SP:08724-A,1,"Mairie",47.075444,-1.397724,-1,0,OPL:SA:AST-08724-A-08724-R,Europe/Paris,0,OPL, +OPL:SP:08724-R,1,"Mairie",47.075407,-1.397945,-1,0,OPL:SA:AST-08724-A-08724-R,Europe/Paris,0,OPL, +OPL:SP:08728-A,1,"La Croix des Prés",47.06181,-1.493783,-1,0,OPL:SA:AST-08728-A-08728-R,Europe/Paris,0,OPL, +OPL:SP:08728-R,1,"La Croix des Prés",47.061832,-1.493932,-1,0,OPL:SA:AST-08728-A-08728-R,Europe/Paris,0,OPL, +OPL:SP:08746-A,1,"Le Plessis",47.078553,-1.406101,-1,0,OPL:SA:AST-08746-A-08746-R,Europe/Paris,2,OPL, +OPL:SP:08746-R,1,"Le Plessis",47.078241,-1.405865,-1,0,OPL:SA:AST-08746-A-08746-R,Europe/Paris,2,OPL, +OPL:SP:08765-A,1,"Le Haut Coin",47.082742,-1.415718,-1,0,OPL:SA:AST-08765-A-08765-R,Europe/Paris,0,OPL, +OPL:SP:08765-R,1,"Le Haut Coin",47.082687,-1.415949,-1,0,OPL:SA:AST-08765-A-08765-R,Europe/Paris,0,OPL, +OPL:SP:08822-A,1,"Les Aires",47.098651,-1.493262,-1,0,OPL:SA:AST-08822-A-08822-R,Europe/Paris,0,OPL, +OPL:SP:08822-R,1,"Les Aires",47.098606,-1.49351,-1,0,OPL:SA:AST-08822-A-08822-R,Europe/Paris,0,OPL, +OPL:SP:08823-A,1,"Église",47.098158,-1.488921,-1,0,OPL:SA:AST-08823-A-08823-R,Europe/Paris,0,OPL, +OPL:SP:08823-R,1,"Église",47.098144,-1.489028,-1,0,OPL:SA:AST-08823-A-08823-R,Europe/Paris,0,OPL, +OPL:SP:08826-A,1,"La Jarrie",47.105552,-1.508885,-1,0,OPL:SA:AST-08826-A-08826-R,Europe/Paris,0,OPL, +OPL:SP:08826-R,1,"La Jarrie",47.10551,-1.508957,-1,0,OPL:SA:AST-08826-A-08826-R,Europe/Paris,0,OPL, +OPL:SP:08836-A,1,"La Loirière",47.097322,-1.53261,-1,0,OPL:SA:AST-08836-A-08836-R,Europe/Paris,0,OPL, +OPL:SP:08836-R,1,"La Loirière",47.096848,-1.53253,-1,0,OPL:SA:AST-08836-A-08836-R,Europe/Paris,0,OPL, +OPL:SP:08840-A,1,"La Boule d'Or",47.088479,-1.528376,-1,0,OPL:SA:AST-08840-A-08840-R,Europe/Paris,0,OPL, +OPL:SP:08840-R,1,"La Boule d'Or",47.089038,-1.528856,-1,0,OPL:SA:AST-08840-A-08840-R,Europe/Paris,0,OPL, +OPL:SP:08857-A,1,"Les Chaises",47.078979,-1.494245,-1,0,OPL:SA:AST-08857-A-08857-R,Europe/Paris,0,OPL, +OPL:SP:08857-R,1,"Les Chaises",47.079504,-1.493918,-1,0,OPL:SA:AST-08857-A-08857-R,Europe/Paris,0,OPL, +OPL:SP:08859-A,1,"L'Hommeau",47.070584,-1.496515,-1,0,OPL:SA:AST-08859-A-08859-R,Europe/Paris,0,OPL, +OPL:SP:08859-R,1,"L'Hommeau",47.071254,-1.496855,-1,0,OPL:SA:AST-08859-A-08859-R,Europe/Paris,0,OPL, +OPL:SP:08864-A,1,"Mairie",47.058584,-1.489403,-1,0,OPL:SA:AST-08864-A-08864-R,Europe/Paris,0,OPL, +OPL:SP:08864-R,1,"Mairie",47.057602,-1.488661,-1,0,OPL:SA:AST-08864-A-08864-R,Europe/Paris,0,OPL, +OPL:SP:08878-A,1,"La Poste",47.055214,-1.487403,-1,0,OPL:SA:AST-08878-A-08878-R,Europe/Paris,0,OPL, +OPL:SP:08878-R,1,"La Poste",47.055152,-1.487511,-1,0,OPL:SA:AST-08878-A-08878-R,Europe/Paris,0,OPL, +OPL:SP:08964-A,1,"Route de Nantes",47.01742,-1.436351,-1,0,OPL:SA:AST-08964-A-08964-R,Europe/Paris,0,OPL, +OPL:SP:08964-R,1,"Route de Nantes",47.017277,-1.436264,-1,0,OPL:SA:AST-08964-A-08964-R,Europe/Paris,0,OPL, +OPL:SP:08975-A,1,"Le Noyer",47.023049,-1.449609,-1,0,OPL:SA:AST-08975-A-08975-R,Europe/Paris,0,OPL, +OPL:SP:08975-R,1,"Le Noyer",47.022873,-1.4494,-1,0,OPL:SA:AST-08975-A-08975-R,Europe/Paris,0,OPL, +OPL:SP:08989-A,1,"Nonnaire",47.035846,-1.468794,-1,0,OPL:SA:AST-08989-A-08989-R,Europe/Paris,0,OPL, +OPL:SP:08989-R,1,"Nonnaire",47.03658,-1.469455,-1,0,OPL:SA:AST-08989-A-08989-R,Europe/Paris,0,OPL, +OPL:SP:09007-A,1,"Cinq Routes",47.006201,-1.45471,-1,0,OPL:SA:AST-09007-A-09007-R,Europe/Paris,0,OPL, +OPL:SP:09007-R,1,"Cinq Routes",47.006308,-1.454814,-1,0,OPL:SA:AST-09007-A-09007-R,Europe/Paris,0,OPL, +OPL:SP:09009-A,1,"L'Audonnière",46.99619,-1.453916,-1,0,OPL:SA:AST-09009-A-09009-R,Europe/Paris,0,OPL, +OPL:SP:09009-R,1,"L'Audonnière",46.996036,-1.453915,-1,0,OPL:SA:AST-09009-A-09009-R,Europe/Paris,0,OPL, +OPL:SP:09070-A,1,"La Chebuette",47.26804,-1.408819,-1,0,OPL:SA:AST-09070-A-09070-R,Europe/Paris,0,OPL, +OPL:SP:09070-R,1,"La Chebuette",47.26802,-1.408913,-1,0,OPL:SA:AST-09070-A-09070-R,Europe/Paris,0,OPL, +OPL:SP:09080-A,1,"Le Bout des Ponts",47.257409,-1.426129,-1,0,OPL:SA:AST-09080-A-09080-R,Europe/Paris,0,OPL, +OPL:SP:09080-R,1,"Le Bout des Ponts",47.257776,-1.425602,-1,0,OPL:SA:AST-09080-A-09080-R,Europe/Paris,0,OPL, +OPL:SP:09089-A,1,"Boire Courant",47.245813,-1.43658,-1,0,OPL:SA:AST-09089-A-09089-R,Europe/Paris,0,OPL, +OPL:SP:09089-R,1,"Boire Courant",47.246389,-1.435853,-1,0,OPL:SA:AST-09089-A-09089-R,Europe/Paris,0,OPL, +OPL:SP:09151-A,1,"Champ Failli",47.190948,-1.401446,-1,0,OPL:SA:AST-09151-A-09151-R,Europe/Paris,0,OPL, +OPL:SP:09151-R,1,"Champ Failli",47.190784,-1.401345,-1,0,OPL:SA:AST-09151-A-09151-R,Europe/Paris,0,OPL, +OPL:SP:09193-A,1,"La Bourchinière",47.151814,-1.429156,-1,0,OPL:SA:AST-09193-A-09193-R,Europe/Paris,0,OPL, +OPL:SP:09193-R,1,"La Bourchinière",47.150817,-1.428883,-1,0,OPL:SA:AST-09193-A-09193-R,Europe/Paris,0,OPL, +OPL:SP:09194-A,1,"Mairie",47.143132,-1.4161,-1,0,OPL:SA:AST-09194-A-09194-R,Europe/Paris,2,OPL, +OPL:SP:09194-R,1,"Mairie",47.143392,-1.416102,-1,0,OPL:SA:AST-09194-A-09194-R,Europe/Paris,2,OPL, +OPL:SP:09206-A,1,"Saint Martin",47.132809,-1.422638,-1,0,OPL:SA:AST-09206-A-09206-R,Europe/Paris,0,OPL, +OPL:SP:09206-R,1,"Saint Martin",47.132748,-1.422783,-1,0,OPL:SA:AST-09206-A-09206-R,Europe/Paris,0,OPL, +OPL:SP:09211-A,1,"Croix verte",47.126065,-1.422877,-1,0,OPL:SA:AST-09211-A-09211-R,Europe/Paris,2,OPL, +OPL:SP:09211-R,1,"Croix verte",47.126074,-1.423007,-1,0,OPL:SA:AST-09211-A-09211-R,Europe/Paris,2,OPL, +OPL:SP:09231-A,1,"La Jaunaie",47.092942,-1.44059,-1,0,OPL:SA:AST-09231-A-09231-R,Europe/Paris,0,OPL, +OPL:SP:09231-R,1,"La Jaunaie",47.092928,-1.440878,-1,0,OPL:SA:AST-09231-A-09231-R,Europe/Paris,0,OPL, +OPL:SP:09238-A,1,"Allée du Château",47.194953,-1.414208,-1,0,OPL:SA:AST-09238-A-09238-R,Europe/Paris,0,OPL, +OPL:SP:09238-R,1,"Allée du Château",47.195906,-1.415706,-1,0,OPL:SA:AST-09238-A-09238-R,Europe/Paris,0,OPL, +OPL:SP:09269-A,1,"Port Égaud",47.249649,-1.37858,-1,0,OPL:SA:AST-09269-A-09269-R,Europe/Paris,0,OPL, +OPL:SP:09269-R,1,"Port Égaud",47.248826,-1.377333,-1,0,OPL:SA:AST-09269-A-09269-R,Europe/Paris,0,OPL, +OPL:SP:09336-A,1,"Église",47.253712,-1.384849,-1,0,OPL:SA:AST-09336-A-09336-R,Europe/Paris,0,OPL, +OPL:SP:09336-R,1,"Église",47.253886,-1.385173,-1,0,OPL:SA:AST-09336-A-09336-R,Europe/Paris,0,OPL, +OPL:SP:09343-A,1,"Cour du Chêne",47.24488,-1.360975,-1,0,OPL:SA:AST-09343-A-09343-R,Europe/Paris,2,OPL, +OPL:SP:09343-R,1,"Cour du Chêne",47.244791,-1.361029,-1,0,OPL:SA:AST-09343-A-09343-R,Europe/Paris,2,OPL, +OPL:SP:09393-A,1,"La Poterie",47.176681,-1.388308,-1,0,OPL:SA:AST-09393-A-09393-R,Europe/Paris,0,OPL, +OPL:SP:09393-R,1,"La Poterie",47.176904,-1.388365,-1,0,OPL:SA:AST-09393-A-09393-R,Europe/Paris,0,OPL, +OPL:SP:09397-A,1,"La Cerclerie",47.172918,-1.354661,-1,0,OPL:SA:AST-09397-A-09397-R,Europe/Paris,0,OPL, +OPL:SP:09397-R,1,"La Cerclerie",47.172988,-1.35364,-1,0,OPL:SA:AST-09397-A-09397-R,Europe/Paris,0,OPL, +OPL:SP:09398-A,1,"La Bernardière",47.172819,-1.367438,-1,0,OPL:SA:AST-09398-A-09398-R,Europe/Paris,0,OPL, +OPL:SP:09398-R,1,"La Bernardière",47.173325,-1.370112,-1,0,OPL:SA:AST-09398-A-09398-R,Europe/Paris,0,OPL, +OPL:SP:09433-A,1,"Rue de la Mairie",47.099018,-1.385321,-1,0,OPL:SA:AST-09433-A-09433-R,Europe/Paris,2,OPL, +OPL:SP:09433-R,1,"Rue de la Mairie",47.09904,-1.385335,-1,0,OPL:SA:AST-09433-A-09433-R,Europe/Paris,2,OPL, +OPL:SP:09473-A,1,"Gendarmerie",47.241377,-1.355852,-1,0,OPL:SA:AST-09473-A-09473-R,Europe/Paris,0,OPL, +OPL:SP:09473-R,1,"Gendarmerie",47.240794,-1.355597,-1,0,OPL:SA:AST-09473-A-09473-R,Europe/Paris,0,OPL, +OPL:SP:09527-A,1,"Mairie",47.27133,-1.339864,-1,0,OPL:SA:AST-09527-A-09527-R,Europe/Paris,0,OPL, +OPL:SP:09527-R,1,"Mairie",47.271316,-1.339867,-1,0,OPL:SA:AST-09527-A-09527-R,Europe/Paris,0,OPL, +OPL:SP:09629-A,1,"Église",47.176448,-1.340083,-1,0,OPL:SA:AST-09629-A-09629-R,Europe/Paris,0,OPL, +OPL:SP:09629-R,1,"Église",47.176279,-1.339502,-1,0,OPL:SA:AST-09629-A-09629-R,Europe/Paris,0,OPL, +OPL:SP:09631-A,1,"La Gobinière",47.177019,-1.324444,-1,0,OPL:SA:AST-09631-A-09631-R,Europe/Paris,0,OPL, +OPL:SP:09631-R,1,"La Gobinière",47.176827,-1.324241,-1,0,OPL:SA:AST-09631-A-09631-R,Europe/Paris,0,OPL, +OPL:SP:09634-A,1,"Moulin de la Verrie",47.174459,-1.319123,-1,0,OPL:SA:AST-09634-A-09634-R,Europe/Paris,0,OPL, +OPL:SP:09634-R,1,"Moulin de la Verrie",47.174314,-1.319134,-1,0,OPL:SA:AST-09634-A-09634-R,Europe/Paris,0,OPL, +OPL:SP:09747-A,1,"Église Barbechat",47.277093,-1.287384,-1,0,OPL:SA:AST-09747-A-09747-R,Europe/Paris,0,OPL, +OPL:SP:09747-R,1,"Église Barbechat",47.277486,-1.286606,-1,0,OPL:SA:AST-09747-A-09747-R,Europe/Paris,0,OPL, +OPL:SP:09807-A,1,"Les Nouelles",47.207385,-1.305778,-1,0,OPL:SA:AST-09807-A-09807-R,Europe/Paris,2,OPL, +OPL:SP:09807-R,1,"Les Nouelles",47.208106,-1.305821,-1,0,OPL:SA:AST-09807-A-09807-R,Europe/Paris,2,OPL, +OPL:SP:09824-A,1,"La Tournerie",47.173096,-1.305084,-1,0,OPL:SA:AST-09824-A-09824-R,Europe/Paris,0,OPL, +OPL:SP:09824-R,1,"La Tournerie",47.173001,-1.30626,-1,0,OPL:SA:AST-09824-A-09824-R,Europe/Paris,0,OPL, +OPL:SP:09827-A,1,"Landreau Village",47.172853,-1.293508,-1,0,OPL:SA:AST-09827-A-09827-R,Europe/Paris,0,OPL, +OPL:SP:09827-R,1,"Landreau Village",47.172742,-1.293515,-1,0,OPL:SA:AST-09827-A-09827-R,Europe/Paris,0,OPL, +OPL:SP:09834-A,1,"Luxembourg",47.16494,-1.273071,-1,0,OPL:SA:AST-09834-A-09834-R,Europe/Paris,0,OPL, +OPL:SP:09834-R,1,"Luxembourg",47.16513,-1.272593,-1,0,OPL:SA:AST-09834-A-09834-R,Europe/Paris,0,OPL, +OPL:SP:09836-A,1,"La Moucletière",47.170455,-1.287814,-1,0,OPL:SA:AST-09836-A-09836-R,Europe/Paris,0,OPL, +OPL:SP:09836-R,1,"La Moucletière",47.170377,-1.287924,-1,0,OPL:SA:AST-09836-A-09836-R,Europe/Paris,0,OPL, +OPL:SP:09846-A,1,"Gendarmerie",47.157694,-1.272459,-1,0,OPL:SA:AST-09846-A-09846-R,Europe/Paris,0,OPL, +OPL:SP:09846-R,1,"Gendarmerie",47.157814,-1.272563,-1,0,OPL:SA:AST-09846-A-09846-R,Europe/Paris,0,OPL, +OPL:SP:09893-A,1,"Église",47.10103,-1.302295,-1,0,OPL:SA:AST-09893-A-09893-R,Europe/Paris,0,OPL, +OPL:SP:09893-R,1,"Église",47.10103,-1.302955,-1,0,OPL:SA:AST-09893-A-09893-R,Europe/Paris,0,OPL, +OPL:SP:09923-A,1,"Église",47.237825,-1.243372,-1,0,OPL:SA:AST-09923-A-09923-R,Europe/Paris,0,OPL, +OPL:SP:09923-R,1,"Église",47.237801,-1.243398,-1,0,OPL:SA:AST-09923-A-09923-R,Europe/Paris,0,OPL, +OPL:SP:09924-A,1,"Les Mauges",47.23187,-1.218807,-1,0,OPL:SA:AST-09924-A-09924-R,Europe/Paris,2,OPL, +OPL:SP:09924-R,1,"Les Mauges",47.231878,-1.218868,-1,0,OPL:SA:AST-09924-A-09924-R,Europe/Paris,2,OPL, +OPL:SP:09948-A,1,"La Chalousière",47.160444,-1.223732,-1,0,OPL:SA:AST-09948-A-09948-R,Europe/Paris,0,OPL, +OPL:SP:09948-R,1,"La Chalousière",47.160259,-1.223133,-1,0,OPL:SA:AST-09948-A-09948-R,Europe/Paris,0,OPL, +OPL:SP:09989-A,1,"Gare SNCF",47.086109,-1.28603,-1,0,STE:SA:OCE87481440,Europe/Paris,0,OPL, +OPL:SP:09989-R,1,"Gare SNCF",47.086109,-1.28669,-1,0,STE:SA:OCE87481440,Europe/Paris,0,OPL, +OPL:SP:10079-A,1,"École",47.180642,-1.177222,-1,0,OPL:SA:AST-10079-A-10079-R,Europe/Paris,0,OPL, +OPL:SP:10079-R,1,"École",47.180603,-1.17712,-1,0,OPL:SA:AST-10079-A-10079-R,Europe/Paris,0,OPL, +OPL:SP:10091-A,1,"Pirmil",47.196087,-1.542473,-1,0,OPL:SA:AST-10091-A-10091-R-10091-R1,Europe/Paris,2,OPL, +OPL:SP:10091-R,1,"Pirmil",47.19679,-1.542142,-1,0,OPL:SA:AST-10091-A-10091-R-10091-R1,Europe/Paris,0,OPL, +OPL:SP:10091-R1,1,"Pirmil",47.195994,-1.542888,-1,0,OPL:SA:AST-10091-A-10091-R-10091-R1,Europe/Paris,2,OPL, +OPL:SP:10096-A,1,"Hôtel Dieu",47.212364,-1.552961,-1,0,OPL:SA:AST-10096-A-10096-R,Europe/Paris,2,OPL, +OPL:SP:10096-R,1,"Hôtel Dieu",47.2128,-1.552197,-1,0,OPL:SA:AST-10096-A-10096-R,Europe/Paris,2,OPL, +OPL:SP:10097-A,1,"Rue de Nantes",47.151473,-1.534378,-1,0,OPL:SA:AST-10097-A-10097-R,Europe/Paris,0,OPL, +OPL:SP:10097-R,1,"Rue de Nantes",47.151163,-1.534362,-1,0,OPL:SA:AST-10097-A-10097-R,Europe/Paris,0,OPL, +OPL:SP:10141-A,1,"La Herdrie",47.198365,-1.453307,-1,0,OPL:SA:AST-10141-A-10141-R,Europe/Paris,2,OPL, +OPL:SP:10141-R,1,"La Herdrie",47.198418,-1.452826,-1,0,OPL:SA:AST-10141-A-10141-R,Europe/Paris,2,OPL, +OPL:SP:11088-A,1,"La Sureté",47.47362,-2.167192,-1,0,OPL:SA:AST-11088-A-11088-R,Europe/Paris,0,OPL, +OPL:SP:11088-R,1,"La Sureté",47.473662,-2.166983,-1,0,OPL:SA:AST-11088-A-11088-R,Europe/Paris,0,OPL, +OPL:SP:11096-A,1,"L'Angle Bertho",47.465551,-2.218932,-1,0,OPL:SA:AST-11096-A-11096-R,Europe/Paris,0,OPL, +OPL:SP:11096-R,1,"L'Angle Bertho",47.465798,-2.219055,-1,0,OPL:SA:AST-11096-A-11096-R,Europe/Paris,0,OPL, +OPL:SP:11108-A,1,"Bergon",47.460346,-2.208775,-1,0,OPL:SA:AST-11108-A-11108-R,Europe/Paris,0,OPL, +OPL:SP:11108-R,1,"Bergon",47.460368,-2.208568,-1,0,OPL:SA:AST-11108-A-11108-R,Europe/Paris,0,OPL, +OPL:SP:11110-A,1,"L'Organais",47.452244,-2.193099,-1,0,OPL:SA:AST-11110-A-11110-R,Europe/Paris,0,OPL, +OPL:SP:11110-R,1,"L'Organais",47.452438,-2.193684,-1,0,OPL:SA:AST-11110-A-11110-R,Europe/Paris,0,OPL, +OPL:SP:11130-A,1,"Montfort",47.440561,-2.191492,-1,0,OPL:SA:AST-11130-A-11130-R,Europe/Paris,0,OPL, +OPL:SP:11130-R,1,"Montfort",47.440635,-2.191712,-1,0,OPL:SA:AST-11130-A-11130-R,Europe/Paris,0,OPL, +OPL:SP:11131-A,1,"Marongle",47.433661,-2.191421,-1,0,OPL:SA:AST-11131-A-11131-R,Europe/Paris,0,OPL, +OPL:SP:11131-R,1,"Marongle",47.433661,-2.191286,-1,0,OPL:SA:AST-11131-A-11131-R,Europe/Paris,0,OPL, +OPL:SP:11163-A,1,"Gare SNCF",47.285405,-2.211992,-1,0,OPL:SA:AST-11163-A-11163-R,Europe/Paris,2,OPL, +OPL:SP:11163-R,1,"Gare SNCF",47.285479,-2.211048,-1,0,OPL:SA:AST-11163-A-11163-R,Europe/Paris,2,OPL, +OPL:SP:11211-A,1,"Saint Cado",47.439633,-2.192323,-1,0,OPL:SA:AST-11211-A-11211-R,Europe/Paris,0,OPL, +OPL:SP:11211-R,1,"Saint Cado",47.439527,-2.192191,-1,0,OPL:SA:AST-11211-A-11211-R,Europe/Paris,0,OPL, +OPL:SP:11213-A,1,"La Poterie",47.430942,-2.182679,-1,0,OPL:SA:AST-11213-A-11213-R,Europe/Paris,0,OPL, +OPL:SP:11213-R,1,"La Poterie",47.431045,-2.182933,-1,0,OPL:SA:AST-11213-A-11213-R,Europe/Paris,0,OPL, +OPL:SP:11222-A,1,"Le Bourg",47.481827,-2.159549,-1,0,OPL:SA:AST-11222-A-11222-R,Europe/Paris,0,OPL, +OPL:SP:11222-R,1,"Le Bourg",47.481974,-2.158886,-1,0,OPL:SA:AST-11222-A-11222-R,Europe/Paris,0,OPL, +OPL:SP:11231-A,1,"La Villeneuve",47.485721,-2.156689,-1,0,OPL:SA:AST-11231-A-11231-R,Europe/Paris,0,OPL, +OPL:SP:11231-R,1,"La Villeneuve",47.485551,-2.156838,-1,0,OPL:SA:AST-11231-A-11231-R,Europe/Paris,0,OPL, +OPL:SP:11331-A,1,"SEM",47.356157,-2.026662,-1,0,OPL:SA:AST-11331-A-11331-R,Europe/Paris,0,OPL, +OPL:SP:11331-R,1,"SEM",47.356102,-2.026678,-1,0,OPL:SA:AST-11331-A-11331-R,Europe/Paris,0,OPL, +OPL:SP:11333-A,1,"Tremblay",47.354661,-2.007742,-1,0,OPL:SA:AST-11333-A-11333-R,Europe/Paris,0,OPL, +OPL:SP:11333-R,1,"Tremblay",47.354527,-2.00777,-1,0,OPL:SA:AST-11333-A-11333-R,Europe/Paris,0,OPL, +OPL:SP:11348-A,1,"La Crochardais",47.463839,-1.962724,-1,0,OPL:SA:AST-11348-A-11348-R,Europe/Paris,0,OPL, +OPL:SP:11348-R,1,"La Crochardais",47.463757,-1.962748,-1,0,OPL:SA:AST-11348-A-11348-R,Europe/Paris,0,OPL, +OPL:SP:11399-A,1,"Groupe Scolaire",47.370404,-1.9706,-1,0,OPL:SA:AST-11399-A-11399-R,Europe/Paris,0,OPL, +OPL:SP:11399-R,1,"Groupe Scolaire",47.370337,-1.970706,-1,0,OPL:SA:AST-11399-A-11399-R,Europe/Paris,0,OPL, +OPL:SP:11520-A,1,"Mairie",47.320607,-1.910129,-1,0,OPL:SA:AST-11520-A-11520-R,Europe/Paris,0,OPL, +OPL:SP:11520-R,1,"Mairie",47.320538,-1.910052,-1,0,OPL:SA:AST-11520-A-11520-R,Europe/Paris,0,OPL, +OPL:SP:11577-A,1,"Croix Blanche",47.350825,-1.865102,-1,0,OPL:SA:AST-11577-A-11577-R,Europe/Paris,0,OPL, +OPL:SP:11577-R,1,"Croix Blanche",47.350669,-1.864985,-1,0,OPL:SA:AST-11577-A-11577-R,Europe/Paris,0,OPL, +OPL:SP:11612-A,1,"Papinais",47.299604,-1.849035,-1,0,OPL:SA:AST-11612-A-11612-R,Europe/Paris,0,OPL, +OPL:SP:11612-R,1,"Papinais",47.299273,-1.850564,-1,0,OPL:SA:AST-11612-A-11612-R,Europe/Paris,0,OPL, +OPL:SP:11704-A,1,"Croix de Bauche",47.294146,-1.826991,-1,0,OPL:SA:AST-11704-A-11704-R,Europe/Paris,0,OPL, +OPL:SP:11704-R,1,"Croix de Bauche",47.294606,-1.827549,-1,0,OPL:SA:AST-11704-A-11704-R,Europe/Paris,0,OPL, +OPL:SP:11783-R,1,"Louis Girard",47.328102,-1.791588,-1,0,OPL:SA:AST-11783-R,Europe/Paris,0,OPL, +OPL:SP:11789-A,1,"La Bretonnière",47.325612,-1.784244,-1,0,OPL:SA:AST-11789-A-11789-R,Europe/Paris,0,OPL, +OPL:SP:11789-R,1,"La Bretonnière",47.32569,-1.784205,-1,0,OPL:SA:AST-11789-A-11789-R,Europe/Paris,0,OPL, +OPL:SP:11800-A,1,"Église",47.326677,-1.737927,-1,0,OPL:SA:AST-11800-A-11800-R,Europe/Paris,0,OPL, +OPL:SP:11800-R,1,"Église",47.326917,-1.73758,-1,0,OPL:SA:AST-11800-A-11800-R,Europe/Paris,0,OPL, +OPL:SP:11806-A,1,"La Croix de Pierre",47.321577,-1.735614,-1,0,OPL:SA:AST-11806-A-11806-R,Europe/Paris,0,OPL, +OPL:SP:11806-R,1,"La Croix de Pierre",47.32159,-1.735472,-1,0,OPL:SA:AST-11806-A-11806-R,Europe/Paris,0,OPL, +OPL:SP:11808-A,1,"La Valinière",47.32214,-1.7506,-1,0,OPL:SA:AST-11808-A-11808-R,Europe/Paris,0,OPL, +OPL:SP:11808-R,1,"La Valinière",47.322196,-1.750778,-1,0,OPL:SA:AST-11808-A-11808-R,Europe/Paris,0,OPL, +OPL:SP:11813-A,1,"La Freuzière",47.319974,-1.767415,-1,0,OPL:SA:AST-11813-A-11813-R,Europe/Paris,0,OPL, +OPL:SP:11813-R,1,"La Freuzière",47.320429,-1.768722,-1,0,OPL:SA:AST-11813-A-11813-R,Europe/Paris,0,OPL, +OPL:SP:11831-A,1,"Le Bas Vernay",47.315126,-1.731762,-1,0,OPL:SA:AST-11831-A-11831-R,Europe/Paris,0,OPL, +OPL:SP:11831-R,1,"Le Bas Vernay",47.315146,-1.731583,-1,0,OPL:SA:AST-11831-A-11831-R,Europe/Paris,0,OPL, +OPL:SP:11839-A,1,"Moulin-Malescot",47.30884,-1.722739,-1,0,OPL:SA:AST-11839-A-11839-R,Europe/Paris,0,OPL, +OPL:SP:11839-R,1,"Moulin-Malescot",47.309007,-1.723002,-1,0,OPL:SA:AST-11839-A-11839-R,Europe/Paris,0,OPL, +OPL:SP:11872-A,1,"École du Gaz",47.283043,-1.739462,-1,0,OPL:SA:AST-11872-A-11872-R,Europe/Paris,0,OPL, +OPL:SP:11872-R,1,"École du Gaz",47.283043,-1.740124,-1,0,OPL:SA:AST-11872-A-11872-R,Europe/Paris,0,OPL, +OPL:SP:11873-A,1,"Petit Rouillonnais",47.285044,-1.747726,-1,0,OPL:SA:AST-11873-A-11873-R,Europe/Paris,0,OPL, +OPL:SP:11873-R,1,"Petit Rouillonnais",47.285044,-1.748389,-1,0,OPL:SA:AST-11873-A-11873-R,Europe/Paris,0,OPL, +OPL:SP:11888-A,1,"Route du Temple",47.279333,-1.781605,-1,0,OPL:SA:AST-11888-A-11888-R,Europe/Paris,0,OPL, +OPL:SP:11888-R,1,"Route du Temple",47.279588,-1.78142,-1,0,OPL:SA:AST-11888-A-11888-R,Europe/Paris,0,OPL, +OPL:SP:11890-A,1,"Bois Alix",47.282738,-1.802541,-1,0,OPL:SA:AST-11890-A-11890-R,Europe/Paris,0,OPL, +OPL:SP:11890-R,1,"Bois Alix",47.282894,-1.802683,-1,0,OPL:SA:AST-11890-A-11890-R,Europe/Paris,0,OPL, +OPL:SP:11924-A,1,"La Rouillonnais",47.263994,-1.764927,-1,0,OPL:SA:AST-11924-A-11924-R,Europe/Paris,0,OPL, +OPL:SP:11924-R,1,"La Rouillonnais",47.263346,-1.763377,-1,0,OPL:SA:AST-11924-A-11924-R,Europe/Paris,0,OPL, +OPL:SP:11946-A,1,"Le Chêne Creux",47.253869,-1.752623,-1,0,OPL:SA:AST-11946-A-11946-R,Europe/Paris,0,OPL, +OPL:SP:11946-R,1,"Le Chêne Creux",47.254491,-1.753355,-1,0,OPL:SA:AST-11946-A-11946-R,Europe/Paris,0,OPL, +OPL:SP:11955-A,1,"La Garneraie",47.244795,-1.725553,-1,0,OPL:SA:AST-11955-A-11955-R,Europe/Paris,0,OPL, +OPL:SP:11955-R,1,"La Garneraie",47.245694,-1.728018,-1,0,OPL:SA:AST-11955-A-11955-R,Europe/Paris,0,OPL, +OPL:SP:11980-A,1,"La Guerche",47.27879,-1.791048,-1,0,OPL:SA:AST-11980-A-11980-R,Europe/Paris,0,OPL, +OPL:SP:11980-R,1,"La Guerche",47.27894,-1.791088,-1,0,OPL:SA:AST-11980-A-11980-R,Europe/Paris,0,OPL, +OPL:SP:11990-A,1,"Golf",47.292131,-1.703893,-1,0,OPL:SA:AST-11990-A-11990-R,Europe/Paris,0,OPL, +OPL:SP:11990-R,1,"Golf",47.292238,-1.703708,-1,0,OPL:SA:AST-11990-A-11990-R,Europe/Paris,0,OPL, +OPL:SP:11991-A,1,"Naudières",47.26964,-1.697123,-1,0,OPL:SA:AST-11991-A-11991-R,Europe/Paris,2,OPL, +OPL:SP:11991-R,1,"Naudières",47.269733,-1.697035,-1,0,OPL:SA:AST-11991-A-11991-R,Europe/Paris,2,OPL, +OPL:SP:11997-A,1,"Le Bois Rignoux",47.336236,-1.699288,-1,0,OPL:SA:AST-11997-A-11997-R,Europe/Paris,0,OPL, +OPL:SP:11997-R,1,"Le Bois Rignoux",47.337023,-1.699818,-1,0,OPL:SA:AST-11997-A-11997-R,Europe/Paris,0,OPL, +OPL:SP:12001-A,1,"La Paquelais",47.331415,-1.696828,-1,0,OPL:SA:AST-12001-A-12001-R,Europe/Paris,0,OPL, +OPL:SP:12001-R,1,"La Paquelais",47.331629,-1.696696,-1,0,OPL:SA:AST-12001-A-12001-R,Europe/Paris,0,OPL, +OPL:SP:12005-A,1,"La Bouvardière",47.320478,-1.695506,-1,0,OPL:SA:AST-12005-A-12005-R,Europe/Paris,0,OPL, +OPL:SP:12005-R,1,"La Bouvardière",47.321551,-1.696131,-1,0,OPL:SA:AST-12005-A-12005-R,Europe/Paris,0,OPL, +OPL:SP:12012-A,1,"Cinq Chemins de Valais",47.3159,-1.689326,-1,0,OPL:SA:AST-12012-A-12012-R,Europe/Paris,0,OPL, +OPL:SP:12012-R,1,"Cinq Chemins de Valais",47.315914,-1.689187,-1,0,OPL:SA:AST-12012-A-12012-R,Europe/Paris,0,OPL, +OPL:SP:12019-A,1,"La Chouamétrie",47.308125,-1.679504,-1,0,OPL:SA:AST-12019-A-12019-R,Europe/Paris,0,OPL, +OPL:SP:12019-R,1,"La Chouamétrie",47.308212,-1.679499,-1,0,OPL:SA:AST-12019-A-12019-R,Europe/Paris,0,OPL, +OPL:SP:12024-A,1,"Gaudinière",47.301234,-1.710935,-1,0,OPL:SA:AST-12024-A-12024-R,Europe/Paris,0,OPL, +OPL:SP:12024-R,1,"Gaudinière",47.301309,-1.710751,-1,0,OPL:SA:AST-12024-A-12024-R,Europe/Paris,0,OPL, +OPL:SP:12033-A,1,"La Plée",47.299259,-1.664345,-1,0,OPL:SA:AST-12033-A-12033-R,Europe/Paris,0,OPL, +OPL:SP:12033-R,1,"La Plée",47.299651,-1.664595,-1,0,OPL:SA:AST-12033-A-12033-R,Europe/Paris,0,OPL, +OPL:SP:12038-A,1,"Bel Abord",47.276463,-1.711509,-1,0,OPL:SA:AST-12038-A-12038-R,Europe/Paris,2,OPL, +OPL:SP:12038-R,1,"Bel Abord",47.276473,-1.71136,-1,0,OPL:SA:AST-12038-A-12038-R,Europe/Paris,2,OPL, +OPL:SP:12041-A,1,"Rousselière",47.232691,-1.646087,-1,0,OPL:SA:AST-12041-A-12041-R,Europe/Paris,2,OPL, +OPL:SP:12041-R,1,"Rousselière",47.232747,-1.645955,-1,0,OPL:SA:AST-12041-A-12041-R,Europe/Paris,2,OPL, +OPL:SP:12131-A,1,"Château de Clermont",47.327421,-1.341668,-1,0,OPL:SA:AST-12131-A-12131-R,Europe/Paris,0,OPL, +OPL:SP:12131-R,1,"Château de Clermont",47.327421,-1.341656,-1,0,OPL:SA:AST-12131-A-12131-R,Europe/Paris,0,OPL, +OPL:SP:12136-A,1,"Relandières Parking",47.319818,-1.378703,-1,0,OPL:SA:AST-12136-A-12136-R,Europe/Paris,0,OPL, +OPL:SP:12136-R,1,"Relandières Parking",47.319818,-1.378689,-1,0,OPL:SA:AST-12136-A-12136-R,Europe/Paris,0,OPL, +OPL:SP:12190-A,1,"Le Moulin Blanc",47.324067,-1.614871,-1,0,OPL:SA:AST-12190-A-12190-R,Europe/Paris,2,OPL, +OPL:SP:12190-R,1,"Le Moulin Blanc",47.324404,-1.614876,-1,0,OPL:SA:AST-12190-A-12190-R,Europe/Paris,2,OPL, +OPL:SP:12203-A,1,"Le Gray",47.284178,-1.586854,-1,0,OPL:SA:AST-12203-A-12203-R,Europe/Paris,0,OPL, +OPL:SP:12203-R,1,"Le Gray",47.283695,-1.586579,-1,0,OPL:SA:AST-12203-A-12203-R,Europe/Paris,0,OPL, +OPL:SP:12231-A,1,"La Butte",47.369343,-1.606463,-1,0,OPL:SA:AST-12231-A-12231-R,Europe/Paris,2,OPL, +OPL:SP:12231-R,1,"La Butte",47.369511,-1.606339,-1,0,OPL:SA:AST-12231-A-12231-R,Europe/Paris,2,OPL, +OPL:SP:12232-A,1,"Mairie",47.364364,-1.606079,-1,0,OPL:SA:AST-12232-A-12232-R,Europe/Paris,2,OPL, +OPL:SP:12232-R,1,"Mairie",47.364066,-1.605934,-1,0,OPL:SA:AST-12232-A-12232-R,Europe/Paris,2,OPL, +OPL:SP:12243-A,1,"Bellevue",47.356512,-1.604414,-1,0,OPL:SA:AST-12243-A-12243-R,Europe/Paris,2,OPL, +OPL:SP:12243-R,1,"Bellevue",47.356527,-1.60419,-1,0,OPL:SA:AST-12243-A-12243-R,Europe/Paris,2,OPL, +OPL:SP:12251-A,1,"Rochère",47.346103,-1.608341,-1,0,OPL:SA:AST-12251-A-12251-R,Europe/Paris,2,OPL, +OPL:SP:12251-R,1,"Rochère",47.346014,-1.608215,-1,0,OPL:SA:AST-12251-A-12251-R,Europe/Paris,2,OPL, +OPL:SP:12262-A,1,"Belle Etoile",47.330845,-1.617725,-1,0,OPL:SA:AST-12262-A-12262-R,Europe/Paris,2,OPL, +OPL:SP:12262-R,1,"Belle Etoile",47.33061,-1.617353,-1,0,OPL:SA:AST-12262-A-12262-R,Europe/Paris,2,OPL, +OPL:SP:12264-A,1,"Poste de Gesvres",47.327443,-1.616133,-1,0,OPL:SA:AST-12264-A-12264-R,Europe/Paris,2,OPL, +OPL:SP:12264-R,1,"Poste de Gesvres",47.327535,-1.616041,-1,0,OPL:SA:AST-12264-A-12264-R,Europe/Paris,2,OPL, +OPL:SP:12274-A,1,"Ménardais",47.306953,-1.618042,-1,0,OPL:SA:AST-12274-A-12274-R,Europe/Paris,2,OPL, +OPL:SP:12274-R,1,"Ménardais",47.306846,-1.617847,-1,0,OPL:SA:AST-12274-A-12274-R,Europe/Paris,2,OPL, +OPL:SP:12280-A,1,"Noé Violin",47.300737,-1.591604,-1,0,OPL:SA:AST-12280-A-12280-R,Europe/Paris,0,OPL, +OPL:SP:12280-R,1,"Noé Violin",47.300722,-1.591601,-1,0,OPL:SA:AST-12280-A-12280-R,Europe/Paris,0,OPL, +OPL:SP:12286-A,1,"Pigeon Blanc",47.295831,-1.611444,-1,0,OPL:SA:AST-12286-A-12286-R-12286-R1,Europe/Paris,0,OPL, +OPL:SP:12286-R,1,"Pigeon Blanc",47.296797,-1.611808,-1,0,OPL:SA:AST-12286-A-12286-R-12286-R1,Europe/Paris,0,OPL, +OPL:SP:12286-R1,1,"Pigeon Blanc",47.296466,-1.612737,-1,0,OPL:SA:AST-12286-A-12286-R-12286-R1,Europe/Paris,0,OPL, +OPL:SP:12287-A,1,"Télégraphe",47.29081,-1.608259,-1,0,OPL:SA:AST-12287-A-12287-R,Europe/Paris,0,OPL, +OPL:SP:12287-R,1,"Télégraphe",47.289735,-1.607114,-1,0,OPL:SA:AST-12287-A-12287-R,Europe/Paris,0,OPL, +OPL:SP:12369-A,1,"Pas Chevalier",47.400427,-1.540357,-1,0,OPL:SA:AST-12369-A-12369-R,Europe/Paris,0,OPL, +OPL:SP:12369-R,1,"Pas Chevalier",47.400937,-1.539808,-1,0,OPL:SA:AST-12369-A-12369-R,Europe/Paris,0,OPL, +OPL:SP:12382-A,1,"Château d'Eau",47.387858,-1.556505,-1,0,OPL:SA:AST-12382-A-12382-R,Europe/Paris,2,OPL, +OPL:SP:12382-R,1,"Château d'Eau",47.388048,-1.556166,-1,0,OPL:SA:AST-12382-A-12382-R,Europe/Paris,2,OPL, +OPL:SP:12387-A,1,"Rue du Château",47.384609,-1.560008,-1,0,OPL:SA:AST-12387-A-12387-R,Europe/Paris,0,OPL, +OPL:SP:12387-R,1,"Rue du Château",47.38498,-1.559738,-1,0,OPL:SA:AST-12387-A-12387-R,Europe/Paris,0,OPL, +OPL:SP:12396-A,1,"Beauchêne",47.369572,-1.551613,-1,0,OPL:SA:AST-12396-A-12396-R,Europe/Paris,0,OPL, +OPL:SP:12396-R,1,"Beauchêne",47.369855,-1.551681,-1,0,OPL:SA:AST-12396-A-12396-R,Europe/Paris,0,OPL, +OPL:SP:12400-A,1,"Cornette",47.357134,-1.540653,-1,0,OPL:SA:AST-12400-A-12400-R,Europe/Paris,0,OPL, +OPL:SP:12400-R,1,"Cornette",47.357312,-1.540644,-1,0,OPL:SA:AST-12400-A-12400-R,Europe/Paris,0,OPL, +OPL:SP:12410-A,1,"Maison Blanche",47.352758,-1.5382,-1,0,OPL:SA:AST-12410-A-12410-R,Europe/Paris,0,OPL, +OPL:SP:12410-R,1,"Maison Blanche",47.352246,-1.537772,-1,0,OPL:SA:AST-12410-A-12410-R,Europe/Paris,0,OPL, +OPL:SP:12469-A,1,"Rond-point de Paris",47.23343,-1.53639,-1,0,OPL:SA:AST-12469-A-12469-R,Europe/Paris,2,OPL, +OPL:SP:12469-R,1,"Rond-point de Paris",47.234289,-1.535421,-1,0,OPL:SA:AST-12469-A-12469-R,Europe/Paris,2,OPL, +OPL:SP:12470-A,1,"St Clément",47.222148,-1.546918,-1,0,OPL:SA:AST-12470-A-12470-R,Europe/Paris,2,OPL, +OPL:SP:12470-R,1,"St Clément",47.222108,-1.546841,-1,0,OPL:SA:AST-12470-A-12470-R,Europe/Paris,2,OPL, +OPL:SP:12490-A,1,"St Donatien",47.229017,-1.540759,-1,0,OPL:SA:AST-12490-A-12490-R,Europe/Paris,2,OPL, +OPL:SP:12490-R,1,"St Donatien",47.229248,-1.540422,-1,0,OPL:SA:AST-12490-A-12490-R,Europe/Paris,2,OPL, +OPL:SP:12545-A,1,"Faubourg Saint Georges",47.440586,-1.487257,-1,0,OPL:SA:AST-12545-A-12545-R,Europe/Paris,0,OPL, +OPL:SP:12545-R,1,"Faubourg Saint Georges",47.440482,-1.487417,-1,0,OPL:SA:AST-12545-A-12545-R,Europe/Paris,0,OPL, +OPL:SP:12625-A,1,"Centre",47.296626,-1.491048,-1,0,OPL:SA:AST-12625-A-12625-R,Europe/Paris,0,OPL, +OPL:SP:12625-R,1,"Centre",47.29656,-1.490942,-1,0,OPL:SA:AST-12625-A-12625-R,Europe/Paris,0,OPL, +OPL:SP:12630-A,1,"Bréchetière",47.284693,-1.503659,-1,0,OPL:SA:AST-12630-A-12630-R,Europe/Paris,0,OPL, +OPL:SP:12630-R,1,"Bréchetière",47.284642,-1.503495,-1,0,OPL:SA:AST-12630-A-12630-R,Europe/Paris,0,OPL, +OPL:SP:12653-A,1,"Haluchère-Batignolles",47.249712,-1.523473,-1,0,OPL:SA:AST-12653-A-12653-R,Europe/Paris,2,OPL, +OPL:SP:12653-R,1,"Haluchère-Batignolles",47.249699,-1.523448,-1,0,OPL:SA:AST-12653-A-12653-R,Europe/Paris,2,OPL, +OPL:SP:12747-A,1,"L'Isle",47.424935,-1.482394,-1,0,OPL:SA:AST-12747-A-12747-R,Europe/Paris,0,OPL, +OPL:SP:12747-R,1,"L'Isle",47.42517,-1.482057,-1,0,OPL:SA:AST-12747-A-12747-R,Europe/Paris,0,OPL, +OPL:SP:12767-A,1,"La Furetière",47.408969,-1.463847,-1,0,OPL:SA:AST-12767-A-12767-R,Europe/Paris,0,OPL, +OPL:SP:12767-R,1,"La Furetière",47.409328,-1.464142,-1,0,OPL:SA:AST-12767-A-12767-R,Europe/Paris,0,OPL, +OPL:SP:12780-A,1,"Pharmacie",47.391797,-1.45541,-1,0,OPL:SA:AST-12780-A-12780-R,Europe/Paris,0,OPL, +OPL:SP:12780-R,1,"Pharmacie",47.391623,-1.455269,-1,0,OPL:SA:AST-12780-A-12780-R,Europe/Paris,0,OPL, +OPL:SP:12784-A,1,"La Dechausserie",47.38234,-1.453271,-1,0,OPL:SA:AST-12784-A-12784-R,Europe/Paris,0,OPL, +OPL:SP:12784-R,1,"La Dechausserie",47.382664,-1.453112,-1,0,OPL:SA:AST-12784-A-12784-R,Europe/Paris,0,OPL, +OPL:SP:12793-A,1,"La Grée",47.366067,-1.454767,-1,0,OPL:SA:AST-12793-A-12793-R,Europe/Paris,0,OPL, +OPL:SP:12793-R,1,"La Grée",47.36623,-1.454578,-1,0,OPL:SA:AST-12793-A-12793-R,Europe/Paris,0,OPL, +OPL:SP:12796-A,1,"Beauchène",47.357765,-1.457464,-1,0,OPL:SA:AST-12796-A-12796-R,Europe/Paris,0,OPL, +OPL:SP:12796-R,1,"Beauchène",47.357819,-1.45721,-1,0,OPL:SA:AST-12796-A-12796-R,Europe/Paris,0,OPL, +OPL:SP:12807-A,1,"La Noé",47.349308,-1.46478,-1,0,OPL:SA:AST-12807-A-12807-R,Europe/Paris,0,OPL, +OPL:SP:12807-R,1,"La Noé",47.349238,-1.464668,-1,0,OPL:SA:AST-12807-A-12807-R,Europe/Paris,0,OPL, +OPL:SP:12819-A,1,"Le Perray",47.335394,-1.45317,-1,0,OPL:SA:AST-12819-A-12819-R,Europe/Paris,0,OPL, +OPL:SP:12819-R,1,"Le Perray",47.336408,-1.452578,-1,0,OPL:SA:AST-12819-A-12819-R,Europe/Paris,0,OPL, +OPL:SP:12834-A,1,"L'Épeau",47.321214,-1.469997,-1,0,OPL:SA:AST-12834-A-12834-R,Europe/Paris,0,OPL, +OPL:SP:12834-R,1,"L'Épeau",47.321449,-1.469665,-1,0,OPL:SA:AST-12834-A-12834-R,Europe/Paris,0,OPL, +OPL:SP:13011-A,1,"La Treluère",47.372829,-1.407231,-1,0,OPL:SA:AST-13011-A-13011-R,Europe/Paris,0,OPL, +OPL:SP:13011-R,1,"La Treluère",47.373044,-1.406698,-1,0,OPL:SA:AST-13011-A-13011-R,Europe/Paris,0,OPL, +OPL:SP:13029-A,1,"Pinsoison",47.359239,-1.410435,-1,0,OPL:SA:AST-13029-A-13029-R,Europe/Paris,0,OPL, +OPL:SP:13029-R,1,"Pinsoison",47.359255,-1.410208,-1,0,OPL:SA:AST-13029-A-13029-R,Europe/Paris,0,OPL, +OPL:SP:13041-A,1,"La Goulière",47.351171,-1.418928,-1,0,OPL:SA:AST-13041-A-13041-R,Europe/Paris,0,OPL, +OPL:SP:13041-R,1,"La Goulière",47.351176,-1.41882,-1,0,OPL:SA:AST-13041-A-13041-R,Europe/Paris,0,OPL, +OPL:SP:13049-A,1,"Longrais",47.342282,-1.438732,-1,0,OPL:SA:AST-13049-A-13049-R,Europe/Paris,0,OPL, +OPL:SP:13049-R,1,"Longrais",47.341992,-1.439266,-1,0,OPL:SA:AST-13049-A-13049-R,Europe/Paris,0,OPL, +OPL:SP:13136-A,1,"Le Plessis",47.398466,-1.380066,-1,0,OPL:SA:AST-13136-A-13136-R,Europe/Paris,0,OPL, +OPL:SP:13136-R,1,"Le Plessis",47.398248,-1.379968,-1,0,OPL:SA:AST-13136-A-13136-R,Europe/Paris,0,OPL, +OPL:SP:13143-A,1,"Bel Air",47.380688,-1.395272,-1,0,OPL:SA:AST-13143-A-13143-R,Europe/Paris,0,OPL, +OPL:SP:13143-R,1,"Bel Air",47.380772,-1.394966,-1,0,OPL:SA:AST-13143-A-13143-R,Europe/Paris,0,OPL, +OPL:SP:13170-A,1,"Mairie",47.447938,-1.346651,-1,0,OPL:SA:AST-13170-A-13170-R,Europe/Paris,0,OPL, +OPL:SP:13170-R,1,"Mairie",47.447864,-1.346656,-1,0,OPL:SA:AST-13170-A-13170-R,Europe/Paris,0,OPL, +OPL:SP:13209-A,1,"Levée des dons",47.302734,-1.627081,-1,0,OPL:SA:AST-13209-A-13209-R,Europe/Paris,0,OPL, +OPL:SP:13209-R,1,"Levée des dons",47.302692,-1.626493,-1,0,OPL:SA:AST-13209-A-13209-R,Europe/Paris,0,OPL, +OPL:SP:13219-A,1,"Curette",47.358968,-1.631735,-1,0,OPL:SA:AST-13219-A-13219-R,Europe/Paris,2,OPL, +OPL:SP:13219-R,1,"Curette",47.359646,-1.631926,-1,0,OPL:SA:AST-13219-A-13219-R,Europe/Paris,2,OPL, +OPL:SP:13236-A,1,"Boeufs Gras",47.347187,-1.625817,-1,0,OPL:SA:AST-13236-A-13236-R,Europe/Paris,0,OPL, +OPL:SP:13236-R,1,"Boeufs Gras",47.347471,-1.625819,-1,0,OPL:SA:AST-13236-A-13236-R,Europe/Paris,0,OPL, +OPL:SP:13241-A,1,"Place de la Liberté",47.330824,-1.623691,-1,0,OPL:SA:AST-13241-A-13241-R,Europe/Paris,0,OPL, +OPL:SP:13241-R,1,"Place de la Liberté",47.330832,-1.623617,-1,0,OPL:SA:AST-13241-A-13241-R,Europe/Paris,0,OPL, +OPL:SP:13245-A,1,"Muzon",47.331223,-1.668736,-1,0,OPL:SA:AST-13245-A-13245-R,Europe/Paris,0,OPL, +OPL:SP:13245-R,1,"Muzon",47.331225,-1.668751,-1,0,OPL:SA:AST-13245-A-13245-R,Europe/Paris,0,OPL, +OPL:SP:13247-A,1,"Grehandière",47.326468,-1.643766,-1,0,OPL:SA:AST-13247-A-13247-R,Europe/Paris,0,OPL, +OPL:SP:13247-R,1,"Grehandière",47.326605,-1.643555,-1,0,OPL:SA:AST-13247-A-13247-R,Europe/Paris,0,OPL, +OPL:SP:13251-A,1,"Sionnière",47.318049,-1.63967,-1,0,OPL:SA:AST-13251-A-13251-R,Europe/Paris,0,OPL, +OPL:SP:13251-R,1,"Sionnière",47.318178,-1.639619,-1,0,OPL:SA:AST-13251-A-13251-R,Europe/Paris,0,OPL, +OPL:SP:13252-A,1,"Garambeau",47.313487,-1.633603,-1,0,OPL:SA:AST-13252-A-13252-R,Europe/Paris,0,OPL, +OPL:SP:13252-R,1,"Garambeau",47.313411,-1.633389,-1,0,OPL:SA:AST-13252-A-13252-R,Europe/Paris,0,OPL, +OPL:SP:13259-A,1,"La Fontaine",47.310365,-1.6319,-1,0,OPL:SA:AST-13259-A-13259-R,Europe/Paris,0,OPL, +OPL:SP:13259-R,1,"La Fontaine",47.310087,-1.631726,-1,0,OPL:SA:AST-13259-A-13259-R,Europe/Paris,0,OPL, +OPL:SP:13422-A,1,"Jean Burel",47.644372,-2.071732,-1,0,OPL:SA:AST-13422-A-13422-R,Europe/Paris,0,OPL, +OPL:SP:13422-R,1,"Jean Burel",47.64434,-2.072048,-1,0,OPL:SA:AST-13422-A-13422-R,Europe/Paris,0,OPL, +OPL:SP:13435-A,1,"Jean du Dresnay",47.586221,-2.043141,-1,0,OPL:SA:AST-13435-A-13435-R,Europe/Paris,2,OPL, +OPL:SP:13435-R,1,"Jean du Dresnay",47.586181,-2.042981,-1,0,OPL:SA:AST-13435-A-13435-R,Europe/Paris,2,OPL, +OPL:SP:13673-A,1,"La Normandais",47.556746,-2.054778,-1,0,OPL:SA:AST-13673-A-13673-R,Europe/Paris,0,OPL, +OPL:SP:13673-R,1,"La Normandais",47.556714,-2.054597,-1,0,OPL:SA:AST-13673-A-13673-R,Europe/Paris,0,OPL, +OPL:SP:13812-A,1,"Mairie",47.519424,-1.954936,-1,0,OPL:SA:AST-13812-A-13812-R,Europe/Paris,0,OPL, +OPL:SP:13812-R,1,"Mairie",47.519686,-1.955613,-1,0,OPL:SA:AST-13812-A-13812-R,Europe/Paris,0,OPL, +OPL:SP:13972-A,1,"Notre Dame de Grace",47.489539,-1.931397,-1,0,OPL:SA:AST-13972-A-13972-R,Europe/Paris,0,OPL, +OPL:SP:13972-R,1,"Notre Dame de Grace",47.489672,-1.931212,-1,0,OPL:SA:AST-13972-A-13972-R,Europe/Paris,0,OPL, +OPL:SP:14002-A,1,"Saint-Eloi",47.41722,-1.893629,-1,0,OPL:SA:AST-14002-A-14002-R,Europe/Paris,0,OPL, +OPL:SP:14002-R,1,"Saint-Eloi",47.417133,-1.893334,-1,0,OPL:SA:AST-14002-A-14002-R,Europe/Paris,0,OPL, +OPL:SP:14149-A,1,"La Laiterie",47.549441,-1.862361,-1,0,OPL:SA:AST-14149-A-14149-R,Europe/Paris,0,OPL, +OPL:SP:14149-R,1,"La Laiterie",47.549589,-1.862228,-1,0,OPL:SA:AST-14149-A-14149-R,Europe/Paris,0,OPL, +OPL:SP:14150-A,1,"Le Plessis",47.554429,-1.872212,-1,0,OPL:SA:AST-14150-A,Europe/Paris,0,OPL, +OPL:SP:14150-R,1,"Le Plessis",47.551369,-1.873094,-1,0,OPL:SA:AST-14150-R,Europe/Paris,0,OPL, +OPL:SP:14161-A,1,"Place du Lion d'Or",47.540885,-1.887293,-1,0,OPL:SA:AST-14161-A-14161-R,Europe/Paris,0,OPL, +OPL:SP:14161-R,1,"Place du Lion d'Or",47.54089,-1.887291,-1,0,OPL:SA:AST-14161-A-14161-R,Europe/Paris,0,OPL, +OPL:SP:14275-A,1,"Église",47.361059,-1.863393,-1,0,OPL:SA:AST-14275-A-14275-R,Europe/Paris,0,OPL, +OPL:SP:14275-R,1,"Église",47.361005,-1.863249,-1,0,OPL:SA:AST-14275-A-14275-R,Europe/Paris,0,OPL, +OPL:SP:14299-A,1,"Rue Saint Jean",47.62779,-1.83323,-1,0,OPL:SA:AST-14299-A-14299-R,Europe/Paris,2,OPL, +OPL:SP:14299-R,1,"Rue Saint Jean",47.627814,-1.833292,-1,0,OPL:SA:AST-14299-A-14299-R,Europe/Paris,2,OPL, +OPL:SP:14413-A,1,"Trelan",47.558408,-1.808008,-1,0,OPL:SA:AST-14413-A-14413-R,Europe/Paris,0,OPL, +OPL:SP:14413-R,1,"Trelan",47.558557,-1.80759,-1,0,OPL:SA:AST-14413-A-14413-R,Europe/Paris,0,OPL, +OPL:SP:14416-A,1,"Maison Blanche",47.559545,-1.821615,-1,0,OPL:SA:AST-14416-A-14416-R,Europe/Paris,0,OPL, +OPL:SP:14416-R,1,"Maison Blanche",47.559621,-1.821574,-1,0,OPL:SA:AST-14416-A-14416-R,Europe/Paris,0,OPL, +OPL:SP:14420-A,1,"Le Coudray",47.557885,-1.839688,-1,0,OPL:SA:AST-14420-A-14420-R,Europe/Paris,0,OPL, +OPL:SP:14420-R,1,"Le Coudray",47.557955,-1.839408,-1,0,OPL:SA:AST-14420-A-14420-R,Europe/Paris,0,OPL, +OPL:SP:14466-A,1,"Pont Piétin",47.461172,-1.814832,-1,0,OPL:SA:AST-14466-A-14466-R,Europe/Paris,0,OPL, +OPL:SP:14466-R,1,"Pont Piétin",47.461168,-1.81452,-1,0,OPL:SA:AST-14466-A-14466-R,Europe/Paris,0,OPL, +OPL:SP:14495-A,1,"Hôtel de France RN 171",47.443612,-1.812974,-1,0,OPL:SA:AST-14495-A-14495-R,Europe/Paris,0,OPL, +OPL:SP:14495-A1,1,"Hôtel de France RD 81",47.443889,-1.814208,-1,0,OPL:SA:AST-14495-A1-14495-R1,Europe/Paris,0,OPL, +OPL:SP:14495-R,1,"Hôtel de France RN 171",47.443637,-1.81263,-1,0,OPL:SA:AST-14495-A-14495-R,Europe/Paris,0,OPL, +OPL:SP:14495-R1,1,"Hôtel de France RD 81",47.443951,-1.814115,-1,0,OPL:SA:AST-14495-A1-14495-R1,Europe/Paris,0,OPL, +OPL:SP:14505-A,1,"La Ridelais",47.416362,-1.828767,-1,0,OPL:SA:AST-14505-A-14505-R,Europe/Paris,0,OPL, +OPL:SP:14505-R,1,"La Ridelais",47.416455,-1.827498,-1,0,OPL:SA:AST-14505-A-14505-R,Europe/Paris,0,OPL, +OPL:SP:14717-A,1,"La Carrée",47.461647,-1.783725,-1,0,OPL:SA:AST-14717-A-14717-A1-14717-R,Europe/Paris,0,OPL, +OPL:SP:14717-A1,1,"La Carrée",47.462273,-1.784302,-1,0,OPL:SA:AST-14717-A-14717-A1-14717-R,Europe/Paris,0,OPL, +OPL:SP:14717-R,1,"La Carrée",47.461843,-1.782925,-1,0,OPL:SA:AST-14717-A-14717-A1-14717-R,Europe/Paris,0,OPL, +OPL:SP:14719-A,1,"Pont de Maffre",47.462494,-1.781328,-1,0,OPL:SA:AST-14719-A-14719-R,Europe/Paris,0,OPL, +OPL:SP:14719-R,1,"Pont de Maffre",47.463227,-1.779015,-1,0,OPL:SA:AST-14719-A-14719-R,Europe/Paris,0,OPL, +OPL:SP:14741-A,1,"La Croix Couëdel",47.416204,-1.796754,-1,0,OPL:SA:AST-14741-A-14741-R,Europe/Paris,0,OPL, +OPL:SP:14741-R,1,"La Croix Couëdel",47.416309,-1.797062,-1,0,OPL:SA:AST-14741-A-14741-R,Europe/Paris,0,OPL, +OPL:SP:14751-A,1,"La Porte du Gué-Géraud",47.409308,-1.76001,-1,0,OPL:SA:AST-14751-A-14751-R,Europe/Paris,0,OPL, +OPL:SP:14751-R,1,"La Porte du Gué-Géraud",47.409473,-1.760246,-1,0,OPL:SA:AST-14751-A-14751-R,Europe/Paris,0,OPL, +OPL:SP:14920-A,1,"La Roberdais",47.540089,-1.755786,-1,0,OPL:SA:AST-14920-A-14920-R,Europe/Paris,0,OPL, +OPL:SP:14920-R,1,"La Roberdais",47.540375,-1.755556,-1,0,OPL:SA:AST-14920-A-14920-R,Europe/Paris,0,OPL, +OPL:SP:15034-A,1,"Bredeloup",47.399066,-1.724525,-1,0,OPL:SA:AST-15034-A-15034-R,Europe/Paris,0,OPL, +OPL:SP:15034-R,1,"Bredeloup",47.399247,-1.724541,-1,0,OPL:SA:AST-15034-A-15034-R,Europe/Paris,0,OPL, +OPL:SP:15252-A,1,"La Bosse des Landes",47.400945,-1.646027,-1,0,OPL:SA:AST-15252-A-15252-R,Europe/Paris,0,OPL, +OPL:SP:15252-R,1,"La Bosse des Landes",47.401397,-1.646156,-1,0,OPL:SA:AST-15252-A-15252-R,Europe/Paris,0,OPL, +OPL:SP:15294-A,1,"L'Épine",47.369519,-1.703995,-1,0,OPL:SA:AST-15294-A-15294-R,Europe/Paris,0,OPL, +OPL:SP:15294-R,1,"L'Épine",47.369326,-1.703798,-1,0,OPL:SA:AST-15294-A-15294-R,Europe/Paris,0,OPL, +OPL:SP:15296-A,1,"La Boissière",47.347617,-1.696436,-1,0,OPL:SA:AST-15296-A-15296-R,Europe/Paris,0,OPL, +OPL:SP:15296-R,1,"La Boissière",47.347575,-1.696334,-1,0,OPL:SA:AST-15296-A-15296-R,Europe/Paris,0,OPL, +OPL:SP:15767-PV,1,"Nantes Gare sncf",47.216102,-1.540342,-1,0,OPL:SA:AST-15767-PV,Europe/Paris,0,OPL, +OPL:SP:15784-A,1,"La Harlière",47.409984,-1.931749,-1,0,OPL:SA:AST-15784-A-15784-R,Europe/Paris,0,OPL, +OPL:SP:15784-R,1,"La Harlière",47.409922,-1.931298,-1,0,OPL:SA:AST-15784-A-15784-R,Europe/Paris,0,OPL, +OPL:SP:15788-A,1,"Église",47.476034,-2.056785,-1,0,OPL:SA:AST-15788-A-15788-R,Europe/Paris,2,OPL, +OPL:SP:15788-R,1,"Église",47.47619,-2.05656,-1,0,OPL:SA:AST-15788-A-15788-R,Europe/Paris,2,OPL, +OPL:SP:15882-A,1,"La Bauche Tue Loup",47.139648,-1.550971,-1,0,OPL:SA:AST-15882-A-15882-R,Europe/Paris,0,OPL, +OPL:SP:15882-R,1,"La Bauche Tue Loup",47.139677,-1.551052,-1,0,OPL:SA:AST-15882-A-15882-R,Europe/Paris,0,OPL, +OPL:SP:20713-A,1,"St Jean Baptiste de la Salle",47.233424,-1.559876,-1,0,OPL:SA:AST-20713-A-20713-R,Europe/Paris,2,OPL, +OPL:SP:20713-R,1,"St Jean Baptiste de la Salle",47.233403,-1.56006,-1,0,OPL:SA:AST-20713-A-20713-R,Europe/Paris,2,OPL, +OPL:SP:20818-A,1,"Lycée Appert",47.251089,-1.610745,-1,0,OPL:SA:AST-20818-A-20818-R,Europe/Paris,2,OPL, +OPL:SP:20818-R,1,"Lycée Appert",47.251729,-1.611334,-1,0,OPL:SA:AST-20818-A-20818-R,Europe/Paris,2,OPL, +OPL:SP:20826-A,1,"Louise Michel",47.286695,-2.025628,-1,0,OPL:SA:AST-20826-A-20826-A1-20826-R,Europe/Paris,2,OPL, +OPL:SP:20826-A1,1,"Louise Michel",47.286333,-2.024212,-1,0,OPL:SA:AST-20826-A-20826-A1-20826-R,Europe/Paris,0,OPL, +OPL:SP:20826-R,1,"Louise Michel",47.28632,-2.024148,-1,0,OPL:SA:AST-20826-A-20826-A1-20826-R,Europe/Paris,2,OPL, +OPL:SP:20954-A,1,"Collège Ste Anne",47.190426,-1.565148,-1,0,OPL:SA:AST-20954-A-20954-R,Europe/Paris,0,OPL, +OPL:SP:20954-R,1,"Collège Ste Anne",47.190418,-1.565123,-1,0,OPL:SA:AST-20954-A-20954-R,Europe/Paris,0,OPL, +OPL:SP:20956-A,1,"Collège Petite Lande",47.177744,-1.550099,-1,0,OPL:SA:AST-20956-A-20956-R,Europe/Paris,2,OPL, +OPL:SP:20956-R,1,"Collège Petite Lande",47.177777,-1.550052,-1,0,OPL:SA:AST-20956-A-20956-R,Europe/Paris,2,OPL, +OPL:SP:20958-R,1,"Pinier",47.183357,-1.544625,-1,0,OPL:SA:AST-20958-R-25251-A-25251-R,Europe/Paris,2,OPL, +OPL:SP:20960-A,1,"Jean Perrin",47.181248,-1.560726,-1,0,OPL:SA:AST-20960-A-20960-R,Europe/Paris,0,OPL, +OPL:SP:20960-R,1,"Jean Perrin",47.181341,-1.560948,-1,0,OPL:SA:AST-20960-A-20960-R,Europe/Paris,0,OPL, +OPL:SP:21111-A,1,"CIFAM",47.265798,-1.488191,-1,0,OPL:SA:AST-21111-A-21111-R,Europe/Paris,0,OPL, +OPL:SP:21111-R,1,"CIFAM",47.266713,-1.485836,-1,0,OPL:SA:AST-21111-A-21111-R,Europe/Paris,0,OPL, +OPL:SP:21247,1,"Maison Familiale Rurale",47.040849,-1.645839,-1,0,OPL:SA:AST-21247,Europe/Paris,0,OPL, +OPL:SP:21267-A,1,"Joliverie",47.189658,-1.516603,-1,0,OPL:SA:AST-21267-A-21267-A1-21267-R-21267-R1,Europe/Paris,0,OPL, +OPL:SP:21267-A1,1,"Joliverie",47.189937,-1.519179,-1,0,OPL:SA:AST-21267-A-21267-A1-21267-R-21267-R1,Europe/Paris,2,OPL, +OPL:SP:21267-R,1,"Joliverie",47.18949,-1.517248,-1,0,OPL:SA:AST-21267-A-21267-A1-21267-R-21267-R1,Europe/Paris,0,OPL, +OPL:SP:21267-R1,1,"Joliverie",47.189855,-1.519309,-1,0,OPL:SA:AST-21267-A-21267-A1-21267-R-21267-R1,Europe/Paris,2,OPL, +OPL:SP:22098-A,1,"Le Pilon Carrefour",47.18319,-1.7798,-1,0,OPL:SA:AST-22098-A-22098-R,Europe/Paris,0,OPL, +OPL:SP:22098-R,1,"Le Pilon Carrefour",47.184927,-1.778144,-1,0,OPL:SA:AST-22098-A-22098-R,Europe/Paris,0,OPL, +OPL:SP:22110-A,1,"3 Moulins",47.178193,-1.544243,-1,0,OPL:SA:AST-22110-A-22110-R,Europe/Paris,2,OPL, +OPL:SP:22110-R,1,"3 Moulins",47.17854,-1.54447,-1,0,OPL:SA:AST-22110-A-22110-R,Europe/Paris,2,OPL, +OPL:SP:22111-A,1,"La Carrée - Rivière",47.168797,-1.542906,-1,0,OPL:SA:AST-22111-A,Europe/Paris,2,OPL, +OPL:SP:22111-A1,1,"La Carrée-Praud",47.168508,-1.543542,-1,0,OPL:SA:AST-22111-A1,Europe/Paris,2,OPL, +OPL:SP:22111-R,1,"La Carrée-Rivière",47.168755,-1.543008,-1,0,OPL:SA:AST-22111-R,Europe/Paris,2,OPL, +OPL:SP:22111-R1,1,"La carrée - Praud",47.168389,-1.543215,-1,0,OPL:SA:AST-22111-R1,Europe/Paris,2,OPL, +OPL:SP:22112-A,1,"Corbinerie",47.161531,-1.541995,-1,0,OPL:SA:AST-22112-A-22112-R,Europe/Paris,2,OPL, +OPL:SP:22112-R,1,"Corbinerie",47.16147,-1.542412,-1,0,OPL:SA:AST-22112-A-22112-R,Europe/Paris,2,OPL, +OPL:SP:22117-A,1,"CCAS ESPLANADE DE VERDUN",46.98206,-1.306532,-1,0,OPL:SA:AST-22117-A-22117-R,Europe/Paris,0,OPL, +OPL:SP:22117-R,1,"CCAS ESPLANADE DE VERDUN",46.981789,-1.306543,-1,0,OPL:SA:AST-22117-A-22117-R,Europe/Paris,0,OPL, +OPL:SP:22118-A,1,"Atout Sud",47.192775,-1.569265,-1,0,OPL:SA:AST-22118-A-22118-R,Europe/Paris,2,OPL, +OPL:SP:22118-R,1,"Atout Sud",47.193085,-1.571418,-1,0,OPL:SA:AST-22118-A-22118-R,Europe/Paris,2,OPL, +OPL:SP:22131-A,1,"Le Butay",47.096188,-1.448428,-1,0,OPL:SA:AST-22131-A-22131-R,Europe/Paris,2,OPL, +OPL:SP:22131-R,1,"Le Butay",47.095998,-1.448385,-1,0,OPL:SA:AST-22131-A-22131-R,Europe/Paris,2,OPL, +OPL:SP:22134-A,1,"La Moune",47.012251,-1.443802,-1,0,OPL:SA:AST-22134-A-22134-R,Europe/Paris,0,OPL, +OPL:SP:22134-R,1,"La Moune",47.012348,-1.443754,-1,0,OPL:SA:AST-22134-A-22134-R,Europe/Paris,0,OPL, +OPL:SP:22144-A,1,"Place de la Gare",47.129351,-2.212961,-1,0,OPL:SA:AST-22144-A-22144-R,Europe/Paris,0,OPL, +OPL:SP:22144-R,1,"Place de la Gare",47.129407,-2.212671,-1,0,OPL:SA:AST-22144-A-22144-R,Europe/Paris,0,OPL, +OPL:SP:22148-A,1,"Zone Industrielle",47.100767,-1.601904,-1,0,OPL:SA:AST-22148-A-22148-R,Europe/Paris,2,OPL, +OPL:SP:22148-R,1,"Zone Industrielle",47.10081,-1.602372,-1,0,OPL:SA:AST-22148-A-22148-R,Europe/Paris,0,OPL, +OPL:SP:22149-A,1,"Stade",47.127205,-1.58137,-1,0,OPL:SA:AST-22149-A-22149-R,Europe/Paris,2,OPL, +OPL:SP:22149-R,1,"Stade",47.127727,-1.580998,-1,0,OPL:SA:AST-22149-A-22149-R,Europe/Paris,2,OPL, +OPL:SP:22150-A,1,"La Croix Blot",47.11978,-1.580876,-1,0,OPL:SA:AST-22150-A-22150-R,Europe/Paris,0,OPL, +OPL:SP:22150-R,1,"La Croix Blot",47.119813,-1.580998,-1,0,OPL:SA:AST-22150-A-22150-R,Europe/Paris,0,OPL, +OPL:SP:22151-A,1,"Bel Air",47.136486,-1.58135,-1,0,OPL:SA:AST-22151-A-22151-R,Europe/Paris,0,OPL, +OPL:SP:22151-R,1,"Bel Air",47.136428,-1.581507,-1,0,OPL:SA:AST-22151-A-22151-R,Europe/Paris,0,OPL, +OPL:SP:22152-A,1,"Génetais",47.163573,-1.553416,-1,0,OPL:SA:AST-22152-A-22152-R,Europe/Paris,0,OPL, +OPL:SP:22152-R,1,"Génetais",47.163382,-1.553924,-1,0,OPL:SA:AST-22152-A-22152-R,Europe/Paris,0,OPL, +OPL:SP:22153-A,1,"Lechat",47.175804,-1.543747,-1,0,OPL:SA:AST-22153-A-22153-R,Europe/Paris,2,OPL, +OPL:SP:22153-R,1,"Lechat",47.176097,-1.543884,-1,0,OPL:SA:AST-22153-A-22153-R,Europe/Paris,2,OPL, +OPL:SP:22154-A,1,"St Paul Salengro",47.185243,-1.546272,-1,0,OPL:SA:AST-22154-A-22154-R,Europe/Paris,2,OPL, +OPL:SP:22154-R,1,"St Paul Salengro",47.184487,-1.546163,-1,0,OPL:SA:AST-22154-A-22154-R,Europe/Paris,2,OPL, +OPL:SP:22155-A,1,"Félix Tableau",47.18731,-1.546839,-1,0,OPL:SA:AST-22155-A-22155-R,Europe/Paris,2,OPL, +OPL:SP:22155-R,1,"Félix Tableau",47.187568,-1.547001,-1,0,OPL:SA:AST-22155-A-22155-R,Europe/Paris,2,OPL, +OPL:SP:22156-A,1,"Pont Rousseau-Martyrs",47.191907,-1.547708,-1,0,OPL:SA:AST-22156-A-22156-R,Europe/Paris,2,OPL, +OPL:SP:22156-R,1,"Pont Rousseau-Martyrs",47.192435,-1.547496,-1,0,OPL:SA:AST-22156-A-22156-R,Europe/Paris,2,OPL, +OPL:SP:22159-A,1,"Mont Plaisir",46.904606,-1.601029,-1,0,OPL:SA:AST-22159-A-22159-R,Europe/Paris,0,OPL, +OPL:SP:22159-R,1,"Mont Plaisir",46.904567,-1.601111,-1,0,OPL:SA:AST-22159-A-22159-R,Europe/Paris,0,OPL, +OPL:SP:22160-A,1,"Tournebride",47.079833,-1.564318,-1,0,OPL:SA:AST-22160-A-22160-R,Europe/Paris,0,OPL, +OPL:SP:22160-R,1,"Tournebride",47.079455,-1.567268,-1,0,OPL:SA:AST-22160-A-22160-R,Europe/Paris,0,OPL, +OPL:SP:22166-A,1,"Rue de Clisson",46.871461,-1.017468,-1,0,OPL:SA:AST-22166-A-22166-R,Europe/Paris,0,OPL, +OPL:SP:22166-R,1,"Rue de Clisson",46.871305,-1.017501,-1,0,OPL:SA:AST-22166-A-22166-R,Europe/Paris,0,OPL, +OPL:SP:22167-A,1,"Américains",47.236033,-1.568212,-1,0,OPL:SA:AST-22167-A-22167-R,Europe/Paris,2,OPL, +OPL:SP:22167-R,1,"Américains",47.235811,-1.567907,-1,0,OPL:SA:AST-22167-A-22167-R,Europe/Paris,2,OPL, +OPL:SP:22168-A,1,"Picabia",47.254477,-1.576831,-1,0,OPL:SA:AST-22168-A-22168-R,Europe/Paris,2,OPL, +OPL:SP:22168-A1,1,"Bout des Pavés",47.252745,-1.576387,-1,0,OPL:SA:AST-22168-A1,Europe/Paris,2,OPL, +OPL:SP:22168-R,1,"Picabia",47.254612,-1.57671,-1,0,OPL:SA:AST-22168-A-22168-R,Europe/Paris,2,OPL, +OPL:SP:22184-A,1,"Mairie",47.271172,-1.623716,-1,0,OPL:SA:AST-22184-A-22184-R,Europe/Paris,2,OPL, +OPL:SP:22184-R,1,"Mairie",47.270686,-1.623221,-1,0,OPL:SA:AST-22184-A-22184-R,Europe/Paris,2,OPL, +OPL:SP:22185-A,1,"Le Cardo",47.261736,-1.584181,-1,0,OPL:SA:AST-22185-A-22185-R-22185-R1,Europe/Paris,2,OPL, +OPL:SP:22185-R,1,"Le Cardo",47.261991,-1.584114,-1,0,OPL:SA:AST-22185-A-22185-R-22185-R1,Europe/Paris,2,OPL, +OPL:SP:22185-R1,1,"Le Cardo",47.262301,-1.584143,-1,0,OPL:SA:AST-22185-A-22185-R-22185-R1,Europe/Paris,2,OPL, +OPL:SP:22186-A,1,"Le Goffic",47.229965,-1.563171,-1,0,OPL:SA:AST-22186-A-22186-R,Europe/Paris,2,OPL, +OPL:SP:22186-R,1,"Le Goffic",47.230784,-1.563737,-1,0,OPL:SA:AST-22186-A-22186-R,Europe/Paris,2,OPL, +OPL:SP:22188-A,1,"Bel Air",47.225751,-1.559639,-1,0,OPL:SA:AST-22188-A-22188-R,Europe/Paris,2,OPL, +OPL:SP:22188-R,1,"Bel Air",47.22544,-1.559254,-1,0,OPL:SA:AST-22188-A-22188-R,Europe/Paris,2,OPL, +OPL:SP:22189-A,1,"Talensac",47.221555,-1.556072,-1,0,OPL:SA:AST-22189-A-22189-R,Europe/Paris,2,OPL, +OPL:SP:22189-R,1,"Talensac",47.22134,-1.555714,-1,0,OPL:SA:AST-22189-A-22189-R,Europe/Paris,2,OPL, +OPL:SP:22190-A,1,"Place du Cirque",47.216825,-1.55689,-1,0,OPL:SA:AST-22190-A-22190-R,Europe/Paris,2,OPL, +OPL:SP:22190-R,1,"Place du Cirque",47.216815,-1.556741,-1,0,OPL:SA:AST-22190-A-22190-R,Europe/Paris,2,OPL, +OPL:SP:22194-A,1,"Le Bon Tour",47.478084,-2.179045,-1,0,OPL:SA:AST-22194-A-22194-R,Europe/Paris,0,OPL, +OPL:SP:22194-R,1,"Le Bon Tour",47.478003,-2.179065,-1,0,OPL:SA:AST-22194-A-22194-R,Europe/Paris,0,OPL, +OPL:SP:22197-A,1,"La Gicquelais",47.405001,-1.962665,-1,0,OPL:SA:AST-22197-A-22197-R,Europe/Paris,0,OPL, +OPL:SP:22197-R,1,"La Gicquelais",47.40558,-1.962455,-1,0,OPL:SA:AST-22197-A-22197-R,Europe/Paris,0,OPL, +OPL:SP:22202-A,1,"Val du Cens",47.261101,-1.665281,-1,0,OPL:SA:AST-22202-A-22202-R,Europe/Paris,2,OPL, +OPL:SP:22202-R,1,"Val du Cens",47.261401,-1.666643,-1,0,OPL:SA:AST-22202-A-22202-R,Europe/Paris,2,OPL, +OPL:SP:22204-A,1,"Moulin Brûlé",47.25944,-1.654504,-1,0,OPL:SA:AST-22204-A-22204-R,Europe/Paris,2,OPL, +OPL:SP:22204-R,1,"Moulin Brûlé",47.259664,-1.655055,-1,0,OPL:SA:AST-22204-A-22204-R,Europe/Paris,2,OPL, +OPL:SP:22207-A,1,"Forum d'Orvault",47.254029,-1.615097,-1,0,OPL:SA:AST-22207-A-22207-R,Europe/Paris,2,OPL, +OPL:SP:22207-R,1,"Forum d'Orvault",47.254436,-1.615243,-1,0,OPL:SA:AST-22207-A-22207-R,Europe/Paris,2,OPL, +OPL:SP:22211-A,1,"Beauséjour",47.238062,-1.58653,-1,0,OPL:SA:AST-22211-A-22211-R,Europe/Paris,2,OPL, +OPL:SP:22211-R,1,"Beauséjour",47.238273,-1.587478,-1,0,OPL:SA:AST-22211-A-22211-R,Europe/Paris,2,OPL, +OPL:SP:22214-A,1,"Mairie de Doulon",47.226604,-1.519762,-1,0,OPL:SA:AST-22214-A-22214-R,Europe/Paris,2,OPL, +OPL:SP:22214-R,1,"Mairie de Doulon",47.226987,-1.518808,-1,0,OPL:SA:AST-22214-A-22214-R,Europe/Paris,2,OPL, +OPL:SP:22218-A,1,"Château d'Eau",47.198938,-1.437377,-1,0,OPL:SA:AST-22218-A-22218-R,Europe/Paris,0,OPL, +OPL:SP:22218-R,1,"Château d'Eau",47.198572,-1.436354,-1,0,OPL:SA:AST-22218-A-22218-R,Europe/Paris,0,OPL, +OPL:SP:22219-A,1,"Epinettes",47.200479,-1.443757,-1,0,OPL:SA:AST-22219-A-22219-R,Europe/Paris,0,OPL, +OPL:SP:22219-R,1,"Epinettes",47.200482,-1.444651,-1,0,OPL:SA:AST-22219-A-22219-R,Europe/Paris,0,OPL, +OPL:SP:22223-A,1,"Montoir Centre",47.327613,-2.152644,-1,0,OPL:SA:AST-22223-A-22223-R,Europe/Paris,0,OPL, +OPL:SP:22223-R,1,"Montoir Centre",47.327706,-2.153154,-1,0,OPL:SA:AST-22223-A-22223-R,Europe/Paris,0,OPL, +OPL:SP:22234-A,1,"La Buterie",47.113218,-1.441463,-1,0,OPL:SA:AST-22234-A-22234-R,Europe/Paris,0,OPL, +OPL:SP:22234-R,1,"La Buterie",47.113224,-1.441464,-1,0,OPL:SA:AST-22234-A-22234-R,Europe/Paris,0,OPL, +OPL:SP:22238-A,1,"Jules Verne",47.326233,-2.145653,-1,0,OPL:SA:AST-22238-A-22238-R,Europe/Paris,0,OPL, +OPL:SP:22238-R,1,"Jules Verne",47.326175,-2.14538,-1,0,OPL:SA:AST-22238-A-22238-R,Europe/Paris,0,OPL, +OPL:SP:22242-A,1,"Graviers",47.467832,-1.768832,-1,0,OPL:SA:AST-22242-A-22242-R,Europe/Paris,0,OPL, +OPL:SP:22242-R,1,"Graviers",47.468117,-1.768577,-1,0,OPL:SA:AST-22242-A-22242-R,Europe/Paris,0,OPL, +OPL:SP:22253-A,1,"Plessis Tison",47.236665,-1.533602,-1,0,OPL:SA:AST-22253-A-22253-R,Europe/Paris,2,OPL, +OPL:SP:22253-R,1,"Plessis Tison",47.236642,-1.533486,-1,0,OPL:SA:AST-22253-A-22253-R,Europe/Paris,2,OPL, +OPL:SP:22255-A,1,"Delorme",47.215141,-1.564037,-1,0,OPL:SA:AST-22255-A-22255-R,Europe/Paris,2,OPL, +OPL:SP:22255-R,1,"Delorme",47.215654,-1.564549,-1,0,OPL:SA:AST-22255-A-22255-R,Europe/Paris,2,OPL, +OPL:SP:22256-A,1,"Mondésir",47.217721,-1.569126,-1,0,OPL:SA:AST-22256-A-22256-R,Europe/Paris,2,OPL, +OPL:SP:22256-R,1,"Mondésir",47.21775,-1.568659,-1,0,OPL:SA:AST-22256-A-22256-R,Europe/Paris,2,OPL, +OPL:SP:22259-A,1,"Poincaré",47.222219,-1.584675,-1,0,OPL:SA:AST-22259-A-22259-R,Europe/Paris,2,OPL, +OPL:SP:22259-R,1,"Poincaré",47.222355,-1.584911,-1,0,OPL:SA:AST-22259-A-22259-R,Europe/Paris,2,OPL, +OPL:SP:22260-A,1,"Dufy",47.222368,-1.600421,-1,0,OPL:SA:AST-22260-A-22260-R,Europe/Paris,2,OPL, +OPL:SP:22260-R,1,"Dufy",47.222665,-1.599675,-1,0,OPL:SA:AST-22260-A-22260-R,Europe/Paris,2,OPL, +OPL:SP:22266-A,1,"Pont de 15 mètres",47.348645,-1.927038,-1,0,OPL:SA:AST-22266-A-22266-R,Europe/Paris,0,OPL, +OPL:SP:22266-R,1,"Pont de 15 mètres",47.348612,-1.926749,-1,0,OPL:SA:AST-22266-A-22266-R,Europe/Paris,0,OPL, +OPL:SP:22270-A,1,"Garage",47.516097,-1.288654,-1,0,OPL:SA:AST-22270-A-22270-R,Europe/Paris,0,OPL, +OPL:SP:22270-R,1,"Garage",47.516308,-1.290451,-1,0,OPL:SA:AST-22270-A-22270-R,Europe/Paris,0,OPL, +OPL:SP:22275-A,1,"Tournebride",47.316713,-1.477863,-1,0,OPL:SA:AST-22275-A-22275-R,Europe/Paris,0,OPL, +OPL:SP:22275-R,1,"Tournebride",47.316284,-1.478285,-1,0,OPL:SA:AST-22275-A-22275-R,Europe/Paris,0,OPL, +OPL:SP:22276-A,1,"Pré du Bourg",47.092195,-1.494394,-1,0,OPL:SA:AST-22276-A-22276-R,Europe/Paris,2,OPL, +OPL:SP:22276-R,1,"Pré du Bourg",47.092221,-1.4946,-1,0,OPL:SA:AST-22276-A-22276-R,Europe/Paris,2,OPL, +OPL:SP:22280-A,1,"L' Arche du Fouan",47.406421,-1.731241,-1,0,OPL:SA:AST-22280-A-22280-R,Europe/Paris,0,OPL, +OPL:SP:22280-R,1,"L' Arche du Fouan",47.406613,-1.731306,-1,0,OPL:SA:AST-22280-A-22280-R,Europe/Paris,0,OPL, +OPL:SP:22281-A,1,"Chatillon",47.289214,-1.656611,-1,0,OPL:SA:AST-22281-A-22281-R,Europe/Paris,0,OPL, +OPL:SP:22281-R,1,"Chatillon",47.289985,-1.656999,-1,0,OPL:SA:AST-22281-A-22281-R,Europe/Paris,2,OPL, +OPL:SP:22284-A,1,"Ker David Hele",47.375913,-2.097777,-1,0,OPL:SA:AST-22284-A-22284-R,Europe/Paris,0,OPL, +OPL:SP:22284-R,1,"Ker David Hele",47.376031,-2.097561,-1,0,OPL:SA:AST-22284-A-22284-R,Europe/Paris,0,OPL, +OPL:SP:22288-A,1,"Gare SNCF",47.65111,-2.08853,-1,0,OPL:SA:AST-22288-A-22288-R,Europe/Paris,0,OPL, +OPL:SP:22288-R,1,"Gare SNCF",47.651152,-2.088739,-1,0,OPL:SA:AST-22288-A-22288-R,Europe/Paris,0,OPL, +OPL:SP:22290-A,1,"Le Pérou",47.12431,-1.527486,-1,0,OPL:SA:AST-22290-A-22290-R,Europe/Paris,0,OPL, +OPL:SP:22290-R,1,"Le Pérou",47.124128,-1.527914,-1,0,OPL:SA:AST-22290-A-22290-R,Europe/Paris,0,OPL, +OPL:SP:22292-A,1,"La Chère",47.460101,-1.418741,-1,0,OPL:SA:AST-22292-A-22292-R,Europe/Paris,0,OPL, +OPL:SP:22292-R,1,"La Chère",47.459858,-1.418514,-1,0,OPL:SA:AST-22292-A-22292-R,Europe/Paris,0,OPL, +OPL:SP:22294-A,1,"Champ de Foire",47.437815,-1.501558,-1,0,OPL:SA:AST-22294-A-22294-R,Europe/Paris,0,OPL, +OPL:SP:22294-R,1,"Champ de Foire",47.437736,-1.501375,-1,0,OPL:SA:AST-22294-A-22294-R,Europe/Paris,0,OPL, +OPL:SP:22316-A,1,"Maison Départementale",47.267579,-2.159295,-1,0,OPL:SA:AST-22316-A-22316-R,Europe/Paris,0,OPL, +OPL:SP:22316-R,1,"Maison Départementale",47.267524,-2.15925,-1,0,OPL:SA:AST-22316-A-22316-R,Europe/Paris,0,OPL, +OPL:SP:22338-A,1,"Dr Schweitzer",47.326439,-2.161649,-1,0,OPL:SA:AST-22338-A-22338-R,Europe/Paris,0,OPL, +OPL:SP:22338-R,1,"Dr Schweitzer",47.326315,-2.161465,-1,0,OPL:SA:AST-22338-A-22338-R,Europe/Paris,0,OPL, +OPL:SP:22359-A,1,"Route de Clisson",47.139691,-1.28216,-1,0,OPL:SA:AST-22359-A-22359-R,Europe/Paris,2,OPL, +OPL:SP:22359-R,1,"Route de Clisson",47.1397,-1.28215,-1,0,OPL:SA:AST-22359-A-22359-R,Europe/Paris,2,OPL, +OPL:SP:22424-A,1,"Gare SNCF",47.358756,-1.950909,-1,0,STE:SA:OCE87481838,Europe/Paris,2,OPL, +OPL:SP:22424-R,1,"Gare SNCF",47.358765,-1.950931,-1,0,STE:SA:OCE87481838,Europe/Paris,2,OPL, +OPL:SP:22457-A,1,"Gare",47.650202,-1.737891,-1,0,OPL:SA:AST-22457-A-22457-R,Europe/Paris,0,OPL, +OPL:SP:22457-R,1,"Gare",47.65012,-1.738164,-1,0,OPL:SA:AST-22457-A-22457-R,Europe/Paris,0,OPL, +OPL:SP:22501-A,1,"Tourneuve",47.278994,-1.598082,-1,0,OPL:SA:AST-22501-A-22501-R,Europe/Paris,2,OPL, +OPL:SP:22501-R,1,"Tourneuve",47.279171,-1.598046,-1,0,OPL:SA:AST-22501-A-22501-R,Europe/Paris,2,OPL, +OPL:SP:22502-A,1,"Gergaudière",47.289632,-1.585895,-1,0,OPL:SA:AST-22502-A-22502-R,Europe/Paris,0,OPL, +OPL:SP:22502-R,1,"Gergaudière",47.289798,-1.585771,-1,0,OPL:SA:AST-22502-A-22502-R,Europe/Paris,0,OPL, +OPL:SP:22576-A,1,"Gare SNCF",47.187092,-1.478465,-1,0,OPL:SA:AST-22576-A-22576-R,Europe/Paris,2,OPL, +OPL:SP:22576-R,1,"Gare SNCF",47.187003,-1.478346,-1,0,OPL:SA:AST-22576-A-22576-R,Europe/Paris,2,OPL, +OPL:SP:22605-A,1,"Tharon",47.16632,-2.162036,-1,0,OPL:SA:AST-22605-A-22605-R,Europe/Paris,0,OPL, +OPL:SP:22605-R,1,"Tharon",47.166322,-2.161901,-1,0,OPL:SA:AST-22605-A-22605-R,Europe/Paris,0,OPL, +OPL:SP:22733-A,1,"Le Clémois",47.137379,-1.722296,-1,0,OPL:SA:AST-22733-A-22733-R,Europe/Paris,2,OPL, +OPL:SP:22733-R,1,"Le Clémois",47.137414,-1.722554,-1,0,OPL:SA:AST-22733-A-22733-R,Europe/Paris,2,OPL, +OPL:SP:22767-A,1,"Mairie",47.181371,-1.815038,-1,0,OPL:SA:AST-22767-A-22767-R,Europe/Paris,0,OPL, +OPL:SP:22767-R,1,"Mairie",47.18137,-1.815021,-1,0,OPL:SA:AST-22767-A-22767-R,Europe/Paris,0,OPL, +OPL:SP:22804-A,1,"École",47.433464,-1.230048,-1,0,OPL:SA:AST-22804-A-22804-R,Europe/Paris,2,OPL, +OPL:SP:22804-R,1,"École",47.433627,-1.230777,-1,0,OPL:SA:AST-22804-A-22804-R,Europe/Paris,2,OPL, +OPL:SP:22874-A,1,"Plessis de l'Angle",47.281136,-1.768817,-1,0,OPL:SA:AST-22874-A-22874-R,Europe/Paris,0,OPL, +OPL:SP:22874-R,1,"Plessis de l'Angle",47.280616,-1.768922,-1,0,OPL:SA:AST-22874-A-22874-R,Europe/Paris,0,OPL, +OPL:SP:22875-A,1,"Rue de Nantes (N°40)",47.277673,-1.77703,-1,0,OPL:SA:AST-22875-A-22875-R,Europe/Paris,0,OPL, +OPL:SP:22875-R,1,"Rue de Nantes (N°40)",47.277818,-1.777108,-1,0,OPL:SA:AST-22875-A-22875-R,Europe/Paris,0,OPL, +OPL:SP:22876-A,1,"Rue Georges Bonnet",47.327997,-1.790735,-1,0,OPL:SA:AST-22876-A-22876-R,Europe/Paris,0,OPL, +OPL:SP:22876-R,1,"Rue Georges Bonnet",47.329851,-1.792103,-1,0,OPL:SA:AST-22876-A-22876-R,Europe/Paris,0,OPL, +OPL:SP:22908-A,1,"La Trimossière",47.280928,-1.707569,-1,0,OPL:SA:AST-22908-A-22908-R,Europe/Paris,2,OPL, +OPL:SP:22908-R,1,"La Trimossière",47.280929,-1.707356,-1,0,OPL:SA:AST-22908-A-22908-R,Europe/Paris,2,OPL, +OPL:SP:22915-A,1,"Croix Morzel Gare",47.302519,-1.844889,-1,0,OPL:SA:AST-22915-A-22915-R,Europe/Paris,0,OPL, +OPL:SP:22915-R,1,"Croix Morzel Gare",47.302508,-1.845037,-1,0,OPL:SA:AST-22915-A-22915-R,Europe/Paris,0,OPL, +OPL:SP:22952-A,1,"Mercerie",47.328957,-1.458328,-1,0,OPL:SA:AST-22952-A-22952-R,Europe/Paris,0,OPL, +OPL:SP:22952-R,1,"Mercerie",47.329075,-1.45798,-1,0,OPL:SA:AST-22952-A-22952-R,Europe/Paris,0,OPL, +OPL:SP:22972-A,1,"Église",47.238353,-1.349496,-1,0,OPL:SA:AST-22972-A-22972-R,Europe/Paris,0,OPL, +OPL:SP:22972-R,1,"Église",47.238437,-1.348278,-1,0,OPL:SA:AST-22972-A-22972-R,Europe/Paris,0,OPL, +OPL:SP:22981-A,1,"Intermarché",47.091283,-1.288554,-1,0,OPL:SA:AST-22981-A-22981-R,Europe/Paris,0,OPL, +OPL:SP:22981-R,1,"Intermarché",47.091283,-1.289215,-1,0,OPL:SA:AST-22981-A-22981-R,Europe/Paris,0,OPL, +OPL:SP:23012-A,1,"Place Abbé Corbille",47.417561,-1.845839,-1,0,OPL:SA:AST-23012-A-23012-R,Europe/Paris,0,OPL, +OPL:SP:23012-R,1,"Place Abbé Corbille",47.417595,-1.845684,-1,0,OPL:SA:AST-23012-A-23012-R,Europe/Paris,0,OPL, +OPL:SP:23025-A,1,"L'Anglechais",47.513905,-1.75184,-1,0,OPL:SA:AST-23025-A-23025-R,Europe/Paris,0,OPL, +OPL:SP:23025-R,1,"L'Anglechais",47.513778,-1.751753,-1,0,OPL:SA:AST-23025-A-23025-R,Europe/Paris,0,OPL, +OPL:SP:23031-A,1,"Gendarmerie",47.56179,-1.627607,-1,0,OPL:SA:AST-23031-A-23031-R,Europe/Paris,0,OPL, +OPL:SP:23031-R,1,"Gendarmerie",47.561764,-1.627479,-1,0,OPL:SA:AST-23031-A-23031-R,Europe/Paris,0,OPL, +OPL:SP:23038-A,1,"La Boulaie",47.07202,-1.623125,-1,0,OPL:SA:AST-23038-A-23038-R,Europe/Paris,0,OPL, +OPL:SP:23038-R,1,"La Boulaie",47.071053,-1.623868,-1,0,OPL:SA:AST-23038-A-23038-R,Europe/Paris,0,OPL, +OPL:SP:23040-A,1,"La Montagne",47.188488,-1.689479,-1,0,OPL:SA:AST-23040-A-23040-R,Europe/Paris,2,OPL, +OPL:SP:23040-R,1,"La Montagne",47.188787,-1.689913,-1,0,OPL:SA:AST-23040-A-23040-R,Europe/Paris,2,OPL, +OPL:SP:23070-A,1,"L'ilette",47.580344,-2.040913,-1,0,OPL:SA:AST-23070-A-23070-R,Europe/Paris,0,OPL, +OPL:SP:23070-R,1,"L'ilette",47.580348,-2.040892,-1,0,OPL:SA:AST-23070-A-23070-R,Europe/Paris,0,OPL, +OPL:SP:23072-A,1,"Saint Blaise",47.244994,-1.706873,-1,0,OPL:SA:AST-23072-A-23072-R,Europe/Paris,0,OPL, +OPL:SP:23072-R,1,"Saint Blaise",47.245092,-1.707589,-1,0,OPL:SA:AST-23072-A-23072-R,Europe/Paris,0,OPL, +OPL:SP:23073-A,1,"La Montagne",47.244654,-1.691603,-1,0,OPL:SA:AST-23073-A-23073-R,Europe/Paris,0,OPL, +OPL:SP:23073-R,1,"La Montagne",47.244787,-1.690557,-1,0,OPL:SA:AST-23073-A-23073-R,Europe/Paris,0,OPL, +OPL:SP:23105-A,1,"Bois de Sendal",47.13115,-1.564599,-1,0,OPL:SA:AST-23105-A-23105-R,Europe/Paris,0,OPL, +OPL:SP:23105-R,1,"Bois de Sendal",47.131201,-1.564681,-1,0,OPL:SA:AST-23105-A-23105-R,Europe/Paris,0,OPL, +OPL:SP:23159-A,1,"GARE ROUTIERE RAMON",46.674339,-1.418675,-1,0,OOY:SA:CTPlryrout,Europe/Paris,2,OPL, +OPL:SP:23159-R,1,"GARE ROUTIERE RAMON",46.674294,-1.41964,-1,0,OOY:SA:CTPlryrout,Europe/Paris,0,OPL, +OPL:SP:23165-A,1,"Perrières",47.085319,-1.612658,-1,0,OPL:SA:AST-23165-A-23165-R,Europe/Paris,0,OPL, +OPL:SP:23165-R,1,"Perrières",47.08533,-1.612766,-1,0,OPL:SA:AST-23165-A-23165-R,Europe/Paris,0,OPL, +OPL:SP:23167-A,1,"Église",47.461439,-1.954421,-1,0,OPL:SA:AST-23167-A-23167-R,Europe/Paris,0,OPL, +OPL:SP:23167-R,1,"Église",47.461226,-1.954255,-1,0,OPL:SA:AST-23167-A-23167-R,Europe/Paris,0,OPL, +OPL:SP:23181-A,1,"Le Tillon",47.380115,-1.966985,-1,0,OPL:SA:AST-23181-A-23181-R,Europe/Paris,0,OPL, +OPL:SP:23181-R,1,"Le Tillon",47.379939,-1.966982,-1,0,OPL:SA:AST-23181-A-23181-R,Europe/Paris,0,OPL, +OPL:SP:23234-A,1,"Bilais",47.459429,-2.077741,-1,0,OPL:SA:AST-23234-A-23234-R,Europe/Paris,0,OPL, +OPL:SP:23234-R,1,"Bilais",47.459821,-2.077151,-1,0,OPL:SA:AST-23234-A-23234-R,Europe/Paris,0,OPL, +OPL:SP:23247-A,1,"Place Centrale",47.261844,-1.669435,-1,0,OPL:SA:AST-23247-A-23247-R,Europe/Paris,2,OPL, +OPL:SP:23247-R,1,"Place Centrale",47.261844,-1.670098,-1,0,OPL:SA:AST-23247-A-23247-R,Europe/Paris,2,OPL, +OPL:SP:23263-A,1,"Grand Perret",47.276744,-2.07964,-1,0,OPL:SA:AST-23263-A-23263-R,Europe/Paris,0,OPL, +OPL:SP:23263-R,1,"Grand Perret",47.276851,-2.078792,-1,0,OPL:SA:AST-23263-A-23263-R,Europe/Paris,0,OPL, +OPL:SP:23279-A,1,"Pré Burel",47.518007,-2.038024,-1,0,OPL:SA:AST-23279-A-23279-R,Europe/Paris,2,OPL, +OPL:SP:23279-R,1,"Pré Burel",47.518108,-2.038032,-1,0,OPL:SA:AST-23279-A-23279-R,Europe/Paris,2,OPL, +OPL:SP:23296-A,1,"Bout de Bois",47.450829,-1.638028,-1,0,OPL:SA:AST-23296-A-23296-R,Europe/Paris,0,OPL, +OPL:SP:23296-R,1,"Bout de Bois",47.450887,-1.637872,-1,0,OPL:SA:AST-23296-A-23296-R,Europe/Paris,0,OPL, +OPL:SP:23344-A,1,"Moulin du Greix",47.264718,-2.113203,-1,0,OPL:SA:AST-23344-A-23344-R,Europe/Paris,0,OPL, +OPL:SP:23344-R,1,"Moulin du Greix",47.264672,-2.113186,-1,0,OPL:SA:AST-23344-A-23344-R,Europe/Paris,0,OPL, +OPL:SP:23390-A,1,"Le Redois",47.180496,-2.161792,-1,0,OPL:SA:AST-23390-A-23390-R,Europe/Paris,0,OPL, +OPL:SP:23390-R,1,"Le Redois",47.182255,-2.161081,-1,0,OPL:SA:AST-23390-A-23390-R,Europe/Paris,0,OPL, +OPL:SP:23394-A,1,"Mairie",47.289286,-2.03519,-1,0,OPL:SA:AST-23394-A-23394-R,Europe/Paris,0,OPL, +OPL:SP:23394-R,1,"Mairie",47.28915,-2.035113,-1,0,OPL:SA:AST-23394-A-23394-R,Europe/Paris,0,OPL, +OPL:SP:23560-A,1,"Parking de la Poste",47.443311,-1.431208,-1,0,OPL:SA:AST-23560-A-23560-R,Europe/Paris,0,OPL, +OPL:SP:23560-R,1,"Parking de la Poste",47.443282,-1.431405,-1,0,OPL:SA:AST-23560-A-23560-R,Europe/Paris,0,OPL, +OPL:SP:23608-A,1,"Route de Sucé",47.331314,-1.47734,-1,0,OPL:SA:AST-23608-A-23608-R,Europe/Paris,0,OPL, +OPL:SP:23608-R,1,"Route de Sucé",47.330591,-1.476936,-1,0,OPL:SA:AST-23608-A-23608-R,Europe/Paris,0,OPL, +OPL:SP:23615-A,1,"Champsiome",47.147982,-1.558765,-1,0,OPL:SA:AST-23615-A-23615-R,Europe/Paris,0,OPL, +OPL:SP:23615-R,1,"Champsiome",47.147895,-1.558718,-1,0,OPL:SA:AST-23615-A-23615-R,Europe/Paris,0,OPL, +OPL:SP:23627-A,1,"Mairie",47.256161,-2.019244,-1,0,OPL:SA:AST-23627-A-23627-R,Europe/Paris,0,OPL, +OPL:SP:23627-R,1,"Mairie",47.256108,-2.019248,-1,0,OPL:SA:AST-23627-A-23627-R,Europe/Paris,0,OPL, +OPL:SP:23650-A,1,"Championnière",47.110757,-1.584081,-1,0,OPL:SA:AST-23650-A-23650-R,Europe/Paris,0,OPL, +OPL:SP:23650-R,1,"Championnière",47.110408,-1.584777,-1,0,OPL:SA:AST-23650-A-23650-R,Europe/Paris,0,OPL, +OPL:SP:23655-A,1,"Boule d'Or",47.436884,-2.093919,-1,0,OPL:SA:AST-23655-A-23655-R,Europe/Paris,0,OPL, +OPL:SP:23655-R,1,"Boule d'Or",47.436879,-2.093895,-1,0,OPL:SA:AST-23655-A-23655-R,Europe/Paris,0,OPL, +OPL:SP:23784-A,1,"Les Amourettes",47.284629,-2.032448,-1,0,OPL:SA:AST-23784-A-23784-R,Europe/Paris,0,OPL, +OPL:SP:23784-R,1,"Les Amourettes",47.284675,-2.032916,-1,0,OPL:SA:AST-23784-A-23784-R,Europe/Paris,0,OPL, +OPL:SP:23875-A,1,"La Noé",47.318747,-1.869515,-1,0,OPL:SA:AST-23875-A-23875-R,Europe/Paris,0,OPL, +OPL:SP:23875-R,1,"La Noé",47.319048,-1.870152,-1,0,OPL:SA:AST-23875-A-23875-R,Europe/Paris,0,OPL, +OPL:SP:23877-A,1,"La Noe",47.354883,-2.015742,-1,0,OPL:SA:AST-23877-A-23877-R,Europe/Paris,0,OPL, +OPL:SP:23877-R,1,"La Noe",47.354827,-2.016089,-1,0,OPL:SA:AST-23877-A-23877-R,Europe/Paris,0,OPL, +OPL:SP:23894-A,1,"Les Pierres Rousses",47.117251,-1.930076,-1,0,OPL:SA:AST-23894-A-23894-R,Europe/Paris,0,OPL, +OPL:SP:23894-R,1,"Les Pierres Rousses",47.117353,-1.930217,-1,0,OPL:SA:AST-23894-A-23894-R,Europe/Paris,0,OPL, +OPL:SP:24022-A,1,"Grapilles",47.130801,-1.586242,-1,0,OPL:SA:AST-24022-A-24022-R,Europe/Paris,0,OPL, +OPL:SP:24022-R,1,"Grapilles",47.130788,-1.586242,-1,0,OPL:SA:AST-24022-A-24022-R,Europe/Paris,0,OPL, +OPL:SP:24118-A,1,"Terres aux Moines",47.118859,-2.126003,-1,0,OPL:SA:AST-24118-A-24118-R,Europe/Paris,0,OPL, +OPL:SP:24118-R,1,"Terres aux Moines",47.118877,-2.126091,-1,0,OPL:SA:AST-24118-A-24118-R,Europe/Paris,0,OPL, +OPL:SP:24124-A,1,"La Fosse des Prés",47.198642,-1.906163,-1,0,OPL:SA:AST-24124-A-24124-R,Europe/Paris,0,OPL, +OPL:SP:24124-R,1,"La Fosse des Prés",47.198687,-1.906315,-1,0,OPL:SA:AST-24124-A-24124-R,Europe/Paris,0,OPL, +OPL:SP:24147-A,1,"La Meslière",47.48835,-1.173913,-1,0,OPL:SA:AST-24147-A-24147-R,Europe/Paris,0,OPL, +OPL:SP:24147-R,1,"La Meslière",47.488455,-1.173755,-1,0,OPL:SA:AST-24147-A-24147-R,Europe/Paris,0,OPL, +OPL:SP:24164-A,1,"Stade la Fuie",47.24735,-1.946176,-1,0,OPL:SA:AST-24164-A-24164-R,Europe/Paris,2,OPL, +OPL:SP:24164-R,1,"Stade la Fuie",47.247289,-1.946302,-1,0,OPL:SA:AST-24164-A-24164-R,Europe/Paris,2,OPL, +OPL:SP:24218-A,1,"Chaillereaux",47.326879,-1.881791,-1,0,OPL:SA:AST-24218-A,Europe/Paris,0,OPL, +OPL:SP:24218-R,1,"Bouée Chaillereau",47.327275,-1.881923,-1,0,OPL:SA:AST-24218-R,Europe/Paris,0,OPL, +OPL:SP:24225-A,1,"La Quintaine",47.25755,-1.388206,-1,0,OPL:SA:AST-24225-A-24225-R,Europe/Paris,0,OPL, +OPL:SP:24225-R,1,"La Quintaine",47.257368,-1.388125,-1,0,OPL:SA:AST-24225-A-24225-R,Europe/Paris,0,OPL, +OPL:SP:24358-A,1,"Centre",47.367016,-1.406464,-1,0,OPL:SA:AST-24358-A-24358-R,Europe/Paris,2,OPL, +OPL:SP:24358-R,1,"Centre",47.366944,-1.406621,-1,0,OPL:SA:AST-24358-A-24358-R,Europe/Paris,2,OPL, +OPL:SP:24365-A,1,"Rue de Blain",47.382035,-1.71028,-1,0,OPL:SA:AST-24365-A-24365-R,Europe/Paris,0,OPL, +OPL:SP:24365-R,1,"Rue de Blain",47.382172,-1.710267,-1,0,OPL:SA:AST-24365-A-24365-R,Europe/Paris,0,OPL, +OPL:SP:24377-A,1,"Plaisance",47.290915,-1.872663,-1,0,OPL:SA:AST-24377-A-24377-R,Europe/Paris,0,OPL, +OPL:SP:24377-R,1,"Plaisance",47.290914,-1.872484,-1,0,OPL:SA:AST-24377-A-24377-R,Europe/Paris,0,OPL, +OPL:SP:24391-A,1,"Les Halles",47.091899,-1.62125,-1,0,OPL:SA:AST-24391-A-24391-R,Europe/Paris,0,OPL, +OPL:SP:24391-R,1,"Les Halles",47.091822,-1.620759,-1,0,OPL:SA:AST-24391-A-24391-R,Europe/Paris,0,OPL, +OPL:SP:24398-A,1,"Les Hauts Viais",47.115238,-1.541099,-1,0,OPL:SA:AST-24398-A-24398-R,Europe/Paris,0,OPL, +OPL:SP:24398-R,1,"Les Hauts Viais",47.114789,-1.541041,-1,0,OPL:SA:AST-24398-A-24398-R,Europe/Paris,0,OPL, +OPL:SP:24548-A,1,"Charles de Gaulle",47.244712,-1.936032,-1,0,OPL:SA:AST-24548-A-24548-R,Europe/Paris,0,OPL, +OPL:SP:24548-R,1,"Charles de Gaulle",47.244628,-1.936009,-1,0,OPL:SA:AST-24548-A-24548-R,Europe/Paris,0,OPL, +OPL:SP:24567-A,1,"Michelet",47.234494,-1.557417,-1,0,OPL:SA:AST-24567-A-24567-R,Europe/Paris,2,OPL, +OPL:SP:24567-R,1,"Michelet",47.234516,-1.557149,-1,0,OPL:SA:AST-24567-A-24567-R,Europe/Paris,2,OPL, +OPL:SP:24570-A,1,"Recteur Schmitt",47.252728,-1.553309,-1,0,OPL:SA:AST-24570-A-24570-R,Europe/Paris,2,OPL, +OPL:SP:24570-R,1,"Recteur Schmitt",47.252819,-1.552944,-1,0,OPL:SA:AST-24570-A-24570-R,Europe/Paris,2,OPL, +OPL:SP:24627-A,1,"La Grue",47.031099,-1.629355,-1,0,OPL:SA:AST-24627-A-24627-R,Europe/Paris,2,OPL, +OPL:SP:24627-R,1,"La Grue",47.030966,-1.629417,-1,0,OPL:SA:AST-24627-A-24627-R,Europe/Paris,2,OPL, +OPL:SP:24753-A,1,"Fief du Parc",47.083215,-1.256439,-1,0,OPL:SA:AST-24753-A-24753-R,Europe/Paris,0,OPL, +OPL:SP:24753-R,1,"Fief du Parc",47.083215,-1.257099,-1,0,OPL:SA:AST-24753-A-24753-R,Europe/Paris,0,OPL, +OPL:SP:24754-A,1,"Recouvrance",47.077965,-1.240244,-1,0,OPL:SA:AST-24754-A-24754-R,Europe/Paris,0,OPL, +OPL:SP:24754-R,1,"Recouvrance",47.077805,-1.240202,-1,0,OPL:SA:AST-24754-A-24754-R,Europe/Paris,0,OPL, +OPL:SP:24755-A,1,"Route de Bretagne",47.058069,-1.374662,-1,0,OPL:SA:AST-24755-A-24755-R,Europe/Paris,2,OPL, +OPL:SP:24755-R,1,"Route de Bretagne",47.058475,-1.375573,-1,0,OPL:SA:AST-24755-A-24755-R,Europe/Paris,2,OPL, +OPL:SP:24762-A,1,"Les Noés",47.445703,-2.19109,-1,0,OPL:SA:AST-24762-A-24762-R,Europe/Paris,0,OPL, +OPL:SP:24762-R,1,"Les Noés",47.445634,-2.190975,-1,0,OPL:SA:AST-24762-A-24762-R,Europe/Paris,0,OPL, +OPL:SP:24764-A,1,"Rotz",47.399154,-2.152323,-1,0,OPL:SA:AST-24764-A-24764-R,Europe/Paris,0,OPL, +OPL:SP:24764-R,1,"Rotz",47.399914,-2.15285,-1,0,OPL:SA:AST-24764-A-24764-R,Europe/Paris,0,OPL, +OPL:SP:24765-A,1,"La Guesne",47.383153,-2.135013,-1,0,OPL:SA:AST-24765-A-24765-R,Europe/Paris,0,OPL, +OPL:SP:24765-R,1,"La Guesne",47.383276,-2.135061,-1,0,OPL:SA:AST-24765-A-24765-R,Europe/Paris,0,OPL, +OPL:SP:24770-A,1,"Centre Commercial",47.511561,-2.039403,-1,0,OPL:SA:AST-24770-A-24770-R,Europe/Paris,0,OPL, +OPL:SP:24770-R,1,"Centre Commercial",47.511739,-2.03913,-1,0,OPL:SA:AST-24770-A-24770-R,Europe/Paris,0,OPL, +OPL:SP:24773-A,1,"Charles de Gaulle",47.440222,-2.093622,-1,0,OPL:SA:AST-24773-A-24773-R,Europe/Paris,0,OPL, +OPL:SP:24773-R,1,"Charles de Gaulle",47.440315,-2.093788,-1,0,OPL:SA:AST-24773-A-24773-R,Europe/Paris,0,OPL, +OPL:SP:24774-A,1,"Église",47.437937,-2.088431,-1,0,OPL:SA:AST-24774-A-24774-R,Europe/Paris,0,OPL, +OPL:SP:24774-R,1,"Église",47.43799,-2.088321,-1,0,OPL:SA:AST-24774-A-24774-R,Europe/Paris,0,OPL, +OPL:SP:24775-A,1,"Chataigneraie",47.436127,-2.083231,-1,0,OPL:SA:AST-24775-A-24775-R,Europe/Paris,0,OPL, +OPL:SP:24775-R,1,"Chataigneraie",47.436296,-2.083582,-1,0,OPL:SA:AST-24775-A-24775-R,Europe/Paris,0,OPL, +OPL:SP:24780-A,1,"Armoricaine",47.258251,-1.647503,-1,0,OPL:SA:AST-24780-A-24780-R,Europe/Paris,2,OPL, +OPL:SP:24780-R,1,"Armoricaine",47.258535,-1.648359,-1,0,OPL:SA:AST-24780-A-24780-R,Europe/Paris,2,OPL, +OPL:SP:24787-A,1,"Chauvinière",47.228661,-1.636146,-1,0,OPL:SA:AST-24787-A-24787-R,Europe/Paris,2,OPL, +OPL:SP:24787-R,1,"Chauvinière",47.228667,-1.63558,-1,0,OPL:SA:AST-24787-A-24787-R,Europe/Paris,2,OPL, +OPL:SP:24788-A,1,"La Potence",47.242964,-1.674384,-1,0,OPL:SA:AST-24788-A-24788-R,Europe/Paris,0,OPL, +OPL:SP:24788-R,1,"La Potence",47.243033,-1.674048,-1,0,OPL:SA:AST-24788-A-24788-R,Europe/Paris,0,OPL, +OPL:SP:24789-A,1,"Marigny",47.271529,-1.775655,-1,0,OPL:SA:AST-24789-A-24789-R,Europe/Paris,0,OPL, +OPL:SP:24789-R,1,"Marigny",47.271449,-1.775758,-1,0,OPL:SA:AST-24789-A-24789-R,Europe/Paris,0,OPL, +OPL:SP:24790-A,1,"Mairie",47.274409,-1.781869,-1,0,OPL:SA:AST-24790-A-24790-R,Europe/Paris,0,OPL, +OPL:SP:24790-R,1,"Mairie",47.274517,-1.78183,-1,0,OPL:SA:AST-24790-A-24790-R,Europe/Paris,0,OPL, +OPL:SP:24791-A,1,"Croix Morzel (RD 17)",47.303558,-1.842853,-1,0,OPL:SA:AST-24791-A-24791-R,Europe/Paris,0,OPL, +OPL:SP:24791-R,1,"Croix Morzel (RD 17)",47.304242,-1.843666,-1,0,OPL:SA:AST-24791-A-24791-R,Europe/Paris,0,OPL, +OPL:SP:24792-A,1,"Médiathèque",47.290536,-1.877904,-1,0,OPL:SA:AST-24792-A-24792-R,Europe/Paris,0,OPL, +OPL:SP:24792-R,1,"Médiathèque",47.290665,-1.877847,-1,0,OPL:SA:AST-24792-A-24792-R,Europe/Paris,0,OPL, +OPL:SP:24797-A,1,"Quiételais",47.247983,-1.736809,-1,0,OPL:SA:AST-24797-A-24797-R,Europe/Paris,0,OPL, +OPL:SP:24797-R,1,"Quiételais",47.248322,-1.737482,-1,0,OPL:SA:AST-24797-A-24797-R,Europe/Paris,0,OPL, +OPL:SP:24816-A,1,"Le Pont",47.375875,-1.555029,-1,0,OPL:SA:AST-24816-A-24816-R,Europe/Paris,0,OPL, +OPL:SP:24816-R,1,"Le Pont",47.375526,-1.55403,-1,0,OPL:SA:AST-24816-A-24816-R,Europe/Paris,0,OPL, +OPL:SP:24817-A,1,"Halvèque",47.258975,-1.519443,-1,0,OPL:SA:AST-24817-A-24817-R,Europe/Paris,2,OPL, +OPL:SP:24817-R,1,"Halvèque",47.259439,-1.518727,-1,0,OPL:SA:AST-24817-A-24817-R,Europe/Paris,2,OPL, +OPL:SP:24818-A,1,"ICAM route Carquefou",47.276051,-1.509687,-1,0,OPL:SA:AST-24818-A-24818-R,Europe/Paris,2,OPL, +OPL:SP:24818-R,1,"ICAM route Carquefou",47.275756,-1.509563,-1,0,OPL:SA:AST-24818-A-24818-R,Europe/Paris,2,OPL, +OPL:SP:24819-A,1,"La Gauterie",47.337335,-1.474589,-1,0,OPL:SA:AST-24819-A-24819-R,Europe/Paris,0,OPL, +OPL:SP:24819-R,1,"La Gauterie",47.337422,-1.474278,-1,0,OPL:SA:AST-24819-A-24819-R,Europe/Paris,0,OPL, +OPL:SP:24827-A,1,"Carrefour",47.187393,-1.803955,-1,0,OPL:SA:AST-24827-A-24827-R,Europe/Paris,0,OPL, +OPL:SP:24827-R,1,"Carrefour",47.187583,-1.804172,-1,0,OPL:SA:AST-24827-A-24827-R,Europe/Paris,0,OPL, +OPL:SP:24831-A,1,"La Digue",47.647885,-2.083275,-1,0,OPL:SA:AST-24831-A-24831-R,Europe/Paris,0,OPL, +OPL:SP:24831-R,1,"La Digue",47.647919,-2.082881,-1,0,OPL:SA:AST-24831-A-24831-R,Europe/Paris,0,OPL, +OPL:SP:24833-A,1,"Hôpital",47.112574,-2.066526,-1,0,OPL:SA:AST-24833-A-24833-R,Europe/Paris,0,OPL, +OPL:SP:24833-R,1,"Hôpital",47.112721,-2.066178,-1,0,OPL:SA:AST-24833-A-24833-R,Europe/Paris,0,OPL, +OPL:SP:24834-A,1,"Route de Paimboeuf",47.199086,-1.887177,-1,0,OPL:SA:AST-24834-A-24834-R,Europe/Paris,0,OPL, +OPL:SP:24834-R,1,"Route de Paimboeuf",47.199147,-1.887323,-1,0,OPL:SA:AST-24834-A-24834-R,Europe/Paris,0,OPL, +OPL:SP:24835-A,1,"Plein Air",47.276699,-2.011869,-1,0,OPL:SA:AST-24835-A-24835-R,Europe/Paris,0,OPL, +OPL:SP:24835-R,1,"Plein Air",47.276813,-2.012129,-1,0,OPL:SA:AST-24835-A-24835-R,Europe/Paris,0,OPL, +OPL:SP:24837-A,1,"Petit Bois",47.30464,-1.631079,-1,0,OPL:SA:AST-24837-A-24837-R,Europe/Paris,0,OPL, +OPL:SP:24837-R,1,"Petit Bois",47.304678,-1.630944,-1,0,OPL:SA:AST-24837-A-24837-R,Europe/Paris,0,OPL, +OPL:SP:24838-A,1,"Les Anges",47.27523,-1.637161,-1,0,OPL:SA:AST-24838-A-24838-R,Europe/Paris,0,OPL, +OPL:SP:24838-R,1,"Les Anges",47.275309,-1.637135,-1,0,OPL:SA:AST-24838-A-24838-R,Europe/Paris,2,OPL, +OPL:SP:24839-A,1,"Rue de la Madeleine",47.414885,-1.787348,-1,0,OPL:SA:AST-24839-A-24839-R,Europe/Paris,2,OPL, +OPL:SP:24839-R,1,"Rue de la Madeleine",47.415,-1.788388,-1,0,OPL:SA:AST-24839-A-24839-R,Europe/Paris,2,OPL, +OPL:SP:24840-A,1,"ZA de l'Erette",47.376722,-1.644178,-1,0,OPL:SA:AST-24840-A-24840-R,Europe/Paris,2,OPL, +OPL:SP:24840-R,1,"ZA de l'Erette",47.376729,-1.644176,-1,0,OPL:SA:AST-24840-A-24840-R,Europe/Paris,2,OPL, +OPL:SP:24845-A,1,"La Grande Haie",47.372841,-1.638938,-1,0,OPL:SA:AST-24845-A-24845-R,Europe/Paris,0,OPL, +OPL:SP:24845-R,1,"La Grande Haie",47.372886,-1.638761,-1,0,OPL:SA:AST-24845-A-24845-R,Europe/Paris,0,OPL, +OPL:SP:24846-A,1,"Plein Ciel",47.411976,-1.650924,-1,0,OPL:SA:AST-24846-A-24846-R,Europe/Paris,0,OPL, +OPL:SP:24846-R,1,"Plein Ciel",47.411997,-1.650771,-1,0,OPL:SA:AST-24846-A-24846-R,Europe/Paris,0,OPL, +OPL:SP:24856-A,1,"Dejoie",47.163262,-1.265464,-1,0,OPL:SA:AST-24856-A-24856-R,Europe/Paris,0,OPL, +OPL:SP:24856-R,1,"Dejoie",47.163105,-1.26538,-1,0,OPL:SA:AST-24856-A-24856-R,Europe/Paris,0,OPL, +OPL:SP:24861-A,1,"Église",47.199281,-1.429854,-1,0,OPL:SA:AST-24861-A-24861-R,Europe/Paris,0,OPL, +OPL:SP:24861-R,1,"Église",47.199281,-1.429839,-1,0,OPL:SA:AST-24861-A-24861-R,Europe/Paris,0,OPL, +OPL:SP:24862-A,1,"Rue du Port",47.039438,-1.641327,-1,0,OPL:SA:AST-24862-A-24862-R,Europe/Paris,0,OPL, +OPL:SP:24862-R,1,"Rue du Port",47.040059,-1.641917,-1,0,OPL:SA:AST-24862-A-24862-R,Europe/Paris,0,OPL, +OPL:SP:24865-A,1,"Saint Guillaume",47.421795,-2.1221,-1,0,OPL:SA:AST-24865-A-24865-R,Europe/Paris,0,OPL, +OPL:SP:24865-R,1,"Saint Guillaume",47.421719,-2.122059,-1,0,OPL:SA:AST-24865-A-24865-R,Europe/Paris,0,OPL, +OPL:SP:24866-A,1,"Le Louaré",47.311128,-1.855642,-1,0,OPL:SA:AST-24866-A-24866-R,Europe/Paris,0,OPL, +OPL:SP:24866-R,1,"Le Louaré",47.31139,-1.855898,-1,0,OPL:SA:AST-24866-A-24866-R,Europe/Paris,0,OPL, +OPL:SP:24890-A,1,"L'Aujardière",47.169794,-1.190197,-1,0,OPL:SA:AST-24890-A-24890-R,Europe/Paris,0,OPL, +OPL:SP:24890-R,1,"L'Aujardière",47.16994,-1.189477,-1,0,OPL:SA:AST-24890-A-24890-R,Europe/Paris,0,OPL, +OPL:SP:24891-A,1,"Sacré Cœur",47.089767,-1.610819,-1,0,OPL:SA:AST-24891-A-24891-R,Europe/Paris,2,OPL, +OPL:SP:24891-R,1,"Sacré Cœur",47.09001,-1.610954,-1,0,OPL:SA:AST-24891-A-24891-R,Europe/Paris,2,OPL, +OPL:SP:24892-A,1,"Champ de Foire",46.885917,-1.597272,-1,0,OPL:SA:AST-24892-A-24892-R,Europe/Paris,0,OPL, +OPL:SP:24892-R,1,"Champ de Foire",46.885917,-1.597318,-1,0,OPL:SA:AST-24892-A-24892-R,Europe/Paris,0,OPL, +OPL:SP:24896-A,1,"Bonnoeuvre",47.453745,-1.420427,-1,0,OPL:SA:AST-24896-A-24896-R,Europe/Paris,0,OPL, +OPL:SP:24896-R,1,"Bonnoeuvre",47.453441,-1.42038,-1,0,OPL:SA:AST-24896-A-24896-R,Europe/Paris,0,OPL, +OPL:SP:24912-A,1,"Fontaine aux Bruns",47.299346,-2.207516,-1,0,OPL:SA:AST-24912-A-24912-R,Europe/Paris,2,OPL, +OPL:SP:24912-R,1,"Fontaine aux Bruns",47.298738,-2.207121,-1,0,OPL:SA:AST-24912-A-24912-R,Europe/Paris,2,OPL, +OPL:SP:24913-A,1,"ZAC Grandchamp",47.292916,-2.208709,-1,0,OPL:SA:AST-24913-A-24913-R,Europe/Paris,2,OPL, +OPL:SP:24913-R,1,"ZAC Grandchamp",47.294002,-2.208048,-1,0,OPL:SA:AST-24913-A-24913-R,Europe/Paris,2,OPL, +OPL:SP:24914-A,1,"Joli Séjour",47.113107,-2.090993,-1,0,OPL:SA:AST-24914-A-24914-R,Europe/Paris,0,OPL, +OPL:SP:24914-R,1,"Joli Séjour",47.113107,-2.091018,-1,0,OPL:SA:AST-24914-A-24914-R,Europe/Paris,0,OPL, +OPL:SP:24918-A,1,"Port de Comberge",47.174018,-2.164345,-1,0,OPL:SA:AST-24918-A-24918-R,Europe/Paris,0,OPL, +OPL:SP:24918-R,1,"Port de Comberge",47.173911,-2.164521,-1,0,OPL:SA:AST-24918-A-24918-R,Europe/Paris,0,OPL, +OPL:SP:24930-A,1,"Rue du Pont",47.4606,-1.27634,-1,0,OPL:SA:AST-24930-A-24930-R,Europe/Paris,0,OPL, +OPL:SP:24930-R,1,"Rue du Pont",47.46048,-1.276064,-1,0,OPL:SA:AST-24930-A-24930-R,Europe/Paris,0,OPL, +OPL:SP:24933-A,1,"La Poste",47.411701,-1.374913,-1,0,OPL:SA:AST-24933-A-24933-R,Europe/Paris,2,OPL, +OPL:SP:24933-R,1,"La Poste",47.411684,-1.374585,-1,0,OPL:SA:AST-24933-A-24933-R,Europe/Paris,2,OPL, +OPL:SP:24938-A,1,"Le Cellier",47.324124,-1.348043,-1,0,OPL:SA:AST-24938-A-24938-R,Europe/Paris,0,OPL, +OPL:SP:24938-R,1,"Le Cellier",47.324144,-1.348068,-1,0,OPL:SA:AST-24938-A-24938-R,Europe/Paris,0,OPL, +OPL:SP:25034-A,1,"Georges Brassens",47.286886,-2.029357,-1,0,OPL:SA:AST-25034-A-25034-R,Europe/Paris,0,OPL, +OPL:SP:25034-R,1,"Georges Brassens",47.28683,-2.029357,-1,0,OPL:SA:AST-25034-A-25034-R,Europe/Paris,0,OPL, +OPL:SP:25037-A,1,"Fontaine",47.244049,-2.157795,-1,0,OPL:SA:AST-25037-A-25037-R,Europe/Paris,2,OPL, +OPL:SP:25037-R,1,"Fontaine",47.24191,-2.15684,-1,0,OPL:SA:AST-25037-A-25037-R,Europe/Paris,2,OPL, +OPL:SP:25097-A,1,"Sensive",47.262156,-1.342851,-1,0,OPL:SA:AST-25097-A-25097-R,Europe/Paris,0,OPL, +OPL:SP:25097-R,1,"Sensive",47.262731,-1.342597,-1,0,OPL:SA:AST-25097-A-25097-R,Europe/Paris,0,OPL, +OPL:SP:25210-A,1,"Néricou",47.558577,-1.7678,-1,0,OPL:SA:AST-25210-A-25210-R,Europe/Paris,0,OPL, +OPL:SP:25210-R,1,"Néricou",47.558548,-1.767699,-1,0,OPL:SA:AST-25210-A-25210-R,Europe/Paris,0,OPL, +OPL:SP:25211-A,1,"La Petiaudais",47.554578,-1.852841,-1,0,OPL:SA:AST-25211-A-25211-R,Europe/Paris,0,OPL, +OPL:SP:25211-R,1,"La Petiaudais",47.554748,-1.852685,-1,0,OPL:SA:AST-25211-A-25211-R,Europe/Paris,0,OPL, +OPL:SP:25244-A,1,"Desaix",47.226611,-1.543047,-1,0,OPL:SA:AST-25244-A-25244-R,Europe/Paris,2,OPL, +OPL:SP:25244-R,1,"Desaix",47.227435,-1.54225,-1,0,OPL:SA:AST-25244-A-25244-R,Europe/Paris,2,OPL, +OPL:SP:25246-A,1,"Colinière",47.235574,-1.508673,-1,0,OPL:SA:AST-25246-A-25246-R-25246-R1,Europe/Paris,2,OPL, +OPL:SP:25246-R,1,"Colinière",47.235811,-1.508488,-1,0,OPL:SA:AST-25246-A-25246-R-25246-R1,Europe/Paris,2,OPL, +OPL:SP:25246-R1,1,"Colinière",47.235673,-1.508491,-1,0,OPL:SA:AST-25246-A-25246-R-25246-R1,Europe/Paris,2,OPL, +OPL:SP:25247-A,1,"Bourdonnières",47.186363,-1.522074,-1,0,OPL:SA:AST-25247-A-25247-A1-25247-R-25247-R1-25247-R2,Europe/Paris,2,OPL, +OPL:SP:25247-A1,1,"Bourdonnières",47.187019,-1.518154,-1,0,OPL:SA:AST-25247-A-25247-A1-25247-R-25247-R1-25247-R2,Europe/Paris,2,OPL, +OPL:SP:25247-R,1,"Bourdonnières",47.186444,-1.522174,-1,0,OPL:SA:AST-25247-A-25247-A1-25247-R-25247-R1-25247-R2,Europe/Paris,2,OPL, +OPL:SP:25247-R1,1,"Bourdonnières",47.186706,-1.518004,-1,0,OPL:SA:AST-25247-A-25247-A1-25247-R-25247-R1-25247-R2,Europe/Paris,2,OPL, +OPL:SP:25247-R2,1,"Bourdonnières",47.188382,-1.519885,-1,0,OPL:SA:AST-25247-A-25247-A1-25247-R-25247-R1-25247-R2,Europe/Paris,2,OPL, +OPL:SP:25248-A,1,"Perrines",47.227629,-1.515443,-1,0,OPL:SA:AST-25248-A-25248-R,Europe/Paris,2,OPL, +OPL:SP:25248-R,1,"Perrines",47.227539,-1.515603,-1,0,OPL:SA:AST-25248-A-25248-R,Europe/Paris,2,OPL, +OPL:SP:25251-A,1,"Pinier",47.182555,-1.545558,-1,0,OPL:SA:AST-20958-R-25251-A-25251-R,Europe/Paris,2,OPL, +OPL:SP:25251-R,1,"Pinier",47.181778,-1.54545,-1,0,OPL:SA:AST-20958-R-25251-A-25251-R,Europe/Paris,2,OPL, +OPL:SP:25255-A,1,"Rond-point de Rennes",47.232468,-1.565275,-1,0,OPL:SA:AST-25255-A-25255-R,Europe/Paris,2,OPL, +OPL:SP:25255-R,1,"Rond-point de Rennes",47.232599,-1.565246,-1,0,OPL:SA:AST-25255-A-25255-R,Europe/Paris,2,OPL, +OPL:SP:25256-A,1,"Berlioz",47.239583,-1.571614,-1,0,OPL:SA:AST-25256-A-25256-R,Europe/Paris,2,OPL, +OPL:SP:25256-R,1,"Berlioz",47.240841,-1.572677,-1,0,OPL:SA:AST-25256-A-25256-R,Europe/Paris,2,OPL, +OPL:SP:25259-A,1,"St Nicolas",47.215681,-1.559322,-1,0,OPL:SA:AST-25259-A-25259-R,Europe/Paris,2,OPL, +OPL:SP:25259-R,1,"St Nicolas",47.215628,-1.560361,-1,0,OPL:SA:AST-25259-A-25259-R,Europe/Paris,2,OPL, +OPL:SP:25260,1,"Petit Port",47.242977,-1.556587,-1,0,OPL:SA:AST-25260,Europe/Paris,2,OPL, +OPL:SP:25262-A,1,"Lycée Rieffel",47.255553,-1.642279,-1,0,OPL:SA:AST-25262-A-25262-R,Europe/Paris,2,OPL, +OPL:SP:25262-R,1,"Lycée Rieffel",47.255582,-1.642405,-1,0,OPL:SA:AST-25262-A-25262-R,Europe/Paris,2,OPL, +OPL:SP:25298,1,"27 Otages",47.719039,-1.364558,-1,0,OPL:SA:AST-25298,Europe/Paris,0,OPL, +OPL:SP:25299,1,"Les Fauvettes",47.718045,-1.363189,-1,0,OPL:SA:AST-25299,Europe/Paris,0,OPL, +OPL:SP:25300,1,"Poste",47.719104,-1.378484,-1,0,OPL:SA:AST-25300,Europe/Paris,2,OPL, +OPL:SP:25301,1,"Resto du Cœur",47.707836,-1.37638,-1,0,OPL:SA:AST-25301,Europe/Paris,0,OPL, +OPL:SP:25302,1,"Provence",47.709603,-1.378952,-1,0,OPL:SA:AST-25302,Europe/Paris,0,OPL, +OPL:SP:25303,1,"Centre Commercial Rue Franklin",47.70736,-1.384577,-1,0,OPL:SA:AST-25303,Europe/Paris,0,OPL, +OPL:SP:25304,1,"Centre Commercial Rue Eisenhower",47.706286,-1.388147,-1,0,OPL:SA:AST-25304,Europe/Paris,0,OPL, +OPL:SP:25307,1,"Av de la Fraternité",47.710281,-1.387948,-1,0,OPL:SA:AST-25307,Europe/Paris,0,OPL, +OPL:SP:25309,1,"Halte Garderie",47.713376,-1.387275,-1,0,OPL:SA:AST-25309,Europe/Paris,0,OPL, +OPL:SP:25310,1,"Centre Commercial R. Brient",47.717687,-1.388386,-1,0,OPL:SA:AST-25310,Europe/Paris,0,OPL, +OPL:SP:25311,1,"Trinité",47.72279,-1.380702,-1,0,OPL:SA:AST-25311,Europe/Paris,0,OPL, +OPL:SP:25313,1,"Hôpital",47.726218,-1.383161,-1,0,OPL:SA:AST-25313,Europe/Paris,0,OPL, +OPL:SP:25314,1,"Angle Brest/Metz",47.72675,-1.387777,-1,0,OPL:SA:AST-25314,Europe/Paris,0,OPL, +OPL:SP:25315,1,"Mairie",47.721586,-1.37608,-1,0,OPL:SA:AST-25315,Europe/Paris,0,OPL, +OPL:SP:25435-A,1,"Porte de Vertou",47.181102,-1.505618,-1,0,OPL:SA:AST-25435-A-25435-R,Europe/Paris,2,OPL, +OPL:SP:25435-R,1,"Porte de Vertou",47.180568,-1.504649,-1,0,OPL:SA:AST-25435-A-25435-R,Europe/Paris,2,OPL, +OPL:SP:25483-A,1,"La Bernardière",47.286944,-1.705552,-1,0,OPL:SA:AST-25483-A-25483-R,Europe/Paris,0,OPL, +OPL:SP:25483-R,1,"La Bernardière",47.286733,-1.705467,-1,0,OPL:SA:AST-25483-A-25483-R,Europe/Paris,0,OPL, +OPL:SP:25489-A,1,"Les Rousses",47.512967,-1.958114,-1,0,OPL:SA:AST-25489-A-25489-R,Europe/Paris,0,OPL, +OPL:SP:25489-R,1,"Les Rousses",47.512891,-1.958026,-1,0,OPL:SA:AST-25489-A-25489-R,Europe/Paris,0,OPL, +OPL:SP:25490-A,1,"Croix Millette",47.481239,-1.915277,-1,0,OPL:SA:AST-25490-A-25490-R,Europe/Paris,0,OPL, +OPL:SP:25490-R,1,"Croix Millette",47.481397,-1.915382,-1,0,OPL:SA:AST-25490-A-25490-R,Europe/Paris,0,OPL, +OPL:SP:25491-A,1,"Château Rouge",47.520515,-2.011978,-1,0,OPL:SA:AST-25491-A-25491-R,Europe/Paris,0,OPL, +OPL:SP:25491-R,1,"Château Rouge",47.520543,-2.013722,-1,0,OPL:SA:AST-25491-A-25491-R,Europe/Paris,0,OPL, +OPL:SP:25492-A,1,"Bas Épaud",47.485582,-1.922475,-1,0,OPL:SA:AST-25492-A-25492-R,Europe/Paris,0,OPL, +OPL:SP:25492-R,1,"Bas Épaud",47.485702,-1.922303,-1,0,OPL:SA:AST-25492-A-25492-R,Europe/Paris,0,OPL, +OPL:SP:25493-A,1,"Govilon",47.47679,-2.162852,-1,0,OPL:SA:AST-25493-A-25493-R,Europe/Paris,0,OPL, +OPL:SP:25493-R,1,"Govilon",47.476809,-2.162735,-1,0,OPL:SA:AST-25493-A-25493-R,Europe/Paris,0,OPL, +OPL:SP:25496-A,1,"Grand Rue",47.46124,-1.950194,-1,0,OPL:SA:AST-25496-A-25496-R,Europe/Paris,0,OPL, +OPL:SP:25496-R,1,"Grand Rue",47.461004,-1.950281,-1,0,OPL:SA:AST-25496-A-25496-R,Europe/Paris,0,OPL, +OPL:SP:25516,1,"Maison de Retraite",47.724247,-1.382959,-1,0,OPL:SA:AST-25516,Europe/Paris,0,OPL, +OPL:SP:25551-A,1,"Mairie",47.207423,-2.043806,-1,0,OPL:SA:AST-25551-A-25551-R,Europe/Paris,0,OPL, +OPL:SP:25551-R,1,"Mairie",47.207454,-2.043597,-1,0,OPL:SA:AST-25551-A-25551-R,Europe/Paris,0,OPL, +OPL:SP:25566-A,1,"Foyer",47.434173,-2.092911,-1,0,OPL:SA:AST-25566-A-25566-R,Europe/Paris,0,OPL, +OPL:SP:25566-R,1,"Foyer",47.434205,-2.092913,-1,0,OPL:SA:AST-25566-A-25566-R,Europe/Paris,0,OPL, +OPL:SP:25568-A,1,"Marboeuf",47.067115,-1.518324,-1,0,OPL:SA:AST-25568-A-25568-R,Europe/Paris,0,OPL, +OPL:SP:25568-R,1,"Marboeuf",47.065804,-1.517878,-1,0,OPL:SA:AST-25568-A-25568-R,Europe/Paris,0,OPL, +OPL:SP:25570-A,1,"Coët Rotz",47.444163,-2.092412,-1,0,OPL:SA:AST-25570-A-25570-R,Europe/Paris,0,OPL, +OPL:SP:25570-R,1,"Coët Rotz",47.444125,-2.092261,-1,0,OPL:SA:AST-25570-A-25570-R,Europe/Paris,0,OPL, +OPL:SP:25572-A,1,"3m",47.427224,-2.069677,-1,0,OPL:SA:AST-25572-A-25572-R,Europe/Paris,0,OPL, +OPL:SP:25572-R,1,"3m",47.427293,-2.069763,-1,0,OPL:SA:AST-25572-A-25572-R,Europe/Paris,0,OPL, +OPL:SP:25573-A,1,"Pharmacie",47.516809,-1.293052,-1,0,OPL:SA:AST-25573-A-25573-R,Europe/Paris,0,OPL, +OPL:SP:25573-R,1,"Pharmacie",47.516898,-1.293007,-1,0,OPL:SA:AST-25573-A-25573-R,Europe/Paris,0,OPL, +OPL:SP:25581-A,1,"ZA des Bauches",47.632281,-2.052483,-1,0,OPL:SA:AST-25581-A-25581-R,Europe/Paris,0,OPL, +OPL:SP:25581-R,1,"ZA des Bauches",47.632368,-2.052384,-1,0,OPL:SA:AST-25581-A-25581-R,Europe/Paris,0,OPL, +OPL:SP:25585-A,1,"Plongeon",47.466987,-1.717244,-1,0,OPL:SA:AST-25585-A-25585-R,Europe/Paris,0,OPL, +OPL:SP:25585-R,1,"Plongeon",47.467065,-1.716898,-1,0,OPL:SA:AST-25585-A-25585-R,Europe/Paris,0,OPL, +OPL:SP:25682-A,1,"Centre",47.169632,-1.723047,-1,0,OPL:SA:AST-25682-A-25682-R,Europe/Paris,2,OPL, +OPL:SP:25682-R,1,"Centre",47.169612,-1.723022,-1,0,OPL:SA:AST-25682-A-25682-R,Europe/Paris,2,OPL, +OPL:SP:25752-A,1,"Pan Loup",47.240473,-1.66159,-1,0,OPL:SA:AST-25752-A-25752-R,Europe/Paris,0,OPL, +OPL:SP:25752-R,1,"Pan Loup",47.240337,-1.660764,-1,0,OPL:SA:AST-25752-A-25752-R,Europe/Paris,0,OPL, +OPL:SP:25756-A,1,"Pôle de Bresse",47.247904,-2.16226,-1,0,OPL:SA:AST-25756-A-25756-R,Europe/Paris,2,OPL, +OPL:SP:25756-R,1,"Pôle de Bresse",47.247906,-2.162273,-1,0,OPL:SA:AST-25756-A-25756-R,Europe/Paris,2,OPL, +OPL:SP:25787-A,1,"Maillardais",47.525768,-1.768483,-1,0,OPL:SA:AST-25787-A-25787-R,Europe/Paris,0,OPL, +OPL:SP:25787-R,1,"Maillardais",47.525857,-1.768272,-1,0,OPL:SA:AST-25787-A-25787-R,Europe/Paris,0,OPL, +OPL:SP:25788-A,1,"Rond point de la Belle Étoile",47.516398,-1.802487,-1,0,OPL:SA:AST-25788-A-25788-R,Europe/Paris,0,OPL, +OPL:SP:25788-R,1,"Rond point de la Belle Étoile",47.516429,-1.802675,-1,0,OPL:SA:AST-25788-A-25788-R,Europe/Paris,0,OPL, +OPL:SP:25789-A,1,"Centre Commercial",47.47358,-1.747287,-1,0,OPL:SA:AST-25789-A-25789-R,Europe/Paris,0,OPL, +OPL:SP:25789-R,1,"Centre Commercial",47.473345,-1.746271,-1,0,OPL:SA:AST-25789-A-25789-R,Europe/Paris,0,OPL, +OPL:SP:25790-A,1,"L'Oseraye",47.517937,-1.64217,-1,0,OPL:SA:AST-25790-A-25790-R,Europe/Paris,2,OPL, +OPL:SP:25790-R,1,"L'Oseraye",47.517947,-1.642165,-1,0,OPL:SA:AST-25790-A-25790-R,Europe/Paris,2,OPL, +OPL:SP:25828-A,1,"Centre",47.138371,-2.190995,-1,0,OPL:SA:AST-25828-A-25828-R,Europe/Paris,0,OPL, +OPL:SP:25828-R,1,"Centre",47.138313,-2.190831,-1,0,OPL:SA:AST-25828-A-25828-R,Europe/Paris,0,OPL, +OPL:SP:25880-A,1,"Neuville Rond-point",47.420696,-1.657625,-1,0,OPL:SA:AST-25880-A-25880-R,Europe/Paris,0,OPL, +OPL:SP:25880-R,1,"Neuville Rond-point",47.420511,-1.657263,-1,0,OPL:SA:AST-25880-A-25880-R,Europe/Paris,0,OPL, +OPL:SP:25901-A,1,"Maladrie",47.188326,-1.496127,-1,0,OPL:SA:AST-25901-A-25901-R,Europe/Paris,0,OPL, +OPL:SP:25901-R,1,"Maladrie",47.18808,-1.494262,-1,0,OPL:SA:AST-25901-A-25901-R,Europe/Paris,0,OPL, +OPL:SP:26142-A,1,"Le Moulin de la Croix",47.034418,-1.654926,-1,0,OPL:SA:AST-26142-A-26142-R,Europe/Paris,0,OPL, +OPL:SP:26142-R,1,"Le Moulin de la Croix",47.03478,-1.654663,-1,0,OPL:SA:AST-26142-A-26142-R,Europe/Paris,0,OPL, +OPL:SP:26158-A,1,"Croissant",47.240904,-1.530123,-1,0,OPL:SA:AST-26158-A-26158-R,Europe/Paris,2,OPL, +OPL:SP:26158-R,1,"Croissant",47.240945,-1.529957,-1,0,OPL:SA:AST-26158-A-26158-R,Europe/Paris,2,OPL, +OPL:SP:26159-A,1,"George Sand",47.165752,-1.544892,-1,0,OPL:SA:AST-26159-A-26159-R,Europe/Paris,2,OPL, +OPL:SP:26159-R,1,"George Sand",47.165847,-1.54554,-1,0,OPL:SA:AST-26159-A-26159-R,Europe/Paris,2,OPL, +OPL:SP:26166-A,1,"Route de Remouillé",47.059252,-1.361513,-1,0,OPL:SA:AST-26166-A-26166-R,Europe/Paris,0,OPL, +OPL:SP:26166-R,1,"Route de Remouillé",47.059252,-1.362173,-1,0,OPL:SA:AST-26166-A-26166-R,Europe/Paris,0,OPL, +OPL:SP:26202-A,1,"Pont Béranger",47.130778,-1.836697,-1,0,OPL:SA:AST-26202-A-26202-R,Europe/Paris,0,OPL, +OPL:SP:26202-R,1,"Pont Béranger",47.131245,-1.834239,-1,0,OPL:SA:AST-26202-A-26202-R,Europe/Paris,0,OPL, +OPL:SP:26222-A,1,"Le Poteau Vert",47.611858,-2.039209,-1,0,OPL:SA:AST-26222-A-26222-R,Europe/Paris,0,OPL, +OPL:SP:26222-R,1,"Le Poteau Vert",47.611641,-2.038967,-1,0,OPL:SA:AST-26222-A-26222-R,Europe/Paris,0,OPL, +OPL:SP:26232-A,1,"Mairie",47.313162,-1.32185,-1,0,OPL:SA:AST-26232-A-26232-R,Europe/Paris,0,OPL, +OPL:SP:26232-R,1,"Mairie",47.313166,-1.321844,-1,0,OPL:SA:AST-26232-A-26232-R,Europe/Paris,0,OPL, +OPL:SP:26233-A,1,"Grand Carcouët",47.231276,-1.592161,-1,0,OPL:SA:AST-26233-A-26233-R,Europe/Paris,2,OPL, +OPL:SP:26233-R,1,"Grand Carcouët",47.231276,-1.592148,-1,0,OPL:SA:AST-26233-A-26233-R,Europe/Paris,2,OPL, +OPL:SP:26234,1,"Maison de l'Enfance",47.714499,-1.358356,-1,0,OPL:SA:AST-26234,Europe/Paris,0,OPL, +OPL:SP:26236,1,"Centre Commercial Vent d'Ouest",47.705259,-1.391438,-1,0,OPL:SA:AST-26236,Europe/Paris,0,OPL, +OPL:SP:26244-A,1,"La Haie Maheas",47.287843,-1.816001,-1,0,OPL:SA:AST-26244-A-26244-R,Europe/Paris,0,OPL, +OPL:SP:26244-R,1,"La Haie Maheas",47.288099,-1.816312,-1,0,OPL:SA:AST-26244-A-26244-R,Europe/Paris,0,OPL, +OPL:SP:26257-A,1,"La Morandais",47.384119,-2.093658,-1,0,OPL:SA:AST-26257-A-26257-R,Europe/Paris,0,OPL, +OPL:SP:26257-R,1,"La Morandais",47.384453,-2.093423,-1,0,OPL:SA:AST-26257-A-26257-R,Europe/Paris,0,OPL, +OPL:SP:26981-A,1,"Cent Sillons",47.370109,-1.608593,-1,0,OPL:SA:AST-26981-A-26981-R,Europe/Paris,2,OPL, +OPL:SP:26981-R,1,"Cent Sillons",47.37011,-1.608583,-1,0,OPL:SA:AST-26981-A-26981-R,Europe/Paris,2,OPL, +OPL:SP:27071,1,"Anna de Noailles",47.714275,-1.368427,-1,0,OPL:SA:AST-27071,Europe/Paris,0,OPL, +OPL:SP:27091-A,1,"Gare SNCF",47.717318,-1.371867,-1,0,OPL:SA:AST-27091-A-27091-R,Europe/Paris,2,OPL, +OPL:SP:27091-R,1,"Gare SNCF",47.7173,-1.37187,-1,0,OPL:SA:AST-27091-A-27091-R,Europe/Paris,2,OPL, +OPL:SP:27107-A,1,"Gare Sncf",46.686755,-1.049815,-1,0,OPL:SA:AST-27107-A-27107-R,Europe/Paris,0,OPL, +OPL:SP:27107-R,1,"Gare Sncf",46.686755,-1.050471,-1,0,OPL:SA:AST-27107-A-27107-R,Europe/Paris,0,OPL, +OPL:SP:27159-A,1,"Montagné",47.440052,-1.47602,-1,0,OPL:SA:AST-27159-A-27159-R,Europe/Paris,0,OPL, +OPL:SP:27159-R,1,"Montagné",47.439607,-1.474001,-1,0,OPL:SA:AST-27159-A-27159-R,Europe/Paris,0,OPL, +OPL:SP:27263-A,1,"Ville Halluard",47.284492,-2.202668,-1,0,OPL:SA:AST-27263-A-27263-R,Europe/Paris,2,OPL, +OPL:SP:27263-R,1,"Ville Halluard",47.284383,-2.202751,-1,0,OPL:SA:AST-27263-A-27263-R,Europe/Paris,2,OPL, +OPL:SP:27264-A,1,"Bellevue",47.307053,-2.179216,-1,0,OPL:SA:AST-27264-A-27264-R,Europe/Paris,2,OPL, +OPL:SP:27264-R,1,"Bellevue",47.306807,-2.179422,-1,0,OPL:SA:AST-27264-A-27264-R,Europe/Paris,2,OPL, +OPL:SP:27265-A,1,"Émile Zola",47.299543,-2.191568,-1,0,OPL:SA:AST-27265-A-27265-R,Europe/Paris,2,OPL, +OPL:SP:27265-R,1,"Émile Zola",47.298463,-2.193058,-1,0,OPL:SA:AST-27265-A-27265-R,Europe/Paris,2,OPL, +OPL:SP:27308-A,1,"Espace Diderot",47.183695,-1.562921,-1,0,OPL:SA:AST-27308-A-27308-R,Europe/Paris,2,OPL, +OPL:SP:27308-R,1,"Espace Diderot",47.184516,-1.56348,-1,0,OPL:SA:AST-27308-A-27308-R,Europe/Paris,2,OPL, +OPL:SP:27313-A,1,"Morlière",47.247054,-1.60343,-1,0,OPL:SA:AST-27313-A-27313-R,Europe/Paris,2,OPL, +OPL:SP:27313-R,1,"Morlière",47.246892,-1.60315,-1,0,OPL:SA:AST-27313-A-27313-R,Europe/Paris,2,OPL, +OPL:SP:27359-A,1,"Le Pé Bardou",47.228333,-1.313566,-1,0,OPL:SA:AST-27359-A-27359-R,Europe/Paris,0,OPL, +OPL:SP:27359-R,1,"Le Pé Bardou",47.228262,-1.313644,-1,0,OPL:SA:AST-27359-A-27359-R,Europe/Paris,0,OPL, +OPL:SP:27401-A,1,"Carrefour Emilière",47.119397,-1.563129,-1,0,OPL:SA:AST-27401-A-27401-R,Europe/Paris,0,OPL, +OPL:SP:27401-R,1,"Carrefour Emilière",47.119404,-1.563178,-1,0,OPL:SA:AST-27401-A-27401-R,Europe/Paris,0,OPL, +OPL:SP:27423-A,1,"François Mitterrand",47.222099,-1.638512,-1,0,OPL:SA:AST-27423-A-27423-R,Europe/Paris,2,OPL, +OPL:SP:27423-R,1,"François Mitterrand",47.222017,-1.638493,-1,0,OPL:SA:AST-27423-A-27423-R,Europe/Paris,2,OPL, +OPL:SP:27426-A,1,"La Paclais",47.35968,-2.102183,-1,0,OPL:SA:AST-27426-A-27426-R,Europe/Paris,0,OPL, +OPL:SP:27426-R,1,"La Paclais",47.35915,-2.102348,-1,0,OPL:SA:AST-27426-A-27426-R,Europe/Paris,0,OPL, +OPL:SP:27428,1,"Depan' Vit",47.720295,-1.359111,-1,0,OPL:SA:AST-27428,Europe/Paris,0,OPL, +OPL:SP:27457-A,1,"Malraux",47.254335,-1.517641,-1,0,OPL:SA:AST-27457-A-27457-R,Europe/Paris,2,OPL, +OPL:SP:27457-R,1,"Malraux",47.254404,-1.51748,-1,0,OPL:SA:AST-27457-A-27457-R,Europe/Paris,2,OPL, +OPL:SP:27477-A,1,"Gare SNCF",47.441535,-1.502865,-1,0,OPL:SA:AST-27477-A-27477-R,Europe/Paris,2,OPL, +OPL:SP:27477-R,1,"Gare SNCF",47.441497,-1.502862,-1,0,OPL:SA:AST-27477-A-27477-R,Europe/Paris,2,OPL, +OPL:SP:27478-A,1,"Gare Tram-train",47.342652,-1.530063,-1,0,STT:SA:OCE87590828,Europe/Paris,2,OPL, +OPL:SP:27478-R,1,"Gare Tram-train",47.342683,-1.530042,-1,0,STT:SA:OCE87590828,Europe/Paris,2,OPL, +OPL:SP:27508-A,1,"Herbins",47.289692,-2.209509,-1,0,OPL:SA:AST-27508-A-27508-R,Europe/Paris,2,OPL, +OPL:SP:27508-R,1,"Herbins",47.289743,-2.209421,-1,0,OPL:SA:AST-27508-A-27508-R,Europe/Paris,2,OPL, +OPL:SP:27509-A,1,"Édouard Herriot",47.320169,-2.192087,-1,0,OPL:SA:AST-27509-A-27509-R,Europe/Paris,2,OPL, +OPL:SP:27509-R,1,"Édouard Herriot",47.320131,-2.191603,-1,0,OPL:SA:AST-27509-A-27509-R,Europe/Paris,2,OPL, +OPL:SP:27519-A,1,"Thébaudières",47.2444,-1.606352,-1,0,OPL:SA:AST-27519-A-27519-R,Europe/Paris,2,OPL, +OPL:SP:27519-R,1,"Thébaudières",47.244502,-1.606204,-1,0,OPL:SA:AST-27519-A-27519-R,Europe/Paris,2,OPL, +OPL:SP:27546-A,1,"ESAT",47.428538,-2.074317,-1,0,OPL:SA:AST-27546-A-27546-R,Europe/Paris,0,OPL, +OPL:SP:27546-R,1,"ESAT",47.428567,-2.074392,-1,0,OPL:SA:AST-27546-A-27546-R,Europe/Paris,0,OPL, +OPL:SP:27586-A,1,"Rue de Nantes",47.664769,-1.668841,-1,0,OPL:SA:AST-27586-A-27586-R,Europe/Paris,2,OPL, +OPL:SP:27586-R,1,"Rue de Nantes",47.664607,-1.668552,-1,0,OPL:SA:AST-27586-A-27586-R,Europe/Paris,2,OPL, +OPL:SP:27736-A,1,"Place République",46.647821,-0.741883,-1,0,OPL:SA:AST-27736-A-27736-R,Europe/Paris,0,OPL, +OPL:SP:27736-R,1,"Place République",46.647873,-0.742022,-1,0,OPL:SA:AST-27736-A-27736-R,Europe/Paris,0,OPL, +OPL:SP:27737-A,1,"Foch Cathédrale",47.219278,-1.550199,-1,0,OPL:SA:AST-27737-A-27737-R,Europe/Paris,2,OPL, +OPL:SP:27737-R,1,"Foch Cathédrale",47.218749,-1.550483,-1,0,OPL:SA:AST-27737-A-27737-R,Europe/Paris,2,OPL, +OPL:SP:27738-A,1,"Anglourie",47.392923,-2.092595,-1,0,OPL:SA:AST-27738-A-27738-R,Europe/Paris,0,OPL, +OPL:SP:27738-R,1,"Anglourie",47.392653,-2.092736,-1,0,OPL:SA:AST-27738-A-27738-R,Europe/Paris,0,OPL, +OPL:SP:27746-A,1,"Rue de Bretagne",46.939722,-1.513068,-1,0,OPL:SA:AST-27746-A-27746-R,Europe/Paris,0,OPL, +OPL:SP:27746-R,1,"Rue de Bretagne",46.939697,-1.513367,-1,0,OPL:SA:AST-27746-A-27746-R,Europe/Paris,0,OPL, +OPL:SP:27774-A,1,"Guénardière Rond-point",47.436747,-1.483292,-1,0,OPL:SA:AST-27774-A-27774-R,Europe/Paris,0,OPL, +OPL:SP:27774-R,1,"Guénardière Rond-point",47.436117,-1.483015,-1,0,OPL:SA:AST-27774-A-27774-R,Europe/Paris,0,OPL, +OPL:SP:27777-A,1,"Revin",47.373572,-2.125844,-1,0,OPL:SA:AST-27777-A-27777-R,Europe/Paris,0,OPL, +OPL:SP:27777-R,1,"Revin",47.373647,-2.125765,-1,0,OPL:SA:AST-27777-A-27777-R,Europe/Paris,0,OPL, +OPL:SP:27793-A,1,"Aire de Covoiturage",47.442472,-1.434644,-1,0,OPL:SA:AST-27793-A-27793-R,Europe/Paris,2,OPL, +OPL:SP:27793-R,1,"Aire de Covoiturage",47.442353,-1.433425,-1,0,OPL:SA:AST-27793-A-27793-R,Europe/Paris,2,OPL, +OPL:SP:27796-A,1,"La Chapelaine",47.269824,-1.334674,-1,0,OPL:SA:AST-27796-A-27796-R,Europe/Paris,2,OPL, +OPL:SP:27796-R,1,"La Chapelaine",47.269822,-1.334668,-1,0,OPL:SA:AST-27796-A-27796-R,Europe/Paris,2,OPL, +OPL:SP:27797-A,1,"Rond-Point des Places",47.2421,-1.428606,-1,0,OPL:SA:AST-27797-A-27797-R,Europe/Paris,2,OPL, +OPL:SP:27797-R,1,"Rond-Point des Places",47.243518,-1.426718,-1,0,OPL:SA:AST-27797-A-27797-R,Europe/Paris,2,OPL, +OPL:SP:27799-A,1,"Boulevard de Doulon",47.224449,-1.520236,-1,0,OPL:SA:AST-27799-A-27799-R,Europe/Paris,2,OPL, +OPL:SP:27799-R,1,"Boulevard de Doulon",47.22444,-1.520254,-1,0,OPL:SA:AST-27799-A-27799-R,Europe/Paris,2,OPL, +OPL:SP:27961,1,"Cité Scolaire",47.726675,-1.370827,-1,0,OPL:SA:AST-27961,Europe/Paris,0,OPL, +OPL:SP:27962,1,"Centre Bretagne",47.714359,-1.387641,-1,0,OPL:SA:AST-27962,Europe/Paris,0,OPL, +OPL:SP:27963,1,"César Franck",47.712743,-1.385886,-1,0,OPL:SA:AST-27963,Europe/Paris,0,OPL, +OPL:SP:27964,1,"Kuhn",47.705776,-1.3944,-1,0,OPL:SA:AST-27964,Europe/Paris,0,OPL, +OPL:SP:28243-A,1,"Aire du golfeur",47.367732,-1.935571,-1,0,OPL:SA:AST-28243-A-28243-R,Europe/Paris,2,OPL, +OPL:SP:28243-R,1,"Aire du golfeur",47.367817,-1.935419,-1,0,OPL:SA:AST-28243-A-28243-R,Europe/Paris,2,OPL, +OPL:SP:6933-A,1,"Le fréty Petit",47.123399,-1.600527,-1,0,OPL:SA:AST-6933-A-6933-R,Europe/Paris,0,OPL, +OPL:SP:6933-R,1,"Le fréty Petit",47.123392,-1.600504,-1,0,OPL:SA:AST-6933-A-6933-R,Europe/Paris,0,OPL, +OPL:SP:6973-A,1,"L'Essart",47.137549,-1.554385,-1,0,OPL:SA:AST-6973-A-6973-R,Europe/Paris,0,OPL, +OPL:SP:6973-R,1,"L'Essart",47.137582,-1.554467,-1,0,OPL:SA:AST-6973-A-6973-R,Europe/Paris,0,OPL, +OPL:SP:6974-A,1,"Moulin Robert",47.123986,-1.551642,-1,0,OPL:SA:AST-6974-A-6974-R,Europe/Paris,0,OPL, +OPL:SP:6974-R,1,"Moulin Robert",47.123935,-1.551605,-1,0,OPL:SA:AST-6974-A-6974-R,Europe/Paris,0,OPL, +OPL:SP:6977-A,1,"L'enclose",47.118232,-1.537176,-1,0,OPL:SA:AST-6977-A-6977-R,Europe/Paris,0,OPL, +OPL:SP:6977-R,1,"L'enclose",47.118105,-1.537177,-1,0,OPL:SA:AST-6977-A-6977-R,Europe/Paris,0,OPL, +OPL:SP:7008-A,1,"La Vincée",47.128963,-1.545494,-1,0,OPL:SA:AST-7008-A-7008-R,Europe/Paris,0,OPL, +OPL:SP:7008-R,1,"La Vincée",47.128945,-1.545452,-1,0,OPL:SA:AST-7008-A-7008-R,Europe/Paris,0,OPL, +OPL:SP:7009-A,1,"Basses Ménanties",47.128855,-1.566577,-1,0,OPL:SA:AST-7009-A-7009-R,Europe/Paris,0,OPL, +OPL:SP:7009-R,1,"Basses Ménanties",47.12884,-1.566659,-1,0,OPL:SA:AST-7009-A-7009-R,Europe/Paris,0,OPL, +OPL:SP:7012-A,1,"Ménanties",47.128942,-1.56196,-1,0,OPL:SA:AST-7012-A-7012-R,Europe/Paris,0,OPL, +OPL:SP:7012-R,1,"Ménanties",47.128949,-1.561988,-1,0,OPL:SA:AST-7012-A-7012-R,Europe/Paris,0,OPL, +OPL:SP:7015-A,1,"La colletterie",47.122731,-1.547481,-1,0,OPL:SA:AST-7015-A-7015-R,Europe/Paris,0,OPL, +OPL:SP:7015-R,1,"La colletterie",47.122726,-1.547587,-1,0,OPL:SA:AST-7015-A-7015-R,Europe/Paris,0,OPL, +OPL:SP:7022-A,1,"La benêtière",47.113316,-1.534388,-1,0,OPL:SA:AST-7022-A-7022-R,Europe/Paris,0,OPL, +OPL:SP:7022-R,1,"La benêtière",47.113318,-1.534467,-1,0,OPL:SA:AST-7022-A-7022-R,Europe/Paris,0,OPL, +OPL:SP:7341-A,1,"La Padiolière",47.04469,-1.71798,-1,0,OPL:SA:AST-7341-A-7341-R,Europe/Paris,0,OPL, +OPL:SP:7341-R,1,"La Padiolière",47.044769,-1.717972,-1,0,OPL:SA:AST-7341-A-7341-R,Europe/Paris,0,OPL, +OPL:SP:85191-A,1,"PEM / Gare SNCF",46.67294,-1.434917,-1,0,OPL:SA:AST-85191-A-85191-R,Europe/Paris,2,OPL, +OPL:SP:85191-R,1,"PEM / Gare SNCF",46.673022,-1.436084,-1,0,OPL:SA:AST-85191-A-85191-R,Europe/Paris,2,OPL, +OPL:SP:CHGN1,1,"Châtaigniers",47.221549,-1.602021,-1,0,OPL:SA:AST-CHGN1-CHGN2,Europe/Paris,2,OPL, +OPL:SP:CHGN2,1,"Châtaigniers",47.221694,-1.601838,-1,0,OPL:SA:AST-CHGN1-CHGN2,Europe/Paris,2,OPL, +OPL:SP:CHLI1,1,"Cholière",47.251063,-1.606647,-1,0,OPL:SA:AST-CHLI1-CHLI2,Europe/Paris,2,OPL, +OPL:SP:CHLI2,1,"Cholière",47.25089,-1.606736,-1,0,OPL:SA:AST-CHLI1-CHLI2,Europe/Paris,2,OPL, +OPL:SP:CLGE2-A,1,"Chalonges",47.18924,-1.472516,-1,0,OPL:SA:AST-CLGE2-A-CLGE3-R,Europe/Paris,2,OPL, +OPL:SP:CLGE3-R,1,"Chalonges",47.18918,-1.472472,-1,0,OPL:SA:AST-CLGE2-A-CLGE3-R,Europe/Paris,2,OPL, +OPL:SP:GLOU1,1,"Grange au Loup",47.263645,-1.515656,-1,0,OPL:SA:AST-GLOU1-GLOU2,Europe/Paris,2,OPL, +OPL:SP:GLOU2,1,"Grange au Loup",47.263683,-1.515547,-1,0,OPL:SA:AST-GLOU1-GLOU2,Europe/Paris,2,OPL, +OPL:SP:HOSE1,1,"Housseau (lycée carquefou)",47.280888,-1.498493,-1,0,OPL:SA:AST-HOSE1-HOSE2,Europe/Paris,0,OPL, +OPL:SP:HOSE2,1,"Housseau (lycée carquefou)",47.28097,-1.49838,-1,0,OPL:SA:AST-HOSE1-HOSE2,Europe/Paris,0,OPL, +OPL:SP:ICAM1,1,"ICAM",47.273499,-1.501928,-1,0,OPL:SA:AST-ICAM1-ICAM2,Europe/Paris,0,OPL, +OPL:SP:ICAM2,1,"ICAM",47.273786,-1.501865,-1,0,OPL:SA:AST-ICAM1-ICAM2,Europe/Paris,0,OPL, +OPL:SP:temp014-A,1,"Arthus Princé",47.121684,-1.916302,-1,0,OPL:SA:AST-temp014-A-temp014-R,Europe/Paris,0,OPL, +OPL:SP:temp014-R,1,"Arthus Princé",47.121757,-1.916319,-1,0,OPL:SA:AST-temp014-A-temp014-R,Europe/Paris,0,OPL, +OPL:SP:temp032-A,1,"Le Clion Sur Mer / Rue de la Gare",47.119452,-2.049744,-1,0,OPL:SA:AST-temp032-A-temp032-R,Europe/Paris,0,OPL, +OPL:SP:temp032-R,1,"Le Clion Sur Mer / Rue de la Gare",47.119403,-2.050319,-1,0,OPL:SA:AST-temp032-A-temp032-R,Europe/Paris,0,OPL, +OPL:SP:temp049-A,1,"Le Bosquet",47.264085,-2.164403,-1,0,OPL:SA:AST-temp049-A-temp049-R,Europe/Paris,0,OPL, +OPL:SP:temp049-R,1,"Le Bosquet",47.263957,-2.164811,-1,0,OPL:SA:AST-temp049-A-temp049-R,Europe/Paris,0,OPL, +OPL:SP:temp065-A,1,"Prés Chauveau",47.254714,-1.411081,-1,0,OPL:SA:AST-temp065-A-temp065-R,Europe/Paris,2,OPL, +OPL:SP:temp065-R,1,"Prés Chauveau",47.254659,-1.410956,-1,0,OPL:SA:AST-temp065-A-temp065-R,Europe/Paris,2,OPL, +OPL:SP:temp068-A,1,"La Busnière",47.401968,-1.536186,-1,0,OPL:SA:AST-temp068-A-temp068-R,Europe/Paris,0,OPL, +OPL:SP:temp068-R,1,"La Busnière",47.401967,-1.536173,-1,0,OPL:SA:AST-temp068-A-temp068-R,Europe/Paris,0,OPL, +OPL:SP:temp1-A,1,"La Contentinais",47.252862,-2.006384,-1,0,OPL:SA:AST-temp1-A-temp1-R,Europe/Paris,0,OPL, +OPL:SP:temp1-R,1,"La Contentinais",47.252797,-2.006386,-1,0,OPL:SA:AST-temp1-A-temp1-R,Europe/Paris,0,OPL, +OPL:SP:temp100-A,1,"Océane",47.227388,-1.636326,-1,0,OPL:SA:AST-temp100-A-temp100-R,Europe/Paris,0,OPL, +OPL:SP:temp100-R,1,"Océane",47.227556,-1.635972,-1,0,OPL:SA:AST-temp100-A-temp100-R,Europe/Paris,0,OPL, +OPL:SP:temp2-A,1,"Moulin cassé",47.640528,-2.065114,-1,0,OPL:SA:AST-temp2-A-temp2-R,Europe/Paris,0,OPL, +OPL:SP:temp2-R,1,"Moulin cassé",47.640586,-2.06498,-1,0,OPL:SA:AST-temp2-A-temp2-R,Europe/Paris,0,OPL, +OPL:SP:tempSCO1-A,1,"Lotissement du Lac",47.121815,-1.575339,-1,0,OPL:SA:AST-tempSCO1-A-tempSCO1-R,Europe/Paris,0,OPL, +OPL:SP:tempSCO1-R,1,"Lotissement du Lac",47.121757,-1.575586,-1,0,OPL:SA:AST-tempSCO1-A-tempSCO1-R,Europe/Paris,0,OPL, +OPL:SP:tempSCO3-A,1,"L'Arentée",47.148502,-1.55607,-1,0,OPL:SA:AST-tempSCO3-A-tempSCO3-R,Europe/Paris,0,OPL, +OPL:SP:tempSCO3-R,1,"L'Arentée",47.148415,-1.556044,-1,0,OPL:SA:AST-tempSCO3-A-tempSCO3-R,Europe/Paris,0,OPL, +OPL:SP:tempSCO8-A,1,"Lotissement du Haugard",47.124225,-1.592129,-1,0,OPL:SA:AST-tempSCO8-A-tempSCO8-R,Europe/Paris,0,OPL, +OPL:SP:tempSCO8-R,1,"Lotissement du Haugard",47.124393,-1.591685,-1,0,OPL:SA:AST-tempSCO8-A-tempSCO8-R,Europe/Paris,0,OPL, +ORE:SP:1001,1,"Longs Champs",48.129077,-1.63253,-1,0,ORE:SA:CTP1001,Europe/Paris,2,ORE, +ORE:SP:1002,1,"Bouzat",48.128283,-1.637782,-1,0,ORE:SA:CTP1002,Europe/Paris,2,ORE, +ORE:SP:1003,1,"Gallet",48.127369,-1.640433,-1,0,ORE:SA:CTP1003,Europe/Paris,2,ORE, +ORE:SP:1004,1,"Donzelot",48.125244,-1.642676,-1,0,ORE:SA:CTP1004,Europe/Paris,2,ORE, +ORE:SP:1005,1,"Mirabeau",48.123081,-1.647064,-1,0,ORE:SA:CTP1005,Europe/Paris,2,ORE, +ORE:SP:1006,1,"Turmel",48.12229,-1.650742,-1,0,ORE:SA:CTP1006,Europe/Paris,2,ORE, +ORE:SP:1007,1,"Assomption",48.121446,-1.655036,-1,0,ORE:SA:CTP1007,Europe/Paris,2,ORE, +ORE:SP:1008,1,"Painlevé",48.123212,-1.660216,-1,0,ORE:SA:CTP1008,Europe/Paris,2,ORE, +ORE:SP:1009,1,"Metz Volney",48.121635,-1.663186,-1,0,ORE:SA:CTP1009,Europe/Paris,2,ORE, +ORE:SP:1010,1,"Guéhenno",48.119241,-1.667693,-1,0,ORE:SA:CTP1010,Europe/Paris,2,ORE, +ORE:SP:1011,1,"Fac de Droit",48.118312,-1.671315,-1,0,ORE:SA:CTP1011,Europe/Paris,2,ORE, +ORE:SP:1012,1,"Sévigné",48.11605,-1.674245,-1,0,ORE:SA:CTP1012,Europe/Paris,2,ORE, +ORE:SP:1014,1,"Sainte-Anne",48.113739,-1.679038,-1,0,ORE:SA:CTP1014,Europe/Paris,2,ORE, +ORE:SP:1015,1,"Champ Jacquet",48.11252,-1.680352,-1,0,ORE:SA:CTP1015,Europe/Paris,0,ORE, +ORE:SP:1016,1,"République",48.110073,-1.680101,-1,0,ORE:SA:CTP1016,Europe/Paris,2,ORE, +ORE:SP:1017,1,"Les Halles",48.108415,-1.680213,-1,0,ORE:SA:CTP1017,Europe/Paris,0,ORE, +ORE:SP:1018,1,"Plélo Colombier",48.106204,-1.680999,-1,0,ORE:SA:CTP1018,Europe/Paris,2,ORE, +ORE:SP:1019,1,"Cité Judiciaire",48.105084,-1.684731,-1,0,ORE:SA:CTP1019,Europe/Paris,2,ORE, +ORE:SP:1020,1,"Mermoz",48.097442,-1.689566,-1,0,ORE:SA:CTP1020,Europe/Paris,2,ORE, +ORE:SP:1021,1,"Cité Judiciaire",48.105444,-1.684005,-1,0,ORE:SA:CTP1019,Europe/Paris,2,ORE, +ORE:SP:1022,1,"Plélo Colombier",48.106222,-1.680736,-1,0,ORE:SA:CTP1018,Europe/Paris,2,ORE, +ORE:SP:1023,1,"Les Halles",48.108066,-1.680048,-1,0,ORE:SA:CTP1017,Europe/Paris,2,ORE, +ORE:SP:1024,1,"République",48.109977,-1.680268,-1,0,ORE:SA:CTP1016,Europe/Paris,2,ORE, +ORE:SP:1025,1,"Champ Jacquet",48.112738,-1.680211,-1,0,ORE:SA:CTP1015,Europe/Paris,0,ORE, +ORE:SP:1026,1,"Sainte-Anne",48.11482,-1.679242,-1,0,ORE:SA:CTP1014,Europe/Paris,2,ORE, +ORE:SP:1027,1,"Hôtel Dieu",48.117163,-1.677351,-1,0,ORE:SA:CTP1027,Europe/Paris,2,ORE, +ORE:SP:1028,1,"Sévigné",48.117513,-1.673538,-1,0,ORE:SA:CTP1012,Europe/Paris,2,ORE, +ORE:SP:1029,1,"Fac de Droit",48.118281,-1.669591,-1,0,ORE:SA:CTP1011,Europe/Paris,2,ORE, +ORE:SP:1030,1,"Guéhenno",48.119572,-1.666629,-1,0,ORE:SA:CTP1010,Europe/Paris,2,ORE, +ORE:SP:1031,1,"Metz Volney",48.121987,-1.662185,-1,0,ORE:SA:CTP1009,Europe/Paris,2,ORE, +ORE:SP:1032,1,"Painlevé",48.123242,-1.659266,-1,0,ORE:SA:CTP1008,Europe/Paris,2,ORE, +ORE:SP:1033,1,"Assomption",48.12128,-1.655029,-1,0,ORE:SA:CTP1007,Europe/Paris,2,ORE, +ORE:SP:1034,1,"Turmel",48.122185,-1.650619,-1,0,ORE:SA:CTP1006,Europe/Paris,2,ORE, +ORE:SP:1035,1,"Mirabeau",48.123677,-1.645158,-1,0,ORE:SA:CTP1005,Europe/Paris,2,ORE, +ORE:SP:1036,1,"Donzelot",48.125556,-1.64198,-1,0,ORE:SA:CTP1004,Europe/Paris,2,ORE, +ORE:SP:1037,1,"Gallet",48.127801,-1.639871,-1,0,ORE:SA:CTP1003,Europe/Paris,2,ORE, +ORE:SP:1038,1,"Bouzat",48.128209,-1.637118,-1,0,ORE:SA:CTP1002,Europe/Paris,2,ORE, +ORE:SP:1039,1,"Longs Champs",48.128998,-1.63238,-1,0,ORE:SA:CTP1001,Europe/Paris,2,ORE, +ORE:SP:1040,1,"Donelière",48.130069,-1.684377,-1,0,ORE:SA:CTP1040,Europe/Paris,2,ORE, +ORE:SP:1041,1,"Trois Croix",48.128749,-1.6836,-1,0,ORE:SA:CTP1041,Europe/Paris,0,ORE, +ORE:SP:1042,1,"Cimetière Nord",48.124255,-1.681766,-1,0,ORE:SA:CTP1042,Europe/Paris,2,ORE, +ORE:SP:1043,1,"Saint-Martin",48.123614,-1.684238,-1,0,ORE:SA:CTP1043,Europe/Paris,2,ORE, +ORE:SP:1044,1,"ESPE de Bretagne",48.122179,-1.685924,-1,0,ORE:SA:CTP1044,Europe/Paris,2,ORE, +ORE:SP:1046,1,"Anatole France",48.11824,-1.689403,-1,0,ORE:SA:CTP1046,Europe/Paris,2,ORE, +ORE:SP:1047,1,"La Touche",48.11612,-1.691288,-1,0,ORE:SA:CTP1047,Europe/Paris,2,ORE, +ORE:SP:1048,1,"Brest Verdun",48.113357,-1.693476,-1,0,ORE:SA:CTP1048,Europe/Paris,2,ORE, +ORE:SP:1049,1,"Horizons",48.111632,-1.689371,-1,0,ORE:SA:CTP1049,Europe/Paris,2,ORE, +ORE:SP:1050,1,"Les Lices",48.111647,-1.686999,-1,0,ORE:SA:CTP1050,Europe/Paris,2,ORE, +ORE:SP:1051,1,"Place de Bretagne",48.109888,-1.68328,-1,0,ORE:SA:CTP1051,Europe/Paris,2,ORE, +ORE:SP:1052,1,"République",48.109934,-1.678869,-1,0,ORE:SA:CTP1016,Europe/Paris,2,ORE, +ORE:SP:1054,1,"Liberté TNB",48.107564,-1.675176,-1,0,ORE:SA:CTP1054,Europe/Paris,0,ORE, +ORE:SP:1055,1,"Champs Libres",48.106057,-1.67401,-1,0,ORE:SA:CTP1055,Europe/Paris,2,ORE, +ORE:SP:1056,1,"Gares",48.10421,-1.672411,-1,0,ORE:SA:CTP1056,Europe/Paris,2,ORE, +ORE:SP:1057,1,"Laënnec",48.104779,-1.665701,-1,0,ORE:SA:CTP1057,Europe/Paris,0,ORE, +ORE:SP:1060,1,"Piré",48.099452,-1.657522,-1,0,ORE:SA:CTP1060,Europe/Paris,2,ORE, +ORE:SP:1061,1,"Bourgeois",48.097255,-1.654254,-1,0,ORE:SA:CTP1061,Europe/Paris,2,ORE, +ORE:SP:1062,1,"Calmette",48.09511,-1.650566,-1,0,ORE:SA:CTP1062,Europe/Paris,0,ORE, +ORE:SP:1063,1,"Monsieur Vincent",48.09273,-1.64749,-1,0,ORE:SA:CTP1063,Europe/Paris,2,ORE, +ORE:SP:1064,1,"Lycée Descartes",48.090281,-1.645018,-1,0,ORE:SA:CTP1064,Europe/Paris,2,ORE, +ORE:SP:1065,1,"La Poterie",48.087621,-1.64393,-1,0,ORE:SA:CTP1065,Europe/Paris,2,ORE, +ORE:SP:1066,1,"Monnet",48.087788,-1.638596,-1,0,ORE:SA:CTP1066,Europe/Paris,2,ORE, +ORE:SP:1067,1,"Bourgueil",48.089455,-1.635281,-1,0,ORE:SA:CTP1067,Europe/Paris,2,ORE, +ORE:SP:1068,1,"Gohier",48.092067,-1.636471,-1,0,ORE:SA:CTP1068,Europe/Paris,2,ORE, +ORE:SP:1069,1,"Ronceray",48.092756,-1.63962,-1,0,ORE:SA:CTP1069,Europe/Paris,2,ORE, +ORE:SP:1070,1,"CARSAT",48.094492,-1.637889,-1,0,ORE:SA:CTP1070,Europe/Paris,2,ORE, +ORE:SP:1071,1,"Haut Sancé",48.096225,-1.636899,-1,0,ORE:SA:CTP1071,Europe/Paris,2,ORE, +ORE:SP:1072,1,"CARSAT",48.094922,-1.638,-1,0,ORE:SA:CTP1070,Europe/Paris,2,ORE, +ORE:SP:1073,1,"Ronceray",48.092528,-1.639658,-1,0,ORE:SA:CTP1069,Europe/Paris,2,ORE, +ORE:SP:1074,1,"Gohier",48.091827,-1.636274,-1,0,ORE:SA:CTP1068,Europe/Paris,2,ORE, +ORE:SP:1075,1,"Bourgueil",48.089486,-1.635568,-1,0,ORE:SA:CTP1067,Europe/Paris,2,ORE, +ORE:SP:1076,1,"Monnet",48.087986,-1.638421,-1,0,ORE:SA:CTP1066,Europe/Paris,2,ORE, +ORE:SP:1077,1,"La Poterie",48.087413,-1.643436,-1,0,ORE:SA:CTP1065,Europe/Paris,2,ORE, +ORE:SP:1078,1,"Lycée Descartes",48.089972,-1.64466,-1,0,ORE:SA:CTP1064,Europe/Paris,2,ORE, +ORE:SP:1079,1,"Monsieur Vincent",48.092772,-1.647205,-1,0,ORE:SA:CTP1063,Europe/Paris,2,ORE, +ORE:SP:1080,1,"Calmette",48.095953,-1.651543,-1,0,ORE:SA:CTP1062,Europe/Paris,0,ORE, +ORE:SP:1081,1,"Bourgeois",48.09806,-1.655275,-1,0,ORE:SA:CTP1061,Europe/Paris,2,ORE, +ORE:SP:1082,1,"Piré",48.099871,-1.657775,-1,0,ORE:SA:CTP1060,Europe/Paris,2,ORE, +ORE:SP:1085,1,"Laënnec",48.10471,-1.666557,-1,0,ORE:SA:CTP1057,Europe/Paris,2,ORE, +ORE:SP:1087,1,"Champs Libres",48.105276,-1.673939,-1,0,ORE:SA:CTP1055,Europe/Paris,2,ORE, +ORE:SP:1088,1,"Liberté TNB",48.107377,-1.674981,-1,0,ORE:SA:CTP1054,Europe/Paris,0,ORE, +ORE:SP:1090,1,"République",48.109526,-1.677947,-1,0,ORE:SA:CTP1016,Europe/Paris,2,ORE, +ORE:SP:1091,1,"Place de Bretagne",48.109734,-1.68385,-1,0,ORE:SA:CTP1051,Europe/Paris,2,ORE, +ORE:SP:1092,1,"Les Lices",48.111759,-1.686216,-1,0,ORE:SA:CTP1050,Europe/Paris,2,ORE, +ORE:SP:1093,1,"Horizons",48.111757,-1.689653,-1,0,ORE:SA:CTP1049,Europe/Paris,2,ORE, +ORE:SP:1094,1,"Brest Verdun",48.113208,-1.69329,-1,0,ORE:SA:CTP1048,Europe/Paris,2,ORE, +ORE:SP:1095,1,"La Touche",48.116505,-1.690744,-1,0,ORE:SA:CTP1047,Europe/Paris,2,ORE, +ORE:SP:1096,1,"Anatole France",48.118193,-1.689248,-1,0,ORE:SA:CTP1046,Europe/Paris,2,ORE, +ORE:SP:1097,1,"ESPE de Bretagne",48.121017,-1.686759,-1,0,ORE:SA:CTP1044,Europe/Paris,2,ORE, +ORE:SP:1099,1,"Saint-Martin",48.123587,-1.683606,-1,0,ORE:SA:CTP1043,Europe/Paris,2,ORE, +ORE:SP:1100,1,"Cimetière Nord",48.12503,-1.681973,-1,0,ORE:SA:CTP1042,Europe/Paris,2,ORE, +ORE:SP:1101,1,"Trois Croix",48.127266,-1.68326,-1,0,ORE:SA:CTP1041,Europe/Paris,2,ORE, +ORE:SP:1102,1,"Donelière",48.131357,-1.684599,-1,0,ORE:SA:CTP1040,Europe/Paris,2,ORE, +ORE:SP:1103,1,"Saint-Laurent",48.138802,-1.659072,-1,0,ORE:SA:CTP1103,Europe/Paris,2,ORE, +ORE:SP:1104,1,"Hôtel de Région",48.134745,-1.658572,-1,0,ORE:SA:CTP1104,Europe/Paris,2,ORE, +ORE:SP:1105,1,"Héronière",48.1355,-1.655711,-1,0,ORE:SA:CTP1105,Europe/Paris,2,ORE, +ORE:SP:1106,1,"Gayeulles Piscine",48.134264,-1.652215,-1,0,ORE:SA:CTP1106,Europe/Paris,2,ORE, +ORE:SP:1107,1,"Le Blizz",48.13087,-1.652121,-1,0,ORE:SA:CTP1107,Europe/Paris,2,ORE, +ORE:SP:1108,1,"Gayeulles",48.128344,-1.652232,-1,0,ORE:SA:CTP1108,Europe/Paris,2,ORE, +ORE:SP:1111,1,"Docteur Quentin",48.120189,-1.65077,-1,0,ORE:SA:CTP1111,Europe/Paris,2,ORE, +ORE:SP:1112,1,"Vitré Danton",48.11893,-1.651063,-1,0,ORE:SA:CTP1112,Europe/Paris,2,ORE, +ORE:SP:1113,1,"Jeanne d'Arc",48.116369,-1.655681,-1,0,ORE:SA:CTP1113,Europe/Paris,2,ORE, +ORE:SP:1114,1,"Durafour",48.114521,-1.658017,-1,0,ORE:SA:CTP1114,Europe/Paris,2,ORE, +ORE:SP:1115,1,"Oberthur",48.113459,-1.661409,-1,0,ORE:SA:CTP1115,Europe/Paris,2,ORE, +ORE:SP:1116,1,"Saint-Vincent",48.112746,-1.664452,-1,0,ORE:SA:CTP1116,Europe/Paris,2,ORE, +ORE:SP:1117,1,"Châteaudun",48.112528,-1.666797,-1,0,ORE:SA:CTP1117,Europe/Paris,2,ORE, +ORE:SP:1118,1,"Thabor",48.111816,-1.671244,-1,0,ORE:SA:CTP1118,Europe/Paris,2,ORE, +ORE:SP:1120,1,"République",48.10997,-1.67795,-1,0,ORE:SA:CTP1016,Europe/Paris,2,ORE, +ORE:SP:1121,1,"Charles de Gaulle",48.106067,-1.677817,-1,0,ORE:SA:CTP1121,Europe/Paris,2,ORE, +ORE:SP:1122,1,"Gare Sud Féval",48.102778,-1.676782,-1,0,ORE:SA:CTP1122,Europe/Paris,2,ORE, +ORE:SP:1123,1,"Ginguené",48.099181,-1.675756,-1,0,ORE:SA:CTP1123,Europe/Paris,2,ORE, +ORE:SP:1124,1,"Jacques Cartier",48.097396,-1.675489,-1,0,ORE:SA:CTP1124,Europe/Paris,2,ORE, +ORE:SP:1125,1,"Sacrés Coeurs",48.096926,-1.679166,-1,0,ORE:SA:CTP1125,Europe/Paris,2,ORE, +ORE:SP:1126,1,"Garigliano",48.096023,-1.681712,-1,0,ORE:SA:CTP1126,Europe/Paris,2,ORE, +ORE:SP:1127,1,"Frères Moine",48.093042,-1.681932,-1,0,ORE:SA:CTP1127,Europe/Paris,2,ORE, +ORE:SP:1128,1,"Champs Manceaux",48.09107,-1.682187,-1,0,ORE:SA:CTP1128,Europe/Paris,2,ORE, +ORE:SP:1129,1,"Suède",48.087271,-1.682479,-1,0,ORE:SA:CTP1129,Europe/Paris,2,ORE, +ORE:SP:1130,1,"Canada",48.085168,-1.682537,-1,0,ORE:SA:CTP1130,Europe/Paris,2,ORE, +ORE:SP:1134,1,"Canada",48.085207,-1.682259,-1,0,ORE:SA:CTP1130,Europe/Paris,2,ORE, +ORE:SP:1135,1,"Suède",48.088085,-1.68215,-1,0,ORE:SA:CTP1129,Europe/Paris,2,ORE, +ORE:SP:1136,1,"Champs Manceaux",48.091086,-1.682019,-1,0,ORE:SA:CTP1128,Europe/Paris,2,ORE, +ORE:SP:1137,1,"Frères Moine",48.093597,-1.681809,-1,0,ORE:SA:CTP1127,Europe/Paris,2,ORE, +ORE:SP:1138,1,"Garigliano",48.096363,-1.681543,-1,0,ORE:SA:CTP1126,Europe/Paris,2,ORE, +ORE:SP:1139,1,"Sacrés Coeurs",48.096914,-1.678484,-1,0,ORE:SA:CTP1125,Europe/Paris,2,ORE, +ORE:SP:1140,1,"Jacques Cartier",48.097421,-1.674416,-1,0,ORE:SA:CTP1124,Europe/Paris,2,ORE, +ORE:SP:1141,1,"Ginguené",48.100009,-1.675803,-1,0,ORE:SA:CTP1123,Europe/Paris,2,ORE, +ORE:SP:1143,1,"Charles de Gaulle",48.106081,-1.677558,-1,0,ORE:SA:CTP1121,Europe/Paris,2,ORE, +ORE:SP:1144,1,"République",48.110073,-1.677735,-1,0,ORE:SA:CTP1016,Europe/Paris,2,ORE, +ORE:SP:1146,1,"Thabor",48.111897,-1.671083,-1,0,ORE:SA:CTP1118,Europe/Paris,2,ORE, +ORE:SP:1147,1,"Saint-Vincent",48.112666,-1.664346,-1,0,ORE:SA:CTP1116,Europe/Paris,2,ORE, +ORE:SP:1148,1,"Oberthur",48.113405,-1.661265,-1,0,ORE:SA:CTP1115,Europe/Paris,2,ORE, +ORE:SP:1149,1,"Durafour",48.114248,-1.658666,-1,0,ORE:SA:CTP1114,Europe/Paris,2,ORE, +ORE:SP:1150,1,"Jeanne d'Arc",48.116588,-1.65539,-1,0,ORE:SA:CTP1113,Europe/Paris,2,ORE, +ORE:SP:1151,1,"Vitré Danton",48.118733,-1.651589,-1,0,ORE:SA:CTP1112,Europe/Paris,2,ORE, +ORE:SP:1152,1,"Docteur Quentin",48.120615,-1.650675,-1,0,ORE:SA:CTP1111,Europe/Paris,2,ORE, +ORE:SP:1155,1,"Gayeulles",48.129145,-1.652001,-1,0,ORE:SA:CTP1108,Europe/Paris,2,ORE, +ORE:SP:1156,1,"Le Blizz",48.131782,-1.651905,-1,0,ORE:SA:CTP1107,Europe/Paris,2,ORE, +ORE:SP:1157,1,"Gayeulles Piscine",48.134935,-1.651955,-1,0,ORE:SA:CTP1106,Europe/Paris,2,ORE, +ORE:SP:1158,1,"Héronière",48.135605,-1.656126,-1,0,ORE:SA:CTP1105,Europe/Paris,2,ORE, +ORE:SP:1159,1,"Hôtel de Région",48.134358,-1.658784,-1,0,ORE:SA:CTP1104,Europe/Paris,2,ORE, +ORE:SP:1160,1,"Tournebride",48.114099,-1.637565,-1,0,ORE:SA:CTP1160,Europe/Paris,2,ORE, +ORE:SP:1161,1,"Plaine de Baud",48.112232,-1.644227,-1,0,ORE:SA:CTP1161,Europe/Paris,2,ORE, +ORE:SP:1163,1,"Robidou",48.110164,-1.660479,-1,0,ORE:SA:CTP1163,Europe/Paris,2,ORE, +ORE:SP:1164,1,"Pont de Châteaudun",48.110145,-1.663921,-1,0,ORE:SA:CTP1164,Europe/Paris,2,ORE, +ORE:SP:1165,1,"Paul Bert",48.110111,-1.67021,-1,0,ORE:SA:CTP1165,Europe/Paris,2,ORE, +ORE:SP:1166,1,"Musée Beaux Arts",48.109914,-1.675145,-1,0,ORE:SA:CTP1166,Europe/Paris,2,ORE, +ORE:SP:1167,1,"République",48.109405,-1.678734,-1,0,ORE:SA:CTP1016,Europe/Paris,2,ORE, +ORE:SP:1168,1,"République",48.109761,-1.678807,-1,0,ORE:SA:CTP1016,Europe/Paris,2,ORE, +ORE:SP:1169,1,"Musée Beaux Arts",48.109809,-1.674483,-1,0,ORE:SA:CTP1166,Europe/Paris,2,ORE, +ORE:SP:1170,1,"Paul Bert",48.109996,-1.669018,-1,0,ORE:SA:CTP1165,Europe/Paris,2,ORE, +ORE:SP:1171,1,"Pont de Châteaudun",48.110016,-1.663623,-1,0,ORE:SA:CTP1164,Europe/Paris,2,ORE, +ORE:SP:1172,1,"Robidou",48.11003,-1.659227,-1,0,ORE:SA:CTP1163,Europe/Paris,2,ORE, +ORE:SP:1173,1,"Pont de Strasbourg",48.110055,-1.656165,-1,0,ORE:SA:CTP1173,Europe/Paris,2,ORE, +ORE:SP:1174,1,"Plaine de Baud",48.112437,-1.64292,-1,0,ORE:SA:CTP1161,Europe/Paris,2,ORE, +ORE:SP:1175,1,"Beaulieu Chimie",48.117101,-1.633896,-1,0,ORE:SA:CTP1175,Europe/Paris,2,ORE, +ORE:SP:1176,1,"Beaulieu INSA",48.119028,-1.63521,-1,0,ORE:SA:CTP1176,Europe/Paris,2,ORE, +ORE:SP:1177,1,"Beaulieu Restau U",48.122317,-1.639592,-1,0,ORE:SA:CTP1177,Europe/Paris,2,ORE, +ORE:SP:1178,1,"Beaulieu Cité U",48.120832,-1.643865,-1,0,ORE:SA:CTP1178,Europe/Paris,2,ORE, +ORE:SP:1179,1,"Jeanne d'Arc",48.117043,-1.655802,-1,0,ORE:SA:CTP1113,Europe/Paris,2,ORE, +ORE:SP:1180,1,"Balzac",48.116193,-1.659373,-1,0,ORE:SA:CTP1180,Europe/Paris,2,ORE, +ORE:SP:1181,1,"Musset Cité U",48.116147,-1.662569,-1,0,ORE:SA:CTP1181,Europe/Paris,2,ORE, +ORE:SP:1182,1,"George Sand",48.116298,-1.664773,-1,0,ORE:SA:CTP1182,Europe/Paris,2,ORE, +ORE:SP:1183,1,"Hôtel Dieu",48.117342,-1.678809,-1,0,ORE:SA:CTP1027,Europe/Paris,2,ORE, +ORE:SP:1184,1,"Dinan",48.117227,-1.681484,-1,0,ORE:SA:CTP1184,Europe/Paris,2,ORE, +ORE:SP:1185,1,"Legraverend",48.117788,-1.684992,-1,0,ORE:SA:CTP1185,Europe/Paris,2,ORE, +ORE:SP:1186,1,"Anatole France",48.118577,-1.688167,-1,0,ORE:SA:CTP1046,Europe/Paris,2,ORE, +ORE:SP:1187,1,"Maison Diocésaine",48.114035,-1.698235,-1,0,ORE:SA:CTP1187,Europe/Paris,2,ORE, +ORE:SP:1188,1,"La Salle",48.114898,-1.701959,-1,0,ORE:SA:CTP1188,Europe/Paris,2,ORE, +ORE:SP:1189,1,"Languedoc",48.116068,-1.705584,-1,0,ORE:SA:CTP1189,Europe/Paris,2,ORE, +ORE:SP:1190,1,"Villejean-Churchill",48.11739,-1.70835,-1,0,ORE:SA:CTP1190,Europe/Paris,2,ORE, +ORE:SP:1191,1,"Languedoc",48.115474,-1.704489,-1,0,ORE:SA:CTP1189,Europe/Paris,2,ORE, +ORE:SP:1192,1,"La Salle",48.114999,-1.701423,-1,0,ORE:SA:CTP1188,Europe/Paris,2,ORE, +ORE:SP:1193,1,"Maison Diocésaine",48.113738,-1.69804,-1,0,ORE:SA:CTP1187,Europe/Paris,2,ORE, +ORE:SP:1194,1,"Anatole France",48.118173,-1.687217,-1,0,ORE:SA:CTP1046,Europe/Paris,2,ORE, +ORE:SP:1195,1,"Legraverend",48.117663,-1.684863,-1,0,ORE:SA:CTP1185,Europe/Paris,2,ORE, +ORE:SP:1196,1,"Dinan",48.117181,-1.682302,-1,0,ORE:SA:CTP1184,Europe/Paris,2,ORE, +ORE:SP:1197,1,"Sévigné",48.116347,-1.673257,-1,0,ORE:SA:CTP1012,Europe/Paris,2,ORE, +ORE:SP:1198,1,"George Sand",48.116266,-1.668859,-1,0,ORE:SA:CTP1198,Europe/Paris,2,ORE, +ORE:SP:1199,1,"Musset Cité U",48.116247,-1.662785,-1,0,ORE:SA:CTP1181,Europe/Paris,2,ORE, +ORE:SP:1200,1,"Jeanne d'Arc",48.116798,-1.656369,-1,0,ORE:SA:CTP1113,Europe/Paris,2,ORE, +ORE:SP:1201,1,"Vitré Foulon",48.119102,-1.649111,-1,0,ORE:SA:CTP1201,Europe/Paris,2,ORE, +ORE:SP:1202,1,"Beaulieu Cité U",48.120592,-1.644215,-1,0,ORE:SA:CTP1178,Europe/Paris,2,ORE, +ORE:SP:1203,1,"Beaulieu Restau U",48.122308,-1.639183,-1,0,ORE:SA:CTP1177,Europe/Paris,2,ORE, +ORE:SP:1204,1,"Beaulieu INSA",48.119511,-1.635317,-1,0,ORE:SA:CTP1176,Europe/Paris,2,ORE, +ORE:SP:1205,1,"Veyettes",48.097147,-1.629252,-1,0,ORE:SA:CTP1205,Europe/Paris,2,ORE, +ORE:SP:1208,1,"Saint-Saëns",48.104165,-1.637787,-1,0,ORE:SA:CTP1208,Europe/Paris,2,ORE, +ORE:SP:1209,1,"Pavie",48.105033,-1.64458,-1,0,ORE:SA:CTP1209,Europe/Paris,2,ORE, +ORE:SP:1210,1,"Cimetière de l'Est",48.10431,-1.64971,-1,0,ORE:SA:CTP1210,Europe/Paris,2,ORE, +ORE:SP:1211,1,"Serpette",48.103116,-1.652491,-1,0,ORE:SA:CTP1211,Europe/Paris,2,ORE, +ORE:SP:1212,1,"Mouézy",48.101949,-1.656538,-1,0,ORE:SA:CTP1212,Europe/Paris,2,ORE, +ORE:SP:1213,1,"Croix Saint-Hélier",48.102902,-1.661403,-1,0,ORE:SA:CTP1213,Europe/Paris,2,ORE, +ORE:SP:1214,1,"République",48.109932,-1.679644,-1,0,ORE:SA:CTP1016,Europe/Paris,2,ORE, +ORE:SP:1216,1,"Le Mail",48.109176,-1.690514,-1,0,ORE:SA:CTP1216,Europe/Paris,2,ORE, +ORE:SP:1217,1,"Chèques Postaux",48.108292,-1.694376,-1,0,ORE:SA:CTP1217,Europe/Paris,2,ORE, +ORE:SP:1218,1,"Guilloux Lorient",48.109099,-1.697997,-1,0,ORE:SA:CTP1218,Europe/Paris,2,ORE, +ORE:SP:1219,1,"Papeteries",48.108274,-1.703743,-1,0,ORE:SA:CTP1219,Europe/Paris,2,ORE, +ORE:SP:1220,1,"Kerviler",48.109162,-1.706366,-1,0,ORE:SA:CTP1220,Europe/Paris,2,ORE, +ORE:SP:1221,1,"Géniaux",48.108871,-1.710766,-1,0,ORE:SA:CTP1221,Europe/Paris,2,ORE, +ORE:SP:1222,1,"Roazhon Park",48.108107,-1.714065,-1,0,ORE:SA:CTP1222,Europe/Paris,2,ORE, +ORE:SP:1223,1,"Le Hô",48.106212,-1.723891,-1,0,ORE:SA:CTP1223,Europe/Paris,2,ORE, +ORE:SP:1224,1,"Robinot de St-Cyr",48.102975,-1.7234,-1,0,ORE:SA:CTP1224,Europe/Paris,2,ORE, +ORE:SP:1225,1,"Jardin Moderne",48.10213,-1.727062,-1,0,ORE:SA:CTP1225,Europe/Paris,2,ORE, +ORE:SP:1226,1,"Servigné",48.101258,-1.731769,-1,0,ORE:SA:CTP1226,Europe/Paris,2,ORE, +ORE:SP:1229,1,"Servigné",48.101154,-1.731617,-1,0,ORE:SA:CTP1226,Europe/Paris,2,ORE, +ORE:SP:1230,1,"Jardin Moderne",48.102175,-1.726098,-1,0,ORE:SA:CTP1225,Europe/Paris,2,ORE, +ORE:SP:1231,1,"Robinot de St-Cyr",48.103369,-1.723283,-1,0,ORE:SA:CTP1224,Europe/Paris,2,ORE, +ORE:SP:1232,1,"Le Hô",48.106259,-1.723704,-1,0,ORE:SA:CTP1223,Europe/Paris,2,ORE, +ORE:SP:1233,1,"Lemaistre",48.107021,-1.72162,-1,0,ORE:SA:CTP1233,Europe/Paris,2,ORE, +ORE:SP:1234,1,"Roazhon Park",48.107689,-1.714796,-1,0,ORE:SA:CTP1222,Europe/Paris,2,ORE, +ORE:SP:1235,1,"Géniaux",48.108898,-1.709658,-1,0,ORE:SA:CTP1221,Europe/Paris,2,ORE, +ORE:SP:1236,1,"Kerviler",48.10876,-1.705656,-1,0,ORE:SA:CTP1236,Europe/Paris,2,ORE, +ORE:SP:1237,1,"Papeteries",48.107689,-1.702121,-1,0,ORE:SA:CTP1237,Europe/Paris,2,ORE, +ORE:SP:1238,1,"Guilloux Lorient",48.108687,-1.698735,-1,0,ORE:SA:CTP1238,Europe/Paris,2,ORE, +ORE:SP:1239,1,"Chèques Postaux",48.108237,-1.694247,-1,0,ORE:SA:CTP1217,Europe/Paris,2,ORE, +ORE:SP:1240,1,"Le Mail",48.109271,-1.689587,-1,0,ORE:SA:CTP1216,Europe/Paris,2,ORE, +ORE:SP:1242,1,"République",48.109758,-1.679532,-1,0,ORE:SA:CTP1016,Europe/Paris,2,ORE, +ORE:SP:1243,1,"Croix Saint-Hélier",48.102515,-1.661094,-1,0,ORE:SA:CTP1213,Europe/Paris,2,ORE, +ORE:SP:1244,1,"Mouézy",48.102217,-1.655063,-1,0,ORE:SA:CTP1212,Europe/Paris,2,ORE, +ORE:SP:1245,1,"Serpette",48.103213,-1.652536,-1,0,ORE:SA:CTP1211,Europe/Paris,2,ORE, +ORE:SP:1246,1,"Cimetière de l'Est",48.104353,-1.64928,-1,0,ORE:SA:CTP1210,Europe/Paris,2,ORE, +ORE:SP:1247,1,"Pavie",48.104868,-1.643656,-1,0,ORE:SA:CTP1209,Europe/Paris,2,ORE, +ORE:SP:1248,1,"Pré Garel",48.103911,-1.635839,-1,0,ORE:SA:CTP1248,Europe/Paris,2,ORE, +ORE:SP:1251,1,"Veyettes",48.097042,-1.629126,-1,0,ORE:SA:CTP1205,Europe/Paris,2,ORE, +ORE:SP:1252,1,"Patton",48.138782,-1.66602,-1,0,ORE:SA:CTP1252,Europe/Paris,2,ORE, +ORE:SP:1253,1,"Monts d'Arrée",48.136711,-1.667527,-1,0,ORE:SA:CTP1253,Europe/Paris,2,ORE, +ORE:SP:1254,1,"Neruda",48.136796,-1.671078,-1,0,ORE:SA:CTP1254,Europe/Paris,2,ORE, +ORE:SP:1255,1,"Condate",48.134477,-1.673097,-1,0,ORE:SA:CTP1255,Europe/Paris,2,ORE, +ORE:SP:1256,1,"Bellangerais",48.132591,-1.671614,-1,0,ORE:SA:CTP1256,Europe/Paris,2,ORE, +ORE:SP:1257,1,"Morbihan",48.13267,-1.667599,-1,0,ORE:SA:CTP1257,Europe/Paris,2,ORE, +ORE:SP:1258,1,"Houx Cité U",48.130788,-1.663953,-1,0,ORE:SA:CTP1258,Europe/Paris,2,ORE, +ORE:SP:1259,1,"Rochester",48.129452,-1.663592,-1,0,ORE:SA:CTP1259,Europe/Paris,2,ORE, +ORE:SP:1260,1,"Gros Chêne",48.126715,-1.665432,-1,0,ORE:SA:CTP1260,Europe/Paris,2,ORE, +ORE:SP:1261,1,"Volney",48.125322,-1.666645,-1,0,ORE:SA:CTP1261,Europe/Paris,0,ORE, +ORE:SP:1262,1,"Jules Ferry",48.121471,-1.67097,-1,0,ORE:SA:CTP1262,Europe/Paris,2,ORE, +ORE:SP:1263,1,"Rectorat",48.119629,-1.674316,-1,0,ORE:SA:CTP1263,Europe/Paris,2,ORE, +ORE:SP:1264,1,"Pont de Nantes",48.10206,-1.684417,-1,0,ORE:SA:CTP1264,Europe/Paris,2,ORE, +ORE:SP:1265,1,"Foyer Rennais",48.099809,-1.687123,-1,0,ORE:SA:CTP1265,Europe/Paris,0,ORE, +ORE:SP:1266,1,"Mermoz",48.09714,-1.689057,-1,0,ORE:SA:CTP1020,Europe/Paris,2,ORE, +ORE:SP:1267,1,"Félix Eboué",48.085707,-1.693903,-1,0,ORE:SA:CTP1267,Europe/Paris,2,ORE, +ORE:SP:1268,1,"Boberil",48.083743,-1.693637,-1,0,ORE:SA:CTP1268,Europe/Paris,2,ORE, +ORE:SP:1269,1,"Lycée Bréquigny",48.084081,-1.692043,-1,0,ORE:SA:CTP1269,Europe/Paris,2,ORE, +ORE:SP:1270,1,"Félix Eboué",48.085811,-1.694039,-1,0,ORE:SA:CTP1267,Europe/Paris,2,ORE, +ORE:SP:1273,1,"Saint-Yves",48.092735,-1.6912,-1,0,ORE:SA:CTP1273,Europe/Paris,0,ORE, +ORE:SP:1274,1,"Pilate",48.095038,-1.689979,-1,0,ORE:SA:CTP1274,Europe/Paris,2,ORE, +ORE:SP:1275,1,"Mermoz",48.097422,-1.688573,-1,0,ORE:SA:CTP1020,Europe/Paris,2,ORE, +ORE:SP:1276,1,"Foyer Rennais",48.099714,-1.68619,-1,0,ORE:SA:CTP1265,Europe/Paris,0,ORE, +ORE:SP:1277,1,"Pont de Nantes",48.102127,-1.684092,-1,0,ORE:SA:CTP1264,Europe/Paris,2,ORE, +ORE:SP:1278,1,"Hôtel Dieu",48.117082,-1.677806,-1,0,ORE:SA:CTP1027,Europe/Paris,2,ORE, +ORE:SP:1279,1,"Rectorat",48.119451,-1.674371,-1,0,ORE:SA:CTP1263,Europe/Paris,2,ORE, +ORE:SP:1280,1,"Jules Ferry",48.121404,-1.670825,-1,0,ORE:SA:CTP1262,Europe/Paris,2,ORE, +ORE:SP:1281,1,"Volney",48.125362,-1.66626,-1,0,ORE:SA:CTP1261,Europe/Paris,2,ORE, +ORE:SP:1282,1,"Gros Chêne",48.126594,-1.665268,-1,0,ORE:SA:CTP1260,Europe/Paris,2,ORE, +ORE:SP:1283,1,"Rochester",48.128831,-1.663763,-1,0,ORE:SA:CTP1259,Europe/Paris,2,ORE, +ORE:SP:1284,1,"Houx Cité U",48.131091,-1.664397,-1,0,ORE:SA:CTP1258,Europe/Paris,2,ORE, +ORE:SP:1285,1,"Morbihan",48.132827,-1.667609,-1,0,ORE:SA:CTP1257,Europe/Paris,2,ORE, +ORE:SP:1286,1,"Bellangerais",48.132719,-1.672293,-1,0,ORE:SA:CTP1256,Europe/Paris,2,ORE, +ORE:SP:1287,1,"Condate",48.135006,-1.672781,-1,0,ORE:SA:CTP1255,Europe/Paris,2,ORE, +ORE:SP:1288,1,"Neruda",48.136641,-1.670632,-1,0,ORE:SA:CTP1254,Europe/Paris,2,ORE, +ORE:SP:1289,1,"Monts d'Arrée",48.136539,-1.667527,-1,0,ORE:SA:CTP1253,Europe/Paris,2,ORE, +ORE:SP:1291,1,"IUT",48.125147,-1.633208,-1,0,ORE:SA:CTP1291,Europe/Paris,2,ORE, +ORE:SP:1292,1,"Beaulieu Restau U",48.121437,-1.638194,-1,0,ORE:SA:CTP1177,Europe/Paris,2,ORE, +ORE:SP:1293,1,"Guilloux",48.110001,-1.698679,-1,0,ORE:SA:CTP1293,Europe/Paris,2,ORE, +ORE:SP:1294,1,"Marbeuf",48.111305,-1.701301,-1,0,ORE:SA:CTP1294,Europe/Paris,2,ORE, +ORE:SP:1295,1,"Berger",48.116762,-1.704608,-1,0,ORE:SA:CTP1295,Europe/Paris,2,ORE, +ORE:SP:1296,1,"Université",48.119313,-1.704499,-1,0,ORE:SA:CTP1296,Europe/Paris,2,ORE, +ORE:SP:1297,1,"Villejean-Université",48.121918,-1.703705,-1,0,ORE:SA:CTP1297,Europe/Paris,2,ORE, +ORE:SP:1298,1,"Bois Labbé",48.125698,-1.703017,-1,0,ORE:SA:CTP1298,Europe/Paris,2,ORE, +ORE:SP:1299,1,"Olympe de Gouges",48.127905,-1.702753,-1,0,ORE:SA:CTP1299,Europe/Paris,2,ORE, +ORE:SP:1300,1,"Cucillé",48.128595,-1.698884,-1,0,ORE:SA:CTP1300,Europe/Paris,2,ORE, +ORE:SP:1301,1,"Préfecture - ESC",48.128165,-1.69398,-1,0,ORE:SA:CTP1301,Europe/Paris,2,ORE, +ORE:SP:1302,1,"Léonard",48.131493,-1.691785,-1,0,ORE:SA:CTP1302,Europe/Paris,2,ORE, +ORE:SP:1303,1,"Préfecture - ESC",48.128353,-1.694114,-1,0,ORE:SA:CTP1301,Europe/Paris,2,ORE, +ORE:SP:1304,1,"Cucillé",48.128501,-1.698712,-1,0,ORE:SA:CTP1300,Europe/Paris,2,ORE, +ORE:SP:1305,1,"Olympe de Gouges",48.127565,-1.703293,-1,0,ORE:SA:CTP1299,Europe/Paris,2,ORE, +ORE:SP:1306,1,"Bois Labbé",48.12525,-1.703189,-1,0,ORE:SA:CTP1298,Europe/Paris,2,ORE, +ORE:SP:1307,1,"Villejean-Université",48.121755,-1.703954,-1,0,ORE:SA:CTP1297,Europe/Paris,2,ORE, +ORE:SP:1308,1,"Université",48.118926,-1.704736,-1,0,ORE:SA:CTP1296,Europe/Paris,2,ORE, +ORE:SP:1309,1,"Berger",48.116745,-1.704803,-1,0,ORE:SA:CTP1295,Europe/Paris,2,ORE, +ORE:SP:1310,1,"Marbeuf",48.111292,-1.700837,-1,0,ORE:SA:CTP1294,Europe/Paris,2,ORE, +ORE:SP:1311,1,"Guilloux",48.10957,-1.698313,-1,0,ORE:SA:CTP1293,Europe/Paris,2,ORE, +ORE:SP:1312,1,"Beaulieu Chimie",48.116581,-1.633944,-1,0,ORE:SA:CTP1175,Europe/Paris,2,ORE, +ORE:SP:1313,1,"Beaulieu Restau U",48.121826,-1.638248,-1,0,ORE:SA:CTP1177,Europe/Paris,2,ORE, +ORE:SP:1314,1,"IUT",48.125106,-1.632973,-1,0,ORE:SA:CTP1291,Europe/Paris,2,ORE, +ORE:SP:1315,1,"République",48.109698,-1.678048,-1,0,ORE:SA:CTP1016,Europe/Paris,2,ORE, +ORE:SP:1316,1,"Raison",48.101171,-1.652938,-1,0,ORE:SA:CTP1316,Europe/Paris,2,ORE, +ORE:SP:1317,1,"Villebois-Mareuil",48.100101,-1.649415,-1,0,ORE:SA:CTP1317,Europe/Paris,2,ORE, +ORE:SP:1318,1,"Landry",48.09913,-1.646084,-1,0,ORE:SA:CTP1318,Europe/Paris,2,ORE, +ORE:SP:1319,1,"Domaine",48.097002,-1.641653,-1,0,ORE:SA:CTP1319,Europe/Paris,2,ORE, +ORE:SP:1320,1,"CARSAT",48.094927,-1.637296,-1,0,ORE:SA:CTP1070,Europe/Paris,2,ORE, +ORE:SP:1321,1,"Sauvaie",48.093777,-1.633778,-1,0,ORE:SA:CTP1321,Europe/Paris,2,ORE, +ORE:SP:1322,1,"Sauvaie",48.094297,-1.634589,-1,0,ORE:SA:CTP1321,Europe/Paris,2,ORE, +ORE:SP:1323,1,"CARSAT",48.095474,-1.638069,-1,0,ORE:SA:CTP1070,Europe/Paris,2,ORE, +ORE:SP:1324,1,"Domaine",48.09768,-1.642447,-1,0,ORE:SA:CTP1319,Europe/Paris,2,ORE, +ORE:SP:1325,1,"Landry",48.099472,-1.646682,-1,0,ORE:SA:CTP1318,Europe/Paris,2,ORE, +ORE:SP:1326,1,"Villebois-Mareuil",48.101207,-1.649587,-1,0,ORE:SA:CTP1317,Europe/Paris,2,ORE, +ORE:SP:1327,1,"Raison",48.101402,-1.65357,-1,0,ORE:SA:CTP1316,Europe/Paris,2,ORE, +ORE:SP:1328,1,"Lycée Mendès France",48.133338,-1.685372,-1,0,ORE:SA:CTP1328,Europe/Paris,0,ORE, +ORE:SP:1329,1,"Lenoir",48.12158,-1.683279,-1,0,ORE:SA:CTP1329,Europe/Paris,2,ORE, +ORE:SP:1330,1,"Auberge de Jeunesse",48.120357,-1.681603,-1,0,ORE:SA:CTP1330,Europe/Paris,2,ORE, +ORE:SP:1331,1,"Square de la Rance",48.118043,-1.680797,-1,0,ORE:SA:CTP1331,Europe/Paris,2,ORE, +ORE:SP:1333,1,"Jacques Cartier",48.097824,-1.675165,-1,0,ORE:SA:CTP1124,Europe/Paris,2,ORE, +ORE:SP:1334,1,"Châtillon",48.097716,-1.6713,-1,0,ORE:SA:CTP1334,Europe/Paris,2,ORE, +ORE:SP:1335,1,"Ormeaux",48.097705,-1.6684,-1,0,ORE:SA:CTP1335,Europe/Paris,2,ORE, +ORE:SP:1336,1,"Bigot de Préameneu",48.097982,-1.666405,-1,0,ORE:SA:CTP1336,Europe/Paris,2,ORE, +ORE:SP:1337,1,"Sainte-Thérèse",48.097532,-1.66289,-1,0,ORE:SA:CTP1337,Europe/Paris,2,ORE, +ORE:SP:1338,1,"Leray",48.09502,-1.661622,-1,0,ORE:SA:CTP1338,Europe/Paris,2,ORE, +ORE:SP:1339,1,"Langevin",48.094676,-1.658629,-1,0,ORE:SA:CTP1339,Europe/Paris,2,ORE, +ORE:SP:1340,1,"Gide",48.091996,-1.658498,-1,0,ORE:SA:CTP1340,Europe/Paris,2,ORE, +ORE:SP:1341,1,"Landrel",48.091222,-1.654578,-1,0,ORE:SA:CTP1341,Europe/Paris,2,ORE, +ORE:SP:1342,1,"Pologne",48.091175,-1.651756,-1,0,ORE:SA:CTP1342,Europe/Paris,2,ORE, +ORE:SP:1343,1,"La Poterie",48.087643,-1.645966,-1,0,ORE:SA:CTP1065,Europe/Paris,2,ORE, +ORE:SP:1344,1,"Galicie",48.0877,-1.650088,-1,0,ORE:SA:CTP1344,Europe/Paris,2,ORE, +ORE:SP:1346,1,"Hôpital Sud",48.084724,-1.655211,-1,0,ORE:SA:CTP1346,Europe/Paris,2,ORE, +ORE:SP:1347,1,"Torigné",48.084769,-1.657925,-1,0,ORE:SA:CTP1347,Europe/Paris,2,ORE, +ORE:SP:1353,1,"Torigné",48.084535,-1.657962,-1,0,ORE:SA:CTP1347,Europe/Paris,2,ORE, +ORE:SP:1356,1,"Galicie",48.087458,-1.649853,-1,0,ORE:SA:CTP1344,Europe/Paris,2,ORE, +ORE:SP:1358,1,"Pologne",48.091419,-1.651912,-1,0,ORE:SA:CTP1342,Europe/Paris,2,ORE, +ORE:SP:1359,1,"Landrel",48.091479,-1.655599,-1,0,ORE:SA:CTP1341,Europe/Paris,2,ORE, +ORE:SP:1360,1,"Gide",48.092518,-1.658308,-1,0,ORE:SA:CTP1340,Europe/Paris,2,ORE, +ORE:SP:1361,1,"Langevin",48.094222,-1.658163,-1,0,ORE:SA:CTP1339,Europe/Paris,2,ORE, +ORE:SP:1362,1,"Leray",48.095014,-1.661464,-1,0,ORE:SA:CTP1338,Europe/Paris,2,ORE, +ORE:SP:1363,1,"Sainte-Thérèse",48.097427,-1.662555,-1,0,ORE:SA:CTP1337,Europe/Paris,2,ORE, +ORE:SP:1364,1,"Bigot de Préameneu",48.098048,-1.667094,-1,0,ORE:SA:CTP1336,Europe/Paris,2,ORE, +ORE:SP:1365,1,"Ormeaux",48.097759,-1.669245,-1,0,ORE:SA:CTP1335,Europe/Paris,2,ORE, +ORE:SP:1366,1,"Châtillon",48.097797,-1.67092,-1,0,ORE:SA:CTP1334,Europe/Paris,2,ORE, +ORE:SP:1367,1,"Rennes Mairie",48.111022,-1.679517,-1,0,ORE:SA:CTP1367,Europe/Paris,2,ORE, +ORE:SP:1368,1,"Square de la Rance",48.118322,-1.680513,-1,0,ORE:SA:CTP1331,Europe/Paris,2,ORE, +ORE:SP:1369,1,"Auberge de Jeunesse",48.120269,-1.68102,-1,0,ORE:SA:CTP1330,Europe/Paris,2,ORE, +ORE:SP:1370,1,"Lenoir",48.121947,-1.683469,-1,0,ORE:SA:CTP1329,Europe/Paris,2,ORE, +ORE:SP:1371,1,"Lycée Mendès France",48.133171,-1.68511,-1,0,ORE:SA:CTP1328,Europe/Paris,0,ORE, +ORE:SP:1372,1,"Saint-Laurent",48.138364,-1.659181,-1,0,ORE:SA:CTP1103,Europe/Paris,2,ORE, +ORE:SP:1373,1,"Hôtel de Région",48.135248,-1.65936,-1,0,ORE:SA:CTP1104,Europe/Paris,2,ORE, +ORE:SP:1374,1,"Longs Prés",48.133162,-1.65696,-1,0,ORE:SA:CTP1374,Europe/Paris,2,ORE, +ORE:SP:1375,1,"Gast",48.130103,-1.656774,-1,0,ORE:SA:CTP1375,Europe/Paris,2,ORE, +ORE:SP:1376,1,"Europe",48.128579,-1.657192,-1,0,ORE:SA:CTP1376,Europe/Paris,2,ORE, +ORE:SP:1377,1,"Trégain",48.126826,-1.65857,-1,0,ORE:SA:CTP1377,Europe/Paris,2,ORE, +ORE:SP:1378,1,"Saint-Exupéry",48.12477,-1.661615,-1,0,ORE:SA:CTP1378,Europe/Paris,2,ORE, +ORE:SP:1381,1,"Malakoff",48.105128,-1.696468,-1,0,ORE:SA:CTP1381,Europe/Paris,2,ORE, +ORE:SP:1382,1,"Voltaire",48.105074,-1.698818,-1,0,ORE:SA:CTP1382,Europe/Paris,2,ORE, +ORE:SP:1383,1,"Dargent",48.103589,-1.700048,-1,0,ORE:SA:CTP1383,Europe/Paris,2,ORE, +ORE:SP:1384,1,"Champion de Cicé",48.102651,-1.703856,-1,0,ORE:SA:CTP1384,Europe/Paris,2,ORE, +ORE:SP:1385,1,"De Lesseps",48.100655,-1.707006,-1,0,ORE:SA:CTP1385,Europe/Paris,2,ORE, +ORE:SP:1386,1,"Guérinais",48.098922,-1.705488,-1,0,ORE:SA:CTP1386,Europe/Paris,2,ORE, +ORE:SP:1387,1,"Récipon",48.098044,-1.708181,-1,0,ORE:SA:CTP1387,Europe/Paris,2,ORE, +ORE:SP:1388,1,"Montand",48.099353,-1.711217,-1,0,ORE:SA:CTP1388,Europe/Paris,2,ORE, +ORE:SP:1389,1,"Clinique La Sagesse",48.101249,-1.71181,-1,0,ORE:SA:CTP1389,Europe/Paris,2,ORE, +ORE:SP:1390,1,"Cleunay",48.104175,-1.713394,-1,0,ORE:SA:CTP1390,Europe/Paris,2,ORE, +ORE:SP:1391,1,"Clinique La Sagesse",48.101056,-1.711799,-1,0,ORE:SA:CTP1389,Europe/Paris,2,ORE, +ORE:SP:1392,1,"Montand",48.099871,-1.711154,-1,0,ORE:SA:CTP1388,Europe/Paris,2,ORE, +ORE:SP:1393,1,"Récipon",48.097814,-1.707641,-1,0,ORE:SA:CTP1387,Europe/Paris,2,ORE, +ORE:SP:1394,1,"Guérinais",48.099043,-1.705513,-1,0,ORE:SA:CTP1386,Europe/Paris,2,ORE, +ORE:SP:1395,1,"De Lesseps",48.101013,-1.706956,-1,0,ORE:SA:CTP1385,Europe/Paris,2,ORE, +ORE:SP:1396,1,"Champion de Cicé",48.102182,-1.705063,-1,0,ORE:SA:CTP1384,Europe/Paris,2,ORE, +ORE:SP:1397,1,"Dargent",48.103598,-1.700369,-1,0,ORE:SA:CTP1383,Europe/Paris,2,ORE, +ORE:SP:1398,1,"Voltaire",48.105225,-1.698672,-1,0,ORE:SA:CTP1382,Europe/Paris,2,ORE, +ORE:SP:1399,1,"Malakoff",48.105015,-1.69546,-1,0,ORE:SA:CTP1381,Europe/Paris,2,ORE, +ORE:SP:1401,1,"Redon",48.105574,-1.687728,-1,0,ORE:SA:CTP1401,Europe/Paris,2,ORE, +ORE:SP:1402,1,"Cité Judiciaire",48.105647,-1.685188,-1,0,ORE:SA:CTP1019,Europe/Paris,2,ORE, +ORE:SP:1403,1,"Saint-Exupéry",48.125211,-1.66096,-1,0,ORE:SA:CTP1378,Europe/Paris,2,ORE, +ORE:SP:1404,1,"Trégain",48.126712,-1.658487,-1,0,ORE:SA:CTP1377,Europe/Paris,2,ORE, +ORE:SP:1405,1,"Europe",48.128416,-1.657061,-1,0,ORE:SA:CTP1376,Europe/Paris,2,ORE, +ORE:SP:1406,1,"Gast",48.130876,-1.656445,-1,0,ORE:SA:CTP1375,Europe/Paris,2,ORE, +ORE:SP:1407,1,"Longs Prés",48.133129,-1.656626,-1,0,ORE:SA:CTP1374,Europe/Paris,2,ORE, +ORE:SP:1408,1,"Vitré Péguy",48.119751,-1.65133,-1,0,ORE:SA:CTP1408,Europe/Paris,0,ORE, +ORE:SP:1409,1,"Joliot-Curie",48.126831,-1.653313,-1,0,ORE:SA:CTP1409,Europe/Paris,2,ORE, +ORE:SP:1410,1,"Hélias",48.136512,-1.662483,-1,0,ORE:SA:CTP1410,Europe/Paris,2,ORE, +ORE:SP:1411,1,"Bellangerais",48.132111,-1.67291,-1,0,ORE:SA:CTP1256,Europe/Paris,2,ORE, +ORE:SP:1412,1,"Cours Kennedy",48.1214,-1.707774,-1,0,ORE:SA:CTP1412,Europe/Paris,2,ORE, +ORE:SP:1413,1,"Villejean-Churchill",48.118607,-1.707954,-1,0,ORE:SA:CTP1190,Europe/Paris,2,ORE, +ORE:SP:1414,1,"Merlin",48.116416,-1.712265,-1,0,ORE:SA:CTP1414,Europe/Paris,2,ORE, +ORE:SP:1417,1,"Les Arts",48.111171,-1.712864,-1,0,ORE:SA:CTP1417,Europe/Paris,2,ORE, +ORE:SP:1418,1,"Géniaux",48.109104,-1.710162,-1,0,ORE:SA:CTP1221,Europe/Paris,2,ORE, +ORE:SP:1419,1,"Les Arts",48.111433,-1.713382,-1,0,ORE:SA:CTP1417,Europe/Paris,2,ORE, +ORE:SP:1421,1,"Chambre Agriculture",48.114636,-1.715503,-1,0,ORE:SA:CTP1421,Europe/Paris,2,ORE, +ORE:SP:1422,1,"Merlin",48.116261,-1.711309,-1,0,ORE:SA:CTP1414,Europe/Paris,2,ORE, +ORE:SP:1423,1,"Villejean-Churchill",48.118508,-1.70816,-1,0,ORE:SA:CTP1190,Europe/Paris,2,ORE, +ORE:SP:1424,1,"Cours Kennedy",48.121238,-1.70795,-1,0,ORE:SA:CTP1412,Europe/Paris,2,ORE, +ORE:SP:1425,1,"Trois Croix",48.128,-1.682448,-1,0,ORE:SA:CTP1041,Europe/Paris,2,ORE, +ORE:SP:1426,1,"Bellangerais",48.132124,-1.672635,-1,0,ORE:SA:CTP1256,Europe/Paris,2,ORE, +ORE:SP:1427,1,"Hélias",48.136404,-1.663348,-1,0,ORE:SA:CTP1410,Europe/Paris,2,ORE, +ORE:SP:1428,1,"Hôtel de Région",48.134522,-1.658625,-1,0,ORE:SA:CTP1104,Europe/Paris,2,ORE, +ORE:SP:1429,1,"Joliot-Curie",48.127628,-1.650898,-1,0,ORE:SA:CTP1409,Europe/Paris,2,ORE, +ORE:SP:1430,1,"Painlevé",48.123645,-1.659306,-1,0,ORE:SA:CTP1008,Europe/Paris,2,ORE, +ORE:SP:1431,1,"Vitré Péguy",48.119516,-1.65114,-1,0,ORE:SA:CTP1408,Europe/Paris,0,ORE, +ORE:SP:1432,1,"Vitré Foulon",48.118769,-1.649907,-1,0,ORE:SA:CTP1201,Europe/Paris,2,ORE, +ORE:SP:1433,1,"Durafour Strasbourg",48.113595,-1.65655,-1,0,ORE:SA:CTP1433,Europe/Paris,2,ORE, +ORE:SP:1434,1,"Pont de Strasbourg",48.109541,-1.655406,-1,0,ORE:SA:CTP1173,Europe/Paris,2,ORE, +ORE:SP:1435,1,"Chardonnet",48.105688,-1.650713,-1,0,ORE:SA:CTP1435,Europe/Paris,2,ORE, +ORE:SP:1436,1,"Cimetière de l'Est",48.103612,-1.649802,-1,0,ORE:SA:CTP1210,Europe/Paris,2,ORE, +ORE:SP:1437,1,"Villebois-Mareuil",48.100804,-1.649824,-1,0,ORE:SA:CTP1317,Europe/Paris,2,ORE, +ORE:SP:1438,1,"Le Dantec",48.099251,-1.652881,-1,0,ORE:SA:CTP1438,Europe/Paris,2,ORE, +ORE:SP:1439,1,"Bourgeois",48.098234,-1.655137,-1,0,ORE:SA:CTP1061,Europe/Paris,2,ORE, +ORE:SP:1440,1,"Le Blosne",48.087647,-1.653923,-1,0,ORE:SA:CTP1440,Europe/Paris,2,ORE, +ORE:SP:1441,1,"Triangle",48.08608,-1.660855,-1,0,ORE:SA:CTP1441,Europe/Paris,2,ORE, +ORE:SP:1442,1,"Binquenais",48.091639,-1.66733,-1,0,ORE:SA:CTP1442,Europe/Paris,2,ORE, +ORE:SP:1443,1,"Binquenais Collège",48.091624,-1.662448,-1,0,ORE:SA:CTP1443,Europe/Paris,2,ORE, +ORE:SP:1444,1,"Combes",48.093622,-1.66964,-1,0,ORE:SA:CTP1444,Europe/Paris,2,ORE, +ORE:SP:1445,1,"Clemenceau",48.093147,-1.674668,-1,0,ORE:SA:CTP1445,Europe/Paris,2,ORE, +ORE:SP:1446,1,"Argonautes",48.089583,-1.674997,-1,0,ORE:SA:CTP1446,Europe/Paris,2,ORE, +ORE:SP:1447,1,"Henri Fréville",48.08721,-1.675075,-1,0,ORE:SA:CTP1447,Europe/Paris,2,ORE, +ORE:SP:1449,1,"Norvège",48.086865,-1.683079,-1,0,ORE:SA:CTP1449,Europe/Paris,2,ORE, +ORE:SP:1450,1,"Coubertin",48.08669,-1.688453,-1,0,ORE:SA:CTP1450,Europe/Paris,2,ORE, +ORE:SP:1451,1,"Lycée Bréquigny",48.086857,-1.691262,-1,0,ORE:SA:CTP1451,Europe/Paris,2,ORE, +ORE:SP:1452,1,"Bréquigny Piscine",48.089851,-1.690987,-1,0,ORE:SA:CTP1452,Europe/Paris,2,ORE, +ORE:SP:1453,1,"Pigeon Blanc",48.089768,-1.692985,-1,0,ORE:SA:CTP1453,Europe/Paris,2,ORE, +ORE:SP:1454,1,"Bréquigny Piscine",48.089581,-1.691241,-1,0,ORE:SA:CTP1452,Europe/Paris,2,ORE, +ORE:SP:1455,1,"Lycée Bréquigny",48.086702,-1.691043,-1,0,ORE:SA:CTP1451,Europe/Paris,2,ORE, +ORE:SP:1456,1,"Coubertin",48.086541,-1.687451,-1,0,ORE:SA:CTP1450,Europe/Paris,2,ORE, +ORE:SP:1457,1,"Norvège",48.086765,-1.683887,-1,0,ORE:SA:CTP1449,Europe/Paris,2,ORE, +ORE:SP:1459,1,"Henri Fréville",48.08809,-1.674269,-1,0,ORE:SA:CTP1447,Europe/Paris,2,ORE, +ORE:SP:1460,1,"Argonautes",48.091308,-1.674159,-1,0,ORE:SA:CTP1446,Europe/Paris,2,ORE, +ORE:SP:1461,1,"Clemenceau",48.093659,-1.673762,-1,0,ORE:SA:CTP1445,Europe/Paris,2,ORE, +ORE:SP:1462,1,"Combes",48.093478,-1.670045,-1,0,ORE:SA:CTP1444,Europe/Paris,2,ORE, +ORE:SP:1463,1,"Binquenais Collège",48.091328,-1.663129,-1,0,ORE:SA:CTP1443,Europe/Paris,2,ORE, +ORE:SP:1464,1,"Binquenais",48.091295,-1.666295,-1,0,ORE:SA:CTP1442,Europe/Paris,2,ORE, +ORE:SP:1465,1,"Triangle",48.086117,-1.661119,-1,0,ORE:SA:CTP1441,Europe/Paris,2,ORE, +ORE:SP:1466,1,"Hôpital Sud",48.085058,-1.65386,-1,0,ORE:SA:CTP1346,Europe/Paris,2,ORE, +ORE:SP:1467,1,"Le Blosne",48.087513,-1.653273,-1,0,ORE:SA:CTP1440,Europe/Paris,2,ORE, +ORE:SP:1468,1,"La Poterie",48.087383,-1.645367,-1,0,ORE:SA:CTP1065,Europe/Paris,2,ORE, +ORE:SP:1469,1,"Le Dantec",48.099276,-1.652485,-1,0,ORE:SA:CTP1438,Europe/Paris,2,ORE, +ORE:SP:1470,1,"Villebois-Mareuil",48.100631,-1.650392,-1,0,ORE:SA:CTP1317,Europe/Paris,2,ORE, +ORE:SP:1471,1,"Cimetière de l'Est",48.103763,-1.649492,-1,0,ORE:SA:CTP1210,Europe/Paris,2,ORE, +ORE:SP:1472,1,"Chardonnet",48.107199,-1.650946,-1,0,ORE:SA:CTP1435,Europe/Paris,2,ORE, +ORE:SP:1473,1,"Pont de Strasbourg",48.110761,-1.655608,-1,0,ORE:SA:CTP1173,Europe/Paris,2,ORE, +ORE:SP:1474,1,"Durafour Strasbourg",48.113474,-1.656747,-1,0,ORE:SA:CTP1433,Europe/Paris,2,ORE, +ORE:SP:1477,1,"Gares",48.104128,-1.672577,-1,0,ORE:SA:CTP1056,Europe/Paris,2,ORE, +ORE:SP:1480,1,"ZA Saint-Sulpice",48.131978,-1.634928,-1,0,ORE:SA:CTP1480,Europe/Paris,2,ORE, +ORE:SP:1481,1,"Pâtis Tatelin",48.129789,-1.642252,-1,0,ORE:SA:CTP1481,Europe/Paris,2,ORE, +ORE:SP:1483,1,"Pâtis Tatelin",48.12955,-1.64367,-1,0,ORE:SA:CTP1481,Europe/Paris,2,ORE, +ORE:SP:1484,1,"ZA Saint-Sulpice",48.131875,-1.635896,-1,0,ORE:SA:CTP1480,Europe/Paris,2,ORE, +ORE:SP:1485,1,"Saint-Laurent",48.137957,-1.658769,-1,0,ORE:SA:CTP1103,Europe/Paris,2,ORE, +ORE:SP:1486,1,"Hôtel de Région",48.134801,-1.659901,-1,0,ORE:SA:CTP1104,Europe/Paris,2,ORE, +ORE:SP:1487,1,"Patton Gast",48.131345,-1.662406,-1,0,ORE:SA:CTP1487,Europe/Paris,2,ORE, +ORE:SP:1489,1,"Patton Gast",48.132299,-1.661521,-1,0,ORE:SA:CTP1487,Europe/Paris,2,ORE, +ORE:SP:1490,1,"Hôtel de Région",48.136021,-1.659114,-1,0,ORE:SA:CTP1104,Europe/Paris,2,ORE, +ORE:SP:1491,1,"Saint-Laurent",48.13892,-1.658273,-1,0,ORE:SA:CTP1103,Europe/Paris,2,ORE, +ORE:SP:1492,1,"Grand Quartier",48.133784,-1.69386,-1,0,ORE:SA:CTP1492,Europe/Paris,2,ORE, +ORE:SP:1493,1,"Préfecture - ESC",48.127175,-1.693387,-1,0,ORE:SA:CTP1301,Europe/Paris,2,ORE, +ORE:SP:1494,1,"Villejean-Université",48.121217,-1.70297,-1,0,ORE:SA:CTP1297,Europe/Paris,2,ORE, +ORE:SP:1495,1,"Préfecture - ESC",48.126607,-1.693012,-1,0,ORE:SA:CTP1301,Europe/Paris,2,ORE, +ORE:SP:1496,1,"Lycée St-Exupéry",48.132313,-1.709762,-1,0,ORE:SA:CTP1496,Europe/Paris,0,ORE, +ORE:SP:1497,1,"Villejean-Université",48.120973,-1.70298,-1,0,ORE:SA:CTP1297,Europe/Paris,2,ORE, +ORE:SP:1498,1,"Petit Champeaux",48.116622,-1.723945,-1,0,ORE:SA:CTP1498,Europe/Paris,2,ORE, +ORE:SP:1499,1,"Colin",48.1163,-1.716029,-1,0,ORE:SA:CTP1499,Europe/Paris,2,ORE, +ORE:SP:1500,1,"Agrocampus",48.113203,-1.704506,-1,0,ORE:SA:CTP1500,Europe/Paris,2,ORE, +ORE:SP:1501,1,"République",48.109403,-1.679768,-1,0,ORE:SA:CTP1016,Europe/Paris,2,ORE, +ORE:SP:1502,1,"Agrocampus",48.113945,-1.705436,-1,0,ORE:SA:CTP1500,Europe/Paris,2,ORE, +ORE:SP:1503,1,"Colin",48.116133,-1.715924,-1,0,ORE:SA:CTP1499,Europe/Paris,2,ORE, +ORE:SP:1504,1,"Petit Champeaux",48.116353,-1.723158,-1,0,ORE:SA:CTP1498,Europe/Paris,2,ORE, +ORE:SP:1506,1,"Berthault",48.106766,-1.730277,-1,0,ORE:SA:CTP1506,Europe/Paris,2,ORE, +ORE:SP:1507,1,"Lycée Zola",48.109406,-1.6751,-1,0,ORE:SA:CTP1507,Europe/Paris,2,ORE, +ORE:SP:1508,1,"Berthault",48.106693,-1.729127,-1,0,ORE:SA:CTP1506,Europe/Paris,2,ORE, +ORE:SP:1509,1,"Henri Fréville",48.087822,-1.674555,-1,0,ORE:SA:CTP1447,Europe/Paris,2,ORE, +ORE:SP:1510,1,"Henri Fréville",48.087784,-1.674415,-1,0,ORE:SA:CTP1447,Europe/Paris,2,ORE, +ORE:SP:1511,1,"La Poterie",48.087572,-1.643466,-1,0,ORE:SA:CTP1065,Europe/Paris,2,ORE, +ORE:SP:1512,1,"Le Guyader",48.085329,-1.695562,-1,0,ORE:SA:CTP1512,Europe/Paris,0,ORE, +ORE:SP:1513,1,"Bois Perrin",48.115378,-1.648495,-1,0,ORE:SA:CTP1513,Europe/Paris,2,ORE, +ORE:SP:1514,1,"Moulin de Joué",48.113326,-1.647648,-1,0,ORE:SA:CTP1514,Europe/Paris,2,ORE, +ORE:SP:1515,1,"Moulin de Joué",48.113631,-1.647569,-1,0,ORE:SA:CTP1514,Europe/Paris,2,ORE, +ORE:SP:1516,1,"Bois Perrin",48.115973,-1.648367,-1,0,ORE:SA:CTP1513,Europe/Paris,2,ORE, +ORE:SP:1517,1,"Berry",48.118565,-1.713574,-1,0,ORE:SA:CTP1517,Europe/Paris,2,ORE, +ORE:SP:1518,1,"Bourbonnais",48.120593,-1.710572,-1,0,ORE:SA:CTP1518,Europe/Paris,2,ORE, +ORE:SP:1519,1,"Villejean-Université",48.121064,-1.702976,-1,0,ORE:SA:CTP1297,Europe/Paris,2,ORE, +ORE:SP:1520,1,"Bourbonnais",48.120473,-1.709574,-1,0,ORE:SA:CTP1518,Europe/Paris,2,ORE, +ORE:SP:1521,1,"Berry",48.118462,-1.713825,-1,0,ORE:SA:CTP1517,Europe/Paris,2,ORE, +ORE:SP:1522,1,"Piletière",48.113884,-1.642719,-1,0,ORE:SA:CTP1522,Europe/Paris,2,ORE, +ORE:SP:1523,1,"Moulin de Joué",48.114277,-1.649131,-1,0,ORE:SA:CTP1514,Europe/Paris,2,ORE, +ORE:SP:1524,1,"Hôpital Régnier",48.114621,-1.651278,-1,0,ORE:SA:CTP1524,Europe/Paris,2,ORE, +ORE:SP:1526,1,"Hôpital Régnier",48.114801,-1.65322,-1,0,ORE:SA:CTP1524,Europe/Paris,2,ORE, +ORE:SP:1527,1,"Moulin de Joué",48.114569,-1.649959,-1,0,ORE:SA:CTP1514,Europe/Paris,2,ORE, +ORE:SP:1528,1,"Piletière",48.113992,-1.64442,-1,0,ORE:SA:CTP1522,Europe/Paris,2,ORE, +ORE:SP:1529,1,"Villejean-Université",48.121156,-1.702973,-1,0,ORE:SA:CTP1297,Europe/Paris,2,ORE, +ORE:SP:1530,1,"Pâtis Tatelin",48.128911,-1.642714,-1,0,ORE:SA:CTP1481,Europe/Paris,2,ORE, +ORE:SP:1532,1,"Joliot-Curie",48.127001,-1.652714,-1,0,ORE:SA:CTP1409,Europe/Paris,2,ORE, +ORE:SP:1533,1,"La Poterie",48.087637,-1.643479,-1,0,ORE:SA:CTP1065,Europe/Paris,2,ORE, +ORE:SP:1534,1,"Henri Fréville",48.088549,-1.67439,-1,0,ORE:SA:CTP1447,Europe/Paris,2,ORE, +ORE:SP:1536,1,"Clos Courtel",48.12678,-1.630245,-1,0,ORE:SA:CTP1536,Europe/Paris,2,ORE, +ORE:SP:1537,1,"Léonard",48.131596,-1.69166,-1,0,ORE:SA:CTP1302,Europe/Paris,2,ORE, +ORE:SP:1539,1,"Lemaistre",48.107253,-1.723135,-1,0,ORE:SA:CTP1233,Europe/Paris,2,ORE, +ORE:SP:1540,1,"Pont de Bretagne",48.109999,-1.685158,-1,0,ORE:SA:CTP1540,Europe/Paris,2,ORE, +ORE:SP:1542,1,"Pont de Bretagne",48.10992,-1.68535,-1,0,ORE:SA:CTP1540,Europe/Paris,2,ORE, +ORE:SP:1543,1,"Léonard",48.131341,-1.691889,-1,0,ORE:SA:CTP1302,Europe/Paris,2,ORE, +ORE:SP:1544,1,"Le Guyader",48.084931,-1.696071,-1,0,ORE:SA:CTP1512,Europe/Paris,0,ORE, +ORE:SP:1545,1,"Cleunay Stade",48.101549,-1.708422,-1,0,ORE:SA:CTP1545,Europe/Paris,2,ORE, +ORE:SP:1546,1,"Cleunay Stade",48.101614,-1.708823,-1,0,ORE:SA:CTP1545,Europe/Paris,2,ORE, +ORE:SP:1547,1,"Etangs d'Apigné",48.091983,-1.737811,-1,0,ORE:SA:CTP1547,Europe/Paris,0,ORE, +ORE:SP:1548,1,"Etangs d'Apigné",48.092122,-1.737327,-1,0,ORE:SA:CTP1547,Europe/Paris,0,ORE, +ORE:SP:1550,1,"République",48.109699,-1.677942,-1,0,ORE:SA:CTP1016,Europe/Paris,2,ORE, +ORE:SP:1551,1,"République",48.109936,-1.678228,-1,0,ORE:SA:CTP1016,Europe/Paris,2,ORE, +ORE:SP:1552,1,"Place Pasteur",48.110624,-1.673506,-1,0,ORE:SA:CTP1552,Europe/Paris,2,ORE, +ORE:SP:1553,1,"Villejean-Université",48.121297,-1.702339,-1,0,ORE:SA:CTP1297,Europe/Paris,2,ORE, +ORE:SP:1554,1,"Binquenais Le Moine",48.090732,-1.66125,-1,0,ORE:SA:CTP1554,Europe/Paris,2,ORE, +ORE:SP:1555,1,"Fossés",48.113304,-1.675306,-1,0,ORE:SA:CTP1555,Europe/Paris,2,ORE, +ORE:SP:1556,1,"République",48.1094,-1.677626,-1,0,ORE:SA:CTP1016,Europe/Paris,2,ORE, +ORE:SP:1560,1,"Bourgeois",48.097773,-1.656724,-1,0,ORE:SA:CTP1061,Europe/Paris,2,ORE, +ORE:SP:1561,1,"Langevin",48.095918,-1.658068,-1,0,ORE:SA:CTP1339,Europe/Paris,2,ORE, +ORE:SP:1563,1,"République",48.109698,-1.67815,-1,0,ORE:SA:CTP1016,Europe/Paris,2,ORE, +ORE:SP:1564,1,"Henri Fréville",48.088114,-1.674405,-1,0,ORE:SA:CTP1447,Europe/Paris,2,ORE, +ORE:SP:1566,1,"Lycée Basch",48.125304,-1.692431,-1,0,ORE:SA:CTP1566,Europe/Paris,2,ORE, +ORE:SP:1567,1,"Charles de Gaulle",48.106213,-1.677425,-1,0,ORE:SA:CTP1121,Europe/Paris,2,ORE, +ORE:SP:1568,1,"Kennedy Guyenne",48.121028,-1.713571,-1,0,ORE:SA:CTP1568,Europe/Paris,2,ORE, +ORE:SP:1570,1,"Coeur de Courrouze",48.098203,-1.699023,-1,0,ORE:SA:CTP1570,Europe/Paris,2,ORE, +ORE:SP:1571,1,"Coeur de Courrouze",48.09829,-1.699389,-1,0,ORE:SA:CTP1570,Europe/Paris,2,ORE, +ORE:SP:1572,1,"Vincennes",48.118015,-1.675219,-1,0,ORE:SA:CTP1572,Europe/Paris,2,ORE, +ORE:SP:1573,1,"Mermoz",48.097045,-1.690278,-1,0,ORE:SA:CTP1020,Europe/Paris,2,ORE, +ORE:SP:1574,1,"Binquenais Le Moine",48.090875,-1.661101,-1,0,ORE:SA:CTP1554,Europe/Paris,2,ORE, +ORE:SP:1575,1,"Gares",48.103768,-1.671317,-1,0,ORE:SA:CTP1056,Europe/Paris,2,ORE, +ORE:SP:1578,1,"Lycée Mendès France",48.13335,-1.6839,-1,0,ORE:SA:CTP1328,Europe/Paris,0,ORE, +ORE:SP:1587,1,"Cité Judiciaire",48.105915,-1.684405,-1,0,ORE:SA:CTP1019,Europe/Paris,2,ORE, +ORE:SP:1588,1,"Jules Maniez",48.098019,-1.703694,-1,0,ORE:SA:CTP1588,Europe/Paris,2,ORE, +ORE:SP:1589,1,"Jules Maniez",48.097935,-1.703985,-1,0,ORE:SA:CTP1588,Europe/Paris,2,ORE, +ORE:SP:1590,1,"Jules Verne",48.098899,-1.69354,-1,0,ORE:SA:CTP1590,Europe/Paris,2,ORE, +ORE:SP:1591,1,"Jules Verne",48.09891,-1.69368,-1,0,ORE:SA:CTP1590,Europe/Paris,2,ORE, +ORE:SP:1595,1,"Charles de Gaulle",48.105833,-1.6773,-1,0,ORE:SA:CTP1121,Europe/Paris,2,ORE, +ORE:SP:1596,1,"Clotilde Vautier",48.125861,-1.668462,-1,0,ORE:SA:CTP1596,Europe/Paris,0,ORE, +ORE:SP:1603,1,"Les Préales",48.11325,-1.641287,-1,0,ORE:SA:CTP1603,Europe/Paris,2,ORE, +ORE:SP:1604,1,"Les Préales",48.113551,-1.640947,-1,0,ORE:SA:CTP1603,Europe/Paris,2,ORE, +ORE:SP:1605,1,"Pont de Strasbourg",48.110157,-1.656509,-1,0,ORE:SA:CTP1173,Europe/Paris,2,ORE, +ORE:SP:1606,1,"Place Hoche",48.115697,-1.676699,-1,0,ORE:SA:CTP1606,Europe/Paris,2,ORE, +ORE:SP:1608,1,"Collège Cleunay",48.098331,-1.70864,-1,0,ORE:SA:CTP1608,Europe/Paris,0,ORE, +ORE:SP:1609,1,"Tournebride",48.114194,-1.636482,-1,0,ORE:SA:CTP1160,Europe/Paris,2,ORE, +ORE:SP:1610,1,"Tournebride",48.114025,-1.636082,-1,0,ORE:SA:CTP1160,Europe/Paris,2,ORE, +ORE:SP:1611,1,"Redon",48.105462,-1.688422,-1,0,ORE:SA:CTP1401,Europe/Paris,2,ORE, +ORE:SP:1612,1,"Saint-Conwoïon",48.103539,-1.688429,-1,0,ORE:SA:CTP1612,Europe/Paris,2,ORE, +ORE:SP:1613,1,"Saint-Conwoïon",48.103012,-1.688808,-1,0,ORE:SA:CTP1612,Europe/Paris,2,ORE, +ORE:SP:1614,1,"Assomption",48.121972,-1.656489,-1,0,ORE:SA:CTP1007,Europe/Paris,2,ORE, +ORE:SP:1615,1,"République",48.109803,-1.678283,-1,0,ORE:SA:CTP1016,Europe/Paris,2,ORE, +ORE:SP:1616,1,"Saint-Conwoïon",48.103307,-1.689206,-1,0,ORE:SA:CTP1612,Europe/Paris,2,ORE, +ORE:SP:1617,1,"Longs Champs Est",48.129137,-1.630168,-1,0,ORE:SA:CTP1617,Europe/Paris,2,ORE, +ORE:SP:1618,1,"Joliot-Curie",48.125139,-1.65309,-1,0,ORE:SA:CTP1409,Europe/Paris,2,ORE, +ORE:SP:1619,1,"Joliot-Curie",48.125198,-1.652864,-1,0,ORE:SA:CTP1409,Europe/Paris,2,ORE, +ORE:SP:1622,1,"Alma",48.084157,-1.679166,-1,0,ORE:SA:CTP1622,Europe/Paris,2,ORE, +ORE:SP:1623,1,"Alma",48.083961,-1.678307,-1,0,ORE:SA:CTP1622,Europe/Paris,2,ORE, +ORE:SP:1625,1,"Armorique",48.13073,-1.675781,-1,0,ORE:SA:CTP1625,Europe/Paris,2,ORE, +ORE:SP:1626,1,"Armorique",48.130639,-1.677011,-1,0,ORE:SA:CTP1625,Europe/Paris,2,ORE, +ORE:SP:1629,1,"Pré Garel",48.104031,-1.635026,-1,0,ORE:SA:CTP1248,Europe/Paris,2,ORE, +ORE:SP:1630,1,"ZA Saint-Sulpice",48.132662,-1.636187,-1,0,ORE:SA:CTP1480,Europe/Paris,2,ORE, +ORE:SP:1631,1,"ZA Saint-Sulpice",48.132353,-1.636152,-1,0,ORE:SA:CTP1480,Europe/Paris,2,ORE, +ORE:SP:1633,1,"Haut Sancé",48.096655,-1.636527,-1,0,ORE:SA:CTP1071,Europe/Paris,2,ORE, +ORE:SP:1634,1,"Painlevé",48.123688,-1.660475,-1,0,ORE:SA:CTP1008,Europe/Paris,2,ORE, +ORE:SP:1636,1,"Haut Sancé",48.095933,-1.637156,-1,0,ORE:SA:CTP1071,Europe/Paris,2,ORE, +ORE:SP:1637,1,"Lycée Chateaubriand",48.123062,-1.651491,-1,0,ORE:SA:CTP1637,Europe/Paris,2,ORE, +ORE:SP:1638,1,"Lycée Chateaubriand",48.122545,-1.651088,-1,0,ORE:SA:CTP1637,Europe/Paris,2,ORE, +ORE:SP:1640,1,"Lycée Mendès France",48.133664,-1.684558,-1,0,ORE:SA:CTP1328,Europe/Paris,0,ORE, +ORE:SP:1643,1,"Chambre Agriculture",48.114823,-1.715624,-1,0,ORE:SA:CTP1421,Europe/Paris,2,ORE, +ORE:SP:1644,1,"Place Pasteur",48.110714,-1.673658,-1,0,ORE:SA:CTP1552,Europe/Paris,2,ORE, +ORE:SP:1646,1,"Italie",48.086632,-1.668834,-1,0,ORE:SA:CTP1646,Europe/Paris,2,ORE, +ORE:SP:1647,1,"Henri Fréville",48.087443,-1.674436,-1,0,ORE:SA:CTP1447,Europe/Paris,2,ORE, +ORE:SP:1648,1,"La Poterie",48.087634,-1.646331,-1,0,ORE:SA:CTP1065,Europe/Paris,2,ORE, +ORE:SP:1649,1,"La Poterie",48.087524,-1.64332,-1,0,ORE:SA:CTP1065,Europe/Paris,2,ORE, +ORE:SP:1650,1,"La Poterie",48.087481,-1.643137,-1,0,ORE:SA:CTP1065,Europe/Paris,2,ORE, +ORE:SP:1651,1,"Jacques Cartier",48.097202,-1.675197,-1,0,ORE:SA:CTP1124,Europe/Paris,2,ORE, +ORE:SP:1652,1,"Dulac",48.132848,-1.69573,-1,0,ORE:SA:CTP1652,Europe/Paris,2,ORE, +ORE:SP:1653,1,"Dulac",48.133287,-1.69535,-1,0,ORE:SA:CTP1652,Europe/Paris,2,ORE, +ORE:SP:1654,1,"Motte Brûlon",48.129576,-1.674167,-1,0,ORE:SA:CTP1654,Europe/Paris,2,ORE, +ORE:SP:1655,1,"Motte Brûlon",48.129787,-1.673922,-1,0,ORE:SA:CTP1654,Europe/Paris,2,ORE, +ORE:SP:1656,1,"Volney",48.125261,-1.667791,-1,0,ORE:SA:CTP1261,Europe/Paris,2,ORE, +ORE:SP:1657,1,"Volney",48.125318,-1.667695,-1,0,ORE:SA:CTP1261,Europe/Paris,2,ORE, +ORE:SP:1658,1,"Italie",48.0865,-1.667379,-1,0,ORE:SA:CTP1646,Europe/Paris,2,ORE, +ORE:SP:1659,1,"Henri Fréville",48.086765,-1.675461,-1,0,ORE:SA:CTP1447,Europe/Paris,2,ORE, +ORE:SP:1660,1,"Clos Courtel",48.12689,-1.629952,-1,0,ORE:SA:CTP1536,Europe/Paris,2,ORE, +ORE:SP:1661,1,"Coubertin",48.086525,-1.686923,-1,0,ORE:SA:CTP1450,Europe/Paris,2,ORE, +ORE:SP:1662,1,"Gare Sud Féval",48.101462,-1.676188,-1,0,ORE:SA:CTP1122,Europe/Paris,2,ORE, +ORE:SP:1663,1,"Gares",48.104211,-1.670598,-1,0,ORE:SA:CTP1056,Europe/Paris,2,ORE, +ORE:SP:1664,1,"Clemenceau",48.094355,-1.674442,-1,0,ORE:SA:CTP1445,Europe/Paris,2,ORE, +ORE:SP:1665,1,"Atalante Champeaux",48.113248,-1.713671,-1,0,ORE:SA:CTP1665,Europe/Paris,0,ORE, +ORE:SP:1666,1,"Atalante Champeaux",48.113351,-1.71357,-1,0,ORE:SA:CTP1665,Europe/Paris,0,ORE, +ORE:SP:1667,1,"Robiquette",48.136333,-1.696931,-1,0,ORE:SA:CTP1667,Europe/Paris,0,ORE, +ORE:SP:2002,1,"Cesson Hôpital Privé",48.130233,-1.627664,-1,0,ORE:SA:CTP2002,Europe/Paris,2,ORE, +ORE:SP:2003,1,"Cesson Hôpital Privé",48.130071,-1.628026,-1,0,ORE:SA:CTP2002,Europe/Paris,2,ORE, +ORE:SP:2005,1,"Grand Domaine",48.124609,-1.594305,-1,0,ORE:SA:CTP2005,Europe/Paris,2,ORE, +ORE:SP:2006,1,"Petits Champs",48.125255,-1.596592,-1,0,ORE:SA:CTP2006,Europe/Paris,2,ORE, +ORE:SP:2007,1,"Bourgchevreuil",48.123121,-1.600517,-1,0,ORE:SA:CTP2007,Europe/Paris,2,ORE, +ORE:SP:2008,1,"La Coulée",48.123628,-1.604384,-1,0,ORE:SA:CTP2008,Europe/Paris,2,ORE, +ORE:SP:2009,1,"Fontenelle",48.123585,-1.608134,-1,0,ORE:SA:CTP2009,Europe/Paris,2,ORE, +ORE:SP:2010,1,"Mare Pavée",48.12279,-1.610938,-1,0,ORE:SA:CTP2010,Europe/Paris,2,ORE, +ORE:SP:2011,1,"Maison d'Accueil",48.121108,-1.60998,-1,0,ORE:SA:CTP2011,Europe/Paris,2,ORE, +ORE:SP:2012,1,"Muguet",48.11839,-1.608504,-1,0,ORE:SA:CTP2012,Europe/Paris,2,ORE, +ORE:SP:2013,1,"Vilaine",48.116419,-1.607397,-1,0,ORE:SA:CTP2013,Europe/Paris,2,ORE, +ORE:SP:2014,1,"Sports et Nature",48.114721,-1.609708,-1,0,ORE:SA:CTP2014,Europe/Paris,2,ORE, +ORE:SP:2015,1,"Hublais",48.114253,-1.616314,-1,0,ORE:SA:CTP2015,Europe/Paris,2,ORE, +ORE:SP:2016,1,"Taillis",48.114224,-1.621951,-1,0,ORE:SA:CTP2016,Europe/Paris,2,ORE, +ORE:SP:2017,1,"Champs Péans",48.114121,-1.630367,-1,0,ORE:SA:CTP2017,Europe/Paris,2,ORE, +ORE:SP:2019,1,"Champs Péans",48.114037,-1.628008,-1,0,ORE:SA:CTP2017,Europe/Paris,2,ORE, +ORE:SP:2020,1,"Taillis",48.114105,-1.621837,-1,0,ORE:SA:CTP2016,Europe/Paris,2,ORE, +ORE:SP:2021,1,"Hublais",48.114168,-1.613754,-1,0,ORE:SA:CTP2015,Europe/Paris,2,ORE, +ORE:SP:2022,1,"Sports et Nature",48.114642,-1.609545,-1,0,ORE:SA:CTP2014,Europe/Paris,2,ORE, +ORE:SP:2023,1,"Vilaine",48.115593,-1.606961,-1,0,ORE:SA:CTP2013,Europe/Paris,2,ORE, +ORE:SP:2024,1,"Muguet",48.118449,-1.608322,-1,0,ORE:SA:CTP2012,Europe/Paris,2,ORE, +ORE:SP:2025,1,"Maison d'Accueil",48.121255,-1.609884,-1,0,ORE:SA:CTP2011,Europe/Paris,2,ORE, +ORE:SP:2026,1,"Mare Pavée",48.122782,-1.61077,-1,0,ORE:SA:CTP2010,Europe/Paris,2,ORE, +ORE:SP:2027,1,"Fontenelle",48.123456,-1.608183,-1,0,ORE:SA:CTP2009,Europe/Paris,2,ORE, +ORE:SP:2028,1,"La Coulée",48.123463,-1.604091,-1,0,ORE:SA:CTP2008,Europe/Paris,2,ORE, +ORE:SP:2029,1,"Bourgchevreuil",48.123131,-1.600719,-1,0,ORE:SA:CTP2007,Europe/Paris,2,ORE, +ORE:SP:2030,1,"Petits Champs",48.124795,-1.596767,-1,0,ORE:SA:CTP2006,Europe/Paris,2,ORE, +ORE:SP:2031,1,"Grand Domaine",48.123895,-1.593417,-1,0,ORE:SA:CTP2005,Europe/Paris,2,ORE, +ORE:SP:2032,1,"Charmilles",48.106229,-1.621342,-1,0,ORE:SA:CTP2032,Europe/Paris,2,ORE, +ORE:SP:2033,1,"Bas Village",48.10133,-1.623467,-1,0,ORE:SA:CTP2033,Europe/Paris,2,ORE, +ORE:SP:2034,1,"Forum",48.099569,-1.621217,-1,0,ORE:SA:CTP2034,Europe/Paris,2,ORE, +ORE:SP:2035,1,"Forum",48.09967,-1.620857,-1,0,ORE:SA:CTP2034,Europe/Paris,2,ORE, +ORE:SP:2036,1,"Bas Village",48.101206,-1.624003,-1,0,ORE:SA:CTP2033,Europe/Paris,2,ORE, +ORE:SP:2037,1,"Erbonière",48.106047,-1.62563,-1,0,ORE:SA:CTP2037,Europe/Paris,2,ORE, +ORE:SP:2038,1,"Haut Grippé",48.114975,-1.590774,-1,0,ORE:SA:CTP2038,Europe/Paris,2,ORE, +ORE:SP:2039,1,"Bordage",48.114462,-1.600472,-1,0,ORE:SA:CTP2039,Europe/Paris,2,ORE, +ORE:SP:2040,1,"Chalotais",48.116167,-1.600377,-1,0,ORE:SA:CTP2040,Europe/Paris,2,ORE, +ORE:SP:2041,1,"Cesson Collège",48.120514,-1.599543,-1,0,ORE:SA:CTP2041,Europe/Paris,2,ORE, +ORE:SP:2042,1,"Les Lacs",48.124644,-1.613102,-1,0,ORE:SA:CTP2042,Europe/Paris,2,ORE, +ORE:SP:2043,1,"Cormier",48.124354,-1.618478,-1,0,ORE:SA:CTP2043,Europe/Paris,2,ORE, +ORE:SP:2044,1,"Belle Fontaine",48.127362,-1.62431,-1,0,ORE:SA:CTP2044,Europe/Paris,2,ORE, +ORE:SP:2045,1,"Clos Courtel",48.127387,-1.628256,-1,0,ORE:SA:CTP1536,Europe/Paris,2,ORE, +ORE:SP:2046,1,"Clos Courtel",48.127395,-1.626957,-1,0,ORE:SA:CTP2046,Europe/Paris,2,ORE, +ORE:SP:2047,1,"Belle Fontaine",48.127213,-1.623967,-1,0,ORE:SA:CTP2044,Europe/Paris,2,ORE, +ORE:SP:2048,1,"Cormier",48.124466,-1.617618,-1,0,ORE:SA:CTP2043,Europe/Paris,2,ORE, +ORE:SP:2049,1,"Les Lacs",48.124436,-1.614097,-1,0,ORE:SA:CTP2042,Europe/Paris,2,ORE, +ORE:SP:2050,1,"Cesson Collège",48.120244,-1.599275,-1,0,ORE:SA:CTP2041,Europe/Paris,2,ORE, +ORE:SP:2051,1,"Chalotais",48.115847,-1.600734,-1,0,ORE:SA:CTP2040,Europe/Paris,2,ORE, +ORE:SP:2052,1,"Lycée Ozanam",48.131149,-1.597037,-1,0,ORE:SA:CTP2052,Europe/Paris,0,ORE, +ORE:SP:2054,1,"Métairies Chalotais",48.123129,-1.601975,-1,0,ORE:SA:CTP2054,Europe/Paris,2,ORE, +ORE:SP:2055,1,"Cesson Piscine",48.119961,-1.602179,-1,0,ORE:SA:CTP2055,Europe/Paris,2,ORE, +ORE:SP:2056,1,"Cesson Mairie",48.118557,-1.604529,-1,0,ORE:SA:CTP2056,Europe/Paris,2,ORE, +ORE:SP:2057,1,"Cesson Gare",48.113861,-1.603295,-1,0,ORE:SA:CTP2057,Europe/Paris,2,ORE, +ORE:SP:2058,1,"Peupliers",48.112638,-1.607261,-1,0,ORE:SA:CTP2058,Europe/Paris,2,ORE, +ORE:SP:2059,1,"Monniais",48.109302,-1.609073,-1,0,ORE:SA:CTP2059,Europe/Paris,2,ORE, +ORE:SP:2060,1,"Rond Point de Bray",48.10784,-1.614683,-1,0,ORE:SA:CTP2060,Europe/Paris,2,ORE, +ORE:SP:2061,1,"Charmilles",48.106515,-1.621243,-1,0,ORE:SA:CTP2032,Europe/Paris,2,ORE, +ORE:SP:2062,1,"Rond Point de Bray",48.107771,-1.614065,-1,0,ORE:SA:CTP2060,Europe/Paris,2,ORE, +ORE:SP:2063,1,"Monniais",48.108743,-1.60963,-1,0,ORE:SA:CTP2059,Europe/Paris,2,ORE, +ORE:SP:2064,1,"Peupliers",48.112543,-1.607297,-1,0,ORE:SA:CTP2058,Europe/Paris,2,ORE, +ORE:SP:2065,1,"Cesson Gare",48.113984,-1.603204,-1,0,ORE:SA:CTP2057,Europe/Paris,2,ORE, +ORE:SP:2066,1,"Cesson Mairie",48.118312,-1.604191,-1,0,ORE:SA:CTP2056,Europe/Paris,2,ORE, +ORE:SP:2067,1,"Cesson Piscine",48.120381,-1.602371,-1,0,ORE:SA:CTP2055,Europe/Paris,2,ORE, +ORE:SP:2068,1,"Métairies Chalotais",48.123149,-1.60173,-1,0,ORE:SA:CTP2054,Europe/Paris,2,ORE, +ORE:SP:2070,1,"Victoire",48.145148,-1.608661,-1,0,ORE:SA:CTP2070,Europe/Paris,2,ORE, +ORE:SP:2071,1,"Calendrou",48.140415,-1.616907,-1,0,ORE:SA:CTP2071,Europe/Paris,2,ORE, +ORE:SP:2072,1,"Calendrou",48.140592,-1.616329,-1,0,ORE:SA:CTP2071,Europe/Paris,2,ORE, +ORE:SP:2073,1,"Victoire",48.145118,-1.608407,-1,0,ORE:SA:CTP2070,Europe/Paris,2,ORE, +ORE:SP:2074,1,"Mare Pavée",48.123547,-1.611239,-1,0,ORE:SA:CTP2010,Europe/Paris,2,ORE, +ORE:SP:2075,1,"Mare Pavée",48.123363,-1.611301,-1,0,ORE:SA:CTP2010,Europe/Paris,2,ORE, +ORE:SP:2076,1,"Lande Bouhard",48.134039,-1.629208,-1,0,ORE:SA:CTP2076,Europe/Paris,2,ORE, +ORE:SP:2077,1,"Lande Bouhard",48.134211,-1.628608,-1,0,ORE:SA:CTP2076,Europe/Paris,2,ORE, +ORE:SP:2079,1,"Verger",48.12886,-1.605971,-1,0,ORE:SA:CTP2079,Europe/Paris,0,ORE, +ORE:SP:2080,1,"Gaudais",48.127399,-1.612799,-1,0,ORE:SA:CTP2080,Europe/Paris,2,ORE, +ORE:SP:2081,1,"Bouriande",48.126799,-1.619769,-1,0,ORE:SA:CTP2081,Europe/Paris,2,ORE, +ORE:SP:2082,1,"Bouriande",48.126993,-1.619975,-1,0,ORE:SA:CTP2081,Europe/Paris,2,ORE, +ORE:SP:2083,1,"Gaudais",48.12696,-1.614219,-1,0,ORE:SA:CTP2080,Europe/Paris,2,ORE, +ORE:SP:2084,1,"Verger",48.12903,-1.604741,-1,0,ORE:SA:CTP2079,Europe/Paris,0,ORE, +ORE:SP:2085,1,"Champelé",48.116152,-1.582472,-1,0,ORE:SA:CTP2085,Europe/Paris,2,ORE, +ORE:SP:2086,1,"Bordage",48.114279,-1.600415,-1,0,ORE:SA:CTP2039,Europe/Paris,2,ORE, +ORE:SP:2088,1,"Stade Dézerseul",48.124609,-1.590688,-1,0,ORE:SA:CTP2088,Europe/Paris,2,ORE, +ORE:SP:2089,1,"Rigourdière",48.113572,-1.59052,-1,0,ORE:SA:CTP2089,Europe/Paris,2,ORE, +ORE:SP:2091,1,"Lycée Sévigné",48.119072,-1.597622,-1,0,ORE:SA:CTP2091,Europe/Paris,0,ORE, +ORE:SP:2101,1,"Village Collectivités",48.131755,-1.597946,-1,0,ORE:SA:CTP2101,Europe/Paris,2,ORE, +ORE:SP:2102,1,"Erbonière",48.106097,-1.625877,-1,0,ORE:SA:CTP2037,Europe/Paris,2,ORE, +ORE:SP:2103,1,"Rigourdière",48.113318,-1.59004,-1,0,ORE:SA:CTP2089,Europe/Paris,2,ORE, +ORE:SP:2104,1,"Haut Grippé",48.114919,-1.590425,-1,0,ORE:SA:CTP2038,Europe/Paris,2,ORE, +ORE:SP:2106,1,"Champelé",48.116039,-1.582351,-1,0,ORE:SA:CTP2085,Europe/Paris,2,ORE, +ORE:SP:2107,1,"Ménouriais",48.099651,-1.603046,-1,0,ORE:SA:CTP2107,Europe/Paris,2,ORE, +ORE:SP:2114,1,"Château de Vaux",48.137351,-1.62275,-1,0,ORE:SA:CTP2114,Europe/Paris,2,ORE, +ORE:SP:2115,1,"Château de Vaux",48.137379,-1.622408,-1,0,ORE:SA:CTP2114,Europe/Paris,2,ORE, +ORE:SP:2121,1,"Longs Champs Est",48.130368,-1.631314,-1,0,ORE:SA:CTP1617,Europe/Paris,2,ORE, +ORE:SP:2122,1,"Buisson",48.104606,-1.63076,-1,0,ORE:SA:CTP2122,Europe/Paris,2,ORE, +ORE:SP:2123,1,"Buisson",48.104575,-1.630458,-1,0,ORE:SA:CTP2122,Europe/Paris,2,ORE, +ORE:SP:2124,1,"Chêne Germain",48.131589,-1.624653,-1,0,ORE:SA:CTP2124,Europe/Paris,2,ORE, +ORE:SP:2125,1,"Chêne Germain",48.131892,-1.624417,-1,0,ORE:SA:CTP2124,Europe/Paris,2,ORE, +ORE:SP:2126,1,"Champs Blancs",48.134763,-1.621832,-1,0,ORE:SA:CTP2126,Europe/Paris,2,ORE, +ORE:SP:2127,1,"Champs Blancs",48.134856,-1.621311,-1,0,ORE:SA:CTP2126,Europe/Paris,2,ORE, +ORE:SP:2129,1,"Clos Courtel",48.127869,-1.629152,-1,0,ORE:SA:CTP2046,Europe/Paris,2,ORE, +ORE:SP:2201,1,"Morinais",48.075489,-1.716264,-1,0,ORE:SA:CTP2201,Europe/Paris,2,ORE, +ORE:SP:2202,1,"Collège Jean Moulin",48.077395,-1.715725,-1,0,ORE:SA:CTP2202,Europe/Paris,2,ORE, +ORE:SP:2203,1,"Médiathèque",48.07942,-1.71571,-1,0,ORE:SA:CTP2203,Europe/Paris,2,ORE, +ORE:SP:2204,1,"Jean Marin",48.082557,-1.715255,-1,0,ORE:SA:CTP2204,Europe/Paris,2,ORE, +ORE:SP:2205,1,"Roger Dodin",48.083243,-1.710049,-1,0,ORE:SA:CTP2205,Europe/Paris,0,ORE, +ORE:SP:2206,1,"Gaité",48.087497,-1.706946,-1,0,ORE:SA:CTP2206,Europe/Paris,2,ORE, +ORE:SP:2207,1,"Lilas",48.093689,-1.700128,-1,0,ORE:SA:CTP2207,Europe/Paris,2,ORE, +ORE:SP:2208,1,"Commeurec",48.095802,-1.694528,-1,0,ORE:SA:CTP2208,Europe/Paris,0,ORE, +ORE:SP:2209,1,"Commeurec",48.095716,-1.694313,-1,0,ORE:SA:CTP2208,Europe/Paris,0,ORE, +ORE:SP:2210,1,"Lilas",48.093657,-1.699831,-1,0,ORE:SA:CTP2207,Europe/Paris,2,ORE, +ORE:SP:2211,1,"Gaité",48.087261,-1.707384,-1,0,ORE:SA:CTP2206,Europe/Paris,2,ORE, +ORE:SP:2212,1,"Roger Dodin",48.084407,-1.709256,-1,0,ORE:SA:CTP2205,Europe/Paris,0,ORE, +ORE:SP:2213,1,"Jean Marin",48.082491,-1.715453,-1,0,ORE:SA:CTP2204,Europe/Paris,2,ORE, +ORE:SP:2214,1,"Médiathèque",48.079869,-1.715526,-1,0,ORE:SA:CTP2203,Europe/Paris,2,ORE, +ORE:SP:2215,1,"Collège Jean Moulin",48.076909,-1.715921,-1,0,ORE:SA:CTP2202,Europe/Paris,2,ORE, +ORE:SP:2216,1,"Pressoirs",48.08731,-1.69473,-1,0,ORE:SA:CTP2216,Europe/Paris,2,ORE, +ORE:SP:2217,1,"25 Fusillés",48.090645,-1.695013,-1,0,ORE:SA:CTP2217,Europe/Paris,2,ORE, +ORE:SP:2218,1,"Saint-Yves",48.092405,-1.69168,-1,0,ORE:SA:CTP1273,Europe/Paris,0,ORE, +ORE:SP:2219,1,"Pilate",48.09408,-1.690642,-1,0,ORE:SA:CTP1274,Europe/Paris,2,ORE, +ORE:SP:2220,1,"Gautrais",48.061591,-1.72464,-1,0,ORE:SA:CTP2220,Europe/Paris,2,ORE, +ORE:SP:2221,1,"Rossel",48.063117,-1.720383,-1,0,ORE:SA:CTP2221,Europe/Paris,2,ORE, +ORE:SP:2222,1,"Pommerais",48.066422,-1.720279,-1,0,ORE:SA:CTP2222,Europe/Paris,2,ORE, +ORE:SP:2223,1,"Abbé Grimault",48.067334,-1.716885,-1,0,ORE:SA:CTP2223,Europe/Paris,2,ORE, +ORE:SP:2224,1,"Morinais",48.075073,-1.71604,-1,0,ORE:SA:CTP2201,Europe/Paris,2,ORE, +ORE:SP:2225,1,"Gaité",48.086811,-1.70563,-1,0,ORE:SA:CTP2206,Europe/Paris,2,ORE, +ORE:SP:2226,1,"Rablais Allende",48.086645,-1.701446,-1,0,ORE:SA:CTP2226,Europe/Paris,2,ORE, +ORE:SP:2227,1,"Croix Verte",48.089415,-1.697855,-1,0,ORE:SA:CTP2227,Europe/Paris,2,ORE, +ORE:SP:2228,1,"Pigeon Blanc",48.089797,-1.693146,-1,0,ORE:SA:CTP1453,Europe/Paris,2,ORE, +ORE:SP:2229,1,"Croix Verte",48.089432,-1.697947,-1,0,ORE:SA:CTP2227,Europe/Paris,2,ORE, +ORE:SP:2230,1,"Rablais Allende",48.086456,-1.701833,-1,0,ORE:SA:CTP2226,Europe/Paris,2,ORE, +ORE:SP:2231,1,"Gaité",48.086974,-1.706633,-1,0,ORE:SA:CTP2206,Europe/Paris,2,ORE, +ORE:SP:2233,1,"Abbé Grimault",48.067424,-1.717305,-1,0,ORE:SA:CTP2223,Europe/Paris,2,ORE, +ORE:SP:2234,1,"Pommerais",48.066447,-1.720123,-1,0,ORE:SA:CTP2222,Europe/Paris,2,ORE, +ORE:SP:2235,1,"Rossel",48.062757,-1.720815,-1,0,ORE:SA:CTP2221,Europe/Paris,2,ORE, +ORE:SP:2236,1,"Parc Expo",48.059996,-1.734101,-1,0,ORE:SA:CTP2236,Europe/Paris,2,ORE, +ORE:SP:2237,1,"Aire Libre Aéroport",48.067372,-1.721674,-1,0,ORE:SA:CTP2237,Europe/Paris,2,ORE, +ORE:SP:2238,1,"Centre Météo",48.065007,-1.724483,-1,0,ORE:SA:CTP2238,Europe/Paris,2,ORE, +ORE:SP:2239,1,"Haut Bois",48.077838,-1.712445,-1,0,ORE:SA:CTP2239,Europe/Paris,0,ORE, +ORE:SP:2240,1,"St-Jacques Mairie",48.080594,-1.712287,-1,0,ORE:SA:CTP2240,Europe/Paris,0,ORE, +ORE:SP:2241,1,"St-Jacques Mairie",48.08053,-1.71259,-1,0,ORE:SA:CTP2240,Europe/Paris,0,ORE, +ORE:SP:2242,1,"Centre Météo",48.065059,-1.724639,-1,0,ORE:SA:CTP2238,Europe/Paris,2,ORE, +ORE:SP:2243,1,"Aire Libre Aéroport",48.066958,-1.722384,-1,0,ORE:SA:CTP2237,Europe/Paris,2,ORE, +ORE:SP:2244,1,"Parc Expo",48.059907,-1.73445,-1,0,ORE:SA:CTP2236,Europe/Paris,2,ORE, +ORE:SP:2245,1,"Haut Bois",48.077633,-1.712716,-1,0,ORE:SA:CTP2239,Europe/Paris,0,ORE, +ORE:SP:2248,1,"Bellevue",48.079346,-1.733128,-1,0,ORE:SA:CTP2248,Europe/Paris,0,ORE, +ORE:SP:2249,1,"Le Pâtis",48.085087,-1.727469,-1,0,ORE:SA:CTP2249,Europe/Paris,2,ORE, +ORE:SP:2250,1,"Reuzerais",48.086736,-1.721996,-1,0,ORE:SA:CTP2250,Europe/Paris,0,ORE, +ORE:SP:2251,1,"Maffeys",48.086662,-1.713071,-1,0,ORE:SA:CTP2251,Europe/Paris,0,ORE, +ORE:SP:2252,1,"Maffeys",48.086561,-1.712426,-1,0,ORE:SA:CTP2251,Europe/Paris,0,ORE, +ORE:SP:2253,1,"Reuzerais",48.086647,-1.722185,-1,0,ORE:SA:CTP2250,Europe/Paris,0,ORE, +ORE:SP:2254,1,"Le Pâtis",48.085145,-1.727706,-1,0,ORE:SA:CTP2249,Europe/Paris,2,ORE, +ORE:SP:2255,1,"Bellevue",48.078768,-1.732528,-1,0,ORE:SA:CTP2248,Europe/Paris,0,ORE, +ORE:SP:2257,1,"Pressoirs",48.087049,-1.694605,-1,0,ORE:SA:CTP2216,Europe/Paris,2,ORE, +ORE:SP:2258,1,"Dominos",48.093537,-1.704339,-1,0,ORE:SA:CTP2258,Europe/Paris,2,ORE, +ORE:SP:2260,1,"Dominos",48.093433,-1.70457,-1,0,ORE:SA:CTP2258,Europe/Paris,2,ORE, +ORE:SP:2262,1,"Vallon",48.068729,-1.697896,-1,0,ORE:SA:CTP2262,Europe/Paris,0,ORE, +ORE:SP:2263,1,"Jean Jaurès",48.082518,-1.712313,-1,0,ORE:SA:CTP2263,Europe/Paris,2,ORE, +ORE:SP:2264,1,"Jean Jaurès",48.082821,-1.713051,-1,0,ORE:SA:CTP2263,Europe/Paris,2,ORE, +ORE:SP:2266,1,"Parc Expo",48.056515,-1.732068,-1,0,ORE:SA:CTP2266,Europe/Paris,0,ORE, +ORE:SP:2267,1,"Auriol",48.075278,-1.729484,-1,0,ORE:SA:CTP2267,Europe/Paris,0,ORE, +ORE:SP:2268,1,"Auriol",48.07518,-1.729388,-1,0,ORE:SA:CTP2267,Europe/Paris,0,ORE, +ORE:SP:2271,1,"25 Fusillés",48.090501,-1.69494,-1,0,ORE:SA:CTP2217,Europe/Paris,2,ORE, +ORE:SP:2272,1,"Mivoie",48.070178,-1.70307,-1,0,ORE:SA:CTP2272,Europe/Paris,2,ORE, +ORE:SP:2273,1,"Jean Pont",48.092241,-1.697691,-1,0,ORE:SA:CTP2273,Europe/Paris,0,ORE, +ORE:SP:2274,1,"Jean Pont",48.092069,-1.698122,-1,0,ORE:SA:CTP2273,Europe/Paris,0,ORE, +ORE:SP:2303,1,"Haut Launay",48.02471,-1.757238,-1,0,ORE:SA:CTP2303,Europe/Paris,2,ORE, +ORE:SP:2304,1,"Rabine",48.025619,-1.760676,-1,0,ORE:SA:CTP2304,Europe/Paris,2,ORE, +ORE:SP:2305,1,"Vert Buisson",48.029342,-1.758019,-1,0,ORE:SA:CTP2305,Europe/Paris,2,ORE, +ORE:SP:2306,1,"Cicé Blossac",48.033686,-1.765896,-1,0,ORE:SA:CTP2306,Europe/Paris,2,ORE, +ORE:SP:2307,1,"Gavrinis",48.031275,-1.759442,-1,0,ORE:SA:CTP2307,Europe/Paris,2,ORE, +ORE:SP:2308,1,"Croix Madame",48.041413,-1.754424,-1,0,ORE:SA:CTP2308,Europe/Paris,2,ORE, +ORE:SP:2309,1,"Schuman",48.044622,-1.746502,-1,0,ORE:SA:CTP2309,Europe/Paris,2,ORE, +ORE:SP:2311,1,"Coeur de Campus",48.047249,-1.741955,-1,0,ORE:SA:CTP2311,Europe/Paris,2,ORE, +ORE:SP:2312,1,"Etangs",48.049424,-1.740454,-1,0,ORE:SA:CTP2312,Europe/Paris,2,ORE, +ORE:SP:2313,1,"Lande du Pont",48.052679,-1.73829,-1,0,ORE:SA:CTP2313,Europe/Paris,0,ORE, +ORE:SP:2314,1,"Porte de Ker-Lann",48.054937,-1.739708,-1,0,ORE:SA:CTP2314,Europe/Paris,2,ORE, +ORE:SP:2315,1,"Lande du Pont",48.052844,-1.73842,-1,0,ORE:SA:CTP2313,Europe/Paris,0,ORE, +ORE:SP:2316,1,"Etangs",48.049376,-1.740727,-1,0,ORE:SA:CTP2312,Europe/Paris,2,ORE, +ORE:SP:2317,1,"Coeur de Campus",48.047427,-1.742103,-1,0,ORE:SA:CTP2311,Europe/Paris,2,ORE, +ORE:SP:2319,1,"Schuman",48.044534,-1.746319,-1,0,ORE:SA:CTP2309,Europe/Paris,2,ORE, +ORE:SP:2320,1,"Croix Madame",48.039734,-1.755591,-1,0,ORE:SA:CTP2308,Europe/Paris,2,ORE, +ORE:SP:2321,1,"Gavrinis",48.0312,-1.759598,-1,0,ORE:SA:CTP2307,Europe/Paris,2,ORE, +ORE:SP:2322,1,"Vert Buisson",48.029465,-1.757995,-1,0,ORE:SA:CTP2305,Europe/Paris,2,ORE, +ORE:SP:2323,1,"Rabine",48.02575,-1.76091,-1,0,ORE:SA:CTP2304,Europe/Paris,2,ORE, +ORE:SP:2324,1,"Haut Launay",48.024584,-1.757229,-1,0,ORE:SA:CTP2303,Europe/Paris,2,ORE, +ORE:SP:2326,1,"Doublé",48.034154,-1.723867,-1,0,ORE:SA:CTP2326,Europe/Paris,0,ORE, +ORE:SP:2327,1,"Pont-Réan",48.005026,-1.77502,-1,0,ORE:SA:CTP2327,Europe/Paris,0,ORE, +ORE:SP:2328,1,"Doublé",48.034888,-1.724811,-1,0,ORE:SA:CTP2326,Europe/Paris,2,ORE, +ORE:SP:2329,1,"Croix Vaisserelle",48.008586,-1.773845,-1,0,ORE:SA:CTP2329,Europe/Paris,0,ORE, +ORE:SP:2330,1,"Rabine",48.024043,-1.761602,-1,0,ORE:SA:CTP2304,Europe/Paris,2,ORE, +ORE:SP:2331,1,"Noë",48.021416,-1.752313,-1,0,ORE:SA:CTP2331,Europe/Paris,2,ORE, +ORE:SP:2332,1,"Epalet",48.019493,-1.744988,-1,0,ORE:SA:CTP2332,Europe/Paris,2,ORE, +ORE:SP:2334,1,"Pasteur",48.023814,-1.736056,-1,0,ORE:SA:CTP2334,Europe/Paris,2,ORE, +ORE:SP:2335,1,"Bobinais",48.02629,-1.734494,-1,0,ORE:SA:CTP2335,Europe/Paris,2,ORE, +ORE:SP:2336,1,"Champ Niguel",48.030226,-1.734384,-1,0,ORE:SA:CTP2336,Europe/Paris,2,ORE, +ORE:SP:2337,1,"Lavoisier",48.032956,-1.733031,-1,0,ORE:SA:CTP2337,Europe/Paris,2,ORE, +ORE:SP:2338,1,"Lavoisier",48.033269,-1.733105,-1,0,ORE:SA:CTP2337,Europe/Paris,2,ORE, +ORE:SP:2339,1,"Champ Niguel",48.028337,-1.73564,-1,0,ORE:SA:CTP2336,Europe/Paris,2,ORE, +ORE:SP:2340,1,"Bobinais",48.025982,-1.734563,-1,0,ORE:SA:CTP2335,Europe/Paris,2,ORE, +ORE:SP:2341,1,"Pasteur",48.023636,-1.736267,-1,0,ORE:SA:CTP2334,Europe/Paris,2,ORE, +ORE:SP:2343,1,"Epalet",48.019598,-1.744633,-1,0,ORE:SA:CTP2332,Europe/Paris,2,ORE, +ORE:SP:2344,1,"Noë",48.021674,-1.752317,-1,0,ORE:SA:CTP2331,Europe/Paris,2,ORE, +ORE:SP:2345,1,"Rabine",48.023807,-1.761964,-1,0,ORE:SA:CTP2304,Europe/Paris,2,ORE, +ORE:SP:2346,1,"Croix Vaisserelle",48.009141,-1.773283,-1,0,ORE:SA:CTP2329,Europe/Paris,0,ORE, +ORE:SP:2347,1,"Pont-Réan",48.004724,-1.775265,-1,0,ORE:SA:CTP2327,Europe/Paris,0,ORE, +ORE:SP:2348,1,"Bruz Centre",48.023484,-1.743371,-1,0,ORE:SA:CTP2348,Europe/Paris,2,ORE, +ORE:SP:2350,1,"Mare de la Salle",48.029314,-1.719086,-1,0,ORE:SA:CTP2350,Europe/Paris,0,ORE, +ORE:SP:2351,1,"Mare de la Salle",48.029242,-1.719642,-1,0,ORE:SA:CTP2350,Europe/Paris,0,ORE, +ORE:SP:2353,1,"Bruz Centre",48.023379,-1.742999,-1,0,ORE:SA:CTP2348,Europe/Paris,2,ORE, +ORE:SP:2359,1,"Doublé",48.035782,-1.723214,-1,0,ORE:SA:CTP2326,Europe/Paris,2,ORE, +ORE:SP:2365,1,"Brossolette",48.020489,-1.743438,-1,0,ORE:SA:CTP2365,Europe/Paris,0,ORE, +ORE:SP:2366,1,"Aire du 8 Mai",48.026878,-1.745504,-1,0,ORE:SA:CTP2366,Europe/Paris,0,ORE, +ORE:SP:2367,1,"Anita Conti",48.033353,-1.733602,-1,0,ORE:SA:CTP2367,Europe/Paris,0,ORE, +ORE:SP:2372,1,"Bruz Gare",48.029045,-1.752705,-1,0,ORE:SA:CTP2372,Europe/Paris,2,ORE, +ORE:SP:2374,1,"Châteliers",48.024146,-1.752978,-1,0,ORE:SA:CTP2374,Europe/Paris,2,ORE, +ORE:SP:2375,1,"Châteliers",48.024186,-1.75284,-1,0,ORE:SA:CTP2374,Europe/Paris,2,ORE, +ORE:SP:2376,1,"Corbières",48.035213,-1.757358,-1,0,ORE:SA:CTP2376,Europe/Paris,2,ORE, +ORE:SP:2377,1,"Corbières",48.03503,-1.757375,-1,0,ORE:SA:CTP2376,Europe/Paris,2,ORE, +ORE:SP:2401,1,"Champ Devant",48.177029,-1.651134,-1,0,ORE:SA:CTP2401,Europe/Paris,2,ORE, +ORE:SP:2402,1,"Omblais",48.179301,-1.651047,-1,0,ORE:SA:CTP2402,Europe/Paris,2,ORE, +ORE:SP:2403,1,"Brocéliande",48.180722,-1.651937,-1,0,ORE:SA:CTP2403,Europe/Paris,0,ORE, +ORE:SP:2404,1,"Trégor",48.183007,-1.646075,-1,0,ORE:SA:CTP2404,Europe/Paris,0,ORE, +ORE:SP:2405,1,"Betton Mairie",48.181894,-1.641783,-1,0,ORE:SA:CTP2405,Europe/Paris,2,ORE, +ORE:SP:2406,1,"Betton Centre",48.181123,-1.637898,-1,0,ORE:SA:CTP2406,Europe/Paris,2,ORE, +ORE:SP:2407,1,"Haye Renaud Gare",48.18021,-1.634936,-1,0,ORE:SA:CTP2407,Europe/Paris,2,ORE, +ORE:SP:2408,1,"Marronniers",48.176154,-1.637359,-1,0,ORE:SA:CTP2408,Europe/Paris,2,ORE, +ORE:SP:2409,1,"Housset",48.172332,-1.637445,-1,0,ORE:SA:CTP2409,Europe/Paris,2,ORE, +ORE:SP:2410,1,"Enseigne Abbaye",48.17135,-1.642053,-1,0,ORE:SA:CTP2410,Europe/Paris,2,ORE, +ORE:SP:2411,1,"Betton Vallée",48.161724,-1.647868,-1,0,ORE:SA:CTP2411,Europe/Paris,2,ORE, +ORE:SP:2412,1,"Betton Vallée",48.162059,-1.647356,-1,0,ORE:SA:CTP2411,Europe/Paris,2,ORE, +ORE:SP:2413,1,"Enseigne Abbaye",48.171155,-1.641673,-1,0,ORE:SA:CTP2410,Europe/Paris,2,ORE, +ORE:SP:2414,1,"Housset",48.172685,-1.637284,-1,0,ORE:SA:CTP2409,Europe/Paris,2,ORE, +ORE:SP:2415,1,"Marronniers",48.176867,-1.637055,-1,0,ORE:SA:CTP2408,Europe/Paris,2,ORE, +ORE:SP:2416,1,"Haye Renaud Gare",48.180198,-1.634708,-1,0,ORE:SA:CTP2407,Europe/Paris,2,ORE, +ORE:SP:2417,1,"Betton Centre",48.181747,-1.638457,-1,0,ORE:SA:CTP2406,Europe/Paris,2,ORE, +ORE:SP:2418,1,"Betton Mairie",48.181986,-1.641399,-1,0,ORE:SA:CTP2405,Europe/Paris,2,ORE, +ORE:SP:2419,1,"Trégor",48.183195,-1.646546,-1,0,ORE:SA:CTP2404,Europe/Paris,0,ORE, +ORE:SP:2420,1,"Brocéliande",48.180579,-1.652229,-1,0,ORE:SA:CTP2403,Europe/Paris,0,ORE, +ORE:SP:2421,1,"Omblais",48.179175,-1.65123,-1,0,ORE:SA:CTP2402,Europe/Paris,2,ORE, +ORE:SP:2422,1,"Petite Hublais",48.182171,-1.616139,-1,0,ORE:SA:CTP2422,Europe/Paris,2,ORE, +ORE:SP:2423,1,"Cour Neuve",48.175419,-1.622928,-1,0,ORE:SA:CTP2423,Europe/Paris,0,ORE, +ORE:SP:2424,1,"Champ Giron",48.170897,-1.622292,-1,0,ORE:SA:CTP2424,Europe/Paris,0,ORE, +ORE:SP:2425,1,"Tihouït",48.163742,-1.625164,-1,0,ORE:SA:CTP2425,Europe/Paris,0,ORE, +ORE:SP:2426,1,"Tihouït",48.164087,-1.624866,-1,0,ORE:SA:CTP2425,Europe/Paris,0,ORE, +ORE:SP:2427,1,"Champ Giron",48.17048,-1.621949,-1,0,ORE:SA:CTP2424,Europe/Paris,0,ORE, +ORE:SP:2428,1,"Cour Neuve",48.175562,-1.622799,-1,0,ORE:SA:CTP2423,Europe/Paris,0,ORE, +ORE:SP:2429,1,"Petite Hublais",48.182036,-1.616164,-1,0,ORE:SA:CTP2422,Europe/Paris,2,ORE, +ORE:SP:2430,1,"Betton Rue de Rennes",48.175999,-1.639619,-1,0,ORE:SA:CTP2430,Europe/Paris,0,ORE, +ORE:SP:2431,1,"Mozart",48.182984,-1.637374,-1,0,ORE:SA:CTP2431,Europe/Paris,2,ORE, +ORE:SP:2432,1,"J. Sébastien Bach",48.186271,-1.633356,-1,0,ORE:SA:CTP2432,Europe/Paris,2,ORE, +ORE:SP:2434,1,"J. Sébastien Bach",48.186441,-1.633092,-1,0,ORE:SA:CTP2432,Europe/Paris,2,ORE, +ORE:SP:2435,1,"Mozart",48.18312,-1.637107,-1,0,ORE:SA:CTP2431,Europe/Paris,2,ORE, +ORE:SP:2436,1,"Betton Rue de Rennes",48.175974,-1.63946,-1,0,ORE:SA:CTP2430,Europe/Paris,0,ORE, +ORE:SP:2437,1,"Betton Centre",48.18162,-1.639271,-1,0,ORE:SA:CTP2406,Europe/Paris,2,ORE, +ORE:SP:2438,1,"Mézières",48.18499,-1.65024,-1,0,ORE:SA:CTP2438,Europe/Paris,0,ORE, +ORE:SP:2441,1,"Mézières",48.184947,-1.649817,-1,0,ORE:SA:CTP2438,Europe/Paris,0,ORE, +ORE:SP:2448,1,"Trégor",48.183888,-1.646449,-1,0,ORE:SA:CTP2404,Europe/Paris,2,ORE, +ORE:SP:2449,1,"Trégor",48.183594,-1.646306,-1,0,ORE:SA:CTP2404,Europe/Paris,2,ORE, +ORE:SP:2451,1,"Gentilhommière",48.19085,-1.629331,-1,0,ORE:SA:CTP2451,Europe/Paris,2,ORE, +ORE:SP:2452,1,"Chaperonnais",48.175446,-1.662388,-1,0,ORE:SA:CTP2452,Europe/Paris,2,ORE, +ORE:SP:2453,1,"Chaperonnais",48.175463,-1.662268,-1,0,ORE:SA:CTP2452,Europe/Paris,2,ORE, +ORE:SP:2454,1,"Renaudais",48.183218,-1.654765,-1,0,ORE:SA:CTP2454,Europe/Paris,2,ORE, +ORE:SP:2455,1,"Renaudais",48.183249,-1.654594,-1,0,ORE:SA:CTP2454,Europe/Paris,2,ORE, +ORE:SP:2456,1,"Pont Brand",48.178784,-1.660945,-1,0,ORE:SA:CTP2456,Europe/Paris,2,ORE, +ORE:SP:2457,1,"Pont Brand",48.17899,-1.660557,-1,0,ORE:SA:CTP2456,Europe/Paris,2,ORE, +ORE:SP:2458,1,"Gentilhommière",48.190991,-1.628981,-1,0,ORE:SA:CTP2451,Europe/Paris,2,ORE, +ORE:SP:2501,1,"Noë Diolé",48.102436,-1.832289,-1,0,ORE:SA:CTP2501,Europe/Paris,0,ORE, +ORE:SP:2502,1,"Lycée Monod",48.100526,-1.806596,-1,0,ORE:SA:CTP2502,Europe/Paris,2,ORE, +ORE:SP:2503,1,"Champs Freslons",48.098908,-1.801395,-1,0,ORE:SA:CTP2503,Europe/Paris,2,ORE, +ORE:SP:2504,1,"L'Autre Lieu",48.098973,-1.796821,-1,0,ORE:SA:CTP2504,Europe/Paris,2,ORE, +ORE:SP:2505,1,"Bouleaux",48.101535,-1.794453,-1,0,ORE:SA:CTP2505,Europe/Paris,2,ORE, +ORE:SP:2506,1,"Genêts",48.099251,-1.791133,-1,0,ORE:SA:CTP2506,Europe/Paris,2,ORE, +ORE:SP:2507,1,"Barberais",48.097502,-1.781275,-1,0,ORE:SA:CTP2507,Europe/Paris,0,ORE, +ORE:SP:2508,1,"Les Pins",48.096835,-1.77559,-1,0,ORE:SA:CTP2508,Europe/Paris,2,ORE, +ORE:SP:2509,1,"Pont d'Avoine",48.096139,-1.764573,-1,0,ORE:SA:CTP2509,Europe/Paris,2,ORE, +ORE:SP:2510,1,"Plessix Saucourt",48.10389,-1.75034,-1,0,ORE:SA:CTP2510,Europe/Paris,0,ORE, +ORE:SP:2511,1,"Plessix Saucourt",48.103559,-1.751287,-1,0,ORE:SA:CTP2510,Europe/Paris,0,ORE, +ORE:SP:2512,1,"Pont d'Avoine",48.096246,-1.764714,-1,0,ORE:SA:CTP2509,Europe/Paris,2,ORE, +ORE:SP:2513,1,"Les Pins",48.097012,-1.776051,-1,0,ORE:SA:CTP2508,Europe/Paris,2,ORE, +ORE:SP:2514,1,"Barberais",48.09768,-1.781563,-1,0,ORE:SA:CTP2507,Europe/Paris,0,ORE, +ORE:SP:2515,1,"Genêts",48.099309,-1.790762,-1,0,ORE:SA:CTP2506,Europe/Paris,2,ORE, +ORE:SP:2516,1,"Bouleaux",48.101845,-1.79502,-1,0,ORE:SA:CTP2505,Europe/Paris,2,ORE, +ORE:SP:2517,1,"L'Autre Lieu",48.099367,-1.796733,-1,0,ORE:SA:CTP2504,Europe/Paris,2,ORE, +ORE:SP:2518,1,"Champs Freslons",48.099326,-1.802088,-1,0,ORE:SA:CTP2503,Europe/Paris,2,ORE, +ORE:SP:2519,1,"Lycée Monod",48.100897,-1.806904,-1,0,ORE:SA:CTP2502,Europe/Paris,2,ORE, +ORE:SP:2520,1,"Noë Diolé",48.102463,-1.831087,-1,0,ORE:SA:CTP2501,Europe/Paris,0,ORE, +ORE:SP:2521,1,"Gerhoui",48.090998,-1.786814,-1,0,ORE:SA:CTP2521,Europe/Paris,2,ORE, +ORE:SP:2522,1,"Mahomat",48.093981,-1.773941,-1,0,ORE:SA:CTP2522,Europe/Paris,2,ORE, +ORE:SP:2523,1,"Mahomat",48.0941,-1.774098,-1,0,ORE:SA:CTP2522,Europe/Paris,2,ORE, +ORE:SP:2524,1,"Gerhoui",48.091379,-1.78572,-1,0,ORE:SA:CTP2521,Europe/Paris,2,ORE, +ORE:SP:2525,1,"Haut Plessis",48.078547,-1.771361,-1,0,ORE:SA:CTP2525,Europe/Paris,0,ORE, +ORE:SP:2526,1,"Moigné",48.080424,-1.774424,-1,0,ORE:SA:CTP2526,Europe/Paris,2,ORE, +ORE:SP:2529,1,"Moigné",48.08028,-1.774466,-1,0,ORE:SA:CTP2526,Europe/Paris,2,ORE, +ORE:SP:2530,1,"Haut Plessis",48.078763,-1.772125,-1,0,ORE:SA:CTP2525,Europe/Paris,0,ORE, +ORE:SP:2534,1,"Collège Brassens",48.098948,-1.800305,-1,0,ORE:SA:CTP2534,Europe/Paris,0,ORE, +ORE:SP:2537,1,"Gaston Bardet",48.102407,-1.787351,-1,0,ORE:SA:CTP2537,Europe/Paris,2,ORE, +ORE:SP:2538,1,"Gaston Bardet",48.102271,-1.787379,-1,0,ORE:SA:CTP2537,Europe/Paris,2,ORE, +ORE:SP:2539,1,"Acquêts",48.096488,-1.79816,-1,0,ORE:SA:CTP2539,Europe/Paris,2,ORE, +ORE:SP:2540,1,"Acquêts",48.09683,-1.79811,-1,0,ORE:SA:CTP2539,Europe/Paris,2,ORE, +ORE:SP:2541,1,"Egalité",48.094422,-1.795931,-1,0,ORE:SA:CTP2541,Europe/Paris,2,ORE, +ORE:SP:2542,1,"Egalité",48.094447,-1.795727,-1,0,ORE:SA:CTP2541,Europe/Paris,2,ORE, +ORE:SP:2601,1,"Croix Malinge",48.038508,-1.602504,-1,0,ORE:SA:CTP2601,Europe/Paris,2,ORE, +ORE:SP:2602,1,"Bel Air",48.043401,-1.601647,-1,0,ORE:SA:CTP2602,Europe/Paris,2,ORE, +ORE:SP:2603,1,"La Poste",48.044735,-1.603959,-1,0,ORE:SA:CTP2603,Europe/Paris,2,ORE, +ORE:SP:2604,1,"Croix Rouge",48.049558,-1.606153,-1,0,ORE:SA:CTP2604,Europe/Paris,0,ORE, +ORE:SP:2605,1,"Fosse Gauchère",48.049414,-1.609809,-1,0,ORE:SA:CTP2605,Europe/Paris,2,ORE, +ORE:SP:2606,1,"Solidor",48.050629,-1.614982,-1,0,ORE:SA:CTP2606,Europe/Paris,2,ORE, +ORE:SP:2607,1,"Haute Abbaye",48.052615,-1.613836,-1,0,ORE:SA:CTP2607,Europe/Paris,2,ORE, +ORE:SP:2608,1,"Bretonnière",48.05838,-1.616486,-1,0,ORE:SA:CTP2608,Europe/Paris,2,ORE, +ORE:SP:2609,1,"Val d'Orson",48.064138,-1.623074,-1,0,ORE:SA:CTP2609,Europe/Paris,2,ORE, +ORE:SP:2610,1,"Garenne",48.067768,-1.625701,-1,0,ORE:SA:CTP2610,Europe/Paris,2,ORE, +ORE:SP:2611,1,"Hallerais",48.072416,-1.628709,-1,0,ORE:SA:CTP2611,Europe/Paris,2,ORE, +ORE:SP:2612,1,"Hallerais",48.072287,-1.628754,-1,0,ORE:SA:CTP2611,Europe/Paris,2,ORE, +ORE:SP:2613,1,"Garenne",48.067551,-1.625667,-1,0,ORE:SA:CTP2610,Europe/Paris,2,ORE, +ORE:SP:2614,1,"Val d'Orson",48.06396,-1.622917,-1,0,ORE:SA:CTP2609,Europe/Paris,2,ORE, +ORE:SP:2615,1,"Bretonnière",48.058944,-1.616683,-1,0,ORE:SA:CTP2608,Europe/Paris,2,ORE, +ORE:SP:2616,1,"Haute Abbaye",48.052587,-1.614072,-1,0,ORE:SA:CTP2607,Europe/Paris,2,ORE, +ORE:SP:2617,1,"Fosse Gauchère",48.049484,-1.611106,-1,0,ORE:SA:CTP2605,Europe/Paris,2,ORE, +ORE:SP:2618,1,"Croix Rouge",48.049113,-1.606026,-1,0,ORE:SA:CTP2604,Europe/Paris,0,ORE, +ORE:SP:2619,1,"La Poste",48.044566,-1.603907,-1,0,ORE:SA:CTP2603,Europe/Paris,2,ORE, +ORE:SP:2620,1,"Bel Air",48.043558,-1.601784,-1,0,ORE:SA:CTP2602,Europe/Paris,2,ORE, +ORE:SP:2621,1,"Vern La Touche",48.040905,-1.602366,-1,0,ORE:SA:CTP2621,Europe/Paris,0,ORE, +ORE:SP:2622,1,"Champ Martin",48.059886,-1.613109,-1,0,ORE:SA:CTP2622,Europe/Paris,0,ORE, +ORE:SP:2627,1,"Vaugon",48.031482,-1.599454,-1,0,ORE:SA:CTP2627,Europe/Paris,0,ORE, +ORE:SP:2628,1,"Vaugon",48.031253,-1.599505,-1,0,ORE:SA:CTP2627,Europe/Paris,0,ORE, +ORE:SP:2629,1,"Vern Eglise",48.047187,-1.602518,-1,0,ORE:SA:CTP2629,Europe/Paris,2,ORE, +ORE:SP:2630,1,"Maillardière",48.045052,-1.598931,-1,0,ORE:SA:CTP2630,Europe/Paris,2,ORE, +ORE:SP:2631,1,"Moulin",48.047527,-1.598567,-1,0,ORE:SA:CTP2631,Europe/Paris,0,ORE, +ORE:SP:2632,1,"Moulin",48.048065,-1.598577,-1,0,ORE:SA:CTP2631,Europe/Paris,0,ORE, +ORE:SP:2633,1,"Maillardière",48.045114,-1.59861,-1,0,ORE:SA:CTP2630,Europe/Paris,2,ORE, +ORE:SP:2634,1,"Vern Eglise",48.047102,-1.602707,-1,0,ORE:SA:CTP2629,Europe/Paris,2,ORE, +ORE:SP:2635,1,"Croix Malinge",48.038499,-1.602145,-1,0,ORE:SA:CTP2601,Europe/Paris,2,ORE, +ORE:SP:2637,1,"Solidor",48.049663,-1.61536,-1,0,ORE:SA:CTP2606,Europe/Paris,2,ORE, +ORE:SP:2640,1,"Croix Malinge",48.038405,-1.60232,-1,0,ORE:SA:CTP2601,Europe/Paris,2,ORE, +ORE:SP:2641,1,"Champ Martin",48.059068,-1.613012,-1,0,ORE:SA:CTP2622,Europe/Paris,0,ORE, +ORE:SP:2701,1,"Janais",48.059075,-1.700988,-1,0,ORE:SA:CTP2701,Europe/Paris,0,ORE, +ORE:SP:2702,1,"Vallon",48.06843,-1.697574,-1,0,ORE:SA:CTP2262,Europe/Paris,0,ORE, +ORE:SP:2704,1,"Janais",48.059279,-1.7013,-1,0,ORE:SA:CTP2701,Europe/Paris,0,ORE, +ORE:SP:2705,1,"Bray",48.02908,-1.659799,-1,0,ORE:SA:CTP2705,Europe/Paris,0,ORE, +ORE:SP:2706,1,"Molène",48.038455,-1.670722,-1,0,ORE:SA:CTP2706,Europe/Paris,0,ORE, +ORE:SP:2707,1,"Potiers",48.040768,-1.671907,-1,0,ORE:SA:CTP2707,Europe/Paris,2,ORE, +ORE:SP:2708,1,"Centre",48.042386,-1.665537,-1,0,ORE:SA:CTP2708,Europe/Paris,2,ORE, +ORE:SP:2709,1,"Louis Texier",48.044053,-1.661183,-1,0,ORE:SA:CTP2709,Europe/Paris,2,ORE, +ORE:SP:2710,1,"Petite Saudrais",48.047169,-1.661203,-1,0,ORE:SA:CTP2710,Europe/Paris,2,ORE, +ORE:SP:2711,1,"Croix Fleurie",48.056658,-1.663721,-1,0,ORE:SA:CTP2711,Europe/Paris,0,ORE, +ORE:SP:2712,1,"Mail Lancé",48.06368,-1.66369,-1,0,ORE:SA:CTP2712,Europe/Paris,0,ORE, +ORE:SP:2713,1,"Petit Beaulieu",48.068453,-1.665713,-1,0,ORE:SA:CTP2713,Europe/Paris,0,ORE, +ORE:SP:2714,1,"Hil-Bintinais",48.077187,-1.661021,-1,0,ORE:SA:CTP2714,Europe/Paris,2,ORE, +ORE:SP:2715,1,"Hil-Bintinais",48.078644,-1.661365,-1,0,ORE:SA:CTP2714,Europe/Paris,2,ORE, +ORE:SP:2716,1,"Petit Beaulieu",48.068609,-1.66607,-1,0,ORE:SA:CTP2713,Europe/Paris,0,ORE, +ORE:SP:2717,1,"Mail Lancé",48.063637,-1.663952,-1,0,ORE:SA:CTP2712,Europe/Paris,0,ORE, +ORE:SP:2718,1,"Croix Fleurie",48.055987,-1.664262,-1,0,ORE:SA:CTP2711,Europe/Paris,0,ORE, +ORE:SP:2719,1,"Petite Saudrais",48.047008,-1.661005,-1,0,ORE:SA:CTP2710,Europe/Paris,2,ORE, +ORE:SP:2720,1,"Louis Texier",48.044129,-1.661407,-1,0,ORE:SA:CTP2709,Europe/Paris,2,ORE, +ORE:SP:2721,1,"Centre",48.042439,-1.66572,-1,0,ORE:SA:CTP2708,Europe/Paris,2,ORE, +ORE:SP:2722,1,"Potiers",48.040814,-1.672158,-1,0,ORE:SA:CTP2707,Europe/Paris,2,ORE, +ORE:SP:2723,1,"Molène",48.038355,-1.670616,-1,0,ORE:SA:CTP2706,Europe/Paris,0,ORE, +ORE:SP:2724,1,"Bray",48.028619,-1.659907,-1,0,ORE:SA:CTP2705,Europe/Paris,0,ORE, +ORE:SP:2725,1,"Guyomerais",48.03955,-1.676476,-1,0,ORE:SA:CTP2725,Europe/Paris,2,ORE, +ORE:SP:2726,1,"Guyomerais",48.039685,-1.676723,-1,0,ORE:SA:CTP2725,Europe/Paris,2,ORE, +ORE:SP:2727,1,"Pont",48.038446,-1.666525,-1,0,ORE:SA:CTP2727,Europe/Paris,2,ORE, +ORE:SP:2728,1,"Centre",48.042695,-1.666039,-1,0,ORE:SA:CTP2708,Europe/Paris,2,ORE, +ORE:SP:2729,1,"Croix de Pierre",48.046972,-1.664678,-1,0,ORE:SA:CTP2729,Europe/Paris,2,ORE, +ORE:SP:2730,1,"Croix de Pierre",48.046239,-1.664794,-1,0,ORE:SA:CTP2729,Europe/Paris,2,ORE, +ORE:SP:2731,1,"Centre",48.04297,-1.666046,-1,0,ORE:SA:CTP2708,Europe/Paris,2,ORE, +ORE:SP:2732,1,"Pont",48.038628,-1.66691,-1,0,ORE:SA:CTP2727,Europe/Paris,2,ORE, +ORE:SP:2733,1,"Côteaux",48.034197,-1.663402,-1,0,ORE:SA:CTP2733,Europe/Paris,2,ORE, +ORE:SP:2734,1,"Côteaux",48.034436,-1.663421,-1,0,ORE:SA:CTP2733,Europe/Paris,2,ORE, +ORE:SP:2749,1,"Touche Tizon",48.055865,-1.701124,-1,0,ORE:SA:CTP2749,Europe/Paris,0,ORE, +ORE:SP:2750,1,"Monts Gaultier",48.039253,-1.680543,-1,0,ORE:SA:CTP2750,Europe/Paris,2,ORE, +ORE:SP:2751,1,"Monts Gaultier",48.03936,-1.679953,-1,0,ORE:SA:CTP2750,Europe/Paris,2,ORE, +ORE:SP:2801,1,"Grand Quartier",48.135818,-1.693158,-1,0,ORE:SA:CTP1492,Europe/Paris,2,ORE, +ORE:SP:2803,1,"La Plesse",48.137419,-1.68861,-1,0,ORE:SA:CTP2803,Europe/Paris,0,ORE, +ORE:SP:2804,1,"Ricoquais",48.159112,-1.676618,-1,0,ORE:SA:CTP2804,Europe/Paris,2,ORE, +ORE:SP:2805,1,"Camus",48.159128,-1.681343,-1,0,ORE:SA:CTP2805,Europe/Paris,2,ORE, +ORE:SP:2806,1,"Vivier Louis",48.159027,-1.685578,-1,0,ORE:SA:CTP2806,Europe/Paris,2,ORE, +ORE:SP:2807,1,"Pontay",48.159802,-1.692137,-1,0,ORE:SA:CTP2807,Europe/Paris,2,ORE, +ORE:SP:2808,1,"Uttenreuth",48.156845,-1.687389,-1,0,ORE:SA:CTP2808,Europe/Paris,2,ORE, +ORE:SP:2809,1,"Discalceat",48.154339,-1.686723,-1,0,ORE:SA:CTP2809,Europe/Paris,2,ORE, +ORE:SP:2810,1,"Paul-Emile Victor",48.153808,-1.691979,-1,0,ORE:SA:CTP2810,Europe/Paris,2,ORE, +ORE:SP:2811,1,"Cité des Jardins",48.151378,-1.691295,-1,0,ORE:SA:CTP2811,Europe/Paris,2,ORE, +ORE:SP:2812,1,"Forge",48.150852,-1.685834,-1,0,ORE:SA:CTP2812,Europe/Paris,2,ORE, +ORE:SP:2813,1,"Haut Trait",48.147437,-1.686162,-1,0,ORE:SA:CTP2813,Europe/Paris,2,ORE, +ORE:SP:2814,1,"CHP Saint-Grégoire",48.143099,-1.686451,-1,0,ORE:SA:CTP2814,Europe/Paris,2,ORE, +ORE:SP:2815,1,"La Plesse",48.13715,-1.686401,-1,0,ORE:SA:CTP2803,Europe/Paris,2,ORE, +ORE:SP:2816,1,"La Plesse",48.138233,-1.686336,-1,0,ORE:SA:CTP2803,Europe/Paris,2,ORE, +ORE:SP:2817,1,"CHP Saint-Grégoire",48.142967,-1.686622,-1,0,ORE:SA:CTP2814,Europe/Paris,2,ORE, +ORE:SP:2818,1,"Haut Trait",48.146946,-1.686104,-1,0,ORE:SA:CTP2813,Europe/Paris,2,ORE, +ORE:SP:2819,1,"Forge",48.151493,-1.685839,-1,0,ORE:SA:CTP2812,Europe/Paris,2,ORE, +ORE:SP:2820,1,"Cité des Jardins",48.151475,-1.691318,-1,0,ORE:SA:CTP2811,Europe/Paris,2,ORE, +ORE:SP:2821,1,"Paul-Emile Victor",48.15366,-1.692124,-1,0,ORE:SA:CTP2810,Europe/Paris,2,ORE, +ORE:SP:2822,1,"Discalceat",48.154762,-1.686676,-1,0,ORE:SA:CTP2809,Europe/Paris,2,ORE, +ORE:SP:2824,1,"Vivier Louis",48.158874,-1.685178,-1,0,ORE:SA:CTP2806,Europe/Paris,2,ORE, +ORE:SP:2825,1,"Camus",48.159086,-1.680796,-1,0,ORE:SA:CTP2805,Europe/Paris,2,ORE, +ORE:SP:2826,1,"Grand Quartier",48.135601,-1.692926,-1,0,ORE:SA:CTP1492,Europe/Paris,2,ORE, +ORE:SP:2827,1,"Maison Blanche",48.148996,-1.656601,-1,0,ORE:SA:CTP2827,Europe/Paris,2,ORE, +ORE:SP:2829,1,"Maison Blanche",48.149378,-1.656411,-1,0,ORE:SA:CTP2827,Europe/Paris,2,ORE, +ORE:SP:2830,1,"Grand Quartier",48.134376,-1.694471,-1,0,ORE:SA:CTP1492,Europe/Paris,2,ORE, +ORE:SP:2831,1,"Holywell",48.153536,-1.678717,-1,0,ORE:SA:CTP2831,Europe/Paris,2,ORE, +ORE:SP:2832,1,"Holywell",48.154635,-1.678763,-1,0,ORE:SA:CTP2831,Europe/Paris,2,ORE, +ORE:SP:2833,1,"Jean-Paul II",48.16014,-1.677217,-1,0,ORE:SA:CTP2833,Europe/Paris,2,ORE, +ORE:SP:2834,1,"Jean-Paul II",48.159961,-1.677102,-1,0,ORE:SA:CTP2833,Europe/Paris,2,ORE, +ORE:SP:2836,1,"Uttenreuth",48.156979,-1.687239,-1,0,ORE:SA:CTP2808,Europe/Paris,2,ORE, +ORE:SP:2837,1,"La Brosse",48.17698,-1.721962,-1,0,ORE:SA:CTP2837,Europe/Paris,2,ORE, +ORE:SP:2838,1,"Alphasis",48.153909,-1.6969,-1,0,ORE:SA:CTP2838,Europe/Paris,2,ORE, +ORE:SP:2839,1,"Alphasis",48.154392,-1.69664,-1,0,ORE:SA:CTP2838,Europe/Paris,2,ORE, +ORE:SP:2840,1,"MFR Rabinardières",48.176664,-1.690277,-1,0,ORE:SA:CTP2840,Europe/Paris,0,ORE, +ORE:SP:2841,1,"Jean-Paul II",48.16048,-1.676774,-1,0,ORE:SA:CTP2833,Europe/Paris,2,ORE, +ORE:SP:2842,1,"Nobel",48.158103,-1.672049,-1,0,ORE:SA:CTP2842,Europe/Paris,2,ORE, +ORE:SP:2843,1,"Nobel",48.15835,-1.67217,-1,0,ORE:SA:CTP2842,Europe/Paris,2,ORE, +ORE:SP:2844,1,"Champ Daguet",48.155286,-1.671435,-1,0,ORE:SA:CTP2844,Europe/Paris,2,ORE, +ORE:SP:2846,1,"Ricoquais",48.158993,-1.676337,-1,0,ORE:SA:CTP2804,Europe/Paris,2,ORE, +ORE:SP:2847,1,"Forge",48.151815,-1.684518,-1,0,ORE:SA:CTP2812,Europe/Paris,2,ORE, +ORE:SP:2848,1,"Forge",48.151909,-1.684413,-1,0,ORE:SA:CTP2812,Europe/Paris,2,ORE, +ORE:SP:2851,1,"Edonia",48.148089,-1.696862,-1,0,ORE:SA:CTP2851,Europe/Paris,2,ORE, +ORE:SP:2852,1,"Edonia",48.147918,-1.696926,-1,0,ORE:SA:CTP2851,Europe/Paris,2,ORE, +ORE:SP:2853,1,"Grand Quartier",48.135809,-1.692886,-1,0,ORE:SA:CTP1492,Europe/Paris,2,ORE, +ORE:SP:2854,1,"Grand Quartier",48.134628,-1.693705,-1,0,ORE:SA:CTP1492,Europe/Paris,2,ORE, +ORE:SP:2855,1,"Kerfleury",48.138277,-1.671885,-1,0,ORE:SA:CTP2855,Europe/Paris,2,ORE, +ORE:SP:2856,1,"Kerguelen",48.15137,-1.69711,-1,0,ORE:SA:CTP2856,Europe/Paris,2,ORE, +ORE:SP:2857,1,"Kerguelen",48.151199,-1.697275,-1,0,ORE:SA:CTP2856,Europe/Paris,2,ORE, +ORE:SP:2858,1,"Kerfleury",48.138445,-1.672022,-1,0,ORE:SA:CTP2855,Europe/Paris,2,ORE, +ORE:SP:2859,1,"Edonia",48.148705,-1.697351,-1,0,ORE:SA:CTP2851,Europe/Paris,2,ORE, +ORE:SP:2860,1,"Robiquette",48.136916,-1.697331,-1,0,ORE:SA:CTP1667,Europe/Paris,0,ORE, +ORE:SP:2901,1,"Croix aux Potiers",48.046733,-1.710633,-1,0,ORE:SA:CTP2901,Europe/Paris,2,ORE, +ORE:SP:2902,1,"Croix aux Potiers",48.047893,-1.713543,-1,0,ORE:SA:CTP2902,Europe/Paris,2,ORE, +ORE:SP:2903,1,"Chaussairie",48.033355,-1.71163,-1,0,ORE:SA:CTP2903,Europe/Paris,2,ORE, +ORE:SP:2904,1,"Taillebois",48.037002,-1.712353,-1,0,ORE:SA:CTP2904,Europe/Paris,2,ORE, +ORE:SP:2905,1,"Callouët",48.042325,-1.712032,-1,0,ORE:SA:CTP2905,Europe/Paris,2,ORE, +ORE:SP:2906,1,"Croix aux Potiers",48.045906,-1.710086,-1,0,ORE:SA:CTP2901,Europe/Paris,2,ORE, +ORE:SP:2907,1,"Croix aux Potiers",48.045659,-1.710498,-1,0,ORE:SA:CTP2901,Europe/Paris,2,ORE, +ORE:SP:2908,1,"Callouët",48.041413,-1.712515,-1,0,ORE:SA:CTP2905,Europe/Paris,2,ORE, +ORE:SP:2909,1,"Taillebois",48.036817,-1.712545,-1,0,ORE:SA:CTP2904,Europe/Paris,2,ORE, +ORE:SP:2911,1,"Parc de Loisirs",48.033268,-1.707228,-1,0,ORE:SA:CTP2911,Europe/Paris,2,ORE, +ORE:SP:2912,1,"Argoat",48.035455,-1.70627,-1,0,ORE:SA:CTP2912,Europe/Paris,2,ORE, +ORE:SP:2913,1,"Cornouaille",48.034611,-1.69941,-1,0,ORE:SA:CTP2913,Europe/Paris,2,ORE, +ORE:SP:2914,1,"Vieux Bourg",48.036918,-1.697008,-1,0,ORE:SA:CTP2914,Europe/Paris,2,ORE, +ORE:SP:2915,1,"Collège Pôle Sud",48.041376,-1.698416,-1,0,ORE:SA:CTP2915,Europe/Paris,2,ORE, +ORE:SP:2916,1,"Auditoire",48.04169,-1.702632,-1,0,ORE:SA:CTP2916,Europe/Paris,0,ORE, +ORE:SP:2917,1,"Chartres Centre",48.042349,-1.706501,-1,0,ORE:SA:CTP2917,Europe/Paris,2,ORE, +ORE:SP:2918,1,"Callouët",48.041976,-1.711045,-1,0,ORE:SA:CTP2905,Europe/Paris,2,ORE, +ORE:SP:2919,1,"Chartres Centre",48.042237,-1.707374,-1,0,ORE:SA:CTP2917,Europe/Paris,2,ORE, +ORE:SP:2920,1,"Auditoire",48.041536,-1.702871,-1,0,ORE:SA:CTP2916,Europe/Paris,2,ORE, +ORE:SP:2921,1,"Collège Pôle Sud",48.041222,-1.69777,-1,0,ORE:SA:CTP2915,Europe/Paris,2,ORE, +ORE:SP:2922,1,"Vieux Bourg",48.037057,-1.697209,-1,0,ORE:SA:CTP2914,Europe/Paris,2,ORE, +ORE:SP:2923,1,"Cornouaille",48.034735,-1.699894,-1,0,ORE:SA:CTP2913,Europe/Paris,2,ORE, +ORE:SP:2924,1,"Argoat",48.035534,-1.706095,-1,0,ORE:SA:CTP2912,Europe/Paris,2,ORE, +ORE:SP:2925,1,"Chaussairie",48.033519,-1.711906,-1,0,ORE:SA:CTP2903,Europe/Paris,2,ORE, +ORE:SP:2926,1,"Collège Pôle Sud",48.041691,-1.696068,-1,0,ORE:SA:CTP2915,Europe/Paris,2,ORE, +ORE:SP:2927,1,"Parc de Loisirs",48.033169,-1.707484,-1,0,ORE:SA:CTP2911,Europe/Paris,2,ORE, +ORE:SP:2928,1,"Constant Mérel",48.031429,-1.708755,-1,0,ORE:SA:CTP2928,Europe/Paris,2,ORE, +ORE:SP:2930,1,"Constant Mérel",48.031247,-1.709248,-1,0,ORE:SA:CTP2928,Europe/Paris,2,ORE, +ORE:SP:2942,1,"Collège Pôle Sud",48.042032,-1.696207,-1,0,ORE:SA:CTP2915,Europe/Paris,2,ORE, +ORE:SP:2944,1,"Ferme des Peupliers",48.029175,-1.707963,-1,0,ORE:SA:CTP2944,Europe/Paris,0,ORE, +ORE:SP:2945,1,"Ferme des Peupliers",48.028976,-1.707942,-1,0,ORE:SA:CTP2944,Europe/Paris,0,ORE, +ORE:SP:3001,1,"Gériatrie",48.085047,-1.610381,-1,0,ORE:SA:CTP3001,Europe/Paris,2,ORE, +ORE:SP:3002,1,"Deux Ruisseaux",48.085765,-1.614047,-1,0,ORE:SA:CTP3002,Europe/Paris,2,ORE, +ORE:SP:3003,1,"Bourgogne",48.089159,-1.612603,-1,0,ORE:SA:CTP3003,Europe/Paris,2,ORE, +ORE:SP:3006,1,"Chantepie Mairie",48.08848,-1.6192,-1,0,ORE:SA:CTP3006,Europe/Paris,2,ORE, +ORE:SP:3007,1,"Loges",48.090504,-1.623943,-1,0,ORE:SA:CTP3007,Europe/Paris,2,ORE, +ORE:SP:3008,1,"Loges",48.09031,-1.62417,-1,0,ORE:SA:CTP3007,Europe/Paris,2,ORE, +ORE:SP:3009,1,"Chantepie Mairie",48.088351,-1.619091,-1,0,ORE:SA:CTP3006,Europe/Paris,2,ORE, +ORE:SP:3011,1,"Hallouvry",48.090381,-1.615346,-1,0,ORE:SA:CTP3011,Europe/Paris,2,ORE, +ORE:SP:3012,1,"Bourgogne",48.089016,-1.612677,-1,0,ORE:SA:CTP3003,Europe/Paris,2,ORE, +ORE:SP:3013,1,"Deux Ruisseaux",48.085813,-1.614717,-1,0,ORE:SA:CTP3002,Europe/Paris,2,ORE, +ORE:SP:3014,1,"Breillou",48.098087,-1.622908,-1,0,ORE:SA:CTP3014,Europe/Paris,2,ORE, +ORE:SP:3015,1,"Breillou",48.098321,-1.622836,-1,0,ORE:SA:CTP3014,Europe/Paris,2,ORE, +ORE:SP:3016,1,"Cucé",48.093514,-1.607562,-1,0,ORE:SA:CTP3016,Europe/Paris,2,ORE, +ORE:SP:3017,1,"EDEFS",48.092504,-1.61292,-1,0,ORE:SA:CTP3017,Europe/Paris,0,ORE, +ORE:SP:3018,1,"Rocade Sud",48.085481,-1.627229,-1,0,ORE:SA:CTP3018,Europe/Paris,2,ORE, +ORE:SP:3019,1,"Val Blanc",48.080508,-1.630849,-1,0,ORE:SA:CTP3019,Europe/Paris,0,ORE, +ORE:SP:3020,1,"Val Blanc",48.080652,-1.630601,-1,0,ORE:SA:CTP3019,Europe/Paris,0,ORE, +ORE:SP:3021,1,"Rocade Sud",48.0846,-1.627505,-1,0,ORE:SA:CTP3018,Europe/Paris,2,ORE, +ORE:SP:3022,1,"Hallouvry",48.091041,-1.615283,-1,0,ORE:SA:CTP3011,Europe/Paris,2,ORE, +ORE:SP:3023,1,"EDEFS",48.092596,-1.612945,-1,0,ORE:SA:CTP3017,Europe/Paris,0,ORE, +ORE:SP:3024,1,"Martinière",48.07696,-1.631808,-1,0,ORE:SA:CTP3024,Europe/Paris,0,ORE, +ORE:SP:3025,1,"Martinière",48.076742,-1.631836,-1,0,ORE:SA:CTP3024,Europe/Paris,0,ORE, +ORE:SP:3027,1,"Touche Annette",48.085803,-1.608136,-1,0,ORE:SA:CTP3027,Europe/Paris,2,ORE, +ORE:SP:3028,1,"Rosa Parks",48.085464,-1.604031,-1,0,ORE:SA:CTP3028,Europe/Paris,2,ORE, +ORE:SP:3029,1,"Touche Annette",48.085706,-1.607473,-1,0,ORE:SA:CTP3027,Europe/Paris,2,ORE, +ORE:SP:3032,1,"Gériatrie",48.085229,-1.610747,-1,0,ORE:SA:CTP3001,Europe/Paris,2,ORE, +ORE:SP:3033,1,"Breillou",48.098224,-1.621153,-1,0,ORE:SA:CTP3014,Europe/Paris,2,ORE, +ORE:SP:3034,1,"Breillou",48.098553,-1.621354,-1,0,ORE:SA:CTP3014,Europe/Paris,2,ORE, +ORE:SP:3035,1,"Landes",48.090498,-1.61905,-1,0,ORE:SA:CTP3035,Europe/Paris,2,ORE, +ORE:SP:3036,1,"Landes",48.090683,-1.618807,-1,0,ORE:SA:CTP3035,Europe/Paris,2,ORE, +ORE:SP:3037,1,"Chantepie Eglise",48.087406,-1.616535,-1,0,ORE:SA:CTP3037,Europe/Paris,2,ORE, +ORE:SP:3038,1,"Chantepie Eglise",48.087497,-1.616789,-1,0,ORE:SA:CTP3037,Europe/Paris,2,ORE, +ORE:SP:3102,1,"Pie Neuve",48.150803,-1.792262,-1,0,ORE:SA:CTP3102,Europe/Paris,2,ORE, +ORE:SP:3103,1,"Docteur Léon",48.149232,-1.788989,-1,0,ORE:SA:CTP3103,Europe/Paris,0,ORE, +ORE:SP:3104,1,"Touche Milon",48.148463,-1.784791,-1,0,ORE:SA:CTP3104,Europe/Paris,2,ORE, +ORE:SP:3105,1,"Pinault",48.14765,-1.780916,-1,0,ORE:SA:CTP3105,Europe/Paris,2,ORE, +ORE:SP:3107,1,"Renan",48.151185,-1.77754,-1,0,ORE:SA:CTP3107,Europe/Paris,2,ORE, +ORE:SP:3108,1,"Duchesse Anne",48.150859,-1.771989,-1,0,ORE:SA:CTP3108,Europe/Paris,2,ORE, +ORE:SP:3109,1,"Pacé Cimetière",48.148142,-1.769909,-1,0,ORE:SA:CTP3109,Europe/Paris,2,ORE, +ORE:SP:3110,1,"Carré Dumaine",48.145758,-1.770753,-1,0,ORE:SA:CTP3110,Europe/Paris,2,ORE, +ORE:SP:3111,1,"Le Ponant",48.142756,-1.770101,-1,0,ORE:SA:CTP3111,Europe/Paris,2,ORE, +ORE:SP:3112,1,"Opéra",48.141059,-1.767294,-1,0,ORE:SA:CTP3112,Europe/Paris,2,ORE, +ORE:SP:3113,1,"Le Ponant",48.143401,-1.770386,-1,0,ORE:SA:CTP3111,Europe/Paris,2,ORE, +ORE:SP:3114,1,"Carré Dumaine",48.146022,-1.770492,-1,0,ORE:SA:CTP3110,Europe/Paris,2,ORE, +ORE:SP:3115,1,"Pacé Cimetière",48.148099,-1.769731,-1,0,ORE:SA:CTP3109,Europe/Paris,2,ORE, +ORE:SP:3116,1,"Duchesse Anne",48.150947,-1.771877,-1,0,ORE:SA:CTP3108,Europe/Paris,2,ORE, +ORE:SP:3117,1,"Renan",48.151275,-1.777656,-1,0,ORE:SA:CTP3107,Europe/Paris,2,ORE, +ORE:SP:3119,1,"Pinault",48.147515,-1.781103,-1,0,ORE:SA:CTP3105,Europe/Paris,2,ORE, +ORE:SP:3120,1,"Touche Milon",48.1486,-1.785006,-1,0,ORE:SA:CTP3104,Europe/Paris,2,ORE, +ORE:SP:3121,1,"Docteur Léon",48.149381,-1.789012,-1,0,ORE:SA:CTP3103,Europe/Paris,0,ORE, +ORE:SP:3122,1,"Pie Neuve",48.151102,-1.79217,-1,0,ORE:SA:CTP3102,Europe/Paris,2,ORE, +ORE:SP:3123,1,"Chapitre",48.174088,-1.789401,-1,0,ORE:SA:CTP3123,Europe/Paris,0,ORE, +ORE:SP:3124,1,"Chapitre",48.175366,-1.789981,-1,0,ORE:SA:CTP3123,Europe/Paris,0,ORE, +ORE:SP:3125,1,"Pâtis Roussel",48.16049,-1.768011,-1,0,ORE:SA:CTP3125,Europe/Paris,2,ORE, +ORE:SP:3126,1,"Ouessant",48.15725,-1.765795,-1,0,ORE:SA:CTP3126,Europe/Paris,2,ORE, +ORE:SP:3133,1,"Ouessant",48.157383,-1.765666,-1,0,ORE:SA:CTP3126,Europe/Paris,2,ORE, +ORE:SP:3134,1,"Nominoë",48.141622,-1.770457,-1,0,ORE:SA:CTP3134,Europe/Paris,2,ORE, +ORE:SP:3135,1,"Nominoë",48.141755,-1.771001,-1,0,ORE:SA:CTP3134,Europe/Paris,2,ORE, +ORE:SP:3136,1,"Pont Amelin",48.15469,-1.784414,-1,0,ORE:SA:CTP3136,Europe/Paris,2,ORE, +ORE:SP:3137,1,"Rive Ouest",48.140206,-1.763554,-1,0,ORE:SA:CTP3137,Europe/Paris,2,ORE, +ORE:SP:3139,1,"Rive Ouest",48.140153,-1.763318,-1,0,ORE:SA:CTP3137,Europe/Paris,2,ORE, +ORE:SP:3141,1,"Pont Amelin",48.154821,-1.784386,-1,0,ORE:SA:CTP3136,Europe/Paris,2,ORE, +ORE:SP:3142,1,"Haute Rabine",48.167342,-1.787109,-1,0,ORE:SA:CTP3142,Europe/Paris,0,ORE, +ORE:SP:3143,1,"Haute Rabine",48.169948,-1.787892,-1,0,ORE:SA:CTP3143,Europe/Paris,0,ORE, +ORE:SP:3144,1,"Opéra",48.141054,-1.766273,-1,0,ORE:SA:CTP3112,Europe/Paris,2,ORE, +ORE:SP:3145,1,"Touche Champagne",48.179959,-1.801675,-1,0,ORE:SA:CTP3145,Europe/Paris,0,ORE, +ORE:SP:3146,1,"Touche Champagne",48.18012,-1.801817,-1,0,ORE:SA:CTP3145,Europe/Paris,0,ORE, +ORE:SP:3162,1,"Centre scolaire Pacé",48.152311,-1.771231,-1,0,ORE:SA:CTP3162,Europe/Paris,0,ORE, +ORE:SP:3167,1,"Champalaune",48.154567,-1.763809,-1,0,ORE:SA:CTP3167,Europe/Paris,2,ORE, +ORE:SP:3168,1,"Champalaune",48.154502,-1.763967,-1,0,ORE:SA:CTP3167,Europe/Paris,2,ORE, +ORE:SP:3169,1,"Beausoleil",48.152618,-1.763563,-1,0,ORE:SA:CTP3169,Europe/Paris,0,ORE, +ORE:SP:3170,1,"Beausoleil",48.152501,-1.763749,-1,0,ORE:SA:CTP3169,Europe/Paris,2,ORE, +ORE:SP:3171,1,"Baiersdorf",48.15162,-1.759805,-1,0,ORE:SA:CTP3171,Europe/Paris,2,ORE, +ORE:SP:3172,1,"Baiersdorf",48.151086,-1.75956,-1,0,ORE:SA:CTP3171,Europe/Paris,2,ORE, +ORE:SP:3173,1,"Teillais",48.148248,-1.763821,-1,0,ORE:SA:CTP3173,Europe/Paris,2,ORE, +ORE:SP:3174,1,"Teillais",48.148297,-1.764208,-1,0,ORE:SA:CTP3173,Europe/Paris,2,ORE, +ORE:SP:3175,1,"Pacé Cimetière",48.147682,-1.768483,-1,0,ORE:SA:CTP3109,Europe/Paris,2,ORE, +ORE:SP:3176,1,"Pacé Cimetière",48.147787,-1.768493,-1,0,ORE:SA:CTP3109,Europe/Paris,2,ORE, +ORE:SP:3201,1,"Fort Joual",47.96981,-1.646041,-1,0,ORE:SA:CTP3201,Europe/Paris,0,ORE, +ORE:SP:3202,1,"Frogerais",47.975399,-1.651256,-1,0,ORE:SA:CTP3202,Europe/Paris,0,ORE, +ORE:SP:3203,1,"Petite Rochelle",47.976283,-1.657445,-1,0,ORE:SA:CTP3203,Europe/Paris,0,ORE, +ORE:SP:3204,1,"Télégraphe",47.983336,-1.660015,-1,0,ORE:SA:CTP3204,Europe/Paris,0,ORE, +ORE:SP:3205,1,"Petite Rochelle",47.976081,-1.657175,-1,0,ORE:SA:CTP3203,Europe/Paris,0,ORE, +ORE:SP:3206,1,"Frogerais",47.975387,-1.652392,-1,0,ORE:SA:CTP3202,Europe/Paris,0,ORE, +ORE:SP:3207,1,"Fort Joual",47.969624,-1.645797,-1,0,ORE:SA:CTP3201,Europe/Paris,0,ORE, +ORE:SP:3209,1,"Surcouf",47.992563,-1.668787,-1,0,ORE:SA:CTP3209,Europe/Paris,2,ORE, +ORE:SP:3210,1,"Coteau",47.995,-1.670694,-1,0,ORE:SA:CTP3210,Europe/Paris,2,ORE, +ORE:SP:3211,1,"Groupe Scolaire",47.997273,-1.668431,-1,0,ORE:SA:CTP3211,Europe/Paris,2,ORE, +ORE:SP:3212,1,"Levant",48.000737,-1.666758,-1,0,ORE:SA:CTP3212,Europe/Paris,2,ORE, +ORE:SP:3213,1,"Plardière",48.009507,-1.66592,-1,0,ORE:SA:CTP3213,Europe/Paris,2,ORE, +ORE:SP:3216,1,"Plardière",48.009532,-1.666195,-1,0,ORE:SA:CTP3213,Europe/Paris,2,ORE, +ORE:SP:3217,1,"Levant",48.000471,-1.667155,-1,0,ORE:SA:CTP3212,Europe/Paris,2,ORE, +ORE:SP:3218,1,"Groupe Scolaire",47.996919,-1.669051,-1,0,ORE:SA:CTP3211,Europe/Paris,2,ORE, +ORE:SP:3219,1,"Coteau",47.994968,-1.670982,-1,0,ORE:SA:CTP3210,Europe/Paris,2,ORE, +ORE:SP:3220,1,"Surcouf",47.992216,-1.6679,-1,0,ORE:SA:CTP3209,Europe/Paris,2,ORE, +ORE:SP:3225,1,"ZA L'Hermitière",47.962608,-1.684894,-1,0,ORE:SA:CTP3225,Europe/Paris,0,ORE, +ORE:SP:3245,1,"L'Hermitière Village",47.964349,-1.681718,-1,0,ORE:SA:CTP3245,Europe/Paris,0,ORE, +ORE:SP:3246,1,"Collège Récipon",48.002386,-1.668891,-1,0,ORE:SA:CTP3246,Europe/Paris,0,ORE, +ORE:SP:3248,1,"ZA L'Hermitière",47.962638,-1.685005,-1,0,ORE:SA:CTP3225,Europe/Paris,0,ORE, +ORE:SP:3249,1,"Orgerblon",48.014928,-1.663969,-1,0,ORE:SA:CTP3249,Europe/Paris,2,ORE, +ORE:SP:3250,1,"Orgerblon",48.014928,-1.663838,-1,0,ORE:SA:CTP3249,Europe/Paris,2,ORE, +ORE:SP:3251,1,"L'Hermitière Village",47.964046,-1.681099,-1,0,ORE:SA:CTP3245,Europe/Paris,0,ORE, +ORE:SP:3257,1,"Haye Longue",48.005371,-1.665736,-1,0,ORE:SA:CTP3257,Europe/Paris,0,ORE, +ORE:SP:3258,1,"Haye Longue",48.00539,-1.665581,-1,0,ORE:SA:CTP3257,Europe/Paris,0,ORE, +ORE:SP:3259,1,"Ormes Blanches",47.992652,-1.662984,-1,0,ORE:SA:CTP3259,Europe/Paris,0,ORE, +ORE:SP:3260,1,"Ormes Blanches",47.992951,-1.662898,-1,0,ORE:SA:CTP3259,Europe/Paris,0,ORE, +ORE:SP:3301,1,"Landelles",48.155188,-1.573107,-1,0,ORE:SA:CTP3301,Europe/Paris,2,ORE, +ORE:SP:3302,1,"Thorigné Mairie",48.153039,-1.579445,-1,0,ORE:SA:CTP3302,Europe/Paris,2,ORE, +ORE:SP:3304,1,"Anne de Bretagne",48.155658,-1.580848,-1,0,ORE:SA:CTP3304,Europe/Paris,2,ORE, +ORE:SP:3305,1,"Bocage",48.158973,-1.579631,-1,0,ORE:SA:CTP3305,Europe/Paris,2,ORE, +ORE:SP:3306,1,"Juteauderies",48.164176,-1.579265,-1,0,ORE:SA:CTP3306,Europe/Paris,2,ORE, +ORE:SP:3307,1,"Fouillard",48.160412,-1.586021,-1,0,ORE:SA:CTP3307,Europe/Paris,2,ORE, +ORE:SP:3308,1,"Placis Vert",48.174332,-1.602138,-1,0,ORE:SA:CTP3308,Europe/Paris,2,ORE, +ORE:SP:3309,1,"Portail",48.156271,-1.592376,-1,0,ORE:SA:CTP3309,Europe/Paris,0,ORE, +ORE:SP:3310,1,"Portail",48.156448,-1.591842,-1,0,ORE:SA:CTP3309,Europe/Paris,0,ORE, +ORE:SP:3311,1,"Fouillard",48.160618,-1.585461,-1,0,ORE:SA:CTP3307,Europe/Paris,2,ORE, +ORE:SP:3312,1,"Juteauderies",48.162934,-1.579182,-1,0,ORE:SA:CTP3306,Europe/Paris,2,ORE, +ORE:SP:3313,1,"Bocage",48.159169,-1.579798,-1,0,ORE:SA:CTP3305,Europe/Paris,2,ORE, +ORE:SP:3314,1,"Anne de Bretagne",48.156034,-1.580608,-1,0,ORE:SA:CTP3304,Europe/Paris,2,ORE, +ORE:SP:3315,1,"Thorigné Mairie",48.153606,-1.579768,-1,0,ORE:SA:CTP3302,Europe/Paris,2,ORE, +ORE:SP:3316,1,"Village Collectivités",48.13216,-1.596367,-1,0,ORE:SA:CTP2101,Europe/Paris,2,ORE, +ORE:SP:3317,1,"Pâtis du Moulinet",48.141094,-1.573652,-1,0,ORE:SA:CTP3317,Europe/Paris,0,ORE, +ORE:SP:3318,1,"Pâtis du Moulinet",48.140911,-1.573502,-1,0,ORE:SA:CTP3317,Europe/Paris,0,ORE, +ORE:SP:3319,1,"Pâtis du Moulinet",48.141665,-1.577357,-1,0,ORE:SA:CTP3319,Europe/Paris,0,ORE, +ORE:SP:3320,1,"Pâtis du Moulinet",48.141857,-1.577397,-1,0,ORE:SA:CTP3319,Europe/Paris,0,ORE, +ORE:SP:3321,1,"Fouillard",48.160454,-1.587059,-1,0,ORE:SA:CTP3307,Europe/Paris,2,ORE, +ORE:SP:3322,1,"Curien",48.149328,-1.577527,-1,0,ORE:SA:CTP3322,Europe/Paris,2,ORE, +ORE:SP:3323,1,"Curien",48.149262,-1.577059,-1,0,ORE:SA:CTP3322,Europe/Paris,2,ORE, +ORE:SP:3401,1,"Parc des Sports",48.041337,-1.553405,-1,0,ORE:SA:CTP3401,Europe/Paris,2,ORE, +ORE:SP:3402,1,"Langlois",48.040949,-1.549602,-1,0,ORE:SA:CTP3402,Europe/Paris,2,ORE, +ORE:SP:3403,1,"Chêne Centenaire",48.040203,-1.542002,-1,0,ORE:SA:CTP3403,Europe/Paris,2,ORE, +ORE:SP:3404,1,"Menault",48.041308,-1.544619,-1,0,ORE:SA:CTP3404,Europe/Paris,2,ORE, +ORE:SP:3405,1,"Eclosel",48.04458,-1.561621,-1,0,ORE:SA:CTP3405,Europe/Paris,0,ORE, +ORE:SP:3406,1,"Eclosel",48.044378,-1.56147,-1,0,ORE:SA:CTP3405,Europe/Paris,0,ORE, +ORE:SP:3407,1,"Grée Barel",48.042359,-1.549754,-1,0,ORE:SA:CTP3407,Europe/Paris,0,ORE, +ORE:SP:3408,1,"Chêne Centenaire",48.040431,-1.541908,-1,0,ORE:SA:CTP3403,Europe/Paris,2,ORE, +ORE:SP:3409,1,"Menault",48.041368,-1.545167,-1,0,ORE:SA:CTP3404,Europe/Paris,2,ORE, +ORE:SP:3410,1,"Langlois",48.040076,-1.550197,-1,0,ORE:SA:CTP3402,Europe/Paris,2,ORE, +ORE:SP:3411,1,"Crotigné",48.031367,-1.558356,-1,0,ORE:SA:CTP3411,Europe/Paris,0,ORE, +ORE:SP:3412,1,"La Croix de l'Epine",48.02933,-1.564303,-1,0,ORE:SA:CTP3412,Europe/Paris,0,ORE, +ORE:SP:3413,1,"La Drouais",48.024066,-1.573263,-1,0,ORE:SA:CTP3413,Europe/Paris,0,ORE, +ORE:SP:3414,1,"La Jaunais",48.013162,-1.570605,-1,0,ORE:SA:CTP3414,Europe/Paris,0,ORE, +ORE:SP:3415,1,"La Jaille",48.012582,-1.557306,-1,0,ORE:SA:CTP3415,Europe/Paris,0,ORE, +ORE:SP:3416,1,"Le Petit Beauvais",48.011936,-1.5459,-1,0,ORE:SA:CTP3416,Europe/Paris,0,ORE, +ORE:SP:3417,1,"Epron",48.015078,-1.539572,-1,0,ORE:SA:CTP3417,Europe/Paris,0,ORE, +ORE:SP:3418,1,"La Tertronais",48.021901,-1.547245,-1,0,ORE:SA:CTP3418,Europe/Paris,0,ORE, +ORE:SP:3419,1,"L'Ourmais",48.028985,-1.5514,-1,0,ORE:SA:CTP3419,Europe/Paris,0,ORE, +ORE:SP:3500,1,"Silandière",48.163969,-1.731752,-1,0,ORE:SA:CTP3500,Europe/Paris,0,ORE, +ORE:SP:3501,1,"Fougerolle",48.157221,-1.723306,-1,0,ORE:SA:CTP3501,Europe/Paris,0,ORE, +ORE:SP:3502,1,"Pierre Texier",48.155655,-1.720614,-1,0,ORE:SA:CTP3502,Europe/Paris,2,ORE, +ORE:SP:3503,1,"Montgermont Mairie",48.15574,-1.71654,-1,0,ORE:SA:CTP3503,Europe/Paris,2,ORE, +ORE:SP:3504,1,"Courtines",48.157226,-1.714447,-1,0,ORE:SA:CTP3504,Europe/Paris,2,ORE, +ORE:SP:3505,1,"Belle Epine",48.155304,-1.710895,-1,0,ORE:SA:CTP3505,Europe/Paris,2,ORE, +ORE:SP:3506,1,"Décoparc",48.152987,-1.706581,-1,0,ORE:SA:CTP3506,Europe/Paris,2,ORE, +ORE:SP:3507,1,"Vizeule",48.148918,-1.704108,-1,0,ORE:SA:CTP3507,Europe/Paris,2,ORE, +ORE:SP:3508,1,"Vizeule",48.148382,-1.703613,-1,0,ORE:SA:CTP3507,Europe/Paris,2,ORE, +ORE:SP:3509,1,"Métrie",48.153005,-1.708878,-1,0,ORE:SA:CTP3509,Europe/Paris,2,ORE, +ORE:SP:3510,1,"Belle Epine",48.155558,-1.710743,-1,0,ORE:SA:CTP3505,Europe/Paris,2,ORE, +ORE:SP:3511,1,"Courtines",48.157373,-1.714588,-1,0,ORE:SA:CTP3504,Europe/Paris,2,ORE, +ORE:SP:3512,1,"Montgermont Mairie",48.155644,-1.716708,-1,0,ORE:SA:CTP3503,Europe/Paris,2,ORE, +ORE:SP:3513,1,"Pierre Texier",48.155723,-1.720748,-1,0,ORE:SA:CTP3502,Europe/Paris,2,ORE, +ORE:SP:3514,1,"Fougerolle",48.157089,-1.723308,-1,0,ORE:SA:CTP3501,Europe/Paris,2,ORE, +ORE:SP:3515,1,"Silandière",48.162759,-1.730576,-1,0,ORE:SA:CTP3500,Europe/Paris,0,ORE, +ORE:SP:3516,1,"Décoparc",48.154387,-1.707216,-1,0,ORE:SA:CTP3506,Europe/Paris,2,ORE, +ORE:SP:3601,1,"La Renardière",48.183471,-1.835694,-1,0,ORE:SA:CTP3601,Europe/Paris,0,ORE, +ORE:SP:3602,1,"Parthenay Mairie",48.192003,-1.831209,-1,0,ORE:SA:CTP3602,Europe/Paris,2,ORE, +ORE:SP:3603,1,"Clos des Tilleuls",48.191638,-1.827121,-1,0,ORE:SA:CTP3603,Europe/Paris,0,ORE, +ORE:SP:3604,1,"La Noë",48.191281,-1.824629,-1,0,ORE:SA:CTP3604,Europe/Paris,2,ORE, +ORE:SP:3605,1,"Placis de la Touche",48.189982,-1.820845,-1,0,ORE:SA:CTP3605,Europe/Paris,0,ORE, +ORE:SP:3606,1,"Le Reuvre",48.186405,-1.816641,-1,0,ORE:SA:CTP3606,Europe/Paris,0,ORE, +ORE:SP:3611,1,"Le Reuvre",48.186413,-1.816451,-1,0,ORE:SA:CTP3606,Europe/Paris,0,ORE, +ORE:SP:3612,1,"Placis de la Touche",48.189949,-1.820176,-1,0,ORE:SA:CTP3605,Europe/Paris,0,ORE, +ORE:SP:3613,1,"La Noë",48.191297,-1.8243,-1,0,ORE:SA:CTP3604,Europe/Paris,2,ORE, +ORE:SP:3614,1,"Clos des Tilleuls",48.191822,-1.82784,-1,0,ORE:SA:CTP3603,Europe/Paris,2,ORE, +ORE:SP:3615,1,"Parthenay Mairie",48.192104,-1.831432,-1,0,ORE:SA:CTP3602,Europe/Paris,2,ORE, +ORE:SP:3616,1,"La Renardière",48.183379,-1.836087,-1,0,ORE:SA:CTP3601,Europe/Paris,0,ORE, +ORE:SP:3617,1,"Parthenay Fontaine",48.193762,-1.832214,-1,0,ORE:SA:CTP3617,Europe/Paris,2,ORE, +ORE:SP:3705,1,"Saint-Gilles Centre",48.15298,-1.829806,-1,0,ORE:SA:CTP3705,Europe/Paris,0,ORE, +ORE:SP:3707,1,"Pont aux Moines",48.150683,-1.825279,-1,0,ORE:SA:CTP3707,Europe/Paris,2,ORE, +ORE:SP:3708,1,"Vigne",48.152801,-1.820678,-1,0,ORE:SA:CTP3708,Europe/Paris,2,ORE, +ORE:SP:3709,1,"Fouaye",48.152952,-1.809229,-1,0,ORE:SA:CTP3709,Europe/Paris,0,ORE, +ORE:SP:3710,1,"Fouaye",48.153626,-1.810538,-1,0,ORE:SA:CTP3709,Europe/Paris,0,ORE, +ORE:SP:3711,1,"Vigne",48.154152,-1.819988,-1,0,ORE:SA:CTP3708,Europe/Paris,2,ORE, +ORE:SP:3712,1,"Pont aux Moines",48.150714,-1.824791,-1,0,ORE:SA:CTP3707,Europe/Paris,2,ORE, +ORE:SP:3714,1,"Saint-Gilles Centre",48.152522,-1.829773,-1,0,ORE:SA:CTP3705,Europe/Paris,2,ORE, +ORE:SP:3715,1,"Clos des Cerisiers",48.153745,-1.834034,-1,0,ORE:SA:CTP3715,Europe/Paris,2,ORE, +ORE:SP:3717,1,"Maison Neuve",48.153985,-1.8376,-1,0,ORE:SA:CTP3717,Europe/Paris,2,ORE, +ORE:SP:3723,1,"Maison Neuve",48.15406,-1.837815,-1,0,ORE:SA:CTP3717,Europe/Paris,2,ORE, +ORE:SP:3724,1,"Clos des Cerisiers",48.153843,-1.834042,-1,0,ORE:SA:CTP3715,Europe/Paris,2,ORE, +ORE:SP:3732,1,"Ile des Bois",48.14933,-1.839024,-1,0,ORE:SA:CTP3732,Europe/Paris,2,ORE, +ORE:SP:3751,1,"ZI Ouest",48.107431,-1.739281,-1,0,ORE:SA:CTP3751,Europe/Paris,2,ORE, +ORE:SP:3752,1,"Trois Marches",48.104704,-1.739009,-1,0,ORE:SA:CTP3752,Europe/Paris,2,ORE, +ORE:SP:3753,1,"Trois Marches",48.10575,-1.740014,-1,0,ORE:SA:CTP3752,Europe/Paris,2,ORE, +ORE:SP:3754,1,"Haie de Terre",48.12091,-1.772466,-1,0,ORE:SA:CTP3754,Europe/Paris,0,ORE, +ORE:SP:3755,1,"Vallée",48.120211,-1.765417,-1,0,ORE:SA:CTP3755,Europe/Paris,2,ORE, +ORE:SP:3756,1,"Lion d'Or",48.119004,-1.760926,-1,0,ORE:SA:CTP3756,Europe/Paris,2,ORE, +ORE:SP:3757,1,"Vezin Centre",48.11887,-1.756833,-1,0,ORE:SA:CTP3757,Europe/Paris,2,ORE, +ORE:SP:3758,1,"Tertre",48.118334,-1.742441,-1,0,ORE:SA:CTP3758,Europe/Paris,0,ORE, +ORE:SP:3759,1,"Champ Noël",48.117611,-1.731377,-1,0,ORE:SA:CTP3759,Europe/Paris,0,ORE, +ORE:SP:3760,1,"Champ Noël",48.117765,-1.731221,-1,0,ORE:SA:CTP3759,Europe/Paris,0,ORE, +ORE:SP:3761,1,"Tertre",48.118418,-1.741401,-1,0,ORE:SA:CTP3758,Europe/Paris,0,ORE, +ORE:SP:3762,1,"Vezin Centre",48.11923,-1.755499,-1,0,ORE:SA:CTP3757,Europe/Paris,2,ORE, +ORE:SP:3763,1,"Lion d'Or",48.119239,-1.761273,-1,0,ORE:SA:CTP3756,Europe/Paris,2,ORE, +ORE:SP:3764,1,"Vallée",48.120402,-1.765585,-1,0,ORE:SA:CTP3755,Europe/Paris,2,ORE, +ORE:SP:3765,1,"Haie de Terre",48.121023,-1.771757,-1,0,ORE:SA:CTP3754,Europe/Paris,0,ORE, +ORE:SP:3766,1,"Trois Marches",48.104998,-1.740624,-1,0,ORE:SA:CTP3752,Europe/Paris,2,ORE, +ORE:SP:3768,1,"Marais",48.104219,-1.735894,-1,0,ORE:SA:CTP3768,Europe/Paris,2,ORE, +ORE:SP:3769,1,"Marais",48.104169,-1.736036,-1,0,ORE:SA:CTP3768,Europe/Paris,2,ORE, +ORE:SP:3770,1,"Champs Bleus",48.119011,-1.749601,-1,0,ORE:SA:CTP3770,Europe/Paris,2,ORE, +ORE:SP:3771,1,"Champs Bleus",48.11916,-1.749864,-1,0,ORE:SA:CTP3770,Europe/Paris,2,ORE, +ORE:SP:3772,1,"ZI Ouest",48.107281,-1.738871,-1,0,ORE:SA:CTP3751,Europe/Paris,2,ORE, +ORE:SP:3801,1,"Centre de Loisirs",47.990142,-1.613855,-1,0,ORE:SA:CTP3801,Europe/Paris,2,ORE, +ORE:SP:3802,1,"Bourgbarré Mairie",47.994926,-1.614233,-1,0,ORE:SA:CTP3802,Europe/Paris,2,ORE, +ORE:SP:3803,1,"La Motte",47.996045,-1.617451,-1,0,ORE:SA:CTP3803,Europe/Paris,2,ORE, +ORE:SP:3804,1,"La Basse Erable",47.995183,-1.624234,-1,0,ORE:SA:CTP3804,Europe/Paris,0,ORE, +ORE:SP:3805,1,"Perelle",47.994576,-1.631502,-1,0,ORE:SA:CTP3805,Europe/Paris,0,ORE, +ORE:SP:3806,1,"Perelle",47.994399,-1.631365,-1,0,ORE:SA:CTP3805,Europe/Paris,0,ORE, +ORE:SP:3807,1,"La Basse Erable",47.995094,-1.623735,-1,0,ORE:SA:CTP3804,Europe/Paris,0,ORE, +ORE:SP:3808,1,"La Motte",47.995943,-1.617465,-1,0,ORE:SA:CTP3803,Europe/Paris,2,ORE, +ORE:SP:3809,1,"Bourgbarré Mairie",47.994727,-1.614138,-1,0,ORE:SA:CTP3802,Europe/Paris,2,ORE, +ORE:SP:3810,1,"Moc Souris",47.960038,-1.632394,-1,0,ORE:SA:CTP3810,Europe/Paris,0,ORE, +ORE:SP:3811,1,"Sept Fours",47.959332,-1.637267,-1,0,ORE:SA:CTP3811,Europe/Paris,0,ORE, +ORE:SP:3814,1,"Rue de Rennes",47.997686,-1.619187,-1,0,ORE:SA:CTP3814,Europe/Paris,0,ORE, +ORE:SP:3815,1,"Rue de Rennes",47.997466,-1.618795,-1,0,ORE:SA:CTP3814,Europe/Paris,0,ORE, +ORE:SP:3816,1,"Launay Garnier",48.000758,-1.594361,-1,0,ORE:SA:CTP3816,Europe/Paris,2,ORE, +ORE:SP:3817,1,"Launay Garnier",48.000912,-1.594744,-1,0,ORE:SA:CTP3816,Europe/Paris,2,ORE, +ORE:SP:3851,1,"Mordelles Pâtis",48.074582,-1.853723,-1,0,ORE:SA:CTP3851,Europe/Paris,2,ORE, +ORE:SP:3852,1,"Mordelles Eglise",48.071956,-1.849829,-1,0,ORE:SA:CTP3852,Europe/Paris,2,ORE, +ORE:SP:3853,1,"Mordelles Mairie",48.073718,-1.846282,-1,0,ORE:SA:CTP3853,Europe/Paris,2,ORE, +ORE:SP:3854,1,"Mordelles Lilas",48.075808,-1.842153,-1,0,ORE:SA:CTP3854,Europe/Paris,2,ORE, +ORE:SP:3855,1,"Gretay",48.077668,-1.837422,-1,0,ORE:SA:CTP3855,Europe/Paris,2,ORE, +ORE:SP:3856,1,"Croix Ignon",48.081318,-1.826616,-1,0,ORE:SA:CTP3856,Europe/Paris,0,ORE, +ORE:SP:3857,1,"Grande Fontaine",48.083954,-1.813568,-1,0,ORE:SA:CTP3857,Europe/Paris,0,ORE, +ORE:SP:3858,1,"Vivier des Bois",48.08823,-1.798671,-1,0,ORE:SA:CTP3858,Europe/Paris,0,ORE, +ORE:SP:3859,1,"Vivier des Bois",48.088106,-1.799966,-1,0,ORE:SA:CTP3858,Europe/Paris,0,ORE, +ORE:SP:3860,1,"Grande Fontaine",48.083671,-1.81582,-1,0,ORE:SA:CTP3857,Europe/Paris,0,ORE, +ORE:SP:3861,1,"Croix Ignon",48.081392,-1.827027,-1,0,ORE:SA:CTP3856,Europe/Paris,0,ORE, +ORE:SP:3862,1,"Gretay",48.077836,-1.837377,-1,0,ORE:SA:CTP3855,Europe/Paris,2,ORE, +ORE:SP:3863,1,"Mordelles Lilas",48.075604,-1.842827,-1,0,ORE:SA:CTP3854,Europe/Paris,2,ORE, +ORE:SP:3864,1,"Mordelles Mairie",48.073558,-1.846884,-1,0,ORE:SA:CTP3853,Europe/Paris,2,ORE, +ORE:SP:3865,1,"Mordelles Eglise",48.071883,-1.85024,-1,0,ORE:SA:CTP3852,Europe/Paris,2,ORE, +ORE:SP:3869,1,"Mordelles Pâtis",48.073924,-1.85372,-1,0,ORE:SA:CTP3851,Europe/Paris,2,ORE, +ORE:SP:3880,1,"Morvan Lebesque",48.071465,-1.841111,-1,0,ORE:SA:CTP3880,Europe/Paris,0,ORE, +ORE:SP:3881,1,"Collège St-Yves",48.073566,-1.851712,-1,0,ORE:SA:CTP3881,Europe/Paris,0,ORE, +ORE:SP:3901,1,"Bois Esnault",47.999909,-1.696968,-1,0,ORE:SA:CTP3901,Europe/Paris,2,ORE, +ORE:SP:3902,1,"Caliorne",48.006505,-1.69847,-1,0,ORE:SA:CTP3902,Europe/Paris,2,ORE, +ORE:SP:3903,1,"Mouton Blanc",48.010649,-1.700885,-1,0,ORE:SA:CTP3903,Europe/Paris,2,ORE, +ORE:SP:3904,1,"Chemin Vert",48.012935,-1.702976,-1,0,ORE:SA:CTP3904,Europe/Paris,2,ORE, +ORE:SP:3905,1,"Pont-Péan Mairie",48.010604,-1.707005,-1,0,ORE:SA:CTP3905,Europe/Paris,2,ORE, +ORE:SP:3906,1,"Rivaudière",48.013631,-1.707588,-1,0,ORE:SA:CTP3906,Europe/Paris,2,ORE, +ORE:SP:3907,1,"Fontaine Blanche",48.016278,-1.705639,-1,0,ORE:SA:CTP3907,Europe/Paris,2,ORE, +ORE:SP:3908,1,"Renaissance",48.019925,-1.706935,-1,0,ORE:SA:CTP3908,Europe/Paris,2,ORE, +ORE:SP:3909,1,"Renaissance",48.01986,-1.707123,-1,0,ORE:SA:CTP3908,Europe/Paris,2,ORE, +ORE:SP:3910,1,"Fontaine Blanche",48.016959,-1.705245,-1,0,ORE:SA:CTP3907,Europe/Paris,2,ORE, +ORE:SP:3911,1,"Rivaudière",48.01369,-1.707704,-1,0,ORE:SA:CTP3906,Europe/Paris,2,ORE, +ORE:SP:3912,1,"Pont-Péan Mairie",48.010772,-1.706394,-1,0,ORE:SA:CTP3905,Europe/Paris,2,ORE, +ORE:SP:3913,1,"Chemin Vert",48.013,-1.703093,-1,0,ORE:SA:CTP3904,Europe/Paris,2,ORE, +ORE:SP:3914,1,"Mouton Blanc",48.010354,-1.701141,-1,0,ORE:SA:CTP3903,Europe/Paris,2,ORE, +ORE:SP:3915,1,"Caliorne",48.006145,-1.698543,-1,0,ORE:SA:CTP3902,Europe/Paris,2,ORE, +ORE:SP:3924,1,"Bois Esnault",48.000008,-1.696769,-1,0,ORE:SA:CTP3901,Europe/Paris,2,ORE, +ORE:SP:3951,1,"Cropy",48.225212,-1.570409,-1,0,ORE:SA:CTP3951,Europe/Paris,2,ORE, +ORE:SP:3952,1,"Chesnais",48.223261,-1.576352,-1,0,ORE:SA:CTP3952,Europe/Paris,2,ORE, +ORE:SP:3953,1,"Bourg",48.217907,-1.581457,-1,0,ORE:SA:CTP3953,Europe/Paris,2,ORE, +ORE:SP:3954,1,"Terrain des Sports",48.21475,-1.586501,-1,0,ORE:SA:CTP3954,Europe/Paris,2,ORE, +ORE:SP:3955,1,"Tronchay",48.211688,-1.590809,-1,0,ORE:SA:CTP3955,Europe/Paris,2,ORE, +ORE:SP:3956,1,"Oliverie",48.197922,-1.599137,-1,0,ORE:SA:CTP3956,Europe/Paris,0,ORE, +ORE:SP:3957,1,"Oliverie",48.197535,-1.599247,-1,0,ORE:SA:CTP3956,Europe/Paris,0,ORE, +ORE:SP:3958,1,"Lande Saint-Denis",48.203176,-1.595,-1,0,ORE:SA:CTP3958,Europe/Paris,0,ORE, +ORE:SP:3959,1,"Tronchay",48.211771,-1.590509,-1,0,ORE:SA:CTP3955,Europe/Paris,2,ORE, +ORE:SP:3960,1,"Terrain des Sports",48.214637,-1.586893,-1,0,ORE:SA:CTP3954,Europe/Paris,2,ORE, +ORE:SP:3961,1,"Bourg",48.217752,-1.581363,-1,0,ORE:SA:CTP3953,Europe/Paris,2,ORE, +ORE:SP:3962,1,"Chesnais",48.223126,-1.576679,-1,0,ORE:SA:CTP3952,Europe/Paris,2,ORE, +ORE:SP:3964,1,"Lande Saint-Denis",48.203759,-1.594768,-1,0,ORE:SA:CTP3958,Europe/Paris,0,ORE, +ORE:SP:4001,1,"Timonière",48.137043,-1.526335,-1,0,ORE:SA:CTP4001,Europe/Paris,2,ORE, +ORE:SP:4002,1,"Verdaudais",48.136905,-1.533137,-1,0,ORE:SA:CTP4002,Europe/Paris,2,ORE, +ORE:SP:4003,1,"Acigné Mairie",48.134242,-1.534801,-1,0,ORE:SA:CTP4003,Europe/Paris,2,ORE, +ORE:SP:4004,1,"Foyer",48.133958,-1.537791,-1,0,ORE:SA:CTP4004,Europe/Paris,2,ORE, +ORE:SP:4006,1,"Pont d'Ohin",48.137273,-1.549814,-1,0,ORE:SA:CTP4006,Europe/Paris,2,ORE, +ORE:SP:4007,1,"Boulais",48.139094,-1.558744,-1,0,ORE:SA:CTP4007,Europe/Paris,2,ORE, +ORE:SP:4008,1,"Boulais",48.139504,-1.561471,-1,0,ORE:SA:CTP4007,Europe/Paris,2,ORE, +ORE:SP:4009,1,"Pont d'Ohin",48.136816,-1.548448,-1,0,ORE:SA:CTP4006,Europe/Paris,2,ORE, +ORE:SP:4010,1,"Lande",48.134632,-1.542142,-1,0,ORE:SA:CTP4010,Europe/Paris,2,ORE, +ORE:SP:4011,1,"Foyer",48.13387,-1.537546,-1,0,ORE:SA:CTP4004,Europe/Paris,2,ORE, +ORE:SP:4012,1,"Acigné Mairie",48.134151,-1.534705,-1,0,ORE:SA:CTP4003,Europe/Paris,2,ORE, +ORE:SP:4013,1,"Verdaudais",48.137246,-1.532829,-1,0,ORE:SA:CTP4002,Europe/Paris,2,ORE, +ORE:SP:4018,1,"Lande",48.134021,-1.540447,-1,0,ORE:SA:CTP4010,Europe/Paris,2,ORE, +ORE:SP:4019,1,"Botrel",48.14065,-1.527479,-1,0,ORE:SA:CTP4019,Europe/Paris,2,ORE, +ORE:SP:4020,1,"Botrel",48.140166,-1.527351,-1,0,ORE:SA:CTP4019,Europe/Paris,2,ORE, +ORE:SP:4053,1,"Métairie",48.17951,-1.729201,-1,0,ORE:SA:CTP4053,Europe/Paris,2,ORE, +ORE:SP:4054,1,"Mairie",48.177108,-1.732207,-1,0,ORE:SA:CTP4054,Europe/Paris,2,ORE, +ORE:SP:4055,1,"Viennais",48.174111,-1.735204,-1,0,ORE:SA:CTP4055,Europe/Paris,2,ORE, +ORE:SP:4056,1,"Sénestrais",48.17016,-1.736188,-1,0,ORE:SA:CTP4056,Europe/Paris,2,ORE, +ORE:SP:4057,1,"Sénestrais",48.170401,-1.736205,-1,0,ORE:SA:CTP4056,Europe/Paris,2,ORE, +ORE:SP:4058,1,"Viennais",48.173991,-1.735178,-1,0,ORE:SA:CTP4055,Europe/Paris,2,ORE, +ORE:SP:4059,1,"Mairie",48.17669,-1.732757,-1,0,ORE:SA:CTP4054,Europe/Paris,2,ORE, +ORE:SP:4060,1,"Métairie",48.179271,-1.729299,-1,0,ORE:SA:CTP4053,Europe/Paris,2,ORE, +ORE:SP:4062,1,"La Brosse",48.176749,-1.722096,-1,0,ORE:SA:CTP2837,Europe/Paris,2,ORE, +ORE:SP:4066,1,"Quatre Vents",48.168594,-1.742983,-1,0,ORE:SA:CTP4066,Europe/Paris,0,ORE, +ORE:SP:4067,1,"Quatre Vents",48.168976,-1.74251,-1,0,ORE:SA:CTP4066,Europe/Paris,0,ORE, +ORE:SP:4069,1,"Besneraie",48.183129,-1.726001,-1,0,ORE:SA:CTP4069,Europe/Paris,2,ORE, +ORE:SP:4073,1,"Besneraie",48.182534,-1.72736,-1,0,ORE:SA:CTP4069,Europe/Paris,2,ORE, +ORE:SP:4101,1,"Corps-Nuds Gare",47.985025,-1.576372,-1,0,ORE:SA:CTP4101,Europe/Paris,0,ORE, +ORE:SP:4102,1,"Huberdières",47.982393,-1.580817,-1,0,ORE:SA:CTP4102,Europe/Paris,0,ORE, +ORE:SP:4103,1,"Place de Kildare",47.977794,-1.585033,-1,0,ORE:SA:CTP4103,Europe/Paris,2,ORE, +ORE:SP:4104,1,"Corps-Nuds Mairie",47.979393,-1.587834,-1,0,ORE:SA:CTP4104,Europe/Paris,2,ORE, +ORE:SP:4105,1,"Chêne Hervé",47.982053,-1.588248,-1,0,ORE:SA:CTP4105,Europe/Paris,2,ORE, +ORE:SP:4108,1,"Chêne Hervé",47.981897,-1.588461,-1,0,ORE:SA:CTP4105,Europe/Paris,2,ORE, +ORE:SP:4109,1,"Corps-Nuds Mairie",47.97901,-1.587893,-1,0,ORE:SA:CTP4104,Europe/Paris,2,ORE, +ORE:SP:4110,1,"Place de Kildare",47.977719,-1.585507,-1,0,ORE:SA:CTP4103,Europe/Paris,2,ORE, +ORE:SP:4111,1,"Huberdières",47.982567,-1.580278,-1,0,ORE:SA:CTP4102,Europe/Paris,0,ORE, +ORE:SP:4112,1,"Corps-Nuds Gare",47.985302,-1.576027,-1,0,ORE:SA:CTP4101,Europe/Paris,0,ORE, +ORE:SP:4151,1,"Anjou",48.109864,-1.481103,-1,0,ORE:SA:CTP4151,Europe/Paris,2,ORE, +ORE:SP:4152,1,"Mainguère",48.108998,-1.47848,-1,0,ORE:SA:CTP4152,Europe/Paris,2,ORE, +ORE:SP:4153,1,"Saules",48.107127,-1.479136,-1,0,ORE:SA:CTP4153,Europe/Paris,2,ORE, +ORE:SP:4154,1,"Provence",48.107516,-1.482935,-1,0,ORE:SA:CTP4154,Europe/Paris,2,ORE, +ORE:SP:4155,1,"Destiers",48.107643,-1.486165,-1,0,ORE:SA:CTP4155,Europe/Paris,2,ORE, +ORE:SP:4156,1,"Pâtis",48.109445,-1.503174,-1,0,ORE:SA:CTP4156,Europe/Paris,0,ORE, +ORE:SP:4157,1,"Pâtis",48.109265,-1.503198,-1,0,ORE:SA:CTP4156,Europe/Paris,2,ORE, +ORE:SP:4158,1,"Destiers",48.107535,-1.486118,-1,0,ORE:SA:CTP4155,Europe/Paris,2,ORE, +ORE:SP:4159,1,"Provence",48.107463,-1.482571,-1,0,ORE:SA:CTP4154,Europe/Paris,2,ORE, +ORE:SP:4160,1,"Saules",48.107291,-1.478381,-1,0,ORE:SA:CTP4153,Europe/Paris,2,ORE, +ORE:SP:4161,1,"Mainguère",48.109064,-1.478264,-1,0,ORE:SA:CTP4152,Europe/Paris,2,ORE, +ORE:SP:4162,1,"Turbanière",48.108409,-1.507807,-1,0,ORE:SA:CTP4162,Europe/Paris,2,ORE, +ORE:SP:4163,1,"Turbanière",48.108239,-1.507377,-1,0,ORE:SA:CTP4162,Europe/Paris,2,ORE, +ORE:SP:4201,1,"Croix Blanche",48.051925,-1.797682,-1,0,ORE:SA:CTP4201,Europe/Paris,2,ORE, +ORE:SP:4202,1,"Calvaire",48.051992,-1.79066,-1,0,ORE:SA:CTP4202,Europe/Paris,2,ORE, +ORE:SP:4203,1,"Alfred de Musset",48.05512,-1.790086,-1,0,ORE:SA:CTP4203,Europe/Paris,2,ORE, +ORE:SP:4204,1,"Avenir",48.053984,-1.783762,-1,0,ORE:SA:CTP4204,Europe/Paris,2,ORE, +ORE:SP:4205,1,"Grippay",48.0582,-1.776254,-1,0,ORE:SA:CTP4205,Europe/Paris,2,ORE, +ORE:SP:4206,1,"Mare Doux",48.063257,-1.772312,-1,0,ORE:SA:CTP4206,Europe/Paris,0,ORE, +ORE:SP:4207,1,"Mare Doux",48.063429,-1.772449,-1,0,ORE:SA:CTP4206,Europe/Paris,0,ORE, +ORE:SP:4208,1,"Grippay",48.057762,-1.77645,-1,0,ORE:SA:CTP4205,Europe/Paris,2,ORE, +ORE:SP:4209,1,"Avenir",48.054115,-1.783746,-1,0,ORE:SA:CTP4204,Europe/Paris,2,ORE, +ORE:SP:4210,1,"Alfred de Musset",48.054885,-1.790003,-1,0,ORE:SA:CTP4203,Europe/Paris,2,ORE, +ORE:SP:4211,1,"Calvaire",48.052438,-1.790592,-1,0,ORE:SA:CTP4202,Europe/Paris,2,ORE, +ORE:SP:4212,1,"Croix Blanche",48.052587,-1.797541,-1,0,ORE:SA:CTP4201,Europe/Paris,2,ORE, +ORE:SP:4252,1,"Rochers",48.123011,-1.860726,-1,0,ORE:SA:CTP4252,Europe/Paris,2,ORE, +ORE:SP:4253,1,"Piardière",48.121939,-1.846158,-1,0,ORE:SA:CTP4253,Europe/Paris,2,ORE, +ORE:SP:4254,1,"Grippière",48.121285,-1.837645,-1,0,ORE:SA:CTP4254,Europe/Paris,2,ORE, +ORE:SP:4255,1,"Grippière",48.12143,-1.83765,-1,0,ORE:SA:CTP4254,Europe/Paris,2,ORE, +ORE:SP:4256,1,"Piardière",48.122037,-1.846175,-1,0,ORE:SA:CTP4253,Europe/Paris,2,ORE, +ORE:SP:4257,1,"Rochers",48.123122,-1.860835,-1,0,ORE:SA:CTP4252,Europe/Paris,2,ORE, +ORE:SP:4264,1,"Place de la Mairie",48.123069,-1.865899,-1,0,ORE:SA:CTP4264,Europe/Paris,2,ORE, +ORE:SP:4267,1,"Ville aux Archers",48.122595,-1.868366,-1,0,ORE:SA:CTP4267,Europe/Paris,2,ORE, +ORE:SP:4269,1,"Place de la Mairie",48.123099,-1.866053,-1,0,ORE:SA:CTP4264,Europe/Paris,2,ORE, +ORE:SP:4270,1,"Ville aux Archers",48.122657,-1.868554,-1,0,ORE:SA:CTP4267,Europe/Paris,2,ORE, +ORE:SP:4301,1,"Hautière",48.122924,-1.821633,-1,0,ORE:SA:CTP4301,Europe/Paris,0,ORE, +ORE:SP:4302,1,"ESAT La Hautière",48.118827,-1.822672,-1,0,ORE:SA:CTP4302,Europe/Paris,0,ORE, +ORE:SP:4303,1,"L'Hermitage Gare",48.123875,-1.817721,-1,0,ORE:SA:CTP4303,Europe/Paris,2,ORE, +ORE:SP:4304,1,"L'Hermitage Centre",48.125578,-1.815962,-1,0,ORE:SA:CTP4304,Europe/Paris,2,ORE, +ORE:SP:4305,1,"Village",48.124609,-1.811557,-1,0,ORE:SA:CTP4305,Europe/Paris,2,ORE, +ORE:SP:4306,1,"Clairefontaine",48.123163,-1.806172,-1,0,ORE:SA:CTP4306,Europe/Paris,2,ORE, +ORE:SP:4307,1,"Clairefontaine",48.123516,-1.807448,-1,0,ORE:SA:CTP4306,Europe/Paris,2,ORE, +ORE:SP:4308,1,"Village",48.125058,-1.813014,-1,0,ORE:SA:CTP4305,Europe/Paris,2,ORE, +ORE:SP:4310,1,"L'Hermitage Gare",48.12375,-1.817992,-1,0,ORE:SA:CTP4303,Europe/Paris,2,ORE, +ORE:SP:4311,1,"Hautière",48.12295,-1.82085,-1,0,ORE:SA:CTP4301,Europe/Paris,2,ORE, +ORE:SP:4315,1,"Noë Biche",48.122997,-1.802546,-1,0,ORE:SA:CTP4315,Europe/Paris,2,ORE, +ORE:SP:4316,1,"Noë Biche",48.122778,-1.801123,-1,0,ORE:SA:CTP4315,Europe/Paris,2,ORE, +ORE:SP:4322,1,"L'Hermitage Centre",48.125447,-1.815491,-1,0,ORE:SA:CTP4304,Europe/Paris,2,ORE, +ORE:SP:4351,1,"Parc d'Activités",48.01727,-1.660332,-1,0,ORE:SA:CTP4351,Europe/Paris,2,ORE, +ORE:SP:4352,1,"Champ Mulon",48.01881,-1.657566,-1,0,ORE:SA:CTP4352,Europe/Paris,2,ORE, +ORE:SP:4353,1,"Paul Féval",48.017654,-1.654585,-1,0,ORE:SA:CTP4353,Europe/Paris,2,ORE, +ORE:SP:4354,1,"Paul Féval",48.017653,-1.654401,-1,0,ORE:SA:CTP4353,Europe/Paris,2,ORE, +ORE:SP:4355,1,"Champ Mulon",48.01883,-1.657816,-1,0,ORE:SA:CTP4352,Europe/Paris,2,ORE, +ORE:SP:4356,1,"Croix du Pigeonnet",48.017076,-1.664587,-1,0,ORE:SA:CTP4356,Europe/Paris,2,ORE, +ORE:SP:4357,1,"Croix du Pigeonnet",48.017063,-1.664746,-1,0,ORE:SA:CTP4356,Europe/Paris,2,ORE, +ORE:SP:4358,1,"Croix Faucheux",48.017732,-1.649365,-1,0,ORE:SA:CTP4358,Europe/Paris,2,ORE, +ORE:SP:4359,1,"Leuzières",48.021537,-1.653502,-1,0,ORE:SA:CTP4359,Europe/Paris,2,ORE, +ORE:SP:4360,1,"Leuzières",48.021547,-1.653716,-1,0,ORE:SA:CTP4359,Europe/Paris,2,ORE, +ORE:SP:4361,1,"Croix Faucheux",48.017691,-1.649474,-1,0,ORE:SA:CTP4358,Europe/Paris,2,ORE, +ORE:SP:4362,1,"Alexandre Gilois",48.016196,-1.651517,-1,0,ORE:SA:CTP4362,Europe/Paris,2,ORE, +ORE:SP:4363,1,"Alexandre Gilois",48.016323,-1.651341,-1,0,ORE:SA:CTP4362,Europe/Paris,2,ORE, +ORE:SP:4379,1,"Collège Saint-Paul",48.017946,-1.660456,-1,0,ORE:SA:CTP4379,Europe/Paris,0,ORE, +ORE:SP:4381,1,"Collège Saint-Paul",48.018026,-1.661279,-1,0,ORE:SA:CTP4379,Europe/Paris,0,ORE, +ORE:SP:4401,1,"Le Verger Eglise",48.069918,-1.932427,-1,0,ORE:SA:CTP4401,Europe/Paris,0,ORE, +ORE:SP:4402,1,"Bouvrais",48.070241,-1.928997,-1,0,ORE:SA:CTP4402,Europe/Paris,2,ORE, +ORE:SP:4403,1,"Bouvrais",48.070056,-1.930273,-1,0,ORE:SA:CTP4402,Europe/Paris,2,ORE, +ORE:SP:4408,1,"Le Verger Eglise",48.07003,-1.93229,-1,0,ORE:SA:CTP4401,Europe/Paris,0,ORE, +ORE:SP:4451,1,"Clairville",48.180991,-1.850524,-1,0,ORE:SA:CTP4451,Europe/Paris,0,ORE, +ORE:SP:4452,1,"Croix Simon",48.181419,-1.853554,-1,0,ORE:SA:CTP4452,Europe/Paris,2,ORE, +ORE:SP:4453,1,"Clayes Centre",48.176019,-1.85261,-1,0,ORE:SA:CTP4453,Europe/Paris,2,ORE, +ORE:SP:4454,1,"Terseul",48.180941,-1.844779,-1,0,ORE:SA:CTP4454,Europe/Paris,0,ORE, +ORE:SP:4455,1,"Terseul",48.180907,-1.845046,-1,0,ORE:SA:CTP4454,Europe/Paris,0,ORE, +ORE:SP:4457,1,"Clayes Centre",48.176249,-1.852479,-1,0,ORE:SA:CTP4453,Europe/Paris,2,ORE, +ORE:SP:4458,1,"Croix Simon",48.182349,-1.853067,-1,0,ORE:SA:CTP4452,Europe/Paris,2,ORE, +ORE:SP:4459,1,"La Cour aux Pages",48.178132,-1.85278,-1,0,ORE:SA:CTP4459,Europe/Paris,2,ORE, +ORE:SP:4460,1,"La Cour aux Pages",48.178058,-1.852853,-1,0,ORE:SA:CTP4459,Europe/Paris,2,ORE, +ORE:SP:4502,1,"Gévezé Mairie",48.220986,-1.788723,-1,0,ORE:SA:CTP4502,Europe/Paris,2,ORE, +ORE:SP:4503,1,"Flume",48.218704,-1.784055,-1,0,ORE:SA:CTP4503,Europe/Paris,2,ORE, +ORE:SP:4504,1,"Flume",48.21819,-1.78315,-1,0,ORE:SA:CTP4503,Europe/Paris,2,ORE, +ORE:SP:4505,1,"Gévezé Mairie",48.221027,-1.7882,-1,0,ORE:SA:CTP4502,Europe/Paris,2,ORE, +ORE:SP:4507,1,"Cheval Blanc",48.221783,-1.802327,-1,0,ORE:SA:CTP4507,Europe/Paris,2,ORE, +ORE:SP:4508,1,"Coualeuc",48.224482,-1.800785,-1,0,ORE:SA:CTP4508,Europe/Paris,2,ORE, +ORE:SP:4509,1,"Coualeuc",48.224645,-1.800449,-1,0,ORE:SA:CTP4508,Europe/Paris,2,ORE, +ORE:SP:4510,1,"Prés Verts",48.223615,-1.79363,-1,0,ORE:SA:CTP4510,Europe/Paris,2,ORE, +ORE:SP:4511,1,"Prés Verts",48.223978,-1.793771,-1,0,ORE:SA:CTP4510,Europe/Paris,2,ORE, +ORE:SP:4551,1,"Saint-Armel Eglise",48.013468,-1.590988,-1,0,ORE:SA:CTP4551,Europe/Paris,2,ORE, +ORE:SP:4552,1,"Saint-Armel Gare",48.013906,-1.594286,-1,0,ORE:SA:CTP4552,Europe/Paris,2,ORE, +ORE:SP:4553,1,"Lande du Jardin",48.01463,-1.598304,-1,0,ORE:SA:CTP4553,Europe/Paris,2,ORE, +ORE:SP:4554,1,"Lande du Jardin",48.014788,-1.598383,-1,0,ORE:SA:CTP4553,Europe/Paris,2,ORE, +ORE:SP:4555,1,"Saint-Armel Gare",48.014056,-1.594394,-1,0,ORE:SA:CTP4552,Europe/Paris,2,ORE, +ORE:SP:4601,1,"Chevaigné Mairie",48.211782,-1.630337,-1,0,ORE:SA:CTP4601,Europe/Paris,2,ORE, +ORE:SP:4602,1,"Fonderies",48.214316,-1.628818,-1,0,ORE:SA:CTP4602,Europe/Paris,2,ORE, +ORE:SP:4603,1,"Pommiers",48.210932,-1.626041,-1,0,ORE:SA:CTP4603,Europe/Paris,2,ORE, +ORE:SP:4604,1,"Pommiers",48.209944,-1.625841,-1,0,ORE:SA:CTP4603,Europe/Paris,2,ORE, +ORE:SP:4605,1,"Fonderies",48.214395,-1.628958,-1,0,ORE:SA:CTP4602,Europe/Paris,2,ORE, +ORE:SP:4606,1,"Chevaigné Mairie",48.211961,-1.630307,-1,0,ORE:SA:CTP4601,Europe/Paris,2,ORE, +ORE:SP:4607,1,"Chevaigné Gare",48.207641,-1.630846,-1,0,ORE:SA:CTP4607,Europe/Paris,2,ORE, +ORE:SP:4608,1,"Chevaigné Gare",48.207963,-1.630549,-1,0,ORE:SA:CTP4607,Europe/Paris,2,ORE, +ORE:SP:4609,1,"Chopinais",48.199145,-1.627451,-1,0,ORE:SA:CTP4609,Europe/Paris,0,ORE, +ORE:SP:4610,1,"Chopinais",48.199223,-1.627788,-1,0,ORE:SA:CTP4609,Europe/Paris,0,ORE, +ORE:SP:4652,1,"Chêne Vert",48.105043,-1.872646,-1,0,ORE:SA:CTP4652,Europe/Paris,2,ORE, +ORE:SP:4653,1,"Saint-Melaine",48.103336,-1.869545,-1,0,ORE:SA:CTP4653,Europe/Paris,2,ORE, +ORE:SP:4654,1,"Saint-Melaine",48.103469,-1.869393,-1,0,ORE:SA:CTP4653,Europe/Paris,2,ORE, +ORE:SP:4700,1,"Point du Jour",47.978438,-1.713688,-1,0,ORE:SA:CTP4700,Europe/Paris,2,ORE, +ORE:SP:4701,1,"Point du Jour",47.978606,-1.712988,-1,0,ORE:SA:CTP4700,Europe/Paris,2,ORE, +ORE:SP:4702,1,"Orée du Bois",47.975433,-1.717111,-1,0,ORE:SA:CTP4702,Europe/Paris,2,ORE, +ORE:SP:4703,1,"Orée du Bois",47.975507,-1.717175,-1,0,ORE:SA:CTP4702,Europe/Paris,2,ORE, +ORE:SP:4704,1,"Laillé Eglise",47.978117,-1.72041,-1,0,ORE:SA:CTP4704,Europe/Paris,2,ORE, +ORE:SP:4705,1,"Laillé Eglise",47.977983,-1.719683,-1,0,ORE:SA:CTP4704,Europe/Paris,2,ORE, +ORE:SP:4706,1,"Châtaigneraie",47.97919,-1.724314,-1,0,ORE:SA:CTP4706,Europe/Paris,2,ORE, +ORE:SP:4707,1,"Châtaigneraie",47.979287,-1.724331,-1,0,ORE:SA:CTP4706,Europe/Paris,2,ORE, +ORE:SP:4708,1,"Gingouillère",47.980092,-1.730909,-1,0,ORE:SA:CTP4708,Europe/Paris,2,ORE, +ORE:SP:4709,1,"Bout de Lande",47.979926,-1.693073,-1,0,ORE:SA:CTP4709,Europe/Paris,0,ORE, +ORE:SP:4710,1,"Bout de Lande",47.979836,-1.693264,-1,0,ORE:SA:CTP4709,Europe/Paris,0,ORE, +ORE:SP:4711,1,"Estuaires",47.975394,-1.691403,-1,0,ORE:SA:CTP4711,Europe/Paris,0,ORE, +ORE:SP:4712,1,"Estuaires",47.974816,-1.69136,-1,0,ORE:SA:CTP4711,Europe/Paris,0,ORE, +ORE:SP:4721,1,"Château d'Eau",47.974425,-1.697982,-1,0,ORE:SA:CTP4721,Europe/Paris,0,ORE, +ORE:SP:4722,1,"Château d'Eau",47.974626,-1.698507,-1,0,ORE:SA:CTP4721,Europe/Paris,0,ORE, +ORE:SP:4760,1,"Gingouillère",47.980213,-1.730942,-1,0,ORE:SA:CTP4708,Europe/Paris,2,ORE, +ORE:SP:4800,1,"Bécherel Centre",48.296245,-1.945373,-1,0,ORE:SA:CTP4800,Europe/Paris,2,ORE, +ORE:SP:4801,1,"Bécherel Centre",48.296897,-1.943729,-1,0,ORE:SA:CTP4800,Europe/Paris,2,ORE, +ORE:SP:4802,1,"Sévignière",48.29968,-1.93946,-1,0,ORE:SA:CTP4802,Europe/Paris,0,ORE, +ORE:SP:4803,1,"Sévignière",48.2997,-1.939289,-1,0,ORE:SA:CTP4802,Europe/Paris,0,ORE, +ORE:SP:4850,1,"Chapelle-Chaussée",48.271961,-1.856918,-1,0,ORE:SA:CTP4850,Europe/Paris,2,ORE, +ORE:SP:4851,1,"Chapelle-Chaussée",48.272026,-1.856733,-1,0,ORE:SA:CTP4850,Europe/Paris,2,ORE, +ORE:SP:4900,1,"Langan Bourg",48.245235,-1.853734,-1,0,ORE:SA:CTP4900,Europe/Paris,2,ORE, +ORE:SP:4901,1,"Langan Bourg",48.24538,-1.854062,-1,0,ORE:SA:CTP4900,Europe/Paris,2,ORE, +ORE:SP:4950,1,"Miniac Eglise",48.284693,-1.930733,-1,0,ORE:SA:CTP4950,Europe/Paris,2,ORE, +ORE:SP:5001,1,"J.F. Kennedy",48.121295,-1.710943,-1,0,ORE:SA:JFK,Europe/Paris,2,ORE, +ORE:SP:5002,1,"Villejean-Université",48.121197,-1.703882,-1,0,ORE:SA:CTP1297,Europe/Paris,2,ORE, +ORE:SP:5003,1,"Pontchaillou",48.121535,-1.69335,-1,0,ORE:SA:PON,Europe/Paris,2,ORE, +ORE:SP:5004,1,"Anatole France",48.11805,-1.687529,-1,0,ORE:SA:CTP1046,Europe/Paris,2,ORE, +ORE:SP:5005,1,"Sainte-Anne",48.114455,-1.680484,-1,0,ORE:SA:CTP1014,Europe/Paris,2,ORE, +ORE:SP:5006,1,"République",48.109667,-1.679224,-1,0,ORE:SA:CTP1016,Europe/Paris,2,ORE, +ORE:SP:5007,1,"Charles de Gaulle",48.105473,-1.677107,-1,0,ORE:SA:CTP1121,Europe/Paris,2,ORE, +ORE:SP:5008,1,"Gares",48.103779,-1.672252,-1,0,ORE:SA:CTP1056,Europe/Paris,2,ORE, +ORE:SP:5009,1,"Jacques Cartier",48.097566,-1.675508,-1,0,ORE:SA:CTP1124,Europe/Paris,2,ORE, +ORE:SP:5010,1,"Clemenceau",48.093565,-1.674477,-1,0,ORE:SA:CTP1445,Europe/Paris,2,ORE, +ORE:SP:5011,1,"Henri Fréville",48.087577,-1.674859,-1,0,ORE:SA:CTP1447,Europe/Paris,2,ORE, +ORE:SP:5012,1,"Italie",48.086524,-1.667646,-1,0,ORE:SA:CTP1646,Europe/Paris,2,ORE, +ORE:SP:5013,1,"Triangle",48.086405,-1.660521,-1,0,ORE:SA:CTP1441,Europe/Paris,2,ORE, +ORE:SP:5014,1,"Le Blosne",48.087702,-1.654294,-1,0,ORE:SA:CTP1440,Europe/Paris,2,ORE, +ORE:SP:5015,1,"La Poterie",48.08745,-1.644513,-1,0,ORE:SA:CTP1065,Europe/Paris,2,ORE, +ORE:SP:5017,1,"Villejean-Université",48.121283,-1.703879,-1,0,ORE:SA:CTP1297,Europe/Paris,2,ORE, +ORE:SP:5018,1,"Pontchaillou",48.121578,-1.693461,-1,0,ORE:SA:PON,Europe/Paris,2,ORE, +ORE:SP:5019,1,"Anatole France",48.118119,-1.687454,-1,0,ORE:SA:CTP1046,Europe/Paris,2,ORE, +ORE:SP:5020,1,"Sainte-Anne",48.114501,-1.680398,-1,0,ORE:SA:CTP1014,Europe/Paris,2,ORE, +ORE:SP:5021,1,"République",48.109712,-1.679138,-1,0,ORE:SA:CTP1016,Europe/Paris,2,ORE, +ORE:SP:5022,1,"Charles de Gaulle",48.105541,-1.677023,-1,0,ORE:SA:CTP1121,Europe/Paris,2,ORE, +ORE:SP:5023,1,"Gares",48.103875,-1.672183,-1,0,ORE:SA:CTP1056,Europe/Paris,2,ORE, +ORE:SP:5024,1,"Jacques Cartier",48.097605,-1.675419,-1,0,ORE:SA:CTP1124,Europe/Paris,2,ORE, +ORE:SP:5025,1,"Clemenceau",48.093653,-1.674394,-1,0,ORE:SA:CTP1445,Europe/Paris,2,ORE, +ORE:SP:5026,1,"Henri Fréville",48.087673,-1.674777,-1,0,ORE:SA:CTP1447,Europe/Paris,2,ORE, +ORE:SP:5027,1,"Italie",48.086598,-1.667741,-1,0,ORE:SA:CTP1646,Europe/Paris,2,ORE, +ORE:SP:5028,1,"Triangle",48.086477,-1.660654,-1,0,ORE:SA:CTP1441,Europe/Paris,2,ORE, +ORE:SP:5029,1,"Le Blosne",48.087765,-1.654439,-1,0,ORE:SA:CTP1440,Europe/Paris,2,ORE, +ORE:SP:5030,1,"La Poterie",48.087531,-1.644633,-1,0,ORE:SA:CTP1065,Europe/Paris,2,ORE, +ORE:SP:6000,1,"Romillé Collège",48.218676,-1.893365,-1,0,ORE:SA:CTP6000,Europe/Paris,2,ORE, +ORE:SP:6001,1,"Frères Aubert",48.216915,-1.89045,-1,0,ORE:SA:CTP6001,Europe/Paris,2,ORE, +ORE:SP:6002,1,"Frères Aubert",48.216709,-1.890934,-1,0,ORE:SA:CTP6001,Europe/Paris,2,ORE, +ORE:SP:6003,1,"Romillé Mairie",48.214912,-1.892418,-1,0,ORE:SA:CTP6003,Europe/Paris,2,ORE, +ORE:SP:6004,1,"Romillé Mairie",48.215678,-1.89183,-1,0,ORE:SA:CTP6003,Europe/Paris,2,ORE, +ORE:SP:6005,1,"Mettrie Templiers",48.212494,-1.890895,-1,0,ORE:SA:CTP6005,Europe/Paris,2,ORE, +ORE:SP:6006,1,"Mettrie Templiers",48.212334,-1.890901,-1,0,ORE:SA:CTP6005,Europe/Paris,2,ORE, +ORE:SP:9208,1,"Chèques Postaux",48.108268,-1.69307,-1,0,ORE:SA:CTP1217,Europe/Paris,2,ORE, +ORE:SP:9209,1,"Vallès",48.10488,-1.709334,-1,0,ORE:SA:CTP9209,Europe/Paris,0,ORE, +SIN:SP:OCECarTER-87009696,1,"Gare de La Douzillère",47.338631,0.653003,-1,0,SIN:SA:OCE87009696,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87110296,1,"Azay-le-Rideau(Mairie)",47.26189,0.465921,-1,0,SIN:SA:OCE87110296,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87110320,1,"Neuille (Gendarmerie)",47.546386,0.551658,-1,0,SIN:SA:OCE87110320,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87110338,1,"St Christophe / Nais C.",47.615551,0.475275,-1,0,SIN:SA:OCE87110338,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87115337,1,"Azay-sur-Indre-Le Parad",47.209438,0.946106,-1,0,SIN:SA:OCE87115337,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87137810,1,"Chartres-Gare-Routière",48.447533,1.480534,-1,0,SIN:SA:OCE87137810,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87201541,1,"Châteauroux Gare Rout.",46.809648,1.698686,-1,0,SIN:SA:OCE87201541,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87201566,1,"Argenton-sur-Creuse-LEP",46.588875,1.518999,-1,0,SIN:SA:OCE87201566,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87201582,1,"St-Gaultier-Gendarmerie",46.634292,1.418469,-1,0,SIN:SA:OCE87201582,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87201608,1,"Le-Blanc-Pl-du-Bateau",46.630748,1.063564,-1,0,SIN:SA:OCE87201608,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87202440,1,"St-Savin",46.565795,0.863838,-1,0,SIN:SA:OCE87202440,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87202465,1,"Chauvigny",46.569697,0.644031,-1,0,SIN:SA:OCE87202465,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87202481,1,"Poitiers-Gare-Routière",46.582767,0.334016,-1,0,SIN:SA:OCE87202481,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87205575,1,"Chambray-CHR-Trousseau",47.347769,0.709996,-1,0,SIN:SA:OCE87205575,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87206771,1,"Le Tranger",46.95666,1.240265,-1,0,SIN:SA:OCE87206771,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87216663,1,"Surins-Carref-RN143",46.829162,1.564433,-1,0,SIN:SA:OCE87216663,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87216671,1,"Palluau-Mairie",46.944158,1.314719,-1,0,SIN:SA:OCE87216671,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87216689,1,"Flere-La-Rivière-Mairie",47.02083,1.107222,-1,0,SIN:SA:OCE87216689,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87279174,1,"Mehun-sur-Indre",46.840833,1.530832,-1,0,SIN:SA:OCE87279174,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87280057,1,"TOURS LYCEE GRANDMONT",47.360269,0.699989,-1,0,SIN:SA:OCE87280057,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87280065,1,"Bridoré-Carrefour-943",47.033049,1.095547,-1,0,SIN:SA:OCE87280065,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87299834,1,"Miannay",50.097221,1.721385,-1,0,SIN:SA:OCE87299834,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87299842,1,"Yzengremer",50.061104,1.521662,-1,0,SIN:SA:OCE87299842,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87304626,1,"Deols",46.826018,1.701323,-1,0,SIN:SA:OCE87304626,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87304642,1,"Issoudun-Place-de-la-G.",46.948607,1.985823,-1,0,SIN:SA:OCE87304642,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87304659,1,"Charost-café-du-Centre",46.99277,2.11583,-1,0,SIN:SA:OCE87304659,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87304691,1,"Avail",46.964073,2.05851,-1,0,SIN:SA:OCE87304691,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87309757,1,"Chaumont-sur-Tharonne",47.610616,1.904381,-1,0,SIN:SA:OCE87309757,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87309765,1,"St-Hilaire-La-Gravelle",47.924716,1.207213,-1,0,SIN:SA:OCE87309765,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87309773,1,"Mereau",47.162559,2.049801,-1,0,SIN:SA:OCE87309773,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87310813,1,"St-Florent-sur-Cher-M.",46.992677,2.245377,-1,0,SIN:SA:OCE87310813,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87310862,1,"Neuvy-Pailloux-4-Routes",46.886656,1.858561,-1,0,SIN:SA:OCE87310862,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87312546,1,"Mery-sur-Cher",47.246355,1.988267,-1,0,SIN:SA:OCE87312546,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87313395,1,"Gare de Poix-de-Picardie",49.777802,1.989828,-1,0,SIN:SA:OCE87313395,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87313759,1,"Gare de Abancourt",49.685665,1.77418,-1,0,SIN:SA:OCE87313759,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87313874,1,"Gare de Amiens",49.890532,2.308098,-1,0,SIN:SA:OCE87313874,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87314518,1,"Aubigny-sur-Nere-Mail",47.487775,2.437775,-1,0,SIN:SA:OCE87314518,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87314526,1,"Argent-sur-Sauldre",47.559993,2.447771,-1,0,SIN:SA:OCE87314526,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87314534,1,"Coullons",47.699165,2.492493,-1,0,SIN:SA:OCE87314534,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87314880,1,"Sancerre-Hôtel-du-Remp.",47.332492,2.836944,-1,0,SIN:SA:OCE87314880,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87314898,1,"St-Satur-Place-du-Marc.",47.339717,2.856941,-1,0,SIN:SA:OCE87314898,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87314906,1,"Bannay-Bourg",47.386944,2.885826,-1,0,SIN:SA:OCE87314906,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87317362,1,"Gare de Abbeville",50.102194,1.824485,-1,0,SIN:SA:OCE87317362,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87317495,1,"Gare de Chépy-Valines",50.06814,1.635563,-1,0,SIN:SA:OCE87317495,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87317503,1,"Gare de Feuquières-en-Vimeu-Fre",50.063305,1.589164,-1,0,SIN:SA:OCE87317503,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87317511,1,"Gare de Woincourt",50.058666,1.537138,-1,0,SIN:SA:OCE87317511,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87317529,1,"Gare de Le Tréport-Mers-Les-B",50.06272,1.376115,-1,0,SIN:SA:OCE87317529,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87317537,1,"Gare de Eu",50.05429,1.416892,-1,0,SIN:SA:OCE87317537,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87317701,1,"Lury-sur-Arnon",47.127325,2.058347,-1,0,SIN:SA:OCE87317701,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87317727,1,"Chéry-Centre",47.120783,2.04673,-1,0,SIN:SA:OCE87317727,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87321687,1,"Marigny-Centre",49.09861,-1.240283,-1,0,SIN:SA:OCE87321687,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87321745,1,"Gare de Penhoet",47.289885,-2.200876,-1,0,SIN:SA:OCE87321745,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87328195,1,"Gare de Thesee",47.322432,1.312006,-1,0,SIN:SA:OCE87328195,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87331397,1,"Epuisay-Eglise",47.900271,0.929716,-1,0,SIN:SA:OCE87331397,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87332635,1,"Mondoubleau-Station-Tot",47.979995,0.893323,-1,0,SIN:SA:OCE87332635,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87333005,1,"Pouzauges (centre)",46.780272,-0.839449,-1,0,SIN:SA:OCE87333005,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87334508,1,"Gare de La Poterie",48.092062,-1.630786,-1,0,SIN:SA:OCE87334508,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87337501,1,"Cormery-Pl-du-Croissant",47.268608,0.835268,-1,0,SIN:SA:OCE87337501,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87337527,1,"Reignac-Café-Brulé",47.226936,0.914997,-1,0,SIN:SA:OCE87337527,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87337543,1,"Chambourg-Chopin",47.182215,0.968046,-1,0,SIN:SA:OCE87337543,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87338574,1,"Montargis-OT",48.006943,2.743885,-1,0,SIN:SA:OCE87338574,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87340380,1,"Cormenon-Centre",47.967777,0.893054,-1,0,SIN:SA:OCE87340380,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87341156,1,"Lunery-Eglise",46.935567,2.268735,-1,0,SIN:SA:OCE87341156,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87343152,1,"Cloyes-Médiathèque",47.995194,1.235784,-1,0,SIN:SA:OCE87343152,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87344440,1,"Ste Gemme",46.90166,-0.287785,-1,0,SIN:SA:OCE87344440,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87352484,1,"Bagnoles-de-l'Orne O.T.",48.557217,-0.412509,-1,0,SIN:SA:OCE87352484,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87358556,1,"Droué (Centre)",48.039166,1.077213,-1,0,SIN:SA:OCE87358556,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87358564,1,"Sargé/Braye (Centre)",47.924439,0.85333,-1,0,SIN:SA:OCE87358564,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87358697,1,"Savigny/Braye (Centre)",47.880271,0.80971,-1,0,SIN:SA:OCE87358697,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87381509,1,"Gare de Mantes-la-Jolie",48.989687,1.703294,-1,0,SIN:SA:OCE87381509,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87388199,1,"Cérences (Centre)",48.933054,-1.435834,-1,0,SIN:SA:OCE87388199,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87389924,1,"St-Hilaire-Riez (Cent.)",46.726109,-1.974779,-1,0,SIN:SA:OCE87389924,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87391672,1,"Aube-Centre RN 26",48.739439,0.545554,-1,0,SIN:SA:OCE87391672,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87391680,1,"La Ferté-Macé Pl. Neust",48.590271,-0.355842,-1,0,SIN:SA:OCE87391680,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87391698,1,"Le Merlerault-Centre",48.700273,0.283877,-1,0,SIN:SA:OCE87391698,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87391706,1,"Nonant-Centre",48.704996,0.223604,-1,0,SIN:SA:OCE87391706,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87391714,1,"Ecouche-Centre",48.715549,-0.120842,-1,0,SIN:SA:OCE87391714,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87393256,1,"Gare de La Verrière",48.755593,1.94384,-1,0,SIN:SA:OCE87393256,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87393314,1,"Gare de Rambouillet",48.643788,1.831202,-1,0,SIN:SA:OCE87393314,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87393348,1,"Gare de Gazeran",48.625959,1.772769,-1,0,SIN:SA:OCE87393348,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87393488,1,"Gare de Dreux",48.731483,1.370166,-1,0,SIN:SA:OCE87393488,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87393595,1,"Gare de Verneuil-sur-Avre",48.742735,0.929201,-1,0,SIN:SA:OCE87393595,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87394007,1,"Gare de Chartres",48.448203,1.481226,-1,0,SIN:SA:OCE87394007,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87394114,1,"Gare de Epernon",48.605155,1.681418,-1,0,SIN:SA:OCE87394114,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87394130,1,"Gare de Maintenon",48.585364,1.592455,-1,0,SIN:SA:OCE87394130,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87394148,1,"Gare de St-Piat",48.542441,1.590103,-1,0,SIN:SA:OCE87394148,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87394155,1,"Gare de Jouy",48.51019,1.557496,-1,0,SIN:SA:OCE87394155,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87394171,1,"Gare de La Villette-St-Prest",48.482743,1.52292,-1,0,SIN:SA:OCE87394171,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87394296,1,"Gare de Nogent-le-Rotrou",48.325496,0.810058,-1,0,SIN:SA:OCE87394296,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87394403,1,"Gare de La Taye",48.407398,1.373239,-1,0,SIN:SA:OCE87394403,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87394411,1,"Gare de Bailleau-le-Pin",48.36683,1.325031,-1,0,SIN:SA:OCE87394411,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87394437,1,"Gare de Illiers-Combray",48.304019,1.244945,-1,0,SIN:SA:OCE87394437,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87394452,1,"Gare de Brou",48.215657,1.160602,-1,0,SIN:SA:OCE87394452,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87394486,1,"Gare de Arrou",48.099887,1.128189,-1,0,SIN:SA:OCE87394486,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87394494,1,"Gare de Courtalain-St-Pellerin",48.073829,1.126935,-1,0,SIN:SA:OCE87394494,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87396002,1,"Gare de Le Mans",47.995584,0.192143,-1,0,SIN:SA:OCE87396002,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87396036,1,"Gare de La Guierche",48.114021,0.193131,-1,0,SIN:SA:OCE87396036,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87396044,1,"Gare de Montbizot",48.151328,0.19083,-1,0,SIN:SA:OCE87396044,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87396200,1,"Gare de Domfront (Sarthe)",48.107786,0.026255,-1,0,SIN:SA:OCE87396200,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87396218,1,"Gare de Conlie",48.127106,-0.011062,-1,0,SIN:SA:OCE87396218,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87396234,1,"Gare de Sillé-le-Guillaume",48.181744,-0.128864,-1,0,SIN:SA:OCE87396234,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87396309,1,"Gare de Connerré-Beillé",48.073752,0.48694,-1,0,SIN:SA:OCE87396309,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87396325,1,"Gare de La Ferté-Bernard",48.186487,0.639325,-1,0,SIN:SA:OCE87396325,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87396606,1,"Gare de Château-du-Loir",47.683279,0.414985,-1,0,SIN:SA:OCE87396606,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87397950,1,"Santec",27.140973,-3.404561,-1,0,SIN:SA:OCE87397950,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87402008,1,"Romorantin-BA-G.R.",47.359434,1.744431,-1,0,SIN:SA:OCE87402008,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87402016,1,"Villefranche / Cher G.R",27.140973,-3.404561,-1,0,SIN:SA:OCE87402016,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87407726,1,"La Grave-Carrefour",46.53344,2.619822,-1,0,SIN:SA:OCE87407726,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87408906,1,"Meaulne-Place-Centrale",46.598944,2.613285,-1,0,SIN:SA:OCE87408906,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87408971,1,"Reugny",46.462006,2.615466,-1,0,SIN:SA:OCE87408971,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87409490,1,"Urcay-Hotel-du-Lyon-d'O",46.626818,2.589411,-1,0,SIN:SA:OCE87409490,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87411017,1,"Gare de Rouen-Rive-Droite",49.44903,1.094154,-1,0,SIN:SA:OCE87411017,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87411454,1,"Gare de Montérolier-Buchy",49.603131,1.334709,-1,0,SIN:SA:OCE87411454,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87411470,1,"Gare de Serqueux",49.631545,1.53934,-1,0,SIN:SA:OCE87411470,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87413344,1,"Gare de Bréauté-Beuzeville",49.603595,0.417162,-1,0,SIN:SA:OCE87413344,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87413542,1,"Gare de Fécamp",49.75946,0.373888,-1,0,SIN:SA:OCE87413542,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87414276,1,"Guiscriff-5-Chemins",48.067492,-3.661953,-1,0,SIN:SA:OCE87414276,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87414284,1,"Carhaix-Lycée-Diwan",48.272218,-3.553615,-1,0,SIN:SA:OCE87414284,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87414292,1,"Carhaix-République",48.275552,-3.575561,-1,0,SIN:SA:OCE87414292,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87414318,1,"Morlaix-Lycée-Corbière",48.566936,-3.822499,-1,0,SIN:SA:OCE87414318,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87414326,1,"Henvic-Pont-de-la-Corde",48.644994,-3.948066,-1,0,SIN:SA:OCE87414326,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87414334,1,"Roscoff-Port-de-Bloscon",48.721383,-3.967226,-1,0,SIN:SA:OCE87414334,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87415604,1,"Gare de Vernon-Giverny",49.091286,1.478363,-1,0,SIN:SA:OCE87415604,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87415885,1,"Gare de Rosny-sur-Seine",48.99717,1.630626,-1,0,TRN:SA:DUA8741588,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87415893,1,"Gare de Bonnières",49.038603,1.581508,-1,0,SIN:SA:OCE87415893,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87419291,1,"St-Sever (Centre)",48.840276,-1.045835,-1,0,SIN:SA:OCE87419291,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87422394,1,"Château-Renault-La-Tann",47.590549,0.90777,-1,0,SIN:SA:OCE87422394,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87422402,1,"Château-Renault-Pl.J.J.",47.59277,0.914998,-1,0,SIN:SA:OCE87422402,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87422469,1,"St-Amand-Longpré",47.69305,1.012209,-1,0,SIN:SA:OCE87422469,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87427393,1,"Monnaie-Jean-Baptiste-M",47.501863,0.790455,-1,0,SIN:SA:OCE87427393,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87430785,1,"Goderville",49.645564,0.367784,-1,0,SIN:SA:OCE87430785,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87437087,1,"Romorantin-Plaisance",47.339408,1.749352,-1,0,SIN:SA:OCE87402016,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87437376,1,"Vierzon-Médiathèque",47.221386,2.062531,-1,0,SIN:SA:OCE87437376,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87441543,1,"Civray-Grand-Entrevin",46.994374,2.11727,-1,0,SIN:SA:OCE87441543,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87444000,1,"Gare de Caen",49.176544,-0.34827,-1,0,SIN:SA:OCE87444000,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87444265,1,"Gare de Lisieux",49.137252,0.231682,-1,0,SIN:SA:OCE87444265,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87444349,1,"Gare de Pont-l'Evêque",49.287024,0.191969,-1,0,SIN:SA:OCE87444349,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87444372,1,"Gare de Trouville-Deauville",49.3585,0.084843,-1,0,SIN:SA:OCE87444372,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87444539,1,"Gare de Argentan",48.738459,-0.025724,-1,0,SIN:SA:OCE87444539,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87444562,1,"Gare de Surdon",48.664901,0.13413,-1,0,SIN:SA:OCE87444562,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87444604,1,"Gare de Ste-Gauburge",48.717263,0.428108,-1,0,SIN:SA:OCE87444604,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87444638,1,"Gare de L'Aigle",48.766684,0.620733,-1,0,SIN:SA:OCE87444638,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87444695,1,"Gare de Sées",48.600161,0.166112,-1,0,SIN:SA:OCE87444695,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87444711,1,"Gare de Alençon",48.433803,0.09905,-1,0,SIN:SA:OCE87444711,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87447003,1,"Gare de St-Lô",49.115895,-1.101089,-1,0,SIN:SA:OCE87447003,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87447110,1,"Gare de Coutances",49.042797,-1.441267,-1,0,SIN:SA:OCE87447110,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87447219,1,"Gare de Lison",49.227053,-1.050285,-1,0,SIN:SA:OCE87447219,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87447508,1,"Orval-Hyenville",48.995277,-1.461952,-1,0,SIN:SA:OCE87447508,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87447615,1,"Quettreville (Centre)",48.971663,-1.468061,-1,0,SIN:SA:OCE87447615,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87447649,1,"Gare de Folligny",48.829153,-1.4064,-1,0,SIN:SA:OCE87447649,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87447672,1,"St-Planchers",48.836941,-1.49668,-1,0,SIN:SA:OCE87447672,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87447680,1,"Gare de Granville",48.838844,-1.586778,-1,0,SIN:SA:OCE87447680,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87447698,1,"Gare de Villedieu (Gare)",48.834152,-1.225455,-1,0,SIN:SA:OCE87447698,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87447706,1,"St-Aubin (Embt.)",48.822218,-1.111401,-1,0,SIN:SA:OCE87447706,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87447722,1,"Mesnil-Clinchamps(Emb.)",48.84027,-0.986675,-1,0,SIN:SA:OCE87447722,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87448001,1,"Gare de Flers",48.744373,-0.573681,-1,0,SIN:SA:OCE87448001,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87448076,1,"Fromentel-Embt.",48.718883,-0.266112,-1,0,SIN:SA:OCE87448076,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87448084,1,"Gare de Briouze",48.702003,-0.367444,-1,0,SIN:SA:OCE87448084,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87448092,1,"Bellou-en-Houlme (Ctre)",48.690555,-0.442503,-1,0,SIN:SA:OCE87448092,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87448100,1,"Messei-Centre",48.713607,-0.539174,-1,0,SIN:SA:OCE87448100,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87448159,1,"Gare de Vire",48.846354,-0.883169,-1,0,SIN:SA:OCE87448159,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87448167,1,"Vire-Centre",48.846103,-0.882786,-1,0,SIN:SA:OCE87448159,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87448464,1,"La Ferté-Macé",48.59472,-0.356398,-1,0,SIN:SA:OCE87448464,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87448514,1,"Gare de Avranches",48.690409,-1.369974,-1,0,SIN:SA:OCE87448514,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87449330,1,"Bagnoles- Orne Egl.Mad.",48.549719,-0.424727,-1,0,SIN:SA:OCE87449330,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87449868,1,"Lonlay-le-Tesson",48.643329,-0.353063,-1,0,SIN:SA:OCE87449868,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87453373,1,"St-Benoit-La-Foret-Hopi",47.222731,0.322288,-1,0,SIN:SA:OCE87453373,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87453381,1,"Bruere-Allichamp-Mairie",46.768403,2.433175,-1,0,SIN:SA:OCE87453381,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87453399,1,"Morée-Centre",47.902154,1.234928,-1,0,SIN:SA:OCE87453399,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87453597,1,"St-Florent-Sur-Cher-Gar",46.99216,2.252175,-1,0,SIN:SA:OCE87453597,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87454249,1,"Bourges-Gare-Routière",27.140973,-3.404561,-1,0,SIN:SA:OCE87454249,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87455097,1,"Fontenay-Pt-Tranchefêtu",48.394816,1.413299,-1,0,SIN:SA:OCE87455097,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87462960,1,"Cholet-les-Halles",47.060194,-0.880296,-1,0,SIN:SA:OCE87462960,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87463083,1,"Nantes-Pirmil",47.196725,-1.543036,-1,0,SIN:SA:OCE87463083,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87463125,1,"Ste-Pazanne-Rue-Vigneau",47.1059,-1.810952,-1,0,SIN:SA:OCE87463125,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87465690,1,"Bourges-Aéroport",47.062304,2.365809,-1,0,SIN:SA:OCE87465690,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87465716,1,"St-Lactensin-Tesseau",46.898619,1.494449,-1,0,SIN:SA:OCE87465716,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87465724,1,"Tauxigny-Node-Park",47.215162,0.834364,-1,0,SIN:SA:OCE87465724,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87471003,1,"Gare de Rennes",48.103515,-1.672327,-1,0,STE:SA:OCE87471003,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87471029,1,"Gare de Vern",48.04683,-1.59656,-1,0,SIN:SA:OCE87471029,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87471201,1,"Gare de Fougeray-Langon",47.73022,-1.85118,-1,0,SIN:SA:OCE87471201,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87471219,1,"Gare de Beslé",47.699196,-1.870289,-1,0,SIN:SA:OCE87471219,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87471300,1,"Gare de Redon",47.651763,-2.087877,-1,0,STE:SA:OCE87471300,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87471318,1,"Gare de St-Armel",48.014277,-1.594801,-1,0,SIN:SA:OCE87471318,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87471326,1,"Gare de Corps-Nuds",47.985608,-1.575469,-1,0,STE:SA:OCE87471326,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87471334,1,"Gare de Janzé",47.955123,-1.49741,-1,0,SIN:SA:OCE87471334,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87471342,1,"Gare de Le Theil-de-Bretagne",47.918713,-1.432376,-1,0,SIN:SA:OCE87471342,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87471359,1,"Gare de Retiers",47.913212,-1.389718,-1,0,SIN:SA:OCE87471359,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87471367,1,"Gare de Martigné-Ferchaud",47.831974,-1.313728,-1,0,SIN:SA:OCE87471367,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87471607,1,"Fougères",48.35029,-1.194508,-1,0,SIN:SA:OCE87471607,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87473009,1,"Gare de St-Brieuc",48.507223,-2.765467,-1,0,SIN:SA:OCE87473009,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87473108,1,"Gare de Lamballe",48.465922,-2.511489,-1,0,SIN:SA:OCE87473108,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87473116,1,"Gare de Yffiniac",48.470113,-2.652377,-1,0,SIN:SA:OCE87473116,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87473207,1,"Gare de Guingamp",48.555536,-3.142716,-1,0,SIN:SA:OCE87473207,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87473264,1,"Gare de Landébia",48.507364,-2.331714,-1,0,SIN:SA:OCE87473264,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87473272,1,"Gare de Plancoet",48.52147,-2.228839,-1,0,SIN:SA:OCE87473272,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87473496,1,"Gourin",48.139992,-3.605281,-1,0,SIN:SA:OCE87473496,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87473504,1,"Gare de Carhaix",48.275812,-3.56411,-1,0,SIN:SA:OCE87473504,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87473595,1,"Kerbiquet",48.09972,-3.629726,-1,0,SIN:SA:OCE87473595,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87473769,1,"Port-de-Carhaix",48.243048,-3.60251,-1,0,SIN:SA:OCE87473769,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87473777,1,"Motreff",48.190827,-3.568614,-1,0,SIN:SA:OCE87473777,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87474007,1,"Gare de Brest",48.388083,-4.478918,-1,0,SIN:SA:OCE87474007,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87474015,1,"Gare de Dirinon",48.392594,-4.285596,-1,0,SIN:SA:OCE87474015,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87474056,1,"Gare de Pont-de-Buis",48.254317,-4.086314,-1,0,SIN:SA:OCE87474056,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87474064,1,"Gare de Châteaulin-Emb.",48.201506,-4.09404,-1,0,SIN:SA:OCE87474064,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87474098,1,"Gare de Quimper",47.994658,-4.092103,-1,0,SIN:SA:OCE87474098,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87474155,1,"Gare de Rosporden",47.96019,-3.832758,-1,0,SIN:SA:OCE87474155,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87474239,1,"Gare de Landerneau",48.453834,-4.256209,-1,0,SIN:SA:OCE87474239,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87474338,1,"Gare de Morlaix",48.577979,-3.832761,-1,0,SIN:SA:OCE87474338,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87474445,1,"Ernée",48.296658,-0.940003,-1,0,SIN:SA:OCE87474445,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87474544,1,"Henvic (Centre)",48.63222,-3.9264,-1,0,SIN:SA:OCE87474544,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87474551,1,"Plouénan (Car.C25/D769)",48.641108,-3.970429,-1,0,SIN:SA:OCE87474551,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87474569,1,"Gare de St-Pol-de-Léon",48.676806,-3.987578,-1,0,SIN:SA:OCE87474569,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87474635,1,"Gare de Roscoff",48.720554,-3.982457,-1,0,SIN:SA:OCE87474635,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87474668,1,"Kernevel",47.960277,-3.814167,-1,0,SIN:SA:OCE87474668,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87474676,1,"Scaer",48.026938,-3.706391,-1,0,SIN:SA:OCE87474676,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87476002,1,"Gare de Lorient",47.755203,-3.366348,-1,0,SIN:SA:OCE87476002,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87476317,1,"Gare de Quimperlé",47.869063,-3.553011,-1,0,SIN:SA:OCE87476317,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87476671,1,"Gare de Questembert",47.683131,-2.449669,-1,0,SIN:SA:OCE87476671,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87476689,1,"Gare de Malansac",47.675428,-2.295754,-1,0,SIN:SA:OCE87476689,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87476754,1,"Gare de Sévérac",47.550054,-2.072783,-1,0,SIN:SA:OCE87476754,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87476762,1,"Gare de St-Gildas-des-Bois",47.516565,-2.04365,-1,0,SIN:SA:OCE87476762,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87476770,1,"Gare de Dreffeac",47.482389,-2.050246,-1,0,SIN:SA:OCE87476770,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87478073,1,"Gare de Dol",48.542976,-1.75047,-1,0,SIN:SA:OCE87478073,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87478123,1,"Gare de Plerguer",48.531538,-1.850443,-1,0,SIN:SA:OCE87478123,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87478164,1,"Gare de Dinan",48.456966,-2.052987,-1,0,SIN:SA:OCE87478164,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87478180,1,"Gare de Corseul-Languenan",48.496002,-2.141404,-1,0,SIN:SA:OCE87478180,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87478263,1,"Gare de Pontorson-Mt-St-Michel",48.552444,-1.505068,-1,0,SIN:SA:OCE87478263,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87478339,1,"Kernevel-Centre",27.140973,-3.404561,-1,0,SIN:SA:OCE87402016,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87478404,1,"Gare de Laval",48.076252,-0.760939,-1,0,SIN:SA:OCE87478404,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87478537,1,"Gare de Montsurs",48.141106,-0.551436,-1,0,SIN:SA:OCE87478537,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87478552,1,"Gare de Evron",48.155535,-0.39717,-1,0,SIN:SA:OCE87478552,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87481002,1,"Gare de Nantes",47.217505,-1.541925,-1,0,SIN:SA:OCE87481002,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87481051,1,"Gare de Chantenay",47.197211,-1.594316,-1,0,SIN:SA:OCE87481051,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87481069,1,"Gare de La Basse-Indre-St-Herb.",47.20411,-1.660311,-1,0,SIN:SA:OCE87481069,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87481176,1,"Gare de Boussay-la-Bruffière",47.050461,-1.182848,-1,0,SIN:SA:OCE87481176,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87481366,1,"Gare de Machecoul",46.990618,-1.82263,-1,0,SIN:SA:OCE87481366,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87481390,1,"Gare de Challans",46.844046,-1.87183,-1,0,SIN:SA:OCE87481390,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87481440,1,"Gare de Clisson",47.085986,-1.286356,-1,0,STE:SA:OCE87481440,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87481648,1,"Gare de Châteaubriant",47.716996,-1.371397,-1,0,SIN:SA:OCE87481648,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87481689,1,"Gare de La Croix-de-Méan",47.300547,-2.193,-1,0,SIN:SA:OCE87481689,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87481697,1,"Gare de La Baule-les-Pins",47.283575,-2.364769,-1,0,SIN:SA:OCE87481697,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87481705,1,"Gare de St-Nazaire",47.286474,-2.211074,-1,0,SIN:SA:OCE87481705,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87481713,1,"Gare de Montoir-de-Bretagne",47.321047,-2.16164,-1,0,SIN:SA:OCE87481713,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87481721,1,"Gare de Donges",47.308686,-2.071699,-1,0,SIN:SA:OCE87481721,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87481747,1,"Gare de Pornichet",47.270485,-2.344737,-1,0,SIN:SA:OCE87481747,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87481754,1,"Gare de La Baule-Escoublac",47.288622,-2.389225,-1,0,SIN:SA:OCE87481754,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87481762,1,"Gare de Le Pouliguen",47.282524,-2.433157,-1,0,SIN:SA:OCE87481762,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87481770,1,"Gare de Batz-sur-Mer",47.280836,-2.479,-1,0,SIN:SA:OCE87481770,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87481788,1,"Gare de Le Croisic",47.289889,-2.507288,-1,0,SIN:SA:OCE87481788,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87481804,1,"Gare de Couéron",47.221924,-1.723519,-1,0,STE:SA:OCE87481804,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87481812,1,"Gare de St-Etienne-de-Montluc",47.274767,-1.785623,-1,0,SIN:SA:OCE87481812,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87481820,1,"Gare de Cordemais",47.302199,-1.846616,-1,0,SIN:SA:OCE87481820,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87481838,1,"Gare de Savenay",47.358554,-1.951034,-1,0,STE:SA:OCE87481838,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87481846,1,"Gare de Pontchâteau",47.435338,-2.088488,-1,0,SIN:SA:OCE87481846,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87484006,1,"Gare de Angers-St-Laud",47.464434,-0.556949,-1,0,SIN:SA:OCE87484006,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87484204,1,"Gare de Chalonnes",47.343005,-0.743764,-1,0,SIN:SA:OCE87484204,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87484246,1,"Gare de Chemillé",47.217598,-0.732093,-1,0,SIN:SA:OCE87484246,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87484303,1,"Gare de Cholet",47.065732,-0.869612,-1,0,SIN:SA:OCE87484303,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87484337,1,"Gare de La Possonnière",47.371493,-0.691742,-1,0,SIN:SA:OCE87484337,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87486019,1,"Gare de La Roche-sur-Yon",46.672025,-1.43568,-1,0,SIN:SA:OCE87486019,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87486332,1,"Gare de Chantonnay",46.690119,-1.054358,-1,0,SIN:SA:OCE87486332,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87486423,1,"Gare de La Mothe-Achard",46.606815,-1.659679,-1,0,SIN:SA:OCE87486423,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87486449,1,"Gare de Les Sables-d'Olonne",46.499983,-1.781155,-1,0,SIN:SA:OCE87486449,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87486563,1,"Gare de St-Hilaire-de-Riez SNCF",46.716579,-1.949586,-1,0,SIN:SA:OCE87486563,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87486571,1,"Gare de St-Gilles-Croix-de-Vie",46.69638,-1.94137,-1,0,SIN:SA:OCE87486571,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87486894,1,"Gare de Torfou",47.033135,-1.117308,-1,0,SIN:SA:OCE87486894,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87487009,1,"Gare de Thouars",46.985249,-0.210513,-1,0,SIN:SA:OCE87487009,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87487231,1,"Noirterre",46.869564,-0.396173,-1,0,SIN:SA:OCE87487231,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87487249,1,"Gare de Bressuire",46.837167,-0.496485,-1,0,SIN:SA:OCE87487249,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87487264,1,"Subdray-Lycée-Agricole",47.021754,2.293593,-1,0,SIN:SA:OCE87487264,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87487280,1,"Gare de Cerizay",46.817312,-0.667487,-1,0,SIN:SA:OCE87487280,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87487298,1,"St-Mesmin-le-Vieux",46.790413,-0.732186,-1,0,SIN:SA:OCE87487298,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87487603,1,"Gare de Saumur",47.268972,-0.07143,-1,0,SIN:SA:OCE87487603,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87487611,1,"Brion-près-Thouet",47.04872,-0.18491,-1,0,SIN:SA:OCE87487611,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87487637,1,"Gare de Montreuil-Bellay",47.125325,-0.148041,-1,0,SIN:SA:OCE87487637,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87487884,1,"Gare de La Menitré",47.397369,-0.275869,-1,0,SIN:SA:OCE87487884,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87487892,1,"Gare de St-Mathurin",47.412078,-0.318063,-1,0,SIN:SA:OCE87487892,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87499863,1,"Cosne-sur-Loire-Sud",27.140973,-3.404561,-1,0,SIN:SA:OCE87499863,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87543017,1,"Gare de Aubrais-(les)",47.926917,1.906085,-1,0,SIN:SA:OCE87543017,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87543033,1,"Gare de Cercottes",47.986387,1.884447,-1,0,SIN:SA:OCE87543033,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87543041,1,"Gare de Chevilly",48.026636,1.879047,-1,0,SIN:SA:OCE87543041,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87543058,1,"Gare de Artenay",48.080653,1.883355,-1,0,SIN:SA:OCE87543058,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87543066,1,"Gare de Château-Gaillard",48.141549,1.912467,-1,0,SIN:SA:OCE87543066,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87543140,1,"Gare de Lamotte-Beuvron",47.59397,2.022591,-1,0,SIN:SA:OCE87543140,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87543157,1,"Gare de Nouan-le-Fuzelier",47.534058,2.033265,-1,0,SIN:SA:OCE87543157,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87543165,1,"Gare de Salbris",47.42514,2.047737,-1,0,SIN:SA:OCE87543165,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87545525,1,"Gare de Dourdan",48.533612,2.009701,-1,0,SIN:SA:OCE87545525,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87545657,1,"Gare de Auneau",48.445413,1.779718,-1,0,SIN:SA:OCE87545657,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87545707,1,"Gare de Voves",48.274974,1.622171,-1,0,SIN:SA:OCE87545707,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87545731,1,"Gare de Bonneval",48.186288,1.386117,-1,0,SIN:SA:OCE87545731,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87545756,1,"Gare de Châteaudun",48.073354,1.338105,-1,0,SIN:SA:OCE87545756,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87571000,1,"Gare de Tours",47.389814,0.693505,-1,0,SIN:SA:OCE87571000,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87571216,1,"Gare de Vendôme-Villiers-s-Loir",47.820324,1.019667,-1,0,SIN:SA:OCE87571216,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87571240,1,"Gare de St-Pierre-des-Corps",47.385732,0.725054,-1,0,SIN:SA:OCE87571240,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87571273,1,"Gare de Montlouis",47.391554,0.817513,-1,0,SIN:SA:OCE87571273,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87571406,1,"Gare de Montbazon",47.291644,0.721504,-1,0,SIN:SA:OCE87571406,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87571414,1,"Gare de Veigné",47.2915,0.734441,-1,0,SIN:SA:OCE87571414,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87571422,1,"Gare de Esvres",47.284119,0.781561,-1,0,SIN:SA:OCE87571422,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87571430,1,"Gare de Cormery",47.262354,0.833818,-1,0,SIN:SA:OCE87571430,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87571448,1,"Gare de Courcay-Tauxigny",47.237832,0.867626,-1,0,SIN:SA:OCE87571448,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87571455,1,"Gare de Reignac",47.217787,0.901295,-1,0,SIN:SA:OCE87571455,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87571471,1,"Gare de Loches",47.1304,1.00097,-1,0,SIN:SA:OCE87571471,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87571489,1,"Perrusson",47.101184,1.014017,-1,0,SIN:SA:OCE87571489,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87571539,1,"Gare de St-Antoine-du-Rocher",47.50381,0.616365,-1,0,SIN:SA:OCE87571539,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87571547,1,"Gare de Neuillé-Pont-Pierre",47.558461,0.564038,-1,0,SIN:SA:OCE87571547,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87571554,1,"Gare de St-Paterne",47.60408,0.478045,-1,0,SIN:SA:OCE87571554,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87571604,1,"Gare de Ballan",47.336758,0.61808,-1,0,SIN:SA:OCE87571604,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87571612,1,"Gare de Druye",47.306788,0.535467,-1,0,SIN:SA:OCE87571612,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87571638,1,"Gare de Azay-le-Rideau",47.266246,0.447778,-1,0,SIN:SA:OCE87571638,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87571653,1,"Gare de Rivarennes",47.267661,0.361921,-1,0,SIN:SA:OCE87571653,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87571687,1,"Gare de Chinon",47.163053,0.252044,-1,0,SIN:SA:OCE87571687,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87571703,1,"La Roche-Clermault",47.140127,0.194878,-1,0,SIN:SA:OCE87571703,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87571711,1,"Beuxes",47.094612,0.176771,-1,0,SIN:SA:OCE87571711,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87571729,1,"Basses-Sammarçolles",47.035547,0.122767,-1,0,SIN:SA:OCE87571729,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87571794,1,"Gare de Port-Boulet",47.248527,0.154869,-1,0,SIN:SA:OCE87571794,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87571828,1,"Gare de Langeais",47.323944,0.410325,-1,0,SIN:SA:OCE87571828,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87571836,1,"Gare de Cinq-Mars",47.344792,0.460078,-1,0,SIN:SA:OCE87571836,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87571885,1,"Gare de Joué-lès-Tours",47.354238,0.667088,-1,0,SIN:SA:OCE87571885,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87574004,1,"Gare de Blois-Chambord",47.585424,1.323728,-1,0,SIN:SA:OCE87574004,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87574301,1,"Gare de Chouzy",47.520345,1.247575,-1,0,SIN:SA:OCE87574301,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87574327,1,"Gare de Veuves-Monteaux",47.475503,1.123663,-1,0,SIN:SA:OCE87574327,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87574335,1,"Gare de Limeray",47.450291,1.049821,-1,0,SIN:SA:OCE87574335,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87574343,1,"Gare de Amboise",47.421431,0.981219,-1,0,SIN:SA:OCE87574343,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87574509,1,"Gare de Cloyes",47.992169,1.243123,-1,0,SIN:SA:OCE87574509,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87574533,1,"Gare de Fréteval-Morée",47.892032,1.21187,-1,0,SIN:SA:OCE87574533,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87574541,1,"Gare de Pézou",47.86722,1.140699,-1,0,SIN:SA:OCE87574541,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87574558,1,"Gare de Vendôme",47.802156,1.067688,-1,0,SIN:SA:OCE87574558,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87574665,1,"Gare de Château-Renault",47.588287,0.901595,-1,0,SIN:SA:OCE87574665,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87574897,1,"Gare de St-Aignan-Noyers",47.286728,1.383662,-1,0,SIN:SA:OCE87574897,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87575084,1,"Loudun",47.016026,0.083345,-1,0,SIN:SA:OCE87575084,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87575100,1,"Arçay",46.971648,0.011179,-1,0,SIN:SA:OCE87575100,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87575209,1,"Pas-de-Jeu",46.975275,-0.041957,-1,0,SIN:SA:OCE87575209,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87576009,1,"Gare de Vierzon",47.226516,2.059824,-1,0,SIN:SA:OCE87576009,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87576025,1,"Gare de Romorantin-Blanc-Argent",47.355567,1.739246,-1,0,SIN:SA:OCE87576025,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87576082,1,"Gare de La Ferté-Imbault",47.383746,1.958033,-1,0,SIN:SA:OCE87576082,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87576140,1,"Gare de Selles-St-Denis",47.388346,1.92233,-1,0,SIN:SA:OCE87576140,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87576157,1,"Gare de Loreux",47.390409,1.8344,-1,0,SIN:SA:OCE87576157,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87576165,1,"Gare de Villeherviers",47.369236,1.796982,-1,0,SIN:SA:OCE87576165,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87576173,1,"Gare de Faubourg-d'Orléans",47.366995,1.740137,-1,0,SIN:SA:OCE87576173,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87576181,1,"Gare de Les Quatre-Roues",47.332539,1.702295,-1,0,SIN:SA:OCE87576181,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87576199,1,"Gare de Pruniers",47.313207,1.671891,-1,0,SIN:SA:OCE87576199,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87576207,1,"Gare de Bourges",47.094094,2.394226,-1,0,SIN:SA:OCE87576207,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87576215,1,"Gare de Valençay",47.163058,1.558696,-1,0,SIN:SA:OCE87576215,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87576223,1,"Gare de Chabris",47.255124,1.646253,-1,0,SIN:SA:OCE87576223,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87576231,1,"Gare de Varennes-sur-Fouzon",47.214383,1.614208,-1,0,SIN:SA:OCE87576231,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87576272,1,"Gare de St-Florent-sur-Cher",46.992115,2.252149,-1,0,SIN:SA:OCE87576272,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87576280,1,"Gare de Lunery",46.93513,2.275066,-1,0,SIN:SA:OCE87576280,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87576298,1,"Gare de Châteauneuf-sur-Cher",46.856686,2.310212,-1,0,SIN:SA:OCE87576298,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87576306,1,"Gare de Bigny",46.801897,2.368226,-1,0,SIN:SA:OCE87576306,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87576322,1,"Gare de St-Amand-Montrond-Orval",46.726521,2.486062,-1,0,SIN:SA:OCE87576322,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87576355,1,"La Gauterie",47.140132,1.491708,-1,0,SIN:SA:OCE87576355,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87576363,1,"Luçay-le-Male",47.13328,1.43642,-1,0,SIN:SA:OCE87576363,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87576405,1,"Gare de St-Germain-du-Puy",47.09629,2.484255,-1,0,SIN:SA:OCE87576405,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87576439,1,"Gare de Avord",47.034779,2.652604,-1,0,SIN:SA:OCE87576439,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87576447,1,"Gare de Bengy",47.000396,2.749106,-1,0,SIN:SA:OCE87576447,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87576454,1,"Gare de Nérondes",46.999796,2.821991,-1,0,SIN:SA:OCE87576454,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87576470,1,"Gare de La Guerche-sur-l'Aubois",46.94785,2.948455,-1,0,SIN:SA:OCE87576470,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87576702,1,"Thénioux",47.255538,1.929939,-1,0,SIN:SA:OCE87576702,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87576710,1,"Chatres (Loir-et-Cher)",47.264689,1.905911,-1,0,SIN:SA:OCE87576710,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87576728,1,"Gare de Mennetou-sur-Cher",47.268848,1.876472,-1,0,SIN:SA:OCE87576728,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87576736,1,"Langon (Loir-et-Cher)",47.283727,1.82521,-1,0,SIN:SA:OCE87576736,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87576868,1,"Gare de Selles-sur-Cher",47.281595,1.546144,-1,0,SIN:SA:OCE87576868,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87576876,1,"Gare de Gièvres",47.27873,1.667812,-1,0,SIN:SA:OCE87576876,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87576884,1,"Gare de Villefranche-sur-Cher",47.29474,1.768037,-1,0,SIN:SA:OCE87576884,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87580944,1,"Fougères-Carnot",27.140973,-3.404561,-1,0,SIN:SA:OCE87580944,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87589580,1,"Ville-Gozet-Henri-Dunan",46.347913,2.593641,-1,0,SIN:SA:OCE87589580,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87589804,1,"Reugny-Rue-Bascule",46.46278,2.615431,-1,0,SIN:SA:OCE87589804,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87597039,1,"Gare de Reuilly (Indre)",47.086015,2.047182,-1,0,SIN:SA:OCE87597039,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87597047,1,"Diou (Indre)",47.048116,2.023854,-1,0,SIN:SA:OCE87597047,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87597054,1,"Gare de Ste-Lizaigne",47.00264,2.030076,-1,0,SIN:SA:OCE87597054,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87597062,1,"Gare de Issoudun",46.947849,1.984921,-1,0,SIN:SA:OCE87597062,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87597070,1,"Gare de Neuvy-Pailloux",46.882688,1.862808,-1,0,SIN:SA:OCE87597070,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87597120,1,"Gare de Argenton-sur-Creuse",46.592225,1.51823,-1,0,SIN:SA:OCE87597120,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87597153,1,"Gare de Eguzon",46.440492,1.552365,-1,0,SIN:SA:OCE87597153,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87597369,1,"Villedieu-Chambon",46.842852,1.540373,-1,0,SIN:SA:OCE87597369,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87597377,1,"Buzançais",46.884864,1.41841,-1,0,SIN:SA:OCE87597377,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87597401,1,"Clion-sur-Indre",46.945201,1.238725,-1,0,SIN:SA:OCE87597401,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87641001,1,"Gare de Montluçon-Ville",46.337875,2.596412,-1,0,SIN:SA:OCE87641001,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87641357,1,"Gare de Vallon-en-Sully",46.536485,2.610803,-1,0,SIN:SA:OCE87641357,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87641365,1,"Gare de Magnette",46.46415,2.603004,-1,0,SIN:SA:OCE87641365,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87643726,1,"Bigny-Place-Bascoulard",46.801563,2.370531,-1,0,SIN:SA:OCE87643726,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87643734,1,"Bourges-Place-Nation",47.084191,2.391279,-1,0,SIN:SA:OCE87643734,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87643759,1,"Charost-Pont",46.992479,2.123563,-1,0,SIN:SA:OCE87643759,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87643767,1,"Issoudun-CHU",46.957808,1.996957,-1,0,SIN:SA:OCE87643767,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87643775,1,"Lamotte-Beuvron-College",27.140973,-3.404561,-1,0,SIN:SA:OCE87643775,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87643783,1,"Montierchaume-Crevant",46.864465,1.79278,-1,0,SIN:SA:OCE87643783,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87643791,1,"Montierchaume-Rosiers",46.844185,1.745454,-1,0,SIN:SA:OCE87643791,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87643809,1,"Noyers-S-Cher-Pl-Guerri",47.276972,1.400676,-1,0,SIN:SA:OCE87643809,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87643825,1,"St-Aignan-Lep",47.266216,1.371631,-1,0,SIN:SA:OCE87643825,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87643833,1,"St-Aignan-Pl-Wilson",47.26839,1.372358,-1,0,SIN:SA:OCE87643726,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87643841,1,"St-Aignan-Quai-Delorme",47.270158,1.376133,-1,0,SIN:SA:OCE87643726,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87643866,1,"St-Marcel-Prieure",46.599788,1.522659,-1,0,SIN:SA:OCE87643866,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87643882,1,"St-Satur-Fontenay",47.33879,2.83871,-1,0,SIN:SA:OCE87643726,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87643890,1,"Bannay-Hautes-De-Bussy",47.385935,2.886173,-1,0,SIN:SA:OCE87643890,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87643908,1,"Chouzy-Mairie",47.522001,1.245788,-1,0,SIN:SA:OCE87643908,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87643916,1,"Gien-Place-Leclerc",47.684064,2.63194,-1,0,SIN:SA:OCE87643916,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87643924,1,"Gien-Rte-De-Bourges",47.675394,2.63895,-1,0,SIN:SA:OCE87643924,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87643932,1,"Sancerre-Porte-Cesar",47.333641,2.837524,-1,0,SIN:SA:OCE87643932,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87643957,1,"Arrou-Place-De-L'eglise",48.098097,1.123007,-1,0,SIN:SA:OCE87643957,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87643965,1,"Auneau-Piscine",48.46519,1.77752,-1,0,SIN:SA:OCE87643965,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87643973,1,"Auneau-Texier-Gallas",48.459511,1.770619,-1,0,SIN:SA:OCE87643965,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87643981,1,"Brou-Centre",48.211865,1.166217,-1,0,SIN:SA:OCE87643981,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87643999,1,"Courtalain-Centre",48.079445,1.136053,-1,0,SIN:SA:OCE87643999,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87644005,1,"Mondoubleau-Rue-Leroy",47.982031,0.90022,-1,0,SIN:SA:OCE87644005,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87644013,1,"St-Pellerin-Mairie",48.070347,1.13991,-1,0,SIN:SA:OCE87643726,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87644039,1,"Azay-Rivieres",47.209205,0.946165,-1,0,SIN:SA:OCE87644039,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87644047,1,"Bridore-St-Martin",47.059634,1.083846,-1,0,SIN:SA:OCE87643726,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87644062,1,"Buzancais-Sapin-Vert",46.888365,1.433284,-1,0,SIN:SA:OCE87644062,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87644070,1,"Chambray-Trousseau",27.140973,-3.404561,-1,0,SIN:SA:OCE87644070,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87644088,1,"Chateau-Renault-ZI",47.602962,0.922307,-1,0,SIN:SA:OCE87644088,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87644096,1,"Chatillon-Mail",46.988385,1.1718,-1,0,SIN:SA:OCE87644096,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87644104,1,"Courcay-Rouvre",47.237889,0.866435,-1,0,SIN:SA:OCE87644104,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87644120,1,"Esvres-Champgault",47.287737,0.814738,-1,0,SIN:SA:OCE87644120,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87644138,1,"Esvres-Chene-Pendu",47.324733,0.7663,-1,0,SIN:SA:OCE87644120,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87644146,1,"Esvres-Les-Recais",47.294195,0.80572,-1,0,SIN:SA:OCE87644146,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87644153,1,"Esvres-St-Malo",47.297804,0.801067,-1,0,SIN:SA:OCE87643726,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87644161,1,"Esvres-Vauguinier",47.280696,0.802061,-1,0,SIN:SA:OCE87644120,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87644179,1,"Loches-LEP",47.127677,0.981184,-1,0,SIN:SA:OCE87643825,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87644187,1,"Loches-Lycee-St-Denis",47.126623,0.994143,-1,0,SIN:SA:OCE87643726,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87644195,1,"Loches-St-Jacques",47.137549,0.999816,-1,0,SIN:SA:OCE87643726,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87644203,1,"Loches-Agnès-Sorel",47.125329,0.993516,-1,0,SIN:SA:OCE87643825,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87644211,1,"Niherne-Centre",46.829108,1.564395,-1,0,SIN:SA:OCE87402016,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87644237,1,"Reignac-Jonquilles",47.225729,0.920721,-1,0,SIN:SA:OCE87644237,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87644245,1,"St-Genou-Brisepaille",46.911978,1.331216,-1,0,SIN:SA:OCE87643726,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87644252,1,"St-Genou-Ecole",46.927907,1.337918,-1,0,SIN:SA:OCE87643726,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87644260,1,"St-Genou-ZI",46.905197,1.354355,-1,0,SIN:SA:OCE87643726,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87644286,1,"St-Jean-St-Germain-Hote",47.082647,1.035852,-1,0,SIN:SA:OCE87643726,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87644310,1,"Truyes-Pl-Du-Souvenir",47.272757,0.850605,-1,0,SIN:SA:OCE87643825,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87644328,1,"Truyes-St-Blaise",47.27496,0.835222,-1,0,SIN:SA:OCE87643726,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87644344,1,"Villedieu-Eglise",46.847457,1.53881,-1,0,SIN:SA:OCE87644104,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87644351,1,"Villedieu-Golf",46.846185,1.544769,-1,0,SIN:SA:OCE87644104,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87644369,1,"Villedieu-Le-Pouillou",46.866997,1.488633,-1,0,SIN:SA:OCE87644104,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87674275,1,"Le Loreur (Emb.d'Hud.)",48.86916,-1.43084,-1,0,SIN:SA:OCE87674275,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87680504,1,"Les-Trilliers-PN-Car.",27.140973,-3.404561,-1,0,SIN:SA:OCE87644146,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87684001,1,"Gare de Montargis",48.00718,2.742976,-1,0,TRN:SA:DUA8768400,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87684274,1,"Gare de Nogent-sur-Vernisson",47.85285,2.737637,-1,0,SIN:SA:OCE87684274,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87684290,1,"Gare de Gien",47.698883,2.636752,-1,0,SIN:SA:OCE87684290,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87688929,1,"Auneau-Résistance",48.459512,1.772714,-1,0,SIN:SA:OCE87643965,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87688945,1,"Verneuil-Laiterie",47.076475,1.058285,-1,0,SIN:SA:OCE87688945,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87688952,1,"Chatillon-Hôtel",46.98337,1.175011,-1,0,SIN:SA:OCE87644096,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87688960,1,"Courcay-Eglise",47.249675,0.876338,-1,0,SIN:SA:OCE87644104,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87688978,1,"Chambray-Lycée-Agricole",47.338713,0.728922,-1,0,SIN:SA:OCE87643726,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87689422,1,"Avail-Halte",46.968187,2.045175,-1,0,SIN:SA:OCE87689422,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87689513,1,"Châteauroux-Médiathèque",46.808803,1.69086,-1,0,SIN:SA:OCE87689513,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87689653,1,"Montierchaume-Couturier",46.864138,1.771875,-1,0,SIN:SA:OCE87689653,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87689703,1,"Palluau-Onzay",46.930625,1.316578,-1,0,SIN:SA:OCE87689703,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87689729,1,"Monnaie-Gendarmerie",47.505865,0.79707,-1,0,SIN:SA:OCE87689729,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87689745,1,"Reignac-Bourg-Du-Fau",27.140973,-3.404561,-1,0,SIN:SA:OCE87643726,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87689901,1,"Veigné-Bourg",27.140973,-3.404561,-1,0,SIN:SA:OCE87643726,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87689919,1,"Veigné-la-Croix",27.140973,-3.404561,-1,0,SIN:SA:OCE87402016,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87689935,1,"Issoudun-Jardin",46.949686,1.994683,-1,0,SIN:SA:OCE87689935,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87689943,1,"Romorantin-Lycée-de-F",47.369365,1.739131,-1,0,SIN:SA:OCE87402016,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87689950,1,"Châteauroux-Crx-Perrine",46.817162,1.683198,-1,0,SIN:SA:OCE87689513,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87689976,1,"Châteauroux-Ly-B-Pascal",46.797894,1.711113,-1,0,SIN:SA:OCE87689513,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87689984,1,"Châteauroux-L-Giraudoux",46.816376,1.696968,-1,0,SIN:SA:OCE87689513,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87689992,1,"Châteauroux-Charmilles",46.801021,1.716868,-1,0,SIN:SA:OCE87689513,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87690107,1,"Châteauroux-P-M-Curie",46.809804,1.70745,-1,0,SIN:SA:OCE87689513,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87690156,1,"Châteauroux-Préfecture",46.810741,1.686827,-1,0,SIN:SA:OCE87689513,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87690164,1,"Chinon-LEP-Cugnot",27.140973,-3.404561,-1,0,SIN:SA:OCE87643825,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87690172,1,"Chinon-Lycée-Rabelais",47.162888,0.234053,-1,0,SIN:SA:OCE87643726,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87690180,1,"Gien-Hôpital",47.690744,2.632817,-1,0,SIN:SA:OCE87437376,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87690198,1,"Gien-Place-St-Louis",47.683781,2.633457,-1,0,SIN:SA:OCE87643726,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87690230,1,"Chatres-Zelie-Fouquet",47.267014,1.888131,-1,0,SIN:SA:OCE87690230,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87690248,1,"Châteaudun-LEP-Paulsen",48.062245,1.335606,-1,0,SIN:SA:OCE87643825,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87690271,1,"Romorantin-Villefranche",47.347513,1.747502,-1,0,SIN:SA:OCE87402016,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87690289,1,"Thenioux-Les-Forges",47.251722,1.953155,-1,0,SIN:SA:OCE87644146,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87690297,1,"Vierzon-Hôpital",47.227614,2.052397,-1,0,SIN:SA:OCE87437376,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87690305,1,"Villefranche-La-Croix-F",47.292072,1.777955,-1,0,SIN:SA:OCE87402016,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87690313,1,"Villefranche-Aubrier",47.302358,1.767837,-1,0,SIN:SA:OCE87402016,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87696005,1,"Gare de Nevers",46.987349,3.15087,-1,0,SIN:SA:OCE87696005,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87696146,1,"Gare de Cosne-sur-Loire",47.414026,2.932089,-1,0,SIN:SA:OCE87696146,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87779686,1,"Villedieu (Centre)",48.833888,-1.225846,-1,0,SIN:SA:OCE87447698,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87930958,1,"Truyes-Chapelle",47.275277,0.830547,-1,0,SIN:SA:OCE87930958,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87324095,1,"Gare de Futuroscope",46.66985,0.377202,-1,0,SIN:SA:OCE87324095,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87381509,1,"Gare de Mantes-la-Jolie",48.989687,1.703294,-1,0,SIN:SA:OCE87381509,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87381624,1,"Gare de Bréval",48.943126,1.54133,-1,0,SIN:SA:OCE87381624,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87384008,1,"Gare de Paris-St-Lazare",48.877865,2.324433,-1,0,SIN:SA:OCE87384008,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87387001,1,"Gare de Evreux - Normandie",49.018559,1.149888,-1,0,SIN:SA:OCE87387001,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87387092,1,"Gare de Bueil",48.92509,1.443776,-1,0,SIN:SA:OCE87387092,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87387159,1,"Gare de Conches",48.962341,0.938965,-1,0,SIN:SA:OCE87387159,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87387183,1,"Gare de Beaumont-le-Roger",49.074181,0.772625,-1,0,SIN:SA:OCE87387183,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87391102,1,"Gare de Paris-Montp.3-Vaug.",48.838706,2.316627,-1,0,SIN:SA:OCE87391102,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87393009,1,"Gare de Versailles-Chantiers",48.795566,2.135465,-1,0,SIN:SA:OCE87393009,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87393488,1,"Gare de Dreux",48.731483,1.370166,-1,0,SIN:SA:OCE87393488,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87393553,1,"Gare de Nonancourt",48.775751,1.192799,-1,0,SIN:SA:OCE87393553,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87393595,1,"Gare de Verneuil-sur-Avre",48.742735,0.929201,-1,0,SIN:SA:OCE87393595,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87396002,1,"Gare de Le Mans",47.995584,0.192143,-1,0,SIN:SA:OCE87396002,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87396093,1,"Gare de La Hutte-Coulombiers",48.303346,0.105456,-1,0,SIN:SA:OCE87396093,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87396564,1,"Gare de Ecommoy",47.824528,0.269013,-1,0,SIN:SA:OCE87396564,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87396606,1,"Gare de Château-du-Loir",47.683279,0.414985,-1,0,SIN:SA:OCE87396606,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87411017,1,"Gare de Rouen-Rive-Droite",49.44903,1.094154,-1,0,SIN:SA:OCE87411017,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87411207,1,"Gare de Oissel",49.343042,1.101821,-1,0,SIN:SA:OCE87411207,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87413013,1,"Gare de Le Havre",49.492653,0.124835,-1,0,SIN:SA:OCE87413013,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87413344,1,"Gare de Bréauté-Beuzeville",49.603595,0.417162,-1,0,SIN:SA:OCE87413344,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87413385,1,"Gare de Yvetot",49.622113,0.750072,-1,0,SIN:SA:OCE87413385,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87415604,1,"Gare de Vernon-Giverny",49.091286,1.478363,-1,0,SIN:SA:OCE87415604,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87415620,1,"Gare de Gaillon-Aubevoye",49.174632,1.352518,-1,0,SIN:SA:OCE87415620,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87415877,1,"Gare de Val-de-Reuil",49.275399,1.224609,-1,0,SIN:SA:OCE87415877,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87444000,1,"Gare de Caen",49.176544,-0.34827,-1,0,SIN:SA:OCE87444000,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87444067,1,"Gare de Bayeux",49.269444,-0.697712,-1,0,SIN:SA:OCE87444067,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87444208,1,"Gare de Mézidon-Canon",49.070867,-0.074966,-1,0,SIN:SA:OCE87444208,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87444265,1,"Gare de Lisieux",49.137252,0.231682,-1,0,SIN:SA:OCE87444265,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87444299,1,"Gare de Bernay",49.086989,0.595728,-1,0,SIN:SA:OCE87444299,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87444315,1,"Gare de Serquigny",49.107673,0.719577,-1,0,SIN:SA:OCE87444315,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87444349,1,"Gare de Pont-l'Evêque",49.287024,0.191969,-1,0,SIN:SA:OCE87444349,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87444372,1,"Gare de Trouville-Deauville",49.3585,0.084843,-1,0,SIN:SA:OCE87444372,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87444539,1,"Gare de Argentan",48.738459,-0.025724,-1,0,SIN:SA:OCE87444539,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87444562,1,"Gare de Surdon",48.664901,0.13413,-1,0,SIN:SA:OCE87444562,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87444588,1,"Gare de Le Merlerault",48.702415,0.283494,-1,0,SIN:SA:OCE87444588,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87444604,1,"Gare de Ste-Gauburge",48.717263,0.428108,-1,0,SIN:SA:OCE87444604,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87444638,1,"Gare de L'Aigle",48.766684,0.620733,-1,0,SIN:SA:OCE87444638,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87444695,1,"Gare de Sées",48.600161,0.166112,-1,0,SIN:SA:OCE87444695,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87444711,1,"Gare de Alençon",48.433803,0.09905,-1,0,SIN:SA:OCE87444711,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87444877,1,"Gare de Cherbourg",49.633499,-1.621473,-1,0,SIN:SA:OCE87444877,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87447219,1,"Gare de Lison",49.227053,-1.050285,-1,0,SIN:SA:OCE87447219,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87447243,1,"Gare de Carentan",49.301803,-1.242098,-1,0,SIN:SA:OCE87447243,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87447284,1,"Gare de Valognes",49.505386,-1.480323,-1,0,SIN:SA:OCE87447284,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87447649,1,"Gare de Folligny",48.829153,-1.4064,-1,0,SIN:SA:OCE87447649,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87447680,1,"Gare de Granville",48.838844,-1.586778,-1,0,SIN:SA:OCE87447680,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87447698,1,"Gare de Villedieu (Gare)",48.834152,-1.225455,-1,0,SIN:SA:OCE87447698,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87448001,1,"Gare de Flers",48.744373,-0.573681,-1,0,SIN:SA:OCE87448001,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87448084,1,"Gare de Briouze",48.702003,-0.367444,-1,0,SIN:SA:OCE87448084,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87448159,1,"Gare de Vire",48.846354,-0.883169,-1,0,SIN:SA:OCE87448159,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87481002,1,"Gare de Nantes",47.217505,-1.541925,-1,0,SIN:SA:OCE87481002,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87484006,1,"Gare de Angers-St-Laud",47.464434,-0.556949,-1,0,SIN:SA:OCE87484006,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87485003,1,"Gare de La Rochelle-Ville",46.152701,-1.1453,-1,0,SIN:SA:OCE87485003,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87485144,1,"Gare de Rochefort",45.947416,-0.963788,-1,0,SIN:SA:OCE87485144,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87486019,1,"Gare de La Roche-sur-Yon",46.672025,-1.43568,-1,0,SIN:SA:OCE87486019,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87486258,1,"Gare de Luçon",46.46372,-1.167445,-1,0,SIN:SA:OCE87486258,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87487603,1,"Gare de Saumur",47.268972,-0.07143,-1,0,SIN:SA:OCE87487603,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87491001,1,"Gare de Saintes",45.747843,-0.617576,-1,0,SIN:SA:OCE87491001,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87491142,1,"Gare de Jonzac",45.438714,-0.442003,-1,0,SIN:SA:OCE87491142,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87543009,1,"Gare de Orléans",47.908153,1.904753,-1,0,SIN:SA:OCE87543009,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87543017,1,"Gare de Aubrais-(les)",47.926917,1.906085,-1,0,SIN:SA:OCE87543017,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87543165,1,"Gare de Salbris",47.42514,2.047737,-1,0,SIN:SA:OCE87543165,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87547000,1,"Gare de Paris-Austerlitz",48.841652,2.366039,-1,0,SIN:SA:OCE87547000,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87571000,1,"Gare de Tours",47.389814,0.693505,-1,0,SIN:SA:OCE87571000,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87571240,1,"Gare de St-Pierre-des-Corps",47.385732,0.725054,-1,0,SIN:SA:OCE87571240,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87574004,1,"Gare de Blois-Chambord",47.585424,1.323728,-1,0,SIN:SA:OCE87574004,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87574343,1,"Gare de Amboise",47.421431,0.981219,-1,0,SIN:SA:OCE87574343,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87575001,1,"Gare de Poitiers",46.582183,0.333084,-1,0,SIN:SA:OCE87575001,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87576009,1,"Gare de Vierzon",47.226516,2.059824,-1,0,SIN:SA:OCE87576009,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87576207,1,"Gare de Bourges",47.094094,2.394226,-1,0,SIN:SA:OCE87576207,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87576272,1,"Gare de St-Florent-sur-Cher",46.992115,2.252149,-1,0,SIN:SA:OCE87576272,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87576298,1,"Gare de Châteauneuf-sur-Cher",46.856686,2.310212,-1,0,SIN:SA:OCE87576298,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87576322,1,"Gare de St-Amand-Montrond-Orval",46.726521,2.486062,-1,0,SIN:SA:OCE87576322,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87581009,1,"Gare de Bordeaux-St-Jean",44.82654,-0.556194,-1,0,SIN:SA:OCE87581009,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87583005,1,"Gare de Angoulême",45.653935,0.164528,-1,0,SIN:SA:OCE87583005,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87592006,1,"Gare de Limoges-Bénédictins",45.836208,1.267452,-1,0,SIN:SA:OCE87592006,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87592378,1,"Gare de La Souterraine",46.23975,1.492234,-1,0,SIN:SA:OCE87592378,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87594002,1,"Gare de Brive-la-Gaillarde",45.152562,1.528623,-1,0,SIN:SA:OCE87594002,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87594200,1,"Gare de Uzerche",45.440621,1.570228,-1,0,SIN:SA:OCE87594200,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87594333,1,"Gare de Souillac",44.902337,1.465215,-1,0,SIN:SA:OCE87594333,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87597005,1,"Gare de Châteauroux",46.809823,1.699457,-1,0,SIN:SA:OCE87597005,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87597062,1,"Gare de Issoudun",46.947849,1.984921,-1,0,SIN:SA:OCE87597062,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87597120,1,"Gare de Argenton-sur-Creuse",46.592225,1.51823,-1,0,SIN:SA:OCE87597120,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87611004,1,"Gare de Toulouse-Matabiau",43.611464,1.453558,-1,0,SIN:SA:OCE87611004,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87611244,1,"Gare de Montauban-Ville-Bourbon",44.014639,1.341974,-1,0,SIN:SA:OCE87611244,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87613000,1,"Gare de Cahors",44.44916,1.433238,-1,0,SIN:SA:OCE87613000,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87613141,1,"Gare de Gourdon",44.741898,1.389276,-1,0,SIN:SA:OCE87613141,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87613356,1,"Gare de Caussade (T.-et-G.)",44.162304,1.533453,-1,0,SIN:SA:OCE87613356,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87641001,1,"Gare de Montluçon-Ville",46.337875,2.596412,-1,0,SIN:SA:OCE87641001,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87641357,1,"Gare de Vallon-en-Sully",46.536485,2.610803,-1,0,SIN:SA:OCE87641357,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87684001,1,"Gare de Montargis",48.00718,2.742976,-1,0,TRN:SA:DUA8768400,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87684126,1,"Gare de Nemours-St-Pierre",48.267909,2.685654,-1,0,TRN:SA:DUA8768412,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87684274,1,"Gare de Nogent-sur-Vernisson",47.85285,2.737637,-1,0,SIN:SA:OCE87684274,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87684290,1,"Gare de Gien",47.698883,2.636752,-1,0,SIN:SA:OCE87684290,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87686006,1,"Gare de Paris-Gare-de-Lyon",48.844922,2.373462,-1,0,TRN:SA:DUA8768603,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87686667,1,"Gare de Paris-Bercy",48.839211,2.382799,-1,0,SIN:SA:OCE87686667,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87696005,1,"Gare de Nevers",46.987349,3.15087,-1,0,SIN:SA:OCE87696005,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87696088,1,"Gare de Briare",47.646499,2.733685,-1,0,SIN:SA:OCE87696088,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87696146,1,"Gare de Cosne-sur-Loire",47.414026,2.932089,-1,0,SIN:SA:OCE87696146,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87696161,1,"Gare de Tracy-Sancerre",47.33691,2.880508,-1,0,SIN:SA:OCE87696161,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87696179,1,"Gare de Pouilly-sur-Loire",47.28217,2.966063,-1,0,SIN:SA:OCE87696179,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87696195,1,"Gare de La-Charité-sur-Loire",47.180995,3.024014,-1,0,SIN:SA:OCE87696195,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87696211,1,"Gare de Pougues-les-Eaux",47.076975,3.093823,-1,0,SIN:SA:OCE87696211,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87696229,1,"Gare de Fourchambault",47.019234,3.087301,-1,0,SIN:SA:OCE87696229,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87696328,1,"Gare de Moulins-sur-Allier",46.561364,3.338755,-1,0,SIN:SA:OCE87696328,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87722025,1,"Gare de Lyon-Perrache",45.748492,4.825748,-1,0,SIN:SA:OCE87722025,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87723197,1,"Gare de Lyon-Part-Dieu",45.760585,4.859435,-1,0,SIN:SA:OCE87723197,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87726802,1,"Gare de Roanne",46.040211,4.063135,-1,0,SIN:SA:OCE87726802,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87732206,1,"Gare de St-Germain-des-Fossés",46.209103,3.430489,-1,0,SIN:SA:OCE87732206,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-71793150,1,"Gare de Port-Bou",42.424471,3.157848,-1,0,SIN:SA:OCE71793150,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87543017,1,"Gare de Aubrais-(les)",47.926917,1.906085,-1,0,SIN:SA:OCE87543017,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87547000,1,"Gare de Paris-Austerlitz",48.841652,2.366039,-1,0,SIN:SA:OCE87547000,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87594333,1,"Gare de Souillac",44.902337,1.465215,-1,0,SIN:SA:OCE87594333,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87594572,1,"Gare de St-Denis-près-Martel",44.945792,1.666287,-1,0,SIN:SA:OCE87594572,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87611004,1,"Gare de Toulouse-Matabiau",43.611464,1.453558,-1,0,SIN:SA:OCE87611004,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87611244,1,"Gare de Montauban-Ville-Bourbon",44.014639,1.341974,-1,0,SIN:SA:OCE87611244,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87611343,1,"Gare de Pamiers",43.116175,1.618998,-1,0,SIN:SA:OCE87611343,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87611368,1,"Gare de Saverdun",43.239421,1.570422,-1,0,SIN:SA:OCE87611368,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87611384,1,"Gare de Auterive",43.348835,1.468624,-1,0,SIN:SA:OCE87611384,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87611483,1,"Gare de Latour-de-Carol-Enveitg",42.458157,1.90584,-1,0,SIN:SA:OCE87611483,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87611509,1,"Gare de Porte-Puymorens",42.538759,1.82485,-1,0,SIN:SA:OCE87611509,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87611517,1,"Gare de Andorre-L'Hospitalet",42.588385,1.798515,-1,0,SIN:SA:OCE87611517,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87611525,1,"Gare de Mérens-les-Vals",42.658677,1.83642,-1,0,SIN:SA:OCE87611525,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87611533,1,"Gare de Ax-les-Thermes",42.724805,1.833315,-1,0,SIN:SA:OCE87611533,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87611558,1,"Gare de Luzenac-Garanou",42.764444,1.753154,-1,0,SIN:SA:OCE87611558,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87611574,1,"Gare de Les Cabannes",42.786537,1.68618,-1,0,SIN:SA:OCE87611574,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87611590,1,"Gare de Tarascon-sur-Ariège",42.849453,1.600031,-1,0,SIN:SA:OCE87611590,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87611616,1,"Gare de Foix",42.969299,1.607394,-1,0,SIN:SA:OCE87611616,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87613000,1,"Gare de Cahors",44.44916,1.433238,-1,0,SIN:SA:OCE87613000,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87613042,1,"Gare de Rocamadour-Padirac",44.817911,1.657445,-1,0,SIN:SA:OCE87613042,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87613059,1,"Gare de Gramat",44.77349,1.722371,-1,0,SIN:SA:OCE87613059,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87613075,1,"Gare de Assier",44.674593,1.869747,-1,0,SIN:SA:OCE87613075,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87613091,1,"Gare de Figeac",44.603514,2.037077,-1,0,SIN:SA:OCE87613091,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87613109,1,"Gare de Capdenac",44.577656,2.078902,-1,0,SIN:SA:OCE87613109,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87613141,1,"Gare de Gourdon",44.741898,1.389276,-1,0,SIN:SA:OCE87613141,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87613224,1,"Gare de Aubin",44.527356,2.239559,-1,0,SIN:SA:OCE87613224,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87613232,1,"Gare de Cransac",44.523063,2.270767,-1,0,SIN:SA:OCE87613232,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87613257,1,"Gare de St-Christophe",44.464687,2.407487,-1,0,SIN:SA:OCE87613257,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87613356,1,"Gare de Caussade (T.-et-G.)",44.162304,1.533453,-1,0,SIN:SA:OCE87613356,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87613422,1,"Gare de Rodez",44.362652,2.580253,-1,0,SIN:SA:OCE87613422,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87613661,1,"Gare de Viviez-Decazeville",44.55704,2.218024,-1,0,SIN:SA:OCE87613661,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87615005,1,"Gare de Albi-Ville",43.922036,2.138635,-1,0,SIN:SA:OCE87615005,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87615039,1,"Gare de Castelnaudary",43.312646,1.950989,-1,0,SIN:SA:OCE87615039,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87615112,1,"Gare de Lézignan-Corbières",43.199971,2.769857,-1,0,SIN:SA:OCE87615112,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87615195,1,"Gare de Albi-Madeleine.",43.937899,2.141168,-1,0,SIN:SA:OCE87615195,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87615286,1,"Gare de Carcassonne",43.217715,2.351883,-1,0,SIN:SA:OCE87615286,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87615625,1,"Gare de Carmaux",44.049004,2.152389,-1,0,SIN:SA:OCE87615625,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87784009,1,"Gare de Perpignan",42.696075,2.879617,-1,0,SIN:SA:OCE87784009,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87784207,1,"Gare de Elne",42.597369,2.963521,-1,0,SIN:SA:OCE87784207,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87784231,1,"Gare de Argelès-sur-Mer",42.543951,3.0215,-1,0,SIN:SA:OCE87784231,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87784256,1,"Gare de Collioure",42.526892,3.078721,-1,0,SIN:SA:OCE87784256,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87784264,1,"Gare de Port-Vendres",42.513381,3.102386,-1,0,SIN:SA:OCE87784264,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87784298,1,"Gare de Banyuls-sur-Mer",42.482619,3.124411,-1,0,SIN:SA:OCE87784298,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87785006,1,"Gare de Cerbère",42.442764,3.165525,-1,0,SIN:SA:OCE87785006,Europe/Paris,,SIN, +STE:SP:OCECarTER-87009696,1,"Gare de La Douzillère",47.338631,0.653003,-1,0,SIN:SA:OCE87009696,Europe/Paris,,STE, +STE:SP:OCECarTER-87110296,1,"Azay-le-Rideau(Mairie)",47.26189,0.465921,-1,0,SIN:SA:OCE87110296,Europe/Paris,,STE, +STE:SP:OCECarTER-87110320,1,"Neuille (Gendarmerie)",47.546386,0.551658,-1,0,SIN:SA:OCE87110320,Europe/Paris,,STE, +STE:SP:OCECarTER-87110338,1,"St Christophe / Nais C.",47.615551,0.475275,-1,0,SIN:SA:OCE87110338,Europe/Paris,,STE, +STE:SP:OCECarTER-87115337,1,"Azay-sur-Indre-Le Parad",47.209438,0.946106,-1,0,SIN:SA:OCE87115337,Europe/Paris,,STE, +STE:SP:OCECarTER-87137810,1,"Chartres-Gare-Routière",48.447533,1.480534,-1,0,SIN:SA:OCE87137810,Europe/Paris,,STE, +STE:SP:OCECarTER-87201541,1,"Châteauroux Gare Rout.",46.809648,1.698686,-1,0,SIN:SA:OCE87201541,Europe/Paris,,STE, +STE:SP:OCECarTER-87201566,1,"Argenton-sur-Creuse-LEP",46.588875,1.518999,-1,0,SIN:SA:OCE87201566,Europe/Paris,,STE, +STE:SP:OCECarTER-87201582,1,"St-Gaultier-Gendarmerie",46.634292,1.418469,-1,0,SIN:SA:OCE87201582,Europe/Paris,,STE, +STE:SP:OCECarTER-87201608,1,"Le-Blanc-Pl-du-Bateau",46.630748,1.063564,-1,0,SIN:SA:OCE87201608,Europe/Paris,,STE, +STE:SP:OCECarTER-87202440,1,"St-Savin",46.565795,0.863838,-1,0,SIN:SA:OCE87202440,Europe/Paris,,STE, +STE:SP:OCECarTER-87202465,1,"Chauvigny",46.569697,0.644031,-1,0,SIN:SA:OCE87202465,Europe/Paris,,STE, +STE:SP:OCECarTER-87202481,1,"Poitiers-Gare-Routière",46.582767,0.334016,-1,0,SIN:SA:OCE87202481,Europe/Paris,,STE, +STE:SP:OCECarTER-87205575,1,"Chambray-CHR-Trousseau",47.347769,0.709996,-1,0,SIN:SA:OCE87205575,Europe/Paris,,STE, +STE:SP:OCECarTER-87206771,1,"Le Tranger",46.95666,1.240265,-1,0,SIN:SA:OCE87206771,Europe/Paris,,STE, +STE:SP:OCECarTER-87216663,1,"Surins-Carref-RN143",46.829162,1.564433,-1,0,SIN:SA:OCE87216663,Europe/Paris,,STE, +STE:SP:OCECarTER-87216671,1,"Palluau-Mairie",46.944158,1.314719,-1,0,SIN:SA:OCE87216671,Europe/Paris,,STE, +STE:SP:OCECarTER-87216689,1,"Flere-La-Rivière-Mairie",47.02083,1.107222,-1,0,SIN:SA:OCE87216689,Europe/Paris,,STE, +STE:SP:OCECarTER-87279174,1,"Mehun-sur-Indre",46.840833,1.530832,-1,0,SIN:SA:OCE87279174,Europe/Paris,,STE, +STE:SP:OCECarTER-87280057,1,"TOURS LYCEE GRANDMONT",47.360269,0.699989,-1,0,SIN:SA:OCE87280057,Europe/Paris,,STE, +STE:SP:OCECarTER-87280065,1,"Bridoré-Carrefour-943",47.033049,1.095547,-1,0,SIN:SA:OCE87280065,Europe/Paris,,STE, +STE:SP:OCECarTER-87299834,1,"Miannay",50.097221,1.721385,-1,0,SIN:SA:OCE87299834,Europe/Paris,,STE, +STE:SP:OCECarTER-87299842,1,"Yzengremer",50.061104,1.521662,-1,0,SIN:SA:OCE87299842,Europe/Paris,,STE, +STE:SP:OCECarTER-87304626,1,"Deols",46.826018,1.701323,-1,0,SIN:SA:OCE87304626,Europe/Paris,,STE, +STE:SP:OCECarTER-87304642,1,"Issoudun-Place-de-la-G.",46.948607,1.985823,-1,0,SIN:SA:OCE87304642,Europe/Paris,,STE, +STE:SP:OCECarTER-87304659,1,"Charost-café-du-Centre",46.99277,2.11583,-1,0,SIN:SA:OCE87304659,Europe/Paris,,STE, +STE:SP:OCECarTER-87304691,1,"Avail",46.964073,2.05851,-1,0,SIN:SA:OCE87304691,Europe/Paris,,STE, +STE:SP:OCECarTER-87309757,1,"Chaumont-sur-Tharonne",47.610616,1.904381,-1,0,SIN:SA:OCE87309757,Europe/Paris,,STE, +STE:SP:OCECarTER-87309765,1,"St-Hilaire-La-Gravelle",47.924716,1.207213,-1,0,SIN:SA:OCE87309765,Europe/Paris,,STE, +STE:SP:OCECarTER-87309773,1,"Mereau",47.162559,2.049801,-1,0,SIN:SA:OCE87309773,Europe/Paris,,STE, +STE:SP:OCECarTER-87310813,1,"St-Florent-sur-Cher-M.",46.992677,2.245377,-1,0,SIN:SA:OCE87310813,Europe/Paris,,STE, +STE:SP:OCECarTER-87310862,1,"Neuvy-Pailloux-4-Routes",46.886656,1.858561,-1,0,SIN:SA:OCE87310862,Europe/Paris,,STE, +STE:SP:OCECarTER-87312546,1,"Mery-sur-Cher",47.246355,1.988267,-1,0,SIN:SA:OCE87312546,Europe/Paris,,STE, +STE:SP:OCECarTER-87313395,1,"Gare de Poix-de-Picardie",49.777802,1.989828,-1,0,SIN:SA:OCE87313395,Europe/Paris,,STE, +STE:SP:OCECarTER-87313759,1,"Gare de Abancourt",49.685665,1.77418,-1,0,SIN:SA:OCE87313759,Europe/Paris,,STE, +STE:SP:OCECarTER-87313874,1,"Gare de Amiens",49.890532,2.308098,-1,0,SIN:SA:OCE87313874,Europe/Paris,,STE, +STE:SP:OCECarTER-87314518,1,"Aubigny-sur-Nere-Mail",47.487775,2.437775,-1,0,SIN:SA:OCE87314518,Europe/Paris,,STE, +STE:SP:OCECarTER-87314526,1,"Argent-sur-Sauldre",47.559993,2.447771,-1,0,SIN:SA:OCE87314526,Europe/Paris,,STE, +STE:SP:OCECarTER-87314534,1,"Coullons",47.699165,2.492493,-1,0,SIN:SA:OCE87314534,Europe/Paris,,STE, +STE:SP:OCECarTER-87314880,1,"Sancerre-Hôtel-du-Remp.",47.332492,2.836944,-1,0,SIN:SA:OCE87314880,Europe/Paris,,STE, +STE:SP:OCECarTER-87314898,1,"St-Satur-Place-du-Marc.",47.339717,2.856941,-1,0,SIN:SA:OCE87314898,Europe/Paris,,STE, +STE:SP:OCECarTER-87314906,1,"Bannay-Bourg",47.386944,2.885826,-1,0,SIN:SA:OCE87314906,Europe/Paris,,STE, +STE:SP:OCECarTER-87317362,1,"Gare de Abbeville",50.102194,1.824485,-1,0,SIN:SA:OCE87317362,Europe/Paris,,STE, +STE:SP:OCECarTER-87317495,1,"Gare de Chépy-Valines",50.06814,1.635563,-1,0,SIN:SA:OCE87317495,Europe/Paris,,STE, +STE:SP:OCECarTER-87317503,1,"Gare de Feuquières-en-Vimeu-Fre",50.063305,1.589164,-1,0,SIN:SA:OCE87317503,Europe/Paris,,STE, +STE:SP:OCECarTER-87317511,1,"Gare de Woincourt",50.058666,1.537138,-1,0,SIN:SA:OCE87317511,Europe/Paris,,STE, +STE:SP:OCECarTER-87317529,1,"Gare de Le Tréport-Mers-Les-B",50.06272,1.376115,-1,0,SIN:SA:OCE87317529,Europe/Paris,,STE, +STE:SP:OCECarTER-87317537,1,"Gare de Eu",50.05429,1.416892,-1,0,SIN:SA:OCE87317537,Europe/Paris,,STE, +STE:SP:OCECarTER-87317701,1,"Lury-sur-Arnon",47.127325,2.058347,-1,0,SIN:SA:OCE87317701,Europe/Paris,,STE, +STE:SP:OCECarTER-87317727,1,"Chéry-Centre",47.120783,2.04673,-1,0,SIN:SA:OCE87317727,Europe/Paris,,STE, +STE:SP:OCECarTER-87321687,1,"Marigny-Centre",49.09861,-1.240283,-1,0,SIN:SA:OCE87321687,Europe/Paris,,STE, +STE:SP:OCECarTER-87321745,1,"Gare de Penhoet",47.289885,-2.200876,-1,0,SIN:SA:OCE87321745,Europe/Paris,,STE, +STE:SP:OCECarTER-87328195,1,"Gare de Thesee",47.322432,1.312006,-1,0,SIN:SA:OCE87328195,Europe/Paris,,STE, +STE:SP:OCECarTER-87331397,1,"Epuisay-Eglise",47.900271,0.929716,-1,0,SIN:SA:OCE87331397,Europe/Paris,,STE, +STE:SP:OCECarTER-87332635,1,"Mondoubleau-Station-Tot",47.979995,0.893323,-1,0,SIN:SA:OCE87332635,Europe/Paris,,STE, +STE:SP:OCECarTER-87333005,1,"Pouzauges (centre)",46.780272,-0.839449,-1,0,SIN:SA:OCE87333005,Europe/Paris,,STE, +STE:SP:OCECarTER-87334508,1,"Gare de La Poterie",48.092062,-1.630786,-1,0,SIN:SA:OCE87334508,Europe/Paris,,STE, +STE:SP:OCECarTER-87337501,1,"Cormery-Pl-du-Croissant",47.268608,0.835268,-1,0,SIN:SA:OCE87337501,Europe/Paris,,STE, +STE:SP:OCECarTER-87337527,1,"Reignac-Café-Brulé",47.226936,0.914997,-1,0,SIN:SA:OCE87337527,Europe/Paris,,STE, +STE:SP:OCECarTER-87337543,1,"Chambourg-Chopin",47.182215,0.968046,-1,0,SIN:SA:OCE87337543,Europe/Paris,,STE, +STE:SP:OCECarTER-87338574,1,"Montargis-OT",48.006943,2.743885,-1,0,SIN:SA:OCE87338574,Europe/Paris,,STE, +STE:SP:OCECarTER-87340380,1,"Cormenon-Centre",47.967777,0.893054,-1,0,SIN:SA:OCE87340380,Europe/Paris,,STE, +STE:SP:OCECarTER-87341156,1,"Lunery-Eglise",46.935567,2.268735,-1,0,SIN:SA:OCE87341156,Europe/Paris,,STE, +STE:SP:OCECarTER-87343152,1,"Cloyes-Médiathèque",47.995194,1.235784,-1,0,SIN:SA:OCE87343152,Europe/Paris,,STE, +STE:SP:OCECarTER-87344440,1,"Ste Gemme",46.90166,-0.287785,-1,0,SIN:SA:OCE87344440,Europe/Paris,,STE, +STE:SP:OCECarTER-87352484,1,"Bagnoles-de-l'Orne O.T.",48.557217,-0.412509,-1,0,SIN:SA:OCE87352484,Europe/Paris,,STE, +STE:SP:OCECarTER-87358556,1,"Droué (Centre)",48.039166,1.077213,-1,0,SIN:SA:OCE87358556,Europe/Paris,,STE, +STE:SP:OCECarTER-87358564,1,"Sargé/Braye (Centre)",47.924439,0.85333,-1,0,SIN:SA:OCE87358564,Europe/Paris,,STE, +STE:SP:OCECarTER-87358697,1,"Savigny/Braye (Centre)",47.880271,0.80971,-1,0,SIN:SA:OCE87358697,Europe/Paris,,STE, +STE:SP:OCECarTER-87381509,1,"Gare de Mantes-la-Jolie",48.989687,1.703294,-1,0,SIN:SA:OCE87381509,Europe/Paris,,STE, +STE:SP:OCECarTER-87388199,1,"Cérences (Centre)",48.933054,-1.435834,-1,0,SIN:SA:OCE87388199,Europe/Paris,,STE, +STE:SP:OCECarTER-87389924,1,"St-Hilaire-Riez (Cent.)",46.726109,-1.974779,-1,0,SIN:SA:OCE87389924,Europe/Paris,,STE, +STE:SP:OCECarTER-87391672,1,"Aube-Centre RN 26",48.739439,0.545554,-1,0,SIN:SA:OCE87391672,Europe/Paris,,STE, +STE:SP:OCECarTER-87391680,1,"La Ferté-Macé Pl. Neust",48.590271,-0.355842,-1,0,SIN:SA:OCE87391680,Europe/Paris,,STE, +STE:SP:OCECarTER-87391698,1,"Le Merlerault-Centre",48.700273,0.283877,-1,0,SIN:SA:OCE87391698,Europe/Paris,,STE, +STE:SP:OCECarTER-87391706,1,"Nonant-Centre",48.704996,0.223604,-1,0,SIN:SA:OCE87391706,Europe/Paris,,STE, +STE:SP:OCECarTER-87391714,1,"Ecouche-Centre",48.715549,-0.120842,-1,0,SIN:SA:OCE87391714,Europe/Paris,,STE, +STE:SP:OCECarTER-87393256,1,"Gare de La Verrière",48.755593,1.94384,-1,0,SIN:SA:OCE87393256,Europe/Paris,,STE, +STE:SP:OCECarTER-87393314,1,"Gare de Rambouillet",48.643788,1.831202,-1,0,STE:SA:OCE87393314,Europe/Paris,,STE, +STE:SP:OCECarTER-87393348,1,"Gare de Gazeran",48.625959,1.772769,-1,0,SIN:SA:OCE87393348,Europe/Paris,,STE, +STE:SP:OCECarTER-87393488,1,"Gare de Dreux",48.731483,1.370166,-1,0,SIN:SA:OCE87393488,Europe/Paris,,STE, +STE:SP:OCECarTER-87393595,1,"Gare de Verneuil-sur-Avre",48.742735,0.929201,-1,0,SIN:SA:OCE87393595,Europe/Paris,,STE, +STE:SP:OCECarTER-87394007,1,"Gare de Chartres",48.448203,1.481226,-1,0,STE:SA:OCE87394007,Europe/Paris,,STE, +STE:SP:OCECarTER-87394114,1,"Gare de Epernon",48.605155,1.681418,-1,0,STE:SA:OCE87394114,Europe/Paris,,STE, +STE:SP:OCECarTER-87394130,1,"Gare de Maintenon",48.585364,1.592455,-1,0,STE:SA:OCE87394130,Europe/Paris,,STE, +STE:SP:OCECarTER-87394148,1,"Gare de St-Piat",48.542441,1.590103,-1,0,STE:SA:OCE87394148,Europe/Paris,,STE, +STE:SP:OCECarTER-87394155,1,"Gare de Jouy",48.51019,1.557496,-1,0,STE:SA:OCE87394155,Europe/Paris,,STE, +STE:SP:OCECarTER-87394171,1,"Gare de La Villette-St-Prest",48.482743,1.52292,-1,0,STE:SA:OCE87394171,Europe/Paris,,STE, +STE:SP:OCECarTER-87394296,1,"Gare de Nogent-le-Rotrou",48.325496,0.810058,-1,0,SIN:SA:OCE87394296,Europe/Paris,,STE, +STE:SP:OCECarTER-87394403,1,"Gare de La Taye",48.407398,1.373239,-1,0,SIN:SA:OCE87394403,Europe/Paris,,STE, +STE:SP:OCECarTER-87394411,1,"Gare de Bailleau-le-Pin",48.36683,1.325031,-1,0,SIN:SA:OCE87394411,Europe/Paris,,STE, +STE:SP:OCECarTER-87394437,1,"Gare de Illiers-Combray",48.304019,1.244945,-1,0,SIN:SA:OCE87394437,Europe/Paris,,STE, +STE:SP:OCECarTER-87394452,1,"Gare de Brou",48.215657,1.160602,-1,0,SIN:SA:OCE87394452,Europe/Paris,,STE, +STE:SP:OCECarTER-87394486,1,"Gare de Arrou",48.099887,1.128189,-1,0,SIN:SA:OCE87394486,Europe/Paris,,STE, +STE:SP:OCECarTER-87394494,1,"Gare de Courtalain-St-Pellerin",48.073829,1.126935,-1,0,SIN:SA:OCE87394494,Europe/Paris,,STE, +STE:SP:OCECarTER-87396002,1,"Gare de Le Mans",47.995584,0.192143,-1,0,SIN:SA:OCE87396002,Europe/Paris,,STE, +STE:SP:OCECarTER-87396036,1,"Gare de La Guierche",48.114021,0.193131,-1,0,SIN:SA:OCE87396036,Europe/Paris,,STE, +STE:SP:OCECarTER-87396044,1,"Gare de Montbizot",48.151328,0.19083,-1,0,SIN:SA:OCE87396044,Europe/Paris,,STE, +STE:SP:OCECarTER-87396200,1,"Gare de Domfront (Sarthe)",48.107786,0.026255,-1,0,SIN:SA:OCE87396200,Europe/Paris,,STE, +STE:SP:OCECarTER-87396218,1,"Gare de Conlie",48.127106,-0.011062,-1,0,SIN:SA:OCE87396218,Europe/Paris,,STE, +STE:SP:OCECarTER-87396234,1,"Gare de Sillé-le-Guillaume",48.181744,-0.128864,-1,0,SIN:SA:OCE87396234,Europe/Paris,,STE, +STE:SP:OCECarTER-87396309,1,"Gare de Connerré-Beillé",48.073752,0.48694,-1,0,SIN:SA:OCE87396309,Europe/Paris,,STE, +STE:SP:OCECarTER-87396325,1,"Gare de La Ferté-Bernard",48.186487,0.639325,-1,0,SIN:SA:OCE87396325,Europe/Paris,,STE, +STE:SP:OCECarTER-87396606,1,"Gare de Château-du-Loir",47.683279,0.414985,-1,0,SIN:SA:OCE87396606,Europe/Paris,,STE, +STE:SP:OCECarTER-87397950,1,"Santec",27.140973,-3.404561,-1,0,SIN:SA:OCE87397950,Europe/Paris,,STE, +STE:SP:OCECarTER-87402008,1,"Romorantin-BA-G.R.",47.359434,1.744431,-1,0,SIN:SA:OCE87402008,Europe/Paris,,STE, +STE:SP:OCECarTER-87402016,1,"Villefranche / Cher G.R",27.140973,-3.404561,-1,0,SIN:SA:OCE87402016,Europe/Paris,,STE, +STE:SP:OCECarTER-87407726,1,"La Grave-Carrefour",46.53344,2.619822,-1,0,SIN:SA:OCE87407726,Europe/Paris,,STE, +STE:SP:OCECarTER-87408906,1,"Meaulne-Place-Centrale",46.598944,2.613285,-1,0,SIN:SA:OCE87408906,Europe/Paris,,STE, +STE:SP:OCECarTER-87408971,1,"Reugny",46.462006,2.615466,-1,0,SIN:SA:OCE87408971,Europe/Paris,,STE, +STE:SP:OCECarTER-87409490,1,"Urcay-Hotel-du-Lyon-d'O",46.626818,2.589411,-1,0,SIN:SA:OCE87409490,Europe/Paris,,STE, +STE:SP:OCECarTER-87411017,1,"Gare de Rouen-Rive-Droite",49.44903,1.094154,-1,0,SIN:SA:OCE87411017,Europe/Paris,,STE, +STE:SP:OCECarTER-87411454,1,"Gare de Montérolier-Buchy",49.603131,1.334709,-1,0,SIN:SA:OCE87411454,Europe/Paris,,STE, +STE:SP:OCECarTER-87411470,1,"Gare de Serqueux",49.631545,1.53934,-1,0,SIN:SA:OCE87411470,Europe/Paris,,STE, +STE:SP:OCECarTER-87413344,1,"Gare de Bréauté-Beuzeville",49.603595,0.417162,-1,0,SIN:SA:OCE87413344,Europe/Paris,,STE, +STE:SP:OCECarTER-87413542,1,"Gare de Fécamp",49.75946,0.373888,-1,0,SIN:SA:OCE87413542,Europe/Paris,,STE, +STE:SP:OCECarTER-87414276,1,"Guiscriff-5-Chemins",48.067492,-3.661953,-1,0,SIN:SA:OCE87414276,Europe/Paris,,STE, +STE:SP:OCECarTER-87414284,1,"Carhaix-Lycée-Diwan",48.272218,-3.553615,-1,0,SIN:SA:OCE87414284,Europe/Paris,,STE, +STE:SP:OCECarTER-87414292,1,"Carhaix-République",48.275552,-3.575561,-1,0,SIN:SA:OCE87414292,Europe/Paris,,STE, +STE:SP:OCECarTER-87414318,1,"Morlaix-Lycée-Corbière",48.566936,-3.822499,-1,0,SIN:SA:OCE87414318,Europe/Paris,,STE, +STE:SP:OCECarTER-87414326,1,"Henvic-Pont-de-la-Corde",48.644994,-3.948066,-1,0,SIN:SA:OCE87414326,Europe/Paris,,STE, +STE:SP:OCECarTER-87414334,1,"Roscoff-Port-de-Bloscon",48.721383,-3.967226,-1,0,SIN:SA:OCE87414334,Europe/Paris,,STE, +STE:SP:OCECarTER-87415604,1,"Gare de Vernon-Giverny",49.091286,1.478363,-1,0,STE:SA:OCE87415604,Europe/Paris,,STE, +STE:SP:OCECarTER-87415885,1,"Gare de Rosny-sur-Seine",48.99717,1.630626,-1,0,TRN:SA:DUA8741588,Europe/Paris,,STE, +STE:SP:OCECarTER-87415893,1,"Gare de Bonnières",49.038603,1.581508,-1,0,SIN:SA:OCE87415893,Europe/Paris,,STE, +STE:SP:OCECarTER-87419291,1,"St-Sever (Centre)",48.840276,-1.045835,-1,0,SIN:SA:OCE87419291,Europe/Paris,,STE, +STE:SP:OCECarTER-87422394,1,"Château-Renault-La-Tann",47.590549,0.90777,-1,0,SIN:SA:OCE87422394,Europe/Paris,,STE, +STE:SP:OCECarTER-87422402,1,"Château-Renault-Pl.J.J.",47.59277,0.914998,-1,0,SIN:SA:OCE87422402,Europe/Paris,,STE, +STE:SP:OCECarTER-87422469,1,"St-Amand-Longpré",47.69305,1.012209,-1,0,SIN:SA:OCE87422469,Europe/Paris,,STE, +STE:SP:OCECarTER-87427393,1,"Monnaie-Jean-Baptiste-M",47.501863,0.790455,-1,0,SIN:SA:OCE87427393,Europe/Paris,,STE, +STE:SP:OCECarTER-87430785,1,"Goderville",49.645564,0.367784,-1,0,SIN:SA:OCE87430785,Europe/Paris,,STE, +STE:SP:OCECarTER-87437087,1,"Romorantin-Plaisance",47.339408,1.749352,-1,0,SIN:SA:OCE87402016,Europe/Paris,,STE, +STE:SP:OCECarTER-87437376,1,"Vierzon-Médiathèque",47.221386,2.062531,-1,0,SIN:SA:OCE87437376,Europe/Paris,,STE, +STE:SP:OCECarTER-87441543,1,"Civray-Grand-Entrevin",46.994374,2.11727,-1,0,SIN:SA:OCE87441543,Europe/Paris,,STE, +STE:SP:OCECarTER-87444000,1,"Gare de Caen",49.176544,-0.34827,-1,0,SIN:SA:OCE87444000,Europe/Paris,,STE, +STE:SP:OCECarTER-87444265,1,"Gare de Lisieux",49.137252,0.231682,-1,0,SIN:SA:OCE87444265,Europe/Paris,,STE, +STE:SP:OCECarTER-87444349,1,"Gare de Pont-l'Evêque",49.287024,0.191969,-1,0,SIN:SA:OCE87444349,Europe/Paris,,STE, +STE:SP:OCECarTER-87444372,1,"Gare de Trouville-Deauville",49.3585,0.084843,-1,0,SIN:SA:OCE87444372,Europe/Paris,,STE, +STE:SP:OCECarTER-87444539,1,"Gare de Argentan",48.738459,-0.025724,-1,0,SIN:SA:OCE87444539,Europe/Paris,,STE, +STE:SP:OCECarTER-87444562,1,"Gare de Surdon",48.664901,0.13413,-1,0,SIN:SA:OCE87444562,Europe/Paris,,STE, +STE:SP:OCECarTER-87444604,1,"Gare de Ste-Gauburge",48.717263,0.428108,-1,0,SIN:SA:OCE87444604,Europe/Paris,,STE, +STE:SP:OCECarTER-87444638,1,"Gare de L'Aigle",48.766684,0.620733,-1,0,SIN:SA:OCE87444638,Europe/Paris,,STE, +STE:SP:OCECarTER-87444695,1,"Gare de Sées",48.600161,0.166112,-1,0,SIN:SA:OCE87444695,Europe/Paris,,STE, +STE:SP:OCECarTER-87444711,1,"Gare de Alençon",48.433803,0.09905,-1,0,SIN:SA:OCE87444711,Europe/Paris,,STE, +STE:SP:OCECarTER-87447003,1,"Gare de St-Lô",49.115895,-1.101089,-1,0,SIN:SA:OCE87447003,Europe/Paris,,STE, +STE:SP:OCECarTER-87447110,1,"Gare de Coutances",49.042797,-1.441267,-1,0,SIN:SA:OCE87447110,Europe/Paris,,STE, +STE:SP:OCECarTER-87447219,1,"Gare de Lison",49.227053,-1.050285,-1,0,SIN:SA:OCE87447219,Europe/Paris,,STE, +STE:SP:OCECarTER-87447508,1,"Orval-Hyenville",48.995277,-1.461952,-1,0,SIN:SA:OCE87447508,Europe/Paris,,STE, +STE:SP:OCECarTER-87447615,1,"Quettreville (Centre)",48.971663,-1.468061,-1,0,SIN:SA:OCE87447615,Europe/Paris,,STE, +STE:SP:OCECarTER-87447649,1,"Gare de Folligny",48.829153,-1.4064,-1,0,SIN:SA:OCE87447649,Europe/Paris,,STE, +STE:SP:OCECarTER-87447672,1,"St-Planchers",48.836941,-1.49668,-1,0,SIN:SA:OCE87447672,Europe/Paris,,STE, +STE:SP:OCECarTER-87447680,1,"Gare de Granville",48.838844,-1.586778,-1,0,SIN:SA:OCE87447680,Europe/Paris,,STE, +STE:SP:OCECarTER-87447698,1,"Gare de Villedieu (Gare)",48.834152,-1.225455,-1,0,SIN:SA:OCE87447698,Europe/Paris,,STE, +STE:SP:OCECarTER-87447706,1,"St-Aubin (Embt.)",48.822218,-1.111401,-1,0,SIN:SA:OCE87447706,Europe/Paris,,STE, +STE:SP:OCECarTER-87447722,1,"Mesnil-Clinchamps(Emb.)",48.84027,-0.986675,-1,0,SIN:SA:OCE87447722,Europe/Paris,,STE, +STE:SP:OCECarTER-87448001,1,"Gare de Flers",48.744373,-0.573681,-1,0,SIN:SA:OCE87448001,Europe/Paris,,STE, +STE:SP:OCECarTER-87448076,1,"Fromentel-Embt.",48.718883,-0.266112,-1,0,SIN:SA:OCE87448076,Europe/Paris,,STE, +STE:SP:OCECarTER-87448084,1,"Gare de Briouze",48.702003,-0.367444,-1,0,SIN:SA:OCE87448084,Europe/Paris,,STE, +STE:SP:OCECarTER-87448092,1,"Bellou-en-Houlme (Ctre)",48.690555,-0.442503,-1,0,SIN:SA:OCE87448092,Europe/Paris,,STE, +STE:SP:OCECarTER-87448100,1,"Messei-Centre",48.713607,-0.539174,-1,0,SIN:SA:OCE87448100,Europe/Paris,,STE, +STE:SP:OCECarTER-87448159,1,"Gare de Vire",48.846354,-0.883169,-1,0,SIN:SA:OCE87448159,Europe/Paris,,STE, +STE:SP:OCECarTER-87448167,1,"Vire-Centre",48.846103,-0.882786,-1,0,SIN:SA:OCE87448159,Europe/Paris,,STE, +STE:SP:OCECarTER-87448464,1,"La Ferté-Macé",48.59472,-0.356398,-1,0,SIN:SA:OCE87448464,Europe/Paris,,STE, +STE:SP:OCECarTER-87448514,1,"Gare de Avranches",48.690409,-1.369974,-1,0,SIN:SA:OCE87448514,Europe/Paris,,STE, +STE:SP:OCECarTER-87449330,1,"Bagnoles- Orne Egl.Mad.",48.549719,-0.424727,-1,0,SIN:SA:OCE87449330,Europe/Paris,,STE, +STE:SP:OCECarTER-87449868,1,"Lonlay-le-Tesson",48.643329,-0.353063,-1,0,SIN:SA:OCE87449868,Europe/Paris,,STE, +STE:SP:OCECarTER-87453373,1,"St-Benoit-La-Foret-Hopi",47.222731,0.322288,-1,0,SIN:SA:OCE87453373,Europe/Paris,,STE, +STE:SP:OCECarTER-87453381,1,"Bruere-Allichamp-Mairie",46.768403,2.433175,-1,0,SIN:SA:OCE87453381,Europe/Paris,,STE, +STE:SP:OCECarTER-87453399,1,"Morée-Centre",47.902154,1.234928,-1,0,SIN:SA:OCE87453399,Europe/Paris,,STE, +STE:SP:OCECarTER-87453597,1,"St-Florent-Sur-Cher-Gar",46.99216,2.252175,-1,0,SIN:SA:OCE87453597,Europe/Paris,,STE, +STE:SP:OCECarTER-87454249,1,"Bourges-Gare-Routière",27.140973,-3.404561,-1,0,SIN:SA:OCE87454249,Europe/Paris,,STE, +STE:SP:OCECarTER-87455097,1,"Fontenay-Pt-Tranchefêtu",48.394816,1.413299,-1,0,SIN:SA:OCE87455097,Europe/Paris,,STE, +STE:SP:OCECarTER-87462960,1,"Cholet-les-Halles",47.060194,-0.880296,-1,0,SIN:SA:OCE87462960,Europe/Paris,,STE, +STE:SP:OCECarTER-87463083,1,"Nantes-Pirmil",47.196725,-1.543036,-1,0,STE:SA:OCE87463083,Europe/Paris,,STE, +STE:SP:OCECarTER-87463125,1,"Ste-Pazanne-Rue-Vigneau",47.1059,-1.810952,-1,0,SIN:SA:OCE87463125,Europe/Paris,,STE, +STE:SP:OCECarTER-87465690,1,"Bourges-Aéroport",47.062304,2.365809,-1,0,SIN:SA:OCE87465690,Europe/Paris,,STE, +STE:SP:OCECarTER-87465716,1,"St-Lactensin-Tesseau",46.898619,1.494449,-1,0,SIN:SA:OCE87465716,Europe/Paris,,STE, +STE:SP:OCECarTER-87465724,1,"Tauxigny-Node-Park",47.215162,0.834364,-1,0,SIN:SA:OCE87465724,Europe/Paris,,STE, +STE:SP:OCECarTER-87471003,1,"Gare de Rennes",48.103515,-1.672327,-1,0,STE:SA:OCE87471003,Europe/Paris,,STE, +STE:SP:OCECarTER-87471029,1,"Gare de Vern",48.04683,-1.59656,-1,0,SIN:SA:OCE87471029,Europe/Paris,,STE, +STE:SP:OCECarTER-87471201,1,"Gare de Fougeray-Langon",47.73022,-1.85118,-1,0,SIN:SA:OCE87471201,Europe/Paris,,STE, +STE:SP:OCECarTER-87471219,1,"Gare de Beslé",47.699196,-1.870289,-1,0,SIN:SA:OCE87471219,Europe/Paris,,STE, +STE:SP:OCECarTER-87471300,1,"Gare de Redon",47.651763,-2.087877,-1,0,STE:SA:OCE87471300,Europe/Paris,,STE, +STE:SP:OCECarTER-87471318,1,"Gare de St-Armel",48.014277,-1.594801,-1,0,STE:SA:OCE87471318,Europe/Paris,,STE, +STE:SP:OCECarTER-87471326,1,"Gare de Corps-Nuds",47.985608,-1.575469,-1,0,STE:SA:OCE87471326,Europe/Paris,,STE, +STE:SP:OCECarTER-87471334,1,"Gare de Janzé",47.955123,-1.49741,-1,0,SIN:SA:OCE87471334,Europe/Paris,,STE, +STE:SP:OCECarTER-87471342,1,"Gare de Le Theil-de-Bretagne",47.918713,-1.432376,-1,0,SIN:SA:OCE87471342,Europe/Paris,,STE, +STE:SP:OCECarTER-87471359,1,"Gare de Retiers",47.913212,-1.389718,-1,0,SIN:SA:OCE87471359,Europe/Paris,,STE, +STE:SP:OCECarTER-87471367,1,"Gare de Martigné-Ferchaud",47.831974,-1.313728,-1,0,SIN:SA:OCE87471367,Europe/Paris,,STE, +STE:SP:OCECarTER-87471607,1,"Fougères",48.35029,-1.194508,-1,0,SIN:SA:OCE87471607,Europe/Paris,,STE, +STE:SP:OCECarTER-87473009,1,"Gare de St-Brieuc",48.507223,-2.765467,-1,0,SIN:SA:OCE87473009,Europe/Paris,,STE, +STE:SP:OCECarTER-87473108,1,"Gare de Lamballe",48.465922,-2.511489,-1,0,SIN:SA:OCE87473108,Europe/Paris,,STE, +STE:SP:OCECarTER-87473116,1,"Gare de Yffiniac",48.470113,-2.652377,-1,0,SIN:SA:OCE87473116,Europe/Paris,,STE, +STE:SP:OCECarTER-87473207,1,"Gare de Guingamp",48.555536,-3.142716,-1,0,SIN:SA:OCE87473207,Europe/Paris,,STE, +STE:SP:OCECarTER-87473264,1,"Gare de Landébia",48.507364,-2.331714,-1,0,SIN:SA:OCE87473264,Europe/Paris,,STE, +STE:SP:OCECarTER-87473272,1,"Gare de Plancoet",48.52147,-2.228839,-1,0,SIN:SA:OCE87473272,Europe/Paris,,STE, +STE:SP:OCECarTER-87473496,1,"Gourin",48.139992,-3.605281,-1,0,SIN:SA:OCE87473496,Europe/Paris,,STE, +STE:SP:OCECarTER-87473504,1,"Gare de Carhaix",48.275812,-3.56411,-1,0,SIN:SA:OCE87473504,Europe/Paris,,STE, +STE:SP:OCECarTER-87473595,1,"Kerbiquet",48.09972,-3.629726,-1,0,SIN:SA:OCE87473595,Europe/Paris,,STE, +STE:SP:OCECarTER-87473769,1,"Port-de-Carhaix",48.243048,-3.60251,-1,0,SIN:SA:OCE87473769,Europe/Paris,,STE, +STE:SP:OCECarTER-87473777,1,"Motreff",48.190827,-3.568614,-1,0,SIN:SA:OCE87473777,Europe/Paris,,STE, +STE:SP:OCECarTER-87474007,1,"Gare de Brest",48.388083,-4.478918,-1,0,SIN:SA:OCE87474007,Europe/Paris,,STE, +STE:SP:OCECarTER-87474015,1,"Gare de Dirinon",48.392594,-4.285596,-1,0,SIN:SA:OCE87474015,Europe/Paris,,STE, +STE:SP:OCECarTER-87474056,1,"Gare de Pont-de-Buis",48.254317,-4.086314,-1,0,SIN:SA:OCE87474056,Europe/Paris,,STE, +STE:SP:OCECarTER-87474064,1,"Gare de Châteaulin-Emb.",48.201506,-4.09404,-1,0,SIN:SA:OCE87474064,Europe/Paris,,STE, +STE:SP:OCECarTER-87474098,1,"Gare de Quimper",47.994658,-4.092103,-1,0,SIN:SA:OCE87474098,Europe/Paris,,STE, +STE:SP:OCECarTER-87474155,1,"Gare de Rosporden",47.96019,-3.832758,-1,0,SIN:SA:OCE87474155,Europe/Paris,,STE, +STE:SP:OCECarTER-87474239,1,"Gare de Landerneau",48.453834,-4.256209,-1,0,SIN:SA:OCE87474239,Europe/Paris,,STE, +STE:SP:OCECarTER-87474338,1,"Gare de Morlaix",48.577979,-3.832761,-1,0,SIN:SA:OCE87474338,Europe/Paris,,STE, +STE:SP:OCECarTER-87474445,1,"Ernée",48.296658,-0.940003,-1,0,SIN:SA:OCE87474445,Europe/Paris,,STE, +STE:SP:OCECarTER-87474544,1,"Henvic (Centre)",48.63222,-3.9264,-1,0,SIN:SA:OCE87474544,Europe/Paris,,STE, +STE:SP:OCECarTER-87474551,1,"Plouénan (Car.C25/D769)",48.641108,-3.970429,-1,0,SIN:SA:OCE87474551,Europe/Paris,,STE, +STE:SP:OCECarTER-87474569,1,"Gare de St-Pol-de-Léon",48.676806,-3.987578,-1,0,SIN:SA:OCE87474569,Europe/Paris,,STE, +STE:SP:OCECarTER-87474635,1,"Gare de Roscoff",48.720554,-3.982457,-1,0,SIN:SA:OCE87474635,Europe/Paris,,STE, +STE:SP:OCECarTER-87474668,1,"Kernevel",47.960277,-3.814167,-1,0,SIN:SA:OCE87474668,Europe/Paris,,STE, +STE:SP:OCECarTER-87474676,1,"Scaer",48.026938,-3.706391,-1,0,SIN:SA:OCE87474676,Europe/Paris,,STE, +STE:SP:OCECarTER-87476002,1,"Gare de Lorient",47.755203,-3.366348,-1,0,SIN:SA:OCE87476002,Europe/Paris,,STE, +STE:SP:OCECarTER-87476317,1,"Gare de Quimperlé",47.869063,-3.553011,-1,0,SIN:SA:OCE87476317,Europe/Paris,,STE, +STE:SP:OCECarTER-87476671,1,"Gare de Questembert",47.683131,-2.449669,-1,0,SIN:SA:OCE87476671,Europe/Paris,,STE, +STE:SP:OCECarTER-87476689,1,"Gare de Malansac",47.675428,-2.295754,-1,0,SIN:SA:OCE87476689,Europe/Paris,,STE, +STE:SP:OCECarTER-87476754,1,"Gare de Sévérac",47.550054,-2.072783,-1,0,STE:SA:OCE87476754,Europe/Paris,,STE, +STE:SP:OCECarTER-87476762,1,"Gare de St-Gildas-des-Bois",47.516565,-2.04365,-1,0,SIN:SA:OCE87476762,Europe/Paris,,STE, +STE:SP:OCECarTER-87476770,1,"Gare de Dreffeac",47.482389,-2.050246,-1,0,SIN:SA:OCE87476770,Europe/Paris,,STE, +STE:SP:OCECarTER-87478073,1,"Gare de Dol",48.542976,-1.75047,-1,0,SIN:SA:OCE87478073,Europe/Paris,,STE, +STE:SP:OCECarTER-87478123,1,"Gare de Plerguer",48.531538,-1.850443,-1,0,SIN:SA:OCE87478123,Europe/Paris,,STE, +STE:SP:OCECarTER-87478164,1,"Gare de Dinan",48.456966,-2.052987,-1,0,SIN:SA:OCE87478164,Europe/Paris,,STE, +STE:SP:OCECarTER-87478180,1,"Gare de Corseul-Languenan",48.496002,-2.141404,-1,0,SIN:SA:OCE87478180,Europe/Paris,,STE, +STE:SP:OCECarTER-87478263,1,"Gare de Pontorson-Mt-St-Michel",48.552444,-1.505068,-1,0,SIN:SA:OCE87478263,Europe/Paris,,STE, +STE:SP:OCECarTER-87478339,1,"Kernevel-Centre",27.140973,-3.404561,-1,0,SIN:SA:OCE87402016,Europe/Paris,,STE, +STE:SP:OCECarTER-87478404,1,"Gare de Laval",48.076252,-0.760939,-1,0,SIN:SA:OCE87478404,Europe/Paris,,STE, +STE:SP:OCECarTER-87478537,1,"Gare de Montsurs",48.141106,-0.551436,-1,0,SIN:SA:OCE87478537,Europe/Paris,,STE, +STE:SP:OCECarTER-87478552,1,"Gare de Evron",48.155535,-0.39717,-1,0,SIN:SA:OCE87478552,Europe/Paris,,STE, +STE:SP:OCECarTER-87481002,1,"Gare de Nantes",47.217505,-1.541925,-1,0,STE:SA:OCE87481002,Europe/Paris,,STE, +STE:SP:OCECarTER-87481051,1,"Gare de Chantenay",47.197211,-1.594316,-1,0,SIN:SA:OCE87481051,Europe/Paris,,STE, +STE:SP:OCECarTER-87481069,1,"Gare de La Basse-Indre-St-Herb.",47.20411,-1.660311,-1,0,SIN:SA:OCE87481069,Europe/Paris,,STE, +STE:SP:OCECarTER-87481176,1,"Gare de Boussay-la-Bruffière",47.050461,-1.182848,-1,0,SIN:SA:OCE87481176,Europe/Paris,,STE, +STE:SP:OCECarTER-87481366,1,"Gare de Machecoul",46.990618,-1.82263,-1,0,SIN:SA:OCE87481366,Europe/Paris,,STE, +STE:SP:OCECarTER-87481390,1,"Gare de Challans",46.844046,-1.87183,-1,0,SIN:SA:OCE87481390,Europe/Paris,,STE, +STE:SP:OCECarTER-87481440,1,"Gare de Clisson",47.085986,-1.286356,-1,0,STE:SA:OCE87481440,Europe/Paris,,STE, +STE:SP:OCECarTER-87481648,1,"Gare de Châteaubriant",47.716996,-1.371397,-1,0,STE:SA:OCE87481648,Europe/Paris,,STE, +STE:SP:OCECarTER-87481689,1,"Gare de La Croix-de-Méan",47.300547,-2.193,-1,0,SIN:SA:OCE87481689,Europe/Paris,,STE, +STE:SP:OCECarTER-87481697,1,"Gare de La Baule-les-Pins",47.283575,-2.364769,-1,0,SIN:SA:OCE87481697,Europe/Paris,,STE, +STE:SP:OCECarTER-87481705,1,"Gare de St-Nazaire",47.286474,-2.211074,-1,0,SIN:SA:OCE87481705,Europe/Paris,,STE, +STE:SP:OCECarTER-87481713,1,"Gare de Montoir-de-Bretagne",47.321047,-2.16164,-1,0,SIN:SA:OCE87481713,Europe/Paris,,STE, +STE:SP:OCECarTER-87481721,1,"Gare de Donges",47.308686,-2.071699,-1,0,SIN:SA:OCE87481721,Europe/Paris,,STE, +STE:SP:OCECarTER-87481747,1,"Gare de Pornichet",47.270485,-2.344737,-1,0,SIN:SA:OCE87481747,Europe/Paris,,STE, +STE:SP:OCECarTER-87481754,1,"Gare de La Baule-Escoublac",47.288622,-2.389225,-1,0,SIN:SA:OCE87481754,Europe/Paris,,STE, +STE:SP:OCECarTER-87481762,1,"Gare de Le Pouliguen",47.282524,-2.433157,-1,0,SIN:SA:OCE87481762,Europe/Paris,,STE, +STE:SP:OCECarTER-87481770,1,"Gare de Batz-sur-Mer",47.280836,-2.479,-1,0,SIN:SA:OCE87481770,Europe/Paris,,STE, +STE:SP:OCECarTER-87481788,1,"Gare de Le Croisic",47.289889,-2.507288,-1,0,SIN:SA:OCE87481788,Europe/Paris,,STE, +STE:SP:OCECarTER-87481804,1,"Gare de Couéron",47.221924,-1.723519,-1,0,STE:SA:OCE87481804,Europe/Paris,,STE, +STE:SP:OCECarTER-87481812,1,"Gare de St-Etienne-de-Montluc",47.274767,-1.785623,-1,0,SIN:SA:OCE87481812,Europe/Paris,,STE, +STE:SP:OCECarTER-87481820,1,"Gare de Cordemais",47.302199,-1.846616,-1,0,SIN:SA:OCE87481820,Europe/Paris,,STE, +STE:SP:OCECarTER-87481838,1,"Gare de Savenay",47.358554,-1.951034,-1,0,STE:SA:OCE87481838,Europe/Paris,,STE, +STE:SP:OCECarTER-87481846,1,"Gare de Pontchâteau",47.435338,-2.088488,-1,0,SIN:SA:OCE87481846,Europe/Paris,,STE, +STE:SP:OCECarTER-87484006,1,"Gare de Angers-St-Laud",47.464434,-0.556949,-1,0,SIN:SA:OCE87484006,Europe/Paris,,STE, +STE:SP:OCECarTER-87484204,1,"Gare de Chalonnes",47.343005,-0.743764,-1,0,SIN:SA:OCE87484204,Europe/Paris,,STE, +STE:SP:OCECarTER-87484246,1,"Gare de Chemillé",47.217598,-0.732093,-1,0,SIN:SA:OCE87484246,Europe/Paris,,STE, +STE:SP:OCECarTER-87484303,1,"Gare de Cholet",47.065732,-0.869612,-1,0,SIN:SA:OCE87484303,Europe/Paris,,STE, +STE:SP:OCECarTER-87484337,1,"Gare de La Possonnière",47.371493,-0.691742,-1,0,SIN:SA:OCE87484337,Europe/Paris,,STE, +STE:SP:OCECarTER-87486019,1,"Gare de La Roche-sur-Yon",46.672025,-1.43568,-1,0,STE:SA:OCE87486019,Europe/Paris,,STE, +STE:SP:OCECarTER-87486332,1,"Gare de Chantonnay",46.690119,-1.054358,-1,0,SIN:SA:OCE87486332,Europe/Paris,,STE, +STE:SP:OCECarTER-87486423,1,"Gare de La Mothe-Achard",46.606815,-1.659679,-1,0,SIN:SA:OCE87486423,Europe/Paris,,STE, +STE:SP:OCECarTER-87486449,1,"Gare de Les Sables-d'Olonne",46.499983,-1.781155,-1,0,SIN:SA:OCE87486449,Europe/Paris,,STE, +STE:SP:OCECarTER-87486563,1,"Gare de St-Hilaire-de-Riez SNCF",46.716579,-1.949586,-1,0,SIN:SA:OCE87486563,Europe/Paris,,STE, +STE:SP:OCECarTER-87486571,1,"Gare de St-Gilles-Croix-de-Vie",46.69638,-1.94137,-1,0,SIN:SA:OCE87486571,Europe/Paris,,STE, +STE:SP:OCECarTER-87486894,1,"Gare de Torfou",47.033135,-1.117308,-1,0,SIN:SA:OCE87486894,Europe/Paris,,STE, +STE:SP:OCECarTER-87487009,1,"Gare de Thouars",46.985249,-0.210513,-1,0,SIN:SA:OCE87487009,Europe/Paris,,STE, +STE:SP:OCECarTER-87487231,1,"Noirterre",46.869564,-0.396173,-1,0,SIN:SA:OCE87487231,Europe/Paris,,STE, +STE:SP:OCECarTER-87487249,1,"Gare de Bressuire",46.837167,-0.496485,-1,0,SIN:SA:OCE87487249,Europe/Paris,,STE, +STE:SP:OCECarTER-87487264,1,"Subdray-Lycée-Agricole",47.021754,2.293593,-1,0,SIN:SA:OCE87487264,Europe/Paris,,STE, +STE:SP:OCECarTER-87487280,1,"Gare de Cerizay",46.817312,-0.667487,-1,0,SIN:SA:OCE87487280,Europe/Paris,,STE, +STE:SP:OCECarTER-87487298,1,"St-Mesmin-le-Vieux",46.790413,-0.732186,-1,0,SIN:SA:OCE87487298,Europe/Paris,,STE, +STE:SP:OCECarTER-87487603,1,"Gare de Saumur",47.268972,-0.07143,-1,0,SIN:SA:OCE87487603,Europe/Paris,,STE, +STE:SP:OCECarTER-87487611,1,"Brion-près-Thouet",47.04872,-0.18491,-1,0,SIN:SA:OCE87487611,Europe/Paris,,STE, +STE:SP:OCECarTER-87487637,1,"Gare de Montreuil-Bellay",47.125325,-0.148041,-1,0,SIN:SA:OCE87487637,Europe/Paris,,STE, +STE:SP:OCECarTER-87487884,1,"Gare de La Menitré",47.397369,-0.275869,-1,0,SIN:SA:OCE87487884,Europe/Paris,,STE, +STE:SP:OCECarTER-87487892,1,"Gare de St-Mathurin",47.412078,-0.318063,-1,0,SIN:SA:OCE87487892,Europe/Paris,,STE, +STE:SP:OCECarTER-87499863,1,"Cosne-sur-Loire-Sud",27.140973,-3.404561,-1,0,SIN:SA:OCE87499863,Europe/Paris,,STE, +STE:SP:OCECarTER-87543017,1,"Gare de Aubrais-(les)",47.926917,1.906085,-1,0,SIN:SA:OCE87543017,Europe/Paris,,STE, +STE:SP:OCECarTER-87543033,1,"Gare de Cercottes",47.986387,1.884447,-1,0,SIN:SA:OCE87543033,Europe/Paris,,STE, +STE:SP:OCECarTER-87543041,1,"Gare de Chevilly",48.026636,1.879047,-1,0,SIN:SA:OCE87543041,Europe/Paris,,STE, +STE:SP:OCECarTER-87543058,1,"Gare de Artenay",48.080653,1.883355,-1,0,SIN:SA:OCE87543058,Europe/Paris,,STE, +STE:SP:OCECarTER-87543066,1,"Gare de Château-Gaillard",48.141549,1.912467,-1,0,SIN:SA:OCE87543066,Europe/Paris,,STE, +STE:SP:OCECarTER-87543140,1,"Gare de Lamotte-Beuvron",47.59397,2.022591,-1,0,SIN:SA:OCE87543140,Europe/Paris,,STE, +STE:SP:OCECarTER-87543157,1,"Gare de Nouan-le-Fuzelier",47.534058,2.033265,-1,0,SIN:SA:OCE87543157,Europe/Paris,,STE, +STE:SP:OCECarTER-87543165,1,"Gare de Salbris",47.42514,2.047737,-1,0,SIN:SA:OCE87543165,Europe/Paris,,STE, +STE:SP:OCECarTER-87545525,1,"Gare de Dourdan",48.533612,2.009701,-1,0,SIN:SA:OCE87545525,Europe/Paris,,STE, +STE:SP:OCECarTER-87545657,1,"Gare de Auneau",48.445413,1.779718,-1,0,SIN:SA:OCE87545657,Europe/Paris,,STE, +STE:SP:OCECarTER-87545707,1,"Gare de Voves",48.274974,1.622171,-1,0,SIN:SA:OCE87545707,Europe/Paris,,STE, +STE:SP:OCECarTER-87545731,1,"Gare de Bonneval",48.186288,1.386117,-1,0,SIN:SA:OCE87545731,Europe/Paris,,STE, +STE:SP:OCECarTER-87545756,1,"Gare de Châteaudun",48.073354,1.338105,-1,0,SIN:SA:OCE87545756,Europe/Paris,,STE, +STE:SP:OCECarTER-87571000,1,"Gare de Tours",47.389814,0.693505,-1,0,SIN:SA:OCE87571000,Europe/Paris,,STE, +STE:SP:OCECarTER-87571216,1,"Gare de Vendôme-Villiers-s-Loir",47.820324,1.019667,-1,0,SIN:SA:OCE87571216,Europe/Paris,,STE, +STE:SP:OCECarTER-87571240,1,"Gare de St-Pierre-des-Corps",47.385732,0.725054,-1,0,SIN:SA:OCE87571240,Europe/Paris,,STE, +STE:SP:OCECarTER-87571273,1,"Gare de Montlouis",47.391554,0.817513,-1,0,SIN:SA:OCE87571273,Europe/Paris,,STE, +STE:SP:OCECarTER-87571406,1,"Gare de Montbazon",47.291644,0.721504,-1,0,SIN:SA:OCE87571406,Europe/Paris,,STE, +STE:SP:OCECarTER-87571414,1,"Gare de Veigné",47.2915,0.734441,-1,0,SIN:SA:OCE87571414,Europe/Paris,,STE, +STE:SP:OCECarTER-87571422,1,"Gare de Esvres",47.284119,0.781561,-1,0,SIN:SA:OCE87571422,Europe/Paris,,STE, +STE:SP:OCECarTER-87571430,1,"Gare de Cormery",47.262354,0.833818,-1,0,SIN:SA:OCE87571430,Europe/Paris,,STE, +STE:SP:OCECarTER-87571448,1,"Gare de Courcay-Tauxigny",47.237832,0.867626,-1,0,SIN:SA:OCE87571448,Europe/Paris,,STE, +STE:SP:OCECarTER-87571455,1,"Gare de Reignac",47.217787,0.901295,-1,0,SIN:SA:OCE87571455,Europe/Paris,,STE, +STE:SP:OCECarTER-87571471,1,"Gare de Loches",47.1304,1.00097,-1,0,SIN:SA:OCE87571471,Europe/Paris,,STE, +STE:SP:OCECarTER-87571489,1,"Perrusson",47.101184,1.014017,-1,0,SIN:SA:OCE87571489,Europe/Paris,,STE, +STE:SP:OCECarTER-87571539,1,"Gare de St-Antoine-du-Rocher",47.50381,0.616365,-1,0,SIN:SA:OCE87571539,Europe/Paris,,STE, +STE:SP:OCECarTER-87571547,1,"Gare de Neuillé-Pont-Pierre",47.558461,0.564038,-1,0,SIN:SA:OCE87571547,Europe/Paris,,STE, +STE:SP:OCECarTER-87571554,1,"Gare de St-Paterne",47.60408,0.478045,-1,0,SIN:SA:OCE87571554,Europe/Paris,,STE, +STE:SP:OCECarTER-87571604,1,"Gare de Ballan",47.336758,0.61808,-1,0,SIN:SA:OCE87571604,Europe/Paris,,STE, +STE:SP:OCECarTER-87571612,1,"Gare de Druye",47.306788,0.535467,-1,0,SIN:SA:OCE87571612,Europe/Paris,,STE, +STE:SP:OCECarTER-87571638,1,"Gare de Azay-le-Rideau",47.266246,0.447778,-1,0,SIN:SA:OCE87571638,Europe/Paris,,STE, +STE:SP:OCECarTER-87571653,1,"Gare de Rivarennes",47.267661,0.361921,-1,0,SIN:SA:OCE87571653,Europe/Paris,,STE, +STE:SP:OCECarTER-87571687,1,"Gare de Chinon",47.163053,0.252044,-1,0,SIN:SA:OCE87571687,Europe/Paris,,STE, +STE:SP:OCECarTER-87571703,1,"La Roche-Clermault",47.140127,0.194878,-1,0,SIN:SA:OCE87571703,Europe/Paris,,STE, +STE:SP:OCECarTER-87571711,1,"Beuxes",47.094612,0.176771,-1,0,SIN:SA:OCE87571711,Europe/Paris,,STE, +STE:SP:OCECarTER-87571729,1,"Basses-Sammarçolles",47.035547,0.122767,-1,0,SIN:SA:OCE87571729,Europe/Paris,,STE, +STE:SP:OCECarTER-87571794,1,"Gare de Port-Boulet",47.248527,0.154869,-1,0,SIN:SA:OCE87571794,Europe/Paris,,STE, +STE:SP:OCECarTER-87571828,1,"Gare de Langeais",47.323944,0.410325,-1,0,SIN:SA:OCE87571828,Europe/Paris,,STE, +STE:SP:OCECarTER-87571836,1,"Gare de Cinq-Mars",47.344792,0.460078,-1,0,SIN:SA:OCE87571836,Europe/Paris,,STE, +STE:SP:OCECarTER-87571885,1,"Gare de Joué-lès-Tours",47.354238,0.667088,-1,0,SIN:SA:OCE87571885,Europe/Paris,,STE, +STE:SP:OCECarTER-87574004,1,"Gare de Blois-Chambord",47.585424,1.323728,-1,0,SIN:SA:OCE87574004,Europe/Paris,,STE, +STE:SP:OCECarTER-87574301,1,"Gare de Chouzy",47.520345,1.247575,-1,0,SIN:SA:OCE87574301,Europe/Paris,,STE, +STE:SP:OCECarTER-87574327,1,"Gare de Veuves-Monteaux",47.475503,1.123663,-1,0,SIN:SA:OCE87574327,Europe/Paris,,STE, +STE:SP:OCECarTER-87574335,1,"Gare de Limeray",47.450291,1.049821,-1,0,SIN:SA:OCE87574335,Europe/Paris,,STE, +STE:SP:OCECarTER-87574343,1,"Gare de Amboise",47.421431,0.981219,-1,0,SIN:SA:OCE87574343,Europe/Paris,,STE, +STE:SP:OCECarTER-87574509,1,"Gare de Cloyes",47.992169,1.243123,-1,0,SIN:SA:OCE87574509,Europe/Paris,,STE, +STE:SP:OCECarTER-87574533,1,"Gare de Fréteval-Morée",47.892032,1.21187,-1,0,SIN:SA:OCE87574533,Europe/Paris,,STE, +STE:SP:OCECarTER-87574541,1,"Gare de Pézou",47.86722,1.140699,-1,0,SIN:SA:OCE87574541,Europe/Paris,,STE, +STE:SP:OCECarTER-87574558,1,"Gare de Vendôme",47.802156,1.067688,-1,0,SIN:SA:OCE87574558,Europe/Paris,,STE, +STE:SP:OCECarTER-87574665,1,"Gare de Château-Renault",47.588287,0.901595,-1,0,SIN:SA:OCE87574665,Europe/Paris,,STE, +STE:SP:OCECarTER-87574897,1,"Gare de St-Aignan-Noyers",47.286728,1.383662,-1,0,SIN:SA:OCE87574897,Europe/Paris,,STE, +STE:SP:OCECarTER-87575084,1,"Loudun",47.016026,0.083345,-1,0,SIN:SA:OCE87575084,Europe/Paris,,STE, +STE:SP:OCECarTER-87575100,1,"Arçay",46.971648,0.011179,-1,0,SIN:SA:OCE87575100,Europe/Paris,,STE, +STE:SP:OCECarTER-87575209,1,"Pas-de-Jeu",46.975275,-0.041957,-1,0,SIN:SA:OCE87575209,Europe/Paris,,STE, +STE:SP:OCECarTER-87576009,1,"Gare de Vierzon",47.226516,2.059824,-1,0,SIN:SA:OCE87576009,Europe/Paris,,STE, +STE:SP:OCECarTER-87576025,1,"Gare de Romorantin-Blanc-Argent",47.355567,1.739246,-1,0,SIN:SA:OCE87576025,Europe/Paris,,STE, +STE:SP:OCECarTER-87576082,1,"Gare de La Ferté-Imbault",47.383746,1.958033,-1,0,SIN:SA:OCE87576082,Europe/Paris,,STE, +STE:SP:OCECarTER-87576140,1,"Gare de Selles-St-Denis",47.388346,1.92233,-1,0,SIN:SA:OCE87576140,Europe/Paris,,STE, +STE:SP:OCECarTER-87576157,1,"Gare de Loreux",47.390409,1.8344,-1,0,SIN:SA:OCE87576157,Europe/Paris,,STE, +STE:SP:OCECarTER-87576165,1,"Gare de Villeherviers",47.369236,1.796982,-1,0,SIN:SA:OCE87576165,Europe/Paris,,STE, +STE:SP:OCECarTER-87576173,1,"Gare de Faubourg-d'Orléans",47.366995,1.740137,-1,0,SIN:SA:OCE87576173,Europe/Paris,,STE, +STE:SP:OCECarTER-87576181,1,"Gare de Les Quatre-Roues",47.332539,1.702295,-1,0,SIN:SA:OCE87576181,Europe/Paris,,STE, +STE:SP:OCECarTER-87576199,1,"Gare de Pruniers",47.313207,1.671891,-1,0,SIN:SA:OCE87576199,Europe/Paris,,STE, +STE:SP:OCECarTER-87576207,1,"Gare de Bourges",47.094094,2.394226,-1,0,SIN:SA:OCE87576207,Europe/Paris,,STE, +STE:SP:OCECarTER-87576215,1,"Gare de Valençay",47.163058,1.558696,-1,0,SIN:SA:OCE87576215,Europe/Paris,,STE, +STE:SP:OCECarTER-87576223,1,"Gare de Chabris",47.255124,1.646253,-1,0,SIN:SA:OCE87576223,Europe/Paris,,STE, +STE:SP:OCECarTER-87576231,1,"Gare de Varennes-sur-Fouzon",47.214383,1.614208,-1,0,SIN:SA:OCE87576231,Europe/Paris,,STE, +STE:SP:OCECarTER-87576272,1,"Gare de St-Florent-sur-Cher",46.992115,2.252149,-1,0,SIN:SA:OCE87576272,Europe/Paris,,STE, +STE:SP:OCECarTER-87576280,1,"Gare de Lunery",46.93513,2.275066,-1,0,SIN:SA:OCE87576280,Europe/Paris,,STE, +STE:SP:OCECarTER-87576298,1,"Gare de Châteauneuf-sur-Cher",46.856686,2.310212,-1,0,SIN:SA:OCE87576298,Europe/Paris,,STE, +STE:SP:OCECarTER-87576306,1,"Gare de Bigny",46.801897,2.368226,-1,0,SIN:SA:OCE87576306,Europe/Paris,,STE, +STE:SP:OCECarTER-87576322,1,"Gare de St-Amand-Montrond-Orval",46.726521,2.486062,-1,0,SIN:SA:OCE87576322,Europe/Paris,,STE, +STE:SP:OCECarTER-87576355,1,"La Gauterie",47.140132,1.491708,-1,0,SIN:SA:OCE87576355,Europe/Paris,,STE, +STE:SP:OCECarTER-87576363,1,"Luçay-le-Male",47.13328,1.43642,-1,0,SIN:SA:OCE87576363,Europe/Paris,,STE, +STE:SP:OCECarTER-87576405,1,"Gare de St-Germain-du-Puy",47.09629,2.484255,-1,0,SIN:SA:OCE87576405,Europe/Paris,,STE, +STE:SP:OCECarTER-87576439,1,"Gare de Avord",47.034779,2.652604,-1,0,SIN:SA:OCE87576439,Europe/Paris,,STE, +STE:SP:OCECarTER-87576447,1,"Gare de Bengy",47.000396,2.749106,-1,0,SIN:SA:OCE87576447,Europe/Paris,,STE, +STE:SP:OCECarTER-87576454,1,"Gare de Nérondes",46.999796,2.821991,-1,0,SIN:SA:OCE87576454,Europe/Paris,,STE, +STE:SP:OCECarTER-87576470,1,"Gare de La Guerche-sur-l'Aubois",46.94785,2.948455,-1,0,SIN:SA:OCE87576470,Europe/Paris,,STE, +STE:SP:OCECarTER-87576702,1,"Thénioux",47.255538,1.929939,-1,0,SIN:SA:OCE87576702,Europe/Paris,,STE, +STE:SP:OCECarTER-87576710,1,"Chatres (Loir-et-Cher)",47.264689,1.905911,-1,0,SIN:SA:OCE87576710,Europe/Paris,,STE, +STE:SP:OCECarTER-87576728,1,"Gare de Mennetou-sur-Cher",47.268848,1.876472,-1,0,SIN:SA:OCE87576728,Europe/Paris,,STE, +STE:SP:OCECarTER-87576736,1,"Langon (Loir-et-Cher)",47.283727,1.82521,-1,0,SIN:SA:OCE87576736,Europe/Paris,,STE, +STE:SP:OCECarTER-87576868,1,"Gare de Selles-sur-Cher",47.281595,1.546144,-1,0,SIN:SA:OCE87576868,Europe/Paris,,STE, +STE:SP:OCECarTER-87576876,1,"Gare de Gièvres",47.27873,1.667812,-1,0,SIN:SA:OCE87576876,Europe/Paris,,STE, +STE:SP:OCECarTER-87576884,1,"Gare de Villefranche-sur-Cher",47.29474,1.768037,-1,0,SIN:SA:OCE87576884,Europe/Paris,,STE, +STE:SP:OCECarTER-87580944,1,"Fougères-Carnot",27.140973,-3.404561,-1,0,SIN:SA:OCE87580944,Europe/Paris,,STE, +STE:SP:OCECarTER-87589580,1,"Ville-Gozet-Henri-Dunan",46.347913,2.593641,-1,0,SIN:SA:OCE87589580,Europe/Paris,,STE, +STE:SP:OCECarTER-87589804,1,"Reugny-Rue-Bascule",46.46278,2.615431,-1,0,SIN:SA:OCE87589804,Europe/Paris,,STE, +STE:SP:OCECarTER-87597039,1,"Gare de Reuilly (Indre)",47.086015,2.047182,-1,0,SIN:SA:OCE87597039,Europe/Paris,,STE, +STE:SP:OCECarTER-87597047,1,"Diou (Indre)",47.048116,2.023854,-1,0,SIN:SA:OCE87597047,Europe/Paris,,STE, +STE:SP:OCECarTER-87597054,1,"Gare de Ste-Lizaigne",47.00264,2.030076,-1,0,SIN:SA:OCE87597054,Europe/Paris,,STE, +STE:SP:OCECarTER-87597062,1,"Gare de Issoudun",46.947849,1.984921,-1,0,SIN:SA:OCE87597062,Europe/Paris,,STE, +STE:SP:OCECarTER-87597070,1,"Gare de Neuvy-Pailloux",46.882688,1.862808,-1,0,SIN:SA:OCE87597070,Europe/Paris,,STE, +STE:SP:OCECarTER-87597120,1,"Gare de Argenton-sur-Creuse",46.592225,1.51823,-1,0,SIN:SA:OCE87597120,Europe/Paris,,STE, +STE:SP:OCECarTER-87597153,1,"Gare de Eguzon",46.440492,1.552365,-1,0,SIN:SA:OCE87597153,Europe/Paris,,STE, +STE:SP:OCECarTER-87597369,1,"Villedieu-Chambon",46.842852,1.540373,-1,0,SIN:SA:OCE87597369,Europe/Paris,,STE, +STE:SP:OCECarTER-87597377,1,"Buzançais",46.884864,1.41841,-1,0,SIN:SA:OCE87597377,Europe/Paris,,STE, +STE:SP:OCECarTER-87597401,1,"Clion-sur-Indre",46.945201,1.238725,-1,0,SIN:SA:OCE87597401,Europe/Paris,,STE, +STE:SP:OCECarTER-87641001,1,"Gare de Montluçon-Ville",46.337875,2.596412,-1,0,SIN:SA:OCE87641001,Europe/Paris,,STE, +STE:SP:OCECarTER-87641357,1,"Gare de Vallon-en-Sully",46.536485,2.610803,-1,0,SIN:SA:OCE87641357,Europe/Paris,,STE, +STE:SP:OCECarTER-87641365,1,"Gare de Magnette",46.46415,2.603004,-1,0,SIN:SA:OCE87641365,Europe/Paris,,STE, +STE:SP:OCECarTER-87643726,1,"Bigny-Place-Bascoulard",46.801563,2.370531,-1,0,SIN:SA:OCE87643726,Europe/Paris,,STE, +STE:SP:OCECarTER-87643734,1,"Bourges-Place-Nation",47.084191,2.391279,-1,0,SIN:SA:OCE87643734,Europe/Paris,,STE, +STE:SP:OCECarTER-87643759,1,"Charost-Pont",46.992479,2.123563,-1,0,SIN:SA:OCE87643759,Europe/Paris,,STE, +STE:SP:OCECarTER-87643767,1,"Issoudun-CHU",46.957808,1.996957,-1,0,SIN:SA:OCE87643767,Europe/Paris,,STE, +STE:SP:OCECarTER-87643775,1,"Lamotte-Beuvron-College",27.140973,-3.404561,-1,0,SIN:SA:OCE87643775,Europe/Paris,,STE, +STE:SP:OCECarTER-87643783,1,"Montierchaume-Crevant",46.864465,1.79278,-1,0,SIN:SA:OCE87643783,Europe/Paris,,STE, +STE:SP:OCECarTER-87643791,1,"Montierchaume-Rosiers",46.844185,1.745454,-1,0,SIN:SA:OCE87643791,Europe/Paris,,STE, +STE:SP:OCECarTER-87643809,1,"Noyers-S-Cher-Pl-Guerri",47.276972,1.400676,-1,0,SIN:SA:OCE87643809,Europe/Paris,,STE, +STE:SP:OCECarTER-87643825,1,"St-Aignan-Lep",47.266216,1.371631,-1,0,SIN:SA:OCE87643825,Europe/Paris,,STE, +STE:SP:OCECarTER-87643833,1,"St-Aignan-Pl-Wilson",47.26839,1.372358,-1,0,SIN:SA:OCE87643825,Europe/Paris,,STE, +STE:SP:OCECarTER-87643841,1,"St-Aignan-Quai-Delorme",47.270158,1.376133,-1,0,SIN:SA:OCE87643825,Europe/Paris,,STE, +STE:SP:OCECarTER-87643866,1,"St-Marcel-Prieure",46.599788,1.522659,-1,0,SIN:SA:OCE87643866,Europe/Paris,,STE, +STE:SP:OCECarTER-87643882,1,"St-Satur-Fontenay",47.33879,2.83871,-1,0,SIN:SA:OCE87643825,Europe/Paris,,STE, +STE:SP:OCECarTER-87643890,1,"Bannay-Hautes-De-Bussy",47.385935,2.886173,-1,0,SIN:SA:OCE87643890,Europe/Paris,,STE, +STE:SP:OCECarTER-87643908,1,"Chouzy-Mairie",47.522001,1.245788,-1,0,SIN:SA:OCE87643908,Europe/Paris,,STE, +STE:SP:OCECarTER-87643916,1,"Gien-Place-Leclerc",47.684064,2.63194,-1,0,SIN:SA:OCE87643916,Europe/Paris,,STE, +STE:SP:OCECarTER-87643924,1,"Gien-Rte-De-Bourges",47.675394,2.63895,-1,0,SIN:SA:OCE87643924,Europe/Paris,,STE, +STE:SP:OCECarTER-87643932,1,"Sancerre-Porte-Cesar",47.333641,2.837524,-1,0,SIN:SA:OCE87643932,Europe/Paris,,STE, +STE:SP:OCECarTER-87643957,1,"Arrou-Place-De-L'eglise",48.098097,1.123007,-1,0,SIN:SA:OCE87643957,Europe/Paris,,STE, +STE:SP:OCECarTER-87643965,1,"Auneau-Piscine",48.46519,1.77752,-1,0,SIN:SA:OCE87643965,Europe/Paris,,STE, +STE:SP:OCECarTER-87643973,1,"Auneau-Texier-Gallas",48.459511,1.770619,-1,0,SIN:SA:OCE87643965,Europe/Paris,,STE, +STE:SP:OCECarTER-87643981,1,"Brou-Centre",48.211865,1.166217,-1,0,SIN:SA:OCE87643981,Europe/Paris,,STE, +STE:SP:OCECarTER-87643999,1,"Courtalain-Centre",48.079445,1.136053,-1,0,SIN:SA:OCE87643999,Europe/Paris,,STE, +STE:SP:OCECarTER-87644005,1,"Mondoubleau-Rue-Leroy",47.982031,0.90022,-1,0,SIN:SA:OCE87644005,Europe/Paris,,STE, +STE:SP:OCECarTER-87644013,1,"St-Pellerin-Mairie",48.070347,1.13991,-1,0,SIN:SA:OCE87643825,Europe/Paris,,STE, +STE:SP:OCECarTER-87644039,1,"Azay-Rivieres",47.209205,0.946165,-1,0,SIN:SA:OCE87644039,Europe/Paris,,STE, +STE:SP:OCECarTER-87644047,1,"Bridore-St-Martin",47.059634,1.083846,-1,0,SIN:SA:OCE87643825,Europe/Paris,,STE, +STE:SP:OCECarTER-87644062,1,"Buzancais-Sapin-Vert",46.888365,1.433284,-1,0,STE:SA:OCE87644062,Europe/Paris,,STE, +STE:SP:OCECarTER-87644070,1,"Chambray-Trousseau",27.140973,-3.404561,-1,0,SIN:SA:OCE87644070,Europe/Paris,,STE, +STE:SP:OCECarTER-87644088,1,"Chateau-Renault-ZI",47.602962,0.922307,-1,0,STE:SA:OCE87644088,Europe/Paris,,STE, +STE:SP:OCECarTER-87644096,1,"Chatillon-Mail",46.988385,1.1718,-1,0,SIN:SA:OCE87644096,Europe/Paris,,STE, +STE:SP:OCECarTER-87644104,1,"Courcay-Rouvre",47.237889,0.866435,-1,0,SIN:SA:OCE87644104,Europe/Paris,,STE, +STE:SP:OCECarTER-87644120,1,"Esvres-Champgault",47.287737,0.814738,-1,0,SIN:SA:OCE87644120,Europe/Paris,,STE, +STE:SP:OCECarTER-87644138,1,"Esvres-Chene-Pendu",47.324733,0.7663,-1,0,SIN:SA:OCE87644120,Europe/Paris,,STE, +STE:SP:OCECarTER-87644146,1,"Esvres-Les-Recais",47.294195,0.80572,-1,0,SIN:SA:OCE87644120,Europe/Paris,,STE, +STE:SP:OCECarTER-87644153,1,"Esvres-St-Malo",47.297804,0.801067,-1,0,SIN:SA:OCE87643825,Europe/Paris,,STE, +STE:SP:OCECarTER-87644161,1,"Esvres-Vauguinier",47.280696,0.802061,-1,0,SIN:SA:OCE87644120,Europe/Paris,,STE, +STE:SP:OCECarTER-87644179,1,"Loches-LEP",47.127677,0.981184,-1,0,SIN:SA:OCE87643825,Europe/Paris,,STE, +STE:SP:OCECarTER-87644187,1,"Loches-Lycee-St-Denis",47.126623,0.994143,-1,0,SIN:SA:OCE87643825,Europe/Paris,,STE, +STE:SP:OCECarTER-87644195,1,"Loches-St-Jacques",47.137549,0.999816,-1,0,SIN:SA:OCE87643825,Europe/Paris,,STE, +STE:SP:OCECarTER-87644203,1,"Loches-Agnès-Sorel",47.125329,0.993516,-1,0,SIN:SA:OCE87643825,Europe/Paris,,STE, +STE:SP:OCECarTER-87644211,1,"Niherne-Centre",46.829108,1.564395,-1,0,SIN:SA:OCE87402016,Europe/Paris,,STE, +STE:SP:OCECarTER-87644237,1,"Reignac-Jonquilles",47.225729,0.920721,-1,0,SIN:SA:OCE87644237,Europe/Paris,,STE, +STE:SP:OCECarTER-87644245,1,"St-Genou-Brisepaille",46.911978,1.331216,-1,0,SIN:SA:OCE87643825,Europe/Paris,,STE, +STE:SP:OCECarTER-87644252,1,"St-Genou-Ecole",46.927907,1.337918,-1,0,SIN:SA:OCE87643825,Europe/Paris,,STE, +STE:SP:OCECarTER-87644260,1,"St-Genou-ZI",46.905197,1.354355,-1,0,STE:SA:OCE87644260,Europe/Paris,,STE, +STE:SP:OCECarTER-87644286,1,"St-Jean-St-Germain-Hote",47.082647,1.035852,-1,0,SIN:SA:OCE87643825,Europe/Paris,,STE, +STE:SP:OCECarTER-87644310,1,"Truyes-Pl-Du-Souvenir",47.272757,0.850605,-1,0,SIN:SA:OCE87643726,Europe/Paris,,STE, +STE:SP:OCECarTER-87644328,1,"Truyes-St-Blaise",47.27496,0.835222,-1,0,SIN:SA:OCE87643825,Europe/Paris,,STE, +STE:SP:OCECarTER-87644344,1,"Villedieu-Eglise",46.847457,1.53881,-1,0,SIN:SA:OCE87644104,Europe/Paris,,STE, +STE:SP:OCECarTER-87644351,1,"Villedieu-Golf",46.846185,1.544769,-1,0,SIN:SA:OCE87644104,Europe/Paris,,STE, +STE:SP:OCECarTER-87644369,1,"Villedieu-Le-Pouillou",46.866997,1.488633,-1,0,SIN:SA:OCE87644104,Europe/Paris,,STE, +STE:SP:OCECarTER-87674275,1,"Le Loreur (Emb.d'Hud.)",48.86916,-1.43084,-1,0,SIN:SA:OCE87674275,Europe/Paris,,STE, +STE:SP:OCECarTER-87680504,1,"Les-Trilliers-PN-Car.",27.140973,-3.404561,-1,0,SIN:SA:OCE87644146,Europe/Paris,,STE, +STE:SP:OCECarTER-87684001,1,"Gare de Montargis",48.00718,2.742976,-1,0,TRN:SA:DUA8768400,Europe/Paris,,STE, +STE:SP:OCECarTER-87684274,1,"Gare de Nogent-sur-Vernisson",47.85285,2.737637,-1,0,SIN:SA:OCE87684274,Europe/Paris,,STE, +STE:SP:OCECarTER-87684290,1,"Gare de Gien",47.698883,2.636752,-1,0,SIN:SA:OCE87684290,Europe/Paris,,STE, +STE:SP:OCECarTER-87688929,1,"Auneau-Résistance",48.459512,1.772714,-1,0,SIN:SA:OCE87643965,Europe/Paris,,STE, +STE:SP:OCECarTER-87688945,1,"Verneuil-Laiterie",47.076475,1.058285,-1,0,SIN:SA:OCE87688945,Europe/Paris,,STE, +STE:SP:OCECarTER-87688952,1,"Chatillon-Hôtel",46.98337,1.175011,-1,0,SIN:SA:OCE87644096,Europe/Paris,,STE, +STE:SP:OCECarTER-87688960,1,"Courcay-Eglise",47.249675,0.876338,-1,0,SIN:SA:OCE87644104,Europe/Paris,,STE, +STE:SP:OCECarTER-87688978,1,"Chambray-Lycée-Agricole",47.338713,0.728922,-1,0,SIN:SA:OCE87644070,Europe/Paris,,STE, +STE:SP:OCECarTER-87689422,1,"Avail-Halte",46.968187,2.045175,-1,0,SIN:SA:OCE87689422,Europe/Paris,,STE, +STE:SP:OCECarTER-87689513,1,"Châteauroux-Médiathèque",46.808803,1.69086,-1,0,SIN:SA:OCE87689513,Europe/Paris,,STE, +STE:SP:OCECarTER-87689653,1,"Montierchaume-Couturier",46.864138,1.771875,-1,0,SIN:SA:OCE87689653,Europe/Paris,,STE, +STE:SP:OCECarTER-87689703,1,"Palluau-Onzay",46.930625,1.316578,-1,0,SIN:SA:OCE87689703,Europe/Paris,,STE, +STE:SP:OCECarTER-87689729,1,"Monnaie-Gendarmerie",47.505865,0.79707,-1,0,SIN:SA:OCE87689729,Europe/Paris,,STE, +STE:SP:OCECarTER-87689745,1,"Reignac-Bourg-Du-Fau",27.140973,-3.404561,-1,0,SIN:SA:OCE87644237,Europe/Paris,,STE, +STE:SP:OCECarTER-87689901,1,"Veigné-Bourg",27.140973,-3.404561,-1,0,SIN:SA:OCE87643726,Europe/Paris,,STE, +STE:SP:OCECarTER-87689919,1,"Veigné-la-Croix",27.140973,-3.404561,-1,0,SIN:SA:OCE87643726,Europe/Paris,,STE, +STE:SP:OCECarTER-87689935,1,"Issoudun-Jardin",46.949686,1.994683,-1,0,SIN:SA:OCE87689935,Europe/Paris,,STE, +STE:SP:OCECarTER-87689943,1,"Romorantin-Lycée-de-F",47.369365,1.739131,-1,0,SIN:SA:OCE87402016,Europe/Paris,,STE, +STE:SP:OCECarTER-87689950,1,"Châteauroux-Crx-Perrine",46.817162,1.683198,-1,0,SIN:SA:OCE87689513,Europe/Paris,,STE, +STE:SP:OCECarTER-87689976,1,"Châteauroux-Ly-B-Pascal",46.797894,1.711113,-1,0,SIN:SA:OCE87689513,Europe/Paris,,STE, +STE:SP:OCECarTER-87689984,1,"Châteauroux-L-Giraudoux",46.816376,1.696968,-1,0,SIN:SA:OCE87689513,Europe/Paris,,STE, +STE:SP:OCECarTER-87689992,1,"Châteauroux-Charmilles",46.801021,1.716868,-1,0,SIN:SA:OCE87689513,Europe/Paris,,STE, +STE:SP:OCECarTER-87690107,1,"Châteauroux-P-M-Curie",46.809804,1.70745,-1,0,SIN:SA:OCE87689513,Europe/Paris,,STE, +STE:SP:OCECarTER-87690156,1,"Châteauroux-Préfecture",46.810741,1.686827,-1,0,SIN:SA:OCE87689513,Europe/Paris,,STE, +STE:SP:OCECarTER-87690164,1,"Chinon-LEP-Cugnot",27.140973,-3.404561,-1,0,SIN:SA:OCE87643825,Europe/Paris,,STE, +STE:SP:OCECarTER-87690172,1,"Chinon-Lycée-Rabelais",47.162888,0.234053,-1,0,SIN:SA:OCE87643726,Europe/Paris,,STE, +STE:SP:OCECarTER-87690180,1,"Gien-Hôpital",47.690744,2.632817,-1,0,SIN:SA:OCE87437376,Europe/Paris,,STE, +STE:SP:OCECarTER-87690198,1,"Gien-Place-St-Louis",47.683781,2.633457,-1,0,SIN:SA:OCE87643726,Europe/Paris,,STE, +STE:SP:OCECarTER-87690230,1,"Chatres-Zelie-Fouquet",47.267014,1.888131,-1,0,SIN:SA:OCE87690230,Europe/Paris,,STE, +STE:SP:OCECarTER-87690248,1,"Châteaudun-LEP-Paulsen",48.062245,1.335606,-1,0,SIN:SA:OCE87643825,Europe/Paris,,STE, +STE:SP:OCECarTER-87690271,1,"Romorantin-Villefranche",47.347513,1.747502,-1,0,SIN:SA:OCE87402016,Europe/Paris,,STE, +STE:SP:OCECarTER-87690289,1,"Thenioux-Les-Forges",47.251722,1.953155,-1,0,SIN:SA:OCE87644146,Europe/Paris,,STE, +STE:SP:OCECarTER-87690297,1,"Vierzon-Hôpital",47.227614,2.052397,-1,0,SIN:SA:OCE87437376,Europe/Paris,,STE, +STE:SP:OCECarTER-87690305,1,"Villefranche-La-Croix-F",47.292072,1.777955,-1,0,SIN:SA:OCE87402016,Europe/Paris,,STE, +STE:SP:OCECarTER-87690313,1,"Villefranche-Aubrier",47.302358,1.767837,-1,0,SIN:SA:OCE87402016,Europe/Paris,,STE, +STE:SP:OCECarTER-87696005,1,"Gare de Nevers",46.987349,3.15087,-1,0,SIN:SA:OCE87696005,Europe/Paris,,STE, +STE:SP:OCECarTER-87696146,1,"Gare de Cosne-sur-Loire",47.414026,2.932089,-1,0,SIN:SA:OCE87696146,Europe/Paris,,STE, +STE:SP:OCECarTER-87779686,1,"Villedieu (Centre)",48.833888,-1.225846,-1,0,SIN:SA:OCE87447698,Europe/Paris,,STE, +STE:SP:OCECarTER-87930958,1,"Truyes-Chapelle",47.275277,0.830547,-1,0,SIN:SA:OCE87930958,Europe/Paris,,STE, +STE:SP:OCENavette-87571000,1,"Gare de Tours",47.389814,0.693505,-1,0,SIN:SA:OCE87571000,Europe/Paris,,STE, +STE:SP:OCENavette-87571240,1,"Gare de St-Pierre-des-Corps",47.385732,0.725054,-1,0,SIN:SA:OCE87571240,Europe/Paris,,STE, +STE:SP:OCETrainTER-87009696,1,"Gare de La Douzillère",47.338631,0.653003,-1,0,SIN:SA:OCE87009696,Europe/Paris,,STE, +STE:SP:OCETrainTER-87159947,1,"Gare de Ker Lann",48.043815,-1.738948,-1,0,STE:SA:OCE87159947,Europe/Paris,,STE, +STE:SP:OCETrainTER-87271007,1,"Gare de Paris-Nord",48.880138,2.354887,-1,0,STE:SA:OCE87271007,Europe/Paris,,STE, +STE:SP:OCETrainTER-87272096,1,"Gare de Esches",49.212605,2.170942,-1,0,STE:SA:OCE87272096,Europe/Paris,,STE, +STE:SP:OCETrainTER-87276469,1,"Gare de Persan-Beaumont",49.148149,2.279384,-1,0,STE:SA:OCE87276469,Europe/Paris,,STE, +STE:SP:OCETrainTER-87276717,1,"Gare de Bornel-Belle-Eglise",49.194644,2.20722,-1,0,STE:SA:OCE87276717,Europe/Paris,,STE, +STE:SP:OCETrainTER-87276725,1,"Gare de Chambly",49.163615,2.240497,-1,0,STE:SA:OCE87276725,Europe/Paris,,STE, +STE:SP:OCETrainTER-87286005,1,"Gare de Lille Flandres",50.636201,3.071023,-1,0,STE:SA:OCE87286005,Europe/Paris,,STE, +STE:SP:OCETrainTER-87313056,1,"Gare de Corbie",49.911589,2.499656,-1,0,STE:SA:OCE87313056,Europe/Paris,,STE, +STE:SP:OCETrainTER-87313072,1,"Gare de Albert",50.005397,2.644524,-1,0,STE:SA:OCE87313072,Europe/Paris,,STE, +STE:SP:OCETrainTER-87313080,1,"Gare de St-Roch (Somme)",49.893424,2.283719,-1,0,STE:SA:OCE87313080,Europe/Paris,,STE, +STE:SP:OCETrainTER-87313098,1,"Gare de Ailly-sur-Somme",49.928347,2.200556,-1,0,STE:SA:OCE87313098,Europe/Paris,,STE, +STE:SP:OCETrainTER-87313122,1,"Gare de Longpré-Corps-Saints",50.011331,2.002784,-1,0,STE:SA:OCE87313122,Europe/Paris,,STE, +STE:SP:OCETrainTER-87313379,1,"Gare de Namps-Quevauvillers",49.808311,2.105406,-1,0,STE:SA:OCE87313379,Europe/Paris,,STE, +STE:SP:OCETrainTER-87313395,1,"Gare de Poix-de-Picardie",49.777802,1.989828,-1,0,SIN:SA:OCE87313395,Europe/Paris,,STE, +STE:SP:OCETrainTER-87313510,1,"Gare de Beauvais-Gare-SNCF",49.42651,2.088638,-1,0,STE:SA:OCE87313510,Europe/Paris,,STE, +STE:SP:OCETrainTER-87313668,1,"Gare de Méru",49.232338,2.132546,-1,0,STE:SA:OCE87313668,Europe/Paris,,STE, +STE:SP:OCETrainTER-87313676,1,"Gare de Laboissière-le-Déluge",49.288532,2.13614,-1,0,STE:SA:OCE87313676,Europe/Paris,,STE, +STE:SP:OCETrainTER-87313684,1,"Gare de St-Sulpice-Auteuil",49.347422,2.116453,-1,0,STE:SA:OCE87313684,Europe/Paris,,STE, +STE:SP:OCETrainTER-87313692,1,"Gare de Herchies",49.487955,2.011126,-1,0,STE:SA:OCE87313692,Europe/Paris,,STE, +STE:SP:OCETrainTER-87313700,1,"Gare de Milly-sur-Thérain",49.503872,1.98864,-1,0,STE:SA:OCE87313700,Europe/Paris,,STE, +STE:SP:OCETrainTER-87313718,1,"Gare de St-Omer-en-Chaussée",49.531041,1.997645,-1,0,STE:SA:OCE87313718,Europe/Paris,,STE, +STE:SP:OCETrainTER-87313726,1,"Gare de Marseille-en-Beauvaisis",49.57107,1.954691,-1,0,STE:SA:OCE87313726,Europe/Paris,,STE, +STE:SP:OCETrainTER-87313734,1,"Gare de Grandvilliers",49.659393,1.938451,-1,0,STE:SA:OCE87313734,Europe/Paris,,STE, +STE:SP:OCETrainTER-87313742,1,"Gare de Feuquières-Broquiers",49.654339,1.830979,-1,0,STE:SA:OCE87313742,Europe/Paris,,STE, +STE:SP:OCETrainTER-87313759,1,"Gare de Abancourt",49.685665,1.77418,-1,0,SIN:SA:OCE87313759,Europe/Paris,,STE, +STE:SP:OCETrainTER-87313767,1,"Gare de Aumale",49.765126,1.756083,-1,0,STE:SA:OCE87313767,Europe/Paris,,STE, +STE:SP:OCETrainTER-87313809,1,"Gare de Blangy-sur-Bresle",49.932369,1.625632,-1,0,STE:SA:OCE87313809,Europe/Paris,,STE, +STE:SP:OCETrainTER-87313817,1,"Gare de Longroy-Gamaches",49.981947,1.552815,-1,0,STE:SA:OCE87313817,Europe/Paris,,STE, +STE:SP:OCETrainTER-87313833,1,"Gare de Formerie",49.654153,1.722819,-1,0,STE:SA:OCE87313833,Europe/Paris,,STE, +STE:SP:OCETrainTER-87313841,1,"Gare de Fouilloy",49.736236,1.825538,-1,0,STE:SA:OCE87313841,Europe/Paris,,STE, +STE:SP:OCETrainTER-87313874,1,"Gare de Amiens",49.890532,2.308098,-1,0,SIN:SA:OCE87313874,Europe/Paris,,STE, +STE:SP:OCETrainTER-87316745,1,"Gare de Acheux-Franleu",50.082617,1.657279,-1,0,STE:SA:OCE87316745,Europe/Paris,,STE, +STE:SP:OCETrainTER-87316752,1,"Gare de Feuquerolles",50.064885,1.605555,-1,0,STE:SA:OCE87316752,Europe/Paris,,STE, +STE:SP:OCETrainTER-87317362,1,"Gare de Abbeville",50.102194,1.824485,-1,0,SIN:SA:OCE87317362,Europe/Paris,,STE, +STE:SP:OCETrainTER-87317487,1,"Gare de Quesnoy-le-Montant",50.108964,1.702482,-1,0,STE:SA:OCE87317487,Europe/Paris,,STE, +STE:SP:OCETrainTER-87317495,1,"Gare de Chépy-Valines",50.06814,1.635563,-1,0,SIN:SA:OCE87317495,Europe/Paris,,STE, +STE:SP:OCETrainTER-87317503,1,"Gare de Feuquières-en-Vimeu-Fre",50.063305,1.589164,-1,0,SIN:SA:OCE87317503,Europe/Paris,,STE, +STE:SP:OCETrainTER-87317511,1,"Gare de Woincourt",50.058666,1.537138,-1,0,SIN:SA:OCE87317511,Europe/Paris,,STE, +STE:SP:OCETrainTER-87317529,1,"Gare de Le Tréport-Mers-Les-B",50.06272,1.376115,-1,0,SIN:SA:OCE87317529,Europe/Paris,,STE, +STE:SP:OCETrainTER-87317537,1,"Gare de Eu",50.05429,1.416892,-1,0,SIN:SA:OCE87317537,Europe/Paris,,STE, +STE:SP:OCETrainTER-87321745,1,"Gare de Penhoet",47.289885,-2.200876,-1,0,SIN:SA:OCE87321745,Europe/Paris,,STE, +STE:SP:OCETrainTER-87322347,1,"Gare de Traou Nez",48.748509,-3.135312,-1,0,STE:SA:OCE87322347,Europe/Paris,,STE, +STE:SP:OCETrainTER-87323675,1,"Gare de Montluçon-Rimard",46.335626,2.611261,-1,0,STE:SA:OCE87323675,Europe/Paris,,STE, +STE:SP:OCETrainTER-87324095,1,"Gare de Futuroscope",46.66985,0.377202,-1,0,SIN:SA:OCE87324095,Europe/Paris,,STE, +STE:SP:OCETrainTER-87328195,1,"Gare de Thesee",47.322432,1.312006,-1,0,SIN:SA:OCE87328195,Europe/Paris,,STE, +STE:SP:OCETrainTER-87334490,1,"Gare de Cesson-Sévigné",48.112364,-1.602511,-1,0,STE:SA:OCE87334490,Europe/Paris,,STE, +STE:SP:OCETrainTER-87334508,1,"Gare de La Poterie",48.092062,-1.630786,-1,0,SIN:SA:OCE87334508,Europe/Paris,,STE, +STE:SP:OCETrainTER-87337378,1,"Gare de Dives-sur-Mer-Port-Guil",49.289192,-0.104079,-1,0,STE:SA:OCE87337378,Europe/Paris,,STE, +STE:SP:OCETrainTER-87342014,1,"Gare de Arras",50.286816,2.781126,-1,0,STE:SA:OCE87342014,Europe/Paris,,STE, +STE:SP:OCETrainTER-87342030,1,"Gare de Miraumont",50.094941,2.734372,-1,0,STE:SA:OCE87342030,Europe/Paris,,STE, +STE:SP:OCETrainTER-87342048,1,"Gare de Achiet",50.131685,2.78014,-1,0,STE:SA:OCE87342048,Europe/Paris,,STE, +STE:SP:OCETrainTER-87345009,1,"Gare de Douai",50.371675,3.089961,-1,0,STE:SA:OCE87345009,Europe/Paris,,STE, +STE:SP:OCETrainTER-87381244,1,"Gare de Gisors",49.28512,1.7845,-1,0,TRN:SA:DUA8738124,Europe/Paris,,STE, +STE:SP:OCETrainTER-87381269,1,"Gare de Sérifontaine",49.357202,1.764112,-1,0,STE:SA:OCE87381269,Europe/Paris,,STE, +STE:SP:OCETrainTER-87381293,1,"Gare de Gournay-Ferrières",49.481555,1.738111,-1,0,STE:SA:OCE87381293,Europe/Paris,,STE, +STE:SP:OCETrainTER-87381509,1,"Gare de Mantes-la-Jolie",48.989687,1.703294,-1,0,SIN:SA:OCE87381509,Europe/Paris,,STE, +STE:SP:OCETrainTER-87381624,1,"Gare de Bréval",48.943126,1.54133,-1,0,SIN:SA:OCE87381624,Europe/Paris,,STE, +STE:SP:OCETrainTER-87384008,1,"Gare de Paris-St-Lazare",48.877865,2.324433,-1,0,SIN:SA:OCE87384008,Europe/Paris,,STE, +STE:SP:OCETrainTER-87387001,1,"Gare de Evreux - Normandie",49.018559,1.149888,-1,0,SIN:SA:OCE87387001,Europe/Paris,,STE, +STE:SP:OCETrainTER-87387092,1,"Gare de Bueil",48.92509,1.443776,-1,0,SIN:SA:OCE87387092,Europe/Paris,,STE, +STE:SP:OCETrainTER-87387142,1,"Gare de La Bonneville-sur-Iton",48.988539,1.035821,-1,0,STE:SA:OCE87387142,Europe/Paris,,STE, +STE:SP:OCETrainTER-87387159,1,"Gare de Conches",48.962341,0.938965,-1,0,SIN:SA:OCE87387159,Europe/Paris,,STE, +STE:SP:OCETrainTER-87387175,1,"Gare de Romilly-la-Puthenaye",49.004845,0.85265,-1,0,STE:SA:OCE87387175,Europe/Paris,,STE, +STE:SP:OCETrainTER-87387183,1,"Gare de Beaumont-le-Roger",49.074181,0.772625,-1,0,SIN:SA:OCE87387183,Europe/Paris,,STE, +STE:SP:OCETrainTER-87391003,1,"Gare de Paris-Montparnasse 1-2",48.84063,2.319894,-1,0,STE:SA:OCE87391003,Europe/Paris,,STE, +STE:SP:OCETrainTER-87391102,1,"Gare de Paris-Montp.3-Vaug.",48.838706,2.316627,-1,0,SIN:SA:OCE87391102,Europe/Paris,,STE, +STE:SP:OCETrainTER-87393009,1,"Gare de Versailles-Chantiers",48.795566,2.135465,-1,0,SIN:SA:OCE87393009,Europe/Paris,,STE, +STE:SP:OCETrainTER-87393314,1,"Gare de Rambouillet",48.643788,1.831202,-1,0,STE:SA:OCE87393314,Europe/Paris,,STE, +STE:SP:OCETrainTER-87393348,1,"Gare de Gazeran",48.625959,1.772769,-1,0,SIN:SA:OCE87393348,Europe/Paris,,STE, +STE:SP:OCETrainTER-87393488,1,"Gare de Dreux",48.731483,1.370166,-1,0,SIN:SA:OCE87393488,Europe/Paris,,STE, +STE:SP:OCETrainTER-87393553,1,"Gare de Nonancourt",48.775751,1.192799,-1,0,SIN:SA:OCE87393553,Europe/Paris,,STE, +STE:SP:OCETrainTER-87393595,1,"Gare de Verneuil-sur-Avre",48.742735,0.929201,-1,0,SIN:SA:OCE87393595,Europe/Paris,,STE, +STE:SP:OCETrainTER-87394007,1,"Gare de Chartres",48.448203,1.481226,-1,0,STE:SA:OCE87394007,Europe/Paris,,STE, +STE:SP:OCETrainTER-87394015,1,"Gare de Lucé",48.436127,1.452995,-1,0,STE:SA:OCE87394015,Europe/Paris,,STE, +STE:SP:OCETrainTER-87394114,1,"Gare de Epernon",48.605155,1.681418,-1,0,STE:SA:OCE87394114,Europe/Paris,,STE, +STE:SP:OCETrainTER-87394130,1,"Gare de Maintenon",48.585364,1.592455,-1,0,STE:SA:OCE87394130,Europe/Paris,,STE, +STE:SP:OCETrainTER-87394148,1,"Gare de St-Piat",48.542441,1.590103,-1,0,STE:SA:OCE87394148,Europe/Paris,,STE, +STE:SP:OCETrainTER-87394155,1,"Gare de Jouy",48.51019,1.557496,-1,0,STE:SA:OCE87394155,Europe/Paris,,STE, +STE:SP:OCETrainTER-87394171,1,"Gare de La Villette-St-Prest",48.482743,1.52292,-1,0,STE:SA:OCE87394171,Europe/Paris,,STE, +STE:SP:OCETrainTER-87394205,1,"Gare de Amilly-Ouerray",48.43845,1.389557,-1,0,STE:SA:OCE87394205,Europe/Paris,,STE, +STE:SP:OCETrainTER-87394213,1,"Gare de St-Aubin-St-Luperce",48.447456,1.3337,-1,0,STE:SA:OCE87394213,Europe/Paris,,STE, +STE:SP:OCETrainTER-87394221,1,"Gare de Courville-sur-Eure",48.451359,1.234934,-1,0,STE:SA:OCE87394221,Europe/Paris,,STE, +STE:SP:OCETrainTER-87394247,1,"Gare de Pontgouin",48.477854,1.141446,-1,0,STE:SA:OCE87394247,Europe/Paris,,STE, +STE:SP:OCETrainTER-87394254,1,"Gare de La Loupe",48.473845,1.010874,-1,0,STE:SA:OCE87394254,Europe/Paris,,STE, +STE:SP:OCETrainTER-87394270,1,"Gare de Bretoncelles",48.43273,0.892351,-1,0,STE:SA:OCE87394270,Europe/Paris,,STE, +STE:SP:OCETrainTER-87394288,1,"Gare de Condé-sur-Huisne",48.383272,0.848763,-1,0,STE:SA:OCE87394288,Europe/Paris,,STE, +STE:SP:OCETrainTER-87394296,1,"Gare de Nogent-le-Rotrou",48.325496,0.810058,-1,0,SIN:SA:OCE87394296,Europe/Paris,,STE, +STE:SP:OCETrainTER-87394403,1,"Gare de La Taye",48.407398,1.373239,-1,0,SIN:SA:OCE87394403,Europe/Paris,,STE, +STE:SP:OCETrainTER-87394411,1,"Gare de Bailleau-le-Pin",48.36683,1.325031,-1,0,SIN:SA:OCE87394411,Europe/Paris,,STE, +STE:SP:OCETrainTER-87394429,1,"Gare de Magny-Blandainville",48.334157,1.281173,-1,0,STE:SA:OCE87394429,Europe/Paris,,STE, +STE:SP:OCETrainTER-87394437,1,"Gare de Illiers-Combray",48.304019,1.244945,-1,0,SIN:SA:OCE87394437,Europe/Paris,,STE, +STE:SP:OCETrainTER-87394452,1,"Gare de Brou",48.215657,1.160602,-1,0,SIN:SA:OCE87394452,Europe/Paris,,STE, +STE:SP:OCETrainTER-87394486,1,"Gare de Arrou",48.099887,1.128189,-1,0,SIN:SA:OCE87394486,Europe/Paris,,STE, +STE:SP:OCETrainTER-87394494,1,"Gare de Courtalain-St-Pellerin",48.073829,1.126935,-1,0,SIN:SA:OCE87394494,Europe/Paris,,STE, +STE:SP:OCETrainTER-87396002,1,"Gare de Le Mans",47.995584,0.192143,-1,0,SIN:SA:OCE87396002,Europe/Paris,,STE, +STE:SP:OCETrainTER-87396028,1,"Gare de Neuville-sur-Sarthe",48.070597,0.199839,-1,0,STE:SA:OCE87396028,Europe/Paris,,STE, +STE:SP:OCETrainTER-87396036,1,"Gare de La Guierche",48.114021,0.193131,-1,0,SIN:SA:OCE87396036,Europe/Paris,,STE, +STE:SP:OCETrainTER-87396044,1,"Gare de Montbizot",48.151328,0.19083,-1,0,SIN:SA:OCE87396044,Europe/Paris,,STE, +STE:SP:OCETrainTER-87396051,1,"Gare de Teillé (Sarthe)",48.181339,0.191501,-1,0,STE:SA:OCE87396051,Europe/Paris,,STE, +STE:SP:OCETrainTER-87396077,1,"Gare de Vivoin-Beaumont",48.230137,0.144676,-1,0,STE:SA:OCE87396077,Europe/Paris,,STE, +STE:SP:OCETrainTER-87396093,1,"Gare de La Hutte-Coulombiers",48.303346,0.105456,-1,0,SIN:SA:OCE87396093,Europe/Paris,,STE, +STE:SP:OCETrainTER-87396200,1,"Gare de Domfront (Sarthe)",48.107786,0.026255,-1,0,SIN:SA:OCE87396200,Europe/Paris,,STE, +STE:SP:OCETrainTER-87396218,1,"Gare de Conlie",48.127106,-0.011062,-1,0,SIN:SA:OCE87396218,Europe/Paris,,STE, +STE:SP:OCETrainTER-87396226,1,"Gare de Crissé",48.16796,-0.065616,-1,0,STE:SA:OCE87396226,Europe/Paris,,STE, +STE:SP:OCETrainTER-87396234,1,"Gare de Sillé-le-Guillaume",48.181744,-0.128864,-1,0,SIN:SA:OCE87396234,Europe/Paris,,STE, +STE:SP:OCETrainTER-87396259,1,"Gare de Rouessé-Vassé",48.1601,-0.199774,-1,0,STE:SA:OCE87396259,Europe/Paris,,STE, +STE:SP:OCETrainTER-87396275,1,"Gare de Champagné",48.019751,0.335704,-1,0,STE:SA:OCE87396275,Europe/Paris,,STE, +STE:SP:OCETrainTER-87396283,1,"Gare de St-Mars-la-Brière",48.02852,0.365826,-1,0,STE:SA:OCE87396283,Europe/Paris,,STE, +STE:SP:OCETrainTER-87396291,1,"Gare de Montfort-le-Gesnois",48.040636,0.406323,-1,0,STE:SA:OCE87396291,Europe/Paris,,STE, +STE:SP:OCETrainTER-87396309,1,"Gare de Connerré-Beillé",48.073752,0.48694,-1,0,SIN:SA:OCE87396309,Europe/Paris,,STE, +STE:SP:OCETrainTER-87396317,1,"Gare de Sceaux-Boessé",48.122234,0.572271,-1,0,STE:SA:OCE87396317,Europe/Paris,,STE, +STE:SP:OCETrainTER-87396325,1,"Gare de La Ferté-Bernard",48.186487,0.639325,-1,0,SIN:SA:OCE87396325,Europe/Paris,,STE, +STE:SP:OCETrainTER-87396333,1,"Gare de Le Theil-la-Rouge",48.267129,0.694274,-1,0,STE:SA:OCE87396333,Europe/Paris,,STE, +STE:SP:OCETrainTER-87396358,1,"Gare de Voivres",47.930502,0.085258,-1,0,STE:SA:OCE87396358,Europe/Paris,,STE, +STE:SP:OCETrainTER-87396366,1,"Gare de La Suze",47.892244,0.026558,-1,0,STE:SA:OCE87396366,Europe/Paris,,STE, +STE:SP:OCETrainTER-87396374,1,"Gare de Noyen",47.874428,-0.098398,-1,0,STE:SA:OCE87396374,Europe/Paris,,STE, +STE:SP:OCETrainTER-87396408,1,"Gare de Sablé-sur-Sarthe",47.841718,-0.342048,-1,0,STE:SA:OCE87396408,Europe/Paris,,STE, +STE:SP:OCETrainTER-87396549,1,"Gare de Arnage",47.928565,0.189859,-1,0,STE:SA:OCE87396549,Europe/Paris,,STE, +STE:SP:OCETrainTER-87396556,1,"Gare de Laigné-St-Gervais",47.874014,0.217134,-1,0,STE:SA:OCE87396556,Europe/Paris,,STE, +STE:SP:OCETrainTER-87396564,1,"Gare de Ecommoy",47.824528,0.269013,-1,0,SIN:SA:OCE87396564,Europe/Paris,,STE, +STE:SP:OCETrainTER-87396572,1,"Gare de Aubigné-Racan",47.687026,0.265805,-1,0,STE:SA:OCE87396572,Europe/Paris,,STE, +STE:SP:OCETrainTER-87396580,1,"Gare de Mayet",47.760122,0.266056,-1,0,STE:SA:OCE87396580,Europe/Paris,,STE, +STE:SP:OCETrainTER-87396598,1,"Gare de Vaas",47.670705,0.316446,-1,0,STE:SA:OCE87396598,Europe/Paris,,STE, +STE:SP:OCETrainTER-87396606,1,"Gare de Château-du-Loir",47.683279,0.414985,-1,0,SIN:SA:OCE87396606,Europe/Paris,,STE, +STE:SP:OCETrainTER-87411017,1,"Gare de Rouen-Rive-Droite",49.44903,1.094154,-1,0,SIN:SA:OCE87411017,Europe/Paris,,STE, +STE:SP:OCETrainTER-87411173,1,"Gare de Elbeuf-St-Aubin",49.302676,1.010197,-1,0,STE:SA:OCE87411173,Europe/Paris,,STE, +STE:SP:OCETrainTER-87411181,1,"Gare de Tourville",49.324554,1.098568,-1,0,STE:SA:OCE87411181,Europe/Paris,,STE, +STE:SP:OCETrainTER-87411207,1,"Gare de Oissel",49.343042,1.101821,-1,0,SIN:SA:OCE87411207,Europe/Paris,,STE, +STE:SP:OCETrainTER-87411215,1,"Gare de St-Etienne-du-Rouvray",49.377126,1.109422,-1,0,STE:SA:OCE87411215,Europe/Paris,,STE, +STE:SP:OCETrainTER-87411223,1,"Gare de Sotteville",49.412883,1.102356,-1,0,STE:SA:OCE87411223,Europe/Paris,,STE, +STE:SP:OCETrainTER-87411249,1,"Gare de Maromme",49.479854,1.050595,-1,0,STE:SA:OCE87411249,Europe/Paris,,STE, +STE:SP:OCETrainTER-87411256,1,"Gare de Malaunay-le-Houlme",49.513297,1.03949,-1,0,STE:SA:OCE87411256,Europe/Paris,,STE, +STE:SP:OCETrainTER-87411264,1,"Gare de Barentin",49.550124,0.953326,-1,0,STE:SA:OCE87411264,Europe/Paris,,STE, +STE:SP:OCETrainTER-87411272,1,"Gare de Pavilly",49.564528,0.950574,-1,0,STE:SA:OCE87411272,Europe/Paris,,STE, +STE:SP:OCETrainTER-87411280,1,"Gare de Motteville",49.636885,0.850149,-1,0,STE:SA:OCE87411280,Europe/Paris,,STE, +STE:SP:OCETrainTER-87411413,1,"Gare de St-Martin-du-Vivier",49.470847,1.161736,-1,0,STE:SA:OCE87411413,Europe/Paris,,STE, +STE:SP:OCETrainTER-87411439,1,"Gare de Morgny",49.523226,1.247811,-1,0,STE:SA:OCE87411439,Europe/Paris,,STE, +STE:SP:OCETrainTER-87411447,1,"Gare de Longuerue-Vieux-Manoir",49.556827,1.276671,-1,0,STE:SA:OCE87411447,Europe/Paris,,STE, +STE:SP:OCETrainTER-87411454,1,"Gare de Montérolier-Buchy",49.603131,1.334709,-1,0,SIN:SA:OCE87411454,Europe/Paris,,STE, +STE:SP:OCETrainTER-87411462,1,"Gare de Sommery",49.629443,1.43567,-1,0,STE:SA:OCE87411462,Europe/Paris,,STE, +STE:SP:OCETrainTER-87411470,1,"Gare de Serqueux",49.631545,1.53934,-1,0,SIN:SA:OCE87411470,Europe/Paris,,STE, +STE:SP:OCETrainTER-87411801,1,"Gare de Montville",49.551033,1.069749,-1,0,STE:SA:OCE87411801,Europe/Paris,,STE, +STE:SP:OCETrainTER-87411819,1,"Gare de Clères",49.59908,1.106174,-1,0,STE:SA:OCE87411819,Europe/Paris,,STE, +STE:SP:OCETrainTER-87413013,1,"Gare de Le Havre",49.492653,0.124835,-1,0,SIN:SA:OCE87413013,Europe/Paris,,STE, +STE:SP:OCETrainTER-87413203,1,"Gare de Le Havre-Graville",49.499874,0.160697,-1,0,STE:SA:OCE87413203,Europe/Paris,,STE, +STE:SP:OCETrainTER-87413302,1,"Gare de Harfleur",49.513582,0.199141,-1,0,STE:SA:OCE87413302,Europe/Paris,,STE, +STE:SP:OCETrainTER-87413310,1,"Gare de St-Laurent-Gainneville",49.528036,0.25135,-1,0,STE:SA:OCE87413310,Europe/Paris,,STE, +STE:SP:OCETrainTER-87413328,1,"Gare de Etainhus-St-Romain",49.560798,0.330553,-1,0,STE:SA:OCE87413328,Europe/Paris,,STE, +STE:SP:OCETrainTER-87413336,1,"Gare de Virville-Manneville",49.583552,0.354297,-1,0,STE:SA:OCE87413336,Europe/Paris,,STE, +STE:SP:OCETrainTER-87413344,1,"Gare de Bréauté-Beuzeville",49.603595,0.417162,-1,0,SIN:SA:OCE87413344,Europe/Paris,,STE, +STE:SP:OCETrainTER-87413351,1,"Gare de Bolbec-Nointot",49.591697,0.484912,-1,0,STE:SA:OCE87413351,Europe/Paris,,STE, +STE:SP:OCETrainTER-87413377,1,"Gare de Foucart-Alvimare",49.608319,0.59692,-1,0,STE:SA:OCE87413377,Europe/Paris,,STE, +STE:SP:OCETrainTER-87413385,1,"Gare de Yvetot",49.622113,0.750072,-1,0,SIN:SA:OCE87413385,Europe/Paris,,STE, +STE:SP:OCETrainTER-87413542,1,"Gare de Fécamp",49.75946,0.373888,-1,0,SIN:SA:OCE87413542,Europe/Paris,,STE, +STE:SP:OCETrainTER-87413708,1,"Gare de Harfleur (Halte)",49.506683,0.192171,-1,0,STE:SA:OCE87413708,Europe/Paris,,STE, +STE:SP:OCETrainTER-87413716,1,"Gare de J.Monod-la-Demi-Lieue",49.526962,0.186048,-1,0,STE:SA:OCE87413716,Europe/Paris,,STE, +STE:SP:OCETrainTER-87413724,1,"Gare de Montivilliers",49.54307,0.189471,-1,0,STE:SA:OCE87413724,Europe/Paris,,STE, +STE:SP:OCETrainTER-87413732,1,"Gare de Epouville",49.563757,0.223771,-1,0,STE:SA:OCE87413732,Europe/Paris,,STE, +STE:SP:OCETrainTER-87413740,1,"Gare de Rolleville",49.581857,0.215865,-1,0,STE:SA:OCE87413740,Europe/Paris,,STE, +STE:SP:OCETrainTER-87415018,1,"Gare de Dieppe",49.921243,1.081128,-1,0,STE:SA:OCE87415018,Europe/Paris,,STE, +STE:SP:OCETrainTER-87415125,1,"Gare de St-Aubin-sur-Scie",49.871589,1.066614,-1,0,STE:SA:OCE87415125,Europe/Paris,,STE, +STE:SP:OCETrainTER-87415141,1,"Gare de Longueville-sur-Scie",49.791596,1.110547,-1,0,STE:SA:OCE87415141,Europe/Paris,,STE, +STE:SP:OCETrainTER-87415158,1,"Gare de Auffay",49.716088,1.098417,-1,0,STE:SA:OCE87415158,Europe/Paris,,STE, +STE:SP:OCETrainTER-87415166,1,"Gare de St-Victor",49.677006,1.109511,-1,0,STE:SA:OCE87415166,Europe/Paris,,STE, +STE:SP:OCETrainTER-87415323,1,"Gare de Bourgthéroulde-T.h.",49.317501,0.839658,-1,0,STE:SA:OCE87415323,Europe/Paris,,STE, +STE:SP:OCETrainTER-87415349,1,"Gare de Glos-Montfort",49.273611,0.681863,-1,0,STE:SA:OCE87415349,Europe/Paris,,STE, +STE:SP:OCETrainTER-87415364,1,"Gare de Brionne (Eure)",49.196339,0.711567,-1,0,STE:SA:OCE87415364,Europe/Paris,,STE, +STE:SP:OCETrainTER-87415604,1,"Gare de Vernon-Giverny",49.091286,1.478363,-1,0,STE:SA:OCE87415604,Europe/Paris,,STE, +STE:SP:OCETrainTER-87415620,1,"Gare de Gaillon-Aubevoye",49.174632,1.352518,-1,0,SIN:SA:OCE87415620,Europe/Paris,,STE, +STE:SP:OCETrainTER-87415646,1,"Gare de St-Pierre-du-Vauvray",49.233861,1.224656,-1,0,STE:SA:OCE87415646,Europe/Paris,,STE, +STE:SP:OCETrainTER-87415661,1,"Gare de Pont-de-l'Arche",49.317063,1.159675,-1,0,STE:SA:OCE87415661,Europe/Paris,,STE, +STE:SP:OCETrainTER-87415877,1,"Gare de Val-de-Reuil",49.275399,1.224609,-1,0,SIN:SA:OCE87415877,Europe/Paris,,STE, +STE:SP:OCETrainTER-87415885,1,"Gare de Rosny-sur-Seine",48.99717,1.630626,-1,0,TRN:SA:DUA8741588,Europe/Paris,,STE, +STE:SP:OCETrainTER-87415893,1,"Gare de Bonnières",49.038603,1.581508,-1,0,SIN:SA:OCE87415893,Europe/Paris,,STE, +STE:SP:OCETrainTER-87444000,1,"Gare de Caen",49.176544,-0.34827,-1,0,SIN:SA:OCE87444000,Europe/Paris,,STE, +STE:SP:OCETrainTER-87444042,1,"Gare de Bretteville-Norrey",49.20315,-0.512036,-1,0,STE:SA:OCE87444042,Europe/Paris,,STE, +STE:SP:OCETrainTER-87444059,1,"Gare de Audrieu",49.216093,-0.596472,-1,0,STE:SA:OCE87444059,Europe/Paris,,STE, +STE:SP:OCETrainTER-87444067,1,"Gare de Bayeux",49.269444,-0.697712,-1,0,SIN:SA:OCE87444067,Europe/Paris,,STE, +STE:SP:OCETrainTER-87444083,1,"Gare de Le Molay-Littry",49.24892,-0.883239,-1,0,STE:SA:OCE87444083,Europe/Paris,,STE, +STE:SP:OCETrainTER-87444182,1,"Gare de Frénouville-Cagny",49.140423,-0.258443,-1,0,STE:SA:OCE87444182,Europe/Paris,,STE, +STE:SP:OCETrainTER-87444190,1,"Gare de Moult-Argences",49.110975,-0.186407,-1,0,STE:SA:OCE87444190,Europe/Paris,,STE, +STE:SP:OCETrainTER-87444208,1,"Gare de Mézidon-Canon",49.070867,-0.074966,-1,0,SIN:SA:OCE87444208,Europe/Paris,,STE, +STE:SP:OCETrainTER-87444216,1,"Gare de St-Pierre-sur-Dives",49.02264,-0.041506,-1,0,STE:SA:OCE87444216,Europe/Paris,,STE, +STE:SP:OCETrainTER-87444232,1,"Gare de Couliboeuf",48.923581,-0.09849,-1,0,STE:SA:OCE87444232,Europe/Paris,,STE, +STE:SP:OCETrainTER-87444265,1,"Gare de Lisieux",49.137252,0.231682,-1,0,SIN:SA:OCE87444265,Europe/Paris,,STE, +STE:SP:OCETrainTER-87444299,1,"Gare de Bernay",49.086989,0.595728,-1,0,SIN:SA:OCE87444299,Europe/Paris,,STE, +STE:SP:OCETrainTER-87444315,1,"Gare de Serquigny",49.107673,0.719577,-1,0,SIN:SA:OCE87444315,Europe/Paris,,STE, +STE:SP:OCETrainTER-87444323,1,"Gare de Le Grand-Jardin",49.150305,0.227203,-1,0,STE:SA:OCE87444323,Europe/Paris,,STE, +STE:SP:OCETrainTER-87444349,1,"Gare de Pont-l'Evêque",49.287024,0.191969,-1,0,SIN:SA:OCE87444349,Europe/Paris,,STE, +STE:SP:OCETrainTER-87444372,1,"Gare de Trouville-Deauville",49.3585,0.084843,-1,0,SIN:SA:OCE87444372,Europe/Paris,,STE, +STE:SP:OCETrainTER-87444380,1,"Gare de Blonville-Bénerville",49.33123,0.03535,-1,0,STE:SA:OCE87444380,Europe/Paris,,STE, +STE:SP:OCETrainTER-87444398,1,"Gare de Villers-sur-Mer",49.315964,0.009913,-1,0,STE:SA:OCE87444398,Europe/Paris,,STE, +STE:SP:OCETrainTER-87444406,1,"Gare de Houlgate",49.299998,-0.077709,-1,0,STE:SA:OCE87444406,Europe/Paris,,STE, +STE:SP:OCETrainTER-87444414,1,"Gare de Dives-Cabourg",49.28236,-0.109868,-1,0,STE:SA:OCE87444414,Europe/Paris,,STE, +STE:SP:OCETrainTER-87444539,1,"Gare de Argentan",48.738459,-0.025724,-1,0,SIN:SA:OCE87444539,Europe/Paris,,STE, +STE:SP:OCETrainTER-87444562,1,"Gare de Surdon",48.664901,0.13413,-1,0,SIN:SA:OCE87444562,Europe/Paris,,STE, +STE:SP:OCETrainTER-87444588,1,"Gare de Le Merlerault",48.702415,0.283494,-1,0,SIN:SA:OCE87444588,Europe/Paris,,STE, +STE:SP:OCETrainTER-87444604,1,"Gare de Ste-Gauburge",48.717263,0.428108,-1,0,SIN:SA:OCE87444604,Europe/Paris,,STE, +STE:SP:OCETrainTER-87444638,1,"Gare de L'Aigle",48.766684,0.620733,-1,0,SIN:SA:OCE87444638,Europe/Paris,,STE, +STE:SP:OCETrainTER-87444695,1,"Gare de Sées",48.600161,0.166112,-1,0,SIN:SA:OCE87444695,Europe/Paris,,STE, +STE:SP:OCETrainTER-87444711,1,"Gare de Alençon",48.433803,0.09905,-1,0,SIN:SA:OCE87444711,Europe/Paris,,STE, +STE:SP:OCETrainTER-87444877,1,"Gare de Cherbourg",49.633499,-1.621473,-1,0,SIN:SA:OCE87444877,Europe/Paris,,STE, +STE:SP:OCETrainTER-87447003,1,"Gare de St-Lô",49.115895,-1.101089,-1,0,SIN:SA:OCE87447003,Europe/Paris,,STE, +STE:SP:OCETrainTER-87447110,1,"Gare de Coutances",49.042797,-1.441267,-1,0,SIN:SA:OCE87447110,Europe/Paris,,STE, +STE:SP:OCETrainTER-87447144,1,"Gare de Carantilly",49.067787,-1.246182,-1,0,STE:SA:OCE87447144,Europe/Paris,,STE, +STE:SP:OCETrainTER-87447185,1,"Gare de Pont-Hébert",49.162041,-1.127044,-1,0,STE:SA:OCE87447185,Europe/Paris,,STE, +STE:SP:OCETrainTER-87447219,1,"Gare de Lison",49.227053,-1.050285,-1,0,SIN:SA:OCE87447219,Europe/Paris,,STE, +STE:SP:OCETrainTER-87447243,1,"Gare de Carentan",49.301803,-1.242098,-1,0,SIN:SA:OCE87447243,Europe/Paris,,STE, +STE:SP:OCETrainTER-87447284,1,"Gare de Valognes",49.505386,-1.480323,-1,0,SIN:SA:OCE87447284,Europe/Paris,,STE, +STE:SP:OCETrainTER-87447649,1,"Gare de Folligny",48.829153,-1.4064,-1,0,SIN:SA:OCE87447649,Europe/Paris,,STE, +STE:SP:OCETrainTER-87447680,1,"Gare de Granville",48.838844,-1.586778,-1,0,SIN:SA:OCE87447680,Europe/Paris,,STE, +STE:SP:OCETrainTER-87447698,1,"Gare de Villedieu (Gare)",48.834152,-1.225455,-1,0,SIN:SA:OCE87447698,Europe/Paris,,STE, +STE:SP:OCETrainTER-87448001,1,"Gare de Flers",48.744373,-0.573681,-1,0,SIN:SA:OCE87448001,Europe/Paris,,STE, +STE:SP:OCETrainTER-87448084,1,"Gare de Briouze",48.702003,-0.367444,-1,0,SIN:SA:OCE87448084,Europe/Paris,,STE, +STE:SP:OCETrainTER-87448159,1,"Gare de Vire",48.846354,-0.883169,-1,0,SIN:SA:OCE87448159,Europe/Paris,,STE, +STE:SP:OCETrainTER-87448514,1,"Gare de Avranches",48.690409,-1.369974,-1,0,SIN:SA:OCE87448514,Europe/Paris,,STE, +STE:SP:OCETrainTER-87471003,1,"Gare de Rennes",48.103515,-1.672327,-1,0,STE:SA:OCE87471003,Europe/Paris,,STE, +STE:SP:OCETrainTER-87471029,1,"Gare de Vern",48.04683,-1.59656,-1,0,SIN:SA:OCE87471029,Europe/Paris,,STE, +STE:SP:OCETrainTER-87471037,1,"Gare de Bruz",48.02852,-1.751994,-1,0,STE:SA:OCE87471037,Europe/Paris,,STE, +STE:SP:OCETrainTER-87471045,1,"Gare de Betton",48.181749,-1.634129,-1,0,STE:SA:OCE87471045,Europe/Paris,,STE, +STE:SP:OCETrainTER-87471052,1,"Gare de St-Jacques-de-la-Lande",48.067402,-1.713907,-1,0,STE:SA:OCE87471052,Europe/Paris,,STE, +STE:SP:OCETrainTER-87471060,1,"Gare de L'Hermitage-Mordelles",48.123163,-1.819188,-1,0,STE:SA:OCE87471060,Europe/Paris,,STE, +STE:SP:OCETrainTER-87471078,1,"Gare de Montfort-sur-Meu",48.138992,-1.948855,-1,0,STE:SA:OCE87471078,Europe/Paris,,STE, +STE:SP:OCETrainTER-87471086,1,"Gare de Montauban-de-Bretagne",48.189893,-2.053103,-1,0,STE:SA:OCE87471086,Europe/Paris,,STE, +STE:SP:OCETrainTER-87471094,1,"Gare de La Brohinière",48.213308,-2.110537,-1,0,STE:SA:OCE87471094,Europe/Paris,,STE, +STE:SP:OCETrainTER-87471102,1,"Gare de Breteil",48.140375,-1.89764,-1,0,STE:SA:OCE87471102,Europe/Paris,,STE, +STE:SP:OCETrainTER-87471144,1,"Gare de Laillé",47.970606,-1.749555,-1,0,STE:SA:OCE87471144,Europe/Paris,,STE, +STE:SP:OCETrainTER-87471151,1,"Gare de Guichen-Bourg-des-Comp.",47.934178,-1.760683,-1,0,STE:SA:OCE87471151,Europe/Paris,,STE, +STE:SP:OCETrainTER-87471169,1,"Gare de St-Senoux-Pléchatel",47.897838,-1.766166,-1,0,STE:SA:OCE87471169,Europe/Paris,,STE, +STE:SP:OCETrainTER-87471177,1,"Gare de Pléchatel",47.871684,-1.776462,-1,0,STE:SA:OCE87471177,Europe/Paris,,STE, +STE:SP:OCETrainTER-87471185,1,"Gare de Messac-Guipry",47.822214,-1.818668,-1,0,STE:SA:OCE87471185,Europe/Paris,,STE, +STE:SP:OCETrainTER-87471201,1,"Gare de Fougeray-Langon",47.73022,-1.85118,-1,0,SIN:SA:OCE87471201,Europe/Paris,,STE, +STE:SP:OCETrainTER-87471219,1,"Gare de Beslé",47.699196,-1.870289,-1,0,SIN:SA:OCE87471219,Europe/Paris,,STE, +STE:SP:OCETrainTER-87471227,1,"Gare de Massérac",47.674596,-1.914426,-1,0,STE:SA:OCE87471227,Europe/Paris,,STE, +STE:SP:OCETrainTER-87471300,1,"Gare de Redon",47.651763,-2.087877,-1,0,STE:SA:OCE87471300,Europe/Paris,,STE, +STE:SP:OCETrainTER-87471318,1,"Gare de St-Armel",48.014277,-1.594801,-1,0,STE:SA:OCE87471318,Europe/Paris,,STE, +STE:SP:OCETrainTER-87471326,1,"Gare de Corps-Nuds",47.985608,-1.575469,-1,0,STE:SA:OCE87471326,Europe/Paris,,STE, +STE:SP:OCETrainTER-87471334,1,"Gare de Janzé",47.955123,-1.49741,-1,0,SIN:SA:OCE87471334,Europe/Paris,,STE, +STE:SP:OCETrainTER-87471342,1,"Gare de Le Theil-de-Bretagne",47.918713,-1.432376,-1,0,SIN:SA:OCE87471342,Europe/Paris,,STE, +STE:SP:OCETrainTER-87471359,1,"Gare de Retiers",47.913212,-1.389718,-1,0,SIN:SA:OCE87471359,Europe/Paris,,STE, +STE:SP:OCETrainTER-87471391,1,"Gare de Pontchaillou",48.118326,-1.691797,-1,0,STE:SA:OCE87471391,Europe/Paris,,STE, +STE:SP:OCETrainTER-87471458,1,"Gare de Chevaigne",48.208895,-1.631158,-1,0,STE:SA:OCE87471458,Europe/Paris,,STE, +STE:SP:OCETrainTER-87471508,1,"Gare de Vitré",48.12242,-1.211966,-1,0,STE:SA:OCE87471508,Europe/Paris,,STE, +STE:SP:OCETrainTER-87471516,1,"Gare de Les Lacs",48.109026,-1.321814,-1,0,STE:SA:OCE87471516,Europe/Paris,,STE, +STE:SP:OCETrainTER-87471524,1,"Gare de Châteaubourg",48.106148,-1.405296,-1,0,STE:SA:OCE87471524,Europe/Paris,,STE, +STE:SP:OCETrainTER-87471532,1,"Gare de Servon",48.112056,-1.465967,-1,0,STE:SA:OCE87471532,Europe/Paris,,STE, +STE:SP:OCETrainTER-87471540,1,"Gare de Noyal-Acigné",48.118724,-1.528552,-1,0,STE:SA:OCE87471540,Europe/Paris,,STE, +STE:SP:OCETrainTER-87473009,1,"Gare de St-Brieuc",48.507223,-2.765467,-1,0,SIN:SA:OCE87473009,Europe/Paris,,STE, +STE:SP:OCETrainTER-87473058,1,"Gare de Quédillac",48.248539,-2.145631,-1,0,STE:SA:OCE87473058,Europe/Paris,,STE, +STE:SP:OCETrainTER-87473066,1,"Gare de Caulnes",48.284354,-2.155806,-1,0,STE:SA:OCE87473066,Europe/Paris,,STE, +STE:SP:OCETrainTER-87473074,1,"Gare de Broons",48.333357,-2.236432,-1,0,STE:SA:OCE87473074,Europe/Paris,,STE, +STE:SP:OCETrainTER-87473082,1,"Gare de Plenée-Jugon",48.376543,-2.354806,-1,0,STE:SA:OCE87473082,Europe/Paris,,STE, +STE:SP:OCETrainTER-87473090,1,"Gare de Plestan",48.425631,-2.442669,-1,0,STE:SA:OCE87473090,Europe/Paris,,STE, +STE:SP:OCETrainTER-87473108,1,"Gare de Lamballe",48.465922,-2.511489,-1,0,SIN:SA:OCE87473108,Europe/Paris,,STE, +STE:SP:OCETrainTER-87473116,1,"Gare de Yffiniac",48.470113,-2.652377,-1,0,SIN:SA:OCE87473116,Europe/Paris,,STE, +STE:SP:OCETrainTER-87473124,1,"Gare de La Méaugon",48.499975,-2.845023,-1,0,STE:SA:OCE87473124,Europe/Paris,,STE, +STE:SP:OCETrainTER-87473132,1,"Gare de Plouvara-Plerneuf",48.508553,-2.892234,-1,0,STE:SA:OCE87473132,Europe/Paris,,STE, +STE:SP:OCETrainTER-87473140,1,"Gare de Chatelaudren-Plouagat",48.533189,-2.974163,-1,0,STE:SA:OCE87473140,Europe/Paris,,STE, +STE:SP:OCETrainTER-87473165,1,"Gare de Belle-Isle-Bégard",48.593342,-3.323103,-1,0,STE:SA:OCE87473165,Europe/Paris,,STE, +STE:SP:OCETrainTER-87473181,1,"Gare de Plouaret-Trégor",48.606189,-3.46681,-1,0,STE:SA:OCE87473181,Europe/Paris,,STE, +STE:SP:OCETrainTER-87473199,1,"Gare de Plounérin",48.581474,-3.56838,-1,0,STE:SA:OCE87473199,Europe/Paris,,STE, +STE:SP:OCETrainTER-87473207,1,"Gare de Guingamp",48.555536,-3.142716,-1,0,SIN:SA:OCE87473207,Europe/Paris,,STE, +STE:SP:OCETrainTER-87473223,1,"Gare de Lannion",48.726952,-3.460669,-1,0,STE:SA:OCE87473223,Europe/Paris,,STE, +STE:SP:OCETrainTER-87473264,1,"Gare de Landébia",48.507364,-2.331714,-1,0,SIN:SA:OCE87473264,Europe/Paris,,STE, +STE:SP:OCETrainTER-87473272,1,"Gare de Plancoet",48.52147,-2.228839,-1,0,SIN:SA:OCE87473272,Europe/Paris,,STE, +STE:SP:OCETrainTER-87473504,1,"Gare de Carhaix",48.275812,-3.56411,-1,0,SIN:SA:OCE87473504,Europe/Paris,,STE, +STE:SP:OCETrainTER-87473512,1,"Gare de Mousteru",48.507636,-3.24305,-1,0,STE:SA:OCE87473512,Europe/Paris,,STE, +STE:SP:OCETrainTER-87473520,1,"Gare de Pont-Melvez",48.470073,-3.311587,-1,0,STE:SA:OCE87473520,Europe/Paris,,STE, +STE:SP:OCETrainTER-87473538,1,"Gare de Plougonver",48.458123,-3.37091,-1,0,STE:SA:OCE87473538,Europe/Paris,,STE, +STE:SP:OCETrainTER-87473546,1,"Gare de Callac",48.40689,-3.418668,-1,0,STE:SA:OCE87473546,Europe/Paris,,STE, +STE:SP:OCETrainTER-87473553,1,"Gare de Le Pénity",48.364176,-3.476685,-1,0,STE:SA:OCE87473553,Europe/Paris,,STE, +STE:SP:OCETrainTER-87473561,1,"Gare de Carnoët-Locarn",48.340295,-3.490717,-1,0,STE:SA:OCE87473561,Europe/Paris,,STE, +STE:SP:OCETrainTER-87473579,1,"Gare de Coat-Guégan",48.480433,-3.273719,-1,0,STE:SA:OCE87473579,Europe/Paris,,STE, +STE:SP:OCETrainTER-87473587,1,"Gare de Les Mais",48.426354,-3.38289,-1,0,STE:SA:OCE87473587,Europe/Paris,,STE, +STE:SP:OCETrainTER-87473801,1,"Gare de Gourland",48.559919,-3.166107,-1,0,STE:SA:OCE87473801,Europe/Paris,,STE, +STE:SP:OCETrainTER-87473819,1,"Gare de Trégonneau-Squiffiec",48.624465,-3.174104,-1,0,STE:SA:OCE87473819,Europe/Paris,,STE, +STE:SP:OCETrainTER-87473827,1,"Gare de Brélidy-Plouec",48.66911,-3.196239,-1,0,STE:SA:OCE87473827,Europe/Paris,,STE, +STE:SP:OCETrainTER-87473835,1,"Gare de Pontrieux (Halte)",48.698004,-3.164374,-1,0,STE:SA:OCE87473835,Europe/Paris,,STE, +STE:SP:OCETrainTER-87473843,1,"Gare de Pontrieux",48.705577,-3.156709,-1,0,STE:SA:OCE87473843,Europe/Paris,,STE, +STE:SP:OCETrainTER-87473850,1,"Gare de Lancerf",48.761773,-3.118068,-1,0,STE:SA:OCE87473850,Europe/Paris,,STE, +STE:SP:OCETrainTER-87473868,1,"Gare de Paimpol",48.776705,-3.046355,-1,0,STE:SA:OCE87473868,Europe/Paris,,STE, +STE:SP:OCETrainTER-87473876,1,"Gare de Frynaudour",48.728158,-3.128618,-1,0,STE:SA:OCE87473876,Europe/Paris,,STE, +STE:SP:OCETrainTER-87474007,1,"Gare de Brest",48.388083,-4.478918,-1,0,SIN:SA:OCE87474007,Europe/Paris,,STE, +STE:SP:OCETrainTER-87474015,1,"Gare de Dirinon",48.392594,-4.285596,-1,0,SIN:SA:OCE87474015,Europe/Paris,,STE, +STE:SP:OCETrainTER-87474056,1,"Gare de Pont-de-Buis",48.254317,-4.086314,-1,0,SIN:SA:OCE87474056,Europe/Paris,,STE, +STE:SP:OCETrainTER-87474064,1,"Gare de Châteaulin-Emb.",48.201506,-4.09404,-1,0,SIN:SA:OCE87474064,Europe/Paris,,STE, +STE:SP:OCETrainTER-87474098,1,"Gare de Quimper",47.994658,-4.092103,-1,0,SIN:SA:OCE87474098,Europe/Paris,,STE, +STE:SP:OCETrainTER-87474155,1,"Gare de Rosporden",47.96019,-3.832758,-1,0,SIN:SA:OCE87474155,Europe/Paris,,STE, +STE:SP:OCETrainTER-87474189,1,"Gare de Bannalec",47.926507,-3.706728,-1,0,STE:SA:OCE87474189,Europe/Paris,,STE, +STE:SP:OCETrainTER-87474213,1,"Gare de Kerhuon",48.409591,-4.387987,-1,0,STE:SA:OCE87474213,Europe/Paris,,STE, +STE:SP:OCETrainTER-87474221,1,"Gare de La Forest",48.426187,-4.307496,-1,0,STE:SA:OCE87474221,Europe/Paris,,STE, +STE:SP:OCETrainTER-87474239,1,"Gare de Landerneau",48.453834,-4.256209,-1,0,SIN:SA:OCE87474239,Europe/Paris,,STE, +STE:SP:OCETrainTER-87474262,1,"Gare de La Roche (Maurice)",48.47398,-4.205001,-1,0,STE:SA:OCE87474262,Europe/Paris,,STE, +STE:SP:OCETrainTER-87474270,1,"Gare de Landivisiau",48.495611,-4.082704,-1,0,STE:SA:OCE87474270,Europe/Paris,,STE, +STE:SP:OCETrainTER-87474296,1,"Gare de Guimiliau",48.484987,-3.998917,-1,0,STE:SA:OCE87474296,Europe/Paris,,STE, +STE:SP:OCETrainTER-87474312,1,"Gare de St-Thégonnec",48.494189,-3.948119,-1,0,STE:SA:OCE87474312,Europe/Paris,,STE, +STE:SP:OCETrainTER-87474320,1,"Gare de Pleyber-Christ",48.507585,-3.882852,-1,0,STE:SA:OCE87474320,Europe/Paris,,STE, +STE:SP:OCETrainTER-87474338,1,"Gare de Morlaix",48.577979,-3.832761,-1,0,SIN:SA:OCE87474338,Europe/Paris,,STE, +STE:SP:OCETrainTER-87474411,1,"Gare de Plouigneau",48.564523,-3.710343,-1,0,STE:SA:OCE87474411,Europe/Paris,,STE, +STE:SP:OCETrainTER-87474569,1,"Gare de St-Pol-de-Léon",48.676806,-3.987578,-1,0,SIN:SA:OCE87474569,Europe/Paris,,STE, +STE:SP:OCETrainTER-87474635,1,"Gare de Roscoff",48.720554,-3.982457,-1,0,SIN:SA:OCE87474635,Europe/Paris,,STE, +STE:SP:OCETrainTER-87476002,1,"Gare de Lorient",47.755203,-3.366348,-1,0,SIN:SA:OCE87476002,Europe/Paris,,STE, +STE:SP:OCETrainTER-87476200,1,"Gare de Auray",47.680189,-2.999999,-1,0,STE:SA:OCE87476200,Europe/Paris,,STE, +STE:SP:OCETrainTER-87476226,1,"Gare de Landaul-Mendon",47.735853,-3.086205,-1,0,STE:SA:OCE87476226,Europe/Paris,,STE, +STE:SP:OCETrainTER-87476234,1,"Gare de Landevant",47.759474,-3.125688,-1,0,STE:SA:OCE87476234,Europe/Paris,,STE, +STE:SP:OCETrainTER-87476242,1,"Gare de Branderion",47.782315,-3.19509,-1,0,STE:SA:OCE87476242,Europe/Paris,,STE, +STE:SP:OCETrainTER-87476259,1,"Gare de Hennebont",47.79893,-3.285657,-1,0,STE:SA:OCE87476259,Europe/Paris,,STE, +STE:SP:OCETrainTER-87476309,1,"Gare de Gestel",47.803103,-3.443365,-1,0,STE:SA:OCE87476309,Europe/Paris,,STE, +STE:SP:OCETrainTER-87476317,1,"Gare de Quimperlé",47.869063,-3.553011,-1,0,SIN:SA:OCE87476317,Europe/Paris,,STE, +STE:SP:OCETrainTER-87476606,1,"Gare de Vannes",47.665324,-2.752524,-1,0,STE:SA:OCE87476606,Europe/Paris,,STE, +STE:SP:OCETrainTER-87476648,1,"Gare de Ste-Anne (Morbihan)",47.678459,-2.960394,-1,0,STE:SA:OCE87476648,Europe/Paris,,STE, +STE:SP:OCETrainTER-87476671,1,"Gare de Questembert",47.683131,-2.449669,-1,0,SIN:SA:OCE87476671,Europe/Paris,,STE, +STE:SP:OCETrainTER-87476689,1,"Gare de Malansac",47.675428,-2.295754,-1,0,SIN:SA:OCE87476689,Europe/Paris,,STE, +STE:SP:OCETrainTER-87476754,1,"Gare de Sévérac",47.550054,-2.072783,-1,0,STE:SA:OCE87476754,Europe/Paris,,STE, +STE:SP:OCETrainTER-87476762,1,"Gare de St-Gildas-des-Bois",47.516565,-2.04365,-1,0,SIN:SA:OCE87476762,Europe/Paris,,STE, +STE:SP:OCETrainTER-87476770,1,"Gare de Dreffeac",47.482389,-2.050246,-1,0,SIN:SA:OCE87476770,Europe/Paris,,STE, +STE:SP:OCETrainTER-87478016,1,"Gare de St-Germain-sur-Ille",48.238917,-1.653591,-1,0,STE:SA:OCE87478016,Europe/Paris,,STE, +STE:SP:OCETrainTER-87478024,1,"Gare de St-Médard-sur-Ille",48.273515,-1.666582,-1,0,STE:SA:OCE87478024,Europe/Paris,,STE, +STE:SP:OCETrainTER-87478032,1,"Gare de Montreuil-sur-Ille",48.30632,-1.674271,-1,0,STE:SA:OCE87478032,Europe/Paris,,STE, +STE:SP:OCETrainTER-87478040,1,"Gare de Dingé",48.350128,-1.68584,-1,0,STE:SA:OCE87478040,Europe/Paris,,STE, +STE:SP:OCETrainTER-87478057,1,"Gare de Combourg",48.415974,-1.727542,-1,0,STE:SA:OCE87478057,Europe/Paris,,STE, +STE:SP:OCETrainTER-87478065,1,"Gare de Bonnemain",48.477088,-1.765864,-1,0,STE:SA:OCE87478065,Europe/Paris,,STE, +STE:SP:OCETrainTER-87478073,1,"Gare de Dol",48.542976,-1.75047,-1,0,SIN:SA:OCE87478073,Europe/Paris,,STE, +STE:SP:OCETrainTER-87478081,1,"Gare de La Fresnais",48.593623,-1.843152,-1,0,STE:SA:OCE87478081,Europe/Paris,,STE, +STE:SP:OCETrainTER-87478099,1,"Gare de La Gouesnière-Cancale",48.614362,-1.905965,-1,0,STE:SA:OCE87478099,Europe/Paris,,STE, +STE:SP:OCETrainTER-87478107,1,"Gare de St-Malo",48.646652,-2.00462,-1,0,STE:SA:OCE87478107,Europe/Paris,,STE, +STE:SP:OCETrainTER-87478123,1,"Gare de Plerguer",48.531538,-1.850443,-1,0,SIN:SA:OCE87478123,Europe/Paris,,STE, +STE:SP:OCETrainTER-87478131,1,"Gare de Miniac",48.531528,-1.91503,-1,0,STE:SA:OCE87478131,Europe/Paris,,STE, +STE:SP:OCETrainTER-87478149,1,"Gare de Pleudihen",48.499297,-1.96181,-1,0,STE:SA:OCE87478149,Europe/Paris,,STE, +STE:SP:OCETrainTER-87478156,1,"Gare de La Hisse",48.49607,-2.003037,-1,0,STE:SA:OCE87478156,Europe/Paris,,STE, +STE:SP:OCETrainTER-87478164,1,"Gare de Dinan",48.456966,-2.052987,-1,0,SIN:SA:OCE87478164,Europe/Paris,,STE, +STE:SP:OCETrainTER-87478180,1,"Gare de Corseul-Languenan",48.496002,-2.141404,-1,0,SIN:SA:OCE87478180,Europe/Paris,,STE, +STE:SP:OCETrainTER-87478263,1,"Gare de Pontorson-Mt-St-Michel",48.552444,-1.505068,-1,0,SIN:SA:OCE87478263,Europe/Paris,,STE, +STE:SP:OCETrainTER-87478404,1,"Gare de Laval",48.076252,-0.760939,-1,0,SIN:SA:OCE87478404,Europe/Paris,,STE, +STE:SP:OCETrainTER-87478511,1,"Gare de Louverné",48.109093,-0.713775,-1,0,STE:SA:OCE87478511,Europe/Paris,,STE, +STE:SP:OCETrainTER-87478537,1,"Gare de Montsurs",48.141106,-0.551436,-1,0,SIN:SA:OCE87478537,Europe/Paris,,STE, +STE:SP:OCETrainTER-87478545,1,"Gare de Neau",48.157253,-0.477164,-1,0,STE:SA:OCE87478545,Europe/Paris,,STE, +STE:SP:OCETrainTER-87478552,1,"Gare de Evron",48.155535,-0.39717,-1,0,SIN:SA:OCE87478552,Europe/Paris,,STE, +STE:SP:OCETrainTER-87478560,1,"Gare de Voutré",48.134169,-0.292323,-1,0,STE:SA:OCE87478560,Europe/Paris,,STE, +STE:SP:OCETrainTER-87478743,1,"Gare de Le Genest",48.096774,-0.885341,-1,0,STE:SA:OCE87478743,Europe/Paris,,STE, +STE:SP:OCETrainTER-87478750,1,"Gare de Port-Brillet",48.110739,-0.973978,-1,0,STE:SA:OCE87478750,Europe/Paris,,STE, +STE:SP:OCETrainTER-87478768,1,"Gare de St-Pierre-la-Cour",48.113655,-1.025542,-1,0,STE:SA:OCE87478768,Europe/Paris,,STE, +STE:SP:OCETrainTER-87481002,1,"Gare de Nantes",47.217505,-1.541925,-1,0,STE:SA:OCE87481002,Europe/Paris,,STE, +STE:SP:OCETrainTER-87481036,1,"Gare de Rezé-Pont-Rousseau",47.193323,-1.549369,-1,0,STE:SA:OCE87481036,Europe/Paris,,STE, +STE:SP:OCETrainTER-87481051,1,"Gare de Chantenay",47.197211,-1.594316,-1,0,SIN:SA:OCE87481051,Europe/Paris,,STE, +STE:SP:OCETrainTER-87481069,1,"Gare de La Basse-Indre-St-Herb.",47.20411,-1.660311,-1,0,SIN:SA:OCE87481069,Europe/Paris,,STE, +STE:SP:OCETrainTER-87481143,1,"Gare de Thouaré",47.265114,-1.440938,-1,0,STE:SA:OCE87481143,Europe/Paris,,STE, +STE:SP:OCETrainTER-87481150,1,"Gare de Mauves-sur-Loire",47.293,-1.389301,-1,0,STE:SA:OCE87481150,Europe/Paris,,STE, +STE:SP:OCETrainTER-87481168,1,"Gare de Le Cellier",47.31316,-1.350957,-1,0,STE:SA:OCE87481168,Europe/Paris,,STE, +STE:SP:OCETrainTER-87481176,1,"Gare de Boussay-la-Bruffière",47.050461,-1.182848,-1,0,SIN:SA:OCE87481176,Europe/Paris,,STE, +STE:SP:OCETrainTER-87481184,1,"Gare de Oudon",47.343339,-1.292019,-1,0,STE:SA:OCE87481184,Europe/Paris,,STE, +STE:SP:OCETrainTER-87481192,1,"Gare de Ancenis",47.369458,-1.177608,-1,0,STE:SA:OCE87481192,Europe/Paris,,STE, +STE:SP:OCETrainTER-87481200,1,"Gare de Bouaye",47.138165,-1.681054,-1,0,STE:SA:OCE87481200,Europe/Paris,,STE, +STE:SP:OCETrainTER-87481218,1,"Gare de Port-St-Père-St-M.",47.116495,-1.739351,-1,0,STE:SA:OCE87481218,Europe/Paris,,STE, +STE:SP:OCETrainTER-87481226,1,"Gare de Ste-Pazanne",47.10543,-1.813739,-1,0,STE:SA:OCE87481226,Europe/Paris,,STE, +STE:SP:OCETrainTER-87481234,1,"Gare de St-Hilaire-de-Chaléons",47.105743,-1.865168,-1,0,STE:SA:OCE87481234,Europe/Paris,,STE, +STE:SP:OCETrainTER-87481242,1,"Gare de Bourgneuf-en-Retz",47.046854,-1.955271,-1,0,STE:SA:OCE87481242,Europe/Paris,,STE, +STE:SP:OCETrainTER-87481259,1,"Gare de Les Moutiers-en-Retz",47.061898,-2.001131,-1,0,STE:SA:OCE87481259,Europe/Paris,,STE, +STE:SP:OCETrainTER-87481267,1,"Gare de La Bernerie-en-Retz",47.083188,-2.034193,-1,0,STE:SA:OCE87481267,Europe/Paris,,STE, +STE:SP:OCETrainTER-87481283,1,"Gare de Pornic",47.114495,-2.097789,-1,0,STE:SA:OCE87481283,Europe/Paris,,STE, +STE:SP:OCETrainTER-87481366,1,"Gare de Machecoul",46.990618,-1.82263,-1,0,SIN:SA:OCE87481366,Europe/Paris,,STE, +STE:SP:OCETrainTER-87481390,1,"Gare de Challans",46.844046,-1.87183,-1,0,SIN:SA:OCE87481390,Europe/Paris,,STE, +STE:SP:OCETrainTER-87481440,1,"Gare de Clisson",47.085986,-1.286356,-1,0,STE:SA:OCE87481440,Europe/Paris,,STE, +STE:SP:OCETrainTER-87481457,1,"Gare de Cugand",47.058314,-1.253309,-1,0,STE:SA:OCE87481457,Europe/Paris,,STE, +STE:SP:OCETrainTER-87481465,1,"Gare de Montaigu (Vendée)",46.983734,-1.316257,-1,0,STE:SA:OCE87481465,Europe/Paris,,STE, +STE:SP:OCETrainTER-87481689,1,"Gare de La Croix-de-Méan",47.300547,-2.193,-1,0,SIN:SA:OCE87481689,Europe/Paris,,STE, +STE:SP:OCETrainTER-87481697,1,"Gare de La Baule-les-Pins",47.283575,-2.364769,-1,0,SIN:SA:OCE87481697,Europe/Paris,,STE, +STE:SP:OCETrainTER-87481705,1,"Gare de St-Nazaire",47.286474,-2.211074,-1,0,SIN:SA:OCE87481705,Europe/Paris,,STE, +STE:SP:OCETrainTER-87481713,1,"Gare de Montoir-de-Bretagne",47.321047,-2.16164,-1,0,SIN:SA:OCE87481713,Europe/Paris,,STE, +STE:SP:OCETrainTER-87481721,1,"Gare de Donges",47.308686,-2.071699,-1,0,SIN:SA:OCE87481721,Europe/Paris,,STE, +STE:SP:OCETrainTER-87481747,1,"Gare de Pornichet",47.270485,-2.344737,-1,0,SIN:SA:OCE87481747,Europe/Paris,,STE, +STE:SP:OCETrainTER-87481754,1,"Gare de La Baule-Escoublac",47.288622,-2.389225,-1,0,SIN:SA:OCE87481754,Europe/Paris,,STE, +STE:SP:OCETrainTER-87481762,1,"Gare de Le Pouliguen",47.282524,-2.433157,-1,0,SIN:SA:OCE87481762,Europe/Paris,,STE, +STE:SP:OCETrainTER-87481770,1,"Gare de Batz-sur-Mer",47.280836,-2.479,-1,0,SIN:SA:OCE87481770,Europe/Paris,,STE, +STE:SP:OCETrainTER-87481788,1,"Gare de Le Croisic",47.289889,-2.507288,-1,0,SIN:SA:OCE87481788,Europe/Paris,,STE, +STE:SP:OCETrainTER-87481804,1,"Gare de Couéron",47.221924,-1.723519,-1,0,STE:SA:OCE87481804,Europe/Paris,,STE, +STE:SP:OCETrainTER-87481812,1,"Gare de St-Etienne-de-Montluc",47.274767,-1.785623,-1,0,SIN:SA:OCE87481812,Europe/Paris,,STE, +STE:SP:OCETrainTER-87481820,1,"Gare de Cordemais",47.302199,-1.846616,-1,0,SIN:SA:OCE87481820,Europe/Paris,,STE, +STE:SP:OCETrainTER-87481838,1,"Gare de Savenay",47.358554,-1.951034,-1,0,STE:SA:OCE87481838,Europe/Paris,,STE, +STE:SP:OCETrainTER-87481846,1,"Gare de Pontchâteau",47.435338,-2.088488,-1,0,SIN:SA:OCE87481846,Europe/Paris,,STE, +STE:SP:OCETrainTER-87484006,1,"Gare de Angers-St-Laud",47.464434,-0.556949,-1,0,SIN:SA:OCE87484006,Europe/Paris,,STE, +STE:SP:OCETrainTER-87484048,1,"Gare de Angers-Maitre-Ecole",47.467005,-0.532493,-1,0,STE:SA:OCE87484048,Europe/Paris,,STE, +STE:SP:OCETrainTER-87484139,1,"Gare de Le Vieux-Briollay",47.573623,-0.483078,-1,0,STE:SA:OCE87484139,Europe/Paris,,STE, +STE:SP:OCETrainTER-87484147,1,"Gare de Tiercé",47.617532,-0.469436,-1,0,STE:SA:OCE87484147,Europe/Paris,,STE, +STE:SP:OCETrainTER-87484154,1,"Gare de Etriché-Chateauneuf",47.656717,-0.460852,-1,0,STE:SA:OCE87484154,Europe/Paris,,STE, +STE:SP:OCETrainTER-87484170,1,"Gare de Morannes",47.73902,-0.418196,-1,0,STE:SA:OCE87484170,Europe/Paris,,STE, +STE:SP:OCETrainTER-87484204,1,"Gare de Chalonnes",47.343005,-0.743764,-1,0,SIN:SA:OCE87484204,Europe/Paris,,STE, +STE:SP:OCETrainTER-87484246,1,"Gare de Chemillé",47.217598,-0.732093,-1,0,SIN:SA:OCE87484246,Europe/Paris,,STE, +STE:SP:OCETrainTER-87484303,1,"Gare de Cholet",47.065732,-0.869612,-1,0,SIN:SA:OCE87484303,Europe/Paris,,STE, +STE:SP:OCETrainTER-87484329,1,"Gare de Savennières-Béhuard",47.381571,-0.654542,-1,0,STE:SA:OCE87484329,Europe/Paris,,STE, +STE:SP:OCETrainTER-87484337,1,"Gare de La Possonnière",47.371493,-0.691742,-1,0,SIN:SA:OCE87484337,Europe/Paris,,STE, +STE:SP:OCETrainTER-87484352,1,"Gare de Champtocé-sur-Loire",47.410322,-0.868067,-1,0,STE:SA:OCE87484352,Europe/Paris,,STE, +STE:SP:OCETrainTER-87484360,1,"Gare de Ingrandes-sur-Loire",47.405932,-0.920793,-1,0,STE:SA:OCE87484360,Europe/Paris,,STE, +STE:SP:OCETrainTER-87484386,1,"Gare de Varades-St-Florent Le V",47.374543,-1.019803,-1,0,STE:SA:OCE87484386,Europe/Paris,,STE, +STE:SP:OCETrainTER-87485003,1,"Gare de La Rochelle-Ville",46.152701,-1.1453,-1,0,SIN:SA:OCE87485003,Europe/Paris,,STE, +STE:SP:OCETrainTER-87485185,1,"Gare de La-Jarrie",46.120623,-1.023685,-1,0,SIN:SA:OCE87454249,Europe/Paris,,STE, +STE:SP:OCETrainTER-87485193,1,"Gare de Aigrefeuille-le-Thou",46.093489,-0.951268,-1,0,SIN:SA:OCE87454249,Europe/Paris,,STE, +STE:SP:OCETrainTER-87485227,1,"Gare de Surgères",46.113416,-0.762133,-1,0,STE:SA:OCE87485227,Europe/Paris,,STE, +STE:SP:OCETrainTER-87485250,1,"Gare de Mauzé",46.199688,-0.673597,-1,0,STE:SA:OCE87485250,Europe/Paris,,STE, +STE:SP:OCETrainTER-87485300,1,"Gare de Niort",46.319345,-0.454391,-1,0,STE:SA:OCE87485300,Europe/Paris,,STE, +STE:SP:OCETrainTER-87485474,1,"Gare de La Crèche",46.360423,-0.296278,-1,0,STE:SA:OCE87485474,Europe/Paris,,STE, +STE:SP:OCETrainTER-87485490,1,"Gare de St-Maixent (Deux-Sèvr.)",46.406308,-0.201306,-1,0,STE:SA:OCE87485490,Europe/Paris,,STE, +STE:SP:OCETrainTER-87485508,1,"Gare de La Mothe-St-Héray",46.380923,-0.129873,-1,0,STE:SA:OCE87485508,Europe/Paris,,STE, +STE:SP:OCETrainTER-87485524,1,"Gare de Pamproux",46.399808,-0.051976,-1,0,STE:SA:OCE87485524,Europe/Paris,,STE, +STE:SP:OCETrainTER-87485540,1,"Gare de Lusignan",46.435002,0.115756,-1,0,STE:SA:OCE87485540,Europe/Paris,,STE, +STE:SP:OCETrainTER-87486019,1,"Gare de La Roche-sur-Yon",46.672025,-1.43568,-1,0,STE:SA:OCE87486019,Europe/Paris,,STE, +STE:SP:OCETrainTER-87486126,1,"Gare de L'Herbergement-les-Br.",46.906963,-1.371326,-1,0,STE:SA:OCE87486126,Europe/Paris,,STE, +STE:SP:OCETrainTER-87486142,1,"Gare de Belleville-sur-Vie",46.788327,-1.434478,-1,0,STE:SA:OCE87486142,Europe/Paris,,STE, +STE:SP:OCETrainTER-87486258,1,"Gare de Luçon",46.46372,-1.167445,-1,0,SIN:SA:OCE87486258,Europe/Paris,,STE, +STE:SP:OCETrainTER-87486308,1,"Gare de La Chaize-le-Vicomte",46.676832,-1.283399,-1,0,STE:SA:OCE87486308,Europe/Paris,,STE, +STE:SP:OCETrainTER-87486316,1,"Gare de Fougeré",46.665367,-1.231964,-1,0,STE:SA:OCE87486316,Europe/Paris,,STE, +STE:SP:OCETrainTER-87486324,1,"Gare de Bournezeau",46.651484,-1.178474,-1,0,STE:SA:OCE87486324,Europe/Paris,,STE, +STE:SP:OCETrainTER-87486332,1,"Gare de Chantonnay",46.690119,-1.054358,-1,0,SIN:SA:OCE87486332,Europe/Paris,,STE, +STE:SP:OCETrainTER-87486423,1,"Gare de La Mothe-Achard",46.606815,-1.659679,-1,0,SIN:SA:OCE87486423,Europe/Paris,,STE, +STE:SP:OCETrainTER-87486431,1,"Gare de Olonne-sur-Mer",46.548608,-1.767379,-1,0,STE:SA:OCE87486431,Europe/Paris,,STE, +STE:SP:OCETrainTER-87486449,1,"Gare de Les Sables-d'Olonne",46.499983,-1.781155,-1,0,SIN:SA:OCE87486449,Europe/Paris,,STE, +STE:SP:OCETrainTER-87486563,1,"Gare de St-Hilaire-de-Riez SNCF",46.716579,-1.949586,-1,0,SIN:SA:OCE87486563,Europe/Paris,,STE, +STE:SP:OCETrainTER-87486571,1,"Gare de St-Gilles-Croix-de-Vie",46.69638,-1.94137,-1,0,SIN:SA:OCE87486571,Europe/Paris,,STE, +STE:SP:OCETrainTER-87486894,1,"Gare de Torfou",47.033135,-1.117308,-1,0,SIN:SA:OCE87486894,Europe/Paris,,STE, +STE:SP:OCETrainTER-87487009,1,"Gare de Thouars",46.985249,-0.210513,-1,0,SIN:SA:OCE87487009,Europe/Paris,,STE, +STE:SP:OCETrainTER-87487249,1,"Gare de Bressuire",46.837167,-0.496485,-1,0,SIN:SA:OCE87487249,Europe/Paris,,STE, +STE:SP:OCETrainTER-87487280,1,"Gare de Cerizay",46.817312,-0.667487,-1,0,SIN:SA:OCE87487280,Europe/Paris,,STE, +STE:SP:OCETrainTER-87487314,1,"Gare de Pouzauges",46.752408,-0.814623,-1,0,STE:SA:OCE87487314,Europe/Paris,,STE, +STE:SP:OCETrainTER-87487603,1,"Gare de Saumur",47.268972,-0.07143,-1,0,SIN:SA:OCE87487603,Europe/Paris,,STE, +STE:SP:OCETrainTER-87487637,1,"Gare de Montreuil-Bellay",47.125325,-0.148041,-1,0,SIN:SA:OCE87487637,Europe/Paris,,STE, +STE:SP:OCETrainTER-87487843,1,"Gare de La Bohalle",47.434177,-0.400197,-1,0,STE:SA:OCE87487843,Europe/Paris,,STE, +STE:SP:OCETrainTER-87487876,1,"Gare de Les Rosiers-sur-Loire",47.361852,-0.219611,-1,0,STE:SA:OCE87487876,Europe/Paris,,STE, +STE:SP:OCETrainTER-87487884,1,"Gare de La Menitré",47.397369,-0.275869,-1,0,SIN:SA:OCE87487884,Europe/Paris,,STE, +STE:SP:OCETrainTER-87487892,1,"Gare de St-Mathurin",47.412078,-0.318063,-1,0,SIN:SA:OCE87487892,Europe/Paris,,STE, +STE:SP:OCETrainTER-87543009,1,"Gare de Orléans",47.908153,1.904753,-1,0,SIN:SA:OCE87543009,Europe/Paris,,STE, +STE:SP:OCETrainTER-87543017,1,"Gare de Aubrais-(les)",47.926917,1.906085,-1,0,SIN:SA:OCE87543017,Europe/Paris,,STE, +STE:SP:OCETrainTER-87543033,1,"Gare de Cercottes",47.986387,1.884447,-1,0,SIN:SA:OCE87543033,Europe/Paris,,STE, +STE:SP:OCETrainTER-87543041,1,"Gare de Chevilly",48.026636,1.879047,-1,0,SIN:SA:OCE87543041,Europe/Paris,,STE, +STE:SP:OCETrainTER-87543058,1,"Gare de Artenay",48.080653,1.883355,-1,0,SIN:SA:OCE87543058,Europe/Paris,,STE, +STE:SP:OCETrainTER-87543066,1,"Gare de Château-Gaillard",48.141549,1.912467,-1,0,SIN:SA:OCE87543066,Europe/Paris,,STE, +STE:SP:OCETrainTER-87543074,1,"Gare de Toury",48.187331,1.936611,-1,0,STE:SA:OCE87543074,Europe/Paris,,STE, +STE:SP:OCETrainTER-87543082,1,"Gare de Boisseaux",48.256469,1.972949,-1,0,STE:SA:OCE87543082,Europe/Paris,,STE, +STE:SP:OCETrainTER-87543090,1,"Gare de Angerville",48.311334,2.00369,-1,0,STE:SA:OCE87543090,Europe/Paris,,STE, +STE:SP:OCETrainTER-87543116,1,"Gare de St-Cyr-en-Val-La-Source",47.819197,1.947569,-1,0,STE:SA:OCE87543116,Europe/Paris,,STE, +STE:SP:OCETrainTER-87543124,1,"Gare de La Ferté-St-Aubin",47.720968,1.932337,-1,0,STE:SA:OCE87543124,Europe/Paris,,STE, +STE:SP:OCETrainTER-87543140,1,"Gare de Lamotte-Beuvron",47.59397,2.022591,-1,0,SIN:SA:OCE87543140,Europe/Paris,,STE, +STE:SP:OCETrainTER-87543157,1,"Gare de Nouan-le-Fuzelier",47.534058,2.033265,-1,0,SIN:SA:OCE87543157,Europe/Paris,,STE, +STE:SP:OCETrainTER-87543165,1,"Gare de Salbris",47.42514,2.047737,-1,0,SIN:SA:OCE87543165,Europe/Paris,,STE, +STE:SP:OCETrainTER-87543199,1,"Gare de Theillay",47.314356,2.044474,-1,0,STE:SA:OCE87543199,Europe/Paris,,STE, +STE:SP:OCETrainTER-87543371,1,"Gare de La Chapelle-St-Mesmin",47.892865,1.826933,-1,0,STE:SA:OCE87543371,Europe/Paris,,STE, +STE:SP:OCETrainTER-87545111,1,"Gare de Monnerville",48.348329,2.032238,-1,0,STE:SA:OCE87545111,Europe/Paris,,STE, +STE:SP:OCETrainTER-87545129,1,"Gare de Guillerval",48.374615,2.060221,-1,0,STE:SA:OCE87545129,Europe/Paris,,STE, +STE:SP:OCETrainTER-87545137,1,"Gare de Etampes",48.43658,2.159494,-1,0,STE:SA:OCE87545137,Europe/Paris,,STE, +STE:SP:OCETrainTER-87545525,1,"Gare de Dourdan",48.533612,2.009701,-1,0,SIN:SA:OCE87545525,Europe/Paris,,STE, +STE:SP:OCETrainTER-87545657,1,"Gare de Auneau",48.445413,1.779718,-1,0,SIN:SA:OCE87545657,Europe/Paris,,STE, +STE:SP:OCETrainTER-87545707,1,"Gare de Voves",48.274974,1.622171,-1,0,SIN:SA:OCE87545707,Europe/Paris,,STE, +STE:SP:OCETrainTER-87545731,1,"Gare de Bonneval",48.186288,1.386117,-1,0,SIN:SA:OCE87545731,Europe/Paris,,STE, +STE:SP:OCETrainTER-87545756,1,"Gare de Châteaudun",48.073354,1.338105,-1,0,SIN:SA:OCE87545756,Europe/Paris,,STE, +STE:SP:OCETrainTER-87547000,1,"Gare de Paris-Austerlitz",48.841652,2.366039,-1,0,SIN:SA:OCE87547000,Europe/Paris,,STE, +STE:SP:OCETrainTER-87571000,1,"Gare de Tours",47.389814,0.693505,-1,0,SIN:SA:OCE87571000,Europe/Paris,,STE, +STE:SP:OCETrainTER-87571240,1,"Gare de St-Pierre-des-Corps",47.385732,0.725054,-1,0,SIN:SA:OCE87571240,Europe/Paris,,STE, +STE:SP:OCETrainTER-87571273,1,"Gare de Montlouis",47.391554,0.817513,-1,0,SIN:SA:OCE87571273,Europe/Paris,,STE, +STE:SP:OCETrainTER-87571406,1,"Gare de Montbazon",47.291644,0.721504,-1,0,SIN:SA:OCE87571406,Europe/Paris,,STE, +STE:SP:OCETrainTER-87571414,1,"Gare de Veigné",47.2915,0.734441,-1,0,SIN:SA:OCE87571414,Europe/Paris,,STE, +STE:SP:OCETrainTER-87571422,1,"Gare de Esvres",47.284119,0.781561,-1,0,SIN:SA:OCE87571422,Europe/Paris,,STE, +STE:SP:OCETrainTER-87571430,1,"Gare de Cormery",47.262354,0.833818,-1,0,SIN:SA:OCE87571430,Europe/Paris,,STE, +STE:SP:OCETrainTER-87571448,1,"Gare de Courcay-Tauxigny",47.237832,0.867626,-1,0,SIN:SA:OCE87571448,Europe/Paris,,STE, +STE:SP:OCETrainTER-87571455,1,"Gare de Reignac",47.217787,0.901295,-1,0,SIN:SA:OCE87571455,Europe/Paris,,STE, +STE:SP:OCETrainTER-87571463,1,"Gare de Chambourg",47.181644,0.965421,-1,0,STE:SA:OCE87571463,Europe/Paris,,STE, +STE:SP:OCETrainTER-87571471,1,"Gare de Loches",47.1304,1.00097,-1,0,SIN:SA:OCE87571471,Europe/Paris,,STE, +STE:SP:OCETrainTER-87571513,1,"Gare de La Membrolle-sur-Chois.",47.431824,0.641308,-1,0,STE:SA:OCE87571513,Europe/Paris,,STE, +STE:SP:OCETrainTER-87571539,1,"Gare de St-Antoine-du-Rocher",47.50381,0.616365,-1,0,SIN:SA:OCE87571539,Europe/Paris,,STE, +STE:SP:OCETrainTER-87571547,1,"Gare de Neuillé-Pont-Pierre",47.558461,0.564038,-1,0,SIN:SA:OCE87571547,Europe/Paris,,STE, +STE:SP:OCETrainTER-87571554,1,"Gare de St-Paterne",47.60408,0.478045,-1,0,SIN:SA:OCE87571554,Europe/Paris,,STE, +STE:SP:OCETrainTER-87571604,1,"Gare de Ballan",47.336758,0.61808,-1,0,SIN:SA:OCE87571604,Europe/Paris,,STE, +STE:SP:OCETrainTER-87571612,1,"Gare de Druye",47.306788,0.535467,-1,0,SIN:SA:OCE87571612,Europe/Paris,,STE, +STE:SP:OCETrainTER-87571638,1,"Gare de Azay-le-Rideau",47.266246,0.447778,-1,0,SIN:SA:OCE87571638,Europe/Paris,,STE, +STE:SP:OCETrainTER-87571653,1,"Gare de Rivarennes",47.267661,0.361921,-1,0,SIN:SA:OCE87571653,Europe/Paris,,STE, +STE:SP:OCETrainTER-87571687,1,"Gare de Chinon",47.163053,0.252044,-1,0,SIN:SA:OCE87571687,Europe/Paris,,STE, +STE:SP:OCETrainTER-87571794,1,"Gare de Port-Boulet",47.248527,0.154869,-1,0,SIN:SA:OCE87571794,Europe/Paris,,STE, +STE:SP:OCETrainTER-87571802,1,"Gare de La Chapelle-sur-Loire",47.251299,0.219119,-1,0,STE:SA:OCE87571802,Europe/Paris,,STE, +STE:SP:OCETrainTER-87571810,1,"Gare de St-Patrice",47.285701,0.309878,-1,0,STE:SA:OCE87571810,Europe/Paris,,STE, +STE:SP:OCETrainTER-87571828,1,"Gare de Langeais",47.323944,0.410325,-1,0,SIN:SA:OCE87571828,Europe/Paris,,STE, +STE:SP:OCETrainTER-87571836,1,"Gare de Cinq-Mars",47.344792,0.460078,-1,0,SIN:SA:OCE87571836,Europe/Paris,,STE, +STE:SP:OCETrainTER-87571844,1,"Gare de Savonnières",47.360481,0.543798,-1,0,STE:SA:OCE87571844,Europe/Paris,,STE, +STE:SP:OCETrainTER-87571851,1,"Gare de St-Genouph",47.370982,0.596887,-1,0,STE:SA:OCE87571851,Europe/Paris,,STE, +STE:SP:OCETrainTER-87571885,1,"Gare de Joué-lès-Tours",47.354238,0.667088,-1,0,SIN:SA:OCE87571885,Europe/Paris,,STE, +STE:SP:OCETrainTER-87574004,1,"Gare de Blois-Chambord",47.585424,1.323728,-1,0,SIN:SA:OCE87574004,Europe/Paris,,STE, +STE:SP:OCETrainTER-87574111,1,"Gare de Chaingy-Fourneaux-Plage",47.877443,1.783796,-1,0,STE:SA:OCE87574111,Europe/Paris,,STE, +STE:SP:OCETrainTER-87574129,1,"Gare de St-Ay",47.863059,1.75,-1,0,STE:SA:OCE87574129,Europe/Paris,,STE, +STE:SP:OCETrainTER-87574137,1,"Gare de Meung-sur-Loire",47.829899,1.691935,-1,0,STE:SA:OCE87574137,Europe/Paris,,STE, +STE:SP:OCETrainTER-87574152,1,"Gare de Baule",47.811942,1.668615,-1,0,STE:SA:OCE87574152,Europe/Paris,,STE, +STE:SP:OCETrainTER-87574160,1,"Gare de Beaugency",47.778349,1.62594,-1,0,STE:SA:OCE87574160,Europe/Paris,,STE, +STE:SP:OCETrainTER-87574194,1,"Gare de Mer (Loir-et-Cher)",47.705882,1.506358,-1,0,STE:SA:OCE87574194,Europe/Paris,,STE, +STE:SP:OCETrainTER-87574236,1,"Gare de Suèvres",47.680561,1.45477,-1,0,STE:SA:OCE87574236,Europe/Paris,,STE, +STE:SP:OCETrainTER-87574244,1,"Gare de Ménars",47.644901,1.405769,-1,0,STE:SA:OCE87574244,Europe/Paris,,STE, +STE:SP:OCETrainTER-87574251,1,"Gare de La Chaussée-St-Victor",47.612531,1.353673,-1,0,STE:SA:OCE87574251,Europe/Paris,,STE, +STE:SP:OCETrainTER-87574301,1,"Gare de Chouzy",47.520345,1.247575,-1,0,SIN:SA:OCE87574301,Europe/Paris,,STE, +STE:SP:OCETrainTER-87574319,1,"Gare de Onzain-Chaumont-/-L",47.491942,1.185736,-1,0,STE:SA:OCE87574319,Europe/Paris,,STE, +STE:SP:OCETrainTER-87574327,1,"Gare de Veuves-Monteaux",47.475503,1.123663,-1,0,SIN:SA:OCE87574327,Europe/Paris,,STE, +STE:SP:OCETrainTER-87574335,1,"Gare de Limeray",47.450291,1.049821,-1,0,SIN:SA:OCE87574335,Europe/Paris,,STE, +STE:SP:OCETrainTER-87574343,1,"Gare de Amboise",47.421431,0.981219,-1,0,SIN:SA:OCE87574343,Europe/Paris,,STE, +STE:SP:OCETrainTER-87574368,1,"Gare de Noizay",47.409842,0.896113,-1,0,STE:SA:OCE87574368,Europe/Paris,,STE, +STE:SP:OCETrainTER-87574434,1,"Gare de Veretz-Montlouis",47.371332,0.819784,-1,0,STE:SA:OCE87574434,Europe/Paris,,STE, +STE:SP:OCETrainTER-87574442,1,"Gare de Azay-sur-Cher",47.365095,0.859978,-1,0,STE:SA:OCE87574442,Europe/Paris,,STE, +STE:SP:OCETrainTER-87574459,1,"Gare de St-Martin-le-Beau",47.354949,0.905961,-1,0,STE:SA:OCE87574459,Europe/Paris,,STE, +STE:SP:OCETrainTER-87574475,1,"Gare de Bléré-la-Croix",47.337723,0.987737,-1,0,STE:SA:OCE87574475,Europe/Paris,,STE, +STE:SP:OCETrainTER-87574491,1,"Gare de Chenonceaux",47.330651,1.065394,-1,0,STE:SA:OCE87574491,Europe/Paris,,STE, +STE:SP:OCETrainTER-87574509,1,"Gare de Cloyes",47.992169,1.243123,-1,0,SIN:SA:OCE87574509,Europe/Paris,,STE, +STE:SP:OCETrainTER-87574533,1,"Gare de Fréteval-Morée",47.892032,1.21187,-1,0,SIN:SA:OCE87574533,Europe/Paris,,STE, +STE:SP:OCETrainTER-87574541,1,"Gare de Pézou",47.86722,1.140699,-1,0,SIN:SA:OCE87574541,Europe/Paris,,STE, +STE:SP:OCETrainTER-87574558,1,"Gare de Vendôme",47.802156,1.067688,-1,0,SIN:SA:OCE87574558,Europe/Paris,,STE, +STE:SP:OCETrainTER-87574640,1,"Gare de St-Amand-de-Vendôme",47.693045,1.011823,-1,0,SIN:SA:OCE87422469,Europe/Paris,,STE, +STE:SP:OCETrainTER-87574665,1,"Gare de Château-Renault",47.588287,0.901595,-1,0,SIN:SA:OCE87574665,Europe/Paris,,STE, +STE:SP:OCETrainTER-87574681,1,"Gare de Monnaie",47.498675,0.792897,-1,0,STE:SA:OCE87574681,Europe/Paris,,STE, +STE:SP:OCETrainTER-87574699,1,"Gare de Notre-Dame-d'Oé",47.459721,0.70825,-1,0,STE:SA:OCE87574699,Europe/Paris,,STE, +STE:SP:OCETrainTER-87574848,1,"Gare de Chissay-en-Touraine",47.334934,1.133578,-1,0,STE:SA:OCE87574848,Europe/Paris,,STE, +STE:SP:OCETrainTER-87574855,1,"Gare de Montrichard",47.343576,1.17182,-1,0,STE:SA:OCE87574855,Europe/Paris,,STE, +STE:SP:OCETrainTER-87574897,1,"Gare de St-Aignan-Noyers",47.286728,1.383662,-1,0,SIN:SA:OCE87574897,Europe/Paris,,STE, +STE:SP:OCETrainTER-87575001,1,"Gare de Poitiers",46.582183,0.333084,-1,0,SIN:SA:OCE87575001,Europe/Paris,,STE, +STE:SP:OCETrainTER-87575035,1,"Gare de Monts (Indre-et-Loire)",47.281999,0.654734,-1,0,STE:SA:OCE87575035,Europe/Paris,,STE, +STE:SP:OCETrainTER-87575043,1,"Gare de Villeperdue",47.202059,0.633534,-1,0,STE:SA:OCE87575043,Europe/Paris,,STE, +STE:SP:OCETrainTER-87575050,1,"Gare de Ste-Maure-Noyant",47.111113,0.577006,-1,0,STE:SA:OCE87575050,Europe/Paris,,STE, +STE:SP:OCETrainTER-87575068,1,"Gare de Maillé",47.052959,0.583006,-1,0,STE:SA:OCE87575068,Europe/Paris,,STE, +STE:SP:OCETrainTER-87575076,1,"Gare de Port-de-Piles",47.010147,0.598559,-1,0,STE:SA:OCE87575076,Europe/Paris,,STE, +STE:SP:OCETrainTER-87575118,1,"Gare de Les Ormes-sur-Vienne",46.97078,0.608165,-1,0,STE:SA:OCE87575118,Europe/Paris,,STE, +STE:SP:OCETrainTER-87575126,1,"Gare de Dangé",46.93781,0.608778,-1,0,STE:SA:OCE87575126,Europe/Paris,,STE, +STE:SP:OCETrainTER-87575134,1,"Gare de Ingrandes-sur-Vienne",46.874825,0.569515,-1,0,STE:SA:OCE87575134,Europe/Paris,,STE, +STE:SP:OCETrainTER-87575142,1,"Gare de Chatellerault",46.818565,0.549218,-1,0,STE:SA:OCE87575142,Europe/Paris,,STE, +STE:SP:OCETrainTER-87575167,1,"Gare de Nerpuy",46.783509,0.525449,-1,0,STE:SA:OCE87575167,Europe/Paris,,STE, +STE:SP:OCETrainTER-87575175,1,"Gare de Naintré-les-Barres",46.759517,0.496071,-1,0,STE:SA:OCE87575175,Europe/Paris,,STE, +STE:SP:OCETrainTER-87575183,1,"Gare de La Tricherie",46.728667,0.440467,-1,0,STE:SA:OCE87575183,Europe/Paris,,STE, +STE:SP:OCETrainTER-87575191,1,"Gare de Dissay (Vienne)",46.703732,0.421131,-1,0,STE:SA:OCE87575191,Europe/Paris,,STE, +STE:SP:OCETrainTER-87575217,1,"Gare de Jaunay-Clan",46.682305,0.38189,-1,0,STE:SA:OCE87575217,Europe/Paris,,STE, +STE:SP:OCETrainTER-87575225,1,"Gare de Chasseneuil (Vienne)",46.651794,0.372811,-1,0,STE:SA:OCE87575225,Europe/Paris,,STE, +STE:SP:OCETrainTER-87576009,1,"Gare de Vierzon",47.226516,2.059824,-1,0,SIN:SA:OCE87576009,Europe/Paris,,STE, +STE:SP:OCETrainTER-87576025,1,"Gare de Romorantin-Blanc-Argent",47.355567,1.739246,-1,0,SIN:SA:OCE87576025,Europe/Paris,,STE, +STE:SP:OCETrainTER-87576082,1,"Gare de La Ferté-Imbault",47.383746,1.958033,-1,0,SIN:SA:OCE87576082,Europe/Paris,,STE, +STE:SP:OCETrainTER-87576090,1,"Gare de Vierzon-Forges",47.210349,2.099327,-1,0,STE:SA:OCE87576090,Europe/Paris,,STE, +STE:SP:OCETrainTER-87576108,1,"Gare de Foëcy",47.17599,2.162264,-1,0,STE:SA:OCE87576108,Europe/Paris,,STE, +STE:SP:OCETrainTER-87576116,1,"Gare de Mehun-sur-Yèvre",47.139572,2.207314,-1,0,STE:SA:OCE87576116,Europe/Paris,,STE, +STE:SP:OCETrainTER-87576132,1,"Gare de Marmagne",47.100077,2.282647,-1,0,STE:SA:OCE87576132,Europe/Paris,,STE, +STE:SP:OCETrainTER-87576140,1,"Gare de Selles-St-Denis",47.388346,1.92233,-1,0,SIN:SA:OCE87576140,Europe/Paris,,STE, +STE:SP:OCETrainTER-87576157,1,"Gare de Loreux",47.390409,1.8344,-1,0,SIN:SA:OCE87576157,Europe/Paris,,STE, +STE:SP:OCETrainTER-87576165,1,"Gare de Villeherviers",47.369236,1.796982,-1,0,SIN:SA:OCE87576165,Europe/Paris,,STE, +STE:SP:OCETrainTER-87576173,1,"Gare de Faubourg-d'Orléans",47.366995,1.740137,-1,0,SIN:SA:OCE87576173,Europe/Paris,,STE, +STE:SP:OCETrainTER-87576181,1,"Gare de Les Quatre-Roues",47.332539,1.702295,-1,0,SIN:SA:OCE87576181,Europe/Paris,,STE, +STE:SP:OCETrainTER-87576199,1,"Gare de Pruniers",47.313207,1.671891,-1,0,SIN:SA:OCE87576199,Europe/Paris,,STE, +STE:SP:OCETrainTER-87576207,1,"Gare de Bourges",47.094094,2.394226,-1,0,SIN:SA:OCE87576207,Europe/Paris,,STE, +STE:SP:OCETrainTER-87576215,1,"Gare de Valençay",47.163058,1.558696,-1,0,SIN:SA:OCE87576215,Europe/Paris,,STE, +STE:SP:OCETrainTER-87576223,1,"Gare de Chabris",47.255124,1.646253,-1,0,SIN:SA:OCE87576223,Europe/Paris,,STE, +STE:SP:OCETrainTER-87576231,1,"Gare de Varennes-sur-Fouzon",47.214383,1.614208,-1,0,SIN:SA:OCE87576231,Europe/Paris,,STE, +STE:SP:OCETrainTER-87576272,1,"Gare de St-Florent-sur-Cher",46.992115,2.252149,-1,0,SIN:SA:OCE87576272,Europe/Paris,,STE, +STE:SP:OCETrainTER-87576280,1,"Gare de Lunery",46.93513,2.275066,-1,0,SIN:SA:OCE87576280,Europe/Paris,,STE, +STE:SP:OCETrainTER-87576298,1,"Gare de Châteauneuf-sur-Cher",46.856686,2.310212,-1,0,SIN:SA:OCE87576298,Europe/Paris,,STE, +STE:SP:OCETrainTER-87576306,1,"Gare de Bigny",46.801897,2.368226,-1,0,SIN:SA:OCE87576306,Europe/Paris,,STE, +STE:SP:OCETrainTER-87576322,1,"Gare de St-Amand-Montrond-Orval",46.726521,2.486062,-1,0,SIN:SA:OCE87576322,Europe/Paris,,STE, +STE:SP:OCETrainTER-87576348,1,"Gare de Urçay",46.629334,2.58668,-1,0,STE:SA:OCE87576348,Europe/Paris,,STE, +STE:SP:OCETrainTER-87576405,1,"Gare de St-Germain-du-Puy",47.09629,2.484255,-1,0,SIN:SA:OCE87576405,Europe/Paris,,STE, +STE:SP:OCETrainTER-87576439,1,"Gare de Avord",47.034779,2.652604,-1,0,SIN:SA:OCE87576439,Europe/Paris,,STE, +STE:SP:OCETrainTER-87576447,1,"Gare de Bengy",47.000396,2.749106,-1,0,SIN:SA:OCE87576447,Europe/Paris,,STE, +STE:SP:OCETrainTER-87576454,1,"Gare de Nérondes",46.999796,2.821991,-1,0,SIN:SA:OCE87576454,Europe/Paris,,STE, +STE:SP:OCETrainTER-87576470,1,"Gare de La Guerche-sur-l'Aubois",46.94785,2.948455,-1,0,SIN:SA:OCE87576470,Europe/Paris,,STE, +STE:SP:OCETrainTER-87576728,1,"Gare de Mennetou-sur-Cher",47.268848,1.876472,-1,0,SIN:SA:OCE87576728,Europe/Paris,,STE, +STE:SP:OCETrainTER-87576868,1,"Gare de Selles-sur-Cher",47.281595,1.546144,-1,0,SIN:SA:OCE87576868,Europe/Paris,,STE, +STE:SP:OCETrainTER-87576876,1,"Gare de Gièvres",47.27873,1.667812,-1,0,SIN:SA:OCE87576876,Europe/Paris,,STE, +STE:SP:OCETrainTER-87576884,1,"Gare de Villefranche-sur-Cher",47.29474,1.768037,-1,0,SIN:SA:OCE87576884,Europe/Paris,,STE, +STE:SP:OCETrainTER-87592006,1,"Gare de Limoges-Bénédictins",45.836208,1.267452,-1,0,SIN:SA:OCE87592006,Europe/Paris,,STE, +STE:SP:OCETrainTER-87592048,1,"Gare de Les Bardys",45.904628,1.377447,-1,0,STE:SA:OCE87592048,Europe/Paris,,STE, +STE:SP:OCETrainTER-87592311,1,"Gare de Ambazac",45.952901,1.406502,-1,0,STE:SA:OCE87592311,Europe/Paris,,STE, +STE:SP:OCETrainTER-87592337,1,"Gare de La Jonchère",45.994286,1.479859,-1,0,STE:SA:OCE87592337,Europe/Paris,,STE, +STE:SP:OCETrainTER-87592345,1,"Gare de St-Sulpice-Laurière",46.046867,1.476283,-1,0,STE:SA:OCE87592345,Europe/Paris,,STE, +STE:SP:OCETrainTER-87592352,1,"Gare de Bersac",46.083843,1.432048,-1,0,STE:SA:OCE87592352,Europe/Paris,,STE, +STE:SP:OCETrainTER-87592360,1,"Gare de Fromental",46.171357,1.432475,-1,0,STE:SA:OCE87592360,Europe/Paris,,STE, +STE:SP:OCETrainTER-87592378,1,"Gare de La Souterraine",46.23975,1.492234,-1,0,SIN:SA:OCE87592378,Europe/Paris,,STE, +STE:SP:OCETrainTER-87592493,1,"Gare de St-Sébastien",46.386035,1.54652,-1,0,STE:SA:OCE87592493,Europe/Paris,,STE, +STE:SP:OCETrainTER-87597005,1,"Gare de Châteauroux",46.809823,1.699457,-1,0,SIN:SA:OCE87597005,Europe/Paris,,STE, +STE:SP:OCETrainTER-87597039,1,"Gare de Reuilly (Indre)",47.086015,2.047182,-1,0,SIN:SA:OCE87597039,Europe/Paris,,STE, +STE:SP:OCETrainTER-87597054,1,"Gare de Ste-Lizaigne",47.00264,2.030076,-1,0,SIN:SA:OCE87597054,Europe/Paris,,STE, +STE:SP:OCETrainTER-87597062,1,"Gare de Issoudun",46.947849,1.984921,-1,0,SIN:SA:OCE87597062,Europe/Paris,,STE, +STE:SP:OCETrainTER-87597070,1,"Gare de Neuvy-Pailloux",46.882688,1.862808,-1,0,SIN:SA:OCE87597070,Europe/Paris,,STE, +STE:SP:OCETrainTER-87597096,1,"Gare de Luant",46.73505,1.589621,-1,0,STE:SA:OCE87597096,Europe/Paris,,STE, +STE:SP:OCETrainTER-87597104,1,"Gare de Lothiers",46.694718,1.562837,-1,0,STE:SA:OCE87597104,Europe/Paris,,STE, +STE:SP:OCETrainTER-87597112,1,"Gare de Chabenet",46.626439,1.507853,-1,0,STE:SA:OCE87597112,Europe/Paris,,STE, +STE:SP:OCETrainTER-87597120,1,"Gare de Argenton-sur-Creuse",46.592225,1.51823,-1,0,SIN:SA:OCE87597120,Europe/Paris,,STE, +STE:SP:OCETrainTER-87597153,1,"Gare de Eguzon",46.440492,1.552365,-1,0,SIN:SA:OCE87597153,Europe/Paris,,STE, +STE:SP:OCETrainTER-87641001,1,"Gare de Montluçon-Ville",46.337875,2.596412,-1,0,SIN:SA:OCE87641001,Europe/Paris,,STE, +STE:SP:OCETrainTER-87641191,1,"Gare de La Ville-Gozet",46.350058,2.591728,-1,0,STE:SA:OCE87641191,Europe/Paris,,STE, +STE:SP:OCETrainTER-87641357,1,"Gare de Vallon-en-Sully",46.536485,2.610803,-1,0,SIN:SA:OCE87641357,Europe/Paris,,STE, +STE:SP:OCETrainTER-87641365,1,"Gare de Magnette",46.46415,2.603004,-1,0,SIN:SA:OCE87641365,Europe/Paris,,STE, +STE:SP:OCETrainTER-87641373,1,"Gare de Les Trillers",46.414413,2.599717,-1,0,STE:SA:OCE87641373,Europe/Paris,,STE, +STE:SP:OCETrainTER-87641415,1,"Gare de Commentry",46.295196,2.740011,-1,0,STE:SA:OCE87641415,Europe/Paris,,STE, +STE:SP:OCETrainTER-87694000,1,"Gare de Le Creusot",46.807829,4.430429,-1,0,STE:SA:OCE87694000,Europe/Paris,,STE, +STE:SP:OCETrainTER-87694141,1,"Gare de Etang",46.867893,4.183846,-1,0,STE:SA:OCE87694141,Europe/Paris,,STE, +STE:SP:OCETrainTER-87694307,1,"Gare de Montchanin",46.759158,4.481462,-1,0,STE:SA:OCE87694307,Europe/Paris,,STE, +STE:SP:OCETrainTER-87694687,1,"Gare de Paray-le-Monial",46.447256,4.113628,-1,0,STE:SA:OCE87694687,Europe/Paris,,STE, +STE:SP:OCETrainTER-87694695,1,"Gare de Digoin",46.485196,3.987637,-1,0,STE:SA:OCE87694695,Europe/Paris,,STE, +STE:SP:OCETrainTER-87694737,1,"Gare de La Clayette-Baudemont",46.288162,4.298451,-1,0,STE:SA:OCE87694737,Europe/Paris,,STE, +STE:SP:OCETrainTER-87694778,1,"Gare de Chauffailles",46.207404,4.345377,-1,0,STE:SA:OCE87694778,Europe/Paris,,STE, +STE:SP:OCETrainTER-87694869,1,"Gare de Gilly-sur-Loire",46.536983,3.781787,-1,0,STE:SA:OCE87694869,Europe/Paris,,STE, +STE:SP:OCETrainTER-87696005,1,"Gare de Nevers",46.987349,3.15087,-1,0,SIN:SA:OCE87696005,Europe/Paris,,STE, +STE:SP:OCETrainTER-87696328,1,"Gare de Moulins-sur-Allier",46.561364,3.338755,-1,0,SIN:SA:OCE87696328,Europe/Paris,,STE, +STE:SP:OCETrainTER-87696427,1,"Gare de Dompierre-Sept-Fons",46.526267,3.674899,-1,0,STE:SA:OCE87696427,Europe/Paris,,STE, +STE:SP:OCETrainTER-87696450,1,"Gare de Imphy",46.9334,3.259751,-1,0,STE:SA:OCE87696450,Europe/Paris,,STE, +STE:SP:OCETrainTER-87696484,1,"Gare de Decize",46.837332,3.467296,-1,0,STE:SA:OCE87696484,Europe/Paris,,STE, +STE:SP:OCETrainTER-87696492,1,"Gare de Cercy-la-Tour",46.857926,3.645024,-1,0,STE:SA:OCE87696492,Europe/Paris,,STE, +STE:SP:OCETrainTER-87696534,1,"Gare de Luzy(Nièvre)",46.794044,3.969226,-1,0,STE:SA:OCE87696534,Europe/Paris,,STE, +STE:SP:OCETrainTER-87713040,1,"Gare de Dijon-Ville",47.323404,5.02728,-1,0,STE:SA:OCE87713040,Europe/Paris,,STE, +STE:SP:OCETrainTER-87713545,1,"Gare de Beaune",47.023041,4.848723,-1,0,STE:SA:OCE87713545,Europe/Paris,,STE, +STE:SP:OCETrainTER-87721423,1,"Gare de Lozanne",45.854135,4.68146,-1,0,STT:SA:OCE87721423,Europe/Paris,,STE, +STE:SP:OCETrainTER-87721787,1,"Gare de Bois-d'Oingt-Légny",45.906588,4.57558,-1,0,STE:SA:OCE87721787,Europe/Paris,,STE, +STE:SP:OCETrainTER-87721860,1,"Gare de Lamure-sur-Azergues",46.061095,4.492123,-1,0,STE:SA:OCE87721860,Europe/Paris,,STE, +STE:SP:OCETrainTER-87722025,1,"Gare de Lyon-Perrache",45.748492,4.825748,-1,0,SIN:SA:OCE87722025,Europe/Paris,,STE, +STE:SP:OCETrainTER-87723197,1,"Gare de Lyon-Part-Dieu",45.760585,4.859435,-1,0,SIN:SA:OCE87723197,Europe/Paris,,STE, +STT:SP:OCECarTER-87208553,1,"Gare de Casino-Lacroix-Laval",45.787828,4.730892,-1,0,STT:SA:OCE87208553,Europe/Paris,,STT, +STT:SP:OCECarTER-87334508,1,"Gare de La Poterie",48.092062,-1.630786,-1,0,SIN:SA:OCE87334508,Europe/Paris,,STT, +STT:SP:OCECarTER-87471003,1,"Gare de Rennes",48.103515,-1.672327,-1,0,STE:SA:OCE87471003,Europe/Paris,,STT, +STT:SP:OCECarTER-87471029,1,"Gare de Vern",48.04683,-1.59656,-1,0,SIN:SA:OCE87471029,Europe/Paris,,STT, +STT:SP:OCECarTER-87471318,1,"Gare de St-Armel",48.014277,-1.594801,-1,0,STT:SA:OCE87471318,Europe/Paris,,STT, +STT:SP:OCECarTER-87471326,1,"Gare de Corps-Nuds",47.985608,-1.575469,-1,0,STE:SA:OCE87471326,Europe/Paris,,STT, +STT:SP:OCECarTER-87471334,1,"Gare de Janzé",47.955123,-1.49741,-1,0,SIN:SA:OCE87471334,Europe/Paris,,STT, +STT:SP:OCECarTER-87471342,1,"Gare de Le Theil-de-Bretagne",47.918713,-1.432376,-1,0,SIN:SA:OCE87471342,Europe/Paris,,STT, +STT:SP:OCECarTER-87471359,1,"Gare de Retiers",47.913212,-1.389718,-1,0,SIN:SA:OCE87471359,Europe/Paris,,STT, +STT:SP:OCECarTER-87471367,1,"Gare de Martigné-Ferchaud",47.831974,-1.313728,-1,0,SIN:SA:OCE87471367,Europe/Paris,,STT, +STT:SP:OCECarTER-87481648,1,"Gare de Châteaubriant",47.716996,-1.371397,-1,0,STT:SA:OCE87481648,Europe/Paris,,STT, +STT:SP:OCECarTER-87566919,1,"Gare de Lentilly-Charpenay",45.816462,4.681294,-1,0,STT:SA:OCE87566919,Europe/Paris,,STT, +STT:SP:OCECarTER-87697128,1,"Gare de Lyon-Part-Dieu-Gare-Rou",45.760585,4.859435,-1,0,SIN:SA:OCE87723197,Europe/Paris,,STT, +STT:SP:OCECarTER-87698316,1,"Tour-de-Salvagny-Hyppo",45.806348,4.719653,-1,0,SIN:SA:OCE87402016,Europe/Paris,,STT, +STT:SP:OCECarTER-87698332,1,"Lyon-St-Paul-Quai-Bondy",45.766488,4.828105,-1,0,STT:SA:OCE87698332,Europe/Paris,,STT, +STT:SP:OCECarTER-87698340,1,"Lyon-St-Paul-la-Feuilée",45.766342,4.829385,-1,0,SIN:SA:OCE87402016,Europe/Paris,,STT, +STT:SP:OCECarTER-87698639,1,"Roanne-Gare-Routière",46.041211,4.060763,-1,0,STT:SA:OCE87698639,Europe/Paris,,STT, +STT:SP:OCECarTER-87698738,1,"Tassin-le-Baraillon",45.764497,4.75862,-1,0,SIN:SA:OCE87644104,Europe/Paris,,STT, +STT:SP:OCECarTER-87721035,1,"Gare de Amplepuis",45.971001,4.326723,-1,0,STT:SA:OCE87721035,Europe/Paris,,STT, +STT:SP:OCECarTER-87721043,1,"Gare de St-Victor-Thizy",46.002585,4.281147,-1,0,STT:SA:OCE87721043,Europe/Paris,,STT, +STT:SP:OCECarTER-87721050,1,"Gare de Régny",45.987729,4.215111,-1,0,STT:SA:OCE87721050,Europe/Paris,,STT, +STT:SP:OCECarTER-87721175,1,"Gare de Lyon-Gorge-de-Loup",45.766077,4.804731,-1,0,STT:SA:OCE87721175,Europe/Paris,,STT, +STT:SP:OCECarTER-87721431,1,"Gare de L'Arbresle",45.833249,4.618236,-1,0,STT:SA:OCE87721431,Europe/Paris,,STT, +STT:SP:OCECarTER-87721456,1,"Gare de St-Romain-de-Popey",45.861532,4.542259,-1,0,STT:SA:OCE87721456,Europe/Paris,,STT, +STT:SP:OCECarTER-87721464,1,"Gare de Pontcharra-St-Forgeux",45.871509,4.492797,-1,0,STT:SA:OCE87721464,Europe/Paris,,STT, +STT:SP:OCECarTER-87721472,1,"Gare de Tarare",45.889788,4.439075,-1,0,STT:SA:OCE87721472,Europe/Paris,,STT, +STT:SP:OCECarTER-87721506,1,"Gare de Ecully-la-Demi-Lune",45.76571,4.77952,-1,0,STT:SA:OCE87721506,Europe/Paris,,STT, +STT:SP:OCECarTER-87721514,1,"Gare de Tassin",45.761528,4.758592,-1,0,STT:SA:OCE87721514,Europe/Paris,,STT, +STT:SP:OCECarTER-87721522,1,"Gare de Le Méridien",45.768833,4.748303,-1,0,STT:SA:OCE87721522,Europe/Paris,,STT, +STT:SP:OCECarTER-87721530,1,"Gare de Charbonnières-les-Bains",45.78216,4.735855,-1,0,STT:SA:OCE87721530,Europe/Paris,,STT, +STT:SP:OCECarTER-87721548,1,"Gare de La Tour-de-Salvagny",45.800077,4.716151,-1,0,STT:SA:OCE87721548,Europe/Paris,,STT, +STT:SP:OCECarTER-87721555,1,"Gare de Lentilly",45.821682,4.667021,-1,0,STT:SA:OCE87721555,Europe/Paris,,STT, +STT:SP:OCECarTER-87721563,1,"Gare de Fleurieux-sur-Arbresle",45.844749,4.660569,-1,0,STT:SA:OCE87721563,Europe/Paris,,STT, +STT:SP:OCECarTER-87721605,1,"Gare de Sain-Bel",45.811064,4.601252,-1,0,STT:SA:OCE87721605,Europe/Paris,,STT, +STT:SP:OCECarTER-87726828,1,"Gare de Le Coteau",46.023935,4.086301,-1,0,STT:SA:OCE87726828,Europe/Paris,,STT, +STT:SP:OCETramtrain-87208553,1,"Gare de Casino-Lacroix-Laval",45.787828,4.730892,-1,0,STT:SA:OCE87208553,Europe/Paris,,STT, +STT:SP:OCETramtrain-87481002,1,"Gare de Nantes",47.217505,-1.541925,-1,0,STT:SA:OCE87481002,Europe/Paris,,STT, +STT:SP:OCETramtrain-87481564,1,"Gare de La-Chapelle-Centre",47.297758,-1.547924,-1,0,STT:SA:OCE87481564,Europe/Paris,,STT, +STT:SP:OCETramtrain-87481598,1,"Gare de Nort-sur-Erdre",47.441978,-1.503271,-1,0,STT:SA:OCE87481598,Europe/Paris,,STT, +STT:SP:OCETramtrain-87481614,1,"Gare de Abbaretz",47.55523,-1.524196,-1,0,STT:SA:OCE87481614,Europe/Paris,,STT, +STT:SP:OCETramtrain-87481622,1,"Gare de Issé",47.627038,-1.450334,-1,0,STT:SA:OCE87481622,Europe/Paris,,STT, +STT:SP:OCETramtrain-87566919,1,"Gare de Lentilly-Charpenay",45.816462,4.681294,-1,0,STT:SA:OCE87566919,Europe/Paris,,STT, +STT:SP:OCETramtrain-87590331,1,"Gare de Haluchère-Batignolles",47.249112,-1.522499,-1,0,STT:SA:OCE87590331,Europe/Paris,,STT, +STT:SP:OCETramtrain-87590349,1,"Gare de Babinière",47.259109,-1.545327,-1,0,STT:SA:OCE87590349,Europe/Paris,,STT, +STT:SP:OCETramtrain-87590356,1,"Gare de Erdre-Active",47.283069,-1.544686,-1,0,STT:SA:OCE87590356,Europe/Paris,,STT, +STT:SP:OCETramtrain-87590364,1,"Gare de La-Chapelle-Aulnay",47.308441,-1.541167,-1,0,STT:SA:OCE87590364,Europe/Paris,,STT, +STT:SP:OCETramtrain-87590372,1,"Gare de Châteaubriant-TT",47.717091,-1.37155,-1,0,STT:SA:OCE87590372,Europe/Paris,,STT, +STT:SP:OCETramtrain-87590828,1,"Gare de Sucé-Sur-Erdre",47.342958,-1.530279,-1,0,STT:SA:OCE87590828,Europe/Paris,,STT, +STT:SP:OCETramtrain-87721159,1,"Gare de Lyon-St-Paul",45.766082,4.826904,-1,0,STT:SA:OCE87721159,Europe/Paris,,STT, +STT:SP:OCETramtrain-87721175,1,"Gare de Lyon-Gorge-de-Loup",45.766077,4.804731,-1,0,STT:SA:OCE87721175,Europe/Paris,,STT, +STT:SP:OCETramtrain-87721423,1,"Gare de Lozanne",45.854135,4.68146,-1,0,STT:SA:OCE87721423,Europe/Paris,,STT, +STT:SP:OCETramtrain-87721431,1,"Gare de L'Arbresle",45.833249,4.618236,-1,0,STT:SA:OCE87721431,Europe/Paris,,STT, +STT:SP:OCETramtrain-87721449,1,"Gare de Dardilly-Le-Jubin",45.813655,4.758482,-1,0,STT:SA:OCE87721449,Europe/Paris,,STT, +STT:SP:OCETramtrain-87721480,1,"Gare de Dardilly-Les-Mouilles",45.801183,4.756221,-1,0,STT:SA:OCE87721480,Europe/Paris,,STT, +STT:SP:OCETramtrain-87721506,1,"Gare de Ecully-la-Demi-Lune",45.76571,4.77952,-1,0,STT:SA:OCE87721506,Europe/Paris,,STT, +STT:SP:OCETramtrain-87721514,1,"Gare de Tassin",45.761528,4.758592,-1,0,STT:SA:OCE87721514,Europe/Paris,,STT, +STT:SP:OCETramtrain-87721522,1,"Gare de Le Méridien",45.768833,4.748303,-1,0,STT:SA:OCE87721522,Europe/Paris,,STT, +STT:SP:OCETramtrain-87721530,1,"Gare de Charbonnières-les-Bains",45.78216,4.735855,-1,0,STT:SA:OCE87721530,Europe/Paris,,STT, +STT:SP:OCETramtrain-87721548,1,"Gare de La Tour-de-Salvagny",45.800077,4.716151,-1,0,STT:SA:OCE87721548,Europe/Paris,,STT, +STT:SP:OCETramtrain-87721555,1,"Gare de Lentilly",45.821682,4.667021,-1,0,STT:SA:OCE87721555,Europe/Paris,,STT, +STT:SP:OCETramtrain-87721563,1,"Gare de Fleurieux-sur-Arbresle",45.844749,4.660569,-1,0,STT:SA:OCE87721563,Europe/Paris,,STT, +STT:SP:OCETramtrain-87721605,1,"Gare de Sain-Bel",45.811064,4.601252,-1,0,STT:SA:OCE87721605,Europe/Paris,,STT, +STT:SP:OCETramtrain-87721704,1,"Gare de Les Flachères",45.777326,4.753923,-1,0,STT:SA:OCE87721704,Europe/Paris,,STT, +STT:SP:OCETramtrain-87721738,1,"Gare de Dommartin-Lissieu",45.847855,4.732195,-1,0,STT:SA:OCE87721738,Europe/Paris,,STT, +STT:SP:OCETramtrain-87721746,1,"Gare de Civrieux-d'Azergues",45.859195,4.718249,-1,0,STT:SA:OCE87721746,Europe/Paris,,STT, +TRN:SP:DUA8716478,1,"STADE DE FRANCE SAINT-DENIS",48.917567,2.35039,-1,0,TRN:SA:DUA8716478,Europe/Paris,,TRN, +TRN:SP:DUA8727101,1,"SAINT-DENIS",48.934456,2.345604,-1,0,TRN:SA:DUA8727101,Europe/Paris,,TRN, +TRN:SP:DUA8727102,1,"PARIS NORD",48.880769,2.357115,-1,0,TRN:SA:DUA8727103,Europe/Paris,,TRN, +TRN:SP:DUA8727116,1,"PIERREFITTE STAINS",48.963755,2.372103,-1,0,TRN:SA:DUA8727116,Europe/Paris,,TRN, +TRN:SP:DUA8727613,1,"PONTOISE",49.046646,2.095195,-1,0,TRN:SA:DUA8727613,Europe/Paris,,TRN, +TRN:SP:DUA8727619,1,"GARGES SARCELLES",48.976748,2.390594,-1,0,TRN:SA:DUA8727619,Europe/Paris,,TRN, +TRN:SP:DUA8727622,1,"VILLIERS LE BEL GONESSE ARNOUVILLE",48.993777,2.416187,-1,0,TRN:SA:DUA8727622,Europe/Paris,,TRN, +TRN:SP:DUA8727624,1,"GOUSSAINVILLE",49.023162,2.462169,-1,0,TRN:SA:DUA8727624,Europe/Paris,,TRN, +TRN:SP:DUA8738107,1,"BOIS COLOMBES",48.914246,2.271599,-1,0,TRN:SA:DUA8738107,Europe/Paris,,TRN, +TRN:SP:DUA8738108,1,"COLOMBES",48.923919,2.259346,-1,0,TRN:SA:DUA8738108,Europe/Paris,,TRN, +TRN:SP:DUA8738109,1,"LE STADE",48.931054,2.260602,-1,0,TRN:SA:DUA8738109,Europe/Paris,,TRN, +TRN:SP:DUA8738113,1,"ASNIERES",48.905664,2.283573,-1,0,TRN:SA:DUA8738113,Europe/Paris,,TRN, +TRN:SP:DUA8738114,1,"OSNY",49.06297,2.057903,-1,0,TRN:SA:DUA8738114,Europe/Paris,,TRN, +TRN:SP:DUA8738115,1,"BOISSY L'AILLERIE",49.075843,2.024953,-1,0,TRN:SA:DUA8738115,Europe/Paris,,TRN, +TRN:SP:DUA8738116,1,"MONTGEROULT COURCELLES",49.080494,2.003715,-1,0,TRN:SA:DUA8738116,Europe/Paris,,TRN, +TRN:SP:DUA8738117,1,"US",49.09965,1.970536,-1,0,TRN:SA:DUA8738117,Europe/Paris,,TRN, +TRN:SP:DUA8738118,1,"SANTEUIL LE PERCHAY",49.123452,1.949333,-1,0,TRN:SA:DUA8738118,Europe/Paris,,TRN, +TRN:SP:DUA8738119,1,"CHARS",49.162671,1.936929,-1,0,TRN:SA:DUA8738119,Europe/Paris,,TRN, +TRN:SP:DUA8738120,1,"LA VILLETERTRE",49.202694,1.920548,-1,0,TRN:SA:DUA8738120,Europe/Paris,,TRN, +TRN:SP:DUA8738121,1,"LIANCOURT SAINT-PIERRE",49.220807,1.905299,-1,0,TRN:SA:DUA8738121,Europe/Paris,,TRN, +TRN:SP:DUA8738122,1,"CHAUMONT EN VEXIN",49.261322,1.872589,-1,0,TRN:SA:DUA8738122,Europe/Paris,,TRN, +TRN:SP:DUA8738123,1,"TRIE CHATEAU",49.28259,1.818082,-1,0,TRN:SA:DUA8738123,Europe/Paris,,TRN, +TRN:SP:DUA8738124,1,"GISORS",49.285264,1.785066,-1,0,TRN:SA:DUA8738124,Europe/Paris,,TRN, +TRN:SP:DUA8738141,1,"ERAGNY NEUVILLE",49.018349,2.090906,-1,0,TRN:SA:DUA8738141,Europe/Paris,,TRN, +TRN:SP:DUA8738142,1,"GARE DE ST OUEN L AUMONE QUARTIER DE L EGLISE",49.039981,2.103853,-1,0,TRN:SA:DUA8738142,Europe/Paris,,TRN, +TRN:SP:DUA8738150,1,"MANTES LA JOLIE",48.989503,1.703016,-1,0,SIN:SA:OCE87381509,Europe/Paris,,TRN, +TRN:SP:DUA8738179,1,"VAL D'ARGENTEUIL",48.950304,2.23111,-1,0,TRN:SA:DUA8738179,Europe/Paris,,TRN, +TRN:SP:DUA8738184,1,"ARGENTEUIL",48.946797,2.257897,-1,0,TRN:SA:DUA8738184,Europe/Paris,,TRN, +TRN:SP:DUA8738186,1,"CORMEILLES EN PARISIS",48.968496,2.193443,-1,0,TRN:SA:DUA8738186,Europe/Paris,,TRN, +TRN:SP:DUA8738187,1,"LA FRETTE MONTIGNY",48.980264,2.180012,-1,0,TRN:SA:DUA8738187,Europe/Paris,,TRN, +TRN:SP:DUA8738188,1,"HERBLAY",48.99029,2.161907,-1,0,TRN:SA:DUA8738188,Europe/Paris,,TRN, +TRN:SP:DUA8738189,1,"CONFLANS SAINTE-HONORINE",48.99663,2.097774,-1,0,TRN:SA:DUA8738189,Europe/Paris,,TRN, +TRN:SP:DUA8738400,1,"PARIS SAINT-LAZARE",48.875442,2.324806,-1,0,TRN:SA:DUA8738400,Europe/Paris,,TRN, +TRN:SP:DUA8739100,1,"GARE MONTPARNASSE",48.841187,2.320509,-1,0,TRN:SA:DUA8739100,Europe/Paris,,TRN, +TRN:SP:DUA8739153,1,"VANVES MALAKOFF",48.818388,2.292062,-1,0,TRN:SA:DUA8739153,Europe/Paris,,TRN, +TRN:SP:DUA8739156,1,"CLAMART",48.814239,2.27449,-1,0,TRN:SA:DUA8739156,Europe/Paris,,TRN, +TRN:SP:DUA8739300,1,"VERSAILLES CHANTIERS",48.79528,2.13605,-1,0,TRN:SA:DUA8739300,Europe/Paris,,TRN, +TRN:SP:DUA8739310,1,"MEUDON",48.814884,2.240919,-1,0,TRN:SA:DUA8739310,Europe/Paris,,TRN, +TRN:SP:DUA8739311,1,"BELLEVUE",48.818948,2.229808,-1,0,TRN:SA:DUA8739311,Europe/Paris,,TRN, +TRN:SP:DUA8739312,1,"SEVRES RIVE GAUCHE",48.821217,2.21486,-1,0,TRN:SA:DUA8739312,Europe/Paris,,TRN, +TRN:SP:DUA8739320,1,"CHAVILLE RIVE GAUCHE",48.804683,2.18863,-1,0,TRN:SA:DUA8739320,Europe/Paris,,TRN, +TRN:SP:DUA8739321,1,"VIROFLAY RIVE GAUCHE",48.800718,2.17139,-1,0,TRN:SA:DUA8739321,Europe/Paris,,TRN, +TRN:SP:DUA8739322,1,"SAINT-CYR",48.798708,2.071847,-1,0,TRN:SA:DUA8739322,Europe/Paris,,TRN, +TRN:SP:DUA8739340,1,"FONTENAY LE FLEURY",48.807247,2.040519,-1,0,TRN:SA:DUA8739340,Europe/Paris,,TRN, +TRN:SP:DUA8739341,1,"VILLEPREUX LES CLAYES",48.823653,1.992865,-1,0,TRN:SA:DUA8739341,Europe/Paris,,TRN, +TRN:SP:DUA8739342,1,"PLAISIR GRIGNON",48.831916,1.944402,-1,0,TRN:SA:DUA8739342,Europe/Paris,,TRN, +TRN:SP:DUA8739343,1,"GARANCIERES LA QUEUE",48.810402,1.765057,-1,0,TRN:SA:DUA8739343,Europe/Paris,,TRN, +TRN:SP:DUA8739344,1,"ORGERUS BEHOUST",48.826578,1.703218,-1,0,TRN:SA:DUA8739344,Europe/Paris,,TRN, +TRN:SP:DUA8739345,1,"TACOIGNIERES RICHEBOURG",48.829429,1.66901,-1,0,TRN:SA:DUA8739345,Europe/Paris,,TRN, +TRN:SP:DUA8739346,1,"HOUDAN",48.796025,1.602702,-1,0,TRN:SA:DUA8739346,Europe/Paris,,TRN, +TRN:SP:DUA8739347,1,"MARCHEZAIS BROUE",48.768422,1.513333,-1,0,TRN:SA:DUA8739347,Europe/Paris,,TRN, +TRN:SP:DUA8739348,1,"DREUX",48.730955,1.369974,-1,0,SIN:SA:OCE87393488,Europe/Paris,,TRN, +TRN:SP:DUA8739362,1,"PLAISIR LES CLAYES",48.83096,1.960027,-1,0,TRN:SA:DUA8739362,Europe/Paris,,TRN, +TRN:SP:DUA8739388,1,"VILLIERS NEAUPHLE PONTCHARTRAIN",48.815329,1.877504,-1,0,TRN:SA:DUA8739388,Europe/Paris,,TRN, +TRN:SP:DUA8739389,1,"MONTFORT L'AMAURY MERE",48.802602,1.816467,-1,0,TRN:SA:DUA8739389,Europe/Paris,,TRN, +TRN:SP:DUA8741560,1,"VERNON",49.09101,1.478704,-1,0,TRN:SA:DUA8741560,Europe/Paris,,TRN, +TRN:SP:DUA8741588,1,"ROSNY SUR SEINE",48.997392,1.630168,-1,0,TRN:SA:DUA8741588,Europe/Paris,,TRN, +TRN:SP:DUA8741589,1,"BONNIERES",49.038762,1.581532,-1,0,TRN:SA:DUA8741589,Europe/Paris,,TRN, +TRN:SP:DUA8754524,1,"JUVISY",48.689457,2.383139,-1,0,TRN:SA:DUA8754524,Europe/Paris,,TRN, +TRN:SP:DUA8768100,1,"CORBEIL ESSONNES",48.613428,2.472934,-1,0,TRN:SA:DUA8768100,Europe/Paris,,TRN, +TRN:SP:DUA8768115,1,"MAISONS ALFORT ALFORTVILLE",48.802049,2.426482,-1,0,TRN:SA:DUA8768115,Europe/Paris,,TRN, +TRN:SP:DUA8768130,1,"VIGNEUX SUR SEINE",48.708366,2.414359,-1,0,TRN:SA:DUA8768130,Europe/Paris,,TRN, +TRN:SP:DUA8768134,1,"ORANGIS BOIS DE L EPINE",48.636351,2.407796,-1,0,TRN:SA:DUA8768134,Europe/Paris,,TRN, +TRN:SP:DUA8768137,1,"GRIGNY CENTRE",48.65397,2.396177,-1,0,TRN:SA:DUA8768137,Europe/Paris,,TRN, +TRN:SP:DUA8768138,1,"EVRY COURCOURONNES - Centre",48.626022,2.428739,-1,0,TRN:SA:DUA8768138,Europe/Paris,,TRN, +TRN:SP:DUA8768139,1,"LE BRAS DE FER",48.623332,2.451409,-1,0,TRN:SA:DUA8768139,Europe/Paris,,TRN, +TRN:SP:DUA8768140,1,"MOULIN GALANT",48.587154,2.47349,-1,0,TRN:SA:DUA8768140,Europe/Paris,,TRN, +TRN:SP:DUA8768141,1,"MENNECY",48.570597,2.432099,-1,0,TRN:SA:DUA8768141,Europe/Paris,,TRN, +TRN:SP:DUA8768143,1,"BALLANCOURT",48.531502,2.370518,-1,0,TRN:SA:DUA8768143,Europe/Paris,,TRN, +TRN:SP:DUA8768145,1,"LA FERTE ALAIS",48.484957,2.351858,-1,0,TRN:SA:DUA8768145,Europe/Paris,,TRN, +TRN:SP:DUA8768147,1,"BOUTIGNY",48.434491,2.376673,-1,0,TRN:SA:DUA8768147,Europe/Paris,,TRN, +TRN:SP:DUA8768148,1,"MAISSE",48.393642,2.393411,-1,0,TRN:SA:DUA8768148,Europe/Paris,,TRN, +TRN:SP:DUA8768151,1,"BUNO GIRONVILLE",48.371383,2.38721,-1,0,TRN:SA:DUA8768151,Europe/Paris,,TRN, +TRN:SP:DUA8768182,1,"VILLENEUVE SAINT-GEORGES",48.730117,2.446136,-1,0,TRN:SA:DUA8768182,Europe/Paris,,TRN, +TRN:SP:DUA8768200,1,"MELUN",48.527243,2.65499,-1,0,TRN:SA:DUA8768200,Europe/Paris,,TRN, +TRN:SP:DUA8768210,1,"MONTGERON CROSNE",48.708238,2.462282,-1,0,TRN:SA:DUA8768210,Europe/Paris,,TRN, +TRN:SP:DUA8768211,1,"YERRES",48.706611,2.484245,-1,0,TRN:SA:DUA8768211,Europe/Paris,,TRN, +TRN:SP:DUA8768212,1,"BRUNOY",48.699732,2.506078,-1,0,TRN:SA:DUA8768212,Europe/Paris,,TRN, +TRN:SP:DUA8768213,1,"BOUSSY SAINT-ANTOINE",48.681017,2.533131,-1,0,TRN:SA:DUA8768213,Europe/Paris,,TRN, +TRN:SP:DUA8768214,1,"COMBS LA VILLE QUINCY",48.667902,2.547548,-1,0,TRN:SA:DUA8768214,Europe/Paris,,TRN, +TRN:SP:DUA8768215,1,"LIEUSAINT MOISSY",48.628376,2.569584,-1,0,TRN:SA:DUA8768215,Europe/Paris,,TRN, +TRN:SP:DUA8768216,1,"CESSON",48.564949,2.594552,-1,0,TRN:SA:DUA8768216,Europe/Paris,,TRN, +TRN:SP:DUA8768217,1,"LE MEE",48.538775,2.625522,-1,0,TRN:SA:DUA8768217,Europe/Paris,,TRN, +TRN:SP:DUA8768218,1,"SAVIGNY LE TEMPLE NANDY",48.595564,2.583948,-1,0,TRN:SA:DUA8768218,Europe/Paris,,TRN, +TRN:SP:DUA8768220,1,"BOIS LE ROI",48.475523,2.692033,-1,0,TRN:SA:DUA8768220,Europe/Paris,,TRN, +TRN:SP:DUA8768221,1,"FONTAINEBLEAU AVON",48.416377,2.726662,-1,0,TRN:SA:DUA8768221,Europe/Paris,,TRN, +TRN:SP:DUA8768225,1,"THOMERY",48.394308,2.764028,-1,0,TRN:SA:DUA8768225,Europe/Paris,,TRN, +TRN:SP:DUA8768227,1,"MORET VENEUX LES SABLONS",48.378598,2.799307,-1,0,TRN:SA:DUA8768227,Europe/Paris,,TRN, +TRN:SP:DUA8768400,1,"MONTARGIS",48.007032,2.743038,-1,0,TRN:SA:DUA8768400,Europe/Paris,,TRN, +TRN:SP:DUA8768410,1,"MONTIGNY SUR LOING",48.336482,2.738002,-1,0,TRN:SA:DUA8768410,Europe/Paris,,TRN, +TRN:SP:DUA8768411,1,"BOURRON MARLOTTE GREZ",48.332684,2.69248,-1,0,TRN:SA:DUA8768411,Europe/Paris,,TRN, +TRN:SP:DUA8768412,1,"NEMOURS SAINT-PIERRE",48.267758,2.685647,-1,0,TRN:SA:DUA8768412,Europe/Paris,,TRN, +TRN:SP:DUA8768419,1,"BAGNEAUX SUR LOING",48.22955,2.703936,-1,0,TRN:SA:DUA8768419,Europe/Paris,,TRN, +TRN:SP:DUA8768421,1,"SOUPPES",48.180937,2.73625,-1,0,TRN:SA:DUA8768421,Europe/Paris,,TRN, +TRN:SP:DUA8768423,1,"DORDIVES",48.147218,2.762728,-1,0,TRN:SA:DUA8768423,Europe/Paris,,TRN, +TRN:SP:DUA8768424,1,"FERRIERES FONTENAY",48.100858,2.773714,-1,0,TRN:SA:DUA8768424,Europe/Paris,,TRN, +TRN:SP:DUA8768440,1,"BOIGNEVILLE",48.341664,2.378815,-1,0,TRN:SA:DUA8768440,Europe/Paris,,TRN, +TRN:SP:DUA8768441,1,"MALESHERBES",48.296734,2.398779,-1,0,TRN:SA:DUA8768441,Europe/Paris,,TRN, +TRN:SP:DUA8768600,1,"PARIS GARE DE LYON",48.844266,2.373755,-1,0,TRN:SA:DUA8768603,Europe/Paris,,TRN, +TRN:SP:DUA8768603,1,"PARIS GARE DE LYON",48.843773,2.373916,-1,0,TRN:SA:DUA8768603,Europe/Paris,,TRN, +TRN:SP:DUA8775860,1,"CHATELET LES HALLES",48.861822,2.347013,-1,0,TRN:SA:DUA8775860,Europe/Paris,,TRN, diff --git a/flatisfy/data_files/stops_fr-se.txt b/flatisfy/data_files/stops_fr-se.txt new file mode 100644 index 0000000..c03cd47 --- /dev/null +++ b/flatisfy/data_files/stops_fr-se.txt @@ -0,0 +1,49703 @@ +stop_id,visible,stop_name,stop_lat,stop_lon,zone_id,location_type,parent_station,stop_timezone,equipment_id,contributor_id,geometry_id +DGL:SA:S10001,1,"24 Aout",45.682881,4.90937,,1,,Europe/Paris,,DGL, +DGL:SA:S10002,1,"4 Chemins - La Salette",45.749586,4.795822,,1,,Europe/Paris,,DGL, +DGL:SA:S10003,1,"8 Mai - Parc du Roy",45.819678,4.865296,,1,,Europe/Paris,,DGL, +DGL:SA:S10006,1,"A.Pare - Laennec",45.73737,4.884594,,1,,Europe/Paris,,DGL, +DGL:SA:S10007,1,"A.Pare - Seignemartin",45.7362,4.8827,,1,,Europe/Paris,,DGL, +DGL:SA:S10008,1,"Corbas Gabriel Peri",45.675976,4.917134,,1,,Europe/Paris,,DGL, +DGL:SA:S10009,1,"Acacias",45.7803,4.788839,,1,,Europe/Paris,,DGL, +DGL:SA:S10011,1,"Agronomie",45.774753,4.785656,,1,,Europe/Paris,,DGL, +DGL:SA:S10014,1,"Alai - La Raude",45.7534,4.774782,,1,,Europe/Paris,,DGL, +DGL:SA:S10016,1,"Albigny Centre",45.86513,4.834508,,1,,Europe/Paris,,DGL, +DGL:SA:S10019,1,"Albigny Plaine",45.856277,4.834717,,1,,Europe/Paris,,DGL, +DGL:SA:S10020,1,"Albon",45.7644,4.8318,,1,,Europe/Paris,,DGL, +DGL:SA:S10023,1,"Quai Tilsitt",45.757862,4.828017,,1,,Europe/Paris,,DGL, +DGL:SA:S10024,1,"Alsace",45.763729,4.869502,,1,,Europe/Paris,,DGL, +DGL:SA:S10025,1,"Ampere",45.817087,4.838484,,1,,Europe/Paris,,DGL, +DGL:SA:S10026,1,"Ampere - Lavoisier",45.7318,4.97045,,1,,Europe/Paris,,DGL, +DGL:SA:S10027,1,"Anatole France",45.721513,4.893923,,1,,Europe/Paris,,DGL, +DGL:SA:S10029,1,"Andre Bollier",45.735165,4.839554,,1,,Europe/Paris,,DGL, +DGL:SA:S10030,1,"Andre Boulloche",45.718686,4.93021,,1,,Europe/Paris,,DGL, +DGL:SA:S10031,1,"Andre Brun",45.767426,4.966747,,1,,Europe/Paris,,DGL, +DGL:SA:S10034,1,"Antonins",45.77828,4.879101,,1,,Europe/Paris,,DGL, +DGL:SA:S10035,1,"Aqueducs de Beaunant",45.724358,4.779799,,1,,Europe/Paris,,DGL, +DGL:SA:S10037,1,"Arago",45.757985,4.884495,,1,,Europe/Paris,,DGL, +DGL:SA:S10038,1,"Assomption",45.733435,4.812843,,1,,Europe/Paris,,DGL, +DGL:SA:S10040,1,"Ateliers SNCF",45.719993,4.818098,,1,,Europe/Paris,,DGL, +DGL:SA:S10042,1,"Aubepins",45.751073,4.891381,,1,,Europe/Paris,,DGL, +DGL:SA:S10044,1,"Audibert Lavirotte",45.735049,4.85703,,1,,Europe/Paris,,DGL, +DGL:SA:S10045,1,"Austerlitz",45.775522,4.834989,,1,,Europe/Paris,,DGL, +DGL:SA:S10046,1,"Avenue de l'Industrie",45.680185,4.921906,,1,,Europe/Paris,,DGL, +DGL:SA:S10047,1,"Avenue de la Paix",45.785237,4.748701,,1,,Europe/Paris,,DGL, +DGL:SA:S10048,1,"Avignon",45.691699,4.857423,,1,,Europe/Paris,,DGL, +DGL:SA:S10049,1,"Ayasse - Yves Farge",45.735741,4.827639,,1,,Europe/Paris,,DGL, +DGL:SA:S10051,1,"Mermoz",45.741953,5.022355,,1,,Europe/Paris,,DGL, +DGL:SA:S10053,1,"Badel",45.770916,4.702619,,1,,Europe/Paris,,DGL, +DGL:SA:S10054,1,"Balmont Bas",45.783381,4.800638,,1,,Europe/Paris,,DGL, +DGL:SA:S10056,1,"Baraillon",45.764165,4.759846,,1,,Europe/Paris,,DGL, +DGL:SA:S10057,1,"Barbesi",45.6681,4.8644,,1,,Europe/Paris,,DGL, +DGL:SA:S10059,1,"Barreme",45.774838,4.842807,,1,,Europe/Paris,,DGL, +DGL:SA:S10060,1,"Bas des Chassagnes",45.720706,4.811021,,1,,Europe/Paris,,DGL, +DGL:SA:S10061,1,"Barolles Centre",45.680507,4.78588,,1,,Europe/Paris,,DGL, +DGL:SA:S10063,1,"Basso",45.824914,4.791538,,1,,Europe/Paris,,DGL, +DGL:SA:S10064,1,"Bastero - Aquarium",45.725973,4.814024,,1,,Europe/Paris,,DGL, +DGL:SA:S10065,1,"Bat d'Argent",45.765184,4.835917,,1,,Europe/Paris,,DGL, +DGL:SA:S10067,1,"Batterie",45.744354,4.915934,,1,,Europe/Paris,,DGL, +DGL:SA:S10068,1,"Foch - Provinces",45.747607,4.798342,,1,,Europe/Paris,,DGL, +DGL:SA:S10070,1,"Bechevelin",45.749508,4.839789,,1,,Europe/Paris,,DGL, +DGL:SA:S10071,1,"Bellecombe",45.648401,4.845193,,1,,Europe/Paris,,DGL, +DGL:SA:S10075,1,"Bellecour A.Poncet",45.756026,4.834395,,1,,Europe/Paris,,DGL, +DGL:SA:S10076,1,"Bellecour Chambonnet",45.7589,4.8304,,1,,Europe/Paris,,DGL, +DGL:SA:S10077,1,"Bellecour Charite",45.755722,4.833124,,1,,Europe/Paris,,DGL, +DGL:SA:S10080,1,"Bellecour Le Viste",45.757577,4.833769,,1,,Europe/Paris,,DGL, +DGL:SA:S10084,1,"Bellegarde",45.870941,4.839746,,1,,Europe/Paris,,DGL, +DGL:SA:S10085,1,"Bellevue",45.78569,4.848011,,1,,Europe/Paris,,DGL, +DGL:SA:S10086,1,"Benoit Bernard",45.738399,4.852282,,1,,Europe/Paris,,DGL, +DGL:SA:S10088,1,"Berjon - St Simon",45.776369,4.797385,,1,,Europe/Paris,,DGL, +DGL:SA:S10089,1,"Paul Berliet",45.704745,4.912537,,1,,Europe/Paris,,DGL, +DGL:SA:S10090,1,"Berliet Venissieux",45.713059,4.898849,,1,,Europe/Paris,,DGL, +DGL:SA:S10091,1,"Bernaix",45.759924,4.897498,,1,,Europe/Paris,,DGL, +DGL:SA:S10092,1,"Bernard Vallot",45.733622,4.893444,,1,,Europe/Paris,,DGL, +DGL:SA:S10093,1,"Berthaudiere",45.775517,4.969501,,1,,Europe/Paris,,DGL, +DGL:SA:S10096,1,"Bifurcation du Rosay",45.791473,4.808577,,1,,Europe/Paris,,DGL, +DGL:SA:S10097,1,"Bir Hakeim",45.753111,4.854766,,1,,Europe/Paris,,DGL, +DGL:SA:S10099,1,"Bleriot",45.65904,4.948917,,1,,Europe/Paris,,DGL, +DGL:SA:S10100,1,"Bois de Dardilly",45.798337,4.757369,,1,,Europe/Paris,,DGL, +DGL:SA:S10101,1,"Bois de l'Etoile",45.780615,4.724924,,1,,Europe/Paris,,DGL, +DGL:SA:S10102,1,"Bois de Parilly",45.725689,4.913016,,1,,Europe/Paris,,DGL, +DGL:SA:S10103,1,"Bois de Serres",45.79547,4.762596,,1,,Europe/Paris,,DGL, +DGL:SA:S10104,1,"Bois des Chenes",45.680691,4.782389,,1,,Europe/Paris,,DGL, +DGL:SA:S10105,1,"Bois Roux",45.81258,4.859795,,1,,Europe/Paris,,DGL, +DGL:SA:S10106,1,"Bois Saint Paul",45.6439,4.8015,,1,,Europe/Paris,,DGL, +DGL:SA:S10107,1,"Bon Coin",45.760506,4.90545,,1,,Europe/Paris,,DGL, +DGL:SA:S10108,1,"Bonnand",45.748685,4.88418,,1,,Europe/Paris,,DGL, +DGL:SA:S10111,1,"Bonnevay - Bel Air",45.7531,4.9076,,1,,Europe/Paris,,DGL, +DGL:SA:S10112,1,"Bourdarias",45.724112,4.883345,,1,,Europe/Paris,,DGL, +DGL:SA:S10113,1,"Bourget",45.78433,4.810757,,1,,Europe/Paris,,DGL, +DGL:SA:S10114,1,"Bournes",45.777003,4.82069,,1,,Europe/Paris,,DGL, +DGL:SA:S10115,1,"Boutarey",45.826622,4.877899,,1,,Europe/Paris,,DGL, +DGL:SA:S10116,1,"Boyer",45.7588,4.7849,,1,,Europe/Paris,,DGL, +DGL:SA:S10117,1,"Brindas Centre",45.7199,4.6936,,1,,Europe/Paris,,DGL, +DGL:SA:S10120,1,"Bron De Lattre",45.734229,4.917445,,1,,Europe/Paris,,DGL, +DGL:SA:S10122,1,"Bron Jules Mas",45.735932,4.911493,,1,,Europe/Paris,,DGL, +DGL:SA:S10124,1,"Bron Liberation",45.729935,4.901968,,1,,Europe/Paris,,DGL, +DGL:SA:S10127,1,"Bron Terraillon",45.74708,4.923853,,1,,Europe/Paris,,DGL, +DGL:SA:S10128,1,"Brossolette - Genas",45.748404,4.918059,,1,,Europe/Paris,,DGL, +DGL:SA:S10132,1,"Bruyeres",45.76288,4.941189,,1,,Europe/Paris,,DGL, +DGL:SA:S10133,1,"Buers - Pressense",45.770115,4.896363,,1,,Europe/Paris,,DGL, +DGL:SA:S10134,1,"Buers - Salengro",45.782621,4.889895,,1,,Europe/Paris,,DGL, +DGL:SA:S10135,1,"Bugeaud",45.767,4.8528,,1,,Europe/Paris,,DGL, +DGL:SA:S10138,1,"Mions Buzy",45.669312,4.958475,,1,,Europe/Paris,,DGL, +DGL:SA:S10144,1,"College Louis Aragon",45.693405,4.890042,,1,,Europe/Paris,,DGL, +DGL:SA:S10146,1,"Claude Joseph Bonnet",45.77463,4.821181,,1,,Europe/Paris,,DGL, +DGL:SA:S10147,1,"Charles Perrault",45.771263,4.89001,,1,,Europe/Paris,,DGL, +DGL:SA:S10148,1,"Cailloux Bellevue",45.853848,4.867487,,1,,Europe/Paris,,DGL, +DGL:SA:S10149,1,"Cailloux Centre",45.85479,4.871015,,1,,Europe/Paris,,DGL, +DGL:SA:S10150,1,"Cailloux Chateau",45.84864,4.869907,,1,,Europe/Paris,,DGL, +DGL:SA:S10151,1,"Cailloux La Croix",45.852846,4.864807,,1,,Europe/Paris,,DGL, +DGL:SA:S10152,1,"Cailloux Mairie",45.85206,4.871933,,1,,Europe/Paris,,DGL, +DGL:SA:S10153,1,"Mermoz - Californie",45.733424,4.878756,,1,,Europe/Paris,,DGL, +DGL:SA:S10154,1,"Caluire Bellerive",45.793409,4.826347,,1,,Europe/Paris,,DGL, +DGL:SA:S10155,1,"Caluire Centre",45.799437,4.847452,,1,,Europe/Paris,,DGL, +DGL:SA:S10157,1,"Caluire Place Foch",45.797677,4.851338,,1,,Europe/Paris,,DGL, +DGL:SA:S10158,1,"Caluire Thimonnier",45.805098,4.868808,,1,,Europe/Paris,,DGL, +DGL:SA:S10159,1,"Caluire Victor Hugo",45.800878,4.841395,,1,,Europe/Paris,,DGL, +DGL:SA:S10160,1,"Cambon",45.722099,4.879634,,1,,Europe/Paris,,DGL, +DGL:SA:S10161,1,"Camping International",45.821426,4.760839,,1,,Europe/Paris,,DGL, +DGL:SA:S10162,1,"Carette",45.786313,4.839862,,1,,Europe/Paris,,DGL, +DGL:SA:S10164,1,"Carrefour Liberation",45.75832,4.775399,,1,,Europe/Paris,,DGL, +DGL:SA:S10165,1,"Carry",45.75504,4.870664,,1,,Europe/Paris,,DGL, +DGL:SA:S10169,1,"Centre Psychotherapique",45.818047,4.835779,,1,,Europe/Paris,,DGL, +DGL:SA:S10170,1,"Centre Social Sauvegarde",45.786719,4.791242,,1,,Europe/Paris,,DGL, +DGL:SA:S10171,1,"Centre Social La Mulatiere",45.728341,4.806304,,1,,Europe/Paris,,DGL, +DGL:SA:S10172,1,"Centre Sportif",45.695045,4.957272,,1,,Europe/Paris,,DGL, +DGL:SA:S10173,1,"Francheville Taffignon",45.734628,4.775317,,1,,Europe/Paris,,DGL, +DGL:SA:S10175,1,"Cesar Paulet",45.816711,4.841434,,1,,Europe/Paris,,DGL, +DGL:SA:S10176,1,"Chabrol",45.733425,4.710077,,1,,Europe/Paris,,DGL, +DGL:SA:S10177,1,"Chamagnieu",45.859839,4.753472,,1,,Europe/Paris,,DGL, +DGL:SA:S10179,1,"Champ Blanc",45.761172,4.946996,,1,,Europe/Paris,,DGL, +DGL:SA:S10181,1,"Champagne (che.du Pave)",45.801606,4.784687,,1,,Europe/Paris,,DGL, +DGL:SA:S10182,1,"Champagne (ch.St Didier)",45.800167,4.786917,,1,,Europe/Paris,,DGL, +DGL:SA:S10183,1,"Champagne Centre",45.79515,4.792435,,1,,Europe/Paris,,DGL, +DGL:SA:S10184,1,"Champfleury",45.798469,4.788813,,1,,Europe/Paris,,DGL, +DGL:SA:S10185,1,"Champoulin",45.75881,4.716674,,1,,Europe/Paris,,DGL, +DGL:SA:S10186,1,"Champvert",45.764006,4.792633,,1,,Europe/Paris,,DGL, +DGL:SA:S10187,1,"Champvillard",45.672647,4.81826,,1,,Europe/Paris,,DGL, +DGL:SA:S10188,1,"Chantabeau",45.641582,4.837673,,1,,Europe/Paris,,DGL, +DGL:SA:S10189,1,"Chante Ruisseau",45.772546,4.738619,,1,,Europe/Paris,,DGL, +DGL:SA:S10192,1,"Chantemerle",45.819934,4.794174,,1,,Europe/Paris,,DGL, +DGL:SA:S10194,1,"Charbinat",45.697596,4.820373,,1,,Europe/Paris,,DGL, +DGL:SA:S10195,1,"Chardonnet",45.766103,4.929179,,1,,Europe/Paris,,DGL, +DGL:SA:S10198,1,"Charles De Gaulle",45.816931,4.891824,,1,,Europe/Paris,,DGL, +DGL:SA:S10199,1,"Charles Richard",45.749865,4.887918,,1,,Europe/Paris,,DGL, +DGL:SA:S10201,1,"Charly Centre",45.649445,4.793284,,1,,Europe/Paris,,DGL, +DGL:SA:S10202,1,"Charly Eglise",45.643953,4.793341,,1,,Europe/Paris,,DGL, +DGL:SA:S10203,1,"Charmet",45.697804,4.816116,,1,,Europe/Paris,,DGL, +DGL:SA:S10206,1,"Charriere Blanche",45.780839,4.76756,,1,,Europe/Paris,,DGL, +DGL:SA:S10208,1,"Charton",45.711766,4.810969,,1,,Europe/Paris,,DGL, +DGL:SA:S10209,1,"Chasselay",45.873711,4.771913,,1,,Europe/Paris,,DGL, +DGL:SA:S10211,1,"Chassieu Lavoisier",45.733078,4.966057,,1,,Europe/Paris,,DGL, +DGL:SA:S10212,1,"Chassieu Mairie",45.742778,4.971785,,1,,Europe/Paris,,DGL, +DGL:SA:S10216,1,"Chateau Roy",45.82913,4.853247,,1,,Europe/Paris,,DGL, +DGL:SA:S10217,1,"Chavril",45.744049,4.798254,,1,,Europe/Paris,,DGL, +DGL:SA:S10218,1,"Chazay",45.745603,4.78647,,1,,Europe/Paris,,DGL, +DGL:SA:S10219,1,"Chemin Bressan",45.882316,4.834207,,1,,Europe/Paris,,DGL, +DGL:SA:S10220,1,"Chemin de Grange Blanche",45.663706,4.901792,,1,,Europe/Paris,,DGL, +DGL:SA:S10223,1,"Chemin des Moulins",45.696897,4.812144,,1,,Europe/Paris,,DGL, +DGL:SA:S10224,1,"Chemin des Pivolles",45.753173,4.934202,,1,,Europe/Paris,,DGL, +DGL:SA:S10226,1,"Chemin du Chene",45.824022,4.794446,,1,,Europe/Paris,,DGL, +DGL:SA:S10228,1,"Caluire Chemin Petit",45.803818,4.860937,,1,,Europe/Paris,,DGL, +DGL:SA:S10231,1,"Valpre",45.778457,4.787104,,1,,Europe/Paris,,DGL, +DGL:SA:S10232,1,"Chorel",45.7748,4.864949,,1,,Europe/Paris,,DGL, +DGL:SA:S10234,1,"Cimetiere Communautaire",45.723683,4.917696,,1,,Europe/Paris,,DGL, +DGL:SA:S10235,1,"Cimetiere Croix-Rousse",45.7812,4.8206,,1,,Europe/Paris,,DGL, +DGL:SA:S10236,1,"Cimetiere d'Oullins",45.709403,4.810966,,1,,Europe/Paris,,DGL, +DGL:SA:S10237,1,"Cimetiere de Corbas",45.675099,4.900159,,1,,Europe/Paris,,DGL, +DGL:SA:S10238,1,"Cimetiere de Cusset",45.7623,4.9116,,1,,Europe/Paris,,DGL, +DGL:SA:S10239,1,"Cimetiere de Ste Foy",45.73313,4.796641,,1,,Europe/Paris,,DGL, +DGL:SA:S10242,1,"Cimetiere de Loyasse",45.762795,4.813476,,1,,Europe/Paris,,DGL, +DGL:SA:S10244,1,"Cite Ampere",45.708487,4.812306,,1,,Europe/Paris,,DGL, +DGL:SA:S10245,1,"Cite Berliet",45.711196,4.901866,,1,,Europe/Paris,,DGL, +DGL:SA:S10247,1,"Cite Berliet centre",45.705398,4.901133,,1,,Europe/Paris,,DGL, +DGL:SA:S10248,1,"Cite de l' Enfance - IDEF",45.7261,4.907271,,1,,Europe/Paris,,DGL, +DGL:SA:S10249,1,"Cite Edouard Herriot",45.802581,4.83265,,1,,Europe/Paris,,DGL, +DGL:SA:S10250,1,"Hopital St Jean de Dieu",45.724089,4.854048,,1,,Europe/Paris,,DGL, +DGL:SA:S10251,1,"Cite Ribaud",45.740595,4.950423,,1,,Europe/Paris,,DGL, +DGL:SA:S10252,1,"Cite St Jean",45.776464,4.902846,,1,,Europe/Paris,,DGL, +DGL:SA:S10253,1,"Cite Tase",45.758438,4.92831,,1,,Europe/Paris,,DGL, +DGL:SA:S10255,1,"Claude Farrere",45.687893,4.95225,,1,,Europe/Paris,,DGL, +DGL:SA:S10256,1,"Claudius Collonge",45.748075,4.821049,,1,,Europe/Paris,,DGL, +DGL:SA:S10258,1,"Clinique Charcot",45.750227,4.798132,,1,,Europe/Paris,,DGL, +DGL:SA:S10259,1,"Clinique du Tonkin",45.77679,4.864932,,1,,Europe/Paris,,DGL, +DGL:SA:S10261,1,"Clinique Sauvegarde",45.788744,4.788572,,1,,Europe/Paris,,DGL, +DGL:SA:S10262,1,"Apollinaire - Bourbonnais",45.772747,4.795673,,1,,Europe/Paris,,DGL, +DGL:SA:S10263,1,"Clinique Trarieux",45.744581,4.891659,,1,,Europe/Paris,,DGL, +DGL:SA:S10264,1,"Clos Chaurand",45.693348,4.798046,,1,,Europe/Paris,,DGL, +DGL:SA:S10265,1,"Clos de la Jeunesse",45.789143,4.84625,,1,,Europe/Paris,,DGL, +DGL:SA:S10266,1,"Clos des Cedres",45.760259,4.787399,,1,,Europe/Paris,,DGL, +DGL:SA:S10267,1,"Clos des Chassagnes",45.724727,4.808153,,1,,Europe/Paris,,DGL, +DGL:SA:S10268,1,"Clos Jouve",45.773048,4.82112,,1,,Europe/Paris,,DGL, +DGL:SA:S10269,1,"Clos Rival",45.685385,4.794329,,1,,Europe/Paris,,DGL, +DGL:SA:S10272,1,"Coblod - Rosenberg",45.700509,4.892106,,1,,Europe/Paris,,DGL, +DGL:SA:S10273,1,"Colbert",45.772518,4.834424,,1,,Europe/Paris,,DGL, +DGL:SA:S10274,1,"Coli",45.769249,4.94628,,1,,Europe/Paris,,DGL, +DGL:SA:S10275,1,"Colin",45.776717,4.87428,,1,,Europe/Paris,,DGL, +DGL:SA:S10277,1,"Le Grand Roule",45.730073,4.807544,,1,,Europe/Paris,,DGL, +DGL:SA:S10278,1,"Collonges St Martin",45.817566,4.84401,,1,,Europe/Paris,,DGL, +DGL:SA:S10280,1,"Contrebandiers",45.786938,4.804876,,1,,Europe/Paris,,DGL, +DGL:SA:S10282,1,"Corbas Mairie",45.670667,4.898913,,1,,Europe/Paris,,DGL, +DGL:SA:S10284,1,"Corbas Rue du Midi",45.65998,4.899039,,1,,Europe/Paris,,DGL, +DGL:SA:S10289,1,"Cote Berthaud",45.671881,4.829117,,1,,Europe/Paris,,DGL, +DGL:SA:S10290,1,"Cours Aristide Briand",45.782638,4.843786,,1,,Europe/Paris,,DGL, +DGL:SA:S10293,1,"Couzon",45.845739,4.832383,,1,,Europe/Paris,,DGL, +DGL:SA:S10294,1,"Gare et stade de Couzon",45.849118,4.832228,,1,,Europe/Paris,,DGL, +DGL:SA:S10295,1,"Craponne Centre",45.747359,4.723327,,1,,Europe/Paris,,DGL, +DGL:SA:S10296,1,"Craponne Dumont",45.747338,4.716088,,1,,Europe/Paris,,DGL, +DGL:SA:S10297,1,"Craponne Mairie",45.742473,4.7235,,1,,Europe/Paris,,DGL, +DGL:SA:S10300,1,"Craponne Martin",45.747342,4.729021,,1,,Europe/Paris,,DGL, +DGL:SA:S10302,1,"Crecy",45.800708,4.803133,,1,,Europe/Paris,,DGL, +DGL:SA:S10304,1,"Crepieux Les Brosses",45.808454,4.912882,,1,,Europe/Paris,,DGL, +DGL:SA:S10305,1,"Croix des Rameaux",45.815929,4.79655,,1,,Europe/Paris,,DGL, +DGL:SA:S10307,1,"Croizat - Coblod",45.7025,4.8874,,1,,Europe/Paris,,DGL, +DGL:SA:S10308,1,"Cuers",45.798219,4.767833,,1,,Europe/Paris,,DGL, +DGL:SA:S10312,1,"Curie - Jules Guesde",45.709225,4.886279,,1,,Europe/Paris,,DGL, +DGL:SA:S10313,1,"Curis la Planche",45.871964,4.822423,,1,,Europe/Paris,,DGL, +DGL:SA:S10314,1,"Curis Lavoir",45.870271,4.820452,,1,,Europe/Paris,,DGL, +DGL:SA:S10316,1,"Cuzin - Stalingrad",45.774456,4.914921,,1,,Europe/Paris,,DGL, +DGL:SA:S10317,1,"Cyprian - Genas",45.7522,4.9018,,1,,Europe/Paris,,DGL, +DGL:SA:S10318,1,"Cyprian - Leon Blum",45.760232,4.900262,,1,,Europe/Paris,,DGL, +DGL:SA:S10319,1,"Cyrano",45.754824,4.879584,,1,,Europe/Paris,,DGL, +DGL:SA:S10320,1,"D'Arsonval - Jacquard",45.727682,4.971217,,1,,Europe/Paris,,DGL, +DGL:SA:S10321,1,"Dardilly Le Bas",45.807345,4.752843,,1,,Europe/Paris,,DGL, +DGL:SA:S10322,1,"Dardilly Le Haut",45.817543,4.75053,,1,,Europe/Paris,,DGL, +DGL:SA:S10323,1,"Dardilly Le Paillet",45.8226,4.7488,,1,,Europe/Paris,,DGL, +DGL:SA:S10325,1,"Dauphine",45.662932,4.952825,,1,,Europe/Paris,,DGL, +DGL:SA:S10328,1,"De Gaulle - Pont SNCF",45.754915,4.77094,,1,,Europe/Paris,,DGL, +DGL:SA:S10330,1,"Debrousse",45.748534,4.812899,,1,,Europe/Paris,,DGL, +DGL:SA:S10331,1,"Decines Bascule",45.771226,4.96152,,1,,Europe/Paris,,DGL, +DGL:SA:S10332,1,"Decines Champ Fleuri",45.773722,4.972342,,1,,Europe/Paris,,DGL, +DGL:SA:S10333,1,"Decines Eglise",45.763506,4.96445,,1,,Europe/Paris,,DGL, +DGL:SA:S10334,1,"Decines Gare",45.769953,4.952204,,1,,Europe/Paris,,DGL, +DGL:SA:S10337,1,"Decines Wilson",45.768698,4.942311,,1,,Europe/Paris,,DGL, +DGL:SA:S10338,1,"Decomberousse",45.76275,4.915118,,1,,Europe/Paris,,DGL, +DGL:SA:S10340,1,"Demi-Lune Clemenceau",45.763804,4.776947,,1,,Europe/Paris,,DGL, +DGL:SA:S10341,1,"Demi-Lune Mairie",45.760526,4.777432,,1,,Europe/Paris,,DGL, +DGL:SA:S10342,1,"Demi-Lune Vauboin",45.764267,4.782121,,1,,Europe/Paris,,DGL, +DGL:SA:S10357,1,"Descartes",45.776268,4.871931,,1,,Europe/Paris,,DGL, +DGL:SA:S10358,1,"Desgrand",45.785465,4.905524,,1,,Europe/Paris,,DGL, +DGL:SA:S10359,1,"Diderot",45.7132,4.809,,1,,Europe/Paris,,DGL, +DGL:SA:S10360,1,"Diderot - Les Ormes",45.697699,4.929228,,1,,Europe/Paris,,DGL, +DGL:SA:S10363,1,"Dorothee Petit",45.668917,4.816658,,1,,Europe/Paris,,DGL, +DGL:SA:S10364,1,"Docteur Horand",45.7708,4.8021,,1,,Europe/Paris,,DGL, +DGL:SA:S10365,1,"Docteur Rebatel",45.7498,4.8735,,1,,Europe/Paris,,DGL, +DGL:SA:S10366,1,"Duchere Balmont",45.789273,4.799409,,1,,Europe/Paris,,DGL, +DGL:SA:S10369,1,"Duchere Capucines",45.789427,4.794252,,1,,Europe/Paris,,DGL, +DGL:SA:S10370,1,"Duchere Chateau",45.780874,4.79368,,1,,Europe/Paris,,DGL, +DGL:SA:S10371,1,"Duchere Lanessan",45.7914,4.7972,,1,,Europe/Paris,,DGL, +DGL:SA:S10372,1,"Duchere Martiniere",45.786219,4.79543,,1,,Europe/Paris,,DGL, +DGL:SA:S10373,1,"Duchere Piscine",45.787345,4.799677,,1,,Europe/Paris,,DGL, +DGL:SA:S10376,1,"Duclos",45.697528,4.887632,,1,,Europe/Paris,,DGL, +DGL:SA:S10378,1,"Dumas",45.776413,4.887387,,1,,Europe/Paris,,DGL, +DGL:SA:S10379,1,"Dumas - Poudrette",45.753372,4.92033,,1,,Europe/Paris,,DGL, +DGL:SA:S10380,1,"Dumas - Salengro",45.753369,4.928291,,1,,Europe/Paris,,DGL, +DGL:SA:S10382,1,"Duquesne - Foch",45.772499,4.843122,,1,,Europe/Paris,,DGL, +DGL:SA:S10383,1,"Duroc",45.769021,4.818114,,1,,Europe/Paris,,DGL, +DGL:SA:S10385,1,"Emile Vial",45.745225,4.929346,,1,,Europe/Paris,,DGL, +DGL:SA:S10386,1,"Echangeur du Perollier",45.787643,4.782753,,1,,Europe/Paris,,DGL, +DGL:SA:S10390,1,"Dardilly Les Gorges",45.807477,4.763834,,1,,Europe/Paris,,DGL, +DGL:SA:S10391,1,"Ecole de Sante",45.7281,4.9248,,1,,Europe/Paris,,DGL, +DGL:SA:S10393,1,"Ecole Veterinaire",45.790101,4.708591,,1,,Europe/Paris,,DGL, +DGL:SA:S10395,1,"La Mulatiere Mairie",45.729059,4.810294,,1,,Europe/Paris,,DGL, +DGL:SA:S10396,1,"Ecully Centre",45.774518,4.778636,,1,,Europe/Paris,,DGL, +DGL:SA:S10399,1,"Ecully Le Trouillat",45.776058,4.774182,,1,,Europe/Paris,,DGL, +DGL:SA:S10401,1,"Edgar Quinet",45.765735,4.844546,,1,,Europe/Paris,,DGL, +DGL:SA:S10402,1,"Egalite - Farrere",45.688308,4.949721,,1,,Europe/Paris,,DGL, +DGL:SA:S10403,1,"Eglantines",45.740555,4.962731,,1,,Europe/Paris,,DGL, +DGL:SA:S10405,1,"Elisee Reclus",45.747273,4.936703,,1,,Europe/Paris,,DGL, +DGL:SA:S10406,1,"Emile Chanel",45.7778,4.8161,,1,,Europe/Paris,,DGL, +DGL:SA:S10407,1,"Entree de Decines",45.767811,4.935455,,1,,Europe/Paris,,DGL, +DGL:SA:S10411,1,"Etats-Unis Leriche",45.7274,4.8692,,1,,Europe/Paris,,DGL, +DGL:SA:S10415,1,"Etoile d'Alai",45.7533,4.7691,,1,,Europe/Paris,,DGL, +DGL:SA:S10420,1,"Evellier",45.749015,4.694619,,1,,Europe/Paris,,DGL, +DGL:SA:S10421,1,"Falsan",45.804269,4.834438,,1,,Europe/Paris,,DGL, +DGL:SA:S10427,1,"Fee des Eaux",45.65,4.8021,,1,,Europe/Paris,,DGL, +DGL:SA:S10429,1,"Felix Faure - Vivier Merle",45.753806,4.859082,,1,,Europe/Paris,,DGL, +DGL:SA:S10430,1,"Felix Jacquier",45.772925,4.84782,,1,,Europe/Paris,,DGL, +DGL:SA:S10432,1,"Feuillat - Albert Thomas",45.744414,4.874847,,1,,Europe/Paris,,DGL, +DGL:SA:S10433,1,"Feuillat - Freres Lumiere",45.743361,4.87422,,1,,Europe/Paris,,DGL, +DGL:SA:S10434,1,"Feuillat - Lacassagne",45.749972,4.87572,,1,,Europe/Paris,,DGL, +DGL:SA:S10435,1,"Feyzin Chateau de l'Isle",45.67219,4.850528,,1,,Europe/Paris,,DGL, +DGL:SA:S10437,1,"Feyzin Les Razes",45.665838,4.849346,,1,,Europe/Paris,,DGL, +DGL:SA:S10438,1,"Filature",45.777742,4.884535,,1,,Europe/Paris,,DGL, +DGL:SA:S10441,1,"Fleurieu",45.862967,4.840516,,1,,Europe/Paris,,DGL, +DGL:SA:S10442,1,"Florian",45.756895,4.880195,,1,,Europe/Paris,,DGL, +DGL:SA:S10444,1,"Fonderie",45.782586,4.918795,,1,,Europe/Paris,,DGL, +DGL:SA:S10445,1,"Fontaines Centre",45.835,4.8469,,1,,Europe/Paris,,DGL, +DGL:SA:S10450,1,"Fontrobert",45.674017,4.949345,,1,,Europe/Paris,,DGL, +DGL:SA:S10451,1,"Fort de Bron",45.731281,4.917635,,1,,Europe/Paris,,DGL, +DGL:SA:S10452,1,"Fort de Montessuy",45.792037,4.848744,,1,,Europe/Paris,,DGL, +DGL:SA:S10454,1,"Fort du Bruissin",45.7324,4.7395,,1,,Europe/Paris,,DGL, +DGL:SA:S10455,1,"Foucaud - Picasso",45.774316,4.92125,,1,,Europe/Paris,,DGL, +DGL:SA:S10468,1,"Francis Poulenc",45.747049,4.961826,,1,,Europe/Paris,,DGL, +DGL:SA:S10470,1,"Frere Benoit",45.763546,4.795354,,1,,Europe/Paris,,DGL, +DGL:SA:S10472,1,"Fromentin",45.872502,4.763803,,1,,Europe/Paris,,DGL, +DGL:SA:S10473,1,"Fromont",45.776059,4.937347,,1,,Europe/Paris,,DGL, +DGL:SA:S10474,1,"Gabriel Rosset",45.72975,4.841628,,1,,Europe/Paris,,DGL, +DGL:SA:S10475,1,"St Genis Gadagne",45.701447,4.795373,,1,,Europe/Paris,,DGL, +DGL:SA:S10482,1,"Garanjou",45.705203,4.816346,,1,,Europe/Paris,,DGL, +DGL:SA:S10483,1,"Garanteze",45.678445,4.825575,,1,,Europe/Paris,,DGL, +DGL:SA:S10484,1,"Gare de Collonges-Fontaines",45.830522,4.847443,,1,,Europe/Paris,,DGL, +DGL:SA:S10488,1,"Garibaldi - Gambetta",45.751674,4.853396,,1,,Europe/Paris,,DGL, +DGL:SA:S10490,1,"Genas Place Republique",45.732525,4.996797,,1,,Europe/Paris,,DGL, +DGL:SA:S10492,1,"Genas - Bonnevay",45.751094,4.907596,,1,,Europe/Paris,,DGL, +DGL:SA:S10493,1,"Genas La Grande Plaine",45.728592,5.020938,,1,,Europe/Paris,,DGL, +DGL:SA:S10494,1,"Danton - Republique",45.731706,5.001912,,1,,Europe/Paris,,DGL, +DGL:SA:S10495,1,"Genas Place Jean Jaures",45.738416,5.016883,,1,,Europe/Paris,,DGL, +DGL:SA:S10499,1,"Genay Le Perron",45.891049,4.83231,,1,,Europe/Paris,,DGL, +DGL:SA:S10500,1,"Genay Madone",45.895948,4.834931,,1,,Europe/Paris,,DGL, +DGL:SA:S10501,1,"General Andre",45.727725,4.87803,,1,,Europe/Paris,,DGL, +DGL:SA:S10502,1,"General Frere",45.728074,4.883296,,1,,Europe/Paris,,DGL, +DGL:SA:S10503,1,"Genevrey",45.820795,4.880423,,1,,Europe/Paris,,DGL, +DGL:SA:S10504,1,"Genovefains",45.753552,4.816134,,1,,Europe/Paris,,DGL, +DGL:SA:S10514,1,"Gorgeat",45.868782,4.839686,,1,,Europe/Paris,,DGL, +DGL:SA:S10515,1,"Grand Chassagnon",45.701645,4.863608,,1,,Europe/Paris,,DGL, +DGL:SA:S10516,1,"Meyzieu Grand Large",45.777485,4.993144,,1,,Europe/Paris,,DGL, +DGL:SA:S10517,1,"Grand Trou",45.735585,4.853192,,1,,Europe/Paris,,DGL, +DGL:SA:S10518,1,"Grand Vire",45.778252,4.917029,,1,,Europe/Paris,,DGL, +DGL:SA:S10519,1,"Grandclement",45.759548,4.890103,,1,,Europe/Paris,,DGL, +DGL:SA:S10522,1,"Grandes Bruyeres",45.775895,4.733981,,1,,Europe/Paris,,DGL, +DGL:SA:S10523,1,"Grandvaux",45.771931,4.77716,,1,,Europe/Paris,,DGL, +DGL:SA:S10526,1,"Grange Blanche - Viala",45.74418,4.885533,,1,,Europe/Paris,,DGL, +DGL:SA:S10527,1,"Grange Bruyere",45.751256,4.801238,,1,,Europe/Paris,,DGL, +DGL:SA:S10528,1,"Grange Haute",45.675188,4.822667,,1,,Europe/Paris,,DGL, +DGL:SA:S10529,1,"Grange Rouge",45.731633,4.873877,,1,,Europe/Paris,,DGL, +DGL:SA:S10531,1,"Greillon",45.7672,4.8148,,1,,Europe/Paris,,DGL, +DGL:SA:S10533,1,"Greuze",45.7668,4.8939,,1,,Europe/Paris,,DGL, +DGL:SA:S10534,1,"Grezieu la Varenne",45.747334,4.691494,,1,,Europe/Paris,,DGL, +DGL:SA:S10535,1,"Gros Platane",45.837402,4.838958,,1,,Europe/Paris,,DGL, +DGL:SA:S10540,1,"Guillermin - Terraillon",45.745364,4.918611,,1,,Europe/Paris,,DGL, +DGL:SA:S10542,1,"Guimet",45.855562,4.83976,,1,,Europe/Paris,,DGL, +DGL:SA:S10543,1,"Guynemer",45.683548,4.934508,,1,,Europe/Paris,,DGL, +DGL:SA:S10544,1,"Hameau du Puy d'Or",45.819775,4.775178,,1,,Europe/Paris,,DGL, +DGL:SA:S10545,1,"Harmonie",45.747826,4.873989,,1,,Europe/Paris,,DGL, +DGL:SA:S10546,1,"Hauteclair",45.69237,4.789696,,1,,Europe/Paris,,DGL, +DGL:SA:S10547,1,"Hauteroche Centre",45.699909,4.827752,,1,,Europe/Paris,,DGL, +DGL:SA:S10548,1,"Hauts de Solaize",45.645482,4.842175,,1,,Europe/Paris,,DGL, +DGL:SA:S10553,1,"Henon - Deleuvre",45.780068,4.825363,,1,,Europe/Paris,,DGL, +DGL:SA:S10554,1,"Henri Gorjus",45.779592,4.823515,,1,,Europe/Paris,,DGL, +DGL:SA:S10555,1,"Henriette",45.74876,4.786379,,1,,Europe/Paris,,DGL, +DGL:SA:S10556,1,"Herbepin",45.713891,4.96719,,1,,Europe/Paris,,DGL, +DGL:SA:S10558,1,"Hippodrome Loup Pendu",45.815109,4.885444,,1,,Europe/Paris,,DGL, +DGL:SA:S10560,1,"HLM Republique",45.707196,4.870537,,1,,Europe/Paris,,DGL, +DGL:SA:S10562,1,"Hopital Cardiologique",45.7472,4.903326,,1,,Europe/Paris,,DGL, +DGL:SA:S10563,1,"Hopital Croix-Rousse",45.78134,4.831896,,1,,Europe/Paris,,DGL, +DGL:SA:S10564,1,"Hopital Henry Gabrielle",45.689683,4.793336,,1,,Europe/Paris,,DGL, +DGL:SA:S10565,1,"Hopital Lyon Sud",45.699813,4.80624,,1,,Europe/Paris,,DGL, +DGL:SA:S10566,1,"Hopital Neurologique",45.747845,4.898522,,1,,Europe/Paris,,DGL, +DGL:SA:S10570,1,"La Doua - INSA",45.7828,4.8776,,1,,Europe/Paris,,DGL, +DGL:SA:S10572,1,"Ile Barbe",45.795752,4.830481,,1,,Europe/Paris,,DGL, +DGL:SA:S10573,1,"Ile Roy",45.824276,4.858761,,1,,Europe/Paris,,DGL, +DGL:SA:S10574,1,"Ile Tabard",45.664643,4.826113,,1,,Europe/Paris,,DGL, +DGL:SA:S10575,1,"Impasse Mathieu",45.788247,4.839558,,1,,Europe/Paris,,DGL, +DGL:SA:S10578,1,"Irigny Gare",45.677453,4.83134,,1,,Europe/Paris,,DGL, +DGL:SA:S10580,1,"Irigny Mairie",45.672781,4.821814,,1,,Europe/Paris,,DGL, +DGL:SA:S10581,1,"Irigny Venieres",45.667363,4.819327,,1,,Europe/Paris,,DGL, +DGL:SA:S10582,1,"Jean Collet",45.780976,5.000627,,1,,Europe/Paris,,DGL, +DGL:SA:S10583,1,"J.Jaures - Malherbe",45.771382,5.015328,,1,,Europe/Paris,,DGL, +DGL:SA:S10584,1,"J.Jaures - Pommier",45.778549,5.021728,,1,,Europe/Paris,,DGL, +DGL:SA:S10586,1,"Jacobins",45.760872,4.833722,,1,,Europe/Paris,,DGL, +DGL:SA:S10587,1,"Jamen Grand",45.795019,4.840767,,1,,Europe/Paris,,DGL, +DGL:SA:S10588,1,"Jardin des Plantes",45.77105,4.828987,,1,,Europe/Paris,,DGL, +DGL:SA:S10589,1,"Jaricot",45.7596,4.8159,,1,,Europe/Paris,,DGL, +DGL:SA:S10591,1,"Jean Bart",45.7459,4.8808,,1,,Europe/Paris,,DGL, +DGL:SA:S10592,1,"Jean Giono",45.690049,4.801235,,1,,Europe/Paris,,DGL, +DGL:SA:S10596,1,"Jean Marcuit",45.789163,4.815139,,1,,Europe/Paris,,DGL, +DGL:SA:S10597,1,"College Jean Renoir",45.869533,4.845732,,1,,Europe/Paris,,DGL, +DGL:SA:S10598,1,"Jean Zay",45.7682,4.801,,1,,Europe/Paris,,DGL, +DGL:SA:S10599,1,"Joannes Carret",45.792666,4.82087,,1,,Europe/Paris,,DGL, +DGL:SA:S10600,1,"Joannes Masset",45.769525,4.801014,,1,,Europe/Paris,,DGL, +DGL:SA:S10602,1,"Joliot Curie",45.754722,4.788068,,1,,Europe/Paris,,DGL, +DGL:SA:S10603,1,"Jonage Chateau des Marres",45.799918,5.059892,,1,,Europe/Paris,,DGL, +DGL:SA:S10604,1,"Jonage Le Vivier",45.798652,5.053439,,1,,Europe/Paris,,DGL, +DGL:SA:S10605,1,"Jonage Mairie",45.796342,5.047128,,1,,Europe/Paris,,DGL, +DGL:SA:S10606,1,"Jonage Pradel",45.790349,5.041975,,1,,Europe/Paris,,DGL, +DGL:SA:S10610,1,"Decines Jules Ferry",45.763888,4.961189,,1,,Europe/Paris,,DGL, +DGL:SA:S10611,1,"Kellermann",45.713778,4.817352,,1,,Europe/Paris,,DGL, +DGL:SA:S10613,1,"Kergomard",45.69033,4.957003,,1,,Europe/Paris,,DGL, +DGL:SA:S10614,1,"Komarov",45.691747,4.872035,,1,,Europe/Paris,,DGL, +DGL:SA:S10615,1,"Kruger - Voillot",45.753461,4.910071,,1,,Europe/Paris,,DGL, +DGL:SA:S10616,1,"L'Aigas",45.770161,4.741782,,1,,Europe/Paris,,DGL, +DGL:SA:S10618,1,"L'Aventuriere",45.887048,4.835957,,1,,Europe/Paris,,DGL, +DGL:SA:S10619,1,"L'Epoux",45.804091,4.782597,,1,,Europe/Paris,,DGL, +DGL:SA:S10621,1,"L'Hormet",45.73969,4.806337,,1,,Europe/Paris,,DGL, +DGL:SA:S10622,1,"L'Oiselet",45.802701,4.802534,,1,,Europe/Paris,,DGL, +DGL:SA:S10623,1,"Gare de Francheville",45.7352,4.7683,,1,,Europe/Paris,,DGL, +DGL:SA:S10626,1,"La Baticoliere",45.816605,4.82948,,1,,Europe/Paris,,DGL, +DGL:SA:S10627,1,"La Begude",45.674851,4.860697,,1,,Europe/Paris,,DGL, +DGL:SA:S10628,1,"La Blache",45.856816,4.8085,,1,,Europe/Paris,,DGL, +DGL:SA:S10629,1,"La Blanchisserie",45.876512,4.843841,,1,,Europe/Paris,,DGL, +DGL:SA:S10633,1,"La Buissiere - Viralamande",45.803428,4.881344,,1,,Europe/Paris,,DGL, +DGL:SA:S10634,1,"La Buissonniere",45.844651,4.867785,,1,,Europe/Paris,,DGL, +DGL:SA:S10635,1,"La Bussiere",45.719622,4.803072,,1,,Europe/Paris,,DGL, +DGL:SA:S10636,1,"La Cadiere",45.7232,4.8029,,1,,Europe/Paris,,DGL, +DGL:SA:S10638,1,"La Chardonniere",45.734094,4.765186,,1,,Europe/Paris,,DGL, +DGL:SA:S10640,1,"La Chenaie - Fontanieres",45.725297,4.810871,,1,,Europe/Paris,,DGL, +DGL:SA:S10641,1,"La Chopinette",45.730526,4.743646,,1,,Europe/Paris,,DGL, +DGL:SA:S10643,1,"Collieres",45.68297,4.940632,,1,,Europe/Paris,,DGL, +DGL:SA:S10644,1,"La Combe",45.809737,4.844553,,1,,Europe/Paris,,DGL, +DGL:SA:S10646,1,"La Courtille - Bramafan",45.730949,4.801299,,1,,Europe/Paris,,DGL, +DGL:SA:S10648,1,"La Creuzette",45.830672,4.855945,,1,,Europe/Paris,,DGL, +DGL:SA:S10650,1,"La Croix",45.833619,4.771395,,1,,Europe/Paris,,DGL, +DGL:SA:S10651,1,"La Croix de Presles",45.841932,4.793303,,1,,Europe/Paris,,DGL, +DGL:SA:S10652,1,"La Croix de Solaize",45.6394,4.8438,,1,,Europe/Paris,,DGL, +DGL:SA:S10653,1,"La Dangereuse",45.853345,4.878027,,1,,Europe/Paris,,DGL, +DGL:SA:S10654,1,"La Doua",45.778979,4.871837,,1,,Europe/Paris,,DGL, +DGL:SA:S10657,1,"La Favorite",45.756227,4.806047,,1,,Europe/Paris,,DGL, +DGL:SA:S10658,1,"La Feuillee",45.7664,4.8304,,1,,Europe/Paris,,DGL, +DGL:SA:S10659,1,"La Folie",45.808046,4.881126,,1,,Europe/Paris,,DGL, +DGL:SA:S10660,1,"La Fontaine",45.740391,4.978536,,1,,Europe/Paris,,DGL, +DGL:SA:S10661,1,"La Forestiere",45.765942,4.768637,,1,,Europe/Paris,,DGL, +DGL:SA:S10662,1,"La Foret",45.864721,4.813308,,1,,Europe/Paris,,DGL, +DGL:SA:S10664,1,"La Gabrielle",45.80785,4.780048,,1,,Europe/Paris,,DGL, +DGL:SA:S10665,1,"La Gadiniere",45.669582,4.790953,,1,,Europe/Paris,,DGL, +DGL:SA:S10666,1,"La Garde ND des Minimes",45.759266,4.790409,,1,,Europe/Paris,,DGL, +DGL:SA:S10667,1,"La Garenne",45.666685,4.858782,,1,,Europe/Paris,,DGL, +DGL:SA:S10668,1,"La Grande Charriere",45.8765,4.8637,,1,,Europe/Paris,,DGL, +DGL:SA:S10669,1,"La Grande Plaine",45.715706,4.961777,,1,,Europe/Paris,,DGL, +DGL:SA:S10670,1,"La Grande Serve",45.67048,4.850142,,1,,Europe/Paris,,DGL, +DGL:SA:S10671,1,"La Grange",45.744675,4.966142,,1,,Europe/Paris,,DGL, +DGL:SA:S10672,1,"La Graviere de Beaunant",45.73405,4.77967,,1,,Europe/Paris,,DGL, +DGL:SA:S10674,1,"La Levee",45.722154,4.786923,,1,,Europe/Paris,,DGL, +DGL:SA:S10675,1,"La Madone",45.777826,4.69633,,1,,Europe/Paris,,DGL, +DGL:SA:S10676,1,"La Maillette",45.697848,4.824413,,1,,Europe/Paris,,DGL, +DGL:SA:S10677,1,"La Mouche",45.694713,4.82078,,1,,Europe/Paris,,DGL, +DGL:SA:S10679,1,"La Pagere - Les Brosses",45.748873,4.914712,,1,,Europe/Paris,,DGL, +DGL:SA:S10680,1,"Crepieux-La Pape",45.805661,4.885501,,1,,Europe/Paris,,DGL, +DGL:SA:S10681,1,"Pateliere - Millaud",45.747359,4.745677,,1,,Europe/Paris,,DGL, +DGL:SA:S10682,1,"La Pelletiere",45.807305,4.892773,,1,,Europe/Paris,,DGL, +DGL:SA:S10683,1,"La Pillardiere",45.730328,4.70322,,1,,Europe/Paris,,DGL, +DGL:SA:S10684,1,"La Plaine",45.74468,4.783581,,1,,Europe/Paris,,DGL, +DGL:SA:S10685,1,"La Poudriere",45.770477,4.816852,,1,,Europe/Paris,,DGL, +DGL:SA:S10687,1,"La Remillote",45.795453,4.804081,,1,,Europe/Paris,,DGL, +DGL:SA:S10688,1,"La Riviere",45.854788,4.804325,,1,,Europe/Paris,,DGL, +DGL:SA:S10689,1,"La Rochette - Cercle d'Aviron",45.791083,4.82242,,1,,Europe/Paris,,DGL, +DGL:SA:S10690,1,"La Roue",45.822903,4.889488,,1,,Europe/Paris,,DGL, +DGL:SA:S10692,1,"La Sarra",45.761347,4.814916,,1,,Europe/Paris,,DGL, +DGL:SA:S10693,1,"La Saulaie",45.718104,4.818244,,1,,Europe/Paris,,DGL, +DGL:SA:S10694,1,"La Sauvagere",45.795229,4.825033,,1,,Europe/Paris,,DGL, +DGL:SA:S10696,1,"La Tour",45.682701,4.861454,,1,,Europe/Paris,,DGL, +DGL:SA:S10697,1,"La Tour de Salvagny",45.815072,4.717656,,1,,Europe/Paris,,DGL, +DGL:SA:S10699,1,"La Tuilerie",45.801785,4.781838,,1,,Europe/Paris,,DGL, +DGL:SA:S10700,1,"La Velette",45.814919,4.905472,,1,,Europe/Paris,,DGL, +DGL:SA:S10701,1,"La Vernique",45.773341,4.782767,,1,,Europe/Paris,,DGL, +DGL:SA:S10702,1,"La Vigie",45.765898,4.809996,,1,,Europe/Paris,,DGL, +DGL:SA:S10703,1,"La Villette",45.756745,4.862905,,1,,Europe/Paris,,DGL, +DGL:SA:S10704,1,"La Vosne",45.877257,4.849057,,1,,Europe/Paris,,DGL, +DGL:SA:S10705,1,"La Voute",45.784255,4.808208,,1,,Europe/Paris,,DGL, +DGL:SA:S10706,1,"La Vuldy",45.758146,4.720175,,1,,Europe/Paris,,DGL, +DGL:SA:S10707,1,"Laborde",45.786416,4.812772,,1,,Europe/Paris,,DGL, +DGL:SA:S10708,1,"Lacassagne - Eugenie",45.7465,4.8875,,1,,Europe/Paris,,DGL, +DGL:SA:S10709,1,"Garibaldi - Lafayette",45.763809,4.85245,,1,,Europe/Paris,,DGL, +DGL:SA:S10710,1,"Lamothe - Madeleine",45.74549,4.848612,,1,,Europe/Paris,,DGL, +DGL:SA:S10711,1,"Lancon",45.772215,4.896146,,1,,Europe/Paris,,DGL, +DGL:SA:S10712,1,"Langevin",45.701821,4.881404,,1,,Europe/Paris,,DGL, +DGL:SA:S10713,1,"Laquay",45.692429,4.898686,,1,,Europe/Paris,,DGL, +DGL:SA:S10714,1,"Lardillet",45.685806,4.790522,,1,,Europe/Paris,,DGL, +DGL:SA:S10715,1,"Lassausaie",45.872752,4.770554,,1,,Europe/Paris,,DGL, +DGL:SA:S10717,1,"Le Bastion",45.759187,4.814311,,1,,Europe/Paris,,DGL, +DGL:SA:S10718,1,"Le Belvedere",45.732399,4.745549,,1,,Europe/Paris,,DGL, +DGL:SA:S10719,1,"Le Bochu",45.737038,4.755386,,1,,Europe/Paris,,DGL, +DGL:SA:S10720,1,"Le Broteau",45.684989,4.827399,,1,,Europe/Paris,,DGL, +DGL:SA:S10721,1,"Le Buisset",45.7241,4.8048,,1,,Europe/Paris,,DGL, +DGL:SA:S10722,1,"Le Cantin",45.842289,4.850482,,1,,Europe/Paris,,DGL, +DGL:SA:S10723,1,"RN6 - A. Pare",45.710858,4.976121,,1,,Europe/Paris,,DGL, +DGL:SA:S10724,1,"Le Chene Rond",45.794765,4.74134,,1,,Europe/Paris,,DGL, +DGL:SA:S10725,1,"Le Colin",45.807905,4.800412,,1,,Europe/Paris,,DGL, +DGL:SA:S10726,1,"Le Creuzet",45.88602,4.831991,,1,,Europe/Paris,,DGL, +DGL:SA:S10729,1,"Oullins Le Golf",45.7201,4.7826,,1,,Europe/Paris,,DGL, +DGL:SA:S10731,1,"Le Gregoire",45.815622,4.750723,,1,,Europe/Paris,,DGL, +DGL:SA:S10732,1,"Le Guillot",45.759874,4.730923,,1,,Europe/Paris,,DGL, +DGL:SA:S10733,1,"Le Meridien",45.774632,4.752377,,1,,Europe/Paris,,DGL, +DGL:SA:S10734,1,"Le Meruzin",45.817842,4.794872,,1,,Europe/Paris,,DGL, +DGL:SA:S10735,1,"Le Molard",45.771214,4.966832,,1,,Europe/Paris,,DGL, +DGL:SA:S10736,1,"Le Peage",45.69012,4.822516,,1,,Europe/Paris,,DGL, +DGL:SA:S10737,1,"Le Pelet",45.654938,4.79421,,1,,Europe/Paris,,DGL, +DGL:SA:S10740,1,"Le Plat",45.770464,4.774464,,1,,Europe/Paris,,DGL, +DGL:SA:S10741,1,"Le Prainet",45.764873,4.96622,,1,,Europe/Paris,,DGL, +DGL:SA:S10742,1,"Le Quincieux",45.765679,4.698435,,1,,Europe/Paris,,DGL, +DGL:SA:S10743,1,"Le Rafour",45.791271,4.764032,,1,,Europe/Paris,,DGL, +DGL:SA:S10744,1,"Le Relais",45.6492,4.8563,,1,,Europe/Paris,,DGL, +DGL:SA:S10746,1,"Le Rontet",45.781807,5.005854,,1,,Europe/Paris,,DGL, +DGL:SA:S10747,1,"Le Rotagnier",45.741956,4.975538,,1,,Europe/Paris,,DGL, +DGL:SA:S10748,1,"Le Roule",45.730819,4.810669,,1,,Europe/Paris,,DGL, +DGL:SA:S10749,1,"Le Roulet",45.785005,4.897667,,1,,Europe/Paris,,DGL, +DGL:SA:S10752,1,"Le Vergoin",45.804292,4.838474,,1,,Europe/Paris,,DGL, +DGL:SA:S10753,1,"Le Vernay",45.808999,4.856837,,1,,Europe/Paris,,DGL, +DGL:SA:S10754,1,"Le Vernay - Ombrosa",45.804336,4.842955,,1,,Europe/Paris,,DGL, +DGL:SA:S10755,1,"Le Villard",45.8754,4.8607,,1,,Europe/Paris,,DGL, +DGL:SA:S10756,1,"Le Visan",45.764106,4.789307,,1,,Europe/Paris,,DGL, +DGL:SA:S10757,1,"Lefevre",45.772002,4.910863,,1,,Europe/Paris,,DGL, +DGL:SA:S10759,1,"Leon Berard",45.7413,4.8792,,1,,Europe/Paris,,DGL, +DGL:SA:S10760,1,"Leon Bourgeois",45.727799,4.900879,,1,,Europe/Paris,,DGL, +DGL:SA:S10761,1,"Leon Favre",45.743424,4.807456,,1,,Europe/Paris,,DGL, +DGL:SA:S10763,1,"Les Anemones",45.727693,5.005432,,1,,Europe/Paris,,DGL, +DGL:SA:S10764,1,"Les Anzieux",45.850181,4.837666,,1,,Europe/Paris,,DGL, +DGL:SA:S10765,1,"Les Arpinieres",45.734737,4.749379,,1,,Europe/Paris,,DGL, +DGL:SA:S10766,1,"Les Aulnes",45.810092,4.759651,,1,,Europe/Paris,,DGL, +DGL:SA:S10767,1,"Les Balmes",45.664723,4.894939,,1,,Europe/Paris,,DGL, +DGL:SA:S10768,1,"Les Balmones",45.829444,4.771757,,1,,Europe/Paris,,DGL, +DGL:SA:S10771,1,"Les Battieres",45.754492,4.782102,,1,,Europe/Paris,,DGL, +DGL:SA:S10772,1,"Les Biesses",45.792803,5.037444,,1,,Europe/Paris,,DGL, +DGL:SA:S10773,1,"Les Bluets",45.781879,4.897785,,1,,Europe/Paris,,DGL, +DGL:SA:S10774,1,"Les Bottieres",45.721485,4.793865,,1,,Europe/Paris,,DGL, +DGL:SA:S10775,1,"Les Brosses de Marcy",45.775707,4.705301,,1,,Europe/Paris,,DGL, +DGL:SA:S10776,1,"Les Broussatieres",45.726884,4.696852,,1,,Europe/Paris,,DGL, +DGL:SA:S10777,1,"Les Bruyeres",45.817639,4.866127,,1,,Europe/Paris,,DGL, +DGL:SA:S10778,1,"Fort de Vaise ? Les Carriers",45.770252,4.809278,,1,,Europe/Paris,,DGL, +DGL:SA:S10779,1,"Les Cedres",45.740321,4.955411,,1,,Europe/Paris,,DGL, +DGL:SA:S10780,1,"Les Selettes",45.658529,4.820568,,1,,Europe/Paris,,DGL, +DGL:SA:S10781,1,"Les Chaux",45.736259,4.752447,,1,,Europe/Paris,,DGL, +DGL:SA:S10782,1,"Les Chavannes",45.8563,4.7965,,1,,Europe/Paris,,DGL, +DGL:SA:S10783,1,"Les Chenes",45.74317,4.95583,,1,,Europe/Paris,,DGL, +DGL:SA:S10784,1,"Les Chevalieres",45.810343,4.83817,,1,,Europe/Paris,,DGL, +DGL:SA:S10785,1,"Les Cigales",45.683837,4.824136,,1,,Europe/Paris,,DGL, +DGL:SA:S10787,1,"Les Coquelicots",45.765609,4.747544,,1,,Europe/Paris,,DGL, +DGL:SA:S10788,1,"Les Cotes",45.68717,4.822604,,1,,Europe/Paris,,DGL, +DGL:SA:S10789,1,"Les Coutures",45.725549,4.804315,,1,,Europe/Paris,,DGL, +DGL:SA:S10790,1,"Les Dauphins",45.659415,4.905226,,1,,Europe/Paris,,DGL, +DGL:SA:S10792,1,"Les Dominicaines",45.654417,4.815589,,1,,Europe/Paris,,DGL, +DGL:SA:S10793,1,"Les Eaux",45.789888,4.857672,,1,,Europe/Paris,,DGL, +DGL:SA:S10794,1,"Les Epinettes",45.835745,4.876991,,1,,Europe/Paris,,DGL, +DGL:SA:S10795,1,"Les Essarts",45.732776,4.898945,,1,,Europe/Paris,,DGL, +DGL:SA:S10796,1,"Les Esses",45.772168,4.81813,,1,,Europe/Paris,,DGL, +DGL:SA:S10797,1,"Les Etroits",45.750565,4.819368,,1,,Europe/Paris,,DGL, +DGL:SA:S10799,1,"Les Fraisiers",45.673318,4.787621,,1,,Europe/Paris,,DGL, +DGL:SA:S10801,1,"Les Gambins",45.8527,4.7961,,1,,Europe/Paris,,DGL, +DGL:SA:S10802,1,"Les Gaulnes",45.791526,5.034042,,1,,Europe/Paris,,DGL, +DGL:SA:S10803,1,"Les Geraniums",45.66649,4.862053,,1,,Europe/Paris,,DGL, +DGL:SA:S10804,1,"Les Glaieuls",45.685518,4.942518,,1,,Europe/Paris,,DGL, +DGL:SA:S10805,1,"Les Grandes Terres",45.735899,4.977992,,1,,Europe/Paris,,DGL, +DGL:SA:S10806,1,"Les Grandes Treves",45.759804,4.715322,,1,,Europe/Paris,,DGL, +DGL:SA:S10807,1,"Les Greffieres",45.811794,4.819025,,1,,Europe/Paris,,DGL, +DGL:SA:S10808,1,"Les Grillons",45.746352,4.958501,,1,,Europe/Paris,,DGL, +DGL:SA:S10810,1,"Les Hautannes",45.8794,4.8008,,1,,Europe/Paris,,DGL, +DGL:SA:S10811,1,"Les Hautpres",45.758729,4.734004,,1,,Europe/Paris,,DGL, +DGL:SA:S10812,1,"Les Ifs",45.716097,4.796393,,1,,Europe/Paris,,DGL, +DGL:SA:S10815,1,"Les Lauriers",45.8807,4.866,,1,,Europe/Paris,,DGL, +DGL:SA:S10817,1,"Champvert - Les Massues",45.759767,4.795986,,1,,Europe/Paris,,DGL, +DGL:SA:S10818,1,"Les Maures",45.66395,4.857678,,1,,Europe/Paris,,DGL, +DGL:SA:S10819,1,"Les Meurieres",45.679905,4.94914,,1,,Europe/Paris,,DGL, +DGL:SA:S10821,1,"Les Mollieres",45.84029,4.848285,,1,,Europe/Paris,,DGL, +DGL:SA:S10822,1,"Les Mouettes",45.782663,5.024691,,1,,Europe/Paris,,DGL, +DGL:SA:S10824,1,"Les Muriers",45.696222,4.825768,,1,,Europe/Paris,,DGL, +DGL:SA:S10825,1,"Centre Nautique.",45.763806,4.956099,,1,,Europe/Paris,,DGL, +DGL:SA:S10826,1,"Les Noyeraies",45.810767,4.751089,,1,,Europe/Paris,,DGL, +DGL:SA:S10827,1,"Les Oiseaux",45.6404,4.8028,,1,,Europe/Paris,,DGL, +DGL:SA:S10828,1,"Les Oliviers",45.686881,4.787068,,1,,Europe/Paris,,DGL, +DGL:SA:S10829,1,"Les Oncheres",45.777398,4.925538,,1,,Europe/Paris,,DGL, +DGL:SA:S10830,1,"Les Ormes",45.806822,4.821014,,1,,Europe/Paris,,DGL, +DGL:SA:S10831,1,"Les Pepinieres",45.759293,4.808664,,1,,Europe/Paris,,DGL, +DGL:SA:S10832,1,"Les Pervenches",45.855187,4.874158,,1,,Europe/Paris,,DGL, +DGL:SA:S10833,1,"Les Peupliers - RN 7",45.802161,4.739392,,1,,Europe/Paris,,DGL, +DGL:SA:S10836,1,"Les Pommieres",45.756927,4.809246,,1,,Europe/Paris,,DGL, +DGL:SA:S10837,1,"Les Provences",45.735426,4.792396,,1,,Europe/Paris,,DGL, +DGL:SA:S10838,1,"Les Pyes",45.738741,4.963139,,1,,Europe/Paris,,DGL, +DGL:SA:S10839,1,"Les Roches",45.777153,4.795079,,1,,Europe/Paris,,DGL, +DGL:SA:S10840,1,"Les Roussettes",45.677708,4.861938,,1,,Europe/Paris,,DGL, +DGL:SA:S10841,1,"Les Sapins",45.673141,4.783235,,1,,Europe/Paris,,DGL, +DGL:SA:S10842,1,"Les Sources",45.792564,4.782624,,1,,Europe/Paris,,DGL, +DGL:SA:S10843,1,"Les Sources - La Romaine",45.79018,4.784049,,1,,Europe/Paris,,DGL, +DGL:SA:S10844,1,"Corbas Les Taillis",45.670747,4.908973,,1,,Europe/Paris,,DGL, +DGL:SA:S10846,1,"Les Terres St G. les Ollieres",45.760882,4.705745,,1,,Europe/Paris,,DGL, +DGL:SA:S10847,1,"Les Tilleuls",45.798207,4.803671,,1,,Europe/Paris,,DGL, +DGL:SA:S10849,1,"Les Tours",45.7808,4.796,,1,,Europe/Paris,,DGL, +DGL:SA:S10850,1,"Les Troenes",45.733531,4.991556,,1,,Europe/Paris,,DGL, +DGL:SA:S10853,1,"Les Villas",45.81813,4.773419,,1,,Europe/Paris,,DGL, +DGL:SA:S10854,1,"Les Violettes",45.6671,4.8666,,1,,Europe/Paris,,DGL, +DGL:SA:S10855,1,"Lesire",45.780874,4.913762,,1,,Europe/Paris,,DGL, +DGL:SA:S10856,1,"Letra",45.828587,4.79214,,1,,Europe/Paris,,DGL, +DGL:SA:S10859,1,"Limonest Centre",45.837526,4.771594,,1,,Europe/Paris,,DGL, +DGL:SA:S10860,1,"Limonest Cimetiere",45.84283,4.768564,,1,,Europe/Paris,,DGL, +DGL:SA:S10861,1,"Limonest Place",45.835639,4.77142,,1,,Europe/Paris,,DGL, +DGL:SA:S10863,1,"Longchamp",45.781314,4.885633,,1,,Europe/Paris,,DGL, +DGL:SA:S10864,1,"Longefer",45.739739,4.88095,,1,,Europe/Paris,,DGL, +DGL:SA:S10865,1,"Lopofa",45.697246,4.934036,,1,,Europe/Paris,,DGL, +DGL:SA:S10866,1,"Lorette",45.707352,4.798225,,1,,Europe/Paris,,DGL, +DGL:SA:S10868,1,"Louis Braille",45.695982,4.94952,,1,,Europe/Paris,,DGL, +DGL:SA:S10869,1,"Louise Michel",45.77428,4.893981,,1,,Europe/Paris,,DGL, +DGL:SA:S10871,1,"Ludovic Bonin",45.727041,4.853862,,1,,Europe/Paris,,DGL, +DGL:SA:S10872,1,"Luther King",45.732295,4.901378,,1,,Europe/Paris,,DGL, +DGL:SA:S10873,1,"Luzy",45.756216,4.801858,,1,,Europe/Paris,,DGL, +DGL:SA:S10878,1,"Lycee Jean Perrin",45.794381,4.814739,,1,,Europe/Paris,,DGL, +DGL:SA:S10882,1,"Lyon-Plage",45.788459,4.818982,,1,,Europe/Paris,,DGL, +DGL:SA:S10884,1,"Machy",45.87173,4.756366,,1,,Europe/Paris,,DGL, +DGL:SA:S10885,1,"Maconniere",45.6478,4.8041,,1,,Europe/Paris,,DGL, +DGL:SA:S10892,1,"Mairie de Sainte Foy",45.734994,4.799063,,1,,Europe/Paris,,DGL, +DGL:SA:S10893,1,"Mairie de Villeurbanne",45.766603,4.880264,,1,,Europe/Paris,,DGL, +DGL:SA:S10894,1,"Mairie du 4eme",45.77405,4.827831,,1,,Europe/Paris,,DGL, +DGL:SA:S10895,1,"Mairie du 5eme",45.75799,4.801012,,1,,Europe/Paris,,DGL, +DGL:SA:S10899,1,"Centre Hospitalier Mont d'Or",45.85995,4.835122,,1,,Europe/Paris,,DGL, +DGL:SA:S10901,1,"Maison des Pretres",45.651408,4.81306,,1,,Europe/Paris,,DGL, +DGL:SA:S10902,1,"Maisons Neuves",45.756003,4.876078,,1,,Europe/Paris,,DGL, +DGL:SA:S10903,1,"Manissieux Clemenceau",45.703845,4.98329,,1,,Europe/Paris,,DGL, +DGL:SA:S10904,1,"Manissieux Place Balzac",45.706396,4.978097,,1,,Europe/Paris,,DGL, +DGL:SA:S10906,1,"Marais",45.785489,4.901517,,1,,Europe/Paris,,DGL, +DGL:SA:S10907,1,"Marcel Pagnol",45.712805,4.888154,,1,,Europe/Paris,,DGL, +DGL:SA:S10909,1,"Marcy I.N.T.",45.786443,4.714544,,1,,Europe/Paris,,DGL, +DGL:SA:S10910,1,"Marcy l'Etoile",45.78183,4.70561,,1,,Europe/Paris,,DGL, +DGL:SA:S10912,1,"Marcy l'Orme",45.77908,4.705976,,1,,Europe/Paris,,DGL, +DGL:SA:S10913,1,"Marcy Vercheres",45.785947,4.706675,,1,,Europe/Paris,,DGL, +DGL:SA:S10915,1,"Margnolles - Pasteur",45.785374,4.837961,,1,,Europe/Paris,,DGL, +DGL:SA:S10916,1,"Marius Grosso",45.762897,4.929969,,1,,Europe/Paris,,DGL, +DGL:SA:S10917,1,"Marius Poncet",45.758338,4.737787,,1,,Europe/Paris,,DGL, +DGL:SA:S10918,1,"Marjolet",45.677133,4.824238,,1,,Europe/Paris,,DGL, +DGL:SA:S10919,1,"Marne - Lacouture",45.742741,4.910359,,1,,Europe/Paris,,DGL, +DGL:SA:S10920,1,"Marne - Pagere",45.742029,4.915671,,1,,Europe/Paris,,DGL, +DGL:SA:S10921,1,"Marronniers",45.814669,4.862072,,1,,Europe/Paris,,DGL, +DGL:SA:S10923,1,"Maryse Bastie",45.7347,4.874695,,1,,Europe/Paris,,DGL, +DGL:SA:S10924,1,"Mas du Taureau",45.785241,4.910763,,1,,Europe/Paris,,DGL, +DGL:SA:S10926,1,"Massard",45.72796,5.018195,,1,,Europe/Paris,,DGL, +DGL:SA:S10930,1,"Menival Centre",45.756802,4.785991,,1,,Europe/Paris,,DGL, +DGL:SA:S10933,1,"Merlo",45.719,4.787329,,1,,Europe/Paris,,DGL, +DGL:SA:S10934,1,"Merlus",45.718673,4.790733,,1,,Europe/Paris,,DGL, +DGL:SA:S10937,1,"Meyzieu Centre social",45.7638,5.0018,,1,,Europe/Paris,,DGL, +DGL:SA:S10939,1,"Fenelon",45.774374,5.018394,,1,,Europe/Paris,,DGL, +DGL:SA:S10940,1,"Meyzieu Gadelles",45.778616,5.017897,,1,,Europe/Paris,,DGL, +DGL:SA:S10943,1,"Meyzieu Le Carreau",45.77555,4.989858,,1,,Europe/Paris,,DGL, +DGL:SA:S10944,1,"Pommier Liberation",45.776561,4.998155,,1,,Europe/Paris,,DGL, +DGL:SA:S10946,1,"Meyzieu Mendes France",45.766151,4.990725,,1,,Europe/Paris,,DGL, +DGL:SA:S10948,1,"Meyzieu Plantees",45.760556,5.011581,,1,,Europe/Paris,,DGL, +DGL:SA:S10951,1,"Mi Plaine - Pelossier",45.717497,4.95802,,1,,Europe/Paris,,DGL, +DGL:SA:S10952,1,"Michelet",45.812343,4.890389,,1,,Europe/Paris,,DGL, +DGL:SA:S10955,1,"Minguettes Darnaise",45.690556,4.866075,,1,,Europe/Paris,,DGL, +DGL:SA:S10958,1,"Mions Jules Valles",45.654151,4.949539,,1,,Europe/Paris,,DGL, +DGL:SA:S10959,1,"Mions Mairie",45.664109,4.957733,,1,,Europe/Paris,,DGL, +DGL:SA:S10960,1,"Mions Poste",45.669449,4.950207,,1,,Europe/Paris,,DGL, +DGL:SA:S10961,1,"Momet",45.779373,4.75101,,1,,Europe/Paris,,DGL, +DGL:SA:S10962,1,"Moncey - Bonnel",45.7619,4.8501,,1,,Europe/Paris,,DGL, +DGL:SA:S10963,1,"Monge",45.750716,4.90969,,1,,Europe/Paris,,DGL, +DGL:SA:S10966,1,"Monplaisir La Plaine",45.726199,4.880215,,1,,Europe/Paris,,DGL, +DGL:SA:S10967,1,"Mont Blanc",45.724408,4.887149,,1,,Europe/Paris,,DGL, +DGL:SA:S10969,1,"Mont-Louis",45.717549,4.7911,,1,,Europe/Paris,,DGL, +DGL:SA:S10970,1,"Mont Saint Paul",45.746565,4.964985,,1,,Europe/Paris,,DGL, +DGL:SA:S10971,1,"Montagny",45.732419,4.853478,,1,,Europe/Paris,,DGL, +DGL:SA:S10975,1,"Montanay Les Dimes",45.8778,4.8679,,1,,Europe/Paris,,DGL, +DGL:SA:S10977,1,"Montanay Mairie",45.87883,4.858522,,1,,Europe/Paris,,DGL, +DGL:SA:S10978,1,"Montchat Kimmerling",45.752816,4.898854,,1,,Europe/Paris,,DGL, +DGL:SA:S10979,1,"Montchat Pinel",45.752896,4.89524,,1,,Europe/Paris,,DGL, +DGL:SA:S10981,1,"Montcourant",45.809276,4.733075,,1,,Europe/Paris,,DGL, +DGL:SA:S10982,1,"Montee de Champagne",45.790632,4.802655,,1,,Europe/Paris,,DGL, +DGL:SA:S10983,1,"Montee des Soldats",45.795426,4.858602,,1,,Europe/Paris,,DGL, +DGL:SA:S10984,1,"Louis Bouquet",45.797975,4.818888,,1,,Europe/Paris,,DGL, +DGL:SA:S10985,1,"Montessuy Calmette",45.79158,4.843409,,1,,Europe/Paris,,DGL, +DGL:SA:S10986,1,"Montessuy Fleming",45.794444,4.846642,,1,,Europe/Paris,,DGL, +DGL:SA:S10987,1,"Montessuy Gutenberg",45.795,4.8492,,1,,Europe/Paris,,DGL, +DGL:SA:S10988,1,"Montessuy Hauts St Clair",45.794295,4.848914,,1,,Europe/Paris,,DGL, +DGL:SA:S10989,1,"Montferrat",45.740497,4.920433,,1,,Europe/Paris,,DGL, +DGL:SA:S10990,1,"Montfort",45.862407,4.752483,,1,,Europe/Paris,,DGL, +DGL:SA:S10991,1,"Montgay Ampere",45.822561,4.862995,,1,,Europe/Paris,,DGL, +DGL:SA:S10993,1,"Montgolfier",45.72742,4.964167,,1,,Europe/Paris,,DGL, +DGL:SA:S10994,1,"Mont Louis",45.78984,4.78745,,1,,Europe/Paris,,DGL, +DGL:SA:S10995,1,"Lissieu - Montluzin",45.871127,4.748821,,1,,Europe/Paris,,DGL, +DGL:SA:S10996,1,"Corbas Les Roses",45.680937,4.912489,,1,,Europe/Paris,,DGL, +DGL:SA:S10997,1,"Montmein Centre",45.70793,4.806968,,1,,Europe/Paris,,DGL, +DGL:SA:S10998,1,"Montmein Nord",45.710105,4.806064,,1,,Europe/Paris,,DGL, +DGL:SA:S10999,1,"Montmein Sud",45.706164,4.808476,,1,,Europe/Paris,,DGL, +DGL:SA:S11000,1,"Montribloud",45.766775,4.791149,,1,,Europe/Paris,,DGL, +DGL:SA:S11002,1,"Moselle - Trinite",45.732283,4.882232,,1,,Europe/Paris,,DGL, +DGL:SA:S11003,1,"Moulin a Vent",45.729161,4.853371,,1,,Europe/Paris,,DGL, +DGL:SA:S11004,1,"Moulin Carron",45.78925,4.77962,,1,,Europe/Paris,,DGL, +DGL:SA:S11005,1,"Moulin d'Amont",45.773402,4.980977,,1,,Europe/Paris,,DGL, +DGL:SA:S11006,1,"La Mulatiere Belle Rive",45.740213,4.812055,,1,,Europe/Paris,,DGL, +DGL:SA:S11007,1,"Maison du Confluent",45.726044,4.816598,,1,,Europe/Paris,,DGL, +DGL:SA:S11008,1,"Murget",45.737535,4.975988,,1,,Europe/Paris,,DGL, +DGL:SA:S11009,1,"Musset - Poudrette",45.757762,4.921439,,1,,Europe/Paris,,DGL, +DGL:SA:S11010,1,"Nicolas Garnier - Poudrette",45.75537,4.921144,,1,,Europe/Paris,,DGL, +DGL:SA:S11011,1,"Nadaud - Vitriolerie",45.743373,4.833943,,1,,Europe/Paris,,DGL, +DGL:SA:S11012,1,"Narcel",45.729267,4.796115,,1,,Europe/Paris,,DGL, +DGL:SA:S11021,1,"Niepce",45.7796,4.8164,,1,,Europe/Paris,,DGL, +DGL:SA:S11022,1,"Noailleux",45.846832,4.868069,,1,,Europe/Paris,,DGL, +DGL:SA:S11023,1,"Norenchal",45.836088,4.847011,,1,,Europe/Paris,,DGL, +DGL:SA:S11026,1,"Notre Dame du Grand Port",45.819531,4.840488,,1,,Europe/Paris,,DGL, +DGL:SA:S11027,1,"Nouveau cimetiere Rillieux",45.824099,4.906114,,1,,Europe/Paris,,DGL, +DGL:SA:S11028,1,"Nouveau cimetiere Venissieux",45.69017,4.880677,,1,,Europe/Paris,,DGL, +DGL:SA:S11030,1,"Novy Jicin",45.696134,4.89706,,1,,Europe/Paris,,DGL, +DGL:SA:S11031,1,"Oasis",45.714993,4.80113,,1,,Europe/Paris,,DGL, +DGL:SA:S11032,1,"Observance",45.768413,4.809595,,1,,Europe/Paris,,DGL, +DGL:SA:S11033,1,"Oullins Clement Desormes",45.7223,4.8042,,1,,Europe/Paris,,DGL, +DGL:SA:S11035,1,"Oullins Mairie",45.71446,4.807081,,1,,Europe/Paris,,DGL, +DGL:SA:S11036,1,"Oullins Ville",45.71206,4.802327,,1,,Europe/Paris,,DGL, +DGL:SA:S11040,1,"Pan Perdu",45.683555,4.927021,,1,,Europe/Paris,,DGL, +DGL:SA:S11041,1,"Panorama",45.797469,4.875798,,1,,Europe/Paris,,DGL, +DGL:SA:S11042,1,"Gargantua",45.821254,4.757648,,1,,Europe/Paris,,DGL, +DGL:SA:S11043,1,"Parc de Lacroix-Laval",45.784356,4.717909,,1,,Europe/Paris,,DGL, +DGL:SA:S11050,1,"Parc Tete d'Or-Churchill",45.777041,4.844774,,1,,Europe/Paris,,DGL, +DGL:SA:S11051,1,"Parc Tete d'Or - Duquesne",45.773337,4.850768,,1,,Europe/Paris,,DGL, +DGL:SA:S11052,1,"Paris",45.824799,4.773425,,1,,Europe/Paris,,DGL, +DGL:SA:S11055,1,"Les Saules",45.817617,4.75893,,1,,Europe/Paris,,DGL, +DGL:SA:S11057,1,"Part-Dieu Auditorium",45.7622,4.8531,,1,,Europe/Paris,,DGL, +DGL:SA:S11061,1,"Part-Dieu Jules Favre",45.763868,4.858143,,1,,Europe/Paris,,DGL, +DGL:SA:S11062,1,"Part-Dieu Renaudel",45.757359,4.858635,,1,,Europe/Paris,,DGL, +DGL:SA:S11065,1,"Passage Comtois",45.729499,4.876017,,1,,Europe/Paris,,DGL, +DGL:SA:S11066,1,"Passerelle Palais Justice",45.7611,4.8312,,1,,Europe/Paris,,DGL, +DGL:SA:S11067,1,"La Boutasse",45.733835,5.018141,,1,,Europe/Paris,,DGL, +DGL:SA:S11068,1,"Paul Bert - Baraban",45.7568,4.8673,,1,,Europe/Paris,,DGL, +DGL:SA:S11069,1,"Paul Bert - Turbil",45.7567,4.8684,,1,,Europe/Paris,,DGL, +DGL:SA:S11071,1,"Paul Chevalier",45.82366,4.894789,,1,,Europe/Paris,,DGL, +DGL:SA:S11072,1,"Paul Santy",45.770818,4.770795,,1,,Europe/Paris,,DGL, +DGL:SA:S11073,1,"Pavillon Chirurgical",45.7028,4.8079,,1,,Europe/Paris,,DGL, +DGL:SA:S11080,1,"Pelloutier",45.687582,4.902583,,1,,Europe/Paris,,DGL, +DGL:SA:S11081,1,"Pennachy",45.695454,4.807577,,1,,Europe/Paris,,DGL, +DGL:SA:S11082,1,"Penon",45.666758,4.962443,,1,,Europe/Paris,,DGL, +DGL:SA:S11083,1,"Pensionnat",45.736009,5.016826,,1,,Europe/Paris,,DGL, +DGL:SA:S11090,1,"Perroncel",45.776099,4.882176,,1,,Europe/Paris,,DGL, +DGL:SA:S11092,1,"Petit Perron",45.698554,4.808063,,1,,Europe/Paris,,DGL, +DGL:SA:S11093,1,"Petit Sainte Foy",45.745701,4.8093,,1,,Europe/Paris,,DGL, +DGL:SA:S11094,1,"Petit Versailles",45.788355,4.853202,,1,,Europe/Paris,,DGL, +DGL:SA:S11095,1,"Petite Guille",45.731281,4.858963,,1,,Europe/Paris,,DGL, +DGL:SA:S11096,1,"Peupliers",45.793806,4.871382,,1,,Europe/Paris,,DGL, +DGL:SA:S11097,1,"Peyssilieu",45.769658,4.987235,,1,,Europe/Paris,,DGL, +DGL:SA:S11100,1,"Picard",45.707796,4.865303,,1,,Europe/Paris,,DGL, +DGL:SA:S11101,1,"Pierre Audry",45.762044,4.808415,,1,,Europe/Paris,,DGL, +DGL:SA:S11102,1,"Pierre-Benite Centre",45.703082,4.821075,,1,,Europe/Paris,,DGL, +DGL:SA:S11103,1,"Pierre-Benite Hauteroche",45.700186,4.822986,,1,,Europe/Paris,,DGL, +DGL:SA:S11105,1,"Pierre Drevet",45.807596,4.871993,,1,,Europe/Paris,,DGL, +DGL:SA:S11106,1,"Pierre Joseph Proudhon",45.773775,4.89079,,1,,Europe/Paris,,DGL, +DGL:SA:S11107,1,"Pierre Scize",45.7673,4.8232,,1,,Europe/Paris,,DGL, +DGL:SA:S11108,1,"Pierre Blanche",45.821642,4.751213,,1,,Europe/Paris,,DGL, +DGL:SA:S11109,1,"Pinel - Laennec",45.735289,4.889196,,1,,Europe/Paris,,DGL, +DGL:SA:S11114,1,"Place Docteurs Merieux",45.733131,4.825349,,1,,Europe/Paris,,DGL, +DGL:SA:S11117,1,"Place Bertone",45.7777,4.8348,,1,,Europe/Paris,,DGL, +DGL:SA:S11118,1,"Place Croix-Luizet",45.780305,4.882523,,1,,Europe/Paris,,DGL, +DGL:SA:S11124,1,"Place des Buers",45.779518,4.89177,,1,,Europe/Paris,,DGL, +DGL:SA:S11126,1,"Place Ennemond Romand",45.723442,4.858613,,1,,Europe/Paris,,DGL, +DGL:SA:S11127,1,"Place Flammarion",45.779627,4.820635,,1,,Europe/Paris,,DGL, +DGL:SA:S11131,1,"Place Henri",45.748348,4.879561,,1,,Europe/Paris,,DGL, +DGL:SA:S11133,1,"Place Stalingrad",45.749438,4.852775,,1,,Europe/Paris,,DGL, +DGL:SA:S11134,1,"Place Wilson",45.774388,4.868455,,1,,Europe/Paris,,DGL, +DGL:SA:S11136,1,"Plambeau",45.853438,4.758568,,1,,Europe/Paris,,DGL, +DGL:SA:S11137,1,"Plan du Loup (Les Razes)",45.735291,4.786114,,1,,Europe/Paris,,DGL, +DGL:SA:S11138,1,"Point du Jour",45.756578,4.797239,,1,,Europe/Paris,,DGL, +DGL:SA:S11139,1,"Poleymieux Eglise",45.8577,4.8025,,1,,Europe/Paris,,DGL, +DGL:SA:S11140,1,"Poleymieux La Tour",45.8613,4.7987,,1,,Europe/Paris,,DGL, +DGL:SA:S11141,1,"Poleymieux Mairie",45.8566,4.7997,,1,,Europe/Paris,,DGL, +DGL:SA:S11144,1,"Polyclinique de Rillieux",45.822403,4.887327,,1,,Europe/Paris,,DGL, +DGL:SA:S11146,1,"Poncettes",45.753445,4.804865,,1,,Europe/Paris,,DGL, +DGL:SA:S11147,1,"Porte de Lyon",45.821592,4.76297,,1,,Europe/Paris,,DGL, +DGL:SA:S11149,1,"Professeur Guerin",45.764488,4.806576,,1,,Europe/Paris,,DGL, +DGL:SA:S11151,1,"Pre Gaudry",45.737522,4.839803,,1,,Europe/Paris,,DGL, +DGL:SA:S11152,1,"Pre Gaudry - Yves Farge",45.741992,4.833109,,1,,Europe/Paris,,DGL, +DGL:SA:S11154,1,"Professeur Roux",45.720709,4.858992,,1,,Europe/Paris,,DGL, +DGL:SA:S11156,1,"Proudhon",45.760397,4.955518,,1,,Europe/Paris,,DGL, +DGL:SA:S11157,1,"Pont Blanc",45.719806,4.799431,,1,,Europe/Paris,,DGL, +DGL:SA:S11158,1,"Pont Bonaparte",45.7597,4.83,,1,,Europe/Paris,,DGL, +DGL:SA:S11159,1,"Pont Churchill RD",45.779239,4.840898,,1,,Europe/Paris,,DGL, +DGL:SA:S11160,1,"Pont Clemenceau",45.776403,4.810323,,1,,Europe/Paris,,DGL, +DGL:SA:S11161,1,"Pont d'Ecully",45.772984,4.791608,,1,,Europe/Paris,,DGL, +DGL:SA:S11162,1,"Pont d'Oullins",45.717977,4.809449,,1,,Europe/Paris,,DGL, +DGL:SA:S11164,1,"Pont de Bourgoin",45.7162,4.8546,,1,,Europe/Paris,,DGL, +DGL:SA:S11165,1,"Pont de Collonges RD",45.815061,4.846191,,1,,Europe/Paris,,DGL, +DGL:SA:S11166,1,"Pont de Collonges RG",45.813104,4.847963,,1,,Europe/Paris,,DGL, +DGL:SA:S11169,1,"Pont de Fontaines",45.832326,4.848853,,1,,Europe/Paris,,DGL, +DGL:SA:S11170,1,"Pont de l'Universite",45.753934,4.834048,,1,,Europe/Paris,,DGL, +DGL:SA:S11171,1,"Pont de la Graviere",45.728325,4.779904,,1,,Europe/Paris,,DGL, +DGL:SA:S11172,1,"Pont Guillotiere RD",45.758686,4.837226,,1,,Europe/Paris,,DGL, +DGL:SA:S11173,1,"Pont de La Mulatiere",45.729971,4.815338,,1,,Europe/Paris,,DGL, +DGL:SA:S11174,1,"Pont de la Sucrerie",45.772927,4.933456,,1,,Europe/Paris,,DGL, +DGL:SA:S11175,1,"Pont De Lattre RD",45.773377,4.838532,,1,,Europe/Paris,,DGL, +DGL:SA:S11178,1,"Pont des Planches",45.770835,4.907698,,1,,Europe/Paris,,DGL, +DGL:SA:S11180,1,"Pont Gallieni RD",45.750649,4.831985,,1,,Europe/Paris,,DGL, +DGL:SA:S11188,1,"Pont Morand RG",45.7693,4.841,,1,,Europe/Paris,,DGL, +DGL:SA:S11189,1,"Pont Mouton",45.773512,4.809605,,1,,Europe/Paris,,DGL, +DGL:SA:S11191,1,"Pont Rouge",45.723601,4.783524,,1,,Europe/Paris,,DGL, +DGL:SA:S11193,1,"Pyrenees",45.721488,4.854231,,1,,Europe/Paris,,DGL, +DGL:SA:S11195,1,"Quai Gillet",45.771918,4.813648,,1,,Europe/Paris,,DGL, +DGL:SA:S11197,1,"Quarantaine",45.754,4.8236,,1,,Europe/Paris,,DGL, +DGL:SA:S11198,1,"Quatre Chemins",45.741067,4.690731,,1,,Europe/Paris,,DGL, +DGL:SA:S11201,1,"Rancy",45.755689,4.852183,,1,,Europe/Paris,,DGL, +DGL:SA:S11202,1,"Raspail",45.7552,4.8395,,1,,Europe/Paris,,DGL, +DGL:SA:S11205,1,"Rond Point de Vancia",45.831727,4.908904,,1,,Europe/Paris,,DGL, +DGL:SA:S11208,1,"Republique - Reaux",45.730158,5.007203,,1,,Europe/Paris,,DGL, +DGL:SA:S11210,1,"Reims",45.739233,4.910841,,1,,Europe/Paris,,DGL, +DGL:SA:S11216,1,"Residence",45.779189,4.770513,,1,,Europe/Paris,,DGL, +DGL:SA:S11217,1,"Residence Bertrand",45.7842,4.8226,,1,,Europe/Paris,,DGL, +DGL:SA:S11218,1,"Residence Le Parc",45.7759,4.8174,,1,,Europe/Paris,,DGL, +DGL:SA:S11219,1,"Revaison",45.701732,4.917535,,1,,Europe/Paris,,DGL, +DGL:SA:S11220,1,"Rillieux Industrie",45.820547,4.877276,,1,,Europe/Paris,,DGL, +DGL:SA:S11221,1,"Rillieux Les Manges",45.811731,4.887372,,1,,Europe/Paris,,DGL, +DGL:SA:S11223,1,"Rillieux Piscine",45.816116,4.887673,,1,,Europe/Paris,,DGL, +DGL:SA:S11224,1,"Rillieux Salignat",45.821094,4.896401,,1,,Europe/Paris,,DGL, +DGL:SA:S11225,1,"Rillieux Semailles",45.819396,4.908661,,1,,Europe/Paris,,DGL, +DGL:SA:S11226,1,"Centre Culturel",45.778705,4.778917,,1,,Europe/Paris,,DGL, +DGL:SA:S11227,1,"Robespierre",45.700682,4.948304,,1,,Europe/Paris,,DGL, +DGL:SA:S11228,1,"Rochecardon",45.787464,4.808586,,1,,Europe/Paris,,DGL, +DGL:SA:S11229,1,"Rochetaillee",45.842513,4.83496,,1,,Europe/Paris,,DGL, +DGL:SA:S11235,1,"Rouget de l'Isle",45.754511,4.866625,,1,,Europe/Paris,,DGL, +DGL:SA:S11236,1,"Route de Corbas",45.69055,4.890873,,1,,Europe/Paris,,DGL, +DGL:SA:S11237,1,"Route de Mions",45.684488,4.947414,,1,,Europe/Paris,,DGL, +DGL:SA:S11239,1,"Rouville",45.769416,4.823505,,1,,Europe/Paris,,DGL, +DGL:SA:S11241,1,"Rue d'Ypres",45.781571,4.812662,,1,,Europe/Paris,,DGL, +DGL:SA:S11242,1,"Challemel Lacour",45.730221,4.837459,,1,,Europe/Paris,,DGL, +DGL:SA:S11243,1,"Rue de l'Aviation",45.663985,4.908892,,1,,Europe/Paris,,DGL, +DGL:SA:S11246,1,"Rue du Sablon",45.71921,4.857879,,1,,Europe/Paris,,DGL, +DGL:SA:S11248,1,"Sablons",45.773804,4.963257,,1,,Europe/Paris,,DGL, +DGL:SA:S11250,1,"Sala",45.7567,4.8267,,1,,Europe/Paris,,DGL, +DGL:SA:S11251,1,"Salle Polyvalente (D)",45.728925,5.012105,,1,,Europe/Paris,,DGL, +DGL:SA:S11256,1,"Sarrazin - Pressense",45.7288,4.8608,,1,,Europe/Paris,,DGL, +DGL:SA:S11257,1,"Sathonay Drapeau",45.821264,4.87207,,1,,Europe/Paris,,DGL, +DGL:SA:S11258,1,"Sathonay Gare",45.820952,4.87566,,1,,Europe/Paris,,DGL, +DGL:SA:S11259,1,"Sathonay Mairie",45.823781,4.87418,,1,,Europe/Paris,,DGL, +DGL:SA:S11260,1,"Sathonay Manutention",45.827605,4.872744,,1,,Europe/Paris,,DGL, +DGL:SA:S11261,1,"Sathonay Mutualite",45.820214,4.871004,,1,,Europe/Paris,,DGL, +DGL:SA:S11263,1,"Sathonay Republique",45.826105,4.87407,,1,,Europe/Paris,,DGL, +DGL:SA:S11265,1,"Saxe - Bonnel",45.7616,4.8459,,1,,Europe/Paris,,DGL, +DGL:SA:S11267,1,"Saxe - Lafayette",45.763596,4.845052,,1,,Europe/Paris,,DGL, +DGL:SA:S11268,1,"Saxe - Paul Bert",45.756692,4.846391,,1,,Europe/Paris,,DGL, +DGL:SA:S11269,1,"Sept Chemins",45.744572,4.932855,,1,,Europe/Paris,,DGL, +DGL:SA:S11270,1,"Sergent Berthet",45.771654,4.805292,,1,,Europe/Paris,,DGL, +DGL:SA:S11271,1,"Serin - Saint Charles",45.774401,4.812571,,1,,Europe/Paris,,DGL, +DGL:SA:S11273,1,"Severine",45.754065,4.913365,,1,,Europe/Paris,,DGL, +DGL:SA:S11274,1,"Sidoine Apollinaire",45.761284,4.803905,,1,,Europe/Paris,,DGL, +DGL:SA:S11275,1,"Simon Buisson",45.790533,4.791386,,1,,Europe/Paris,,DGL, +DGL:SA:S11277,1,"Soeur Vially",45.787533,4.842459,,1,,Europe/Paris,,DGL, +DGL:SA:S11278,1,"Solaize Mairie",45.639524,4.84108,,1,,Europe/Paris,,DGL, +DGL:SA:S11280,1,"Sous Genas",45.734826,4.986104,,1,,Europe/Paris,,DGL, +DGL:SA:S11281,1,"Sous le Fort",45.6704,4.8609,,1,,Europe/Paris,,DGL, +DGL:SA:S11284,1,"Square des Monts d'Or",45.874172,4.827007,,1,,Europe/Paris,,DGL, +DGL:SA:S11287,1,"Square Meunier",45.666469,4.903799,,1,,Europe/Paris,,DGL, +DGL:SA:S11288,1,"St Abdon",45.660972,4.793619,,1,,Europe/Paris,,DGL, +DGL:SA:S11289,1,"St Agnan",45.740835,4.863106,,1,,Europe/Paris,,DGL, +DGL:SA:S11290,1,"St Alexandre",45.75666,4.814821,,1,,Europe/Paris,,DGL, +DGL:SA:S11293,1,"St Clair - Square Brosset",45.791152,4.860625,,1,,Europe/Paris,,DGL, +DGL:SA:S11294,1,"St Cyr",45.814508,4.819019,,1,,Europe/Paris,,DGL, +DGL:SA:S11296,1,"St Didier Ecoles",45.812102,4.798071,,1,,Europe/Paris,,DGL, +DGL:SA:S11297,1,"St Didier Eglise",45.810357,4.797873,,1,,Europe/Paris,,DGL, +DGL:SA:S11298,1,"St Fons 4 Chemins",45.708232,4.856124,,1,,Europe/Paris,,DGL, +DGL:SA:S11299,1,"St Fons Albert Thomas",45.707929,4.858821,,1,,Europe/Paris,,DGL, +DGL:SA:S11300,1,"St Fons Parmentier",45.705541,4.860697,,1,,Europe/Paris,,DGL, +DGL:SA:S11301,1,"St Fortunat",45.8257,4.7946,,1,,Europe/Paris,,DGL, +DGL:SA:S11302,1,"St Genis 2",45.681425,4.790342,,1,,Europe/Paris,,DGL, +DGL:SA:S11303,1,"St Genis Barolles",45.679062,4.781786,,1,,Europe/Paris,,DGL, +DGL:SA:S11304,1,"St Genis Bellevue",45.692952,4.802674,,1,,Europe/Paris,,DGL, +DGL:SA:S11305,1,"St Genis Centre",45.695195,4.792657,,1,,Europe/Paris,,DGL, +DGL:SA:S11306,1,"St Genis Collonges",45.692809,4.8069,,1,,Europe/Paris,,DGL, +DGL:SA:S11307,1,"St Genis Les Ollieres",45.758322,4.722478,,1,,Europe/Paris,,DGL, +DGL:SA:S11309,1,"St Genis Mairie",45.698597,4.794828,,1,,Europe/Paris,,DGL, +DGL:SA:S11310,1,"St Georges",45.7575,4.8257,,1,,Europe/Paris,,DGL, +DGL:SA:S11313,1,"St Germain Gare",45.887926,4.804196,,1,,Europe/Paris,,DGL, +DGL:SA:S11314,1,"St Germain Mairie",45.883868,4.802768,,1,,Europe/Paris,,DGL, +DGL:SA:S11317,1,"Parc d'activites T.Garnier",45.729421,4.845874,,1,,Europe/Paris,,DGL, +DGL:SA:S11320,1,"St Leonard",45.852138,4.833453,,1,,Europe/Paris,,DGL, +DGL:SA:S11322,1,"St Martin",45.704773,4.950033,,1,,Europe/Paris,,DGL, +DGL:SA:S11325,1,"St Paul",45.7666,4.8282,,1,,Europe/Paris,,DGL, +DGL:SA:S11327,1,"Gare Saint Paul",45.766093,4.827637,,1,,Europe/Paris,,DGL, +DGL:SA:S11329,1,"St Pierre de Vaise",45.772847,4.80781,,1,,Europe/Paris,,DGL, +DGL:SA:S11331,1,"St Priest Beausejour",45.7053,4.9461,,1,,Europe/Paris,,DGL, +DGL:SA:S11335,1,"St Priest Gare",45.688075,4.935132,,1,,Europe/Paris,,DGL, +DGL:SA:S11342,1,"St Priest Les Roses",45.68672,4.939589,,1,,Europe/Paris,,DGL, +DGL:SA:S11343,1,"St Priest Menival",45.695705,4.953078,,1,,Europe/Paris,,DGL, +DGL:SA:S11344,1,"St Priest Plaine de Saythe",45.686849,4.947051,,1,,Europe/Paris,,DGL, +DGL:SA:S11345,1,"St Rambert - ile Barbe",45.797512,4.829441,,1,,Europe/Paris,,DGL, +DGL:SA:S11346,1,"St Rambert Les Rivieres",45.807818,4.837191,,1,,Europe/Paris,,DGL, +DGL:SA:S11348,1,"St Romain",45.840337,4.831017,,1,,Europe/Paris,,DGL, +DGL:SA:S11349,1,"St Vincent",45.7679,4.828,,1,,Europe/Paris,,DGL, +DGL:SA:S11350,1,"Stade Boucaud",45.78314,4.808141,,1,,Europe/Paris,,DGL, +DGL:SA:S11351,1,"Stade de Parilly",45.717261,4.891894,,1,,Europe/Paris,,DGL, +DGL:SA:S11352,1,"Stade des Peupliers",45.778585,4.899124,,1,,Europe/Paris,,DGL, +DGL:SA:S11354,1,"Stade Henri Cochet",45.792793,4.838684,,1,,Europe/Paris,,DGL, +DGL:SA:S11355,1,"Stade Jean Bouin",45.697797,4.924683,,1,,Europe/Paris,,DGL, +DGL:SA:S11356,1,"Stade Laurent Gerin",45.696574,4.890992,,1,,Europe/Paris,,DGL, +DGL:SA:S11360,1,"Ste Consorce",45.7764,4.6894,,1,,Europe/Paris,,DGL, +DGL:SA:S11361,1,"Ste Eugenie",45.704733,4.797196,,1,,Europe/Paris,,DGL, +DGL:SA:S11362,1,"Ste Foy Centre",45.733782,4.803556,,1,,Europe/Paris,,DGL, +DGL:SA:S11364,1,"Ste Foy Eglise",45.736909,4.805113,,1,,Europe/Paris,,DGL, +DGL:SA:S11365,1,"Ste Foy Hopital",45.731441,4.794438,,1,,Europe/Paris,,DGL, +DGL:SA:S11366,1,"Ste Genevieve",45.76373,4.865097,,1,,Europe/Paris,,DGL, +DGL:SA:S11369,1,"Surville Route de Vienne",45.718319,4.85459,,1,,Europe/Paris,,DGL, +DGL:SA:S11370,1,"Tabagnon",45.756821,4.743713,,1,,Europe/Paris,,DGL, +DGL:SA:S11371,1,"Tache Velin",45.715855,4.871539,,1,,Europe/Paris,,DGL, +DGL:SA:S11373,1,"Tassin Centre social",45.76351,4.766408,,1,,Europe/Paris,,DGL, +DGL:SA:S11374,1,"Tassin Combattants",45.769288,4.757904,,1,,Europe/Paris,,DGL, +DGL:SA:S11375,1,"Tassin Deperet",45.758168,4.761461,,1,,Europe/Paris,,DGL, +DGL:SA:S11376,1,"Tassin Gare",45.760307,4.760737,,1,,Europe/Paris,,DGL, +DGL:SA:S11377,1,"Tassin Genetieres",45.758774,4.772075,,1,,Europe/Paris,,DGL, +DGL:SA:S11378,1,"Tassin Les Bruyeres",45.757997,4.751171,,1,,Europe/Paris,,DGL, +DGL:SA:S11380,1,"Terraillon - Lessivas",45.743508,4.919494,,1,,Europe/Paris,,DGL, +DGL:SA:S11381,1,"Terrasse",45.748016,4.815537,,1,,Europe/Paris,,DGL, +DGL:SA:S11383,1,"Terreaux",45.767208,4.832292,,1,,Europe/Paris,,DGL, +DGL:SA:S11385,1,"Thibaudiere",45.750445,4.844968,,1,,Europe/Paris,,DGL, +DGL:SA:S11387,1,"Thioley",45.715842,4.887999,,1,,Europe/Paris,,DGL, +DGL:SA:S11388,1,"Timbaud",45.69139,4.900609,,1,,Europe/Paris,,DGL, +DGL:SA:S11389,1,"Tissot",45.776914,4.803946,,1,,Europe/Paris,,DGL, +DGL:SA:S11390,1,"Tita Cois",45.77142,4.904238,,1,,Europe/Paris,,DGL, +DGL:SA:S11391,1,"Titilleux",45.712191,4.875142,,1,,Europe/Paris,,DGL, +DGL:SA:S11392,1,"Terreaux Tobie Robatel",45.767558,4.831575,,1,,Europe/Paris,,DGL, +DGL:SA:S11393,1,"Tonkin",45.777346,4.863708,,1,,Europe/Paris,,DGL, +DGL:SA:S11394,1,"Tourvielle",45.754199,4.79575,,1,,Europe/Paris,,DGL, +DGL:SA:S11396,1,"Treve Oray",45.850033,4.859989,,1,,Europe/Paris,,DGL, +DGL:SA:S11397,1,"Treves Paques",45.815947,4.839565,,1,,Europe/Paris,,DGL, +DGL:SA:S11398,1,"Triangle de Bron",45.727115,4.927261,,1,,Europe/Paris,,DGL, +DGL:SA:S11399,1,"Trion",45.758012,4.813114,,1,,Europe/Paris,,DGL, +DGL:SA:S11403,1,"Trois Artichauts",45.752157,4.816759,,1,,Europe/Paris,,DGL, +DGL:SA:S11404,1,"Trois Renards",45.763307,4.773887,,1,,Europe/Paris,,DGL, +DGL:SA:S11405,1,"Tupinier",45.747344,4.707262,,1,,Europe/Paris,,DGL, +DGL:SA:S11406,1,"UFR Lyon-Sud",45.705043,4.809312,,1,,Europe/Paris,,DGL, +DGL:SA:S11407,1,"Union Nautique",45.797584,4.837345,,1,,Europe/Paris,,DGL, +DGL:SA:S11409,1,"Universite - Jean Jaures",45.748282,4.843567,,1,,Europe/Paris,,DGL, +DGL:SA:S11410,1,"Vaillant Couturier",45.706211,4.821017,,1,,Europe/Paris,,DGL, +DGL:SA:S11411,1,"Valdo",45.750068,4.784123,,1,,Europe/Paris,,DGL, +DGL:SA:S11413,1,"Valensaut",45.723596,4.87435,,1,,Europe/Paris,,DGL, +DGL:SA:S11415,1,"Val Rosay",45.793656,4.812382,,1,,Europe/Paris,,DGL, +DGL:SA:S11416,1,"Valvert",45.765625,4.766411,,1,,Europe/Paris,,DGL, +DGL:SA:S11417,1,"Fort de Vancia",45.834278,4.908953,,1,,Europe/Paris,,DGL, +DGL:SA:S11419,1,"Varichon",45.734224,4.871241,,1,,Europe/Paris,,DGL, +DGL:SA:S11420,1,"Vassieux",45.791834,4.866196,,1,,Europe/Paris,,DGL, +DGL:SA:S11423,1,"Vaulx Berthelot",45.789,4.922,,1,,Europe/Paris,,DGL, +DGL:SA:S11424,1,"Vaulx HDV Campus",45.776862,4.920534,,1,,Europe/Paris,,DGL, +DGL:SA:S11425,1,"Vaulx Jean Moulin",45.78737,4.916434,,1,,Europe/Paris,,DGL, +DGL:SA:S11426,1,"Vaulx Lakanal",45.786858,4.92028,,1,,Europe/Paris,,DGL, +DGL:SA:S11428,1,"Vaulx Lamartine",45.7918,4.9221,,1,,Europe/Paris,,DGL, +DGL:SA:S11430,1,"Vaulx Les Grolieres",45.787743,4.910397,,1,,Europe/Paris,,DGL, +DGL:SA:S11433,1,"Vaulx Pasteur",45.785362,4.930569,,1,,Europe/Paris,,DGL, +DGL:SA:S11435,1,"Vaulx Picasso",45.776517,4.915137,,1,,Europe/Paris,,DGL, +DGL:SA:S11436,1,"Vaulx Pierre Frite",45.774675,4.932214,,1,,Europe/Paris,,DGL, +DGL:SA:S11437,1,"Vaulx Place Boissier",45.78623,4.92562,,1,,Europe/Paris,,DGL, +DGL:SA:S11438,1,"Vaulx Thibaude",45.778608,4.930107,,1,,Europe/Paris,,DGL, +DGL:SA:S11440,1,"Velten",45.79909,4.833592,,1,,Europe/Paris,,DGL, +DGL:SA:S11442,1,"Venissieux Le Charreard",45.6984,4.9006,,1,,Europe/Paris,,DGL, +DGL:SA:S11443,1,"Venissieux Marronniers",45.705513,4.877667,,1,,Europe/Paris,,DGL, +DGL:SA:S11447,1,"Venissieux St Exupery",45.69847,4.894471,,1,,Europe/Paris,,DGL, +DGL:SA:S11449,1,"Verdun - Victor Hugo",45.779417,4.996593,,1,,Europe/Paris,,DGL, +DGL:SA:S11450,1,"Verlaine",45.762849,4.878265,,1,,Europe/Paris,,DGL, +DGL:SA:S11451,1,"Bois Comtal",45.6352,4.8058,,1,,Europe/Paris,,DGL, +DGL:SA:S11452,1,"Vernaison La Rossignole",45.64159,4.807879,,1,,Europe/Paris,,DGL, +DGL:SA:S11456,1,"Veyrie",45.813632,4.723054,,1,,Europe/Paris,,DGL, +DGL:SA:S11457,1,"Viabert - Anatole France",45.766514,4.868189,,1,,Europe/Paris,,DGL, +DGL:SA:S11458,1,"Viala - Lacassagne",45.746,4.8858,,1,,Europe/Paris,,DGL, +DGL:SA:S11459,1,"Vianney",45.793625,4.771914,,1,,Europe/Paris,,DGL, +DGL:SA:S11460,1,"Victor Hugo",45.662895,4.949395,,1,,Europe/Paris,,DGL, +DGL:SA:S11462,1,"Vieux Crepieux",45.800093,4.877223,,1,,Europe/Paris,,DGL, +DGL:SA:S11464,1,"Villeneuve",45.785511,4.782877,,1,,Europe/Paris,,DGL, +DGL:SA:S11465,1,"Villeurbanne Bel Air",45.755488,4.912862,,1,,Europe/Paris,,DGL, +DGL:SA:S11466,1,"Gare d'Albigny-Neuville",45.876389,4.834613,,1,,Europe/Paris,,DGL, +DGL:SA:S11469,1,"Vincent Serre",45.768823,4.786604,,1,,Europe/Paris,,DGL, +DGL:SA:S11470,1,"Vitton - Belges",45.770307,4.85664,,1,,Europe/Paris,,DGL, +DGL:SA:S11471,1,"Viviani",45.7272,4.862639,,1,,Europe/Paris,,DGL, +DGL:SA:S11474,1,"Place du Vercors",45.719686,5.006348,,1,,Europe/Paris,,DGL, +DGL:SA:S11478,1,"Yon Lug",45.711146,4.82007,,1,,Europe/Paris,,DGL, +DGL:SA:S11481,1,"Yvours",45.689998,4.826462,,1,,Europe/Paris,,DGL, +DGL:SA:S11482,1,"Z.I.C. Ouest",45.804449,4.865631,,1,,Europe/Paris,,DGL, +DGL:SA:S11483,1,"Z.I. Chassieu Restaurant",45.725866,4.969407,,1,,Europe/Paris,,DGL, +DGL:SA:S11485,1,"Z.I. Genay Neuville",45.890627,4.826105,,1,,Europe/Paris,,DGL, +DGL:SA:S11487,1,"Z.I. Lionel Terray",45.7715,5.0194,,1,,Europe/Paris,,DGL, +DGL:SA:S11488,1,"Z.I. Meyzieu De Lattre",45.7767,5.0277,,1,,Europe/Paris,,DGL, +DGL:SA:S11489,1,"Z.I. Meyzieu Jean Mace",45.7643,5.0183,,1,,Europe/Paris,,DGL, +DGL:SA:S11490,1,"Z.I. Meyzieu Monge",45.7668,5.0242,,1,,Europe/Paris,,DGL, +DGL:SA:S11492,1,"Z.I. Meyzieu Restaurant",45.7741,5.0272,,1,,Europe/Paris,,DGL, +DGL:SA:S11494,1,"Z.I. Schweitzer - Meyzieu",45.7659,5.0288,,1,,Europe/Paris,,DGL, +DGL:SA:S11495,1,"Z.I. Schweitzer - Monge",45.7664,5.028,,1,,Europe/Paris,,DGL, +DGL:SA:S11496,1,"Z.I. Schweitzer-Republique",45.7618,5.0257,,1,,Europe/Paris,,DGL, +DGL:SA:S11497,1,"Z.I. Terray - De Lattre",45.7707,5.0259,,1,,Europe/Paris,,DGL, +DGL:SA:S11498,1,"Zac des Marronniers",45.816797,4.873064,,1,,Europe/Paris,,DGL, +DGL:SA:S11499,1,"Zephyrs",45.72814,5.015749,,1,,Europe/Paris,,DGL, +DGL:SA:S11500,1,"Zola",45.7705,4.8681,,1,,Europe/Paris,,DGL, +DGL:SA:S11541,1,"Jodino - A.F.P.A.",45.691249,4.882724,,1,,Europe/Paris,,DGL, +DGL:SA:S11599,1,"Jarrosson",45.741708,4.797673,,1,,Europe/Paris,,DGL, +DGL:SA:S11600,1,"Mont Blanc - Montmartin",45.674405,4.921955,,1,,Europe/Paris,,DGL, +DGL:SA:S11601,1,"Abattoirs",45.675148,4.919217,,1,,Europe/Paris,,DGL, +DGL:SA:S11603,1,"Route de St Priest",45.671141,4.902781,,1,,Europe/Paris,,DGL, +DGL:SA:S11606,1,"Henri Chevalier",45.7831,4.827,,1,,Europe/Paris,,DGL, +DGL:SA:S11607,1,"Henon.",45.7795,4.8269,,1,,Europe/Paris,,DGL, +DGL:SA:S11608,1,"Artaud",45.781,4.836,,1,,Europe/Paris,,DGL, +DGL:SA:S11609,1,"Linossier - Richan",45.7794,4.8373,,1,,Europe/Paris,,DGL, +DGL:SA:S11610,1,"Place Cdt Arnaud",45.7799,4.8345,,1,,Europe/Paris,,DGL, +DGL:SA:S11611,1,"Maurice Sceve",45.7771,4.8368,,1,,Europe/Paris,,DGL, +DGL:SA:S11612,1,"Maison des Canuts",45.7771,4.8335,,1,,Europe/Paris,,DGL, +DGL:SA:S11613,1,"Georges Roudil",45.692086,4.886879,,1,,Europe/Paris,,DGL, +DGL:SA:S11614,1,"Venissieux Blanqui",45.702089,4.873879,,1,,Europe/Paris,,DGL, +DGL:SA:S11619,1,"Z.I. Chateau d'eau",45.826678,4.906215,,1,,Europe/Paris,,DGL, +DGL:SA:S11620,1,"Z.I. Champ du Roy",45.828697,4.908389,,1,,Europe/Paris,,DGL, +DGL:SA:S11629,1,"Marcy Sources",45.787827,4.706975,,1,,Europe/Paris,,DGL, +DGL:SA:S11643,1,"Nicolas Sicard",45.756107,4.792036,,1,,Europe/Paris,,DGL, +DGL:SA:S11649,1,"Montee Castellane",45.808575,4.898682,,1,,Europe/Paris,,DGL, +DGL:SA:S11650,1,"Castellane - Mont Blanc",45.811949,4.897166,,1,,Europe/Paris,,DGL, +DGL:SA:S11652,1,"College Paul Emile Victor",45.816736,4.905119,,1,,Europe/Paris,,DGL, +DGL:SA:S11654,1,"Z.I. Rillieux 8 mai 1945",45.813696,4.879669,,1,,Europe/Paris,,DGL, +DGL:SA:S11655,1,"Z.I. Rillieux Mercieres",45.815213,4.878285,,1,,Europe/Paris,,DGL, +DGL:SA:S11656,1,"Z.I. Rillieux Hippodrome",45.816099,4.880695,,1,,Europe/Paris,,DGL, +DGL:SA:S11666,1,"Ecully Grandes Ecoles",45.785576,4.765164,,1,,Europe/Paris,,DGL, +DGL:SA:S11668,1,"Les Narcisses",45.761201,4.723168,,1,,Europe/Paris,,DGL, +DGL:SA:S11669,1,"Le Vorlat",45.76269,4.72468,,1,,Europe/Paris,,DGL, +DGL:SA:S11674,1,"Bron Droits de l'Homme",45.734189,4.931476,,1,,Europe/Paris,,DGL, +DGL:SA:S11675,1,"Meyzieu Hotel de Ville",45.7655,5.0058,,1,,Europe/Paris,,DGL, +DGL:SA:S11682,1,"Chemin de Revaison",45.70434,4.916244,,1,,Europe/Paris,,DGL, +DGL:SA:S11683,1,"St Priest Alouettes",45.702539,4.918452,,1,,Europe/Paris,,DGL, +DGL:SA:S11684,1,"Pasteur - Etats-Unis",45.700072,4.922171,,1,,Europe/Paris,,DGL, +DGL:SA:S11687,1,"Marcel Vernay",45.69766,4.95186,,1,,Europe/Paris,,DGL, +DGL:SA:S11688,1,"Les Longes",45.697125,4.956254,,1,,Europe/Paris,,DGL, +DGL:SA:S11691,1,"St Irenee - Croix Blanche",45.75536,4.808535,,1,,Europe/Paris,,DGL, +DGL:SA:S11693,1,"Langevin - Blanqui",45.7007,4.8757,,1,,Europe/Paris,,DGL, +DGL:SA:S11694,1,"Lionel Terray",45.726268,4.900942,,1,,Europe/Paris,,DGL, +DGL:SA:S11695,1,"Lortaret",45.713196,4.956524,,1,,Europe/Paris,,DGL, +DGL:SA:S11696,1,"Jean Mace - Chevreul",45.7471,4.8437,,1,,Europe/Paris,,DGL, +DGL:SA:S11702,1,"Gymnase Alain Colas",45.688485,4.875166,,1,,Europe/Paris,,DGL, +DGL:SA:S11703,1,"Leclerc - Thimonnier",45.804841,4.864407,,1,,Europe/Paris,,DGL, +DGL:SA:S11704,1,"Leclerc - Drevet",45.808453,4.871099,,1,,Europe/Paris,,DGL, +DGL:SA:S11717,1,"Georges Levy",45.720021,4.868011,,1,,Europe/Paris,,DGL, +DGL:SA:S11721,1,"Cimetiere de St Priest",45.692901,4.946336,,1,,Europe/Paris,,DGL, +DGL:SA:S11725,1,"Decines Esplanade",45.772515,4.97473,,1,,Europe/Paris,,DGL, +DGL:SA:S11732,1,"23 Aout 1944",45.665757,4.951514,,1,,Europe/Paris,,DGL, +DGL:SA:S11733,1,"Mions Liberation",45.658891,4.953756,,1,,Europe/Paris,,DGL, +DGL:SA:S11734,1,"Mions Croix Rouge",45.652545,4.953949,,1,,Europe/Paris,,DGL, +DGL:SA:S11735,1,"Leon Blum",45.761,4.9079,,1,,Europe/Paris,,DGL, +DGL:SA:S11737,1,"Jean Vallier",45.733347,4.83915,,1,,Europe/Paris,,DGL, +DGL:SA:S11738,1,"Port Edouard Herriot",45.725465,4.838593,,1,,Europe/Paris,,DGL, +DGL:SA:S11740,1,"Domremy - Lacassagne",45.751233,4.872822,,1,,Europe/Paris,,DGL, +DGL:SA:S11741,1,"Roger Salengro",45.726803,4.905267,,1,,Europe/Paris,,DGL, +DGL:SA:S11742,1,"Mions Les Tilleuls",45.669291,4.954776,,1,,Europe/Paris,,DGL, +DGL:SA:S11746,1,"La Croix des Hormes",45.8821,4.8729,,1,,Europe/Paris,,DGL, +DGL:SA:S11757,1,"Rue des Vergers",45.805913,4.771847,,1,,Europe/Paris,,DGL, +DGL:SA:S11758,1,"Allee des Hetres",45.805464,4.774479,,1,,Europe/Paris,,DGL, +DGL:SA:S11771,1,"Aragon",45.782176,4.929358,,1,,Europe/Paris,,DGL, +DGL:SA:S11772,1,"Paul Marcellin",45.784803,4.929213,,1,,Europe/Paris,,DGL, +DGL:SA:S11773,1,"Clinique de Vaulx",45.7907,4.9245,,1,,Europe/Paris,,DGL, +DGL:SA:S11779,1,"St Fons Mairie",45.708802,4.853756,,1,,Europe/Paris,,DGL, +DGL:SA:S11780,1,"Curie Monnet",45.706935,4.850123,,1,,Europe/Paris,,DGL, +DGL:SA:S11781,1,"Quai Aulagne",45.703885,4.845256,,1,,Europe/Paris,,DGL, +DGL:SA:S11782,1,"Belle Etoile",45.684675,4.845929,,1,,Europe/Paris,,DGL, +DGL:SA:S11784,1,"Vallee de la Chimie",45.6866,4.8468,,1,,Europe/Paris,,DGL, +DGL:SA:S11785,1,"St Fons Semard",45.6947,4.845,,1,,Europe/Paris,,DGL, +DGL:SA:S11787,1,"St Fons Recherche",45.6842,4.8476,,1,,Europe/Paris,,DGL, +DGL:SA:S11788,1,"11 Novembre 1918",45.688688,4.863219,,1,,Europe/Paris,,DGL, +DGL:SA:S11789,1,"Lortet",45.741977,4.840472,,1,,Europe/Paris,,DGL, +DGL:SA:S11790,1,"Interpol",45.782464,4.849947,,1,,Europe/Paris,,DGL, +DGL:SA:S11791,1,"Musee d'Art Contemporain",45.783859,4.852777,,1,,Europe/Paris,,DGL, +DGL:SA:S11796,1,"Berthet - Loucheur",45.768032,4.804819,,1,,Europe/Paris,,DGL, +DGL:SA:S11798,1,"Charlemagne - C.-Perier",45.742407,4.821887,,1,,Europe/Paris,,DGL, +DGL:SA:S11804,1,"Laurent Gerin",45.7023,4.8832,,1,,Europe/Paris,,DGL, +DGL:SA:S11805,1,"Cimetiere de St Fons",45.69763,4.858035,,1,,Europe/Paris,,DGL, +DGL:SA:S11808,1,"Parc de Champvert",45.761936,4.79573,,1,,Europe/Paris,,DGL, +DGL:SA:S11809,1,"Provinces - Chavril",45.747599,4.800161,,1,,Europe/Paris,,DGL, +DGL:SA:S11812,1,"Ste Foy Platanes",45.731421,4.776366,,1,,Europe/Paris,,DGL, +DGL:SA:S11814,1,"Grande Rue de St Clair",45.7908,4.8594,,1,,Europe/Paris,,DGL, +DGL:SA:S11829,1,"Lycee Blaise Pascal",45.76677,4.750545,,1,,Europe/Paris,,DGL, +DGL:SA:S11834,1,"Henri Germain",45.704285,4.903747,,1,,Europe/Paris,,DGL, +DGL:SA:S11847,1,"Domer - Garibaldi",45.747628,4.850786,,1,,Europe/Paris,,DGL, +DGL:SA:S11849,1,"Beaunant",45.728555,4.77786,,1,,Europe/Paris,,DGL, +DGL:SA:S11856,1,"Mairie de St Rambert",45.798165,4.830037,,1,,Europe/Paris,,DGL, +DGL:SA:S11858,1,"Grande Rue St Rambert",45.799769,4.833781,,1,,Europe/Paris,,DGL, +DGL:SA:S11860,1,"Rue des Balmes",45.8015,4.835915,,1,,Europe/Paris,,DGL, +DGL:SA:S11866,1,"Simondan",45.801157,4.831511,,1,,Europe/Paris,,DGL, +DGL:SA:S11868,1,"Fabregue",45.7989,4.8241,,1,,Europe/Paris,,DGL, +DGL:SA:S11869,1,"Schonberg",45.7995,4.827,,1,,Europe/Paris,,DGL, +DGL:SA:S11870,1,"La Boisserie",45.8012,4.8286,,1,,Europe/Paris,,DGL, +DGL:SA:S11871,1,"Chauderasses",45.744405,4.78094,,1,,Europe/Paris,,DGL, +DGL:SA:S11873,1,"Chemin des Fonts",45.738914,4.796796,,1,,Europe/Paris,,DGL, +DGL:SA:S11874,1,"La Fucharniere",45.804657,4.80201,,1,,Europe/Paris,,DGL, +DGL:SA:S11877,1,"Dardilly St Joseph",45.803901,4.755401,,1,,Europe/Paris,,DGL, +DGL:SA:S11878,1,"Edouard Aynard",45.776669,4.778901,,1,,Europe/Paris,,DGL, +DGL:SA:S11880,1,"Lycee Francois Cevert",45.782858,4.788972,,1,,Europe/Paris,,DGL, +DGL:SA:S11883,1,"Moulin Berger",45.801243,4.767419,,1,,Europe/Paris,,DGL, +DGL:SA:S11884,1,"Duchere Av.de Champagne",45.790467,4.79727,,1,,Europe/Paris,,DGL, +DGL:SA:S11885,1,"College J.P.Rameau",45.792107,4.786895,,1,,Europe/Paris,,DGL, +DGL:SA:S11886,1,"Ferroux",45.816802,4.81378,,1,,Europe/Paris,,DGL, +DGL:SA:S11887,1,"L'Indiennerie",45.809775,4.81154,,1,,Europe/Paris,,DGL, +DGL:SA:S11890,1,"Les Gorges",45.820442,4.802152,,1,,Europe/Paris,,DGL, +DGL:SA:S11891,1,"Paul Chevrel",45.819698,4.800169,,1,,Europe/Paris,,DGL, +DGL:SA:S11895,1,"Lycee Ombrosa",45.807567,4.843804,,1,,Europe/Paris,,DGL, +DGL:SA:S11896,1,"Pont Masaryk",45.778212,4.809891,,1,,Europe/Paris,,DGL, +DGL:SA:S11897,1,"Les Malandieres",45.892827,4.812327,,1,,Europe/Paris,,DGL, +DGL:SA:S12255,1,"Barolles Gendarmerie",45.686559,4.785937,,1,,Europe/Paris,,DGL, +DGL:SA:S12257,1,"Maison Carree",45.8248,4.7618,,1,,Europe/Paris,,DGL, +DGL:SA:S12258,1,"Gare de Limonest",45.826372,4.757073,,1,,Europe/Paris,,DGL, +DGL:SA:S12268,1,"L'Avenir",45.746522,4.709901,,1,,Europe/Paris,,DGL, +DGL:SA:S12270,1,"Joseph Moulin",45.744618,4.715111,,1,,Europe/Paris,,DGL, +DGL:SA:S12271,1,"Le Chateau",45.7427,4.7194,,1,,Europe/Paris,,DGL, +DGL:SA:S12273,1,"Les Bles d'Or",45.667502,4.945415,,1,,Europe/Paris,,DGL, +DGL:SA:S12276,1,"J. Ambre Hopital entree pieton",45.7806,4.8325,,1,,Europe/Paris,,DGL, +DGL:SA:S12284,1,"St Genis Lycee Descartes",45.689806,4.78496,,1,,Europe/Paris,,DGL, +DGL:SA:S12286,1,"Place de Paris",45.779587,4.803331,,1,,Europe/Paris,,DGL, +DGL:SA:S12287,1,"Dardilly Les Longes",45.834734,4.747853,,1,,Europe/Paris,,DGL, +DGL:SA:S12288,1,"Chalin",45.778347,4.784275,,1,,Europe/Paris,,DGL, +DGL:SA:S12290,1,"Chemin des Pres",45.742132,4.79167,,1,,Europe/Paris,,DGL, +DGL:SA:S12291,1,"Centre Communal du Vallon",45.741559,4.793161,,1,,Europe/Paris,,DGL, +DGL:SA:S20002,1,"La Ferlatiere",45.818676,4.807576,,1,,Europe/Paris,,DGL, +DGL:SA:S20003,1,"Le Monteillier",45.816992,4.806342,,1,,Europe/Paris,,DGL, +DGL:SA:S20004,1,"Mouillard",45.784927,4.804008,,1,,Europe/Paris,,DGL, +DGL:SA:S20005,1,"La Piemente",45.785392,4.800684,,1,,Europe/Paris,,DGL, +DGL:SA:S20009,1,"General Benoist",45.738268,4.929468,,1,,Europe/Paris,,DGL, +DGL:SA:S20010,1,"Bron Aviation",45.736541,4.930589,,1,,Europe/Paris,,DGL, +DGL:SA:S20011,1,"Meyzieu Salle des Fetes",45.766,5.0011,,1,,Europe/Paris,,DGL, +DGL:SA:S20012,1,"Pressense - Marrane",45.723347,4.865227,,1,,Europe/Paris,,DGL, +DGL:SA:S20014,1,"Francheville Bourg",45.736882,4.764275,,1,,Europe/Paris,,DGL, +DGL:SA:S20015,1,"Francheville Doulline",45.73749,4.761557,,1,,Europe/Paris,,DGL, +DGL:SA:S20019,1,"Diligences",45.850175,4.876876,,1,,Europe/Paris,,DGL, +DGL:SA:S20020,1,"Fontaines Petit Moulin",45.834834,4.843842,,1,,Europe/Paris,,DGL, +DGL:SA:S20022,1,"Z.I. Rocade Est",45.723442,4.977536,,1,,Europe/Paris,,DGL, +DGL:SA:S20023,1,"Fresnel - Restaurant Z.I.",45.725314,4.971232,,1,,Europe/Paris,,DGL, +DGL:SA:S20024,1,"Chassieu Jean Perrin",45.7302,4.971324,,1,,Europe/Paris,,DGL, +DGL:SA:S20025,1,"Chassieu Arago",45.725077,4.962545,,1,,Europe/Paris,,DGL, +DGL:SA:S20028,1,"Ruffinieres",45.766968,4.970745,,1,,Europe/Paris,,DGL, +DGL:SA:S20029,1,"Decines Verdun",45.765162,4.97042,,1,,Europe/Paris,,DGL, +DGL:SA:S20031,1,"Chassieu Le Haut",45.746233,4.972806,,1,,Europe/Paris,,DGL, +DGL:SA:S20037,1,"Poizat",45.7597,4.8947,,1,,Europe/Paris,,DGL, +DGL:SA:S20038,1,"Combe au Loup",45.774761,4.98633,,1,,Europe/Paris,,DGL, +DGL:SA:S20039,1,"St Irenee",45.754705,4.812257,,1,,Europe/Paris,,DGL, +DGL:SA:S20045,1,"Place de la Paix",45.7512,4.9147,,1,,Europe/Paris,,DGL, +DGL:SA:S20064,1,"La Vallonniere",45.765354,4.801786,,1,,Europe/Paris,,DGL, +DGL:SA:S20069,1,"Pouteau",45.771613,4.833193,,1,,Europe/Paris,,DGL, +DGL:SA:S20070,1,"Tables Claudiennes",45.7709,4.8331,,1,,Europe/Paris,,DGL, +DGL:SA:S20071,1,"Neyret",45.7713,4.8313,,1,,Europe/Paris,,DGL, +DGL:SA:S20072,1,"Mairie du 1er",45.769649,4.830262,,1,,Europe/Paris,,DGL, +DGL:SA:S20073,1,"Bron Jean Jaures",45.729961,4.905742,,1,,Europe/Paris,,DGL, +DGL:SA:S20074,1,"Bron Salengro",45.730471,4.908445,,1,,Europe/Paris,,DGL, +DGL:SA:S20077,1,"Bron Leo Lagrange",45.740462,4.928794,,1,,Europe/Paris,,DGL, +DGL:SA:S20079,1,"Manissieux Pierre Blanche",45.705648,4.991612,,1,,Europe/Paris,,DGL, +DGL:SA:S20085,1,"Bienvenus - Pressense",45.7717,4.8852,,1,,Europe/Paris,,DGL, +DGL:SA:S20086,1,"Pressense - Vaillant",45.7729,4.8807,,1,,Europe/Paris,,DGL, +DGL:SA:S20087,1,"Legay",45.754585,4.917121,,1,,Europe/Paris,,DGL, +DGL:SA:S20088,1,"Abondance",45.752789,4.850655,,1,,Europe/Paris,,DGL, +DGL:SA:S20092,1,"Residence Marianne",45.664561,4.959199,,1,,Europe/Paris,,DGL, +DGL:SA:S20094,1,"Gensoul",45.752,4.8248,,1,,Europe/Paris,,DGL, +DGL:SA:S20096,1,"Les Canuts",45.77647,4.829336,,1,,Europe/Paris,,DGL, +DGL:SA:S20097,1,"Residence E.Charret",45.781649,4.829191,,1,,Europe/Paris,,DGL, +DGL:SA:S20098,1,"Le Parc Brunier",45.78426,4.829528,,1,,Europe/Paris,,DGL, +DGL:SA:S20099,1,"Hauts de la Rochette",45.786041,4.829802,,1,,Europe/Paris,,DGL, +DGL:SA:S20107,1,"Andre Lassagne",45.805324,4.853547,,1,,Europe/Paris,,DGL, +DGL:SA:S20108,1,"Chemin de Montgay",45.824437,4.861607,,1,,Europe/Paris,,DGL, +DGL:SA:S20109,1,"Curie",45.823066,4.864937,,1,,Europe/Paris,,DGL, +DGL:SA:S20110,1,"Camp Militaire",45.819418,4.869095,,1,,Europe/Paris,,DGL, +DGL:SA:S20111,1,"Sathonay Village Eglise",45.83152,4.878067,,1,,Europe/Paris,,DGL, +DGL:SA:S20112,1,"Chemin de Rivery",45.837457,4.871027,,1,,Europe/Paris,,DGL, +DGL:SA:S20115,1,"Place du Capot",45.791889,4.836205,,1,,Europe/Paris,,DGL, +DGL:SA:S20117,1,"Fontaines St Martin Centre",45.844703,4.85424,,1,,Europe/Paris,,DGL, +DGL:SA:S20119,1,"Dupeuble",45.776453,4.892068,,1,,Europe/Paris,,DGL, +DGL:SA:S20120,1,"Pailleron",45.7788,4.8322,,1,,Europe/Paris,,DGL, +DGL:SA:S20121,1,"Ivry",45.7767,4.8322,,1,,Europe/Paris,,DGL, +DGL:SA:S20123,1,"Mailly",45.783,4.8332,,1,,Europe/Paris,,DGL, +DGL:SA:S20124,1,"Prairie",45.774611,4.902483,,1,,Europe/Paris,,DGL, +DGL:SA:S20128,1,"Crepieux La Pape",45.805669,4.885528,,1,,Europe/Paris,,DGL, +DGL:SA:S20129,1,"Buissiere - Viralamande(D)",45.803722,4.882208,,1,,Europe/Paris,,DGL, +DGL:SA:S20130,1,"Chauderaie",45.743163,4.772021,,1,,Europe/Paris,,DGL, +DGL:SA:S20131,1,"Les Genets",45.747835,4.772414,,1,,Europe/Paris,,DGL, +DGL:SA:S20132,1,"Alai",45.75146,4.766911,,1,,Europe/Paris,,DGL, +DGL:SA:S20134,1,"Les Croisettes",45.758659,4.767718,,1,,Europe/Paris,,DGL, +DGL:SA:S20138,1,"Brosset",45.757279,4.778959,,1,,Europe/Paris,,DGL, +DGL:SA:S20139,1,"Croix Muriat",45.759391,4.725327,,1,,Europe/Paris,,DGL, +DGL:SA:S20141,1,"Georges Pompidou",45.759107,4.86291,,1,,Europe/Paris,,DGL, +DGL:SA:S20142,1,"Sacre Coeur",45.759192,4.868362,,1,,Europe/Paris,,DGL, +DGL:SA:S20143,1,"Ferrandiere",45.759632,4.873357,,1,,Europe/Paris,,DGL, +DGL:SA:S20144,1,"Marengo",45.759208,4.876497,,1,,Europe/Paris,,DGL, +DGL:SA:S20145,1,"Constellation",45.755077,4.774273,,1,,Europe/Paris,,DGL, +DGL:SA:S20147,1,"Maison de l'Aqueduc",45.727107,4.778572,,1,,Europe/Paris,,DGL, +DGL:SA:S20148,1,"Institut Pasteur",45.727731,4.824346,,1,,Europe/Paris,,DGL, +DGL:SA:S20151,1,"Leclerc - Ayasse",45.736516,4.823914,,1,,Europe/Paris,,DGL, +DGL:SA:S20152,1,"Leclerc - General Frere",45.744036,4.830052,,1,,Europe/Paris,,DGL, +DGL:SA:S20155,1,"Roosevelt C.Commercial",45.748287,4.93354,,1,,Europe/Paris,,DGL, +DGL:SA:S20156,1,"Decines Verlaine",45.751007,4.941242,,1,,Europe/Paris,,DGL, +DGL:SA:S20157,1,"Decines Beauregard",45.75297,4.94471,,1,,Europe/Paris,,DGL, +DGL:SA:S20158,1,"Decines Jonquilles",45.755288,4.948794,,1,,Europe/Paris,,DGL, +DGL:SA:S20159,1,"Decines Acacias",45.759002,4.948758,,1,,Europe/Paris,,DGL, +DGL:SA:S20160,1,"Georges Brassens",45.768685,4.975576,,1,,Europe/Paris,,DGL, +DGL:SA:S20163,1,"Rue de France - IUT",45.768312,4.886169,,1,,Europe/Paris,,DGL, +DGL:SA:S20165,1,"Aynard - La Fontaine",45.7611,4.8764,,1,,Europe/Paris,,DGL, +DGL:SA:S20166,1,"Choulans - Tourelles",45.753332,4.818978,,1,,Europe/Paris,,DGL, +DGL:SA:S20172,1,"Boileau",45.778162,5.014076,,1,,Europe/Paris,,DGL, +DGL:SA:S20180,1,"Bellecour St Exupery",45.757588,4.830066,,1,,Europe/Paris,,DGL, +DGL:SA:S20182,1,"Leclair",45.7701,4.8046,,1,,Europe/Paris,,DGL, +DGL:SA:S20183,1,"Piscine de Vaise",45.770623,4.79689,,1,,Europe/Paris,,DGL, +DGL:SA:S20184,1,"Pontet Crases",45.788374,4.765014,,1,,Europe/Paris,,DGL, +DGL:SA:S20185,1,"Dardilly Les Mouilles",45.797474,4.759796,,1,,Europe/Paris,,DGL, +DGL:SA:S20186,1,"Cogny",45.801055,4.756181,,1,,Europe/Paris,,DGL, +DGL:SA:S20187,1,"Le Bouquis",45.823685,4.754791,,1,,Europe/Paris,,DGL, +DGL:SA:S20188,1,"Les Marsaults",45.822931,4.757397,,1,,Europe/Paris,,DGL, +DGL:SA:S20189,1,"Dardilly Le Jubin",45.817825,4.761465,,1,,Europe/Paris,,DGL, +DGL:SA:S20190,1,"Dardilly Peupliers",45.813809,4.758424,,1,,Europe/Paris,,DGL, +DGL:SA:S20193,1,"Museum",45.774881,4.848109,,1,,Europe/Paris,,DGL, +DGL:SA:S20194,1,"Montee de la Boucle",45.78198,4.838797,,1,,Europe/Paris,,DGL, +DGL:SA:S20196,1,"Square Elie Vignal",45.785538,4.837254,,1,,Europe/Paris,,DGL, +DGL:SA:S20203,1,"Girondins - Yves Farge",45.73944,4.830879,,1,,Europe/Paris,,DGL, +DGL:SA:S20205,1,"Vaulx-en-Velin La Grappiniere",45.788337,4.912378,,1,,Europe/Paris,,DGL, +DGL:SA:S20206,1,"O'Hara",45.783398,4.936665,,1,,Europe/Paris,,DGL, +DGL:SA:S20207,1,"Cachin - De Gaulle",45.783186,4.940393,,1,,Europe/Paris,,DGL, +DGL:SA:S20208,1,"Pont de Decines",45.77783,4.950071,,1,,Europe/Paris,,DGL, +DGL:SA:S20209,1,"Emile Bertrand",45.77212,4.957138,,1,,Europe/Paris,,DGL, +DGL:SA:S20211,1,"Vaulx Z.I. Est",45.781398,4.944502,,1,,Europe/Paris,,DGL, +DGL:SA:S20217,1,"Demi-Lune Victor Hugo",45.765938,4.783717,,1,,Europe/Paris,,DGL, +DGL:SA:S20220,1,"1ere D.F.L.",45.750717,4.814452,,1,,Europe/Paris,,DGL, +DGL:SA:S20221,1,"Bourgogne",45.7808,4.8006,,1,,Europe/Paris,,DGL, +DGL:SA:S20223,1,"Belle Croix",45.843047,4.769759,,1,,Europe/Paris,,DGL, +DGL:SA:S20224,1,"Dupuy",45.802232,4.776999,,1,,Europe/Paris,,DGL, +DGL:SA:S20225,1,"Echangeur Sans-Souci",45.804754,4.772382,,1,,Europe/Paris,,DGL, +DGL:SA:S20229,1,"Limonest Maison Retraite",45.840537,4.77241,,1,,Europe/Paris,,DGL, +DGL:SA:S20233,1,"Jacques Prevert",45.662365,4.895112,,1,,Europe/Paris,,DGL, +DGL:SA:S20239,1,"Corbas Condorcet",45.66033,4.900653,,1,,Europe/Paris,,DGL, +DGL:SA:S20241,1,"Lycee Cuzin",45.801194,4.855653,,1,,Europe/Paris,,DGL, +DGL:SA:S20244,1,"Plateaux de St Rambert",45.801752,4.826242,,1,,Europe/Paris,,DGL, +DGL:SA:S20245,1,"Chalinel",45.80061,4.824899,,1,,Europe/Paris,,DGL, +DGL:SA:S20248,1,"Berlioz",45.799482,4.821583,,1,,Europe/Paris,,DGL, +DGL:SA:S20249,1,"Chassieu College",45.7415,4.977,,1,,Europe/Paris,,DGL, +DGL:SA:S20252,1,"Meyzieu M.T.E.",45.761492,5.023772,,1,,Europe/Paris,,DGL, +DGL:SA:S20256,1,"Stade du Sauze",45.764924,4.756143,,1,,Europe/Paris,,DGL, +DGL:SA:S20259,1,"8 Mai 1945",45.7674,5.002,,1,,Europe/Paris,,DGL, +DGL:SA:S20264,1,"Ainay",45.753431,4.825894,,1,,Europe/Paris,,DGL, +DGL:SA:S20265,1,"Antoine Vollon",45.7554,4.8272,,1,,Europe/Paris,,DGL, +DGL:SA:S20266,1,"Franklin",45.752,4.8311,,1,,Europe/Paris,,DGL, +DGL:SA:S20267,1,"Ste Helene",45.7537,4.832,,1,,Europe/Paris,,DGL, +DGL:SA:S20269,1,"Simon Maupin",45.758648,4.833563,,1,,Europe/Paris,,DGL, +DGL:SA:S20270,1,"Tupin",45.763033,4.833772,,1,,Europe/Paris,,DGL, +DGL:SA:S20271,1,"St Nizier",45.764615,4.833733,,1,,Europe/Paris,,DGL, +DGL:SA:S20278,1,"Invalides - Hop.P.Garraud",45.747048,4.789568,,1,,Europe/Paris,,DGL, +DGL:SA:S20281,1,"George Sand",45.81581,4.898474,,1,,Europe/Paris,,DGL, +DGL:SA:S20284,1,"Maintenue",45.8868,4.8009,,1,,Europe/Paris,,DGL, +DGL:SA:S20285,1,"St Germain Village",45.8796,4.8045,,1,,Europe/Paris,,DGL, +DGL:SA:S20291,1,"Hauts de Vassieux",45.801558,4.862294,,1,,Europe/Paris,,DGL, +DGL:SA:S20311,1,"St Germain Pain Beni",45.883781,4.79941,,1,,Europe/Paris,,DGL, +DGL:SA:S20313,1,"Pont Gallieni RG",45.747162,4.83319,,1,,Europe/Paris,,DGL, +DGL:SA:S20322,1,"Henaff",45.686022,4.892095,,1,,Europe/Paris,,DGL, +DGL:SA:S20323,1,"Leclerc - Girondins",45.739756,4.826375,,1,,Europe/Paris,,DGL, +DGL:SA:S20327,1,"Z.I. Ampere",45.890007,4.823859,,1,,Europe/Paris,,DGL, +DGL:SA:S20328,1,"Z.I. Thimonnier",45.888194,4.821791,,1,,Europe/Paris,,DGL, +DGL:SA:S20329,1,"Z.I. Freres Lumiere",45.886562,4.818231,,1,,Europe/Paris,,DGL, +DGL:SA:S20330,1,"Z.I. Jacquard",45.88801,4.816872,,1,,Europe/Paris,,DGL, +DGL:SA:S20331,1,"Les Lilas",45.892766,4.830708,,1,,Europe/Paris,,DGL, +DGL:SA:S20337,1,"Grosso - Roosevelt",45.763122,4.937115,,1,,Europe/Paris,,DGL, +DGL:SA:S20342,1,"Place des Tapis",45.77481,4.830509,,1,,Europe/Paris,,DGL, +DGL:SA:S20344,1,"Cuire Le Bas",45.79397,4.828433,,1,,Europe/Paris,,DGL, +DGL:SA:S20345,1,"Montee des Forts",45.793715,4.833425,,1,,Europe/Paris,,DGL, +DGL:SA:S20347,1,"Cedres",45.807687,4.856526,,1,,Europe/Paris,,DGL, +DGL:SA:S20348,1,"Vassieux Centre",45.798,4.8647,,1,,Europe/Paris,,DGL, +DGL:SA:S20349,1,"La Cle des Champs",45.801533,4.864023,,1,,Europe/Paris,,DGL, +DGL:SA:S20350,1,"Parc des Sports",45.801518,4.86928,,1,,Europe/Paris,,DGL, +DGL:SA:S20352,1,"Varennes",45.819369,4.854384,,1,,Europe/Paris,,DGL, +DGL:SA:S20353,1,"Illhaeusern",45.822184,4.854732,,1,,Europe/Paris,,DGL, +DGL:SA:S20354,1,"Rue d'Island",45.82585,4.852994,,1,,Europe/Paris,,DGL, +DGL:SA:S20358,1,"Route de Lyon",45.678001,4.895479,,1,,Europe/Paris,,DGL, +DGL:SA:S20360,1,"Venissieux Allende",45.696496,4.902491,,1,,Europe/Paris,,DGL, +DGL:SA:S20363,1,"La Fouillouse",45.686852,4.98359,,1,,Europe/Paris,,DGL, +DGL:SA:S20364,1,"Cimetiere Bas",45.698729,4.98113,,1,,Europe/Paris,,DGL, +DGL:SA:S20365,1,"Savoie",45.700765,4.981805,,1,,Europe/Paris,,DGL, +DGL:SA:S20368,1,"Jules Verne",45.702236,4.974219,,1,,Europe/Paris,,DGL, +DGL:SA:S20369,1,"Boris Vian",45.69685,4.962073,,1,,Europe/Paris,,DGL, +DGL:SA:S20370,1,"Grisard",45.697566,4.948057,,1,,Europe/Paris,,DGL, +DGL:SA:S20379,1,"Fayolle",45.802036,4.820142,,1,,Europe/Paris,,DGL, +DGL:SA:S20383,1,"La Trappe",45.767994,4.797737,,1,,Europe/Paris,,DGL, +DGL:SA:S20385,1,"Romain Rolland",45.7634,4.8291,,1,,Europe/Paris,,DGL, +DGL:SA:S20392,1,"Constant",45.745482,4.888268,,1,,Europe/Paris,,DGL, +DGL:SA:S20393,1,"Caluire Hotel de Ville Radiant",45.797147,4.843419,,1,,Europe/Paris,,DGL, +DGL:SA:S20398,1,"Parc Lyder",45.707917,4.908738,,1,,Europe/Paris,,DGL, +DGL:SA:S20399,1,"Lycee Branly",45.753107,4.792185,,1,,Europe/Paris,,DGL, +DGL:SA:S20402,1,"Balme Baron",45.800526,4.874742,,1,,Europe/Paris,,DGL, +DGL:SA:S20403,1,"Pierre Gay",45.760523,4.973388,,1,,Europe/Paris,,DGL, +DGL:SA:S20404,1,"Le Biezin",45.758162,4.972156,,1,,Europe/Paris,,DGL, +DGL:SA:S20405,1,"Les Regales",45.74966,4.973503,,1,,Europe/Paris,,DGL, +DGL:SA:S20454,1,"Carmagnole",45.7595,4.9209,,1,,Europe/Paris,,DGL, +DGL:SA:S20455,1,"Brunel",45.758743,4.927469,,1,,Europe/Paris,,DGL, +DGL:SA:S20456,1,"Corneille",45.755435,4.928284,,1,,Europe/Paris,,DGL, +DGL:SA:S20462,1,"Marietton - Pont SNCF",45.775955,4.800466,,1,,Europe/Paris,,DGL, +DGL:SA:S20464,1,"18 Juin 1940",45.768533,4.990686,,1,,Europe/Paris,,DGL, +DGL:SA:S20466,1,"Les Tourelles",45.819621,4.858026,,1,,Europe/Paris,,DGL, +DGL:SA:S20468,1,"Le Mas Mathieu",45.8802,4.8602,,1,,Europe/Paris,,DGL, +DGL:SA:S20469,1,"Avenue des Avoraux",45.875186,4.82936,,1,,Europe/Paris,,DGL, +DGL:SA:S20481,1,"Bron Jules Ferry",45.732054,4.896276,,1,,Europe/Paris,,DGL, +DGL:SA:S20485,1,"Simone Lagrange",45.778591,4.903222,,1,,Europe/Paris,,DGL, +DGL:SA:S20486,1,"Clinique du Grand Large",45.771675,4.970665,,1,,Europe/Paris,,DGL, +DGL:SA:S20490,1,"Place Sublet-Marcel Paul",45.699757,4.881846,,1,,Europe/Paris,,DGL, +DGL:SA:S20493,1,"Leclerc - Girard",45.734135,4.823749,,1,,Europe/Paris,,DGL, +DGL:SA:S20495,1,"Z.A. Pesseliere",45.677171,4.965392,,1,,Europe/Paris,,DGL, +DGL:SA:S20496,1,"St Fons Gabriel Peri",45.706657,4.855512,,1,,Europe/Paris,,DGL, +DGL:SA:S20497,1,"Cite SNCF",45.7032,4.8786,,1,,Europe/Paris,,DGL, +DGL:SA:S20498,1,"Maison du Peuple",45.7043,4.8821,,1,,Europe/Paris,,DGL, +DGL:SA:S20499,1,"Venissieux Emile Zola",45.702875,4.886454,,1,,Europe/Paris,,DGL, +DGL:SA:S20500,1,"Berliet Porte E",45.704564,4.891331,,1,,Europe/Paris,,DGL, +DGL:SA:S20501,1,"Berliet Porte C",45.707017,4.898427,,1,,Europe/Paris,,DGL, +DGL:SA:S20509,1,"Marietton - S. Apollinaire",45.774707,4.793882,,1,,Europe/Paris,,DGL, +DGL:SA:S20511,1,"Jean Jacques Rousseau",45.70016,4.9421,,1,,Europe/Paris,,DGL, +DGL:SA:S20512,1,"Polaris",45.668741,4.896365,,1,,Europe/Paris,,DGL, +DGL:SA:S20518,1,"Albert Ferrus",45.664426,4.942407,,1,,Europe/Paris,,DGL, +DGL:SA:S20523,1,"La Colline",45.7796,4.8175,,1,,Europe/Paris,,DGL, +DGL:SA:S20525,1,"Labourbe",45.717477,4.884393,,1,,Europe/Paris,,DGL, +DGL:SA:S20528,1,"Stade Ph. De Lassalle",45.7832,4.8208,,1,,Europe/Paris,,DGL, +DGL:SA:S20530,1,"Ecluse de Rochetaillee",45.844357,4.835244,,1,,Europe/Paris,,DGL, +DGL:SA:S20533,1,"Genay",45.89863,4.841888,,1,,Europe/Paris,,DGL, +DGL:SA:S20536,1,"Rey Loras",45.882855,4.837087,,1,,Europe/Paris,,DGL, +DGL:SA:S20537,1,"Rue de Prandieres",45.885289,4.836534,,1,,Europe/Paris,,DGL, +DGL:SA:S20539,1,"Montanay La Tour",45.8765,4.8592,,1,,Europe/Paris,,DGL, +DGL:SA:S20541,1,"St Germain Four a Chaux",45.888802,4.806248,,1,,Europe/Paris,,DGL, +DGL:SA:S20542,1,"St Germain Cites",45.8893,4.8009,,1,,Europe/Paris,,DGL, +DGL:SA:S20543,1,"La Poype",45.8809,4.8627,,1,,Europe/Paris,,DGL, +DGL:SA:S20544,1,"Les Roses",45.879741,4.853435,,1,,Europe/Paris,,DGL, +DGL:SA:S20547,1,"Neuville Place J. Jaures",45.875,4.8399,,1,,Europe/Paris,,DGL, +DGL:SA:S20548,1,"Stade J.Lacaze",45.883586,4.81258,,1,,Europe/Paris,,DGL, +DGL:SA:S20549,1,"Route du Pontet",45.877884,4.827425,,1,,Europe/Paris,,DGL, +DGL:SA:S20551,1,"Maison Ampere - Musee",45.854,4.7997,,1,,Europe/Paris,,DGL, +DGL:SA:S20552,1,"Ecole N.D. Bellegarde",45.8704,4.842,,1,,Europe/Paris,,DGL, +DGL:SA:S20557,1,"Garibaldi - Duquesne",45.7726,4.8498,,1,,Europe/Paris,,DGL, +DGL:SA:S20558,1,"Garibaldi - Tronchet",45.7694,4.8503,,1,,Europe/Paris,,DGL, +DGL:SA:S20570,1,"Solaize Croix Rouge",45.6389,4.8532,,1,,Europe/Paris,,DGL, +DGL:SA:S20573,1,"Villebois Mareuil",45.754723,4.874539,,1,,Europe/Paris,,DGL, +DGL:SA:S20574,1,"St Philippe",45.751006,4.865135,,1,,Europe/Paris,,DGL, +DGL:SA:S30000,1,"Val Fontaine Centre",45.761701,4.725903,,1,,Europe/Paris,,DGL, +DGL:SA:S30001,1,"Val Fontaine",45.761403,4.727427,,1,,Europe/Paris,,DGL, +DGL:SA:S30006,1,"Depot de Cuire",45.788788,4.83499,,1,,Europe/Paris,,DGL, +DGL:SA:S30056,1,"Theatre Eglise Notre Dame",45.758321,4.795022,,1,,Europe/Paris,,DGL, +DGL:SA:S30060,1,"Hop.Desgenettes Vinatier",45.744154,4.895069,,1,,Europe/Paris,,DGL, +DGL:SA:S30061,1,"Meyzieu Ch.De Gaulle",45.766667,5.004264,,1,,Europe/Paris,,DGL, +DGL:SA:S30062,1,"Rue du Parc",45.730039,4.891279,,1,,Europe/Paris,,DGL, +DGL:SA:S30071,1,"Charcot - La Source",45.748112,4.792059,,1,,Europe/Paris,,DGL, +DGL:SA:S30073,1,"Ste Foy Les Sources",45.740994,4.789151,,1,,Europe/Paris,,DGL, +DGL:SA:S30076,1,"Berthet",45.746842,4.80777,,1,,Europe/Paris,,DGL, +DGL:SA:S30077,1,"Jusseaud",45.747285,4.805842,,1,,Europe/Paris,,DGL, +DGL:SA:S30078,1,"Chavril - Brulet",45.747311,4.802996,,1,,Europe/Paris,,DGL, +DGL:SA:S30080,1,"Grandvaux - Prieure",45.7731,4.774528,,1,,Europe/Paris,,DGL, +DGL:SA:S30082,1,"Ecully Fayolle",45.783221,4.780993,,1,,Europe/Paris,,DGL, +DGL:SA:S30087,1,"Genay Proulieu",45.903717,4.845074,,1,,Europe/Paris,,DGL, +DGL:SA:S30090,1,"Montmartin - Merieux",45.670671,4.921491,,1,,Europe/Paris,,DGL, +DGL:SA:S30097,1,"Verdun - Rambaud",45.750007,4.823206,,1,,Europe/Paris,,DGL, +DGL:SA:S30098,1,"Louis Braille - Montaland",45.761579,4.882417,,1,,Europe/Paris,,DGL, +DGL:SA:S30099,1,"Leonard De Vinci",45.779406,4.933929,,1,,Europe/Paris,,DGL, +DGL:SA:S30100,1,"Les Alpes",45.780534,4.937102,,1,,Europe/Paris,,DGL, +DGL:SA:S30101,1,"Lenine - Fromont",45.778438,4.937453,,1,,Europe/Paris,,DGL, +DGL:SA:S30102,1,"Montaberlet",45.768127,4.938599,,1,,Europe/Paris,,DGL, +DGL:SA:S30117,1,"Buyer - Gai Vallon",45.763322,4.800713,,1,,Europe/Paris,,DGL, +DGL:SA:S30118,1,"Trion - 4 Colonnes",45.7586,4.812,,1,,Europe/Paris,,DGL, +DGL:SA:S30132,1,"Marius Berliet",45.74244,4.85976,,1,,Europe/Paris,,DGL, +DGL:SA:S30140,1,"Avenue du Plateau",45.78423,4.794752,,1,,Europe/Paris,,DGL, +DGL:SA:S30141,1,"Duchere Les Erables",45.782636,4.793761,,1,,Europe/Paris,,DGL, +DGL:SA:S30142,1,"Maison de l'Enfance",45.7796,4.7932,,1,,Europe/Paris,,DGL, +DGL:SA:S30143,1,"Jean Fournier",45.7805,4.7948,,1,,Europe/Paris,,DGL, +DGL:SA:S30144,1,"Le Chateau Duchere",45.7797,4.7943,,1,,Europe/Paris,,DGL, +DGL:SA:S30147,1,"St Mathieu",45.74188,4.86784,,1,,Europe/Paris,,DGL, +DGL:SA:S30148,1,"Centre Nautique Tony Bertrand",45.7535,4.8381,,1,,Europe/Paris,,DGL, +DGL:SA:S30151,1,"Le Colombier",45.811391,4.715302,,1,,Europe/Paris,,DGL, +DGL:SA:S30152,1,"Le Colombier - Veyrie",45.81158,4.718238,,1,,Europe/Paris,,DGL, +DGL:SA:S30153,1,"Parc de l'Hippodrome",45.808062,4.719178,,1,,Europe/Paris,,DGL, +DGL:SA:S30155,1,"La Tour de Salvagny Gare",45.7996,4.7169,,1,,Europe/Paris,,DGL, +DGL:SA:S30157,1,"La Tour de Salvagny Mairie",45.814449,4.716264,,1,,Europe/Paris,,DGL, +DGL:SA:S30158,1,"La Tour de S. Greffieres",45.805237,4.717719,,1,,Europe/Paris,,DGL, +DGL:SA:S30164,1,"Les Granges",45.815959,4.711226,,1,,Europe/Paris,,DGL, +DGL:SA:S30173,1,"Allobroges",45.67841,4.916333,,1,,Europe/Paris,,DGL, +DGL:SA:S30176,1,"La Rochette - Clochettes",45.694932,4.857147,,1,,Europe/Paris,,DGL, +DGL:SA:S30182,1,"Valdo - Charcot",45.7498,4.7933,,1,,Europe/Paris,,DGL, +DGL:SA:S30183,1,"Savaron - Deleuvre",45.782626,4.825269,,1,,Europe/Paris,,DGL, +DGL:SA:S30186,1,"Les Sequoias",45.780848,4.779189,,1,,Europe/Paris,,DGL, +DGL:SA:S30190,1,"Le Joli Mai",45.739013,4.720291,,1,,Europe/Paris,,DGL, +DGL:SA:S30192,1,"La Graviere",45.762603,4.804087,,1,,Europe/Paris,,DGL, +DGL:SA:S30193,1,"Pavillon 2C",45.6999,4.8089,,1,,Europe/Paris,,DGL, +DGL:SA:S30194,1,"Cazeneuve - Berliet",45.739084,4.866231,,1,,Europe/Paris,,DGL, +DGL:SA:S30207,1,"Le Four",45.856154,4.876811,,1,,Europe/Paris,,DGL, +DGL:SA:S30277,1,"Cornavent",45.76922,4.967392,,1,,Europe/Paris,,DGL, +DGL:SA:S30287,1,"Noyers",45.752175,4.781857,,1,,Europe/Paris,,DGL, +DGL:SA:S30288,1,"Rue de la Garenne",45.750044,4.781158,,1,,Europe/Paris,,DGL, +DGL:SA:S30317,1,"Max Barel",45.6984,4.8972,,1,,Europe/Paris,,DGL, +DGL:SA:S30327,1,"Ste Foy Genets",45.73723,4.792968,,1,,Europe/Paris,,DGL, +DGL:SA:S30328,1,"Leriche",45.738745,4.791165,,1,,Europe/Paris,,DGL, +DGL:SA:S30337,1,"Francois Genin",45.7523,4.7955,,1,,Europe/Paris,,DGL, +DGL:SA:S30338,1,"Romarin",45.7684,4.8343,,1,,Europe/Paris,,DGL, +DGL:SA:S30339,1,"Capucins",45.7694,4.8356,,1,,Europe/Paris,,DGL, +DGL:SA:S30340,1,"Imbert Colomes",45.7715,4.8349,,1,,Europe/Paris,,DGL, +DGL:SA:S30342,1,"Place Morel",45.772003,4.826793,,1,,Europe/Paris,,DGL, +DGL:SA:S30343,1,"Allouche",45.7723,4.8302,,1,,Europe/Paris,,DGL, +DGL:SA:S30344,1,"Seve",45.77286,4.83197,,1,,Europe/Paris,,DGL, +DGL:SA:S30345,1,"Les Chartreux",45.7727,4.8216,,1,,Europe/Paris,,DGL, +DGL:SA:S30346,1,"Burdeau",45.7702,4.8321,,1,,Europe/Paris,,DGL, +DGL:SA:S30347,1,"Cazeneuve - Berthelot",45.737633,4.865575,,1,,Europe/Paris,,DGL, +DGL:SA:S30367,1,"IUFM",45.7736,4.8233,,1,,Europe/Paris,,DGL, +DGL:SA:S30377,1,"Champagne Cimetiere",45.793715,4.786214,,1,,Europe/Paris,,DGL, +DGL:SA:S30407,1,"Lycee de l'Automobile",45.751583,4.904945,,1,,Europe/Paris,,DGL, +DGL:SA:S30447,1,"Les Six Noyers",45.763107,4.9751,,1,,Europe/Paris,,DGL, +DGL:SA:S30457,1,"Franklin - Joffre",45.7536,4.8251,,1,,Europe/Paris,,DGL, +DGL:SA:S30477,1,"St Genis Verdun",45.692625,4.795223,,1,,Europe/Paris,,DGL, +DGL:SA:S30497,1,"La Grappe d'Or",45.902371,4.843077,,1,,Europe/Paris,,DGL, +DGL:SA:S30527,1,"Piscine du Roule",45.726199,4.807499,,1,,Europe/Paris,,DGL, +DGL:SA:S30587,1,"Decines Mairie",45.768154,4.956226,,1,,Europe/Paris,,DGL, +DGL:SA:S30588,1,"Decines Republique",45.768132,4.960228,,1,,Europe/Paris,,DGL, +DGL:SA:S30597,1,"Leclerc - Nadaud",45.7445,4.831462,,1,,Europe/Paris,,DGL, +DGL:SA:S30609,1,"Lacouture",45.748021,4.911676,,1,,Europe/Paris,,DGL, +DGL:SA:S30611,1,"Marne - Montferrat",45.740002,4.915291,,1,,Europe/Paris,,DGL, +DGL:SA:S30627,1,"Champagne Verte Colline",45.796042,4.785166,,1,,Europe/Paris,,DGL, +DGL:SA:S30628,1,"St Remy",45.7982,4.7858,,1,,Europe/Paris,,DGL, +DGL:SA:S30629,1,"Bas de Loyasse",45.7598,4.8106,,1,,Europe/Paris,,DGL, +DGL:SA:S30637,1,"Champagne Ecoles",45.7955,4.7875,,1,,Europe/Paris,,DGL, +DGL:SA:S30687,1,"Nervieux",45.810791,4.823691,,1,,Europe/Paris,,DGL, +DGL:SA:S30688,1,"Les Combes de St Cyr",45.812713,4.825696,,1,,Europe/Paris,,DGL, +DGL:SA:S30689,1,"Serpoly",45.81478,4.827553,,1,,Europe/Paris,,DGL, +DGL:SA:S30690,1,"Route de Saint Romain",45.821638,4.831153,,1,,Europe/Paris,,DGL, +DGL:SA:S30691,1,"Chantemale",45.8225,4.832,,1,,Europe/Paris,,DGL, +DGL:SA:S30692,1,"Chemin de l'Ecully",45.824611,4.833895,,1,,Europe/Paris,,DGL, +DGL:SA:S30693,1,"Les Chanterelles",45.823703,4.83547,,1,,Europe/Paris,,DGL, +DGL:SA:S30694,1,"Ecoles de Collonges",45.822554,4.838565,,1,,Europe/Paris,,DGL, +DGL:SA:S30695,1,"Grand Port",45.8204,4.8403,,1,,Europe/Paris,,DGL, +DGL:SA:S30707,1,"A.Thomas - INSERM",45.7437,4.8765,,1,,Europe/Paris,,DGL, +DGL:SA:S30727,1,"Les Essards",45.639458,4.802309,,1,,Europe/Paris,,DGL, +DGL:SA:S30768,1,"Le Ponterle",45.756849,4.74743,,1,,Europe/Paris,,DGL, +DGL:SA:S30769,1,"Marcy Saule",45.778516,4.701814,,1,,Europe/Paris,,DGL, +DGL:SA:S30777,1,"Cuzin - Picasso",45.775233,4.917948,,1,,Europe/Paris,,DGL, +DGL:SA:S30797,1,"Robert Reynier",45.70805,4.861403,,1,,Europe/Paris,,DGL, +DGL:SA:S30807,1,"Subsistances",45.7676,4.8174,,1,,Europe/Paris,,DGL, +DGL:SA:S30808,1,"College des Battieres",45.751211,4.78148,,1,,Europe/Paris,,DGL, +DGL:SA:S30877,1,"Le Centenaire",45.698446,4.830397,,1,,Europe/Paris,,DGL, +DGL:SA:S30947,1,"Le Moulin",45.695048,4.823737,,1,,Europe/Paris,,DGL, +DGL:SA:S30957,1,"Croix-Rousse Nord",45.7839,4.8239,,1,,Europe/Paris,,DGL, +DGL:SA:S30967,1,"Henri Marechal",45.692125,4.939055,,1,,Europe/Paris,,DGL, +DGL:SA:S30987,1,"Sogaris - Promotrans",45.676,4.9345,,1,,Europe/Paris,,DGL, +DGL:SA:S31037,1,"Gymnase Frison Roche",45.689746,4.858817,,1,,Europe/Paris,,DGL, +DGL:SA:S31068,1,"Castors",45.751832,4.808837,,1,,Europe/Paris,,DGL, +DGL:SA:S31069,1,"Achard",45.748336,4.808988,,1,,Europe/Paris,,DGL, +DGL:SA:S31088,1,"Guilloux",45.688934,4.807311,,1,,Europe/Paris,,DGL, +DGL:SA:S31089,1,"Citadelle",45.687371,4.804714,,1,,Europe/Paris,,DGL, +DGL:SA:S31098,1,"Clinique Mon Repos",45.77104,4.78377,,1,,Europe/Paris,,DGL, +DGL:SA:S31099,1,"Clinique Val d'Ouest",45.769254,4.784571,,1,,Europe/Paris,,DGL, +DGL:SA:S31100,1,"Duchere Castilla",45.788915,4.796634,,1,,Europe/Paris,,DGL, +DGL:SA:S31120,1,"Feyzin Oasis",45.681111,4.866691,,1,,Europe/Paris,,DGL, +DGL:SA:S31139,1,"St Priest Salengro",45.690254,4.937248,,1,,Europe/Paris,,DGL, +DGL:SA:S31148,1,"Route d'Heyrieux",45.687909,4.942465,,1,,Europe/Paris,,DGL, +DGL:SA:S31150,1,"Pasteur - 11 Novembre",45.701025,4.92634,,1,,Europe/Paris,,DGL, +DGL:SA:S31170,1,"Timbaud - Charbonnier",45.693329,4.905972,,1,,Europe/Paris,,DGL, +DGL:SA:S31171,1,"Henaff - Charbonnier",45.69137,4.907564,,1,,Europe/Paris,,DGL, +DGL:SA:S31172,1,"Dauphine - Charbonnier",45.685338,4.910788,,1,,Europe/Paris,,DGL, +DGL:SA:S31180,1,"Z.I. Le Carreau",45.680468,4.894438,,1,,Europe/Paris,,DGL, +DGL:SA:S31190,1,"Parc des Corbeges",45.684104,4.931298,,1,,Europe/Paris,,DGL, +DGL:SA:S31191,1,"Le Capot",45.70699,4.985824,,1,,Europe/Paris,,DGL, +DGL:SA:S31192,1,"Manissieux Mont-Blanc",45.6977,4.9886,,1,,Europe/Paris,,DGL, +DGL:SA:S31193,1,"Rue des Alpes",45.7001,4.9895,,1,,Europe/Paris,,DGL, +DGL:SA:S31194,1,"Route de Toussieu",45.68918,4.983709,,1,,Europe/Paris,,DGL, +DGL:SA:S31210,1,"Jonage Lavoir",45.792076,5.048584,,1,,Europe/Paris,,DGL, +DGL:SA:S31220,1,"Centre Val Rosay",45.799729,4.809369,,1,,Europe/Paris,,DGL, +DGL:SA:S31221,1,"Moulin d'Arche",45.802908,4.807858,,1,,Europe/Paris,,DGL, +DGL:SA:S31230,1,"J. B. Simon",45.826012,4.857399,,1,,Europe/Paris,,DGL, +DGL:SA:S31260,1,"Ravat",45.743931,4.824433,,1,,Europe/Paris,,DGL, +DGL:SA:S31261,1,"Casimir-Perier",45.7412,4.823997,,1,,Europe/Paris,,DGL, +DGL:SA:S31280,1,"Universite Lyon 1 Gerland",45.726606,4.826949,,1,,Europe/Paris,,DGL, +DGL:SA:S31300,1,"Flacheres",45.641736,4.795593,,1,,Europe/Paris,,DGL, +DGL:SA:S31301,1,"Les Mesanges",45.640216,4.797736,,1,,Europe/Paris,,DGL, +DGL:SA:S31330,1,"Les Baysses",45.860118,4.811238,,1,,Europe/Paris,,DGL, +DGL:SA:S31350,1,"La Doua - Jussieu",45.7814,4.8763,,1,,Europe/Paris,,DGL, +DGL:SA:S31360,1,"Marcy l'Etoile Campus Merieux",45.7777,4.7055,,1,,Europe/Paris,,DGL, +DGL:SA:S31361,1,"BioMerieux",45.780512,4.709017,,1,,Europe/Paris,,DGL, +DGL:SA:S31370,1,"Le Grand Champ",45.745568,4.716326,,1,,Europe/Paris,,DGL, +DGL:SA:S31380,1,"GAEC de la Grive",45.857044,4.880608,,1,,Europe/Paris,,DGL, +DGL:SA:S31390,1,"Verlaine - 4 aout",45.76435,4.880764,,1,,Europe/Paris,,DGL, +DGL:SA:S31391,1,"Gratte-Ciel - Verlaine",45.768255,4.880208,,1,,Europe/Paris,,DGL, +DGL:SA:S31400,1,"Moliere",45.763584,4.843285,,1,,Europe/Paris,,DGL, +DGL:SA:S31410,1,"Marc-Antoine Petit",45.745584,4.825192,,1,,Europe/Paris,,DGL, +DGL:SA:S31420,1,"St Priest Egalite",45.690115,4.946718,,1,,Europe/Paris,,DGL, +DGL:SA:S31421,1,"Corbas G.Brassens",45.667757,4.905338,,1,,Europe/Paris,,DGL, +DGL:SA:S31422,1,"Vignerme",45.668885,4.901289,,1,,Europe/Paris,,DGL, +DGL:SA:S31430,1,"Corbas Les Balmes",45.6649,4.8942,,1,,Europe/Paris,,DGL, +DGL:SA:S31431,1,"La Fouillouse Acacias",45.685641,4.97654,,1,,Europe/Paris,,DGL, +DGL:SA:S31450,1,"Pavillon Urgences",45.7007,4.807,,1,,Europe/Paris,,DGL, +DGL:SA:S31460,1,"La Ferriere",45.8818,4.8685,,1,,Europe/Paris,,DGL, +DGL:SA:S31470,1,"Montrochet",45.740353,4.815873,,1,,Europe/Paris,,DGL, +DGL:SA:S31474,1,"Genay Lavoir",45.896805,4.838036,,1,,Europe/Paris,,DGL, +DGL:SA:S31475,1,"Pont de Neuville RG",45.877896,4.838124,,1,,Europe/Paris,,DGL, +DGL:SA:S31480,1,"Les Massues - Soeur Janin",45.760125,4.798478,,1,,Europe/Paris,,DGL, +DGL:SA:S31520,1,"Vancia Chateau Berard",45.8356,4.9115,,1,,Europe/Paris,,DGL, +DGL:SA:S31540,1,"Paradin",45.7367,4.8881,,1,,Europe/Paris,,DGL, +DGL:SA:S31560,1,"Place Ambroise Courtois",45.743995,4.870746,,1,,Europe/Paris,,DGL, +DGL:SA:S31570,1,"Parc Chambovet",45.747546,4.896669,,1,,Europe/Paris,,DGL, +DGL:SA:S31571,1,"Bron Genets",45.748197,4.903785,,1,,Europe/Paris,,DGL, +DGL:SA:S31572,1,"Yves Farge",45.657473,4.948535,,1,,Europe/Paris,,DGL, +DGL:SA:S31580,1,"Charbonnier",45.656856,4.946054,,1,,Europe/Paris,,DGL, +DGL:SA:S31581,1,"Combo",45.658817,4.943406,,1,,Europe/Paris,,DGL, +DGL:SA:S31582,1,"Mions Bourdelle",45.660198,4.941693,,1,,Europe/Paris,,DGL, +DGL:SA:S31583,1,"Mions Rte Corbas",45.665483,4.938541,,1,,Europe/Paris,,DGL, +DGL:SA:S31590,1,"College des Charpennes",45.774,4.8698,,1,,Europe/Paris,,DGL, +DGL:SA:S31601,1,"Rue Pollet (Lycee)",45.876439,4.847129,,1,,Europe/Paris,,DGL, +DGL:SA:S31630,1,"Z.I. Terray - Schweitzer",45.770312,5.029174,,1,,Europe/Paris,,DGL, +DGL:SA:S31631,1,"Z.I. Nord",45.7781,5.0226,,1,,Europe/Paris,,DGL, +DGL:SA:S31632,1,"Z.I. Sud",45.7674,5.0195,,1,,Europe/Paris,,DGL, +DGL:SA:S31633,1,"Centre commercial des Plantees",45.765384,5.008811,,1,,Europe/Paris,,DGL, +DGL:SA:S31634,1,"Dauphine - Berlioz",45.76286,5.007826,,1,,Europe/Paris,,DGL, +DGL:SA:S31635,1,"Grenoble",45.760754,5.008859,,1,,Europe/Paris,,DGL, +DGL:SA:S31636,1,"Auvergne",45.761274,5.017736,,1,,Europe/Paris,,DGL, +DGL:SA:S31637,1,"Marseille - Perigord",45.761637,5.021342,,1,,Europe/Paris,,DGL, +DGL:SA:S31640,1,"Meyzieu Av de Crottay",45.760265,5.024683,,1,,Europe/Paris,,DGL, +DGL:SA:S31650,1,"Grigny La Colombe",45.615839,4.799489,,1,,Europe/Paris,,DGL, +DGL:SA:S31651,1,"Dutartre",45.613814,4.798649,,1,,Europe/Paris,,DGL, +DGL:SA:S31652,1,"Le Manoir",45.611222,4.79575,,1,,Europe/Paris,,DGL, +DGL:SA:S31653,1,"La Rochere",45.60986,4.793246,,1,,Europe/Paris,,DGL, +DGL:SA:S31654,1,"Mayer",45.609227,4.789598,,1,,Europe/Paris,,DGL, +DGL:SA:S31655,1,"Centre Chervet",45.607536,4.787975,,1,,Europe/Paris,,DGL, +DGL:SA:S31656,1,"Grigny Bel Air",45.609644,4.786254,,1,,Europe/Paris,,DGL, +DGL:SA:S31657,1,"Grigny Ampere",45.609592,4.783674,,1,,Europe/Paris,,DGL, +DGL:SA:S31658,1,"Espace Favier",45.607829,4.783621,,1,,Europe/Paris,,DGL, +DGL:SA:S31659,1,"Arondieres",45.605803,4.782441,,1,,Europe/Paris,,DGL, +DGL:SA:S31660,1,"Maison",45.609168,4.779416,,1,,Europe/Paris,,DGL, +DGL:SA:S31662,1,"Grigny Pressense",45.603194,4.779299,,1,,Europe/Paris,,DGL, +DGL:SA:S31663,1,"Cite SNCF Grigny",45.602039,4.776741,,1,,Europe/Paris,,DGL, +DGL:SA:S31664,1,"Givors Parc des Sports",45.601766,4.770876,,1,,Europe/Paris,,DGL, +DGL:SA:S31665,1,"Les Vernes - R. Rolland",45.603192,4.767374,,1,,Europe/Paris,,DGL, +DGL:SA:S31666,1,"Les Vernes - J. Valles",45.606874,4.766741,,1,,Europe/Paris,,DGL, +DGL:SA:S31667,1,"Les Vernes - Lenine",45.607597,4.764304,,1,,Europe/Paris,,DGL, +DGL:SA:S31668,1,"Les Vernes - De Gaulle",45.604547,4.763638,,1,,Europe/Paris,,DGL, +DGL:SA:S31669,1,"Lycee Picasso",45.601924,4.762779,,1,,Europe/Paris,,DGL, +DGL:SA:S31670,1,"Docteur Roux",45.597968,4.765664,,1,,Europe/Paris,,DGL, +DGL:SA:S31671,1,"Givors Marcel Cachin",45.596173,4.766462,,1,,Europe/Paris,,DGL, +DGL:SA:S31672,1,"Givors Yves Farge",45.593571,4.76455,,1,,Europe/Paris,,DGL, +DGL:SA:S31673,1,"Casanova",45.594802,4.76724,,1,,Europe/Paris,,DGL, +DGL:SA:S31674,1,"Gare de Givors Canal",45.594009,4.769976,,1,,Europe/Paris,,DGL, +DGL:SA:S31675,1,"Givors Picard",45.592043,4.770338,,1,,Europe/Paris,,DGL, +DGL:SA:S31676,1,"Givors Leclerc",45.588334,4.771001,,1,,Europe/Paris,,DGL, +DGL:SA:S31677,1,"Givors Carnot",45.5854,4.7715,,1,,Europe/Paris,,DGL, +DGL:SA:S31678,1,"Givors Salengro",45.5841,4.7715,,1,,Europe/Paris,,DGL, +DGL:SA:S31679,1,"Givors Hotel de Ville",45.5823,4.7726,,1,,Europe/Paris,,DGL, +DGL:SA:S31680,1,"Marcel Paul",45.5838,4.7707,,1,,Europe/Paris,,DGL, +DGL:SA:S31681,1,"Givors Place Pasteur",45.5851,4.7691,,1,,Europe/Paris,,DGL, +DGL:SA:S31683,1,"La Freydiere",45.585456,4.763029,,1,,Europe/Paris,,DGL, +DGL:SA:S31684,1,"Rue de Montrond",45.587069,4.761049,,1,,Europe/Paris,,DGL, +DGL:SA:S31685,1,"Givors Centre Commercial",45.585359,4.751507,,1,,Europe/Paris,,DGL, +DGL:SA:S31686,1,"Vallee du Gier 1",45.583605,4.746649,,1,,Europe/Paris,,DGL, +DGL:SA:S31687,1,"Givors Vallee du Gier",45.5812,4.7405,,1,,Europe/Paris,,DGL, +DGL:SA:S31688,1,"Gare de Grigny Le Sablon",45.608152,4.794164,,1,,Europe/Paris,,DGL, +DGL:SA:S31689,1,"Terrasse des Arboras",45.601975,4.787702,,1,,Europe/Paris,,DGL, +DGL:SA:S31690,1,"Arboras",45.597931,4.782631,,1,,Europe/Paris,,DGL, +DGL:SA:S31691,1,"Bonnefond",45.594472,4.772253,,1,,Europe/Paris,,DGL, +DGL:SA:S31700,1,"College des Vernes",45.599,4.7682,,1,,Europe/Paris,,DGL, +DGL:SA:S31701,1,"Tour de Varissan",45.595887,4.76159,,1,,Europe/Paris,,DGL, +DGL:SA:S31702,1,"Intermediaire",45.594269,4.758814,,1,,Europe/Paris,,DGL, +DGL:SA:S31703,1,"Chatelaine",45.592041,4.752794,,1,,Europe/Paris,,DGL, +DGL:SA:S31704,1,"Plateau de Montrond",45.5913,4.75,,1,,Europe/Paris,,DGL, +DGL:SA:S31705,1,"Stade de Montrond",45.59,4.7461,,1,,Europe/Paris,,DGL, +DGL:SA:S31706,1,"Autrichiens",45.5889,4.7481,,1,,Europe/Paris,,DGL, +DGL:SA:S31723,1,"Metallurgie",45.583,4.7572,,1,,Europe/Paris,,DGL, +DGL:SA:S31724,1,"La Jument Noire",45.5841,4.7575,,1,,Europe/Paris,,DGL, +DGL:SA:S31726,1,"Port du Bief",45.580279,4.779432,,1,,Europe/Paris,,DGL, +DGL:SA:S31727,1,"Tour de Bans",45.577245,4.787898,,1,,Europe/Paris,,DGL, +DGL:SA:S31728,1,"La Lone",45.575204,4.790698,,1,,Europe/Paris,,DGL, +DGL:SA:S31729,1,"Abricotiers",45.5714,4.7934,,1,,Europe/Paris,,DGL, +DGL:SA:S31730,1,"College Paul Vallon",45.568247,4.795969,,1,,Europe/Paris,,DGL, +DGL:SA:S31731,1,"Bertholon",45.576803,4.773114,,1,,Europe/Paris,,DGL, +DGL:SA:S31732,1,"Cimetiere de Givors",45.576268,4.777217,,1,,Europe/Paris,,DGL, +DGL:SA:S31740,1,"Denfert Rochereau",45.582978,4.777027,,1,,Europe/Paris,,DGL, +DGL:SA:S31741,1,"Liauthaud",45.589387,4.761141,,1,,Europe/Paris,,DGL, +DGL:SA:S31780,1,"Grigny Pasteur",45.609691,4.776787,,1,,Europe/Paris,,DGL, +DGL:SA:S31781,1,"Le Jayon",45.60474,4.781193,,1,,Europe/Paris,,DGL, +DGL:SA:S31783,1,"Centre Hospitalier Montgelas",45.598866,4.767658,,1,,Europe/Paris,,DGL, +DGL:SA:S31784,1,"Place de la Liberte",45.585537,4.774551,,1,,Europe/Paris,,DGL, +DGL:SA:S31790,1,"Pont Chevreul",45.685967,4.931912,,1,,Europe/Paris,,DGL, +DGL:SA:S31800,1,"Pateliere - Robiniers",45.74587,4.745205,,1,,Europe/Paris,,DGL, +DGL:SA:S31810,1,"Hopital Mere Enfant",45.747444,4.901499,,1,,Europe/Paris,,DGL, +DGL:SA:S31840,1,"Echangeur Porte des Alpes",45.723401,4.920915,,1,,Europe/Paris,,DGL, +DGL:SA:S31841,1,"Rd Pt Charles de Gaulle",45.726389,4.930142,,1,,Europe/Paris,,DGL, +DGL:SA:S31842,1,"Normandie-Niemen",45.725034,4.934204,,1,,Europe/Paris,,DGL, +DGL:SA:S31860,1,"Gadagne - Egalite",45.69902,4.788371,,1,,Europe/Paris,,DGL, +DGL:SA:S31870,1,"Boulevard des Oiseaux",45.8163,4.8686,,1,,Europe/Paris,,DGL, +DGL:SA:S31880,1,"Observatoire",45.696985,4.786748,,1,,Europe/Paris,,DGL, +DGL:SA:S31881,1,"La Chataigneraie",45.701203,4.791848,,1,,Europe/Paris,,DGL, +DGL:SA:S31890,1,"Montgay Chardonniere",45.821136,4.862505,,1,,Europe/Paris,,DGL, +DGL:SA:S31900,1,"Corbas Chateau d'Eau",45.685625,4.904939,,1,,Europe/Paris,,DGL, +DGL:SA:S31901,1,"Mions Pierre Blanche",45.668052,4.929264,,1,,Europe/Paris,,DGL, +DGL:SA:S31912,1,"St Fons Sembat",45.709963,4.849368,,1,,Europe/Paris,,DGL, +DGL:SA:S31913,1,"Freres Perret",45.6903,4.8459,,1,,Europe/Paris,,DGL, +DGL:SA:S31920,1,"Halles Paul Bocuse",45.763656,4.850075,,1,,Europe/Paris,,DGL, +DGL:SA:S31921,1,"Institut d'art contemporain",45.76377,4.873074,,1,,Europe/Paris,,DGL, +DGL:SA:S31922,1,"Blanqui-Ctre Memoires et Ste",45.761007,4.884645,,1,,Europe/Paris,,DGL, +DGL:SA:S31930,1,"Rocade des Monts d'Or",45.820045,4.810717,,1,,Europe/Paris,,DGL, +DGL:SA:S31940,1,"Tourneyrand",45.858719,4.841295,,1,,Europe/Paris,,DGL, +DGL:SA:S31950,1,"Champagne Lanessan",45.792618,4.795204,,1,,Europe/Paris,,DGL, +DGL:SA:S31970,1,"10 Rue Saillant",45.774673,4.937732,,1,,Europe/Paris,,DGL, +DGL:SA:S31971,1,"30 Rue Saillant",45.77819,4.941713,,1,,Europe/Paris,,DGL, +DGL:SA:S31972,1,"Fromont - Karl Marx",45.780667,4.941476,,1,,Europe/Paris,,DGL, +DGL:SA:S31973,1,"Karl Marx",45.778245,4.939374,,1,,Europe/Paris,,DGL, +DGL:SA:S31975,1,"Z.I. Bruyeres",45.7597,4.9416,,1,,Europe/Paris,,DGL, +DGL:SA:S31976,1,"Edelweiss",45.7568,4.9426,,1,,Europe/Paris,,DGL, +DGL:SA:S31977,1,"Vaucanson",45.7541,4.9432,,1,,Europe/Paris,,DGL, +DGL:SA:S31978,1,"Z.I. Roosevelt",45.7505,4.9342,,1,,Europe/Paris,,DGL, +DGL:SA:S31979,1,"Roosevelt - Vaucanson",45.7544,4.9352,,1,,Europe/Paris,,DGL, +DGL:SA:S31980,1,"Z.I. Ouest",45.7575,4.936,,1,,Europe/Paris,,DGL, +DGL:SA:S32011,1,"Leclerc",45.813151,4.895568,,1,,Europe/Paris,,DGL, +DGL:SA:S32018,1,"Charcot",45.786208,4.993514,,1,,Europe/Paris,,DGL, +DGL:SA:S32019,1,"Mont Joyeux",45.787999,4.993163,,1,,Europe/Paris,,DGL, +DGL:SA:S32041,1,"College Evariste Gallois",45.770626,4.993679,,1,,Europe/Paris,,DGL, +DGL:SA:S32071,1,"Castellane Leclerc",45.812592,4.894615,,1,,Europe/Paris,,DGL, +DGL:SA:S32074,1,"Santy Grandvaux",45.773983,4.77265,,1,,Europe/Paris,,DGL, +DGL:SA:S32086,1,"Pole Alimentaire",45.669246,4.924743,,1,,Europe/Paris,,DGL, +DGL:SA:S32088,1,"Industrie Charbonnier",45.687645,4.912431,,1,,Europe/Paris,,DGL, +DGL:SA:S32111,1,"Jean Baptiste Perret",45.816966,4.834011,,1,,Europe/Paris,,DGL, +DGL:SA:S32115,1,"Collonges Gare",45.829,4.846,,1,,Europe/Paris,,DGL, +DGL:SA:S32130,1,"Mairie St Cyr",45.815876,4.817787,,1,,Europe/Paris,,DGL, +DGL:SA:S32131,1,"Place Coponat",45.740282,4.97038,,1,,Europe/Paris,,DGL, +DGL:SA:S32154,1,"Vallas",45.742334,4.720069,,1,,Europe/Paris,,DGL, +DGL:SA:S32170,1,"Terres Plates",45.743788,4.727273,,1,,Europe/Paris,,DGL, +DGL:SA:S32172,1,"Serpoly Nervieux",45.814425,4.823033,,1,,Europe/Paris,,DGL, +DGL:SA:S32173,1,"St Cyr Eglise",45.814408,4.819858,,1,,Europe/Paris,,DGL, +DGL:SA:S32181,1,"Centre L. Bonnevay",45.810252,4.794983,,1,,Europe/Paris,,DGL, +DGL:SA:S32182,1,"Le Castellard",45.806512,4.790319,,1,,Europe/Paris,,DGL, +DGL:SA:S32193,1,"St Priest Les Alpes",45.693545,4.931959,,1,,Europe/Paris,,DGL, +DGL:SA:S32265,1,"Meyzieu Bascule",45.765962,4.996066,,1,,Europe/Paris,,DGL, +DGL:SA:S32371,1,"Fauconnet",45.7501,4.789,,1,,Europe/Paris,,DGL, +DGL:SA:S32372,1,"Jeunet",45.748,4.7908,,1,,Europe/Paris,,DGL, +DGL:SA:S32391,1,"Gadagne - Foch",45.688189,4.786087,,1,,Europe/Paris,,DGL, +DGL:SA:S32410,1,"Les Lavandes",45.6455,4.8038,,1,,Europe/Paris,,DGL, +DGL:SA:S32560,1,"Eaux Vives",45.838746,4.828897,,1,,Europe/Paris,,DGL, +DGL:SA:S32561,1,"St Romain Centre",45.838,4.8249,,1,,Europe/Paris,,DGL, +DGL:SA:S32590,1,"La Sucriere",45.737963,4.815233,,1,,Europe/Paris,,DGL, +DGL:SA:S32600,1,"Brindas Salle des Fetes",45.722513,4.697146,,1,,Europe/Paris,,DGL, +DGL:SA:S32640,1,"Irigny Hauts de Selettes",45.6594,4.8167,,1,,Europe/Paris,,DGL, +DGL:SA:S32641,1,"Billon",45.665586,4.820931,,1,,Europe/Paris,,DGL, +DGL:SA:S32710,1,"Les Vergers",45.661934,4.817993,,1,,Europe/Paris,,DGL, +DGL:SA:S32730,1,"Corbas Les Bruyeres",45.659398,4.902426,,1,,Europe/Paris,,DGL, +DGL:SA:S32750,1,"Jean Sebastien Bach",45.694035,4.897701,,1,,Europe/Paris,,DGL, +DGL:SA:S32780,1,"Ancienne Gare",45.7188,4.696958,,1,,Europe/Paris,,DGL, +DGL:SA:S32812,1,"Domer - Chevreul",45.7468,4.8448,,1,,Europe/Paris,,DGL, +DGL:SA:S32821,1,"Carre de Soie",45.764711,4.919589,,1,,Europe/Paris,,DGL, +DGL:SA:S32822,1,"Maurice Ravel",45.677607,4.861028,,1,,Europe/Paris,,DGL, +DGL:SA:S32823,1,"Deux Fermes",45.691784,4.860894,,1,,Europe/Paris,,DGL, +DGL:SA:S32824,1,"Yves Farge - Corsiere",45.695392,4.859073,,1,,Europe/Paris,,DGL, +DGL:SA:S32826,1,"Rue de Sete",45.713438,4.84149,,1,,Europe/Paris,,DGL, +DGL:SA:S32827,1,"Carriere du Port",45.722082,4.84036,,1,,Europe/Paris,,DGL, +DGL:SA:S32829,1,"Le Bandonnier",45.6649,4.8607,,1,,Europe/Paris,,DGL, +DGL:SA:S32830,1,"Feyzin Mairie",45.670097,4.859952,,1,,Europe/Paris,,DGL, +DGL:SA:S32850,1,"Commune de Paris",45.702746,4.86949,,1,,Europe/Paris,,DGL, +DGL:SA:S32890,1,"Europa",45.681171,4.933472,,1,,Europe/Paris,,DGL, +DGL:SA:S32891,1,"Maison d'Arret",45.67754,4.93296,,1,,Europe/Paris,,DGL, +DGL:SA:S32900,1,"Vaulx Salengro",45.749984,4.9275,,1,,Europe/Paris,,DGL, +DGL:SA:S32930,1,"360 Avenue Schneider",45.7808,5.0262,,1,,Europe/Paris,,DGL, +DGL:SA:S32931,1,"1 Avenue Schneider",45.7793,5.0344,,1,,Europe/Paris,,DGL, +DGL:SA:S32940,1,"Montcelard",45.77069,4.755066,,1,,Europe/Paris,,DGL, +DGL:SA:S32960,1,"Pays Bas",45.7595,5.0284,,1,,Europe/Paris,,DGL, +DGL:SA:S32970,1,"Les Chantres",45.699,4.9862,,1,,Europe/Paris,,DGL, +DGL:SA:S32980,1,"Z.A Barolles",45.675582,4.782265,,1,,Europe/Paris,,DGL, +DGL:SA:S32981,1,"Clotilde",45.767365,4.761697,,1,,Europe/Paris,,DGL, +DGL:SA:S33000,1,"Mions Centre",45.664068,4.95639,,1,,Europe/Paris,,DGL, +DGL:SA:S33030,1,"Parc de l'Artillerie",45.728232,4.844913,,1,,Europe/Paris,,DGL, +DGL:SA:S33041,1,"19 Mars 1962",45.700137,4.859845,,1,,Europe/Paris,,DGL, +DGL:SA:S33050,1,"Techsud",45.723864,4.845016,,1,,Europe/Paris,,DGL, +DGL:SA:S33051,1,"Pr Bernard",45.722862,4.843975,,1,,Europe/Paris,,DGL, +DGL:SA:S33052,1,"Ramboz Bitumes",45.68,4.8461,,1,,Europe/Paris,,DGL, +DGL:SA:S33060,1,"Gambetta - Picasso",45.76364,4.995633,,1,,Europe/Paris,,DGL, +DGL:SA:S33061,1,"Mendes France - Rambion",45.761509,4.989813,,1,,Europe/Paris,,DGL, +DGL:SA:S33063,1,"Desbois - Pommier",45.77692,5.005515,,1,,Europe/Paris,,DGL, +DGL:SA:S33070,1,"Square Combattants d'AFN",45.696226,4.793573,,1,,Europe/Paris,,DGL, +DGL:SA:S33071,1,"Cimetiere de St Genis",45.700476,4.787911,,1,,Europe/Paris,,DGL, +DGL:SA:S33072,1,"Putet",45.704,4.7857,,1,,Europe/Paris,,DGL, +DGL:SA:S33073,1,"Clos Burtin",45.7043,4.7876,,1,,Europe/Paris,,DGL, +DGL:SA:S33074,1,"Molinette",45.7044,4.7904,,1,,Europe/Paris,,DGL, +DGL:SA:S33075,1,"Prieure",45.7062,4.7897,,1,,Europe/Paris,,DGL, +DGL:SA:S33076,1,"Molinette - Montlouis",45.7093,4.7865,,1,,Europe/Paris,,DGL, +DGL:SA:S33077,1,"Moly",45.7066,4.7845,,1,,Europe/Paris,,DGL, +DGL:SA:S33078,1,"Allee Dubost",45.7049,4.785,,1,,Europe/Paris,,DGL, +DGL:SA:S33080,1,"Chemin de la Poterie",45.749226,4.761061,,1,,Europe/Paris,,DGL, +DGL:SA:S33090,1,"Brunier - Guyot",45.790991,4.831442,,1,,Europe/Paris,,DGL, +DGL:SA:S33091,1,"Pierre Brunier",45.78886,4.830528,,1,,Europe/Paris,,DGL, +DGL:SA:S33140,1,"Z.I. Sermenaz",45.820197,4.913585,,1,,Europe/Paris,,DGL, +DGL:SA:S33141,1,"Osterode",45.822544,4.915671,,1,,Europe/Paris,,DGL, +DGL:SA:S33160,1,"Centre Com. Porte de Lyon",45.820401,4.768067,,1,,Europe/Paris,,DGL, +DGL:SA:S33161,1,"Musee des Beaux Arts",45.7665,4.8344,,1,,Europe/Paris,,DGL, +DGL:SA:S33170,1,"Valliere",45.8167,4.8273,,1,,Europe/Paris,,DGL, +DGL:SA:S33171,1,"Cote de Vaux",45.815591,4.811515,,1,,Europe/Paris,,DGL, +DGL:SA:S33180,1,"Louisa Siefert",45.805226,4.817261,,1,,Europe/Paris,,DGL, +DGL:SA:S33181,1,"La Chaux Ecole de Champlong",45.8148,4.8292,,1,,Europe/Paris,,DGL, +DGL:SA:S33190,1,"Caluire - Place de la bascule",45.80226,4.850968,,1,,Europe/Paris,,DGL, +DGL:SA:S33200,1,"Teillon - Poudrette",45.750684,4.918622,,1,,Europe/Paris,,DGL, +DGL:SA:S33210,1,"Parc des Lumieres 1",45.6805,4.9649,,1,,Europe/Paris,,DGL, +DGL:SA:S33211,1,"Parc des Lumieres 2",45.6795,4.9683,,1,,Europe/Paris,,DGL, +DGL:SA:S33212,1,"Parc des Lumieres 3",45.6805,4.9697,,1,,Europe/Paris,,DGL, +DGL:SA:S33213,1,"Parc des Meurieres",45.681267,4.957726,,1,,Europe/Paris,,DGL, +DGL:SA:S33214,1,"La Palombiere",45.682588,4.954158,,1,,Europe/Paris,,DGL, +DGL:SA:S33230,1,"Parc de Parilly",45.7237,4.8924,,1,,Europe/Paris,,DGL, +DGL:SA:S33231,1,"Clos Verger",45.718925,4.892562,,1,,Europe/Paris,,DGL, +DGL:SA:S33232,1,"Patinoire Baraban",45.761811,4.868378,,1,,Europe/Paris,,DGL, +DGL:SA:S33240,1,"Republique - Pierre Benite",45.70292,4.828046,,1,,Europe/Paris,,DGL, +DGL:SA:S33241,1,"Gare de Pierre Benite",45.705845,4.823286,,1,,Europe/Paris,,DGL, +DGL:SA:S33242,1,"Brotillon",45.70381,4.827375,,1,,Europe/Paris,,DGL, +DGL:SA:S33243,1,"Fosse aux Ours",45.7575,4.8407,,1,,Europe/Paris,,DGL, +DGL:SA:S33244,1,"Colonel Chambonnet",45.727,4.9236,,1,,Europe/Paris,,DGL, +DGL:SA:S33245,1,"Croizat Rocade",45.712365,4.971621,,1,,Europe/Paris,,DGL, +DGL:SA:S33246,1,"Galline",45.776341,4.867902,,1,,Europe/Paris,,DGL, +DGL:SA:S33247,1,"Hopitaux Est",45.7465,4.9045,,1,,Europe/Paris,,DGL, +DGL:SA:S33248,1,"Pinel Lepine",45.749539,4.89709,,1,,Europe/Paris,,DGL, +DGL:SA:S33250,1,"Montee Roy",45.83177,4.850896,,1,,Europe/Paris,,DGL, +DGL:SA:S33260,1,"Joconde",45.7524,4.7893,,1,,Europe/Paris,,DGL, +DGL:SA:S33273,1,"Pagere Vivaldi",45.746482,4.915603,,1,,Europe/Paris,,DGL, +DGL:SA:S33280,1,"Augagneur Servient",45.7597,4.8409,,1,,Europe/Paris,,DGL, +DGL:SA:S33281,1,"Eiffel",45.7818,5.0292,,1,,Europe/Paris,,DGL, +DGL:SA:S33290,1,"Limonest Le Puy d'Or",45.814019,4.77647,,1,,Europe/Paris,,DGL, +DGL:SA:S33301,1,"Chasselay Chalay",45.87668,4.77933,,1,,Europe/Paris,,DGL, +DGL:SA:S33302,1,"Lissieu Le Nelie",45.849915,4.733296,,1,,Europe/Paris,,DGL, +DGL:SA:S33303,1,"Lissieu La Reserve",45.85791,4.739294,,1,,Europe/Paris,,DGL, +DGL:SA:S33304,1,"Lissieu Centre Mairie",45.865235,4.742352,,1,,Europe/Paris,,DGL, +DGL:SA:S33310,1,"Crepet",45.73984,4.833103,,1,,Europe/Paris,,DGL, +DGL:SA:S33312,1,"Craponne - 11 Novembre",45.746024,4.731533,,1,,Europe/Paris,,DGL, +DGL:SA:S33321,1,"Combattants",45.706561,4.814769,,1,,Europe/Paris,,DGL, +DGL:SA:S33322,1,"Emile Zola",45.705069,4.819109,,1,,Europe/Paris,,DGL, +DGL:SA:S33330,1,"Echangeur Sauvegarde",45.78669,4.787233,,1,,Europe/Paris,,DGL, +DGL:SA:S33340,1,"MJC - Centre Choregraphique",45.814037,4.901331,,1,,Europe/Paris,,DGL, +DGL:SA:S33350,1,"Jean Monnet",45.789539,4.841296,,1,,Europe/Paris,,DGL, +DGL:SA:S33360,1,"Plasson et Chaize",45.79126,4.818067,,1,,Europe/Paris,,DGL, +DGL:SA:S33380,1,"Companet",45.811574,4.877177,,1,,Europe/Paris,,DGL, +DGL:SA:S33390,1,"Chateau Sans Souci",45.8089,4.7783,,1,,Europe/Paris,,DGL, +DGL:SA:S33391,1,"Sequoia",45.8111,4.7765,,1,,Europe/Paris,,DGL, +DGL:SA:S33392,1,"Les Ormeaux",45.8087,4.771,,1,,Europe/Paris,,DGL, +DGL:SA:S33393,1,"La Bruyere",45.8065,4.7711,,1,,Europe/Paris,,DGL, +DGL:SA:S33395,1,"Les Joncs",45.808851,4.764191,,1,,Europe/Paris,,DGL, +DGL:SA:S33400,1,"Paviot - Genets",45.7506,4.9021,,1,,Europe/Paris,,DGL, +DGL:SA:S33411,1,"Rossellini",45.778618,4.862439,,1,,Europe/Paris,,DGL, +DGL:SA:S33412,1,"Parc Tete d'Or - Stalingrad",45.779486,4.860534,,1,,Europe/Paris,,DGL, +DGL:SA:S33413,1,"Vaulx-en-Velin Resistance",45.7858,4.9197,,1,,Europe/Paris,,DGL, +DGL:SA:S33420,1,"Rillieux - Les Alagniers",45.814421,4.894011,,1,,Europe/Paris,,DGL, +DGL:SA:S33430,1,"99 chemin du Charbonnier",45.689246,4.909918,,1,,Europe/Paris,,DGL, +DGL:SA:S33440,1,"Vacher",45.7688,5.0027,,1,,Europe/Paris,,DGL, +DGL:SA:S33450,1,"Allee de l'eglise",45.759077,4.922363,,1,,Europe/Paris,,DGL, +DGL:SA:S33451,1,"Salengro - Genas",45.746256,4.926784,,1,,Europe/Paris,,DGL, +DGL:SA:S33453,1,"Genas Avenir Montgolfier",45.721746,4.983257,,1,,Europe/Paris,,DGL, +DGL:SA:S33461,1,"CNRS",45.780419,4.875635,,1,,Europe/Paris,,DGL, +DGL:SA:S33462,1,"Voillot",45.7509,4.9127,,1,,Europe/Paris,,DGL, +DGL:SA:S33463,1,"Genas - Lacouture",45.749794,4.911727,,1,,Europe/Paris,,DGL, +DGL:SA:S33480,1,"Arsonval",45.700928,4.92974,,1,,Europe/Paris,,DGL, +DGL:SA:S33481,1,"Jean Moulin",45.700819,4.933074,,1,,Europe/Paris,,DGL, +DGL:SA:S33501,1,"Piscine Loup Pendu",45.815505,4.887456,,1,,Europe/Paris,,DGL, +DGL:SA:S33510,1,"Chambaud de la Bruyere",45.726266,4.836772,,1,,Europe/Paris,,DGL, +DGL:SA:S33520,1,"Mediatheque",45.69435,4.936456,,1,,Europe/Paris,,DGL, +DGL:SA:S33550,1,"Mairie du 6eme",45.7683,4.8505,,1,,Europe/Paris,,DGL, +DGL:SA:S33570,1,"Mendes France - Alsace",45.718494,4.910237,,1,,Europe/Paris,,DGL, +DGL:SA:S33571,1,"3eme Millenaire",45.716634,4.928449,,1,,Europe/Paris,,DGL, +DGL:SA:S33572,1,"Jacques Monod",45.714424,4.931776,,1,,Europe/Paris,,DGL, +DGL:SA:S33573,1,"Parc Technologique",45.712102,4.935238,,1,,Europe/Paris,,DGL, +DGL:SA:S33574,1,"Campus Lyon Ouest",45.782902,4.766179,,1,,Europe/Paris,,DGL, +DGL:SA:S33575,1,"Pavillon Medical",45.7016,4.81,,1,,Europe/Paris,,DGL, +DGL:SA:S33580,1,"Chemin de Montluzin",45.869026,4.750062,,1,,Europe/Paris,,DGL, +DGL:SA:S33590,1,"Parc Tete d'Or - Verguin",45.772594,4.855793,,1,,Europe/Paris,,DGL, +DGL:SA:S33591,1,"Clinique du Parc",45.772354,4.859454,,1,,Europe/Paris,,DGL, +DGL:SA:S33592,1,"Leo Lagrange",45.764481,4.878164,,1,,Europe/Paris,,DGL, +DGL:SA:S33593,1,"Villeurbanne Centre",45.7678,4.8776,,1,,Europe/Paris,,DGL, +DGL:SA:S33620,1,"La Perraliere",45.763833,4.889363,,1,,Europe/Paris,,DGL, +DGL:SA:S33621,1,"Rue de France - 4 aout",45.764268,4.885792,,1,,Europe/Paris,,DGL, +DGL:SA:S33630,1,"Charbonnieres Les Verrieres",45.78921,4.744253,,1,,Europe/Paris,,DGL, +DGL:SA:S33631,1,"La Tour de Salvagny Chambettes",45.817075,4.705044,,1,,Europe/Paris,,DGL, +DGL:SA:S33640,1,"Parilly Universite Hippodrome",45.722362,4.914768,,1,,Europe/Paris,,DGL, +DGL:SA:S33642,1,"Vaulx-en-Velin Marcel Cachin",45.784351,4.933067,,1,,Europe/Paris,,DGL, +DGL:SA:S33643,1,"Vaulx-en-Velin Le Bourg",45.7871,4.9256,,1,,Europe/Paris,,DGL, +DGL:SA:S33644,1,"Z.I. Vaulx-en-Velin Est",45.7772,4.934,,1,,Europe/Paris,,DGL, +DGL:SA:S33660,1,"Bergeron",45.745828,4.721891,,1,,Europe/Paris,,DGL, +DGL:SA:S33662,1,"Nelli",45.760818,4.929045,,1,,Europe/Paris,,DGL, +DGL:SA:S33663,1,"Centre commercial Sept Chemins",45.746814,4.931285,,1,,Europe/Paris,,DGL, +DGL:SA:S33664,1,"Paul Eluard",45.7763,4.9224,,1,,Europe/Paris,,DGL, +DGL:SA:S33665,1,"ENTPE - Ecole d'Architecture",45.779482,4.922457,,1,,Europe/Paris,,DGL, +DGL:SA:S33666,1,"Salvador Allende",45.780858,4.920946,,1,,Europe/Paris,,DGL, +DGL:SA:S33667,1,"Verdun - Paul Cezanne",45.764714,4.967833,,1,,Europe/Paris,,DGL, +DGL:SA:S33680,1,"College Christiane Bernardin",45.741018,4.775531,,1,,Europe/Paris,,DGL, +DGL:SA:S33690,1,"Centre Commercial Genay",45.892321,4.822223,,1,,Europe/Paris,,DGL, +DGL:SA:S33703,1,"Yves Chauvin",45.648327,4.829618,,1,,Europe/Paris,,DGL, +DGL:SA:S33704,1,"Solaize CRES",45.6502,4.8311,,1,,Europe/Paris,,DGL, +DGL:SA:S33710,1,"Techlid Le Paisy",45.804563,4.76479,,1,,Europe/Paris,,DGL, +DGL:SA:S33720,1,"Ecully Le Perollier",45.790317,4.776964,,1,,Europe/Paris,,DGL, +DGL:SA:S33730,1,"Pole Logistique",45.669841,4.929547,,1,,Europe/Paris,,DGL, +DGL:SA:S33731,1,"Aristide Briand",45.69182,4.933935,,1,,Europe/Paris,,DGL, +DGL:SA:S33740,1,"Christophe Colomb",45.682092,4.944321,,1,,Europe/Paris,,DGL, +DGL:SA:S33760,1,"Bois Dieu",45.840581,4.736914,,1,,Europe/Paris,,DGL, +DGL:SA:S33770,1,"Beauregard",45.696286,4.788939,,1,,Europe/Paris,,DGL, +DGL:SA:S33771,1,"Croix Rouge",45.701632,4.786306,,1,,Europe/Paris,,DGL, +DGL:SA:S33772,1,"Meyzieu - Parc du Grand Large",45.7889,4.9929,,1,,Europe/Paris,,DGL, +DGL:SA:S33773,1,"Frederic Mistral",45.78228,4.995183,,1,,Europe/Paris,,DGL, +DGL:SA:S33774,1,"Rousseau",45.772022,4.991008,,1,,Europe/Paris,,DGL, +DGL:SA:S33780,1,"Bellecombe - Gaite",45.7675,4.8632,,1,,Europe/Paris,,DGL, +DGL:SA:S33781,1,"Ecole Nationale de Musique",45.7673,4.8741,,1,,Europe/Paris,,DGL, +DGL:SA:S33782,1,"Salle Omnisports",45.7826,4.7103,,1,,Europe/Paris,,DGL, +DGL:SA:S33790,1,"Techlid Le Tronchon",45.8054,4.7716,,1,,Europe/Paris,,DGL, +DGL:SA:S33791,1,"Parc d'Activites de la Tour",45.817701,4.722906,,1,,Europe/Paris,,DGL, +DGL:SA:S33800,1,"Albigny Centre Hospitalier",45.86361,4.833833,,1,,Europe/Paris,,DGL, +DGL:SA:S33810,1,"Parilly Jean Zay",45.71214,4.902906,,1,,Europe/Paris,,DGL, +DGL:SA:S33820,1,"Bd de Parilly",45.715259,4.906456,,1,,Europe/Paris,,DGL, +DGL:SA:S33830,1,"Parc de la Mairie",45.7567,4.8001,,1,,Europe/Paris,,DGL, +DGL:SA:S33853,1,"Lycee Agroalimentaire",45.666491,4.791701,,1,,Europe/Paris,,DGL, +DGL:SA:S33860,1,"Lycee Rosa Parks",45.8768,4.847,,1,,Europe/Paris,,DGL, +DGL:SA:S33862,1,"Champagne De Gaulle",45.802002,4.78491,,1,,Europe/Paris,,DGL, +DGL:SA:S33864,1,"Chemin de Crecy",45.801055,4.803902,,1,,Europe/Paris,,DGL, +DGL:SA:S33870,1,"Bois de l'Etoile Liberte",45.78462,4.723445,,1,,Europe/Paris,,DGL, +DGL:SA:S33871,1,"L'Etang",45.8074,4.7789,,1,,Europe/Paris,,DGL, +DGL:SA:S33880,1,"Neuville Cinema",45.874,4.842,,1,,Europe/Paris,,DGL, +DGL:SA:S33881,1,"Neuville Combattants",45.8705,4.8471,,1,,Europe/Paris,,DGL, +DGL:SA:S33882,1,"Parenty",45.8736,4.8454,,1,,Europe/Paris,,DGL, +DGL:SA:S33883,1,"Tatiere",45.8735,4.8423,,1,,Europe/Paris,,DGL, +DGL:SA:S33884,1,"Neuville Mairie",45.8771,4.8404,,1,,Europe/Paris,,DGL, +DGL:SA:S33885,1,"Torrieres",45.8805,4.8489,,1,,Europe/Paris,,DGL, +DGL:SA:S33886,1,"Le Sablon",45.8802,4.8464,,1,,Europe/Paris,,DGL, +DGL:SA:S33887,1,"Wissel",45.8769,4.8435,,1,,Europe/Paris,,DGL, +DGL:SA:S33888,1,"Neuville Ancienne Gare",45.8782,4.8414,,1,,Europe/Paris,,DGL, +DGL:SA:S33889,1,"Neuville Racine",45.8714,4.8425,,1,,Europe/Paris,,DGL, +DGL:SA:S33890,1,"Neuville Hopital",45.868,4.8472,,1,,Europe/Paris,,DGL, +DGL:SA:S33891,1,"Rue J.Moulin",45.8818,4.8402,,1,,Europe/Paris,,DGL, +DGL:SA:S33892,1,"Rue Jacques",45.8795,4.8381,,1,,Europe/Paris,,DGL, +DGL:SA:S33893,1,"Avoraux",45.868166,4.827082,,1,,Europe/Paris,,DGL, +DGL:SA:S33902,1,"Saint Denis",45.7795,4.8303,,1,,Europe/Paris,,DGL, +DGL:SA:S33910,1,"Gymnase E.Catalon",45.748,4.6977,,1,,Europe/Paris,,DGL, +DGL:SA:S33940,1,"Grand Champ",45.799651,4.819654,,1,,Europe/Paris,,DGL, +DGL:SA:S33950,1,"Meyzieu Jacques Prevert",45.760623,4.994001,,1,,Europe/Paris,,DGL, +DGL:SA:S33951,1,"Segliere - Jaures",45.746788,5.019112,,1,,Europe/Paris,,DGL, +DGL:SA:S33970,1,"Le Monteiller",45.879781,4.841161,,1,,Europe/Paris,,DGL, +DGL:SA:S33990,1,"Porcher",45.80248,4.837575,,1,,Europe/Paris,,DGL, +DGL:SA:S34000,1,"Homme de la Roche RG",45.7678,4.8206,,1,,Europe/Paris,,DGL, +DGL:SA:S34001,1,"Homme de la Roche RD",45.7666,4.8201,,1,,Europe/Paris,,DGL, +DGL:SA:S34020,1,"La Chicotiere",45.845343,4.73357,,1,,Europe/Paris,,DGL, +DGL:SA:S34030,1,"Caluire - Bords de Saone",45.7911,4.8235,,1,,Europe/Paris,,DGL, +DGL:SA:S34031,1,"Capitaine Ferber",45.7901,4.8269,,1,,Europe/Paris,,DGL, +DGL:SA:S34032,1,"Maison des Associations",45.7924,4.8285,,1,,Europe/Paris,,DGL, +DGL:SA:S34070,1,"College Balzac",45.725699,4.860888,,1,,Europe/Paris,,DGL, +DGL:SA:S34080,1,"Clos des Coquilles",45.731358,4.741372,,1,,Europe/Paris,,DGL, +DGL:SA:S34090,1,"Thurins Mairie",45.683438,4.640954,,1,,Europe/Paris,,DGL, +DGL:SA:S34100,1,"Le Grand Treyve",45.718558,4.693983,,1,,Europe/Paris,,DGL, +DGL:SA:S34101,1,"Joanna",45.716524,4.691287,,1,,Europe/Paris,,DGL, +DGL:SA:S34102,1,"Parc d'activites des Lats",45.701482,4.687324,,1,,Europe/Paris,,DGL, +DGL:SA:S34103,1,"Malataverne",45.697812,4.686139,,1,,Europe/Paris,,DGL, +DGL:SA:S34104,1,"Pre Moulin",45.696807,4.681286,,1,,Europe/Paris,,DGL, +DGL:SA:S34105,1,"Messimy Mairie",45.697719,4.676019,,1,,Europe/Paris,,DGL, +DGL:SA:S34106,1,"Quinsonnat",45.686083,4.670935,,1,,Europe/Paris,,DGL, +DGL:SA:S34107,1,"La Valotte",45.67916,4.658399,,1,,Europe/Paris,,DGL, +DGL:SA:S34108,1,"Le Pont",45.679452,4.649494,,1,,Europe/Paris,,DGL, +DGL:SA:S34109,1,"Thurins Les Vergers",45.681177,4.644139,,1,,Europe/Paris,,DGL, +DGL:SA:S34120,1,"Chapelle de Beaunant",45.716951,4.777254,,1,,Europe/Paris,,DGL, +DGL:SA:S34121,1,"Le Caillou",45.701969,4.767508,,1,,Europe/Paris,,DGL, +DGL:SA:S34122,1,"Chaponost Gare",45.698809,4.763605,,1,,Europe/Paris,,DGL, +DGL:SA:S34123,1,"Le Gilbertin",45.700616,4.752213,,1,,Europe/Paris,,DGL, +DGL:SA:S34124,1,"La Chaize",45.701673,4.748933,,1,,Europe/Paris,,DGL, +DGL:SA:S34125,1,"Maison des Jeunes",45.70396,4.747844,,1,,Europe/Paris,,DGL, +DGL:SA:S34126,1,"La Bonnette",45.704058,4.742852,,1,,Europe/Paris,,DGL, +DGL:SA:S34127,1,"Misery",45.706389,4.741174,,1,,Europe/Paris,,DGL, +DGL:SA:S34128,1,"Chaponost Mairie",45.709877,4.742656,,1,,Europe/Paris,,DGL, +DGL:SA:S34129,1,"Chaponost La Madone",45.710865,4.738312,,1,,Europe/Paris,,DGL, +DGL:SA:S34130,1,"Le Bouleau",45.713756,4.713875,,1,,Europe/Paris,,DGL, +DGL:SA:S34131,1,"Chemin des Vieures",45.719812,4.723115,,1,,Europe/Paris,,DGL, +DGL:SA:S34132,1,"Le Gourd",45.721151,4.715212,,1,,Europe/Paris,,DGL, +DGL:SA:S34133,1,"Le Devay",45.721119,4.704141,,1,,Europe/Paris,,DGL, +DGL:SA:S34134,1,"Les Andres",45.722089,4.699325,,1,,Europe/Paris,,DGL, +DGL:SA:S34135,1,"Ferroussat",45.721702,4.767788,,1,,Europe/Paris,,DGL, +DGL:SA:S34136,1,"Anatoile Celle",45.716771,4.763979,,1,,Europe/Paris,,DGL, +DGL:SA:S34137,1,"Chaponost les Vergers",45.717042,4.758742,,1,,Europe/Paris,,DGL, +DGL:SA:S34138,1,"Centre Social",45.714723,4.750205,,1,,Europe/Paris,,DGL, +DGL:SA:S34139,1,"Chaponost Bellevue",45.71213,4.747753,,1,,Europe/Paris,,DGL, +DGL:SA:S34140,1,"La Source",45.712255,4.743827,,1,,Europe/Paris,,DGL, +DGL:SA:S34141,1,"Paul Doumer",45.71168,4.739992,,1,,Europe/Paris,,DGL, +DGL:SA:S34142,1,"Bernicot",45.69258,4.766516,,1,,Europe/Paris,,DGL, +DGL:SA:S34150,1,"PERICA - Mercieres",45.81382,4.882312,,1,,Europe/Paris,,DGL, +DGL:SA:S34165,1,"Dassault",45.7779,5.0346,,1,,Europe/Paris,,DGL, +DGL:SA:S34166,1,"Louis Renault",45.777,5.0311,,1,,Europe/Paris,,DGL, +DGL:SA:S34167,1,"Duchere Tunnel",45.782908,4.7976,,1,,Europe/Paris,,DGL, +DGL:SA:S34169,1,"Temps modernes",45.7083,4.917703,,1,,Europe/Paris,,DGL, +DGL:SA:S34170,1,"Charlie Chaplin",45.711087,4.912574,,1,,Europe/Paris,,DGL, +DGL:SA:S34186,1,"Noisetiers",45.8135,4.775,,1,,Europe/Paris,,DGL, +DGL:SA:S34187,1,"Frenes",45.8152,4.7716,,1,,Europe/Paris,,DGL, +DGL:SA:S34212,1,"Voyageurs",45.744303,4.699795,,1,,Europe/Paris,,DGL, +DGL:SA:S34213,1,"Martoret",45.742299,4.69552,,1,,Europe/Paris,,DGL, +DGL:SA:S34225,1,"Rillieux Victor Hugo",45.819293,4.89229,,1,,Europe/Paris,,DGL, +DGL:SA:S34226,1,"Technoparc",45.799793,4.769125,,1,,Europe/Paris,,DGL, +DGL:SA:S34260,1,"Orsel",45.716496,4.809658,,1,,Europe/Paris,,DGL, +DGL:SA:S34263,1,"Lucien Maitre",45.7897,4.826,,1,,Europe/Paris,,DGL, +DGL:SA:S34265,1,"Petetin",45.594307,4.774337,,1,,Europe/Paris,,DGL, +DGL:SA:S34270,1,"Parc Bourrat",45.741121,4.803352,,1,,Europe/Paris,,DGL, +DGL:SA:S34271,1,"Ste Foy Place Saint Luc",45.7486,4.8006,,1,,Europe/Paris,,DGL, +DGL:SA:S34273,1,"Roux Rivoire",45.610932,4.797202,,1,,Europe/Paris,,DGL, +DGL:SA:S34274,1,"Grigny Jean Moulin",45.606619,4.790803,,1,,Europe/Paris,,DGL, +DGL:SA:S34276,1,"Andre Sabatier",45.609654,4.773283,,1,,Europe/Paris,,DGL, +DGL:SA:S34277,1,"Peroniere",45.8603,4.8003,,1,,Europe/Paris,,DGL, +DGL:SA:S34282,1,"Garibaldi Paul Bert",45.75716,4.852694,,1,,Europe/Paris,,DGL, +DGL:SA:S34283,1,"Descartes - Foch",45.688369,4.787333,,1,,Europe/Paris,,DGL, +DGL:SA:S34284,1,"Confluence Rambaud",45.7333,4.8161,,1,,Europe/Paris,,DGL, +DGL:SA:S34285,1,"St Fons Bourrelier",45.71078,4.855123,,1,,Europe/Paris,,DGL, +DGL:SA:S34286,1,"St Fons Dussurgey",45.713947,4.854944,,1,,Europe/Paris,,DGL, +DGL:SA:S34287,1,"Sacuny SPA",45.677877,4.770872,,1,,Europe/Paris,,DGL, +DGL:SA:S34288,1,"Poumeyrol",45.791456,4.863175,,1,,Europe/Paris,,DGL, +DGL:SA:S34291,1,"La Halte",45.909845,4.77784,,1,,Europe/Paris,,DGL, +DGL:SA:S34292,1,"Quincieux Boulodrome",45.916641,4.774938,,1,,Europe/Paris,,DGL, +DGL:SA:S34293,1,"Quincieux Mairie",45.914594,4.779251,,1,,Europe/Paris,,DGL, +DGL:SA:S34294,1,"Jerusalem",45.911348,4.787398,,1,,Europe/Paris,,DGL, +DGL:SA:S34295,1,"Port Macon",45.898203,4.800953,,1,,Europe/Paris,,DGL, +DGL:SA:S34296,1,"Route de Chasselay",45.913041,4.777022,,1,,Europe/Paris,,DGL, +DGL:SA:S34297,1,"Parc des Tuileries",45.8223,4.7662,,1,,Europe/Paris,,DGL, +DGL:SA:S34306,1,"Terreaux La Feuillee",45.767112,4.831363,,1,,Europe/Paris,,DGL, +DGL:SA:S34308,1,"La Buire",45.751705,4.85974,,1,,Europe/Paris,,DGL, +DGL:SA:S34309,1,"Gare d'Ecully",45.7649,4.779,,1,,Europe/Paris,,DGL, +DGL:SA:S34311,1,"Hotel de Ville L.Pradel",45.7665,4.8353,,1,,Europe/Paris,,DGL, +DGL:SA:S34313,1,"Carteret",45.726412,4.845352,,1,,Europe/Paris,,DGL, +DGL:SA:S34314,1,"Lamartine",45.740259,5.019508,,1,,Europe/Paris,,DGL, +DGL:SA:S34315,1,"Genas Rond Point de l'Epine(D)",45.734727,4.983092,,1,,Europe/Paris,,DGL, +DGL:SA:S34318,1,"Avenir - Montgolfier",45.722,4.9829,,1,,Europe/Paris,,DGL, +DGL:SA:S34319,1,"Calmette - Muriers",45.717044,4.986669,,1,,Europe/Paris,,DGL, +DGL:SA:S34320,1,"Rond-Point d'Italie",45.71335,4.992801,,1,,Europe/Paris,,DGL, +DGL:SA:S34321,1,"Bornicat",45.722256,4.999999,,1,,Europe/Paris,,DGL, +DGL:SA:S34322,1,"Carnot",45.723637,5.003979,,1,,Europe/Paris,,DGL, +DGL:SA:S34324,1,"Olivier de Serres",45.7223,5.0093,,1,,Europe/Paris,,DGL, +DGL:SA:S34325,1,"ZI du Mariage",45.766044,5.075049,,1,,Europe/Paris,,DGL, +DGL:SA:S34326,1,"L'Odyssee",45.764029,5.063122,,1,,Europe/Paris,,DGL, +DGL:SA:S34327,1,"Vallon",45.759637,5.06213,,1,,Europe/Paris,,DGL, +DGL:SA:S34328,1,"Place la Valla",45.758001,5.067473,,1,,Europe/Paris,,DGL, +DGL:SA:S34329,1,"Pusignan Mairie",45.755458,5.06736,,1,,Europe/Paris,,DGL, +DGL:SA:S34330,1,"Moifond",45.749191,5.070818,,1,,Europe/Paris,,DGL, +DGL:SA:S34331,1,"ZI Satolas Green",45.745074,5.064277,,1,,Europe/Paris,,DGL, +DGL:SA:S34332,1,"Gutenberg",45.743908,5.067542,,1,,Europe/Paris,,DGL, +DGL:SA:S34333,1,"Les Marches du Rhone",45.688231,5.066722,,1,,Europe/Paris,,DGL, +DGL:SA:S34334,1,"La Gaiete",45.760713,5.057608,,1,,Europe/Paris,,DGL, +DGL:SA:S34335,1,"Hameau de Bianne",45.808,5.0884,,1,,Europe/Paris,,DGL, +DGL:SA:S34336,1,"La Petite Gare",45.80088,5.084559,,1,,Europe/Paris,,DGL, +DGL:SA:S34337,1,"Pommier",45.795313,5.084383,,1,,Europe/Paris,,DGL, +DGL:SA:S34338,1,"Ligonnet",45.595362,4.769748,,1,,Europe/Paris,,DGL, +DGL:SA:S34339,1,"St-Pierre-de-Chandieu - Rajat",45.641251,5.034388,,1,,Europe/Paris,,DGL, +DGL:SA:S34340,1,"Compagnon",45.643862,5.030401,,1,,Europe/Paris,,DGL, +DGL:SA:S34341,1,"Frindeau",45.64585,5.023628,,1,,Europe/Paris,,DGL, +DGL:SA:S34342,1,"Amedee Ronin",45.647633,5.011666,,1,,Europe/Paris,,DGL, +DGL:SA:S34343,1,"St-Pierre-de-Chandieu College",45.64813,5.004227,,1,,Europe/Paris,,DGL, +DGL:SA:S34344,1,"Jacquette",45.644604,5.004862,,1,,Europe/Paris,,DGL, +DGL:SA:S34345,1,"Cros Cassier",45.644334,5.001675,,1,,Europe/Paris,,DGL, +DGL:SA:S34346,1,"Toussieu Eglise",45.654909,4.989645,,1,,Europe/Paris,,DGL, +DGL:SA:S34347,1,"Toussieu Mairie",45.654611,4.984994,,1,,Europe/Paris,,DGL, +DGL:SA:S34348,1,"La Cote",45.658273,4.983616,,1,,Europe/Paris,,DGL, +DGL:SA:S34349,1,"12 juillet 1944",45.660833,4.98348,,1,,Europe/Paris,,DGL, +DGL:SA:S34350,1,"Toussieu Les Tilleuls",45.651886,4.991046,,1,,Europe/Paris,,DGL, +DGL:SA:S34351,1,"Colombier-Saugnieu Les Salines",45.7152,5.1275,,1,,Europe/Paris,,DGL, +DGL:SA:S34352,1,"Place de Cholet",45.7251,5.1069,,1,,Europe/Paris,,DGL, +DGL:SA:S34353,1,"Colombier-Saugnieu Mairie",45.714863,5.110382,,1,,Europe/Paris,,DGL, +DGL:SA:S34354,1,"Grandalisse",45.710806,5.104461,,1,,Europe/Paris,,DGL, +DGL:SA:S34355,1,"Marechal Juin",45.686198,5.064158,,1,,Europe/Paris,,DGL, +DGL:SA:S34356,1,"St-Laurent Zone Industrielle",45.684189,5.060099,,1,,Europe/Paris,,DGL, +DGL:SA:S34357,1,"St-Laurent Centre",45.687746,5.046901,,1,,Europe/Paris,,DGL, +DGL:SA:S34358,1,"St-Laurent",45.689333,5.041719,,1,,Europe/Paris,,DGL, +DGL:SA:S34359,1,"Engrives",45.691575,5.034305,,1,,Europe/Paris,,DGL, +DGL:SA:S34360,1,"St-Bonnet Centre",45.692482,5.031314,,1,,Europe/Paris,,DGL, +DGL:SA:S34361,1,"Rue Neuve",45.694709,5.023988,,1,,Europe/Paris,,DGL, +DGL:SA:S34362,1,"Parc du Chanay",45.697005,5.016988,,1,,Europe/Paris,,DGL, +DGL:SA:S34363,1,"Route de Givors",45.64963,4.985037,,1,,Europe/Paris,,DGL, +DGL:SA:S34364,1,"Idoux",45.591891,4.763006,,1,,Europe/Paris,,DGL, +DGL:SA:S34365,1,"Robespierre-Carnot",45.586301,4.771082,,1,,Europe/Paris,,DGL, +DGL:SA:S34366,1,"Boutras-Sabatier",45.609468,4.771843,,1,,Europe/Paris,,DGL, +DGL:SA:S34368,1,"Ecole Jules Ferry",45.716,5.1272,,1,,Europe/Paris,,DGL, +DGL:SA:S34369,1,"Place Joanny Favre",45.7118,5.1116,,1,,Europe/Paris,,DGL, +DGL:SA:S34377,1,"Ratabizet",45.7167,4.9773,,1,,Europe/Paris,,DGL, +DGL:SA:S34400,1,"Centre Village",45.83371,4.877407,,1,,Europe/Paris,,DGL, +DGL:SA:S34402,1,"La Rama",45.5782,4.7493,,1,,Europe/Paris,,DGL, +DGL:SA:S34412,1,"Chemin de Crepieux",45.801885,4.87913,,1,,Europe/Paris,,DGL, +DGL:SA:S34429,1,"Champivost",45.8116,4.7729,,1,,Europe/Paris,,DGL, +DGL:SA:S34431,1,"Eurexpo",45.733363,4.948163,,1,,Europe/Paris,,DGL, +DGL:SA:S34433,1,"Meyzieu les Panettes",45.761585,5.029155,,1,,Europe/Paris,,DGL, +DGL:SA:S34434,1,"Manissieux A. Pare",45.7098,4.9777,,1,,Europe/Paris,,DGL, +DGL:SA:S34435,1,"Giboulet Wassman",45.738248,5.016021,,1,,Europe/Paris,,DGL, +DGL:SA:S34436,1,"Antoine Roybet",45.735983,5.011968,,1,,Europe/Paris,,DGL, +DGL:SA:S34437,1,"Reaux Roybet",45.730508,5.008238,,1,,Europe/Paris,,DGL, +DGL:SA:S34440,1,"Andre Philip",45.7724,4.8652,,1,,Europe/Paris,,DGL, +DGL:SA:S34443,1,"Balzac",45.770447,4.982491,,1,,Europe/Paris,,DGL, +DGL:SA:S34444,1,"Parc des Lumieres",45.6823,4.9655,,1,,Europe/Paris,,DGL, +DGL:SA:S34446,1,"Domer - Trois Pierres",45.7472,4.8478,,1,,Europe/Paris,,DGL, +DGL:SA:S34447,1,"Tchecoslovaques Blandan",45.746606,4.858724,,1,,Europe/Paris,,DGL, +DGL:SA:S34448,1,"Begonniere",45.7139,4.784,,1,,Europe/Paris,,DGL, +DGL:SA:S34449,1,"Fontaines Jules Ferry",45.833134,4.846072,,1,,Europe/Paris,,DGL, +DGL:SA:S34450,1,"ZA Everest Parc",45.7247,4.9851,,1,,Europe/Paris,,DGL, +DGL:SA:S34451,1,"Valmy - Place Ferber",45.7736,4.8053,,1,,Europe/Paris,,DGL, +DGL:SA:S34452,1,"Rillieux Nations",45.820622,4.907032,,1,,Europe/Paris,,DGL, +DGL:SA:S34453,1,"Les Amandiers",45.717084,4.753804,,1,,Europe/Paris,,DGL, +DGL:SA:S34454,1,"Solaize Campus",45.64464,4.826613,,1,,Europe/Paris,,DGL, +DGL:SA:S34463,1,"Sathonay Castellane",45.8245,4.8683,,1,,Europe/Paris,,DGL, +DGL:SA:S34468,1,"Manillon",45.821606,4.84522,,1,,Europe/Paris,,DGL, +DGL:SA:S34469,1,"St Didier Tennis",45.803849,4.790049,,1,,Europe/Paris,,DGL, +DGL:SA:S34470,1,"Chaponost - Eglise",45.710182,4.743325,,1,,Europe/Paris,,DGL, +DGL:SA:S34471,1,"Reydellet - Les Arcs",45.704853,4.752266,,1,,Europe/Paris,,DGL, +DGL:SA:S34472,1,"Espace Francois Perraud",45.707721,4.74835,,1,,Europe/Paris,,DGL, +DGL:SA:S34473,1,"Diderot - Rolland",45.697461,4.927693,,1,,Europe/Paris,,DGL, +DGL:SA:S34474,1,"St Priest Pompidou",45.695175,4.930962,,1,,Europe/Paris,,DGL, +DGL:SA:S34475,1,"Carreau Brossolette",45.769496,4.993922,,1,,Europe/Paris,,DGL, +DGL:SA:S34477,1,"Jaures Barrault",45.768217,5.009093,,1,,Europe/Paris,,DGL, +DGL:SA:S34478,1,"Meyzieu Centre Aquatique",45.769669,5.012089,,1,,Europe/Paris,,DGL, +DGL:SA:S34491,1,"Les 4 Vents",45.705938,5.107085,,1,,Europe/Paris,,DGL, +DGL:SA:S5000,1,"Ampere Victor Hugo",45.7529,4.829151,,1,,Europe/Paris,,DGL, +DGL:SA:S5001,1,"Espace Baudelaire",45.818675,4.905184,,1,,Europe/Paris,,DGL, +DGL:SA:S5002,1,"Bellecour",45.757118,4.833467,,1,,Europe/Paris,,DGL, +DGL:SA:S5003,1,"Berthier",45.745683,4.798991,,1,,Europe/Paris,,DGL, +DGL:SA:S5004,1,"Brotteaux",45.766828,4.8593,,1,,Europe/Paris,,DGL, +DGL:SA:S5005,1,"Castellane",45.808068,4.898804,,1,,Europe/Paris,,DGL, +DGL:SA:S5020,1,"Chassieu Place",45.738284,4.969208,,1,,Europe/Paris,,DGL, +DGL:SA:S5021,1,"Cordeliers",45.763486,4.836806,,1,,Europe/Paris,,DGL, +DGL:SA:S5022,1,"Cuire",45.785799,4.833254,,1,,Europe/Paris,,DGL, +DGL:SA:S5023,1,"Cusset",45.76611,4.900907,,1,,Europe/Paris,,DGL, +DGL:SA:S5024,1,"Flachet",45.768211,4.889582,,1,,Europe/Paris,,DGL, +DGL:SA:S5041,1,"Grange Blanche",45.742822,4.878884,,1,,Europe/Paris,,DGL, +DGL:SA:S5042,1,"Gratte Ciel",45.769074,4.881731,,1,,Europe/Paris,,DGL, +DGL:SA:S5043,1,"Place Guichard",45.759401,4.847608,,1,,Europe/Paris,,DGL, +DGL:SA:S5044,1,"Guillotiere - Gabriel Peri",45.755344,4.842659,,1,,Europe/Paris,,DGL, +DGL:SA:S5045,1,"Henon",45.779077,4.827569,,1,,Europe/Paris,,DGL, +DGL:SA:S5046,1,"Hotel de Ville - Louis Pradel",45.767458,4.836297,,1,,Europe/Paris,,DGL, +DGL:SA:S5062,1,"Laennec",45.738394,4.886573,,1,,Europe/Paris,,DGL, +DGL:SA:S5080,1,"Les Minimes - Theatres Romains",45.758589,4.82145,,1,,Europe/Paris,,DGL, +DGL:SA:S5081,1,"Massena",45.769411,4.853138,,1,,Europe/Paris,,DGL, +DGL:SA:S5082,1,"Mermoz - Pinel",45.730629,4.887302,,1,,Europe/Paris,,DGL, +DGL:SA:S5083,1,"Monplaisir Lumiere",45.745348,4.871796,,1,,Europe/Paris,,DGL, +DGL:SA:S5084,1,"Parilly",45.719723,4.887477,,1,,Europe/Paris,,DGL, +DGL:SA:S5085,1,"Perrache",45.749656,4.826825,,1,,Europe/Paris,,DGL, +DGL:SA:S5086,1,"Pont des Razes",45.6676,4.850614,,1,,Europe/Paris,,DGL, +DGL:SA:S5088,1,"Pont Kitchener",45.751413,4.82367,,1,,Europe/Paris,,DGL, +DGL:SA:S5089,1,"Pont Koenig",45.769933,4.81292,,1,,Europe/Paris,,DGL, +DGL:SA:S5090,1,"Pont Wilson",45.760651,4.837718,,1,,Europe/Paris,,DGL, +DGL:SA:S5091,1,"Sans Souci",45.747975,4.864384,,1,,Europe/Paris,,DGL, +DGL:SA:S5092,1,"Saxe - Gambetta",45.753811,4.847022,,1,,Europe/Paris,,DGL, +DGL:SA:S5093,1,"St Just",45.757397,4.815686,,1,,Europe/Paris,,DGL, +DGL:SA:S5094,1,"Valmy",45.775048,4.805611,,1,,Europe/Paris,,DGL, +DGL:SA:S5095,1,"Vieux Lyon",45.759931,4.826816,,1,,Europe/Paris,,DGL, +DGL:SA:S5101,1,"Laurent Bonnevay",45.764812,4.908949,,1,,Europe/Paris,,DGL, +DGL:SA:S5102,1,"Charpennes",45.770658,4.863146,,1,,Europe/Paris,,DGL, +DGL:SA:S5103,1,"Gare de Vaise",45.780721,4.804665,,1,,Europe/Paris,,DGL, +DGL:SA:S5160,1,"Jean Mace",45.745985,4.842337,,1,,Europe/Paris,,DGL, +DGL:SA:S5181,1,"Garibaldi",45.751426,4.854207,,1,,Europe/Paris,,DGL, +DGL:SA:S5182,1,"Foch",45.768732,4.844047,,1,,Europe/Paris,,DGL, +DGL:SA:S5183,1,"Republique Villeurbanne",45.770609,4.873671,,1,,Europe/Paris,,DGL, +DGL:SA:S5200,1,"Stade de Gerland",45.727072,4.831084,,1,,Europe/Paris,,DGL, +DGL:SA:S5220,1,"Debourg",45.731516,4.834436,,1,,Europe/Paris,,DGL, +DGL:SA:S5221,1,"Place Jean Jaures",45.738529,4.838343,,1,,Europe/Paris,,DGL, +DGL:SA:S5222,1,"Croix Paquet",45.770943,4.836238,,1,,Europe/Paris,,DGL, +DGL:SA:S5223,1,"Croix-Rousse",45.774547,4.83229,,1,,Europe/Paris,,DGL, +DGL:SA:S5224,1,"Fourviere",45.7621,4.8213,,1,,Europe/Paris,,DGL, +DGL:SA:S5240,1,"IUT Feyssine",45.78688,4.881932,,1,,Europe/Paris,,DGL, +DGL:SA:S5260,1,"Porte des Alpes",45.719322,4.924752,,1,,Europe/Paris,,DGL, +DGL:SA:S5280,1,"La Doua - Gaston Berger",45.781527,4.872084,,1,,Europe/Paris,,DGL, +DGL:SA:S5300,1,"Condorcet",45.778331,4.866831,,1,,Europe/Paris,,DGL, +DGL:SA:S5301,1,"College Bellecombe",45.766065,4.862491,,1,,Europe/Paris,,DGL, +DGL:SA:S5302,1,"Thiers - Lafayette",45.763952,4.862475,,1,,Europe/Paris,,DGL, +DGL:SA:S5303,1,"Palais Justice - Mairie 3e",45.76038,4.848466,,1,,Europe/Paris,,DGL, +DGL:SA:S5304,1,"Liberte",45.758833,4.842493,,1,,Europe/Paris,,DGL, +DGL:SA:S5306,1,"Rue de l'Universite",45.751196,4.838393,,1,,Europe/Paris,,DGL, +DGL:SA:S5307,1,"Garibaldi - Berthelot",45.743586,4.84712,,1,,Europe/Paris,,DGL, +DGL:SA:S5308,1,"Route de Vienne",45.742462,4.851268,,1,,Europe/Paris,,DGL, +DGL:SA:S5309,1,"Jet d'Eau - Mendes France",45.739985,4.858948,,1,,Europe/Paris,,DGL, +DGL:SA:S5310,1,"Bachut - Mairie du 8eme",45.736541,4.869097,,1,,Europe/Paris,,DGL, +DGL:SA:S5311,1,"Ambroise Pare",45.741638,4.884284,,1,,Europe/Paris,,DGL, +DGL:SA:S5312,1,"Vinatier",45.738761,4.893273,,1,,Europe/Paris,,DGL, +DGL:SA:S5313,1,"Boutasse - Camille Rousset",45.734737,4.904314,,1,,Europe/Paris,,DGL, +DGL:SA:S5314,1,"Rebufer",45.72751,4.915665,,1,,Europe/Paris,,DGL, +DGL:SA:S5321,1,"Les Vercheres",45.817541,4.901623,,1,,Europe/Paris,,DGL, +DGL:SA:S5322,1,"La Sabliere",45.808343,4.907007,,1,,Europe/Paris,,DGL, +DGL:SA:S5400,1,"Saxe - Prefecture",45.759877,4.845446,,1,,Europe/Paris,,DGL, +DGL:SA:S5420,1,"Part-Dieu - Servient",45.760557,4.852385,,1,,Europe/Paris,,DGL, +DGL:SA:S5440,1,"Esplanade des Arts",45.69435,4.940779,,1,,Europe/Paris,,DGL, +DGL:SA:S5480,1,"St Priest Hotel de Ville",45.695059,4.935703,,1,,Europe/Paris,,DGL, +DGL:SA:S5481,1,"Alfred de Vigny",45.699506,4.936437,,1,,Europe/Paris,,DGL, +DGL:SA:S5482,1,"St Priest Jules Ferry",45.694653,4.946729,,1,,Europe/Paris,,DGL, +DGL:SA:S5483,1,"St Priest Bel Air",45.692875,4.956654,,1,,Europe/Paris,,DGL, +DGL:SA:S5484,1,"Bron Hotel de Ville",45.73351,4.908854,,1,,Europe/Paris,,DGL, +DGL:SA:S5500,1,"Ste Foy Chatelain",45.736112,4.795574,,1,,Europe/Paris,,DGL, +DGL:SA:S5501,1,"Quai Claude Bernard",45.749635,4.835257,,1,,Europe/Paris,,DGL, +DGL:SA:S5502,1,"Saint-Andre",45.7529,4.841042,,1,,Europe/Paris,,DGL, +DGL:SA:S5503,1,"Le Tonkin",45.77409,4.864055,,1,,Europe/Paris,,DGL, +DGL:SA:S5504,1,"Universite Lyon 1",45.780874,4.866294,,1,,Europe/Paris,,DGL, +DGL:SA:S5505,1,"INSA - Einstein",45.782452,4.877632,,1,,Europe/Paris,,DGL, +DGL:SA:S5506,1,"Croix-Luizet",45.783675,4.883128,,1,,Europe/Paris,,DGL, +DGL:SA:S5507,1,"Centre Berthelot",45.747049,4.836335,,1,,Europe/Paris,,DGL, +DGL:SA:S5508,1,"Villon",45.738419,4.863324,,1,,Europe/Paris,,DGL, +DGL:SA:S5509,1,"Jean XXIII - Maryse Bastie",45.740219,4.874515,,1,,Europe/Paris,,DGL, +DGL:SA:S5510,1,"Essarts - Iris",45.737235,4.898138,,1,,Europe/Paris,,DGL, +DGL:SA:S5511,1,"Les Alizes",45.731539,4.914739,,1,,Europe/Paris,,DGL, +DGL:SA:S5512,1,"Europe - Universite",45.719628,4.918159,,1,,Europe/Paris,,DGL, +DGL:SA:S5513,1,"Parc Technologique",45.714392,4.931227,,1,,Europe/Paris,,DGL, +DGL:SA:S5514,1,"Hauts de Feuilly",45.708114,4.937585,,1,,Europe/Paris,,DGL, +DGL:SA:S5515,1,"Salvador Allende",45.703441,4.934899,,1,,Europe/Paris,,DGL, +DGL:SA:S5516,1,"Cordiere",45.693655,4.949741,,1,,Europe/Paris,,DGL, +DGL:SA:S5517,1,"Suchet",45.746895,4.824348,,1,,Europe/Paris,,DGL, +DGL:SA:S5518,1,"Sainte-Blandine",45.744203,4.822111,,1,,Europe/Paris,,DGL, +DGL:SA:S5519,1,"Hotel de Region Montrochet",45.740049,4.820068,,1,,Europe/Paris,,DGL, +DGL:SA:S5520,1,"Gare Part-Dieu Vivier Merle",45.761506,4.857815,,1,,Europe/Paris,,DGL, +DGL:SA:S5540,1,"Gare Part-Dieu Villette",45.760669,4.862257,,1,,Europe/Paris,,DGL, +DGL:SA:S5560,1,"Reconnaissance - Balzac",45.754405,4.884871,,1,,Europe/Paris,,DGL, +DGL:SA:S5561,1,"Dauphine -Lacassagne",45.752928,4.868909,,1,,Europe/Paris,,DGL, +DGL:SA:S5562,1,"Gare de Villeurbanne",45.755838,4.891646,,1,,Europe/Paris,,DGL, +DGL:SA:S5563,1,"Bel Air - Les Brosses",45.758317,4.910075,,1,,Europe/Paris,,DGL, +DGL:SA:S5565,1,"Decines Centre",45.771179,4.956285,,1,,Europe/Paris,,DGL, +DGL:SA:S5566,1,"Decines Grand Large",45.774745,4.975766,,1,,Europe/Paris,,DGL, +DGL:SA:S5567,1,"Meyzieu Gare",45.771729,4.999784,,1,,Europe/Paris,,DGL, +DGL:SA:S5568,1,"Meyzieu Z.i.",45.767936,5.031193,,1,,Europe/Paris,,DGL, +DGL:SA:S5580,1,"Gare de Givors Ville",45.58474,4.766446,,1,,Europe/Paris,,DGL, +DGL:SA:S5620,1,"Eurexpo Espace Confluence",45.7343,4.9529,,1,,Europe/Paris,,DGL, +DGL:SA:S5621,1,"Eurexpo Entree Principale",45.731199,4.950107,,1,,Europe/Paris,,DGL, +DGL:SA:S5640,1,"Neuville",45.875903,4.838525,,1,,Europe/Paris,,DGL, +DGL:SA:S5660,1,"Cite Internationale - Transbordeur",45.78441,4.860117,,1,,Europe/Paris,,DGL, +DGL:SA:S5661,1,"Cite Internationale",45.784872,4.855352,,1,,Europe/Paris,,DGL, +DGL:SA:S5700,1,"Lycee Lumiere",45.735241,4.862965,,1,,Europe/Paris,,DGL, +DGL:SA:S5701,1,"Etats-Unis Tony Garnier",45.733226,4.864607,,1,,Europe/Paris,,DGL, +DGL:SA:S5702,1,"Professeur Beauvisage - C.I.S.L.",45.729922,4.86746,,1,,Europe/Paris,,DGL, +DGL:SA:S5703,1,"Etats-Unis Viviani",45.724907,4.871067,,1,,Europe/Paris,,DGL, +DGL:SA:S5704,1,"Joliot-Curie - Marcel Sembat",45.714743,4.87899,,1,,Europe/Paris,,DGL, +DGL:SA:S5705,1,"La Borelle",45.711322,4.881813,,1,,Europe/Paris,,DGL, +DGL:SA:S5706,1,"Croizat - Paul Bert",45.700195,4.887825,,1,,Europe/Paris,,DGL, +DGL:SA:S5707,1,"Marcel Houel - Hotel de Ville",45.696394,4.883731,,1,,Europe/Paris,,DGL, +DGL:SA:S5708,1,"Lycee Jacques Brel",45.694964,4.879934,,1,,Europe/Paris,,DGL, +DGL:SA:S5709,1,"Herriot - Cagne",45.693765,4.875495,,1,,Europe/Paris,,DGL, +DGL:SA:S5710,1,"Venissy",45.695982,4.872024,,1,,Europe/Paris,,DGL, +DGL:SA:S5711,1,"Division Leclerc",45.698416,4.868225,,1,,Europe/Paris,,DGL, +DGL:SA:S5712,1,"Maurice Thorez",45.699858,4.863256,,1,,Europe/Paris,,DGL, +DGL:SA:S5713,1,"Lenine - Corsiere",45.696837,4.86174,,1,,Europe/Paris,,DGL, +DGL:SA:S5714,1,"Darnaise",45.692649,4.864317,,1,,Europe/Paris,,DGL, +DGL:SA:S5715,1,"Hopital Feyzin Venissieux",45.688632,4.864111,,1,,Europe/Paris,,DGL, +DGL:SA:S5740,1,"Chantegrillet",45.738584,4.773316,,1,,Europe/Paris,,DGL, +DGL:SA:S5760,1,"Montchat Place Ronde",45.753458,4.891312,,1,,Europe/Paris,,DGL, +DGL:SA:S5761,1,"Menival Sainte Anne",45.756845,4.782348,,1,,Europe/Paris,,DGL, +DGL:SA:S5762,1,"Piscine d'Alai",45.751759,4.771418,,1,,Europe/Paris,,DGL, +DGL:SA:S5763,1,"Rond Point d'Alai",45.750458,4.765195,,1,,Europe/Paris,,DGL, +DGL:SA:S5764,1,"Francheville Bel Air",45.746777,4.756561,,1,,Europe/Paris,,DGL, +DGL:SA:S5765,1,"Hopital Antoine Charial",45.747378,4.752452,,1,,Europe/Paris,,DGL, +DGL:SA:S5766,1,"La Tourette",45.747348,4.736112,,1,,Europe/Paris,,DGL, +DGL:SA:S5767,1,"Craponne Val d'Yzeron",45.737901,4.716097,,1,,Europe/Paris,,DGL, +DGL:SA:S5768,1,"Les Places",45.722897,4.694303,,1,,Europe/Paris,,DGL, +DGL:SA:S5861,1,"Parilly - Universite",45.722109,4.915237,,1,,Europe/Paris,,DGL, +DGL:SA:S5881,1,"College Plan du Loup",45.73516,4.788901,,1,,Europe/Paris,,DGL, +DGL:SA:S5882,1,"Eglise Demi-Lune",45.76441,4.786045,,1,,Europe/Paris,,DGL, +DGL:SA:S5901,1,"De Tassigny - Curial",45.736446,4.916844,,1,,Europe/Paris,,DGL, +DGL:SA:S5902,1,"Lycee J.P. Sartre",45.738017,4.922168,,1,,Europe/Paris,,DGL, +DGL:SA:S5903,1,"Parc du Chene",45.739019,4.926628,,1,,Europe/Paris,,DGL, +DGL:SA:S5904,1,"Gare d'Oullins",45.716406,4.814858,,1,,Europe/Paris,,DGL, +DGL:SA:S5905,1,"Lycee Colbert",45.745738,4.85909,,1,,Europe/Paris,,DGL, +DGL:SA:S5906,1,"Manufacture Montluc",45.749721,4.859913,,1,,Europe/Paris,,DGL, +DGL:SA:S5907,1,"Archives Departementales",45.754206,4.862187,,1,,Europe/Paris,,DGL, +DGL:SA:S5908,1,"Musee des Confluences",45.73417,4.818271,,1,,Europe/Paris,,DGL, +DGL:SA:S5909,1,"Halle Tony Garnier",45.731567,4.824414,,1,,Europe/Paris,,DGL, +DGL:SA:S5910,1,"ENS Lyon",45.731455,4.829441,,1,,Europe/Paris,,DGL, +DGL:SA:S5911,1,"Meyzieu les Panettes",45.7661,5.0349,,1,,Europe/Paris,,DGL, +DGL:SA:S5912,1,"Parc Olympique Lyonnais",45.764536,4.98187,,1,,Europe/Paris,,DGL, +DGL:SA:S5914,1,"Vernaison place",45.647822,4.8121,,1,,Europe/Paris,,DGL, +O38:SA:CTP1000,1,"LES ETAGES",44.937078,6.25637,,1,,Europe/Paris,,O38, +O38:SA:CTP10000,1,"PONT DE MAUBEC",45.583169,5.26893,,1,,Europe/Paris,,O38, +O38:SA:CTP10005,1,"LE MEYNIER",45.575346,5.269152,,1,,Europe/Paris,,O38, +O38:SA:CTP10009,1,"LE BROUCHOUD",45.571329,5.26722,,1,,Europe/Paris,,O38, +O38:SA:CTP10013,1,"GRAND SOLEIL",45.594126,5.236144,,1,,Europe/Paris,,O38, +O38:SA:CTP100164,1,"LES BRETS VC",45.014019,5.657144,,1,,Europe/Paris,,O38, +O38:SA:CTP100166,1,"LES JAILS LES BENAIS",45.003502,5.65313,,1,,Europe/Paris,,O38, +O38:SA:CTP10019,1,"JOLIOT CURIE",45.589242,5.2603,,1,,Europe/Paris,,O38, +O38:SA:CTP1002,1,"LA BERARDE",44.932614,6.292564,,1,,Europe/Paris,,O38, +O38:SA:CTP10029,1,"MEDIATHEQUE",45.589824,5.275822,,1,,Europe/Paris,,O38, +O38:SA:CTP10033,1,"LYCEE J-C. AUBRY",45.590714,5.295418,,1,,Europe/Paris,,O38, +O38:SA:CTP10042,1,"PALAIS ROYAL",45.588247,5.291119,,1,,Europe/Paris,,O38, +O38:SA:CTP10045,1,"LE BREZET",45.577465,5.35239,,1,,Europe/Paris,,O38, +O38:SA:CTP10047,1,"COIRANNE",45.570946,5.342577,,1,,Europe/Paris,,O38, +O38:SA:CTP1005,1,"COLLEGE LES MARISTES",45.038536,5.052879,,1,,Europe/Paris,,O38, +O38:SA:CTP10054,1,"PHARMACIE",45.588352,5.309312,,1,,Europe/Paris,,O38, +O38:SA:CTP1006,1,"LYCEE SAINT-MAURICE",45.045025,5.044216,,1,,Europe/Paris,,O38, +O38:SA:CTP10062,1,"COLLEGE PRE BENIT",45.590943,5.289378,,1,,Europe/Paris,,O38, +O38:SA:CTP1008,1,"LYCEE TRIBOULET",45.045338,5.057786,,1,,Europe/Paris,,O38, +O38:SA:CTP10085,1,"LA PLACE",45.588246,5.316495,,1,,Europe/Paris,,O38, +O38:SA:CTP10093,1,"RUFFIEU",45.57315,5.301504,,1,,Europe/Paris,,O38, +O38:SA:CTP10097,1,"PONT DE L'AGNY",45.564199,5.303357,,1,,Europe/Paris,,O38, +O38:SA:CTP1010,1,"COLLEGE NOTRE DAME DES CHAMPS",45.04479,5.048937,,1,,Europe/Paris,,O38, +O38:SA:CTP10100,1,"LYCEE PRIVE ST MARC",45.563589,5.306695,,1,,Europe/Paris,,O38, +O38:SA:CTP10102,1,"PREMINS LAC CLAIR",45.603211,5.345219,,1,,Europe/Paris,,O38, +O38:SA:CTP10104,1,"PREMINS LA CROIX",45.605586,5.336516,,1,,Europe/Paris,,O38, +O38:SA:CTP10111,1,"DAUPHINE SAVOIE",45.584207,5.288555,,1,,Europe/Paris,,O38, +O38:SA:CTP10114,1,"LA MADELEINE",45.565965,5.387517,,1,,Europe/Paris,,O38, +O38:SA:CTP1012,1,"ST JEAN EN ROYANS",45.019206,5.290848,,1,,Europe/Paris,,O38, +O38:SA:CTP10120,1,"LOT.PLANAISE",45.576285,5.397978,,1,,Europe/Paris,,O38, +O38:SA:CTP10122,1,"LE VILLAGE",45.567151,5.374994,,1,,Europe/Paris,,O38, +O38:SA:CTP10124,1,"FALIZAN",45.604022,5.39765,,1,,Europe/Paris,,O38, +O38:SA:CTP10126,1,"VACHERES",45.568015,5.358077,,1,,Europe/Paris,,O38, +O38:SA:CTP10128,1,"LA PEAU DE LOUP",45.567367,5.370284,,1,,Europe/Paris,,O38, +O38:SA:CTP10130,1,"PEVRIN",45.566797,5.406961,,1,,Europe/Paris,,O38, +O38:SA:CTP10132,1,"LES COMMUNAUX",45.577762,5.366101,,1,,Europe/Paris,,O38, +O38:SA:CTP10134,1,"CHEMIN DU GEAY",45.574782,5.374289,,1,,Europe/Paris,,O38, +O38:SA:CTP10136,1,"AUX QUATRE VENTS",45.575695,5.385025,,1,,Europe/Paris,,O38, +O38:SA:CTP1014,1,"ST LAURENT EN ROYANS",45.02901,5.326752,,1,,Europe/Paris,,O38, +O38:SA:CTP10140,1,"LA MITAGNIERE",45.592429,5.419898,,1,,Europe/Paris,,O38, +O38:SA:CTP10150,1,"LE BOIS-ABRIBUS",45.573942,5.39347,,1,,Europe/Paris,,O38, +O38:SA:CTP10152,1,"VERNAVENT",45.579228,5.409683,,1,,Europe/Paris,,O38, +O38:SA:CTP10154,1,"HAMEAU VERNAVENT",45.577268,5.406277,,1,,Europe/Paris,,O38, +O38:SA:CTP1016,1,"ENTREE ST MARTIN",45.018328,5.44283,,1,,Europe/Paris,,O38, +O38:SA:CTP101772,1,"CENTRE-VILLAGE",45.170511,5.68079,,1,,Europe/Paris,,O38, +O38:SA:CTP101774,1,"BOUCHAYER-HOTEL DE VILLE",45.181297,5.694445,,1,,Europe/Paris,,O38, +O38:SA:CTP101776,1,"BEL AIR",45.492147,5.437713,,1,,Europe/Paris,,O38, +O38:SA:CTP101778,1,"PRESQU'ILE (TRAM)",45.205834,5.699426,,1,,Europe/Paris,,O38, +O38:SA:CTP10178,1,"EGLISE",45.582167,5.41561,,1,,Europe/Paris,,O38, +O38:SA:CTP1018,1,"PONT DE TOURTRE",45.013723,5.442514,,1,,Europe/Paris,,O38, +O38:SA:CTP10180,1,"RECULEFORT",45.589684,5.412065,,1,,Europe/Paris,,O38, +O38:SA:CTP101812,1,"LES VESVES",45.510808,5.339062,,1,,Europe/Paris,,O38, +O38:SA:CTP101814,1,"LOTISSEMENT MENEGHIN",44.997795,5.652364,,1,,Europe/Paris,,O38, +O38:SA:CTP10182,1,"STADE",45.587945,5.464384,,1,,Europe/Paris,,O38, +O38:SA:CTP101822,1,"PALLUEL",45.255021,5.661663,,1,,Europe/Paris,,O38, +O38:SA:CTP10184,1,"ETANG LE BERRE",45.602067,5.483046,,1,,Europe/Paris,,O38, +O38:SA:CTP10186,1,"LES PALLETEAUX",45.594605,5.465224,,1,,Europe/Paris,,O38, +O38:SA:CTP101861,1,"LE MICHALET",45.478781,4.968223,,1,,Europe/Paris,,O38, +O38:SA:CTP101866,1,"ROUTE DE BEAUREPAIRE",45.440499,5.004612,,1,,Europe/Paris,,O38, +O38:SA:CTP101868,1,"PLACE DE LA ST VINCENT",45.492634,4.945505,,1,,Europe/Paris,,O38, +O38:SA:CTP101869,1,"MANUFACTURE MONTLUC",45.749345,4.859338,,1,,Europe/Paris,,O38, +O38:SA:CTP101871,1,"TISSAGE",45.735005,5.187528,,1,,Europe/Paris,,O38, +O38:SA:CTP10188,1,"HAMEAU DE SORLIN",45.595283,5.477154,,1,,Europe/Paris,,O38, +O38:SA:CTP101883,1,"LES VOUILLANTS",45.170945,5.673234,,1,,Europe/Paris,,O38, +O38:SA:CTP101885,1,"LA BUQUINIERE 2",45.491077,5.70449,,1,,Europe/Paris,,O38, +O38:SA:CTP101887,1,"LYCEE (2)",45.068131,5.770041,,1,,Europe/Paris,,O38, +O38:SA:CTP10190,1,"LE MEYNAT",45.576535,5.462758,,1,,Europe/Paris,,O38, +O38:SA:CTP10192,1,"LES COMMUNES",45.599574,5.486389,,1,,Europe/Paris,,O38, +O38:SA:CTP101935,1,"LA GUINGUETTE",44.728711,6.008388,,1,,Europe/Paris,,O38, +O38:SA:CTP10194,1,"LOT. LE LADRET",45.556623,5.474145,,1,,Europe/Paris,,O38, +O38:SA:CTP101944,1,"MONTEE DE LA BLACHE",45.215826,5.384212,,1,,Europe/Paris,,O38, +O38:SA:CTP10196,1,"LE PISSOUD",45.593703,5.489346,,1,,Europe/Paris,,O38, +O38:SA:CTP101981,1,"LES CHEVREUILS",45.042731,5.977608,,1,,Europe/Paris,,O38, +O38:SA:CTP101983,1,"VILLARNET LE MOULIN",44.861271,5.690958,,1,,Europe/Paris,,O38, +O38:SA:CTP101987,1,"EGLISE",44.990491,5.771696,,1,,Europe/Paris,,O38, +O38:SA:CTP101989,1,"LE MOULIN",44.897173,5.928173,,1,,Europe/Paris,,O38, +O38:SA:CTP10199,1,"GARE S.N.C.F.",45.560349,5.449561,,1,,Europe/Paris,,O38, +O38:SA:CTP101992,1,"ROUTE DE MEPIEU",45.730876,5.434801,,1,,Europe/Paris,,O38, +O38:SA:CTP1020,1,"CROISEMENT ST AGNAN-ST MARTIN",45.001595,5.435086,,1,,Europe/Paris,,O38, +O38:SA:CTP10201,1,"CHATANAY",45.582357,5.447894,,1,,Europe/Paris,,O38, +O38:SA:CTP102014,1,"ECOLES",45.393819,6.070142,,1,,Europe/Paris,,O38, +O38:SA:CTP102016,1,"ROUTE DE ROSSIERE",45.31374,5.302665,,1,,Europe/Paris,,O38, +O38:SA:CTP102021,1,"BAYET",45.187234,5.210766,,1,,Europe/Paris,,O38, +O38:SA:CTP102023,1,"L'ELLIOU",45.265987,5.530947,,1,,Europe/Paris,,O38, +O38:SA:CTP102024,1,"VICAIRE ET GERBAUD",44.87099,5.621269,,1,,Europe/Paris,,O38, +O38:SA:CTP102025,1,"LE CHAMBOUD 2",45.486177,4.954983,,1,,Europe/Paris,,O38, +O38:SA:CTP10203,1,"LA POSTE",45.566197,5.448371,,1,,Europe/Paris,,O38, +O38:SA:CTP102045,1,"FAUCONNIERE",45.17727,5.693528,,1,,Europe/Paris,,O38, +O38:SA:CTP102049,1,"CHATEAU MEA LA VERGNE",44.740966,5.759404,,1,,Europe/Paris,,O38, +O38:SA:CTP10205,1,"LE CHAMP DE MARS",45.56265,5.443936,,1,,Europe/Paris,,O38, +O38:SA:CTP102050,1,"LEYSSINS GUERRE",45.580737,5.584018,,1,,Europe/Paris,,O38, +O38:SA:CTP102053,1,"CARREFOUR DE L'EPINETTE",45.41658,5.770232,,1,,Europe/Paris,,O38, +O38:SA:CTP10207,1,"SECURITE SOCIALE",45.560781,5.454567,,1,,Europe/Paris,,O38, +O38:SA:CTP10208,1,"VILLAGE",45.584752,5.463724,,1,,Europe/Paris,,O38, +O38:SA:CTP102080,1,"MEILLON",45.465082,5.123915,,1,,Europe/Paris,,O38, +O38:SA:CTP10210,1,"MODURIERE",45.592022,5.432721,,1,,Europe/Paris,,O38, +O38:SA:CTP102101,1,"JEAN VINCENT",45.016394,5.872305,,1,,Europe/Paris,,O38, +O38:SA:CTP102103,1,"LES QUATRE ROUTES D518",45.595455,5.090205,,1,,Europe/Paris,,O38, +O38:SA:CTP10212,1,"MAIRIE",45.573826,5.479975,,1,,Europe/Paris,,O38, +O38:SA:CTP10214,1,"LE GRAND BOIS",45.598397,5.434131,,1,,Europe/Paris,,O38, +O38:SA:CTP10216,1,"LE PRA-DIO",45.587256,5.424518,,1,,Europe/Paris,,O38, +O38:SA:CTP10219,1,"LES YRIS",45.586166,5.437485,,1,,Europe/Paris,,O38, +O38:SA:CTP1022,1,"LES BARRAQUES",45.002117,5.421713,,1,,Europe/Paris,,O38, +O38:SA:CTP10220,1,"LES IRIS",45.582597,5.440472,,1,,Europe/Paris,,O38, +O38:SA:CTP10222,1,"CAFE LES ALLOBROGES",45.566989,5.43897,,1,,Europe/Paris,,O38, +O38:SA:CTP10224,1,"RD2 CROCHAT",45.566038,5.476918,,1,,Europe/Paris,,O38, +O38:SA:CTP10226,1,"USINE FERRARI",45.566464,5.424108,,1,,Europe/Paris,,O38, +O38:SA:CTP10228,1,"TRICONFORT",45.569887,5.459905,,1,,Europe/Paris,,O38, +O38:SA:CTP10230,1,"LE PASSERON",45.572568,5.471953,,1,,Europe/Paris,,O38, +O38:SA:CTP10232,1,"CHARPENAY LOTISSEMENT",45.567533,5.487835,,1,,Europe/Paris,,O38, +O38:SA:CTP10234,1,"PLACE THEVENON",45.566237,5.445515,,1,,Europe/Paris,,O38, +O38:SA:CTP10236,1,"LYCEE ELIE CARTAN",45.564352,5.443385,,1,,Europe/Paris,,O38, +O38:SA:CTP1024,1,"COOPERATIVE ST MARTIN",45.022785,5.443168,,1,,Europe/Paris,,O38, +O38:SA:CTP10240,1,"CROIS.ROCHETOIRIN",45.58021,5.434545,,1,,Europe/Paris,,O38, +O38:SA:CTP10242,1,"PLACE",45.572281,5.42938,,1,,Europe/Paris,,O38, +O38:SA:CTP10244,1,"LE BRESSON-ECOLE",45.597253,5.448103,,1,,Europe/Paris,,O38, +O38:SA:CTP10248,1,"ECOLE LE FOULON",45.56868,5.454506,,1,,Europe/Paris,,O38, +O38:SA:CTP10250,1,"CITE CLERGET",45.564562,5.433777,,1,,Europe/Paris,,O38, +O38:SA:CTP10252,1,"COLLEGE LES DAUPHINS",45.563176,5.430551,,1,,Europe/Paris,,O38, +O38:SA:CTP10256,1,"MOLLARD-MAILLET",45.576184,5.432981,,1,,Europe/Paris,,O38, +O38:SA:CTP10258,1,"LE JOLI MOULIN",45.566492,5.430729,,1,,Europe/Paris,,O38, +O38:SA:CTP10260,1,"ECOLE DU BOURG",45.572514,5.479855,,1,,Europe/Paris,,O38, +O38:SA:CTP10264,1,"BAS CUIRIEU",45.561463,5.432115,,1,,Europe/Paris,,O38, +O38:SA:CTP10266,1,"COLLEGE LE CALLOUD",45.570174,5.446089,,1,,Europe/Paris,,O38, +O38:SA:CTP10268,1,"CHEMIN DE L'ETANG",45.594175,5.447737,,1,,Europe/Paris,,O38, +O38:SA:CTP1027,1,"HAUTS PLATEAUX",45.024762,5.518122,,1,,Europe/Paris,,O38, +O38:SA:CTP10270,1,"COMBALAN",45.569457,5.433577,,1,,Europe/Paris,,O38, +O38:SA:CTP10272,1,"LES PLAGNES",45.588262,5.485129,,1,,Europe/Paris,,O38, +O38:SA:CTP10274,1,"RUE PASTEUR (SNCF)",45.561059,5.450133,,1,,Europe/Paris,,O38, +O38:SA:CTP10275,1,"AVOLIN-STADE",45.5757,5.532614,,1,,Europe/Paris,,O38, +O38:SA:CTP10277,1,"LE GROS CHENE",45.589643,5.501647,,1,,Europe/Paris,,O38, +O38:SA:CTP10279,1,"CARREFOUR LA MOLETTE",45.570471,5.552105,,1,,Europe/Paris,,O38, +O38:SA:CTP10280,1,"ARLACOT",45.588344,5.555093,,1,,Europe/Paris,,O38, +O38:SA:CTP10281,1,"LES RIVOIRES 2",45.596328,5.555048,,1,,Europe/Paris,,O38, +O38:SA:CTP10282,1,"LE FAYET",45.596879,5.544664,,1,,Europe/Paris,,O38, +O38:SA:CTP10283,1,"VILLAGE",45.579381,5.528859,,1,,Europe/Paris,,O38, +O38:SA:CTP10285,1,"LA PORTE",45.600138,5.543488,,1,,Europe/Paris,,O38, +O38:SA:CTP10288,1,"EVRIEU STATION ELF",45.582947,5.547028,,1,,Europe/Paris,,O38, +O38:SA:CTP10290,1,"VARVOTTIER",45.58854,5.508564,,1,,Europe/Paris,,O38, +O38:SA:CTP10292,1,"LE VERONIN",45.601459,5.511144,,1,,Europe/Paris,,O38, +O38:SA:CTP102938,1,"ROUTE DES DEVERS",45.209868,5.458475,,1,,Europe/Paris,,O38, +O38:SA:CTP10294,1,"LE LACA",45.599019,5.498847,,1,,Europe/Paris,,O38, +O38:SA:CTP102957,1,"LES GLENATS",45.102523,5.464403,,1,,Europe/Paris,,O38, +O38:SA:CTP102959,1,"LES AILES",45.093869,5.451631,,1,,Europe/Paris,,O38, +O38:SA:CTP102963,1,"GARE ROUTIERE SUD",45.36349,5.594908,,1,,Europe/Paris,,O38, +O38:SA:CTP10298,1,"CITE FRANTISSOR",45.591037,5.520063,,1,,Europe/Paris,,O38, +O38:SA:CTP102988,1,"L'HOMME DU LAC",44.8407,5.721498,,1,,Europe/Paris,,O38, +O38:SA:CTP102990,1,"VOIE PARKING",45.173332,5.544239,,1,,Europe/Paris,,O38, +O38:SA:CTP102992,1,"VALLIER-LIBERATION (OUEST)",45.180376,5.71513,,1,,Europe/Paris,,O38, +O38:SA:CTP1030,1,"LES RITONS",45.028509,5.522802,,1,,Europe/Paris,,O38, +O38:SA:CTP10300,1,"LOT. LA RANCHE",45.587671,5.511167,,1,,Europe/Paris,,O38, +O38:SA:CTP103009,1,"ROUTE DE SAINT NIZIER",45.176598,5.681452,,1,,Europe/Paris,,O38, +O38:SA:CTP103011,1,"LES VISANS",45.170259,5.677901,,1,,Europe/Paris,,O38, +O38:SA:CTP10302,1,"GOUTTE(MAUCHAMP)",45.577641,5.510534,,1,,Europe/Paris,,O38, +O38:SA:CTP10304,1,"CAFE MERMET",45.590997,5.519914,,1,,Europe/Paris,,O38, +O38:SA:CTP103040,1,"LIVET RD1091",45.106771,5.934724,,1,,Europe/Paris,,O38, +O38:SA:CTP103042,1,"GAVET RD1091",45.071839,5.874579,,1,,Europe/Paris,,O38, +O38:SA:CTP103044,1,"SAMLOC",45.30555,5.618163,,1,,Europe/Paris,,O38, +O38:SA:CTP103046,1,"POMAGALSKI",45.309918,5.61407,,1,,Europe/Paris,,O38, +O38:SA:CTP103047,1,"ALUMINIUM",45.312471,5.609138,,1,,Europe/Paris,,O38, +O38:SA:CTP103048,1,"RELAIS INFO SERVICES",45.314173,5.605299,,1,,Europe/Paris,,O38, +O38:SA:CTP103049,1,"RD1085 PORTE DU VERCORS",45.314518,5.606493,,1,,Europe/Paris,,O38, +O38:SA:CTP103054,1,"CHABETENEYRE - LES EGARRAS",44.739247,5.752581,,1,,Europe/Paris,,O38, +O38:SA:CTP10306,1,"AVOLIN",45.573228,5.535233,,1,,Europe/Paris,,O38, +O38:SA:CTP10308,1,"FAVERGES-ECOLES",45.590808,5.525035,,1,,Europe/Paris,,O38, +O38:SA:CTP10310,1,"VERONIN ECOLE",45.597303,5.5053,,1,,Europe/Paris,,O38, +O38:SA:CTP10312,1,"LE TRAVERSOUD",45.59535,5.501527,,1,,Europe/Paris,,O38, +O38:SA:CTP10314,1,"LE LACA-CROIS.D16K",45.595899,5.494221,,1,,Europe/Paris,,O38, +O38:SA:CTP103143,1,"CUINAT ET COQUIER",45.719225,5.270329,,1,,Europe/Paris,,O38, +O38:SA:CTP103144,1,"CUINAT ET COQUIER",45.720985,5.263773,,1,,Europe/Paris,,O38, +O38:SA:CTP103158,1,"GARE",45.250845,5.852475,,1,,Europe/Paris,,O38, +O38:SA:CTP10316,1,"LES BRUYERES",45.589662,5.496452,,1,,Europe/Paris,,O38, +O38:SA:CTP103171,1,"FOYER LAURENT BOUVIER",45.346079,4.813497,,1,,Europe/Paris,,O38, +O38:SA:CTP10318,1,"LE GINARD",45.594834,5.553797,,1,,Europe/Paris,,O38, +O38:SA:CTP10319,1,"BELLEFONTAINE",45.581037,5.49029,,1,,Europe/Paris,,O38, +O38:SA:CTP1032,1,"LES MARECHAUX",45.033301,5.531142,,1,,Europe/Paris,,O38, +O38:SA:CTP10321,1,"MAUCHAMP",45.574848,5.513222,,1,,Europe/Paris,,O38, +O38:SA:CTP103221,1,"CHEMIN DES SABLES",45.646141,5.459312,,1,,Europe/Paris,,O38, +O38:SA:CTP103223,1,"HAMEAU LE DESERT",45.02681,5.845792,,1,,Europe/Paris,,O38, +O38:SA:CTP103224,1,"LES ALPETS",45.027041,5.855453,,1,,Europe/Paris,,O38, +O38:SA:CTP10323,1,"BOUTTIERES",45.577297,5.554624,,1,,Europe/Paris,,O38, +O38:SA:CTP103259,1,"SAMPAN",45.61398,5.054037,,1,,Europe/Paris,,O38, +O38:SA:CTP10326,1,"LA BALLATIERE",45.584682,5.509053,,1,,Europe/Paris,,O38, +O38:SA:CTP103261,1,"GROUPE SCOLAIRE",45.420666,4.897253,,1,,Europe/Paris,,O38, +O38:SA:CTP103262,1,"LE GONTARD - ECOLE",45.431937,4.938017,,1,,Europe/Paris,,O38, +O38:SA:CTP103263,1,"STADE",45.613299,5.020537,,1,,Europe/Paris,,O38, +O38:SA:CTP103266,1,"TREZANNE",44.820852,5.581846,,1,,Europe/Paris,,O38, +O38:SA:CTP103267,1,"BERNARDIERE",44.813753,5.572603,,1,,Europe/Paris,,O38, +O38:SA:CTP103269,1,"DONNIERE",44.821185,5.553951,,1,,Europe/Paris,,O38, +O38:SA:CTP10328,1,"EVRIEU",45.583386,5.543008,,1,,Europe/Paris,,O38, +O38:SA:CTP103286,1,"CHEMIN DE SAINT-MARTIN",45.22213,5.793567,,1,,Europe/Paris,,O38, +O38:SA:CTP103290,1,"PETIT COZANCE",45.702123,5.32885,,1,,Europe/Paris,,O38, +O38:SA:CTP103292,1,"BEAUSOLEIL",45.498811,5.221229,,1,,Europe/Paris,,O38, +O38:SA:CTP10330,1,"LE GURDIN",45.56926,5.533789,,1,,Europe/Paris,,O38, +O38:SA:CTP103303,1,"LA CROIX FERREE",45.160737,5.618448,,1,,Europe/Paris,,O38, +O38:SA:CTP103305,1,"LE MAS DU BIROLLET",45.072042,5.315567,,1,,Europe/Paris,,O38, +O38:SA:CTP103308,1,"PARABOOT",45.321365,5.60021,,1,,Europe/Paris,,O38, +O38:SA:CTP103310,1,"LES MARCEAUX",44.77476,5.782116,,1,,Europe/Paris,,O38, +O38:SA:CTP103314,1,"MAIRIE",45.091886,6.063315,,1,,Europe/Paris,,O38, +O38:SA:CTP103315,1,"PONT DE L'EAU D'OLLE",45.121627,6.023074,,1,,Europe/Paris,,O38, +O38:SA:CTP10332,1,"VERSIN",45.55785,5.539833,,1,,Europe/Paris,,O38, +O38:SA:CTP103330,1,"LA QUEUE DU LOUP",45.214301,5.397111,,1,,Europe/Paris,,O38, +O38:SA:CTP103332,1,"RUE KERDREAN",45.325238,5.564333,,1,,Europe/Paris,,O38, +O38:SA:CTP103334,1,"LE BOIS DE CLAIX VC",45.106767,5.279164,,1,,Europe/Paris,,O38, +O38:SA:CTP103336,1,"CENTRE AROEVEN",45.3929,5.844137,,1,,Europe/Paris,,O38, +O38:SA:CTP103338,1,"Z.A DU ROCHER",45.518953,4.929825,,1,,Europe/Paris,,O38, +O38:SA:CTP103339,1,"GARE SNCF LAVOISIER",45.372141,4.794747,,1,,Europe/Paris,,O38, +O38:SA:CTP10334,1,"RUE BRANLY",45.556807,5.53618,,1,,Europe/Paris,,O38, +O38:SA:CTP103348,1,"COVET",45.566116,5.915387,,1,,Europe/Paris,,O38, +O38:SA:CTP103350,1,"AVENUE D'ARGENSON",45.054497,5.679023,,1,,Europe/Paris,,O38, +O38:SA:CTP103352,1,"LES FRAISSES",44.9195,5.570932,,1,,Europe/Paris,,O38, +O38:SA:CTP103354,1,"ECOLES",45.508921,5.596376,,1,,Europe/Paris,,O38, +O38:SA:CTP103356,1,"LE SOUGEY",45.506567,5.621909,,1,,Europe/Paris,,O38, +O38:SA:CTP103358,1,"LE CHAMPLAS",44.939313,5.972646,,1,,Europe/Paris,,O38, +O38:SA:CTP10336,1,"CHARPENAY-TAILLIS",45.566801,5.496322,,1,,Europe/Paris,,O38, +O38:SA:CTP103371,1,"LE THAU",44.826494,5.724955,,1,,Europe/Paris,,O38, +O38:SA:CTP103373,1,"ECOLE",45.49802,5.537241,,1,,Europe/Paris,,O38, +O38:SA:CTP103375,1,"ROUTE DE PISIEU",45.345479,5.056506,,1,,Europe/Paris,,O38, +O38:SA:CTP103377,1,"CHEMIN DES BOURDOIRES",45.396635,5.751129,,1,,Europe/Paris,,O38, +O38:SA:CTP10338,1,"BIEZE",45.574412,5.489832,,1,,Europe/Paris,,O38, +O38:SA:CTP103380,1,"BOIS VERT ROUTE DE RIVES",45.3393,5.517012,,1,,Europe/Paris,,O38, +O38:SA:CTP103382,1,"FERME BOURDIS",45.344745,5.521271,,1,,Europe/Paris,,O38, +O38:SA:CTP103384,1,"LA VACHE",45.110415,5.269745,,1,,Europe/Paris,,O38, +O38:SA:CTP103385,1,"FERME DUMAS",44.876057,5.61129,,1,,Europe/Paris,,O38, +O38:SA:CTP103387,1,"PARKING LYCEE PIERRE BEGHIN",45.320248,5.588722,,1,,Europe/Paris,,O38, +O38:SA:CTP10340,1,"SAINT-MARTIN",45.591654,5.492895,,1,,Europe/Paris,,O38, +O38:SA:CTP10342,1,"LE SUER",45.571113,5.515302,,1,,Europe/Paris,,O38, +O38:SA:CTP103430,1,"LA PLAINE",45.759422,5.187361,,1,,Europe/Paris,,O38, +O38:SA:CTP103431,1,"ECOLE PUBLIQUE",44.900214,5.908148,,1,,Europe/Paris,,O38, +O38:SA:CTP10344,1,"LE CRET",45.555396,5.549435,,1,,Europe/Paris,,O38, +O38:SA:CTP10346,1,"L'EGLISE",45.576958,5.600477,,1,,Europe/Paris,,O38, +O38:SA:CTP10348,1,"LA CUISINIERE",45.579157,5.588367,,1,,Europe/Paris,,O38, +O38:SA:CTP10350,1,"LES ECOLES",45.589619,5.604631,,1,,Europe/Paris,,O38, +O38:SA:CTP10352,1,"LE DECOUSU",45.572375,5.595986,,1,,Europe/Paris,,O38, +O38:SA:CTP10354,1,"MAROC",45.56359,5.564154,,1,,Europe/Paris,,O38, +O38:SA:CTP10356,1,"LE BOIS",45.596074,5.570337,,1,,Europe/Paris,,O38, +O38:SA:CTP10358,1,"LES RIVOIRES 1",45.596812,5.563964,,1,,Europe/Paris,,O38, +O38:SA:CTP10359,1,"LES JAYERES",45.595043,5.572904,,1,,Europe/Paris,,O38, +O38:SA:CTP10361,1,"LA LIBARDE",45.556283,5.593375,,1,,Europe/Paris,,O38, +O38:SA:CTP10363,1,"LES PETITES TERNES",45.56784,5.595965,,1,,Europe/Paris,,O38, +O38:SA:CTP10365,1,"LE BUGNON",45.597908,5.565294,,1,,Europe/Paris,,O38, +O38:SA:CTP10366,1,"LE VILLAGE",45.587438,5.607815,,1,,Europe/Paris,,O38, +O38:SA:CTP10368,1,"STATION D'EPURATION",45.57781,5.592643,,1,,Europe/Paris,,O38, +O38:SA:CTP10370,1,"BOIS DE LEYSSINS",45.578199,5.576803,,1,,Europe/Paris,,O38, +O38:SA:CTP10371,1,"LES GRANDES TERNES",45.56451,5.597703,,1,,Europe/Paris,,O38, +O38:SA:CTP10372,1,"HLM PIERRE BLANCHE",45.570968,5.601144,,1,,Europe/Paris,,O38, +O38:SA:CTP10374,1,"LE GUILLERMARD",45.59144,5.559908,,1,,Europe/Paris,,O38, +O38:SA:CTP10375,1,"ECOLE LA BRUYERE",45.554546,5.615679,,1,,Europe/Paris,,O38, +O38:SA:CTP10379,1,"MEUDENIN",45.577578,5.569242,,1,,Europe/Paris,,O38, +O38:SA:CTP10380,1,"CARREFOUR BRESSAN N.516",45.5812,5.567154,,1,,Europe/Paris,,O38, +O38:SA:CTP10382,1,"LES CHARMILLES",45.593908,5.621825,,1,,Europe/Paris,,O38, +O38:SA:CTP10384,1,"LES PLANCHES",45.592285,5.618005,,1,,Europe/Paris,,O38, +O38:SA:CTP10386,1,"VILLAGE",45.598447,5.588133,,1,,Europe/Paris,,O38, +O38:SA:CTP10388,1,"LE GAY",45.594106,5.591641,,1,,Europe/Paris,,O38, +O38:SA:CTP1039,1,"OFFICE DE TOURISME",45.031743,5.527188,,1,,Europe/Paris,,O38, +O38:SA:CTP10390,1,"LE CHANET",45.578435,5.622738,,1,,Europe/Paris,,O38, +O38:SA:CTP10392,1,"LES FERRIERES",45.560497,5.616952,,1,,Europe/Paris,,O38, +O38:SA:CTP10394,1,"MALATRAIT",45.564969,5.618798,,1,,Europe/Paris,,O38, +O38:SA:CTP10396,1,"CHANET LE BAS",45.57336,5.620718,,1,,Europe/Paris,,O38, +O38:SA:CTP10398,1,"LA BIGOLANCHE",45.566238,5.619935,,1,,Europe/Paris,,O38, +O38:SA:CTP10399,1,"CARREFOUR RTE CHIMILIN",45.575604,5.604335,,1,,Europe/Paris,,O38, +O38:SA:CTP10401,1,"ECOLES-POMPIERS",45.576354,5.598076,,1,,Europe/Paris,,O38, +O38:SA:CTP10403,1,"BORGERON",45.574354,5.615655,,1,,Europe/Paris,,O38, +O38:SA:CTP10407,1,"LE MARTINET",45.590751,5.595386,,1,,Europe/Paris,,O38, +O38:SA:CTP10409,1,"NORMANDOZ",45.587239,5.600069,,1,,Europe/Paris,,O38, +O38:SA:CTP10411,1,"CHARMILLES APRES LA CROIX",45.589146,5.623483,,1,,Europe/Paris,,O38, +O38:SA:CTP10413,1,"GARE DE L'EST",45.597141,5.628265,,1,,Europe/Paris,,O38, +O38:SA:CTP10415,1,"CENTRE",45.570089,5.641702,,1,,Europe/Paris,,O38, +O38:SA:CTP10419,1,"MUNERI",45.553021,5.643164,,1,,Europe/Paris,,O38, +O38:SA:CTP1042,1,"LE PIGEONNIER",44.994109,5.650771,,1,,Europe/Paris,,O38, +O38:SA:CTP10421,1,"AVAUX LAVOIR",45.557609,5.660204,,1,,Europe/Paris,,O38, +O38:SA:CTP10424,1,"ROUTE DU FAYET",45.557859,5.643862,,1,,Europe/Paris,,O38, +O38:SA:CTP10425,1,"LE VORGET",45.579465,5.636302,,1,,Europe/Paris,,O38, +O38:SA:CTP10428,1,"LA COLONGE",45.55162,5.655508,,1,,Europe/Paris,,O38, +O38:SA:CTP10429,1,"LA CHAPELIERE",45.597181,5.627564,,1,,Europe/Paris,,O38, +O38:SA:CTP10430,1,"VORGET LE LAC",45.576047,5.641203,,1,,Europe/Paris,,O38, +O38:SA:CTP10434,1,"AIRE SERVICE A.43",45.577131,5.630719,,1,,Europe/Paris,,O38, +O38:SA:CTP10436,1,"ECOLES",45.570022,5.641466,,1,,Europe/Paris,,O38, +O38:SA:CTP10438,1,"PRIOLAZ",45.554383,5.629524,,1,,Europe/Paris,,O38, +O38:SA:CTP1044,1,"LA GARE",44.990924,5.64972,,1,,Europe/Paris,,O38, +O38:SA:CTP10440,1,"LE NAN FERME REVOL",45.554272,5.63454,,1,,Europe/Paris,,O38, +O38:SA:CTP10444,1,"ROUTE D'AVAUX",45.555113,5.667299,,1,,Europe/Paris,,O38, +O38:SA:CTP10446,1,"LES CHAMPAGNES 2",45.574444,5.634452,,1,,Europe/Paris,,O38, +O38:SA:CTP10448,1,"AVAUX BOURG",45.556603,5.665727,,1,,Europe/Paris,,O38, +O38:SA:CTP10450,1,"HAMEAU LE NAN",45.556909,5.635014,,1,,Europe/Paris,,O38, +O38:SA:CTP10452,1,"LES RIVAUX",45.564885,5.649993,,1,,Europe/Paris,,O38, +O38:SA:CTP10454,1,"LA TOUVANCHE",45.557483,5.659961,,1,,Europe/Paris,,O38, +O38:SA:CTP10457,1,"LE HAUT FAYET",45.555751,5.650643,,1,,Europe/Paris,,O38, +O38:SA:CTP10458,1,"ROUTE DE ST CASSIN",45.546364,5.88614,,1,,Europe/Paris,,O38, +O38:SA:CTP10461,1,"GARE ROUTIERE",45.569958,5.917216,,1,,Europe/Paris,,O38, +O38:SA:CTP10464,1,"COLLEGE N-D. DE LA VILLETTE",45.550982,5.952374,,1,,Europe/Paris,,O38, +O38:SA:CTP10466,1,"JOPPET",45.569037,5.931056,,1,,Europe/Paris,,O38, +O38:SA:CTP10467,1,"CENTRE",45.561237,5.898243,,1,,Europe/Paris,,O38, +O38:SA:CTP10470,1,"HOPITAL CHAMBERY",45.564207,5.911052,,1,,Europe/Paris,,O38, +O38:SA:CTP10474,1,"CHALLES CENTRE",45.549535,5.984465,,1,,Europe/Paris,,O38, +O38:SA:CTP10482,1,"23 AOUT 1944",45.66408,4.952358,,1,,Europe/Paris,,O38, +O38:SA:CTP10500,1,"BIBLIOTHEQUE",45.647582,5.012786,,1,,Europe/Paris,,O38, +O38:SA:CTP10509,1,"LA GENDARMERIE",45.629411,5.069782,,1,,Europe/Paris,,O38, +O38:SA:CTP10511,1,"LE FOYER RURAL",45.630327,5.062789,,1,,Europe/Paris,,O38, +O38:SA:CTP10513,1,"COLLEGE JACQUES PREVERT",45.630885,5.055588,,1,,Europe/Paris,,O38, +O38:SA:CTP10515,1,"LES BOSQUETS",45.6318,5.061684,,1,,Europe/Paris,,O38, +O38:SA:CTP10516,1,"E.D.F.",45.631296,5.073897,,1,,Europe/Paris,,O38, +O38:SA:CTP10518,1,"L'ALOUETTE",45.614706,5.082142,,1,,Europe/Paris,,O38, +O38:SA:CTP10520,1,"HAMEAU L'ALOUETTE",45.614229,5.085498,,1,,Europe/Paris,,O38, +O38:SA:CTP10522,1,"LAVIGNON",45.62692,5.068326,,1,,Europe/Paris,,O38, +O38:SA:CTP10524,1,"PLACE GAMBETTA",45.627533,5.064305,,1,,Europe/Paris,,O38, +O38:SA:CTP10526,1,"SOCAREL",45.635587,5.048985,,1,,Europe/Paris,,O38, +O38:SA:CTP10527,1,"LA PISCINE",45.630843,5.058203,,1,,Europe/Paris,,O38, +O38:SA:CTP10538,1,"LA CENTIGONNIERE",45.618934,5.085269,,1,,Europe/Paris,,O38, +O38:SA:CTP10542,1,"LES AVOCATS",45.659909,5.077397,,1,,Europe/Paris,,O38, +O38:SA:CTP10544,1,"LE STADE",45.660786,5.084133,,1,,Europe/Paris,,O38, +O38:SA:CTP10546,1,"CHEMIN DES ORANGES",45.62567,5.060768,,1,,Europe/Paris,,O38, +O38:SA:CTP10549,1,"HOTEL DE LA POSTE",45.633375,5.146693,,1,,Europe/Paris,,O38, +O38:SA:CTP10552,1,"COLLEGE LOUIS ARAGON",45.617362,5.153134,,1,,Europe/Paris,,O38, +O38:SA:CTP10555,1,"LIBERATION",45.640958,5.137356,,1,,Europe/Paris,,O38, +O38:SA:CTP10558,1,"COL DES ARMIERES",45.624971,5.139319,,1,,Europe/Paris,,O38, +O38:SA:CTP10566,1,"CHESNES RD1006",45.654421,5.114737,,1,,Europe/Paris,,O38, +O38:SA:CTP10570,1,"Z.I. CHAPEAU ROUGE",45.640005,5.121343,,1,,Europe/Paris,,O38, +O38:SA:CTP10575,1,"GARE SNCF",45.627462,5.151327,,1,,Europe/Paris,,O38, +O38:SA:CTP10579,1,"COLLEGE ANNE FRANK",45.634228,5.141928,,1,,Europe/Paris,,O38, +O38:SA:CTP10584,1,"LA CRUIZILLE",45.621888,5.141312,,1,,Europe/Paris,,O38, +O38:SA:CTP10590,1,"ANCIENNE GENDARMERIE",45.636847,5.143559,,1,,Europe/Paris,,O38, +O38:SA:CTP10594,1,"Z.I. RUE DU RUISSEAU",45.645787,5.103442,,1,,Europe/Paris,,O38, +O38:SA:CTP10598,1,"RIANTE PLAINE",45.638182,5.133951,,1,,Europe/Paris,,O38, +O38:SA:CTP10605,1,"EXTERNAT STE-MARIE",45.628752,5.151823,,1,,Europe/Paris,,O38, +O38:SA:CTP10610,1,"LE BOURG",45.613736,5.151576,,1,,Europe/Paris,,O38, +O38:SA:CTP10613,1,"MONTJAY PLACE",45.629555,5.093936,,1,,Europe/Paris,,O38, +O38:SA:CTP10616,1,"COLLEGE LES ALLINGES",45.628285,5.11448,,1,,Europe/Paris,,O38, +O38:SA:CTP10619,1,"CHESNES-TOTEM",45.652081,5.119353,,1,,Europe/Paris,,O38, +O38:SA:CTP1062,1,"GENEVREY ECOLE",45.027756,5.654476,,1,,Europe/Paris,,O38, +O38:SA:CTP10622,1,"CENTRE PENITENTIAIRE",45.658673,5.128548,,1,,Europe/Paris,,O38, +O38:SA:CTP10627,1,"LA NOIREE MLP",45.640127,5.108806,,1,,Europe/Paris,,O38, +O38:SA:CTP10636,1,"L'ANGONNE",45.635093,5.097423,,1,,Europe/Paris,,O38, +O38:SA:CTP10639,1,"LES ROCHES",45.618355,5.153693,,1,,Europe/Paris,,O38, +O38:SA:CTP1064,1,"COL DE L'ARZELIER",44.989329,5.594458,,1,,Europe/Paris,,O38, +O38:SA:CTP10646,1,"MAIRIE",45.632403,5.111274,,1,,Europe/Paris,,O38, +O38:SA:CTP10654,1,"Z.I. LUZAIS A43",45.655745,5.101012,,1,,Europe/Paris,,O38, +O38:SA:CTP10659,1,"LE BERGERON",45.658496,5.172594,,1,,Europe/Paris,,O38, +O38:SA:CTP10661,1,"CAFE GIROUD",45.654012,5.203029,,1,,Europe/Paris,,O38, +O38:SA:CTP10663,1,"CORBEYSSIEU",45.638956,5.200287,,1,,Europe/Paris,,O38, +O38:SA:CTP10665,1,"LES QUATRE VIES",45.65484,5.17797,,1,,Europe/Paris,,O38, +O38:SA:CTP10668,1,"LYCEE PHILIBERT DELORME",45.622734,5.218219,,1,,Europe/Paris,,O38, +O38:SA:CTP10671,1,"MASSONAS",45.652624,5.198769,,1,,Europe/Paris,,O38, +O38:SA:CTP10673,1,"FOUILLOUZAN",45.650043,5.192312,,1,,Europe/Paris,,O38, +O38:SA:CTP10676,1,"COLLEGE ROBERT DOISNEAU",45.620817,5.208662,,1,,Europe/Paris,,O38, +O38:SA:CTP10678,1,"LE VILLAGE",45.648578,5.184165,,1,,Europe/Paris,,O38, +O38:SA:CTP1068,1,"LES BRETS",45.015759,5.658632,,1,,Europe/Paris,,O38, +O38:SA:CTP10685,1,"PARC TECHNOLOGIQUE OUEST",45.62437,5.162764,,1,,Europe/Paris,,O38, +O38:SA:CTP10690,1,"IUT - TRIFORIUM",45.621041,5.219817,,1,,Europe/Paris,,O38, +O38:SA:CTP10698,1,"COLLEGE FRANCOIS TRUFFAUT",45.622596,5.225015,,1,,Europe/Paris,,O38, +O38:SA:CTP1070,1,"LE VILLAGE",45.009552,5.700193,,1,,Europe/Paris,,O38, +O38:SA:CTP10704,1,"PIERRE LOUVE",45.613132,5.242005,,1,,Europe/Paris,,O38, +O38:SA:CTP10711,1,"LE VILLAGE",45.622933,5.232099,,1,,Europe/Paris,,O38, +O38:SA:CTP10714,1,"CENTRE COMMERCIAL",45.614959,5.225204,,1,,Europe/Paris,,O38, +O38:SA:CTP10717,1,"LES ALEXANDRES",45.646508,5.237528,,1,,Europe/Paris,,O38, +O38:SA:CTP1072,1,"LE MOULIN",45.015111,5.704426,,1,,Europe/Paris,,O38, +O38:SA:CTP10720,1,"COLLEGE CHAMPFLEURI",45.612085,5.26453,,1,,Europe/Paris,,O38, +O38:SA:CTP10723,1,"LE GIRERD",45.642683,5.23262,,1,,Europe/Paris,,O38, +O38:SA:CTP10725,1,"CHAUDENOUD-RD.18F",45.652114,5.265437,,1,,Europe/Paris,,O38, +O38:SA:CTP10727,1,"LA GARE",45.625149,5.285808,,1,,Europe/Paris,,O38, +O38:SA:CTP10729,1,"LA CHANAS",45.655745,5.272576,,1,,Europe/Paris,,O38, +O38:SA:CTP10731,1,"MESSENAS",45.650064,5.251108,,1,,Europe/Paris,,O38, +O38:SA:CTP10733,1,"FERMES",45.647875,5.2257,,1,,Europe/Paris,,O38, +O38:SA:CTP10735,1,"LE CHATEAU",45.645918,5.234377,,1,,Europe/Paris,,O38, +O38:SA:CTP10737,1,"LA BONNARDIERE",45.651646,5.261213,,1,,Europe/Paris,,O38, +O38:SA:CTP10739,1,"LE LICHOUD",45.637637,5.239972,,1,,Europe/Paris,,O38, +O38:SA:CTP1074,1,"LES PAUTTATS",45.011419,5.70157,,1,,Europe/Paris,,O38, +O38:SA:CTP10742,1,"CFA-BTP",45.612617,5.266078,,1,,Europe/Paris,,O38, +O38:SA:CTP10744,1,"LAVAL",45.621459,5.352833,,1,,Europe/Paris,,O38, +O38:SA:CTP10747,1,"EGLISE",45.627526,5.308448,,1,,Europe/Paris,,O38, +O38:SA:CTP10749,1,"LOT.LES BARRIERES",45.639692,5.355068,,1,,Europe/Paris,,O38, +O38:SA:CTP10751,1,"LES HAIES",45.634207,5.318842,,1,,Europe/Paris,,O38, +O38:SA:CTP10753,1,"ZONE D'ACTIVITE",45.632928,5.298248,,1,,Europe/Paris,,O38, +O38:SA:CTP10758,1,"LES MONTEES",45.653071,5.357396,,1,,Europe/Paris,,O38, +O38:SA:CTP1076,1,"ST PIERRE-EGLISE",45.028353,5.705947,,1,,Europe/Paris,,O38, +O38:SA:CTP10760,1,"LA GOUTELLE",45.653397,5.346527,,1,,Europe/Paris,,O38, +O38:SA:CTP10762,1,"VERSIN RTE RIVIER",45.640932,5.343158,,1,,Europe/Paris,,O38, +O38:SA:CTP10766,1,"LA VERCHERE",45.623527,5.326524,,1,,Europe/Paris,,O38, +O38:SA:CTP10770,1,"LA GRANDE CHANAS",45.643392,5.326604,,1,,Europe/Paris,,O38, +O38:SA:CTP10773,1,"FLOSAILLE",45.645322,5.301196,,1,,Europe/Paris,,O38, +O38:SA:CTP10775,1,"VERSIN",45.642186,5.337451,,1,,Europe/Paris,,O38, +O38:SA:CTP10777,1,"LE CLAIR",45.644284,5.313633,,1,,Europe/Paris,,O38, +O38:SA:CTP1078,1,"PRE DU BIL",45.024611,5.706499,,1,,Europe/Paris,,O38, +O38:SA:CTP10783,1,"DEMPTEZIEU PLACE",45.617607,5.323654,,1,,Europe/Paris,,O38, +O38:SA:CTP10787,1,"LA PLACE",45.627035,5.310881,,1,,Europe/Paris,,O38, +O38:SA:CTP10788,1,"LA RIVIERE",45.627137,5.305184,,1,,Europe/Paris,,O38, +O38:SA:CTP10789,1,"ST MARTIN LOTISSEMENT",45.640596,5.298331,,1,,Europe/Paris,,O38, +O38:SA:CTP10792,1,"GRANDE CHARRIERE",45.627293,5.320634,,1,,Europe/Paris,,O38, +O38:SA:CTP10793,1,"LE FOULU",45.639778,5.296625,,1,,Europe/Paris,,O38, +O38:SA:CTP10795,1,"BERTHIER LAVOIR",45.624931,5.315848,,1,,Europe/Paris,,O38, +O38:SA:CTP10797,1,"LE PETIT BOIS",45.610544,5.340246,,1,,Europe/Paris,,O38, +O38:SA:CTP1080,1,"LE SERF DE VIF",45.026723,5.662087,,1,,Europe/Paris,,O38, +O38:SA:CTP10800,1,"CHAPEZE ECOLE",45.613857,5.334608,,1,,Europe/Paris,,O38, +O38:SA:CTP10803,1,"LE MOLLARD",45.615578,5.318968,,1,,Europe/Paris,,O38, +O38:SA:CTP10806,1,"LES TERRES JOLIES",45.615824,5.349261,,1,,Europe/Paris,,O38, +O38:SA:CTP10808,1,"LE RIVIER",45.632614,5.341657,,1,,Europe/Paris,,O38, +O38:SA:CTP10810,1,"COLLEGE DE SAINT-CHEF",45.641427,5.357745,,1,,Europe/Paris,,O38, +O38:SA:CTP10812,1,"FUYSSIEUX",45.612932,5.413634,,1,,Europe/Paris,,O38, +O38:SA:CTP10814,1,"MOULIN VIEUX",45.616174,5.37703,,1,,Europe/Paris,,O38, +O38:SA:CTP10816,1,"I.M.E",45.63353,5.363842,,1,,Europe/Paris,,O38, +O38:SA:CTP10818,1,"JAVELARD",45.63423,5.358275,,1,,Europe/Paris,,O38, +O38:SA:CTP1082,1,"GIRARDIERE",45.021139,5.660881,,1,,Europe/Paris,,O38, +O38:SA:CTP10820,1,"TRIEUX CROISEMENT",45.652924,5.36053,,1,,Europe/Paris,,O38, +O38:SA:CTP10824,1,"LE MUNARD",45.632449,5.424526,,1,,Europe/Paris,,O38, +O38:SA:CTP10826,1,"LA PLACE",45.613195,5.391049,,1,,Europe/Paris,,O38, +O38:SA:CTP10828,1,"CHATEAU DE MONTCARRA",45.618475,5.380933,,1,,Europe/Paris,,O38, +O38:SA:CTP10830,1,"LE ROYOLET",45.613735,5.403769,,1,,Europe/Paris,,O38, +O38:SA:CTP10832,1,"LE CHOULIN",45.649963,5.381973,,1,,Europe/Paris,,O38, +O38:SA:CTP10834,1,"ECOLE D'ARCISSE",45.638725,5.383707,,1,,Europe/Paris,,O38, +O38:SA:CTP10836,1,"LES MOLES LOT.",45.63908,5.361819,,1,,Europe/Paris,,O38, +O38:SA:CTP10838,1,"CRUCILLEUX BOURG",45.648339,5.394569,,1,,Europe/Paris,,O38, +O38:SA:CTP1084,1,"ALLEE DU POYET",45.030983,5.664106,,1,,Europe/Paris,,O38, +O38:SA:CTP10840,1,"CHATEAU ROJON",45.651867,5.373534,,1,,Europe/Paris,,O38, +O38:SA:CTP10844,1,"LES AYES",45.640256,5.414503,,1,,Europe/Paris,,O38, +O38:SA:CTP10846,1,"OLOUISE LAVOIR",45.650687,5.419918,,1,,Europe/Paris,,O38, +O38:SA:CTP10848,1,"ECOLES DU BOURG",45.63347,5.367381,,1,,Europe/Paris,,O38, +O38:SA:CTP10850,1,"CRUCILLEUX",45.64477,5.398221,,1,,Europe/Paris,,O38, +O38:SA:CTP10852,1,"CHATEAU LE MARCHIL",45.632005,5.373603,,1,,Europe/Paris,,O38, +O38:SA:CTP10854,1,"CRUCILLEUX RD.19",45.64284,5.401237,,1,,Europe/Paris,,O38, +O38:SA:CTP10856,1,"LOT.BONNE GAGNE",45.631445,5.361146,,1,,Europe/Paris,,O38, +O38:SA:CTP10858,1,"LA BIOUSSE",45.627274,5.37722,,1,,Europe/Paris,,O38, +O38:SA:CTP1086,1,"LES ALLARDS",45.027473,5.784346,,1,,Europe/Paris,,O38, +O38:SA:CTP10860,1,"CRUCILLEUX CROIX",45.643714,5.388438,,1,,Europe/Paris,,O38, +O38:SA:CTP10862,1,"LA PLACE",45.627541,5.424043,,1,,Europe/Paris,,O38, +O38:SA:CTP10866,1,"ROUTE LE PUY",45.60816,5.454083,,1,,Europe/Paris,,O38, +O38:SA:CTP10868,1,"LA SARDINIERE",45.616257,5.451113,,1,,Europe/Paris,,O38, +O38:SA:CTP10870,1,"LE LANCELOT",45.607754,5.490133,,1,,Europe/Paris,,O38, +O38:SA:CTP10872,1,"LA PETITE FRETTE",45.610636,5.471492,,1,,Europe/Paris,,O38, +O38:SA:CTP10874,1,"LE MICHOUD",45.618419,5.487247,,1,,Europe/Paris,,O38, +O38:SA:CTP10876,1,"MORTHELAYZE",45.615305,5.464496,,1,,Europe/Paris,,O38, +O38:SA:CTP10878,1,"LES 3 TERREMENTS",45.614638,5.432267,,1,,Europe/Paris,,O38, +O38:SA:CTP1088,1,"ECOLE PRIMAIRE",45.025754,5.773042,,1,,Europe/Paris,,O38, +O38:SA:CTP10880,1,"LE BUISSON",45.609901,5.480937,,1,,Europe/Paris,,O38, +O38:SA:CTP10882,1,"TROIS TERREMENTS",45.614863,5.432187,,1,,Europe/Paris,,O38, +O38:SA:CTP10886,1,"BORDENOUD ECOLE",45.615055,5.461883,,1,,Europe/Paris,,O38, +O38:SA:CTP10888,1,"ANGLOUR",45.642869,5.436816,,1,,Europe/Paris,,O38, +O38:SA:CTP10890,1,"LA CHAPITE",45.615956,5.456812,,1,,Europe/Paris,,O38, +O38:SA:CTP10892,1,"ECOLE",45.635405,5.475703,,1,,Europe/Paris,,O38, +O38:SA:CTP10894,1,"LE BRASSARD",45.629347,5.485378,,1,,Europe/Paris,,O38, +O38:SA:CTP10897,1,"LE PILLARDIN",45.649756,5.483918,,1,,Europe/Paris,,O38, +O38:SA:CTP10898,1,"LE BAS",45.638229,5.478672,,1,,Europe/Paris,,O38, +O38:SA:CTP1090,1,"LE VILLAGE",45.025593,5.772848,,1,,Europe/Paris,,O38, +O38:SA:CTP10901,1,"BRAILLES",45.645369,5.44423,,1,,Europe/Paris,,O38, +O38:SA:CTP10902,1,"LES BLANCHETTES",45.628359,5.435542,,1,,Europe/Paris,,O38, +O38:SA:CTP10904,1,"SUZEL STADE",45.634988,5.430824,,1,,Europe/Paris,,O38, +O38:SA:CTP10906,1,"PLACE",45.630781,5.453558,,1,,Europe/Paris,,O38, +O38:SA:CTP10908,1,"CENTRE VILLAGE",45.636315,5.475805,,1,,Europe/Paris,,O38, +O38:SA:CTP10910,1,"SALERIEU",45.607884,5.447706,,1,,Europe/Paris,,O38, +O38:SA:CTP10912,1,"LA FRETTE - LE MONT",45.624847,5.475966,,1,,Europe/Paris,,O38, +O38:SA:CTP10914,1,"LA FRETTE - LA CROIX",45.619641,5.470749,,1,,Europe/Paris,,O38, +O38:SA:CTP10918,1,"LES GRAVANNES",45.65046,5.479044,,1,,Europe/Paris,,O38, +O38:SA:CTP1092,1,"LES JOSSERANDS",45.018111,5.786038,,1,,Europe/Paris,,O38, +O38:SA:CTP10920,1,"CURTIN RN.75",45.646762,5.491308,,1,,Europe/Paris,,O38, +O38:SA:CTP10922,1,"LA PLAINE RD.19",45.648235,5.489106,,1,,Europe/Paris,,O38, +O38:SA:CTP10924,1,"HAUT SALERIEU",45.608941,5.452472,,1,,Europe/Paris,,O38, +O38:SA:CTP10926,1,"VALAGNON",45.640408,5.473965,,1,,Europe/Paris,,O38, +O38:SA:CTP10929,1,"FORET RIVOIRE VIEILLE",45.61336,5.464412,,1,,Europe/Paris,,O38, +O38:SA:CTP10930,1,"CURTIN PLACE",45.643598,5.490353,,1,,Europe/Paris,,O38, +O38:SA:CTP10932,1,"CHARRAY ETANGS",45.647027,5.439769,,1,,Europe/Paris,,O38, +O38:SA:CTP10934,1,"SALLE DES FETES",45.628261,5.425682,,1,,Europe/Paris,,O38, +O38:SA:CTP10937,1,"LA FRETTE",45.616754,5.480646,,1,,Europe/Paris,,O38, +O38:SA:CTP10938,1,"LE PERTICOZ-LA LONGERAIE",45.639209,5.554651,,1,,Europe/Paris,,O38, +O38:SA:CTP1094,1,"LA BERGOGNE",45.004426,5.782078,,1,,Europe/Paris,,O38, +O38:SA:CTP10940,1,"ROUTE DE CHASSIN",45.611053,5.532305,,1,,Europe/Paris,,O38, +O38:SA:CTP10942,1,"LE FOURNIER",45.62512,5.504006,,1,,Europe/Paris,,O38, +O38:SA:CTP10946,1,"COUVERIER",45.625044,5.498542,,1,,Europe/Paris,,O38, +O38:SA:CTP10948,1,"LE DRU",45.621273,5.497785,,1,,Europe/Paris,,O38, +O38:SA:CTP10950,1,"LE VILLARD-MAISON MERGOUD",45.643864,5.545117,,1,,Europe/Paris,,O38, +O38:SA:CTP10952,1,"LE SAINT MARTIN",45.611424,5.528454,,1,,Europe/Paris,,O38, +O38:SA:CTP10953,1,"MAIRIE",45.607752,5.544569,,1,,Europe/Paris,,O38, +O38:SA:CTP10955,1,"ECOLE PRIV.LES FORGES",45.609631,5.493956,,1,,Europe/Paris,,O38, +O38:SA:CTP10957,1,"EGLISE",45.611268,5.498429,,1,,Europe/Paris,,O38, +O38:SA:CTP1096,1,"PETICHET",44.997457,5.773083,,1,,Europe/Paris,,O38, +O38:SA:CTP10960,1,"LE CLOS",45.645578,5.539094,,1,,Europe/Paris,,O38, +O38:SA:CTP10966,1,"LES BRUYERES",45.608365,5.506181,,1,,Europe/Paris,,O38, +O38:SA:CTP10967,1,"LE CHARRON",45.601547,5.555238,,1,,Europe/Paris,,O38, +O38:SA:CTP10972,1,"ECOLES",45.611867,5.497708,,1,,Europe/Paris,,O38, +O38:SA:CTP10973,1,"BOIS VION-ABRIBUS",45.609785,5.537109,,1,,Europe/Paris,,O38, +O38:SA:CTP10975,1,"LE MALEIN",45.608542,5.533646,,1,,Europe/Paris,,O38, +O38:SA:CTP10977,1,"BAS CORBELIN",45.610262,5.541387,,1,,Europe/Paris,,O38, +O38:SA:CTP10979,1,"LA GOYARDIERE",45.6063,5.557925,,1,,Europe/Paris,,O38, +O38:SA:CTP1098,1,"PIED DU LAC",45.024187,5.781611,,1,,Europe/Paris,,O38, +O38:SA:CTP10983,1,"ECOLE PRIVEE",45.609066,5.543613,,1,,Europe/Paris,,O38, +O38:SA:CTP10984,1,"ECOLES PUBLIQUES",45.606676,5.545991,,1,,Europe/Paris,,O38, +O38:SA:CTP10985,1,"CHAMP MARS",45.614077,5.500349,,1,,Europe/Paris,,O38, +O38:SA:CTP10989,1,"RABATABOEUF-RD143",45.617939,5.49431,,1,,Europe/Paris,,O38, +O38:SA:CTP10991,1,"LE PETIT VEYRINS",45.630123,5.533322,,1,,Europe/Paris,,O38, +O38:SA:CTP10993,1,"LES AVENIERES GARE",45.634229,5.553061,,1,,Europe/Paris,,O38, +O38:SA:CTP10999,1,"VEYRINS GARE",45.625939,5.539979,,1,,Europe/Paris,,O38, +O38:SA:CTP1100,1,"LE LAC",45.022114,5.774128,,1,,Europe/Paris,,O38, +O38:SA:CTP11001,1,"LE PERIER",45.636693,5.517932,,1,,Europe/Paris,,O38, +O38:SA:CTP11004,1,"THUELLIN-EGLISE",45.639002,5.508158,,1,,Europe/Paris,,O38, +O38:SA:CTP11005,1,"ECOLE DE MUSIQUE",45.639718,5.508013,,1,,Europe/Paris,,O38, +O38:SA:CTP11007,1,"CURTIN FERME",45.642322,5.49505,,1,,Europe/Paris,,O38, +O38:SA:CTP11009,1,"LE BOIS-MT MAURIN",45.621602,5.522518,,1,,Europe/Paris,,O38, +O38:SA:CTP11014,1,"BOIS DE THUELLIN",45.633431,5.506554,,1,,Europe/Paris,,O38, +O38:SA:CTP11015,1,"VEYRINS MAIRIE",45.626133,5.538691,,1,,Europe/Paris,,O38, +O38:SA:CTP11019,1,"HAMEAU LE MOLARD",45.626423,5.53024,,1,,Europe/Paris,,O38, +O38:SA:CTP1102,1,"LES PRATS",45.021007,5.767213,,1,,Europe/Paris,,O38, +O38:SA:CTP11029,1,"USINE JAMBON D'AOSTE",45.601676,5.608837,,1,,Europe/Paris,,O38, +O38:SA:CTP11032,1,"ECOLE LES CHAMPAGNES",45.598647,5.627395,,1,,Europe/Paris,,O38, +O38:SA:CTP11033,1,"LES CHAMPAGNES",45.603129,5.621049,,1,,Europe/Paris,,O38, +O38:SA:CTP11037,1,"LE VARD",45.605348,5.565963,,1,,Europe/Paris,,O38, +O38:SA:CTP11038,1,"LA CHEVRE",45.604085,5.568698,,1,,Europe/Paris,,O38, +O38:SA:CTP1104,1,"NOTRE DAME DE VAULX",44.986163,5.748376,,1,,Europe/Paris,,O38, +O38:SA:CTP11050,1,"COLLEGE ARC EN CIERS",45.633212,5.574679,,1,,Europe/Paris,,O38, +O38:SA:CTP11056,1,"LES AVENIERES STADE",45.631501,5.572493,,1,,Europe/Paris,,O38, +O38:SA:CTP11058,1,"Z.A. DU BERT",45.626822,5.582779,,1,,Europe/Paris,,O38, +O38:SA:CTP1106,1,"ECOLE",44.986651,5.748822,,1,,Europe/Paris,,O38, +O38:SA:CTP11061,1,"LE CHAMP DE MARS",45.633608,5.561539,,1,,Europe/Paris,,O38, +O38:SA:CTP11062,1,"ST DIDIER-LE PONT",45.618865,5.610758,,1,,Europe/Paris,,O38, +O38:SA:CTP11064,1,"LA JONNAZ",45.602276,5.568531,,1,,Europe/Paris,,O38, +O38:SA:CTP11067,1,"LE RUBAT",45.630495,5.57267,,1,,Europe/Paris,,O38, +O38:SA:CTP11069,1,"ST GENIX-PLACE DES ECOLES",45.60135,5.630574,,1,,Europe/Paris,,O38, +O38:SA:CTP11075,1,"LES MEURIERES",45.67947,4.949215,,1,,Europe/Paris,,O38, +O38:SA:CTP11077,1,"LA POSTE",45.670186,4.950081,,1,,Europe/Paris,,O38, +O38:SA:CTP1108,1,"LES PELLISSIERS",45.01031,5.761846,,1,,Europe/Paris,,O38, +O38:SA:CTP11083,1,"CITE BERLIET",45.710849,4.902311,,1,,Europe/Paris,,O38, +O38:SA:CTP11085,1,"SALENGRO",45.690519,4.936612,,1,,Europe/Paris,,O38, +O38:SA:CTP11087,1,"PLACE DU LAC",45.66472,5.078127,,1,,Europe/Paris,,O38, +O38:SA:CTP11089,1,"RD 1006",45.667875,5.086611,,1,,Europe/Paris,,O38, +O38:SA:CTP11094,1,"LE CHAFFARD",45.668465,5.143203,,1,,Europe/Paris,,O38, +O38:SA:CTP11098,1,"LA SERVE",45.688249,5.117011,,1,,Europe/Paris,,O38, +O38:SA:CTP1110,1,"LES ROURES",44.997996,5.752644,,1,,Europe/Paris,,O38, +O38:SA:CTP11101,1,"BAS BONCE FONTAINE",45.685084,5.116261,,1,,Europe/Paris,,O38, +O38:SA:CTP11110,1,"LES ETRAITS",45.693308,5.134697,,1,,Europe/Paris,,O38, +O38:SA:CTP11116,1,"HAUT DE BONCE",45.691062,5.112809,,1,,Europe/Paris,,O38, +O38:SA:CTP11119,1,"LE CHAFFARD-STAT.SERVICE",45.667449,5.142161,,1,,Europe/Paris,,O38, +O38:SA:CTP1112,1,"ECOLE",45.01348,5.759039,,1,,Europe/Paris,,O38, +O38:SA:CTP11122,1,"POMPIERS",45.689911,5.12907,,1,,Europe/Paris,,O38, +O38:SA:CTP11126,1,"L'EPERON",45.6982,5.133126,,1,,Europe/Paris,,O38, +O38:SA:CTP11129,1,"PLACE",45.693606,5.127266,,1,,Europe/Paris,,O38, +O38:SA:CTP11137,1,"CORIAU",45.701604,5.200575,,1,,Europe/Paris,,O38, +O38:SA:CTP11139,1,"LE STADE",45.682889,5.168182,,1,,Europe/Paris,,O38, +O38:SA:CTP1114,1,"LES PERRINS",44.999784,5.750659,,1,,Europe/Paris,,O38, +O38:SA:CTP11141,1,"POISIEU 4 VOIES",45.700882,5.207585,,1,,Europe/Paris,,O38, +O38:SA:CTP11143,1,"BOIRIEU FERME",45.691193,5.206546,,1,,Europe/Paris,,O38, +O38:SA:CTP11145,1,"PLACE",45.694804,5.207795,,1,,Europe/Paris,,O38, +O38:SA:CTP11147,1,"POISIEU FERME",45.700378,5.215335,,1,,Europe/Paris,,O38, +O38:SA:CTP11151,1,"CENTRE",45.679621,5.167386,,1,,Europe/Paris,,O38, +O38:SA:CTP11153,1,"LE BUCLET",45.696341,5.163966,,1,,Europe/Paris,,O38, +O38:SA:CTP11155,1,"MIANGES",45.698722,5.171298,,1,,Europe/Paris,,O38, +O38:SA:CTP11157,1,"GONAS",45.661603,5.167316,,1,,Europe/Paris,,O38, +O38:SA:CTP11159,1,"LA PLACE",45.679201,5.206173,,1,,Europe/Paris,,O38, +O38:SA:CTP1116,1,"LES THENEAUX",44.982989,5.783808,,1,,Europe/Paris,,O38, +O38:SA:CTP11161,1,"ECOLE",45.677616,5.204298,,1,,Europe/Paris,,O38, +O38:SA:CTP11163,1,"PLACE",45.680616,5.219129,,1,,Europe/Paris,,O38, +O38:SA:CTP11165,1,"CHEMIN DES VIGNOBLES",45.689583,5.164035,,1,,Europe/Paris,,O38, +O38:SA:CTP11171,1,"MORAS",45.687835,5.257715,,1,,Europe/Paris,,O38, +O38:SA:CTP11173,1,"FRETIGNIER",45.67924,5.256002,,1,,Europe/Paris,,O38, +O38:SA:CTP11175,1,"CRIZIEU",45.693058,5.264987,,1,,Europe/Paris,,O38, +O38:SA:CTP11177,1,"LAVOIR LA MIRAIL",45.675005,5.29247,,1,,Europe/Paris,,O38, +O38:SA:CTP11179,1,"LA GARE",45.685206,5.288125,,1,,Europe/Paris,,O38, +O38:SA:CTP1118,1,"CROIX DES THENEAUX",44.982226,5.771687,,1,,Europe/Paris,,O38, +O38:SA:CTP11181,1,"LA PLACE",45.671756,5.29126,,1,,Europe/Paris,,O38, +O38:SA:CTP11183,1,"RTE SAINT HILAIRE",45.660962,5.282525,,1,,Europe/Paris,,O38, +O38:SA:CTP11185,1,"LE GRIOT",45.65832,5.276793,,1,,Europe/Paris,,O38, +O38:SA:CTP11187,1,"ECOLE",45.659382,5.277004,,1,,Europe/Paris,,O38, +O38:SA:CTP11188,1,"ECOLE DU VILLAGE",45.672668,5.290144,,1,,Europe/Paris,,O38, +O38:SA:CTP11190,1,"LE PETIT MEYZIEU",45.688035,5.236683,,1,,Europe/Paris,,O38, +O38:SA:CTP11195,1,"FERMES",45.668137,5.348177,,1,,Europe/Paris,,O38, +O38:SA:CTP11197,1,"ALLEE DU BOIS",45.668451,5.339263,,1,,Europe/Paris,,O38, +O38:SA:CTP1120,1,"LE VILLARET",45.004977,5.752604,,1,,Europe/Paris,,O38, +O38:SA:CTP11201,1,"CIMETIERE",45.691291,5.323431,,1,,Europe/Paris,,O38, +O38:SA:CTP11203,1,"COUVALOUP FONTAINE",45.695729,5.360687,,1,,Europe/Paris,,O38, +O38:SA:CTP11207,1,"CHAMONT TRANSFORMATEUR",45.6593,5.327615,,1,,Europe/Paris,,O38, +O38:SA:CTP11209,1,"CHAMONT ECOLE",45.654789,5.340654,,1,,Europe/Paris,,O38, +O38:SA:CTP11211,1,"PLACE",45.667251,5.352001,,1,,Europe/Paris,,O38, +O38:SA:CTP11213,1,"COZANCE CROIX",45.699833,5.327897,,1,,Europe/Paris,,O38, +O38:SA:CTP11215,1,"MONTAGNIEU FOUR",45.69709,5.352346,,1,,Europe/Paris,,O38, +O38:SA:CTP11217,1,"SERRIERES PLATANES",45.690147,5.339878,,1,,Europe/Paris,,O38, +O38:SA:CTP1122,1,"LES GONTHEAUMES",44.993521,5.769294,,1,,Europe/Paris,,O38, +O38:SA:CTP11221,1,"ROUTE DE CREMIEU",45.684969,5.314967,,1,,Europe/Paris,,O38, +O38:SA:CTP11223,1,"LA PLACE",45.686988,5.31955,,1,,Europe/Paris,,O38, +O38:SA:CTP11225,1,"LE RONDEAU",45.661291,5.323896,,1,,Europe/Paris,,O38, +O38:SA:CTP11227,1,"ECOLE",45.667586,5.360076,,1,,Europe/Paris,,O38, +O38:SA:CTP11229,1,"LE PONTET",45.668855,5.365092,,1,,Europe/Paris,,O38, +O38:SA:CTP11231,1,"LE DOUVENT",45.692857,5.400976,,1,,Europe/Paris,,O38, +O38:SA:CTP11233,1,"MAISON YNNA",45.658728,5.391844,,1,,Europe/Paris,,O38, +O38:SA:CTP11235,1,"OLOUISE ECOLE",45.656572,5.402493,,1,,Europe/Paris,,O38, +O38:SA:CTP11237,1,"OLOUISE SEZIN",45.656118,5.406515,,1,,Europe/Paris,,O38, +O38:SA:CTP11239,1,"EGLISE",45.671687,5.41067,,1,,Europe/Paris,,O38, +O38:SA:CTP1124,1,"CENTRE",45.002682,5.796175,,1,,Europe/Paris,,O38, +O38:SA:CTP11241,1,"TRANSPORT DUCARROZ",45.691543,5.375863,,1,,Europe/Paris,,O38, +O38:SA:CTP11245,1,"LA MARGOTONNE",45.693404,5.373648,,1,,Europe/Paris,,O38, +O38:SA:CTP11249,1,"OSSEE CARREFOUR",45.675289,5.418992,,1,,Europe/Paris,,O38, +O38:SA:CTP11251,1,"LES FERRANDIERES",45.680284,5.392695,,1,,Europe/Paris,,O38, +O38:SA:CTP11253,1,"CHASSINS",45.692268,5.409465,,1,,Europe/Paris,,O38, +O38:SA:CTP11255,1,"SABLONNIERES GARE",45.690103,5.375099,,1,,Europe/Paris,,O38, +O38:SA:CTP11257,1,"SABLONNIERES USINES",45.690099,5.368597,,1,,Europe/Paris,,O38, +O38:SA:CTP1126,1,"VILLAGE",44.982782,5.887342,,1,,Europe/Paris,,O38, +O38:SA:CTP11261,1,"LE LAVOIR",45.694479,5.365628,,1,,Europe/Paris,,O38, +O38:SA:CTP11264,1,"LES SABLES",45.661005,5.38299,,1,,Europe/Paris,,O38, +O38:SA:CTP11266,1,"LE RAPILLARD",45.665842,5.372419,,1,,Europe/Paris,,O38, +O38:SA:CTP11268,1,"MONTROND",45.66248,5.377609,,1,,Europe/Paris,,O38, +O38:SA:CTP11270,1,"HOPITAL",45.679715,5.463008,,1,,Europe/Paris,,O38, +O38:SA:CTP11272,1,"LA GARE",45.671974,5.470709,,1,,Europe/Paris,,O38, +O38:SA:CTP11276,1,"LYCEE CAMILLE COROT",45.674621,5.47713,,1,,Europe/Paris,,O38, +O38:SA:CTP11278,1,"PASSINS VILLAGE",45.687712,5.43157,,1,,Europe/Paris,,O38, +O38:SA:CTP1128,1,"LES MAZOIRS",44.99074,5.883439,,1,,Europe/Paris,,O38, +O38:SA:CTP11280,1,"CREVIERES ABRIBUS",45.696781,5.439206,,1,,Europe/Paris,,O38, +O38:SA:CTP11282,1,"SUPERMARCHE",45.684185,5.449841,,1,,Europe/Paris,,O38, +O38:SA:CTP11284,1,"PASSINS ECOLE",45.686754,5.429408,,1,,Europe/Paris,,O38, +O38:SA:CTP11287,1,"LE MARTERAY CHATEAU",45.667783,5.430583,,1,,Europe/Paris,,O38, +O38:SA:CTP11288,1,"COLLEGE F-A.RAVIER",45.678849,5.465976,,1,,Europe/Paris,,O38, +O38:SA:CTP11291,1,"THUILE",45.689791,5.477056,,1,,Europe/Paris,,O38, +O38:SA:CTP11292,1,"L'EPINETTE",45.652687,5.463472,,1,,Europe/Paris,,O38, +O38:SA:CTP11294,1,"CENTRE VILLE",45.675559,5.471656,,1,,Europe/Paris,,O38, +O38:SA:CTP11296,1,"LE PLANOT",45.694053,5.436277,,1,,Europe/Paris,,O38, +O38:SA:CTP1130,1,"MOULIN VIEUX",45.003793,5.880129,,1,,Europe/Paris,,O38, +O38:SA:CTP11300,1,"BEAUTAZ",45.664601,5.471258,,1,,Europe/Paris,,O38, +O38:SA:CTP11302,1,"LE STADE",45.657703,5.472243,,1,,Europe/Paris,,O38, +O38:SA:CTP11304,1,"CHARRAY",45.65339,5.451118,,1,,Europe/Paris,,O38, +O38:SA:CTP11306,1,"ECOLE CONDORCET",45.651425,5.473249,,1,,Europe/Paris,,O38, +O38:SA:CTP11308,1,"LE VARSIN",45.690904,5.486349,,1,,Europe/Paris,,O38, +O38:SA:CTP11311,1,"VEZERONCE PLACE",45.651121,5.47131,,1,,Europe/Paris,,O38, +O38:SA:CTP11314,1,"LE CHOLLARD",45.659775,5.472282,,1,,Europe/Paris,,O38, +O38:SA:CTP11317,1,"PLACE",45.671484,5.5241,,1,,Europe/Paris,,O38, +O38:SA:CTP11319,1,"LE MOLLARD",45.670166,5.505162,,1,,Europe/Paris,,O38, +O38:SA:CTP11323,1,"CHATEAU",45.696341,5.521984,,1,,Europe/Paris,,O38, +O38:SA:CTP11325,1,"MAIRIE",45.694521,5.528654,,1,,Europe/Paris,,O38, +O38:SA:CTP11327,1,"BRIEUX",45.692456,5.527684,,1,,Europe/Paris,,O38, +O38:SA:CTP11329,1,"BUVIN ECOLE",45.653134,5.545489,,1,,Europe/Paris,,O38, +O38:SA:CTP1133,1,"STATION LA BLACHE",45.023742,5.863089,,1,,Europe/Paris,,O38, +O38:SA:CTP11331,1,"LE SABLONNET",45.653177,5.556392,,1,,Europe/Paris,,O38, +O38:SA:CTP11333,1,"LE POLOSSAT",45.657247,5.533389,,1,,Europe/Paris,,O38, +O38:SA:CTP11335,1,"COLLONGE MAISON BOISSON",45.651705,5.525922,,1,,Europe/Paris,,O38, +O38:SA:CTP11339,1,"PLACE",45.696749,5.50279,,1,,Europe/Paris,,O38, +O38:SA:CTP11341,1,"L'EGLISE",45.692869,5.501154,,1,,Europe/Paris,,O38, +O38:SA:CTP11349,1,"BACHUT MAIRIE DU 8e",45.737159,4.868512,,1,,Europe/Paris,,O38, +O38:SA:CTP11351,1,"PARILLY",45.719323,4.888111,,1,,Europe/Paris,,O38, +O38:SA:CTP11354,1,"GRANGE-ROUGE",45.732009,4.873509,,1,,Europe/Paris,,O38, +O38:SA:CTP11358,1,"GRANGE BLANCHE",45.743295,4.879022,,1,,Europe/Paris,,O38, +O38:SA:CTP1136,1,"CHABOTTE",45.01336,5.874738,,1,,Europe/Paris,,O38, +O38:SA:CTP11360,1,"MERMOZ-PINEL",45.730745,4.886711,,1,,Europe/Paris,,O38, +O38:SA:CTP11363,1,"MANUFACTURE MONTLUC (EST)",45.749276,4.860225,,1,,Europe/Paris,,O38, +O38:SA:CTP11371,1,"INSTIT. JDA AZIEU",45.735994,5.014881,,1,,Europe/Paris,,O38, +O38:SA:CTP11373,1,"LES BURLANCHERES",45.753163,5.118567,,1,,Europe/Paris,,O38, +O38:SA:CTP11379,1,"JET D'EAU",45.742065,5.156112,,1,,Europe/Paris,,O38, +O38:SA:CTP1138,1,"L'ALPE DU GRAND SERRE",45.024926,5.860906,,1,,Europe/Paris,,O38, +O38:SA:CTP11381,1,"CHAVAGNEUX ECOLE",45.727355,5.146987,,1,,Europe/Paris,,O38, +O38:SA:CTP11385,1,"CHAVAGNEUX CHAPELLE",45.727393,5.144969,,1,,Europe/Paris,,O38, +O38:SA:CTP11387,1,"TRANSFORMATEUR",45.749485,5.156134,,1,,Europe/Paris,,O38, +O38:SA:CTP11389,1,"LE PIARDAY",45.752976,5.14764,,1,,Europe/Paris,,O38, +O38:SA:CTP11391,1,"CHAVAGNEUX LES GRANDS CHAMPS",45.726339,5.150972,,1,,Europe/Paris,,O38, +O38:SA:CTP11393,1,"COLLEGE",45.745046,5.156118,,1,,Europe/Paris,,O38, +O38:SA:CTP11395,1,"CITE EDF",45.739305,5.157228,,1,,Europe/Paris,,O38, +O38:SA:CTP11397,1,"PLACE DE TASSIGNY",45.752541,5.111438,,1,,Europe/Paris,,O38, +O38:SA:CTP11399,1,"USINE PHOENIX",45.749772,5.166835,,1,,Europe/Paris,,O38, +O38:SA:CTP1140,1,"LE VILLARD",45.007596,5.875465,,1,,Europe/Paris,,O38, +O38:SA:CTP11403,1,"MAIRIE",45.750126,5.173718,,1,,Europe/Paris,,O38, +O38:SA:CTP11407,1,"CENTRE COMMERCIAL",45.740891,5.160181,,1,,Europe/Paris,,O38, +O38:SA:CTP11409,1,"ROUTE DE VIENNE",45.743554,5.167091,,1,,Europe/Paris,,O38, +O38:SA:CTP11411,1,"LE DAUPHIN",45.736341,5.162011,,1,,Europe/Paris,,O38, +O38:SA:CTP11415,1,"LES 4 BUISSONS",45.750164,5.187382,,1,,Europe/Paris,,O38, +O38:SA:CTP11417,1,"JAMEYZIEU CHAPELLE",45.716933,5.1673,,1,,Europe/Paris,,O38, +O38:SA:CTP11419,1,"GARAGE ROUDINSKI",45.741817,5.187253,,1,,Europe/Paris,,O38, +O38:SA:CTP1142,1,"LES BOSSES",44.984941,5.967577,,1,,Europe/Paris,,O38, +O38:SA:CTP11421,1,"PARKING COLLEGE",45.746016,5.176451,,1,,Europe/Paris,,O38, +O38:SA:CTP11425,1,"P.M.U.",45.744957,5.167544,,1,,Europe/Paris,,O38, +O38:SA:CTP11427,1,"BEPTENOUD PLACE",45.720073,5.224316,,1,,Europe/Paris,,O38, +O38:SA:CTP11429,1,"LE MARAIS LAVOIR",45.72352,5.218267,,1,,Europe/Paris,,O38, +O38:SA:CTP11431,1,"TRANSFORMATEUR",45.751709,5.195809,,1,,Europe/Paris,,O38, +O38:SA:CTP11433,1,"LE CHATEAU D'EAU",45.739193,5.180282,,1,,Europe/Paris,,O38, +O38:SA:CTP11435,1,"JAMEYZIEU CAFE",45.715565,5.161296,,1,,Europe/Paris,,O38, +O38:SA:CTP11437,1,"COLLEGE PH. COUSTEAU",45.744937,5.17686,,1,,Europe/Paris,,O38, +O38:SA:CTP11439,1,"MAIRIE",45.733771,5.186751,,1,,Europe/Paris,,O38, +O38:SA:CTP11441,1,"PLACE DU DAUPHINE",45.74837,5.184933,,1,,Europe/Paris,,O38, +O38:SA:CTP11445,1,"BARENS CH.LA COTE",45.742239,5.219579,,1,,Europe/Paris,,O38, +O38:SA:CTP11447,1,"LEAP PAUL CLAUDEL",45.724352,5.215923,,1,,Europe/Paris,,O38, +O38:SA:CTP11449,1,"LOT. LE CAPITOLE",45.72246,5.218082,,1,,Europe/Paris,,O38, +O38:SA:CTP11451,1,"BARENS ROUTIERS",45.746096,5.224383,,1,,Europe/Paris,,O38, +O38:SA:CTP11455,1,"BARENS CALVAIRE",45.737619,5.214147,,1,,Europe/Paris,,O38, +O38:SA:CTP11457,1,"BOULEVARD VERNA",45.749099,5.18317,,1,,Europe/Paris,,O38, +O38:SA:CTP11459,1,"MONTLOUVIER",45.718093,5.276162,,1,,Europe/Paris,,O38, +O38:SA:CTP1146,1,"LE SELLIER",44.990243,6.116888,,1,,Europe/Paris,,O38, +O38:SA:CTP11461,1,"PLACE DE LA CHAITE",45.724943,5.24842,,1,,Europe/Paris,,O38, +O38:SA:CTP11463,1,"COLLEGE LAMARTINE",45.724145,5.245532,,1,,Europe/Paris,,O38, +O38:SA:CTP11465,1,"LA LEVRATIERE",45.727118,5.238075,,1,,Europe/Paris,,O38, +O38:SA:CTP11467,1,"ROUTE DE PEYRIEU",45.71919,5.286921,,1,,Europe/Paris,,O38, +O38:SA:CTP11469,1,"ST JULIEN-RD.52",45.734895,5.288362,,1,,Europe/Paris,,O38, +O38:SA:CTP1147,1,"VENOSC VILLE",44.992844,6.116157,,1,,Europe/Paris,,O38, +O38:SA:CTP11471,1,"SALLE DES FETES",45.724106,5.252685,,1,,Europe/Paris,,O38, +O38:SA:CTP11475,1,"CHAMP PROFOND",45.734119,5.264423,,1,,Europe/Paris,,O38, +O38:SA:CTP11477,1,"CERTEAU",45.742072,5.24809,,1,,Europe/Paris,,O38, +O38:SA:CTP11480,1,"LES AREMES",45.70861,5.247766,,1,,Europe/Paris,,O38, +O38:SA:CTP11482,1,"BLIED ABRIBUS",45.71231,5.262757,,1,,Europe/Paris,,O38, +O38:SA:CTP11484,1,"MOIRIEU-CHAPELLE",45.710535,5.261204,,1,,Europe/Paris,,O38, +O38:SA:CTP11486,1,"LE RELUISANT",45.718995,5.243073,,1,,Europe/Paris,,O38, +O38:SA:CTP1149,1,"ECOLE DU BOURG - LE SELLIER",44.989525,6.115613,,1,,Europe/Paris,,O38, +O38:SA:CTP11490,1,"MOIRIEU-CHEMIN DES VIGNES",45.70984,5.259083,,1,,Europe/Paris,,O38, +O38:SA:CTP11491,1,"MOIRIEU-FOUR",45.708308,5.259109,,1,,Europe/Paris,,O38, +O38:SA:CTP11495,1,"CLAIR BOIS",45.738195,5.268865,,1,,Europe/Paris,,O38, +O38:SA:CTP11497,1,"ECOLES VILLEMOIRIEU",45.716428,5.237291,,1,,Europe/Paris,,O38, +O38:SA:CTP11499,1,"LE BOURG",45.712222,5.298211,,1,,Europe/Paris,,O38, +O38:SA:CTP11501,1,"SICCIEU LE BAS",45.740265,5.320778,,1,,Europe/Paris,,O38, +O38:SA:CTP11505,1,"LE MONUMENT",45.719241,5.294946,,1,,Europe/Paris,,O38, +O38:SA:CTP11507,1,"CARISIEU",45.718748,5.318935,,1,,Europe/Paris,,O38, +O38:SA:CTP11509,1,"PLACE",45.709897,5.349497,,1,,Europe/Paris,,O38, +O38:SA:CTP1151,1,"TELECABINE",44.987459,6.115654,,1,,Europe/Paris,,O38, +O38:SA:CTP11511,1,"GRAND COZANCE FOUR",45.703637,5.332302,,1,,Europe/Paris,,O38, +O38:SA:CTP11513,1,"SICCIEU PLACE",45.735452,5.316879,,1,,Europe/Paris,,O38, +O38:SA:CTP11515,1,"LE PERRAY",45.728552,5.318091,,1,,Europe/Paris,,O38, +O38:SA:CTP11517,1,"ECOLE",45.711255,5.350398,,1,,Europe/Paris,,O38, +O38:SA:CTP11519,1,"MONUMENT",45.72784,5.381435,,1,,Europe/Paris,,O38, +O38:SA:CTP11521,1,"CHANIZIEU - FONTAINE",45.737088,5.390613,,1,,Europe/Paris,,O38, +O38:SA:CTP11525,1,"FERME SAUBIN",45.704487,5.379652,,1,,Europe/Paris,,O38, +O38:SA:CTP11526,1,"TIRIEU ABRIBUS",45.708233,5.377445,,1,,Europe/Paris,,O38, +O38:SA:CTP11528,1,"ECOLE",45.729462,5.383529,,1,,Europe/Paris,,O38, +O38:SA:CTP11530,1,"LES CITES",45.72538,5.424473,,1,,Europe/Paris,,O38, +O38:SA:CTP11532,1,"ARANDON GARE",45.717376,5.423352,,1,,Europe/Paris,,O38, +O38:SA:CTP11534,1,"FOUR COREOL",45.729985,5.406109,,1,,Europe/Paris,,O38, +O38:SA:CTP11535,1,"TIRIEU LOTISSEMENT",45.702227,5.385563,,1,,Europe/Paris,,O38, +O38:SA:CTP11537,1,"LANCIN CABINE",45.727961,5.406606,,1,,Europe/Paris,,O38, +O38:SA:CTP11539,1,"TIRIEU LE BAS",45.703447,5.382901,,1,,Europe/Paris,,O38, +O38:SA:CTP11543,1,"LE BROQUET",45.726408,5.378778,,1,,Europe/Paris,,O38, +O38:SA:CTP11545,1,"LANCIN",45.726158,5.406148,,1,,Europe/Paris,,O38, +O38:SA:CTP11547,1,"CHANIZIEU - ABRIBUS",45.73406,5.386142,,1,,Europe/Paris,,O38, +O38:SA:CTP11551,1,"CHATEAU DE TIRIEU",45.709265,5.376101,,1,,Europe/Paris,,O38, +O38:SA:CTP11552,1,"MONTGAUDET",45.705601,5.368026,,1,,Europe/Paris,,O38, +O38:SA:CTP11554,1,"LA ROCHE",45.703068,5.36963,,1,,Europe/Paris,,O38, +O38:SA:CTP11556,1,"LES CAPTAGES",45.710761,5.372341,,1,,Europe/Paris,,O38, +O38:SA:CTP11558,1,"PUSIGNIEU CENTRE",45.738832,5.475024,,1,,Europe/Paris,,O38, +O38:SA:CTP1156,1,"STATION - AGENCE TRANSISERE VFD",45.006236,6.122139,,1,,Europe/Paris,,O38, +O38:SA:CTP11560,1,"LA CROIX",45.711175,5.432799,,1,,Europe/Paris,,O38, +O38:SA:CTP11562,1,"CONCHARBIN",45.716249,5.464724,,1,,Europe/Paris,,O38, +O38:SA:CTP11564,1,"DALEIGNEU",45.719412,5.482977,,1,,Europe/Paris,,O38, +O38:SA:CTP11566,1,"PUSIGNIEU ECOLE",45.739843,5.481094,,1,,Europe/Paris,,O38, +O38:SA:CTP11568,1,"CREYS VILLAGE",45.727471,5.487439,,1,,Europe/Paris,,O38, +O38:SA:CTP1157,1,"BALLATIN",44.988971,6.1157,,1,,Europe/Paris,,O38, +O38:SA:CTP11570,1,"HAMEAU LA GORGE",45.72352,5.463091,,1,,Europe/Paris,,O38, +O38:SA:CTP11572,1,"BOLOGNE",45.722823,5.432638,,1,,Europe/Paris,,O38, +O38:SA:CTP11574,1,"PUSIGNIEU",45.738401,5.472382,,1,,Europe/Paris,,O38, +O38:SA:CTP11578,1,"ARANDON ECOLE",45.711858,5.433174,,1,,Europe/Paris,,O38, +O38:SA:CTP11579,1,"PLATEAU",45.702281,5.491234,,1,,Europe/Paris,,O38, +O38:SA:CTP11581,1,"LE NIZERAY SCIERIE",45.705992,5.485194,,1,,Europe/Paris,,O38, +O38:SA:CTP11583,1,"ECOLE",45.726987,5.488503,,1,,Europe/Paris,,O38, +O38:SA:CTP11585,1,"LE POULET",45.732484,5.486746,,1,,Europe/Paris,,O38, +O38:SA:CTP11587,1,"LE MOLLARD",45.729666,5.494892,,1,,Europe/Paris,,O38, +O38:SA:CTP11589,1,"TOURS",45.709811,5.534958,,1,,Europe/Paris,,O38, +O38:SA:CTP1159,1,"PONT ESCOFFIER",45.006574,6.069395,,1,,Europe/Paris,,O38, +O38:SA:CTP11591,1,"PLAINE DU ROUX",45.700585,5.49621,,1,,Europe/Paris,,O38, +O38:SA:CTP11595,1,"GOUVOUX MT FAISSON",45.708439,5.515802,,1,,Europe/Paris,,O38, +O38:SA:CTP1164,1,"STATION - MAISON DU TOURISME",45.010925,6.123969,,1,,Europe/Paris,,O38, +O38:SA:CTP1165,1,"LES ESCALONS",44.992192,6.079082,,1,,Europe/Paris,,O38, +O38:SA:CTP11661,1,"LES BRUYERES",45.756637,5.155702,,1,,Europe/Paris,,O38, +O38:SA:CTP11663,1,"RUE DES MESANGES",45.78722,5.106618,,1,,Europe/Paris,,O38, +O38:SA:CTP11665,1,"ASNIERE AUBERGE",45.777986,5.116848,,1,,Europe/Paris,,O38, +O38:SA:CTP11667,1,"MONS VILLAGE",45.781341,5.107108,,1,,Europe/Paris,,O38, +O38:SA:CTP11669,1,"LA PLACE",45.795316,5.114713,,1,,Europe/Paris,,O38, +O38:SA:CTP1167,1,"LES OUGIERS",44.9934,6.081386,,1,,Europe/Paris,,O38, +O38:SA:CTP11671,1,"LES ORMES",45.795328,5.120377,,1,,Europe/Paris,,O38, +O38:SA:CTP11673,1,"SOUS L'EGLISE",45.801005,5.123448,,1,,Europe/Paris,,O38, +O38:SA:CTP11675,1,"A.F.T.",45.790474,5.133981,,1,,Europe/Paris,,O38, +O38:SA:CTP11677,1,"RUE DES PERDRIX",45.786494,5.110008,,1,,Europe/Paris,,O38, +O38:SA:CTP11679,1,"LES SAULES",45.790107,5.108504,,1,,Europe/Paris,,O38, +O38:SA:CTP11681,1,"Z.I.",45.794876,5.130398,,1,,Europe/Paris,,O38, +O38:SA:CTP11683,1,"MONS-ECOLE",45.77924,5.111142,,1,,Europe/Paris,,O38, +O38:SA:CTP11685,1,"LA MAIRIE",45.790019,5.169771,,1,,Europe/Paris,,O38, +O38:SA:CTP11687,1,"LES 5 CHEMINS",45.767596,5.194277,,1,,Europe/Paris,,O38, +O38:SA:CTP11689,1,"LES 5 CHEMINS ECOLE",45.766659,5.193248,,1,,Europe/Paris,,O38, +O38:SA:CTP1169,1,"VENOSC EGLISE",44.990293,6.114862,,1,,Europe/Paris,,O38, +O38:SA:CTP11691,1,"RUE DU 11 NOVEMBRE",45.770528,5.177406,,1,,Europe/Paris,,O38, +O38:SA:CTP11697,1,"USINE M.R.C.",45.767615,5.182777,,1,,Europe/Paris,,O38, +O38:SA:CTP11698,1,"SQUARE GINET",45.763567,5.178399,,1,,Europe/Paris,,O38, +O38:SA:CTP11700,1,"LA CROIX",45.778474,5.17377,,1,,Europe/Paris,,O38, +O38:SA:CTP11702,1,"LE BOUCHET",45.776578,5.179405,,1,,Europe/Paris,,O38, +O38:SA:CTP11704,1,"LES MOULINS",45.771555,5.183361,,1,,Europe/Paris,,O38, +O38:SA:CTP11707,1,"COLLEGE LE GRAND CHAMP",45.758039,5.175072,,1,,Europe/Paris,,O38, +O38:SA:CTP11709,1,"LE DEPOT",45.789634,5.165986,,1,,Europe/Paris,,O38, +O38:SA:CTP11711,1,"PONT D'ASNIERES",45.766334,5.183906,,1,,Europe/Paris,,O38, +O38:SA:CTP11713,1,"PLACE",45.776754,5.171084,,1,,Europe/Paris,,O38, +O38:SA:CTP11715,1,"L'HERITIERE",45.772589,5.172007,,1,,Europe/Paris,,O38, +O38:SA:CTP11717,1,"LYCEES",45.754876,5.17278,,1,,Europe/Paris,,O38, +O38:SA:CTP11719,1,"LA PLAINE",45.761159,5.189664,,1,,Europe/Paris,,O38, +O38:SA:CTP11720,1,"LA GARE",45.755375,5.210623,,1,,Europe/Paris,,O38, +O38:SA:CTP11722,1,"LE PORT",45.769772,5.208138,,1,,Europe/Paris,,O38, +O38:SA:CTP11724,1,"PASSIEU-CHEVRAMONT",45.758285,5.215054,,1,,Europe/Paris,,O38, +O38:SA:CTP11726,1,"BD DU COLLEGE",45.756092,5.173539,,1,,Europe/Paris,,O38, +O38:SA:CTP11728,1,"PASSIEU-LA GIRINE",45.75702,5.219107,,1,,Europe/Paris,,O38, +O38:SA:CTP1173,1,"L'ALLEAU",44.984671,6.121863,,1,,Europe/Paris,,O38, +O38:SA:CTP11730,1,"MAIRIE",45.752495,5.220263,,1,,Europe/Paris,,O38, +O38:SA:CTP11732,1,"ZONE ARTISANALE",45.761791,5.208475,,1,,Europe/Paris,,O38, +O38:SA:CTP11734,1,"ST-ETIENNE DE HIERES",45.796964,5.278772,,1,,Europe/Paris,,O38, +O38:SA:CTP11736,1,"BOURCIEU",45.784762,5.285231,,1,,Europe/Paris,,O38, +O38:SA:CTP11738,1,"LA PLACE",45.758876,5.254214,,1,,Europe/Paris,,O38, +O38:SA:CTP11740,1,"LA PLACE",45.797111,5.29335,,1,,Europe/Paris,,O38, +O38:SA:CTP11742,1,"LE ROCHER",45.75706,5.293064,,1,,Europe/Paris,,O38, +O38:SA:CTP11744,1,"MICHALIEU",45.752061,5.277256,,1,,Europe/Paris,,O38, +O38:SA:CTP11746,1,"L'EGLISE",45.752512,5.290064,,1,,Europe/Paris,,O38, +O38:SA:CTP1175,1,"BOURG D'ARUD CAMPING",44.986985,6.121233,,1,,Europe/Paris,,O38, +O38:SA:CTP11751,1,"JALIONAS",45.762663,5.233039,,1,,Europe/Paris,,O38, +O38:SA:CTP11752,1,"LOPRETE",45.780341,5.28351,,1,,Europe/Paris,,O38, +O38:SA:CTP11754,1,"LA FONTAINE",45.777442,5.281465,,1,,Europe/Paris,,O38, +O38:SA:CTP11758,1,"CHATELANS PLACE",45.774219,5.308493,,1,,Europe/Paris,,O38, +O38:SA:CTP11760,1,"HAMEAU CHAPIEU",45.788941,5.36389,,1,,Europe/Paris,,O38, +O38:SA:CTP11762,1,"LE VERNAY",45.794215,5.356342,,1,,Europe/Paris,,O38, +O38:SA:CTP11764,1,"CHATELANS LOT.",45.772104,5.302139,,1,,Europe/Paris,,O38, +O38:SA:CTP11766,1,"ETANG LA TUILLE",45.763593,5.322808,,1,,Europe/Paris,,O38, +O38:SA:CTP11768,1,"MAIRIE",45.790072,5.337988,,1,,Europe/Paris,,O38, +O38:SA:CTP11770,1,"SURBAIX",45.77745,5.349323,,1,,Europe/Paris,,O38, +O38:SA:CTP11772,1,"LA PLAINE",45.773384,5.345128,,1,,Europe/Paris,,O38, +O38:SA:CTP11774,1,"BAIX",45.78122,5.35171,,1,,Europe/Paris,,O38, +O38:SA:CTP11778,1,"LE VERT-LA CROIX",45.786094,5.339313,,1,,Europe/Paris,,O38, +O38:SA:CTP1178,1,"STATION - PALAIS DES SPORTS",45.013804,6.124634,,1,,Europe/Paris,,O38, +O38:SA:CTP11780,1,"PLACE",45.750169,5.329404,,1,,Europe/Paris,,O38, +O38:SA:CTP11786,1,"LE ROLLAND-4 CHEMINS",45.791983,5.424089,,1,,Europe/Paris,,O38, +O38:SA:CTP11788,1,"POLEYRIEU VILLAGE",45.76118,5.40919,,1,,Europe/Paris,,O38, +O38:SA:CTP11790,1,"HLM LA RIVOIRE",45.793979,5.409916,,1,,Europe/Paris,,O38, +O38:SA:CTP11792,1,"MARLIEU",45.784992,5.406741,,1,,Europe/Paris,,O38, +O38:SA:CTP11794,1,"LES FONTANETTES",45.792098,5.401567,,1,,Europe/Paris,,O38, +O38:SA:CTP11796,1,"ECOLE",45.793593,5.411598,,1,,Europe/Paris,,O38, +O38:SA:CTP11798,1,"ROUTE DE BOULIEU",45.783142,5.398411,,1,,Europe/Paris,,O38, +O38:SA:CTP11800,1,"BOULIEU FERME",45.776472,5.375101,,1,,Europe/Paris,,O38, +O38:SA:CTP11802,1,"BOULIEU VILLAGE",45.774291,5.379572,,1,,Europe/Paris,,O38, +O38:SA:CTP11808,1,"DEPOT DAUPHINE RD1075",45.777682,5.401038,,1,,Europe/Paris,,O38, +O38:SA:CTP11810,1,"BOULIEU CHATEAU",45.776075,5.381341,,1,,Europe/Paris,,O38, +O38:SA:CTP11813,1,"POLEYRIEU LE BAS",45.757587,5.40928,,1,,Europe/Paris,,O38, +O38:SA:CTP11814,1,"CHAVANNE",45.764509,5.417796,,1,,Europe/Paris,,O38, +O38:SA:CTP11816,1,"FAVERGES - SALLE DES FETES",45.760428,5.442723,,1,,Europe/Paris,,O38, +O38:SA:CTP11818,1,"FAVERGES",45.763818,5.445756,,1,,Europe/Paris,,O38, +O38:SA:CTP1182,1,"PLAN DU LAC",44.978612,6.144928,,1,,Europe/Paris,,O38, +O38:SA:CTP11822,1,"MALVILLE",45.748786,5.47872,,1,,Europe/Paris,,O38, +O38:SA:CTP11824,1,"MEPIEU",45.748866,5.446982,,1,,Europe/Paris,,O38, +O38:SA:CTP11826,1,"LE BEL AIR",45.768198,5.450066,,1,,Europe/Paris,,O38, +O38:SA:CTP11832,1,"LE BAYARD",45.781371,5.440518,,1,,Europe/Paris,,O38, +O38:SA:CTP11834,1,"QUIRIEU",45.788113,5.43738,,1,,Europe/Paris,,O38, +O38:SA:CTP11836,1,"LA BERGERIE",45.780018,5.440079,,1,,Europe/Paris,,O38, +O38:SA:CTP11838,1,"FAVERGES PIFFON",45.759498,5.453947,,1,,Europe/Paris,,O38, +O38:SA:CTP1184,1,"CARREFOUR LE REYNAUD",45.090221,5.193681,,1,,Europe/Paris,,O38, +O38:SA:CTP11843,1,"MOULIN D'AVAUX",45.804355,5.288683,,1,,Europe/Paris,,O38, +O38:SA:CTP11845,1,"CAFE MARTINET",45.797849,5.295136,,1,,Europe/Paris,,O38, +O38:SA:CTP11847,1,"LES USINES",45.807074,5.291339,,1,,Europe/Paris,,O38, +O38:SA:CTP11849,1,"LA BROSSE",45.827857,5.30066,,1,,Europe/Paris,,O38, +O38:SA:CTP11853,1,"AMBLERIEU",45.834445,5.325891,,1,,Europe/Paris,,O38, +O38:SA:CTP11855,1,"MARIGNIEU VILLAS",45.81331,5.304146,,1,,Europe/Paris,,O38, +O38:SA:CTP11859,1,"LES BROSSES",45.829225,5.352989,,1,,Europe/Paris,,O38, +O38:SA:CTP1186,1,"GARE",45.08712,5.192646,,1,,Europe/Paris,,O38, +O38:SA:CTP11863,1,"ECOLE",45.839073,5.353816,,1,,Europe/Paris,,O38, +O38:SA:CTP11864,1,"TORJONAS",45.806215,5.32936,,1,,Europe/Paris,,O38, +O38:SA:CTP11866,1,"PARMILIEU",45.839177,5.355143,,1,,Europe/Paris,,O38, +O38:SA:CTP11870,1,"ROND-POINT NORD",45.821518,5.406569,,1,,Europe/Paris,,O38, +O38:SA:CTP11876,1,"PLACE",45.815816,5.404209,,1,,Europe/Paris,,O38, +O38:SA:CTP11878,1,"CENTRE COMMERCIAL",45.809727,5.402722,,1,,Europe/Paris,,O38, +O38:SA:CTP1188,1,"LES FAURIES",45.0855,5.182234,,1,,Europe/Paris,,O38, +O38:SA:CTP11880,1,"COLLEGE LES PIERRES PLANTES",45.807029,5.399604,,1,,Europe/Paris,,O38, +O38:SA:CTP11882,1,"ECOLE",45.809197,5.368275,,1,,Europe/Paris,,O38, +O38:SA:CTP11884,1,"MAIRIE",45.79558,5.415409,,1,,Europe/Paris,,O38, +O38:SA:CTP11888,1,"HAMEAU LE TURNOUD",45.838663,5.400918,,1,,Europe/Paris,,O38, +O38:SA:CTP11890,1,"AMBLAGNIEU PLACE",45.840256,5.39374,,1,,Europe/Paris,,O38, +O38:SA:CTP11891,1,"VASSIEU",45.825723,5.39374,,1,,Europe/Paris,,O38, +O38:SA:CTP11893,1,"MARIEU",45.838372,5.376561,,1,,Europe/Paris,,O38, +O38:SA:CTP11895,1,"CONILIEU",45.824897,5.38353,,1,,Europe/Paris,,O38, +O38:SA:CTP11897,1,"LOTISSEMENT CHANO",45.831796,5.406845,,1,,Europe/Paris,,O38, +O38:SA:CTP11899,1,"MONTEE DU CHATEAU",45.83685,5.396422,,1,,Europe/Paris,,O38, +O38:SA:CTP1190,1,"L'ECHARPE",45.07752,5.161087,,1,,Europe/Paris,,O38, +O38:SA:CTP11905,1,"ECOLE",45.834571,5.399276,,1,,Europe/Paris,,O38, +O38:SA:CTP11907,1,"DISIMIEU",45.820747,5.38233,,1,,Europe/Paris,,O38, +O38:SA:CTP11909,1,"CONILIEU CARREFOUR",45.820779,5.38826,,1,,Europe/Paris,,O38, +O38:SA:CTP1191,1,"ECOLE LA BAUDIERE",45.078346,5.169666,,1,,Europe/Paris,,O38, +O38:SA:CTP11911,1,"LA FOLATIERE",45.833257,5.393973,,1,,Europe/Paris,,O38, +O38:SA:CTP11912,1,"INSTITUTION ST LOUIS",45.851402,5.066918,,1,,Europe/Paris,,O38, +O38:SA:CTP11915,1,"MAIRIE",45.852673,5.337551,,1,,Europe/Paris,,O38, +O38:SA:CTP11917,1,"TRAVERS-FONTAINE",45.845482,5.310431,,1,,Europe/Paris,,O38, +O38:SA:CTP11919,1,"PERTEMPS",45.870102,5.342915,,1,,Europe/Paris,,O38, +O38:SA:CTP11921,1,"ANCIENNE ECOLE",45.85209,5.333366,,1,,Europe/Paris,,O38, +O38:SA:CTP11923,1,"LONGE REY",45.875947,5.360352,,1,,Europe/Paris,,O38, +O38:SA:CTP11925,1,"ECOLE",45.874075,5.366661,,1,,Europe/Paris,,O38, +O38:SA:CTP11929,1,"CIMETIERE",45.873105,5.361149,,1,,Europe/Paris,,O38, +O38:SA:CTP1193,1,"LA BAUDIERE",45.077538,5.166857,,1,,Europe/Paris,,O38, +O38:SA:CTP11932,1,"LOT. FARMIER",45.120897,6.011066,,1,,Europe/Paris,,O38, +O38:SA:CTP11934,1,"PERNIERE BASSE (ABRI)",45.121578,6.017397,,1,,Europe/Paris,,O38, +O38:SA:CTP11936,1,"PERNIERE BASSE (FOND)",45.122153,6.013802,,1,,Europe/Paris,,O38, +O38:SA:CTP11938,1,"LOT. LES ACACIAS",45.53465,5.415995,,1,,Europe/Paris,,O38, +O38:SA:CTP1195,1,"PEROUX",45.081185,5.146627,,1,,Europe/Paris,,O38, +O38:SA:CTP11951,1,"QUINQUIN",45.573506,5.950883,,1,,Europe/Paris,,O38, +O38:SA:CTP11953,1,"CENTRE COMMERCIAL BASSENS",45.572848,5.945063,,1,,Europe/Paris,,O38, +O38:SA:CTP11954,1,"LES FEYTAUX",45.30115,5.105826,,1,,Europe/Paris,,O38, +O38:SA:CTP11957,1,"ST PHILIBERT RD 512",45.379804,5.849721,,1,,Europe/Paris,,O38, +O38:SA:CTP11958,1,"CHEMIN DES ROCHES",45.243854,5.338004,,1,,Europe/Paris,,O38, +O38:SA:CTP1196,1,"LES GUILLOTS",45.079504,5.232374,,1,,Europe/Paris,,O38, +O38:SA:CTP11961,1,"LES JAILLEUX",45.126179,5.5978,,1,,Europe/Paris,,O38, +O38:SA:CTP11966,1,"LE BRACHET",45.573025,5.105161,,1,,Europe/Paris,,O38, +O38:SA:CTP11968,1,"LA FORET 1",45.565031,5.107925,,1,,Europe/Paris,,O38, +O38:SA:CTP11970,1,"LA FORET 2",45.568774,5.11951,,1,,Europe/Paris,,O38, +O38:SA:CTP11971,1,"LES VOIRIES",45.564376,5.120474,,1,,Europe/Paris,,O38, +O38:SA:CTP11973,1,"BORDENOUD",45.621342,5.433192,,1,,Europe/Paris,,O38, +O38:SA:CTP11974,1,"LES RIVOIRES",45.62517,5.411981,,1,,Europe/Paris,,O38, +O38:SA:CTP11976,1,"CHAMP DE LA COUR",45.048423,5.832126,,1,,Europe/Paris,,O38, +O38:SA:CTP1198,1,"BARRIERE",45.071772,5.247072,,1,,Europe/Paris,,O38, +O38:SA:CTP11984,1,"EUROPE",45.240638,5.677727,,1,,Europe/Paris,,O38, +O38:SA:CTP11987,1,"RIVETIERE CHATEAU D'EAU",45.549856,5.341696,,1,,Europe/Paris,,O38, +O38:SA:CTP11989,1,"ROUTE DES ROSIERS",45.481068,5.222942,,1,,Europe/Paris,,O38, +O38:SA:CTP11991,1,"LE CAMPING",45.832439,5.301062,,1,,Europe/Paris,,O38, +O38:SA:CTP11993,1,"GYMNASE VACHERON",45.722004,5.24473,,1,,Europe/Paris,,O38, +O38:SA:CTP11994,1,"LES COTES",45.175236,5.547246,,1,,Europe/Paris,,O38, +O38:SA:CTP11996,1,"LA BEAUME",45.542539,5.069216,,1,,Europe/Paris,,O38, +O38:SA:CTP11998,1,"CUVILLEUX",45.234706,5.687423,,1,,Europe/Paris,,O38, +O38:SA:CTP1200,1,"LES CHARBONNOTS RD21",45.075954,5.250385,,1,,Europe/Paris,,O38, +O38:SA:CTP12001,1,"LE MOLLARD",45.58218,5.189053,,1,,Europe/Paris,,O38, +O38:SA:CTP12007,1,"LES LIERS - RD51B",45.428068,5.401297,,1,,Europe/Paris,,O38, +O38:SA:CTP12009,1,"LES PLANS",45.245119,5.369671,,1,,Europe/Paris,,O38, +O38:SA:CTP12014,1,"LES BRUYERES - MAISON MEYNIER",45.347241,5.145576,,1,,Europe/Paris,,O38, +O38:SA:CTP12018,1,"LA PLANTA",45.14503,5.221662,,1,,Europe/Paris,,O38, +O38:SA:CTP1202,1,"AUX VALLINS",45.091054,5.212036,,1,,Europe/Paris,,O38, +O38:SA:CTP12020,1,"LA VILLE",45.131641,6.041288,,1,,Europe/Paris,,O38, +O38:SA:CTP12022,1,"LES PLATIERES",45.058617,5.319398,,1,,Europe/Paris,,O38, +O38:SA:CTP12023,1,"LA SAVAGINE",45.697877,5.488182,,1,,Europe/Paris,,O38, +O38:SA:CTP12025,1,"LES CHAPELLES",44.801032,5.754541,,1,,Europe/Paris,,O38, +O38:SA:CTP12033,1,"LES COMBAUX",45.314552,5.255098,,1,,Europe/Paris,,O38, +O38:SA:CTP12034,1,"LES ERABLES",45.125845,5.590163,,1,,Europe/Paris,,O38, +O38:SA:CTP1204,1,"LES VACHERES D21",45.076892,5.240183,,1,,Europe/Paris,,O38, +O38:SA:CTP12044,1,"LA CROISETTE",45.604084,5.553284,,1,,Europe/Paris,,O38, +O38:SA:CTP12050,1,"STADE",45.205281,5.417471,,1,,Europe/Paris,,O38, +O38:SA:CTP12052,1,"LES ITIERS",44.838637,5.874427,,1,,Europe/Paris,,O38, +O38:SA:CTP12055,1,"ZA MONTPLAISIR",45.52499,4.921852,,1,,Europe/Paris,,O38, +O38:SA:CTP12058,1,"LE RIVAL MARGUETIERE",45.349378,5.271608,,1,,Europe/Paris,,O38, +O38:SA:CTP1206,1,"LES CHARBONNOTS",45.073024,5.252005,,1,,Europe/Paris,,O38, +O38:SA:CTP12062,1,"LE PILAT",45.339215,5.176709,,1,,Europe/Paris,,O38, +O38:SA:CTP12064,1,"CHEMIN DU MARTERAY",45.654364,5.41407,,1,,Europe/Paris,,O38, +O38:SA:CTP12067,1,"NORBERT SEGARD CNET",45.209058,5.795176,,1,,Europe/Paris,,O38, +O38:SA:CTP12071,1,"BUSSEROLLES",45.208849,5.797624,,1,,Europe/Paris,,O38, +O38:SA:CTP12078,1,"LES VERNES",44.997288,5.790206,,1,,Europe/Paris,,O38, +O38:SA:CTP1208,1,"LA COMBE",45.085082,5.199776,,1,,Europe/Paris,,O38, +O38:SA:CTP12080,1,"LE MOLLARD LE HAUT",44.965641,5.72144,,1,,Europe/Paris,,O38, +O38:SA:CTP12082,1,"ROUTE DES COMBES",45.320043,5.272206,,1,,Europe/Paris,,O38, +O38:SA:CTP12086,1,"LA BRETONNIERE",45.296415,5.336998,,1,,Europe/Paris,,O38, +O38:SA:CTP12088,1,"PONT DE ST ROMAIN EN GAL",45.528346,4.873578,,1,,Europe/Paris,,O38, +O38:SA:CTP12089,1,"STOP RN7",45.489342,4.828475,,1,,Europe/Paris,,O38, +O38:SA:CTP12090,1,"LA GARENNE",45.75039,5.147463,,1,,Europe/Paris,,O38, +O38:SA:CTP12092,1,"ROND POINT DE LA LECHERE",45.748039,5.145244,,1,,Europe/Paris,,O38, +O38:SA:CTP12094,1,"LA REFEUILLE",45.728899,5.1419,,1,,Europe/Paris,,O38, +O38:SA:CTP12096,1,"RUE DE LA PLAINE",45.734293,5.156239,,1,,Europe/Paris,,O38, +O38:SA:CTP12098,1,"PIARDAY LOTISSEMENT",45.754062,5.143893,,1,,Europe/Paris,,O38, +O38:SA:CTP12100,1,"PIARDAY ECOLE JAMMES",45.755836,5.142921,,1,,Europe/Paris,,O38, +O38:SA:CTP12104,1,"MAISON DU DEPARTEMENT",45.724164,5.237984,,1,,Europe/Paris,,O38, +O38:SA:CTP12106,1,"LES TILLEULS",45.791993,5.112406,,1,,Europe/Paris,,O38, +O38:SA:CTP12108,1,"PONT DE LA MOUCHE",44.925577,5.782832,,1,,Europe/Paris,,O38, +O38:SA:CTP1211,1,"LES GAMONDS RD1092",45.085481,5.214633,,1,,Europe/Paris,,O38, +O38:SA:CTP12110,1,"NID ALPIN",45.070666,5.554783,,1,,Europe/Paris,,O38, +O38:SA:CTP12112,1,"CENTRE DE LOISIRS",45.187865,5.616334,,1,,Europe/Paris,,O38, +O38:SA:CTP12114,1,"CENTRE DE LOISIRS NALIA",44.892751,5.613954,,1,,Europe/Paris,,O38, +O38:SA:CTP12115,1,"LA GRANGE DE MORGES",44.855532,5.779093,,1,,Europe/Paris,,O38, +O38:SA:CTP1212,1,"LES BUISSIERES",45.083575,5.222235,,1,,Europe/Paris,,O38, +O38:SA:CTP1214,1,"HAMEAU LES GAMONDS",45.085376,5.218395,,1,,Europe/Paris,,O38, +O38:SA:CTP1216,1,"ECOLE",45.087251,5.200911,,1,,Europe/Paris,,O38, +O38:SA:CTP1218,1,"PONT DU FURAND",45.085234,5.207927,,1,,Europe/Paris,,O38, +O38:SA:CTP1220,1,"LES CITES",45.071222,5.240523,,1,,Europe/Paris,,O38, +O38:SA:CTP1223,1,"GARE",45.071138,5.245073,,1,,Europe/Paris,,O38, +O38:SA:CTP1225,1,"LE MAS",45.081157,5.227357,,1,,Europe/Paris,,O38, +O38:SA:CTP1227,1,"L'OLIVIER BOURG",45.087972,5.200494,,1,,Europe/Paris,,O38, +O38:SA:CTP1231,1,"LE VILLAGE",45.063464,5.300839,,1,,Europe/Paris,,O38, +O38:SA:CTP12314,1,"LA CUCHE",45.25601,5.628069,,1,,Europe/Paris,,O38, +O38:SA:CTP1233,1,"CARREF.RTE DE LA BLACHETTE",45.077572,5.30454,,1,,Europe/Paris,,O38, +O38:SA:CTP1235,1,"LE MAS D531",45.055076,5.31005,,1,,Europe/Paris,,O38, +O38:SA:CTP1237,1,"LES CLARIS",45.060691,5.329653,,1,,Europe/Paris,,O38, +O38:SA:CTP1238,1,"HAMEAU DE VEYRAND",45.072429,5.30893,,1,,Europe/Paris,,O38, +O38:SA:CTP1240,1,"ECOLES",45.063397,5.300815,,1,,Europe/Paris,,O38, +O38:SA:CTP1242,1,"FERME GUERIN",45.077947,5.318647,,1,,Europe/Paris,,O38, +O38:SA:CTP1244,1,"VOIE CHARBONNEL",45.075935,5.306099,,1,,Europe/Paris,,O38, +O38:SA:CTP1245,1,"LE BIROLLET",45.071031,5.316106,,1,,Europe/Paris,,O38, +O38:SA:CTP1246,1,"LE CREUX",45.079399,5.2642,,1,,Europe/Paris,,O38, +O38:SA:CTP1248,1,"LE VILLAGE",45.074878,5.283466,,1,,Europe/Paris,,O38, +O38:SA:CTP12494,1,"GRAND SABLON",45.19885,5.750284,,1,,Europe/Paris,,O38, +O38:SA:CTP1250,1,"L'ENCHERE",45.080346,5.324202,,1,,Europe/Paris,,O38, +O38:SA:CTP1252,1,"LA MAIRIE",45.074386,5.315924,,1,,Europe/Paris,,O38, +O38:SA:CTP1254,1,"PONT DE MANNE",45.061575,5.27903,,1,,Europe/Paris,,O38, +O38:SA:CTP1256,1,"CLAIRIVAUX",45.065253,5.270782,,1,,Europe/Paris,,O38, +O38:SA:CTP1258,1,"LES MOURAUX",45.086056,5.268786,,1,,Europe/Paris,,O38, +O38:SA:CTP1260,1,"TUNNEL DE BLUVINAYE",45.078474,5.309969,,1,,Europe/Paris,,O38, +O38:SA:CTP1262,1,"LES GARENNES",45.083013,5.291724,,1,,Europe/Paris,,O38, +O38:SA:CTP1264,1,"BLUVINAYE",45.084333,5.307598,,1,,Europe/Paris,,O38, +O38:SA:CTP1270,1,"MEZELIER",45.053288,5.367707,,1,,Europe/Paris,,O38, +O38:SA:CTP1272,1,"STE EULALIE EN ROYANS",45.047282,5.340649,,1,,Europe/Paris,,O38, +O38:SA:CTP1274,1,"LES CHAMPS",45.080511,5.362859,,1,,Europe/Paris,,O38, +O38:SA:CTP1276,1,"LES NUGUES",45.075094,5.365877,,1,,Europe/Paris,,O38, +O38:SA:CTP1278,1,"TERROT",45.085434,5.382071,,1,,Europe/Paris,,O38, +O38:SA:CTP1280,1,"JELINE",45.08299,5.38101,,1,,Europe/Paris,,O38, +O38:SA:CTP12801,1,"LE RONDEAU",45.160255,5.709613,,1,,Europe/Paris,,O38, +O38:SA:CTP1284,1,"BOURNIERE",45.070066,5.372159,,1,,Europe/Paris,,O38, +O38:SA:CTP1288,1,"LE BEL - LA PLAINE",45.063068,5.32669,,1,,Europe/Paris,,O38, +O38:SA:CTP1292,1,"BALAI",45.071356,5.328873,,1,,Europe/Paris,,O38, +O38:SA:CTP1294,1,"STADE",45.064058,5.3371,,1,,Europe/Paris,,O38, +O38:SA:CTP1296,1,"COLLEGE RAYMOND GUELEN",45.06363,5.341386,,1,,Europe/Paris,,O38, +O38:SA:CTP1298,1,"ECOLE",45.085861,5.339897,,1,,Europe/Paris,,O38, +O38:SA:CTP1300,1,"MAIRIE",45.0577,5.373277,,1,,Europe/Paris,,O38, +O38:SA:CTP1302,1,"LE VILLAGE",45.066794,5.391103,,1,,Europe/Paris,,O38, +O38:SA:CTP1304,1,"ECOLES",45.062929,5.342735,,1,,Europe/Paris,,O38, +O38:SA:CTP13044,1,"MUGUETS",45.634396,5.109383,,1,,Europe/Paris,,O38, +O38:SA:CTP13046,1,"LE BOIS",45.617684,5.511733,,1,,Europe/Paris,,O38, +O38:SA:CTP13048,1,"CHEZ MEUNIER",45.504286,4.92518,,1,,Europe/Paris,,O38, +O38:SA:CTP13050,1,"CHEMIN DE LA MAISONNIERE",45.432977,4.968513,,1,,Europe/Paris,,O38, +O38:SA:CTP13052,1,"LA VOUTE",45.12123,6.032738,,1,,Europe/Paris,,O38, +O38:SA:CTP13054,1,"GROUPE SCOLAIRE",45.640778,5.361276,,1,,Europe/Paris,,O38, +O38:SA:CTP13058,1,"LES MICHALONS",45.171851,5.638824,,1,,Europe/Paris,,O38, +O38:SA:CTP13063,1,"MAIRIE",45.328418,5.2614,,1,,Europe/Paris,,O38, +O38:SA:CTP13065,1,"SICCIEU ECOLE",45.733852,5.31567,,1,,Europe/Paris,,O38, +O38:SA:CTP13067,1,"PRE POULET",45.704771,5.348918,,1,,Europe/Paris,,O38, +O38:SA:CTP13069,1,"TIGNIEU ECOLE",45.733621,5.185032,,1,,Europe/Paris,,O38, +O38:SA:CTP13071,1,"CHATEAU D'HERBELON",44.898075,5.673599,,1,,Europe/Paris,,O38, +O38:SA:CTP13072,1,"JULLIERES",44.911455,5.665882,,1,,Europe/Paris,,O38, +O38:SA:CTP13079,1,"BILLONNIERES",45.142866,5.246853,,1,,Europe/Paris,,O38, +O38:SA:CTP1308,1,"COL TOUTES AURES",45.075002,5.354205,,1,,Europe/Paris,,O38, +O38:SA:CTP13081,1,"TINTONIERE",45.085742,5.187194,,1,,Europe/Paris,,O38, +O38:SA:CTP13083,1,"LA CHANAZ",45.608256,5.550004,,1,,Europe/Paris,,O38, +O38:SA:CTP13086,1,"LONGS PRES",45.302773,5.907182,,1,,Europe/Paris,,O38, +O38:SA:CTP13091,1,"ROUTE DES PLAINES",45.399784,5.470785,,1,,Europe/Paris,,O38, +O38:SA:CTP13093,1,"MONT JOYEUX",45.317851,5.241913,,1,,Europe/Paris,,O38, +O38:SA:CTP13095,1,"USINE LAFARGE",45.659063,5.080702,,1,,Europe/Paris,,O38, +O38:SA:CTP13097,1,"CROIX DE MISSION",45.333634,4.943156,,1,,Europe/Paris,,O38, +O38:SA:CTP13099,1,"FONTBESSET RD1532",45.289475,5.569027,,1,,Europe/Paris,,O38, +O38:SA:CTP1310,1,"BOURG",45.086413,5.341411,,1,,Europe/Paris,,O38, +O38:SA:CTP1312,1,"LA CROIX DU BEAU GEAI",45.083341,5.331538,,1,,Europe/Paris,,O38, +O38:SA:CTP13136,1,"GARE UNIVERSITES (SNCF)",45.184902,5.785192,,1,,Europe/Paris,,O38, +O38:SA:CTP1314,1,"LA GUIBAUDIERE-CIMETIERE",45.083812,5.337269,,1,,Europe/Paris,,O38, +O38:SA:CTP13140,1,"GARE UNIVERSITES (TRAMWAY)",45.185543,5.785681,,1,,Europe/Paris,,O38, +O38:SA:CTP13147,1,"VIGNATE",45.189281,5.77817,,1,,Europe/Paris,,O38, +O38:SA:CTP13151,1,"LE RUTY",45.545405,5.666247,,1,,Europe/Paris,,O38, +O38:SA:CTP1316,1,"HAMEAU CATINON",45.064635,5.367406,,1,,Europe/Paris,,O38, +O38:SA:CTP13170,1,"PART-DIEU VILLETTE GARE ROUTIERE",45.760661,4.862949,,1,,Europe/Paris,,O38, +O38:SA:CTP1318,1,"LES MASSONS",45.063344,5.384408,,1,,Europe/Paris,,O38, +O38:SA:CTP1320,1,"CHEMIN DES GAMONES",45.067203,5.360208,,1,,Europe/Paris,,O38, +O38:SA:CTP1322,1,"COMBE BERNARD",45.062791,5.396561,,1,,Europe/Paris,,O38, +O38:SA:CTP13239,1,"MAISON BERRUYER",45.220502,5.404684,,1,,Europe/Paris,,O38, +O38:SA:CTP1324,1,"LE CLOS",45.057793,5.400988,,1,,Europe/Paris,,O38, +O38:SA:CTP13241,1,"CHAUMEIL",44.909512,5.5695,,1,,Europe/Paris,,O38, +O38:SA:CTP13243,1,"COTE BELETTE",44.901206,5.560641,,1,,Europe/Paris,,O38, +O38:SA:CTP13245,1,"FRUITIERE",44.912593,5.56862,,1,,Europe/Paris,,O38, +O38:SA:CTP13247,1,"LES DOLOMITES",44.900619,5.555104,,1,,Europe/Paris,,O38, +O38:SA:CTP13252,1,"TEMPLE DE CYBELE",45.524657,4.876887,,1,,Europe/Paris,,O38, +O38:SA:CTP1332,1,"LES ORCETS",45.071318,5.458542,,1,,Europe/Paris,,O38, +O38:SA:CTP13322,1,"LE BASSARD",45.467324,4.824784,,1,,Europe/Paris,,O38, +O38:SA:CTP13324,1,"ECOLE PRIVEE J. D'ARC",45.537528,5.669093,,1,,Europe/Paris,,O38, +O38:SA:CTP13326,1,"BONNE BLANCHE",45.49882,5.699989,,1,,Europe/Paris,,O38, +O38:SA:CTP13328,1,"LE LAC",45.49392,5.693968,,1,,Europe/Paris,,O38, +O38:SA:CTP13330,1,"ROUTE ST MARTIN",45.497094,5.683215,,1,,Europe/Paris,,O38, +O38:SA:CTP13332,1,"LA BATHIE CAR. RD132",45.304473,5.390344,,1,,Europe/Paris,,O38, +O38:SA:CTP1334,1,"LA MARTELLIERE",45.0586,5.452832,,1,,Europe/Paris,,O38, +O38:SA:CTP13351,1,"ZA MONTPLAISIR CALOR",45.524012,4.920432,,1,,Europe/Paris,,O38, +O38:SA:CTP13357,1,"LA GUILLOTIERE",45.304922,5.077307,,1,,Europe/Paris,,O38, +O38:SA:CTP1336,1,"ST JULIEN PTT",45.049774,5.448843,,1,,Europe/Paris,,O38, +O38:SA:CTP13362,1,"LA GARENNE",45.705998,5.53333,,1,,Europe/Paris,,O38, +O38:SA:CTP13364,1,"LE PAVE",45.692836,5.533396,,1,,Europe/Paris,,O38, +O38:SA:CTP13366,1,"CLOS MOREL",45.525529,5.179585,,1,,Europe/Paris,,O38, +O38:SA:CTP13367,1,"EYBERTIERE CROISEMENT",45.189654,5.563324,,1,,Europe/Paris,,O38, +O38:SA:CTP13370,1,"LACRAS",45.344436,5.071789,,1,,Europe/Paris,,O38, +O38:SA:CTP13373,1,"ISLE D'ABEAU-GARE",45.607842,5.219761,,1,,Europe/Paris,,O38, +O38:SA:CTP13377,1,"FERME D'AMBY",45.765993,5.319389,,1,,Europe/Paris,,O38, +O38:SA:CTP1338,1,"LA VALETTE",45.081853,5.486894,,1,,Europe/Paris,,O38, +O38:SA:CTP13385,1,"ROUTE DE FAVERGES",45.587646,5.540636,,1,,Europe/Paris,,O38, +O38:SA:CTP13387,1,"CHANTEBELLE",45.059875,5.363256,,1,,Europe/Paris,,O38, +O38:SA:CTP13389,1,"MAIRIE",45.341561,5.185895,,1,,Europe/Paris,,O38, +O38:SA:CTP13394,1,"LE PLANOLET",45.371588,5.838483,,1,,Europe/Paris,,O38, +O38:SA:CTP13395,1,"PARC TECHNOLOGIQUE EST",45.620298,5.175162,,1,,Europe/Paris,,O38, +O38:SA:CTP13397,1,"LE RUAL",45.634694,5.409468,,1,,Europe/Paris,,O38, +O38:SA:CTP13400,1,"ST BONNET CENTRE - LYCEE",45.609604,5.156088,,1,,Europe/Paris,,O38, +O38:SA:CTP13404,1,"LES GRANDES VIGNES",45.267005,5.478755,,1,,Europe/Paris,,O38, +O38:SA:CTP13409,1,"PICHONNIERE",45.222367,5.396981,,1,,Europe/Paris,,O38, +O38:SA:CTP1341,1,"BOIS BARBU-FOYER DE FOND",45.059944,5.522754,,1,,Europe/Paris,,O38, +O38:SA:CTP13411,1,"ECOLE DES MURIERS",45.848568,5.331884,,1,,Europe/Paris,,O38, +O38:SA:CTP13416,1,"GARE MULTIMODALE",45.048445,5.05123,,1,,Europe/Paris,,O38, +O38:SA:CTP13417,1,"LE MANISCEY",45.070141,5.131979,,1,,Europe/Paris,,O38, +O38:SA:CTP13419,1,"GRANDE PLACE",45.0711,5.137293,,1,,Europe/Paris,,O38, +O38:SA:CTP1342,1,"LES TRAVERSES",45.036343,5.533983,,1,,Europe/Paris,,O38, +O38:SA:CTP13420,1,"LE NATIONAL",45.06167,5.109027,,1,,Europe/Paris,,O38, +O38:SA:CTP13424,1,"P+R BIEVRE DAUPHINE",45.38168,5.477203,,1,,Europe/Paris,,O38, +O38:SA:CTP13425,1,"ST CLAIR/GALAURE",45.260471,5.144443,,1,,Europe/Paris,,O38, +O38:SA:CTP13430,1,"MAISON FORTE",45.695961,5.35708,,1,,Europe/Paris,,O38, +O38:SA:CTP13432,1,"CHEMIN DE LA VIVET",45.32314,5.20061,,1,,Europe/Paris,,O38, +O38:SA:CTP1345,1,"PONT DE L'ESSARTON",45.067354,5.546462,,1,,Europe/Paris,,O38, +O38:SA:CTP13450,1,"RUE DU PRE ROUX",45.271032,5.887465,,1,,Europe/Paris,,O38, +O38:SA:CTP1348,1,"FROMAGERIE",45.078265,5.536293,,1,,Europe/Paris,,O38, +O38:SA:CTP13489,1,"LE CROS",44.833327,5.940347,,1,,Europe/Paris,,O38, +O38:SA:CTP1350,1,"ECOLE LES LECHES",45.06991,5.555088,,1,,Europe/Paris,,O38, +O38:SA:CTP1353,1,"FONT NOIRE",45.078769,5.554911,,1,,Europe/Paris,,O38, +O38:SA:CTP1356,1,"LES POUTEILS",45.048212,5.55548,,1,,Europe/Paris,,O38, +O38:SA:CTP1358,1,"LES GUILLETS",45.049875,5.547505,,1,,Europe/Paris,,O38, +O38:SA:CTP1360,1,"SAGNES(PRENATIER)",45.07375,5.547752,,1,,Europe/Paris,,O38, +O38:SA:CTP1362,1,"L'ESSARTON-LE PEUIL",45.062349,5.546491,,1,,Europe/Paris,,O38, +O38:SA:CTP1365,1,"ET. JEAN PREVOST",45.063352,5.557602,,1,,Europe/Paris,,O38, +O38:SA:CTP1367,1,"FONT DE LA MAIE",45.049516,5.543228,,1,,Europe/Paris,,O38, +O38:SA:CTP1369,1,"LA TANCANIERE",45.071054,5.540869,,1,,Europe/Paris,,O38, +O38:SA:CTP1373,1,"BOIS BARBU-FERME",45.065615,5.532257,,1,,Europe/Paris,,O38, +O38:SA:CTP1376,1,"BALCON DE VILLARD-COTE 2000",45.046337,5.55692,,1,,Europe/Paris,,O38, +O38:SA:CTP1379,1,"BOIS BARBU-4 VENTS",45.066123,5.52772,,1,,Europe/Paris,,O38, +O38:SA:CTP1382,1,"CHARPICHON",45.076221,5.537233,,1,,Europe/Paris,,O38, +O38:SA:CTP1386,1,"GARE ROUTIERE",45.072682,5.552645,,1,,Europe/Paris,,O38, +O38:SA:CTP1389,1,"ROCHE POINTUE",45.073582,5.543277,,1,,Europe/Paris,,O38, +O38:SA:CTP1391,1,"LES LOMBARDS",45.077324,5.573708,,1,,Europe/Paris,,O38, +O38:SA:CTP1393,1,"CHABERTS-MOURETS",45.074103,5.572333,,1,,Europe/Paris,,O38, +O38:SA:CTP13930,1,"L'ISLE-LYCEE.COLLEGE",45.505505,4.851698,,1,,Europe/Paris,,O38, +O38:SA:CTP1396,1,"LA BALMETTE",45.058102,5.545397,,1,,Europe/Paris,,O38, +O38:SA:CTP1400,1,"COULEUR SOLEIL-GRAND ADRET",45.068629,5.556877,,1,,Europe/Paris,,O38, +O38:SA:CTP1403,1,"CONTERIE-ELF ANTAR",45.073903,5.553961,,1,,Europe/Paris,,O38, +O38:SA:CTP1405,1,"LES COCHETTES",45.068159,5.566871,,1,,Europe/Paris,,O38, +O38:SA:CTP1408,1,"MAEVA LA CROIX MARGAUT",45.071945,5.555848,,1,,Europe/Paris,,O38, +O38:SA:CTP1412,1,"LES BAINS",45.067534,5.552602,,1,,Europe/Paris,,O38, +O38:SA:CTP14133,1,"CROIX BLANCHE",45.601841,5.229068,,1,,Europe/Paris,,O38, +O38:SA:CTP1419,1,"LES GUIBERTS",45.038506,5.705746,,1,,Europe/Paris,,O38, +O38:SA:CTP14208,1,"VAUCANSON",45.590954,5.271748,,1,,Europe/Paris,,O38, +O38:SA:CTP1421,1,"LE BOUTEY",45.076722,5.725401,,1,,Europe/Paris,,O38, +O38:SA:CTP14212,1,"MAIRIE",45.586348,5.192572,,1,,Europe/Paris,,O38, +O38:SA:CTP1423,1,"CHEMIN DU CLOUD",45.071102,5.72289,,1,,Europe/Paris,,O38, +O38:SA:CTP1426,1,"LA PELISSIERE",45.070374,5.675072,,1,,Europe/Paris,,O38, +O38:SA:CTP1429,1,"LA TOUR",45.038253,5.704248,,1,,Europe/Paris,,O38, +O38:SA:CTP1431,1,"LES CONDAMINES",45.043782,5.706508,,1,,Europe/Paris,,O38, +O38:SA:CTP1434,1,"LE CANAL",45.05199,5.710358,,1,,Europe/Paris,,O38, +O38:SA:CTP14356,1,"STADE DE LA PRAIRIE",45.605855,5.165208,,1,,Europe/Paris,,O38, +O38:SA:CTP1438,1,"GENDARMERIE",45.053015,5.676641,,1,,Europe/Paris,,O38, +O38:SA:CTP1441,1,"LA RIVOIRE",45.050165,5.682847,,1,,Europe/Paris,,O38, +O38:SA:CTP1443,1,"LE CROZET",45.039752,5.671499,,1,,Europe/Paris,,O38, +O38:SA:CTP1445,1,"COLLEGE LE MASSEGU",45.052392,5.672033,,1,,Europe/Paris,,O38, +O38:SA:CTP1447,1,"LES ISLES",45.048498,5.706529,,1,,Europe/Paris,,O38, +O38:SA:CTP1452,1,"LE CHALET",45.043468,5.664509,,1,,Europe/Paris,,O38, +O38:SA:CTP1456,1,"LA CIME DU BOURG",45.049076,5.669333,,1,,Europe/Paris,,O38, +O38:SA:CTP1460,1,"LES GARCINS",45.063523,5.669619,,1,,Europe/Paris,,O38, +O38:SA:CTP1464,1,"LA GRANGE",45.03919,5.661231,,1,,Europe/Paris,,O38, +O38:SA:CTP1468,1,"MAIRIE",45.055972,5.668534,,1,,Europe/Paris,,O38, +O38:SA:CTP1477,1,"CAR. ST-PIERRE-DE-MESAGE",45.059949,5.752448,,1,,Europe/Paris,,O38, +O38:SA:CTP1480,1,"LE PEAGE",45.057651,5.771076,,1,,Europe/Paris,,O38, +O38:SA:CTP1484,1,"LE MANIGUET",45.053089,5.77798,,1,,Europe/Paris,,O38, +O38:SA:CTP1488,1,"PLACE DU CHATEAU",45.074972,5.771961,,1,,Europe/Paris,,O38, +O38:SA:CTP14923,1,"LES GRANGES",44.735041,5.751815,,1,,Europe/Paris,,O38, +O38:SA:CTP14925,1,"GROUPE SCOLAIRE",44.82715,5.620003,,1,,Europe/Paris,,O38, +O38:SA:CTP14927,1,"VILLETTE",44.833571,5.746714,,1,,Europe/Paris,,O38, +O38:SA:CTP14929,1,"LE GRAND MOULIN",45.135078,5.527026,,1,,Europe/Paris,,O38, +O38:SA:CTP1493,1,"CAR.ROUTE DE MONTALEY",45.07167,5.757724,,1,,Europe/Paris,,O38, +O38:SA:CTP14931,1,"Z.A CHARANCIEU",45.529874,5.589562,,1,,Europe/Paris,,O38, +O38:SA:CTP14933,1,"CHEMIN DE LA CROIX VERTE",45.220881,5.810794,,1,,Europe/Paris,,O38, +O38:SA:CTP14935,1,"LE PRIEURE",45.225647,5.811564,,1,,Europe/Paris,,O38, +O38:SA:CTP14937,1,"CHARMILLES AVANT LA CROIX",45.583114,5.62438,,1,,Europe/Paris,,O38, +O38:SA:CTP14939,1,"MONTEE DES ROSSIERES",45.422283,4.834042,,1,,Europe/Paris,,O38, +O38:SA:CTP14945,1,"CROIX DROGUET",45.60593,5.461595,,1,,Europe/Paris,,O38, +O38:SA:CTP14947,1,"FOYER SKI DE FOND",45.116361,5.404234,,1,,Europe/Paris,,O38, +O38:SA:CTP14961,1,"LES FORGES",45.077494,5.768538,,1,,Europe/Paris,,O38, +O38:SA:CTP14964,1,"LE COLEO",45.433884,6.007413,,1,,Europe/Paris,,O38, +O38:SA:CTP14992,1,"Z.A. CHAMP 7 LAUX",45.28502,5.93499,,1,,Europe/Paris,,O38, +O38:SA:CTP14994,1,"PONT ROUGE",45.11686,6.014628,,1,,Europe/Paris,,O38, +O38:SA:CTP14998,1,"GOUFFRE DE LA CROIX",45.064556,5.39322,,1,,Europe/Paris,,O38, +O38:SA:CTP15000,1,"LE VIEUX PONT",45.338391,4.847699,,1,,Europe/Paris,,O38, +O38:SA:CTP1501,1,"CAR.ROUTE DE ST-SAUVEUR",45.066623,5.753931,,1,,Europe/Paris,,O38, +O38:SA:CTP15024,1,"LE MOULIN",45.230686,5.819229,,1,,Europe/Paris,,O38, +O38:SA:CTP15026,1,"LA REMISE",45.069355,5.321518,,1,,Europe/Paris,,O38, +O38:SA:CTP15028,1,"LE BRASSARD LA COTE",45.632316,5.482478,,1,,Europe/Paris,,O38, +O38:SA:CTP1503,1,"LYCEE",45.069107,5.766709,,1,,Europe/Paris,,O38, +O38:SA:CTP15030,1,"SALLE DES FETES",45.590491,5.607512,,1,,Europe/Paris,,O38, +O38:SA:CTP15032,1,"LES APPERTS",45.3525,4.899567,,1,,Europe/Paris,,O38, +O38:SA:CTP15055,1,"GOUVOUX PIERRE BRUNE",45.710615,5.521927,,1,,Europe/Paris,,O38, +O38:SA:CTP15080,1,"BEPTENAZ",45.732312,5.258318,,1,,Europe/Paris,,O38, +O38:SA:CTP15082,1,"MOLARD VIRET",45.771877,5.44713,,1,,Europe/Paris,,O38, +O38:SA:CTP15084,1,"LES REINETTES",45.639852,5.196279,,1,,Europe/Paris,,O38, +O38:SA:CTP15086,1,"CAVE ET VIDOS",45.260094,5.374419,,1,,Europe/Paris,,O38, +O38:SA:CTP15088,1,"LE CORNIOLAY",45.827861,5.410654,,1,,Europe/Paris,,O38, +O38:SA:CTP15090,1,"LES GARNIERS",45.630481,5.447524,,1,,Europe/Paris,,O38, +O38:SA:CTP15092,1,"SAPEURS POMPIERS",45.21001,5.405338,,1,,Europe/Paris,,O38, +O38:SA:CTP15109,1,"RIOUPEROUX-MAIRIE",45.091779,5.903288,,1,,Europe/Paris,,O38, +O38:SA:CTP15119,1,"LES GLOVETTES",45.052276,5.562927,,1,,Europe/Paris,,O38, +O38:SA:CTP1512,1,"LE LAC MORT",45.035107,5.794906,,1,,Europe/Paris,,O38, +O38:SA:CTP15120,1,"LES GORGES",45.093795,5.526925,,1,,Europe/Paris,,O38, +O38:SA:CTP15122,1,"RODET",44.835382,5.739812,,1,,Europe/Paris,,O38, +O38:SA:CTP15124,1,"SENDON",44.82218,5.673625,,1,,Europe/Paris,,O38, +O38:SA:CTP15126,1,"PONT DES VANNES",45.110598,5.708395,,1,,Europe/Paris,,O38, +O38:SA:CTP15132,1,"CASSEROUSSE",45.141198,5.888197,,1,,Europe/Paris,,O38, +O38:SA:CTP15134,1,"MAISON DOIZE",45.429684,5.241998,,1,,Europe/Paris,,O38, +O38:SA:CTP15136,1,"CHEMIN SUR CORDIER",45.430917,5.011512,,1,,Europe/Paris,,O38, +O38:SA:CTP15137,1,"TARENTEY",45.508129,5.60476,,1,,Europe/Paris,,O38, +O38:SA:CTP15139,1,"LES PALLETEAUX D16B",45.594257,5.465897,,1,,Europe/Paris,,O38, +O38:SA:CTP1515,1,"LE VILLAGE",45.05361,5.834725,,1,,Europe/Paris,,O38, +O38:SA:CTP15161,1,"LES CHAMPS RD116",44.904629,5.690941,,1,,Europe/Paris,,O38, +O38:SA:CTP15180,1,"LE GILLIER",45.4331,4.939092,,1,,Europe/Paris,,O38, +O38:SA:CTP15182,1,"LES ALLEMANDS",44.95755,5.813826,,1,,Europe/Paris,,O38, +O38:SA:CTP1519,1,"LE VILLAGE",45.044459,5.826094,,1,,Europe/Paris,,O38, +O38:SA:CTP15198,1,"CHANTEFEUILLE",45.080558,5.774662,,1,,Europe/Paris,,O38, +O38:SA:CTP15203,1,"LE LICHOUD RD18",45.634926,5.24417,,1,,Europe/Paris,,O38, +O38:SA:CTP15206,1,"DAUPHINE",45.649575,5.100082,,1,,Europe/Paris,,O38, +O38:SA:CTP15211,1,"PRE DE L'EAU ROND POINT",45.223914,5.820373,,1,,Europe/Paris,,O38, +O38:SA:CTP15222,1,"LES MOINES",45.592555,5.211698,,1,,Europe/Paris,,O38, +O38:SA:CTP15243,1,"PLAINE",45.563967,5.968438,,1,,Europe/Paris,,O38, +O38:SA:CTP15247,1,"HERPIEUX",45.31955,4.837545,,1,,Europe/Paris,,O38, +O38:SA:CTP15249,1,"LE PLATRE",45.621827,5.060752,,1,,Europe/Paris,,O38, +O38:SA:CTP1525,1,"BELLE LAUZE",45.047533,5.845381,,1,,Europe/Paris,,O38, +O38:SA:CTP15251,1,"FRANCOIS TRUFFAUT",45.387454,4.780541,,1,,Europe/Paris,,O38, +O38:SA:CTP15253,1,"CHEMIN DE SAMBILLOT",45.459506,4.82208,,1,,Europe/Paris,,O38, +O38:SA:CTP15257,1,"BEAUCHUZEL",45.428217,4.847169,,1,,Europe/Paris,,O38, +O38:SA:CTP15259,1,"DESSOUS LE CELLIER",45.059793,5.41181,,1,,Europe/Paris,,O38, +O38:SA:CTP15261,1,"ALBERGES CENTRE",45.033252,6.067189,,1,,Europe/Paris,,O38, +O38:SA:CTP15262,1,"LES ACHARDS",44.83342,5.926788,,1,,Europe/Paris,,O38, +O38:SA:CTP15265,1,"RUE DES LAVANDES",45.154154,5.335818,,1,,Europe/Paris,,O38, +O38:SA:CTP15267,1,"BOURG",45.294377,5.236627,,1,,Europe/Paris,,O38, +O38:SA:CTP15269,1,"LES ANTONINS",45.337589,5.820416,,1,,Europe/Paris,,O38, +O38:SA:CTP15271,1,"PONT DE LA DIAT",45.33988,5.80797,,1,,Europe/Paris,,O38, +O38:SA:CTP15273,1,"TELECABINE",45.344528,5.816663,,1,,Europe/Paris,,O38, +O38:SA:CTP15274,1,"PHARMACIE",45.279692,5.539261,,1,,Europe/Paris,,O38, +O38:SA:CTP15277,1,"LE RIVIER",45.380057,5.492697,,1,,Europe/Paris,,O38, +O38:SA:CTP15279,1,"CONDILLAC UNIVERSITES",45.189347,5.774464,,1,,Europe/Paris,,O38, +O38:SA:CTP1528,1,"LE SAPPEY",45.037943,5.809352,,1,,Europe/Paris,,O38, +O38:SA:CTP15288,1,"GAGNAGES",45.35469,5.303098,,1,,Europe/Paris,,O38, +O38:SA:CTP15292,1,"PRE BOREL",45.2738,5.480964,,1,,Europe/Paris,,O38, +O38:SA:CTP15297,1,"Z.I REVENTIN VAUGRIS",45.458814,4.825319,,1,,Europe/Paris,,O38, +O38:SA:CTP15298,1,"MONTEE DE BUCLAY",45.602899,5.550558,,1,,Europe/Paris,,O38, +O38:SA:CTP1530,1,"JEAN PONCET",45.03168,5.851977,,1,,Europe/Paris,,O38, +O38:SA:CTP15300,1,"CLOS MARGOT",45.067389,5.562888,,1,,Europe/Paris,,O38, +O38:SA:CTP1533,1,"LA GARE",45.053414,5.829406,,1,,Europe/Paris,,O38, +O38:SA:CTP1539,1,"ECOLE",45.029106,5.856351,,1,,Europe/Paris,,O38, +O38:SA:CTP15404,1,"VIGNOZET",45.616081,5.466723,,1,,Europe/Paris,,O38, +O38:SA:CTP15407,1,"ECOLE",45.046467,6.08634,,1,,Europe/Paris,,O38, +O38:SA:CTP15409,1,"GARE ROUTIERE",45.341642,5.341651,,1,,Europe/Paris,,O38, +O38:SA:CTP15412,1,"LEYGAT",44.89825,5.922039,,1,,Europe/Paris,,O38, +O38:SA:CTP15414,1,"HAUT DE LA COMBE",45.311044,5.312264,,1,,Europe/Paris,,O38, +O38:SA:CTP15419,1,"LE STADE",45.525061,5.352962,,1,,Europe/Paris,,O38, +O38:SA:CTP1542,1,"GAVET PISCINE",45.0664,5.869027,,1,,Europe/Paris,,O38, +O38:SA:CTP15421,1,"LE GILET",45.318758,5.338215,,1,,Europe/Paris,,O38, +O38:SA:CTP15425,1,"AGENCE TRANSISERE VFD",45.05841,6.028539,,1,,Europe/Paris,,O38, +O38:SA:CTP15438,1,"LA BOURGEAT 2",45.189021,5.863376,,1,,Europe/Paris,,O38, +O38:SA:CTP1544,1,"GAVET",45.067872,5.8716,,1,,Europe/Paris,,O38, +O38:SA:CTP15454,1,"ANCIENNE ECOLE",45.438454,5.771518,,1,,Europe/Paris,,O38, +O38:SA:CTP1546,1,"LE PONT",45.027259,5.858113,,1,,Europe/Paris,,O38, +O38:SA:CTP15460,1,"LES FLANDRES",45.58967,5.62916,,1,,Europe/Paris,,O38, +O38:SA:CTP15477,1,"LES CELESTES",45.524088,4.878152,,1,,Europe/Paris,,O38, +O38:SA:CTP1548,1,"GAVET-ECOLE",45.069818,5.873229,,1,,Europe/Paris,,O38, +O38:SA:CTP15492,1,"MARIGNIEU RD",45.813053,5.299418,,1,,Europe/Paris,,O38, +O38:SA:CTP15494,1,"LE SILO",45.38837,5.117468,,1,,Europe/Paris,,O38, +O38:SA:CTP15496,1,"ECOLES MAYETTE SEQUOIA",45.208963,5.406451,,1,,Europe/Paris,,O38, +O38:SA:CTP1550,1,"VILLAGE",45.047899,5.977005,,1,,Europe/Paris,,O38, +O38:SA:CTP15503,1,"ECOLE",45.753507,5.330739,,1,,Europe/Paris,,O38, +O38:SA:CTP15505,1,"CHEMIN DES CHARBONNIERES",45.665012,5.429187,,1,,Europe/Paris,,O38, +O38:SA:CTP15507,1,"PARKING RELAIS MANDRIN",45.342245,5.338299,,1,,Europe/Paris,,O38, +O38:SA:CTP1552,1,"LA POYAT",45.041382,5.977461,,1,,Europe/Paris,,O38, +O38:SA:CTP15526,1,"GROUPE SCOLAIRE",45.572211,5.426426,,1,,Europe/Paris,,O38, +O38:SA:CTP1554,1,"PONT DES OULLES",45.0394,5.977939,,1,,Europe/Paris,,O38, +O38:SA:CTP1556,1,"LA GRENONIERE",45.051572,5.975036,,1,,Europe/Paris,,O38, +O38:SA:CTP1558,1,"LA PALLUD D'ORNON",45.051383,5.987828,,1,,Europe/Paris,,O38, +O38:SA:CTP15587,1,"MARTYRS - RESISTANCE",45.207896,5.697087,,1,,Europe/Paris,,O38, +O38:SA:CTP15589,1,"ROUTE DE ST GERVAIS",45.204374,5.471975,,1,,Europe/Paris,,O38, +O38:SA:CTP15591,1,"LYCEE GALILEE",45.504145,4.854774,,1,,Europe/Paris,,O38, +O38:SA:CTP15593,1,"CANTINE",45.098798,5.250692,,1,,Europe/Paris,,O38, +O38:SA:CTP15595,1,"MATERNELLE GARE",45.075142,5.247023,,1,,Europe/Paris,,O38, +O38:SA:CTP15597,1,"PRIMAIRE GARE",45.07306,5.245492,,1,,Europe/Paris,,O38, +O38:SA:CTP15599,1,"PRIMAIRE VILLAGE",45.100491,5.247768,,1,,Europe/Paris,,O38, +O38:SA:CTP1560,1,"LE RIVIER",45.029294,5.974012,,1,,Europe/Paris,,O38, +O38:SA:CTP15601,1,"LES HAUTS DE ST ROCH",45.576618,5.443523,,1,,Europe/Paris,,O38, +O38:SA:CTP15603,1,"LES PRES DE ST ROCH",45.573157,5.435912,,1,,Europe/Paris,,O38, +O38:SA:CTP15605,1,"ECOLE",45.718529,5.294785,,1,,Europe/Paris,,O38, +O38:SA:CTP1562,1,"LA POUTHUIRE",45.037543,5.976801,,1,,Europe/Paris,,O38, +O38:SA:CTP1564,1,"LE VERT",45.039435,6.040195,,1,,Europe/Paris,,O38, +O38:SA:CTP1568,1,"LA RIVE",45.042074,6.042678,,1,,Europe/Paris,,O38, +O38:SA:CTP1571,1,"PAGANON",45.090364,6.065419,,1,,Europe/Paris,,O38, +O38:SA:CTP1576,1,"ECOLE PRIMAIRE CENTRE",45.052564,6.029509,,1,,Europe/Paris,,O38, +O38:SA:CTP15780,1,"AVENUE DE LA GARE",45.300927,5.489862,,1,,Europe/Paris,,O38, +O38:SA:CTP1580,1,"MATERNELLE LA FARE",45.052196,6.029533,,1,,Europe/Paris,,O38, +O38:SA:CTP1582,1,"OFFICE DE TOURISME",45.054771,6.031556,,1,,Europe/Paris,,O38, +O38:SA:CTP1584,1,"LE COUARD",45.045899,6.047209,,1,,Europe/Paris,,O38, +O38:SA:CTP1586,1,"SARENNES-LA BERGERIE",45.063767,6.038398,,1,,Europe/Paris,,O38, +O38:SA:CTP1588,1,"COLLEGE LES 6 VALLEES",45.056552,6.025939,,1,,Europe/Paris,,O38, +O38:SA:CTP1590,1,"LE VERNIS",45.048852,6.051175,,1,,Europe/Paris,,O38, +O38:SA:CTP15906,1,"LE LOING",44.837156,5.779332,,1,,Europe/Paris,,O38, +O38:SA:CTP15908,1,"CHATEAU BAS POSTE",44.743505,5.749962,,1,,Europe/Paris,,O38, +O38:SA:CTP15910,1,"VILLAGE POINT PROPRE",45.203301,5.217246,,1,,Europe/Paris,,O38, +O38:SA:CTP15912,1,"MAIRIE",44.961294,5.553387,,1,,Europe/Paris,,O38, +O38:SA:CTP15914,1,"HOTEL DE VILLE-CHANRION",45.187979,5.738417,,1,,Europe/Paris,,O38, +O38:SA:CTP1592,1,"LA MORLIERE",45.062175,6.025496,,1,,Europe/Paris,,O38, +O38:SA:CTP15937,1,"LES PAILLERES",45.343269,5.045742,,1,,Europe/Paris,,O38, +O38:SA:CTP15942,1,"IMPASSE DU PETIT MOULIN",44.926296,5.637379,,1,,Europe/Paris,,O38, +O38:SA:CTP15943,1,"DURAND SAVOYAT",45.199376,5.712851,,1,,Europe/Paris,,O38, +O38:SA:CTP15945,1,"SOUS CUMANE",45.140352,5.334381,,1,,Europe/Paris,,O38, +O38:SA:CTP15947,1,"LA CHAPELANIERE",45.551299,4.936096,,1,,Europe/Paris,,O38, +O38:SA:CTP15951,1,"BONNETON",45.084497,5.579153,,1,,Europe/Paris,,O38, +O38:SA:CTP15953,1,"CHENEVARIE",44.970956,5.558652,,1,,Europe/Paris,,O38, +O38:SA:CTP15955,1,"LA COMBE",44.969651,5.555321,,1,,Europe/Paris,,O38, +O38:SA:CTP15957,1,"MASETEYRE CHATEAU",44.973508,5.569696,,1,,Europe/Paris,,O38, +O38:SA:CTP15959,1,"PONTEIL",44.973223,5.560818,,1,,Europe/Paris,,O38, +O38:SA:CTP15961,1,"BOUCHIER",44.959709,5.561466,,1,,Europe/Paris,,O38, +O38:SA:CTP15963,1,"CHAPELLE ST ROCH",45.219459,5.495158,,1,,Europe/Paris,,O38, +O38:SA:CTP15965,1,"TEISSEIRE",45.272327,5.887553,,1,,Europe/Paris,,O38, +O38:SA:CTP15968,1,"LE PERRIER",45.151519,6.065156,,1,,Europe/Paris,,O38, +O38:SA:CTP15971,1,"SALLE DES FETES",45.146634,5.376335,,1,,Europe/Paris,,O38, +O38:SA:CTP15973,1,"LES ARNAUDS",45.207551,5.849187,,1,,Europe/Paris,,O38, +O38:SA:CTP1598,1,"LE PARADIS",45.046382,6.038291,,1,,Europe/Paris,,O38, +O38:SA:CTP16013,1,"CHEMIN DE LA ROCHE",45.090075,5.341726,,1,,Europe/Paris,,O38, +O38:SA:CTP1602,1,"LES CROISETTES",45.057852,6.039766,,1,,Europe/Paris,,O38, +O38:SA:CTP16028,1,"LE MOLLARD LE BAS",44.960232,5.717174,,1,,Europe/Paris,,O38, +O38:SA:CTP1604,1,"CHAMPROND",45.047437,6.122781,,1,,Europe/Paris,,O38, +O38:SA:CTP1606,1,"LE CLAPIER",45.029004,6.071102,,1,,Europe/Paris,,O38, +O38:SA:CTP16077,1,"HAMEAU LA RIVIERE",45.085539,5.210143,,1,,Europe/Paris,,O38, +O38:SA:CTP1608,1,"LES COURS",45.050693,6.083363,,1,,Europe/Paris,,O38, +O38:SA:CTP16090,1,"CHAMP DE FOIRE",44.682813,6.077344,,1,,Europe/Paris,,O38, +O38:SA:CTP16091,1,"BEAU SITE",45.113927,5.70566,,1,,Europe/Paris,,O38, +O38:SA:CTP1611,1,"BONS",45.035111,6.115058,,1,,Europe/Paris,,O38, +O38:SA:CTP16124,1,"LA FOURCHAT",45.31113,5.385161,,1,,Europe/Paris,,O38, +O38:SA:CTP1614,1,"LE PUY",45.046608,6.115199,,1,,Europe/Paris,,O38, +O38:SA:CTP1619,1,"OFFICE DE TOURISME",45.055857,6.077529,,1,,Europe/Paris,,O38, +O38:SA:CTP1622,1,"LES CHATAINS",45.046609,6.09237,,1,,Europe/Paris,,O38, +O38:SA:CTP1624,1,"LE CERT",45.040592,6.079904,,1,,Europe/Paris,,O38, +O38:SA:CTP1625,1,"LA BALME",45.037129,6.081024,,1,,Europe/Paris,,O38, +O38:SA:CTP1626,1,"LA RIVOIRE",45.032455,6.089347,,1,,Europe/Paris,,O38, +O38:SA:CTP1628,1,"LE GARCIN",45.036347,6.093153,,1,,Europe/Paris,,O38, +O38:SA:CTP1631,1,"LE VILLAGE",45.043315,6.124521,,1,,Europe/Paris,,O38, +O38:SA:CTP1634,1,"L'EGLISE",45.046092,6.120699,,1,,Europe/Paris,,O38, +O38:SA:CTP1642,1,"BARRAGE DU CHAMBON",45.044902,6.136234,,1,,Europe/Paris,,O38, +O38:SA:CTP1645,1,"STATION - POINT INFO",45.01755,6.124786,,1,,Europe/Paris,,O38, +O38:SA:CTP1650,1,"LES CHAZEAUX",45.047804,6.125358,,1,,Europe/Paris,,O38, +O38:SA:CTP1652,1,"MIZOEN",45.049937,6.142482,,1,,Europe/Paris,,O38, +O38:SA:CTP1654,1,"STATION - EQUIPEMENT",45.02009,6.123438,,1,,Europe/Paris,,O38, +O38:SA:CTP1656,1,"LES PINETS",45.09224,5.189804,,1,,Europe/Paris,,O38, +O38:SA:CTP1658,1,"MONTENA LA CROIX",45.105448,5.187155,,1,,Europe/Paris,,O38, +O38:SA:CTP1660,1,"LE POING",45.094021,5.188985,,1,,Europe/Paris,,O38, +O38:SA:CTP1662,1,"CARREFOUR ROMEYERE",45.116168,5.194337,,1,,Europe/Paris,,O38, +O38:SA:CTP1663,1,"LES TERROTS",45.098338,5.184593,,1,,Europe/Paris,,O38, +O38:SA:CTP1665,1,"LES MURONNIERES",45.119649,5.196265,,1,,Europe/Paris,,O38, +O38:SA:CTP1667,1,"HAMEAU MAGUIERE",45.109308,5.188079,,1,,Europe/Paris,,O38, +O38:SA:CTP1668,1,"GRD CHAMP(CLAPET)",45.130353,5.211402,,1,,Europe/Paris,,O38, +O38:SA:CTP1669,1,"BOIS ROUSSET",45.126229,5.202135,,1,,Europe/Paris,,O38, +O38:SA:CTP1670,1,"CAR.MONTLOUBET",45.137154,5.261454,,1,,Europe/Paris,,O38, +O38:SA:CTP1672,1,"BOURG",45.125659,5.231008,,1,,Europe/Paris,,O38, +O38:SA:CTP1674,1,"FERME ROZAND",45.099546,5.256105,,1,,Europe/Paris,,O38, +O38:SA:CTP1676,1,"LES THOMASSONS",45.133126,5.247363,,1,,Europe/Paris,,O38, +O38:SA:CTP1678,1,"GRANDE GRANGE",45.119684,5.240915,,1,,Europe/Paris,,O38, +O38:SA:CTP1680,1,"LES CARRES",45.116135,5.239837,,1,,Europe/Paris,,O38, +O38:SA:CTP1682,1,"ECOLE",45.125551,5.23105,,1,,Europe/Paris,,O38, +O38:SA:CTP1684,1,"LES ROBERTS-CROIX",45.114237,5.22609,,1,,Europe/Paris,,O38, +O38:SA:CTP1686,1,"LA PLAINE D21",45.090161,5.250939,,1,,Europe/Paris,,O38, +O38:SA:CTP1688,1,"LE PERRIER",45.092978,5.226845,,1,,Europe/Paris,,O38, +O38:SA:CTP1690,1,"LE VILLAGE",45.100812,5.247251,,1,,Europe/Paris,,O38, +O38:SA:CTP1692,1,"CAR.LE MOULIN",45.110509,5.211477,,1,,Europe/Paris,,O38, +O38:SA:CTP1694,1,"LA PLAINE",45.127987,5.240408,,1,,Europe/Paris,,O38, +O38:SA:CTP1695,1,"LES SABLES",45.131133,5.232428,,1,,Europe/Paris,,O38, +O38:SA:CTP1696,1,"LES TERRAS",45.114764,5.218333,,1,,Europe/Paris,,O38, +O38:SA:CTP1698,1,"LE PILON-LE MAS",45.118212,5.217337,,1,,Europe/Paris,,O38, +O38:SA:CTP1700,1,"LE FAYET",45.096725,5.220268,,1,,Europe/Paris,,O38, +O38:SA:CTP1702,1,"LE GRAND FAYET",45.099924,5.223603,,1,,Europe/Paris,,O38, +O38:SA:CTP1704,1,"LE POUYET",45.110895,5.200827,,1,,Europe/Paris,,O38, +O38:SA:CTP1706,1,"LES SABLIERES",45.106521,5.209939,,1,,Europe/Paris,,O38, +O38:SA:CTP1707,1,"GARAGE FLANDRIN",45.098001,5.239862,,1,,Europe/Paris,,O38, +O38:SA:CTP1709,1,"LE PLUMET",45.134534,5.216977,,1,,Europe/Paris,,O38, +O38:SA:CTP1711,1,"LE SILO",45.105109,5.258589,,1,,Europe/Paris,,O38, +O38:SA:CTP1713,1,"TREMOLE",45.125345,5.217422,,1,,Europe/Paris,,O38, +O38:SA:CTP1715,1,"LE DONGER",45.128277,5.255552,,1,,Europe/Paris,,O38, +O38:SA:CTP1717,1,"BAS GERVAN",45.12745,5.310105,,1,,Europe/Paris,,O38, +O38:SA:CTP1719,1,"COTE GALET FORAS",45.137076,5.271549,,1,,Europe/Paris,,O38, +O38:SA:CTP1720,1,"BEAUVOIR-BARRAGE",45.123832,5.321744,,1,,Europe/Paris,,O38, +O38:SA:CTP1722,1,"GRALERE",45.134894,5.303678,,1,,Europe/Paris,,O38, +O38:SA:CTP1724,1,"CHAMP RAILLET",45.124872,5.276153,,1,,Europe/Paris,,O38, +O38:SA:CTP1726,1,"LA CROISEE DE ST-JUST",45.08988,5.299291,,1,,Europe/Paris,,O38, +O38:SA:CTP1728,1,"LES SAGNES",45.094495,5.288384,,1,,Europe/Paris,,O38, +O38:SA:CTP1730,1,"CAR.BERTIQUIERE",45.125016,5.30555,,1,,Europe/Paris,,O38, +O38:SA:CTP1732,1,"AVANT CARREF.SEILLERE",45.135364,5.309552,,1,,Europe/Paris,,O38, +O38:SA:CTP1735,1,"PLAINE DE GERVAN",45.133068,5.313936,,1,,Europe/Paris,,O38, +O38:SA:CTP1736,1,"MONTMARTEL",45.128629,5.268002,,1,,Europe/Paris,,O38, +O38:SA:CTP1738,1,"FORAS",45.136846,5.268863,,1,,Europe/Paris,,O38, +O38:SA:CTP1740,1,"LES CIGALES-(GRALERE)",45.135599,5.29933,,1,,Europe/Paris,,O38, +O38:SA:CTP1742,1,"CARREF. L'ALLIERE",45.107625,5.268584,,1,,Europe/Paris,,O38, +O38:SA:CTP1744,1,"AU MATRERE",45.108145,5.270019,,1,,Europe/Paris,,O38, +O38:SA:CTP1746,1,"BOURG",45.111851,5.27903,,1,,Europe/Paris,,O38, +O38:SA:CTP1748,1,"LA FERME BLANCHE",45.121743,5.284987,,1,,Europe/Paris,,O38, +O38:SA:CTP1750,1,"LE SIBERT",45.097764,5.269397,,1,,Europe/Paris,,O38, +O38:SA:CTP1752,1,"L'IMAGE",45.112257,5.263599,,1,,Europe/Paris,,O38, +O38:SA:CTP1754,1,"LA GARE",45.124226,5.280057,,1,,Europe/Paris,,O38, +O38:SA:CTP1756,1,"LA SEREE",45.110839,5.274838,,1,,Europe/Paris,,O38, +O38:SA:CTP1758,1,"LE VILLAGE",45.114799,5.327264,,1,,Europe/Paris,,O38, +O38:SA:CTP1760,1,"LA CROIX DE L'IMAGE",45.116206,5.268934,,1,,Europe/Paris,,O38, +O38:SA:CTP1762,1,"CALAIS",45.104548,5.313373,,1,,Europe/Paris,,O38, +O38:SA:CTP1764,1,"LE BOIS DE CLAIX D71",45.108212,5.278743,,1,,Europe/Paris,,O38, +O38:SA:CTP1766,1,"CROISEE ST-JUST",45.090537,5.299246,,1,,Europe/Paris,,O38, +O38:SA:CTP1768,1,"LA CROISEE",45.128125,5.285443,,1,,Europe/Paris,,O38, +O38:SA:CTP1770,1,"LES CONDAMINES",45.112623,5.321519,,1,,Europe/Paris,,O38, +O38:SA:CTP1772,1,"PROPRIETE VIENNOISE",45.101829,5.280303,,1,,Europe/Paris,,O38, +O38:SA:CTP1774,1,"LES SAGNES",45.091078,5.296558,,1,,Europe/Paris,,O38, +O38:SA:CTP1776,1,"BARRAGE DE BEAUVOIR",45.124194,5.323365,,1,,Europe/Paris,,O38, +O38:SA:CTP1778,1,"4 ROUTES",45.116735,5.32683,,1,,Europe/Paris,,O38, +O38:SA:CTP1780,1,"LES BARILLATS",45.099248,5.308035,,1,,Europe/Paris,,O38, +O38:SA:CTP1782,1,"LES FAURIES",45.102275,5.391384,,1,,Europe/Paris,,O38, +O38:SA:CTP1784,1,"BOURG",45.091926,5.382709,,1,,Europe/Paris,,O38, +O38:SA:CTP1788,1,"LES COURTIOUX",45.093934,5.342032,,1,,Europe/Paris,,O38, +O38:SA:CTP1792,1,"L'ILE",45.132324,5.360242,,1,,Europe/Paris,,O38, +O38:SA:CTP1793,1,"L'ILE",45.135055,5.362454,,1,,Europe/Paris,,O38, +O38:SA:CTP1794,1,"LE MOURLIET",45.125926,5.365882,,1,,Europe/Paris,,O38, +O38:SA:CTP1796,1,"FERME CADET",45.131473,5.363247,,1,,Europe/Paris,,O38, +O38:SA:CTP1798,1,"LE CARRA",45.125274,5.348567,,1,,Europe/Paris,,O38, +O38:SA:CTP1800,1,"GAILLARDONNIERES",45.109035,5.334034,,1,,Europe/Paris,,O38, +O38:SA:CTP1802,1,"MONTEUX",45.098578,5.340868,,1,,Europe/Paris,,O38, +O38:SA:CTP1805,1,"BOURG",45.12146,5.362146,,1,,Europe/Paris,,O38, +O38:SA:CTP1806,1,"CHEMIN LACHAT",45.124211,5.359274,,1,,Europe/Paris,,O38, +O38:SA:CTP1808,1,"AUBERGE DU FAZ",45.115489,5.399906,,1,,Europe/Paris,,O38, +O38:SA:CTP1809,1,"LES RIMETS",45.112061,5.459774,,1,,Europe/Paris,,O38, +O38:SA:CTP1812,1,"LA ROCHETTE",45.108328,5.397036,,1,,Europe/Paris,,O38, +O38:SA:CTP1814,1,"LA COTE",45.127528,5.47224,,1,,Europe/Paris,,O38, +O38:SA:CTP1817,1,"MEAUDRE PLACE",45.127558,5.527424,,1,,Europe/Paris,,O38, +O38:SA:CTP1820,1,"MEAUDRE ECOLE",45.125937,5.525458,,1,,Europe/Paris,,O38, +O38:SA:CTP1822,1,"LA ROCHETTE",45.129247,5.475572,,1,,Europe/Paris,,O38, +O38:SA:CTP1824,1,"LE VIOLON",45.111952,5.471549,,1,,Europe/Paris,,O38, +O38:SA:CTP1826,1,"BALME MATERNELLE",45.088123,5.467862,,1,,Europe/Paris,,O38, +O38:SA:CTP1828,1,"BOURG",45.104067,5.473225,,1,,Europe/Paris,,O38, +O38:SA:CTP1830,1,"LA LAUZE",45.10832,5.471011,,1,,Europe/Paris,,O38, +O38:SA:CTP1832,1,"ECOLE PRIMAIRE",45.102631,5.472254,,1,,Europe/Paris,,O38, +O38:SA:CTP1834,1,"LA FEUILLETIERE",45.108073,5.472777,,1,,Europe/Paris,,O38, +O38:SA:CTP1836,1,"CHEMIN DES POURROIS",45.12537,5.476407,,1,,Europe/Paris,,O38, +O38:SA:CTP1839,1,"LES JARRANDS",45.085449,5.525115,,1,,Europe/Paris,,O38, +O38:SA:CTP1842,1,"LE SERVET",45.109982,5.470272,,1,,Europe/Paris,,O38, +O38:SA:CTP1844,1,"CORDET",45.09661,5.470869,,1,,Europe/Paris,,O38, +O38:SA:CTP1847,1,"LES COTES DE LANS",45.10165,5.560876,,1,,Europe/Paris,,O38, +O38:SA:CTP1850,1,"LE VIEUX MOULIN",45.12274,5.530525,,1,,Europe/Paris,,O38, +O38:SA:CTP1853,1,"LES MORETS",45.116655,5.531627,,1,,Europe/Paris,,O38, +O38:SA:CTP1857,1,"BOUILLY",45.110564,5.566745,,1,,Europe/Paris,,O38, +O38:SA:CTP1861,1,"LES EYMARDS",45.117793,5.571857,,1,,Europe/Paris,,O38, +O38:SA:CTP1865,1,"MAIRIE",45.128175,5.588783,,1,,Europe/Paris,,O38, +O38:SA:CTP1868,1,"L'AIGLE",45.121966,5.588153,,1,,Europe/Paris,,O38, +O38:SA:CTP1870,1,"LE PEUIL",45.119564,5.587284,,1,,Europe/Paris,,O38, +O38:SA:CTP1872,1,"LES FRANCONS",45.106976,5.58049,,1,,Europe/Paris,,O38, +O38:SA:CTP1874,1,"MAISON FAVARIN",45.10037,5.579743,,1,,Europe/Paris,,O38, +O38:SA:CTP1876,1,"LES HERAUTS",45.098933,5.579676,,1,,Europe/Paris,,O38, +O38:SA:CTP1878,1,"LES GIRARDS",45.091992,5.579542,,1,,Europe/Paris,,O38, +O38:SA:CTP1881,1,"TRAFFET-PONT DES ANIERS",45.096725,5.55718,,1,,Europe/Paris,,O38, +O38:SA:CTP1884,1,"CHEMIN DES GEYMONDS",45.086354,5.55482,,1,,Europe/Paris,,O38, +O38:SA:CTP1886,1,"LES GEYMONDS",45.085118,5.554088,,1,,Europe/Paris,,O38, +O38:SA:CTP1889,1,"ROUTE DES NOBLES",45.084329,5.580189,,1,,Europe/Paris,,O38, +O38:SA:CTP1890,1,"VILLE VIEILLE",45.087127,5.569696,,1,,Europe/Paris,,O38, +O38:SA:CTP1892,1,"LES ARRIBERTS",45.086051,5.574912,,1,,Europe/Paris,,O38, +O38:SA:CTP1893,1,"POULATS-CARREFOUR",45.085783,5.560951,,1,,Europe/Paris,,O38, +O38:SA:CTP1894,1,"LES NOBLES",45.081634,5.575878,,1,,Europe/Paris,,O38, +O38:SA:CTP1897,1,"LES BERNARDS",45.127657,5.599329,,1,,Europe/Paris,,O38, +O38:SA:CTP1904,1,"LES DEUX PONTS",45.118736,5.701854,,1,,Europe/Paris,,O38, +O38:SA:CTP1906,1,"SAUT DU MOINE",45.094512,5.721393,,1,,Europe/Paris,,O38, +O38:SA:CTP1909,1,"ALLIERES ET RISSET",45.092965,5.683637,,1,,Europe/Paris,,O38, +O38:SA:CTP1915,1,"VARCES REPUBLIQUE",45.086091,5.6826,,1,,Europe/Paris,,O38, +O38:SA:CTP1920,1,"MARCELLINE",45.126006,5.698254,,1,,Europe/Paris,,O38, +O38:SA:CTP1924,1,"PAVILLON COLMARD",45.08415,5.728855,,1,,Europe/Paris,,O38, +O38:SA:CTP1934,1,"PONT DE CHAMP NAVARRE",45.08735,5.730289,,1,,Europe/Paris,,O38, +O38:SA:CTP1961,1,"COLLEGE LES MATTONS",45.086562,5.774935,,1,,Europe/Paris,,O38, +O38:SA:CTP1975,1,"LA GARE - RN85",45.083849,5.742355,,1,,Europe/Paris,,O38, +O38:SA:CTP1977,1,"PONT DE CHAMP",45.088524,5.73074,,1,,Europe/Paris,,O38, +O38:SA:CTP1991,1,"LES TRAVERS",45.091068,5.791587,,1,,Europe/Paris,,O38, +O38:SA:CTP2001,1,"L'ALLIANCE",45.081971,5.76825,,1,,Europe/Paris,,O38, +O38:SA:CTP2016,1,"MAISON BLANCHE",45.11068,5.804103,,1,,Europe/Paris,,O38, +O38:SA:CTP2020,1,"BELMONT",45.119938,5.828368,,1,,Europe/Paris,,O38, +O38:SA:CTP2023,1,"MONTGARDIER",45.115192,5.831082,,1,,Europe/Paris,,O38, +O38:SA:CTP2025,1,"LE FUJAREY",45.113542,5.836546,,1,,Europe/Paris,,O38, +O38:SA:CTP2039,1,"LES CLAVAUX",45.075968,5.88368,,1,,Europe/Paris,,O38, +O38:SA:CTP2041,1,"RIOUPEROUX-PONT(LA SALINIERE)",45.088744,5.901715,,1,,Europe/Paris,,O38, +O38:SA:CTP2045,1,"PIERRE EYBESSE",45.071401,5.874795,,1,,Europe/Paris,,O38, +O38:SA:CTP2047,1,"RIOUPEROUX-HLM",45.094148,5.905087,,1,,Europe/Paris,,O38, +O38:SA:CTP2049,1,"RIOUPEROUX-ECOLE",45.09279,5.904087,,1,,Europe/Paris,,O38, +O38:SA:CTP2051,1,"LES PONANTS",45.096103,5.908318,,1,,Europe/Paris,,O38, +O38:SA:CTP2053,1,"LES ROBERTS",45.101236,5.918123,,1,,Europe/Paris,,O38, +O38:SA:CTP2055,1,"MAIRIE",45.111137,5.874869,,1,,Europe/Paris,,O38, +O38:SA:CTP2058,1,"1750",45.109831,5.875382,,1,,Europe/Paris,,O38, +O38:SA:CTP2063,1,"LIVET DISPENSAIRE",45.108166,5.935999,,1,,Europe/Paris,,O38, +O38:SA:CTP2065,1,"LIVET",45.106239,5.930026,,1,,Europe/Paris,,O38, +O38:SA:CTP2067,1,"LIVET-ECOLE",45.107966,5.933285,,1,,Europe/Paris,,O38, +O38:SA:CTP2070,1,"LE VILLAGE",45.081239,6.059719,,1,,Europe/Paris,,O38, +O38:SA:CTP2074,1,"ROCHETAILLEE",45.114514,6.004455,,1,,Europe/Paris,,O38, +O38:SA:CTP2077,1,"LES ESSOULIEUX",45.069645,6.036723,,1,,Europe/Paris,,O38, +O38:SA:CTP2079,1,"LE VILLAGE",45.067363,6.04424,,1,,Europe/Paris,,O38, +O38:SA:CTP2081,1,"ECOLE",45.089105,6.068497,,1,,Europe/Paris,,O38, +O38:SA:CTP2083,1,"LES MORELLES",45.071827,6.018174,,1,,Europe/Paris,,O38, +O38:SA:CTP2085,1,"CHEMIN DES EFFONDS",45.104376,6.00806,,1,,Europe/Paris,,O38, +O38:SA:CTP2087,1,"LE BASSEY",45.075744,6.031064,,1,,Europe/Paris,,O38, +O38:SA:CTP2091,1,"LE RIBOT",45.075058,6.048129,,1,,Europe/Paris,,O38, +O38:SA:CTP2093,1,"LES SAGNES",45.091419,6.056404,,1,,Europe/Paris,,O38, +O38:SA:CTP2095,1,"LA PAUTE VILLAGE",45.074675,6.013735,,1,,Europe/Paris,,O38, +O38:SA:CTP2097,1,"LE HAUT",45.082226,6.059896,,1,,Europe/Paris,,O38, +O38:SA:CTP2099,1,"MAONA",45.084998,6.059966,,1,,Europe/Paris,,O38, +O38:SA:CTP2102,1,"ECOLES DES SABLES",45.097924,6.00968,,1,,Europe/Paris,,O38, +O38:SA:CTP2104,1,"EGLISE DES SABLES",45.092436,6.010887,,1,,Europe/Paris,,O38, +O38:SA:CTP2106,1,"L'ORDRE",45.082724,6.013156,,1,,Europe/Paris,,O38, +O38:SA:CTP2108,1,"LA PAUTE-PONT(RN91)",45.074195,6.016318,,1,,Europe/Paris,,O38, +O38:SA:CTP2117,1,"ROND POINT DE L'EUROPE",45.090621,6.074088,,1,,Europe/Paris,,O38, +O38:SA:CTP2120,1,"AVENUE DE L'ETENDARD",45.092778,6.06893,,1,,Europe/Paris,,O38, +O38:SA:CTP2127,1,"L'ECLOSE",45.087981,6.069128,,1,,Europe/Paris,,O38, +O38:SA:CTP2129,1,"ROND POINT DES PISTES",45.095644,6.070515,,1,,Europe/Paris,,O38, +O38:SA:CTP2135,1,"PARKING DES BERGERS",45.089623,6.076212,,1,,Europe/Paris,,O38, +O38:SA:CTP2138,1,"ECOLE",45.141474,5.192902,,1,,Europe/Paris,,O38, +O38:SA:CTP2140,1,"VILLAGE",45.140746,5.191647,,1,,Europe/Paris,,O38, +O38:SA:CTP2141,1,"MONTLOUBET",45.141352,5.257419,,1,,Europe/Paris,,O38, +O38:SA:CTP2143,1,"LE MAS DES ROUTES",45.15152,5.216164,,1,,Europe/Paris,,O38, +O38:SA:CTP2147,1,"LES MOLLES-GIRARDIERE",45.145604,5.252169,,1,,Europe/Paris,,O38, +O38:SA:CTP2149,1,"LA BRUYERE D68A",45.163126,5.202005,,1,,Europe/Paris,,O38, +O38:SA:CTP2151,1,"L'HOPITAL D68A",45.154877,5.203094,,1,,Europe/Paris,,O38, +O38:SA:CTP2153,1,"LES BOUDILLONS",45.139459,5.243471,,1,,Europe/Paris,,O38, +O38:SA:CTP2157,1,"CABARET NEUF",45.155019,5.256923,,1,,Europe/Paris,,O38, +O38:SA:CTP2159,1,"CROIX ROUGE",45.142789,5.198327,,1,,Europe/Paris,,O38, +O38:SA:CTP2161,1,"HAMEAU DES ROUTES-LA PINEDE",45.150525,5.208689,,1,,Europe/Paris,,O38, +O38:SA:CTP2163,1,"CROIX DE LA CAVE",45.150205,5.202254,,1,,Europe/Paris,,O38, +O38:SA:CTP2165,1,"LE TRUCHET D68",45.147364,5.19842,,1,,Europe/Paris,,O38, +O38:SA:CTP2167,1,"LES VOUREYS",45.152773,5.23314,,1,,Europe/Paris,,O38, +O38:SA:CTP2170,1,"LA CHAPELLE",45.151507,5.248124,,1,,Europe/Paris,,O38, +O38:SA:CTP2173,1,"EC.PRIM.I ET II",45.173939,5.219606,,1,,Europe/Paris,,O38, +O38:SA:CTP2175,1,"LES ARRODIERES",45.165006,5.237767,,1,,Europe/Paris,,O38, +O38:SA:CTP2179,1,"JACQUEMONT",45.15105,5.242698,,1,,Europe/Paris,,O38, +O38:SA:CTP2181,1,"LE GRAND CHENE",45.178795,5.248577,,1,,Europe/Paris,,O38, +O38:SA:CTP2183,1,"GIRARDIERE",45.143317,5.254797,,1,,Europe/Paris,,O38, +O38:SA:CTP2186,1,"LA MALADIERE",45.157696,5.239148,,1,,Europe/Paris,,O38, +O38:SA:CTP2187,1,"CIZIERES",45.169253,5.23108,,1,,Europe/Paris,,O38, +O38:SA:CTP2189,1,"CHAPAIZE LE BAS",45.162405,5.25247,,1,,Europe/Paris,,O38, +O38:SA:CTP2191,1,"FONT FROIDE",45.166264,5.202151,,1,,Europe/Paris,,O38, +O38:SA:CTP2193,1,"CARPE DIEM",45.167906,5.200087,,1,,Europe/Paris,,O38, +O38:SA:CTP2195,1,"CHAPAIZE",45.159834,5.253849,,1,,Europe/Paris,,O38, +O38:SA:CTP2197,1,"LES REYNAUDS",45.172211,5.200462,,1,,Europe/Paris,,O38, +O38:SA:CTP2199,1,"BELAN",45.182909,5.200056,,1,,Europe/Paris,,O38, +O38:SA:CTP2201,1,"LES MOUILLES",45.141344,5.228892,,1,,Europe/Paris,,O38, +O38:SA:CTP2203,1,"CHAPAIZE LE HAUT",45.168932,5.243266,,1,,Europe/Paris,,O38, +O38:SA:CTP2205,1,"LA BLACHE",45.168158,5.246417,,1,,Europe/Paris,,O38, +O38:SA:CTP2207,1,"LE BOIS",45.176281,5.255993,,1,,Europe/Paris,,O38, +O38:SA:CTP2209,1,"CARREFOUR DE CHAPAIZE",45.165525,5.249409,,1,,Europe/Paris,,O38, +O38:SA:CTP2213,1,"CROIST-VATILLIEUX",45.149356,5.240436,,1,,Europe/Paris,,O38, +O38:SA:CTP2215,1,"ST ANTOINE PLACE",45.174598,5.216129,,1,,Europe/Paris,,O38, +O38:SA:CTP2217,1,"LES COURTIS",45.146105,5.225627,,1,,Europe/Paris,,O38, +O38:SA:CTP2219,1,"PENETIERE",45.184054,5.262772,,1,,Europe/Paris,,O38, +O38:SA:CTP2221,1,"LES GONNOTS-CHAMPENIER",45.139651,5.231373,,1,,Europe/Paris,,O38, +O38:SA:CTP2223,1,"LA SABLON",45.139695,5.218856,,1,,Europe/Paris,,O38, +O38:SA:CTP2227,1,"CIZIERES BAS",45.164993,5.233032,,1,,Europe/Paris,,O38, +O38:SA:CTP2229,1,"EMPEREY",45.141883,5.219665,,1,,Europe/Paris,,O38, +O38:SA:CTP2231,1,"BONAUX-TERRIFAUX",45.180265,5.286369,,1,,Europe/Paris,,O38, +O38:SA:CTP2233,1,"CHIROUZE-VIOLETTES",45.139725,5.275626,,1,,Europe/Paris,,O38, +O38:SA:CTP2235,1,"ECOLES",45.142054,5.283437,,1,,Europe/Paris,,O38, +O38:SA:CTP2237,1,"LES COMBES",45.15,5.272375,,1,,Europe/Paris,,O38, +O38:SA:CTP2239,1,"QUIVIERE",45.172144,5.288206,,1,,Europe/Paris,,O38, +O38:SA:CTP2241,1,"AUX PINS",45.164243,5.285605,,1,,Europe/Paris,,O38, +O38:SA:CTP2243,1,"CAR.LES MAISONNES",45.170336,5.30823,,1,,Europe/Paris,,O38, +O38:SA:CTP2245,1,"LA GLORIETTE",45.144054,5.293917,,1,,Europe/Paris,,O38, +O38:SA:CTP2247,1,"MAIRIE",45.143032,5.283729,,1,,Europe/Paris,,O38, +O38:SA:CTP2249,1,"ST JUST",45.144192,5.279806,,1,,Europe/Paris,,O38, +O38:SA:CTP2251,1,"LE VILLAGE",45.173888,5.332497,,1,,Europe/Paris,,O38, +O38:SA:CTP2254,1,"SCIERIE MOCELLIN",45.168671,5.328878,,1,,Europe/Paris,,O38, +O38:SA:CTP2255,1,"LA POIPE",45.150987,5.284331,,1,,Europe/Paris,,O38, +O38:SA:CTP2257,1,"PHARMACIE",45.141207,5.288257,,1,,Europe/Paris,,O38, +O38:SA:CTP2263,1,"CARREF. SEILLERE",45.137125,5.305564,,1,,Europe/Paris,,O38, +O38:SA:CTP2267,1,"CAR.MONTOLIVET",45.177883,5.305826,,1,,Europe/Paris,,O38, +O38:SA:CTP2269,1,"CAR.HAUT PLAN",45.17501,5.306783,,1,,Europe/Paris,,O38, +O38:SA:CTP2271,1,"CAR.LA REVORD",45.171925,5.307034,,1,,Europe/Paris,,O38, +O38:SA:CTP2273,1,"LES ECHAVAGNES AREA",45.139852,5.326607,,1,,Europe/Paris,,O38, +O38:SA:CTP2275,1,"MAISON GIRON",45.173832,5.26684,,1,,Europe/Paris,,O38, +O38:SA:CTP2277,1,"BD BEYLE STENDHAL",45.151516,5.318249,,1,,Europe/Paris,,O38, +O38:SA:CTP2279,1,"PARKING LA SAULAIE",45.157393,5.317799,,1,,Europe/Paris,,O38, +O38:SA:CTP2282,1,"ECOLES",45.173829,5.332636,,1,,Europe/Paris,,O38, +O38:SA:CTP2288,1,"CHEMIN DE LA COLERE",45.183666,5.267943,,1,,Europe/Paris,,O38, +O38:SA:CTP2289,1,"COLLEGE DE CHATTE",45.13926,5.29122,,1,,Europe/Paris,,O38, +O38:SA:CTP2294,1,"LE GRAND PRE",45.158895,5.330405,,1,,Europe/Paris,,O38, +O38:SA:CTP2295,1,"LES GRANDS PAINS",45.162958,5.282087,,1,,Europe/Paris,,O38, +O38:SA:CTP2297,1,"LES GONTHIERS",45.142807,5.370663,,1,,Europe/Paris,,O38, +O38:SA:CTP2300,1,"FOND DE BEAULIEU",45.177484,5.39175,,1,,Europe/Paris,,O38, +O38:SA:CTP2301,1,"CHAGNEUX",45.155584,5.380721,,1,,Europe/Paris,,O38, +O38:SA:CTP2303,1,"LE VILLAGE",45.147614,5.375493,,1,,Europe/Paris,,O38, +O38:SA:CTP2305,1,"LES DEVEYS",45.154255,5.371139,,1,,Europe/Paris,,O38, +O38:SA:CTP2307,1,"LES BROSSES",45.162791,5.384529,,1,,Europe/Paris,,O38, +O38:SA:CTP2309,1,"LA CASCADE",45.177983,5.334627,,1,,Europe/Paris,,O38, +O38:SA:CTP2311,1,"BECOURT-RD1092",45.178993,5.376636,,1,,Europe/Paris,,O38, +O38:SA:CTP2313,1,"SARRELOUPS",45.172424,5.369589,,1,,Europe/Paris,,O38, +O38:SA:CTP2315,1,"EGLISE",45.1487,5.341923,,1,,Europe/Paris,,O38, +O38:SA:CTP2318,1,"MAISON ARGOUD",45.168773,5.373442,,1,,Europe/Paris,,O38, +O38:SA:CTP2319,1,"LA CHATAIGNIERE",45.169883,5.367723,,1,,Europe/Paris,,O38, +O38:SA:CTP2321,1,"LA MALADIERE",45.157902,5.333135,,1,,Europe/Paris,,O38, +O38:SA:CTP2323,1,"LOT.BRETON",45.168023,5.370984,,1,,Europe/Paris,,O38, +O38:SA:CTP2326,1,"LES ROUTES",45.167916,5.350123,,1,,Europe/Paris,,O38, +O38:SA:CTP2328,1,"PERTUZOU",45.160178,5.34454,,1,,Europe/Paris,,O38, +O38:SA:CTP2329,1,"LES MAISONS NEUVES",45.161399,5.350551,,1,,Europe/Paris,,O38, +O38:SA:CTP2331,1,"LA PERESSIERE",45.175315,5.377408,,1,,Europe/Paris,,O38, +O38:SA:CTP2333,1,"LES TILLEULS",45.161628,5.334337,,1,,Europe/Paris,,O38, +O38:SA:CTP2335,1,"FROMAGERIE",45.180653,5.378489,,1,,Europe/Paris,,O38, +O38:SA:CTP2337,1,"CHAGNEUX RD1532",45.15784,5.387185,,1,,Europe/Paris,,O38, +O38:SA:CTP2340,1,"LA CHARRIERE",45.178571,5.395062,,1,,Europe/Paris,,O38, +O38:SA:CTP2341,1,"L'ILE LA CROIX",45.135026,5.364103,,1,,Europe/Paris,,O38, +O38:SA:CTP2343,1,"LE COUPIER",45.13576,5.339226,,1,,Europe/Paris,,O38, +O38:SA:CTP2345,1,"LA CROIX",45.141061,5.346462,,1,,Europe/Paris,,O38, +O38:SA:CTP2347,1,"LES COMBEAUX-PONT AUTOROUTE",45.145649,5.343004,,1,,Europe/Paris,,O38, +O38:SA:CTP2349,1,"GRAND CHAMP",45.176679,5.374074,,1,,Europe/Paris,,O38, +O38:SA:CTP2351,1,"MAIRIE-SALLE DES FETES",45.152629,5.343484,,1,,Europe/Paris,,O38, +O38:SA:CTP2353,1,"ECOLES",45.171564,5.412411,,1,,Europe/Paris,,O38, +O38:SA:CTP2357,1,"PLACE (FONTAINE)",45.146229,5.437177,,1,,Europe/Paris,,O38, +O38:SA:CTP2359,1,"LE VILLAGE",45.170907,5.41244,,1,,Europe/Paris,,O38, +O38:SA:CTP2362,1,"LES SEIGLIERES",45.180406,5.40321,,1,,Europe/Paris,,O38, +O38:SA:CTP2363,1,"LE MOULIN",45.156637,5.439627,,1,,Europe/Paris,,O38, +O38:SA:CTP2365,1,"MEAUDRE PISCINE",45.13025,5.528059,,1,,Europe/Paris,,O38, +O38:SA:CTP2371,1,"THORENAS",45.143664,5.526244,,1,,Europe/Paris,,O38, +O38:SA:CTP2375,1,"TRUITE CARREFOUR D.106C",45.149996,5.525712,,1,,Europe/Paris,,O38, +O38:SA:CTP2378,1,"LES TRANCHANTS",45.161067,5.523729,,1,,Europe/Paris,,O38, +O38:SA:CTP2380,1,"LES GONNETS",45.156308,5.523124,,1,,Europe/Paris,,O38, +O38:SA:CTP2383,1,"LES DOLLYS",45.139508,5.526292,,1,,Europe/Paris,,O38, +O38:SA:CTP2386,1,"LE COCHET",45.137398,5.517759,,1,,Europe/Paris,,O38, +O38:SA:CTP2388,1,"LES FARLAIX",45.131142,5.519364,,1,,Europe/Paris,,O38, +O38:SA:CTP2392,1,"FERME BLANC-BRUDE",45.169173,5.527055,,1,,Europe/Paris,,O38, +O38:SA:CTP2394,1,"LA TRUITE(HAMEAU)",45.151154,5.523189,,1,,Europe/Paris,,O38, +O38:SA:CTP2397,1,"LES VERNES",45.15832,5.528947,,1,,Europe/Paris,,O38, +O38:SA:CTP2400,1,"LES EYMES",45.145399,5.517556,,1,,Europe/Paris,,O38, +O38:SA:CTP2402,1,"LA FOND",45.136739,5.477856,,1,,Europe/Paris,,O38, +O38:SA:CTP2404,1,"COL DE ROMEYERE",45.143947,5.479714,,1,,Europe/Paris,,O38, +O38:SA:CTP2406,1,"LES RITTONS",45.133249,5.476708,,1,,Europe/Paris,,O38, +O38:SA:CTP2408,1,"LES GRANGEONS",45.131612,5.538209,,1,,Europe/Paris,,O38, +O38:SA:CTP2409,1,"LES GRIATS",45.147623,5.548793,,1,,Europe/Paris,,O38, +O38:SA:CTP2411,1,"LES AGUIARDS",45.132404,5.542219,,1,,Europe/Paris,,O38, +O38:SA:CTP2413,1,"LA PERRINIERE PONT",45.156117,5.553825,,1,,Europe/Paris,,O38, +O38:SA:CTP2417,1,"LES FRANQUES",45.167371,5.53513,,1,,Europe/Paris,,O38, +O38:SA:CTP2421,1,"LE BOUCHET",45.169247,5.552427,,1,,Europe/Paris,,O38, +O38:SA:CTP2425,1,"PIAILLON",45.142109,5.537324,,1,,Europe/Paris,,O38, +O38:SA:CTP2427,1,"LES HIRONDELLES",45.171039,5.537528,,1,,Europe/Paris,,O38, +O38:SA:CTP2429,1,"LA BOURRIERE",45.139836,5.545065,,1,,Europe/Paris,,O38, +O38:SA:CTP2431,1,"JAUME",45.129862,5.580426,,1,,Europe/Paris,,O38, +O38:SA:CTP2434,1,"LES GAILLARDES",45.14392,5.543037,,1,,Europe/Paris,,O38, +O38:SA:CTP2436,1,"HAMEAU LE BOUCHET",45.170863,5.561062,,1,,Europe/Paris,,O38, +O38:SA:CTP2437,1,"FOYER SKI DE FOND",45.176328,5.540105,,1,,Europe/Paris,,O38, +O38:SA:CTP2438,1,"LE TRUC",45.173875,5.560456,,1,,Europe/Paris,,O38, +O38:SA:CTP2440,1,"ANDREVIERE",45.174464,5.53693,,1,,Europe/Paris,,O38, +O38:SA:CTP2443,1,"AUTRANS VILLAGE",45.175015,5.542611,,1,,Europe/Paris,,O38, +O38:SA:CTP2446,1,"LES ARNAUDS",45.143348,5.545535,,1,,Europe/Paris,,O38, +O38:SA:CTP2447,1,"LE CORDEY",45.134559,5.542788,,1,,Europe/Paris,,O38, +O38:SA:CTP2449,1,"L'OLETTE",45.1404,5.589104,,1,,Europe/Paris,,O38, +O38:SA:CTP2453,1,"COL DE LA CROIX PERRIN",45.130071,5.559817,,1,,Europe/Paris,,O38, +O38:SA:CTP2457,1,"OFFICE DE TOURISME",45.129396,5.584219,,1,,Europe/Paris,,O38, +O38:SA:CTP2460,1,"L'ECHARLIERE",45.164651,5.552982,,1,,Europe/Paris,,O38, +O38:SA:CTP2462,1,"LES IMBEAUX",45.133656,5.531381,,1,,Europe/Paris,,O38, +O38:SA:CTP2465,1,"LES ROCHES ROUSSES",45.13848,5.60509,,1,,Europe/Paris,,O38, +O38:SA:CTP2468,1,"DONNETS CROIX LICHOU",45.145161,5.60788,,1,,Europe/Paris,,O38, +O38:SA:CTP2471,1,"LA CHENEVARIE",45.133446,5.603883,,1,,Europe/Paris,,O38, +O38:SA:CTP2475,1,"LES VOLANTS",45.157127,5.619437,,1,,Europe/Paris,,O38, +O38:SA:CTP2479,1,"LE VILLAGE",45.171019,5.630142,,1,,Europe/Paris,,O38, +O38:SA:CTP2483,1,"LA TOUR",45.166104,5.624705,,1,,Europe/Paris,,O38, +O38:SA:CTP2487,1,"BAYARD",45.146156,5.705046,,1,,Europe/Paris,,O38, +O38:SA:CTP2492,1,"LOUISE MICHEL",45.169272,5.712821,,1,,Europe/Paris,,O38, +O38:SA:CTP2504,1,"QUINZAINE",45.151617,5.706866,,1,,Europe/Paris,,O38, +O38:SA:CTP2508,1,"ILES DE MARS",45.131654,5.699973,,1,,Europe/Paris,,O38, +O38:SA:CTP2524,1,"HAUTS DE SEYSSINS",45.161097,5.667895,,1,,Europe/Paris,,O38, +O38:SA:CTP2528,1,"STADE LESDIGUIERES",45.163881,5.710787,,1,,Europe/Paris,,O38, +O38:SA:CTP2534,1,"FLOTTIBULLE",45.137932,5.702103,,1,,Europe/Paris,,O38, +O38:SA:CTP2540,1,"BEL AIR",45.164866,5.67152,,1,,Europe/Paris,,O38, +O38:SA:CTP2544,1,"LA TOUR SANS VENIN",45.170687,5.666735,,1,,Europe/Paris,,O38, +O38:SA:CTP2660,1,"LE PENET",45.15874,5.848355,,1,,Europe/Paris,,O38, +O38:SA:CTP2664,1,"MAIRIE",45.152171,5.838099,,1,,Europe/Paris,,O38, +O38:SA:CTP2669,1,"LA GRIVOLEE",45.146244,5.855515,,1,,Europe/Paris,,O38, +O38:SA:CTP2673,1,"CROISEMENT 6",45.152955,5.825446,,1,,Europe/Paris,,O38, +O38:SA:CTP2676,1,"URIAGE GARE",45.144016,5.829159,,1,,Europe/Paris,,O38, +O38:SA:CTP268,1,"ROCHASSON",44.569039,6.083336,,1,,Europe/Paris,,O38, +O38:SA:CTP2681,1,"CARREFOUR DE CHAMROUSSE",45.15501,5.840172,,1,,Europe/Paris,,O38, +O38:SA:CTP2685,1,"HOPITAL THERMAL",45.140732,5.834995,,1,,Europe/Paris,,O38, +O38:SA:CTP2689,1,"BELMONT LA CHAPELLE",45.122314,5.829701,,1,,Europe/Paris,,O38, +O38:SA:CTP2693,1,"LE VACHER",45.136126,5.833483,,1,,Europe/Paris,,O38, +O38:SA:CTP2697,1,"LE MOLLARD",45.144603,5.839538,,1,,Europe/Paris,,O38, +O38:SA:CTP270,1,"VILLAGE",44.637946,6.085181,,1,,Europe/Paris,,O38, +O38:SA:CTP2703,1,"LES ALBERGES",45.130893,5.819007,,1,,Europe/Paris,,O38, +O38:SA:CTP2712,1,"GS LA RICHARDIERE",45.144553,5.83604,,1,,Europe/Paris,,O38, +O38:SA:CTP2714,1,"VILLENEUVE D'URIAGE",45.147781,5.819472,,1,,Europe/Paris,,O38, +O38:SA:CTP2718,1,"ROUTE DU BELIN",45.152522,5.846874,,1,,Europe/Paris,,O38, +O38:SA:CTP272,1,"COL BAYARD",44.621124,6.082231,,1,,Europe/Paris,,O38, +O38:SA:CTP2722,1,"ROUTE DU CHAVANOZ",45.150288,5.844387,,1,,Europe/Paris,,O38, +O38:SA:CTP2726,1,"LES ROUX",45.129054,5.826394,,1,,Europe/Paris,,O38, +O38:SA:CTP2730,1,"LA FERME",45.135476,5.836489,,1,,Europe/Paris,,O38, +O38:SA:CTP2733,1,"ROUTE DE ST MARTIN",45.139462,5.828172,,1,,Europe/Paris,,O38, +O38:SA:CTP2737,1,"LES DAVIDS",45.128026,5.835076,,1,,Europe/Paris,,O38, +O38:SA:CTP2745,1,"LE CHENIL",45.16312,5.812229,,1,,Europe/Paris,,O38, +O38:SA:CTP2748,1,"ST NIZIER D'URIAGE",45.164262,5.835067,,1,,Europe/Paris,,O38, +O38:SA:CTP275,1,"LES BARRAQUES - ROND POINT",44.676779,6.070885,,1,,Europe/Paris,,O38, +O38:SA:CTP2752,1,"LE PINET D'URIAGE",45.165282,5.848999,,1,,Europe/Paris,,O38, +O38:SA:CTP2755,1,"CARREFOUR DU REPLAT",45.16154,5.850976,,1,,Europe/Paris,,O38, +O38:SA:CTP2757,1,"LOTISSEMENT LA NOYAREY",45.161806,5.842479,,1,,Europe/Paris,,O38, +O38:SA:CTP2760,1,"LE ROSSIN",45.158947,5.839944,,1,,Europe/Paris,,O38, +O38:SA:CTP2764,1,"LE BOULOUD",45.137627,5.839467,,1,,Europe/Paris,,O38, +O38:SA:CTP2768,1,"LA TUILERIE",45.136378,5.82475,,1,,Europe/Paris,,O38, +O38:SA:CTP277,1,"BRUTINEL",44.654713,6.084875,,1,,Europe/Paris,,O38, +O38:SA:CTP2770,1,"LE MAUPAS",45.158903,5.819275,,1,,Europe/Paris,,O38, +O38:SA:CTP2772,1,"LES PEIFFENDES",45.156796,5.823114,,1,,Europe/Paris,,O38, +O38:SA:CTP2774,1,"HAUTES VUES",45.162965,5.839543,,1,,Europe/Paris,,O38, +O38:SA:CTP2777,1,"LES BONNETS",45.149537,5.850266,,1,,Europe/Paris,,O38, +O38:SA:CTP2781,1,"LA PISCINE",45.150666,5.837525,,1,,Europe/Paris,,O38, +O38:SA:CTP2784,1,"MAISON ROCHE",45.149143,5.855494,,1,,Europe/Paris,,O38, +O38:SA:CTP2786,1,"BELMONT 3",45.124209,5.83092,,1,,Europe/Paris,,O38, +O38:SA:CTP279,1,"CHATEAU MEA",44.741637,5.765548,,1,,Europe/Paris,,O38, +O38:SA:CTP2790,1,"LES BLANCHERES 2",45.130932,5.830334,,1,,Europe/Paris,,O38, +O38:SA:CTP2793,1,"1650",45.126238,5.878289,,1,,Europe/Paris,,O38, +O38:SA:CTP2798,1,"LES SEIGLIERES",45.15467,5.870733,,1,,Europe/Paris,,O38, +O38:SA:CTP2804,1,"PHARMACIE",45.123692,6.027112,,1,,Europe/Paris,,O38, +O38:SA:CTP2806,1,"LA PASSERELLE",45.12055,6.020183,,1,,Europe/Paris,,O38, +O38:SA:CTP281,1,"CHATEAU BAS PLACE",44.744547,5.746922,,1,,Europe/Paris,,O38, +O38:SA:CTP2810,1,"PLAN BARBIER",45.128796,6.040793,,1,,Europe/Paris,,O38, +O38:SA:CTP2815,1,"LES GRANDS CHAMPS",45.133629,6.04266,,1,,Europe/Paris,,O38, +O38:SA:CTP2817,1,"LA FONDERIE",45.126662,6.034423,,1,,Europe/Paris,,O38, +O38:SA:CTP2819,1,"CITE LE VERNEY",45.14776,6.048384,,1,,Europe/Paris,,O38, +O38:SA:CTP2821,1,"LA CONDAMINE",45.14964,6.054467,,1,,Europe/Paris,,O38, +O38:SA:CTP2823,1,"POURCHERY",45.14924,6.058782,,1,,Europe/Paris,,O38, +O38:SA:CTP2825,1,"CAR.D526-D44",45.13688,6.048974,,1,,Europe/Paris,,O38, +O38:SA:CTP2828,1,"VILLAGE",45.13996,6.052265,,1,,Europe/Paris,,O38, +O38:SA:CTP2831,1,"LE ROBERAND",45.139076,6.052649,,1,,Europe/Paris,,O38, +O38:SA:CTP2833,1,"LA BEURRIERE",45.124801,6.039994,,1,,Europe/Paris,,O38, +O38:SA:CTP2835,1,"LE VERNEY",45.147747,6.050059,,1,,Europe/Paris,,O38, +O38:SA:CTP2838,1,"LE RAFFOUR",45.115446,6.024802,,1,,Europe/Paris,,O38, +O38:SA:CTP2840,1,"RIF JANY",45.147888,6.05193,,1,,Europe/Paris,,O38, +O38:SA:CTP2842,1,"GS LES ARDOISIERES",45.127167,6.03847,,1,,Europe/Paris,,O38, +O38:SA:CTP2848,1,"L'EGLISE",45.157302,6.073157,,1,,Europe/Paris,,O38, +O38:SA:CTP2852,1,"STATION TELEPHERIQUE",45.15752,6.078366,,1,,Europe/Paris,,O38, +O38:SA:CTP2857,1,"HLM",45.159107,6.0799,,1,,Europe/Paris,,O38, +O38:SA:CTP2861,1,"MAISON ROUX",45.228768,5.198867,,1,,Europe/Paris,,O38, +O38:SA:CTP2863,1,"CHAPELLE DE REDON",45.208679,5.252242,,1,,Europe/Paris,,O38, +O38:SA:CTP2865,1,"VAUGRENIER",45.202814,5.262831,,1,,Europe/Paris,,O38, +O38:SA:CTP2867,1,"BOURGEONNIERE",45.21656,5.208927,,1,,Europe/Paris,,O38, +O38:SA:CTP2869,1,"LE MERCIER",45.198904,5.265118,,1,,Europe/Paris,,O38, +O38:SA:CTP287,1,"LE SERRE",44.741856,5.780533,,1,,Europe/Paris,,O38, +O38:SA:CTP2871,1,"CHAPPONAY",45.194949,5.205714,,1,,Europe/Paris,,O38, +O38:SA:CTP2873,1,"DIONAY VILLAGE",45.203765,5.218334,,1,,Europe/Paris,,O38, +O38:SA:CTP2875,1,"LA VILLE D'OR",45.206562,5.226418,,1,,Europe/Paris,,O38, +O38:SA:CTP2877,1,"CIMETIERE",45.200467,5.263719,,1,,Europe/Paris,,O38, +O38:SA:CTP2879,1,"L'ORNIERE",45.188501,5.244793,,1,,Europe/Paris,,O38, +O38:SA:CTP2881,1,"L'AIGUE NOIRE",45.229606,5.239299,,1,,Europe/Paris,,O38, +O38:SA:CTP2885,1,"ECOLE PRIMAIRE",45.188397,5.261543,,1,,Europe/Paris,,O38, +O38:SA:CTP2887,1,"MAS DE PEROLLIERE",45.209649,5.219052,,1,,Europe/Paris,,O38, +O38:SA:CTP2889,1,"LA SAPINIERE",45.217342,5.229206,,1,,Europe/Paris,,O38, +O38:SA:CTP289,1,"PONT DE LA GUINGUETTE",44.734189,6.00387,,1,,Europe/Paris,,O38, +O38:SA:CTP2891,1,"LE BOURG",45.187737,5.261248,,1,,Europe/Paris,,O38, +O38:SA:CTP2893,1,"CURTECHIN",45.194633,5.247926,,1,,Europe/Paris,,O38, +O38:SA:CTP2896,1,"L'AIGUE NOIRE HAUT",45.226967,5.237085,,1,,Europe/Paris,,O38, +O38:SA:CTP2897,1,"LA MATHIEU",45.183651,5.304967,,1,,Europe/Paris,,O38, +O38:SA:CTP2899,1,"LES GARENNES",45.19799,5.290441,,1,,Europe/Paris,,O38, +O38:SA:CTP2901,1,"BLAGNEUX CHATEAU",45.185177,5.305793,,1,,Europe/Paris,,O38, +O38:SA:CTP2903,1,"CHEMIN DE MESSINS",45.224776,5.29292,,1,,Europe/Paris,,O38, +O38:SA:CTP2905,1,"LA CROIX ROUGE",45.218561,5.295327,,1,,Europe/Paris,,O38, +O38:SA:CTP2907,1,"BAYANNES",45.19288,5.31098,,1,,Europe/Paris,,O38, +O38:SA:CTP2909,1,"BLAGNEUX",45.185274,5.309681,,1,,Europe/Paris,,O38, +O38:SA:CTP291,1,"PONT VALLA",44.712266,6.032439,,1,,Europe/Paris,,O38, +O38:SA:CTP2911,1,"PONT DU RAILLET",45.191449,5.273918,,1,,Europe/Paris,,O38, +O38:SA:CTP2913,1,"ECOLE",45.188288,5.291552,,1,,Europe/Paris,,O38, +O38:SA:CTP2915,1,"CAR.DE MURINAIS",45.191393,5.295134,,1,,Europe/Paris,,O38, +O38:SA:CTP2917,1,"PORTE ET GARIOLLE-CHATEAU ROST",45.187067,5.287451,,1,,Europe/Paris,,O38, +O38:SA:CTP2919,1,"GIRARDIERE-FLATS",45.206362,5.294207,,1,,Europe/Paris,,O38, +O38:SA:CTP2921,1,"BOURG",45.187758,5.290278,,1,,Europe/Paris,,O38, +O38:SA:CTP2923,1,"LES PLATRES",45.227968,5.292119,,1,,Europe/Paris,,O38, +O38:SA:CTP2925,1,"CROIST.PORTE ET GARIOLLE-RD20A",45.186095,5.281579,,1,,Europe/Paris,,O38, +O38:SA:CTP2927,1,"LE COLOMBIER",45.204255,5.310557,,1,,Europe/Paris,,O38, +O38:SA:CTP2929,1,"ECOLE",45.213367,5.314661,,1,,Europe/Paris,,O38, +O38:SA:CTP293,1,"CHAMOIS D'OR",44.789532,5.634074,,1,,Europe/Paris,,O38, +O38:SA:CTP2931,1,"LE CHATEAU",45.210925,5.317526,,1,,Europe/Paris,,O38, +O38:SA:CTP2933,1,"FERME MAZARIN",45.229815,5.313207,,1,,Europe/Paris,,O38, +O38:SA:CTP2935,1,"LES ABEILLES",45.206651,5.307065,,1,,Europe/Paris,,O38, +O38:SA:CTP2937,1,"VILLAGE",45.212304,5.315007,,1,,Europe/Paris,,O38, +O38:SA:CTP2939,1,"COMBE DE MOUZE II",45.202761,5.278811,,1,,Europe/Paris,,O38, +O38:SA:CTP2943,1,"LA COMBE PERRERAS",45.223644,5.32159,,1,,Europe/Paris,,O38, +O38:SA:CTP2945,1,"COMBE DE MOUZE I",45.207305,5.276149,,1,,Europe/Paris,,O38, +O38:SA:CTP2947,1,"LES COMBES",45.227806,5.301298,,1,,Europe/Paris,,O38, +O38:SA:CTP2949,1,"INTERSECTION DES JOUX",45.210745,5.293647,,1,,Europe/Paris,,O38, +O38:SA:CTP295,1,"ESPARON(RN75)",44.7884,5.635324,,1,,Europe/Paris,,O38, +O38:SA:CTP2951,1,"LE BURDY",45.20865,5.310041,,1,,Europe/Paris,,O38, +O38:SA:CTP2953,1,"LES SELLIERS",45.194148,5.302704,,1,,Europe/Paris,,O38, +O38:SA:CTP2955,1,"LES AYES",45.21905,5.322803,,1,,Europe/Paris,,O38, +O38:SA:CTP2957,1,"PLAN DE L'ORME",45.197651,5.311303,,1,,Europe/Paris,,O38, +O38:SA:CTP2959,1,"LE BRESSOT",45.19909,5.384283,,1,,Europe/Paris,,O38, +O38:SA:CTP2961,1,"MAISON CAPTIN",45.183378,5.389352,,1,,Europe/Paris,,O38, +O38:SA:CTP2964,1,"BONNETIERE",45.187964,5.391758,,1,,Europe/Paris,,O38, +O38:SA:CTP2965,1,"ECOLE MATERNELLE",45.192827,5.394555,,1,,Europe/Paris,,O38, +O38:SA:CTP2968,1,"LE GUA-VC 15",45.189736,5.394872,,1,,Europe/Paris,,O38, +O38:SA:CTP2969,1,"MAISON MANDIER",45.196853,5.388417,,1,,Europe/Paris,,O38, +O38:SA:CTP297,1,"CASSEYRE",44.787052,5.631896,,1,,Europe/Paris,,O38, +O38:SA:CTP2971,1,"LE VILLAGE",45.193935,5.392517,,1,,Europe/Paris,,O38, +O38:SA:CTP2973,1,"MONTESSUT",45.200765,5.389065,,1,,Europe/Paris,,O38, +O38:SA:CTP2975,1,"LA GAUCHERIE",45.182762,5.337891,,1,,Europe/Paris,,O38, +O38:SA:CTP2978,1,"MAISON BRACHET",45.181657,5.373301,,1,,Europe/Paris,,O38, +O38:SA:CTP2979,1,"MONTEE DE TECHE",45.187258,5.384183,,1,,Europe/Paris,,O38, +O38:SA:CTP298,1,"LES BAYLES",44.790589,5.657976,,1,,Europe/Paris,,O38, +O38:SA:CTP2980,1,"LA CROIX BLEUE",45.220119,5.346748,,1,,Europe/Paris,,O38, +O38:SA:CTP2984,1,"CHAMPMOYET ZI",45.207084,5.352606,,1,,Europe/Paris,,O38, +O38:SA:CTP2986,1,"MASSARET",45.223544,5.343685,,1,,Europe/Paris,,O38, +O38:SA:CTP2988,1,"JACQUETIERE",45.227782,5.35996,,1,,Europe/Paris,,O38, +O38:SA:CTP2990,1,"QUINCIVET",45.197994,5.347062,,1,,Europe/Paris,,O38, +O38:SA:CTP2992,1,"LES SABLES",45.18866,5.344358,,1,,Europe/Paris,,O38, +O38:SA:CTP2995,1,"LE CHATELARD",45.188831,5.377561,,1,,Europe/Paris,,O38, +O38:SA:CTP2997,1,"MAISON JANY",45.186796,5.347554,,1,,Europe/Paris,,O38, +O38:SA:CTP2999,1,"LE ROLLAND",45.190257,5.356298,,1,,Europe/Paris,,O38, +O38:SA:CTP300,1,"SERRE DES BAILES",44.791676,5.665278,,1,,Europe/Paris,,O38, +O38:SA:CTP3001,1,"LE ROSSAT",45.187451,5.359473,,1,,Europe/Paris,,O38, +O38:SA:CTP3003,1,"ECOLE",45.182696,5.380597,,1,,Europe/Paris,,O38, +O38:SA:CTP3005,1,"MAISON PUY",45.184206,5.379339,,1,,Europe/Paris,,O38, +O38:SA:CTP3007,1,"LES MACHURIERES",45.201365,5.348679,,1,,Europe/Paris,,O38, +O38:SA:CTP3009,1,"LE VILLAGE",45.183661,5.381989,,1,,Europe/Paris,,O38, +O38:SA:CTP3011,1,"CHIRONAY",45.229003,5.352445,,1,,Europe/Paris,,O38, +O38:SA:CTP3014,1,"LES FORGES",45.185195,5.340639,,1,,Europe/Paris,,O38, +O38:SA:CTP3016,1,"CHEMIN DES QUATRE VIES",45.214581,5.390137,,1,,Europe/Paris,,O38, +O38:SA:CTP3017,1,"PISCINE",45.20725,5.399751,,1,,Europe/Paris,,O38, +O38:SA:CTP3019,1,"GONNARDIERE",45.226956,5.402038,,1,,Europe/Paris,,O38, +O38:SA:CTP302,1,"AVERS",44.769893,5.700617,,1,,Europe/Paris,,O38, +O38:SA:CTP3021,1,"VOZELLE",45.215512,5.351258,,1,,Europe/Paris,,O38, +O38:SA:CTP3023,1,"LES GELINIERES",45.197403,5.448523,,1,,Europe/Paris,,O38, +O38:SA:CTP3025,1,"LES CHARRETS",45.194965,5.445029,,1,,Europe/Paris,,O38, +O38:SA:CTP3027,1,"RIQUETIERE",45.203804,5.452759,,1,,Europe/Paris,,O38, +O38:SA:CTP3029,1,"MAISON BARDIN",45.183564,5.409042,,1,,Europe/Paris,,O38, +O38:SA:CTP3031,1,"LE VILLAGE",45.223289,5.439493,,1,,Europe/Paris,,O38, +O38:SA:CTP3033,1,"CARREFOUR BIVAN",45.21191,5.46178,,1,,Europe/Paris,,O38, +O38:SA:CTP3036,1,"PACALIERE",45.215979,5.46425,,1,,Europe/Paris,,O38, +O38:SA:CTP3037,1,"LA GARE",45.221155,5.447435,,1,,Europe/Paris,,O38, +O38:SA:CTP3039,1,"CAMINIERE",45.20887,5.460356,,1,,Europe/Paris,,O38, +O38:SA:CTP3041,1,"LA CROIX ROUGE",45.216431,5.45575,,1,,Europe/Paris,,O38, +O38:SA:CTP3043,1,"LES ROUTES",45.190129,5.403547,,1,,Europe/Paris,,O38, +O38:SA:CTP3045,1,"MAISON REVOUX",45.19921,5.402208,,1,,Europe/Paris,,O38, +O38:SA:CTP3048,1,"MAISON BIT-MIGNON",45.191891,5.419445,,1,,Europe/Paris,,O38, +O38:SA:CTP3050,1,"MAISON MONTAZ",45.200208,5.407625,,1,,Europe/Paris,,O38, +O38:SA:CTP3051,1,"HAMEAU DE CHASSE",45.186788,5.413675,,1,,Europe/Paris,,O38, +O38:SA:CTP3053,1,"COOPERATIVE NOIX",45.213817,5.417352,,1,,Europe/Paris,,O38, +O38:SA:CTP3055,1,"BOUCHETIERE",45.203297,5.438636,,1,,Europe/Paris,,O38, +O38:SA:CTP3057,1,"PONT DE TRELLINS",45.193749,5.426737,,1,,Europe/Paris,,O38, +O38:SA:CTP3059,1,"LE PORT",45.207541,5.467648,,1,,Europe/Paris,,O38, +O38:SA:CTP3061,1,"CHAMOUNIER",45.202334,5.464159,,1,,Europe/Paris,,O38, +O38:SA:CTP3063,1,"ROUTE DE ROVON",45.203787,5.464677,,1,,Europe/Paris,,O38, +O38:SA:CTP3064,1,"ECOLE",45.200534,5.460237,,1,,Europe/Paris,,O38, +O38:SA:CTP3066,1,"BOURG ABRI",45.200531,5.46025,,1,,Europe/Paris,,O38, +O38:SA:CTP3068,1,"ECOLES LA MAYETTE 2",45.208335,5.405,,1,,Europe/Paris,,O38, +O38:SA:CTP307,1,"LALLEY",44.757864,5.677509,,1,,Europe/Paris,,O38, +O38:SA:CTP3072,1,"L'ALLEGRERIE",45.216312,5.429027,,1,,Europe/Paris,,O38, +O38:SA:CTP3074,1,"COL.J.CHASSIGNEUX",45.210748,5.40938,,1,,Europe/Paris,,O38, +O38:SA:CTP3076,1,"CROIX PERPIGNAN GARE",45.212134,5.408868,,1,,Europe/Paris,,O38, +O38:SA:CTP3078,1,"MAIRIE",45.210759,5.403918,,1,,Europe/Paris,,O38, +O38:SA:CTP308,1,"LE BOURG - ECOLE",44.794046,5.658487,,1,,Europe/Paris,,O38, +O38:SA:CTP3080,1,"LES AYES",45.21662,5.403347,,1,,Europe/Paris,,O38, +O38:SA:CTP3084,1,"CHAMP DE MARS",45.211118,5.40506,,1,,Europe/Paris,,O38, +O38:SA:CTP3086,1,"ROCHES DE VERDUN",45.223544,5.47436,,1,,Europe/Paris,,O38, +O38:SA:CTP3088,1,"LE MOULIN",45.2197,5.473968,,1,,Europe/Paris,,O38, +O38:SA:CTP3090,1,"ECOLES",45.201537,5.478544,,1,,Europe/Paris,,O38, +O38:SA:CTP3092,1,"LE REGONFLE",45.207387,5.482934,,1,,Europe/Paris,,O38, +O38:SA:CTP3094,1,"CHAMP-FLEURI",45.201941,5.475143,,1,,Europe/Paris,,O38, +O38:SA:CTP3096,1,"BOURG",45.201707,5.481435,,1,,Europe/Paris,,O38, +O38:SA:CTP3098,1,"LE LIGNET",45.22463,5.494962,,1,,Europe/Paris,,O38, +O38:SA:CTP310,1,"LES FOURCHAUX",44.77228,5.65574,,1,,Europe/Paris,,O38, +O38:SA:CTP3101,1,"AUTRANS ECOLES",45.176762,5.543413,,1,,Europe/Paris,,O38, +O38:SA:CTP3103,1,"LES PRUDHOMMES",45.201241,5.570699,,1,,Europe/Paris,,O38, +O38:SA:CTP3105,1,"VILLENEUVE(RD 218)",45.194291,5.566616,,1,,Europe/Paris,,O38, +O38:SA:CTP3107,1,"LES ANEMONES",45.180526,5.555147,,1,,Europe/Paris,,O38, +O38:SA:CTP3109,1,"EYBERTIERE(RD 218)",45.183583,5.558733,,1,,Europe/Paris,,O38, +O38:SA:CTP3111,1,"LE CHATEAU(X OCCAJ)",45.178668,5.551251,,1,,Europe/Paris,,O38, +O38:SA:CTP3113,1,"TRANSFORMATEUR",45.182014,5.544737,,1,,Europe/Paris,,O38, +O38:SA:CTP3115,1,"BOURG LE DESSOUS",45.180923,5.541165,,1,,Europe/Paris,,O38, +O38:SA:CTP3117,1,"EYBERTIERE",45.186342,5.564482,,1,,Europe/Paris,,O38, +O38:SA:CTP3119,1,"LE LAVOIR",45.190711,5.567243,,1,,Europe/Paris,,O38, +O38:SA:CTP312,1,"LE VILLAGE",44.764458,5.664177,,1,,Europe/Paris,,O38, +O38:SA:CTP3121,1,"VILLENEUVE",45.193969,5.570283,,1,,Europe/Paris,,O38, +O38:SA:CTP3122,1,"EYBERTIERE ABRI",45.186202,5.561925,,1,,Europe/Paris,,O38, +O38:SA:CTP3124,1,"LE FOURNEL",45.192402,5.619571,,1,,Europe/Paris,,O38, +O38:SA:CTP3127,1,"PONT JALLA",45.183239,5.621406,,1,,Europe/Paris,,O38, +O38:SA:CTP3130,1,"LA CROIX",45.183079,5.618071,,1,,Europe/Paris,,O38, +O38:SA:CTP3133,1,"PLACE DE LA LIBERATION",45.206687,5.66274,,1,,Europe/Paris,,O38, +O38:SA:CTP3138,1,"CHATEAU",45.212289,5.661784,,1,,Europe/Paris,,O38, +O38:SA:CTP314,1,"DOMAINE DU SERRYA",44.792263,5.670498,,1,,Europe/Paris,,O38, +O38:SA:CTP3143,1,"LA ROLLANDIERE",45.214806,5.661247,,1,,Europe/Paris,,O38, +O38:SA:CTP3147,1,"LES JAUX",45.176792,5.618418,,1,,Europe/Paris,,O38, +O38:SA:CTP3151,1,"LES BRETS",45.190981,5.624941,,1,,Europe/Paris,,O38, +O38:SA:CTP3155,1,"LES GUILLETS",45.174323,5.639495,,1,,Europe/Paris,,O38, +O38:SA:CTP3159,1,"ROMANET",45.17739,5.644511,,1,,Europe/Paris,,O38, +O38:SA:CTP316,1,"PREBOIS",44.789191,5.695092,,1,,Europe/Paris,,O38, +O38:SA:CTP3163,1,"PARISET",45.17472,5.658809,,1,,Europe/Paris,,O38, +O38:SA:CTP3167,1,"LA DENT DU LOUP",45.212979,5.644768,,1,,Europe/Paris,,O38, +O38:SA:CTP3171,1,"RIVOIRE DE LA DAME",45.218101,5.648354,,1,,Europe/Paris,,O38, +O38:SA:CTP3177,1,"USINE",45.199641,5.632025,,1,,Europe/Paris,,O38, +O38:SA:CTP3181,1,"PRE FLEURY",45.204438,5.665005,,1,,Europe/Paris,,O38, +O38:SA:CTP3190,1,"PRESQU'ILE",45.204621,5.701441,,1,,Europe/Paris,,O38, +O38:SA:CTP320,1,"MATERNELLE",44.765343,5.662752,,1,,Europe/Paris,,O38, +O38:SA:CTP3208,1,"DOCTEUR MARTIN",45.187829,5.726827,,1,,Europe/Paris,,O38, +O38:SA:CTP322,1,"TOUCHE BOEUF",44.775223,5.704805,,1,,Europe/Paris,,O38, +O38:SA:CTP3230,1,"VICTOR HUGO",45.189579,5.724961,,1,,Europe/Paris,,O38, +O38:SA:CTP324,1,"LE CHATEAU",44.786268,5.695802,,1,,Europe/Paris,,O38, +O38:SA:CTP3240,1,"VERDUN-PREFECTURE",45.188402,5.730848,,1,,Europe/Paris,,O38, +O38:SA:CTP3253,1,"LE NERON",45.215023,5.696134,,1,,Europe/Paris,,O38, +O38:SA:CTP3257,1,"GARE ROUTIERE",45.193137,5.714175,,1,,Europe/Paris,,O38, +O38:SA:CTP3259,1,"GARES",45.191491,5.715314,,1,,Europe/Paris,,O38, +O38:SA:CTP326,1,"VERSANNES",44.791922,5.651899,,1,,Europe/Paris,,O38, +O38:SA:CTP328,1,"LA COMMANDERIE",44.77174,5.660698,,1,,Europe/Paris,,O38, +O38:SA:CTP3284,1,"CHAVANT",45.185372,5.731422,,1,,Europe/Paris,,O38, +O38:SA:CTP3306,1,"ALLIES",45.173317,5.714218,,1,,Europe/Paris,,O38, +O38:SA:CTP331,1,"BOIRAS",44.787954,5.726614,,1,,Europe/Paris,,O38, +O38:SA:CTP3312,1,"CEA-CAMBRIDGE",45.202653,5.704047,,1,,Europe/Paris,,O38, +O38:SA:CTP3318,1,"VALLIER-LIBERATION (SUD)",45.178736,5.71583,,1,,Europe/Paris,,O38, +O38:SA:CTP332,1,"LES PETITS MOULINS",44.766834,5.724764,,1,,Europe/Paris,,O38, +O38:SA:CTP3333,1,"TROIS DAUPHINS",45.19053,5.725011,,1,,Europe/Paris,,O38, +O38:SA:CTP334,1,"VAREILLES",44.77213,5.722619,,1,,Europe/Paris,,O38, +O38:SA:CTP3343,1,"SAVEUIL",45.192445,5.696226,,1,,Europe/Paris,,O38, +O38:SA:CTP3347,1,"LOUIS MAISONNAT",45.189126,5.694149,,1,,Europe/Paris,,O38, +O38:SA:CTP336,1,"COL DU BANCHET",44.774631,5.729609,,1,,Europe/Paris,,O38, +O38:SA:CTP3371,1,"BUISSERATTE",45.213693,5.698695,,1,,Europe/Paris,,O38, +O38:SA:CTP3380,1,"ARISTIDE BERGES",45.185482,5.694638,,1,,Europe/Paris,,O38, +O38:SA:CTP340,1,"ST BAUDILLE-PIPET",44.784544,5.768458,,1,,Europe/Paris,,O38, +O38:SA:CTP3409,1,"ALSACE-LORRAINE",45.189054,5.719336,,1,,Europe/Paris,,O38, +O38:SA:CTP342,1,"LE CROS",44.780988,5.741679,,1,,Europe/Paris,,O38, +O38:SA:CTP3420,1,"LA POYA",45.197257,5.672211,,1,,Europe/Paris,,O38, +O38:SA:CTP3433,1,"BASSE BUISSERATTE",45.216989,5.694254,,1,,Europe/Paris,,O38, +O38:SA:CTP344,1,"FERME LA RIVIERE",44.787233,5.758239,,1,,Europe/Paris,,O38, +O38:SA:CTP3442,1,"CITE INTERNATIONALE",45.195286,5.710922,,1,,Europe/Paris,,O38, +O38:SA:CTP3450,1,"LES PIES",45.199513,5.669858,,1,,Europe/Paris,,O38, +O38:SA:CTP3459,1,"DOCTEUR MAZET",45.191179,5.720814,,1,,Europe/Paris,,O38, +O38:SA:CTP346,1,"AGNES",44.789351,5.732531,,1,,Europe/Paris,,O38, +O38:SA:CTP3464,1,"BELVEDERE",45.17652,5.688,,1,,Europe/Paris,,O38, +O38:SA:CTP3489,1,"LYCEE DU GRESIVAUDAN-BACHAIS",45.214018,5.779015,,1,,Europe/Paris,,O38, +O38:SA:CTP350,1,"EGLISE-ECOLE",44.745973,5.768223,,1,,Europe/Paris,,O38, +O38:SA:CTP3507,1,"LE RONDEAU",45.21379,5.750058,,1,,Europe/Paris,,O38, +O38:SA:CTP3510,1,"COLLEGE LE CHAMANDIER",45.181997,5.780839,,1,,Europe/Paris,,O38, +O38:SA:CTP3513,1,"INSTITUTION DON BOSCO",45.184567,5.787086,,1,,Europe/Paris,,O38, +O38:SA:CTP3516,1,"LE CEDRE",45.20774,5.756634,,1,,Europe/Paris,,O38, +O38:SA:CTP352,1,"LE PERRIER",44.781373,5.733812,,1,,Europe/Paris,,O38, +O38:SA:CTP3520,1,"MONTFLEURY",45.212395,5.758724,,1,,Europe/Paris,,O38, +O38:SA:CTP3529,1,"TAILLEFER",45.206983,5.784997,,1,,Europe/Paris,,O38, +O38:SA:CTP3533,1,"BIR-HAKEIM",45.18886,5.736442,,1,,Europe/Paris,,O38, +O38:SA:CTP354,1,"PONT DE VAREILLE",44.772279,5.71163,,1,,Europe/Paris,,O38, +O38:SA:CTP3545,1,"EDELWEISS",45.181203,5.788234,,1,,Europe/Paris,,O38, +O38:SA:CTP356,1,"LES BONNETS",44.781393,5.767439,,1,,Europe/Paris,,O38, +O38:SA:CTP3571,1,"COLLEGE DES BUCLOS",45.204955,5.778669,,1,,Europe/Paris,,O38, +O38:SA:CTP3574,1,"LIONEL TERRAY",45.209665,5.766253,,1,,Europe/Paris,,O38, +O38:SA:CTP3585,1,"LA COMBE",45.172765,5.789865,,1,,Europe/Paris,,O38, +O38:SA:CTP3587,1,"LES TERRATS",45.168768,5.793674,,1,,Europe/Paris,,O38, +O38:SA:CTP3590,1,"PABLO NERUDA",45.173965,5.760752,,1,,Europe/Paris,,O38, +O38:SA:CTP360,1,"CLOS LEON BARTHALAY",44.747325,5.743617,,1,,Europe/Paris,,O38, +O38:SA:CTP3636,1,"LA TRONCHE HOPITAL",45.201457,5.742325,,1,,Europe/Paris,,O38, +O38:SA:CTP3640,1,"MUSEE HEBERT",45.205617,5.748889,,1,,Europe/Paris,,O38, +O38:SA:CTP3645,1,"BIBLIOTHEQUES UNIVERSITAIRES",45.191692,5.770285,,1,,Europe/Paris,,O38, +O38:SA:CTP365,1,"LA POSTERLE",44.774527,5.902086,,1,,Europe/Paris,,O38, +O38:SA:CTP3655,1,"CLINIQUE BELLEDONNE",45.185991,5.760896,,1,,Europe/Paris,,O38, +O38:SA:CTP366,1,"LES CHANEAUX",44.784722,5.905966,,1,,Europe/Paris,,O38, +O38:SA:CTP3667,1,"CHAMP ROMAN",45.184525,5.767436,,1,,Europe/Paris,,O38, +O38:SA:CTP3672,1,"UNIVERSITES BIOLOGIE",45.191814,5.775925,,1,,Europe/Paris,,O38, +O38:SA:CTP3680,1,"CHAUMETIERE",45.212489,5.771342,,1,,Europe/Paris,,O38, +O38:SA:CTP3688,1,"INOVALLEE",45.207752,5.78954,,1,,Europe/Paris,,O38, +O38:SA:CTP3698,1,"NEYRPIC-BELLEDONNE",45.186723,5.756251,,1,,Europe/Paris,,O38, +O38:SA:CTP370,1,"VILLAGE",44.752367,6.008695,,1,,Europe/Paris,,O38, +O38:SA:CTP3712,1,"SCIENCES SOCIALES",45.190156,5.769193,,1,,Europe/Paris,,O38, +O38:SA:CTP372,1,"PONT DES RICHARDS",44.775584,6.016436,,1,,Europe/Paris,,O38, +O38:SA:CTP3732,1,"FACULTE DE PHARMACIE",45.211458,5.773887,,1,,Europe/Paris,,O38, +O38:SA:CTP3736,1,"AIGUINARDS-HEXAGONE",45.205055,5.764373,,1,,Europe/Paris,,O38, +O38:SA:CTP374,1,"RUTHIERE",44.822993,5.571364,,1,,Europe/Paris,,O38, +O38:SA:CTP375,1,"CHATEAU-VIEUX",44.817031,5.570551,,1,,Europe/Paris,,O38, +O38:SA:CTP3751,1,"REVIREE SAYETTES",45.212026,5.766339,,1,,Europe/Paris,,O38, +O38:SA:CTP3755,1,"SABLONS",45.197485,5.75359,,1,,Europe/Paris,,O38, +O38:SA:CTP3759,1,"LA REVIREE",45.207449,5.76804,,1,,Europe/Paris,,O38, +O38:SA:CTP376,1,"EGLISE",44.811487,5.573056,,1,,Europe/Paris,,O38, +O38:SA:CTP3764,1,"PLAINE FLEURIE",45.203329,5.762072,,1,,Europe/Paris,,O38, +O38:SA:CTP377,1,"CARREFOUR RICHARDIERE",44.822743,5.553322,,1,,Europe/Paris,,O38, +O38:SA:CTP3775,1,"HOTEL DE VILLE",45.187415,5.737478,,1,,Europe/Paris,,O38, +O38:SA:CTP378,1,"RICHARDIERE",44.822309,5.549898,,1,,Europe/Paris,,O38, +O38:SA:CTP3781,1,"PARKING LYCEE GRESIVAUDAN",45.214598,5.780976,,1,,Europe/Paris,,O38, +O38:SA:CTP3786,1,"HOPITAL MICHALLON",45.19753,5.74604,,1,,Europe/Paris,,O38, +O38:SA:CTP3788,1,"COLLEGE LA MOULINIERE",45.197095,5.828239,,1,,Europe/Paris,,O38, +O38:SA:CTP3791,1,"L'ORATOIRE",45.198036,5.833835,,1,,Europe/Paris,,O38, +O38:SA:CTP3795,1,"LE BOURG",45.192133,5.817298,,1,,Europe/Paris,,O38, +O38:SA:CTP3799,1,"HAMEAU LE FAUX",45.171726,5.846647,,1,,Europe/Paris,,O38, +O38:SA:CTP380,1,"GARE SNCF",44.827539,5.605103,,1,,Europe/Paris,,O38, +O38:SA:CTP3801,1,"LES RIVETS",45.194213,5.822859,,1,,Europe/Paris,,O38, +O38:SA:CTP382,1,"L'ORATOIRE",44.828729,5.614673,,1,,Europe/Paris,,O38, +O38:SA:CTP3826,1,"MAIRIE",45.202318,5.838172,,1,,Europe/Paris,,O38, +O38:SA:CTP384,1,"MAIRIE",44.827508,5.622833,,1,,Europe/Paris,,O38, +O38:SA:CTP3843,1,"LES ISARDS PATTE D'OIE",45.168774,5.864305,,1,,Europe/Paris,,O38, +O38:SA:CTP3846,1,"LA BOURGEAT",45.187222,5.867343,,1,,Europe/Paris,,O38, +O38:SA:CTP3854,1,"CORPS D'URIAGE",45.178172,5.863931,,1,,Europe/Paris,,O38, +O38:SA:CTP3856,1,"LES VALETS",45.167738,5.859026,,1,,Europe/Paris,,O38, +O38:SA:CTP3858,1,"LA RONZIERE 2",45.16875,5.840501,,1,,Europe/Paris,,O38, +O38:SA:CTP386,1,"TREZANNE",44.822804,5.580127,,1,,Europe/Paris,,O38, +O38:SA:CTP3860,1,"LA CHARRIERE",45.213092,5.859167,,1,,Europe/Paris,,O38, +O38:SA:CTP3864,1,"L'USINE",45.208662,5.851289,,1,,Europe/Paris,,O38, +O38:SA:CTP3868,1,"LES VERNES",45.20767,5.833587,,1,,Europe/Paris,,O38, +O38:SA:CTP3873,1,"CHENEVIERES",45.206702,5.8273,,1,,Europe/Paris,,O38, +O38:SA:CTP3877,1,"LE PRIEURE",45.204916,5.835753,,1,,Europe/Paris,,O38, +O38:SA:CTP388,1,"LOT THEYSSONNIERE",44.823487,5.625148,,1,,Europe/Paris,,O38, +O38:SA:CTP3883,1,"LA CHENEVARIE",45.174313,5.858726,,1,,Europe/Paris,,O38, +O38:SA:CTP3886,1,"LA RONZIERE 1",45.170038,5.843591,,1,,Europe/Paris,,O38, +O38:SA:CTP389,1,"LA VIERGE",44.826944,5.628666,,1,,Europe/Paris,,O38, +O38:SA:CTP3893,1,"LA BRIOT",45.19324,5.820112,,1,,Europe/Paris,,O38, +O38:SA:CTP391,1,"ECOLES",44.827563,5.623387,,1,,Europe/Paris,,O38, +O38:SA:CTP3920,1,"LES MORTES",45.196396,5.829198,,1,,Europe/Paris,,O38, +O38:SA:CTP3924,1,"LA PERRIERE",45.190282,5.812895,,1,,Europe/Paris,,O38, +O38:SA:CTP393,1,"GENDARMERIE",44.82434,5.616733,,1,,Europe/Paris,,O38, +O38:SA:CTP3934,1,"LA CROIX DE PINET",45.172463,5.873921,,1,,Europe/Paris,,O38, +O38:SA:CTP394,1,"LES OCHES",44.811744,5.580919,,1,,Europe/Paris,,O38, +O38:SA:CTP3942,1,"LE SAUZET",45.185045,5.872182,,1,,Europe/Paris,,O38, +O38:SA:CTP397,1,"LES RIPPERTS",44.836228,5.605519,,1,,Europe/Paris,,O38, +O38:SA:CTP3982,1,"VILLAGE",45.185832,5.869032,,1,,Europe/Paris,,O38, +O38:SA:CTP3988,1,"LE ROCHAREY",45.174891,5.870494,,1,,Europe/Paris,,O38, +O38:SA:CTP399,1,"LONGEFONDS",44.810772,5.636141,,1,,Europe/Paris,,O38, +O38:SA:CTP3994,1,"PONT RAJAT",45.167182,5.887403,,1,,Europe/Paris,,O38, +O38:SA:CTP3998,1,"LE CHENEVAS",45.171267,5.886984,,1,,Europe/Paris,,O38, +O38:SA:CTP4002,1,"LES GUIMETS",45.175415,5.885448,,1,,Europe/Paris,,O38, +O38:SA:CTP4006,1,"LA SAVOYARDE",45.179526,5.884617,,1,,Europe/Paris,,O38, +O38:SA:CTP4009,1,"LE ROCHAS",45.160123,6.081695,,1,,Europe/Paris,,O38, +O38:SA:CTP4011,1,"LE COLLET-TENNIS",45.168395,6.094443,,1,,Europe/Paris,,O38, +O38:SA:CTP4013,1,"LA VILLETTE",45.163686,6.088617,,1,,Europe/Paris,,O38, +O38:SA:CTP4015,1,"HAUT DE LA VILLETTE",45.164872,6.089282,,1,,Europe/Paris,,O38, +O38:SA:CTP4018,1,"LA TOUR D156",45.262725,5.174208,,1,,Europe/Paris,,O38, +O38:SA:CTP4019,1,"ABRI-BUS CD20",45.256798,5.173159,,1,,Europe/Paris,,O38, +O38:SA:CTP402,1,"LES BLANCS",44.796766,5.63794,,1,,Europe/Paris,,O38, +O38:SA:CTP4021,1,"LE VARNIER",45.258407,5.167376,,1,,Europe/Paris,,O38, +O38:SA:CTP4023,1,"MAISON VIVIER",45.248054,5.196656,,1,,Europe/Paris,,O38, +O38:SA:CTP4025,1,"LE MONNIER",45.263706,5.197739,,1,,Europe/Paris,,O38, +O38:SA:CTP4027,1,"LE PEYRINARD",45.259188,5.188172,,1,,Europe/Paris,,O38, +O38:SA:CTP4029,1,"MAIRIE",45.254289,5.171253,,1,,Europe/Paris,,O38, +O38:SA:CTP403,1,"LES BERLIOUX RN.75",44.839231,5.611255,,1,,Europe/Paris,,O38, +O38:SA:CTP4031,1,"LES LOIVES",45.261105,5.196138,,1,,Europe/Paris,,O38, +O38:SA:CTP4033,1,"LE CHARLET",45.250943,5.187101,,1,,Europe/Paris,,O38, +O38:SA:CTP4035,1,"ROYANDIERE",45.250735,5.189461,,1,,Europe/Paris,,O38, +O38:SA:CTP4037,1,"CHEMIN DU BRULE FER",45.262531,5.20413,,1,,Europe/Paris,,O38, +O38:SA:CTP4039,1,"LE BONJEAN",45.257826,5.16191,,1,,Europe/Paris,,O38, +O38:SA:CTP4041,1,"CAR.PRE REYNAUD",45.26783,5.231703,,1,,Europe/Paris,,O38, +O38:SA:CTP4043,1,"PONT DE PONCET",45.264068,5.249816,,1,,Europe/Paris,,O38, +O38:SA:CTP4045,1,"PLACE JEAN PERRAUD",45.258608,5.24091,,1,,Europe/Paris,,O38, +O38:SA:CTP4047,1,"LES HALLES",45.258455,5.243687,,1,,Europe/Paris,,O38, +O38:SA:CTP405,1,"PONT DE PARASSAT",44.826318,5.668436,,1,,Europe/Paris,,O38, +O38:SA:CTP4051,1,"ECOLES",45.259536,5.24646,,1,,Europe/Paris,,O38, +O38:SA:CTP4054,1,"LE GRAND JULIN",45.250926,5.217199,,1,,Europe/Paris,,O38, +O38:SA:CTP4055,1,"PILON(CAR.MARNANS)",45.279743,5.261856,,1,,Europe/Paris,,O38, +O38:SA:CTP4057,1,"MAISON RAMBAUD",45.275436,5.231329,,1,,Europe/Paris,,O38, +O38:SA:CTP4059,1,"LES ENVERS",45.262698,5.212266,,1,,Europe/Paris,,O38, +O38:SA:CTP4062,1,"LA MARQUISE",45.237324,5.206695,,1,,Europe/Paris,,O38, +O38:SA:CTP4063,1,"CAMPING",45.245917,5.248522,,1,,Europe/Paris,,O38, +O38:SA:CTP4065,1,"LE VATILIER",45.271252,5.249882,,1,,Europe/Paris,,O38, +O38:SA:CTP4067,1,"ROUTE DE GARGAMEL",45.239364,5.247662,,1,,Europe/Paris,,O38, +O38:SA:CTP4069,1,"LE GRAND FAYARD",45.268038,5.213822,,1,,Europe/Paris,,O38, +O38:SA:CTP407,1,"LES MERLONS",44.815979,5.682348,,1,,Europe/Paris,,O38, +O38:SA:CTP4071,1,"ORCEL",45.274986,5.250353,,1,,Europe/Paris,,O38, +O38:SA:CTP4073,1,"CAR. DES QUATRE ROUTES",45.257088,5.244271,,1,,Europe/Paris,,O38, +O38:SA:CTP4075,1,"LE VERNAY",45.250698,5.336968,,1,,Europe/Paris,,O38, +O38:SA:CTP4077,1,"BOURG",45.255956,5.33673,,1,,Europe/Paris,,O38, +O38:SA:CTP4079,1,"PARKING ACCA",45.23228,5.307551,,1,,Europe/Paris,,O38, +O38:SA:CTP4081,1,"LEVAUX",45.237636,5.321335,,1,,Europe/Paris,,O38, +O38:SA:CTP4082,1,"LA COMBE DU LIN",45.245937,5.32584,,1,,Europe/Paris,,O38, +O38:SA:CTP4083,1,"CARREFOUR LA SUIFFE",45.242205,5.37401,,1,,Europe/Paris,,O38, +O38:SA:CTP4085,1,"COTES ET DEVAY",45.234212,5.364331,,1,,Europe/Paris,,O38, +O38:SA:CTP4087,1,"COMBE BUFFIERE",45.252138,5.391696,,1,,Europe/Paris,,O38, +O38:SA:CTP409,1,"PETIT ORIOL PONT",44.820332,5.704717,,1,,Europe/Paris,,O38, +O38:SA:CTP4090,1,"LES CHERPES",45.24384,5.354417,,1,,Europe/Paris,,O38, +O38:SA:CTP4091,1,"CENTRE",45.275525,5.385719,,1,,Europe/Paris,,O38, +O38:SA:CTP4095,1,"COL DU COGNET",45.270413,5.345128,,1,,Europe/Paris,,O38, +O38:SA:CTP4097,1,"MOULIN CAILLATIERE",45.233146,5.392116,,1,,Europe/Paris,,O38, +O38:SA:CTP4099,1,"BOURG",45.231566,5.33821,,1,,Europe/Paris,,O38, +O38:SA:CTP4101,1,"LE ROUA",45.24526,5.337285,,1,,Europe/Paris,,O38, +O38:SA:CTP4103,1,"COMBE ENARDON",45.270779,5.38016,,1,,Europe/Paris,,O38, +O38:SA:CTP4107,1,"LES ROCHES",45.240631,5.336606,,1,,Europe/Paris,,O38, +O38:SA:CTP4109,1,"BRUYERES 2",45.237015,5.356113,,1,,Europe/Paris,,O38, +O38:SA:CTP4111,1,"BRUYERES 3",45.235593,5.356758,,1,,Europe/Paris,,O38, +O38:SA:CTP4113,1,"LA CROIX PERRET",45.260177,5.338746,,1,,Europe/Paris,,O38, +O38:SA:CTP4115,1,"LES MARIONS",45.268284,5.345208,,1,,Europe/Paris,,O38, +O38:SA:CTP4119,1,"CHAPELLES RD22",45.261235,5.36463,,1,,Europe/Paris,,O38, +O38:SA:CTP4121,1,"LES AVENOS",45.257794,5.387675,,1,,Europe/Paris,,O38, +O38:SA:CTP4123,1,"MOULIN CHARPENAY",45.241463,5.383988,,1,,Europe/Paris,,O38, +O38:SA:CTP4125,1,"LE STADE",45.258552,5.372639,,1,,Europe/Paris,,O38, +O38:SA:CTP4127,1,"LA CROISIERE",45.240455,5.358671,,1,,Europe/Paris,,O38, +O38:SA:CTP4128,1,"LE VERT",45.238451,5.361779,,1,,Europe/Paris,,O38, +O38:SA:CTP413,1,"VILLAGE",44.801954,5.651538,,1,,Europe/Paris,,O38, +O38:SA:CTP4131,1,"ECOLES",45.230833,5.337665,,1,,Europe/Paris,,O38, +O38:SA:CTP4133,1,"STADE",45.229693,5.349151,,1,,Europe/Paris,,O38, +O38:SA:CTP4135,1,"LES BROSSES",45.256128,5.37639,,1,,Europe/Paris,,O38, +O38:SA:CTP4137,1,"LE MAGNIN",45.236549,5.342281,,1,,Europe/Paris,,O38, +O38:SA:CTP4139,1,"LES BRUYERES",45.237847,5.352712,,1,,Europe/Paris,,O38, +O38:SA:CTP4141,1,"CAMPING CHARROI",45.230145,5.385142,,1,,Europe/Paris,,O38, +O38:SA:CTP4143,1,"SERRE",45.264485,5.378754,,1,,Europe/Paris,,O38, +O38:SA:CTP4145,1,"LE THOMAS",45.240573,5.336689,,1,,Europe/Paris,,O38, +O38:SA:CTP4149,1,"LE BOURG",45.268849,5.449455,,1,,Europe/Paris,,O38, +O38:SA:CTP415,1,"LES 4 CHEMINS",44.799964,5.646176,,1,,Europe/Paris,,O38, +O38:SA:CTP4151,1,"ECOLES",45.267512,5.448637,,1,,Europe/Paris,,O38, +O38:SA:CTP4153,1,"MAT.N.D.L'OSIER",45.23899,5.405879,,1,,Europe/Paris,,O38, +O38:SA:CTP4155,1,"ECOLES",45.245323,5.445116,,1,,Europe/Paris,,O38, +O38:SA:CTP4157,1,"HAUT",45.259084,5.446824,,1,,Europe/Paris,,O38, +O38:SA:CTP4159,1,"BOURG",45.243633,5.444836,,1,,Europe/Paris,,O38, +O38:SA:CTP4161,1,"LES MOLLARDS",45.249536,5.445454,,1,,Europe/Paris,,O38, +O38:SA:CTP4163,1,"VILLE",45.255968,5.438302,,1,,Europe/Paris,,O38, +O38:SA:CTP4165,1,"LE MARAIS RD1092",45.242796,5.449966,,1,,Europe/Paris,,O38, +O38:SA:CTP4167,1,"BOURG",45.238439,5.40543,,1,,Europe/Paris,,O38, +O38:SA:CTP4169,1,"RN 92/RTE DE POLIENAS",45.260621,5.458367,,1,,Europe/Paris,,O38, +O38:SA:CTP417,1,"PONT DE PREBOIS",44.808622,5.700303,,1,,Europe/Paris,,O38, +O38:SA:CTP4171,1,"CHALAMAND",45.259548,5.429367,,1,,Europe/Paris,,O38, +O38:SA:CTP4173,1,"LE RIF",45.248098,5.420763,,1,,Europe/Paris,,O38, +O38:SA:CTP4175,1,"LA ROCHE",45.251448,5.465867,,1,,Europe/Paris,,O38, +O38:SA:CTP4177,1,"LES ESSARTS",45.267609,5.467627,,1,,Europe/Paris,,O38, +O38:SA:CTP4179,1,"GALEJAND",45.247675,5.404083,,1,,Europe/Paris,,O38, +O38:SA:CTP4181,1,"LA JACONNIERE",45.253947,5.431457,,1,,Europe/Paris,,O38, +O38:SA:CTP4183,1,"CHAUDRONNERIE SAMI",45.256009,5.465441,,1,,Europe/Paris,,O38, +O38:SA:CTP4185,1,"FERME DE L'ARENE",45.244004,5.40626,,1,,Europe/Paris,,O38, +O38:SA:CTP4187,1,"LA CHARRIERE",45.253435,5.407451,,1,,Europe/Paris,,O38, +O38:SA:CTP4189,1,"VILLAGE",45.256556,5.408589,,1,,Europe/Paris,,O38, +O38:SA:CTP419,1,"MENGLAS",44.806954,5.769684,,1,,Europe/Paris,,O38, +O38:SA:CTP4191,1,"PIGENTIERE",45.232831,5.403475,,1,,Europe/Paris,,O38, +O38:SA:CTP4193,1,"TIZIN",45.27197,5.480401,,1,,Europe/Paris,,O38, +O38:SA:CTP4195,1,"MONUMENT AUX MORTS",45.252305,5.472788,,1,,Europe/Paris,,O38, +O38:SA:CTP4197,1,"LA THIVOLLIERE",45.243757,5.472759,,1,,Europe/Paris,,O38, +O38:SA:CTP4199,1,"LE GUY",45.258952,5.476583,,1,,Europe/Paris,,O38, +O38:SA:CTP4201,1,"BOURG",45.249453,5.471658,,1,,Europe/Paris,,O38, +O38:SA:CTP4203,1,"MAIRIE",45.234214,5.506611,,1,,Europe/Paris,,O38, +O38:SA:CTP4205,1,"ROUTE DE LA RIVIERE",45.239714,5.504027,,1,,Europe/Paris,,O38, +O38:SA:CTP4207,1,"CITES",45.254806,5.476055,,1,,Europe/Paris,,O38, +O38:SA:CTP4209,1,"LA RENAUDIERE",45.264204,5.528473,,1,,Europe/Paris,,O38, +O38:SA:CTP421,1,"RTE-ENTRESSEAUX",44.816327,5.774142,,1,,Europe/Paris,,O38, +O38:SA:CTP4211,1,"LES BRUNIERES",45.247863,5.514882,,1,,Europe/Paris,,O38, +O38:SA:CTP4213,1,"LE COING",45.249441,5.55419,,1,,Europe/Paris,,O38, +O38:SA:CTP4215,1,"VIF DE LA CLAIE",45.254787,5.559818,,1,,Europe/Paris,,O38, +O38:SA:CTP4217,1,"LES ETROITS",45.263947,5.566021,,1,,Europe/Paris,,O38, +O38:SA:CTP4219,1,"LES CHARPENNES",45.269522,5.556165,,1,,Europe/Paris,,O38, +O38:SA:CTP4221,1,"LE MUET",45.257332,5.55344,,1,,Europe/Paris,,O38, +O38:SA:CTP4223,1,"BOURG",45.262678,5.560991,,1,,Europe/Paris,,O38, +O38:SA:CTP4225,1,"RESIDENCE MUTUALISTE",45.254052,5.662288,,1,,Europe/Paris,,O38, +O38:SA:CTP423,1,"SER CLAPI",44.832388,5.776337,,1,,Europe/Paris,,O38, +O38:SA:CTP4230,1,"RIF TRONCHARD",45.246294,5.6678,,1,,Europe/Paris,,O38, +O38:SA:CTP4242,1,"LE RUISSET",45.250021,5.631572,,1,,Europe/Paris,,O38, +O38:SA:CTP4246,1,"SAINT-JEAN",45.238263,5.635136,,1,,Europe/Paris,,O38, +O38:SA:CTP4249,1,"BASCULE",45.242862,5.632175,,1,,Europe/Paris,,O38, +O38:SA:CTP425,1,"AUBEPIN",44.834156,5.717535,,1,,Europe/Paris,,O38, +O38:SA:CTP4257,1,"CAP 38",45.240378,5.664694,,1,,Europe/Paris,,O38, +O38:SA:CTP4261,1,"LES ECHALIERES",45.268182,5.619362,,1,,Europe/Paris,,O38, +O38:SA:CTP4265,1,"KARBEN",45.243143,5.670407,,1,,Europe/Paris,,O38, +O38:SA:CTP427,1,"SERRE DE MILMASE",44.804766,5.72865,,1,,Europe/Paris,,O38, +O38:SA:CTP4271,1,"USINE L",45.247977,5.658402,,1,,Europe/Paris,,O38, +O38:SA:CTP4273,1,"LES CHAULNES",45.236411,5.638041,,1,,Europe/Paris,,O38, +O38:SA:CTP4277,1,"SAN MARINO BARRAGE",45.236248,5.660977,,1,,Europe/Paris,,O38, +O38:SA:CTP4282,1,"ILES CORDEES",45.259642,5.626132,,1,,Europe/Paris,,O38, +O38:SA:CTP429,1,"ECOLES",44.816327,5.74817,,1,,Europe/Paris,,O38, +O38:SA:CTP4294,1,"LA PINEA",45.235094,5.67625,,1,,Europe/Paris,,O38, +O38:SA:CTP4298,1,"LA MONTA",45.237997,5.688659,,1,,Europe/Paris,,O38, +O38:SA:CTP4301,1,"LES BONNAIS",45.240139,5.672821,,1,,Europe/Paris,,O38, +O38:SA:CTP431,1,"FOREYRE",44.810052,5.722855,,1,,Europe/Paris,,O38, +O38:SA:CTP4318,1,"LE MURET",45.225806,5.686339,,1,,Europe/Paris,,O38, +O38:SA:CTP433,1,"LE GRAND ORIOL",44.829631,5.717185,,1,,Europe/Paris,,O38, +O38:SA:CTP4334,1,"PONT DE VENCE",45.229833,5.6828,,1,,Europe/Paris,,O38, +O38:SA:CTP4343,1,"TROIS PONTS",45.219798,5.691642,,1,,Europe/Paris,,O38, +O38:SA:CTP4349,1,"MAIRIE",45.233169,5.678736,,1,,Europe/Paris,,O38, +O38:SA:CTP435,1,"PETIT ORIOL-EAUX",44.824306,5.715466,,1,,Europe/Paris,,O38, +O38:SA:CTP4357,1,"ROCHEPLEINE",45.244315,5.674894,,1,,Europe/Paris,,O38, +O38:SA:CTP4363,1,"PREDIEU",45.223439,5.68859,,1,,Europe/Paris,,O38, +O38:SA:CTP437,1,"PIERRE VULSON",44.840487,5.724138,,1,,Europe/Paris,,O38, +O38:SA:CTP4381,1,"MOUTONNEES",45.228042,5.68433,,1,,Europe/Paris,,O38, +O38:SA:CTP4387,1,"LES ARRIOTS",45.230355,5.794425,,1,,Europe/Paris,,O38, +O38:SA:CTP4400,1,"LA DETOURBE",45.223216,5.793196,,1,,Europe/Paris,,O38, +O38:SA:CTP4406,1,"CROIX ST-PHILIBERT",45.232328,5.798768,,1,,Europe/Paris,,O38, +O38:SA:CTP4418,1,"MAIRIE-FRANQUIERES",45.237708,5.803496,,1,,Europe/Paris,,O38, +O38:SA:CTP442,1,"MAS MARTINENC",44.796668,5.730265,,1,,Europe/Paris,,O38, +O38:SA:CTP4426,1,"LES JAILLIERES",45.220648,5.789221,,1,,Europe/Paris,,O38, +O38:SA:CTP4429,1,"PLEIN SOLEIL",45.22202,5.799582,,1,,Europe/Paris,,O38, +O38:SA:CTP4433,1,"SAINT-MURY",45.218836,5.786831,,1,,Europe/Paris,,O38, +O38:SA:CTP4444,1,"LUCIE PELLAT",45.224836,5.797802,,1,,Europe/Paris,,O38, +O38:SA:CTP4448,1,"CHEMIN DES ARRIOTS",45.22771,5.795911,,1,,Europe/Paris,,O38, +O38:SA:CTP446,1,"PLACE DU VERCORS",44.816609,5.747923,,1,,Europe/Paris,,O38, +O38:SA:CTP448,1,"COLLEGE DU TRIEVES",44.815345,5.748551,,1,,Europe/Paris,,O38, +O38:SA:CTP4500,1,"HAMEAU FLEURI",45.225363,5.809227,,1,,Europe/Paris,,O38, +O38:SA:CTP4504,1,"LE HAUT",45.239423,5.806505,,1,,Europe/Paris,,O38, +O38:SA:CTP451,1,"ST BAUVAIS",44.78821,5.755851,,1,,Europe/Paris,,O38, +O38:SA:CTP4511,1,"LES EVEQUAUX",45.238845,5.817449,,1,,Europe/Paris,,O38, +O38:SA:CTP4516,1,"LES CLAVERINS RD1090",45.233811,5.809675,,1,,Europe/Paris,,O38, +O38:SA:CTP452,1,"FOREYRE RD.526",44.813403,5.717329,,1,,Europe/Paris,,O38, +O38:SA:CTP4521,1,"PRE MILLET",45.222073,5.813315,,1,,Europe/Paris,,O38, +O38:SA:CTP4525,1,"LE TARTAIX",45.229171,5.817946,,1,,Europe/Paris,,O38, +O38:SA:CTP4538,1,"LES BARRAUX",45.242051,5.812492,,1,,Europe/Paris,,O38, +O38:SA:CTP454,1,"BEAUMET",44.812958,5.742484,,1,,Europe/Paris,,O38, +O38:SA:CTP4541,1,"CROIX VERTE",45.219097,5.810136,,1,,Europe/Paris,,O38, +O38:SA:CTP4549,1,"LA GARE",45.228639,5.804931,,1,,Europe/Paris,,O38, +O38:SA:CTP4552,1,"ECOLE DES CHAVANNES",45.222865,5.808895,,1,,Europe/Paris,,O38, +O38:SA:CTP4555,1,"LA BATIE",45.239181,5.850665,,1,,Europe/Paris,,O38, +O38:SA:CTP4559,1,"GARE",45.246133,5.831302,,1,,Europe/Paris,,O38, +O38:SA:CTP456,1,"MILMAZE",44.803999,5.723647,,1,,Europe/Paris,,O38, +O38:SA:CTP4567,1,"LES COMBES-CHEMIN DU MAS",45.249591,5.82029,,1,,Europe/Paris,,O38, +O38:SA:CTP4568,1,"LE SERVAGE",45.245519,5.819905,,1,,Europe/Paris,,O38, +O38:SA:CTP458,1,"MENTAYRE",44.817817,5.779382,,1,,Europe/Paris,,O38, +O38:SA:CTP4581,1,"CHATEAU RANDON",45.242289,5.824589,,1,,Europe/Paris,,O38, +O38:SA:CTP460,1,"CORDEAC",44.827726,5.840164,,1,,Europe/Paris,,O38, +O38:SA:CTP4600,1,"PLACE DE L'EGLISE",45.248286,5.826317,,1,,Europe/Paris,,O38, +O38:SA:CTP4616,1,"COLLEGE GRESIVAUDAN",45.240185,5.820771,,1,,Europe/Paris,,O38, +O38:SA:CTP4620,1,"LES EYMES RD1090",45.256003,5.846347,,1,,Europe/Paris,,O38, +O38:SA:CTP4632,1,"CROIX DU ROZAT",45.253179,5.830652,,1,,Europe/Paris,,O38, +O38:SA:CTP4635,1,"COTE BELLE",45.218366,5.865261,,1,,Europe/Paris,,O38, +O38:SA:CTP4656,1,"MAIRIE",45.247421,5.851625,,1,,Europe/Paris,,O38, +O38:SA:CTP466,1,"LES MARINIERS",44.818331,5.908238,,1,,Europe/Paris,,O38, +O38:SA:CTP4667,1,"LA PLACE",45.215527,5.862239,,1,,Europe/Paris,,O38, +O38:SA:CTP469,1,"RN 85",44.833,5.893259,,1,,Europe/Paris,,O38, +O38:SA:CTP4698,1,"PRE DE L'EAU",45.224217,5.817848,,1,,Europe/Paris,,O38, +O38:SA:CTP4701,1,"CLOS MARCHAND",45.249539,5.828262,,1,,Europe/Paris,,O38, +O38:SA:CTP471,1,"LES MORAS",44.807574,5.898603,,1,,Europe/Paris,,O38, +O38:SA:CTP472,1,"LE BAS DE QUET",44.83677,5.858127,,1,,Europe/Paris,,O38, +O38:SA:CTP474,1,"LES PAYAS",44.798836,5.906719,,1,,Europe/Paris,,O38, +O38:SA:CTP475,1,"QUET-EN-BEAUMONT",44.834166,5.873677,,1,,Europe/Paris,,O38, +O38:SA:CTP476,1,"LA CROIX DE LA PIGNE",44.812162,5.881,,1,,Europe/Paris,,O38, +O38:SA:CTP477,1,"MAIRIE",44.835855,5.875496,,1,,Europe/Paris,,O38, +O38:SA:CTP478,1,"MOULIN ACHARDS",44.812075,5.864066,,1,,Europe/Paris,,O38, +O38:SA:CTP480,1,"LES GACHETS",44.817168,5.866287,,1,,Europe/Paris,,O38, +O38:SA:CTP4806,1,"BRIGNOUD PLACE",45.258582,5.908649,,1,,Europe/Paris,,O38, +O38:SA:CTP482,1,"LE MOULIN",44.822916,5.950041,,1,,Europe/Paris,,O38, +O38:SA:CTP484,1,"PAQUETTES",44.827119,5.930292,,1,,Europe/Paris,,O38, +O38:SA:CTP4841,1,"CITE DES ROSES",45.230528,5.878354,,1,,Europe/Paris,,O38, +O38:SA:CTP4852,1,"BRIGNOUD CENTRE",45.256192,5.90604,,1,,Europe/Paris,,O38, +O38:SA:CTP486,1,"LE VILLAGE",44.80545,5.93074,,1,,Europe/Paris,,O38, +O38:SA:CTP4864,1,"PONT DE PRUNEY",45.225522,5.873076,,1,,Europe/Paris,,O38, +O38:SA:CTP488,1,"BEAUFIN",44.789151,5.959575,,1,,Europe/Paris,,O38, +O38:SA:CTP490,1,"ECOLE COMMUNALE",44.818928,5.946835,,1,,Europe/Paris,,O38, +O38:SA:CTP492,1,"LE SAUTET LA COMBE",44.819289,5.915495,,1,,Europe/Paris,,O38, +O38:SA:CTP494,1,"LES CHAPOUX",44.818022,5.918947,,1,,Europe/Paris,,O38, +O38:SA:CTP4951,1,"LES CATHERINES",45.317564,4.779546,,1,,Europe/Paris,,O38, +O38:SA:CTP4953,1,"LES GRANGES",45.327174,4.767183,,1,,Europe/Paris,,O38, +O38:SA:CTP4955,1,"PONT DU RHONE",45.319534,4.768332,,1,,Europe/Paris,,O38, +O38:SA:CTP4959,1,"GIRATOIRE-STADE-AUBERGE L'ILE",45.322478,4.767864,,1,,Europe/Paris,,O38, +O38:SA:CTP496,1,"LES CHENETS",44.818736,5.933214,,1,,Europe/Paris,,O38, +O38:SA:CTP4961,1,"MONCEY-STOP",45.317467,4.783272,,1,,Europe/Paris,,O38, +O38:SA:CTP4963,1,"EGLISE-MAIRIE",45.317986,4.774619,,1,,Europe/Paris,,O38, +O38:SA:CTP4965,1,"CITE CNR",45.307606,4.794218,,1,,Europe/Paris,,O38, +O38:SA:CTP4967,1,"CAR.RD 519",45.319442,4.837034,,1,,Europe/Paris,,O38, +O38:SA:CTP497,1,"VILLAGE VACANCES",44.814639,5.941486,,1,,Europe/Paris,,O38, +O38:SA:CTP4973,1,"COMBE-BAYON",45.311496,4.86363,,1,,Europe/Paris,,O38, +O38:SA:CTP4975,1,"GENDARMERIE",45.319233,4.810553,,1,,Europe/Paris,,O38, +O38:SA:CTP4977,1,"LES DOREAUX",45.310739,4.860192,,1,,Europe/Paris,,O38, +O38:SA:CTP4979,1,"CAMP.BEAUSEJOUR",45.314495,4.824505,,1,,Europe/Paris,,O38, +O38:SA:CTP498,1,"CARDAIRE LES COTES",44.831885,5.913962,,1,,Europe/Paris,,O38, +O38:SA:CTP4981,1,"LES GUYOTS",45.323325,4.831256,,1,,Europe/Paris,,O38, +O38:SA:CTP4983,1,"MAIRIE",45.318069,4.819753,,1,,Europe/Paris,,O38, +O38:SA:CTP4985,1,"PLANISSIEU N.30bis",45.326064,4.816323,,1,,Europe/Paris,,O38, +O38:SA:CTP4987,1,"CACHEPIOU",45.307842,4.80894,,1,,Europe/Paris,,O38, +O38:SA:CTP4989,1,"PLANISSIEU N.26",45.321469,4.817014,,1,,Europe/Paris,,O38, +O38:SA:CTP4991,1,"LES FALQUES",45.324201,4.859095,,1,,Europe/Paris,,O38, +O38:SA:CTP4993,1,"LES CLAVETTES",45.307439,4.866452,,1,,Europe/Paris,,O38, +O38:SA:CTP4995,1,"ROND POINT",45.317313,4.808115,,1,,Europe/Paris,,O38, +O38:SA:CTP4998,1,"LA BATIE",45.320482,4.824615,,1,,Europe/Paris,,O38, +O38:SA:CTP500,1,"PLACE NAPOLEON",44.817456,5.948319,,1,,Europe/Paris,,O38, +O38:SA:CTP5000,1,"LE MAS",45.325603,4.89567,,1,,Europe/Paris,,O38, +O38:SA:CTP5002,1,"PORTE DU CHATEAU",45.328682,4.903143,,1,,Europe/Paris,,O38, +O38:SA:CTP5004,1,"CHEM.CHANTECAILLE",45.322495,4.896442,,1,,Europe/Paris,,O38, +O38:SA:CTP5006,1,"MALMORT",45.315642,4.874561,,1,,Europe/Paris,,O38, +O38:SA:CTP5008,1,"GRANGE NEUVE D519",45.327097,4.875151,,1,,Europe/Paris,,O38, +O38:SA:CTP5010,1,"CHAMBALUD ECOLE",45.318854,4.876114,,1,,Europe/Paris,,O38, +O38:SA:CTP5012,1,"CARREF.ROTISSES",45.308455,4.876699,,1,,Europe/Paris,,O38, +O38:SA:CTP5014,1,"LA BARONNIERE",45.330958,4.893798,,1,,Europe/Paris,,O38, +O38:SA:CTP5016,1,"MAIRIE",45.330693,4.901831,,1,,Europe/Paris,,O38, +O38:SA:CTP5018,1,"CHANTE PERDRIX",45.320809,4.893851,,1,,Europe/Paris,,O38, +O38:SA:CTP5020,1,"ROUTE DE SONNAY",45.332354,4.9076,,1,,Europe/Paris,,O38, +O38:SA:CTP5022,1,"LES BRUYERES OUEST",45.317504,4.887213,,1,,Europe/Paris,,O38, +O38:SA:CTP5024,1,"LES BRUYERES EST",45.316329,4.893529,,1,,Europe/Paris,,O38, +O38:SA:CTP5026,1,"PLACE",45.333521,4.947091,,1,,Europe/Paris,,O38, +O38:SA:CTP5028,1,"GRANGE GUERIN",45.326642,5.022927,,1,,Europe/Paris,,O38, +O38:SA:CTP5029,1,"CHAMP DES MULES",45.317722,5.130315,,1,,Europe/Paris,,O38, +O38:SA:CTP5031,1,"LES POIRIERS",45.309501,5.120613,,1,,Europe/Paris,,O38, +O38:SA:CTP5033,1,"FEYDEL D130",45.308806,5.115399,,1,,Europe/Paris,,O38, +O38:SA:CTP5037,1,"LE RIF D130",45.311305,5.128491,,1,,Europe/Paris,,O38, +O38:SA:CTP5039,1,"FERME SANCY",45.296401,5.096908,,1,,Europe/Paris,,O38, +O38:SA:CTP5041,1,"PLACE",45.299673,5.113315,,1,,Europe/Paris,,O38, +O38:SA:CTP5043,1,"FANTINIERE",45.30682,5.098627,,1,,Europe/Paris,,O38, +O38:SA:CTP5045,1,"CHANTABOT",45.320024,5.119937,,1,,Europe/Paris,,O38, +O38:SA:CTP5047,1,"PLACE",45.305139,5.087252,,1,,Europe/Paris,,O38, +O38:SA:CTP5049,1,"VILLAGE",45.326641,5.121439,,1,,Europe/Paris,,O38, +O38:SA:CTP5053,1,"CHEMIN DU FARABEY",45.292393,5.07462,,1,,Europe/Paris,,O38, +O38:SA:CTP5055,1,"LE SABOT",45.315914,5.140242,,1,,Europe/Paris,,O38, +O38:SA:CTP5057,1,"LE BOUILLAT",45.314317,5.164647,,1,,Europe/Paris,,O38, +O38:SA:CTP5059,1,"EGLISE",45.317633,5.169688,,1,,Europe/Paris,,O38, +O38:SA:CTP506,1,"LA JAVERGNE",44.810849,5.914292,,1,,Europe/Paris,,O38, +O38:SA:CTP5061,1,"LE RIVAL",45.313868,5.145344,,1,,Europe/Paris,,O38, +O38:SA:CTP5063,1,"LE VILLAGE",45.316268,5.204746,,1,,Europe/Paris,,O38, +O38:SA:CTP5067,1,"LES BAJEAUX",45.301586,5.193795,,1,,Europe/Paris,,O38, +O38:SA:CTP507,1,"VILLAGE",44.832308,5.920336,,1,,Europe/Paris,,O38, +O38:SA:CTP5071,1,"LES SABLES",45.327697,5.164004,,1,,Europe/Paris,,O38, +O38:SA:CTP5073,1,"ECOLE",45.317762,5.167689,,1,,Europe/Paris,,O38, +O38:SA:CTP5075,1,"LA BOURGEAT",45.320172,5.165406,,1,,Europe/Paris,,O38, +O38:SA:CTP5077,1,"HAMEAU DE PERRETIERE",45.29313,5.197839,,1,,Europe/Paris,,O38, +O38:SA:CTP5081,1,"GROS JEAN",45.298954,5.246991,,1,,Europe/Paris,,O38, +O38:SA:CTP5083,1,"PLACE",45.321033,5.23002,,1,,Europe/Paris,,O38, +O38:SA:CTP5086,1,"CHARPENAY-BAIZE",45.319194,5.267266,,1,,Europe/Paris,,O38, +O38:SA:CTP5087,1,"CHARPENAY",45.313134,5.260772,,1,,Europe/Paris,,O38, +O38:SA:CTP509,1,"LA PLAINE-RD.537",44.796548,5.910612,,1,,Europe/Paris,,O38, +O38:SA:CTP5091,1,"CASERNE",45.283129,5.210119,,1,,Europe/Paris,,O38, +O38:SA:CTP5093,1,"CAR. CHAMBARAN",45.282592,5.226665,,1,,Europe/Paris,,O38, +O38:SA:CTP5095,1,"LE CHEVALIN",45.325165,5.242519,,1,,Europe/Paris,,O38, +O38:SA:CTP5097,1,"LE BOCAGE D130",45.320808,5.20713,,1,,Europe/Paris,,O38, +O38:SA:CTP5099,1,"BEAUREGARD",45.317498,5.248472,,1,,Europe/Paris,,O38, +O38:SA:CTP510,1,"LE MOTTY",44.792305,5.979668,,1,,Europe/Paris,,O38, +O38:SA:CTP5100,1,"LE PILON",45.279674,5.261712,,1,,Europe/Paris,,O38, +O38:SA:CTP5102,1,"IMPASSE PRE REYNAUD",45.280341,5.237743,,1,,Europe/Paris,,O38, +O38:SA:CTP5104,1,"CARREF.CHARPENAY",45.311945,5.265412,,1,,Europe/Paris,,O38, +O38:SA:CTP5106,1,"CHEMIN DES TERRES",45.287336,5.243732,,1,,Europe/Paris,,O38, +O38:SA:CTP5108,1,"CHEMIN DES CLERCS",45.293053,5.24859,,1,,Europe/Paris,,O38, +O38:SA:CTP5110,1,"LE PIVAT",45.290828,5.239363,,1,,Europe/Paris,,O38, +O38:SA:CTP5112,1,"MAIRIE",45.292824,5.337712,,1,,Europe/Paris,,O38, +O38:SA:CTP5114,1,"ECOLE",45.292738,5.337698,,1,,Europe/Paris,,O38, +O38:SA:CTP512,1,"RN85",44.79872,5.974905,,1,,Europe/Paris,,O38, +O38:SA:CTP5120,1,"COURS FAVIER",45.310294,5.337477,,1,,Europe/Paris,,O38, +O38:SA:CTP5122,1,"CAFE SAUZE(BASCULE)",45.323546,5.339404,,1,,Europe/Paris,,O38, +O38:SA:CTP5124,1,"LE PETIT MOULIN",45.305093,5.339809,,1,,Europe/Paris,,O38, +O38:SA:CTP5126,1,"TERRE GRASSE",45.299778,5.340482,,1,,Europe/Paris,,O38, +O38:SA:CTP5128,1,"LE COLLET",45.314701,5.299648,,1,,Europe/Paris,,O38, +O38:SA:CTP5130,1,"EGLISE",45.315797,5.287387,,1,,Europe/Paris,,O38, +O38:SA:CTP5132,1,"PLACE",45.315189,5.283745,,1,,Europe/Paris,,O38, +O38:SA:CTP5134,1,"LA COMBE DE VAULX",45.312957,5.306554,,1,,Europe/Paris,,O38, +O38:SA:CTP5136,1,"LA BARATIERE",45.290151,5.342487,,1,,Europe/Paris,,O38, +O38:SA:CTP5138,1,"CRX TOUTES AURES",45.284062,5.35234,,1,,Europe/Paris,,O38, +O38:SA:CTP514,1,"SAVOURAIRE",44.87212,5.607732,,1,,Europe/Paris,,O38, +O38:SA:CTP5140,1,"GRANGE NEUVE",45.286306,5.344722,,1,,Europe/Paris,,O38, +O38:SA:CTP5142,1,"CIMETIERE",45.306275,5.362928,,1,,Europe/Paris,,O38, +O38:SA:CTP5144,1,"RESTAURANT POYAUD",45.300652,5.397545,,1,,Europe/Paris,,O38, +O38:SA:CTP5146,1,"PLACE",45.295475,5.402704,,1,,Europe/Paris,,O38, +O38:SA:CTP5148,1,"LES FOURCOULES",45.308265,5.370546,,1,,Europe/Paris,,O38, +O38:SA:CTP5152,1,"TENNIS",45.312594,5.391687,,1,,Europe/Paris,,O38, +O38:SA:CTP5154,1,"BASCULE",45.305207,5.354167,,1,,Europe/Paris,,O38, +O38:SA:CTP5157,1,"ECOLE",45.305462,5.356738,,1,,Europe/Paris,,O38, +O38:SA:CTP5158,1,"LE BOURG",45.322188,5.35503,,1,,Europe/Paris,,O38, +O38:SA:CTP516,1,"LES OCHES",44.884732,5.642319,,1,,Europe/Paris,,O38, +O38:SA:CTP5160,1,"LA COILLE",45.278541,5.358892,,1,,Europe/Paris,,O38, +O38:SA:CTP5163,1,"LA BATHIE",45.306153,5.388881,,1,,Europe/Paris,,O38, +O38:SA:CTP5164,1,"ECOLE",45.315248,5.394966,,1,,Europe/Paris,,O38, +O38:SA:CTP5167,1,"ECOLE",45.321816,5.351084,,1,,Europe/Paris,,O38, +O38:SA:CTP5168,1,"LE CHAPERON",45.298437,5.407324,,1,,Europe/Paris,,O38, +O38:SA:CTP5170,1,"PARRETAS",45.280088,5.457496,,1,,Europe/Paris,,O38, +O38:SA:CTP5172,1,"FONTAINE",45.316509,5.42892,,1,,Europe/Paris,,O38, +O38:SA:CTP5174,1,"BOURG",45.284261,5.45218,,1,,Europe/Paris,,O38, +O38:SA:CTP5176,1,"LE GIRIN",45.304883,5.4194,,1,,Europe/Paris,,O38, +O38:SA:CTP5182,1,"GRAND TIZIN",45.277007,5.482062,,1,,Europe/Paris,,O38, +O38:SA:CTP519,1,"LA CHABANNERIE",44.851803,5.627564,,1,,Europe/Paris,,O38, +O38:SA:CTP5199,1,"GARE SNCF",45.301169,5.491371,,1,,Europe/Paris,,O38, +O38:SA:CTP520,1,"VILLAGE",44.870209,5.596922,,1,,Europe/Paris,,O38, +O38:SA:CTP5202,1,"MALATRAS",45.275745,5.477607,,1,,Europe/Paris,,O38, +O38:SA:CTP5204,1,"TRANSPORT FONTAINE",45.289471,5.483208,,1,,Europe/Paris,,O38, +O38:SA:CTP5207,1,"ECOLE CAMILLE DESMOULINS",45.298724,5.485171,,1,,Europe/Paris,,O38, +O38:SA:CTP5214,1,"BASCULE",45.29582,5.483313,,1,,Europe/Paris,,O38, +O38:SA:CTP5215,1,"LE MARTINET",45.279648,5.538711,,1,,Europe/Paris,,O38, +O38:SA:CTP5217,1,"LE GRAND CHAMPS",45.273856,5.558391,,1,,Europe/Paris,,O38, +O38:SA:CTP5219,1,"BOURG",45.281002,5.54612,,1,,Europe/Paris,,O38, +O38:SA:CTP5221,1,"LE GIT",45.276643,5.54739,,1,,Europe/Paris,,O38, +O38:SA:CTP5223,1,"REPLAT CAB.BAMBOU",45.293095,5.583291,,1,,Europe/Paris,,O38, +O38:SA:CTP5225,1,"LE GOLF",45.286316,5.557879,,1,,Europe/Paris,,O38, +O38:SA:CTP5227,1,"PERAUDIERE",45.291625,5.576326,,1,,Europe/Paris,,O38, +O38:SA:CTP5229,1,"ECOLE",45.279444,5.543986,,1,,Europe/Paris,,O38, +O38:SA:CTP523,1,"BOURG",44.885201,5.638923,,1,,Europe/Paris,,O38, +O38:SA:CTP5231,1,"FONTBESSET-PISCICULTURE",45.288457,5.572319,,1,,Europe/Paris,,O38, +O38:SA:CTP5233,1,"SOUS-GIBRALTAR RD1532",45.285013,5.553812,,1,,Europe/Paris,,O38, +O38:SA:CTP5235,1,"LE REPLAT-SOCIETE PERRIN",45.292572,5.5796,,1,,Europe/Paris,,O38, +O38:SA:CTP524,1,"CONDAMINE(STAT.OYO)",44.853659,5.617646,,1,,Europe/Paris,,O38, +O38:SA:CTP5245,1,"LE CHATEAU",45.287919,5.563418,,1,,Europe/Paris,,O38, +O38:SA:CTP5248,1,"SEMINAIRE",45.292672,5.631304,,1,,Europe/Paris,,O38, +O38:SA:CTP5260,1,"LA VERRONIERE",45.29279,5.63943,,1,,Europe/Paris,,O38, +O38:SA:CTP527,1,"LES PEYROUSES",44.887297,5.62463,,1,,Europe/Paris,,O38, +O38:SA:CTP5292,1,"LETP LES PORTES DE CHARTREUSE",45.291664,5.634809,,1,,Europe/Paris,,O38, +O38:SA:CTP5298,1,"LES BANETTES",45.29911,5.631821,,1,,Europe/Paris,,O38, +O38:SA:CTP530,1,"LES PEYROUSES 2",44.888906,5.621621,,1,,Europe/Paris,,O38, +O38:SA:CTP5306,1,"VOLOUISE",45.28549,5.643534,,1,,Europe/Paris,,O38, +O38:SA:CTP5310,1,"ALLIBERT",45.315382,5.603446,,1,,Europe/Paris,,O38, +O38:SA:CTP5314,1,"LA RIVE",45.269812,5.618233,,1,,Europe/Paris,,O38, +O38:SA:CTP5316,1,"VEUREY PONT",45.271636,5.619118,,1,,Europe/Paris,,O38, +O38:SA:CTP535,1,"VILLAGE",44.845485,5.621449,,1,,Europe/Paris,,O38, +O38:SA:CTP5369,1,"LA MAIRIE",45.291303,5.859256,,1,,Europe/Paris,,O38, +O38:SA:CTP5373,1,"CROIX DES VARVOUX",45.266096,5.862013,,1,,Europe/Paris,,O38, +O38:SA:CTP538,1,"LES TRAVERSES",44.850823,5.621362,,1,,Europe/Paris,,O38, +O38:SA:CTP539,1,"LA BATIE D'AMBEL-RN75",44.867183,5.60488,,1,,Europe/Paris,,O38, +O38:SA:CTP5393,1,"LES VARVOUX",45.263787,5.858703,,1,,Europe/Paris,,O38, +O38:SA:CTP5405,1,"LES MARGAINS",45.301412,5.873766,,1,,Europe/Paris,,O38, +O38:SA:CTP543,1,"LES GRANGES",44.86034,5.602512,,1,,Europe/Paris,,O38, +O38:SA:CTP545,1,"LES ROUSSINS",44.859085,5.680433,,1,,Europe/Paris,,O38, +O38:SA:CTP5455,1,"COQUILLARD",45.272155,5.923155,,1,,Europe/Paris,,O38, +O38:SA:CTP5463,1,"PIED DE CROLLES",45.28883,5.888865,,1,,Europe/Paris,,O38, +O38:SA:CTP547,1,"CHATEAUBOIS",44.888577,5.699211,,1,,Europe/Paris,,O38, +O38:SA:CTP5471,1,"LA GARE",45.308493,5.914781,,1,,Europe/Paris,,O38, +O38:SA:CTP5475,1,"CARREFOUR Z.I.",45.304056,5.906943,,1,,Europe/Paris,,O38, +O38:SA:CTP5479,1,"LE BROCEY (STADE)",45.280603,5.877511,,1,,Europe/Paris,,O38, +O38:SA:CTP5487,1,"LE RAFOUR-MONNET",45.269935,5.89114,,1,,Europe/Paris,,O38, +O38:SA:CTP549,1,"SOUBEYRANNE",44.852959,5.671064,,1,,Europe/Paris,,O38, +O38:SA:CTP551,1,"VILLARD-JULIEN LAVOIR",44.849122,5.706899,,1,,Europe/Paris,,O38, +O38:SA:CTP5512,1,"LES POMPIERS",45.274964,5.880317,,1,,Europe/Paris,,O38, +O38:SA:CTP553,1,"CLEAU",44.881477,5.704484,,1,,Europe/Paris,,O38, +O38:SA:CTP557,1,"CARREF.SAVEL PLAGE",44.874497,5.710147,,1,,Europe/Paris,,O38, +O38:SA:CTP559,1,"LE VILLAGE",44.849337,5.672169,,1,,Europe/Paris,,O38, +O38:SA:CTP561,1,"MAISSENAS",44.87735,5.654116,,1,,Europe/Paris,,O38, +O38:SA:CTP563,1,"LE BUISSET",44.872656,5.65204,,1,,Europe/Paris,,O38, +O38:SA:CTP565,1,"MAYRES-SAVEL",44.874058,5.722519,,1,,Europe/Paris,,O38, +O38:SA:CTP567,1,"LA JARGNE",44.866688,5.776371,,1,,Europe/Paris,,O38, +O38:SA:CTP569,1,"LES RIVES",44.866858,5.76893,,1,,Europe/Paris,,O38, +O38:SA:CTP571,1,"CITE E.D.F.",44.871218,5.770591,,1,,Europe/Paris,,O38, +O38:SA:CTP573,1,"VILLAGE",44.881773,5.777824,,1,,Europe/Paris,,O38, +O38:SA:CTP575,1,"VILLARD TOUAGE",44.847024,5.734391,,1,,Europe/Paris,,O38, +O38:SA:CTP577,1,"TOUAGE-PONT.RD34B",44.852514,5.739708,,1,,Europe/Paris,,O38, +O38:SA:CTP5772,1,"ET.JEANNE D'ARC",45.368922,4.798316,,1,,Europe/Paris,,O38, +O38:SA:CTP5776,1,"PLACE REPUBLIQUE",45.362769,4.801582,,1,,Europe/Paris,,O38, +O38:SA:CTP5778,1,"LES CITES(RN7)",45.361004,4.800923,,1,,Europe/Paris,,O38, +O38:SA:CTP5779,1,"ROMAIN ROLLAND",45.378846,4.785943,,1,,Europe/Paris,,O38, +O38:SA:CTP5782,1,"GARE SNCF",45.372022,4.795461,,1,,Europe/Paris,,O38, +O38:SA:CTP5784,1,"FOYER LE GITE",45.372288,4.800923,,1,,Europe/Paris,,O38, +O38:SA:CTP5786,1,"PLACE DE LA HALLE",45.372668,4.798848,,1,,Europe/Paris,,O38, +O38:SA:CTP5788,1,"CLOS AVRIL",45.363137,4.807343,,1,,Europe/Paris,,O38, +O38:SA:CTP579,1,"PELLENFREY",44.878323,5.741707,,1,,Europe/Paris,,O38, +O38:SA:CTP5790,1,"CITE DE L'EDIT",45.367078,4.80163,,1,,Europe/Paris,,O38, +O38:SA:CTP5792,1,"SALLE DES FETES",45.369738,4.799269,,1,,Europe/Paris,,O38, +O38:SA:CTP5793,1,"GIVRAY",45.382168,4.788575,,1,,Europe/Paris,,O38, +O38:SA:CTP5795,1,"RHONE-POULENC",45.36051,4.794828,,1,,Europe/Paris,,O38, +O38:SA:CTP5796,1,"PTT-JEAN JAURES",45.366332,4.806256,,1,,Europe/Paris,,O38, +O38:SA:CTP5798,1,"LES CITES",45.359305,4.80496,,1,,Europe/Paris,,O38, +O38:SA:CTP5800,1,"LEP VERGUIN",45.362421,4.796102,,1,,Europe/Paris,,O38, +O38:SA:CTP5803,1,"CAVE COOPERATIVE",45.376181,4.790458,,1,,Europe/Paris,,O38, +O38:SA:CTP5805,1,"TRANSFORMATEUR",45.337048,4.839215,,1,,Europe/Paris,,O38, +O38:SA:CTP5807,1,"ROUTE DU STADE",45.343057,4.850745,,1,,Europe/Paris,,O38, +O38:SA:CTP5809,1,"TERRES ROUGES",45.381452,4.812345,,1,,Europe/Paris,,O38, +O38:SA:CTP581,1,"LE VILLAGE",44.85329,5.761596,,1,,Europe/Paris,,O38, +O38:SA:CTP5811,1,"CAR.D51-LA FORET",45.338869,4.850864,,1,,Europe/Paris,,O38, +O38:SA:CTP5813,1,"LA PLACE",45.339298,4.856719,,1,,Europe/Paris,,O38, +O38:SA:CTP5815,1,"LES VIALS",45.36678,4.808523,,1,,Europe/Paris,,O38, +O38:SA:CTP5817,1,"ETABLISSEMENT ARRUE",45.355535,4.809662,,1,,Europe/Paris,,O38, +O38:SA:CTP5819,1,"FAYOLLE",45.341082,4.816448,,1,,Europe/Paris,,O38, +O38:SA:CTP5822,1,"LES BERNARDS",45.337733,4.821995,,1,,Europe/Paris,,O38, +O38:SA:CTP5823,1,"MAUDINEE-TRANSFO",45.380443,4.825014,,1,,Europe/Paris,,O38, +O38:SA:CTP5825,1,"MAIRIE",45.373217,4.812196,,1,,Europe/Paris,,O38, +O38:SA:CTP5827,1,"CLINIQUE ST-CHARLES",45.371095,4.81349,,1,,Europe/Paris,,O38, +O38:SA:CTP5831,1,"CHEM.COMBE LOUVEY",45.376123,4.862247,,1,,Europe/Paris,,O38, +O38:SA:CTP5833,1,"ECOLES",45.363127,4.863021,,1,,Europe/Paris,,O38, +O38:SA:CTP5835,1,"LE PILON",45.361925,4.858221,,1,,Europe/Paris,,O38, +O38:SA:CTP5837,1,"LES PLAINES",45.37983,4.82006,,1,,Europe/Paris,,O38, +O38:SA:CTP5839,1,"CHEMIN DES SABLIERES",45.369518,4.859908,,1,,Europe/Paris,,O38, +O38:SA:CTP584,1,"RD 116",44.874332,5.734987,,1,,Europe/Paris,,O38, +O38:SA:CTP5841,1,"CARREFOUR PONCIN",45.382274,4.841395,,1,,Europe/Paris,,O38, +O38:SA:CTP5843,1,"CAR. LES CHALS",45.369541,4.812818,,1,,Europe/Paris,,O38, +O38:SA:CTP5844,1,"LE GUE D'AGNIN",45.358976,4.84233,,1,,Europe/Paris,,O38, +O38:SA:CTP5846,1,"RUE SAILLANT",45.350677,4.809691,,1,,Europe/Paris,,O38, +O38:SA:CTP5848,1,"LES CHALS",45.365531,4.822464,,1,,Europe/Paris,,O38, +O38:SA:CTP5849,1,"CARREFOUR REYNAUD",45.360334,4.831374,,1,,Europe/Paris,,O38, +O38:SA:CTP585,1,"ECOLE PRIMAIRE",44.853133,5.762834,,1,,Europe/Paris,,O38, +O38:SA:CTP5851,1,"DDE-CROIX FINAND",45.377686,4.810693,,1,,Europe/Paris,,O38, +O38:SA:CTP5853,1,"MAIRIE",45.343912,4.817403,,1,,Europe/Paris,,O38, +O38:SA:CTP5855,1,"LA DAVIERE",45.364764,4.847927,,1,,Europe/Paris,,O38, +O38:SA:CTP5857,1,"CIMETIERE",45.372753,4.850796,,1,,Europe/Paris,,O38, +O38:SA:CTP5859,1,"LOTISSEMENT",45.346609,4.851953,,1,,Europe/Paris,,O38, +O38:SA:CTP5861,1,"COLLEGE",45.338137,4.81765,,1,,Europe/Paris,,O38, +O38:SA:CTP5863,1,"PONT DES RAGES",45.381697,4.86648,,1,,Europe/Paris,,O38, +O38:SA:CTP5865,1,"PIMPIED",45.382098,4.821725,,1,,Europe/Paris,,O38, +O38:SA:CTP5867,1,"LES OCHES",45.341691,4.877568,,1,,Europe/Paris,,O38, +O38:SA:CTP5869,1,"BEL AIR",45.338431,4.911355,,1,,Europe/Paris,,O38, +O38:SA:CTP587,1,"LA BAUME",44.870388,5.747647,,1,,Europe/Paris,,O38, +O38:SA:CTP5871,1,"LA PLACE",45.346402,4.882433,,1,,Europe/Paris,,O38, +O38:SA:CTP5873,1,"LES EYNAUDS",45.379235,4.879611,,1,,Europe/Paris,,O38, +O38:SA:CTP5875,1,"PONT DE BEREY",45.357347,4.913421,,1,,Europe/Paris,,O38, +O38:SA:CTP5877,1,"LA PLACE",45.354726,4.905967,,1,,Europe/Paris,,O38, +O38:SA:CTP5879,1,"ST SULPICE",45.344795,4.938327,,1,,Europe/Paris,,O38, +O38:SA:CTP5881,1,"ROUTE DES SABLES",45.356039,4.921816,,1,,Europe/Paris,,O38, +O38:SA:CTP5883,1,"LOT.LES RANCINES",45.334947,4.954518,,1,,Europe/Paris,,O38, +O38:SA:CTP5885,1,"LES MARANDES",45.334972,4.954863,,1,,Europe/Paris,,O38, +O38:SA:CTP5887,1,"FEYTAZ-LES PIERRES",45.379328,4.947095,,1,,Europe/Paris,,O38, +O38:SA:CTP5889,1,"POUSSIEU-ANCIEN TRANSFORMATEUR",45.375193,4.95143,,1,,Europe/Paris,,O38, +O38:SA:CTP589,1,"CHARDEAU",44.873402,5.717046,,1,,Europe/Paris,,O38, +O38:SA:CTP5890,1,"LES GIRO",45.375503,4.945128,,1,,Europe/Paris,,O38, +O38:SA:CTP5892,1,"FELISON-D 46",45.364687,4.953526,,1,,Europe/Paris,,O38, +O38:SA:CTP5894,1,"BELLEGARDE-D134",45.37995,4.960615,,1,,Europe/Paris,,O38, +O38:SA:CTP5896,1,"LE GANAVAT",45.376569,4.946259,,1,,Europe/Paris,,O38, +O38:SA:CTP5898,1,"LA GARENNE",45.378678,4.977035,,1,,Europe/Paris,,O38, +O38:SA:CTP5900,1,"POUSSIEU LE HAUT",45.377009,4.948055,,1,,Europe/Paris,,O38, +O38:SA:CTP5901,1,"LE MOURELET",45.376668,4.968028,,1,,Europe/Paris,,O38, +O38:SA:CTP5903,1,"LES GROLIERES",45.37027,4.942628,,1,,Europe/Paris,,O38, +O38:SA:CTP5905,1,"LES BARDELIERES",45.37578,4.963682,,1,,Europe/Paris,,O38, +O38:SA:CTP5909,1,"BELLEGARDE VILLAGE",45.38076,4.961832,,1,,Europe/Paris,,O38, +O38:SA:CTP5911,1,"POUSSIEU EGLISE",45.375093,4.946633,,1,,Europe/Paris,,O38, +O38:SA:CTP5913,1,"HAUT POUSSIEU D46",45.378186,4.94972,,1,,Europe/Paris,,O38, +O38:SA:CTP5918,1,"LE SILO-LE GUY",45.36886,4.989603,,1,,Europe/Paris,,O38, +O38:SA:CTP5920,1,"LES ALBERGERIES",45.378763,4.995727,,1,,Europe/Paris,,O38, +O38:SA:CTP5922,1,"LES PICHONNIERES",45.371386,4.953026,,1,,Europe/Paris,,O38, +O38:SA:CTP5923,1,"LES TREMBLES",45.372156,4.992428,,1,,Europe/Paris,,O38, +O38:SA:CTP5925,1,"LA RANCHE",45.373597,4.957152,,1,,Europe/Paris,,O38, +O38:SA:CTP5927,1,"POUSSIEU PLACE",45.373422,4.950467,,1,,Europe/Paris,,O38, +O38:SA:CTP5929,1,"LA PLAINE",45.374884,4.994379,,1,,Europe/Paris,,O38, +O38:SA:CTP593,1,"PELLENFREY RD 116",44.874042,5.746704,,1,,Europe/Paris,,O38, +O38:SA:CTP5931,1,"CAR.BATAILLOUSE",45.356278,4.953519,,1,,Europe/Paris,,O38, +O38:SA:CTP5933,1,"LA PLACE",45.352777,4.989856,,1,,Europe/Paris,,O38, +O38:SA:CTP5935,1,"ROUTE DE TOURDAN",45.352906,4.994917,,1,,Europe/Paris,,O38, +O38:SA:CTP5936,1,"LE JANIN",45.357576,4.983982,,1,,Europe/Paris,,O38, +O38:SA:CTP5938,1,"LE FER",45.353856,4.985709,,1,,Europe/Paris,,O38, +O38:SA:CTP5940,1,"LE POULET-RD538",45.350707,5.037572,,1,,Europe/Paris,,O38, +O38:SA:CTP5942,1,"S.I.C.A",45.337984,5.044935,,1,,Europe/Paris,,O38, +O38:SA:CTP5944,1,"LA VACHERE",45.354571,5.033332,,1,,Europe/Paris,,O38, +O38:SA:CTP5946,1,"ROUTE DU POULET",45.346777,5.041553,,1,,Europe/Paris,,O38, +O38:SA:CTP5948,1,"COLLEGE JACQUES BREL",45.338156,5.063726,,1,,Europe/Paris,,O38, +O38:SA:CTP595,1,"LES EGATS",44.876111,5.835162,,1,,Europe/Paris,,O38, +O38:SA:CTP5950,1,"ET.L.DUFEILLANT",45.338738,5.057032,,1,,Europe/Paris,,O38, +O38:SA:CTP5952,1,"CAR.BOIS-VIEUX",45.344702,5.021527,,1,,Europe/Paris,,O38, +O38:SA:CTP5954,1,"GARE ROUTIERE",45.336193,5.055843,,1,,Europe/Paris,,O38, +O38:SA:CTP5956,1,"LE GRAND CHEMIN",45.341157,5.047958,,1,,Europe/Paris,,O38, +O38:SA:CTP5958,1,"MAISON PACALET",45.377499,5.051069,,1,,Europe/Paris,,O38, +O38:SA:CTP5960,1,"TOURDAN",45.371659,5.032658,,1,,Europe/Paris,,O38, +O38:SA:CTP5962,1,"CHARPENAY-GAMBALOUD",45.378035,5.058312,,1,,Europe/Paris,,O38, +O38:SA:CTP5964,1,"ROUCLAVARD",45.360999,5.056315,,1,,Europe/Paris,,O38, +O38:SA:CTP5966,1,"AUBERGE DUPINET(RD 538)",45.369234,5.027643,,1,,Europe/Paris,,O38, +O38:SA:CTP5968,1,"MAISON ROUSSET",45.36686,5.061291,,1,,Europe/Paris,,O38, +O38:SA:CTP597,1,"LE CHARDENOT",44.884522,5.829431,,1,,Europe/Paris,,O38, +O38:SA:CTP5970,1,"GRANGE ROBERT",45.332708,5.034777,,1,,Europe/Paris,,O38, +O38:SA:CTP5972,1,"LE TRUCHAUD",45.3627,5.134443,,1,,Europe/Paris,,O38, +O38:SA:CTP5974,1,"LES GRANGES",45.364769,5.133995,,1,,Europe/Paris,,O38, +O38:SA:CTP5978,1,"LA BEAUME",45.334477,5.115017,,1,,Europe/Paris,,O38, +O38:SA:CTP5981,1,"LE CONTENT",45.337628,5.128825,,1,,Europe/Paris,,O38, +O38:SA:CTP5984,1,"LES BRUYERES",45.34485,5.139537,,1,,Europe/Paris,,O38, +O38:SA:CTP5986,1,"ECOLE",45.36434,5.137559,,1,,Europe/Paris,,O38, +O38:SA:CTP5988,1,"LE VILLAGE",45.346383,5.080659,,1,,Europe/Paris,,O38, +O38:SA:CTP599,1,"SERRE-BERTON",44.855948,5.789768,,1,,Europe/Paris,,O38, +O38:SA:CTP5990,1,"LE PONT ROUGE",45.347858,5.095615,,1,,Europe/Paris,,O38, +O38:SA:CTP5992,1,"LES ROCHES DE PAJAY",45.34765,5.101497,,1,,Europe/Paris,,O38, +O38:SA:CTP5994,1,"LOTISSEMENT DES ROCHES",45.351918,5.102084,,1,,Europe/Paris,,O38, +O38:SA:CTP5995,1,"LA GUSTINIERE",45.35001,5.112783,,1,,Europe/Paris,,O38, +O38:SA:CTP5996,1,"LE BOIS",45.366652,5.137881,,1,,Europe/Paris,,O38, +O38:SA:CTP5998,1,"LES GENETS",45.359782,5.134523,,1,,Europe/Paris,,O38, +O38:SA:CTP5999,1,"LA MANGE",45.342886,5.182241,,1,,Europe/Paris,,O38, +O38:SA:CTP600,1,"CHAMPLONG-CAMPING",44.856536,5.843609,,1,,Europe/Paris,,O38, +O38:SA:CTP6001,1,"LA GUILLOTIERE",45.339503,5.17367,,1,,Europe/Paris,,O38, +O38:SA:CTP6003,1,"STADE",45.366482,5.14717,,1,,Europe/Paris,,O38, +O38:SA:CTP6005,1,"EGLISE",45.339765,5.182941,,1,,Europe/Paris,,O38, +O38:SA:CTP6007,1,"LES FEUGES",45.36248,5.15342,,1,,Europe/Paris,,O38, +O38:SA:CTP6009,1,"AVENUE DE LA GARE",45.340709,5.185298,,1,,Europe/Paris,,O38, +O38:SA:CTP6011,1,"LES POIPES",45.339696,5.163169,,1,,Europe/Paris,,O38, +O38:SA:CTP6014,1,"LE COLLET",45.344964,5.17443,,1,,Europe/Paris,,O38, +O38:SA:CTP6015,1,"MALATRAT",45.332081,5.164707,,1,,Europe/Paris,,O38, +O38:SA:CTP6017,1,"LE VILLAGE",45.364307,5.142749,,1,,Europe/Paris,,O38, +O38:SA:CTP6019,1,"LA CHATAIGNERAIE",45.368401,5.206886,,1,,Europe/Paris,,O38, +O38:SA:CTP602,1,"LES 4 CHEMINS",44.844687,5.811813,,1,,Europe/Paris,,O38, +O38:SA:CTP6021,1,"LES BLACHES",45.347524,5.184753,,1,,Europe/Paris,,O38, +O38:SA:CTP6023,1,"QUAI SUD",45.34082,5.19413,,1,,Europe/Paris,,O38, +O38:SA:CTP6025,1,"LE RIVAL",45.352111,5.264946,,1,,Europe/Paris,,O38, +O38:SA:CTP6027,1,"COLLEGE M.MARIOTTE",45.329016,5.267934,,1,,Europe/Paris,,O38, +O38:SA:CTP6029,1,"GARAGE CHAPPUIS",45.338259,5.266271,,1,,Europe/Paris,,O38, +O38:SA:CTP603,1,"COL-ST-SEBASTIEN",44.841581,5.78689,,1,,Europe/Paris,,O38, +O38:SA:CTP6031,1,"MI PLAINE",45.363904,5.264109,,1,,Europe/Paris,,O38, +O38:SA:CTP6033,1,"LES 4 CHEMINS",45.329425,5.266517,,1,,Europe/Paris,,O38, +O38:SA:CTP6035,1,"LES HALLES",45.328598,5.262602,,1,,Europe/Paris,,O38, +O38:SA:CTP6037,1,"LES ESSARTS",45.347377,5.255952,,1,,Europe/Paris,,O38, +O38:SA:CTP6039,1,"LA RIVOIRE",45.371133,5.217529,,1,,Europe/Paris,,O38, +O38:SA:CTP6041,1,"EGLISE",45.368954,5.212511,,1,,Europe/Paris,,O38, +O38:SA:CTP6043,1,"POIPONNIER",45.364012,5.215108,,1,,Europe/Paris,,O38, +O38:SA:CTP6047,1,"LE GRAND CHAMP",45.341366,5.254001,,1,,Europe/Paris,,O38, +O38:SA:CTP605,1,"ST SEBASTIEN VILLAGE",44.848016,5.79852,,1,,Europe/Paris,,O38, +O38:SA:CTP6050,1,"LYCEE SAINT EXUPERY",45.330127,5.260611,,1,,Europe/Paris,,O38, +O38:SA:CTP6052,1,"EGLISE",45.328754,5.258334,,1,,Europe/Paris,,O38, +O38:SA:CTP6053,1,"LE MARTINET D130",45.336758,5.314467,,1,,Europe/Paris,,O38, +O38:SA:CTP6055,1,"LE BESSEY D130",45.336711,5.306423,,1,,Europe/Paris,,O38, +O38:SA:CTP6057,1,"EGLISE",45.346004,5.309064,,1,,Europe/Paris,,O38, +O38:SA:CTP6059,1,"MAIRIE",45.348997,5.307056,,1,,Europe/Paris,,O38, +O38:SA:CTP6061,1,"LE BESSEY",45.34057,5.306507,,1,,Europe/Paris,,O38, +O38:SA:CTP6063,1,"HAMEAU LE TEMPLE",45.337643,5.279587,,1,,Europe/Paris,,O38, +O38:SA:CTP6069,1,"LE VERDIN-ABRI",45.330893,5.288525,,1,,Europe/Paris,,O38, +O38:SA:CTP607,1,"MASSERANGE",44.860053,5.787955,,1,,Europe/Paris,,O38, +O38:SA:CTP6079,1,"LE PAILLER",45.346774,5.354447,,1,,Europe/Paris,,O38, +O38:SA:CTP6083,1,"LA POSTE",45.342211,5.392372,,1,,Europe/Paris,,O38, +O38:SA:CTP6085,1,"BASCULE",45.342789,5.385609,,1,,Europe/Paris,,O38, +O38:SA:CTP6087,1,"ETS RICCARDI",45.34179,5.395406,,1,,Europe/Paris,,O38, +O38:SA:CTP6089,1,"LES BLACHES",45.344073,5.378576,,1,,Europe/Paris,,O38, +O38:SA:CTP6091,1,"REPUBLIQUE",45.335054,5.4241,,1,,Europe/Paris,,O38, +O38:SA:CTP6093,1,"LE SILO ABRI",45.341947,5.433273,,1,,Europe/Paris,,O38, +O38:SA:CTP6095,1,"CHAMP DE FOIRE",45.343426,5.475731,,1,,Europe/Paris,,O38, +O38:SA:CTP6097,1,"GARAGE REGUILLON",45.341466,5.423218,,1,,Europe/Paris,,O38, +O38:SA:CTP6099,1,"LA CHATAIGNERAIE",45.32894,5.432968,,1,,Europe/Paris,,O38, +O38:SA:CTP6101,1,"MAIRIE",45.341463,5.471646,,1,,Europe/Paris,,O38, +O38:SA:CTP6103,1,"CROIX ST GEORGES",45.343123,5.466961,,1,,Europe/Paris,,O38, +O38:SA:CTP6105,1,"PHARMACIE",45.333873,5.426607,,1,,Europe/Paris,,O38, +O38:SA:CTP6107,1,"LE CHAMBARD",45.325121,5.432499,,1,,Europe/Paris,,O38, +O38:SA:CTP611,1,"ST PIERRE DE MEAROTZ",44.87484,5.823643,,1,,Europe/Paris,,O38, +O38:SA:CTP6114,1,"ZONE ARTISANALE",45.339841,5.492263,,1,,Europe/Paris,,O38, +O38:SA:CTP6117,1,"CRIEL DE RENAGE",45.332812,5.499961,,1,,Europe/Paris,,O38, +O38:SA:CTP613,1,"LES MEYERS",44.877526,5.84445,,1,,Europe/Paris,,O38, +O38:SA:CTP6141,1,"MALADIERE",45.352756,5.491424,,1,,Europe/Paris,,O38, +O38:SA:CTP6145,1,"MOLLARD ROND",45.339956,5.505881,,1,,Europe/Paris,,O38, +O38:SA:CTP615,1,"LOT.LES FRAISSES",44.876873,5.817636,,1,,Europe/Paris,,O38, +O38:SA:CTP6152,1,"LE PLAN",45.345866,5.497697,,1,,Europe/Paris,,O38, +O38:SA:CTP6163,1,"MATERNELLE RENAGE",45.336337,5.487091,,1,,Europe/Paris,,O38, +O38:SA:CTP6165,1,"BOIS VERT CARREFOUR",45.338492,5.522623,,1,,Europe/Paris,,O38, +O38:SA:CTP617,1,"LES SERRUES",44.854181,5.845081,,1,,Europe/Paris,,O38, +O38:SA:CTP6178,1,"LES QUATRE CHEMINS",45.336004,5.508448,,1,,Europe/Paris,,O38, +O38:SA:CTP618,1,"HAUT QUET-RN85",44.840618,5.875639,,1,,Europe/Paris,,O38, +O38:SA:CTP6195,1,"ECOLE A. BROCHIER",45.334891,5.484074,,1,,Europe/Paris,,O38, +O38:SA:CTP6196,1,"CROISEMENT MOLLARD ROND",45.335805,5.501712,,1,,Europe/Paris,,O38, +O38:SA:CTP620,1,"LES MARCOUX",44.853914,5.85855,,1,,Europe/Paris,,O38, +O38:SA:CTP6219,1,"PLACE DU 8 MAI 1945",45.326844,5.564463,,1,,Europe/Paris,,O38, +O38:SA:CTP622,1,"LA SALLE ECOLES",44.863687,5.856392,,1,,Europe/Paris,,O38, +O38:SA:CTP6224,1,"LYCEE PIERRE BEGHIN",45.320606,5.589547,,1,,Europe/Paris,,O38, +O38:SA:CTP6233,1,"MAISONNEUVE",45.326736,5.576565,,1,,Europe/Paris,,O38, +O38:SA:CTP624,1,"EGLISE",44.863002,5.864137,,1,,Europe/Paris,,O38, +O38:SA:CTP626,1,"LES SOUCHONS",44.867008,5.847763,,1,,Europe/Paris,,O38, +O38:SA:CTP6262,1,"LYCEE FERDINAND BUISSON",45.361739,5.59871,,1,,Europe/Paris,,O38, +O38:SA:CTP6278,1,"LE MARTINET",45.339289,5.662596,,1,,Europe/Paris,,O38, +O38:SA:CTP628,1,"LA MARECHE",44.863945,5.860415,,1,,Europe/Paris,,O38, +O38:SA:CTP6289,1,"LES GROLLETS",45.355402,5.673198,,1,,Europe/Paris,,O38, +O38:SA:CTP630,1,"ST LAURENT-EN-BEAUMONT",44.879321,5.850552,,1,,Europe/Paris,,O38, +O38:SA:CTP6307,1,"LE JALAS",45.351425,5.671249,,1,,Europe/Paris,,O38, +O38:SA:CTP6315,1,"LA DIAT",45.339677,5.806619,,1,,Europe/Paris,,O38, +O38:SA:CTP6317,1,"LES REVOLS",45.319747,5.782118,,1,,Europe/Paris,,O38, +O38:SA:CTP632,1,"ST MICHEL-EN-BEAUMONT",44.868212,5.8997,,1,,Europe/Paris,,O38, +O38:SA:CTP6320,1,"LES GUILLETS",45.317541,5.785926,,1,,Europe/Paris,,O38, +O38:SA:CTP6321,1,"CHERLIEU",45.31501,5.791026,,1,,Europe/Paris,,O38, +O38:SA:CTP6323,1,"LES EGAUX",45.316758,5.798775,,1,,Europe/Paris,,O38, +O38:SA:CTP6325,1,"GERENTIERE",45.319673,5.809078,,1,,Europe/Paris,,O38, +O38:SA:CTP6327,1,"LES COTTAVES",45.313919,5.775965,,1,,Europe/Paris,,O38, +O38:SA:CTP6329,1,"ST HUGUES",45.323735,5.806408,,1,,Europe/Paris,,O38, +O38:SA:CTP6331,1,"LES COTES DU MOULIN",45.348496,5.784463,,1,,Europe/Paris,,O38, +O38:SA:CTP6333,1,"ECOLE DE ST HUGUES",45.323044,5.806398,,1,,Europe/Paris,,O38, +O38:SA:CTP6335,1,"LA CORRERIE",45.346633,5.793759,,1,,Europe/Paris,,O38, +O38:SA:CTP6338,1,"LES COMBES",45.316303,5.784755,,1,,Europe/Paris,,O38, +O38:SA:CTP6339,1,"PONT DES BARGETTES",45.332769,5.806344,,1,,Europe/Paris,,O38, +O38:SA:CTP634,1,"STE LUCE",44.849861,5.911367,,1,,Europe/Paris,,O38, +O38:SA:CTP6341,1,"CAMPING MARTINIERE",45.326537,5.797635,,1,,Europe/Paris,,O38, +O38:SA:CTP6343,1,"GONTIERE",45.333581,5.811748,,1,,Europe/Paris,,O38, +O38:SA:CTP6345,1,"LA PATASSIERE",45.346841,5.816917,,1,,Europe/Paris,,O38, +O38:SA:CTP6347,1,"MOLLARD-BELLET",45.335865,5.81369,,1,,Europe/Paris,,O38, +O38:SA:CTP6349,1,"ROUTE PERQUELIN",45.341032,5.818194,,1,,Europe/Paris,,O38, +O38:SA:CTP6352,1,"LA PAJONNIERE",45.354516,5.823866,,1,,Europe/Paris,,O38, +O38:SA:CTP6353,1,"CABINET MEDICAL",45.339933,5.810416,,1,,Europe/Paris,,O38, +O38:SA:CTP6358,1,"PLAN DE VILLE",45.342472,5.813841,,1,,Europe/Paris,,O38, +O38:SA:CTP6359,1,"LA COCHE",45.350767,5.819456,,1,,Europe/Paris,,O38, +O38:SA:CTP6361,1,"LA MOLLARIERE",45.328257,5.810281,,1,,Europe/Paris,,O38, +O38:SA:CTP6379,1,"INSTITUT",45.327159,5.93472,,1,,Europe/Paris,,O38, +O38:SA:CTP638,1,"LE VILLARD",44.840421,5.923821,,1,,Europe/Paris,,O38, +O38:SA:CTP6399,1,"LE TERRAIL",45.342287,5.905248,,1,,Europe/Paris,,O38, +O38:SA:CTP6403,1,"LE COMBET",45.346854,5.908719,,1,,Europe/Paris,,O38, +O38:SA:CTP6417,1,"LES CHATAINS",45.319057,5.889874,,1,,Europe/Paris,,O38, +O38:SA:CTP6425,1,"LA MURE",45.318617,5.926137,,1,,Europe/Paris,,O38, +O38:SA:CTP6440,1,"ECOLE LES GANDINS",45.308619,5.884586,,1,,Europe/Paris,,O38, +O38:SA:CTP6448,1,"LES GUILLOTS",45.338657,5.903027,,1,,Europe/Paris,,O38, +O38:SA:CTP6452,1,"ECOLE DES GAUDES",45.309051,5.885638,,1,,Europe/Paris,,O38, +O38:SA:CTP6456,1,"LES MASSARDS",45.316973,5.888227,,1,,Europe/Paris,,O38, +O38:SA:CTP648,1,"SANCTUAIRE",44.858849,5.976992,,1,,Europe/Paris,,O38, +O38:SA:CTP6484,1,"LA GARE",45.342113,5.974355,,1,,Europe/Paris,,O38, +O38:SA:CTP6493,1,"LA CONCHE",45.351816,5.947203,,1,,Europe/Paris,,O38, +O38:SA:CTP650,1,"EGLISE",44.841703,5.974934,,1,,Europe/Paris,,O38, +O38:SA:CTP6501,1,"LE COTTEN",45.31112,5.960571,,1,,Europe/Paris,,O38, +O38:SA:CTP652,1,"LE VILLAGE",44.902254,5.567514,,1,,Europe/Paris,,O38, +O38:SA:CTP6521,1,"LE CLOS DU CEDRE",45.312304,5.961687,,1,,Europe/Paris,,O38, +O38:SA:CTP654,1,"ABRIBUS",44.89775,5.554428,,1,,Europe/Paris,,O38, +O38:SA:CTP656,1,"COLLEGE-ECOLES",44.915646,5.630567,,1,,Europe/Paris,,O38, +O38:SA:CTP6578,1,"LES GRENOUILLERES",45.427788,4.808487,,1,,Europe/Paris,,O38, +O38:SA:CTP658,1,"MAISON MEDICALE MONESTIER",44.92072,5.636365,,1,,Europe/Paris,,O38, +O38:SA:CTP6580,1,"MAIRIE",45.41435,4.790806,,1,,Europe/Paris,,O38, +O38:SA:CTP6582,1,"CHUZY",45.415976,4.777728,,1,,Europe/Paris,,O38, +O38:SA:CTP6584,1,"VAUVILLON",45.4187,4.793641,,1,,Europe/Paris,,O38, +O38:SA:CTP6586,1,"GRANGE BASSE",45.413451,4.787413,,1,,Europe/Paris,,O38, +O38:SA:CTP6588,1,"LES LITTES",45.425141,4.771723,,1,,Europe/Paris,,O38, +O38:SA:CTP6590,1,"VARAMBON",45.428506,4.771277,,1,,Europe/Paris,,O38, +O38:SA:CTP6592,1,"LE COLOMBIER",45.39652,4.786223,,1,,Europe/Paris,,O38, +O38:SA:CTP6596,1,"PTT",45.397562,4.774291,,1,,Europe/Paris,,O38, +O38:SA:CTP6598,1,"ETS REGUILLON",45.40486,4.771468,,1,,Europe/Paris,,O38, +O38:SA:CTP660,1,"LE FAU",44.894713,5.616897,,1,,Europe/Paris,,O38, +O38:SA:CTP6600,1,"LE MARECHAL",45.395674,4.790071,,1,,Europe/Paris,,O38, +O38:SA:CTP6602,1,"SERPAILLE",45.39383,4.800905,,1,,Europe/Paris,,O38, +O38:SA:CTP6604,1,"LES PRAILLES",45.421937,4.7669,,1,,Europe/Paris,,O38, +O38:SA:CTP6606,1,"LA RAINY",45.413372,4.796618,,1,,Europe/Paris,,O38, +O38:SA:CTP6609,1,"ETS PARET",45.398869,4.808797,,1,,Europe/Paris,,O38, +O38:SA:CTP6611,1,"REVOLETS-ECOLES",45.422102,4.75837,,1,,Europe/Paris,,O38, +O38:SA:CTP6616,1,"COLLEGE FREDERIC MISTRAL",45.39716,4.77986,,1,,Europe/Paris,,O38, +O38:SA:CTP6618,1,"PLATEAU DE LOUZE",45.397908,4.807854,,1,,Europe/Paris,,O38, +O38:SA:CTP662,1,"VILLAGE",44.929568,5.627999,,1,,Europe/Paris,,O38, +O38:SA:CTP6620,1,"LES PYRAMIDES",45.390504,4.776502,,1,,Europe/Paris,,O38, +O38:SA:CTP6622,1,"CAFE MARIE-FRANCE",45.401602,4.772693,,1,,Europe/Paris,,O38, +O38:SA:CTP6624,1,"ECOLES PORT VIEUX",45.38537,4.778468,,1,,Europe/Paris,,O38, +O38:SA:CTP6626,1,"MONTEE DE LOUZE",45.385361,4.801314,,1,,Europe/Paris,,O38, +O38:SA:CTP6628,1,"SURVIFRAIS-RENAULT",45.392706,4.781353,,1,,Europe/Paris,,O38, +O38:SA:CTP6630,1,"COLOMBIER ABRI D4",45.396906,4.780581,,1,,Europe/Paris,,O38, +O38:SA:CTP6632,1,"LOT.LES OLIVIERS",45.417062,4.76266,,1,,Europe/Paris,,O38, +O38:SA:CTP6634,1,"PONT DE LA VAREZE",45.424499,4.759343,,1,,Europe/Paris,,O38, +O38:SA:CTP6636,1,"RANCH DU MARAIS",45.4144,4.765243,,1,,Europe/Paris,,O38, +O38:SA:CTP6638,1,"LES CRAIES",45.407292,4.769913,,1,,Europe/Paris,,O38, +O38:SA:CTP664,1,"GRISAIL",44.93831,5.609308,,1,,Europe/Paris,,O38, +O38:SA:CTP6640,1,"GLAY",45.430502,4.78657,,1,,Europe/Paris,,O38, +O38:SA:CTP6642,1,"PARC DE VARAMBON",45.429685,4.776236,,1,,Europe/Paris,,O38, +O38:SA:CTP6647,1,"ECOLE D'ASSIEU",45.406789,4.867318,,1,,Europe/Paris,,O38, +O38:SA:CTP6658,1,"TROQUINO",45.417624,4.815788,,1,,Europe/Paris,,O38, +O38:SA:CTP666,1,"LE FRUT",44.931105,5.623547,,1,,Europe/Paris,,O38, +O38:SA:CTP6660,1,"CABINE",45.429451,4.836757,,1,,Europe/Paris,,O38, +O38:SA:CTP6662,1,"GARAGE RENAULT",45.420471,4.816998,,1,,Europe/Paris,,O38, +O38:SA:CTP6664,1,"LE CLOS(RTE CHEYSSIEU)",45.431151,4.819823,,1,,Europe/Paris,,O38, +O38:SA:CTP6670,1,"BESON",45.41673,4.836374,,1,,Europe/Paris,,O38, +O38:SA:CTP6671,1,"LE CUILLERY",45.419218,4.842347,,1,,Europe/Paris,,O38, +O38:SA:CTP6675,1,"HOTEL DES NATIONS",45.412807,4.813723,,1,,Europe/Paris,,O38, +O38:SA:CTP6678,1,"LES MEUILLES",45.412984,4.841167,,1,,Europe/Paris,,O38, +O38:SA:CTP668,1,"GARAGE DES ALPES",44.926162,5.63854,,1,,Europe/Paris,,O38, +O38:SA:CTP6681,1,"ROUTE DE VIENNE(RD 131C)",45.394125,4.809095,,1,,Europe/Paris,,O38, +O38:SA:CTP6683,1,"CHAMP GIRAUD",45.393083,4.862371,,1,,Europe/Paris,,O38, +O38:SA:CTP6685,1,"LE SILO",45.387886,4.86546,,1,,Europe/Paris,,O38, +O38:SA:CTP6687,1,"CHEMIN DES CROZES",45.389509,4.809569,,1,,Europe/Paris,,O38, +O38:SA:CTP6688,1,"ROCHE PINGOLET",45.38522,4.868339,,1,,Europe/Paris,,O38, +O38:SA:CTP6690,1,"LE RESERVOIR",45.386595,4.824058,,1,,Europe/Paris,,O38, +O38:SA:CTP6692,1,"LA CROIX",45.427895,4.878042,,1,,Europe/Paris,,O38, +O38:SA:CTP6694,1,"LE LAC",45.389,4.850342,,1,,Europe/Paris,,O38, +O38:SA:CTP6696,1,"GRANGE NEUVE",45.396787,4.861464,,1,,Europe/Paris,,O38, +O38:SA:CTP670,1,"LA POSTE",44.915567,5.633944,,1,,Europe/Paris,,O38, +O38:SA:CTP6700,1,"LES MURIERES",45.395017,4.861626,,1,,Europe/Paris,,O38, +O38:SA:CTP6704,1,"AU GOURAY",45.398007,4.920968,,1,,Europe/Paris,,O38, +O38:SA:CTP6706,1,"MAIRIE",45.39092,4.908937,,1,,Europe/Paris,,O38, +O38:SA:CTP6708,1,"ECOLE DU HAUT",45.395141,4.906843,,1,,Europe/Paris,,O38, +O38:SA:CTP6711,1,"LE PRE COCARD",45.405365,4.941698,,1,,Europe/Paris,,O38, +O38:SA:CTP6712,1,"RTE.COMBONNIERES",45.389368,4.902963,,1,,Europe/Paris,,O38, +O38:SA:CTP672,1,"ROUAC",44.920728,5.689548,,1,,Europe/Paris,,O38, +O38:SA:CTP6726,1,"LE COUCHOUD",45.393523,4.912232,,1,,Europe/Paris,,O38, +O38:SA:CTP6729,1,"GERBEY",45.399303,4.923416,,1,,Europe/Paris,,O38, +O38:SA:CTP6730,1,"LA COMBE DELAY",45.424069,4.885572,,1,,Europe/Paris,,O38, +O38:SA:CTP6732,1,"GARAGE MARY",45.428325,4.92828,,1,,Europe/Paris,,O38, +O38:SA:CTP6734,1,"LE DORIER D134",45.387396,4.889807,,1,,Europe/Paris,,O38, +O38:SA:CTP6737,1,"ECOLE MATERNELLE",45.386179,4.884025,,1,,Europe/Paris,,O38, +O38:SA:CTP6738,1,"MAIRIE",45.386273,4.880427,,1,,Europe/Paris,,O38, +O38:SA:CTP6740,1,"MAISON MABILON",45.386944,4.893965,,1,,Europe/Paris,,O38, +O38:SA:CTP6742,1,"BIBLIOTHEQUE",45.426863,4.880247,,1,,Europe/Paris,,O38, +O38:SA:CTP6744,1,"ST ALBAN-PLACE",45.420647,4.901332,,1,,Europe/Paris,,O38, +O38:SA:CTP6746,1,"CHEMIN CHAMBERON",45.422392,4.908655,,1,,Europe/Paris,,O38, +O38:SA:CTP675,1,"LE TRACOL",44.920384,5.656216,,1,,Europe/Paris,,O38, +O38:SA:CTP6750,1,"ROUTE CHALENCEY",45.425453,4.921626,,1,,Europe/Paris,,O38, +O38:SA:CTP6752,1,"CHEMIN DE LA MAYENCONNE",45.426831,4.924871,,1,,Europe/Paris,,O38, +O38:SA:CTP6754,1,"MAIRIE",45.421871,4.906372,,1,,Europe/Paris,,O38, +O38:SA:CTP6756,1,"LES CHARMILLES",45.420962,4.897062,,1,,Europe/Paris,,O38, +O38:SA:CTP6758,1,"LES GAUTHIERS",45.381355,4.970821,,1,,Europe/Paris,,O38, +O38:SA:CTP676,1,"MARCIEU",44.914151,5.68897,,1,,Europe/Paris,,O38, +O38:SA:CTP6760,1,"CHEZ MILLAT",45.382718,4.977109,,1,,Europe/Paris,,O38, +O38:SA:CTP6762,1,"LE BAS",45.383945,4.992532,,1,,Europe/Paris,,O38, +O38:SA:CTP6764,1,"MIANCON",45.386704,4.944868,,1,,Europe/Paris,,O38, +O38:SA:CTP6766,1,"MIANCON LE BAS",45.38254,4.944631,,1,,Europe/Paris,,O38, +O38:SA:CTP6768,1,"CARREF.D134A",45.38264,4.948803,,1,,Europe/Paris,,O38, +O38:SA:CTP6770,1,"CHAMPON",45.380993,4.954552,,1,,Europe/Paris,,O38, +O38:SA:CTP6771,1,"ST SULPICE-ABRI",45.419255,4.957145,,1,,Europe/Paris,,O38, +O38:SA:CTP6773,1,"CHEZ THAIZE",45.383325,4.981748,,1,,Europe/Paris,,O38, +O38:SA:CTP6775,1,"CARREF.BRUYERES",45.389004,4.955253,,1,,Europe/Paris,,O38, +O38:SA:CTP6777,1,"CHEZ MARTIN",45.38586,4.988748,,1,,Europe/Paris,,O38, +O38:SA:CTP6779,1,"MAISON CELARD",45.392449,4.945769,,1,,Europe/Paris,,O38, +O38:SA:CTP678,1,"LES PRAS",44.915914,5.685131,,1,,Europe/Paris,,O38, +O38:SA:CTP6781,1,"LE PACA",45.417631,4.99074,,1,,Europe/Paris,,O38, +O38:SA:CTP6783,1,"MAISON CARRAZ",45.421557,4.978807,,1,,Europe/Paris,,O38, +O38:SA:CTP6785,1,"LES MAINES",45.421734,4.977308,,1,,Europe/Paris,,O38, +O38:SA:CTP6787,1,"LA PLACE",45.387524,4.989293,,1,,Europe/Paris,,O38, +O38:SA:CTP6789,1,"LA FEYTA",45.419162,4.950384,,1,,Europe/Paris,,O38, +O38:SA:CTP6791,1,"LES CHEVROTS",45.417114,4.99585,,1,,Europe/Paris,,O38, +O38:SA:CTP6793,1,"CHATEAU D'EAU",45.41833,4.984022,,1,,Europe/Paris,,O38, +O38:SA:CTP6795,1,"SIBUZE",45.420754,4.982779,,1,,Europe/Paris,,O38, +O38:SA:CTP6797,1,"LES VOGES",45.419881,4.971726,,1,,Europe/Paris,,O38, +O38:SA:CTP6799,1,"LES ROBERTS",45.419226,4.962096,,1,,Europe/Paris,,O38, +O38:SA:CTP6801,1,"MAISON-BROCHIER-SALOMON",45.383063,5.055274,,1,,Europe/Paris,,O38, +O38:SA:CTP6803,1,"BARBARIN",45.383728,5.042513,,1,,Europe/Paris,,O38, +O38:SA:CTP6805,1,"LAVOIR",45.383914,5.036405,,1,,Europe/Paris,,O38, +O38:SA:CTP6807,1,"CARREF.MACHON-BARDIN",45.385259,5.023976,,1,,Europe/Paris,,O38, +O38:SA:CTP6809,1,"ECOLE PRIMAIRE",45.380285,5.037486,,1,,Europe/Paris,,O38, +O38:SA:CTP681,1,"PLACE",44.915161,5.657841,,1,,Europe/Paris,,O38, +O38:SA:CTP6812,1,"MAISON COTTE",45.397902,5.056343,,1,,Europe/Paris,,O38, +O38:SA:CTP6813,1,"L'EMBRANCHEMENT",45.37955,5.025111,,1,,Europe/Paris,,O38, +O38:SA:CTP6818,1,"MAIRIE",45.402171,5.029939,,1,,Europe/Paris,,O38, +O38:SA:CTP6819,1,"ECOLE MAT-SALLE DES FETES",45.386821,5.063855,,1,,Europe/Paris,,O38, +O38:SA:CTP682,1,"LES CHAMPS VILLAGE",44.903516,5.688736,,1,,Europe/Paris,,O38, +O38:SA:CTP6821,1,"CAR.MAISON BERNE",45.400809,5.068447,,1,,Europe/Paris,,O38, +O38:SA:CTP6823,1,"LA CROIX",45.38753,5.076177,,1,,Europe/Paris,,O38, +O38:SA:CTP6826,1,"STADE",45.379907,5.037508,,1,,Europe/Paris,,O38, +O38:SA:CTP6827,1,"MAISON MARCHAND",45.381177,5.029668,,1,,Europe/Paris,,O38, +O38:SA:CTP6829,1,"GUIERS-GRANGE NEUVE ABRI",45.381235,5.057524,,1,,Europe/Paris,,O38, +O38:SA:CTP6831,1,"LA TOUR TELECOM",45.411389,5.016616,,1,,Europe/Paris,,O38, +O38:SA:CTP6833,1,"DESGRANGES",45.398053,5.023552,,1,,Europe/Paris,,O38, +O38:SA:CTP6835,1,"STADE",45.391124,5.03586,,1,,Europe/Paris,,O38, +O38:SA:CTP6837,1,"LA SICARDIERE",45.393993,5.123652,,1,,Europe/Paris,,O38, +O38:SA:CTP684,1,"LE VILLAGE",44.892523,5.763008,,1,,Europe/Paris,,O38, +O38:SA:CTP6840,1,"CHEMIN DE LA TUILIERE",45.410602,5.135459,,1,,Europe/Paris,,O38, +O38:SA:CTP6841,1,"GRAND BOSSIEU RD.51",45.411848,5.144657,,1,,Europe/Paris,,O38, +O38:SA:CTP6843,1,"MAISON BALLERAND",45.41069,5.111693,,1,,Europe/Paris,,O38, +O38:SA:CTP6845,1,"CROIST GRANDE BISSERA",45.402711,5.092579,,1,,Europe/Paris,,O38, +O38:SA:CTP6847,1,"SUR CHARDON",45.402439,5.12926,,1,,Europe/Paris,,O38, +O38:SA:CTP6849,1,"LES RIVAUX",45.387028,5.083835,,1,,Europe/Paris,,O38, +O38:SA:CTP685,1,"SIMANE",44.89965,5.772152,,1,,Europe/Paris,,O38, +O38:SA:CTP6851,1,"LE JAYON",45.390128,5.120458,,1,,Europe/Paris,,O38, +O38:SA:CTP6853,1,"POMMIER ECOLES",45.400371,5.118809,,1,,Europe/Paris,,O38, +O38:SA:CTP6855,1,"DOMAINE DU VERNAY",45.401598,5.078277,,1,,Europe/Paris,,O38, +O38:SA:CTP6857,1,"CHANTEMERLE",45.415714,5.112919,,1,,Europe/Paris,,O38, +O38:SA:CTP6859,1,"LE BAS SCIERIE",45.386669,5.110997,,1,,Europe/Paris,,O38, +O38:SA:CTP6861,1,"CROIST PETIT BISSERA",45.406817,5.11107,,1,,Europe/Paris,,O38, +O38:SA:CTP6863,1,"LES BRUYERES",45.387108,5.092288,,1,,Europe/Paris,,O38, +O38:SA:CTP6865,1,"CHEMIN DU FAY",45.387869,5.101353,,1,,Europe/Paris,,O38, +O38:SA:CTP6867,1,"LA CAGE VC N° 2",45.422938,5.099129,,1,,Europe/Paris,,O38, +O38:SA:CTP6869,1,"ROUTE DU GRAND BOSSIEU",45.411886,5.136784,,1,,Europe/Paris,,O38, +O38:SA:CTP687,1,"NANTIZON",44.917706,5.780925,,1,,Europe/Paris,,O38, +O38:SA:CTP6871,1,"RTE-LA CHARRIERE",45.393636,5.170345,,1,,Europe/Paris,,O38, +O38:SA:CTP6873,1,"PLACE M. RICHARD BERLAND",45.417597,5.148288,,1,,Europe/Paris,,O38, +O38:SA:CTP6875,1,"LES BRUYERES",45.380323,5.161622,,1,,Europe/Paris,,O38, +O38:SA:CTP6877,1,"LES VIES CROZES",45.421629,5.167982,,1,,Europe/Paris,,O38, +O38:SA:CTP6879,1,"LE BAS",45.403446,5.208522,,1,,Europe/Paris,,O38, +O38:SA:CTP6881,1,"BASCULE D.51",45.415379,5.15265,,1,,Europe/Paris,,O38, +O38:SA:CTP6883,1,"PATODIERE-CROIX",45.418958,5.158491,,1,,Europe/Paris,,O38, +O38:SA:CTP6885,1,"CHANTEMERLE",45.386006,5.16211,,1,,Europe/Paris,,O38, +O38:SA:CTP6887,1,"PLACE",45.393263,5.166096,,1,,Europe/Paris,,O38, +O38:SA:CTP6889,1,"LE PION",45.391164,5.207673,,1,,Europe/Paris,,O38, +O38:SA:CTP689,1,"PONT DE MALADIERE",44.913996,5.782784,,1,,Europe/Paris,,O38, +O38:SA:CTP6891,1,"CIMETIERE",45.390296,5.184176,,1,,Europe/Paris,,O38, +O38:SA:CTP6893,1,"LE GOURE",45.390406,5.197568,,1,,Europe/Paris,,O38, +O38:SA:CTP6895,1,"EGLISE",45.390336,5.189519,,1,,Europe/Paris,,O38, +O38:SA:CTP6897,1,"LA RANCHE",45.383971,5.175464,,1,,Europe/Paris,,O38, +O38:SA:CTP6899,1,"ECOLE",45.390319,5.189651,,1,,Europe/Paris,,O38, +O38:SA:CTP6901,1,"CHEMIN DE TRAVERSE",45.42138,5.15641,,1,,Europe/Paris,,O38, +O38:SA:CTP6903,1,"LES RUATS CARREFOUR",45.420504,5.231826,,1,,Europe/Paris,,O38, +O38:SA:CTP6905,1,"HAMEAU ST CORPS",45.415769,5.261944,,1,,Europe/Paris,,O38, +O38:SA:CTP6907,1,"LES CROZES",45.403703,5.227505,,1,,Europe/Paris,,O38, +O38:SA:CTP6908,1,"CITE SCOLAIRE",45.391031,5.264181,,1,,Europe/Paris,,O38, +O38:SA:CTP691,1,"ECOLE LE VILLARET",44.92987,5.774426,,1,,Europe/Paris,,O38, +O38:SA:CTP6910,1,"COLLEGE ST FRANCOIS",45.391485,5.254719,,1,,Europe/Paris,,O38, +O38:SA:CTP6912,1,"POULARDIERE",45.403842,5.273869,,1,,Europe/Paris,,O38, +O38:SA:CTP6914,1,"LE REVOLLET",45.392062,5.226866,,1,,Europe/Paris,,O38, +O38:SA:CTP6916,1,"G.S.ANDRE MALRAUX",45.394852,5.266295,,1,,Europe/Paris,,O38, +O38:SA:CTP6917,1,"LA CHAPELLE",45.396785,5.233456,,1,,Europe/Paris,,O38, +O38:SA:CTP6921,1,"EGLISE",45.398772,5.214234,,1,,Europe/Paris,,O38, +O38:SA:CTP6923,1,"PLACE H. BERLIOZ",45.391928,5.260767,,1,,Europe/Paris,,O38, +O38:SA:CTP6926,1,"LEGTA",45.387359,5.267611,,1,,Europe/Paris,,O38, +O38:SA:CTP6927,1,"LES BERLANDIERES",45.392285,5.231834,,1,,Europe/Paris,,O38, +O38:SA:CTP6929,1,"LA POYAT",45.398108,5.222406,,1,,Europe/Paris,,O38, +O38:SA:CTP693,1,"LE VILLARET",44.927351,5.776719,,1,,Europe/Paris,,O38, +O38:SA:CTP6931,1,"HAMEAU POIPON",45.377703,5.23549,,1,,Europe/Paris,,O38, +O38:SA:CTP6933,1,"LE COLONEAU",45.391926,5.304653,,1,,Europe/Paris,,O38, +O38:SA:CTP6935,1,"TERNAN",45.392668,5.286709,,1,,Europe/Paris,,O38, +O38:SA:CTP6937,1,"LE VILLAGE",45.392235,5.294952,,1,,Europe/Paris,,O38, +O38:SA:CTP6939,1,"CONDELLE (RD73)",45.390947,5.312719,,1,,Europe/Paris,,O38, +O38:SA:CTP6941,1,"MAIRIE",45.390572,5.327465,,1,,Europe/Paris,,O38, +O38:SA:CTP6943,1,"BEAUGE D71D",45.41888,5.322615,,1,,Europe/Paris,,O38, +O38:SA:CTP6945,1,"LA FOURNACHE",45.390498,5.317629,,1,,Europe/Paris,,O38, +O38:SA:CTP6947,1,"LES PIERRES N85",45.417601,5.329874,,1,,Europe/Paris,,O38, +O38:SA:CTP695,1,"LA CENTRALE",44.92912,5.782414,,1,,Europe/Paris,,O38, +O38:SA:CTP6951,1,"LE PLANTIER",45.390373,5.340702,,1,,Europe/Paris,,O38, +O38:SA:CTP6955,1,"POMPIERS",45.390338,5.35956,,1,,Europe/Paris,,O38, +O38:SA:CTP6957,1,"Z.A. MEYZIN",45.390391,5.352903,,1,,Europe/Paris,,O38, +O38:SA:CTP6959,1,"LE VILLAGE",45.389859,5.363678,,1,,Europe/Paris,,O38, +O38:SA:CTP696,1,"LA CENTRALE",44.933471,5.781526,,1,,Europe/Paris,,O38, +O38:SA:CTP6961,1,"LONGECHENAL",45.418126,5.347185,,1,,Europe/Paris,,O38, +O38:SA:CTP6963,1,"LA BOURGEAT",45.396365,5.398096,,1,,Europe/Paris,,O38, +O38:SA:CTP6965,1,"LA CHARRIERE",45.39659,5.389641,,1,,Europe/Paris,,O38, +O38:SA:CTP6967,1,"CAFE BERLIOZ",45.399534,5.377461,,1,,Europe/Paris,,O38, +O38:SA:CTP6969,1,"LA PETITE GARE",45.392598,5.386313,,1,,Europe/Paris,,O38, +O38:SA:CTP697,1,"HLM LE BREDENT",44.920665,5.78179,,1,,Europe/Paris,,O38, +O38:SA:CTP6971,1,"EGLISE",45.398962,5.385414,,1,,Europe/Paris,,O38, +O38:SA:CTP6973,1,"LA POLLARDIERE",45.398651,5.372288,,1,,Europe/Paris,,O38, +O38:SA:CTP6975,1,"HLM",45.387398,5.367871,,1,,Europe/Paris,,O38, +O38:SA:CTP6977,1,"CHEMIN DES VIGNES",45.396143,5.385641,,1,,Europe/Paris,,O38, +O38:SA:CTP6979,1,"LA MONTAGNE",45.399463,5.351688,,1,,Europe/Paris,,O38, +O38:SA:CTP6981,1,"LA CONTAMINE",45.399904,5.475417,,1,,Europe/Paris,,O38, +O38:SA:CTP6983,1,"L'HÔPITAL",45.3977,5.426269,,1,,Europe/Paris,,O38, +O38:SA:CTP6985,1,"GRAND LEMPS STADE",45.397655,5.431146,,1,,Europe/Paris,,O38, +O38:SA:CTP6989,1,"LA GARE",45.400222,5.463117,,1,,Europe/Paris,,O38, +O38:SA:CTP699,1,"ECOLE",44.893197,5.766606,,1,,Europe/Paris,,O38, +O38:SA:CTP6991,1,"BAS COLOMBE",45.397345,5.437503,,1,,Europe/Paris,,O38, +O38:SA:CTP6993,1,"ERMAC ABRI",45.398376,5.45214,,1,,Europe/Paris,,O38, +O38:SA:CTP6995,1,"LA BERTINE",45.39935,5.457394,,1,,Europe/Paris,,O38, +O38:SA:CTP6997,1,"PLACE DU CHATEAU",45.398207,5.420535,,1,,Europe/Paris,,O38, +O38:SA:CTP6999,1,"EGLISE",45.397659,5.449315,,1,,Europe/Paris,,O38, +O38:SA:CTP7002,1,"GRAND LEMPS USINE",45.40658,5.422764,,1,,Europe/Paris,,O38, +O38:SA:CTP7003,1,"COLLEGE LIERS ET LEMPS",45.395471,5.423029,,1,,Europe/Paris,,O38, +O38:SA:CTP7007,1,"GARE SNCF",45.396733,5.422804,,1,,Europe/Paris,,O38, +O38:SA:CTP7009,1,"PASSAGE A NIVEAU",45.393818,5.425197,,1,,Europe/Paris,,O38, +O38:SA:CTP701,1,"EGLISE",44.903149,5.836012,,1,,Europe/Paris,,O38, +O38:SA:CTP7010,1,"AVENUE DE L'EUROPE",45.393397,5.422528,,1,,Europe/Paris,,O38, +O38:SA:CTP7012,1,"ECOLE MATERNELLE",45.398292,5.501545,,1,,Europe/Paris,,O38, +O38:SA:CTP7013,1,"LA ROBERTIERE",45.399821,5.492562,,1,,Europe/Paris,,O38, +O38:SA:CTP7015,1,"ECOLE PRIMAIRE ST EXUPERY",45.398969,5.50317,,1,,Europe/Paris,,O38, +O38:SA:CTP7018,1,"BONPERTUIS",45.394969,5.529864,,1,,Europe/Paris,,O38, +O38:SA:CTP7020,1,"LE VILLAGE",45.3986,5.504861,,1,,Europe/Paris,,O38, +O38:SA:CTP703,1,"LES CHAPEAUX",44.896435,5.835968,,1,,Europe/Paris,,O38, +O38:SA:CTP7034,1,"PLAMBOIS",45.404212,5.523387,,1,,Europe/Paris,,O38, +O38:SA:CTP7036,1,"CHAMP GUICHARD",45.398173,5.515242,,1,,Europe/Paris,,O38, +O38:SA:CTP7038,1,"LA COUCHONNIERE",45.400203,5.484866,,1,,Europe/Paris,,O38, +O38:SA:CTP7040,1,"LE JACQUIN",45.399347,5.499819,,1,,Europe/Paris,,O38, +O38:SA:CTP705,1,"ROIZON GARE",44.913947,5.81673,,1,,Europe/Paris,,O38, +O38:SA:CTP7051,1,"ROUTE DE CHARAVINES",45.389108,5.501248,,1,,Europe/Paris,,O38, +O38:SA:CTP7071,1,"PAPETERIE",45.409734,5.531944,,1,,Europe/Paris,,O38, +O38:SA:CTP708,1,"CARRIERE BARBE",44.901533,5.817419,,1,,Europe/Paris,,O38, +O38:SA:CTP7083,1,"LE PAYSAN",45.378728,5.548589,,1,,Europe/Paris,,O38, +O38:SA:CTP7099,1,"POLE DE VOUISE",45.377518,5.581573,,1,,Europe/Paris,,O38, +O38:SA:CTP711,1,"COL DE MALISSOL",44.928491,5.843427,,1,,Europe/Paris,,O38, +O38:SA:CTP7124,1,"CROIX BAYARD",45.365841,5.621897,,1,,Europe/Paris,,O38, +O38:SA:CTP713,1,"SERBOUVET",44.928298,5.809846,,1,,Europe/Paris,,O38, +O38:SA:CTP7130,1,"VILLAGE",45.377213,5.645677,,1,,Europe/Paris,,O38, +O38:SA:CTP7134,1,"ETANG DAUPHIN",45.367646,5.633395,,1,,Europe/Paris,,O38, +O38:SA:CTP7140,1,"LA BOURDERIE",45.376767,5.678481,,1,,Europe/Paris,,O38, +O38:SA:CTP7142,1,"LES BACHES",45.405558,5.705624,,1,,Europe/Paris,,O38, +O38:SA:CTP7144,1,"LA GRASSETIERE",45.403583,5.694802,,1,,Europe/Paris,,O38, +O38:SA:CTP7146,1,"PONT DEMAY",45.363156,5.677955,,1,,Europe/Paris,,O38, +O38:SA:CTP7148,1,"LA COTE",45.402848,5.699518,,1,,Europe/Paris,,O38, +O38:SA:CTP715,1,"CIMON",44.910895,5.784146,,1,,Europe/Paris,,O38, +O38:SA:CTP7151,1,"LE PERON",45.396307,5.686876,,1,,Europe/Paris,,O38, +O38:SA:CTP7152,1,"LES GENONS",45.394732,5.701739,,1,,Europe/Paris,,O38, +O38:SA:CTP7154,1,"COLLEGE LE GRAND SOM",45.393589,5.732055,,1,,Europe/Paris,,O38, +O38:SA:CTP7156,1,"LE COTTERG",45.388409,5.725466,,1,,Europe/Paris,,O38, +O38:SA:CTP7158,1,"PLAINE FLEURIE",45.396051,5.727405,,1,,Europe/Paris,,O38, +O38:SA:CTP7160,1,"L'EGLISE-ECOLE PRIVEE",45.38797,5.731347,,1,,Europe/Paris,,O38, +O38:SA:CTP7162,1,"LE REVOL",45.396011,5.741363,,1,,Europe/Paris,,O38, +O38:SA:CTP7165,1,"LA TUILERIE",45.402071,5.713516,,1,,Europe/Paris,,O38, +O38:SA:CTP7166,1,"LES JOLYS",45.389672,5.680043,,1,,Europe/Paris,,O38, +O38:SA:CTP7168,1,"LA SIRANDIERE",45.365816,5.684078,,1,,Europe/Paris,,O38, +O38:SA:CTP717,1,"ROIZON - LE BAS",44.914356,5.822341,,1,,Europe/Paris,,O38, +O38:SA:CTP7170,1,"LES SATRES",45.388321,5.692952,,1,,Europe/Paris,,O38, +O38:SA:CTP7172,1,"CHARBONNIERE",45.36426,5.682552,,1,,Europe/Paris,,O38, +O38:SA:CTP7175,1,"LA TUILERIE",45.382443,5.688715,,1,,Europe/Paris,,O38, +O38:SA:CTP7176,1,"LA GUILLETIERE LOT",45.3847,5.684853,,1,,Europe/Paris,,O38, +O38:SA:CTP7178,1,"LA GUILLETIERE",45.385365,5.681559,,1,,Europe/Paris,,O38, +O38:SA:CTP7180,1,"LA GUILLOTIERE",45.386488,5.7166,,1,,Europe/Paris,,O38, +O38:SA:CTP7184,1,"LE VILLAGE",45.37485,5.696931,,1,,Europe/Paris,,O38, +O38:SA:CTP7186,1,"LES COTES DE VILETTE",45.392601,5.699737,,1,,Europe/Paris,,O38, +O38:SA:CTP7188,1,"LES TERPENDS",45.39674,5.704081,,1,,Europe/Paris,,O38, +O38:SA:CTP719,1,"LA POSTE",44.907183,5.789296,,1,,Europe/Paris,,O38, +O38:SA:CTP7190,1,"HAMEAU VILLETTE",45.400356,5.723254,,1,,Europe/Paris,,O38, +O38:SA:CTP7192,1,"GARE ROUTIERE",45.388269,5.733436,,1,,Europe/Paris,,O38, +O38:SA:CTP7194,1,"CROISEMENT LE NEPLIER",45.407998,5.71057,,1,,Europe/Paris,,O38, +O38:SA:CTP7196,1,"LES LARDS",45.37846,5.700289,,1,,Europe/Paris,,O38, +O38:SA:CTP7198,1,"ECOLE DU BOURG",45.388716,5.735019,,1,,Europe/Paris,,O38, +O38:SA:CTP7201,1,"LES MARTINS",45.392649,5.745223,,1,,Europe/Paris,,O38, +O38:SA:CTP7202,1,"LA FOURVOIRIE",45.378575,5.747226,,1,,Europe/Paris,,O38, +O38:SA:CTP7204,1,"LES BOURDOIRES",45.398427,5.754328,,1,,Europe/Paris,,O38, +O38:SA:CTP7206,1,"ST PHILIBERT EGLISE",45.379756,5.848988,,1,,Europe/Paris,,O38, +O38:SA:CTP7207,1,"LES CLOITRES",45.383114,5.854345,,1,,Europe/Paris,,O38, +O38:SA:CTP7209,1,"LES REY",45.389192,5.845016,,1,,Europe/Paris,,O38, +O38:SA:CTP721,1,"DR.RICARD",44.903992,5.791436,,1,,Europe/Paris,,O38, +O38:SA:CTP7210,1,"ST PHILIBERT-LE MONUMENT",45.380896,5.85126,,1,,Europe/Paris,,O38, +O38:SA:CTP7212,1,"LES ARRAGONS",45.382438,5.843906,,1,,Europe/Paris,,O38, +O38:SA:CTP7213,1,"ST PHILIBERT-MAISON SAULE",45.379195,5.846296,,1,,Europe/Paris,,O38, +O38:SA:CTP7214,1,"LE VILLARD",45.398378,5.843633,,1,,Europe/Paris,,O38, +O38:SA:CTP7215,1,"BIFURCATION LES ARRAGONS",45.383847,5.84463,,1,,Europe/Paris,,O38, +O38:SA:CTP7218,1,"BIFURCATION LES BAS/LE VILLARD",45.403062,5.842552,,1,,Europe/Paris,,O38, +O38:SA:CTP7219,1,"LES BAS",45.403568,5.843527,,1,,Europe/Paris,,O38, +O38:SA:CTP7221,1,"LES VASSAUX",45.388631,5.853121,,1,,Europe/Paris,,O38, +O38:SA:CTP7229,1,"COL DE MARCIEU",45.355953,5.919037,,1,,Europe/Paris,,O38, +O38:SA:CTP723,1,"LE SAUZE",44.913672,5.799408,,1,,Europe/Paris,,O38, +O38:SA:CTP725,1,"PONT HAUT",44.901614,5.817382,,1,,Europe/Paris,,O38, +O38:SA:CTP727,1,"LA FAURIE",44.918219,5.807063,,1,,Europe/Paris,,O38, +O38:SA:CTP7287,1,"LE VILLAGE",45.38048,5.967567,,1,,Europe/Paris,,O38, +O38:SA:CTP729,1,"LE CROZET",44.899765,5.807777,,1,,Europe/Paris,,O38, +O38:SA:CTP7303,1,"HAUT TOUVET E.D.F.",45.364179,5.954695,,1,,Europe/Paris,,O38, +O38:SA:CTP731,1,"VILLARET-REYNAUD",44.920389,5.805684,,1,,Europe/Paris,,O38, +O38:SA:CTP7322,1,"LA GARE",45.359864,5.950414,,1,,Europe/Paris,,O38, +O38:SA:CTP733,1,"LES BASTIONS ECOLE",44.898996,5.787934,,1,,Europe/Paris,,O38, +O38:SA:CTP7341,1,"LA CHARRIERE",45.359652,5.948195,,1,,Europe/Paris,,O38, +O38:SA:CTP7344,1,"MAIRIE",45.374918,5.949151,,1,,Europe/Paris,,O38, +O38:SA:CTP735,1,"LA MAIRIE",44.905997,5.7839,,1,,Europe/Paris,,O38, +O38:SA:CTP737,1,"LE FREYNET",44.927878,5.831997,,1,,Europe/Paris,,O38, +O38:SA:CTP738,1,"REPUBLIQUE",44.902526,5.78516,,1,,Europe/Paris,,O38, +O38:SA:CTP740,1,"CHARLAIX",44.896556,5.816564,,1,,Europe/Paris,,O38, +O38:SA:CTP7408,1,"SAILLES",45.366748,6.033283,,1,,Europe/Paris,,O38, +O38:SA:CTP744,1,"LES MIARDS",44.889049,5.835553,,1,,Europe/Paris,,O38, +O38:SA:CTP7459,1,"ST PIERRE VILLAGE",45.374159,6.046651,,1,,Europe/Paris,,O38, +O38:SA:CTP746,1,"LES RIEUX",44.891255,5.847628,,1,,Europe/Paris,,O38, +O38:SA:CTP748,1,"MALBUISSON",44.892559,5.842131,,1,,Europe/Paris,,O38, +O38:SA:CTP750,1,"COLLEGE LOUIS MAUBERRET",44.898182,5.791021,,1,,Europe/Paris,,O38, +O38:SA:CTP7513,1,"LE CHATEAU D'EAU",45.465702,4.801774,,1,,Europe/Paris,,O38, +O38:SA:CTP7516,1,"L'AMBALLAN-CHEMIN MATI",45.472908,4.810733,,1,,Europe/Paris,,O38, +O38:SA:CTP7519,1,"PLACE",45.460176,4.812071,,1,,Europe/Paris,,O38, +O38:SA:CTP752,1,"SALLE DES FETES",44.889832,5.796546,,1,,Europe/Paris,,O38, +O38:SA:CTP7522,1,"LE MARAIS",45.462158,4.802704,,1,,Europe/Paris,,O38, +O38:SA:CTP7524,1,"EGLISE",45.440876,4.771269,,1,,Europe/Paris,,O38, +O38:SA:CTP7526,1,"LA MAIRIE",45.438959,4.770052,,1,,Europe/Paris,,O38, +O38:SA:CTP7528,1,"GARE ST CLAIR LES ROCHES",45.452175,4.767922,,1,,Europe/Paris,,O38, +O38:SA:CTP7530,1,"CARREFOUR BERTHELOT",45.445456,4.767434,,1,,Europe/Paris,,O38, +O38:SA:CTP7532,1,"MAIRIE",45.440481,4.769839,,1,,Europe/Paris,,O38, +O38:SA:CTP7534,1,"LA GARE",45.461111,4.768786,,1,,Europe/Paris,,O38, +O38:SA:CTP7536,1,"LA CROIX DE GLAY",45.435243,4.796337,,1,,Europe/Paris,,O38, +O38:SA:CTP7538,1,"COLLEGE PRIVE LES MARRONNIERS",45.462458,4.768992,,1,,Europe/Paris,,O38, +O38:SA:CTP7540,1,"COLLEGE LE BASSENON",45.470824,4.775614,,1,,Europe/Paris,,O38, +O38:SA:CTP7542,1,"VILLAGE",45.44374,4.795014,,1,,Europe/Paris,,O38, +O38:SA:CTP7544,1,"LE CHANET",45.448232,4.79766,,1,,Europe/Paris,,O38, +O38:SA:CTP7546,1,"TOISIEU SILO",45.451259,4.804743,,1,,Europe/Paris,,O38, +O38:SA:CTP7548,1,"RN7 MAISON BRULEE",45.463669,4.82667,,1,,Europe/Paris,,O38, +O38:SA:CTP755,1,"FERME BRACHON",44.893145,5.792917,,1,,Europe/Paris,,O38, +O38:SA:CTP7551,1,"COLOMBETTE CHEMIN",45.463058,4.821332,,1,,Europe/Paris,,O38, +O38:SA:CTP7554,1,"LIEURAZ",45.469158,4.826783,,1,,Europe/Paris,,O38, +O38:SA:CTP7556,1,"LE CLOS-LE BAS N7",45.431361,4.817846,,1,,Europe/Paris,,O38, +O38:SA:CTP7559,1,"GD CHEMIN GAR. PATISSIER",45.472922,4.829167,,1,,Europe/Paris,,O38, +O38:SA:CTP7563,1,"LE GONTARD-PLACE",45.432143,4.936764,,1,,Europe/Paris,,O38, +O38:SA:CTP7565,1,"LOT LES GARATIERES",45.42833,4.928232,,1,,Europe/Paris,,O38, +O38:SA:CTP7567,1,"LE FIT",45.443387,5.001053,,1,,Europe/Paris,,O38, +O38:SA:CTP757,1,"MAIRIE(PIVOL)",44.912704,5.807219,,1,,Europe/Paris,,O38, +O38:SA:CTP7570,1,"LE CYVAS",45.471735,4.973416,,1,,Europe/Paris,,O38, +O38:SA:CTP7573,1,"MAIRIE",45.440761,5.00546,,1,,Europe/Paris,,O38, +O38:SA:CTP7575,1,"ECOLES",45.440874,5.005693,,1,,Europe/Paris,,O38, +O38:SA:CTP7577,1,"CAR.DU VERNAY",45.442876,4.993651,,1,,Europe/Paris,,O38, +O38:SA:CTP7579,1,"CAR.CHEMIN DU VERNAY",45.442505,4.991455,,1,,Europe/Paris,,O38, +O38:SA:CTP7583,1,"LES GARENNES",45.435813,4.978572,,1,,Europe/Paris,,O38, +O38:SA:CTP7586,1,"CENTRE",45.474245,4.997202,,1,,Europe/Paris,,O38, +O38:SA:CTP7589,1,"CHEZ JANIN",45.435401,4.974856,,1,,Europe/Paris,,O38, +O38:SA:CTP759,1,"LES TERRASSES",44.888744,5.824417,,1,,Europe/Paris,,O38, +O38:SA:CTP7591,1,"BOURNE CARREFOUR",45.44113,4.980959,,1,,Europe/Paris,,O38, +O38:SA:CTP7596,1,"LE PINET",45.463146,5.001558,,1,,Europe/Paris,,O38, +O38:SA:CTP7600,1,"BOURG",45.429684,4.97055,,1,,Europe/Paris,,O38, +O38:SA:CTP7605,1,"LA MARTINIERE",45.463424,4.983259,,1,,Europe/Paris,,O38, +O38:SA:CTP7609,1,"CHEZ PISTOLET",45.457329,4.998446,,1,,Europe/Paris,,O38, +O38:SA:CTP761,1,"HOPITAL",44.905329,5.795315,,1,,Europe/Paris,,O38, +O38:SA:CTP7612,1,"LE MILLET",45.439575,4.969533,,1,,Europe/Paris,,O38, +O38:SA:CTP7614,1,"HAMEAU DE BUIS",45.441858,5.040404,,1,,Europe/Paris,,O38, +O38:SA:CTP7617,1,"MAISON JULIEN",45.466951,5.07952,,1,,Europe/Paris,,O38, +O38:SA:CTP7620,1,"HAMEAU LE BURON",45.442828,5.019782,,1,,Europe/Paris,,O38, +O38:SA:CTP7623,1,"MAISON REVOLAT",45.467903,5.065228,,1,,Europe/Paris,,O38, +O38:SA:CTP763,1,"LA CROIX",44.904974,5.807424,,1,,Europe/Paris,,O38, +O38:SA:CTP7630,1,"LE RAJAT",45.467075,5.07301,,1,,Europe/Paris,,O38, +O38:SA:CTP7632,1,"MAISON BAULE",45.432028,5.063772,,1,,Europe/Paris,,O38, +O38:SA:CTP7634,1,"R.I.S.",45.425733,5.085377,,1,,Europe/Paris,,O38, +O38:SA:CTP7636,1,"BOURG",45.433639,5.095253,,1,,Europe/Paris,,O38, +O38:SA:CTP7638,1,"LE PONT ROUGE",45.458224,5.141262,,1,,Europe/Paris,,O38, +O38:SA:CTP7640,1,"LES VALAISES",45.471287,5.121478,,1,,Europe/Paris,,O38, +O38:SA:CTP7642,1,"LE MOULIN",45.467535,5.097021,,1,,Europe/Paris,,O38, +O38:SA:CTP7646,1,"LE SERPOLLIER",45.469822,5.114994,,1,,Europe/Paris,,O38, +O38:SA:CTP7649,1,"SOUS CHENAUX",45.467134,5.089217,,1,,Europe/Paris,,O38, +O38:SA:CTP765,1,"MEHARIE",44.887293,5.783535,,1,,Europe/Paris,,O38, +O38:SA:CTP7653,1,"GEORGILLON",45.428522,5.089786,,1,,Europe/Paris,,O38, +O38:SA:CTP7657,1,"QUARTIER L'EGLISE",45.471071,5.104026,,1,,Europe/Paris,,O38, +O38:SA:CTP7664,1,"PONT DU RECOURS",45.467202,5.107229,,1,,Europe/Paris,,O38, +O38:SA:CTP7669,1,"LE PONT ROUGE MAISON MARCHETTI",45.460896,5.135851,,1,,Europe/Paris,,O38, +O38:SA:CTP767,1,"COMPLEXE JEAN MOREL",44.896979,5.78932,,1,,Europe/Paris,,O38, +O38:SA:CTP7672,1,"LE PONT ROUGE CHARTIER",45.464065,5.12612,,1,,Europe/Paris,,O38, +O38:SA:CTP7674,1,"D51",45.423731,5.175192,,1,,Europe/Paris,,O38, +O38:SA:CTP7676,1,"LE VILLAGE",45.458174,5.181041,,1,,Europe/Paris,,O38, +O38:SA:CTP7678,1,"LES ARGOUDS",45.426093,5.180228,,1,,Europe/Paris,,O38, +O38:SA:CTP7681,1,"BONNEVAUX-RD518",45.462358,5.161051,,1,,Europe/Paris,,O38, +O38:SA:CTP7682,1,"EGLISE",45.431756,5.200308,,1,,Europe/Paris,,O38, +O38:SA:CTP7684,1,"MAIS.JANIN-COSTE",45.431688,5.188521,,1,,Europe/Paris,,O38, +O38:SA:CTP7686,1,"LE NEMOZ",45.431554,5.205605,,1,,Europe/Paris,,O38, +O38:SA:CTP7688,1,"BOULANGERIE",45.431547,5.205583,,1,,Europe/Paris,,O38, +O38:SA:CTP7690,1,"LOT.GUILLERMOND",45.428158,5.187314,,1,,Europe/Paris,,O38, +O38:SA:CTP7692,1,"LES NOISETIERS",45.431738,5.196796,,1,,Europe/Paris,,O38, +O38:SA:CTP7694,1,"LE VILLAGE",45.431516,5.205867,,1,,Europe/Paris,,O38, +O38:SA:CTP7697,1,"LE LAUDIAR",45.432937,5.193703,,1,,Europe/Paris,,O38, +O38:SA:CTP7699,1,"BONNEVAUX",45.46101,5.156013,,1,,Europe/Paris,,O38, +O38:SA:CTP7701,1,"ECOLE MATERNELLE",45.428599,5.22968,,1,,Europe/Paris,,O38, +O38:SA:CTP7703,1,"ECOLE PRIMAIRE",45.429901,5.231188,,1,,Europe/Paris,,O38, +O38:SA:CTP7705,1,"PLACE",45.428452,5.225775,,1,,Europe/Paris,,O38, +O38:SA:CTP7707,1,"LES RUATS",45.424504,5.228133,,1,,Europe/Paris,,O38, +O38:SA:CTP7709,1,"LE VILLAGE",45.428248,5.225707,,1,,Europe/Paris,,O38, +O38:SA:CTP771,1,"CLOS DU PUITS",44.8887,5.788324,,1,,Europe/Paris,,O38, +O38:SA:CTP7711,1,"MAISON CLAVEL",45.429465,5.238666,,1,,Europe/Paris,,O38, +O38:SA:CTP7712,1,"VILLARNOUD D51",45.430046,5.245471,,1,,Europe/Paris,,O38, +O38:SA:CTP7714,1,"ROUTE DU LIERS",45.432292,5.259434,,1,,Europe/Paris,,O38, +O38:SA:CTP7716,1,"BASCULE",45.434781,5.271844,,1,,Europe/Paris,,O38, +O38:SA:CTP7718,1,"LE CANEL",45.431525,5.213321,,1,,Europe/Paris,,O38, +O38:SA:CTP7720,1,"Z.A",45.432755,5.27215,,1,,Europe/Paris,,O38, +O38:SA:CTP7722,1,"MAIRIE",45.4213,5.311418,,1,,Europe/Paris,,O38, +O38:SA:CTP7726,1,"CENTRE",45.44142,5.329916,,1,,Europe/Paris,,O38, +O38:SA:CTP7728,1,"PLACE",45.452146,5.290411,,1,,Europe/Paris,,O38, +O38:SA:CTP773,1,"CARREF.SERGE FEU",44.925609,5.851671,,1,,Europe/Paris,,O38, +O38:SA:CTP7730,1,"ROUTE DE FLACHERES",45.458091,5.291647,,1,,Europe/Paris,,O38, +O38:SA:CTP7732,1,"BAS CHAMPIER",45.44542,5.2907,,1,,Europe/Paris,,O38, +O38:SA:CTP7734,1,"LE CONTOUR",45.436514,5.299313,,1,,Europe/Paris,,O38, +O38:SA:CTP7736,1,"REGARDIN D71D",45.419441,5.316879,,1,,Europe/Paris,,O38, +O38:SA:CTP7738,1,"ROSSATIERE D71D",45.423948,5.303583,,1,,Europe/Paris,,O38, +O38:SA:CTP7740,1,"DANTONNIERE D71D",45.425343,5.296231,,1,,Europe/Paris,,O38, +O38:SA:CTP7744,1,"GARAGE",45.450065,5.38473,,1,,Europe/Paris,,O38, +O38:SA:CTP7746,1,"ROSSATIERE",45.445556,5.408401,,1,,Europe/Paris,,O38, +O38:SA:CTP7748,1,"LE HAUT",45.452662,5.382767,,1,,Europe/Paris,,O38, +O38:SA:CTP7750,1,"LA CARIEVE",45.450783,5.409751,,1,,Europe/Paris,,O38, +O38:SA:CTP7752,1,"HAMEAU DE VAUX",45.461204,5.409467,,1,,Europe/Paris,,O38, +O38:SA:CTP7754,1,"CROIST RTE DU CHEVALET",45.460693,5.412452,,1,,Europe/Paris,,O38, +O38:SA:CTP7756,1,"PLACE DE LA FONTAINE",45.455519,5.378417,,1,,Europe/Paris,,O38, +O38:SA:CTP7758,1,"ROUTE DE BIZONNES",45.459831,5.371962,,1,,Europe/Paris,,O38, +O38:SA:CTP776,1,"LES PRAS",44.917878,5.871974,,1,,Europe/Paris,,O38, +O38:SA:CTP7760,1,"LES LIERS",45.424734,5.392482,,1,,Europe/Paris,,O38, +O38:SA:CTP7761,1,"VILLAGE",45.465134,5.350949,,1,,Europe/Paris,,O38, +O38:SA:CTP7763,1,"LE BAS",45.462273,5.349805,,1,,Europe/Paris,,O38, +O38:SA:CTP7765,1,"PISCICULTURE",45.443499,5.449637,,1,,Europe/Paris,,O38, +O38:SA:CTP7767,1,"TERNIN",45.4402,5.443905,,1,,Europe/Paris,,O38, +O38:SA:CTP7769,1,"ECOLES",45.433152,5.439207,,1,,Europe/Paris,,O38, +O38:SA:CTP777,1,"MALBUISSON",44.896561,5.857112,,1,,Europe/Paris,,O38, +O38:SA:CTP7771,1,"LES 4 ROUTES",45.428236,5.432871,,1,,Europe/Paris,,O38, +O38:SA:CTP7772,1,"CUETAN",45.421029,5.451824,,1,,Europe/Paris,,O38, +O38:SA:CTP7774,1,"LA GARE",45.438349,5.428844,,1,,Europe/Paris,,O38, +O38:SA:CTP7776,1,"COMBE-RTE RONGY",45.455907,5.439881,,1,,Europe/Paris,,O38, +O38:SA:CTP7778,1,"HAMEAU LES BLACHES",45.434944,5.422614,,1,,Europe/Paris,,O38, +O38:SA:CTP7780,1,"HAMEAU LA COMBE",45.454707,5.435432,,1,,Europe/Paris,,O38, +O38:SA:CTP7782,1,"LES SABLES",45.459683,5.446386,,1,,Europe/Paris,,O38, +O38:SA:CTP7784,1,"GALIEVE",45.463398,5.419527,,1,,Europe/Paris,,O38, +O38:SA:CTP7786,1,"LA RONGY",45.452023,5.447725,,1,,Europe/Paris,,O38, +O38:SA:CTP7788,1,"CENTRE",45.441077,5.428147,,1,,Europe/Paris,,O38, +O38:SA:CTP779,1,"LE HAUT",44.906618,5.851389,,1,,Europe/Paris,,O38, +O38:SA:CTP7790,1,"LA MOTTE",45.44639,5.445524,,1,,Europe/Paris,,O38, +O38:SA:CTP7793,1,"HAMEAU PIOTIERE",45.431756,5.428215,,1,,Europe/Paris,,O38, +O38:SA:CTP7794,1,"LEPPAR LE VALLON",45.445219,5.428976,,1,,Europe/Paris,,O38, +O38:SA:CTP7796,1,"LE LAC",45.431336,5.414074,,1,,Europe/Paris,,O38, +O38:SA:CTP7798,1,"LES HALLES",45.44311,5.423692,,1,,Europe/Paris,,O38, +O38:SA:CTP7800,1,"MAT LE TULIPIER (PRIVEE)",45.444155,5.430556,,1,,Europe/Paris,,O38, +O38:SA:CTP7802,1,"BLAUNE VILLAGE",45.432367,5.468169,,1,,Europe/Paris,,O38, +O38:SA:CTP7804,1,"LES BARILS",45.451144,5.431894,,1,,Europe/Paris,,O38, +O38:SA:CTP7806,1,"ROUTE DE BLAUNE",45.422202,5.47242,,1,,Europe/Paris,,O38, +O38:SA:CTP7808,1,"CENTRE",45.422297,5.475263,,1,,Europe/Paris,,O38, +O38:SA:CTP781,1,"PLACE",44.900262,5.906168,,1,,Europe/Paris,,O38, +O38:SA:CTP7811,1,"PRI LE TULIPIER (PRIVEE)",45.445709,5.429632,,1,,Europe/Paris,,O38, +O38:SA:CTP7812,1,"LOT LES JONQUILLES",45.439944,5.422006,,1,,Europe/Paris,,O38, +O38:SA:CTP7814,1,"CHEMIN LA RAZ",45.438617,5.416456,,1,,Europe/Paris,,O38, +O38:SA:CTP783,1,"PONT DU PRETRE",44.894935,5.868896,,1,,Europe/Paris,,O38, +O38:SA:CTP7842,1,"VERNAY HT-S.D.FETES",45.423704,5.495654,,1,,Europe/Paris,,O38, +O38:SA:CTP7844,1,"VERNAY LE BAS",45.424056,5.48961,,1,,Europe/Paris,,O38, +O38:SA:CTP7847,1,"OFFICE DE TOURISME",45.432578,5.516266,,1,,Europe/Paris,,O38, +O38:SA:CTP785,1,"EQUIPEMENT",44.898774,5.898856,,1,,Europe/Paris,,O38, +O38:SA:CTP7865,1,"L'ARSENAL",45.430895,5.567985,,1,,Europe/Paris,,O38, +O38:SA:CTP7879,1,"LA FAGOTIERE",45.446038,5.675359,,1,,Europe/Paris,,O38, +O38:SA:CTP7888,1,"LE BURLET",45.433632,5.650293,,1,,Europe/Paris,,O38, +O38:SA:CTP789,1,"GENDARMERIE",44.898999,5.911645,,1,,Europe/Paris,,O38, +O38:SA:CTP7891,1,"CHOCHE - LE PARIS",45.45597,5.647812,,1,,Europe/Paris,,O38, +O38:SA:CTP7894,1,"PISCINE - CAFE DELPHIN",45.455954,5.636847,,1,,Europe/Paris,,O38, +O38:SA:CTP7898,1,"LE ROULET",45.454248,5.631671,,1,,Europe/Paris,,O38, +O38:SA:CTP7902,1,"VILLAGE",45.45636,5.635104,,1,,Europe/Paris,,O38, +O38:SA:CTP7909,1,"GENDARMERIE",45.451604,5.630442,,1,,Europe/Paris,,O38, +O38:SA:CTP791,1,"LE SERT",44.892637,5.855553,,1,,Europe/Paris,,O38, +O38:SA:CTP7913,1,"HLM",45.435351,5.709307,,1,,Europe/Paris,,O38, +O38:SA:CTP7915,1,"CHEMIN DU FROU",45.433208,5.70982,,1,,Europe/Paris,,O38, +O38:SA:CTP792,1,"LA PLACE",44.902046,5.948675,,1,,Europe/Paris,,O38, +O38:SA:CTP7920,1,"LA GROTTE",45.424061,5.705123,,1,,Europe/Paris,,O38, +O38:SA:CTP7921,1,"LE GRAND COSSERT BAS",45.445146,5.700955,,1,,Europe/Paris,,O38, +O38:SA:CTP7924,1,"LE PERRON",45.440572,5.707292,,1,,Europe/Paris,,O38, +O38:SA:CTP7926,1,"LA MICHALIERE",45.451763,5.701794,,1,,Europe/Paris,,O38, +O38:SA:CTP7927,1,"LE GRAND COSSERT",45.447697,5.698294,,1,,Europe/Paris,,O38, +O38:SA:CTP7929,1,"ECOLE PRIMAIRE MIRIBEL",45.426062,5.706479,,1,,Europe/Paris,,O38, +O38:SA:CTP7936,1,"LE THIL",45.447869,5.710748,,1,,Europe/Paris,,O38, +O38:SA:CTP7937,1,"LA BILLIONNIERE",45.421435,5.703211,,1,,Europe/Paris,,O38, +O38:SA:CTP7939,1,"SCIERIE BARIOZ",45.417514,5.701803,,1,,Europe/Paris,,O38, +O38:SA:CTP794,1,"PONT BATTANT",44.900313,5.944526,,1,,Europe/Paris,,O38, +O38:SA:CTP7941,1,"LE BAS BOLIN",45.413728,5.703434,,1,,Europe/Paris,,O38, +O38:SA:CTP7943,1,"PASSARDIERE",45.409992,5.703492,,1,,Europe/Paris,,O38, +O38:SA:CTP7945,1,"CROIX BATARD",45.410376,5.710113,,1,,Europe/Paris,,O38, +O38:SA:CTP7947,1,"CASTEL",45.437253,5.734415,,1,,Europe/Paris,,O38, +O38:SA:CTP7950,1,"TOUR ST HUGUES",45.44079,5.708959,,1,,Europe/Paris,,O38, +O38:SA:CTP7951,1,"SOUS LE BOIS Nø2",45.433208,5.71975,,1,,Europe/Paris,,O38, +O38:SA:CTP7954,1,"LA COMBE",45.441845,5.703498,,1,,Europe/Paris,,O38, +O38:SA:CTP7956,1,"LA ROCHE",45.453587,5.711724,,1,,Europe/Paris,,O38, +O38:SA:CTP7957,1,"LOT. L'ENCLOS",45.4311,5.713607,,1,,Europe/Paris,,O38, +O38:SA:CTP7959,1,"COLLEGE ST-BRUNO",45.433086,5.754153,,1,,Europe/Paris,,O38, +O38:SA:CTP796,1,"ECOLE",44.903902,5.947916,,1,,Europe/Paris,,O38, +O38:SA:CTP7961,1,"AIGUENOIRE",45.407202,5.758963,,1,,Europe/Paris,,O38, +O38:SA:CTP7963,1,"LE VILLAGE",45.433965,5.752384,,1,,Europe/Paris,,O38, +O38:SA:CTP7965,1,"MONTCELET",45.428779,5.756763,,1,,Europe/Paris,,O38, +O38:SA:CTP7966,1,"ECOLE DU FROU",45.427971,5.780376,,1,,Europe/Paris,,O38, +O38:SA:CTP7968,1,"COLLEGE BEATRICE DE SAVOIE",45.439252,5.751716,,1,,Europe/Paris,,O38, +O38:SA:CTP7970,1,"PLACE",45.43757,5.7524,,1,,Europe/Paris,,O38, +O38:SA:CTP7972,1,"MAIRIE",45.438409,5.774893,,1,,Europe/Paris,,O38, +O38:SA:CTP798,1,"LES ANGELAS",44.891581,5.925555,,1,,Europe/Paris,,O38, +O38:SA:CTP7980,1,"HAMEAU LA RICHARDIERE",45.424124,5.778334,,1,,Europe/Paris,,O38, +O38:SA:CTP7982,1,"LA MARINE",45.41208,5.766122,,1,,Europe/Paris,,O38, +O38:SA:CTP7984,1,"BERLAND CAFE RAFFIN",45.428992,5.780319,,1,,Europe/Paris,,O38, +O38:SA:CTP7986,1,"RICHERD ET MARAIS POSTE GAZ",45.420315,5.770563,,1,,Europe/Paris,,O38, +O38:SA:CTP7988,1,"LE CHATELARD",45.430804,5.794515,,1,,Europe/Paris,,O38, +O38:SA:CTP7990,1,"LES BLANCHES",45.430006,5.783859,,1,,Europe/Paris,,O38, +O38:SA:CTP7992,1,"BERLAND EGLISE",45.429485,5.777502,,1,,Europe/Paris,,O38, +O38:SA:CTP7994,1,"LA RICHARDIERE",45.425463,5.774571,,1,,Europe/Paris,,O38, +O38:SA:CTP7996,1,"LA ROSETTE",45.414193,5.749913,,1,,Europe/Paris,,O38, +O38:SA:CTP7998,1,"LES ANDRES",45.449682,5.766414,,1,,Europe/Paris,,O38, +O38:SA:CTP7999,1,"LE COTTERG",45.440231,5.758682,,1,,Europe/Paris,,O38, +O38:SA:CTP800,1,"LES DORAS",44.927772,5.968028,,1,,Europe/Paris,,O38, +O38:SA:CTP8001,1,"LE PLANEY",45.417566,5.819074,,1,,Europe/Paris,,O38, +O38:SA:CTP8003,1,"LES SERMES",45.420282,5.82587,,1,,Europe/Paris,,O38, +O38:SA:CTP8005,1,"ECOLE PRIMAIRE BOURG",45.417092,5.851357,,1,,Europe/Paris,,O38, +O38:SA:CTP8007,1,"MAIRIE",45.415426,5.853822,,1,,Europe/Paris,,O38, +O38:SA:CTP8009,1,"LE GRAND CHENEVEY",45.404375,5.856518,,1,,Europe/Paris,,O38, +O38:SA:CTP8011,1,"ROUTE DU CHATEAU",45.411439,5.842434,,1,,Europe/Paris,,O38, +O38:SA:CTP8012,1,"LE CHATEAU",45.413647,5.837766,,1,,Europe/Paris,,O38, +O38:SA:CTP8013,1,"LES BAS-MAISON BOUVET",45.405058,5.840503,,1,,Europe/Paris,,O38, +O38:SA:CTP8014,1,"LE PETIT CHENEVEY",45.407093,5.857457,,1,,Europe/Paris,,O38, +O38:SA:CTP8021,1,"PONT DE LA GACHE",45.434742,6.001424,,1,,Europe/Paris,,O38, +O38:SA:CTP804,1,"COLLEGE LA CHAPELLE",44.964782,5.414447,,1,,Europe/Paris,,O38, +O38:SA:CTP8047,1,"LES GRANGES",45.402026,5.979226,,1,,Europe/Paris,,O38, +O38:SA:CTP806,1,"CHATEAU-BERNARD",44.974925,5.576248,,1,,Europe/Paris,,O38, +O38:SA:CTP808,1,"MORINAIRE",44.971865,5.574164,,1,,Europe/Paris,,O38, +O38:SA:CTP810,1,"PUY GRIMAUD",44.980167,5.581041,,1,,Europe/Paris,,O38, +O38:SA:CTP812,1,"LES MARCEAUX",44.963151,5.65113,,1,,Europe/Paris,,O38, +O38:SA:CTP814,1,"LES GAILLARDONS",44.968804,5.648674,,1,,Europe/Paris,,O38, +O38:SA:CTP817,1,"GUERIPEL",44.965433,5.64777,,1,,Europe/Paris,,O38, +O38:SA:CTP819,1,"LE VILLAGE",44.974728,5.620922,,1,,Europe/Paris,,O38, +O38:SA:CTP823,1,"LE VERNAY",44.970087,5.608555,,1,,Europe/Paris,,O38, +O38:SA:CTP8257,1,"ECOLE DE VAUGRIS",45.490161,4.829878,,1,,Europe/Paris,,O38, +O38:SA:CTP8259,1,"SNACK RN7",45.495312,4.836074,,1,,Europe/Paris,,O38, +O38:SA:CTP826,1,"CASSOULET",44.979971,5.622207,,1,,Europe/Paris,,O38, +O38:SA:CTP8262,1,"LAVOIR RN7",45.478892,4.829459,,1,,Europe/Paris,,O38, +O38:SA:CTP8265,1,"GARE ROUTIERE",45.520556,4.870071,,1,,Europe/Paris,,O38, +O38:SA:CTP8271,1,"NOUVELLE GARE ROUTIERE",45.518765,4.870902,,1,,Europe/Paris,,O38, +O38:SA:CTP8287,1,"PLACE PICHAT",45.524247,4.870791,,1,,Europe/Paris,,O38, +O38:SA:CTP8291,1,"LA ROSIERE ECOLE",45.493281,4.942045,,1,,Europe/Paris,,O38, +O38:SA:CTP8294,1,"TABOURETTE ROUTIER",45.515736,4.936574,,1,,Europe/Paris,,O38, +O38:SA:CTP8302,1,"LE LOGIS NEUF",45.512062,4.957374,,1,,Europe/Paris,,O38, +O38:SA:CTP8310,1,"LE CHAMBOUD",45.480859,4.960869,,1,,Europe/Paris,,O38, +O38:SA:CTP8314,1,"LE JULIEN",45.511287,5.009288,,1,,Europe/Paris,,O38, +O38:SA:CTP8320,1,"LA MARAUQUE-LE COLAS",45.479621,4.989024,,1,,Europe/Paris,,O38, +O38:SA:CTP833,1,"LA MORTE",44.959689,5.650776,,1,,Europe/Paris,,O38, +O38:SA:CTP8339,1,"LA REPUBLIQUE",45.507695,4.978843,,1,,Europe/Paris,,O38, +O38:SA:CTP835,1,"LE COLLET",44.944909,5.645599,,1,,Europe/Paris,,O38, +O38:SA:CTP8359,1,"LE VILLAGE",45.516645,4.964573,,1,,Europe/Paris,,O38, +O38:SA:CTP8362,1,"LES GRANGES",45.510997,5.005163,,1,,Europe/Paris,,O38, +O38:SA:CTP837,1,"LE VILLAGE",44.955461,5.588288,,1,,Europe/Paris,,O38, +O38:SA:CTP8371,1,"PLACE",45.517424,5.078655,,1,,Europe/Paris,,O38, +O38:SA:CTP8373,1,"LES PEYTIERES",45.512499,5.08253,,1,,Europe/Paris,,O38, +O38:SA:CTP8375,1,"LOTISSEMENT",45.509744,5.083832,,1,,Europe/Paris,,O38, +O38:SA:CTP8378,1,"LA DETOURBE-LE ROUTIER",45.495109,5.045085,,1,,Europe/Paris,,O38, +O38:SA:CTP8380,1,"LA PLACE",45.512197,5.016214,,1,,Europe/Paris,,O38, +O38:SA:CTP839,1,"PRECLOT",44.941789,5.607698,,1,,Europe/Paris,,O38, +O38:SA:CTP8396,1,"SAVAS AIRE DE JEUX",45.505823,5.06065,,1,,Europe/Paris,,O38, +O38:SA:CTP8400,1,"SAVAS",45.5043,5.061693,,1,,Europe/Paris,,O38, +O38:SA:CTP8402,1,"MEPIN ECOLE",45.49158,5.069694,,1,,Europe/Paris,,O38, +O38:SA:CTP8404,1,"SAVAS - MI-PLAINE",45.497764,5.075345,,1,,Europe/Paris,,O38, +O38:SA:CTP8406,1,"LE FAYET",45.487213,5.057892,,1,,Europe/Paris,,O38, +O38:SA:CTP8408,1,"MEPIN EGLISE",45.489409,5.073277,,1,,Europe/Paris,,O38, +O38:SA:CTP841,1,"LE MAS",44.951473,5.601689,,1,,Europe/Paris,,O38, +O38:SA:CTP8410,1,"MAIRIE",45.518709,5.077658,,1,,Europe/Paris,,O38, +O38:SA:CTP8412,1,"CLOS DE LA CAILLE",45.514287,5.073023,,1,,Europe/Paris,,O38, +O38:SA:CTP8415,1,"BOIS CHARON",45.486021,5.051809,,1,,Europe/Paris,,O38, +O38:SA:CTP8417,1,"LOT.LES 3 VALLEES",45.509674,5.083865,,1,,Europe/Paris,,O38, +O38:SA:CTP8419,1,"FERME PELLET",45.500445,5.089143,,1,,Europe/Paris,,O38, +O38:SA:CTP8423,1,"LES BROSSES",45.499062,5.089462,,1,,Europe/Paris,,O38, +O38:SA:CTP8425,1,"COLLEGE FERNAND BOUVIER",45.497265,5.142993,,1,,Europe/Paris,,O38, +O38:SA:CTP8427,1,"L'ESCALE RD.518",45.502746,5.127443,,1,,Europe/Paris,,O38, +O38:SA:CTP8429,1,"L'ESCALE",45.502309,5.127442,,1,,Europe/Paris,,O38, +O38:SA:CTP843,1,"MANINAIRE",44.944582,5.606194,,1,,Europe/Paris,,O38, +O38:SA:CTP8432,1,"LE CINEMA",45.500872,5.142717,,1,,Europe/Paris,,O38, +O38:SA:CTP8435,1,"GARAGE",45.50315,5.123291,,1,,Europe/Paris,,O38, +O38:SA:CTP8437,1,"RTE VIL. DE MARC",45.498906,5.134883,,1,,Europe/Paris,,O38, +O38:SA:CTP8440,1,"LE CHEVALLET",45.500285,5.10478,,1,,Europe/Paris,,O38, +O38:SA:CTP8442,1,"LES MONTS",45.471508,5.147267,,1,,Europe/Paris,,O38, +O38:SA:CTP8444,1,"PLACE L.MONTAGNAT",45.502379,5.142556,,1,,Europe/Paris,,O38, +O38:SA:CTP8446,1,"LE VILLAGE",45.504883,5.105864,,1,,Europe/Paris,,O38, +O38:SA:CTP8448,1,"LA RABATELLIERE",45.505366,5.096104,,1,,Europe/Paris,,O38, +O38:SA:CTP8450,1,"VERTEY",45.497889,5.096368,,1,,Europe/Paris,,O38, +O38:SA:CTP8451,1,"GARAGE FRANCON",45.500393,5.106052,,1,,Europe/Paris,,O38, +O38:SA:CTP8453,1,"LE PETIT BOIS",45.499905,5.099075,,1,,Europe/Paris,,O38, +O38:SA:CTP8455,1,"LE MIRAILLET",45.485651,5.135302,,1,,Europe/Paris,,O38, +O38:SA:CTP8457,1,"ECOLE JOANNES LACROIX",45.501239,5.139369,,1,,Europe/Paris,,O38, +O38:SA:CTP8459,1,"LE STADE",45.496492,5.141628,,1,,Europe/Paris,,O38, +O38:SA:CTP8463,1,"LA PISCINE",45.497305,5.140623,,1,,Europe/Paris,,O38, +O38:SA:CTP8464,1,"POYAT",45.479416,5.103353,,1,,Europe/Paris,,O38, +O38:SA:CTP8466,1,"LE PETIT MOUSSEY",45.484438,5.109442,,1,,Europe/Paris,,O38, +O38:SA:CTP8469,1,"BUFFEVENT",45.488316,5.126546,,1,,Europe/Paris,,O38, +O38:SA:CTP847,1,"PISCINE",44.948961,5.71824,,1,,Europe/Paris,,O38, +O38:SA:CTP8478,1,"MAISON HOULLIER",45.495737,5.091464,,1,,Europe/Paris,,O38, +O38:SA:CTP8480,1,"LES GASSOULIERES",45.494468,5.087433,,1,,Europe/Paris,,O38, +O38:SA:CTP8483,1,"PLACE",45.475095,5.102758,,1,,Europe/Paris,,O38, +O38:SA:CTP8489,1,"LE GEVRIER",45.48563,5.11393,,1,,Europe/Paris,,O38, +O38:SA:CTP849,1,"ECOLE PRIMAIRE",44.959196,5.656768,,1,,Europe/Paris,,O38, +O38:SA:CTP8490,1,"MEPIN RECULAS",45.493964,5.085832,,1,,Europe/Paris,,O38, +O38:SA:CTP8492,1,"RUE DU 8 MAI",45.485651,5.212583,,1,,Europe/Paris,,O38, +O38:SA:CTP8494,1,"LES BROSSES",45.494448,5.191059,,1,,Europe/Paris,,O38, +O38:SA:CTP8496,1,"LOT. LA COLLINE",45.490775,5.201004,,1,,Europe/Paris,,O38, +O38:SA:CTP8498,1,"EGLISE",45.486685,5.210126,,1,,Europe/Paris,,O38, +O38:SA:CTP8500,1,"PLACE DE LA GARE",45.487557,5.203091,,1,,Europe/Paris,,O38, +O38:SA:CTP8502,1,"LES BOUVARATIERES",45.499099,5.203351,,1,,Europe/Paris,,O38, +O38:SA:CTP8504,1,"STADE",45.51471,5.200364,,1,,Europe/Paris,,O38, +O38:SA:CTP8506,1,"CHEVRON",45.511157,5.204155,,1,,Europe/Paris,,O38, +O38:SA:CTP8508,1,"MONTJOUX ETANG",45.50819,5.166688,,1,,Europe/Paris,,O38, +O38:SA:CTP851,1,"LA VILLE",44.966335,5.700858,,1,,Europe/Paris,,O38, +O38:SA:CTP8510,1,"MENON",45.515615,5.210576,,1,,Europe/Paris,,O38, +O38:SA:CTP8512,1,"LANGOUVERT",45.512678,5.192322,,1,,Europe/Paris,,O38, +O38:SA:CTP8514,1,"COTE DU DROGUET",45.510492,5.182012,,1,,Europe/Paris,,O38, +O38:SA:CTP8516,1,"LES BIESSES",45.50199,5.173472,,1,,Europe/Paris,,O38, +O38:SA:CTP8521,1,"H.L.M. LA BARRE",45.502038,5.149748,,1,,Europe/Paris,,O38, +O38:SA:CTP8524,1,"MONTJOUX",45.509045,5.175051,,1,,Europe/Paris,,O38, +O38:SA:CTP8526,1,"LE BAILLY",45.503378,5.209453,,1,,Europe/Paris,,O38, +O38:SA:CTP8528,1,"LE FONTANIL",45.478387,5.235053,,1,,Europe/Paris,,O38, +O38:SA:CTP853,1,"LES RAUX",44.957029,5.709267,,1,,Europe/Paris,,O38, +O38:SA:CTP8530,1,"LES ROBINS",45.476269,5.24352,,1,,Europe/Paris,,O38, +O38:SA:CTP8532,1,"SAINT-CHRISTOPHE",45.482641,5.217426,,1,,Europe/Paris,,O38, +O38:SA:CTP8534,1,"MAISON SERLIN",45.481189,5.24812,,1,,Europe/Paris,,O38, +O38:SA:CTP8536,1,"LES EFFEUILLERS",45.472247,5.273011,,1,,Europe/Paris,,O38, +O38:SA:CTP8540,1,"LE BAS MOLLARD",45.487211,5.267246,,1,,Europe/Paris,,O38, +O38:SA:CTP8542,1,"LA BATIE",45.475221,5.254627,,1,,Europe/Paris,,O38, +O38:SA:CTP8544,1,"LA VOLLANDIERE",45.484334,5.248492,,1,,Europe/Paris,,O38, +O38:SA:CTP8546,1,"MAISON DOUCELIN",45.484558,5.264706,,1,,Europe/Paris,,O38, +O38:SA:CTP8548,1,"CROIS.LA BATIE",45.475334,5.260618,,1,,Europe/Paris,,O38, +O38:SA:CTP855,1,"LE VILLAGE",44.981315,5.656406,,1,,Europe/Paris,,O38, +O38:SA:CTP8550,1,"LE HAUT MOLLARD",45.483458,5.263229,,1,,Europe/Paris,,O38, +O38:SA:CTP8552,1,"LE MOLLARD-ECOLE",45.479831,5.253754,,1,,Europe/Paris,,O38, +O38:SA:CTP8554,1,"LE PELLET-ABRIBUS",45.491596,5.237377,,1,,Europe/Paris,,O38, +O38:SA:CTP8556,1,"HAMEAU LE GINET",45.48995,5.231409,,1,,Europe/Paris,,O38, +O38:SA:CTP8558,1,"BOURG",45.499012,5.233216,,1,,Europe/Paris,,O38, +O38:SA:CTP8560,1,"LA MOLLIERE",45.506344,5.256725,,1,,Europe/Paris,,O38, +O38:SA:CTP8562,1,"LES CHATAIGNIERS",45.502177,5.249026,,1,,Europe/Paris,,O38, +O38:SA:CTP8564,1,"LE DOUILLET",45.496818,5.243604,,1,,Europe/Paris,,O38, +O38:SA:CTP8566,1,"LES ROLES",45.51656,5.239299,,1,,Europe/Paris,,O38, +O38:SA:CTP8567,1,"LE FRANCHISSON",45.511637,5.328976,,1,,Europe/Paris,,O38, +O38:SA:CTP857,1,"LES BLAIS - ECOLE",44.9767,5.703954,,1,,Europe/Paris,,O38, +O38:SA:CTP8570,1,"LA PLACE",45.502014,5.302282,,1,,Europe/Paris,,O38, +O38:SA:CTP8573,1,"LE TRAMOLE",45.485002,5.293315,,1,,Europe/Paris,,O38, +O38:SA:CTP8575,1,"CENTRE",45.46967,5.313986,,1,,Europe/Paris,,O38, +O38:SA:CTP8577,1,"LE PILON",45.468348,5.321246,,1,,Europe/Paris,,O38, +O38:SA:CTP8580,1,"MAIRIE",45.508151,5.303116,,1,,Europe/Paris,,O38, +O38:SA:CTP8584,1,"LE VILLAGE",45.498319,5.300901,,1,,Europe/Paris,,O38, +O38:SA:CTP8589,1,"LE FERRAND",45.496003,5.365886,,1,,Europe/Paris,,O38, +O38:SA:CTP859,1,"LA CROIX DE PORTIER",44.94949,5.655089,,1,,Europe/Paris,,O38, +O38:SA:CTP8591,1,"EGLISE",45.497572,5.366656,,1,,Europe/Paris,,O38, +O38:SA:CTP8593,1,"LES ARENDEAUX",45.503103,5.368036,,1,,Europe/Paris,,O38, +O38:SA:CTP8595,1,"PLACE DU TRIEVE",45.503584,5.417682,,1,,Europe/Paris,,O38, +O38:SA:CTP8597,1,"LES HALLES",45.490907,5.387215,,1,,Europe/Paris,,O38, +O38:SA:CTP8599,1,"ST ROMAIN",45.488788,5.363938,,1,,Europe/Paris,,O38, +O38:SA:CTP8601,1,"LE RAPOUX",45.508108,5.370364,,1,,Europe/Paris,,O38, +O38:SA:CTP8603,1,"CAFE CALLOUD",45.485108,5.364398,,1,,Europe/Paris,,O38, +O38:SA:CTP8605,1,"CAFE BONVALLET",45.47442,5.364571,,1,,Europe/Paris,,O38, +O38:SA:CTP8607,1,"LE POULARD-GARAGE DEBIEZ",45.484002,5.399346,,1,,Europe/Paris,,O38, +O38:SA:CTP8609,1,"LE MOIROUD",45.470802,5.356919,,1,,Europe/Paris,,O38, +O38:SA:CTP861,1,"LES FAURIES",44.934687,5.65047,,1,,Europe/Paris,,O38, +O38:SA:CTP8611,1,"GROUPE LE BROCARD",45.497915,5.366559,,1,,Europe/Paris,,O38, +O38:SA:CTP8613,1,"GROUPE ST-EXUPERY",45.491879,5.38527,,1,,Europe/Paris,,O38, +O38:SA:CTP8615,1,"EGLISE",45.498126,5.482878,,1,,Europe/Paris,,O38, +O38:SA:CTP8617,1,"LE LUTEAU-CROIX",45.498797,5.445182,,1,,Europe/Paris,,O38, +O38:SA:CTP8619,1,"LES SERVES",45.466708,5.423544,,1,,Europe/Paris,,O38, +O38:SA:CTP8621,1,"LES RIPEAUX",45.472401,5.43388,,1,,Europe/Paris,,O38, +O38:SA:CTP8623,1,"EYNOUD",45.507316,5.446566,,1,,Europe/Paris,,O38, +O38:SA:CTP8624,1,"LE ROUSSET",45.489508,5.432766,,1,,Europe/Paris,,O38, +O38:SA:CTP8626,1,"PASSAGE A NIVEAU",45.490777,5.470363,,1,,Europe/Paris,,O38, +O38:SA:CTP8628,1,"MAIRIE",45.493614,5.463529,,1,,Europe/Paris,,O38, +O38:SA:CTP863,1,"ECOLES MAT/PRIM.",44.982661,5.658332,,1,,Europe/Paris,,O38, +O38:SA:CTP8630,1,"SARAPIN",45.498387,5.464436,,1,,Europe/Paris,,O38, +O38:SA:CTP8632,1,"PLACE CLAVEL",45.484857,5.475279,,1,,Europe/Paris,,O38, +O38:SA:CTP8636,1,"GROUPE SCOLAIRE",45.481711,5.469542,,1,,Europe/Paris,,O38, +O38:SA:CTP8638,1,"EGLISE",45.47022,5.44791,,1,,Europe/Paris,,O38, +O38:SA:CTP8640,1,"LA GUINGUETTE",45.488537,5.473836,,1,,Europe/Paris,,O38, +O38:SA:CTP8642,1,"MALLEIN RD 73",45.466101,5.455294,,1,,Europe/Paris,,O38, +O38:SA:CTP8644,1,"RUE DU CHAMP DE MARS",45.484265,5.476932,,1,,Europe/Paris,,O38, +O38:SA:CTP8646,1,"LE GRAND BLANDIN",45.479173,5.454994,,1,,Europe/Paris,,O38, +O38:SA:CTP8648,1,"CHATEAU L'EPINAY",45.48556,5.453266,,1,,Europe/Paris,,O38, +O38:SA:CTP8651,1,"CIMETIERE",45.4728,5.449705,,1,,Europe/Paris,,O38, +O38:SA:CTP8652,1,"PHARMACIE",45.483691,5.473375,,1,,Europe/Paris,,O38, +O38:SA:CTP8654,1,"LE GICLAS",45.487043,5.466692,,1,,Europe/Paris,,O38, +O38:SA:CTP8656,1,"LA RABATELIERE",45.490314,5.455031,,1,,Europe/Paris,,O38, +O38:SA:CTP8658,1,"VIRAGE DU VILLAGE",45.499732,5.500094,,1,,Europe/Paris,,O38, +O38:SA:CTP8660,1,"EGLISE",45.500446,5.504057,,1,,Europe/Paris,,O38, +O38:SA:CTP8662,1,"MAISON GUTTIN",45.501389,5.498461,,1,,Europe/Paris,,O38, +O38:SA:CTP8664,1,"PONT DES PIERRES",45.504491,5.490052,,1,,Europe/Paris,,O38, +O38:SA:CTP8666,1,"CROISEMENT MACONIN",45.506356,5.510105,,1,,Europe/Paris,,O38, +O38:SA:CTP8669,1,"LE MARAIS",45.493422,5.52854,,1,,Europe/Paris,,O38, +O38:SA:CTP867,1,"LES RIPEAUX",44.980924,5.703441,,1,,Europe/Paris,,O38, +O38:SA:CTP8672,1,"SALLE DES FETES",45.498104,5.539637,,1,,Europe/Paris,,O38, +O38:SA:CTP8674,1,"CARREFOUR MARCELAS",45.4979,5.529124,,1,,Europe/Paris,,O38, +O38:SA:CTP8680,1,"JALAMION",45.498527,5.587899,,1,,Europe/Paris,,O38, +O38:SA:CTP8683,1,"LA CHARRIERE",45.496276,5.609524,,1,,Europe/Paris,,O38, +O38:SA:CTP8685,1,"FOND DE CHARRIERE",45.492751,5.613526,,1,,Europe/Paris,,O38, +O38:SA:CTP869,1,"LES DOURCHES",44.941974,5.655374,,1,,Europe/Paris,,O38, +O38:SA:CTP8699,1,"LES ETRAITS",45.502328,5.593205,,1,,Europe/Paris,,O38, +O38:SA:CTP8702,1,"TRIPIER",45.473351,5.566163,,1,,Europe/Paris,,O38, +O38:SA:CTP8706,1,"BEGENSIERE",45.500805,5.606018,,1,,Europe/Paris,,O38, +O38:SA:CTP871,1,"TREFFORT-CROIX",44.947407,5.718821,,1,,Europe/Paris,,O38, +O38:SA:CTP8712,1,"HAMEAU LE CLOU",45.490705,5.615287,,1,,Europe/Paris,,O38, +O38:SA:CTP8719,1,"PALADRU STADE",45.483952,5.567596,,1,,Europe/Paris,,O38, +O38:SA:CTP8723,1,"VERRONIERE",45.466685,5.557607,,1,,Europe/Paris,,O38, +O38:SA:CTP873,1,"LA MOLIERE-ECOLE",44.949764,5.717417,,1,,Europe/Paris,,O38, +O38:SA:CTP8737,1,"LA PLATIERE",45.479985,5.615709,,1,,Europe/Paris,,O38, +O38:SA:CTP875,1,"ECOLE PRIMAIRE",44.94672,5.658624,,1,,Europe/Paris,,O38, +O38:SA:CTP8758,1,"LA MARTINETTE",45.45996,5.641781,,1,,Europe/Paris,,O38, +O38:SA:CTP8765,1,"L'ORCIERE",45.478801,5.623573,,1,,Europe/Paris,,O38, +O38:SA:CTP8768,1,"LA RAMELIERE",45.494225,5.63115,,1,,Europe/Paris,,O38, +O38:SA:CTP877,1,"LE VIVIER",44.956219,5.716507,,1,,Europe/Paris,,O38, +O38:SA:CTP8772,1,"GRAND VELANNE",45.494624,5.645527,,1,,Europe/Paris,,O38, +O38:SA:CTP8775,1,"BASSAROT",45.481951,5.655898,,1,,Europe/Paris,,O38, +O38:SA:CTP8777,1,"LE VIEUX ST JEAN",45.498478,5.668533,,1,,Europe/Paris,,O38, +O38:SA:CTP8779,1,"PLAMPALAIS HOPITAL",45.459213,5.632025,,1,,Europe/Paris,,O38, +O38:SA:CTP8781,1,"VILLAGE",45.493708,5.682614,,1,,Europe/Paris,,O38, +O38:SA:CTP8784,1,"LE DONNAT",45.469627,5.670348,,1,,Europe/Paris,,O38, +O38:SA:CTP8786,1,"LA CROIX",45.497383,5.682879,,1,,Europe/Paris,,O38, +O38:SA:CTP879,1,"EGLISE",44.945226,5.656058,,1,,Europe/Paris,,O38, +O38:SA:CTP8791,1,"LE PERRIER",45.467536,5.681039,,1,,Europe/Paris,,O38, +O38:SA:CTP8793,1,"LA ROCHE",45.475772,5.680865,,1,,Europe/Paris,,O38, +O38:SA:CTP8798,1,"CHAMPET",45.465136,5.650409,,1,,Europe/Paris,,O38, +O38:SA:CTP8806,1,"LA PALE",45.467234,5.660477,,1,,Europe/Paris,,O38, +O38:SA:CTP8809,1,"LE BLETINET",45.502743,5.677942,,1,,Europe/Paris,,O38, +O38:SA:CTP881,1,"LES JEANNOTS",44.973375,5.703924,,1,,Europe/Paris,,O38, +O38:SA:CTP8816,1,"LA SAUGE",45.48198,5.658182,,1,,Europe/Paris,,O38, +O38:SA:CTP8821,1,"EGLISE",45.494397,5.67811,,1,,Europe/Paris,,O38, +O38:SA:CTP8824,1,"LA GLACIERE",45.463502,5.631569,,1,,Europe/Paris,,O38, +O38:SA:CTP8829,1,"LE CRE",45.456125,5.705083,,1,,Europe/Paris,,O38, +O38:SA:CTP883,1,"LES COTES",44.946887,5.710797,,1,,Europe/Paris,,O38, +O38:SA:CTP8834,1,"RD82",45.480447,5.691039,,1,,Europe/Paris,,O38, +O38:SA:CTP8837,1,"LE LANET",45.502199,5.695649,,1,,Europe/Paris,,O38, +O38:SA:CTP8839,1,"ECOLE LA MONTAGNE",45.461511,5.714573,,1,,Europe/Paris,,O38, +O38:SA:CTP8841,1,"LA MONTAGNE DESSUS",45.461797,5.711185,,1,,Europe/Paris,,O38, +O38:SA:CTP8842,1,"CHEZ MUSY",45.492049,5.691686,,1,,Europe/Paris,,O38, +O38:SA:CTP885,1,"LESPINASSE",44.962681,5.775835,,1,,Europe/Paris,,O38, +O38:SA:CTP8850,1,"LA BUQUINIERE",45.492858,5.70632,,1,,Europe/Paris,,O38, +O38:SA:CTP8852,1,"LA SATRE",45.471681,5.688315,,1,,Europe/Paris,,O38, +O38:SA:CTP8854,1,"LA BRANCHAT",45.491651,5.694959,,1,,Europe/Paris,,O38, +O38:SA:CTP8856,1,"EGLISE",45.48444,5.71019,,1,,Europe/Paris,,O38, +O38:SA:CTP8863,1,"LA ROUSSIERE",45.496641,5.688059,,1,,Europe/Paris,,O38, +O38:SA:CTP8866,1,"VERCHERE",45.485618,5.70614,,1,,Europe/Paris,,O38, +O38:SA:CTP887,1,"SER SIGAUD",44.943615,5.780032,,1,,Europe/Paris,,O38, +O38:SA:CTP8870,1,"MAISON GALLIN",45.472629,5.694142,,1,,Europe/Paris,,O38, +O38:SA:CTP8873,1,"SOUS LE MONT",45.477643,5.701373,,1,,Europe/Paris,,O38, +O38:SA:CTP8876,1,"LE FOYER MUNICIPAL",45.477201,5.690063,,1,,Europe/Paris,,O38, +O38:SA:CTP8879,1,"BANDE DESSOUS",45.455403,5.780251,,1,,Europe/Paris,,O38, +O38:SA:CTP8881,1,"COL DE COUZ",45.470342,5.818725,,1,,Europe/Paris,,O38, +O38:SA:CTP8883,1,"COTE BARRIER",45.46029,5.8107,,1,,Europe/Paris,,O38, +O38:SA:CTP8885,1,"LES GROS LOUIS",45.484129,5.833343,,1,,Europe/Paris,,O38, +O38:SA:CTP8887,1,"LES MARTINS",45.478579,5.829685,,1,,Europe/Paris,,O38, +O38:SA:CTP889,1,"LE MOLLARD",44.963716,5.721313,,1,,Europe/Paris,,O38, +O38:SA:CTP8898,1,"LA GARE",45.467701,5.989566,,1,,Europe/Paris,,O38, +O38:SA:CTP8906,1,"CERNON",45.45972,5.994973,,1,,Europe/Paris,,O38, +O38:SA:CTP891,1,"PEROUZAT",44.949688,5.779082,,1,,Europe/Paris,,O38, +O38:SA:CTP8917,1,"L'ETRAZ",45.471222,5.989011,,1,,Europe/Paris,,O38, +O38:SA:CTP893,1,"LA FESTINIERE",44.953347,5.754857,,1,,Europe/Paris,,O38, +O38:SA:CTP895,1,"BAYARDIERE",44.950511,5.719754,,1,,Europe/Paris,,O38, +O38:SA:CTP8954,1,"MONTEE BON ACCUEIL",45.543383,4.866576,,1,,Europe/Paris,,O38, +O38:SA:CTP8958,1,"COLLEGE GRANGE",45.54751,4.863616,,1,,Europe/Paris,,O38, +O38:SA:CTP8986,1,"GROTTE",45.554888,4.947962,,1,,Europe/Paris,,O38, +O38:SA:CTP899,1,"LA FAURIE",44.95931,5.725713,,1,,Europe/Paris,,O38, +O38:SA:CTP901,1,"LES BUTTARIAS",44.959867,5.73166,,1,,Europe/Paris,,O38, +O38:SA:CTP9012,1,"LE BIELOIS",45.567288,5.008941,,1,,Europe/Paris,,O38, +O38:SA:CTP9014,1,"PEAGE DE OYTIER",45.565348,5.003382,,1,,Europe/Paris,,O38, +O38:SA:CTP9016,1,"LE PAVY-BONNON",45.556377,5.014773,,1,,Europe/Paris,,O38, +O38:SA:CTP9019,1,"PLACE",45.55293,5.004351,,1,,Europe/Paris,,O38, +O38:SA:CTP9023,1,"SUBTUER",45.552489,4.982653,,1,,Europe/Paris,,O38, +O38:SA:CTP9027,1,"BARATON",45.549242,4.96238,,1,,Europe/Paris,,O38, +O38:SA:CTP903,1,"LA GARE",44.961613,5.736888,,1,,Europe/Paris,,O38, +O38:SA:CTP9031,1,"PEAGE STATION AGIP",45.564013,4.99529,,1,,Europe/Paris,,O38, +O38:SA:CTP9037,1,"AVANT LE PALAIS",45.551535,4.974661,,1,,Europe/Paris,,O38, +O38:SA:CTP9041,1,"SOUS COTE",45.56145,4.98041,,1,,Europe/Paris,,O38, +O38:SA:CTP9047,1,"ROUTE DE LUZINAY",45.557218,4.955193,,1,,Europe/Paris,,O38, +O38:SA:CTP905,1,"COMBEFOLLE",44.96506,5.729456,,1,,Europe/Paris,,O38, +O38:SA:CTP9051,1,"LE PEAGE",45.564378,4.998254,,1,,Europe/Paris,,O38, +O38:SA:CTP9054,1,"OYTIER - LA PLACE",45.562056,5.021158,,1,,Europe/Paris,,O38, +O38:SA:CTP9058,1,"LA FOURNACHE",45.567383,5.026316,,1,,Europe/Paris,,O38, +O38:SA:CTP9060,1,"LA PRINCIERE",45.559172,5.078522,,1,,Europe/Paris,,O38, +O38:SA:CTP9062,1,"LE BERTHOLON STADE",45.56223,5.019168,,1,,Europe/Paris,,O38, +O38:SA:CTP9063,1,"VILLAGE",45.555619,5.080284,,1,,Europe/Paris,,O38, +O38:SA:CTP9065,1,"CENTRE EQUESTRE",45.544211,5.059534,,1,,Europe/Paris,,O38, +O38:SA:CTP9067,1,"LE REVOIREAU",45.544536,5.053283,,1,,Europe/Paris,,O38, +O38:SA:CTP9069,1,"GORGES",45.545276,5.030006,,1,,Europe/Paris,,O38, +O38:SA:CTP907,1,"LA ROCHE",44.960548,5.746295,,1,,Europe/Paris,,O38, +O38:SA:CTP9071,1,"CHEZ MARET",45.540203,5.031996,,1,,Europe/Paris,,O38, +O38:SA:CTP9073,1,"CHATEAU D'EAU",45.535852,5.037031,,1,,Europe/Paris,,O38, +O38:SA:CTP9075,1,"LE SERVANIN",45.542631,5.04698,,1,,Europe/Paris,,O38, +O38:SA:CTP9077,1,"RANGUILLON",45.552193,5.02451,,1,,Europe/Paris,,O38, +O38:SA:CTP9081,1,"LE COLOMBIER",45.524987,5.084513,,1,,Europe/Paris,,O38, +O38:SA:CTP9083,1,"MAISON NACQUIN",45.550625,5.147912,,1,,Europe/Paris,,O38, +O38:SA:CTP9085,1,"LE PLAN-ANCIEN MOULIN",45.531744,5.108685,,1,,Europe/Paris,,O38, +O38:SA:CTP9087,1,"LES EPYES",45.534928,5.113264,,1,,Europe/Paris,,O38, +O38:SA:CTP9089,1,"USINE DOUILLET",45.533086,5.121759,,1,,Europe/Paris,,O38, +O38:SA:CTP909,1,"LE VILLARD-ECOLE",44.967231,5.738289,,1,,Europe/Paris,,O38, +O38:SA:CTP9091,1,"MAISON TURILLE",45.535348,5.12881,,1,,Europe/Paris,,O38, +O38:SA:CTP9093,1,"LES CLAVELIERES",45.540746,5.101064,,1,,Europe/Paris,,O38, +O38:SA:CTP9095,1,"VILLAGE",45.53768,5.105183,,1,,Europe/Paris,,O38, +O38:SA:CTP9097,1,"LA FARFATIERE",45.537592,5.143433,,1,,Europe/Paris,,O38, +O38:SA:CTP9099,1,"LE BARROZ",45.548256,5.139627,,1,,Europe/Paris,,O38, +O38:SA:CTP9101,1,"ROUTE DE CHASSE",45.532265,5.08862,,1,,Europe/Paris,,O38, +O38:SA:CTP9105,1,"CHEZ MATHILDE",45.560002,5.146421,,1,,Europe/Paris,,O38, +O38:SA:CTP9107,1,"L'AMBALLON",45.548268,5.094287,,1,,Europe/Paris,,O38, +O38:SA:CTP9109,1,"LES AYES",45.561003,5.0951,,1,,Europe/Paris,,O38, +O38:SA:CTP911,1,"STATION SERVICE",44.958113,5.777296,,1,,Europe/Paris,,O38, +O38:SA:CTP9111,1,"COLLEGE DE PERANCHE",45.554911,5.0852,,1,,Europe/Paris,,O38, +O38:SA:CTP9113,1,"CHARLET",45.534999,5.10484,,1,,Europe/Paris,,O38, +O38:SA:CTP9115,1,"JACQUERON",45.559858,5.125471,,1,,Europe/Paris,,O38, +O38:SA:CTP9117,1,"PARKING COLLEGE DE PERANCHE",45.554834,5.085227,,1,,Europe/Paris,,O38, +O38:SA:CTP9119,1,"LE RAFFET",45.518286,5.211218,,1,,Europe/Paris,,O38, +O38:SA:CTP9122,1,"LA CHARPE",45.548179,5.209593,,1,,Europe/Paris,,O38, +O38:SA:CTP9129,1,"PLACE DU 8 MAI",45.536109,5.165562,,1,,Europe/Paris,,O38, +O38:SA:CTP913,1,"PEYCHAGNARD",44.935765,5.763615,,1,,Europe/Paris,,O38, +O38:SA:CTP9131,1,"TARNEZIEU",45.542912,5.201154,,1,,Europe/Paris,,O38, +O38:SA:CTP9133,1,"L'ABERAY",45.5316,5.155954,,1,,Europe/Paris,,O38, +O38:SA:CTP9135,1,"LA PETITE FORET 2",45.53512,5.184769,,1,,Europe/Paris,,O38, +O38:SA:CTP9139,1,"LA VERNE",45.541914,5.190514,,1,,Europe/Paris,,O38, +O38:SA:CTP9141,1,"LE REVOLLET",45.539147,5.147918,,1,,Europe/Paris,,O38, +O38:SA:CTP9143,1,"LA PETITE FORET",45.533759,5.18419,,1,,Europe/Paris,,O38, +O38:SA:CTP9147,1,"STADE",45.540169,5.156252,,1,,Europe/Paris,,O38, +O38:SA:CTP9149,1,"LES BEAUX/LA CROIX",45.563221,5.171111,,1,,Europe/Paris,,O38, +O38:SA:CTP915,1,"LES BETHOUX",44.956362,5.726288,,1,,Europe/Paris,,O38, +O38:SA:CTP9151,1,"LA GRANDE FORET",45.548446,5.186614,,1,,Europe/Paris,,O38, +O38:SA:CTP9156,1,"MALASSIN",45.554904,5.214163,,1,,Europe/Paris,,O38, +O38:SA:CTP9159,1,"LA GRANDE FORET 2",45.547998,5.178761,,1,,Europe/Paris,,O38, +O38:SA:CTP9161,1,"FOURNEAT",45.564495,5.160069,,1,,Europe/Paris,,O38, +O38:SA:CTP9163,1,"HAMEAU LES BEAUX",45.56353,5.183581,,1,,Europe/Paris,,O38, +O38:SA:CTP9166,1,"LA RIVOIRE",45.56158,5.283557,,1,,Europe/Paris,,O38, +O38:SA:CTP9169,1,"LE MOULE-CAFE",45.547337,5.251696,,1,,Europe/Paris,,O38, +O38:SA:CTP917,1,"LE CREY",44.941409,5.764341,,1,,Europe/Paris,,O38, +O38:SA:CTP9172,1,"LA PLACE",45.549195,5.223396,,1,,Europe/Paris,,O38, +O38:SA:CTP9176,1,"EGLISE",45.550822,5.229055,,1,,Europe/Paris,,O38, +O38:SA:CTP9183,1,"LA BARRE",45.555526,5.2798,,1,,Europe/Paris,,O38, +O38:SA:CTP9186,1,"BARRACAND",45.526867,5.259488,,1,,Europe/Paris,,O38, +O38:SA:CTP9188,1,"BAGNEUX",45.529548,5.241561,,1,,Europe/Paris,,O38, +O38:SA:CTP919,1,"LE VERNAY",44.976922,5.744629,,1,,Europe/Paris,,O38, +O38:SA:CTP9192,1,"ENTREE BOURG",45.520938,5.250217,,1,,Europe/Paris,,O38, +O38:SA:CTP9196,1,"LES VIGNES",45.525789,5.246756,,1,,Europe/Paris,,O38, +O38:SA:CTP9198,1,"BOURG",45.524313,5.254504,,1,,Europe/Paris,,O38, +O38:SA:CTP9201,1,"LE GRAND PALEYSIN",45.558598,5.252155,,1,,Europe/Paris,,O38, +O38:SA:CTP9205,1,"ECOLE",45.515188,5.268671,,1,,Europe/Paris,,O38, +O38:SA:CTP9206,1,"CROIX CHEVALLIER",45.519506,5.26699,,1,,Europe/Paris,,O38, +O38:SA:CTP9209,1,"LA PLACE",45.561677,5.2224,,1,,Europe/Paris,,O38, +O38:SA:CTP921,1,"LE COLLET",44.948682,5.757919,,1,,Europe/Paris,,O38, +O38:SA:CTP9213,1,"LE PETIT PALEYSIN",45.557713,5.247517,,1,,Europe/Paris,,O38, +O38:SA:CTP9228,1,"MAIRIE",45.524647,5.252455,,1,,Europe/Paris,,O38, +O38:SA:CTP923,1,"LES ECURIES",44.965361,5.743022,,1,,Europe/Paris,,O38, +O38:SA:CTP9230,1,"LA MISERE",45.541326,5.251387,,1,,Europe/Paris,,O38, +O38:SA:CTP9232,1,"TRAMOLE",45.516516,5.267543,,1,,Europe/Paris,,O38, +O38:SA:CTP9234,1,"LE RAFFOUR",45.532024,5.22188,,1,,Europe/Paris,,O38, +O38:SA:CTP9236,1,"LE CHATENAY",45.538432,5.239889,,1,,Europe/Paris,,O38, +O38:SA:CTP9238,1,"ECOLE",45.540846,5.244075,,1,,Europe/Paris,,O38, +O38:SA:CTP9241,1,"CIMETIERE",45.550816,5.232443,,1,,Europe/Paris,,O38, +O38:SA:CTP9248,1,"MAIRIE",45.558704,5.28673,,1,,Europe/Paris,,O38, +O38:SA:CTP9257,1,"CAFE BONNET",45.517499,5.329863,,1,,Europe/Paris,,O38, +O38:SA:CTP9259,1,"LOTISSEMENT DU STADE",45.515141,5.329769,,1,,Europe/Paris,,O38, +O38:SA:CTP926,1,"MAIRIE",44.962008,5.744031,,1,,Europe/Paris,,O38, +O38:SA:CTP9262,1,"LA COMBE-RN.85",45.532309,5.308255,,1,,Europe/Paris,,O38, +O38:SA:CTP9273,1,"VERS NIVOLAS",45.559409,5.293321,,1,,Europe/Paris,,O38, +O38:SA:CTP9276,1,"ROUTE DE BIOL",45.539613,5.310272,,1,,Europe/Paris,,O38, +O38:SA:CTP9290,1,"VOLAND/PACHAUDIERE",45.519269,5.304575,,1,,Europe/Paris,,O38, +O38:SA:CTP9298,1,"LES MOIROUDS",45.557963,5.33761,,1,,Europe/Paris,,O38, +O38:SA:CTP930,1,"LES MOUTIERES",44.934907,5.771084,,1,,Europe/Paris,,O38, +O38:SA:CTP9302,1,"LA PLACE",45.556772,5.305935,,1,,Europe/Paris,,O38, +O38:SA:CTP9306,1,"BAS VERMELLE",45.560134,5.30424,,1,,Europe/Paris,,O38, +O38:SA:CTP9311,1,"PLACE",45.557668,5.343304,,1,,Europe/Paris,,O38, +O38:SA:CTP9314,1,"LES COLLOMBS",45.54839,5.342029,,1,,Europe/Paris,,O38, +O38:SA:CTP9316,1,"LE FICHAILLON",45.539852,5.341501,,1,,Europe/Paris,,O38, +O38:SA:CTP9318,1,"D.520 RTE DE SUCCIEU",45.527434,5.327248,,1,,Europe/Paris,,O38, +O38:SA:CTP932,1,"COLLEGE VALLON DES MOTTES",44.961369,5.743838,,1,,Europe/Paris,,O38, +O38:SA:CTP9320,1,"RTE DE BUFFIERES",45.533796,5.316988,,1,,Europe/Paris,,O38, +O38:SA:CTP9323,1,"LE GAPILLON",45.527836,5.351686,,1,,Europe/Paris,,O38, +O38:SA:CTP9325,1,"LES CURTETS",45.550886,5.307883,,1,,Europe/Paris,,O38, +O38:SA:CTP9329,1,"US.VOISIN PASCAL",45.546874,5.310082,,1,,Europe/Paris,,O38, +O38:SA:CTP9335,1,"PLACE",45.528214,5.339208,,1,,Europe/Paris,,O38, +O38:SA:CTP9336,1,"USINE",45.525191,5.342319,,1,,Europe/Paris,,O38, +O38:SA:CTP9338,1,"LE JAVET",45.529927,5.344832,,1,,Europe/Paris,,O38, +O38:SA:CTP9340,1,"QUINSONNAS",45.550749,5.324676,,1,,Europe/Paris,,O38, +O38:SA:CTP9342,1,"PATTON",45.532998,5.41755,,1,,Europe/Paris,,O38, +O38:SA:CTP9344,1,"EGLISE",45.541256,5.391917,,1,,Europe/Paris,,O38, +O38:SA:CTP9346,1,"MORNAS",45.549,5.386248,,1,,Europe/Paris,,O38, +O38:SA:CTP9348,1,"LA MOLETTE",45.532885,5.361333,,1,,Europe/Paris,,O38, +O38:SA:CTP9350,1,"CHEMIN DES DAMES",45.54557,5.374344,,1,,Europe/Paris,,O38, +O38:SA:CTP9352,1,"CARRIERE LANGLOIS",45.550345,5.374149,,1,,Europe/Paris,,O38, +O38:SA:CTP9353,1,"VAUX-LA PHARMACIE",45.54269,5.398552,,1,,Europe/Paris,,O38, +O38:SA:CTP9355,1,"ECOLES",45.540868,5.392748,,1,,Europe/Paris,,O38, +O38:SA:CTP9357,1,"EGLISE",45.519208,5.401125,,1,,Europe/Paris,,O38, +O38:SA:CTP9359,1,"LES ROCHES",45.52191,5.404308,,1,,Europe/Paris,,O38, +O38:SA:CTP9361,1,"LE LUMINAIRE",45.548445,5.38352,,1,,Europe/Paris,,O38, +O38:SA:CTP9363,1,"CAFE COLLOMB",45.547304,5.387381,,1,,Europe/Paris,,O38, +O38:SA:CTP9365,1,"LE BOIS",45.535531,5.401117,,1,,Europe/Paris,,O38, +O38:SA:CTP9367,1,"BAS VALLIN",45.548828,5.370471,,1,,Europe/Paris,,O38, +O38:SA:CTP9369,1,"VAUX-GARAGE GARNIER",45.54371,5.396282,,1,,Europe/Paris,,O38, +O38:SA:CTP9371,1,"ROGUIERES",45.549114,5.406507,,1,,Europe/Paris,,O38, +O38:SA:CTP9373,1,"LE TARDIVET",45.546485,5.401096,,1,,Europe/Paris,,O38, +O38:SA:CTP9375,1,"LA LEYDIERE",45.519472,5.379515,,1,,Europe/Paris,,O38, +O38:SA:CTP9379,1,"MONTPENSIER",45.525372,5.409851,,1,,Europe/Paris,,O38, +O38:SA:CTP938,1,"ECOLE DU BOURG",44.955505,5.776899,,1,,Europe/Paris,,O38, +O38:SA:CTP9381,1,"PONTERAY",45.529668,5.408249,,1,,Europe/Paris,,O38, +O38:SA:CTP9384,1,"HAMEAU LE BUIS",45.548287,5.380428,,1,,Europe/Paris,,O38, +O38:SA:CTP9385,1,"GIRATOIRE",45.542929,5.399553,,1,,Europe/Paris,,O38, +O38:SA:CTP9387,1,"FERME BIESSY",45.551026,5.415726,,1,,Europe/Paris,,O38, +O38:SA:CTP9389,1,"LA TAILLAT",45.51872,5.385476,,1,,Europe/Paris,,O38, +O38:SA:CTP9391,1,"LES TERREAUX",45.518214,5.389551,,1,,Europe/Paris,,O38, +O38:SA:CTP9394,1,"USINE GIROUD",45.53871,5.406046,,1,,Europe/Paris,,O38, +O38:SA:CTP9396,1,"CLOS JANIN",45.545135,5.392091,,1,,Europe/Paris,,O38, +O38:SA:CTP9398,1,"CAFE DURAND",45.535552,5.415225,,1,,Europe/Paris,,O38, +O38:SA:CTP940,1,"MAIRIE",44.953835,5.778355,,1,,Europe/Paris,,O38, +O38:SA:CTP9400,1,"LOT. ETANG ROU",45.521501,5.459564,,1,,Europe/Paris,,O38, +O38:SA:CTP9401,1,"LES GORGES ET ROYBUIS",45.517479,5.463624,,1,,Europe/Paris,,O38, +O38:SA:CTP9403,1,"ECOLE",45.511023,5.475815,,1,,Europe/Paris,,O38, +O38:SA:CTP9405,1,"LE MARTERAY",45.526584,5.435741,,1,,Europe/Paris,,O38, +O38:SA:CTP9407,1,"CROIS.RTE MARLIEU",45.534186,5.454535,,1,,Europe/Paris,,O38, +O38:SA:CTP9409,1,"LE CAMBADE",45.536716,5.450249,,1,,Europe/Paris,,O38, +O38:SA:CTP9411,1,"LE PERRIN",45.527276,5.438954,,1,,Europe/Paris,,O38, +O38:SA:CTP9413,1,"RTE BAS MONTAGNIEU",45.519726,5.425648,,1,,Europe/Paris,,O38, +O38:SA:CTP9415,1,"MARLIEU VILLAGE",45.536714,5.457869,,1,,Europe/Paris,,O38, +O38:SA:CTP9418,1,"TANCIN-VILLAS",45.515894,5.484204,,1,,Europe/Paris,,O38, +O38:SA:CTP942,1,"ECOLE DE LA FESTINIERE",44.95475,5.753996,,1,,Europe/Paris,,O38, +O38:SA:CTP9420,1,"LE LATOUD",45.525591,5.468743,,1,,Europe/Paris,,O38, +O38:SA:CTP9422,1,"LE CHEMIN",45.547328,5.46889,,1,,Europe/Paris,,O38, +O38:SA:CTP9424,1,"ECOLE LA RANCHE",45.524108,5.452298,,1,,Europe/Paris,,O38, +O38:SA:CTP9427,1,"LE GRAND CHAMP",45.532679,5.466717,,1,,Europe/Paris,,O38, +O38:SA:CTP9428,1,"LE COUVENT",45.552871,5.445346,,1,,Europe/Paris,,O38, +O38:SA:CTP9430,1,"LA CURE",45.532699,5.448022,,1,,Europe/Paris,,O38, +O38:SA:CTP9432,1,"LE POULAILLER",45.528814,5.483463,,1,,Europe/Paris,,O38, +O38:SA:CTP9435,1,"CROIS.RTE LATOUD",45.525169,5.468906,,1,,Europe/Paris,,O38, +O38:SA:CTP9436,1,"CARREFOUR DE BOUIS",45.513937,5.426224,,1,,Europe/Paris,,O38, +O38:SA:CTP9438,1,"CHAMP DE COURSE",45.555731,5.445279,,1,,Europe/Paris,,O38, +O38:SA:CTP944,1,"ZI LES MARAIS",44.933387,5.781719,,1,,Europe/Paris,,O38, +O38:SA:CTP9441,1,"DEMPTEZIEU",45.537562,5.479574,,1,,Europe/Paris,,O38, +O38:SA:CTP9442,1,"LE VILLAGE",45.555356,5.483747,,1,,Europe/Paris,,O38, +O38:SA:CTP9444,1,"BOURG",45.524408,5.454311,,1,,Europe/Paris,,O38, +O38:SA:CTP9446,1,"POMPIERS",45.554764,5.484402,,1,,Europe/Paris,,O38, +O38:SA:CTP9448,1,"ECOLE",45.547374,5.436681,,1,,Europe/Paris,,O38, +O38:SA:CTP9450,1,"ROUTE DE VEYSSIN",45.535251,5.47688,,1,,Europe/Paris,,O38, +O38:SA:CTP9452,1,"CARREFOUR",45.524587,5.454751,,1,,Europe/Paris,,O38, +O38:SA:CTP9453,1,"BEL AIR",45.552955,5.425039,,1,,Europe/Paris,,O38, +O38:SA:CTP9455,1,"CENTRE",45.545687,5.442585,,1,,Europe/Paris,,O38, +O38:SA:CTP9459,1,"TRIBOUILLON",45.512537,5.463813,,1,,Europe/Paris,,O38, +O38:SA:CTP946,1,"COMBALBERTE",44.964434,5.813048,,1,,Europe/Paris,,O38, +O38:SA:CTP9461,1,"GRAND ENVELUN",45.516804,5.480554,,1,,Europe/Paris,,O38, +O38:SA:CTP9463,1,"LES ARPHANTS",45.526179,5.486319,,1,,Europe/Paris,,O38, +O38:SA:CTP9466,1,"TANCIN-FERME",45.51156,5.486541,,1,,Europe/Paris,,O38, +O38:SA:CTP9467,1,"LE GODARD",45.543385,5.507886,,1,,Europe/Paris,,O38, +O38:SA:CTP9469,1,"LE BRENIER RD73",45.514734,5.52505,,1,,Europe/Paris,,O38, +O38:SA:CTP9471,1,"PONT DE COURS",45.519442,5.524804,,1,,Europe/Paris,,O38, +O38:SA:CTP9473,1,"ST ONDRAS ECOLE",45.518822,5.54697,,1,,Europe/Paris,,O38, +O38:SA:CTP9475,1,"COUPE-GORGE",45.539608,5.509139,,1,,Europe/Paris,,O38, +O38:SA:CTP9477,1,"RUE PEGUY",45.550508,5.534012,,1,,Europe/Paris,,O38, +O38:SA:CTP9479,1,"STADE",45.530859,5.513889,,1,,Europe/Paris,,O38, +O38:SA:CTP948,1,"LE VILLAGE",44.934689,5.8253,,1,,Europe/Paris,,O38, +O38:SA:CTP9481,1,"VERCOURS",45.52053,5.538649,,1,,Europe/Paris,,O38, +O38:SA:CTP9483,1,"LE BRENIER",45.511793,5.530382,,1,,Europe/Paris,,O38, +O38:SA:CTP9485,1,"LE BUCLAS",45.525984,5.552184,,1,,Europe/Paris,,O38, +O38:SA:CTP9487,1,"ST ONDRAS RD73",45.51553,5.526552,,1,,Europe/Paris,,O38, +O38:SA:CTP9489,1,"ARBOUDIERE RN6",45.539566,5.529465,,1,,Europe/Paris,,O38, +O38:SA:CTP9491,1,"PONT DU GAZ",45.535382,5.539481,,1,,Europe/Paris,,O38, +O38:SA:CTP9493,1,"L'EGLISE",45.548087,5.534258,,1,,Europe/Paris,,O38, +O38:SA:CTP9495,1,"RD1006 BARGE",45.543118,5.523205,,1,,Europe/Paris,,O38, +O38:SA:CTP9499,1,"BARRIERE",45.536494,5.535834,,1,,Europe/Paris,,O38, +O38:SA:CTP950,1,"COMBOURSIERE",44.961463,5.822837,,1,,Europe/Paris,,O38, +O38:SA:CTP9502,1,"FERRARD",45.54398,5.531289,,1,,Europe/Paris,,O38, +O38:SA:CTP9504,1,"RTE ST DIDIER",45.550842,5.497354,,1,,Europe/Paris,,O38, +O38:SA:CTP9509,1,"LA POSTE",45.537287,5.584048,,1,,Europe/Paris,,O38, +O38:SA:CTP9511,1,"COLLEGE MARCEL BOUVIER",45.536055,5.591253,,1,,Europe/Paris,,O38, +O38:SA:CTP9519,1,"LES ROCHES",45.509524,5.611012,,1,,Europe/Paris,,O38, +O38:SA:CTP952,1,"TORS-LES AUCHES PARKING",44.941997,5.795615,,1,,Europe/Paris,,O38, +O38:SA:CTP9522,1,"BEAUREGARD",45.553275,5.56228,,1,,Europe/Paris,,O38, +O38:SA:CTP9524,1,"STADE",45.548153,5.572079,,1,,Europe/Paris,,O38, +O38:SA:CTP9526,1,"LOTISSEMENT LE CUAZ",45.512533,5.597472,,1,,Europe/Paris,,O38, +O38:SA:CTP9529,1,"LE TEMPLE 2",45.511563,5.607662,,1,,Europe/Paris,,O38, +O38:SA:CTP9533,1,"BRENARD",45.509844,5.622006,,1,,Europe/Paris,,O38, +O38:SA:CTP9534,1,"BRENARD",45.509774,5.617574,,1,,Europe/Paris,,O38, +O38:SA:CTP9536,1,"LA CHAPELLE HAMEAU",45.526616,5.605962,,1,,Europe/Paris,,O38, +O38:SA:CTP9539,1,"VILLAGE",45.546211,5.564189,,1,,Europe/Paris,,O38, +O38:SA:CTP954,1,"TORS-ENTREE (LE TERROIR)",44.940416,5.796237,,1,,Europe/Paris,,O38, +O38:SA:CTP9544,1,"FERME PEYRIN",45.519924,5.609024,,1,,Europe/Paris,,O38, +O38:SA:CTP9547,1,"GARAGE OPEL",45.537315,5.586658,,1,,Europe/Paris,,O38, +O38:SA:CTP9548,1,"LA BRUYERE",45.548003,5.610221,,1,,Europe/Paris,,O38, +O38:SA:CTP9554,1,"LOT RONCEVEAU",45.530001,5.585327,,1,,Europe/Paris,,O38, +O38:SA:CTP9556,1,"LA PETITE AYAL",45.517266,5.589214,,1,,Europe/Paris,,O38, +O38:SA:CTP9558,1,"NETRIN",45.544859,5.583826,,1,,Europe/Paris,,O38, +O38:SA:CTP956,1,"VILLAGE",44.942395,5.815074,,1,,Europe/Paris,,O38, +O38:SA:CTP9561,1,"LE TEMPLE",45.51405,5.60656,,1,,Europe/Paris,,O38, +O38:SA:CTP9564,1,"GARAGE GADOU",45.535893,5.568064,,1,,Europe/Paris,,O38, +O38:SA:CTP9566,1,"LE BAILLY",45.537119,5.579715,,1,,Europe/Paris,,O38, +O38:SA:CTP9568,1,"BOUCHET-BONNELET",45.514063,5.595893,,1,,Europe/Paris,,O38, +O38:SA:CTP9570,1,"LE MARTINET(BRUYERE)",45.550846,5.61293,,1,,Europe/Paris,,O38, +O38:SA:CTP9571,1,"LA LUISSERT",45.539689,5.560855,,1,,Europe/Paris,,O38, +O38:SA:CTP9573,1,"GRAND VERROU",45.532612,5.614917,,1,,Europe/Paris,,O38, +O38:SA:CTP9575,1,"LE PERRET",45.534752,5.592902,,1,,Europe/Paris,,O38, +O38:SA:CTP9576,1,"RUE D'ITALIE",45.536838,5.588823,,1,,Europe/Paris,,O38, +O38:SA:CTP958,1,"ECOLE DE FUGIERES",44.954502,5.807067,,1,,Europe/Paris,,O38, +O38:SA:CTP9586,1,"LE BESSON",45.552433,5.604345,,1,,Europe/Paris,,O38, +O38:SA:CTP9588,1,"LA DECHETTERIE",45.544433,5.59821,,1,,Europe/Paris,,O38, +O38:SA:CTP9589,1,"MAISON GUINET",45.549103,5.645286,,1,,Europe/Paris,,O38, +O38:SA:CTP9591,1,"GROUPE SCOLAIRE",45.507428,5.673629,,1,,Europe/Paris,,O38, +O38:SA:CTP9593,1,"PETIT VERROU",45.532359,5.621251,,1,,Europe/Paris,,O38, +O38:SA:CTP9595,1,"LA ROMAGNIERE",45.549941,5.645723,,1,,Europe/Paris,,O38, +O38:SA:CTP9597,1,"GARE (HLM)",45.52662,5.627349,,1,,Europe/Paris,,O38, +O38:SA:CTP9599,1,"LA FESCHE",45.524204,5.64347,,1,,Europe/Paris,,O38, +O38:SA:CTP960,1,"LES SAGNES",44.933393,5.794824,,1,,Europe/Paris,,O38, +O38:SA:CTP9600,1,"FALLAMIEUX",45.517812,5.638253,,1,,Europe/Paris,,O38, +O38:SA:CTP9601,1,"LES ETEPPES (ASTRA)",45.518953,5.685846,,1,,Europe/Paris,,O38, +O38:SA:CTP9603,1,"LE CLERMONT I",45.543494,5.643684,,1,,Europe/Paris,,O38, +O38:SA:CTP9605,1,"LE CLERMONT II",45.545275,5.634104,,1,,Europe/Paris,,O38, +O38:SA:CTP9607,1,"LE VARNIER",45.511429,5.677336,,1,,Europe/Paris,,O38, +O38:SA:CTP9609,1,"COLLEGE LE GUILLON",45.538589,5.657152,,1,,Europe/Paris,,O38, +O38:SA:CTP9611,1,"LYCEE PRAVAZ",45.539761,5.670531,,1,,Europe/Paris,,O38, +O38:SA:CTP9615,1,"LE TERCINET",45.543352,5.627056,,1,,Europe/Paris,,O38, +O38:SA:CTP9617,1,"LE FAISSEAU",45.534279,5.637765,,1,,Europe/Paris,,O38, +O38:SA:CTP9619,1,"MAISON CARRE",45.551087,5.640101,,1,,Europe/Paris,,O38, +O38:SA:CTP962,1,"LES MAZUERS",44.943328,5.800854,,1,,Europe/Paris,,O38, +O38:SA:CTP9621,1,"LE DREVON",45.506819,5.679111,,1,,Europe/Paris,,O38, +O38:SA:CTP9623,1,"CENTRE",45.507285,5.673067,,1,,Europe/Paris,,O38, +O38:SA:CTP9626,1,"LES ETEPPES",45.520315,5.685491,,1,,Europe/Paris,,O38, +O38:SA:CTP9628,1,"LE SABLON",45.532085,5.627601,,1,,Europe/Paris,,O38, +O38:SA:CTP9631,1,"COLLEGE J. D'ARC - C.E.RURAL",45.537718,5.669034,,1,,Europe/Paris,,O38, +O38:SA:CTP9633,1,"CENTRE",45.534797,5.671099,,1,,Europe/Paris,,O38, +O38:SA:CTP9635,1,"HOPITAL",45.536738,5.659515,,1,,Europe/Paris,,O38, +O38:SA:CTP9637,1,"LES SALINES",45.52604,5.681102,,1,,Europe/Paris,,O38, +O38:SA:CTP9638,1,"EGLISE",45.536756,5.670002,,1,,Europe/Paris,,O38, +O38:SA:CTP964,1,"ANCIENNE MATERNELLE",44.945206,5.793895,,1,,Europe/Paris,,O38, +O38:SA:CTP9640,1,"PLACE DU 8 MAI",45.535786,5.673647,,1,,Europe/Paris,,O38, +O38:SA:CTP9643,1,"GARE SNCF",45.524635,5.681263,,1,,Europe/Paris,,O38, +O38:SA:CTP9647,1,"MAIRIE",45.504413,5.701883,,1,,Europe/Paris,,O38, +O38:SA:CTP9651,1,"LA CROIX DES ADIEUX",45.514267,5.691745,,1,,Europe/Paris,,O38, +O38:SA:CTP9655,1,"CENTRE",45.502825,5.704611,,1,,Europe/Paris,,O38, +O38:SA:CTP9657,1,"LA BOYARDIERE",45.505438,5.689809,,1,,Europe/Paris,,O38, +O38:SA:CTP9659,1,"CENTRE",45.501775,5.844313,,1,,Europe/Paris,,O38, +O38:SA:CTP9661,1,"LA PRAIRE",45.520117,5.854065,,1,,Europe/Paris,,O38, +O38:SA:CTP9663,1,"LA QUILLERE",45.514019,5.851727,,1,,Europe/Paris,,O38, +O38:SA:CTP9665,1,"Z.I. MOLLARD",45.568112,5.963774,,1,,Europe/Paris,,O38, +O38:SA:CTP9666,1,"LYCEE DU GRANIER",45.551177,5.968347,,1,,Europe/Paris,,O38, +O38:SA:CTP9668,1,"LES MARCHES",45.498343,6.000496,,1,,Europe/Paris,,O38, +O38:SA:CTP967,1,"LE BOURG",44.978136,5.80595,,1,,Europe/Paris,,O38, +O38:SA:CTP9670,1,"ST JEOIRE CENTRE",45.533387,5.992117,,1,,Europe/Paris,,O38, +O38:SA:CTP9674,1,"L.P.NIVOLET",45.570908,5.970058,,1,,Europe/Paris,,O38, +O38:SA:CTP968,1,"LA TRAVERSE",44.967951,5.802604,,1,,Europe/Paris,,O38, +O38:SA:CTP9693,1,"LE PLAN",45.586696,5.012433,,1,,Europe/Paris,,O38, +O38:SA:CTP9695,1,"LE GRAND PIERRE",45.587088,5.016498,,1,,Europe/Paris,,O38, +O38:SA:CTP970,1,"LES TROUSSIERS",44.971804,5.795072,,1,,Europe/Paris,,O38, +O38:SA:CTP9712,1,"LE VILLAGE",45.585561,4.998117,,1,,Europe/Paris,,O38, +O38:SA:CTP9716,1,"LE SULON",45.608243,5.004119,,1,,Europe/Paris,,O38, +O38:SA:CTP9723,1,"LE CHANA",45.593403,4.994539,,1,,Europe/Paris,,O38, +O38:SA:CTP9726,1,"LOT.LE CHANOZ",45.584515,5.001569,,1,,Europe/Paris,,O38, +O38:SA:CTP9728,1,"TRAMOLAY",45.615595,4.994516,,1,,Europe/Paris,,O38, +O38:SA:CTP973,1,"LES DROUEYVES",44.975999,5.801373,,1,,Europe/Paris,,O38, +O38:SA:CTP9730,1,"LA COMBE DEVAUD",45.609078,5.006877,,1,,Europe/Paris,,O38, +O38:SA:CTP9733,1,"LOT.LE PLAN",45.585154,5.005349,,1,,Europe/Paris,,O38, +O38:SA:CTP9735,1,"LE CHENE",45.607043,5.002239,,1,,Europe/Paris,,O38, +O38:SA:CTP9737,1,"RIGARD",45.587959,4.999151,,1,,Europe/Paris,,O38, +O38:SA:CTP974,1,"LES EVERRAS",44.936407,5.860438,,1,,Europe/Paris,,O38, +O38:SA:CTP9740,1,"LA ROLLANDIERE",45.598372,4.996341,,1,,Europe/Paris,,O38, +O38:SA:CTP9747,1,"ECOLES",45.585842,4.998122,,1,,Europe/Paris,,O38, +O38:SA:CTP9755,1,"MAISON ROUX",45.603736,5.012084,,1,,Europe/Paris,,O38, +O38:SA:CTP9758,1,"CHARROUD ABRIBUS",45.612865,5.006158,,1,,Europe/Paris,,O38, +O38:SA:CTP976,1,"MAIRIE",44.941209,5.854001,,1,,Europe/Paris,,O38, +O38:SA:CTP9760,1,"LES PIERRES(GARDON)",45.582948,4.98827,,1,,Europe/Paris,,O38, +O38:SA:CTP9761,1,"LES CABANES",45.578884,5.043757,,1,,Europe/Paris,,O38, +O38:SA:CTP9767,1,"CARRIERE VIRETON",45.581295,5.050565,,1,,Europe/Paris,,O38, +O38:SA:CTP9769,1,"LES GRANGES BLANCHES",45.573661,5.027876,,1,,Europe/Paris,,O38, +O38:SA:CTP9771,1,"LA CROIX MAYET",45.587667,5.021314,,1,,Europe/Paris,,O38, +O38:SA:CTP9773,1,"MAISON VERNAY",45.589492,5.027929,,1,,Europe/Paris,,O38, +O38:SA:CTP9775,1,"CHAPELLE ST JUST(RD.36)",45.590176,5.035359,,1,,Europe/Paris,,O38, +O38:SA:CTP9778,1,"LE FAYET PLACE",45.607269,5.038286,,1,,Europe/Paris,,O38, +O38:SA:CTP978,1,"CARREF. RTE LA ROCHETTE",44.947957,5.866091,,1,,Europe/Paris,,O38, +O38:SA:CTP9781,1,"LE CLOS",45.573455,5.065472,,1,,Europe/Paris,,O38, +O38:SA:CTP9787,1,"LAFAYETTE",45.584539,5.061913,,1,,Europe/Paris,,O38, +O38:SA:CTP9789,1,"SAINT OBLAS",45.570098,5.044476,,1,,Europe/Paris,,O38, +O38:SA:CTP9791,1,"LE GRAND BOIS",45.569014,5.032784,,1,,Europe/Paris,,O38, +O38:SA:CTP9795,1,"LE FAYET ECOLES",45.60843,5.039066,,1,,Europe/Paris,,O38, +O38:SA:CTP9797,1,"LE FAYET COMTE",45.607482,5.043427,,1,,Europe/Paris,,O38, +O38:SA:CTP9799,1,"VILLENEUVE",45.604749,5.046684,,1,,Europe/Paris,,O38, +O38:SA:CTP980,1,"FONTAGNEU",44.969709,5.878313,,1,,Europe/Paris,,O38, +O38:SA:CTP9800,1,"CHEMIN DE SARAVANIER",45.580524,5.06295,,1,,Europe/Paris,,O38, +O38:SA:CTP9802,1,"LES BOUVIERES",45.587068,5.09771,,1,,Europe/Paris,,O38, +O38:SA:CTP9804,1,"LE BELLAI",45.572737,5.094251,,1,,Europe/Paris,,O38, +O38:SA:CTP9808,1,"LES BRUYERES",45.577487,5.091492,,1,,Europe/Paris,,O38, +O38:SA:CTP9810,1,"BOURG",45.588551,5.092474,,1,,Europe/Paris,,O38, +O38:SA:CTP9812,1,"HAMEAU LE PILLARD",45.583535,5.127184,,1,,Europe/Paris,,O38, +O38:SA:CTP9814,1,"PONAS-ABRIBUS",45.612741,5.093087,,1,,Europe/Paris,,O38, +O38:SA:CTP9816,1,"LA GARENNE",45.600333,5.126361,,1,,Europe/Paris,,O38, +O38:SA:CTP9818,1,"ROUTE DE VIGNIEU",45.583136,5.124282,,1,,Europe/Paris,,O38, +O38:SA:CTP982,1,"LE MOLLARD",44.960818,5.872978,,1,,Europe/Paris,,O38, +O38:SA:CTP9820,1,"LE GROZAT",45.603163,5.100876,,1,,Europe/Paris,,O38, +O38:SA:CTP9822,1,"PONAS RESERVOIR",45.606803,5.098976,,1,,Europe/Paris,,O38, +O38:SA:CTP9824,1,"LA PLACE",45.588839,5.090465,,1,,Europe/Paris,,O38, +O38:SA:CTP9826,1,"LES QUATRE ROUTES D36",45.595224,5.0926,,1,,Europe/Paris,,O38, +O38:SA:CTP9828,1,"ECOLE DE PONAS",45.61027,5.096581,,1,,Europe/Paris,,O38, +O38:SA:CTP9830,1,"ECOLE DU BOURG",45.596684,5.130231,,1,,Europe/Paris,,O38, +O38:SA:CTP9832,1,"VILLAGE",45.596376,5.129384,,1,,Europe/Paris,,O38, +O38:SA:CTP9834,1,"LES ETANGS",45.59004,5.131012,,1,,Europe/Paris,,O38, +O38:SA:CTP9836,1,"LA TIERCERIE",45.579912,5.144101,,1,,Europe/Paris,,O38, +O38:SA:CTP9838,1,"TRIEVOZ GILET",45.598806,5.106746,,1,,Europe/Paris,,O38, +O38:SA:CTP984,1,"LES DAURENS",44.956502,5.961805,,1,,Europe/Paris,,O38, +O38:SA:CTP9840,1,"TIERCERIE/BUCLAS",45.579834,5.148399,,1,,Europe/Paris,,O38, +O38:SA:CTP9842,1,"LE FOUILLEUX",45.568683,5.135698,,1,,Europe/Paris,,O38, +O38:SA:CTP9844,1,"COMBEROUSSE",45.578993,5.114499,,1,,Europe/Paris,,O38, +O38:SA:CTP9849,1,"COLLEGE SONIA DELAUNAY",45.603845,5.148774,,1,,Europe/Paris,,O38, +O38:SA:CTP9855,1,"LE BAILLY",45.594492,5.111954,,1,,Europe/Paris,,O38, +O38:SA:CTP9857,1,"ST BONNET-BOURG",45.604209,5.165285,,1,,Europe/Paris,,O38, +O38:SA:CTP9859,1,"LES GIRAUDS/LE RUAL",45.590815,5.160117,,1,,Europe/Paris,,O38, +O38:SA:CTP986,1,"LA CHALP",44.970536,5.959616,,1,,Europe/Paris,,O38, +O38:SA:CTP9861,1,"BOIS DE ROCHE",45.571587,5.161471,,1,,Europe/Paris,,O38, +O38:SA:CTP9867,1,"LA CROIX-LE VILLAGE",45.58644,5.162568,,1,,Europe/Paris,,O38, +O38:SA:CTP9869,1,"AILLAT",45.567192,5.189551,,1,,Europe/Paris,,O38, +O38:SA:CTP9872,1,"ECOLE",45.586316,5.19243,,1,,Europe/Paris,,O38, +O38:SA:CTP9874,1,"LES MOLETTES",45.571457,5.187666,,1,,Europe/Paris,,O38, +O38:SA:CTP9878,1,"LE SAUNIER",45.568567,5.167394,,1,,Europe/Paris,,O38, +O38:SA:CTP988,1,"LE VILLAGE",44.936087,5.973682,,1,,Europe/Paris,,O38, +O38:SA:CTP9881,1,"ECOLES DE ROCHE",45.587403,5.157786,,1,,Europe/Paris,,O38, +O38:SA:CTP9886,1,"LA CROIX",45.594169,5.218683,,1,,Europe/Paris,,O38, +O38:SA:CTP9888,1,"ST BONNET DE ROCHE",45.603737,5.163088,,1,,Europe/Paris,,O38, +O38:SA:CTP9891,1,"ST-BONNET CENTRE GARE ROUTIERE",45.608954,5.156764,,1,,Europe/Paris,,O38, +O38:SA:CTP9897,1,"GREENLAND",45.611202,5.171935,,1,,Europe/Paris,,O38, +O38:SA:CTP990,1,"LES RAMBEAUX",44.942282,5.971804,,1,,Europe/Paris,,O38, +O38:SA:CTP9905,1,"SQUARE DELAUNAY",45.584553,5.276705,,1,,Europe/Paris,,O38, +O38:SA:CTP9909,1,"LE VILLAGE",45.595336,5.223602,,1,,Europe/Paris,,O38, +O38:SA:CTP9913,1,"ESPACE BARBUSSE",45.596248,5.268551,,1,,Europe/Paris,,O38, +O38:SA:CTP992,1,"PASSERELLE DE LANCHATRA",44.968045,6.155048,,1,,Europe/Paris,,O38, +O38:SA:CTP9920,1,"FOLATIERE",45.589041,5.282659,,1,,Europe/Paris,,O38, +O38:SA:CTP9926,1,"LA GRIVE",45.600319,5.231035,,1,,Europe/Paris,,O38, +O38:SA:CTP9929,1,"LE CAPITOLE",45.585035,5.274272,,1,,Europe/Paris,,O38, +O38:SA:CTP9931,1,"POSTE GAMBETTA",45.586261,5.273215,,1,,Europe/Paris,,O38, +O38:SA:CTP994,1,"VILLAGE",44.957806,6.176296,,1,,Europe/Paris,,O38, +O38:SA:CTP9941,1,"LES GRANDS TOURNANTS",45.566241,5.282982,,1,,Europe/Paris,,O38, +O38:SA:CTP9945,1,"LE SADIAU",45.567799,5.2649,,1,,Europe/Paris,,O38, +O38:SA:CTP9949,1,"GARE SNCF",45.58392,5.27259,,1,,Europe/Paris,,O38, +O38:SA:CTP9951,1,"CHARGES",45.579999,5.27428,,1,,Europe/Paris,,O38, +O38:SA:CTP9954,1,"LYCEE",45.587791,5.273111,,1,,Europe/Paris,,O38, +O38:SA:CTP9957,1,"CAPITOLE",45.585102,5.273451,,1,,Europe/Paris,,O38, +O38:SA:CTP996,1,"CHAMPHORENT",44.934007,6.203612,,1,,Europe/Paris,,O38, +O38:SA:CTP9965,1,"STADE CHANTEREINE",45.602258,5.265708,,1,,Europe/Paris,,O38, +O38:SA:CTP9970,1,"PONT ST-MICHEL",45.589219,5.276627,,1,,Europe/Paris,,O38, +O38:SA:CTP9974,1,"BARBUSSE GARE ROUTIERE",45.592298,5.270734,,1,,Europe/Paris,,O38, +O38:SA:CTP9977,1,"LA COMBE USINE",45.571171,5.279186,,1,,Europe/Paris,,O38, +O38:SA:CTP998,1,"PRE CLOT",44.945718,6.188265,,1,,Europe/Paris,,O38, +O38:SA:CTP9981,1,"LE BESSON",45.566092,5.260566,,1,,Europe/Paris,,O38, +O38:SA:CTP9986,1,"H.L.M.",45.576115,5.276503,,1,,Europe/Paris,,O38, +O38:SA:CTP9991,1,"LA LADRIERE",45.589321,5.245693,,1,,Europe/Paris,,O38, +O38:SA:CTP9993,1,"EFMA",45.606739,5.269546,,1,,Europe/Paris,,O38, +O38:SA:CTP9996,1,"LE BOURNAY",45.564582,5.22989,,1,,Europe/Paris,,O38, +OAB:SA:CTP1000025,1,"GAZEL",43.504742,5.387121,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000027,1,"SAINT-JOSEPH",43.50864,5.389241,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000038,1,"LE SERRE 2",43.502396,5.39096,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000072,1,"COLONEL SCHULER",43.513336,5.441667,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000077,1,"GIONO",43.514599,5.438344,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000079,1,"LA FOURANE",43.51345,5.444703,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000082,1,"FLORALIES",43.5158,5.436281,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000083,1,"LA FIGUIERE",43.516544,5.43502,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000087,1,"LES ALPILLES",43.51712,5.437083,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000089,1,"ROUMANILLE",43.518952,5.441609,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000096,1,"REINE JEANNE",43.523128,5.448734,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000098,1,"FERRY",43.522045,5.449516,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000099,1,"PARC JOURDAN",43.520501,5.449746,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000102,1,"PUGET",43.519554,5.449812,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000103,1,"COURCY",43.519581,5.453641,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000105,1,"CITE U.",43.517807,5.454501,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000107,1,"CUQUES",43.516716,5.453985,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000108,1,"MOULIN DE TESTAS",43.516659,5.451178,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000109,1,"VAL SAINT-JEAN",43.515857,5.452438,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000112,1,"ARMEE D'AFRIQUE",43.514084,5.454902,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000114,1,"CIBLE",43.516373,5.460975,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000118,1,"VAL DE L'ARC",43.511273,5.46533,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000120,1,"MAURIAT",43.516029,5.466705,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000137,1,"FERRAGEON",43.522102,5.51088,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000143,1,"PARC DES SPORTS",43.517921,5.503718,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000149,1,"MAISON PEZET",43.50967,5.489738,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000152,1,"VAL SAINT-ANDRE",43.515971,5.471632,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000154,1,"PONT DES CHANDELLES",43.510986,5.487102,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000156,1,"SAINT-EXUPERY",43.519295,5.432442,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000166,1,"JULES VERNE",43.520901,5.432213,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000168,1,"8 Mai 1945",43.523075,5.433015,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000170,1,"LE CORBUSIER",43.523479,5.431353,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000175,1,"DUNANT",43.520329,5.429634,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000176,1,"CASSIN",43.522388,5.468368,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000179,1,"SCHWEITZER",43.522736,5.429978,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000186,1,"ECOLE LA TORSE",43.524738,5.467049,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000189,1,"SAINT-JOHN PERSE",43.525139,5.424651,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000191,1,"HAMEAU LA TORSE",43.525997,5.465101,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000192,1,"PARC PAYSAGER",43.524452,5.423561,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000196,1,"VASARELY",43.522102,5.423905,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000200,1,"COQ D'ARGENT",43.521358,5.421155,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000204,1,"PONT DE LA TORSE",43.52686,5.463439,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000205,1,"VIGNES DE MARIUS",43.522045,5.418061,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000222,1,"E.BRUNET",43.480736,5.426369,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000223,1,"FONTCOUVERTE",43.480564,5.428603,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000247,1,"SANTO ESTELLO",43.51712,5.446422,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000251,1,"GRANDE THUMINE",43.522331,5.415654,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000254,1,"PAYOT",43.522388,5.413534,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000256,1,"PARC D'ARIANE",43.523823,5.412502,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000258,1,"JAS DU VALLON",43.526687,5.410555,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000260,1,"FOUR D'EYGLUN",43.528118,5.411416,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000263,1,"LE DEFFENS",43.523766,5.416456,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000264,1,"ECOLE MILITAIRE",43.526325,5.45641,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000267,1,"CROIX VERTE",43.525482,5.413534,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000269,1,"BOIS DE L'AUNE",43.52726,5.415024,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000270,1,"THERMIDOR",43.526172,5.41726,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000271,1,"PICASSO",43.528866,5.416285,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000274,1,"HORLOGE",43.529839,5.420238,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000280,1,"CASTORS",43.530411,5.434677,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000282,1,"R.I.C.M",43.528518,5.459199,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000286,1,"INDOCHINE",43.531326,5.440177,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000290,1,"JOUVEAU",43.53196,5.436796,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000294,1,"FLEMING",43.532074,5.421212,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000301,1,"JEAN MONNET",43.532303,5.417259,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000309,1,"CLOS GABRIEL",43.529323,5.412903,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000312,1,"DEUX ORMES",43.53173,5.412904,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000316,1,"VIVES",43.532875,5.412847,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000322,1,"RAVANASSE",43.535339,5.414165,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000324,1,"PARC RAMBOT",43.530754,5.455704,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000328,1,"LA BREDASQUE",43.536427,5.411586,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000338,1,"BAGATELLE",43.536025,5.408893,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000339,1,"DOMAINE FLEURS",43.534134,5.408321,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000345,1,"ERIDAN",43.531326,5.409466,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000347,1,"DAUDET",43.53511,5.463439,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000348,1,"JARDINS D' ESTELLE",43.529437,5.410498,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000351,1,"SAINT-PERES",43.525429,5.398924,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000354,1,"LA MOLIERE",43.524967,5.39457,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000362,1,"PINETTE",43.536942,5.467736,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000365,1,"ESTRAMADOUR",43.537518,5.420754,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000370,1,"TENNIS",43.540612,5.419264,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000372,1,"LE POET",43.542499,5.417373,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000377,1,"OLIVIERS",43.545135,5.415942,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000378,1,"PARC BEAUREGARD",43.537628,5.470773,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000380,1,"TIR A L'ARC",43.573097,5.409352,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000385,1,"RASTOIN",43.550121,5.411644,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000386,1,"SARRIETTE",43.552185,5.408263,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000389,1,"BEAUREGARD",43.537804,5.473237,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000392,1,"BERGERIE",43.554763,5.40769,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000393,1,"PLAINE",43.554993,5.411758,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000398,1,"REPENTANCE",43.536598,5.473466,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000401,1,"FAVELOUN",43.56055,5.420639,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000402,1,"AVON",43.563816,5.420467,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000408,1,"COUNTRY",43.569832,5.417889,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000471,1,"PUYRICARD C 22",43.584213,5.415139,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000480,1,"GRAND SAINT JEAN",43.612114,5.382938,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000482,1,"ERABLES",43.580086,5.417144,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000488,1,"TOURTERELLES",43.58152,5.409867,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000496,1,"GLACIERE",43.574756,5.422129,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000497,1,"PARC RIGAUD",43.563068,5.471862,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000498,1,"PASCALIS",43.562324,5.467622,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000511,1,"E 13",43.559803,5.457424,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000513,1,"HOPITAL PONTIER",43.533962,5.4435,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000514,1,"HOPITAL TAMARIS",43.535625,5.441438,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000515,1,"MOZART",43.534706,5.439146,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000516,1,"OLYMPIA",43.536541,5.437026,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000518,1,"FLEURY-VAL",43.538661,5.438057,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000521,1,"LAURIERS",43.539348,5.438458,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000522,1,"GUYON",43.533962,5.436338,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000526,1,"BELVEYRE",43.570976,5.424363,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000528,1,"HUILERIE",43.549149,5.427515,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000529,1,"RENOIR",43.534538,5.436625,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000532,1,"FUSAINS",43.568626,5.425681,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000533,1,"ROSAKI",43.566105,5.427571,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000537,1,"ECOLE",43.599568,5.447167,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000538,1,"COUTERON EGLISE",43.599224,5.444531,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000541,1,"FONT- ROUSSE BAS",43.596073,5.442354,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000543,1,"LA TREVARESSE",43.592579,5.434963,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000545,1,"VILLAGE DU SOLEIL",43.590058,5.431984,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000546,1,"Quille",43.587478,5.431525,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000547,1,"QUILLE",43.587421,5.431182,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000548,1,"I.A.E.",43.58702,5.423504,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000551,1,"LES CAMUS",43.586845,5.421499,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000571,1,"BELLEVUE",43.541469,5.441609,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000573,1,"MURIERS BLANCS",43.542671,5.441094,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000579,1,"D 18 AQUEDUC",43.559689,5.450433,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000596,1,"D 6",43.587879,5.457194,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000597,1,"D 7",43.584041,5.456735,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000602,1,"EPERON",43.556995,5.433645,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000613,1,"MONTVERT",43.54565,5.440865,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000614,1,"LAGRANGE",43.542613,5.44224,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000620,1,"CRESPI",43.553673,5.443615,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000631,1,"MADELEINE",43.575618,5.432041,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000633,1,"LA CHESNERAIE",43.572639,5.432614,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000637,1,"DIOULOUFFET",43.566048,5.433932,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000638,1,"CHOCOLATERIE",43.563472,5.434046,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000643,1,"GRANDS CHENES",43.560489,5.434677,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000646,1,"MARGUERITE",43.550522,5.438572,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000651,1,"PORTAIL CEZANNE",43.542614,5.445907,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000654,1,"MARUEGE",43.545078,5.455303,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000656,1,"MARUEGE HAUT",43.546512,5.454786,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000663,1,"DOCTEUR BERTRAND",43.541469,5.452152,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000671,1,"AMANDIERS",43.537861,5.453126,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000673,1,"PEUPLIERS",43.538948,5.449573,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000675,1,"BEISSON",43.539692,5.447797,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000682,1,"ALEXIS",43.535797,5.445964,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000685,1,"VIOLETTE",43.534478,5.451235,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000688,1,"NATION",43.534076,5.445219,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000691,1,"CAMPRA",43.531959,5.448314,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000692,1,"THERMES",43.531383,5.443672,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000695,1,"ROTONDE VICTOR HUGO",43.525428,5.446193,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000699,1,"BOULEGON",43.530697,5.44923,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1000700,1,"PALAIS DE JUSTICE",43.529037,5.450891,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1001996,1,"J 5",43.553958,5.531335,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1001997,1,"J 6",43.552872,5.528183,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1001998,1,"J 6 BIS",43.550006,5.523714,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1001999,1,"J 7",43.548343,5.511854,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1002000,1,"J 8",43.546684,5.512141,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1002001,1,"J 8 BIS",43.545879,5.508072,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1002003,1,"J 10",43.547314,5.493176,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1002004,1,"J 11",43.546227,5.496212,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1002005,1,"J 12",43.545078,5.499306,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1002006,1,"J 13",43.546337,5.504062,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1002008,1,"J 15",43.540497,5.491571,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1002010,1,"J 16",43.551785,5.543024,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1002011,1,"J 17",43.552414,5.538726,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1002012,1,"J 18",43.552586,5.536262,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1002013,1,"J 19",43.541813,5.496327,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1004114,1,"LA POSTE VENELLES",43.59756,5.484753,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1009390,1,"CHEMIN EGUILLES",43.554992,5.404023,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1010016,1,"SAINT-JEAN",43.525082,5.454502,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1010017,1,"MIOLLIS",43.528003,5.455189,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1010021,1,"BOURSE",43.532131,5.445334,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1010024,1,"SEXTIUS",43.527831,5.443443,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1010026,1,"BRIAND",43.532589,5.449058,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1010027,1,"CORDELIERS",43.529381,5.444016,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1010034,1,"LE PIGONNET",43.517693,5.438859,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1010036,1,"DEBAZAC",43.513851,5.439604,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1010039,1,"SCHUMAN",43.515228,5.445792,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1010053,1,"BERGER",43.51345,5.449344,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1010059,1,"BEAUSOLEIL",43.514313,5.463668,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1010066,1,"PARC RELAIS MALACRIDA",43.5154,5.468825,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1010072,1,"GAUTIER",43.520958,5.455475,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1010073,1,"SAINT-JEROME",43.517807,5.4596,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1010075,1,"TOUR D'AYGOSI",43.519409,5.461663,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1010080,1,"MOULIN",43.535968,5.457709,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1010084,1,"ARCADES PLATANES",43.559516,5.461548,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1010091,1,"PLATANES",43.555793,5.459657,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1010095,1,"LYCEE CEZANNE",43.533047,5.45897,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1010099,1,"PETIT ROQUEFAVOUR",43.535282,5.46871,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1010108,1,"PETITE CHARTREUSE",43.531555,5.431755,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1010110,1,"DALMAS",43.531902,5.430265,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1010112,1,"AMADOUR",43.533103,5.426827,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1010113,1,"LA RAYMONDE",43.534767,5.423504,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1010115,1,"SAINT-MITRE",43.536369,5.421441,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1010118,1,"PONTIER",43.532761,5.43714,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1010122,1,"VERTE COLLINE",43.536884,5.434906,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1010123,1,"LA CHEVALIERE",43.545536,5.430206,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1010159,1,"MILLES - MAIRIE",43.503311,5.385746,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1012289,1,"3 BONS DIEUX",43.53574,5.471862,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1012661,1,"LA CAUSE",43.510642,5.49266,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1012666,1,"PALETTE",43.51265,5.494837,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1012667,1,"LE THOLONET",43.519523,5.511568,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1013654,1,"DUCHESNE",43.492024,5.372511,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1013820,1,"SAINT-BENOIT",43.514084,5.46109,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1014388,1,"DE REGIS",43.579685,5.418347,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1014471,1,"FONTENAILLE",43.533962,5.461147,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1014707,1,"BOUTIERE",43.54147,5.438917,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1014716,1,"CHOPIN",43.535454,5.465387,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1014719,1,"CITE DU LIVRE",43.52491,5.440177,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1014732,1,"KOENIG",43.542557,5.436338,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1014737,1,"LE TUBET",43.546283,5.414622,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1014750,1,"LES PEINTRES",43.544964,5.445219,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1014754,1,"LES 3 SAUTETS",43.512879,5.471862,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1014758,1,"MAISON DU DROIT",43.524452,5.415368,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1014800,1,"ROND-POINT D'EGUILLES",43.532703,5.427285,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1014803,1,"ROTONDE BONAPARTE",43.52663,5.44459,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1014811,1,"SALLE DES FETES PUYRICARD",43.580601,5.421327,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1014813,1,"SCOTTO",43.52491,5.428603,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1014815,1,"SEIGNEURIE",43.541641,5.435536,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1014828,1,"SAINT-PIERRE",43.523075,5.455933,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1014831,1,"CROIX DE CELONY",43.555451,5.415023,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1014839,1,"VALLON DES SOURCES",43.538147,5.469341,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1014858,1,"PHILIBERT",43.494774,5.342889,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1014860,1,"DESCARTES",43.495575,5.347472,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1014867,1,"BELGES",43.524681,5.443787,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1014871,1,"MALHERBE",43.52388,5.446938,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1014894,1,"FONTLEBRE",43.55075,5.456907,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1014965,1,"GAMBETTA",43.524681,5.453756,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1015004,1,"ROI RENE",43.523994,5.449573,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1015024,1,"GALICE",43.528232,5.433359,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1015027,1,"JARDINS SAINT DONAT",43.547772,5.455246,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1015029,1,"CHALET",43.54015,5.43657,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1015032,1,"MONCLAR",43.507821,5.386817,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1015044,1,"PEYTRAL",43.532131,5.45685,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1017151,1,"PLEIADES",43.491222,5.340482,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1017206,1,"BRUNET",43.547199,5.440005,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1017212,1,"CAMUS",43.520328,5.431296,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1017228,1,"BEAUFORT",43.569599,5.43313,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1017231,1,"MOURET",43.520214,5.43525,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1017383,1,"CELONY ECOLE",43.556709,5.419264,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057258,1,"D 4",43.593857,5.455871,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057263,1,"GARE SNCF",43.522674,5.446486,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057264,1,"RECTORAT",43.521954,5.447572,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057287,1,"MARTELLY",43.517472,5.424733,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057397,1,"MAISON D'ARRET",43.481308,5.395715,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057452,1,"CIM. ST-PIERRE",43.525368,5.460288,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057531,1,"EUROPE-GARE ROUTIERE",43.52346,5.438411,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057570,1,"MAGNAN",43.514713,5.470257,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057571,1,"PISCINE",43.501476,5.391762,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057573,1,"PARC RELAIS HAUTS DE BRUNET",43.547371,5.439433,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057574,1,"SAINT-LOUIS",43.529324,5.453813,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057575,1,"POLE DE LA BEAUVALLE",43.51305,5.437198,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057577,1,"CALIFORNIA",43.512306,5.436567,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057579,1,"L'ARMELIERE",43.51009,5.436183,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057583,1,"CHAMP DE FOIRE",43.507091,5.415884,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057592,1,"REQUIER",43.501018,5.381735,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057595,1,"LAVOISIER",43.489331,5.367812,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057597,1,"ENTREPOTS",43.487152,5.372454,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057599,1,"PERRIN",43.484516,5.374287,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057600,1,"PILON DU ROY",43.481995,5.378641,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057601,1,"MONTRICHER",43.479133,5.383683,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057602,1,"EIFFEL",43.482055,5.385459,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057608,1,"ARMAND",43.488815,5.382251,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057609,1,"JOLIOT CURIE",43.491223,5.380188,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057610,1,"ENTE",43.493225,5.37761,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057611,1,"EINSTEIN",43.492824,5.373829,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057627,1,"DE BROGLIE",43.490704,5.356124,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057638,1,"LA SEDS",43.529151,5.436395,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057639,1,"MARTIN",43.514542,5.432728,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057641,1,"CAVALIERS",43.513909,5.43015,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057643,1,"CLUB HIPPIQUE",43.512707,5.427285,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057645,1,"AUBEPINES",43.511848,5.421613,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057647,1,"CAMP DE MENTHE",43.511044,5.413362,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057649,1,"VALCROS",43.510586,5.40981,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057651,1,"BEAUVOISIN",43.50824,5.408149,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057653,1,"CHATEAU",43.508122,5.406258,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057656,1,"LA PIOLINE",43.507378,5.400872,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057660,1,"CARTOUX",43.489903,5.431239,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057662,1,"ROUBIN",43.487495,5.429062,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057664,1,"MALOUESSE",43.483543,5.427056,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057666,1,"CIMETIERE LUYNES",43.481766,5.425796,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057672,1,"ALBERTIN",43.483371,5.422931,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057674,1,"CAPRICORNE",43.485088,5.423905,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057687,1,"CHAMSON",43.486523,5.413191,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057695,1,"LUYNES LYCEE",43.480449,5.41468,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057701,1,"CIM. MILITAIRE",43.47174,5.400987,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057704,1,"LE SERRE",43.501476,5.386777,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057714,1,"LA POSTE",27.140959,-3.404569,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057721,1,"BOUFFAN",43.534882,5.415024,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057723,1,"MALACRIDA",43.514103,5.470171,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057725,1,"LES TROIS MOULINS",43.537113,5.452898,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057727,1,"PONT DE L'ARC",43.509499,5.44075,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057730,1,"MOULIN BERNARD",43.510071,5.443099,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057732,1,"GUIRAMANDE",43.499989,5.443041,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057734,1,"BOMPARS",43.498154,5.441323,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057736,1,"HAUTS MALOUESSE",43.490933,5.437026,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057744,1,"CHURCHILL",43.519008,5.445506,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057750,1,"CLOS BERNADETTE",43.51712,5.435536,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057751,1,"ARC MEYRAN ZOLA",43.511619,5.461663,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057755,1,"PARKING CARCASSONNE",43.522793,5.46046,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057757,1,"LA TORSE",43.521129,5.467622,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057759,1,"GRAND THEATRE DE PROVENCE",43.52676,5.438083,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057775,1,"BESSI",43.579342,5.410784,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057777,1,"SAN PEYRE",43.581634,5.424593,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057779,1,"ROSTOLANE",43.582035,5.425738,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057786,1,"D 13",43.582092,5.457022,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057787,1,"J 1",43.5467,5.521532,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057794,1,"J 9",43.545365,5.514146,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057807,1,"FERRATO",43.563069,5.459657,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057810,1,"FONTFIGUIERE",43.538147,5.421212,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057811,1,"ITALIE",43.526859,5.452324,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057812,1,"MUSEE GRANET",43.526058,5.453011,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057813,1,"MOURET GARE ROUTIERE",43.522881,5.436643,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057816,1,"PISCINE YVES BLANC",43.526402,5.460345,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057824,1,"SAINT-MITRE DES CHAMPS",43.536713,5.419093,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057833,1,"Cc BOUFFAN",43.534305,5.416285,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057837,1,"GIRELLES",43.528751,5.40666,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057839,1,"LEGROS",43.523651,5.435192,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057841,1,"MARECHAL LECLERC",43.521816,5.435078,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057843,1,"MARECHAL JUIN",43.519695,5.433817,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057845,1,"HIPPOCAMPE",43.532246,5.416457,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057847,1,"PLAN D'AILLANE QUAI 10",43.498841,5.372682,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057848,1,"ROBERT",43.52206,5.452469,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057850,1,"ORAISON",43.521573,5.454051,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057868,1,"GRANDE TERRE",43.600425,5.486758,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057872,1,"REPARADE",43.587307,5.432786,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057874,1,"ECOLE VAL SAINT-ANDRE",43.518532,5.466893,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057877,1,"AMADO",43.534996,5.416858,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057881,1,"PONT DE L'ARC - MAIRIE",43.509548,5.438196,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057884,1,"SAINT-DONAT",43.543476,5.452553,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057890,1,"LES CIGALES",43.51815,5.458913,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057893,1,"MEYRAN",43.511791,5.453871,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057895,1,"NOVOTEL",43.511791,5.45748,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057897,1,"PEROUSE",43.524738,5.435822,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057898,1,"MONTAIGUET",43.504456,5.446078,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057900,1,"ENSOLEILLE",43.512535,5.423676,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057901,1,"BULL",43.485779,5.34243,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057908,1,"VIVIEN",43.528119,5.405169,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057910,1,"ROND-POINT DE GALICE",43.530926,5.417029,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057914,1,"PONT DE LA FIGUIERE",43.51554,5.434648,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057941,1,"D 9",43.581634,5.430207,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057942,1,"J 15 BIS",43.541698,5.493176,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057943,1,"GUIRAMANDE SILO",43.509457,5.446972,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057945,1,"BOURGET",43.519615,5.456453,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057947,1,"PLAINE DES DES",43.488529,5.435192,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057949,1,"GIANOTTI",43.534423,5.447855,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057950,1,"D 19",43.559059,5.448657,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057951,1,"E 15",43.558315,5.451351,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057952,1,"E 12",43.561294,5.460689,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057955,1,"PONT ROUT",43.547486,5.413305,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057957,1,"PAUL JULIEN",43.512592,5.48206,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057963,1,"PRESIDENTE",43.590382,5.457469,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057964,1,"PRESIDENTE",43.50938,5.457469,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057967,1,"LEON BLUM",43.524078,5.431244,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057968,1,"ADM ZOLA QUAI 1",43.51173,5.461555,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057969,1,"ADM ZOLA QUAI 2",43.511669,5.461527,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057970,1,"ADM ZOLA QUAI 3",43.511623,5.461499,,1,,Europe/Paris,,OAB, +OAB:SA:CTP1057976,1,"BEAUVALLON",43.541436,5.439327,,1,,Europe/Paris,,OAB, +OAC:SA:CTP120015,1,"Gambetta",43.524746,5.454518,,1,,Europe/Paris,,OAC, +OAC:SA:CTP120016,1,"Saint Jean",43.525112,5.454578,,1,,Europe/Paris,,OAC, +OAC:SA:CTP120017,1,"Miollis",43.528024,5.455184,,1,,Europe/Paris,,OAC, +OAC:SA:CTP120026,1,"Briand",43.532648,5.448872,,1,,Europe/Paris,,OAC, +OAC:SA:CTP120031,1,"Sous Prefecture",43.519761,5.442672,,1,,Europe/Paris,,OAC, +OAC:SA:CTP120041,1,"Pont de l Arc",43.510219,5.441075,,1,,Europe/Paris,,OAC, +OAC:SA:CTP120045,1,"L Armeliere",43.510096,5.436172,,1,,Europe/Paris,,OAC, +OAC:SA:CTP120051,1,"Mere de Dieu Brulee",43.505274,5.435469,,1,,Europe/Paris,,OAC, +OAC:SA:CTP120059,1,"Beausoleil",43.514361,5.464193,,1,,Europe/Paris,,OAC, +OAC:SA:CTP120068,1,"Sainte Anne",43.521329,5.458655,,1,,Europe/Paris,,OAC, +OAC:SA:CTP120071,1,"Gautier",43.521025,5.455406,,1,,Europe/Paris,,OAC, +OAC:SA:CTP120074,1,"Saint Jerome",43.517557,5.459825,,1,,Europe/Paris,,OAC, +OAC:SA:CTP120076,1,"Tour d Aygosi",43.519697,5.461396,,1,,Europe/Paris,,OAC, +OAC:SA:CTP120079,1,"G.R. Belges",43.523895,5.442974,,1,,Europe/Paris,,OAC, +OAC:SA:CTP120080,1,"Moulin",43.535791,5.45769,,1,,Europe/Paris,,OAC, +OAC:SA:CTP120091,1,"Les Platanes",43.555684,5.459501,,1,,Europe/Paris,,OAC, +OAC:SA:CTP120093,1,"Arts et Metiers",43.529746,5.454002,,1,,Europe/Paris,,OAC, +OAC:SA:CTP120095,1,"Lycee Cezanne",43.533021,5.458912,,1,,Europe/Paris,,OAC, +OAC:SA:CTP120099,1,"Pt Roquefavour",43.535709,5.469507,,1,,Europe/Paris,,OAC, +OAC:SA:CTP120106,1,"Minimes",43.528601,5.436269,,1,,Europe/Paris,,OAC, +OAC:SA:CTP120111,1,"Amadour",43.533174,5.427011,,1,,Europe/Paris,,OAC, +OAC:SA:CTP120113,1,"La Raymonde",43.534753,5.423461,,1,,Europe/Paris,,OAC, +OAC:SA:CTP120115,1,"Saint Mitre",43.536167,5.421553,,1,,Europe/Paris,,OAC, +OAC:SA:CTP120117,1,"Pontier",43.532871,5.436892,,1,,Europe/Paris,,OAC, +OAC:SA:CTP120125,1,"Rapine",43.552148,5.424336,,1,,Europe/Paris,,OAC, +OAC:SA:CTP120127,1,"Celony",43.555723,5.419512,,1,,Europe/Paris,,OAC, +OAC:SA:CTP120131,1,"La Calade",43.568344,5.398757,,1,,Europe/Paris,,OAC, +OAC:SA:CTP120137,1,"Les Freres Gris",43.496256,5.433563,,1,,Europe/Paris,,OAC, +OAC:SA:CTP120139,1,"Bon Rencontre",43.492222,5.429846,,1,,Europe/Paris,,OAC, +OAC:SA:CTP120141,1,"La Blaque",43.489315,5.425674,,1,,Europe/Paris,,OAC, +OAC:SA:CTP120143,1,"Chapuis",43.486822,5.422249,,1,,Europe/Paris,,OAC, +OAC:SA:CTP120145,1,"Luynes Sud",43.483661,5.417744,,1,,Europe/Paris,,OAC, +OAC:SA:CTP120149,1,"Rampelin",43.477332,5.414208,,1,,Europe/Paris,,OAC, +OAC:SA:CTP120151,1,"Trois Pigeons",43.472988,5.409781,,1,,Europe/Paris,,OAC, +OAC:SA:CTP120154,1,"Les Granettes",43.535042,5.393681,,1,,Europe/Paris,,OAC, +OAC:SA:CTP120156,1,"Cc Les Milles",43.504334,5.394764,,1,,Europe/Paris,,OAC, +OAC:SA:CTP120157,1,"Couton",43.503273,5.390934,,1,,Europe/Paris,,OAC, +OAC:SA:CTP120159,1,"Mairie Milles",43.503309,5.385765,,1,,Europe/Paris,,OAC, +OAC:SA:CTP120162,1,"Requier",43.500263,5.382528,,1,,Europe/Paris,,OAC, +OAC:SA:CTP120168,1,"Foucault",43.487919,5.359257,,1,,Europe/Paris,,OAC, +OAC:SA:CTP120170,1,"Pole d Activites",43.491232,5.373508,,1,,Europe/Paris,,OAC, +OAC:SA:CTP120171,1,"Parc Club Golf",43.485506,5.361706,,1,,Europe/Paris,,OAC, +OAC:SA:CTP120175,1,"Vallon des Mourgues",43.550119,5.390815,,1,,Europe/Paris,,OAC, +OAC:SA:CTP120188,1,"CLG Jas Bouffan",43.525245,5.422209,,1,,Europe/Paris,,OAC, +OAC:SA:CTP120189,1,"Corsy",43.528163,5.42988,,1,,Europe/Paris,,OAC, +OAC:SA:CTP120512,1,"La Mounine",43.462189,5.406786,,1,,Europe/Paris,,OAC, +OAC:SA:CTP120514,1,"Centre Commercial Rhin et Danube",43.459777,5.405239,,1,,Europe/Paris,,OAC, +OAC:SA:CTP120518,1,"La Croix d Or",43.452528,5.400483,,1,,Europe/Paris,,OAC, +OAC:SA:CTP120520,1,"Pont de Bouc",43.447873,5.3975,,1,,Europe/Paris,,OAC, +OAC:SA:CTP120522,1,"Plan Marseillais",43.44382,5.397628,,1,,Europe/Paris,,OAC, +OAC:SA:CTP120526,1,"Violesi",43.43716,5.398882,,1,,Europe/Paris,,OAC, +OAC:SA:CTP120528,1,"Petites Bastides",43.432113,5.395719,,1,,Europe/Paris,,OAC, +OAC:SA:CTP120530,1,"Les Chabauds",43.427943,5.389473,,1,,Europe/Paris,,OAC, +OAC:SA:CTP120532,1,"La Malle",43.426417,5.387991,,1,,Europe/Paris,,OAC, +OAC:SA:CTP120536,1,"Pin Porte Rouge",43.419709,5.379876,,1,,Europe/Paris,,OAC, +OAC:SA:CTP120539,1,"Les Tilleuls",43.436641,5.417815,,1,,Europe/Paris,,OAC, +OAC:SA:CTP120541,1,"La Salle Les Marronniers",43.43999,5.423583,,1,,Europe/Paris,,OAC, +OAC:SA:CTP120547,1,"Plein Soleil",43.447202,5.416113,,1,,Europe/Paris,,OAC, +OAC:SA:CTP120557,1,"Malbergue",43.450943,5.422991,,1,,Europe/Paris,,OAC, +OAC:SA:CTP120559,1,"Ecole des Pins",43.452428,5.417255,,1,,Europe/Paris,,OAC, +OAC:SA:CTP120563,1,"Collet Blanc",43.447578,5.438136,,1,,Europe/Paris,,OAC, +OAC:SA:CTP120565,1,"Cougnaou",43.446514,5.410984,,1,,Europe/Paris,,OAC, +OAC:SA:CTP120569,1,"La Babiole",43.436281,5.404224,,1,,Europe/Paris,,OAC, +OAC:SA:CTP120571,1,"La Salle Le Merle",43.438081,5.424545,,1,,Europe/Paris,,OAC, +OAC:SA:CTP120573,1,"Beausoleil",43.464621,5.414184,,1,,Europe/Paris,,OAC, +OAC:SA:CTP120577,1,"Chateaubriand",43.444228,5.41712,,1,,Europe/Paris,,OAC, +OAC:SA:CTP120579,1,"Clos des Ecrivains",43.44516,5.43196,,1,,Europe/Paris,,OAC, +OAC:SA:CTP120580,1,"Clos des Pins",43.458736,5.396164,,1,,Europe/Paris,,OAC, +OAC:SA:CTP120585,1,"La Cypriere",43.459336,5.416751,,1,,Europe/Paris,,OAC, +OAC:SA:CTP120590,1,"Les Amandiers",43.4588,5.399491,,1,,Europe/Paris,,OAC, +OAC:SA:CTP120594,1,"Escandihado",43.458395,5.412275,,1,,Europe/Paris,,OAC, +OAC:SA:CTP120595,1,"Lou Cantounet",43.439512,5.4168,,1,,Europe/Paris,,OAC, +OAC:SA:CTP120596,1,"Montaury",43.43988,5.405392,,1,,Europe/Paris,,OAC, +OAC:SA:CTP120597,1,"Prevert",43.448821,5.431446,,1,,Europe/Paris,,OAC, +OAC:SA:CTP120598,1,"Sainte Anne",43.453893,5.414312,,1,,Europe/Paris,,OAC, +OAC:SA:CTP120662,1,"Centre Commercial de Calas",43.46522,5.352948,,1,,Europe/Paris,,OAC, +OAC:SA:CTP120664,1,"Tennis",43.463978,5.347038,,1,,Europe/Paris,,OAC, +OAC:SA:CTP120667,1,"Domaine du Realtor",43.47042,5.333507,,1,,Europe/Paris,,OAC, +OAC:SA:CTP120672,1,"Saint Martin",43.446492,5.369356,,1,,Europe/Paris,,OAC, +OAC:SA:CTP120673,1,"Les Patelles",43.444676,5.372585,,1,,Europe/Paris,,OAC, +OAC:SA:CTP120677,1,"Route de Rans",43.439488,5.379676,,1,,Europe/Paris,,OAC, +OAC:SA:CTP120679,1,"Le Puits Neuf",43.440571,5.376728,,1,,Europe/Paris,,OAC, +OAC:SA:CTP120681,1,"Le Couladou",43.436057,5.379779,,1,,Europe/Paris,,OAC, +OAC:SA:CTP120683,1,"Le Verger",43.429648,5.382829,,1,,Europe/Paris,,OAC, +OAC:SA:CTP120685,1,"La Trebillane",43.460841,5.356044,,1,,Europe/Paris,,OAC, +OAC:SA:CTP120694,1,"L Eclair",43.46216,5.343824,,1,,Europe/Paris,,OAC, +OAC:SA:CTP120695,1,"Domaine de l Arbois",43.469804,5.343987,,1,,Europe/Paris,,OAC, +OAC:SA:CTP120781,1,"La Geinette",43.488381,5.597666,,1,,Europe/Paris,,OAC, +OAC:SA:CTP120784,1,"La Gavotte",43.488768,5.592945,,1,,Europe/Paris,,OAC, +OAC:SA:CTP120785,1,"La Tuilerie",43.490316,5.585199,,1,,Europe/Paris,,OAC, +OAC:SA:CTP120787,1,"Le Village N7",43.490056,5.56927,,1,,Europe/Paris,,OAC, +OAC:SA:CTP120789,1,"La Cardeline N7",43.489001,5.552789,,1,,Europe/Paris,,OAC, +OAC:SA:CTP120972,1,"Les Lampis",43.565254,5.358249,,1,,Europe/Paris,,OAC, +OAC:SA:CTP120974,1,"Vieille",43.568697,5.360035,,1,,Europe/Paris,,OAC, +OAC:SA:CTP120978,1,"La Cooperative",43.570525,5.355888,,1,,Europe/Paris,,OAC, +OAC:SA:CTP120981,1,"Les Logissons",43.571212,5.362579,,1,,Europe/Paris,,OAC, +OAC:SA:CTP120983,1,"Les Fourques",43.568942,5.368288,,1,,Europe/Paris,,OAC, +OAC:SA:CTP120985,1,"Le Garage",43.567263,5.372119,,1,,Europe/Paris,,OAC, +OAC:SA:CTP120987,1,"Les Figons",43.559894,5.381514,,1,,Europe/Paris,,OAC, +OAC:SA:CTP120988,1,"De Gaulle",43.564675,5.377136,,1,,Europe/Paris,,OAC, +OAC:SA:CTP120989,1,"Bompard",43.5444,5.347983,,1,,Europe/Paris,,OAC, +OAC:SA:CTP120993,1,"Les Gres Hauts",43.550706,5.349548,,1,,Europe/Paris,,OAC, +OAC:SA:CTP120994,1,"Les Cardonniers",43.560398,5.352672,,1,,Europe/Paris,,OAC, +OAC:SA:CTP120997,1,"Les Tasselles",43.558207,5.36204,,1,,Europe/Paris,,OAC, +OAC:SA:CTP121000,1,"Rastel",43.573858,5.344644,,1,,Europe/Paris,,OAC, +OAC:SA:CTP121134,1,"Halte Routiere",43.453418,5.558236,,1,,Europe/Paris,,OAC, +OAC:SA:CTP121137,1,"Jas de Bassas",43.444568,5.552507,,1,,Europe/Paris,,OAC, +OAC:SA:CTP121139,1,"La Barque",43.477477,5.538863,,1,,Europe/Paris,,OAC, +OAC:SA:CTP121142,1,"Ouviere",43.453247,5.554078,,1,,Europe/Paris,,OAC, +OAC:SA:CTP121143,1,"GR SNCF Quai 01",43.455513,5.464085,,1,,Europe/Paris,,OAC, +OAC:SA:CTP121318,1,"Le Deffend",43.630947,5.636072,,1,,Europe/Paris,,OAC, +OAC:SA:CTP121319,1,"Sainte Marguerite",43.635025,5.630516,,1,,Europe/Paris,,OAC, +OAC:SA:CTP121321,1,"Vallon des Asseaux",43.636361,5.6232,,1,,Europe/Paris,,OAC, +OAC:SA:CTP121323,1,"Saint Jean",43.639409,5.61574,,1,,Europe/Paris,,OAC, +OAC:SA:CTP121325,1,"Le Logis d Anne",43.666897,5.644775,,1,,Europe/Paris,,OAC, +OAC:SA:CTP121334,1,"Valdenan",43.644156,5.270791,,1,,Europe/Paris,,OAC, +OAC:SA:CTP121336,1,"Saint Louis",43.648307,5.265035,,1,,Europe/Paris,,OAC, +OAC:SA:CTP121340,1,"Saint Roch",43.657077,5.254967,,1,,Europe/Paris,,OAC, +OAC:SA:CTP121664,1,"La Baraque",43.635338,5.516866,,1,,Europe/Paris,,OAC, +OAC:SA:CTP121666,1,"La Carriere",43.630288,5.512028,,1,,Europe/Paris,,OAC, +OAC:SA:CTP121669,1,"Pre de Ville",43.632376,5.527035,,1,,Europe/Paris,,OAC, +OAC:SA:CTP121670,1,"Mediatheque",43.638381,5.527943,,1,,Europe/Paris,,OAC, +OAC:SA:CTP121672,1,"Les Trois Gares",43.643059,5.541089,,1,,Europe/Paris,,OAC, +OAC:SA:CTP121684,1,"Hotel de Ville",43.486336,5.493613,,1,,Europe/Paris,,OAC, +OAC:SA:CTP121690,1,"Les Coteaux Rouges",43.481848,5.497109,,1,,Europe/Paris,,OAC, +OAC:SA:CTP121692,1,"La Croix",43.477464,5.491817,,1,,Europe/Paris,,OAC, +OAC:SA:CTP121694,1,"Le Plan de Meyreuil",43.473043,5.495571,,1,,Europe/Paris,,OAC, +OAC:SA:CTP121696,1,"Bachasson",43.487182,5.529938,,1,,Europe/Paris,,OAC, +OAC:SA:CTP121698,1,"Les Sauvaires",43.469065,5.497182,,1,,Europe/Paris,,OAC, +OAC:SA:CTP121700,1,"Le Canet",43.493644,5.524066,,1,,Europe/Paris,,OAC, +OAC:SA:CTP121702,1,"Pont de Bayeux",43.50154,5.515567,,1,,Europe/Paris,,OAC, +OAC:SA:CTP121837,1,"Les Pins",43.412966,5.373357,,1,,Europe/Paris,,OAC, +OAC:SA:CTP121845,1,"La Renardiere",43.41312,5.301954,,1,,Europe/Paris,,OAC, +OAC:SA:CTP121861,1,"Les Oliviers",43.389525,5.344511,,1,,Europe/Paris,,OAC, +OAC:SA:CTP121863,1,"Cadeneaux",43.395024,5.343561,,1,,Europe/Paris,,OAC, +OAC:SA:CTP121871,1,"Les Romarins",43.401531,5.339453,,1,,Europe/Paris,,OAC, +OAC:SA:CTP121873,1,"Le Ripert",43.398192,5.342213,,1,,Europe/Paris,,OAC, +OAC:SA:CTP121899,1,"Square General De Gaulle",43.409073,5.321924,,1,,Europe/Paris,,OAC, +OAC:SA:CTP121901,1,"La Lecque",43.446384,5.645306,,1,,Europe/Paris,,OAC, +OAC:SA:CTP121903,1,"Le Village",43.446711,5.640265,,1,,Europe/Paris,,OAC, +OAC:SA:CTP121905,1,"Le Lavoir",43.450129,5.637824,,1,,Europe/Paris,,OAC, +OAC:SA:CTP121907,1,"Le Vieux Moulin",43.457622,5.629647,,1,,Europe/Paris,,OAC, +OAC:SA:CTP121909,1,"La Corneirelle",43.463164,5.611846,,1,,Europe/Paris,,OAC, +OAC:SA:CTP121912,1,"Les Michels",43.447056,5.601742,,1,,Europe/Paris,,OAC, +OAC:SA:CTP121943,1,"Centre Peyrolles",43.646328,5.586992,,1,,Europe/Paris,,OAC, +OAC:SA:CTP121947,1,"Les Violettes",43.64552,5.596768,,1,,Europe/Paris,,OAC, +OAC:SA:CTP122039,1,"Les Fanettes",43.652579,5.459059,,1,,Europe/Paris,,OAC, +OAC:SA:CTP122041,1,"Les Savoyants",43.648495,5.462268,,1,,Europe/Paris,,OAC, +OAC:SA:CTP122043,1,"La Groule",43.644443,5.463267,,1,,Europe/Paris,,OAC, +OAC:SA:CTP122045,1,"Les Danjauds",43.641408,5.463718,,1,,Europe/Paris,,OAC, +OAC:SA:CTP122047,1,"Les Bastides",43.636082,5.460486,,1,,Europe/Paris,,OAC, +OAC:SA:CTP122049,1,"Saint Roch",43.627492,5.461384,,1,,Europe/Paris,,OAC, +OAC:SA:CTP122055,1,"Avaux de Jean",43.679727,5.406949,,1,,Europe/Paris,,OAC, +OAC:SA:CTP122057,1,"Les Goirands",43.661274,5.451258,,1,,Europe/Paris,,OAC, +OAC:SA:CTP122059,1,"Halte St Canadet",43.655932,5.469171,,1,,Europe/Paris,,OAC, +OAC:SA:CTP122061,1,"Les Viaux",43.661431,5.440732,,1,,Europe/Paris,,OAC, +OAC:SA:CTP122063,1,"Bas du Cours",43.661856,5.440796,,1,,Europe/Paris,,OAC, +OAC:SA:CTP122066,1,"Le Puits Neuf",43.664995,5.428882,,1,,Europe/Paris,,OAC, +OAC:SA:CTP122068,1,"Les Gielles",43.671625,5.417102,,1,,Europe/Paris,,OAC, +OAC:SA:CTP122070,1,"Lotis.Rousset",43.658993,5.41954,,1,,Europe/Paris,,OAC, +OAC:SA:CTP122071,1,"Cooperative",43.665139,5.435243,,1,,Europe/Paris,,OAC, +OAC:SA:CTP122073,1,"Les Farandoles",43.66561,5.431223,,1,,Europe/Paris,,OAC, +OAC:SA:CTP122077,1,"Eglise Vieille",43.659196,5.41346,,1,,Europe/Paris,,OAC, +OAC:SA:CTP122090,1,"Legion Etrangere",43.523762,5.698565,,1,,Europe/Paris,,OAC, +OAC:SA:CTP122124,1,"L Etape",43.626683,5.349442,,1,,Europe/Paris,,OAC, +OAC:SA:CTP122146,1,"La Baume",43.715106,5.32418,,1,,Europe/Paris,,OAC, +OAC:SA:CTP122148,1,"Le Trou de Magnan",43.714496,5.318515,,1,,Europe/Paris,,OAC, +OAC:SA:CTP122150,1,"La Jacourelette",43.713209,5.311845,,1,,Europe/Paris,,OAC, +OAC:SA:CTP122152,1,"Hotel de Ville",43.714876,5.307643,,1,,Europe/Paris,,OAC, +OAC:SA:CTP122157,1,"Le Grand Clos",43.71857,5.30554,,1,,Europe/Paris,,OAC, +OAC:SA:CTP122186,1,"College",43.478983,5.624577,,1,,Europe/Paris,,OAC, +OAC:SA:CTP122193,1,"Les Bannettes",43.486963,5.608962,,1,,Europe/Paris,,OAC, +OAC:SA:CTP122195,1,"Victoire",43.473294,5.609387,,1,,Europe/Paris,,OAC, +OAC:SA:CTP122197,1,"Perroy",43.469098,5.608124,,1,,Europe/Paris,,OAC, +OAC:SA:CTP122199,1,"La Plaine",43.470558,5.598459,,1,,Europe/Paris,,OAC, +OAC:SA:CTP122201,1,"Villevieille",43.471719,5.614891,,1,,Europe/Paris,,OAC, +OAC:SA:CTP122241,1,"Le Bouquet",43.523001,5.568054,,1,,Europe/Paris,,OAC, +OAC:SA:CTP122244,1,"Centre",43.621102,5.298027,,1,,Europe/Paris,,OAC, +OAC:SA:CTP122247,1,"La Galinette",43.61835,5.308022,,1,,Europe/Paris,,OAC, +OAC:SA:CTP122248,1,"Cave cooperative",43.622864,5.298881,,1,,Europe/Paris,,OAC, +OAC:SA:CTP122274,1,"Hotel de Ville",43.685683,5.396754,,1,,Europe/Paris,,OAC, +OAC:SA:CTP122289,1,"3 Bons Dieux",43.535593,5.47122,,1,,Europe/Paris,,OAC, +OAC:SA:CTP122291,1,"Domaine Prignon",43.538033,5.484569,,1,,Europe/Paris,,OAC, +OAC:SA:CTP122293,1,"Collongue",43.539969,5.496614,,1,,Europe/Paris,,OAC, +OAC:SA:CTP122296,1,"Ch. Savoyards",43.545499,5.514388,,1,,Europe/Paris,,OAC, +OAC:SA:CTP122298,1,"Mairie",43.547687,5.520652,,1,,Europe/Paris,,OAC, +OAC:SA:CTP122301,1,"Les Bonfillons",43.550526,5.540075,,1,,Europe/Paris,,OAC, +OAC:SA:CTP122616,1,"Petit Chemin de Bouc",43.431617,5.435387,,1,,Europe/Paris,,OAC, +OAC:SA:CTP122617,1,"Cours des Heros",43.429425,5.435985,,1,,Europe/Paris,,OAC, +OAC:SA:CTP122619,1,"Peche a la Truite",43.443603,5.439893,,1,,Europe/Paris,,OAC, +OAC:SA:CTP122622,1,"Les Migraniers",43.434381,5.43681,,1,,Europe/Paris,,OAC, +OAC:SA:CTP122627,1,"Gare de Simiane",43.434692,5.426152,,1,,Europe/Paris,,OAC, +OAC:SA:CTP122661,1,"La Cause",43.510746,5.492791,,1,,Europe/Paris,,OAC, +OAC:SA:CTP122664,1,"Les Artauds",43.514719,5.499414,,1,,Europe/Paris,,OAC, +OAC:SA:CTP122667,1,"La Cremade",43.519524,5.511683,,1,,Europe/Paris,,OAC, +OAC:SA:CTP122668,1,"Halte Routiere",43.448723,5.682953,,1,,Europe/Paris,,OAC, +OAC:SA:CTP122669,1,"Le Vallat",43.44997,5.674564,,1,,Europe/Paris,,OAC, +OAC:SA:CTP122679,1,"Les Plaines",43.555827,5.570199,,1,,Europe/Paris,,OAC, +OAC:SA:CTP122680,1,"Chemin St Francois",43.554762,5.576605,,1,,Europe/Paris,,OAC, +OAC:SA:CTP122682,1,"Les Cabassols",43.553854,5.5803,,1,,Europe/Paris,,OAC, +OAC:SA:CTP122684,1,"Le Chenil",43.555014,5.588738,,1,,Europe/Paris,,OAC, +OAC:SA:CTP122686,1,"Ouest",43.555152,5.597582,,1,,Europe/Paris,,OAC, +OAC:SA:CTP122719,1,"Les Floralies",43.576003,5.469179,,1,,Europe/Paris,,OAC, +OAC:SA:CTP122721,1,"Rd Pt de la Gare",43.587484,5.476237,,1,,Europe/Paris,,OAC, +OAC:SA:CTP122723,1,"Les Logissons",43.580501,5.471211,,1,,Europe/Paris,,OAC, +OAC:SA:CTP122725,1,"La Touloubre",43.582403,5.47246,,1,,Europe/Paris,,OAC, +OAC:SA:CTP122727,1,"Les Quatre Tours",43.59082,5.479197,,1,,Europe/Paris,,OAC, +OAC:SA:CTP122729,1,"Les Cabassols",43.593131,5.481721,,1,,Europe/Paris,,OAC, +OAC:SA:CTP122735,1,"L Oratoire",43.610995,5.468032,,1,,Europe/Paris,,OAC, +OAC:SA:CTP122737,1,"Les Bigourdins",43.609007,5.466866,,1,,Europe/Paris,,OAC, +OAC:SA:CTP122743,1,"Matins Clairs",43.593971,5.476069,,1,,Europe/Paris,,OAC, +OAC:SA:CTP122753,1,"Les Batailles",43.540539,5.269304,,1,,Europe/Paris,,OAC, +OAC:SA:CTP122755,1,"Val Lourdes",43.544796,5.278737,,1,,Europe/Paris,,OAC, +OAC:SA:CTP122757,1,"La Lecque",43.546194,5.285057,,1,,Europe/Paris,,OAC, +OAC:SA:CTP122761,1,"Les Bonfils",43.540834,5.296764,,1,,Europe/Paris,,OAC, +OAC:SA:CTP122765,1,"Le Berry",43.541673,5.304453,,1,,Europe/Paris,,OAC, +OAC:SA:CTP122767,1,"Vignes Longues",43.54707,5.310307,,1,,Europe/Paris,,OAC, +OAC:SA:CTP122769,1,"L Etoile",43.546775,5.324092,,1,,Europe/Paris,,OAC, +OAC:SA:CTP122771,1,"Les Peyres",43.546573,5.32615,,1,,Europe/Paris,,OAC, +OAC:SA:CTP122773,1,"Vignes Longues Hautes",43.546804,5.319548,,1,,Europe/Paris,,OAC, +OAC:SA:CTP122775,1,"Les Vences",43.54545,5.34126,,1,,Europe/Paris,,OAC, +OAC:SA:CTP122781,1,"Saint Remy",43.546092,5.332367,,1,,Europe/Paris,,OAC, +OAC:SA:CTP122783,1,"La Cooperative",43.546588,5.293426,,1,,Europe/Paris,,OAC, +OAC:SA:CTP122837,1,"Victor Gelu",43.442883,5.245365,,1,,Europe/Paris,,OAC, +OAC:SA:CTP122851,1,"Mediatheque",43.444491,5.251587,,1,,Europe/Paris,,OAC, +OAC:SA:CTP122853,1,"Petite Garrigue",43.441642,5.253125,,1,,Europe/Paris,,OAC, +OAC:SA:CTP122857,1,"Bd D. Padovani",43.436925,5.257234,,1,,Europe/Paris,,OAC, +OAC:SA:CTP122897,1,"Bastide Blanche",43.431289,5.266144,,1,,Europe/Paris,,OAC, +OAC:SA:CTP122901,1,"Le Griffon",43.427506,5.272177,,1,,Europe/Paris,,OAC, +OAC:SA:CTP122902,1,"Le Griffon Clinique",43.427183,5.270804,,1,,Europe/Paris,,OAC, +OAC:SA:CTP122905,1,"Mairie Quartier Sud",43.426016,5.278936,,1,,Europe/Paris,,OAC, +OAC:SA:CTP122907,1,"Le Repos",43.425128,5.282159,,1,,Europe/Paris,,OAC, +OAC:SA:CTP122911,1,"Fontblanche",43.422384,5.286239,,1,,Europe/Paris,,OAC, +OAC:SA:CTP122932,1,"Collet Poste",43.557222,5.244151,,1,,Europe/Paris,,OAC, +OAC:SA:CTP122938,1,"Avenue de l Europe",43.554122,5.240529,,1,,Europe/Paris,,OAC, +OAC:SA:CTP122944,1,"Moulin du Pont",43.543088,5.25908,,1,,Europe/Paris,,OAC, +OAC:SA:CTP123548,1,"Saint Canadet",43.630601,5.458078,,1,,Europe/Paris,,OAC, +OAC:SA:CTP123651,1,"Zone Artisanale",43.493267,5.369074,,1,,Europe/Paris,,OAC, +OAC:SA:CTP123654,1,"Duchesne",43.492046,5.372397,,1,,Europe/Paris,,OAC, +OAC:SA:CTP123658,1,"Ampere",43.486277,5.379576,,1,,Europe/Paris,,OAC, +OAC:SA:CTP123660,1,"Bessemer",43.484227,5.382243,,1,,Europe/Paris,,OAC, +OAC:SA:CTP123662,1,"Berthier",43.48103,5.37932,,1,,Europe/Paris,,OAC, +OAC:SA:CTP123664,1,"La Robole",43.478053,5.375586,,1,,Europe/Paris,,OAC, +OAC:SA:CTP123666,1,"Les Grottes",43.479008,5.370919,,1,,Europe/Paris,,OAC, +OAC:SA:CTP123668,1,"Pichaury",43.479862,5.367505,,1,,Europe/Paris,,OAC, +OAC:SA:CTP123670,1,"Lagremeuse",43.479703,5.355321,,1,,Europe/Paris,,OAC, +OAC:SA:CTP123681,1,"Leclerc",43.693526,5.50371,,1,,Europe/Paris,,OAC, +OAC:SA:CTP123737,1,"Clos Saint Imbert",43.469108,5.339075,,1,,Europe/Paris,,OAC, +OAC:SA:CTP123741,1,"Jean Moulin",43.461369,5.350154,,1,,Europe/Paris,,OAC, +OAC:SA:CTP123746,1,"Parking Cezanne",43.663395,5.43603,,1,,Europe/Paris,,OAC, +OAC:SA:CTP123748,1,"Vauclaire",43.64941,5.486956,,1,,Europe/Paris,,OAC, +OAC:SA:CTP123750,1,"Usine a Mais",43.659148,5.460345,,1,,Europe/Paris,,OAC, +OAC:SA:CTP123752,1,"La Roubine",43.663034,5.441397,,1,,Europe/Paris,,OAC, +OAC:SA:CTP123754,1,"La Cride",43.647428,5.421859,,1,,Europe/Paris,,OAC, +OAC:SA:CTP123756,1,"Avenue du Stade",43.660933,5.427067,,1,,Europe/Paris,,OAC, +OAC:SA:CTP123758,1,"Barral",43.654535,5.453902,,1,,Europe/Paris,,OAC, +OAC:SA:CTP123762,1,"Cabane",43.657843,5.447108,,1,,Europe/Paris,,OAC, +OAC:SA:CTP123768,1,"La France",43.483866,5.636299,,1,,Europe/Paris,,OAC, +OAC:SA:CTP123771,1,"Cabriliverni",43.477264,5.648621,,1,,Europe/Paris,,OAC, +OAC:SA:CTP123775,1,"La Clairiere",43.484707,5.608037,,1,,Europe/Paris,,OAC, +OAC:SA:CTP123778,1,"Les Planes Nord",43.486284,5.62125,,1,,Europe/Paris,,OAC, +OAC:SA:CTP123779,1,"Nouveau",43.485072,5.623862,,1,,Europe/Paris,,OAC, +OAC:SA:CTP123785,1,"Les Putis",43.4197,5.459302,,1,,Europe/Paris,,OAC, +OAC:SA:CTP123788,1,"Esplanade Saint Denis",43.661084,5.353319,,1,,Europe/Paris,,OAC, +OAC:SA:CTP123800,1,"College Jean Jaures",43.64664,5.575767,,1,,Europe/Paris,,OAC, +OAC:SA:CTP123802,1,"La Poste",43.597534,5.484755,,1,,Europe/Paris,,OAC, +OAC:SA:CTP123805,1,"CLG St Eutrope",43.540399,5.45231,,1,,Europe/Paris,,OAC, +OAC:SA:CTP123807,1,"Les Faurys",43.594636,5.47142,,1,,Europe/Paris,,OAC, +OAC:SA:CTP123809,1,"Bellegarde",43.531696,5.45163,,1,,Europe/Paris,,OAC, +OAC:SA:CTP123819,1,"Saint Benoit",43.514367,5.461412,,1,,Europe/Paris,,OAC, +OAC:SA:CTP123823,1,"College Marcel Pagnol",43.693825,5.508109,,1,,Europe/Paris,,OAC, +OAC:SA:CTP123825,1,"College Marie Mauron",43.700018,5.501232,,1,,Europe/Paris,,OAC, +OAC:SA:CTP123827,1,"Lycee Val de Durance",43.708847,5.505725,,1,,Europe/Paris,,OAC, +OAC:SA:CTP123853,1,"Saint Christophe",43.708668,5.362138,,1,,Europe/Paris,,OAC, +OAC:SA:CTP123855,1,"College des Garrigues",43.654149,5.326396,,1,,Europe/Paris,,OAC, +OAC:SA:CTP123879,1,"Mazouillette",43.653462,5.476049,,1,,Europe/Paris,,OAC, +OAC:SA:CTP123886,1,"Saint Esteve",43.624982,5.459528,,1,,Europe/Paris,,OAC, +OAC:SA:CTP123888,1,"De la Molle",43.530669,5.438117,,1,,Europe/Paris,,OAC, +OAC:SA:CTP123904,1,"Ecoles maternelles et primaires",43.664537,5.435567,,1,,Europe/Paris,,OAC, +OAC:SA:CTP123906,1,"Place de St Canadet",43.630022,5.456856,,1,,Europe/Paris,,OAC, +OAC:SA:CTP123919,1,"La Piscine",43.689313,5.522646,,1,,Europe/Paris,,OAC, +OAC:SA:CTP123924,1,"Verdun",43.694692,5.510545,,1,,Europe/Paris,,OAC, +OAC:SA:CTP123930,1,"Les Plantiers",43.550465,5.36668,,1,,Europe/Paris,,OAC, +OAC:SA:CTP123936,1,"Duby",43.572578,5.353331,,1,,Europe/Paris,,OAC, +OAC:SA:CTP123938,1,"Surville",43.572435,5.357784,,1,,Europe/Paris,,OAC, +OAC:SA:CTP123945,1,"Artaud",43.568374,5.356577,,1,,Europe/Paris,,OAC, +OAC:SA:CTP123949,1,"CLG Chateau Double",43.531507,5.420549,,1,,Europe/Paris,,OAC, +OAC:SA:CTP123957,1,"Les Acacias",43.570896,5.358325,,1,,Europe/Paris,,OAC, +OAC:SA:CTP123962,1,"Les Collets",43.555844,5.239264,,1,,Europe/Paris,,OAC, +OAC:SA:CTP123966,1,"Quai Saint Louis N 3",43.530371,5.452665,,1,,Europe/Paris,,OAC, +OAC:SA:CTP123967,1,"Quai Saint Louis N 2",43.530584,5.452461,,1,,Europe/Paris,,OAC, +OAC:SA:CTP123970,1,"Lycee International de Luynes",43.480455,5.414662,,1,,Europe/Paris,,OAC, +OAC:SA:CTP123980,1,"Sainte Michelle",43.544114,5.297183,,1,,Europe/Paris,,OAC, +OAC:SA:CTP123982,1,"Les Claux",43.543627,5.299392,,1,,Europe/Paris,,OAC, +OAC:SA:CTP123984,1,"Ecole",43.538458,5.302775,,1,,Europe/Paris,,OAC, +OAC:SA:CTP123990,1,"Hotel de ville",43.655101,5.262574,,1,,Europe/Paris,,OAC, +OAC:SA:CTP123992,1,"Montee d Aix",43.652138,5.263625,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124016,1,"Vauniere",43.443962,5.40561,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124018,1,"Les Tihous",43.433329,5.411851,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124023,1,"Les Vergers",43.45437,5.39615,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124024,1,"Les Muriers",43.46319,5.408999,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124028,1,"Pibou",43.447768,5.427055,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124032,1,"Les Micocouliers",43.4502,5.425373,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124034,1,"Rhin et Danube",43.461104,5.410342,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124036,1,"La Salle Centre Commercial",43.441566,5.423167,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124042,1,"Centre Commercial du Moulin",43.43354,5.430378,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124045,1,"CLG de Simiane",43.432773,5.438453,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124049,1,"Le Chene",43.414845,5.463552,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124050,1,"Les Martinons",43.417502,5.462835,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124053,1,"La Grenouille",43.424394,5.450218,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124054,1,"La Chapelle",43.413737,5.441277,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124057,1,"Les Merentiers",43.415578,5.444542,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124059,1,"La Greou",43.416229,5.446955,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124060,1,"Pont des Putis",43.424592,5.44778,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124062,1,"Chemin du Canal",43.426524,5.440622,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124064,1,"La Gratiane",43.458245,5.415798,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124070,1,"La Tuilerie",43.465446,5.419876,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124074,1,"Hameau du Verger",43.428605,5.413286,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124083,1,"Les Terres Blanches",43.453895,5.417583,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124102,1,"Le Gay",43.464945,5.364977,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124116,1,"Le Siege",43.429616,5.419158,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124132,1,"Vieille route de la Gavotte",43.386545,5.34483,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124142,1,"Le Clos de la Cadiere",43.418135,5.292763,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124156,1,"Centre de Calas",43.459561,5.35334,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124161,1,"Hotel de Ville",43.430685,5.434417,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124172,1,"La Diote",43.42776,5.523566,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124177,1,"La Plaine",43.418908,5.519894,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124187,1,"Super Gassin",43.417194,5.514284,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124188,1,"La Tour",43.417295,5.504922,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124194,1,"Les Vignes Basses",43.421933,5.506894,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124196,1,"Les Rigauds",43.427551,5.489503,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124198,1,"Chateau Bas",43.425978,5.486702,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124200,1,"Ecole des Moulieres",43.4265,5.479455,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124204,1,"Bastides Neuves",43.425128,5.492271,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124206,1,"La Source",43.42517,5.486852,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124209,1,"Les Fabres",43.430021,5.472872,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124210,1,"Sire Marin",43.425169,5.47006,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124222,1,"Les Bastidons",43.475155,5.516321,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124235,1,"La Grande Bastide",43.470778,5.552869,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124244,1,"Le Lavoir",43.524865,5.673067,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124250,1,"Ecole de Chateauneuf le Rouge",43.489071,5.565978,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124270,1,"La Treille",43.456279,5.607579,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124275,1,"Ecole Jean Jaures",43.448838,5.640808,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124282,1,"Gautier",43.511389,5.545845,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124300,1,"Lot Ste Victoire",43.526088,5.68611,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124306,1,"Maison Familiale",43.523111,5.677383,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124310,1,"Les Ecoles",43.48185,5.624107,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124328,1,"Le Stade",43.472031,5.496904,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124424,1,"Le Frere",43.488866,5.376575,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124435,1,"Garcin",43.692461,5.505408,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124446,1,"Les Saugeonnes",43.417626,5.498988,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124449,1,"La Roque",43.429348,5.452442,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124451,1,"Cimetiere",43.429257,5.440639,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124454,1,"La Mule",43.457185,5.40349,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124464,1,"Les Verans",43.548428,5.524075,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124466,1,"Keyrie",43.540088,5.49203,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124468,1,"Les 3 Chemins",43.535229,5.479444,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124470,1,"Fontenaille",43.534058,5.460891,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124473,1,"Rotonde V. Hugo",43.525208,5.446154,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124474,1,"Cassin",43.449215,5.679441,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124475,1,"Cassin Quai 3",43.449406,5.679219,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124476,1,"La Marniere",43.47137,5.607232,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124479,1,"Grand Vallat",43.45192,5.557061,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124482,1,"Puskaric",43.485037,5.491554,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124484,1,"Maison Ste Victoire",43.519523,5.583769,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124486,1,"Camping",43.517494,5.541195,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124488,1,"Les Valladets",43.544571,5.359134,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124490,1,"Les Corindons",43.545375,5.360982,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124492,1,"Tourmaline",43.54575,5.364117,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124494,1,"Serpentine",43.546027,5.366262,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124502,1,"Paul Arene",43.689546,5.5096,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124515,1,"Camping",43.526742,5.682426,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124521,1,"Tarascon",43.696118,5.52117,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124533,1,"La Croix de Gon",43.697961,5.478591,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124536,1,"Setti de Barba",43.691391,5.494016,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124552,1,"Pierre Plantee",43.694187,5.491211,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124556,1,"Mas d Aubere",43.570901,5.468347,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124558,1,"La Petite Mignarde",43.566922,5.465235,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124560,1,"Gare SNCF",43.684822,5.503725,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124562,1,"Les Genets",43.690578,5.519789,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124564,1,"Pierre Augier",43.691447,5.517567,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124580,1,"La Treille Muscate",43.691449,5.49612,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124582,1,"Fontaine Maurel",43.689098,5.499438,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124586,1,"8 Mai 1945",43.684057,5.501469,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124590,1,"ZAC Terre du Fort",43.676866,5.500934,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124592,1,"Le Gue",43.695341,5.495943,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124596,1,"La Devalade",43.696948,5.500101,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124598,1,"Les Jardins",43.698193,5.50187,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124600,1,"Le Pont de Leze",43.699104,5.504426,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124602,1,"Rollin",43.691525,5.504666,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124606,1,"Le Flora",43.691634,5.521625,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124608,1,"Farigoule",43.69143,5.524424,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124612,1,"Le Claux",43.694077,5.531001,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124614,1,"Boiry",43.695096,5.528955,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124616,1,"Republique",43.691644,5.500044,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124618,1,"St Colome",43.704313,5.505038,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124620,1,"Jean Moulin",43.700083,5.505474,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124622,1,"Hameau de Beaumont",43.695784,5.486374,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124626,1,"Les Moulieres",43.697255,5.48222,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124635,1,"Les Robinsons",43.563206,5.359112,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124642,1,"Marcel Pagnol",43.526645,5.423881,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124644,1,"National",43.653591,5.260249,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124654,1,"Centre Saint Paul",43.685715,5.707688,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124657,1,"La Jonquiere",43.55693,5.549344,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124658,1,"Les Bourgarels",43.556383,5.555458,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124662,1,"Village Haut",43.555938,5.603667,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124663,1,"Mouret",43.520071,5.435088,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124666,1,"La Muscatelle",43.483077,5.544076,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124669,1,"Les Cayols",43.429309,5.404545,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124674,1,"Montee des Pins",43.442774,5.439915,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124681,1,"Village des Ormeaux",43.432161,5.424745,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124691,1,"Le Couloubleau",43.634154,5.641954,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124695,1,"Saint Esprit",43.636864,5.642457,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124697,1,"Mairie",43.636997,5.638388,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124704,1,"Arago",43.492486,5.355333,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124733,1,"La Beauvalle",43.514701,5.442736,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124803,1,"Bonaparte",43.52663,5.444518,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124813,1,"Scotto",43.52501,5.428744,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124827,1,"Saint Pierre",43.523021,5.456146,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124829,1,"Saint Thomas",43.531215,5.456825,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124844,1,"Zola",43.532914,5.455156,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124858,1,"Philibert",43.494808,5.342897,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124860,1,"Descartes",43.495503,5.347587,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124863,1,"Quai Saint Louis N 1",43.53098,5.452142,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124871,1,"Malherbe",43.523889,5.447189,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124876,1,"CLG de la chesneraie",43.573197,5.434915,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124877,1,"Roger Bernard",43.689865,5.512743,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124879,1,"Le Claret",43.692612,5.514327,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124880,1,"Notre Dame des Anges",43.694523,5.488997,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124881,1,"Vieux moulin",43.689682,5.498923,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124883,1,"Les Moulins",43.688506,5.497002,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124885,1,"Dourdouille",43.685403,5.501401,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124887,1,"Plaine du Chateau",43.688754,5.502793,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124894,1,"Fontlebre",43.550667,5.456817,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124904,1,"Luberon",43.695954,5.512077,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124906,1,"La Diane",43.694896,5.504789,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124907,1,"Bonnaud",43.689833,5.504525,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124908,1,"Chapelle St Roch",43.687869,5.50557,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124913,1,"Brassens",43.691278,5.502616,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124914,1,"Les Condamines",43.691581,5.532817,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124915,1,"Leon Arnoux",43.690385,5.506988,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124916,1,"Les Festons",43.692932,5.508023,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124930,1,"Clos Riant Les Frenes",43.436476,5.421639,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124947,1,"Les Platanes",43.447322,5.419006,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124948,1,"Vallon de Simiane",43.430853,5.425575,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124950,1,"Le Jabouret",43.427147,5.43898,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124985,1,"La Cardeline",43.4884,5.554755,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124987,1,"Le Portaou",43.417636,5.517699,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124990,1,"Vallon",43.42851,5.530981,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124992,1,"Font de Rigon",43.417283,5.517107,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124994,1,"Les Geines",43.424282,5.500617,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124997,1,"La Creche de Mimet",43.426673,5.487299,,1,,Europe/Paris,,OAC, +OAC:SA:CTP124999,1,"Giono",43.422753,5.498188,,1,,Europe/Paris,,OAC, +OAC:SA:CTP125002,1,"L OPAC",43.4285,5.479824,,1,,Europe/Paris,,OAC, +OAC:SA:CTP125004,1,"Roi Rene",43.523945,5.449861,,1,,Europe/Paris,,OAC, +OAC:SA:CTP125007,1,"CLG Font d Aurumy",43.445849,5.559301,,1,,Europe/Paris,,OAC, +OAC:SA:CTP125017,1,"Les Ribas",43.484509,5.615205,,1,,Europe/Paris,,OAC, +OAC:SA:CTP125044,1,"Peytral",43.532101,5.456885,,1,,Europe/Paris,,OAC, +OAC:SA:CTP125046,1,"Les Moulieres La Source",43.423711,5.480167,,1,,Europe/Paris,,OAC, +OAC:SA:CTP125051,1,"Plan de Campagne",43.421482,5.367598,,1,,Europe/Paris,,OAC, +OAC:SA:CTP125057,1,"Grande Avenue",43.417694,5.35806,,1,,Europe/Paris,,OAC, +OAC:SA:CTP125062,1,"8 mai 1945",43.456298,5.558347,,1,,Europe/Paris,,OAC, +OAC:SA:CTP125064,1,"Nativite",43.512449,5.438395,,1,,Europe/Paris,,OAC, +OAC:SA:CTP125068,1,"Ecole de la Barque",43.478343,5.538522,,1,,Europe/Paris,,OAC, +OAC:SA:CTP125070,1,"Les Pallieres",43.525387,5.677534,,1,,Europe/Paris,,OAC, +OAC:SA:CTP125074,1,"Archimede",43.491629,5.33932,,1,,Europe/Paris,,OAC, +OAC:SA:CTP125084,1,"La Brasse",43.458105,5.375243,,1,,Europe/Paris,,OAC, +OAC:SA:CTP125086,1,"Le Village",43.489728,5.566758,,1,,Europe/Paris,,OAC, +OAC:SA:CTP125087,1,"Arsene Sari",43.487924,5.562106,,1,,Europe/Paris,,OAC, +OAC:SA:CTP125091,1,"Petit Nice",43.449655,5.428368,,1,,Europe/Paris,,OAC, +OAC:SA:CTP125094,1,"Victor Hugo",43.691942,5.498907,,1,,Europe/Paris,,OAC, +OAC:SA:CTP125096,1,"MFR Garachon",43.675037,5.216827,,1,,Europe/Paris,,OAC, +OAC:SA:CTP125106,1,"Val de Tourame",43.590302,5.472253,,1,,Europe/Paris,,OAC, +OAC:SA:CTP125108,1,"Les Residences",43.596738,5.475904,,1,,Europe/Paris,,OAC, +OAC:SA:CTP125115,1,"Molx",43.429517,5.456272,,1,,Europe/Paris,,OAC, +OAC:SA:CTP125123,1,"Pignan",43.419771,5.447771,,1,,Europe/Paris,,OAC, +OAC:SA:CTP125144,1,"Magellan",43.494626,5.355683,,1,,Europe/Paris,,OAC, +OAC:SA:CTP125148,1,"CEA Cadarache",43.700757,5.742096,,1,,Europe/Paris,,OAC, +OAC:SA:CTP127114,1,"Barlatier",43.49265,5.527051,,1,,Europe/Paris,,OAC, +OAC:SA:CTP127118,1,"Clos du Roy",43.620295,5.307074,,1,,Europe/Paris,,OAC, +OAC:SA:CTP127120,1,"PAE La Pile Budeou",43.612684,5.324038,,1,,Europe/Paris,,OAC, +OAC:SA:CTP127124,1,"Gendarmerie",43.479155,5.615936,,1,,Europe/Paris,,OAC, +OAC:SA:CTP127128,1,"Imbert",43.467778,5.613229,,1,,Europe/Paris,,OAC, +OAC:SA:CTP127131,1,"Vacher",43.46436,5.611606,,1,,Europe/Paris,,OAC, +OAC:SA:CTP127136,1,"La Garenne",43.450649,5.630531,,1,,Europe/Paris,,OAC, +OAC:SA:CTP127139,1,"Les Michels Bas",43.448691,5.604262,,1,,Europe/Paris,,OAC, +OAC:SA:CTP127142,1,"Les Chaurets",43.452187,5.621127,,1,,Europe/Paris,,OAC, +OAC:SA:CTP127155,1,"Eglise",43.636992,5.634517,,1,,Europe/Paris,,OAC, +OAC:SA:CTP127177,1,"Vincent Scotto",43.637746,5.52636,,1,,Europe/Paris,,OAC, +OAC:SA:CTP127180,1,"Saint Andre",43.651689,5.480817,,1,,Europe/Paris,,OAC, +OAC:SA:CTP127183,1,"Ecole",43.663762,5.439498,,1,,Europe/Paris,,OAC, +OAC:SA:CTP127186,1,"Les Noisetiers",43.622419,5.459207,,1,,Europe/Paris,,OAC, +OAC:SA:CTP127192,1,"Sauvecanne",43.42958,5.403661,,1,,Europe/Paris,,OAC, +OAC:SA:CTP127236,1,"L Oliveraie",43.451554,5.415623,,1,,Europe/Paris,,OAC, +OAC:SA:CTP127241,1,"Centre Medical",43.638557,5.618231,,1,,Europe/Paris,,OAC, +OAC:SA:CTP127342,1,"Aigue Vive",43.486193,5.628386,,1,,Europe/Paris,,OAC, +OAC:SA:CTP127407,1,"Le Petit Colomblier",43.636197,5.643085,,1,,Europe/Paris,,OAC, +OAC:SA:CTP127410,1,"Fabregues",43.568419,5.343846,,1,,Europe/Paris,,OAC, +OAC:SA:CTP127412,1,"Caire Val",43.696473,5.339703,,1,,Europe/Paris,,OAC, +OAC:SA:CTP127415,1,"Coste",43.692715,5.336474,,1,,Europe/Paris,,OAC, +OAC:SA:CTP127418,1,"Sousville",43.682401,5.328713,,1,,Europe/Paris,,OAC, +OAC:SA:CTP127421,1,"Garrigues",43.664265,5.327462,,1,,Europe/Paris,,OAC, +OAC:SA:CTP127432,1,"Le Moulinet",43.44894,5.384758,,1,,Europe/Paris,,OAC, +OAC:SA:CTP127435,1,"Bartavelles",43.448834,5.39025,,1,,Europe/Paris,,OAC, +OAC:SA:CTP127438,1,"Estelan",43.662212,5.338854,,1,,Europe/Paris,,OAC, +OAC:SA:CTP127443,1,"Silvacane",43.530763,5.43966,,1,,Europe/Paris,,OAC, +OAC:SA:CTP127445,1,"Bourse",43.532203,5.445217,,1,,Europe/Paris,,OAC, +OAC:SA:CTP127447,1,"Complexe Sportif",43.57356,5.345268,,1,,Europe/Paris,,OAC, +OAC:SA:CTP127454,1,"Lignane",43.585775,5.369319,,1,,Europe/Paris,,OAC, +OAC:SA:CTP127456,1,"Gare du Pey Blanc",43.545511,5.398158,,1,,Europe/Paris,,OAC, +OAC:SA:CTP127458,1,"Residence du Pey Blanc",43.543442,5.403138,,1,,Europe/Paris,,OAC, +OAC:SA:CTP127462,1,"Village",43.4517,5.413626,,1,,Europe/Paris,,OAC, +OAC:SA:CTP127465,1,"Calas Village",43.46079,5.353629,,1,,Europe/Paris,,OAC, +OAC:SA:CTP127471,1,"Pre Bosque",43.644014,5.503521,,1,,Europe/Paris,,OAC, +OAC:SA:CTP127476,1,"Mime",43.468877,5.559847,,1,,Europe/Paris,,OAC, +OAC:SA:CTP127480,1,"Pellegrin",43.478137,5.568789,,1,,Europe/Paris,,OAC, +OAC:SA:CTP127494,1,"Les Vertus",43.44543,5.55574,,1,,Europe/Paris,,OAC, +OAC:SA:CTP127500,1,"Domaine des Michels",43.451202,5.593404,,1,,Europe/Paris,,OAC, +OAC:SA:CTP127508,1,"Restanques",43.461641,5.418209,,1,,Europe/Paris,,OAC, +OAC:SA:CTP127510,1,"Cezanne",43.524121,5.664775,,1,,Europe/Paris,,OAC, +OAC:SA:CTP127515,1,"Le Griffon",43.434138,5.279257,,1,,Europe/Paris,,OAC, +OAC:SA:CTP127525,1,"Les Terres de la Mule",43.459252,5.402752,,1,,Europe/Paris,,OAC, +OAC:SA:CTP127557,1,"Aigues Marines",43.47068,5.504016,,1,,Europe/Paris,,OAC, +OAC:SA:CTP127562,1,"Les Pitalugues",43.443009,5.365683,,1,,Europe/Paris,,OAC, +OAC:SA:CTP127569,1,"Centre Commercial",43.642132,5.534235,,1,,Europe/Paris,,OAC, +OAC:SA:CTP127647,1,"Le Clos des Poetes",43.442817,5.434296,,1,,Europe/Paris,,OAC, +OAC:SA:CTP127651,1,"Les Longs Cols",43.454023,5.571061,,1,,Europe/Paris,,OAC, +OAC:SA:CTP127675,1,"Lycee Duby A",43.480147,5.414165,,1,,Europe/Paris,,OAC, +OAC:SA:CTP127677,1,"Lycee Duby B",43.480382,5.412294,,1,,Europe/Paris,,OAC, +OAC:SA:CTP127682,1,"Rimbaud",43.454201,5.564572,,1,,Europe/Paris,,OAC, +OAC:SA:CTP127687,1,"Silvacane",43.714935,5.329155,,1,,Europe/Paris,,OAC, +OAC:SA:CTP127691,1,"Peisson",43.482279,5.61991,,1,,Europe/Paris,,OAC, +OAC:SA:CTP127796,1,"La Grassie",43.50989,5.433394,,1,,Europe/Paris,,OAC, +OAC:SA:CTP127798,1,"Saint Saens",43.442672,5.426536,,1,,Europe/Paris,,OAC, +OAC:SA:CTP127806,1,"La Prise",43.663202,5.495434,,1,,Europe/Paris,,OAC, +OAC:SA:CTP127808,1,"CLG Le Puy Sainte Reparade",43.664862,5.442529,,1,,Europe/Paris,,OAC, +OAC:SA:CTP127824,1,"ITER",43.711381,5.772844,,1,,Europe/Paris,,OAC, +OAC:SA:CTP127835,1,"Chateau Noir",43.523342,5.493398,,1,,Europe/Paris,,OAC, +OAC:SA:CTP127838,1,"Mont Joli",43.522127,5.486612,,1,,Europe/Paris,,OAC, +OAC:SA:CTP127841,1,"Le Saffre",43.439765,5.438881,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132286,1,"Saint Pierre",43.555215,5.61147,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132288,1,"Europole Arbois",43.490358,5.332006,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132289,1,"Fresnel",43.495835,5.351418,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132292,1,"De Broglie",43.490635,5.356164,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132294,1,"Pilon du Roy",43.482086,5.37857,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132296,1,"Entrepots",43.487188,5.372467,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132297,1,"Lavoisier",43.489435,5.367723,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132304,1,"Eiffel",43.481308,5.387565,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132305,1,"Maison d Arret D59",43.47911,5.394459,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132306,1,"Maison d Arret",43.481525,5.395701,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132308,1,"Cim. Militaire",43.47182,5.400915,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132312,1,"Saint Joseph",43.508715,5.389618,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132313,1,"Angenot",43.50914,5.392296,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132322,1,"Le Serre 01",43.502292,5.390602,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132323,1,"Le Serre 02",43.502327,5.390963,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132339,1,"Ecole du Cros",43.563199,5.353986,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132340,1,"Vidal",43.486275,5.415545,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132342,1,"Roseaux",43.487731,5.412476,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132343,1,"Mavel",43.489423,5.41609,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132348,1,"Liberateurs",43.481793,5.423058,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132383,1,"Ferry",43.522129,5.449488,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132385,1,"Parc Jourdan",43.520266,5.449693,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132395,1,"Val Saint Jean",43.51583,5.452308,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132396,1,"Armee d Afrique",43.513926,5.454886,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132399,1,"Cible",43.5159,5.461174,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132401,1,"Infirmeries",43.513224,5.463774,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132405,1,"Mauriat",43.515989,5.466712,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132407,1,"Le Grand Puits",43.601956,5.478832,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132408,1,"Le Grand Logis",43.600652,5.485064,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132421,1,"Ferrageon",43.522225,5.510551,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132424,1,"Parc des Sports",43.517517,5.502976,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132432,1,"Maison Pezet",43.509785,5.48978,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132439,1,"Pont Chandelles",43.510993,5.487109,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132466,1,"Lesseps Mairie",43.523813,5.434801,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132467,1,"Ecole La Torse",43.525169,5.466712,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132469,1,"Tubingen",43.524572,5.431088,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132474,1,"Saint John Perse",43.525136,5.424516,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132476,1,"Hameau La Torse",43.525994,5.465106,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132489,1,"Pont de la Torse",43.526893,5.463499,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132522,1,"Marcel Pagnol",43.422402,5.286753,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132535,1,"Sta. Carcassonne",43.526753,5.459279,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132549,1,"Ecole Militaire",43.526282,5.455805,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132559,1,"Horloge",43.529822,5.420161,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132561,1,"Stade Ouest",43.529078,5.423237,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132570,1,"Dr Aurientis",43.530112,5.45881,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132572,1,"CLG Rocher Du Dragon",43.533928,5.439272,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132574,1,"Parc Rambot",43.530936,5.455955,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132577,1,"Parc Saint Mitre",43.532103,5.423162,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132581,1,"Lami",43.416464,5.354094,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132583,1,"Avant Cap",43.418554,5.360787,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132588,1,"Le Boulard",43.450711,5.362003,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132595,1,"Le Puits Vieux",43.44169,5.381903,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132602,1,"La Milane",43.447767,5.394328,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132605,1,"Violet",43.446563,5.378881,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132612,1,"La Dame",43.462738,5.368657,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132613,1,"La Bredasque",43.53636,5.411592,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132617,1,"Jussieu",43.455882,5.38436,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132619,1,"Lac Bleu",43.455313,5.330981,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132620,1,"Gare Aix TGV",43.454561,5.316419,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132621,1,"CLG Marie Mauron",43.445825,5.35438,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132622,1,"Bagatelle",43.536465,5.409245,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132624,1,"Domaine Fleurs",43.534151,5.408335,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132626,1,"Daudet",43.535142,5.463223,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132627,1,"Triolet",43.53167,5.407839,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132629,1,"Eridan",43.531233,5.409377,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132634,1,"Grande Bastide",43.530063,5.409404,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132636,1,"Saints Peres",43.525505,5.399175,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132637,1,"Chopin",43.535568,5.465472,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132639,1,"La Moliere",43.525067,5.394823,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132641,1,"Chateau Galice",43.523807,5.376221,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132643,1,"Centre Aere",43.524801,5.389884,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132644,1,"A1",43.531768,5.396559,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132645,1,"A2",43.531352,5.400282,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132646,1,"A3",43.535696,5.403958,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132647,1,"Pinette",43.537251,5.4678,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132648,1,"A4",43.536927,5.393407,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132659,1,"Parc Beauregard",43.53768,5.470795,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132668,1,"Beauregard",43.537789,5.472945,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132680,1,"Repentance",43.536267,5.473344,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132684,1,"Les Gourgoulons",43.554292,5.299743,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132685,1,"Faveloun",43.560361,5.420685,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132687,1,"Avon",43.563666,5.420478,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132689,1,"J01",43.546186,5.519709,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132690,1,"Cruyes",43.567178,5.420977,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132692,1,"J04",43.54946,5.530005,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132702,1,"J05",43.553942,5.53146,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132704,1,"J06",43.552883,5.528145,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132708,1,"J07",43.548324,5.511823,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132713,1,"J08",43.546629,5.512125,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132719,1,"B19",43.568105,5.399422,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132720,1,"J10",43.547238,5.493315,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132721,1,"B20",43.565956,5.40278,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132722,1,"B21",43.558088,5.415822,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132727,1,"C02",43.577573,5.383586,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132728,1,"C03",43.58435,5.372375,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132729,1,"C04",43.585954,5.37,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132730,1,"C05",43.596415,5.366437,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132731,1,"J11",43.54613,5.496226,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132732,1,"C06",43.601963,5.366047,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132735,1,"J12",43.545033,5.49945,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132743,1,"J14",43.543954,5.506834,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132747,1,"J15",43.540422,5.49131,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132751,1,"J16",43.551854,5.54281,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132754,1,"J17",43.552177,5.538849,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132755,1,"Chemin du Seuil",43.585793,5.413001,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132756,1,"C22",43.584119,5.415199,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132757,1,"J18",43.552524,5.536149,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132766,1,"Erables",43.580148,5.416741,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132768,1,"Palatines",43.580202,5.41354,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132770,1,"Abbe Roustand",43.581134,5.411475,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132771,1,"Bessi",43.579313,5.410881,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132772,1,"Grand Domaine",43.582279,5.411266,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132773,1,"Tourterelles",43.581367,5.409696,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132774,1,"Plantation",43.582514,5.408642,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132775,1,"Les Palombes",43.579553,5.409349,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132778,1,"La Touloubre",43.57731,5.420454,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132780,1,"Glaciere",43.574798,5.421756,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132807,1,"Guyon",43.533762,5.43639,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132811,1,"Belveyre",43.570975,5.424363,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132813,1,"Huilerie",43.549286,5.42733,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132816,1,"Fusains",43.568777,5.425396,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132818,1,"Rosaki",43.566136,5.427514,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132822,1,"Couteron Ecole",43.599607,5.447005,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132823,1,"Couteron Eglise",43.599207,5.444502,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132824,1,"Couteron",43.597441,5.443166,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132825,1,"Font Rousse Bas",43.596405,5.442606,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132827,1,"La Trevaresse",43.592569,5.434993,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132829,1,"Village Soleil",43.590041,5.431793,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132831,1,"Quille",43.587512,5.431135,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132833,1,"IAE",43.587031,5.423583,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132835,1,"Les Camus",43.586477,5.421464,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132837,1,"Maurel",43.583512,5.42209,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132841,1,"Mairie Puyricard",43.582111,5.422027,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132845,1,"Palerne",43.577412,5.422002,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132850,1,"D09",43.581576,5.43024,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132851,1,"Solari",43.53498,5.44541,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132852,1,"Paquerettes",43.536469,5.44475,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132854,1,"La Ginette",43.539748,5.442517,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132856,1,"Bellevue",43.541426,5.441747,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132858,1,"Muriers Blanc",43.542687,5.440982,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132865,1,"D13",43.582078,5.456987,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132868,1,"D14",43.577,5.457666,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132869,1,"D15",43.57428,5.457109,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132871,1,"D16",43.5676,5.456874,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132873,1,"D17",43.564327,5.457604,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132875,1,"Les Feuillants",43.598573,5.449726,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132876,1,"Route de Moulin",43.597439,5.450885,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132877,1,"Levesque",43.597512,5.454832,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132878,1,"D04",43.594036,5.455875,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132879,1,"Presidente",43.59026,5.457456,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132881,1,"D06",43.587826,5.457173,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132882,1,"D07",43.584047,5.45679,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132883,1,"D10",43.578942,5.442182,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132884,1,"D11",43.579183,5.449687,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132885,1,"D12",43.579758,5.453852,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132887,1,"Eperon",43.557216,5.433624,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132889,1,"Puy du Roy",43.555308,5.434028,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132891,1,"Entremont",43.552662,5.435787,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132897,1,"Montvert",43.545347,5.440746,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132898,1,"Monvert",43.545673,5.440845,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132901,1,"Les Lauves Nord",43.557341,5.443162,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132903,1,"Les Lauves Sud",43.555338,5.443772,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132905,1,"Crespi",43.553703,5.443628,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132907,1,"Les Casams",43.550532,5.444208,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132909,1,"De Mazenod",43.547125,5.445472,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132914,1,"La Coquillade",43.577577,5.431959,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132915,1,"Madeleine",43.575494,5.43218,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132917,1,"La Chesneraie",43.572967,5.432703,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132921,1,"Dioulouffet",43.566195,5.434085,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132923,1,"Chocolaterie",43.563235,5.434,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132926,1,"Rose",43.560854,5.43367,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132927,1,"Grands Chenes",43.56062,5.434655,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132929,1,"Eolienne",43.558907,5.441935,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132931,1,"Marguerite",43.550547,5.438538,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132933,1,"Portail Cezanne",43.542148,5.445637,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132937,1,"Loubassane",43.542432,5.448819,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132939,1,"Maruege",43.544947,5.455359,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132941,1,"Maruege Haut",43.546433,5.454814,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132947,1,"Dr Bertrand",43.541395,5.451929,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132962,1,"Cezanne",43.539857,5.445932,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132964,1,"Atelier Cezanne",43.53698,5.446759,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132966,1,"Alexis",43.535944,5.44614,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132969,1,"Pasteur N. Dame",43.534387,5.446463,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132979,1,"Niollon",43.527552,5.442673,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132980,1,"Rotonde Poste",43.525709,5.444907,,1,,Europe/Paris,,OAC, +OAC:SA:CTP132997,1,"Tourelles",43.517312,5.465268,,1,,Europe/Paris,,OAC, +OAC:SA:CTP133003,1,"Les Grandes Terres",43.443968,5.368288,,1,,Europe/Paris,,OAC, +OAC:SA:CTP133011,1,"Badesse",43.502956,5.376199,,1,,Europe/Paris,,OAC, +OAC:SA:CTP133019,1,"La Cremade",43.541373,5.2998,,1,,Europe/Paris,,OAC, +OAC:SA:CTP133021,1,"Ecole de Musique",43.440884,5.3819,,1,,Europe/Paris,,OAC, +OAC:SA:CTP133027,1,"La Roucaoudo",43.457121,5.564212,,1,,Europe/Paris,,OAC, +OAC:SA:CTP133029,1,"La Croix du Goi",43.447298,5.565873,,1,,Europe/Paris,,OAC, +OAC:SA:CTP133031,1,"La Montjoie",43.460838,5.568122,,1,,Europe/Paris,,OAC, +OAC:SA:CTP133033,1,"La Begude",43.453088,5.545496,,1,,Europe/Paris,,OAC, +OAC:SA:CTP133035,1,"Cimetiere",43.45903,5.557246,,1,,Europe/Paris,,OAC, +OAC:SA:CTP133037,1,"Saint Charles",43.462488,5.610484,,1,,Europe/Paris,,OAC, +OAC:SA:CTP133040,1,"Fina",43.446507,5.522941,,1,,Europe/Paris,,OAC, +OAC:SA:CTP133042,1,"Cite Brogilum",43.436097,5.55791,,1,,Europe/Paris,,OAC, +OAC:SA:CTP133045,1,"Quatre Termes",43.440867,5.529251,,1,,Europe/Paris,,OAC, +OAC:SA:CTP133049,1,"Les Laouvas",43.459404,5.546906,,1,,Europe/Paris,,OAC, +OAC:SA:CTP133051,1,"Les Beaumouilles",43.463334,5.574771,,1,,Europe/Paris,,OAC, +OAC:SA:CTP133053,1,"Le Stade",43.447089,5.562688,,1,,Europe/Paris,,OAC, +OAC:SA:CTP133056,1,"La Roquette",43.473083,5.515109,,1,,Europe/Paris,,OAC, +OAC:SA:CTP133061,1,"Les Ormeaux",43.433461,5.425768,,1,,Europe/Paris,,OAC, +OAC:SA:CTP133937,1,"Jardin St Donat",43.547707,5.455228,,1,,Europe/Paris,,OAC, +OAC:SA:CTP133938,1,"Vendome",43.531306,5.441672,,1,,Europe/Paris,,OAC, +OAC:SA:CTP133939,1,"P R Route Alpes",43.540437,5.457187,,1,,Europe/Paris,,OAC, +OAC:SA:CTP133940,1,"Gare Routiere Quai 20",43.523667,5.439664,,1,,Europe/Paris,,OAC, +OAC:SA:CTP133941,1,"Archives",43.527022,5.438958,,1,,Europe/Paris,,OAC, +OAC:SA:CTP133942,1,"Gare SNCF Q2",43.684561,5.504278,,1,,Europe/Paris,,OAC, +OAC:SA:CTP133943,1,"La Mayanelle",43.538412,5.41163,,1,,Europe/Paris,,OAC, +OAC:SA:CTP133945,1,"Ecole Eugene Bremond",43.577933,5.422612,,1,,Europe/Paris,,OAC, +OAC:SA:CTP133946,1,"Ecole Auguste Boyer",43.507148,5.391323,,1,,Europe/Paris,,OAC, +OAC:SA:CTP133947,1,"De Regis",43.579663,5.418323,,1,,Europe/Paris,,OAC, +OAC:SA:CTP133948,1,"Le Serre 03",43.502377,5.391243,,1,,Europe/Paris,,OAC, +OAC:SA:CTP133949,1,"Aire d Accueil des Gens du Voyage",43.458921,5.305536,,1,,Europe/Paris,,OAC, +OAC:SA:CTP133950,1,"A5",43.545953,5.392099,,1,,Europe/Paris,,OAC, +OAC:SA:CTP133951,1,"Verte Campagne",43.57594,5.424769,,1,,Europe/Paris,,OAC, +OAC:SA:CTP133953,1,"Duranne Ecole",43.486464,5.34461,,1,,Europe/Paris,,OAC, +OAC:SA:CTP133954,1,"Galilee",43.488664,5.341126,,1,,Europe/Paris,,OAC, +OAC:SA:CTP133956,1,"Pleiades",43.491251,5.340549,,1,,Europe/Paris,,OAC, +OAC:SA:CTP133958,1,"Gare SNCF Q4",43.684531,5.504395,,1,,Europe/Paris,,OAC, +OAC:SA:CTP133959,1,"Verte Colline",43.536525,5.43496,,1,,Europe/Paris,,OAC, +OAC:SA:CTP133961,1,"Pasteur",43.533306,5.445864,,1,,Europe/Paris,,OAC, +OAC:SA:CTP133964,1,"Pont Corneilles",43.54146,5.454295,,1,,Europe/Paris,,OAC, +OAC:SA:CTP133966,1,"Les Peintres",43.544824,5.445276,,1,,Europe/Paris,,OAC, +OAC:SA:CTP133968,1,"Ontano",43.54734,5.442637,,1,,Europe/Paris,,OAC, +OAC:SA:CTP133970,1,"Resid. Beaufort",43.563688,5.429636,,1,,Europe/Paris,,OAC, +OAC:SA:CTP133972,1,"Puyricard Fetes",43.580573,5.421282,,1,,Europe/Paris,,OAC, +OAC:SA:CTP133974,1,"Etoile",43.57407,5.422564,,1,,Europe/Paris,,OAC, +OAC:SA:CTP133976,1,"Quai Saint Louis N 4",43.529971,5.45298,,1,,Europe/Paris,,OAC, +OAC:SA:CTP133981,1,"Romana",43.581759,5.416477,,1,,Europe/Paris,,OAC, +OAC:SA:CTP133983,1,"Guienne",43.57819,5.409782,,1,,Europe/Paris,,OAC, +OAC:SA:CTP133985,1,"Brunet",43.54725,5.440031,,1,,Europe/Paris,,OAC, +OAC:SA:CTP133987,1,"Colonel Bellec",43.575057,5.418029,,1,,Europe/Paris,,OAC, +OAC:SA:CTP133989,1,"Beaufort",43.569546,5.433099,,1,,Europe/Paris,,OAC, +OAC:SA:CTP133991,1,"Rigaud",43.542936,5.454582,,1,,Europe/Paris,,OAC, +OAC:SA:CTP133992,1,"Celony Ecole",43.556782,5.41925,,1,,Europe/Paris,,OAC, +OAC:SA:CTP133995,1,"Auriol",43.537844,5.44676,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134000,1,"Puyricard Centre",43.580608,5.422633,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134002,1,"Republique",43.528624,5.440055,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134004,1,"Cruyes Scolaire",43.563631,5.428977,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134005,1,"Jaubert",43.697356,5.514571,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134007,1,"Asters",43.695778,5.525221,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134009,1,"Sanclar",43.696997,5.518387,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134015,1,"Delsome",43.683645,5.507732,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134017,1,"Gare SNCF Q1",43.684578,5.504221,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134018,1,"Parade",43.508115,5.423604,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134020,1,"Gare des Milles",43.503342,5.383421,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134021,1,"Champ de Foire",43.507805,5.417204,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134023,1,"Aerodrome",43.502949,5.373454,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134025,1,"Hippodrome",43.508114,5.424959,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134027,1,"Camp des Milles",43.503014,5.381072,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134033,1,"Tresorerie",43.677333,5.503392,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134036,1,"Lamartine",43.691389,5.515001,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134038,1,"Herborn",43.681737,5.501792,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134040,1,"Saint Martin",43.680015,5.502204,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134046,1,"Parking Devalade",43.695636,5.50002,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134048,1,"Hopital",43.694163,5.498542,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134050,1,"Barba",43.692762,5.495013,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134061,1,"Mauron",43.700178,5.500562,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134063,1,"Saint Joseph",43.703679,5.497299,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134067,1,"Marine",43.520308,5.533852,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134069,1,"Vallon des Gardes",43.521008,5.4769,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134072,1,"Cardinale",43.524583,5.446318,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134073,1,"CLG Georges Brassens",43.437374,5.408979,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134074,1,"Jean Perrin",43.443827,5.422373,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134075,1,"Gare Routiere Quai 13",43.523571,5.440113,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134077,1,"Grande Terre",43.60044,5.486814,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134078,1,"L Agnel",43.597476,5.481784,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134079,1,"Mairie",43.598502,5.484531,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134080,1,"Brassens",43.541906,5.456165,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134082,1,"Esperantistes 2",43.538371,5.457024,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134085,1,"Cimetiere",43.645949,5.57819,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134087,1,"Centre Aquatique",43.597919,5.495037,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134088,1,"Ecole Virginie Dedieu",43.438191,5.411306,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134089,1,"Petit Nice",43.533702,5.463506,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134092,1,"Centre Technique",43.555154,5.594832,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134094,1,"Mouret Gare Routiere Quai 21",43.523121,5.437282,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134095,1,"Gouirand",43.555159,5.605777,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134096,1,"Saint Joseph",43.460901,5.480643,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134097,1,"Avenue des Ecoles",43.452812,5.469999,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134098,1,"Ecole Saint Joseph",43.462947,5.483529,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134099,1,"Centre Charpak",43.445931,5.479612,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134100,1,"Groupe Scolaire Les Aires",43.452897,5.482222,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134101,1,"Lycee Fourcade",43.455979,5.477512,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134102,1,"Mail",43.485423,5.417893,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134104,1,"De Green",43.487939,5.420953,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134105,1,"Caire",43.482622,5.421843,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134106,1,"Chamson",43.486447,5.413213,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134107,1,"Commanderie",43.488288,5.418373,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134109,1,"Moulin Testas",43.517369,5.44976,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134110,1,"Pont Arc Mairie",43.509544,5.438192,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134111,1,"8 Mai 1945",43.458748,5.478689,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134112,1,"Colline des Freres",43.452604,5.467808,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134113,1,"La Pinede du Claou",43.447774,5.484643,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134114,1,"Le Virginia",43.446303,5.485765,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134115,1,"Les Oliviers",43.444442,5.486067,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134116,1,"Maison de Retraite",43.449396,5.475205,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134122,1,"Vallon Sources",43.538353,5.468951,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134124,1,"Gare Routiere Quai 10",43.523518,5.441117,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134125,1,"Les Chenes",43.535304,5.476188,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134129,1,"Rond Point des Phoceens",43.455437,5.464613,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134130,1,"Gare Routiere Quai 01",43.523485,5.441746,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134131,1,"Jean de Roy",43.647941,5.598942,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134133,1,"Gare SNCF Q5",43.684513,5.504452,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134135,1,"Hameau de Valabre",43.471298,5.449805,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134137,1,"Hameau de Turin",43.477038,5.428518,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134139,1,"Saint Andre",43.464971,5.464145,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134142,1,"Coton Rouge",43.513277,5.453154,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134143,1,"Bel Ormeau",43.513747,5.458935,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134147,1,"Les Rosiers",43.481318,5.53417,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134149,1,"Carlin Couperine",43.426172,5.542381,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134151,1,"Halte Routiere",43.431094,5.54208,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134153,1,"Les Gournauds",43.421292,5.54385,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134155,1,"Les Pierrassons",43.434496,5.541252,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134157,1,"Les Revaux",43.443788,5.552345,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134159,1,"P R Krypton Q4",43.511254,5.448743,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134161,1,"Anciens Combattants",43.453618,5.476131,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134164,1,"Clos de la Diote",43.427842,5.537977,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134166,1,"Coteaux de Veline",43.452581,5.474904,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134169,1,"Puits de Coudeil",43.436535,5.535886,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134171,1,"Pascaret",43.434933,5.538349,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134173,1,"Toulon",43.451657,5.472616,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134176,1,"Vieux Puits",43.452056,5.588222,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134177,1,"Les Quatre Chemins",43.478127,5.536936,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134179,1,"Biver Centre",43.434527,5.4653,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134180,1,"Route Blanche",43.446711,5.473193,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134182,1,"College Pesquier",43.444485,5.469573,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134183,1,"Collevieille Cauvet",43.439326,5.458593,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134185,1,"Font du Roy",43.448638,5.472893,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134187,1,"Les Azalees La Poste",43.437572,5.464991,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134189,1,"Les Roseaux de Cezanne",43.443844,5.472659,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134191,1,"Mediatheque",43.451015,5.472611,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134194,1,"Saint Pierre Galetti",43.440188,5.465172,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134196,1,"Sainte Barbe",43.436582,5.462391,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134199,1,"Avenue de Nice",43.459565,5.477837,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134201,1,"Saint Roch",43.458728,5.474832,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134205,1,"Maison du Peuple",43.456481,5.473105,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134207,1,"Parking Savine",43.456644,5.474575,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134208,1,"Brossolette Lycee Fourcade",43.45667,5.478395,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134211,1,"Chateau Pitty",43.45348,5.483768,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134212,1,"La Crau",43.456585,5.482293,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134215,1,"Notre Dame",43.455463,5.484413,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134218,1,"Claou",43.450192,5.485942,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134220,1,"Norias",43.447723,5.477361,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134222,1,"Bompertuis",43.453776,5.453978,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134223,1,"Fontvenelle",43.458891,5.45917,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134225,1,"La Plaine",43.449302,5.449467,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134226,1,"Puits Morandat",43.450336,5.448551,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134227,1,"Zone d Activites Avon",43.448485,5.455908,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134228,1,"Acacias",43.456811,5.458606,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134231,1,"Gare Routiere Quai 16",43.523578,5.439955,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134232,1,"Foire",43.419295,5.363833,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134233,1,"Mouret Gare Routiere Quai 22",43.522993,5.4372,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134238,1,"Gare Routiere Quai 18",43.523585,5.439827,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134239,1,"Jauvade",43.521836,5.668009,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134241,1,"Les Garrigues",43.45032,5.604016,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134242,1,"Boudian",43.449852,5.600516,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134243,1,"Les Michels Bas 2",43.448486,5.604444,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134246,1,"Les Pins Cinema",43.439641,5.255396,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134248,1,"Plan d Aillane Quai 04",43.49803,5.370395,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134249,1,"Gare TGV",43.455382,5.316069,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134250,1,"Baumel",43.534858,5.41008,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134252,1,"Domaine des Plantiers",43.541781,5.370734,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134254,1,"Figons Bas",43.539482,5.378496,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134256,1,"Mouret Gare Routiere Quai 26",43.522939,5.436589,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134260,1,"Gare Routiere Quai 19",43.523591,5.439743,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134261,1,"Calisson",43.581519,5.377414,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134262,1,"Calisson",43.57972,5.379962,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134263,1,"CAT Philibert",43.679311,5.407134,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134266,1,"D13 Bis",43.57988,5.456971,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134270,1,"Mouret Gare Routiere Quai 24",43.522705,5.437039,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134273,1,"Le Moulin",43.4227,5.525656,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134277,1,"Grands Pins",43.421497,5.524237,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134278,1,"RN113",43.411086,5.310428,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134286,1,"Plan d Aillane Quai 01",43.497797,5.370503,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134287,1,"Pechiney",43.45338,5.465126,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134288,1,"Avon",43.446255,5.458306,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134290,1,"Puits Gerard",43.42706,5.474872,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134294,1,"Coutaou",43.489133,5.641774,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134296,1,"Le Pin",43.41928,5.381291,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134297,1,"Rocher Du Dragon",43.532795,5.439532,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134299,1,"Chateau Calade",43.572436,5.391201,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134300,1,"Cave Cooperative",43.623035,5.299122,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134301,1,"Le Logis d Anne",43.658877,5.634146,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134302,1,"La Mayanelle D17",43.538617,5.413102,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134306,1,"Mouret Gare Routiere Quai 28",43.522555,5.436494,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134308,1,"Hamamelis",43.6914,5.527348,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134312,1,"LEP Sainte Elisabeth",43.401877,5.354222,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134316,1,"Centre Commercial",43.466262,5.465373,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134318,1,"Valabre",43.472021,5.453464,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134319,1,"Lycee de Valabre",43.469386,5.450967,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134321,1,"Bassin d Eau",43.450979,5.452902,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134322,1,"Cite Centrale 2",43.463257,5.479435,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134323,1,"Cite Centrale 1",43.461181,5.477383,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134324,1,"Chabanu",43.473585,5.465393,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134325,1,"Payannet",43.470531,5.465803,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134329,1,"La Recense",43.549238,5.301601,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134352,1,"Darius Millhaud",43.422541,5.501204,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134365,1,"Parking Sainte Anne",43.412351,5.507244,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134367,1,"Parc d Activites",43.454918,5.452731,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134368,1,"Hameau de Payannet",43.470159,5.474076,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134369,1,"Jean de Bouc 1",43.462997,5.488695,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134370,1,"Jean de Bouc 2",43.460399,5.492331,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134371,1,"Pharmacie du Lycee",43.45673,5.480024,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134372,1,"Les Pres",43.459314,5.464784,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134373,1,"Puits Z",43.468665,5.475865,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134374,1,"Quartier Collevieille",43.439636,5.456011,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134375,1,"Rambert",43.481197,5.470003,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134376,1,"San Bovieri",43.441108,5.471117,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134378,1,"Square Veline",43.45248,5.473035,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134380,1,"Van Gogh",43.456948,5.486105,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134383,1,"Roman",43.478728,5.461415,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134384,1,"Bareme",43.476413,5.464303,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134395,1,"MFR Roque d Antheron",43.721919,5.311835,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134403,1,"Pilon du Roy",43.43149,5.467906,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134405,1,"Piboulas",43.492854,5.552506,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134406,1,"Argelas",43.483834,5.590824,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134407,1,"Sainte Victoire",43.483022,5.594519,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134408,1,"Pinede",43.485475,5.595499,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134421,1,"Allee du Parc",43.597894,5.4854,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134425,1,"J08bis",43.54605,5.508016,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134426,1,"J06bis",43.549949,5.523632,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134427,1,"Creche Mandela",43.410305,5.370792,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134429,1,"Gavotte Peyret",43.389265,5.35241,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134431,1,"Mandela Ecole",43.408698,5.366891,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134433,1,"Tubie Sauze",43.407048,5.363168,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134435,1,"Les Gilets",43.416012,5.5384,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134438,1,"Nelson Mandela",43.529027,5.438649,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134442,1,"Lou Valadet",43.440396,5.550113,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134445,1,"Pompidou",43.528476,5.438947,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134446,1,"Collet",43.609266,5.496673,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134447,1,"Arc Meyran Zola",43.512012,5.461994,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134452,1,"Cassin Quai 1",43.449754,5.678425,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134453,1,"Cassin Quai 2",43.449562,5.678864,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134454,1,"Gare Routiere Quai 17",43.523582,5.439897,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134455,1,"Baone",27.140959,-3.404569,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134456,1,"Vendange",43.572913,5.361396,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134458,1,"Giboux",43.428724,5.47133,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134463,1,"Baltard",43.48514,5.384052,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134465,1,"Plan d Aillane Quai 10",43.497852,5.37053,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134466,1,"Maison d Arret",27.140959,-3.404569,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134467,1,"Trois Ponts",43.469602,5.565836,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134468,1,"Station",43.594926,5.482775,,1,,Europe/Paris,,OAC, +OAC:SA:CTP134469,1,"Les Sauvaires",27.140959,-3.404569,,1,,Europe/Paris,,OAC, +OAE:SA:CTP40001,1,"Agora",43.286465,5.6016,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40002,1,"Beausoleil",43.278462,5.517864,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40004,1,"La Feutrière",43.275812,5.706147,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40007,1,"La Garenne",43.275629,5.552034,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40009,1,"La Gastaude",43.308822,5.545138,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40011,1,"La Glacière",43.36818,5.639122,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40013,1,"La Martisèle",43.310136,5.573315,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40015,1,"La Muscatelle",43.287528,5.523303,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40017,1,"La Parette",43.360208,5.641843,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40021,1,"La Pignore",43.304765,5.53309,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40023,1,"La Place",43.369533,5.632813,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40025,1,"La Plaine",43.33803,5.57436,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40027,1,"La Planque",43.294712,5.574218,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40029,1,"La Pomme",43.405923,5.575891,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40032,1,"La Queirade",43.277831,5.528845,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40034,1,"La République",43.297008,5.620423,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40036,1,"La Thuilière",43.303085,5.529388,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40038,1,"La Tourtelle",43.285465,5.55421,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40042,1,"La Treille",43.311369,5.512016,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40047,1,"L'Aumone",43.287112,5.530026,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40049,1,"Le Cannet",43.332611,5.592682,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40053,1,"Saint Martin",43.282653,5.610455,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40054,1,"St Martin",43.282777,5.610228,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40055,1,"Le Maltrait",43.374846,5.612553,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40057,1,"Le Mouton",43.28223,5.50905,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40059,1,"Le Plan",43.382618,5.603058,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40061,1,"Le Puits",43.271416,5.684177,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40063,1,"Le Renard",43.297261,5.610045,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40065,1,"Le Soleillet",43.372441,5.607336,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40067,1,"Le Verger des Passons",43.291636,5.584965,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40069,1,"Le Village",43.283757,5.544882,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40070,1,"Village",43.283736,5.544979,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40071,1,"Les 4 Bigues",43.346506,5.58466,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40074,1,"Les 4 Chemins",43.313011,5.573712,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40075,1,"Les Artauds",43.368211,5.648062,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40077,1,"Les Baumes",43.357539,5.634145,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40080,1,"Les Candolles",43.277853,5.510163,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40081,1,"Les Caniers",43.286914,5.59451,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40083,1,"Les Charrons",43.297037,5.623897,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40086,1,"Les Craux",43.296399,5.615931,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40088,1,"Les Creissauds",43.278638,5.538885,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40090,1,"Les Défensions",43.296403,5.569746,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40092,1,"La Casamance",43.27869,5.531724,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40094,1,"Chemin Des Gorguettes",43.403085,5.586499,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40095,1,"Les Grands Pins",43.275768,5.52745,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40097,1,"Les Gypières",43.366391,5.619072,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40101,1,"Les Héliantes",43.360343,5.663767,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40102,1,"Les Camoins",43.301313,5.512691,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40103,1,"Camp d'Aubert",43.365446,5.642626,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40106,1,"Les Jourdans",43.309968,5.576828,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40108,1,"Les Lignières",43.294831,5.562196,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40109,1,"Les Lignieres",43.295002,5.561282,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40110,1,"Les Micocouliers",43.281559,5.506773,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40112,1,"Garlaban",43.29616,5.573327,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40115,1,"Camp Major",43.288171,5.5413,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40116,1,"Les Mûriers",43.298217,5.601985,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40118,1,"Les Paluds",43.283908,5.602882,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40120,1,"Les Passons",43.294524,5.580462,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40121,1,"Les Platanes",43.328878,5.598347,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40123,1,"Les Restanques",43.280941,5.508228,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40127,1,"Les Solans",43.307098,5.57355,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40132,1,"Central Parc",43.288898,5.572278,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40133,1,"Les Tourraques",43.380003,5.673405,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40135,1,"L'Ouert",43.345004,5.582283,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40137,1,"Marcel Pagnol",43.295623,5.572361,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40139,1,"Marcel Paul",43.301604,5.574115,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40141,1,"Mistral",43.290782,5.594766,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40146,1,"Centre Commercial",43.296077,5.591595,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40147,1,"Moulin de Redon",43.377274,5.681927,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40149,1,"Napollon",43.313383,5.5784,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40151,1,"OK Corral",43.267629,5.727549,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40154,1,"Pas de l'Avé",43.377062,5.668746,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40155,1,"Pas de l'Avé",43.373562,5.66996,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40156,1,"Pas de Trets",43.38442,5.602063,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40159,1,"Pédéguien",43.365092,5.632176,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40161,1,"Pic de Bertagne",43.281776,5.616498,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40163,1,"Pin Vert",43.301436,5.570448,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40167,1,"Place de l'Eglise",43.281189,5.516267,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40169,1,"Place des XV",43.292516,5.567397,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40170,1,"Plaine de Jouques",43.281541,5.618307,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40172,1,"Quartier de Jouques",43.28045,5.621063,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40174,1,"Centre des Impôts",43.301904,5.57641,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40175,1,"La Treille Pluvence",43.3081,5.509742,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40184,1,"Pont de Garnière",43.346501,5.597908,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40187,1,"Pont de la Papeterie",43.365736,5.615792,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40189,1,"Pont de la Vede",43.359587,5.661431,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40190,1,"Pont de la Vède",43.359539,5.661551,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40191,1,"Pont de Lamagnon",43.296231,5.582012,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40193,1,"Pont de l'Etoile",43.32688,5.596915,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40196,1,"Raymond Reynaud",43.349564,5.599832,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40198,1,"Rose des Vents",43.29997,5.572237,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40200,1,"Route de Gemenos",43.296256,5.57763,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40204,1,"Saint Barthélémy",43.375417,5.626568,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40205,1,"Saint Estève",43.338489,5.60174,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40206,1,"St Esteve",43.338522,5.601545,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40207,1,"Saint Philippe",43.280315,5.538769,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40208,1,"St Philippe",43.280568,5.539325,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40209,1,"Saint Sébastien",43.275342,5.69786,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40210,1,"St Sébastien",43.275558,5.698143,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40212,1,"Ravel Decroix",43.290513,5.560119,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40214,1,"Sces Techniques Saint Zacharie",43.38263,5.70112,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40215,1,"Soeurs Gastine",43.289667,5.566449,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40218,1,"Souque Nègre",43.388265,5.599224,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40219,1,"Montée de Lascours",43.344873,5.593773,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40221,1,"Saint Roch",43.346338,5.603592,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40222,1,"St Roch",43.346207,5.603473,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40223,1,"Saint Zacharie Centre Ville",43.384471,5.706703,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40224,1,"St Zacharie Centre Ville",43.384155,5.706747,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40225,1,"Sainte Madeleine",43.353945,5.627271,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40227,1,"Tennis",43.314577,5.594553,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40229,1,"Val Pré",43.299248,5.569327,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40231,1,"Valcros",43.341975,5.603331,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40233,1,"Vallon du Roy",43.276933,5.522444,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40235,1,"Salengro",43.296042,5.56858,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40237,1,"Chemin de Bon Civet",43.277508,5.552964,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40239,1,"Centre Ville",43.297117,5.62922,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40240,1,"Passage à Niveau",43.298541,5.575789,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40246,1,"Chemin Saint Michel",43.291724,5.577005,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40247,1,"Chemin St Michel",43.291581,5.57728,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40248,1,"Château Blanc",43.280733,5.551261,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40249,1,"Les Escourtines",43.281584,5.504719,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40251,1,"Vienot",43.291079,5.554451,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40253,1,"La Marjolaine",43.301967,5.55963,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40254,1,"La Marjolaine",43.305086,5.556098,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40255,1,"Claire Fontaine",43.298347,5.536598,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40257,1,"La Vassale",43.300597,5.570844,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40260,1,"La Penne Poste",43.281217,5.518657,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40261,1,"La Penne Mairie",43.282843,5.515079,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40262,1,"La Penne Gare",43.284339,5.515593,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40263,1,"Noël Robion",43.283521,5.523782,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40264,1,"La Vallée",43.284279,5.521855,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40265,1,"La Bourgade",43.281405,5.521732,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40266,1,"La Penne",43.281789,5.514233,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40268,1,"Grand Linche",43.298152,5.603816,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40272,1,"Chemin des Barres",43.40172,5.597745,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40273,1,"Pinchon",43.297636,5.597138,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40275,1,"Saint Zacharie ZI",43.387749,5.720043,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40276,1,"Clinique Saint Roch",43.30123,5.507269,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40277,1,"Clinique St Roch",43.301129,5.507337,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40278,1,"La Treille Camoins",43.307374,5.508421,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40280,1,"La Treille Campagne",43.30386,5.505912,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40282,1,"Place du Monument",43.301177,5.510603,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40283,1,"Camoins Montée D'Eoures",43.300911,5.51076,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40284,1,"Eoures Saint Roch",43.300359,5.514239,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40285,1,"Eoures St Roch",43.300274,5.51437,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40286,1,"Eoures Notre Dame",43.300515,5.518385,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40288,1,"Eoures Cigales",43.301268,5.522749,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40291,1,"Les Royantes",43.288344,5.546972,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40293,1,"Poteries",43.26921,5.647102,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40295,1,"Eoures Parking",43.301724,5.526468,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40297,1,"Avenue Jean Mermoz",43.286445,5.578479,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40299,1,"Résidence Le Mermoz",43.287101,5.573432,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40301,1,"Bonnes Nouvelles",43.290981,5.593251,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40304,1,"Chemin du Château",43.292487,5.576457,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40309,1,"Cimetière de la Penne sur Huveaune",43.278848,5.508457,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40310,1,"Cimetiere de la Penne",43.278919,5.508486,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40311,1,"Gaston de Saporta",43.381337,5.702511,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40314,1,"Chemin St Joseph",43.299294,5.561819,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40315,1,"Robespierre",43.287022,5.584113,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40317,1,"La Treille Thermal",43.305519,5.506398,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40319,1,"La Dorgale",43.336577,5.596271,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40320,1,"Les Sicardes",43.360834,5.631413,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40322,1,"Saint Eloi",43.364593,5.639346,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40324,1,"La Colombe",43.364154,5.647199,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40327,1,"Cigardonne",43.316872,5.581972,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40328,1,"La Thuilière Centre",43.300858,5.530508,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40330,1,"La Gratiane",43.307143,5.53901,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40333,1,"Seignadone",43.296132,5.543641,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40334,1,"Khamisis",43.295408,5.549522,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40336,1,"La Sabatière",43.295543,5.557927,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40342,1,"Chemin des Marseillais",43.401942,5.596352,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40344,1,"S. Techniques",43.397125,5.600382,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40349,1,"Ecole de Beaudinard",43.315301,5.588448,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40358,1,"Cimetière des Passons",43.292651,5.574299,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40364,1,"Passage à niveau Roquevaire",43.332043,5.594806,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40365,1,"Passage à Niveau Roquevaire",43.332071,5.594783,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40370,1,"La Chapelle",43.396319,5.605912,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40372,1,"La Comtesse",43.294263,5.584671,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40377,1,"Mairie",43.369387,5.634371,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40379,1,"Cuges les Pins Mairie",43.275465,5.70028,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40380,1,"Lot. de la Louve",43.306741,5.5606,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40381,1,"Clos de la Louve",43.303835,5.562148,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40383,1,"Bassin de la Gare",43.300457,5.562303,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40385,1,"Clos Ruffisque",43.277449,5.535335,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40386,1,"Longuelance",43.313332,5.576784,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40388,1,"Les Manaux",43.343701,5.581039,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40391,1,"Avenue de la Paix",43.278879,5.551613,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40395,1,"Les Esparêts",43.341708,5.579447,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40397,1,"Joinville",43.320998,5.581147,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40399,1,"Centre Ville",43.348906,5.602826,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40402,1,"Musée de la Légion",43.293524,5.553886,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40404,1,"La Sounce",43.333059,5.57456,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40406,1,"Collège Lakanal",43.285934,5.582611,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40407,1,"Vallat",43.289765,5.597195,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40409,1,"Les Cardalines",43.305158,5.556102,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40411,1,"Ecole Claire Dauphin",43.368795,5.643694,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40412,1,"Allée des Pins",43.275243,5.549317,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40413,1,"L'Oratoire",43.386613,5.60299,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40417,1,"Collège Ubelka",43.370269,5.647835,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40418,1,"Les Tuileries",43.385392,5.710889,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40420,1,"Les Gisclans",43.397749,5.590772,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40421,1,"L'Aumone Vieille",43.285198,5.523334,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40423,1,"Ebé",43.287857,5.583557,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40427,1,"Quartier des Vaux",43.285615,5.581264,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40429,1,"Les Pénitents",43.292873,5.571972,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40431,1,"Médiathèque",43.292274,5.573662,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40434,1,"Comoedia",43.293699,5.567242,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40437,1,"Les Alliés",43.295555,5.626767,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40439,1,"Le Dirigeable",43.282757,5.607014,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40440,1,"Le Dirigeable",43.282753,5.610424,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40442,1,"Les Baraques",43.321577,5.587609,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40443,1,"Les Baraques",43.323902,5.589811,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40444,1,"Les Délices",43.296672,5.540002,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40447,1,"Coulin Carrefour",43.273956,5.636655,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40448,1,"Pastré",43.296365,5.596031,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40452,1,"Avenue du 19 Mars",43.28902,5.569441,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40453,1,"Cours Barthélémy",43.292727,5.566966,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40456,1,"Collège Nathalie Sarraute",43.298547,5.564227,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40458,1,"La Gorgue",43.330815,5.573226,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40460,1,"Cours Voltaire",43.295241,5.568289,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40461,1,"Cuges Libération",43.275909,5.701881,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40463,1,"Ecole de la Pérussonne",43.281083,5.540153,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40465,1,"Ecole Les Passons",43.293417,5.577211,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40467,1,"Eglise de Roquevaire",43.349602,5.603926,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40469,1,"Avenue du 19 Mars",43.287495,5.5729,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40470,1,"Bassardelle",43.294148,5.578631,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40471,1,"Elzéard Rougier",43.293455,5.567893,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40474,1,"Eoures Village",43.301268,5.520606,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40476,1,"Fauge",43.288347,5.600636,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40478,1,"Favary",43.328164,5.573766,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40480,1,"Font de Mai",43.307818,5.55284,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40482,1,"Fontmagne",43.277288,5.620932,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40484,1,"Ganteaume",43.288245,5.574272,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40488,1,"Groupe Provence",43.28795,5.576607,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40492,1,"Hameau du Moulin de Redon",43.3805,5.680562,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40496,1,"Hôpital",43.291344,5.563625,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40498,1,"Horizons Clairs",43.291148,5.580308,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40500,1,"Battiers",43.402461,5.592298,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40503,1,"Jeanne D'Arc",43.298356,5.577158,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40504,1,"Jeanne d'Arc",43.298192,5.577542,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40506,1,"La Bastidonne",43.286885,5.516472,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40508,1,"Marius Boyer",43.396067,5.592268,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40510,1,"Gare",43.3932,5.594868,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40512,1,"La Bourbonne",43.283541,5.59454,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40514,1,"Baumone",43.294701,5.594841,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40515,1,"La Clé des Champs",43.291111,5.582116,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40517,1,"Le Soleil",43.283829,5.514592,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40519,1,"La Croix",43.368856,5.627325,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40521,1,"La Curasse",43.275453,5.714693,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40523,1,"Mairie",43.377408,5.605782,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40525,1,"La Durande",43.318998,5.581563,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40531,1,"Pujol",43.368184,5.649244,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40533,1,"Pierre Blancard",43.297473,5.56317,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40535,1,"L'Auberge",43.355468,5.626877,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40537,1,"Les Marseillais",43.356077,5.631978,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40539,1,"Les Vignes",43.358684,5.637872,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40541,1,"Pierrina",43.363465,5.650882,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40543,1,"L'Escale",43.357491,5.660003,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40545,1,"Les Estiennes",43.363038,5.658032,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40556,1,"Jas de Valèze",43.385058,5.566264,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40576,1,"Les Hermittes",43.377711,5.59014,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40580,1,"Les Pégoulières",43.381743,5.579616,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40581,1,"Les Termes",43.385448,5.561353,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40594,1,"Revers du Jas",43.37807,5.587473,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40611,1,"Halte Routière de Peypin",43.384622,5.576598,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40615,1,"Le Château",43.379611,5.583528,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40616,1,"Le Deven",43.377214,5.597646,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40617,1,"Le Panorama",43.3769,5.603854,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40619,1,"Hameau du Vallon",43.276891,5.554628,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40621,1,"Cimetière des Fenestrelles",43.274601,5.559053,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40624,1,"La Verrerie",43.375009,5.607507,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40626,1,"Les Cossettes",43.283781,5.548884,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40628,1,"Colonel de Roux",43.295324,5.566755,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40635,1,"Martin Luther King",43.29288,5.562788,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40637,1,"Piscine Alain Bernard / Oasis du Charrel",43.28443,5.547615,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40639,1,"Eiffel",43.284907,5.548516,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40651,1,"Le Charrel",43.279191,5.551126,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40652,1,"Marthin Luther King",43.292969,5.562793,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40659,1,"Le Castellet",43.28566,5.566309,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40661,1,"Lou Fenestrel",43.280262,5.565181,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40663,1,"Vallon des Gavots",43.281648,5.565456,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40667,1,"Chemin du Charrel",43.277462,5.561085,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40669,1,"La Verdure",43.288838,5.567091,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40672,1,"Lotissement des Solans",43.312217,5.569615,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40673,1,"La Bretagne",43.312254,5.563299,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40674,1,"Grand Pin Vert",43.307324,5.565743,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40675,1,"Jean Aicard",43.302656,5.567549,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40677,1,"Route d'Eoures",43.297332,5.568752,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40678,1,"Actipôle",43.285632,5.527199,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40681,1,"Les Boyers",43.396882,5.620819,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40682,1,"Santucci",43.394525,5.59773,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40684,1,"Chemin de Langlade",43.307501,5.587046,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40686,1,"Auberge Neuve",43.39362,5.551244,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40688,1,"Clair Soleil",43.300535,5.580371,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40692,1,"Val de Riou",43.326476,5.611121,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40694,1,"La Cauvine",43.333153,5.616024,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40696,1,"Piguière",43.335922,5.616626,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40698,1,"La Cougoulière",43.339245,5.606761,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40700,1,"Le Pigeonnier",43.402614,5.608898,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40701,1,"Valla de Rigon",43.398202,5.615578,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40702,1,"Les Playes",43.385015,5.613258,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40703,1,"Plan de Redon",43.390578,5.617251,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40704,1,"Chemin du Caou",43.329147,5.607861,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40706,1,"Campagne",43.322458,5.587006,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40709,1,"Route de Beaudinard",43.310188,5.58354,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40711,1,"Chemin de Valcros",43.337683,5.613461,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40713,1,"Le Lavoir",43.328034,5.613415,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40715,1,"Les Thourons",43.335936,5.603775,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40717,1,"Boulodrome",43.393627,5.595324,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40718,1,"Le Coularet",43.193585,5.364388,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40720,1,"Les Chênes",43.39421,5.624095,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40721,1,"Bastide Thouron",43.333105,5.606362,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40723,1,"Allée des Muriers",43.27573,5.551375,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40724,1,"Parking Passons",43.292449,5.575913,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40725,1,"Les Faïenciers",43.294859,5.56993,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40729,1,"Centre Aéré d'Auriol",43.372138,5.645551,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40838,1,"Les Bénézits",43.40177,5.587177,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40839,1,"Pont de Joux",43.365281,5.613892,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40843,1,"Collège Louis Aragon",43.345544,5.600416,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40844,1,"La Chavatine",43.406195,5.549988,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40845,1,"Collet Blanc",43.40612,5.536476,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40846,1,"St Savournin Centre",43.40643,5.528142,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40847,1,"L'Etoile",43.408908,5.52617,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40848,1,"Armel Maroc",43.396355,5.544872,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40849,1,"Les Oliviers",43.39182,5.55007,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40851,1,"La Reyne",43.395437,5.550642,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40852,1,"La Gare Cadolive",43.39825,5.549481,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40853,1,"Le Stade",43.277492,5.561616,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40854,1,"St Joseph Cadolive",43.403756,5.551257,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40856,1,"Chante Coucou",43.400132,5.549117,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40858,1,"Plateau des Espillières",43.282779,5.57181,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40864,1,"Le Stade",43.401221,5.549092,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40865,1,"La Poste",43.452674,5.469992,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40866,1,"Pergine",43.41719,5.517094,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40868,1,"La Tour",43.416807,5.504439,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40871,1,"Les Rampauds",43.413743,5.52296,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40874,1,"La Valentine",43.405272,5.546556,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40886,1,"Bouire",43.374887,5.60914,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40889,1,"La Rouvière",43.378517,5.56576,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40900,1,"Le Reggage",43.363572,5.567469,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40901,1,"Les Bastides Provençales",43.388665,5.56685,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40906,1,"Les Hauts de Peypin",43.387473,5.582272,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40910,1,"Les Matelots",43.391222,5.587984,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40911,1,"Les Roquettes",43.390352,5.604547,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40931,1,"Parc d'Activités de Valdonne",43.399125,5.55693,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40938,1,"Plein Sud",43.378927,5.586226,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40960,1,"Chemin des Gorguettes",43.403105,5.586438,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40966,1,"Clos Doria",43.404237,5.572132,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40972,1,"Ecole Le Pigeonnier",43.403584,5.609842,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40973,1,"Ecoles Prim Matern Auberge Neuve",43.392516,5.552674,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40978,1,"Escaillon",43.385019,5.573562,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40981,1,"Impasse des Ormeaux",43.388422,5.5842,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40995,1,"Eglise de Beaudinard",43.315389,5.588503,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40996,1,"Eglise de Beaudinard",43.311944,5.585561,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40997,1,"Eoures Park",43.302228,5.529772,,1,,Europe/Paris,,OAE, +OAE:SA:CTP40998,1,"Gare",43.295807,5.566216,,1,,Europe/Paris,,OAE, +OAE:SA:CTP41000,1,"Saint Pierre",43.304119,5.578419,,1,,Europe/Paris,,OAE, +OAE:SA:CTP41001,1,"La Source",43.317438,5.596576,,1,,Europe/Paris,,OAE, +OAE:SA:CTP41003,1,"Terrain Berlioux",43.295612,5.583159,,1,,Europe/Paris,,OAE, +OAE:SA:CTP41005,1,"Ecole Camp Major",43.285931,5.545557,,1,,Europe/Paris,,OAE, +OAE:SA:CTP41006,1,"Ecole Valriant",43.284166,5.543834,,1,,Europe/Paris,,OAE, +OAE:SA:CTP41007,1,"Pont de Tessala",43.294368,5.557221,,1,,Europe/Paris,,OAE, +OAE:SA:CTP41008,1,"Résidence Tessala",43.296017,5.555639,,1,,Europe/Paris,,OAE, +OET:SA:CTP30001,1,"LES CADESTEAUX RN 113",43.478861,5.227184,,1,,Europe/Paris,,OET, +OET:SA:CTP30003,1,"LA FALAISE",43.47412,5.228278,,1,,Europe/Paris,,OET, +OET:SA:CTP30005,1,"BASE NAUTIQUE",43.471295,5.230642,,1,,Europe/Paris,,OET, +OET:SA:CTP30007,1,"LE PORRY",43.467088,5.231602,,1,,Europe/Paris,,OET, +OET:SA:CTP30010,1,"VIGNETTES ECOLE",43.462412,5.230576,,1,,Europe/Paris,,OET, +OET:SA:CTP30011,1,"LES VIGNETTES RN 113",43.463535,5.231953,,1,,Europe/Paris,,OET, +OET:SA:CTP30014,1,"HENRI LOUBET",43.450468,5.235638,,1,,Europe/Paris,,OET, +OET:SA:CTP30016,1,"LES TAMARIS",43.448971,5.233118,,1,,Europe/Paris,,OET, +OET:SA:CTP30018,1,"LES TRIBALLES",43.449195,5.230488,,1,,Europe/Paris,,OET, +OET:SA:CTP30021,1,"VIEUX MOULIN",43.458703,5.233079,,1,,Europe/Paris,,OET, +OET:SA:CTP30023,1,"LES SYBILLES",43.415899,5.271242,,1,,Europe/Paris,,OET, +OET:SA:CTP30024,1,"FERNANDEL",43.394641,5.230988,,1,,Europe/Paris,,OET, +OET:SA:CTP30026,1,"HOTELS 1",43.44447,5.224917,,1,,Europe/Paris,,OET, +OET:SA:CTP30027,1,"FRET",43.444564,5.22075,,1,,Europe/Paris,,OET, +OET:SA:CTP30029,1,"AEROPORT",43.443668,5.220261,,1,,Europe/Paris,,OET, +OET:SA:CTP30035,1,"LONDRES ATHENES",43.431984,5.241822,,1,,Europe/Paris,,OET, +OET:SA:CTP30037,1,"ESTROUBLANS CENTRE VIE",43.433948,5.242662,,1,,Europe/Paris,,OET, +OET:SA:CTP30040,1,"EUROPE / ESTROUBLANS",43.440038,5.242946,,1,,Europe/Paris,,OET, +OET:SA:CTP30042,1,"PIERRE PLANTEE - QUAI 5",43.446682,5.248653,,1,,Europe/Paris,,OET, +OET:SA:CTP30048,1,"ATHENES STOCKHOLM",43.434223,5.239801,,1,,Europe/Paris,,OET, +OET:SA:CTP30056,1,"ANJOLY",43.421096,5.267314,,1,,Europe/Paris,,OET, +OET:SA:CTP30063,1,"J.E CONSTANT",43.439691,5.256109,,1,,Europe/Paris,,OET, +OET:SA:CTP30067,1,"PAUL GUIGOU",43.439841,5.252575,,1,,Europe/Paris,,OET, +OET:SA:CTP30071,1,"ESPACE",43.434254,5.260953,,1,,Europe/Paris,,OET, +OET:SA:CTP30080,1,"LA FRESCOULE",43.423974,5.277208,,1,,Europe/Paris,,OET, +OET:SA:CTP30081,1,"LA FRESCOULE",43.424031,5.277088,,1,,Europe/Paris,,OET, +OET:SA:CTP30082,1,"MAIL DE LA FRESCOULE",43.422362,5.279914,,1,,Europe/Paris,,OET, +OET:SA:CTP30084,1,"RUE DE FONTBLANCHE",43.423136,5.283519,,1,,Europe/Paris,,OET, +OET:SA:CTP30085,1,"COLLEGE S. DE BEAUVOIR",43.427457,5.276425,,1,,Europe/Paris,,OET, +OET:SA:CTP30091,1,"ECOLE LE REPOS",43.423509,5.28434,,1,,Europe/Paris,,OET, +OET:SA:CTP30094,1,"FONTBLANCHE",43.422261,5.286238,,1,,Europe/Paris,,OET, +OET:SA:CTP30096,1,"ST GERMET",43.421406,5.290228,,1,,Europe/Paris,,OET, +OET:SA:CTP30098,1,"CROZE / CASCABEL",43.424368,5.29043,,1,,Europe/Paris,,OET, +OET:SA:CTP30100,1,"LA CADIERE",43.42715,5.290956,,1,,Europe/Paris,,OET, +OET:SA:CTP30102,1,"LES JARDINIERS",43.429075,5.286342,,1,,Europe/Paris,,OET, +OET:SA:CTP30104,1,"LA FILLE DU PUISATIER",43.432361,5.284241,,1,,Europe/Paris,,OET, +OET:SA:CTP30106,1,"LE BRUSQUIE",43.433864,5.284195,,1,,Europe/Paris,,OET, +OET:SA:CTP30108,1,"LES PIERRES FAUVES",43.435764,5.285428,,1,,Europe/Paris,,OET, +OET:SA:CTP30109,1,"CROIX ROUTE",43.432252,5.265133,,1,,Europe/Paris,,OET, +OET:SA:CTP30111,1,"LES TERRASSES",43.436167,5.263359,,1,,Europe/Paris,,OET, +OET:SA:CTP30113,1,"PAS DU BOEUF",43.438004,5.262293,,1,,Europe/Paris,,OET, +OET:SA:CTP30115,1,"LE LIOURAT",43.441134,5.259601,,1,,Europe/Paris,,OET, +OET:SA:CTP30117,1,"LA VALLEE",43.445398,5.25624,,1,,Europe/Paris,,OET, +OET:SA:CTP30119,1,"FOYER SOLEIL",43.447588,5.255068,,1,,Europe/Paris,,OET, +OET:SA:CTP30121,1,"LES HERMES",43.450671,5.252139,,1,,Europe/Paris,,OET, +OET:SA:CTP30123,1,"LES VIGNES",43.453174,5.250686,,1,,Europe/Paris,,OET, +OET:SA:CTP30125,1,"LE PARC",43.455778,5.250523,,1,,Europe/Paris,,OET, +OET:SA:CTP30127,1,"PLACE DE L'AIRE",43.459441,5.250759,,1,,Europe/Paris,,OET, +OET:SA:CTP30129,1,"VIEUX VILLAGE",43.461712,5.24922,,1,,Europe/Paris,,OET, +OET:SA:CTP30130,1,"ROUCAS L'ESCOUNIERE",43.457413,5.248927,,1,,Europe/Paris,,OET, +OET:SA:CTP30132,1,"FREDERIC MISTRAL",43.457195,5.246336,,1,,Europe/Paris,,OET, +OET:SA:CTP30134,1,"LA RANGUE",43.459293,5.245554,,1,,Europe/Paris,,OET, +OET:SA:CTP30136,1,"PRE BATAILLE",43.460945,5.245341,,1,,Europe/Paris,,OET, +OET:SA:CTP30138,1,"REINE JEANNE",43.461449,5.243638,,1,,Europe/Paris,,OET, +OET:SA:CTP30140,1,"LA CORNICHE",43.460018,5.242368,,1,,Europe/Paris,,OET, +OET:SA:CTP30142,1,"STADE LADOUMEGUE",43.458373,5.24268,,1,,Europe/Paris,,OET, +OET:SA:CTP30144,1,"LES CADENIERES",43.465635,5.241814,,1,,Europe/Paris,,OET, +OET:SA:CTP30145,1,"PICARDIE",43.457358,5.239616,,1,,Europe/Paris,,OET, +OET:SA:CTP30147,1,"LORRAINE",43.455044,5.238042,,1,,Europe/Paris,,OET, +OET:SA:CTP30149,1,"ALSACE",43.453193,5.238639,,1,,Europe/Paris,,OET, +OET:SA:CTP30151,1,"19-mars-62",43.45165,5.239845,,1,,Europe/Paris,,OET, +OET:SA:CTP30153,1,"LA PLAINE",43.45286,5.241326,,1,,Europe/Paris,,OET, +OET:SA:CTP30156,1,"LES COURONNES (BD DE LA LOMBARDE)",43.413182,5.249738,,1,,Europe/Paris,,OET, +OET:SA:CTP30157,1,"COUPERIGNE2",43.443291,5.233003,,1,,Europe/Paris,,OET, +OET:SA:CTP30159,1,"LES ROSES",43.45397,5.24353,,1,,Europe/Paris,,OET, +OET:SA:CTP30161,1,"SALVATOR ALLENDE",43.452304,5.244606,,1,,Europe/Paris,,OET, +OET:SA:CTP30163,1,"LES POMMIERS",43.448746,5.246511,,1,,Europe/Paris,,OET, +OET:SA:CTP30165,1,"LE JAI",43.425394,5.18171,,1,,Europe/Paris,,OET, +OET:SA:CTP30166,1,"LE JAI AVIATEUR",43.428405,5.18519,,1,,Europe/Paris,,OET, +OET:SA:CTP30167,1,"LE JAI / LA MOTTE PIQUET",43.429847,5.187088,,1,,Europe/Paris,,OET, +OET:SA:CTP30169,1,"LE JAI / COMTE DE GRASSE",43.431909,5.189708,,1,,Europe/Paris,,OET, +OET:SA:CTP30171,1,"LE JAI / CENTRE NAUTIQUE",43.435178,5.193943,,1,,Europe/Paris,,OET, +OET:SA:CTP30175,1,"LES BEUGONS",43.427044,5.210034,,1,,Europe/Paris,,OET, +OET:SA:CTP30177,1,"J. MERMOZ",43.424625,5.211714,,1,,Europe/Paris,,OET, +OET:SA:CTP30179,1,"ROS ET ROMANO",43.42438,5.215514,,1,,Europe/Paris,,OET, +OET:SA:CTP30181,1,"ROUTE DE LA PLAGE",43.42147,5.213344,,1,,Europe/Paris,,OET, +OET:SA:CTP30183,1,"ST EXUPERY",43.41938,5.213832,,1,,Europe/Paris,,OET, +OET:SA:CTP30189,1,"LA SIGNORE",43.420278,5.206129,,1,,Europe/Paris,,OET, +OET:SA:CTP30191,1,"GYMNASE ST PIERRE",43.408482,5.207389,,1,,Europe/Paris,,OET, +OET:SA:CTP30195,1,"GENEVOIX BRASSENS",43.412035,5.204988,,1,,Europe/Paris,,OET, +OET:SA:CTP30212,1,"CASCADELLE",43.412915,5.264218,,1,,Europe/Paris,,OET, +OET:SA:CTP30214,1,"GALAGOVIERE",43.418942,5.220817,,1,,Europe/Paris,,OET, +OET:SA:CTP30215,1,"LE GABIAN",43.41979,5.224721,,1,,Europe/Paris,,OET, +OET:SA:CTP30217,1,"LE MOULIN",43.421427,5.229739,,1,,Europe/Paris,,OET, +OET:SA:CTP30219,1,"GABRIEL VOISIN",43.421725,5.231703,,1,,Europe/Paris,,OET, +OET:SA:CTP30221,1,"PARC CAMOIN",43.41756,5.219699,,1,,Europe/Paris,,OET, +OET:SA:CTP30223,1,"PARC CAMOIN - QUAI 4",43.417881,5.219431,,1,,Europe/Paris,,OET, +OET:SA:CTP30226,1,"PRESIDENT J.F KENNEDY",43.417692,5.22179,,1,,Europe/Paris,,OET, +OET:SA:CTP30229,1,"MIRABEAU",43.415872,5.216542,,1,,Europe/Paris,,OET, +OET:SA:CTP30231,1,"MISTRAL",43.414178,5.217012,,1,,Europe/Paris,,OET, +OET:SA:CTP30233,1,"SAINTE ANNE",43.412202,5.218627,,1,,Europe/Paris,,OET, +OET:SA:CTP30235,1,"MAISON MEDICALE",43.523568,5.257549,,1,,Europe/Paris,,OET, +OET:SA:CTP30236,1,"LES FLORIDES",43.410411,5.209557,,1,,Europe/Paris,,OET, +OET:SA:CTP30237,1,"ROQUEPERTUSE COLLEGE",43.530296,5.249537,,1,,Europe/Paris,,OET, +OET:SA:CTP30242,1,"CLINIQUE",43.409456,5.215048,,1,,Europe/Paris,,OET, +OET:SA:CTP30244,1,"MARCEL PAGNOL",43.406329,5.215298,,1,,Europe/Paris,,OET, +OET:SA:CTP30246,1,"LE CARESTIER",43.404878,5.220097,,1,,Europe/Paris,,OET, +OET:SA:CTP30248,1,"LA CHAUME",43.407889,5.221161,,1,,Europe/Paris,,OET, +OET:SA:CTP30250,1,"LES AMANDIERS",43.406211,5.222371,,1,,Europe/Paris,,OET, +OET:SA:CTP30252,1,"EMILIE DE MIRABEAU (PARKING)",43.405077,5.223757,,1,,Europe/Paris,,OET, +OET:SA:CTP30253,1,"EMILIE DE MIRABEAU",43.405221,5.223752,,1,,Europe/Paris,,OET, +OET:SA:CTP30254,1,"LA VIERGE",43.408701,5.228775,,1,,Europe/Paris,,OET, +OET:SA:CTP30256,1,"LE COLLET ROUGE",43.411447,5.229666,,1,,Europe/Paris,,OET, +OET:SA:CTP30258,1,"LES OLIVIERS",43.41512,5.230863,,1,,Europe/Paris,,OET, +OET:SA:CTP30260,1,"LE DEVIN",43.406568,5.225855,,1,,Europe/Paris,,OET, +OET:SA:CTP30264,1,"NOTRE DAME",43.404424,5.23036,,1,,Europe/Paris,,OET, +OET:SA:CTP30266,1,"LACANAU",43.402663,5.23698,,1,,Europe/Paris,,OET, +OET:SA:CTP30268,1,"RAUMARTIN",43.40294,5.239375,,1,,Europe/Paris,,OET, +OET:SA:CTP30270,1,"SABATERY",43.404249,5.248531,,1,,Europe/Paris,,OET, +OET:SA:CTP30272,1,"PETIT NICE",43.40636,5.256249,,1,,Europe/Paris,,OET, +OET:SA:CTP30273,1,"RUE H. MILHAU",43.405383,5.252499,,1,,Europe/Paris,,OET, +OET:SA:CTP30275,1,"HENRI DUNANT",43.406799,5.25632,,1,,Europe/Paris,,OET, +OET:SA:CTP30277,1,"GARE PAS DES LANCIERS",43.409537,5.253487,,1,,Europe/Paris,,OET, +OET:SA:CTP30279,1,"LES COURONNES",43.41324,5.248926,,1,,Europe/Paris,,OET, +OET:SA:CTP30281,1,"CARBONNEL",43.415408,5.244546,,1,,Europe/Paris,,OET, +OET:SA:CTP30283,1,"LA RESIDENCE",43.417393,5.240983,,1,,Europe/Paris,,OET, +OET:SA:CTP30285,1,"LA CROIX",43.419235,5.238017,,1,,Europe/Paris,,OET, +OET:SA:CTP30287,1,"BD ABBADIE",43.420026,5.235701,,1,,Europe/Paris,,OET, +OET:SA:CTP30289,1,"BD FERRISSE",43.419561,5.24129,,1,,Europe/Paris,,OET, +OET:SA:CTP30291,1,"LA GLACIERE",43.418766,5.244741,,1,,Europe/Paris,,OET, +OET:SA:CTP30293,1,"LES RICHAUDS",43.419221,5.248885,,1,,Europe/Paris,,OET, +OET:SA:CTP30295,1,"LA SIPIERE",43.41797,5.257235,,1,,Europe/Paris,,OET, +OET:SA:CTP30297,1,"LES AMPHOUX",43.414228,5.265544,,1,,Europe/Paris,,OET, +OET:SA:CTP30298,1,"MOULIN A HUILE",43.417834,5.259609,,1,,Europe/Paris,,OET, +OET:SA:CTP30299,1,"LE PAS DES BROQUETTES",43.412038,5.259116,,1,,Europe/Paris,,OET, +OET:SA:CTP30301,1,"PAS DES LANCIERS/LES PLATANES",43.406361,5.25853,,1,,Europe/Paris,,OET, +OET:SA:CTP30304,1,"LES PLATANES",43.404942,5.258803,,1,,Europe/Paris,,OET, +OET:SA:CTP30305,1,"CHEMIN DU LEVUN",43.534806,5.256034,,1,,Europe/Paris,,OET, +OET:SA:CTP30313,1,"8 MAI 1945 / C. COMMERCIAL",43.414882,5.223314,,1,,Europe/Paris,,OET, +OET:SA:CTP30315,1,"GEORGES CLEMENCEAU",43.414381,5.220513,,1,,Europe/Paris,,OET, +OET:SA:CTP30317,1,"LE THOLONET",43.383103,5.200705,,1,,Europe/Paris,,OET, +OET:SA:CTP30318,1,"COTTON",43.384471,5.2115,,1,,Europe/Paris,,OET, +OET:SA:CTP30320,1,"LES PIELLETTES",43.385051,5.217373,,1,,Europe/Paris,,OET, +OET:SA:CTP30321,1,"LES PRES",43.389233,5.221048,,1,,Europe/Paris,,OET, +OET:SA:CTP30322,1,"PLACE DE LAURE",43.388209,5.218308,,1,,Europe/Paris,,OET, +OET:SA:CTP30324,1,"PRE FLEURI",43.386733,5.223413,,1,,Europe/Paris,,OET, +OET:SA:CTP30328,1,"MENAGE NEUF",43.387356,5.232346,,1,,Europe/Paris,,OET, +OET:SA:CTP30330,1,"VIGUIERE BD DE PROVENCE",43.388505,5.234427,,1,,Europe/Paris,,OET, +OET:SA:CTP30332,1,"VIGUIERE ECOLE",43.389893,5.234657,,1,,Europe/Paris,,OET, +OET:SA:CTP30333,1,"VIGUIERE LE MAIL",43.390364,5.236531,,1,,Europe/Paris,,OET, +OET:SA:CTP30334,1,"VICTOR HUGO",43.393413,5.238202,,1,,Europe/Paris,,OET, +OET:SA:CTP30335,1,"LA REPUBLIQUE",43.394181,5.239042,,1,,Europe/Paris,,OET, +OET:SA:CTP30337,1,"CAPEAU",43.396237,5.244498,,1,,Europe/Paris,,OET, +OET:SA:CTP30339,1,"LES FORTUNES",43.397,5.251887,,1,,Europe/Paris,,OET, +OET:SA:CTP30340,1,"REBUTY",43.400976,5.263103,,1,,Europe/Paris,,OET, +OET:SA:CTP30343,1,"LA ROSE",43.393645,5.231579,,1,,Europe/Paris,,OET, +OET:SA:CTP30346,1,"COLLET DE LEBRE",43.395172,5.230645,,1,,Europe/Paris,,OET, +OET:SA:CTP30348,1,"LE TUNNEL",43.400228,5.226189,,1,,Europe/Paris,,OET, +OET:SA:CTP30350,1,"LA GARE ROCKENHAUSEN",43.486439,5.228666,,1,,Europe/Paris,,OET, +OET:SA:CTP30352,1,"LE LAVOIR",43.486123,5.225352,,1,,Europe/Paris,,OET, +OET:SA:CTP30354,1,"ROCKENHAUSEN",43.485897,5.223711,,1,,Europe/Paris,,OET, +OET:SA:CTP30356,1,"MAS DES JEUNES",43.485631,5.232615,,1,,Europe/Paris,,OET, +OET:SA:CTP30357,1,"MARCEL ACHARD",43.485999,5.237352,,1,,Europe/Paris,,OET, +OET:SA:CTP30361,1,"LA GARE",43.487138,5.230431,,1,,Europe/Paris,,OET, +OET:SA:CTP30363,1,"CENTRE VILLE",43.488306,5.230144,,1,,Europe/Paris,,OET, +OET:SA:CTP30365,1,"CHARLES DE GAULLE",43.491415,5.229881,,1,,Europe/Paris,,OET, +OET:SA:CTP30367,1,"AV. VICTOR HUGO",43.491798,5.22701,,1,,Europe/Paris,,OET, +OET:SA:CTP30369,1,"STADE DES PUGETTES",43.491916,5.221605,,1,,Europe/Paris,,OET, +OET:SA:CTP30371,1,"BD MONTAIGNE",43.488284,5.222546,,1,,Europe/Paris,,OET, +OET:SA:CTP30373,1,"LA CLINIQUE",43.488454,5.220925,,1,,Europe/Paris,,OET, +OET:SA:CTP30375,1,"ROUTE DE VELAUX",43.494289,5.232374,,1,,Europe/Paris,,OET, +OET:SA:CTP30377,1,"LES BLEUETS",43.495897,5.235148,,1,,Europe/Paris,,OET, +OET:SA:CTP30378,1,"LES FREGATES",43.497013,5.234772,,1,,Europe/Paris,,OET, +OET:SA:CTP30379,1,"LE CIMETIERE",43.493479,5.229714,,1,,Europe/Paris,,OET, +OET:SA:CTP30381,1,"LES BRETS",43.510959,5.219415,,1,,Europe/Paris,,OET, +OET:SA:CTP30382,1,"LES CESAIRES",43.514368,5.214002,,1,,Europe/Paris,,OET, +OET:SA:CTP30383,1,"LES BARJAQUETS",43.507831,5.218677,,1,,Europe/Paris,,OET, +OET:SA:CTP30384,1,"HAMEAU DES BARJAQUETS",43.515842,5.209973,,1,,Europe/Paris,,OET, +OET:SA:CTP30385,1,"LES CEDRES",43.50952,5.214005,,1,,Europe/Paris,,OET, +OET:SA:CTP30386,1,"LES MURIERS",43.511189,5.216177,,1,,Europe/Paris,,OET, +OET:SA:CTP30387,1,"LA GRANDE BASTIDE",43.505052,5.220044,,1,,Europe/Paris,,OET, +OET:SA:CTP30390,1,"LA GERBINE",43.509411,5.224836,,1,,Europe/Paris,,OET, +OET:SA:CTP30393,1,"LA VERDIERE",43.518353,5.232134,,1,,Europe/Paris,,OET, +OET:SA:CTP30395,1,"LA VERANE",43.52821,5.236811,,1,,Europe/Paris,,OET, +OET:SA:CTP30397,1,"BASTIDE BERTIN",43.533262,5.247265,,1,,Europe/Paris,,OET, +OET:SA:CTP30398,1,"EMILE RIPERT",43.536461,5.245042,,1,,Europe/Paris,,OET, +OET:SA:CTP30399,1,"BERLIOZ",43.537146,5.248638,,1,,Europe/Paris,,OET, +OET:SA:CTP30400,1,"PAGANINI",43.536305,5.251475,,1,,Europe/Paris,,OET, +OET:SA:CTP30401,1,"LES COLLINES",43.534729,5.254559,,1,,Europe/Paris,,OET, +OET:SA:CTP30402,1,"LES RESTOUBLES",43.530346,5.255683,,1,,Europe/Paris,,OET, +OET:SA:CTP30403,1,"CENTRE COMMERCIAL",43.492079,5.231965,,1,,Europe/Paris,,OET, +OET:SA:CTP30404,1,"QUATRE TOURS",43.532486,5.253679,,1,,Europe/Paris,,OET, +OET:SA:CTP30406,1,"LE PARTERRE",43.526661,5.257238,,1,,Europe/Paris,,OET, +OET:SA:CTP30409,1,"LA PERAUDE",43.527457,5.252075,,1,,Europe/Paris,,OET, +OET:SA:CTP30410,1,"PIERRE PUGET",43.529436,5.249394,,1,,Europe/Paris,,OET, +OET:SA:CTP30414,1,"LE DRIGNON",43.473792,5.16568,,1,,Europe/Paris,,OET, +OET:SA:CTP30415,1,"PORT A. SAMSON",43.472275,5.166926,,1,,Europe/Paris,,OET, +OET:SA:CTP30416,1,"FREDERIC MISTRAL",43.473691,5.168824,,1,,Europe/Paris,,OET, +OET:SA:CTP30417,1,"JEAN MONNET",43.476495,5.168555,,1,,Europe/Paris,,OET, +OET:SA:CTP30418,1,"PLACE SOUVENIR FRANCAIS",43.475777,5.167124,,1,,Europe/Paris,,OET, +OET:SA:CTP30419,1,"AV. DE LA LIBERATION",43.478447,5.168194,,1,,Europe/Paris,,OET, +OET:SA:CTP30421,1,"LOUIS PASQUET",43.480387,5.16897,,1,,Europe/Paris,,OET, +OET:SA:CTP30424,1,"LA BALEINE BLEUE",43.48305,5.169287,,1,,Europe/Paris,,OET, +OET:SA:CTP30426,1,"LES LOGIS",43.485141,5.169773,,1,,Europe/Paris,,OET, +OET:SA:CTP30428,1,"JEAN-JACQUES ROUSSEAU",43.485219,5.166455,,1,,Europe/Paris,,OET, +OET:SA:CTP30430,1,"GS PICASSO",43.487307,5.165039,,1,,Europe/Paris,,OET, +OET:SA:CTP30432,1,"MARCEL DASSAULT",43.48812,5.166623,,1,,Europe/Paris,,OET, +OET:SA:CTP30434,1,"FORUM JEUNES ET CULTURE",43.488892,5.171108,,1,,Europe/Paris,,OET, +OET:SA:CTP30436,1,"G.S. PAUL LANGEVIN",43.488936,5.173543,,1,,Europe/Paris,,OET, +OET:SA:CTP30443,1,"LE CLOS DE GALEIGNE",43.495459,5.156955,,1,,Europe/Paris,,OET, +OET:SA:CTP30444,1,"COOPERATIVE VINICOLE",43.494552,5.154835,,1,,Europe/Paris,,OET, +OET:SA:CTP30447,1,"LA SUZANNE",43.494268,5.140875,,1,,Europe/Paris,,OET, +OET:SA:CTP30448,1,"LES 3 PINS",43.497086,5.132774,,1,,Europe/Paris,,OET, +OET:SA:CTP30449,1,"MAURAN - PONT DE L'ARC",43.506558,5.133398,,1,,Europe/Paris,,OET, +OET:SA:CTP30450,1,"MAURAN",43.507663,5.134811,,1,,Europe/Paris,,OET, +OET:SA:CTP30451,1,"ST ESTEVE",43.503404,5.150935,,1,,Europe/Paris,,OET, +OET:SA:CTP30452,1,"G.S. EMILE ZOLA",43.487665,5.161314,,1,,Europe/Paris,,OET, +OET:SA:CTP30453,1,"LES OEILLADES",43.486928,5.163377,,1,,Europe/Paris,,OET, +OET:SA:CTP30454,1,"POSTE - CENTRE COMMERCIAL",43.478329,5.169263,,1,,Europe/Paris,,OET, +OET:SA:CTP30456,1,"BOETI",43.479975,5.173012,,1,,Europe/Paris,,OET, +OET:SA:CTP30458,1,"CABRIANNE OUEST",43.48174,5.174965,,1,,Europe/Paris,,OET, +OET:SA:CTP30460,1,"CAPEVAIRE",43.482679,5.173122,,1,,Europe/Paris,,OET, +OET:SA:CTP30462,1,"DEZARNAUD",43.481849,5.170129,,1,,Europe/Paris,,OET, +OET:SA:CTP30464,1,"LES ACACIAS",43.485242,5.172088,,1,,Europe/Paris,,OET, +OET:SA:CTP30466,1,"LA MARIELIE",43.488042,5.173684,,1,,Europe/Paris,,OET, +OET:SA:CTP30468,1,"LES JARDINS DE CABRIANNE",43.47758,5.169374,,1,,Europe/Paris,,OET, +OET:SA:CTP30470,1,"08-mai-45",43.479423,5.172812,,1,,Europe/Paris,,OET, +OET:SA:CTP30472,1,"PARC HENRI FABRE",43.481483,5.176533,,1,,Europe/Paris,,OET, +OET:SA:CTP30474,1,"LES MOUETTES",43.483324,5.180045,,1,,Europe/Paris,,OET, +OET:SA:CTP30476,1,"LES PALLIERES",43.417027,5.284278,,1,,Europe/Paris,,OET, +OET:SA:CTP30479,1,"CERCLE LE REPOS",43.419762,5.288182,,1,,Europe/Paris,,OET, +OET:SA:CTP30480,1,"LES CARDELINES",43.424499,5.295817,,1,,Europe/Paris,,OET, +OET:SA:CTP30482,1,"VAL DE CROY",43.421807,5.297232,,1,,Europe/Paris,,OET, +OET:SA:CTP30484,1,"RENARDIERE ECOLE",43.417031,5.29891,,1,,Europe/Paris,,OET, +OET:SA:CTP30489,1,"LA CITE HAUTE 2",43.423313,5.304602,,1,,Europe/Paris,,OET, +OET:SA:CTP30494,1,"GENERAL LECLERC",43.409692,5.319476,,1,,Europe/Paris,,OET, +OET:SA:CTP30495,1,"SQUARE GAL DE GAULLE - QUAI 4",43.40939,5.321939,,1,,Europe/Paris,,OET, +OET:SA:CTP30496,1,"SQUARE GAL DE GAULLE - QUAI 3",43.409067,5.322539,,1,,Europe/Paris,,OET, +OET:SA:CTP30497,1,"LES CLAIRIERES",43.420705,5.3238,,1,,Europe/Paris,,OET, +OET:SA:CTP30498,1,"LA VOILERIE",43.419182,5.339154,,1,,Europe/Paris,,OET, +OET:SA:CTP30500,1,"CINEMA",43.414475,5.360176,,1,,Europe/Paris,,OET, +OET:SA:CTP30503,1,"LE PIN",43.413002,5.373224,,1,,Europe/Paris,,OET, +OET:SA:CTP30505,1,"JAS DE RHODES",43.391476,5.315124,,1,,Europe/Paris,,OET, +OET:SA:CTP30506,1,"COLLEGE MONOD",43.398405,5.335698,,1,,Europe/Paris,,OET, +OET:SA:CTP30508,1,"BOUROUMETTES ECOLE",43.393746,5.33443,,1,,Europe/Paris,,OET, +OET:SA:CTP30510,1,"STE ELISABETH",43.401192,5.337324,,1,,Europe/Paris,,OET, +OET:SA:CTP30511,1,"CADENEAUX EGLISE",43.394214,5.339906,,1,,Europe/Paris,,OET, +OET:SA:CTP30513,1,"LES MATELOTS",43.388961,5.334439,,1,,Europe/Paris,,OET, +OET:SA:CTP30515,1,"MOULIN DU DIABLE",43.376661,5.350797,,1,,Europe/Paris,,OET, +OET:SA:CTP30516,1,"AMANDIERS HAUT",43.387746,5.336435,,1,,Europe/Paris,,OET, +OET:SA:CTP30518,1,"AMANDIERS BAS",43.385049,5.337366,,1,,Europe/Paris,,OET, +OET:SA:CTP30520,1,"AVENUE DES ROSIERS",43.383392,5.340029,,1,,Europe/Paris,,OET, +OET:SA:CTP30523,1,"MONACO",43.385024,5.345355,,1,,Europe/Paris,,OET, +OET:SA:CTP30525,1,"STADE BASILE BOLI",43.381057,5.337675,,1,,Europe/Paris,,OET, +OET:SA:CTP30526,1,"ST GEORGES",43.378604,5.344352,,1,,Europe/Paris,,OET, +OET:SA:CTP30528,1,"JEANNE D'ARC",43.381483,5.346895,,1,,Europe/Paris,,OET, +OET:SA:CTP30530,1,"MAIRIE GAVOTTE",43.379835,5.350828,,1,,Europe/Paris,,OET, +OET:SA:CTP30532,1,"VERDURON",43.375177,5.344369,,1,,Europe/Paris,,OET, +OET:SA:CTP30534,1,"TANTE ROSE",43.376763,5.335872,,1,,Europe/Paris,,OET, +OET:SA:CTP30535,1,"COLLEGE COUSTEAU",43.484344,5.23434,,1,,Europe/Paris,,OET, +OET:SA:CTP30536,1,"POLE EMPLOI",43.422679,5.261349,,1,,Europe/Paris,,OET, +OET:SA:CTP30540,1,"LA COLLINE",43.403998,5.242487,,1,,Europe/Paris,,OET, +OET:SA:CTP30545,1,"CHEMIN DE PIERREFEU",43.394007,5.337638,,1,,Europe/Paris,,OET, +OET:SA:CTP30548,1,"LES BARNOUINS",43.416793,5.321856,,1,,Europe/Paris,,OET, +OET:SA:CTP30549,1,"CADENEAUX CIMETIERE",43.398696,5.338809,,1,,Europe/Paris,,OET, +OET:SA:CTP30551,1,"Bd TARDY - Av DES JOYEUX",43.377506,5.346649,,1,,Europe/Paris,,OET, +OET:SA:CTP30552,1,"AV MARIUS BREMOND",43.375318,5.347077,,1,,Europe/Paris,,OET, +OET:SA:CTP30554,1,"LES COLIBRIS",43.391201,5.331177,,1,,Europe/Paris,,OET, +OET:SA:CTP30556,1,"LES MOUETTES",43.392146,5.327922,,1,,Europe/Paris,,OET, +OET:SA:CTP30558,1,"LES ROSSIGNOLS",43.392423,5.329613,,1,,Europe/Paris,,OET, +OET:SA:CTP30560,1,"Bd PAUL ARENE",43.396843,5.334938,,1,,Europe/Paris,,OET, +OET:SA:CTP30562,1,"CHEMIN DU PAS DE LA MUE",43.414837,5.300203,,1,,Europe/Paris,,OET, +OET:SA:CTP30564,1,"LE CLOS IDEAL",43.391524,5.341565,,1,,Europe/Paris,,OET, +OET:SA:CTP30566,1,"LA GARDIETTE",43.419226,5.34271,,1,,Europe/Paris,,OET, +OET:SA:CTP30569,1,"PLAN DE CAMPAGNE VILLAGE",43.417836,5.353839,,1,,Europe/Paris,,OET, +OET:SA:CTP30570,1,"PINCHINADES M.PAGNOL",43.42568,5.294397,,1,,Europe/Paris,,OET, +OET:SA:CTP30572,1,"LA RASTELIDO",43.418386,5.29803,,1,,Europe/Paris,,OET, +OET:SA:CTP30574,1,"BOWLING",43.414501,5.352837,,1,,Europe/Paris,,OET, +OET:SA:CTP30579,1,"LES BLONDINES",43.382147,5.342442,,1,,Europe/Paris,,OET, +OET:SA:CTP30582,1,"CHARLES DE GAULLE",43.414441,5.204443,,1,,Europe/Paris,,OET, +OET:SA:CTP30583,1,"Bd DE L'EUROPE",43.436768,5.24183,,1,,Europe/Paris,,OET, +OET:SA:CTP30588,1,"AV DES OLIVIERS",43.511573,5.221003,,1,,Europe/Paris,,OET, +OET:SA:CTP30590,1,"VENT DU SOLEIL",43.464554,5.239203,,1,,Europe/Paris,,OET, +OET:SA:CTP30597,1,"CADENEAUX STADE",43.396908,5.340035,,1,,Europe/Paris,,OET, +OET:SA:CTP30599,1,"PISCINE C. JOUVE",43.476079,5.172078,,1,,Europe/Paris,,OET, +OET:SA:CTP30602,1,"LES PINCHINADES",43.43788,5.28566,,1,,Europe/Paris,,OET, +OET:SA:CTP30603,1,"EMILE BOUILHAC",43.46008,5.250729,,1,,Europe/Paris,,OET, +OET:SA:CTP30604,1,"AV. DE LATTRE DE TASSIGNY",43.417538,5.291226,,1,,Europe/Paris,,OET, +OET:SA:CTP30605,1,"LES BAYONS",43.383822,5.206486,,1,,Europe/Paris,,OET, +OET:SA:CTP30610,1,"JEAN AICARD",43.463598,5.243007,,1,,Europe/Paris,,OET, +OET:SA:CTP30611,1,"CHEMIN DES OISEAUX",43.459349,5.229779,,1,,Europe/Paris,,OET, +OET:SA:CTP30612,1,"HALTE ROUTIERE DE VELAUX",43.533409,5.249807,,1,,Europe/Paris,,OET, +OET:SA:CTP30614,1,"ALLEE DES PLATANES",43.40074,5.265533,,1,,Europe/Paris,,OET, +OET:SA:CTP30620,1,"PISCINE",43.397561,5.323025,,1,,Europe/Paris,,OET, +OET:SA:CTP30622,1,"PLACE JEAN MOULIN - MAIRIE",43.476019,5.16784,,1,,Europe/Paris,,OET, +OET:SA:CTP30624,1,"SAINT ANTOINE",43.373966,5.354563,,1,,Europe/Paris,,OET, +OET:SA:CTP30625,1,"OCTROI",43.375393,5.353701,,1,,Europe/Paris,,OET, +OET:SA:CTP30627,1,"F. MITTERRAND",43.378301,5.351968,,1,,Europe/Paris,,OET, +OET:SA:CTP30630,1,"FREDERIC MISTRAL",43.488938,5.234746,,1,,Europe/Paris,,OET, +OET:SA:CTP30634,1,"MAURAN PONT DE L'ARC",43.506569,5.133324,,1,,Europe/Paris,,OET, +OET:SA:CTP30635,1,"C.A.M.",43.49061,5.233435,,1,,Europe/Paris,,OET, +OET:SA:CTP30638,1,"MIRABEAU MARCHÉ",27.140968,-3.404561,,1,,Europe/Paris,,OET, +OET:SA:CTP30639,1,"LOTISSEMENT LES VIGNES",43.491961,5.16244,,1,,Europe/Paris,,OET, +OET:SA:CTP30641,1,"GS SAINT LOUIS",43.395548,5.234388,,1,,Europe/Paris,,OET, +OET:SA:CTP30646,1,"TOES/CARESTIER",43.404435,5.21651,,1,,Europe/Paris,,OET, +OET:SA:CTP30648,1,"TECHNOPARC 2",43.398523,5.206544,,1,,Europe/Paris,,OET, +OET:SA:CTP30649,1,"SAINTE MARIE",43.41237,5.237509,,1,,Europe/Paris,,OET, +OET:SA:CTP30651,1,"SARRAGOUSSE",43.487574,5.237975,,1,,Europe/Paris,,OET, +OET:SA:CTP30653,1,"LES BAISSES",43.540592,5.150195,,1,,Europe/Paris,,OET, +OET:SA:CTP30655,1,"LES GRAMENIERES",43.550391,5.185335,,1,,Europe/Paris,,OET, +OET:SA:CTP30656,1,"CENTRE COMMERCIAL",43.528554,5.257075,,1,,Europe/Paris,,OET, +OET:SA:CTP30664,1,"CAMPING MARINA",43.470538,5.229727,,1,,Europe/Paris,,OET, +OET:SA:CTP30666,1,"Z.A. LA GLACIERE",43.42273,5.242167,,1,,Europe/Paris,,OET, +OET:SA:CTP30670,1,"MOULIN DU PONT",43.543051,5.259101,,1,,Europe/Paris,,OET, +OET:SA:CTP30672,1,"TECHNOPARC",43.401068,5.201788,,1,,Europe/Paris,,OET, +OET:SA:CTP30673,1,"LA MINE",43.549487,5.243566,,1,,Europe/Paris,,OET, +OET:SA:CTP30677,1,"LES COLLETS",43.557141,5.244215,,1,,Europe/Paris,,OET, +OET:SA:CTP30679,1,"LES PONEYS",43.554773,5.244342,,1,,Europe/Paris,,OET, +OET:SA:CTP30682,1,"LES VIGNETTES - LE BAOU",43.460205,5.233044,,1,,Europe/Paris,,OET, +OET:SA:CTP30683,1,"RUINAT/GENEVOIX",43.413268,5.204606,,1,,Europe/Paris,,OET, +OET:SA:CTP30685,1,"LES TABORS",43.380115,5.348216,,1,,Europe/Paris,,OET, +OET:SA:CTP30687,1,"LES BARALLES",43.55036,5.224778,,1,,Europe/Paris,,OET, +OET:SA:CTP30689,1,"BONNE BRISE",43.426693,5.328715,,1,,Europe/Paris,,OET, +OET:SA:CTP30690,1,"LE BRUSQ",43.406687,5.299941,,1,,Europe/Paris,,OET, +OET:SA:CTP30693,1,"ECOLE CASTEL HELENE",43.409441,5.31195,,1,,Europe/Paris,,OET, +OET:SA:CTP30694,1,"LES MOUTERONS",43.531452,5.148929,,1,,Europe/Paris,,OET, +OET:SA:CTP30696,1,"PARC AQUATIQUE",43.415678,5.367605,,1,,Europe/Paris,,OET, +OET:SA:CTP30699,1,"FAVIER",43.550635,5.203623,,1,,Europe/Paris,,OET, +OET:SA:CTP30705,1,"LE GRAND VERGER",43.416947,5.289184,,1,,Europe/Paris,,OET, +OET:SA:CTP30707,1,"AV DE LATTRE DE TASSIGNY",43.417646,5.29223,,1,,Europe/Paris,,OET, +OET:SA:CTP30708,1,"LES GALLARGUES",43.519564,5.148196,,1,,Europe/Paris,,OET, +OET:SA:CTP30716,1,"CARBONNEL (BD FELIX TURI)",43.415205,5.245412,,1,,Europe/Paris,,OET, +OET:SA:CTP30719,1,"PERRUSSONS",43.42,5.220907,,1,,Europe/Paris,,OET, +OET:SA:CTP30721,1,"ST NICOLAS",43.424299,5.218224,,1,,Europe/Paris,,OET, +OET:SA:CTP30724,1,"ECUREUILS",43.42457,5.289947,,1,,Europe/Paris,,OET, +OET:SA:CTP30730,1,"AV PASTEUR",43.391583,5.233325,,1,,Europe/Paris,,OET, +OET:SA:CTP30732,1,"JEAN.JAURES",43.393039,5.23706,,1,,Europe/Paris,,OET, +OET:SA:CTP30737,1,"POUSARAQUE",43.387761,5.229321,,1,,Europe/Paris,,OET, +OET:SA:CTP30738,1,"PETIT PRINCE",43.478679,5.173059,,1,,Europe/Paris,,OET, +OET:SA:CTP30739,1,"VIEILLE ROUTE DE LA GAVOTTE",43.386568,5.344795,,1,,Europe/Paris,,OET, +OET:SA:CTP30740,1,"VIELLE ROUTE DE LA GAVOTTE",43.386154,5.345131,,1,,Europe/Paris,,OET, +OET:SA:CTP30741,1,"Z.I. LES PINS",43.403715,5.260258,,1,,Europe/Paris,,OET, +OET:SA:CTP30742,1,"HENRI FABRE",43.417712,5.2032,,1,,Europe/Paris,,OET, +OET:SA:CTP30750,1,"PLAN DE CAMPAGNE - BARNEOUD",43.416989,5.359692,,1,,Europe/Paris,,OET, +OET:SA:CTP30754,1,"EGLISE",43.55047,5.194922,,1,,Europe/Paris,,OET, +OET:SA:CTP30758,1,"ROUTE DU CHEMIN DE FER",43.454679,5.235221,,1,,Europe/Paris,,OET, +OET:SA:CTP30763,1,"HENRI BARBUSSE",43.489398,5.164179,,1,,Europe/Paris,,OET, +OET:SA:CTP30768,1,"AV. DE SYLVANES",43.491804,5.156059,,1,,Europe/Paris,,OET, +OET:SA:CTP30770,1,"LE PETIT CHENE",43.418955,5.301847,,1,,Europe/Paris,,OET, +OET:SA:CTP30778,1,"LA GIRAUDE",43.550604,5.210212,,1,,Europe/Paris,,OET, +OET:SA:CTP30780,1,"LA CITE HAUTE",43.425689,5.305835,,1,,Europe/Paris,,OET, +OET:SA:CTP30781,1,"COLLEGE F LEGER",43.487155,5.158794,,1,,Europe/Paris,,OET, +OET:SA:CTP30782,1,"CHEMIN DE LA GUIENNE",43.500158,5.166045,,1,,Europe/Paris,,OET, +OET:SA:CTP30787,1,"LE CLOS",43.484699,5.139196,,1,,Europe/Paris,,OET, +OET:SA:CTP30792,1,"LES BARNOUINS 2",43.414178,5.319524,,1,,Europe/Paris,,OET, +OET:SA:CTP30793,1,"CLOSON",43.423166,5.326507,,1,,Europe/Paris,,OET, +OET:SA:CTP30794,1,"VERSAILLES",43.407796,5.332378,,1,,Europe/Paris,,OET, +OET:SA:CTP30796,1,"LA LAITERIE",43.40834,5.312091,,1,,Europe/Paris,,OET, +OET:SA:CTP30797,1,"LA CULASSE",43.405743,5.284857,,1,,Europe/Paris,,OET, +OET:SA:CTP30800,1,"CHEMIN NOTRE DAME",43.522683,5.193472,,1,,Europe/Paris,,OET, +OET:SA:CTP30805,1,"CHEMIN DE VAL SEC",43.378778,5.342327,,1,,Europe/Paris,,OET, +OET:SA:CTP30807,1,"LE RELAIS",43.415246,5.374984,,1,,Europe/Paris,,OET, +OET:SA:CTP30812,1,"JEAN GIONO",43.379108,5.341432,,1,,Europe/Paris,,OET, +OET:SA:CTP30815,1,"St ESTEVE HAMEAU",43.504571,5.152055,,1,,Europe/Paris,,OET, +OET:SA:CTP30820,1,"CH DES PETITS CADENEAUX",43.389441,5.341111,,1,,Europe/Paris,,OET, +OET:SA:CTP30824,1,"LA PETITE SUZANNE",43.499263,5.132053,,1,,Europe/Paris,,OET, +OET:SA:CTP30825,1,"NUNGESSER ET COLI",43.375364,5.349286,,1,,Europe/Paris,,OET, +OET:SA:CTP30826,1,"FERME CROZE",43.423133,5.291193,,1,,Europe/Paris,,OET, +OET:SA:CTP30837,1,"CHEMIN DES BŒUFS",43.377142,5.339393,,1,,Europe/Paris,,OET, +OET:SA:CTP30838,1,"IMPASSE DES JONQUILLES",43.387459,5.341882,,1,,Europe/Paris,,OET, +OET:SA:CTP30839,1,"IMPASSE CELESTE",43.378197,5.350865,,1,,Europe/Paris,,OET, +OET:SA:CTP30840,1,"ETIENNE RABATTU",43.417401,5.349782,,1,,Europe/Paris,,OET, +OET:SA:CTP30841,1,"CHEMIN DE VELAUX",43.414713,5.349764,,1,,Europe/Paris,,OET, +OET:SA:CTP30843,1,"MONTEE DU CHaTEAU",43.411541,5.312775,,1,,Europe/Paris,,OET, +OET:SA:CTP30845,1,"CHEMIN MEUNIER",27.140959,-3.404569,,1,,Europe/Paris,,OET, +OET:SA:CTP30846,1,"BOULEVARD TARDY",43.378121,5.349419,,1,,Europe/Paris,,OET, +OET:SA:CTP30850,1,"STADE M.VITRIA",43.398595,5.328851,,1,,Europe/Paris,,OET, +OET:SA:CTP30852,1,"DOMAINE DU PLATEAU",43.393582,5.316664,,1,,Europe/Paris,,OET, +OET:SA:CTP30853,1,"AVE DE L'EUROPE",43.416143,5.227584,,1,,Europe/Paris,,OET, +OET:SA:CTP30857,1,"AV. 1ERE ARMEE",43.411471,5.215334,,1,,Europe/Paris,,OET, +OET:SA:CTP30861,1,"ETIENNE RABATU",43.417396,5.349658,,1,,Europe/Paris,,OET, +OET:SA:CTP30866,1,"PAUL RAPHEL",43.410985,5.254819,,1,,Europe/Paris,,OET, +OET:SA:CTP30876,1,"SQUARE MARGUERITE DE PCE",43.440653,5.258466,,1,,Europe/Paris,,OET, +OET:SA:CTP30878,1,"HELENE BOUCHER",43.526201,5.253642,,1,,Europe/Paris,,OET, +OET:SA:CTP30880,1,"LES ORMES",43.508544,5.216229,,1,,Europe/Paris,,OET, +OET:SA:CTP30884,1,"CONCORDE",43.421173,5.207642,,1,,Europe/Paris,,OET, +OET:SA:CTP30895,1,"COUPERIGNES",43.443834,5.23387,,1,,Europe/Paris,,OET, +OET:SA:CTP30896,1,"AIRBUS HELICOPTERS",43.434206,5.234086,,1,,Europe/Paris,,OET, +OET:SA:CTP30897,1,"GARE DE VITROLLES VAMP",43.442551,5.237125,,1,,Europe/Paris,,OET, +OET:SA:CTP30901,1,"LES ROMARINS",27.140968,-3.404561,,1,,Europe/Paris,,OET, +OET:SA:CTP30905,1,"LES MOUETTES",43.491366,5.202827,,1,,Europe/Paris,,OET, +OET:SA:CTP30906,1,"LES CADESTEAUX",43.478733,5.227622,,1,,Europe/Paris,,OET, +OET:SA:CTP30908,1,"CLINIQUE DE ROGNAC",27.140968,-3.404561,,1,,Europe/Paris,,OET, +OET:SA:CTP30909,1,"LA FALAISE",43.478677,5.227094,,1,,Europe/Paris,,OET, +OET:SA:CTP30910,1,"EUROPE CH. DE GAULLE",27.140968,-3.404561,,1,,Europe/Paris,,OET, +OET:SA:CTP30911,1,"ROGNAC2",43.491216,5.202881,,1,,Europe/Paris,,OET, +OET:SA:CTP30915,1,"LA GLACIÈRE",43.422133,5.24325,,1,,Europe/Paris,,OET, +OET:SA:CTP30919,1,"ECOLE MANDELA",43.409014,5.367634,,1,,Europe/Paris,,OET, +OET:SA:CTP30920,1,"1ÉME / 4ÉME AV.",43.421416,5.244477,,1,,Europe/Paris,,OET, +OET:SA:CTP30922,1,"LE TUNNEL",43.397749,5.228182,,1,,Europe/Paris,,OET, +OET:SA:CTP30923,1,"ROUTE DE VELAUX FRONTIERE",27.140968,-3.404561,,1,,Europe/Paris,,OET, +OET:SA:CTP30924,1,"BASE NAUTIQUE",27.140968,-3.404561,,1,,Europe/Paris,,OET, +OET:SA:CTP30925,1,"COLLET DE LÈBRE",43.397752,5.228068,,1,,Europe/Paris,,OET, +OET:SA:CTP30926,1,"COLLÈGE J. PRÉVERT",43.4156,5.231257,,1,,Europe/Paris,,OET, +OET:SA:CTP30927,1,"LES TRIBALLES",27.140968,-3.404561,,1,,Europe/Paris,,OET, +OET:SA:CTP30928,1,"LES SYBILLES",27.140968,-3.404561,,1,,Europe/Paris,,OET, +OET:SA:CTP30932,1,"PLACE J. MOULIN",27.140968,-3.404561,,1,,Europe/Paris,,OET, +OET:SA:CTP30933,1,"MENDÈS FRANCE PIERRE PLANTÉE",27.140968,-3.404561,,1,,Europe/Paris,,OET, +OET:SA:CTP30935,1,"COLLÈGE J. PRÉVERT",43.414416,5.235865,,1,,Europe/Paris,,OET, +OET:SA:CTP30937,1,"STE MARIE",43.414399,5.236184,,1,,Europe/Paris,,OET, +OET:SA:CTP30938,1,"CENTRE COMMERCIAL ST VICTORET",43.414433,5.235983,,1,,Europe/Paris,,OET, +OET:SA:CTP30941,1,"CARREFOUR DES COURONNES",43.410533,5.252708,,1,,Europe/Paris,,OET, +OET:SA:CTP30942,1,"GARE DE PAS DES LANCIERS",43.410466,5.252488,,1,,Europe/Paris,,OET, +OET:SA:CTP30955,1,"PAS DES LANCIERS LES PLATANES",43.405249,5.259252,,1,,Europe/Paris,,OET, +OET:SA:CTP30956,1,"PAS DES LANCIERS / PLATANES",43.405133,5.259308,,1,,Europe/Paris,,OET, +OET:SA:CTP30957,1,"HOTELS",43.444779,5.223797,,1,,Europe/Paris,,OET, +OET:SA:CTP30971,1,"CHEMIN NOTRE DAME",27.140968,-3.404561,,1,,Europe/Paris,,OET, +OET:SA:CTP30972,1,"MAISON DES ASSOCIATIONS",43.419711,5.237066,,1,,Europe/Paris,,OET, +OET:SA:CTP30979,1,"GABRIEL VOISIN (FRONTIERE)",27.140968,-3.404561,,1,,Europe/Paris,,OET, +OET:SA:CTP30981,1,"AV DE LATTRE DE TASSIGNY",43.420362,5.28762,,1,,Europe/Paris,,OET, +OET:SA:CTP30994,1,"J. MONNET",43.476116,5.168438,,1,,Europe/Paris,,OET, +OET:SA:CTP30995,1,"F. MISTRAL",43.473599,5.16895,,1,,Europe/Paris,,OET, +OET:SA:CTP30996,1,"LE PETIT PORT",43.472483,5.166923,,1,,Europe/Paris,,OET, +OET:SA:CTP30998,1,"PLACE DU SOUVENIR FRANÇAIS",43.475866,5.16715,,1,,Europe/Paris,,OET, +OET:SA:CTP31010,1,"CHEMIN DES GRANDS LOTS",43.519368,5.170839,,1,,Europe/Paris,,OET, +OET:SA:CTP31013,1,"CHEMIN DU COUSSOUS",43.515122,5.167106,,1,,Europe/Paris,,OET, +OET:SA:CTP31015,1,"CHEMIN DE BOUCARUT",43.512647,5.165093,,1,,Europe/Paris,,OET, +OET:SA:CTP31017,1,"CHEMIN DE LA TRANSHUMANCE",43.509474,5.162292,,1,,Europe/Paris,,OET, +OET:SA:CTP31021,1,"Z.I EUROFLORY",43.519181,5.19258,,1,,Europe/Paris,,OET, +OET:SA:CTP31028,1,"St CHRISTOPHE",43.396974,5.281298,,1,,Europe/Paris,,OET, +OET:SA:CTP31029,1,"CHEMIN DE LA CROIX",43.39402,5.271885,,1,,Europe/Paris,,OET, +OET:SA:CTP31030,1,"AERODROME SUD",43.530448,5.180399,,1,,Europe/Paris,,OET, +OET:SA:CTP31032,1,"AERODROME NORD",43.535605,5.172731,,1,,Europe/Paris,,OET, +OET:SA:CTP31033,1,"PLAN DES PENNES",43.395208,5.27646,,1,,Europe/Paris,,OET, +OET:SA:CTP31035,1,"COTTAGE ISABELLE",43.400379,5.290267,,1,,Europe/Paris,,OET, +OET:SA:CTP31036,1,"LA CABASSETTE",43.401925,5.292603,,1,,Europe/Paris,,OET, +OET:SA:CTP31039,1,"COLLEGE JACQUES MONOD NORD",43.399866,5.334566,,1,,Europe/Paris,,OET, +OET:SA:CTP31041,1,"ROCHES BLANCHES",43.399268,5.341503,,1,,Europe/Paris,,OET, +OET:SA:CTP31045,1,"LES GARRIGUES",43.390102,5.336435,,1,,Europe/Paris,,OET, +OET:SA:CTP31060,1,"LES CRAVONS",43.529243,5.184813,,1,,Europe/Paris,,OET, +OET:SA:CTP31065,1,"CAVE COOPERATIVE NORD",43.4956,5.154319,,1,,Europe/Paris,,OET, +OET:SA:CTP31066,1,"PIERRE PLANTEE - MENDES France",43.446919,5.247566,,1,,Europe/Paris,,OET, +OET:SA:CTP31069,1,"PAUL ELUARD",43.479031,5.165815,,1,,Europe/Paris,,OET, +OET:SA:CTP31070,1,"CENTRE",43.558376,5.251117,,1,,Europe/Paris,,OET, +OET:SA:CTP31072,1,"PLANTADE",43.557325,5.254761,,1,,Europe/Paris,,OET, +OET:SA:CTP31073,1,"MALVALLAT",43.549623,5.256544,,1,,Europe/Paris,,OET, +OET:SA:CTP31079,1,"LE CROY",43.422307,5.302613,,1,,Europe/Paris,,OET, +OET:SA:CTP31080,1,"SQUARE",43.492051,5.229654,,1,,Europe/Paris,,OET, +OET:SA:CTP31083,1,"LES TULIPES",43.494876,5.232972,,1,,Europe/Paris,,OET, +OET:SA:CTP31085,1,"LA BORNE",43.408375,5.303976,,1,,Europe/Paris,,OET, +OET:SA:CTP31087,1,"MOULIN À HUILE (FRONTIÈRE)",27.140968,-3.404561,,1,,Europe/Paris,,OET, +OET:SA:CTP31103,1,"CAPEAU",27.140968,-3.404561,,1,,Europe/Paris,,OET, +OET:SA:CTP31114,1,"LES JONQUILLES",43.481456,5.166281,,1,,Europe/Paris,,OET, +OET:SA:CTP31115,1,"EREA LOUIS ARAGON",43.396443,5.32087,,1,,Europe/Paris,,OET, +OET:SA:CTP31116,1,"DEPOT SUMA",43.507884,5.20725,,1,,Europe/Paris,,OET, +OET:SA:CTP31117,1,"LES CADENEAUX",43.395544,5.343502,,1,,Europe/Paris,,OET, +OET:SA:CTP31119,1,"SIMONE SIGNORET",43.405196,5.259704,,1,,Europe/Paris,,OET, +OET:SA:CTP31120,1,"AVENUE DES LAVANDES",43.505986,5.220758,,1,,Europe/Paris,,OET, +OET:SA:CTP31121,1,"LES VOLTES",43.502935,5.168851,,1,,Europe/Paris,,OET, +OET:SA:CTP31122,1,"LES CIGALES",43.506968,5.177279,,1,,Europe/Paris,,OET, +OET:SA:CTP31123,1,"ECOLE KRAEMER",43.510968,5.219403,,1,,Europe/Paris,,OET, +OET:SA:CTP31124,1,"G.S. MARCEL PAGNOL",43.489152,5.224085,,1,,Europe/Paris,,OET, +OET:SA:CTP31125,1,"G.S. LES JARDINS",43.490212,5.2221,,1,,Europe/Paris,,OET, +OET:SA:CTP31126,1,"G.S. ROMAIN ROLLAND",43.496183,5.233865,,1,,Europe/Paris,,OET, +OET:SA:CTP31127,1,"G.S. JEAN GIONO",43.483781,5.23588,,1,,Europe/Paris,,OET, +OET:SA:CTP31128,1,"G.S. CARBONEL",43.415642,5.245557,,1,,Europe/Paris,,OET, +OET:SA:CTP31129,1,"G.S. JEAN COCTEAU",43.411757,5.238206,,1,,Europe/Paris,,OET, +OET:SA:CTP31130,1,"CLOS D'EMPALIERE",43.416059,5.257409,,1,,Europe/Paris,,OET, +OET:SA:CTP31131,1,"CLOS DE PROVENCE",43.419086,5.258846,,1,,Europe/Paris,,OET, +OET:SA:CTP31132,1,"SAINT JOSEPH",43.516425,5.149228,,1,,Europe/Paris,,OET, +OET:SA:CTP31134,1,"DRAILLE DES TRIBALLES",43.447454,5.235695,,1,,Europe/Paris,,OET, +OET:SA:CTP31135,1,"ECOLE STE MARIE (ARRET SCOLAIRE)",43.411819,5.235581,,1,,Europe/Paris,,OET, +OET:SA:CTP31140,1,"Square Général de Gaulle (frontière)",27.140968,-3.404561,,1,,Europe/Paris,,OET, +OET:SA:CTP31141,1,"Les Fortunés (frontière)",27.140968,-3.404561,,1,,Europe/Paris,,OET, +OET:SA:CTP31143,1,"LA TETE NOIRE",43.488319,5.221597,,1,,Europe/Paris,,OET, +OET:SA:CTP31145,1,"Le Parterre",43.526661,5.257238,,1,,Europe/Paris,,OET, +OET:SA:CTP31146,1,"RUE AMPERE",43.513231,5.233975,,1,,Europe/Paris,,OET, +OET:SA:CTP31147,1,"Z.I. LA VERDIERE",43.515449,5.2428,,1,,Europe/Paris,,OET, +OET:SA:CTP31148,1,"LYCEE MONNET (SCOLAIRES)",43.424291,5.270167,,1,,Europe/Paris,,OET, +OET:SA:CTP31149,1,"CAVE COOPERATIVE OUEST",43.494923,5.154063,,1,,Europe/Paris,,OET, +OET:SA:CTP31150,1,"LA GUIENNE",43.500114,5.166018,,1,,Europe/Paris,,OET, +OET:SA:CTP31151,1,"CHEMIN DU LION",43.454008,5.231768,,1,,Europe/Paris,,OET, +OET:SA:CTP31152,1,"CHEMIN MEUNIER",43.550435,5.218253,,1,,Europe/Paris,,OET, +OET:SA:CTP31154,1,"LES TRIBALLES RD20",43.449173,5.230635,,1,,Europe/Paris,,OET, +OET:SA:CTP31156,1,"LES LIMITES",43.538046,5.168452,,1,,Europe/Paris,,OET, +OET:SA:CTP31158,1,"LA CITE HAUTE",27.140959,-3.404569,,1,,Europe/Paris,,OET, +OET:SA:CTP31160,1,"PARKING COLLEGE PETIT PRINCE",43.389236,5.228656,,1,,Europe/Paris,,OET, +OET:SA:CTP31161,1,"LES AUBEPINES",43.526987,5.260493,,1,,Europe/Paris,,OET, +OET:SA:CTP31163,1,"CHEMIN DE RICHELME",43.523513,5.176346,,1,,Europe/Paris,,OET, +OET:SA:CTP31164,1,"CAUCADIS",43.450298,5.240295,,1,,Europe/Paris,,OET, +OET:SA:CTP31166,1,"SAINT ANTOINE VILLAGE",43.371091,5.356075,,1,,Europe/Paris,,OET, +OET:SA:CTP31168,1,"CHEMIN DES PINETTES",43.530693,5.233785,,1,,Europe/Paris,,OET, +OET:SA:CTP31169,1,"FONTAINE DE LAURENT",43.522071,5.233657,,1,,Europe/Paris,,OET, +OET:SA:CTP31170,1,"RUE CHAPTAL",43.513552,5.238094,,1,,Europe/Paris,,OET, +OET:SA:CTP31171,1,"CAVE COOPERATIVE",43.533651,5.257842,,1,,Europe/Paris,,OET, +OET:SA:CTP31172,1,"P.CEZANNE",43.534646,5.261948,,1,,Europe/Paris,,OET, +OET:SA:CTP31173,1,"SARAH BERNHARDT",43.530548,5.260502,,1,,Europe/Paris,,OET, +OET:SA:CTP31174,1,"COOPERATIVE AGRICOLE",43.532971,5.191093,,1,,Europe/Paris,,OET, +OET:SA:CTP31178,1,"CIMETIERE HAUT",43.519463,5.258019,,1,,Europe/Paris,,OET, +OET:SA:CTP31179,1,"MOULIN A HUILE",43.514929,5.246085,,1,,Europe/Paris,,OET, +OET:SA:CTP31180,1,"JULES ANDRAUD",43.523853,5.259974,,1,,Europe/Paris,,OET, +OET:SA:CTP31185,1,"LES GUIGUES",43.549693,5.179724,,1,,Europe/Paris,,OET, +OET:SA:CTP31187,1,"CHEMIN DES LIMITES",43.534309,5.155238,,1,,Europe/Paris,,OET, +OET:SA:CTP31202,1,"LES ACACIAS",43.385452,5.219206,,1,,Europe/Paris,,OET, +OET:SA:CTP31204,1,"PONT DES CADENEAUX",43.395078,5.342787,,1,,Europe/Paris,,OET, +OET:SA:CTP31208,1,"FONTBLANCHE - QUAI 3",43.42239,5.286787,,1,,Europe/Paris,,OET, +OET:SA:CTP31209,1,"FONTBLANCHE - QUAI 4",43.422531,5.286893,,1,,Europe/Paris,,OET, +OET:SA:CTP31215,1,"SAINT ANTOINE BERANGER",43.368399,5.356488,,1,,Europe/Paris,,OET, +OET:SA:CTP31223,1,"LONDRES BRUXELLES",27.140968,-3.404561,,1,,Europe/Paris,,OET, +OET:SA:CTP31227,1,"LES VIGNETTES",43.460772,5.230382,,1,,Europe/Paris,,OET, +OET:SA:CTP31228,1,"PIERRE PLANTEE",43.445901,5.249613,,1,,Europe/Paris,,OET, +OET:SA:CTP31231,1,"ZI NORD",43.498933,5.214769,,1,,Europe/Paris,,OET, +OET:SA:CTP31232,1,"MAIRIE",43.401015,5.340139,,1,,Europe/Paris,,OET, +OET:SA:CTP31234,1,"Z.I. NORD",43.497919,5.215373,,1,,Europe/Paris,,OET, +OET:SA:CTP31235,1,"CH. DU COUVENT",43.417429,5.223899,,1,,Europe/Paris,,OET, +OET:SA:CTP31239,1,"SQUARE DE GAULLE",43.409288,5.322045,,1,,Europe/Paris,,OET, +OET:SA:CTP31241,1,"CLEMENT ADER",43.50022,5.222148,,1,,Europe/Paris,,OET, +OET:SA:CTP31243,1,"ATHENES ROME",43.440446,5.240807,,1,,Europe/Paris,,OET, +OET:SA:CTP31244,1,"AV LAVOISIER",43.498613,5.217656,,1,,Europe/Paris,,OET, +OET:SA:CTP31249,1,"ETIENNE RABATU",27.140959,-3.404569,,1,,Europe/Paris,,OET, +OET:SA:CTP31252,1,"BD ST ANTOINE",43.367525,5.356566,,1,,Europe/Paris,,OET, +OET:SA:CTP31253,1,"RELAIS DES CHASSEURS",43.378364,5.330383,,1,,Europe/Paris,,OET, +OET:SA:CTP31254,1,"GENEVOIX / BRASSENS",43.413116,5.204919,,1,,Europe/Paris,,OET, +OET:SA:CTP31256,1,"SORBIERE",43.414431,5.206194,,1,,Europe/Paris,,OET, +OET:SA:CTP31257,1,"BOLMON",43.415507,5.210368,,1,,Europe/Paris,,OET, +OET:SA:CTP31258,1,"BARRELET LIBERATION",43.417479,5.211935,,1,,Europe/Paris,,OET, +OET:SA:CTP31260,1,"LYCEE BLERIOT",43.419163,5.217226,,1,,Europe/Paris,,OET, +OET:SA:CTP31261,1,"LYCEE BLERIOT",43.419095,5.216766,,1,,Europe/Paris,,OET, +OET:SA:CTP31262,1,"PARC CAMOIN - QUAI N°1",43.417402,5.219543,,1,,Europe/Paris,,OET, +OET:SA:CTP31263,1,"COLLEGE PREVERT",43.416301,5.23175,,1,,Europe/Paris,,OET, +OET:SA:CTP31265,1,"CCIAL ST VICTORET",43.417796,5.233343,,1,,Europe/Paris,,OET, +OET:SA:CTP31267,1,"HOTEL DE VILLE",43.42144,5.232601,,1,,Europe/Paris,,OET, +OET:SA:CTP31269,1,"LONDRES / BRUXELLES",43.429228,5.238276,,1,,Europe/Paris,,OET, +OET:SA:CTP31271,1,"VICTOR GELU",43.443085,5.245335,,1,,Europe/Paris,,OET, +OET:SA:CTP31273,1,"MEDIATHEQUE",43.442649,5.252496,,1,,Europe/Paris,,OET, +OET:SA:CTP31275,1,"LES PINS / CINEMA",43.439628,5.255106,,1,,Europe/Paris,,OET, +OET:SA:CTP31277,1,"PADOVANI",43.436775,5.257182,,1,,Europe/Paris,,OET, +OET:SA:CTP31281,1,"BASTIDE BLANCHE",43.431001,5.266155,,1,,Europe/Paris,,OET, +OET:SA:CTP31283,1,"GRIFFON CLINIQUE",43.427234,5.270774,,1,,Europe/Paris,,OET, +OET:SA:CTP31285,1,"LYCEE MONNET",43.424186,5.271395,,1,,Europe/Paris,,OET, +OET:SA:CTP31287,1,"COLLEGE CLAUDEL",43.423463,5.274505,,1,,Europe/Paris,,OET, +OET:SA:CTP31289,1,"MAIRIE QUARTIERS SUD",43.42607,5.280141,,1,,Europe/Paris,,OET, +OET:SA:CTP31291,1,"LE REPOS",43.424746,5.282529,,1,,Europe/Paris,,OET, +OET:SA:CTP31293,1,"FONTBLANCHE - QUAI N°1",43.422261,5.286238,,1,,Europe/Paris,,OET, +OET:SA:CTP31294,1,"FONTBLANCHE - QUAI N°2",43.422379,5.286219,,1,,Europe/Paris,,OET, +OET:SA:CTP31295,1,"CLOS DE LA CADIERE",43.4178,5.293151,,1,,Europe/Paris,,OET, +OET:SA:CTP31296,1,"PARC RELAIS PALLIERES",43.415216,5.297841,,1,,Europe/Paris,,OET, +OET:SA:CTP31297,1,"LA RENARDIERE",43.41297,5.302043,,1,,Europe/Paris,,OET, +OET:SA:CTP31299,1,"TUNNEL RD113",43.410971,5.310599,,1,,Europe/Paris,,OET, +OET:SA:CTP31301,1,"FONT SEGUGNE",43.450529,5.249762,,1,,Europe/Paris,,OET, +OET:SA:CTP31305,1,"PARC CAMOIN - QUAI N°2",43.41756,5.219699,,1,,Europe/Paris,,OET, +OGE:SA:CTP102054,1,"LA MARELLE",45.280409,5.879104,,1,,Europe/Paris,,OGE, +OGE:SA:CTP102056,1,"8 MAI 1945",45.284025,5.884042,,1,,Europe/Paris,,OGE, +OGE:SA:CTP102057,1,"MEDIATHEQUE",45.435931,6.026448,,1,,Europe/Paris,,OGE, +OGE:SA:CTP102058,1,"LEO LAGRANGE",45.279721,5.883105,,1,,Europe/Paris,,OGE, +OGE:SA:CTP102059,1,"LE CUBE",45.263346,5.867904,,1,,Europe/Paris,,OGE, +OGE:SA:CTP102060,1,"ECOCENTRE",45.275944,5.887109,,1,,Europe/Paris,,OGE, +OGE:SA:CTP102063,1,"CHARLES DE GAULLE",45.280128,5.8901,,1,,Europe/Paris,,OGE, +OGE:SA:CTP102065,1,"H.MOISSAN",45.284072,5.886969,,1,,Europe/Paris,,OGE, +OGE:SA:CTP102066,1,"ESPACE JARGOT",45.278129,5.883437,,1,,Europe/Paris,,OGE, +OGE:SA:CTP102068,1,"CENTRE NAUTIQUE INTERCOMMUNAL",45.276175,5.896542,,1,,Europe/Paris,,OGE, +OGE:SA:CTP102069,1,"TEISSEIRE",45.272382,5.886756,,1,,Europe/Paris,,OGE, +OGE:SA:CTP102075,1,"LE CUBE A",45.26334,5.867891,,1,,Europe/Paris,,OGE, +OGE:SA:CTP102079,1,"VILLAGE D ENTREPRISES",45.43758,6.009799,,1,,Europe/Paris,,OGE, +OGE:SA:CTP103094,1,"BESSEY",45.39113,6.081485,,1,,Europe/Paris,,OGE, +OGE:SA:CTP103095,1,"GUILLET",45.397621,6.085005,,1,,Europe/Paris,,OGE, +OGE:SA:CTP103101,1,"MUSEE JADIS",45.392388,6.075826,,1,,Europe/Paris,,OGE, +OGE:SA:CTP103103,1,"LES PANISSIERES",45.383815,6.085635,,1,,Europe/Paris,,OGE, +OGE:SA:CTP103104,1,"BELLE AUX AIRES",45.287688,5.987951,,1,,Europe/Paris,,OGE, +OGE:SA:CTP103110,1,"ST MAXIMIN LA COMBE",45.429227,6.026881,,1,,Europe/Paris,,OGE, +OGE:SA:CTP103112,1,"AVALLON",45.4309,6.034751,,1,,Europe/Paris,,OGE, +OGE:SA:CTP103114,1,"LES BRUNS",45.431888,6.048224,,1,,Europe/Paris,,OGE, +OGE:SA:CTP103116,1,"RIPPELETS",45.433278,6.050243,,1,,Europe/Paris,,OGE, +OGE:SA:CTP103118,1,"BRETONNIERES",45.43731,6.056737,,1,,Europe/Paris,,OGE, +OGE:SA:CTP103120,1,"GENDARMERIE",45.395127,6.072336,,1,,Europe/Paris,,OGE, +OGE:SA:CTP103122,1,"AVENUE DE SAVOIE",45.396786,6.078085,,1,,Europe/Paris,,OGE, +OGE:SA:CTP103123,1,"LA SCIERIE",45.211468,5.895391,,1,,Europe/Paris,,OGE, +OGE:SA:CTP103125,1,"ESAT",45.304101,5.911396,,1,,Europe/Paris,,OGE, +OGE:SA:CTP103127,1,"AV GENERAL DE GAULLE",45.22495,5.798485,,1,,Europe/Paris,,OGE, +OGE:SA:CTP103129,1,"MONTBONNOT LA PISCINE",45.223234,5.803351,,1,,Europe/Paris,,OGE, +OGE:SA:CTP103131,1,"CHATEAU RANDON",45.242455,5.824955,,1,,Europe/Paris,,OGE, +OGE:SA:CTP103133,1,"CHANTEBOUT",45.226095,5.814567,,1,,Europe/Paris,,OGE, +OGE:SA:CTP103134,1,"CH DE LA CROIX VERTE",45.220593,5.81114,,1,,Europe/Paris,,OGE, +OGE:SA:CTP103136,1,"ECOLE DES CHAVANNES",45.223108,5.808449,,1,,Europe/Paris,,OGE, +OGE:SA:CTP103138,1,"PLEIN SOLEIL",45.222232,5.800058,,1,,Europe/Paris,,OGE, +OGE:SA:CTP103140,1,"LA DETOURBE",45.223425,5.79369,,1,,Europe/Paris,,OGE, +OGE:SA:CTP103236,1,"LE SAUZET",45.185047,5.872171,,1,,Europe/Paris,,OGE, +OGE:SA:CTP103240,1,"CARREFOUR DU REPLAT",45.161409,5.850888,,1,,Europe/Paris,,OGE, +OGE:SA:CTP103242,1,"LES VALETS",45.167493,5.858076,,1,,Europe/Paris,,OGE, +OGE:SA:CTP103243,1,"LOTISSEMENT LA NOYAREY",45.161663,5.842811,,1,,Europe/Paris,,OGE, +OGE:SA:CTP103246,1,"LE MERCIER RD523",45.378201,5.994097,,1,,Europe/Paris,,OGE, +OGE:SA:CTP103247,1,"HALLE DES SPORTS",45.299824,5.992805,,1,,Europe/Paris,,OGE, +OGE:SA:CTP103248,1,"LE CHEYLAS MAIRIE - RD523",45.370918,5.990255,,1,,Europe/Paris,,OGE, +OGE:SA:CTP103249,1,"LA CHENEVARIE",45.176283,5.860913,,1,,Europe/Paris,,OGE, +OGE:SA:CTP103250,1,"CORPS D URIAGE",45.178151,5.864839,,1,,Europe/Paris,,OGE, +OGE:SA:CTP103251,1,"ISARDS PATTE DOIE",45.168763,5.864484,,1,,Europe/Paris,,OGE, +OGE:SA:CTP103252,1,"ISARDS PATTE D OIE",45.168873,5.86486,,1,,Europe/Paris,,OGE, +OGE:SA:CTP103253,1,"ST NIZIER D URIAGE",45.164093,5.835072,,1,,Europe/Paris,,OGE, +OGE:SA:CTP103255,1,"MEDIPOLE DE SAVOIE",45.545911,5.970555,,1,,Europe/Paris,,OGE, +OGE:SA:CTP103256,1,"LE TOUVET LE MOLLARD",45.355939,5.94711,,1,,Europe/Paris,,OGE, +OGE:SA:CTP103258,1,"ALLIBERT TREKKING",45.468191,5.992992,,1,,Europe/Paris,,OGE, +OGE:SA:CTP103271,1,"LE ROZAT",45.255696,5.833793,,1,,Europe/Paris,,OGE, +OGE:SA:CTP103272,1,"LA PEREREE",45.19009,5.841037,,1,,Europe/Paris,,OGE, +OGE:SA:CTP103273,1,"LE ROCHAREY",45.174972,5.870556,,1,,Europe/Paris,,OGE, +OGE:SA:CTP103274,1,"LE PINET D URIAGE",45.165238,5.848993,,1,,Europe/Paris,,OGE, +OGE:SA:CTP103275,1,"LE PENET",45.158716,5.848369,,1,,Europe/Paris,,OGE, +OGE:SA:CTP103276,1,"HAUTES VUES",45.163003,5.839527,,1,,Europe/Paris,,OGE, +OGE:SA:CTP103277,1,"GARE",45.184907,5.785354,,1,,Europe/Paris,,OGE, +OGE:SA:CTP103278,1,"LE VILLAGE",45.185799,5.86903,,1,,Europe/Paris,,OGE, +OGE:SA:CTP103280,1,"LE TOUVET LA CHARRIERE",45.358851,5.948389,,1,,Europe/Paris,,OGE, +OGE:SA:CTP103282,1,"RUE DES NOYERS",45.470356,5.991242,,1,,Europe/Paris,,OGE, +OGE:SA:CTP103283,1,"AVENUE DE SAVOIE",45.439779,6.029333,,1,,Europe/Paris,,OGE, +OGE:SA:CTP103284,1,"PONTCHARRA - AVENUE DE SAVOIE",45.440401,6.029682,,1,,Europe/Paris,,OGE, +OGE:SA:CTP103360,1,"COLLEGE GRESIVAUDAN - RD 1090",45.240238,5.820807,,1,,Europe/Paris,,OGE, +OGE:SA:CTP103362,1,"LYCEE HORTICOLE - PARKING",45.239517,5.825045,,1,,Europe/Paris,,OGE, +OGE:SA:CTP103363,1,"LE COLLET D ALLEVARD",45.393729,6.107469,,1,,Europe/Paris,,OGE, +OGE:SA:CTP103364,1,"LYCEE P. DU TERRAIL - BREDA",45.43712,6.016556,,1,,Europe/Paris,,OGE, +OGE:SA:CTP103366,1,"LE FRENET",45.21884,5.93912,,1,,Europe/Paris,,OGE, +OGE:SA:CTP103367,1,"VAUGELAS HAUT",45.242542,5.965233,,1,,Europe/Paris,,OGE, +OGE:SA:CTP12003,1,"ST BERNARD EGLISE",45.328372,5.903558,,1,,Europe/Paris,,OGE, +OGE:SA:CTP12029,1,"LE RIVET",45.239199,5.835191,,1,,Europe/Paris,,OGE, +OGE:SA:CTP12066,1,"NORBERT SEGARD CNET",45.209088,5.795057,,1,,Europe/Paris,,OGE, +OGE:SA:CTP12072,1,"BUSSEROLLES",45.208846,5.797468,,1,,Europe/Paris,,OGE, +OGE:SA:CTP13132,1,"PLAN POUCET",45.431864,6.12147,,1,,Europe/Paris,,OGE, +OGE:SA:CTP13437,1,"COLLEGE FLAVIUS VAUS",45.400022,6.077123,,1,,Europe/Paris,,OGE, +OGE:SA:CTP13439,1,"ECOLES-PLEIADE",45.393495,6.069988,,1,,Europe/Paris,,OGE, +OGE:SA:CTP13441,1,"CHATEAU",45.399818,5.977939,,1,,Europe/Paris,,OGE, +OGE:SA:CTP13449,1,"LE CHEYLAS USINES",45.383781,5.997137,,1,,Europe/Paris,,OGE, +OGE:SA:CTP13459,1,"AV CHAMPOLLION LIDL",45.42198,6.0044,,1,,Europe/Paris,,OGE, +OGE:SA:CTP13461,1,"AV CHAMPOLLION RENA",45.431002,6.004915,,1,,Europe/Paris,,OGE, +OGE:SA:CTP13463,1,"AVENUE DU GRANIER",45.43921,6.019922,,1,,Europe/Paris,,OGE, +OGE:SA:CTP13465,1,"JACQUES VAUCANSON",45.427436,6.004744,,1,,Europe/Paris,,OGE, +OGE:SA:CTP13467,1,"LYCEE AV DE LA GARE",45.433045,6.01568,,1,,Europe/Paris,,OGE, +OGE:SA:CTP13469,1,"RESIDENCES BAYARD",45.438374,6.014075,,1,,Europe/Paris,,OGE, +OGE:SA:CTP13471,1,"RUE DU GRESIVAUDAN",45.436529,6.022937,,1,,Europe/Paris,,OGE, +OGE:SA:CTP13477,1,"GRANDE ILE CATERPILLAR",45.231994,5.871353,,1,,Europe/Paris,,OGE, +OGE:SA:CTP14972,1,"LES CHABERTS",45.36703,5.988466,,1,,Europe/Paris,,OGE, +OGE:SA:CTP14974,1,"LE CARNIVAL LANCELOT",45.254075,5.949282,,1,,Europe/Paris,,OGE, +OGE:SA:CTP14976,1,"LA TAILLAT",45.247978,5.954347,,1,,Europe/Paris,,OGE, +OGE:SA:CTP15047,1,"LES AVONS 2",45.263969,5.9648,,1,,Europe/Paris,,OGE, +OGE:SA:CTP15051,1,"LE TOUVET GENDARMERIE",45.357682,5.953937,,1,,Europe/Paris,,OGE, +OGE:SA:CTP15094,1,"LA TOUR DU TREUIL",45.404261,6.071053,,1,,Europe/Paris,,OGE, +OGE:SA:CTP15096,1,"LE GLAPIGNEUX",45.408757,6.073942,,1,,Europe/Paris,,OGE, +OGE:SA:CTP15098,1,"LE MOLLARD",45.406743,6.073846,,1,,Europe/Paris,,OGE, +OGE:SA:CTP15100,1,"PONT DU BENS",45.437598,6.116655,,1,,Europe/Paris,,OGE, +OGE:SA:CTP15101,1,"REVIT",45.429291,6.100084,,1,,Europe/Paris,,OGE, +OGE:SA:CTP15108,1,"PLANCHAMPS",45.372291,6.022213,,1,,Europe/Paris,,OGE, +OGE:SA:CTP15168,1,"LE VIEUX MANEGE",45.265317,5.964989,,1,,Europe/Paris,,OGE, +OGE:SA:CTP15169,1,"PATTE D OIE",45.411534,5.980687,,1,,Europe/Paris,,OGE, +OGE:SA:CTP15171,1,"LES VIGNASSES",45.393194,6.009038,,1,,Europe/Paris,,OGE, +OGE:SA:CTP15176,1,"TRANSFO",45.244922,5.848458,,1,,Europe/Paris,,OGE, +OGE:SA:CTP15437,1,"ECOLE CESAR TERRIER",45.430816,6.02345,,1,,Europe/Paris,,OGE, +OGE:SA:CTP16070,1,"LA TREILLE",45.437433,6.025074,,1,,Europe/Paris,,OGE, +OGE:SA:CTP16071,1,"LE CLOS DU MARS",45.240391,5.852672,,1,,Europe/Paris,,OGE, +OGE:SA:CTP16073,1,"DOUSSAGNE",45.304009,5.99036,,1,,Europe/Paris,,OGE, +OGE:SA:CTP3806,1,"ECOLES",45.184763,5.866953,,1,,Europe/Paris,,OGE, +OGE:SA:CTP3818,1,"LA FONTAINE",45.193701,5.853755,,1,,Europe/Paris,,OGE, +OGE:SA:CTP3822,1,"LA SARRAZINE",45.196277,5.868544,,1,,Europe/Paris,,OGE, +OGE:SA:CTP3829,1,"MAIRIE",45.202385,5.838073,,1,,Europe/Paris,,OGE, +OGE:SA:CTP3834,1,"LES ARNAUDS",45.206645,5.84793,,1,,Europe/Paris,,OGE, +OGE:SA:CTP3845,1,"LA BOURGEAT",45.187076,5.867677,,1,,Europe/Paris,,OGE, +OGE:SA:CTP3859,1,"LA CHARRIERE",45.213106,5.859055,,1,,Europe/Paris,,OGE, +OGE:SA:CTP3863,1,"L USINE",45.208641,5.851275,,1,,Europe/Paris,,OGE, +OGE:SA:CTP3871,1,"LES VERNES",45.207292,5.834003,,1,,Europe/Paris,,OGE, +OGE:SA:CTP3881,1,"LE PRIEURE",45.204543,5.836154,,1,,Europe/Paris,,OGE, +OGE:SA:CTP3890,1,"BAUDONNIERE",45.213438,5.808194,,1,,Europe/Paris,,OGE, +OGE:SA:CTP3898,1,"ST JEAN LE VIEUX LA MONTA",45.209552,5.86644,,1,,Europe/Paris,,OGE, +OGE:SA:CTP3915,1,"RENE CASSIN",45.204563,5.844247,,1,,Europe/Paris,,OGE, +OGE:SA:CTP3931,1,"LE MAS JULIEN",45.212326,5.897874,,1,,Europe/Paris,,OGE, +OGE:SA:CTP3939,1,"LE GEYMOND",45.190232,5.884567,,1,,Europe/Paris,,OGE, +OGE:SA:CTP3946,1,"LE RIF",45.206175,5.87847,,1,,Europe/Paris,,OGE, +OGE:SA:CTP3950,1,"JEAN LE VIEUX - LE MOLLARD",45.208905,5.873583,,1,,Europe/Paris,,OGE, +OGE:SA:CTP3954,1,"LES JACQUETS",45.185348,5.878229,,1,,Europe/Paris,,OGE, +OGE:SA:CTP3958,1,"CHARRIERES NEUVES",45.187148,5.881305,,1,,Europe/Paris,,OGE, +OGE:SA:CTP3962,1,"LES FAURES",45.182571,5.880098,,1,,Europe/Paris,,OGE, +OGE:SA:CTP3966,1,"LE MONT",45.196785,5.873329,,1,,Europe/Paris,,OGE, +OGE:SA:CTP3970,1,"LES ROUSSETS",45.194009,5.882019,,1,,Europe/Paris,,OGE, +OGE:SA:CTP3974,1,"ST JEAN LE VIEUX EGLISE",45.211898,5.88167,,1,,Europe/Paris,,OGE, +OGE:SA:CTP3977,1,"LE NAYSORD",45.206233,5.882454,,1,,Europe/Paris,,OGE, +OGE:SA:CTP3985,1,"LE COUVAT",45.208943,5.877811,,1,,Europe/Paris,,OGE, +OGE:SA:CTP3989,1,"L ISLE",45.208669,5.88273,,1,,Europe/Paris,,OGE, +OGE:SA:CTP4485,1,"LA POSTE",45.226445,5.80267,,1,,Europe/Paris,,OGE, +OGE:SA:CTP4520,1,"PRE MILLET",45.221557,5.812804,,1,,Europe/Paris,,OGE, +OGE:SA:CTP4526,1,"LE TARTAIX",45.228871,5.817546,,1,,Europe/Paris,,OGE, +OGE:SA:CTP4540,1,"CROIX VERTE",45.219118,5.810154,,1,,Europe/Paris,,OGE, +OGE:SA:CTP4544,1,"INRIA",45.2176,5.807552,,1,,Europe/Paris,,OGE, +OGE:SA:CTP4554,1,"ST ISMIER LA BATIE",45.239214,5.850726,,1,,Europe/Paris,,OGE, +OGE:SA:CTP4558,1,"ST ISMIER GARE",45.246116,5.831294,,1,,Europe/Paris,,OGE, +OGE:SA:CTP4562,1,"LES MILLETS",45.253913,5.824445,,1,,Europe/Paris,,OGE, +OGE:SA:CTP4570,1,"LES VARCIAUX",45.254233,5.83522,,1,,Europe/Paris,,OGE, +OGE:SA:CTP4574,1,"BOUFFIERE",45.262352,5.832369,,1,,Europe/Paris,,OGE, +OGE:SA:CTP4578,1,"LE MANIVAL",45.260816,5.831709,,1,,Europe/Paris,,OGE, +OGE:SA:CTP4586,1,"DENT DE CROLLES",45.246672,5.830949,,1,,Europe/Paris,,OGE, +OGE:SA:CTP4589,1,"LE MEMORIAL",45.254179,5.840466,,1,,Europe/Paris,,OGE, +OGE:SA:CTP4593,1,"GEYDAN GENISSIEUX",45.251759,5.8233,,1,,Europe/Paris,,OGE, +OGE:SA:CTP4597,1,"CHEMIN DES BOUTS",45.254356,5.829374,,1,,Europe/Paris,,OGE, +OGE:SA:CTP4605,1,"LOT. LABIS",45.257593,5.833096,,1,,Europe/Paris,,OGE, +OGE:SA:CTP4609,1,"LE MOULIN",45.242032,5.848317,,1,,Europe/Paris,,OGE, +OGE:SA:CTP4619,1,"COLLEGE GRESIVAUDAN - PARKING",45.24075,5.821193,,1,,Europe/Paris,,OGE, +OGE:SA:CTP4621,1,"LES EYMES RD 1090",45.256034,5.84639,,1,,Europe/Paris,,OGE, +OGE:SA:CTP4625,1,"LES RATZ",45.258202,5.851163,,1,,Europe/Paris,,OGE, +OGE:SA:CTP4629,1,"LE PIAT",45.250664,5.848064,,1,,Europe/Paris,,OGE, +OGE:SA:CTP4636,1,"COTE BELLE",45.218277,5.865272,,1,,Europe/Paris,,OGE, +OGE:SA:CTP4640,1,"LE FANGEAT",45.241105,5.840095,,1,,Europe/Paris,,OGE, +OGE:SA:CTP4648,1,"GRANDES VIGNES",45.250524,5.842896,,1,,Europe/Paris,,OGE, +OGE:SA:CTP4650,1,"LES MARECHAUX",45.249519,5.835832,,1,,Europe/Paris,,OGE, +OGE:SA:CTP4655,1,"ST NAZAIRE LES EYMES GARE",45.250805,5.852385,,1,,Europe/Paris,,OGE, +OGE:SA:CTP4657,1,"ST NAZAIRE LES EYMES MAIRIE",45.247052,5.851677,,1,,Europe/Paris,,OGE, +OGE:SA:CTP4661,1,"LE LAVORS",45.247014,5.845547,,1,,Europe/Paris,,OGE, +OGE:SA:CTP4665,1,"CHEMIN QUARTALLEES",45.252911,5.831992,,1,,Europe/Paris,,OGE, +OGE:SA:CTP4668,1,"LA PLACE",45.21616,5.862926,,1,,Europe/Paris,,OGE, +OGE:SA:CTP4672,1,"BELLE PLAINE",45.221612,5.868757,,1,,Europe/Paris,,OGE, +OGE:SA:CTP4676,1,"LA TRAVERSE",45.250267,5.838081,,1,,Europe/Paris,,OGE, +OGE:SA:CTP4678,1,"LES PLANTEES",45.242908,5.844294,,1,,Europe/Paris,,OGE, +OGE:SA:CTP4682,1,"CLOYERES",45.264406,5.879343,,1,,Europe/Paris,,OGE, +OGE:SA:CTP4686,1,"LE BUTTIT",45.247017,5.841632,,1,,Europe/Paris,,OGE, +OGE:SA:CTP4689,1,"LYCEE HORTICOLE",45.239209,5.825091,,1,,Europe/Paris,,OGE, +OGE:SA:CTP4695,1,"LES SEMAISES",45.232305,5.821338,,1,,Europe/Paris,,OGE, +OGE:SA:CTP4697,1,"PRE DE L EAU",45.224155,5.818022,,1,,Europe/Paris,,OGE, +OGE:SA:CTP4703,1,"LA COMBE DE LANCEY - LE VILLARD",45.221378,5.902096,,1,,Europe/Paris,,OGE, +OGE:SA:CTP4711,1,"LE PETIT CHATEAU",45.221242,5.897458,,1,,Europe/Paris,,OGE, +OGE:SA:CTP4715,1,"LE MAS LA RUE",45.2312,5.896972,,1,,Europe/Paris,,OGE, +OGE:SA:CTP4719,1,"LE MAS MONTACOL",45.232633,5.894285,,1,,Europe/Paris,,OGE, +OGE:SA:CTP4723,1,"LE BONNAT",45.254064,5.931444,,1,,Europe/Paris,,OGE, +OGE:SA:CTP4727,1,"MAIRIE",45.252552,5.93225,,1,,Europe/Paris,,OGE, +OGE:SA:CTP4735,1,"LA COMBE DE LANCEY - LE MONT",45.224113,5.903166,,1,,Europe/Paris,,OGE, +OGE:SA:CTP4739,1,"LES ECHARRAS",45.218048,5.897692,,1,,Europe/Paris,,OGE, +OGE:SA:CTP4743,1,"VILLARD D EN BAS",45.22058,5.8992,,1,,Europe/Paris,,OGE, +OGE:SA:CTP4746,1,"LA COMBE LA CHAPELLE",45.225541,5.898078,,1,,Europe/Paris,,OGE, +OGE:SA:CTP4750,1,"LE MAS VANNIER",45.218536,5.893267,,1,,Europe/Paris,,OGE, +OGE:SA:CTP4753,1,"ECOLE DE STE AGNES",45.237805,5.921396,,1,,Europe/Paris,,OGE, +OGE:SA:CTP4757,1,"LA VILLE",45.235405,5.925725,,1,,Europe/Paris,,OGE, +OGE:SA:CTP4761,1,"LE CHOLET",45.216829,5.930858,,1,,Europe/Paris,,OGE, +OGE:SA:CTP4765,1,"LE MAS LARY",45.214157,5.893071,,1,,Europe/Paris,,OGE, +OGE:SA:CTP4770,1,"CARREFOUR PRELONG",45.216006,5.931753,,1,,Europe/Paris,,OGE, +OGE:SA:CTP4775,1,"ST MURY CIMETIERE",45.22537,5.92753,,1,,Europe/Paris,,OGE, +OGE:SA:CTP4779,1,"LA MADONE",45.246783,5.896012,,1,,Europe/Paris,,OGE, +OGE:SA:CTP4783,1,"VORS",45.244374,5.89419,,1,,Europe/Paris,,OGE, +OGE:SA:CTP4787,1,"LA MAIRIE",45.238304,5.888287,,1,,Europe/Paris,,OGE, +OGE:SA:CTP4791,1,"LA POLOGNE",45.236592,5.885871,,1,,Europe/Paris,,OGE, +OGE:SA:CTP4795,1,"LA GENDARMERIE",45.240937,5.89101,,1,,Europe/Paris,,OGE, +OGE:SA:CTP4799,1,"L EGLISE",45.223492,5.926882,,1,,Europe/Paris,,OGE, +OGE:SA:CTP4803,1,"LA FAURE",45.230279,5.933752,,1,,Europe/Paris,,OGE, +OGE:SA:CTP4807,1,"BRIGNOUD PLACE",45.259297,5.909272,,1,,Europe/Paris,,OGE, +OGE:SA:CTP4811,1,"LE SABOT",45.253464,5.903053,,1,,Europe/Paris,,OGE, +OGE:SA:CTP4815,1,"LE MAS N° 2",45.238915,5.916194,,1,,Europe/Paris,,OGE, +OGE:SA:CTP4819,1,"STE AGNES LE MOLLARD",45.235332,5.934657,,1,,Europe/Paris,,OGE, +OGE:SA:CTP4823,1,"MAIS.D ARGOUD AU RIF",45.231755,5.932653,,1,,Europe/Paris,,OGE, +OGE:SA:CTP4827,1,"LANCEY",45.233664,5.881937,,1,,Europe/Paris,,OGE, +OGE:SA:CTP4831,1,"LA PALLUD MATERNELLE",45.220565,5.928066,,1,,Europe/Paris,,OGE, +OGE:SA:CTP4838,1,"LYCEE M. REYNOARD - PARKING",45.250563,5.899008,,1,,Europe/Paris,,OGE, +OGE:SA:CTP4840,1,"CITE DES ROSES",45.230534,5.87834,,1,,Europe/Paris,,OGE, +OGE:SA:CTP4844,1,"STE AGNES LA BOURGEAT",45.241822,5.911331,,1,,Europe/Paris,,OGE, +OGE:SA:CTP4848,1,"LE FAY",45.226408,5.934702,,1,,Europe/Paris,,OGE, +OGE:SA:CTP4853,1,"BRIGNOUD CENTRE",45.256971,5.906834,,1,,Europe/Paris,,OGE, +OGE:SA:CTP4857,1,"STE AGNES LA GORGE",45.213724,5.933997,,1,,Europe/Paris,,OGE, +OGE:SA:CTP4861,1,"CITE NOUVELLE",45.226979,5.874515,,1,,Europe/Paris,,OGE, +OGE:SA:CTP4865,1,"PONT DE PRUNEY",45.225546,5.87305,,1,,Europe/Paris,,OGE, +OGE:SA:CTP4869,1,"LES GRANDS CHAMPS",45.235619,5.930592,,1,,Europe/Paris,,OGE, +OGE:SA:CTP4873,1,"LANCEY SNCF",45.234332,5.881137,,1,,Europe/Paris,,OGE, +OGE:SA:CTP4878,1,"LE BANC",45.218836,5.926266,,1,,Europe/Paris,,OGE, +OGE:SA:CTP4881,1,"LYCEE RD.523",45.250307,5.899682,,1,,Europe/Paris,,OGE, +OGE:SA:CTP4885,1,"LE MAS VIEUX",45.227225,5.923309,,1,,Europe/Paris,,OGE, +OGE:SA:CTP4888,1,"LES COCHARDS",45.230614,5.918497,,1,,Europe/Paris,,OGE, +OGE:SA:CTP4891,1,"COLLEGE BELLEDONNE - PARKING",45.245469,5.897173,,1,,Europe/Paris,,OGE, +OGE:SA:CTP4895,1,"PAPETERIES",45.234311,5.887154,,1,,Europe/Paris,,OGE, +OGE:SA:CTP4899,1,"LA BOUTIERE",45.238642,5.973853,,1,,Europe/Paris,,OGE, +OGE:SA:CTP4903,1,"PRABERT",45.250606,5.972506,,1,,Europe/Paris,,OGE, +OGE:SA:CTP4907,1,"LE MOLLARD",45.254912,5.942219,,1,,Europe/Paris,,OGE, +OGE:SA:CTP4911,1,"LE FUZIER",45.251996,5.963308,,1,,Europe/Paris,,OGE, +OGE:SA:CTP4915,1,"PRAPOUTEL PATTE D OIE",45.253094,5.992143,,1,,Europe/Paris,,OGE, +OGE:SA:CTP4921,1,"LE PLANEYSSARD ECOLE",45.24608,5.96754,,1,,Europe/Paris,,OGE, +OGE:SA:CTP4925,1,"PRAPOUTEL GDARMERIE",45.256746,5.993209,,1,,Europe/Paris,,OGE, +OGE:SA:CTP4929,1,"LE CARNIVAL",45.254173,5.955351,,1,,Europe/Paris,,OGE, +OGE:SA:CTP4933,1,"LE FAY N°2",45.222279,5.937311,,1,,Europe/Paris,,OGE, +OGE:SA:CTP4937,1,"LES GENIEVRES",45.257846,5.976374,,1,,Europe/Paris,,OGE, +OGE:SA:CTP4941,1,"VAUGELAS",45.244217,5.963384,,1,,Europe/Paris,,OGE, +OGE:SA:CTP4945,1,"LA PERRIERE",45.235092,5.941164,,1,,Europe/Paris,,OGE, +OGE:SA:CTP4948,1,"EPINGLE LA PERRIERE",45.236882,5.942588,,1,,Europe/Paris,,OGE, +OGE:SA:CTP5355,1,"PONT DE BERNIN",45.273976,5.870104,,1,,Europe/Paris,,OGE, +OGE:SA:CTP5359,1,"VILLAGE",45.270507,5.867563,,1,,Europe/Paris,,OGE, +OGE:SA:CTP5363,1,"LA CROIX DES AYES",45.277256,5.873053,,1,,Europe/Paris,,OGE, +OGE:SA:CTP5370,1,"ST PANCRASSE LA MAIRIE",45.29135,5.858981,,1,,Europe/Paris,,OGE, +OGE:SA:CTP5374,1,"CROIX DES VARVOUX",45.26613,5.861625,,1,,Europe/Paris,,OGE, +OGE:SA:CTP5378,1,"P.T.T.",45.269063,5.867948,,1,,Europe/Paris,,OGE, +OGE:SA:CTP5382,1,"VARVOUX LE BAS",45.264443,5.864239,,1,,Europe/Paris,,OGE, +OGE:SA:CTP5394,1,"LES VARVOUX",45.263958,5.859026,,1,,Europe/Paris,,OGE, +OGE:SA:CTP5398,1,"LES MEUNIERES",45.290078,5.851292,,1,,Europe/Paris,,OGE, +OGE:SA:CTP5402,1,"LES GRANDES CITES",45.300299,5.870299,,1,,Europe/Paris,,OGE, +OGE:SA:CTP5406,1,"LES MARGAINS",45.301198,5.873269,,1,,Europe/Paris,,OGE, +OGE:SA:CTP5410,1,"LES REVOLEYS",45.267198,5.865896,,1,,Europe/Paris,,OGE, +OGE:SA:CTP5414,1,"LE COTEAU",45.295891,5.896789,,1,,Europe/Paris,,OGE, +OGE:SA:CTP5422,1,"COLLEGE S.BEAUVOIR",45.278437,5.878645,,1,,Europe/Paris,,OGE, +OGE:SA:CTP5424,1,"ST MICROELECTRONICS",45.267023,5.884665,,1,,Europe/Paris,,OGE, +OGE:SA:CTP5432,1,"ECOLE PERF. GUYNEMER",45.260787,5.91118,,1,,Europe/Paris,,OGE, +OGE:SA:CTP5436,1,"LE BOCCARD",45.261878,5.921141,,1,,Europe/Paris,,OGE, +OGE:SA:CTP5440,1,"PRE DU CHENE",45.26645,5.916992,,1,,Europe/Paris,,OGE, +OGE:SA:CTP5444,1,"LOT. LA TOUR",45.275821,5.938075,,1,,Europe/Paris,,OGE, +OGE:SA:CTP5456,1,"COQUILLARD",45.272624,5.92374,,1,,Europe/Paris,,OGE, +OGE:SA:CTP5460,1,"CHAMP PRES FROGES - LE MOLLARD",45.282119,5.938851,,1,,Europe/Paris,,OGE, +OGE:SA:CTP5464,1,"PIED DE CROLLES",45.288724,5.888816,,1,,Europe/Paris,,OGE, +OGE:SA:CTP5468,1,"MAIRIE",45.284663,5.883719,,1,,Europe/Paris,,OGE, +OGE:SA:CTP5472,1,"LA GARE",45.308493,5.914772,,1,,Europe/Paris,,OGE, +OGE:SA:CTP5476,1,"CARREFOUR ZI",45.3041,5.907001,,1,,Europe/Paris,,OGE, +OGE:SA:CTP5480,1,"LE BROCEY STADE",45.280601,5.877503,,1,,Europe/Paris,,OGE, +OGE:SA:CTP5484,1,"LE VILLAGE",45.305744,5.910022,,1,,Europe/Paris,,OGE, +OGE:SA:CTP5488,1,"Z.I.LE RAFOUR CROIZAT",45.269595,5.893104,,1,,Europe/Paris,,OGE, +OGE:SA:CTP5492,1,"Z.I.LE RAFOUR MONNET",45.269856,5.891126,,1,,Europe/Paris,,OGE, +OGE:SA:CTP5494,1,"LANGENET",45.262594,5.925832,,1,,Europe/Paris,,OGE, +OGE:SA:CTP5497,1,"LE BAS",45.275541,5.926655,,1,,Europe/Paris,,OGE, +OGE:SA:CTP5501,1,"CHAMPALUD",45.286421,5.936919,,1,,Europe/Paris,,OGE, +OGE:SA:CTP5505,1,"PTT GARE",45.282917,5.880988,,1,,Europe/Paris,,OGE, +OGE:SA:CTP5509,1,"MONTFORT FUNICULAIRE",45.298601,5.899234,,1,,Europe/Paris,,OGE, +OGE:SA:CTP5513,1,"POMPIERS",45.275171,5.879848,,1,,Europe/Paris,,OGE, +OGE:SA:CTP5517,1,"CITE JARDINS",45.262075,5.91236,,1,,Europe/Paris,,OGE, +OGE:SA:CTP5525,1,"LES JAURES",45.263039,5.932934,,1,,Europe/Paris,,OGE, +OGE:SA:CTP5529,1,"LOT BALC. BELLEDONNE",45.265285,5.931595,,1,,Europe/Paris,,OGE, +OGE:SA:CTP5533,1,"ALLEE DES THUYAS",45.266772,5.926172,,1,,Europe/Paris,,OGE, +OGE:SA:CTP5537,1,"LE PLANET",45.26353,5.923827,,1,,Europe/Paris,,OGE, +OGE:SA:CTP5539,1,"LES BOIS",45.266582,5.932307,,1,,Europe/Paris,,OGE, +OGE:SA:CTP5543,1,"LE MAZARETIER",45.269298,5.93203,,1,,Europe/Paris,,OGE, +OGE:SA:CTP5547,1,"LES VIGNES DE PICHAT",45.269079,5.925142,,1,,Europe/Paris,,OGE, +OGE:SA:CTP5549,1,"PRE BENOIT",45.302792,5.877562,,1,,Europe/Paris,,OGE, +OGE:SA:CTP5553,1,"LES GANDINS",45.304204,5.879843,,1,,Europe/Paris,,OGE, +OGE:SA:CTP5557,1,"BRIGNOUD GARE SNCF",45.262733,5.902089,,1,,Europe/Paris,,OGE, +OGE:SA:CTP5561,1,"MAS PELIOUD",45.265802,5.936195,,1,,Europe/Paris,,OGE, +OGE:SA:CTP5565,1,"LES AYETTES",45.266332,5.924447,,1,,Europe/Paris,,OGE, +OGE:SA:CTP5573,1,"L ENVERS",45.260736,5.967872,,1,,Europe/Paris,,OGE, +OGE:SA:CTP5578,1,"ROUTE VIEUX MANEGE",45.265326,5.965009,,1,,Europe/Paris,,OGE, +OGE:SA:CTP5582,1,"LES ALPETS",45.267176,5.96298,,1,,Europe/Paris,,OGE, +OGE:SA:CTP5586,1,"LES BARRES",45.272232,5.974234,,1,,Europe/Paris,,OGE, +OGE:SA:CTP5590,1,"LE MOULIN DES ADRETS",45.268585,5.968772,,1,,Europe/Paris,,OGE, +OGE:SA:CTP5594,1,"VILLARD CHATEAU",45.270458,5.983018,,1,,Europe/Paris,,OGE, +OGE:SA:CTP5598,1,"POUTAZ BAS",45.264515,5.978251,,1,,Europe/Paris,,OGE, +OGE:SA:CTP5602,1,"LES AVONS",45.262289,5.968785,,1,,Europe/Paris,,OGE, +OGE:SA:CTP5606,1,"PRES COMMUNAUX N°1",45.273566,5.978765,,1,,Europe/Paris,,OGE, +OGE:SA:CTP5610,1,"PRES COMMUNAUX N°2",45.274263,5.984343,,1,,Europe/Paris,,OGE, +OGE:SA:CTP5614,1,"LES FOURNELLES",45.264492,5.976296,,1,,Europe/Paris,,OGE, +OGE:SA:CTP5618,1,"LA PITROUSE",45.266426,5.979596,,1,,Europe/Paris,,OGE, +OGE:SA:CTP5622,1,"COL DES AYES",45.274085,5.987092,,1,,Europe/Paris,,OGE, +OGE:SA:CTP5626,1,"LE HAUT",45.288676,5.972451,,1,,Europe/Paris,,OGE, +OGE:SA:CTP5630,1,"MAIRIE",45.287706,5.970496,,1,,Europe/Paris,,OGE, +OGE:SA:CTP5634,1,"VILLARD BERNARD",45.273411,5.975972,,1,,Europe/Paris,,OGE, +OGE:SA:CTP5638,1,"CHAMP LE HAUT MAIRIE",45.280018,5.940826,,1,,Europe/Paris,,OGE, +OGE:SA:CTP5642,1,"POUTAZ HAUT",45.262138,5.978524,,1,,Europe/Paris,,OGE, +OGE:SA:CTP5646,1,"LES COMPTES",45.25923,5.968043,,1,,Europe/Paris,,OGE, +OGE:SA:CTP5650,1,"ROUARE",45.267194,5.945632,,1,,Europe/Paris,,OGE, +OGE:SA:CTP5656,1,"ECOLE LES ADRETS",45.270682,5.965162,,1,,Europe/Paris,,OGE, +OGE:SA:CTP5661,1,"PLACE",45.287986,5.969489,,1,,Europe/Paris,,OGE, +OGE:SA:CTP5665,1,"LE LANAT",45.272395,5.979911,,1,,Europe/Paris,,OGE, +OGE:SA:CTP5668,1,"ECOLES",45.300239,5.996151,,1,,Europe/Paris,,OGE, +OGE:SA:CTP5673,1,"LES AYES",45.27689,5.994481,,1,,Europe/Paris,,OGE, +OGE:SA:CTP5675,1,"PRE SEC",45.304003,5.953777,,1,,Europe/Paris,,OGE, +OGE:SA:CTP5679,1,"ROUTE DES GAUTHIERS",45.292444,5.995001,,1,,Europe/Paris,,OGE, +OGE:SA:CTP5683,1,"LES GLAPIGNEUX",45.285713,5.997177,,1,,Europe/Paris,,OGE, +OGE:SA:CTP5686,1,"LES COMBES D EN BAS",45.298366,5.980861,,1,,Europe/Paris,,OGE, +OGE:SA:CTP5690,1,"LE BOURGUIGNON",45.298586,5.985471,,1,,Europe/Paris,,OGE, +OGE:SA:CTP5694,1,"LES BERTS",45.281019,5.990748,,1,,Europe/Paris,,OGE, +OGE:SA:CTP5696,1,"LES VALLINS",45.284176,5.988688,,1,,Europe/Paris,,OGE, +OGE:SA:CTP5698,1,"PIERRE HERSE",45.290191,5.995793,,1,,Europe/Paris,,OGE, +OGE:SA:CTP5700,1,"LES COMBES D EN HAUT",45.297302,5.975645,,1,,Europe/Paris,,OGE, +OGE:SA:CTP5704,1,"CARR. RD 523",45.294933,5.944949,,1,,Europe/Paris,,OGE, +OGE:SA:CTP5708,1,"LOUTRE",45.286137,5.990002,,1,,Europe/Paris,,OGE, +OGE:SA:CTP5710,1,"LA TOUR",45.279027,5.995232,,1,,Europe/Paris,,OGE, +OGE:SA:CTP5712,1,"LA MAISON BLANCHE",45.298258,5.971087,,1,,Europe/Paris,,OGE, +OGE:SA:CTP5716,1,"LES FOURNACHES",45.269908,5.987986,,1,,Europe/Paris,,OGE, +OGE:SA:CTP5720,1,"LA ROCHE",45.295694,5.995461,,1,,Europe/Paris,,OGE, +OGE:SA:CTP5724,1,"GORGE D OR",45.297409,5.963962,,1,,Europe/Paris,,OGE, +OGE:SA:CTP5728,1,"LES ESSARTS",45.300738,5.967807,,1,,Europe/Paris,,OGE, +OGE:SA:CTP5732,1,"LES BLETTIERES",45.266784,5.975207,,1,,Europe/Paris,,OGE, +OGE:SA:CTP5736,1,"REVEL LA MONTA",45.303979,5.990404,,1,,Europe/Paris,,OGE, +OGE:SA:CTP5740,1,"GLAPIGNEUX DESSOUS",45.286646,5.995816,,1,,Europe/Paris,,OGE, +OGE:SA:CTP5742,1,"LE PRE",45.272682,5.967609,,1,,Europe/Paris,,OGE, +OGE:SA:CTP5749,1,"LA MARTINETTE",45.282108,6.073965,,1,,Europe/Paris,,OGE, +OGE:SA:CTP5753,1,"FOND DE FRANCE",45.280143,6.074021,,1,,Europe/Paris,,OGE, +OGE:SA:CTP5757,1,"LE PLEYNET",45.273635,6.05726,,1,,Europe/Paris,,OGE, +OGE:SA:CTP5761,1,"CAMOREL",45.297066,6.079208,,1,,Europe/Paris,,OGE, +OGE:SA:CTP5765,1,"LA FERRIERE LA CHAPELLE",45.291381,6.076878,,1,,Europe/Paris,,OGE, +OGE:SA:CTP5769,1,"LES MILLETS C.V.O.",45.285808,6.074508,,1,,Europe/Paris,,OGE, +OGE:SA:CTP6365,1,"BUISSONNAY",45.310486,5.917263,,1,,Europe/Paris,,OGE, +OGE:SA:CTP6380,1,"INSTITUT",45.327262,5.934814,,1,,Europe/Paris,,OGE, +OGE:SA:CTP6384,1,"LES VIROILLES",45.326648,5.899969,,1,,Europe/Paris,,OGE, +OGE:SA:CTP6388,1,"SORT VILL. ST MICHEL",45.352151,5.915956,,1,,Europe/Paris,,OGE, +OGE:SA:CTP6390,1,"HAMEAU ST MICHEL",45.353661,5.917996,,1,,Europe/Paris,,OGE, +OGE:SA:CTP6394,1,"LE PRAYER",45.324894,5.897524,,1,,Europe/Paris,,OGE, +OGE:SA:CTP6398,1,"LE TERRAIL",45.341646,5.904939,,1,,Europe/Paris,,OGE, +OGE:SA:CTP6402,1,"LE COMBET",45.347046,5.909264,,1,,Europe/Paris,,OGE, +OGE:SA:CTP6408,1,"ST BERNARD DU TOUVET - LA BATIE",45.344277,5.905456,,1,,Europe/Paris,,OGE, +OGE:SA:CTP6412,1,"LES PELLOUX",45.32986,5.903268,,1,,Europe/Paris,,OGE, +OGE:SA:CTP6416,1,"LES CHATAINS",45.319046,5.889801,,1,,Europe/Paris,,OGE, +OGE:SA:CTP6420,1,"LA CROIX DES EYRAUDS",45.31273,5.887424,,1,,Europe/Paris,,OGE, +OGE:SA:CTP6424,1,"LA MURE",45.318824,5.926321,,1,,Europe/Paris,,OGE, +OGE:SA:CTP6428,1,"LE CARRE",45.314682,5.923635,,1,,Europe/Paris,,OGE, +OGE:SA:CTP6433,1,"LA TERRASSE MAIRIE",45.322784,5.930162,,1,,Europe/Paris,,OGE, +OGE:SA:CTP6437,1,"LA DIAT",45.334943,5.902589,,1,,Europe/Paris,,OGE, +OGE:SA:CTP6443,1,"MAT. LES GANDINS",45.308009,5.883441,,1,,Europe/Paris,,OGE, +OGE:SA:CTP6445,1,"LES VIALS",45.315118,5.888137,,1,,Europe/Paris,,OGE, +OGE:SA:CTP6449,1,"LES GUILLOTS",45.338663,5.903021,,1,,Europe/Paris,,OGE, +OGE:SA:CTP6453,1,"ECOLE DES GAUDES",45.309195,5.886072,,1,,Europe/Paris,,OGE, +OGE:SA:CTP6457,1,"LES MASSARDS",45.316977,5.888231,,1,,Europe/Paris,,OGE, +OGE:SA:CTP6461,1,"LES GAUDES VILLAGE",45.309283,5.88635,,1,,Europe/Paris,,OGE, +OGE:SA:CTP6465,1,"LA FRETTE",45.338693,5.941964,,1,,Europe/Paris,,OGE, +OGE:SA:CTP6473,1,"LACHAT",45.324265,5.919653,,1,,Europe/Paris,,OGE, +OGE:SA:CTP6477,1,"LE BURLET",45.324916,5.924891,,1,,Europe/Paris,,OGE, +OGE:SA:CTP6481,1,"MONTABON",45.345182,5.933267,,1,,Europe/Paris,,OGE, +OGE:SA:CTP6488,1,"LA GARE",45.34223,5.974358,,1,,Europe/Paris,,OGE, +OGE:SA:CTP6490,1,"MONTGALMAND",45.319085,5.972038,,1,,Europe/Paris,,OGE, +OGE:SA:CTP6494,1,"LA CONCHE",45.3519,5.947253,,1,,Europe/Paris,,OGE, +OGE:SA:CTP6498,1,"VILLARD BOZON",45.332344,5.971396,,1,,Europe/Paris,,OGE, +OGE:SA:CTP6506,1,"LE CARRET",45.312441,6.009147,,1,,Europe/Paris,,OGE, +OGE:SA:CTP6510,1,"GRANDES TERRES",45.30729,5.956927,,1,,Europe/Paris,,OGE, +OGE:SA:CTP6514,1,"LE GRE",45.307096,6.003357,,1,,Europe/Paris,,OGE, +OGE:SA:CTP6522,1,"LE CLOS DU CEDRE",45.312372,5.961663,,1,,Europe/Paris,,OGE, +OGE:SA:CTP6528,1,"COLLEGE ICARE - PARKING",45.337803,5.974493,,1,,Europe/Paris,,OGE, +OGE:SA:CTP6530,1,"COLLEGE RD.523",45.337968,5.975082,,1,,Europe/Paris,,OGE, +OGE:SA:CTP6534,1,"LA COCHE",45.323712,6.023578,,1,,Europe/Paris,,OGE, +OGE:SA:CTP6537,1,"LA CASSEY",45.347435,6.040271,,1,,Europe/Paris,,OGE, +OGE:SA:CTP6541,1,"LES VINCENTS",45.321432,6.018335,,1,,Europe/Paris,,OGE, +OGE:SA:CTP6545,1,"PONT DU ROUGE",45.316242,6.012843,,1,,Europe/Paris,,OGE, +OGE:SA:CTP6547,1,"LE LEVET",45.348207,6.031668,,1,,Europe/Paris,,OGE, +OGE:SA:CTP6551,1,"LE VOLEY",45.344407,6.038211,,1,,Europe/Paris,,OGE, +OGE:SA:CTP6555,1,"LES AMICONS",45.3409,6.03345,,1,,Europe/Paris,,OGE, +OGE:SA:CTP6559,1,"LE CURTILLARD",45.302483,6.081252,,1,,Europe/Paris,,OGE, +OGE:SA:CTP6563,1,"LA FERRIERE LE VILLAGE",45.319241,6.087079,,1,,Europe/Paris,,OGE, +OGE:SA:CTP6567,1,"LE PETIT THIERVOZ",45.308419,6.080453,,1,,Europe/Paris,,OGE, +OGE:SA:CTP6571,1,"LE GRAND THIERVOZ",45.30658,6.07974,,1,,Europe/Paris,,OGE, +OGE:SA:CTP6575,1,"LA PIAT",45.339657,6.093884,,1,,Europe/Paris,,OGE, +OGE:SA:CTP7224,1,"LA CHAPELLE",45.39741,5.943864,,1,,Europe/Paris,,OGE, +OGE:SA:CTP7228,1,"COL DE MARCIEU",45.355802,5.918807,,1,,Europe/Paris,,OGE, +OGE:SA:CTP7232,1,"LE VILLARD",45.391518,5.93593,,1,,Europe/Paris,,OGE, +OGE:SA:CTP7238,1,"BELLECHAMBRE",45.384023,5.931969,,1,,Europe/Paris,,OGE, +OGE:SA:CTP7240,1,"LA VIEILLE EGLISE",45.394826,5.943447,,1,,Europe/Paris,,OGE, +OGE:SA:CTP7244,1,"LOTISSEMENT MARCIEU",45.353632,5.918006,,1,,Europe/Paris,,OGE, +OGE:SA:CTP7248,1,"LA MOUILLA",45.389077,5.933823,,1,,Europe/Paris,,OGE, +OGE:SA:CTP7252,1,"LES MEYANNES",45.386861,5.998927,,1,,Europe/Paris,,OGE, +OGE:SA:CTP7258,1,"LE CHEYLAS - LA MAIRIE",45.370874,5.992405,,1,,Europe/Paris,,OGE, +OGE:SA:CTP7260,1,"ZAC DES VIGNES",45.368849,5.990215,,1,,Europe/Paris,,OGE, +OGE:SA:CTP7264,1,"LE CHEYLAS GARE D.523",45.392098,6.001703,,1,,Europe/Paris,,OGE, +OGE:SA:CTP7268,1,"LE CHEYLAS LE MERCIER",45.37578,5.997128,,1,,Europe/Paris,,OGE, +OGE:SA:CTP7272,1,"LE ROMPAY",45.388383,5.996208,,1,,Europe/Paris,,OGE, +OGE:SA:CTP7276,1,"LA FLACHERE MAIRIE",45.398497,5.962826,,1,,Europe/Paris,,OGE, +OGE:SA:CTP7280,1,"LES FONTAINES",45.360988,6.001761,,1,,Europe/Paris,,OGE, +OGE:SA:CTP7284,1,"BEAUREGARD",45.371335,6.004511,,1,,Europe/Paris,,OGE, +OGE:SA:CTP7288,1,"STE MARIE D ALLOIX LE VILLAGE",45.380506,5.967584,,1,,Europe/Paris,,OGE, +OGE:SA:CTP7292,1,"LA FLACHERE ECOLE",45.394758,5.96156,,1,,Europe/Paris,,OGE, +OGE:SA:CTP7296,1,"GARAGE RENAULT",45.366069,5.956227,,1,,Europe/Paris,,OGE, +OGE:SA:CTP7300,1,"CAVE COOPERATIVE",45.368862,5.958286,,1,,Europe/Paris,,OGE, +OGE:SA:CTP7304,1,"HAUT TOUVET E.D.F",45.364327,5.954842,,1,,Europe/Paris,,OGE, +OGE:SA:CTP7308,1,"LE ST JEAN",45.361587,5.951464,,1,,Europe/Paris,,OGE, +OGE:SA:CTP7312,1,"LA FUMAS",45.370961,5.956594,,1,,Europe/Paris,,OGE, +OGE:SA:CTP7317,1,"COLLEGE P. AIGUILLE - HAUT",45.360749,5.94784,,1,,Europe/Paris,,OGE, +OGE:SA:CTP7319,1,"COLLEGE P. AIGUILLE - BAS",45.360415,5.948821,,1,,Europe/Paris,,OGE, +OGE:SA:CTP7321,1,"LE TOUVET LA GARE",45.359881,5.950358,,1,,Europe/Paris,,OGE, +OGE:SA:CTP7325,1,"ST VINCENT MERCUZE PISCINE",45.382389,5.951966,,1,,Europe/Paris,,OGE, +OGE:SA:CTP7330,1,"LE TRAIT",45.371119,6.006755,,1,,Europe/Paris,,OGE, +OGE:SA:CTP7334,1,"LE CHAPELAT",45.370599,6.00981,,1,,Europe/Paris,,OGE, +OGE:SA:CTP7338,1,"MAILLES",45.368889,6.010912,,1,,Europe/Paris,,OGE, +OGE:SA:CTP7343,1,"ST VINCENT MERCUZE MAIRIE",45.37501,5.949209,,1,,Europe/Paris,,OGE, +OGE:SA:CTP7348,1,"LE MONTALIEU",45.385804,5.955435,,1,,Europe/Paris,,OGE, +OGE:SA:CTP7352,1,"LES BLEUETS",45.391353,5.997983,,1,,Europe/Paris,,OGE, +OGE:SA:CTP7356,1,"ST VINCENT LA BRANCHY",45.371603,5.952799,,1,,Europe/Paris,,OGE, +OGE:SA:CTP7360,1,"PLOSSU MAIRIE",45.359579,5.951277,,1,,Europe/Paris,,OGE, +OGE:SA:CTP7364,1,"GS DOUDART DE LAGREE",45.377914,5.949779,,1,,Europe/Paris,,OGE, +OGE:SA:CTP7368,1,"LOT. DE LA BARDE",45.387049,5.956745,,1,,Europe/Paris,,OGE, +OGE:SA:CTP7370,1,"LE CHEYLAS LE VILLARD",45.387012,6.0054,,1,,Europe/Paris,,OGE, +OGE:SA:CTP7374,1,"TOUVET MATERNELLE",45.36104,5.953476,,1,,Europe/Paris,,OGE, +OGE:SA:CTP7377,1,"RUE HAUSSEPIED",45.370468,5.958029,,1,,Europe/Paris,,OGE, +OGE:SA:CTP7381,1,"LE TROUILLET",45.390979,6.012692,,1,,Europe/Paris,,OGE, +OGE:SA:CTP7385,1,"LE CHEYLAS ECOLES GARE",45.3925,5.998706,,1,,Europe/Paris,,OGE, +OGE:SA:CTP7392,1,"LES MORETS",45.38221,6.073489,,1,,Europe/Paris,,OGE, +OGE:SA:CTP7398,1,"LE DAVID",45.387077,6.06737,,1,,Europe/Paris,,OGE, +OGE:SA:CTP7403,1,"PLACE DE VERDUN",45.393981,6.074931,,1,,Europe/Paris,,OGE, +OGE:SA:CTP7407,1,"SAILLES",45.366778,6.033147,,1,,Europe/Paris,,OGE, +OGE:SA:CTP7413,1,"HAMEAU MONTOUVRARD",45.380403,6.076588,,1,,Europe/Paris,,OGE, +OGE:SA:CTP7417,1,"ST PIERRE ECOLES",45.373329,6.048505,,1,,Europe/Paris,,OGE, +OGE:SA:CTP7421,1,"LE CATUS",45.368472,6.017298,,1,,Europe/Paris,,OGE, +OGE:SA:CTP7425,1,"QUARTIER DE GERLAND",45.368347,6.038253,,1,,Europe/Paris,,OGE, +OGE:SA:CTP7429,1,"SAILLES LE BAS",45.364398,6.034545,,1,,Europe/Paris,,OGE, +OGE:SA:CTP7433,1,"LE GUILLON",45.353029,6.032781,,1,,Europe/Paris,,OGE, +OGE:SA:CTP7437,1,"LE RIGARD",45.355773,6.033459,,1,,Europe/Paris,,OGE, +OGE:SA:CTP7443,1,"SAILLES LE HAUT",45.362149,6.036204,,1,,Europe/Paris,,OGE, +OGE:SA:CTP7447,1,"MONTGOUTOUX",45.358658,6.055796,,1,,Europe/Paris,,OGE, +OGE:SA:CTP7452,1,"LE CHABOUD",45.385129,6.060843,,1,,Europe/Paris,,OGE, +OGE:SA:CTP7456,1,"GORGE NOIRE",45.357613,6.037408,,1,,Europe/Paris,,OGE, +OGE:SA:CTP7460,1,"CRETS EN BELLEDONNE LE VILLAGE",45.374171,6.046647,,1,,Europe/Paris,,OGE, +OGE:SA:CTP7462,1,"CRETS EN BELLEDONNE VILLAGE",45.374592,6.04737,,1,,Europe/Paris,,OGE, +OGE:SA:CTP7464,1,"LE BEROUD",45.350616,6.031975,,1,,Europe/Paris,,OGE, +OGE:SA:CTP7468,1,"LE CARIGNON",45.356087,6.050271,,1,,Europe/Paris,,OGE, +OGE:SA:CTP7472,1,"LE FEYJOUX",45.354442,6.046481,,1,,Europe/Paris,,OGE, +OGE:SA:CTP7476,1,"LES GRANGES",45.35171,6.041372,,1,,Europe/Paris,,OGE, +OGE:SA:CTP7480,1,"MAIRIE",45.36733,6.016766,,1,,Europe/Paris,,OGE, +OGE:SA:CTP7484,1,"CRETS EN BELLEDONNE LA ROCHE",45.377543,6.051977,,1,,Europe/Paris,,OGE, +OGE:SA:CTP7488,1,"LES COTTERIAUX",45.36202,6.045233,,1,,Europe/Paris,,OGE, +OGE:SA:CTP7492,1,"L ABBAYE",45.393508,6.0165,,1,,Europe/Paris,,OGE, +OGE:SA:CTP7496,1,"LE VILLAGE",45.3568,6.099986,,1,,Europe/Paris,,OGE, +OGE:SA:CTP7506,1,"CHINFERT",45.368076,6.097657,,1,,Europe/Paris,,OGE, +OGE:SA:CTP7510,1,"HOT PIC BELLE ETOILE",45.360775,6.098763,,1,,Europe/Paris,,OGE, +OGE:SA:CTP8016,1,"LES PRES MAIRIE",45.406743,5.945467,,1,,Europe/Paris,,OGE, +OGE:SA:CTP8024,1,"CIMETIERE",45.439948,5.980173,,1,,Europe/Paris,,OGE, +OGE:SA:CTP8028,1,"HAMEAU LA CUILLER",45.443254,5.980694,,1,,Europe/Paris,,OGE, +OGE:SA:CTP8032,1,"LA CORVA",45.433105,5.977189,,1,,Europe/Paris,,OGE, +OGE:SA:CTP8036,1,"LE RESERVOIR",45.430186,5.983558,,1,,Europe/Paris,,OGE, +OGE:SA:CTP8040,1,"LA BERARDE",45.409172,5.982295,,1,,Europe/Paris,,OGE, +OGE:SA:CTP8044,1,"LE BOISSIEU",45.408384,5.967152,,1,,Europe/Paris,,OGE, +OGE:SA:CTP8050,1,"LA BUISSIERE LES GRANGES",45.402078,5.979232,,1,,Europe/Paris,,OGE, +OGE:SA:CTP8052,1,"LA BUISSIERE ECOLE",45.404728,5.978065,,1,,Europe/Paris,,OGE, +OGE:SA:CTP8056,1,"MATERNELLE",45.43641,5.980799,,1,,Europe/Paris,,OGE, +OGE:SA:CTP8060,1,"LE BOISSIEU LOT",45.40669,5.965562,,1,,Europe/Paris,,OGE, +OGE:SA:CTP8064,1,"HAMEAU DE ST GEORGES",45.418527,5.956805,,1,,Europe/Paris,,OGE, +OGE:SA:CTP8068,1,"EC.PRIMAIRE",45.435145,5.978696,,1,,Europe/Paris,,OGE, +OGE:SA:CTP8070,1,"LE PUITS",45.435178,6.00008,,1,,Europe/Paris,,OGE, +OGE:SA:CTP8078,1,"LE FAYET",45.417813,5.974534,,1,,Europe/Paris,,OGE, +OGE:SA:CTP8082,1,"LOT. BEAUREG",45.428756,5.978013,,1,,Europe/Paris,,OGE, +OGE:SA:CTP8086,1,"JAVEYDAN",45.402624,6.014096,,1,,Europe/Paris,,OGE, +OGE:SA:CTP8090,1,"MALBOURGET",45.407889,6.0147,,1,,Europe/Paris,,OGE, +OGE:SA:CTP8094,1,"ST MARCEL D EN HAUT",45.444583,5.964132,,1,,Europe/Paris,,OGE, +OGE:SA:CTP8100,1,"COLLEGE MARCEL CHENE - PARKING",45.432218,6.008949,,1,,Europe/Paris,,OGE, +OGE:SA:CTP8102,1,"VILLARD DIDIER",45.418862,6.012837,,1,,Europe/Paris,,OGE, +OGE:SA:CTP8108,1,"LYCEE P. DU TERRAIL - PARVIS",45.434,6.016029,,1,,Europe/Paris,,OGE, +OGE:SA:CTP8110,1,"LE VILLAGE",45.43489,5.978408,,1,,Europe/Paris,,OGE, +OGE:SA:CTP8119,1,"LE VILLARD",45.466929,5.981516,,1,,Europe/Paris,,OGE, +OGE:SA:CTP8125,1,"VILLARD NOIR",45.413776,6.012937,,1,,Europe/Paris,,OGE, +OGE:SA:CTP8130,1,"LA FLACHERE LA GARE",45.400493,5.96394,,1,,Europe/Paris,,OGE, +OGE:SA:CTP8136,1,"BREDA",45.436975,6.016948,,1,,Europe/Paris,,OGE, +OGE:SA:CTP8138,1,"PISCINE",45.43376,6.012347,,1,,Europe/Paris,,OGE, +OGE:SA:CTP8142,1,"LA MALADIERE",45.418789,5.984367,,1,,Europe/Paris,,OGE, +OGE:SA:CTP8146,1,"LE BREDA",45.401986,6.081191,,1,,Europe/Paris,,OGE, +OGE:SA:CTP8150,1,"ROUTE DU MOUTARET",45.396333,6.073792,,1,,Europe/Paris,,OGE, +OGE:SA:CTP8154,1,"PANORAMIC",45.400588,6.074325,,1,,Europe/Paris,,OGE, +OGE:SA:CTP8158,1,"LE CLOSY",45.407307,6.07933,,1,,Europe/Paris,,OGE, +OGE:SA:CTP8162,1,"LA MAIRIE",45.432695,6.020086,,1,,Europe/Paris,,OGE, +OGE:SA:CTP8170,1,"CHALLEYS",45.411423,6.02021,,1,,Europe/Paris,,OGE, +OGE:SA:CTP8174,1,"PAPILLARD",45.400489,6.017497,,1,,Europe/Paris,,OGE, +OGE:SA:CTP8178,1,"LE MARAIS",45.408435,6.021899,,1,,Europe/Paris,,OGE, +OGE:SA:CTP8182,1,"MONTAUCHER",45.406146,6.021259,,1,,Europe/Paris,,OGE, +OGE:SA:CTP8186,1,"LES PLANTEES",45.413594,6.0182,,1,,Europe/Paris,,OGE, +OGE:SA:CTP8190,1,"LE PAPET",45.41471,6.022146,,1,,Europe/Paris,,OGE, +OGE:SA:CTP8198,1,"ST MAXIMIN LA MAIRIE",45.428536,6.037729,,1,,Europe/Paris,,OGE, +OGE:SA:CTP8214,1,"BEAUVOIR",45.428082,6.123887,,1,,Europe/Paris,,OGE, +OGE:SA:CTP8218,1,"LA RATZ",45.404693,6.084126,,1,,Europe/Paris,,OGE, +OGE:SA:CTP8222,1,"LE COLOMBIER",45.409316,6.088351,,1,,Europe/Paris,,OGE, +OGE:SA:CTP8226,1,"LA CHAPELLE LA GORGE",45.418965,6.09947,,1,,Europe/Paris,,OGE, +OGE:SA:CTP8232,1,"CHEMIN DES RUPINES",45.425596,6.10505,,1,,Europe/Paris,,OGE, +OGE:SA:CTP8234,1,"LA CHAPELLE ECOLE",45.422703,6.095395,,1,,Europe/Paris,,OGE, +OGE:SA:CTP8238,1,"MONTGAREN",45.427838,6.107253,,1,,Europe/Paris,,OGE, +OGE:SA:CTP8242,1,"LE MOUTARET LE VILLAGE",45.432151,6.088781,,1,,Europe/Paris,,OGE, +OGE:SA:CTP8246,1,"FREYDON",45.420054,6.084648,,1,,Europe/Paris,,OGE, +OGE:SA:CTP8250,1,"LES MASURES",45.424693,6.086772,,1,,Europe/Paris,,OGE, +OGE:SA:CTP8254,1,"LE BUISSON",45.412873,6.093779,,1,,Europe/Paris,,OGE, +OGE:SA:CTP8889,1,"EC PRIVEE BELLECOUR",45.464594,5.991696,,1,,Europe/Paris,,OGE, +OGE:SA:CTP8893,1,"HAMEAU LA VILLE",45.466937,5.981462,,1,,Europe/Paris,,OGE, +OGE:SA:CTP8897,1,"LA GARE",45.467787,5.98962,,1,,Europe/Paris,,OGE, +OGE:SA:CTP8901,1,"LES ATRUS",45.467942,5.966145,,1,,Europe/Paris,,OGE, +OGE:SA:CTP8905,1,"CERNON",45.459731,5.994981,,1,,Europe/Paris,,OGE, +OGE:SA:CTP8910,1,"LES GIROUDS",45.466389,5.970698,,1,,Europe/Paris,,OGE, +OGE:SA:CTP8914,1,"LA PALUD",45.477978,5.970087,,1,,Europe/Paris,,OGE, +OGE:SA:CTP8918,1,"L ETRAZ",45.471263,5.988973,,1,,Europe/Paris,,OGE, +OGE:SA:CTP8922,1,"MAIRIE",45.463356,5.990793,,1,,Europe/Paris,,OGE, +OGE:SA:CTP8926,1,"ST MARCEL D EN BAS",45.451425,5.965012,,1,,Europe/Paris,,OGE, +OGE:SA:CTP8929,1,"BELLECOMBETTE",45.468639,5.971449,,1,,Europe/Paris,,OGE, +OGE:SA:CTP8935,1,"LA MEUNIERE",45.459612,5.990643,,1,,Europe/Paris,,OGE, +OGE:SA:CTP8937,1,"ECOLE",45.467447,5.987963,,1,,Europe/Paris,,OGE, +OGE:SA:CTP8939,1,"BELLECOMBE",45.459824,5.967494,,1,,Europe/Paris,,OGE, +OGE:SA:CTP8943,1,"LES GAILLONS",45.466062,5.994002,,1,,Europe/Paris,,OGE, +OGR:SA:CTP100173,1,"Comboire",45.14583,5.690815,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100174,1,"Drac",45.148949,5.693968,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100175,1,"Musée Géo Charles",45.148786,5.70172,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100176,1,"Colonel Manhès",45.146471,5.70177,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100180,1,"Grugliasco",45.15122,5.708763,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100181,1,"Fernand Pelloutier",45.150838,5.714822,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100182,1,"La Rampe - Centre-Ville",45.149671,5.718836,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100183,1,"Antoine Polotti",45.14834,5.723195,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100184,1,"Le Château",45.147243,5.726717,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100185,1,"Ecoles Hospitalières",45.146275,5.729813,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100186,1,"Hôpital Sud",45.146896,5.732739,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100187,1,"François Quesnay",45.147903,5.735167,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100188,1,"Les Ruires-Boétie",45.14932,5.741221,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100189,1,"Odyssée",45.152474,5.748477,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100190,1,"Champ Fila",45.156269,5.755047,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100191,1,"Centre Socio-Culturel",45.159409,5.760115,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100192,1,"Le Carina",45.162379,5.763047,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100193,1,"Saint-Martin-d'Hères Village",45.165121,5.765519,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100194,1,"Maisons Blanches",45.166167,5.764604,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100195,1,"Croix du Pâtre",45.168209,5.761739,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100196,1,"Potié",45.170882,5.758594,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100197,1,"Etienne Grappe",45.172214,5.757734,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100199,1,"Henri Wallon",45.175911,5.764556,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100200,1,"Rocheplane",45.178302,5.762361,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100201,1,"Pierre Courtade",45.179558,5.763966,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100202,1,"Coli",45.180852,5.766949,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100204,1,"Promotion Sociale",45.187433,5.769634,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100206,1,"Bibliothèques Universitaires",45.19166,5.770379,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100207,1,"Universités - Biologie",45.19195,5.775249,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100208,1,"Epicéa",45.194602,5.775973,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100209,1,"Universités - IUT - UFRAPS",45.197657,5.775882,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100244,1,"Les Alloves",45.171902,5.764932,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100245,1,"Glaïeuls",45.169638,5.763583,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100247,1,"Edmond Rostand",45.174462,5.754321,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100248,1,"Houille Blanche",45.177946,5.751696,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100251,1,"Jeanne d'Arc",45.181766,5.745183,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100252,1,"Madeleine",45.185148,5.743239,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100254,1,"Verdun - Préfecture",45.188409,5.730833,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100257,1,"Championnet",45.185386,5.7225,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100258,1,"Condorcet",45.185761,5.71934,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100259,1,"Chorier - Condorcet",45.185927,5.71744,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100260,1,"Saint-Bruno",45.185923,5.714027,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100261,1,"D'Alembert",45.184225,5.710639,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100262,1,"Vallier - Docteur Calmette",45.180439,5.71018,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100263,1,"Champs-Elysées",45.177943,5.710245,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100264,1,"Salengro",45.175662,5.708872,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100265,1,"Henri Dunant",45.17441,5.708299,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100266,1,"Docteur Schweitzer",45.172453,5.706322,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100267,1,"Anatole France",45.171855,5.704949,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100268,1,"Cité Paul Mistral",45.168547,5.704787,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100269,1,"Bachelard",45.167184,5.705201,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100270,1,"Stade Lesdiguières",45.164372,5.710618,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100271,1,"Verlaine",45.161623,5.716025,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100272,1,"Maison des Anciens",45.159407,5.723475,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100274,1,"Grand'place",45.159255,5.731967,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100275,1,"Raymond Chanas",45.159421,5.737742,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100278,1,"Maisons Neuves",45.165176,5.742689,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100284,1,"Edmond Esmonin",45.159374,5.726617,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100295,1,"Abbé Grégoire",45.183885,5.711739,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100306,1,"Grand Châtelet",45.181825,5.748522,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100307,1,"Bon Pasteur",45.178232,5.751472,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100313,1,"Lycée du Grésivaudan",45.213405,5.780845,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100315,1,"Faculté de Pharmacie",45.211503,5.773925,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100317,1,"Aiguinards-Hexagone",45.206333,5.764064,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100318,1,"Place de la Louisiane",45.208762,5.763212,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100319,1,"Grésivaudan",45.20997,5.761767,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100320,1,"Jules Flandrin",45.208291,5.757804,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100321,1,"Le Cèdre",45.207259,5.755333,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100322,1,"Centre Théologique",45.206169,5.752145,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100324,1,"Commandant Nal",45.203235,5.745354,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100325,1,"Hôpital",45.20152,5.742269,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100326,1,"Hôpital Michallon",45.197143,5.747578,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100327,1,"Cimetière du Grand Sablon",45.192475,5.745344,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100328,1,"Saint-Roch",45.191582,5.739826,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100329,1,"Mutualité",45.190698,5.735468,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100331,1,"Chavant",45.184821,5.732447,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100332,1,"Driant",45.182285,5.7341,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100333,1,"Auguste Ravier",45.183988,5.739654,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100334,1,"Edison",45.181834,5.740909,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100335,1,"Les Bains",45.178206,5.742635,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100336,1,"André Argouges",45.175062,5.744746,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100337,1,"Paul Cocat",45.171962,5.745434,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100338,1,"Léon Jouhaux",45.168994,5.744438,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100339,1,"Pierre Loti",45.166636,5.746457,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100340,1,"Paul Eluard",45.165121,5.748871,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100341,1,"Le Marais",45.163618,5.750618,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100342,1,"Bel Air",45.161062,5.755253,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100343,1,"Robespierre",45.15985,5.757176,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100345,1,"Prémol",45.15752,5.764122,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100357,1,"Clémenceau",45.183882,5.741073,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100379,1,"Gières Gare - Universités",45.184899,5.785457,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100380,1,"Edelweiss",45.181493,5.78755,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100381,1,"Roseraie",45.179013,5.781005,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100382,1,"Anguisses",45.177823,5.777863,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100383,1,"Galochère",45.178779,5.773148,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100384,1,"Elsa Triolet",45.179583,5.770155,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100386,1,"Portail Rouge",45.181401,5.763469,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100387,1,"Cité Labeye",45.182217,5.760374,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100388,1,"Maison Communale",45.184014,5.753762,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100389,1,"Gay",45.184797,5.750857,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100390,1,"Croix Rouge",45.185581,5.7479,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100391,1,"Flandrin - Valmy",45.186563,5.744357,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100407,1,"Les Vernes",45.207135,5.83398,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100408,1,"Le Prieuré",45.204891,5.835762,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100411,1,"Domène Mairie",45.201518,5.838212,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100412,1,"Coubertin",45.200044,5.835279,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100415,1,"Les Rivets",45.194826,5.824545,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100416,1,"La Briot",45.192986,5.819476,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100417,1,"Le Bourg",45.191873,5.816465,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100418,1,"La Perrière",45.189021,5.810059,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100419,1,"Le Japin",45.187458,5.807058,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100420,1,"Champrondet",45.18578,5.802854,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100421,1,"Pied de Gières",45.18388,5.798521,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100422,1,"Place de la République",45.182093,5.792565,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100423,1,"Le Sonnant",45.181607,5.782706,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100424,1,"Porte du Grésivaudan",45.182524,5.776652,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100427,1,"Neyrpic - Belledonne",45.186701,5.757162,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100428,1,"Péri - Brossolette",45.187616,5.752596,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100435,1,"Champ Roman",45.184341,5.767686,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100453,1,"Gendarmerie",45.140033,5.698523,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100454,1,"Danielle Casanova",45.144477,5.700708,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100456,1,"Auguste Ferrier",45.144828,5.709622,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100457,1,"Auguste Delaune",45.143364,5.714228,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100458,1,"Marie Curie",45.144991,5.717292,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100459,1,"Paul Héroult",45.147277,5.713474,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100460,1,"Les Glières",45.149619,5.711669,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100462,1,"Monmousseau",45.153547,5.711882,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100463,1,"Les Essarts",45.159297,5.713758,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100465,1,"Beauvert",45.164168,5.717923,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100466,1,"Massenet",45.167709,5.721079,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100467,1,"Clos d'Or",45.169487,5.722715,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100468,1,"Eugène Sue",45.172837,5.724765,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100469,1,"Capuche",45.176153,5.726151,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100470,1,"Rue des Déportés",45.178294,5.727707,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100471,1,"Gustave Rivet",45.181703,5.727826,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100472,1,"Caserne de Bonne",45.185089,5.725423,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100474,1,"Hôtel de Police",45.194094,5.735714,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100476,1,"Saint-Laurent",45.197979,5.732628,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100477,1,"Petite Tronche",45.20212,5.734422,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100478,1,"Bastille",45.204608,5.737873,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100479,1,"Jules Rey",45.206582,5.742783,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100480,1,"Grande Tronche",45.20704,5.745779,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100481,1,"Croix de Montfleury",45.208794,5.749339,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100483,1,"Montfleury",45.211856,5.756367,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100484,1,"Eygala",45.213853,5.764605,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100485,1,"Les Oiseaux",45.21506,5.768667,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100486,1,"Buclos",45.215814,5.772255,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100487,1,"La Foy",45.217101,5.776335,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100488,1,"Haut-Meylan",45.217986,5.778288,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100489,1,"Les Mûriers",45.21605,5.779468,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100504,1,"Xavier Jouvin",45.195599,5.730088,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100526,1,"Vassieux",45.14303,5.700022,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100529,1,"Vallier - Libération",45.178567,5.71577,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100530,1,"Alliés",45.173309,5.713999,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100531,1,"Louise Michel",45.170182,5.712905,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100533,1,"Le Rondeau",45.160243,5.709603,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100534,1,"Pompidou",45.119862,5.69267,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100535,1,"Pont Rouge",45.118576,5.69319,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100536,1,"Carrière",45.114715,5.690185,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100537,1,"Pré de l'Orme",45.110388,5.688551,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100538,1,"Le Rochefort",45.101644,5.685342,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100539,1,"Saint-Ange",45.096833,5.683667,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100540,1,"Rond-Point de l'Europe",45.093034,5.683642,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100541,1,"L'Oriel",45.089841,5.683587,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100542,1,"République",45.086836,5.683155,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100544,1,"Les Garcins",45.06315,5.669345,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100545,1,"Uriol",45.060635,5.668559,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100548,1,"Le Masségu",45.051944,5.674644,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100549,1,"La Valonne",45.050307,5.671294,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100550,1,"La Cime du Bourg",45.048119,5.667391,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100553,1,"Le Rif",45.032299,5.655462,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100554,1,"L'Usine Nord",45.030001,5.652812,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100555,1,"Le Pont de Genevrey",45.028522,5.651708,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100556,1,"Les Saillants",45.024629,5.645802,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100589,1,"Grand Galet",45.136788,5.70813,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100590,1,"Gay Lussac",45.13645,5.712142,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100591,1,"Denis Papin",45.138866,5.71323,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100593,1,"Le Village",45.141326,5.720567,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100594,1,"Paul Langevin",45.143463,5.723127,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100595,1,"Guy Mocquet",45.145477,5.725846,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100597,1,"L'Iliade",45.147438,5.746208,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100598,1,"Les Javaux",45.149794,5.749827,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100610,1,"L'Ovalie",45.209763,5.666934,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100611,1,"Le Gua",45.209714,5.664371,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100613,1,"Trefforine",45.204097,5.665244,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100614,1,"Pré Fleury",45.201451,5.667913,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100617,1,"Gérard Philipe",45.196473,5.677165,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100618,1,"Rue des Alpes",45.198316,5.681453,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100619,1,"Marat",45.199094,5.682812,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100620,1,"Les Écrins",45.197503,5.68632,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100621,1,"Jules Guesde",45.1979,5.688687,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100622,1,"Place du Marché Cachin",45.195593,5.690827,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100623,1,"Rue Pasteur",45.19433,5.694189,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100624,1,"Curie - Vercors",45.191812,5.694992,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100627,1,"Bouchayer - Hôtel de Ville",45.181177,5.694451,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100628,1,"Murailles",45.178439,5.692096,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100631,1,"Village",45.168195,5.678864,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100653,1,"Mairie",45.272923,5.613024,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100654,1,"Eglise",45.272425,5.615252,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100657,1,"Perrières",45.261524,5.624922,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100660,1,"Le Ruisset",45.249639,5.631656,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100662,1,"Saint-Jean",45.2383,5.635092,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100664,1,"Praparis - Les Roses",45.232011,5.645231,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100665,1,"Praparis Usine",45.229249,5.649704,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100666,1,"Les Engenières",45.219598,5.660224,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100669,1,"Ancienne Mairie",45.192719,5.67806,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100670,1,"Jean Prévost",45.189552,5.682759,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100671,1,"Karl Marx",45.186516,5.687287,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100672,1,"Bergès - Vercors",45.184243,5.691899,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100673,1,"Les Iles",45.184166,5.697127,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100674,1,"Seyssinet-Pariset Hôtel de Ville",45.181089,5.697068,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100695,1,"Le Prisme",45.166363,5.690374,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100696,1,"Parc François Mitterrand",45.162869,5.685302,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100697,1,"L'Agneau",45.161301,5.682955,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100698,1,"Beauvoir",45.158988,5.683248,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100699,1,"Place du Village",45.156283,5.681278,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100700,1,"L'Argoud",45.153864,5.679975,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100701,1,"Pré Nouvel",45.15139,5.680321,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100702,1,"Garlettes",45.147476,5.677733,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100703,1,"Cimetière des Garlettes",45.145245,5.676785,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100704,1,"Col de Comboire",45.140193,5.673146,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100705,1,"La Croix Rolland",45.129422,5.671217,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100706,1,"Furonnières",45.125974,5.671201,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100707,1,"Mairie",45.120257,5.673275,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100708,1,"La Ronzy",45.120835,5.675929,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100709,1,"La Chièze",45.121177,5.682512,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100714,1,"Poste",45.121102,5.672143,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100723,1,"Ancienne Gare",45.159779,5.681781,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100727,1,"Presqu'île",45.205775,5.699505,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100728,1,"Louis Gagnière",45.214666,5.686905,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100729,1,"Cap des H'",45.217319,5.681273,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100730,1,"Les Glairaux",45.218526,5.679908,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100731,1,"Belledonne",45.222675,5.684004,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100735,1,"Pont de Vence",45.23038,5.6835,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100736,1,"Visancourt",45.233175,5.686064,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100739,1,"Eglise",45.240156,5.683847,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100744,1,"Karben",45.242986,5.671184,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100745,1,"CAP 38",45.240182,5.666185,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100746,1,"La Biolle - Gare",45.23522,5.669532,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100747,1,"Saint Egrève Gare",45.235808,5.671542,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100767,1,"Gares",45.190932,5.715414,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100768,1,"Victor Hugo",45.19056,5.724892,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100769,1,"Place Cymaise",45.194996,5.729173,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100770,1,"Maurice Gignoux",45.194207,5.725253,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100771,1,"Musée Dauphinois",45.194972,5.72614,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100772,1,"Veyret",45.194833,5.724795,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100773,1,"Le Rabot",45.195046,5.72342,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100778,1,"Grand Sablon",45.199017,5.749591,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100779,1,"Vercors",45.200654,5.751105,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100780,1,"Doyen Gosse",45.201353,5.75297,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100781,1,"Pascal",45.199304,5.755493,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100782,1,"La Carronnerie Basse",45.201166,5.758753,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100784,1,"Les Léchères",45.205215,5.758582,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100786,1,"Mairie",45.209735,5.752721,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100787,1,"Mairie-Condamine",45.211177,5.750924,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100788,1,"Charles Pajon",45.213201,5.752437,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100789,1,"Monument",45.216436,5.753834,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100790,1,"La Corne d'Or",45.21813,5.760512,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100791,1,"Village",45.219924,5.762789,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100792,1,"Providence",45.221014,5.764512,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100793,1,"Rochasson",45.22379,5.76792,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100794,1,"La Garenne",45.227412,5.765921,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100810,1,"La Détourbe",45.223481,5.793955,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100811,1,"La Treille",45.226386,5.791092,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100812,1,"Saint-Victor",45.228595,5.78928,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100813,1,"Montlivet",45.229983,5.789812,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100814,1,"Pré Catlan",45.230024,5.78733,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100815,1,"Gué du Boutet",45.228694,5.784635,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100816,1,"Croix de Cibeins",45.225997,5.7842,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100817,1,"Croix des Rameaux",45.22374,5.781767,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100818,1,"Champlars",45.220226,5.779816,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100819,1,"Les Jaillières",45.220638,5.789168,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100820,1,"Saint-Mury",45.219472,5.786126,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100821,1,"Bérivière",45.218818,5.783117,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100823,1,"Saint-Jean Bosco",45.212818,5.773051,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100824,1,"Chaumetière",45.212404,5.769828,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100825,1,"Revirée - Sayettes",45.212199,5.767277,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100826,1,"Lionel Terray",45.210354,5.767128,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100827,1,"Champ Rochas",45.207443,5.759025,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100849,1,"La Faurie",45.175419,5.794671,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100850,1,"La Frênaie",45.173378,5.795142,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100851,1,"La Serralière",45.172828,5.798061,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100852,1,"La Ville",45.174091,5.802621,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100853,1,"Mairie",45.171654,5.804824,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100854,1,"La Chênaie",45.170509,5.807464,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100855,1,"Cul Froid",45.170069,5.80865,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100856,1,"Le Perroud",45.172453,5.81036,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100857,1,"Sous-Perroud",45.170297,5.810773,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100858,1,"Le Reynet",45.169897,5.813217,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100859,1,"Le Chapon",45.170958,5.821851,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100873,1,"Col de l'Arzelier",44.990229,5.595105,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100874,1,"L'Arzelier",44.996922,5.602577,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100875,1,"Prélenfrey Eglise",45.016934,5.613295,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100876,1,"Les Faures",45.014388,5.613538,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100877,1,"La Charrière",45.012771,5.615867,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100879,1,"Miribel",44.974663,5.620996,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100880,1,"Bayanne",44.979961,5.622348,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100881,1,"Cassoulet",44.982289,5.623094,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100882,1,"La Pierre",44.989164,5.621977,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100883,1,"Saint-Barthélémy",44.999862,5.62946,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100884,1,"Les Rossets",45.016566,5.64083,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100885,1,"Mairie",45.022109,5.644573,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100897,1,"Rue du Nord",45.054326,5.675371,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100898,1,"Rue de L'Espère",45.054807,5.677622,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100899,1,"Z.A. des Speyres",45.056904,5.681838,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100900,1,"Allée des Granges",45.057848,5.684778,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100901,1,"Mas Garni",45.060781,5.688194,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100902,1,"Le Petit Brion",45.062252,5.690176,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100903,1,"Jacobins",45.064419,5.691313,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100904,1,"La Plaine",45.066856,5.69213,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100905,1,"Ecole Reymure",45.069079,5.693344,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100906,1,"Rue de la Sacristie",45.070809,5.69538,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100907,1,"Le Refuge",45.074617,5.699587,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100908,1,"Le Gros Chêne",45.078322,5.702098,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100909,1,"Malissolles",45.08396,5.704701,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100910,1,"Fontagneux",45.087285,5.707864,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100911,1,"Rozatière",45.087064,5.702411,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100912,1,"Balzac",45.087276,5.694213,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100913,1,"Berliognière",45.089984,5.692495,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100914,1,"Notre-Dame de Lachal",45.087355,5.690112,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100934,1,"La Giraudière",45.095031,5.679821,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100935,1,"Cité Scolaire",45.09496,5.674402,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100936,1,"Les Tisserands",45.092027,5.674633,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100937,1,"Les Platanes",45.089301,5.675461,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100938,1,"La Pommeraie",45.087648,5.672057,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100939,1,"Chambord",45.085184,5.667144,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100940,1,"Le Meinget",45.079728,5.662967,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100941,1,"Le Poulat",45.074441,5.660021,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100942,1,"La Bascule",45.071811,5.654959,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100943,1,"La Garde",45.070491,5.650624,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100944,1,"La Croix",45.070553,5.644936,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100945,1,"Place",45.071667,5.642601,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100958,1,"Charrières",45.115988,5.688876,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100959,1,"Saint-Michel",45.112032,5.684518,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100960,1,"Les Bauches",45.110831,5.678647,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100961,1,"Pavillon",45.108397,5.674255,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100962,1,"Risset",45.107235,5.673092,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100963,1,"Bel Horizon",45.108663,5.671995,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100964,1,"La Bâtie",45.111844,5.671931,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100965,1,"La Chênaie",45.114189,5.672682,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100966,1,"Grands Champs",45.116831,5.673451,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100967,1,"Les Eglantiers",45.11816,5.672971,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100968,1,"Boulodrome-Ecole",45.119621,5.668989,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100969,1,"Les Roses",45.117913,5.667386,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100970,1,"Les Pampres",45.115365,5.665886,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100971,1,"Les Taillis",45.113154,5.665766,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100972,1,"Bellevue",45.111956,5.665479,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100973,1,"La Chanteraie",45.110119,5.665483,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100974,1,"Val d'Allières",45.106901,5.665316,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100993,1,"Fond Ratel",45.12215,5.689349,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100994,1,"Mémorial",45.122649,5.69102,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100995,1,"La Balmette",45.125213,5.688109,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100996,1,"Le Coteau",45.126696,5.686698,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100997,1,"Les Cimentiers",45.130473,5.683567,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100998,1,"Moucherotte",45.125788,5.680958,,1,,Europe/Paris,,OGR, +OGR:SA:CTP100999,1,"Les Pérouses",45.124567,5.679371,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101000,1,"Les Fayards",45.122096,5.675611,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101001,1,"Malhivert",45.132541,5.666876,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101002,1,"Chemin de l'Abbé",45.135214,5.668423,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101003,1,"Cossey",45.138946,5.670058,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101017,1,"Cimetière",45.169669,5.683459,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101018,1,"Percevalière",45.170161,5.686823,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101019,1,"Tuilerie",45.169064,5.692154,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101021,1,"Marc Sangnier",45.16486,5.689151,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101022,1,"La Baume",45.159495,5.689693,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101023,1,"Le Bournet",45.157648,5.689747,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101024,1,"Hameau des Chaumières",45.154697,5.689378,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101025,1,"Les Nalettes",45.152116,5.688968,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101028,1,"Le Priou",45.156979,5.678801,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101029,1,"Le Parlement",45.15864,5.674472,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101030,1,"Les Côtes",45.156061,5.671301,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101031,1,"Le Cellier",45.161486,5.673535,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101044,1,"Les Côtes",45.210065,5.647489,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101045,1,"Beaurevoir",45.210095,5.648612,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101046,1,"Vieux donjon",45.211384,5.649772,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101047,1,"Mollard - Pichon",45.213608,5.65249,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101048,1,"Rivoire de la Dame",45.214928,5.65169,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101049,1,"Les Parcs",45.216575,5.652005,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101050,1,"Les Chênes",45.21809,5.653433,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101051,1,"Blanc Fontaine",45.210641,5.656249,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101060,1,"Châtelard",45.273533,5.60481,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101061,1,"Chemin du Parc",45.274494,5.606129,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101062,1,"Les Marronniers",45.276357,5.611047,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101063,1,"Petit Châtelard",45.276082,5.612127,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101064,1,"Le Béryl",45.274801,5.612829,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101071,1,"Les Bonnais",45.239875,5.673023,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101073,1,"San Marino - Barrage",45.236747,5.659735,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101078,1,"Rue du Maupas",45.245903,5.62949,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101079,1,"Village",45.247261,5.62711,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101080,1,"Parc des Biches",45.250229,5.627847,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101083,1,"Vence EcoParc",45.227734,5.668458,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101084,1,"Complexe Sportif",45.211418,5.672715,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101085,1,"François Blumet",45.209659,5.677003,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101086,1,"Maladière",45.207877,5.679464,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101087,1,"Chamechaude",45.205455,5.683259,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101092,1,"Collège Chartreuse",45.217838,5.690961,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101093,1,"Hôtel de Ville",45.20815,5.707023,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101094,1,"Conrad Kilian",45.206519,5.708835,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101095,1,"Résistance",45.203408,5.714326,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101096,1,"16 Août 1944",45.204124,5.7158,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101097,1,"Clos Saint Martin",45.205032,5.714026,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101098,1,"Clos Gérard Gruel",45.209682,5.710517,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101099,1,"Canet",45.210669,5.706093,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101100,1,"L'Hermitage",45.214796,5.704483,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101101,1,"Narbonne",45.214053,5.709985,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101102,1,"La Banchardière",45.217141,5.712803,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101103,1,"La Rivoire",45.21994,5.715145,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101104,1,"La Buisseratière",45.223085,5.717778,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101105,1,"Gatinet",45.2249,5.719143,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101106,1,"Ripaillère",45.22682,5.720784,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101107,1,"Col de Clémencières",45.234197,5.725642,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101123,1,"Levetière",45.226089,5.725411,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101124,1,"Lachal",45.222249,5.724673,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101125,1,"Mas Caché",45.217702,5.721871,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101126,1,"Le Gomma",45.215129,5.719141,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101127,1,"Hôtel Bellevue",45.211533,5.71775,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101128,1,"Les Combes",45.209635,5.718004,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101129,1,"Le Reposoir",45.209448,5.716439,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101130,1,"Les Fauvettes",45.205213,5.718259,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101131,1,"Place du Village",45.203651,5.716932,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101132,1,"Casamaures - Village",45.198993,5.717993,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101143,1,"Planfay Haut",45.27994,5.718874,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101144,1,"Planfay Combaleyre",45.276444,5.717141,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101145,1,"Planfay Bas",45.278695,5.71365,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101146,1,"Pomarey",45.282952,5.712168,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101147,1,"Pomarey Bas",45.280454,5.709606,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101148,1,"Savoyardière",45.278332,5.708329,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101149,1,"Pont du Gua",45.276086,5.707274,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101150,1,"Village",45.263349,5.69973,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101151,1,"Le Mollard",45.258224,5.695914,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101152,1,"Garcinière",45.251639,5.69488,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101153,1,"Bellevue",45.244057,5.692443,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101154,1,"Champy",45.239914,5.691581,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101155,1,"Chemin vert",45.236595,5.692362,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101156,1,"Collège Barnave",45.230968,5.691754,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101171,1,"La Cime de Mont-Quaix",45.257327,5.746089,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101172,1,"Fontvieille",45.259201,5.744904,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101173,1,"Mont-Quaix",45.255752,5.742844,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101174,1,"Bas de Mont-Quaix",45.252878,5.741737,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101175,1,"Sous La Frette",45.250363,5.735323,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101176,1,"Roudier",45.248117,5.731642,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101177,1,"Le Charpen",45.24256,5.725478,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101178,1,"Centre Aéré",45.247526,5.722951,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101179,1,"Le Château",45.252165,5.722023,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101180,1,"Ecoles",45.253462,5.719923,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101181,1,"Place",45.25319,5.717318,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101182,1,"Bas de Petesset",45.256348,5.710588,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101184,1,"Le Barbet",45.258006,5.708152,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101185,1,"Le Bas de Quaix",45.253987,5.701419,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101198,1,"Col de Porte",45.289819,5.767043,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101199,1,"Pont du Croz",45.276688,5.757469,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101200,1,"Le Village",45.273394,5.758605,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101201,1,"Les Jonquilles",45.264674,5.774197,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101202,1,"Churut",45.264745,5.777427,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101203,1,"Place",45.25948,5.777063,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101204,1,"Le Gouillat",45.254739,5.771108,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101205,1,"Saint-Eynard",45.249262,5.765339,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101206,1,"Col de Vence",45.234007,5.751067,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101207,1,"Batonnière",45.227332,5.75876,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101210,1,"Le Gorget",45.215322,5.748457,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101211,1,"Saint-Germain",45.210153,5.744085,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101212,1,"Le Rozan",45.209256,5.742258,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101228,1,"Chemin de Namière",45.272316,5.678532,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101229,1,"Colavière",45.272372,5.676061,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101230,1,"Fochaire",45.271584,5.67442,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101231,1,"La Rivoire",45.268735,5.668536,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101232,1,"Le Fontanil Cimetière",45.258831,5.66352,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101233,1,"Le Fontanil Mairie",45.255587,5.666295,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101234,1,"Rafour",45.248989,5.666924,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101249,1,"Eglise",45.110752,5.787241,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101250,1,"Mont Rolland",45.115277,5.784052,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101251,1,"L'Olympe",45.117845,5.782851,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101252,1,"Le Replat",45.120984,5.781462,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101253,1,"Les Métraux",45.121639,5.785045,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101254,1,"Le Coin",45.127985,5.785107,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101255,1,"Souveyron",45.130611,5.778249,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101256,1,"L'Enclos",45.133301,5.774841,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101257,1,"Tavernolles",45.136285,5.770369,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101258,1,"Le Verderet",45.146972,5.754336,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101261,1,"Général de Gaulle",45.162398,5.744021,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101274,1,"le village",45.094966,5.764822,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101276,1,"Les Simianes",45.116118,5.757781,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101277,1,"Les Thévenets",45.115714,5.751016,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101278,1,"Le Plâtre",45.117754,5.747899,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101279,1,"Place du Laca",45.113789,5.728633,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101281,1,"Alpexpo",45.154491,5.733788,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101282,1,"Polesud - Alpexpo",45.157154,5.733837,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101291,1,"Le Bourg",45.138709,5.79299,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101292,1,"Le Chollet",45.140249,5.783642,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101293,1,"Les Angonnes",45.139932,5.776167,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101294,1,"Beaulieu",45.138554,5.77355,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101295,1,"Collège des Saules",45.161428,5.743058,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101303,1,"Lagay",45.140803,5.749974,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101304,1,"Mairie",45.137704,5.747711,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101305,1,"Les Vignes",45.138088,5.745737,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101306,1,"La Maritelle",45.141618,5.741348,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101310,1,"Bresson Lagay",45.140929,5.749982,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101312,1,"La Combe",45.174133,5.789917,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101313,1,"Les Terrats",45.168793,5.793586,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101317,1,"Les Alberges",45.131482,5.819033,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101318,1,"Les Guichards",45.127591,5.81678,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101319,1,"Ecole Jules Bruant",45.121723,5.814403,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101320,1,"Vaulnaveys-Le-Haut Le Village",45.119335,5.810986,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101321,1,"Marchandises",45.114829,5.807665,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101322,1,"Maison Blanche",45.111811,5.805124,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101323,1,"Vaulnaveys-Le-Bas Le Village",45.105493,5.80042,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101324,1,"Chemin des Cottes",45.093976,5.793258,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101326,1,"Le Pont du Mas",45.086647,5.788827,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101327,1,"Les Corniers",45.081763,5.787581,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101328,1,"Les Allas",45.075469,5.778601,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101435,1,"Charles Michels",45.193855,5.68009,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101436,1,"Hôtel de Ville - La Source",45.191343,5.687273,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101438,1,"Les Fontainades - Le Vog",45.189087,5.698443,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101439,1,"Berriat-Le Magasin",45.188725,5.706724,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101440,1,"Saint-Bruno",45.188336,5.713423,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101442,1,"Alsace-Lorraine",45.18946,5.719972,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101444,1,"Hubert Dubedout - Maison du Tourisme",45.190199,5.728218,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101448,1,"Albert 1er de Belgique",45.181684,5.73167,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101449,1,"Mounier",45.178997,5.731786,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101450,1,"MC2: Maison de la Culture",45.173464,5.731957,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101451,1,"Malherbe",45.16937,5.732165,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101452,1,"La Bruyère",45.166348,5.731179,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101453,1,"Arlequin",45.163587,5.730475,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101456,1,"Les Granges",45.156961,5.727806,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101457,1,"Surieux",45.158455,5.721916,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101458,1,"Essarts - La Butte",45.155885,5.719087,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101459,1,"Gare",45.153033,5.718419,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101493,1,"CEA - Cambridge",45.202163,5.704313,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101495,1,"Palais de Justice",45.191189,5.711686,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101496,1,"Sainte-Claire - Les Halles",45.191457,5.730675,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101498,1,"Ile Verte",45.197249,5.73676,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101500,1,"Michallon",45.200283,5.745326,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101503,1,"Les Taillées - Universités",45.192239,5.757867,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101504,1,"Gabriel Fauré",45.192279,5.764305,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101507,1,"Mayencin - Champ Roman",45.184563,5.779105,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101509,1,"Plaine des Sports",45.187615,5.784544,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101519,1,"Notre-Dame - Musée",45.193611,5.732068,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101521,1,"Palais de Justice - Gare",45.191232,5.711765,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101526,1,"Mas des Iles",45.167632,5.694333,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101527,1,"Grand Pré",45.172102,5.69426,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101528,1,"Fauconnière",45.176509,5.694271,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101530,1,"Vallier - Catane",45.180064,5.706224,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101533,1,"Foch - Ferrié",45.180801,5.722564,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101539,1,"Hector Berlioz - Universités",45.191088,5.758806,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101556,1,"Cité Jean Macé",45.199959,5.7105,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101557,1,"Arago",45.197094,5.711739,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101558,1,"Emile Gueymard",45.195014,5.71351,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101559,1,"Félix Viallet",45.190731,5.718471,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101560,1,"Docteur Mazet",45.191388,5.72258,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101565,1,"Sablons",45.196779,5.752994,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101569,1,"Le Brêt",45.205898,5.771744,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101570,1,"Piscine des Buclos",45.208883,5.77538,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101571,1,"Mairie",45.209282,5.7785,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101572,1,"Granier",45.210265,5.784536,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101573,1,"Malacher",45.211217,5.787219,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101574,1,"Les Béalières",45.211532,5.790703,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101575,1,"Maupertuis",45.212852,5.797193,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101583,1,"Carronnerie - Ile d'Amour",45.201166,5.758753,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101600,1,"Clos Dominique",45.135466,5.70127,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101603,1,"Irène Joliot-Curie",45.127418,5.698557,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101604,1,"Marcelline",45.125527,5.697947,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101605,1,"Pont-de-Claix Mairie",45.122879,5.697697,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101617,1,"Christophe Turc",45.161367,5.724142,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101618,1,"Village Olympique",45.164107,5.724042,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101619,1,"Vigny",45.167441,5.723379,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101623,1,"Marceau - Jardin des Vallons",45.182451,5.722168,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101634,1,"Mallifaud",45.180329,5.735075,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101635,1,"Bajatière",45.178135,5.736138,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101636,1,"Ponsard",45.175969,5.737202,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101637,1,"Paul Claudel",45.173362,5.738506,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101638,1,"Teisseire",45.170913,5.739706,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101639,1,"Jean Racine",45.166825,5.741747,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101642,1,"Val d'Eybens",45.159054,5.745585,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101643,1,"Le Bourg",45.147808,5.751155,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101653,1,"Pierre Sémard",45.181282,5.757121,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101654,1,"Edouard Vaillant",45.179053,5.754934,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101656,1,"Saint-Augustin",45.178268,5.74591,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101659,1,"Louis Jouvet",45.169993,5.737116,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101661,1,"Flaubert - Clos d'Or",45.17049,5.727906,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101662,1,"Stalingrad-Alliés",45.17188,5.723955,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101663,1,"Marché d'Intérêt National",45.173537,5.718048,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101665,1,"Rhin et Danube",45.174971,5.705215,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101667,1,"Cémoi",45.18495,5.70573,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101669,1,"Esclangon",45.19158,5.706502,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101676,1,"Lys Rouge",45.173044,5.710571,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101689,1,"8 mai 1945",45.171053,5.756822,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101690,1,"Zella Melhis",45.167067,5.753535,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101691,1,"Chopin",45.166051,5.751423,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101692,1,"La Châtelière",45.162172,5.749034,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101694,1,"Rondeau",45.160355,5.693728,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101695,1,"Grand Pré - Centre Sud",45.170837,5.694565,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101696,1,"La Plaine",45.172595,5.696886,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101697,1,"Beau Site",45.175915,5.696959,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101698,1,"L'Arche",45.178164,5.697019,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101702,1,"Charmettes",45.197402,5.693547,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101703,1,"Saint-Eynard",45.201131,5.690207,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101704,1,"La Sure",45.202632,5.686003,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101706,1,"Martyrs - Résistance",45.208105,5.696614,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101725,1,"Parc Jo Blanchon",45.175129,5.757367,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101734,1,"Esplanade Centre",45.195662,5.716784,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101845,1,"La Pinéa - St Robert",45.235651,5.675488,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101848,1,"Fiancey - Prédieu",45.22314,5.68863,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101849,1,"Néron",45.21782,5.69334,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101850,1,"Horloge",45.213627,5.698848,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101891,1,"Gavanière",45.241263,5.681656,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101892,1,"Rocher d'Escalade",45.243771,5.679199,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101895,1,"Ancienne Mairie",45.217946,5.779314,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101897,1,"La Chiaise",45.261172,5.69831,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101898,1,"Chemin Fiancey",45.228644,5.691713,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101902,1,"Napoléon - Souveyron",45.131075,5.776999,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101904,1,"Clos Jouvin",45.094617,5.744169,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101905,1,"Le Vernet Croix",45.096505,5.740213,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101906,1,"Les Charbonnaux",45.100676,5.742416,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101907,1,"Maupertuis",45.105537,5.746363,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101908,1,"Les Chaberts",45.107573,5.749504,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101909,1,"Sud Galaxie",45.1501,5.724842,,1,,Europe/Paris,,OGR, +OGR:SA:CTP101917,1,"Avenue de la République",45.142787,5.735886,,1,,Europe/Paris,,OGR, +OGR:SA:CTP102964,1,"Clinique du Dauphiné",45.161792,5.674132,,1,,Europe/Paris,,OGR, +OGR:SA:CTP103013,1,"Route de Saint-Egrève",45.254881,5.704796,,1,,Europe/Paris,,OGR, +OGR:SA:CTP103016,1,"ZI des Iles",45.13853,5.694488,,1,,Europe/Paris,,OGR, +OGR:SA:CTP103017,1,"120 Toises",45.136254,5.694961,,1,,Europe/Paris,,OGR, +OGR:SA:CTP103019,1,"Pré au crêt",45.144051,5.740097,,1,,Europe/Paris,,OGR, +OGR:SA:CTP103022,1,"Le Cret",45.143768,5.748541,,1,,Europe/Paris,,OGR, +OGR:SA:CTP103023,1,"Commanderie",45.143173,5.733491,,1,,Europe/Paris,,OGR, +OGR:SA:CTP103024,1,"Stade",45.143504,5.729428,,1,,Europe/Paris,,OGR, +OGR:SA:CTP103028,1,"Navis",45.156019,5.708203,,1,,Europe/Paris,,OGR, +OGR:SA:CTP103029,1,"Ecureuil",45.142548,5.703685,,1,,Europe/Paris,,OGR, +OGR:SA:CTP103034,1,"Centre du graphisme",45.141855,5.718159,,1,,Europe/Paris,,OGR, +OGR:SA:CTP103165,1,"Les Géants",45.161217,5.740071,,1,,Europe/Paris,,OGR, +OGR:SA:CTP103166,1,"Les Saules",45.16196,5.741823,,1,,Europe/Paris,,OGR, +OGR:SA:CTP103169,1,"Marianne",45.134945,5.692911,,1,,Europe/Paris,,OGR, +OGR:SA:CTP103320,1,"Docteur Martin",45.187372,5.727969,,1,,Europe/Paris,,OGR, +OGR:SA:CTP103322,1,"Colonel Dumont",45.181504,5.721946,,1,,Europe/Paris,,OGR, +OGR:SA:CTP103389,1,"Oxford",45.209543,5.702162,,1,,Europe/Paris,,OGR, +OGR:SA:CTP103390,1,"ZI Saint-Martin-le-Vinoux",45.212923,5.692067,,1,,Europe/Paris,,OGR, +OGR:SA:CTP103393,1,"Téléphérique",45.192948,5.725657,,1,,Europe/Paris,,OGR, +OGR:SA:CTP103394,1,"Place de Bérulle",45.193879,5.729233,,1,,Europe/Paris,,OGR, +OGR:SA:CTP103395,1,"Les Puis",45.17174,5.816748,,1,,Europe/Paris,,OGR, +OGR:SA:CTP103397,1,"Rue de la Lune",45.155513,5.672221,,1,,Europe/Paris,,OGR, +OGR:SA:CTP103399,1,"Grange Haute",45.245632,5.694756,,1,,Europe/Paris,,OGR, +OGR:SA:CTP103401,1,"ZA La Plaine",45.068299,5.723202,,1,,Europe/Paris,,OGR, +OGR:SA:CTP103402,1,"La Melle",45.07071,5.727245,,1,,Europe/Paris,,OGR, +OGR:SA:CTP103403,1,"Marcel Paul",45.07748,5.73175,,1,,Europe/Paris,,OGR, +OGR:SA:CTP103404,1,"Le Pavillon",45.080003,5.734642,,1,,Europe/Paris,,OGR, +OGR:SA:CTP103405,1,"Salle Emile Zola",45.082578,5.733771,,1,,Europe/Paris,,OGR, +OGR:SA:CTP103406,1,"Léo Lagrange",45.084495,5.734783,,1,,Europe/Paris,,OGR, +OGR:SA:CTP103407,1,"Espace Navarre",45.08675,5.730534,,1,,Europe/Paris,,OGR, +OGR:SA:CTP103410,1,"Parc Vöhringen",45.078878,5.7694,,1,,Europe/Paris,,OGR, +OGR:SA:CTP103412,1,"Vénaria",45.081773,5.771708,,1,,Europe/Paris,,OGR, +OGR:SA:CTP103413,1,"Camping",45.085691,5.771214,,1,,Europe/Paris,,OGR, +OGR:SA:CTP103414,1,"Ecoles Joliot-Curie",45.083999,5.775102,,1,,Europe/Paris,,OGR, +OIA:SA:CTP10001,1,"Pont De Maubec",45.583174,5.268225,,1,,Europe/Paris,,OIA, +OIA:SA:CTP10004,1,"Le Meynier",45.575409,5.268867,,1,,Europe/Paris,,OIA, +OIA:SA:CTP10022,1,"Champ De Mars",45.590461,5.280473,,1,,Europe/Paris,,OIA, +OIA:SA:CTP10026,1,"Clairs Espaces",45.58569,5.267759,,1,,Europe/Paris,,OIA, +OIA:SA:CTP10028,1,"Clairs Espaces",45.585387,5.261481,,1,,Europe/Paris,,OIA, +OIA:SA:CTP10037,1,"Montbernier",45.602927,5.302057,,1,,Europe/Paris,,OIA, +OIA:SA:CTP10049,1,"Caserne Pompiers",45.588365,5.312888,,1,,Europe/Paris,,OIA, +OIA:SA:CTP10059,1,"Collège Pré Bénit",45.59132,5.2889,,1,,Europe/Paris,,OIA, +OIA:SA:CTP10069,1,"Lavaizin Cafe",45.58526,5.324135,,1,,Europe/Paris,,OIA, +OIA:SA:CTP10073,1,"Usine Schwarzenbach",45.578656,5.306502,,1,,Europe/Paris,,OIA, +OIA:SA:CTP10078,1,"La Cite Rose",45.58362,5.308301,,1,,Europe/Paris,,OIA, +OIA:SA:CTP10082,1,"Lavaizin Parking",45.585102,5.32471,,1,,Europe/Paris,,OIA, +OIA:SA:CTP10090,1,"La Poterie",45.57909,5.331356,,1,,Europe/Paris,,OIA, +OIA:SA:CTP10096,1,"Pont De L'Agny",45.564338,5.303357,,1,,Europe/Paris,,OIA, +OIA:SA:CTP10106,1,"Ferme Couilloud",45.578518,5.331158,,1,,Europe/Paris,,OIA, +OIA:SA:CTP10110,1,"Dauphiné Savoie",45.584296,5.287229,,1,,Europe/Paris,,OIA, +OIA:SA:CTP10116,1,"Route Du Lac Clair",45.600077,5.364057,,1,,Europe/Paris,,OIA, +OIA:SA:CTP10142,1,"Chatonnay Abribus",45.587567,5.361436,,1,,Europe/Paris,,OIA, +OIA:SA:CTP10144,1,"Chatonnay Abribus",45.588596,5.358359,,1,,Europe/Paris,,OIA, +OIA:SA:CTP10146,1,"Maison Astier",45.593577,5.355752,,1,,Europe/Paris,,OIA, +OIA:SA:CTP10156,1,"Route Des Envers",45.595817,5.360097,,1,,Europe/Paris,,OIA, +OIA:SA:CTP10162,1,"Le Terrat",45.593321,5.381127,,1,,Europe/Paris,,OIA, +OIA:SA:CTP10166,1,"Cafe Saugey",45.587796,5.378765,,1,,Europe/Paris,,OIA, +OIA:SA:CTP10170,1,"Montceau Place",45.587632,5.374604,,1,,Europe/Paris,,OIA, +OIA:SA:CTP10174,1,"Les Traineaux",45.599409,5.368111,,1,,Europe/Paris,,OIA, +OIA:SA:CTP101929,1,"La Barrière",45.587868,5.246505,,1,,Europe/Paris,,OIA, +OIA:SA:CTP101931,1,"La Maladière",45.586037,5.255517,,1,,Europe/Paris,,OIA, +OIA:SA:CTP102047,1,"Rivetière Château d'eau",45.550265,5.341818,,1,,Europe/Paris,,OIA, +OIA:SA:CTP103175,1,"Clairs espaces",45.586149,5.263071,,1,,Europe/Paris,,OIA, +OIA:SA:CTP103181,1,"Le Franchisson",45.511356,5.328648,,1,,Europe/Paris,,OIA, +OIA:SA:CTP103183,1,"GARE",45.637765,5.09926,,1,,Europe/Paris,,OIA, +OIA:SA:CTP103388,1,"Ecole Primaire",45.627106,5.310906,,1,,Europe/Paris,,OIA, +OIA:SA:CTP10548,1,"Verpillière Mairie",45.632699,5.1465,,1,,Europe/Paris,,OIA, +OIA:SA:CTP10554,1,"Libération",45.64008,5.13872,,1,,Europe/Paris,,OIA, +OIA:SA:CTP10561,1,"Mas De La Raz",45.618469,5.137477,,1,,Europe/Paris,,OIA, +OIA:SA:CTP10580,1,"Collège Anne Frank",45.633842,5.141697,,1,,Europe/Paris,,OIA, +OIA:SA:CTP10583,1,"Ces Anne Franck",45.634786,5.139942,,1,,Europe/Paris,,OIA, +OIA:SA:CTP10588,1,"Centre Tennistique",45.62123,5.14112,,1,,Europe/Paris,,OIA, +OIA:SA:CTP10593,1,"Z.1. Bd De La Noiree Cote Anjou",45.643447,5.10508,,1,,Europe/Paris,,OIA, +OIA:SA:CTP10595,1,"Z.2. Rue Du Ruisseau",45.643552,5.105021,,1,,Europe/Paris,,OIA, +OIA:SA:CTP10599,1,"Riante Plaine",45.63585,5.13565,,1,,Europe/Paris,,OIA, +OIA:SA:CTP10604,1,"Externat Ste-Marie",45.6284,5.15128,,1,,Europe/Paris,,OIA, +OIA:SA:CTP10606,1,"La Verpillière Giraud Gare Sncf",45.6284,5.15128,,1,,Europe/Paris,,OIA, +OIA:SA:CTP10609,1,"Le Bourg",45.613127,5.152123,,1,,Europe/Paris,,OIA, +OIA:SA:CTP10618,1,"Z.1. D75",45.651879,5.11787,,1,,Europe/Paris,,OIA, +OIA:SA:CTP10624,1,"Le Rafo",45.617449,5.1564,,1,,Europe/Paris,,OIA, +OIA:SA:CTP10632,1,"St Quentin Gare",45.637799,5.09917,,1,,Europe/Paris,,OIA, +OIA:SA:CTP10643,1,"Z.1. Rue D'Anjou",45.642019,5.106147,,1,,Europe/Paris,,OIA, +OIA:SA:CTP10680,1,"Place",45.61252,5.18133,,1,,Europe/Paris,,OIA, +OIA:SA:CTP10684,1,"Parc Techno Ouest",45.625323,5.163446,,1,,Europe/Paris,,OIA, +OIA:SA:CTP10707,1,"Coteaux De Chasse",45.61636,5.236058,,1,,Europe/Paris,,OIA, +OIA:SA:CTP10719,1,"Pré Pommier",45.612019,5.26423,,1,,Europe/Paris,,OIA, +OIA:SA:CTP10752,1,"St Martin-Lotissement",45.640631,5.298436,,1,,Europe/Paris,,OIA, +OIA:SA:CTP10784,1,"Demptezieu Place",45.617548,5.323376,,1,,Europe/Paris,,OIA, +OIA:SA:CTP10799,1,"Chapeze Ecole",45.614084,5.333847,,1,,Europe/Paris,,OIA, +OIA:SA:CTP11107,1,"Ecole",45.69152,5.130123,,1,,Europe/Paris,,OIA, +OIA:SA:CTP11108,1,"La Croix Pallin",45.691506,5.130422,,1,,Europe/Paris,,OIA, +OIA:SA:CTP11113,1,"L'Eperon",45.693115,5.133982,,1,,Europe/Paris,,OIA, +OIA:SA:CTP11121,1,"Satolas Pompiers",45.691807,5.128981,,1,,Europe/Paris,,OIA, +OIA:SA:CTP11134,1,"La Ruette",45.681663,5.111178,,1,,Europe/Paris,,OIA, +OIA:SA:CTP122,1,"La Croix",45.594489,5.219149,,1,,Europe/Paris,,OIA, +OIA:SA:CTP13039,1,"Vicat",45.60503,5.2168,,1,,Europe/Paris,,OIA, +OIA:SA:CTP13043,1,"Muguets",45.634626,5.108849,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14106,1,"Albizzias",45.604485,5.29752,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14108,1,"Barthélémy",45.615509,5.279746,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14109,1,"Belle Rive",45.595648,5.291069,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14112,1,"Belvédère",45.59663,5.291638,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14113,1,"Bernache",45.605767,5.302941,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14114,1,"Caisse D'Epargne",45.58885,5.28563,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14116,1,"Champ Du Pin",45.61117,5.27313,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14118,1,"Champ Fleuri",45.60805,5.263056,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14120,1,"Champagneux",45.602276,5.293734,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14121,1,"Champaret",45.585048,5.295557,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14123,1,"Champaret Moulin",45.587843,5.291612,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14125,1,"Charbonnières",45.614338,5.294423,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14128,1,"Charmilles",45.606816,5.266146,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14130,1,"Châtillon",45.573427,5.288358,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14131,1,"Claude Chary",45.585081,5.289225,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14137,1,"Ecole Pré-Bénit",45.592858,5.284461,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14139,1,"Ecole Jean Rostand",45.608514,5.269666,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14141,1,"Emile Zola",45.58833,5.27073,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14143,1,"Henri Barbusse",45.599776,5.266144,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14145,1,"Hôtel De Ville",45.593592,5.275408,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14147,1,"J. Strauss",45.604336,5.267501,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14150,1,"Jean Rostand",45.60672,5.270015,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14154,1,"La Rivoire",45.597761,5.287364,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14155,1,"La Serve",45.574894,5.285988,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14156,1,"La Tour",45.58628,5.29212,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14158,1,"Le Bois",45.575178,5.292272,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14160,1,"Le Loup",45.60291,5.294861,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14162,1,"Le Mas",45.595794,5.284079,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14163,1,"Le Plateau",45.599813,5.289744,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14164,1,"Le Rivet",45.583881,5.297161,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14166,1,"Les Sommes",45.578446,5.290908,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14167,1,"Libération",45.595099,5.273565,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14169,1,"Linné",45.61202,5.27083,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14171,1,"L'Oiselet",45.587644,5.264898,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14173,1,"Maison Blanche",45.58017,5.30007,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14175,1,"Maubec",45.571097,5.279055,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14176,1,"Médipôle Clinique",45.598313,5.245612,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14178,1,"Mozas Le Bas",45.614529,5.27543,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14180,1,"Mozas Le Haut",45.614038,5.280089,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14181,1,"Papin",45.58903,5.25618,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14183,1,"Pasteur",45.599522,5.270712,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14185,1,"Petit Mont",45.596306,5.29279,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14187,1,"Pierre Curie",45.5886,5.26767,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14189,1,"Piscine",45.591,5.28697,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14191,1,"Plan Bourgoin",45.578246,5.28109,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14192,1,"Pont De Jallieu",45.597202,5.274199,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14194,1,"Pré Bénit",45.592027,5.285262,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14199,1,"Square Du Parc",45.59227,5.28245,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14201,1,"Stade",45.58963,5.28638,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14203,1,"Temple Diederichs",45.59127,5.277471,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14205,1,"Tillaret",45.577232,5.293907,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14206,1,"Tonkin",45.59461,5.280861,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14211,1,"Victor Hugo",45.58605,5.28123,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14216,1,"Mollard",45.582176,5.189146,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14218,1,"Alicante",45.61835,5.247131,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14219,1,"Arthur Rimbaud",45.61475,5.24217,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14221,1,"Atlantide",45.62162,5.21232,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14223,1,"Centre Administratif",45.621317,5.230136,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14228,1,"Fauvettes",45.61983,5.21235,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14230,1,"Galoubier",45.599863,5.220147,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14231,1,"Grande Buissière",45.600558,5.223222,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14232,1,"Guillaume Apollinaire",45.616879,5.24213,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14234,1,"Gymnase St Hubert",45.622429,5.22268,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14238,1,"Le Lombard",45.611426,5.217046,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14239,1,"Le Temple",45.606663,5.211306,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14240,1,"Les Branches",45.61773,5.23263,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14242,1,"L'Isle D'Abeau Gare",45.60786,5.219705,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14243,1,"Mistral",45.61785,5.239343,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14244,1,"Pacifique",45.62227,5.21513,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14248,1,"Pasteur Vinci",45.603465,5.218039,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14250,1,"Pierre Plate",45.62112,5.21132,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14252,1,"Plantées",45.619497,5.217376,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14254,1,"Raspeig",45.619495,5.241841,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14255,1,"Rue De L'Hôtel De Ville",45.623065,5.228575,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14259,1,"Rue Du Lans",45.619261,5.221843,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14261,1,"Seigle",45.615707,5.200551,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14263,1,"St Germain",45.616448,5.209617,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14265,1,"Trois Vallons",45.60155,5.21897,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14267,1,"Boussieu",45.578311,5.303849,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14268,1,"Croisement St-Pierre",45.597668,5.381583,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14269,1,"Charretons",45.621046,5.121125,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14271,1,"Cochet",45.62331,5.118813,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14273,1,"Furin",45.634527,5.106559,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14275,1,"Gargues",45.6179,5.12573,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14277,1,"La Lieuse",45.63095,5.1125,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14279,1,"Les Moines",45.6272,5.134058,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14280,1,"Monument Aux Morts",45.636166,5.102509,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14282,1,"Trois Communes",45.6252,5.1387,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14285,1,"Le Bourg Ecole Maternelle",45.62707,5.311645,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14286,1,"Ancienne Gare",45.613897,5.186104,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14288,1,"Belmont",45.612,5.195476,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14290,1,"Bizet",45.61672,5.17142,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14292,1,"Cime De Vaulx",45.615039,5.17285,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14294,1,"Lavoir",45.613005,5.176542,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14296,1,"Nautan",45.61203,5.18858,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14298,1,"Poste",45.614215,5.18208,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14300,1,"Artois",45.6407,5.13058,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14302,1,"Ecole Jean Moulin",45.63335,5.14033,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14304,1,"Les Loipes",45.63872,5.13242,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14306,1,"Picardie",45.64237,5.13525,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14307,1,"Piscine",45.63503,5.14487,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14308,1,"Rue Des Alpes",45.63123,5.1517,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14309,1,"Aillat",45.612097,5.159514,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14311,1,"Allée De La Halle",45.601544,5.173026,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14312,1,"Avenue Des Bois",45.62165,5.147914,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14314,1,"Berthet",45.60975,5.15237,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14316,1,"Chaussée Du Parc",45.60446,5.18338,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14317,1,"Christophe Colomb",45.599377,5.182854,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14318,1,"Clos Des Aubépines",45.60153,5.176065,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14319,1,"Clos Des Chênes",45.601448,5.177907,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14320,1,"Essarts",45.600797,5.180477,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14321,1,"Etang Neuf",45.605601,5.175505,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14322,1,"Fougères Le Haut",45.600026,5.18213,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14323,1,"Ginet Village",45.61238,5.1453,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14325,1,"Groupe Scolaire 22",45.602509,5.18559,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14326,1,"Gs 4 L'Etang",45.606679,5.15107,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14328,1,"Hudson",45.596728,5.177305,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14329,1,"Isatis",45.619013,5.143226,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14330,1,"Le Pont",45.614731,5.160979,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14332,1,"Lémand",45.61862,5.15898,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14334,1,"Les Armières",45.621967,5.145163,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14336,1,"Les Quatre Vents",45.608154,5.177092,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14337,1,"Muissiat",45.616668,5.162313,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14339,1,"Noyera",45.61023,5.14753,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14341,1,"Pasteur Maladière",45.60892,5.1494,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14343,1,"Pinède",45.608516,5.151478,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14345,1,"Place De L'Europe",45.60233,5.17157,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14347,1,"Quincias",45.597676,5.180714,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14348,1,"Rond Point De Muissiat",45.61842,5.16395,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14350,1,"Rue Du Bret",45.621165,5.150954,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14352,1,"Sécurité Sociale",45.610477,5.158963,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14354,1,"Sorbier",45.603048,5.14553,,1,,Europe/Paris,,OIA, +OIA:SA:CTP14360,1,"Vellein",45.614429,5.14403,,1,,Europe/Paris,,OIA, +OIA:SA:CTP15016,1,"Maladière Asimov",45.588899,5.252999,,1,,Europe/Paris,,OIA, +OIA:SA:CTP15018,1,"Maladière Branly",45.590562,5.246835,,1,,Europe/Paris,,OIA, +OIA:SA:CTP15020,1,"Médipôle Hôpital",45.598054,5.245156,,1,,Europe/Paris,,OIA, +OIA:SA:CTP15022,1,"Les Sayes",45.613035,5.232142,,1,,Europe/Paris,,OIA, +OIA:SA:CTP15057,1,"Les Guinguettes",45.624462,5.174239,,1,,Europe/Paris,,OIA, +OIA:SA:CTP15141,1,"Impasse du Lavoir",45.68881,5.115701,,1,,Europe/Paris,,OIA, +OIA:SA:CTP15142,1,"Impasse Du Lavoir",45.68881,5.115701,,1,,Europe/Paris,,OIA, +OIA:SA:CTP15199,1,"Louis Braille",45.592569,5.243536,,1,,Europe/Paris,,OIA, +OIA:SA:CTP15201,1,"Pôle Restauration",45.594162,5.240071,,1,,Europe/Paris,,OIA, +OIA:SA:CTP15205,1,"Dauphine",45.650483,5.099646,,1,,Europe/Paris,,OIA, +OIA:SA:CTP15218,1,"Ferronniere",45.585754,5.250315,,1,,Europe/Paris,,OIA, +OIA:SA:CTP15220,1,"Noyers",45.588239,5.24172,,1,,Europe/Paris,,OIA, +OIA:SA:CTP15223,1,"Les Moines",45.5926,5.21194,,1,,Europe/Paris,,OIA, +OIA:SA:CTP15226,1,"College Champoulant",45.60482,5.220587,,1,,Europe/Paris,,OIA, +OIA:SA:CTP15229,1,"Hall Des Sports",45.585927,5.322878,,1,,Europe/Paris,,OIA, +OIA:SA:CTP15231,1,"Hotel De Ville",45.58766,5.318928,,1,,Europe/Paris,,OIA, +OIA:SA:CTP15237,1,"Gramond",45.595338,5.230032,,1,,Europe/Paris,,OIA, +OIA:SA:CTP15239,1,"Pre-Chatelain",45.629614,5.293565,,1,,Europe/Paris,,OIA, +OIA:SA:CTP15241,1,"Truitelles",45.625265,5.315744,,1,,Europe/Paris,,OIA, +OIA:SA:CTP15306,1,"Montée De Langonne",45.634332,5.096546,,1,,Europe/Paris,,OIA, +OIA:SA:CTP15307,1,"Radiall",45.645741,5.10425,,1,,Europe/Paris,,OIA, +OIA:SA:CTP15308,1,"Z.1. Bd De La Noiree Cote Mc Do",45.643568,5.132418,,1,,Europe/Paris,,OIA, +OIA:SA:CTP15309,1,"Z.2. Bd De Tharabie",45.659768,5.102419,,1,,Europe/Paris,,OIA, +OIA:SA:CTP15310,1,"Z.2. Rue De Montmurier",45.665646,5.091219,,1,,Europe/Paris,,OIA, +OIA:SA:CTP15311,1,"Z.3 Rue Du Morellon",45.666185,5.091949,,1,,Europe/Paris,,OIA, +OIA:SA:CTP15312,1,"Z.3. Bd De Satolas",45.660667,5.103364,,1,,Europe/Paris,,OIA, +OIA:SA:CTP15313,1,"Z.3. Rue De Brisson",45.669664,5.129199,,1,,Europe/Paris,,OIA, +OIA:SA:CTP15314,1,"Z.4. D1006",45.649388,5.137224,,1,,Europe/Paris,,OIA, +OIA:SA:CTP15315,1,"Z.4. D124",45.644527,5.133405,,1,,Europe/Paris,,OIA, +OIA:SA:CTP15316,1,"Z.4. D124",45.669125,5.130401,,1,,Europe/Paris,,OIA, +OIA:SA:CTP15317,1,"Z.4. D75",45.652928,5.119286,,1,,Europe/Paris,,OIA, +OIA:SA:CTP15318,1,"Z.4. Rue Des Garinnes",45.649239,5.126238,,1,,Europe/Paris,,OIA, +OIA:SA:CTP15319,1,"Parc Techno Est",45.624091,5.175468,,1,,Europe/Paris,,OIA, +OIA:SA:CTP15321,1,"Rue Condorcet",45.626884,5.169453,,1,,Europe/Paris,,OIA, +OIA:SA:CTP15323,1,"Cci Nord-Isere",45.627394,5.168338,,1,,Europe/Paris,,OIA, +OIA:SA:CTP15423,1,"Zone Commerciale",45.589944,5.238976,,1,,Europe/Paris,,OIA, +OIA:SA:CTP15475,1,"Vincent Scotto",45.602476,5.266854,,1,,Europe/Paris,,OIA, +OIA:SA:CTP15782,1,"Grand Tissage",45.590892,5.273295,,1,,Europe/Paris,,OIA, +OIA:SA:CTP15786,1,"Lot. Du stade",45.514668,5.32962,,1,,Europe/Paris,,OIA, +OIA:SA:CTP189,1,"Alsace Lorraine",45.585692,5.270455,,1,,Europe/Paris,,OIA, +OIA:SA:CTP192,1,"Place",45.548834,5.223599,,1,,Europe/Paris,,OIA, +OIA:SA:CTP9155,1,"Malassin",45.555735,5.214313,,1,,Europe/Paris,,OIA, +OIA:SA:CTP9171,1,"Colombier",45.548834,5.223599,,1,,Europe/Paris,,OIA, +OIA:SA:CTP9175,1,"Ecole",45.547231,5.224144,,1,,Europe/Paris,,OIA, +OIA:SA:CTP9182,1,"La Barre",45.55661,5.280429,,1,,Europe/Paris,,OIA, +OIA:SA:CTP9216,1,"Verrieres",45.533248,5.276593,,1,,Europe/Paris,,OIA, +OIA:SA:CTP9220,1,"Le Berthon",45.53965,5.28548,,1,,Europe/Paris,,OIA, +OIA:SA:CTP9227,1,"Ecole",45.562797,5.223466,,1,,Europe/Paris,,OIA, +OIA:SA:CTP9242,1,"Cimetiere",45.551336,5.233973,,1,,Europe/Paris,,OIA, +OIA:SA:CTP9244,1,"Chaletout",45.546191,5.282171,,1,,Europe/Paris,,OIA, +OIA:SA:CTP9251,1,"Les Revilles",45.539591,5.297071,,1,,Europe/Paris,,OIA, +OIA:SA:CTP9254,1,"Les Eparres Bourg",45.532788,5.291909,,1,,Europe/Paris,,OIA, +OIA:SA:CTP9265,1,"L'Orme",45.541179,5.305546,,1,,Europe/Paris,,OIA, +OIA:SA:CTP9270,1,"Ecole La Combe",45.532681,5.30787,,1,,Europe/Paris,,OIA, +OIA:SA:CTP9274,1,"Vers Nivolas",45.558843,5.290719,,1,,Europe/Paris,,OIA, +OIA:SA:CTP9281,1,"Le Zeret",45.534541,5.288628,,1,,Europe/Paris,,OIA, +OIA:SA:CTP9283,1,"Les Rivoires",45.53598,5.301199,,1,,Europe/Paris,,OIA, +OIA:SA:CTP9293,1,"Les Eynards",45.53907,5.289008,,1,,Europe/Paris,,OIA, +OIA:SA:CTP9305,1,"Bas Vermelle",45.560193,5.304211,,1,,Europe/Paris,,OIA, +OIA:SA:CTP9309,1,"Lycee St Marc",45.560193,5.304211,,1,,Europe/Paris,,OIA, +OIA:SA:CTP9324,1,"Les Curtets",45.549727,5.308951,,1,,Europe/Paris,,OIA, +OIA:SA:CTP9326,1,"Les Curtets",45.551744,5.307139,,1,,Europe/Paris,,OIA, +OIA:SA:CTP9332,1,"Place",45.52866,5.339035,,1,,Europe/Paris,,OIA, +OIA:SA:CTP9852,1,"Servenoble",45.607392,5.148214,,1,,Europe/Paris,,OIA, +OIA:SA:CTP9863,1,"Les Fougères",45.603449,5.169277,,1,,Europe/Paris,,OIA, +OIA:SA:CTP9871,1,"Le Moulin",45.588147,5.194673,,1,,Europe/Paris,,OIA, +OIA:SA:CTP9898,1,"Greenland",45.61125,5.17193,,1,,Europe/Paris,,OIA, +OIA:SA:CTP9904,1,"Médicis - Gare Sncf",45.584742,5.275832,,1,,Europe/Paris,,OIA, +OIA:SA:CTP9918,1,"Edouard Marion",45.586837,5.27075,,1,,Europe/Paris,,OIA, +OIA:SA:CTP9921,1,"Folatière",45.58923,5.28123,,1,,Europe/Paris,,OIA, +OIA:SA:CTP9934,1,"Espinassays",45.588003,5.246332,,1,,Europe/Paris,,OIA, +OIA:SA:CTP9936,1,"Montjay",45.588027,5.246235,,1,,Europe/Paris,,OIA, +OIA:SA:CTP9938,1,"Papillons",45.586344,5.255261,,1,,Europe/Paris,,OIA, +OIA:SA:CTP9944,1,"Le Sadiau",45.568046,5.265297,,1,,Europe/Paris,,OIA, +OIA:SA:CTP9950,1,"Jardin De Ville",45.582,5.27437,,1,,Europe/Paris,,OIA, +OIA:SA:CTP9953,1,"Lycée",45.587947,5.272992,,1,,Europe/Paris,,OIA, +OIA:SA:CTP9960,1,"La Grive",45.599146,5.231549,,1,,Europe/Paris,,OIA, +OIA:SA:CTP9964,1,"Chantereine",45.60482,5.27025,,1,,Europe/Paris,,OIA, +OIA:SA:CTP9975,1,"Barbusse",45.592527,5.270316,,1,,Europe/Paris,,OIA, +OIA:SA:CTP9976,1,"Vaucanson",45.592826,5.27061,,1,,Europe/Paris,,OIA, +OIA:SA:CTP9978,1,"La Combe Usine",45.570063,5.279521,,1,,Europe/Paris,,OIA, +OIA:SA:CTP9980,1,"La Combe Usine",45.573513,5.277853,,1,,Europe/Paris,,OIA, +OIA:SA:CTP9992,1,"Ladrière",45.589577,5.245741,,1,,Europe/Paris,,OIA, +OIA:SA:CTP9999,1,"Champfort",45.613368,5.289668,,1,,Europe/Paris,,OIA, +OIV:SA:CTP102994,1,"LA VIEILLE DARTAMAS",45.504326,4.904001,,1,,Europe/Paris,,OIV, +OIV:SA:CTP102995,1,"CHEMIN DES LIESSES",45.491514,4.905903,,1,,Europe/Paris,,OIV, +OIV:SA:CTP102996,1,"LOT.LA DARTAMAS LE B",45.509503,4.899036,,1,,Europe/Paris,,OIV, +OIV:SA:CTP103000,1,"SAINT AVOUR",45.502629,4.852656,,1,,Europe/Paris,,OIV, +OIV:SA:CTP103002,1,"SAINT IGNACE SCOLAIR",45.515388,4.908457,,1,,Europe/Paris,,OIV, +OIV:SA:CTP103003,1,"LE TRENTE",45.512421,4.864941,,1,,Europe/Paris,,OIV, +OIV:SA:CTP103005,1,"COLL BRASSENS PARKIN",45.528285,4.925983,,1,,Europe/Paris,,OIV, +OIV:SA:CTP103006,1,"MILLE CLUBS",45.511138,5.015986,,1,,Europe/Paris,,OIV, +OIV:SA:CTP103227,1,"LA ROLANDIERE",45.593307,4.994555,,1,,Europe/Paris,,OIV, +OIV:SA:CTP103229,1,"LE FANTON",45.50757,4.995942,,1,,Europe/Paris,,OIV, +OIV:SA:CTP103288,1,"LE STADE",45.613032,5.022276,,1,,Europe/Paris,,OIV, +OIV:SA:CTP103316,1,"ZI L ABBAYE VULCO",45.519465,4.922494,,1,,Europe/Paris,,OIV, +OIV:SA:CTP12054,1,"Z.A. DE MONPLAISIR",45.525049,4.921961,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13249,1,"CHAMBRE DE METIERS",45.518643,4.919914,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13251,1,"TEMPLE DE CYBELE",45.524747,4.876963,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13255,1,"LES CELESTES",45.524157,4.878043,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13352,1,"ZA CALOR",45.524306,4.920397,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13354,1,"FREREJEAN",45.523986,4.919308,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13491,1,"LOT CHATAIGNIERS",45.456388,4.9341,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13493,1,"CHALON MAIRIE",45.445583,4.93117,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13495,1,"AV. F. MITTERRAND",45.583214,4.797678,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13500,1,"BARBIERES 19 MARS",45.585535,4.798076,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13502,1,"BARBIERES MENDES FRA",45.584327,4.795982,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13503,1,"BOUCHARD TREMBAS",45.578469,4.827857,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13505,1,"CENTRE COMMERCIAL DE",45.575834,4.810674,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13507,1,"CHARNEVAUX FAURE",45.585475,4.789908,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13511,1,"CIMETIERE DE CHASSE",45.58375,4.802882,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13513,1,"CITE BERQUET",45.583513,4.791621,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13515,1,"ECOLE PRIMAIRE CHASS",45.580183,4.805271,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13517,1,"GENDARMERIE",45.573323,4.81518,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13519,1,"LE LOT SOULINS",45.583401,4.811551,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13521,1,"LE MOULIN",45.569897,4.818879,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13523,1,"LES 4 VENTS",45.58299,4.819898,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13525,1,"LES ESPINASSES",45.583339,4.797804,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13527,1,"CHASSE MAIRIE",45.578551,4.808029,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13529,1,"PLACE JULES FERRY",45.580227,4.805621,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13531,1,"QUARTIER CHATEAU",45.582436,4.798954,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13533,1,"QUARTIER GARE",45.581299,4.793895,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13535,1,"QUARTIER RHONE",45.577467,4.798666,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13537,1,"ROND POINT DE FLEVIE",45.586894,4.787263,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13539,1,"SAINT MARTIN",45.582706,4.813542,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13545,1,"ALPES",45.428285,4.847274,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13547,1,"LE BESON",45.422458,4.834266,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13549,1,"AUBERGE LA VALLEE",45.553204,4.874302,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13551,1,"ECOLE",45.585052,4.878476,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13553,1,"GARAGE",45.576773,4.880105,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13556,1,"LA BOUSSOLE",45.568017,4.861769,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13557,1,"LA BOUSSOLE RN7",45.566445,4.858397,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13559,1,"LA TOURMENTE",45.583546,4.885372,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13561,1,"LE BOIRON",45.581817,4.878923,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13564,1,"LE GRUYERE",45.569511,4.872625,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13566,1,"LES PINS GARAGE MOTO",45.582204,4.859335,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13567,1,"LES PINS RESTAURANT",45.578793,4.857799,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13569,1,"LES PINS CORNAVAN",45.583329,4.85969,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13571,1,"LES SERPAIZIERES",45.570229,4.878517,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13573,1,"MOULIN LEVEAU LOT",45.564686,4.870492,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13575,1,"PAUPHILE I",45.562315,4.861251,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13577,1,"PAUPHILE II",45.560939,4.861319,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13579,1,"PAUPHILE RN7",45.564347,4.859317,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13581,1,"PLACE",45.585578,4.878639,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13584,1,"THIERS",45.570194,4.869521,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13585,1,"COTES D AREY BOURG",45.456664,4.868039,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13587,1,"CABINET DENTAIRE",45.454674,4.866329,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13588,1,"COTES D AREY CHATEAU",45.45572,4.859448,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13590,1,"SAR SUZON",45.450854,4.871366,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13592,1,"AIGUEBELLE",45.505436,4.940226,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13594,1,"VILLAGE",45.516618,4.965445,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13597,1,"CHATEAU PLANTIER",45.498103,4.95468,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13598,1,"CHAUMONT CARREFOUR",45.502377,4.973251,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13600,1,"CHEZ MEUNIER",45.509788,4.925085,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13608,1,"ECOLE MATERNELLE EST",45.515921,4.962653,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13610,1,"ECOLE PRIMAIRE ESTRA",45.516794,4.962293,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13612,1,"GEMENS",45.511684,4.927431,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13616,1,"LA COUPE",45.499914,4.935229,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13618,1,"CRAZ LE SILO",45.509523,4.947127,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13620,1,"LE BERGUET",45.520252,4.925862,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13622,1,"LE COMBAT",45.503343,4.981559,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13624,1,"LE GRAND RUINAIS",45.50279,4.975745,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13626,1,"LE JANIN",45.501985,4.948064,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13630,1,"LE VIANNAIS",45.502345,4.967599,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13632,1,"LES 4 VENTS",45.493278,4.942128,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13634,1,"MAISON PUZIN JULIEN",45.504663,4.957386,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13636,1,"MAISON VINCENDON",45.508921,4.931235,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13638,1,"MAS DU GRAY",45.509191,4.973469,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13640,1,"MERLIERE",45.512372,4.942384,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13642,1,"MEUNIER D538",45.504478,4.924863,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13645,1,"REPUBLIQUE",45.507598,4.978972,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13646,1,"ROSIERE LES CEDRES",45.49058,4.94816,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13648,1,"TABOURETTE CHALET",45.515607,4.940875,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13651,1,"ZA DU ROCHER",45.51982,4.931515,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13654,1,"CHAMBOUD ROUSSEL",45.485804,4.955126,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13657,1,"CHANVILLARD",45.479391,4.99072,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13660,1,"CHAUMONT TRANSFORMAT",45.499277,4.974218,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13662,1,"CHAUMONT VILLAGE",45.499136,4.98197,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13664,1,"CHEZ DIDIER DUVERGER",45.48424,4.989105,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13666,1,"CHEZ DURIEUX",45.470423,5.021752,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13668,1,"CHEZ DUVERGER VOISIN",45.485723,4.969133,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13670,1,"CHEZ THIBAUD",45.469817,5.03321,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13672,1,"FERME RONJAT",45.484243,5.012451,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13674,1,"HAMEAU BAILLOUD",45.496504,4.963248,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13676,1,"LA COMBE DE VAUX",45.46977,5.018769,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13678,1,"LA CROIX",45.490487,4.997424,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13680,1,"LA GARDE",45.485131,4.999476,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13682,1,"LE BAILLOUD II",45.495214,4.963473,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13684,1,"LE BAILLOUD RD41",45.498178,4.961011,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13686,1,"LE BUSSIN",45.479183,5.028732,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13688,1,"LE GEMELAS",45.470587,5.023914,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13690,1,"LE MICHALET",45.478147,4.96975,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13692,1,"LE NOLLY",45.477294,5.022833,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13694,1,"LE PLAN",45.483478,5.023563,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13697,1,"LE PLAN 2",45.483147,5.022292,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13699,1,"LE PLAN 1",45.483935,5.027245,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13700,1,"LE RECOURT",45.477669,5.028231,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13702,1,"LE SABLE",45.483643,5.032001,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13704,1,"LE TRIEVE",45.480556,5.001227,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13708,1,"LE VOLLAND",45.481409,5.008527,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13710,1,"IMPASSE DU VOLLAND",45.480502,5.016233,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13712,1,"LES BRUYERES",45.477461,5.018269,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13714,1,"LES CREZ",45.495842,4.9908,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13716,1,"LIEU DIT CHEZ MONSIE",45.49793,4.973744,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13718,1,"MAISON GAMET",45.476531,4.96165,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13720,1,"MAISON LAURENCON",45.471668,4.964333,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13722,1,"MAS VOISIN D41",45.493202,4.974872,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13724,1,"RD41C LA COLLE",45.477444,4.992221,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13728,1,"SAINT MARCEL D41",45.470547,5.010615,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13730,1,"THIBAUD PONT",45.470935,5.033328,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13732,1,"AVENUE DU DAUPHINE",45.496174,4.908432,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13734,1,"PLACE DU 19 MARS 196",45.495779,4.907337,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13736,1,"BERARDIER PLACE",45.505799,4.909368,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13738,1,"CHEMIN MOURANT",45.489502,4.91256,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13740,1,"CHEZ MATTON",45.486165,4.914162,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13742,1,"COLLONGE D538",45.507618,4.906158,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13746,1,"GEDIMAT",45.510209,4.900473,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13754,1,"LA SCIERIE",45.480787,4.899267,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13756,1,"LA TOUR MONTLEANT",45.502976,4.904504,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13758,1,"LA VIEILLE EGLISE",45.488824,4.906889,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13760,1,"LE BRUT",45.476642,4.913471,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13763,1,"LE GRAND CHAMPS",45.502552,4.913359,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13767,1,"LE PELUT",45.485557,4.907071,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13768,1,"LE TELEGRAPHE",45.487145,4.894514,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13770,1,"LE TONKIN",45.5083,4.917728,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13774,1,"VOIE DE L EUROPE",45.500544,4.910705,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13776,1,"VOSSERE",45.497041,4.893153,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13778,1,"ILLINS",45.589862,4.940175,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13780,1,"PLACE",45.588463,4.9554,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13782,1,"CHALET CROISSETTES",45.587214,4.959788,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13784,1,"LES MOILLES",45.572972,4.957403,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13786,1,"ROUTE VILLENEUVE",45.589205,4.947709,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13788,1,"SAINT GERMAIN",45.585183,4.974321,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13791,1,"PONT TGV",45.472325,5.043261,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13797,1,"CANCANNE",45.533754,4.903646,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13799,1,"CHAMP DE COURSES",45.525555,4.925675,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13802,1,"FOYER DE CANCANNE",45.531371,4.901491,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13804,1,"LA REVOLEE",45.531001,4.923421,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13806,1,"L ABBAYE",45.521388,4.92154,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13808,1,"LE SAINT GEORGES",45.532216,4.910096,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13810,1,"LES BLEUETS",45.530645,4.909495,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13812,1,"LES FORGES",45.530633,4.905897,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13814,1,"LES GENETS",45.531626,4.906911,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13816,1,"LES GENTIANES",45.52748,4.918014,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13818,1,"LES MESANGES",45.527414,4.915734,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13820,1,"LES TANNERIES",45.533106,4.912607,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13822,1,"PLAN DES AURES",45.527831,4.92246,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13824,1,"CEN",45.468229,4.842436,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13828,1,"LA PLAINE",45.472873,4.83532,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13830,1,"LES JONCS PLUMASSE",45.465935,4.839706,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13832,1,"BARBETTES",45.462308,4.837268,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13834,1,"GRAVETAN",45.58331,4.982483,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13837,1,"ECOLE DE LA SOURCE",45.467642,4.943268,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13839,1,"BASSE ROSIERE",45.495427,4.930758,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13841,1,"BASSE ROSIERE GARENN",45.491088,4.93468,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13843,1,"BASSE ROSIERE SORDIE",45.48739,4.937636,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13845,1,"CARR CHEMIN MANIN",45.467638,4.950156,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13847,1,"CARR MOLLES RICHARDI",45.473687,4.951905,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13849,1,"CHEMIN DE COURSIN",45.47258,4.922719,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13851,1,"CHEMIN DE MALATRA",45.475296,4.920504,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13853,1,"DUVIN LA CROIX",45.482291,4.936117,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13855,1,"GRANGE",45.464418,4.927656,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13857,1,"LA BOURGEAT",45.468216,4.952869,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13859,1,"LES TERRES ROUGES",45.463416,4.929872,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13861,1,"MALATRA LE HAUT",45.478337,4.926601,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13863,1,"MALATRA LE MARCIAT",45.480641,4.92174,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13865,1,"MARMILLON ABRIBUS",45.475675,4.930223,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13867,1,"SAINT SORLIN PLACE",45.467711,4.941353,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13869,1,"PRIMARETTE SORTIE",45.472978,4.931188,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13871,1,"STADE MANIN",45.473245,4.942437,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13873,1,"AVANT LE FERRAILLEUR",45.559517,4.967968,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13875,1,"CROISEMENT BALLONNIE",45.543867,4.97048,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13877,1,"CROISEMENT CHAVRAY",45.543806,4.963254,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13879,1,"LE PALAIS",45.547489,4.972605,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13883,1,"EGLISE",45.562582,4.916079,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13885,1,"LE BIEF",45.566356,4.910193,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13887,1,"LE CHATEAU D EAU",45.561041,4.944805,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13889,1,"EGLISE",45.559457,4.845263,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13891,1,"LES 7 FONTAINES",45.556508,4.857837,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13893,1,"LES CANNES",45.560298,4.850964,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13895,1,"LES GARDIERES ZI SEY",45.55539,4.82822,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13897,1,"PAUPHILE",45.556088,4.861694,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13899,1,"ROCHE COULOURE",45.560482,4.837929,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13901,1,"TRANSPORT LABBEY",45.563488,4.83137,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13903,1,"ZI SEYSSUEL RESTAU",45.559471,4.823503,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13905,1,"ZI SEYSSUEL TUILER",45.551199,4.832505,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13907,1,"ABBE PIERRE CALES",45.511078,4.860434,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13909,1,"AGROTEC",45.545957,4.864511,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13911,1,"BD MAUPAS",45.53212,4.884154,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13913,1,"BEAUREGARD",45.518184,4.878878,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13915,1,"BEL AIR",45.517075,4.873481,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13917,1,"BURGONDES",45.520043,4.878521,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13919,1,"CLAUDE BERNARD",45.541234,4.856773,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13921,1,"CENTRE SOCIAL",45.540405,4.861801,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13924,1,"CHEMIN DE LA LOGE",45.519994,4.874163,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13926,1,"CHEMIN DES GRANDES V",45.536989,4.893913,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13928,1,"CITE JARDIN",45.540775,4.864759,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13933,1,"COLLEGE DE L ISLE",45.505637,4.851699,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13936,1,"COLLONGE",45.514005,4.903469,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13938,1,"COMTE ROLLAND",45.527341,4.897993,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13940,1,"COUPE JARRET",45.51172,4.873392,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13942,1,"COURS DE VERDUN",45.520033,4.870702,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13944,1,"CUVIERE",45.52905,4.878049,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13946,1,"ECOLE MAUPAS",45.529836,4.881987,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13948,1,"ESTRESSIN CENTRE COM",45.542289,4.85022,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13950,1,"ESTRESSIN ZI",45.542084,4.85471,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13952,1,"ETIENNE REY",45.536958,4.869509,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13956,1,"GARE ESTRESSIN",45.540284,4.867348,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13958,1,"GUETAL",45.51665,4.866253,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13960,1,"GUILLEMOTTES",45.537055,4.886272,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13964,1,"HAMEAU GUILLEMOTTES",45.536038,4.88778,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13966,1,"HERMITAGE",45.514229,4.872768,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13968,1,"HOPITAL LUCIEN HUSSE",45.534625,4.88044,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13971,1,"IME LA BATIE",45.535284,4.881554,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13972,1,"JEAN JAURES",45.53656,4.873627,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13974,1,"JEAN MONNET",45.514715,4.906715,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13976,1,"JEAN MOULIN",45.507974,4.859637,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13978,1,"JEU DE PAUME",45.527154,4.873263,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13980,1,"LA PASSARDIERE",45.517379,4.888579,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13982,1,"LA PETITE RENTE",45.514688,4.891114,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13984,1,"LA PYRAMIDE",45.516479,4.868853,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13986,1,"LA RAVAT",45.524153,4.891869,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13988,1,"LA RECLUSIERE",45.541786,4.868339,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13990,1,"LAFAYETTE",45.524764,4.889748,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13992,1,"LANCIERS",45.515109,4.864523,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13994,1,"LE PONT",45.529297,4.901642,,1,,Europe/Paris,,OIV, +OIV:SA:CTP13996,1,"LES CEDRES",45.516893,4.918752,,1,,Europe/Paris,,OIV, +OIV:SA:CTP14000,1,"LES CHARAVELLES",45.539152,4.871063,,1,,Europe/Paris,,OIV, +OIV:SA:CTP14002,1,"LES GRANDS PRES",45.516291,4.879627,,1,,Europe/Paris,,OIV, +OIV:SA:CTP14004,1,"LES HAMEAUX DE MALIS",45.514965,4.912824,,1,,Europe/Paris,,OIV, +OIV:SA:CTP14006,1,"LES HAUTS DE MALISSO",45.514985,4.911059,,1,,Europe/Paris,,OIV, +OIV:SA:CTP14008,1,"LES HAUTS DE VIENNE",45.513943,4.876497,,1,,Europe/Paris,,OIV, +OIV:SA:CTP14010,1,"LES PORTES DE LYON",45.533564,4.873336,,1,,Europe/Paris,,OIV, +OIV:SA:CTP14011,1,"LES TUPINIERES",45.523033,4.880932,,1,,Europe/Paris,,OIV, +OIV:SA:CTP14013,1,"LEVEAU ECOLE",45.549988,4.876875,,1,,Europe/Paris,,OIV, +OIV:SA:CTP14015,1,"L HORLOGE",45.514331,4.91751,,1,,Europe/Paris,,OIV, +OIV:SA:CTP14017,1,"L OCTROI",45.520344,4.884279,,1,,Europe/Paris,,OIV, +OIV:SA:CTP14019,1,"LOUIS REVOL",45.524851,4.888277,,1,,Europe/Paris,,OIV, +OIV:SA:CTP14021,1,"LYCEE GALILEE",45.504189,4.854787,,1,,Europe/Paris,,OIV, +OIV:SA:CTP14023,1,"MAISON D ENFANTS",45.534817,4.886448,,1,,Europe/Paris,,OIV, +OIV:SA:CTP14025,1,"MALISSOL CUISINE CEN",45.512702,4.917258,,1,,Europe/Paris,,OIV, +OIV:SA:CTP14027,1,"LA FERME",45.514721,4.915276,,1,,Europe/Paris,,OIV, +OIV:SA:CTP14029,1,"MALISSOL LA GERE",45.517841,4.921987,,1,,Europe/Paris,,OIV, +OIV:SA:CTP14034,1,"MALISSOL MAISON V. H",45.516027,4.911807,,1,,Europe/Paris,,OIV, +OIV:SA:CTP14035,1,"MICHEL SERVET",45.517921,4.869647,,1,,Europe/Paris,,OIV, +OIV:SA:CTP14037,1,"MONT SALOMON",45.536663,4.883086,,1,,Europe/Paris,,OIV, +OIV:SA:CTP14040,1,"NOTRE DAME DE L ISLE",45.503786,4.851296,,1,,Europe/Paris,,OIV, +OIV:SA:CTP14042,1,"PIERRE ET MARIE CURI",45.54128,4.862257,,1,,Europe/Paris,,OIV, +OIV:SA:CTP14045,1,"PARC RELAIS SUD",45.502155,4.84878,,1,,Europe/Paris,,OIV, +OIV:SA:CTP14046,1,"PASTEUR",45.535776,4.871444,,1,,Europe/Paris,,OIV, +OIV:SA:CTP14049,1,"PLACE D ARPOT",45.534858,4.874591,,1,,Europe/Paris,,OIV, +OIV:SA:CTP14050,1,"PLACE DRAPIERE",45.527935,4.879461,,1,,Europe/Paris,,OIV, +OIV:SA:CTP14052,1,"PORT AU PRINCE",45.537708,4.867818,,1,,Europe/Paris,,OIV, +OIV:SA:CTP14054,1,"QUARTIER ST GERMAIN",45.513489,4.862782,,1,,Europe/Paris,,OIV, +OIV:SA:CTP14056,1,"RABELAIS",45.527069,4.882442,,1,,Europe/Paris,,OIV, +OIV:SA:CTP14058,1,"ROBESPIERRE",45.509423,4.859043,,1,,Europe/Paris,,OIV, +OIV:SA:CTP14060,1,"ROCHE CLAIRE",45.513418,4.898968,,1,,Europe/Paris,,OIV, +OIV:SA:CTP14062,1,"ROND POINT MALISSOL",45.519007,4.918553,,1,,Europe/Paris,,OIV, +OIV:SA:CTP14064,1,"SAINT BENOIT",45.512777,4.896557,,1,,Europe/Paris,,OIV, +OIV:SA:CTP14066,1,"SAINT IGNACE",45.515057,4.909705,,1,,Europe/Paris,,OIV, +OIV:SA:CTP14068,1,"SAVOIE",45.54052,4.858231,,1,,Europe/Paris,,OIV, +OIV:SA:CTP14070,1,"SAINT MAURICE",45.52472,4.871395,,1,,Europe/Paris,,OIV, +OIV:SA:CTP14074,1,"STADE MALISSOL",45.517078,4.908166,,1,,Europe/Paris,,OIV, +OIV:SA:CTP14077,1,"TUILERIE",45.530697,4.874078,,1,,Europe/Paris,,OIV, +OIV:SA:CTP14079,1,"URGENCES HOPITAL",45.532935,4.87927,,1,,Europe/Paris,,OIV, +OIV:SA:CTP14080,1,"VICTOR FAUGIER",45.525623,4.884695,,1,,Europe/Paris,,OIV, +OIV:SA:CTP14082,1,"LA CROIX",45.586425,4.907502,,1,,Europe/Paris,,OIV, +OIV:SA:CTP14084,1,"VILLETTE VILLAGE",45.587533,4.914504,,1,,Europe/Paris,,OIV, +OIV:SA:CTP14086,1,"LES DAUPHINES",45.585438,4.893984,,1,,Europe/Paris,,OIV, +OIV:SA:CTP14087,1,"LES DAUPHINES",45.586136,4.897095,,1,,Europe/Paris,,OIV, +OIV:SA:CTP14092,1,"LEP CASANOVA",45.594032,4.766326,,1,,Europe/Paris,,OIV, +OIV:SA:CTP14094,1,"LEP ARAGON PICASSO",45.601178,4.761066,,1,,Europe/Paris,,OIV, +OIV:SA:CTP14096,1,"NOTRE DAME",45.590759,4.770487,,1,,Europe/Paris,,OIV, +OIV:SA:CTP14949,1,"G. BRASSENS",45.58522,4.813128,,1,,Europe/Paris,,OIV, +OIV:SA:CTP14951,1,"LES MURIERS",45.510524,4.955041,,1,,Europe/Paris,,OIV, +OIV:SA:CTP14953,1,"CLAIR DE LUNE",45.530429,4.91956,,1,,Europe/Paris,,OIV, +OIV:SA:CTP14955,1,"GRANGE HAUTE",45.549972,4.900097,,1,,Europe/Paris,,OIV, +OIV:SA:CTP14957,1,"DIDEROT",45.532639,4.874299,,1,,Europe/Paris,,OIV, +OIV:SA:CTP15129,1,"BASCULE CHEMIN DE LA",45.506557,4.893194,,1,,Europe/Paris,,OIV, +OIV:SA:CTP15130,1,"CHEMIN MASSIER",45.545525,4.879502,,1,,Europe/Paris,,OIV, +OIV:SA:CTP15179,1,"LE BUSSIN II",45.483499,5.033611,,1,,Europe/Paris,,OIV, +OIV:SA:CTP15441,1,"CHEMIN DE LA ROSIERE",45.491676,4.949868,,1,,Europe/Paris,,OIV, +OIV:SA:CTP15442,1,"CLE DES CHAMPS",45.494678,5.042327,,1,,Europe/Paris,,OIV, +OIV:SA:CTP15443,1,"CENTRE COMMERCIAL ES",45.57405,4.811557,,1,,Europe/Paris,,OIV, +OIV:SA:CTP15444,1,"HAMEAU DE THIERS",45.571863,4.867787,,1,,Europe/Paris,,OIV, +OIV:SA:CTP15446,1,"LE CLOS DE LA GARE",45.494718,5.046123,,1,,Europe/Paris,,OIV, +OIV:SA:CTP15447,1,"LES JARDINS DE LA DE",45.493864,5.044907,,1,,Europe/Paris,,OIV, +OIV:SA:CTP15448,1,"GRAVIER ROUGE",45.543304,4.896106,,1,,Europe/Paris,,OIV, +OIV:SA:CTP15449,1,"CHAMP DE BRAS",45.539992,4.879973,,1,,Europe/Paris,,OIV, +OIV:SA:CTP15457,1,"ZI ISLON",45.583815,4.784946,,1,,Europe/Paris,,OIV, +OIV:SA:CTP15918,1,"CHATEAU PLANTIER D41",45.500048,4.954486,,1,,Europe/Paris,,OIV, +OIV:SA:CTP15919,1,"PLACE DE LA SAINT VI",45.492737,4.945679,,1,,Europe/Paris,,OIV, +OIV:SA:CTP15970,1,"HAMEAU DE CHARLEMAGN",45.521154,4.901619,,1,,Europe/Paris,,OIV, +OIV:SA:CTP6646,1,"PLACE",45.406959,4.868065,,1,,Europe/Paris,,OIV, +OIV:SA:CTP6650,1,"LES MEUILLES",45.406471,4.857001,,1,,Europe/Paris,,OIV, +OIV:SA:CTP6654,1,"BASCULE",45.406431,4.862377,,1,,Europe/Paris,,OIV, +OIV:SA:CTP6666,1,"CENTRE",45.429465,4.83854,,1,,Europe/Paris,,OIV, +OIV:SA:CTP6677,1,"LE CUILLERY",45.413115,4.841134,,1,,Europe/Paris,,OIV, +OIV:SA:CTP67,1,"LE PIALLIER",45.480311,5.016546,,1,,Europe/Paris,,OIV, +OIV:SA:CTP70,1,"MOULIN DE LA GARDE",45.482589,4.989995,,1,,Europe/Paris,,OIV, +OIV:SA:CTP7569,1,"LE CIVAS",45.472133,4.973342,,1,,Europe/Paris,,OIV, +OIV:SA:CTP7585,1,"MAIRIE",45.473865,4.997592,,1,,Europe/Paris,,OIV, +OIV:SA:CTP7597,1,"LE PINET",45.463783,5.00167,,1,,Europe/Paris,,OIV, +OIV:SA:CTP7604,1,"LA MARTINIERE",45.463559,4.983094,,1,,Europe/Paris,,OIV, +OIV:SA:CTP7608,1,"CHEZ PISTOLET",45.457591,4.998844,,1,,Europe/Paris,,OIV, +OIV:SA:CTP7616,1,"LE RAJAT 1",45.466981,5.079673,,1,,Europe/Paris,,OIV, +OIV:SA:CTP7622,1,"LE RAJAT 2",45.467859,5.065632,,1,,Europe/Paris,,OIV, +OIV:SA:CTP7626,1,"PLACE",45.470206,5.054654,,1,,Europe/Paris,,OIV, +OIV:SA:CTP7648,1,"LE MOULIN",45.467049,5.089028,,1,,Europe/Paris,,OIV, +OIV:SA:CTP7656,1,"QUARTIER EGLISE",45.470912,5.104061,,1,,Europe/Paris,,OIV, +OIV:SA:CTP7663,1,"PONT DU RECOURS",45.467171,5.106923,,1,,Europe/Paris,,OIV, +OIV:SA:CTP8264,1,"CHAMP DE MARS",45.521498,4.871101,,1,,Europe/Paris,,OIV, +OIV:SA:CTP8267,1,"JARDIN DE VILLE",45.522046,4.870415,,1,,Europe/Paris,,OIV, +OIV:SA:CTP8269,1,"GARE ROUTIERE ALLOBR",45.520533,4.870561,,1,,Europe/Paris,,OIV, +OIV:SA:CTP8272,1,"GARE DE VIENNE",45.521162,4.873979,,1,,Europe/Paris,,OIV, +OIV:SA:CTP8276,1,"SNCF BRILLIER",45.521752,4.872642,,1,,Europe/Paris,,OIV, +OIV:SA:CTP8288,1,"PLACE PICHAT",45.526137,4.872469,,1,,Europe/Paris,,OIV, +OIV:SA:CTP8293,1,"TABOURETTE ROUTIER",45.515721,4.936575,,1,,Europe/Paris,,OIV, +OIV:SA:CTP8299,1,"LE PINAY",45.515942,4.944729,,1,,Europe/Paris,,OIV, +OIV:SA:CTP8303,1,"LOGIS NEUF",45.512435,4.955828,,1,,Europe/Paris,,OIV, +OIV:SA:CTP8309,1,"LE CHAMBOUD",45.480724,4.961002,,1,,Europe/Paris,,OIV, +OIV:SA:CTP8319,1,"LE COLAS",45.479633,4.98901,,1,,Europe/Paris,,OIV, +OIV:SA:CTP8323,1,"LA MARAUQUE",45.479689,4.989319,,1,,Europe/Paris,,OIV, +OIV:SA:CTP8326,1,"LE BRACHET",45.477805,4.979324,,1,,Europe/Paris,,OIV, +OIV:SA:CTP8328,1,"LE BURON",45.477941,4.97741,,1,,Europe/Paris,,OIV, +OIV:SA:CTP8332,1,"LE PLAN NORD",45.514519,4.98086,,1,,Europe/Paris,,OIV, +OIV:SA:CTP8336,1,"BOIS BALAY",45.516914,4.958892,,1,,Europe/Paris,,OIV, +OIV:SA:CTP8340,1,"PORTE DES ALPES",45.507056,4.981932,,1,,Europe/Paris,,OIV, +OIV:SA:CTP8344,1,"LES DAMES",45.514987,4.975167,,1,,Europe/Paris,,OIV, +OIV:SA:CTP8348,1,"LE MICHALIN",45.515868,4.969605,,1,,Europe/Paris,,OIV, +OIV:SA:CTP8352,1,"GARAGE BERAUD",45.510067,4.967246,,1,,Europe/Paris,,OIV, +OIV:SA:CTP8356,1,"CHEZ ROUX",45.520667,4.990884,,1,,Europe/Paris,,OIV, +OIV:SA:CTP8361,1,"LES GRANGES",45.510977,5.005012,,1,,Europe/Paris,,OIV, +OIV:SA:CTP8367,1,"LE QUINQUELIN",45.512934,4.988123,,1,,Europe/Paris,,OIV, +OIV:SA:CTP8382,1,"NARBORIE",45.499036,5.033314,,1,,Europe/Paris,,OIV, +OIV:SA:CTP8388,1,"LA DETOURBE",45.495066,5.040828,,1,,Europe/Paris,,OIV, +OIV:SA:CTP8392,1,"CHATEAU GRILLET",45.506608,5.02379,,1,,Europe/Paris,,OIV, +OIV:SA:CTP8482,1,"VILLENEUVE PLACE",45.474272,5.102925,,1,,Europe/Paris,,OIV, +OIV:SA:CTP8947,1,"LYCEE E.FITZGERALD",45.530127,4.865439,,1,,Europe/Paris,,OIV, +OIV:SA:CTP8951,1,"BEAUREGARD",45.56641,4.824796,,1,,Europe/Paris,,OIV, +OIV:SA:CTP8955,1,"BON ACCUEIL",45.543456,4.866537,,1,,Europe/Paris,,OIV, +OIV:SA:CTP8961,1,"COLLEGE GRANGE",45.547436,4.863568,,1,,Europe/Paris,,OIV, +OIV:SA:CTP8967,1,"PONSARD",45.526628,4.878164,,1,,Europe/Paris,,OIV, +OIV:SA:CTP8969,1,"NICOLAS CHORIER",45.526865,4.878173,,1,,Europe/Paris,,OIV, +OIV:SA:CTP8971,1,"CHORIER PONSARD",45.527008,4.878516,,1,,Europe/Paris,,OIV, +OIV:SA:CTP8974,1,"VILLAGE",45.558615,4.918036,,1,,Europe/Paris,,OIV, +OIV:SA:CTP8979,1,"LES JARDINS DE NEVES",45.559895,4.923557,,1,,Europe/Paris,,OIV, +OIV:SA:CTP8984,1,"GRANGE BASSE",45.544511,4.897011,,1,,Europe/Paris,,OIV, +OIV:SA:CTP8988,1,"MAIRIE",45.529956,4.912309,,1,,Europe/Paris,,OIV, +OIV:SA:CTP8992,1,"LE GRAND CHENE",45.556377,4.903321,,1,,Europe/Paris,,OIV, +OIV:SA:CTP8996,1,"GRANGE",45.546968,4.898543,,1,,Europe/Paris,,OIV, +OIV:SA:CTP9000,1,"LA VEGA",45.529769,4.902423,,1,,Europe/Paris,,OIV, +OIV:SA:CTP9004,1,"RONCEVEAUX",45.525734,4.907191,,1,,Europe/Paris,,OIV, +OIV:SA:CTP9007,1,"CHARLEMAGNE",45.526791,4.90364,,1,,Europe/Paris,,OIV, +OIV:SA:CTP9010,1,"COLLEGE BRASSENS",45.527536,4.925881,,1,,Europe/Paris,,OIV, +OIV:SA:CTP9018,1,"PLACE",45.553703,5.005222,,1,,Europe/Paris,,OIV, +OIV:SA:CTP9024,1,"SUBTUER",45.552625,4.982617,,1,,Europe/Paris,,OIV, +OIV:SA:CTP9026,1,"BARATON",45.548872,4.962184,,1,,Europe/Paris,,OIV, +OIV:SA:CTP9030,1,"PEAGE STATION AGIP",45.563738,4.992614,,1,,Europe/Paris,,OIV, +OIV:SA:CTP9038,1,"AVANT LE PALAIS",45.550731,4.975231,,1,,Europe/Paris,,OIV, +OIV:SA:CTP9040,1,"SOUS COTE",45.56166,4.981506,,1,,Europe/Paris,,OIV, +OIV:SA:CTP9046,1,"PERRIER LE CLOS",45.557815,4.96272,,1,,Europe/Paris,,OIV, +OIV:SA:CTP9050,1,"LE PEAGE",45.564274,4.998507,,1,,Europe/Paris,,OIV, +OIV:SA:CTP9697,1,"LE PONT",45.590534,5.002893,,1,,Europe/Paris,,OIV, +OIV:SA:CTP9701,1,"MAIRIE",45.612285,5.014604,,1,,Europe/Paris,,OIV, +OIV:SA:CTP9705,1,"LE CORBET",45.603977,4.998868,,1,,Europe/Paris,,OIV, +OIV:SA:CTP9711,1,"SAINT JUST VILLAGE",45.585633,4.998006,,1,,Europe/Paris,,OIV, +OIV:SA:CTP9715,1,"LES VIGNES",45.597851,5.005283,,1,,Europe/Paris,,OIV, +OIV:SA:CTP9722,1,"LE CHANA",45.590275,4.992688,,1,,Europe/Paris,,OIV, +OIV:SA:CTP9729,1,"LE CHENE",45.609141,5.007285,,1,,Europe/Paris,,OIV, +OIV:SA:CTP9739,1,"MARTINIERE",45.601221,4.996315,,1,,Europe/Paris,,OIV, +OIV:SA:CTP9743,1,"LE LARPIN",45.588625,4.991703,,1,,Europe/Paris,,OIV, +OIV:SA:CTP9757,1,"LE SULON",45.609004,5.006958,,1,,Europe/Paris,,OIV, +OIV:SA:CTP9777,1,"LE FAYET PLACE",45.607331,5.037948,,1,,Europe/Paris,,OIV, +OIV:SA:CTP9783,1,"CARNEVAL",45.610043,5.029489,,1,,Europe/Paris,,OIV, +OIV:SA:CTP99,1,"LA BASCULE",45.512145,5.014553,,1,,Europe/Paris,,OIV, +OM1:SA:CTP1,1,"METRO BOUGAINVILLE",43.321973,5.371115,,1,,Europe/Paris,,OM1, +OM1:SA:CTP101,1,"CASANOVA DE LESSEPS",43.321862,5.374731,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1032,1,"LE MERLAN",43.349424,5.407688,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1035,1,"CHEMIN DES GRIVES",43.351741,5.415367,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1036,1,"LISSANDRE",43.356634,5.415038,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1037,1,"PRES CANADEL",43.358262,5.415347,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1038,1,"GARDIETTE PAGODE",43.359636,5.41351,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1039,1,"LA BATARELLE ETOILE",43.359727,5.410323,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1043,1,"L’ESCALLET",43.352771,5.415829,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1047,1,"MERLAN GUYNEMER",43.346979,5.407989,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1048,1,"MERLAN PAQUERETTES",43.345235,5.408277,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1049,1,"MERLAN TOURELLE",43.341569,5.407218,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1050,1,"LES LAURIERS",43.328462,5.413674,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1051,1,"MERIMEE COROT",43.327864,5.39679,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1052,1,"MONET FLORIDA",43.326606,5.394543,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1053,1,"MONET SAINT BARTHELEMY",43.323674,5.392982,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1054,1,"VILLECROZE BOUGIE",43.321878,5.391926,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1055,1,"VILLECROZE MARRONNIERS",43.319668,5.391858,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1056,1,"5 AVENUES BUREL",43.316975,5.38946,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1058,1,"CANEBIERE BOURSE",43.296833,5.377038,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1059,1,"MERLAN TROMPETTE",43.332334,5.406896,,1,,Europe/Paris,,OM1, +OM1:SA:CTP106,1,"MORETTI GIBBES",43.324184,5.383537,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1060,1,"MERLAN VERDON",43.333744,5.407576,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1061,1,"MERLAN BRISSAC",43.336104,5.407431,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1062,1,"MERLAN VILLAGE",43.338497,5.407707,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1063,1,"SAINT JEROME IUT",43.341331,5.40893,,1,,Europe/Paris,,OM1, +OM1:SA:CTP107,1,"MORETTI ROSIERS",43.323402,5.38607,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1070,1,"VALDONNE HOPITAL LAVERAN",43.325939,5.416667,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1071,1,"SAINT MITRE",43.342582,5.419274,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1072,1,"SAINT MITRE VILLAGE",43.343708,5.417338,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1073,1,"SAINT MITRE PARTY",43.346806,5.41594,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1074,1,"LA BATARELLE BASSE",43.350216,5.415248,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1076,1,"LISSANDRE ECOLES",43.356113,5.410277,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1077,1,"LA BATARELLE",43.355696,5.408209,,1,,Europe/Paris,,OM1, +OM1:SA:CTP108,1,"MORETTI SAINTE MARTHE",43.323575,5.388235,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1083,1,"METRO ROND POINT DU PRADO",43.271902,5.390226,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1084,1,"SAINT GINIEZ",43.270185,5.386702,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1085,1,"PARADIS RIVET",43.27288,5.385553,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1086,1,"PARADIS LORD DUVEEN",43.275619,5.384381,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1087,1,"PARADIS WULFRAM PUGET",43.277412,5.383627,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1088,1,"PLACE DELIBES",43.279091,5.383397,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1089,1,"PERIER PRADO",43.279724,5.386446,,1,,Europe/Paris,,OM1, +OM1:SA:CTP109,1,"LA MARINE",43.326312,5.388097,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1090,1,"PRADO DUPRE",43.281745,5.386233,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1091,1,"CASTELLANE",43.285162,5.38431,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1098,1,"LIBERATION ESPERANDIEU",43.301802,5.393997,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1099,1,"CINQ AVENUES CHARTREUX",43.303009,5.397398,,1,,Europe/Paris,,OM1, +OM1:SA:CTP110,1,"BERTRANDON",43.328386,5.387924,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1100,1,"PLACE BROSSOLETTE",43.307253,5.399952,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1101,1,"CHARTREUX PIERRE ROCHE",43.309616,5.400669,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1102,1,"SAINT JUST IVALDI",43.311535,5.401153,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1103,1,"SAINT JUST ACHARD",43.313501,5.402551,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1104,1,"LES CHARTREUX",43.316147,5.404047,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1105,1,"SAINT JUST RAGUSE",43.31727,5.405339,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1106,1,"DAUDET SAINT JUST",43.319142,5.408432,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1107,1,"DAUDET MICHEL",43.320851,5.410309,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1108,1,"MALPASSE",43.32237,5.413482,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1109,1,"LA BOUDINIERE",43.324229,5.416415,,1,,Europe/Paris,,OM1, +OM1:SA:CTP111,1,"SAINTE MARTHE LE CAMP",43.3311,5.389239,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1110,1,"LA ROSE VERDIERE",43.325387,5.419298,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1111,1,"DEPOT LA ROSE",43.339566,5.43227,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1117,1,"MOUTTE DAUDET",43.320405,5.409263,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1118,1,"METRO SAINT JUST",43.316067,5.405275,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1119,1,"SAINT JUST VIDAL",43.319574,5.40811,,1,,Europe/Paris,,OM1, +OM1:SA:CTP112,1,"SAINTE MARTHE JOURDAN",43.333556,5.390786,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1124,1,"COROT MOUTTE",43.321167,5.407764,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1127,1,"METRO CINQ AVENUES",43.303208,5.396731,,1,,Europe/Paris,,OM1, +OM1:SA:CTP113,1,"SAINTE MARTHE PEUPLIERS",43.335987,5.392259,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1131,1,"PARADIS SYLVABELLE",43.289669,5.378222,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1132,1,"PARADIS DRAGON",43.287794,5.379033,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1133,1,"PARADIS SAINTE VICTOIRE",43.286329,5.379632,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1134,1,"PARADIS FIOLLE",43.284171,5.380564,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1135,1,"PARADIS MADAGASCAR",43.281705,5.381591,,1,,Europe/Paris,,OM1, +OM1:SA:CTP114,1,"SAINTE MARTHE",43.338767,5.391914,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1140,1,"PARADIS D'URVILLE",43.272058,5.385681,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1142,1,"PRADO SAINT GINIEZ",43.27061,5.388533,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1145,1,"COROT LACORDAIRE",43.323816,5.405369,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1146,1,"PARC COROT",43.324504,5.403004,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1147,1,"CITE SAINT JUST",43.325109,5.401952,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1148,1,"C.F.A COROT",43.325495,5.400716,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1149,1,"CHAMPFLEURI",43.32603,5.398688,,1,,Europe/Paris,,OM1, +OM1:SA:CTP115,1,"NUNGESSER",43.340782,5.386834,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1150,1,"COROT MONET",43.326986,5.396041,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1151,1,"LES FLAMANTS",43.332227,5.404008,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1158,1,"SAINT PIERRE PETITE PORTE",43.290414,5.419968,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1159,1,"SAINT PIERRE JEANNETTE",43.290513,5.422792,,1,,Europe/Paris,,OM1, +OM1:SA:CTP116,1,"LA SIMIANE",43.341974,5.386627,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1160,1,"LOMBARD PARETTE",43.289346,5.427087,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1161,1,"LOMBARD BEZOMBES",43.288824,5.429915,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1162,1,"LOMBARD REBATTU",43.288882,5.43291,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1163,1,"LOMBARD MIREILLE LAUZE",43.289213,5.437015,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1164,1,"ALLARD MIREILLE LAUZE",43.289274,5.438643,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1165,1,"LA POMME EGLISE",43.290201,5.442041,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1166,1,"LA POMME CAMPANULES",43.291248,5.443784,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1167,1,"FOLLEREAU LA POMME",43.293008,5.445751,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1168,1,"LES CAILLOLS (CENTRE URBAIN)",43.294725,5.445142,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1169,1,"CLAIRVAL LES COMTES",43.293421,5.451055,,1,,Europe/Paris,,OM1, +OM1:SA:CTP117,1,"TOUR SAINTE",43.344006,5.384763,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1170,1,"H.L.M ROUGUIERE",43.293207,5.454724,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1171,1,"LA ROUGUIERE",43.29198,5.459496,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1172,1,"CARTONNERIE",43.290007,5.46366,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1173,1,"PETIT SAINT MARCEL",43.289264,5.465996,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1174,1,"L'AUDIENCE",43.295967,5.486848,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1176,1,"LES ACCATES",43.2975,5.497127,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1177,1,"LES QUATRE SAISONS",43.299626,5.501873,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1178,1,"CAMOINS LES BAINS",43.301068,5.503923,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1179,1,"CAMOINS LES CLOS",43.301107,5.507176,,1,,Europe/Paris,,OM1, +OM1:SA:CTP118,1,"COXE MASSENET",43.345805,5.38221,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1180,1,"CAMOINS MONTEE D EOURES",43.300935,5.510565,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1181,1,"EOURES SAINT ROCH",43.300235,5.514171,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1182,1,"EOURES NOTRE DAME",43.300386,5.518513,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1183,1,"EOURES VILLAGE",43.301145,5.520821,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1184,1,"EOURES CIGALES",43.30113,5.523135,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1185,1,"EOURES",43.301311,5.526125,,1,,Europe/Paris,,OM1, +OM1:SA:CTP119,1,"SAINT JOSEPH",43.347166,5.378918,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1197,1,"LA MONTRE",43.29087,5.472325,,1,,Europe/Paris,,OM1, +OM1:SA:CTP12,1,"SAINT LOUIS ROVE",43.347945,5.358578,,1,,Europe/Paris,,OM1, +OM1:SA:CTP120,1,"SAINT JOSEPH LES LIONS",43.349281,5.375666,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1206,1,"GARE DE LA POMME",43.290695,5.439889,,1,,Europe/Paris,,OM1, +OM1:SA:CTP121,1,"CASTELLAS LES LIONS",43.3506,5.374479,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1214,1,"LES CAMOINS",43.301288,5.508961,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1215,1,"LA TREILLE CAMPAGNE",43.303841,5.505948,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1216,1,"LA TREILLE THERMAL",43.305668,5.506517,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1217,1,"LA TREILLE CAMOINS",43.307303,5.508393,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1218,1,"LA TREILLE PLUVENCE",43.308114,5.509866,,1,,Europe/Paris,,OM1, +OM1:SA:CTP122,1,"LE CASTELLAS",43.352528,5.372757,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1226,1,"BAILLE LODI",43.287135,5.388944,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1227,1,"BAILLE VERTUS",43.288137,5.392616,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1228,1,"BAILLE HOPITAL CONCEPTION",43.288776,5.395113,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1229,1,"BAILLE NEGRE",43.289747,5.398611,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1231,1,"C.H.U TIMONE",43.291777,5.402474,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1232,1,"SAINT PIERRE GODCHOT",43.291589,5.406859,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1233,1,"SAINT PIERRE SAINTE THERESE",43.291484,5.410239,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1238,1,"LES CIGALONS",43.29875,5.45212,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1239,1,"COLLET DES COMTES",43.299213,5.455075,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1240,1,"LES LIBERATEURS",43.299607,5.457904,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1241,1,"LA ROUGUIERE",43.297696,5.459302,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1242,1,"LES CAILLOLS HOPITAL",43.297866,5.459976,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1258,1,"BAILLE GOUFFE",43.286867,5.386665,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1261,1,"CANTINI SCHWEITZER",43.284122,5.386741,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1263,1,"TOULON ISLY",43.284628,5.392368,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1264,1,"TOULON HEBERT",43.284388,5.395433,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1265,1,"TOULON GALINAT",43.283309,5.397332,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1266,1,"CAPELETTE RABATAU",43.283573,5.400042,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1267,1,"CAPELETTE LA POSTE",43.28259,5.402377,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1268,1,"DELESSERT",43.28124,5.405247,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1269,1,"CAPELETTE CURTEL",43.280188,5.408698,,1,,Europe/Paris,,OM1, +OM1:SA:CTP127,1,"COXE MAIRIE 13-14",43.345841,5.380277,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1270,1,"FIFI TURIN",43.279062,5.412527,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1271,1,"PONT DE VIVAUX HIPPODROME",43.279454,5.415515,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1272,1,"PONT DE VIVAUX",43.279539,5.417882,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1273,1,"PONT DE VIVAUX FRENES",43.280757,5.421825,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1275,1,"SAINT LOUP EGLISE",43.282339,5.4306,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1277,1,"RESIDENCE LYCEE EST",43.281315,5.437105,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1278,1,"SAINT THYS",43.281039,5.439207,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1279,1,"PARC SAINT CYR",43.281098,5.441832,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1281,1,"CHATEAU ST CYR",43.284379,5.442797,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1282,1,"VALBARELLE HECKEL",43.28595,5.443215,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1283,1,"STADE CODER",43.287416,5.448181,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1284,1,"VALBARELLE ANDREU",43.288112,5.450865,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1285,1,"VALBARELLE LANFRANCHI",43.288513,5.455011,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1286,1,"GRANIERE RENTE",43.287258,5.458894,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1287,1,"LA GRANIERE",43.286088,5.460812,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1288,1,"LES NEREIDES",43.285184,5.459717,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1289,1,"LE BOSQUET",43.285055,5.457347,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1318,1,"TOULON DELPHES",43.285285,5.388846,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1321,1,"LA POMME HECKEL",43.289573,5.441059,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1322,1,"VALBARELLE CODER",43.28861,5.457577,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1323,1,"H.L.M NEREIDES",43.288666,5.459673,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1324,1,"CHEMIN DE LA STATION",43.288291,5.46268,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1325,1,"SAINT MARCEL",43.28728,5.46558,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1326,1,"BARASSE TUBET",43.286181,5.470579,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1327,1,"BARASSE BEAU SITE",43.286149,5.473852,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1328,1,"BARASSE CHOUQUET",43.286059,5.47754,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1329,1,"LA BARASSE",43.285571,5.480381,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1330,1,"GARE DE LA BARASSE",43.284551,5.484818,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1331,1,"H.L.M LA BARASSE",43.284418,5.488455,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1332,1,"MONTGRAND",43.283573,5.493947,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1333,1,"LA MILLIERE",43.283402,5.500388,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1334,1,"LA SOLITUDE",43.283378,5.503033,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1366,1,"LA MILLIERE SOLITUDE",43.283679,5.501979,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1372,1,"BARASSE BANCAL",43.286043,5.479028,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1382,1,"LA VALENTINE CENTRE COMMERCIAL",43.294103,5.474927,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1383,1,"SAINT MENET",43.289789,5.477301,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1385,1,"BANCAL BARASSE",43.286306,5.479572,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1386,1,"SOLITUDE MILLIERE",43.283186,5.502222,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1387,1,"SOLITUDE ESCOURTINES",43.281179,5.501656,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1388,1,"ESCOURTINES ECOLES",43.280009,5.503241,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1391,1,"LES ESCOURTINES ECOLES",43.280095,5.502446,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1393,1,"LES VAUDRANS TROIS LUCS",43.306747,5.470914,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1394,1,"LEON BANCAL SAINT MENET",43.289424,5.481479,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1398,1,"CATALANS",43.288933,5.354856,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1399,1,"LYCEE COLBERT",43.288163,5.356982,,1,,Europe/Paris,,OM1, +OM1:SA:CTP14,1,"CITE SAINT LOUIS",43.351407,5.354102,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1400,1,"PLACE DU 4 SEPTEMBRE",43.288494,5.359289,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1401,1,"CORSE D'AURELLE",43.289228,5.363562,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1402,1,"SAINT VICTOR",43.289783,5.366853,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1403,1,"PETIT CHANTIER",43.290105,5.368828,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1404,1,"PUGET MOULET",43.289886,5.37118,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1405,1,"PUGET ROUX DE BRIGNOLES",43.289948,5.373448,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1406,1,"ESTRANGIN PUGET",43.290282,5.3769,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1407,1,"BAILLE CASTELLANE",43.286168,5.385311,,1,,Europe/Paris,,OM1, +OM1:SA:CTP141,1,"CIMETIERE DU CANET",43.325659,5.380044,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1411,1,"PUGET FORTIA",43.29039,5.374653,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1412,1,"PLACE DE LA CORDERIE",43.290349,5.372607,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1416,1,"CORSE 4 SEPTEMBRE",43.288981,5.360213,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1418,1,"CORNICHE AUDEOUD",43.289643,5.357133,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1419,1,"VIEUX PORT (COURS JEAN BALLARD)",43.293992,5.374154,,1,,Europe/Paris,,OM1, +OM1:SA:CTP142,1,"PLACE DES ETATS UNIS",43.32633,5.375731,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1420,1,"SAINTE FORTIA",43.292318,5.374213,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1421,1,"SAINTE FORT NOTRE DAME",43.291469,5.370192,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1422,1,"SAINTE PETIT CHANTIER",43.290951,5.367543,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1424,1,"CHANTECLER",43.286082,5.367027,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1425,1,"ESPLANADE",43.284948,5.368358,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1426,1,"TELLENE VALENTIN",43.284438,5.367617,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1427,1,"AMEDEE AUTRAN",43.282241,5.367735,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1429,1,"ROUCAS ESTRANGIN",43.278831,5.367801,,1,,Europe/Paris,,OM1, +OM1:SA:CTP143,1,"CASANOVA BARBES",43.323017,5.374262,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1430,1,"ROUCAS BLANC EMILE DUPLOYE",43.278259,5.36702,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1431,1,"ROUCAS BLANC",43.276544,5.36597,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1434,1,"LE TERRAIL",43.280277,5.368825,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1441,1,"PLACE AUX HUILES",43.293277,5.371358,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1444,1,"BRETEUIL PUGET",43.290626,5.375552,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1445,1,"BRETEUIL ROUX DE BRIGNOLES",43.289589,5.375952,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1446,1,"BRETEUIL DRAGON",43.286666,5.377238,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1447,1,"VAUBAN BRETEUIL",43.28563,5.377318,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1448,1,"PLACE VALERE BERNARD",43.283848,5.375451,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1449,1,"FORT DU SANCTUAIRE",43.282943,5.374394,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1450,1,"VAUBAN",43.281819,5.374704,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1451,1,"VAUBAN LA POSTE",43.282802,5.376824,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1452,1,"LACEDEMONE VILLAS PARADIS",43.281257,5.377111,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1453,1,"MILLY GUADELOUPE",43.280865,5.37602,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1457,1,"NOTRE DAME DRAGON",43.287094,5.373863,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1458,1,"DELANGLADE",43.288511,5.37336,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1461,1,"JULES MOULET AUNE",43.2891,5.37195,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1462,1,"JULES MOULET DRAGON",43.286729,5.373105,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1463,1,"JULES MOULET NOTRE DAME",43.284689,5.374019,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1464,1,"FORT DU SANCTUAIRE NOTRE DAME",43.284059,5.372779,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1465,1,"ASCENCEUR",43.285733,5.37208,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1466,1,"ESCALIER NOTRE DAME",43.284932,5.371164,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1467,1,"NOTRE DAME DE LA GARDE",43.284441,5.371642,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1469,1,"PLACE COLONEL EDON",43.286381,5.370157,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1470,1,"ORATOIRE GAZZINO",43.28811,5.370384,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1471,1,"MONTEE DE L ORATOIRE",43.288887,5.370881,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1472,1,"JARDIN DE LA COLONNE",43.289204,5.369839,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1473,1,"LICES CHAIX",43.289411,5.368582,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1476,1,"ENDOUME TELLENE",43.28794,5.366214,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1477,1,"ENDOUME TADDEI",43.287187,5.364193,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1478,1,"VALLON JOURDAN",43.286365,5.363042,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1479,1,"BOMPARD ENDOUME",43.28485,5.359995,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1480,1,"BOMPARD RIGAUD",43.281807,5.361103,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1481,1,"BOMPARD BAULIEUE",43.281041,5.360213,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1482,1,"BOMPARD FIDELI",43.280619,5.360666,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1483,1,"BOMPARD",43.279304,5.360269,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1493,1,"PRADO CASTELLANE",43.284742,5.384213,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1497,1,"LYCEE PERIER",43.278956,5.381826,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1498,1,"PERIER CREMIEUX",43.278574,5.379775,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1499,1,"PERIER ESCALIERS",43.27804,5.377335,,1,,Europe/Paris,,OM1, +OM1:SA:CTP15,1,"ROVE TUILERIES",43.354683,5.3508,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1500,1,"PERIER ARLES",43.278533,5.37645,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1501,1,"PERIER GRATTE SEMELLE",43.277656,5.375025,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1502,1,"PERIER GAGLIARDO",43.277229,5.373563,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1503,1,"ESTRANGIN COLONIES",43.276721,5.371825,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1504,1,"ESTRANGIN CELINA",43.276684,5.36994,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1505,1,"ESTRANGIN ROUCAS",43.278838,5.368503,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1507,1,"ROCHES VEVE",43.280498,5.366068,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1508,1,"VALLON DE L'ORIOL",43.279621,5.363695,,1,,Europe/Paris,,OM1, +OM1:SA:CTP151,1,"VISITATION",43.337695,5.367167,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1519,1,"THIERS REFORMES",43.298707,5.385189,,1,,Europe/Paris,,OM1, +OM1:SA:CTP152,1,"ZI DE LA DELORME",43.340726,5.365541,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1520,1,"PLACE JEAN JAURES",43.294835,5.385697,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1521,1,"3 FRERES BARTHELEMY",43.292597,5.384077,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1522,1,"NOTRE DAME DU MONT",43.291734,5.384375,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1523,1,"LODI VILLAGE",43.288946,5.387539,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1524,1,"GASTON CREMIEUX",43.278879,5.380419,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1525,1,"MONTEBELLO",43.280059,5.378771,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1526,1,"VALLON MONTEBELLO",43.280301,5.378464,,1,,Europe/Paris,,OM1, +OM1:SA:CTP153,1,"PARC BLANCHARD",43.343686,5.36582,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1532,1,"3 FRERES BARTHELEMY FONTANGE",43.293121,5.385865,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1534,1,"SAINT SAVOURNIN BARBAROUX",43.298014,5.387738,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1536,1,"LA BLANCARDE",43.296075,5.406582,,1,,Europe/Paris,,OM1, +OM1:SA:CTP154,1,"4 CHEMINS DES AYGALADES",43.346769,5.366205,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1542,1,"ENDOUME BOMPARD",43.284879,5.359308,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1543,1,"PLACE SAINT EUGENE",43.284262,5.357909,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1544,1,"ENDOUME VALLON DES AUFFES",43.283704,5.355356,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1545,1,"ENDOUME BENSA",43.283791,5.353207,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1546,1,"EGLISE D'ENDOUME",43.2835,5.352699,,1,,Europe/Paris,,OM1, +OM1:SA:CTP155,1,"TRAVERSE DE L OASIS",43.348841,5.366376,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1552,1,"PLACE SEBASTOPOL",43.299062,5.397064,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1556,1,"DUCLAUX FOCH",43.296501,5.405533,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1557,1,"LE PHARO",43.291429,5.35916,,1,,Europe/Paris,,OM1, +OM1:SA:CTP156,1,"CITÉ DES ARTS DE LA RUE",43.352102,5.36555,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1561,1,"FLAMMARION SIPHON",43.308099,5.396438,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1562,1,"CHUTES LAVIE DAHDAH",43.310581,5.396447,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1563,1,"PARDIGON",43.311597,5.396156,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1564,1,"GUIGOU",43.313705,5.397291,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1565,1,"PAULETTE",43.315349,5.398266,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1566,1,"CHUTES LAVIE",43.31699,5.399388,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1567,1,"RAGUSE CHUTES LAVIE",43.318528,5.403165,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1568,1,"RAGUSE LUC",43.318671,5.403825,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1569,1,"CHUTES LAVIE RAGUSE",43.318482,5.402263,,1,,Europe/Paris,,OM1, +OM1:SA:CTP157,1,"AYGALADES VILLAGE",43.353274,5.366401,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1579,1,"JEAN MOULIN BAILLE",43.289703,5.399827,,1,,Europe/Paris,,OM1, +OM1:SA:CTP158,1,"H.L.M DES AYGALADES",43.353147,5.370251,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1580,1,"JEAN MOULIN FACULTES",43.287975,5.400215,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1581,1,"JEAN MOULIN SAINTE BAUME",43.286495,5.399139,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1582,1,"TIMONE GORDE",43.285303,5.399285,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1583,1,"TIMONE GABRIEL MARIE",43.285595,5.402008,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1584,1,"PLACE VALENTIN PIGNOL",43.28591,5.404512,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1585,1,"TIMONE HILARION BOEUF",43.286235,5.407606,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1586,1,"TIMONE BELVEDERE",43.286505,5.4098,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1587,1,"CABASSUD TIMONE",43.286209,5.412615,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1588,1,"CABASSUD MIREILLE LAUZE",43.283625,5.412735,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1589,1,"DEL BELLO AUBEPINE",43.280732,5.411706,,1,,Europe/Paris,,OM1, +OM1:SA:CTP159,1,"LA SYLVE LE CASTELLAS",43.354085,5.371447,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1591,1,"PONT DE VIVAUX TONKIN",43.278447,5.416421,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1592,1,"ROMAIN ROLLAND ICARD",43.276308,5.418275,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1593,1,"ROMAIN ROLLAND GYMNASE",43.277813,5.42099,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1594,1,"LYCEE AMPERE",43.279529,5.423876,,1,,Europe/Paris,,OM1, +OM1:SA:CTP16,1,"SAINT ANDRE P.N",43.355708,5.346626,,1,,Europe/Paris,,OM1, +OM1:SA:CTP160,1,"LES AYGALADES",43.356754,5.368976,,1,,Europe/Paris,,OM1, +OM1:SA:CTP161,1,"BOULEVARD DE LA GARE",43.357209,5.367508,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1610,1,"FIFI TURIN CAPELETTE",43.279488,5.412415,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1611,1,"FIFI TURIN AUBEPINE",43.281628,5.412751,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1619,1,"METRO STE MARGUERITE DROMEL",43.271147,5.403144,,1,,Europe/Paris,,OM1, +OM1:SA:CTP162,1,"CHEMIN DE LA MURE",43.358138,5.365783,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1620,1,"TRINITAIRES HUVEAUNE",43.272025,5.406416,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1621,1,"ROMAIN ROLLAND BELLE OMBRE",43.270772,5.408096,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1622,1,"PAULINE RIPERT",43.272109,5.410715,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1623,1,"LA SAUVAGERE",43.273825,5.414228,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1624,1,"ROMAIN ROLLAND PONT DE VIVAUX",43.275479,5.416766,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1626,1,"SAINT LOUP PAGNOL",43.283048,5.433137,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1627,1,"SAINT LOUP DE TRETS",43.283903,5.4353,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1628,1,"SAINT LOUP ROSE BRUNY",43.2847,5.437903,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1629,1,"GRANADA",43.284995,5.440172,,1,,Europe/Paris,,OM1, +OM1:SA:CTP163,1,"L'HERMITAGE JEAN MOULIN",43.36263,5.36178,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1637,1,"PLATANES ROMAIN ROLLAND",43.272256,5.408729,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1638,1,"HUVEAUNE PLATANES",43.273393,5.407313,,1,,Europe/Paris,,OM1, +OM1:SA:CTP164,1,"RESIDENCE LES BORELS",43.364185,5.361184,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1643,1,"CLAUDEL COLLEGE PASTEUR",43.268365,5.409579,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1644,1,"SAINT TRONC PARC FLEURI",43.268111,5.412187,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1645,1,"CLAUDEL MAIRIE 9-10",43.268216,5.413829,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1646,1,"VALLON DE TOULOUSE",43.267986,5.417471,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1647,1,"SAINT TRONC LA ROSE",43.268903,5.420314,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1648,1,"SAINT TRONC",43.270064,5.422776,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1649,1,"BOIS FLEURY",43.270902,5.425221,,1,,Europe/Paris,,OM1, +OM1:SA:CTP165,1,"LES BORELS",43.366472,5.363018,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1650,1,"LES ROCHES",43.271846,5.427745,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1651,1,"RESIDENCE DU LYCEE",43.273494,5.427674,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1652,1,"LYCEE JEAN PERRIN",43.274545,5.426771,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1653,1,"LA GERMAINE",43.276811,5.427077,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1667,1,"LA PUGETTE",43.268948,5.40365,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1668,1,"SAINT TRONC CLAIR MATIN",43.269819,5.423797,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1669,1,"SAINT TRONC GAULOISE",43.267952,5.426514,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1670,1,"SAINT TRONC TRANSFORMATEUR",43.266684,5.426803,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1671,1,"TOULOUSE VAL DES BOIS",43.26724,5.423104,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1672,1,"TOULOUSE CLAUDEL",43.26769,5.420913,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1679,1,"LES MARRONNIERS",43.276774,5.420232,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1680,1,"VERDILLON",43.276004,5.422603,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1681,1,"LA FAUVIERE",43.278428,5.428075,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1682,1,"CHANTE PERDRIX",43.276277,5.431577,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1683,1,"CHATEAU SAINT LOUP",43.274772,5.434179,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1684,1,"LES TROIS PONTS",43.27389,5.435756,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1685,1,"3 PONTS CANAL",43.274626,5.437359,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1686,1,"PARC DES BRUYERES",43.274582,5.439169,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1697,1,"PRADO BORDE",43.27764,5.388267,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1698,1,"PRADO LOUVAIN",43.275922,5.389234,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1699,1,"PRADO RODOCANACHI",43.274149,5.39026,,1,,Europe/Paris,,OM1, +OM1:SA:CTP17,1,"SAINT ANDRE",43.356826,5.342963,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1701,1,"PRADO SAINT EXUPERY",43.268251,5.384532,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1702,1,"PRADO TUNIS",43.266175,5.381284,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1703,1,"PARC BORELY",43.263954,5.377795,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1704,1,"LA PLAGE",43.26256,5.375592,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1705,1,"PLAGE PLANCHES A VOILE",43.260059,5.375312,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1706,1,"HIPPODROME PLAGE",43.255587,5.376367,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1707,1,"LES GATONS PLAGE",43.252076,5.375566,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1708,1,"VIEILLE CHAPELLE",43.247769,5.374268,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1709,1,"TIBOULEN",43.245376,5.373035,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1710,1,"POINTE ROUGE",43.2437,5.36997,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1711,1,"POINTE ROUGE PORT",43.242356,5.367599,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1712,1,"MONTREDON PASTRE",43.240251,5.366024,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1713,1,"ENGALIERE",43.23922,5.365601,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1714,1,"GROTTE ROLLAND",43.23676,5.362593,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1715,1,"VERRERIE",43.234671,5.359495,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1716,1,"MADRAGUE LIEUTENANT MOULIN",43.233641,5.358075,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1717,1,"MADRAGUE MONT ROSE",43.231916,5.355451,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1718,1,"MADRAGUE DE MONTREDON",43.231085,5.354633,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1725,1,"MONTREDON CHANCEL",43.241957,5.36898,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1736,1,"ROND POINT DU PRADO",43.273162,5.39113,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1747,1,"METRO ROND POINT DU PRADO",43.270164,5.392521,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1749,1,"MICHELET RAMON",43.266134,5.394792,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1753,1,"MICHELET LUCE",43.258521,5.399075,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1754,1,"MICHELET TAINE",43.256584,5.400152,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1755,1,"MICHELET BONNEAUDE",43.253961,5.401636,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1756,1,"MICHELET BLANC",43.252781,5.402348,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1761,1,"CC VALMANTE",43.245764,5.416612,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1763,1,"LOTISSEMENT VALMONT",43.245148,5.424279,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1766,1,"LUMINY VAUFREGES",43.24615,5.435723,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1767,1,"LUMINY H L M",43.24209,5.438063,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1768,1,"LUMINY STADE",43.237704,5.435501,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1769,1,"LUMINY E S C A E",43.231295,5.436336,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1770,1,"LUMINY",43.231186,5.436994,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1788,1,"MICHELET BOUSQUET",43.263404,5.396567,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1789,1,"MICHELET GANAY",43.26556,5.395353,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1790,1,"MICHELET HUVEAUNE",43.268038,5.393934,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1792,1,"LACHAMP LUMINY",43.247491,5.435524,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1793,1,"GRANDS PINS",43.248645,5.44025,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1794,1,"VAUFREGES",43.249551,5.445625,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1798,1,"LUCE ISAAC",43.258096,5.396653,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1799,1,"SAINTE ANNE",43.256822,5.394001,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1800,1,"SAINTE ANNE HAIFA",43.254627,5.394044,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1802,1,"MAZARGUES LEGRE",43.249812,5.396101,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1803,1,"JARDIN BORTOLI",43.248686,5.397738,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1804,1,"ROBESPIERRE",43.247118,5.401345,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1805,1,"MAZARGUES",43.245996,5.403795,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1806,1,"MORGIOU SEIGNEURIE",43.242608,5.406221,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1807,1,"MORGIOU ROSIERS",43.240413,5.406903,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1808,1,"MORGIOU CAUVIERE",43.2376,5.408733,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1809,1,"MORGIOU BEAUVALLON",43.234852,5.411107,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1810,1,"BAUMETTES BEAUVALLON",43.233049,5.412524,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1811,1,"BAUMETTES RIMBAUD",43.230576,5.4141,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1812,1,"MORGIOU ARNAUD",43.228368,5.415236,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1813,1,"LES BAUMETTES",43.226248,5.416414,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1816,1,"BEAUVALLON",43.234152,5.412005,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1823,1,"ZOLA CONCORDE",43.248134,5.399456,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1825,1,"L' AILLAUDE",43.252431,5.394752,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1828,1,"ISAAC LUCE",43.257708,5.397309,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1830,1,"RABAT BAUMETTES",43.23382,5.412614,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1831,1,"RABAT BEAUVALLON",43.235387,5.413178,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1832,1,"RABAT SEIGNEURIE",43.237196,5.413434,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1833,1,"LA SEIGNEURIE",43.239213,5.414268,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1838,1,"NEGRESKO PAULET",43.269628,5.389847,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1839,1,"MAZARGUES ETIENNE MILAN",43.266785,5.389585,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1840,1,"GRAND SAINT GINIEZ",43.26445,5.3917,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1841,1,"REGGIO",43.260917,5.393592,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1842,1,"BOULEVARD VERNE",43.258969,5.394079,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1843,1,"HAIFA OLLIVARY",43.253148,5.392637,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1844,1,"HAIFA MARIE LOUISE",43.251655,5.390417,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1845,1,"HAMBOURG HAIFA",43.249232,5.390239,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1846,1,"HAMBOURG LANCIER",43.247333,5.392844,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1847,1,"LE LANCIER",43.246822,5.396261,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1848,1,"BARQUIERE MARTHELINE",43.24604,5.398471,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1849,1,"SOUDE REGINENSI",43.244406,5.399946,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1850,1,"SOUDE POMEON",43.242706,5.402499,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1851,1,"OCEAN PISTOU",43.240635,5.401651,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1852,1,"OCEAN REATTU",43.241395,5.398961,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1853,1,"COLLEGE ROY D ESPAGNE",43.240736,5.396835,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1854,1,"SORMIOU ROY D'ESPAGNE",43.235389,5.398936,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1855,1,"SORMIOU JARRE",43.233164,5.399703,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1857,1,"LA CAYOLLE",43.22911,5.401553,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1858,1,"SORMIOU PIERROTTI",43.230412,5.401079,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1859,1,"COLGATE SORMIOU",43.231773,5.401805,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1860,1,"COLGATE VALETTE",43.232815,5.404997,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1861,1,"COLGATE AGELASTO",43.233939,5.408783,,1,,Europe/Paris,,OM1, +OM1:SA:CTP188,1,"CAPITAINE GEZE",43.329121,5.366357,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1885,1,"MAZARGUES ETIENNE MILAN",43.26745,5.389608,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1889,1,"SAINTE MARGUERITE",43.268213,5.406089,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1890,1,"ANTIDE BOYER",43.265321,5.408789,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1891,1,"HOPITAL SALVATOR PAOLI CALMETTES",43.263366,5.410825,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1892,1,"HOPITAL SAINTE MARGUERITE",43.262629,5.412385,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1893,1,"GRAND PRE",43.261504,5.414589,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1894,1,"LE CABOT",43.258808,5.417053,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1895,1,"LE REDON LA PANOUSE",43.257005,5.418777,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1896,1,"ALLEE DES PINS",43.254714,5.42029,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1897,1,"LA ROUVIERE",43.252017,5.421819,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1898,1,"LE FANGAS",43.250102,5.422122,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1899,1,"LA GOUFFONE",43.246836,5.424382,,1,,Europe/Paris,,OM1, +OM1:SA:CTP190,1,"TUVES BOSPHORE",43.367534,5.363284,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1900,1,"REDON",43.245155,5.42685,,1,,Europe/Paris,,OM1, +OM1:SA:CTP191,1,"LE CANAL",43.366258,5.36901,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1913,1,"CLAIRVAL VALLON DU REDON",43.247838,5.426761,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1916,1,"LYCEE DAUMIER",43.261434,5.387394,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1917,1,"CLOT BEY PAUL",43.258387,5.383553,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1918,1,"CLOT BEY LEAU",43.255622,5.382127,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1919,1,"PLACE BONNEFON",43.253542,5.381894,,1,,Europe/Paris,,OM1, +OM1:SA:CTP192,1,"LES PINS",43.366108,5.372096,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1920,1,"SABLIER CITE BORELY",43.251867,5.382001,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1921,1,"CLINIQUE",43.249673,5.381688,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1922,1,"BONNEVEINE",43.247191,5.382,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1923,1,"ZENATTI LANCIER",43.246117,5.383726,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1924,1,"MUSSO ROY D'ESPAGNE",43.243383,5.384996,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1926,1,"MUSSO ROY D ESPAGNE",43.2439,5.385171,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1928,1,"LAPIN BLANC",43.246999,5.383072,,1,,Europe/Paris,,OM1, +OM1:SA:CTP193,1,"LA SAVINE SUD",43.366645,5.372186,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1936,1,"ZENATTI LYCEE",43.245867,5.393492,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1937,1,"ZENATTI MALRIEU",43.246306,5.388472,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1938,1,"ZENATTI ECOLES",43.246661,5.386117,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1939,1,"PARANGON NEPTUNE",43.245239,5.380113,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1940,1,"PARANGON BEAU PIN",43.242292,5.379403,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1941,1,"CORAIL LYCEE",43.24031,5.376986,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1942,1,"MARSEILLEVEYRE",43.239185,5.375438,,1,,Europe/Paris,,OM1, +OM1:SA:CTP195,1,"LA SAVINE",43.367704,5.369158,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1951,1,"AUBERT GANAY",43.265758,5.403251,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1952,1,"AUBERT COIN JOLI",43.263799,5.404167,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1953,1,"LE BRIX SEVIGNE",43.261711,5.403908,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1954,1,"AIGUIER TRIOULET",43.259377,5.402516,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1955,1,"AIGUIER CANTINI",43.257959,5.403351,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1956,1,"AIGUIER C.N.R.S",43.255896,5.405369,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1957,1,"CHATEAU SEC",43.255407,5.40677,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1959,1,"LA BRUYERE",43.256153,5.411485,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1960,1,"CHEMIN COLLINE SAINT JOSEPH",43.253943,5.412991,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1961,1,"SAINT JOSEPH AIGUIER",43.251713,5.414852,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1962,1,"VALMANTE",43.25029,5.41619,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1968,1,"COLLEGE MENU",43.257489,5.410671,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1977,1,"LE BRIX MICHELET",43.259697,5.401696,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1978,1,"CONCORDE OBELISQUE",43.250149,5.402872,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1979,1,"MAGDELON",43.248602,5.401338,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1981,1,"HAMBOURG LEAU",43.252621,5.386175,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1982,1,"HAMBOURG CLOT BEY",43.254241,5.382927,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1994,1,"VITON LE BRIX",43.261394,5.405257,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1995,1,"VITON HOPITAL SAINTE MARGUERITE",43.259525,5.408356,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1998,1,"AIGUIER SAINT JACQUES",43.252774,5.4092,,1,,Europe/Paris,,OM1, +OM1:SA:CTP1999,1,"HESPERIDES MONTVAL",43.251912,5.411037,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2,1,"LES CROTTES",43.323918,5.367486,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2000,1,"AIGUIER C P C A M",43.250782,5.413768,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2001,1,"SAINT JOSEPH BON PASTEUR",43.251789,5.418473,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2011,1,"DE LESSEPS PYAT",43.320845,5.375071,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2012,1,"PLOMBIERES ARNAL",43.315926,5.384281,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2013,1,"PLACE BUREL",43.314751,5.389256,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2014,1,"CITE CHUTES LAVIE",43.316158,5.394503,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2015,1,"SAINT JUST LE DOME",43.315121,5.402502,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2016,1,"MARECHAL JUIN",43.312726,5.404505,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2017,1,"METRO CHARTREUX",43.310017,5.403005,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2018,1,"DUPARC MONTOLIVET",43.307779,5.401691,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2019,1,"STADE VALLIER",43.300301,5.400627,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2020,1,"SAKAKINI GRANOUX",43.298445,5.400737,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2021,1,"SAKAKINI CHAVE",43.295289,5.400409,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2022,1,"SAKAKINI JEANNE D ARC",43.293152,5.401243,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2023,1,"PLACE DE POLOGNE",43.284248,5.398441,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2024,1,"BONNEFOY RABATAU",43.27968,5.399711,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2029,1,"PLACE FERRIE",43.278136,5.399296,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2038,1,"SAINT JUST HOTEL DU DEPARTEMENT",43.313973,5.405877,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2040,1,"CHALUSSET",43.315661,5.401841,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2045,1,"PLOMBIERES BATTALA",43.318523,5.379899,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2050,1,"CAPITAINERIE",43.295341,5.365239,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2051,1,"QUAI DU PORT",43.295823,5.367911,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2054,1,"THÉATRE LA CRIÉE",43.292684,5.367426,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2055,1,"FORT SAINT NICOLAS",43.292307,5.361829,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2057,1,"CORNICHE FREGIER",43.287482,5.352108,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2058,1,"VALLON DES AUFFES",43.285759,5.350688,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2060,1,"ENDOUME",43.282168,5.350795,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2061,1,"FAUSSE MONNAIE",43.280601,5.352485,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2062,1,"PARC VALMER",43.27805,5.354948,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2063,1,"VALLON DE LA BAUDILLE",43.276836,5.357198,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2064,1,"VALLON DE L'ORIOL",43.27554,5.359148,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2065,1,"CORNICHE NAPOULE",43.274283,5.361654,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2066,1,"LE PROPHETE",43.272236,5.362533,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2067,1,"CHEMIN DU ROUCAS BLANC",43.269394,5.366651,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2068,1,"CORNICHE TALABOT",43.267769,5.371684,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2069,1,"PLAGE ROUCAS BLANC",43.265493,5.372967,,1,,Europe/Paris,,OM1, +OM1:SA:CTP207,1,"NATIONAL GUIBAL",43.305461,5.384218,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2070,1,"PLACE AMIRAL MUSELIER",43.263545,5.373811,,1,,Europe/Paris,,OM1, +OM1:SA:CTP208,1,"BELLE DE MAI NATIONAL",43.308466,5.381927,,1,,Europe/Paris,,OM1, +OM1:SA:CTP209,1,"CLOVIS HUGUES",43.311542,5.384442,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2094,1,"SALENGRO BRIANCON",43.316417,5.369467,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2095,1,"PLACE CAZEMAJOU",43.318698,5.367962,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2097,1,"ORIOL CORNICHE",43.275559,5.360404,,1,,Europe/Paris,,OM1, +OM1:SA:CTP210,1,"BELLE DE MAI LOUBON",43.312951,5.385835,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2101,1,"TRAVERSE NICOLAS",43.277372,5.361805,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2109,1,"FENOUIL ECOLE",43.36067,5.320119,,1,,Europe/Paris,,OM1, +OM1:SA:CTP211,1,"PERRIN GUIGOU",43.315063,5.389026,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2127,1,"PARC",43.274876,5.440252,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2128,1,"SUSINI MARIE LOUISE",43.339838,5.413668,,1,,Europe/Paris,,OM1, +OM1:SA:CTP213,1,"SAINTE MARTHE COLONEL",43.318756,5.390393,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2136,1,"ROUX BEAUSOLEIL",43.308139,5.409259,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2137,1,"VALDONNE PEYPIN",43.326914,5.417816,,1,,Europe/Paris,,OM1, +OM1:SA:CTP214,1,"SAINTE MARTHE BOUGIE",43.322432,5.389517,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2146,1,"LA CROIX ROUGE",43.3351,5.45083,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2147,1,"BAR 1900",43.337313,5.452687,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2148,1,"LA CASCADE",43.338776,5.453703,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2149,1,"LES MADETS",43.340799,5.456832,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2150,1,"PLAN DE CUQUES CINEMA",43.343481,5.45832,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2151,1,"PLAN DE CUQUES FELIBRIGE",43.344338,5.460092,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2152,1,"PLAN DE CUQUES EGLISE",43.347811,5.464348,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2153,1,"LES MOISSERONS",43.348469,5.466158,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2154,1,"PASTEUR NORIA",43.352513,5.467501,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2155,1,"LES VIDARES",43.355018,5.466393,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2156,1,"TRANSFORMATEUR",43.358582,5.466636,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2157,1,"ECOLE MATERNELLE",43.360008,5.464915,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2159,1,"LA MONTADE",43.360126,5.464564,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2162,1,"LES ROUBAUDS",43.349152,5.468968,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2163,1,"L'ELYSEE",43.351416,5.472444,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2164,1,"L'HERMITAGE",43.351694,5.473408,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2165,1,"BON RENCONTRE",43.351947,5.479214,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2166,1,"LES CHANAUDS",43.352595,5.482282,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2167,1,"MOULIN A HUILE",43.355796,5.486598,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2173,1,"LA LOUISE",43.332716,5.459238,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2174,1,"LA POUNCHE LES OURMES",43.332981,5.461272,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2175,1,"QUARTIER DE LA POUNCHE",43.332621,5.464074,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2176,1,"LES TOITS DE LA POUNCHE",43.333104,5.465702,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2178,1,"CANTONS ROUGES",43.337392,5.465468,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2179,1,"LE BOCAGE",43.337989,5.470293,,1,,Europe/Paris,,OM1, +OM1:SA:CTP218,1,"BUREL PLOMBIERES",43.315736,5.388458,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2180,1,"LA TIRANE",43.337679,5.471989,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2181,1,"HOPITAL MILLE ECUS",43.337902,5.473898,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2182,1,"HENRI TASSO",43.338171,5.477006,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2183,1,"LES CIGALES",43.339675,5.482793,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2184,1,"SAINT ROCH",43.339256,5.484174,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2185,1,"ALLAUCH",43.336719,5.482384,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2186,1,"METRO LA ROSE",43.333056,5.429714,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2193,1,"LE LOGIS NEUF CENTRE MEDICAL",43.35477,5.484779,,1,,Europe/Paris,,OM1, +OM1:SA:CTP22,1,"TRAVERSE DE LA BARRE",43.368632,5.344963,,1,,Europe/Paris,,OM1, +OM1:SA:CTP220,1,"PLACE CAFFO",43.312895,5.384613,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2208,1,"LE GRAND PUITS PIE D'AUTRY",43.338433,5.479496,,1,,Europe/Paris,,OM1, +OM1:SA:CTP221,1,"LOUBON BARBINI",43.312904,5.382717,,1,,Europe/Paris,,OM1, +OM1:SA:CTP222,1,"LOUBON BELLEVUE",43.312147,5.37929,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2224,1,"ESTAQUE CASTEJON",43.361733,5.306147,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2226,1,"CORBIERES BASE NAUTIQUE",43.359442,5.293001,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2227,1,"PLAGE DES CORBIERES",43.358151,5.287931,,1,,Europe/Paris,,OM1, +OM1:SA:CTP223,1,"NATIONAL LOUBON",43.310649,5.378521,,1,,Europe/Paris,,OM1, +OM1:SA:CTP224,1,"NATIONAL BELLE DE MAI",43.307598,5.381795,,1,,Europe/Paris,,OM1, +OM1:SA:CTP226,1,"VOLTAIRE ST CHARLES",43.303211,5.385244,,1,,Europe/Paris,,OM1, +OM1:SA:CTP227,1,"LIBERTÉ SEMBAT",43.301612,5.38325,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2277,1,"FRAIS VALLON",43.325712,5.423664,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2278,1,"MALPASSE",43.32073,5.416129,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2279,1,"SAINT JUST",43.315295,5.406797,,1,,Europe/Paris,,OM1, +OM1:SA:CTP228,1,"GRANDE ARMEE",43.299566,5.384693,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2280,1,"CHARTREUX",43.309569,5.401688,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2281,1,"CINQ AVENUES LONGCHAMP",43.304246,5.39723,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2282,1,"CANEBIERE REFORMES",43.300063,5.385569,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2283,1,"SAINT CHARLES",43.302413,5.380054,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2284,1,"COLBERT HOTEL DE REGION",43.300106,5.374207,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2285,1,"VIEUX PORT",43.295056,5.374051,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2286,1,"ESTRANGIN",43.290276,5.377737,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2299,1,"COLBERT",43.300106,5.374207,,1,,Europe/Paris,,OM1, +OM1:SA:CTP23,1,"LA BRICARDE",43.370395,5.346892,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2303,1,"TIMONE",43.290957,5.400337,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2304,1,"BOUGAINVILLE",43.320711,5.371541,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2305,1,"NATIONAL",43.315122,5.37297,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2306,1,"DESIREE CLARY",43.309192,5.372471,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2308,1,"JULES GUESDE",43.301973,5.37369,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2310,1,"NOAILLES",43.297364,5.381178,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2314,1,"PERIER",43.279732,5.387455,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2343,1,"RAIMU EDOUARD MANET",43.333445,5.399121,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2354,1,"SAMENA",43.228549,5.352409,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2356,1,"ESCALETTE",43.225237,5.34835,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2357,1,"ROCHES BLANCHES",43.218618,5.345507,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2358,1,"LES GOUDES",43.217143,5.346168,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2359,1,"DELABRE PELAPRAT",43.215366,5.347316,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2360,1,"CALLELONGUE",43.212716,5.353312,,1,,Europe/Paris,,OM1, +OM1:SA:CTP24,1,"TRAVERSE GRAILLE",43.371983,5.34896,,1,,Europe/Paris,,OM1, +OM1:SA:CTP241,1,"CAP PINEDE",43.326209,5.358936,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2419,1,"MAS DES OLIVIERS",43.361074,5.494025,,1,,Europe/Paris,,OM1, +OM1:SA:CTP242,1,"LITTORAL MOUREN",43.330475,5.35528,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2420,1,"LA FEVE",43.362976,5.494475,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2424,1,"LES 3 LUCS ENCO DE BOTTE",43.316976,5.469219,,1,,Europe/Paris,,OM1, +OM1:SA:CTP243,1,"LITTORAL BEAUSEJOUR",43.331633,5.355033,,1,,Europe/Paris,,OM1, +OM1:SA:CTP244,1,"LITTORAL BERNABO",43.335675,5.354581,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2440,1,"LUCE MICHELET",43.258465,5.398518,,1,,Europe/Paris,,OM1, +OM1:SA:CTP245,1,"LITTORAL CAP JANET",43.336421,5.353622,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2457,1,"LA VALENTELLE",43.296748,5.475798,,1,,Europe/Paris,,OM1, +OM1:SA:CTP246,1,"LITTORAL GOURRET",43.338635,5.349044,,1,,Europe/Paris,,OM1, +OM1:SA:CTP247,1,"LITTORAL SANTI",43.343321,5.34775,,1,,Europe/Paris,,OM1, +OM1:SA:CTP248,1,"LITTORAL RESIDENCE CONSOLAT",43.346551,5.345764,,1,,Europe/Paris,,OM1, +OM1:SA:CTP249,1,"LITTORAL CITE NOUVELLE",43.348902,5.343028,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2490,1,"PLACE JOSEPH ETIENNE",43.289274,5.36674,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2499,1,"LES TROIS LUCS BOUQUIERE",43.300944,5.476865,,1,,Europe/Paris,,OM1, +OM1:SA:CTP25,1,"BOULEVARD FALCOT",43.372972,5.35186,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2501,1,"PEINTRES ROUX LA SERVIANE",43.303408,5.473158,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2502,1,"PEINTRES ROUX LA VALENTINE",43.295498,5.48106,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2504,1,"CENTRE VALENTINE 2",43.295925,5.477809,,1,,Europe/Paris,,OM1, +OM1:SA:CTP251,1,"LITTORAL JEAN LABRO",43.35391,5.336303,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2516,1,"HOPITAL LAVERAN",43.3269,5.413577,,1,,Europe/Paris,,OM1, +OM1:SA:CTP252,1,"LITTORAL MOUREPIANE",43.354357,5.332852,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2521,1,"PARC DU 26EME CENTENAIRE",43.282957,5.389781,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2525,1,"LYCEE TECNIQUE LA CADENELLE",43.302109,5.456919,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2526,1,"STADE DES CAILLOLS",43.302797,5.453977,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2527,1,"LYCEE TECHNIQUE LA CADENELLE",43.302096,5.457362,,1,,Europe/Paris,,OM1, +OM1:SA:CTP253,1,"LITTORAL VALLOUISE",43.353812,5.330765,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2530,1,"METRO COLBERT",43.300035,5.374486,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2533,1,"DELPHES",43.284067,5.388043,,1,,Europe/Paris,,OM1, +OM1:SA:CTP254,1,"LITTORAL SAUMATY",43.355355,5.327987,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2549,1,"BARNIER GIROUD",43.367304,5.343574,,1,,Europe/Paris,,OM1, +OM1:SA:CTP255,1,"LITTORAL FENOUIL",43.358429,5.321874,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2551,1,"LYCEE ST CHARLES",43.305336,5.391784,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2557,1,"SCHWEITZER",43.284024,5.387043,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2558,1,"ROUET GAZ DU MIDI",43.282264,5.38823,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2559,1,"ROUET CASSIS",43.280126,5.390048,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2566,1,"FLAMMARION CASSINI",43.307152,5.395599,,1,,Europe/Paris,,OM1, +OM1:SA:CTP257,1,"ESTAQUE PORT",43.360114,5.31559,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2570,1,"SAINT JEROME SUSINI",43.33389,5.420408,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2573,1,"LE CHATELIER SAINT LOUIS",43.347835,5.359312,,1,,Europe/Paris,,OM1, +OM1:SA:CTP258,1,"ESTAQUE VILLAGE",43.361283,5.31236,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2580,1,"LANGEVIN CONSOLATION",43.339367,5.432621,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2584,1,"COLLEGE YVES MONTAND",43.337343,5.463432,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2592,1,"CHARTREUX ECOLES",43.304728,5.398943,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2594,1,"PLOMBIERES NOTRE DAME DE BON SECOURS",43.315372,5.386062,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2600,1,"MAZARGUES BARRAL",43.263191,5.392667,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2603,1,"PARIS CLARY",43.308217,5.371004,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2604,1,"SAINT MARCEL CAVAILLON",43.286458,5.467874,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2621,1,"VITON",43.260552,5.40702,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2624,1,"LECACHE LES COMTES",43.295278,5.448706,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2631,1,"ROUSSIN PICARON",43.35818,5.337944,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2632,1,"ROUSSIN BARNIER",43.363178,5.341571,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2635,1,"GAY LUSSAC GEZE",43.332886,5.374736,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2639,1,"LORETTE",43.365017,5.347201,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2640,1,"GRAND LITTORAL",43.361708,5.349443,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2642,1,"ROUSSIN COHEN",43.360852,5.338577,,1,,Europe/Paris,,OM1, +OM1:SA:CTP265,1,"LITTORAL SACOMANE",43.357429,5.320331,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2658,1,"MORGIOU VERT PLAN",43.235768,5.410209,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2664,1,"BOULEVARD DES PINS",43.27797,5.429601,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2668,1,"MARTINIQUE PYTHAGORE",43.283031,5.376061,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2669,1,"CENTRE VALENTINE 1",43.294653,5.480411,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2675,1,"DELPHES TOULON",43.28492,5.388408,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2677,1,"CAILLOLS LE CLOS",43.303738,5.435694,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2681,1,"TRINITAIRES ROMAIN ROLLAND",43.270988,5.407468,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2693,1,"VAUDRANS MARRONNIERS",43.30766,5.475373,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2706,1,"PEINTRES ROUX MONTRE",43.299711,5.477524,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2708,1,"COCHET STADE",43.238394,5.432439,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2709,1,"PISCINE",43.237745,5.432207,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2710,1,"ESC",43.233728,5.433356,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2714,1,"SAINT BARNABE LA CROIX",43.303568,5.414703,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2715,1,"HAITI FRAISSINET",43.297357,5.406429,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2716,1,"HAITI GARGUIER",43.297181,5.40786,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2717,1,"TREVARESSE CITE JARDIN",43.296171,5.409517,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2718,1,"TREVARESSE CITE SNCF",43.296659,5.41384,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2719,1,"CHARBONNELLE TREVARESSE",43.297639,5.416983,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2720,1,"ALPES CAUVIN",43.298713,5.416215,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2721,1,"ALPES LEMAN",43.300269,5.415289,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2724,1,"ALPES MERLE",43.301519,5.41495,,1,,Europe/Paris,,OM1, +OM1:SA:CTP273,1,"LITTORAL CHAMANT",43.347108,5.344166,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2732,1,"AMARYLLIS ETOILE",43.317274,5.441573,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2739,1,"CALANQUE BLANCHE",43.223379,5.346298,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2742,1,"LES OLIVES BLACHES",43.325123,5.45439,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2750,1,"CHATEAU DES MARTEGAUX",43.324035,5.443799,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2754,1,"VALLON DU REDON",43.248815,5.42466,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2765,1,"RESIDENCE FONDACLE",43.32072,5.449285,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2770,1,"HIPPODROME BORELY",43.254583,5.377225,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2780,1,"VELODROME",43.320792,5.458305,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2783,1,"TRAVERSE PRAT",43.238658,5.374045,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2785,1,"POL ROUX RABELAIS",43.359706,5.332885,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2786,1,"CHEMIN DU PASSET",43.360415,5.33424,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2787,1,"EYDOUX PELOUQUE",43.362775,5.335695,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2788,1,"EYDOUX MONJARDE",43.362071,5.329656,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2811,1,"CAMOINS VISITATION",43.296674,5.492464,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2814,1,"LA BEGUDE SUD",43.333614,5.440967,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2816,1,"SAINT HENRI CHAINE",43.356845,5.334251,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2820,1,"LYCEE J.PERRIN",43.275357,5.423836,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2824,1,"COPERNIC",43.342808,5.448636,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2826,1,"GAROUTTE PHILIPPINE",43.30655,5.41325,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2827,1,"GAROUTTE GAVOTY",43.308832,5.413951,,1,,Europe/Paris,,OM1, +OM1:SA:CTP283,1,"LE SILO",43.311351,5.36702,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2841,1,"COLLEGE MALRAUX",43.342766,5.44633,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2849,1,"CASANOVA ETATS UNIS",43.325506,5.374025,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2851,1,"ARENC MIRABEAU",43.314404,5.3659,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2855,1,"NEGRESKO",43.269919,5.391315,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2860,1,"MONTE CRISTO FARIA",43.299429,5.394929,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2861,1,"MONTE CRISTO CAMAS",43.299064,5.391622,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2862,1,"ROOSEVELT DEVILLIERS",43.29897,5.389561,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2863,1,"ROOSEVELT REFORMES",43.299126,5.386578,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2873,1,"SQUARE GANAY",43.267895,5.402405,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2876,1,"MONTREDON MIREMONTS",43.237129,5.363122,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2880,1,"STE MARGUERITE VAUTHIER",43.266939,5.408098,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2882,1,"CITE LA MARIE BASSE",43.330221,5.457525,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2884,1,"CITE LA MARIE HAUTE",43.328969,5.456052,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2887,1,"AYGALADES COROT",43.333468,5.367818,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2894,1,"BERTHE SILVA-LA ROSE",43.326691,5.421079,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2899,1,"RICHARD 4 CHEMINS",43.3161,5.423749,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2901,1,"DESERT GAZELLES",43.297378,5.434999,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2922,1,"ST JULIEN CENTRE DES IMPOTS",43.306339,5.420466,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2925,1,"FLORALIA CHIAPALE",43.244964,5.389618,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2926,1,"FLORALIA RIMET",43.242619,5.392586,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2928,1,"FLORALIA LE MEE",43.243341,5.392248,,1,,Europe/Paris,,OM1, +OM1:SA:CTP293,1,"CITE SNCF",43.348939,5.346222,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2933,1,"COLLEGE GYPTIS",43.264344,5.420315,,1,,Europe/Paris,,OM1, +OM1:SA:CTP294,1,"CONSOLAT",43.350644,5.350513,,1,,Europe/Paris,,OM1, +OM1:SA:CTP295,1,"RABELAIS PICARON",43.357815,5.3388,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2950,1,"LA GAVOTTE PEYRET",43.389662,5.352011,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2951,1,"LES GENETS",43.405156,5.371927,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2952,1,"HOPITAL NORD",43.377618,5.362639,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2954,1,"LES PEYRETS FABREGOULES",43.410456,5.372024,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2955,1,"LES COLLINES",43.404605,5.369765,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2956,1,"NOTRE DAME LIMITE",43.384598,5.358465,,1,,Europe/Paris,,OM1, +OM1:SA:CTP296,1,"RABELAIS PELLAN",43.35825,5.336087,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2965,1,"VALLON DE LA ROUGIERE",43.391031,5.374733,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2967,1,"PEYRARDS PLACETTE",43.372368,5.377856,,1,,Europe/Paris,,OM1, +OM1:SA:CTP297,1,"SAINT HENRI",43.359676,5.33202,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2972,1,"BOIS LEMAITRE",43.322694,5.432294,,1,,Europe/Paris,,OM1, +OM1:SA:CTP298,1,"RABELAIS FRERES",43.360631,5.329396,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2981,1,"LA GRANDE VIGNE",43.405389,5.364004,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2982,1,"POLYSPORT GRAND PAVOIS",43.403377,5.363912,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2983,1,"SEPTEME GARE",43.40145,5.369592,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2984,1,"COLLEGE FERRANDI",43.407481,5.370958,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2985,1,"MANDELA L' ARLESIENNE",43.409837,5.36888,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2986,1,"PLACE BARBUSSE",43.407018,5.363113,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2987,1,"GRAND PAVOIS",43.403971,5.358899,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2988,1,"ZA DE LA HAUTE BEDOULE",43.403213,5.356412,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2989,1,"ECOLE CASTORS ISABELLA",43.40309,5.353299,,1,,Europe/Paris,,OM1, +OM1:SA:CTP299,1,"RABELAIS BOURGADE",43.36114,5.327241,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2990,1,"CASTORS ISABELLA SUD",43.403719,5.351196,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2991,1,"VALLON DE LA GAZELLE",43.407093,5.346304,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2992,1,"CHENE VERT",43.407555,5.354544,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2993,1,"CIMETIERE NORD",43.405575,5.355241,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2994,1,"CIMETIERE SUD",43.404341,5.356299,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2995,1,"BEDOULE SAUZE",43.402646,5.357097,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2996,1,"TRAVERSE DES FRAISES",43.383021,5.350444,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2997,1,"LES PEYRARDS CORRADI",43.373591,5.38196,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2998,1,"LES PEYRARDS CHASSEURS",43.371983,5.380284,,1,,Europe/Paris,,OM1, +OM1:SA:CTP2999,1,"LES PEYRARDS PLACETTE",43.371258,5.376979,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3,1,"LYON CAP PINEDE",43.326504,5.366662,,1,,Europe/Paris,,OM1, +OM1:SA:CTP300,1,"RABELAIS COLLEGE",43.362019,5.325389,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3003,1,"MANDELA ECOLE",43.409017,5.367832,,1,,Europe/Paris,,OM1, +OM1:SA:CTP301,1,"CARONTE",43.362597,5.322042,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3013,1,"SEPTEMES SUD",43.39624,5.365962,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3014,1,"LA ROUGIERE",43.391946,5.363663,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3015,1,"NOTRE DAME FASANO",43.389211,5.361517,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3019,1,"COMMISSARIAT",43.39234,5.367332,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3023,1,"LES FABRETTES",43.379609,5.357079,,1,,Europe/Paris,,OM1, +OM1:SA:CTP303,1,"LA NERTHE MARINIER",43.36321,5.316145,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3034,1,"LE BRIX MAGALONE",43.261162,5.403647,,1,,Europe/Paris,,OM1, +OM1:SA:CTP304,1,"LA NERTHE MISTRAL",43.363037,5.313314,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3042,1,"LES TOURELLES",43.393555,5.351893,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3043,1,"TRANSFORMATEUR",43.396085,5.352435,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3044,1,"EUGENE MICHEL",43.39943,5.355562,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3048,1,"PINEDE ROUGIERE",43.389105,5.377335,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3049,1,"HAUT DE LA ROUGIERE",43.386698,5.376578,,1,,Europe/Paris,,OM1, +OM1:SA:CTP305,1,"FILLAT FALAISE",43.363525,5.309629,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3051,1,"LES MAZETS",43.392382,5.366956,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3053,1,"BARBUSSE-COLBERT",43.29864,5.373991,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3055,1,"CANEBIERE (BOURSE)",43.296908,5.376311,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3059,1,"NICOLAS APPERT",43.339669,5.418114,,1,,Europe/Paris,,OM1, +OM1:SA:CTP306,1,"LA NERTHE",43.363918,5.308084,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3069,1,"MONET LAVANDINS",43.324902,5.393885,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3072,1,"SORMIOU CROSIA",43.234638,5.399413,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3085,1,"CINQ AVENUES FONDERE",43.301773,5.398753,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3086,1,"BLANCARDE JEANNE DE CHANTAL",43.302922,5.402506,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3087,1,"BLANCARDE CINQ AVENUES",43.302753,5.397122,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3091,1,"SAINT PIERRE",43.291627,5.413385,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3097,1,"ROCHE ALBE",43.309303,5.40391,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3112,1,"LIBERATION DORMOY",43.302434,5.395441,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3113,1,"LIBERATION ST VINCENT DE PAUL",43.301057,5.391069,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3114,1,"LIBERATION REFORMES",43.299296,5.385857,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3124,1,"CASSINI",43.305848,5.396434,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3130,1,"VALBARELLE SAINT JACQUES",43.28717,5.44675,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3133,1,"FOCH CINQ AVENUES",43.301977,5.397811,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3138,1,"POURRIERE FLORALIA",43.24515,5.387628,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3141,1,"TEISSEIRE RABATAU",43.274839,5.396659,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3142,1,"TEISSEIRE MONTFURON",43.273133,5.399103,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3143,1,"TEISSEIRE PALAIS DES SPORTS",43.270214,5.400788,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3148,1,"COMTESSE",43.319173,5.447294,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3151,1,"LANGEVIN WALLON",43.386539,5.351945,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3153,1,"LOU GALOUBET",43.400137,5.365638,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3156,1,"SAINTE MARTHE VERT BOIS",43.335283,5.391614,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3160,1,"BIANCO MAZENODE",43.289066,5.425927,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3165,1,"BRETEUIL SYLVABELLE",43.288391,5.37655,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3167,1,"PLACE DU MONUMENT",43.301176,5.510587,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3197,1,"LES COLLINES CENTRE",43.405602,5.369635,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3198,1,"LES COLLINES CIMETIERE",43.404343,5.369433,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3199,1,"SEPTEMES CENTRE",43.398565,5.366317,,1,,Europe/Paris,,OM1, +OM1:SA:CTP32,1,"LA CASTELLANE",43.365746,5.343,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3204,1,"PLAGE DES CATALANS",43.289906,5.355522,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3206,1,"EUROMEDITERRANEE GANTES",43.308687,5.368121,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3210,1,"REPUBLIQUE DAMES",43.302199,5.369305,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3211,1,"SADI CARNOT",43.299842,5.371235,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3213,1,"BELSUNCE ALCAZAR",43.298503,5.376639,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3217,1,"CANEBIERE GARIBALDI",43.297798,5.381776,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3220,1,"NATIONAL",43.301503,5.388686,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3221,1,"LONGCHAMP",43.303299,5.392474,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3222,1,"FOCH SAKAKINI",43.30032,5.400009,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3223,1,"FOCH BOISSON",43.298132,5.403237,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3229,1,"SAINTE THERESE",43.29417,5.409478,,1,,Europe/Paris,,OM1, +OM1:SA:CTP323,1,"CASANOVA CANET",43.329088,5.375803,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3233,1,"LA PARETTE",43.295056,5.419395,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3234,1,"LA BOISERAIE",43.294925,5.422867,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3236,1,"AIR BEL",43.294304,5.429463,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3237,1,"LA GROGNARDE",43.294613,5.432316,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3238,1,"WILLIAM BOOTH",43.292653,5.436849,,1,,Europe/Paris,,OM1, +OM1:SA:CTP324,1,"CASANOVA LAROUSSE",43.330371,5.376561,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3240,1,"LES CAILLOLS",43.294627,5.443336,,1,,Europe/Paris,,OM1, +OM1:SA:CTP325,1,"HLM LE CANET",43.331517,5.375476,,1,,Europe/Paris,,OM1, +OM1:SA:CTP326,1,"GAY LUSSAC",43.33526,5.374751,,1,,Europe/Paris,,OM1, +OM1:SA:CTP327,1,"AMPERE GAY LUSSAC",43.33632,5.374486,,1,,Europe/Paris,,OM1, +OM1:SA:CTP328,1,"CITE BASSENS",43.338659,5.373169,,1,,Europe/Paris,,OM1, +OM1:SA:CTP329,1,"MIN BOLIVAR",43.341381,5.375814,,1,,Europe/Paris,,OM1, +OM1:SA:CTP330,1,"MIN ARNAVAUX",43.338367,5.382233,,1,,Europe/Paris,,OM1, +OM1:SA:CTP331,1,"MIN GIBBES",43.337117,5.385075,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3311,1,"DUGOMMIER CANEBIERE",43.298206,5.380903,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3313,1,"CANEBIERE VIEUX PORT",43.295528,5.374906,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3339,1,"CANEBIERE SAINT FERREOL",43.29632,5.377222,,1,,Europe/Paris,,OM1, +OM1:SA:CTP335,1,"JOURDAN CRECHE",43.333689,5.395302,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3354,1,"GARE SAINT CHARLES",43.30352,5.379792,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3355,1,"FACULTE ST-CHARLES",43.304346,5.378054,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3358,1,"GEORGES VERDUN",43.296942,5.397591,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3359,1,"SEDAN CHAVE",43.295079,5.397838,,1,,Europe/Paris,,OM1, +OM1:SA:CTP336,1,"JOURDAN LE MAIL",43.333106,5.398413,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3360,1,"JEANNE D'ARC",43.293997,5.399139,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3362,1,"ST-PIERRE MADON",43.292834,5.40026,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3367,1,"GAMBETTA ATHENES",43.299178,5.381774,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3369,1,"BOURDET NEDELEC",43.302935,5.379493,,1,,Europe/Paris,,OM1, +OM1:SA:CTP337,1,"COLLEGE EDOUARD MANET",43.333827,5.398981,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3377,1,"GAMBETTA REFORMES",43.299096,5.384772,,1,,Europe/Paris,,OM1, +OM1:SA:CTP338,1,"BRAQUE LES FLAMANTS",43.332496,5.401817,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3382,1,"JOURDAN BONNARDEL",43.311518,5.387583,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3388,1,"BELLE DE MAI",43.310611,5.389333,,1,,Europe/Paris,,OM1, +OM1:SA:CTP340,1,"MERLAN SAINTE MARTHE",43.330531,5.404213,,1,,Europe/Paris,,OM1, +OM1:SA:CTP341,1,"MUSEE DE LA MOTO",43.328682,5.404065,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3411,1,"EUGENE PIERRE",43.295069,5.389526,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3413,1,"CAMAS",43.295282,5.393133,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3414,1,"GEORGE",43.295534,5.397143,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3415,1,"JEAN MARTIN",43.295807,5.40164,,1,,Europe/Paris,,OM1, +OM1:SA:CTP342,1,"VILLECROZE LES OLIVIERS",43.328225,5.405605,,1,,Europe/Paris,,OM1, +OM1:SA:CTP343,1,"COLLEGE ROSTAND",43.327306,5.407563,,1,,Europe/Paris,,OM1, +OM1:SA:CTP344,1,"LES CEDRES",43.326326,5.410061,,1,,Europe/Paris,,OM1, +OM1:SA:CTP345,1,"MARATHON GENETS",43.325859,5.411945,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3452,1,"CADE MOUTON",43.332001,5.392424,,1,,Europe/Paris,,OM1, +OM1:SA:CTP346,1,"MARATHON LAVERAN",43.327733,5.413388,,1,,Europe/Paris,,OM1, +OM1:SA:CTP347,1,"LAVERAN DIDEROT",43.324999,5.414658,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3490,1,"LOUIS ARMAND",43.299781,5.413396,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3491,1,"SAINT BARNABE",43.303513,5.418711,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3493,1,"LA FOURRAGERE",43.303816,5.423098,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3498,1,"ANSALDI LA JAVIE",43.33412,5.40244,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3519,1,"ST-MENET BUZINE",43.293546,5.494484,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3522,1,"ST-MENET POMPIERS",43.289924,5.494177,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3523,1,"ST-MENET VILLAGE",43.288488,5.499227,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3524,1,"LA REYNARDE",43.287653,5.506181,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3529,1,"VAILLANT AUPHAN",43.316936,5.377593,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3530,1,"ECOLE VAILLANT",43.315536,5.379989,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3531,1,"BARBINI BELLEVUE",43.314092,5.379977,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3533,1,"PLACE CADENAT",43.311769,5.387516,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3534,1,"COLLEGE ST-CHARLES",43.31357,5.386114,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3535,1,"BELLE VUE LOUBON",43.312597,5.380093,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3536,1,"BELLE VUE SOLFERINO",43.314374,5.380101,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3554,1,"ARENC LE SILO",43.312283,5.368678,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3558,1,"METRO FOURRAGERE",43.303962,5.423375,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3561,1,"PICHOU LUZZATTI",43.365303,5.310707,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3562,1,"PICHOU MIRAMARE",43.366224,5.312475,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3563,1,"PICHOU VILLA BELLEVUE",43.367276,5.312251,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3564,1,"CAMPAGNE BLEUE",43.370339,5.308133,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3565,1,"CEZANNE PICHOU",43.368382,5.311109,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3566,1,"CEZANNE MARINIER",43.368452,5.313379,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3567,1,"LE MARINIER",43.368995,5.314146,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3568,1,"MARINIER BELVEDERE",43.370364,5.313248,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3569,1,"ROCHERS DE L'ESTAQUE",43.37369,5.310233,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3572,1,"MARINIER GROTTE",43.365819,5.314247,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3573,1,"PICHOU GALINETTE",43.364541,5.310377,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3574,1,"ESTAQUE GARE",43.36242,5.318325,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3585,1,"METRO ROND-POINT DU PRADO",43.271004,5.392101,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3589,1,"COMPLEXE SPORTIF",43.320112,5.468891,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3590,1,"ENCO DE BOTTE",43.323382,5.478081,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3591,1,"PROVENCE AUBAGNENS",43.326897,5.482659,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3592,1,"GUERIDON",43.331277,5.486461,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3593,1,"LA CRAIE",43.330772,5.488518,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3594,1,"SAINT JEAN",43.324323,5.492006,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3596,1,"A LURIMA",43.325554,5.49194,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3603,1,"SADI CARNOT",43.297535,5.372941,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3610,1,"EUROMED ARENC",43.312762,5.368449,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3612,1,"LA PANOUSE",43.256094,5.428171,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3614,1,"LA PANOUSE BELLE FONTAINE",43.257001,5.422463,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3616,1,"LA PANOUSE BOUGAINVILLIERS",43.256921,5.424888,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3625,1,"L'OUVIERE",43.327915,5.490206,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3628,1,"AIGUIER LA GAYE",43.254904,5.406817,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3633,1,"PLATEAU DE LA CROIX ROUGE",43.337085,5.444383,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3642,1,"DE ROUX CREMIEUX",43.338174,5.448717,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3643,1,"DE ROUX GARLABAN",43.337636,5.446495,,1,,Europe/Paris,,OM1, +OM1:SA:CTP365,1,"GIBBES CALVET",43.332015,5.386799,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3652,1,"GAYE HOPITAL STE-MARGUERITE",43.257922,5.408748,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3654,1,"KEYNES LANGEVIN",43.343148,5.432318,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3657,1,"ROUSSIN MAURRAS",43.355753,5.337933,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3658,1,"ROUSSIN LABRO",43.353617,5.337811,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3677,1,"GUEY ST JULIEN",43.306195,5.422082,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3678,1,"LYCEE L'OLIVIER",43.305464,5.425458,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3682,1,"METRO LA FOURRAGERE",43.304004,5.42372,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3688,1,"TRAVERSE DE LA BUZINE",43.294126,5.497223,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3689,1,"CHATEAU DE LA BUZINE",43.295812,5.502236,,1,,Europe/Paris,,OM1, +OM1:SA:CTP369,1,"CASTORS DE SERVIERES",43.342175,5.372838,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3693,1,"FLORALIA",43.241118,5.394215,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3694,1,"COLLEGE ROY D'ESPAGNE",43.241487,5.39674,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3699,1,"ARCHIVES MUNICIPALES",43.308226,5.387784,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3707,1,"POLE MEDIA",43.308519,5.388795,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3708,1,"GUIBAL CAVAIGNAC",43.306395,5.385101,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3712,1,"BONNEFOY PALAIS OMNISPORTS",43.281669,5.402116,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3716,1,"DUPARC ROCHE",43.309244,5.402638,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3739,1,"GAVOTY GILLET",43.312078,5.414167,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3743,1,"ELZEARD ROUGIER",43.309204,5.412589,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3750,1,"LIBERTE LAFAYETTE",43.30068,5.381181,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3751,1,"HONNORAT CRIMEE",43.304956,5.382754,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3762,1,"METRO SAINT BARNABE",43.303674,5.419331,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3767,1,"MIRABEAU RUFFI",43.314325,5.369393,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3768,1,"PARIS GUINOT",43.309691,5.370168,,1,,Europe/Paris,,OM1, +OM1:SA:CTP377,1,"NATIONAL PYAT",43.312274,5.376378,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3774,1,"PARADIS ARMENY",43.290939,5.377948,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3775,1,"PARADIS DAVSO",43.293425,5.376933,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3776,1,"PARADIS CANEBIERE",43.294333,5.376495,,1,,Europe/Paris,,OM1, +OM1:SA:CTP379,1,"NEDELEC LECLERC",43.302988,5.378164,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3790,1,"JOLIETTE",43.305091,5.366655,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3795,1,"MIRABEAU ARENC",43.314158,5.366043,,1,,Europe/Paris,,OM1, +OM1:SA:CTP380,1,"NEDELEC GUESDE",43.302391,5.376692,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3809,1,"PLACE BARGEMON",43.297663,5.369591,,1,,Europe/Paris,,OM1, +OM1:SA:CTP381,1,"METRO COLBERT HOTEL DE REGION",43.30022,5.374299,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3811,1,"COLLEGE IZZO",43.306503,5.369005,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3813,1,"BENEDIT",43.307135,5.392461,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3816,1,"PHARO CATALANS",43.291981,5.356816,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3819,1,"LA MAJOR",43.299027,5.363581,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3820,1,"GARE MARITIME INTERNATIONALE",43.300954,5.364336,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3821,1,"HANGAR J1",43.303105,5.364988,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3823,1,"FRAC",43.305519,5.367976,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3828,1,"MUCEM SAINT JEAN",43.296337,5.362613,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3830,1,"BONNETERIE",43.296758,5.371592,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3831,1,"PLACE DE LENCHE",43.296302,5.365922,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3832,1,"CAISSERIE BEAUREGARD",43.296882,5.367666,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3833,1,"DAMES SCHUMAN",43.302868,5.366978,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3836,1,"FACULTE ST CHARLES",43.304367,5.378539,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3837,1,"GARE ST CHARLES",43.303927,5.379993,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3847,1,"FORT NOTRE DAME",43.292312,5.371599,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3850,1,"METRO JOLIETTE",43.304285,5.367697,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3858,1,"ROSIERE FOURNIER",43.305766,5.435372,,1,,Europe/Paris,,OM1, +OM1:SA:CTP386,1,"PREFECTURE",43.290085,5.379413,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3869,1,"KADDOUZ ST JULIEN",43.307841,5.425701,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3874,1,"BARA VAL DE GRAY",43.348968,5.445187,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3883,1,"PLAN D'AOU",43.368685,5.353372,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3890,1,"FENOUIL LE PELLETIER",43.36242,5.320784,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3892,1,"FENOUIL CERISIER",43.358984,5.319663,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3910,1,"AYGALADES GEZE",43.330102,5.366872,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3912,1,"ITALIE BERLIOZ",43.289012,5.382802,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3913,1,"ITALIE SALVATOR",43.290577,5.381694,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3917,1,"HOPITAL EUROPEEN",43.309868,5.373623,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3926,1,"BLIDAH ST LAZARE",43.30507,5.374698,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3927,1,"LES OLIVIERS",43.330542,5.412332,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3931,1,"VAL PLAN",43.334759,5.432738,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3932,1,"SAINT JEROME PARKING RELAIS",43.343405,5.410306,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3937,1,"LES VIEUX CYPRES",43.336634,5.434654,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3938,1,"EINSTEIN MONNET",43.338981,5.440063,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3939,1,"EINSTEIN ATHENA",43.341039,5.443231,,1,,Europe/Paris,,OM1, +OM1:SA:CTP394,1,"ROUET LIANDIER",43.278254,5.392312,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3941,1,"EINSTEIN PARKING RELAIS",43.3455,5.448375,,1,,Europe/Paris,,OM1, +OM1:SA:CTP395,1,"ROUET ROUMANILLE",43.277441,5.393056,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3951,1,"BELLE VUE BARSOTTI",43.313389,5.379565,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3952,1,"ROME PEYTRAL",43.290443,5.381045,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3954,1,"ROME DRAGON",43.288836,5.381965,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3962,1,"LYON ODDO",43.329894,5.365412,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3963,1,"BILLOUX MAIRIE 15-16",43.33269,5.364476,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3964,1,"LYON RAFFINERIES",43.336269,5.363186,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3966,1,"LYON COMMANDERIE",43.339495,5.362001,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3967,1,"SAINT-LOUIS LA POSTE",43.341011,5.360849,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3968,1,"PARC SAINT LOUIS",43.347929,5.359169,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3969,1,"SAINT LOUIS SUSINI",43.346142,5.359383,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3970,1,"SAINT LOUIS",43.347851,5.359188,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3971,1,"SAINT LOUIS CAMAU",43.350206,5.35888,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3972,1,"RESIDENCE SAINT LOUIS",43.355795,5.357466,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3973,1,"CITE LA VISTE",43.352813,5.357824,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3974,1,"LA VISTE HANOI",43.358131,5.357671,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3975,1,"LA VISTE",43.359855,5.357699,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3976,1,"LA VISTE SCIERIE",43.362652,5.357337,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3977,1,"COLLEGE JEAN MOULIN",43.366292,5.35688,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3980,1,"SAINT ANTOINE COLLET",43.374107,5.355877,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3981,1,"SAINT ANTOINE MAIRIE",43.376512,5.356365,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3984,1,"VALLON D'OL BOURRELY",43.385141,5.362685,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3985,1,"PARC KALLISTE",43.384565,5.36464,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3986,1,"BOURRELY GRANIERE",43.382027,5.363592,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3987,1,"HOPITAL NORD URGENCES",43.379659,5.361907,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3988,1,"FACULTE DE MEDECINE",43.377413,5.361276,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3990,1,"LA MARTINE",43.374324,5.365837,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3991,1,"COLLEGE VALLON DES PINS",43.371953,5.36475,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3992,1,"VAL PINS",43.370814,5.363704,,1,,Europe/Paris,,OM1, +OM1:SA:CTP3999,1,"VALLON DES TUVES",43.368367,5.363106,,1,,Europe/Paris,,OM1, +OM1:SA:CTP4019,1,"CITE LA VISTE",43.355659,5.357245,,1,,Europe/Paris,,OM1, +OM1:SA:CTP4020,1,"RESIDENCE SAINT LOUIS",43.352175,5.357889,,1,,Europe/Paris,,OM1, +OM1:SA:CTP403,1,"MONTFURON",43.273686,5.400511,,1,,Europe/Paris,,OM1, +OM1:SA:CTP4035,1,"SAINT JEROME FACULTE",43.337999,5.409967,,1,,Europe/Paris,,OM1, +OM1:SA:CTP4036,1,"LES LILAS",43.331143,5.410011,,1,,Europe/Paris,,OM1, +OM1:SA:CTP404,1,"SCHLOESING FERRIE",43.277009,5.399396,,1,,Europe/Paris,,OM1, +OM1:SA:CTP4046,1,"TECHNOPOLE CENTRALE MARSEILLE",43.341614,5.436893,,1,,Europe/Paris,,OM1, +OM1:SA:CTP4047,1,"TECHNOPOLE POLYTECH MARSEILLE",43.344549,5.436273,,1,,Europe/Paris,,OM1, +OM1:SA:CTP4048,1,"TECHNOPOLE DE CHATEAU GOMBERT",43.344863,5.439136,,1,,Europe/Paris,,OM1, +OM1:SA:CTP4065,1,"LANGEVIN PLANK",43.341506,5.433107,,1,,Europe/Paris,,OM1, +OM1:SA:CTP4066,1,"JOLIOT CURIE",43.343205,5.434876,,1,,Europe/Paris,,OM1, +OM1:SA:CTP4067,1,"NEEL",43.344458,5.437247,,1,,Europe/Paris,,OM1, +OM1:SA:CTP4070,1,"LEPRINCE RINGUET",43.344129,5.441545,,1,,Europe/Paris,,OM1, +OM1:SA:CTP4071,1,"MIEGE",43.343826,5.444489,,1,,Europe/Paris,,OM1, +OM1:SA:CTP4073,1,"CHAMPOLLION",43.339686,5.449612,,1,,Europe/Paris,,OM1, +OM1:SA:CTP408,1,"CANTINI BORDE",43.279849,5.395031,,1,,Europe/Paris,,OM1, +OM1:SA:CTP4083,1,"TERRASSES DU PORT",43.307409,5.366259,,1,,Europe/Paris,,OM1, +OM1:SA:CTP4084,1,"DOCKS",43.308977,5.366733,,1,,Europe/Paris,,OM1, +OM1:SA:CTP4089,1,"DONADILLE LANGEVIN",43.34409,5.430974,,1,,Europe/Paris,,OM1, +OM1:SA:CTP409,1,"CANTINI REGE",43.281528,5.391957,,1,,Europe/Paris,,OM1, +OM1:SA:CTP4090,1,"LES BARONNIES",43.346014,5.431645,,1,,Europe/Paris,,OM1, +OM1:SA:CTP4091,1,"DONADILLE",43.346012,5.429513,,1,,Europe/Paris,,OM1, +OM1:SA:CTP4092,1,"LANGEVIN",43.345997,5.428785,,1,,Europe/Paris,,OM1, +OM1:SA:CTP4095,1,"RABATAU ROUET",43.275802,5.396228,,1,,Europe/Paris,,OM1, +OM1:SA:CTP4096,1,"HOPITAL ST JOSEPH",43.275065,5.39509,,1,,Europe/Paris,,OM1, +OM1:SA:CTP4102,1,"ROUET LOUVAIN",43.276225,5.395078,,1,,Europe/Paris,,OM1, +OM1:SA:CTP4103,1,"MAILLANE",43.27777,5.395412,,1,,Europe/Paris,,OM1, +OM1:SA:CTP411,1,"CANTINI DELPHES",43.284314,5.386972,,1,,Europe/Paris,,OM1, +OM1:SA:CTP4119,1,"CANEBIERE CAPUCINS",43.296924,5.379112,,1,,Europe/Paris,,OM1, +OM1:SA:CTP4120,1,"COURS SAINT LOUIS",43.296125,5.377954,,1,,Europe/Paris,,OM1, +OM1:SA:CTP4121,1,"ROME DAVSO",43.293677,5.379327,,1,,Europe/Paris,,OM1, +OM1:SA:CTP4122,1,"PLACE DE ROME",43.29062,5.381049,,1,,Europe/Paris,,OM1, +OM1:SA:CTP4141,1,"ESTAQUE RIAUX",43.36194,5.303212,,1,,Europe/Paris,,OM1, +OM1:SA:CTP4144,1,"PONT DU CANAL",43.371799,5.372459,,1,,Europe/Paris,,OM1, +OM1:SA:CTP4152,1,"GROUPE CLOVIS HUGUES",43.316311,5.378612,,1,,Europe/Paris,,OM1, +OM1:SA:CTP4155,1,"GIONO LIBERATION",43.344145,5.458665,,1,,Europe/Paris,,OM1, +OM1:SA:CTP4156,1,"ROND POINT DES OLIVIERS",43.343783,5.463401,,1,,Europe/Paris,,OM1, +OM1:SA:CTP4160,1,"CHATEAU GOMBERT",43.353248,5.438062,,1,,Europe/Paris,,OM1, +OM1:SA:CTP4164,1,"LA CLAIRIERE",43.26541,5.424199,,1,,Europe/Paris,,OM1, +OM1:SA:CTP4165,1,"VAL DE BOIS",43.264005,5.422709,,1,,Europe/Paris,,OM1, +OM1:SA:CTP4166,1,"GRANDE BASTIDE",43.263726,5.420931,,1,,Europe/Paris,,OM1, +OM1:SA:CTP4174,1,"LES BLACASSINS",43.341889,5.471332,,1,,Europe/Paris,,OM1, +OM1:SA:CTP4178,1,"THOLLON",43.369347,5.356058,,1,,Europe/Paris,,OM1, +OM1:SA:CTP4180,1,"FORESTA",43.366025,5.353935,,1,,Europe/Paris,,OM1, +OM1:SA:CTP4187,1,"RECHER CORSE",43.28891,5.362105,,1,,Europe/Paris,,OM1, +OM1:SA:CTP4188,1,"RECHER COTEAU",43.286945,5.362568,,1,,Europe/Paris,,OM1, +OM1:SA:CTP4189,1,"VIEUX CHEMIN D ENDOUME",43.286283,5.360871,,1,,Europe/Paris,,OM1, +OM1:SA:CTP419,1,"BARBUSSE COLBERT",43.298368,5.374275,,1,,Europe/Paris,,OM1, +OM1:SA:CTP4191,1,"GUIDICELLI",43.286379,5.354882,,1,,Europe/Paris,,OM1, +OM1:SA:CTP4192,1,"SAMATAN",43.288247,5.355625,,1,,Europe/Paris,,OM1, +OM1:SA:CTP4193,1,"FOUR A CHAUX",43.287452,5.356366,,1,,Europe/Paris,,OM1, +OM1:SA:CTP4194,1,"CODACCIONI",43.287542,5.358291,,1,,Europe/Paris,,OM1, +OM1:SA:CTP420,1,"METRO JULES GUESDE",43.301828,5.374347,,1,,Europe/Paris,,OM1, +OM1:SA:CTP4200,1,"MERMOZ CHALET",43.27731,5.387334,,1,,Europe/Paris,,OM1, +OM1:SA:CTP4201,1,"MERMOZ DUVEEN",43.275811,5.386816,,1,,Europe/Paris,,OM1, +OM1:SA:CTP4202,1,"CLINIQUE JUGE",43.273366,5.387092,,1,,Europe/Paris,,OM1, +OM1:SA:CTP4203,1,"MERMOZ SICARD",43.271665,5.386854,,1,,Europe/Paris,,OM1, +OM1:SA:CTP4204,1,"CADENELLE CHARLEY",43.268001,5.382537,,1,,Europe/Paris,,OM1, +OM1:SA:CTP4205,1,"PARC BAGATELLE",43.269451,5.381519,,1,,Europe/Paris,,OM1, +OM1:SA:CTP4206,1,"MAIRIE 6-8",43.271039,5.382908,,1,,Europe/Paris,,OM1, +OM1:SA:CTP4207,1,"CLINIQUE MONTICELLI",43.271968,5.382809,,1,,Europe/Paris,,OM1, +OM1:SA:CTP4208,1,"PARC MONTICELLI",43.274449,5.382689,,1,,Europe/Paris,,OM1, +OM1:SA:CTP4209,1,"ROLLAND PUGET",43.276882,5.382972,,1,,Europe/Paris,,OM1, +OM1:SA:CTP4210,1,"CLINIQUE PUGET",43.276644,5.381224,,1,,Europe/Paris,,OM1, +OM1:SA:CTP4211,1,"EDEN ROC",43.277035,5.377897,,1,,Europe/Paris,,OM1, +OM1:SA:CTP4213,1,"ROLLAND DAUMIER",43.27823,5.382492,,1,,Europe/Paris,,OM1, +OM1:SA:CTP4215,1,"BIANCO FLORIAN",43.287547,5.425218,,1,,Europe/Paris,,OM1, +OM1:SA:CTP4224,1,"BEZOMBES",43.28762,5.429247,,1,,Europe/Paris,,OM1, +OM1:SA:CTP4225,1,"LA MAZENODE",43.286087,5.42786,,1,,Europe/Paris,,OM1, +OM1:SA:CTP4226,1,"FLORIAN MIREILLE LAUZE",43.285196,5.425042,,1,,Europe/Paris,,OM1, +OM1:SA:CTP4227,1,"BARDON FLORIAN",43.282506,5.426965,,1,,Europe/Paris,,OM1, +OM1:SA:CTP4236,1,"PONT DE VIVAUX SIDOLLE",43.281563,5.424133,,1,,Europe/Paris,,OM1, +OM1:SA:CTP4239,1,"RESIDENCE GIBBES",43.32329,5.381778,,1,,Europe/Paris,,OM1, +OM1:SA:CTP4246,1,"NATIONAL JULLIEN",43.313976,5.374067,,1,,Europe/Paris,,OM1, +OM1:SA:CTP4251,1,"STE TRINITE",43.247829,5.406365,,1,,Europe/Paris,,OM1, +OM1:SA:CTP4254,1,"ALLAR",43.324712,5.364855,,1,,Europe/Paris,,OM1, +OM1:SA:CTP4255,1,"MARCHE AUX PUCES",43.32599,5.361277,,1,,Europe/Paris,,OM1, +OM1:SA:CTP4267,1,"SEPTEMES NORD",43.400864,5.369608,,1,,Europe/Paris,,OM1, +OM1:SA:CTP4270,1,"CASTORS ISABELLA",43.405666,5.348462,,1,,Europe/Paris,,OM1, +OM1:SA:CTP4271,1,"L'OLIVERAIE",43.38028,5.354205,,1,,Europe/Paris,,OM1, +OM1:SA:CTP4284,1,"LES COLLINES GENETS",43.404856,5.367106,,1,,Europe/Paris,,OM1, +OM1:SA:CTP4289,1,"TERMINAL CROISIERES",43.340341,5.346584,,1,,Europe/Paris,,OM1, +OM1:SA:CTP431,1,"BELLE DE MAI LA FRICHE",43.309555,5.390161,,1,,Europe/Paris,,OM1, +OM1:SA:CTP4318,1,"COLLEGE JEAN GIONO",43.33656,5.434843,,1,,Europe/Paris,,OM1, +OM1:SA:CTP432,1,"PLACE LEVERRIER",43.306226,5.393075,,1,,Europe/Paris,,OM1, +OM1:SA:CTP4333,1,"CC ST LOUP",43.277269,5.427422,,1,,Europe/Paris,,OM1, +OM1:SA:CTP434,1,"FLAMMARION ISOARD",43.304423,5.3891,,1,,Europe/Paris,,OM1, +OM1:SA:CTP436,1,"HOTEL DE VILLE",43.296036,5.368775,,1,,Europe/Paris,,OM1, +OM1:SA:CTP440,1,"EGLISE SAINT LAURENT",43.296583,5.364221,,1,,Europe/Paris,,OM1, +OM1:SA:CTP441,1,"TOURETTE CATHEDRALE",43.297706,5.364268,,1,,Europe/Paris,,OM1, +OM1:SA:CTP443,1,"SCHUMAN DAMES",43.303011,5.36653,,1,,Europe/Paris,,OM1, +OM1:SA:CTP445,1,"DAMES REPUBLIQUE",43.302367,5.369599,,1,,Europe/Paris,,OM1, +OM1:SA:CTP450,1,"STRASBOURG AMIENS",43.306967,5.375161,,1,,Europe/Paris,,OM1, +OM1:SA:CTP451,1,"STRASBOURG DESAIX",43.307777,5.376411,,1,,Europe/Paris,,OM1, +OM1:SA:CTP452,1,"STRASBOURG",43.309534,5.379447,,1,,Europe/Paris,,OM1, +OM1:SA:CTP454,1,"BERNARD CLOVIS HUGUES",43.310253,5.385199,,1,,Europe/Paris,,OM1, +OM1:SA:CTP457,1,"CRISTOFOL AUZIAS",43.310651,5.381637,,1,,Europe/Paris,,OM1, +OM1:SA:CTP458,1,"CRISTOFOL NATIONAL",43.310034,5.379892,,1,,Europe/Paris,,OM1, +OM1:SA:CTP460,1,"PLACE DE STRASBOURG",43.306504,5.373733,,1,,Europe/Paris,,OM1, +OM1:SA:CTP461,1,"FORBIN D'HOZIER",43.30527,5.369013,,1,,Europe/Paris,,OM1, +OM1:SA:CTP472,1,"FLAMMARION ISOARD",43.304401,5.389555,,1,,Europe/Paris,,OM1, +OM1:SA:CTP481,1,"PELLETAN MARCEAU",43.303255,5.374078,,1,,Europe/Paris,,OM1, +OM1:SA:CTP483,1,"PELLETAN SAINT LAZARE",43.308476,5.374268,,1,,Europe/Paris,,OM1, +OM1:SA:CTP484,1,"SALENGRO MIRES",43.311608,5.372562,,1,,Europe/Paris,,OM1, +OM1:SA:CTP485,1,"SALENGRO NATIONAL",43.314164,5.370912,,1,,Europe/Paris,,OM1, +OM1:SA:CTP486,1,"METRO NATIONAL",43.315547,5.373214,,1,,Europe/Paris,,OM1, +OM1:SA:CTP488,1,"DE LESSEPS CASANOVA",43.320989,5.374426,,1,,Europe/Paris,,OM1, +OM1:SA:CTP491,1,"SALENGRO COUGIT",43.322102,5.367785,,1,,Europe/Paris,,OM1, +OM1:SA:CTP492,1,"ODDO LYON",43.329108,5.364878,,1,,Europe/Paris,,OM1, +OM1:SA:CTP493,1,"ODDO BUTINEUSE",43.328098,5.360834,,1,,Europe/Paris,,OM1, +OM1:SA:CTP494,1,"RABATTU",43.328533,5.359428,,1,,Europe/Paris,,OM1, +OM1:SA:CTP495,1,"MOULIN A VENT",43.330814,5.359228,,1,,Europe/Paris,,OM1, +OM1:SA:CTP496,1,"DEMANDOLX",43.333404,5.358576,,1,,Europe/Paris,,OM1, +OM1:SA:CTP497,1,"LA CABUCELLE",43.336356,5.357549,,1,,Europe/Paris,,OM1, +OM1:SA:CTP498,1,"LES ABATTOIRS",43.338334,5.357566,,1,,Europe/Paris,,OM1, +OM1:SA:CTP499,1,"TRAVERSE MARITIME",43.339594,5.355255,,1,,Europe/Paris,,OM1, +OM1:SA:CTP501,1,"LA CALADE",43.341012,5.352792,,1,,Europe/Paris,,OM1, +OM1:SA:CTP502,1,"CAMPAGNE LEVEQUE",43.342651,5.353038,,1,,Europe/Paris,,OM1, +OM1:SA:CTP503,1,"PISCINE MUNICIPALE",43.344614,5.354534,,1,,Europe/Paris,,OM1, +OM1:SA:CTP504,1,"LYCEE SAINT EXUPERY",43.34741,5.355223,,1,,Europe/Paris,,OM1, +OM1:SA:CTP518,1,"PLACE BOUGAINVILLE",43.31972,5.369026,,1,,Europe/Paris,,OM1, +OM1:SA:CTP52,1,"MAGALLON SALENGRO",43.322222,5.368345,,1,,Europe/Paris,,OM1, +OM1:SA:CTP520,1,"RUFFI URBAIN V",43.315956,5.368593,,1,,Europe/Paris,,OM1, +OM1:SA:CTP524,1,"PARIS FORBIN",43.305585,5.372502,,1,,Europe/Paris,,OM1, +OM1:SA:CTP529,1,"AUPHAN FELIX PYAT",43.31657,5.374549,,1,,Europe/Paris,,OM1, +OM1:SA:CTP532,1,"PLOMBIERES CUBEDDU",43.31684,5.381879,,1,,Europe/Paris,,OM1, +OM1:SA:CTP535,1,"SAINT GABRIEL",43.322806,5.382984,,1,,Europe/Paris,,OM1, +OM1:SA:CTP536,1,"GIBBES MORETTI",43.324157,5.382292,,1,,Europe/Paris,,OM1, +OM1:SA:CTP537,1,"GIBBES D ARTAGNAN",43.327179,5.384485,,1,,Europe/Paris,,OM1, +OM1:SA:CTP538,1,"GIBBES ROUFFE",43.328144,5.385029,,1,,Europe/Paris,,OM1, +OM1:SA:CTP539,1,"GIBBES LAROUSSE",43.329344,5.384883,,1,,Europe/Paris,,OM1, +OM1:SA:CTP540,1,"ARNAVAUX",43.331269,5.385515,,1,,Europe/Paris,,OM1, +OM1:SA:CTP541,1,"RESIDENCE STATION",43.332018,5.385728,,1,,Europe/Paris,,OM1, +OM1:SA:CTP542,1,"CANET GARE",43.333039,5.38333,,1,,Europe/Paris,,OM1, +OM1:SA:CTP543,1,"BOVET MURET",43.331094,5.380886,,1,,Europe/Paris,,OM1, +OM1:SA:CTP544,1,"ARNAVAUX JAURES",43.332585,5.380621,,1,,Europe/Paris,,OM1, +OM1:SA:CTP545,1,"ARNAVAUX TISSERON",43.332871,5.379108,,1,,Europe/Paris,,OM1, +OM1:SA:CTP546,1,"LE CANET JEAN JAURES",43.333396,5.37804,,1,,Europe/Paris,,OM1, +OM1:SA:CTP547,1,"TISSERON",43.333164,5.378606,,1,,Europe/Paris,,OM1, +OM1:SA:CTP549,1,"FINAT DUCLOS",43.33232,5.382676,,1,,Europe/Paris,,OM1, +OM1:SA:CTP550,1,"H.L.M STATION",43.330977,5.385007,,1,,Europe/Paris,,OM1, +OM1:SA:CTP555,1,"CARRIERE BON SECOURS",43.319885,5.382312,,1,,Europe/Paris,,OM1, +OM1:SA:CTP556,1,"GIBBES BON SECOURS",43.319781,5.380249,,1,,Europe/Paris,,OM1, +OM1:SA:CTP557,1,"GIBBES PLOMBIERES",43.319184,5.379429,,1,,Europe/Paris,,OM1, +OM1:SA:CTP563,1,"BOURRELY DRAMARD",43.377858,5.358466,,1,,Europe/Paris,,OM1, +OM1:SA:CTP564,1,"HOPITAL EDOUARD TOULOUSE",43.381207,5.358347,,1,,Europe/Paris,,OM1, +OM1:SA:CTP565,1,"LA BIGOTTE",43.384253,5.366115,,1,,Europe/Paris,,OM1, +OM1:SA:CTP566,1,"LA SOLIDARITE",43.386148,5.369409,,1,,Europe/Paris,,OM1, +OM1:SA:CTP571,1,"LA ROSE POSTE",43.331528,5.428116,,1,,Europe/Paris,,OM1, +OM1:SA:CTP572,1,"LA GRAVE LA ROSE",43.329908,5.427228,,1,,Europe/Paris,,OM1, +OM1:SA:CTP573,1,"LA ROSE",43.33009,5.429677,,1,,Europe/Paris,,OM1, +OM1:SA:CTP574,1,"LA ROSE BOULEVARD NEUF",43.331263,5.432648,,1,,Europe/Paris,,OM1, +OM1:SA:CTP575,1,"LA CROIX ROUGE VAL PLAN",43.332337,5.435009,,1,,Europe/Paris,,OM1, +OM1:SA:CTP576,1,"LA BEGUDE",43.333172,5.438516,,1,,Europe/Paris,,OM1, +OM1:SA:CTP577,1,"LA RAVELLE",43.33461,5.442881,,1,,Europe/Paris,,OM1, +OM1:SA:CTP578,1,"LA CROIX ROUGE EGLISE",43.334552,5.448336,,1,,Europe/Paris,,OM1, +OM1:SA:CTP580,1,"DELPRAT VALLON VERT",43.334891,5.453085,,1,,Europe/Paris,,OM1, +OM1:SA:CTP581,1,"LES BARTAVELLES",43.33339,5.456157,,1,,Europe/Paris,,OM1, +OM1:SA:CTP582,1,"FOURNACLE LES AURENGUES",43.332767,5.458107,,1,,Europe/Paris,,OM1, +OM1:SA:CTP599,1,"BERTHE SYLVA VALDONNE",43.32757,5.419157,,1,,Europe/Paris,,OM1, +OM1:SA:CTP617,1,"LES BAUDILLONS",43.328342,5.433537,,1,,Europe/Paris,,OM1, +OM1:SA:CTP618,1,"CLOS D'ORVILLE",43.327538,5.435834,,1,,Europe/Paris,,OM1, +OM1:SA:CTP619,1,"LA MAURELLE",43.326194,5.439124,,1,,Europe/Paris,,OM1, +OM1:SA:CTP620,1,"LES MARTEGAUX",43.325116,5.441887,,1,,Europe/Paris,,OM1, +OM1:SA:CTP621,1,"FONDACLE",43.323302,5.445829,,1,,Europe/Paris,,OM1, +OM1:SA:CTP622,1,"LES OLIVES COMTESSE",43.323092,5.448108,,1,,Europe/Paris,,OM1, +OM1:SA:CTP623,1,"LES AURENGUES",43.324656,5.450029,,1,,Europe/Paris,,OM1, +OM1:SA:CTP624,1,"LES ACACIAS",43.325402,5.452841,,1,,Europe/Paris,,OM1, +OM1:SA:CTP625,1,"LES OLIVES VILLAGE",43.323951,5.456038,,1,,Europe/Paris,,OM1, +OM1:SA:CTP626,1,"POILUS MISTRAL",43.322539,5.456971,,1,,Europe/Paris,,OM1, +OM1:SA:CTP628,1,"POILUS SIPHON",43.317618,5.46014,,1,,Europe/Paris,,OM1, +OM1:SA:CTP629,1,"POILUS ECOLES",43.314294,5.462484,,1,,Europe/Paris,,OM1, +OM1:SA:CTP630,1,"LES 3 LUCS SAINTE RITA",43.311862,5.464186,,1,,Europe/Paris,,OM1, +OM1:SA:CTP631,1,"PEINTRES ROUX JARDINERIE",43.306232,5.469445,,1,,Europe/Paris,,OM1, +OM1:SA:CTP635,1,"LA SABLIERE LA RAVELLE",43.292097,5.478954,,1,,Europe/Paris,,OM1, +OM1:SA:CTP636,1,"LA SABLIERE",43.290733,5.477635,,1,,Europe/Paris,,OM1, +OM1:SA:CTP637,1,"LA SABLIERE LA MONTRE",43.290636,5.474466,,1,,Europe/Paris,,OM1, +OM1:SA:CTP638,1,"VILLAGE ESTELLAN",43.292077,5.473486,,1,,Europe/Paris,,OM1, +OM1:SA:CTP642,1,"LA SABLIERE SAINT MENET",43.291677,5.479152,,1,,Europe/Paris,,OM1, +OM1:SA:CTP643,1,"LA SABLIERE LA RAVELLE",43.293981,5.480657,,1,,Europe/Paris,,OM1, +OM1:SA:CTP662,1,"LES TROIS LUCS",43.312549,5.464692,,1,,Europe/Paris,,OM1, +OM1:SA:CTP663,1,"LES VAUDRANS",43.309004,5.47616,,1,,Europe/Paris,,OM1, +OM1:SA:CTP666,1,"VALDONNE FUVEAU",43.32919,5.419047,,1,,Europe/Paris,,OM1, +OM1:SA:CTP667,1,"SAINT JEROME PELABON",43.330898,5.41936,,1,,Europe/Paris,,OM1, +OM1:SA:CTP668,1,"SAINT JEROME LES SEREINS",43.332625,5.419983,,1,,Europe/Paris,,OM1, +OM1:SA:CTP669,1,"VAL DES PINS",43.335234,5.420887,,1,,Europe/Paris,,OM1, +OM1:SA:CTP670,1,"LES ALVERGNES",43.337624,5.420966,,1,,Europe/Paris,,OM1, +OM1:SA:CTP671,1,"NOTRE DAME DE LA CONSOLATION",43.339509,5.420759,,1,,Europe/Paris,,OM1, +OM1:SA:CTP673,1,"LES 2 TOURS",43.345188,5.424047,,1,,Europe/Paris,,OM1, +OM1:SA:CTP674,1,"STADE MALLET",43.346458,5.426506,,1,,Europe/Paris,,OM1, +OM1:SA:CTP676,1,"LA JULIENNE",43.347661,5.429701,,1,,Europe/Paris,,OM1, +OM1:SA:CTP677,1,"TASTEVIN",43.34952,5.431353,,1,,Europe/Paris,,OM1, +OM1:SA:CTP678,1,"GROTTES LOUBIERE",43.35135,5.433412,,1,,Europe/Paris,,OM1, +OM1:SA:CTP679,1,"LES MOURETS",43.351956,5.43639,,1,,Europe/Paris,,OM1, +OM1:SA:CTP680,1,"PALAMA CHATEAU GOMBERT",43.352382,5.43783,,1,,Europe/Paris,,OM1, +OM1:SA:CTP682,1,"PALAMA CAMOINS",43.354632,5.439357,,1,,Europe/Paris,,OM1, +OM1:SA:CTP683,1,"PALAMA FUMADE",43.357061,5.44024,,1,,Europe/Paris,,OM1, +OM1:SA:CTP684,1,"PALAMA CARROUSSEL",43.358288,5.441046,,1,,Europe/Paris,,OM1, +OM1:SA:CTP685,1,"PALAMA ECUYERS",43.359675,5.442218,,1,,Europe/Paris,,OM1, +OM1:SA:CTP686,1,"PALAMA CHARS",43.360834,5.442872,,1,,Europe/Paris,,OM1, +OM1:SA:CTP687,1,"CHATEAU DE LA PARADE",43.361234,5.441797,,1,,Europe/Paris,,OM1, +OM1:SA:CTP688,1,"LA PARADE COLLECTIFS",43.361122,5.440078,,1,,Europe/Paris,,OM1, +OM1:SA:CTP689,1,"PARADE ARGELAS",43.361367,5.43749,,1,,Europe/Paris,,OM1, +OM1:SA:CTP690,1,"LA PARADE PIERROTS",43.361829,5.439894,,1,,Europe/Paris,,OM1, +OM1:SA:CTP691,1,"LA PARADE",43.363069,5.440861,,1,,Europe/Paris,,OM1, +OM1:SA:CTP710,1,"ST MITRE ECOLES",43.341189,5.419876,,1,,Europe/Paris,,OM1, +OM1:SA:CTP717,1,"PLACE DES HEROS",43.351761,5.439435,,1,,Europe/Paris,,OM1, +OM1:SA:CTP720,1,"BARA PRATS",43.351281,5.440802,,1,,Europe/Paris,,OM1, +OM1:SA:CTP721,1,"BARA LA CROIX",43.350261,5.443113,,1,,Europe/Paris,,OM1, +OM1:SA:CTP722,1,"BARA BESSONS",43.348084,5.446877,,1,,Europe/Paris,,OM1, +OM1:SA:CTP732,1,"CONSOLATION GRACIEUSE",43.338961,5.430168,,1,,Europe/Paris,,OM1, +OM1:SA:CTP733,1,"LYCEE ARTAUD",43.34045,5.424322,,1,,Europe/Paris,,OM1, +OM1:SA:CTP734,1,"CONSOLATION BALUSTRES",43.339875,5.421173,,1,,Europe/Paris,,OM1, +OM1:SA:CTP738,1,"BARIELLE",43.337033,5.432478,,1,,Europe/Paris,,OM1, +OM1:SA:CTP745,1,"DUPARC BLANCARDE",43.303108,5.400875,,1,,Europe/Paris,,OM1, +OM1:SA:CTP747,1,"ROUX SAINT BRUNO",43.307685,5.402154,,1,,Europe/Paris,,OM1, +OM1:SA:CTP748,1,"ROUX GAVAUDAN",43.307072,5.405052,,1,,Europe/Paris,,OM1, +OM1:SA:CTP749,1,"ROUX ESPLANADE",43.307009,5.408521,,1,,Europe/Paris,,OM1, +OM1:SA:CTP750,1,"ROUX MONTOLIVET",43.309225,5.408701,,1,,Europe/Paris,,OM1, +OM1:SA:CTP751,1,"CENTRE GERONTOLOGIQUE",43.311371,5.410072,,1,,Europe/Paris,,OM1, +OM1:SA:CTP752,1,"MONTOLIVET BEAUREGARD",43.312514,5.411907,,1,,Europe/Paris,,OM1, +OM1:SA:CTP753,1,"LE PETIT BOSQUET",43.313706,5.413326,,1,,Europe/Paris,,OM1, +OM1:SA:CTP754,1,"MONTOLIVET CORBIERE",43.314796,5.414529,,1,,Europe/Paris,,OM1, +OM1:SA:CTP755,1,"TRAVERSE SAINT JUST",43.316323,5.415831,,1,,Europe/Paris,,OM1, +OM1:SA:CTP756,1,"MONTOLIVET MATHERON",43.317694,5.419131,,1,,Europe/Paris,,OM1, +OM1:SA:CTP757,1,"MONTOLIVET CHABOT",43.31812,5.422171,,1,,Europe/Paris,,OM1, +OM1:SA:CTP758,1,"MONTOLIVET",43.317846,5.423893,,1,,Europe/Paris,,OM1, +OM1:SA:CTP759,1,"RICHARD PY",43.315654,5.425376,,1,,Europe/Paris,,OM1, +OM1:SA:CTP760,1,"RICHARD AIGUILLETTE",43.315365,5.428218,,1,,Europe/Paris,,OM1, +OM1:SA:CTP761,1,"MAZARADE NORMA",43.315018,5.429653,,1,,Europe/Paris,,OM1, +OM1:SA:CTP762,1,"NORMA PEYRARD",43.316766,5.430806,,1,,Europe/Paris,,OM1, +OM1:SA:CTP763,1,"NORMA COMPOSTELLE",43.318519,5.431442,,1,,Europe/Paris,,OM1, +OM1:SA:CTP765,1,"COMPADIEU",43.319797,5.432645,,1,,Europe/Paris,,OM1, +OM1:SA:CTP766,1,"LA PIGNATELLE",43.31711,5.436047,,1,,Europe/Paris,,OM1, +OM1:SA:CTP767,1,"KADDOUZ BEAUMONT",43.317556,5.438645,,1,,Europe/Paris,,OM1, +OM1:SA:CTP768,1,"KADDOUZ SEMINAIRE",43.318818,5.439489,,1,,Europe/Paris,,OM1, +OM1:SA:CTP769,1,"PETIT SEMINAIRE",43.320737,5.440615,,1,,Europe/Paris,,OM1, +OM1:SA:CTP770,1,"JONQUILLES LOTUS",43.321141,5.438765,,1,,Europe/Paris,,OM1, +OM1:SA:CTP771,1,"JONQUILLES MAURELLE",43.322343,5.438251,,1,,Europe/Paris,,OM1, +OM1:SA:CTP772,1,"FRAIS VALLON LES ROSES",43.324177,5.436404,,1,,Europe/Paris,,OM1, +OM1:SA:CTP773,1,"FRAIS VALLON COLLEGE",43.325299,5.433656,,1,,Europe/Paris,,OM1, +OM1:SA:CTP775,1,"FRAIS VALLON PISCINE",43.324981,5.426889,,1,,Europe/Paris,,OM1, +OM1:SA:CTP776,1,"METRO FRAIS VALLON",43.324742,5.424572,,1,,Europe/Paris,,OM1, +OM1:SA:CTP790,1,"COMPOSTELLE AIGUILLETTE",43.318596,5.429377,,1,,Europe/Paris,,OM1, +OM1:SA:CTP791,1,"COROGNE AIGUILLETTE",43.31813,5.428071,,1,,Europe/Paris,,OM1, +OM1:SA:CTP802,1,"MONTOLIVET ROUX",43.309694,5.407384,,1,,Europe/Paris,,OM1, +OM1:SA:CTP805,1,"DUPARC HONDET",43.30436,5.400795,,1,,Europe/Paris,,OM1, +OM1:SA:CTP813,1,"BLANCARDE PROGIN",43.303357,5.404767,,1,,Europe/Paris,,OM1, +OM1:SA:CTP814,1,"ST BARNABE FEUILLERAIE",43.304021,5.407327,,1,,Europe/Paris,,OM1, +OM1:SA:CTP815,1,"COMPASSION",43.304049,5.411084,,1,,Europe/Paris,,OM1, +OM1:SA:CTP817,1,"SAINT JULIEN RAMEAU",43.305787,5.418848,,1,,Europe/Paris,,OM1, +OM1:SA:CTP819,1,"SAINT JULIEN KADDOUZ",43.307523,5.425727,,1,,Europe/Paris,,OM1, +OM1:SA:CTP820,1,"FAIDHERBE",43.307756,5.429507,,1,,Europe/Paris,,OM1, +OM1:SA:CTP821,1,"SAINT JULIEN KALLISTE",43.307915,5.432434,,1,,Europe/Paris,,OM1, +OM1:SA:CTP822,1,"BEAUMONT FIGONE",43.308221,5.435874,,1,,Europe/Paris,,OM1, +OM1:SA:CTP823,1,"ROUGEMONT",43.308992,5.440312,,1,,Europe/Paris,,OM1, +OM1:SA:CTP824,1,"SAINT JULIEN HELVETIE",43.310446,5.442583,,1,,Europe/Paris,,OM1, +OM1:SA:CTP825,1,"SAINT JULIEN",43.311389,5.445454,,1,,Europe/Paris,,OM1, +OM1:SA:CTP826,1,"TROIS LUCS MAROC",43.312249,5.449602,,1,,Europe/Paris,,OM1, +OM1:SA:CTP827,1,"TROIS LUCS MARNE",43.311417,5.454113,,1,,Europe/Paris,,OM1, +OM1:SA:CTP828,1,"TROIS LUCS MARIONNE",43.310956,5.458213,,1,,Europe/Paris,,OM1, +OM1:SA:CTP829,1,"TROIS LUCS GERMAINE",43.30959,5.461907,,1,,Europe/Paris,,OM1, +OM1:SA:CTP831,1,"ENCO DE BOTTE TRSE LA SALETTE",43.313707,5.465999,,1,,Europe/Paris,,OM1, +OM1:SA:CTP832,1,"ENCO DE BOTTE CHANTE CIGALE",43.314438,5.467135,,1,,Europe/Paris,,OM1, +OM1:SA:CTP836,1,"VINCENNES ENCO DE BOTTE",43.316043,5.468836,,1,,Europe/Paris,,OM1, +OM1:SA:CTP845,1,"TRAVERSE SAINT PONS",43.311573,5.444996,,1,,Europe/Paris,,OM1, +OM1:SA:CTP852,1,"MARGAILLAN",43.306945,5.422051,,1,,Europe/Paris,,OM1, +OM1:SA:CTP859,1,"BLANCARDE ROUGIER",43.303239,5.402902,,1,,Europe/Paris,,OM1, +OM1:SA:CTP864,1,"BEAUMONT AV DU 24 AVRIL",43.309139,5.438953,,1,,Europe/Paris,,OM1, +OM1:SA:CTP865,1,"BEAUMONT PASTEUR",43.310647,5.438727,,1,,Europe/Paris,,OM1, +OM1:SA:CTP866,1,"FAUVETTES CHARLEROI",43.31266,5.439735,,1,,Europe/Paris,,OM1, +OM1:SA:CTP867,1,"FAUVETTES PINATEL",43.315176,5.439156,,1,,Europe/Paris,,OM1, +OM1:SA:CTP868,1,"BEAUMONT",43.316826,5.43746,,1,,Europe/Paris,,OM1, +OM1:SA:CTP869,1,"DUMAS BEAUMONT",43.31415,5.437943,,1,,Europe/Paris,,OM1, +OM1:SA:CTP872,1,"SAINT BARNABE CAUVIN",43.303785,5.417805,,1,,Europe/Paris,,OM1, +OM1:SA:CTP873,1,"LEON MEISSEREL",43.304813,5.418648,,1,,Europe/Paris,,OM1, +OM1:SA:CTP874,1,"JEAN RAMEAU",43.307144,5.418269,,1,,Europe/Paris,,OM1, +OM1:SA:CTP875,1,"PLACE DE BOIS LUZY",43.309813,5.41957,,1,,Europe/Paris,,OM1, +OM1:SA:CTP876,1,"PROVENCE",43.31029,5.421135,,1,,Europe/Paris,,OM1, +OM1:SA:CTP878,1,"FELIBRES LAURIERS",43.31138,5.424838,,1,,Europe/Paris,,OM1, +OM1:SA:CTP879,1,"FELIBRES AIGUILLETTE",43.31156,5.427028,,1,,Europe/Paris,,OM1, +OM1:SA:CTP880,1,"KADDOUZ AIGUILLETTE",43.31193,5.429794,,1,,Europe/Paris,,OM1, +OM1:SA:CTP881,1,"KADDOUZ SABLES JAUNES",43.313048,5.431258,,1,,Europe/Paris,,OM1, +OM1:SA:CTP882,1,"KADDOUZ MAZARADE",43.314621,5.433141,,1,,Europe/Paris,,OM1, +OM1:SA:CTP883,1,"KADDOUZ BOURRELY",43.316195,5.435652,,1,,Europe/Paris,,OM1, +OM1:SA:CTP884,1,"LES AMARYLLIS",43.316588,5.441031,,1,,Europe/Paris,,OM1, +OM1:SA:CTP885,1,"LES BOUGAINVILLIERS",43.317659,5.442863,,1,,Europe/Paris,,OM1, +OM1:SA:CTP886,1,"LES ROMARINS",43.317808,5.444866,,1,,Europe/Paris,,OM1, +OM1:SA:CTP887,1,"COMTESSE RAMPAL",43.31739,5.44722,,1,,Europe/Paris,,OM1, +OM1:SA:CTP888,1,"COMTESSE CLINIQUE",43.315851,5.447235,,1,,Europe/Paris,,OM1, +OM1:SA:CTP889,1,"SAINT JULIEN",43.314005,5.447332,,1,,Europe/Paris,,OM1, +OM1:SA:CTP915,1,"CAILLOLS LA FOURRAGERE",43.303772,5.427643,,1,,Europe/Paris,,OM1, +OM1:SA:CTP916,1,"CAILLOLS PARINI",43.303414,5.431034,,1,,Europe/Paris,,OM1, +OM1:SA:CTP917,1,"CAILLOLS ROSIERE",43.304114,5.434532,,1,,Europe/Paris,,OM1, +OM1:SA:CTP918,1,"CAILLOLS FIGONE",43.303107,5.43827,,1,,Europe/Paris,,OM1, +OM1:SA:CTP919,1,"CAILLOLS MONETTE",43.3037,5.440149,,1,,Europe/Paris,,OM1, +OM1:SA:CTP920,1,"CAILLOLS FORT FOUQUE",43.30325,5.442021,,1,,Europe/Paris,,OM1, +OM1:SA:CTP921,1,"CAILLOLS VIEUX MOULIN",43.302266,5.445292,,1,,Europe/Paris,,OM1, +OM1:SA:CTP922,1,"CAILLOLS PROVENCE",43.303113,5.449278,,1,,Europe/Paris,,OM1, +OM1:SA:CTP923,1,"H.L.M LES CAILLOLS",43.301331,5.449637,,1,,Europe/Paris,,OM1, +OM1:SA:CTP924,1,"LA MOULARDE",43.2984,5.449897,,1,,Europe/Paris,,OM1, +OM1:SA:CTP925,1,"BOOTH LA MOULARDE",43.296929,5.448549,,1,,Europe/Paris,,OM1, +OM1:SA:CTP926,1,"BOOTH LECACHE",43.296035,5.447097,,1,,Europe/Paris,,OM1, +OM1:SA:CTP942,1,"GASQUY VIAN",43.301362,5.422625,,1,,Europe/Paris,,OM1, +OM1:SA:CTP943,1,"BASTIDE SAINT JEAN",43.298946,5.421596,,1,,Europe/Paris,,OM1, +OM1:SA:CTP944,1,"GARLABAN CAUVIN",43.298233,5.417938,,1,,Europe/Paris,,OM1, +OM1:SA:CTP945,1,"HAITI HESPERIDES",43.298263,5.41592,,1,,Europe/Paris,,OM1, +OM1:SA:CTP946,1,"COLLEGE DARIUS MILHAUD",43.298044,5.41384,,1,,Europe/Paris,,OM1, +OM1:SA:CTP947,1,"METRO LOUIS ARMAND",43.298902,5.413394,,1,,Europe/Paris,,OM1, +OM1:SA:CTP948,1,"HAGUENAU MERLE",43.301002,5.413223,,1,,Europe/Paris,,OM1, +OM1:SA:CTP949,1,"HAGUENAU ALASKA",43.303495,5.413172,,1,,Europe/Paris,,OM1, +OM1:SA:CTP952,1,"LES BORROMEES",43.300884,5.430836,,1,,Europe/Paris,,OM1, +OM1:SA:CTP953,1,"RESIDENCE VALVERT",43.299672,5.430118,,1,,Europe/Paris,,OM1, +OM1:SA:CTP954,1,"LE VENDOME",43.298416,5.431282,,1,,Europe/Paris,,OM1, +OM1:SA:CTP955,1,"FOURRAGERE DESERT",43.297341,5.433932,,1,,Europe/Paris,,OM1, +OM1:SA:CTP957,1,"BELLEVUE",43.298377,5.436389,,1,,Europe/Paris,,OM1, +OM1:SA:CTP958,1,"CENTRE SOCIAL",43.297781,5.438044,,1,,Europe/Paris,,OM1, +OM1:SA:CTP959,1,"BASTIDE BASSE",43.299226,5.439698,,1,,Europe/Paris,,OM1, +OM1:SA:CTP960,1,"BASTIDE CAZAULX",43.297719,5.44049,,1,,Europe/Paris,,OM1, +OM1:SA:CTP961,1,"MAIRIE 11-12",43.29672,5.442714,,1,,Europe/Paris,,OM1, +OM1:SA:CTP977,1,"LA ROSE VILLAGE",43.328215,5.425117,,1,,Europe/Paris,,OM1, +OM1:SA:CTP978,1,"LA ROSE FUVEAU",43.327091,5.423233,,1,,Europe/Paris,,OM1, +OM1:SA:CTP979,1,"LES HIRONDELLES",43.331008,5.407355,,1,,Europe/Paris,,OM1, +OM1:SA:CTP980,1,"PROSPER MERIMEE SAINT PAUL",43.32948,5.401619,,1,,Europe/Paris,,OM1, +OM1:SA:CTP981,1,"CENTRE CIAL DU MERLAN",43.328504,5.398955,,1,,Europe/Paris,,OM1, +OM1:SA:CTP982,1,"THEATRE DU MERLAN",43.329912,5.398156,,1,,Europe/Paris,,OM1, +OM1:SA:CTP983,1,"BUSSERINE H. L. M",43.332058,5.398886,,1,,Europe/Paris,,OM1, +OM1:SA:CTP984,1,"SAINTE MARTHE BUSSERINE",43.336042,5.398237,,1,,Europe/Paris,,OM1, +OM1:SA:CTP985,1,"LA MARGERAY",43.336999,5.396871,,1,,Europe/Paris,,OM1, +OM1:SA:CTP986,1,"FORGE DOLET",43.337875,5.394195,,1,,Europe/Paris,,OM1, +OM1:SA:CTP989,1,"CHEMIN DE SAINT ANTOINE",43.348971,5.373579,,1,,Europe/Paris,,OM1, +OM1:SA:CTP990,1,"AUTOROUTE",43.348817,5.371698,,1,,Europe/Paris,,OM1, +OM1:SA:CTP991,1,"SAINT LOUIS PICARDIE",43.347277,5.368918,,1,,Europe/Paris,,OM1, +OM1:SA:CTP993,1,"CHEMIN DE LA COMMANDERIE",43.347929,5.361399,,1,,Europe/Paris,,OM1, +OM1:SA:CTP997,1,"PAUL GAFFAREL",43.348961,5.357966,,1,,Europe/Paris,,OM1, +OM2:SA:CTP105002,1,"LA GARDE",43.169033,5.594024,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105003,1,"LA HAUTE BERTRANDIERE",43.169748,5.597996,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105006,1,"FIGUEROLLES",43.169133,5.599607,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105008,1,"LA GARDE ECOLE",43.168096,5.600887,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105010,1,"LE MUGEL",43.167249,5.605667,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105012,1,"LE PRE",43.169789,5.604067,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105015,1,"GUERIN (MAIRIE)",43.173804,5.605966,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105017,1,"REPUBLIQUE",43.175558,5.605365,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105025,1,"PORT VIEUX",43.1741,5.608366,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105026,1,"LA POSTE",43.175985,5.60405,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105030,1,"SECURITE SOCIALE",43.175508,5.599625,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105032,1,"CANTE COUCOU",43.17164,5.600548,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105034,1,"MARC SANGNIER",43.172371,5.599004,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105036,1,"JEAN MOULIN",43.175574,5.597761,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105038,1,"TROIS CITERNES",43.17825,5.597593,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105040,1,"LA ROCADE",43.178862,5.596682,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105042,1,"BELLEVUE",43.17889,5.595455,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105044,1,"LA CLAIRETTE",43.178983,5.593285,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105046,1,"BUCELLE",43.179537,5.591621,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105048,1,"FARDELOUP",43.186394,5.590276,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105049,1,"PIN DE LA FADE",43.184371,5.594413,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105051,1,"ST LOUP",43.183284,5.597055,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105053,1,"CENTRE COMMERCIAL",43.1865,5.600396,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105054,1,"PUITS DE BRUNET",43.187222,5.600339,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105056,1,"PISCINE",43.184015,5.599935,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105058,1,"JULES FERRY",43.183561,5.602736,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105061,1,"LUMIERE",43.184536,5.605028,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105062,1,"PROVENCE LOGIS",43.182004,5.605437,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105064,1,"LA MARINE",43.180046,5.60535,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105066,1,"MISSION LOCALE",43.178588,5.605685,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105068,1,"LE LIDO",43.178446,5.610654,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105070,1,"LA LICORNE",43.180471,5.611482,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105072,1,"CAMUGLI",43.183179,5.612607,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105074,1,"SECADOU",43.184589,5.613535,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105076,1,"SALIS",43.187162,5.614984,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105078,1,"LANGUEDOC",43.189732,5.616827,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105080,1,"STE MARGUERITE",43.19127,5.617689,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105082,1,"ALOUETTES",43.192924,5.618005,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105084,1,"ABEILLE ECOLE",43.195392,5.61817,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105086,1,"ABEILLE",43.196895,5.616351,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105087,1,"ROUMANILLE",43.196273,5.620519,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105089,1,"MAURELLE SUD",43.197041,5.621017,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105091,1,"LAVAUX",43.198503,5.625538,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105093,1,"CIGALOU",43.197953,5.631149,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105096,1,"GARE SNCF",43.199494,5.632516,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105097,1,"SAINTE BRIGITTE",43.198269,5.632846,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105099,1,"HOMME ROUGE",43.194542,5.634764,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105101,1,"CYTHARISTA",43.191604,5.639069,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105103,1,"BAIE DES ANGES",43.189511,5.645701,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105105,1,"FONTSAINTE",43.190895,5.639901,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105107,1,"ESPANET PLAGE",43.189447,5.634619,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105109,1,"ST JEAN ECOLE",43.188656,5.631415,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105111,1,"ST JEAN CABANON",43.189114,5.629069,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105113,1,"ST JEAN PORT",43.187385,5.625935,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105115,1,"GRANDE PLAGE",43.187083,5.62287,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105117,1,"ALLEE LUMIERE",43.185772,5.620152,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105119,1,"CYRNOS",43.184612,5.617506,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105121,1,"VILLA DES TOURS",43.182125,5.614156,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105130,1,"ERNEST SUBILIA",43.186516,5.607869,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105133,1,"LA PLAINE",43.189437,5.609104,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105134,1,"OMBELLES",43.191236,5.608789,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105136,1,"LA TREILLE",43.193046,5.609605,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105138,1,"ROUMAGOUA",43.194505,5.610978,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105140,1,"LES MATAGOTS",43.195454,5.612003,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105142,1,"STE HERMENTAIRE",43.198151,5.614677,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105144,1,"MAURELLE NORD",43.200702,5.620661,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105146,1,"LA PROVIDENCE",43.201788,5.623096,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105147,1,"LA CROIX",43.212341,5.629121,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105149,1,"COOPERATIVE",43.213399,5.630092,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105151,1,"MAIRIE CEYRESTE",43.214286,5.631397,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105153,1,"LES PALMIERS",43.218326,5.635993,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105155,1,"LA GRANETTE",43.218905,5.639691,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105157,1,"LA CALADE",43.220997,5.644201,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105159,1,"LE CANTOUNET",43.221884,5.64606,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105161,1,"PLAN DE MASSE",43.223163,5.648888,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105164,1,"LES SEVERIERS",43.203345,5.610191,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105166,1,"LES CHARMETTES",43.206611,5.608865,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105168,1,"MARCEL CANNEDU",43.208063,5.607263,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105170,1,"ATLAS",43.207662,5.605962,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105172,1,"ROND POINT DES VOILES",43.206797,5.601585,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105174,1,"FAUBOURG DE L' ENTREPRISE",43.202941,5.598847,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105176,1,"PLAINE BRUNETTE",43.201641,5.597543,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105178,1,"OEIL EMERGENCE",43.200272,5.595819,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105181,1,"ATHELIA I",43.200476,5.594429,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105183,1,"HOPITAL",43.178741,5.60922,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105184,1,"JARDIN DE LA VILLE",43.179007,5.607294,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105187,1,"LYCEE MEDITERRANEE",43.19095,5.611366,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105191,1,"CHEMIN DU GAROUTIER",43.202724,5.625116,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105193,1,"CHEMIN DE VALTENDRE",43.204376,5.626698,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105197,1,"PONT DE L'AUTOROUTE",43.209233,5.628415,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105199,1,"CENTRE MEDICAL",43.210449,5.628927,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105202,1,"GRAND VIGNE",43.215883,5.633259,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105207,1,"CAMUSSO",43.178723,5.599463,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105209,1,"HOTEL DES IMPOTS",43.179118,5.602152,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105213,1,"LA CROIX DE MALTE",43.177728,5.608536,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105215,1,"BAIE DES ANGES",43.189703,5.649912,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105220,1,"COLLEGE MATAGOTS",43.193236,5.613042,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105222,1,"CALENDAL",43.19183,5.619077,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105223,1,"PEYMIAN",43.190287,5.624734,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105302,1,"LE CONSERVATOIRE",43.170805,5.601407,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105303,1,"ST JEAN LA POSTE",43.188614,5.627682,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105304,1,"SEMAPHORE",27.140959,-3.404569,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105309,1,"ECOLE DES SEVERIERS",43.203345,5.610191,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105311,1,"LE VIEUX MAS",43.20099,5.605941,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105313,1,"LA LIONNE",43.197543,5.607601,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105315,1,"DOMAINE DE LA TOUR",43.191089,5.604226,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105317,1,"ROUTE DE MARSEILLE",27.140959,-3.404569,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105319,1,"LUMIERE",27.140959,-3.404569,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105323,1,"KENNEDY",43.179114,5.605137,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105324,1,"EMILIE RIPERT",43.191815,5.617095,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105325,1,"HOTEL IBIS",43.205654,5.602421,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105326,1,"GENEVRIERS",43.206936,5.597762,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105327,1,"JUJUBIERS",43.206096,5.594632,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105329,1,"MIREILLE",43.189651,5.628879,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105330,1,"CARBET",43.190358,5.641888,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105353,1,"CAMPING BAIE DES ANGES",43.186402,5.657843,,1,,Europe/Paris,,OM2, +OM2:SA:CTP105358,1,"LES BASTIDES DU GARLABAN",43.220399,5.628808,,1,,Europe/Paris,,OM2, +OM3:SA:CTP7003,1,"Ile d'If",43.280358,5.326504,,1,,Europe/Paris,,OM3, +OM3:SA:CTP7004,1,"Frioul",43.280136,5.307049,,1,,Europe/Paris,,OM3, +OM4:SA:CTP3000061,1,"Plaine des sports",43.393424,5.141003,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3000069,1,"Sécurité sociale",43.386763,5.158197,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3000610,1,"Foyer li sian ben",43.391265,5.177281,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3000612,1,"Mairie annexe",43.396263,5.117301,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3020000,1,"Bastides",43.369503,5.269705,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3020003,1,"Chenes Verts",43.370623,5.267519,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3020004,1,"Les Coulets",43.372089,5.261233,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3020006,1,"Héritages",43.367158,5.262695,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3020007,1,"Jardins",43.368468,5.268087,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3020008,1,"Logis Neuf",43.372389,5.265107,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3020010,1,"Le Mas",43.370617,5.257152,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3020011,1,"Ricarde",43.367461,5.262797,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3020012,1,"Saint Roch",43.368045,5.250513,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3020104,1,"Les Coulets",43.368735,5.245963,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3020109,1,"La Poste",43.369777,5.25065,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3020500,1,"Anthénors",43.333061,5.202776,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3020501,1,"Bartavelle",43.35073,5.215255,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3020502,1,"Bergerie",43.363791,5.238884,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3020503,1,"Bibliothèque",43.355597,5.200699,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3020504,1,"Bourgailles",43.348353,5.203935,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3020505,1,"Celier",43.368725,5.245987,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3020506,1,"Cote Bleue",43.356118,5.200355,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3020507,1,"Chantegrive EDF",43.352471,5.214048,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3020510,1,"Chardonerets",43.35272,5.206408,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3020511,1,"Cimetière d'Ensues",43.353796,5.198403,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3020512,1,"Colleton",43.354464,5.202367,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3020518,1,"Falaise",43.331669,5.213842,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3020519,1,"Figuières",43.331886,5.211439,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3020520,1,"Flamants Rose",43.351003,5.211781,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3020521,1,"Gare SNCF Ensues",43.334559,5.198195,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3020523,1,"Grand Méjan",43.333253,5.218159,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3020524,1,"Grand Pins",43.340236,5.197049,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3020529,1,"Magnolias",43.344616,5.201777,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3020533,1,"Niolon Gare",43.340242,5.256776,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3020535,1,"Pachons",43.355347,5.207033,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3020537,1,"Petit Méjan",43.331471,5.217232,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3020538,1,"Plateau la Brise",43.337773,5.198367,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3020540,1,"Mairie",43.357098,5.205765,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3020542,1,"Rond Point Chantegrive",43.351558,5.209517,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3020544,1,"Souvenir Français",43.355492,5.196528,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3020546,1,"Vesse",43.342693,5.259919,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3020548,1,"Village Redonne",43.333592,5.199391,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3020610,1,"Chardonerets",43.333367,5.192617,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3021001,1,"Boulodrome",43.333303,5.151373,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3021002,1,"Camping",43.330006,5.136061,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3021003,1,"Centre Commercial",43.330191,5.137967,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3021005,1,"Cimetière Carry",43.333839,5.154257,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3021006,1,"Ecole Crèche",43.336432,5.15686,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3021007,1,"Ecole Thoulouze",43.336841,5.156338,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3021011,1,"Gare SNCF Carry",43.336357,5.153555,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3021012,1,"Général Leclerc",43.332329,5.163828,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3021015,1,"Hauts de Jas",43.337571,5.165195,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3021017,1,"Jean Bart",43.336996,5.170291,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3021018,1,"Jean Jaurès",43.331537,5.152185,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3021019,1,"L'Eden",43.335508,5.142328,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3021020,1,"Lombardie",43.33607,5.16687,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3021022,1,"Montagnette",43.334929,5.163414,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3021026,1,"Port Carry",43.330783,5.153873,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3021027,1,"Rd Pt Patissière",43.332304,5.146939,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3021028,1,"Rd Pt Corniche",43.328517,5.118585,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3021029,1,"Restanques",43.334465,5.158476,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3021030,1,"Romaron",43.334304,5.169086,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3021031,1,"Carry Le Rouet",43.336262,5.176328,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3021033,1,"Route Côte Bleue",43.331784,5.158898,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3021034,1,"Square de Gaulle",43.33349,5.142476,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3021035,1,"Tasse",43.329864,5.157363,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3021036,1,"Théâtre de Verdure",43.334928,5.150097,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3021037,1,"Tuilière",43.329811,5.141495,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3021040,1,"Le Grand Pin",43.336605,5.178328,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3021500,1,"Aigue Bleue",43.337796,5.113393,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3021501,1,"Ambrogiani",43.336841,5.10683,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3021503,1,"Rond Point Brûlot",43.333684,5.108599,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3021505,1,"Canoubier",43.335056,5.102827,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3021507,1,"Cimetière Sausset",43.334663,5.110063,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3021508,1,"Collège Matraja",43.339703,5.101141,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3021509,1,"Les Coquillages",43.329282,5.129005,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3021510,1,"Crêche Sausset",43.332004,5.099107,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3021514,1,"Frederic Mistral",43.329405,5.111348,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3021515,1,"Frioul",43.334306,5.103653,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3021516,1,"Gare SNCF Sausset",43.33305,5.110896,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3021517,1,"Gd Vallat Nord",43.336068,5.10088,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3021518,1,"Gd Vallat Sud",43.331182,5.098206,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3021520,1,"Jean Moulin",43.332238,5.104686,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3021521,1,"Jean Sébastien Bach",43.339367,5.114528,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3021522,1,"Jules Ferry",43.329296,5.114201,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3021526,1,"Marcel Bodelle",43.331999,5.124062,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3021527,1,"Mare Nostrum",43.336299,5.102739,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3021529,1,"Micocoulier",43.336528,5.099079,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3021530,1,"Parc de Loisirs",43.33133,5.11898,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3021532,1,"Petit Rouveau",43.329901,5.125586,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3021533,1,"Peuplier",43.333126,5.094641,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3021534,1,"Police Municipale",43.33102,5.110109,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3021536,1,"Rive d'Or",43.330616,5.113562,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3021538,1,"Roland Garros",43.334891,5.095243,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3021543,1,"Terrasses",43.341256,5.114509,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3021544,1,"Tiboulen",43.334294,5.104133,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3021545,1,"Verdi",43.335854,5.111648,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3022504,1,"Hacienda",43.394882,5.126357,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3022510,1,"Centre Ville Chateauneuf",43.383514,5.164404,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3022511,1,"Chapelle",43.386256,5.168535,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3022523,1,"Les Fourques",43.37865,5.17325,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3022524,1,"Glacière",43.394237,5.134945,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3022539,1,"Marie Curie",43.383522,5.161002,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3022540,1,"Paon",43.387192,5.150654,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3022542,1,"Pins",43.384303,5.157268,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3022545,1,"La Poste",43.397533,5.112156,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3022547,1,"Raffinerie",43.399039,5.105336,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3022550,1,"Sablière",43.394728,5.122958,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3022554,1,"Thyms",43.386031,5.153802,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3022555,1,"Trois Frères",43.400047,5.117199,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3022558,1,"Mairie la Mède",43.396359,5.117242,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3022560,1,"Margnat",43.389333,5.170179,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3022604,1,"Hacienda",43.394682,5.136853,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3062820,1,"Don Camillo",43.32812,5.150121,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3062824,1,"Mediterannée",43.329302,5.145498,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3062885,1,"Douard",43.367358,5.243329,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3062890,1,"Centre Culturel",43.369348,5.250542,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3062915,1,"Résidence du Port",43.403175,5.117918,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3062947,1,"Cimetière Vieux Chateauneuf",43.386634,5.162339,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3062960,1,"Stade",43.382161,5.167629,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3062971,1,"Les Hérons",43.349544,5.21574,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3062973,1,"Hotel de ville",43.355196,5.205615,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3062976,1,"Graffiane",43.344234,5.201252,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3063000,1,"Corbières",43.360298,5.298165,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3063002,1,"Resquiadou",43.355126,5.284366,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3621041,1,"Le Rouet Plage",43.33682,5.177099,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3625896,1,"ZI La Valampe",43.389315,5.14497,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3625900,1,"Club Hippique",43.399212,5.136943,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3625902,1,"Vieux Moulin",43.383171,5.165062,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3625904,1,"Les Michelles",43.381831,5.168006,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3625906,1,"Le Grand Jas",43.378979,5.17238,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3625910,1,"Les Amandereits",43.378716,5.177191,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3625912,1,"Marie Mauron",43.402501,5.11814,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3625914,1,"Camille Pelletan",43.400209,5.109377,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3625916,1,"Valampe",43.387918,5.147741,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3625918,1,"Médiathèque",43.383402,5.163858,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3625922,1,"Le Stade",43.340335,5.114987,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3625924,1,"Général Leclerc",43.329196,5.112931,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3625926,1,"Lotissement de la Mer",43.329401,5.133424,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3625928,1,"Les Grillons",43.329456,5.130808,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3625930,1,"Les Sylvestres",43.330313,5.127027,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3625932,1,"Square du 8 Mai",43.331168,5.125599,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3625934,1,"La Colombière",43.330188,5.128018,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3625936,1,"Bel Air",43.330898,5.126163,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3625938,1,"Les Campanules",43.332169,5.12465,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3625943,1,"Le Cellier",43.344234,5.201252,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3625944,1,"Bessou",43.370864,5.253368,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3625946,1,"Estaque Castejon",43.361596,5.306559,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3625948,1,"Espace Mistral",43.362089,5.309875,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3625949,1,"Espace Mistral",43.35973,5.316482,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3625950,1,"Estaque Fontaine de Tuiles",43.359059,5.317963,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3625952,1,"Littoral Chamant",43.347171,5.34417,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3625953,1,"Littoral Pas de Faon",43.351373,5.340188,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3625956,1,"Littoral Bemabo",43.335659,5.354481,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3625958,1,"Cap Pinède",43.32615,5.358809,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3625960,1,"Saint Cassien",43.320061,5.362689,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3625964,1,"Dames République",43.302388,5.369821,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3625966,1,"Métro Jules Guesde",43.301873,5.372109,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3625968,1,"Gare Saint-Charles",43.303894,5.380145,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3626003,1,"Littoral Jean Labro",43.352412,5.338111,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3626005,1,"Estaque Port",43.359953,5.315249,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3626015,1,"Joliot Curie",43.3674,5.243442,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3626043,1,"Arenc Mirabeau",43.313586,5.365881,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3626045,1,"Charleroux",43.331112,5.111431,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3626046,1,"Creux du loup",43.359389,5.228691,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3626047,1,"Creux du loup 2",43.356906,5.216686,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3626049,1,"Fontaine",43.328802,5.145375,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3626050,1,"Joliette",43.304621,5.366516,,1,,Europe/Paris,,OM4, +OM4:SA:CTP3626052,1,"Le Silo",43.309991,5.367083,,1,,Europe/Paris,,OM4, +OM5:SA:CTP4019526,1,"Valmante Roubin",43.245432,5.412552,,1,,Europe/Paris,,OM5, +OM5:SA:CTP4019528,1,"Obélisque",43.25107,5.403252,,1,,Europe/Paris,,OM5, +OM5:SA:CTP4019529,1,"Le Corbusier",43.261341,5.397447,,1,,Europe/Paris,,OM5, +OM5:SA:CTP4019530,1,"Rond Pt du Prado",43.272525,5.390803,,1,,Europe/Paris,,OM5, +OM5:SA:CTP4019531,1,"Perier",43.279204,5.387392,,1,,Europe/Paris,,OM5, +OM5:SA:CTP4019534,1,"Luminy Lachamp",43.24622,5.432174,,1,,Europe/Paris,,OM5, +OM5:SA:CTP4019535,1,"Le Redon",43.244946,5.428061,,1,,Europe/Paris,,OM5, +OM5:SA:CTP4019625,1,"Castellane",43.28536,5.384165,,1,,Europe/Paris,,OM5, +OM5:SA:CTP4019632,1,"Gare du Prado",43.282812,5.391609,,1,,Europe/Paris,,OM5, +OM5:SA:CTP4021144,1,"Collège Saint Augustin",43.251057,5.552452,,1,,Europe/Paris,,OM5, +OM5:SA:CTP4021519,1,"Huit Mai 1945",43.219647,5.536524,,1,,Europe/Paris,,OM5, +OM5:SA:CTP4025015,1,"Leriche",43.215008,5.543838,,1,,Europe/Paris,,OM5, +OM5:SA:CTP4025016,1,"Les Brayes",43.221654,5.535995,,1,,Europe/Paris,,OM5, +OM5:SA:CTP4025019,1,"Parc Régis Vidal",43.224662,5.545472,,1,,Europe/Paris,,OM5, +OM5:SA:CTP4025020,1,"Résidence du Vallat",43.221699,5.536076,,1,,Europe/Paris,,OM5, +OM5:SA:CTP4025023,1,"St Jean",43.224068,5.544818,,1,,Europe/Paris,,OM5, +OM5:SA:CTP4025024,1,"Terres Marines",43.217693,5.528604,,1,,Europe/Paris,,OM5, +OM5:SA:CTP4025049,1,"Les Terrasses",43.227035,5.534377,,1,,Europe/Paris,,OM5, +OM5:SA:CTP4025101,1,"Albizzi",43.229471,5.550212,,1,,Europe/Paris,,OM5, +OM5:SA:CTP4025102,1,"Augustin Isnard",43.216266,5.541062,,1,,Europe/Paris,,OM5, +OM5:SA:CTP4025103,1,"Belsunce",43.218783,5.534119,,1,,Europe/Paris,,OM5, +OM5:SA:CTP4025104,1,"Cabrol",43.221653,5.535995,,1,,Europe/Paris,,OM5, +OM5:SA:CTP4025105,1,"Casino",43.213787,5.541442,,1,,Europe/Paris,,OM5, +OM5:SA:CTP4025106,1,"Vence",43.217561,5.541357,,1,,Europe/Paris,,OM5, +OM5:SA:CTP4025107,1,"Cépages",43.223089,5.539996,,1,,Europe/Paris,,OM5, +OM5:SA:CTP4025108,1,"Clos des Oliviers",43.224003,5.541743,,1,,Europe/Paris,,OM5, +OM5:SA:CTP4025109,1,"Ferme Blanche",43.225087,5.542328,,1,,Europe/Paris,,OM5, +OM5:SA:CTP4025110,1,"Fontblanche",43.228771,5.538435,,1,,Europe/Paris,,OM5, +OM5:SA:CTP4025111,1,"Gare SNCF",43.233925,5.552879,,1,,Europe/Paris,,OM5, +OM5:SA:CTP4025112,1,"Gendarmerie",43.215088,5.542796,,1,,Europe/Paris,,OM5, +OM5:SA:CTP4025117,1,"Collège Les Gorguettes",43.228175,5.537255,,1,,Europe/Paris,,OM5, +OM5:SA:CTP4025118,1,"Les Hauts Cépages",43.223089,5.539996,,1,,Europe/Paris,,OM5, +OM5:SA:CTP4025162,1,"Val d'Or",43.217005,5.536278,,1,,Europe/Paris,,OM5, +OM5:SA:CTP4026004,1,"La Poste",43.248749,5.587,,1,,Europe/Paris,,OM5, +OM5:SA:CTP4026013,1,"Place Victoire",43.247402,5.59389,,1,,Europe/Paris,,OM5, +OM5:SA:CTP4026100,1,"Hôtel de Ville",43.247379,5.591546,,1,,Europe/Paris,,OM5, +OM5:SA:CTP4027504,1,"Les Barles",43.262355,5.579941,,1,,Europe/Paris,,OM5, +OM5:SA:CTP4027511,1,"La Gineste",43.240602,5.457411,,1,,Europe/Paris,,OM5, +OM5:SA:CTP4027513,1,"Le Messuguet",43.231768,5.543255,,1,,Europe/Paris,,OM5, +OM5:SA:CTP4027514,1,"Le Panorama",43.253941,5.560146,,1,,Europe/Paris,,OM5, +OM5:SA:CTP4027515,1,"Le Stade",43.249825,5.553455,,1,,Europe/Paris,,OM5, +OM5:SA:CTP4027519,1,"Lou Caire",43.261207,5.574568,,1,,Europe/Paris,,OM5, +OM5:SA:CTP4027520,1,"Mont Fleuri",43.26013,5.572182,,1,,Europe/Paris,,OM5, +OM5:SA:CTP4027521,1,"Notre Dame d'Afrique",43.257104,5.567442,,1,,Europe/Paris,,OM5, +OM5:SA:CTP4027526,1,"Stade",43.249825,5.553455,,1,,Europe/Paris,,OM5, +OM5:SA:CTP4027532,1,"Pont des Barles",43.265816,5.58622,,1,,Europe/Paris,,OM5, +OM5:SA:CTP4027605,1,"Carpiagne Carnoux",43.247857,5.548653,,1,,Europe/Paris,,OM5, +OM5:SA:CTP4027634,1,"Collège St Augustin",43.251057,5.552452,,1,,Europe/Paris,,OM5, +OM5:SA:CTP4028527,1,"St Loup Florian",43.281163,5.427355,,1,,Europe/Paris,,OM5, +OM5:SA:CTP4028528,1,"Jean Perrin",43.275154,5.425323,,1,,Europe/Paris,,OM5, +OM5:SA:CTP4028629,1,"Ampère",43.279514,5.423801,,1,,Europe/Paris,,OM5, +OM5:SA:CTP4029001,1,"Gare Routière",43.173954,5.610289,,1,,Europe/Paris,,OM5, +OM5:SA:CTP4029002,1,"L'Eden",43.177466,5.610713,,1,,Europe/Paris,,OM5, +OM5:SA:CTP4029003,1,"Les Flots Bleus",43.180173,5.612186,,1,,Europe/Paris,,OM5, +OM5:SA:CTP4029004,1,"Lido",43.17919,5.611446,,1,,Europe/Paris,,OM5, +OM5:SA:CTP4029005,1,"Rd Pt Bodin",43.19027,5.603959,,1,,Europe/Paris,,OM5, +OM5:SA:CTP4029006,1,"Subilia",43.185004,5.608483,,1,,Europe/Paris,,OM5, +OM5:SA:CTP4029007,1,"Vallat de Roubaud",43.187194,5.615152,,1,,Europe/Paris,,OM5, +OM5:SA:CTP4029008,1,"Villa des Tours",43.184339,5.617481,,1,,Europe/Paris,,OM5, +OM5:SA:CTP4029010,1,"Lycée Lumière",43.184208,5.604727,,1,,Europe/Paris,,OM5, +OM5:SA:CTP4029011,1,"Lycée Méditerranée",43.190653,5.613458,,1,,Europe/Paris,,OM5, +OM5:SA:CTP4029014,1,"Notre Dame Bon Voyage",43.180502,5.611616,,1,,Europe/Paris,,OM5, +OM5:SA:CTP4029015,1,"Collège Jean Jaures",43.173917,5.603494,,1,,Europe/Paris,,OM5, +OM5:SA:CTP4029016,1,"Route de Marseille",43.183184,5.611708,,1,,Europe/Paris,,OM5, +OM5:SA:CTP4029109,1,"collège Virebelle",43.185403,5.599645,,1,,Europe/Paris,,OM5, +OM5:SA:CTP4029112,1,"Collège Matagots",43.196241,5.612858,,1,,Europe/Paris,,OM5, +OM5:SA:CTP4029113,1,"Impasse Tivoli",43.182038,5.612457,,1,,Europe/Paris,,OM5, +OM5:SA:CTP4029117,1,"Carpiagne Gineste",43.236545,5.502226,,1,,Europe/Paris,,OM5, +OM5:SA:CTP4029119,1,"Lachamp Augier",43.248408,5.436969,,1,,Europe/Paris,,OM5, +OM5:SA:CTP4029121,1,"Grands Pins",43.248841,5.440642,,1,,Europe/Paris,,OM5, +OM5:SA:CTP4029123,1,"Lachamp Luminy",43.247179,5.435152,,1,,Europe/Paris,,OM5, +OM5:SA:CTP4029125,1,"Les Caniers",43.250752,5.584117,,1,,Europe/Paris,,OM5, +OM5:SA:CTP4029127,1,"Centre Ville",43.246997,5.592012,,1,,Europe/Paris,,OM5, +OM5:SA:CTP4029131,1,"Aquagem",43.285463,5.616808,,1,,Europe/Paris,,OM5, +OM6:SA:CTP2000000,1,"Les Charrons",43.297,5.623919,,1,,Europe/Paris,,OM6, +OM6:SA:CTP2000002,1,"Les Craux",43.300725,5.61885,,1,,Europe/Paris,,OM6, +OM6:SA:CTP2000004,1,"Quartier de Jouques",43.277451,5.620879,,1,,Europe/Paris,,OM6, +OM6:SA:CTP2000007,1,"Les Alliés",43.297162,5.629223,,1,,Europe/Paris,,OM6, +OM6:SA:CTP2000008,1,"Les Alliés",43.295342,5.626397,,1,,Europe/Paris,,OM6, +OM6:SA:CTP2000009,1,"Collège de Gémenos",43.288112,5.621354,,1,,Europe/Paris,,OM6, +OM6:SA:CTP2000010,1,"Les Ophéliades",43.284912,5.617478,,1,,Europe/Paris,,OM6, +OM6:SA:CTP2000011,1,"Aquagem",43.285463,5.616808,,1,,Europe/Paris,,OM6, +OM6:SA:CTP2000012,1,"Coulin",43.274168,5.636471,,1,,Europe/Paris,,OM6, +OM6:SA:CTP2000014,1,"Lotissement Les Nègles",43.27746,5.633226,,1,,Europe/Paris,,OM6, +OM6:SA:CTP2000016,1,"Routelle",43.292325,5.626237,,1,,Europe/Paris,,OM6, +OM6:SA:CTP2000018,1,"La Culasse",43.304335,5.617271,,1,,Europe/Paris,,OM6, +OM6:SA:CTP2000019,1,"La Culasse",27.140968,-3.404561,,1,,Europe/Paris,,OM6, +OM6:SA:CTP2000020,1,"Les Cyprés",43.306293,5.615301,,1,,Europe/Paris,,OM6, +OM6:SA:CTP2000021,1,"Garlaban",43.303803,5.614679,,1,,Europe/Paris,,OM6, +OM6:SA:CTP2000023,1,"Quatre Chemins",43.308327,5.608459,,1,,Europe/Paris,,OM6, +OM6:SA:CTP2000024,1,"Quatre Chemins",27.140968,-3.404561,,1,,Europe/Paris,,OM6, +OM6:SA:CTP2000025,1,"Saint Clair",43.312913,5.613794,,1,,Europe/Paris,,OM6, +OM6:SA:CTP2000026,1,"Saint Jean de Garguier",43.313559,5.612354,,1,,Europe/Paris,,OM6, +OM6:SA:CTP2000027,1,"Fontmagne",43.277088,5.625105,,1,,Europe/Paris,,OM6, +OM6:SA:CTP2000029,1,"Le Plateau",27.140959,-3.404569,,1,,Europe/Paris,,OM6, +OM6:SA:CTP2000030,1,"Les Grands Cêdres",27.140959,-3.404569,,1,,Europe/Paris,,OM6, +OM7:SA:CTP5000061,1,"La Valentine",43.296592,5.483428,,1,,Europe/Paris,,OM7, +OM7:SA:CTP5000062,1,"Ruissatel",43.295749,5.489206,,1,,Europe/Paris,,OM7, +OM7:SA:CTP5000063,1,"Camoins Croisement",43.29757,5.497115,,1,,Europe/Paris,,OM7, +OM7:SA:CTP5000064,1,"Ecoles Pounche",43.334511,5.466648,,1,,Europe/Paris,,OM7, +OM7:SA:CTP5023500,1,"Centre",43.336805,5.482808,,1,,Europe/Paris,,OM7, +OM7:SA:CTP5023510,1,"Barbaraou",43.322354,5.492916,,1,,Europe/Paris,,OM7, +OM7:SA:CTP5023512,1,"La Bourdonnière",43.358171,5.491782,,1,,Europe/Paris,,OM7, +OM7:SA:CTP5023522,1,"Général Leclerc",43.341557,5.485755,,1,,Europe/Paris,,OM7, +OM7:SA:CTP5023526,1,"Jean Giono",43.334149,5.480444,,1,,Europe/Paris,,OM7, +OM7:SA:CTP5023530,1,"La Fève",43.363848,5.496298,,1,,Europe/Paris,,OM7, +OM7:SA:CTP5023531,1,"La Pounche",43.332358,5.464158,,1,,Europe/Paris,,OM7, +OM7:SA:CTP5023533,1,"L'Afférage",43.341001,5.474019,,1,,Europe/Paris,,OM7, +OM7:SA:CTP5023534,1,"Guéridon",43.331629,5.486687,,1,,Europe/Paris,,OM7, +OM7:SA:CTP5023537,1,"Route du Clau",43.347293,5.488608,,1,,Europe/Paris,,OM7, +OM7:SA:CTP5023539,1,"Les Blacassins",43.341999,5.471251,,1,,Europe/Paris,,OM7, +OM7:SA:CTP5023543,1,"Les Embus",43.324558,5.480928,,1,,Europe/Paris,,OM7, +OM7:SA:CTP5023547,1,"Logis Neuf",43.356925,5.487066,,1,,Europe/Paris,,OM7, +OM7:SA:CTP5023549,1,"L'Ouvière",43.327816,5.490654,,1,,Europe/Paris,,OM7, +OM7:SA:CTP5023555,1,"Pié d'Autry",43.341147,5.477957,,1,,Europe/Paris,,OM7, +OM7:SA:CTP5023565,1,"Terrasses du Golf",43.324117,5.488604,,1,,Europe/Paris,,OM7, +OM7:SA:CTP5023567,1,"Zone Fontvieille",43.326475,5.488549,,1,,Europe/Paris,,OM7, +OM7:SA:CTP5023620,1,"Enco de Pont",43.318986,5.474945,,1,,Europe/Paris,,OM7, +OM7:SA:CTP5062700,1,"Place des Aubagnens",43.329339,5.474298,,1,,Europe/Paris,,OM7, +OM7:SA:CTP5062707,1,"Rond Point des Oliviers",43.344363,5.463713,,1,,Europe/Paris,,OM7, +OM7:SA:CTP5062708,1,"Bougainville",43.343415,5.467386,,1,,Europe/Paris,,OM7, +OM7:SA:CTP5062729,1,"La Verte",43.349664,5.487308,,1,,Europe/Paris,,OM7, +OM7:SA:CTP5625874,1,"Les Trois Lucs",43.315989,5.468881,,1,,Europe/Paris,,OM7, +OM7:SA:CTP5625878,1,"Mélizan Visitation",43.296846,5.493332,,1,,Europe/Paris,,OM7, +OM7:SA:CTP5625882,1,"Quatre Saison",43.298456,5.49918,,1,,Europe/Paris,,OM7, +OM7:SA:CTP5625884,1,"Vallon de la Clue",43.319407,5.494143,,1,,Europe/Paris,,OM7, +OM7:SA:CTP5625886,1,"Pont de la Clue",43.310356,5.500022,,1,,Europe/Paris,,OM7, +OM7:SA:CTP5625890,1,"Mille Ecus",43.335188,5.469262,,1,,Europe/Paris,,OM7, +OM7:SA:CTP5625896,1,"Bon Rencontre",27.140959,-3.404569,,1,,Europe/Paris,,OM7, +OM7:SA:CTP5625897,1,"Gonagues",27.140959,-3.404569,,1,,Europe/Paris,,OM7, +OM8:SA:CTP500000,1,"Gare SNCF",43.684556,4.631072,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500001,1,"Lamartine",43.681351,4.632359,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500003,1,"Emile Combes",43.675905,4.632793,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500005,1,"Lycée Montmajour",43.697025,4.641835,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500007,1,"Gabriel Péri",43.673647,4.625298,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500008,1,"Collège Morel",43.683934,4.613266,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500009,1,"Collège Van Gogh",43.679128,4.636367,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500011,1,"Les Razeteurs",43.453015,4.428096,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500013,1,"La Brise",43.454109,4.433437,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500014,1,"Pont Blanc",43.457044,4.426715,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500016,1,"Le Boumian",43.467985,4.416161,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500018,1,"Maguelonne",43.481634,4.405117,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500020,1,"Pont de Gau",43.489839,4.403198,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500022,1,"Taxil",43.503987,4.400976,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500024,1,"Auberge Jeunesse",43.524764,4.401179,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500026,1,"Pioch Badet",43.522391,4.402081,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500027,1,"Sénébier",43.545884,4.366244,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500028,1,"Les Massoucles",43.455916,4.428772,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500030,1,"Cabane de Cambon",43.520548,4.375107,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500031,1,"Mas du Tadorne",43.46964,4.414078,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500033,1,"Groupe Scolaire",43.453827,4.432298,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500034,1,"Mas Astouin",43.530399,4.367599,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500035,1,"Château d'Avignon",43.555693,4.413669,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500037,1,"Les Passerons",43.666383,4.590826,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500039,1,"L'Oustalet",43.621446,4.50573,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500041,1,"Pont de Rousty / Musée",43.627044,4.529919,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500043,1,"Bastières",43.649922,4.575068,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500045,1,"Mas de la Butte",43.637811,4.554714,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500047,1,"Paty de la Trinité",43.582801,4.464956,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500049,1,"Albaron L'Agachon",43.610516,4.477534,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500050,1,"Mas de Broglie",43.615885,4.483459,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500051,1,"Mas de Broglie",43.613945,4.480714,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500052,1,"Mas de Ventabren",43.573503,4.421476,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500053,1,"Mas de Ventabren",43.575051,4.425775,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500054,1,"Les Bruns",43.578297,4.453979,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500056,1,"Mas D'Eymini",43.580072,4.435899,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500058,1,"Ecole de Gageron",43.610885,4.605893,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500059,1,"Beynes",43.6176,4.592227,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500060,1,"Petit Montlong",43.628232,4.615245,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500062,1,"Bar des Sports",43.414323,4.735728,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500067,1,"Entre les 2 gares",43.691494,4.633642,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500070,1,"9 Collines",43.690113,4.64901,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500071,1,"Aire d'Accueil",43.663657,4.631784,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500073,1,"La Genouillade",43.673169,4.644793,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500076,1,"Amphithéâtre",43.679321,4.629891,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500078,1,"Antonelle",43.677246,4.624533,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500080,1,"Arcades",43.663194,4.648945,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500082,1,"Armellière",43.568252,4.668268,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500084,1,"Avenue des Arches",43.663871,4.639581,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500086,1,"Auriol",43.677171,4.641002,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500088,1,"Avergues",43.672392,4.591496,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500090,1,"Balot",43.663335,4.700549,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500091,1,"Balarin",43.648192,4.695136,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500093,1,"Barcarin",43.419811,4.733234,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500095,1,"Barriol",43.662919,4.618143,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500100,1,"Mas Beaulieu",43.578183,4.660625,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500102,1,"Beauregard",43.599057,4.758289,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500104,1,"Bellombre",43.642944,4.728707,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500106,1,"Mas Bellan",43.585834,4.733604,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500108,1,"Benoît",43.679633,4.61984,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500110,1,"Benoit",43.679629,4.619848,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500112,1,"La Bienheureuse",43.648247,4.703837,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500114,1,"Bigot",43.669568,4.629974,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500117,1,"Domaine de Boisviel",43.504166,4.753048,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500118,1,"Boysset",43.681587,4.603006,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500119,1,"Brissy",43.680626,4.634117,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500121,1,"Brossolette",43.681292,4.619143,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500123,1,"Boisviel St Pierre",43.510397,4.749152,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500125,1,"Les Bastidettes",43.577223,4.753604,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500127,1,"Les Cabanettes",43.665691,4.466047,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500128,1,"Cabane de la Lune",43.663057,4.687494,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500129,1,"Lou Cassaire",43.530903,4.734613,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500131,1,"Camargue",43.680565,4.620875,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500135,1,"Cavalerie",43.681008,4.631291,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500136,1,"Bois de Cays",43.644778,4.700011,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500138,1,"Cazeneuve",43.678329,4.592816,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500140,1,"CC l' Aurélienne",43.667058,4.635531,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500141,1,"CC l'Aurélienne",43.6669,4.635347,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500142,1,"COLLEGE MISTRAL",43.683911,4.630395,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500144,1,"CFA",43.678658,4.602631,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500146,1,"Champ de Tir",43.66139,4.660271,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500147,1,"Chamone",43.433604,4.718005,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500153,1,"Chateaubriand",43.682536,4.638126,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500155,1,"Cigalon",43.67881,4.599924,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500157,1,"Ilon",43.680076,4.75011,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500158,1,"Clemenceau",43.675026,4.625448,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500160,1,"Clémenceau",43.675098,4.625846,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500166,1,"Chemin Noir",43.686316,4.641961,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500168,1,"Mas Compagnon",43.663345,4.739637,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500170,1,"Copernic",43.699764,4.633995,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500172,1,"Coty",43.69268,4.637206,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500174,1,"Croisière",43.675859,4.632884,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500178,1,"Croix de Cazeneuve",43.670049,4.591857,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500182,1,"Corse",43.655664,4.761484,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500186,1,"Dragées",43.68186,4.615729,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500188,1,"Dunant",43.682708,4.621795,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500190,1,"F. Eboué",43.68328,4.640214,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500193,1,"Ecole de Moules",43.656045,4.740624,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500195,1,"E. Combes",43.679733,4.633989,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500198,1,"Edison",43.685153,4.63819,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500200,1,"Ecole de Gimeaux",43.664666,4.575346,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500201,1,"Ecole Gimeaux",43.664684,4.575411,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500202,1,"E. Giraud",43.677875,4.623006,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500203,1,"Mas Thibert Centre - école",43.558056,4.728326,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500204,1,"Erikson",43.684133,4.612033,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500205,1,"Eyglument",43.680436,4.615535,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500207,1,"Fanton",43.678492,4.624257,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500208,1,"Faraman",43.409066,4.700977,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500209,1,"Fauvettes",43.666062,4.614224,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500211,1,"Flamants",43.665901,4.617524,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500213,1,"Foch",43.671059,4.632381,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500215,1,"La Forêt",43.519443,4.743332,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500217,1,"Fournier",43.670492,4.630149,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500219,1,"Gabelle",43.677302,4.616215,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500220,1,"Gageron",43.609238,4.6099,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500225,1,"Galliéni",43.679919,4.612232,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500226,1,"Ganteaume",43.66389,4.711938,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500227,1,"Mas de Chanoines",43.618388,4.734626,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500228,1,"Grand Rhône",43.709135,4.636687,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500230,1,"Gimeaux",43.673634,4.607177,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500232,1,"Gondran",43.687445,4.617561,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500234,1,"Grenier",43.676876,4.621069,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500238,1,"Haras d'Anibert",43.63384,4.710364,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500240,1,"Hermite",43.668816,4.64484,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500242,1,"Héritier",43.688414,4.642138,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500244,1,"Herriot",43.682772,4.618095,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500246,1,"Hoch",43.673637,4.639646,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500250,1,"Hongrie",43.696168,4.633553,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500252,1,"Hôpital",43.657718,4.633044,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500253,1,"Mas de l'Hoste",43.606259,4.67379,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500254,1,"Victor Hugo",43.674919,4.634014,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500256,1,"Mas d'Icard",43.548796,4.729865,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500258,1,"Ile des Sables",43.686106,4.616292,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500263,1,"Jean Bouin",43.695106,4.63527,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500265,1,"Jerez",43.665716,4.633797,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500268,1,"Jou",43.694928,4.640452,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500270,1,"Jouhaux",43.670977,4.63503,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500272,1,"Koenig",43.685057,4.609824,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500273,1,"La Crau",43.661466,4.652495,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500275,1,"Laennec",43.69095,4.637878,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500277,1,"Laget",43.685718,4.620391,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500281,1,"Lamour",43.693833,4.639767,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500283,1,"Langlois",43.670331,4.621143,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500285,1,"CC La Plaine de Montmajour",43.706317,4.642322,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500286,1,"La Roquette",43.674367,4.622369,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500287,1,"De Lattre",43.685656,4.636934,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500289,1,"Legaresse",43.65098,4.610798,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500291,1,"Le Lac",43.656438,4.63536,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500293,1,"Le Moulin",43.563056,4.738604,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500295,1,"Lesseps",43.668597,4.633558,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500297,1,"Libération",43.699318,4.64245,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500299,1,"Lices",43.675213,4.630269,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500301,1,"Allende",43.669311,4.615243,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500303,1,"Le Sambuc",43.524325,4.706229,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500306,1,"Maternelle Alphonse Daudet",43.647453,4.720466,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500307,1,"Fourchon",43.652752,4.644683,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500308,1,"La Major",43.677624,4.631785,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500309,1,"Mas de l'Amérique",43.441806,4.72409,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500311,1,"Mas de l'Ange",43.620076,4.62824,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500313,1,"Massenet",43.684543,4.641077,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500316,1,"Le Mazet",43.565059,4.74041,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500323,1,"Mas des Dentelles",43.657394,4.611817,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500326,1,"Place des Micocouliers",43.644318,4.717637,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500327,1,"Mas Misere",43.651821,4.760416,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500328,1,"Mas Blanc",43.662501,4.680549,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500329,1,"Moulin de Magnan",43.662224,4.678327,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500330,1,"Mas Meou",43.660129,4.752134,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500331,1,"Mas Millet",43.596508,4.647873,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500335,1,"Croisement Route de Fos",43.625853,4.747817,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500337,1,"Moules centre",43.655618,4.74051,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500340,1,"Moines",43.697855,4.639092,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500342,1,"Montlong",43.634651,4.606741,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500344,1,"Montcaldette",43.66313,4.613569,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500346,1,"Morel",43.684979,4.614912,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500347,1,"Le Moulin",43.658764,4.762408,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500349,1,"Mas de Peint",43.503889,4.707605,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500351,1,"Mas Pédassas",43.634479,4.567448,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500353,1,"Mas Pilier",43.670976,4.604723,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500354,1,"Mas du puits",43.674583,4.610716,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500359,1,"Mas St Michel",43.653901,4.61019,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500362,1,"Salle Polyvalente",43.659453,4.740723,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500363,1,"Musée Antique",43.672002,4.617144,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500369,1,"Péchiney",43.404857,4.724594,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500370,1,"Peaudure",43.470378,4.70657,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500375,1,"Petit Gageron",43.61333,4.602626,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500377,1,"Piscine Montmajour",43.697097,4.641944,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500379,1,"Mas Piston",43.682778,4.719438,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500380,1,"Parc de Loisirs",43.702271,4.63408,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500382,1,"Palais des Congrès",43.669851,4.619234,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500384,1,"Les Plaines",43.6439,4.56817,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500386,1,"Le Plateau",43.658481,4.635944,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500388,1,"Porte de Laure",43.677073,4.630461,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500390,1,"Petit Mandon - moulès",43.659824,4.761661,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500394,1,"Mas de pomme",43.644835,4.69144,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500395,1,"Mas de Pomme",43.644828,4.691701,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500396,1,"Portagnel",43.67763,4.633529,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500398,1,"Prêcheurs",43.681702,4.605699,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500404,1,"Petit d'Arbaud",43.616135,4.57144,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500406,1,"Petit Mandon - rte eyguières",43.661945,4.669994,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500407,1,"Pont Van Gogh",43.658095,4.620812,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500409,1,"Avenue de Provence",43.644901,4.72312,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500410,1,"Ravel",43.696085,4.63523,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500415,1,"Réattu",43.678745,4.628159,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500416,1,"Révolution",43.674905,4.638568,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500418,1,"Ribot",43.69046,4.641872,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500420,1,"Rives Altes",43.68593,4.727268,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500422,1,"Robespierre",43.681099,4.62429,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500425,1,"Roseaux",43.668321,4.613484,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500427,1,"Mas du Roy",43.680734,4.508777,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500429,1,"Saboly",43.677279,4.639118,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500433,1,"Saladelles",43.681751,4.609796,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500435,1,"Saliers",43.663458,4.480311,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500437,1,"Saulcy",43.684278,4.619683,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500438,1,"Saurel",43.686973,4.620001,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500440,1,"Sautet",43.678357,4.639127,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500442,1,"Saxy",43.688646,4.636286,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500444,1,"Simon Bon",43.684285,4.732173,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500445,1,"Sémard",43.683826,4.634183,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500447,1,"Serrailler",43.684573,4.741642,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500450,1,"Séverin",43.678781,4.596182,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500452,1,"Salin de Giraud Centre",43.415388,4.733329,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500453,1,"Salin de Giraud Camargue",43.411104,4.727718,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500455,1,"Salin de Giraud centre",43.415048,4.732785,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500456,1,"Signoret",43.702328,4.641437,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500458,1,"Sonnailler",43.673376,4.604598,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500460,1,"Mas Mon Souci",43.666172,4.725275,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500461,1,"Mas de Mon Souci",43.666324,4.725392,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500462,1,"Souleïado",43.693134,4.633586,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500464,1,"Stalingrad",43.685107,4.633987,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500468,1,"Ste Cécile",43.615962,4.570335,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500470,1,"St Pierre",43.68195,4.625898,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500471,1,"Saint Virgile",43.645884,4.758611,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500473,1,"La Tapie du Bouchet",43.592223,4.760548,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500474,1,"Tour",43.674709,4.620114,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500475,1,"Tournesol",43.686281,4.6111,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500476,1,"Truchet",43.691282,4.638784,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500478,1,"Vallès",43.675509,4.642608,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500480,1,"Vauban",43.675284,4.63223,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500481,1,"Vallée des Baux",43.660946,4.632387,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500483,1,"Verrerie",43.681359,4.621706,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500487,1,"Vigueirat",43.66511,4.637476,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500489,1,"Villeneuve",43.573729,4.624224,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500491,1,"Vissac",43.666319,4.618825,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500493,1,"Villevieille",43.65615,4.664812,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500495,1,"Victor Basch",43.67213,4.627233,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500498,1,"Vert pré",43.643504,4.723937,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500500,1,"Vert village",43.659838,4.655451,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500501,1,"Vert Village",43.659976,4.655296,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500502,1,"Wisbech",43.674161,4.643854,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500504,1,"XVieme Corps",43.680518,4.609395,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500505,1,"York",43.669599,4.637624,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500509,1,"ZI Sud",43.663292,4.623304,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500510,1,"Breuil",43.851849,4.688197,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500512,1,"Lycée Paul Langevin",43.811208,4.640856,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500513,1,"Place Gilles Léontin",43.86088,4.691393,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500514,1,"Caphan école",43.655674,4.799586,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500516,1,"La Clastre",43.865589,4.688677,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500526,1,"Raphèle Eglise",43.646504,4.710891,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500528,1,"Raphèle Centre",43.644674,4.718376,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500530,1,"Ecole Daudet Raphèle",43.647102,4.716998,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500533,1,"Caphan Bois de Boulogne",43.652609,4.788514,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500535,1,"Bld de Provence",43.636573,4.801604,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500537,1,"Mas Boussard",43.636988,4.79885,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500539,1,"Beauséjour",43.66001,4.748075,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500540,1,"Beauséjour",43.659264,4.740791,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500541,1,"Caphan Boulangerie",43.654913,4.793304,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500545,1,"Cuisine Centrale",43.633898,4.799214,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500549,1,"Dynamite est",43.610454,4.78535,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500550,1,"Dynamite Ouest",43.611919,4.78103,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500551,1,"Dynamite village",43.612657,4.783469,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500555,1,"Ecole Pagnol",43.635793,4.802775,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500556,1,"Entrée Ecopôle",43.627755,4.803261,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500558,1,"Maison des Associations",43.637323,4.806452,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500560,1,"Salle des Fêtes",43.639249,4.810435,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500563,1,"Gare de Saint-Martin-de-Crau",43.62225,4.800517,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500564,1,"Relais du Gardian",43.639233,4.739809,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500566,1,"La Crèche",43.63521,4.814906,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500568,1,"Saunier",43.637093,4.745472,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500569,1,"Saint Hippolyte",43.635847,4.753043,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500570,1,"L'imprévu",43.635182,4.761741,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500571,1,"L'Imprévu",43.635359,4.761513,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500572,1,"Jean Jaurès",43.641527,4.802111,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500576,1,"Les Lavandins",43.639593,4.81509,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500578,1,"Lavoisier",43.62545,4.799177,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500580,1,"Léon Blum",43.636012,4.821113,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500582,1,"Lion d'or",43.641192,4.818323,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500585,1,"Manades",43.633103,4.814279,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500587,1,"Rdp Mediterrannée",43.637044,4.79571,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500588,1,"Rdp de la Méditerrannée",43.636992,4.795572,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500589,1,"Pierre Mendès France Nord",43.641343,4.823632,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500591,1,"Cabrau",43.632062,4.803868,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500593,1,"Piscine",43.638193,4.82388,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500595,1,"Planton",43.635544,4.817833,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500597,1,"Collège Charloun Rieu St Martin de Crau",43.642004,4.808299,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500599,1,"Rimandière",43.634437,4.810465,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500601,1,"CC du Salat",43.640361,4.798451,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500603,1,"Stade St Martin de Crau",43.639913,4.803661,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500604,1,"Trident",43.640018,4.81382,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500606,1,"Mairie",43.638551,4.811547,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500608,1,"Valboisé",43.641982,4.809021,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500610,1,"La Poste",43.859038,4.648557,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500612,1,"Avenue Séverine",43.815731,4.664552,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500614,1,"Gare de Tarascon",43.801406,4.657599,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500615,1,"Mas de Bosc",43.751822,4.655808,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500616,1,"Collège René Cassin",43.818727,4.662847,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500617,1,"Sainte Cécile",43.806652,4.670797,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500618,1,"A. Chabaud",43.811667,4.667761,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500620,1,"Cimetière St-Georges",43.80979,4.670584,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500623,1,"Porte Condamine",43.80864,4.66368,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500625,1,"Lycée Alphonse Daudet",43.801863,4.664567,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500629,1,"Les Ferrages",43.806655,4.664929,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500631,1,"St Gabriel",43.767138,4.69042,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500633,1,"Château Gaillard",43.811001,4.656567,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500635,1,"Gambetta",43.804151,4.662742,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500638,1,"Avenue Gouvernet",43.813246,4.6601,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500642,1,"Centre Hospitalier",43.798874,4.665843,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500643,1,"Victor Hugo",43.803179,4.658681,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500645,1,"Jardin des Plantes",43.806506,4.657771,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500649,1,"La Margarido",43.805504,4.668775,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500650,1,"Barrachin",43.753723,4.645683,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500651,1,"Grand Mas",43.765784,4.649877,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500655,1,"Petite Cabanette",43.749967,4.667217,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500658,1,"Les Platanes",43.802909,4.66145,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500664,1,"Mas St Roch",43.748109,4.673551,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500665,1,"Entrée ZAC du Roubian",43.796874,4.690334,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500666,1,"Clos des Vergers",43.800501,4.675223,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500670,1,"Souspiron",43.814255,4.662726,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500675,1,"La Tarasque",43.820672,4.669854,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500676,1,"ZAC du Roubian",43.794645,4.691942,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500677,1,"Mas de Gouin",43.626131,4.803275,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500721,1,"Lycée H. Leroy",43.38692,4.802841,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500723,1,"Mairie Port St Louis",43.38727,4.804076,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500724,1,"Collège Robespierre",43.390543,4.805498,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500726,1,"Stade le Taberner",43.394045,4.797932,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500743,1,"Route de Saint-Rémy",43.801984,4.665873,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500744,1,"Pierre Mendès France Sud",43.639804,4.823895,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500747,1,"Goudègues",43.684524,4.736814,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500748,1,"Mas Granier",43.780793,4.657866,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500751,1,"Vauban",43.397825,4.794199,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500756,1,"ZI Roubian Sud",43.791891,4.685181,,1,,Europe/Paris,,OM8, +OM8:SA:CTP500757,1,"Angelets",43.647751,4.803758,,1,,Europe/Paris,,OM8, +OM9:SA:CTP2199004,1,"Charles de Gaulle",43.705167,5.156136,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199006,1,"La Rocassière",43.705277,5.17056,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199007,1,"Lavoir Grand Fontaine",43.704927,5.167766,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199009,1,"Le Pigeonnier",43.705837,5.158053,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199011,1,"Maréchal Joffre",43.705451,5.162832,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199013,1,"St Jacques",43.705072,5.151841,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199015,1,"La Fontaine",43.663857,5.156473,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199016,1,"Le Lavoir",43.665559,5.157783,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199017,1,"Le Parc",43.661611,5.156374,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199019,1,"Le Petit Sonnailler",43.688676,5.14212,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199020,1,"Centre Ville",43.719623,5.24489,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199021,1,"Espigoulier",43.71731,5.240246,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199022,1,"Jeu de Boules",43.718449,5.245389,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199023,1,"Le Stade",43.719999,5.253331,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199025,1,"Les Cadenières",43.717985,5.234848,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199027,1,"Chemin des Arènes",43.695554,5.025553,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199028,1,"Jardin des Bormes",43.698603,5.034585,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199030,1,"Les Paluds",43.688337,5.03695,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199031,1,"Mas Barreau",43.688608,5.03472,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199033,1,"Place de La Couren",43.697495,5.028893,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199036,1,"Rond Point de La Vierge",43.689453,5.030385,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199038,1,"St Véredème",43.693332,5.026663,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199039,1,"Les Oustalets",43.629856,5.167621,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199041,1,"Mairie",43.630072,5.176212,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199043,1,"Zoo",43.624725,5.205004,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199044,1,"La Tour",43.697128,5.088922,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199047,1,"Les Barres",43.696655,5.079565,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199050,1,"Quatre Chemins",43.70111,5.093614,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199053,1,"La Coste",43.587313,5.139418,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199057,1,"Médiathèque",43.58959,5.125474,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199059,1,"Moulin de Laure",43.588182,5.134004,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199061,1,"Stade",43.593485,5.117745,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199063,1,"Val de Sibourg",43.582878,5.21139,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199065,1,"Avenue de Craponne",43.731035,5.170279,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199067,1,"Canal Edf",43.724286,5.185483,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199069,1,"La Crèche",43.72444,5.179637,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199071,1,"Le Vergon",43.72062,5.203072,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199073,1,"Place Raoul Coustet",43.730042,5.177299,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199075,1,"Pont de La Tour",43.71583,5.215827,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199077,1,"Pont Royal",43.713334,5.187776,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199079,1,"Vieille Poste",43.710094,5.193962,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199081,1,"Bonsour",43.644401,5.154471,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199082,1,"Carcassonne",43.632661,5.157024,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199084,1,"Général de Gaulle",43.629981,5.161832,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199086,1,"Les Enjouvènes",43.630741,5.154391,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199088,1,"Le Haut Taulet",43.634197,5.167403,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199089,1,"Le Pigeonnier",43.630899,5.14765,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199091,1,"Les Arènes",43.632129,5.143897,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199093,1,"Les Pinchinats",43.637318,5.152573,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199095,1,"Mistral",43.634819,5.152549,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199097,1,"Station Campus",43.629352,5.135168,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199099,1,"18 Juin 1940",43.628053,5.113337,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199101,1,"C. Cial Aires de La Dîme",43.634601,5.07839,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199102,1,"Base Aérienne",43.625008,5.112125,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199104,1,"Beauséjour",43.638809,4.979032,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199105,1,"Bel Air",43.640447,5.071278,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199107,1,"Allée des Justes",43.64034,5.059806,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199109,1,"Bois Joli",43.649221,5.052835,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199110,1,"Boisgelin",43.67945,5.06746,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199112,1,"Cap Canourgues",43.651267,5.096742,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199114,1,"Carcassonne",43.640543,5.086985,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199115,1,"Carnot",43.641371,5.097564,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199118,1,"St Côme",43.64461,5.102799,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199120,1,"Cézanne",43.645519,5.087238,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199124,1,"La Jasso",43.64015,4.988914,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199126,1,"Clémenceau",43.641601,5.092795,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199127,1,"Clos Roumanille",43.647223,5.086044,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199129,1,"Clos St Antoine",43.651967,5.0915,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199131,1,"Craponne",43.633367,5.100718,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199133,1,"Croix de Crau",43.639967,4.954678,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199134,1,"D. Allemand",43.638597,5.086793,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199135,1,"Danton",43.635829,5.089161,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199137,1,"Impasse du Bivert",43.63778,5.087781,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199138,1,"Denfert Rochereau",43.642744,5.086757,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199140,1,"Ecole de L'Air",43.626469,5.107058,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199142,1,"Empéri",43.638512,5.098949,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199143,1,"Estroublon",43.643741,5.080068,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199144,1,"Europe",43.646728,5.102641,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199146,1,"Farandole",43.643688,5.082158,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199150,1,"Félix Pyat",43.643911,5.092114,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199152,1,"Foch",43.639527,5.093004,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199154,1,"Fongrave IUT",43.639791,5.109079,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199156,1,"Font Segugne",43.650087,5.101404,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199158,1,"Francou",43.639118,5.083251,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199159,1,"Frères Lamanon",43.645614,5.090945,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199161,1,"Gambetta",43.637788,5.099112,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199163,1,"Zola",43.639087,5.089429,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199165,1,"Gascogne",43.652774,5.096543,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199168,1,"Glanum",43.641004,5.083008,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199170,1,"Guynemer",43.629721,5.101941,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199172,1,"Hôpital",43.640122,5.102816,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199174,1,"Hôtel de Ville",43.640486,5.099119,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199175,1,"Impasse du Cabot",43.649975,5.046802,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199176,1,"Janicot",43.638223,5.101808,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199178,1,"Jean Moulin",43.649127,5.094261,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199180,1,"Joseph d'arbaud",43.625813,5.102917,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199181,1,"Joseph d'Arbaud",43.625872,5.102836,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199182,1,"La Borie",43.634479,5.090259,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199184,1,"La Figuière",43.640498,5.074575,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199186,1,"C. Cial La Gandonne",43.633384,5.096905,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199188,1,"La Lauzette",43.6507,5.090782,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199190,1,"La Martelière",43.627275,5.088141,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199192,1,"La Monaque",43.631069,5.100198,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199194,1,"La Piboule",43.63306,5.117964,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199195,1,"La Taille",43.637009,5.081651,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199196,1,"Voie Aurélienne",43.631357,5.087855,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199200,1,"Le Merle",43.640395,5.018014,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199201,1,"Le Petit Quintin",43.63076,5.090117,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199203,1,"Le Touret",43.649612,5.091832,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199205,1,"Léopold Coren",43.643509,5.094844,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199207,1,"Les Barettes",43.639931,5.07638,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199208,1,"Les Bartavelles",43.629264,5.119748,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199210,1,"Les Blazots",43.641989,5.088863,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199212,1,"Bressons",43.647729,5.091592,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199214,1,"Les Cabans",43.644255,5.084625,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199216,1,"Les Canourgues",43.651267,5.096742,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199218,1,"Les Cerisiers",43.637941,5.053995,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199219,1,"Les Coquelicots",43.651965,5.085579,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199221,1,"Les Crozes",43.626994,5.084005,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199223,1,"Les Entrages",43.624998,5.099162,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199225,1,"Les Gabins",43.635551,5.048891,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199226,1,"Les Jardins",43.654516,5.085689,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199228,1,"Les Launes",43.644117,5.087938,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199230,1,"Les Pastourelles",43.630635,5.119245,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199232,1,"Les Roquassiers",43.629173,5.130243,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199236,1,"L'Eyssado",43.649394,5.086607,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199238,1,"Lurian",43.627273,5.105846,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199240,1,"Lycée St Jean",43.640535,5.083418,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199242,1,"Lycée Technique",43.635516,5.100042,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199245,1,"Maréchal de Lattre",43.647778,5.092499,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199247,1,"Mas Dosseto",43.653091,5.099989,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199249,1,"Mas du Soleil",43.636114,5.054787,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199251,1,"Mas Poulain",43.640075,4.970261,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199252,1,"Massuguettes",43.655567,5.094238,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199254,1,"Morgan Gare Routière",43.638201,5.095256,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199255,1,"Morgan",43.638024,5.094108,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199256,1,"Donnadieu",43.640097,5.107992,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199257,1,"Paul Arène",43.648109,5.097841,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199262,1,"Pont d'Avignon",43.646074,5.093729,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199266,1,"Reine Jeanne",43.634565,5.093966,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199268,1,"Remoulaire",43.629696,5.093372,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199270,1,"République",43.640503,5.092829,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199272,1,"Roi René",43.632141,5.09978,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199275,1,"Schuman",43.648376,5.102188,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199277,1,"Sénèque",43.642663,5.094171,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199279,1,"St Jean",43.623744,5.118947,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199280,1,"St Léon",43.640554,5.105277,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199282,1,"St Louis",43.653388,5.088348,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199284,1,"St Roch",43.637989,5.095469,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199286,1,"Tallagard",43.654214,5.098297,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199287,1,"Tamaris",43.63861,5.114446,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199288,1,"Tamaris",43.640835,5.113613,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199289,1,"Théâtre",43.640976,5.095068,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199291,1,"Trophées",43.634535,5.096206,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199293,1,"Ursule",43.637906,5.098709,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199296,1,"Ventadouiro",43.627936,5.09788,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199298,1,"Ventouresco",43.655017,5.091127,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199300,1,"Vert Bocage",43.647587,5.096824,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199302,1,"Vieux Chemin d'Istres",43.635558,5.076108,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199303,1,"Vieux Moulin",43.628572,5.099743,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199305,1,"Wertheim",43.647563,5.094916,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199307,1,"Zac de La Crau",43.637502,5.047498,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199310,1,"L'Amellenque",43.63599,5.057567,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199312,1,"Hippodrome",43.637218,5.038333,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199313,1,"Chemin de Davis",43.636113,5.060557,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199314,1,"Chevigné",43.746552,5.076843,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199315,1,"Gabriel Péri",43.745009,5.074908,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199318,1,"Max Dormoy",43.737911,5.079206,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199319,1,"Mairie",43.685283,5.170509,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199320,1,"Ecole de La Crau",43.642744,5.059016,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199321,1,"Sans soucis",43.649997,5.083056,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199322,1,"Viala",43.639441,5.101669,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199326,1,"Les Pinèdes",43.652418,5.153641,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199332,1,"Diane",43.64028,5.053611,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199334,1,"Les Lices",43.631106,5.138609,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199336,1,"Fontaine Gilouse",43.69694,5.038895,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199338,1,"Les Acacias",43.699998,5.088887,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199339,1,"Le Felibrige",43.594446,5.128607,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199341,1,"Les Fanets",43.587775,5.187782,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199342,1,"Les Fanets",43.588798,5.180372,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199343,1,"La Capelette",43.741392,5.079212,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199345,1,"Lou Calen",43.6375,5.123332,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199346,1,"Lou Calen",43.637503,5.11833,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199347,1,"Plan de Clavel",43.633058,5.140005,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199349,1,"La Poudrière",43.597495,5.131391,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199351,1,"Papillons blancs",43.655834,5.074171,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199372,1,"Les Vallons",43.628122,5.116597,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199374,1,"Les Sardenas",43.589215,5.113491,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199375,1,"Cazan",43.692593,5.206832,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199376,1,"Rond Point du Golf",43.710898,5.193829,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199378,1,"Le Golf",43.714887,5.197427,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199379,1,"La Prouvenque",43.632599,5.151424,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199380,1,"Canesteu",43.632602,5.094775,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199382,1,"Les Séniorales",43.719749,5.25457,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199383,1,"Le Galion",43.63055,5.153465,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199389,1,"Lafayette",27.140959,-3.404569,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199390,1,"Bergeronnette",43.63538,5.070342,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199392,1,"Istres",43.634829,5.076494,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199401,1,"Cimetière des Manières",43.639069,5.11723,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199402,1,"Farigoulette",43.635713,5.114107,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199404,1,"Garage d'Istres",43.63538,5.070342,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199411,1,"Valentine",43.632061,5.113433,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199414,1,"Ccial Les Viougues",43.628797,5.117274,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199416,1,"C. Cial La Gandonne",43.634134,5.09075,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199418,1,"Le Pigeonnier",43.722156,5.079477,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199419,1,"L'Amandière",43.636213,5.058717,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199421,1,"Les Broquetiers",43.624924,5.087248,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199422,1,"Marcel Pagnol",43.590376,5.12357,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199423,1,"Estamaire",43.62841,5.097965,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199427,1,"Rue Remoulaire",43.629706,5.093694,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199431,1,"Gare Routière",43.639493,5.088334,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199432,1,"Gare",43.639493,5.088334,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199433,1,"Parking IUT",43.640097,5.107992,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199435,1,"Parking J. D'Arbaud",43.624995,5.102777,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199436,1,"Trophees",43.634445,5.09583,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199437,1,"Danton",27.140959,-3.404569,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199438,1,"Les Pinèdes",27.140959,-3.404569,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199439,1,"Pasteur",27.140959,-3.404569,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199441,1,"Le Château",27.140959,-3.404569,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199443,1,"Vignerons",27.140959,-3.404569,,1,,Europe/Paris,,OM9, +OM9:SA:CTP2199444,1,"La Cigale",27.140959,-3.404569,,1,,Europe/Paris,,OM9, +OMA:SA:CTP20000,1,"PLACE DES AIRES",43.407216,5.056484,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20001,1,"DOUMER",43.407826,5.053688,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20002,1,"L'ILE",43.406447,5.055263,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20004,1,"EGLISE DE JONQUIERES",43.403924,5.054761,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20005,1,"LE COURS",43.402953,5.054394,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20006,1,"GENERAL LECLERC",43.402772,5.057634,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20016,1,"SECURITE SOCIALE",43.408114,5.052161,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20017,1,"COUBERTIN",43.406959,5.050987,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20018,1,"CANTO PERDRIX",43.421467,5.050844,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20019,1,"JOLIOT CURIE",43.410719,5.054516,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20020,1,"GABRIEL PERI",43.410932,5.052121,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20022,1,"LES CAPUCINS",43.411816,5.050917,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20024,1,"NOTRE DAME",43.414443,5.050536,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20026,1,"LES MOULINS",43.416026,5.052289,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20028,1,"LE LAVANDIN",43.418171,5.051033,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20030,1,"LES 4 VENTS",43.418256,5.052641,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20032,1,"LES VAGUES",43.418978,5.054328,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20034,1,"CIMETIERE CANTO-PERDRIX",43.420372,5.057516,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20035,1,"LYCEE P. LANGEVIN",43.42103,5.057831,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20036,1,"CENTRE COMMERCIAL AUCHAN",43.422468,5.054654,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20037,1,"HENRI WALLON",43.409011,5.053412,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20038,1,"AUPECLE",43.399448,5.057437,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20039,1,"AIGUES DOUCES",43.402406,4.975801,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20040,1,"PARADIS",43.408022,5.053069,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20041,1,"KENNEDY",43.408515,5.051698,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20042,1,"COOPERATIVE",43.409217,5.048451,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20043,1,"LES LAURIERS",43.411174,5.043573,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20045,1,"COLLEGE M. PAGNOL",43.412347,5.043061,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20046,1,"HOPITAL",43.413356,5.040341,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20048,1,"LYCEE JEAN LURCAT",43.417815,5.036905,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20049,1,"ECOLE D'INFIRMIERE",43.413994,5.036873,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20051,1,"LE MAROC",43.414542,5.032951,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20053,1,"L'ASTREE",43.414448,5.030949,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20055,1,"LES CIGALES",43.413213,5.02999,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20057,1,"GAMBACCINI",43.411015,5.029455,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20059,1,"PAUVRE HOMME",43.410894,5.027464,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20062,1,"MAS DE POUANE 1",43.411265,5.020858,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20064,1,"MAS DE POUANE 2",43.410785,5.01774,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20065,1,"MAS ST JEAN",43.409637,5.013295,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20066,1,"GUY MOQUET",43.411303,5.016074,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20067,1,"FOYER ST JEAN",43.410582,5.004545,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20069,1,"CARREFOUR 1",43.411118,5.001783,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20070,1,"LES ACACIAS",43.411157,4.999478,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20072,1,"PAUL ELUARD",43.411418,4.993644,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20074,1,"R ROLLAND",43.410461,4.99043,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20076,1,"LOGIREM",43.408354,4.989531,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20077,1,"LYCEE J MOULIN",43.407739,4.9915,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20079,1,"LA GARE DE PORT DE BOUC",43.406527,4.984501,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20080,1,"LA POSTE",43.40648,4.981995,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20081,1,"A FRANCE",43.404536,4.980635,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20083,1,"LE LITTORAL",43.400844,4.977554,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20084,1,"SEMAPHORE",43.402661,4.978995,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20085,1,"SECURITE SOCIALE",43.405107,4.982647,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20086,1,"RESPELIDO",43.406148,4.984532,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20087,1,"HOTEL DE VILLE",43.406465,4.986261,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20088,1,"MOULIN DE FRANCE",43.410112,5.043239,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20089,1,"CDT L'HERMINIER",43.407014,5.046657,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20090,1,"HOTEL DE VILLE MARTIGUES",43.406243,5.047977,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20091,1,"THEATRE",43.406892,5.05151,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20093,1,"ARC EN CIEL",43.382888,5.028035,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20094,1,"L DEGUT",43.403151,5.050457,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20096,1,"FELIX ZIEM",43.401777,5.046434,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20098,1,"CHAMBRE DE COMMERCE",43.400519,5.041775,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20100,1,"JOSE NOBRE",43.399152,5.039268,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20102,1,"F SAUVAGE",43.398116,5.033942,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20104,1,"GARE SNCF",43.392808,5.026158,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20106,1,"LAVERA",43.388618,5.025789,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20108,1,"LES LILAS",43.387543,5.025985,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20110,1,"LES TAMARIS",43.384667,5.026294,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20112,1,"LE CERCLE",43.367533,5.053036,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20113,1,"LES AMANDIERS",43.366051,5.054013,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20114,1,"LES TABOURETS",43.366046,5.059941,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20115,1,"LA COURONNE",43.338887,5.053342,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20117,1,"LES VAUCLUSIENS",43.33786,5.050596,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20119,1,"LE VERDON",43.335633,5.049037,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20120,1,"LA PLAGE",43.332497,5.04395,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20121,1,"BAOU TAILLA",43.332555,5.046305,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20122,1,"LE PORT",43.331205,5.039578,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20123,1,"L'EURRE",43.343498,5.058402,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20124,1,"ST PIERRE ECOLE",43.369554,5.053477,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20125,1,"LES ROCHES BLANCHES",43.370923,5.051952,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20126,1,"ST PIERRE LA GRAVADE",43.372,5.050585,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20127,1,"LA PLATRIERE",43.37046,5.043561,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20128,1,"LES CHEILLANS",43.372305,5.040271,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20129,1,"LES ESPANETS",43.373781,5.036618,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20130,1,"LES OLIVES",43.376774,5.030559,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20131,1,"G EIFFEL",43.395074,5.057695,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20132,1,"BOUDEME",43.395803,5.057631,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20133,1,"S DE LUCA",43.395057,5.058706,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20134,1,"LES 2 PORTES",43.396396,5.05909,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20135,1,"G PHILIPPE",43.397121,5.059951,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20136,1,"E HERRIOT",43.399292,5.060473,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20138,1,"CALMETTE ET GUERIN",43.399575,5.047131,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20140,1,"FONT SARADE",43.399217,5.047768,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20141,1,"PLACE DU 8 MAI",43.399266,5.056193,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20142,1,"BELLEVUE",43.397181,5.057561,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20143,1,"LE BATEAU BLANC",43.40662,5.046219,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20145,1,"MATISSE",43.405659,5.04404,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20147,1,"SEURAT",43.405317,5.04189,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20149,1,"J RENOIR",43.406859,5.039595,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20151,1,"E DEGAS",43.408107,5.038223,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20153,1,"LES ASPHODELES",43.410092,5.041166,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20155,1,"DI LORTO",43.413387,5.046736,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20157,1,"LA COLLINE",43.413726,5.043619,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20160,1,"BRISE LAME",43.418256,5.036876,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20161,1,"HOPITAL DU VALLON",43.421531,5.036796,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20163,1,"HAMEAU DU VALLON",43.424233,5.039872,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20165,1,"JULIEN OLIVE",43.424351,5.043036,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20167,1,"GINNOUX",43.42465,5.047269,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20169,1,"MONTEE EIFFEL",43.396509,5.055269,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20170,1,"LES VIGNEROS",43.424798,5.049941,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20171,1,"F. VILLON",43.422142,5.049675,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20172,1,"E. POTTIER",43.421671,5.04468,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20178,1,"OFFENBACH",43.42307,5.056604,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20180,1,"BASE NAUTIQUE",43.42429,5.059624,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20182,1,"BELVEDERE",43.42716,5.059597,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20184,1,"TOURRET DE VALLIER",43.428396,5.057432,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20186,1,"ERIK SATIE",43.429289,5.056186,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20188,1,"GABRIEL FAURE",43.428668,5.054128,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20190,1,"LE GRAND GOUR",43.4278,5.051648,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20192,1,"CIMETIERE DE REVEILLA",43.422257,5.018178,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20193,1,"G COUTHON",43.427534,5.040892,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20194,1,"LA PISCINE",43.409965,5.056602,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20195,1,"S ALLENDE",43.413198,5.057804,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20196,1,"FLEMING",43.419015,5.058561,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20197,1,"BARBOUSSADE",43.424747,5.050913,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20199,1,"S GUITRY",43.427181,5.044218,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20200,1,"LES TERRASSES BLEUES",43.428519,5.042863,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20201,1,"DROITS DE L'HOMME",43.428577,5.039473,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20202,1,"ALLEE VIALA",43.426479,5.044234,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20205,1,"LA POSTE",43.413436,5.056939,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20206,1,"CHEMIN DE LA RODE",43.409671,5.055762,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20209,1,"MAIRIE ANNEXE CROIX-SAINTE",43.410578,5.029657,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20213,1,"LES PLATANES",43.410583,5.021517,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20215,1,"GARE DE CROIX SAINTE",43.410667,5.019621,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20216,1,"DAUMIER",43.411205,5.013899,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20217,1,"ST JEAN",43.411356,5.011069,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20218,1,"CARREFOUR 2",43.411782,5.000408,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20219,1,"BERGERIE BAS",43.413843,4.994175,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20220,1,"19 mars 62",43.414147,4.990474,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20221,1,"GRIMAU",43.415959,4.987899,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20223,1,"CIMETIERE PORT DE BOUC",43.4138,4.986008,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20225,1,"LANGEVIN",43.411863,4.982515,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20227,1,"STADE F BAUDILLON",43.412624,4.978961,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20229,1,"HLM J JAURES",43.410565,4.978977,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20231,1,"LYCEE MONGRAND",43.408832,4.9796,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20232,1,"P ET M CURIE",43.409341,4.979759,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20233,1,"OPOFA",43.409358,4.982695,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20235,1,"J FERRY",43.409537,4.98459,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20237,1,"DANTON",43.410432,4.984767,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20239,1,"SALENGRO",43.409405,4.986274,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20241,1,"NICOTRA",43.406605,4.97983,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20242,1,"LES GALETS",43.404712,4.977856,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20244,1,"PILOTAGE",43.397933,4.981132,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20245,1,"LA CARAVELLE",43.399397,4.981557,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20246,1,"REPUBLIQUE",43.402104,4.981891,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20247,1,"TURENNE",43.402637,4.980683,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20250,1,"LES AMARANTES",43.417021,4.987191,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20253,1,"NERUDA",43.417147,4.983618,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20255,1,"PARKING GOUIN",43.468316,5.020274,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20256,1,"GENDARMERIE",43.42471,5.053823,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20258,1,"ESCAILLON",43.42963,5.047665,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20260,1,"Z.A LES ETANGS",43.438342,5.034467,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20263,1,"MAIRIE ST MITRE LES REMPARTS",43.451898,5.014037,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20265,1,"LES PLAINES D'ARNETTES",43.453034,5.020088,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20266,1,"FONTAINE DU LOUP",43.456381,5.020023,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20267,1,"BD JEAN ROSTAND",43.458107,5.020042,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20268,1,"LES MAGNANS",43.45949,5.015404,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20269,1,"FOYER DU 3ème AGE",43.455785,5.011787,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20272,1,"CIMETIERE ST MITRE",43.457885,5.007972,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20274,1,"VARAGE",43.468739,5.000081,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20275,1,"LES ILES D'OR",43.467697,5.003899,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20277,1,"SALLE POLYVALENTE",43.467903,5.008279,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20279,1,"ALLEE LAVOISIER",43.469406,5.015856,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20281,1,"ALLEE VIVALDI",43.469179,5.00177,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20282,1,"ALLEE J.S. BACH",43.468734,5.0027,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20283,1,"RANQUET",43.476027,4.99716,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20285,1,"E ZOLA",43.399478,5.059545,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20286,1,"COLLEGE PAGNOL",43.412377,5.042581,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20287,1,"MANOUCHIAN",43.411001,5.00216,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20288,1,"CAMPEOU",43.410475,5.008512,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20289,1,"INEOS",43.384341,5.02136,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20290,1,"GEINE VERTE",43.384613,5.026304,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20291,1,"CORNICHE BOUDEME",43.395831,5.057608,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20292,1,"CLEMENT MILLE",43.411224,5.001849,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20293,1,"SAINT JEAN",43.411419,5.01106,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20294,1,"LES BRUYERES",43.408415,5.024449,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20295,1,"GARDIANS",43.412346,5.025842,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20296,1,"COUDOULIERE",43.41368,5.02498,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20297,1,"DAUGEY",43.413848,5.027257,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20298,1,"DULLIN",43.42985,5.04643,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20299,1,"CINEMA",43.430099,5.049045,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20302,1,"FIGUEROLLES",43.431447,5.047998,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20303,1,"DUMAS - ARAGON",43.433252,5.045604,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20304,1,"DUMAS - GRAND PARC",43.433668,5.048362,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20305,1,"AVENUE GRAND PARC",43.430817,5.048746,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20306,1,"COLLEGE WALLON",43.409482,5.052188,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20307,1,"LE TEMPLE",43.398664,5.052243,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20308,1,"PLAGE DU VERDON",43.335606,5.049024,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20310,1,"LES PIGNES",43.491971,4.993136,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20311,1,"QUATRE VENTS",43.495059,4.991896,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20312,1,"LES HEURES CLAIRES",43.497187,4.998616,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20313,1,"LA SALLE",43.504441,4.991047,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20314,1,"GARE ROUTIERE",43.509301,4.988703,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20315,1,"COLLE D'ARNAUD",43.443337,5.025286,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20316,1,"CIMETIERE ST JOSEPH",43.409578,5.051971,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20317,1,"STE ANNE",43.399317,5.063064,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20319,1,"CROIX DE MALTE",43.398358,5.070022,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20320,1,"ST LAZARE",43.398581,5.067986,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20321,1,"CEZANNE",43.398992,5.064898,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20322,1,"MANOIR STE ANNE",43.399552,5.063013,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20323,1,"FREDERIC MISTRAL",43.401126,5.059068,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20325,1,"E. ZOLA",43.39944,5.059604,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20326,1,"PARC DE FIGUEROLLES",43.435381,5.042089,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20327,1,"GEINEVERTE",43.384683,5.027084,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20328,1,"RTE ST PIERRE",43.395416,5.052311,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20329,1,"LES VENTRONS",43.376888,5.064955,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20330,1,"PLAGE DE CARRO",43.332461,5.043948,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20331,1,"RTE LES BASTIDES",43.339349,5.065301,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20332,1,"CH DE STE CROIX",43.335153,5.066961,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20333,1,"THALASSOTHERAPIE",43.334284,5.072845,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20334,1,"LES ROUGES",43.339632,5.083152,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20335,1,"LES ROUSSURES",43.340704,5.07851,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20336,1,"LES CHAPPAS",43.340297,5.070471,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20337,1,"LES BASTIDES",43.339534,5.067207,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20338,1,"LA SAULCE",43.334008,5.069912,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20339,1,"PLAGE DE LA COURONNE",43.335969,5.049977,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20340,1,"SALICORNES",43.437968,5.036831,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20341,1,"PEUPLIERS",43.440866,5.036708,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20342,1,"ROSEAUX",43.440986,5.035147,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20343,1,"SORBIERS",43.437888,5.036445,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20344,1,"MASSANE PLAGE",43.468312,5.02041,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20345,1,"THIMONIER",43.394879,5.031804,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20346,1,"VAUCANSON",43.396952,5.033394,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20347,1,"EDISON",43.392754,5.032987,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20348,1,"ULYSSE",43.392952,5.030111,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20349,1,"CARRE D'AS",43.395633,5.030052,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20350,1,"THIMONIER HAUT",43.390443,5.033359,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20351,1,"PK MISTRAL",43.401153,5.059069,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20354,1,"PK GOUIN",43.468792,5.018494,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20356,1,"ROSTAND",43.458448,5.019676,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20358,1,"PLAINE ARNETTES",43.452328,5.020253,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20359,1,"ROCALEDES",43.449534,5.020541,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20363,1,"FELIBRES",43.41513,4.999539,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20365,1,"PREVERT",43.419739,5.001875,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20367,1,"LES TERMES",43.42074,5.000676,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20371,1,"LES FABRIQUES",43.418623,5.004463,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20372,1,"LES VIGNOBLES",43.417912,5.005195,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20373,1,"LES SOURCES",43.417136,5.007157,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20375,1,"DOMAINE DES PINS",43.414994,5.011929,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20377,1,"LES ETOURNEAUX",43.413665,5.016221,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20379,1,"REINETTES",43.412654,5.021774,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20381,1,"LA DRAILLE",43.416446,4.993569,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20383,1,"LAVANDES",43.417248,4.992422,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20385,1,"GARRIGUE",43.41944,4.988095,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20387,1,"ENGRENIER HAUT",43.42128,4.986786,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20388,1,"ENGRENIER CAT",43.423257,4.985718,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20389,1,"ENGRENIER",43.42365,4.984379,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20390,1,"MERIINDOLE - PINS",43.421915,4.981079,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20391,1,"MERINDOLE",43.420273,4.982755,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20392,1,"MERINDOLE - PEYRE",43.419368,4.985563,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20393,1,"CHATEAU EAU",43.418762,4.988989,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20395,1,"LES FABRES",43.41522,4.994437,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20398,1,"A.F.P.A",43.489123,4.988644,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20399,1,"PREPAOU",43.496194,4.98119,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20400,1,"COLLEGE DAUDET",43.497851,4.984046,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20401,1,"JARDINS LOUIS",43.422667,5.000556,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20402,1,"MOULET",43.405033,5.027398,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20404,1,"REGIE EAUX",43.404115,5.03029,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20406,1,"BOULODROME",43.403156,5.040234,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20408,1,"LA HALLE",43.405373,5.046123,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20409,1,"INTERMARCHE",43.411088,5.022909,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20411,1,"BOTTAI",43.416317,4.973938,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20412,1,"TAMARIS",43.414472,4.974014,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20414,1,"PLAGE OURS",43.412352,4.974656,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20416,1,"GOUIN",43.517199,4.981605,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20418,1,"CYPRES",43.521879,4.979622,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20420,1,"BELLONS",43.527023,4.975559,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20422,1,"ST EXUPERY",43.530026,4.975203,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20424,1,"CHALVE",43.577331,4.997773,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20426,1,"GARE SNCF MIRAMAS",43.580671,4.999463,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20427,1,"CONSERVATOIRE",43.397629,5.041552,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20428,1,"CH JARDINS - ST PIERRE",43.371126,5.057816,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20429,1,"GUEULE D'ENFER",43.396127,5.075724,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20430,1,"ST LAZARE",43.332786,5.046747,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20432,1,"CROIX DE MALTE",43.403626,5.056585,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20433,1,"TRESORERIE",43.402262,5.056828,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20434,1,"Collet Redon",43.340491,5.059972,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20435,1,"Ecole La Couronne",43.331636,5.053492,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20436,1,"SCOL Tamaris",43.330207,5.081494,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20437,1,"La Saulce",43.3391,5.070155,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20438,1,"Les Rosettes",43.339578,5.067246,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20440,1,"Trou du Loup",43.378706,5.078713,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20441,1,"113 Les Cormes",43.37228,5.07541,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20442,1,"Croix Estrine",43.373513,5.067926,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20444,1,"Valeuil",43.376648,5.05528,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20445,1,"Chemin des Ferrauds",43.378002,5.050413,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20446,1,"Route de Ponteau",43.367945,5.034112,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20447,1,"Chemin de la Plaine Saint Martin",43.373641,5.030337,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20448,1,"Chemin de Boutier",43.371447,5.030703,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20449,1,"Font Maure",43.367828,5.03126,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20450,1,"Chemin de la Gare",43.365407,5.030283,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20451,1,"Les Pieds dans l'Eau",43.356525,5.024432,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20452,1,"Port des Laurons",43.352454,5.025806,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20453,1,"Plage des Laurons",43.356362,5.02594,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20455,1,"Route des Laurons",43.367677,5.033705,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20456,1,"Seynemes",43.358207,5.024437,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20457,1,"Cimetiere St Julien",43.362519,5.098495,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20458,1,"St Julien-Maison Pour Tous",43.362765,5.096264,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20459,1,"Clos St Michel",43.363966,5.09223,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20460,1,"Les Cormes",43.367334,5.08745,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20461,1,"Gravade",43.372374,5.052871,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20465,1,"Cormes-Tourrel",43.370414,5.080917,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20466,1,"EGLISE",43.362465,5.10166,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20467,1,"ZI Ecopolis",43.389435,5.033743,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20468,1,"Port Carro",43.331118,5.039438,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20469,1,"La Couronne - Ch L'Oustalet",43.336249,5.050618,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20472,1,"Cabro d'Or",43.392116,5.056248,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20473,1,"St Julien - Les Audiberts",43.371276,5.079183,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20474,1,"Chemin des jardins",43.371126,5.057816,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20475,1,"Le Paty",43.397713,5.081632,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20476,1,"Clos Valmont",43.397895,5.08682,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20479,1,"Gare Lavera",43.392868,5.026285,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20481,1,"Monument Tarditi",43.398092,5.071305,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20482,1,"Turcan / Marcel Proust",43.416623,5.056437,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20483,1,"Turcan / Sezau",43.413414,5.053892,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20484,1,"Turcan / ZUP",43.412223,5.046558,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20485,1,"Turcan - Clair Soleil",43.411697,5.044584,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20486,1,"Turcan / Capucins",43.412102,5.04707,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20487,1,"Turcan / Daguin",43.412698,5.051255,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20488,1,"Turcan / Maison Syndicats",43.413064,5.053875,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20489,1,"Turcan / Estandadou",43.416686,5.056773,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20491,1,"Vallon du Jambon",43.425196,5.048072,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20492,1,"JB Clement",43.429222,5.057442,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20493,1,"Touret de Vallier",43.428199,5.057369,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20498,1,"Bergerie",43.414069,4.994815,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20499,1,"Les Esperelles",43.392679,5.065621,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20500,1,"Ecole Tranchier",43.411268,5.021129,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20501,1,"Ecole Jean Jaures",43.409168,5.054665,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20502,1,"Ecole Primaire Canto-Perdrix",43.418642,5.054448,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20505,1,"Les Bassins",43.41854,4.98962,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20506,1,"Ecole Arcades",43.426101,4.977189,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20507,1,"Station Agip",43.42029,4.978019,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20509,1,"Collège MISTRAL",43.410097,4.977155,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20510,1,"Impase de la liberté",43.405338,4.987862,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20513,1,"Collège ELUARD",43.412402,4.994208,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20514,1,"Les Hameaux",43.419671,4.975412,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20515,1,"Pont du Roy Lafarge",43.426869,4.972253,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20519,1,"Les pins",43.422104,4.981063,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20520,1,"Ecole Pagnol",43.416834,4.982929,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20522,1,"Ecole Louise Michel",43.408025,4.989762,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20523,1,"SCOL Romain Rolland",43.409961,4.991455,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20524,1,"Ecole Lucia Tichadou",43.411468,4.988688,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20525,1,"Place des Aires",43.56363,5.071832,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20526,1,"Pont de Rhaud",43.586699,5.051075,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20527,1,"Gymnase",43.592163,4.933028,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20528,1,"La Crau",43.595891,4.93762,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20529,1,"Piscine",43.593216,4.932176,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20530,1,"Aquaron",43.459316,4.933518,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20531,1,"Archeveque",43.458383,4.948526,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20532,1,"Archevèque",43.458383,4.948526,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20533,1,"Arenes",43.432905,4.946211,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20535,1,"Av Jean Perrin",43.472568,4.949122,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20536,1,"Les Bannes",43.481657,4.869614,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20538,1,"Chemin de Bos",43.463308,4.936425,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20539,1,"Cantegrillet",43.455086,4.937481,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20542,1,"Place des Carabins",43.458978,4.935218,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20544,1,"Chemin de Blanc",43.457356,4.927714,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20545,1,"Chemin du Chaland",43.46048,4.930731,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20547,1,"Clément",43.462046,4.932105,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20549,1,"Chemin du Mazet",43.463313,4.945343,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20551,1,"Chemin de la Colline",43.456747,4.946402,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20552,1,"Chemin de Phion",43.451588,4.939264,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20553,1,"Les Crottes",43.47079,4.943316,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20555,1,"Chemin de Robert",43.46023,4.927853,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20556,1,"Centre Ville",43.435572,4.94494,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20558,1,"David",43.463871,4.937403,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20560,1,"Ecole Del Corso",43.462404,4.937113,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20561,1,"Engrenier",43.430599,4.97673,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20562,1,"Fenouillère",43.463531,4.929478,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20563,1,"Fenouillère",43.462133,4.925773,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20564,1,"Fournil",43.466865,4.936093,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20565,1,"Galoubet",43.456544,4.931499,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20566,1,"Gendarmerie",43.444539,4.940779,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20567,1,"Gerachios (école)",43.456054,4.9389,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20568,1,"Giono Mauron (école)",43.434177,4.9463,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20569,1,"Grande Plage",43.430917,4.941113,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20570,1,"Hesperides",43.465224,4.943423,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20572,1,"Hotel de Ville",43.455529,4.943423,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20574,1,"Joseph d'Arbaub",43.445283,4.943289,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20575,1,"Joncquiere",43.443199,4.942204,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20576,1,"Karines",43.459499,4.941384,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20577,1,"Louis Brauquier",43.465877,4.941104,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20579,1,"Louise Michel",43.465161,4.939461,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20580,1,"Malraux",43.44486,4.943345,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20581,1,"Marais",43.43875,4.943576,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20583,1,"Place du Marché",43.441509,4.942909,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20584,1,"Maison de Fos",43.450034,4.93726,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20586,1,"Mistral",43.457903,4.947089,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20587,1,"Maison pour Tous",43.449391,4.939681,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20588,1,"Mazet Mistral",43.462087,4.941239,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20589,1,"Mazet Daudet",43.459533,4.941607,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20590,1,"Plan d Arenc",43.453913,4.950752,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20592,1,"Pavillon",43.46126,4.941284,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20593,1,"Pignatel",43.456161,4.940024,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20595,1,"Plaine Ronde",43.452557,4.932697,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20596,1,"Pompidou",43.456267,4.941375,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20598,1,"Pont du Roy",43.427856,4.971833,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20600,1,"Raffinerie",43.449875,4.926352,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20602,1,"Route du Mistral",43.459509,4.94545,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20604,1,"Carrefour Vallins",43.451413,4.939312,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20605,1,"Vallins",43.450576,4.937755,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20606,1,"Voie Romaine",43.455805,4.947116,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20608,1,"ZA Lavalduc",43.47508,4.947072,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20609,1,"Centre",43.608527,5.064601,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20610,1,"Place Foirail",43.609085,5.066026,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20611,1,"Sainte Croix",43.603092,5.068623,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20612,1,"4 vents",43.494802,4.992648,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20614,1,"4 vents Méditerranée",43.495186,4.992236,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20615,1,"4 vents Mediterranee",43.495147,4.991987,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20616,1,"Les Pignes",43.491792,4.993103,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20618,1,"Aristide Briand",43.513931,4.985231,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20619,1,"Aimé Césaire",43.506904,4.98372,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20620,1,"Ader Transhumance",43.526461,4.959683,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20621,1,"Ader Transuhmance",43.526588,4.959765,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20622,1,"AFPA",43.489222,4.988649,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20624,1,"Ajoncs",43.503775,4.971295,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20627,1,"Arnalyses",43.51374,4.992563,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20628,1,"Arnavaux",43.514635,4.994102,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20630,1,"Aupierre",43.514155,4.997898,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20632,1,"Bel Air Manne",43.516091,4.979191,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20633,1,"Baumes",43.509899,4.982998,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20635,1,"Bayanne",43.527546,4.955167,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20636,1,"Lotissement Les Bellons",43.52825,4.97336,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20638,1,"Bord de crau",43.521194,4.963408,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20639,1,"Bellons",43.52753,4.976497,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20641,1,"Bel air",43.509507,4.978069,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20642,1,"Bolles",43.504409,4.996012,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20644,1,"Boucasson",43.517914,4.970036,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20646,1,"Buissonniere",43.503692,4.970014,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20648,1,"Cagou",43.488579,5.000179,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20649,1,"Calameau",43.599027,4.935427,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20651,1,"Capeau Cades",43.508149,4.967545,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20653,1,"Capeau Romarin",43.513127,4.967314,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20655,1,"Carmes",43.513039,4.985558,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20657,1,"Cité Bayanne",43.526662,4.956399,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20659,1,"Centre Commercial Prepaou",43.49374,4.983362,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20661,1,"Centre Ccial Rassuen",43.496277,4.978551,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20663,1,"CC des Craux",43.523055,4.963488,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20664,1,"CEC",43.500241,4.992175,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20666,1,"Clement Ader",43.52155,4.960885,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20668,1,"Clinique",43.506991,4.992672,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20669,1,"Charles Monier",43.517413,4.956186,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20670,1,"Centre Commercial Cognets",43.498569,4.979499,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20672,1,"Colonnes",43.500402,4.969408,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20673,1,"Conservatoire",43.499055,4.992315,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20674,1,"Coutarel",43.504958,4.983363,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20677,1,"Cros de la Carriere",43.513295,4.993621,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20679,1,"Complexe de Tennis Davini",43.47534,4.992201,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20680,1,"Cypres",43.521249,4.980153,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20682,1,"Daudet",43.49807,4.983387,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20685,1,"Ecole Armanet",43.491985,4.994792,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20686,1,"Ecole Calamand",43.50947,4.98286,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20687,1,"La Clé des Champs",43.598122,4.930833,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20688,1,"Chateau d Eau Entressen",43.589843,4.942168,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20689,1,"Chateau d'eau Entressen",43.589836,4.942177,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20690,1,"Ecole Clos de la Roche",43.492358,4.979234,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20691,1,"Ecole Camille Pierron",43.494021,4.983679,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20692,1,"Ecole Prédina",43.492187,4.987751,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20693,1,"Ecole Gouin",43.51725,4.982114,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20694,1,"Ecole Jacqueline Auriol",43.508638,4.997011,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20695,1,"Ecole Jules Ferry",43.494576,4.983376,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20697,1,"Ecole Mendes France",43.5006,4.984347,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20698,1,"Feuillantines",43.5193,4.966129,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20700,1,"Gros Chêne",43.594286,4.936673,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20702,1,"Gare Routière",43.509168,4.98861,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20704,1,"Grignan",43.516591,4.981824,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20706,1,"Guynemer",43.517005,4.977395,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20708,1,"Halle Polyvalente",43.504533,4.986991,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20709,1,"Hameau St Martin",43.498764,4.995181,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20710,1,"Jacqueline Auriol",43.507586,4.99737,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20711,1,"Chemin de Lavalduc",43.474857,4.995951,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20712,1,"Lou Blagaire",43.593137,4.93893,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20714,1,"Lot les Cognets",43.502128,4.978862,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20715,1,"La Licorne",43.500003,4.970693,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20717,1,"Luther King",43.502042,4.981831,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20719,1,"Louis Bonte",43.518886,4.960135,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20721,1,"Les Pastres",43.517573,4.971366,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20723,1,"Lycée Rimbaud",43.502147,4.986716,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20724,1,"Mairie Annexe",43.59289,4.939739,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20725,1,"Mairie annexe",43.592911,4.939617,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20726,1,"Manne",43.515222,4.969776,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20728,1,"Manne 1",43.516047,4.976444,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20730,1,"Mas Lecque",43.560457,4.963018,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20732,1,"Massugues",43.513663,4.96622,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20733,1,"Mouettes",43.514238,5.000386,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20735,1,"Mas Rose",43.554382,4.967289,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20737,1,"Port Américain",43.546537,5.010319,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20738,1,"College Pasteur",43.509661,4.988962,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20739,1,"Paty",43.548608,4.971336,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20741,1,"Peupliers",43.499307,4.980762,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20744,1,"Piscine",43.507168,4.982837,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20746,1,"Piboules",43.59817,4.929969,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20747,1,"Pommiers",43.595863,4.936952,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20750,1,"P Piboules",43.495749,4.982844,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20752,1,"Predina",43.493447,4.987227,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20754,1,"Prepaou",43.496309,4.981131,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20756,1,"P Saladelle",43.494008,4.985648,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20758,1,"Quinsanne",43.520417,4.99924,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20759,1,"Ranquet",43.475545,4.997412,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20760,1,"Rassuen",43.493472,4.977433,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20761,1,"Romaniquette",43.511058,4.999682,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20763,1,"La Salle",43.504555,4.990918,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20765,1,"Sainte Catherine",43.516149,4.987747,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20767,1,"St Exupery",43.529231,4.975365,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20769,1,"SNCF",43.515374,4.980769,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20770,1,"Gare SNCF Istres",43.515263,4.980954,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20771,1,"Sorbes 1",43.545823,4.977886,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20772,1,"Sorbes 2",43.538883,4.983818,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20773,1,"Sorbes 3",43.534872,4.984413,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20774,1,"St Pierre1",43.495621,4.999037,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20775,1,"St Pierre2",43.492887,4.999416,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20776,1,"St Pierre",43.489223,5.000678,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20778,1,"Castellan",43.516804,4.991505,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20779,1,"Davini",43.476199,4.996618,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20780,1,"ST Jean",43.536171,4.986834,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20781,1,"Jean Moulin",43.502345,4.988426,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20782,1,"Moutonnier",43.485485,4.956187,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20783,1,"MAISON DE RETRAITE",43.488308,4.992873,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20784,1,"La Poutre",43.505266,4.989235,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20786,1,"Latécoère",43.504475,4.996094,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20787,1,"Mendes France",43.500784,4.984698,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20789,1,"Rimbaud",43.502326,4.986922,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20790,1,"Sulauze",43.531731,4.998815,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20793,1,"Capeau Tarnagas",43.505838,4.967627,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20795,1,"Tartugues 1",43.508577,4.976388,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20797,1,"Tour de Nedon",43.50838,4.992422,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20798,1,"Vigne Vieille",43.527457,4.998184,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20799,1,"Vitou",43.523355,5.005902,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20800,1,"ZI Retortier",43.531914,4.954018,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20801,1,"4 Chemins",43.571496,5.019213,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20802,1,"A Bruno",43.584374,5.010938,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20803,1,"Acaccias",43.580752,5.014013,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20804,1,"Escaillon",43.429475,5.047475,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20805,1,"L'Escaillon",43.433764,5.041183,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20806,1,"Emile Zola",43.399464,5.05927,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20807,1,"Gendarmerie",43.424695,5.05363,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20809,1,"Général Leclerc",43.402335,5.058167,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20810,1,"Marcel Pagnol",43.412393,5.042554,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20811,1,"Brise lame",43.417752,5.038316,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20812,1,"Langevin",43.421136,5.058012,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20813,1,"Lurçat",43.418437,5.036457,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20814,1,"Kennedy",43.408801,5.051058,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20815,1,"Aubanel",43.587775,5.002417,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20817,1,"Baronnies",43.58628,5.013754,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20818,1,"Barielles Sud",43.577751,5.011182,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20819,1,"Briand Simian",43.581107,5.003527,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20820,1,"Briand Avenir",43.587359,5.002742,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20822,1,"Briand Cite Jardin",43.57721,5.001022,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20824,1,"Briand Centre Ville",43.582339,5.003685,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20826,1,"Briand Liberte",43.579105,5.002792,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20828,1,"BRIAND AVENIR",43.586657,5.002342,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20829,1,"Briand Sully",43.58496,5.003152,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20830,1,"Cabasse",43.58933,5.025675,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20831,1,"Calade",43.560978,5.026376,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20832,1,"Camus",43.574739,5.000661,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20833,1,"Canadel",43.565141,5.025922,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20834,1,"Caravelle",43.595134,5.006299,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20836,1,"Collège Carraire",43.582349,5.004829,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20837,1,"Cial Nord",43.601315,5.003771,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20838,1,"M. Chalve",43.577356,4.997873,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20840,1,"Chantegrive",43.588212,4.994933,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20842,1,"Chateau d'Eau",43.573432,5.005763,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20843,1,"Chirons",43.583742,5.009228,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20844,1,"Quenouille",43.586698,4.995578,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20845,1,"Cite Capitaine",43.584297,4.992121,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20846,1,"Cimetière",43.57521,5.009017,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20847,1,"Clos de Craponne",43.581946,5.015196,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20848,1,"Clos de Pierre",43.576138,5.014785,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20849,1,"La Croix",43.564874,5.021099,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20850,1,"Cadran Solaire",43.595035,5.009227,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20852,1,"CTM",43.578343,5.009538,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20854,1,"Depot SNCF",43.581671,4.997555,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20855,1,"EDF",43.581518,5.013976,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20856,1,"Espagnols",43.582296,5.01739,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20857,1,"Essors",43.599211,5.002171,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20858,1,"Etamat",43.586842,4.984904,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20860,1,"Salle des Fêtes",43.594065,4.99786,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20862,1,"Fontlongue",43.588251,4.998605,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20864,1,"Garouvins",43.572415,5.018631,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20866,1,"Gendarmerie",43.591693,5.003998,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20868,1,"Francis Turcan Di Lorto",43.41272,5.050035,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20870,1,"Croix Sainte Gare",43.410673,5.019828,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20872,1,"Hotel de police",43.40639,5.046975,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20873,1,"Jardins de St Jean",43.409722,5.014108,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20875,1,"Mairie Annexe",43.410571,5.029577,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20877,1,"Moulin de France",43.410359,5.042231,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20879,1,"Place des Aires",43.407109,5.056433,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20880,1,"Pauvre Homme",43.410357,5.03232,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20882,1,"Paul Langevin",43.421492,5.05764,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20883,1,"Quai des Girondins",43.407531,5.054338,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20884,1,"Gare SNCF Miramas",43.580384,4.999614,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20885,1,"Village de Marques",43.593362,4.993894,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20889,1,"JC Gresset",43.589356,5.004428,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20890,1,"Jardin du Lac",43.589913,5.014159,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20891,1,"Jean Mace",43.582886,5.004217,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20892,1,"Jean Moulin",43.577382,5.005556,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20894,1,"Jules Ferry",43.587604,4.997571,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20895,1,"Lycee Cocteau",43.586332,5.009629,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20896,1,"Lep Alpilles",43.596387,5.000301,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20897,1,"Les Alpilles",43.595932,5.000009,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20898,1,"C Cial Sud",43.576057,4.998394,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20900,1,"Stade Meano",43.578755,5.004965,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20902,1,"Médiathèque",43.585889,5.006361,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20904,1,"Mille-pas",43.584369,5.012903,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20905,1,"Miramaris",43.594331,5.010852,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20907,1,"Miroiterie",43.576449,5.014522,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20908,1,"Les Molières 2",43.590141,5.005467,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20909,1,"Monteau",43.57367,5.003317,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20911,1,"Mourettes",43.568643,5.01909,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20912,1,"Olivarelles",43.582117,5.016365,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20913,1,"Palouquin",43.582748,5.018413,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20914,1,"Piscine",43.591657,5.002875,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20916,1,"Rosiers",43.58063,5.010736,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20917,1,"Rousse Molieres",43.592003,5.009271,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20919,1,"Royaume-Uni/Alpilles",43.598298,5.000659,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20920,1,"Saladelle",43.575778,5.007585,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20922,1,"Schweitzer",43.590995,5.007731,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20923,1,"Seigneurie Carnot",43.56389,5.027646,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20924,1,"St Exupery",43.589769,5.009484,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20927,1,"Terrasses",43.598005,5.009861,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20931,1,"Théâtre Cocteau",43.587075,5.00754,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20933,1,"Taussanne Cougnil",43.582619,5.01999,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20934,1,"village",43.563237,5.023171,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20935,1,"Le Vieux",43.563304,5.02811,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20936,1,"le Vieux",43.563302,5.028351,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20937,1,"Les Accacias",43.411143,4.999383,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20939,1,"Carrefour",43.41233,4.999836,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20940,1,"Château d'eau",43.418247,4.99014,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20941,1,"Château d'Eau",43.418488,4.989642,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20942,1,"Cimetière",43.413208,4.985549,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20944,1,"Clément Mille",43.411111,5.001876,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20945,1,"Les Combattants",43.405502,4.980788,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20947,1,"La Draille",43.415213,4.994165,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20948,1,"Ecole Jean Moulin",43.407629,4.991594,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20949,1,"Gare SNCF Port de Bouc",43.406563,4.984457,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20950,1,"Hotel de Ville",43.406431,4.986255,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20951,1,"Rouget de l'Isle",43.402527,4.9805,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20953,1,"Jean Moulin",43.407566,4.988084,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20955,1,"Langevin",43.410946,4.983286,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20957,1,"Lycée Mongrand",43.408622,4.980654,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20958,1,"Guy Moquet",43.408441,4.995716,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20959,1,"Paul Eluard",43.41143,4.99353,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20961,1,"La Poste",43.406472,4.981904,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20962,1,"La Respelido",43.406366,4.984215,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20963,1,"Romain Rolland",43.410979,4.98974,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20965,1,"St Jean",43.410735,5.006019,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20967,1,"Lotissement Boucasons",43.517856,4.967018,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20970,1,"Avenue du Port",43.393727,4.798163,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20972,1,"Aragon",43.389378,4.806047,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20974,1,"Benoît Franchon",43.392781,4.806858,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20975,1,"France Bloch",43.398216,4.797229,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20976,1,"Carteau",43.387762,4.850019,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20977,1,"Chopin",43.39004,4.809896,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20979,1,"Cimetière",43.388174,4.836259,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20980,1,"Centre Médical",43.393294,4.796842,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20982,1,"Ambroise Croizat",43.393514,4.80422,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20984,1,"Domaine de l'Eyselle",43.430759,4.7603,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20986,1,"Douane-La Tour",43.383671,4.806798,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20987,1,"Douane",43.383474,4.807486,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20988,1,"Fontaine",43.389367,4.802018,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20989,1,"Anatole France",43.382678,4.810239,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20990,1,"Guy Moquet",43.392232,4.799415,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20992,1,"Gustave Vidal",43.394987,4.802807,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20994,1,"Hôtel de Ville",43.387541,4.80387,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20997,1,"Square Léo Lélée",43.396345,4.800826,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20998,1,"Lycée H Leroy",43.386256,4.80237,,1,,Europe/Paris,,OMA, +OMA:SA:CTP20999,1,"Square Léo Lelée",43.396372,4.800617,,1,,Europe/Paris,,OMA, +OMA:SA:CTP21000,1,"République",43.388847,4.807398,,1,,Europe/Paris,,OMA, +OMA:SA:CTP21002,1,"Mallabarge Allende",43.391328,4.810633,,1,,Europe/Paris,,OMA, +OMA:SA:CTP21003,1,"Mas de Campane",43.439515,4.751246,,1,,Europe/Paris,,OMA, +OMA:SA:CTP21005,1,"Ecole LMichel",43.386196,4.802408,,1,,Europe/Paris,,OMA, +OMA:SA:CTP21006,1,"Les Mouettes",43.387675,4.80482,,1,,Europe/Paris,,OMA, +OMA:SA:CTP21008,1,"Navy Service",43.385342,4.832572,,1,,Europe/Paris,,OMA, +OMA:SA:CTP21009,1,"La Tour",43.383871,4.80605,,1,,Europe/Paris,,OMA, +OMA:SA:CTP21010,1,"Porte de l Asie",43.405224,4.831114,,1,,Europe/Paris,,OMA, +OMA:SA:CTP21011,1,"Porte de l'Asie",43.405335,4.830976,,1,,Europe/Paris,,OMA, +OMA:SA:CTP21012,1,"Porte de l Europe",43.410969,4.825981,,1,,Europe/Paris,,OMA, +OMA:SA:CTP21013,1,"Porte de l'Europe",43.410892,4.82587,,1,,Europe/Paris,,OMA, +OMA:SA:CTP21014,1,"Paul Eluard",43.397676,4.797966,,1,,Europe/Paris,,OMA, +OMA:SA:CTP21015,1,"Pierre Gabrielli",43.39472,4.798887,,1,,Europe/Paris,,OMA, +OMA:SA:CTP21017,1,"Pôle Jeunesse",43.393807,4.807436,,1,,Europe/Paris,,OMA, +OMA:SA:CTP21018,1,"Port Napoléon",43.37754,4.828473,,1,,Europe/Paris,,OMA, +OMA:SA:CTP21019,1,"P Provence",43.389677,4.801825,,1,,Europe/Paris,,OMA, +OMA:SA:CTP21020,1,"Elsa Triolet",43.391829,4.80513,,1,,Europe/Paris,,OMA, +OMA:SA:CTP21022,1,"Rebatun",43.47093,4.768515,,1,,Europe/Paris,,OMA, +OMA:SA:CTP21025,1,"Les Lauriers Roses",43.379932,4.813237,,1,,Europe/Paris,,OMA, +OMA:SA:CTP21028,1,"Sardinerie",43.378955,4.840376,,1,,Europe/Paris,,OMA, +OMA:SA:CTP21033,1,"Victor Sardou",43.397675,4.792909,,1,,Europe/Paris,,OMA, +OMA:SA:CTP21037,1,"Cimitière St Chamas",43.544723,5.041419,,1,,Europe/Paris,,OMA, +OMA:SA:CTP21039,1,"Joliot Curie",43.548762,5.036732,,1,,Europe/Paris,,OMA, +OMA:SA:CTP21040,1,"Guéby Nord",43.544885,5.039122,,1,,Europe/Paris,,OMA, +OMA:SA:CTP21043,1,"Guéby Sud",43.542597,5.041151,,1,,Europe/Paris,,OMA, +OMA:SA:CTP21045,1,"Boisgelin",43.556658,5.031945,,1,,Europe/Paris,,OMA, +OMA:SA:CTP21047,1,"Centre ville",43.550393,5.034145,,1,,Europe/Paris,,OMA, +OMA:SA:CTP21048,1,"Gabriel Peri",43.552702,5.034176,,1,,Europe/Paris,,OMA, +OMA:SA:CTP21051,1,"Les Arcades",43.550946,5.03688,,1,,Europe/Paris,,OMA, +OMA:SA:CTP21052,1,"La Croix",43.544868,5.038937,,1,,Europe/Paris,,OMA, +OMA:SA:CTP21053,1,"Les Ferrages",43.546772,5.038668,,1,,Europe/Paris,,OMA, +OMA:SA:CTP21059,1,"Iles d'Or",43.467883,5.00772,,1,,Europe/Paris,,OMA, +OMA:SA:CTP21060,1,"Jean Sébastien Bach",43.468075,5.00288,,1,,Europe/Paris,,OMA, +OMA:SA:CTP21061,1,"Lavoisier",43.469424,5.014617,,1,,Europe/Paris,,OMA, +OMA:SA:CTP21062,1,"Massane Plage",43.468315,5.020119,,1,,Europe/Paris,,OMA, +OMA:SA:CTP21063,1,"Salle Polyvalente",43.468878,5.011277,,1,,Europe/Paris,,OMA, +OMA:SA:CTP21064,1,"Vivaldi",43.469254,5.001655,,1,,Europe/Paris,,OMA, +OMA:SA:CTP21065,1,"Zac des Etangs",43.436735,5.036366,,1,,Europe/Paris,,OMA, +OMA:SA:CTP21067,1,"Pont de la Gare",43.551501,5.039694,,1,,Europe/Paris,,OMA, +OMA:SA:CTP21097,1,"SENEYMES 2",27.140959,-3.404569,,1,,Europe/Paris,,OMA, +OMA:SA:CTP21098,1,"PORT - LAURONS",27.140959,-3.404569,,1,,Europe/Paris,,OMA, +OMA:SA:CTP21099,1,"GARE PONTEAU 1",27.140959,-3.404569,,1,,Europe/Paris,,OMA, +OMA:SA:CTP21100,1,"GARE PONTEAU 2",27.140959,-3.404569,,1,,Europe/Paris,,OMA, +OMA:SA:CTP21103,1,"PIEDS EAU 2",27.140959,-3.404569,,1,,Europe/Paris,,OMA, +OMA:SA:CTP21104,1,"MAISON RETRAITE ISTRES",27.140959,-3.404569,,1,,Europe/Paris,,OMA, +OMA:SA:CTP21105,1,"MAISON RETRAITE ISTRES2",27.140959,-3.404569,,1,,Europe/Paris,,OMA, +OMA:SA:CTP21106,1,"CHATEAU D'EAU",43.41295,5.020012,,1,,Europe/Paris,,OMA, +OMA:SA:CTP21107,1,"ARMAND GUIGUE",43.418794,4.994973,,1,,Europe/Paris,,OMA, +OMA:SA:CTP21108,1,"ALLEE DES MERLES",43.414994,5.011929,,1,,Europe/Paris,,OMA, +OMA:SA:CTP21109,1,"CHRISTOFOL",43.408806,4.979574,,1,,Europe/Paris,,OMA, +OMA:SA:CTP21110,1,"LA BAUMASSE",43.416317,4.973938,,1,,Europe/Paris,,OMA, +OMA:SA:CTP21116,1,"Chantegrive les rivières",43.589277,4.993957,,1,,Europe/Paris,,OMA, +OMA:SA:CTP21118,1,"Sécurité Social",43.405237,4.982432,,1,,Europe/Paris,,OMA, +OMA:SA:CTP21119,1,"Manne 2",43.515434,4.971725,,1,,Europe/Paris,,OMA, +OMA:SA:CTP21125,1,"Source EDF",43.579268,5.013732,,1,,Europe/Paris,,OMA, +OMP:SA:S5154,1,"Biste",43.655629,4.000014,,1,,Europe/Paris,,OMP, +OMP:SA:S5155,1,"Collège Le Bérange",43.667341,4.023392,,1,,Europe/Paris,,OMP, +OMP:SA:S5156,1,"Fenouillet",43.66359,4.021782,,1,,Europe/Paris,,OMP, +OMP:SA:S5157,1,"François Perroux",43.653635,4.001033,,1,,Europe/Paris,,OMP, +OMP:SA:S5158,1,"Gaston Baissette",43.664581,4.017068,,1,,Europe/Paris,,OMP, +OMP:SA:S5159,1,"Golf",43.652022,4.004812,,1,,Europe/Paris,,OMP, +OMP:SA:S5160,1,"Le Grès",43.662501,4.009119,,1,,Europe/Paris,,OMP, +OMP:SA:S5161,1,"Le Levant",43.661704,4.01764,,1,,Europe/Paris,,OMP, +OMP:SA:S5162,1,"Mairie",43.661153,4.01319,,1,,Europe/Paris,,OMP, +OMP:SA:S5163,1,"Paradis",43.664095,4.014156,,1,,Europe/Paris,,OMP, +OMP:SA:S5164,1,"Paul Cézanne",43.659974,4.006853,,1,,Europe/Paris,,OMP, +OMP:SA:S5165,1,"Treille",43.657244,4.00317,,1,,Europe/Paris,,OMP, +OMP:SA:S5166,1,"Le Créant",43.727579,4.028571,,1,,Europe/Paris,,OMP, +OMP:SA:S5167,1,"Le Ginestet",43.721821,4.006756,,1,,Europe/Paris,,OMP, +OMP:SA:S5168,1,"Le Puits",43.725994,4.022387,,1,,Europe/Paris,,OMP, +OMP:SA:S5169,1,"Mairie",43.72902,4.020902,,1,,Europe/Paris,,OMP, +OMP:SA:S5170,1,"Aube Rouge",43.639391,3.924056,,1,,Europe/Paris,,OMP, +OMP:SA:S5171,1,"Balestrier",43.64427,3.903295,,1,,Europe/Paris,,OMP, +OMP:SA:S5172,1,"Buissonnets",43.64551,3.907018,,1,,Europe/Paris,,OMP, +OMP:SA:S5173,1,"Castelnau Zone d'Activités",43.636503,3.927281,,1,,Europe/Paris,,OMP, +OMP:SA:S5174,1,"Castors",43.632826,3.903884,,1,,Europe/Paris,,OMP, +OMP:SA:S5175,1,"Caylus",43.645858,3.898523,,1,,Europe/Paris,,OMP, +OMP:SA:S5176,1,"Centurions",43.632798,3.915716,,1,,Europe/Paris,,OMP, +OMP:SA:S5177,1,"Charles de Gaulle",43.628238,3.896655,,1,,Europe/Paris,,OMP, +OMP:SA:S5178,1,"Chemin de la Monnaie",43.64357,3.910629,,1,,Europe/Paris,,OMP, +OMP:SA:S5179,1,"Chênes",43.639051,3.909192,,1,,Europe/Paris,,OMP, +OMP:SA:S5180,1,"Cimetière",43.631991,3.897574,,1,,Europe/Paris,,OMP, +OMP:SA:S5181,1,"Clairval",43.630193,3.902599,,1,,Europe/Paris,,OMP, +OMP:SA:S5182,1,"Clinique du Parc",43.634206,3.891087,,1,,Europe/Paris,,OMP, +OMP:SA:S5183,1,"Closerie des Guilhems",43.634363,3.895163,,1,,Europe/Paris,,OMP, +OMP:SA:S5184,1,"Collège Frédéric Bazille",43.634388,3.906527,,1,,Europe/Paris,,OMP, +OMP:SA:S5185,1,"Décurions",43.635583,3.909035,,1,,Europe/Paris,,OMP, +OMP:SA:S5186,1,"Georges Pompidou",43.649271,3.921013,,1,,Europe/Paris,,OMP, +OMP:SA:S5187,1,"Idate",43.651711,3.897209,,1,,Europe/Paris,,OMP, +OMP:SA:S5188,1,"Jean Jaurès",43.639952,3.89414,,1,,Europe/Paris,,OMP, +OMP:SA:S5189,1,"La Galine",43.631457,3.909033,,1,,Europe/Paris,,OMP, +OMP:SA:S5190,1,"La Pompignane (Les Lacs)",43.625814,3.900809,,1,,Europe/Paris,,OMP, +OMP:SA:S5191,1,"Les Aires",43.642499,3.89957,,1,,Europe/Paris,,OMP, +OMP:SA:S5192,1,"Mairie de Castelnau",43.633009,3.897441,,1,,Europe/Paris,,OMP, +OMP:SA:S5193,1,"Marcel Dassault",43.622146,3.916857,,1,,Europe/Paris,,OMP, +OMP:SA:S5194,1,"Mas de Rochet",43.625857,3.906515,,1,,Europe/Paris,,OMP, +OMP:SA:S5195,1,"Mûriers",43.640673,3.911379,,1,,Europe/Paris,,OMP, +OMP:SA:S5196,1,"Notre-Dame de Sablassou",43.634744,3.923419,,1,,Europe/Paris,,OMP, +OMP:SA:S5197,1,"Palais des Sports",43.645162,3.917395,,1,,Europe/Paris,,OMP, +OMP:SA:S5198,1,"Pioch Pelat",43.626171,3.902192,,1,,Europe/Paris,,OMP, +OMP:SA:S5199,1,"Place de la Liberté",43.633159,3.895762,,1,,Europe/Paris,,OMP, +OMP:SA:S5200,1,"Place de la Monnaie",43.64415,3.910311,,1,,Europe/Paris,,OMP, +OMP:SA:S5201,1,"Place du Forum",43.644643,3.923992,,1,,Europe/Paris,,OMP, +OMP:SA:S5202,1,"Roger Salengro",43.632765,3.896271,,1,,Europe/Paris,,OMP, +OMP:SA:S5203,1,"Rose de France",43.632287,3.901407,,1,,Europe/Paris,,OMP, +OMP:SA:S5204,1,"Saint-Exupéry",43.641543,3.923212,,1,,Europe/Paris,,OMP, +OMP:SA:S5205,1,"Sapins",43.637013,3.910213,,1,,Europe/Paris,,OMP, +OMP:SA:S5206,1,"Sycomores",43.641862,3.910631,,1,,Europe/Paris,,OMP, +OMP:SA:S5207,1,"Thym",43.637961,3.906253,,1,,Europe/Paris,,OMP, +OMP:SA:S5209,1,"Aqueduc",43.678776,3.986085,,1,,Europe/Paris,,OMP, +OMP:SA:S5210,1,"Castries Centre",43.674684,3.983254,,1,,Europe/Paris,,OMP, +OMP:SA:S5211,1,"Collège Les Pins",43.68419,3.990701,,1,,Europe/Paris,,OMP, +OMP:SA:S5212,1,"Cap Alpha",43.659621,3.900472,,1,,Europe/Paris,,OMP, +OMP:SA:S5213,1,"Château",43.655475,3.891196,,1,,Europe/Paris,,OMP, +OMP:SA:S5214,1,"Cimetière",43.657991,3.892515,,1,,Europe/Paris,,OMP, +OMP:SA:S5215,1,"Église",43.657617,3.889174,,1,,Europe/Paris,,OMP, +OMP:SA:S5216,1,"La Croisée",43.660138,3.896982,,1,,Europe/Paris,,OMP, +OMP:SA:S5217,1,"Leenhardt",43.656804,3.885053,,1,,Europe/Paris,,OMP, +OMP:SA:S5218,1,"Médiathèque Albert Camus",43.655545,3.88128,,1,,Europe/Paris,,OMP, +OMP:SA:S5219,1,"Moulières",43.659678,3.893341,,1,,Europe/Paris,,OMP, +OMP:SA:S5220,1,"Olivette",43.658593,3.889423,,1,,Europe/Paris,,OMP, +OMP:SA:S5221,1,"Pigeonniers",43.653538,3.883937,,1,,Europe/Paris,,OMP, +OMP:SA:S5222,1,"Stade",43.653499,3.88921,,1,,Europe/Paris,,OMP, +OMP:SA:S5223,1,"Hauts des Clavoux",43.545012,3.700664,,1,,Europe/Paris,,OMP, +OMP:SA:S5224,1,"La Vierge",43.546415,3.702712,,1,,Europe/Paris,,OMP, +OMP:SA:S5225,1,"Les Clavoux",43.543412,3.700638,,1,,Europe/Paris,,OMP, +OMP:SA:S5226,1,"Mairie",43.550042,3.708076,,1,,Europe/Paris,,OMP, +OMP:SA:S5228,1,"Tambourin",43.548936,3.704564,,1,,Europe/Paris,,OMP, +OMP:SA:S5229,1,"Tournesol",43.553384,3.709602,,1,,Europe/Paris,,OMP, +OMP:SA:S5230,1,"Beaulieu",43.560528,3.726658,,1,,Europe/Paris,,OMP, +OMP:SA:S5231,1,"Chanterelles",43.560128,3.708058,,1,,Europe/Paris,,OMP, +OMP:SA:S5232,1,"Jean Jaurès",43.558377,3.712107,,1,,Europe/Paris,,OMP, +OMP:SA:S5233,1,"Jean Moulin",43.555224,3.711933,,1,,Europe/Paris,,OMP, +OMP:SA:S5234,1,"Les Grenaches",43.553181,3.718508,,1,,Europe/Paris,,OMP, +OMP:SA:S5236,1,"Stade",43.555933,3.721936,,1,,Europe/Paris,,OMP, +OMP:SA:S5237,1,"Temple",43.55745,3.716461,,1,,Europe/Paris,,OMP, +OMP:SA:S5238,1,"Arbousiers",43.654652,3.944477,,1,,Europe/Paris,,OMP, +OMP:SA:S5239,1,"Arènes",43.642829,3.93663,,1,,Europe/Paris,,OMP, +OMP:SA:S5240,1,"Baléares",43.65129,3.943838,,1,,Europe/Paris,,OMP, +OMP:SA:S5241,1,"Capri",43.646056,3.938478,,1,,Europe/Paris,,OMP, +OMP:SA:S5242,1,"Chênes",43.645199,3.941747,,1,,Europe/Paris,,OMP, +OMP:SA:S5243,1,"Cimetière",43.651165,3.940739,,1,,Europe/Paris,,OMP, +OMP:SA:S5244,1,"Fernand Rouché",43.647561,3.941306,,1,,Europe/Paris,,OMP, +OMP:SA:S5246,1,"Jean Jaurès",43.657237,3.942916,,1,,Europe/Paris,,OMP, +OMP:SA:S5247,1,"Le Crès",43.638974,3.934108,,1,,Europe/Paris,,OMP, +OMP:SA:S5249,1,"Maumarin",43.661393,3.943986,,1,,Europe/Paris,,OMP, +OMP:SA:S5250,1,"Monteroni d'Arbia",43.660122,3.936322,,1,,Europe/Paris,,OMP, +OMP:SA:S5252,1,"Pointes",43.638651,3.932849,,1,,Europe/Paris,,OMP, +OMP:SA:S5253,1,"Rocailles",43.656826,3.936069,,1,,Europe/Paris,,OMP, +OMP:SA:S5254,1,"Route de Nîmes",43.641601,3.9425,,1,,Europe/Paris,,OMP, +OMP:SA:S5255,1,"Sienne",43.662271,3.941125,,1,,Europe/Paris,,OMP, +OMP:SA:S5256,1,"Substantion",43.650462,3.939654,,1,,Europe/Paris,,OMP, +OMP:SA:S5257,1,"Albinoni",43.558135,3.786375,,1,,Europe/Paris,,OMP, +OMP:SA:S5258,1,"École La Gardiole",43.557557,3.782517,,1,,Europe/Paris,,OMP, +OMP:SA:S5259,1,"Jeu de Ballon",43.552188,3.776041,,1,,Europe/Paris,,OMP, +OMP:SA:S5260,1,"Le Hameau",43.547027,3.773427,,1,,Europe/Paris,,OMP, +OMP:SA:S5261,1,"Les Cousses",43.557853,3.78994,,1,,Europe/Paris,,OMP, +OMP:SA:S5262,1,"Les Écoles",43.549484,3.777221,,1,,Europe/Paris,,OMP, +OMP:SA:S5263,1,"Les Hauts",43.558558,3.794396,,1,,Europe/Paris,,OMP, +OMP:SA:S5264,1,"Lou Paillas",43.545559,3.774292,,1,,Europe/Paris,,OMP, +OMP:SA:S5265,1,"Paix",43.555454,3.779176,,1,,Europe/Paris,,OMP, +OMP:SA:S5266,1,"Rouget de Lisle",43.557094,3.78426,,1,,Europe/Paris,,OMP, +OMP:SA:S5267,1,"Avenue de Rome",43.643241,3.823928,,1,,Europe/Paris,,OMP, +OMP:SA:S5268,1,"Cave Coopérative",43.64722,3.800386,,1,,Europe/Paris,,OMP, +OMP:SA:S5269,1,"Grabels Centre",43.647894,3.797135,,1,,Europe/Paris,,OMP, +OMP:SA:S5270,1,"Garriguettes",43.646483,3.803698,,1,,Europe/Paris,,OMP, +OMP:SA:S5271,1,"Gaston Planté",43.646539,3.831145,,1,,Europe/Paris,,OMP, +OMP:SA:S5272,1,"Genêts",43.645798,3.809808,,1,,Europe/Paris,,OMP, +OMP:SA:S5273,1,"La Valsière",43.650091,3.831746,,1,,Europe/Paris,,OMP, +OMP:SA:S5274,1,"Le Pradas",43.660854,3.791981,,1,,Europe/Paris,,OMP, +OMP:SA:S5275,1,"Le Rio",43.646664,3.806314,,1,,Europe/Paris,,OMP, +OMP:SA:S5276,1,"Les Terrasses",43.654733,3.790587,,1,,Europe/Paris,,OMP, +OMP:SA:S5277,1,"L'Île Bleue",43.648355,3.831836,,1,,Europe/Paris,,OMP, +OMP:SA:S5278,1,"Source",43.650665,3.790941,,1,,Europe/Paris,,OMP, +OMP:SA:S5279,1,"Bel Air",43.659864,3.922062,,1,,Europe/Paris,,OMP, +OMP:SA:S5280,1,"Bibliothèque",43.658994,3.911426,,1,,Europe/Paris,,OMP, +OMP:SA:S5281,1,"C. Sylvains",43.656225,3.914532,,1,,Europe/Paris,,OMP, +OMP:SA:S5282,1,"Chesnaie",43.658864,3.924016,,1,,Europe/Paris,,OMP, +OMP:SA:S5283,1,"Cimetière Jacou",43.659149,3.909412,,1,,Europe/Paris,,OMP, +OMP:SA:S5284,1,"Clos des Garrigues",43.657711,3.919315,,1,,Europe/Paris,,OMP, +OMP:SA:S5285,1,"Coeur de Ville",43.659437,3.91311,,1,,Europe/Paris,,OMP, +OMP:SA:S5286,1,"Collège Pierre Mendès France",43.667251,3.912384,,1,,Europe/Paris,,OMP, +OMP:SA:S5287,1,"De Bocaud",43.659564,3.903789,,1,,Europe/Paris,,OMP, +OMP:SA:S5288,1,"Écureuil",43.662827,3.909971,,1,,Europe/Paris,,OMP, +OMP:SA:S5289,1,"Grand Rue",43.659306,3.919038,,1,,Europe/Paris,,OMP, +OMP:SA:S5290,1,"Hélios",43.661466,3.919469,,1,,Europe/Paris,,OMP, +OMP:SA:S5291,1,"Jacou",43.654703,3.91288,,1,,Europe/Paris,,OMP, +OMP:SA:S5292,1,"Jean Joubert",43.667282,3.914602,,1,,Europe/Paris,,OMP, +OMP:SA:S5293,1,"La Draye",43.668885,3.91752,,1,,Europe/Paris,,OMP, +OMP:SA:S5294,1,"Lou Pradet",43.662256,3.921992,,1,,Europe/Paris,,OMP, +OMP:SA:S5295,1,"Lucien Lambert",43.656949,3.91236,,1,,Europe/Paris,,OMP, +OMP:SA:S5296,1,"Parc",43.661312,3.909075,,1,,Europe/Paris,,OMP, +OMP:SA:S5297,1,"Piscine",43.660575,3.926292,,1,,Europe/Paris,,OMP, +OMP:SA:S5298,1,"Le Pontil",43.662188,3.924826,,1,,Europe/Paris,,OMP, +OMP:SA:S5299,1,"Roland Garros",43.656287,3.917097,,1,,Europe/Paris,,OMP, +OMP:SA:S5300,1,"Romarin",43.657513,3.913775,,1,,Europe/Paris,,OMP, +OMP:SA:S5301,1,"Roveraie",43.658372,3.922058,,1,,Europe/Paris,,OMP, +OMP:SA:S5302,1,"Thym",43.659152,3.917238,,1,,Europe/Paris,,OMP, +OMP:SA:S5303,1,"Tournesol",43.660396,3.915786,,1,,Europe/Paris,,OMP, +OMP:SA:S5304,1,"Allée de l'Europe",43.613944,3.810112,,1,,Europe/Paris,,OMP, +OMP:SA:S5305,1,"Calade",43.62784,3.799642,,1,,Europe/Paris,,OMP, +OMP:SA:S5306,1,"Églantiers",43.607875,3.812826,,1,,Europe/Paris,,OMP, +OMP:SA:S5307,1,"Fontcaude",43.632117,3.801769,,1,,Europe/Paris,,OMP, +OMP:SA:S5308,1,"Grand Chêne",43.619975,3.797584,,1,,Europe/Paris,,OMP, +OMP:SA:S5309,1,"Hauts de Fontcaude",43.632179,3.798491,,1,,Europe/Paris,,OMP, +OMP:SA:S5310,1,"Hôtel de Ville",43.613956,3.805213,,1,,Europe/Paris,,OMP, +OMP:SA:S5311,1,"Juvignac",43.617485,3.810142,,1,,Europe/Paris,,OMP, +OMP:SA:S5312,1,"La Bergerie",43.617074,3.796669,,1,,Europe/Paris,,OMP, +OMP:SA:S5313,1,"La Plaine",43.611708,3.814509,,1,,Europe/Paris,,OMP, +OMP:SA:S5314,1,"Le Labournas",43.61454,3.800588,,1,,Europe/Paris,,OMP, +OMP:SA:S5315,1,"Le Martinet",43.634084,3.803243,,1,,Europe/Paris,,OMP, +OMP:SA:S5316,1,"Les Thermes",43.621855,3.800095,,1,,Europe/Paris,,OMP, +OMP:SA:S5317,1,"Luminaire",43.607991,3.810849,,1,,Europe/Paris,,OMP, +OMP:SA:S5318,1,"Marjories",43.609804,3.807828,,1,,Europe/Paris,,OMP, +OMP:SA:S5319,1,"Mélanie",43.630664,3.798204,,1,,Europe/Paris,,OMP, +OMP:SA:S5320,1,"Récantou",43.613077,3.815657,,1,,Europe/Paris,,OMP, +OMP:SA:S5321,1,"Rivière",43.609877,3.815599,,1,,Europe/Paris,,OMP, +OMP:SA:S5322,1,"Route de Saint-Georges",43.612816,3.809056,,1,,Europe/Paris,,OMP, +OMP:SA:S5323,1,"Terres du Sud",43.618541,3.791881,,1,,Europe/Paris,,OMP, +OMP:SA:S5324,1,"Valat de la Fosse",43.610527,3.805558,,1,,Europe/Paris,,OMP, +OMP:SA:S5325,1,"Village",43.624786,3.79944,,1,,Europe/Paris,,OMP, +OMP:SA:S5326,1,"Boirargues",43.582743,3.925537,,1,,Europe/Paris,,OMP, +OMP:SA:S5327,1,"Lattes Centre",43.570503,3.904327,,1,,Europe/Paris,,OMP, +OMP:SA:S5328,1,"Céreirède",43.581217,3.898228,,1,,Europe/Paris,,OMP, +OMP:SA:S5329,1,"Chemin de Lattes",43.5724,3.896281,,1,,Europe/Paris,,OMP, +OMP:SA:S5330,1,"Cimetière Saint-Laurent",43.569755,3.898891,,1,,Europe/Paris,,OMP, +OMP:SA:S5331,1,"Cougourlude",43.571357,3.914266,,1,,Europe/Paris,,OMP, +OMP:SA:S5332,1,"Crédit Agricole",43.558811,3.87659,,1,,Europe/Paris,,OMP, +OMP:SA:S5333,1,"Entreprises",43.564194,3.879232,,1,,Europe/Paris,,OMP, +OMP:SA:S5334,1,"Gramenet",43.548819,3.894537,,1,,Europe/Paris,,OMP, +OMP:SA:S5335,1,"Mairie",43.568669,3.904351,,1,,Europe/Paris,,OMP, +OMP:SA:S5336,1,"Manse",43.570014,3.87835,,1,,Europe/Paris,,OMP, +OMP:SA:S5337,1,"Méjean",43.568289,3.900149,,1,,Europe/Paris,,OMP, +OMP:SA:S5338,1,"Montouzères",43.568696,3.885053,,1,,Europe/Paris,,OMP, +OMP:SA:S5339,1,"Montpellieret",43.559873,3.877175,,1,,Europe/Paris,,OMP, +OMP:SA:S5340,1,"Oasis Palavasienne",43.555499,3.892569,,1,,Europe/Paris,,OMP, +OMP:SA:S5341,1,"Saint-Pierre",43.572493,3.893526,,1,,Europe/Paris,,OMP, +OMP:SA:S5342,1,"Ancienne Gare",43.58921,3.801114,,1,,Europe/Paris,,OMP, +OMP:SA:S5343,1,"La Capoulière",43.586111,3.808912,,1,,Europe/Paris,,OMP, +OMP:SA:S5344,1,"La Croix",43.584947,3.807213,,1,,Europe/Paris,,OMP, +OMP:SA:S5345,1,"Les Serres",43.585552,3.803716,,1,,Europe/Paris,,OMP, +OMP:SA:S5346,1,"Mas de Lépôt",43.586304,3.79796,,1,,Europe/Paris,,OMP, +OMP:SA:S5347,1,"Mas la Farouch",43.587105,3.802569,,1,,Europe/Paris,,OMP, +OMP:SA:S5348,1,"Camp du Soleil",43.749378,3.960582,,1,,Europe/Paris,,OMP, +OMP:SA:S5351,1,"Aqueduc",43.653685,3.857073,,1,,Europe/Paris,,OMP, +OMP:SA:S5352,1,"Baillarguet",43.677717,3.867189,,1,,Europe/Paris,,OMP, +OMP:SA:S5353,1,"Chemin du Cambas",43.658941,3.850242,,1,,Europe/Paris,,OMP, +OMP:SA:S5354,1,"Chemin Neuf",43.667077,3.858569,,1,,Europe/Paris,,OMP, +OMP:SA:S5355,1,"Cirad de Baillarguet",43.683808,3.87699,,1,,Europe/Paris,,OMP, +OMP:SA:S5356,1,"Distillerie",43.675296,3.867322,,1,,Europe/Paris,,OMP, +OMP:SA:S5357,1,"Font de Salomé",43.676577,3.871519,,1,,Europe/Paris,,OMP, +OMP:SA:S5358,1,"Font du Noyer",43.665883,3.852643,,1,,Europe/Paris,,OMP, +OMP:SA:S5359,1,"Fontaine des Chênes",43.662519,3.846981,,1,,Europe/Paris,,OMP, +OMP:SA:S5360,1,"La Grand Font",43.668955,3.861208,,1,,Europe/Paris,,OMP, +OMP:SA:S5361,1,"La Lironde",43.66031,3.848743,,1,,Europe/Paris,,OMP, +OMP:SA:S5362,1,"Mas de Gué",43.657282,3.851857,,1,,Europe/Paris,,OMP, +OMP:SA:S5363,1,"Picadou",43.66919,3.862403,,1,,Europe/Paris,,OMP, +OMP:SA:S5364,1,"Picheyrou",43.65318,3.860353,,1,,Europe/Paris,,OMP, +OMP:SA:S5365,1,"Quatre Chemins",43.665083,3.846256,,1,,Europe/Paris,,OMP, +OMP:SA:S5366,1,"Rapatel",43.651643,3.8642,,1,,Europe/Paris,,OMP, +OMP:SA:S5367,1,"Agropolis",43.646619,3.868572,,1,,Europe/Paris,,OMP, +OMP:SA:S5368,1,"Aiguelongue",43.626405,3.882175,,1,,Europe/Paris,,OMP, +OMP:SA:S5369,1,"Aiguelongue (Jussieu)",43.638412,3.88302,,1,,Europe/Paris,,OMP, +OMP:SA:S5370,1,"Albert Einstein",43.613146,3.937135,,1,,Europe/Paris,,OMP, +OMP:SA:S5371,1,"Alco",43.625583,3.840311,,1,,Europe/Paris,,OMP, +OMP:SA:S5372,1,"Alfred Nobel",43.616418,3.910784,,1,,Europe/Paris,,OMP, +OMP:SA:S5373,1,"Alpilles",43.630223,3.879196,,1,,Europe/Paris,,OMP, +OMP:SA:S5374,1,"Ambroise Paré",43.638012,3.847694,,1,,Europe/Paris,,OMP, +OMP:SA:S5375,1,"Anatole France",43.605568,3.876378,,1,,Europe/Paris,,OMP, +OMP:SA:S5376,1,"André Malraux",43.61941,3.90041,,1,,Europe/Paris,,OMP, +OMP:SA:S5377,1,"Antennes",43.644744,3.841992,,1,,Europe/Paris,,OMP, +OMP:SA:S5378,1,"Antigone",43.608586,3.886666,,1,,Europe/Paris,,OMP, +OMP:SA:S5379,1,"Antoine-Laurent de Jussieu",43.637276,3.880117,,1,,Europe/Paris,,OMP, +OMP:SA:S5380,1,"Apollo",43.62189,3.908497,,1,,Europe/Paris,,OMP, +OMP:SA:S5381,1,"Apothicaires",43.641605,3.83494,,1,,Europe/Paris,,OMP, +OMP:SA:S5382,1,"Appel du 18 Juin",43.636547,3.830203,,1,,Europe/Paris,,OMP, +OMP:SA:S5383,1,"Astruc",43.61019,3.854678,,1,,Europe/Paris,,OMP, +OMP:SA:S5384,1,"Avenue de l'Agriculture",43.612105,3.861101,,1,,Europe/Paris,,OMP, +OMP:SA:S5385,1,"Avenue de Toulouse",43.591332,3.857714,,1,,Europe/Paris,,OMP, +OMP:SA:S5386,1,"Bagatelle",43.595376,3.844365,,1,,Europe/Paris,,OMP, +OMP:SA:S5387,1,"Beaux-Arts",43.617,3.883553,,1,,Europe/Paris,,OMP, +OMP:SA:S5388,1,"Bellevue",43.596641,3.880875,,1,,Europe/Paris,,OMP, +OMP:SA:S5389,1,"Belvédère",43.617031,3.842449,,1,,Europe/Paris,,OMP, +OMP:SA:S5390,1,"Bengalis",43.628587,3.882939,,1,,Europe/Paris,,OMP, +OMP:SA:S5391,1,"Berthelot",43.601847,3.869387,,1,,Europe/Paris,,OMP, +OMP:SA:S5392,1,"Boulevard des Sports",43.619355,3.88921,,1,,Europe/Paris,,OMP, +OMP:SA:S5393,1,"Boutonnet",43.622587,3.868088,,1,,Europe/Paris,,OMP, +OMP:SA:S5394,1,"Bugarel",43.591511,3.844955,,1,,Europe/Paris,,OMP, +OMP:SA:S5395,1,"Caducée",43.643561,3.832676,,1,,Europe/Paris,,OMP, +OMP:SA:S5396,1,"Cairons",43.643313,3.860733,,1,,Europe/Paris,,OMP, +OMP:SA:S5397,1,"Campus Agropolis",43.644672,3.869522,,1,,Europe/Paris,,OMP, +OMP:SA:S5398,1,"Carriéra",43.640863,3.818977,,1,,Europe/Paris,,OMP, +OMP:SA:S5399,1,"Castelle",43.586651,3.87217,,1,,Europe/Paris,,OMP, +OMP:SA:S5400,1,"Catalpas",43.592815,3.883777,,1,,Europe/Paris,,OMP, +OMP:SA:S5401,1,"Celleneuve",43.616038,3.825893,,1,,Europe/Paris,,OMP, +OMP:SA:S5402,1,"Centrayrargues",43.596822,3.880744,,1,,Europe/Paris,,OMP, +OMP:SA:S5403,1,"Cervantès",43.62215,3.855083,,1,,Europe/Paris,,OMP, +OMP:SA:S5404,1,"Cévennes",43.622102,3.84632,,1,,Europe/Paris,,OMP, +OMP:SA:S5405,1,"Chambéry",43.599327,3.889124,,1,,Europe/Paris,,OMP, +OMP:SA:S5406,1,"Chantecler",43.632538,3.878231,,1,,Europe/Paris,,OMP, +OMP:SA:S5407,1,"Charles Flahault",43.618412,3.866417,,1,,Europe/Paris,,OMP, +OMP:SA:S5408,1,"Chasseurs",43.603297,3.856474,,1,,Europe/Paris,,OMP, +OMP:SA:S5409,1,"Château d'Ô",43.631317,3.842999,,1,,Europe/Paris,,OMP, +OMP:SA:S5410,1,"Cheng-Du",43.594075,3.842896,,1,,Europe/Paris,,OMP, +OMP:SA:S5411,1,"Cimetière Saint-Étienne",43.615002,3.93564,,1,,Europe/Paris,,OMP, +OMP:SA:S5413,1,"Cinsaults",43.620596,3.856897,,1,,Europe/Paris,,OMP, +OMP:SA:S5414,1,"Cité de l'Arme",43.593261,3.889615,,1,,Europe/Paris,,OMP, +OMP:SA:S5415,1,"Cité Gély",43.604864,3.859485,,1,,Europe/Paris,,OMP, +OMP:SA:S5416,1,"Cité Mion",43.601333,3.884675,,1,,Europe/Paris,,OMP, +OMP:SA:S5417,1,"Cité Roger",43.620378,3.858327,,1,,Europe/Paris,,OMP, +OMP:SA:S5418,1,"Cité Valette",43.601464,3.851886,,1,,Europe/Paris,,OMP, +OMP:SA:S5419,1,"Claret",43.605788,3.862157,,1,,Europe/Paris,,OMP, +OMP:SA:S5420,1,"Clolus",43.628785,3.8811,,1,,Europe/Paris,,OMP, +OMP:SA:S5421,1,"CNRS",43.638669,3.865573,,1,,Europe/Paris,,OMP, +OMP:SA:S5422,1,"Collège Camille Claudel",43.616397,3.862094,,1,,Europe/Paris,,OMP, +OMP:SA:S5423,1,"Collège des Aiguerelles",43.598295,3.890926,,1,,Europe/Paris,,OMP, +OMP:SA:S5424,1,"Collège Marcel Pagnol",43.597425,3.845668,,1,,Europe/Paris,,OMP, +OMP:SA:S5425,1,"Colverts",43.613769,3.898165,,1,,Europe/Paris,,OMP, +OMP:SA:S5426,1,"Comédie",43.608371,3.879682,,1,,Europe/Paris,,OMP, +OMP:SA:S5427,1,"Comté de Nice",43.638607,3.811764,,1,,Europe/Paris,,OMP, +OMP:SA:S5428,1,"Comté de Toulouse",43.636994,3.819272,,1,,Europe/Paris,,OMP, +OMP:SA:S5429,1,"Coquelicots",43.597782,3.88025,,1,,Europe/Paris,,OMP, +OMP:SA:S5430,1,"Corse",43.64022,3.810778,,1,,Europe/Paris,,OMP, +OMP:SA:S5431,1,"Corum",43.614254,3.881957,,1,,Europe/Paris,,OMP, +OMP:SA:S5432,1,"Craponne",43.606196,3.867611,,1,,Europe/Paris,,OMP, +OMP:SA:S5433,1,"Croix d'Argent",43.592368,3.866486,,1,,Europe/Paris,,OMP, +OMP:SA:S5434,1,"Croix de Lavit",43.639486,3.83934,,1,,Europe/Paris,,OMP, +OMP:SA:S5435,1,"Croix des Rosiers",43.610674,3.830924,,1,,Europe/Paris,,OMP, +OMP:SA:S5436,1,"Croix du Capitaine",43.602085,3.866573,,1,,Europe/Paris,,OMP, +OMP:SA:S5437,1,"Demeter",43.583027,3.872271,,1,,Europe/Paris,,OMP, +OMP:SA:S5438,1,"Descartes",43.596684,3.883535,,1,,Europe/Paris,,OMP, +OMP:SA:S5440,1,"Doria",43.612494,3.867928,,1,,Europe/Paris,,OMP, +OMP:SA:S5441,1,"Du Guesclin",43.607116,3.883249,,1,,Europe/Paris,,OMP, +OMP:SA:S5442,1,"École d'Architecture",43.637726,3.859124,,1,,Europe/Paris,,OMP, +OMP:SA:S5444,1,"Érables",43.614995,3.856909,,1,,Europe/Paris,,OMP, +OMP:SA:S5445,1,"Ernest Renan",43.615455,3.885318,,1,,Europe/Paris,,OMP, +OMP:SA:S5446,1,"Espérance",43.614113,3.849982,,1,,Europe/Paris,,OMP, +OMP:SA:S5447,1,"Estanove",43.597731,3.848237,,1,,Europe/Paris,,OMP, +OMP:SA:S5448,1,"Estragon",43.61869,3.887967,,1,,Europe/Paris,,OMP, +OMP:SA:S5449,1,"Étoile",43.605226,3.854781,,1,,Europe/Paris,,OMP, +OMP:SA:S5450,1,"Ettore Bugatti",43.578467,3.86677,,1,,Europe/Paris,,OMP, +OMP:SA:S5451,1,"Eugène Bataillon",43.631479,3.860999,,1,,Europe/Paris,,OMP, +OMP:SA:S5452,1,"Eurêka",43.618,3.912659,,1,,Europe/Paris,,OMP, +OMP:SA:S5453,1,"Euromédecine",43.638812,3.827576,,1,,Europe/Paris,,OMP, +OMP:SA:S5454,1,"Évariste Galois",43.609269,3.912183,,1,,Europe/Paris,,OMP, +OMP:SA:S5455,1,"Fac de Lettres",43.63012,3.869985,,1,,Europe/Paris,,OMP, +OMP:SA:S5456,1,"Fac de Pharmacie",43.623631,3.861619,,1,,Europe/Paris,,OMP, +OMP:SA:S5457,1,"Figairasse",43.607193,3.850429,,1,,Europe/Paris,,OMP, +OMP:SA:S5458,1,"Figuerolles",43.60645,3.864278,,1,,Europe/Paris,,OMP, +OMP:SA:S5459,1,"Font Couverte",43.593349,3.851769,,1,,Europe/Paris,,OMP, +OMP:SA:S5460,1,"Font Trouvé",43.626927,3.847722,,1,,Europe/Paris,,OMP, +OMP:SA:S5461,1,"Foyer des Aubes",43.618459,3.894631,,1,,Europe/Paris,,OMP, +OMP:SA:S5462,1,"François Couperin",43.612722,3.902838,,1,,Europe/Paris,,OMP, +OMP:SA:S5463,1,"François Dezeuze",43.60868,3.845669,,1,,Europe/Paris,,OMP, +OMP:SA:S5464,1,"Françoise",43.619957,3.891132,,1,,Europe/Paris,,OMP, +OMP:SA:S5465,1,"Frédéric Bazille",43.602714,3.880495,,1,,Europe/Paris,,OMP, +OMP:SA:S5466,1,"Frédéric Fabrège",43.597322,3.886657,,1,,Europe/Paris,,OMP, +OMP:SA:S5467,1,"Frédéric Peyson",43.602529,3.880205,,1,,Europe/Paris,,OMP, +OMP:SA:S5468,1,"Galéra",43.63659,3.836207,,1,,Europe/Paris,,OMP, +OMP:SA:S5469,1,"Gambetta",43.606657,3.871916,,1,,Europe/Paris,,OMP, +OMP:SA:S5470,1,"Garcia Lorca",43.591131,3.890224,,1,,Europe/Paris,,OMP, +OMP:SA:S5471,1,"Gardioles",43.625077,3.850829,,1,,Europe/Paris,,OMP, +OMP:SA:S5472,1,"Gare Saint-Roch",43.605016,3.879184,,1,,Europe/Paris,,OMP, +OMP:SA:S5473,1,"Garigliano",43.618796,3.897424,,1,,Europe/Paris,,OMP, +OMP:SA:S5474,1,"Garosud (Jeune Parque)",43.581011,3.869286,,1,,Europe/Paris,,OMP, +OMP:SA:S5475,1,"Gascogne",43.634324,3.860023,,1,,Europe/Paris,,OMP, +OMP:SA:S5476,1,"Gémeaux",43.633244,3.822628,,1,,Europe/Paris,,OMP, +OMP:SA:S5477,1,"Georges Brassens",43.595698,3.862444,,1,,Europe/Paris,,OMP, +OMP:SA:S5478,1,"Georges Danton",43.599643,3.843278,,1,,Europe/Paris,,OMP, +OMP:SA:S5479,1,"Georges Frêche - Hôtel de Ville",43.599317,3.894863,,1,,Europe/Paris,,OMP, +OMP:SA:S5480,1,"Georges Méliès",43.606684,3.922962,,1,,Europe/Paris,,OMP, +OMP:SA:S5481,1,"Glycines",43.611886,3.863829,,1,,Europe/Paris,,OMP, +OMP:SA:S5482,1,"Goélands",43.616142,3.903229,,1,,Europe/Paris,,OMP, +OMP:SA:S5483,1,"Gouara",43.603188,3.86231,,1,,Europe/Paris,,OMP, +OMP:SA:S5484,1,"Grammont",43.614123,3.930654,,1,,Europe/Paris,,OMP, +OMP:SA:S5485,1,"Grèzes",43.60964,3.827643,,1,,Europe/Paris,,OMP, +OMP:SA:S5486,1,"Guglielmo Marconi",43.611452,3.912318,,1,,Europe/Paris,,OMP, +OMP:SA:S5487,1,"Guillaume Janvier",43.597645,3.864562,,1,,Europe/Paris,,OMP, +OMP:SA:S5488,1,"Gustave Eiffel",43.609255,3.832743,,1,,Europe/Paris,,OMP, +OMP:SA:S5489,1,"Halles de la Paillade",43.627469,3.817627,,1,,Europe/Paris,,OMP, +OMP:SA:S5490,1,"Hauts de Massane",43.636166,3.822593,,1,,Europe/Paris,,OMP, +OMP:SA:S5491,1,"Hélios",43.600996,3.885606,,1,,Europe/Paris,,OMP, +OMP:SA:S5492,1,"Henri Dunant",43.62688,3.86897,,1,,Europe/Paris,,OMP, +OMP:SA:S5493,1,"Henri Marès",43.620195,3.854103,,1,,Europe/Paris,,OMP, +OMP:SA:S5494,1,"Henri René",43.603143,3.881941,,1,,Europe/Paris,,OMP, +OMP:SA:S5495,1,"Hippolyte Rech",43.620147,3.865127,,1,,Europe/Paris,,OMP, +OMP:SA:S5496,1,"Hôpital Lapeyronie",43.631651,3.852575,,1,,Europe/Paris,,OMP, +OMP:SA:S5497,1,"Hortus",43.643223,3.860124,,1,,Europe/Paris,,OMP, +OMP:SA:S5498,1,"Hôtel du Département",43.621836,3.83504,,1,,Europe/Paris,,OMP, +OMP:SA:S5499,1,"Industrie",43.584566,3.881649,,1,,Europe/Paris,,OMP, +OMP:SA:S5500,1,"Iris",43.599039,3.885393,,1,,Europe/Paris,,OMP, +OMP:SA:S5501,1,"Irissou",43.593964,3.852775,,1,,Europe/Paris,,OMP, +OMP:SA:S5502,1,"Jacques Prévert",43.642351,3.814089,,1,,Europe/Paris,,OMP, +OMP:SA:S5503,1,"Jasse de Maurin",43.579539,3.862767,,1,,Europe/Paris,,OMP, +OMP:SA:S5504,1,"Jean Bart",43.625592,3.837725,,1,,Europe/Paris,,OMP, +OMP:SA:S5505,1,"Jean Calvin",43.618665,3.845846,,1,,Europe/Paris,,OMP, +OMP:SA:S5506,1,"Jean Mermoz",43.612603,3.889299,,1,,Europe/Paris,,OMP, +OMP:SA:S5507,1,"Jean Mirailhet",43.596156,3.892105,,1,,Europe/Paris,,OMP, +OMP:SA:S5508,1,"Jean Vachet",43.592348,3.884951,,1,,Europe/Paris,,OMP, +OMP:SA:S5509,1,"Jeu de Mail des Abbés",43.62021,3.884098,,1,,Europe/Paris,,OMP, +OMP:SA:S5510,1,"Jules Guesde",43.611473,3.846485,,1,,Europe/Paris,,OMP, +OMP:SA:S5511,1,"La Gaillarde",43.616251,3.857722,,1,,Europe/Paris,,OMP, +OMP:SA:S5512,1,"La Martelle",43.607388,3.826694,,1,,Europe/Paris,,OMP, +OMP:SA:S5513,1,"La Pile",43.617318,3.86812,,1,,Europe/Paris,,OMP, +OMP:SA:S5514,1,"La Rauze",43.593471,3.895693,,1,,Europe/Paris,,OMP, +OMP:SA:S5515,1,"La Source",43.621037,3.85686,,1,,Europe/Paris,,OMP, +OMP:SA:S5516,1,"Lagoya",43.61219,3.906028,,1,,Europe/Paris,,OMP, +OMP:SA:S5517,1,"Las Cazes",43.616103,3.847114,,1,,Europe/Paris,,OMP, +OMP:SA:S5518,1,"Las Rébès",43.620802,3.849243,,1,,Europe/Paris,,OMP, +OMP:SA:S5519,1,"Las Sorbes",43.615159,3.854884,,1,,Europe/Paris,,OMP, +OMP:SA:S5520,1,"Lavalette",43.637735,3.869336,,1,,Europe/Paris,,OMP, +OMP:SA:S5521,1,"Lavandin",43.600315,3.851781,,1,,Europe/Paris,,OMP, +OMP:SA:S5522,1,"Le Grand M",43.590944,3.854612,,1,,Europe/Paris,,OMP, +OMP:SA:S5523,1,"Lemasson",43.59371,3.873275,,1,,Europe/Paris,,OMP, +OMP:SA:S5524,1,"Léon Blum",43.60926,3.890408,,1,,Europe/Paris,,OMP, +OMP:SA:S5525,1,"Léon Cordès",43.601591,3.882988,,1,,Europe/Paris,,OMP, +OMP:SA:S5526,1,"Lepic",43.601397,3.863079,,1,,Europe/Paris,,OMP, +OMP:SA:S5527,1,"Les Arceaux",43.609896,3.862192,,1,,Europe/Paris,,OMP, +OMP:SA:S5528,1,"Les Aubes",43.613679,3.888846,,1,,Europe/Paris,,OMP, +OMP:SA:S5529,1,"Les Bouisses",43.599325,3.835093,,1,,Europe/Paris,,OMP, +OMP:SA:S5530,1,"Les Pins",43.590948,3.873486,,1,,Europe/Paris,,OMP, +OMP:SA:S5531,1,"Les Roses",43.602561,3.854488,,1,,Europe/Paris,,OMP, +OMP:SA:S5532,1,"Louis Blanc",43.614746,3.878333,,1,,Europe/Paris,,OMP, +OMP:SA:S5533,1,"Louis Lépine",43.614628,3.914595,,1,,Europe/Paris,,OMP, +OMP:SA:S5534,1,"Louis Ravaz",43.620113,3.85222,,1,,Europe/Paris,,OMP, +OMP:SA:S5535,1,"Louvain",43.613514,3.858689,,1,,Europe/Paris,,OMP, +OMP:SA:S5536,1,"Lucullus",43.594804,3.88858,,1,,Europe/Paris,,OMP, +OMP:SA:S5537,1,"Lycée Frédéric Bazille",43.645557,3.862254,,1,,Europe/Paris,,OMP, +OMP:SA:S5538,1,"Lycée Georges Clemenceau",43.603047,3.871597,,1,,Europe/Paris,,OMP, +OMP:SA:S5539,1,"Lycée Jean Monnet",43.624176,3.834804,,1,,Europe/Paris,,OMP, +OMP:SA:S5540,1,"Lycée Jules Ferry",43.6087,3.84103,,1,,Europe/Paris,,OMP, +OMP:SA:S5541,1,"Lycée Léonard de Vinci",43.625705,3.82435,,1,,Europe/Paris,,OMP, +OMP:SA:S5542,1,"Maison des Sports",43.618428,3.864648,,1,,Europe/Paris,,OMP, +OMP:SA:S5543,1,"Major Flandre",43.627099,3.872553,,1,,Europe/Paris,,OMP, +OMP:SA:S5544,1,"Malbosc",43.634619,3.833779,,1,,Europe/Paris,,OMP, +OMP:SA:S5545,1,"Marché Gare",43.58384,3.885908,,1,,Europe/Paris,,OMP, +OMP:SA:S5546,1,"Maréchal Leclerc",43.594332,3.885191,,1,,Europe/Paris,,OMP, +OMP:SA:S5547,1,"Marie Caizergues",43.621224,3.875426,,1,,Europe/Paris,,OMP, +OMP:SA:S5548,1,"Marie Curie",43.61484,3.831305,,1,,Europe/Paris,,OMP, +OMP:SA:S5549,1,"Marie Durand",43.61832,3.898079,,1,,Europe/Paris,,OMP, +OMP:SA:S5550,1,"Martellière",43.6067,3.837439,,1,,Europe/Paris,,OMP, +OMP:SA:S5551,1,"Mas Argelliers",43.586809,3.889452,,1,,Europe/Paris,,OMP, +OMP:SA:S5552,1,"Mas de Bagnères",43.586833,3.858658,,1,,Europe/Paris,,OMP, +OMP:SA:S5553,1,"Mas de Bellevue",43.636498,3.812761,,1,,Europe/Paris,,OMP, +OMP:SA:S5554,1,"Mas de Merle",43.604508,3.857286,,1,,Europe/Paris,,OMP, +OMP:SA:S5555,1,"Mas Drevon",43.595467,3.867917,,1,,Europe/Paris,,OMP, +OMP:SA:S5556,1,"Mas Saint-Pierre",43.582119,3.879876,,1,,Europe/Paris,,OMP, +OMP:SA:S5557,1,"Maurice Chauvet",43.638644,3.856524,,1,,Europe/Paris,,OMP, +OMP:SA:S5558,1,"Maurice Chevalier",43.628589,3.887221,,1,,Europe/Paris,,OMP, +OMP:SA:S5559,1,"Millénaire",43.603491,3.908325,,1,,Europe/Paris,,OMP, +OMP:SA:S5560,1,"Mondial 98",43.602617,3.904107,,1,,Europe/Paris,,OMP, +OMP:SA:S5561,1,"Monsieur Teste",43.607385,3.835997,,1,,Europe/Paris,,OMP, +OMP:SA:S5562,1,"Montmaur",43.641147,3.86325,,1,,Europe/Paris,,OMP, +OMP:SA:S5563,1,"Mosson",43.616223,3.819612,,1,,Europe/Paris,,OMP, +OMP:SA:S5564,1,"Moularès (Hôtel de Ville)",43.60073,3.895359,,1,,Europe/Paris,,OMP, +OMP:SA:S5565,1,"Moulin de Gasconnet",43.633922,3.874506,,1,,Europe/Paris,,OMP, +OMP:SA:S5566,1,"Mûriers",43.626206,3.849164,,1,,Europe/Paris,,OMP, +OMP:SA:S5567,1,"Myrtes",43.60111,3.866188,,1,,Europe/Paris,,OMP, +OMP:SA:S5568,1,"Nazareth",43.621685,3.880277,,1,,Europe/Paris,,OMP, +OMP:SA:S5569,1,"Nouveau Saint-Roch",43.599493,3.875645,,1,,Europe/Paris,,OMP, +OMP:SA:S5570,1,"Observatoire",43.606439,3.876488,,1,,Europe/Paris,,OMP, +OMP:SA:S5571,1,"Occitanie",43.634358,3.848637,,1,,Europe/Paris,,OMP, +OMP:SA:S5572,1,"Odysseum",43.604121,3.920627,,1,,Europe/Paris,,OMP, +OMP:SA:S5573,1,"Ormeaux",43.602023,3.833741,,1,,Europe/Paris,,OMP, +OMP:SA:S5574,1,"Oxford",43.626937,3.82041,,1,,Europe/Paris,,OMP, +OMP:SA:S5575,1,"Pablo Picasso",43.597882,3.903347,,1,,Europe/Paris,,OMP, +OMP:SA:S5576,1,"Paladilhe",43.612046,3.867187,,1,,Europe/Paris,,OMP, +OMP:SA:S5577,1,"Palissade",43.607426,3.869636,,1,,Europe/Paris,,OMP, +OMP:SA:S5578,1,"Palombes",43.619486,3.893867,,1,,Europe/Paris,,OMP, +OMP:SA:S5579,1,"Pâquerettes",43.599653,3.881476,,1,,Europe/Paris,,OMP, +OMP:SA:S5580,1,"Parc de la Lironde",43.608641,3.906512,,1,,Europe/Paris,,OMP, +OMP:SA:S5581,1,"Parc Malbosc",43.623402,3.830973,,1,,Europe/Paris,,OMP, +OMP:SA:S5582,1,"Pas du Loup",43.600133,3.848127,,1,,Europe/Paris,,OMP, +OMP:SA:S5583,1,"Passerines",43.588446,3.872417,,1,,Europe/Paris,,OMP, +OMP:SA:S5584,1,"Pastourelles",43.621834,3.901219,,1,,Europe/Paris,,OMP, +OMP:SA:S5585,1,"Patrice Lumumba",43.578849,3.864542,,1,,Europe/Paris,,OMP, +OMP:SA:S5586,1,"Paul Fajon",43.595117,3.837753,,1,,Europe/Paris,,OMP, +OMP:SA:S5587,1,"Paul Painlevé",43.611148,3.898539,,1,,Europe/Paris,,OMP, +OMP:SA:S5588,1,"Pergola",43.617638,3.839558,,1,,Europe/Paris,,OMP, +OMP:SA:S5589,1,"Petit Bard",43.614639,3.835433,,1,,Europe/Paris,,OMP, +OMP:SA:S5590,1,"Peyrou - Arc de Triomphe",43.611407,3.872304,,1,,Europe/Paris,,OMP, +OMP:SA:S5591,1,"Pic Saint-Loup",43.639184,3.854558,,1,,Europe/Paris,,OMP, +OMP:SA:S5592,1,"Pierre Cardenal",43.638714,3.81902,,1,,Europe/Paris,,OMP, +OMP:SA:S5593,1,"Pierre d'Adhémar",43.622169,3.863919,,1,,Europe/Paris,,OMP, +OMP:SA:S5594,1,"Pierre de Coubertin",43.637543,3.814595,,1,,Europe/Paris,,OMP, +OMP:SA:S5595,1,"Pierre Laroque",43.621528,3.904354,,1,,Europe/Paris,,OMP, +OMP:SA:S5596,1,"Pierre Rouge",43.623064,3.882592,,1,,Europe/Paris,,OMP, +OMP:SA:S5597,1,"Pierre Viala",43.617425,3.85414,,1,,Europe/Paris,,OMP, +OMP:SA:S5598,1,"Pilory",43.619398,3.831883,,1,,Europe/Paris,,OMP, +OMP:SA:S5599,1,"Pinsons",43.616954,3.886114,,1,,Europe/Paris,,OMP, +OMP:SA:S5600,1,"Pinville",43.614037,3.904507,,1,,Europe/Paris,,OMP, +OMP:SA:S5601,1,"Pioch de Boutonnet",43.633798,3.87751,,1,,Europe/Paris,,OMP, +OMP:SA:S5602,1,"Pitot",43.612091,3.870343,,1,,Europe/Paris,,OMP, +OMP:SA:S5603,1,"Place Albert 1er - Saint-Charles",43.616449,3.874246,,1,,Europe/Paris,,OMP, +OMP:SA:S5604,1,"Place Carnot",43.603269,3.8838,,1,,Europe/Paris,,OMP, +OMP:SA:S5605,1,"Place de France",43.603708,3.915036,,1,,Europe/Paris,,OMP, +OMP:SA:S5606,1,"Place de l'Europe",43.608297,3.894292,,1,,Europe/Paris,,OMP, +OMP:SA:S5608,1,"Place d'Italie",43.641789,3.818382,,1,,Europe/Paris,,OMP, +OMP:SA:S5609,1,"Place du 8 Mai",43.599948,3.867048,,1,,Europe/Paris,,OMP, +OMP:SA:S5610,1,"Plan Cabanes",43.608169,3.86858,,1,,Europe/Paris,,OMP, +OMP:SA:S5611,1,"Plan des 4 Seigneurs",43.640844,3.857957,,1,,Europe/Paris,,OMP, +OMP:SA:S5612,1,"Pléiade",43.628474,3.845758,,1,,Europe/Paris,,OMP, +OMP:SA:S5613,1,"Pompignane",43.612279,3.894907,,1,,Europe/Paris,,OMP, +OMP:SA:S5614,1,"Port Marianne",43.601576,3.899625,,1,,Europe/Paris,,OMP, +OMP:SA:S5615,1,"Porto",43.600386,3.879863,,1,,Europe/Paris,,OMP, +OMP:SA:S5616,1,"Pous de la Sers",43.619124,3.86187,,1,,Europe/Paris,,OMP, +OMP:SA:S5617,1,"Primevères",43.598187,3.881473,,1,,Europe/Paris,,OMP, +OMP:SA:S5618,1,"Puccini",43.594944,3.854038,,1,,Europe/Paris,,OMP, +OMP:SA:S5619,1,"Puech Villa",43.640082,3.829391,,1,,Europe/Paris,,OMP, +OMP:SA:S5620,1,"Raimbaud d'Orange",43.637485,3.820783,,1,,Europe/Paris,,OMP, +OMP:SA:S5621,1,"Razeteurs",43.595623,3.884125,,1,,Europe/Paris,,OMP, +OMP:SA:S5622,1,"Renaudel",43.61464,3.82817,,1,,Europe/Paris,,OMP, +OMP:SA:S5623,1,"René Bougnol",43.636443,3.874215,,1,,Europe/Paris,,OMP, +OMP:SA:S5624,1,"Renouvier",43.607122,3.866362,,1,,Europe/Paris,,OMP, +OMP:SA:S5625,1,"Restanque",43.590417,3.884874,,1,,Europe/Paris,,OMP, +OMP:SA:S5626,1,"Rièges",43.619732,3.849289,,1,,Europe/Paris,,OMP, +OMP:SA:S5627,1,"Rives du Lez",43.604071,3.894931,,1,,Europe/Paris,,OMP, +OMP:SA:S5628,1,"Ronceray",43.593786,3.860328,,1,,Europe/Paris,,OMP, +OMP:SA:S5629,1,"Rondelet",43.604089,3.874854,,1,,Europe/Paris,,OMP, +OMP:SA:S5630,1,"Roqueturière",43.630348,3.885586,,1,,Europe/Paris,,OMP, +OMP:SA:S5631,1,"Rouget de Lisle",43.594818,3.839848,,1,,Europe/Paris,,OMP, +OMP:SA:S5632,1,"Route de Ganges",43.642953,3.845349,,1,,Europe/Paris,,OMP, +OMP:SA:S5633,1,"Sabines",43.583672,3.860392,,1,,Europe/Paris,,OMP, +OMP:SA:S5634,1,"Saint-Clément",43.617741,3.844398,,1,,Europe/Paris,,OMP, +OMP:SA:S5635,1,"Saint-Cléophas",43.596567,3.875356,,1,,Europe/Paris,,OMP, +OMP:SA:S5636,1,"Saint-Denis",43.605037,3.874533,,1,,Europe/Paris,,OMP, +OMP:SA:S5637,1,"Saint-Éloi",43.626298,3.865663,,1,,Europe/Paris,,OMP, +OMP:SA:S5638,1,"Saint-Gabriel",43.61459,3.852444,,1,,Europe/Paris,,OMP, +OMP:SA:S5639,1,"Saint-Guilhem - Courreau",43.607971,3.873721,,1,,Europe/Paris,,OMP, +OMP:SA:S5640,1,"Saint-Jaumes",43.613778,3.870524,,1,,Europe/Paris,,OMP, +OMP:SA:S5641,1,"Saint-Jean",43.615465,3.897766,,1,,Europe/Paris,,OMP, +OMP:SA:S5642,1,"Saint-Lazare",43.627324,3.888957,,1,,Europe/Paris,,OMP, +OMP:SA:S5643,1,"Saint-Martin",43.592273,3.880151,,1,,Europe/Paris,,OMP, +OMP:SA:S5644,1,"Saint-Maur",43.621014,3.893871,,1,,Europe/Paris,,OMP, +OMP:SA:S5645,1,"Saint-Michel",43.606607,3.898613,,1,,Europe/Paris,,OMP, +OMP:SA:S5646,1,"Saint-Paul",43.630555,3.821395,,1,,Europe/Paris,,OMP, +OMP:SA:S5647,1,"Saint-Priest",43.635155,3.843682,,1,,Europe/Paris,,OMP, +OMP:SA:S5648,1,"Saint-Roch",43.615201,3.869721,,1,,Europe/Paris,,OMP, +OMP:SA:S5649,1,"Sainte-Catherine",43.626427,3.876198,,1,,Europe/Paris,,OMP, +OMP:SA:S5650,1,"Sainte-Geneviève",43.623236,3.844234,,1,,Europe/Paris,,OMP, +OMP:SA:S5651,1,"Sainte-Odile",43.622604,3.873187,,1,,Europe/Paris,,OMP, +OMP:SA:S5652,1,"Sainte-Thérèse",43.614286,3.865168,,1,,Europe/Paris,,OMP, +OMP:SA:S5653,1,"Salaison",43.623901,3.898813,,1,,Europe/Paris,,OMP, +OMP:SA:S5654,1,"Samuel Morse",43.606389,3.913069,,1,,Europe/Paris,,OMP, +OMP:SA:S5655,1,"Saporta",43.584596,3.888316,,1,,Europe/Paris,,OMP, +OMP:SA:S5656,1,"Semard",43.619146,3.903076,,1,,Europe/Paris,,OMP, +OMP:SA:S5657,1,"Soleiado",43.600696,3.886464,,1,,Europe/Paris,,OMP, +OMP:SA:S5658,1,"Sophie Germain",43.605039,3.835329,,1,,Europe/Paris,,OMP, +OMP:SA:S5659,1,"Stade de la Mosson",43.621252,3.817379,,1,,Europe/Paris,,OMP, +OMP:SA:S5660,1,"Stade Philippidès",43.618989,3.869464,,1,,Europe/Paris,,OMP, +OMP:SA:S5661,1,"TaM",43.581401,3.870323,,1,,Europe/Paris,,OMP, +OMP:SA:S5662,1,"Tonnelles",43.614054,3.83804,,1,,Europe/Paris,,OMP, +OMP:SA:S5663,1,"Tournezy",43.579145,3.877855,,1,,Europe/Paris,,OMP, +OMP:SA:S5664,1,"Tourterelles",43.625801,3.87852,,1,,Europe/Paris,,OMP, +OMP:SA:S5665,1,"Universités des Sciences et Lettres",43.629154,3.861395,,1,,Europe/Paris,,OMP, +OMP:SA:S5666,1,"Uppsala",43.629518,3.82096,,1,,Europe/Paris,,OMP, +OMP:SA:S5667,1,"Val d'Aurelle",43.642725,3.835898,,1,,Europe/Paris,,OMP, +OMP:SA:S5668,1,"Vauguières",43.6045,3.906942,,1,,Europe/Paris,,OMP, +OMP:SA:S5669,1,"Véga",43.595707,3.849581,,1,,Europe/Paris,,OMP, +OMP:SA:S5670,1,"Vert Bois",43.635303,3.868379,,1,,Europe/Paris,,OMP, +OMP:SA:S5671,1,"Vieille Poste",43.610587,3.90007,,1,,Europe/Paris,,OMP, +OMP:SA:S5672,1,"Villeneuve d'Angoulême",43.588738,3.865746,,1,,Europe/Paris,,OMP, +OMP:SA:S5673,1,"Vincent Auriol",43.647967,3.864151,,1,,Europe/Paris,,OMP, +OMP:SA:S5674,1,"Vivaldi",43.596057,3.856071,,1,,Europe/Paris,,OMP, +OMP:SA:S5675,1,"Voie Domitienne",43.622266,3.859615,,1,,Europe/Paris,,OMP, +OMP:SA:S5676,1,"Volta Fizeau",43.613873,3.913312,,1,,Europe/Paris,,OMP, +OMP:SA:S5677,1,"Voltaire",43.603553,3.889065,,1,,Europe/Paris,,OMP, +OMP:SA:S5678,1,"Winston Churchill",43.598963,3.855901,,1,,Europe/Paris,,OMP, +OMP:SA:S5679,1,"Yves du Manoir",43.591433,3.848639,,1,,Europe/Paris,,OMP, +OMP:SA:S5680,1,"Zénith",43.612077,3.930968,,1,,Europe/Paris,,OMP, +OMP:SA:S5681,1,"Zoo",43.639964,3.873146,,1,,Europe/Paris,,OMP, +OMP:SA:S5682,1,"Bonadona",43.555699,3.965662,,1,,Europe/Paris,,OMP, +OMP:SA:S5683,1,"Cabanes de Pérols",43.552549,3.968279,,1,,Europe/Paris,,OMP, +OMP:SA:S5684,1,"Croix du Languedoc",43.566617,3.948554,,1,,Europe/Paris,,OMP, +OMP:SA:S5685,1,"EcoPôle",43.578155,3.934894,,1,,Europe/Paris,,OMP, +OMP:SA:S5686,1,"Lauriers",43.568701,3.945633,,1,,Europe/Paris,,OMP, +OMP:SA:S5687,1,"Parc Expo",43.573293,3.944538,,1,,Europe/Paris,,OMP, +OMP:SA:S5688,1,"Pérols Centre",43.565553,3.957177,,1,,Europe/Paris,,OMP, +OMP:SA:S5689,1,"Pérols Étang de l'Or",43.558041,3.963565,,1,,Europe/Paris,,OMP, +OMP:SA:S5690,1,"Pérols Sud",43.559558,3.958293,,1,,Europe/Paris,,OMP, +OMP:SA:S5691,1,"Plein Sud",43.571156,3.941968,,1,,Europe/Paris,,OMP, +OMP:SA:S5692,1,"Radel",43.556831,3.963877,,1,,Europe/Paris,,OMP, +OMP:SA:S5693,1,"Saint-Jean",43.561087,3.95223,,1,,Europe/Paris,,OMP, +OMP:SA:S5694,1,"Coopérative Oléicole",43.584657,3.756973,,1,,Europe/Paris,,OMP, +OMP:SA:S5695,1,"Distillerie",43.585569,3.766902,,1,,Europe/Paris,,OMP, +OMP:SA:S5696,1,"Gaston Defferre",43.584225,3.752845,,1,,Europe/Paris,,OMP, +OMP:SA:S5697,1,"Jean Moulin",43.582639,3.751816,,1,,Europe/Paris,,OMP, +OMP:SA:S5698,1,"La Bornière",43.57964,3.753584,,1,,Europe/Paris,,OMP, +OMP:SA:S5699,1,"Le Temple",43.585511,3.762411,,1,,Europe/Paris,,OMP, +OMP:SA:S5700,1,"Lotissement Les Violettes",43.587558,3.765999,,1,,Europe/Paris,,OMP, +OMP:SA:S5701,1,"Maison de Retraite",43.581297,3.750658,,1,,Europe/Paris,,OMP, +OMP:SA:S5702,1,"Médiathèque La Gare",43.586145,3.760028,,1,,Europe/Paris,,OMP, +OMP:SA:S5703,1,"Saint-Martin de Vignogoul",43.58562,3.790041,,1,,Europe/Paris,,OMP, +OMP:SA:S5704,1,"Square Tribes",43.58401,3.759703,,1,,Europe/Paris,,OMP, +OMP:SA:S5705,1,"Cave Coopérative",43.694444,3.862323,,1,,Europe/Paris,,OMP, +OMP:SA:S5706,1,"Coste Rousse",43.69478,3.870398,,1,,Europe/Paris,,OMP, +OMP:SA:S5707,1,"Ducque",43.697192,3.867662,,1,,Europe/Paris,,OMP, +OMP:SA:S5708,1,"Frayssinet",43.695961,3.862475,,1,,Europe/Paris,,OMP, +OMP:SA:S5709,1,"Les Baronnes",43.693674,3.872313,,1,,Europe/Paris,,OMP, +OMP:SA:S5710,1,"Mairie",43.697257,3.863699,,1,,Europe/Paris,,OMP, +OMP:SA:S5711,1,"Mandarine",43.692935,3.862195,,1,,Europe/Paris,,OMP, +OMP:SA:S5712,1,"Moulin Neuf",43.690335,3.862337,,1,,Europe/Paris,,OMP, +OMP:SA:S5713,1,"Pendances",43.68386,3.863142,,1,,Europe/Paris,,OMP, +OMP:SA:S5714,1,"Pont Vert",43.686707,3.863367,,1,,Europe/Paris,,OMP, +OMP:SA:S5715,1,"Le Mas",43.721594,4.035807,,1,,Europe/Paris,,OMP, +OMP:SA:S5716,1,"Mairie",43.723545,4.038679,,1,,Europe/Paris,,OMP, +OMP:SA:S5717,1,"Micocoulier",43.666884,4.029657,,1,,Europe/Paris,,OMP, +OMP:SA:S5718,1,"Olivette",43.665591,4.031836,,1,,Europe/Paris,,OMP, +OMP:SA:S5719,1,"Saint-Brès",43.664885,4.036731,,1,,Europe/Paris,,OMP, +OMP:SA:S5720,1,"Sophoras",43.668018,4.026694,,1,,Europe/Paris,,OMP, +OMP:SA:S5721,1,"Versant",43.664272,4.036243,,1,,Europe/Paris,,OMP, +OMP:SA:S5722,1,"Les Mazes",43.731532,3.981412,,1,,Europe/Paris,,OMP, +OMP:SA:S5723,1,"Lotissement Les Lilas",43.728052,3.96476,,1,,Europe/Paris,,OMP, +OMP:SA:S5724,1,"Lotisssement Les Romarins",43.729408,3.969659,,1,,Europe/Paris,,OMP, +OMP:SA:S5725,1,"Mas de Bizard",43.726303,3.980604,,1,,Europe/Paris,,OMP, +OMP:SA:S5726,1,"Route de Teyran",43.733769,3.979133,,1,,Europe/Paris,,OMP, +OMP:SA:S5727,1,"Stade",43.733457,3.980153,,1,,Europe/Paris,,OMP, +OMP:SA:S5728,1,"Avenue de Montpellier",43.696888,4.032382,,1,,Europe/Paris,,OMP, +OMP:SA:S5729,1,"Les Mazets",43.699099,4.018532,,1,,Europe/Paris,,OMP, +OMP:SA:S5730,1,"Les Mourguettes",43.696901,4.026335,,1,,Europe/Paris,,OMP, +OMP:SA:S5731,1,"Les Pérouses",43.698168,4.024056,,1,,Europe/Paris,,OMP, +OMP:SA:S5732,1,"Poste",43.69659,4.031307,,1,,Europe/Paris,,OMP, +OMP:SA:S5733,1,"Avenue Justin Bec",43.626001,3.768422,,1,,Europe/Paris,,OMP, +OMP:SA:S5734,1,"Bel Horizon",43.612001,3.776805,,1,,Europe/Paris,,OMP, +OMP:SA:S5736,1,"Dame d'Orcas",43.614514,3.780445,,1,,Europe/Paris,,OMP, +OMP:SA:S5737,1,"Gare",43.609056,3.788657,,1,,Europe/Paris,,OMP, +OMP:SA:S5738,1,"La Regnague",43.608823,3.795938,,1,,Europe/Paris,,OMP, +OMP:SA:S5739,1,"Le Réservoir",43.614591,3.776054,,1,,Europe/Paris,,OMP, +OMP:SA:S5740,1,"Le Saint-Georges",43.610615,3.784293,,1,,Europe/Paris,,OMP, +OMP:SA:S5741,1,"Stade",43.607589,3.784711,,1,,Europe/Paris,,OMP, +OMP:SA:S5742,1,"Zone Artisanale",43.629272,3.769172,,1,,Europe/Paris,,OMP, +OMP:SA:S5743,1,"Allée du Bois",43.582141,3.824391,,1,,Europe/Paris,,OMP, +OMP:SA:S5744,1,"Cave Coopérative",43.573213,3.827138,,1,,Europe/Paris,,OMP, +OMP:SA:S5745,1,"Centre Commercial",43.570633,3.847248,,1,,Europe/Paris,,OMP, +OMP:SA:S5746,1,"Château du Terral",43.582977,3.830917,,1,,Europe/Paris,,OMP, +OMP:SA:S5747,1,"Collège Louis Germain",43.57869,3.823065,,1,,Europe/Paris,,OMP, +OMP:SA:S5748,1,"Côteaux",43.577554,3.835004,,1,,Europe/Paris,,OMP, +OMP:SA:S5750,1,"Jasses",43.570616,3.827751,,1,,Europe/Paris,,OMP, +OMP:SA:S5751,1,"La Condamine",43.571601,3.844208,,1,,Europe/Paris,,OMP, +OMP:SA:S5752,1,"La Lauze",43.561762,3.845184,,1,,Europe/Paris,,OMP, +OMP:SA:S5753,1,"La Roque",43.569875,3.835124,,1,,Europe/Paris,,OMP, +OMP:SA:S5754,1,"Le Terral",43.592588,3.828225,,1,,Europe/Paris,,OMP, +OMP:SA:S5755,1,"Louise Michel",43.580923,3.833831,,1,,Europe/Paris,,OMP, +OMP:SA:S5756,1,"Marquerose",43.583424,3.826539,,1,,Europe/Paris,,OMP, +OMP:SA:S5757,1,"Mas de Magret",43.567903,3.828273,,1,,Europe/Paris,,OMP, +OMP:SA:S5758,1,"Roudères",43.574889,3.825525,,1,,Europe/Paris,,OMP, +OMP:SA:S5759,1,"Saint-Hubéry",43.573566,3.819742,,1,,Europe/Paris,,OMP, +OMP:SA:S5760,1,"Saint-Jean de Védas Centre",43.57475,3.830393,,1,,Europe/Paris,,OMP, +OMP:SA:S5761,1,"Saint-Jean le Sec",43.570758,3.837583,,1,,Europe/Paris,,OMP, +OMP:SA:S5762,1,"Sigaliès",43.572126,3.814672,,1,,Europe/Paris,,OMP, +OMP:SA:S5763,1,"Terre Neuve",43.561038,3.84943,,1,,Europe/Paris,,OMP, +OMP:SA:S5764,1,"Tourtourel",43.57585,3.819739,,1,,Europe/Paris,,OMP, +OMP:SA:S5765,1,"Val des Garrigues",43.566739,3.826599,,1,,Europe/Paris,,OMP, +OMP:SA:S5766,1,"Victoire 2",43.574771,3.849583,,1,,Europe/Paris,,OMP, +OMP:SA:S5767,1,"Aires",43.572562,3.772919,,1,,Europe/Paris,,OMP, +OMP:SA:S5768,1,"Barils",43.571837,3.773358,,1,,Europe/Paris,,OMP, +OMP:SA:S5769,1,"La Gardiole",43.568698,3.770807,,1,,Europe/Paris,,OMP, +OMP:SA:S5770,1,"La Vialette",43.56863,3.773908,,1,,Europe/Paris,,OMP, +OMP:SA:S5771,1,"Les Cévennes",43.572685,3.771141,,1,,Europe/Paris,,OMP, +OMP:SA:S5772,1,"Les Combes",43.570697,3.769212,,1,,Europe/Paris,,OMP, +OMP:SA:S5773,1,"Mairie",43.570755,3.773615,,1,,Europe/Paris,,OMP, +OMP:SA:S5774,1,"Pascaou",43.567962,3.773471,,1,,Europe/Paris,,OMP, +OMP:SA:S5775,1,"Coopérative",43.714483,4.002202,,1,,Europe/Paris,,OMP, +OMP:SA:S5776,1,"Lahntal",43.716317,4.004549,,1,,Europe/Paris,,OMP, +OMP:SA:S5777,1,"Les Garrigues",43.705484,4.006228,,1,,Europe/Paris,,OMP, +OMP:SA:S5778,1,"Les Mazes",43.709381,4.005375,,1,,Europe/Paris,,OMP, +OMP:SA:S5779,1,"Mairie",43.712294,4.005411,,1,,Europe/Paris,,OMP, +OMP:SA:S5780,1,"Albert Dubout",43.662388,3.97475,,1,,Europe/Paris,,OMP, +OMP:SA:S5781,1,"Arènes",43.655138,3.967299,,1,,Europe/Paris,,OMP, +OMP:SA:S5782,1,"Châtaigniers",43.650933,3.959329,,1,,Europe/Paris,,OMP, +OMP:SA:S5783,1,"Devèzes",43.662772,3.970179,,1,,Europe/Paris,,OMP, +OMP:SA:S5784,1,"Écoles",43.658696,3.967425,,1,,Europe/Paris,,OMP, +OMP:SA:S5785,1,"Frédéric Mistral",43.664006,3.974178,,1,,Europe/Paris,,OMP, +OMP:SA:S5786,1,"Gustave Courbet",43.658386,3.976022,,1,,Europe/Paris,,OMP, +OMP:SA:S5787,1,"La Fontaine",43.657901,3.96292,,1,,Europe/Paris,,OMP, +OMP:SA:S5788,1,"Meyrargues",43.653734,3.969141,,1,,Europe/Paris,,OMP, +OMP:SA:S5789,1,"Monnaie",43.660572,3.970017,,1,,Europe/Paris,,OMP, +OMP:SA:S5790,1,"Parc Gouneaud",43.654507,3.96499,,1,,Europe/Paris,,OMP, +OMP:SA:S5791,1,"Parc Vendargues",43.66078,3.975286,,1,,Europe/Paris,,OMP, +OMP:SA:S5792,1,"Paul Gauguin",43.655077,3.975494,,1,,Europe/Paris,,OMP, +OMP:SA:S5793,1,"Poste",43.657655,3.968485,,1,,Europe/Paris,,OMP, +OMP:SA:S5794,1,"Zone Industrielle",43.653536,3.962585,,1,,Europe/Paris,,OMP, +OMP:SA:S5795,1,"Zone Industrielle Bigos",43.65532,3.949734,,1,,Europe/Paris,,OMP, +OMP:SA:S5796,1,"Zone Industrielle Marbrerie",43.654176,3.954679,,1,,Europe/Paris,,OMP, +OMP:SA:S5797,1,"Arnel",43.538072,3.869087,,1,,Europe/Paris,,OMP, +OMP:SA:S5798,1,"Avenue de la Gare",43.537161,3.8572,,1,,Europe/Paris,,OMP, +OMP:SA:S5799,1,"Boulevard des Écoles",43.533969,3.862391,,1,,Europe/Paris,,OMP, +OMP:SA:S5800,1,"Boulevard du Chapitre",43.533337,3.864475,,1,,Europe/Paris,,OMP, +OMP:SA:S5801,1,"Domenoves",43.530688,3.854063,,1,,Europe/Paris,,OMP, +OMP:SA:S5802,1,"Font Majour",43.535142,3.859482,,1,,Europe/Paris,,OMP, +OMP:SA:S5803,1,"Les Moures",43.52415,3.860042,,1,,Europe/Paris,,OMP, +OMP:SA:S5804,1,"Les Salins",43.530653,3.858448,,1,,Europe/Paris,,OMP, +OMP:SA:S5805,1,"Maison d'Arrêt",43.54631,3.828291,,1,,Europe/Paris,,OMP, +OMP:SA:S5806,1,"Myosotis",43.528673,3.865005,,1,,Europe/Paris,,OMP, +OMP:SA:S5807,1,"Olivier de Bohême",43.527252,3.863139,,1,,Europe/Paris,,OMP, +OMP:SA:S5808,1,"Pèlerine",43.526548,3.855041,,1,,Europe/Paris,,OMP, +OMP:SA:S5809,1,"Pilou",43.529946,3.865892,,1,,Europe/Paris,,OMP, +OMP:SA:S5810,1,"Pont de Villeneuve",43.554625,3.844514,,1,,Europe/Paris,,OMP, +OMP:SA:S5811,1,"Stade",43.533369,3.855209,,1,,Europe/Paris,,OMP, +OMP:SA:S5812,1,"Tadornes",43.527081,3.861244,,1,,Europe/Paris,,OMP, +OMP:SA:S5813,1,"Vignes Vierges",43.532274,3.852549,,1,,Europe/Paris,,OMP, +OMP:SA:S5814,1,"Pierre Doumergue",43.64945,3.794389,,1,,Europe/Paris,,OMP, +OMP:SA:S5815,1,"Combe Chaude",43.652854,3.934769,,1,,Europe/Paris,,OMP, +OMP:SA:S5816,1,"Méditerranée",43.645757,3.934434,,1,,Europe/Paris,,OMP, +OMP:SA:S5817,1,"Sauvagine",43.662338,3.936595,,1,,Europe/Paris,,OMP, +OMP:SA:S5818,1,"Via Domitia",43.647241,3.930712,,1,,Europe/Paris,,OMP, +OMP:SA:S5827,1,"Gare Saint-Roch (Pont de Sète)",43.604105,3.878169,,1,,Europe/Paris,,OMP, +OMP:SA:S5828,1,"Bellevue",43.607576,3.741436,,1,,Europe/Paris,,OMP, +OMP:SA:S5829,1,"Chemin des Pins",43.60838,3.763056,,1,,Europe/Paris,,OMP, +OMP:SA:S5830,1,"Clos des Pins",43.602938,3.739256,,1,,Europe/Paris,,OMP, +OMP:SA:S5831,1,"Fontaine Romaine",43.606123,3.736279,,1,,Europe/Paris,,OMP, +OMP:SA:S5832,1,"La Rouvière Longue",43.600769,3.734589,,1,,Europe/Paris,,OMP, +OMP:SA:S5833,1,"Les Clauzes",43.606095,3.74328,,1,,Europe/Paris,,OMP, +OMP:SA:S5834,1,"Mas de Garenc",43.608546,3.737984,,1,,Europe/Paris,,OMP, +OMP:SA:S5835,1,"Alicantes",43.613336,3.785871,,1,,Europe/Paris,,OMP, +OMP:SA:S5836,1,"Les Jardins",43.609691,3.782859,,1,,Europe/Paris,,OMP, +OMP:SA:S5837,1,"Albert 1er - Cathédrale",43.614775,3.873755,,1,,Europe/Paris,,OMP, +OMP:SA:S5838,1,"Pérols Centre - Bazille",43.563051,3.950184,,1,,Europe/Paris,,OMP, +OMP:SA:S5839,1,"Montaud Stade",43.751978,3.956253,,1,,Europe/Paris,,OMP, +ONL:SA:CTP102017,1,"ALPE G SERRE STATION",45.023696,5.863116,,1,,Europe/Paris,,ONL, +ONL:SA:CTP102019,1,"SAINT MARTIN D'HERES NEYRPIC BELLEDONNE",45.186551,5.757061,,1,,Europe/Paris,,ONL, +ONL:SA:CTP102020,1,"HUEZ EN OISANS OT PLACE PAGANON",45.090327,6.065081,,1,,Europe/Paris,,ONL, +ONL:SA:CTP1034,1,"CLOS BALME CORRENÇON EN VERCORS",45.02066,5.529182,,1,,Europe/Paris,,ONL, +ONL:SA:CTP1038,1,"CORRENÇON OFFICE DU TOURISME",45.031882,5.527305,,1,,Europe/Paris,,ONL, +ONL:SA:CTP1153,1,"LES 2 ALPES VENOSC AGENCE VFD",45.006299,6.121564,,1,,Europe/Paris,,ONL, +ONL:SA:CTP1161,1,"MONT DE LANS LES 2 ALPES MI-ALPE",45.008506,6.122367,,1,,Europe/Paris,,ONL, +ONL:SA:CTP1177,1,"MONT DE LANS LES 2 ALPES LA POSTE",45.013202,6.124658,,1,,Europe/Paris,,ONL, +ONL:SA:CTP12036,1,"CHAMROUSSE DOMAINE DE L'ARSELLE",45.103185,5.88251,,1,,Europe/Paris,,ONL, +ONL:SA:CTP1354,1,"AUTRANS LE VILLAGE",45.174871,5.542368,,1,,Europe/Paris,,ONL, +ONL:SA:CTP1364,1,"MEAUDRE LA PLACE",45.126633,5.527774,,1,,Europe/Paris,,ONL, +ONL:SA:CTP1375,1,"COTE 2000 SKILIGNE VILLARD DE LANS",45.046282,5.556986,,1,,Europe/Paris,,ONL, +ONL:SA:CTP1385,1,"VILLARD DE LANS AGENCE VFD",45.072661,5.552618,,1,,Europe/Paris,,ONL, +ONL:SA:CTP1610,1,"MONT DE LANS BONS",45.035703,6.115536,,1,,Europe/Paris,,ONL, +ONL:SA:CTP1618,1,"AURIS EN OISANS STATION",45.05564,6.079143,,1,,Europe/Paris,,ONL, +ONL:SA:CTP1638,1,"MONT DE LANS LE VILLAGE",45.036538,6.132014,,1,,Europe/Paris,,ONL, +ONL:SA:CTP1644,1,"MONT DE LANS LES 2 ALPES POINT INFO",45.017056,6.124727,,1,,Europe/Paris,,ONL, +ONL:SA:CTP2057,1,"CHAMROUSSE ROCHE BERANGER 1750",45.108433,5.875583,,1,,Europe/Paris,,ONL, +ONL:SA:CTP2069,1,"HUEZ EN OISANS LE VILLAGE",45.080806,6.057222,,1,,Europe/Paris,,ONL, +ONL:SA:CTP2110,1,"VILLARD-RECULAS OFFICE DE TOURISME",45.092016,6.030451,,1,,Europe/Paris,,ONL, +ONL:SA:CTP2121,1,"ALPE D'HUEZ AVENUE DE L'ETENDARD",45.092928,6.068871,,1,,Europe/Paris,,ONL, +ONL:SA:CTP2124,1,"ALPE D'HUEZ L'ECLOSE",45.088106,6.071679,,1,,Europe/Paris,,ONL, +ONL:SA:CTP2134,1,"ALPE D'HUEZ PARKING LES BERGERS",45.089609,6.076037,,1,,Europe/Paris,,ONL, +ONL:SA:CTP2456,1,"LANS VERCORS OFFICE DU TOURISME",45.129567,5.584335,,1,,Europe/Paris,,ONL, +ONL:SA:CTP2792,1,"CHAMROUSSE LE RECOIN 1650",45.126302,5.878144,,1,,Europe/Paris,,ONL, +ONL:SA:CTP2844,1,"OZ EN OISANS STATION",45.130452,6.072359,,1,,Europe/Paris,,ONL, +ONL:SA:CTP2851,1,"VAUJANY STATION TELEPHERIQUE",45.157578,6.079043,,1,,Europe/Paris,,ONL, +ONL:SA:CTP3260,1,"GRENOBLE GARE ROUTIERE",45.192814,5.714548,,1,,Europe/Paris,,ONL, +ONL:SA:CTP3767,1,"MEYLAN PLAINE FLEURIE",45.20275,5.761014,,1,,Europe/Paris,,ONL, +ONL:SA:CTP4918,1,"PRAPOUTEL PATTE D'OIE",45.252859,5.992288,,1,,Europe/Paris,,ONL, +OOC:SA:S15626,1,"AEROPORT GENEVE",46.231281,6.10977,,1,,Europe/Paris,,OOC, +OOC:SA:S22103,1,"GARE CHAMBERY",45.571335,5.919233,,1,,Europe/Paris,,OOC, +OOC:SA:S22436,1,"PRESQU'ILE",45.205339,5.700359,,1,,Europe/Paris,,OOC, +OOC:SA:S22854,1,"LE RAFOUR-MONNET",45.269705,5.892937,,1,,Europe/Paris,,OOC, +OOC:SA:S39102,1,"GARE ROUTIERE",45.192814,5.714548,,1,,Europe/Paris,,OOC, +ORX:SA:S33100,1,"Aeroport St Exupery",45.7226,5.0764,,1,,Europe/Paris,,ORX, +ORX:SA:S33120,1,"Saint Exupery Repli",45.727,5.077,,1,,Europe/Paris,,ORX, +ORX:SA:S5540,1,"Gare Part-Dieu Villette",45.760669,4.862257,,1,,Europe/Paris,,ORX, +ORX:SA:S5564,1,"Vaulx-en-Velin La Soie",45.761146,4.921235,,1,,Europe/Paris,,ORX, +OSX:SA:CTP12011,1,"Aéroport Lyon Sy Exupéry",45.7208,5.077395,,1,,Europe/Paris,,OSX, +OSX:SA:CTP3191,1,"gare routière",45.359559,5.591738,,1,,Europe/Paris,,OSX, +OSX:SA:CTP3258,1,"Arrêt 2",27.140959,-3.404569,,1,,Europe/Paris,,OSX, +OSX:SA:CTP7122,1,"Presqu'île",45.205159,5.700843,,1,,Europe/Paris,,OSX, +OVO:SA:CTP102967,1,"GARE SUD 12",45.363154,5.594549,,1,,Europe/Paris,,OVO, +OVO:SA:CTP102968,1,"GARE NORD 01",45.365208,5.592816,,1,,Europe/Paris,,OVO, +OVO:SA:CTP102969,1,"GARE SUD 08",45.363154,5.594549,,1,,Europe/Paris,,OVO, +OVO:SA:CTP102970,1,"GARE SUD 09",45.363154,5.594549,,1,,Europe/Paris,,OVO, +OVO:SA:CTP102971,1,"LEPRINCE RINGUET",45.388116,5.574299,,1,,Europe/Paris,,OVO, +OVO:SA:CTP102973,1,"RELAIS INFO SERVICE",45.314466,5.60505,,1,,Europe/Paris,,OVO, +OVO:SA:CTP102974,1,"GARE SUD 14",45.363154,5.594549,,1,,Europe/Paris,,OVO, +OVO:SA:CTP102975,1,"GARE SUD 15",45.363154,5.594549,,1,,Europe/Paris,,OVO, +OVO:SA:CTP102977,1,"GARE NORD 02",45.365208,5.592816,,1,,Europe/Paris,,OVO, +OVO:SA:CTP102979,1,"GARE NORD 04",45.365208,5.592816,,1,,Europe/Paris,,OVO, +OVO:SA:CTP102980,1,"GARE NORD 05",45.365208,5.592816,,1,,Europe/Paris,,OVO, +OVO:SA:CTP102983,1,"GARE SUD 10",45.363154,5.594549,,1,,Europe/Paris,,OVO, +OVO:SA:CTP102985,1,"GARE SUD 13",45.363154,5.594549,,1,,Europe/Paris,,OVO, +OVO:SA:CTP102986,1,"GARE SUD 16",45.363154,5.594549,,1,,Europe/Paris,,OVO, +OVO:SA:CTP103317,1,"ST J.DE MOIRANS PARABOOT",45.320284,5.601648,,1,,Europe/Paris,,OVO, +OVO:SA:CTP103340,1,"ZA DU ROULET",45.350082,5.599782,,1,,Europe/Paris,,OVO, +OVO:SA:CTP13090,1,"GARE SNCF",45.357982,5.492023,,1,,Europe/Paris,,OVO, +OVO:SA:CTP13413,1,"LES GORGES",45.445878,5.658155,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14364,1,"CAFE PERRIN",45.44516,5.534581,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14366,1,"CHANTARET",45.445577,5.556937,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14368,1,"BARDONNET",45.44671,5.540382,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14370,1,"PETIT BILIEU",45.447582,5.533488,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14372,1,"VILLAGE",45.448941,5.548848,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14374,1,"LA BUISSE AFIPH",45.330426,5.621006,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14376,1,"LA BUISSE LE GAY",45.33148,5.602421,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14378,1,"LA BUISSE ECOLES",45.333731,5.619229,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14380,1,"LA BUISSE CHEMIN DU GAY",45.331812,5.607576,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14382,1,"LA BUISSE GRAND CHAMP",45.34108,5.609107,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14383,1,"LA BUISSE LE PANSU",45.341784,5.606104,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14386,1,"PLACE DU MARCHE",45.428515,5.514308,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14392,1,"PLACE",45.34343,5.527469,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14394,1,"CLERMONT",45.420902,5.540292,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14396,1,"GUILLETIERE",45.432045,5.565599,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14398,1,"GARANGERE",45.415423,5.542097,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14400,1,"TOUR CLERMONT",45.421761,5.533435,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14402,1,"BEAUREGARD",45.35856,5.626249,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14404,1,"MFR DALMASSIERE",45.359211,5.6068,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14408,1,"CH DE LA GRANDE SURE",45.350736,5.607286,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14409,1,"NEYROUD",45.349396,5.623067,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14411,1,"COLLEGE PLAN MENU",45.351101,5.604019,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14414,1,"ECOCITE",45.361617,5.604522,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14417,1,"MAISON DE RETRAITE",45.352227,5.614217,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14419,1,"HOPITAL",45.352396,5.611854,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14424,1,"TIVOLIERE",45.366997,5.618439,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14425,1,"BARTHELON",45.35642,5.630397,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14427,1,"LAVOIR DU NEYROUD",45.347369,5.623083,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14430,1,"BARRIOZ",45.366133,5.613722,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14431,1,"LE BRET",45.345493,5.632201,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14433,1,"MOLLARD",45.360354,5.626001,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14435,1,"PILET",45.3646,5.613388,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14437,1,"MAIRIE",45.354625,5.612879,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14440,1,"ORGEOISE",45.354207,5.611752,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14441,1,"PL DU 19 MARS 1962",45.354155,5.60767,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14443,1,"ROUTE DE ST JEAN",45.355979,5.610201,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14446,1,"ROUTE DE LA BUISSE",45.353283,5.608,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14448,1,"RUE DU 11 NOV 1918",45.352695,5.605604,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14451,1,"ROUTE DES GORGES",45.367043,5.621029,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14452,1,"COTE D AINAN",45.44189,5.616565,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14454,1,"BOUTIERE",45.426568,5.650253,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14456,1,"LAYAT BAS",45.430323,5.641351,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14460,1,"MERLIETTE",45.438336,5.672794,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14464,1,"REYSSABOT",45.42826,5.648617,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14466,1,"ST SIXTE",45.428882,5.629235,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14469,1,"MIR.lesECHELLES LE VERNEY",45.412865,5.686768,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14471,1,"MIR.lesECHELLES LES EMPTAZ",45.421755,5.700766,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14473,1,"MIR.lesECHELLES ST ROCH",45.413724,5.69173,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14484,1,"CAMPALOUD",45.333004,5.541377,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14491,1,"CHAMPFEUILLET",45.341488,5.561245,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14492,1,"LES VIOLETTES",45.328332,5.560246,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14496,1,"COLLEGE VERGERON",45.321068,5.566201,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14497,1,"COTE DES FILLES",45.343923,5.557498,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14498,1,"BOIS DU FOUR",45.343802,5.561065,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14499,1,"LE PAVILLET",45.345125,5.555417,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14500,1,"LES BALMES",45.32497,5.550368,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14502,1,"CHARTREUX",45.343736,5.563509,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14504,1,"ECHEVINS",45.327806,5.566375,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14507,1,"LESARDIERE",45.342282,5.550042,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14508,1,"LYCEE P BEGHIN",45.320673,5.588659,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14510,1,"MANGUELY",45.332357,5.544622,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14512,1,"MEDIATHEQUE",45.325504,5.564603,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14513,1,"NOVESPACE POMMARIN",45.321073,5.591792,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14515,1,"PETIT CHAMP FREY",45.327995,5.552712,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14517,1,"PETIT CRIEL",45.338166,5.54338,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14523,1,"RI D OLON",45.334594,5.539554,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14525,1,"DELLORENZI",45.33087,5.546949,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14536,1,"RUE DE LA COSTE",45.324747,5.570009,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14537,1,"ESPACE JAIL",45.325243,5.566531,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14538,1,"OUVRIERS PAPETIERS",45.326255,5.56118,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14539,1,"RUE DU 8 MAI 1945",45.32714,5.562499,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14540,1,"COSTE GAZ",45.325022,5.571615,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14542,1,"LOUIS MOYROUD",45.326161,5.558641,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14544,1,"THALES LCD",45.316461,5.59433,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14546,1,"ECOLE",45.485119,5.589927,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14548,1,"LAC BLEU",45.468909,5.562027,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14553,1,"LE VERNEY",45.456799,5.545437,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14558,1,"LE PIN BREZIN BOURG",45.470622,5.517222,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14561,1,"LE PIN CARREFOUR BREZIN",45.471347,5.510199,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14562,1,"LE PIN CENTRE EQUESTRE",45.466464,5.517234,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14564,1,"LE PIN LA CUAZ",45.467291,5.508663,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14568,1,"LE PIN LES ALLEX",45.457971,5.509321,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14570,1,"LE PIN PL SAINT CHRISTOPHE",45.457472,5.505168,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14572,1,"CHEMIN DU MOULIN",45.365593,5.52031,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14574,1,"HALTE FERROVIAIRE",45.369094,5.534663,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14576,1,"LE BAYARD",45.371358,5.526728,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14578,1,"LE BESSEY",45.361324,5.531062,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14579,1,"LE CARRET",45.360784,5.518425,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14581,1,"LE CARRET TRANSFO",45.361037,5.516464,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14583,1,"LE GUICHARD",45.372504,5.524563,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14586,1,"CHARTREUSE",45.357818,5.494215,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14588,1,"COURBATIERE",45.364094,5.491428,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14591,1,"ABATTOIRS",45.348082,5.494567,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14593,1,"LEVATEL",45.357146,5.497217,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14594,1,"MAISON DE RETRAITE",45.354327,5.500496,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14595,1,"PASTIERES",45.367175,5.491305,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14599,1,"PLACE X BROCHIER",45.34929,5.503775,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14606,1,"SADI CARNOT",45.34882,5.498238,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14608,1,"ST AUPRE BEC FIN",45.403462,5.668271,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14610,1,"ST AUPRE CHAMPTORAZ",45.402805,5.671108,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14613,1,"ST AUPRE ROSSETIERE",45.392239,5.650404,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14615,1,"ST AUPRE BARREAU",45.403275,5.651542,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14617,1,"ST AUPRE CHEVALLIER",45.405865,5.669898,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14619,1,"ST AUPRE CHEVILLARD",45.415775,5.655278,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14621,1,"ST AUPRE COLOMBIER",45.397323,5.648762,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14623,1,"ST AUPRE DELPHIN",45.409392,5.655856,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14625,1,"ST AUPRE LE GRAND CHEMIN",45.397628,5.66482,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14627,1,"ST AUPRE GRAND VIVIER",45.412914,5.64894,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14628,1,"ST AUPRE MARGARON",45.412046,5.658478,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14630,1,"ST AUPRE VILLAGE",45.398875,5.670836,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14632,1,"ST AUPRE TURE",45.410709,5.673729,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14635,1,"ST BLAISE DU BU CIMETIERE",45.374643,5.515923,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14637,1,"ST BLAISE DU BU DEVEZ",45.372205,5.521572,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14639,1,"ST BLAISE DU BU PETIT VOYE",45.382245,5.51721,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14643,1,"ST BLAISE DU BU MAIRIE",45.37626,5.516825,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14645,1,"ST BLAISE DU BU RTE DE LA MURETTE",45.378306,5.520929,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14647,1,"ST BUEIL LE SATRE",45.470464,5.686171,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14649,1,"ST CASSIEN LE SAPIN",45.36662,5.549138,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14651,1,"ST E.DE CROSSEY CARREF GD VIVIER",45.391157,5.647272,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14654,1,"ST E.DE CROSSEY LE PARIS",45.383246,5.612562,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14656,1,"ST E.DE CROSSEY COUCHONNIERE",45.372207,5.650437,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14658,1,"ST E.DE CROSSEY GATELIERE",45.389723,5.625963,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14660,1,"ST E.DE CROSSEY CHARRAT",45.382374,5.652463,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14662,1,"ST E.DE CROSSEY LE PERRIN",45.387008,5.63197,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14664,1,"ST E.DE CROSSEY LE PICARD",45.375756,5.656097,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14666,1,"ST E.DE CROSSEY LE VIVIER",45.380599,5.62886,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14668,1,"ST E.DE CROSSEY LES REYNAUDS",45.38377,5.636623,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14670,1,"ST E.DE CROSSEY LES ROUX",45.368076,5.645177,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14672,1,"ST E.DE CROSSEY LES VACHONNES",45.382873,5.645346,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14676,1,"ST E.DE CROSSEY POMPIERS",45.379062,5.641939,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14678,1,"ST E.DE CROSSEY TOLVON",45.372403,5.619141,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14680,1,"ST E.DE CROSSEY LES GROS",45.374755,5.614356,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14682,1,"StG.enVALDAINE BOULONGEAT",45.456958,5.654796,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14684,1,"StG.enVALDAINE CONSUOZ ABRIBUS",45.452117,5.61105,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14685,1,"StG.enVALDAINE CONSUOZ",45.457048,5.619887,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14687,1,"StG.enVALDAINE LAMBERTIERE",45.451312,5.632686,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14688,1,"StG.enVALDAINE PLAMPALAIS",45.4574,5.632429,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14690,1,"StG.enVALDAINE LA COMBE",45.455164,5.636245,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14693,1,"StG.enVALDAINE LAREMBERT",45.454843,5.61802,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14696,1,"StG.enVALDAINE LE FALQUE",45.482649,5.634075,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14697,1,"StG.enVALDAINE LE GROSSET",45.473023,5.647759,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14698,1,"StG.enVALDAINE LE MOLLARD",45.470863,5.63672,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14701,1,"StG.enVALDAINE LES PERRINS",45.466348,5.638442,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14702,1,"StG.enVALDAINE CHAFFARDIERE",45.454552,5.637194,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14703,1,"StG.enVALDAINE HOPITAL",45.459897,5.631928,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14705,1,"ST J.DE MOIRANS TRINCON",45.346233,5.586787,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14707,1,"ST J.DE MOIRANS COLOMBINIERE",45.33546,5.57118,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14708,1,"ST J.DE MOIRANS COLOMB AUTOROUTE",45.337747,5.575932,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14710,1,"ST J.DE MOIRANS PATINIERE",45.345434,5.571586,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14712,1,"ST J.DE MOIRANS L ARCHAT",45.327805,5.585035,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14716,1,"ST J.DE MOIRANS MAISON POUR TOUS",45.340867,5.579939,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14718,1,"ST J.DE MOIRANS MARCHE AUX CERISES",45.343188,5.581573,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14720,1,"ST J.DE MOIRANS PLACE",45.341725,5.582313,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14721,1,"ST J.DE MOIRANS ROSSIGNOL",45.319058,5.604076,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14722,1,"ST J.DE MOIRANS LES TISSEUSES",45.34456,5.574058,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14724,1,"ST J.DE RATZ CENTRE PNEUMOLOGIE",45.346713,5.658247,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14727,1,"ST J.DE RATZ LE PLAN",45.352628,5.643532,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14729,1,"ST J.DE RATZ LE PUITS",45.356322,5.654828,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14731,1,"StN.DE MACHERIN CHATELONNIERE",45.410431,5.602656,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14733,1,"StN.DE MACHERIN MELISSARD",45.405598,5.602983,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14735,1,"StN.DE MACHERIN HAUTEFORT",45.405497,5.608662,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14736,1,"StN.DE MACHERIN LE PILON",45.40027,5.592772,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14738,1,"StN.DE MACHERIN LES PRAIRIES",45.400337,5.602363,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14740,1,"StN.DE MACHERIN L USINE",45.396258,5.613464,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14742,1,"StN.DE MACHERIN MACHERIN",45.40313,5.595952,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14744,1,"StN.DE MACHERIN PLACE",45.398546,5.607022,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14747,1,"JARDIN DES ARTS",45.300526,5.487601,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14750,1,"LE MANGUELY",45.273552,5.508586,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14752,1,"LE PARADIS",45.296783,5.477519,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14753,1,"LE PORT",45.287599,5.524797,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14757,1,"LE VERT",45.263202,5.509235,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14759,1,"LES MASSONS",45.283855,5.521082,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14761,1,"L ESLINARD",45.301143,5.457501,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14765,1,"PETIT TIZIN",45.283321,5.485873,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14769,1,"ROUTE DE GRENOBLE",45.309519,5.499136,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14771,1,"ST JEAN DE CHEPY",45.30604,5.510743,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14778,1,"EDOUARD HERRIOT",45.369653,5.589794,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14779,1,"GEORGES FRIER",45.365132,5.591719,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14783,1,"DOCTEUR VALOIS",45.355297,5.593046,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14785,1,"AVENUE DE PAVIOT",45.352657,5.592094,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14787,1,"BALTISS",45.357911,5.592475,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14789,1,"HORTENSIAS",45.362937,5.582817,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14791,1,"RUE GUIMET",45.363118,5.598856,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14792,1,"VERDUN",45.371388,5.579646,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14794,1,"BELVEDERE I",45.371716,5.586265,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14796,1,"BELVEDERE II",45.372202,5.585858,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14797,1,"BRUNETIERE",45.36199,5.581248,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14799,1,"BERIDOT",45.351946,5.573829,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14801,1,"CHAMPFEUILLET",45.349817,5.567878,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14802,1,"CHAMPFEUILLET ZA",45.351425,5.570063,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14804,1,"CIMETIERE",45.366467,5.582232,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14805,1,"STENDHAL",45.361826,5.588876,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14806,1,"CLINIQUE",45.362356,5.58862,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14807,1,"CLOS BERARD",45.364674,5.579789,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14810,1,"GEORGE SAND",45.364801,5.583322,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14814,1,"GENERAL LECLERC",45.366425,5.591165,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14816,1,"BRUNERIE",45.380229,5.580311,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14818,1,"RUE DE CRIEL",45.356307,5.584932,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14820,1,"RUE DES CASTORS",45.354734,5.579758,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14822,1,"RUE DES MARMOTTES",45.353818,5.582411,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14827,1,"CROIX ROUSSE",45.347608,5.568327,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14831,1,"EGLISE ST PIERRE",45.370512,5.585474,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14834,1,"FBG SERMORENS",45.373893,5.580831,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14835,1,"GARE NORD 03",45.365208,5.592816,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14836,1,"GRAND ANGLE",45.36429,5.590283,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14838,1,"GYMNASE LA GARENNE",45.373773,5.584789,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14840,1,"MEDECINE",45.368905,5.593617,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14841,1,"MATERNITE CHIRURGIE",45.368826,5.595206,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14842,1,"IMPOTS",45.365642,5.586992,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14844,1,"FERRONNIERE",45.349882,5.576959,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14847,1,"LAVOIR DE CRIEL",45.359344,5.586104,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14850,1,"RUE DES GENTIANES",45.371505,5.577047,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14852,1,"FATON",45.37215,5.577026,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14853,1,"LE PARVIS",45.361047,5.570553,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14855,1,"LE ROUSSET",45.399384,5.58098,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14857,1,"BLANCHISSERIES",45.385251,5.575854,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14862,1,"LES ECUREUILS",45.357909,5.582332,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14863,1,"LES TUILIERES",45.397478,5.572857,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14865,1,"LOUIS NEEL",45.38313,5.577635,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14868,1,"LYCEE MARTELLIERE",45.37852,5.591805,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14869,1,"BD DU GUILLON",45.363173,5.597452,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14872,1,"MAIRIE",45.362537,5.59085,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14873,1,"MAISON BLANCHE",45.348409,5.580895,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14875,1,"MAISON ROSE",45.368709,5.581962,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14876,1,"MEDIATHEQUE",45.362726,5.597846,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14877,1,"MJC",45.366796,5.583733,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14878,1,"PAVIOT ECOLE",45.3511,5.589305,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14880,1,"PAVIOT",45.349836,5.586831,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14891,1,"DENFERT ROCHEREAU",45.36002,5.595011,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14893,1,"RUE DU COLOMBIER",45.36797,5.589792,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14894,1,"RUE DU FATON",45.370849,5.579394,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14898,1,"PAUL BERT",45.368891,5.582437,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14901,1,"VICTOR HUGO",45.368683,5.584532,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14902,1,"SNCF",45.364002,5.595796,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14906,1,"AV DU 11 NOVEMBRE",45.288825,5.639737,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14908,1,"LA TUILERIE",45.312684,5.622429,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14910,1,"ALUMINIUM",45.312168,5.609598,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14912,1,"POMAGALSKI",45.309766,5.614518,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14914,1,"RADIALL",45.307875,5.617543,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14916,1,"MAIRIE",45.293012,5.63527,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14918,1,"SAMLLOC",45.305452,5.618238,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14920,1,"PAPETERIE",45.306455,5.614547,,1,,Europe/Paris,,OVO, +OVO:SA:CTP14922,1,"PLACE",45.319713,5.522632,,1,,Europe/Paris,,OVO, +OVO:SA:CTP15054,1,"POM. laPLACETTE TENNIS",45.318692,5.664378,,1,,Europe/Paris,,OVO, +OVO:SA:CTP15075,1,"BERNARDIERE",45.424987,5.513724,,1,,Europe/Paris,,OVO, +OVO:SA:CTP15077,1,"LES NOYERS",45.356705,5.610072,,1,,Europe/Paris,,OVO, +OVO:SA:CTP15079,1,"POM. laPLACETTE PALLACHERE",45.317325,5.666039,,1,,Europe/Paris,,OVO, +OVO:SA:CTP15163,1,"ZA CHARANCIEU",45.529965,5.589365,,1,,Europe/Paris,,OVO, +OVO:SA:CTP15254,1,"COLLEGE",45.410133,5.556717,,1,,Europe/Paris,,OVO, +OVO:SA:CTP15255,1,"PALADRU CALATRIN",45.470769,5.546581,,1,,Europe/Paris,,OVO, +OVO:SA:CTP15433,1,"LA BUISSE RESSOURCERIE",45.318209,5.622002,,1,,Europe/Paris,,OVO, +OVO:SA:CTP15435,1,"StG.enVALDAINE COTAGON",45.474485,5.636369,,1,,Europe/Paris,,OVO, +OVO:SA:CTP15436,1,"ACACIAS",45.347007,5.575476,,1,,Europe/Paris,,OVO, +OVO:SA:CTP15462,1,"BOUVIER DIVAT",45.359717,5.629489,,1,,Europe/Paris,,OVO, +OVO:SA:CTP15491,1,"CRUZILLE",45.290766,5.484801,,1,,Europe/Paris,,OVO, +OVO:SA:CTP15747,1,"POM. laPLACETTE VILLAGE",45.318618,5.655433,,1,,Europe/Paris,,OVO, +OVO:SA:CTP15748,1,"VILLAGE",45.366557,5.526519,,1,,Europe/Paris,,OVO, +OVO:SA:CTP15766,1,"ST E.DE CROSSEY VACHONNES",45.382901,5.64542,,1,,Europe/Paris,,OVO, +OVO:SA:CTP15788,1,"LES ECHELLES",45.427533,5.638837,,1,,Europe/Paris,,OVO, +OVO:SA:CTP15790,1,"VERRONIERE",45.466644,5.557499,,1,,Europe/Paris,,OVO, +OVO:SA:CTP245,1,"ECOLE DU BERARD",45.351759,5.605218,,1,,Europe/Paris,,OVO, +OVO:SA:CTP248,1,"VILLAGE",45.444748,5.663464,,1,,Europe/Paris,,OVO, +OVO:SA:CTP4237,1,"FONTANIL CORNIL CROIX DE ROCHETTE",45.258191,5.659385,,1,,Europe/Paris,,OVO, +OVO:SA:CTP4240,1,"FONTANIL CORNIL LEP F. DOLTO",45.250367,5.665036,,1,,Europe/Paris,,OVO, +OVO:SA:CTP4254,1,"LOGIS NEUF",45.263566,5.656383,,1,,Europe/Paris,,OVO, +OVO:SA:CTP5178,1,"FURES",45.307585,5.49461,,1,,Europe/Paris,,OVO, +OVO:SA:CTP5184,1,"MICHEL PERRET",45.304926,5.490525,,1,,Europe/Paris,,OVO, +OVO:SA:CTP5190,1,"PRESSOIR",45.319579,5.523324,,1,,Europe/Paris,,OVO, +OVO:SA:CTP5194,1,"LE PAVE",45.312313,5.50834,,1,,Europe/Paris,,OVO, +OVO:SA:CTP5198,1,"GARE SNCF",45.30084,5.491808,,1,,Europe/Paris,,OVO, +OVO:SA:CTP5208,1,"ECOLE DESMOULINS",45.298713,5.4852,,1,,Europe/Paris,,OVO, +OVO:SA:CTP5210,1,"COLLEGE CONDORCET",45.298067,5.486656,,1,,Europe/Paris,,OVO, +OVO:SA:CTP5239,1,"SCHNEIDER",45.31898,5.594597,,1,,Europe/Paris,,OVO, +OVO:SA:CTP5241,1,"THALES",45.314852,5.597324,,1,,Europe/Paris,,OVO, +OVO:SA:CTP5247,1,"SEMINAIRE",45.292658,5.631343,,1,,Europe/Paris,,OVO, +OVO:SA:CTP5251,1,"CHEVALON",45.278167,5.64804,,1,,Europe/Paris,,OVO, +OVO:SA:CTP5263,1,"BASCULE",45.268224,5.65381,,1,,Europe/Paris,,OVO, +OVO:SA:CTP5267,1,"CAFE ADRAIT",45.273605,5.650594,,1,,Europe/Paris,,OVO, +OVO:SA:CTP5271,1,"MALOSSANE",45.309776,5.641156,,1,,Europe/Paris,,OVO, +OVO:SA:CTP5277,1,"GARE SNCF",45.290086,5.632774,,1,,Europe/Paris,,OVO, +OVO:SA:CTP5279,1,"CHARMINELLES",45.295437,5.637946,,1,,Europe/Paris,,OVO, +OVO:SA:CTP5285,1,"MONUMENT AUX MORTS",45.30258,5.627021,,1,,Europe/Paris,,OVO, +OVO:SA:CTP5291,1,"L ARCADE",45.29156,5.634493,,1,,Europe/Paris,,OVO, +OVO:SA:CTP5294,1,"DOCTEUR THEVENET",45.298139,5.636326,,1,,Europe/Paris,,OVO, +OVO:SA:CTP5297,1,"BANNETTES",45.299082,5.631975,,1,,Europe/Paris,,OVO, +OVO:SA:CTP5301,1,"CHASSOLIERE",45.280238,5.64671,,1,,Europe/Paris,,OVO, +OVO:SA:CTP5305,1,"VOLOUISE",45.285478,5.643574,,1,,Europe/Paris,,OVO, +OVO:SA:CTP5309,1,"ALLIBERT",45.315432,5.603409,,1,,Europe/Paris,,OVO, +OVO:SA:CTP6109,1,"LES PRAIRIES",45.339147,5.488388,,1,,Europe/Paris,,OVO, +OVO:SA:CTP6113,1,"ZA LE PLAN",45.339869,5.492269,,1,,Europe/Paris,,OVO, +OVO:SA:CTP6119,1,"MAIRIE",45.34532,5.528551,,1,,Europe/Paris,,OVO, +OVO:SA:CTP6125,1,"6 CHEMINS",45.347018,5.524129,,1,,Europe/Paris,,OVO, +OVO:SA:CTP6130,1,"PONT DE BOIS VERT",45.342176,5.52682,,1,,Europe/Paris,,OVO, +OVO:SA:CTP6134,1,"LEZARDIERES PT",45.352215,5.536853,,1,,Europe/Paris,,OVO, +OVO:SA:CTP6140,1,"LE MOURET",45.36612,5.514407,,1,,Europe/Paris,,OVO, +OVO:SA:CTP6142,1,"MALADIERE",45.352695,5.49142,,1,,Europe/Paris,,OVO, +OVO:SA:CTP6147,1,"LA CROZE",45.337579,5.484105,,1,,Europe/Paris,,OVO, +OVO:SA:CTP6154,1,"LIBERATION",45.349855,5.502654,,1,,Europe/Paris,,OVO, +OVO:SA:CTP6158,1,"ALLIMAND",45.354121,5.492949,,1,,Europe/Paris,,OVO, +OVO:SA:CTP6168,1,"LES RIVOIRES",45.348689,5.528663,,1,,Europe/Paris,,OVO, +OVO:SA:CTP6172,1,"CLOS JUVIN",45.345404,5.494789,,1,,Europe/Paris,,OVO, +OVO:SA:CTP6184,1,"BAS RIVES",45.349355,5.509514,,1,,Europe/Paris,,OVO, +OVO:SA:CTP6187,1,"COLLEGE R DESNOS",45.351156,5.504947,,1,,Europe/Paris,,OVO, +OVO:SA:CTP6190,1,"BERLIOZ",45.352224,5.495017,,1,,Europe/Paris,,OVO, +OVO:SA:CTP6193,1,"JEAN JAURES",45.352598,5.495068,,1,,Europe/Paris,,OVO, +OVO:SA:CTP6198,1,"EGLISE",45.334104,5.483282,,1,,Europe/Paris,,OVO, +OVO:SA:CTP6202,1,"PLACE CARDINALE",45.331617,5.486269,,1,,Europe/Paris,,OVO, +OVO:SA:CTP6206,1,"CHALET",45.330513,5.557286,,1,,Europe/Paris,,OVO, +OVO:SA:CTP6210,1,"GARE SNCF",45.322339,5.582398,,1,,Europe/Paris,,OVO, +OVO:SA:CTP6216,1,"SAINT JACQUES",45.326861,5.556397,,1,,Europe/Paris,,OVO, +OVO:SA:CTP6223,1,"LYCEE BEGHIN",45.320245,5.588687,,1,,Europe/Paris,,OVO, +OVO:SA:CTP6226,1,"POMPIERS",45.326725,5.571406,,1,,Europe/Paris,,OVO, +OVO:SA:CTP6229,1,"PARC DE LA GRILLE",45.32608,5.562833,,1,,Europe/Paris,,OVO, +OVO:SA:CTP6235,1,"ST CASSIEN LE ROYER",45.359267,5.557393,,1,,Europe/Paris,,OVO, +OVO:SA:CTP6239,1,"ST CASSIEN MALOZA",45.355638,5.549764,,1,,Europe/Paris,,OVO, +OVO:SA:CTP6243,1,"ST CASSIEN EGLISE",45.360005,5.55156,,1,,Europe/Paris,,OVO, +OVO:SA:CTP6249,1,"CROIX MORIN",45.36362,5.575877,,1,,Europe/Paris,,OVO, +OVO:SA:CTP6251,1,"ST J.DE MOIRANS PLAN MENU RD1075",45.349373,5.595229,,1,,Europe/Paris,,OVO, +OVO:SA:CTP6253,1,"ST J.DE MOIRANS LA MANCHE",45.349556,5.594572,,1,,Europe/Paris,,OVO, +OVO:SA:CTP6255,1,"PARKING PLAN MENU",45.353324,5.597517,,1,,Europe/Paris,,OVO, +OVO:SA:CTP6259,1,"EDGAR KOFLER",45.359998,5.600123,,1,,Europe/Paris,,OVO, +OVO:SA:CTP6269,1,"PLACE E BROCHIER",45.355669,5.617296,,1,,Europe/Paris,,OVO, +OVO:SA:CTP6273,1,"LA BUISSE PLACE",45.335544,5.621057,,1,,Europe/Paris,,OVO, +OVO:SA:CTP6281,1,"ST J.DE RATZ VILLAGE",45.3502,5.661942,,1,,Europe/Paris,,OVO, +OVO:SA:CTP6285,1,"ST J.DE RATZ LAC",45.350537,5.6572,,1,,Europe/Paris,,OVO, +OVO:SA:CTP6291,1,"POM. laPLACETTE COL DE LA PLACETTE",45.330313,5.658108,,1,,Europe/Paris,,OVO, +OVO:SA:CTP6295,1,"POM. laPLACETTE QUATRE BRAS",45.325947,5.656394,,1,,Europe/Paris,,OVO, +OVO:SA:CTP6299,1,"POM. laPLACETTE LES BARNIERS",45.315427,5.651029,,1,,Europe/Paris,,OVO, +OVO:SA:CTP6303,1,"ST J.DE RATZ LE GARREL",45.34964,5.645945,,1,,Europe/Paris,,OVO, +OVO:SA:CTP6309,1,"POM. laPLACETTE RD520 VILLAGE",45.318724,5.652857,,1,,Europe/Paris,,OVO, +OVO:SA:CTP6313,1,"LA BUISSE LE GAY GIRATOIRE",45.331148,5.612921,,1,,Europe/Paris,,OVO, +OVO:SA:CTP7017,1,"BOMPERTUIS",45.394922,5.52976,,1,,Europe/Paris,,OVO, +OVO:SA:CTP7022,1,"FORGES",45.39865,5.534976,,1,,Europe/Paris,,OVO, +OVO:SA:CTP7026,1,"LA MURETTE LA COURATIERE",45.385214,5.533673,,1,,Europe/Paris,,OVO, +OVO:SA:CTP7030,1,"LE RIVIER ECOLE",45.380755,5.494486,,1,,Europe/Paris,,OVO, +OVO:SA:CTP7042,1,"BOURG ECOLE",45.367021,5.526264,,1,,Europe/Paris,,OVO, +OVO:SA:CTP7047,1,"LA MURETTE VILLAGE",45.380162,5.541269,,1,,Europe/Paris,,OVO, +OVO:SA:CTP7053,1,"ST BLAISE DU BU GRAND VOYE",45.374147,5.499529,,1,,Europe/Paris,,OVO, +OVO:SA:CTP7055,1,"ST BLAISE DU BU ROUTE DU RIVIER",45.374675,5.496818,,1,,Europe/Paris,,OVO, +OVO:SA:CTP7060,1,"ST BLAISE DU BU RAVIGNHOUSE",45.39123,5.521079,,1,,Europe/Paris,,OVO, +OVO:SA:CTP7066,1,"ST BLAISE DU BU ZA LE TALAMUD",45.386346,5.525164,,1,,Europe/Paris,,OVO, +OVO:SA:CTP7068,1,"ST BLAISE DU BU CHATELARD",45.369221,5.508085,,1,,Europe/Paris,,OVO, +OVO:SA:CTP7072,1,"PAPETERIE",45.410309,5.531851,,1,,Europe/Paris,,OVO, +OVO:SA:CTP7076,1,"LE GAYET",45.409518,5.560528,,1,,Europe/Paris,,OVO, +OVO:SA:CTP7080,1,"LE FAGOT",45.402858,5.56676,,1,,Europe/Paris,,OVO, +OVO:SA:CTP7084,1,"LA MURETTE LE PAYSAN",45.378868,5.54678,,1,,Europe/Paris,,OVO, +OVO:SA:CTP7088,1,"CENTRE SOCIAL",45.367895,5.588717,,1,,Europe/Paris,,OVO, +OVO:SA:CTP7091,1,"COLLEGE ST JOSEPH",45.368354,5.587889,,1,,Europe/Paris,,OVO, +OVO:SA:CTP7094,1,"L AGNELAS",45.378446,5.564014,,1,,Europe/Paris,,OVO, +OVO:SA:CTP7098,1,"POLE DE VOUISE",45.376108,5.580889,,1,,Europe/Paris,,OVO, +OVO:SA:CTP7102,1,"BRAMERET",45.369858,5.587356,,1,,Europe/Paris,,OVO, +OVO:SA:CTP7104,1,"GENDARMERIE",45.368965,5.585084,,1,,Europe/Paris,,OVO, +OVO:SA:CTP7106,1,"ECOLE STE MARIE",45.368346,5.585967,,1,,Europe/Paris,,OVO, +OVO:SA:CTP7109,1,"LE VERDIN",45.39776,5.569451,,1,,Europe/Paris,,OVO, +OVO:SA:CTP7113,1,"CES LA GARENNE",45.374611,5.588103,,1,,Europe/Paris,,OVO, +OVO:SA:CTP7117,1,"FRERES TARDY",45.364964,5.593673,,1,,Europe/Paris,,OVO, +OVO:SA:CTP7125,1,"CROIX BAYARD",45.365954,5.622013,,1,,Europe/Paris,,OVO, +OVO:SA:CTP7131,1,"ST E.DE CROSSEY VILLAGE",45.377168,5.645605,,1,,Europe/Paris,,OVO, +OVO:SA:CTP7135,1,"ST E.DE CROSSEY ETANG DAUPHIN",45.365317,5.63357,,1,,Europe/Paris,,OVO, +OVO:SA:CTP7816,1,"GARE",45.424951,5.516689,,1,,Europe/Paris,,OVO, +OVO:SA:CTP7823,1,"MARTIN CLUZEL",45.433469,5.513944,,1,,Europe/Paris,,OVO, +OVO:SA:CTP7825,1,"VIRAGE JANIN",45.429429,5.500054,,1,,Europe/Paris,,OVO, +OVO:SA:CTP7829,1,"GUILLERMET",45.413539,5.530829,,1,,Europe/Paris,,OVO, +OVO:SA:CTP7833,1,"JACQUIN",45.419419,5.519391,,1,,Europe/Paris,,OVO, +OVO:SA:CTP7837,1,"LE PIN VERS ARS",45.449171,5.513328,,1,,Europe/Paris,,OVO, +OVO:SA:CTP7846,1,"OFFICE DE TOURISME",45.43283,5.516494,,1,,Europe/Paris,,OVO, +OVO:SA:CTP7851,1,"LES MAURES",45.441932,5.560187,,1,,Europe/Paris,,OVO, +OVO:SA:CTP7854,1,"VILLAGE",45.413559,5.556836,,1,,Europe/Paris,,OVO, +OVO:SA:CTP7858,1,"VILLAGE",45.439744,5.595461,,1,,Europe/Paris,,OVO, +OVO:SA:CTP7860,1,"LA SARRA",45.43716,5.583094,,1,,Europe/Paris,,OVO, +OVO:SA:CTP7864,1,"L ARSENAL",45.430948,5.567992,,1,,Europe/Paris,,OVO, +OVO:SA:CTP7869,1,"ST SULP.RIVOIRE RIVOIRES",45.459914,5.590281,,1,,Europe/Paris,,OVO, +OVO:SA:CTP7872,1,"CHAPELLE DE MERLAS",45.452311,5.678054,,1,,Europe/Paris,,OVO, +OVO:SA:CTP7878,1,"FAGOTIERE",45.449441,5.676388,,1,,Europe/Paris,,OVO, +OVO:SA:CTP7882,1,"NOUVELIERE",45.433675,5.644594,,1,,Europe/Paris,,OVO, +OVO:SA:CTP7886,1,"PIVOTIERE",45.440269,5.660234,,1,,Europe/Paris,,OVO, +OVO:SA:CTP7889,1,"LE BURLET",45.433641,5.65022,,1,,Europe/Paris,,OVO, +OVO:SA:CTP7892,1,"StG.enVALDAINE CHOCHE LE PARIS",45.45558,5.648629,,1,,Europe/Paris,,OVO, +OVO:SA:CTP7906,1,"StG.enVALDAINE LES BROSSES",45.454208,5.643863,,1,,Europe/Paris,,OVO, +OVO:SA:CTP7910,1,"StG.enVALDAINE GENDARMERIE",45.451619,5.630472,,1,,Europe/Paris,,OVO, +OVO:SA:CTP7931,1,"MIR.lesECHELLES EGLISE",45.42821,5.707374,,1,,Europe/Paris,,OVO, +OVO:SA:CTP8676,1,"VILLAGE EGLISE",45.489384,5.592799,,1,,Europe/Paris,,OVO, +OVO:SA:CTP8679,1,"JALAMION",45.498606,5.587948,,1,,Europe/Paris,,OVO, +OVO:SA:CTP8693,1,"TRANSFO EDF",45.484948,5.577738,,1,,Europe/Paris,,OVO, +OVO:SA:CTP8695,1,"COURBON",45.479468,5.567827,,1,,Europe/Paris,,OVO, +OVO:SA:CTP8701,1,"TRIPIER",45.473333,5.566176,,1,,Europe/Paris,,OVO, +OVO:SA:CTP8708,1,"PALADRU VILLAGE",45.476564,5.554909,,1,,Europe/Paris,,OVO, +OVO:SA:CTP8714,1,"PALADRU ST P DE PALADRU",45.488567,5.572326,,1,,Europe/Paris,,OVO, +OVO:SA:CTP8718,1,"PALADRU STADE",45.48394,5.567596,,1,,Europe/Paris,,OVO, +OVO:SA:CTP8722,1,"VERONNIERE",45.467022,5.557888,,1,,Europe/Paris,,OVO, +OVO:SA:CTP8725,1,"PALADRU GARAGE RENAULT",45.480204,5.565073,,1,,Europe/Paris,,OVO, +OVO:SA:CTP8729,1,"PALADRU LA TRUITIERE",45.477856,5.559019,,1,,Europe/Paris,,OVO, +OVO:SA:CTP8733,1,"ST SULP.RIVOIRE BOURG",45.4704,5.609903,,1,,Europe/Paris,,OVO, +OVO:SA:CTP8736,1,"ST SULP.RIVOIRE LA PLATIERE",45.479686,5.616636,,1,,Europe/Paris,,OVO, +OVO:SA:CTP8740,1,"ST SULP.RIVOIRE FERME MOLLARD",45.477273,5.614372,,1,,Europe/Paris,,OVO, +OVO:SA:CTP8744,1,"ST SULP.RIVOIRE CHATEAU D EAU",45.465929,5.615974,,1,,Europe/Paris,,OVO, +OVO:SA:CTP8748,1,"PALADRU LES TROIX CHENES",45.503608,5.570959,,1,,Europe/Paris,,OVO, +OVO:SA:CTP8752,1,"StG.enVALDAINE LE PLATON",45.484952,5.632907,,1,,Europe/Paris,,OVO, +OVO:SA:CTP8754,1,"PICOUDIERE",45.460555,5.681555,,1,,Europe/Paris,,OVO, +OVO:SA:CTP8760,1,"StG.enVALDAINE LES HOPITAUX",45.471785,5.63198,,1,,Europe/Paris,,OVO, +OVO:SA:CTP8764,1,"StG.enVALDAINE L ORCIERE",45.478348,5.62291,,1,,Europe/Paris,,OVO, +OVO:SA:CTP8794,1,"ST BUEIL LA ROCHE",45.475827,5.680971,,1,,Europe/Paris,,OVO, +OVO:SA:CTP8797,1,"StG.enVALDAINE CHAMPET",45.464983,5.649857,,1,,Europe/Paris,,OVO, +OVO:SA:CTP8805,1,"StG.enVALDAINE LA PALE",45.467225,5.660102,,1,,Europe/Paris,,OVO, +OVO:SA:CTP8811,1,"CENTRE",45.488869,5.647898,,1,,Europe/Paris,,OVO, +OVO:SA:CTP8815,1,"LA SAUGE",45.48202,5.658424,,1,,Europe/Paris,,OVO, +OVO:SA:CTP8825,1,"StG.enVALDAINE LA GLACIERE",45.463441,5.63195,,1,,Europe/Paris,,OVO, +OVO:SA:CTP8833,1,"ST BUEIL RD82",45.480618,5.691068,,1,,Europe/Paris,,OVO, +OVO:SA:CTP8857,1,"EGLISE",45.484476,5.710091,,1,,Europe/Paris,,OVO, +OVO:SA:CTP9517,1,"BATIE DIVISIN MAIRIE",45.509304,5.596672,,1,,Europe/Paris,,OVO, +OVO:SA:CTP9550,1,"CENTRE",45.525108,5.581395,,1,,Europe/Paris,,OVO, +OZU:SA:CTP100,1,"Pierre Sola",43.707063,7.287007,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1001,1,"Panoramic",43.726862,7.257927,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1005,1,"Papyrus",43.705006,7.294971,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1006,1,"Paradis",43.705525,7.245643,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1008,1,"Parc à Fourrages",43.726377,7.286314,,1,,Europe/Paris,,OZU, +OZU:SA:CTP101,1,"Béarn",43.707846,7.276185,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1011,1,"Parc Boron",43.709488,7.294606,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1013,1,"Parc des Miniatures",43.693936,7.230693,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1015,1,"Parc Impérial",43.704739,7.251647,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1016,1,"Parc Impérial / Gambetta",43.704085,7.256133,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1018,1,"Parc Impérial Weygand",43.703808,7.250734,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1020,1,"Parc Louisa",43.696123,7.292473,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1022,1,"Parc Orangini",43.723705,7.271662,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1024,1,"Passerelle Andreis",43.713084,7.282576,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1025,1,"Passerelle des Abattoirs",43.720608,7.283676,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1027,1,"Passy",43.699572,7.25377,,1,,Europe/Paris,,OZU, +OZU:SA:CTP103,1,"Beau Site",43.700482,7.24743,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1032,1,"Carabacel",43.703745,7.275259,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1033,1,"Pastorelli",43.701204,7.270956,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1035,1,"Piloudrome",43.699365,7.297783,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1037,1,"Pessicart Inférieur",43.715442,7.246014,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1038,1,"Pessicart / Roi Robert",43.715326,7.246004,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1039,1,"Petit Bosquet",43.730038,7.243708,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1041,1,"Petit Pessicart",43.722395,7.239833,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1043,1,"Petit Pont",43.707448,7.196857,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1045,1,"Petit Saint-Pierre",43.724221,7.23234,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1047,1,"Pietruschi",43.739479,7.276919,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1049,1,"Pignata",43.690545,7.214056,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1052,1,"Place de la Lanterne",43.683196,7.217845,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1054,1,"Place de l'Ariane",43.738092,7.303692,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1056,1,"Platane",43.711896,7.247943,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1058,1,"Plateau de Rimiez",43.74209,7.273978,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1060,1,"Pléiade",43.688603,7.235894,,1,,Europe/Paris,,OZU, +OZU:SA:CTP10619,1,"Paros",43.681497,7.185348,,1,,Europe/Paris,,OZU, +OZU:SA:CTP10620,1,"Rodin",43.679309,7.18695,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1063,1,"PN Gambetta",43.71039,7.255921,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1065,1,"Pont A.France",43.740606,7.308569,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1066,1,"Pont Barla",43.703156,7.278739,,1,,Europe/Paris,,OZU, +OZU:SA:CTP107,1,"Beauregard",43.715689,7.248307,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1071,1,"Pont du Génie",43.738653,7.221693,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1075,1,"Pontrémoli",43.686432,7.198787,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1077,1,"Porte Est",43.742693,7.302188,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1079,1,"Porte Nord / Sainte-Marguerite",43.678229,7.211178,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1081,1,"Porte Nord",43.746669,7.29885,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1083,1,"Porte Ouest",43.749252,7.29832,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1085,1,"Portiques",43.716545,7.22384,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1087,1,"Les Mûriers",43.736652,7.305815,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1088,1,"Poste de Saint-Roman",43.745593,7.21558,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1089,1,"Poste Essence",43.725008,7.21609,,1,,Europe/Paris,,OZU, +OZU:SA:CTP109,1,"Bella Vista",43.732774,7.269307,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1092,1,"Poste Thiers",43.703392,7.260294,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1094,1,"Pré Catelan",43.721264,7.275239,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1096,1,"Pré Fossati",43.700469,7.29413,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1098,1,"Primavera",43.681333,7.214422,,1,,Europe/Paris,,OZU, +OZU:SA:CTP110,1,"Bell'azur",43.717353,7.250948,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1104,1,"Prince de Galles",43.716896,7.272078,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1109,1,"Provinces",43.679274,7.217347,,1,,Europe/Paris,,OZU, +OZU:SA:CTP111,1,"Belle Niçoise",43.699663,7.223153,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1112,1,"Puget",43.717474,7.262741,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1114,1,"Raccourci",43.70278,7.219535,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1116,1,"Raccourci Corniche",43.714415,7.235284,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1118,1,"Raccourci N°1",43.695793,7.240398,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1120,1,"Raccourci N°5",43.712712,7.220772,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1122,1,"Auda",43.699703,7.234404,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1125,1,"Raimbaldi / Lepante",43.706823,7.267618,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1126,1,"Raoul Dufy",43.680421,7.215473,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1129,1,"Ratti",43.710623,7.274552,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1130,1,"Relais de la Jeunesse",43.729637,7.271954,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1132,1,"Résidence",43.688757,7.206358,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1134,1,"Résidence de Bellet",43.697598,7.238133,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1137,1,"Résidence de la Costière",43.728086,7.228736,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1138,1,"Résidence des Baumettes",43.698125,7.249164,,1,,Europe/Paris,,OZU, +OZU:SA:CTP114,1,"Belle Rive",43.694355,7.295899,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1140,1,"Résidence Universitaire",43.692629,7.232902,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1141,1,"Righi",43.714151,7.250646,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1143,1,"Rimiez Les Sources",43.741797,7.277257,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1144,1,"Rimiez Saint-George",43.733163,7.276781,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1149,1,"Riquier",43.705686,7.289729,,1,,Europe/Paris,,OZU, +OZU:SA:CTP115,1,"Bello Sguardo",43.738915,7.272907,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1151,1,"Castel",43.708484,7.295637,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1155,1,"Risso / Palais",43.708362,7.283419,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1156,1,"Rivoli",43.696593,7.259086,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1157,1,"Rivoli / Joffre",43.697492,7.259325,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1160,1,"Roland Garros",43.707473,7.270145,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1161,1,"Rond Point",43.696778,7.232774,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1163,1,"Rond Point / Cimiez",43.710687,7.271168,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1167,1,"Roselinde Rancher",43.726263,7.262173,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1168,1,"Rossini",43.700758,7.257782,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1169,1,"Route Forestière",43.703721,7.299216,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1172,1,"Route d'Aspremont",43.748857,7.247381,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1174,1,"Ruisseau",43.727597,7.222399,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1176,1,"Sabatier",43.708183,7.2309,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1178,1,"Sabatier",43.712907,7.235974,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1179,1,"Masséna / Guitry",43.69839,7.270239,,1,,Europe/Paris,,OZU, +OZU:SA:CTP118,1,"Bischoffsheim",43.706733,7.292067,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1180,1,"Saint-Aignan",43.694664,7.293451,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1183,1,"Saint-Albert",43.724773,7.295985,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1184,1,"Saint-Isidore",43.711005,7.187837,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1186,1,"Saint-Lambert",43.710157,7.265001,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1187,1,"Saint-Louis",43.716931,7.24952,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1189,1,"Saint-Pancrace",43.743577,7.241073,,1,,Europe/Paris,,OZU, +OZU:SA:CTP119,1,"Biscuiterie",43.707009,7.231978,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1190,1,"Saint-Philippe",43.699244,7.250104,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1191,1,"Saint-Raphaël",43.72287,7.240905,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1194,1,"Sainte-Anne",43.727946,7.295355,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1195,1,"Sainte-Anne",43.725255,7.295481,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1198,1,"Sainte-Marie",43.731078,7.283592,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1199,1,"Saint-Pons",43.728898,7.281999,,1,,Europe/Paris,,OZU, +OZU:SA:CTP12,1,"Albert 1er / Phocéens",43.695329,7.269217,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1202,1,"Salvetti",43.703723,7.294065,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1203,1,"Sanctuaire",43.743609,7.304044,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1205,1,"Sant'Anna",43.732116,7.256071,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1208,1,"Sasserno",43.702442,7.27105,,1,,Europe/Paris,,OZU, +OZU:SA:CTP121,1,"Blanchisserie",43.70007,7.238246,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1210,1,"Scudéri",43.728578,7.276606,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1213,1,"Scudéri / Saint-Maur",43.729028,7.274248,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1216,1,"Garibaldi / Promenade des Arts",43.701379,7.278567,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1217,1,"Séréna Gairaut",43.732716,7.258508,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1218,1,"Sévillan",43.700617,7.259508,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1219,1,"Sirius",43.68862,7.226178,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1221,1,"Somora",43.681003,7.22473,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1223,1,"Square Daudet",43.707462,7.251993,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1224,1,"Saint-Aignan / Pilatte",43.692914,7.290495,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1226,1,"Saint-Antoine-Ginestière",43.708035,7.215629,,1,,Europe/Paris,,OZU, +OZU:SA:CTP123,1,"Bleu Rivage",43.694202,7.28787,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1231,1,"Saint-Charles / Mont Gros",43.717207,7.297575,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1232,1,"Saint-Isidore / Ginestière",43.710851,7.196464,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1235,1,"Saint-Isidore Eglise",43.71099,7.196092,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1237,1,"Saint-Isidore / G.Eiffel",43.708223,7.189425,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1242,1,"Saint-Maurice",43.720565,7.261891,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1246,1,"Saint-Roman de Bellet",43.743585,7.214577,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1249,1,"Saint-Sylvestre",43.725208,7.24893,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1250,1,"Vauban / Université",43.70966,7.287879,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1253,1,"Valrose",43.715767,7.2654,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1254,1,"Stade de Valrose",43.717934,7.266096,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1256,1,"Stade du Ray",43.721619,7.260529,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1258,1,"Stade du Ray / Musset",43.721917,7.261089,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1259,1,"Stade Méarelli / M.I.N.Saint-Augustin",43.670839,7.21129,,1,,Europe/Paris,,OZU, +OZU:SA:CTP126,1,"Bleuets",43.715364,7.278216,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1261,1,"Station J.C. Bermond",43.698331,7.273706,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1266,1,"Sainte-Hélène",43.685704,7.235695,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1267,1,"Sainte-Hélène / Promenade",43.684655,7.235791,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1269,1,"Sainte-Marguerite",43.67745,7.225034,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1270,1,"Sainte-Rosalie",43.714759,7.274476,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1273,1,"Saint-Honoré",43.692542,7.238815,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1275,1,"Super Rimiez",43.738444,7.274717,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1277,1,"Palais Nikaïa",43.680873,7.199309,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1280,1,"Temple",43.733883,7.259205,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1281,1,"Tende / Vauban",43.711652,7.28553,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1282,1,"Tende / Gendarmerie",43.712582,7.284084,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1284,1,"Terra Amata",43.700844,7.289681,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1285,1,"Terrasses",43.702524,7.245695,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1287,1,"Terrasses Impériales",43.70839,7.245406,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1289,1,"Terrasses Pessicart",43.722777,7.238376,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1292,1,"Terron",43.701841,7.207191,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1293,1,"Théodore de Banville / Lorrain",43.688342,7.294448,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1295,1,"Institut Claude Pompidou",43.71321,7.259665,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1296,1,"Thiers / Gambetta",43.702045,7.256217,,1,,Europe/Paris,,OZU, +OZU:SA:CTP13,1,"Albert 1er / Verdun",43.696126,7.266965,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1300,1,"Toit Zézette",43.731243,7.217244,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1302,1,"Tordo",43.718856,7.282805,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1305,1,"Toselli",43.704866,7.270217,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1308,1,"Tournant Robert",43.681041,7.205115,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1309,1,"Trésorerie",43.701282,7.275157,,1,,Europe/Paris,,OZU, +OZU:SA:CTP131,1,"Bois de Cythère",43.706519,7.248162,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1313,1,"Trois Vallées",43.689347,7.228226,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1314,1,"Tyrsene",43.689275,7.215462,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1316,1,"Tzaréwitch",43.702459,7.2515,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1318,1,"Tzaréwitch / Gambetta",43.702685,7.254448,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1319,1,"Uletta",43.698791,7.227883,,1,,Europe/Paris,,OZU, +OZU:SA:CTP132,1,"Bois Sacré",43.747928,7.298866,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1322,1,"Urbain Bosio",43.698742,7.293856,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1323,1,"Usine / Canta Galet",43.703275,7.221539,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1326,1,"Val Azur",43.687249,7.229411,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1327,1,"Val Fleuri",43.716895,7.263796,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1332,1,"Vallon",43.688318,7.228871,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1333,1,"Vallon 1",43.747661,7.244743,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1335,1,"Vallon 2",43.741014,7.258841,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1340,1,"Vallon de Pessicart",43.717457,7.244685,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1342,1,"Vallon des Fleurs",43.732514,7.271458,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1346,1,"Verdi",43.69958,7.261728,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1348,1,"Vernier / Gambetta",43.706626,7.256103,,1,,Europe/Paris,,OZU, +OZU:SA:CTP135,1,"Bon Voyage",43.73174,7.289786,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1351,1,"Vérola",43.710749,7.192533,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1354,1,"Victor Hugo",43.702228,7.268846,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1355,1,"Victoria",43.719265,7.273239,,1,,Europe/Paris,,OZU, +OZU:SA:CTP136,1,"Bona",43.733587,7.217384,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1360,1,"Vieux Mas",43.708293,7.243796,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1362,1,"Vigna",43.723284,7.222178,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1365,1,"Villa Arson",43.722053,7.252756,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1366,1,"Villa Cyrnos",43.71635,7.250426,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1367,1,"Villa Louise",43.710804,7.196523,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1368,1,"Villa Préjane",43.711626,7.228638,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1370,1,"Villa Vansy",43.705789,7.249353,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1371,1,"Villa la côte",43.690968,7.293449,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1373,1,"Mont Carmel",43.726623,7.260588,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1376,1,"Vismara",43.725406,7.263287,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1378,1,"Vittone",43.674569,7.212011,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1379,1,"Voie Romaine",43.721968,7.286837,,1,,Europe/Paris,,OZU, +OZU:SA:CTP138,1,"La Bornala",43.693891,7.238844,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1381,1,"Wilson",43.699891,7.274453,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1384,1,"XVe Corps",43.706168,7.281156,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1394,1,"Castel Fabron",43.704768,7.199993,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1397,1,"La Madrague",43.678099,7.228018,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1398,1,"Le Florilège",43.710928,7.252615,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1399,1,"Les Rochers",43.710129,7.295542,,1,,Europe/Paris,,OZU, +OZU:SA:CTP14,1,"Alberti / Gioffredo",43.699091,7.272857,,1,,Europe/Paris,,OZU, +OZU:SA:CTP140,1,"Bougainvilliers",43.690589,7.235195,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1401,1,"N.121",43.712558,7.249825,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1402,1,"Les Teiras",43.716421,7.297444,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1404,1,"Villa Verte",43.708856,7.297846,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1406,1,"Corniche Bellevue",43.708147,7.243038,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1408,1,"Groupe scolaire / Moretti",43.704909,7.207864,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1409,1,"Larga Vista",43.708424,7.214594,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1411,1,"Lingostière Gare",43.720535,7.1884,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1412,1,"L'Ossuaire",43.744605,7.298745,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1417,1,"Le Génie / Bellet",43.740269,7.216814,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1418,1,"L'Epingle",43.703454,7.242474,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1423,1,"La Charmeraie / Cimiez",43.709477,7.2728,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1424,1,"Stade du Ray / Gorbella",43.723374,7.256197,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1427,1,"Cernuschi",43.727646,7.251958,,1,,Europe/Paris,,OZU, +OZU:SA:CTP143,1,"Boulangerie / Oliviers",43.722262,7.232842,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1431,1,"Chénier",43.723192,7.260007,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1433,1,"Delille",43.701341,7.276826,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1434,1,"Deloye / Dubouchage",43.700626,7.269018,,1,,Europe/Paris,,OZU, +OZU:SA:CTP144,1,"Boulangerie",43.695974,7.234616,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1442,1,"Doyen Lépine",43.715726,7.261783,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1445,1,"Gambetta / Dante",43.696174,7.256207,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1447,1,"Résidence Monticello",43.70988,7.267733,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1449,1,"Palais Prince Charles",43.711263,7.268362,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1450,1,"Avenue Flora",43.712618,7.270863,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1453,1,"Georges V",43.713503,7.270419,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1455,1,"Goiran",43.724848,7.249495,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1458,1,"Gutenberg",43.709207,7.255992,,1,,Europe/Paris,,OZU, +OZU:SA:CTP146,1,"Boutonnerie",43.705822,7.23293,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1460,1,"Henri Dunant",43.725783,7.264789,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1461,1,"Hôpital Saint-Roch",43.702219,7.275164,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1466,1,"La Lauvette",43.743385,7.306901,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1482,1,"Les Séoules la Charmeraie",43.748089,7.206937,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1485,1,"Madeleine Supérieure",43.72927,7.22223,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1487,1,"Mendiguren",43.706743,7.277071,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1489,1,"Les Coccinelles",43.705639,7.277585,,1,,Europe/Paris,,OZU, +OZU:SA:CTP149,1,"Boyer",43.702606,7.280515,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1491,1,"Mer et Montagne",43.724919,7.221857,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1492,1,"Michel Ange",43.710914,7.260224,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1496,1,"Montée de Cimiez",43.706375,7.276232,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1497,1,"Normandie / Cimiez",43.707206,7.27361,,1,,Europe/Paris,,OZU, +OZU:SA:CTP15,1,"Alberti / Hôtel des Postes",43.699981,7.271693,,1,,Europe/Paris,,OZU, +OZU:SA:CTP150,1,"Braco",43.719476,7.223501,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1502,1,"Hôpital Pasteur",43.723507,7.283108,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1504,1,"Picardie",43.708199,7.274963,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1505,1,"Pierre Sémard",43.716023,7.289797,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1511,1,"Pont de l'Ariane / Nice",43.735482,7.300719,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1515,1,"Puget / Borriglione",43.718061,7.261301,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1516,1,"Pylônes",43.740969,7.201779,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1517,1,"Raccourci du Pilon",43.750517,7.214121,,1,,Europe/Paris,,OZU, +OZU:SA:CTP152,1,"Brin d'Amour",43.71659,7.252085,,1,,Europe/Paris,,OZU, +OZU:SA:CTP153,1,"Brun",43.695069,7.238685,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1530,1,"Saint-Pierre-de-Féric",43.717338,7.23638,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1531,1,"Square Normandie Niemen",43.704387,7.287817,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1542,1,"Le Verseau",43.713065,7.273137,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1544,1,"Clinique de Cimiez",43.710417,7.272746,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1554,1,"La Colline / Costière",43.711069,7.229223,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1555,1,"Le Pont / Dauphiné",43.703429,7.249758,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1556,1,"L'Eglise",43.70878,7.23064,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1557,1,"Léon Bertrand",43.674981,7.22347,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1559,1,"Marjolaine",43.704363,7.249205,,1,,Europe/Paris,,OZU, +OZU:SA:CTP156,1,"Collège Matisse",43.72336,7.2729,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1563,1,"Vallon Barla",43.682466,7.231804,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1565,1,"Tabacs / Madeleine",43.70189,7.236442,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1567,1,"Primerose / Dauphiné",43.705491,7.24996,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1568,1,"Constellations",43.688988,7.226805,,1,,Europe/Paris,,OZU, +OZU:SA:CTP158,1,"C.G.E",43.706727,7.209483,,1,,Europe/Paris,,OZU, +OZU:SA:CTP159,1,"CP",43.710484,7.25347,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1590,1,"Aéro Habitat",43.671778,7.210031,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1591,1,"Auvare",43.712295,7.288616,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1593,1,"Ecole Prévert",43.739424,7.306082,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1594,1,"Cyrille Besset",43.716789,7.255814,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1597,1,"Villa Laurenti",43.722155,7.269119,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1599,1,"Avenue Charpentier",43.717566,7.250394,,1,,Europe/Paris,,OZU, +OZU:SA:CTP16,1,"Allée Centrale",43.744833,7.300665,,1,,Europe/Paris,,OZU, +OZU:SA:CTP160,1,"CPAM Entrée",43.72012,7.242568,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1601,1,"Defly / Klein",43.701809,7.277624,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1607,1,"République / Delfino",43.705458,7.284309,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1612,1,"Libération",43.710123,7.261,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1615,1,"Nazareth",43.709457,7.255654,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1616,1,"Joseph Garnier",43.71012,7.258702,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1617,1,"Bagnis",43.735111,7.215341,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1623,1,"Belvédère",43.698938,7.204472,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1625,1,"La Madeleine",43.70853,7.230383,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1627,1,"Boulevard Mantega",43.711273,7.250956,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1628,1,"Emmanuel",43.705359,7.241768,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1631,1,"La Gare",43.708591,7.231841,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1633,1,"Ancienne Batterie",43.701859,7.242273,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1635,1,"Camin Dei Galofre",43.707683,7.235189,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1637,1,"La Carriere",43.711218,7.233694,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1641,1,"Le Bretagne",43.731617,7.253769,,1,,Europe/Paris,,OZU, +OZU:SA:CTP1642,1,"Vallot",43.715752,7.263387,,1,,Europe/Paris,,OZU, +OZU:SA:CTP165,1,"Cagnoli",43.717444,7.252916,,1,,Europe/Paris,,OZU, +OZU:SA:CTP166,1,"Cal Spagnol",43.695989,7.205561,,1,,Europe/Paris,,OZU, +OZU:SA:CTP172,1,"Cap Bellet",43.69619,7.239402,,1,,Europe/Paris,,OZU, +OZU:SA:CTP176,1,"Carlone",43.69419,7.243375,,1,,Europe/Paris,,OZU, +OZU:SA:CTP181,1,"Caroubier",43.714518,7.296893,,1,,Europe/Paris,,OZU, +OZU:SA:CTP183,1,"Carras / Saint-Augustin",43.680063,7.229985,,1,,Europe/Paris,,OZU, +OZU:SA:CTP188,1,"Carré 13",43.74497,7.29859,,1,,Europe/Paris,,OZU, +OZU:SA:CTP19,1,"Allée des Jardiniers",43.709239,7.19228,,1,,Europe/Paris,,OZU, +OZU:SA:CTP191,1,"Centre Commercial Lingostière",43.7277,7.188875,,1,,Europe/Paris,,OZU, +OZU:SA:CTP193,1,"Cascade de Gairaut",43.738006,7.259425,,1,,Europe/Paris,,OZU, +OZU:SA:CTP197,1,"Caucade",43.677543,7.216975,,1,,Europe/Paris,,OZU, +OZU:SA:CTP198,1,"Caucade / Place Sainte-Marguerite",43.68084,7.207381,,1,,Europe/Paris,,OZU, +OZU:SA:CTP2,1,"Abattoirs",43.718898,7.285229,,1,,Europe/Paris,,OZU, +OZU:SA:CTP20,1,"Alphonse Karr",43.700101,7.264318,,1,,Europe/Paris,,OZU, +OZU:SA:CTP201,1,"Commandant Gérôme",43.72448,7.275406,,1,,Europe/Paris,,OZU, +OZU:SA:CTP20143,1,"Chemin de l'Espéyre",43.747615,7.388725,,1,,Europe/Paris,,OZU, +OZU:SA:CTP20144,1,"Sainte-Catherine",43.744836,7.394617,,1,,Europe/Paris,,OZU, +OZU:SA:CTP20149,1,"Village",43.804568,7.403812,,1,,Europe/Paris,,OZU, +OZU:SA:CTP20150,1,"Sanctuaire",43.752978,7.382654,,1,,Europe/Paris,,OZU, +OZU:SA:CTP20151,1,"Saint-Pancrace",43.792619,7.400062,,1,,Europe/Paris,,OZU, +OZU:SA:CTP20152,1,"Le Téléphérique",43.779839,7.399048,,1,,Europe/Paris,,OZU, +OZU:SA:CTP20153,1,"Saint-Martin",43.768848,7.39986,,1,,Europe/Paris,,OZU, +OZU:SA:CTP20156,1,"Chemin de Braousch",43.748667,7.388001,,1,,Europe/Paris,,OZU, +OZU:SA:CTP20157,1,"Le Rondeau",43.750741,7.382715,,1,,Europe/Paris,,OZU, +OZU:SA:CTP203,1,"Centre Administratif",43.675686,7.199235,,1,,Europe/Paris,,OZU, +OZU:SA:CTP20454,1,"Mairie",43.745315,7.399579,,1,,Europe/Paris,,OZU, +OZU:SA:CTP20480,1,"Le Tunnel",43.660132,7.131092,,1,,Europe/Paris,,OZU, +OZU:SA:CTP20481,1,"La Grange Rimade",43.662812,7.125889,,1,,Europe/Paris,,OZU, +OZU:SA:CTP20482,1,"Hâmeaux du Soleil",43.668154,7.122167,,1,,Europe/Paris,,OZU, +OZU:SA:CTP206,1,"Chemin Saint-Pons",43.730246,7.276143,,1,,Europe/Paris,,OZU, +OZU:SA:CTP207,1,"Chemin Saquier",43.749568,7.216283,,1,,Europe/Paris,,OZU, +OZU:SA:CTP209,1,"Chalet des Roses",43.697261,7.240797,,1,,Europe/Paris,,OZU, +OZU:SA:CTP21,1,"Alsace-Lorraine",43.697959,7.256187,,1,,Europe/Paris,,OZU, +OZU:SA:CTP210,1,"Chambrun",43.722349,7.263871,,1,,Europe/Paris,,OZU, +OZU:SA:CTP211,1,"Chambrun",43.723458,7.261073,,1,,Europe/Paris,,OZU, +OZU:SA:CTP212,1,"Charretiers",43.729583,7.229858,,1,,Europe/Paris,,OZU, +OZU:SA:CTP21200,1,"Gattières Mairie",43.759546,7.17577,,1,,Europe/Paris,,OZU, +OZU:SA:CTP21218,1,"Domaine de L'Estellan",43.777061,7.178631,,1,,Europe/Paris,,OZU, +OZU:SA:CTP21224,1,"Les Serres",43.757436,7.177436,,1,,Europe/Paris,,OZU, +OZU:SA:CTP21225,1,"Collège des Baous",43.74642,7.154048,,1,,Europe/Paris,,OZU, +OZU:SA:CTP21229,1,"Les Condamines",43.757789,7.18765,,1,,Europe/Paris,,OZU, +OZU:SA:CTP21230,1,"Les Conques",43.761223,7.191435,,1,,Europe/Paris,,OZU, +OZU:SA:CTP21232,1,"Les Cigales",43.766677,7.193315,,1,,Europe/Paris,,OZU, +OZU:SA:CTP21236,1,"Les Oliviers",43.765151,7.177935,,1,,Europe/Paris,,OZU, +OZU:SA:CTP21260,1,"La Médiathèque",43.773673,7.191984,,1,,Europe/Paris,,OZU, +OZU:SA:CTP21318,1,"La Menuiserie",44.067124,7.255782,,1,,Europe/Paris,,OZU, +OZU:SA:CTP21323,1,"Nantellée",44.051492,7.271151,,1,,Europe/Paris,,OZU, +OZU:SA:CTP21324,1,"Le Villaron",44.049275,7.274549,,1,,Europe/Paris,,OZU, +OZU:SA:CTP21326,1,"Gare de Berthemont",44.033133,7.300475,,1,,Europe/Paris,,OZU, +OZU:SA:CTP21330,1,"Lantosque",43.974148,7.31068,,1,,Europe/Paris,,OZU, +OZU:SA:CTP21332,1,"St Jean La Rivière",43.919632,7.265014,,1,,Europe/Paris,,OZU, +OZU:SA:CTP21408,1,"Saint Sauveur sur Tinée",44.082434,7.105927,,1,,Europe/Paris,,OZU, +OZU:SA:CTP21426,1,"Collège Jean Franco St-Etienne de Tinée",44.2574,6.923746,,1,,Europe/Paris,,OZU, +OZU:SA:CTP21497,1,"Bouyon",43.825275,7.122962,,1,,Europe/Paris,,OZU, +OZU:SA:CTP215,1,"Château de l'Anglais",43.687892,7.295529,,1,,Europe/Paris,,OZU, +OZU:SA:CTP21501,1,"Collet de la Déesse",43.78125,7.180427,,1,,Europe/Paris,,OZU, +OZU:SA:CTP21503,1,"Chemin du Clot",43.765329,7.176346,,1,,Europe/Paris,,OZU, +OZU:SA:CTP21504,1,"Chemin des Espéiroures",43.762756,7.174471,,1,,Europe/Paris,,OZU, +OZU:SA:CTP21505,1,"Gattières Village",43.76039,7.175823,,1,,Europe/Paris,,OZU, +OZU:SA:CTP21507,1,"Lou Camp",43.786675,7.180152,,1,,Europe/Paris,,OZU, +OZU:SA:CTP21518,1,"Place des Plans Carros",43.774998,7.199771,,1,,Europe/Paris,,OZU, +OZU:SA:CTP21565,1,"Rue 1",43.770994,7.207106,,1,,Europe/Paris,,OZU, +OZU:SA:CTP21566,1,"Rue 2",43.77336,7.206383,,1,,Europe/Paris,,OZU, +OZU:SA:CTP21567,1,"Rue 3",43.774605,7.207901,,1,,Europe/Paris,,OZU, +OZU:SA:CTP21568,1,"Rue 4",43.776061,7.208543,,1,,Europe/Paris,,OZU, +OZU:SA:CTP21569,1,"Rue 5",43.77742,7.209573,,1,,Europe/Paris,,OZU, +OZU:SA:CTP21570,1,"Rue 6",43.778612,7.211067,,1,,Europe/Paris,,OZU, +OZU:SA:CTP21571,1,"Rue 7",43.780118,7.211817,,1,,Europe/Paris,,OZU, +OZU:SA:CTP21572,1,"Rue 9",43.786572,7.20982,,1,,Europe/Paris,,OZU, +OZU:SA:CTP21573,1,"Rue 10",43.789059,7.207514,,1,,Europe/Paris,,OZU, +OZU:SA:CTP21574,1,"Rue 11",43.79148,7.204747,,1,,Europe/Paris,,OZU, +OZU:SA:CTP21575,1,"Rue 12",43.794365,7.201502,,1,,Europe/Paris,,OZU, +OZU:SA:CTP21576,1,"Rue 13",43.796257,7.198924,,1,,Europe/Paris,,OZU, +OZU:SA:CTP21577,1,"Rue 14",43.798333,7.196768,,1,,Europe/Paris,,OZU, +OZU:SA:CTP21578,1,"Rue 15",43.800419,7.193239,,1,,Europe/Paris,,OZU, +OZU:SA:CTP21579,1,"Rue 16",43.802764,7.189835,,1,,Europe/Paris,,OZU, +OZU:SA:CTP21580,1,"Rue 17",43.805488,7.186699,,1,,Europe/Paris,,OZU, +OZU:SA:CTP21581,1,"Rue 17bis",43.807504,7.185251,,1,,Europe/Paris,,OZU, +OZU:SA:CTP21582,1,"17eme Ter",43.808877,7.183201,,1,,Europe/Paris,,OZU, +OZU:SA:CTP21590,1,"Les Rosemarines",43.775295,7.198341,,1,,Europe/Paris,,OZU, +OZU:SA:CTP21591,1,"Ecole Guillonnet",43.778416,7.197241,,1,,Europe/Paris,,OZU, +OZU:SA:CTP216,1,"Chateau des Baumettes",43.695037,7.250312,,1,,Europe/Paris,,OZU, +OZU:SA:CTP218,1,"Château Sainte-Anne",43.688555,7.231199,,1,,Europe/Paris,,OZU, +OZU:SA:CTP219,1,"Châteauneuf",43.701051,7.251154,,1,,Europe/Paris,,OZU, +OZU:SA:CTP221,1,"Charmettes",43.71964,7.234852,,1,,Europe/Paris,,OZU, +OZU:SA:CTP224,1,"Chemin de la Tour",43.736194,7.215495,,1,,Europe/Paris,,OZU, +OZU:SA:CTP226,1,"Chemin de l'Archet",43.695586,7.22906,,1,,Europe/Paris,,OZU, +OZU:SA:CTP229,1,"Chemin du Fort",43.695602,7.298907,,1,,Europe/Paris,,OZU, +OZU:SA:CTP231,1,"Chemin Tordu",43.695065,7.286435,,1,,Europe/Paris,,OZU, +OZU:SA:CTP233,1,"Chênes Blancs",43.736654,7.297145,,1,,Europe/Paris,,OZU, +OZU:SA:CTP235,1,"Chevaliers de Malte",43.723608,7.25382,,1,,Europe/Paris,,OZU, +OZU:SA:CTP237,1,"Chez Cane",43.697655,7.209365,,1,,Europe/Paris,,OZU, +OZU:SA:CTP239,1,"Chez Olivier",43.734695,7.237502,,1,,Europe/Paris,,OZU, +OZU:SA:CTP24,1,"Amboise",43.677323,7.206705,,1,,Europe/Paris,,OZU, +OZU:SA:CTP241,1,"Cimetière Est",43.743639,7.300774,,1,,Europe/Paris,,OZU, +OZU:SA:CTP243,1,"Cimiez / Hôpital",43.721742,7.272263,,1,,Europe/Paris,,OZU, +OZU:SA:CTP244,1,"Cité Arménienne",43.713737,7.225169,,1,,Europe/Paris,,OZU, +OZU:SA:CTP246,1,"Maccario / Raybaud",43.72511,7.285881,,1,,Europe/Paris,,OZU, +OZU:SA:CTP249,1,"Cité PLM",43.719871,7.286791,,1,,Europe/Paris,,OZU, +OZU:SA:CTP25,1,"Ancien octroi",43.722602,7.289897,,1,,Europe/Paris,,OZU, +OZU:SA:CTP2501,1,"Acropolis",43.704594,7.28231,,1,,Europe/Paris,,OZU, +OZU:SA:CTP2504,1,"Borriglione",43.711858,7.261858,,1,,Europe/Paris,,OZU, +OZU:SA:CTP2506,1,"Cathédrale - Vieille Ville",43.698445,7.276525,,1,,Europe/Paris,,OZU, +OZU:SA:CTP251,1,"Cité Vallon",43.727235,7.265151,,1,,Europe/Paris,,OZU, +OZU:SA:CTP2510,1,"Gare Thiers",43.705497,7.264882,,1,,Europe/Paris,,OZU, +OZU:SA:CTP2511,1,"Garibaldi",43.701578,7.28052,,1,,Europe/Paris,,OZU, +OZU:SA:CTP2513,1,"Gorbella",43.717847,7.256924,,1,,Europe/Paris,,OZU, +OZU:SA:CTP2515,1,"Jean Médecin",43.701701,7.267336,,1,,Europe/Paris,,OZU, +OZU:SA:CTP2516,1,"Henri Sappia",43.730643,7.254193,,1,,Europe/Paris,,OZU, +OZU:SA:CTP2518,1,"Le Ray",43.721525,7.256448,,1,,Europe/Paris,,OZU, +OZU:SA:CTP252,1,"Clair de Lune",43.700205,7.249553,,1,,Europe/Paris,,OZU, +OZU:SA:CTP2522,1,"Masséna",43.698403,7.26937,,1,,Europe/Paris,,OZU, +OZU:SA:CTP2524,1,"Opéra - Vieille Ville",43.697277,7.272935,,1,,Europe/Paris,,OZU, +OZU:SA:CTP2527,1,"Palais des Expositions",43.707325,7.283851,,1,,Europe/Paris,,OZU, +OZU:SA:CTP2528,1,"Pont Michel",43.722909,7.29088,,1,,Europe/Paris,,OZU, +OZU:SA:CTP2532,1,"Saint-Charles",43.718474,7.291749,,1,,Europe/Paris,,OZU, +OZU:SA:CTP2533,1,"Saint-Jean-d'Angely Université",43.709549,7.290364,,1,,Europe/Paris,,OZU, +OZU:SA:CTP2536,1,"Saint-Roch",43.711724,7.292813,,1,,Europe/Paris,,OZU, +OZU:SA:CTP2537,1,"Terminus Rouret",43.729743,7.254364,,1,,Europe/Paris,,OZU, +OZU:SA:CTP2539,1,"Valrose Université",43.715505,7.261491,,1,,Europe/Paris,,OZU, +OZU:SA:CTP2541,1,"Vauban",43.710044,7.28662,,1,,Europe/Paris,,OZU, +OZU:SA:CTP2543,1,"Virgile Barel",43.714931,7.292794,,1,,Europe/Paris,,OZU, +OZU:SA:CTP2545,1,"Canta Galet",43.719002,7.217588,,1,,Europe/Paris,,OZU, +OZU:SA:CTP2547,1,"Les Serres",43.716973,7.196144,,1,,Europe/Paris,,OZU, +OZU:SA:CTP255,1,"Clair Horizon",43.685128,7.225135,,1,,Europe/Paris,,OZU, +OZU:SA:CTP2550,1,"Vieux Chemin de Crémat",43.712816,7.198681,,1,,Europe/Paris,,OZU, +OZU:SA:CTP2551,1,"Le Toasc",43.716932,7.198383,,1,,Europe/Paris,,OZU, +OZU:SA:CTP2553,1,"Tennis Crémat",43.71821,7.203115,,1,,Europe/Paris,,OZU, +OZU:SA:CTP2556,1,"La Vignette",43.720378,7.20799,,1,,Europe/Paris,,OZU, +OZU:SA:CTP2558,1,"Château de Crémat",43.72348,7.20856,,1,,Europe/Paris,,OZU, +OZU:SA:CTP2559,1,"Le Four",43.724971,7.208742,,1,,Europe/Paris,,OZU, +OZU:SA:CTP256,1,"Clair Logis",43.72618,7.258862,,1,,Europe/Paris,,OZU, +OZU:SA:CTP2561,1,"La Raiola",43.729591,7.210944,,1,,Europe/Paris,,OZU, +OZU:SA:CTP2563,1,"Tramontane",43.731834,7.21329,,1,,Europe/Paris,,OZU, +OZU:SA:CTP2566,1,"Les Cigales",43.75071,7.306844,,1,,Europe/Paris,,OZU, +OZU:SA:CTP2569,1,"Labrador",43.751814,7.307338,,1,,Europe/Paris,,OZU, +OZU:SA:CTP2570,1,"La Haie",43.748681,7.306493,,1,,Europe/Paris,,OZU, +OZU:SA:CTP2571,1,"L'Escalier",43.746652,7.308142,,1,,Europe/Paris,,OZU, +OZU:SA:CTP2572,1,"Complexe Sportif La Lauvette",43.749022,7.301441,,1,,Europe/Paris,,OZU, +OZU:SA:CTP2573,1,"Chemin de La Lauvette",43.742801,7.308029,,1,,Europe/Paris,,OZU, +OZU:SA:CTP2575,1,"Stade Hairabedian",43.746585,7.304695,,1,,Europe/Paris,,OZU, +OZU:SA:CTP2588,1,"Carnot",43.698188,7.287861,,1,,Europe/Paris,,OZU, +OZU:SA:CTP259,1,"Coecilia",43.695976,7.295712,,1,,Europe/Paris,,OZU, +OZU:SA:CTP26,1,"Ancien Octroi",43.722621,7.290074,,1,,Europe/Paris,,OZU, +OZU:SA:CTP260,1,"Col de Bast",43.732855,7.244125,,1,,Europe/Paris,,OZU, +OZU:SA:CTP262,1,"Cal de Spagnol",43.693667,7.210501,,1,,Europe/Paris,,OZU, +OZU:SA:CTP263,1,"Col de Villefranche",43.705287,7.300523,,1,,Europe/Paris,,OZU, +OZU:SA:CTP264,1,"Col des 4 Chemins",43.716781,7.312526,,1,,Europe/Paris,,OZU, +OZU:SA:CTP2649,1,"Résidence Universitaire Montebello",43.719235,7.267774,,1,,Europe/Paris,,OZU, +OZU:SA:CTP265,1,"Colette",43.697825,7.230543,,1,,Europe/Paris,,OZU, +OZU:SA:CTP2650,1,"Les Baraques",43.695199,7.192578,,1,,Europe/Paris,,OZU, +OZU:SA:CTP2651,1,"Promenade des Arts",43.700728,7.278622,,1,,Europe/Paris,,OZU, +OZU:SA:CTP2652,1,"Les Arboras",43.692399,7.200054,,1,,Europe/Paris,,OZU, +OZU:SA:CTP2655,1,"Massenet",43.694978,7.264294,,1,,Europe/Paris,,OZU, +OZU:SA:CTP2656,1,"Alberti",43.698732,7.272408,,1,,Europe/Paris,,OZU, +OZU:SA:CTP2658,1,"Centre Commercial / Saint-Isidore",43.710518,7.189659,,1,,Europe/Paris,,OZU, +OZU:SA:CTP2662,1,"Parc Impérial Scolaire",43.705279,7.251668,,1,,Europe/Paris,,OZU, +OZU:SA:CTP2665,1,"Saint-Joseph",43.735044,7.296507,,1,,Europe/Paris,,OZU, +OZU:SA:CTP2668,1,"Trachel",43.706196,7.260227,,1,,Europe/Paris,,OZU, +OZU:SA:CTP267,1,"Colibri",43.737992,7.237289,,1,,Europe/Paris,,OZU, +OZU:SA:CTP269,1,"Collège de l'Archet",43.692604,7.229089,,1,,Europe/Paris,,OZU, +OZU:SA:CTP2694,1,"Hôpital Pasteur / Clinique Saint-François",43.722986,7.282095,,1,,Europe/Paris,,OZU, +OZU:SA:CTP2700,1,"Séguran",43.738014,7.305201,,1,,Europe/Paris,,OZU, +OZU:SA:CTP2701,1,"Eglantines",43.736614,7.302744,,1,,Europe/Paris,,OZU, +OZU:SA:CTP2703,1,"Malausséna",43.706435,7.263673,,1,,Europe/Paris,,OZU, +OZU:SA:CTP2708,1,"Gambetta / Buffa",43.696147,7.256602,,1,,Europe/Paris,,OZU, +OZU:SA:CTP2709,1,"Rosa Bonheur / Promenade",43.691982,7.249168,,1,,Europe/Paris,,OZU, +OZU:SA:CTP271,1,"Collet Pioum",43.750657,7.245013,,1,,Europe/Paris,,OZU, +OZU:SA:CTP2710,1,"Vallon Barla / Promenade",43.682173,7.232712,,1,,Europe/Paris,,OZU, +OZU:SA:CTP2715,1,"Californie / Promenade",43.671758,7.224843,,1,,Europe/Paris,,OZU, +OZU:SA:CTP2716,1,"JEAN NATALE",43.78872,7.182622,,1,,Europe/Paris,,OZU, +OZU:SA:CTP2717,1,"ORATOIRE",43.780251,7.175962,,1,,Europe/Paris,,OZU, +OZU:SA:CTP2718,1,"FOUR A CHAUX",43.776736,7.175595,,1,,Europe/Paris,,OZU, +OZU:SA:CTP2719,1,"CLOS DE RIPERT",43.783764,7.174356,,1,,Europe/Paris,,OZU, +OZU:SA:CTP2720,1,"LE GOURG",43.787008,7.178022,,1,,Europe/Paris,,OZU, +OZU:SA:CTP2721,1,"SAINT SEBASTIEN LA DILIGENCE",43.800999,7.179581,,1,,Europe/Paris,,OZU, +OZU:SA:CTP2722,1,"LA GINESTIERE",43.784749,7.184304,,1,,Europe/Paris,,OZU, +OZU:SA:CTP2723,1,"LE COUGNET",43.783003,7.182129,,1,,Europe/Paris,,OZU, +OZU:SA:CTP2724,1,"LE COUGNET 2",43.782961,7.182186,,1,,Europe/Paris,,OZU, +OZU:SA:CTP2725,1,"SAINT JOSEPH",43.789752,7.188583,,1,,Europe/Paris,,OZU, +OZU:SA:CTP2726,1,"SAINT JOSEPH 2",43.788675,7.189364,,1,,Europe/Paris,,OZU, +OZU:SA:CTP2727,1,"CHEMIN DE LA DEESSE 1",43.780347,7.186402,,1,,Europe/Paris,,OZU, +OZU:SA:CTP2728,1,"CHEMIN DE LA DEESSE 2",43.78063,7.186216,,1,,Europe/Paris,,OZU, +OZU:SA:CTP2729,1,"ECOLE DES PLANS 1",43.779075,7.196969,,1,,Europe/Paris,,OZU, +OZU:SA:CTP2730,1,"ECOLE DES PLANS 2",43.779088,7.197035,,1,,Europe/Paris,,OZU, +OZU:SA:CTP274,1,"Colombo",43.722521,7.279459,,1,,Europe/Paris,,OZU, +OZU:SA:CTP2741,1,"Leader",43.670984,7.20866,,1,,Europe/Paris,,OZU, +OZU:SA:CTP2742,1,"Méridia",43.683251,7.203122,,1,,Europe/Paris,,OZU, +OZU:SA:CTP2743,1,"Collège Jules Romains",43.679277,7.204722,,1,,Europe/Paris,,OZU, +OZU:SA:CTP2744,1,"La Plaine",43.685756,7.201124,,1,,Europe/Paris,,OZU, +OZU:SA:CTP275,1,"Colonel Gassin",43.723188,7.284186,,1,,Europe/Paris,,OZU, +OZU:SA:CTP281,1,"Comté de Nice",43.675558,7.206747,,1,,Europe/Paris,,OZU, +OZU:SA:CTP282,1,"Congrès / Promenade",43.694735,7.262897,,1,,Europe/Paris,,OZU, +OZU:SA:CTP283,1,"Congrès / Joffre",43.698306,7.262995,,1,,Europe/Paris,,OZU, +OZU:SA:CTP284,1,"Constellations / IUT",43.687431,7.227168,,1,,Europe/Paris,,OZU, +OZU:SA:CTP287,1,"Conti",43.733286,7.237616,,1,,Europe/Paris,,OZU, +OZU:SA:CTP289,1,"Coquette",43.726908,7.248766,,1,,Europe/Paris,,OZU, +OZU:SA:CTP292,1,"Corniche Fleurie",43.682871,7.220459,,1,,Europe/Paris,,OZU, +OZU:SA:CTP294,1,"Coromandel",43.725339,7.261298,,1,,Europe/Paris,,OZU, +OZU:SA:CTP296,1,"Costabella",43.678691,7.224271,,1,,Europe/Paris,,OZU, +OZU:SA:CTP298,1,"Courbet",43.731392,7.27572,,1,,Europe/Paris,,OZU, +OZU:SA:CTP3,1,"Abbaye de Roseland",43.693384,7.228374,,1,,Europe/Paris,,OZU, +OZU:SA:CTP30,1,"Ansaldi",43.695304,7.242838,,1,,Europe/Paris,,OZU, +OZU:SA:CTP300,1,"Croix de Berra",43.708158,7.212288,,1,,Europe/Paris,,OZU, +OZU:SA:CTP3002,1,"AFN",43.724823,7.098935,,1,,Europe/Paris,,OZU, +OZU:SA:CTP3008,1,"Le Baou des Noirs",43.742547,7.144539,,1,,Europe/Paris,,OZU, +OZU:SA:CTP3010,1,"Bel Respiro",43.720818,7.084309,,1,,Europe/Paris,,OZU, +OZU:SA:CTP3012,1,"Bergerie",43.713963,7.087647,,1,,Europe/Paris,,OZU, +OZU:SA:CTP3014,1,"Bretelle du Collet",43.735832,7.132484,,1,,Europe/Paris,,OZU, +OZU:SA:CTP3018,1,"Centre de Secours",43.724188,7.103328,,1,,Europe/Paris,,OZU, +OZU:SA:CTP3020,1,"Chemin des Colles",43.723462,7.086045,,1,,Europe/Paris,,OZU, +OZU:SA:CTP3021,1,"Colle Sud",43.72335,7.088381,,1,,Europe/Paris,,OZU, +OZU:SA:CTP3022,1,"Coq Hardi",43.70543,7.132866,,1,,Europe/Paris,,OZU, +OZU:SA:CTP3024,1,"Domaine de l'Etoile",43.719052,7.165762,,1,,Europe/Paris,,OZU, +OZU:SA:CTP3026,1,"Emile Hugues",43.710784,7.125669,,1,,Europe/Paris,,OZU, +OZU:SA:CTP303,1,"Cyrnos",43.715714,7.253711,,1,,Europe/Paris,,OZU, +OZU:SA:CTP3033,1,"Baronne",43.720654,7.179109,,1,,Europe/Paris,,OZU, +OZU:SA:CTP3035,1,"Baronne Place",43.719405,7.179227,,1,,Europe/Paris,,OZU, +OZU:SA:CTP3039,1,"La Cagne",43.744366,7.133762,,1,,Europe/Paris,,OZU, +OZU:SA:CTP3041,1,"La Colette",43.742403,7.139273,,1,,Europe/Paris,,OZU, +OZU:SA:CTP3047,1,"IBM",43.731056,7.166396,,1,,Europe/Paris,,OZU, +OZU:SA:CTP305,1,"Daudet",43.707949,7.251762,,1,,Europe/Paris,,OZU, +OZU:SA:CTP3050,1,"Village",43.72212,7.153902,,1,,Europe/Paris,,OZU, +OZU:SA:CTP3053,1,"La Plus Haute Sine",43.714649,7.0868,,1,,Europe/Paris,,OZU, +OZU:SA:CTP3055,1,"La Pompe",43.717372,7.152943,,1,,Europe/Paris,,OZU, +OZU:SA:CTP3059,1,"L'Ara",43.721472,7.109383,,1,,Europe/Paris,,OZU, +OZU:SA:CTP3064,1,"Le Marronnier",43.719987,7.148607,,1,,Europe/Paris,,OZU, +OZU:SA:CTP3067,1,"Le Peyron",43.743618,7.145773,,1,,Europe/Paris,,OZU, +OZU:SA:CTP3068,1,"Le Pont des Colles",43.736306,7.150421,,1,,Europe/Paris,,OZU, +OZU:SA:CTP3070,1,"Le Puits du Renard",43.720848,7.121686,,1,,Europe/Paris,,OZU, +OZU:SA:CTP3074,1,"Le Suvéran",43.710953,7.129991,,1,,Europe/Paris,,OZU, +OZU:SA:CTP3076,1,"Le Taude",43.701234,7.131866,,1,,Europe/Paris,,OZU, +OZU:SA:CTP3078,1,"Les Cayrons",43.707797,7.129875,,1,,Europe/Paris,,OZU, +OZU:SA:CTP3079,1,"Les Fonts",43.735523,7.129912,,1,,Europe/Paris,,OZU, +OZU:SA:CTP308,1,"Dauphine",43.68403,7.231083,,1,,Europe/Paris,,OZU, +OZU:SA:CTP3081,1,"Les Fourches",43.716086,7.123856,,1,,Europe/Paris,,OZU, +OZU:SA:CTP3085,1,"Les Orangers",43.718905,7.123248,,1,,Europe/Paris,,OZU, +OZU:SA:CTP3089,1,"Les Rombinas",43.706065,7.151652,,1,,Europe/Paris,,OZU, +OZU:SA:CTP3091,1,"Les Seuils",43.709316,7.149208,,1,,Europe/Paris,,OZU, +OZU:SA:CTP3093,1,"Les Vacquières",43.732307,7.154877,,1,,Europe/Paris,,OZU, +OZU:SA:CTP3097,1,"Les Vergers",43.704963,7.14807,,1,,Europe/Paris,,OZU, +OZU:SA:CTP3098,1,"Les Vergers",43.733728,7.12873,,1,,Europe/Paris,,OZU, +OZU:SA:CTP310,1,"De Joly",43.702083,7.293302,,1,,Europe/Paris,,OZU, +OZU:SA:CTP3101,1,"Maréchal Foch",43.723263,7.105909,,1,,Europe/Paris,,OZU, +OZU:SA:CTP3105,1,"Mont Gros",43.726721,7.169468,,1,,Europe/Paris,,OZU, +OZU:SA:CTP3107,1,"Nécropole",43.70747,7.096889,,1,,Europe/Paris,,OZU, +OZU:SA:CTP3108,1,"Notre Dame des Fleurs",43.72252,7.082677,,1,,Europe/Paris,,OZU, +OZU:SA:CTP3109,1,"Paoutaouchoun",43.720876,7.123698,,1,,Europe/Paris,,OZU, +OZU:SA:CTP311,1,"Défly",43.701473,7.276117,,1,,Europe/Paris,,OZU, +OZU:SA:CTP3112,1,"Pierre Droite",43.714577,7.119718,,1,,Europe/Paris,,OZU, +OZU:SA:CTP3115,1,"Plan du Bois",43.731588,7.164367,,1,,Europe/Paris,,OZU, +OZU:SA:CTP3120,1,"Saint-Jeannet",43.750219,7.144555,,1,,Europe/Paris,,OZU, +OZU:SA:CTP3121,1,"Sainte-Elisabeth",43.714334,7.12603,,1,,Europe/Paris,,OZU, +OZU:SA:CTP3125,1,"Saint-Claude",43.730926,7.124284,,1,,Europe/Paris,,OZU, +OZU:SA:CTP3127,1,"Saint-Donat",43.72525,7.094959,,1,,Europe/Paris,,OZU, +OZU:SA:CTP313,1,"Delfino / Riquier",43.703037,7.289388,,1,,Europe/Paris,,OZU, +OZU:SA:CTP3130,1,"Sainte-Colombe",43.731968,7.128209,,1,,Europe/Paris,,OZU, +OZU:SA:CTP3132,1,"Suvéran",43.714861,7.129762,,1,,Europe/Paris,,OZU, +OZU:SA:CTP3133,1,"Thomas Garbies",43.725826,7.154006,,1,,Europe/Paris,,OZU, +OZU:SA:CTP3137,1,"Vallon des Dames",43.717195,7.084789,,1,,Europe/Paris,,OZU, +OZU:SA:CTP3139,1,"Venciannes",43.718082,7.126804,,1,,Europe/Paris,,OZU, +OZU:SA:CTP314,1,"Delfino / Arson",43.703784,7.288596,,1,,Europe/Paris,,OZU, +OZU:SA:CTP3140,1,"Vosgelade",43.717678,7.129005,,1,,Europe/Paris,,OZU, +OZU:SA:CTP3153,1,"L'Anguille",43.747884,7.164942,,1,,Europe/Paris,,OZU, +OZU:SA:CTP3167,1,"Les Cents Chênes",43.745693,7.15814,,1,,Europe/Paris,,OZU, +OZU:SA:CTP3170,1,"Les Moulins",43.744818,7.134943,,1,,Europe/Paris,,OZU, +OZU:SA:CTP3173,1,"Les Prés",43.744257,7.147404,,1,,Europe/Paris,,OZU, +OZU:SA:CTP318,1,"Delphine",43.723927,7.24302,,1,,Europe/Paris,,OZU, +OZU:SA:CTP3187,1,"Route de Cagnes",43.712897,7.129199,,1,,Europe/Paris,,OZU, +OZU:SA:CTP3189,1,"Val Vert",43.719649,7.125148,,1,,Europe/Paris,,OZU, +OZU:SA:CTP32037,1,"Peire Long",43.682872,7.144451,,1,,Europe/Paris,,OZU, +OZU:SA:CTP32038,1,"Le Noyer",43.687246,7.144328,,1,,Europe/Paris,,OZU, +OZU:SA:CTP32041,1,"Le Bassin Fourrière",43.68917,7.147667,,1,,Europe/Paris,,OZU, +OZU:SA:CTP32042,1,"Les Narcisses",43.67354,7.151247,,1,,Europe/Paris,,OZU, +OZU:SA:CTP32043,1,"La Quiétude",43.674583,7.144037,,1,,Europe/Paris,,OZU, +OZU:SA:CTP32044,1,"Les Caucours",43.676301,7.143887,,1,,Europe/Paris,,OZU, +OZU:SA:CTP32045,1,"Andalouse",43.678172,7.141698,,1,,Europe/Paris,,OZU, +OZU:SA:CTP32046,1,"Clémentine",43.682386,7.138989,,1,,Europe/Paris,,OZU, +OZU:SA:CTP32047,1,"Carré Israélite",43.68377,7.137359,,1,,Europe/Paris,,OZU, +OZU:SA:CTP32048,1,"Le Pylône Cagnes",43.676575,7.137538,,1,,Europe/Paris,,OZU, +OZU:SA:CTP32049,1,"Cocagne",43.677199,7.137828,,1,,Europe/Paris,,OZU, +OZU:SA:CTP32050,1,"Ecole Pain De Sucre",43.674449,7.13866,,1,,Europe/Paris,,OZU, +OZU:SA:CTP32051,1,"HLM Colombier",43.667251,7.141587,,1,,Europe/Paris,,OZU, +OZU:SA:CTP32055,1,"La Roue",43.670907,7.128962,,1,,Europe/Paris,,OZU, +OZU:SA:CTP32065,1,"Les Colombines",43.678054,7.134067,,1,,Europe/Paris,,OZU, +OZU:SA:CTP32068,1,"Bellevue",43.670224,7.142133,,1,,Europe/Paris,,OZU, +OZU:SA:CTP32069,1,"Deux Tours",43.67201,7.14054,,1,,Europe/Paris,,OZU, +OZU:SA:CTP32075,1,"Le Rêve",43.68404,7.168277,,1,,Europe/Paris,,OZU, +OZU:SA:CTP32076,1,"La Fresque",43.685494,7.170884,,1,,Europe/Paris,,OZU, +OZU:SA:CTP32077,1,"Le Palmier",43.68769,7.17243,,1,,Europe/Paris,,OZU, +OZU:SA:CTP32078,1,"Le Bassin",43.689508,7.173729,,1,,Europe/Paris,,OZU, +OZU:SA:CTP32079,1,"Les Mimosas",43.679934,7.17714,,1,,Europe/Paris,,OZU, +OZU:SA:CTP32080,1,"Bel Azur",43.677495,7.177643,,1,,Europe/Paris,,OZU, +OZU:SA:CTP32133,1,"la-Manda (741-744)",43.760733,7.203382,,1,,Europe/Paris,,OZU, +OZU:SA:CTP32134,1,"Les Cappan Croisement",43.749081,7.196719,,1,,Europe/Paris,,OZU, +OZU:SA:CTP32135,1,"Golfan",43.759676,7.210234,,1,,Europe/Paris,,OZU, +OZU:SA:CTP32137,1,"La Charmeraie",43.737943,7.200825,,1,,Europe/Paris,,OZU, +OZU:SA:CTP32139,1,"Les Séoules",43.748167,7.20715,,1,,Europe/Paris,,OZU, +OZU:SA:CTP32140,1,"Raccourci Du Pilon",43.750399,7.213984,,1,,Europe/Paris,,OZU, +OZU:SA:CTP32150,1,"Le Clotet",43.758247,7.21465,,1,,Europe/Paris,,OZU, +OZU:SA:CTP322,1,"Désambrois",43.704938,7.272408,,1,,Europe/Paris,,OZU, +OZU:SA:CTP32209,1,"Denis Semeria",43.715454,7.288955,,1,,Europe/Paris,,OZU, +OZU:SA:CTP32213,1,"Les Coteaux De Bellet",43.7437,7.20342,,1,,Europe/Paris,,OZU, +OZU:SA:CTP32214,1,"Cappan",43.7525,7.20347,,1,,Europe/Paris,,OZU, +OZU:SA:CTP32215,1,"Stade Allianz Riviera",43.705224,7.196442,,1,,Europe/Paris,,OZU, +OZU:SA:CTP32216,1,"La Vigneraie",43.70926,7.233458,,1,,Europe/Paris,,OZU, +OZU:SA:CTP32218,1,"Villa Sainte-Anne",43.709043,7.232482,,1,,Europe/Paris,,OZU, +OZU:SA:CTP32221,1,"Ecole Mozart",43.6525,7.141921,,1,,Europe/Paris,,OZU, +OZU:SA:CTP32222,1,"Primevères",43.6599,7.1454,,1,,Europe/Paris,,OZU, +OZU:SA:CTP32223,1,"Ecole Daudet 1",43.659327,7.147587,,1,,Europe/Paris,,OZU, +OZU:SA:CTP32224,1,"Ecole Daudet 2",43.659492,7.14693,,1,,Europe/Paris,,OZU, +OZU:SA:CTP32225,1,"Secours Populaire",43.664592,7.123857,,1,,Europe/Paris,,OZU, +OZU:SA:CTP32227,1,"Centre Commercial Terminus",43.658534,7.194492,,1,,Europe/Paris,,OZU, +OZU:SA:CTP32228,1,"Portion K",43.798643,7.231636,,1,,Europe/Paris,,OZU, +OZU:SA:CTP32229,1,"N°1255",43.789838,7.219948,,1,,Europe/Paris,,OZU, +OZU:SA:CTP32230,1,"Le Burguet",43.787321,7.22265,,1,,Europe/Paris,,OZU, +OZU:SA:CTP32231,1,"Chemin du Cabrier1",43.788614,7.22384,,1,,Europe/Paris,,OZU, +OZU:SA:CTP32232,1,"Chemin du Cabrier2",43.788783,7.223505,,1,,Europe/Paris,,OZU, +OZU:SA:CTP32233,1,"Chemin de la Croix",43.787113,7.230258,,1,,Europe/Paris,,OZU, +OZU:SA:CTP32234,1,"Les Lucioles 85 ( sur Ligne 85)",43.737985,7.31231,,1,,Europe/Paris,,OZU, +OZU:SA:CTP32235,1,"Daudet",43.687958,7.183762,,1,,Europe/Paris,,OZU, +OZU:SA:CTP32236,1,"Bella Vista (EZE)",43.726383,7.349259,,1,,Europe/Paris,,OZU, +OZU:SA:CTP32238,1,"Collège St-Blaise (St-Sauveur-sur-Tinée)",44.084274,7.105138,,1,,Europe/Paris,,OZU, +OZU:SA:CTP32239,1,"Collège Jean Saline (Roquebillière)",44.01235,7.308988,,1,,Europe/Paris,,OZU, +OZU:SA:CTP32240,1,"Arnauds Supérieur",43.750176,7.289653,,1,,Europe/Paris,,OZU, +OZU:SA:CTP32241,1,"Pont V. Auriol",43.716299,7.283212,,1,,Europe/Paris,,OZU, +OZU:SA:CTP3230,1,"Stade",43.728698,7.169176,,1,,Europe/Paris,,OZU, +OZU:SA:CTP3238,1,"Emile Hugues 2",43.710868,7.1258,,1,,Europe/Paris,,OZU, +OZU:SA:CTP325,1,"Deux Avenues",43.719644,7.251865,,1,,Europe/Paris,,OZU, +OZU:SA:CTP33,1,"Apogées",43.687033,7.22083,,1,,Europe/Paris,,OZU, +OZU:SA:CTP330,1,"Deux Corniches",43.711248,7.295341,,1,,Europe/Paris,,OZU, +OZU:SA:CTP331,1,"Deux Cyprès",43.685857,7.230322,,1,,Europe/Paris,,OZU, +OZU:SA:CTP334,1,"Diane",43.72822,7.244669,,1,,Europe/Paris,,OZU, +OZU:SA:CTP337,1,"Dillies",43.709576,7.296809,,1,,Europe/Paris,,OZU, +OZU:SA:CTP341,1,"Docteur Moriez",43.708941,7.275077,,1,,Europe/Paris,,OZU, +OZU:SA:CTP343,1,"Docteur Paschetta",43.717345,7.28158,,1,,Europe/Paris,,OZU, +OZU:SA:CTP346,1,"Docteur Roux",43.675778,7.226143,,1,,Europe/Paris,,OZU, +OZU:SA:CTP35,1,"Araucaria Batterie",43.678334,7.219414,,1,,Europe/Paris,,OZU, +OZU:SA:CTP352,1,"Dufy",43.684755,7.215037,,1,,Europe/Paris,,OZU, +OZU:SA:CTP354,1,"Durandy / Canta Galet",43.71471,7.217579,,1,,Europe/Paris,,OZU, +OZU:SA:CTP359,1,"Ecole Corniche Fleurie",43.686145,7.208579,,1,,Europe/Paris,,OZU, +OZU:SA:CTP36,1,"Arboras",43.693114,7.20601,,1,,Europe/Paris,,OZU, +OZU:SA:CTP362,1,"Ecole des Genêts",43.714737,7.228967,,1,,Europe/Paris,,OZU, +OZU:SA:CTP363,1,"Ecole des Oliviers",43.729564,7.253169,,1,,Europe/Paris,,OZU, +OZU:SA:CTP365,1,"Ecole du Righi",43.715933,7.25029,,1,,Europe/Paris,,OZU, +OZU:SA:CTP366,1,"Ecole Fabron",43.687948,7.21232,,1,,Europe/Paris,,OZU, +OZU:SA:CTP368,1,"Ecole Rimiez",43.743984,7.270179,,1,,Europe/Paris,,OZU, +OZU:SA:CTP370,1,"Ecole Saint-Isidore",43.711396,7.193768,,1,,Europe/Paris,,OZU, +OZU:SA:CTP372,1,"Ecole Saint-Pancrace",43.736476,7.237369,,1,,Europe/Paris,,OZU, +OZU:SA:CTP373,1,"Ecole Saint-Pierre",43.717177,7.235943,,1,,Europe/Paris,,OZU, +OZU:SA:CTP375,1,"Eden Park",43.676932,7.222743,,1,,Europe/Paris,,OZU, +OZU:SA:CTP376,1,"Conservatoire National de Région",43.724929,7.273085,,1,,Europe/Paris,,OZU, +OZU:SA:CTP377,1,"Edith Cavell",43.715362,7.271947,,1,,Europe/Paris,,OZU, +OZU:SA:CTP380,1,"Edouard VII",43.717527,7.275014,,1,,Europe/Paris,,OZU, +OZU:SA:CTP381,1,"El Nouzah",43.707073,7.279484,,1,,Europe/Paris,,OZU, +OZU:SA:CTP384,1,"Escale",43.689438,7.236562,,1,,Europe/Paris,,OZU, +OZU:SA:CTP386,1,"Escalier",43.705121,7.247793,,1,,Europe/Paris,,OZU, +OZU:SA:CTP387,1,"Escalier / Saint-Pierre",43.714876,7.238428,,1,,Europe/Paris,,OZU, +OZU:SA:CTP389,1,"Maternelle",43.713645,7.23857,,1,,Europe/Paris,,OZU, +OZU:SA:CTP390,1,"Escaliers",43.726496,7.259821,,1,,Europe/Paris,,OZU, +OZU:SA:CTP393,1,"Escoffier",43.721242,7.293455,,1,,Europe/Paris,,OZU, +OZU:SA:CTP395,1,"Estienne d'Orves",43.701487,7.253649,,1,,Europe/Paris,,OZU, +OZU:SA:CTP396,1,"Evelins",43.703544,7.244243,,1,,Europe/Paris,,OZU, +OZU:SA:CTP40,1,"Arcadia",43.683132,7.222865,,1,,Europe/Paris,,OZU, +OZU:SA:CTP4001,1,"11 Novembre",43.662163,7.149245,,1,,Europe/Paris,,OZU, +OZU:SA:CTP4002,1,"4 Chemins",43.699153,7.149938,,1,,Europe/Paris,,OZU, +OZU:SA:CTP4003,1,"Square du 8 mai",43.660089,7.148499,,1,,Europe/Paris,,OZU, +OZU:SA:CTP4005,1,"Alphonse Daudet",43.666013,7.175373,,1,,Europe/Paris,,OZU, +OZU:SA:CTP4009,1,"Bertéotti",43.656697,7.14618,,1,,Europe/Paris,,OZU, +OZU:SA:CTP4010,1,"Bonaparte",43.660034,7.149921,,1,,Europe/Paris,,OZU, +OZU:SA:CTP4011,1,"Camping Val Fleuri",43.687303,7.155795,,1,,Europe/Paris,,OZU, +OZU:SA:CTP4014,1,"Centre des Impôts",43.656269,7.155408,,1,,Europe/Paris,,OZU, +OZU:SA:CTP4016,1,"Les Bréguières",43.661389,7.158333,,1,,Europe/Paris,,OZU, +OZU:SA:CTP4017,1,"Collège les Bréguières",43.660912,7.158902,,1,,Europe/Paris,,OZU, +OZU:SA:CTP4018,1,"Chemin Renoir",43.667195,7.158849,,1,,Europe/Paris,,OZU, +OZU:SA:CTP4021,1,"Cimetière de la Buffe",43.679892,7.136932,,1,,Europe/Paris,,OZU, +OZU:SA:CTP4023,1,"Clinique Saint-Jean",43.660215,7.136925,,1,,Europe/Paris,,OZU, +OZU:SA:CTP4025,1,"Collège A.Malraux",43.672248,7.162375,,1,,Europe/Paris,,OZU, +OZU:SA:CTP4027,1,"Conservatoire",43.666214,7.153309,,1,,Europe/Paris,,OZU, +OZU:SA:CTP4029,1,"Ecole Daudet",43.659134,7.146273,,1,,Europe/Paris,,OZU, +OZU:SA:CTP403,1,"Faculté de Lettres",43.691935,7.236901,,1,,Europe/Paris,,OZU, +OZU:SA:CTP4031,1,"Fragonard",43.667934,7.159979,,1,,Europe/Paris,,OZU, +OZU:SA:CTP4033,1,"Gare du Cros",43.659397,7.167256,,1,,Europe/Paris,,OZU, +OZU:SA:CTP4039,1,"Grand Large",43.652505,7.154444,,1,,Europe/Paris,,OZU, +OZU:SA:CTP404,1,"Fanny",43.721618,7.251028,,1,,Europe/Paris,,OZU, +OZU:SA:CTP4041,1,"Gros Buaux",43.670521,7.164156,,1,,Europe/Paris,,OZU, +OZU:SA:CTP4044,1,"Guillaumet",43.687305,7.150649,,1,,Europe/Paris,,OZU, +OZU:SA:CTP4046,1,"Guynemer",43.692801,7.150406,,1,,Europe/Paris,,OZU, +OZU:SA:CTP4048,1,"Hautes Collettes",43.681516,7.152667,,1,,Europe/Paris,,OZU, +OZU:SA:CTP4050,1,"Hippodrome",43.655147,7.151667,,1,,Europe/Paris,,OZU, +OZU:SA:CTP4053,1,"Hôtel de Ville",43.662164,7.148613,,1,,Europe/Paris,,OZU, +OZU:SA:CTP4056,1,"Jacinthes",43.66222,7.172595,,1,,Europe/Paris,,OZU, +OZU:SA:CTP4057,1,"Jean Pons",43.655856,7.161826,,1,,Europe/Paris,,OZU, +OZU:SA:CTP4060,1,"La Bégude",43.660105,7.155596,,1,,Europe/Paris,,OZU, +OZU:SA:CTP4062,1,"La Foux",43.65358,7.151696,,1,,Europe/Paris,,OZU, +OZU:SA:CTP4063,1,"La Grange Rimade",43.66226,7.132458,,1,,Europe/Paris,,OZU, +OZU:SA:CTP4064,1,"La Pinède",43.657847,7.159597,,1,,Europe/Paris,,OZU, +OZU:SA:CTP4065,1,"La Pinède",43.654857,7.159098,,1,,Europe/Paris,,OZU, +OZU:SA:CTP4066,1,"La Roseraie",43.658899,7.137384,,1,,Europe/Paris,,OZU, +OZU:SA:CTP4070,1,"La Tonnelle",43.665998,7.142783,,1,,Europe/Paris,,OZU, +OZU:SA:CTP4072,1,"Le Béal",43.665279,7.15447,,1,,Europe/Paris,,OZU, +OZU:SA:CTP4076,1,"Le Park",43.676358,7.153807,,1,,Europe/Paris,,OZU, +OZU:SA:CTP4078,1,"Le Puits",43.658294,7.142084,,1,,Europe/Paris,,OZU, +OZU:SA:CTP4080,1,"Le Riou",43.653325,7.136977,,1,,Europe/Paris,,OZU, +OZU:SA:CTP4081,1,"Le Tiercé",43.651401,7.15207,,1,,Europe/Paris,,OZU, +OZU:SA:CTP4084,1,"L'Eglise",43.662052,7.1507,,1,,Europe/Paris,,OZU, +OZU:SA:CTP4085,1,"Les 4 Chemins / Saint-Paul-de-Vence",43.687092,7.130106,,1,,Europe/Paris,,OZU, +OZU:SA:CTP4087,1,"Les Bréguières",43.668793,7.161119,,1,,Europe/Paris,,OZU, +OZU:SA:CTP4089,1,"Les Chênes",43.664349,7.171287,,1,,Europe/Paris,,OZU, +OZU:SA:CTP4091,1,"Les Collettes",43.671753,7.156941,,1,,Europe/Paris,,OZU, +OZU:SA:CTP4093,1,"Les Galets",43.664506,7.145163,,1,,Europe/Paris,,OZU, +OZU:SA:CTP4095,1,"Les Mûriers",43.657132,7.150991,,1,,Europe/Paris,,OZU, +OZU:SA:CTP4098,1,"Les Oliviers",43.659211,7.164316,,1,,Europe/Paris,,OZU, +OZU:SA:CTP4101,1,"Les Tritons",43.659508,7.169003,,1,,Europe/Paris,,OZU, +OZU:SA:CTP4104,1,"Les Tuilières",43.66532,7.155193,,1,,Europe/Paris,,OZU, +OZU:SA:CTP4105,1,"Les Vespins",43.660487,7.175468,,1,,Europe/Paris,,OZU, +OZU:SA:CTP4108,1,"Les Violettes",43.659627,7.159311,,1,,Europe/Paris,,OZU, +OZU:SA:CTP4112,1,"Lycée Renoir",43.670493,7.150445,,1,,Europe/Paris,,OZU, +OZU:SA:CTP4114,1,"Mairie Annexe",43.669242,7.165629,,1,,Europe/Paris,,OZU, +OZU:SA:CTP4116,1,"Mas de Montalou",43.682766,7.17893,,1,,Europe/Paris,,OZU, +OZU:SA:CTP4117,1,"Mauberts",43.688479,7.176624,,1,,Europe/Paris,,OZU, +OZU:SA:CTP4118,1,"Mermoz",43.684937,7.151467,,1,,Europe/Paris,,OZU, +OZU:SA:CTP412,1,"Carras / Frémont",43.6785,7.22871,,1,,Europe/Paris,,OZU, +OZU:SA:CTP4120,1,"Mermoz Renoir",43.669074,7.151975,,1,,Europe/Paris,,OZU, +OZU:SA:CTP4122,1,"Micocouliers",43.661125,7.163844,,1,,Europe/Paris,,OZU, +OZU:SA:CTP4126,1,"Musée Renoir",43.668474,7.156763,,1,,Europe/Paris,,OZU, +OZU:SA:CTP4128,1,"Parc des Sports",43.671022,7.150016,,1,,Europe/Paris,,OZU, +OZU:SA:CTP4129,1,"Sainte-Anne",43.669328,7.145266,,1,,Europe/Paris,,OZU, +OZU:SA:CTP413,1,"Ferraudière",43.736018,7.263551,,1,,Europe/Paris,,OZU, +OZU:SA:CTP4130,1,"Petit Castel",43.666792,7.168423,,1,,Europe/Paris,,OZU, +OZU:SA:CTP4132,1,"Pichodou",43.695829,7.151171,,1,,Europe/Paris,,OZU, +OZU:SA:CTP4135,1,"Château Vieux-Bourg",43.667861,7.145657,,1,,Europe/Paris,,OZU, +OZU:SA:CTP4137,1,"Georges Pompidou",43.663074,7.154271,,1,,Europe/Paris,,OZU, +OZU:SA:CTP4140,1,"Saphir",43.680752,7.156159,,1,,Europe/Paris,,OZU, +OZU:SA:CTP4142,1,"Sécurité Sociale",43.665157,7.170843,,1,,Europe/Paris,,OZU, +OZU:SA:CTP4146,1,"Square Bourdet",43.664862,7.151111,,1,,Europe/Paris,,OZU, +OZU:SA:CTP415,1,"Fiorentina",43.677589,7.222353,,1,,Europe/Paris,,OZU, +OZU:SA:CTP4151,1,"Saint-Véran",43.65375,7.143834,,1,,Europe/Paris,,OZU, +OZU:SA:CTP4155,1,"Todos",43.690055,7.156568,,1,,Europe/Paris,,OZU, +OZU:SA:CTP4156,1,"Val en Sol",43.661903,7.167805,,1,,Europe/Paris,,OZU, +OZU:SA:CTP4158,1,"Val Fleuri",43.659925,7.172351,,1,,Europe/Paris,,OZU, +OZU:SA:CTP4162,1,"Vieux Cimetière",43.669941,7.144345,,1,,Europe/Paris,,OZU, +OZU:SA:CTP417,1,"Fleur de Lys",43.742851,7.251123,,1,,Europe/Paris,,OZU, +OZU:SA:CTP4176,1,"Domaine du Loup",43.653032,7.13961,,1,,Europe/Paris,,OZU, +OZU:SA:CTP4179,1,"Gare SNCF Cagnes-sur-Mer",43.657895,7.147806,,1,,Europe/Paris,,OZU, +OZU:SA:CTP4189,1,"Collet Hubac",43.664399,7.139461,,1,,Europe/Paris,,OZU, +OZU:SA:CTP419,1,"Floralies",43.691257,7.219429,,1,,Europe/Paris,,OZU, +OZU:SA:CTP4198,1,"Hubac",43.664645,7.141826,,1,,Europe/Paris,,OZU, +OZU:SA:CTP42,1,"Arénas",43.669504,7.2195,,1,,Europe/Paris,,OZU, +OZU:SA:CTP4206,1,"Le Brecq",43.671215,7.147169,,1,,Europe/Paris,,OZU, +OZU:SA:CTP4207,1,"Le Colombier",43.671667,7.138026,,1,,Europe/Paris,,OZU, +OZU:SA:CTP421,1,"Flores",43.714739,7.28165,,1,,Europe/Paris,,OZU, +OZU:SA:CTP4212,1,"Léouve",43.67914,7.132961,,1,,Europe/Paris,,OZU, +OZU:SA:CTP4216,1,"Les Narcisses",43.678014,7.150807,,1,,Europe/Paris,,OZU, +OZU:SA:CTP4220,1,"Les Tamaris",43.663229,7.1441,,1,,Europe/Paris,,OZU, +OZU:SA:CTP4229,1,"Puits Fleuri",43.677978,7.131968,,1,,Europe/Paris,,OZU, +OZU:SA:CTP4230,1,"Route de France",43.663091,7.135852,,1,,Europe/Paris,,OZU, +OZU:SA:CTP4231,1,"Sainte-Colombe",43.6755,7.13624,,1,,Europe/Paris,,OZU, +OZU:SA:CTP4233,1,"Val de Cagnes",43.698754,7.142084,,1,,Europe/Paris,,OZU, +OZU:SA:CTP4235,1,"Saint-Pierre",43.657879,7.163929,,1,,Europe/Paris,,OZU, +OZU:SA:CTP4238,1,"Bourdet",43.664339,7.149714,,1,,Europe/Paris,,OZU, +OZU:SA:CTP4239,1,"Jean Feraud",43.667028,7.147886,,1,,Europe/Paris,,OZU, +OZU:SA:CTP424,1,"Florval",43.684517,7.219522,,1,,Europe/Paris,,OZU, +OZU:SA:CTP4240,1,"Les Salles",43.669952,7.146419,,1,,Europe/Paris,,OZU, +OZU:SA:CTP4241,1,"Notre-Dame de la Protection",43.66824,7.146037,,1,,Europe/Paris,,OZU, +OZU:SA:CTP4242,1,"Le Château",43.666728,7.145588,,1,,Europe/Paris,,OZU, +OZU:SA:CTP4243,1,"Sous-Barri",43.665603,7.146659,,1,,Europe/Paris,,OZU, +OZU:SA:CTP4244,1,"Mairie",43.663646,7.149015,,1,,Europe/Paris,,OZU, +OZU:SA:CTP4247,1,"Vallon des Vaux",43.695646,7.158507,,1,,Europe/Paris,,OZU, +OZU:SA:CTP4253,1,"Les Presses",43.670744,7.131423,,1,,Europe/Paris,,OZU, +OZU:SA:CTP426,1,"Fontaine",43.735745,7.259441,,1,,Europe/Paris,,OZU, +OZU:SA:CTP4263,1,"Rostand",43.656328,7.141534,,1,,Europe/Paris,,OZU, +OZU:SA:CTP4266,1,"Impasse De L'Aire",43.664908,7.147666,,1,,Europe/Paris,,OZU, +OZU:SA:CTP4267,1,"Le Colombier / Verdun",43.667269,7.142423,,1,,Europe/Paris,,OZU, +OZU:SA:CTP4269,1,"POLYGONE RIVIERA",43.664865,7.127987,,1,,Europe/Paris,,OZU, +OZU:SA:CTP4270,1,"Drakkar 1",43.663439,7.130956,,1,,Europe/Paris,,OZU, +OZU:SA:CTP4271,1,"Drakkar 2",43.664101,7.129912,,1,,Europe/Paris,,OZU, +OZU:SA:CTP4272,1,"Le Gué",43.669267,7.125878,,1,,Europe/Paris,,OZU, +OZU:SA:CTP4273,1,"Le Gué",43.666915,7.127301,,1,,Europe/Paris,,OZU, +OZU:SA:CTP430,1,"Fort Thaon",43.699671,7.295118,,1,,Europe/Paris,,OZU, +OZU:SA:CTP432,1,"Fougères",43.709367,7.219256,,1,,Europe/Paris,,OZU, +OZU:SA:CTP442,1,"Franklin",43.699586,7.255433,,1,,Europe/Paris,,OZU, +OZU:SA:CTP444,1,"Frère Marc",43.720626,7.280336,,1,,Europe/Paris,,OZU, +OZU:SA:CTP445,1,"Gairautière",43.739915,7.256846,,1,,Europe/Paris,,OZU, +OZU:SA:CTP447,1,"Ariane / Général Saramito",43.740866,7.308022,,1,,Europe/Paris,,OZU, +OZU:SA:CTP450,1,"Gambetta / Bottéro",43.696695,7.255444,,1,,Europe/Paris,,OZU, +OZU:SA:CTP46,1,"Arènes / Musée Matisse",43.720116,7.274531,,1,,Europe/Paris,,OZU, +OZU:SA:CTP460,1,"Gare SNCF Saint-Augustin",43.67008,7.214947,,1,,Europe/Paris,,OZU, +OZU:SA:CTP466,1,"Garigliano",43.732301,7.286593,,1,,Europe/Paris,,OZU, +OZU:SA:CTP468,1,"Gendarmerie",43.710683,7.282702,,1,,Europe/Paris,,OZU, +OZU:SA:CTP469,1,"Georges Sand",43.723079,7.261699,,1,,Europe/Paris,,OZU, +OZU:SA:CTP471,1,"Géronima",43.692178,7.217361,,1,,Europe/Paris,,OZU, +OZU:SA:CTP472,1,"Giordan",43.684655,7.226831,,1,,Europe/Paris,,OZU, +OZU:SA:CTP477,1,"Grand Palais",43.708271,7.280481,,1,,Europe/Paris,,OZU, +OZU:SA:CTP479,1,"Maison de l'Environnement",43.712924,7.255059,,1,,Europe/Paris,,OZU, +OZU:SA:CTP48,1,"Thiers / Médecin",43.705095,7.264203,,1,,Europe/Paris,,OZU, +OZU:SA:CTP481,1,"Grande Corniche",43.707307,7.292127,,1,,Europe/Paris,,OZU, +OZU:SA:CTP483,1,"Gravier",43.724248,7.258558,,1,,Europe/Paris,,OZU, +OZU:SA:CTP484,1,"Grimaldi",43.697595,7.265156,,1,,Europe/Paris,,OZU, +OZU:SA:CTP485,1,"Grinda",43.674487,7.220262,,1,,Europe/Paris,,OZU, +OZU:SA:CTP487,1,"Gros Chênes",43.690663,7.201193,,1,,Europe/Paris,,OZU, +OZU:SA:CTP489,1,"Le Gros Pin",43.727915,7.217531,,1,,Europe/Paris,,OZU, +OZU:SA:CTP493,1,"Grosso CUM",43.69453,7.251573,,1,,Europe/Paris,,OZU, +OZU:SA:CTP495,1,"Guiglia",43.699566,7.257877,,1,,Europe/Paris,,OZU, +OZU:SA:CTP496,1,"Gustave V",43.695042,7.265626,,1,,Europe/Paris,,OZU, +OZU:SA:CTP498,1,"Gustavin / Carnot",43.6967,7.290276,,1,,Europe/Paris,,OZU, +OZU:SA:CTP499,1,"Gustavin / Parc Vigier",43.694705,7.290576,,1,,Europe/Paris,,OZU, +OZU:SA:CTP5,1,"Abbaye de Roseland / Napoléon III",43.688791,7.231356,,1,,Europe/Paris,,OZU, +OZU:SA:CTP50000,1,"RUE 10 / Avenue 1",43.789978,7.209915,,1,,Europe/Paris,,OZU, +OZU:SA:CTP50001,1,"RUE 11 / Avenue 1",43.792762,7.206701,,1,,Europe/Paris,,OZU, +OZU:SA:CTP50002,1,"RUE 13 / Avenue 1",43.795393,7.203654,,1,,Europe/Paris,,OZU, +OZU:SA:CTP50003,1,"RUE 14bis / Avenue 1",43.798787,7.199876,,1,,Europe/Paris,,OZU, +OZU:SA:CTP50004,1,"RUE 14 / Avenue 1",43.800408,7.198084,,1,,Europe/Paris,,OZU, +OZU:SA:CTP50005,1,"RUE 15 / Avenue 1",43.802239,7.196005,,1,,Europe/Paris,,OZU, +OZU:SA:CTP50006,1,"RUE 17bis / Avenue 1",43.805136,7.192664,,1,,Europe/Paris,,OZU, +OZU:SA:CTP50007,1,"RUE 17 / Avenue 1",43.807111,7.190388,,1,,Europe/Paris,,OZU, +OZU:SA:CTP50008,1,"RUE 18bis / Avenue 1",43.809115,7.188075,,1,,Europe/Paris,,OZU, +OZU:SA:CTP50009,1,"RUE 18 / Avenue 1",43.810528,7.186691,,1,,Europe/Paris,,OZU, +OZU:SA:CTP5001,1,"A.Tzanck",43.661559,7.186542,,1,,Europe/Paris,,OZU, +OZU:SA:CTP50012,1,"RUE 1 / Avenue 1",43.77053,7.207179,,1,,Europe/Paris,,OZU, +OZU:SA:CTP50017,1,"RUE 3 / Avenue 1",43.773638,7.210372,,1,,Europe/Paris,,OZU, +OZU:SA:CTP50022,1,"RUE 5 / Avenue 1",43.776908,7.212756,,1,,Europe/Paris,,OZU, +OZU:SA:CTP50023,1,"RUE 7 / Avenue 1",43.780382,7.213823,,1,,Europe/Paris,,OZU, +OZU:SA:CTP50024,1,"RUE 9 / Avenue 1",43.787774,7.211861,,1,,Europe/Paris,,OZU, +OZU:SA:CTP50044,1,"Aéroport / Promenade",43.666224,7.211367,,1,,Europe/Paris,,OZU, +OZU:SA:CTP50048,1,"Aéroport T.1",43.664962,7.210391,,1,,Europe/Paris,,OZU, +OZU:SA:CTP5006,1,"Les Pugets / Aicard",43.686461,7.180671,,1,,Europe/Paris,,OZU, +OZU:SA:CTP50079,1,"Les Amandiers",43.76989,7.195569,,1,,Europe/Paris,,OZU, +OZU:SA:CTP5010,1,"Baronne Digue",43.699084,7.181534,,1,,Europe/Paris,,OZU, +OZU:SA:CTP5012,1,"Basse Corniche des Pugets",43.68864,7.179467,,1,,Europe/Paris,,OZU, +OZU:SA:CTP50153,1,"L'Aspre",43.774189,7.19088,,1,,Europe/Paris,,OZU, +OZU:SA:CTP5017,1,"Belle Vue",43.670232,7.178896,,1,,Europe/Paris,,OZU, +OZU:SA:CTP50177,1,"Auron",44.226792,6.931713,,1,,Europe/Paris,,OZU, +OZU:SA:CTP50193,1,"Bancairon",43.998192,7.137278,,1,,Europe/Paris,,OZU, +OZU:SA:CTP502,1,"Halte de Gairaut",43.733926,7.261817,,1,,Europe/Paris,,OZU, +OZU:SA:CTP5020,1,"Centre Commercial",43.659205,7.195262,,1,,Europe/Paris,,OZU, +OZU:SA:CTP50233,1,"La Bastide",43.765421,7.187974,,1,,Europe/Paris,,OZU, +OZU:SA:CTP5025,1,"Cimetière Saint-Marc",43.683048,7.186499,,1,,Europe/Paris,,OZU, +OZU:SA:CTP5028,1,"Collège Saint-Exupéry",43.665748,7.185312,,1,,Europe/Paris,,OZU, +OZU:SA:CTP50288,1,"La Beilouno",43.776017,7.190689,,1,,Europe/Paris,,OZU, +OZU:SA:CTP50298,1,"Belvédère Village",44.015268,7.319793,,1,,Europe/Paris,,OZU, +OZU:SA:CTP503,1,"Hameaux de la Costière",43.722197,7.227087,,1,,Europe/Paris,,OZU, +OZU:SA:CTP5030,1,"Corniche Bellevue",43.670806,7.183944,,1,,Europe/Paris,,OZU, +OZU:SA:CTP50302,1,"Bergaïs",44.028318,7.309637,,1,,Europe/Paris,,OZU, +OZU:SA:CTP50309,1,"Berthemont Les Bains",44.047697,7.309224,,1,,Europe/Paris,,OZU, +OZU:SA:CTP5033,1,"Corniche d'Agrimont",43.677704,7.182545,,1,,Europe/Paris,,OZU, +OZU:SA:CTP50330,1,"La Blache",44.196324,7.006359,,1,,Europe/Paris,,OZU, +OZU:SA:CTP5034,1,"Corniche des Pugets 1.",43.692776,7.178626,,1,,Europe/Paris,,OZU, +OZU:SA:CTP5036,1,"Corniche des Pugets 2.",43.702383,7.17464,,1,,Europe/Paris,,OZU, +OZU:SA:CTP5038,1,"Corniche des Pugets 3.",43.703948,7.174053,,1,,Europe/Paris,,OZU, +OZU:SA:CTP50382,1,"Bois de Boulogne",43.67291,7.201889,,1,,Europe/Paris,,OZU, +OZU:SA:CTP50384,1,"La Bollène Gare",43.994619,7.318664,,1,,Europe/Paris,,OZU, +OZU:SA:CTP50385,1,"La Bollène Gare",43.991195,7.320253,,1,,Europe/Paris,,OZU, +OZU:SA:CTP50386,1,"La Bolinette",44.04172,7.128782,,1,,Europe/Paris,,OZU, +OZU:SA:CTP50388,1,"La Bolline",44.075171,7.165963,,1,,Europe/Paris,,OZU, +OZU:SA:CTP50390,1,"La Bollène Village",43.989268,7.331022,,1,,Europe/Paris,,OZU, +OZU:SA:CTP50391,1,"La Bolline Lycée",44.070057,7.167949,,1,,Europe/Paris,,OZU, +OZU:SA:CTP5040,1,"Corniche des Pugets 4.",43.715089,7.17264,,1,,Europe/Paris,,OZU, +OZU:SA:CTP50428,1,"Le Bourguet",44.225179,6.96181,,1,,Europe/Paris,,OZU, +OZU:SA:CTP50447,1,"Le Broc",43.808984,7.16863,,1,,Europe/Paris,,OZU, +OZU:SA:CTP5047,1,"Ecole Montaleigne",43.693467,7.175459,,1,,Europe/Paris,,OZU, +OZU:SA:CTP5049,1,"Fahnestock",43.681173,7.179502,,1,,Europe/Paris,,OZU, +OZU:SA:CTP505,1,"Hameaux de Saint-Pancrace",43.736996,7.232843,,1,,Europe/Paris,,OZU, +OZU:SA:CTP5050,1,"Fahnestock Forêt",43.68525,7.17733,,1,,Europe/Paris,,OZU, +OZU:SA:CTP5052,1,"Forêt des Pugets",43.686859,7.179824,,1,,Europe/Paris,,OZU, +OZU:SA:CTP5059,1,"Giono",43.687374,7.181407,,1,,Europe/Paris,,OZU, +OZU:SA:CTP506,1,"Haute Bise",43.70839,7.238068,,1,,Europe/Paris,,OZU, +OZU:SA:CTP5061,1,"Gros Buaux",43.67654,7.177384,,1,,Europe/Paris,,OZU, +OZU:SA:CTP5063,1,"Haute Corniche des Pugets",43.707957,7.173835,,1,,Europe/Paris,,OZU, +OZU:SA:CTP5065,1,"Hauts des Tuillières",43.673141,7.172652,,1,,Europe/Paris,,OZU, +OZU:SA:CTP5068,1,"Jardins des Tuillières",43.674415,7.173953,,1,,Europe/Paris,,OZU, +OZU:SA:CTP5069,1,"Jean Médecin",43.674155,7.189625,,1,,Europe/Paris,,OZU, +OZU:SA:CTP50694,1,"Le Castelet",43.770645,7.200218,,1,,Europe/Paris,,OZU, +OZU:SA:CTP50704,1,"Cimetière de Carros",43.776832,7.194806,,1,,Europe/Paris,,OZU, +OZU:SA:CTP5072,1,"La Belle Etoile",43.659993,7.188122,,1,,Europe/Paris,,OZU, +OZU:SA:CTP5074,1,"La Croisée",43.704113,7.171398,,1,,Europe/Paris,,OZU, +OZU:SA:CTP5076,1,"La Passerelle",43.661702,7.194806,,1,,Europe/Paris,,OZU, +OZU:SA:CTP50777,1,"Lei Feirrièro",43.790613,7.203356,,1,,Europe/Paris,,OZU, +OZU:SA:CTP50786,1,"Lou Claus",43.789867,7.199363,,1,,Europe/Paris,,OZU, +OZU:SA:CTP50796,1,"La Manda / Z.I.",43.76706,7.203429,,1,,Europe/Paris,,OZU, +OZU:SA:CTP508,1,"Hauts de Chambrun",43.727608,7.261494,,1,,Europe/Paris,,OZU, +OZU:SA:CTP5082,1,"Le Castillon",43.687108,7.182526,,1,,Europe/Paris,,OZU, +OZU:SA:CTP5083,1,"Le Château",43.691341,7.176048,,1,,Europe/Paris,,OZU, +OZU:SA:CTP5085,1,"Le Collet Rouge",43.697818,7.174202,,1,,Europe/Paris,,OZU, +OZU:SA:CTP5087,1,"Le Gros Chêne",43.660365,7.182423,,1,,Europe/Paris,,OZU, +OZU:SA:CTP5089,1,"Les Bastides",43.67536,7.183425,,1,,Europe/Paris,,OZU, +OZU:SA:CTP509,1,"Henri Sappia",43.733086,7.249982,,1,,Europe/Paris,,OZU, +OZU:SA:CTP5090,1,"Les Gallinières",43.663612,7.18492,,1,,Europe/Paris,,OZU, +OZU:SA:CTP50907,1,"Pagnol",43.778595,7.187211,,1,,Europe/Paris,,OZU, +OZU:SA:CTP5091,1,"Les Gallinières",43.66171,7.182972,,1,,Europe/Paris,,OZU, +OZU:SA:CTP50922,1,"Village",43.792381,7.18526,,1,,Europe/Paris,,OZU, +OZU:SA:CTP5093,1,"Rond Point Ravet",43.667952,7.183329,,1,,Europe/Paris,,OZU, +OZU:SA:CTP5094,1,"Les Plantiers",43.669193,7.18037,,1,,Europe/Paris,,OZU, +OZU:SA:CTP5097,1,"Les Provençales",43.678888,7.182249,,1,,Europe/Paris,,OZU, +OZU:SA:CTP50971,1,"La Teréhentine",43.781505,7.203869,,1,,Europe/Paris,,OZU, +OZU:SA:CTP5098,1,"Les Roses / Saint-Laurent",43.668017,7.184116,,1,,Europe/Paris,,OZU, +OZU:SA:CTP5099,1,"Les Tines",43.706976,7.171405,,1,,Europe/Paris,,OZU, +OZU:SA:CTP50999,1,"Z.A. La Manda",43.764074,7.199346,,1,,Europe/Paris,,OZU, +OZU:SA:CTP5102,1,"Li Maioun",43.680379,7.180551,,1,,Europe/Paris,,OZU, +OZU:SA:CTP5103,1,"Libération",43.666423,7.187119,,1,,Europe/Paris,,OZU, +OZU:SA:CTP5105,1,"Magnolias",43.663255,7.188463,,1,,Europe/Paris,,OZU, +OZU:SA:CTP511,1,"Hôpital Anglais",43.686851,7.301667,,1,,Europe/Paris,,OZU, +OZU:SA:CTP5111,1,"Moyenne Corniche des Pugets",43.696398,7.177781,,1,,Europe/Paris,,OZU, +OZU:SA:CTP51110,1,"Les Chataigniers",44.045321,7.277318,,1,,Europe/Paris,,OZU, +OZU:SA:CTP51119,1,"Le Chaudan",43.870908,7.197952,,1,,Europe/Paris,,OZU, +OZU:SA:CTP5113,1,"L'Epingle",43.71295,7.170323,,1,,Europe/Paris,,OZU, +OZU:SA:CTP5114,1,"Notre Dame",43.677854,7.188452,,1,,Europe/Paris,,OZU, +OZU:SA:CTP5117,1,"Ossola Tassigny",43.662753,7.190652,,1,,Europe/Paris,,OZU, +OZU:SA:CTP51189,1,"Chemin de Provence",43.754526,7.178657,,1,,Europe/Paris,,OZU, +OZU:SA:CTP51197,1,"Le Cialancier",44.208918,6.978217,,1,,Europe/Paris,,OZU, +OZU:SA:CTP5122,1,"Paul Marie",43.672725,7.183957,,1,,Europe/Paris,,OZU, +OZU:SA:CTP51264,1,"LE CLOS MARTEL",43.827865,7.173161,,1,,Europe/Paris,,OZU, +OZU:SA:CTP5127,1,"Plateaux Fleuris",43.674947,7.178179,,1,,Europe/Paris,,OZU, +OZU:SA:CTP51296,1,"La Manda",43.764223,7.205634,,1,,Europe/Paris,,OZU, +OZU:SA:CTP5130,1,"Pont des Pugets",43.682689,7.186084,,1,,Europe/Paris,,OZU, +OZU:SA:CTP51303,1,"Langevin",43.768906,7.196417,,1,,Europe/Paris,,OZU, +OZU:SA:CTP5132,1,"Résidence des Cigales",43.671951,7.169848,,1,,Europe/Paris,,OZU, +OZU:SA:CTP51321,1,"La Colmiane",44.070926,7.22195,,1,,Europe/Paris,,OZU, +OZU:SA:CTP5136,1,"RN7 Les Mouettes",43.660012,7.183286,,1,,Europe/Paris,,OZU, +OZU:SA:CTP51375,1,"Corniglion Molinier",44.012397,7.308319,,1,,Europe/Paris,,OZU, +OZU:SA:CTP5138,1,"RN7 Vauban",43.660223,7.180377,,1,,Europe/Paris,,OZU, +OZU:SA:CTP51401,1,"La Courbaisse",43.925145,7.185947,,1,,Europe/Paris,,OZU, +OZU:SA:CTP5143,1,"Route de Saint-Jeannet",43.711496,7.170411,,1,,Europe/Paris,,OZU, +OZU:SA:CTP5145,1,"Royal",43.66953,7.179294,,1,,Europe/Paris,,OZU, +OZU:SA:CTP5147,1,"Route de la Baronne",43.694386,7.183083,,1,,Europe/Paris,,OZU, +OZU:SA:CTP5149,1,"Saint-Antoine",43.675983,7.188417,,1,,Europe/Paris,,OZU, +OZU:SA:CTP51490,1,"Carras / Promenade",43.679774,7.23078,,1,,Europe/Paris,,OZU, +OZU:SA:CTP51492,1,"Ferber / Promenade",43.677631,7.228995,,1,,Europe/Paris,,OZU, +OZU:SA:CTP51504,1,"Le Cros",44.055592,7.264567,,1,,Europe/Paris,,OZU, +OZU:SA:CTP51507,1,"Cros d'Utelle",43.879767,7.233518,,1,,Europe/Paris,,OZU, +OZU:SA:CTP51515,1,"Castagniers",43.789962,7.214875,,1,,Europe/Paris,,OZU, +OZU:SA:CTP5153,1,"Sauvaigo Vespins",43.661437,7.179016,,1,,Europe/Paris,,OZU, +OZU:SA:CTP51531,1,"LES CASTELLAS",43.821605,7.173067,,1,,Europe/Paris,,OZU, +OZU:SA:CTP5155,1,"Sidonie",43.690159,7.183543,,1,,Europe/Paris,,OZU, +OZU:SA:CTP5158,1,"Square Bénes",43.671296,7.190102,,1,,Europe/Paris,,OZU, +OZU:SA:CTP5161,1,"Saint-Laurent-Ragadan",43.66649,7.179396,,1,,Europe/Paris,,OZU, +OZU:SA:CTP5163,1,"Saint-Marc",43.684356,7.18362,,1,,Europe/Paris,,OZU, +OZU:SA:CTP51653,1,"Douans",44.230623,6.955776,,1,,Europe/Paris,,OZU, +OZU:SA:CTP5169,1,"Stade des Iscles",43.703078,7.18283,,1,,Europe/Paris,,OZU, +OZU:SA:CTP5170,1,"Sainte-Geneviève",43.695685,7.174778,,1,,Europe/Paris,,OZU, +OZU:SA:CTP51735,1,"L'Emigra",43.787727,7.202283,,1,,Europe/Paris,,OZU, +OZU:SA:CTP51739,1,"Engéri",43.762723,7.19292,,1,,Europe/Paris,,OZU, +OZU:SA:CTP5175,1,"La Tour Carrée",43.701034,7.172775,,1,,Europe/Paris,,OZU, +OZU:SA:CTP5179,1,"Val Fleuri",43.671227,7.165097,,1,,Europe/Paris,,OZU, +OZU:SA:CTP518,1,"Impératrice Eugénie",43.691718,7.234126,,1,,Europe/Paris,,OZU, +OZU:SA:CTP51839,1,"Fabron Musée d'Art Naïf",43.686899,7.238528,,1,,Europe/Paris,,OZU, +OZU:SA:CTP5185,1,"Villa Sirius",43.672127,7.178597,,1,,Europe/Paris,,OZU, +OZU:SA:CTP51899,1,"Font Cailloure",43.749211,7.178909,,1,,Europe/Paris,,OZU, +OZU:SA:CTP5192,1,"Chapelle",43.668972,7.187695,,1,,Europe/Paris,,OZU, +OZU:SA:CTP5193,1,"La Calada",43.714026,7.171644,,1,,Europe/Paris,,OZU, +OZU:SA:CTP51938,1,"Collège Jean Franco",44.2574,6.923746,,1,,Europe/Paris,,OZU, +OZU:SA:CTP5194,1,"Les Cigales",43.668755,7.18532,,1,,Europe/Paris,,OZU, +OZU:SA:CTP51950,1,"Les Fauvettes",43.756108,7.170121,,1,,Europe/Paris,,OZU, +OZU:SA:CTP51956,1,"Les Lentisques",43.755354,7.165503,,1,,Europe/Paris,,OZU, +OZU:SA:CTP51968,1,"Gambetta / Promenade",43.693701,7.255534,,1,,Europe/Paris,,OZU, +OZU:SA:CTP520,1,"Institut des Hautes Synthèses",43.701156,7.198438,,1,,Europe/Paris,,OZU, +OZU:SA:CTP52022,1,"Gattières",43.759624,7.175632,,1,,Europe/Paris,,OZU, +OZU:SA:CTP52047,1,"La Baronne",43.720653,7.17911,,1,,Europe/Paris,,OZU, +OZU:SA:CTP52051,1,"La Baronne Place",43.719405,7.179227,,1,,Europe/Paris,,OZU, +OZU:SA:CTP52058,1,"Maoupas",43.724006,7.177632,,1,,Europe/Paris,,OZU, +OZU:SA:CTP52064,1,"Les Plantiers",43.729667,7.177319,,1,,Europe/Paris,,OZU, +OZU:SA:CTP52070,1,"Plan Saint-Jeannet",43.740683,7.177473,,1,,Europe/Paris,,OZU, +OZU:SA:CTP521,1,"Institution Sourds et Muets",43.701626,7.246238,,1,,Europe/Paris,,OZU, +OZU:SA:CTP5221,1,"Gare RN7",43.661639,7.193001,,1,,Europe/Paris,,OZU, +OZU:SA:CTP52300,1,"Gendarmerie",44.078062,7.249959,,1,,Europe/Paris,,OZU, +OZU:SA:CTP52344,1,"Giratoire De La Manda",43.76637,7.200362,,1,,Europe/Paris,,OZU, +OZU:SA:CTP52347,1,"Gordolon",43.999332,7.313903,,1,,Europe/Paris,,OZU, +OZU:SA:CTP52373,1,"Grosso CUM / Promenade",43.692768,7.252078,,1,,Europe/Paris,,OZU, +OZU:SA:CTP52390,1,"Gare SNCF",43.704124,7.262009,,1,,Europe/Paris,,OZU, +OZU:SA:CTP52413,1,"La Halte",43.759635,7.183239,,1,,Europe/Paris,,OZU, +OZU:SA:CTP52463,1,"Les Iscles Carros",43.83534,7.173404,,1,,Europe/Paris,,OZU, +OZU:SA:CTP52466,1,"2000 Hâmeau",44.188785,7.159997,,1,,Europe/Paris,,OZU, +OZU:SA:CTP52467,1,"Village",44.185993,7.053258,,1,,Europe/Paris,,OZU, +OZU:SA:CTP52469,1,"2000 Station",44.186878,7.157887,,1,,Europe/Paris,,OZU, +OZU:SA:CTP525,1,"J.H.Fabre",43.732322,7.250911,,1,,Europe/Paris,,OZU, +OZU:SA:CTP52515,1,"Agriculteurs",43.702956,7.178512,,1,,Europe/Paris,,OZU, +OZU:SA:CTP52521,1,"Arts Graphiques",43.689431,7.185925,,1,,Europe/Paris,,OZU, +OZU:SA:CTP52541,1,"Carrossiers",43.697472,7.184351,,1,,Europe/Paris,,OZU, +OZU:SA:CTP52568,1,"Coubertin",43.671288,7.192682,,1,,Europe/Paris,,OZU, +OZU:SA:CTP52579,1,"Chemin de la Digue",43.699642,7.182947,,1,,Europe/Paris,,OZU, +OZU:SA:CTP52590,1,"France d'Outre Mer",43.659158,7.191276,,1,,Europe/Paris,,OZU, +OZU:SA:CTP52599,1,"Gare",43.663061,7.193804,,1,,Europe/Paris,,OZU, +OZU:SA:CTP52616,1,"Les Iscles",43.709768,7.177837,,1,,Europe/Paris,,OZU, +OZU:SA:CTP52618,1,"Parc Layet",43.675824,7.190748,,1,,Europe/Paris,,OZU, +OZU:SA:CTP52635,1,"Morgan",43.669017,7.19152,,1,,Europe/Paris,,OZU, +OZU:SA:CTP52643,1,"RN7 Les Paluds",43.660656,7.190399,,1,,Europe/Paris,,OZU, +OZU:SA:CTP52661,1,"Collège Pagnol",43.68173,7.189166,,1,,Europe/Paris,,OZU, +OZU:SA:CTP52664,1,"Pasteur",43.665025,7.193376,,1,,Europe/Paris,,OZU, +OZU:SA:CTP52666,1,"Pécheurs",43.684409,7.188067,,1,,Europe/Paris,,OZU, +OZU:SA:CTP52676,1,"Pompage",43.694536,7.184759,,1,,Europe/Paris,,OZU, +OZU:SA:CTP52682,1,"La Provençale",43.667118,7.192686,,1,,Europe/Paris,,OZU, +OZU:SA:CTP527,1,"Jean Barès",43.723507,7.250086,,1,,Europe/Paris,,OZU, +OZU:SA:CTP52707,1,"Rives D'Or",43.677946,7.190805,,1,,Europe/Paris,,OZU, +OZU:SA:CTP52732,1,"Saint-Joseph",43.680623,7.189755,,1,,Europe/Paris,,OZU, +OZU:SA:CTP52736,1,"Saint-Pétronille",43.715124,7.177287,,1,,Europe/Paris,,OZU, +OZU:SA:CTP52742,1,"Stade",43.67338,7.191222,,1,,Europe/Paris,,OZU, +OZU:SA:CTP52751,1,"La Tour",43.705152,7.177743,,1,,Europe/Paris,,OZU, +OZU:SA:CTP52768,1,"La Vallière / Promenade",43.670789,7.223556,,1,,Europe/Paris,,OZU, +OZU:SA:CTP52770,1,"Val Maïssa",43.712186,7.177943,,1,,Europe/Paris,,OZU, +OZU:SA:CTP52829,1,"LE PUY",43.80892,7.17682,,1,,Europe/Paris,,OZU, +OZU:SA:CTP52966,1,"Plan du Var",43.858335,7.197158,,1,,Europe/Paris,,OZU, +OZU:SA:CTP53,1,"Auberge du Tortéo",43.73914,7.261623,,1,,Europe/Paris,,OZU, +OZU:SA:CTP530,1,"Jardin",43.705152,7.247312,,1,,Europe/Paris,,OZU, +OZU:SA:CTP53014,1,"Gare",44.036097,7.12884,,1,,Europe/Paris,,OZU, +OZU:SA:CTP53016,1,"Mairie de Gattières",43.759546,7.17577,,1,,Europe/Paris,,OZU, +OZU:SA:CTP53043,1,"Maison Pour Tous",43.772436,7.192406,,1,,Europe/Paris,,OZU, +OZU:SA:CTP531,1,"Jardin Botanique",43.684716,7.209512,,1,,Europe/Paris,,OZU, +OZU:SA:CTP53123,1,"La Mediathèque",43.773702,7.191899,,1,,Europe/Paris,,OZU, +OZU:SA:CTP53124,1,"Juliette Greco",43.774173,7.192441,,1,,Europe/Paris,,OZU, +OZU:SA:CTP53125,1,"Médiathèque",43.773873,7.192701,,1,,Europe/Paris,,OZU, +OZU:SA:CTP53286,1,"Aéroport T.2",43.6607,7.205449,,1,,Europe/Paris,,OZU, +OZU:SA:CTP533,1,"Jardins Fleuris",43.688569,7.222326,,1,,Europe/Paris,,OZU, +OZU:SA:CTP53356,1,"Ferber / Promenade",43.675302,7.227914,,1,,Europe/Paris,,OZU, +OZU:SA:CTP53359,1,"Robini",43.681698,7.198706,,1,,Europe/Paris,,OZU, +OZU:SA:CTP534,1,"Jardins Corniche Fleurie",43.690431,7.206178,,1,,Europe/Paris,,OZU, +OZU:SA:CTP53583,1,"La Pierre de Fresques",43.749324,7.17033,,1,,Europe/Paris,,OZU, +OZU:SA:CTP53600,1,"LA PINEE",43.824033,7.176172,,1,,Europe/Paris,,OZU, +OZU:SA:CTP53628,1,"Plans de Gattières",43.752937,7.182387,,1,,Europe/Paris,,OZU, +OZU:SA:CTP53645,1,"Place des Plans",43.774997,7.199772,,1,,Europe/Paris,,OZU, +OZU:SA:CTP53669,1,"Pont de la Manda",43.766058,7.201682,,1,,Europe/Paris,,OZU, +OZU:SA:CTP53681,1,"Pont de Clans",43.976614,7.140055,,1,,Europe/Paris,,OZU, +OZU:SA:CTP53703,1,"Pont du Martinet",43.981512,7.317075,,1,,Europe/Paris,,OZU, +OZU:SA:CTP53705,1,"LA POMETE",43.816319,7.173483,,1,,Europe/Paris,,OZU, +OZU:SA:CTP53738,1,"Pont de Paule",44.120204,7.091962,,1,,Europe/Paris,,OZU, +OZU:SA:CTP53791,1,"Le Pré Du Loup",44.21957,6.967501,,1,,Europe/Paris,,OZU, +OZU:SA:CTP538,1,"Jardins Hespérides",43.707633,7.247005,,1,,Europe/Paris,,OZU, +OZU:SA:CTP53825,1,"Le Puey",44.066189,7.257329,,1,,Europe/Paris,,OZU, +OZU:SA:CTP53842,1,"La Querello",43.783651,7.202603,,1,,Europe/Paris,,OZU, +OZU:SA:CTP539,1,"Jardins Sainte-Marguerite",43.688974,7.201946,,1,,Europe/Paris,,OZU, +OZU:SA:CTP53944,1,"Gare",44.05467,7.120865,,1,,Europe/Paris,,OZU, +OZU:SA:CTP53994,1,"Chalet Forneri",44.031039,7.306673,,1,,Europe/Paris,,OZU, +OZU:SA:CTP53996,1,"La Roche",44.069611,7.175759,,1,,Europe/Paris,,OZU, +OZU:SA:CTP54000,1,"Le Cougne",44.039593,7.290565,,1,,Europe/Paris,,OZU, +OZU:SA:CTP54015,1,"Pont De Cervagne",44.014079,7.306996,,1,,Europe/Paris,,OZU, +OZU:SA:CTP54020,1,"Roquebillière Vieux Village",44.016225,7.312876,,1,,Europe/Paris,,OZU, +OZU:SA:CTP54030,1,"La Semeuse",44.04398,7.29828,,1,,Europe/Paris,,OZU, +OZU:SA:CTP54046,1,"Roussillon",43.961957,7.153752,,1,,Europe/Paris,,OZU, +OZU:SA:CTP54061,1,"Rue 18bis",43.810417,7.182806,,1,,Europe/Paris,,OZU, +OZU:SA:CTP54088,1,"Pont Charles Albert",43.838186,7.19113,,1,,Europe/Paris,,OZU, +OZU:SA:CTP54089,1,"Pont Charles Albert",43.837946,7.194892,,1,,Europe/Paris,,OZU, +OZU:SA:CTP541,1,"Jean Lorrain",43.687195,7.295251,,1,,Europe/Paris,,OZU, +OZU:SA:CTP54153,1,"Santoline",43.675313,7.201722,,1,,Europe/Paris,,OZU, +OZU:SA:CTP54183,1,"Saint Sébastien",43.801321,7.181906,,1,,Europe/Paris,,OZU, +OZU:SA:CTP54195,1,"Chemin des Sausses",43.757197,7.175166,,1,,Europe/Paris,,OZU, +OZU:SA:CTP54227,1,"Les Sèlves",43.777983,7.20207,,1,,Europe/Paris,,OZU, +OZU:SA:CTP54266,1,"Bagneissore",43.74689,7.14995,,1,,Europe/Paris,,OZU, +OZU:SA:CTP54270,1,"Le Brusquet",43.744543,7.146832,,1,,Europe/Paris,,OZU, +OZU:SA:CTP54272,1,"La Cabergue",43.748441,7.154421,,1,,Europe/Paris,,OZU, +OZU:SA:CTP54280,1,"Fongéri",43.743974,7.176784,,1,,Europe/Paris,,OZU, +OZU:SA:CTP54282,1,"La Fontonne",43.746014,7.147578,,1,,Europe/Paris,,OZU, +OZU:SA:CTP54293,1,"Saint Jean La Rivière",43.9194,7.265557,,1,,Europe/Paris,,OZU, +OZU:SA:CTP54294,1,"Saint-Estève",43.74648,7.17855,,1,,Europe/Paris,,OZU, +OZU:SA:CTP54303,1,"Village",43.821958,7.191896,,1,,Europe/Paris,,OZU, +OZU:SA:CTP54309,1,"Saint Martin Vésubie Gare",44.070517,7.254049,,1,,Europe/Paris,,OZU, +OZU:SA:CTP544,1,"Jeanne Jugan",43.711399,7.279834,,1,,Europe/Paris,,OZU, +OZU:SA:CTP54413,1,"Saint Dalmas",44.066397,7.201794,,1,,Europe/Paris,,OZU, +OZU:SA:CTP54415,1,"Saint Etienne de Tinée",44.255372,6.926139,,1,,Europe/Paris,,OZU, +OZU:SA:CTP54422,1,"Saint-Joseph",44.064359,7.257374,,1,,Europe/Paris,,OZU, +OZU:SA:CTP54430,1,"Saint Maur",44.242457,6.937455,,1,,Europe/Paris,,OZU, +OZU:SA:CTP54438,1,"Saint Michel",43.753908,7.170533,,1,,Europe/Paris,,OZU, +OZU:SA:CTP54444,1,"Saint Paul",43.772628,7.194771,,1,,Europe/Paris,,OZU, +OZU:SA:CTP54462,1,"Stade Tennis",43.766915,7.200243,,1,,Europe/Paris,,OZU, +OZU:SA:CTP54470,1,"Super Gattières",43.753907,7.161665,,1,,Europe/Paris,,OZU, +OZU:SA:CTP54476,1,"Le Suquet",43.941092,7.283548,,1,,Europe/Paris,,OZU, +OZU:SA:CTP545,1,"Jeux de Boules",43.724256,7.239309,,1,,Europe/Paris,,OZU, +OZU:SA:CTP54606,1,"Le Touron",44.060656,7.259375,,1,,Europe/Paris,,OZU, +OZU:SA:CTP54610,1,"sur Tinée",43.93864,7.164667,,1,,Europe/Paris,,OZU, +OZU:SA:CTP547,1,"Joseph Raybaud",43.727639,7.282362,,1,,Europe/Paris,,OZU, +OZU:SA:CTP54759,1,"LES VALLIERES",43.825004,7.173383,,1,,Europe/Paris,,OZU, +OZU:SA:CTP54872,1,"Village",44.073329,7.251619,,1,,Europe/Paris,,OZU, +OZU:SA:CTP54879,1,"RUE 8 / Avenue 1",43.782632,7.213858,,1,,Europe/Paris,,OZU, +OZU:SA:CTP549,1,"Jules Romains",43.737513,7.253035,,1,,Europe/Paris,,OZU, +OZU:SA:CTP54977,1,"Anthony Mars",43.722171,7.114744,,1,,Europe/Paris,,OZU, +OZU:SA:CTP54996,1,"Colonel Meyère",43.721019,7.115355,,1,,Europe/Paris,,OZU, +OZU:SA:CTP55002,1,"Cadrans Solaires",43.71826,7.118886,,1,,Europe/Paris,,OZU, +OZU:SA:CTP55017,1,"Grand Jardin",43.722642,7.112039,,1,,Europe/Paris,,OZU, +OZU:SA:CTP55018,1,"Hôtel De Ville",43.722171,7.11313,,1,,Europe/Paris,,OZU, +OZU:SA:CTP55021,1,"Halte Routière de l'Ara",43.723001,7.107165,,1,,Europe/Paris,,OZU, +OZU:SA:CTP55031,1,"Le Caribou",43.726072,7.117766,,1,,Europe/Paris,,OZU, +OZU:SA:CTP55034,1,"La Fontette",43.725071,7.113919,,1,,Europe/Paris,,OZU, +OZU:SA:CTP55038,1,"Les Mellières",43.716031,7.120424,,1,,Europe/Paris,,OZU, +OZU:SA:CTP55043,1,"Rocade",43.719435,7.112995,,1,,Europe/Paris,,OZU, +OZU:SA:CTP55046,1,"Le Suve",43.727269,7.121654,,1,,Europe/Paris,,OZU, +OZU:SA:CTP55076,1,"Parking Toreille",43.722217,7.116561,,1,,Europe/Paris,,OZU, +OZU:SA:CTP55078,1,"Place Maréchal Juin",43.722996,7.108307,,1,,Europe/Paris,,OZU, +OZU:SA:CTP55091,1,"Parking Sainte-Anne",43.713732,7.118528,,1,,Europe/Paris,,OZU, +OZU:SA:CTP551,1,"Kennedy",43.729333,7.275257,,1,,Europe/Paris,,OZU, +OZU:SA:CTP55105,1,"Val d'Azur",43.723105,7.116027,,1,,Europe/Paris,,OZU, +OZU:SA:CTP55257,1,"Zone d'Activité",44.068556,7.255187,,1,,Europe/Paris,,OZU, +OZU:SA:CTP554,1,"La Batterie",43.735458,7.278967,,1,,Europe/Paris,,OZU, +OZU:SA:CTP556,1,"Pont V.Auriol",43.715174,7.282769,,1,,Europe/Paris,,OZU, +OZU:SA:CTP557,1,"La Brigue",43.713592,7.28427,,1,,Europe/Paris,,OZU, +OZU:SA:CTP559,1,"La Carita",43.739065,7.274548,,1,,Europe/Paris,,OZU, +OZU:SA:CTP560,1,"La Carrière",43.704467,7.197857,,1,,Europe/Paris,,OZU, +OZU:SA:CTP562,1,"La Chapelle / Sainte-Marguerite",43.686597,7.202878,,1,,Europe/Paris,,OZU, +OZU:SA:CTP565,1,"La Chapelle / Bellet",43.703476,7.227441,,1,,Europe/Paris,,OZU, +OZU:SA:CTP567,1,"La Chapelle",43.720919,7.296768,,1,,Europe/Paris,,OZU, +OZU:SA:CTP569,1,"La Chaumière",43.730482,7.285404,,1,,Europe/Paris,,OZU, +OZU:SA:CTP57,1,"Avenue de Champagne",43.726709,7.271166,,1,,Europe/Paris,,OZU, +OZU:SA:CTP570,1,"Le Paillon",43.735967,7.30445,,1,,Europe/Paris,,OZU, +OZU:SA:CTP572,1,"La Clinique",43.716241,7.228177,,1,,Europe/Paris,,OZU, +OZU:SA:CTP573,1,"La Clua",43.726937,7.245751,,1,,Europe/Paris,,OZU, +OZU:SA:CTP575,1,"La Colle",43.707236,7.237509,,1,,Europe/Paris,,OZU, +OZU:SA:CTP577,1,"La Colline",43.698433,7.224847,,1,,Europe/Paris,,OZU, +OZU:SA:CTP579,1,"La Conque",43.707281,7.240468,,1,,Europe/Paris,,OZU, +OZU:SA:CTP580,1,"La Corniche",43.703733,7.241081,,1,,Europe/Paris,,OZU, +OZU:SA:CTP583,1,"La Costière",43.726827,7.231682,,1,,Europe/Paris,,OZU, +OZU:SA:CTP586,1,"La Costière B",43.713028,7.229913,,1,,Europe/Paris,,OZU, +OZU:SA:CTP587,1,"La Costière L",43.71181,7.229771,,1,,Europe/Paris,,OZU, +OZU:SA:CTP589,1,"La Croix",43.70472,7.217046,,1,,Europe/Paris,,OZU, +OZU:SA:CTP59,1,"Avenue Germaine",43.692455,7.295898,,1,,Europe/Paris,,OZU, +OZU:SA:CTP590,1,"La Croix de Gairaut",43.738505,7.255779,,1,,Europe/Paris,,OZU, +OZU:SA:CTP592,1,"La Demeure",43.71559,7.220051,,1,,Europe/Paris,,OZU, +OZU:SA:CTP595,1,"La Digue",43.677436,7.203777,,1,,Europe/Paris,,OZU, +OZU:SA:CTP596,1,"La Grangette",43.728667,7.26715,,1,,Europe/Paris,,OZU, +OZU:SA:CTP599,1,"La Guinguette",43.720731,7.222876,,1,,Europe/Paris,,OZU, +OZU:SA:CTP6,1,"Acropolis / Barla",43.703323,7.280435,,1,,Europe/Paris,,OZU, +OZU:SA:CTP60,1,"Avenue des Orangers",43.696533,7.251683,,1,,Europe/Paris,,OZU, +OZU:SA:CTP600,1,"La Hune",43.701515,7.231395,,1,,Europe/Paris,,OZU, +OZU:SA:CTP6001,1,"Aire Saint-Michel",43.743483,7.263551,,1,,Europe/Paris,,OZU, +OZU:SA:CTP6002,1,"Baou Rous",43.846736,7.197522,,1,,Europe/Paris,,OZU, +OZU:SA:CTP6009,1,"/ Les Moulins",43.790852,7.214813,,1,,Europe/Paris,,OZU, +OZU:SA:CTP6010,1,"Village",43.790783,7.23122,,1,,Europe/Paris,,OZU, +OZU:SA:CTP6011,1,"Chemin de l'Eurier",43.805038,7.234076,,1,,Europe/Paris,,OZU, +OZU:SA:CTP6015,1,"Colle Germaine",43.756653,7.220568,,1,,Europe/Paris,,OZU, +OZU:SA:CTP6018,1,"Collet du Couvent",43.81207,7.226946,,1,,Europe/Paris,,OZU, +OZU:SA:CTP602,1,"La Lanterne",43.678662,7.227718,,1,,Europe/Paris,,OZU, +OZU:SA:CTP6021,1,"Village",43.764336,7.222942,,1,,Europe/Paris,,OZU, +OZU:SA:CTP6023,1,"Corniche Laugier",43.754295,7.218539,,1,,Europe/Paris,,OZU, +OZU:SA:CTP6025,1,"Croix de Fer",43.814997,7.22675,,1,,Europe/Paris,,OZU, +OZU:SA:CTP6027,1,"Domaine de l'Aspre",43.767441,7.241926,,1,,Europe/Paris,,OZU, +OZU:SA:CTP6028,1,"Falicon",43.749714,7.279025,,1,,Europe/Paris,,OZU, +OZU:SA:CTP6030,1,"Fontaine d'Agneau",43.75411,7.218436,,1,,Europe/Paris,,OZU, +OZU:SA:CTP6032,1,"Fort Casal Colomars",43.765369,7.223603,,1,,Europe/Paris,,OZU, +OZU:SA:CTP6035,1,"Gipasse",43.809356,7.231003,,1,,Europe/Paris,,OZU, +OZU:SA:CTP6036,1,"Grand Duc",43.765718,7.242187,,1,,Europe/Paris,,OZU, +OZU:SA:CTP6037,1,"La Bastide",43.749244,7.264436,,1,,Europe/Paris,,OZU, +OZU:SA:CTP6039,1,"La Bégude",43.765333,7.23558,,1,,Europe/Paris,,OZU, +OZU:SA:CTP6041,1,"La Chapelle / Saint-Michel",43.752213,7.267276,,1,,Europe/Paris,,OZU, +OZU:SA:CTP6044,1,"La Parisienne",43.834831,7.193257,,1,,Europe/Paris,,OZU, +OZU:SA:CTP6045,1,"La Plane",43.803623,7.234104,,1,,Europe/Paris,,OZU, +OZU:SA:CTP6047,1,"La Ronde des Pins",43.744558,7.263309,,1,,Europe/Paris,,OZU, +OZU:SA:CTP6049,1,"Le Canet",43.794687,7.233918,,1,,Europe/Paris,,OZU, +OZU:SA:CTP6052,1,"Le Pilon",43.751285,7.216765,,1,,Europe/Paris,,OZU, +OZU:SA:CTP6054,1,"Le Pilon d'Aspremont",43.752486,7.246799,,1,,Europe/Paris,,OZU, +OZU:SA:CTP6057,1,"Le Rigou",43.762285,7.243991,,1,,Europe/Paris,,OZU, +OZU:SA:CTP6058,1,"Les Cabanes Blétonnières",43.755872,7.248582,,1,,Europe/Paris,,OZU, +OZU:SA:CTP6061,1,"Les Ecoles Falicon",43.749174,7.277823,,1,,Europe/Paris,,OZU, +OZU:SA:CTP6062,1,"Les Fontêtes",43.763873,7.243158,,1,,Europe/Paris,,OZU, +OZU:SA:CTP6064,1,"Les Serraires",43.759253,7.220418,,1,,Europe/Paris,,OZU, +OZU:SA:CTP6067,1,"Les Templiers",43.773954,7.243282,,1,,Europe/Paris,,OZU, +OZU:SA:CTP607,1,"La Madonette",43.728299,7.27144,,1,,Europe/Paris,,OZU, +OZU:SA:CTP6070,1,"Lou Campoun",43.783209,7.247549,,1,,Europe/Paris,,OZU, +OZU:SA:CTP6071,1,"Marjole",43.761164,7.245871,,1,,Europe/Paris,,OZU, +OZU:SA:CTP6072,1,"Monval",43.760003,7.246069,,1,,Europe/Paris,,OZU, +OZU:SA:CTP6073,1,"Moulin de Saint-Blaise",43.820672,7.241109,,1,,Europe/Paris,,OZU, +OZU:SA:CTP6076,1,"Nécropole",43.771291,7.215102,,1,,Europe/Paris,,OZU, +OZU:SA:CTP6077,1,"Notre-Dame de la Paix",43.801279,7.233566,,1,,Europe/Paris,,OZU, +OZU:SA:CTP608,1,"La Mairie",43.709152,7.223807,,1,,Europe/Paris,,OZU, +OZU:SA:CTP6081,1,"Portion",43.795681,7.231082,,1,,Europe/Paris,,OZU, +OZU:SA:CTP6085,1,"Saint-André",43.817528,7.232938,,1,,Europe/Paris,,OZU, +OZU:SA:CTP6087,1,"Saint-Blaise",43.799869,7.204738,,1,,Europe/Paris,,OZU, +OZU:SA:CTP6088,1,"Saint-Joseph / Les Condamines",43.810797,7.190915,,1,,Europe/Paris,,OZU, +OZU:SA:CTP6090,1,"Village",43.820923,7.239525,,1,,Europe/Paris,,OZU, +OZU:SA:CTP6091,1,"Saint-Martin-du-Var Village",43.821959,7.191896,,1,,Europe/Paris,,OZU, +OZU:SA:CTP6093,1,"Les Tennis d'Aspremont",43.780341,7.244456,,1,,Europe/Paris,,OZU, +OZU:SA:CTP6094,1,"Tornéo",43.74798,7.263916,,1,,Europe/Paris,,OZU, +OZU:SA:CTP6098,1,"Fougassière",43.763982,7.230382,,1,,Europe/Paris,,OZU, +OZU:SA:CTP6099,1,"Les Vallières",43.764757,7.226571,,1,,Europe/Paris,,OZU, +OZU:SA:CTP61,1,"Avenue des Poilus",43.723952,7.266033,,1,,Europe/Paris,,OZU, +OZU:SA:CTP610,1,"La Marbrerie",43.717146,7.218694,,1,,Europe/Paris,,OZU, +OZU:SA:CTP612,1,"La Massabella",43.700925,7.2215,,1,,Europe/Paris,,OZU, +OZU:SA:CTP614,1,"La Mouta",43.742507,7.260684,,1,,Europe/Paris,,OZU, +OZU:SA:CTP6144,1,"Corniche Laugier",43.761453,7.218183,,1,,Europe/Paris,,OZU, +OZU:SA:CTP6149,1,"Les Fréghières",43.765025,7.217201,,1,,Europe/Paris,,OZU, +OZU:SA:CTP6152,1,"La Loubière",43.806649,7.230521,,1,,Europe/Paris,,OZU, +OZU:SA:CTP6154,1,"Hauts de Saint-Michel",43.746296,7.263683,,1,,Europe/Paris,,OZU, +OZU:SA:CTP6156,1,"Le Stade Falicon",43.749591,7.276977,,1,,Europe/Paris,,OZU, +OZU:SA:CTP6159,1,"Quartier Trinea",43.766559,7.235922,,1,,Europe/Paris,,OZU, +OZU:SA:CTP6160,1,"Les Romarins",43.769956,7.236487,,1,,Europe/Paris,,OZU, +OZU:SA:CTP6161,1,"Lou Nidou",43.775845,7.238337,,1,,Europe/Paris,,OZU, +OZU:SA:CTP6162,1,"Cimetière Sud",43.778024,7.239146,,1,,Europe/Paris,,OZU, +OZU:SA:CTP6163,1,"Le Clodolio",43.782509,7.240541,,1,,Europe/Paris,,OZU, +OZU:SA:CTP6164,1,"La Carriere / Apremont",43.781665,7.24365,,1,,Europe/Paris,,OZU, +OZU:SA:CTP6165,1,"Le Brec",43.792092,7.238742,,1,,Europe/Paris,,OZU, +OZU:SA:CTP6167,1,"Trois Communes",43.799621,7.233571,,1,,Europe/Paris,,OZU, +OZU:SA:CTP617,1,"La Pastorelle",43.684091,7.228321,,1,,Europe/Paris,,OZU, +OZU:SA:CTP6175,1,"Village",43.784599,7.243307,,1,,Europe/Paris,,OZU, +OZU:SA:CTP618,1,"La Pignata",43.718725,7.310037,,1,,Europe/Paris,,OZU, +OZU:SA:CTP620,1,"La Pinède",43.698714,7.236541,,1,,Europe/Paris,,OZU, +OZU:SA:CTP623,1,"La Poudrière",43.722533,7.217281,,1,,Europe/Paris,,OZU, +OZU:SA:CTP624,1,"La Redoute",43.744322,7.249263,,1,,Europe/Paris,,OZU, +OZU:SA:CTP625,1,"La Réserve",43.692023,7.291043,,1,,Europe/Paris,,OZU, +OZU:SA:CTP628,1,"La Sablière",43.725046,7.266961,,1,,Europe/Paris,,OZU, +OZU:SA:CTP63,1,"Avenue d'Alicante",43.693889,7.289143,,1,,Europe/Paris,,OZU, +OZU:SA:CTP630,1,"La Séréna",43.734401,7.278266,,1,,Europe/Paris,,OZU, +OZU:SA:CTP632,1,"La Sourelle",43.720148,7.253038,,1,,Europe/Paris,,OZU, +OZU:SA:CTP633,1,"La Sousta",43.714322,7.220389,,1,,Europe/Paris,,OZU, +OZU:SA:CTP635,1,"La Tourelle",43.711681,7.216264,,1,,Europe/Paris,,OZU, +OZU:SA:CTP637,1,"La Vallière / Goiran",43.725663,7.249019,,1,,Europe/Paris,,OZU, +OZU:SA:CTP64,1,"Mont Alban",43.707055,7.297432,,1,,Europe/Paris,,OZU, +OZU:SA:CTP640,1,"L'abadie",43.733222,7.28907,,1,,Europe/Paris,,OZU, +OZU:SA:CTP641,1,"L'Abadie",43.733313,7.288668,,1,,Europe/Paris,,OZU, +OZU:SA:CTP642,1,"Lacassagne",43.723872,7.281017,,1,,Europe/Paris,,OZU, +OZU:SA:CTP644,1,"L'Antenne",43.716992,7.219525,,1,,Europe/Paris,,OZU, +OZU:SA:CTP646,1,"Hôpital de l'Archet",43.69685,7.228176,,1,,Europe/Paris,,OZU, +OZU:SA:CTP647,1,"L'Archet 1",43.697683,7.226497,,1,,Europe/Paris,,OZU, +OZU:SA:CTP649,1,"L'Archet 2",43.697585,7.226873,,1,,Europe/Paris,,OZU, +OZU:SA:CTP650,1,"L'Ariette",43.711613,7.250228,,1,,Europe/Paris,,OZU, +OZU:SA:CTP651,1,"Las Planas / Sappia",43.729802,7.24832,,1,,Europe/Paris,,OZU, +OZU:SA:CTP653,1,"L'Auberge",43.702395,7.298481,,1,,Europe/Paris,,OZU, +OZU:SA:CTP654,1,"Lavoir",43.728571,7.283848,,1,,Europe/Paris,,OZU, +OZU:SA:CTP656,1,"Lazaret",43.696012,7.286417,,1,,Europe/Paris,,OZU, +OZU:SA:CTP66,1,"Avenue Thérèse",43.723107,7.275697,,1,,Europe/Paris,,OZU, +OZU:SA:CTP663,1,"Le Ciel de Nice",43.739741,7.251389,,1,,Europe/Paris,,OZU, +OZU:SA:CTP665,1,"Le Clara",43.727665,7.248161,,1,,Europe/Paris,,OZU, +OZU:SA:CTP667,1,"Le Clos",43.688985,7.213674,,1,,Europe/Paris,,OZU, +OZU:SA:CTP668,1,"Le Col",43.720887,7.227806,,1,,Europe/Paris,,OZU, +OZU:SA:CTP670,1,"Le Foyer",43.700028,7.225407,,1,,Europe/Paris,,OZU, +OZU:SA:CTP672,1,"Le Génie",43.741887,7.239214,,1,,Europe/Paris,,OZU, +OZU:SA:CTP676,1,"Le Manoir",43.71892,7.246587,,1,,Europe/Paris,,OZU, +OZU:SA:CTP678,1,"Le Mas Saint-Pierre",43.713031,7.241982,,1,,Europe/Paris,,OZU, +OZU:SA:CTP680,1,"Le Nid",43.707009,7.199191,,1,,Europe/Paris,,OZU, +OZU:SA:CTP681,1,"Le Palatin",43.689701,7.208995,,1,,Europe/Paris,,OZU, +OZU:SA:CTP683,1,"Le Panorama",43.716526,7.250689,,1,,Europe/Paris,,OZU, +OZU:SA:CTP684,1,"Le Parc",43.723613,7.248146,,1,,Europe/Paris,,OZU, +OZU:SA:CTP686,1,"Le Perchoir",43.7105,7.24637,,1,,Europe/Paris,,OZU, +OZU:SA:CTP688,1,"Le Piol",43.70978,7.251125,,1,,Europe/Paris,,OZU, +OZU:SA:CTP689,1,"Le Piol / Saint-Pierre",43.708961,7.247727,,1,,Europe/Paris,,OZU, +OZU:SA:CTP692,1,"Le Plateau",43.73172,7.231197,,1,,Europe/Paris,,OZU, +OZU:SA:CTP694,1,"Le Pont",43.723817,7.227723,,1,,Europe/Paris,,OZU, +OZU:SA:CTP697,1,"Le Port",43.699198,7.284697,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7001,1,"La Barbe",43.806823,7.267635,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7003,1,"Baccia Donna",43.748299,7.336702,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7005,1,"Balzac",43.753377,7.309177,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7007,1,"Bertagnia",43.746723,7.322635,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7008,1,"Brocarel",43.801443,7.271247,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7010,1,"Buono",43.746673,7.31494,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7012,1,"Camp Bollin",43.750699,7.380513,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7014,1,"Cascade",43.855929,7.196392,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7016,1,"Castel Saint-Pierre",43.749392,7.375502,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7018,1,"Chemin Pouchol",43.856725,7.231128,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7021,1,"Chênes Verts Delahaye",43.748839,7.324212,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7022,1,"Cité du Soleil",43.739206,7.320598,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7023,1,"Collège de la Bourgada",43.735868,7.311722,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7025,1,"Ecole La Plana",43.755072,7.310133,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7027,1,"Ecole Saint-Roch",43.859916,7.229322,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7029,1,"Félix Faure",43.858811,7.230447,,1,,Europe/Paris,,OZU, +OZU:SA:CTP703,1,"Le Port Arson",43.698779,7.286361,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7031,1,"La Madone",43.850662,7.236379,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7033,1,"Gerles",43.741528,7.313223,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7035,1,"Hameau de l'Oli",43.732938,7.309429,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7036,1,"Jeu de Boules",43.858097,7.230311,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7038,1,"La Clua",43.762676,7.282127,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7042,1,"La Fontaine",43.744627,7.29297,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7044,1,"La Nuit",43.737595,7.309028,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7045,1,"La Piscine",43.743224,7.288002,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7047,1,"La Plage",43.751366,7.310592,,1,,Europe/Paris,,OZU, +OZU:SA:CTP705,1,"Le Président",43.693382,7.293116,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7050,1,"La Plaine",43.738529,7.292203,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7051,1,"La Plana Matisse",43.754364,7.313376,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7052,1,"La Poste",43.791123,7.273145,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7055,1,"La Trinité",43.741862,7.311637,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7060,1,"Langlet",43.751721,7.30974,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7062,1,"Laval",43.823976,7.261409,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7064,1,"Laval Centre",43.826819,7.260075,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7066,1,"Laval Sud",43.822249,7.263139,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7068,1,"Lavelan",43.747898,7.349302,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7071,1,"Le Broch",43.742292,7.293226,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7072,1,"Le Caroubier",43.73625,7.290413,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7074,1,"Le Cercle",43.76622,7.28067,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7076,1,"Le Colombier",43.811385,7.265755,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7078,1,"Le Frogier",43.788145,7.272917,,1,,Europe/Paris,,OZU, +OZU:SA:CTP708,1,"Comte de Falicon",43.72796,7.255352,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7080,1,"Le Masage",43.7373,7.287177,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7083,1,"Le Panto",43.741117,7.292911,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7084,1,"Le Pascal",43.779351,7.275559,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7086,1,"Le Peloubier",43.840402,7.24546,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7088,1,"Le Plan d'Ariou",43.803253,7.268892,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7090,1,"Le Plantier",43.814355,7.265577,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7092,1,"Le Reveste",43.835339,7.250825,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7097,1,"Le Serre",43.748509,7.294935,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7098,1,"Collège René Cassin",43.786201,7.271491,,1,,Europe/Paris,,OZU, +OZU:SA:CTP71,1,"Avenue des Fleurs",43.697838,7.253285,,1,,Europe/Paris,,OZU, +OZU:SA:CTP710,1,"Place Fontaine du Temple",43.725208,7.257449,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7100,1,"Le Tunnel",43.862701,7.225553,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7102,1,"Le Verdaou",43.745103,7.293781,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7105,1,"L'Eglise",43.744013,7.31421,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7106,1,"L'Eglise",43.741234,7.287792,,1,,Europe/Paris,,OZU, +OZU:SA:CTP711,1,"Le Rouret",43.730596,7.253618,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7111,1,"Les Chênes Verts B",43.748361,7.321896,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7112,1,"Les Cyprès",43.842007,7.244132,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7115,1,"Les Gêmeaux",43.729724,7.301161,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7116,1,"Les Glycines",43.734843,7.314242,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7118,1,"Les Iris",43.746074,7.324628,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7119,1,"Les Lilas",43.739512,7.31378,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7120,1,"Les Lucioles (sur Ligne 86)",43.73892,7.312657,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7121,1,"Les Moulins",43.85311,7.234013,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7123,1,"Les Moulins",43.772403,7.280164,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7126,1,"Les Pins",43.723512,7.30365,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7128,1,"L'Oli",43.735384,7.306176,,1,,Europe/Paris,,OZU, +OZU:SA:CTP713,1,"Le Spagnol",43.696587,7.199469,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7130,1,"Maison de l'Enfance",43.735755,7.316544,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7132,1,"Négron",43.745133,7.322756,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7134,1,"Ordalena",43.846355,7.239791,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7136,1,"Parc Laval",43.825794,7.261045,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7138,1,"Parc Mauran",43.789259,7.27375,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7140,1,"Place de Rebat",43.743647,7.31747,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7142,1,"Place Jules Musso",43.739681,7.287495,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7144,1,"Plan de Couthon",43.818123,7.264893,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7146,1,"Plan du var",43.860533,7.198953,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7148,1,"Pont Anatole France",43.74112,7.310902,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7149,1,"Pont Césaire Aube",43.736207,7.287442,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7151,1,"Pont de Figour",43.747598,7.331222,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7153,1,"Pont de la Roma",43.743861,7.313974,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7155,1,"Pont de l'Ariane",43.734303,7.302666,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7156,1,"Pont Liprandi",43.745781,7.287243,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7158,1,"Pré des Cavaliers",43.849398,7.237427,,1,,Europe/Paris,,OZU, +OZU:SA:CTP716,1,"Le Vallonet",43.698237,7.19938,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7160,1,"Quartier du Château",43.744491,7.288063,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7161,1,"Riba Roussa",43.733225,7.294337,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7163,1,"Roland",43.7482,7.344918,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7165,1,"Rostit",43.736519,7.319108,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7167,1,"Route de Laghet",43.740824,7.311099,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7169,1,"Saint-Antoine",43.793491,7.273604,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7171,1,"Saint-Aubert",43.730702,7.297707,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7172,1,"Saint-Martin",43.815337,7.265177,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7175,1,"Sainte-Anne",43.738624,7.309776,,1,,Europe/Paris,,OZU, +OZU:SA:CTP718,1,"Lei Domi",43.719816,7.194796,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7181,1,"Stade de l'Oli",43.733892,7.306518,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7182,1,"Stalingrad",43.740725,7.313451,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7183,1,"Saint-André-de-la-Roche",43.748871,7.284245,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7184,1,"Sainte-Claire",43.836929,7.246281,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7185,1,"Village",43.787775,7.275879,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7186,1,"Viaduc de l'Oli",43.732136,7.308278,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7189,1,"Village",43.86008,7.22633,,1,,Europe/Paris,,OZU, +OZU:SA:CTP719,1,"L'Ensouleiadou",43.71235,7.251036,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7190,1,"La Vallière ZI",43.748026,7.285017,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7191,1,"La Croix",43.734367,7.286513,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7202,1,"Beauséjour",43.854594,7.232365,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7204,1,"La Colle",43.753182,7.287688,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7205,1,"La Tuve",43.749883,7.293451,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7206,1,"La Vierge",43.75406,7.296053,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7207,1,"Le Mortier",43.751739,7.291874,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7208,1,"L'Ecole",43.752396,7.295609,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7209,1,"Les Ardouins",43.753051,7.291529,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7210,1,"Nartière Supérieure",43.751249,7.290366,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7211,1,"Ophidie",43.747995,7.289647,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7213,1,"Staou Inférieur",43.749449,7.295451,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7214,1,"Deloye",43.754279,7.309554,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7215,1,"Ecole des Chênes Verts",43.749104,7.322371,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7218,1,"Galipette",43.738116,7.319831,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7220,1,"Les Chênes Verts A",43.74969,7.321391,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7221,1,"Vieux ch.de Laghet",43.744141,7.317887,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7222,1,"Voie Romaine",43.745256,7.319114,,1,,Europe/Paris,,OZU, +OZU:SA:CTP723,1,"Lenval / Promenade",43.688569,7.241402,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7233,1,"Les Chênes Verts",43.748784,7.320542,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7238,1,"Nartière Inférieure",43.749296,7.288966,,1,,Europe/Paris,,OZU, +OZU:SA:CTP724,1,"Lenval Pouponnière",43.708175,7.212724,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7253,1,"G.S. D. Delahaye",43.739144,7.314716,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7255,1,"Pablo Picasso",43.75424,7.314122,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7267,1,"La Grotte",43.748532,7.285768,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7271,1,"Stade du Rostit",43.734589,7.319119,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7272,1,"L'ESPERANCE",43.737302,7.321382,,1,,Europe/Paris,,OZU, +OZU:SA:CTP7273,1,"Rue Haute",43.737549,7.320639,,1,,Europe/Paris,,OZU, +OZU:SA:CTP73,1,"Avenue Elisabeth",43.727319,7.275763,,1,,Europe/Paris,,OZU, +OZU:SA:CTP730,1,"Léopold",43.712395,7.274173,,1,,Europe/Paris,,OZU, +OZU:SA:CTP733,1,"Les Palmiers / Saint-Pierre",43.71227,7.239892,,1,,Europe/Paris,,OZU, +OZU:SA:CTP735,1,"Les Arboras",43.691251,7.195364,,1,,Europe/Paris,,OZU, +OZU:SA:CTP740,1,"Les Bassins",43.736778,7.279069,,1,,Europe/Paris,,OZU, +OZU:SA:CTP741,1,"Les Baumettes",43.696035,7.248748,,1,,Europe/Paris,,OZU, +OZU:SA:CTP743,1,"Les Beaumonts",43.746026,7.251409,,1,,Europe/Paris,,OZU, +OZU:SA:CTP744,1,"Les Belles Terres",43.68597,7.214459,,1,,Europe/Paris,,OZU, +OZU:SA:CTP747,1,"Les Bosquets",43.681555,7.230846,,1,,Europe/Paris,,OZU, +OZU:SA:CTP748,1,"Les Cèdres",43.720516,7.267153,,1,,Europe/Paris,,OZU, +OZU:SA:CTP75,1,"Avenue Fracchia",43.712632,7.296008,,1,,Europe/Paris,,OZU, +OZU:SA:CTP750,1,"Les Cerisiers",43.710443,7.229306,,1,,Europe/Paris,,OZU, +OZU:SA:CTP752,1,"Les chasseurs",43.730402,7.269972,,1,,Europe/Paris,,OZU, +OZU:SA:CTP753,1,"Les Chasseurs",43.730315,7.269691,,1,,Europe/Paris,,OZU, +OZU:SA:CTP754,1,"Les Chênes",43.719735,7.293895,,1,,Europe/Paris,,OZU, +OZU:SA:CTP756,1,"Les Chênes / Las Planas",43.728154,7.248911,,1,,Europe/Paris,,OZU, +OZU:SA:CTP759,1,"Les Cigales",43.740428,7.236815,,1,,Europe/Paris,,OZU, +OZU:SA:CTP76,1,"Azura Park",43.69238,7.210713,,1,,Europe/Paris,,OZU, +OZU:SA:CTP760,1,"Les Cliniques",43.702753,7.252344,,1,,Europe/Paris,,OZU, +OZU:SA:CTP762,1,"Les Clos de Cimiez",43.727435,7.273017,,1,,Europe/Paris,,OZU, +OZU:SA:CTP766,1,"Les Cougourdons",43.736201,7.232502,,1,,Europe/Paris,,OZU, +OZU:SA:CTP769,1,"Les Crêtes / Carnot",43.691982,7.294185,,1,,Europe/Paris,,OZU, +OZU:SA:CTP770,1,"Les Crêtes / Oliviers",43.739194,7.234237,,1,,Europe/Paris,,OZU, +OZU:SA:CTP772,1,"Les Dahlias",43.7308,7.24935,,1,,Europe/Paris,,OZU, +OZU:SA:CTP774,1,"Les Ecoles",43.725279,7.288267,,1,,Europe/Paris,,OZU, +OZU:SA:CTP777,1,"Les Etoiles",43.703464,7.23469,,1,,Europe/Paris,,OZU, +OZU:SA:CTP779,1,"Les Eucalyptus",43.675704,7.220603,,1,,Europe/Paris,,OZU, +OZU:SA:CTP78,1,"Azurelle",43.684652,7.216716,,1,,Europe/Paris,,OZU, +OZU:SA:CTP781,1,"Les Freesias",43.700931,7.203799,,1,,Europe/Paris,,OZU, +OZU:SA:CTP783,1,"Les Genêts",43.729985,7.246075,,1,,Europe/Paris,,OZU, +OZU:SA:CTP784,1,"Les Géraniums",43.731695,7.238734,,1,,Europe/Paris,,OZU, +OZU:SA:CTP786,1,"Les Glycines",43.724985,7.270855,,1,,Europe/Paris,,OZU, +OZU:SA:CTP788,1,"Les Hespérides",43.692067,7.307052,,1,,Europe/Paris,,OZU, +OZU:SA:CTP790,1,"Les Immeubles",43.698857,7.235386,,1,,Europe/Paris,,OZU, +OZU:SA:CTP792,1,"Les Lilas",43.719347,7.265499,,1,,Europe/Paris,,OZU, +OZU:SA:CTP794,1,"Les Liserons",43.705449,7.295295,,1,,Europe/Paris,,OZU, +OZU:SA:CTP796,1,"Les Ménestrels",43.712914,7.279208,,1,,Europe/Paris,,OZU, +OZU:SA:CTP797,1,"Les Néreïdes",43.686689,7.29512,,1,,Europe/Paris,,OZU, +OZU:SA:CTP799,1,"Les Noisetiers",43.726049,7.264911,,1,,Europe/Paris,,OZU, +OZU:SA:CTP80,1,"Balcons Parc Impérial",43.704191,7.24687,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8001,1,"Ange Gardien",43.703017,7.324286,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8003,1,"Baie des Fourmis",43.702886,7.329606,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8005,1,"Barnessa",43.730568,7.377214,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8007,1,"Bautugan",43.725488,7.39963,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8008,1,"Beaverbrook",43.72315,7.397038,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8009,1,"Bois Joli",43.720714,7.397268,,1,,Europe/Paris,,OZU, +OZU:SA:CTP801,1,"Les Œillets",43.731706,7.250012,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8010,1,"Cap Roux",43.719387,7.351908,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8012,1,"Cauvin",43.703248,7.30672,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8014,1,"Cercle des Salines",43.728814,7.410161,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8015,1,"Chemin des Eucalyptus",43.725247,7.398932,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8017,1,"Chapelle Saint-Laurent",43.728511,7.380796,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8019,1,"Charles Blanc",43.722894,7.395439,,1,,Europe/Paris,,OZU, +OZU:SA:CTP802,1,"Les Oliviers",43.712989,7.240538,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8020,1,"Château Balzan",43.729186,7.368781,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8022,1,"Château de l'Aighetta",43.733275,7.356772,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8025,1,"Chemin Romain",43.72528,7.401377,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8026,1,"Cimetière / Beaulieu",43.704177,7.309262,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8027,1,"Cimetière de Cap-d'Ail",43.724893,7.402708,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8032,1,"Col d'Eze",43.733969,7.346833,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8036,1,"Les Cigognes",43.722153,7.396403,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8038,1,"David",43.716712,7.349947,,1,,Europe/Paris,,OZU, +OZU:SA:CTP804,1,"Les Oliviers / Fabron",43.689587,7.219126,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8043,1,"Edmond's Cap-d'Ail",43.723011,7.39586,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8044,1,"Escalier du Camping",43.726508,7.409173,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8045,1,"Escaliers de Verre",43.695697,7.304999,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8047,1,"Village",43.729911,7.361717,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8050,1,"F.Ferry",43.705541,7.303356,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8052,1,"Ferme de May",43.688438,7.332409,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8053,1,"G.S. Gianton",43.734061,7.352455,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8055,1,"Gare SNCF Cap d'Ail",43.72078,7.394356,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8056,1,"Gare SNCF Beaulieu-sur-Mer",43.706285,7.33156,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8057,1,"Gare SNCF Eze",43.722601,7.356786,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8060,1,"Gianton",43.724173,7.381864,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8061,1,"Guillaume Apollinaire",43.721947,7.398471,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8062,1,"Hermitage",43.703821,7.306742,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8063,1,"Horizon",43.710814,7.305398,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8065,1,"Hôtel de Ville",43.72249,7.407486,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8067,1,"Hôtel de Ville",43.702562,7.310898,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8069,1,"Joffre",43.706259,7.328612,,1,,Europe/Paris,,OZU, +OZU:SA:CTP807,1,"Les Olympiades",43.684841,7.203318,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8070,1,"Kerylos",43.704867,7.333152,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8071,1,"La Valléria",43.731319,7.380846,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8073,1,"La Barmassa",43.705795,7.310096,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8074,1,"La Calade",43.720689,7.341876,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8077,1,"La Candellera",43.715188,7.313703,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8078,1,"La Corne d'Or",43.706856,7.307064,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8080,1,"La Jeunesse",43.703184,7.307856,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8081,1,"La Léopolda",43.709864,7.317247,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8083,1,"La Pinède",43.70707,7.304153,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8087,1,"La Poste",43.703439,7.309872,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8089,1,"La Rade",43.696601,7.327533,,1,,Europe/Paris,,OZU, +OZU:SA:CTP809,1,"Les Oudaias",43.679249,7.210521,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8091,1,"La Source",43.721942,7.399563,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8093,1,"La Vigie",43.709058,7.304201,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8096,1,"Le Castellet",43.709663,7.309842,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8098,1,"Le Loup Blanc",43.724619,7.40896,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8101,1,"L'Eden",43.721805,7.394893,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8102,1,"L'Eglise",43.721814,7.403532,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8106,1,"Léopold II",43.706993,7.312291,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8108,1,"Les Caroubiers",43.712266,7.32004,,1,,Europe/Paris,,OZU, +OZU:SA:CTP811,1,"Les Palmiers / Mont Boron",43.703402,7.296545,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8110,1,"Les Cistes",43.726924,7.397622,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8113,1,"Les Flots Bleus",43.730368,7.365857,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8115,1,"Les Genêts",43.725855,7.400421,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8120,1,"Les Terrasses",43.723512,7.394191,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8121,1,"Liberté",43.726606,7.411223,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8123,1,"Madonne Noire",43.707339,7.316331,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8124,1,"Mairie",43.691607,7.332796,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8125,1,"Maison de Retraite",43.704528,7.307667,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8127,1,"Montée du Rêve",43.703372,7.326665,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8128,1,"Oasis",43.719984,7.338728,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8129,1,"Octroi",43.702532,7.308205,,1,,Europe/Paris,,OZU, +OZU:SA:CTP813,1,"Les Palmiers / Bellet",43.70486,7.225114,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8132,1,"Le Cap / Albert 1er",43.692082,7.329043,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8133,1,"Panorama",43.71274,7.307789,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8135,1,"Parc Rivièra",43.733764,7.348939,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8137,1,"Passable / Rothschild",43.694064,7.328835,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8139,1,"Petite Afrique",43.712901,7.338114,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8140,1,"Place Charles D'Anjou",43.704311,7.309978,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8141,1,"Plateau de la Justice",43.731878,7.342323,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8142,1,"Plateau Saint-Michel",43.714954,7.32523,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8144,1,"Pont Saint-Jean / Grasseuil",43.701438,7.326624,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8145,1,"Pont Saint-Jean",43.701745,7.325999,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8147,1,"Port de la Santé",43.702659,7.311543,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8148,1,"Port de Saint-Jean",43.690107,7.333049,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8149,1,"Rochambeau",43.695724,7.30685,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8151,1,"Rose Parc",43.713725,7.309476,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8152,1,"Saint-Laurent-d'Eze / RN7",43.731901,7.382052,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8153,1,"Saint-Michel",43.717344,7.334144,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8155,1,"Saint-Estève",43.69948,7.305468,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8159,1,"Savorani",43.728811,7.410198,,1,,Europe/Paris,,OZU, +OZU:SA:CTP816,1,"Palais Nikaya",43.680774,7.199049,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8160,1,"Schifanoia",43.705429,7.32072,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8162,1,"Settimelli",43.705147,7.307327,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8163,1,"Soleil d'Or",43.705135,7.305873,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8164,1,"Saint-Laurent-d'Eze Plage",43.724512,7.37982,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8167,1,"Val des Costes",43.731061,7.382698,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8169,1,"Verseau",43.72541,7.408976,,1,,Europe/Paris,,OZU, +OZU:SA:CTP817,1,"Les Potiers",43.699621,7.251502,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8170,1,"Villa Alexandra",43.689555,7.330732,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8177,1,"Floralies",43.710424,7.330309,,1,,Europe/Paris,,OZU, +OZU:SA:CTP818,1,"Les Primevères",43.678346,7.213571,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8180,1,"L'Escafourcha",43.711507,7.332589,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8181,1,"Marinoni",43.709542,7.331063,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8185,1,"Cap Estel",43.720599,7.376816,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8186,1,"Cimetière / Beaulieu",43.708779,7.32572,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8188,1,"La Murta",43.710445,7.322041,,1,,Europe/Paris,,OZU, +OZU:SA:CTP819,1,"Les Restanques",43.689916,7.210801,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8190,1,"Les Trois Frères",43.710146,7.325963,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8194,1,"Plage / Beaulieu",43.708793,7.334412,,1,,Europe/Paris,,OZU, +OZU:SA:CTP82,1,"Banghi",43.681958,7.213545,,1,,Europe/Paris,,OZU, +OZU:SA:CTP820,1,"Les Restaurants",43.740668,7.237892,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8203,1,"San Miqueu",43.712119,7.332022,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8215,1,"Octroi / Grande-Bretagne",43.70262,7.308469,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8216,1,"Octroi / Libération",43.702632,7.308633,,1,,Europe/Paris,,OZU, +OZU:SA:CTP822,1,"Les Roches",43.687875,7.21873,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8221,1,"Costa Plana",43.726066,7.396573,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8223,1,"Résidence Costa Plana",43.724698,7.395407,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8226,1,"Olivula",43.716396,7.321904,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8227,1,"Toscana",43.727276,7.37927,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8229,1,"Lou Clapas",43.728995,7.409941,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8230,1,"Le chevalier",43.726624,7.399384,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8232,1,"Les Abeilles",43.726429,7.408196,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8233,1,"Le Gentilhomme",43.706717,7.313951,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8238,1,"Sacré Cœur",43.702584,7.308889,,1,,Europe/Paris,,OZU, +OZU:SA:CTP824,1,"Les Ronces",43.72562,7.268762,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8240,1,"Maternelle",43.700413,7.307495,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8242,1,"Darse-Capitainerie",43.697361,7.306521,,1,,Europe/Paris,,OZU, +OZU:SA:CTP8245,1,"La Corderie",43.699576,7.308467,,1,,Europe/Paris,,OZU, +OZU:SA:CTP826,1,"Les Roses / Rimiez",43.740015,7.277412,,1,,Europe/Paris,,OZU, +OZU:SA:CTP828,1,"Les Serres / Pessicart",43.72679,7.23728,,1,,Europe/Paris,,OZU, +OZU:SA:CTP829,1,"Les Serres",43.718388,7.193073,,1,,Europe/Paris,,OZU, +OZU:SA:CTP830,1,"Les Sagnes",43.666484,7.208201,,1,,Europe/Paris,,OZU, +OZU:SA:CTP832,1,"Les Strelitzias",43.707422,7.206663,,1,,Europe/Paris,,OZU, +OZU:SA:CTP834,1,"Les Tennis",43.714593,7.276759,,1,,Europe/Paris,,OZU, +OZU:SA:CTP836,1,"Les terrasses",43.675282,7.210252,,1,,Europe/Paris,,OZU, +OZU:SA:CTP837,1,"Les Terrasses",43.6753,7.209947,,1,,Europe/Paris,,OZU, +OZU:SA:CTP839,1,"Les Terrasses la Costière",43.717824,7.228823,,1,,Europe/Paris,,OZU, +OZU:SA:CTP84,1,"Barilli",43.706245,7.217164,,1,,Europe/Paris,,OZU, +OZU:SA:CTP840,1,"Les Treuyes",43.706656,7.224251,,1,,Europe/Paris,,OZU, +OZU:SA:CTP842,1,"L'Escale",43.702084,7.29761,,1,,Europe/Paris,,OZU, +OZU:SA:CTP844,1,"L'Etoile",43.721983,7.244963,,1,,Europe/Paris,,OZU, +OZU:SA:CTP846,1,"L'Ibac",43.743991,7.266068,,1,,Europe/Paris,,OZU, +OZU:SA:CTP850,1,"Lingostière / Gare CP",43.719903,7.18641,,1,,Europe/Paris,,OZU, +OZU:SA:CTP851,1,"Lino Ventura",43.738446,7.307574,,1,,Europe/Paris,,OZU, +OZU:SA:CTP853,1,"L'Obellia",43.728215,7.237813,,1,,Europe/Paris,,OZU, +OZU:SA:CTP856,1,"Lombardie",43.74365,7.271765,,1,,Europe/Paris,,OZU, +OZU:SA:CTP857,1,"Longchamp",43.699377,7.267147,,1,,Europe/Paris,,OZU, +OZU:SA:CTP858,1,"L'Orée",43.682585,7.224978,,1,,Europe/Paris,,OZU, +OZU:SA:CTP86,1,"Barla / Riquier",43.701819,7.28845,,1,,Europe/Paris,,OZU, +OZU:SA:CTP861,1,"L'Orme",43.72191,7.249552,,1,,Europe/Paris,,OZU, +OZU:SA:CTP862,1,"Lou Castel",43.706205,7.247142,,1,,Europe/Paris,,OZU, +OZU:SA:CTP866,1,"Louis Braille",43.718835,7.294077,,1,,Europe/Paris,,OZU, +OZU:SA:CTP869,1,"L'Usine",43.734014,7.292443,,1,,Europe/Paris,,OZU, +OZU:SA:CTP87,1,"Barla",43.701577,7.287225,,1,,Europe/Paris,,OZU, +OZU:SA:CTP871,1,"L'Usine / Terron",43.690546,7.223589,,1,,Europe/Paris,,OZU, +OZU:SA:CTP873,1,"Lycée Masséna",43.69949,7.276562,,1,,Europe/Paris,,OZU, +OZU:SA:CTP877,1,"Lycée Thierry Maulnier",43.684482,7.198329,,1,,Europe/Paris,,OZU, +OZU:SA:CTP879,1,"Lympia",43.69694,7.287013,,1,,Europe/Paris,,OZU, +OZU:SA:CTP880,1,"Madeleine",43.716285,7.234564,,1,,Europe/Paris,,OZU, +OZU:SA:CTP883,1,"Maeterlinck / Mont Boron",43.688264,7.296507,,1,,Europe/Paris,,OZU, +OZU:SA:CTP885,1,"Maeterlinck / Baumettes",43.697247,7.248454,,1,,Europe/Paris,,OZU, +OZU:SA:CTP887,1,"Maeterlinck",43.688084,7.296226,,1,,Europe/Paris,,OZU, +OZU:SA:CTP888,1,"Magnan",43.691908,7.244829,,1,,Europe/Paris,,OZU, +OZU:SA:CTP89,1,"Barla / Arson",43.700092,7.286551,,1,,Europe/Paris,,OZU, +OZU:SA:CTP892,1,"Magnan / Bellet",43.691209,7.245564,,1,,Europe/Paris,,OZU, +OZU:SA:CTP893,1,"Magnan / Promenade",43.690911,7.246569,,1,,Europe/Paris,,OZU, +OZU:SA:CTP895,1,"Magnolias",43.680782,7.220654,,1,,Europe/Paris,,OZU, +OZU:SA:CTP896,1,"Maisons Neuves",43.720938,7.285729,,1,,Europe/Paris,,OZU, +OZU:SA:CTP90,1,"Barralis",43.71702,7.234838,,1,,Europe/Paris,,OZU, +OZU:SA:CTP900,1,"Marojade",43.741531,7.303056,,1,,Europe/Paris,,OZU, +OZU:SA:CTP902,1,"Martin",43.756153,7.197906,,1,,Europe/Paris,,OZU, +OZU:SA:CTP908,1,"Maurice Jaubert",43.737102,7.30014,,1,,Europe/Paris,,OZU, +OZU:SA:CTP909,1,"Max Barel",43.699419,7.287347,,1,,Europe/Paris,,OZU, +OZU:SA:CTP911,1,"J. Médecin / Hôtel des Postes",43.698956,7.26968,,1,,Europe/Paris,,OZU, +OZU:SA:CTP912,1,"J. Médecin / Pastorelli",43.700003,7.269051,,1,,Europe/Paris,,OZU, +OZU:SA:CTP913,1,"Mencarelli",43.697596,7.237388,,1,,Europe/Paris,,OZU, +OZU:SA:CTP92,1,"Bassin",43.693815,7.299781,,1,,Europe/Paris,,OZU, +OZU:SA:CTP921,1,"Eglise Jeanne d'Arc",43.712779,7.263582,,1,,Europe/Paris,,OZU, +OZU:SA:CTP923,1,"Michel Ange / Auguste Raynaud",43.711844,7.258802,,1,,Europe/Paris,,OZU, +OZU:SA:CTP924,1,"Michelet",43.714131,7.258615,,1,,Europe/Paris,,OZU, +OZU:SA:CTP926,1,"Milon de Veraillon",43.71514,7.297083,,1,,Europe/Paris,,OZU, +OZU:SA:CTP929,1,"Miramar",43.690028,7.295879,,1,,Europe/Paris,,OZU, +OZU:SA:CTP930,1,"Mirandole",43.68307,7.211653,,1,,Europe/Paris,,OZU, +OZU:SA:CTP933,1,"Mirasol",43.710483,7.251893,,1,,Europe/Paris,,OZU, +OZU:SA:CTP934,1,"Mirasol / Pessicart",43.710562,7.249566,,1,,Europe/Paris,,OZU, +OZU:SA:CTP935,1,"Mistinguette",43.711831,7.244822,,1,,Europe/Paris,,OZU, +OZU:SA:CTP938,1,"Mistral",43.725214,7.252159,,1,,Europe/Paris,,OZU, +OZU:SA:CTP94,1,"Batterie",43.677897,7.218719,,1,,Europe/Paris,,OZU, +OZU:SA:CTP943,1,"Mon Plaisir",43.711513,7.26451,,1,,Europe/Paris,,OZU, +OZU:SA:CTP945,1,"Monastère",43.720814,7.277001,,1,,Europe/Paris,,OZU, +OZU:SA:CTP947,1,"Avenue Mont Alban",43.701662,7.296055,,1,,Europe/Paris,,OZU, +OZU:SA:CTP949,1,"Mont Boron",43.691861,7.300356,,1,,Europe/Paris,,OZU, +OZU:SA:CTP950,1,"Mont Fabron",43.69012,7.2133,,1,,Europe/Paris,,OZU, +OZU:SA:CTP955,1,"Mont Gros",43.717401,7.294336,,1,,Europe/Paris,,OZU, +OZU:SA:CTP956,1,"Mosca",43.69902,7.239348,,1,,Europe/Paris,,OZU, +OZU:SA:CTP959,1,"Moulin",43.710788,7.22705,,1,,Europe/Paris,,OZU, +OZU:SA:CTP962,1,"Moyenne Corniche",43.698563,7.295254,,1,,Europe/Paris,,OZU, +OZU:SA:CTP964,1,"Mozart",43.700374,7.262094,,1,,Europe/Paris,,OZU, +OZU:SA:CTP965,1,"Musée Chagall",43.708763,7.271087,,1,,Europe/Paris,,OZU, +OZU:SA:CTP967,1,"Musée Chéret",43.695106,7.248592,,1,,Europe/Paris,,OZU, +OZU:SA:CTP968,1,"Mutuelle Agricole",43.678941,7.225533,,1,,Europe/Paris,,OZU, +OZU:SA:CTP97,1,"Batterie / Princesse Grâce",43.688451,7.306794,,1,,Europe/Paris,,OZU, +OZU:SA:CTP970,1,"N.54",43.712019,7.251964,,1,,Europe/Paris,,OZU, +OZU:SA:CTP971,1,"N.59",43.693846,7.209126,,1,,Europe/Paris,,OZU, +OZU:SA:CTP979,1,"Nicola",43.702448,7.231065,,1,,Europe/Paris,,OZU, +OZU:SA:CTP985,1,"Normandie",43.673391,7.208593,,1,,Europe/Paris,,OZU, +OZU:SA:CTP986,1,"Notre Dame",43.704145,7.267671,,1,,Europe/Paris,,OZU, +OZU:SA:CTP989,1,"Observatoire",43.72091,7.304615,,1,,Europe/Paris,,OZU, +OZU:SA:CTP99,1,"Bavastro",43.701442,7.28424,,1,,Europe/Paris,,OZU, +OZU:SA:CTP991,1,"Orangeraie",43.674933,7.214966,,1,,Europe/Paris,,OZU, +OZU:SA:CTP993,1,"Orangerie",43.703962,7.207496,,1,,Europe/Paris,,OZU, +OZU:SA:CTP995,1,"PAL",43.712498,7.204352,,1,,Europe/Paris,,OZU, +OZU:SA:CTP998,1,"Panera",43.74322,7.249317,,1,,Europe/Paris,,OZU, +SIN:SA:OCE71793150,1,"Gare de Port-Bou",42.424471,3.157848,,1,,Europe/Paris,,SIN, +SIN:SA:OCE85010082,1,"Gare de Genève",46.210557,6.143155,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87003707,1,"Ydes",45.344039,2.436246,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87024380,1,"Le Puy-en-Velay Lafayette",45.04355,3.886866,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87101980,1,"Néris-les-Bains",46.287548,2.661814,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87101998,1,"Durdat-Larequille",46.250763,2.702033,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87110171,1,"Landeyrat",45.277543,2.870006,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87110189,1,"Marcenat",45.304939,2.828226,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87110197,1,"Condat",45.334816,2.759806,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87110205,1,"St-Amandin",45.343141,2.694491,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87110213,1,"Vebret",45.339542,2.520261,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87110221,1,"Antignac (Cantal)",45.341011,2.544783,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87130823,1,"Les-cabannes-09-Centre",42.784943,1.688417,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87130849,1,"Mérens-les-Vals-Village",42.656118,1.836418,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87131961,1,"Gare de Brion-Montréal-La Cluse",46.175782,5.55851,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87137158,1,"Tarascon-Ariège-Mitter.",42.846536,1.604316,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87158006,1,"Gouzon-Champ-de-Foire",46.191172,2.239924,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87176941,1,"Courbassil",42.492763,1.850478,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87176966,1,"Ruites",42.475399,1.872722,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87177360,1,"Communay-Stade",45.605858,4.848858,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87177576,1,"Ternay-Barbières",45.59703,4.799772,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87208553,1,"Gare de Casino-Lacroix-Laval",45.787828,4.730892,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87282335,1,"Perrigny-sur-Loire",46.530542,3.846116,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87318964,1,"Gare de Avignon-TGV",43.921964,4.786154,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87327601,1,"Montaigut-en-Combraille",46.180364,2.808109,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87335521,1,"Grenoble-Gare-Routière",45.192674,5.714361,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87336974,1,"La Voulte-Mairie",44.799371,4.78131,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87336982,1,"St-Julien-en-St-Alban-C",44.754243,4.697899,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87336990,1,"Flaviac-Place-René-Cass",44.746371,4.674158,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87337006,1,"Coux-centre",44.736036,4.623787,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87337089,1,"Aubenas-Pl.-de-la-Paix",44.618159,4.389208,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87337097,1,"Lavilledieu-Centre",44.574153,4.455366,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87361998,1,"St-Pourçain-sur-Sioule",46.309255,3.29126,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87392829,1,"St-Martin-d'Hères",45.193002,5.768883,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87395657,1,"Brassac-les-Mines-Ly-Ra",45.413609,3.321389,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87395665,1,"Issoire-Lycée-Deville",45.539936,3.257986,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87395673,1,"Issoire-Lycée-Murat",45.550384,3.249926,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87395749,1,"Thiers-Lycée",45.861885,3.539933,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87395756,1,"Ambert-Ville",45.550598,3.739655,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87395822,1,"St-Flour-les-Allées",45.032936,3.088367,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87395830,1,"Le-Breuil-sur-Couze-Lyc",45.462621,3.281144,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87395947,1,"Mauriac-Lycée-Cortat",45.213365,2.341224,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87395962,1,"Ste-Florine-Lycée-C-fav",45.401583,3.321111,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87405068,1,"Mariol",46.02117,3.495785,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87405423,1,"Dore-Eglise",45.380994,3.748064,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87407494,1,"Abrest-les-Dollots",46.088876,3.456898,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87407502,1,"Arrest-Usine-Mélius",45.396363,3.326382,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87407536,1,"Bourg-Lastice-Pl.-Poste",45.648355,2.561512,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87407569,1,"Brioude-Lycée-Lafayette",45.292173,3.382543,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87407577,1,"Chateldon",45.990857,3.486056,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87407635,1,"Dunières-Ville",45.217726,4.344214,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87407650,1,"Feniers",45.324249,2.770679,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87407668,1,"Fix",45.142776,3.668606,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87407676,1,"Freycenet",45.13194,3.736943,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87407684,1,"Chauprillade-(La)",45.903306,3.518364,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87407692,1,"La Chomette",45.229465,3.474457,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87407700,1,"La-Combelle",45.45176,3.316788,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87407718,1,"La-Croix-St-Bonnet",45.905026,3.518259,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87407726,1,"La Grave-Carrefour",46.53344,2.619822,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87407932,1,"Lanthenas",45.102328,3.773801,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87407940,1,"Le Breuil/Couzes-S.-Fêt",45.472327,3.261949,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87407965,1,"Le-Puy-en-Velay-Fayolle",45.041662,3.886103,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87407973,1,"Le Puy-en-Velay-Hermit.",45.05444,3.865832,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87407981,1,"Le Treuil",45.10869,3.521473,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87408831,1,"Quatre-Routes-de-Saigne",45.353969,2.463645,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87408872,1,"Lezoux-Mairie",45.828223,3.379679,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87408880,1,"Lichemialle",45.257751,4.30038,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87408906,1,"Meaulne-Place-Centrale",46.598944,2.613285,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87408948,1,"Roueyre",45.048738,3.080915,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87408955,1,"Ris-Abris-Bus",46.00393,3.486098,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87408963,1,"Riom-es-Montagne-Cliniq",45.281652,2.6596,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87408971,1,"Reugny RN 144",46.462006,2.615466,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87408989,1,"Puy-Guillaume-Ville",45.960311,3.474269,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87409409,1,"Puy-Guillaume-Laroche",45.964519,3.476369,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87409417,1,"Pontmort RN9/D17",27.140973,-3.404561,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87409425,1,"Pontgibaud-Ville",45.832268,2.851228,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87409433,1,"Pont-du-Château-Croix-B",45.799032,3.244201,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87409441,1,"Pont-du-Château-Carref.",45.796698,3.305029,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87409466,1,"Pont-de-Dore-le-Chambon",45.840202,3.505704,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87409474,1,"Paulhaguet-Monument",45.207471,3.510482,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87409482,1,"Vieille-Brioude",45.264165,3.404438,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87409490,1,"Urcay-Hotel-du-Lyon-d'O",46.626818,2.589411,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87409508,1,"Thiers-Ville-Mairie",45.854975,3.547495,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87409516,1,"Thiers-le-Moutier",45.849763,3.537646,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87409524,1,"St-Florine-Place-F-Mitt",45.405458,3.319404,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87409532,1,"Sainte-Eugénie-de-Ville",45.138328,3.623882,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87409540,1,"St-Yorre-Nouvel-Hotel",46.066958,3.464877,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87409557,1,"St-Yorre-Croix-des-Vern",46.054379,3.469374,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87409664,1,"St-Sauves-Bourg",45.606799,2.687905,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87409698,1,"St-Eble",45.129718,3.557773,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87409763,1,"Bois-d'Oingt-Centre",45.921659,4.585274,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87409771,1,"Letra-Gabodière",45.961434,4.51648,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87417501,1,"Gare de Lancey",45.234472,5.880933,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87417808,1,"Ajain",46.207141,1.997206,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87417840,1,"MONTLUCON LEM",27.140973,-3.404561,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87420802,1,"Le-Teil-Sablons",44.552703,4.685657,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87420836,1,"Alba-Ruines-Romaines",44.570303,4.587538,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87420976,1,"St-Eloy-les-Mines-Lycée",46.159628,2.832829,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87440701,1,"Coubladour",45.114995,3.743683,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87453654,1,"Costaros",44.89439,3.849555,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87453670,1,"Pradelles",44.769705,3.883213,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87478784,1,"Le-Guidon",46.378786,4.249614,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87481002,1,"Gare de Nantes",47.217505,-1.541925,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87484006,1,"Gare de Angers-St-Laud",47.464434,-0.556949,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87484576,1,"Lamure-Collège",46.052071,4.492879,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87484584,1,"Poule-Mairie",46.148101,4.443914,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87487603,1,"Gare de Saumur",47.268972,-0.07143,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87497222,1,"Chantenay-Imbert-Bourg",46.733078,3.183144,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87501023,1,"Pierre-Le-Moutier-Monum",46.791381,3.11839,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87503524,1,"L'Habitarelle",44.634198,3.675714,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87534073,1,"Rochefort-Montagne",45.687115,2.805446,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87534081,1,"Lanobre",45.436974,2.533923,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87534099,1,"Bort-les-Orgues-Ville",45.399326,2.499248,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87534107,1,"Tauves",45.560312,2.622102,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87535096,1,"Aubenas-Gare-Routière",44.612264,4.407595,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87543017,1,"Gare de Aubrais-(les)",47.926917,1.906085,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87543165,1,"Gare de Salbris",47.42514,2.047737,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87547000,1,"Gare de Paris-Austerlitz",48.841652,2.366039,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87548438,1,"Chateauneuf-Lamontgie",46.02558,2.896298,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87556506,1,"Valence-Gare-Routière",44.927051,4.892615,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87556522,1,"Montélimar-G-Routière",44.559458,4.745225,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87562421,1,"Gare de Aulnat-Aéroport",45.792149,3.161272,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87566869,1,"Chatel-Guyon-Tourisme",45.918396,3.074723,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87566919,1,"Gare de Lentilly-Charpenay",45.816462,4.681294,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87570374,1,"Moulet-Marcenat",45.880665,2.998998,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87571000,1,"Gare de Tours",47.389814,0.693505,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87571240,1,"Gare de St-Pierre-des-Corps",47.385732,0.725054,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87576009,1,"Gare de Vierzon",47.226516,2.059824,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87576207,1,"Gare de Bourges",47.094094,2.394226,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87576272,1,"Gare de St-Florent-sur-Cher",46.992115,2.252149,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87576298,1,"Gare de Châteauneuf-sur-Cher",46.856686,2.310212,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87576322,1,"Gare de St-Amand-Montrond-Orval",46.726521,2.486062,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87581009,1,"Gare de Bordeaux-St-Jean",44.82654,-0.556194,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87586008,1,"Gare de Agen",44.207972,0.620905,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87586545,1,"Gare de Marmande",44.503067,0.168115,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87589390,1,"Allegre-Maison-Retraite",45.201964,3.713789,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87589499,1,"Condat-Centre-Equestre",45.333813,2.758561,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87589507,1,"Darsac-Lotissement",45.138847,3.73854,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87589564,1,"Gannat-Lycée-Eiffel",46.086162,3.197861,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87589572,1,"Gannat-Lycée-Procule",46.099205,3.190008,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87589580,1,"Ville-Gozet-Henri-Dunan",46.347913,2.593641,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87589598,1,"Puy-en-Velay-Hopital",45.0492,3.8772,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87589606,1,"Ancizes-St-Georges-Bour",45.924675,2.810414,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87589689,1,"Ancizes-St-Georges-Usin",45.921744,2.810002,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87589705,1,"Malaguet",45.24676,3.7196,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87589804,1,"Reugny-Rue-Bascule",46.46278,2.615431,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87589846,1,"St-Georges-Mons-Ecoles",45.93748,2.840995,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87590976,1,"Serres-Hte-Loire",45.177195,3.733287,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87592006,1,"Gare de Limoges-Bénédictins",45.836208,1.267452,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87594002,1,"Gare de Brive-la-Gaillarde",45.152562,1.528623,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87594093,1,"Gare de Ussel",45.557326,2.314433,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87594333,1,"Gare de Souillac",44.902337,1.465215,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87594564,1,"Gare de Les Quatre-Routes",44.99702,1.644498,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87594572,1,"Gare de St-Denis-près-Martel",44.945792,1.666287,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87594754,1,"Gare de Puybrun",44.921716,1.784029,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87594762,1,"Gare de Bretenoux-Biars",44.927568,1.844204,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87597609,1,"Gare de Guéret",46.174146,1.87917,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87597724,1,"Gare de Parsac-Gouzon",46.198312,2.174196,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87598755,1,"Gare de Limoux-Flassian",43.068508,2.218515,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87609354,1,"Bagnols-Stade",45.513781,2.59691,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87611004,1,"Gare de Toulouse-Matabiau",43.611464,1.453558,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87611244,1,"Gare de Montauban-Ville-Bourbon",44.014639,1.341974,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87611343,1,"Gare de Pamiers",43.116175,1.618998,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87611368,1,"Gare de Saverdun",43.239421,1.570422,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87611384,1,"Gare de Auterive",43.348835,1.468624,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87611483,1,"Gare de Latour-de-Carol-Enveitg",42.458157,1.90584,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87611491,1,"Porta",42.520349,1.822342,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87611509,1,"Gare de Porte-Puymorens",42.538759,1.82485,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87611517,1,"Gare de Andorre-L'Hospitalet",42.588385,1.798515,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87611525,1,"Gare de Mérens-les-Vals",42.658677,1.83642,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87611533,1,"Gare de Ax-les-Thermes",42.724805,1.833315,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87611558,1,"Gare de Luzenac-Garanou",42.764444,1.753154,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87611566,1,"Vèbre-La-Remise",42.773916,1.719166,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87611574,1,"Gare de Les Cabannes",42.786537,1.68618,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87611582,1,"Ussat-les-Bains-Centre",42.821052,1.621331,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87611590,1,"Gare de Tarascon-sur-Ariège",42.849453,1.600031,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87611616,1,"Gare de Foix",42.969299,1.607394,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87613000,1,"Gare de Cahors",44.44916,1.433238,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87613091,1,"Gare de Figeac",44.603514,2.037077,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87613141,1,"Gare de Gourdon",44.741898,1.389276,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87613356,1,"Gare de Caussade (T.-et-G.)",44.162304,1.533453,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87613604,1,"Gare de Bagnac",44.66528,2.160163,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87615039,1,"Gare de Castelnaudary",43.312646,1.950989,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87615112,1,"Gare de Lézignan-Corbières",43.199971,2.769857,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87615120,1,"Gare de Couffoulens-Leuc",43.155171,2.316929,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87615138,1,"Gare de Verzeille",43.130419,2.321219,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87615146,1,"Gare de Pomas",43.112171,2.288384,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87615161,1,"Gare de Limoux",43.056475,2.222999,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87615187,1,"Gare de Alet-les-Bains",42.997211,2.251852,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87615203,1,"Gare de Couiza-Montazels",42.9426,2.248326,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87615211,1,"Gare de Esperaza",42.935816,2.21803,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87615229,1,"Gare de Campagne-sur-Aude",42.916245,2.204272,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87615260,1,"Gare de Quillan",42.874293,2.181507,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87615286,1,"Gare de Carcassonne",43.217715,2.351883,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87630236,1,"St Romain Lachalm",45.265626,4.335242,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87630244,1,"St-Pal-de-Mons",45.245897,4.273885,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87630251,1,"St-Didier-en-Velay",45.302305,4.274096,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87640599,1,"Aimargues-Café-Lyces",43.684402,4.2076,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87640607,1,"Vauvert-Maison-p/o-Tous",43.695382,4.274963,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87640615,1,"Beauvoisin-Pl-Fontaine",43.7198,4.323759,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87640623,1,"St-Cesaire-Mas-Cheylon",44.028879,4.205553,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87640631,1,"Marvejols-PL-Henri-IV",44.555179,3.290936,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87640649,1,"Chirac-Ville",44.52286,3.267369,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87640656,1,"Balsieges-Arrêt-RN88",44.482325,3.456205,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87640672,1,"Les-Salelles-RN88",44.483435,3.279632,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87640680,1,"Le-Bruel-RN88",44.481419,3.35815,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87640698,1,"Le-Monastier-Ville",44.51564,3.255371,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87640706,1,"Campagne-sur-Aude-Pont",42.915905,2.205422,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87640714,1,"Couiza-Ste-Anne",42.941446,2.253671,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87640722,1,"Pomas-Lavoir",43.112046,2.29015,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87640730,1,"Verzeille-Rte-de-St-Hil",43.127446,2.324605,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87640748,1,"Leuc-Foyer",43.146142,2.323214,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87640755,1,"Couffoulens-Leuc-RD104",43.154596,2.318328,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87641001,1,"Gare de Montluçon-Ville",46.337875,2.596412,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87641043,1,"Gare de Lapeyrouse(Puy-de-Dôme)",46.226691,2.893278,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87641092,1,"St-Eloy",46.169528,2.834382,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87641134,1,"St-Gervais-Mairie",46.030319,2.808175,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87641167,1,"Les Ancizes-St-Georges",45.925725,2.808888,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87641183,1,"Manzat",45.962471,2.942202,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87641241,1,"Eygurande-Merlines",45.645326,2.460978,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87641274,1,"Laqueuille",45.64695,2.704938,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87641290,1,"La Miouze-Rochefort",45.763683,2.8275,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87641357,1,"Gare de Vallon-en-Sully",46.536485,2.610803,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87641365,1,"Gare de Magnette",46.46415,2.603004,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87641373,1,"Gare de Les Trillers",46.414413,2.599717,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87641399,1,"Le Vauriat",45.860325,2.920486,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87641415,1,"Gare de Commentry",46.295196,2.740011,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87641423,1,"Gare de Volvic",45.864581,3.003041,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87641456,1,"St-Sauves",45.608407,2.685736,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87641464,1,"La Bourboule",45.590452,2.746387,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87641472,1,"Le-Mont-Dore-Gare",45.579355,2.804801,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87645002,1,"Gare de Aurillac",44.920986,2.435547,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87645135,1,"Gare de Laroquebrou",44.964201,2.192841,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87645168,1,"Gare de Maurs",44.706133,2.199697,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87645192,1,"Gare de Le Rouget",44.856555,2.235418,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87645267,1,"Mauriac",45.221784,2.34489,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87645283,1,"Vendes",45.296779,2.388505,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87645440,1,"Gare de Vic-sur-Cère",44.975948,2.631437,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87645473,1,"Gare de Le Lioran",45.09075,2.753267,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87645481,1,"Gare de Murat (Cantal)",45.109081,2.869588,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87645507,1,"Gare de Neussargues",45.125386,2.979126,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87645606,1,"Ste-Anastasie",45.17272,2.968379,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87645614,1,"Allanche",45.22967,2.931457,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87645705,1,"Bort-les-Orgues",45.406357,2.502563,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87666099,1,"Chamelet-Centre.",27.140973,-3.404561,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87667980,1,"Diou-ville-Allier-(Bus)",46.533349,3.747946,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87668004,1,"Villeneuve-/-Allier-Cen",46.660109,3.247787,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87668095,1,"Thiel-Sur-Acolin-Bus",46.526266,3.578794,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87668111,1,"Montbeugny-Centre",46.528189,3.492704,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87677096,1,"Changy-Tourny-Monument",46.403334,4.253001,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87677138,1,"Chauffailles-Gambetta",46.206913,4.336505,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87680504,1,"Les-Trilliers-PN-Car.",27.140973,-3.404561,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87680553,1,"Riom_Es_M_la_Poste.",27.140973,-3.404561,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87680579,1,"Royat-T2C-Beausite.",45.768236,3.061834,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87680595,1,"St-Gervais-Ch-LPA.",27.140973,-3.404561,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87680694,1,"Chamalières-park-mun.",27.140973,-3.404561,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87680702,1,"Clermont-Uni-T2C.",45.77135,3.089131,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87680710,1,"Durtol-squa-sabourin.",45.795954,3.052385,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87680728,1,"Fix-St-Geneys-RN102.",27.140973,-3.404561,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87680736,1,"Lavoute-Arrêt-CG.",27.140973,-3.404561,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87686006,1,"Gare de Paris-Gare-de-Lyon",48.844922,2.373462,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87686600,1,"Puy-Guillaume-Emmaüs",27.140973,-3.404561,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87686634,1,"La-Sauvanie",27.140973,-3.404561,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87686667,1,"Gare de Paris-Bercy",48.839211,2.382799,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87687400,1,"Coubladour-Rond-Point",27.140973,-3.404561,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87691279,1,"Theix-Centre",27.140973,-3.404561,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87691576,1,"La-Cluse-Ville",46.170815,5.576363,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87693218,1,"Le-Mont-Dore-Centre",45.572562,2.808595,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87693291,1,"Le-Mont-Dore-Ski",27.140973,-3.404561,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87694687,1,"Gare de Paray-le-Monial",46.447256,4.113628,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87694695,1,"Gare de Digoin",46.485196,3.987637,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87694729,1,"Dyo",46.351716,4.26604,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87694737,1,"Gare de La Clayette-Baudemont",46.288162,4.298451,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87694778,1,"Gare de Chauffailles",46.207404,4.345377,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87694851,1,"Gare de St-Agnan",46.502017,3.879009,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87694869,1,"Gare de Gilly-sur-Loire",46.536983,3.781787,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87694885,1,"Charolles",46.435153,4.273414,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87695957,1,"Aiguebelette-Centre",45.53747,5.812967,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87695965,1,"Ambronay-Priay-Rd-1075",46.009723,5.340888,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87695973,1,"Bellignat-Lycée-Arbez-C",46.250586,5.632869,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87695999,1,"Bourg-En-Bresse-Archive",27.140973,-3.404561,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87696005,1,"Gare de Nevers",46.987349,3.15087,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87696013,1,"Bourg-En-Bresse-Gare-Ro",46.200098,5.214981,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87696153,1,"Hautecourt-Primaire",46.157876,5.420158,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87696260,1,"Gare de Saincaize",46.931373,3.071971,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87696294,1,"Gare de St-Pierre-le-Moûtier",46.793271,3.111736,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87696302,1,"Gare de Chantenay-St-Imbert",46.728304,3.171699,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87696328,1,"Gare de Moulins-sur-Allier",46.561364,3.338755,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87696351,1,"Gare de Varennes-sur-Allier",46.315441,3.394161,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87696385,1,"Les-Abrets-Rue-Italie",45.537169,5.584643,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87696427,1,"Gare de Dompierre-Sept-Fons",46.526267,3.674899,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87696500,1,"St-Martin-Du-Mont-Le-Fa",46.095643,5.314407,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87696658,1,"St-Paul-College",45.594344,6.44251,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87697003,1,"Albigny-Neuville-Arret",45.875407,4.833204,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87697011,1,"Anse-(Monument)",45.936973,4.718234,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87697029,1,"Collonges-F.-Tcl-Gar",45.831344,4.84664,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87697037,1,"Couzon-Au-Mont-D'or-Arr",45.848951,4.83204,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87697045,1,"Lyon-Vaise-Gare-Routièr",45.781597,4.805428,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87697128,1,"Gare de Lyon-Part-Dieu-Gare-Rou",45.760585,4.859435,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87697136,1,"Lyon-Perrache-Gare-Rout",27.140973,-3.404561,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87697144,1,"Argentine-La-Combe",45.501996,6.318867,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87697151,1,"Argentine-Gemelly",45.508123,6.316298,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87697169,1,"Legny-Ponts-Tarrets",45.906795,4.575537,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87697177,1,"Chabons-Lep",45.444264,5.430717,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87697193,1,"Clelles-Mairie",44.827226,5.622607,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87697466,1,"Grenoble-Eugène-Chavant",27.140973,-3.404561,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87697508,1,"La-Bridoire-Abris-Bus",45.530786,5.742835,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87697516,1,"Lus-La-Croix-Haute-1075",44.672095,5.698049,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87697524,1,"Monestier-Centre",44.916285,5.634476,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87697532,1,"Pont-Claix-TAG-Marcelli",45.125736,5.698188,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87697540,1,"Pringy-Gare-Arret-Sibra",45.939056,6.122245,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87697672,1,"Bourg-en-Bresse-Charité",27.140973,-3.404561,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87697698,1,"La-Chambre",45.359134,6.299662,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87697714,1,"Pontamafrey",45.310951,6.342517,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87697722,1,"Saint-Étienne-de-Cuines",45.342273,6.291278,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87698290,1,"Grandris-Centre",46.036918,4.472329,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87698308,1,"Grésy-S/Aix-Ondea",45.723245,5.918449,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87698316,1,"Tour-de-Salvagny-Hyppo",45.806348,4.719653,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87698332,1,"Lyon-St-Paul-Quai-Bondy",45.766488,4.828105,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87698340,1,"Lyon-St-Paul-la-Feuilée",45.766342,4.829385,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87698399,1,"Balbigny-Gare-Routière",45.817749,4.187397,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87698423,1,"Chamberry-Jacob",45.557789,5.910274,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87698449,1,"Communay-la-Guicharde",27.140973,-3.404561,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87698456,1,"Communay-les-Bonnières",27.140973,-3.404561,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87698464,1,"Communay-les-Brosses",27.140973,-3.404561,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87698506,1,"Feyzin-TCL-Gare",45.665467,4.853116,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87698514,1,"Flumet-Office-Tourisme",45.817585,6.513626,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87698530,1,"Le-Bourget-du-Lac-STAC",45.64449,5.868751,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87698555,1,"Le-Teil-Centre",44.553058,4.685483,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87698563,1,"Megève-Autogare",45.862105,6.61768,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87698589,1,"Mionnay-la-Poste",45.898906,4.931264,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87698605,1,"Neulise",45.902665,4.180374,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87698613,1,"Praz-sur-Arly-O.T.",45.837804,6.570849,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87698621,1,"Privas-Cours-du-Palais",44.734713,4.600253,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87698639,1,"Roanne-Gare-Routière",46.041211,4.060763,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87698720,1,"Sury-le-Comtal-Ville",45.540526,4.187252,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87698738,1,"Tassin-le-Baraillon",45.764497,4.75862,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87698746,1,"Ternay-Boucherrates",27.140973,-3.404561,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87698753,1,"Ternay-Centre",45.605328,4.811209,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87698761,1,"Ternay-Chassagne-GC",27.140973,-3.404561,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87698779,1,"Ternay-Chemin-de-gare",27.140973,-3.404561,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87698787,1,"Ternay-Croix-du-Morze",27.140973,-3.404561,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87698795,1,"Ugine-Place-Val-d'Arly",45.745953,6.421083,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87698803,1,"Vienne-Gare-Routière",45.521417,4.874058,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87699009,1,"La Chapelle-sous-Dun",46.258054,4.295551,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87700104,1,"Paugnat-Eglise",27.140973,-3.404561,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87713677,1,"Gare de Seurre",46.99645,5.151248,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87713701,1,"Gare de Mervans",46.798883,5.179536,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87713735,1,"Gare de Louhans",46.631126,5.217708,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87715441,1,"Gare de Morez",46.526327,6.023801,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87721035,1,"Gare de Amplepuis",45.971001,4.326723,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87721043,1,"Gare de St-Victor-Thizy",46.002585,4.281147,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87721050,1,"Gare de Régny",45.987729,4.215111,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87721159,1,"Gare de Lyon-St-Paul",45.766082,4.826904,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87721282,1,"Gare de St-Germain-au-Mont-d'Or",45.888442,4.804176,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87721290,1,"Gare de Quincieux",45.906904,4.778574,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87721332,1,"Gare de Villefranche-sur-Saône",45.984444,4.720814,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87721340,1,"Gare de St-Georges-de-Reneins",46.062191,4.718887,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87721357,1,"Gare de Belleville-sur-Saône",46.111942,4.729002,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87721423,1,"Gare de Lozanne",45.854135,4.68146,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87721431,1,"Gare de L'Arbresle",45.833249,4.618236,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87721449,1,"Gare de Dardilly-Le-Jubin",45.813655,4.758482,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87721456,1,"Gare de St-Romain-de-Popey",45.861532,4.542259,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87721464,1,"Gare de Pontcharra-St-Forgeux",45.871509,4.492797,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87721472,1,"Gare de Tarare",45.889788,4.439075,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87721480,1,"Gare de Dardilly-Les-Mouilles",45.801183,4.756221,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87721506,1,"Gare de Ecully-la-Demi-Lune",45.76571,4.77952,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87721514,1,"Gare de Tassin",45.761528,4.758592,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87721522,1,"Gare de Le Méridien",45.768833,4.748303,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87721548,1,"Gare de La Tour-de-Salvagny",45.800077,4.716151,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87721555,1,"Gare de Lentilly",45.821682,4.667021,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87721563,1,"Gare de Fleurieux-sur-Arbresle",45.844749,4.660569,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87721605,1,"Gare de Sain-Bel",45.811064,4.601252,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87721738,1,"Gare de Dommartin-Lissieu",45.847855,4.732195,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87721746,1,"Gare de Civrieux-d'Azergues",45.859195,4.718249,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87721753,1,"Gare de Chatillon-d'Azergues",45.875254,4.645199,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87721761,1,"Gare de Chessy (Rhône)",45.885537,4.622497,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87721779,1,"Le Breuil (Rhône)",45.896771,4.591215,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87721787,1,"Gare de Bois-d'Oingt-Légny",45.906588,4.57558,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87721811,1,"Ternand",45.946157,4.536593,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87721829,1,"Gare de Chamelet",45.981605,4.507096,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87721845,1,"Chambost-Allières.",46.018686,4.499135,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87721852,1,"Grandris-Folletière.",46.035952,4.49333,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87721860,1,"Gare de Lamure-sur-Azergues",46.061095,4.492123,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87721878,1,"St-Nizier-d'Azergues",46.087032,4.48043,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87721894,1,"Poule",46.148108,4.456527,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87722025,1,"Gare de Lyon-Perrache",45.748492,4.825748,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87722405,1,"Gare de Givors-Ville",45.585368,4.766243,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87722546,1,"Gare de Sérézin",45.627175,4.818039,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87722561,1,"Gare de Chasse-sur-Rhône",45.582394,4.79485,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87722587,1,"Gare de Vienne",45.521214,4.874305,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87722652,1,"Gare de St-Clair-les-Roches",45.450387,4.769905,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87722678,1,"Gare de Le Péage-de-Roussillon",45.371659,4.795408,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87723197,1,"Gare de Lyon-Part-Dieu",45.760585,4.859435,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87723353,1,"Gare de St-Priest",45.686649,4.934314,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87723361,1,"St-Pierre-de-Chandieu-R",45.647632,5.011816,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87723387,1,"Gare de St-Quentin-Fallavier",45.63812,5.099951,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87723395,1,"Gare de La Verpillière",45.627601,5.150745,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87723429,1,"Gare de Bourgoin-Jallieu",45.583968,5.273344,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87723478,1,"Gare de La Tour-du-Pin",45.560225,5.449547,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87723494,1,"Gare de St-André-le-Gaz",45.544507,5.524286,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87723536,1,"Gare de St-Maurice-de-Beynost",45.827433,4.977629,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87723569,1,"Gare de Montluel",45.847763,5.057543,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87723577,1,"Gare de La Valbonne",45.849261,5.124991,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87723585,1,"Gare de Meximieux-Pérouges",45.901787,5.193333,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87723700,1,"Gare de Sathonay-Rillieux",45.82025,4.875267,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87723718,1,"Gare de Les Echets",45.874622,4.910811,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87723734,1,"Gare de St-André-de-Corcy",45.92593,4.948782,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87723742,1,"Gare de St-Marcel-en-Dombes",45.950366,4.977512,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87723759,1,"Gare de Villars-les-Dombes",46.004255,5.028411,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87723767,1,"Gare de Marlieux-Chatillon",46.06406,5.073203,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87723783,1,"Gare de St-Paul-de-Varax",46.100057,5.128181,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87723791,1,"Gare de Servas-Lent",46.130662,5.168125,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87725689,1,"Gare de Mâcon-Ville",46.302659,4.825149,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87725705,1,"Gare de Mâcon-Loché-TGV",46.282898,4.778948,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87725713,1,"Gare de Crêches-sur-Saône",46.246615,4.783901,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87725739,1,"Gare de Romanèche-Thorins",46.176382,4.742101,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87725804,1,"Gare de Pont-de-Veyle",46.267827,4.892948,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87725812,1,"St-Jean-sur-Veyle",46.260588,4.915644,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87725820,1,"Gare de Vonnas",46.227197,4.991746,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87725838,1,"Gare de Mézériat",46.234927,5.046569,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87726000,1,"Gare de St-Etienne-Châteaucreux",45.443382,4.399996,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87726158,1,"Gare de St-Etienne-la-Terrasse",45.464852,4.379529,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87726208,1,"Gare de Veauche St Galmier",45.565928,4.293199,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87726307,1,"Gare de St-Chamond",45.472522,4.516984,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87726331,1,"Gare de Rive-de-Gier",45.524337,4.606362,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87726406,1,"Gare de Andrézieux",45.521762,4.255176,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87726414,1,"Gare de Bonson",45.522171,4.216222,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87726422,1,"Gare de Sury-le-Comtal",45.529078,4.182426,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87726430,1,"Gare de St-Romain-le-Puy",45.554546,4.12077,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87726448,1,"Gare de Montbrison",45.604466,4.078218,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87726471,1,"Boën",45.74137,4.005014,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87726661,1,"St-Didier-la-Seauve",45.296787,4.259113,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87726687,1,"Dunières-Bascule",45.211274,4.349684,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87726729,1,"Gare de Firminy",45.391645,4.286429,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87726760,1,"Gare de Aurec",45.371129,4.198434,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87726778,1,"Gare de Bas-Monistrol",45.297668,4.139717,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87726794,1,"Beauzac-Rue-des-Vivats",45.23567,4.094252,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87726802,1,"Gare de Roanne",46.040211,4.063135,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87726828,1,"Gare de Le Coteau",46.023935,4.086301,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87726869,1,"Gare de Balbigny",45.817785,4.187385,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87726877,1,"Gare de Feurs",45.744084,4.230446,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87726885,1,"Gare de Montrond-les-Bains",45.644402,4.248833,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87731653,1,"Néronde",45.79871,3.520632,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87731695,1,"Job",45.61592,3.745572,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87731703,1,"La Forie",45.590508,3.762072,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87731778,1,"Monlet",45.219711,3.714153,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87731786,1,"Céaux-d'Allègre",45.18083,3.747499,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87731802,1,"St-George-d'Aurac-Bourg",45.156218,3.540769,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87732008,1,"Gare de Vichy",46.12697,3.430489,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87732206,1,"Gare de St-Germain-des-Fossés",46.209103,3.430489,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87732404,1,"Gare de Gannat",46.097436,3.20488,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87734004,1,"Gare de Clermont-Ferrand",45.778569,3.100519,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87734038,1,"Gare de Royat-Chamalières",45.767572,3.061504,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87734053,1,"Gare de Riom-Châtel-Guyon",45.889842,3.120813,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87734087,1,"Gare de Pont-du-Château",45.788533,3.238421,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87734129,1,"Gare de Aigueperse",46.014847,3.197877,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87734186,1,"Gare de Vic-le-Comte",45.664898,3.207027,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87734194,1,"Gare de Parent-Coudes-Champeix",45.61442,3.216807,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87734202,1,"Gare de Issoire",45.543953,3.254071,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87734228,1,"Gare de Le Breuil-sur-Couze",45.467089,3.262143,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87734236,1,"Le Saut-du-Loup",45.452751,3.302208,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87734244,1,"Gare de Brassac-les-Mines",45.4141,3.32993,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87734251,1,"Gare de Arvant",45.365383,3.310488,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87734269,1,"Gare de Brioude",45.300657,3.378675,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87734293,1,"Gare de Paulhaguet",45.21015,3.500395,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87734301,1,"Gare de St-Georges-d'Aurac",45.160594,3.494704,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87734319,1,"Gare de Langeac",45.101225,3.490574,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87734335,1,"Gare de Monistrol-d'Allier",44.96963,3.649786,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87734350,1,"Gare de Langogne",44.732607,3.857278,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87734368,1,"Gare de Luc (Lozère)",44.65409,3.891105,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87734426,1,"Gare de Vertaizon",45.784569,3.288226,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87734442,1,"Gare de Lezoux",45.821139,3.385773,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87734459,1,"Gare de Pont-de-Dore",45.842816,3.490427,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87734475,1,"Gare de Thiers",45.861087,3.543058,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87734509,1,"Noirétable",45.815906,3.761031,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87734525,1,"Courpière",45.757656,3.544056,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87734533,1,"Giroux",45.695371,3.590237,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87734541,1,"Olliergues",45.675772,3.637051,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87734558,1,"Pont-de-David",45.645049,3.668076,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87734566,1,"Vertolaye",45.642927,3.706008,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87734574,1,"Ambert",45.549647,3.735071,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87734582,1,"Marsac-en-Livradois",45.481524,3.726544,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87734590,1,"Arlanc-Place-Eglise",45.413238,3.724652,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87734632,1,"La Chaise-Dieu",45.316443,3.696954,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87734640,1,"Sembadel",45.277965,3.720148,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87734665,1,"Allègre",45.203328,3.713327,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87734673,1,"Gare de Darsac",45.142191,3.736667,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87734681,1,"Borne",45.100197,3.798542,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87734699,1,"Gare de Le Puy-en-Velay",45.042724,3.892528,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87734707,1,"Gare de Lavoûte-sur-Loire",45.121295,3.905323,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87734715,1,"Gare de St-Vincent-le-Château",45.148612,3.918503,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87734723,1,"Gare de Vorey",45.182877,3.911361,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87734731,1,"Gare de Chamalières",45.205918,3.99197,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87734749,1,"Gare de Retournac",45.201312,4.036033,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87734871,1,"Gare de Massiac-Blesle",45.253703,3.196585,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87739961,1,"St-Symphorien-des-Bois",46.332735,4.2814,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87741009,1,"Gare de Chambéry-Chal.-les-Eaux",45.571038,5.9198,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87741074,1,"Gare de Culoz",45.843258,5.778699,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87741108,1,"Gare de Vions-Chanaz",45.824386,5.807297,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87741116,1,"Gare de Chindrieux",45.803459,5.846921,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87741132,1,"Gare de Aix-les-Bains-le-Revard",45.687862,5.90935,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87741140,1,"Gare de Viviers-du-Lac",45.648528,5.903319,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87741181,1,"Gare de Montmélian",45.503065,6.043118,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87741223,1,"Gare de St-Pierre-d'Albigny",45.557372,6.156358,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87741231,1,"Gare de Chamousset",45.557515,6.206436,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87741249,1,"Aiton-Salle-Polyvalente",45.559471,6.259363,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87741256,1,"Gare de Aiguebelle",45.543666,6.306747,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87741272,1,"Argentine",45.493258,6.313831,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87741280,1,"Gare de Epierre-St-Léger",45.456968,6.292469,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87741298,1,"Les Chavannes-St-Rémy",45.387624,6.276047,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87741306,1,"Gare de St-Avre-la-Chambre",45.353102,6.302884,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87741439,1,"Gare de Lépin-le-Lac-la-Bauche",45.541546,5.764963,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87741447,1,"La Bridoire",45.531044,5.74294,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87741454,1,"Gare de St-Béron-la-Bridoire",45.503934,5.731895,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87741462,1,"Domessin-le-Bonnard",45.524942,5.695229,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87741470,1,"Gare de Pont-de-Beauvoisin",45.524541,5.680665,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87741496,1,"Gare de Les Abrets-Fitilieu",45.542126,5.575466,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87741504,1,"Gare de Virieu-le-Grand-Belley",45.848315,5.653637,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87741611,1,"Gare de Grésy-sur-Isère",45.594439,6.258861,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87741629,1,"Gare de Frontenex",45.63055,6.314034,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87741645,1,"Gare de Albertville",45.673184,6.383238,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87741678,1,"La Bathie",45.629544,6.446135,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87741686,1,"Cévins-échangeur",45.59503,6.446911,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87741694,1,"Gare de Notre-Dame-de-Briançon",45.539307,6.468747,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87741702,1,"Petit-Coeur-la-Léchère",45.520487,6.484088,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87741710,1,"Aigueblanche-Centre",45.500203,6.511056,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87741728,1,"Gare de Moûtiers-Salins-Brides",45.486477,6.531382,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87741769,1,"Gare de Aime-la-Plagne",45.554368,6.648884,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87741777,1,"Gare de Landry",45.574205,6.733866,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87741793,1,"Gare de Bourg-St-Maurice",45.618521,6.771481,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87742007,1,"Gare de Modane",45.193558,6.659178,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87742320,1,"Gare de St-Jean-de-Maurienne-A.",45.277842,6.354198,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87742361,1,"Gare de St-Michel-Valloire",45.217247,6.471118,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87743005,1,"Gare de Bourg-en-Bresse",46.200126,5.214969,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87743104,1,"La-Vavrette-Tossiat",46.132672,5.28769,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87743112,1,"Gare de St-Martin-du-Mont",46.095816,5.303041,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87743120,1,"Gare de Pont-d'Ain",46.054006,5.334332,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87743146,1,"Gare de Ambronay-Priay",46.011639,5.338266,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87743328,1,"Gare de Villereversure",46.194155,5.397522,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87743351,1,"Gare de Nurieux",46.184727,5.527912,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87743500,1,"Montréal",46.184275,5.577369,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87743518,1,"Martignat",46.209449,5.610343,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87743534,1,"Gare de Oyonnax",46.259609,5.653252,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87743591,1,"Gare de Molinges",46.356961,5.768063,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87743633,1,"Gare de St-Claude",46.38993,5.860389,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87743716,1,"Gare de Ambérieu-en-Bugey",45.954008,5.342313,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87743740,1,"Gare de St-Rambert-en-Bugey",45.947355,5.438595,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87743757,1,"Gare de Tenay-Hauteville",45.9223,5.50095,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87745000,1,"Gare de Bellegarde-Gare",46.109704,5.823646,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87745430,1,"Gare de St-Julien-en-Genevois",46.142063,6.085524,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87745497,1,"Gare de Annemasse",46.19923,6.236388,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87745588,1,"Gare de Machilly",46.251269,6.32818,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87745596,1,"Gare de Bons-en-Chablais",46.270031,6.366161,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87745620,1,"Gare de Perrignier",46.303286,6.424921,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87745646,1,"Gare de Thonon-les-Bains",46.36898,6.481557,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87745679,1,"Gare de Evian-les-Bains",46.397889,6.577472,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87745927,1,"Genève-Eaux-Vives-Rieu",46.200728,6.16596,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87746008,1,"Gare de Annecy",45.902059,6.121819,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87746115,1,"Gare de Albens",45.786133,5.948551,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87746149,1,"Gare de Rumilly",45.863057,5.947954,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87746248,1,"Gare de Groisy-Thorens-la-Caill",46.011151,6.175761,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87746305,1,"Gare de La Roche-sur-Foron",46.067671,6.303735,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87746339,1,"Gare de Bonneville",46.077714,6.416476,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87746370,1,"Gare de Cluses (Hte-Savoie)",46.061419,6.582681,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87746438,1,"Gare de Sallanches-Comb.Megève",45.935669,6.636471,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87746479,1,"Gare de St-Gervais-L-B-Le-Fayet",45.90647,6.700717,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87746511,1,"Gare de Reignier",46.125618,6.267536,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87746719,1,"Gare de Servoz",45.924482,6.763484,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87746743,1,"Gare de Les Houches",45.893964,6.797387,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87746750,1,"Gare de Taconnaz",45.89869,6.82423,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87746768,1,"Gare de Les Bossons",45.906799,6.839171,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87746776,1,"Gare de Les Pèlerins",45.912763,6.847743,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87746784,1,"Gare de Chamonix-Mont-Blanc",45.922709,6.874271,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87746818,1,"Gare de Les Moussoux",45.916717,6.859921,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87747006,1,"Gare de Grenoble",45.191463,5.71453,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87747204,1,"Gare de Virieu-sur-Bourbre",45.484772,5.475453,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87747212,1,"Gare de Chabons",45.438403,5.4281,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87747220,1,"Gare de Le Grand-Lemps",45.396678,5.423061,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87747246,1,"Gare de Rives",45.357595,5.491897,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87747279,1,"Gare de Réaumont-St-Cassien",45.368795,5.534865,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87747287,1,"Gare de Voiron",45.364004,5.594911,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87747329,1,"Gare de Moirans",45.322146,5.58196,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87747402,1,"Gare de Grenoble U.-Gières",45.184903,5.784731,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87747451,1,"Gare de Brignoud",45.262462,5.901427,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87747477,1,"Gare de Goncelin",45.34196,5.974107,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87747493,1,"Gare de Pontcharra-sur-Bréda",45.434038,6.007793,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87747535,1,"Gare de Jarrie-Vizille",45.085406,5.742256,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87747568,1,"Gare de St-Georges-de-Commiers",45.043723,5.701176,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87747576,1,"Gare de Vif",45.047648,5.68541,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87747592,1,"Gare de Monestier-de-Clermont",44.912024,5.633945,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87747626,1,"Gare de Clelles-Mens",44.827253,5.605012,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87747691,1,"Gare de Moirans-Galifette",45.323999,5.564966,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87751008,1,"Gare de Marseille-St-Charles",43.30273,5.38065,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87751081,1,"Gare de Marseille-Blancarde",43.296203,5.406552,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87751404,1,"Gare de Aix-en-Provence",43.522868,5.445323,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87751420,1,"Gare de Gardanne",43.456007,5.463322,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87751438,1,"Gare de Simiane",43.434724,5.426011,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87751800,1,"Gare de Septèmes",43.403107,5.370134,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87751842,1,"Gare de Ste-Marthe-en-Provence",43.339269,5.390401,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87753004,1,"Gare de Miramas",43.58074,4.999602,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87753657,1,"Gare de Arles",43.684844,4.632019,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87753707,1,"Gare de Orgon",43.785912,5.045688,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87753715,1,"Gare de Sénas",43.740965,5.073336,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87753731,1,"Gare de Lamanon",43.699991,5.091304,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87753764,1,"Gare de Salon",43.639064,5.088598,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87755009,1,"Gare de Toulon",43.128316,5.929458,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87755447,1,"Gare de Les Arcs-Draguignan",43.455729,6.482462,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87756056,1,"Gare de Nice-Ville",43.704711,7.261786,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87757526,1,"Gare de St-Raphaël-Valescure",43.423606,6.769013,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87757625,1,"Gare de Cannes",43.553913,7.019725,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87757674,1,"Gare de Antibes",43.585789,7.119516,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87761007,1,"Gare de Valence-Ville",44.92807,4.893295,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87761106,1,"Gare de St-Rambert-d'Albon",45.297816,4.810625,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87761130,1,"Gare de St-Vallier-sur-Rhône",45.185682,4.814339,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87761163,1,"Gare de Tain",45.072181,4.839746,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87761239,1,"Gare de L'Isle-d'Abeau",45.607621,5.219552,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87761270,1,"Annonay-Gare-Route",45.243781,4.672743,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87761460,1,"Tournon-Centre",45.063213,4.83434,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87761510,1,"Charmes-sur-Rhône-centr",44.862732,4.834795,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87761650,1,"Gare de Romans-Bourg-de-Péage",45.04886,5.049494,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87761684,1,"Gare de St-Hilaire-St-Nazaire",45.071316,5.243843,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87761718,1,"Gare de St-Marcellin",45.150897,5.323582,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87761726,1,"Gare de Vinay",45.207932,5.410166,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87761742,1,"Gare de Poliénas",45.255896,5.473763,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87761759,1,"Gare de Tullins-Fures",45.300932,5.492143,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87761783,1,"Gare de Crest",44.730187,5.01611,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87761817,1,"Gare de Saillans",44.694377,5.194175,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87761841,1,"Gare de Die",44.758213,5.363257,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87761874,1,"Gare de Luc-en-Diois",44.613687,5.454617,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87763003,1,"Gare de Gap",44.563695,6.085684,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87763029,1,"Gare de Valence-TGV",44.99137,4.978941,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87763250,1,"Gare de Aspres-sur-Buech",44.519393,5.754555,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87763300,1,"Gare de Veynes-Dévoluy",44.531997,5.815829,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87763425,1,"Gare de Chorges",44.545705,6.272059,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87763466,1,"Gare de Embrun",44.566954,6.496732,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87763508,1,"Gare de Montdauphin-Guillestre",44.674596,6.615614,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87763557,1,"Gare de L'Argentière-les-Ecrins",44.791,6.556405,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87763607,1,"Gare de Briançon",44.889807,6.632947,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87764407,1,"Le-Pouzin-Centre",44.75591,4.748131,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87764712,1,"St-Jean-Centenier-Ctr",44.589412,4.536456,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87764720,1,"Villeneuve-de-Berg-Cent",44.554922,4.498138,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87764753,1,"Aubenas-Boutique-SNCF",44.610787,4.390891,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87765008,1,"Gare de Avignon-Centre",43.941877,4.805262,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87765412,1,"Gare de Montfavet",43.932632,4.873974,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87765420,1,"Gare de Morières-lès-Avignon",43.941462,4.908204,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87765438,1,"Gare de St-Saturnin-d'Avignon",43.953177,4.935293,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87765446,1,"Gare de Gadagne",43.929678,4.956832,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87765453,1,"Gare de Le Thor",43.926526,4.996277,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87765479,1,"Gare de L'Isle-s-Sorgue - Font",43.917342,5.047601,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87765503,1,"Gare de Cavaillon",43.834516,5.043653,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87773002,1,"Gare de Montpellier-Saint-Roch",43.605834,3.88236,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87773200,1,"Gare de Sète",43.412812,3.696396,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87773408,1,"Gare de Lunel",43.679515,4.130807,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87773457,1,"Gare de Baillargues",43.653117,4.006689,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87773556,1,"Gare de Frontignan",43.444586,3.759015,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87775007,1,"Gare de Nîmes",43.832293,4.365835,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87775114,1,"Gare de Vergèze-Codognan",43.739817,4.218844,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87775148,1,"Gare de Chasserades",44.553968,3.839677,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87775171,1,"Gare de La Bastide-St-Laurent",44.592579,3.903854,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87775197,1,"Gare de Villefort",44.43944,3.923321,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87775213,1,"Gare de Génolhac",44.348018,3.951822,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87775254,1,"Gare de Grand-Combe-la-Pise",44.209949,4.033467,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87775288,1,"Gare de Alès",44.128126,4.084779,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87775361,1,"Gare de St-Geniès-de-Malgoirès",43.950539,4.215112,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87775791,1,"Gare de Générac",43.732975,4.344145,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87775817,1,"Gare de Vauvert",43.695314,4.270252,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87775825,1,"Gare de Le Cailar",43.683192,4.234767,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87775841,1,"Gare de St-Laurent-d'Aigouze",43.638913,4.192702,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87775858,1,"Gare de Aigues-Mortes",43.571117,4.191107,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87775866,1,"Gare de Le Grau-du-Roi",43.536582,4.140867,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87781005,1,"Gare de Béziers",43.336225,3.219218,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87781104,1,"Gare de Narbonne",43.191033,3.005956,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87781278,1,"Gare de Agde",43.317574,3.46602,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87781609,1,"Gare de Bédarieux",43.607632,3.149005,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87781666,1,"Gare de Magalas",43.467755,3.2295,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87782607,1,"Gare de Clermont-la-Pardieu",45.766954,3.134207,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87783001,1,"Gare de Millau",44.10187,3.074898,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87783159,1,"Talizat",45.114473,3.044493,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87783167,1,"Andelat",45.058516,3.057667,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87783175,1,"Gare de St-Flour-Chaudes-Aigues",45.034838,3.106166,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87783241,1,"Gare de St-Chély-d'Apcher",44.801701,3.270741,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87783266,1,"Gare de Aumont-Aubrac",44.71814,3.283415,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87783282,1,"Gare de Marvejols",44.544616,3.281048,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87783308,1,"Gare de Le Monastier",44.509002,3.252196,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87783324,1,"Gare de Banassac-la-Canourgue",44.447642,3.19621,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87783365,1,"Gare de Séverac-D'Aveyron",44.325205,3.057387,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87783480,1,"St-Affrique",43.956689,2.881909,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87783530,1,"Gare de Chanac",44.473375,3.344954,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87783563,1,"Gare de Barjac",44.499357,3.410563,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87783605,1,"Gare de Mende",44.522332,3.501908,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87783647,1,"Gare de Bagnols-Chadenet",44.528315,3.628142,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87783654,1,"Gare de Allenc",44.541673,3.664216,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87783670,1,"Gare de Belvezet",44.561861,3.751881,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87784009,1,"Gare de Perpignan",42.696075,2.879617,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87784207,1,"Gare de Elne",42.597369,2.963521,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87784231,1,"Gare de Argelès-sur-Mer",42.543951,3.0215,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87784256,1,"Gare de Collioure",42.526892,3.078721,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87784264,1,"Gare de Port-Vendres",42.513381,3.102386,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87784298,1,"Gare de Banyuls-sur-Mer",42.482619,3.124411,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87785006,1,"Gare de Cerbère",42.442764,3.165525,,1,,Europe/Paris,,SIN, +STE:SA:OCE83045013,1,"Gare de Ventimiglia-Stazione",43.79217,7.609683,,1,,Europe/Paris,,STE, +STE:SA:OCE85010033,1,"Gare de Satigny",46.214251,6.037536,,1,,Europe/Paris,,STE, +STE:SA:OCE85010066,1,"Gare de Vernier-Meyrin",46.220734,6.093892,,1,,Europe/Paris,,STE, +STE:SA:OCE87111864,1,"Gare de Balsieges-Bourg",44.482274,3.456858,,1,,Europe/Paris,,STE, +STE:SA:OCE87184002,1,"Gare de Belfort-Ville",47.632447,6.853924,,1,,Europe/Paris,,STE, +STE:SA:OCE87184507,1,"Gare de Héricourt",47.573218,6.769411,,1,,Europe/Paris,,STE, +STE:SA:OCE87184523,1,"Gare de Montbéliard-Ville",47.510544,6.801315,,1,,Europe/Paris,,STE, +STE:SA:OCE87184572,1,"Gare de L'Isle-sur-le-Doubs",47.44748,6.581431,,1,,Europe/Paris,,STE, +STE:SA:OCE87184622,1,"Gare de Clerval",47.396604,6.492318,,1,,Europe/Paris,,STE, +STE:SA:OCE87282624,1,"Gare de Lyon-Jean-Macé",45.745198,4.841515,,1,,Europe/Paris,,STE, +STE:SA:OCE87323675,1,"Gare de Montluçon-Rimard",46.335626,2.611261,,1,,Europe/Paris,,STE, +STE:SA:OCE87335521,1,"Grenoble-Gare-Routière",45.192674,5.714361,,1,,Europe/Paris,,STE, +STE:SA:OCE87396895,1,"Gare de Clermont - La Rotonde",45.768177,3.09126,,1,,Europe/Paris,,STE, +STE:SA:OCE87401323,1,"Gare de Mouans Sartoux",43.620462,6.974152,,1,,Europe/Paris,,STE, +STE:SA:OCE87417501,1,"Gare de Lancey",45.234472,5.880933,,1,,Europe/Paris,,STE, +STE:SA:OCE87420596,1,"Gare de Cenon",44.856768,-0.533602,,1,,Europe/Paris,,STE, +STE:SA:OCE87462085,1,"Gare de Chamonix-Aiguille-Midi",45.919901,6.866782,,1,,Europe/Paris,,STE, +STE:SA:OCE87484584,1,"Poule-Mairie",46.148101,4.443914,,1,,Europe/Paris,,STE, +STE:SA:OCE87559070,1,"Gare de Nevers-Le-Banlay",47.006817,3.163619,,1,,Europe/Paris,,STE, +STE:SA:OCE87565143,1,"Gare de Halte-De-Fontanil",43.764175,7.338556,,1,,Europe/Paris,,STE, +STE:SA:OCE87574475,1,"Gare de Bléré-la-Croix",47.337723,0.987737,,1,,Europe/Paris,,STE, +STE:SA:OCE87574491,1,"Gare de Chenonceaux",47.330651,1.065394,,1,,Europe/Paris,,STE, +STE:SA:OCE87574855,1,"Gare de Montrichard",47.343576,1.17182,,1,,Europe/Paris,,STE, +STE:SA:OCE87574897,1,"Gare de St-Aignan-Noyers",47.286728,1.383662,,1,,Europe/Paris,,STE, +STE:SA:OCE87576280,1,"Gare de Lunery",46.93513,2.275066,,1,,Europe/Paris,,STE, +STE:SA:OCE87576306,1,"Gare de Bigny",46.801897,2.368226,,1,,Europe/Paris,,STE, +STE:SA:OCE87576348,1,"Gare de Urçay",46.629334,2.58668,,1,,Europe/Paris,,STE, +STE:SA:OCE87576868,1,"Gare de Selles-sur-Cher",47.281595,1.546144,,1,,Europe/Paris,,STE, +STE:SA:OCE87576876,1,"Gare de Gièvres",47.27873,1.667812,,1,,Europe/Paris,,STE, +STE:SA:OCE87576884,1,"Gare de Villefranche-sur-Cher",47.29474,1.768037,,1,,Europe/Paris,,STE, +STE:SA:OCE87580340,1,"Gare de Arenc-Euroméditerranée",43.313511,5.367922,,1,,Europe/Paris,,STE, +STE:SA:OCE87584052,1,"Gare de Libourne",44.915884,-0.236368,,1,,Europe/Paris,,STE, +STE:SA:OCE87584516,1,"Gare de Coutras",45.036654,-0.131429,,1,,Europe/Paris,,STE, +STE:SA:OCE87590299,1,"Gare de Nice-Pont-Michel",43.722792,7.291653,,1,,Europe/Paris,,STE, +STE:SA:OCE87592311,1,"Gare de Ambazac",45.952901,1.406502,,1,,Europe/Paris,,STE, +STE:SA:OCE87592345,1,"Gare de St-Sulpice-Laurière",46.046867,1.476283,,1,,Europe/Paris,,STE, +STE:SA:OCE87592725,1,"Gare de Nexon",45.691534,1.178428,,1,,Europe/Paris,,STE, +STE:SA:OCE87594556,1,"Gare de Turenne",45.039829,1.5998,,1,,Europe/Paris,,STE, +STE:SA:OCE87594739,1,"Gare de Vayrac",44.950138,1.706288,,1,,Europe/Paris,,STE, +STE:SA:OCE87594747,1,"Gare de Bétaille",44.942533,1.734529,,1,,Europe/Paris,,STE, +STE:SA:OCE87594796,1,"Gare de Laval-de-Cère",44.951291,1.931412,,1,,Europe/Paris,,STE, +STE:SA:OCE87595009,1,"Gare de Périgueux",45.187164,0.707181,,1,,Europe/Paris,,STE, +STE:SA:OCE87595124,1,"Gare de Thiviers",45.418954,0.921349,,1,,Europe/Paris,,STE, +STE:SA:OCE87595298,1,"Gare de Mussidan",45.034374,0.354066,,1,,Europe/Paris,,STE, +STE:SA:OCE87597625,1,"Gare de Marsac (Creuse)",46.094192,1.585606,,1,,Europe/Paris,,STE, +STE:SA:OCE87597633,1,"Gare de Vieilleville",46.091135,1.673544,,1,,Europe/Paris,,STE, +STE:SA:OCE87597674,1,"Gare de Montaigut (Creuse)",46.136792,1.733935,,1,,Europe/Paris,,STE, +STE:SA:OCE87597708,1,"Gare de Busseau-sur-Creuse",46.123093,2.023102,,1,,Europe/Paris,,STE, +STE:SA:OCE87597740,1,"Gare de Lavaufranche",46.321408,2.270338,,1,,Europe/Paris,,STE, +STE:SA:OCE87611301,1,"Gare de St-Agne",43.579262,1.449555,,1,,Europe/Paris,,STE, +STE:SA:OCE87611327,1,"Gare de Varilhes",43.04149,1.628576,,1,,Europe/Paris,,STE, +STE:SA:OCE87611350,1,"Gare de Vernet-d'Ariège",43.189488,1.611697,,1,,Europe/Paris,,STE, +STE:SA:OCE87611376,1,"Gare de Cintegabelle",43.305347,1.521085,,1,,Europe/Paris,,STE, +STE:SA:OCE87611392,1,"Gare de Venerque-le-Vernet",43.433328,1.425869,,1,,Europe/Paris,,STE, +STE:SA:OCE87611400,1,"Gare de Portet-St-Simon",43.530781,1.405897,,1,,Europe/Paris,,STE, +STE:SA:OCE87611707,1,"Gare de Escalquens",43.517042,1.542432,,1,,Europe/Paris,,STE, +STE:SA:OCE87611723,1,"Gare de Baziège",43.453554,1.620687,,1,,Europe/Paris,,STE, +STE:SA:OCE87612002,1,"Gare de Labège-Innopole",43.547461,1.512958,,1,,Europe/Paris,,STE, +STE:SA:OCE87612010,1,"Gare de Montaudran",43.573694,1.480239,,1,,Europe/Paris,,STE, +STE:SA:OCE87612028,1,"Gare de Labège-Village",43.53051,1.533338,,1,,Europe/Paris,,STE, +STE:SA:OCE87613109,1,"Gare de Capdenac",44.577656,2.078902,,1,,Europe/Paris,,STE, +STE:SA:OCE87613463,1,"Gare de Najac",44.222483,1.976568,,1,,Europe/Paris,,STE, +STE:SA:OCE87613471,1,"Gare de Laguépie",44.145489,1.96863,,1,,Europe/Paris,,STE, +STE:SA:OCE87613489,1,"Gare de Lexos",44.142223,1.884432,,1,,Europe/Paris,,STE, +STE:SA:OCE87613802,1,"Gare de Cordes-Vindrac",44.066994,1.899996,,1,,Europe/Paris,,STE, +STE:SA:OCE87613877,1,"Gare de Salles-Courbatiers",44.475548,2.079019,,1,,Europe/Paris,,STE, +STE:SA:OCE87613893,1,"Gare de Villefranche-Rouergue",44.347681,2.036583,,1,,Europe/Paris,,STE, +STE:SA:OCE87615013,1,"Gare de Villefranche-Lauragais",43.398453,1.7145,,1,,Europe/Paris,,STE, +STE:SA:OCE87615054,1,"Gare de Bram",43.243705,2.119556,,1,,Europe/Paris,,STE, +STE:SA:OCE87615245,1,"Gare de Tessonnières",43.928396,1.93741,,1,,Europe/Paris,,STE, +STE:SA:OCE87615252,1,"Gare de Gaillac",43.905963,1.894819,,1,,Europe/Paris,,STE, +STE:SA:OCE87615310,1,"Gare de Lisle-sur-Tarn",43.856228,1.807745,,1,,Europe/Paris,,STE, +STE:SA:OCE87615344,1,"Gare de St-Sulpice (Tarn)",43.775412,1.681037,,1,,Europe/Paris,,STE, +STE:SA:OCE87616011,1,"Gare de Avignonet",43.363885,1.787767,,1,,Europe/Paris,,STE, +STE:SA:OCE87618116,1,"Gare de Pins Justaret",43.480772,1.399589,,1,,Europe/Paris,,STE, +STE:SA:OCE87618207,1,"Gare de Montlaur",43.474894,1.577942,,1,,Europe/Paris,,STE, +STE:SA:OCE87618215,1,"Gare de Villenouvelle",43.433287,1.660884,,1,,Europe/Paris,,STE, +STE:SA:OCE87635581,1,"Gare de La-Barasse",43.285295,5.484613,,1,,Europe/Paris,,STE, +STE:SA:OCE87641050,1,"Gare de Louroux-de-Bouble",46.224072,2.985003,,1,,Europe/Paris,,STE, +STE:SA:OCE87641068,1,"Gare de Bellenaves",46.199255,3.066611,,1,,Europe/Paris,,STE, +STE:SA:OCE87641076,1,"Gare de St-Bonnet-de-Rochefort",46.148279,3.139343,,1,,Europe/Paris,,STE, +STE:SA:OCE87641191,1,"Gare de La Ville-Gozet",46.350058,2.591728,,1,,Europe/Paris,,STE, +STE:SA:OCE87641217,1,"Gare de Huriel",46.371419,2.476122,,1,,Europe/Paris,,STE, +STE:SA:OCE87641449,1,"Gare de Durtol-Nohanent",45.794745,3.048614,,1,,Europe/Paris,,STE, +STE:SA:OCE87645101,1,"Gare de Ytrac",44.91062,2.364315,,1,,Europe/Paris,,STE, +STE:SA:OCE87645150,1,"Gare de La Capelle-Viescamp",44.920494,2.265382,,1,,Europe/Paris,,STE, +STE:SA:OCE87645176,1,"Gare de Pers",44.886979,2.240259,,1,,Europe/Paris,,STE, +STE:SA:OCE87645184,1,"Gare de Boisset (Cantal)",44.785817,2.249439,,1,,Europe/Paris,,STE, +STE:SA:OCE87666099,1,"Chamelet-Centre.",27.140973,-3.404561,,1,,Europe/Paris,,STE, +STE:SA:OCE87668095,1,"Thiel-Sur-Acolin-Bus",46.526266,3.578794,,1,,Europe/Paris,,STE, +STE:SA:OCE87680504,1,"Les-Trilliers-PN-Car.",27.140973,-3.404561,,1,,Europe/Paris,,STE, +STE:SA:OCE87680553,1,"Riom_Es_M_la_Poste.",27.140973,-3.404561,,1,,Europe/Paris,,STE, +STE:SA:OCE87680595,1,"St-Gervais-Ch-LPA.",27.140973,-3.404561,,1,,Europe/Paris,,STE, +STE:SA:OCE87680728,1,"Fix-St-Geneys-RN102.",27.140973,-3.404561,,1,,Europe/Paris,,STE, +STE:SA:OCE87680736,1,"Lavoute-Arrêt-CG.",27.140973,-3.404561,,1,,Europe/Paris,,STE, +STE:SA:OCE87683003,1,"Gare de Sens",48.198038,3.267327,,1,,Europe/Paris,,STE, +STE:SA:OCE87683201,1,"Gare de Etigny-Véron",48.138262,3.290171,,1,,Europe/Paris,,STE, +STE:SA:OCE87683219,1,"Gare de Villeneuve-sur-Yonne",48.08494,3.286253,,1,,Europe/Paris,,STE, +STE:SA:OCE87683227,1,"Gare de St-Julien-du-Sault",48.026953,3.302732,,1,,Europe/Paris,,STE, +STE:SA:OCE87683243,1,"Gare de Joigny",47.973833,3.392956,,1,,Europe/Paris,,STE, +STE:SA:OCE87683268,1,"Gare de Laroche-Migennes",47.960853,3.512941,,1,,Europe/Paris,,STE, +STE:SA:OCE87683318,1,"Gare de St-Florentin-Vergigny",47.980415,3.730949,,1,,Europe/Paris,,STE, +STE:SA:OCE87686634,1,"La-Sauvanie",27.140973,-3.404561,,1,,Europe/Paris,,STE, +STE:SA:OCE87691279,1,"Theix-Centre",27.140973,-3.404561,,1,,Europe/Paris,,STE, +STE:SA:OCE87691576,1,"La-Cluse-Ville",46.170815,5.576363,,1,,Europe/Paris,,STE, +STE:SA:OCE87691600,1,"Gare de Les Perrières",47.005616,3.146543,,1,,Europe/Paris,,STE, +STE:SA:OCE87693218,1,"Le-Mont-Dore-Centre",45.572562,2.808595,,1,,Europe/Paris,,STE, +STE:SA:OCE87693291,1,"Le-Mont-Dore-Ski",27.140973,-3.404561,,1,,Europe/Paris,,STE, +STE:SA:OCE87694307,1,"Gare de Montchanin",46.759158,4.481462,,1,,Europe/Paris,,STE, +STE:SA:OCE87694612,1,"Gare de Blanzy",46.693734,4.39101,,1,,Europe/Paris,,STE, +STE:SA:OCE87694620,1,"Gare de Montceau-les-Mines",46.671068,4.362067,,1,,Europe/Paris,,STE, +STE:SA:OCE87694638,1,"Gare de Galuzot",46.642025,4.32992,,1,,Europe/Paris,,STE, +STE:SA:OCE87694646,1,"Gare de Ciry-le-Noble",46.604259,4.299516,,1,,Europe/Paris,,STE, +STE:SA:OCE87694653,1,"Gare de Génelard",46.581192,4.23795,,1,,Europe/Paris,,STE, +STE:SA:OCE87695957,1,"Aiguebelette-Centre",45.53747,5.812967,,1,,Europe/Paris,,STE, +STE:SA:OCE87695965,1,"Ambronay-Priay-Rd-1075",46.009723,5.340888,,1,,Europe/Paris,,STE, +STE:SA:OCE87695999,1,"Bourg-En-Bresse-Archive",27.140973,-3.404561,,1,,Europe/Paris,,STE, +STE:SA:OCE87696310,1,"Gare de Villeneuve-sur-Allier",46.659305,3.246989,,1,,Europe/Paris,,STE, +STE:SA:OCE87696336,1,"Gare de Bessay",46.442932,3.360574,,1,,Europe/Paris,,STE, +STE:SA:OCE87696385,1,"Les-Abrets-Rue-Italie",45.537169,5.584643,,1,,Europe/Paris,,STE, +STE:SA:OCE87696450,1,"Gare de Imphy",46.9334,3.259751,,1,,Europe/Paris,,STE, +STE:SA:OCE87696468,1,"Gare de Béard",46.865303,3.318114,,1,,Europe/Paris,,STE, +STE:SA:OCE87696484,1,"Gare de Decize",46.837332,3.467296,,1,,Europe/Paris,,STE, +STE:SA:OCE87696500,1,"St-Martin-Du-Mont-Le-Fa",46.095643,5.314407,,1,,Europe/Paris,,STE, +STE:SA:OCE87696658,1,"St-Paul-College",45.594344,6.44251,,1,,Europe/Paris,,STE, +STE:SA:OCE87697003,1,"Albigny-Neuville-Arret",45.875407,4.833204,,1,,Europe/Paris,,STE, +STE:SA:OCE87697029,1,"Collonges-F.-Tcl-Gar",45.831344,4.84664,,1,,Europe/Paris,,STE, +STE:SA:OCE87697037,1,"Couzon-Au-Mont-D'or-Arr",45.848951,4.83204,,1,,Europe/Paris,,STE, +STE:SA:OCE87697045,1,"Lyon-Vaise-Gare-Routièr",45.781597,4.805428,,1,,Europe/Paris,,STE, +STE:SA:OCE87697128,1,"Gare de Lyon-Part-Dieu-Gare-Rou",45.760585,4.859435,,1,,Europe/Paris,,STE, +STE:SA:OCE87697136,1,"Lyon-Perrache-Gare-Rout",27.140973,-3.404561,,1,,Europe/Paris,,STE, +STE:SA:OCE87697144,1,"Argentine-La-Combe",45.501996,6.318867,,1,,Europe/Paris,,STE, +STE:SA:OCE87697151,1,"Argentine-Gemelly",45.508123,6.316298,,1,,Europe/Paris,,STE, +STE:SA:OCE87697508,1,"La-Bridoire-Abris-Bus",45.530786,5.742835,,1,,Europe/Paris,,STE, +STE:SA:OCE87697516,1,"Lus-La-Croix-Haute-1075",44.672095,5.698049,,1,,Europe/Paris,,STE, +STE:SA:OCE87697524,1,"Monestier-Centre",44.916285,5.634476,,1,,Europe/Paris,,STE, +STE:SA:OCE87697672,1,"Bourg-en-Bresse-Charité",27.140973,-3.404561,,1,,Europe/Paris,,STE, +STE:SA:OCE87697698,1,"La-Chambre",45.359134,6.299662,,1,,Europe/Paris,,STE, +STE:SA:OCE87697722,1,"Saint-Étienne-de-Cuines",45.342273,6.291278,,1,,Europe/Paris,,STE, +STE:SA:OCE87698290,1,"Grandris-Centre",46.036918,4.472329,,1,,Europe/Paris,,STE, +STE:SA:OCE87698332,1,"Lyon-St-Paul-Quai-Bondy",45.766488,4.828105,,1,,Europe/Paris,,STE, +STE:SA:OCE87698340,1,"Lyon-St-Paul-la-Feuilée",45.766342,4.829385,,1,,Europe/Paris,,STE, +STE:SA:OCE87698449,1,"Communay-la-Guicharde",27.140973,-3.404561,,1,,Europe/Paris,,STE, +STE:SA:OCE87698456,1,"Communay-les-Bonnières",27.140973,-3.404561,,1,,Europe/Paris,,STE, +STE:SA:OCE87698464,1,"Communay-les-Brosses",27.140973,-3.404561,,1,,Europe/Paris,,STE, +STE:SA:OCE87698506,1,"Feyzin-TCL-Gare",45.665467,4.853116,,1,,Europe/Paris,,STE, +STE:SA:OCE87698530,1,"Le-Bourget-du-Lac-STAC",45.64449,5.868751,,1,,Europe/Paris,,STE, +STE:SA:OCE87698555,1,"Le-Teil-Centre",44.553058,4.685483,,1,,Europe/Paris,,STE, +STE:SA:OCE87698613,1,"Praz-sur-Arly-O.T.",45.837804,6.570849,,1,,Europe/Paris,,STE, +STE:SA:OCE87698621,1,"Privas-Cours-du-Palais",44.734713,4.600253,,1,,Europe/Paris,,STE, +STE:SA:OCE87698662,1,"Saint-Etienne-Chtx-G.Ro",45.4427,4.399856,,1,,Europe/Paris,,STE, +STE:SA:OCE87698720,1,"Sury-le-Comtal-Ville",45.540526,4.187252,,1,,Europe/Paris,,STE, +STE:SA:OCE87698738,1,"Tassin-le-Baraillon",45.764497,4.75862,,1,,Europe/Paris,,STE, +STE:SA:OCE87698746,1,"Ternay-Boucherrates",27.140973,-3.404561,,1,,Europe/Paris,,STE, +STE:SA:OCE87698753,1,"Ternay-Centre",45.605328,4.811209,,1,,Europe/Paris,,STE, +STE:SA:OCE87698761,1,"Ternay-Chassagne-GC",27.140973,-3.404561,,1,,Europe/Paris,,STE, +STE:SA:OCE87698779,1,"Ternay-Chemin-de-gare",27.140973,-3.404561,,1,,Europe/Paris,,STE, +STE:SA:OCE87698787,1,"Ternay-Croix-du-Morze",27.140973,-3.404561,,1,,Europe/Paris,,STE, +STE:SA:OCE87698795,1,"Ugine-Place-Val-d'Arly",45.745953,6.421083,,1,,Europe/Paris,,STE, +STE:SA:OCE87698803,1,"Vienne-Gare-Routière",45.521417,4.874058,,1,,Europe/Paris,,STE, +STE:SA:OCE87712604,1,"Gare de Ouges",47.255673,5.073252,,1,,Europe/Paris,,STE, +STE:SA:OCE87712620,1,"Gare de Longecourt-en-Plaine",47.19387,5.134814,,1,,Europe/Paris,,STE, +STE:SA:OCE87712679,1,"Gare de Chaugey",47.087531,5.255282,,1,,Europe/Paris,,STE, +STE:SA:OCE87713040,1,"Gare de Dijon-Ville",47.323404,5.02728,,1,,Europe/Paris,,STE, +STE:SA:OCE87713115,1,"Gare de Les Laumes-Alésia",47.543319,4.462868,,1,,Europe/Paris,,STE, +STE:SA:OCE87713131,1,"Gare de Montbard",47.61872,4.336152,,1,,Europe/Paris,,STE, +STE:SA:OCE87713156,1,"Gare de Nuits-sous-Ravières",47.72921,4.211266,,1,,Europe/Paris,,STE, +STE:SA:OCE87713198,1,"Gare de Tonnerre",47.859603,3.973496,,1,,Europe/Paris,,STE, +STE:SA:OCE87713529,1,"Gare de Nuits-St-Georges",47.130668,4.956228,,1,,Europe/Paris,,STE, +STE:SA:OCE87713545,1,"Gare de Beaune",47.023041,4.848723,,1,,Europe/Paris,,STE, +STE:SA:OCE87713578,1,"Gare de Chagny",46.907429,4.74965,,1,,Europe/Paris,,STE, +STE:SA:OCE87713628,1,"Gare de Saulon",47.224183,5.104766,,1,,Europe/Paris,,STE, +STE:SA:OCE87713636,1,"Gare de Aiserey",47.170648,5.158391,,1,,Europe/Paris,,STE, +STE:SA:OCE87713644,1,"Gare de Brazey-en-Plaine",47.131563,5.212223,,1,,Europe/Paris,,STE, +STE:SA:OCE87713651,1,"Gare de St-Jean-de-Losne",47.099799,5.244335,,1,,Europe/Paris,,STE, +STE:SA:OCE87713669,1,"Gare de Pagny (Côte-d'Or)",47.046176,5.200803,,1,,Europe/Paris,,STE, +STE:SA:OCE87718007,1,"Gare de Besançon-Viotte",47.247038,6.021912,,1,,Europe/Paris,,STE, +STE:SA:OCE87718155,1,"Gare de Arbois (Jura)",46.912425,5.764767,,1,,Europe/Paris,,STE, +STE:SA:OCE87718189,1,"Gare de Poligny",46.844169,5.700318,,1,,Europe/Paris,,STE, +STE:SA:OCE87718213,1,"Gare de Domblans-Voiteur",46.762743,5.597938,,1,,Europe/Paris,,STE, +STE:SA:OCE87718239,1,"Gare de Lons-le-Saunier",46.668398,5.550877,,1,,Europe/Paris,,STE, +STE:SA:OCE87718270,1,"Gare de Cousance",46.535157,5.38705,,1,,Europe/Paris,,STE, +STE:SA:OCE87718296,1,"Gare de St-Amour",46.433678,5.334537,,1,,Europe/Paris,,STE, +STE:SA:OCE87718460,1,"Gare de Baume-les-Dames",47.353962,6.359671,,1,,Europe/Paris,,STE, +STE:SA:OCE87718833,1,"Gare de Mouchard",46.976813,5.799724,,1,,Europe/Paris,,STE, +STE:SA:OCE87718841,1,"Gare de Arc-et-Senans",47.030456,5.776935,,1,,Europe/Paris,,STE, +STE:SA:OCE87721001,1,"Gare de Lyon-Vaise",45.780142,4.80405,,1,,Europe/Paris,,STE, +STE:SA:OCE87721159,1,"Gare de Lyon-St-Paul",45.766082,4.826904,,1,,Europe/Paris,,STE, +STE:SA:OCE87721175,1,"Gare de Lyon-Gorge-de-Loup",45.766077,4.804731,,1,,Europe/Paris,,STE, +STE:SA:OCE87721225,1,"Gare de Collonges-Fontaines",45.82911,4.846667,,1,,Europe/Paris,,STE, +STE:SA:OCE87721241,1,"Gare de Couzon-au-Mont-d'Or",45.848701,4.829517,,1,,Europe/Paris,,STE, +STE:SA:OCE87721266,1,"Gare de Albigny-Neuville",45.874857,4.832844,,1,,Europe/Paris,,STE, +STE:SA:OCE87721282,1,"Gare de St-Germain-au-Mont-d'Or",45.888442,4.804176,,1,,Europe/Paris,,STE, +STE:SA:OCE87721290,1,"Gare de Quincieux",45.906904,4.778574,,1,,Europe/Paris,,STE, +STE:SA:OCE87721324,1,"Gare de Anse",45.939335,4.719743,,1,,Europe/Paris,,STE, +STE:SA:OCE87721415,1,"Gare de Chazay-Marcilly",45.873258,4.725327,,1,,Europe/Paris,,STE, +STE:SA:OCE87721449,1,"Gare de Dardilly-Le-Jubin",45.813655,4.758482,,1,,Europe/Paris,,STE, +STE:SA:OCE87721530,1,"Gare de Charbonnières-les-Bains",45.78216,4.735855,,1,,Europe/Paris,,STE, +STE:SA:OCE87721894,1,"Poule",46.148108,4.456527,,1,,Europe/Paris,,STE, +STE:SA:OCE87722207,1,"Gare de Oullins",45.717214,4.813129,,1,,Europe/Paris,,STE, +STE:SA:OCE87722231,1,"Gare de Pierre-Bénite",45.706906,4.824986,,1,,Europe/Paris,,STE, +STE:SA:OCE87722264,1,"Gare de Vernaison",45.645643,4.813276,,1,,Europe/Paris,,STE, +STE:SA:OCE87722298,1,"Gare de Grigny-Le Sablon",45.607253,4.796137,,1,,Europe/Paris,,STE, +STE:SA:OCE87722439,1,"Gare de Givors-Canal",45.5957,4.772493,,1,,Europe/Paris,,STE, +STE:SA:OCE87722538,1,"Gare de Feyzin",45.665891,4.853071,,1,,Europe/Paris,,STE, +STE:SA:OCE87722579,1,"Gare de Estressin",45.540271,4.868264,,1,,Europe/Paris,,STE, +STE:SA:OCE87722587,1,"Gare de Vienne",45.521214,4.874305,,1,,Europe/Paris,,STE, +STE:SA:OCE87722702,1,"Gare de Francheville",45.734489,4.768983,,1,,Europe/Paris,,STE, +STE:SA:OCE87722710,1,"Gare de Chaponost",45.698194,4.764143,,1,,Europe/Paris,,STE, +STE:SA:OCE87722728,1,"Gare de Brignais",45.673811,4.763723,,1,,Europe/Paris,,STE, +STE:SA:OCE87723320,1,"Gare de Vénissieux",45.705608,4.887955,,1,,Europe/Paris,,STE, +STE:SA:OCE87723387,1,"Gare de St-Quentin-Fallavier",45.63812,5.099951,,1,,Europe/Paris,,STE, +STE:SA:OCE87723452,1,"Gare de Cessieu",45.56124,5.375639,,1,,Europe/Paris,,STE, +STE:SA:OCE87723478,1,"Gare de La Tour-du-Pin",45.560225,5.449547,,1,,Europe/Paris,,STE, +STE:SA:OCE87723502,1,"Gare de Crépieux-la-Pape",45.803921,4.892737,,1,,Europe/Paris,,STE, +STE:SA:OCE87723528,1,"Gare de Miribel",45.822065,4.953913,,1,,Europe/Paris,,STE, +STE:SA:OCE87723544,1,"Gare de Beynost",45.833897,5.006941,,1,,Europe/Paris,,STE, +STE:SA:OCE87723700,1,"Gare de Sathonay-Rillieux",45.82025,4.875267,,1,,Europe/Paris,,STE, +STE:SA:OCE87723726,1,"Gare de Mionnay",45.896772,4.919585,,1,,Europe/Paris,,STE, +STE:SA:OCE87725002,1,"Gare de Chalon-sur-Saône",46.78157,4.843489,,1,,Europe/Paris,,STE, +STE:SA:OCE87725622,1,"Gare de Tournus",46.566719,4.906522,,1,,Europe/Paris,,STE, +STE:SA:OCE87725721,1,"Gare de Pontanevaux",46.213025,4.772877,,1,,Europe/Paris,,STE, +STE:SA:OCE87725846,1,"Gare de Polliat",46.244737,5.123833,,1,,Europe/Paris,,STE, +STE:SA:OCE87725895,1,"Gare de Echirolles",45.152717,5.719912,,1,,Europe/Paris,,STE, +STE:SA:OCE87726174,1,"Gare de St-Etienne-le-Clapier",45.437101,4.378402,,1,,Europe/Paris,,STE, +STE:SA:OCE87726190,1,"Gare de St-Etienne-Bellevue",45.417203,4.392657,,1,,Europe/Paris,,STE, +STE:SA:OCE87726216,1,"Gare de Bouthéon",45.524704,4.277618,,1,,Europe/Paris,,STE, +STE:SA:OCE87726232,1,"Gare de La Fouillouse",45.497927,4.31691,,1,,Europe/Paris,,STE, +STE:SA:OCE87726703,1,"Gare de La Ricamarie",45.403344,4.3582,,1,,Europe/Paris,,STE, +STE:SA:OCE87726711,1,"Gare de Le Chambon-Feugerolles",45.394773,4.322366,,1,,Europe/Paris,,STE, +STE:SA:OCE87726737,1,"Gare de Fraisse-Unieux",45.395202,4.26092,,1,,Europe/Paris,,STE, +STE:SA:OCE87726786,1,"Gare de Pont-de-Lignon",45.260283,4.137955,,1,,Europe/Paris,,STE, +STE:SA:OCE87726851,1,"Gare de St-Jodard",45.885645,4.125281,,1,,Europe/Paris,,STE, +STE:SA:OCE87726901,1,"Gare de St-Etienne-Carnot",45.446818,4.385384,,1,,Europe/Paris,,STE, +STE:SA:OCE87728501,1,"Gare de St Fons",45.70576,4.852555,,1,,Europe/Paris,,STE, +STE:SA:OCE87731828,1,"Gare de Lachaud-Curmilhac",45.122874,3.610398,,1,,Europe/Paris,,STE, +STE:SA:OCE87731885,1,"Gare de Alleyras",44.918949,3.67355,,1,,Europe/Paris,,STE, +STE:SA:OCE87734046,1,"Gare de Gerzat",45.833317,3.143098,,1,,Europe/Paris,,STE, +STE:SA:OCE87734103,1,"Gare de Pontmort",45.939487,3.160301,,1,,Europe/Paris,,STE, +STE:SA:OCE87734111,1,"Gare de Aubiat",45.983806,3.160515,,1,,Europe/Paris,,STE, +STE:SA:OCE87734152,1,"Gare de Sarliève-Cournon",45.7387,3.168053,,1,,Europe/Paris,,STE, +STE:SA:OCE87734160,1,"Gare de Le Cendre-Orcet",45.723817,3.188689,,1,,Europe/Paris,,STE, +STE:SA:OCE87734178,1,"Gare de Les Martres-de-Veyre",45.688172,3.193299,,1,,Europe/Paris,,STE, +STE:SA:OCE87734343,1,"Gare de Chapeauroux",44.838075,3.741826,,1,,Europe/Paris,,STE, +STE:SA:OCE87741009,1,"Gare de Chambéry-Chal.-les-Eaux",45.571038,5.9198,,1,,Europe/Paris,,STE, +STE:SA:OCE87741421,1,"Gare de Aiguebelette-le-Lac",45.536304,5.813111,,1,,Europe/Paris,,STE, +STE:SA:OCE87741470,1,"Gare de Pont-de-Beauvoisin",45.524541,5.680665,,1,,Europe/Paris,,STE, +STE:SA:OCE87743302,1,"Gare de Ceyzériat",46.183336,5.325673,,1,,Europe/Paris,,STE, +STE:SA:OCE87743336,1,"Gare de Simandre-sur-Suran",46.220324,5.420952,,1,,Europe/Paris,,STE, +STE:SA:OCE87743344,1,"Gare de Cize-Bolozon",46.213642,5.453868,,1,,Europe/Paris,,STE, +STE:SA:OCE87743526,1,"Gare de Bellignat",46.238626,5.630446,,1,,Europe/Paris,,STE, +STE:SA:OCE87745380,1,"Gare de Pougny-Chancy",46.144673,5.961358,,1,,Europe/Paris,,STE, +STE:SA:OCE87745414,1,"Gare de Valleiry",46.109345,5.967392,,1,,Europe/Paris,,STE, +STE:SA:OCE87745828,1,"Gare de Seyssel-Corbonod",45.963063,5.831488,,1,,Europe/Paris,,STE, +STE:SA:OCE87746107,1,"Gare de Grésy-sur-Aix",45.724505,5.922131,,1,,Europe/Paris,,STE, +STE:SA:OCE87746206,1,"Gare de Pringy",45.939486,6.123372,,1,,Europe/Paris,,STE, +STE:SA:OCE87746313,1,"Gare de St-Pierre-en-Faucigny",46.05934,6.375778,,1,,Europe/Paris,,STE, +STE:SA:OCE87746347,1,"Gare de Marignier",46.08879,6.507812,,1,,Europe/Paris,,STE, +STE:SA:OCE87746412,1,"Gare de Magland",46.016926,6.621531,,1,,Europe/Paris,,STE, +STE:SA:OCE87746701,1,"Gare de Chedde",45.926309,6.719793,,1,,Europe/Paris,,STE, +STE:SA:OCE87746727,1,"Gare de Vaudagne",45.90902,6.772588,,1,,Europe/Paris,,STE, +STE:SA:OCE87746735,1,"Gare de Viaduc-Ste-Marie",45.897095,6.784993,,1,,Europe/Paris,,STE, +STE:SA:OCE87746826,1,"Gare de Les Praz-de-Chamonix",45.939793,6.888603,,1,,Europe/Paris,,STE, +STE:SA:OCE87746834,1,"Gare de Les Tines",45.950551,6.899135,,1,,Europe/Paris,,STE, +STE:SA:OCE87746842,1,"Gare de Lajoux",45.964979,6.910236,,1,,Europe/Paris,,STE, +STE:SA:OCE87746859,1,"Gare de Argentière (Hte-Savoie)",45.982009,6.926719,,1,,Europe/Paris,,STE, +STE:SA:OCE87746867,1,"Gare de Montroc-le-Planet",45.996451,6.934551,,1,,Europe/Paris,,STE, +STE:SA:OCE87746875,1,"Gare de Vallorcine",46.032673,6.93299,,1,,Europe/Paris,,STE, +STE:SA:OCE87746883,1,"Gare de Le Buet",46.019163,6.920368,,1,,Europe/Paris,,STE, +STE:SA:OCE87747212,1,"Gare de Chabons",45.438403,5.4281,,1,,Europe/Paris,,STE, +STE:SA:OCE87747220,1,"Gare de Le Grand-Lemps",45.396678,5.423061,,1,,Europe/Paris,,STE, +STE:SA:OCE87747246,1,"Gare de Rives",45.357595,5.491897,,1,,Europe/Paris,,STE, +STE:SA:OCE87747287,1,"Gare de Voiron",45.364004,5.594911,,1,,Europe/Paris,,STE, +STE:SA:OCE87747337,1,"Gare de Voreppe",45.290384,5.632118,,1,,Europe/Paris,,STE, +STE:SA:OCE87747352,1,"Gare de St-Egrève-St-Robert",45.235693,5.671191,,1,,Europe/Paris,,STE, +STE:SA:OCE87747402,1,"Gare de Grenoble U.-Gières",45.184903,5.784731,,1,,Europe/Paris,,STE, +STE:SA:OCE87747451,1,"Gare de Brignoud",45.262462,5.901427,,1,,Europe/Paris,,STE, +STE:SA:OCE87747477,1,"Gare de Goncelin",45.34196,5.974107,,1,,Europe/Paris,,STE, +STE:SA:OCE87747519,1,"Gare de Pont-de-Claix",45.125173,5.699833,,1,,Europe/Paris,,STE, +STE:SA:OCE87747626,1,"Gare de Clelles-Mens",44.827253,5.605012,,1,,Europe/Paris,,STE, +STE:SA:OCE87747667,1,"Gare de Lus-la-Croix-Haute",44.671027,5.697367,,1,,Europe/Paris,,STE, +STE:SA:OCE87751008,1,"Gare de Marseille-St-Charles",43.30273,5.38065,,1,,Europe/Paris,,STE, +STE:SA:OCE87751081,1,"Gare de Marseille-Blancarde",43.296203,5.406552,,1,,Europe/Paris,,STE, +STE:SA:OCE87751206,1,"Gare de Sisteron",44.1902,5.946568,,1,,Europe/Paris,,STE, +STE:SA:OCE87751230,1,"Gare de Château-Arnoux-St-Auban",44.061544,5.997307,,1,,Europe/Paris,,STE, +STE:SA:OCE87751271,1,"Gare de La Brillanne-Oraison",43.924809,5.892255,,1,,Europe/Paris,,STE, +STE:SA:OCE87751321,1,"Gare de Manosque-Gréoux",43.823415,5.794083,,1,,Europe/Paris,,STE, +STE:SA:OCE87751362,1,"Gare de Pertuis",43.684579,5.503673,,1,,Europe/Paris,,STE, +STE:SA:OCE87751370,1,"Gare de Meyrargues",43.644023,5.539562,,1,,Europe/Paris,,STE, +STE:SA:OCE87751404,1,"Gare de Aix-en-Provence",43.522868,5.445323,,1,,Europe/Paris,,STE, +STE:SA:OCE87751438,1,"Gare de Simiane",43.434724,5.426011,,1,,Europe/Paris,,STE, +STE:SA:OCE87751602,1,"Gare de L'Estaque",43.363625,5.321331,,1,,Europe/Paris,,STE, +STE:SA:OCE87751636,1,"Gare de Séon-St-Henry",43.362416,5.339916,,1,,Europe/Paris,,STE, +STE:SA:OCE87751701,1,"Gare de St-Marcel",43.28818,5.467118,,1,,Europe/Paris,,STE, +STE:SA:OCE87751719,1,"Gare de La Pomme",43.290477,5.441256,,1,,Europe/Paris,,STE, +STE:SA:OCE87751743,1,"Gare de La Penne-sur-Huveaune",43.284665,5.515512,,1,,Europe/Paris,,STE, +STE:SA:OCE87751750,1,"Gare de Aubagne",43.296008,5.566448,,1,,Europe/Paris,,STE, +STE:SA:OCE87751776,1,"Gare de Cassis",43.234034,5.553076,,1,,Europe/Paris,,STE, +STE:SA:OCE87751784,1,"Gare de La Ciotat",43.19958,5.632668,,1,,Europe/Paris,,STE, +STE:SA:OCE87751826,1,"Gare de Saint-Antoine",43.369416,5.358095,,1,,Europe/Paris,,STE, +STE:SA:OCE87753004,1,"Gare de Miramas",43.58074,4.999602,,1,,Europe/Paris,,STE, +STE:SA:OCE87753418,1,"Gare de Istres",43.515376,4.980434,,1,,Europe/Paris,,STE, +STE:SA:OCE87753426,1,"Gare de Rassuen",43.496627,4.973095,,1,,Europe/Paris,,STE, +STE:SA:OCE87753442,1,"Gare de Fos-sur-Mer",43.428063,4.974578,,1,,Europe/Paris,,STE, +STE:SA:OCE87753459,1,"Gare de Port-de-Bouc",43.407145,4.984603,,1,,Europe/Paris,,STE, +STE:SA:OCE87753491,1,"Gare de Croix-Sainte",43.409101,5.019683,,1,,Europe/Paris,,STE, +STE:SA:OCE87753509,1,"Gare de Martigues",43.392882,5.025755,,1,,Europe/Paris,,STE, +STE:SA:OCE87753541,1,"Gare de La Couronne",43.339846,5.051725,,1,,Europe/Paris,,STE, +STE:SA:OCE87753558,1,"Gare de Sausset-les-Pins",43.332858,5.109988,,1,,Europe/Paris,,STE, +STE:SA:OCE87753566,1,"Gare de Carry-le-Rouet",43.336597,5.15369,,1,,Europe/Paris,,STE, +STE:SA:OCE87753574,1,"Gare de La Redonne-Ensuès",43.334469,5.197562,,1,,Europe/Paris,,STE, +STE:SA:OCE87753582,1,"Gare de Niolon",43.340195,5.256909,,1,,Europe/Paris,,STE, +STE:SA:OCE87753764,1,"Gare de Salon",43.639064,5.088598,,1,,Europe/Paris,,STE, +STE:SA:OCE87755215,1,"Gare de St-Cyr-les-Lecq.la-Cad.",43.185475,5.703802,,1,,Europe/Paris,,STE, +STE:SA:OCE87755223,1,"Gare de Bandol",43.140333,5.750133,,1,,Europe/Paris,,STE, +STE:SA:OCE87755231,1,"Gare de Ollioules-Sanary-S-Mer",43.122545,5.825034,,1,,Europe/Paris,,STE, +STE:SA:OCE87755264,1,"Gare de La Seyne-Six-Fours",43.116968,5.876943,,1,,Europe/Paris,,STE, +STE:SA:OCE87755306,1,"Gare de La Garde",43.118753,6.009977,,1,,Europe/Paris,,STE, +STE:SA:OCE87755314,1,"Gare de La Pauline-Hyères",43.136247,6.03508,,1,,Europe/Paris,,STE, +STE:SA:OCE87755330,1,"Gare de Solliès-Pont",43.190801,6.046249,,1,,Europe/Paris,,STE, +STE:SA:OCE87755355,1,"Gare de Cuers-Pierrefeu",43.237723,6.08603,,1,,Europe/Paris,,STE, +STE:SA:OCE87755363,1,"Gare de Puget-Ville",43.28315,6.138302,,1,,Europe/Paris,,STE, +STE:SA:OCE87755371,1,"Gare de Carnoules",43.297533,6.186157,,1,,Europe/Paris,,STE, +STE:SA:OCE87755389,1,"Gare de Pignans",43.298562,6.224817,,1,,Europe/Paris,,STE, +STE:SA:OCE87755397,1,"Gare de Gonfaron",43.317212,6.281666,,1,,Europe/Paris,,STE, +STE:SA:OCE87755405,1,"Gare de Le Luc-et-le-Cannet",43.390301,6.343011,,1,,Europe/Paris,,STE, +STE:SA:OCE87755421,1,"Gare de Vidauban",43.430901,6.433704,,1,,Europe/Paris,,STE, +STE:SA:OCE87755611,1,"Gare de La Crau",43.145155,6.068241,,1,,Europe/Paris,,STE, +STE:SA:OCE87755629,1,"Gare de Hyères",43.108861,6.124199,,1,,Europe/Paris,,STE, +STE:SA:OCE87756056,1,"Gare de Nice-Ville",43.704711,7.261786,,1,,Europe/Paris,,STE, +STE:SA:OCE87756254,1,"Gare de Nice-St-Augustin",43.671043,7.21694,,1,,Europe/Paris,,STE, +STE:SA:OCE87756304,1,"Gare de Villeneuve-Loubet-Plage",43.629985,7.134318,,1,,Europe/Paris,,STE, +STE:SA:OCE87756320,1,"Gare de Cagnes-sur-Mer",43.65769,7.148161,,1,,Europe/Paris,,STE, +STE:SA:OCE87756338,1,"Gare de Cros-de-Cagnes",43.660466,7.167112,,1,,Europe/Paris,,STE, +STE:SA:OCE87756346,1,"Gare de St-Laurent-du-Var",43.662446,7.194471,,1,,Europe/Paris,,STE, +STE:SA:OCE87756353,1,"Gare de Nice-Riquier",43.705702,7.290389,,1,,Europe/Paris,,STE, +STE:SA:OCE87756361,1,"Gare de Villefranche-sur-Mer",43.707009,7.314303,,1,,Europe/Paris,,STE, +STE:SA:OCE87756379,1,"Gare de Beaulieu-sur-Mer",43.706673,7.331569,,1,,Europe/Paris,,STE, +STE:SA:OCE87756403,1,"Gare de Monaco-Monte-Carlo",43.738483,7.41967,,1,,Europe/Paris,,STE, +STE:SA:OCE87756460,1,"Gare de Cap-Martin-Roquebrune",43.760723,7.457538,,1,,Europe/Paris,,STE, +STE:SA:OCE87756478,1,"Gare de Carnolès",43.761986,7.481441,,1,,Europe/Paris,,STE, +STE:SA:OCE87756486,1,"Gare de Menton",43.7744,7.493169,,1,,Europe/Paris,,STE, +STE:SA:OCE87756494,1,"Gare de Menton-Garavan",43.785151,7.517272,,1,,Europe/Paris,,STE, +STE:SA:OCE87756767,1,"Gare de La Trinité-Victor",43.742719,7.311786,,1,,Europe/Paris,,STE, +STE:SA:OCE87756775,1,"Gare de Drap-Cantaron",43.759869,7.317076,,1,,Europe/Paris,,STE, +STE:SA:OCE87756783,1,"Gare de Peillon-Ste-Thècle",43.767855,7.366858,,1,,Europe/Paris,,STE, +STE:SA:OCE87756791,1,"Gare de Peille",43.791915,7.379805,,1,,Europe/Paris,,STE, +STE:SA:OCE87756809,1,"Gare de L'Escarène",43.839703,7.351813,,1,,Europe/Paris,,STE, +STE:SA:OCE87756817,1,"Gare de Touet-de-l'Escarène",43.847039,7.364373,,1,,Europe/Paris,,STE, +STE:SA:OCE87756825,1,"Gare de Sospel",43.876577,7.45379,,1,,Europe/Paris,,STE, +STE:SA:OCE87756833,1,"Gare de Breil-sur-Roya",43.943867,7.516296,,1,,Europe/Paris,,STE, +STE:SA:OCE87757500,1,"Gare de Fréjus",43.432024,6.732934,,1,,Europe/Paris,,STE, +STE:SA:OCE87757534,1,"Gare de Boulouris-sur-Mer",43.41634,6.807839,,1,,Europe/Paris,,STE, +STE:SA:OCE87757542,1,"Gare de Le Dramont",43.417718,6.844313,,1,,Europe/Paris,,STE, +STE:SA:OCE87757559,1,"Gare de Agay",43.431611,6.856696,,1,,Europe/Paris,,STE, +STE:SA:OCE87757567,1,"Gare de Anthéor-Cap-Roux",43.434966,6.892228,,1,,Europe/Paris,,STE, +STE:SA:OCE87757575,1,"Gare de Le Trayas",43.474586,6.924433,,1,,Europe/Paris,,STE, +STE:SA:OCE87757583,1,"Gare de Théoule-sur-Mer",43.513447,6.936967,,1,,Europe/Paris,,STE, +STE:SA:OCE87757591,1,"Gare de Mandelieu-la-Napoule",43.523885,6.941321,,1,,Europe/Paris,,STE, +STE:SA:OCE87757617,1,"Gare de Cannes-la-Bocca",43.54881,6.986579,,1,,Europe/Paris,,STE, +STE:SA:OCE87757641,1,"Gare de Golfe-Juan-Vallauris",43.566517,7.073633,,1,,Europe/Paris,,STE, +STE:SA:OCE87757666,1,"Gare de Juan-les-Pins",43.570908,7.111508,,1,,Europe/Paris,,STE, +STE:SA:OCE87757690,1,"Gare de Biot",43.610902,7.126244,,1,,Europe/Paris,,STE, +STE:SA:OCE87757724,1,"Gare de Grasse",43.653328,6.925562,,1,,Europe/Paris,,STE, +STE:SA:OCE87757732,1,"Gare de Ranguin",43.569258,6.969151,,1,,Europe/Paris,,STE, +STE:SA:OCE87757740,1,"Gare de Frayère (la)",43.558125,6.971986,,1,,Europe/Paris,,STE, +STE:SA:OCE87757757,1,"Gare de Bosquet (le)",43.551575,6.981518,,1,,Europe/Paris,,STE, +STE:SA:OCE87759290,1,"Gare de Picon-Busserine.",43.331158,5.393258,,1,,Europe/Paris,,STE, +STE:SA:OCE87759316,1,"Gare de St-Joseph-Le-Castellas.",43.352333,5.37462,,1,,Europe/Paris,,STE, +STE:SA:OCE87761239,1,"Gare de L'Isle-d'Abeau",45.607621,5.219552,,1,,Europe/Paris,,STE, +STE:SA:OCE87761247,1,"Gare de Livron",44.779597,4.830567,,1,,Europe/Paris,,STE, +STE:SA:OCE87761262,1,"Gare de Loriol",44.754494,4.817237,,1,,Europe/Paris,,STE, +STE:SA:OCE87761759,1,"Gare de Tullins-Fures",45.300932,5.492143,,1,,Europe/Paris,,STE, +STE:SA:OCE87763722,1,"Gare de Serres",44.424647,5.718457,,1,,Europe/Paris,,STE, +STE:SA:OCE87763755,1,"Gare de Laragne",44.316484,5.818934,,1,,Europe/Paris,,STE, +STE:SA:OCE87764001,1,"Gare de Montélimar",44.559,4.74479,,1,,Europe/Paris,,STE, +STE:SA:OCE87764290,1,"Gare de Donzère",44.442629,4.705126,,1,,Europe/Paris,,STE, +STE:SA:OCE87764308,1,"Gare de Pierrelatte",44.374572,4.703759,,1,,Europe/Paris,,STE, +STE:SA:OCE87764357,1,"Gare de Bollène-la-Croisière",44.271536,4.707954,,1,,Europe/Paris,,STE, +STE:SA:OCE87765107,1,"Gare de Orange",44.137305,4.819495,,1,,Europe/Paris,,STE, +STE:SA:OCE87765180,1,"Gare de Courthézon",44.089995,4.888176,,1,,Europe/Paris,,STE, +STE:SA:OCE87765198,1,"Gare de Bédarrides",44.040764,4.893118,,1,,Europe/Paris,,STE, +STE:SA:OCE87765206,1,"Gare de Sorgues-Chât.du-Pape",44.005417,4.87561,,1,,Europe/Paris,,STE, +STE:SA:OCE87765735,1,"Gare de Carpentras",44.048779,5.045007,,1,,Europe/Paris,,STE, +STE:SA:OCE87765818,1,"Gare de Monteux",44.037143,4.994408,,1,,Europe/Paris,,STE, +STE:SA:OCE87765826,1,"Gare de Entraigues-S-La-Sorgue",44.005051,4.921381,,1,,Europe/Paris,,STE, +STE:SA:OCE87773424,1,"Gare de Lunel-Viel",43.680939,4.093303,,1,,Europe/Paris,,STE, +STE:SA:OCE87773432,1,"Gare de Valergues-Lansargues",43.672597,4.060222,,1,,Europe/Paris,,STE, +STE:SA:OCE87773465,1,"Gare de St-Aunès",43.635414,3.963109,,1,,Europe/Paris,,STE, +STE:SA:OCE87773515,1,"Gare de Villeneuve-les-Maguel.",43.543451,3.849706,,1,,Europe/Paris,,STE, +STE:SA:OCE87773531,1,"Gare de Vic-Mireval",43.500968,3.799585,,1,,Europe/Paris,,STE, +STE:SA:OCE87775023,1,"Gare de Beaucaire",43.802161,4.647316,,1,,Europe/Paris,,STE, +STE:SA:OCE87775064,1,"Gare de Manduel-Redessan",43.826462,4.478871,,1,,Europe/Paris,,STE, +STE:SA:OCE87775072,1,"Gare de St-Césaire",43.813298,4.327669,,1,,Europe/Paris,,STE, +STE:SA:OCE87775098,1,"Gare de Milhaud",43.788425,4.303066,,1,,Europe/Paris,,STE, +STE:SA:OCE87775106,1,"Gare de Uchaud",43.758053,4.267369,,1,,Europe/Paris,,STE, +STE:SA:OCE87775130,1,"Gare de Gallargues",43.71601,4.17104,,1,,Europe/Paris,,STE, +STE:SA:OCE87775221,1,"Gare de Chamborigaud",44.300445,3.979253,,1,,Europe/Paris,,STE, +STE:SA:OCE87775239,1,"Gare de Ste-Cécile-d'Andorge",44.255125,3.975671,,1,,Europe/Paris,,STE, +STE:SA:OCE87775247,1,"Gare de La Levade",44.228296,4.01069,,1,,Europe/Paris,,STE, +STE:SA:OCE87775346,1,"Gare de Boucoiran",43.992358,4.187634,,1,,Europe/Paris,,STE, +STE:SA:OCE87775353,1,"Gare de Nozières-Brignon",43.975833,4.207393,,1,,Europe/Paris,,STE, +STE:SA:OCE87775379,1,"Gare de Fons-St-Mamert",43.907287,4.20663,,1,,Europe/Paris,,STE, +STE:SA:OCE87775809,1,"Gare de Beauvoisin",43.724939,4.322041,,1,,Europe/Paris,,STE, +STE:SA:OCE87775833,1,"Gare de Aimargues",43.678565,4.208202,,1,,Europe/Paris,,STE, +STE:SA:OCE87781062,1,"Gare de Port-la-Nouvelle",43.020864,3.038805,,1,,Europe/Paris,,STE, +STE:SA:OCE87781088,1,"Gare de Leucate-la-Franqui",42.932842,3.012747,,1,,Europe/Paris,,STE, +STE:SA:OCE87781161,1,"Gare de Coursan",43.233712,3.050866,,1,,Europe/Paris,,STE, +STE:SA:OCE87781260,1,"Gare de Vias",43.315815,3.425592,,1,,Europe/Paris,,STE, +STE:SA:OCE87781294,1,"Gare de Marseillan-Plage",43.318277,3.535637,,1,,Europe/Paris,,STE, +STE:SA:OCE87781534,1,"Gare de Montpaon",43.868025,3.10933,,1,,Europe/Paris,,STE, +STE:SA:OCE87781542,1,"Gare de Ceilhes-Roqueredonde",43.812131,3.155299,,1,,Europe/Paris,,STE, +STE:SA:OCE87781559,1,"Gare de Les Cabrils",43.778965,3.186163,,1,,Europe/Paris,,STE, +STE:SA:OCE87781575,1,"Gare de Lunas",43.710023,3.194443,,1,,Europe/Paris,,STE, +STE:SA:OCE87781583,1,"Gare de Le Bousquet-d'Orb",43.691547,3.168385,,1,,Europe/Paris,,STE, +STE:SA:OCE87783290,1,"Gare de Chirac",44.52449,3.263838,,1,,Europe/Paris,,STE, +STE:SA:OCE87783340,1,"Gare de Campagnac-St-Geniez",44.422134,3.06613,,1,,Europe/Paris,,STE, +STE:SA:OCE87783423,1,"Gare de St-Georges-de-Luzençon",44.066024,2.983914,,1,,Europe/Paris,,STE, +STE:SA:OCE87783431,1,"Gare de St-Rome-de-Cernon",44.014575,2.967617,,1,,Europe/Paris,,STE, +STE:SA:OCE87783456,1,"Gare de Tournemire-Roquefort",43.969983,3.01658,,1,,Europe/Paris,,STE, +STE:SA:OCE87783514,1,"Gare de Les Salelles",44.483093,3.279614,,1,,Europe/Paris,,STE, +STE:SA:OCE87783548,1,"Gare de Le Bruel",44.481068,3.358169,,1,,Europe/Paris,,STE, +STE:SA:OCE87784157,1,"Gare de Salses",42.835761,2.917553,,1,,Europe/Paris,,STE, +STE:SA:OCE87784173,1,"Gare de Rivesaltes",42.76616,2.867815,,1,,Europe/Paris,,STE, +STE:SA:OCE87784512,1,"Gare de Le Soler",42.679556,2.800384,,1,,Europe/Paris,,STE, +STE:SA:OCE87784520,1,"Gare de St-Féliu-d'Avall",42.67642,2.741318,,1,,Europe/Paris,,STE, +STE:SA:OCE87784546,1,"Gare de Millas",42.688241,2.695483,,1,,Europe/Paris,,STE, +STE:SA:OCE87784561,1,"Gare de Ille-sur-Têt",42.668483,2.624646,,1,,Europe/Paris,,STE, +STE:SA:OCE87784611,1,"Gare de Vinça",42.64819,2.527605,,1,,Europe/Paris,,STE, +STE:SA:OCE87784629,1,"Gare de Marquixanes",42.642958,2.485744,,1,,Europe/Paris,,STE, +STE:SA:OCE87784637,1,"Gare de Prades-Molitg-les-Bains",42.617034,2.429361,,1,,Europe/Paris,,STE, +STE:SA:OCE87784660,1,"Gare de Ria",42.603931,2.39268,,1,,Europe/Paris,,STE, +STE:SA:OCE87784686,1,"Gare de Villefranche-Vernet-l.B",42.591468,2.370015,,1,,Europe/Paris,,STE, +STE:SA:OCE87784702,1,"Gare de Serdinya",42.567048,2.32339,,1,,Europe/Paris,,STE, +STE:SA:OCE87784710,1,"Gare de Joncet",42.561757,2.311354,,1,,Europe/Paris,,STE, +STE:SA:OCE87784728,1,"Gare de Olette-Canaveilles-l.B.",42.554664,2.272553,,1,,Europe/Paris,,STE, +STE:SA:OCE87784736,1,"Gare de Nyers",42.542267,2.262999,,1,,Europe/Paris,,STE, +STE:SA:OCE87784744,1,"Gare de Thuès-les-Bains",42.529838,2.24909,,1,,Europe/Paris,,STE, +STE:SA:OCE87784751,1,"Gare de Thuès-Carança",42.523606,2.22861,,1,,Europe/Paris,,STE, +STE:SA:OCE87784769,1,"Gare de Fontpédrouse-St-Thomas",42.513871,2.190106,,1,,Europe/Paris,,STE, +STE:SA:OCE87784777,1,"Gare de Sauto",42.5065,2.161085,,1,,Europe/Paris,,STE, +STE:SA:OCE87784785,1,"Gare de Planès",42.501807,2.137062,,1,,Europe/Paris,,STE, +STE:SA:OCE87784793,1,"Gare de Mont-Louis-la-Cabanasse",42.501977,2.114419,,1,,Europe/Paris,,STE, +STE:SA:OCE87784801,1,"Gare de Bolquère-Eyne",42.497513,2.089077,,1,,Europe/Paris,,STE, +STE:SA:OCE87784819,1,"Gare de Font-Romeu-Odeillo-Via",42.491307,2.039496,,1,,Europe/Paris,,STE, +STE:SA:OCE87784827,1,"Gare de Estavar",42.463001,2.01922,,1,,Europe/Paris,,STE, +STE:SA:OCE87784835,1,"Gare de Saillagouse",42.456796,2.031088,,1,,Europe/Paris,,STE, +STE:SA:OCE87784843,1,"Gare de Err",42.443375,2.02831,,1,,Europe/Paris,,STE, +STE:SA:OCE87784850,1,"Gare de Ste-Léocadie",42.441546,2.011168,,1,,Europe/Paris,,STE, +STE:SA:OCE87784868,1,"Gare de Osséja",42.420133,1.97782,,1,,Europe/Paris,,STE, +STE:SA:OCE87784876,1,"Gare de Bourg-Madame",42.43209,1.949313,,1,,Europe/Paris,,STE, +STE:SA:OCE87784884,1,"Gare de Ur-les-Escaldes",42.456802,1.940746,,1,,Europe/Paris,,STE, +STE:SA:OCE87784892,1,"Gare de Béna-Fanes",42.457981,1.918003,,1,,Europe/Paris,,STE, +DGL:SP:1,1,"24 Aout",45.682869,4.909324,0,0,DGL:SA:S10001,Europe/Paris,2,DGL, +DGL:SP:1000,1,"Garanjou",45.705197,4.816404,0,0,DGL:SA:S10482,Europe/Paris,2,DGL, +DGL:SP:10006,1,"Curie - Jules Guesde",45.709162,4.887259,0,0,DGL:SA:S10312,Europe/Paris,2,DGL, +DGL:SP:10007,1,"Curie - Jules Guesde",45.709249,4.887366,0,0,DGL:SA:S10312,Europe/Paris,2,DGL, +DGL:SP:1001,1,"Garanteze",45.67845,4.825549,0,0,DGL:SA:S10483,Europe/Paris,0,DGL, +DGL:SP:10012,1,"Pressense - Marrane",45.723243,4.865255,0,0,DGL:SA:S20012,Europe/Paris,0,DGL, +DGL:SP:10013,1,"Pressense - Marrane",45.723451,4.8652,0,0,DGL:SA:S20012,Europe/Paris,2,DGL, +DGL:SP:10017,1,"Francheville Bourg",45.737044,4.764481,0,0,DGL:SA:S20014,Europe/Paris,2,DGL, +DGL:SP:10018,1,"Francheville Bourg",45.73672,4.764068,0,0,DGL:SA:S20014,Europe/Paris,2,DGL, +DGL:SP:10019,1,"Francheville Doulline",45.737343,4.761473,0,0,DGL:SA:S20015,Europe/Paris,2,DGL, +DGL:SP:1002,1,"Garanteze",45.67844,4.8256,0,0,DGL:SA:S10483,Europe/Paris,0,DGL, +DGL:SP:10025,1,"La Dangereuse",45.853348,4.878085,0,0,DGL:SA:S10653,Europe/Paris,2,DGL, +DGL:SP:10026,1,"La Dangereuse",45.853341,4.877969,0,0,DGL:SA:S10653,Europe/Paris,2,DGL, +DGL:SP:10028,1,"Diligences",45.850177,4.876973,0,0,DGL:SA:S20019,Europe/Paris,0,DGL, +DGL:SP:10029,1,"Diligences",45.850173,4.876779,0,0,DGL:SA:S20019,Europe/Paris,2,DGL, +DGL:SP:1003,1,"Gare de Collonges-Fontaines",45.830719,4.847989,0,0,DGL:SA:S10484,Europe/Paris,2,DGL, +DGL:SP:10032,1,"Z.I. Rocade Est",45.723507,4.977269,0,0,DGL:SA:S20022,Europe/Paris,2,DGL, +DGL:SP:10033,1,"Z.I. Rocade Est",45.723377,4.977803,0,0,DGL:SA:S20022,Europe/Paris,0,DGL, +DGL:SP:10034,1,"Fresnel - Restaurant Z.I.",45.72528,4.971159,0,0,DGL:SA:S20023,Europe/Paris,0,DGL, +DGL:SP:10035,1,"Fresnel - Restaurant Z.I.",45.725349,4.971304,0,0,DGL:SA:S20023,Europe/Paris,0,DGL, +DGL:SP:10036,1,"Chassieu Jean Perrin",45.730084,4.971299,0,0,DGL:SA:S20024,Europe/Paris,0,DGL, +DGL:SP:10037,1,"Chassieu Jean Perrin",45.730316,4.971349,0,0,DGL:SA:S20024,Europe/Paris,0,DGL, +DGL:SP:10038,1,"Chassieu Arago",45.724882,4.962388,0,0,DGL:SA:S20025,Europe/Paris,2,DGL, +DGL:SP:10039,1,"Chassieu Arago",45.725271,4.962702,0,0,DGL:SA:S20025,Europe/Paris,2,DGL, +DGL:SP:1004,1,"Gare de Collonges-Fontaines",45.830409,4.848168,0,0,DGL:SA:S10484,Europe/Paris,2,DGL, +DGL:SP:10040,1,"Mi Plaine - Pelossier",45.718086,4.95853,0,0,DGL:SA:S10951,Europe/Paris,2,DGL, +DGL:SP:10041,1,"Mi Plaine - Pelossier",45.717594,4.958416,0,0,DGL:SA:S10951,Europe/Paris,2,DGL, +DGL:SP:10045,1,"Ruffinieres",45.766541,4.970898,0,0,DGL:SA:S20028,Europe/Paris,2,DGL, +DGL:SP:10046,1,"Ruffinieres",45.767394,4.970591,0,0,DGL:SA:S20028,Europe/Paris,0,DGL, +DGL:SP:10047,1,"Decines Verdun",45.765157,4.970433,0,0,DGL:SA:S20029,Europe/Paris,0,DGL, +DGL:SP:10048,1,"Decines Verdun",45.765166,4.970408,0,0,DGL:SA:S20029,Europe/Paris,0,DGL, +DGL:SP:10051,1,"Chassieu Le Haut",45.746175,4.972211,0,0,DGL:SA:S20031,Europe/Paris,2,DGL, +DGL:SP:10052,1,"Chassieu Le Haut",45.746291,4.9734,0,0,DGL:SA:S20031,Europe/Paris,2,DGL, +DGL:SP:10055,1,"Fontaines Petit Moulin",45.835447,4.845063,0,0,DGL:SA:S20020,Europe/Paris,0,DGL, +DGL:SP:10068,1,"Saxe - Gambetta",45.753453,4.846713,0,0,DGL:SA:S5092,Europe/Paris,2,DGL, +DGL:SP:1007,1,"Archives Departementales",45.75404,4.862697,0,0,DGL:SA:S5907,Europe/Paris,2,DGL, +DGL:SP:10074,1,"Poizat",45.759794,4.894789,0,0,DGL:SA:S20037,Europe/Paris,2,DGL, +DGL:SP:10075,1,"Combe au Loup",45.774781,4.986459,0,0,DGL:SA:S20038,Europe/Paris,2,DGL, +DGL:SP:10076,1,"Combe au Loup",45.774742,4.9862,0,0,DGL:SA:S20038,Europe/Paris,0,DGL, +DGL:SP:1008,1,"Archives Departementales",45.75408,4.862519,0,0,DGL:SA:S5907,Europe/Paris,2,DGL, +DGL:SP:10081,1,"St Irenee - Croix Blanche",45.755146,4.807751,0,0,DGL:SA:S11691,Europe/Paris,2,DGL, +DGL:SP:10082,1,"St Irenee - Croix Blanche",45.755167,4.807996,0,0,DGL:SA:S11691,Europe/Paris,2,DGL, +DGL:SP:10084,1,"Porte des Alpes",45.72017,4.923879,0,0,DGL:SA:S5260,Europe/Paris,0,DGL, +DGL:SP:10086,1,"St Priest Hotel de Ville",45.695271,4.935183,0,0,DGL:SA:S5480,Europe/Paris,2,DGL, +DGL:SP:10089,1,"Mions Jules Valles",45.654012,4.949706,0,0,DGL:SA:S10958,Europe/Paris,0,DGL, +DGL:SP:10092,1,"Place de la Paix",45.75121,4.914706,0,0,DGL:SA:S20045,Europe/Paris,2,DGL, +DGL:SP:101,1,"Mermoz",45.741968,5.022484,0,0,DGL:SA:S10051,Europe/Paris,0,DGL, +DGL:SP:1010,1,"Gare de Vaise",45.781024,4.804887,0,0,DGL:SA:S5103,Europe/Paris,2,DGL, +DGL:SP:10112,1,"Rouget de l'Isle",45.754404,4.86733,0,0,DGL:SA:S11235,Europe/Paris,2,DGL, +DGL:SP:10119,1,"La Vallonniere",45.76536,4.801702,0,0,DGL:SA:S20064,Europe/Paris,2,DGL, +DGL:SP:1012,1,"Gare de Vaise",45.781227,4.805089,0,0,DGL:SA:S5103,Europe/Paris,2,DGL, +DGL:SP:10121,1,"La Doua - INSA",45.782858,4.877645,0,0,DGL:SA:S10570,Europe/Paris,2,DGL, +DGL:SP:10125,1,"Reconnaissance - Balzac",45.754248,4.884167,0,0,DGL:SA:S5560,Europe/Paris,2,DGL, +DGL:SP:10126,1,"Reconnaissance - Balzac",45.75429,4.885108,0,0,DGL:SA:S5560,Europe/Paris,2,DGL, +DGL:SP:10129,1,"Dauphine - Lacassagne",45.753087,4.869018,0,0,DGL:SA:S5561,Europe/Paris,2,DGL, +DGL:SP:10130,1,"Dauphine - Lacassagne",45.753309,4.868784,0,0,DGL:SA:S5561,Europe/Paris,2,DGL, +DGL:SP:10135,1,"Pouteau",45.771622,4.833226,0,0,DGL:SA:S20069,Europe/Paris,0,DGL, +DGL:SP:10136,1,"Pouteau",45.771605,4.833161,0,0,DGL:SA:S20069,Europe/Paris,0,DGL, +DGL:SP:10137,1,"Tables Claudiennes",45.770904,4.833129,0,0,DGL:SA:S20070,Europe/Paris,2,DGL, +DGL:SP:10139,1,"Mairie du 1er",45.769621,4.830473,0,0,DGL:SA:S20072,Europe/Paris,2,DGL, +DGL:SP:10140,1,"Mairie du 1er",45.769676,4.830051,0,0,DGL:SA:S20072,Europe/Paris,2,DGL, +DGL:SP:10143,1,"Bron Jean Jaures",45.72995,4.905613,0,0,DGL:SA:S20073,Europe/Paris,0,DGL, +DGL:SP:10144,1,"Bron Jean Jaures",45.729971,4.905871,0,0,DGL:SA:S20073,Europe/Paris,0,DGL, +DGL:SP:10145,1,"Bron Salengro",45.730245,4.908467,0,0,DGL:SA:S20074,Europe/Paris,0,DGL, +DGL:SP:10146,1,"Bron Salengro",45.730696,4.908424,0,0,DGL:SA:S20074,Europe/Paris,0,DGL, +DGL:SP:10147,1,"Bron Hotel de Ville",45.734034,4.908901,0,0,DGL:SA:S5484,Europe/Paris,0,DGL, +DGL:SP:10148,1,"Bron Hotel de Ville",45.733181,4.908386,0,0,DGL:SA:S5484,Europe/Paris,0,DGL, +DGL:SP:1015,1,"Garibaldi - Gambetta",45.751804,4.853246,0,0,DGL:SA:S10488,Europe/Paris,2,DGL, +DGL:SP:10150,1,"Bron Jules Mas",45.735639,4.910339,0,0,DGL:SA:S10122,Europe/Paris,2,DGL, +DGL:SP:10155,1,"Bron Leo Lagrange",45.740646,4.929008,0,0,DGL:SA:S20077,Europe/Paris,2,DGL, +DGL:SP:10156,1,"Bron Leo Lagrange",45.740278,4.928579,0,0,DGL:SA:S20077,Europe/Paris,2,DGL, +DGL:SP:10158,1,"Bron Liberation",45.730254,4.901398,0,0,DGL:SA:S10124,Europe/Paris,2,DGL, +DGL:SP:10165,1,"Manissieux Pierre Blanche",45.705624,4.992009,0,0,DGL:SA:S20079,Europe/Paris,2,DGL, +DGL:SP:10166,1,"Flachet Alain Gilles",45.768019,4.889783,0,0,DGL:SA:S5024,Europe/Paris,0,DGL, +DGL:SP:10167,1,"Flachet Alain Gilles",45.768105,4.888771,0,0,DGL:SA:S5024,Europe/Paris,2,DGL, +DGL:SP:10169,1,"Austerlitz",45.775796,4.83492,0,0,DGL:SA:S10045,Europe/Paris,0,DGL, +DGL:SP:10170,1,"Bienvenus - Pressense",45.771713,4.885246,0,0,DGL:SA:S20085,Europe/Paris,2,DGL, +DGL:SP:10171,1,"Perroncel",45.775383,4.880194,0,0,DGL:SA:S11090,Europe/Paris,2,DGL, +DGL:SP:10172,1,"Pressense - Vaillant",45.772993,4.880791,0,0,DGL:SA:S20086,Europe/Paris,2,DGL, +DGL:SP:10175,1,"Legay",45.754565,4.916818,0,0,DGL:SA:S20087,Europe/Paris,2,DGL, +DGL:SP:10177,1,"Abondance",45.752942,4.849865,0,0,DGL:SA:S20088,Europe/Paris,2,DGL, +DGL:SP:10179,1,"Abondance",45.752636,4.851446,0,0,DGL:SA:S20088,Europe/Paris,2,DGL, +DGL:SP:1018,1,"Genas Place Republique",45.732505,4.996866,0,0,DGL:SA:S10490,Europe/Paris,2,DGL, +DGL:SP:10184,1,"Mermoz - Pinel",45.730799,4.886539,0,0,DGL:SA:S5082,Europe/Paris,2,DGL, +DGL:SP:10185,1,"Mermoz - Pinel",45.730865,4.886812,0,0,DGL:SA:S5082,Europe/Paris,2,DGL, +DGL:SP:10188,1,"Mermoz - Pinel",45.730215,4.887489,0,0,DGL:SA:S5082,Europe/Paris,2,DGL, +DGL:SP:1019,1,"Genas Place Republique",45.732544,4.996727,0,0,DGL:SA:S10490,Europe/Paris,2,DGL, +DGL:SP:10190,1,"Residence Marianne",45.665027,4.959484,0,0,DGL:SA:S20092,Europe/Paris,2,DGL, +DGL:SP:10191,1,"Monplaisir - Lumiere",45.74533,4.871721,0,0,DGL:SA:S5083,Europe/Paris,2,DGL, +DGL:SP:10196,1,"Les Canuts",45.776808,4.8291,0,0,DGL:SA:S20096,Europe/Paris,2,DGL, +DGL:SP:10197,1,"Les Canuts",45.776131,4.829572,0,0,DGL:SA:S20096,Europe/Paris,2,DGL, +DGL:SP:10198,1,"Henon",45.77883,4.827669,0,0,DGL:SA:S5045,Europe/Paris,2,DGL, +DGL:SP:10199,1,"Henon",45.778493,4.828225,0,0,DGL:SA:S5045,Europe/Paris,2,DGL, +DGL:SP:10200,1,"Residence E.Charret",45.781792,4.829223,0,0,DGL:SA:S20097,Europe/Paris,2,DGL, +DGL:SP:10201,1,"Residence E.Charret",45.781505,4.829159,0,0,DGL:SA:S20097,Europe/Paris,2,DGL, +DGL:SP:10202,1,"Le Parc Brunier",45.784448,4.829614,0,0,DGL:SA:S20098,Europe/Paris,2,DGL, +DGL:SP:10203,1,"Le Parc Brunier",45.784073,4.829443,0,0,DGL:SA:S20098,Europe/Paris,2,DGL, +DGL:SP:10204,1,"Hauts de la Rochette",45.786036,4.82984,0,0,DGL:SA:S20099,Europe/Paris,2,DGL, +DGL:SP:10205,1,"Hauts de la Rochette",45.786046,4.829764,0,0,DGL:SA:S20099,Europe/Paris,2,DGL, +DGL:SP:1021,1,"Genas - Bonnevay",45.750556,4.907115,0,0,DGL:SA:S10492,Europe/Paris,2,DGL, +DGL:SP:10218,1,"Andre Lassagne",45.805442,4.853694,0,0,DGL:SA:S20107,Europe/Paris,2,DGL, +DGL:SP:10219,1,"Andre Lassagne",45.805205,4.8534,0,0,DGL:SA:S20107,Europe/Paris,2,DGL, +DGL:SP:1022,1,"Genas - Bonnevay",45.751632,4.908078,0,0,DGL:SA:S10492,Europe/Paris,2,DGL, +DGL:SP:10220,1,"Chemin de Montgay",45.824637,4.861526,0,0,DGL:SA:S20108,Europe/Paris,0,DGL, +DGL:SP:10221,1,"Chemin de Montgay",45.824237,4.861688,0,0,DGL:SA:S20108,Europe/Paris,0,DGL, +DGL:SP:10222,1,"Curie",45.823121,4.864894,0,0,DGL:SA:S20109,Europe/Paris,2,DGL, +DGL:SP:10223,1,"Curie",45.823011,4.864979,0,0,DGL:SA:S20109,Europe/Paris,2,DGL, +DGL:SP:10224,1,"Camp Militaire",45.819461,4.869238,0,0,DGL:SA:S20110,Europe/Paris,0,DGL, +DGL:SP:10228,1,"Chemin de Rivery",45.837546,4.870671,0,0,DGL:SA:S20112,Europe/Paris,0,DGL, +DGL:SP:10229,1,"Chemin de Rivery",45.837368,4.871384,0,0,DGL:SA:S20112,Europe/Paris,0,DGL, +DGL:SP:10236,1,"Fontaines St Martin Centre",45.844854,4.854316,0,0,DGL:SA:S20117,Europe/Paris,2,DGL, +DGL:SP:10237,1,"Fontaines St Martin Centre",45.845043,4.854311,0,0,DGL:SA:S20117,Europe/Paris,2,DGL, +DGL:SP:10239,1,"Brossolette - Genas",45.748771,4.917845,0,0,DGL:SA:S10128,Europe/Paris,2,DGL, +DGL:SP:1024,1,"Genas La Grande Plaine",45.728601,5.020945,0,0,DGL:SA:S10493,Europe/Paris,2,DGL, +DGL:SP:10243,1,"Dupeuble",45.775723,4.891002,0,0,DGL:SA:S20119,Europe/Paris,0,DGL, +DGL:SP:10244,1,"Dupeuble",45.776158,4.892463,0,0,DGL:SA:S20119,Europe/Paris,0,DGL, +DGL:SP:10245,1,"Pailleron",45.778827,4.832202,0,0,DGL:SA:S20120,Europe/Paris,2,DGL, +DGL:SP:10246,1,"Ivry",45.776764,4.832276,0,0,DGL:SA:S20121,Europe/Paris,2,DGL, +DGL:SP:10247,1,"Eglise Demi-Lune",45.764225,4.786952,0,0,DGL:SA:S5882,Europe/Paris,2,DGL, +DGL:SP:10248,1,"Eglise Demi-Lune",45.76417,4.786178,0,0,DGL:SA:S5882,Europe/Paris,2,DGL, +DGL:SP:1025,1,"Genas La Grande Plaine",45.728583,5.020931,0,0,DGL:SA:S10493,Europe/Paris,2,DGL, +DGL:SP:10252,1,"Gorge de Loup",45.766789,4.804686,0,0,STE:SA:OCE87721175,Europe/Paris,2,DGL, +DGL:SP:10258,1,"Mailly",45.783034,4.833268,0,0,DGL:SA:S20123,Europe/Paris,2,DGL, +DGL:SP:10259,1,"Prairie",45.774758,4.902547,0,0,DGL:SA:S20124,Europe/Paris,0,DGL, +DGL:SP:1026,1,"Danton - Republique",45.731644,5.002031,0,0,DGL:SA:S10494,Europe/Paris,0,DGL, +DGL:SP:10260,1,"Prairie",45.774464,4.902418,0,0,DGL:SA:S20124,Europe/Paris,0,DGL, +DGL:SP:10263,1,"Crepieux La Pape",45.805796,4.8859,0,0,DGL:SA:S20128,Europe/Paris,0,DGL, +DGL:SP:10264,1,"Crepieux La Pape",45.805543,4.885155,0,0,DGL:SA:S20128,Europe/Paris,0,DGL, +DGL:SP:10265,1,"Buissiere - Viralamande(D)",45.804394,4.883416,0,0,DGL:SA:S20129,Europe/Paris,0,DGL, +DGL:SP:10266,1,"Buissiere - Viralamande(D)",45.80353,4.881844,0,0,DGL:SA:S20129,Europe/Paris,0,DGL, +DGL:SP:1027,1,"Danton - Republique",45.731767,5.001793,0,0,DGL:SA:S10494,Europe/Paris,0,DGL, +DGL:SP:10276,1,"Chauderaie",45.743198,4.772054,0,0,DGL:SA:S20130,Europe/Paris,2,DGL, +DGL:SP:10277,1,"Chauderaie",45.743128,4.771987,0,0,DGL:SA:S20130,Europe/Paris,2,DGL, +DGL:SP:10278,1,"Les Genets",45.748023,4.772461,0,0,DGL:SA:S20131,Europe/Paris,2,DGL, +DGL:SP:10279,1,"Les Genets",45.747647,4.772367,0,0,DGL:SA:S20131,Europe/Paris,2,DGL, +DGL:SP:10280,1,"Alai",45.75149,4.766996,0,0,DGL:SA:S20132,Europe/Paris,2,DGL, +DGL:SP:10281,1,"Alai",45.751431,4.766826,0,0,DGL:SA:S20132,Europe/Paris,2,DGL, +DGL:SP:10289,1,"Demi-Lune Clemenceau",45.763829,4.776582,0,0,DGL:SA:S10340,Europe/Paris,2,DGL, +DGL:SP:1029,1,"Genas Place Jean Jaures",45.738308,5.016675,0,0,DGL:SA:S10495,Europe/Paris,0,DGL, +DGL:SP:10292,1,"Gorge de Loup",45.765821,4.80409,0,0,STE:SA:OCE87721175,Europe/Paris,2,DGL, +DGL:SP:10300,1,"Mas du Taureau",45.785198,4.911282,0,0,DGL:SA:S10924,Europe/Paris,0,DGL, +DGL:SP:10301,1,"Gorge de Loup",45.766108,4.805337,0,0,STE:SA:OCE87721175,Europe/Paris,0,DGL, +DGL:SP:10302,1,"La Vallonniere",45.765347,4.801869,0,0,DGL:SA:S20064,Europe/Paris,2,DGL, +DGL:SP:10304,1,"Eglise Demi-Lune",45.764288,4.785296,0,0,DGL:SA:S5882,Europe/Paris,2,DGL, +DGL:SP:10308,1,"Menival Sainte Anne",45.757149,4.782059,0,0,DGL:SA:S5761,Europe/Paris,2,DGL, +DGL:SP:10309,1,"Menival Sainte Anne",45.757101,4.78216,0,0,DGL:SA:S5761,Europe/Paris,2,DGL, +DGL:SP:10310,1,"Brosset",45.757316,4.778916,0,0,DGL:SA:S20138,Europe/Paris,0,DGL, +DGL:SP:10311,1,"Brosset",45.757242,4.779003,0,0,DGL:SA:S20138,Europe/Paris,2,DGL, +DGL:SP:10312,1,"Les Croisettes",45.758932,4.767929,0,0,DGL:SA:S20134,Europe/Paris,0,DGL, +DGL:SP:10313,1,"Les Croisettes",45.758812,4.768026,0,0,DGL:SA:S20134,Europe/Paris,0,DGL, +DGL:SP:10314,1,"Croix Muriat",45.759404,4.725373,0,0,DGL:SA:S20139,Europe/Paris,2,DGL, +DGL:SP:10315,1,"Croix Muriat",45.759379,4.725282,0,0,DGL:SA:S20139,Europe/Paris,2,DGL, +DGL:SP:10320,1,"Gare Part-Dieu Vivier Merle",45.761759,4.857688,0,0,DGL:SA:S5520,Europe/Paris,2,DGL, +DGL:SP:10323,1,"Georges Pompidou",45.759087,4.863199,0,0,DGL:SA:S20141,Europe/Paris,2,DGL, +DGL:SP:10324,1,"Georges Pompidou",45.759127,4.862622,0,0,DGL:SA:S20141,Europe/Paris,2,DGL, +DGL:SP:10326,1,"Sacre Coeur",45.759406,4.868653,0,0,DGL:SA:S20142,Europe/Paris,2,DGL, +DGL:SP:10327,1,"Ferrandiere",45.759619,4.873575,0,0,DGL:SA:S20143,Europe/Paris,2,DGL, +DGL:SP:10328,1,"Ferrandiere",45.759646,4.873139,0,0,DGL:SA:S20143,Europe/Paris,2,DGL, +DGL:SP:10329,1,"Marengo",45.759591,4.877188,0,0,DGL:SA:S20144,Europe/Paris,0,DGL, +DGL:SP:10331,1,"Maisons Neuves",45.756684,4.876359,0,0,DGL:SA:S10902,Europe/Paris,2,DGL, +DGL:SP:10332,1,"Gorge de Loup",45.76591,4.804917,0,0,STE:SA:OCE87721175,Europe/Paris,2,DGL, +DGL:SP:10335,1,"Constellation",45.755098,4.77496,0,0,DGL:SA:S20145,Europe/Paris,2,DGL, +DGL:SP:10339,1,"Maison de l'Aqueduc",45.726898,4.778659,0,0,DGL:SA:S20147,Europe/Paris,0,DGL, +DGL:SP:10340,1,"Maison de l'Aqueduc",45.727316,4.778485,0,0,DGL:SA:S20147,Europe/Paris,0,DGL, +DGL:SP:10344,1,"Institut Pasteur",45.727922,4.824265,0,0,DGL:SA:S20148,Europe/Paris,2,DGL, +DGL:SP:10346,1,"Halle Tony Garnier",45.731353,4.824189,0,0,DGL:SA:S5909,Europe/Paris,2,DGL, +DGL:SP:10347,1,"Halle Tony Garnier",45.731323,4.823892,0,0,DGL:SA:S5909,Europe/Paris,2,DGL, +DGL:SP:10350,1,"Leclerc - Ayasse",45.73631,4.823873,0,0,DGL:SA:S20151,Europe/Paris,2,DGL, +DGL:SP:10351,1,"Leclerc - Ayasse",45.736723,4.823956,0,0,DGL:SA:S20151,Europe/Paris,2,DGL, +DGL:SP:10352,1,"Leclerc - General Frere",45.743747,4.829904,0,0,DGL:SA:S20152,Europe/Paris,2,DGL, +DGL:SP:10353,1,"Leclerc - General Frere",45.744325,4.8302,0,0,DGL:SA:S20152,Europe/Paris,2,DGL, +DGL:SP:10359,1,"Elisee Reclus",45.747533,4.937137,0,0,DGL:SA:S10405,Europe/Paris,0,DGL, +DGL:SP:10360,1,"Elisee Reclus",45.747696,4.936335,0,0,DGL:SA:S10405,Europe/Paris,0,DGL, +DGL:SP:10361,1,"Roosevelt C.Commercial",45.748121,4.933552,0,0,DGL:SA:S20155,Europe/Paris,2,DGL, +DGL:SP:10362,1,"Roosevelt C.Commercial",45.748454,4.933529,0,0,DGL:SA:S20155,Europe/Paris,2,DGL, +DGL:SP:10363,1,"Decines Verlaine",45.750784,4.940981,0,0,DGL:SA:S20156,Europe/Paris,0,DGL, +DGL:SP:10364,1,"Decines Verlaine",45.751231,4.941503,0,0,DGL:SA:S20156,Europe/Paris,0,DGL, +DGL:SP:10365,1,"Decines Beauregard",45.753148,4.945388,0,0,DGL:SA:S20157,Europe/Paris,2,DGL, +DGL:SP:10366,1,"Decines Beauregard",45.752792,4.944033,0,0,DGL:SA:S20157,Europe/Paris,2,DGL, +DGL:SP:10367,1,"Decines Jonquilles",45.755464,4.948776,0,0,DGL:SA:S20158,Europe/Paris,2,DGL, +DGL:SP:10368,1,"Decines Jonquilles",45.755112,4.948811,0,0,DGL:SA:S20158,Europe/Paris,2,DGL, +DGL:SP:10369,1,"Decines Acacias",45.759279,4.948842,0,0,DGL:SA:S20159,Europe/Paris,2,DGL, +DGL:SP:1037,1,"Genay Le Perron",45.89113,4.832913,0,0,DGL:SA:S10499,Europe/Paris,0,DGL, +DGL:SP:10370,1,"Decines Acacias",45.758725,4.948674,0,0,DGL:SA:S20159,Europe/Paris,2,DGL, +DGL:SP:10371,1,"Georges Brassens",45.768597,4.975357,0,0,DGL:SA:S20160,Europe/Paris,2,DGL, +DGL:SP:10372,1,"Georges Brassens",45.768258,4.975212,0,0,DGL:SA:S20160,Europe/Paris,2,DGL, +DGL:SP:10376,1,"Rue de France - IUT",45.768311,4.886041,0,0,DGL:SA:S20163,Europe/Paris,2,DGL, +DGL:SP:10378,1,"Aynard - La Fontaine",45.761147,4.876436,0,0,DGL:SA:S20165,Europe/Paris,2,DGL, +DGL:SP:1038,1,"Genay Madone",45.895536,4.834364,0,0,DGL:SA:S10500,Europe/Paris,2,DGL, +DGL:SP:10383,1,"Choulans - Tourelles",45.753842,4.819098,0,0,DGL:SA:S20166,Europe/Paris,2,DGL, +DGL:SP:10385,1,"Choulans - Tourelles",45.752822,4.818859,0,0,DGL:SA:S20166,Europe/Paris,2,DGL, +DGL:SP:10386,1,"Vieux Lyon",45.759475,4.827711,0,0,DGL:SA:S5095,Europe/Paris,2,DGL, +DGL:SP:10387,1,"Vieux Lyon",45.760087,4.826915,0,0,DGL:SA:S5095,Europe/Paris,2,DGL, +DGL:SP:1039,1,"Genay Madone",45.895992,4.8353,0,0,DGL:SA:S10500,Europe/Paris,2,DGL, +DGL:SP:10393,1,"Chardonnet",45.766121,4.928228,0,0,DGL:SA:S10195,Europe/Paris,2,DGL, +DGL:SP:10394,1,"Chardonnet",45.766331,4.928881,0,0,DGL:SA:S10195,Europe/Paris,2,DGL, +DGL:SP:1040,1,"General Andre",45.727772,4.877942,0,0,DGL:SA:S10501,Europe/Paris,2,DGL, +DGL:SP:10401,1,"Boileau",45.778169,5.014309,0,0,DGL:SA:S20172,Europe/Paris,0,DGL, +DGL:SP:10402,1,"Boileau",45.778155,5.013844,0,0,DGL:SA:S20172,Europe/Paris,0,DGL, +DGL:SP:10405,1,"Peyssilieu",45.769641,4.987202,0,0,DGL:SA:S11097,Europe/Paris,2,DGL, +DGL:SP:10406,1,"Peyssilieu",45.769676,4.987268,0,0,DGL:SA:S11097,Europe/Paris,2,DGL, +DGL:SP:10408,1,"Meyzieu Mendes France",45.766629,4.990877,0,0,DGL:SA:S10946,Europe/Paris,0,DGL, +DGL:SP:1041,1,"General Andre",45.727678,4.878118,0,0,DGL:SA:S10501,Europe/Paris,2,DGL, +DGL:SP:1042,1,"General Frere",45.72684,4.886883,0,0,DGL:SA:S10502,Europe/Paris,0,DGL, +DGL:SP:10423,1,"Terreaux",45.767593,4.832258,0,0,DGL:SA:S11383,Europe/Paris,2,DGL, +DGL:SP:10429,1,"Bellecour St Exupery",45.757227,4.82979,0,0,DGL:SA:S20180,Europe/Paris,2,DGL, +DGL:SP:1043,1,"General Frere",45.726784,4.886983,0,0,DGL:SA:S10502,Europe/Paris,0,DGL, +DGL:SP:10435,1,"Piscine de Vaise",45.77085,4.796804,0,0,DGL:SA:S20183,Europe/Paris,2,DGL, +DGL:SP:10436,1,"Piscine de Vaise",45.770396,4.796976,0,0,DGL:SA:S20183,Europe/Paris,2,DGL, +DGL:SP:10437,1,"Apollinaire - Bourbonnais",45.772801,4.795695,0,0,DGL:SA:S10262,Europe/Paris,2,DGL, +DGL:SP:1044,1,"Genevrey",45.820818,4.880405,0,0,DGL:SA:S10503,Europe/Paris,2,DGL, +DGL:SP:10440,1,"Dardilly Les Mouilles",45.797461,4.760175,0,0,DGL:SA:S20185,Europe/Paris,0,DGL, +DGL:SP:10441,1,"Dardilly Les Mouilles",45.797487,4.759417,0,0,DGL:SA:S20185,Europe/Paris,2,DGL, +DGL:SP:10442,1,"Cogny",45.800992,4.756302,0,0,DGL:SA:S20186,Europe/Paris,2,DGL, +DGL:SP:10443,1,"Cogny",45.800739,4.756356,0,0,DGL:SA:S20186,Europe/Paris,2,DGL, +DGL:SP:10444,1,"Dardilly Le Paillet",45.822655,4.748888,0,0,DGL:SA:S10323,Europe/Paris,0,DGL, +DGL:SP:10445,1,"Le Bouquis",45.823761,4.75522,0,0,DGL:SA:S20187,Europe/Paris,0,DGL, +DGL:SP:10446,1,"Le Bouquis",45.823609,4.754363,0,0,DGL:SA:S20187,Europe/Paris,0,DGL, +DGL:SP:10447,1,"Les Marsaults",45.822726,4.757298,0,0,DGL:SA:S20188,Europe/Paris,2,DGL, +DGL:SP:10448,1,"Les Marsaults",45.823136,4.757496,0,0,DGL:SA:S20188,Europe/Paris,2,DGL, +DGL:SP:10449,1,"Dardilly Le Jubin",45.817724,4.761352,0,0,DGL:SA:S20189,Europe/Paris,0,DGL, +DGL:SP:1045,1,"Genevrey",45.820772,4.880441,0,0,DGL:SA:S10503,Europe/Paris,2,DGL, +DGL:SP:10450,1,"Dardilly Peupliers",45.814162,4.75835,0,0,DGL:SA:S20190,Europe/Paris,2,DGL, +DGL:SP:10451,1,"Dardilly Peupliers",45.813456,4.758499,0,0,DGL:SA:S20190,Europe/Paris,2,DGL, +DGL:SP:10457,1,"Museum",45.775039,4.847891,0,0,DGL:SA:S20193,Europe/Paris,2,DGL, +DGL:SP:10458,1,"Museum",45.774723,4.848326,0,0,DGL:SA:S20193,Europe/Paris,2,DGL, +DGL:SP:10459,1,"Montee de la Boucle",45.781945,4.838956,0,0,DGL:SA:S20194,Europe/Paris,2,DGL, +DGL:SP:1046,1,"Genovefains",45.753512,4.816113,0,0,DGL:SA:S10504,Europe/Paris,2,DGL, +DGL:SP:10460,1,"Montee de la Boucle",45.782015,4.838638,0,0,DGL:SA:S20194,Europe/Paris,0,DGL, +DGL:SP:10474,1,"Girondins - Yves Farge",45.73949,4.831061,0,0,DGL:SA:S20203,Europe/Paris,2,DGL, +DGL:SP:10475,1,"Girondins - Yves Farge",45.73939,4.830697,0,0,DGL:SA:S20203,Europe/Paris,2,DGL, +DGL:SP:10476,1,"Halle Tony Garnier",45.731623,4.826432,0,0,DGL:SA:S5909,Europe/Paris,2,DGL, +DGL:SP:10477,1,"Halle Tony Garnier",45.731686,4.826222,0,0,DGL:SA:S5909,Europe/Paris,2,DGL, +DGL:SP:10478,1,"Sept Chemins",45.744841,4.932535,0,0,DGL:SA:S11269,Europe/Paris,2,DGL, +DGL:SP:10482,1,"Vaulx-en-Velin La Grappiniere",45.788231,4.912466,0,0,DGL:SA:S20205,Europe/Paris,2,DGL, +DGL:SP:10483,1,"Vaulx-en-Velin La Grappiniere",45.788348,4.912085,0,0,DGL:SA:S20205,Europe/Paris,2,DGL, +DGL:SP:10484,1,"O'Hara",45.783411,4.936505,0,0,DGL:SA:S20206,Europe/Paris,0,DGL, +DGL:SP:10485,1,"O'Hara",45.783385,4.936825,0,0,DGL:SA:S20206,Europe/Paris,0,DGL, +DGL:SP:10486,1,"Cachin - De Gaulle",45.783152,4.939889,0,0,DGL:SA:S20207,Europe/Paris,0,DGL, +DGL:SP:10487,1,"Cachin - De Gaulle",45.783219,4.940896,0,0,DGL:SA:S20207,Europe/Paris,0,DGL, +DGL:SP:10488,1,"Pont de Decines",45.777906,4.949881,0,0,DGL:SA:S20208,Europe/Paris,2,DGL, +DGL:SP:10489,1,"Pont de Decines",45.777753,4.95026,0,0,DGL:SA:S20208,Europe/Paris,2,DGL, +DGL:SP:10490,1,"Emile Bertrand",45.772028,4.957204,0,0,DGL:SA:S20209,Europe/Paris,2,DGL, +DGL:SP:10491,1,"Emile Bertrand",45.772212,4.957071,0,0,DGL:SA:S20209,Europe/Paris,2,DGL, +DGL:SP:10496,1,"Vaulx Z.I. Est",45.781558,4.944188,0,0,DGL:SA:S20211,Europe/Paris,0,DGL, +DGL:SP:10497,1,"Vaulx Z.I. Est",45.781237,4.944816,0,0,DGL:SA:S20211,Europe/Paris,2,DGL, +DGL:SP:10508,1,"Bellecour Charite",45.756149,4.833218,0,0,DGL:SA:S10077,Europe/Paris,2,DGL, +DGL:SP:10515,1,"Sergent Berthet",45.771009,4.805544,0,0,DGL:SA:S11270,Europe/Paris,2,DGL, +DGL:SP:10517,1,"Demi-Lune Victor Hugo",45.765672,4.783338,0,0,DGL:SA:S20217,Europe/Paris,2,DGL, +DGL:SP:10518,1,"Demi-Lune Victor Hugo",45.766204,4.784095,0,0,DGL:SA:S20217,Europe/Paris,0,DGL, +DGL:SP:10520,1,"Pont Kitchener RG",45.750327,4.823812,0,0,DGL:SA:S5088,Europe/Paris,2,DGL, +DGL:SP:10524,1,"1ere D.F.L.",45.750387,4.814146,0,0,DGL:SA:S20220,Europe/Paris,2,DGL, +DGL:SP:10525,1,"1ere D.F.L.",45.750702,4.814996,0,0,DGL:SA:S20220,Europe/Paris,2,DGL, +DGL:SP:10526,1,"4 Chemins - La Salette",45.750056,4.795655,0,0,DGL:SA:S10002,Europe/Paris,2,DGL, +DGL:SP:10528,1,"Belle Croix",45.842994,4.769924,0,0,DGL:SA:S20223,Europe/Paris,0,DGL, +DGL:SP:10529,1,"Belle Croix",45.8431,4.769594,0,0,DGL:SA:S20223,Europe/Paris,0,DGL, +DGL:SP:10530,1,"Dupuy",45.802266,4.776885,0,0,DGL:SA:S20224,Europe/Paris,2,DGL, +DGL:SP:10531,1,"Dupuy",45.802198,4.777114,0,0,DGL:SA:S20224,Europe/Paris,0,DGL, +DGL:SP:10532,1,"Echangeur Sans-Souci",45.804833,4.772276,0,0,DGL:SA:S20225,Europe/Paris,0,DGL, +DGL:SP:10533,1,"Echangeur Sans-Souci",45.804675,4.772487,0,0,DGL:SA:S20225,Europe/Paris,0,DGL, +DGL:SP:10542,1,"Limonest Maison Retraite",45.840454,4.77249,0,0,DGL:SA:S20229,Europe/Paris,2,DGL, +DGL:SP:10543,1,"Limonest Maison Retraite",45.84062,4.77233,0,0,DGL:SA:S20229,Europe/Paris,2,DGL, +DGL:SP:10547,1,"Timbaud",45.69126,4.90061,0,0,DGL:SA:S11388,Europe/Paris,0,DGL, +DGL:SP:10552,1,"Jacques Prevert",45.662103,4.895132,0,0,DGL:SA:S20233,Europe/Paris,0,DGL, +DGL:SP:10565,1,"Piscine d'Alai",45.750883,4.771752,0,0,DGL:SA:S5762,Europe/Paris,2,DGL, +DGL:SP:10566,1,"Gorge de Loup",45.766901,4.804498,0,0,STE:SA:OCE87721175,Europe/Paris,2,DGL, +DGL:SP:10567,1,"Gorge de Loup",45.767279,4.805312,0,0,STE:SA:OCE87721175,Europe/Paris,2,DGL, +DGL:SP:10568,1,"Carrefour Liberation",45.75791,4.776011,0,0,DGL:SA:S10164,Europe/Paris,0,DGL, +DGL:SP:10569,1,"Trois Renards",45.763729,4.774584,0,0,DGL:SA:S11404,Europe/Paris,2,DGL, +DGL:SP:10571,1,"Tassin Centre social",45.763489,4.766523,0,0,DGL:SA:S11373,Europe/Paris,2,DGL, +DGL:SP:10585,1,"Lycee Cuzin",45.800726,4.854881,0,0,DGL:SA:S20241,Europe/Paris,2,DGL, +DGL:SP:1059,1,"Gorge de Loup",45.765881,4.804632,0,0,STE:SA:OCE87721175,Europe/Paris,2,DGL, +DGL:SP:10590,1,"Berthaudiere",45.77543,4.969947,0,0,DGL:SA:S10093,Europe/Paris,2,DGL, +DGL:SP:10591,1,"Decines Champ Fleuri",45.77349,4.972453,0,0,DGL:SA:S10332,Europe/Paris,0,DGL, +DGL:SP:10594,1,"Meyzieu Gadelles",45.778696,5.017974,0,0,DGL:SA:S10940,Europe/Paris,2,DGL, +DGL:SP:10599,1,"Plateaux de St Rambert",45.801806,4.8263,0,0,DGL:SA:S20244,Europe/Paris,2,DGL, +DGL:SP:106,1,"Bachut - Mairie du 8eme",45.737084,4.86859,0,0,DGL:SA:S5310,Europe/Paris,2,DGL, +DGL:SP:10600,1,"Chalinel",45.800601,4.824917,0,0,DGL:SA:S20245,Europe/Paris,2,DGL, +DGL:SP:10601,1,"Chalinel",45.800618,4.824881,0,0,DGL:SA:S20245,Europe/Paris,2,DGL, +DGL:SP:10606,1,"Tissot",45.777008,4.803837,0,0,DGL:SA:S11389,Europe/Paris,2,DGL, +DGL:SP:10607,1,"Valmy",45.775186,4.805963,0,0,DGL:SA:S5094,Europe/Paris,2,DGL, +DGL:SP:1061,1,"Gorge de Loup",45.766927,4.804949,0,0,STE:SA:OCE87721175,Europe/Paris,2,DGL, +DGL:SP:10613,1,"Berlioz",45.799449,4.821659,0,0,DGL:SA:S20248,Europe/Paris,0,DGL, +DGL:SP:10614,1,"Berlioz",45.799515,4.821506,0,0,DGL:SA:S20248,Europe/Paris,0,DGL, +DGL:SP:10618,1,"Chassieu College",45.741508,4.977002,0,0,DGL:SA:S20249,Europe/Paris,0,DGL, +DGL:SP:1062,1,"Gorgeat",45.868978,4.839766,0,0,DGL:SA:S10514,Europe/Paris,2,DGL, +DGL:SP:1063,1,"Gorgeat",45.868586,4.839607,0,0,DGL:SA:S10514,Europe/Paris,2,DGL, +DGL:SP:10637,1,"Pont Churchill RD",45.779594,4.841036,0,0,DGL:SA:S11159,Europe/Paris,2,DGL, +DGL:SP:10638,1,"Pont Churchill RD",45.779745,4.840696,0,0,DGL:SA:S11159,Europe/Paris,2,DGL, +DGL:SP:1064,1,"Grand Chassagnon",45.701295,4.863759,0,0,DGL:SA:S10515,Europe/Paris,0,DGL, +DGL:SP:10642,1,"Stade du Sauze",45.764992,4.755722,0,0,DGL:SA:S20256,Europe/Paris,2,DGL, +DGL:SP:10643,1,"Stade du Sauze",45.764857,4.756565,0,0,DGL:SA:S20256,Europe/Paris,2,DGL, +DGL:SP:1065,1,"Grand Chassagnon",45.701385,4.863788,0,0,DGL:SA:S10515,Europe/Paris,0,DGL, +DGL:SP:10651,1,"8 Mai 1945",45.767471,5.002056,0,0,DGL:SA:S20259,Europe/Paris,2,DGL, +DGL:SP:1066,1,"Meyzieu Grand Large",45.777657,4.993493,0,0,DGL:SA:S10516,Europe/Paris,2,DGL, +DGL:SP:1067,1,"Meyzieu Grand Large",45.777314,4.992795,0,0,DGL:SA:S10516,Europe/Paris,2,DGL, +DGL:SP:10675,1,"Gensoul",45.752042,4.824815,0,0,DGL:SA:S20094,Europe/Paris,2,DGL, +DGL:SP:10676,1,"Ainay",45.75353,4.825899,0,0,DGL:SA:S20264,Europe/Paris,0,DGL, +DGL:SP:10677,1,"Ainay",45.753332,4.82589,0,0,DGL:SA:S20264,Europe/Paris,0,DGL, +DGL:SP:10678,1,"Antoine Vollon",45.755462,4.827272,0,0,DGL:SA:S20265,Europe/Paris,2,DGL, +DGL:SP:10679,1,"Franklin",45.752024,4.83111,0,0,DGL:SA:S20266,Europe/Paris,0,DGL, +DGL:SP:1068,1,"Grand Trou",45.735585,4.85316,0,0,DGL:SA:S10517,Europe/Paris,2,DGL, +DGL:SP:10680,1,"Ste Helene",45.753736,4.832003,0,0,DGL:SA:S20267,Europe/Paris,0,DGL, +DGL:SP:10683,1,"Simon Maupin",45.758923,4.833948,0,0,DGL:SA:S20269,Europe/Paris,2,DGL, +DGL:SP:10684,1,"Simon Maupin",45.758373,4.833177,0,0,DGL:SA:S20269,Europe/Paris,0,DGL, +DGL:SP:10685,1,"Jacobins",45.760505,4.834046,0,0,DGL:SA:S10586,Europe/Paris,2,DGL, +DGL:SP:10686,1,"Jacobins",45.761239,4.833398,0,0,DGL:SA:S10586,Europe/Paris,2,DGL, +DGL:SP:10687,1,"Tupin",45.763192,4.834219,0,0,DGL:SA:S20270,Europe/Paris,2,DGL, +DGL:SP:10688,1,"Tupin",45.762873,4.833324,0,0,DGL:SA:S20270,Europe/Paris,0,DGL, +DGL:SP:10689,1,"St Nizier",45.764721,4.834276,0,0,DGL:SA:S20271,Europe/Paris,0,DGL, +DGL:SP:1069,1,"Grand Trou",45.735584,4.853224,0,0,DGL:SA:S10517,Europe/Paris,2,DGL, +DGL:SP:10690,1,"St Nizier",45.764508,4.83319,0,0,DGL:SA:S20271,Europe/Paris,0,DGL, +DGL:SP:10691,1,"Terreaux",45.766543,4.832918,0,0,DGL:SA:S11383,Europe/Paris,0,DGL, +DGL:SP:10696,1,"Guillotiere - Gabriel Peri",45.755055,4.843507,0,0,DGL:SA:S5044,Europe/Paris,2,DGL, +DGL:SP:10697,1,"Guillotiere - Gabriel Peri",45.7557,4.842057,0,0,DGL:SA:S5044,Europe/Paris,2,DGL, +DGL:SP:10698,1,"Ampere - Victor Hugo",45.75247,4.829027,0,0,DGL:SA:S5000,Europe/Paris,0,DGL, +DGL:SP:10705,1,"Invalides - Hop.P.Garraud",45.747023,4.789464,0,0,DGL:SA:S20278,Europe/Paris,0,DGL, +DGL:SP:10706,1,"Invalides - Hop.P.Garraud",45.747072,4.789672,0,0,DGL:SA:S20278,Europe/Paris,2,DGL, +DGL:SP:1071,1,"Grand Vire",45.778185,4.91718,0,0,DGL:SA:S10518,Europe/Paris,2,DGL, +DGL:SP:1072,1,"Grand Vire",45.778318,4.916877,0,0,DGL:SA:S10518,Europe/Paris,2,DGL, +DGL:SP:10728,1,"Parc de Lacroix-Laval",45.784652,4.717284,0,0,DGL:SA:S11043,Europe/Paris,2,DGL, +DGL:SP:10729,1,"Parc de Lacroix-Laval",45.784009,4.7179,0,0,DGL:SA:S11043,Europe/Paris,2,DGL, +DGL:SP:10737,1,"Grandes Bruyeres",45.776077,4.733673,0,0,DGL:SA:S10522,Europe/Paris,2,DGL, +DGL:SP:10738,1,"Grandes Bruyeres",45.775713,4.734288,0,0,DGL:SA:S10522,Europe/Paris,2,DGL, +DGL:SP:10739,1,"Grandclement",45.759764,4.890583,0,0,DGL:SA:S10519,Europe/Paris,2,DGL, +DGL:SP:10740,1,"George Sand",45.81581,4.898576,0,0,DGL:SA:S20281,Europe/Paris,2,DGL, +DGL:SP:10747,1,"Maintenue",45.886865,4.80096,0,0,DGL:SA:S20284,Europe/Paris,2,DGL, +DGL:SP:10748,1,"St Germain Village",45.879684,4.804568,0,0,DGL:SA:S20285,Europe/Paris,2,DGL, +DGL:SP:1076,1,"Grandclement",45.759619,4.890254,0,0,DGL:SA:S10519,Europe/Paris,2,DGL, +DGL:SP:10763,1,"Hauts de Vassieux",45.80146,4.86225,0,0,DGL:SA:S20291,Europe/Paris,2,DGL, +DGL:SP:1077,1,"Grandclement",45.75928,4.890084,0,0,DGL:SA:S10519,Europe/Paris,0,DGL, +DGL:SP:1078,1,"Grandclement",45.759376,4.890243,0,0,DGL:SA:S10519,Europe/Paris,0,DGL, +DGL:SP:10787,1,"Croix Paquet",45.770921,4.836168,0,0,DGL:SA:S5222,Europe/Paris,0,DGL, +DGL:SP:10788,1,"Croix Paquet",45.770965,4.836309,0,0,DGL:SA:S5222,Europe/Paris,0,DGL, +DGL:SP:10792,1,"Champagne Centre",45.79503,4.792546,0,0,DGL:SA:S10183,Europe/Paris,2,DGL, +DGL:SP:10797,1,"Cite Tase",45.758296,4.928721,0,0,DGL:SA:S10253,Europe/Paris,2,DGL, +DGL:SP:108,1,"Badel",45.770981,4.702763,0,0,DGL:SA:S10053,Europe/Paris,0,DGL, +DGL:SP:10802,1,"Sept Chemins",45.744386,4.933131,0,0,DGL:SA:S11269,Europe/Paris,2,DGL, +DGL:SP:10818,1,"Pont Morand RG",45.769341,4.841058,0,0,DGL:SA:S11188,Europe/Paris,2,DGL, +DGL:SP:10836,1,"Leclair",45.770137,4.804695,0,0,DGL:SA:S20182,Europe/Paris,0,DGL, +DGL:SP:1084,1,"Grandvaux",45.772339,4.777667,0,0,DGL:SA:S10523,Europe/Paris,0,DGL, +DGL:SP:10844,1,"Craponne Val d'Yzeron",45.737927,4.716099,0,0,DGL:SA:S5767,Europe/Paris,2,DGL, +DGL:SP:10845,1,"Craponne Val d'Yzeron",45.737972,4.716499,0,0,DGL:SA:S5767,Europe/Paris,2,DGL, +DGL:SP:1085,1,"Grandvaux",45.771524,4.776653,0,0,DGL:SA:S10523,Europe/Paris,0,DGL, +DGL:SP:10854,1,"Pont Gallieni RG",45.747399,4.833258,0,0,DGL:SA:S20313,Europe/Paris,2,DGL, +DGL:SP:10855,1,"Pont Gallieni RG",45.746925,4.833121,0,0,DGL:SA:S20313,Europe/Paris,2,DGL, +DGL:SP:1086,1,"Grange Blanche",45.743313,4.878943,0,0,DGL:SA:S5041,Europe/Paris,0,DGL, +DGL:SP:10861,1,"Joannes Masset",45.769476,4.80118,0,0,DGL:SA:S10600,Europe/Paris,0,DGL, +DGL:SP:1087,1,"Grange Blanche",45.742784,4.878841,0,0,DGL:SA:S5041,Europe/Paris,2,DGL, +DGL:SP:10889,1,"Pont De Lattre RD",45.773642,4.838296,0,0,DGL:SA:S11175,Europe/Paris,2,DGL, +DGL:SP:1089,1,"Grange Blanche",45.743104,4.878637,0,0,DGL:SA:S5041,Europe/Paris,2,DGL, +DGL:SP:10890,1,"Cours Aristide Briand",45.78248,4.843612,0,0,DGL:SA:S10290,Europe/Paris,2,DGL, +DGL:SP:10891,1,"Cours Aristide Briand",45.782796,4.843961,0,0,DGL:SA:S10290,Europe/Paris,2,DGL, +DGL:SP:10892,1,"Bellevue",45.78585,4.848282,0,0,DGL:SA:S10085,Europe/Paris,2,DGL, +DGL:SP:10893,1,"Bellevue",45.785529,4.847739,0,0,DGL:SA:S10085,Europe/Paris,2,DGL, +DGL:SP:10894,1,"Petit Versailles",45.788363,4.852617,0,0,DGL:SA:S11094,Europe/Paris,2,DGL, +DGL:SP:10895,1,"Petit Versailles",45.788346,4.853787,0,0,DGL:SA:S11094,Europe/Paris,2,DGL, +DGL:SP:10896,1,"Les Eaux",45.790104,4.85729,0,0,DGL:SA:S10793,Europe/Paris,2,DGL, +DGL:SP:10897,1,"Les Eaux",45.789673,4.858055,0,0,DGL:SA:S10793,Europe/Paris,2,DGL, +DGL:SP:10898,1,"St Clair - Square Brosset",45.791146,4.860194,0,0,DGL:SA:S11293,Europe/Paris,2,DGL, +DGL:SP:109,1,"Badel",45.770852,4.702475,0,0,DGL:SA:S10053,Europe/Paris,0,DGL, +DGL:SP:10900,1,"Henaff",45.686257,4.891836,0,0,DGL:SA:S20322,Europe/Paris,0,DGL, +DGL:SP:10901,1,"Henaff",45.685786,4.892354,0,0,DGL:SA:S20322,Europe/Paris,2,DGL, +DGL:SP:10902,1,"Leclerc - Girondins",45.739441,4.826007,0,0,DGL:SA:S20323,Europe/Paris,2,DGL, +DGL:SP:10903,1,"Leclerc - Girondins",45.740072,4.826742,0,0,DGL:SA:S20323,Europe/Paris,2,DGL, +DGL:SP:10906,1,"Chemin Bressan",45.882642,4.834113,0,0,DGL:SA:S10219,Europe/Paris,2,DGL, +DGL:SP:10907,1,"Le Creuzet",45.886102,4.831924,0,0,DGL:SA:S10726,Europe/Paris,2,DGL, +DGL:SP:1091,1,"Grange Blanche",45.743133,4.878935,0,0,DGL:SA:S5041,Europe/Paris,2,DGL, +DGL:SP:10910,1,"Z.I. Ampere",45.889936,4.823849,0,0,DGL:SA:S20327,Europe/Paris,0,DGL, +DGL:SP:10911,1,"Z.I. Ampere",45.890079,4.823868,0,0,DGL:SA:S20327,Europe/Paris,0,DGL, +DGL:SP:10912,1,"Z.I. Thimonnier",45.888179,4.821849,0,0,DGL:SA:S20328,Europe/Paris,0,DGL, +DGL:SP:10913,1,"Z.I. Thimonnier",45.888209,4.821734,0,0,DGL:SA:S20328,Europe/Paris,0,DGL, +DGL:SP:10914,1,"Z.I. Freres Lumiere",45.886466,4.818304,0,0,DGL:SA:S20329,Europe/Paris,2,DGL, +DGL:SP:10915,1,"Z.I. Freres Lumiere",45.886659,4.818158,0,0,DGL:SA:S20329,Europe/Paris,2,DGL, +DGL:SP:10916,1,"Z.I. Jacquard",45.887772,4.817074,0,0,DGL:SA:S20330,Europe/Paris,2,DGL, +DGL:SP:10917,1,"Z.I. Jacquard",45.888249,4.81667,0,0,DGL:SA:S20330,Europe/Paris,2,DGL, +DGL:SP:10919,1,"Les Lilas",45.892817,4.83075,0,0,DGL:SA:S20331,Europe/Paris,2,DGL, +DGL:SP:10920,1,"Bellecour St Exupery",45.75795,4.830342,0,0,DGL:SA:S20180,Europe/Paris,0,DGL, +DGL:SP:10933,1,"Grosso - Roosevelt",45.763477,4.936296,0,0,DGL:SA:S20337,Europe/Paris,2,DGL, +DGL:SP:10934,1,"Grosso - Roosevelt",45.763448,4.937928,0,0,DGL:SA:S20337,Europe/Paris,2,DGL, +DGL:SP:10941,1,"A.Pare - Laennec",45.737288,4.884231,0,0,DGL:SA:S10006,Europe/Paris,0,DGL, +DGL:SP:10942,1,"Mermoz - Californie",45.733517,4.87984,0,0,DGL:SA:S10153,Europe/Paris,2,DGL, +DGL:SP:10946,1,"Pont Churchill RD",45.778743,4.840856,0,0,DGL:SA:S11159,Europe/Paris,2,DGL, +DGL:SP:10947,1,"Pont Churchill RD",45.778874,4.841003,0,0,DGL:SA:S11159,Europe/Paris,2,DGL, +DGL:SP:1095,1,"Grange Blanche",45.742975,4.879133,0,0,DGL:SA:S5041,Europe/Paris,2,DGL, +DGL:SP:10954,1,"Place des Tapis",45.775078,4.830386,0,0,DGL:SA:S20342,Europe/Paris,2,DGL, +DGL:SP:10955,1,"Place des Tapis",45.774542,4.830631,0,0,DGL:SA:S20342,Europe/Paris,2,DGL, +DGL:SP:10964,1,"Caluire Place Foch",45.797718,4.850896,0,0,DGL:SA:S10157,Europe/Paris,0,DGL, +DGL:SP:10966,1,"Neuville",45.875927,4.838588,0,0,DGL:SA:S5640,Europe/Paris,0,DGL, +DGL:SP:1097,1,"Grange Blanche - Viala",45.744287,4.885596,0,0,DGL:SA:S10526,Europe/Paris,2,DGL, +DGL:SP:10972,1,"Cuire Le Bas",45.794165,4.828189,0,0,DGL:SA:S20344,Europe/Paris,0,DGL, +DGL:SP:10973,1,"Montee des Forts",45.793689,4.833379,0,0,DGL:SA:S20345,Europe/Paris,0,DGL, +DGL:SP:10974,1,"Montee des Forts",45.793741,4.833471,0,0,DGL:SA:S20345,Europe/Paris,0,DGL, +DGL:SP:10976,1,"Place du Capot",45.79184,4.836807,0,0,DGL:SA:S20115,Europe/Paris,0,DGL, +DGL:SP:1098,1,"Grange Bruyere",45.751069,4.800754,0,0,DGL:SA:S10527,Europe/Paris,2,DGL, +DGL:SP:10983,1,"Cedres",45.807665,4.856512,0,0,DGL:SA:S20347,Europe/Paris,0,DGL, +DGL:SP:10984,1,"Cedres",45.807709,4.85654,0,0,DGL:SA:S20347,Europe/Paris,2,DGL, +DGL:SP:10987,1,"La Cle des Champs",45.801495,4.863925,0,0,DGL:SA:S20349,Europe/Paris,0,DGL, +DGL:SP:10988,1,"La Cle des Champs",45.801571,4.864122,0,0,DGL:SA:S20349,Europe/Paris,0,DGL, +DGL:SP:10989,1,"Parc des Sports",45.801501,4.869241,0,0,DGL:SA:S20350,Europe/Paris,0,DGL, +DGL:SP:1099,1,"Grange Bruyere",45.751444,4.801722,0,0,DGL:SA:S10527,Europe/Paris,2,DGL, +DGL:SP:10990,1,"Parc des Sports",45.801535,4.869319,0,0,DGL:SA:S20350,Europe/Paris,0,DGL, +DGL:SP:10993,1,"Varennes",45.819467,4.854466,0,0,DGL:SA:S20352,Europe/Paris,2,DGL, +DGL:SP:10994,1,"Varennes",45.819272,4.854302,0,0,DGL:SA:S20352,Europe/Paris,2,DGL, +DGL:SP:10995,1,"Illhaeusern",45.822305,4.854737,0,0,DGL:SA:S20353,Europe/Paris,2,DGL, +DGL:SP:10996,1,"Illhaeusern",45.822062,4.854726,0,0,DGL:SA:S20353,Europe/Paris,2,DGL, +DGL:SP:10997,1,"Rue d'Island",45.826265,4.852769,0,0,DGL:SA:S20354,Europe/Paris,2,DGL, +DGL:SP:10998,1,"Rue d'Island",45.825435,4.85322,0,0,DGL:SA:S20354,Europe/Paris,2,DGL, +DGL:SP:10999,1,"Caluire Place Foch",45.797513,4.850809,0,0,DGL:SA:S10157,Europe/Paris,0,DGL, +DGL:SP:110,1,"Balmont Bas",45.783203,4.800328,0,0,DGL:SA:S10054,Europe/Paris,0,DGL, +DGL:SP:1100,1,"Grange Haute",45.675088,4.822521,0,0,DGL:SA:S10528,Europe/Paris,0,DGL, +DGL:SP:11002,1,"Montchat Place Ronde",45.75415,4.890875,0,0,DGL:SA:S5760,Europe/Paris,2,DGL, +DGL:SP:11006,1,"Ecully Centre",45.774792,4.778017,0,0,DGL:SA:S10396,Europe/Paris,2,DGL, +DGL:SP:1101,1,"Grange Haute",45.675288,4.822813,0,0,DGL:SA:S10528,Europe/Paris,2,DGL, +DGL:SP:11014,1,"Grange Blanche",45.743172,4.877985,0,0,DGL:SA:S5041,Europe/Paris,0,DGL, +DGL:SP:1102,1,"Grange Rouge",45.731206,4.874142,0,0,DGL:SA:S10529,Europe/Paris,2,DGL, +DGL:SP:11020,1,"Route de Lyon",45.6782,4.895418,0,0,DGL:SA:S20358,Europe/Paris,2,DGL, +DGL:SP:11025,1,"Venissieux Allende",45.696963,4.901569,0,0,DGL:SA:S20360,Europe/Paris,0,DGL, +DGL:SP:11029,1,"La Fouillouse",45.686739,4.983598,0,0,DGL:SA:S20363,Europe/Paris,0,DGL, +DGL:SP:1103,1,"Grange Rouge",45.732004,4.87351,0,0,DGL:SA:S10529,Europe/Paris,2,DGL, +DGL:SP:11030,1,"Cimetiere Bas",45.698716,4.981116,0,0,DGL:SA:S20364,Europe/Paris,0,DGL, +DGL:SP:11031,1,"Cimetiere Bas",45.698742,4.981143,0,0,DGL:SA:S20364,Europe/Paris,0,DGL, +DGL:SP:11032,1,"Savoie",45.700516,4.981871,0,0,DGL:SA:S20365,Europe/Paris,0,DGL, +DGL:SP:11033,1,"Savoie",45.701014,4.98174,0,0,DGL:SA:S20365,Europe/Paris,0,DGL, +DGL:SP:11036,1,"Jules Verne",45.702217,4.974244,0,0,DGL:SA:S20368,Europe/Paris,0,DGL, +DGL:SP:11037,1,"Jules Verne",45.702254,4.974194,0,0,DGL:SA:S20368,Europe/Paris,0,DGL, +DGL:SP:11038,1,"Boris Vian",45.696957,4.962855,0,0,DGL:SA:S20369,Europe/Paris,0,DGL, +DGL:SP:11039,1,"Boris Vian",45.696742,4.96129,0,0,DGL:SA:S20369,Europe/Paris,0,DGL, +DGL:SP:11040,1,"Grisard",45.697394,4.948386,0,0,DGL:SA:S20370,Europe/Paris,0,DGL, +DGL:SP:11041,1,"Grisard",45.697363,4.94859,0,0,DGL:SA:S20370,Europe/Paris,0,DGL, +DGL:SP:1105,1,"Gratte-Ciel Metro",45.768669,4.882173,0,0,DGL:SA:S5042,Europe/Paris,0,DGL, +DGL:SP:11058,1,"Croix-Rousse",45.774359,4.831961,0,0,DGL:SA:S5223,Europe/Paris,2,DGL, +DGL:SP:1106,1,"Gratte-Ciel Metro",45.769073,4.881806,0,0,DGL:SA:S5042,Europe/Paris,2,DGL, +DGL:SP:11060,1,"Fayolle",45.802339,4.820387,0,0,DGL:SA:S20379,Europe/Paris,2,DGL, +DGL:SP:11061,1,"Fayolle",45.801778,4.820117,0,0,DGL:SA:S20379,Europe/Paris,2,DGL, +DGL:SP:11072,1,"La Trappe",45.768137,4.797788,0,0,DGL:SA:S20383,Europe/Paris,2,DGL, +DGL:SP:11073,1,"La Trappe",45.767851,4.797686,0,0,DGL:SA:S20383,Europe/Paris,2,DGL, +DGL:SP:11078,1,"Romain Rolland",45.763426,4.829148,0,0,DGL:SA:S20385,Europe/Paris,2,DGL, +DGL:SP:11079,1,"Route de Lyon",45.677801,4.89554,0,0,DGL:SA:S20358,Europe/Paris,2,DGL, +DGL:SP:1108,1,"Greillon",45.767212,4.814891,0,0,DGL:SA:S10531,Europe/Paris,2,DGL, +DGL:SP:11089,1,"Caluire Hotel de Ville Radiant",45.797278,4.843618,0,0,DGL:SA:S20393,Europe/Paris,0,DGL, +DGL:SP:11090,1,"Caluire Hotel de Ville Radiant",45.797017,4.84322,0,0,DGL:SA:S20393,Europe/Paris,0,DGL, +DGL:SP:11095,1,"Parc Lyder",45.707334,4.908193,0,0,DGL:SA:S20398,Europe/Paris,2,DGL, +DGL:SP:11096,1,"Parc Lyder",45.707107,4.908671,0,0,DGL:SA:S20398,Europe/Paris,2,DGL, +DGL:SP:11099,1,"Lycee Branly",45.753054,4.792729,0,0,DGL:SA:S20399,Europe/Paris,0,DGL, +DGL:SP:111,1,"Balmont Bas",45.783559,4.800949,0,0,DGL:SA:S10054,Europe/Paris,2,DGL, +DGL:SP:11108,1,"Balme Baron",45.80059,4.874089,0,0,DGL:SA:S20402,Europe/Paris,0,DGL, +DGL:SP:11109,1,"Balme Baron",45.800462,4.875396,0,0,DGL:SA:S20402,Europe/Paris,0,DGL, +DGL:SP:1111,1,"Greuze",45.766816,4.893971,0,0,DGL:SA:S10533,Europe/Paris,2,DGL, +DGL:SP:11110,1,"Le Biezin",45.758234,4.971966,0,0,DGL:SA:S20404,Europe/Paris,2,DGL, +DGL:SP:11111,1,"Le Biezin",45.75809,4.972345,0,0,DGL:SA:S20404,Europe/Paris,2,DGL, +DGL:SP:11112,1,"Les Regales",45.749224,4.973476,0,0,DGL:SA:S20405,Europe/Paris,0,DGL, +DGL:SP:11113,1,"Les Regales",45.750096,4.973531,0,0,DGL:SA:S20405,Europe/Paris,0,DGL, +DGL:SP:1112,1,"Grezieu la Varenne",45.747174,4.691185,0,0,DGL:SA:S10534,Europe/Paris,2,DGL, +DGL:SP:1113,1,"Grezieu la Varenne",45.747494,4.691803,0,0,DGL:SA:S10534,Europe/Paris,2,DGL, +DGL:SP:1114,1,"Gros Platane",45.837429,4.838921,0,0,DGL:SA:S10535,Europe/Paris,0,DGL, +DGL:SP:1115,1,"Gros Platane",45.837374,4.838996,0,0,DGL:SA:S10535,Europe/Paris,0,DGL, +DGL:SP:11191,1,"Carmagnole",45.759527,4.920986,0,0,DGL:SA:S20454,Europe/Paris,2,DGL, +DGL:SP:11194,1,"Marius Grosso",45.763175,4.931034,0,0,DGL:SA:S10916,Europe/Paris,2,DGL, +DGL:SP:11195,1,"Marius Grosso",45.763012,4.930319,0,0,DGL:SA:S10916,Europe/Paris,2,DGL, +DGL:SP:11196,1,"Corneille",45.755507,4.928281,0,0,DGL:SA:S20456,Europe/Paris,2,DGL, +DGL:SP:11197,1,"Corneille",45.755363,4.928287,0,0,DGL:SA:S20456,Europe/Paris,2,DGL, +DGL:SP:11199,1,"Manissieux Place Balzac",45.707134,4.977987,0,0,DGL:SA:S10904,Europe/Paris,2,DGL, +DGL:SP:1120,1,"Saxe - Prefecture",45.759117,4.845839,0,0,DGL:SA:S5400,Europe/Paris,2,DGL, +DGL:SP:11205,1,"La Doua",45.779039,4.871795,0,0,DGL:SA:S10654,Europe/Paris,2,DGL, +DGL:SP:11209,1,"Pierre Gay",45.760326,4.973365,0,0,DGL:SA:S20403,Europe/Paris,0,DGL, +DGL:SP:1121,1,"Saxe - Prefecture",45.759792,4.845819,0,0,DGL:SA:S5400,Europe/Paris,2,DGL, +DGL:SP:11210,1,"Pierre Gay",45.760721,4.97341,0,0,DGL:SA:S20403,Europe/Paris,0,DGL, +DGL:SP:11213,1,"Gare Part-Dieu Vivier Merle",45.761651,4.857683,0,0,DGL:SA:S5520,Europe/Paris,2,DGL, +DGL:SP:11215,1,"Maisons Neuves",45.756355,4.876189,0,0,DGL:SA:S10902,Europe/Paris,2,DGL, +DGL:SP:11217,1,"Albon",45.764479,4.831821,0,0,DGL:SA:S10020,Europe/Paris,2,DGL, +DGL:SP:1122,1,"Saxe - Prefecture",45.760229,4.845209,0,0,DGL:SA:S5400,Europe/Paris,2,DGL, +DGL:SP:11223,1,"Carrefour Liberation",45.757871,4.776296,0,0,DGL:SA:S10164,Europe/Paris,2,DGL, +DGL:SP:11226,1,"Neuville",45.875547,4.838648,0,0,DGL:SA:S5640,Europe/Paris,0,DGL, +DGL:SP:11227,1,"Tassin Centre social",45.76353,4.766293,0,0,DGL:SA:S11373,Europe/Paris,2,DGL, +DGL:SP:11228,1,"Marietton - Pont SNCF",45.775994,4.800288,0,0,DGL:SA:S20462,Europe/Paris,2,DGL, +DGL:SP:11231,1,"Mermoz - Pinel",45.730207,4.88727,0,0,DGL:SA:S5082,Europe/Paris,2,DGL, +DGL:SP:11232,1,"18 Juin 1940",45.768507,4.99062,0,0,DGL:SA:S20464,Europe/Paris,2,DGL, +DGL:SP:11233,1,"18 Juin 1940",45.768558,4.990751,0,0,DGL:SA:S20464,Europe/Paris,2,DGL, +DGL:SP:11238,1,"Les Tourelles",45.819558,4.858036,0,0,DGL:SA:S20466,Europe/Paris,0,DGL, +DGL:SP:11239,1,"Les Tourelles",45.819684,4.858016,0,0,DGL:SA:S20466,Europe/Paris,0,DGL, +DGL:SP:11240,1,"Marengo",45.758792,4.876289,0,0,DGL:SA:S20144,Europe/Paris,2,DGL, +DGL:SP:11247,1,"Avenue des Avoraux",45.875167,4.829417,0,0,DGL:SA:S20469,Europe/Paris,2,DGL, +DGL:SP:11248,1,"Le Mas Mathieu",45.880259,4.860244,0,0,DGL:SA:S20468,Europe/Paris,0,DGL, +DGL:SP:1125,1,"Guillermin - Terraillon",45.745306,4.918595,0,0,DGL:SA:S10540,Europe/Paris,2,DGL, +DGL:SP:1126,1,"Guillermin - Terraillon",45.745422,4.918626,0,0,DGL:SA:S10540,Europe/Paris,2,DGL, +DGL:SP:11268,1,"Kruger - Voillot",45.753571,4.909829,0,0,DGL:SA:S10615,Europe/Paris,2,DGL, +DGL:SP:11273,1,"Bron Jules Ferry",45.73197,4.896401,0,0,DGL:SA:S20481,Europe/Paris,2,DGL, +DGL:SP:11274,1,"Bron Jules Ferry",45.732138,4.896152,0,0,DGL:SA:S20481,Europe/Paris,2,DGL, +DGL:SP:11275,1,"Parc du Chene",45.738986,4.92686,0,0,DGL:SA:S5903,Europe/Paris,2,DGL, +DGL:SP:11276,1,"Parc du Chene",45.739032,4.926412,0,0,DGL:SA:S5903,Europe/Paris,2,DGL, +DGL:SP:11277,1,"St Irenee",45.755022,4.811745,0,0,DGL:SA:S20039,Europe/Paris,2,DGL, +DGL:SP:11278,1,"St Irenee",45.754387,4.81277,0,0,DGL:SA:S20039,Europe/Paris,2,DGL, +DGL:SP:11279,1,"1ere D.F.L.",45.751061,4.814215,0,0,DGL:SA:S20220,Europe/Paris,2,DGL, +DGL:SP:11284,1,"Simone Lagrange",45.7786,4.90301,0,0,DGL:SA:S20485,Europe/Paris,2,DGL, +DGL:SP:11285,1,"Simone Lagrange",45.778581,4.903433,0,0,DGL:SA:S20485,Europe/Paris,2,DGL, +DGL:SP:11286,1,"Clinique du Grand Large",45.771601,4.970857,0,0,DGL:SA:S20486,Europe/Paris,0,DGL, +DGL:SP:11287,1,"Clinique du Grand Large",45.771207,4.970748,0,0,DGL:SA:S20486,Europe/Paris,0,DGL, +DGL:SP:11305,1,"Surville Route de Vienne",45.718306,4.854632,0,0,DGL:SA:S11369,Europe/Paris,2,DGL, +DGL:SP:1131,1,"Guimet",45.855192,4.839614,0,0,DGL:SA:S10542,Europe/Paris,0,DGL, +DGL:SP:11310,1,"Place Sublet-Marcel Paul",45.699633,4.881962,0,0,DGL:SA:S20490,Europe/Paris,2,DGL, +DGL:SP:11315,1,"Gare de Venissieux",45.706401,4.888313,0,0,STE:SA:OCE87723320,Europe/Paris,2,DGL, +DGL:SP:11317,1,"Leclerc - Girard",45.7341,4.823696,0,0,DGL:SA:S20493,Europe/Paris,2,DGL, +DGL:SP:11318,1,"Leclerc - Girard",45.73417,4.823802,0,0,DGL:SA:S20493,Europe/Paris,2,DGL, +DGL:SP:1132,1,"Guimet",45.855932,4.839906,0,0,DGL:SA:S10542,Europe/Paris,2,DGL, +DGL:SP:11321,1,"Parilly",45.719816,4.88819,0,0,DGL:SA:S5084,Europe/Paris,2,DGL, +DGL:SP:11322,1,"Parilly",45.720094,4.88783,0,0,DGL:SA:S5084,Europe/Paris,2,DGL, +DGL:SP:11323,1,"Parilly",45.719053,4.887717,0,0,DGL:SA:S5084,Europe/Paris,0,DGL, +DGL:SP:11325,1,"St Fons Gabriel Peri",45.707508,4.855294,0,0,DGL:SA:S20496,Europe/Paris,2,DGL, +DGL:SP:11328,1,"Cite SNCF",45.703237,4.878634,0,0,DGL:SA:S20497,Europe/Paris,0,DGL, +DGL:SP:11329,1,"Maison du Peuple",45.704354,4.882167,0,0,DGL:SA:S20498,Europe/Paris,0,DGL, +DGL:SP:1133,1,"Guynemer",45.68363,4.934467,0,0,DGL:SA:S10543,Europe/Paris,2,DGL, +DGL:SP:11330,1,"Langevin",45.701935,4.88167,0,0,DGL:SA:S10712,Europe/Paris,0,DGL, +DGL:SP:11331,1,"Venissieux Emile Zola",45.702947,4.886624,0,0,DGL:SA:S20499,Europe/Paris,0,DGL, +DGL:SP:11332,1,"Venissieux Emile Zola",45.702802,4.886284,0,0,DGL:SA:S20499,Europe/Paris,0,DGL, +DGL:SP:11335,1,"Berliet Porte E",45.70438,4.891701,0,0,DGL:SA:S20500,Europe/Paris,2,DGL, +DGL:SP:11336,1,"Berliet Porte E",45.704748,4.89096,0,0,DGL:SA:S20500,Europe/Paris,2,DGL, +DGL:SP:11337,1,"Berliet Porte C",45.706887,4.898614,0,0,DGL:SA:S20501,Europe/Paris,2,DGL, +DGL:SP:11338,1,"Berliet Porte C",45.70693,4.89868,0,0,DGL:SA:S20501,Europe/Paris,2,DGL, +DGL:SP:1134,1,"Guynemer",45.683466,4.934549,0,0,DGL:SA:S10543,Europe/Paris,0,DGL, +DGL:SP:1135,1,"Hameau du Puy d'Or",45.819738,4.775215,0,0,DGL:SA:S10544,Europe/Paris,2,DGL, +DGL:SP:11355,1,"Marietton - S. Apollinaire",45.774721,4.793838,0,0,DGL:SA:S20509,Europe/Paris,2,DGL, +DGL:SP:1136,1,"Hameau du Puy d'Or",45.819811,4.775141,0,0,DGL:SA:S10544,Europe/Paris,2,DGL, +DGL:SP:11360,1,"Jean Jacques Rousseau",45.700157,4.942209,0,0,DGL:SA:S20511,Europe/Paris,0,DGL, +DGL:SP:11361,1,"Jean Jacques Rousseau",45.700162,4.941991,0,0,DGL:SA:S20511,Europe/Paris,0,DGL, +DGL:SP:11364,1,"Polaris",45.66937,4.896998,0,0,DGL:SA:S20512,Europe/Paris,0,DGL, +DGL:SP:1137,1,"Harmonie",45.748332,4.87272,0,0,DGL:SA:S10545,Europe/Paris,2,DGL, +DGL:SP:11374,1,"Albert Ferrus",45.664381,4.942392,0,0,DGL:SA:S20518,Europe/Paris,0,DGL, +DGL:SP:11375,1,"Albert Ferrus",45.66447,4.942422,0,0,DGL:SA:S20518,Europe/Paris,0,DGL, +DGL:SP:1138,1,"Harmonie",45.747321,4.875258,0,0,DGL:SA:S10545,Europe/Paris,2,DGL, +DGL:SP:11389,1,"Tissot",45.776821,4.804056,0,0,DGL:SA:S11389,Europe/Paris,2,DGL, +DGL:SP:1139,1,"Hauteclair",45.6924,4.789678,0,0,DGL:SA:S10546,Europe/Paris,0,DGL, +DGL:SP:11390,1,"Claude Joseph Bonnet",45.774363,4.821208,0,0,DGL:SA:S10146,Europe/Paris,2,DGL, +DGL:SP:11391,1,"La Colline",45.779611,4.817534,0,0,DGL:SA:S20523,Europe/Paris,2,DGL, +DGL:SP:11392,1,"Parilly",45.719837,4.88688,0,0,DGL:SA:S5084,Europe/Paris,2,DGL, +DGL:SP:11396,1,"Labourbe",45.717482,4.884355,0,0,DGL:SA:S20525,Europe/Paris,0,DGL, +DGL:SP:11397,1,"Labourbe",45.717471,4.884431,0,0,DGL:SA:S20525,Europe/Paris,0,DGL, +DGL:SP:1140,1,"Hauteclair",45.69234,4.789715,0,0,DGL:SA:S10546,Europe/Paris,0,DGL, +DGL:SP:11400,1,"Stade Ph. De Lassalle",45.783247,4.820811,0,0,DGL:SA:S20528,Europe/Paris,2,DGL, +DGL:SP:11404,1,"Ecluse de Rochetaillee",45.844442,4.835274,0,0,DGL:SA:S20530,Europe/Paris,2,DGL, +DGL:SP:11405,1,"Ecluse de Rochetaillee",45.844272,4.835214,0,0,DGL:SA:S20530,Europe/Paris,2,DGL, +DGL:SP:1141,1,"Hauteroche Centre",45.699734,4.827732,0,0,DGL:SA:S10547,Europe/Paris,2,DGL, +DGL:SP:11410,1,"Z.I. Genay Neuville",45.890728,4.8263,0,0,DGL:SA:S11485,Europe/Paris,2,DGL, +DGL:SP:11411,1,"Z.I. Genay Neuville",45.890526,4.825909,0,0,DGL:SA:S11485,Europe/Paris,2,DGL, +DGL:SP:11412,1,"Les Lilas",45.892714,4.830666,0,0,DGL:SA:S20331,Europe/Paris,2,DGL, +DGL:SP:11415,1,"L'Aventuriere",45.887203,4.835867,0,0,DGL:SA:S10618,Europe/Paris,2,DGL, +DGL:SP:11418,1,"Rey Loras",45.882999,4.83708,0,0,DGL:SA:S20536,Europe/Paris,0,DGL, +DGL:SP:11419,1,"Rey Loras",45.882711,4.837093,0,0,DGL:SA:S20536,Europe/Paris,0,DGL, +DGL:SP:1142,1,"Hauteroche Centre",45.700084,4.827773,0,0,DGL:SA:S10547,Europe/Paris,2,DGL, +DGL:SP:11420,1,"Rue de Prandieres",45.885088,4.83666,0,0,DGL:SA:S20537,Europe/Paris,0,DGL, +DGL:SP:11421,1,"Rue de Prandieres",45.88549,4.836408,0,0,DGL:SA:S20537,Europe/Paris,2,DGL, +DGL:SP:11425,1,"Montanay La Tour",45.876573,4.859237,0,0,DGL:SA:S20539,Europe/Paris,0,DGL, +DGL:SP:11426,1,"St Germain Four a Chaux",45.889002,4.806173,0,0,DGL:SA:S20541,Europe/Paris,2,DGL, +DGL:SP:11427,1,"St Germain Four a Chaux",45.888602,4.806323,0,0,DGL:SA:S20541,Europe/Paris,2,DGL, +DGL:SP:11428,1,"St Germain Cites",45.889306,4.800902,0,0,DGL:SA:S20542,Europe/Paris,0,DGL, +DGL:SP:11429,1,"La Poype",45.880958,4.862764,0,0,DGL:SA:S20543,Europe/Paris,0,DGL, +DGL:SP:1143,1,"Hauts de Solaize",45.645532,4.84217,0,0,DGL:SA:S10548,Europe/Paris,2,DGL, +DGL:SP:11430,1,"Les Roses",45.879563,4.85315,0,0,DGL:SA:S20544,Europe/Paris,2,DGL, +DGL:SP:11431,1,"Les Roses",45.879919,4.85372,0,0,DGL:SA:S20544,Europe/Paris,2,DGL, +DGL:SP:11434,1,"Neuville Place J. Jaures",45.87505,4.839979,0,0,DGL:SA:S20547,Europe/Paris,0,DGL, +DGL:SP:11435,1,"Stade J.Lacaze",45.883448,4.812728,0,0,DGL:SA:S20548,Europe/Paris,2,DGL, +DGL:SP:11436,1,"Stade J.Lacaze",45.883724,4.812432,0,0,DGL:SA:S20548,Europe/Paris,2,DGL, +DGL:SP:11437,1,"Route du Pontet",45.878794,4.827816,0,0,DGL:SA:S20549,Europe/Paris,0,DGL, +DGL:SP:11439,1,"Maison Ampere - Musee",45.854055,4.799784,0,0,DGL:SA:S20551,Europe/Paris,0,DGL, +DGL:SP:11440,1,"Ecole N.D. Bellegarde",45.870414,4.842009,0,0,DGL:SA:S20552,Europe/Paris,0,DGL, +DGL:SP:11442,1,"Garibaldi - Duquesne",45.772647,4.849801,0,0,DGL:SA:S20557,Europe/Paris,2,DGL, +DGL:SP:11443,1,"Garibaldi - Tronchet",45.769476,4.850338,0,0,DGL:SA:S20558,Europe/Paris,0,DGL, +DGL:SP:11444,1,"Garibaldi - Gambetta",45.751266,4.853556,0,0,DGL:SA:S10488,Europe/Paris,2,DGL, +DGL:SP:11452,1,"St Germain Pain Beni",45.883739,4.799466,0,0,DGL:SA:S20311,Europe/Paris,0,DGL, +DGL:SP:11477,1,"Solaize Croix Rouge",45.638901,4.853276,0,0,DGL:SA:S20570,Europe/Paris,0,DGL, +DGL:SP:11489,1,"Laennec",45.738165,4.886829,0,0,DGL:SA:S5062,Europe/Paris,0,DGL, +DGL:SP:11498,1,"Villebois Mareuil",45.754708,4.87457,0,0,DGL:SA:S20573,Europe/Paris,2,DGL, +DGL:SP:11499,1,"Villebois Mareuil",45.754737,4.874507,0,0,DGL:SA:S20573,Europe/Paris,2,DGL, +DGL:SP:11500,1,"Dauphine - Lacassagne",45.752628,4.869022,0,0,DGL:SA:S5561,Europe/Paris,2,DGL, +DGL:SP:11501,1,"Dauphine - Lacassagne",45.752692,4.868974,0,0,DGL:SA:S5561,Europe/Paris,2,DGL, +DGL:SP:11502,1,"St Philippe",45.750942,4.865152,0,0,DGL:SA:S20574,Europe/Paris,0,DGL, +DGL:SP:11503,1,"St Philippe",45.751069,4.865119,0,0,DGL:SA:S20574,Europe/Paris,0,DGL, +DGL:SP:11504,1,"Sans Souci",45.748387,4.863504,0,0,DGL:SA:S5091,Europe/Paris,2,DGL, +DGL:SP:11505,1,"Manufacture Montluc",45.749172,4.86102,0,0,DGL:SA:S5906,Europe/Paris,2,DGL, +DGL:SP:11515,1,"Vaulx Les Grolieres",45.787514,4.910387,0,0,DGL:SA:S11430,Europe/Paris,2,DGL, +DGL:SP:11516,1,"Vaulx Les Grolieres",45.787972,4.910408,0,0,DGL:SA:S11430,Europe/Paris,2,DGL, +DGL:SP:11518,1,"Bellecour A.Poncet",45.755945,4.8347,0,0,DGL:SA:S10075,Europe/Paris,2,DGL, +DGL:SP:11520,1,"Bellecour A.Poncet",45.756023,4.834408,0,0,DGL:SA:S10075,Europe/Paris,2,DGL, +DGL:SP:11529,1,"Hotel de Ville - L. Pradel",45.767878,4.838046,0,0,DGL:SA:S5046,Europe/Paris,0,DGL, +DGL:SP:1153,1,"Henon - Deleuvre",45.780186,4.825317,0,0,DGL:SA:S10553,Europe/Paris,2,DGL, +DGL:SP:1154,1,"Henon - Deleuvre",45.77995,4.825409,0,0,DGL:SA:S10553,Europe/Paris,2,DGL, +DGL:SP:11544,1,"Croix-Rousse",45.774762,4.832431,0,0,DGL:SA:S5223,Europe/Paris,2,DGL, +DGL:SP:1155,1,"Henri Gorjus",45.779608,4.823773,0,0,DGL:SA:S10554,Europe/Paris,2,DGL, +DGL:SP:1156,1,"Henri Gorjus",45.779575,4.823257,0,0,DGL:SA:S10554,Europe/Paris,2,DGL, +DGL:SP:1157,1,"Henriette",45.748756,4.786353,0,0,DGL:SA:S10555,Europe/Paris,2,DGL, +DGL:SP:1158,1,"Henriette",45.748764,4.786405,0,0,DGL:SA:S10555,Europe/Paris,2,DGL, +DGL:SP:1159,1,"Herbepin",45.713812,4.967321,0,0,DGL:SA:S10556,Europe/Paris,0,DGL, +DGL:SP:116,1,"Baraillon",45.764212,4.759752,0,0,DGL:SA:S10056,Europe/Paris,0,DGL, +DGL:SP:1160,1,"Herbepin",45.713971,4.967059,0,0,DGL:SA:S10556,Europe/Paris,0,DGL, +DGL:SP:1161,1,"Herriot - Cagne",45.693781,4.875642,0,0,DGL:SA:S5709,Europe/Paris,2,DGL, +DGL:SP:1162,1,"Herriot - Cagne",45.693751,4.875358,0,0,DGL:SA:S5709,Europe/Paris,2,DGL, +DGL:SP:11628,1,"Georges Levy",45.719931,4.868019,0,0,DGL:SA:S11717,Europe/Paris,2,DGL, +DGL:SP:11629,1,"Georges Levy",45.720111,4.868002,0,0,DGL:SA:S11717,Europe/Paris,2,DGL, +DGL:SP:1165,1,"Hippodrome Loup Pendu",45.815103,4.885508,0,0,DGL:SA:S10558,Europe/Paris,0,DGL, +DGL:SP:1166,1,"Hippodrome Loup Pendu",45.815115,4.88538,0,0,DGL:SA:S10558,Europe/Paris,0,DGL, +DGL:SP:1169,1,"HLM Republique",45.707196,4.870312,0,0,DGL:SA:S10560,Europe/Paris,2,DGL, +DGL:SP:117,1,"Baraillon",45.764118,4.75994,0,0,DGL:SA:S10056,Europe/Paris,2,DGL, +DGL:SP:1170,1,"HLM Republique",45.707195,4.870761,0,0,DGL:SA:S10560,Europe/Paris,2,DGL, +DGL:SP:11713,1,"Boutasse - C. Rousset",45.734455,4.903882,0,0,DGL:SA:S5313,Europe/Paris,2,DGL, +DGL:SP:11715,1,"Avenue des Avoraux",45.875206,4.829303,0,0,DGL:SA:S20469,Europe/Paris,2,DGL, +DGL:SP:11717,1,"Francheville Doulline",45.737636,4.761641,0,0,DGL:SA:S20015,Europe/Paris,2,DGL, +DGL:SP:11721,1,"Cimetiere de St Priest",45.693219,4.946377,0,0,DGL:SA:S11721,Europe/Paris,0,DGL, +DGL:SP:11722,1,"Cimetiere de St Priest",45.693674,4.94618,0,0,DGL:SA:S11721,Europe/Paris,0,DGL, +DGL:SP:11726,1,"Dardilly Le Jubin",45.817926,4.761579,0,0,DGL:SA:S20189,Europe/Paris,0,DGL, +DGL:SP:11728,1,"Decines Esplanade",45.77235,4.974623,0,0,DGL:SA:S11725,Europe/Paris,0,DGL, +DGL:SP:11736,1,"Stade Jean Bouin",45.697447,4.924354,0,0,DGL:SA:S11355,Europe/Paris,0,DGL, +DGL:SP:11738,1,"Gare Part-Dieu Villette",45.760732,4.862927,0,0,DGL:SA:S5540,Europe/Paris,0,DGL, +DGL:SP:11739,1,"Gare Part-Dieu Villette",45.760719,4.863081,0,0,DGL:SA:S5540,Europe/Paris,0,DGL, +DGL:SP:11740,1,"Mions Poste",45.669213,4.94981,0,0,DGL:SA:S10960,Europe/Paris,0,DGL, +DGL:SP:11743,1,"23 Aout 1944",45.665517,4.951586,0,0,DGL:SA:S11732,Europe/Paris,0,DGL, +DGL:SP:11744,1,"23 Aout 1944",45.665998,4.951442,0,0,DGL:SA:S11732,Europe/Paris,0,DGL, +DGL:SP:11745,1,"Mions Liberation",45.65887,4.953671,0,0,DGL:SA:S11733,Europe/Paris,0,DGL, +DGL:SP:11746,1,"Mions Liberation",45.658911,4.95384,0,0,DGL:SA:S11733,Europe/Paris,0,DGL, +DGL:SP:11747,1,"Mions Croix Rouge",45.652564,4.953898,0,0,DGL:SA:S11734,Europe/Paris,0,DGL, +DGL:SP:11748,1,"Mions Croix Rouge",45.652526,4.953999,0,0,DGL:SA:S11734,Europe/Paris,0,DGL, +DGL:SP:11749,1,"Leon Blum",45.761068,4.907992,0,0,DGL:SA:S11735,Europe/Paris,2,DGL, +DGL:SP:11750,1,"Place Jean Jaures",45.740178,4.840579,0,0,DGL:SA:S5221,Europe/Paris,2,DGL, +DGL:SP:11751,1,"Place Jean Jaures",45.739571,4.840372,0,0,DGL:SA:S5221,Europe/Paris,2,DGL, +DGL:SP:11753,1,"Jean Vallier",45.732641,4.839105,0,0,DGL:SA:S11737,Europe/Paris,2,DGL, +DGL:SP:11759,1,"Domremy - Lacassagne",45.751238,4.872777,0,0,DGL:SA:S11740,Europe/Paris,0,DGL, +DGL:SP:11760,1,"Roger Salengro",45.726855,4.905545,0,0,DGL:SA:S11741,Europe/Paris,2,DGL, +DGL:SP:11761,1,"Roger Salengro",45.726751,4.904988,0,0,DGL:SA:S11741,Europe/Paris,2,DGL, +DGL:SP:11762,1,"Mions Les Tilleuls",45.669272,4.955026,0,0,DGL:SA:S11742,Europe/Paris,2,DGL, +DGL:SP:11763,1,"Mions Les Tilleuls",45.66931,4.954527,0,0,DGL:SA:S11742,Europe/Paris,2,DGL, +DGL:SP:1178,1,"Hopital Croix-Rousse",45.782378,4.832839,0,0,DGL:SA:S10563,Europe/Paris,2,DGL, +DGL:SP:1179,1,"Hopital Croix-Rousse",45.781394,4.833361,0,0,DGL:SA:S10563,Europe/Paris,2,DGL, +DGL:SP:11796,1,"Rue des Vergers",45.805894,4.771499,0,0,DGL:SA:S11757,Europe/Paris,2,DGL, +DGL:SP:11797,1,"Rue des Vergers",45.805933,4.772196,0,0,DGL:SA:S11757,Europe/Paris,0,DGL, +DGL:SP:11798,1,"Allee des Hetres",45.805445,4.774336,0,0,DGL:SA:S11758,Europe/Paris,0,DGL, +DGL:SP:11799,1,"Allee des Hetres",45.805484,4.774621,0,0,DGL:SA:S11758,Europe/Paris,0,DGL, +DGL:SP:118,1,"Barbesi",45.668136,4.864497,0,0,DGL:SA:S10057,Europe/Paris,2,DGL, +DGL:SP:1180,1,"Hopital Henry Gabrielle",45.690322,4.794119,0,0,DGL:SA:S10564,Europe/Paris,2,DGL, +DGL:SP:11803,1,"Pre Gaudry",45.737827,4.839881,0,0,DGL:SA:S11151,Europe/Paris,2,DGL, +DGL:SP:11804,1,"Pre Gaudry",45.737218,4.839725,0,0,DGL:SA:S11151,Europe/Paris,2,DGL, +DGL:SP:1181,1,"Hopital Henry Gabrielle",45.690076,4.794262,0,0,DGL:SA:S10564,Europe/Paris,2,DGL, +DGL:SP:11810,1,"Charpennes Charles Hernu",45.769962,4.862373,0,0,DGL:SA:S5102,Europe/Paris,2,DGL, +DGL:SP:11812,1,"Bron Liberation",45.729608,4.902499,0,0,DGL:SA:S10124,Europe/Paris,0,DGL, +DGL:SP:1182,1,"Hopital Lyon Sud",45.69997,4.806305,0,0,DGL:SA:S10565,Europe/Paris,2,DGL, +DGL:SP:11832,1,"Meyzieu M.T.E.",45.761851,5.02258,0,0,DGL:SA:S20252,Europe/Paris,0,DGL, +DGL:SP:11833,1,"Andre Bollier",45.735474,4.839645,0,0,DGL:SA:S10029,Europe/Paris,0,DGL, +DGL:SP:11834,1,"Andre Bollier",45.734857,4.839463,0,0,DGL:SA:S10029,Europe/Paris,0,DGL, +DGL:SP:11836,1,"Clinique du Grand Large",45.771865,4.97033,0,0,DGL:SA:S20486,Europe/Paris,2,DGL, +DGL:SP:11837,1,"Clinique du Grand Large",45.772027,4.970723,0,0,DGL:SA:S20486,Europe/Paris,2,DGL, +DGL:SP:11838,1,"Decines Bascule",45.770991,4.962326,0,0,DGL:SA:S10331,Europe/Paris,2,DGL, +DGL:SP:11839,1,"Decines Bascule",45.771069,4.961686,0,0,DGL:SA:S10331,Europe/Paris,2,DGL, +DGL:SP:11840,1,"Le Molard",45.77129,4.96571,0,0,DGL:SA:S10735,Europe/Paris,2,DGL, +DGL:SP:11841,1,"Le Molard",45.771348,4.965906,0,0,DGL:SA:S10735,Europe/Paris,2,DGL, +DGL:SP:11842,1,"Aragon",45.782306,4.92939,0,0,DGL:SA:S11771,Europe/Paris,2,DGL, +DGL:SP:11843,1,"Aragon",45.782046,4.929326,0,0,DGL:SA:S11771,Europe/Paris,2,DGL, +DGL:SP:11844,1,"Paul Marcellin",45.784785,4.929239,0,0,DGL:SA:S11772,Europe/Paris,0,DGL, +DGL:SP:11845,1,"Paul Marcellin",45.784822,4.929187,0,0,DGL:SA:S11772,Europe/Paris,0,DGL, +DGL:SP:11847,1,"Clinique de Vaulx",45.790717,4.924562,0,0,DGL:SA:S11773,Europe/Paris,2,DGL, +DGL:SP:11854,1,"Parilly",45.719385,4.886589,0,0,DGL:SA:S5084,Europe/Paris,0,DGL, +DGL:SP:11857,1,"St Fons Mairie",45.709086,4.853144,0,0,DGL:SA:S11779,Europe/Paris,2,DGL, +DGL:SP:11858,1,"Curie Monnet",45.70694,4.850091,0,0,DGL:SA:S11780,Europe/Paris,0,DGL, +DGL:SP:11859,1,"Curie Monnet",45.70693,4.850155,0,0,DGL:SA:S11780,Europe/Paris,0,DGL, +DGL:SP:11860,1,"Quai Aulagne",45.70409,4.845143,0,0,DGL:SA:S11781,Europe/Paris,0,DGL, +DGL:SP:11862,1,"Belle Etoile",45.68465,4.845427,0,0,DGL:SA:S11782,Europe/Paris,0,DGL, +DGL:SP:11866,1,"Vallee de la Chimie",45.686662,4.846828,0,0,DGL:SA:S11784,Europe/Paris,0,DGL, +DGL:SP:11868,1,"St Fons Semard",45.694777,4.845002,0,0,DGL:SA:S11785,Europe/Paris,2,DGL, +DGL:SP:11872,1,"St Fons Recherche",45.68424,4.847668,0,0,DGL:SA:S11787,Europe/Paris,0,DGL, +DGL:SP:11877,1,"11 Novembre 1918",45.68866,4.863243,0,0,DGL:SA:S11788,Europe/Paris,0,DGL, +DGL:SP:11878,1,"Lortet",45.741637,4.840967,0,0,DGL:SA:S11789,Europe/Paris,2,DGL, +DGL:SP:11879,1,"Lortet",45.741433,4.840444,0,0,DGL:SA:S11789,Europe/Paris,2,DGL, +DGL:SP:11880,1,"Interpol",45.782602,4.850217,0,0,DGL:SA:S11790,Europe/Paris,2,DGL, +DGL:SP:11881,1,"Interpol",45.782326,4.849677,0,0,DGL:SA:S11790,Europe/Paris,2,DGL, +DGL:SP:11882,1,"Musee d'Art Contemporain",45.783986,4.853124,0,0,DGL:SA:S11791,Europe/Paris,2,DGL, +DGL:SP:11883,1,"Musee d'Art Contemporain",45.783732,4.85243,0,0,DGL:SA:S11791,Europe/Paris,2,DGL, +DGL:SP:1189,1,"Hotel de Ville - L. Pradel",45.767168,4.835969,0,0,DGL:SA:S5046,Europe/Paris,0,DGL, +DGL:SP:11891,1,"Berthet - Loucheur",45.767942,4.805445,0,0,DGL:SA:S11796,Europe/Paris,2,DGL, +DGL:SP:11893,1,"Berthet - Loucheur",45.768123,4.804193,0,0,DGL:SA:S11796,Europe/Paris,2,DGL, +DGL:SP:11897,1,"Artaud",45.781028,4.836059,0,0,DGL:SA:S11608,Europe/Paris,2,DGL, +DGL:SP:11898,1,"Charlemagne - C.-Perier",45.742257,4.821995,0,0,DGL:SA:S11798,Europe/Paris,2,DGL, +DGL:SP:1190,1,"Hotel de Ville - L. Pradel",45.767201,4.836086,0,0,DGL:SA:S5046,Europe/Paris,0,DGL, +DGL:SP:1191,1,"Hotel de Ville - L. Pradel",45.769189,4.837758,0,0,DGL:SA:S5046,Europe/Paris,2,DGL, +DGL:SP:11917,1,"Laurent Gerin",45.702385,4.883232,0,0,DGL:SA:S11804,Europe/Paris,2,DGL, +DGL:SP:1192,1,"Hotel de Ville - L. Pradel",45.768088,4.8383,0,0,DGL:SA:S5046,Europe/Paris,2,DGL, +DGL:SP:11920,1,"Gratte-Ciel Metro",45.769557,4.88031,0,0,DGL:SA:S5042,Europe/Paris,2,DGL, +DGL:SP:11921,1,"Parc Tete d'Or-Churchill",45.778068,4.844852,0,0,DGL:SA:S11050,Europe/Paris,2,DGL, +DGL:SP:11925,1,"Parc de Champvert",45.76207,4.795742,0,0,DGL:SA:S11808,Europe/Paris,2,DGL, +DGL:SP:11926,1,"Parc de Champvert",45.761801,4.795717,0,0,DGL:SA:S11808,Europe/Paris,2,DGL, +DGL:SP:11927,1,"Provinces - Chavril",45.747502,4.800054,0,0,DGL:SA:S11809,Europe/Paris,0,DGL, +DGL:SP:11928,1,"Provinces - Chavril",45.747695,4.800268,0,0,DGL:SA:S11809,Europe/Paris,0,DGL, +DGL:SP:11937,1,"Ste Foy Platanes",45.731809,4.776345,0,0,DGL:SA:S11812,Europe/Paris,2,DGL, +DGL:SP:11938,1,"Ste Foy Platanes",45.731034,4.776387,0,0,DGL:SA:S11812,Europe/Paris,2,DGL, +DGL:SP:11940,1,"Grande Rue de St Clair",45.790865,4.859486,0,0,DGL:SA:S11814,Europe/Paris,2,DGL, +DGL:SP:11949,1,"St Fons Gabriel Peri",45.705806,4.85573,0,0,DGL:SA:S20496,Europe/Paris,0,DGL, +DGL:SP:11972,1,"Irigny Mairie",45.672781,4.821005,0,0,DGL:SA:S10580,Europe/Paris,0,DGL, +DGL:SP:11974,1,"Lycee Blaise Pascal",45.765342,4.751596,0,0,DGL:SA:S11829,Europe/Paris,0,DGL, +DGL:SP:11975,1,"Lycee Blaise Pascal",45.765632,4.751082,0,0,DGL:SA:S11829,Europe/Paris,2,DGL, +DGL:SP:1198,1,"Hotel de Ville - L. Pradel",45.766535,4.83531,0,0,DGL:SA:S5046,Europe/Paris,0,DGL, +DGL:SP:11987,1,"Henri Germain",45.704195,4.903743,0,0,DGL:SA:S11834,Europe/Paris,2,DGL, +DGL:SP:11988,1,"Henri Germain",45.704375,4.903751,0,0,DGL:SA:S11834,Europe/Paris,2,DGL, +DGL:SP:11997,1,"Domer - Garibaldi",45.747656,4.851565,0,0,DGL:SA:S11847,Europe/Paris,2,DGL, +DGL:SP:11998,1,"Domer - Garibaldi",45.747601,4.850007,0,0,DGL:SA:S11847,Europe/Paris,2,DGL, +DGL:SP:12005,1,"Mairie de St Rambert",45.798199,4.830148,0,0,DGL:SA:S11856,Europe/Paris,0,DGL, +DGL:SP:12007,1,"Grande Rue St Rambert",45.799744,4.833924,0,0,DGL:SA:S11858,Europe/Paris,0,DGL, +DGL:SP:12009,1,"Rue des Balmes",45.801465,4.835881,0,0,DGL:SA:S11860,Europe/Paris,0,DGL, +DGL:SP:12015,1,"Simondan",45.801147,4.83153,0,0,DGL:SA:S11866,Europe/Paris,0,DGL, +DGL:SP:12017,1,"Fabregue",45.798908,4.824144,0,0,DGL:SA:S11868,Europe/Paris,0,DGL, +DGL:SP:12018,1,"Schonberg",45.799509,4.827054,0,0,DGL:SA:S11869,Europe/Paris,2,DGL, +DGL:SP:12019,1,"La Boisserie",45.801266,4.828639,0,0,DGL:SA:S11870,Europe/Paris,0,DGL, +DGL:SP:12020,1,"Chauderasses",45.744321,4.780872,0,0,DGL:SA:S11871,Europe/Paris,0,DGL, +DGL:SP:12021,1,"Chauderasses",45.744489,4.781008,0,0,DGL:SA:S11871,Europe/Paris,0,DGL, +DGL:SP:12025,1,"Chemin des Fonts",45.73863,4.796649,0,0,DGL:SA:S11873,Europe/Paris,0,DGL, +DGL:SP:12026,1,"Chemin des Fonts",45.739199,4.796944,0,0,DGL:SA:S11873,Europe/Paris,0,DGL, +DGL:SP:12027,1,"La Fucharniere",45.804615,4.802047,0,0,DGL:SA:S11874,Europe/Paris,0,DGL, +DGL:SP:12028,1,"La Fucharniere",45.804698,4.801974,0,0,DGL:SA:S11874,Europe/Paris,0,DGL, +DGL:SP:12036,1,"Dardilly St Joseph",45.803873,4.755426,0,0,DGL:SA:S11877,Europe/Paris,2,DGL, +DGL:SP:12037,1,"Dardilly St Joseph",45.803929,4.755376,0,0,DGL:SA:S11877,Europe/Paris,2,DGL, +DGL:SP:12038,1,"Edouard Aynard",45.776722,4.778929,0,0,DGL:SA:S11878,Europe/Paris,0,DGL, +DGL:SP:12039,1,"Edouard Aynard",45.776615,4.778873,0,0,DGL:SA:S11878,Europe/Paris,2,DGL, +DGL:SP:12041,1,"Lycee Francois Cevert",45.782903,4.788955,0,0,DGL:SA:S11880,Europe/Paris,0,DGL, +DGL:SP:12042,1,"Lycee Francois Cevert",45.782812,4.78899,0,0,DGL:SA:S11880,Europe/Paris,0,DGL, +DGL:SP:12045,1,"Gare de Vaise",45.78099,4.805233,0,0,DGL:SA:S5103,Europe/Paris,2,DGL, +DGL:SP:12046,1,"Moulin Berger",45.801441,4.767222,0,0,DGL:SA:S11883,Europe/Paris,2,DGL, +DGL:SP:12047,1,"Moulin Berger",45.801045,4.767617,0,0,DGL:SA:S11883,Europe/Paris,2,DGL, +DGL:SP:12049,1,"Bourgogne",45.780802,4.800658,0,0,DGL:SA:S20221,Europe/Paris,0,DGL, +DGL:SP:12051,1,"Duchere Av.de Champagne",45.790261,4.797428,0,0,DGL:SA:S11884,Europe/Paris,2,DGL, +DGL:SP:12053,1,"Ferroux",45.816667,4.813967,0,0,DGL:SA:S11886,Europe/Paris,0,DGL, +DGL:SP:1206,1,"Ile Barbe",45.795681,4.830445,0,0,DGL:SA:S10572,Europe/Paris,0,DGL, +DGL:SP:12061,1,"Les Gorges",45.820359,4.802445,0,0,DGL:SA:S11890,Europe/Paris,2,DGL, +DGL:SP:12063,1,"Paul Chevrel",45.819553,4.800181,0,0,DGL:SA:S11891,Europe/Paris,2,DGL, +DGL:SP:1207,1,"Ile Barbe",45.795823,4.830516,0,0,DGL:SA:S10572,Europe/Paris,0,DGL, +DGL:SP:12074,1,"Lycee Ombrosa",45.807642,4.843872,0,0,DGL:SA:S11895,Europe/Paris,0,DGL, +DGL:SP:12075,1,"Lycee Ombrosa",45.807492,4.843736,0,0,DGL:SA:S11895,Europe/Paris,0,DGL, +DGL:SP:12076,1,"Pont Masaryk",45.777896,4.81079,0,0,DGL:SA:S11896,Europe/Paris,2,DGL, +DGL:SP:12078,1,"Les Malandieres",45.892653,4.812435,0,0,DGL:SA:S11897,Europe/Paris,2,DGL, +DGL:SP:12079,1,"Les Malandieres",45.893,4.812218,0,0,DGL:SA:S11897,Europe/Paris,2,DGL, +DGL:SP:1208,1,"Ile Roy",45.824167,4.858827,0,0,DGL:SA:S10573,Europe/Paris,0,DGL, +DGL:SP:12082,1,"Clinique Charcot",45.750246,4.798492,0,0,DGL:SA:S10258,Europe/Paris,2,DGL, +DGL:SP:1209,1,"Ile Roy",45.824386,4.858695,0,0,DGL:SA:S10573,Europe/Paris,0,DGL, +DGL:SP:1210,1,"Ile Tabard",45.664471,4.825983,0,0,DGL:SA:S10574,Europe/Paris,2,DGL, +DGL:SP:12105,1,"Oullins Mairie",45.714641,4.807205,0,0,DGL:SA:S11035,Europe/Paris,2,DGL, +DGL:SP:12109,1,"St Genis Centre",45.69486,4.793242,0,0,DGL:SA:S11305,Europe/Paris,0,DGL, +DGL:SP:1211,1,"Ile Tabard",45.664816,4.826243,0,0,DGL:SA:S10574,Europe/Paris,2,DGL, +DGL:SP:12110,1,"Barolles Gendarmerie",45.686428,4.785764,0,0,DGL:SA:S12255,Europe/Paris,2,DGL, +DGL:SP:12111,1,"Barolles Gendarmerie",45.68669,4.78611,0,0,DGL:SA:S12255,Europe/Paris,2,DGL, +DGL:SP:1212,1,"Impasse Mathieu",45.788276,4.839617,0,0,DGL:SA:S10575,Europe/Paris,2,DGL, +DGL:SP:12120,1,"Gare de Vaise",45.781302,4.804951,0,0,DGL:SA:S5103,Europe/Paris,2,DGL, +DGL:SP:12126,1,"Porte de Lyon",45.82165,4.763628,0,0,DGL:SA:S11147,Europe/Paris,2,DGL, +DGL:SP:12127,1,"Maison Carree",45.824897,4.761823,0,0,DGL:SA:S12257,Europe/Paris,0,DGL, +DGL:SP:1213,1,"Impasse Mathieu",45.788219,4.839498,0,0,DGL:SA:S10575,Europe/Paris,2,DGL, +DGL:SP:12139,1,"St Abdon",45.660945,4.793643,0,0,DGL:SA:S11288,Europe/Paris,2,DGL, +DGL:SP:12150,1,"L'Avenir",45.746385,4.709832,0,0,DGL:SA:S12268,Europe/Paris,2,DGL, +DGL:SP:12151,1,"L'Avenir",45.746658,4.70997,0,0,DGL:SA:S12268,Europe/Paris,2,DGL, +DGL:SP:12157,1,"Le Chateau",45.742716,4.719455,0,0,DGL:SA:S12271,Europe/Paris,0,DGL, +DGL:SP:12162,1,"Les Bles d'Or",45.667629,4.945562,0,0,DGL:SA:S12273,Europe/Paris,0,DGL, +DGL:SP:12163,1,"Les Bles d'Or",45.667375,4.945268,0,0,DGL:SA:S12273,Europe/Paris,0,DGL, +DGL:SP:12169,1,"J. Ambre Hopital entree pieton",45.780692,4.832544,0,0,DGL:SA:S12276,Europe/Paris,0,DGL, +DGL:SP:1218,1,"Irigny Gare",45.67727,4.831249,0,0,DGL:SA:S10578,Europe/Paris,0,DGL, +DGL:SP:12180,1,"Place de Paris",45.779846,4.803587,0,0,DGL:SA:S12286,Europe/Paris,2,DGL, +DGL:SP:12181,1,"Place de Paris",45.779327,4.803075,0,0,DGL:SA:S12286,Europe/Paris,2,DGL, +DGL:SP:12183,1,"Dardilly Les Longes",45.834497,4.747745,0,0,DGL:SA:S12287,Europe/Paris,0,DGL, +DGL:SP:12184,1,"Chalin",45.77833,4.784467,0,0,DGL:SA:S12288,Europe/Paris,2,DGL, +DGL:SP:12185,1,"Chalin",45.778365,4.784083,0,0,DGL:SA:S12288,Europe/Paris,2,DGL, +DGL:SP:12188,1,"Chemin des Pres",45.742141,4.791676,0,0,DGL:SA:S12290,Europe/Paris,2,DGL, +DGL:SP:12189,1,"Chemin des Pres",45.742123,4.791663,0,0,DGL:SA:S12290,Europe/Paris,2,DGL, +DGL:SP:1219,1,"Irigny Gare",45.677635,4.831432,0,0,DGL:SA:S10578,Europe/Paris,2,DGL, +DGL:SP:12190,1,"Centre Communal du Vallon",45.741588,4.793104,0,0,DGL:SA:S12291,Europe/Paris,2,DGL, +DGL:SP:12191,1,"Centre Communal du Vallon",45.741531,4.793218,0,0,DGL:SA:S12291,Europe/Paris,2,DGL, +DGL:SP:12199,1,"Pont des Razes 1",45.668025,4.850614,0,0,DGL:SA:S5086,Europe/Paris,2,DGL, +DGL:SP:122,1,"Bas des Chassagnes",45.720934,4.811026,0,0,DGL:SA:S10060,Europe/Paris,2,DGL, +DGL:SP:12203,1,"11 Novembre 1918",45.688715,4.863194,0,0,DGL:SA:S11788,Europe/Paris,0,DGL, +DGL:SP:1221,1,"Irigny Mairie",45.672781,4.822623,0,0,DGL:SA:S10580,Europe/Paris,2,DGL, +DGL:SP:12211,1,"Charcot - La Source",45.748238,4.792334,0,0,DGL:SA:S30071,Europe/Paris,0,DGL, +DGL:SP:12217,1,"Berthet",45.746884,4.807714,0,0,DGL:SA:S30076,Europe/Paris,0,DGL, +DGL:SP:12218,1,"Jusseaud",45.747306,4.806113,0,0,DGL:SA:S30077,Europe/Paris,0,DGL, +DGL:SP:12219,1,"Chavril - Brulet",45.747273,4.803515,0,0,DGL:SA:S30078,Europe/Paris,0,DGL, +DGL:SP:12221,1,"Chavril - Brulet",45.74735,4.802477,0,0,DGL:SA:S30078,Europe/Paris,0,DGL, +DGL:SP:12222,1,"Jusseaud",45.747264,4.805572,0,0,DGL:SA:S30077,Europe/Paris,0,DGL, +DGL:SP:12223,1,"Berthet",45.7468,4.807826,0,0,DGL:SA:S30076,Europe/Paris,0,DGL, +DGL:SP:12229,1,"Charcot - La Source",45.748133,4.792201,0,0,DGL:SA:S30071,Europe/Paris,2,DGL, +DGL:SP:1223,1,"Jean Collet",45.780945,5.000612,0,0,DGL:SA:S10582,Europe/Paris,0,DGL, +DGL:SP:12230,1,"Domremy - Lacassagne",45.751227,4.872867,0,0,DGL:SA:S11740,Europe/Paris,2,DGL, +DGL:SP:12231,1,"Rue du Parc",45.729879,4.891792,0,0,DGL:SA:S30062,Europe/Paris,2,DGL, +DGL:SP:12232,1,"Rue du Parc",45.730199,4.890766,0,0,DGL:SA:S30062,Europe/Paris,2,DGL, +DGL:SP:12235,1,"Theatre Eglise Notre Dame",45.758433,4.794538,0,0,DGL:SA:S30056,Europe/Paris,0,DGL, +DGL:SP:12236,1,"Theatre Eglise Notre Dame",45.75849,4.795248,0,0,DGL:SA:S30056,Europe/Paris,2,DGL, +DGL:SP:12238,1,"Espace Baudelaire",45.818566,4.904992,0,0,DGL:SA:S5001,Europe/Paris,2,DGL, +DGL:SP:12239,1,"Espace Baudelaire",45.818783,4.905376,0,0,DGL:SA:S5001,Europe/Paris,2,DGL, +DGL:SP:1224,1,"Jean Collet",45.781008,5.000641,0,0,DGL:SA:S10582,Europe/Paris,0,DGL, +DGL:SP:1225,1,"J.Jaures - Malherbe",45.771446,5.015447,0,0,DGL:SA:S10583,Europe/Paris,2,DGL, +DGL:SP:12263,1,"Les Bruyeres",45.817909,4.866534,0,0,DGL:SA:S10777,Europe/Paris,0,DGL, +DGL:SP:12264,1,"Centre Social Sauvegarde",45.786391,4.790423,0,0,DGL:SA:S10170,Europe/Paris,2,DGL, +DGL:SP:12265,1,"Gare de Vaise",45.780795,4.804658,0,0,DGL:SA:S5103,Europe/Paris,2,DGL, +DGL:SP:12266,1,"Gare de Vaise",45.780984,4.80468,0,0,DGL:SA:S5103,Europe/Paris,2,DGL, +DGL:SP:12267,1,"St Rambert Les Rivieres",45.807903,4.837384,0,0,DGL:SA:S11346,Europe/Paris,2,DGL, +DGL:SP:12268,1,"Pont Mouton",45.773501,4.809283,0,0,DGL:SA:S11189,Europe/Paris,2,DGL, +DGL:SP:12272,1,"Gare de Vaise",45.780636,4.804523,0,0,DGL:SA:S5103,Europe/Paris,2,DGL, +DGL:SP:12273,1,"Gare de Vaise",45.780866,4.805138,0,0,DGL:SA:S5103,Europe/Paris,2,DGL, +DGL:SP:12275,1,"Gare de Vaise",45.780485,4.804413,0,0,DGL:SA:S5103,Europe/Paris,2,DGL, +DGL:SP:12279,1,"Falsan",45.804048,4.834248,0,0,DGL:SA:S10421,Europe/Paris,0,DGL, +DGL:SP:12280,1,"Clos Jouve",45.773143,4.821834,0,0,DGL:SA:S10268,Europe/Paris,2,DGL, +DGL:SP:12287,1,"Mions Poste",45.669266,4.949877,0,0,DGL:SA:S10960,Europe/Paris,0,DGL, +DGL:SP:12289,1,"Bellecour Le Viste",45.757592,4.833888,0,0,DGL:SA:S10080,Europe/Paris,0,DGL, +DGL:SP:12297,1,"La Doua",45.77892,4.87188,0,0,DGL:SA:S10654,Europe/Paris,2,DGL, +DGL:SP:123,1,"Bas des Chassagnes",45.720477,4.811016,0,0,DGL:SA:S10060,Europe/Paris,2,DGL, +DGL:SP:12314,1,"Jean Mace",45.745514,4.841902,0,0,DGL:SA:S5160,Europe/Paris,0,DGL, +DGL:SP:1235,1,"Jamen Grand",45.794904,4.840666,0,0,DGL:SA:S10587,Europe/Paris,2,DGL, +DGL:SP:1236,1,"Jamen Grand",45.795134,4.840869,0,0,DGL:SA:S10587,Europe/Paris,2,DGL, +DGL:SP:1237,1,"Jardin des Plantes",45.771014,4.828967,0,0,DGL:SA:S10588,Europe/Paris,0,DGL, +DGL:SP:1238,1,"Jardin des Plantes",45.771085,4.829008,0,0,DGL:SA:S10588,Europe/Paris,0,DGL, +DGL:SP:1239,1,"Jaricot",45.759627,4.815964,0,0,DGL:SA:S10589,Europe/Paris,2,DGL, +DGL:SP:124,1,"Barolles Centre",45.680539,4.785438,0,0,DGL:SA:S10061,Europe/Paris,2,DGL, +DGL:SP:1244,1,"Jean Bart",45.745915,4.880889,0,0,DGL:SA:S10591,Europe/Paris,2,DGL, +DGL:SP:1248,1,"Jean Mace",45.745673,4.842012,0,0,DGL:SA:S5160,Europe/Paris,0,DGL, +DGL:SP:125,1,"Barolles Centre",45.680475,4.786321,0,0,DGL:SA:S10061,Europe/Paris,2,DGL, +DGL:SP:1252,1,"Jean Mace",45.746983,4.842997,0,0,DGL:SA:S5160,Europe/Paris,2,DGL, +DGL:SP:1253,1,"Jean Mace",45.745687,4.842193,0,0,DGL:SA:S5160,Europe/Paris,0,DGL, +DGL:SP:1259,1,"Jean Marcuit",45.788365,4.815291,0,0,DGL:SA:S10596,Europe/Paris,2,DGL, +DGL:SP:1260,1,"Jean Marcuit",45.787882,4.814768,0,0,DGL:SA:S10596,Europe/Paris,2,DGL, +DGL:SP:1263,1,"Jean Zay",45.768201,4.801058,0,0,DGL:SA:S10598,Europe/Paris,2,DGL, +DGL:SP:1264,1,"Joannes Carret",45.793055,4.821396,0,0,DGL:SA:S10599,Europe/Paris,2,DGL, +DGL:SP:1265,1,"Joannes Carret",45.792277,4.820344,0,0,DGL:SA:S10599,Europe/Paris,2,DGL, +DGL:SP:1266,1,"Joannes Masset",45.769573,4.800849,0,0,DGL:SA:S10600,Europe/Paris,0,DGL, +DGL:SP:1268,1,"Joliot Curie",45.754807,4.78832,0,0,DGL:SA:S10602,Europe/Paris,2,DGL, +DGL:SP:1269,1,"Joliot Curie",45.754912,4.788453,0,0,DGL:SA:S10602,Europe/Paris,2,DGL, +DGL:SP:1270,1,"Jonage Chateau des Marres",45.799905,5.059486,0,0,DGL:SA:S10603,Europe/Paris,0,DGL, +DGL:SP:1271,1,"Jonage Le Vivier",45.798612,5.053398,0,0,DGL:SA:S10604,Europe/Paris,0,DGL, +DGL:SP:1272,1,"Jonage Le Vivier",45.798691,5.05348,0,0,DGL:SA:S10604,Europe/Paris,0,DGL, +DGL:SP:1273,1,"Jonage Mairie",45.796358,5.047225,0,0,DGL:SA:S10605,Europe/Paris,0,DGL, +DGL:SP:1274,1,"Jonage Mairie",45.796326,5.047031,0,0,DGL:SA:S10605,Europe/Paris,2,DGL, +DGL:SP:1275,1,"Jonage Pradel",45.790327,5.041948,0,0,DGL:SA:S10606,Europe/Paris,0,DGL, +DGL:SP:1276,1,"Jonage Pradel",45.790371,5.042002,0,0,DGL:SA:S10606,Europe/Paris,0,DGL, +DGL:SP:128,1,"Basso",45.824738,4.791556,0,0,DGL:SA:S10063,Europe/Paris,0,DGL, +DGL:SP:1283,1,"Decines Jules Ferry",45.763788,4.961596,0,0,DGL:SA:S10610,Europe/Paris,2,DGL, +DGL:SP:1284,1,"Decines Jules Ferry",45.763987,4.960782,0,0,DGL:SA:S10610,Europe/Paris,2,DGL, +DGL:SP:1289,1,"Kergomard",45.690342,4.957042,0,0,DGL:SA:S10613,Europe/Paris,2,DGL, +DGL:SP:129,1,"Basso",45.82509,4.79152,0,0,DGL:SA:S10063,Europe/Paris,0,DGL, +DGL:SP:1290,1,"Kergomard",45.690317,4.956964,0,0,DGL:SA:S10613,Europe/Paris,2,DGL, +DGL:SP:1293,1,"Kruger - Voillot",45.753558,4.909685,0,0,DGL:SA:S10615,Europe/Paris,2,DGL, +DGL:SP:1294,1,"Kruger - Voillot",45.753256,4.9107,0,0,DGL:SA:S10615,Europe/Paris,2,DGL, +DGL:SP:1295,1,"L'Aigas",45.770216,4.741739,0,0,DGL:SA:S10616,Europe/Paris,2,DGL, +DGL:SP:1296,1,"L'Aigas",45.770106,4.741825,0,0,DGL:SA:S10616,Europe/Paris,2,DGL, +DGL:SP:1298,1,"L'Aventuriere",45.886893,4.836046,0,0,DGL:SA:S10618,Europe/Paris,2,DGL, +DGL:SP:130,1,"Bastero - Aquarium",45.726599,4.814476,0,0,DGL:SA:S10064,Europe/Paris,2,DGL, +DGL:SP:1303,1,"L'Hormet",45.739687,4.806298,0,0,DGL:SA:S10621,Europe/Paris,2,DGL, +DGL:SP:1304,1,"L'Hormet",45.739694,4.806376,0,0,DGL:SA:S10621,Europe/Paris,2,DGL, +DGL:SP:1305,1,"L'Oiselet",45.802751,4.80253,0,0,DGL:SA:S10622,Europe/Paris,2,DGL, +DGL:SP:1306,1,"L'Oiselet",45.802651,4.802538,0,0,DGL:SA:S10622,Europe/Paris,2,DGL, +DGL:SP:1307,1,"Gare de Francheville",45.735268,4.768323,0,0,DGL:SA:S10623,Europe/Paris,2,DGL, +DGL:SP:131,1,"Bastero - Aquarium",45.725493,4.814015,0,0,DGL:SA:S10064,Europe/Paris,2,DGL, +DGL:SP:1312,1,"La Baticoliere",45.816684,4.829879,0,0,DGL:SA:S10626,Europe/Paris,2,DGL, +DGL:SP:1314,1,"La Begude",45.674605,4.860634,0,0,DGL:SA:S10627,Europe/Paris,2,DGL, +DGL:SP:1315,1,"La Begude",45.675097,4.860759,0,0,DGL:SA:S10627,Europe/Paris,2,DGL, +DGL:SP:1316,1,"La Blache",45.857232,4.808815,0,0,DGL:SA:S10628,Europe/Paris,0,DGL, +DGL:SP:1317,1,"La Blache",45.8564,4.808185,0,0,DGL:SA:S10628,Europe/Paris,2,DGL, +DGL:SP:1318,1,"La Blanchisserie",45.876482,4.843549,0,0,DGL:SA:S10629,Europe/Paris,0,DGL, +DGL:SP:1319,1,"La Blanchisserie",45.876541,4.844132,0,0,DGL:SA:S10629,Europe/Paris,0,DGL, +DGL:SP:1320,1,"La Borelle",45.711072,4.882041,0,0,DGL:SA:S5705,Europe/Paris,2,DGL, +DGL:SP:1321,1,"La Borelle",45.7112,4.882317,0,0,DGL:SA:S5705,Europe/Paris,2,DGL, +DGL:SP:1327,1,"La Buissiere - Viralamande",45.803588,4.881628,0,0,DGL:SA:S10633,Europe/Paris,2,DGL, +DGL:SP:1328,1,"La Buissiere - Viralamande",45.803268,4.88106,0,0,DGL:SA:S10633,Europe/Paris,2,DGL, +DGL:SP:1331,1,"La Buissonniere",45.844768,4.867784,0,0,DGL:SA:S10634,Europe/Paris,2,DGL, +DGL:SP:1332,1,"La Buissonniere",45.844534,4.867786,0,0,DGL:SA:S10634,Europe/Paris,2,DGL, +DGL:SP:1333,1,"La Bussiere",45.719643,4.802932,0,0,DGL:SA:S10635,Europe/Paris,2,DGL, +DGL:SP:1334,1,"La Bussiere",45.719601,4.803213,0,0,DGL:SA:S10635,Europe/Paris,2,DGL, +DGL:SP:1335,1,"La Cadiere",45.723208,4.802938,0,0,DGL:SA:S10636,Europe/Paris,2,DGL, +DGL:SP:1338,1,"La Chardonniere",45.734121,4.765175,0,0,DGL:SA:S10638,Europe/Paris,2,DGL, +DGL:SP:1339,1,"La Chardonniere",45.734067,4.765198,0,0,DGL:SA:S10638,Europe/Paris,2,DGL, +DGL:SP:134,1,"Bastero - Aquarium",45.725827,4.81358,0,0,DGL:SA:S10064,Europe/Paris,2,DGL, +DGL:SP:1341,1,"La Chenaie - Fontanieres",45.725274,4.810908,0,0,DGL:SA:S10640,Europe/Paris,2,DGL, +DGL:SP:1342,1,"La Chenaie - Fontanieres",45.72532,4.810833,0,0,DGL:SA:S10640,Europe/Paris,2,DGL, +DGL:SP:1343,1,"La Chopinette",45.730247,4.743611,0,0,DGL:SA:S10641,Europe/Paris,2,DGL, +DGL:SP:1344,1,"La Chopinette",45.730804,4.74368,0,0,DGL:SA:S10641,Europe/Paris,2,DGL, +DGL:SP:1347,1,"Collieres",45.682884,4.941803,0,0,DGL:SA:S10643,Europe/Paris,0,DGL, +DGL:SP:1348,1,"Collieres",45.683055,4.939461,0,0,DGL:SA:S10643,Europe/Paris,0,DGL, +DGL:SP:1349,1,"La Combe",45.810157,4.8449,0,0,DGL:SA:S10644,Europe/Paris,0,DGL, +DGL:SP:1350,1,"La Combe",45.809318,4.844206,0,0,DGL:SA:S10644,Europe/Paris,0,DGL, +DGL:SP:1353,1,"La Courtille - Bramafan",45.730988,4.801127,0,0,DGL:SA:S10646,Europe/Paris,2,DGL, +DGL:SP:1354,1,"La Courtille - Bramafan",45.730909,4.80147,0,0,DGL:SA:S10646,Europe/Paris,2,DGL, +DGL:SP:1357,1,"La Creuzette",45.83104,4.855369,0,0,DGL:SA:S10648,Europe/Paris,2,DGL, +DGL:SP:1358,1,"La Creuzette",45.830303,4.85652,0,0,DGL:SA:S10648,Europe/Paris,2,DGL, +DGL:SP:1361,1,"La Croix",45.833826,4.771424,0,0,DGL:SA:S10650,Europe/Paris,2,DGL, +DGL:SP:1362,1,"La Croix",45.833413,4.771367,0,0,DGL:SA:S10650,Europe/Paris,2,DGL, +DGL:SP:1363,1,"La Croix de Presles",45.841822,4.793208,0,0,DGL:SA:S10651,Europe/Paris,0,DGL, +DGL:SP:1364,1,"La Croix de Presles",45.842043,4.793398,0,0,DGL:SA:S10651,Europe/Paris,0,DGL, +DGL:SP:1366,1,"La Croix de Solaize",45.639455,4.843806,0,0,DGL:SA:S10652,Europe/Paris,2,DGL, +DGL:SP:137,1,"Bat d'Argent",45.765214,4.835983,0,0,DGL:SA:S10065,Europe/Paris,0,DGL, +DGL:SP:1374,1,"La Favorite",45.756504,4.806591,0,0,DGL:SA:S10657,Europe/Paris,2,DGL, +DGL:SP:1375,1,"La Favorite",45.756153,4.804929,0,0,DGL:SA:S10657,Europe/Paris,2,DGL, +DGL:SP:1376,1,"La Favorite",45.756026,4.806621,0,0,DGL:SA:S10657,Europe/Paris,2,DGL, +DGL:SP:1379,1,"La Feuillee",45.766409,4.83043,0,0,DGL:SA:S10658,Europe/Paris,0,DGL, +DGL:SP:1382,1,"La Folie",45.807955,4.881199,0,0,DGL:SA:S10659,Europe/Paris,2,DGL, +DGL:SP:1383,1,"La Folie",45.808138,4.881053,0,0,DGL:SA:S10659,Europe/Paris,2,DGL, +DGL:SP:1384,1,"La Fontaine",45.740446,4.978519,0,0,DGL:SA:S10660,Europe/Paris,0,DGL, +DGL:SP:1385,1,"La Fontaine",45.740337,4.978553,0,0,DGL:SA:S10660,Europe/Paris,0,DGL, +DGL:SP:1386,1,"La Forestiere",45.765796,4.768502,0,0,DGL:SA:S10661,Europe/Paris,0,DGL, +DGL:SP:1387,1,"La Forestiere",45.766087,4.768772,0,0,DGL:SA:S10661,Europe/Paris,0,DGL, +DGL:SP:1388,1,"La Foret",45.864561,4.81323,0,0,DGL:SA:S10662,Europe/Paris,2,DGL, +DGL:SP:1389,1,"La Foret",45.864882,4.813386,0,0,DGL:SA:S10662,Europe/Paris,0,DGL, +DGL:SP:1394,1,"La Gadiniere",45.669583,4.790883,0,0,DGL:SA:S10665,Europe/Paris,0,DGL, +DGL:SP:1395,1,"La Gadiniere",45.66958,4.791024,0,0,DGL:SA:S10665,Europe/Paris,0,DGL, +DGL:SP:1396,1,"La Garde ND des Minimes",45.75935,4.790065,0,0,DGL:SA:S10666,Europe/Paris,2,DGL, +DGL:SP:1397,1,"La Garde ND des Minimes",45.759182,4.790752,0,0,DGL:SA:S10666,Europe/Paris,2,DGL, +DGL:SP:1399,1,"La Garenne",45.666278,4.858661,0,0,DGL:SA:S10667,Europe/Paris,2,DGL, +DGL:SP:140,1,"Batterie",45.744481,4.915741,0,0,DGL:SA:S10067,Europe/Paris,0,DGL, +DGL:SP:1400,1,"La Grande Charriere",45.87658,4.863748,0,0,DGL:SA:S10668,Europe/Paris,0,DGL, +DGL:SP:1401,1,"La Grande Plaine",45.71545,4.962324,0,0,DGL:SA:S10669,Europe/Paris,0,DGL, +DGL:SP:1402,1,"La Grande Plaine",45.715962,4.96123,0,0,DGL:SA:S10669,Europe/Paris,2,DGL, +DGL:SP:1403,1,"La Grande Serve",45.670511,4.850175,0,0,DGL:SA:S10670,Europe/Paris,2,DGL, +DGL:SP:1404,1,"La Grande Serve",45.670449,4.850108,0,0,DGL:SA:S10670,Europe/Paris,2,DGL, +DGL:SP:1405,1,"La Grange",45.744741,4.966203,0,0,DGL:SA:S10671,Europe/Paris,0,DGL, +DGL:SP:1406,1,"La Grange",45.744609,4.966081,0,0,DGL:SA:S10671,Europe/Paris,0,DGL, +DGL:SP:1412,1,"La Levee",45.722231,4.786728,0,0,DGL:SA:S10674,Europe/Paris,2,DGL, +DGL:SP:1413,1,"La Levee",45.722078,4.787119,0,0,DGL:SA:S10674,Europe/Paris,2,DGL, +DGL:SP:1414,1,"La Madone",45.777832,4.696279,0,0,DGL:SA:S10675,Europe/Paris,2,DGL, +DGL:SP:1415,1,"La Madone",45.77782,4.696382,0,0,DGL:SA:S10675,Europe/Paris,2,DGL, +DGL:SP:1416,1,"La Maillette",45.698043,4.824431,0,0,DGL:SA:S10676,Europe/Paris,2,DGL, +DGL:SP:1417,1,"La Maillette",45.698068,4.824535,0,0,DGL:SA:S10676,Europe/Paris,2,DGL, +DGL:SP:1418,1,"La Maillette",45.697659,4.824311,0,0,DGL:SA:S10676,Europe/Paris,0,DGL, +DGL:SP:1419,1,"La Maillette",45.697621,4.824373,0,0,DGL:SA:S10676,Europe/Paris,0,DGL, +DGL:SP:142,1,"Foch - Provinces",45.747302,4.798502,0,0,DGL:SA:S10068,Europe/Paris,2,DGL, +DGL:SP:1420,1,"La Mouche",45.694741,4.820724,0,0,DGL:SA:S10677,Europe/Paris,0,DGL, +DGL:SP:1421,1,"La Mouche",45.694684,4.820837,0,0,DGL:SA:S10677,Europe/Paris,0,DGL, +DGL:SP:1424,1,"La Pagere - Les Brosses",45.748967,4.914794,0,0,DGL:SA:S10679,Europe/Paris,2,DGL, +DGL:SP:1425,1,"La Pagere - Les Brosses",45.749064,4.914901,0,0,DGL:SA:S10679,Europe/Paris,2,DGL, +DGL:SP:1426,1,"La Pagere - Les Brosses",45.748588,4.914442,0,0,DGL:SA:S10679,Europe/Paris,0,DGL, +DGL:SP:1427,1,"Crepieux-La Pape",45.805744,4.885795,0,0,DGL:SA:S10680,Europe/Paris,0,DGL, +DGL:SP:1428,1,"Crepieux-La Pape",45.805578,4.885208,0,0,DGL:SA:S10680,Europe/Paris,0,DGL, +DGL:SP:1429,1,"Pateliere - Millaud",45.747367,4.745729,0,0,DGL:SA:S10681,Europe/Paris,2,DGL, +DGL:SP:143,1,"Foch - Provinces",45.747912,4.798182,0,0,DGL:SA:S10068,Europe/Paris,2,DGL, +DGL:SP:1430,1,"Pateliere - Millaud",45.747351,4.745626,0,0,DGL:SA:S10681,Europe/Paris,2,DGL, +DGL:SP:1431,1,"La Pelletiere",45.807278,4.892778,0,0,DGL:SA:S10682,Europe/Paris,2,DGL, +DGL:SP:1432,1,"La Pelletiere",45.807332,4.892767,0,0,DGL:SA:S10682,Europe/Paris,2,DGL, +DGL:SP:1433,1,"La Pillardiere",45.730385,4.703293,0,0,DGL:SA:S10683,Europe/Paris,2,DGL, +DGL:SP:1434,1,"La Pillardiere",45.730271,4.703147,0,0,DGL:SA:S10683,Europe/Paris,2,DGL, +DGL:SP:1435,1,"La Plaine",45.744581,4.784239,0,0,DGL:SA:S10684,Europe/Paris,2,DGL, +DGL:SP:1436,1,"La Plaine",45.74478,4.782923,0,0,DGL:SA:S10684,Europe/Paris,2,DGL, +DGL:SP:1437,1,"La Poudriere",45.770851,4.816817,0,0,DGL:SA:S10685,Europe/Paris,2,DGL, +DGL:SP:1439,1,"La Remillote",45.795497,4.804122,0,0,DGL:SA:S10687,Europe/Paris,2,DGL, +DGL:SP:1440,1,"La Remillote",45.795409,4.804041,0,0,DGL:SA:S10687,Europe/Paris,2,DGL, +DGL:SP:1441,1,"La Riviere",45.854825,4.804495,0,0,DGL:SA:S10688,Europe/Paris,0,DGL, +DGL:SP:1442,1,"La Riviere",45.854751,4.804156,0,0,DGL:SA:S10688,Europe/Paris,0,DGL, +DGL:SP:1443,1,"La Rochette - Cercle d'Aviron",45.791738,4.823537,0,0,DGL:SA:S10689,Europe/Paris,2,DGL, +DGL:SP:1444,1,"La Rochette - Cercle d'Aviron",45.790428,4.821303,0,0,DGL:SA:S10689,Europe/Paris,0,DGL, +DGL:SP:1445,1,"La Roue",45.822925,4.889489,0,0,DGL:SA:S10690,Europe/Paris,2,DGL, +DGL:SP:1446,1,"La Roue",45.82288,4.889487,0,0,DGL:SA:S10690,Europe/Paris,2,DGL, +DGL:SP:1447,1,"La Sabliere",45.808315,4.906882,0,0,DGL:SA:S5322,Europe/Paris,0,DGL, +DGL:SP:1448,1,"La Sabliere",45.808317,4.907203,0,0,DGL:SA:S5322,Europe/Paris,0,DGL, +DGL:SP:1449,1,"La Sarra",45.761306,4.814934,0,0,DGL:SA:S10692,Europe/Paris,0,DGL, +DGL:SP:1450,1,"La Sarra",45.761388,4.814899,0,0,DGL:SA:S10692,Europe/Paris,2,DGL, +DGL:SP:1454,1,"La Saulaie",45.717872,4.818375,0,0,DGL:SA:S10693,Europe/Paris,0,DGL, +DGL:SP:1455,1,"La Sauvagere",45.795439,4.825506,0,0,DGL:SA:S10694,Europe/Paris,2,DGL, +DGL:SP:1456,1,"La Sauvagere",45.795019,4.82456,0,0,DGL:SA:S10694,Europe/Paris,2,DGL, +DGL:SP:1459,1,"La Tour",45.682733,4.86143,0,0,DGL:SA:S10696,Europe/Paris,2,DGL, +DGL:SP:146,1,"Bechevelin",45.748974,4.83891,0,0,DGL:SA:S10070,Europe/Paris,2,DGL, +DGL:SP:1460,1,"La Tour",45.682669,4.861479,0,0,DGL:SA:S10696,Europe/Paris,2,DGL, +DGL:SP:1461,1,"La Tour de Salvagny",45.81504,4.717674,0,0,DGL:SA:S10697,Europe/Paris,0,DGL, +DGL:SP:1462,1,"La Tour de Salvagny",45.815104,4.717638,0,0,DGL:SA:S10697,Europe/Paris,2,DGL, +DGL:SP:1463,1,"La Tourette",45.747364,4.736189,0,0,DGL:SA:S5766,Europe/Paris,2,DGL, +DGL:SP:1464,1,"La Tourette",45.747332,4.736034,0,0,DGL:SA:S5766,Europe/Paris,2,DGL, +DGL:SP:1465,1,"La Tuilerie",45.801784,4.78169,0,0,DGL:SA:S10699,Europe/Paris,0,DGL, +DGL:SP:1466,1,"La Tuilerie",45.801786,4.781986,0,0,DGL:SA:S10699,Europe/Paris,0,DGL, +DGL:SP:1467,1,"La Velette",45.814945,4.905531,0,0,DGL:SA:S10700,Europe/Paris,2,DGL, +DGL:SP:1469,1,"La Vernique",45.773278,4.783223,0,0,DGL:SA:S10701,Europe/Paris,2,DGL, +DGL:SP:147,1,"Bechevelin",45.750042,4.840668,0,0,DGL:SA:S10070,Europe/Paris,2,DGL, +DGL:SP:1470,1,"La Vernique",45.773612,4.782444,0,0,DGL:SA:S10701,Europe/Paris,2,DGL, +DGL:SP:1471,1,"La Vigie",45.76577,4.81008,0,0,DGL:SA:S10702,Europe/Paris,0,DGL, +DGL:SP:1472,1,"La Vigie",45.766026,4.809912,0,0,DGL:SA:S10702,Europe/Paris,0,DGL, +DGL:SP:1473,1,"La Villette",45.756671,4.862972,0,0,DGL:SA:S10703,Europe/Paris,2,DGL, +DGL:SP:1474,1,"La Villette",45.756818,4.862837,0,0,DGL:SA:S10703,Europe/Paris,2,DGL, +DGL:SP:1475,1,"La Vosne",45.876804,4.849312,0,0,DGL:SA:S10704,Europe/Paris,0,DGL, +DGL:SP:1476,1,"La Vosne",45.876622,4.848981,0,0,DGL:SA:S10704,Europe/Paris,0,DGL, +DGL:SP:1477,1,"La Voute",45.784101,4.808229,0,0,DGL:SA:S10705,Europe/Paris,2,DGL, +DGL:SP:1478,1,"La Voute",45.784409,4.808188,0,0,DGL:SA:S10705,Europe/Paris,0,DGL, +DGL:SP:1479,1,"La Vuldy",45.758187,4.719932,0,0,DGL:SA:S10706,Europe/Paris,0,DGL, +DGL:SP:148,1,"Bellecombe",45.648403,4.845407,0,0,DGL:SA:S10071,Europe/Paris,2,DGL, +DGL:SP:1480,1,"La Vuldy",45.758105,4.720417,0,0,DGL:SA:S10706,Europe/Paris,0,DGL, +DGL:SP:1481,1,"Laborde",45.785432,4.813178,0,0,DGL:SA:S10707,Europe/Paris,2,DGL, +DGL:SP:1482,1,"Laborde",45.784804,4.812673,0,0,DGL:SA:S10707,Europe/Paris,2,DGL, +DGL:SP:1483,1,"Lacassagne - Eugenie",45.746539,4.8875,0,0,DGL:SA:S10708,Europe/Paris,2,DGL, +DGL:SP:1484,1,"Garibaldi - Lafayette",45.763619,4.853825,0,0,DGL:SA:S10709,Europe/Paris,2,DGL, +DGL:SP:1485,1,"Garibaldi - Lafayette",45.763719,4.852955,0,0,DGL:SA:S10709,Europe/Paris,0,DGL, +DGL:SP:1489,1,"Lamothe - Madeleine",45.745782,4.84923,0,0,DGL:SA:S10710,Europe/Paris,2,DGL, +DGL:SP:1490,1,"Lamothe - Madeleine",45.745605,4.847499,0,0,DGL:SA:S10710,Europe/Paris,2,DGL, +DGL:SP:1491,1,"Lancon",45.771702,4.896012,0,0,DGL:SA:S10711,Europe/Paris,2,DGL, +DGL:SP:1492,1,"Lancon",45.772207,4.895984,0,0,DGL:SA:S10711,Europe/Paris,2,DGL, +DGL:SP:1493,1,"Langevin",45.701465,4.881327,0,0,DGL:SA:S10712,Europe/Paris,2,DGL, +DGL:SP:1494,1,"Langevin",45.702062,4.881213,0,0,DGL:SA:S10712,Europe/Paris,2,DGL, +DGL:SP:1495,1,"Laquay",45.692575,4.898603,0,0,DGL:SA:S10713,Europe/Paris,0,DGL, +DGL:SP:1496,1,"Laquay",45.692283,4.898769,0,0,DGL:SA:S10713,Europe/Paris,0,DGL, +DGL:SP:15,1,"A.Pare - Laennec",45.736954,4.884665,0,0,DGL:SA:S10006,Europe/Paris,0,DGL, +DGL:SP:1501,1,"Lassausaie",45.872651,4.770452,0,0,DGL:SA:S10715,Europe/Paris,0,DGL, +DGL:SP:1502,1,"Lassausaie",45.872853,4.770655,0,0,DGL:SA:S10715,Europe/Paris,0,DGL, +DGL:SP:1505,1,"Laurent Bonnevay",45.764704,4.909216,0,0,DGL:SA:S5101,Europe/Paris,2,DGL, +DGL:SP:1506,1,"Laurent Bonnevay",45.764993,4.90914,0,0,DGL:SA:S5101,Europe/Paris,2,DGL, +DGL:SP:1507,1,"Laurent Bonnevay",45.764969,4.908624,0,0,DGL:SA:S5101,Europe/Paris,2,DGL, +DGL:SP:1508,1,"Laurent Bonnevay",45.764874,4.908851,0,0,DGL:SA:S5101,Europe/Paris,2,DGL, +DGL:SP:1509,1,"Laurent Bonnevay",45.765083,4.908385,0,0,DGL:SA:S5101,Europe/Paris,2,DGL, +DGL:SP:1510,1,"Laurent Bonnevay",45.765131,4.908259,0,0,DGL:SA:S5101,Europe/Paris,2,DGL, +DGL:SP:1511,1,"Laurent Bonnevay",45.764808,4.908977,0,0,DGL:SA:S5101,Europe/Paris,2,DGL, +DGL:SP:1512,1,"Laurent Bonnevay",45.764761,4.909091,0,0,DGL:SA:S5101,Europe/Paris,2,DGL, +DGL:SP:1513,1,"Laurent Bonnevay",45.764921,4.908751,0,0,DGL:SA:S5101,Europe/Paris,2,DGL, +DGL:SP:1514,1,"Laurent Bonnevay",45.764928,4.909266,0,0,DGL:SA:S5101,Europe/Paris,2,DGL, +DGL:SP:1515,1,"Laurent Bonnevay",45.765026,4.908511,0,0,DGL:SA:S5101,Europe/Paris,2,DGL, +DGL:SP:1518,1,"Le Bastion",45.759316,4.814162,0,0,DGL:SA:S10717,Europe/Paris,2,DGL, +DGL:SP:1519,1,"Le Bastion",45.759057,4.814459,0,0,DGL:SA:S10717,Europe/Paris,0,DGL, +DGL:SP:1520,1,"Le Belvedere",45.732049,4.74565,0,0,DGL:SA:S10718,Europe/Paris,2,DGL, +DGL:SP:1521,1,"Le Belvedere",45.731732,4.745739,0,0,DGL:SA:S10718,Europe/Paris,2,DGL, +DGL:SP:1522,1,"Le Bochu",45.737108,4.755653,0,0,DGL:SA:S10719,Europe/Paris,2,DGL, +DGL:SP:1523,1,"Le Bochu",45.736967,4.75512,0,0,DGL:SA:S10719,Europe/Paris,2,DGL, +DGL:SP:1524,1,"Le Broteau",45.685045,4.827299,0,0,DGL:SA:S10720,Europe/Paris,2,DGL, +DGL:SP:1525,1,"Le Broteau",45.684932,4.827499,0,0,DGL:SA:S10720,Europe/Paris,2,DGL, +DGL:SP:1526,1,"Le Buisset",45.724156,4.804856,0,0,DGL:SA:S10721,Europe/Paris,0,DGL, +DGL:SP:1527,1,"Le Cantin",45.842294,4.85045,0,0,DGL:SA:S10722,Europe/Paris,0,DGL, +DGL:SP:1528,1,"Le Cantin",45.842284,4.850514,0,0,DGL:SA:S10722,Europe/Paris,0,DGL, +DGL:SP:1529,1,"RN6 - A. Pare",45.710618,4.976699,0,0,DGL:SA:S10723,Europe/Paris,0,DGL, +DGL:SP:1530,1,"RN6 - A. Pare",45.711098,4.975543,0,0,DGL:SA:S10723,Europe/Paris,0,DGL, +DGL:SP:1531,1,"Le Chene Rond",45.795165,4.741403,0,0,DGL:SA:S10724,Europe/Paris,0,DGL, +DGL:SP:1532,1,"Le Chene Rond",45.794366,4.741278,0,0,DGL:SA:S10724,Europe/Paris,0,DGL, +DGL:SP:1533,1,"Le Colin",45.808095,4.80017,0,0,DGL:SA:S10725,Europe/Paris,0,DGL, +DGL:SP:1534,1,"Le Colin",45.807716,4.800655,0,0,DGL:SA:S10725,Europe/Paris,2,DGL, +DGL:SP:1535,1,"Le Creuzet",45.885937,4.832058,0,0,DGL:SA:S10726,Europe/Paris,2,DGL, +DGL:SP:1540,1,"Oullins Le Golf",45.720142,4.782638,0,0,DGL:SA:S10729,Europe/Paris,0,DGL, +DGL:SP:1542,1,"Le Gregoire",45.815432,4.750772,0,0,DGL:SA:S10731,Europe/Paris,2,DGL, +DGL:SP:1543,1,"Le Gregoire",45.815812,4.750673,0,0,DGL:SA:S10731,Europe/Paris,2,DGL, +DGL:SP:1544,1,"Le Guillot",45.759797,4.731009,0,0,DGL:SA:S10732,Europe/Paris,2,DGL, +DGL:SP:1545,1,"Le Guillot",45.75974,4.731161,0,0,DGL:SA:S10732,Europe/Paris,2,DGL, +DGL:SP:1546,1,"Le Meridien",45.773754,4.752583,0,0,DGL:SA:S10733,Europe/Paris,0,DGL, +DGL:SP:1547,1,"Le Meridien",45.775509,4.752171,0,0,DGL:SA:S10733,Europe/Paris,0,DGL, +DGL:SP:1548,1,"Le Meruzin",45.818015,4.794821,0,0,DGL:SA:S10734,Europe/Paris,0,DGL, +DGL:SP:1549,1,"Le Meruzin",45.81767,4.794922,0,0,DGL:SA:S10734,Europe/Paris,2,DGL, +DGL:SP:1550,1,"Le Molard",45.771157,4.967903,0,0,DGL:SA:S10735,Europe/Paris,0,DGL, +DGL:SP:1551,1,"Le Molard",45.77106,4.967808,0,0,DGL:SA:S10735,Europe/Paris,0,DGL, +DGL:SP:1552,1,"Le Peage",45.690427,4.822456,0,0,DGL:SA:S10736,Europe/Paris,0,DGL, +DGL:SP:1553,1,"Le Peage",45.690361,4.822594,0,0,DGL:SA:S10736,Europe/Paris,0,DGL, +DGL:SP:1554,1,"Le Pelet",45.654668,4.793761,0,0,DGL:SA:S10737,Europe/Paris,0,DGL, +DGL:SP:1555,1,"Le Pelet",45.655207,4.794658,0,0,DGL:SA:S10737,Europe/Paris,0,DGL, +DGL:SP:1559,1,"Le Plat",45.770419,4.774057,0,0,DGL:SA:S10740,Europe/Paris,0,DGL, +DGL:SP:1560,1,"Le Plat",45.770509,4.774872,0,0,DGL:SA:S10740,Europe/Paris,2,DGL, +DGL:SP:1561,1,"Le Prainet",45.76505,4.966556,0,0,DGL:SA:S10741,Europe/Paris,0,DGL, +DGL:SP:1562,1,"Le Prainet",45.764696,4.965883,0,0,DGL:SA:S10741,Europe/Paris,0,DGL, +DGL:SP:1564,1,"Le Quincieux",45.765361,4.698651,0,0,DGL:SA:S10742,Europe/Paris,0,DGL, +DGL:SP:1565,1,"Le Quincieux",45.765126,4.698666,0,0,DGL:SA:S10742,Europe/Paris,0,DGL, +DGL:SP:1566,1,"Le Rafour",45.791101,4.764179,0,0,DGL:SA:S10743,Europe/Paris,2,DGL, +DGL:SP:1567,1,"Le Rafour",45.791441,4.763885,0,0,DGL:SA:S10743,Europe/Paris,0,DGL, +DGL:SP:1572,1,"Le Rontet",45.781462,5.005372,0,0,DGL:SA:S10746,Europe/Paris,0,DGL, +DGL:SP:1573,1,"Le Rontet",45.781641,5.005419,0,0,DGL:SA:S10746,Europe/Paris,0,DGL, +DGL:SP:1574,1,"Le Rotagnier",45.741813,4.975898,0,0,DGL:SA:S10747,Europe/Paris,2,DGL, +DGL:SP:1575,1,"Le Rotagnier",45.7421,4.975179,0,0,DGL:SA:S10747,Europe/Paris,2,DGL, +DGL:SP:1576,1,"Le Roule",45.730796,4.810707,0,0,DGL:SA:S10748,Europe/Paris,2,DGL, +DGL:SP:1577,1,"Le Roule",45.730842,4.810631,0,0,DGL:SA:S10748,Europe/Paris,2,DGL, +DGL:SP:1580,1,"Le Roulet",45.785065,4.897805,0,0,DGL:SA:S10749,Europe/Paris,2,DGL, +DGL:SP:1581,1,"Le Roulet",45.784945,4.897529,0,0,DGL:SA:S10749,Europe/Paris,2,DGL, +DGL:SP:1586,1,"Le Vergoin",45.80434,4.838521,0,0,DGL:SA:S10752,Europe/Paris,2,DGL, +DGL:SP:1588,1,"Le Vernay",45.809407,4.85712,0,0,DGL:SA:S10753,Europe/Paris,2,DGL, +DGL:SP:1589,1,"Le Vernay",45.808591,4.856554,0,0,DGL:SA:S10753,Europe/Paris,2,DGL, +DGL:SP:159,1,"Bellecour Chambonnet",45.758974,4.83044,0,0,DGL:SA:S10076,Europe/Paris,0,DGL, +DGL:SP:1590,1,"Le Vernay - Ombrosa",45.804394,4.843003,0,0,DGL:SA:S10754,Europe/Paris,0,DGL, +DGL:SP:1591,1,"Le Vernay - Ombrosa",45.804279,4.842907,0,0,DGL:SA:S10754,Europe/Paris,0,DGL, +DGL:SP:1592,1,"Le Villard",45.875487,4.860708,0,0,DGL:SA:S10755,Europe/Paris,0,DGL, +DGL:SP:1594,1,"Le Visan",45.764095,4.788772,0,0,DGL:SA:S10756,Europe/Paris,2,DGL, +DGL:SP:1595,1,"Lefevre",45.772038,4.911257,0,0,DGL:SA:S10757,Europe/Paris,2,DGL, +DGL:SP:1596,1,"Lefevre",45.771966,4.910469,0,0,DGL:SA:S10757,Europe/Paris,2,DGL, +DGL:SP:16,1,"A.Pare - Laennec",45.737867,4.884887,0,0,DGL:SA:S10006,Europe/Paris,0,DGL, +DGL:SP:1602,1,"Leon Bourgeois",45.727828,4.900822,0,0,DGL:SA:S10760,Europe/Paris,2,DGL, +DGL:SP:1603,1,"Leon Bourgeois",45.727771,4.900935,0,0,DGL:SA:S10760,Europe/Paris,2,DGL, +DGL:SP:1604,1,"Leon Favre",45.743265,4.807333,0,0,DGL:SA:S10761,Europe/Paris,2,DGL, +DGL:SP:1605,1,"Leon Favre",45.743583,4.807579,0,0,DGL:SA:S10761,Europe/Paris,2,DGL, +DGL:SP:1608,1,"Les Anemones",45.727589,5.005266,0,0,DGL:SA:S10763,Europe/Paris,2,DGL, +DGL:SP:1609,1,"Les Anemones",45.727797,5.005598,0,0,DGL:SA:S10763,Europe/Paris,2,DGL, +DGL:SP:1610,1,"Les Anzieux",45.850425,4.837813,0,0,DGL:SA:S10764,Europe/Paris,2,DGL, +DGL:SP:1611,1,"Les Anzieux",45.849936,4.83752,0,0,DGL:SA:S10764,Europe/Paris,2,DGL, +DGL:SP:1612,1,"Les Arpinieres",45.734689,4.749287,0,0,DGL:SA:S10765,Europe/Paris,2,DGL, +DGL:SP:1613,1,"Les Arpinieres",45.734784,4.749471,0,0,DGL:SA:S10765,Europe/Paris,2,DGL, +DGL:SP:1614,1,"Les Aulnes",45.810266,4.759517,0,0,DGL:SA:S10766,Europe/Paris,2,DGL, +DGL:SP:1615,1,"Les Aulnes",45.809918,4.759784,0,0,DGL:SA:S10766,Europe/Paris,0,DGL, +DGL:SP:1616,1,"Les Balmes",45.664665,4.894892,0,0,DGL:SA:S10767,Europe/Paris,2,DGL, +DGL:SP:1617,1,"Les Balmes",45.66478,4.894987,0,0,DGL:SA:S10767,Europe/Paris,2,DGL, +DGL:SP:1618,1,"Les Balmones",45.829434,4.771796,0,0,DGL:SA:S10768,Europe/Paris,2,DGL, +DGL:SP:1619,1,"Les Balmones",45.829454,4.771719,0,0,DGL:SA:S10768,Europe/Paris,2,DGL, +DGL:SP:1622,1,"Les Battieres",45.754769,4.782223,0,0,DGL:SA:S10771,Europe/Paris,2,DGL, +DGL:SP:1623,1,"Les Battieres",45.754576,4.78116,0,0,DGL:SA:S10771,Europe/Paris,2,DGL, +DGL:SP:1624,1,"Les Biesses",45.792728,5.037961,0,0,DGL:SA:S10772,Europe/Paris,0,DGL, +DGL:SP:1625,1,"Les Biesses",45.792879,5.036926,0,0,DGL:SA:S10772,Europe/Paris,0,DGL, +DGL:SP:1626,1,"Les Bluets",45.781806,4.897833,0,0,DGL:SA:S10773,Europe/Paris,2,DGL, +DGL:SP:1627,1,"Les Bluets",45.781952,4.897737,0,0,DGL:SA:S10773,Europe/Paris,2,DGL, +DGL:SP:1628,1,"Les Bottieres",45.721585,4.792816,0,0,DGL:SA:S10774,Europe/Paris,2,DGL, +DGL:SP:1629,1,"Les Bottieres",45.721386,4.794914,0,0,DGL:SA:S10774,Europe/Paris,2,DGL, +DGL:SP:1630,1,"Les Brosses de Marcy",45.775884,4.705418,0,0,DGL:SA:S10775,Europe/Paris,2,DGL, +DGL:SP:1631,1,"Les Brosses de Marcy",45.775529,4.705184,0,0,DGL:SA:S10775,Europe/Paris,2,DGL, +DGL:SP:1632,1,"Les Broussatieres",45.726974,4.696875,0,0,DGL:SA:S10776,Europe/Paris,0,DGL, +DGL:SP:1633,1,"Les Broussatieres",45.726795,4.696829,0,0,DGL:SA:S10776,Europe/Paris,2,DGL, +DGL:SP:1634,1,"Les Bruyeres",45.817909,4.866534,0,0,DGL:SA:S10777,Europe/Paris,0,DGL, +DGL:SP:1635,1,"Les Bruyeres",45.817099,4.865312,0,0,DGL:SA:S10777,Europe/Paris,2,DGL, +DGL:SP:1636,1,"Fort de Vaise ? Les Carriers",45.770146,4.809184,0,0,DGL:SA:S10778,Europe/Paris,0,DGL, +DGL:SP:1637,1,"Fort de Vaise ? Les Carriers",45.770358,4.809372,0,0,DGL:SA:S10778,Europe/Paris,0,DGL, +DGL:SP:1638,1,"Les Cedres",45.740339,4.955438,0,0,DGL:SA:S10779,Europe/Paris,0,DGL, +DGL:SP:1639,1,"Les Cedres",45.740304,4.955385,0,0,DGL:SA:S10779,Europe/Paris,0,DGL, +DGL:SP:1640,1,"Les Selettes",45.658402,4.820382,0,0,DGL:SA:S10780,Europe/Paris,2,DGL, +DGL:SP:1641,1,"Les Selettes",45.658655,4.820753,0,0,DGL:SA:S10780,Europe/Paris,2,DGL, +DGL:SP:1642,1,"Les Chaux",45.736433,4.752744,0,0,DGL:SA:S10781,Europe/Paris,2,DGL, +DGL:SP:1643,1,"Les Chaux",45.736086,4.75215,0,0,DGL:SA:S10781,Europe/Paris,2,DGL, +DGL:SP:1644,1,"Les Chavannes",45.856395,4.796514,0,0,DGL:SA:S10782,Europe/Paris,2,DGL, +DGL:SP:1646,1,"Les Chenes",45.743245,4.955872,0,0,DGL:SA:S10783,Europe/Paris,0,DGL, +DGL:SP:1647,1,"Les Chenes",45.743094,4.955787,0,0,DGL:SA:S10783,Europe/Paris,0,DGL, +DGL:SP:1648,1,"Les Chevalieres",45.810342,4.838203,0,0,DGL:SA:S10784,Europe/Paris,0,DGL, +DGL:SP:1650,1,"Les Cigales",45.683811,4.824096,0,0,DGL:SA:S10785,Europe/Paris,0,DGL, +DGL:SP:1651,1,"Les Cigales",45.683863,4.824176,0,0,DGL:SA:S10785,Europe/Paris,0,DGL, +DGL:SP:1654,1,"Les Coquelicots",45.765553,4.74803,0,0,DGL:SA:S10787,Europe/Paris,2,DGL, +DGL:SP:1655,1,"Les Coquelicots",45.765664,4.747058,0,0,DGL:SA:S10787,Europe/Paris,2,DGL, +DGL:SP:1656,1,"Les Cotes",45.687047,4.822676,0,0,DGL:SA:S10788,Europe/Paris,0,DGL, +DGL:SP:1657,1,"Les Cotes",45.687293,4.822533,0,0,DGL:SA:S10788,Europe/Paris,0,DGL, +DGL:SP:1658,1,"Les Coutures",45.725789,4.804685,0,0,DGL:SA:S10789,Europe/Paris,2,DGL, +DGL:SP:1659,1,"Les Coutures",45.72531,4.803944,0,0,DGL:SA:S10789,Europe/Paris,2,DGL, +DGL:SP:166,1,"Bellecour Charite",45.755905,4.833233,0,0,DGL:SA:S10077,Europe/Paris,0,DGL, +DGL:SP:1660,1,"Les Dauphins",45.659431,4.904931,0,0,DGL:SA:S10790,Europe/Paris,0,DGL, +DGL:SP:1661,1,"Les Dauphins",45.659399,4.90552,0,0,DGL:SA:S10790,Europe/Paris,0,DGL, +DGL:SP:1663,1,"Les Dominicaines",45.655067,4.815714,0,0,DGL:SA:S10792,Europe/Paris,2,DGL, +DGL:SP:1664,1,"Les Dominicaines",45.653767,4.815463,0,0,DGL:SA:S10792,Europe/Paris,2,DGL, +DGL:SP:1667,1,"Les Epinettes",45.835621,4.876609,0,0,DGL:SA:S10794,Europe/Paris,2,DGL, +DGL:SP:1668,1,"Les Epinettes",45.835552,4.876876,0,0,DGL:SA:S10794,Europe/Paris,2,DGL, +DGL:SP:1671,1,"Les Essarts",45.732669,4.898914,0,0,DGL:SA:S10795,Europe/Paris,0,DGL, +DGL:SP:1672,1,"Les Essarts",45.732884,4.898976,0,0,DGL:SA:S10795,Europe/Paris,0,DGL, +DGL:SP:1673,1,"Les Esses",45.771805,4.817233,0,0,DGL:SA:S10796,Europe/Paris,2,DGL, +DGL:SP:1674,1,"Les Esses",45.772429,4.819525,0,0,DGL:SA:S10796,Europe/Paris,2,DGL, +DGL:SP:1675,1,"Les Esses",45.772271,4.817631,0,0,DGL:SA:S10796,Europe/Paris,2,DGL, +DGL:SP:1676,1,"Les Etroits",45.750518,4.819218,0,0,DGL:SA:S10797,Europe/Paris,2,DGL, +DGL:SP:1677,1,"Les Etroits",45.750611,4.819518,0,0,DGL:SA:S10797,Europe/Paris,2,DGL, +DGL:SP:1679,1,"Les Fraisiers",45.673336,4.787596,0,0,DGL:SA:S10799,Europe/Paris,0,DGL, +DGL:SP:1680,1,"Les Fraisiers",45.673299,4.787646,0,0,DGL:SA:S10799,Europe/Paris,0,DGL, +DGL:SP:1683,1,"Les Gambins",45.852731,4.796118,0,0,DGL:SA:S10801,Europe/Paris,0,DGL, +DGL:SP:1685,1,"Les Gaulnes",45.791629,5.034266,0,0,DGL:SA:S10802,Europe/Paris,2,DGL, +DGL:SP:1686,1,"Les Gaulnes",45.791423,5.033818,0,0,DGL:SA:S10802,Europe/Paris,2,DGL, +DGL:SP:1687,1,"Les Geraniums",45.666596,4.862565,0,0,DGL:SA:S10803,Europe/Paris,0,DGL, +DGL:SP:1688,1,"Les Glaieuls",45.685505,4.942505,0,0,DGL:SA:S10804,Europe/Paris,2,DGL, +DGL:SP:1689,1,"Les Glaieuls",45.685531,4.942532,0,0,DGL:SA:S10804,Europe/Paris,2,DGL, +DGL:SP:1690,1,"Les Grandes Terres",45.735769,4.978346,0,0,DGL:SA:S10805,Europe/Paris,2,DGL, +DGL:SP:1691,1,"Les Grandes Terres",45.736029,4.977639,0,0,DGL:SA:S10805,Europe/Paris,2,DGL, +DGL:SP:1692,1,"Les Grandes Treves",45.759149,4.71366,0,0,DGL:SA:S10806,Europe/Paris,0,DGL, +DGL:SP:1693,1,"Les Grandes Treves",45.75904,4.714119,0,0,DGL:SA:S10806,Europe/Paris,2,DGL, +DGL:SP:1694,1,"Les Greffieres",45.811793,4.819051,0,0,DGL:SA:S10807,Europe/Paris,0,DGL, +DGL:SP:1695,1,"Les Greffieres",45.811794,4.818999,0,0,DGL:SA:S10807,Europe/Paris,0,DGL, +DGL:SP:1696,1,"Les Grillons",45.746432,4.958942,0,0,DGL:SA:S10808,Europe/Paris,0,DGL, +DGL:SP:1697,1,"Les Grillons",45.746273,4.95806,0,0,DGL:SA:S10808,Europe/Paris,0,DGL, +DGL:SP:17,1,"A.Pare - Seignemartin",45.736232,4.882781,0,0,DGL:SA:S10007,Europe/Paris,2,DGL, +DGL:SP:1700,1,"Les Hautannes",45.879452,4.800808,0,0,DGL:SA:S10810,Europe/Paris,0,DGL, +DGL:SP:1701,1,"Les Hautpres",45.758714,4.734113,0,0,DGL:SA:S10811,Europe/Paris,2,DGL, +DGL:SP:1702,1,"Les Hautpres",45.758745,4.733896,0,0,DGL:SA:S10811,Europe/Paris,0,DGL, +DGL:SP:1703,1,"Les Ifs",45.716172,4.796223,0,0,DGL:SA:S10812,Europe/Paris,2,DGL, +DGL:SP:1704,1,"Les Ifs",45.716021,4.796564,0,0,DGL:SA:S10812,Europe/Paris,2,DGL, +DGL:SP:1709,1,"Les Lauriers",45.880776,4.866081,0,0,DGL:SA:S10815,Europe/Paris,0,DGL, +DGL:SP:1713,1,"Champvert - Les Massues",45.759514,4.795731,0,0,DGL:SA:S10817,Europe/Paris,2,DGL, +DGL:SP:1715,1,"Les Maures",45.663773,4.857583,0,0,DGL:SA:S10818,Europe/Paris,2,DGL, +DGL:SP:1716,1,"Les Maures",45.663781,4.857622,0,0,DGL:SA:S10818,Europe/Paris,2,DGL, +DGL:SP:1717,1,"Les Meurieres",45.679428,4.949113,0,0,DGL:SA:S10819,Europe/Paris,2,DGL, +DGL:SP:1718,1,"Les Meurieres",45.679471,4.949205,0,0,DGL:SA:S10819,Europe/Paris,2,DGL, +DGL:SP:1720,1,"Les Mollieres",45.840154,4.848343,0,0,DGL:SA:S10821,Europe/Paris,0,DGL, +DGL:SP:1721,1,"Les Mollieres",45.840276,4.848517,0,0,DGL:SA:S10821,Europe/Paris,0,DGL, +DGL:SP:1722,1,"Les Mouettes",45.782719,5.024784,0,0,DGL:SA:S10822,Europe/Paris,2,DGL, +DGL:SP:1723,1,"Les Mouettes",45.782606,5.024598,0,0,DGL:SA:S10822,Europe/Paris,0,DGL, +DGL:SP:1726,1,"Les Muriers",45.696087,4.825794,0,0,DGL:SA:S10824,Europe/Paris,2,DGL, +DGL:SP:1727,1,"Les Muriers",45.696358,4.825742,0,0,DGL:SA:S10824,Europe/Paris,2,DGL, +DGL:SP:1728,1,"Centre Nautique.",45.763594,4.956429,0,0,DGL:SA:S10825,Europe/Paris,0,DGL, +DGL:SP:1729,1,"Centre Nautique.",45.763659,4.956355,0,0,DGL:SA:S10825,Europe/Paris,0,DGL, +DGL:SP:1730,1,"Les Noyeraies",45.810843,4.751124,0,0,DGL:SA:S10826,Europe/Paris,2,DGL, +DGL:SP:1731,1,"Les Noyeraies",45.810691,4.751053,0,0,DGL:SA:S10826,Europe/Paris,2,DGL, +DGL:SP:1734,1,"Les Oliviers",45.686825,4.787362,0,0,DGL:SA:S10828,Europe/Paris,2,DGL, +DGL:SP:1735,1,"Les Oliviers",45.686937,4.786774,0,0,DGL:SA:S10828,Europe/Paris,2,DGL, +DGL:SP:1736,1,"Les Oncheres",45.777396,4.925609,0,0,DGL:SA:S10829,Europe/Paris,2,DGL, +DGL:SP:1737,1,"Les Oncheres",45.7774,4.925466,0,0,DGL:SA:S10829,Europe/Paris,2,DGL, +DGL:SP:1738,1,"Les Ormes",45.806736,4.821023,0,0,DGL:SA:S10830,Europe/Paris,2,DGL, +DGL:SP:1739,1,"Les Ormes",45.806907,4.821005,0,0,DGL:SA:S10830,Europe/Paris,2,DGL, +DGL:SP:1740,1,"Les Pepinieres",45.759399,4.808367,0,0,DGL:SA:S10831,Europe/Paris,0,DGL, +DGL:SP:1741,1,"Les Pepinieres",45.759188,4.808961,0,0,DGL:SA:S10831,Europe/Paris,2,DGL, +DGL:SP:1742,1,"Les Pervenches",45.855201,4.874139,0,0,DGL:SA:S10832,Europe/Paris,0,DGL, +DGL:SP:1743,1,"Les Pervenches",45.855173,4.874176,0,0,DGL:SA:S10832,Europe/Paris,0,DGL, +DGL:SP:1744,1,"Les Peupliers - RN 7",45.801894,4.739432,0,0,DGL:SA:S10833,Europe/Paris,2,DGL, +DGL:SP:1745,1,"Les Peupliers - RN 7",45.802427,4.739352,0,0,DGL:SA:S10833,Europe/Paris,2,DGL, +DGL:SP:1746,1,"Les Places",45.722876,4.694438,0,0,DGL:SA:S5768,Europe/Paris,2,DGL, +DGL:SP:1747,1,"Les Places",45.722866,4.694476,0,0,DGL:SA:S5768,Europe/Paris,2,DGL, +DGL:SP:1749,1,"Les Pommieres",45.757012,4.809661,0,0,DGL:SA:S10836,Europe/Paris,2,DGL, +DGL:SP:1750,1,"Les Pommieres",45.756841,4.80883,0,0,DGL:SA:S10836,Europe/Paris,2,DGL, +DGL:SP:1751,1,"Les Provences",45.735469,4.792587,0,0,DGL:SA:S10837,Europe/Paris,2,DGL, +DGL:SP:1753,1,"Les Pyes",45.738707,4.963241,0,0,DGL:SA:S10838,Europe/Paris,0,DGL, +DGL:SP:1754,1,"Les Pyes",45.738775,4.963038,0,0,DGL:SA:S10838,Europe/Paris,0,DGL, +DGL:SP:1755,1,"Les Roches",45.777347,4.795255,0,0,DGL:SA:S10839,Europe/Paris,2,DGL, +DGL:SP:1756,1,"Les Roches",45.776959,4.794903,0,0,DGL:SA:S10839,Europe/Paris,2,DGL, +DGL:SP:1759,1,"Les Sapins",45.67313,4.783275,0,0,DGL:SA:S10841,Europe/Paris,0,DGL, +DGL:SP:1760,1,"Les Sapins",45.673153,4.783196,0,0,DGL:SA:S10841,Europe/Paris,0,DGL, +DGL:SP:1761,1,"Les Sources",45.792629,4.782543,0,0,DGL:SA:S10842,Europe/Paris,2,DGL, +DGL:SP:1762,1,"Les Sources",45.7925,4.782705,0,0,DGL:SA:S10842,Europe/Paris,0,DGL, +DGL:SP:1763,1,"Les Sources - La Romaine",45.790384,4.783975,0,0,DGL:SA:S10843,Europe/Paris,2,DGL, +DGL:SP:1764,1,"Les Sources - La Romaine",45.789975,4.784124,0,0,DGL:SA:S10843,Europe/Paris,2,DGL, +DGL:SP:1765,1,"Corbas Les Taillis",45.669667,4.908014,0,0,DGL:SA:S10844,Europe/Paris,0,DGL, +DGL:SP:1766,1,"Corbas Les Taillis",45.669707,4.908222,0,0,DGL:SA:S10844,Europe/Paris,0,DGL, +DGL:SP:1768,1,"Les Terres St G. les Ollieres",45.76097,4.705419,0,0,DGL:SA:S10846,Europe/Paris,0,DGL, +DGL:SP:1769,1,"Les Terres St G. les Ollieres",45.760875,4.705621,0,0,DGL:SA:S10846,Europe/Paris,2,DGL, +DGL:SP:1770,1,"Les Tilleuls",45.798489,4.803934,0,0,DGL:SA:S10847,Europe/Paris,2,DGL, +DGL:SP:1771,1,"Les Tilleuls",45.797925,4.803407,0,0,DGL:SA:S10847,Europe/Paris,2,DGL, +DGL:SP:1774,1,"Les Tours",45.780803,4.796078,0,0,DGL:SA:S10849,Europe/Paris,0,DGL, +DGL:SP:1775,1,"Les Troenes",45.733407,4.991845,0,0,DGL:SA:S10850,Europe/Paris,2,DGL, +DGL:SP:1776,1,"Les Troenes",45.733655,4.991266,0,0,DGL:SA:S10850,Europe/Paris,2,DGL, +DGL:SP:1777,1,"Les Vercheres",45.817399,4.90132,0,0,DGL:SA:S5321,Europe/Paris,2,DGL, +DGL:SP:1778,1,"Les Vercheres",45.817682,4.901926,0,0,DGL:SA:S5321,Europe/Paris,2,DGL, +DGL:SP:1781,1,"Les Villas",45.818244,4.775612,0,0,DGL:SA:S10853,Europe/Paris,2,DGL, +DGL:SP:1782,1,"Les Villas",45.817666,4.775702,0,0,DGL:SA:S10853,Europe/Paris,2,DGL, +DGL:SP:1783,1,"Les Violettes",45.667196,4.86665,0,0,DGL:SA:S10854,Europe/Paris,0,DGL, +DGL:SP:1784,1,"Lesire",45.780811,4.913778,0,0,DGL:SA:S10855,Europe/Paris,2,DGL, +DGL:SP:1785,1,"Lesire",45.780938,4.913745,0,0,DGL:SA:S10855,Europe/Paris,2,DGL, +DGL:SP:1786,1,"Letra",45.828546,4.791945,0,0,DGL:SA:S10856,Europe/Paris,2,DGL, +DGL:SP:1787,1,"Letra",45.828627,4.792335,0,0,DGL:SA:S10856,Europe/Paris,2,DGL, +DGL:SP:179,1,"Bellegarde",45.871121,4.839761,0,0,DGL:SA:S10084,Europe/Paris,2,DGL, +DGL:SP:1794,1,"Limonest Centre",45.837592,4.771655,0,0,DGL:SA:S10859,Europe/Paris,2,DGL, +DGL:SP:1795,1,"Limonest Centre",45.83746,4.771533,0,0,DGL:SA:S10859,Europe/Paris,2,DGL, +DGL:SP:1797,1,"Limonest Cimetiere",45.84269,4.768584,0,0,DGL:SA:S10860,Europe/Paris,0,DGL, +DGL:SP:1798,1,"Limonest Place",45.836075,4.771472,0,0,DGL:SA:S10861,Europe/Paris,2,DGL, +DGL:SP:1799,1,"Limonest Place",45.835204,4.771369,0,0,DGL:SA:S10861,Europe/Paris,2,DGL, +DGL:SP:18,1,"Corbas Gabriel Peri",45.675441,4.916823,0,0,DGL:SA:S10008,Europe/Paris,0,DGL, +DGL:SP:180,1,"Bellegarde",45.870761,4.839732,0,0,DGL:SA:S10084,Europe/Paris,2,DGL, +DGL:SP:1802,1,"Longchamp",45.781414,4.886159,0,0,DGL:SA:S10863,Europe/Paris,2,DGL, +DGL:SP:1803,1,"Longchamp",45.781213,4.885108,0,0,DGL:SA:S10863,Europe/Paris,2,DGL, +DGL:SP:1804,1,"Longefer",45.739343,4.880148,0,0,DGL:SA:S10864,Europe/Paris,2,DGL, +DGL:SP:1805,1,"Longefer",45.740134,4.881753,0,0,DGL:SA:S10864,Europe/Paris,2,DGL, +DGL:SP:1808,1,"Lopofa",45.697343,4.933932,0,0,DGL:SA:S10865,Europe/Paris,0,DGL, +DGL:SP:1809,1,"Lorette",45.707139,4.79812,0,0,DGL:SA:S10866,Europe/Paris,2,DGL, +DGL:SP:1812,1,"Louis Braille",45.696017,4.949553,0,0,DGL:SA:S10868,Europe/Paris,2,DGL, +DGL:SP:1813,1,"Louis Braille",45.695946,4.949486,0,0,DGL:SA:S10868,Europe/Paris,2,DGL, +DGL:SP:1814,1,"Louise Michel",45.774089,4.894399,0,0,DGL:SA:S10869,Europe/Paris,2,DGL, +DGL:SP:1815,1,"Louise Michel",45.774237,4.894213,0,0,DGL:SA:S10869,Europe/Paris,2,DGL, +DGL:SP:1817,1,"Louise Michel",45.774527,4.893725,0,0,DGL:SA:S10869,Europe/Paris,2,DGL, +DGL:SP:1820,1,"Ludovic Bonin",45.727002,4.853809,0,0,DGL:SA:S10871,Europe/Paris,2,DGL, +DGL:SP:1821,1,"Ludovic Bonin",45.72708,4.853915,0,0,DGL:SA:S10871,Europe/Paris,2,DGL, +DGL:SP:1822,1,"Luther King",45.731933,4.901194,0,0,DGL:SA:S10872,Europe/Paris,2,DGL, +DGL:SP:1823,1,"Luther King",45.732021,4.901249,0,0,DGL:SA:S10872,Europe/Paris,2,DGL, +DGL:SP:1825,1,"Luzy",45.756191,4.801549,0,0,DGL:SA:S10873,Europe/Paris,2,DGL, +DGL:SP:1826,1,"Luzy",45.756241,4.802168,0,0,DGL:SA:S10873,Europe/Paris,2,DGL, +DGL:SP:183,1,"Benoit Bernard",45.738254,4.85219,0,0,DGL:SA:S10086,Europe/Paris,2,DGL, +DGL:SP:1834,1,"Lycee Jean Perrin",45.79451,4.81459,0,0,DGL:SA:S10878,Europe/Paris,0,DGL, +DGL:SP:1835,1,"Lycee Jean Perrin",45.794433,4.814407,0,0,DGL:SA:S10878,Europe/Paris,2,DGL, +DGL:SP:184,1,"Benoit Bernard",45.738434,4.852185,0,0,DGL:SA:S10086,Europe/Paris,0,DGL, +DGL:SP:1842,1,"Lyon-Plage",45.788988,4.819668,0,0,DGL:SA:S10882,Europe/Paris,0,DGL, +DGL:SP:1843,1,"Lyon-Plage",45.78793,4.818295,0,0,DGL:SA:S10882,Europe/Paris,2,DGL, +DGL:SP:1845,1,"Machy",45.871694,4.756391,0,0,DGL:SA:S10884,Europe/Paris,0,DGL, +DGL:SP:1846,1,"Machy",45.871767,4.756342,0,0,DGL:SA:S10884,Europe/Paris,2,DGL, +DGL:SP:1848,1,"Maconniere",45.647833,4.804172,0,0,DGL:SA:S10885,Europe/Paris,0,DGL, +DGL:SP:185,1,"Benoit Bernard",45.738508,4.852471,0,0,DGL:SA:S10086,Europe/Paris,2,DGL, +DGL:SP:1862,1,"Mairie de Villeurbanne",45.766516,4.880234,0,0,DGL:SA:S10893,Europe/Paris,2,DGL, +DGL:SP:1863,1,"Mairie de Villeurbanne",45.766777,4.880246,0,0,DGL:SA:S10893,Europe/Paris,2,DGL, +DGL:SP:1864,1,"Mairie du 4eme",45.774035,4.827483,0,0,DGL:SA:S10894,Europe/Paris,2,DGL, +DGL:SP:1865,1,"Mairie du 4eme",45.774065,4.828179,0,0,DGL:SA:S10894,Europe/Paris,2,DGL, +DGL:SP:1866,1,"Mairie du 5eme",45.757949,4.801049,0,0,DGL:SA:S10895,Europe/Paris,2,DGL, +DGL:SP:1867,1,"Mairie du 5eme",45.758031,4.800975,0,0,DGL:SA:S10895,Europe/Paris,2,DGL, +DGL:SP:187,1,"Berjon - St Simon",45.776424,4.797117,0,0,DGL:SA:S10088,Europe/Paris,0,DGL, +DGL:SP:1873,1,"Centre Hospitalier Mont d'Or",45.860385,4.835187,0,0,DGL:SA:S10899,Europe/Paris,2,DGL, +DGL:SP:1874,1,"Centre Hospitalier Mont d'Or",45.859515,4.835058,0,0,DGL:SA:S10899,Europe/Paris,2,DGL, +DGL:SP:1875,1,"Hopital Antoine Charial",45.747423,4.751915,0,0,DGL:SA:S5765,Europe/Paris,2,DGL, +DGL:SP:1876,1,"Hopital Antoine Charial",45.747333,4.752988,0,0,DGL:SA:S5765,Europe/Paris,2,DGL, +DGL:SP:1877,1,"Maison des Pretres",45.650946,4.812782,0,0,DGL:SA:S10901,Europe/Paris,2,DGL, +DGL:SP:1878,1,"Maison des Pretres",45.65187,4.813337,0,0,DGL:SA:S10901,Europe/Paris,2,DGL, +DGL:SP:1881,1,"Maisons Neuves",45.755622,4.875976,0,0,DGL:SA:S10902,Europe/Paris,2,DGL, +DGL:SP:1882,1,"Maisons Neuves",45.755636,4.875359,0,0,DGL:SA:S10902,Europe/Paris,2,DGL, +DGL:SP:1885,1,"Manissieux Clemenceau",45.703766,4.983401,0,0,DGL:SA:S10903,Europe/Paris,0,DGL, +DGL:SP:1886,1,"Manissieux Clemenceau",45.703924,4.983178,0,0,DGL:SA:S10903,Europe/Paris,0,DGL, +DGL:SP:1889,1,"Manufacture Montluc",45.749292,4.85929,0,0,DGL:SA:S5906,Europe/Paris,0,DGL, +DGL:SP:189,1,"Paul Berliet",45.704349,4.913141,0,0,DGL:SA:S10089,Europe/Paris,2,DGL, +DGL:SP:1892,1,"Manufacture Montluc",45.74944,4.859503,0,0,DGL:SA:S5906,Europe/Paris,2,DGL, +DGL:SP:1893,1,"Marais",45.785464,4.901632,0,0,DGL:SA:S10906,Europe/Paris,2,DGL, +DGL:SP:1894,1,"Marais",45.785514,4.901403,0,0,DGL:SA:S10906,Europe/Paris,2,DGL, +DGL:SP:1895,1,"Marcel Pagnol",45.712986,4.888117,0,0,DGL:SA:S10907,Europe/Paris,0,DGL, +DGL:SP:1896,1,"Marcel Pagnol",45.712624,4.88819,0,0,DGL:SA:S10907,Europe/Paris,0,DGL, +DGL:SP:1899,1,"Marcy I.N.T.",45.786758,4.714301,0,0,DGL:SA:S10909,Europe/Paris,2,DGL, +DGL:SP:19,1,"Corbas Gabriel Peri",45.675861,4.917767,0,0,DGL:SA:S10008,Europe/Paris,0,DGL, +DGL:SP:190,1,"Paul Berliet",45.705141,4.911932,0,0,DGL:SA:S10089,Europe/Paris,2,DGL, +DGL:SP:1900,1,"Marcy I.N.T.",45.786127,4.714788,0,0,DGL:SA:S10909,Europe/Paris,2,DGL, +DGL:SP:1901,1,"Marcy l'Etoile",45.782225,4.705653,0,0,DGL:SA:S10910,Europe/Paris,2,DGL, +DGL:SP:1902,1,"Marcy l'Etoile",45.781434,4.705567,0,0,DGL:SA:S10910,Europe/Paris,0,DGL, +DGL:SP:1905,1,"Marcy l'Orme",45.778938,4.70573,0,0,DGL:SA:S10912,Europe/Paris,2,DGL, +DGL:SP:1906,1,"Marcy l'Orme",45.778866,4.705701,0,0,DGL:SA:S10912,Europe/Paris,2,DGL, +DGL:SP:1907,1,"Marcy Vercheres",45.785895,4.706621,0,0,DGL:SA:S10913,Europe/Paris,2,DGL, +DGL:SP:1908,1,"Marcy Vercheres",45.786,4.706729,0,0,DGL:SA:S10913,Europe/Paris,2,DGL, +DGL:SP:191,1,"Berliet Venissieux",45.712842,4.899188,0,0,DGL:SA:S10090,Europe/Paris,2,DGL, +DGL:SP:1915,1,"Marius Poncet",45.758352,4.737543,0,0,DGL:SA:S10917,Europe/Paris,0,DGL, +DGL:SP:1916,1,"Marius Poncet",45.758324,4.738031,0,0,DGL:SA:S10917,Europe/Paris,0,DGL, +DGL:SP:1917,1,"Marjolet",45.67706,4.824087,0,0,DGL:SA:S10918,Europe/Paris,0,DGL, +DGL:SP:1918,1,"Marjolet",45.677206,4.824389,0,0,DGL:SA:S10918,Europe/Paris,0,DGL, +DGL:SP:192,1,"Berliet Venissieux",45.713276,4.89851,0,0,DGL:SA:S10090,Europe/Paris,2,DGL, +DGL:SP:1921,1,"Marne - Pagere",45.741837,4.91482,0,0,DGL:SA:S10920,Europe/Paris,0,DGL, +DGL:SP:1922,1,"Marne - Pagere",45.742221,4.916522,0,0,DGL:SA:S10920,Europe/Paris,0,DGL, +DGL:SP:1923,1,"Marronniers",45.81438,4.861711,0,0,DGL:SA:S10921,Europe/Paris,2,DGL, +DGL:SP:1924,1,"Marronniers",45.814958,4.862433,0,0,DGL:SA:S10921,Europe/Paris,2,DGL, +DGL:SP:193,1,"Bernaix",45.760105,4.898546,0,0,DGL:SA:S10091,Europe/Paris,2,DGL, +DGL:SP:1932,1,"Maryse Bastie",45.734727,4.874484,0,0,DGL:SA:S10923,Europe/Paris,2,DGL, +DGL:SP:1936,1,"Mas du Taureau",45.785091,4.910852,0,0,DGL:SA:S10924,Europe/Paris,0,DGL, +DGL:SP:1937,1,"Mas du Taureau",45.785046,4.910065,0,0,DGL:SA:S10924,Europe/Paris,2,DGL, +DGL:SP:1938,1,"Mas du Taureau",45.785631,4.910852,0,0,DGL:SA:S10924,Europe/Paris,2,DGL, +DGL:SP:1939,1,"Rebufer",45.727436,4.915533,0,0,DGL:SA:S5314,Europe/Paris,2,DGL, +DGL:SP:194,1,"Bernaix",45.761398,4.896716,0,0,DGL:SA:S10091,Europe/Paris,0,DGL, +DGL:SP:1940,1,"Rebufer",45.727601,4.915798,0,0,DGL:SA:S5314,Europe/Paris,2,DGL, +DGL:SP:1941,1,"Massard",45.72793,5.018136,0,0,DGL:SA:S10926,Europe/Paris,0,DGL, +DGL:SP:1942,1,"Massard",45.72799,5.018254,0,0,DGL:SA:S10926,Europe/Paris,0,DGL, +DGL:SP:195,1,"Bernard Vallot",45.733791,4.893118,0,0,DGL:SA:S10092,Europe/Paris,0,DGL, +DGL:SP:1950,1,"Menival Centre",45.75667,4.786255,0,0,DGL:SA:S10930,Europe/Paris,2,DGL, +DGL:SP:1951,1,"Menival Centre",45.756934,4.785727,0,0,DGL:SA:S10930,Europe/Paris,2,DGL, +DGL:SP:1952,1,"Menival Sainte Anne",45.756757,4.783109,0,0,DGL:SA:S5761,Europe/Paris,2,DGL, +DGL:SP:1953,1,"Menival Sainte Anne",45.756374,4.782063,0,0,DGL:SA:S5761,Europe/Paris,2,DGL, +DGL:SP:1954,1,"ENS Lyon",45.731453,4.83057,0,0,DGL:SA:S5910,Europe/Paris,2,DGL, +DGL:SP:1955,1,"ENS Lyon",45.731505,4.829504,0,0,DGL:SA:S5910,Europe/Paris,2,DGL, +DGL:SP:1956,1,"Merlo",45.719038,4.787035,0,0,DGL:SA:S10933,Europe/Paris,2,DGL, +DGL:SP:1957,1,"Merlo",45.718962,4.787623,0,0,DGL:SA:S10933,Europe/Paris,2,DGL, +DGL:SP:1958,1,"Merlus",45.718694,4.790798,0,0,DGL:SA:S10934,Europe/Paris,2,DGL, +DGL:SP:1959,1,"Merlus",45.718652,4.790667,0,0,DGL:SA:S10934,Europe/Paris,2,DGL, +DGL:SP:196,1,"Bernard Vallot",45.733452,4.893771,0,0,DGL:SA:S10092,Europe/Paris,0,DGL, +DGL:SP:1963,1,"Meyzieu Centre social",45.763885,5.001831,0,0,DGL:SA:S10937,Europe/Paris,2,DGL, +DGL:SP:1966,1,"Fenelon",45.774417,5.018473,0,0,DGL:SA:S10939,Europe/Paris,0,DGL, +DGL:SP:1967,1,"Fenelon",45.774331,5.018315,0,0,DGL:SA:S10939,Europe/Paris,2,DGL, +DGL:SP:1970,1,"Meyzieu Gare Liberation",45.771781,5.000632,0,0,DGL:SA:S5567,Europe/Paris,2,DGL, +DGL:SP:1971,1,"Meyzieu Gare Liberation",45.771825,5.000672,0,0,DGL:SA:S5567,Europe/Paris,2,DGL, +DGL:SP:1974,1,"Meyzieu Le Carreau",45.776244,4.990839,0,0,DGL:SA:S10943,Europe/Paris,0,DGL, +DGL:SP:1975,1,"Meyzieu Le Carreau",45.775554,4.989146,0,0,DGL:SA:S10943,Europe/Paris,0,DGL, +DGL:SP:1976,1,"Pommier Liberation",45.776539,4.998148,0,0,DGL:SA:S10944,Europe/Paris,2,DGL, +DGL:SP:1977,1,"Pommier Liberation",45.776583,4.998163,0,0,DGL:SA:S10944,Europe/Paris,2,DGL, +DGL:SP:198,1,"Berthaudiere",45.775604,4.969055,0,0,DGL:SA:S10093,Europe/Paris,0,DGL, +DGL:SP:1983,1,"Meyzieu Plantees",45.760703,5.011863,0,0,DGL:SA:S10948,Europe/Paris,2,DGL, +DGL:SP:1986,1,"Mi Plaine - Pelossier",45.717111,4.957532,0,0,DGL:SA:S10951,Europe/Paris,0,DGL, +DGL:SP:1987,1,"Mi Plaine - Pelossier",45.717199,4.957601,0,0,DGL:SA:S10951,Europe/Paris,0,DGL, +DGL:SP:1988,1,"Michelet",45.812402,4.890674,0,0,DGL:SA:S10952,Europe/Paris,2,DGL, +DGL:SP:1989,1,"Michelet",45.812284,4.890104,0,0,DGL:SA:S10952,Europe/Paris,2,DGL, +DGL:SP:199,1,"Berthier",45.745119,4.798713,0,0,DGL:SA:S5003,Europe/Paris,2,DGL, +DGL:SP:1996,1,"Minguettes Darnaise",45.690631,4.86648,0,0,DGL:SA:S10955,Europe/Paris,2,DGL, +DGL:SP:2,1,"24 Aout",45.682894,4.909415,0,0,DGL:SA:S10001,Europe/Paris,2,DGL, +DGL:SP:20,1,"Acacias",45.780542,4.789094,0,0,DGL:SA:S10009,Europe/Paris,0,DGL, +DGL:SP:200,1,"Berthier",45.745977,4.798996,0,0,DGL:SA:S5003,Europe/Paris,2,DGL, +DGL:SP:2005,1,"Mions Jules Valles",45.65429,4.949372,0,0,DGL:SA:S10958,Europe/Paris,0,DGL, +DGL:SP:2008,1,"Mions Poste",45.669234,4.950838,0,0,DGL:SA:S10960,Europe/Paris,2,DGL, +DGL:SP:2009,1,"Mions Poste",45.669941,4.950268,0,0,DGL:SA:S10960,Europe/Paris,0,DGL, +DGL:SP:2010,1,"Momet",45.779398,4.750914,0,0,DGL:SA:S10961,Europe/Paris,0,DGL, +DGL:SP:2011,1,"Momet",45.779349,4.751105,0,0,DGL:SA:S10961,Europe/Paris,0,DGL, +DGL:SP:2012,1,"Moncey - Bonnel",45.761945,4.850199,0,0,DGL:SA:S10962,Europe/Paris,2,DGL, +DGL:SP:2013,1,"Monge",45.750775,4.90935,0,0,DGL:SA:S10963,Europe/Paris,2,DGL, +DGL:SP:2018,1,"Monplaisir La Plaine",45.72609,4.880281,0,0,DGL:SA:S10966,Europe/Paris,2,DGL, +DGL:SP:2019,1,"Monplaisir La Plaine",45.726309,4.88015,0,0,DGL:SA:S10966,Europe/Paris,2,DGL, +DGL:SP:202,1,"Bifurcation du Rosay",45.791419,4.808648,0,0,DGL:SA:S10096,Europe/Paris,2,DGL, +DGL:SP:2020,1,"Mont Blanc",45.72463,4.887076,0,0,DGL:SA:S10967,Europe/Paris,0,DGL, +DGL:SP:2021,1,"Mont Blanc",45.724186,4.887223,0,0,DGL:SA:S10967,Europe/Paris,0,DGL, +DGL:SP:2023,1,"Mont-Louis",45.717594,4.790903,0,0,DGL:SA:S10969,Europe/Paris,2,DGL, +DGL:SP:2024,1,"Mont-Louis",45.717504,4.791297,0,0,DGL:SA:S10969,Europe/Paris,2,DGL, +DGL:SP:2025,1,"Mont Saint Paul",45.746426,4.964985,0,0,DGL:SA:S10970,Europe/Paris,0,DGL, +DGL:SP:2026,1,"Mont Saint Paul",45.746705,4.964985,0,0,DGL:SA:S10970,Europe/Paris,0,DGL, +DGL:SP:2027,1,"Montagny",45.732239,4.853457,0,0,DGL:SA:S10971,Europe/Paris,2,DGL, +DGL:SP:2028,1,"Montagny",45.732598,4.853499,0,0,DGL:SA:S10971,Europe/Paris,2,DGL, +DGL:SP:203,1,"Bifurcation du Rosay",45.790421,4.808191,0,0,DGL:SA:S10096,Europe/Paris,2,DGL, +DGL:SP:2033,1,"Montanay Les Dimes",45.877872,4.867906,0,0,DGL:SA:S10975,Europe/Paris,0,DGL, +DGL:SP:2036,1,"Montanay Mairie",45.878969,4.858368,0,0,DGL:SA:S10977,Europe/Paris,0,DGL, +DGL:SP:2037,1,"Montanay Mairie",45.878692,4.858677,0,0,DGL:SA:S10977,Europe/Paris,0,DGL, +DGL:SP:2038,1,"Montchat Kimmerling",45.752415,4.900232,0,0,DGL:SA:S10978,Europe/Paris,2,DGL, +DGL:SP:2039,1,"Montchat Kimmerling",45.752911,4.898622,0,0,DGL:SA:S10978,Europe/Paris,2,DGL, +DGL:SP:204,1,"Bir Hakeim",45.753121,4.855107,0,0,DGL:SA:S10097,Europe/Paris,2,DGL, +DGL:SP:2041,1,"Montchat Pinel",45.752146,4.896259,0,0,DGL:SA:S10979,Europe/Paris,2,DGL, +DGL:SP:2042,1,"Montchat Pinel",45.752788,4.894528,0,0,DGL:SA:S10979,Europe/Paris,2,DGL, +DGL:SP:2047,1,"Montcourant",45.809425,4.733274,0,0,DGL:SA:S10981,Europe/Paris,0,DGL, +DGL:SP:2048,1,"Montcourant",45.809127,4.732875,0,0,DGL:SA:S10981,Europe/Paris,2,DGL, +DGL:SP:2049,1,"Montee de Champagne",45.790771,4.802494,0,0,DGL:SA:S10982,Europe/Paris,0,DGL, +DGL:SP:205,1,"Bir Hakeim",45.753101,4.854424,0,0,DGL:SA:S10097,Europe/Paris,2,DGL, +DGL:SP:2050,1,"Montee de Champagne",45.790494,4.802816,0,0,DGL:SA:S10982,Europe/Paris,0,DGL, +DGL:SP:2051,1,"Montee des Soldats",45.795337,4.858739,0,0,DGL:SA:S10983,Europe/Paris,2,DGL, +DGL:SP:2052,1,"Montee des Soldats",45.795514,4.858464,0,0,DGL:SA:S10983,Europe/Paris,2,DGL, +DGL:SP:2053,1,"Louis Bouquet",45.797817,4.818789,0,0,DGL:SA:S10984,Europe/Paris,2,DGL, +DGL:SP:2054,1,"Louis Bouquet",45.798132,4.818986,0,0,DGL:SA:S10984,Europe/Paris,2,DGL, +DGL:SP:2055,1,"Montessuy Calmette",45.791689,4.843594,0,0,DGL:SA:S10985,Europe/Paris,2,DGL, +DGL:SP:2056,1,"Montessuy Calmette",45.791472,4.843224,0,0,DGL:SA:S10985,Europe/Paris,2,DGL, +DGL:SP:2057,1,"Montessuy Fleming",45.794467,4.846722,0,0,DGL:SA:S10986,Europe/Paris,2,DGL, +DGL:SP:2058,1,"Montessuy Fleming",45.794422,4.846563,0,0,DGL:SA:S10986,Europe/Paris,2,DGL, +DGL:SP:2059,1,"Montessuy Gutenberg",45.795036,4.849267,0,0,DGL:SA:S10987,Europe/Paris,2,DGL, +DGL:SP:2060,1,"Montessuy Hauts St Clair",45.794281,4.84893,0,0,DGL:SA:S10988,Europe/Paris,2,DGL, +DGL:SP:2061,1,"Montferrat",45.740657,4.920344,0,0,DGL:SA:S10989,Europe/Paris,2,DGL, +DGL:SP:2062,1,"Montferrat",45.740338,4.920522,0,0,DGL:SA:S10989,Europe/Paris,2,DGL, +DGL:SP:2063,1,"Montfort",45.862751,4.752402,0,0,DGL:SA:S10990,Europe/Paris,0,DGL, +DGL:SP:2064,1,"Montfort",45.862064,4.752565,0,0,DGL:SA:S10990,Europe/Paris,2,DGL, +DGL:SP:2065,1,"Montgay Ampere",45.822651,4.863006,0,0,DGL:SA:S10991,Europe/Paris,0,DGL, +DGL:SP:2066,1,"Montgay Ampere",45.822471,4.862985,0,0,DGL:SA:S10991,Europe/Paris,0,DGL, +DGL:SP:2071,1,"Montgolfier",45.727508,4.964043,0,0,DGL:SA:S10993,Europe/Paris,0,DGL, +DGL:SP:2072,1,"Montgolfier",45.727331,4.964291,0,0,DGL:SA:S10993,Europe/Paris,0,DGL, +DGL:SP:2073,1,"Mont Louis",45.789179,4.786803,0,0,DGL:SA:S10994,Europe/Paris,2,DGL, +DGL:SP:2074,1,"Mont Louis",45.78927,4.787167,0,0,DGL:SA:S10994,Europe/Paris,2,DGL, +DGL:SP:2077,1,"Corbas Les Roses",45.680972,4.912369,0,0,DGL:SA:S10996,Europe/Paris,0,DGL, +DGL:SP:2078,1,"Corbas Les Roses",45.680903,4.91261,0,0,DGL:SA:S10996,Europe/Paris,0,DGL, +DGL:SP:2079,1,"Montmein Centre",45.707584,4.806516,0,0,DGL:SA:S10997,Europe/Paris,2,DGL, +DGL:SP:2080,1,"Montmein Centre",45.708275,4.807421,0,0,DGL:SA:S10997,Europe/Paris,2,DGL, +DGL:SP:2081,1,"Montmein Nord",45.710118,4.805473,0,0,DGL:SA:S10998,Europe/Paris,2,DGL, +DGL:SP:2082,1,"Montmein Nord",45.710092,4.806654,0,0,DGL:SA:S10998,Europe/Paris,2,DGL, +DGL:SP:2083,1,"Montmein Sud",45.706143,4.808186,0,0,DGL:SA:S10999,Europe/Paris,2,DGL, +DGL:SP:2084,1,"Montmein Sud",45.706184,4.808766,0,0,DGL:SA:S10999,Europe/Paris,0,DGL, +DGL:SP:2085,1,"Montribloud",45.766873,4.790967,0,0,DGL:SA:S11000,Europe/Paris,2,DGL, +DGL:SP:2086,1,"Montribloud",45.766676,4.791331,0,0,DGL:SA:S11000,Europe/Paris,2,DGL, +DGL:SP:2087,1,"Ambroise Pare",45.741764,4.885325,0,0,DGL:SA:S5311,Europe/Paris,2,DGL, +DGL:SP:2088,1,"Ambroise Pare",45.741661,4.884304,0,0,DGL:SA:S5311,Europe/Paris,2,DGL, +DGL:SP:209,1,"Bleriot",45.659162,4.948897,0,0,DGL:SA:S10099,Europe/Paris,2,DGL, +DGL:SP:2090,1,"Moselle - Trinite",45.732104,4.882615,0,0,DGL:SA:S11002,Europe/Paris,2,DGL, +DGL:SP:2091,1,"Moselle - Trinite",45.732463,4.881848,0,0,DGL:SA:S11002,Europe/Paris,2,DGL, +DGL:SP:2092,1,"Moulin a Vent",45.729466,4.853086,0,0,DGL:SA:S11003,Europe/Paris,2,DGL, +DGL:SP:2093,1,"Moulin a Vent",45.729535,4.852845,0,0,DGL:SA:S11003,Europe/Paris,2,DGL, +DGL:SP:2094,1,"Moulin a Vent",45.728129,4.853732,0,0,DGL:SA:S11003,Europe/Paris,2,DGL, +DGL:SP:2095,1,"Moulin a Vent",45.729513,4.853821,0,0,DGL:SA:S11003,Europe/Paris,2,DGL, +DGL:SP:2096,1,"Moulin Carron",45.789205,4.779831,0,0,DGL:SA:S11004,Europe/Paris,2,DGL, +DGL:SP:2097,1,"Moulin Carron",45.789295,4.77941,0,0,DGL:SA:S11004,Europe/Paris,2,DGL, +DGL:SP:2098,1,"Moulin d'Amont",45.773429,4.981184,0,0,DGL:SA:S11005,Europe/Paris,2,DGL, +DGL:SP:2099,1,"Moulin d'Amont",45.773375,4.98077,0,0,DGL:SA:S11005,Europe/Paris,2,DGL, +DGL:SP:21,1,"Acacias",45.780058,4.788584,0,0,DGL:SA:S10009,Europe/Paris,2,DGL, +DGL:SP:210,1,"Bleriot",45.658918,4.948937,0,0,DGL:SA:S10099,Europe/Paris,2,DGL, +DGL:SP:2100,1,"La Mulatiere Belle Rive",45.740056,4.811997,0,0,DGL:SA:S11006,Europe/Paris,0,DGL, +DGL:SP:2101,1,"La Mulatiere Belle Rive",45.740369,4.812114,0,0,DGL:SA:S11006,Europe/Paris,0,DGL, +DGL:SP:2102,1,"Maison du Confluent",45.725867,4.816641,0,0,DGL:SA:S11007,Europe/Paris,2,DGL, +DGL:SP:2103,1,"Maison du Confluent",45.72622,4.816554,0,0,DGL:SA:S11007,Europe/Paris,2,DGL, +DGL:SP:2104,1,"Murget",45.737536,4.97595,0,0,DGL:SA:S11008,Europe/Paris,0,DGL, +DGL:SP:2105,1,"Murget",45.737534,4.976027,0,0,DGL:SA:S11008,Europe/Paris,0,DGL, +DGL:SP:2106,1,"Musset - Poudrette",45.757381,4.921181,0,0,DGL:SA:S11009,Europe/Paris,2,DGL, +DGL:SP:2109,1,"Nicolas Garnier - Poudrette",45.755527,4.921132,0,0,DGL:SA:S11010,Europe/Paris,2,DGL, +DGL:SP:211,1,"Bois de Dardilly",45.798754,4.757002,0,0,DGL:SA:S10100,Europe/Paris,2,DGL, +DGL:SP:2110,1,"Nicolas Garnier - Poudrette",45.755212,4.921156,0,0,DGL:SA:S11010,Europe/Paris,2,DGL, +DGL:SP:2113,1,"Narcel",45.729229,4.795984,0,0,DGL:SA:S11012,Europe/Paris,2,DGL, +DGL:SP:2114,1,"Narcel",45.729304,4.796245,0,0,DGL:SA:S11012,Europe/Paris,2,DGL, +DGL:SP:2118,1,"Neuville",45.875831,4.838455,0,0,DGL:SA:S5640,Europe/Paris,0,DGL, +DGL:SP:212,1,"Bois de Dardilly",45.797919,4.757737,0,0,DGL:SA:S10100,Europe/Paris,2,DGL, +DGL:SP:2128,1,"Niepce",45.779618,4.816402,0,0,DGL:SA:S11021,Europe/Paris,0,DGL, +DGL:SP:2129,1,"Noailleux",45.846747,4.86821,0,0,DGL:SA:S11022,Europe/Paris,2,DGL, +DGL:SP:213,1,"Bois de l'Etoile",45.780585,4.725277,0,0,DGL:SA:S10101,Europe/Paris,0,DGL, +DGL:SP:2130,1,"Noailleux",45.846749,4.868158,0,0,DGL:SA:S11022,Europe/Paris,0,DGL, +DGL:SP:2133,1,"Norenchal",45.835798,4.847114,0,0,DGL:SA:S11023,Europe/Paris,2,DGL, +DGL:SP:2134,1,"Norenchal",45.836378,4.846909,0,0,DGL:SA:S11023,Europe/Paris,2,DGL, +DGL:SP:2139,1,"Notre Dame du Grand Port",45.819365,4.84048,0,0,DGL:SA:S11026,Europe/Paris,2,DGL, +DGL:SP:214,1,"Bois de l'Etoile",45.780645,4.724572,0,0,DGL:SA:S10101,Europe/Paris,0,DGL, +DGL:SP:2140,1,"Nouveau cimetiere Rillieux",45.824167,4.90613,0,0,DGL:SA:S11027,Europe/Paris,2,DGL, +DGL:SP:2141,1,"Nouveau cimetiere Rillieux",45.824032,4.906097,0,0,DGL:SA:S11027,Europe/Paris,2,DGL, +DGL:SP:2142,1,"Nouveau cimetiere Venissieux",45.690193,4.880665,0,0,DGL:SA:S11028,Europe/Paris,0,DGL, +DGL:SP:2143,1,"Nouveau cimetiere Venissieux",45.690147,4.880689,0,0,DGL:SA:S11028,Europe/Paris,0,DGL, +DGL:SP:2146,1,"Novy Jicin",45.696476,4.896871,0,0,DGL:SA:S11030,Europe/Paris,2,DGL, +DGL:SP:2147,1,"Oasis",45.71501,4.801195,0,0,DGL:SA:S11031,Europe/Paris,0,DGL, +DGL:SP:2148,1,"Oasis",45.714977,4.801065,0,0,DGL:SA:S11031,Europe/Paris,0,DGL, +DGL:SP:2149,1,"Observance",45.768149,4.809544,0,0,DGL:SA:S11032,Europe/Paris,2,DGL, +DGL:SP:215,1,"Bois de Parilly",45.725596,4.913339,0,0,DGL:SA:S10102,Europe/Paris,2,DGL, +DGL:SP:2150,1,"Observance",45.768678,4.809645,0,0,DGL:SA:S11032,Europe/Paris,2,DGL, +DGL:SP:2151,1,"Oullins Clement Desormes",45.722368,4.804275,0,0,DGL:SA:S11033,Europe/Paris,2,DGL, +DGL:SP:2156,1,"Oullins Mairie",45.714339,4.807127,0,0,DGL:SA:S11035,Europe/Paris,2,DGL, +DGL:SP:2157,1,"Oullins Mairie",45.714398,4.806912,0,0,DGL:SA:S11035,Europe/Paris,2,DGL, +DGL:SP:2158,1,"Oullins Ville",45.711436,4.801627,0,0,DGL:SA:S11036,Europe/Paris,2,DGL, +DGL:SP:216,1,"Bois de Parilly",45.725782,4.912692,0,0,DGL:SA:S10102,Europe/Paris,2,DGL, +DGL:SP:2160,1,"Oullins Ville",45.712494,4.802239,0,0,DGL:SA:S11036,Europe/Paris,0,DGL, +DGL:SP:2166,1,"Pan Perdu",45.683743,4.927267,0,0,DGL:SA:S11040,Europe/Paris,0,DGL, +DGL:SP:2167,1,"Pan Perdu",45.683367,4.926775,0,0,DGL:SA:S11040,Europe/Paris,0,DGL, +DGL:SP:2168,1,"Panorama",45.79758,4.875855,0,0,DGL:SA:S11041,Europe/Paris,2,DGL, +DGL:SP:2169,1,"Panorama",45.797358,4.875741,0,0,DGL:SA:S11041,Europe/Paris,2,DGL, +DGL:SP:2170,1,"Gargantua",45.820663,4.757812,0,0,DGL:SA:S11042,Europe/Paris,2,DGL, +DGL:SP:2171,1,"Gargantua",45.821181,4.757603,0,0,DGL:SA:S11042,Europe/Paris,2,DGL, +DGL:SP:2185,1,"Parc Tete d'Or-Churchill",45.776303,4.8449,0,0,DGL:SA:S11050,Europe/Paris,2,DGL, +DGL:SP:2186,1,"Parc Tete d'Or-Churchill",45.776232,4.845282,0,0,DGL:SA:S11050,Europe/Paris,2,DGL, +DGL:SP:2187,1,"Parc Tete d'Or - Duquesne",45.773139,4.850325,0,0,DGL:SA:S11051,Europe/Paris,2,DGL, +DGL:SP:2189,1,"Parc Tete d'Or - Duquesne",45.773249,4.850677,0,0,DGL:SA:S11051,Europe/Paris,2,DGL, +DGL:SP:219,1,"Bois de Serres",45.795344,4.762771,0,0,DGL:SA:S10103,Europe/Paris,2,DGL, +DGL:SP:2190,1,"Paris",45.824871,4.773434,0,0,DGL:SA:S11052,Europe/Paris,2,DGL, +DGL:SP:2191,1,"Paris",45.824727,4.773415,0,0,DGL:SA:S11052,Europe/Paris,2,DGL, +DGL:SP:2195,1,"Les Saules",45.817239,4.758382,0,0,DGL:SA:S11055,Europe/Paris,2,DGL, +DGL:SP:2196,1,"Les Saules",45.817398,4.758518,0,0,DGL:SA:S11055,Europe/Paris,2,DGL, +DGL:SP:2198,1,"Part-Dieu Auditorium",45.762221,4.853118,0,0,DGL:SA:S11057,Europe/Paris,2,DGL, +DGL:SP:220,1,"Bois de Serres",45.795595,4.762422,0,0,DGL:SA:S10103,Europe/Paris,2,DGL, +DGL:SP:2206,1,"Part-Dieu Jules Favre",45.764325,4.858462,0,0,DGL:SA:S11061,Europe/Paris,2,DGL, +DGL:SP:221,1,"Bois des Chenes",45.68067,4.782349,0,0,DGL:SA:S10104,Europe/Paris,2,DGL, +DGL:SP:2210,1,"Part-Dieu Jules Favre",45.763641,4.857659,0,0,DGL:SA:S11061,Europe/Paris,2,DGL, +DGL:SP:2211,1,"Part-Dieu Jules Favre",45.763735,4.857457,0,0,DGL:SA:S11061,Europe/Paris,2,DGL, +DGL:SP:2212,1,"Part-Dieu Renaudel",45.757854,4.85841,0,0,DGL:SA:S11062,Europe/Paris,2,DGL, +DGL:SP:2213,1,"Part-Dieu Renaudel",45.757542,4.858691,0,0,DGL:SA:S11062,Europe/Paris,2,DGL, +DGL:SP:222,1,"Bois des Chenes",45.680713,4.782428,0,0,DGL:SA:S10104,Europe/Paris,2,DGL, +DGL:SP:2220,1,"Gare Part-Dieu Vivier Merle",45.760782,4.858191,0,0,DGL:SA:S5520,Europe/Paris,2,DGL, +DGL:SP:2226,1,"Gare Part-Dieu Vivier Merle",45.761607,4.858042,0,0,DGL:SA:S5520,Europe/Paris,2,DGL, +DGL:SP:2227,1,"Gare Part-Dieu Vivier Merle",45.760911,4.858164,0,0,DGL:SA:S5520,Europe/Paris,2,DGL, +DGL:SP:2229,1,"Gare Part-Dieu Vivier Merle",45.762121,4.857602,0,0,DGL:SA:S5520,Europe/Paris,2,DGL, +DGL:SP:223,1,"Bois Roux",45.81259,4.859866,0,0,DGL:SA:S10105,Europe/Paris,2,DGL, +DGL:SP:2230,1,"Gare Part-Dieu Vivier Merle",45.762104,4.857936,0,0,DGL:SA:S5520,Europe/Paris,2,DGL, +DGL:SP:2232,1,"Passage Comtois",45.729334,4.876151,0,0,DGL:SA:S11065,Europe/Paris,2,DGL, +DGL:SP:2233,1,"Passage Comtois",45.729664,4.875883,0,0,DGL:SA:S11065,Europe/Paris,2,DGL, +DGL:SP:2234,1,"Passerelle Palais Justice",45.761108,4.831218,0,0,DGL:SA:S11066,Europe/Paris,2,DGL, +DGL:SP:2235,1,"La Boutasse",45.733599,5.018219,0,0,DGL:SA:S11067,Europe/Paris,2,DGL, +DGL:SP:2236,1,"La Boutasse",45.734071,5.018062,0,0,DGL:SA:S11067,Europe/Paris,2,DGL, +DGL:SP:2237,1,"Paul Bert - Baraban",45.75687,4.867353,0,0,DGL:SA:S11068,Europe/Paris,2,DGL, +DGL:SP:2238,1,"Paul Bert - Turbil",45.756773,4.868429,0,0,DGL:SA:S11069,Europe/Paris,2,DGL, +DGL:SP:224,1,"Bois Roux",45.812571,4.859723,0,0,DGL:SA:S10105,Europe/Paris,2,DGL, +DGL:SP:2241,1,"Paul Chevalier",45.823685,4.89488,0,0,DGL:SA:S11071,Europe/Paris,2,DGL, +DGL:SP:2242,1,"Paul Chevalier",45.823635,4.894697,0,0,DGL:SA:S11071,Europe/Paris,2,DGL, +DGL:SP:2243,1,"Paul Santy",45.770461,4.770445,0,0,DGL:SA:S11072,Europe/Paris,0,DGL, +DGL:SP:2244,1,"Pavillon Chirurgical",45.702827,4.80796,0,0,DGL:SA:S11073,Europe/Paris,2,DGL, +DGL:SP:2252,1,"Pelloutier",45.687549,4.902659,0,0,DGL:SA:S11080,Europe/Paris,0,DGL, +DGL:SP:2253,1,"Pelloutier",45.687616,4.902508,0,0,DGL:SA:S11080,Europe/Paris,0,DGL, +DGL:SP:2255,1,"Pennachy",45.695217,4.807708,0,0,DGL:SA:S11081,Europe/Paris,2,DGL, +DGL:SP:2256,1,"Pennachy",45.695691,4.807447,0,0,DGL:SA:S11081,Europe/Paris,2,DGL, +DGL:SP:2257,1,"Penon",45.666814,4.962343,0,0,DGL:SA:S11082,Europe/Paris,2,DGL, +DGL:SP:2258,1,"Penon",45.666701,4.962543,0,0,DGL:SA:S11082,Europe/Paris,0,DGL, +DGL:SP:2259,1,"Pensionnat",45.735873,5.016865,0,0,DGL:SA:S11083,Europe/Paris,2,DGL, +DGL:SP:226,1,"Bois Saint Paul",45.643984,4.801549,0,0,DGL:SA:S10106,Europe/Paris,0,DGL, +DGL:SP:2260,1,"Pensionnat",45.736145,5.016788,0,0,DGL:SA:S11083,Europe/Paris,2,DGL, +DGL:SP:227,1,"Bon Coin",45.760634,4.90612,0,0,DGL:SA:S10107,Europe/Paris,2,DGL, +DGL:SP:228,1,"Bon Coin",45.760585,4.904729,0,0,DGL:SA:S10107,Europe/Paris,0,DGL, +DGL:SP:229,1,"Bonnand",45.747937,4.884209,0,0,DGL:SA:S10108,Europe/Paris,2,DGL, +DGL:SP:2294,1,"Perroncel",45.776815,4.884158,0,0,DGL:SA:S11090,Europe/Paris,2,DGL, +DGL:SP:2297,1,"Petit Perron",45.698603,4.808066,0,0,DGL:SA:S11092,Europe/Paris,2,DGL, +DGL:SP:2298,1,"Petit Perron",45.698504,4.808061,0,0,DGL:SA:S11092,Europe/Paris,2,DGL, +DGL:SP:2299,1,"Petit Sainte Foy",45.745628,4.809149,0,0,DGL:SA:S11093,Europe/Paris,2,DGL, +DGL:SP:230,1,"Bonnand",45.749433,4.88415,0,0,DGL:SA:S10108,Europe/Paris,2,DGL, +DGL:SP:2300,1,"Petit Sainte Foy",45.745774,4.809452,0,0,DGL:SA:S11093,Europe/Paris,2,DGL, +DGL:SP:2305,1,"Petite Guille",45.731796,4.859182,0,0,DGL:SA:S11095,Europe/Paris,0,DGL, +DGL:SP:2306,1,"Petite Guille",45.731529,4.859453,0,0,DGL:SA:S11095,Europe/Paris,0,DGL, +DGL:SP:2307,1,"Peupliers",45.793771,4.871535,0,0,DGL:SA:S11096,Europe/Paris,2,DGL, +DGL:SP:2308,1,"Peupliers",45.793841,4.87123,0,0,DGL:SA:S11096,Europe/Paris,2,DGL, +DGL:SP:2314,1,"Picard",45.707832,4.864894,0,0,DGL:SA:S11100,Europe/Paris,2,DGL, +DGL:SP:2315,1,"Picard",45.707759,4.865713,0,0,DGL:SA:S11100,Europe/Paris,2,DGL, +DGL:SP:2316,1,"Pierre Audry",45.762216,4.808377,0,0,DGL:SA:S11101,Europe/Paris,0,DGL, +DGL:SP:2317,1,"Pierre Audry",45.761872,4.808452,0,0,DGL:SA:S11101,Europe/Paris,0,DGL, +DGL:SP:2318,1,"Pierre-Benite Centre",45.702524,4.821255,0,0,DGL:SA:S11102,Europe/Paris,2,DGL, +DGL:SP:2319,1,"Pierre-Benite Centre",45.703639,4.820894,0,0,DGL:SA:S11102,Europe/Paris,2,DGL, +DGL:SP:2322,1,"Pierre-Benite Hauteroche",45.700164,4.822947,0,0,DGL:SA:S11103,Europe/Paris,2,DGL, +DGL:SP:2323,1,"Pierre-Benite Hauteroche",45.700208,4.823026,0,0,DGL:SA:S11103,Europe/Paris,2,DGL, +DGL:SP:2327,1,"Pierre Drevet",45.807768,4.871936,0,0,DGL:SA:S11105,Europe/Paris,2,DGL, +DGL:SP:2328,1,"Pierre Drevet",45.807424,4.872049,0,0,DGL:SA:S11105,Europe/Paris,2,DGL, +DGL:SP:2329,1,"Pierre Joseph Proudhon",45.773605,4.890338,0,0,DGL:SA:S11106,Europe/Paris,0,DGL, +DGL:SP:233,1,"Bonnevay - Bel Air",45.753108,4.907697,0,0,DGL:SA:S10111,Europe/Paris,0,DGL, +DGL:SP:2330,1,"Pierre Joseph Proudhon",45.773944,4.891241,0,0,DGL:SA:S11106,Europe/Paris,2,DGL, +DGL:SP:2332,1,"Pierre Scize",45.767369,4.823284,0,0,DGL:SA:S11107,Europe/Paris,2,DGL, +DGL:SP:2333,1,"Pierre Blanche",45.821774,4.751334,0,0,DGL:SA:S11108,Europe/Paris,2,DGL, +DGL:SP:2334,1,"Pierre Blanche",45.82151,4.751091,0,0,DGL:SA:S11108,Europe/Paris,2,DGL, +DGL:SP:2335,1,"Pinel - Laennec",45.735208,4.889417,0,0,DGL:SA:S11109,Europe/Paris,2,DGL, +DGL:SP:2336,1,"Pinel - Laennec",45.735371,4.888975,0,0,DGL:SA:S11109,Europe/Paris,2,DGL, +DGL:SP:2344,1,"Piscine d'Alai",45.752306,4.771288,0,0,DGL:SA:S5762,Europe/Paris,2,DGL, +DGL:SP:2345,1,"Piscine d'Alai",45.752363,4.771162,0,0,DGL:SA:S5762,Europe/Paris,2,DGL, +DGL:SP:2350,1,"Place Docteurs Merieux",45.733223,4.825482,0,0,DGL:SA:S11114,Europe/Paris,2,DGL, +DGL:SP:2357,1,"Place Bertone",45.777788,4.834831,0,0,DGL:SA:S11117,Europe/Paris,2,DGL, +DGL:SP:2358,1,"Place Croix-Luizet",45.780114,4.88278,0,0,DGL:SA:S11118,Europe/Paris,2,DGL, +DGL:SP:2359,1,"Place Croix-Luizet",45.779936,4.88227,0,0,DGL:SA:S11118,Europe/Paris,2,DGL, +DGL:SP:236,1,"Bourdarias",45.723952,4.883639,0,0,DGL:SA:S10112,Europe/Paris,2,DGL, +DGL:SP:2364,1,"Croix-Rousse",45.774467,4.83274,0,0,DGL:SA:S5223,Europe/Paris,2,DGL, +DGL:SP:2367,1,"Croix-Rousse",45.774828,4.832422,0,0,DGL:SA:S5223,Europe/Paris,2,DGL, +DGL:SP:2369,1,"Croix-Rousse",45.774629,4.832933,0,0,DGL:SA:S5223,Europe/Paris,0,DGL, +DGL:SP:237,1,"Bourget",45.78271,4.810508,0,0,DGL:SA:S10113,Europe/Paris,2,DGL, +DGL:SP:2378,1,"Place des Buers",45.779369,4.891789,0,0,DGL:SA:S11124,Europe/Paris,2,DGL, +DGL:SP:2379,1,"Place des Buers",45.779667,4.891751,0,0,DGL:SA:S11124,Europe/Paris,2,DGL, +DGL:SP:238,1,"Bourget",45.783566,4.811666,0,0,DGL:SA:S10113,Europe/Paris,2,DGL, +DGL:SP:2384,1,"Place Flammarion",45.779314,4.820415,0,0,DGL:SA:S11127,Europe/Paris,0,DGL, +DGL:SP:2385,1,"Place Flammarion",45.779589,4.821006,0,0,DGL:SA:S11127,Europe/Paris,0,DGL, +DGL:SP:2388,1,"Place Flammarion",45.779978,4.820484,0,0,DGL:SA:S11127,Europe/Paris,0,DGL, +DGL:SP:239,1,"Bournes",45.77704,4.820647,0,0,DGL:SA:S10114,Europe/Paris,2,DGL, +DGL:SP:2396,1,"Place Henri",45.748244,4.879801,0,0,DGL:SA:S11131,Europe/Paris,0,DGL, +DGL:SP:2397,1,"Place Henri",45.748453,4.879322,0,0,DGL:SA:S11131,Europe/Paris,0,DGL, +DGL:SP:24,1,"Agronomie",45.774817,4.785773,0,0,DGL:SA:S10011,Europe/Paris,2,DGL, +DGL:SP:240,1,"Bournes",45.776966,4.820733,0,0,DGL:SA:S10114,Europe/Paris,2,DGL, +DGL:SP:2402,1,"Place Stalingrad",45.749491,4.852009,0,0,DGL:SA:S11133,Europe/Paris,2,DGL, +DGL:SP:2403,1,"Place Wilson",45.774465,4.868652,0,0,DGL:SA:S11134,Europe/Paris,2,DGL, +DGL:SP:2404,1,"Place Wilson",45.774312,4.868259,0,0,DGL:SA:S11134,Europe/Paris,2,DGL, +DGL:SP:2406,1,"Plambeau",45.853455,4.758614,0,0,DGL:SA:S11136,Europe/Paris,2,DGL, +DGL:SP:2407,1,"Plambeau",45.853421,4.758522,0,0,DGL:SA:S11136,Europe/Paris,2,DGL, +DGL:SP:2408,1,"Plan du Loup (Les Razes)",45.735243,4.78606,0,0,DGL:SA:S11137,Europe/Paris,2,DGL, +DGL:SP:2409,1,"Plan du Loup (Les Razes)",45.735339,4.786167,0,0,DGL:SA:S11137,Europe/Paris,2,DGL, +DGL:SP:241,1,"Boutarey",45.826688,4.87796,0,0,DGL:SA:S10115,Europe/Paris,2,DGL, +DGL:SP:2410,1,"Point du Jour",45.756378,4.797532,0,0,DGL:SA:S11138,Europe/Paris,2,DGL, +DGL:SP:2411,1,"Point du Jour",45.756459,4.79796,0,0,DGL:SA:S11138,Europe/Paris,2,DGL, +DGL:SP:2412,1,"Poleymieux Eglise",45.857703,4.80255,0,0,DGL:SA:S11139,Europe/Paris,2,DGL, +DGL:SP:2414,1,"Poleymieux La Tour",45.861386,4.79876,0,0,DGL:SA:S11140,Europe/Paris,2,DGL, +DGL:SP:2416,1,"Poleymieux Mairie",45.856612,4.799744,0,0,DGL:SA:S11141,Europe/Paris,0,DGL, +DGL:SP:242,1,"Boutarey",45.826556,4.877838,0,0,DGL:SA:S10115,Europe/Paris,0,DGL, +DGL:SP:2421,1,"Polyclinique de Rillieux",45.822484,4.887498,0,0,DGL:SA:S11144,Europe/Paris,2,DGL, +DGL:SP:2422,1,"Polyclinique de Rillieux",45.822321,4.887156,0,0,DGL:SA:S11144,Europe/Paris,2,DGL, +DGL:SP:2425,1,"Poncettes",45.753098,4.80429,0,0,DGL:SA:S11146,Europe/Paris,2,DGL, +DGL:SP:2426,1,"Poncettes",45.753792,4.80544,0,0,DGL:SA:S11146,Europe/Paris,2,DGL, +DGL:SP:2427,1,"Porte de Lyon",45.821662,4.762863,0,0,DGL:SA:S11147,Europe/Paris,2,DGL, +DGL:SP:243,1,"Boyer",45.758877,4.784952,0,0,DGL:SA:S10116,Europe/Paris,2,DGL, +DGL:SP:2430,1,"Professeur Guerin",45.764678,4.806533,0,0,DGL:SA:S11149,Europe/Paris,0,DGL, +DGL:SP:2431,1,"Professeur Guerin",45.764298,4.806619,0,0,DGL:SA:S11149,Europe/Paris,0,DGL, +DGL:SP:2437,1,"Pre Gaudry - Yves Farge",45.741898,4.832906,0,0,DGL:SA:S11152,Europe/Paris,2,DGL, +DGL:SP:2438,1,"Pre Gaudry - Yves Farge",45.742087,4.833313,0,0,DGL:SA:S11152,Europe/Paris,2,DGL, +DGL:SP:244,1,"Brindas Centre",45.719904,4.693642,0,0,DGL:SA:S10117,Europe/Paris,2,DGL, +DGL:SP:2441,1,"Professeur Roux",45.720864,4.858951,0,0,DGL:SA:S11154,Europe/Paris,2,DGL, +DGL:SP:2445,1,"Proudhon",45.760258,4.955486,0,0,DGL:SA:S11156,Europe/Paris,0,DGL, +DGL:SP:2446,1,"Proudhon",45.760536,4.955551,0,0,DGL:SA:S11156,Europe/Paris,0,DGL, +DGL:SP:2447,1,"Pont Blanc",45.719823,4.799316,0,0,DGL:SA:S11157,Europe/Paris,2,DGL, +DGL:SP:2448,1,"Pont Blanc",45.71979,4.799546,0,0,DGL:SA:S11157,Europe/Paris,2,DGL, +DGL:SP:2450,1,"Pont Bonaparte",45.759756,4.83009,0,0,DGL:SA:S11158,Europe/Paris,0,DGL, +DGL:SP:2462,1,"Pont d'Oullins",45.718155,4.810036,0,0,DGL:SA:S11162,Europe/Paris,2,DGL, +DGL:SP:2465,1,"Pont d'Oullins",45.718167,4.809895,0,0,DGL:SA:S11162,Europe/Paris,2,DGL, +DGL:SP:2467,1,"Pont de Bourgoin",45.716226,4.854665,0,0,DGL:SA:S11164,Europe/Paris,2,DGL, +DGL:SP:2470,1,"Pont de Collonges RG",45.812832,4.847635,0,0,DGL:SA:S11166,Europe/Paris,0,DGL, +DGL:SP:2471,1,"Pont de Collonges RG",45.813376,4.848291,0,0,DGL:SA:S11166,Europe/Paris,2,DGL, +DGL:SP:2477,1,"Pont de Fontaines",45.832139,4.849329,0,0,DGL:SA:S11169,Europe/Paris,2,DGL, +DGL:SP:2478,1,"Pont de Fontaines",45.83217,4.849137,0,0,DGL:SA:S11169,Europe/Paris,2,DGL, +DGL:SP:2479,1,"Pont de l'Universite",45.753631,4.833888,0,0,DGL:SA:S11170,Europe/Paris,2,DGL, +DGL:SP:2480,1,"Pont de l'Universite",45.754194,4.833669,0,0,DGL:SA:S11170,Europe/Paris,0,DGL, +DGL:SP:2482,1,"Pont de la Graviere",45.728317,4.780058,0,0,DGL:SA:S11171,Europe/Paris,0,DGL, +DGL:SP:2483,1,"Pont de la Graviere",45.728332,4.779751,0,0,DGL:SA:S11171,Europe/Paris,0,DGL, +DGL:SP:2486,1,"Pont Guillotiere RD",45.759543,4.837629,0,0,DGL:SA:S11172,Europe/Paris,2,DGL, +DGL:SP:2487,1,"Pont de La Mulatiere",45.730375,4.815109,0,0,DGL:SA:S11173,Europe/Paris,2,DGL, +DGL:SP:2488,1,"Pont de La Mulatiere",45.72999,4.815824,0,0,DGL:SA:S11173,Europe/Paris,0,DGL, +DGL:SP:2490,1,"Pont de La Mulatiere",45.729643,4.815217,0,0,DGL:SA:S11173,Europe/Paris,0,DGL, +DGL:SP:2491,1,"Pont de La Mulatiere",45.729877,4.815202,0,0,DGL:SA:S11173,Europe/Paris,2,DGL, +DGL:SP:2492,1,"Pont de la Sucrerie",45.772877,4.933447,0,0,DGL:SA:S11174,Europe/Paris,0,DGL, +DGL:SP:2493,1,"Pont de la Sucrerie",45.772976,4.933465,0,0,DGL:SA:S11174,Europe/Paris,0,DGL, +DGL:SP:2494,1,"Pont De Lattre RD",45.775363,4.839454,0,0,DGL:SA:S11175,Europe/Paris,2,DGL, +DGL:SP:2495,1,"Pont De Lattre RD",45.772492,4.838205,0,0,DGL:SA:S11175,Europe/Paris,2,DGL, +DGL:SP:2496,1,"Pont De Lattre RD",45.772808,4.837659,0,0,DGL:SA:S11175,Europe/Paris,2,DGL, +DGL:SP:2499,1,"Pont des Planches",45.771271,4.908212,0,0,DGL:SA:S11178,Europe/Paris,2,DGL, +DGL:SP:25,1,"Agronomie",45.77469,4.785538,0,0,DGL:SA:S10011,Europe/Paris,2,DGL, +DGL:SP:250,1,"Bron De Lattre",45.734279,4.917435,0,0,DGL:SA:S10120,Europe/Paris,2,DGL, +DGL:SP:2500,1,"Pont des Planches",45.77129,4.907762,0,0,DGL:SA:S11178,Europe/Paris,2,DGL, +DGL:SP:2506,1,"Pont Gallieni RD",45.750846,4.832026,0,0,DGL:SA:S11180,Europe/Paris,2,DGL, +DGL:SP:2507,1,"Pont Gallieni RD",45.750452,4.831944,0,0,DGL:SA:S11180,Europe/Paris,2,DGL, +DGL:SP:2512,1,"Pont Kitchener RD",45.752289,4.822191,0,0,DGL:SA:S5088,Europe/Paris,0,DGL, +DGL:SP:2513,1,"Pont Kitchener RG",45.751383,4.823654,0,0,DGL:SA:S5088,Europe/Paris,0,DGL, +DGL:SP:2514,1,"Pont Kitchener RG",45.751029,4.82378,0,0,DGL:SA:S5088,Europe/Paris,2,DGL, +DGL:SP:2515,1,"Pont Kitchener RG",45.752215,4.824309,0,0,DGL:SA:S5088,Europe/Paris,0,DGL, +DGL:SP:2519,1,"Pont Koenig RD",45.770585,4.812136,0,0,DGL:SA:S5089,Europe/Paris,2,DGL, +DGL:SP:2520,1,"Pont Koenig RD",45.770005,4.812342,0,0,DGL:SA:S5089,Europe/Paris,2,DGL, +DGL:SP:2521,1,"Pont Koenig RD",45.769792,4.812589,0,0,DGL:SA:S5089,Europe/Paris,2,DGL, +DGL:SP:2526,1,"Pont Koenig RG",45.769351,4.814615,0,0,DGL:SA:S5089,Europe/Paris,0,DGL, +DGL:SP:2531,1,"Pont Mouton",45.773307,4.809956,0,0,DGL:SA:S11189,Europe/Paris,2,DGL, +DGL:SP:2537,1,"Pont Mouton",45.773729,4.809577,0,0,DGL:SA:S11189,Europe/Paris,2,DGL, +DGL:SP:2540,1,"Musee des Confluences",45.734782,4.818495,0,0,DGL:SA:S5908,Europe/Paris,2,DGL, +DGL:SP:2541,1,"Musee des Confluences",45.734422,4.818916,0,0,DGL:SA:S5908,Europe/Paris,2,DGL, +DGL:SP:2542,1,"Musee des Confluences",45.733589,4.817516,0,0,DGL:SA:S5908,Europe/Paris,2,DGL, +DGL:SP:2543,1,"Musee des Confluences",45.733175,4.817896,0,0,DGL:SA:S5908,Europe/Paris,2,DGL, +DGL:SP:2544,1,"Musee des Confluences",45.735209,4.81791,0,0,DGL:SA:S5908,Europe/Paris,0,DGL, +DGL:SP:2547,1,"Pont Rouge",45.723541,4.783612,0,0,DGL:SA:S11191,Europe/Paris,0,DGL, +DGL:SP:2548,1,"Pont Rouge",45.723662,4.783437,0,0,DGL:SA:S11191,Europe/Paris,0,DGL, +DGL:SP:2549,1,"Pont Wilson RD",45.761095,4.837879,0,0,DGL:SA:S5090,Europe/Paris,2,DGL, +DGL:SP:255,1,"Bron Jules Mas",45.735729,4.911127,0,0,DGL:SA:S10122,Europe/Paris,2,DGL, +DGL:SP:2551,1,"Pyrenees",45.721223,4.8542,0,0,DGL:SA:S11193,Europe/Paris,0,DGL, +DGL:SP:2552,1,"Pyrenees",45.721753,4.854263,0,0,DGL:SA:S11193,Europe/Paris,2,DGL, +DGL:SP:2555,1,"Quai Gillet",45.771785,4.813669,0,0,DGL:SA:S11195,Europe/Paris,2,DGL, +DGL:SP:2558,1,"Quarantaine",45.754067,4.823608,0,0,DGL:SA:S11197,Europe/Paris,2,DGL, +DGL:SP:2559,1,"Quatre Chemins",45.740463,4.690812,0,0,DGL:SA:S11198,Europe/Paris,2,DGL, +DGL:SP:256,1,"Boutasse - C. Rousset",45.734555,4.904195,0,0,DGL:SA:S5313,Europe/Paris,2,DGL, +DGL:SP:2564,1,"Rancy",45.755096,4.852934,0,0,DGL:SA:S11201,Europe/Paris,2,DGL, +DGL:SP:2565,1,"Rancy",45.756282,4.851432,0,0,DGL:SA:S11201,Europe/Paris,2,DGL, +DGL:SP:2566,1,"Raspail",45.755233,4.83958,0,0,DGL:SA:S11202,Europe/Paris,2,DGL, +DGL:SP:2572,1,"Rond Point de Vancia",45.83191,4.909183,0,0,DGL:SA:S11205,Europe/Paris,2,DGL, +DGL:SP:2573,1,"Rond Point de Vancia",45.831545,4.908625,0,0,DGL:SA:S11205,Europe/Paris,2,DGL, +DGL:SP:2579,1,"Republique - Reaux",45.730197,5.006858,0,0,DGL:SA:S11208,Europe/Paris,0,DGL, +DGL:SP:2580,1,"Republique - Reaux",45.730118,5.007548,0,0,DGL:SA:S11208,Europe/Paris,0,DGL, +DGL:SP:2583,1,"Reims",45.73888,4.91031,0,0,DGL:SA:S11210,Europe/Paris,2,DGL, +DGL:SP:2584,1,"Reims",45.739585,4.911372,0,0,DGL:SA:S11210,Europe/Paris,2,DGL, +DGL:SP:2594,1,"Residence",45.779358,4.77026,0,0,DGL:SA:S11216,Europe/Paris,2,DGL, +DGL:SP:2595,1,"Residence",45.779019,4.770767,0,0,DGL:SA:S11216,Europe/Paris,2,DGL, +DGL:SP:2597,1,"Residence Bertrand",45.784287,4.822659,0,0,DGL:SA:S11217,Europe/Paris,2,DGL, +DGL:SP:2598,1,"Residence Le Parc",45.775905,4.817457,0,0,DGL:SA:S11218,Europe/Paris,2,DGL, +DGL:SP:2599,1,"Revaison",45.701391,4.918052,0,0,DGL:SA:S11219,Europe/Paris,2,DGL, +DGL:SP:2600,1,"Revaison",45.702072,4.917017,0,0,DGL:SA:S11219,Europe/Paris,2,DGL, +DGL:SP:2601,1,"Rillieux Industrie",45.8207,4.877258,0,0,DGL:SA:S11220,Europe/Paris,2,DGL, +DGL:SP:2602,1,"Rillieux Industrie",45.820393,4.877295,0,0,DGL:SA:S11220,Europe/Paris,2,DGL, +DGL:SP:2603,1,"Rillieux Les Manges",45.811645,4.887574,0,0,DGL:SA:S11221,Europe/Paris,2,DGL, +DGL:SP:2604,1,"Rillieux Les Manges",45.811816,4.88717,0,0,DGL:SA:S11221,Europe/Paris,2,DGL, +DGL:SP:2607,1,"Rillieux Piscine",45.816081,4.887652,0,0,DGL:SA:S11223,Europe/Paris,0,DGL, +DGL:SP:2608,1,"Rillieux Piscine",45.816152,4.887694,0,0,DGL:SA:S11223,Europe/Paris,2,DGL, +DGL:SP:2609,1,"Rillieux Salignat",45.821139,4.896397,0,0,DGL:SA:S11224,Europe/Paris,2,DGL, +DGL:SP:2610,1,"Rillieux Salignat",45.821049,4.896405,0,0,DGL:SA:S11224,Europe/Paris,2,DGL, +DGL:SP:2613,1,"Centre Culturel",45.778164,4.778864,0,0,DGL:SA:S11226,Europe/Paris,0,DGL, +DGL:SP:2614,1,"Centre Culturel",45.778988,4.779017,0,0,DGL:SA:S11226,Europe/Paris,2,DGL, +DGL:SP:2615,1,"Robespierre",45.700699,4.94835,0,0,DGL:SA:S11227,Europe/Paris,0,DGL, +DGL:SP:2616,1,"Robespierre",45.700665,4.948258,0,0,DGL:SA:S11227,Europe/Paris,0,DGL, +DGL:SP:2617,1,"Rochecardon",45.787592,4.808682,0,0,DGL:SA:S11228,Europe/Paris,2,DGL, +DGL:SP:2618,1,"Rochecardon",45.787336,4.80849,0,0,DGL:SA:S11228,Europe/Paris,2,DGL, +DGL:SP:2619,1,"Rochetaillee",45.842809,4.835019,0,0,DGL:SA:S11229,Europe/Paris,2,DGL, +DGL:SP:2620,1,"Rochetaillee",45.842218,4.834902,0,0,DGL:SA:S11229,Europe/Paris,2,DGL, +DGL:SP:2633,1,"Rouget de l'Isle",45.754709,4.866148,0,0,DGL:SA:S11235,Europe/Paris,0,DGL, +DGL:SP:2636,1,"Rouget de l'Isle",45.754577,4.867222,0,0,DGL:SA:S11235,Europe/Paris,2,DGL, +DGL:SP:2637,1,"Rouget de l'Isle",45.754481,4.86588,0,0,DGL:SA:S11235,Europe/Paris,2,DGL, +DGL:SP:2638,1,"Route de Corbas",45.690192,4.890979,0,0,DGL:SA:S11236,Europe/Paris,2,DGL, +DGL:SP:2639,1,"Route de Corbas",45.690908,4.890768,0,0,DGL:SA:S11236,Europe/Paris,2,DGL, +DGL:SP:2640,1,"Route de Mions",45.684651,4.947499,0,0,DGL:SA:S11237,Europe/Paris,0,DGL, +DGL:SP:2643,1,"Route de Mions",45.684393,4.947743,0,0,DGL:SA:S11237,Europe/Paris,0,DGL, +DGL:SP:2646,1,"Rouville",45.769499,4.825014,0,0,DGL:SA:S11239,Europe/Paris,2,DGL, +DGL:SP:2647,1,"Rouville",45.769525,4.823883,0,0,DGL:SA:S11239,Europe/Paris,2,DGL, +DGL:SP:2649,1,"Rue d'Ypres",45.781847,4.812913,0,0,DGL:SA:S11241,Europe/Paris,2,DGL, +DGL:SP:2650,1,"Rue d'Ypres",45.781296,4.812411,0,0,DGL:SA:S11241,Europe/Paris,0,DGL, +DGL:SP:2652,1,"Challemel Lacour",45.730218,4.837183,0,0,DGL:SA:S11242,Europe/Paris,0,DGL, +DGL:SP:2653,1,"Challemel Lacour",45.730223,4.837736,0,0,DGL:SA:S11242,Europe/Paris,2,DGL, +DGL:SP:2654,1,"Rue de l'Aviation",45.663948,4.908929,0,0,DGL:SA:S11243,Europe/Paris,2,DGL, +DGL:SP:2655,1,"Rue de l'Aviation",45.664022,4.908855,0,0,DGL:SA:S11243,Europe/Paris,2,DGL, +DGL:SP:2659,1,"Rue du Sablon",45.719086,4.859191,0,0,DGL:SA:S11246,Europe/Paris,2,DGL, +DGL:SP:266,1,"Bron Terraillon",45.747159,4.923748,0,0,DGL:SA:S10127,Europe/Paris,2,DGL, +DGL:SP:2660,1,"Rue du Sablon",45.719334,4.856568,0,0,DGL:SA:S11246,Europe/Paris,2,DGL, +DGL:SP:2663,1,"Sablons",45.773523,4.962974,0,0,DGL:SA:S11248,Europe/Paris,2,DGL, +DGL:SP:2664,1,"Sablons",45.774086,4.963541,0,0,DGL:SA:S11248,Europe/Paris,0,DGL, +DGL:SP:2666,1,"Sala",45.756707,4.826724,0,0,DGL:SA:S11250,Europe/Paris,0,DGL, +DGL:SP:2668,1,"Salle Polyvalente (D)",45.728873,5.012192,0,0,DGL:SA:S11251,Europe/Paris,0,DGL, +DGL:SP:2669,1,"Salle Polyvalente (D)",45.728976,5.012017,0,0,DGL:SA:S11251,Europe/Paris,0,DGL, +DGL:SP:267,1,"Bron Terraillon",45.747001,4.923959,0,0,DGL:SA:S10127,Europe/Paris,2,DGL, +DGL:SP:268,1,"Brossolette - Genas",45.747887,4.917533,0,0,DGL:SA:S10128,Europe/Paris,2,DGL, +DGL:SP:2681,1,"Sarrazin - Pressense",45.728895,4.860887,0,0,DGL:SA:S11256,Europe/Paris,0,DGL, +DGL:SP:2682,1,"Sathonay Drapeau",45.821278,4.87211,0,0,DGL:SA:S11257,Europe/Paris,2,DGL, +DGL:SP:2683,1,"Sathonay Drapeau",45.82125,4.872031,0,0,DGL:SA:S11257,Europe/Paris,2,DGL, +DGL:SP:2684,1,"Sathonay Gare",45.820625,4.8754,0,0,DGL:SA:S11258,Europe/Paris,2,DGL, +DGL:SP:2686,1,"Sathonay Mairie",45.824014,4.874424,0,0,DGL:SA:S11259,Europe/Paris,2,DGL, +DGL:SP:2688,1,"Sathonay Manutention",45.827644,4.872956,0,0,DGL:SA:S11260,Europe/Paris,2,DGL, +DGL:SP:2689,1,"Sathonay Mutualite",45.820236,4.871108,0,0,DGL:SA:S11261,Europe/Paris,2,DGL, +DGL:SP:2690,1,"Sathonay Mutualite",45.819999,4.870441,0,0,DGL:SA:S11261,Europe/Paris,2,DGL, +DGL:SP:2694,1,"Sathonay Republique",45.826207,4.874165,0,0,DGL:SA:S11263,Europe/Paris,2,DGL, +DGL:SP:2695,1,"Sathonay Republique",45.826004,4.873975,0,0,DGL:SA:S11263,Europe/Paris,2,DGL, +DGL:SP:2698,1,"Saxe - Bonnel",45.761608,4.845927,0,0,DGL:SA:S11265,Europe/Paris,2,DGL, +DGL:SP:270,1,"Brossolette - Genas",45.748432,4.918472,0,0,DGL:SA:S10128,Europe/Paris,2,DGL, +DGL:SP:2700,1,"Saxe - Gambetta",45.754465,4.846952,0,0,DGL:SA:S5092,Europe/Paris,2,DGL, +DGL:SP:2701,1,"Saxe - Gambetta",45.753762,4.847395,0,0,DGL:SA:S5092,Europe/Paris,2,DGL, +DGL:SP:2702,1,"Saxe - Gambetta",45.754228,4.846285,0,0,DGL:SA:S5092,Europe/Paris,2,DGL, +DGL:SP:2705,1,"Saxe - Lafayette",45.763167,4.845047,0,0,DGL:SA:S11267,Europe/Paris,2,DGL, +DGL:SP:2707,1,"Saxe - Lafayette",45.763916,4.844978,0,0,DGL:SA:S11267,Europe/Paris,2,DGL, +DGL:SP:2708,1,"Saxe - Lafayette",45.763572,4.845438,0,0,DGL:SA:S11267,Europe/Paris,2,DGL, +DGL:SP:2709,1,"Saxe - Paul Bert",45.756738,4.846335,0,0,DGL:SA:S11268,Europe/Paris,2,DGL, +DGL:SP:2710,1,"Saxe - Paul Bert",45.756646,4.846447,0,0,DGL:SA:S11268,Europe/Paris,2,DGL, +DGL:SP:2711,1,"Sept Chemins",45.744684,4.933081,0,0,DGL:SA:S11269,Europe/Paris,2,DGL, +DGL:SP:2712,1,"Sept Chemins",45.744536,4.932855,0,0,DGL:SA:S11269,Europe/Paris,2,DGL, +DGL:SP:2715,1,"Sergent Berthet",45.772068,4.804897,0,0,DGL:SA:S11270,Europe/Paris,0,DGL, +DGL:SP:2718,1,"Serin - Saint Charles",45.774061,4.812486,0,0,DGL:SA:S11271,Europe/Paris,2,DGL, +DGL:SP:2719,1,"Serin - Saint Charles",45.774161,4.813249,0,0,DGL:SA:S11271,Europe/Paris,2,DGL, +DGL:SP:2720,1,"Serin - Saint Charles",45.7745,4.813007,0,0,DGL:SA:S11271,Europe/Paris,2,DGL, +DGL:SP:2724,1,"Severine",45.754291,4.913436,0,0,DGL:SA:S11273,Europe/Paris,2,DGL, +DGL:SP:2725,1,"Severine",45.7539,4.912813,0,0,DGL:SA:S11273,Europe/Paris,2,DGL, +DGL:SP:2726,1,"Sidoine Apollinaire",45.761167,4.804112,0,0,DGL:SA:S11274,Europe/Paris,0,DGL, +DGL:SP:2727,1,"Sidoine Apollinaire",45.761401,4.803698,0,0,DGL:SA:S11274,Europe/Paris,0,DGL, +DGL:SP:2728,1,"Simon Buisson",45.790611,4.791306,0,0,DGL:SA:S11275,Europe/Paris,2,DGL, +DGL:SP:2729,1,"Simon Buisson",45.790454,4.791466,0,0,DGL:SA:S11275,Europe/Paris,2,DGL, +DGL:SP:2732,1,"Soeur Vially",45.787718,4.842834,0,0,DGL:SA:S11277,Europe/Paris,2,DGL, +DGL:SP:2733,1,"Soeur Vially",45.787348,4.842084,0,0,DGL:SA:S11277,Europe/Paris,2,DGL, +DGL:SP:2734,1,"Solaize Mairie",45.639415,4.841477,0,0,DGL:SA:S11278,Europe/Paris,2,DGL, +DGL:SP:2738,1,"Sous Genas",45.734824,4.986348,0,0,DGL:SA:S11280,Europe/Paris,2,DGL, +DGL:SP:2739,1,"Sous Genas",45.734827,4.985859,0,0,DGL:SA:S11280,Europe/Paris,2,DGL, +DGL:SP:2740,1,"Sous le Fort",45.67044,4.860944,0,0,DGL:SA:S11281,Europe/Paris,0,DGL, +DGL:SP:2742,1,"Decines Centre",45.770493,4.956655,0,0,DGL:SA:S5565,Europe/Paris,2,DGL, +DGL:SP:2743,1,"Decines Centre",45.770537,4.956683,0,0,DGL:SA:S5565,Europe/Paris,2,DGL, +DGL:SP:2744,1,"Square des Monts d'Or",45.874201,4.827118,0,0,DGL:SA:S11284,Europe/Paris,0,DGL, +DGL:SP:2745,1,"Square des Monts d'Or",45.874143,4.826896,0,0,DGL:SA:S11284,Europe/Paris,2,DGL, +DGL:SP:2753,1,"Square Meunier",45.666995,4.903602,0,0,DGL:SA:S11287,Europe/Paris,0,DGL, +DGL:SP:2754,1,"Square Meunier",45.667058,4.903605,0,0,DGL:SA:S11287,Europe/Paris,0,DGL, +DGL:SP:2756,1,"St Abdon",45.661,4.793594,0,0,DGL:SA:S11288,Europe/Paris,2,DGL, +DGL:SP:2759,1,"St Alexandre",45.75647,4.815076,0,0,DGL:SA:S11290,Europe/Paris,2,DGL, +DGL:SP:276,1,"Brotteaux",45.766864,4.859209,0,0,DGL:SA:S5004,Europe/Paris,2,DGL, +DGL:SP:2760,1,"St Alexandre",45.75685,4.814566,0,0,DGL:SA:S11290,Europe/Paris,2,DGL, +DGL:SP:2767,1,"St Clair - Square Brosset",45.791861,4.860832,0,0,DGL:SA:S11293,Europe/Paris,2,DGL, +DGL:SP:2768,1,"St Clair - Square Brosset",45.790585,4.860323,0,0,DGL:SA:S11293,Europe/Paris,2,DGL, +DGL:SP:2771,1,"St Cyr",45.814451,4.818927,0,0,DGL:SA:S11294,Europe/Paris,0,DGL, +DGL:SP:2772,1,"St Cyr",45.814564,4.819112,0,0,DGL:SA:S11294,Europe/Paris,0,DGL, +DGL:SP:2775,1,"St Didier Ecoles",45.812165,4.798061,0,0,DGL:SA:S11296,Europe/Paris,0,DGL, +DGL:SP:2776,1,"St Didier Ecoles",45.812038,4.798081,0,0,DGL:SA:S11296,Europe/Paris,0,DGL, +DGL:SP:2777,1,"St Didier Eglise",45.809619,4.798397,0,0,DGL:SA:S11297,Europe/Paris,2,DGL, +DGL:SP:2778,1,"St Didier Eglise",45.810449,4.798332,0,0,DGL:SA:S11297,Europe/Paris,2,DGL, +DGL:SP:2779,1,"St Fons 4 Chemins",45.708208,4.856162,0,0,DGL:SA:S11298,Europe/Paris,2,DGL, +DGL:SP:2782,1,"St Fons Albert Thomas",45.708005,4.859223,0,0,DGL:SA:S11299,Europe/Paris,2,DGL, +DGL:SP:2783,1,"St Fons Albert Thomas",45.708097,4.858302,0,0,DGL:SA:S11299,Europe/Paris,2,DGL, +DGL:SP:2785,1,"St Fons Albert Thomas",45.707687,4.858939,0,0,DGL:SA:S11299,Europe/Paris,2,DGL, +DGL:SP:2786,1,"St Fons Parmentier",45.705519,4.860869,0,0,DGL:SA:S11300,Europe/Paris,2,DGL, +DGL:SP:2787,1,"St Fons Parmentier",45.705563,4.860524,0,0,DGL:SA:S11300,Europe/Paris,2,DGL, +DGL:SP:2788,1,"St Fortunat",45.825751,4.794614,0,0,DGL:SA:S11301,Europe/Paris,0,DGL, +DGL:SP:2789,1,"St Genis 2",45.682111,4.793406,0,0,DGL:SA:S11302,Europe/Paris,2,DGL, +DGL:SP:2790,1,"St Genis 2",45.68201,4.79308,0,0,DGL:SA:S11302,Europe/Paris,2,DGL, +DGL:SP:2793,1,"St Genis Barolles",45.679203,4.781899,0,0,DGL:SA:S11303,Europe/Paris,2,DGL, +DGL:SP:2794,1,"St Genis Bellevue",45.693003,4.802381,0,0,DGL:SA:S11304,Europe/Paris,2,DGL, +DGL:SP:2795,1,"St Genis Bellevue",45.692901,4.802968,0,0,DGL:SA:S11304,Europe/Paris,2,DGL, +DGL:SP:2796,1,"St Genis Centre",45.694845,4.793126,0,0,DGL:SA:S11305,Europe/Paris,0,DGL, +DGL:SP:2799,1,"St Genis Collonges",45.692771,4.805595,0,0,DGL:SA:S11306,Europe/Paris,2,DGL, +DGL:SP:2802,1,"St Genis Les Ollieres",45.758211,4.722209,0,0,DGL:SA:S11307,Europe/Paris,2,DGL, +DGL:SP:2803,1,"St Genis Les Ollieres",45.758434,4.722746,0,0,DGL:SA:S11307,Europe/Paris,2,DGL, +DGL:SP:2806,1,"St Genis Mairie",45.698446,4.794751,0,0,DGL:SA:S11309,Europe/Paris,2,DGL, +DGL:SP:2807,1,"St Genis Mairie",45.698748,4.794906,0,0,DGL:SA:S11309,Europe/Paris,2,DGL, +DGL:SP:2808,1,"St Georges",45.757574,4.82576,0,0,DGL:SA:S11310,Europe/Paris,2,DGL, +DGL:SP:281,1,"Brotteaux",45.766668,4.859135,0,0,DGL:SA:S5004,Europe/Paris,2,DGL, +DGL:SP:2812,1,"St Germain Gare",45.888062,4.804275,0,0,DGL:SA:S11313,Europe/Paris,2,DGL, +DGL:SP:2813,1,"St Germain Gare",45.888136,4.804201,0,0,DGL:SA:S11313,Europe/Paris,2,DGL, +DGL:SP:2814,1,"St Germain Mairie",45.883446,4.802987,0,0,DGL:SA:S11314,Europe/Paris,2,DGL, +DGL:SP:2823,1,"Parc d'activites T.Garnier",45.729383,4.845538,0,0,DGL:SA:S11317,Europe/Paris,0,DGL, +DGL:SP:2824,1,"Parc d'activites T.Garnier",45.729458,4.84621,0,0,DGL:SA:S11317,Europe/Paris,2,DGL, +DGL:SP:2826,1,"St Just",45.757791,4.815135,0,0,DGL:SA:S5093,Europe/Paris,0,DGL, +DGL:SP:2827,1,"St Just",45.757483,4.815649,0,0,DGL:SA:S5093,Europe/Paris,0,DGL, +DGL:SP:2828,1,"St Just",45.757604,4.815487,0,0,DGL:SA:S5093,Europe/Paris,0,DGL, +DGL:SP:2835,1,"St Leonard",45.852258,4.833517,0,0,DGL:SA:S11320,Europe/Paris,2,DGL, +DGL:SP:2836,1,"St Leonard",45.852017,4.83339,0,0,DGL:SA:S11320,Europe/Paris,2,DGL, +DGL:SP:2838,1,"St Martin",45.704863,4.950063,0,0,DGL:SA:S11322,Europe/Paris,0,DGL, +DGL:SP:2842,1,"St Paul",45.766646,4.828254,0,0,DGL:SA:S11325,Europe/Paris,2,DGL, +DGL:SP:285,1,"Bruyeres",45.762956,4.941274,0,0,DGL:SA:S10132,Europe/Paris,2,DGL, +DGL:SP:2853,1,"St Pierre de Vaise",45.773019,4.807062,0,0,DGL:SA:S11329,Europe/Paris,2,DGL, +DGL:SP:2854,1,"St Pierre de Vaise",45.773241,4.808037,0,0,DGL:SA:S11329,Europe/Paris,2,DGL, +DGL:SP:2857,1,"St Priest Beausejour",45.705305,4.94614,0,0,DGL:SA:S11331,Europe/Paris,2,DGL, +DGL:SP:286,1,"Bruyeres",45.762923,4.941543,0,0,DGL:SA:S10132,Europe/Paris,2,DGL, +DGL:SP:2865,1,"St Priest Gare",45.688037,4.935047,0,0,DGL:SA:S11335,Europe/Paris,2,DGL, +DGL:SP:2868,1,"St Priest Hotel de Ville",45.695263,4.935491,0,0,DGL:SA:S5480,Europe/Paris,2,DGL, +DGL:SP:2869,1,"St Priest Hotel de Ville",45.694846,4.93488,0,0,DGL:SA:S5480,Europe/Paris,2,DGL, +DGL:SP:287,1,"Buers - Pressense",45.770102,4.896336,0,0,DGL:SA:S10133,Europe/Paris,2,DGL, +DGL:SP:2878,1,"St Priest Les Roses",45.68668,4.939581,0,0,DGL:SA:S11342,Europe/Paris,0,DGL, +DGL:SP:2879,1,"St Priest Les Roses",45.686761,4.939598,0,0,DGL:SA:S11342,Europe/Paris,0,DGL, +DGL:SP:288,1,"Buers - Pressense",45.770128,4.896389,0,0,DGL:SA:S10133,Europe/Paris,2,DGL, +DGL:SP:2880,1,"St Priest Menival",45.695731,4.952931,0,0,DGL:SA:S11343,Europe/Paris,2,DGL, +DGL:SP:2881,1,"St Priest Menival",45.695679,4.953224,0,0,DGL:SA:S11343,Europe/Paris,2,DGL, +DGL:SP:2882,1,"St Priest Plaine de Saythe",45.68676,4.94697,0,0,DGL:SA:S11344,Europe/Paris,0,DGL, +DGL:SP:2883,1,"St Priest Plaine de Saythe",45.686937,4.947132,0,0,DGL:SA:S11344,Europe/Paris,0,DGL, +DGL:SP:2885,1,"St Rambert - ile Barbe",45.797632,4.829736,0,0,DGL:SA:S11345,Europe/Paris,2,DGL, +DGL:SP:2886,1,"St Rambert - ile Barbe",45.797393,4.829146,0,0,DGL:SA:S11345,Europe/Paris,2,DGL, +DGL:SP:289,1,"Buers - Salengro",45.782611,4.890151,0,0,DGL:SA:S10134,Europe/Paris,2,DGL, +DGL:SP:2890,1,"St Romain",45.840511,4.831077,0,0,DGL:SA:S11348,Europe/Paris,2,DGL, +DGL:SP:2891,1,"St Romain",45.840163,4.830958,0,0,DGL:SA:S11348,Europe/Paris,2,DGL, +DGL:SP:2893,1,"St Vincent",45.767939,4.828017,0,0,DGL:SA:S11349,Europe/Paris,0,DGL, +DGL:SP:2894,1,"Stade Boucaud",45.783206,4.807983,0,0,DGL:SA:S11350,Europe/Paris,2,DGL, +DGL:SP:2895,1,"Stade Boucaud",45.783073,4.808299,0,0,DGL:SA:S11350,Europe/Paris,2,DGL, +DGL:SP:2896,1,"Stade de Parilly",45.717229,4.891912,0,0,DGL:SA:S11351,Europe/Paris,2,DGL, +DGL:SP:2897,1,"Stade de Parilly",45.717293,4.891876,0,0,DGL:SA:S11351,Europe/Paris,2,DGL, +DGL:SP:2898,1,"Stade des Peupliers",45.778431,4.899348,0,0,DGL:SA:S11352,Europe/Paris,0,DGL, +DGL:SP:2899,1,"Stade des Peupliers",45.778739,4.8989,0,0,DGL:SA:S11352,Europe/Paris,0,DGL, +DGL:SP:29,1,"Alai - La Raude",45.753467,4.775042,0,0,DGL:SA:S10014,Europe/Paris,2,DGL, +DGL:SP:290,1,"Buers - Salengro",45.782631,4.889638,0,0,DGL:SA:S10134,Europe/Paris,2,DGL, +DGL:SP:2902,1,"Stade Henri Cochet",45.792682,4.838596,0,0,DGL:SA:S11354,Europe/Paris,2,DGL, +DGL:SP:2903,1,"Stade Henri Cochet",45.792903,4.838773,0,0,DGL:SA:S11354,Europe/Paris,2,DGL, +DGL:SP:2904,1,"Stade Jean Bouin",45.697972,4.924224,0,0,DGL:SA:S11355,Europe/Paris,2,DGL, +DGL:SP:2905,1,"Stade Jean Bouin",45.697971,4.92547,0,0,DGL:SA:S11355,Europe/Paris,0,DGL, +DGL:SP:2906,1,"Stade Laurent Gerin",45.696538,4.890978,0,0,DGL:SA:S11356,Europe/Paris,0,DGL, +DGL:SP:2907,1,"Stade Laurent Gerin",45.69661,4.891007,0,0,DGL:SA:S11356,Europe/Paris,0,DGL, +DGL:SP:291,1,"Bugeaud",45.767043,4.852837,0,0,DGL:SA:S10135,Europe/Paris,2,DGL, +DGL:SP:2915,1,"Ste Consorce",45.776445,4.689441,0,0,DGL:SA:S11360,Europe/Paris,2,DGL, +DGL:SP:2916,1,"Ste Eugenie",45.704355,4.797006,0,0,DGL:SA:S11361,Europe/Paris,2,DGL, +DGL:SP:2917,1,"Ste Eugenie",45.705111,4.797387,0,0,DGL:SA:S11361,Europe/Paris,2,DGL, +DGL:SP:2918,1,"Ste Foy Centre",45.734086,4.803554,0,0,DGL:SA:S11362,Europe/Paris,2,DGL, +DGL:SP:2919,1,"Ste Foy Centre",45.734075,4.803617,0,0,DGL:SA:S11362,Europe/Paris,2,DGL, +DGL:SP:2921,1,"Ste Foy Chatelain",45.735877,4.796179,0,0,DGL:SA:S5500,Europe/Paris,2,DGL, +DGL:SP:2922,1,"Ste Foy Chatelain",45.735824,4.796112,0,0,DGL:SA:S5500,Europe/Paris,2,DGL, +DGL:SP:2923,1,"Ste Foy Chatelain",45.736293,4.79567,0,0,DGL:SA:S5500,Europe/Paris,2,DGL, +DGL:SP:2924,1,"Ste Foy Chatelain",45.736326,4.7958,0,0,DGL:SA:S5500,Europe/Paris,2,DGL, +DGL:SP:2925,1,"Ste Foy Eglise",45.736941,4.805108,0,0,DGL:SA:S11364,Europe/Paris,2,DGL, +DGL:SP:2926,1,"Ste Foy Eglise",45.736877,4.805118,0,0,DGL:SA:S11364,Europe/Paris,2,DGL, +DGL:SP:2927,1,"Ste Foy Hopital",45.731647,4.794499,0,0,DGL:SA:S11365,Europe/Paris,2,DGL, +DGL:SP:2928,1,"Ste Foy Hopital",45.731235,4.794377,0,0,DGL:SA:S11365,Europe/Paris,2,DGL, +DGL:SP:2929,1,"Ste Genevieve",45.763705,4.865185,0,0,DGL:SA:S11366,Europe/Paris,2,DGL, +DGL:SP:2930,1,"Ste Genevieve",45.763754,4.865008,0,0,DGL:SA:S11366,Europe/Paris,2,DGL, +DGL:SP:2933,1,"Suchet",45.746532,4.824849,0,0,DGL:SA:S5517,Europe/Paris,2,DGL, +DGL:SP:2934,1,"Suchet",45.746831,4.82395,0,0,DGL:SA:S5517,Europe/Paris,2,DGL, +DGL:SP:2935,1,"Surville Route de Vienne",45.717998,4.854733,0,0,DGL:SA:S11369,Europe/Paris,2,DGL, +DGL:SP:2936,1,"Surville Route de Vienne",45.718653,4.854404,0,0,DGL:SA:S11369,Europe/Paris,2,DGL, +DGL:SP:2937,1,"Tabagnon",45.756842,4.743752,0,0,DGL:SA:S11370,Europe/Paris,0,DGL, +DGL:SP:2939,1,"Tabagnon",45.756799,4.743673,0,0,DGL:SA:S11370,Europe/Paris,0,DGL, +DGL:SP:2940,1,"Tache Velin",45.7156,4.871662,0,0,DGL:SA:S11371,Europe/Paris,0,DGL, +DGL:SP:2941,1,"Tache Velin",45.71611,4.871416,0,0,DGL:SA:S11371,Europe/Paris,0,DGL, +DGL:SP:2947,1,"Tassin Combattants",45.769446,4.757461,0,0,DGL:SA:S11374,Europe/Paris,0,DGL, +DGL:SP:2948,1,"Tassin Combattants",45.76913,4.758348,0,0,DGL:SA:S11374,Europe/Paris,0,DGL, +DGL:SP:2949,1,"Tassin Deperet",45.758078,4.760806,0,0,DGL:SA:S11375,Europe/Paris,2,DGL, +DGL:SP:295,1,"Mions Buzy",45.669351,4.95779,0,0,DGL:SA:S10138,Europe/Paris,2,DGL, +DGL:SP:2950,1,"Tassin Deperet",45.758173,4.761787,0,0,DGL:SA:S11375,Europe/Paris,2,DGL, +DGL:SP:2951,1,"Tassin Gare",45.760257,4.76076,0,0,DGL:SA:S11376,Europe/Paris,2,DGL, +DGL:SP:2952,1,"Tassin Gare",45.760357,4.760713,0,0,DGL:SA:S11376,Europe/Paris,2,DGL, +DGL:SP:2953,1,"Tassin Genetieres",45.758805,4.772102,0,0,DGL:SA:S11377,Europe/Paris,2,DGL, +DGL:SP:2954,1,"Tassin Genetieres",45.758743,4.772048,0,0,DGL:SA:S11377,Europe/Paris,2,DGL, +DGL:SP:2955,1,"Tassin Les Bruyeres",45.758041,4.751211,0,0,DGL:SA:S11378,Europe/Paris,2,DGL, +DGL:SP:2956,1,"Tassin Les Bruyeres",45.757953,4.75113,0,0,DGL:SA:S11378,Europe/Paris,2,DGL, +DGL:SP:2958,1,"Terraillon - Lessivas",45.743611,4.91948,0,0,DGL:SA:S11380,Europe/Paris,2,DGL, +DGL:SP:2959,1,"Terraillon - Lessivas",45.743404,4.919508,0,0,DGL:SA:S11380,Europe/Paris,2,DGL, +DGL:SP:296,1,"Mions Buzy",45.669274,4.95916,0,0,DGL:SA:S10138,Europe/Paris,0,DGL, +DGL:SP:2960,1,"Terrasse",45.747937,4.815437,0,0,DGL:SA:S11381,Europe/Paris,2,DGL, +DGL:SP:2961,1,"Terrasse",45.748095,4.815637,0,0,DGL:SA:S11381,Europe/Paris,2,DGL, +DGL:SP:2975,1,"Thibaudiere",45.750007,4.844652,0,0,DGL:SA:S11385,Europe/Paris,2,DGL, +DGL:SP:2978,1,"Thibaudiere",45.750884,4.845284,0,0,DGL:SA:S11385,Europe/Paris,2,DGL, +DGL:SP:2981,1,"Thiers - Lafayette",45.763676,4.862496,0,0,DGL:SA:S5302,Europe/Paris,2,DGL, +DGL:SP:2982,1,"Thiers - Lafayette",45.763751,4.862371,0,0,DGL:SA:S5302,Europe/Paris,2,DGL, +DGL:SP:2983,1,"Thioley",45.715861,4.887942,0,0,DGL:SA:S11387,Europe/Paris,0,DGL, +DGL:SP:2984,1,"Thioley",45.715823,4.888056,0,0,DGL:SA:S11387,Europe/Paris,0,DGL, +DGL:SP:2985,1,"Timbaud",45.691521,4.900609,0,0,DGL:SA:S11388,Europe/Paris,0,DGL, +DGL:SP:2987,1,"Tita Cois",45.771671,4.903703,0,0,DGL:SA:S11390,Europe/Paris,2,DGL, +DGL:SP:2988,1,"Tita Cois",45.771169,4.904773,0,0,DGL:SA:S11390,Europe/Paris,2,DGL, +DGL:SP:2989,1,"Titilleux",45.712189,4.875231,0,0,DGL:SA:S11391,Europe/Paris,2,DGL, +DGL:SP:2990,1,"Titilleux",45.712193,4.875052,0,0,DGL:SA:S11391,Europe/Paris,2,DGL, +DGL:SP:2991,1,"Terreaux Tobie Robatel",45.767218,4.831701,0,0,DGL:SA:S11392,Europe/Paris,2,DGL, +DGL:SP:2992,1,"Tonkin",45.778513,4.865184,0,0,DGL:SA:S11393,Europe/Paris,2,DGL, +DGL:SP:2993,1,"Tonkin",45.77838,4.865101,0,0,DGL:SA:S11393,Europe/Paris,2,DGL, +DGL:SP:2994,1,"Tourvielle",45.754261,4.795586,0,0,DGL:SA:S11394,Europe/Paris,2,DGL, +DGL:SP:2995,1,"Tourvielle",45.754137,4.795915,0,0,DGL:SA:S11394,Europe/Paris,2,DGL, +DGL:SP:2997,1,"Treve Oray",45.850047,4.859989,0,0,DGL:SA:S11396,Europe/Paris,2,DGL, +DGL:SP:2998,1,"Treve Oray",45.85002,4.859988,0,0,DGL:SA:S11396,Europe/Paris,0,DGL, +DGL:SP:2999,1,"Treves Paques",45.815707,4.839438,0,0,DGL:SA:S11397,Europe/Paris,0,DGL, +DGL:SP:3,1,"4 Chemins - La Salette",45.749429,4.795074,0,0,DGL:SA:S10002,Europe/Paris,2,DGL, +DGL:SP:30,1,"Alai - La Raude",45.753334,4.774522,0,0,DGL:SA:S10014,Europe/Paris,2,DGL, +DGL:SP:3000,1,"Treves Paques",45.816187,4.839692,0,0,DGL:SA:S11397,Europe/Paris,0,DGL, +DGL:SP:30000,1,"Gare Saint Paul",45.766135,4.827356,0,0,DGL:SA:S11327,Europe/Paris,0,DGL, +DGL:SP:30005,1,"Bellecour Charite",45.755549,4.833062,0,0,DGL:SA:S10077,Europe/Paris,0,DGL, +DGL:SP:30006,1,"Oullins Ville",45.71225,4.803115,0,0,DGL:SA:S11036,Europe/Paris,2,DGL, +DGL:SP:30008,1,"Bellecour Charite",45.756083,4.833331,0,0,DGL:SA:S10077,Europe/Paris,0,DGL, +DGL:SP:30012,1,"La Ferlatiere",45.818699,4.807532,0,0,DGL:SA:S20002,Europe/Paris,0,DGL, +DGL:SP:30013,1,"La Ferlatiere",45.818652,4.80762,0,0,DGL:SA:S20002,Europe/Paris,0,DGL, +DGL:SP:30014,1,"Le Monteillier",45.817091,4.806546,0,0,DGL:SA:S20003,Europe/Paris,0,DGL, +DGL:SP:30015,1,"Le Monteillier",45.816893,4.806138,0,0,DGL:SA:S20003,Europe/Paris,0,DGL, +DGL:SP:30016,1,"Mouillard",45.784986,4.803985,0,0,DGL:SA:S20004,Europe/Paris,2,DGL, +DGL:SP:30017,1,"Mouillard",45.784868,4.804031,0,0,DGL:SA:S20004,Europe/Paris,2,DGL, +DGL:SP:30018,1,"La Piemente",45.785366,4.800631,0,0,DGL:SA:S20005,Europe/Paris,2,DGL, +DGL:SP:30019,1,"La Piemente",45.785418,4.800736,0,0,DGL:SA:S20005,Europe/Paris,2,DGL, +DGL:SP:30025,1,"St Just",45.757199,4.815893,0,0,DGL:SA:S5093,Europe/Paris,0,DGL, +DGL:SP:30027,1,"Bron Liberation",45.730206,4.901537,0,0,DGL:SA:S10124,Europe/Paris,2,DGL, +DGL:SP:30028,1,"Batterie",45.744229,4.916127,0,0,DGL:SA:S10067,Europe/Paris,2,DGL, +DGL:SP:30029,1,"Residence Marianne",45.664095,4.958914,0,0,DGL:SA:S20092,Europe/Paris,0,DGL, +DGL:SP:3003,1,"Trion",45.757554,4.812849,0,0,DGL:SA:S11399,Europe/Paris,2,DGL, +DGL:SP:30031,1,"General Benoist",45.73825,4.929461,0,0,DGL:SA:S20009,Europe/Paris,2,DGL, +DGL:SP:30032,1,"General Benoist",45.738286,4.929475,0,0,DGL:SA:S20009,Europe/Paris,2,DGL, +DGL:SP:30033,1,"Bron Aviation",45.736542,4.930563,0,0,DGL:SA:S20010,Europe/Paris,2,DGL, +DGL:SP:30034,1,"Bron Aviation",45.73654,4.930614,0,0,DGL:SA:S20010,Europe/Paris,2,DGL, +DGL:SP:30035,1,"Meyzieu Salle des Fetes",45.766026,5.001124,0,0,DGL:SA:S20011,Europe/Paris,0,DGL, +DGL:SP:30036,1,"J.Jaures - Malherbe",45.771317,5.015209,0,0,DGL:SA:S10583,Europe/Paris,2,DGL, +DGL:SP:3004,1,"Trion",45.758171,4.812606,0,0,DGL:SA:S11399,Europe/Paris,2,DGL, +DGL:SP:30041,1,"Pont Guillotiere RD",45.759701,4.837417,0,0,DGL:SA:S11172,Europe/Paris,0,DGL, +DGL:SP:30044,1,"Val Fontaine Centre",45.761679,4.725909,0,0,DGL:SA:S30000,Europe/Paris,0,DGL, +DGL:SP:30045,1,"Val Fontaine Centre",45.761724,4.725898,0,0,DGL:SA:S30000,Europe/Paris,0,DGL, +DGL:SP:30046,1,"Val Fontaine",45.761396,4.72735,0,0,DGL:SA:S30001,Europe/Paris,0,DGL, +DGL:SP:3005,1,"Trion",45.758582,4.812741,0,0,DGL:SA:S11399,Europe/Paris,2,DGL, +DGL:SP:30056,1,"Sacre Coeur",45.759409,4.869296,0,0,DGL:SA:S20142,Europe/Paris,2,DGL, +DGL:SP:30057,1,"Charlemagne - C.-Perier",45.742046,4.822551,0,0,DGL:SA:S11798,Europe/Paris,2,DGL, +DGL:SP:30068,1,"Depot de Cuire",45.788552,4.834882,0,0,DGL:SA:S30006,Europe/Paris,2,DGL, +DGL:SP:30069,1,"Depot de Cuire",45.789024,4.835097,0,0,DGL:SA:S30006,Europe/Paris,2,DGL, +DGL:SP:30070,1,"Gare de Vaise",45.780825,4.804531,0,0,DGL:SA:S5103,Europe/Paris,2,DGL, +DGL:SP:30083,1,"Garibaldi - Berthelot",45.743884,4.847574,0,0,DGL:SA:S5307,Europe/Paris,2,DGL, +DGL:SP:30093,1,"Gare de Vaise",45.780508,4.804221,0,0,DGL:SA:S5103,Europe/Paris,2,DGL, +DGL:SP:30101,1,"Perrache.",45.749805,4.826904,0,0,DGL:SA:S5085,Europe/Paris,2,DGL, +DGL:SP:30103,1,"Bellecour",45.757627,4.833019,0,0,DGL:SA:S5002,Europe/Paris,2,DGL, +DGL:SP:3011,1,"Trois Artichauts",45.75273,4.817286,0,0,DGL:SA:S11403,Europe/Paris,2,DGL, +DGL:SP:30133,1,"Saxe - Gambetta",45.753687,4.846951,0,0,DGL:SA:S5092,Europe/Paris,2,DGL, +DGL:SP:30136,1,"Gare de Vaise",45.781151,4.804842,0,0,DGL:SA:S5103,Europe/Paris,2,DGL, +DGL:SP:30137,1,"Gare de Vaise",45.780645,4.804935,0,0,DGL:SA:S5103,Europe/Paris,2,DGL, +DGL:SP:3014,1,"Trois Renards",45.763608,4.773948,0,0,DGL:SA:S11404,Europe/Paris,2,DGL, +DGL:SP:3015,1,"Tupinier",45.747358,4.7068,0,0,DGL:SA:S11405,Europe/Paris,2,DGL, +DGL:SP:30156,1,"Hotel de Ville - L. Pradel-",45.768139,4.835952,0,0,DGL:SA:S5046,Europe/Paris,2,DGL, +DGL:SP:30157,1,"Henon",45.779255,4.827442,0,0,DGL:SA:S5045,Europe/Paris,2,DGL, +DGL:SP:30158,1,"Henon",45.779277,4.827599,0,0,DGL:SA:S5045,Europe/Paris,2,DGL, +DGL:SP:30159,1,"Cuire",45.785258,4.832498,0,0,DGL:SA:S5022,Europe/Paris,2,DGL, +DGL:SP:3016,1,"Tupinier",45.74733,4.707724,0,0,DGL:SA:S11405,Europe/Paris,2,DGL, +DGL:SP:30164,1,"Valvert",45.765835,4.765855,0,0,DGL:SA:S11416,Europe/Paris,0,DGL, +DGL:SP:30166,1,"La Gabrielle",45.807783,4.780232,0,0,DGL:SA:S10664,Europe/Paris,2,DGL, +DGL:SP:30167,1,"La Gabrielle",45.807917,4.779865,0,0,DGL:SA:S10664,Europe/Paris,2,DGL, +DGL:SP:3017,1,"UFR Lyon-Sud",45.705011,4.809317,0,0,DGL:SA:S11406,Europe/Paris,2,DGL, +DGL:SP:30173,1,"Hotel de Ville - L. Pradel",45.766798,4.835991,0,0,DGL:SA:S5046,Europe/Paris,0,DGL, +DGL:SP:3018,1,"UFR Lyon-Sud",45.705074,4.809307,0,0,DGL:SA:S11406,Europe/Paris,2,DGL, +DGL:SP:30180,1,"Laurent Bonnevay",45.764871,4.909379,0,0,DGL:SA:S5101,Europe/Paris,2,DGL, +DGL:SP:30183,1,"Parilly",45.719782,4.8875,0,0,DGL:SA:S5084,Europe/Paris,2,DGL, +DGL:SP:30184,1,"Parilly.",45.719745,4.887408,0,0,DGL:SA:S5084,Europe/Paris,2,DGL, +DGL:SP:30185,1,"Mermoz - Pinel",45.730467,4.887291,0,0,DGL:SA:S5082,Europe/Paris,2,DGL, +DGL:SP:30186,1,"Mermoz - Pinel.",45.730499,4.887205,0,0,DGL:SA:S5082,Europe/Paris,2,DGL, +DGL:SP:30187,1,"Laennec",45.738717,4.886336,0,0,DGL:SA:S5062,Europe/Paris,2,DGL, +DGL:SP:30188,1,"Laennec.",45.738668,4.886257,0,0,DGL:SA:S5062,Europe/Paris,2,DGL, +DGL:SP:30189,1,"Grange Blanche",45.742954,4.878991,0,0,DGL:SA:S5041,Europe/Paris,2,DGL, +DGL:SP:3019,1,"Union Nautique",45.797802,4.837851,0,0,DGL:SA:S11407,Europe/Paris,0,DGL, +DGL:SP:30190,1,"Grange Blanche.",45.742828,4.8789,0,0,DGL:SA:S5041,Europe/Paris,2,DGL, +DGL:SP:30191,1,"Monplaisir Lumiere",45.745388,4.871873,0,0,DGL:SA:S5083,Europe/Paris,2,DGL, +DGL:SP:30192,1,"Monplaisir Lumiere.",45.745327,4.871795,0,0,DGL:SA:S5083,Europe/Paris,2,DGL, +DGL:SP:30193,1,"Sans Souci",45.747785,4.864889,0,0,DGL:SA:S5091,Europe/Paris,2,DGL, +DGL:SP:30194,1,"Sans Souci.",45.747754,4.864758,0,0,DGL:SA:S5091,Europe/Paris,2,DGL, +DGL:SP:30197,1,"Saxe - Gambetta",45.753892,4.84715,0,0,DGL:SA:S5092,Europe/Paris,2,DGL, +DGL:SP:30198,1,"Saxe - Gambetta.",45.753831,4.847126,0,0,DGL:SA:S5092,Europe/Paris,2,DGL, +DGL:SP:30199,1,"Guillotiere",45.755473,4.842574,0,0,DGL:SA:S5044,Europe/Paris,2,DGL, +DGL:SP:30200,1,"Guillotiere.",45.755411,4.842532,0,0,DGL:SA:S5044,Europe/Paris,2,DGL, +DGL:SP:30201,1,"Bellecour",45.756576,4.83376,0,0,DGL:SA:S5002,Europe/Paris,2,DGL, +DGL:SP:30202,1,"Bellecour.",45.756716,4.833833,0,0,DGL:SA:S5002,Europe/Paris,2,DGL, +DGL:SP:30205,1,"Gorge de Loup",45.766433,4.805547,0,0,STE:SA:OCE87721175,Europe/Paris,2,DGL, +DGL:SP:30206,1,"Gorge de Loup.",45.766427,4.805437,0,0,STE:SA:OCE87721175,Europe/Paris,2,DGL, +DGL:SP:30207,1,"Valmy",45.774786,4.805529,0,0,DGL:SA:S5094,Europe/Paris,2,DGL, +DGL:SP:30208,1,"Valmy.",45.774774,4.805327,0,0,DGL:SA:S5094,Europe/Paris,2,DGL, +DGL:SP:30209,1,"Gare de Vaise",45.779792,4.803854,0,0,DGL:SA:S5103,Europe/Paris,2,DGL, +DGL:SP:30210,1,"Gare de Vaise.",45.779805,4.803736,0,0,DGL:SA:S5103,Europe/Paris,2,DGL, +DGL:SP:30211,1,"Vieux Lyon - Cat.St Jean",45.759901,4.826427,0,0,DGL:SA:S5095,Europe/Paris,2,DGL, +DGL:SP:30212,1,"Minimes Theatres Romains",45.758612,4.821436,0,0,DGL:SA:S5080,Europe/Paris,2,DGL, +DGL:SP:30213,1,"Minimes Theatres Romains",45.758566,4.821465,0,0,DGL:SA:S5080,Europe/Paris,2,DGL, +DGL:SP:30214,1,"St Just",45.756959,4.816139,0,0,DGL:SA:S5093,Europe/Paris,2,DGL, +DGL:SP:30215,1,"Fourviere Basilique",45.762109,4.821387,0,0,DGL:SA:S5224,Europe/Paris,2,DGL, +DGL:SP:30217,1,"Champvert - Les Massues",45.759995,4.795958,0,0,DGL:SA:S10817,Europe/Paris,2,DGL, +DGL:SP:30218,1,"Champvert - Les Massues",45.759791,4.79627,0,0,DGL:SA:S10817,Europe/Paris,2,DGL, +DGL:SP:30219,1,"Theatre Eglise Notre Dame",45.758039,4.795279,0,0,DGL:SA:S30056,Europe/Paris,2,DGL, +DGL:SP:30225,1,"Croix-Rousse",45.774435,4.83217,0,0,DGL:SA:S5223,Europe/Paris,0,DGL, +DGL:SP:30226,1,"Dupeuble",45.776725,4.892477,0,0,DGL:SA:S20119,Europe/Paris,2,DGL, +DGL:SP:30227,1,"Dupeuble",45.777205,4.892332,0,0,DGL:SA:S20119,Europe/Paris,2,DGL, +DGL:SP:30228,1,"Decines Esplanade",45.772444,4.974075,0,0,DGL:SA:S11725,Europe/Paris,2,DGL, +DGL:SP:30229,1,"Decines Esplanade",45.772397,4.97415,0,0,DGL:SA:S11725,Europe/Paris,2,DGL, +DGL:SP:3023,1,"Universite - Jean Jaures",45.747928,4.843439,0,0,DGL:SA:S11409,Europe/Paris,2,DGL, +DGL:SP:30230,1,"Decines Esplanade",45.772405,4.974189,0,0,DGL:SA:S11725,Europe/Paris,2,DGL, +DGL:SP:30231,1,"Decines Esplanade",45.772452,4.974886,0,0,DGL:SA:S11725,Europe/Paris,2,DGL, +DGL:SP:30233,1,"Decines Esplanade",45.772547,4.97426,0,0,DGL:SA:S11725,Europe/Paris,0,DGL, +DGL:SP:30234,1,"Decines Esplanade",45.7725,4.974734,0,0,DGL:SA:S11725,Europe/Paris,2,DGL, +DGL:SP:30239,1,"Chantemerle",45.820241,4.794277,0,0,DGL:SA:S10192,Europe/Paris,0,DGL, +DGL:SP:3024,1,"Universite - Jean Jaures",45.748485,4.843863,0,0,DGL:SA:S11409,Europe/Paris,2,DGL, +DGL:SP:30249,1,"Ecully Fayolle",45.783291,4.781099,0,0,DGL:SA:S30082,Europe/Paris,0,DGL, +DGL:SP:3025,1,"Universite - Jean Jaures",45.748433,4.843398,0,0,DGL:SA:S11409,Europe/Paris,2,DGL, +DGL:SP:30252,1,"Ecully Fayolle",45.783151,4.780887,0,0,DGL:SA:S30082,Europe/Paris,0,DGL, +DGL:SP:30257,1,"Centre Culturel",45.778709,4.778593,0,0,DGL:SA:S11226,Europe/Paris,0,DGL, +DGL:SP:3026,1,"Vaillant Couturier",45.705998,4.820872,0,0,DGL:SA:S11410,Europe/Paris,2,DGL, +DGL:SP:30261,1,"St Genis Lycee Descartes",45.6901,4.78413,0,0,DGL:SA:S12284,Europe/Paris,2,DGL, +DGL:SP:30266,1,"Genay Proulieu",45.903406,4.845043,0,0,DGL:SA:S30087,Europe/Paris,2,DGL, +DGL:SP:3027,1,"Vaillant Couturier",45.706424,4.821161,0,0,DGL:SA:S11410,Europe/Paris,2,DGL, +DGL:SP:30273,1,"Montmartin - Merieux",45.670726,4.921468,0,0,DGL:SA:S30090,Europe/Paris,2,DGL, +DGL:SP:30274,1,"Montmartin - Merieux",45.670616,4.921514,0,0,DGL:SA:S30090,Europe/Paris,2,DGL, +DGL:SP:3028,1,"Valdo",45.750117,4.784202,0,0,DGL:SA:S11411,Europe/Paris,2,DGL, +DGL:SP:30281,1,"Charbonnieres Gare",45.782175,4.735985,0,0,STE:SA:OCE87721530,Europe/Paris,2,DGL, +DGL:SP:30300,1,"Louis Braille - Montaland",45.761616,4.882348,0,0,DGL:SA:S30098,Europe/Paris,2,DGL, +DGL:SP:30301,1,"Louis Braille - Montaland",45.761541,4.882486,0,0,DGL:SA:S30098,Europe/Paris,2,DGL, +DGL:SP:30302,1,"Leonard De Vinci",45.779212,4.933167,0,0,DGL:SA:S30099,Europe/Paris,0,DGL, +DGL:SP:30303,1,"Les Alpes",45.780503,4.937268,0,0,DGL:SA:S30100,Europe/Paris,0,DGL, +DGL:SP:30304,1,"Lenine - Fromont",45.778499,4.937521,0,0,DGL:SA:S30101,Europe/Paris,0,DGL, +DGL:SP:30308,1,"Montaberlet",45.768058,4.937889,0,0,DGL:SA:S30102,Europe/Paris,2,DGL, +DGL:SP:3031,1,"Valensaut",45.723416,4.874734,0,0,DGL:SA:S11413,Europe/Paris,2,DGL, +DGL:SP:3032,1,"Valensaut",45.723775,4.873967,0,0,DGL:SA:S11413,Europe/Paris,2,DGL, +DGL:SP:30328,1,"La Sabliere.",45.808395,4.906937,0,0,DGL:SA:S5322,Europe/Paris,0,DGL, +DGL:SP:30330,1,"Castellane.",45.808146,4.899331,0,0,DGL:SA:S5005,Europe/Paris,2,DGL, +DGL:SP:3034,1,"Valmy",45.77522,4.806055,0,0,DGL:SA:S5094,Europe/Paris,2,DGL, +DGL:SP:30343,1,"Trion - 4 Colonnes",45.758678,4.812063,0,0,DGL:SA:S30118,Europe/Paris,0,DGL, +DGL:SP:3035,1,"Valmy",45.774891,4.806246,0,0,DGL:SA:S5094,Europe/Paris,2,DGL, +DGL:SP:30368,1,"Leon Berard",45.741352,4.879276,0,0,DGL:SA:S10759,Europe/Paris,2,DGL, +DGL:SP:3037,1,"Val Rosay",45.793756,4.812871,0,0,DGL:SA:S11415,Europe/Paris,0,DGL, +DGL:SP:30377,1,"Rue de l'Universite",45.751456,4.836567,0,0,DGL:SA:S5306,Europe/Paris,2,DGL, +DGL:SP:3038,1,"Val Rosay",45.793434,4.811981,0,0,DGL:SA:S11415,Europe/Paris,0,DGL, +DGL:SP:30380,1,"St Agnan",45.740882,4.863031,0,0,DGL:SA:S11289,Europe/Paris,2,DGL, +DGL:SP:30387,1,"Avenue du Plateau",45.784199,4.794725,0,0,DGL:SA:S30140,Europe/Paris,2,DGL, +DGL:SP:30388,1,"Avenue du Plateau",45.784261,4.794779,0,0,DGL:SA:S30140,Europe/Paris,2,DGL, +DGL:SP:30389,1,"Duchere Les Erables",45.782666,4.793653,0,0,DGL:SA:S30141,Europe/Paris,2,DGL, +DGL:SP:30390,1,"Duchere Les Erables",45.782607,4.793869,0,0,DGL:SA:S30141,Europe/Paris,2,DGL, +DGL:SP:30391,1,"Duchere Chateau",45.780551,4.793623,0,0,DGL:SA:S10370,Europe/Paris,0,DGL, +DGL:SP:30392,1,"Maison de l'Enfance",45.779641,4.793273,0,0,DGL:SA:S30142,Europe/Paris,0,DGL, +DGL:SP:30393,1,"Jean Fournier",45.780596,4.79486,0,0,DGL:SA:S30143,Europe/Paris,0,DGL, +DGL:SP:30394,1,"Le Chateau Duchere",45.779796,4.794399,0,0,DGL:SA:S30144,Europe/Paris,0,DGL, +DGL:SP:30397,1,"Mermoz - Californie",45.733141,4.87855,0,0,DGL:SA:S10153,Europe/Paris,2,DGL, +DGL:SP:30398,1,"Grange Rouge",45.731427,4.873535,0,0,DGL:SA:S10529,Europe/Paris,2,DGL, +DGL:SP:3040,1,"Valvert",45.765415,4.766968,0,0,DGL:SA:S11416,Europe/Paris,0,DGL, +DGL:SP:30403,1,"Grange Rouge",45.731626,4.874277,0,0,DGL:SA:S10529,Europe/Paris,2,DGL, +DGL:SP:30406,1,"St Mathieu",45.741272,4.868461,0,0,DGL:SA:S30147,Europe/Paris,2,DGL, +DGL:SP:30407,1,"St Mathieu",45.742488,4.867219,0,0,DGL:SA:S30147,Europe/Paris,2,DGL, +DGL:SP:3041,1,"Fort de Vancia",45.834586,4.909089,0,0,DGL:SA:S11417,Europe/Paris,2,DGL, +DGL:SP:30411,1,"Centre Nautique Tony Bertrand",45.7535,4.838151,0,0,DGL:SA:S30148,Europe/Paris,0,DGL, +DGL:SP:30413,1,"Pavillon 2C",45.699916,4.808921,0,0,DGL:SA:S30193,Europe/Paris,2,DGL, +DGL:SP:30416,1,"Le Colombier",45.811451,4.715407,0,0,DGL:SA:S30151,Europe/Paris,0,DGL, +DGL:SP:30417,1,"Le Colombier - Veyrie",45.811572,4.718219,0,0,DGL:SA:S30152,Europe/Paris,0,DGL, +DGL:SP:30418,1,"Parc de l'Hippodrome",45.808248,4.719181,0,0,DGL:SA:S30153,Europe/Paris,0,DGL, +DGL:SP:3042,1,"Fort de Vancia",45.833971,4.908816,0,0,DGL:SA:S11417,Europe/Paris,2,DGL, +DGL:SP:30420,1,"La Tour de Salvagny Gare",45.799637,4.716942,0,0,DGL:SA:S30155,Europe/Paris,0,DGL, +DGL:SP:30423,1,"La Tour de Salvagny Mairie",45.814511,4.716274,0,0,DGL:SA:S30157,Europe/Paris,0,DGL, +DGL:SP:30424,1,"La Tour de S. Greffieres",45.805284,4.717637,0,0,DGL:SA:S30158,Europe/Paris,0,DGL, +DGL:SP:30430,1,"Les Granges",45.81588,4.711557,0,0,DGL:SA:S30164,Europe/Paris,2,DGL, +DGL:SP:3044,1,"Varichon",45.734088,4.871293,0,0,DGL:SA:S11419,Europe/Paris,2,DGL, +DGL:SP:30443,1,"Allobroges",45.678388,4.916293,0,0,DGL:SA:S30173,Europe/Paris,0,DGL, +DGL:SP:30444,1,"Allobroges",45.678431,4.916372,0,0,DGL:SA:S30173,Europe/Paris,2,DGL, +DGL:SP:30445,1,"Garibaldi",45.751467,4.854206,0,0,DGL:SA:S5181,Europe/Paris,2,DGL, +DGL:SP:30446,1,"Garibaldi.",45.751385,4.854207,0,0,DGL:SA:S5181,Europe/Paris,2,DGL, +DGL:SP:30447,1,"Gare de Venissieux",45.705568,4.888079,0,0,STE:SA:OCE87723320,Europe/Paris,2,DGL, +DGL:SP:30448,1,"Gare de Venissieux.",45.705603,4.887962,0,0,STE:SA:OCE87723320,Europe/Paris,2,DGL, +DGL:SP:30449,1,"La Rochette - Clochettes",45.694954,4.857148,0,0,DGL:SA:S30176,Europe/Paris,2,DGL, +DGL:SP:3045,1,"Varichon",45.734361,4.87119,0,0,DGL:SA:S11419,Europe/Paris,2,DGL, +DGL:SP:30450,1,"La Rochette - Clochettes",45.694909,4.857146,0,0,DGL:SA:S30176,Europe/Paris,0,DGL, +DGL:SP:30459,1,"Perrache",45.749759,4.826999,0,0,DGL:SA:S5085,Europe/Paris,2,DGL, +DGL:SP:3046,1,"Vassieux",45.79185,4.866493,0,0,DGL:SA:S11420,Europe/Paris,2,DGL, +DGL:SP:3047,1,"Vassieux",45.791819,4.865899,0,0,DGL:SA:S11420,Europe/Paris,2,DGL, +DGL:SP:30472,1,"Charpennes Charles Hernu .",45.770169,4.862825,0,0,DGL:SA:S5102,Europe/Paris,2,DGL, +DGL:SP:30478,1,"Valdo - Charcot",45.749836,4.793344,0,0,DGL:SA:S30182,Europe/Paris,2,DGL, +DGL:SP:30485,1,"Les Sequoias",45.781007,4.779338,0,0,DGL:SA:S30186,Europe/Paris,0,DGL, +DGL:SP:30486,1,"Les Sequoias",45.780689,4.779041,0,0,DGL:SA:S30186,Europe/Paris,0,DGL, +DGL:SP:30487,1,"Villeneuve",45.785351,4.782786,0,0,DGL:SA:S11464,Europe/Paris,0,DGL, +DGL:SP:30488,1,"Gare d'Albigny-Neuville",45.877083,4.835174,0,0,DGL:SA:S11466,Europe/Paris,0,DGL, +DGL:SP:30493,1,"Gare d'Albigny-Neuville",45.877292,4.835081,0,0,DGL:SA:S11466,Europe/Paris,0,DGL, +DGL:SP:30504,1,"Le Joli Mai",45.738996,4.720837,0,0,DGL:SA:S30190,Europe/Paris,2,DGL, +DGL:SP:30505,1,"Le Joli Mai",45.739263,4.721427,0,0,DGL:SA:S30190,Europe/Paris,2,DGL, +DGL:SP:30507,1,"Gorge de Loup",45.765842,4.804348,0,0,STE:SA:OCE87721175,Europe/Paris,2,DGL, +DGL:SP:30510,1,"Bellecour Le Viste",45.757252,4.833795,0,0,DGL:SA:S10080,Europe/Paris,2,DGL, +DGL:SP:30511,1,"Bellecour Le Viste",45.757714,4.834048,0,0,DGL:SA:S10080,Europe/Paris,0,DGL, +DGL:SP:30514,1,"Trois Artichauts",45.751583,4.816232,0,0,DGL:SA:S11403,Europe/Paris,2,DGL, +DGL:SP:30518,1,"Chantegrillet",45.738524,4.773429,0,0,DGL:SA:S5740,Europe/Paris,2,DGL, +DGL:SP:30519,1,"La Graviere",45.762679,4.80409,0,0,DGL:SA:S30192,Europe/Paris,0,DGL, +DGL:SP:30520,1,"La Graviere",45.762526,4.804083,0,0,DGL:SA:S30192,Europe/Paris,2,DGL, +DGL:SP:30527,1,"Irigny Venieres",45.667538,4.819189,0,0,DGL:SA:S10581,Europe/Paris,2,DGL, +DGL:SP:30528,1,"Le Peage",45.689834,4.822416,0,0,DGL:SA:S10736,Europe/Paris,2,DGL, +DGL:SP:30529,1,"Le Peage",45.689857,4.822597,0,0,DGL:SA:S10736,Europe/Paris,2,DGL, +DGL:SP:30532,1,"Yvours",45.690279,4.826289,0,0,DGL:SA:S11481,Europe/Paris,0,DGL, +DGL:SP:30533,1,"Yvours",45.690215,4.825901,0,0,DGL:SA:S11481,Europe/Paris,0,DGL, +DGL:SP:3054,1,"Vaulx HDV Campus",45.776767,4.921333,0,0,DGL:SA:S11424,Europe/Paris,2,DGL, +DGL:SP:30541,1,"Trion",45.757739,4.814259,0,0,DGL:SA:S11399,Europe/Paris,2,DGL, +DGL:SP:30542,1,"St Rambert Les Rivieres",45.807846,4.836725,0,0,DGL:SA:S11346,Europe/Paris,0,DGL, +DGL:SP:30545,1,"Vaulx Lakanal",45.786802,4.920608,0,0,DGL:SA:S11426,Europe/Paris,2,DGL, +DGL:SP:30547,1,"Cazeneuve - Berliet",45.739326,4.866173,0,0,DGL:SA:S30194,Europe/Paris,2,DGL, +DGL:SP:3055,1,"Vaulx HDV Campus",45.776801,4.921386,0,0,DGL:SA:S11424,Europe/Paris,2,DGL, +DGL:SP:30551,1,"College Bellecombe",45.766325,4.862399,0,0,DGL:SA:S5301,Europe/Paris,2,DGL, +DGL:SP:30553,1,"Viviani",45.727705,4.86264,0,0,DGL:SA:S11471,Europe/Paris,2,DGL, +DGL:SP:30554,1,"La Tour de S. Greffieres",45.80519,4.717801,0,0,DGL:SA:S30158,Europe/Paris,0,DGL, +DGL:SP:30556,1,"La Tour de Salvagny Mairie",45.814386,4.716255,0,0,DGL:SA:S30157,Europe/Paris,0,DGL, +DGL:SP:30558,1,"Le Colombier",45.81133,4.715196,0,0,DGL:SA:S30151,Europe/Paris,0,DGL, +DGL:SP:30559,1,"Le Colombier - Veyrie",45.811589,4.718258,0,0,DGL:SA:S30152,Europe/Paris,0,DGL, +DGL:SP:30560,1,"Parc de l'Hippodrome",45.807764,4.719083,0,0,DGL:SA:S30153,Europe/Paris,0,DGL, +DGL:SP:30562,1,"Simondan",45.801166,4.831492,0,0,DGL:SA:S11866,Europe/Paris,0,DGL, +DGL:SP:30563,1,"Cite Edouard Herriot",45.802588,4.83274,0,0,DGL:SA:S10249,Europe/Paris,0,DGL, +DGL:SP:30564,1,"Rue des Balmes",45.801535,4.835949,0,0,DGL:SA:S11860,Europe/Paris,0,DGL, +DGL:SP:30565,1,"Grande Rue St Rambert",45.799794,4.833638,0,0,DGL:SA:S11858,Europe/Paris,0,DGL, +DGL:SP:30566,1,"Mairie de St Rambert",45.798132,4.829926,0,0,DGL:SA:S11856,Europe/Paris,0,DGL, +DGL:SP:3057,1,"Vaulx Jean Moulin",45.787296,4.91672,0,0,DGL:SA:S11425,Europe/Paris,2,DGL, +DGL:SP:30572,1,"Genay",45.898756,4.842006,0,0,DGL:SA:S20533,Europe/Paris,2,DGL, +DGL:SP:30573,1,"Genay",45.898503,4.841771,0,0,DGL:SA:S20533,Europe/Paris,2,DGL, +DGL:SP:30574,1,"Gorge de Loup",45.766768,4.804389,0,0,STE:SA:OCE87721175,Europe/Paris,2,DGL, +DGL:SP:30575,1,"Gorge de Loup",45.766574,4.805024,0,0,STE:SA:OCE87721175,Europe/Paris,2,DGL, +DGL:SP:30578,1,"Les Granges",45.816038,4.710895,0,0,DGL:SA:S30164,Europe/Paris,2,DGL, +DGL:SP:30579,1,"Gorge de Loup",45.766169,4.804918,0,0,STE:SA:OCE87721175,Europe/Paris,0,DGL, +DGL:SP:3058,1,"Vaulx Jean Moulin",45.787445,4.916148,0,0,DGL:SA:S11425,Europe/Paris,2,DGL, +DGL:SP:306,1,"College Louis Aragon",45.693056,4.89011,0,0,DGL:SA:S10144,Europe/Paris,2,DGL, +DGL:SP:3060,1,"Vaulx Lakanal",45.786882,4.919479,0,0,DGL:SA:S11426,Europe/Paris,2,DGL, +DGL:SP:30683,1,"Bron De Lattre",45.734179,4.917456,0,0,DGL:SA:S10120,Europe/Paris,2,DGL, +DGL:SP:3069,1,"Vaulx Pasteur",45.785235,4.930802,0,0,DGL:SA:S11433,Europe/Paris,0,DGL, +DGL:SP:307,1,"College Louis Aragon",45.693753,4.889975,0,0,DGL:SA:S10144,Europe/Paris,2,DGL, +DGL:SP:3070,1,"Vaulx Pasteur",45.785489,4.930337,0,0,DGL:SA:S11433,Europe/Paris,2,DGL, +DGL:SP:3077,1,"Vaulx Pierre Frite",45.774662,4.932168,0,0,DGL:SA:S11436,Europe/Paris,0,DGL, +DGL:SP:3078,1,"Vaulx Pierre Frite",45.774687,4.932259,0,0,DGL:SA:S11436,Europe/Paris,2,DGL, +DGL:SP:3080,1,"Vaulx Place Boissier",45.786383,4.924731,0,0,DGL:SA:S11437,Europe/Paris,0,DGL, +DGL:SP:3081,1,"Vaulx Place Boissier",45.786255,4.9256,0,0,DGL:SA:S11437,Europe/Paris,0,DGL, +DGL:SP:30822,1,"Le Four",45.856038,4.876561,0,0,DGL:SA:S30207,Europe/Paris,2,DGL, +DGL:SP:30823,1,"Le Four",45.856269,4.877061,0,0,DGL:SA:S30207,Europe/Paris,2,DGL, +DGL:SP:3084,1,"Vaulx Thibaude",45.778492,4.929634,0,0,DGL:SA:S11438,Europe/Paris,2,DGL, +DGL:SP:3085,1,"Vaulx Thibaude",45.778505,4.929493,0,0,DGL:SA:S11438,Europe/Paris,2,DGL, +DGL:SP:30862,1,"Place Sublet-Marcel Paul",45.699881,4.881729,0,0,DGL:SA:S20490,Europe/Paris,2,DGL, +DGL:SP:3087,1,"Velten",45.799051,4.833519,0,0,DGL:SA:S11440,Europe/Paris,2,DGL, +DGL:SP:3088,1,"Velten",45.799129,4.833664,0,0,DGL:SA:S11440,Europe/Paris,2,DGL, +DGL:SP:3090,1,"Venissieux Le Charreard",45.698451,4.900662,0,0,DGL:SA:S11442,Europe/Paris,2,DGL, +DGL:SP:3091,1,"Venissieux Marronniers",45.705405,4.877886,0,0,DGL:SA:S11443,Europe/Paris,2,DGL, +DGL:SP:3092,1,"Venissieux Marronniers",45.705622,4.877447,0,0,DGL:SA:S11443,Europe/Paris,2,DGL, +DGL:SP:310,1,"Claude Joseph Bonnet",45.774896,4.821154,0,0,DGL:SA:S10146,Europe/Paris,2,DGL, +DGL:SP:3100,1,"Venissieux St Exupery",45.698485,4.894433,0,0,DGL:SA:S11447,Europe/Paris,2,DGL, +DGL:SP:3101,1,"Venissieux St Exupery",45.698456,4.894509,0,0,DGL:SA:S11447,Europe/Paris,2,DGL, +DGL:SP:31022,1,"Cornavent",45.769368,4.967445,0,0,DGL:SA:S30277,Europe/Paris,2,DGL, +DGL:SP:31023,1,"Cornavent",45.769073,4.96734,0,0,DGL:SA:S30277,Europe/Paris,2,DGL, +DGL:SP:3103,1,"Verdun - Victor Hugo",45.779267,4.996594,0,0,DGL:SA:S11449,Europe/Paris,2,DGL, +DGL:SP:3104,1,"Verdun - Victor Hugo",45.7792,4.996372,0,0,DGL:SA:S11449,Europe/Paris,2,DGL, +DGL:SP:31043,1,"Charcot - La Source",45.747965,4.791641,0,0,DGL:SA:S30071,Europe/Paris,2,DGL, +DGL:SP:31044,1,"Valdo",45.75007,4.784303,0,0,DGL:SA:S11411,Europe/Paris,2,DGL, +DGL:SP:31045,1,"Noyers",45.75198,4.781726,0,0,DGL:SA:S30287,Europe/Paris,0,DGL, +DGL:SP:31046,1,"Noyers",45.752371,4.781988,0,0,DGL:SA:S30287,Europe/Paris,0,DGL, +DGL:SP:31047,1,"Rue de la Garenne",45.750115,4.780975,0,0,DGL:SA:S30288,Europe/Paris,2,DGL, +DGL:SP:31048,1,"Rue de la Garenne",45.749972,4.781341,0,0,DGL:SA:S30288,Europe/Paris,2,DGL, +DGL:SP:31049,1,"Les Battieres",45.754259,4.782059,0,0,DGL:SA:S10771,Europe/Paris,2,DGL, +DGL:SP:3105,1,"Verlaine",45.762496,4.878865,0,0,DGL:SA:S11450,Europe/Paris,2,DGL, +DGL:SP:3106,1,"Verlaine",45.762828,4.877749,0,0,DGL:SA:S11450,Europe/Paris,2,DGL, +DGL:SP:311,1,"Charles Perrault",45.771262,4.890036,0,0,DGL:SA:S10147,Europe/Paris,2,DGL, +DGL:SP:3111,1,"Vernaison La Rossignole",45.641584,4.808191,0,0,DGL:SA:S11452,Europe/Paris,2,DGL, +DGL:SP:3113,1,"Vernaison Place",45.648055,4.812062,0,0,DGL:SA:S5914,Europe/Paris,2,DGL, +DGL:SP:3117,1,"Veyrie",45.81375,4.723307,0,0,DGL:SA:S11456,Europe/Paris,2,DGL, +DGL:SP:3118,1,"Veyrie",45.813911,4.722915,0,0,DGL:SA:S11456,Europe/Paris,2,DGL, +DGL:SP:3119,1,"Viabert - Anatole France",45.766567,4.868005,0,0,DGL:SA:S11457,Europe/Paris,2,DGL, +DGL:SP:312,1,"Charles Perrault",45.771264,4.889985,0,0,DGL:SA:S10147,Europe/Paris,2,DGL, +DGL:SP:3120,1,"Viabert - Anatole France",45.76646,4.868373,0,0,DGL:SA:S11457,Europe/Paris,2,DGL, +DGL:SP:3121,1,"Viala - Lacassagne",45.746064,4.885833,0,0,DGL:SA:S11458,Europe/Paris,2,DGL, +DGL:SP:3122,1,"Vianney",45.793727,4.771771,0,0,DGL:SA:S11459,Europe/Paris,2,DGL, +DGL:SP:3123,1,"Vianney",45.793523,4.772058,0,0,DGL:SA:S11459,Europe/Paris,2,DGL, +DGL:SP:3124,1,"Victor Hugo",45.662797,4.949339,0,0,DGL:SA:S11460,Europe/Paris,0,DGL, +DGL:SP:31242,1,"Max Barel",45.698403,4.897243,0,0,DGL:SA:S30317,Europe/Paris,2,DGL, +DGL:SP:3125,1,"Victor Hugo",45.662993,4.949451,0,0,DGL:SA:S11460,Europe/Paris,0,DGL, +DGL:SP:3128,1,"Route de Vienne",45.74309,4.850444,0,0,DGL:SA:S5308,Europe/Paris,2,DGL, +DGL:SP:31283,1,"Ste Foy Genets",45.737133,4.793047,0,0,DGL:SA:S30327,Europe/Paris,0,DGL, +DGL:SP:31284,1,"Leriche",45.738529,4.791399,0,0,DGL:SA:S30328,Europe/Paris,2,DGL, +DGL:SP:3129,1,"Vieux Crepieux",45.799957,4.87702,0,0,DGL:SA:S11462,Europe/Paris,2,DGL, +DGL:SP:313,1,"Cailloux Bellevue",45.853857,4.867469,0,0,DGL:SA:S10148,Europe/Paris,0,DGL, +DGL:SP:3130,1,"Vieux Crepieux",45.8006,4.877641,0,0,DGL:SA:S11462,Europe/Paris,2,DGL, +DGL:SP:31302,1,"Ste Foy Genets",45.737326,4.792888,0,0,DGL:SA:S30327,Europe/Paris,0,DGL, +DGL:SP:31303,1,"Leriche",45.738962,4.79093,0,0,DGL:SA:S30328,Europe/Paris,0,DGL, +DGL:SP:3131,1,"Alfred de Vigny",45.699402,4.936752,0,0,DGL:SA:S5481,Europe/Paris,2,DGL, +DGL:SP:3132,1,"Alfred de Vigny",45.699374,4.936777,0,0,DGL:SA:S5481,Europe/Paris,2,DGL, +DGL:SP:3133,1,"Villeneuve",45.785671,4.782967,0,0,DGL:SA:S11464,Europe/Paris,0,DGL, +DGL:SP:3134,1,"Villeurbanne Bel Air",45.755293,4.912904,0,0,DGL:SA:S11465,Europe/Paris,2,DGL, +DGL:SP:31342,1,"Francois Genin",45.752381,4.795528,0,0,DGL:SA:S30337,Europe/Paris,0,DGL, +DGL:SP:31343,1,"Hotel de Ville - L. Pradel",45.767706,4.836058,0,0,DGL:SA:S5046,Europe/Paris,0,DGL, +DGL:SP:31345,1,"Romarin",45.768401,4.834353,0,0,DGL:SA:S30338,Europe/Paris,0,DGL, +DGL:SP:31346,1,"Capucins",45.769443,4.835648,0,0,DGL:SA:S30339,Europe/Paris,0,DGL, +DGL:SP:31347,1,"Imbert Colomes",45.771565,4.834947,0,0,DGL:SA:S30340,Europe/Paris,2,DGL, +DGL:SP:31349,1,"Place Morel",45.772125,4.827165,0,0,DGL:SA:S30342,Europe/Paris,2,DGL, +DGL:SP:3135,1,"Villeurbanne Bel Air",45.755682,4.91282,0,0,DGL:SA:S11465,Europe/Paris,2,DGL, +DGL:SP:31350,1,"Allouche",45.772318,4.83026,0,0,DGL:SA:S30343,Europe/Paris,2,DGL, +DGL:SP:31351,1,"Seve",45.772924,4.832153,0,0,DGL:SA:S30344,Europe/Paris,2,DGL, +DGL:SP:31352,1,"Les Chartreux",45.772715,4.821686,0,0,DGL:SA:S30345,Europe/Paris,2,DGL, +DGL:SP:31353,1,"Place Morel",45.771881,4.82642,0,0,DGL:SA:S30342,Europe/Paris,2,DGL, +DGL:SP:31354,1,"Burdeau",45.770296,4.832124,0,0,DGL:SA:S30346,Europe/Paris,2,DGL, +DGL:SP:3136,1,"Gare d'Albigny-Neuville",45.876482,4.835482,0,0,DGL:SA:S11466,Europe/Paris,2,DGL, +DGL:SP:31362,1,"Neyret",45.771312,4.831372,0,0,DGL:SA:S20071,Europe/Paris,2,DGL, +DGL:SP:3137,1,"Gare d'Albigny-Neuville",45.876349,4.835373,0,0,DGL:SA:S11466,Europe/Paris,2,DGL, +DGL:SP:314,1,"Cailloux Bellevue",45.853838,4.867506,0,0,DGL:SA:S10148,Europe/Paris,0,DGL, +DGL:SP:31402,1,"Cazeneuve - Berthelot",45.737848,4.865836,0,0,DGL:SA:S30347,Europe/Paris,2,DGL, +DGL:SP:31403,1,"Cazeneuve - Berliet",45.738765,4.866263,0,0,DGL:SA:S30194,Europe/Paris,2,DGL, +DGL:SP:3144,1,"Vincent Serre",45.768727,4.786882,0,0,DGL:SA:S11469,Europe/Paris,0,DGL, +DGL:SP:3145,1,"Vincent Serre",45.768919,4.786325,0,0,DGL:SA:S11469,Europe/Paris,2,DGL, +DGL:SP:3148,1,"Vitton - Belges",45.770087,4.856797,0,0,DGL:SA:S11470,Europe/Paris,2,DGL, +DGL:SP:31482,1,"Les Oiseaux",45.640436,4.802853,0,0,DGL:SA:S10827,Europe/Paris,2,DGL, +DGL:SP:3149,1,"Vitton - Belges",45.770526,4.856482,0,0,DGL:SA:S11470,Europe/Paris,2,DGL, +DGL:SP:315,1,"Cailloux Centre",45.854844,4.871237,0,0,DGL:SA:S10149,Europe/Paris,0,DGL, +DGL:SP:3150,1,"Viviani",45.726375,4.862718,0,0,DGL:SA:S11471,Europe/Paris,2,DGL, +DGL:SP:31502,1,"Point du Jour",45.756602,4.796771,0,0,DGL:SA:S11138,Europe/Paris,2,DGL, +DGL:SP:31503,1,"Point du Jour",45.756874,4.796693,0,0,DGL:SA:S11138,Europe/Paris,2,DGL, +DGL:SP:31504,1,"Pont de Collonges RD",45.815039,4.846771,0,0,DGL:SA:S11165,Europe/Paris,2,DGL, +DGL:SP:31506,1,"IUFM",45.773658,4.823375,0,0,DGL:SA:S30367,Europe/Paris,2,DGL, +DGL:SP:3151,1,"Viviani",45.727996,4.861643,0,0,DGL:SA:S11471,Europe/Paris,2,DGL, +DGL:SP:3156,1,"Garibaldi - Berthelot",45.743101,4.84714,0,0,DGL:SA:S5307,Europe/Paris,2,DGL, +DGL:SP:3157,1,"Place du Vercors",45.719687,5.00631,0,0,DGL:SA:S11474,Europe/Paris,0,DGL, +DGL:SP:31582,1,"Mont Louis",45.790587,4.787869,0,0,DGL:SA:S10994,Europe/Paris,0,DGL, +DGL:SP:31583,1,"College J.P.Rameau",45.792174,4.786924,0,0,DGL:SA:S11885,Europe/Paris,0,DGL, +DGL:SP:31584,1,"College J.P.Rameau",45.79204,4.786866,0,0,DGL:SA:S11885,Europe/Paris,0,DGL, +DGL:SP:31585,1,"Champagne Cimetiere",45.793018,4.786588,0,0,DGL:SA:S30377,Europe/Paris,0,DGL, +DGL:SP:316,1,"Cailloux Centre",45.854737,4.870794,0,0,DGL:SA:S10149,Europe/Paris,0,DGL, +DGL:SP:31602,1,"Le Visan",45.764117,4.789841,0,0,DGL:SA:S10756,Europe/Paris,2,DGL, +DGL:SP:31622,1,"Les Saules",45.818016,4.759086,0,0,DGL:SA:S11055,Europe/Paris,0,DGL, +DGL:SP:31623,1,"Les Saules",45.817813,4.759734,0,0,DGL:SA:S11055,Europe/Paris,0,DGL, +DGL:SP:31663,1,"Place Jean Jaures.",45.737876,4.837428,0,0,DGL:SA:S5221,Europe/Paris,2,DGL, +DGL:SP:3167,1,"Yon Lug",45.710812,4.820113,0,0,DGL:SA:S11478,Europe/Paris,2,DGL, +DGL:SP:3168,1,"Yon Lug",45.71148,4.820027,0,0,DGL:SA:S11478,Europe/Paris,0,DGL, +DGL:SP:31686,1,"Les Battieres",45.754365,4.782964,0,0,DGL:SA:S10771,Europe/Paris,2,DGL, +DGL:SP:31688,1,"Bron Liberation",45.729672,4.902438,0,0,DGL:SA:S10124,Europe/Paris,0,DGL, +DGL:SP:317,1,"Cailloux Chateau",45.848495,4.869759,0,0,DGL:SA:S10150,Europe/Paris,0,DGL, +DGL:SP:3173,1,"Yvours",45.689729,4.826753,0,0,DGL:SA:S11481,Europe/Paris,0,DGL, +DGL:SP:3174,1,"Yvours",45.689769,4.826903,0,0,DGL:SA:S11481,Europe/Paris,0,DGL, +DGL:SP:3175,1,"Z.I.C. Ouest",45.804436,4.865631,0,0,DGL:SA:S11482,Europe/Paris,2,DGL, +DGL:SP:3176,1,"Z.I.C. Ouest",45.804463,4.865632,0,0,DGL:SA:S11482,Europe/Paris,2,DGL, +DGL:SP:31764,1,"Monge",45.750488,4.910095,0,0,DGL:SA:S10963,Europe/Paris,2,DGL, +DGL:SP:31765,1,"Lycee de l'Automobile",45.751581,4.905195,0,0,DGL:SA:S30407,Europe/Paris,2,DGL, +DGL:SP:3177,1,"Z.I. Chassieu Restaurant",45.725924,4.969404,0,0,DGL:SA:S11483,Europe/Paris,0,DGL, +DGL:SP:3178,1,"Z.I. Chassieu Restaurant",45.725807,4.969411,0,0,DGL:SA:S11483,Europe/Paris,0,DGL, +DGL:SP:318,1,"Cailloux Chateau",45.848785,4.870056,0,0,DGL:SA:S10150,Europe/Paris,0,DGL, +DGL:SP:3184,1,"Z.I. Lionel Terray",45.771521,5.019477,0,0,DGL:SA:S11487,Europe/Paris,0,DGL, +DGL:SP:3186,1,"Z.I. Meyzieu De Lattre",45.77676,5.027773,0,0,DGL:SA:S11488,Europe/Paris,0,DGL, +DGL:SP:31862,1,"Les Six Noyers",45.763202,4.975098,0,0,DGL:SA:S30447,Europe/Paris,2,DGL, +DGL:SP:31863,1,"Les Six Noyers",45.763013,4.975102,0,0,DGL:SA:S30447,Europe/Paris,2,DGL, +DGL:SP:31864,1,"Condorcet",45.777931,4.867023,0,0,DGL:SA:S5300,Europe/Paris,2,DGL, +DGL:SP:31866,1,"Franklin - Joffre",45.753682,4.825108,0,0,DGL:SA:S30457,Europe/Paris,0,DGL, +DGL:SP:31882,1,"Nadaud - Vitriolerie",45.74317,4.833992,0,0,DGL:SA:S11011,Europe/Paris,2,DGL, +DGL:SP:31883,1,"Nadaud - Vitriolerie",45.743577,4.833895,0,0,DGL:SA:S11011,Europe/Paris,2,DGL, +DGL:SP:31896,1,"Stade de Gerland",45.726696,4.830006,0,0,DGL:SA:S5200,Europe/Paris,2,DGL, +DGL:SP:319,1,"Cailloux La Croix",45.853147,4.865027,0,0,DGL:SA:S10151,Europe/Paris,2,DGL, +DGL:SP:31902,1,"St Genis Verdun",45.692503,4.795231,0,0,DGL:SA:S30477,Europe/Paris,2,DGL, +DGL:SP:31903,1,"St Genis Verdun",45.692747,4.795216,0,0,DGL:SA:S30477,Europe/Paris,2,DGL, +DGL:SP:31904,1,"Hopital Henry Gabrielle",45.68918,4.792462,0,0,DGL:SA:S10564,Europe/Paris,2,DGL, +DGL:SP:31905,1,"Hopital Henry Gabrielle",45.689152,4.7925,0,0,DGL:SA:S10564,Europe/Paris,2,DGL, +DGL:SP:31906,1,"Lardillet",45.685006,4.789862,0,0,DGL:SA:S10714,Europe/Paris,0,DGL, +DGL:SP:31907,1,"Lardillet",45.684827,4.789815,0,0,DGL:SA:S10714,Europe/Paris,0,DGL, +DGL:SP:31908,1,"St Genis 2",45.681365,4.788429,0,0,DGL:SA:S11302,Europe/Paris,2,DGL, +DGL:SP:3194,1,"Z.I. Meyzieu Restaurant",45.774196,5.02726,0,0,DGL:SA:S11492,Europe/Paris,2,DGL, +DGL:SP:31982,1,"La Grappe d'Or",45.90258,4.843255,0,0,DGL:SA:S30497,Europe/Paris,2,DGL, +DGL:SP:31983,1,"La Grappe d'Or",45.902163,4.8429,0,0,DGL:SA:S30497,Europe/Paris,2,DGL, +DGL:SP:320,1,"Cailloux La Croix",45.852695,4.864697,0,0,DGL:SA:S10151,Europe/Paris,0,DGL, +DGL:SP:32002,1,"Palais de Justice - Mairie 3e",45.760444,4.848485,0,0,DGL:SA:S5303,Europe/Paris,2,DGL, +DGL:SP:3204,1,"Z.I. Terray - De Lattre",45.770727,5.025972,0,0,DGL:SA:S11497,Europe/Paris,0,DGL, +DGL:SP:3205,1,"Zac des Marronniers",45.816889,4.873438,0,0,DGL:SA:S11498,Europe/Paris,2,DGL, +DGL:SP:3206,1,"Zac des Marronniers",45.816903,4.873606,0,0,DGL:SA:S11498,Europe/Paris,2,DGL, +DGL:SP:32062,1,"Piscine du Roule",45.726027,4.807369,0,0,DGL:SA:S30527,Europe/Paris,0,DGL, +DGL:SP:32063,1,"Piscine du Roule",45.726372,4.807629,0,0,DGL:SA:S30527,Europe/Paris,0,DGL, +DGL:SP:3207,1,"Zephyrs",45.728122,5.015729,0,0,DGL:SA:S11499,Europe/Paris,0,DGL, +DGL:SP:3208,1,"Zephyrs",45.728157,5.015769,0,0,DGL:SA:S11499,Europe/Paris,0,DGL, +DGL:SP:3209,1,"Zola",45.770575,4.868177,0,0,DGL:SA:S11500,Europe/Paris,2,DGL, +DGL:SP:321,1,"Cailloux Mairie",45.851883,4.871577,0,0,DGL:SA:S10152,Europe/Paris,0,DGL, +DGL:SP:32102,1,"Perrache",45.749599,4.827012,0,0,DGL:SA:S5085,Europe/Paris,2,DGL, +DGL:SP:32103,1,"Perrache.",45.749567,4.827113,0,0,DGL:SA:S5085,Europe/Paris,2,DGL, +DGL:SP:32104,1,"Quai Claude Bernard",45.749618,4.835305,0,0,DGL:SA:S5501,Europe/Paris,2,DGL, +DGL:SP:32105,1,"Quai Claude Bernard",45.749653,4.83521,0,0,DGL:SA:S5501,Europe/Paris,2,DGL, +DGL:SP:32106,1,"Rue de l'Universite",45.751123,4.83896,0,0,DGL:SA:S5306,Europe/Paris,2,DGL, +DGL:SP:32107,1,"Rue de l'Universite",45.751189,4.839016,0,0,DGL:SA:S5306,Europe/Paris,2,DGL, +DGL:SP:32108,1,"Saint-Andre",45.752914,4.841001,0,0,DGL:SA:S5502,Europe/Paris,2,DGL, +DGL:SP:32109,1,"Saint-Andre",45.752886,4.841082,0,0,DGL:SA:S5502,Europe/Paris,2,DGL, +DGL:SP:32110,1,"Guillotiere",45.754902,4.842547,0,0,DGL:SA:S5044,Europe/Paris,2,DGL, +DGL:SP:32111,1,"Guillotiere",45.754939,4.842438,0,0,DGL:SA:S5044,Europe/Paris,2,DGL, +DGL:SP:32112,1,"Liberte",45.758866,4.842486,0,0,DGL:SA:S5304,Europe/Paris,2,DGL, +DGL:SP:32113,1,"Liberte",45.758859,4.842385,0,0,DGL:SA:S5304,Europe/Paris,2,DGL, +DGL:SP:32114,1,"Saxe - Prefecture",45.760087,4.845187,0,0,DGL:SA:S5400,Europe/Paris,2,DGL, +DGL:SP:32115,1,"Saxe - Prefecture",45.760161,4.845176,0,0,DGL:SA:S5400,Europe/Paris,2,DGL, +DGL:SP:32116,1,"Palais de Justice",45.76031,4.848463,0,0,DGL:SA:S5303,Europe/Paris,2,DGL, +DGL:SP:32117,1,"Palais de Justice",45.760385,4.848451,0,0,DGL:SA:S5303,Europe/Paris,2,DGL, +DGL:SP:32118,1,"Part-Dieu - Servient",45.760656,4.853826,0,0,DGL:SA:S5420,Europe/Paris,2,DGL, +DGL:SP:32119,1,"Part-Dieu - Servient",45.760762,4.853807,0,0,DGL:SA:S5420,Europe/Paris,2,DGL, +DGL:SP:32120,1,"Gare Part-Dieu",45.762006,4.857761,0,0,DGL:SA:S5520,Europe/Paris,2,DGL, +DGL:SP:32121,1,"Gare Part-Dieu",45.762016,4.857869,0,0,DGL:SA:S5520,Europe/Paris,2,DGL, +DGL:SP:32122,1,"Thiers - Lafayette",45.764332,4.862076,0,0,DGL:SA:S5302,Europe/Paris,2,DGL, +DGL:SP:32123,1,"Thiers - Lafayette",45.764328,4.861967,0,0,DGL:SA:S5302,Europe/Paris,2,DGL, +DGL:SP:32124,1,"College Bellecombe",45.766664,4.861968,0,0,DGL:SA:S5301,Europe/Paris,2,DGL, +DGL:SP:32125,1,"College Bellecombe",45.76666,4.861873,0,0,DGL:SA:S5301,Europe/Paris,2,DGL, +DGL:SP:32126,1,"Charpennes - C.Hernu",45.770864,4.863071,0,0,DGL:SA:S5102,Europe/Paris,2,DGL, +DGL:SP:32127,1,"Charpennes - C.Hernu",45.77103,4.862998,0,0,DGL:SA:S5102,Europe/Paris,2,DGL, +DGL:SP:32128,1,"Le Tonkin",45.774052,4.864049,0,0,DGL:SA:S5503,Europe/Paris,2,DGL, +DGL:SP:32129,1,"Le Tonkin",45.774128,4.86406,0,0,DGL:SA:S5503,Europe/Paris,2,DGL, +DGL:SP:32130,1,"Condorcet",45.777922,4.866947,0,0,DGL:SA:S5300,Europe/Paris,2,DGL, +DGL:SP:32131,1,"Condorcet",45.777916,4.866907,0,0,DGL:SA:S5300,Europe/Paris,2,DGL, +DGL:SP:32132,1,"Universite Lyon 1",45.780842,4.866309,0,0,DGL:SA:S5504,Europe/Paris,2,DGL, +DGL:SP:32133,1,"Universite Lyon 1",45.780906,4.866279,0,0,DGL:SA:S5504,Europe/Paris,2,DGL, +DGL:SP:32134,1,"La Doua - G. Berger",45.781489,4.872066,0,0,DGL:SA:S5280,Europe/Paris,2,DGL, +DGL:SP:32135,1,"La Doua - G. Berger",45.781564,4.872102,0,0,DGL:SA:S5280,Europe/Paris,2,DGL, +DGL:SP:32136,1,"INSA - Einstein",45.782421,4.877646,0,0,DGL:SA:S5505,Europe/Paris,2,DGL, +DGL:SP:32137,1,"INSA - Einstein",45.782483,4.877618,0,0,DGL:SA:S5505,Europe/Paris,2,DGL, +DGL:SP:32138,1,"IUT - Feyssine",45.786891,4.881982,0,0,DGL:SA:S5240,Europe/Paris,2,DGL, +DGL:SP:32139,1,"IUT - Feyssine.",45.786868,4.881882,0,0,DGL:SA:S5240,Europe/Paris,2,DGL, +DGL:SP:32140,1,"Centre Berthelot",45.747017,4.836314,0,0,DGL:SA:S5507,Europe/Paris,2,DGL, +DGL:SP:32141,1,"Centre Berthelot",45.74708,4.836356,0,0,DGL:SA:S5507,Europe/Paris,2,DGL, +DGL:SP:32142,1,"Jean Mace",45.745116,4.842258,0,0,DGL:SA:S5160,Europe/Paris,2,DGL, +DGL:SP:32143,1,"Jean Mace",45.745185,4.842301,0,0,DGL:SA:S5160,Europe/Paris,2,DGL, +DGL:SP:32144,1,"Garibaldi- Berthelot",45.743646,4.846861,0,0,DGL:SA:S5307,Europe/Paris,2,DGL, +DGL:SP:32145,1,"Garibaldi- Berthelot",45.743715,4.846903,0,0,DGL:SA:S5307,Europe/Paris,2,DGL, +DGL:SP:32146,1,"Route de Vienne",45.742113,4.851659,0,0,DGL:SA:S5308,Europe/Paris,2,DGL, +DGL:SP:32147,1,"Route de Vienne",45.742182,4.851702,0,0,DGL:SA:S5308,Europe/Paris,2,DGL, +DGL:SP:32148,1,"Jet d'Eau - M.France",45.739851,4.858713,0,0,DGL:SA:S5309,Europe/Paris,2,DGL, +DGL:SP:32149,1,"Jet d'Eau - M.France",45.739923,4.858758,0,0,DGL:SA:S5309,Europe/Paris,2,DGL, +DGL:SP:32150,1,"Villon",45.738385,4.863303,0,0,DGL:SA:S5508,Europe/Paris,2,DGL, +DGL:SP:32151,1,"Villon",45.738454,4.863346,0,0,DGL:SA:S5508,Europe/Paris,2,DGL, +DGL:SP:32152,1,"Bachut - Mairie 8eme",45.73682,4.868188,0,0,DGL:SA:S5310,Europe/Paris,2,DGL, +DGL:SP:32153,1,"Bachut - Mairie 8eme",45.736887,4.868231,0,0,DGL:SA:S5310,Europe/Paris,2,DGL, +DGL:SP:32154,1,"Jean XXIII- M.Bastie",45.740192,4.874552,0,0,DGL:SA:S5509,Europe/Paris,2,DGL, +DGL:SP:32155,1,"Jean XXIII- M.Bastie",45.740246,4.874477,0,0,DGL:SA:S5509,Europe/Paris,2,DGL, +DGL:SP:32156,1,"Grange Blanche",45.742496,4.879599,0,0,DGL:SA:S5041,Europe/Paris,2,DGL, +DGL:SP:32157,1,"Grange Blanche.",45.742414,4.879573,0,0,DGL:SA:S5041,Europe/Paris,2,DGL, +DGL:SP:32158,1,"Ambroise Pare",45.741493,4.883905,0,0,DGL:SA:S5311,Europe/Paris,2,DGL, +DGL:SP:32159,1,"Ambroise Pare",45.741558,4.883949,0,0,DGL:SA:S5311,Europe/Paris,2,DGL, +DGL:SP:32160,1,"Vinatier",45.738803,4.89325,0,0,DGL:SA:S5312,Europe/Paris,2,DGL, +DGL:SP:32161,1,"Vinatier",45.738868,4.893292,0,0,DGL:SA:S5312,Europe/Paris,2,DGL, +DGL:SP:32162,1,"Essarts - Iris",45.737206,4.898119,0,0,DGL:SA:S5510,Europe/Paris,2,DGL, +DGL:SP:32163,1,"Essarts - Iris",45.737264,4.898158,0,0,DGL:SA:S5510,Europe/Paris,2,DGL, +DGL:SP:32164,1,"Boutasse - C.Rousset",45.734899,4.904448,0,0,DGL:SA:S5313,Europe/Paris,2,DGL, +DGL:SP:32165,1,"Boutasse - C.Rousset",45.734972,4.9045,0,0,DGL:SA:S5313,Europe/Paris,2,DGL, +DGL:SP:32166,1,"Hotel de Ville- Bron",45.73338,4.909043,0,0,DGL:SA:S5484,Europe/Paris,2,DGL, +DGL:SP:32167,1,"Hotel de Ville- Bron",45.733446,4.909086,0,0,DGL:SA:S5484,Europe/Paris,2,DGL, +DGL:SP:32168,1,"Les Alizes",45.731506,4.914718,0,0,DGL:SA:S5511,Europe/Paris,2,DGL, +DGL:SP:32169,1,"Les Alizes",45.731572,4.914761,0,0,DGL:SA:S5511,Europe/Paris,2,DGL, +DGL:SP:32170,1,"Rebufer",45.727506,4.915646,0,0,DGL:SA:S5314,Europe/Paris,2,DGL, +DGL:SP:32171,1,"Rebufer",45.727496,4.915682,0,0,DGL:SA:S5314,Europe/Paris,2,DGL, +DGL:SP:32172,1,"Parilly - Universite",45.722088,4.915186,0,0,DGL:SA:S5861,Europe/Paris,2,DGL, +DGL:SP:32173,1,"Parilly - Universite",45.722131,4.915289,0,0,DGL:SA:S5861,Europe/Paris,2,DGL, +DGL:SP:32174,1,"Europe - Universite",45.719596,4.918176,0,0,DGL:SA:S5512,Europe/Paris,2,DGL, +DGL:SP:32175,1,"Europe - Universite",45.719659,4.918142,0,0,DGL:SA:S5512,Europe/Paris,2,DGL, +DGL:SP:322,1,"Cailloux Mairie",45.852236,4.872289,0,0,DGL:SA:S10152,Europe/Paris,0,DGL, +DGL:SP:32202,1,"Decines Mairie",45.768105,4.956253,0,0,DGL:SA:S30587,Europe/Paris,2,DGL, +DGL:SP:32203,1,"Decines Mairie",45.768204,4.956199,0,0,DGL:SA:S30587,Europe/Paris,2,DGL, +DGL:SP:32204,1,"Decines Republique",45.767614,4.960454,0,0,DGL:SA:S30588,Europe/Paris,0,DGL, +DGL:SP:32205,1,"Decines Republique",45.768651,4.960001,0,0,DGL:SA:S30588,Europe/Paris,0,DGL, +DGL:SP:32244,1,"Leclerc - Nadaud",45.744477,4.831467,0,0,DGL:SA:S30597,Europe/Paris,2,DGL, +DGL:SP:32245,1,"Leclerc - Nadaud",45.744522,4.831456,0,0,DGL:SA:S30597,Europe/Paris,2,DGL, +DGL:SP:32263,1,"Rue de l'Universite",45.751015,4.839028,0,0,DGL:SA:S5306,Europe/Paris,2,DGL, +DGL:SP:32283,1,"Bon Coin",45.760274,4.905704,0,0,DGL:SA:S10107,Europe/Paris,2,DGL, +DGL:SP:32287,1,"Marne - Lacouture",45.74294,4.910307,0,0,DGL:SA:S10919,Europe/Paris,2,DGL, +DGL:SP:32288,1,"Marne - Lacouture",45.742945,4.910488,0,0,DGL:SA:S10919,Europe/Paris,2,DGL, +DGL:SP:32291,1,"Lacouture",45.747661,4.911698,0,0,DGL:SA:S30609,Europe/Paris,2,DGL, +DGL:SP:32292,1,"Lacouture",45.748382,4.911655,0,0,DGL:SA:S30609,Europe/Paris,2,DGL, +DGL:SP:32295,1,"Marne - Montferrat",45.739952,4.914603,0,0,DGL:SA:S30611,Europe/Paris,0,DGL, +DGL:SP:32296,1,"Marne - Montferrat",45.739934,4.916929,0,0,DGL:SA:S30611,Europe/Paris,2,DGL, +DGL:SP:32299,1,"Fort de Bron",45.731383,4.91771,0,0,DGL:SA:S10451,Europe/Paris,2,DGL, +DGL:SP:323,1,"Mermoz - Californie",45.733559,4.878377,0,0,DGL:SA:S10153,Europe/Paris,2,DGL, +DGL:SP:32302,1,"Bel Air - Les Brosses",45.758224,4.909929,0,0,DGL:SA:S5563,Europe/Paris,2,DGL, +DGL:SP:32303,1,"Bel Air - Les Brosses",45.75819,4.909452,0,0,DGL:SA:S5563,Europe/Paris,2,DGL, +DGL:SP:32342,1,"Frere Benoit",45.763296,4.795244,0,0,DGL:SA:S10470,Europe/Paris,2,DGL, +DGL:SP:32343,1,"Joliot Curie",45.754545,4.787922,0,0,DGL:SA:S10602,Europe/Paris,0,DGL, +DGL:SP:32344,1,"Joliot Curie",45.754625,4.787579,0,0,DGL:SA:S10602,Europe/Paris,2,DGL, +DGL:SP:32362,1,"Champagne Cimetiere",45.794412,4.78584,0,0,DGL:SA:S30377,Europe/Paris,0,DGL, +DGL:SP:32363,1,"Champagne Verte Colline",45.797132,4.784906,0,0,DGL:SA:S30627,Europe/Paris,0,DGL, +DGL:SP:32364,1,"Champagne Verte Colline",45.794952,4.785426,0,0,DGL:SA:S30627,Europe/Paris,0,DGL, +DGL:SP:32365,1,"St Remy",45.798272,4.785883,0,0,DGL:SA:S30628,Europe/Paris,0,DGL, +DGL:SP:32366,1,"Bas de Loyasse",45.75987,4.810664,0,0,DGL:SA:S30629,Europe/Paris,0,DGL, +DGL:SP:32382,1,"Champagne Ecoles",45.795599,4.787514,0,0,DGL:SA:S30637,Europe/Paris,2,DGL, +DGL:SP:32404,1,"Jean Mace",45.746349,4.84239,0,0,DGL:SA:S5160,Europe/Paris,0,DGL, +DGL:SP:32444,1,"Cazeneuve - Berliet",45.739162,4.866256,0,0,DGL:SA:S30194,Europe/Paris,2,DGL, +DGL:SP:32445,1,"St Agnan",45.740788,4.863181,0,0,DGL:SA:S11289,Europe/Paris,2,DGL, +DGL:SP:32446,1,"Marius Berliet",45.742989,4.859772,0,0,DGL:SA:S30132,Europe/Paris,2,DGL, +DGL:SP:32447,1,"Lycee Colbert",45.746025,4.859257,0,0,DGL:SA:S5905,Europe/Paris,2,DGL, +DGL:SP:32482,1,"Jean Mace",45.746126,4.84229,0,0,DGL:SA:S5160,Europe/Paris,0,DGL, +DGL:SP:325,1,"Mermoz - Californie",45.733481,4.878257,0,0,DGL:SA:S10153,Europe/Paris,2,DGL, +DGL:SP:3250,1,"Jarrosson",45.741686,4.797634,0,0,DGL:SA:S11599,Europe/Paris,2,DGL, +DGL:SP:32502,1,"Gare Part-Dieu Vivier Merle",45.762312,4.857907,0,0,DGL:SA:S5520,Europe/Paris,2,DGL, +DGL:SP:32503,1,"Gare Part-Dieu Vivier Merle",45.761806,4.857999,0,0,DGL:SA:S5520,Europe/Paris,2,DGL, +DGL:SP:3251,1,"Jarrosson",45.74173,4.797713,0,0,DGL:SA:S11599,Europe/Paris,2,DGL, +DGL:SP:3252,1,"Mont Blanc - Montmartin",45.674549,4.921943,0,0,DGL:SA:S11600,Europe/Paris,2,DGL, +DGL:SP:3253,1,"Mont Blanc - Montmartin",45.674261,4.921968,0,0,DGL:SA:S11600,Europe/Paris,2,DGL, +DGL:SP:3254,1,"Abattoirs",45.675087,4.919695,0,0,DGL:SA:S11601,Europe/Paris,2,DGL, +DGL:SP:3255,1,"Abattoirs",45.675208,4.918738,0,0,DGL:SA:S11601,Europe/Paris,2,DGL, +DGL:SP:3258,1,"Route de St Priest",45.670973,4.902452,0,0,DGL:SA:S11603,Europe/Paris,0,DGL, +DGL:SP:32582,1,"Porte des Alpes",45.718436,4.925801,0,0,DGL:SA:S5260,Europe/Paris,2,DGL, +DGL:SP:32583,1,"Porte des Alpes..",45.718472,4.925833,0,0,DGL:SA:S5260,Europe/Paris,2,DGL, +DGL:SP:3259,1,"Route de St Priest",45.671309,4.903109,0,0,DGL:SA:S11603,Europe/Paris,0,DGL, +DGL:SP:326,1,"Caluire Bellerive",45.793585,4.826709,0,0,DGL:SA:S10154,Europe/Paris,0,DGL, +DGL:SP:32642,1,"Nervieux",45.810851,4.823797,0,0,DGL:SA:S30687,Europe/Paris,0,DGL, +DGL:SP:32643,1,"Nervieux",45.81073,4.823585,0,0,DGL:SA:S30687,Europe/Paris,0,DGL, +DGL:SP:32644,1,"Les Combes de St Cyr",45.812865,4.825922,0,0,DGL:SA:S30688,Europe/Paris,2,DGL, +DGL:SP:32645,1,"Les Combes de St Cyr",45.81256,4.82547,0,0,DGL:SA:S30688,Europe/Paris,2,DGL, +DGL:SP:32646,1,"Serpoly",45.814269,4.827182,0,0,DGL:SA:S30689,Europe/Paris,0,DGL, +DGL:SP:32647,1,"Serpoly",45.814323,4.827159,0,0,DGL:SA:S30689,Europe/Paris,2,DGL, +DGL:SP:32648,1,"La Baticoliere",45.815964,4.828675,0,0,DGL:SA:S10626,Europe/Paris,2,DGL, +DGL:SP:32650,1,"Route de Saint Romain",45.82119,4.830856,0,0,DGL:SA:S30690,Europe/Paris,2,DGL, +DGL:SP:32652,1,"Chantemale",45.822578,4.832056,0,0,DGL:SA:S30691,Europe/Paris,0,DGL, +DGL:SP:32653,1,"Chemin de l'Ecully",45.824551,4.833931,0,0,DGL:SA:S30692,Europe/Paris,0,DGL, +DGL:SP:32655,1,"Les Chanterelles",45.823634,4.835525,0,0,DGL:SA:S30693,Europe/Paris,2,DGL, +DGL:SP:32657,1,"Ecoles de Collonges",45.822572,4.838347,0,0,DGL:SA:S30694,Europe/Paris,0,DGL, +DGL:SP:32659,1,"Grand Port",45.820492,4.84039,0,0,DGL:SA:S30695,Europe/Paris,0,DGL, +DGL:SP:32682,1,"Gorge de Loup",45.766899,4.804189,0,0,STE:SA:OCE87721175,Europe/Paris,0,DGL, +DGL:SP:327,1,"Caluire Bellerive",45.793232,4.825985,0,0,DGL:SA:S10154,Europe/Paris,0,DGL, +DGL:SP:32722,1,"Berthier",45.745953,4.799265,0,0,DGL:SA:S5003,Europe/Paris,2,DGL, +DGL:SP:3273,1,"Henri Chevalier",45.783109,4.827057,0,0,DGL:SA:S11606,Europe/Paris,2,DGL, +DGL:SP:32742,1,"A.Thomas - INSERM",45.743773,4.876509,0,0,DGL:SA:S30707,Europe/Paris,2,DGL, +DGL:SP:32743,1,"Sacre Coeur",45.759084,4.867751,0,0,DGL:SA:S20142,Europe/Paris,2,DGL, +DGL:SP:32744,1,"Sacre Coeur",45.758869,4.86775,0,0,DGL:SA:S20142,Europe/Paris,2,DGL, +DGL:SP:3276,1,"Henon.",45.77953,4.826908,0,0,DGL:SA:S11607,Europe/Paris,0,DGL, +DGL:SP:32782,1,"Cazeneuve - Berthelot",45.737419,4.865315,0,0,DGL:SA:S30347,Europe/Paris,2,DGL, +DGL:SP:3281,1,"Linossier - Richan",45.779496,4.837353,0,0,DGL:SA:S11609,Europe/Paris,0,DGL, +DGL:SP:3282,1,"Place Cdt Arnaud",45.779964,4.834531,0,0,DGL:SA:S11610,Europe/Paris,2,DGL, +DGL:SP:3284,1,"Maurice Sceve",45.777121,4.836884,0,0,DGL:SA:S11611,Europe/Paris,2,DGL, +DGL:SP:32842,1,"Hotel de Ville - L. Pradel",45.766459,4.834835,0,0,DGL:SA:S5046,Europe/Paris,0,DGL, +DGL:SP:3285,1,"Maison des Canuts",45.777177,4.833555,0,0,DGL:SA:S11612,Europe/Paris,2,DGL, +DGL:SP:3286,1,"Georges Roudil",45.691604,4.886292,0,0,DGL:SA:S11613,Europe/Paris,0,DGL, +DGL:SP:3287,1,"Georges Roudil",45.692567,4.887467,0,0,DGL:SA:S11613,Europe/Paris,2,DGL, +DGL:SP:3288,1,"Venissieux Blanqui",45.702056,4.873916,0,0,DGL:SA:S11614,Europe/Paris,0,DGL, +DGL:SP:3289,1,"Venissieux Blanqui",45.702121,4.873842,0,0,DGL:SA:S11614,Europe/Paris,0,DGL, +DGL:SP:329,1,"Caluire Centre",45.799772,4.847618,0,0,DGL:SA:S10155,Europe/Paris,2,DGL, +DGL:SP:32942,1,"Mont Louis",45.790324,4.787961,0,0,DGL:SA:S10994,Europe/Paris,0,DGL, +DGL:SP:32962,1,"Grange Blanche",45.742935,4.87854,0,0,DGL:SA:S5041,Europe/Paris,2,DGL, +DGL:SP:3297,1,"Liberte",45.758775,4.842609,0,0,DGL:SA:S5304,Europe/Paris,2,DGL, +DGL:SP:3298,1,"Z.I. Chateau d'eau",45.826767,4.906328,0,0,DGL:SA:S11619,Europe/Paris,2,DGL, +DGL:SP:3299,1,"Z.I. Chateau d'eau",45.826589,4.906101,0,0,DGL:SA:S11619,Europe/Paris,2,DGL, +DGL:SP:33,1,"Albigny Centre",45.865306,4.834509,0,0,DGL:SA:S10016,Europe/Paris,2,DGL, +DGL:SP:3300,1,"Z.I. Champ du Roy",45.828904,4.90836,0,0,DGL:SA:S11620,Europe/Paris,2,DGL, +DGL:SP:3301,1,"Z.I. Champ du Roy",45.828489,4.908418,0,0,DGL:SA:S11620,Europe/Paris,2,DGL, +DGL:SP:33042,1,"Part-Dieu Servient",45.760697,4.852444,0,0,DGL:SA:S5420,Europe/Paris,2,DGL, +DGL:SP:33043,1,"Le Ponterle",45.75685,4.747147,0,0,DGL:SA:S30768,Europe/Paris,2,DGL, +DGL:SP:33044,1,"Le Ponterle",45.756847,4.747713,0,0,DGL:SA:S30768,Europe/Paris,2,DGL, +DGL:SP:33045,1,"Marcy Saule",45.778583,4.702048,0,0,DGL:SA:S30769,Europe/Paris,0,DGL, +DGL:SP:33046,1,"Marcy Saule",45.778449,4.70158,0,0,DGL:SA:S30769,Europe/Paris,0,DGL, +DGL:SP:3305,1,"Gare Saint Paul",45.766051,4.827918,0,0,DGL:SA:S11327,Europe/Paris,0,DGL, +DGL:SP:33062,1,"Cuzin - Picasso",45.775207,4.917928,0,0,DGL:SA:S30777,Europe/Paris,0,DGL, +DGL:SP:33063,1,"Cuzin - Picasso",45.77526,4.917969,0,0,DGL:SA:S30777,Europe/Paris,0,DGL, +DGL:SP:33102,1,"Robert Reynier",45.708081,4.86141,0,0,DGL:SA:S30797,Europe/Paris,2,DGL, +DGL:SP:33123,1,"Subsistances",45.76766,4.817445,0,0,DGL:SA:S30807,Europe/Paris,0,DGL, +DGL:SP:33124,1,"Marietton - S. Apollinaire",45.774694,4.793927,0,0,DGL:SA:S20509,Europe/Paris,2,DGL, +DGL:SP:33125,1,"College des Battieres",45.751231,4.781423,0,0,DGL:SA:S30808,Europe/Paris,0,DGL, +DGL:SP:33126,1,"College des Battieres",45.751192,4.781537,0,0,DGL:SA:S30808,Europe/Paris,0,DGL, +DGL:SP:33127,1,"Berjon - St Simon",45.776313,4.797653,0,0,DGL:SA:S10088,Europe/Paris,2,DGL, +DGL:SP:33128,1,"Marietton - Pont SNCF",45.775915,4.800645,0,0,DGL:SA:S20462,Europe/Paris,0,DGL, +DGL:SP:3316,1,"Grand Chassagnon",45.701932,4.863467,0,0,DGL:SA:S10515,Europe/Paris,0,DGL, +DGL:SP:3317,1,"Grand Chassagnon",45.701969,4.863417,0,0,DGL:SA:S10515,Europe/Paris,0,DGL, +DGL:SP:33203,1,"Parc Technologique",45.714363,4.931192,0,0,DGL:SA:S5513,Europe/Paris,2,DGL, +DGL:SP:33204,1,"Parc Technologique",45.71442,4.931262,0,0,DGL:SA:S5513,Europe/Paris,2,DGL, +DGL:SP:33205,1,"Hauts de Feuilly",45.708147,4.937561,0,0,DGL:SA:S5514,Europe/Paris,2,DGL, +DGL:SP:33206,1,"Hauts de Feuilly",45.708081,4.93761,0,0,DGL:SA:S5514,Europe/Paris,2,DGL, +DGL:SP:33207,1,"Salvador Allende",45.703434,4.934843,0,0,DGL:SA:S5515,Europe/Paris,2,DGL, +DGL:SP:33208,1,"Salvador Allende",45.703449,4.934954,0,0,DGL:SA:S5515,Europe/Paris,2,DGL, +DGL:SP:33209,1,"Alfred de Vigny",45.699621,4.936097,0,0,DGL:SA:S5481,Europe/Paris,2,DGL, +DGL:SP:3321,1,"Marcy Sources",45.787438,4.706868,0,0,DGL:SA:S11629,Europe/Paris,2,DGL, +DGL:SP:33210,1,"Alfred de Vigny",45.699628,4.936123,0,0,DGL:SA:S5481,Europe/Paris,2,DGL, +DGL:SP:33211,1,"St-Priest H.de Ville",45.695023,4.936851,0,0,DGL:SA:S5480,Europe/Paris,2,DGL, +DGL:SP:33212,1,"St-Priest H.de Ville",45.695098,4.936854,0,0,DGL:SA:S5480,Europe/Paris,2,DGL, +DGL:SP:33213,1,"Esplanade des Arts",45.694458,4.940619,0,0,DGL:SA:S5440,Europe/Paris,2,DGL, +DGL:SP:33214,1,"Esplanade des Arts",45.694532,4.940635,0,0,DGL:SA:S5440,Europe/Paris,2,DGL, +DGL:SP:33215,1,"Jules Ferry",45.694692,4.94686,0,0,DGL:SA:S5482,Europe/Paris,2,DGL, +DGL:SP:33216,1,"Jules Ferry",45.694747,4.946775,0,0,DGL:SA:S5482,Europe/Paris,2,DGL, +DGL:SP:33217,1,"Cordiere",45.693629,4.949697,0,0,DGL:SA:S5516,Europe/Paris,2,DGL, +DGL:SP:33218,1,"Cordiere",45.693682,4.949785,0,0,DGL:SA:S5516,Europe/Paris,2,DGL, +DGL:SP:33219,1,"St-Priest Bel Air",45.692696,4.955837,0,0,DGL:SA:S5483,Europe/Paris,2,DGL, +DGL:SP:3322,1,"Marcy Sources",45.788216,4.707082,0,0,DGL:SA:S11629,Europe/Paris,2,DGL, +DGL:SP:33221,1,"St-Priest Bel Air.",45.69262,4.955829,0,0,DGL:SA:S5483,Europe/Paris,2,DGL, +DGL:SP:33222,1,"Porte des Alpes",45.7184,4.925699,0,0,DGL:SA:S5260,Europe/Paris,2,DGL, +DGL:SP:3324,1,"Pont des Razes",45.667144,4.850561,0,0,DGL:SA:S5086,Europe/Paris,2,DGL, +DGL:SP:3325,1,"Pont des Razes",45.667215,4.850615,0,0,DGL:SA:S5086,Europe/Paris,2,DGL, +DGL:SP:3326,1,"Jodino - A.F.P.A.",45.691277,4.882449,0,0,DGL:SA:S11541,Europe/Paris,0,DGL, +DGL:SP:33264,1,"Vieux Lyon - Cat. St Jean",45.760133,4.826536,0,0,DGL:SA:S5095,Europe/Paris,2,DGL, +DGL:SP:33265,1,"Vieux Lyon - Cat. St Jean.",45.760059,4.826488,0,0,DGL:SA:S5095,Europe/Paris,2,DGL, +DGL:SP:3327,1,"Jodino - A.F.P.A.",45.69122,4.882999,0,0,DGL:SA:S11541,Europe/Paris,0,DGL, +DGL:SP:3328,1,"Corbas Gabriel Peri",45.676213,4.916911,0,0,DGL:SA:S10008,Europe/Paris,0,DGL, +DGL:SP:33284,1,"Ste Foy Les Sources",45.740981,4.789131,0,0,DGL:SA:S30073,Europe/Paris,0,DGL, +DGL:SP:33285,1,"Ste Foy Les Sources",45.741008,4.789171,0,0,DGL:SA:S30073,Europe/Paris,0,DGL, +DGL:SP:33288,1,"Ste Foy Chatelain.",45.736197,4.794689,0,0,DGL:SA:S5500,Europe/Paris,0,DGL, +DGL:SP:33289,1,"Ste Foy Chatelain.",45.736155,4.794996,0,0,DGL:SA:S5500,Europe/Paris,0,DGL, +DGL:SP:3329,1,"Corbas Gabriel Peri",45.676391,4.917034,0,0,DGL:SA:S10008,Europe/Paris,0,DGL, +DGL:SP:333,1,"Caluire Place Foch",45.797624,4.851882,0,0,DGL:SA:S10157,Europe/Paris,2,DGL, +DGL:SP:3330,1,"Mions Mairie",45.664562,4.95778,0,0,DGL:SA:S10959,Europe/Paris,0,DGL, +DGL:SP:33304,1,"Le Centenaire",45.698404,4.830485,0,0,DGL:SA:S30877,Europe/Paris,2,DGL, +DGL:SP:33305,1,"Le Centenaire",45.698489,4.830309,0,0,DGL:SA:S30877,Europe/Paris,2,DGL, +DGL:SP:3331,1,"Chorel",45.774909,4.864929,0,0,DGL:SA:S10232,Europe/Paris,0,DGL, +DGL:SP:3333,1,"Massena",45.768861,4.85247,0,0,DGL:SA:S5081,Europe/Paris,2,DGL, +DGL:SP:3336,1,"St Priest Hotel de Ville",45.694853,4.934958,0,0,DGL:SA:S5480,Europe/Paris,2,DGL, +DGL:SP:334,1,"Caluire Place Foch",45.797852,4.851764,0,0,DGL:SA:S10157,Europe/Paris,2,DGL, +DGL:SP:3342,1,"Square Meunier",45.666021,4.904108,0,0,DGL:SA:S11287,Europe/Paris,0,DGL, +DGL:SP:3343,1,"Square Meunier",45.665801,4.90388,0,0,DGL:SA:S11287,Europe/Paris,2,DGL, +DGL:SP:3346,1,"Lycee Cuzin",45.801761,4.856061,0,0,DGL:SA:S20241,Europe/Paris,2,DGL, +DGL:SP:33465,1,"Pont des Planches",45.769945,4.907121,0,0,DGL:SA:S11178,Europe/Paris,0,DGL, +DGL:SP:33468,1,"Vaulx HDV Campus",45.776578,4.920115,0,0,DGL:SA:S11424,Europe/Paris,2,DGL, +DGL:SP:33469,1,"Vaulx HDV Campus",45.776572,4.919986,0,0,DGL:SA:S11424,Europe/Paris,2,DGL, +DGL:SP:33485,1,"Le Moulin",45.695049,4.823461,0,0,DGL:SA:S30947,Europe/Paris,2,DGL, +DGL:SP:33486,1,"Le Moulin",45.695046,4.824013,0,0,DGL:SA:S30947,Europe/Paris,2,DGL, +DGL:SP:335,1,"Caluire Thimonnier",45.805115,4.869021,0,0,DGL:SA:S10158,Europe/Paris,2,DGL, +DGL:SP:33525,1,"Rouget de l'Isle",45.754406,4.866841,0,0,DGL:SA:S11235,Europe/Paris,2,DGL, +DGL:SP:33545,1,"Guillotiere - Gabriel Peri",45.75593,4.842961,0,0,DGL:SA:S5044,Europe/Paris,2,DGL, +DGL:SP:33565,1,"Feyzin Chateau de l'Isle",45.672155,4.850712,0,0,DGL:SA:S10435,Europe/Paris,0,DGL, +DGL:SP:336,1,"Caluire Thimonnier",45.80508,4.868595,0,0,DGL:SA:S10158,Europe/Paris,2,DGL, +DGL:SP:3364,1,"Neuville",45.876334,4.838478,0,0,DGL:SA:S5640,Europe/Paris,0,DGL, +DGL:SP:33645,1,"Croix-Rousse Nord",45.783925,4.823968,0,0,DGL:SA:S30957,Europe/Paris,2,DGL, +DGL:SP:337,1,"Caluire Victor Hugo",45.80097,4.841508,0,0,DGL:SA:S10159,Europe/Paris,0,DGL, +DGL:SP:3370,1,"J.Jaures - Pommier",45.778824,5.022033,0,0,DGL:SA:S10584,Europe/Paris,2,DGL, +DGL:SP:33725,1,"Henri Marechal",45.692084,4.939053,0,0,DGL:SA:S30967,Europe/Paris,2,DGL, +DGL:SP:33767,1,"Perrache",45.749281,4.827134,0,0,DGL:SA:S5085,Europe/Paris,0,DGL, +DGL:SP:33769,1,"Perrache",45.749232,4.827298,0,0,DGL:SA:S5085,Europe/Paris,0,DGL, +DGL:SP:33770,1,"Perrache",45.749464,4.82781,0,0,DGL:SA:S5085,Europe/Paris,0,DGL, +DGL:SP:33771,1,"Perrache",45.749164,4.827527,0,0,DGL:SA:S5085,Europe/Paris,0,DGL, +DGL:SP:33773,1,"Perrache",45.750114,4.825705,0,0,DGL:SA:S5085,Europe/Paris,0,DGL, +DGL:SP:33775,1,"Perrache",45.750092,4.825859,0,0,DGL:SA:S5085,Europe/Paris,0,DGL, +DGL:SP:33777,1,"Perrache",45.750025,4.826049,0,0,DGL:SA:S5085,Europe/Paris,0,DGL, +DGL:SP:33778,1,"Perrache",45.749918,4.826429,0,0,DGL:SA:S5085,Europe/Paris,0,DGL, +DGL:SP:33779,1,"Perrache",45.749799,4.825678,0,0,DGL:SA:S5085,Europe/Paris,0,DGL, +DGL:SP:3378,1,"Cuire",45.785638,4.832756,0,0,DGL:SA:S5022,Europe/Paris,2,DGL, +DGL:SP:33780,1,"Perrache",45.749966,4.826265,0,0,DGL:SA:S5085,Europe/Paris,0,DGL, +DGL:SP:33782,1,"Perrache",45.749878,4.826595,0,0,DGL:SA:S5085,Europe/Paris,0,DGL, +DGL:SP:338,1,"Caluire Victor Hugo",45.800786,4.841281,0,0,DGL:SA:S10159,Europe/Paris,0,DGL, +DGL:SP:3380,1,"Novy Jicin",45.695792,4.89725,0,0,DGL:SA:S11030,Europe/Paris,0,DGL, +DGL:SP:3381,1,"Pont d'Ecully",45.773108,4.791481,0,0,DGL:SA:S11161,Europe/Paris,0,DGL, +DGL:SP:3382,1,"Pont d'Ecully",45.77286,4.791736,0,0,DGL:SA:S11161,Europe/Paris,2,DGL, +DGL:SP:33845,1,"Parilly",45.720253,4.887182,0,0,DGL:SA:S5084,Europe/Paris,2,DGL, +DGL:SP:3388,1,"Nicolas Sicard",45.75621,4.792497,0,0,DGL:SA:S11643,Europe/Paris,2,DGL, +DGL:SP:3389,1,"Nicolas Sicard",45.756005,4.791575,0,0,DGL:SA:S11643,Europe/Paris,2,DGL, +DGL:SP:339,1,"Cambon",45.722028,4.879592,0,0,DGL:SA:S10160,Europe/Paris,0,DGL, +DGL:SP:33945,1,"Pont des Razes",45.668015,4.850665,0,0,DGL:SA:S5086,Europe/Paris,2,DGL, +DGL:SP:33948,1,"Viviani",45.726656,4.863142,0,0,DGL:SA:S11471,Europe/Paris,0,DGL, +DGL:SP:33949,1,"Gare de Villeurbanne",45.755294,4.891198,0,0,DGL:SA:S5562,Europe/Paris,2,DGL, +DGL:SP:3398,1,"St Clair - Square Brosset",45.791016,4.861153,0,0,DGL:SA:S11293,Europe/Paris,2,DGL, +DGL:SP:33989,1,"Gymnase Frison Roche",45.689724,4.858797,0,0,DGL:SA:S31037,Europe/Paris,0,DGL, +DGL:SP:3399,1,"Montee Castellane",45.808522,4.898615,0,0,DGL:SA:S11649,Europe/Paris,0,DGL, +DGL:SP:33990,1,"Gymnase Frison Roche",45.689768,4.858837,0,0,DGL:SA:S31037,Europe/Paris,0,DGL, +DGL:SP:34,1,"Albigny Centre",45.864955,4.834506,0,0,DGL:SA:S10016,Europe/Paris,2,DGL, +DGL:SP:340,1,"Cambon",45.72217,4.879676,0,0,DGL:SA:S10160,Europe/Paris,0,DGL, +DGL:SP:3400,1,"Montee Castellane",45.808627,4.898748,0,0,DGL:SA:S11649,Europe/Paris,0,DGL, +DGL:SP:34005,1,"Gare de Vaise",45.780556,4.804892,0,0,DGL:SA:S5103,Europe/Paris,2,DGL, +DGL:SP:34006,1,"Duchere Lanessan",45.791452,4.797288,0,0,DGL:SA:S10371,Europe/Paris,0,DGL, +DGL:SP:3401,1,"Castellane - Mont Blanc",45.811908,4.896971,0,0,DGL:SA:S11650,Europe/Paris,0,DGL, +DGL:SP:3402,1,"Castellane - Mont Blanc",45.81199,4.89736,0,0,DGL:SA:S11650,Europe/Paris,0,DGL, +DGL:SP:34026,1,"Cite Internationale - Quai CDG",45.785211,4.851893,0,0,DGL:SA:S5661,Europe/Paris,0,DGL, +DGL:SP:34067,1,"Croix-Luizet",45.783627,4.883145,0,0,DGL:SA:S5506,Europe/Paris,2,DGL, +DGL:SP:34068,1,"Croix-Luizet",45.783724,4.883111,0,0,DGL:SA:S5506,Europe/Paris,2,DGL, +DGL:SP:3409,1,"Z.I. Rillieux 8 mai 1945",45.81365,4.879738,0,0,DGL:SA:S11654,Europe/Paris,0,DGL, +DGL:SP:341,1,"Camping International",45.821424,4.760948,0,0,DGL:SA:S10161,Europe/Paris,0,DGL, +DGL:SP:3410,1,"Z.I. Rillieux 8 mai 1945",45.813743,4.879601,0,0,DGL:SA:S11654,Europe/Paris,0,DGL, +DGL:SP:34107,1,"Chassieu Place",45.738176,4.969771,0,0,DGL:SA:S5020,Europe/Paris,2,DGL, +DGL:SP:34109,1,"Chassieu Place",45.737766,4.968813,0,0,DGL:SA:S5020,Europe/Paris,0,DGL, +DGL:SP:3411,1,"Z.I. Rillieux Mercieres",45.815231,4.878292,0,0,DGL:SA:S11655,Europe/Paris,2,DGL, +DGL:SP:34110,1,"Castors",45.751447,4.808961,0,0,DGL:SA:S31068,Europe/Paris,2,DGL, +DGL:SP:34111,1,"Castors",45.752217,4.808713,0,0,DGL:SA:S31068,Europe/Paris,2,DGL, +DGL:SP:34112,1,"Achard",45.748215,4.80897,0,0,DGL:SA:S31069,Europe/Paris,2,DGL, +DGL:SP:34113,1,"Achard",45.748457,4.809006,0,0,DGL:SA:S31069,Europe/Paris,2,DGL, +DGL:SP:3412,1,"Z.I. Rillieux Mercieres",45.815195,4.878278,0,0,DGL:SA:S11655,Europe/Paris,2,DGL, +DGL:SP:3413,1,"Z.I. Rillieux Hippodrome",45.815976,4.880785,0,0,DGL:SA:S11656,Europe/Paris,0,DGL, +DGL:SP:3414,1,"Z.I. Rillieux Hippodrome",45.816223,4.880604,0,0,DGL:SA:S11656,Europe/Paris,2,DGL, +DGL:SP:34150,1,"J.Jaures - Pommier",45.778022,5.021286,0,0,DGL:SA:S10584,Europe/Paris,2,DGL, +DGL:SP:34151,1,"Jonage Chateau des Marres",45.79993,5.060298,0,0,DGL:SA:S10603,Europe/Paris,0,DGL, +DGL:SP:342,1,"Camping International",45.821428,4.76073,0,0,DGL:SA:S10161,Europe/Paris,0,DGL, +DGL:SP:34210,1,"St Genis 2",45.680862,4.789292,0,0,DGL:SA:S11302,Europe/Paris,2,DGL, +DGL:SP:34211,1,"Guilloux",45.688742,4.807071,0,0,DGL:SA:S31088,Europe/Paris,2,DGL, +DGL:SP:34212,1,"Guilloux",45.689127,4.807551,0,0,DGL:SA:S31088,Europe/Paris,2,DGL, +DGL:SP:34213,1,"Citadelle",45.68738,4.805122,0,0,DGL:SA:S31089,Europe/Paris,2,DGL, +DGL:SP:34214,1,"Citadelle",45.687301,4.805067,0,0,DGL:SA:S31089,Europe/Paris,2,DGL, +DGL:SP:34230,1,"La Vernique",45.773229,4.782665,0,0,DGL:SA:S10701,Europe/Paris,0,DGL, +DGL:SP:34231,1,"La Vernique",45.773246,4.782736,0,0,DGL:SA:S10701,Europe/Paris,0,DGL, +DGL:SP:34232,1,"Clinique Mon Repos",45.771091,4.783708,0,0,DGL:SA:S31098,Europe/Paris,0,DGL, +DGL:SP:34233,1,"Clinique Mon Repos",45.77099,4.783832,0,0,DGL:SA:S31098,Europe/Paris,0,DGL, +DGL:SP:34234,1,"Clinique Val d'Ouest",45.769062,4.784711,0,0,DGL:SA:S31099,Europe/Paris,0,DGL, +DGL:SP:34235,1,"Clinique Val d'Ouest",45.769446,4.784432,0,0,DGL:SA:S31099,Europe/Paris,0,DGL, +DGL:SP:34237,1,"Duchere Castilla",45.788842,4.796464,0,0,DGL:SA:S31100,Europe/Paris,2,DGL, +DGL:SP:34238,1,"Duchere Castilla",45.788987,4.796805,0,0,DGL:SA:S31100,Europe/Paris,2,DGL, +DGL:SP:3426,1,"Clos Chaurand",45.693184,4.797856,0,0,DGL:SA:S10264,Europe/Paris,2,DGL, +DGL:SP:3427,1,"Clos Chaurand",45.693064,4.797979,0,0,DGL:SA:S10264,Europe/Paris,2,DGL, +DGL:SP:34291,1,"Jean Giono",45.690187,4.801099,0,0,DGL:SA:S10592,Europe/Paris,2,DGL, +DGL:SP:34292,1,"Jean Giono",45.689911,4.80137,0,0,DGL:SA:S10592,Europe/Paris,2,DGL, +DGL:SP:34293,1,"St Genis Collonges",45.692895,4.808105,0,0,DGL:SA:S11306,Europe/Paris,2,DGL, +DGL:SP:34294,1,"St Genis Collonges",45.693047,4.808163,0,0,DGL:SA:S11306,Europe/Paris,2,DGL, +DGL:SP:343,1,"Carette",45.786453,4.840204,0,0,DGL:SA:S10162,Europe/Paris,2,DGL, +DGL:SP:34313,1,"Feyzin Oasis",45.681069,4.866593,0,0,DGL:SA:S31120,Europe/Paris,0,DGL, +DGL:SP:34314,1,"Feyzin Oasis",45.681154,4.86679,0,0,DGL:SA:S31120,Europe/Paris,2,DGL, +DGL:SP:34316,1,"Les Roussettes",45.677749,4.862139,0,0,DGL:SA:S10840,Europe/Paris,0,DGL, +DGL:SP:34317,1,"Les Roussettes",45.677668,4.861737,0,0,DGL:SA:S10840,Europe/Paris,0,DGL, +DGL:SP:3434,1,"Gorge de Loup",45.766685,4.805286,0,0,STE:SA:OCE87721175,Europe/Paris,0,DGL, +DGL:SP:34350,1,"Gare Part-Dieu Vivier Merle",45.760143,4.857872,0,0,DGL:SA:S5520,Europe/Paris,2,DGL, +DGL:SP:34392,1,"St Priest Salengro",45.69054,4.936565,0,0,DGL:SA:S31139,Europe/Paris,2,DGL, +DGL:SP:34394,1,"St Priest Jules Ferry",45.694814,4.946722,0,0,DGL:SA:S5482,Europe/Paris,2,DGL, +DGL:SP:344,1,"Carette",45.786291,4.83981,0,0,DGL:SA:S10162,Europe/Paris,2,DGL, +DGL:SP:3440,1,"Les Narcisses",45.761295,4.723205,0,0,DGL:SA:S11668,Europe/Paris,2,DGL, +DGL:SP:3441,1,"Les Narcisses",45.761108,4.723132,0,0,DGL:SA:S11668,Europe/Paris,2,DGL, +DGL:SP:34410,1,"Route d'Heyrieux",45.688006,4.942199,0,0,DGL:SA:S31148,Europe/Paris,0,DGL, +DGL:SP:34411,1,"St Priest Bel Air",45.693167,4.957498,0,0,DGL:SA:S5483,Europe/Paris,2,DGL, +DGL:SP:34412,1,"St Priest Bel Air",45.693015,4.957452,0,0,DGL:SA:S5483,Europe/Paris,2,DGL, +DGL:SP:34414,1,"Pasteur - 11 Novembre",45.701067,4.925886,0,0,DGL:SA:S31150,Europe/Paris,2,DGL, +DGL:SP:34415,1,"St Priest Gare",45.688114,4.935218,0,0,DGL:SA:S11335,Europe/Paris,2,DGL, +DGL:SP:34416,1,"Gare de Venissieux",45.706297,4.888552,0,0,STE:SA:OCE87723320,Europe/Paris,2,DGL, +DGL:SP:34417,1,"Louise Michel",45.774269,4.893585,0,0,DGL:SA:S10869,Europe/Paris,0,DGL, +DGL:SP:3442,1,"Le Vorlat",45.762702,4.72477,0,0,DGL:SA:S11669,Europe/Paris,0,DGL, +DGL:SP:3443,1,"Le Vorlat",45.762679,4.724589,0,0,DGL:SA:S11669,Europe/Paris,0,DGL, +DGL:SP:34434,1,"Esplanade des Arts",45.694115,4.94114,0,0,DGL:SA:S5440,Europe/Paris,2,DGL, +DGL:SP:34435,1,"Henri Marechal",45.692165,4.939057,0,0,DGL:SA:S30967,Europe/Paris,2,DGL, +DGL:SP:34453,1,"Venissieux Allende",45.696029,4.903414,0,0,DGL:SA:S20360,Europe/Paris,2,DGL, +DGL:SP:34454,1,"Timbaud - Charbonnier",45.693325,4.905934,0,0,DGL:SA:S31170,Europe/Paris,2,DGL, +DGL:SP:34455,1,"Timbaud - Charbonnier",45.693332,4.906011,0,0,DGL:SA:S31170,Europe/Paris,2,DGL, +DGL:SP:34456,1,"Henaff - Charbonnier",45.690996,4.907816,0,0,DGL:SA:S31171,Europe/Paris,0,DGL, +DGL:SP:34457,1,"Henaff - Charbonnier",45.691745,4.907311,0,0,DGL:SA:S31171,Europe/Paris,0,DGL, +DGL:SP:34458,1,"Dauphine - Charbonnier",45.685066,4.910454,0,0,DGL:SA:S31172,Europe/Paris,0,DGL, +DGL:SP:34459,1,"Dauphine - Charbonnier",45.685609,4.911122,0,0,DGL:SA:S31172,Europe/Paris,0,DGL, +DGL:SP:34460,1,"St Martin",45.704684,4.950003,0,0,DGL:SA:S11322,Europe/Paris,0,DGL, +DGL:SP:34494,1,"Z.I. Le Carreau",45.680401,4.894441,0,0,DGL:SA:S31180,Europe/Paris,0,DGL, +DGL:SP:34495,1,"Z.I. Le Carreau",45.680536,4.894435,0,0,DGL:SA:S31180,Europe/Paris,0,DGL, +DGL:SP:3453,1,"Bron Droits de l'Homme",45.734344,4.931783,0,0,DGL:SA:S11674,Europe/Paris,0,DGL, +DGL:SP:34533,1,"Parc des Corbeges",45.684032,4.931493,0,0,DGL:SA:S31190,Europe/Paris,0,DGL, +DGL:SP:34534,1,"Parc des Corbeges",45.684176,4.931102,0,0,DGL:SA:S31190,Europe/Paris,0,DGL, +DGL:SP:34535,1,"Esplanade des Arts",45.694,4.941044,0,0,DGL:SA:S5440,Europe/Paris,2,DGL, +DGL:SP:34536,1,"St Priest Jules Ferry",45.694358,4.946559,0,0,DGL:SA:S5482,Europe/Paris,2,DGL, +DGL:SP:34541,1,"Manissieux Mont-Blanc",45.69779,4.988689,0,0,DGL:SA:S31192,Europe/Paris,0,DGL, +DGL:SP:34542,1,"Rue des Alpes",45.700118,4.989585,0,0,DGL:SA:S31193,Europe/Paris,0,DGL, +DGL:SP:34543,1,"Route de Toussieu",45.689176,4.983676,0,0,DGL:SA:S31194,Europe/Paris,0,DGL, +DGL:SP:34544,1,"Route de Toussieu",45.689184,4.983741,0,0,DGL:SA:S31194,Europe/Paris,0,DGL, +DGL:SP:3455,1,"Meyzieu Hotel de Ville",45.765535,5.005885,0,0,DGL:SA:S11675,Europe/Paris,2,DGL, +DGL:SP:34554,1,"St Priest Salengro",45.690722,4.937627,0,0,DGL:SA:S31139,Europe/Paris,2,DGL, +DGL:SP:34593,1,"Route d'Heyrieux",45.687813,4.94273,0,0,DGL:SA:S31148,Europe/Paris,0,DGL, +DGL:SP:34613,1,"St Priest Salengro",45.689627,4.938641,0,0,DGL:SA:S31139,Europe/Paris,0,DGL, +DGL:SP:34614,1,"St Priest Salengro",45.689785,4.936915,0,0,DGL:SA:S31139,Europe/Paris,2,DGL, +DGL:SP:34633,1,"Jonage Lavoir",45.792049,5.04857,0,0,DGL:SA:S31210,Europe/Paris,2,DGL, +DGL:SP:34634,1,"Jonage Lavoir",45.792103,5.048599,0,0,DGL:SA:S31210,Europe/Paris,2,DGL, +DGL:SP:34653,1,"Val Rosay",45.793778,4.812293,0,0,DGL:SA:S11415,Europe/Paris,0,DGL, +DGL:SP:34654,1,"Centre Val Rosay",45.799945,4.809392,0,0,DGL:SA:S31220,Europe/Paris,0,DGL, +DGL:SP:34655,1,"Centre Val Rosay",45.799513,4.809347,0,0,DGL:SA:S31220,Europe/Paris,0,DGL, +DGL:SP:34656,1,"Moulin d'Arche",45.80292,4.807917,0,0,DGL:SA:S31221,Europe/Paris,0,DGL, +DGL:SP:34657,1,"Moulin d'Arche",45.802896,4.8078,0,0,DGL:SA:S31221,Europe/Paris,0,DGL, +DGL:SP:3466,1,"Etats-Unis Tony Garnier",45.733041,4.864625,0,0,DGL:SA:S5701,Europe/Paris,2,DGL, +DGL:SP:34674,1,"J. B. Simon",45.826063,4.857356,0,0,DGL:SA:S31230,Europe/Paris,2,DGL, +DGL:SP:34675,1,"J. B. Simon",45.825962,4.857441,0,0,DGL:SA:S31230,Europe/Paris,2,DGL, +DGL:SP:3473,1,"Chemin de Revaison",45.704341,4.916212,0,0,DGL:SA:S11682,Europe/Paris,0,DGL, +DGL:SP:3475,1,"St Priest Alouettes",45.702452,4.918487,0,0,DGL:SA:S11683,Europe/Paris,0,DGL, +DGL:SP:34753,1,"Verdun - Rambaud",45.750045,4.822707,0,0,DGL:SA:S30097,Europe/Paris,2,DGL, +DGL:SP:3476,1,"St Priest Alouettes",45.702625,4.918418,0,0,DGL:SA:S11683,Europe/Paris,0,DGL, +DGL:SP:3477,1,"Pasteur - Etats-Unis",45.700045,4.922176,0,0,DGL:SA:S11684,Europe/Paris,0,DGL, +DGL:SP:34773,1,"Eurexpo Espace Confluence",45.734358,4.952904,0,0,DGL:SA:S5620,Europe/Paris,2,DGL, +DGL:SP:3478,1,"Pasteur - Etats-Unis",45.700099,4.922166,0,0,DGL:SA:S11684,Europe/Paris,2,DGL, +DGL:SP:34813,1,"Ravat",45.743536,4.826012,0,0,DGL:SA:S31260,Europe/Paris,2,DGL, +DGL:SP:34814,1,"Casimir-Perier",45.741442,4.824233,0,0,DGL:SA:S31261,Europe/Paris,0,DGL, +DGL:SP:34815,1,"Casimir-Perier",45.740957,4.823761,0,0,DGL:SA:S31261,Europe/Paris,2,DGL, +DGL:SP:34816,1,"Ravat",45.743034,4.825514,0,0,DGL:SA:S31260,Europe/Paris,2,DGL, +DGL:SP:34834,1,"Suchet",45.747064,4.824598,0,0,DGL:SA:S5517,Europe/Paris,2,DGL, +DGL:SP:34835,1,"Suchet",45.747093,4.824527,0,0,DGL:SA:S5517,Europe/Paris,2,DGL, +DGL:SP:34836,1,"Sainte-Blandine",45.744189,4.822145,0,0,DGL:SA:S5518,Europe/Paris,2,DGL, +DGL:SP:34837,1,"Sainte-Blandine",45.744217,4.822077,0,0,DGL:SA:S5518,Europe/Paris,2,DGL, +DGL:SP:3484,1,"Marcel Vernay",45.697677,4.952857,0,0,DGL:SA:S11687,Europe/Paris,0,DGL, +DGL:SP:3485,1,"Marcel Vernay",45.697643,4.950864,0,0,DGL:SA:S11687,Europe/Paris,0,DGL, +DGL:SP:34854,1,"Universite Lyon 1 Gerland",45.726648,4.826495,0,0,DGL:SA:S31280,Europe/Paris,2,DGL, +DGL:SP:3486,1,"Les Longes",45.697104,4.956195,0,0,DGL:SA:S11688,Europe/Paris,0,DGL, +DGL:SP:3487,1,"Les Longes",45.697146,4.956313,0,0,DGL:SA:S11688,Europe/Paris,0,DGL, +DGL:SP:34874,1,"H. Region Montrochet",45.74063,4.819002,0,0,DGL:SA:S5519,Europe/Paris,2,DGL, +DGL:SP:34875,1,"H. Region Montrochet.",45.74059,4.819096,0,0,DGL:SA:S5519,Europe/Paris,2,DGL, +DGL:SP:34895,1,"Flacheres",45.641628,4.795721,0,0,DGL:SA:S31300,Europe/Paris,0,DGL, +DGL:SP:34897,1,"Les Mesanges",45.640161,4.797747,0,0,DGL:SA:S31301,Europe/Paris,2,DGL, +DGL:SP:3493,1,"St Irenee - Croix Blanche",45.755526,4.809311,0,0,DGL:SA:S11691,Europe/Paris,0,DGL, +DGL:SP:34934,1,"Hotel de Ville - L. Pradel",45.766481,4.836079,0,0,DGL:SA:S5046,Europe/Paris,2,DGL, +DGL:SP:3496,1,"Langevin - Blanqui",45.700772,4.875771,0,0,DGL:SA:S11693,Europe/Paris,0,DGL, +DGL:SP:3497,1,"Lionel Terray",45.726221,4.901017,0,0,DGL:SA:S11694,Europe/Paris,2,DGL, +DGL:SP:3498,1,"Lionel Terray",45.726314,4.900868,0,0,DGL:SA:S11694,Europe/Paris,2,DGL, +DGL:SP:3499,1,"Lortaret",45.712791,4.956312,0,0,DGL:SA:S11695,Europe/Paris,2,DGL, +DGL:SP:3500,1,"Lortaret",45.713601,4.956736,0,0,DGL:SA:S11695,Europe/Paris,2,DGL, +DGL:SP:3501,1,"Jean Mace - Chevreul",45.747102,4.843723,0,0,DGL:SA:S11696,Europe/Paris,2,DGL, +DGL:SP:3502,1,"Bat d'Argent",45.765154,4.835852,0,0,DGL:SA:S10065,Europe/Paris,0,DGL, +DGL:SP:3503,1,"Hotel de Ville - L. Pradel",45.767103,4.834461,0,0,DGL:SA:S5046,Europe/Paris,2,DGL, +DGL:SP:35034,1,"St Priest Salengro",45.690595,4.936491,0,0,DGL:SA:S31139,Europe/Paris,0,DGL, +DGL:SP:35054,1,"Terreaux Tobie Robatel",45.767899,4.831449,0,0,DGL:SA:S11392,Europe/Paris,2,DGL, +DGL:SP:3508,1,"St Irenee - Croix Blanche",45.755603,4.809083,0,0,DGL:SA:S11691,Europe/Paris,2,DGL, +DGL:SP:35094,1,"Musee des Confluences",45.733665,4.818913,0,0,DGL:SA:S5908,Europe/Paris,2,DGL, +DGL:SP:351,1,"Carrefour Liberation",45.758618,4.775309,0,0,DGL:SA:S10164,Europe/Paris,2,DGL, +DGL:SP:3512,1,"Gymnase Alain Colas",45.6885,4.875129,0,0,DGL:SA:S11702,Europe/Paris,2,DGL, +DGL:SP:3513,1,"Gymnase Alain Colas",45.688471,4.875204,0,0,DGL:SA:S11702,Europe/Paris,2,DGL, +DGL:SP:35134,1,"Les Baysses",45.86024,4.811605,0,0,DGL:SA:S31330,Europe/Paris,2,DGL, +DGL:SP:35135,1,"Les Baysses",45.859995,4.810872,0,0,DGL:SA:S31330,Europe/Paris,2,DGL, +DGL:SP:3514,1,"Leclerc - Thimonnier",45.804969,4.864728,0,0,DGL:SA:S11703,Europe/Paris,2,DGL, +DGL:SP:3515,1,"Leclerc - Thimonnier",45.804713,4.864086,0,0,DGL:SA:S11703,Europe/Paris,2,DGL, +DGL:SP:3516,1,"Leclerc - Drevet",45.808486,4.871236,0,0,DGL:SA:S11704,Europe/Paris,2,DGL, +DGL:SP:3517,1,"Leclerc - Drevet",45.80842,4.870962,0,0,DGL:SA:S11704,Europe/Paris,2,DGL, +DGL:SP:35234,1,"La Doua - Jussieu",45.781483,4.876372,0,0,DGL:SA:S31350,Europe/Paris,0,DGL, +DGL:SP:35254,1,"Marcy l'Etoile Campus Merieux",45.777745,4.705537,0,0,DGL:SA:S31360,Europe/Paris,2,DGL, +DGL:SP:35256,1,"BioMerieux",45.780195,4.70848,0,0,DGL:SA:S31361,Europe/Paris,2,DGL, +DGL:SP:35257,1,"BioMerieux",45.780828,4.709555,0,0,DGL:SA:S31361,Europe/Paris,2,DGL, +DGL:SP:353,1,"Carry",45.755042,4.870947,0,0,DGL:SA:S10165,Europe/Paris,2,DGL, +DGL:SP:35315,1,"Joseph Moulin",45.743367,4.715922,0,0,DGL:SA:S12270,Europe/Paris,0,DGL, +DGL:SP:35317,1,"Le Grand Champ",45.74575,4.71645,0,0,DGL:SA:S31370,Europe/Paris,0,DGL, +DGL:SP:35334,1,"GAEC de la Grive",45.85707,4.88068,0,0,DGL:SA:S31380,Europe/Paris,0,DGL, +DGL:SP:35335,1,"GAEC de la Grive",45.857019,4.880536,0,0,DGL:SA:S31380,Europe/Paris,0,DGL, +DGL:SP:35354,1,"Verlaine - 4 aout",45.764751,4.881477,0,0,DGL:SA:S31390,Europe/Paris,2,DGL, +DGL:SP:35355,1,"Verlaine - 4 aout",45.764197,4.8805,0,0,DGL:SA:S31390,Europe/Paris,2,DGL, +DGL:SP:35356,1,"Verlaine - 4 aout",45.763304,4.880561,0,0,DGL:SA:S31390,Europe/Paris,2,DGL, +DGL:SP:35357,1,"Gratte-Ciel - Verlaine",45.767978,4.880204,0,0,DGL:SA:S31391,Europe/Paris,2,DGL, +DGL:SP:35358,1,"Gratte-Ciel - Verlaine",45.768533,4.880211,0,0,DGL:SA:S31391,Europe/Paris,2,DGL, +DGL:SP:35394,1,"Moliere",45.763546,4.843379,0,0,DGL:SA:S31400,Europe/Paris,2,DGL, +DGL:SP:35395,1,"Moliere",45.763623,4.84319,0,0,DGL:SA:S31400,Europe/Paris,2,DGL, +DGL:SP:354,1,"Carry",45.755037,4.870381,0,0,DGL:SA:S10165,Europe/Paris,2,DGL, +DGL:SP:35414,1,"Saxe - Lafayette",45.763674,4.845314,0,0,DGL:SA:S11267,Europe/Paris,0,DGL, +DGL:SP:35434,1,"Marc-Antoine Petit",45.745385,4.82463,0,0,DGL:SA:S31410,Europe/Paris,2,DGL, +DGL:SP:35435,1,"Marc-Antoine Petit",45.745783,4.825754,0,0,DGL:SA:S31410,Europe/Paris,0,DGL, +DGL:SP:35436,1,"Ravat",45.744121,4.823557,0,0,DGL:SA:S31260,Europe/Paris,2,DGL, +DGL:SP:35437,1,"Ravat",45.74391,4.824152,0,0,DGL:SA:S31260,Europe/Paris,0,DGL, +DGL:SP:35455,1,"St Priest Egalite",45.690158,4.946797,0,0,DGL:SA:S31420,Europe/Paris,0,DGL, +DGL:SP:35456,1,"St Priest Egalite",45.690072,4.946638,0,0,DGL:SA:S31420,Europe/Paris,0,DGL, +DGL:SP:35457,1,"Corbas G.Brassens",45.667986,4.905548,0,0,DGL:SA:S31421,Europe/Paris,0,DGL, +DGL:SP:35458,1,"Corbas G.Brassens",45.667528,4.905129,0,0,DGL:SA:S31421,Europe/Paris,0,DGL, +DGL:SP:35459,1,"Corbas Condorcet",45.660032,4.900672,0,0,DGL:SA:S20239,Europe/Paris,2,DGL, +DGL:SP:35460,1,"Corbas Condorcet",45.660627,4.900635,0,0,DGL:SA:S20239,Europe/Paris,2,DGL, +DGL:SP:35461,1,"Vignerme",45.669032,4.901155,0,0,DGL:SA:S31422,Europe/Paris,0,DGL, +DGL:SP:35476,1,"Corbas Les Taillis",45.671885,4.909787,0,0,DGL:SA:S10844,Europe/Paris,2,DGL, +DGL:SP:35477,1,"Corbas Les Taillis",45.67173,4.90987,0,0,DGL:SA:S10844,Europe/Paris,0,DGL, +DGL:SP:35478,1,"Vignerme",45.668738,4.901423,0,0,DGL:SA:S31422,Europe/Paris,0,DGL, +DGL:SP:35483,1,"La Fouillouse Acacias",45.685697,4.976815,0,0,DGL:SA:S31431,Europe/Paris,0,DGL, +DGL:SP:35494,1,"Vernaison Place.",45.64812,4.811975,0,0,DGL:SA:S5914,Europe/Paris,2,DGL, +DGL:SP:355,1,"Castellane",45.808007,4.898694,0,0,DGL:SA:S5005,Europe/Paris,0,DGL, +DGL:SP:35514,1,"Pavillon Urgences",45.700758,4.807058,0,0,DGL:SA:S31450,Europe/Paris,0,DGL, +DGL:SP:35534,1,"La Ferriere",45.881899,4.868555,0,0,DGL:SA:S31460,Europe/Paris,0,DGL, +DGL:SP:35582,1,"Genay Lavoir",45.896967,4.838427,0,0,DGL:SA:S31474,Europe/Paris,2,DGL, +DGL:SP:35583,1,"Genay Lavoir",45.896642,4.837645,0,0,DGL:SA:S31474,Europe/Paris,2,DGL, +DGL:SP:35584,1,"Pont de Neuville RG",45.878213,4.837777,0,0,DGL:SA:S31475,Europe/Paris,0,DGL, +DGL:SP:35585,1,"Pont de Neuville RG",45.877382,4.838332,0,0,DGL:SA:S31475,Europe/Paris,0,DGL, +DGL:SP:35594,1,"Les Massues - Soeur Janin",45.760055,4.798147,0,0,DGL:SA:S31480,Europe/Paris,0,DGL, +DGL:SP:356,1,"Castellane",45.80805,4.898387,0,0,DGL:SA:S5005,Europe/Paris,2,DGL, +DGL:SP:35659,1,"Gare Part Dieu",45.76022,4.861875,0,0,DGL:SA:S5540,Europe/Paris,2,DGL, +DGL:SP:35660,1,"Dauphine -Lacassagne",45.75287,4.868813,0,0,DGL:SA:S5561,Europe/Paris,2,DGL, +DGL:SP:35661,1,"Dauphine -Lacassagne",45.752983,4.868842,0,0,DGL:SA:S5561,Europe/Paris,2,DGL, +DGL:SP:35662,1,"Reconnaissance",45.754497,4.885151,0,0,DGL:SA:S5560,Europe/Paris,2,DGL, +DGL:SP:35663,1,"Reconnaissance",45.754587,4.88506,0,0,DGL:SA:S5560,Europe/Paris,2,DGL, +DGL:SP:35664,1,"Gare de Villeurbanne",45.755919,4.892603,0,0,DGL:SA:S5562,Europe/Paris,2,DGL, +DGL:SP:35665,1,"Gare de Villeurbanne",45.755906,4.891618,0,0,DGL:SA:S5562,Europe/Paris,2,DGL, +DGL:SP:35666,1,"Bel Air -Les Brosses",45.758387,4.910472,0,0,DGL:SA:S5563,Europe/Paris,2,DGL, +DGL:SP:35667,1,"Bel Air -Les Brosses",45.758465,4.910448,0,0,DGL:SA:S5563,Europe/Paris,2,DGL, +DGL:SP:35668,1,"Vaulx La Soie",45.760977,4.922196,0,0,ORX:SA:S5564,Europe/Paris,2,DGL, +DGL:SP:35669,1,"Vaulx La Soie",45.761142,4.922107,0,0,ORX:SA:S5564,Europe/Paris,2,DGL, +DGL:SP:35670,1,"Decines Centre",45.771815,4.955939,0,0,DGL:SA:S5565,Europe/Paris,2,DGL, +DGL:SP:35671,1,"Decines Centre",45.771872,4.955863,0,0,DGL:SA:S5565,Europe/Paris,2,DGL, +DGL:SP:35672,1,"Decines Grand Large",45.774692,4.975944,0,0,DGL:SA:S5566,Europe/Paris,2,DGL, +DGL:SP:35673,1,"Decines Grand Large",45.774762,4.975994,0,0,DGL:SA:S5566,Europe/Paris,2,DGL, +DGL:SP:35674,1,"Meyzieu Gare",45.771579,4.998896,0,0,DGL:SA:S5567,Europe/Paris,2,DGL, +DGL:SP:35675,1,"Meyzieu Gare",45.771731,4.998935,0,0,DGL:SA:S5567,Europe/Paris,2,DGL, +DGL:SP:35676,1,"Meyzieu Z.i",45.767627,5.031551,0,0,DGL:SA:S5568,Europe/Paris,2,DGL, +DGL:SP:35754,1,"Gare Part-Dieu Vivier Merle",45.76035,4.85828,0,0,DGL:SA:S5520,Europe/Paris,2,DGL, +DGL:SP:35774,1,"Parc Tete d'Or-Churchill",45.778052,4.844774,0,0,DGL:SA:S11050,Europe/Paris,2,DGL, +DGL:SP:35775,1,"Cite Internationale",45.784686,4.856783,0,0,DGL:SA:S5661,Europe/Paris,2,DGL, +DGL:SP:35776,1,"Cite Internationale",45.784718,4.857378,0,0,DGL:SA:S5661,Europe/Paris,2,DGL, +DGL:SP:35794,1,"Barreme",45.774346,4.842637,0,0,DGL:SA:S10059,Europe/Paris,2,DGL, +DGL:SP:35795,1,"Barreme",45.775329,4.842977,0,0,DGL:SA:S10059,Europe/Paris,2,DGL, +DGL:SP:35816,1,"Vancia Chateau Berard",45.8357,4.911537,0,0,DGL:SA:S31520,Europe/Paris,2,DGL, +DGL:SP:35817,1,"Rillieux Semailles",45.819398,4.90879,0,0,DGL:SA:S11225,Europe/Paris,2,DGL, +DGL:SP:35818,1,"Rillieux Semailles",45.819395,4.908533,0,0,DGL:SA:S11225,Europe/Paris,2,DGL, +DGL:SP:35834,1,"Gare Part-Dieu Vivier Merle",45.762175,4.857579,0,0,DGL:SA:S5520,Europe/Paris,2,DGL, +DGL:SP:35895,1,"Paradin",45.736757,4.888178,0,0,DGL:SA:S31540,Europe/Paris,0,DGL, +DGL:SP:359,1,"Centre Psychotherapique",45.817971,4.835576,0,0,DGL:SA:S10169,Europe/Paris,2,DGL, +DGL:SP:35934,1,"Place Ambroise Courtois",45.743986,4.870682,0,0,DGL:SA:S31560,Europe/Paris,2,DGL, +DGL:SP:35954,1,"Part-Dieu Jules Favre",45.764381,4.858362,0,0,DGL:SA:S11061,Europe/Paris,2,DGL, +DGL:SP:35955,1,"Parc Tete d'Or - Duquesne",45.773548,4.850961,0,0,DGL:SA:S11051,Europe/Paris,2,DGL, +DGL:SP:35956,1,"Parc Tete d'Or - Duquesne",45.77341,4.851109,0,0,DGL:SA:S11051,Europe/Paris,2,DGL, +DGL:SP:35957,1,"Parc Tete d'Or-Churchill",45.776691,4.844467,0,0,DGL:SA:S11050,Europe/Paris,2,DGL, +DGL:SP:35958,1,"Parc Tete d'Or-Churchill",45.77658,4.844591,0,0,DGL:SA:S11050,Europe/Paris,2,DGL, +DGL:SP:35974,1,"Hopital Cardiologique",45.747145,4.903587,0,0,DGL:SA:S10562,Europe/Paris,2,DGL, +DGL:SP:35975,1,"Hopital Cardiologique",45.747255,4.903065,0,0,DGL:SA:S10562,Europe/Paris,2,DGL, +DGL:SP:35976,1,"Hopital Neurologique",45.747794,4.898783,0,0,DGL:SA:S10566,Europe/Paris,2,DGL, +DGL:SP:35977,1,"Hopital Neurologique",45.747896,4.89826,0,0,DGL:SA:S10566,Europe/Paris,2,DGL, +DGL:SP:35978,1,"Parc Chambovet",45.747481,4.89675,0,0,DGL:SA:S31570,Europe/Paris,2,DGL, +DGL:SP:35979,1,"Parc Chambovet",45.74761,4.896589,0,0,DGL:SA:S31570,Europe/Paris,2,DGL, +DGL:SP:35980,1,"Bron Genets",45.748685,4.90236,0,0,DGL:SA:S31571,Europe/Paris,2,DGL, +DGL:SP:35981,1,"Bron Genets",45.74771,4.90521,0,0,DGL:SA:S31571,Europe/Paris,2,DGL, +DGL:SP:35982,1,"Yves Farge",45.657496,4.948549,0,0,DGL:SA:S31572,Europe/Paris,0,DGL, +DGL:SP:35983,1,"Yves Farge",45.657451,4.948521,0,0,DGL:SA:S31572,Europe/Paris,0,DGL, +DGL:SP:35994,1,"Charbonnier",45.656878,4.946068,0,0,DGL:SA:S31580,Europe/Paris,0,DGL, +DGL:SP:35995,1,"Charbonnier",45.656834,4.94604,0,0,DGL:SA:S31580,Europe/Paris,0,DGL, +DGL:SP:35996,1,"Combo",45.65883,4.943413,0,0,DGL:SA:S31581,Europe/Paris,0,DGL, +DGL:SP:35997,1,"Combo",45.658804,4.943399,0,0,DGL:SA:S31581,Europe/Paris,0,DGL, +DGL:SP:35998,1,"Mions Bourdelle",45.660902,4.941033,0,0,DGL:SA:S31582,Europe/Paris,0,DGL, +DGL:SP:35999,1,"Mions Bourdelle",45.659494,4.942353,0,0,DGL:SA:S31582,Europe/Paris,0,DGL, +DGL:SP:360,1,"Centre Psychotherapique",45.818124,4.835982,0,0,DGL:SA:S10169,Europe/Paris,0,DGL, +DGL:SP:36000,1,"Mions Rte Corbas",45.665413,4.938679,0,0,DGL:SA:S31583,Europe/Paris,2,DGL, +DGL:SP:36001,1,"Mions Rte Corbas",45.665554,4.938403,0,0,DGL:SA:S31583,Europe/Paris,2,DGL, +DGL:SP:36014,1,"Vaulx-en-Velin La Grappiniere",45.788433,4.912583,0,0,DGL:SA:S20205,Europe/Paris,2,DGL, +DGL:SP:36034,1,"College des Charpennes",45.774006,4.86984,0,0,DGL:SA:S31590,Europe/Paris,0,DGL, +DGL:SP:36055,1,"Rue Pollet (Lycee)",45.876454,4.847234,0,0,DGL:SA:S31601,Europe/Paris,2,DGL, +DGL:SP:36056,1,"Rue Pollet (Lycee)",45.876423,4.847025,0,0,DGL:SA:S31601,Europe/Paris,2,DGL, +DGL:SP:36094,1,"Decines Grand Large",45.774718,4.975728,0,0,DGL:SA:S5566,Europe/Paris,0,DGL, +DGL:SP:36095,1,"Decines Grand Large",45.774807,4.975397,0,0,DGL:SA:S5566,Europe/Paris,2,DGL, +DGL:SP:361,1,"Centre Social Sauvegarde",45.787154,4.790495,0,0,DGL:SA:S10170,Europe/Paris,2,DGL, +DGL:SP:36114,1,"Meyzieu Z.i.",45.768403,5.030528,0,0,DGL:SA:S5568,Europe/Paris,2,DGL, +DGL:SP:36115,1,"Meyzieu Z.i.",45.768378,5.030424,0,0,DGL:SA:S5568,Europe/Paris,2,DGL, +DGL:SP:36134,1,"Z.I. Terray - Schweitzer",45.770335,5.029182,0,0,DGL:SA:S31630,Europe/Paris,0,DGL, +DGL:SP:36135,1,"Z.I. Nord",45.778197,5.022646,0,0,DGL:SA:S31631,Europe/Paris,0,DGL, +DGL:SP:36136,1,"Z.I. Sud",45.767431,5.019599,0,0,DGL:SA:S31632,Europe/Paris,0,DGL, +DGL:SP:36137,1,"Z.I. Schweitzer - Meyzieu",45.765924,5.028812,0,0,DGL:SA:S11494,Europe/Paris,0,DGL, +DGL:SP:36138,1,"Z.I. Schweitzer-Republique",45.76181,5.025781,0,0,DGL:SA:S11496,Europe/Paris,0,DGL, +DGL:SP:36140,1,"Z.I. Meyzieu Jean Mace",45.764346,5.018381,0,0,DGL:SA:S11489,Europe/Paris,0,DGL, +DGL:SP:36141,1,"Z.I. Meyzieu Monge",45.766869,5.024279,0,0,DGL:SA:S11490,Europe/Paris,0,DGL, +DGL:SP:36142,1,"Z.I. Schweitzer - Monge",45.766401,5.02805,0,0,DGL:SA:S11495,Europe/Paris,0,DGL, +DGL:SP:36143,1,"Centre commercial des Plantees",45.765152,5.009108,0,0,DGL:SA:S31633,Europe/Paris,2,DGL, +DGL:SP:36144,1,"Dauphine - Berlioz",45.762834,5.007786,0,0,DGL:SA:S31634,Europe/Paris,2,DGL, +DGL:SP:36145,1,"Grenoble",45.760857,5.009169,0,0,DGL:SA:S31635,Europe/Paris,0,DGL, +DGL:SP:36146,1,"Auvergne",45.761248,5.017677,0,0,DGL:SA:S31636,Europe/Paris,0,DGL, +DGL:SP:36147,1,"Marseille - Perigord",45.761602,5.020922,0,0,DGL:SA:S31637,Europe/Paris,0,DGL, +DGL:SP:36150,1,"Meyzieu Av de Crottay",45.760357,5.02481,0,0,DGL:SA:S31640,Europe/Paris,2,DGL, +DGL:SP:36151,1,"Meyzieu Av de Crottay",45.760173,5.024556,0,0,DGL:SA:S31640,Europe/Paris,0,DGL, +DGL:SP:36152,1,"Meyzieu Plantees",45.760517,5.011725,0,0,DGL:SA:S10948,Europe/Paris,2,DGL, +DGL:SP:36155,1,"Marseille - Perigord",45.761672,5.021761,0,0,DGL:SA:S31637,Europe/Paris,2,DGL, +DGL:SP:36156,1,"Auvergne",45.761299,5.017795,0,0,DGL:SA:S31636,Europe/Paris,0,DGL, +DGL:SP:36157,1,"Meyzieu Plantees",45.760449,5.011156,0,0,DGL:SA:S10948,Europe/Paris,2,DGL, +DGL:SP:36158,1,"Grenoble",45.760761,5.009396,0,0,DGL:SA:S31635,Europe/Paris,0,DGL, +DGL:SP:36159,1,"Dauphine - Berlioz",45.762886,5.007866,0,0,DGL:SA:S31634,Europe/Paris,2,DGL, +DGL:SP:36160,1,"Centre commercial des Plantees",45.765616,5.008513,0,0,DGL:SA:S31633,Europe/Paris,2,DGL, +DGL:SP:36175,1,"Decines Esplanade",45.772711,4.976094,0,0,DGL:SA:S11725,Europe/Paris,2,DGL, +DGL:SP:36176,1,"Decines Esplanade",45.772809,4.976163,0,0,DGL:SA:S11725,Europe/Paris,2,DGL, +DGL:SP:36194,1,"Grigny La Colombe",45.615715,4.799362,0,0,DGL:SA:S31650,Europe/Paris,0,DGL, +DGL:SP:36195,1,"Grigny La Colombe",45.615962,4.799617,0,0,DGL:SA:S31650,Europe/Paris,0,DGL, +DGL:SP:36196,1,"Dutartre",45.613654,4.798565,0,0,DGL:SA:S31651,Europe/Paris,0,DGL, +DGL:SP:36197,1,"Dutartre",45.613974,4.798733,0,0,DGL:SA:S31651,Europe/Paris,0,DGL, +DGL:SP:36198,1,"Le Manoir",45.611214,4.795711,0,0,DGL:SA:S31652,Europe/Paris,2,DGL, +DGL:SP:36199,1,"Le Manoir",45.61123,4.795789,0,0,DGL:SA:S31652,Europe/Paris,2,DGL, +DGL:SP:36200,1,"La Rochere",45.609755,4.792889,0,0,DGL:SA:S31653,Europe/Paris,0,DGL, +DGL:SP:36201,1,"La Rochere",45.609964,4.793604,0,0,DGL:SA:S31653,Europe/Paris,0,DGL, +DGL:SP:36204,1,"Centre Chervet",45.607524,4.787891,0,0,DGL:SA:S31655,Europe/Paris,2,DGL, +DGL:SP:36205,1,"Centre Chervet",45.607548,4.788059,0,0,DGL:SA:S31655,Europe/Paris,2,DGL, +DGL:SP:36206,1,"Grigny Bel Air",45.609655,4.78637,0,0,DGL:SA:S31656,Europe/Paris,2,DGL, +DGL:SP:36207,1,"Grigny Bel Air",45.609633,4.786138,0,0,DGL:SA:S31656,Europe/Paris,2,DGL, +DGL:SP:36208,1,"Grigny Ampere",45.609606,4.783649,0,0,DGL:SA:S31657,Europe/Paris,0,DGL, +DGL:SP:36209,1,"Grigny Ampere",45.609578,4.783699,0,0,DGL:SA:S31657,Europe/Paris,0,DGL, +DGL:SP:36210,1,"Espace Favier",45.607762,4.783593,0,0,DGL:SA:S31658,Europe/Paris,2,DGL, +DGL:SP:36211,1,"Espace Favier",45.607896,4.78365,0,0,DGL:SA:S31658,Europe/Paris,2,DGL, +DGL:SP:36212,1,"Arondieres",45.605806,4.78248,0,0,DGL:SA:S31659,Europe/Paris,2,DGL, +DGL:SP:36213,1,"Arondieres",45.605799,4.782403,0,0,DGL:SA:S31659,Europe/Paris,2,DGL, +DGL:SP:36214,1,"Maison",45.609083,4.779573,0,0,DGL:SA:S31660,Europe/Paris,2,DGL, +DGL:SP:36215,1,"Maison",45.609252,4.77926,0,0,DGL:SA:S31660,Europe/Paris,2,DGL, +DGL:SP:36218,1,"Grigny Pressense",45.603126,4.779117,0,0,DGL:SA:S31662,Europe/Paris,2,DGL, +DGL:SP:36219,1,"Grigny Pressense",45.603262,4.779482,0,0,DGL:SA:S31662,Europe/Paris,2,DGL, +DGL:SP:36220,1,"Cite SNCF Grigny",45.602292,4.77731,0,0,DGL:SA:S31663,Europe/Paris,2,DGL, +DGL:SP:36221,1,"Cite SNCF Grigny",45.601786,4.776172,0,0,DGL:SA:S31663,Europe/Paris,2,DGL, +DGL:SP:36222,1,"Givors Parc des Sports",45.601814,4.77075,0,0,DGL:SA:S31664,Europe/Paris,0,DGL, +DGL:SP:36223,1,"Givors Parc des Sports",45.601718,4.771002,0,0,DGL:SA:S31664,Europe/Paris,0,DGL, +DGL:SP:36224,1,"Les Vernes - R. Rolland",45.603344,4.767419,0,0,DGL:SA:S31665,Europe/Paris,0,DGL, +DGL:SP:36225,1,"Les Vernes - R. Rolland",45.60304,4.767329,0,0,DGL:SA:S31665,Europe/Paris,0,DGL, +DGL:SP:36226,1,"Les Vernes - J. Valles",45.606932,4.766744,0,0,DGL:SA:S31666,Europe/Paris,0,DGL, +DGL:SP:36227,1,"Les Vernes - J. Valles",45.606815,4.766739,0,0,DGL:SA:S31666,Europe/Paris,0,DGL, +DGL:SP:36228,1,"Les Vernes - Lenine",45.607444,4.764317,0,0,DGL:SA:S31667,Europe/Paris,0,DGL, +DGL:SP:36229,1,"Les Vernes - Lenine",45.60775,4.764292,0,0,DGL:SA:S31667,Europe/Paris,0,DGL, +DGL:SP:36230,1,"Les Vernes - De Gaulle",45.6044,4.763567,0,0,DGL:SA:S31668,Europe/Paris,2,DGL, +DGL:SP:36231,1,"Les Vernes - De Gaulle",45.604694,4.763709,0,0,DGL:SA:S31668,Europe/Paris,2,DGL, +DGL:SP:36232,1,"Lycee Picasso",45.60186,4.762789,0,0,DGL:SA:S31669,Europe/Paris,2,DGL, +DGL:SP:36233,1,"Lycee Picasso",45.601987,4.762769,0,0,DGL:SA:S31669,Europe/Paris,2,DGL, +DGL:SP:36234,1,"Docteur Roux",45.597827,4.765753,0,0,DGL:SA:S31670,Europe/Paris,2,DGL, +DGL:SP:36235,1,"Docteur Roux",45.598109,4.765576,0,0,DGL:SA:S31670,Europe/Paris,2,DGL, +DGL:SP:36236,1,"Givors Marcel Cachin",45.596183,4.766411,0,0,DGL:SA:S31671,Europe/Paris,2,DGL, +DGL:SP:36237,1,"Givors Marcel Cachin",45.596163,4.766513,0,0,DGL:SA:S31671,Europe/Paris,2,DGL, +DGL:SP:36238,1,"Givors Yves Farge",45.593236,4.764525,0,0,DGL:SA:S31672,Europe/Paris,0,DGL, +DGL:SP:36239,1,"Givors Yves Farge",45.593299,4.764515,0,0,DGL:SA:S31672,Europe/Paris,0,DGL, +DGL:SP:36240,1,"Casanova",45.594246,4.76679,0,0,DGL:SA:S31673,Europe/Paris,0,DGL, +DGL:SP:36241,1,"Casanova",45.594031,4.766458,0,0,DGL:SA:S31673,Europe/Paris,0,DGL, +DGL:SP:36242,1,"Gare de Givors Canal",45.593973,4.769955,0,0,DGL:SA:S31674,Europe/Paris,2,DGL, +DGL:SP:36243,1,"Gare de Givors Canal",45.594044,4.769997,0,0,DGL:SA:S31674,Europe/Paris,2,DGL, +DGL:SP:36244,1,"Givors Picard",45.59204,4.770293,0,0,DGL:SA:S31675,Europe/Paris,2,DGL, +DGL:SP:36245,1,"Givors Picard",45.592047,4.770383,0,0,DGL:SA:S31675,Europe/Paris,2,DGL, +DGL:SP:36246,1,"Givors Leclerc",45.588037,4.771001,0,0,DGL:SA:S31676,Europe/Paris,2,DGL, +DGL:SP:36247,1,"Givors Leclerc",45.588631,4.771001,0,0,DGL:SA:S31676,Europe/Paris,2,DGL, +DGL:SP:36248,1,"Givors Carnot",45.585416,4.771501,0,0,DGL:SA:S31677,Europe/Paris,2,DGL, +DGL:SP:36249,1,"Givors Salengro",45.584155,4.771548,0,0,DGL:SA:S31678,Europe/Paris,0,DGL, +DGL:SP:36250,1,"Givors Hotel de Ville",45.582358,4.772648,0,0,DGL:SA:S31679,Europe/Paris,0,DGL, +DGL:SP:36251,1,"Marcel Paul",45.583821,4.770738,0,0,DGL:SA:S31680,Europe/Paris,0,DGL, +DGL:SP:36252,1,"Givors Place Pasteur",45.585161,4.769131,0,0,DGL:SA:S31681,Europe/Paris,0,DGL, +DGL:SP:36253,1,"Gare de Givors Ville",45.584654,4.766391,0,0,DGL:SA:S5580,Europe/Paris,2,DGL, +DGL:SP:36254,1,"Gare de Givors Ville",45.584665,4.766699,0,0,DGL:SA:S5580,Europe/Paris,0,DGL, +DGL:SP:36255,1,"La Freydiere",45.585439,4.7634,0,0,DGL:SA:S31683,Europe/Paris,0,DGL, +DGL:SP:36256,1,"La Freydiere",45.585473,4.762658,0,0,DGL:SA:S31683,Europe/Paris,2,DGL, +DGL:SP:36257,1,"Rue de Montrond",45.587055,4.761087,0,0,DGL:SA:S31684,Europe/Paris,0,DGL, +DGL:SP:36258,1,"Rue de Montrond",45.587084,4.761011,0,0,DGL:SA:S31684,Europe/Paris,0,DGL, +DGL:SP:36259,1,"Givors Centre Commercial",45.585314,4.751281,0,0,DGL:SA:S31685,Europe/Paris,2,DGL, +DGL:SP:36260,1,"Givors Centre Commercial",45.585403,4.751734,0,0,DGL:SA:S31685,Europe/Paris,2,DGL, +DGL:SP:36261,1,"Vallee du Gier 1",45.58358,4.746527,0,0,DGL:SA:S31686,Europe/Paris,2,DGL, +DGL:SP:36262,1,"Vallee du Gier 1",45.583629,4.746772,0,0,DGL:SA:S31686,Europe/Paris,2,DGL, +DGL:SP:36263,1,"Givors Vallee du Gier",45.581297,4.740544,0,0,DGL:SA:S31687,Europe/Paris,0,DGL, +DGL:SP:36265,1,"Gare de Grigny Le Sablon",45.607996,4.793901,0,0,DGL:SA:S31688,Europe/Paris,2,DGL, +DGL:SP:36266,1,"Gare de Grigny Le Sablon",45.608308,4.794428,0,0,DGL:SA:S31688,Europe/Paris,2,DGL, +DGL:SP:36267,1,"Terrasse des Arboras",45.602107,4.787842,0,0,DGL:SA:S31689,Europe/Paris,2,DGL, +DGL:SP:36268,1,"Terrasse des Arboras",45.601843,4.787561,0,0,DGL:SA:S31689,Europe/Paris,2,DGL, +DGL:SP:36269,1,"Arboras",45.598083,4.782881,0,0,DGL:SA:S31690,Europe/Paris,2,DGL, +DGL:SP:36270,1,"Arboras",45.59778,4.782381,0,0,DGL:SA:S31690,Europe/Paris,2,DGL, +DGL:SP:36271,1,"Bonnefond",45.594535,4.772262,0,0,DGL:SA:S31691,Europe/Paris,0,DGL, +DGL:SP:36272,1,"Bonnefond",45.59441,4.772244,0,0,DGL:SA:S31691,Europe/Paris,0,DGL, +DGL:SP:36274,1,"College des Vernes",45.599068,4.768269,0,0,DGL:SA:S31700,Europe/Paris,2,DGL, +DGL:SP:36275,1,"Tour de Varissan",45.595966,4.761504,0,0,DGL:SA:S31701,Europe/Paris,0,DGL, +DGL:SP:36276,1,"Tour de Varissan",45.595809,4.761677,0,0,DGL:SA:S31701,Europe/Paris,0,DGL, +DGL:SP:36277,1,"Intermediaire",45.594243,4.758787,0,0,DGL:SA:S31702,Europe/Paris,0,DGL, +DGL:SP:36278,1,"Intermediaire",45.594295,4.758841,0,0,DGL:SA:S31702,Europe/Paris,0,DGL, +DGL:SP:36279,1,"Chatelaine",45.592068,4.752782,0,0,DGL:SA:S31703,Europe/Paris,0,DGL, +DGL:SP:36280,1,"Chatelaine",45.592014,4.752806,0,0,DGL:SA:S31703,Europe/Paris,0,DGL, +DGL:SP:36281,1,"Plateau de Montrond",45.591335,4.750045,0,0,DGL:SA:S31704,Europe/Paris,0,DGL, +DGL:SP:36282,1,"Stade de Montrond",45.590077,4.746182,0,0,DGL:SA:S31705,Europe/Paris,0,DGL, +DGL:SP:36283,1,"Autrichiens",45.588909,4.748169,0,0,DGL:SA:S31706,Europe/Paris,0,DGL, +DGL:SP:363,1,"Centre Social La Mulatiere",45.728618,4.806573,0,0,DGL:SA:S10171,Europe/Paris,2,DGL, +DGL:SP:36313,1,"Metallurgie",45.583042,4.757296,0,0,DGL:SA:S31723,Europe/Paris,0,DGL, +DGL:SP:36314,1,"La Jument Noire",45.584171,4.757538,0,0,DGL:SA:S31724,Europe/Paris,0,DGL, +DGL:SP:36318,1,"Port du Bief",45.58023,4.779398,0,0,DGL:SA:S31726,Europe/Paris,0,DGL, +DGL:SP:36319,1,"Port du Bief",45.580328,4.779467,0,0,DGL:SA:S31726,Europe/Paris,0,DGL, +DGL:SP:36320,1,"Tour de Bans",45.57706,4.788127,0,0,DGL:SA:S31727,Europe/Paris,0,DGL, +DGL:SP:36321,1,"Tour de Bans",45.57743,4.787669,0,0,DGL:SA:S31727,Europe/Paris,0,DGL, +DGL:SP:36322,1,"La Lone",45.575113,4.790745,0,0,DGL:SA:S31728,Europe/Paris,0,DGL, +DGL:SP:36323,1,"La Lone",45.575295,4.790651,0,0,DGL:SA:S31728,Europe/Paris,0,DGL, +DGL:SP:36324,1,"Abricotiers",45.571481,4.793403,0,0,DGL:SA:S31729,Europe/Paris,0,DGL, +DGL:SP:36326,1,"College Paul Vallon",45.567809,4.796251,0,0,DGL:SA:S31730,Europe/Paris,0,DGL, +DGL:SP:36328,1,"Bertholon",45.576678,4.773076,0,0,DGL:SA:S31731,Europe/Paris,0,DGL, +DGL:SP:36329,1,"Bertholon",45.576928,4.773151,0,0,DGL:SA:S31731,Europe/Paris,0,DGL, +DGL:SP:36330,1,"Cimetiere de Givors",45.576208,4.77731,0,0,DGL:SA:S31732,Europe/Paris,0,DGL, +DGL:SP:36331,1,"Cimetiere de Givors",45.576329,4.777124,0,0,DGL:SA:S31732,Europe/Paris,0,DGL, +DGL:SP:36356,1,"Denfert Rochereau",45.582592,4.777183,0,0,DGL:SA:S31740,Europe/Paris,2,DGL, +DGL:SP:36362,1,"Gare de Givors Ville",45.5849,4.766248,0,0,DGL:SA:S5580,Europe/Paris,0,DGL, +DGL:SP:36394,1,"Vaulx-en-Velin La Soie",45.761025,4.92104,0,0,ORX:SA:S5564,Europe/Paris,2,DGL, +DGL:SP:364,1,"Centre Social La Mulatiere",45.728593,4.806482,0,0,DGL:SA:S10171,Europe/Paris,2,DGL, +DGL:SP:36434,1,"Vaulx-en-Velin La Soie.",45.760925,4.9211,0,0,ORX:SA:S5564,Europe/Paris,2,DGL, +DGL:SP:36458,1,"Le Jayon",45.60479,4.781204,0,0,DGL:SA:S31781,Europe/Paris,0,DGL, +DGL:SP:36459,1,"Le Jayon",45.604689,4.781181,0,0,DGL:SA:S31781,Europe/Paris,0,DGL, +DGL:SP:36464,1,"Centre Hospitalier Montgelas",45.598565,4.769068,0,0,DGL:SA:S31783,Europe/Paris,0,DGL, +DGL:SP:36466,1,"Place de la Liberte",45.585297,4.774879,0,0,DGL:SA:S31784,Europe/Paris,0,DGL, +DGL:SP:36467,1,"Place de la Liberte",45.585776,4.774222,0,0,DGL:SA:S31784,Europe/Paris,0,DGL, +DGL:SP:36475,1,"Meyzieu M.T.E.",45.761286,5.024353,0,0,DGL:SA:S20252,Europe/Paris,0,DGL, +DGL:SP:36476,1,"Meyzieu M.T.E.",45.76134,5.024382,0,0,DGL:SA:S20252,Europe/Paris,0,DGL, +DGL:SP:365,1,"Centre Sportif",45.695215,4.957287,0,0,DGL:SA:S10172,Europe/Paris,2,DGL, +DGL:SP:36514,1,"Bachut - Mairie du 8eme",45.737387,4.868308,0,0,DGL:SA:S5310,Europe/Paris,2,DGL, +DGL:SP:36534,1,"Pont Chevreul",45.685992,4.93201,0,0,DGL:SA:S31790,Europe/Paris,2,DGL, +DGL:SP:36535,1,"Pont Chevreul",45.685942,4.931815,0,0,DGL:SA:S31790,Europe/Paris,2,DGL, +DGL:SP:366,1,"Centre Sportif",45.694874,4.957258,0,0,DGL:SA:S10172,Europe/Paris,2,DGL, +DGL:SP:36634,1,"Les Massues - Soeur Janin",45.760194,4.798809,0,0,DGL:SA:S31480,Europe/Paris,2,DGL, +DGL:SP:36694,1,"Duroc",45.76895,4.818519,0,0,DGL:SA:S10383,Europe/Paris,2,DGL, +DGL:SP:36695,1,"La Poudriere",45.770102,4.816886,0,0,DGL:SA:S10685,Europe/Paris,2,DGL, +DGL:SP:367,1,"Francheville Taffignon",45.734712,4.775291,0,0,DGL:SA:S10173,Europe/Paris,2,DGL, +DGL:SP:36715,1,"Echangeur Porte des Alpes",45.723389,4.921255,0,0,DGL:SA:S31840,Europe/Paris,0,DGL, +DGL:SP:36716,1,"Echangeur Porte des Alpes",45.723414,4.920575,0,0,DGL:SA:S31840,Europe/Paris,0,DGL, +DGL:SP:36717,1,"Rd Pt Charles de Gaulle",45.726353,4.930121,0,0,DGL:SA:S31841,Europe/Paris,2,DGL, +DGL:SP:36718,1,"Rd Pt Charles de Gaulle",45.726424,4.930163,0,0,DGL:SA:S31841,Europe/Paris,2,DGL, +DGL:SP:36719,1,"Normandie-Niemen",45.725018,4.93412,0,0,DGL:SA:S31842,Europe/Paris,0,DGL, +DGL:SP:36720,1,"Normandie-Niemen",45.72505,4.934288,0,0,DGL:SA:S31842,Europe/Paris,2,DGL, +DGL:SP:36754,1,"St Genis Lycee Descartes",45.690788,4.78434,0,0,DGL:SA:S12284,Europe/Paris,0,DGL, +DGL:SP:36755,1,"Gadagne - Egalite",45.698877,4.788193,0,0,DGL:SA:S31860,Europe/Paris,0,DGL, +DGL:SP:36756,1,"Gadagne - Egalite",45.699269,4.788789,0,0,DGL:SA:S31860,Europe/Paris,0,DGL, +DGL:SP:36774,1,"Boulevard des Oiseaux",45.816305,4.86861,0,0,DGL:SA:S31870,Europe/Paris,0,DGL, +DGL:SP:36794,1,"Observatoire",45.696582,4.786524,0,0,DGL:SA:S31880,Europe/Paris,0,DGL, +DGL:SP:36795,1,"Observatoire",45.697298,4.786723,0,0,DGL:SA:S31880,Europe/Paris,0,DGL, +DGL:SP:36796,1,"La Chataigneraie",45.70123,4.791983,0,0,DGL:SA:S31881,Europe/Paris,2,DGL, +DGL:SP:36797,1,"La Chataigneraie",45.701176,4.791714,0,0,DGL:SA:S31881,Europe/Paris,2,DGL, +DGL:SP:368,1,"Francheville Taffignon",45.734607,4.775171,0,0,DGL:SA:S10173,Europe/Paris,2,DGL, +DGL:SP:36814,1,"Montgay Chardonniere",45.821031,4.862558,0,0,DGL:SA:S31890,Europe/Paris,2,DGL, +DGL:SP:36834,1,"Montgay Chardonniere",45.821241,4.862452,0,0,DGL:SA:S31890,Europe/Paris,2,DGL, +DGL:SP:36874,1,"Hopital Mere Enfant",45.747416,4.901555,0,0,DGL:SA:S31810,Europe/Paris,2,DGL, +DGL:SP:36875,1,"Hopital Mere Enfant",45.747473,4.901442,0,0,DGL:SA:S31810,Europe/Paris,2,DGL, +DGL:SP:36876,1,"Corbas Chateau d'Eau",45.685477,4.905118,0,0,DGL:SA:S31900,Europe/Paris,0,DGL, +DGL:SP:36877,1,"Corbas Chateau d'Eau",45.685773,4.904759,0,0,DGL:SA:S31900,Europe/Paris,0,DGL, +DGL:SP:36878,1,"Mions Pierre Blanche",45.668034,4.929263,0,0,DGL:SA:S31901,Europe/Paris,0,DGL, +DGL:SP:36879,1,"Mions Pierre Blanche",45.66807,4.929265,0,0,DGL:SA:S31901,Europe/Paris,0,DGL, +DGL:SP:36894,1,"Duchere Martiniere",45.786321,4.795936,0,0,DGL:SA:S10372,Europe/Paris,2,DGL, +DGL:SP:36895,1,"Duchere Martiniere",45.786381,4.795639,0,0,DGL:SA:S10372,Europe/Paris,2,DGL, +DGL:SP:36940,1,"Freres Perret",45.690372,4.845957,0,0,DGL:SA:S31913,Europe/Paris,0,DGL, +DGL:SP:36955,1,"Sept Chemins",45.744891,4.932679,0,0,DGL:SA:S11269,Europe/Paris,2,DGL, +DGL:SP:36994,1,"Halles Paul Bocuse",45.763602,4.848963,0,0,DGL:SA:S31920,Europe/Paris,2,DGL, +DGL:SP:36995,1,"Halles Paul Bocuse",45.763695,4.849598,0,0,DGL:SA:S31920,Europe/Paris,0,DGL, +DGL:SP:36996,1,"Institut d'art contemporain",45.763694,4.873584,0,0,DGL:SA:S31921,Europe/Paris,2,DGL, +DGL:SP:36997,1,"Institut d'art contemporain",45.763828,4.87291,0,0,DGL:SA:S31921,Europe/Paris,0,DGL, +DGL:SP:36998,1,"Blanqui-Ctre Memoires et Ste",45.760813,4.885204,0,0,DGL:SA:S31922,Europe/Paris,0,DGL, +DGL:SP:36999,1,"Blanqui-Ctre Memoires et Ste",45.761087,4.884278,0,0,DGL:SA:S31922,Europe/Paris,0,DGL, +DGL:SP:37014,1,"Hopital Lyon Sud",45.699622,4.806339,0,0,DGL:SA:S10565,Europe/Paris,2,DGL, +DGL:SP:37036,1,"Sept Chemins",45.744018,4.93305,0,0,DGL:SA:S11269,Europe/Paris,2,DGL, +DGL:SP:37054,1,"Rocade des Monts d'Or",45.820134,4.810609,0,0,DGL:SA:S31930,Europe/Paris,2,DGL, +DGL:SP:37055,1,"Les Gorges",45.820525,4.80186,0,0,DGL:SA:S11890,Europe/Paris,2,DGL, +DGL:SP:37056,1,"Paul Chevrel",45.819842,4.800156,0,0,DGL:SA:S11891,Europe/Paris,2,DGL, +DGL:SP:37074,1,"Tourneyrand",45.859058,4.841401,0,0,DGL:SA:S31940,Europe/Paris,2,DGL, +DGL:SP:37075,1,"Tourneyrand",45.858379,4.84119,0,0,DGL:SA:S31940,Europe/Paris,2,DGL, +DGL:SP:37094,1,"Pont de Neuville RG",45.878094,4.838262,0,0,DGL:SA:S31475,Europe/Paris,0,DGL, +DGL:SP:37098,1,"Champagne Lanessan",45.793039,4.794708,0,0,DGL:SA:S31950,Europe/Paris,2,DGL, +DGL:SP:371,1,"Cesar Paulet",45.816811,4.8416,0,0,DGL:SA:S10175,Europe/Paris,2,DGL, +DGL:SP:37115,1,"Institut Pasteur",45.72754,4.824428,0,0,DGL:SA:S20148,Europe/Paris,2,DGL, +DGL:SP:37116,1,"Universite Lyon 1 Gerland",45.726565,4.827404,0,0,DGL:SA:S31280,Europe/Paris,2,DGL, +DGL:SP:37117,1,"Stade de Gerland",45.726543,4.831644,0,0,DGL:SA:S5200,Europe/Paris,2,DGL, +DGL:SP:37154,1,"10 Rue Saillant",45.774641,4.937737,0,0,DGL:SA:S31970,Europe/Paris,0,DGL, +DGL:SP:37155,1,"10 Rue Saillant",45.774705,4.937727,0,0,DGL:SA:S31970,Europe/Paris,0,DGL, +DGL:SP:37156,1,"30 Rue Saillant",45.778141,4.941698,0,0,DGL:SA:S31971,Europe/Paris,0,DGL, +DGL:SP:37157,1,"30 Rue Saillant",45.77824,4.941728,0,0,DGL:SA:S31971,Europe/Paris,0,DGL, +DGL:SP:37158,1,"Fromont - Karl Marx",45.780764,4.941539,0,0,DGL:SA:S31972,Europe/Paris,0,DGL, +DGL:SP:37159,1,"Fromont - Karl Marx",45.780569,4.941414,0,0,DGL:SA:S31972,Europe/Paris,0,DGL, +DGL:SP:37160,1,"Karl Marx",45.778312,4.939403,0,0,DGL:SA:S31973,Europe/Paris,0,DGL, +DGL:SP:37161,1,"Karl Marx",45.778178,4.939345,0,0,DGL:SA:S31973,Europe/Paris,0,DGL, +DGL:SP:37162,1,"Fromont",45.776063,4.937392,0,0,DGL:SA:S10473,Europe/Paris,0,DGL, +DGL:SP:37163,1,"Lenine - Fromont",45.778376,4.937386,0,0,DGL:SA:S30101,Europe/Paris,0,DGL, +DGL:SP:37164,1,"Les Alpes",45.780565,4.936936,0,0,DGL:SA:S30100,Europe/Paris,0,DGL, +DGL:SP:37165,1,"Leonard De Vinci",45.7796,4.934691,0,0,DGL:SA:S30099,Europe/Paris,0,DGL, +DGL:SP:37166,1,"Vaulx Thibaude",45.778826,4.931194,0,0,DGL:SA:S11438,Europe/Paris,0,DGL, +DGL:SP:37169,1,"Vaulx-en-Velin La Soie",45.761491,4.922505,0,0,ORX:SA:S5564,Europe/Paris,2,DGL, +DGL:SP:37170,1,"Vaulx-en-Velin La Soie",45.760851,4.922154,0,0,ORX:SA:S5564,Europe/Paris,2,DGL, +DGL:SP:37171,1,"Grosso - Roosevelt",45.76244,4.937121,0,0,DGL:SA:S20337,Europe/Paris,0,DGL, +DGL:SP:37172,1,"Z.I. Bruyeres",45.759797,4.941652,0,0,DGL:SA:S31975,Europe/Paris,0,DGL, +DGL:SP:37173,1,"Edelweiss",45.75684,4.942618,0,0,DGL:SA:S31976,Europe/Paris,0,DGL, +DGL:SP:37174,1,"Vaucanson",45.754134,4.943248,0,0,DGL:SA:S31977,Europe/Paris,2,DGL, +DGL:SP:37175,1,"Z.I. Roosevelt",45.750598,4.934222,0,0,DGL:SA:S31978,Europe/Paris,0,DGL, +DGL:SP:37176,1,"Roosevelt - Vaucanson",45.754436,4.935264,0,0,DGL:SA:S31979,Europe/Paris,0,DGL, +DGL:SP:37177,1,"Z.I. Ouest",45.757576,4.936094,0,0,DGL:SA:S31980,Europe/Paris,0,DGL, +DGL:SP:37179,1,"Bruyeres",45.762761,4.94075,0,0,DGL:SA:S10132,Europe/Paris,0,DGL, +DGL:SP:37181,1,"Cite Tase",45.758782,4.927149,0,0,DGL:SA:S10253,Europe/Paris,2,DGL, +DGL:SP:37194,1,"Bachut - Mairie du 8eme",45.735475,4.870881,0,0,DGL:SA:S5310,Europe/Paris,2,DGL, +DGL:SP:37195,1,"Bachut - Mairie du 8eme",45.735594,4.870385,0,0,DGL:SA:S5310,Europe/Paris,2,DGL, +DGL:SP:37196,1,"Maryse Bastie",45.734673,4.874906,0,0,DGL:SA:S10923,Europe/Paris,2,DGL, +DGL:SP:37198,1,"Le Capot",45.707028,4.985922,0,0,DGL:SA:S31191,Europe/Paris,0,DGL, +DGL:SP:37199,1,"Le Capot",45.706952,4.985726,0,0,DGL:SA:S31191,Europe/Paris,0,DGL, +DGL:SP:372,1,"Chabrol",45.733406,4.709837,0,0,DGL:SA:S10176,Europe/Paris,0,DGL, +DGL:SP:37200,1,"Vaulx-en-Velin La Soie",45.760973,4.91996,0,0,ORX:SA:S5564,Europe/Paris,2,DGL, +DGL:SP:37201,1,"Vaulx-en-Velin La Soie",45.761143,4.919608,0,0,ORX:SA:S5564,Europe/Paris,2,DGL, +DGL:SP:37214,1,"Vaulx-en-Velin La Soie",45.761198,4.921167,0,0,ORX:SA:S5564,Europe/Paris,2,DGL, +DGL:SP:37215,1,"Vaulx-en-Velin La Soie",45.761298,4.921493,0,0,ORX:SA:S5564,Europe/Paris,2,DGL, +DGL:SP:37216,1,"Vaulx-en-Velin La Soie",45.761363,4.921792,0,0,ORX:SA:S5564,Europe/Paris,2,DGL, +DGL:SP:37217,1,"Vaulx-en-Velin La Soie",45.761445,4.92213,0,0,ORX:SA:S5564,Europe/Paris,2,DGL, +DGL:SP:37254,1,"Sept Chemins",45.744649,4.932655,0,0,DGL:SA:S11269,Europe/Paris,2,DGL, +DGL:SP:37274,1,"Vaulx-en-Velin La Soie",45.760641,4.921102,0,0,ORX:SA:S5564,Europe/Paris,2,DGL, +DGL:SP:37275,1,"Gare de Venissieux",45.706332,4.888194,0,0,STE:SA:OCE87723320,Europe/Paris,2,DGL, +DGL:SP:37295,1,"Gare de Venissieux.",45.706211,4.888767,0,0,STE:SA:OCE87723320,Europe/Paris,2,DGL, +DGL:SP:373,1,"Chabrol",45.734206,4.711581,0,0,DGL:SA:S10176,Europe/Paris,0,DGL, +DGL:SP:37301,1,"Gare de Venissieux.",45.706123,4.888673,0,0,STE:SA:OCE87723320,Europe/Paris,2,DGL, +DGL:SP:37349,1,"Charcot",45.786272,4.993511,0,0,DGL:SA:S32018,Europe/Paris,2,DGL, +DGL:SP:37350,1,"Mont Joyeux",45.788197,4.993153,0,0,DGL:SA:S32019,Europe/Paris,2,DGL, +DGL:SP:37374,1,"Neuville (direction Lyon)",45.875876,4.838457,0,0,DGL:SA:S5640,Europe/Paris,0,DGL, +DGL:SP:37399,1,"Gorge de Loup",45.766284,4.805525,0,0,STE:SA:OCE87721175,Europe/Paris,2,DGL, +DGL:SP:374,1,"Chamagnieu",45.859847,4.753498,0,0,DGL:SA:S10177,Europe/Paris,0,DGL, +DGL:SP:37400,1,"Valmy",45.775433,4.804546,0,0,DGL:SA:S5094,Europe/Paris,0,DGL, +DGL:SP:37408,1,"Manufacture Montluc",45.749759,4.858913,0,0,DGL:SA:S5906,Europe/Paris,0,DGL, +DGL:SP:37438,1,"Castellane Leclerc",45.812659,4.894457,0,0,DGL:SA:S32071,Europe/Paris,0,DGL, +DGL:SP:37439,1,"Castellane Leclerc",45.812526,4.894772,0,0,DGL:SA:S32071,Europe/Paris,0,DGL, +DGL:SP:37444,1,"Garibaldi - Gambetta",45.751902,4.853564,0,0,DGL:SA:S10488,Europe/Paris,0,DGL, +DGL:SP:37445,1,"Garibaldi - Gambetta",45.751724,4.853217,0,0,DGL:SA:S10488,Europe/Paris,0,DGL, +DGL:SP:37455,1,"Ecully Le Trouillat",45.775884,4.774415,0,0,DGL:SA:S10399,Europe/Paris,0,DGL, +DGL:SP:37484,1,"Grandvaux - Prieure",45.773002,4.774468,0,0,DGL:SA:S30080,Europe/Paris,0,DGL, +DGL:SP:37487,1,"Pole Alimentaire",45.66921,4.92471,0,0,DGL:SA:S32086,Europe/Paris,2,DGL, +DGL:SP:37488,1,"Pole Alimentaire",45.669281,4.924777,0,0,DGL:SA:S32086,Europe/Paris,2,DGL, +DGL:SP:37491,1,"Industrie Charbonnier",45.687632,4.912398,0,0,DGL:SA:S32088,Europe/Paris,0,DGL, +DGL:SP:37492,1,"Industrie Charbonnier",45.687657,4.912463,0,0,DGL:SA:S32088,Europe/Paris,0,DGL, +DGL:SP:37495,1,"Gare de Limonest",45.826354,4.757265,0,0,DGL:SA:S12258,Europe/Paris,0,DGL, +DGL:SP:37496,1,"Dardilly Les Longes",45.83497,4.747961,0,0,DGL:SA:S12287,Europe/Paris,0,DGL, +DGL:SP:375,1,"Chamagnieu",45.859831,4.753446,0,0,DGL:SA:S10177,Europe/Paris,2,DGL, +DGL:SP:37500,1,"Gare de Limonest",45.82639,4.75688,0,0,DGL:SA:S12258,Europe/Paris,0,DGL, +DGL:SP:37506,1,"Porte de Lyon",45.821456,4.762791,0,0,DGL:SA:S11147,Europe/Paris,2,DGL, +DGL:SP:37522,1,"Cesar Paulet",45.816611,4.841269,0,0,DGL:SA:S10175,Europe/Paris,0,DGL, +DGL:SP:37580,1,"Jean Baptiste Perret",45.816969,4.834887,0,0,DGL:SA:S32111,Europe/Paris,0,DGL, +DGL:SP:37594,1,"Rocade des Monts d'Or",45.82008,4.810646,0,0,DGL:SA:S31930,Europe/Paris,0,DGL, +DGL:SP:37595,1,"Ferroux",45.816936,4.813593,0,0,DGL:SA:S11886,Europe/Paris,0,DGL, +DGL:SP:37596,1,"Mairie St Cyr",45.815863,4.81778,0,0,DGL:SA:S32130,Europe/Paris,0,DGL, +DGL:SP:37597,1,"Mairie St Cyr",45.81589,4.817794,0,0,DGL:SA:S32130,Europe/Paris,0,DGL, +DGL:SP:37600,1,"Place Coponat",45.74033,4.97044,0,0,DGL:SA:S32131,Europe/Paris,0,DGL, +DGL:SP:37601,1,"Place Coponat",45.740234,4.97032,0,0,DGL:SA:S32131,Europe/Paris,2,DGL, +DGL:SP:37616,1,"Ecully Le Trouillat",45.77576,4.773908,0,0,DGL:SA:S10399,Europe/Paris,0,DGL, +DGL:SP:37627,1,"Grandvaux - Prieure",45.773123,4.774306,0,0,DGL:SA:S30080,Europe/Paris,0,DGL, +DGL:SP:37628,1,"Parc Tete d'Or-Churchill",45.777364,4.844549,0,0,DGL:SA:S11050,Europe/Paris,0,DGL, +DGL:SP:37645,1,"Vallas",45.742334,4.720094,0,0,DGL:SA:S32154,Europe/Paris,0,DGL, +DGL:SP:37674,1,"Terres Plates",45.74381,4.727254,0,0,DGL:SA:S32170,Europe/Paris,0,DGL, +DGL:SP:37675,1,"Terres Plates",45.743765,4.727291,0,0,DGL:SA:S32170,Europe/Paris,0,DGL, +DGL:SP:37683,1,"Serpoly Nervieux",45.814369,4.823147,0,0,DGL:SA:S32172,Europe/Paris,0,DGL, +DGL:SP:37684,1,"Serpoly Nervieux",45.81448,4.822918,0,0,DGL:SA:S32172,Europe/Paris,0,DGL, +DGL:SP:37685,1,"St Cyr Eglise",45.814441,4.819814,0,0,DGL:SA:S32173,Europe/Paris,0,DGL, +DGL:SP:37686,1,"St Cyr Eglise",45.814376,4.819901,0,0,DGL:SA:S32173,Europe/Paris,0,DGL, +DGL:SP:37699,1,"Champagne (ch.St Didier)",45.80041,4.787342,0,0,DGL:SA:S10182,Europe/Paris,0,DGL, +DGL:SP:37719,1,"Centre L. Bonnevay",45.810181,4.794947,0,0,DGL:SA:S32181,Europe/Paris,0,DGL, +DGL:SP:37720,1,"Centre L. Bonnevay",45.810323,4.795018,0,0,DGL:SA:S32181,Europe/Paris,0,DGL, +DGL:SP:37721,1,"Le Castellard",45.806377,4.790234,0,0,DGL:SA:S32182,Europe/Paris,0,DGL, +DGL:SP:37722,1,"Le Castellard",45.806647,4.790405,0,0,DGL:SA:S32182,Europe/Paris,0,DGL, +DGL:SP:37742,1,"St Didier Eglise",45.811002,4.796889,0,0,DGL:SA:S11297,Europe/Paris,0,DGL, +DGL:SP:37764,1,"St Priest Les Alpes",45.69346,4.932503,0,0,DGL:SA:S32193,Europe/Paris,2,DGL, +DGL:SP:37765,1,"St Priest Les Alpes",45.69351,4.932672,0,0,DGL:SA:S32193,Europe/Paris,2,DGL, +DGL:SP:378,1,"Champ Blanc",45.761081,4.947217,0,0,DGL:SA:S10179,Europe/Paris,2,DGL, +DGL:SP:37835,1,"La Fouillouse Acacias",45.685693,4.976779,0,0,DGL:SA:S31431,Europe/Paris,0,DGL, +DGL:SP:37846,1,"Esplanade des Arts",45.694579,4.940545,0,0,DGL:SA:S5440,Europe/Paris,0,DGL, +DGL:SP:37847,1,"Esplanade des Arts",45.694414,4.940691,0,0,DGL:SA:S5440,Europe/Paris,0,DGL, +DGL:SP:37895,1,"La Garenne",45.667092,4.858903,0,0,DGL:SA:S10667,Europe/Paris,2,DGL, +DGL:SP:379,1,"Champ Blanc",45.761262,4.946775,0,0,DGL:SA:S10179,Europe/Paris,2,DGL, +DGL:SP:37907,1,"Meyzieu Bascule",45.765787,4.99602,0,0,DGL:SA:S32265,Europe/Paris,0,DGL, +DGL:SP:37980,1,"Lycee Cuzin",45.801096,4.856018,0,0,DGL:SA:S20241,Europe/Paris,2,DGL, +DGL:SP:38116,1,"Fauconnet",45.750136,4.789089,0,0,DGL:SA:S32371,Europe/Paris,2,DGL, +DGL:SP:38117,1,"Jeunet",45.748027,4.790859,0,0,DGL:SA:S32372,Europe/Paris,2,DGL, +DGL:SP:38236,1,"Gadagne - Foch",45.688083,4.786223,0,0,DGL:SA:S32391,Europe/Paris,2,DGL, +DGL:SP:38237,1,"Gadagne - Foch",45.688296,4.78595,0,0,DGL:SA:S32391,Europe/Paris,0,DGL, +DGL:SP:38295,1,"La Fouillouse",45.686964,4.983583,0,0,DGL:SA:S20363,Europe/Paris,0,DGL, +DGL:SP:38296,1,"Manissieux Place Balzac",45.70605,4.978154,0,0,DGL:SA:S10904,Europe/Paris,0,DGL, +DGL:SP:383,1,"Champagne (che.du Pave)",45.801742,4.784429,0,0,DGL:SA:S10181,Europe/Paris,0,DGL, +DGL:SP:38303,1,"La Fouillouse Acacias",45.685531,4.976027,0,0,DGL:SA:S31431,Europe/Paris,0,DGL, +DGL:SP:38305,1,"Laennec",45.738028,4.886869,0,0,DGL:SA:S5062,Europe/Paris,0,DGL, +DGL:SP:38314,1,"Les Lavandes",45.645535,4.80389,0,0,DGL:SA:S32410,Europe/Paris,2,DGL, +DGL:SP:38358,1,"Centre Culturel",45.778957,4.779195,0,0,DGL:SA:S11226,Europe/Paris,2,DGL, +DGL:SP:38374,1,"Genay Proulieu",45.904028,4.845104,0,0,DGL:SA:S30087,Europe/Paris,0,DGL, +DGL:SP:384,1,"Champagne (che.du Pave)",45.80147,4.784944,0,0,DGL:SA:S10181,Europe/Paris,0,DGL, +DGL:SP:385,1,"Champagne (ch.St Didier)",45.800459,4.786727,0,0,DGL:SA:S10182,Europe/Paris,2,DGL, +DGL:SP:38594,1,"Vernaison La Rossignole",45.641491,4.807674,0,0,DGL:SA:S11452,Europe/Paris,2,DGL, +DGL:SP:386,1,"Champagne (ch.St Didier)",45.800307,4.786694,0,0,DGL:SA:S10182,Europe/Paris,2,DGL, +DGL:SP:387,1,"Champagne Centre",45.795269,4.792325,0,0,DGL:SA:S10183,Europe/Paris,2,DGL, +DGL:SP:38754,1,"Les Essards",45.639751,4.802104,0,0,DGL:SA:S30727,Europe/Paris,2,DGL, +DGL:SP:38834,1,"Manufacture Montluc",45.749905,4.858842,0,0,DGL:SA:S5906,Europe/Paris,0,DGL, +DGL:SP:38897,1,"St Rambert Les Rivieres",45.807703,4.837465,0,0,DGL:SA:S11346,Europe/Paris,2,DGL, +DGL:SP:389,1,"Champfleury",45.799094,4.78821,0,0,DGL:SA:S10184,Europe/Paris,2,DGL, +DGL:SP:39,1,"Albigny Plaine",45.856433,4.834789,0,0,DGL:SA:S10019,Europe/Paris,2,DGL, +DGL:SP:390,1,"Champfleury",45.797844,4.789416,0,0,DGL:SA:S10184,Europe/Paris,2,DGL, +DGL:SP:39014,1,"Croix-Rousse",45.774532,4.832797,0,0,DGL:SA:S5223,Europe/Paris,2,DGL, +DGL:SP:39034,1,"Feyzin Gare",45.665558,4.853454,0,0,STE:SA:OCE87722538,Europe/Paris,2,DGL, +DGL:SP:39035,1,"Feyzin Gare",45.66587,4.853609,0,0,STE:SA:OCE87722538,Europe/Paris,2,DGL, +DGL:SP:39037,1,"Place Docteurs Merieux",45.733038,4.825216,0,0,DGL:SA:S11114,Europe/Paris,2,DGL, +DGL:SP:39054,1,"Gare Part-Dieu Vivier Merle",45.760606,4.8578,0,0,DGL:SA:S5520,Europe/Paris,2,DGL, +DGL:SP:39094,1,"Eaux Vives",45.839362,4.828513,0,0,DGL:SA:S32560,Europe/Paris,2,DGL, +DGL:SP:39095,1,"Eaux Vives",45.83813,4.829282,0,0,DGL:SA:S32560,Europe/Paris,2,DGL, +DGL:SP:39096,1,"St Romain Centre",45.83801,4.824923,0,0,DGL:SA:S32561,Europe/Paris,2,DGL, +DGL:SP:391,1,"Champoulin",45.758916,4.716145,0,0,DGL:SA:S10185,Europe/Paris,2,DGL, +DGL:SP:39134,1,"Montrochet",45.740279,4.815786,0,0,DGL:SA:S31470,Europe/Paris,2,DGL, +DGL:SP:39135,1,"Montrochet",45.740428,4.81596,0,0,DGL:SA:S31470,Europe/Paris,2,DGL, +DGL:SP:392,1,"Champoulin",45.758704,4.717203,0,0,DGL:SA:S10185,Europe/Paris,2,DGL, +DGL:SP:39214,1,"Brindas Salle des Fetes",45.722487,4.697081,0,0,DGL:SA:S32600,Europe/Paris,0,DGL, +DGL:SP:39215,1,"Brindas Salle des Fetes",45.722538,4.697212,0,0,DGL:SA:S32600,Europe/Paris,0,DGL, +DGL:SP:39235,1,"Bois Comtal",45.635249,4.805829,0,0,DGL:SA:S11451,Europe/Paris,0,DGL, +DGL:SP:39274,1,"Charles De Gaulle",45.816995,4.891814,0,0,DGL:SA:S10198,Europe/Paris,0,DGL, +DGL:SP:393,1,"Champvert",45.764064,4.792269,0,0,DGL:SA:S10186,Europe/Paris,2,DGL, +DGL:SP:39334,1,"Irigny Hauts de Selettes",45.659464,4.816737,0,0,DGL:SA:S32640,Europe/Paris,2,DGL, +DGL:SP:39336,1,"Billon",45.665102,4.821031,0,0,DGL:SA:S32641,Europe/Paris,2,DGL, +DGL:SP:39337,1,"Billon",45.66607,4.820831,0,0,DGL:SA:S32641,Europe/Paris,2,DGL, +DGL:SP:39338,1,"Irigny Venieres",45.667094,4.819721,0,0,DGL:SA:S10581,Europe/Paris,2,DGL, +DGL:SP:39376,1,"Lycee Lumiere",45.736786,4.861754,0,0,DGL:SA:S5700,Europe/Paris,2,DGL, +DGL:SP:39377,1,"Lycee Lumiere",45.736825,4.861852,0,0,DGL:SA:S5700,Europe/Paris,2,DGL, +DGL:SP:39378,1,"Musee Tony Garnier",45.73297,4.864743,0,0,DGL:SA:S5701,Europe/Paris,2,DGL, +DGL:SP:39379,1,"Musee Tony Garnier",45.733006,4.864835,0,0,DGL:SA:S5701,Europe/Paris,2,DGL, +DGL:SP:39380,1,"Pr Beauvisage CISL",45.729779,4.867225,0,0,DGL:SA:S5702,Europe/Paris,2,DGL, +DGL:SP:39381,1,"Pr Beauvisage CISL",45.729815,4.867317,0,0,DGL:SA:S5702,Europe/Paris,2,DGL, +DGL:SP:39382,1,"Etats-Unis Viviani",45.724873,4.871039,0,0,DGL:SA:S5703,Europe/Paris,2,DGL, +DGL:SP:39383,1,"Etats-Unis Viviani",45.724911,4.871139,0,0,DGL:SA:S5703,Europe/Paris,2,DGL, +DGL:SP:39386,1,"La Borelle",45.711114,4.882119,0,0,DGL:SA:S5705,Europe/Paris,2,DGL, +DGL:SP:39387,1,"La Borelle",45.711171,4.882187,0,0,DGL:SA:S5705,Europe/Paris,2,DGL, +DGL:SP:39388,1,"Gare de Venissieux",45.705671,4.887669,0,0,STE:SA:OCE87723320,Europe/Paris,2,DGL, +DGL:SP:39389,1,"Gare de Venissieux",45.705674,4.887815,0,0,STE:SA:OCE87723320,Europe/Paris,2,DGL, +DGL:SP:39390,1,"Croizat - Paul Bert",45.700075,4.887575,0,0,DGL:SA:S5706,Europe/Paris,2,DGL, +DGL:SP:39391,1,"Croizat - Paul Bert",45.700075,4.887683,0,0,DGL:SA:S5706,Europe/Paris,2,DGL, +DGL:SP:39392,1,"M.Houel- H. de Ville",45.696548,4.884573,0,0,DGL:SA:S5707,Europe/Paris,2,DGL, +DGL:SP:39393,1,"M.Houel- H. de Ville",45.696475,4.884591,0,0,DGL:SA:S5707,Europe/Paris,2,DGL, +DGL:SP:39394,1,"Lycee Jacques Brel",45.694954,4.879845,0,0,DGL:SA:S5708,Europe/Paris,2,DGL, +DGL:SP:39395,1,"Lycee Jacques Brel",45.694899,4.879928,0,0,DGL:SA:S5708,Europe/Paris,2,DGL, +DGL:SP:39398,1,"Venissy",45.696011,4.872053,0,0,DGL:SA:S5710,Europe/Paris,2,DGL, +DGL:SP:39399,1,"Venissy",45.695953,4.871982,0,0,DGL:SA:S5710,Europe/Paris,2,DGL, +DGL:SP:394,1,"Champvert",45.763949,4.792997,0,0,DGL:SA:S10186,Europe/Paris,2,DGL, +DGL:SP:39400,1,"Division Leclerc",45.698444,4.868242,0,0,DGL:SA:S5711,Europe/Paris,2,DGL, +DGL:SP:39401,1,"Division Leclerc",45.698387,4.86817,0,0,DGL:SA:S5711,Europe/Paris,2,DGL, +DGL:SP:39402,1,"Maurice Thorez",45.699895,4.863297,0,0,DGL:SA:S5712,Europe/Paris,2,DGL, +DGL:SP:39403,1,"Maurice Thorez",45.699819,4.863292,0,0,DGL:SA:S5712,Europe/Paris,2,DGL, +DGL:SP:39404,1,"Lenine - Corsiere",45.696808,4.861704,0,0,DGL:SA:S5713,Europe/Paris,2,DGL, +DGL:SP:39405,1,"Lenine - Corsiere",45.696867,4.861775,0,0,DGL:SA:S5713,Europe/Paris,2,DGL, +DGL:SP:39406,1,"J. Curie - M. Sembat",45.715485,4.878357,0,0,DGL:SA:S5704,Europe/Paris,2,DGL, +DGL:SP:39407,1,"J. Curie - M. Sembat",45.715527,4.87845,0,0,DGL:SA:S5704,Europe/Paris,2,DGL, +DGL:SP:39408,1,"Herriot - Cagne",45.693791,4.875526,0,0,DGL:SA:S5709,Europe/Paris,2,DGL, +DGL:SP:39409,1,"Herriot - Cagne",45.693735,4.875454,0,0,DGL:SA:S5709,Europe/Paris,2,DGL, +DGL:SP:39410,1,"Darnaise",45.692619,4.864281,0,0,DGL:SA:S5714,Europe/Paris,2,DGL, +DGL:SP:39411,1,"Darnaise",45.692679,4.864353,0,0,DGL:SA:S5714,Europe/Paris,2,DGL, +DGL:SP:39413,1,"Hopital Feyzin Venissieux",45.68824,4.865109,0,0,DGL:SA:S5715,Europe/Paris,2,DGL, +DGL:SP:39434,1,"Feyzin Venissieux.",45.688241,4.865214,0,0,DGL:SA:S5715,Europe/Paris,2,DGL, +DGL:SP:39454,1,"Jet d'Eau M.France",45.740102,4.85921,0,0,DGL:SA:S5309,Europe/Paris,2,DGL, +DGL:SP:39455,1,"Jet d'Eau M.France",45.740064,4.85911,0,0,DGL:SA:S5309,Europe/Paris,2,DGL, +DGL:SP:39474,1,"Gorge de Loup",45.766548,4.804174,0,0,STE:SA:OCE87721175,Europe/Paris,2,DGL, +DGL:SP:395,1,"Champvillard",45.672685,4.818446,0,0,DGL:SA:S10187,Europe/Paris,2,DGL, +DGL:SP:39514,1,"Les Vergers",45.662001,4.818016,0,0,DGL:SA:S32710,Europe/Paris,0,DGL, +DGL:SP:39515,1,"Les Vergers",45.661867,4.817971,0,0,DGL:SA:S32710,Europe/Paris,2,DGL, +DGL:SP:39534,1,"Lycee Jacques Brel",45.694974,4.87982,0,0,DGL:SA:S5708,Europe/Paris,2,DGL, +DGL:SP:39574,1,"Corbas Les Balmes",45.664995,4.894252,0,0,DGL:SA:S31430,Europe/Paris,0,DGL, +DGL:SP:39575,1,"Corbas Rue du Midi",45.660265,4.898385,0,0,DGL:SA:S10284,Europe/Paris,0,DGL, +DGL:SP:39576,1,"Jacques Prevert",45.662626,4.895092,0,0,DGL:SA:S20233,Europe/Paris,0,DGL, +DGL:SP:39577,1,"Corbas Les Bruyeres",45.659415,4.902068,0,0,DGL:SA:S32730,Europe/Paris,0,DGL, +DGL:SP:39578,1,"Corbas Les Bruyeres",45.659381,4.902785,0,0,DGL:SA:S32730,Europe/Paris,0,DGL, +DGL:SP:396,1,"Champvillard",45.672614,4.818365,0,0,DGL:SA:S10187,Europe/Paris,0,DGL, +DGL:SP:39614,1,"Mions Poste",45.66959,4.950239,0,0,DGL:SA:S10960,Europe/Paris,0,DGL, +DGL:SP:39674,1,"Jean Sebastien Bach",45.694,4.89768,0,0,DGL:SA:S32750,Europe/Paris,0,DGL, +DGL:SP:39675,1,"Jean Sebastien Bach",45.694071,4.897722,0,0,DGL:SA:S32750,Europe/Paris,0,DGL, +DGL:SP:397,1,"Chantabeau",45.641512,4.837573,0,0,DGL:SA:S10188,Europe/Paris,2,DGL, +DGL:SP:39734,1,"Blanqui-Ctre Memoires et Ste",45.7614,4.884743,0,0,DGL:SA:S31922,Europe/Paris,0,DGL, +DGL:SP:39774,1,"Ancienne Gare",45.718899,4.696959,0,0,DGL:SA:S32780,Europe/Paris,0,DGL, +DGL:SP:398,1,"Chantabeau",45.641651,4.837772,0,0,DGL:SA:S10188,Europe/Paris,2,DGL, +DGL:SP:39894,1,"Lycee Lumiere",45.734234,4.863639,0,0,DGL:SA:S5700,Europe/Paris,2,DGL, +DGL:SP:39895,1,"Lycee Lumiere",45.734464,4.862994,0,0,DGL:SA:S5700,Europe/Paris,2,DGL, +DGL:SP:39896,1,"Professeur Beauvisage CISL",45.729471,4.868086,0,0,DGL:SA:S5702,Europe/Paris,2,DGL, +DGL:SP:39897,1,"Professeur Beauvisage CISL",45.729675,4.868198,0,0,DGL:SA:S5702,Europe/Paris,2,DGL, +DGL:SP:39898,1,"Etats-Unis Tony Garnier",45.733888,4.864227,0,0,DGL:SA:S5701,Europe/Paris,2,DGL, +DGL:SP:399,1,"Chante Ruisseau",45.772569,4.738627,0,0,DGL:SA:S10189,Europe/Paris,2,DGL, +DGL:SP:39914,1,"Marcel Houel Hotel de Ville",45.696358,4.883069,0,0,DGL:SA:S5707,Europe/Paris,2,DGL, +DGL:SP:39915,1,"Marcel Houel Hotel de Ville",45.696196,4.882689,0,0,DGL:SA:S5707,Europe/Paris,2,DGL, +DGL:SP:39917,1,"Lycee Jacques Brel",45.695029,4.880144,0,0,DGL:SA:S5708,Europe/Paris,2,DGL, +DGL:SP:39918,1,"Minguettes Darnaise",45.690658,4.866481,0,0,DGL:SA:S10955,Europe/Paris,2,DGL, +DGL:SP:39919,1,"Hopital Feyzin Venissieux",45.688596,4.865295,0,0,DGL:SA:S5715,Europe/Paris,2,DGL, +DGL:SP:39920,1,"Hopital Feyzin Venissieux",45.688693,4.864966,0,0,DGL:SA:S5715,Europe/Paris,2,DGL, +DGL:SP:39921,1,"Lamothe - Madeleine",45.745083,4.849108,0,0,DGL:SA:S10710,Europe/Paris,0,DGL, +DGL:SP:39922,1,"Domer - Chevreul",45.746844,4.84483,0,0,DGL:SA:S32812,Europe/Paris,2,DGL, +DGL:SP:39936,1,"Cite Tase",45.758476,4.928704,0,0,DGL:SA:S10253,Europe/Paris,2,DGL, +DGL:SP:39937,1,"Carre de Soie",45.764883,4.920234,0,0,DGL:SA:S32821,Europe/Paris,2,DGL, +DGL:SP:39938,1,"Carre de Soie",45.764987,4.921577,0,0,DGL:SA:S32821,Europe/Paris,2,DGL, +DGL:SP:39939,1,"Maurice Ravel",45.677916,4.861081,0,0,DGL:SA:S32822,Europe/Paris,2,DGL, +DGL:SP:39940,1,"Maurice Ravel",45.677298,4.860976,0,0,DGL:SA:S32822,Europe/Paris,2,DGL, +DGL:SP:39941,1,"Hopital Feyzin Venissieux",45.688246,4.861648,0,0,DGL:SA:S5715,Europe/Paris,2,DGL, +DGL:SP:39942,1,"Hopital Feyzin Venissieux",45.688895,4.86161,0,0,DGL:SA:S5715,Europe/Paris,2,DGL, +DGL:SP:39947,1,"Cimetiere de St Fons",45.69788,4.85795,0,0,DGL:SA:S11805,Europe/Paris,2,DGL, +DGL:SP:39948,1,"Cimetiere de St Fons",45.697381,4.85812,0,0,DGL:SA:S11805,Europe/Paris,2,DGL, +DGL:SP:39949,1,"Maurice Thorez",45.699793,4.86333,0,0,DGL:SA:S5712,Europe/Paris,2,DGL, +DGL:SP:39950,1,"Maurice Thorez",45.699924,4.863105,0,0,DGL:SA:S5712,Europe/Paris,2,DGL, +DGL:SP:39953,1,"Carriere du Port",45.722298,4.840344,0,0,DGL:SA:S32827,Europe/Paris,2,DGL, +DGL:SP:39954,1,"Carriere du Port",45.721866,4.840376,0,0,DGL:SA:S32827,Europe/Paris,2,DGL, +DGL:SP:39955,1,"Port Edouard Herriot",45.725503,4.838318,0,0,DGL:SA:S11738,Europe/Paris,2,DGL, +DGL:SP:39956,1,"Port Edouard Herriot",45.725428,4.838867,0,0,DGL:SA:S11738,Europe/Paris,2,DGL, +DGL:SP:39958,1,"Le Bandonnier",45.664945,4.860731,0,0,DGL:SA:S32829,Europe/Paris,0,DGL, +DGL:SP:39959,1,"Les Geraniums",45.666385,4.861541,0,0,DGL:SA:S10803,Europe/Paris,0,DGL, +DGL:SP:39960,1,"Feyzin Mairie",45.67021,4.859958,0,0,DGL:SA:S32830,Europe/Paris,2,DGL, +DGL:SP:39974,1,"Joliot Curie - Marcel Sembat",45.713957,4.879425,0,0,DGL:SA:S5704,Europe/Paris,2,DGL, +DGL:SP:39975,1,"Joliot Curie - Marcel Sembat",45.713978,4.878526,0,0,DGL:SA:S5704,Europe/Paris,2,DGL, +DGL:SP:39976,1,"Gare de Venissieux",45.706591,4.888271,0,0,STE:SA:OCE87723320,Europe/Paris,0,DGL, +DGL:SP:39996,1,"Vaulx-en-Velin La Soie",45.761124,4.920855,0,0,ORX:SA:S5564,Europe/Paris,2,DGL, +DGL:SP:4,1,"4 Chemins - La Salette",45.749816,4.796313,0,0,DGL:SA:S10002,Europe/Paris,2,DGL, +DGL:SP:40,1,"Albigny Plaine",45.856121,4.834646,0,0,DGL:SA:S10019,Europe/Paris,2,DGL, +DGL:SP:400,1,"Chante Ruisseau",45.772524,4.738612,0,0,DGL:SA:S10189,Europe/Paris,2,DGL, +DGL:SP:40014,1,"Lycee Lumiere",45.735195,4.863721,0,0,DGL:SA:S5700,Europe/Paris,2,DGL, +DGL:SP:40015,1,"Professeur Beauvisage CISL",45.729561,4.867267,0,0,DGL:SA:S5702,Europe/Paris,2,DGL, +DGL:SP:40016,1,"Professeur Beauvisage CISL",45.729809,4.867471,0,0,DGL:SA:S5702,Europe/Paris,2,DGL, +DGL:SP:40034,1,"Commune de Paris",45.702747,4.869632,0,0,DGL:SA:S32850,Europe/Paris,2,DGL, +DGL:SP:40035,1,"Commune de Paris",45.702745,4.869349,0,0,DGL:SA:S32850,Europe/Paris,2,DGL, +DGL:SP:40036,1,"Gare de Venissieux.",45.705256,4.887605,0,0,STE:SA:OCE87723320,Europe/Paris,2,DGL, +DGL:SP:401,1,"Chantegrillet",45.738816,4.773249,0,0,DGL:SA:S5740,Europe/Paris,2,DGL, +DGL:SP:40114,1,"Feyzin Mairie",45.669985,4.859947,0,0,DGL:SA:S32830,Europe/Paris,2,DGL, +DGL:SP:40115,1,"Gare de Venissieux.",45.704702,4.887451,0,0,STE:SA:OCE87723320,Europe/Paris,2,DGL, +DGL:SP:40135,1,"Croizat - Paul Bert",45.700041,4.887749,0,0,DGL:SA:S5706,Europe/Paris,2,DGL, +DGL:SP:40174,1,"Europa",45.681161,4.933438,0,0,DGL:SA:S32890,Europe/Paris,2,DGL, +DGL:SP:40175,1,"Europa",45.681182,4.933505,0,0,DGL:SA:S32890,Europe/Paris,2,DGL, +DGL:SP:40178,1,"Croizat - Paul Bert",45.700748,4.888347,0,0,DGL:SA:S5706,Europe/Paris,0,DGL, +DGL:SP:40179,1,"Croizat - Paul Bert",45.700718,4.888088,0,0,DGL:SA:S5706,Europe/Paris,2,DGL, +DGL:SP:40194,1,"Vaulx Salengro",45.749684,4.927441,0,0,DGL:SA:S32900,Europe/Paris,0,DGL, +DGL:SP:40195,1,"Vaulx Salengro",45.750284,4.927559,0,0,DGL:SA:S32900,Europe/Paris,0,DGL, +DGL:SP:40196,1,"Joliot Curie - Marcel Sembat",45.714768,4.880195,0,0,DGL:SA:S5704,Europe/Paris,0,DGL, +DGL:SP:40222,1,"Croizat - Paul Bert",45.699516,4.887506,0,0,DGL:SA:S5706,Europe/Paris,2,DGL, +DGL:SP:40234,1,"Hopital Lyon Sud",45.699769,4.806191,0,0,DGL:SA:S10565,Europe/Paris,2,DGL, +DGL:SP:40236,1,"St Genis Collonges",45.692525,4.805738,0,0,DGL:SA:S11306,Europe/Paris,0,DGL, +DGL:SP:40254,1,"Vernaison La Rossignole",45.641696,4.807773,0,0,DGL:SA:S11452,Europe/Paris,0,DGL, +DGL:SP:40314,1,"Cite St Jean",45.776619,4.90302,0,0,DGL:SA:S10252,Europe/Paris,0,DGL, +DGL:SP:404,1,"Chantemerle",45.819775,4.794154,0,0,DGL:SA:S10192,Europe/Paris,2,DGL, +DGL:SP:40414,1,"Le Relais",45.649209,4.856378,0,0,DGL:SA:S10744,Europe/Paris,0,DGL, +DGL:SP:40434,1,"Route de Mions",45.684419,4.947,0,0,DGL:SA:S11237,Europe/Paris,0,DGL, +DGL:SP:40454,1,"360 Avenue Schneider",45.780848,5.026223,0,0,DGL:SA:S32930,Europe/Paris,0,DGL, +DGL:SP:40455,1,"1 Avenue Schneider",45.779336,5.034447,0,0,DGL:SA:S32931,Europe/Paris,0,DGL, +DGL:SP:405,1,"Chantemerle",45.819786,4.79409,0,0,DGL:SA:S10192,Europe/Paris,2,DGL, +DGL:SP:40534,1,"Montcelard",45.770655,4.755251,0,0,DGL:SA:S32940,Europe/Paris,2,DGL, +DGL:SP:40535,1,"Montcelard",45.770726,4.754881,0,0,DGL:SA:S32940,Europe/Paris,2,DGL, +DGL:SP:40536,1,"Lycee Blaise Pascal",45.765531,4.752402,0,0,DGL:SA:S11829,Europe/Paris,0,DGL, +DGL:SP:40574,1,"Pays Bas",45.759587,5.028411,0,0,DGL:SA:S32960,Europe/Paris,0,DGL, +DGL:SP:40594,1,"Les Chantres",45.699036,4.986244,0,0,DGL:SA:S32970,Europe/Paris,0,DGL, +DGL:SP:40614,1,"Denfert Rochereau",45.583364,4.776871,0,0,DGL:SA:S31740,Europe/Paris,2,DGL, +DGL:SP:40616,1,"Centre Hospitalier Montgelas",45.599166,4.766248,0,0,DGL:SA:S31783,Europe/Paris,2,DGL, +DGL:SP:40617,1,"St Genis Barolles",45.678796,4.781611,0,0,DGL:SA:S11303,Europe/Paris,0,DGL, +DGL:SP:40618,1,"St Genis Barolles",45.679186,4.781847,0,0,DGL:SA:S11303,Europe/Paris,2,DGL, +DGL:SP:40619,1,"Z.A Barolles",45.675563,4.782097,0,0,DGL:SA:S32980,Europe/Paris,0,DGL, +DGL:SP:40620,1,"Z.A Barolles",45.6756,4.782433,0,0,DGL:SA:S32980,Europe/Paris,0,DGL, +DGL:SP:40621,1,"Les Essards",45.639621,4.801842,0,0,DGL:SA:S30727,Europe/Paris,0,DGL, +DGL:SP:40622,1,"Les Mesanges",45.64027,4.797726,0,0,DGL:SA:S31301,Europe/Paris,0,DGL, +DGL:SP:40623,1,"Flacheres",45.641943,4.795298,0,0,DGL:SA:S31300,Europe/Paris,2,DGL, +DGL:SP:40624,1,"Clotilde",45.767616,4.761342,0,0,DGL:SA:S32981,Europe/Paris,0,DGL, +DGL:SP:40625,1,"Clotilde",45.767115,4.762053,0,0,DGL:SA:S32981,Europe/Paris,0,DGL, +DGL:SP:40674,1,"St Germain Mairie",45.884104,4.802911,0,0,DGL:SA:S11314,Europe/Paris,2,DGL, +DGL:SP:40694,1,"Hopital Lyon Sud",45.699693,4.805982,0,0,DGL:SA:S10565,Europe/Paris,2,DGL, +DGL:SP:40714,1,"Mions Centre",45.664047,4.956344,0,0,DGL:SA:S33000,Europe/Paris,2,DGL, +DGL:SP:40715,1,"Dauphine",45.662913,4.952875,0,0,DGL:SA:S10325,Europe/Paris,2,DGL, +DGL:SP:40796,1,"Hauts de Solaize",45.645432,4.842179,0,0,DGL:SA:S10548,Europe/Paris,0,DGL, +DGL:SP:40834,1,"Parc de l'Artillerie",45.728218,4.844919,0,0,DGL:SA:S33030,Europe/Paris,2,DGL, +DGL:SP:40835,1,"Parc de l'Artillerie",45.728245,4.844908,0,0,DGL:SA:S33030,Europe/Paris,2,DGL, +DGL:SP:40845,1,"St Fons Sembat",45.709997,4.849074,0,0,DGL:SA:S31912,Europe/Paris,0,DGL, +DGL:SP:40846,1,"St Fons Sembat",45.709929,4.849662,0,0,DGL:SA:S31912,Europe/Paris,0,DGL, +DGL:SP:40847,1,"Belle Etoile",45.684699,4.846431,0,0,DGL:SA:S11782,Europe/Paris,0,DGL, +DGL:SP:40856,1,"19 Mars 1962",45.700097,4.859798,0,0,DGL:SA:S33041,Europe/Paris,0,DGL, +DGL:SP:40857,1,"19 Mars 1962",45.700176,4.859892,0,0,DGL:SA:S33041,Europe/Paris,0,DGL, +DGL:SP:40894,1,"Techsud",45.723823,4.845015,0,0,DGL:SA:S33050,Europe/Paris,2,DGL, +DGL:SP:40895,1,"Techsud",45.723904,4.845018,0,0,DGL:SA:S33050,Europe/Paris,2,DGL, +DGL:SP:40896,1,"Pr Bernard",45.722736,4.84413,0,0,DGL:SA:S33051,Europe/Paris,2,DGL, +DGL:SP:40898,1,"Ramboz Bitumes",45.680097,4.846157,0,0,DGL:SA:S33052,Europe/Paris,0,DGL, +DGL:SP:40914,1,"Plateaux de St Rambert",45.801698,4.826185,0,0,DGL:SA:S20244,Europe/Paris,0,DGL, +DGL:SP:410,1,"Charbinat",45.697648,4.820882,0,0,DGL:SA:S10194,Europe/Paris,2,DGL, +DGL:SP:41014,1,"Gambetta - Picasso",45.763153,4.995493,0,0,DGL:SA:S33060,Europe/Paris,2,DGL, +DGL:SP:41015,1,"Gambetta - Picasso",45.764127,4.995772,0,0,DGL:SA:S33060,Europe/Paris,2,DGL, +DGL:SP:41016,1,"Mendes France - Rambion",45.761497,4.98978,0,0,DGL:SA:S33061,Europe/Paris,0,DGL, +DGL:SP:41017,1,"Mendes France - Rambion",45.761522,4.989846,0,0,DGL:SA:S33061,Europe/Paris,0,DGL, +DGL:SP:41020,1,"Meyzieu Mendes France",45.765673,4.990573,0,0,DGL:SA:S10946,Europe/Paris,0,DGL, +DGL:SP:41054,1,"Square Combattants d'AFN",45.696258,4.793523,0,0,DGL:SA:S33070,Europe/Paris,0,DGL, +DGL:SP:41055,1,"Cimetiere de St Genis",45.700512,4.787919,0,0,DGL:SA:S33071,Europe/Paris,0,DGL, +DGL:SP:41056,1,"Cimetiere de St Genis",45.700441,4.787903,0,0,DGL:SA:S33071,Europe/Paris,0,DGL, +DGL:SP:41057,1,"Putet",45.704007,4.785775,0,0,DGL:SA:S33072,Europe/Paris,0,DGL, +DGL:SP:41058,1,"Clos Burtin",45.704325,4.787691,0,0,DGL:SA:S33073,Europe/Paris,0,DGL, +DGL:SP:41059,1,"Molinette",45.704445,4.79042,0,0,DGL:SA:S33074,Europe/Paris,0,DGL, +DGL:SP:41060,1,"Prieure",45.706216,4.789715,0,0,DGL:SA:S33075,Europe/Paris,0,DGL, +DGL:SP:41061,1,"Molinette - Montlouis",45.709309,4.786564,0,0,DGL:SA:S33076,Europe/Paris,0,DGL, +DGL:SP:41062,1,"Moly",45.70667,4.784558,0,0,DGL:SA:S33077,Europe/Paris,0,DGL, +DGL:SP:41063,1,"Allee Dubost",45.704941,4.785008,0,0,DGL:SA:S33078,Europe/Paris,0,DGL, +DGL:SP:41065,1,"Gadagne - Egalite",45.698914,4.788131,0,0,DGL:SA:S31860,Europe/Paris,0,DGL, +DGL:SP:41074,1,"Rond Point d'Alai",45.750469,4.765073,0,0,DGL:SA:S5763,Europe/Paris,2,DGL, +DGL:SP:41075,1,"Rond Point d'Alai",45.750446,4.765317,0,0,DGL:SA:S5763,Europe/Paris,2,DGL, +DGL:SP:41076,1,"Chemin de la Poterie",45.749044,4.761,0,0,DGL:SA:S33080,Europe/Paris,2,DGL, +DGL:SP:41077,1,"Chemin de la Poterie",45.749407,4.761122,0,0,DGL:SA:S33080,Europe/Paris,2,DGL, +DGL:SP:41094,1,"Brunier - Guyot",45.790586,4.831243,0,0,DGL:SA:S33090,Europe/Paris,0,DGL, +DGL:SP:41095,1,"Brunier - Guyot",45.791397,4.83164,0,0,DGL:SA:S33090,Europe/Paris,0,DGL, +DGL:SP:41096,1,"Pierre Brunier",45.789242,4.83059,0,0,DGL:SA:S33091,Europe/Paris,0,DGL, +DGL:SP:41097,1,"Pierre Brunier",45.788479,4.830466,0,0,DGL:SA:S33091,Europe/Paris,0,DGL, +DGL:SP:411,1,"Charbinat",45.697543,4.819864,0,0,DGL:SA:S10194,Europe/Paris,2,DGL, +DGL:SP:41100,1,"Place du Capot",45.791939,4.835602,0,0,DGL:SA:S20115,Europe/Paris,0,DGL, +DGL:SP:41101,1,"Square Elie Vignal",45.785546,4.837306,0,0,DGL:SA:S20196,Europe/Paris,2,DGL, +DGL:SP:41154,1,"Marius Berliet",45.741892,4.859748,0,0,DGL:SA:S30132,Europe/Paris,2,DGL, +DGL:SP:412,1,"Chardonnet",45.765931,4.929839,0,0,DGL:SA:S10195,Europe/Paris,0,DGL, +DGL:SP:41214,1,"Square Elie Vignal",45.78553,4.837202,0,0,DGL:SA:S20196,Europe/Paris,2,DGL, +DGL:SP:41234,1,"Gare d'Albigny-Neuville",45.875575,4.833353,0,0,DGL:SA:S11466,Europe/Paris,0,DGL, +DGL:SP:41235,1,"Gare d'Albigny-Neuville",45.875552,4.833214,0,0,DGL:SA:S11466,Europe/Paris,0,DGL, +DGL:SP:41295,1,"Serin - Saint Charles",45.77466,4.81246,0,0,DGL:SA:S11271,Europe/Paris,2,DGL, +DGL:SP:413,1,"Chardonnet",45.766031,4.929767,0,0,DGL:SA:S10195,Europe/Paris,0,DGL, +DGL:SP:41496,1,"Z.I. Terray - Schweitzer",45.77029,5.029167,0,0,DGL:SA:S31630,Europe/Paris,0,DGL, +DGL:SP:41514,1,"Valdo",45.750016,4.783863,0,0,DGL:SA:S11411,Europe/Paris,2,DGL, +DGL:SP:41594,1,"Bellecour Le Viste",45.75817,4.833374,0,0,DGL:SA:S10080,Europe/Paris,0,DGL, +DGL:SP:41614,1,"Chantegrillet.",45.738411,4.773269,0,0,DGL:SA:S5740,Europe/Paris,2,DGL, +DGL:SP:41654,1,"Z.I. Sermenaz",45.820176,4.914105,0,0,DGL:SA:S33140,Europe/Paris,2,DGL, +DGL:SP:41655,1,"Z.I. Sermenaz",45.820218,4.913064,0,0,DGL:SA:S33140,Europe/Paris,2,DGL, +DGL:SP:41656,1,"Osterode",45.822901,4.915804,0,0,DGL:SA:S33141,Europe/Paris,2,DGL, +DGL:SP:41657,1,"Osterode",45.822187,4.915539,0,0,DGL:SA:S33141,Europe/Paris,2,DGL, +DGL:SP:41679,1,"Observatoire",45.696825,4.786946,0,0,DGL:SA:S31880,Europe/Paris,0,DGL, +DGL:SP:41680,1,"Observatoire",45.697233,4.786797,0,0,DGL:SA:S31880,Europe/Paris,0,DGL, +DGL:SP:41681,1,"Square Combattants d'AFN",45.696193,4.793623,0,0,DGL:SA:S33070,Europe/Paris,0,DGL, +DGL:SP:41734,1,"Gare de Vaise",45.780444,4.804643,0,0,DGL:SA:S5103,Europe/Paris,2,DGL, +DGL:SP:41736,1,"Gare de Vaise",45.780937,4.804742,0,0,DGL:SA:S5103,Europe/Paris,2,DGL, +DGL:SP:41737,1,"Perrache",45.74933,4.82693,0,0,DGL:SA:S5085,Europe/Paris,0,DGL, +DGL:SP:41738,1,"Centre Com. Porte de Lyon",45.82039,4.767945,0,0,DGL:SA:S33160,Europe/Paris,2,DGL, +DGL:SP:41739,1,"Centre Com. Porte de Lyon",45.820412,4.76819,0,0,DGL:SA:S33160,Europe/Paris,2,DGL, +DGL:SP:41744,1,"Musee des Beaux Arts",45.766596,4.834412,0,0,DGL:SA:S33161,Europe/Paris,2,DGL, +DGL:SP:41753,1,"Le Vergoin",45.804244,4.838427,0,0,DGL:SA:S10752,Europe/Paris,2,DGL, +DGL:SP:41758,1,"Lycee Branly",45.753159,4.791641,0,0,DGL:SA:S20399,Europe/Paris,2,DGL, +DGL:SP:41760,1,"Jean Baptiste Perret",45.816963,4.833136,0,0,DGL:SA:S32111,Europe/Paris,2,DGL, +DGL:SP:41774,1,"Montaberlet",45.768196,4.93931,0,0,DGL:SA:S30102,Europe/Paris,2,DGL, +DGL:SP:41778,1,"Francheville Taffignon",45.734564,4.77549,0,0,DGL:SA:S10173,Europe/Paris,2,DGL, +DGL:SP:41794,1,"Valliere",45.816723,4.827319,0,0,DGL:SA:S33170,Europe/Paris,0,DGL, +DGL:SP:41796,1,"Cote de Vaux",45.816487,4.810278,0,0,DGL:SA:S33171,Europe/Paris,0,DGL, +DGL:SP:41814,1,"Pont Kitchener RG",45.751234,4.824278,0,0,DGL:SA:S5088,Europe/Paris,0,DGL, +DGL:SP:41815,1,"L'Indiennerie",45.809135,4.809393,0,0,DGL:SA:S11887,Europe/Paris,0,DGL, +DGL:SP:41816,1,"Louisa Siefert",45.805177,4.817414,0,0,DGL:SA:S33180,Europe/Paris,0,DGL, +DGL:SP:41817,1,"La Chaux Ecole de Champlong",45.814879,4.82927,0,0,DGL:SA:S33181,Europe/Paris,2,DGL, +DGL:SP:41818,1,"Rocade des Monts d'Or",45.819921,4.810896,0,0,DGL:SA:S31930,Europe/Paris,0,DGL, +DGL:SP:41819,1,"Fayolle",45.80199,4.819921,0,0,DGL:SA:S20379,Europe/Paris,0,DGL, +DGL:SP:41834,1,"Caluire - Place de la bascule",45.802138,4.851304,0,0,DGL:SA:S33190,Europe/Paris,2,DGL, +DGL:SP:41835,1,"Caluire - Place de la bascule",45.802112,4.851251,0,0,DGL:SA:S33190,Europe/Paris,2,DGL, +DGL:SP:41854,1,"Teillon - Poudrette",45.751044,4.918826,0,0,DGL:SA:S33200,Europe/Paris,2,DGL, +DGL:SP:41855,1,"Teillon - Poudrette",45.750324,4.918419,0,0,DGL:SA:S33200,Europe/Paris,2,DGL, +DGL:SP:41856,1,"Dumas - Poudrette",45.753366,4.920388,0,0,DGL:SA:S10379,Europe/Paris,2,DGL, +DGL:SP:41857,1,"Dumas - Poudrette",45.753378,4.920272,0,0,DGL:SA:S10379,Europe/Paris,2,DGL, +DGL:SP:41858,1,"Musset - Poudrette",45.757855,4.921293,0,0,DGL:SA:S11009,Europe/Paris,2,DGL, +DGL:SP:41859,1,"St Genis Gadagne",45.701793,4.796018,0,0,DGL:SA:S10475,Europe/Paris,2,DGL, +DGL:SP:41874,1,"Parc des Lumieres 1",45.680578,4.964989,0,0,DGL:SA:S33210,Europe/Paris,0,DGL, +DGL:SP:41875,1,"Parc des Lumieres 2",45.679554,4.968369,0,0,DGL:SA:S33211,Europe/Paris,0,DGL, +DGL:SP:41894,1,"Z.A. Pesseliere",45.677049,4.965771,0,0,DGL:SA:S20495,Europe/Paris,0,DGL, +DGL:SP:41895,1,"Z.A. Pesseliere",45.677292,4.965012,0,0,DGL:SA:S20495,Europe/Paris,0,DGL, +DGL:SP:419,1,"Charles Richard",45.74928,4.888489,0,0,DGL:SA:S10199,Europe/Paris,2,DGL, +DGL:SP:41974,1,"Place Jean Jaures",45.738633,4.837918,0,0,DGL:SA:S5221,Europe/Paris,2,DGL, +DGL:SP:41975,1,"Place Jean Jaures",45.738481,4.837925,0,0,DGL:SA:S5221,Europe/Paris,2,DGL, +DGL:SP:41976,1,"Parc de Parilly",45.723753,4.892461,0,0,DGL:SA:S33230,Europe/Paris,2,DGL, +DGL:SP:41978,1,"Clos Verger",45.71897,4.892545,0,0,DGL:SA:S33231,Europe/Paris,2,DGL, +DGL:SP:41979,1,"Clos Verger",45.718879,4.89258,0,0,DGL:SA:S33231,Europe/Paris,2,DGL, +DGL:SP:41980,1,"Anatole France",45.721416,4.893854,0,0,DGL:SA:S10027,Europe/Paris,2,DGL, +DGL:SP:41981,1,"Anatole France",45.72161,4.893992,0,0,DGL:SA:S10027,Europe/Paris,2,DGL, +DGL:SP:41982,1,"Patinoire Baraban",45.761726,4.868335,0,0,DGL:SA:S33232,Europe/Paris,2,DGL, +DGL:SP:41983,1,"Patinoire Baraban",45.761895,4.86842,0,0,DGL:SA:S33232,Europe/Paris,2,DGL, +DGL:SP:41994,1,"Cuire",45.785938,4.833684,0,0,DGL:SA:S5022,Europe/Paris,2,DGL, +DGL:SP:41995,1,"Cuire",45.785866,4.833388,0,0,DGL:SA:S5022,Europe/Paris,2,DGL, +DGL:SP:41997,1,"Tassin Deperet",45.758254,4.761791,0,0,DGL:SA:S11375,Europe/Paris,0,DGL, +DGL:SP:420,1,"Charles Richard",45.750449,4.887347,0,0,DGL:SA:S10199,Europe/Paris,2,DGL, +DGL:SP:42016,1,"Gare de Pierre Benite",45.705827,4.823305,0,0,DGL:SA:S33241,Europe/Paris,2,DGL, +DGL:SP:42017,1,"Gare de Pierre Benite",45.705862,4.823267,0,0,DGL:SA:S33241,Europe/Paris,2,DGL, +DGL:SP:42018,1,"Brotillon",45.703759,4.82742,0,0,DGL:SA:S33242,Europe/Paris,2,DGL, +DGL:SP:42020,1,"Fosse aux Ours",45.757547,4.84074,0,0,DGL:SA:S33243,Europe/Paris,2,DGL, +DGL:SP:42023,1,"Brossolette - Genas",45.748524,4.918386,0,0,DGL:SA:S10128,Europe/Paris,2,DGL, +DGL:SP:42024,1,"Triangle de Bron",45.726797,4.926479,0,0,DGL:SA:S11398,Europe/Paris,2,DGL, +DGL:SP:42025,1,"Colonel Chambonnet",45.727006,4.923674,0,0,DGL:SA:S33244,Europe/Paris,0,DGL, +DGL:SP:42026,1,"Croizat Rocade",45.712232,4.971717,0,0,DGL:SA:S33245,Europe/Paris,0,DGL, +DGL:SP:42027,1,"Croizat Rocade",45.712498,4.971524,0,0,DGL:SA:S33245,Europe/Paris,0,DGL, +DGL:SP:42028,1,"Galline",45.776379,4.867608,0,0,DGL:SA:S33246,Europe/Paris,0,DGL, +DGL:SP:42029,1,"Galline",45.776303,4.868196,0,0,DGL:SA:S33246,Europe/Paris,0,DGL, +DGL:SP:42030,1,"Hopitaux Est",45.746591,4.904577,0,0,DGL:SA:S33247,Europe/Paris,2,DGL, +DGL:SP:42031,1,"Pont Guillotiere RD",45.757772,4.836699,0,0,DGL:SA:S11172,Europe/Paris,0,DGL, +DGL:SP:42033,1,"Montchat Pinel",45.752868,4.895367,0,0,DGL:SA:S10979,Europe/Paris,2,DGL, +DGL:SP:42034,1,"Montchat Pinel",45.753781,4.894805,0,0,DGL:SA:S10979,Europe/Paris,2,DGL, +DGL:SP:42035,1,"Pinel Lepine",45.749678,4.897096,0,0,DGL:SA:S33248,Europe/Paris,2,DGL, +DGL:SP:42036,1,"Pinel Lepine",45.749399,4.897083,0,0,DGL:SA:S33248,Europe/Paris,2,DGL, +DGL:SP:42037,1,"Montchat Kimmerling",45.753121,4.897706,0,0,DGL:SA:S10978,Europe/Paris,2,DGL, +DGL:SP:42054,1,"Les Villas",45.817889,4.771657,0,0,DGL:SA:S10853,Europe/Paris,2,DGL, +DGL:SP:42055,1,"Les Villas",45.818719,4.770703,0,0,DGL:SA:S10853,Europe/Paris,2,DGL, +DGL:SP:42058,1,"L'Epoux",45.804057,4.78273,0,0,DGL:SA:S10619,Europe/Paris,2,DGL, +DGL:SP:42059,1,"L'Epoux",45.804125,4.782463,0,0,DGL:SA:S10619,Europe/Paris,2,DGL, +DGL:SP:42060,1,"Montee Roy",45.831807,4.850872,0,0,DGL:SA:S33250,Europe/Paris,0,DGL, +DGL:SP:42061,1,"Montee Roy",45.831734,4.85092,0,0,DGL:SA:S33250,Europe/Paris,2,DGL, +DGL:SP:42077,1,"Joconde",45.752417,4.78937,0,0,DGL:SA:S33260,Europe/Paris,0,DGL, +DGL:SP:42102,1,"Pagere Vivaldi",45.746527,4.915618,0,0,DGL:SA:S33273,Europe/Paris,2,DGL, +DGL:SP:42103,1,"Pagere Vivaldi",45.746437,4.915588,0,0,DGL:SA:S33273,Europe/Paris,2,DGL, +DGL:SP:42114,1,"Augagneur Servient",45.759739,4.840942,0,0,DGL:SA:S33280,Europe/Paris,2,DGL, +DGL:SP:42115,1,"Eiffel",45.781855,5.02927,0,0,DGL:SA:S33281,Europe/Paris,0,DGL, +DGL:SP:42155,1,"Limonest Le Puy d'Or",45.81511,4.775692,0,0,DGL:SA:S33290,Europe/Paris,2,DGL, +DGL:SP:42157,1,"Limonest Le Puy d'Or",45.813846,4.776266,0,0,DGL:SA:S33290,Europe/Paris,2,DGL, +DGL:SP:42214,1,"Cuire",45.785826,4.833202,0,0,DGL:SA:S5022,Europe/Paris,2,DGL, +DGL:SP:42235,1,"Cuire",45.786041,4.833755,0,0,DGL:SA:S5022,Europe/Paris,2,DGL, +DGL:SP:42236,1,"Cuire",45.786027,4.833494,0,0,DGL:SA:S5022,Europe/Paris,2,DGL, +DGL:SP:42277,1,"Chasselay Chalay",45.876661,4.779367,0,0,DGL:SA:S33301,Europe/Paris,0,DGL, +DGL:SP:42278,1,"Chasselay Chalay",45.876698,4.779292,0,0,DGL:SA:S33301,Europe/Paris,0,DGL, +DGL:SP:42279,1,"St Germain Gare",45.88758,4.804111,0,0,DGL:SA:S11313,Europe/Paris,0,DGL, +DGL:SP:42280,1,"Lissieu Le Nelie",45.851001,4.733672,0,0,DGL:SA:S33302,Europe/Paris,0,DGL, +DGL:SP:42281,1,"Lissieu Le Nelie",45.848829,4.73292,0,0,DGL:SA:S33302,Europe/Paris,0,DGL, +DGL:SP:42282,1,"Lissieu La Reserve",45.857715,4.739195,0,0,DGL:SA:S33303,Europe/Paris,0,DGL, +DGL:SP:42283,1,"Lissieu La Reserve",45.858106,4.739393,0,0,DGL:SA:S33303,Europe/Paris,0,DGL, +DGL:SP:42284,1,"Lissieu Centre Mairie",45.865702,4.742405,0,0,DGL:SA:S33304,Europe/Paris,0,DGL, +DGL:SP:42285,1,"Lissieu Centre Mairie",45.864768,4.7423,0,0,DGL:SA:S33304,Europe/Paris,0,DGL, +DGL:SP:42286,1,"Lissieu - Montluzin",45.871231,4.7486,0,0,DGL:SA:S10995,Europe/Paris,0,DGL, +DGL:SP:42288,1,"Chasselay",45.873566,4.77222,0,0,DGL:SA:S10209,Europe/Paris,0,DGL, +DGL:SP:42289,1,"Chasselay",45.873604,4.772131,0,0,DGL:SA:S10209,Europe/Paris,0,DGL, +DGL:SP:42296,1,"Crepet",45.739991,4.832795,0,0,DGL:SA:S33310,Europe/Paris,2,DGL, +DGL:SP:42297,1,"Crepet",45.739689,4.833411,0,0,DGL:SA:S33310,Europe/Paris,2,DGL, +DGL:SP:423,1,"Charly Centre",45.649396,4.793269,0,0,DGL:SA:S10201,Europe/Paris,0,DGL, +DGL:SP:42316,1,"Combattants",45.706529,4.814755,0,0,DGL:SA:S33321,Europe/Paris,0,DGL, +DGL:SP:42317,1,"Combattants",45.706592,4.814784,0,0,DGL:SA:S33321,Europe/Paris,0,DGL, +DGL:SP:42318,1,"Emile Zola",45.705055,4.819147,0,0,DGL:SA:S33322,Europe/Paris,2,DGL, +DGL:SP:42319,1,"Emile Zola",45.705084,4.819071,0,0,DGL:SA:S33322,Europe/Paris,2,DGL, +DGL:SP:42339,1,"Jean Mace",45.746123,4.842444,0,0,DGL:SA:S5160,Europe/Paris,0,DGL, +DGL:SP:42356,1,"Vassieux Centre",45.798033,4.864745,0,0,DGL:SA:S20348,Europe/Paris,0,DGL, +DGL:SP:42360,1,"MJC - Centre Choregraphique",45.813919,4.90157,0,0,DGL:SA:S33340,Europe/Paris,2,DGL, +DGL:SP:42361,1,"MJC - Centre Choregraphique",45.814155,4.901092,0,0,DGL:SA:S33340,Europe/Paris,2,DGL, +DGL:SP:42362,1,"College Paul Emile Victor",45.816812,4.904936,0,0,DGL:SA:S11652,Europe/Paris,2,DGL, +DGL:SP:42363,1,"College Paul Emile Victor",45.81666,4.905302,0,0,DGL:SA:S11652,Europe/Paris,2,DGL, +DGL:SP:42374,1,"La Velette",45.814893,4.905413,0,0,DGL:SA:S10700,Europe/Paris,2,DGL, +DGL:SP:42376,1,"Margnolles - Pasteur",45.7853,4.837835,0,0,DGL:SA:S10915,Europe/Paris,2,DGL, +DGL:SP:42377,1,"Margnolles - Pasteur",45.785447,4.838086,0,0,DGL:SA:S10915,Europe/Paris,2,DGL, +DGL:SP:42378,1,"Jean Monnet",45.789551,4.841348,0,0,DGL:SA:S33350,Europe/Paris,2,DGL, +DGL:SP:42379,1,"Jean Monnet",45.789527,4.841244,0,0,DGL:SA:S33350,Europe/Paris,2,DGL, +DGL:SP:42394,1,"Plasson et Chaize",45.791014,4.818846,0,0,DGL:SA:S33360,Europe/Paris,2,DGL, +DGL:SP:424,1,"Charly Centre",45.649494,4.793299,0,0,DGL:SA:S10201,Europe/Paris,0,DGL, +DGL:SP:42435,1,"Rue de France - IUT",45.768314,4.886298,0,0,DGL:SA:S20163,Europe/Paris,2,DGL, +DGL:SP:42436,1,"Polaris",45.668112,4.895732,0,0,DGL:SA:S20512,Europe/Paris,0,DGL, +DGL:SP:42474,1,"George Sand",45.81581,4.898372,0,0,DGL:SA:S20281,Europe/Paris,2,DGL, +DGL:SP:42475,1,"Companet",45.811528,4.876834,0,0,DGL:SA:S33380,Europe/Paris,2,DGL, +DGL:SP:42476,1,"Companet",45.811621,4.87752,0,0,DGL:SA:S33380,Europe/Paris,2,DGL, +DGL:SP:42477,1,"Caluire Chemin Petit",45.803902,4.861886,0,0,DGL:SA:S10228,Europe/Paris,0,DGL, +DGL:SP:42478,1,"Caluire Chemin Petit",45.80393,4.862506,0,0,DGL:SA:S10228,Europe/Paris,0,DGL, +DGL:SP:42480,1,"Charles De Gaulle",45.816868,4.891833,0,0,DGL:SA:S10198,Europe/Paris,0,DGL, +DGL:SP:42496,1,"Chateau Sans Souci",45.808959,4.778315,0,0,DGL:SA:S33390,Europe/Paris,0,DGL, +DGL:SP:42498,1,"Les Ormeaux",45.808794,4.77101,0,0,DGL:SA:S33392,Europe/Paris,0,DGL, +DGL:SP:42499,1,"La Bruyere",45.806513,4.771145,0,0,DGL:SA:S33393,Europe/Paris,2,DGL, +DGL:SP:425,1,"Charly Eglise",45.643688,4.793297,0,0,DGL:SA:S10202,Europe/Paris,0,DGL, +DGL:SP:42501,1,"Les Joncs",45.809063,4.763956,0,0,DGL:SA:S33395,Europe/Paris,2,DGL, +DGL:SP:42514,1,"Mairie de Sainte Foy",45.734967,4.799056,0,0,DGL:SA:S10892,Europe/Paris,2,DGL, +DGL:SP:42515,1,"Mairie de Sainte Foy",45.735021,4.799071,0,0,DGL:SA:S10892,Europe/Paris,2,DGL, +DGL:SP:42516,1,"La Graviere de Beaunant",45.733916,4.779626,0,0,DGL:SA:S10672,Europe/Paris,2,DGL, +DGL:SP:42517,1,"La Graviere de Beaunant",45.734184,4.779715,0,0,DGL:SA:S10672,Europe/Paris,2,DGL, +DGL:SP:42534,1,"Constant",45.745555,4.888419,0,0,DGL:SA:S20392,Europe/Paris,2,DGL, +DGL:SP:42535,1,"Constant",45.745409,4.888116,0,0,DGL:SA:S20392,Europe/Paris,2,DGL, +DGL:SP:42536,1,"Hop.Desgenettes Vinatier",45.744356,4.895216,0,0,DGL:SA:S30060,Europe/Paris,2,DGL, +DGL:SP:42537,1,"Paviot - Genets",45.75066,4.902182,0,0,DGL:SA:S33400,Europe/Paris,0,DGL, +DGL:SP:42538,1,"Severine",45.754003,4.913847,0,0,DGL:SA:S11273,Europe/Paris,2,DGL, +DGL:SP:42540,1,"Carre de Soie",45.764549,4.918328,0,0,DGL:SA:S32821,Europe/Paris,2,DGL, +DGL:SP:42541,1,"Carre de Soie",45.764425,4.918219,0,0,DGL:SA:S32821,Europe/Paris,0,DGL, +DGL:SP:42545,1,"Monge",45.750886,4.909625,0,0,DGL:SA:S10963,Europe/Paris,2,DGL, +DGL:SP:42546,1,"Grange Blanche - Viala",45.744074,4.88547,0,0,DGL:SA:S10526,Europe/Paris,2,DGL, +DGL:SP:42547,1,"Hop.Desgenettes Vinatier",45.743952,4.894923,0,0,DGL:SA:S30060,Europe/Paris,2,DGL, +DGL:SP:42548,1,"Vaulx Picasso",45.776466,4.915189,0,0,DGL:SA:S11435,Europe/Paris,2,DGL, +DGL:SP:42549,1,"Vaulx Picasso",45.776568,4.915084,0,0,DGL:SA:S11435,Europe/Paris,2,DGL, +DGL:SP:42554,1,"Lycee de l'Automobile",45.751584,4.904694,0,0,DGL:SA:S30407,Europe/Paris,2,DGL, +DGL:SP:42557,1,"Tonkin",45.775486,4.861931,0,0,DGL:SA:S11393,Europe/Paris,2,DGL, +DGL:SP:42558,1,"Tonkin",45.775254,4.861577,0,0,DGL:SA:S11393,Europe/Paris,2,DGL, +DGL:SP:42559,1,"Rossellini",45.7787,4.862451,0,0,DGL:SA:S33411,Europe/Paris,2,DGL, +DGL:SP:42560,1,"Rossellini",45.778536,4.862426,0,0,DGL:SA:S33411,Europe/Paris,2,DGL, +DGL:SP:42561,1,"Parc Tete d'Or - Stalingrad",45.77951,4.860857,0,0,DGL:SA:S33412,Europe/Paris,2,DGL, +DGL:SP:42562,1,"Parc Tete d'Or - Stalingrad",45.779462,4.860211,0,0,DGL:SA:S33412,Europe/Paris,2,DGL, +DGL:SP:42563,1,"Vaulx-en-Velin Resistance",45.785809,4.91975,0,0,DGL:SA:S33413,Europe/Paris,2,DGL, +DGL:SP:42574,1,"Rillieux - Les Alagniers",45.814898,4.89375,0,0,DGL:SA:S33420,Europe/Paris,0,DGL, +DGL:SP:42575,1,"Rillieux - Les Alagniers",45.8146,4.893813,0,0,DGL:SA:S33420,Europe/Paris,0,DGL, +DGL:SP:42594,1,"La Sucriere",45.737945,4.815349,0,0,DGL:SA:S32590,Europe/Paris,2,DGL, +DGL:SP:426,1,"Charly Eglise",45.644218,4.793385,0,0,DGL:SA:S10202,Europe/Paris,0,DGL, +DGL:SP:42614,1,"99 chemin du Charbonnier",45.689229,4.909878,0,0,DGL:SA:S33430,Europe/Paris,0,DGL, +DGL:SP:42615,1,"99 chemin du Charbonnier",45.689263,4.909957,0,0,DGL:SA:S33430,Europe/Paris,0,DGL, +DGL:SP:42616,1,"Montchat Place Ronde",45.753525,4.891013,0,0,DGL:SA:S5760,Europe/Paris,2,DGL, +DGL:SP:42634,1,"Meyzieu Ch.De Gaulle",45.766899,5.003765,0,0,DGL:SA:S30061,Europe/Paris,2,DGL, +DGL:SP:42635,1,"Vacher",45.768895,5.00273,0,0,DGL:SA:S33440,Europe/Paris,2,DGL, +DGL:SP:42655,1,"Brunel",45.758704,4.927788,0,0,DGL:SA:S20455,Europe/Paris,2,DGL, +DGL:SP:42656,1,"Brunel",45.758782,4.927149,0,0,DGL:SA:S20455,Europe/Paris,2,DGL, +DGL:SP:42657,1,"Allee de l'eglise",45.759109,4.921949,0,0,DGL:SA:S33450,Europe/Paris,0,DGL, +DGL:SP:42658,1,"Allee de l'eglise",45.759045,4.922776,0,0,DGL:SA:S33450,Europe/Paris,0,DGL, +DGL:SP:42661,1,"Salengro - Genas",45.746391,4.926964,0,0,DGL:SA:S33451,Europe/Paris,2,DGL, +DGL:SP:42662,1,"Salengro - Genas",45.746417,4.927043,0,0,DGL:SA:S33451,Europe/Paris,2,DGL, +DGL:SP:42663,1,"Salengro - Genas",45.746058,4.926589,0,0,DGL:SA:S33451,Europe/Paris,2,DGL, +DGL:SP:42664,1,"Salengro - Genas",45.746158,4.926542,0,0,DGL:SA:S33451,Europe/Paris,2,DGL, +DGL:SP:42665,1,"Saxe - Gambetta.",45.753285,4.847824,0,0,DGL:SA:S5092,Europe/Paris,2,DGL, +DGL:SP:42675,1,"CNRS",45.780552,4.875737,0,0,DGL:SA:S33461,Europe/Paris,0,DGL, +DGL:SP:42676,1,"CNRS",45.780287,4.875532,0,0,DGL:SA:S33461,Europe/Paris,2,DGL, +DGL:SP:42677,1,"INSA - Einstein",45.782339,4.877917,0,0,DGL:SA:S5505,Europe/Paris,2,DGL, +DGL:SP:42678,1,"INSA - Einstein",45.78222,4.877204,0,0,DGL:SA:S5505,Europe/Paris,2,DGL, +DGL:SP:42679,1,"Antonins",45.778563,4.879312,0,0,DGL:SA:S10034,Europe/Paris,2,DGL, +DGL:SP:42681,1,"Voillot",45.750912,4.912789,0,0,DGL:SA:S33462,Europe/Paris,2,DGL, +DGL:SP:42682,1,"Genas - Lacouture",45.749629,4.911456,0,0,DGL:SA:S33463,Europe/Paris,0,DGL, +DGL:SP:427,1,"Charmet",45.697856,4.815791,0,0,DGL:SA:S10203,Europe/Paris,2,DGL, +DGL:SP:42708,1,"Pasteur - 11 Novembre",45.700983,4.926794,0,0,DGL:SA:S31150,Europe/Paris,0,DGL, +DGL:SP:42709,1,"Arsonval",45.700876,4.930232,0,0,DGL:SA:S33480,Europe/Paris,2,DGL, +DGL:SP:42710,1,"Arsonval",45.70098,4.929247,0,0,DGL:SA:S33480,Europe/Paris,0,DGL, +DGL:SP:42711,1,"Jean Moulin",45.700773,4.933515,0,0,DGL:SA:S33481,Europe/Paris,2,DGL, +DGL:SP:42712,1,"Jean Moulin",45.700866,4.932633,0,0,DGL:SA:S33481,Europe/Paris,2,DGL, +DGL:SP:42713,1,"Grisard",45.697872,4.947599,0,0,DGL:SA:S20370,Europe/Paris,0,DGL, +DGL:SP:42714,1,"Grisard",45.697636,4.947652,0,0,DGL:SA:S20370,Europe/Paris,0,DGL, +DGL:SP:42715,1,"Chemin de Revaison",45.70434,4.916276,0,0,DGL:SA:S11682,Europe/Paris,0,DGL, +DGL:SP:42736,1,"Cusset.",45.765672,4.900276,0,0,DGL:SA:S5023,Europe/Paris,2,DGL, +DGL:SP:42737,1,"Flachet.",45.767553,4.890051,0,0,DGL:SA:S5024,Europe/Paris,2,DGL, +DGL:SP:42738,1,"Gratte-Ciel.",45.76899,4.882202,0,0,DGL:SA:S5042,Europe/Paris,2,DGL, +DGL:SP:42739,1,"Republique Villeurbanne.",45.770565,4.87367,0,0,DGL:SA:S5183,Europe/Paris,2,DGL, +DGL:SP:42740,1,"Charpennes Charles Hernu.",45.770549,4.864295,0,0,DGL:SA:S5102,Europe/Paris,2,DGL, +DGL:SP:42741,1,"Massena.",45.769544,4.853426,0,0,DGL:SA:S5081,Europe/Paris,2,DGL, +DGL:SP:42742,1,"Foch.",45.768709,4.8445,0,0,DGL:SA:S5182,Europe/Paris,2,DGL, +DGL:SP:42743,1,"Hotel de Ville - L. Pradel.",45.767317,4.836091,0,0,DGL:SA:S5046,Europe/Paris,2,DGL, +DGL:SP:42744,1,"Cordeliers.",45.76347,4.835891,0,0,DGL:SA:S5021,Europe/Paris,2,DGL, +DGL:SP:42745,1,"Ampere - Victor Hugo.",45.753106,4.829254,0,0,DGL:SA:S5000,Europe/Paris,0,DGL, +DGL:SP:42751,1,"Piscine Loup Pendu",45.815459,4.887457,0,0,DGL:SA:S33501,Europe/Paris,2,DGL, +DGL:SP:42752,1,"Piscine Loup Pendu",45.815552,4.887455,0,0,DGL:SA:S33501,Europe/Paris,2,DGL, +DGL:SP:42774,1,"Chambaud de la Bruyere",45.726203,4.836795,0,0,DGL:SA:S33510,Europe/Paris,0,DGL, +DGL:SP:42775,1,"Chambaud de la Bruyere",45.72633,4.836749,0,0,DGL:SA:S33510,Europe/Paris,0,DGL, +DGL:SP:42794,1,"Mediatheque",45.694363,4.936656,0,0,DGL:SA:S33520,Europe/Paris,2,DGL, +DGL:SP:428,1,"Charmet",45.697752,4.816441,0,0,DGL:SA:S10203,Europe/Paris,2,DGL, +DGL:SP:42896,1,"Duchere Av.de Champagne",45.790673,4.797112,0,0,DGL:SA:S11884,Europe/Paris,2,DGL, +DGL:SP:42914,1,"Mediatheque",45.694337,4.936256,0,0,DGL:SA:S33520,Europe/Paris,2,DGL, +DGL:SP:42954,1,"Hopital Croix-Rousse",45.782845,4.834083,0,0,DGL:SA:S10563,Europe/Paris,0,DGL, +DGL:SP:42955,1,"Mairie du 6eme",45.768337,4.850543,0,0,DGL:SA:S33550,Europe/Paris,2,DGL, +DGL:SP:42956,1,"Caluire - Place de la bascule",45.80243,4.850738,0,0,DGL:SA:S33190,Europe/Paris,2,DGL, +DGL:SP:42958,1,"Sathonay Mairie",45.82363,4.874325,0,0,DGL:SA:S11259,Europe/Paris,0,DGL, +DGL:SP:42959,1,"Sathonay Mairie",45.823631,4.87384,0,0,DGL:SA:S11259,Europe/Paris,2,DGL, +DGL:SP:42964,1,"Sathonay Gare",45.820416,4.875108,0,0,DGL:SA:S11258,Europe/Paris,2,DGL, +DGL:SP:42974,1,"College Plan du Loup.",45.734969,4.788709,0,0,DGL:SA:S5881,Europe/Paris,0,DGL, +DGL:SP:42994,1,"Lorette",45.707566,4.798331,0,0,DGL:SA:S10866,Europe/Paris,2,DGL, +DGL:SP:43014,1,"Berliet Porte C",45.707525,4.898643,0,0,DGL:SA:S20501,Europe/Paris,2,DGL, +DGL:SP:43015,1,"Berliet Porte C",45.706726,4.897771,0,0,DGL:SA:S20501,Europe/Paris,2,DGL, +DGL:SP:43018,1,"Mendes France - Alsace",45.718421,4.910241,0,0,DGL:SA:S33570,Europe/Paris,2,DGL, +DGL:SP:43019,1,"Mendes France - Alsace",45.718566,4.910234,0,0,DGL:SA:S33570,Europe/Paris,0,DGL, +DGL:SP:43021,1,"Porte des Alpes",45.720222,4.923548,0,0,DGL:SA:S5260,Europe/Paris,2,DGL, +DGL:SP:43022,1,"Porte des Alpes",45.720235,4.923754,0,0,DGL:SA:S5260,Europe/Paris,2,DGL, +DGL:SP:43023,1,"Andre Boulloche",45.718302,4.929896,0,0,DGL:SA:S10030,Europe/Paris,2,DGL, +DGL:SP:43024,1,"Andre Boulloche",45.719071,4.930523,0,0,DGL:SA:S10030,Europe/Paris,2,DGL, +DGL:SP:43025,1,"3eme Millenaire",45.716538,4.928322,0,0,DGL:SA:S33571,Europe/Paris,2,DGL, +DGL:SP:43026,1,"3eme Millenaire",45.71673,4.928576,0,0,DGL:SA:S33571,Europe/Paris,2,DGL, +DGL:SP:43027,1,"Jacques Monod",45.713988,4.931556,0,0,DGL:SA:S33572,Europe/Paris,2,DGL, +DGL:SP:43028,1,"Jacques Monod",45.71486,4.931995,0,0,DGL:SA:S33572,Europe/Paris,2,DGL, +DGL:SP:43029,1,"Parc Technologique",45.711813,4.934884,0,0,DGL:SA:S33573,Europe/Paris,2,DGL, +DGL:SP:43030,1,"Parc Technologique",45.712391,4.935593,0,0,DGL:SA:S33573,Europe/Paris,2,DGL, +DGL:SP:43031,1,"Campus Lyon Ouest",45.782482,4.766381,0,0,DGL:SA:S33574,Europe/Paris,2,DGL, +DGL:SP:43033,1,"Pavillon Medical",45.701656,4.810027,0,0,DGL:SA:S33575,Europe/Paris,2,DGL, +DGL:SP:43034,1,"Chemin de Montluzin",45.868948,4.750136,0,0,DGL:SA:S33580,Europe/Paris,2,DGL, +DGL:SP:43035,1,"Chemin de Montluzin",45.869104,4.749988,0,0,DGL:SA:S33580,Europe/Paris,2,DGL, +DGL:SP:43054,1,"Parc Tete d'Or - Verguin",45.772565,4.855881,0,0,DGL:SA:S33590,Europe/Paris,2,DGL, +DGL:SP:43055,1,"Parc Tete d'Or - Verguin",45.772623,4.855704,0,0,DGL:SA:S33590,Europe/Paris,2,DGL, +DGL:SP:43056,1,"Clinique du Parc",45.771833,4.858832,0,0,DGL:SA:S33591,Europe/Paris,2,DGL, +DGL:SP:43057,1,"Clinique du Parc",45.772876,4.860076,0,0,DGL:SA:S33591,Europe/Paris,2,DGL, +DGL:SP:43058,1,"Charpennes Charles Hernu",45.769913,4.862937,0,0,DGL:SA:S5102,Europe/Paris,2,DGL, +DGL:SP:43059,1,"College Bellecombe",45.764611,4.863722,0,0,DGL:SA:S5301,Europe/Paris,2,DGL, +DGL:SP:43061,1,"Leo Lagrange",45.764527,4.878612,0,0,DGL:SA:S33592,Europe/Paris,2,DGL, +DGL:SP:43062,1,"Villeurbanne Centre",45.767826,4.877645,0,0,DGL:SA:S33593,Europe/Paris,2,DGL, +DGL:SP:43114,1,"Place Croix-Luizet",45.780867,4.882519,0,0,DGL:SA:S11118,Europe/Paris,2,DGL, +DGL:SP:43115,1,"La Perraliere",45.763835,4.889306,0,0,DGL:SA:S33620,Europe/Paris,2,DGL, +DGL:SP:43116,1,"La Perraliere",45.763832,4.889421,0,0,DGL:SA:S33620,Europe/Paris,2,DGL, +DGL:SP:43117,1,"Rue de France - 4 aout",45.764681,4.88694,0,0,DGL:SA:S33621,Europe/Paris,2,DGL, +DGL:SP:43118,1,"Rue de France - 4 aout",45.764724,4.886993,0,0,DGL:SA:S33621,Europe/Paris,2,DGL, +DGL:SP:43119,1,"Place Ronde",45.752883,4.891562,0,0,DGL:SA:S5760,Europe/Paris,2,DGL, +DGL:SP:43120,1,"Place Ronde",45.753273,4.891799,0,0,DGL:SA:S5760,Europe/Paris,2,DGL, +DGL:SP:43121,1,"Verlaine - 4 aout",45.764777,4.881517,0,0,DGL:SA:S31390,Europe/Paris,2,DGL, +DGL:SP:43122,1,"Blanqui-Ctre Memoires et Ste",45.76068,4.884735,0,0,DGL:SA:S31922,Europe/Paris,0,DGL, +DGL:SP:43174,1,"Cite Tase",45.758198,4.928665,0,0,DGL:SA:S10253,Europe/Paris,2,DGL, +DGL:SP:43195,1,"La Tour de Salvagny Chambettes",45.817065,4.704876,0,0,DGL:SA:S33631,Europe/Paris,2,DGL, +DGL:SP:43215,1,"Parilly Universite Hippodrome",45.722251,4.914365,0,0,DGL:SA:S33640,Europe/Paris,0,DGL, +DGL:SP:43217,1,"Vaulx-en-Velin Marcel Cachin",45.784341,4.932882,0,0,DGL:SA:S33642,Europe/Paris,0,DGL, +DGL:SP:43220,1,"Vaulx-en-Velin Le Bourg",45.787189,4.925683,0,0,DGL:SA:S33643,Europe/Paris,2,DGL, +DGL:SP:43221,1,"Z.I. Vaulx-en-Velin Est",45.777283,4.934041,0,0,DGL:SA:S33644,Europe/Paris,0,DGL, +DGL:SP:43222,1,"Cordeliers",45.763933,4.835844,0,0,DGL:SA:S5021,Europe/Paris,0,DGL, +DGL:SP:43223,1,"Cordeliers",45.763948,4.835861,0,0,DGL:SA:S5021,Europe/Paris,0,DGL, +DGL:SP:43224,1,"Cordeliers",45.763064,4.836647,0,0,DGL:SA:S5021,Europe/Paris,2,DGL, +DGL:SP:43225,1,"Cordeliers",45.762836,4.836746,0,0,DGL:SA:S5021,Europe/Paris,2,DGL, +DGL:SP:43226,1,"Cordeliers",45.762881,4.838102,0,0,DGL:SA:S5021,Europe/Paris,2,DGL, +DGL:SP:43274,1,"Carrefour Liberation",45.758491,4.774943,0,0,DGL:SA:S10164,Europe/Paris,2,DGL, +DGL:SP:43294,1,"Bergeron",45.745852,4.721828,0,0,DGL:SA:S33660,Europe/Paris,2,DGL, +DGL:SP:43295,1,"Bergeron",45.745804,4.721954,0,0,DGL:SA:S33660,Europe/Paris,2,DGL, +DGL:SP:43298,1,"Nelli",45.760405,4.928975,0,0,DGL:SA:S33662,Europe/Paris,2,DGL, +DGL:SP:43299,1,"Nelli",45.76123,4.929116,0,0,DGL:SA:S33662,Europe/Paris,2,DGL, +DGL:SP:43300,1,"Centre commercial Sept Chemins",45.746736,4.931146,0,0,DGL:SA:S33663,Europe/Paris,2,DGL, +DGL:SP:43301,1,"Centre commercial Sept Chemins",45.746892,4.931424,0,0,DGL:SA:S33663,Europe/Paris,2,DGL, +DGL:SP:43302,1,"Parilly Universite Hippodrome",45.722104,4.914911,0,0,DGL:SA:S33640,Europe/Paris,0,DGL, +DGL:SP:43303,1,"Bron Droits de l'Homme",45.734059,4.931256,0,0,DGL:SA:S11674,Europe/Paris,0,DGL, +DGL:SP:43304,1,"Bron Droits de l'Homme",45.734164,4.931389,0,0,DGL:SA:S11674,Europe/Paris,2,DGL, +DGL:SP:43305,1,"Triangle de Bron",45.726876,4.926984,0,0,DGL:SA:S11398,Europe/Paris,2,DGL, +DGL:SP:43306,1,"Triangle de Bron",45.727673,4.92832,0,0,DGL:SA:S11398,Europe/Paris,2,DGL, +DGL:SP:43307,1,"La Borelle",45.712054,4.880403,0,0,DGL:SA:S5705,Europe/Paris,0,DGL, +DGL:SP:43308,1,"Paul Eluard",45.776371,4.922498,0,0,DGL:SA:S33664,Europe/Paris,2,DGL, +DGL:SP:43309,1,"ENTPE - Ecole d'Architecture",45.779476,4.922489,0,0,DGL:SA:S33665,Europe/Paris,2,DGL, +DGL:SP:43310,1,"ENTPE - Ecole d'Architecture",45.779487,4.922425,0,0,DGL:SA:S33665,Europe/Paris,2,DGL, +DGL:SP:43311,1,"Salvador Allende",45.780975,4.92036,0,0,DGL:SA:S33666,Europe/Paris,2,DGL, +DGL:SP:43312,1,"Salvador Allende",45.780741,4.921532,0,0,DGL:SA:S33666,Europe/Paris,0,DGL, +DGL:SP:43313,1,"Verdun - Paul Cezanne",45.764644,4.967733,0,0,DGL:SA:S33667,Europe/Paris,0,DGL, +DGL:SP:43314,1,"Verdun - Paul Cezanne",45.764783,4.967933,0,0,DGL:SA:S33667,Europe/Paris,0,DGL, +DGL:SP:43315,1,"Vaulx HDV Campus",45.777593,4.919854,0,0,DGL:SA:S11424,Europe/Paris,2,DGL, +DGL:SP:43354,1,"College Christiane Bernardin",45.740969,4.775301,0,0,DGL:SA:S33680,Europe/Paris,2,DGL, +DGL:SP:43355,1,"College Christiane Bernardin",45.741067,4.775761,0,0,DGL:SA:S33680,Europe/Paris,2,DGL, +DGL:SP:43356,1,"Genovefains",45.753592,4.816155,0,0,DGL:SA:S10504,Europe/Paris,2,DGL, +DGL:SP:43375,1,"Legay",45.754605,4.917424,0,0,DGL:SA:S20087,Europe/Paris,2,DGL, +DGL:SP:43394,1,"Centre Commercial Genay",45.892165,4.822339,0,0,DGL:SA:S33690,Europe/Paris,0,DGL, +DGL:SP:43395,1,"Centre Commercial Genay",45.892476,4.822108,0,0,DGL:SA:S33690,Europe/Paris,0,DGL, +DGL:SP:434,1,"Charpennes Charles Hernu",45.770866,4.861797,0,0,DGL:SA:S5102,Europe/Paris,2,DGL, +DGL:SP:43417,1,"Quai Aulagne",45.70368,4.845369,0,0,DGL:SA:S11781,Europe/Paris,0,DGL, +DGL:SP:43420,1,"Bellecombe",45.648741,4.845165,0,0,DGL:SA:S10071,Europe/Paris,0,DGL, +DGL:SP:43421,1,"Bellecombe",45.64806,4.845006,0,0,DGL:SA:S10071,Europe/Paris,0,DGL, +DGL:SP:43422,1,"Yves Chauvin",45.64826,4.829602,0,0,DGL:SA:S33703,Europe/Paris,0,DGL, +DGL:SP:43423,1,"Solaize CRES",45.650286,4.831195,0,0,DGL:SA:S33704,Europe/Paris,0,DGL, +DGL:SP:43434,1,"Techlid Le Paisy",45.80469,4.765165,0,0,DGL:SA:S33710,Europe/Paris,0,DGL, +DGL:SP:43435,1,"Techlid Le Paisy",45.804316,4.764557,0,0,DGL:SA:S33710,Europe/Paris,2,DGL, +DGL:SP:43454,1,"Henon",45.77953,4.826908,0,0,DGL:SA:S5045,Europe/Paris,0,DGL, +DGL:SP:43474,1,"Techlid Le Paisy",45.805157,4.764761,0,0,DGL:SA:S33710,Europe/Paris,0,DGL, +DGL:SP:43475,1,"Ecully Le Perollier",45.790284,4.776984,0,0,DGL:SA:S33720,Europe/Paris,2,DGL, +DGL:SP:43476,1,"Ecully Le Perollier",45.79026,4.776854,0,0,DGL:SA:S33720,Europe/Paris,2,DGL, +DGL:SP:43477,1,"Ecully Le Perollier",45.790408,4.777054,0,0,DGL:SA:S33720,Europe/Paris,2,DGL, +DGL:SP:43478,1,"Champagne Lanessan",45.792198,4.7957,0,0,DGL:SA:S31950,Europe/Paris,2,DGL, +DGL:SP:43494,1,"Maison d'Arret",45.677482,4.932918,0,0,DGL:SA:S32891,Europe/Paris,2,DGL, +DGL:SP:43495,1,"Maison d'Arret",45.677597,4.933001,0,0,DGL:SA:S32891,Europe/Paris,2,DGL, +DGL:SP:43496,1,"Cordeliers",45.763465,4.836135,0,0,DGL:SA:S5021,Europe/Paris,0,DGL, +DGL:SP:435,1,"Charpennes Charles Hernu",45.770716,4.861662,0,0,DGL:SA:S5102,Europe/Paris,2,DGL, +DGL:SP:43514,1,"Vaulx Lakanal",45.786757,4.920593,0,0,DGL:SA:S11426,Europe/Paris,0,DGL, +DGL:SP:43534,1,"Pole Logistique",45.669799,4.929642,0,0,DGL:SA:S33730,Europe/Paris,2,DGL, +DGL:SP:43535,1,"Pole Logistique",45.669884,4.929453,0,0,DGL:SA:S33730,Europe/Paris,2,DGL, +DGL:SP:43536,1,"Aristide Briand",45.69205,4.933541,0,0,DGL:SA:S33731,Europe/Paris,0,DGL, +DGL:SP:43537,1,"Aristide Briand",45.691591,4.934328,0,0,DGL:SA:S33731,Europe/Paris,0,DGL, +DGL:SP:43554,1,"Christophe Colomb",45.681648,4.944262,0,0,DGL:SA:S33740,Europe/Paris,2,DGL, +DGL:SP:43555,1,"Christophe Colomb",45.682536,4.944381,0,0,DGL:SA:S33740,Europe/Paris,2,DGL, +DGL:SP:43557,1,"Les Meurieres",45.680815,4.949102,0,0,DGL:SA:S10819,Europe/Paris,2,DGL, +DGL:SP:43574,1,"Mermoz",45.741938,5.022225,0,0,DGL:SA:S10051,Europe/Paris,0,DGL, +DGL:SP:43614,1,"Bois Dieu",45.84079,4.736872,0,0,DGL:SA:S33760,Europe/Paris,0,DGL, +DGL:SP:43615,1,"Bois Dieu",45.840372,4.736956,0,0,DGL:SA:S33760,Europe/Paris,0,DGL, +DGL:SP:43634,1,"St Genis Centre",45.69556,4.792105,0,0,DGL:SA:S11305,Europe/Paris,0,DGL, +DGL:SP:43635,1,"St Genis Centre",45.695514,4.792154,0,0,DGL:SA:S11305,Europe/Paris,0,DGL, +DGL:SP:43636,1,"Beauregard",45.696308,4.788786,0,0,DGL:SA:S33770,Europe/Paris,0,DGL, +DGL:SP:43637,1,"Beauregard",45.696265,4.789092,0,0,DGL:SA:S33770,Europe/Paris,0,DGL, +DGL:SP:43638,1,"Croix Rouge",45.7017,4.786289,0,0,DGL:SA:S33771,Europe/Paris,0,DGL, +DGL:SP:43639,1,"Croix Rouge",45.701564,4.786322,0,0,DGL:SA:S33771,Europe/Paris,0,DGL, +DGL:SP:43640,1,"Desbois - Pommier",45.777233,5.006054,0,0,DGL:SA:S33063,Europe/Paris,0,DGL, +DGL:SP:43641,1,"Desbois - Pommier",45.77759,5.005428,0,0,DGL:SA:S33063,Europe/Paris,2,DGL, +DGL:SP:43642,1,"Meyzieu - Parc du Grand Large",45.788958,4.992984,0,0,DGL:SA:S33772,Europe/Paris,0,DGL, +DGL:SP:43644,1,"Mont Joyeux",45.787801,4.993173,0,0,DGL:SA:S32019,Europe/Paris,2,DGL, +DGL:SP:43645,1,"Charcot",45.786145,4.993517,0,0,DGL:SA:S32018,Europe/Paris,2,DGL, +DGL:SP:43646,1,"Frederic Mistral",45.782364,4.995072,0,0,DGL:SA:S33773,Europe/Paris,2,DGL, +DGL:SP:43647,1,"Frederic Mistral",45.782196,4.995295,0,0,DGL:SA:S33773,Europe/Paris,2,DGL, +DGL:SP:43648,1,"Verdun - Victor Hugo",45.779784,4.996812,0,0,DGL:SA:S11449,Europe/Paris,0,DGL, +DGL:SP:43649,1,"Meyzieu Le Carreau",45.774851,4.989588,0,0,DGL:SA:S10943,Europe/Paris,0,DGL, +DGL:SP:43650,1,"Rousseau",45.772213,4.99076,0,0,DGL:SA:S33774,Europe/Paris,2,DGL, +DGL:SP:43651,1,"Rousseau",45.771832,4.991257,0,0,DGL:SA:S33774,Europe/Paris,2,DGL, +DGL:SP:43657,1,"Bellecombe - Gaite",45.767575,4.863215,0,0,DGL:SA:S33780,Europe/Paris,2,DGL, +DGL:SP:43658,1,"Ecole Nationale de Musique",45.767383,4.874139,0,0,DGL:SA:S33781,Europe/Paris,2,DGL, +DGL:SP:43659,1,"Parc de Lacroix-Laval",45.784519,4.718025,0,0,DGL:SA:S11043,Europe/Paris,2,DGL, +DGL:SP:43660,1,"Salle Omnisports",45.782656,4.710367,0,0,DGL:SA:S33782,Europe/Paris,0,DGL, +DGL:SP:43661,1,"Parc de Lacroix-Laval",45.784485,4.718383,0,0,DGL:SA:S11043,Europe/Paris,0,DGL, +DGL:SP:43674,1,"Les Joncs",45.808639,4.764426,0,0,DGL:SA:S33395,Europe/Paris,0,DGL, +DGL:SP:43675,1,"Techlid Le Tronchon",45.805423,4.77162,0,0,DGL:SA:S33790,Europe/Paris,0,DGL, +DGL:SP:43676,1,"Parc d'Activites de la Tour",45.817672,4.722988,0,0,DGL:SA:S33791,Europe/Paris,0,DGL, +DGL:SP:43677,1,"Parc d'Activites de la Tour",45.81773,4.722824,0,0,DGL:SA:S33791,Europe/Paris,0,DGL, +DGL:SP:43696,1,"Albigny Centre Hospitalier",45.863587,4.833671,0,0,DGL:SA:S33800,Europe/Paris,0,DGL, +DGL:SP:43697,1,"Albigny Centre Hospitalier",45.863634,4.833995,0,0,DGL:SA:S33800,Europe/Paris,0,DGL, +DGL:SP:43715,1,"Parilly Jean Zay",45.712291,4.90317,0,0,DGL:SA:S33810,Europe/Paris,2,DGL, +DGL:SP:43716,1,"Parilly Jean Zay",45.711988,4.902642,0,0,DGL:SA:S33810,Europe/Paris,0,DGL, +DGL:SP:43736,1,"Rillieux - Les Alagniers",45.814126,4.894295,0,0,DGL:SA:S33420,Europe/Paris,2,DGL, +DGL:SP:43737,1,"Rillieux - Les Alagniers",45.81406,4.894187,0,0,DGL:SA:S33420,Europe/Paris,2,DGL, +DGL:SP:43754,1,"Bd de Parilly",45.715134,4.906386,0,0,DGL:SA:S33820,Europe/Paris,0,DGL, +DGL:SP:43755,1,"Bd de Parilly",45.715383,4.906526,0,0,DGL:SA:S33820,Europe/Paris,0,DGL, +DGL:SP:43774,1,"Parc de la Mairie",45.756716,4.800196,0,0,DGL:SA:S33830,Europe/Paris,2,DGL, +DGL:SP:43815,1,"Robert Reynier",45.708019,4.861395,0,0,DGL:SA:S30797,Europe/Paris,2,DGL, +DGL:SP:43816,1,"St Fons 4 Chemins",45.708255,4.856087,0,0,DGL:SA:S11298,Europe/Paris,2,DGL, +DGL:SP:43831,1,"Lycee Agroalimentaire",45.666489,4.791618,0,0,DGL:SA:S33853,Europe/Paris,0,DGL, +DGL:SP:43832,1,"Lycee Agroalimentaire",45.666494,4.791785,0,0,DGL:SA:S33853,Europe/Paris,2,DGL, +DGL:SP:43834,1,"Lycee Rosa Parks",45.8769,4.847035,0,0,DGL:SA:S33860,Europe/Paris,0,DGL, +DGL:SP:43837,1,"Hotel de Region Montrochet",45.738112,4.821358,0,0,DGL:SA:S5519,Europe/Paris,0,DGL, +DGL:SP:43838,1,"Hotel de Region Montrochet",45.738631,4.821921,0,0,DGL:SA:S5519,Europe/Paris,0,DGL, +DGL:SP:43839,1,"Hotel de Region Montrochet",45.741042,4.819523,0,0,DGL:SA:S5519,Europe/Paris,0,DGL, +DGL:SP:43841,1,"Champagne De Gaulle",45.802101,4.784908,0,0,DGL:SA:S33862,Europe/Paris,2,DGL, +DGL:SP:43842,1,"Champagne De Gaulle",45.801903,4.784912,0,0,DGL:SA:S33862,Europe/Paris,2,DGL, +DGL:SP:43847,1,"Chemin de Crecy",45.800979,4.804098,0,0,DGL:SA:S33864,Europe/Paris,0,DGL, +DGL:SP:43848,1,"Chemin de Crecy",45.801132,4.803705,0,0,DGL:SA:S33864,Europe/Paris,0,DGL, +DGL:SP:43854,1,"Bois de l'Etoile Liberte",45.784818,4.723055,0,0,DGL:SA:S33870,Europe/Paris,0,DGL, +DGL:SP:43855,1,"Bois de l'Etoile Liberte",45.784423,4.723835,0,0,DGL:SA:S33870,Europe/Paris,0,DGL, +DGL:SP:43856,1,"L'Etang",45.807469,4.778957,0,0,DGL:SA:S33871,Europe/Paris,0,DGL, +DGL:SP:43874,1,"Neuville Cinema",45.874067,4.84206,0,0,DGL:SA:S33880,Europe/Paris,0,DGL, +DGL:SP:43875,1,"College Jean Renoir",45.869671,4.845029,0,0,DGL:SA:S10597,Europe/Paris,0,DGL, +DGL:SP:43876,1,"Neuville Combattants",45.870532,4.847182,0,0,DGL:SA:S33881,Europe/Paris,0,DGL, +DGL:SP:43878,1,"Tatiere",45.873576,4.842308,0,0,DGL:SA:S33883,Europe/Paris,0,DGL, +DGL:SP:43879,1,"Neuville Mairie",45.87711,4.840446,0,0,DGL:SA:S33884,Europe/Paris,0,DGL, +DGL:SP:43880,1,"La Vosne",45.878344,4.848879,0,0,DGL:SA:S10704,Europe/Paris,0,DGL, +DGL:SP:43881,1,"Torrieres",45.880522,4.848902,0,0,DGL:SA:S33885,Europe/Paris,0,DGL, +DGL:SP:43882,1,"Le Sablon",45.880226,4.846414,0,0,DGL:SA:S33886,Europe/Paris,0,DGL, +DGL:SP:43883,1,"Wissel",45.876933,4.843531,0,0,DGL:SA:S33887,Europe/Paris,0,DGL, +DGL:SP:43884,1,"Neuville Ancienne Gare",45.878239,4.841464,0,0,DGL:SA:S33888,Europe/Paris,0,DGL, +DGL:SP:43885,1,"Neuville Racine",45.871427,4.842584,0,0,DGL:SA:S33889,Europe/Paris,0,DGL, +DGL:SP:43886,1,"Neuville Hopital",45.868038,4.847248,0,0,DGL:SA:S33890,Europe/Paris,0,DGL, +DGL:SP:43889,1,"Rue J.Moulin",45.881849,4.840211,0,0,DGL:SA:S33891,Europe/Paris,0,DGL, +DGL:SP:43890,1,"Rue Jacques",45.879573,4.838149,0,0,DGL:SA:S33892,Europe/Paris,0,DGL, +DGL:SP:43891,1,"Avoraux",45.868162,4.827076,0,0,DGL:SA:S33893,Europe/Paris,0,DGL, +DGL:SP:43892,1,"Avoraux",45.868171,4.827089,0,0,DGL:SA:S33893,Europe/Paris,0,DGL, +DGL:SP:43914,1,"Sogaris - Promotrans",45.676021,4.934596,0,0,DGL:SA:S30987,Europe/Paris,2,DGL, +DGL:SP:43915,1,"St Fons Mairie",45.70813,4.855233,0,0,DGL:SA:S11779,Europe/Paris,2,DGL, +DGL:SP:43917,1,"Hopital Feyzin Venissieux",45.689513,4.864939,0,0,DGL:SA:S5715,Europe/Paris,0,DGL, +DGL:SP:43920,1,"Saint Denis",45.779517,4.83033,0,0,DGL:SA:S33902,Europe/Paris,2,DGL, +DGL:SP:43934,1,"Hopital Croix-Rousse",45.779793,4.829236,0,0,DGL:SA:S10563,Europe/Paris,2,DGL, +DGL:SP:43935,1,"Hopital Croix-Rousse",45.779688,4.829128,0,0,DGL:SA:S10563,Europe/Paris,2,DGL, +DGL:SP:43936,1,"Vaulx-en-Velin Marcel Cachin",45.784381,4.933064,0,0,DGL:SA:S33642,Europe/Paris,0,DGL, +DGL:SP:43937,1,"Vaulx-en-Velin Marcel Cachin",45.784332,4.933255,0,0,DGL:SA:S33642,Europe/Paris,0,DGL, +DGL:SP:43944,1,"Cimetiere de St Priest",45.692669,4.946415,0,0,DGL:SA:S11721,Europe/Paris,0,DGL, +DGL:SP:43945,1,"Cimetiere de St Priest",45.69204,4.946372,0,0,DGL:SA:S11721,Europe/Paris,0,DGL, +DGL:SP:43999,1,"Mions Centre",45.66409,4.956436,0,0,DGL:SA:S33000,Europe/Paris,2,DGL, +DGL:SP:440,1,"Charriere Blanche",45.780726,4.767786,0,0,DGL:SA:S10206,Europe/Paris,0,DGL, +DGL:SP:44018,1,"Tonkin",45.779099,4.864748,0,0,DGL:SA:S11393,Europe/Paris,2,DGL, +DGL:SP:44058,1,"Mions Mairie",45.663655,4.957686,0,0,DGL:SA:S10959,Europe/Paris,0,DGL, +DGL:SP:441,1,"Charriere Blanche",45.780952,4.767333,0,0,DGL:SA:S10206,Europe/Paris,0,DGL, +DGL:SP:44178,1,"College Paul Vallon",45.568686,4.795688,0,0,DGL:SA:S31730,Europe/Paris,0,DGL, +DGL:SP:44278,1,"Charbonnieres Les Verrieres",45.788973,4.74512,0,0,DGL:SA:S33630,Europe/Paris,2,DGL, +DGL:SP:44279,1,"Charbonnieres Les Verrieres",45.7892,4.744629,0,0,DGL:SA:S33630,Europe/Paris,2,DGL, +DGL:SP:443,1,"Gare de Villeurbanne",45.756231,4.891165,0,0,DGL:SA:S5562,Europe/Paris,2,DGL, +DGL:SP:44320,1,"Marcy l'Orme",45.779435,4.706497,0,0,DGL:SA:S10912,Europe/Paris,0,DGL, +DGL:SP:44321,1,"Grand Champ",45.799332,4.819621,0,0,DGL:SA:S33940,Europe/Paris,2,DGL, +DGL:SP:44322,1,"Grand Champ",45.79997,4.819688,0,0,DGL:SA:S33940,Europe/Paris,0,DGL, +DGL:SP:44358,1,"Manissieux Place Balzac",45.706005,4.978151,0,0,DGL:SA:S10904,Europe/Paris,0,DGL, +DGL:SP:44381,1,"Meyzieu Jacques Prevert",45.760552,4.994326,0,0,DGL:SA:S33950,Europe/Paris,0,DGL, +DGL:SP:44382,1,"Segliere - Jaures",45.746866,5.019111,0,0,DGL:SA:S33951,Europe/Paris,0,DGL, +DGL:SP:444,1,"Charton",45.711824,4.810586,0,0,DGL:SA:S10208,Europe/Paris,2,DGL, +DGL:SP:445,1,"Charton",45.711708,4.811352,0,0,DGL:SA:S10208,Europe/Paris,2,DGL, +DGL:SP:44538,1,"Le Monteiller",45.879722,4.841171,0,0,DGL:SA:S33970,Europe/Paris,0,DGL, +DGL:SP:44558,1,"Le Monteiller",45.879839,4.841151,0,0,DGL:SA:S33970,Europe/Paris,0,DGL, +DGL:SP:446,1,"Chasselay",45.873962,4.771387,0,0,DGL:SA:S10209,Europe/Paris,0,DGL, +DGL:SP:44618,1,"Charbonnieres Les Verrieres",45.789343,4.744249,0,0,DGL:SA:S33630,Europe/Paris,2,DGL, +DGL:SP:44678,1,"Genas - Lacouture",45.749958,4.911999,0,0,DGL:SA:S33463,Europe/Paris,2,DGL, +DGL:SP:44718,1,"Montessuy Hauts St Clair",45.79431,4.848898,0,0,DGL:SA:S10988,Europe/Paris,2,DGL, +DGL:SP:44758,1,"Leclerc",45.813255,4.895952,0,0,DGL:SA:S32011,Europe/Paris,2,DGL, +DGL:SP:44759,1,"Leclerc",45.813047,4.895183,0,0,DGL:SA:S32011,Europe/Paris,2,DGL, +DGL:SP:44798,1,"Porcher",45.802653,4.837904,0,0,DGL:SA:S33990,Europe/Paris,0,DGL, +DGL:SP:44799,1,"Porcher",45.802308,4.837245,0,0,DGL:SA:S33990,Europe/Paris,0,DGL, +DGL:SP:44818,1,"Homme de la Roche RG",45.76785,4.820643,0,0,DGL:SA:S34000,Europe/Paris,0,DGL, +DGL:SP:44819,1,"Homme de la Roche RD",45.766691,4.820128,0,0,DGL:SA:S34001,Europe/Paris,2,DGL, +DGL:SP:44838,1,"Marengo",45.759241,4.876014,0,0,DGL:SA:S20144,Europe/Paris,2,DGL, +DGL:SP:449,1,"Chassieu Lavoisier",45.732937,4.96632,0,0,DGL:SA:S10211,Europe/Paris,0,DGL, +DGL:SP:44978,1,"Parilly Universite Hippodrome",45.722731,4.91503,0,0,DGL:SA:S33640,Europe/Paris,0,DGL, +DGL:SP:450,1,"Chassieu Lavoisier",45.733219,4.965794,0,0,DGL:SA:S10211,Europe/Paris,0,DGL, +DGL:SP:45000,1,"Petite Guille",45.730895,4.858524,0,0,DGL:SA:S11095,Europe/Paris,2,DGL, +DGL:SP:45001,1,"Petite Guille",45.730903,4.858694,0,0,DGL:SA:S11095,Europe/Paris,2,DGL, +DGL:SP:45018,1,"La Chicotiere",45.845402,4.733659,0,0,DGL:SA:S34020,Europe/Paris,0,DGL, +DGL:SP:45038,1,"Caluire - Bords de Saone",45.791179,4.823589,0,0,DGL:SA:S34030,Europe/Paris,0,DGL, +DGL:SP:45039,1,"Capitaine Ferber",45.790176,4.826992,0,0,DGL:SA:S34031,Europe/Paris,0,DGL, +DGL:SP:45040,1,"Maison des Associations",45.792464,4.828549,0,0,DGL:SA:S34032,Europe/Paris,0,DGL, +DGL:SP:45041,1,"Cuire Le Bas",45.793853,4.828419,0,0,DGL:SA:S20344,Europe/Paris,0,DGL, +DGL:SP:451,1,"Chassieu Mairie",45.742684,4.971774,0,0,DGL:SA:S10212,Europe/Paris,2,DGL, +DGL:SP:452,1,"Chassieu Mairie",45.742872,4.971796,0,0,DGL:SA:S10212,Europe/Paris,2,DGL, +DGL:SP:45218,1,"Hauts de Vassieux",45.801832,4.862538,0,0,DGL:SA:S20291,Europe/Paris,2,DGL, +DGL:SP:45239,1,"Caluire Centre",45.799157,4.847757,0,0,DGL:SA:S10155,Europe/Paris,2,DGL, +DGL:SP:45260,1,"Lycee J.P. Sartre",45.737981,4.922184,0,0,DGL:SA:S5902,Europe/Paris,2,DGL, +DGL:SP:45261,1,"Lycee J.P. Sartre",45.738053,4.922152,0,0,DGL:SA:S5902,Europe/Paris,2,DGL, +DGL:SP:45262,1,"Parc du Chene",45.738982,4.926646,0,0,DGL:SA:S5903,Europe/Paris,2,DGL, +DGL:SP:45263,1,"Parc du Chene",45.739057,4.926611,0,0,DGL:SA:S5903,Europe/Paris,2,DGL, +DGL:SP:45265,1,"De Tassigny - Curial",45.73578,4.917016,0,0,DGL:SA:S5901,Europe/Paris,2,DGL, +DGL:SP:45266,1,"De Tassigny - Curial",45.73578,4.917016,0,0,DGL:SA:S5901,Europe/Paris,2,DGL, +DGL:SP:45268,1,"Eurexpo.",45.732068,4.947946,0,0,DGL:SA:S5621,Europe/Paris,2,DGL, +DGL:SP:45270,1,"Grange Blanche.",45.742459,4.879317,0,0,DGL:SA:S5041,Europe/Paris,2,DGL, +DGL:SP:45271,1,"Grange Blanche",45.742511,4.879507,0,0,DGL:SA:S5041,Europe/Paris,2,DGL, +DGL:SP:45278,1,"Viviani",45.727685,4.86248,0,0,DGL:SA:S11471,Europe/Paris,2,DGL, +DGL:SP:45279,1,"College Balzac",45.725691,4.860856,0,0,DGL:SA:S34070,Europe/Paris,2,DGL, +DGL:SP:45280,1,"College Balzac",45.725708,4.860921,0,0,DGL:SA:S34070,Europe/Paris,2,DGL, +DGL:SP:45281,1,"Place Ennemond Romand",45.723248,4.858636,0,0,DGL:SA:S11126,Europe/Paris,2,DGL, +DGL:SP:45282,1,"Place Ennemond Romand",45.723636,4.85859,0,0,DGL:SA:S11126,Europe/Paris,2,DGL, +DGL:SP:453,1,"Chassieu Place",45.738829,4.969571,0,0,DGL:SA:S5020,Europe/Paris,2,DGL, +DGL:SP:45358,1,"Clos des Coquilles",45.731417,4.741137,0,0,DGL:SA:S34080,Europe/Paris,2,DGL, +DGL:SP:45359,1,"Clos des Coquilles",45.731299,4.741607,0,0,DGL:SA:S34080,Europe/Paris,2,DGL, +DGL:SP:45360,1,"Fort du Bruissin",45.732442,4.739511,0,0,DGL:SA:S10454,Europe/Paris,0,DGL, +DGL:SP:454,1,"Chassieu Place",45.738364,4.968675,0,0,DGL:SA:S5020,Europe/Paris,2,DGL, +DGL:SP:45401,1,"Ancienne Gare",45.718701,4.696957,0,0,DGL:SA:S32780,Europe/Paris,0,DGL, +DGL:SP:45402,1,"Thurins Mairie",45.682987,4.640647,0,0,DGL:SA:S34090,Europe/Paris,0,DGL, +DGL:SP:45418,1,"Le Grand Treyve",45.718718,4.693553,0,0,DGL:SA:S34100,Europe/Paris,0,DGL, +DGL:SP:45419,1,"Le Grand Treyve",45.718398,4.694413,0,0,DGL:SA:S34100,Europe/Paris,2,DGL, +DGL:SP:45420,1,"Joanna",45.716543,4.691262,0,0,DGL:SA:S34101,Europe/Paris,0,DGL, +DGL:SP:45421,1,"Joanna",45.716506,4.691312,0,0,DGL:SA:S34101,Europe/Paris,2,DGL, +DGL:SP:45422,1,"Parc d'activites des Lats",45.701487,4.687292,0,0,DGL:SA:S34102,Europe/Paris,2,DGL, +DGL:SP:45423,1,"Parc d'activites des Lats",45.701477,4.687355,0,0,DGL:SA:S34102,Europe/Paris,2,DGL, +DGL:SP:45424,1,"Malataverne",45.697893,4.686149,0,0,DGL:SA:S34103,Europe/Paris,0,DGL, +DGL:SP:45425,1,"Malataverne",45.697731,4.68613,0,0,DGL:SA:S34103,Europe/Paris,0,DGL, +DGL:SP:45426,1,"Pre Moulin",45.696814,4.681364,0,0,DGL:SA:S34104,Europe/Paris,0,DGL, +DGL:SP:45427,1,"Messimy Mairie",45.697773,4.676098,0,0,DGL:SA:S34105,Europe/Paris,0,DGL, +DGL:SP:45428,1,"Pre Moulin",45.696799,4.681209,0,0,DGL:SA:S34104,Europe/Paris,2,DGL, +DGL:SP:45429,1,"Quinsonnat",45.686071,4.670876,0,0,DGL:SA:S34106,Europe/Paris,0,DGL, +DGL:SP:45430,1,"Quinsonnat",45.686094,4.670994,0,0,DGL:SA:S34106,Europe/Paris,0,DGL, +DGL:SP:45431,1,"La Valotte",45.679209,4.65844,0,0,DGL:SA:S34107,Europe/Paris,0,DGL, +DGL:SP:45432,1,"La Valotte",45.679111,4.658359,0,0,DGL:SA:S34107,Europe/Paris,0,DGL, +DGL:SP:45433,1,"Le Pont",45.679475,4.649938,0,0,DGL:SA:S34108,Europe/Paris,0,DGL, +DGL:SP:45434,1,"Le Pont",45.67943,4.64905,0,0,DGL:SA:S34108,Europe/Paris,2,DGL, +DGL:SP:45435,1,"Thurins Les Vergers",45.681691,4.644124,0,0,DGL:SA:S34109,Europe/Paris,0,DGL, +DGL:SP:45438,1,"Chapelle de Beaunant",45.716983,4.77723,0,0,DGL:SA:S34120,Europe/Paris,0,DGL, +DGL:SP:45439,1,"Chapelle de Beaunant",45.716919,4.777278,0,0,DGL:SA:S34120,Europe/Paris,0,DGL, +DGL:SP:45440,1,"Le Caillou",45.701689,4.767328,0,0,DGL:SA:S34121,Europe/Paris,0,DGL, +DGL:SP:45441,1,"Le Caillou",45.702249,4.767687,0,0,DGL:SA:S34121,Europe/Paris,0,DGL, +DGL:SP:45442,1,"Chaponost Gare",45.698965,4.763034,0,0,DGL:SA:S34122,Europe/Paris,2,DGL, +DGL:SP:45443,1,"Chaponost Gare",45.698652,4.764176,0,0,DGL:SA:S34122,Europe/Paris,2,DGL, +DGL:SP:45444,1,"Le Gilbertin",45.700636,4.751919,0,0,DGL:SA:S34123,Europe/Paris,2,DGL, +DGL:SP:45445,1,"Le Gilbertin",45.700597,4.752508,0,0,DGL:SA:S34123,Europe/Paris,2,DGL, +DGL:SP:45446,1,"La Chaize",45.701917,4.748866,0,0,DGL:SA:S34124,Europe/Paris,2,DGL, +DGL:SP:45447,1,"La Chaize",45.701428,4.748999,0,0,DGL:SA:S34124,Europe/Paris,2,DGL, +DGL:SP:45448,1,"Maison des Jeunes",45.703918,4.747888,0,0,DGL:SA:S34125,Europe/Paris,0,DGL, +DGL:SP:45449,1,"Maison des Jeunes",45.704001,4.747801,0,0,DGL:SA:S34125,Europe/Paris,0,DGL, +DGL:SP:45450,1,"La Bonnette",45.704167,4.74258,0,0,DGL:SA:S34126,Europe/Paris,0,DGL, +DGL:SP:45451,1,"La Bonnette",45.703949,4.743123,0,0,DGL:SA:S34126,Europe/Paris,0,DGL, +DGL:SP:45452,1,"Misery",45.706467,4.741126,0,0,DGL:SA:S34127,Europe/Paris,0,DGL, +DGL:SP:45453,1,"Misery",45.706312,4.741222,0,0,DGL:SA:S34127,Europe/Paris,0,DGL, +DGL:SP:45454,1,"Chaponost Mairie",45.709854,4.742662,0,0,DGL:SA:S34128,Europe/Paris,0,DGL, +DGL:SP:45455,1,"Chaponost Mairie",45.709899,4.742651,0,0,DGL:SA:S34128,Europe/Paris,2,DGL, +DGL:SP:45456,1,"Chaponost La Madone",45.710901,4.738314,0,0,DGL:SA:S34129,Europe/Paris,0,DGL, +DGL:SP:45457,1,"Chaponost La Madone",45.710829,4.73831,0,0,DGL:SA:S34129,Europe/Paris,0,DGL, +DGL:SP:45458,1,"Le Bouleau",45.713628,4.713815,0,0,DGL:SA:S34130,Europe/Paris,0,DGL, +DGL:SP:45459,1,"Le Bouleau",45.713518,4.7139,0,0,DGL:SA:S34130,Europe/Paris,0,DGL, +DGL:SP:45460,1,"Chemin des Vieures",45.719859,4.723015,0,0,DGL:SA:S34131,Europe/Paris,0,DGL, +DGL:SP:45461,1,"Chemin des Vieures",45.719765,4.723216,0,0,DGL:SA:S34131,Europe/Paris,0,DGL, +DGL:SP:45462,1,"Le Gourd",45.721031,4.714918,0,0,DGL:SA:S34132,Europe/Paris,0,DGL, +DGL:SP:45463,1,"Le Gourd",45.720981,4.715148,0,0,DGL:SA:S34132,Europe/Paris,0,DGL, +DGL:SP:45464,1,"Le Devay",45.721132,4.704142,0,0,DGL:SA:S34133,Europe/Paris,0,DGL, +DGL:SP:45465,1,"Le Devay",45.721105,4.70414,0,0,DGL:SA:S34133,Europe/Paris,0,DGL, +DGL:SP:45466,1,"Les Andres",45.722098,4.699326,0,0,DGL:SA:S34134,Europe/Paris,0,DGL, +DGL:SP:45467,1,"Les Andres",45.72208,4.699325,0,0,DGL:SA:S34134,Europe/Paris,0,DGL, +DGL:SP:45468,1,"Pont d'Oullins",45.717874,4.808879,0,0,DGL:SA:S11162,Europe/Paris,2,DGL, +DGL:SP:45469,1,"Pont d'Oullins",45.71771,4.808988,0,0,DGL:SA:S11162,Europe/Paris,2,DGL, +DGL:SP:45470,1,"Ferroussat",45.721753,4.767739,0,0,DGL:SA:S34135,Europe/Paris,0,DGL, +DGL:SP:45471,1,"Ferroussat",45.721651,4.767837,0,0,DGL:SA:S34135,Europe/Paris,0,DGL, +DGL:SP:45472,1,"Anatoile Celle",45.716793,4.763999,0,0,DGL:SA:S34136,Europe/Paris,0,DGL, +DGL:SP:45473,1,"Anatoile Celle",45.716749,4.763959,0,0,DGL:SA:S34136,Europe/Paris,0,DGL, +DGL:SP:45474,1,"Chaponost les Vergers",45.717061,4.758666,0,0,DGL:SA:S34137,Europe/Paris,0,DGL, +DGL:SP:45475,1,"Chaponost les Vergers",45.717022,4.758818,0,0,DGL:SA:S34137,Europe/Paris,2,DGL, +DGL:SP:45476,1,"Centre Social",45.714813,4.750228,0,0,DGL:SA:S34138,Europe/Paris,2,DGL, +DGL:SP:45477,1,"Centre Social",45.714634,4.750182,0,0,DGL:SA:S34138,Europe/Paris,2,DGL, +DGL:SP:45478,1,"Chaponost Bellevue",45.71214,4.747708,0,0,DGL:SA:S34139,Europe/Paris,2,DGL, +DGL:SP:45479,1,"Chaponost Bellevue",45.71212,4.747797,0,0,DGL:SA:S34139,Europe/Paris,2,DGL, +DGL:SP:45480,1,"La Source",45.712235,4.743691,0,0,DGL:SA:S34140,Europe/Paris,0,DGL, +DGL:SP:45481,1,"La Source",45.712274,4.743962,0,0,DGL:SA:S34140,Europe/Paris,2,DGL, +DGL:SP:45482,1,"Paul Doumer",45.711703,4.739942,0,0,DGL:SA:S34141,Europe/Paris,2,DGL, +DGL:SP:45483,1,"Paul Doumer",45.711656,4.740042,0,0,DGL:SA:S34141,Europe/Paris,0,DGL, +DGL:SP:45484,1,"Bernicot",45.692565,4.766386,0,0,DGL:SA:S34142,Europe/Paris,0,DGL, +DGL:SP:45485,1,"Bernicot",45.692595,4.766645,0,0,DGL:SA:S34142,Europe/Paris,0,DGL, +DGL:SP:45638,1,"Porte de Lyon",45.821554,4.763258,0,0,DGL:SA:S11147,Europe/Paris,2,DGL, +DGL:SP:45639,1,"St Germain Pain Beni",45.883822,4.799354,0,0,DGL:SA:S20311,Europe/Paris,0,DGL, +DGL:SP:45719,1,"PERICA - Mercieres",45.81391,4.882487,0,0,DGL:SA:S34150,Europe/Paris,2,DGL, +DGL:SP:45720,1,"PERICA - Mercieres",45.813731,4.882136,0,0,DGL:SA:S34150,Europe/Paris,2,DGL, +DGL:SP:45764,1,"Lycee J.P. Sartre",45.738051,4.922085,0,0,DGL:SA:S5902,Europe/Paris,2,DGL, +DGL:SP:45765,1,"Lycee J.P. Sartre",45.73827,4.923548,0,0,DGL:SA:S5902,Europe/Paris,2,DGL, +DGL:SP:45766,1,"Lycee J.P. Sartre",45.738817,4.922057,0,0,DGL:SA:S5902,Europe/Paris,2,DGL, +DGL:SP:45767,1,"De Tassigny - Curial",45.736329,4.916785,0,0,DGL:SA:S5901,Europe/Paris,2,DGL, +DGL:SP:45768,1,"De Tassigny - Curial",45.73695,4.917123,0,0,DGL:SA:S5901,Europe/Paris,2,DGL, +DGL:SP:45769,1,"De Tassigny - Curial",45.736973,4.917728,0,0,DGL:SA:S5901,Europe/Paris,2,DGL, +DGL:SP:45773,1,"De Tassigny - Curial",45.736648,4.916183,0,0,DGL:SA:S5901,Europe/Paris,0,DGL, +DGL:SP:45774,1,"De Tassigny - Curial",45.73666,4.916055,0,0,DGL:SA:S5901,Europe/Paris,0,DGL, +DGL:SP:45787,1,"Pont Masaryk",45.778456,4.810992,0,0,DGL:SA:S11896,Europe/Paris,2,DGL, +DGL:SP:45789,1,"Pont Clemenceau",45.776493,4.810284,0,0,DGL:SA:S11160,Europe/Paris,2,DGL, +DGL:SP:45790,1,"Pont Clemenceau",45.776313,4.810362,0,0,DGL:SA:S11160,Europe/Paris,2,DGL, +DGL:SP:45791,1,"Quai Gillet",45.771876,4.813693,0,0,DGL:SA:S11195,Europe/Paris,2,DGL, +DGL:SP:45796,1,"Pont de Collonges RD",45.814506,4.845652,0,0,DGL:SA:S11165,Europe/Paris,2,DGL, +DGL:SP:45797,1,"Duchere Martiniere",45.786065,4.795027,0,0,DGL:SA:S10372,Europe/Paris,2,DGL, +DGL:SP:45798,1,"Duchere Martiniere",45.786108,4.795119,0,0,DGL:SA:S10372,Europe/Paris,2,DGL, +DGL:SP:45799,1,"Bellecour Le Viste",45.757154,4.833739,0,0,DGL:SA:S10080,Europe/Paris,2,DGL, +DGL:SP:45800,1,"Hotel de Region Montrochet",45.741286,4.819508,0,0,DGL:SA:S5519,Europe/Paris,0,DGL, +DGL:SP:45803,1,"Yves Chauvin",45.648395,4.829634,0,0,DGL:SA:S33703,Europe/Paris,0,DGL, +DGL:SP:45804,1,"Parilly",45.719234,4.888047,0,0,DGL:SA:S5084,Europe/Paris,0,DGL, +DGL:SP:45805,1,"Lortet",45.742215,4.840068,0,0,DGL:SA:S11789,Europe/Paris,2,DGL, +DGL:SP:45806,1,"Lortet",45.742622,4.840408,0,0,DGL:SA:S11789,Europe/Paris,2,DGL, +DGL:SP:45807,1,"La Saulaie",45.718337,4.818113,0,0,DGL:SA:S10693,Europe/Paris,2,DGL, +DGL:SP:45817,1,"Vaulx Place Boissier",45.786053,4.92653,0,0,DGL:SA:S11437,Europe/Paris,0,DGL, +DGL:SP:45821,1,"Meyzieu Jacques Prevert",45.760694,4.993675,0,0,DGL:SA:S33950,Europe/Paris,0,DGL, +DGL:SP:45822,1,"Manufacture Montluc",45.749899,4.861092,0,0,DGL:SA:S5906,Europe/Paris,2,DGL, +DGL:SP:45823,1,"Zac des Marronniers",45.817106,4.872378,0,0,DGL:SA:S11498,Europe/Paris,0,DGL, +DGL:SP:45824,1,"Zac des Marronniers",45.816289,4.872835,0,0,DGL:SA:S11498,Europe/Paris,0,DGL, +DGL:SP:45827,1,"Dassault",45.777917,5.034694,0,0,DGL:SA:S34165,Europe/Paris,0,DGL, +DGL:SP:45828,1,"Louis Renault",45.777011,5.031188,0,0,DGL:SA:S34166,Europe/Paris,0,DGL, +DGL:SP:45833,1,"Rue de Sete",45.713263,4.841488,0,0,DGL:SA:S32826,Europe/Paris,2,DGL, +DGL:SP:45834,1,"Yves Farge - Corsiere",45.695004,4.859214,0,0,DGL:SA:S32824,Europe/Paris,2,DGL, +DGL:SP:45835,1,"Yves Farge - Corsiere",45.69578,4.858931,0,0,DGL:SA:S32824,Europe/Paris,2,DGL, +DGL:SP:45836,1,"Deux Fermes",45.691464,4.861047,0,0,DGL:SA:S32823,Europe/Paris,2,DGL, +DGL:SP:45837,1,"Deux Fermes",45.692104,4.860742,0,0,DGL:SA:S32823,Europe/Paris,2,DGL, +DGL:SP:45838,1,"Les Maures",45.663968,4.857862,0,0,DGL:SA:S10818,Europe/Paris,2,DGL, +DGL:SP:45839,1,"St Fons Mairie",45.709191,4.852892,0,0,DGL:SA:S11779,Europe/Paris,2,DGL, +DGL:SP:45840,1,"Rue de Sete",45.713614,4.841491,0,0,DGL:SA:S32826,Europe/Paris,2,DGL, +DGL:SP:45841,1,"St Genis 2",45.680686,4.789258,0,0,DGL:SA:S11302,Europe/Paris,2,DGL, +DGL:SP:45843,1,"Duchere Tunnel",45.782851,4.797508,0,0,DGL:SA:S34167,Europe/Paris,2,DGL, +DGL:SP:45844,1,"Duchere Tunnel",45.782964,4.797693,0,0,DGL:SA:S34167,Europe/Paris,2,DGL, +DGL:SP:45848,1,"Gare Part Dieu",45.761275,4.861974,0,0,DGL:SA:S5540,Europe/Paris,2,DGL, +DGL:SP:45851,1,"Professeur Roux",45.720554,4.859032,0,0,DGL:SA:S11154,Europe/Paris,2,DGL, +DGL:SP:45852,1,"Parc Lyder",45.708626,4.909092,0,0,DGL:SA:S20398,Europe/Paris,2,DGL, +DGL:SP:45853,1,"Parc Lyder",45.708602,4.908994,0,0,DGL:SA:S20398,Europe/Paris,2,DGL, +DGL:SP:45854,1,"Temps modernes",45.708244,4.917773,0,0,DGL:SA:S34169,Europe/Paris,2,DGL, +DGL:SP:45855,1,"Temps modernes",45.708356,4.917634,0,0,DGL:SA:S34169,Europe/Paris,2,DGL, +DGL:SP:45856,1,"Charlie Chaplin",45.711071,4.912563,0,0,DGL:SA:S34170,Europe/Paris,2,DGL, +DGL:SP:45857,1,"Charlie Chaplin",45.711103,4.912584,0,0,DGL:SA:S34170,Europe/Paris,2,DGL, +DGL:SP:45861,1,"Manufacture Montluc",45.750153,4.860302,0,0,DGL:SA:S5906,Europe/Paris,2,DGL, +DGL:SP:45862,1,"Manufacture Montluc",45.750149,4.860339,0,0,DGL:SA:S5906,Europe/Paris,2,DGL, +DGL:SP:45863,1,"Archives Departementales",45.754351,4.861745,0,0,DGL:SA:S5907,Europe/Paris,2,DGL, +DGL:SP:45864,1,"Archives Departementales",45.754351,4.861787,0,0,DGL:SA:S5907,Europe/Paris,2,DGL, +DGL:SP:45869,1,"Lycee Colbert",45.745597,4.85899,0,0,DGL:SA:S5905,Europe/Paris,2,DGL, +DGL:SP:45870,1,"Lycee Colbert",45.745593,4.859023,0,0,DGL:SA:S5905,Europe/Paris,2,DGL, +DGL:SP:45883,1,"Gare Part Dieu",45.760801,4.861931,0,0,DGL:SA:S5540,Europe/Paris,2,DGL, +DGL:SP:45884,1,"Gare Part Dieu",45.7608,4.861973,0,0,DGL:SA:S5540,Europe/Paris,2,DGL, +DGL:SP:45889,1,"Vaulx Lamartine",45.791809,4.922162,0,0,DGL:SA:S11428,Europe/Paris,0,DGL, +DGL:SP:45890,1,"Vaulx Berthelot",45.789087,4.922055,0,0,DGL:SA:S11423,Europe/Paris,2,DGL, +DGL:SP:45891,1,"Vaulx Lakanal",45.786992,4.92044,0,0,DGL:SA:S11426,Europe/Paris,0,DGL, +DGL:SP:459,1,"Chateau Roy",45.829373,4.853027,0,0,DGL:SA:S10216,Europe/Paris,0,DGL, +DGL:SP:45902,1,"Constellation",45.755057,4.773586,0,0,DGL:SA:S20145,Europe/Paris,2,DGL, +DGL:SP:45907,1,"Noisetiers",45.813539,4.775069,0,0,DGL:SA:S34186,Europe/Paris,2,DGL, +DGL:SP:45908,1,"Frenes",45.815206,4.771693,0,0,DGL:SA:S34187,Europe/Paris,2,DGL, +DGL:SP:45909,1,"Sequoia",45.811113,4.776518,0,0,DGL:SA:S33391,Europe/Paris,0,DGL, +DGL:SP:45912,1,"Quatre Chemins",45.741671,4.69065,0,0,DGL:SA:S11198,Europe/Paris,2,DGL, +DGL:SP:45913,1,"Gymnase E.Catalon",45.748053,4.697723,0,0,DGL:SA:S33910,Europe/Paris,2,DGL, +DGL:SP:45963,1,"Voyageurs",45.743946,4.698957,0,0,DGL:SA:S34212,Europe/Paris,2,DGL, +DGL:SP:45964,1,"Martoret",45.742328,4.695528,0,0,DGL:SA:S34213,Europe/Paris,2,DGL, +DGL:SP:45969,1,"Martoret",45.74227,4.695512,0,0,DGL:SA:S34213,Europe/Paris,2,DGL, +DGL:SP:45970,1,"Voyageurs",45.74466,4.700633,0,0,DGL:SA:S34212,Europe/Paris,2,DGL, +DGL:SP:45980,1,"Bourdarias",45.724272,4.88305,0,0,DGL:SA:S10112,Europe/Paris,2,DGL, +DGL:SP:460,1,"Chateau Roy",45.828886,4.853468,0,0,DGL:SA:S10216,Europe/Paris,0,DGL, +DGL:SP:46000,1,"Dumas - Salengro",45.753142,4.927922,0,0,DGL:SA:S10380,Europe/Paris,0,DGL, +DGL:SP:46001,1,"Dumas - Salengro",45.753252,4.928006,0,0,DGL:SA:S10380,Europe/Paris,0,DGL, +DGL:SP:46008,1,"La Chicotiere",45.845284,4.733481,0,0,DGL:SA:S34020,Europe/Paris,0,DGL, +DGL:SP:46009,1,"Lissieu - Montluzin",45.871314,4.748088,0,0,DGL:SA:S10995,Europe/Paris,0,DGL, +DGL:SP:46010,1,"St Germain Mairie",45.884052,4.802406,0,0,DGL:SA:S11314,Europe/Paris,0,DGL, +DGL:SP:46011,1,"Place Ambroise Courtois",45.744004,4.870811,0,0,DGL:SA:S31560,Europe/Paris,2,DGL, +DGL:SP:46012,1,"Rillieux Victor Hugo",45.819333,4.892125,0,0,DGL:SA:S34225,Europe/Paris,0,DGL, +DGL:SP:46013,1,"Technoparc",45.799538,4.769056,0,0,DGL:SA:S34226,Europe/Paris,2,DGL, +DGL:SP:46014,1,"Technoparc",45.800048,4.769194,0,0,DGL:SA:S34226,Europe/Paris,0,DGL, +DGL:SP:46015,1,"Limonest Cimetiere",45.84297,4.768545,0,0,DGL:SA:S10860,Europe/Paris,0,DGL, +DGL:SP:46022,1,"Brotteaux",45.766921,4.859494,0,0,DGL:SA:S5004,Europe/Paris,2,DGL, +DGL:SP:46023,1,"Brotteaux.",45.766861,4.859363,0,0,DGL:SA:S5004,Europe/Paris,2,DGL, +DGL:SP:46024,1,"Part-Dieu.",45.761561,4.857255,0,0,DGL:SA:S5520,Europe/Paris,2,DGL, +DGL:SP:46025,1,"Part-Dieu",45.761688,4.857235,0,0,DGL:SA:S5520,Europe/Paris,2,DGL, +DGL:SP:46026,1,"Pl.Guichard Bourse du Travail",45.759364,4.847651,0,0,DGL:SA:S5043,Europe/Paris,2,DGL, +DGL:SP:46027,1,"Pl.Guichard Bourse du Travail.",45.759438,4.847564,0,0,DGL:SA:S5043,Europe/Paris,2,DGL, +DGL:SP:46028,1,"Jean Mace",45.746149,4.842471,0,0,DGL:SA:S5160,Europe/Paris,2,DGL, +DGL:SP:46029,1,"Jean Mace.",45.746206,4.842358,0,0,DGL:SA:S5160,Europe/Paris,2,DGL, +DGL:SP:46030,1,"Place Jean Jaures",45.737825,4.837554,0,0,DGL:SA:S5221,Europe/Paris,2,DGL, +DGL:SP:46031,1,"Debourg",45.731965,4.83392,0,0,DGL:SA:S5220,Europe/Paris,2,DGL, +DGL:SP:46032,1,"Debourg.",45.731926,4.834022,0,0,DGL:SA:S5220,Europe/Paris,2,DGL, +DGL:SP:46033,1,"Stade de Gerland",45.727369,4.831334,0,0,DGL:SA:S5200,Europe/Paris,2,DGL, +DGL:SP:46034,1,"Stade de Gerland .",45.727425,4.831208,0,0,DGL:SA:S5200,Europe/Paris,2,DGL, +DGL:SP:46035,1,"Gare d'Oullins",45.716679,4.814492,0,0,DGL:SA:S5904,Europe/Paris,2,DGL, +DGL:SP:46036,1,"Gare d'Oullins.",45.716706,4.814519,0,0,DGL:SA:S5904,Europe/Paris,2,DGL, +DGL:SP:46040,1,"Saxe - Gambetta.",45.753694,4.846801,0,0,DGL:SA:S5092,Europe/Paris,2,DGL, +DGL:SP:46049,1,"Ampere Victor Hugo",45.753124,4.829172,0,0,DGL:SA:S5000,Europe/Paris,0,DGL, +DGL:SP:46050,1,"Cordeliers",45.763429,4.835735,0,0,DGL:SA:S5021,Europe/Paris,2,DGL, +DGL:SP:46051,1,"Bellecour.",45.757552,4.833256,0,0,DGL:SA:S5002,Europe/Paris,2,DGL, +DGL:SP:46052,1,"Hotel de Ville - L.Pradel",45.767321,4.835989,0,0,DGL:SA:S5046,Europe/Paris,2,DGL, +DGL:SP:46053,1,"Foch",45.768824,4.844456,0,0,DGL:SA:S5182,Europe/Paris,2,DGL, +DGL:SP:46054,1,"Massena",45.769625,4.853316,0,0,DGL:SA:S5081,Europe/Paris,2,DGL, +DGL:SP:46055,1,"Charpennes Charles Hernu",45.770631,4.864218,0,0,DGL:SA:S5102,Europe/Paris,2,DGL, +DGL:SP:46056,1,"Republique Villeurbanne",45.770652,4.873672,0,0,DGL:SA:S5183,Europe/Paris,2,DGL, +DGL:SP:46057,1,"Gratte Ciel",45.769083,4.882166,0,0,DGL:SA:S5042,Europe/Paris,2,DGL, +DGL:SP:46058,1,"Flachet",45.767626,4.890047,0,0,DGL:SA:S5024,Europe/Paris,2,DGL, +DGL:SP:46059,1,"Cusset",45.765745,4.900275,0,0,DGL:SA:S5023,Europe/Paris,2,DGL, +DGL:SP:46060,1,"Bonnevay",45.764022,4.909506,0,0,DGL:SA:S5101,Europe/Paris,2,DGL, +DGL:SP:46061,1,"Bonnevay.",45.763941,4.909489,0,0,DGL:SA:S5101,Europe/Paris,2,DGL, +DGL:SP:46066,1,"Orsel",45.716522,4.809631,0,0,DGL:SA:S34260,Europe/Paris,2,DGL, +DGL:SP:46067,1,"Orsel",45.71647,4.809684,0,0,DGL:SA:S34260,Europe/Paris,2,DGL, +DGL:SP:46070,1,"Lucien Maitre",45.78973,4.826006,0,0,DGL:SA:S34263,Europe/Paris,2,DGL, +DGL:SP:46074,1,"Petetin",45.594288,4.774238,0,0,DGL:SA:S34265,Europe/Paris,0,DGL, +DGL:SP:46075,1,"Petetin",45.594327,4.774436,0,0,DGL:SA:S34265,Europe/Paris,0,DGL, +DGL:SP:46076,1,"St Genis 2",45.681518,4.788586,0,0,DGL:SA:S11302,Europe/Paris,2,DGL, +DGL:SP:46078,1,"Rillieux Victor Hugo",45.819253,4.892456,0,0,DGL:SA:S34225,Europe/Paris,0,DGL, +DGL:SP:46082,1,"Hopital Lyon Sud",45.700008,4.806385,0,0,DGL:SA:S10565,Europe/Paris,2,DGL, +DGL:SP:46091,1,"Campus Lyon Ouest",45.782447,4.76626,0,0,DGL:SA:S33574,Europe/Paris,2,DGL, +DGL:SP:46092,1,"Campus Lyon Ouest",45.783347,4.766049,0,0,DGL:SA:S33574,Europe/Paris,2,DGL, +DGL:SP:46093,1,"Campus Lyon Ouest",45.78305,4.766049,0,0,DGL:SA:S33574,Europe/Paris,2,DGL, +DGL:SP:46094,1,"Campus Lyon Ouest",45.783183,4.766158,0,0,DGL:SA:S33574,Europe/Paris,2,DGL, +DGL:SP:46095,1,"Pontet Crases",45.788145,4.764795,0,0,DGL:SA:S20184,Europe/Paris,2,DGL, +DGL:SP:46096,1,"Pontet Crases",45.788216,4.764836,0,0,DGL:SA:S20184,Europe/Paris,2,DGL, +DGL:SP:46097,1,"Ecully Grandes Ecoles",45.785518,4.765155,0,0,DGL:SA:S11666,Europe/Paris,2,DGL, +DGL:SP:46098,1,"Ecully Grandes Ecoles",45.785634,4.765173,0,0,DGL:SA:S11666,Europe/Paris,2,DGL, +DGL:SP:461,1,"Chavril",45.743632,4.797991,0,0,DGL:SA:S10217,Europe/Paris,2,DGL, +DGL:SP:46100,1,"Bel Air - Aubepines",45.745748,4.756766,0,0,DGL:SA:S5764,Europe/Paris,2,DGL, +DGL:SP:46101,1,"Bel Air - Aubepines",45.745803,4.757312,0,0,DGL:SA:S5764,Europe/Paris,2,DGL, +DGL:SP:46102,1,"Joseph Moulin",45.745896,4.714234,0,0,DGL:SA:S12270,Europe/Paris,2,DGL, +DGL:SP:46103,1,"Joseph Moulin",45.745867,4.714404,0,0,DGL:SA:S12270,Europe/Paris,2,DGL, +DGL:SP:46108,1,"Craponne - 11 Novembre",45.746041,4.731698,0,0,DGL:SA:S33312,Europe/Paris,2,DGL, +DGL:SP:46109,1,"Craponne - 11 Novembre",45.746006,4.731368,0,0,DGL:SA:S33312,Europe/Paris,2,DGL, +DGL:SP:46110,1,"Thurins Mairie",45.683889,4.64126,0,0,DGL:SA:S34090,Europe/Paris,0,DGL, +DGL:SP:46111,1,"Thurins Les Vergers",45.680663,4.644154,0,0,DGL:SA:S34109,Europe/Paris,2,DGL, +DGL:SP:46119,1,"La Croix des Hormes",45.882133,4.872961,0,0,DGL:SA:S11746,Europe/Paris,2,DGL, +DGL:SP:46120,1,"Gare d'Oullins",45.716464,4.814508,0,0,DGL:SA:S5904,Europe/Paris,2,DGL, +DGL:SP:46121,1,"Gare d'Oullins",45.716154,4.814678,0,0,DGL:SA:S5904,Europe/Paris,2,DGL, +DGL:SP:46122,1,"Gare d'Oullins",45.716166,4.814879,0,0,DGL:SA:S5904,Europe/Paris,2,DGL, +DGL:SP:46123,1,"Gare d'Oullins",45.716192,4.815103,0,0,DGL:SA:S5904,Europe/Paris,2,DGL, +DGL:SP:46124,1,"Gare d'Oullins",45.716314,4.815008,0,0,DGL:SA:S5904,Europe/Paris,2,DGL, +DGL:SP:46125,1,"Gare d'Oullins",45.716691,4.815186,0,0,DGL:SA:S5904,Europe/Paris,2,DGL, +DGL:SP:46126,1,"Gare d'Oullins",45.716777,4.815203,0,0,DGL:SA:S5904,Europe/Paris,2,DGL, +DGL:SP:46127,1,"Parc Bourrat",45.741105,4.803342,0,0,DGL:SA:S34270,Europe/Paris,0,DGL, +DGL:SP:46128,1,"Parc Bourrat",45.741137,4.803362,0,0,DGL:SA:S34270,Europe/Paris,0,DGL, +DGL:SP:46130,1,"Gare d'Oullins",45.716016,4.815123,0,0,DGL:SA:S5904,Europe/Paris,2,DGL, +DGL:SP:46132,1,"Gare d'Oullins",45.716301,4.814736,0,0,DGL:SA:S5904,Europe/Paris,2,DGL, +DGL:SP:46137,1,"Roux Rivoire",45.611107,4.797267,0,0,DGL:SA:S34273,Europe/Paris,0,DGL, +DGL:SP:46138,1,"Roux Rivoire",45.610757,4.797138,0,0,DGL:SA:S34273,Europe/Paris,0,DGL, +DGL:SP:46139,1,"Grigny Jean Moulin",45.606615,4.790591,0,0,DGL:SA:S34274,Europe/Paris,0,DGL, +DGL:SP:46140,1,"Grigny Jean Moulin",45.606623,4.791014,0,0,DGL:SA:S34274,Europe/Paris,0,DGL, +DGL:SP:46143,1,"Andre Sabatier",45.609657,4.773591,0,0,DGL:SA:S34276,Europe/Paris,0,DGL, +DGL:SP:46144,1,"Andre Sabatier",45.609652,4.772975,0,0,DGL:SA:S34276,Europe/Paris,0,DGL, +DGL:SP:46146,1,"Grigny Pasteur",45.609709,4.776719,0,0,DGL:SA:S31780,Europe/Paris,0,DGL, +DGL:SP:46147,1,"Grigny Pasteur",45.609673,4.776854,0,0,DGL:SA:S31780,Europe/Paris,0,DGL, +DGL:SP:46148,1,"Peroniere",45.860379,4.800377,0,0,DGL:SA:S34277,Europe/Paris,0,DGL, +DGL:SP:46151,1,"Part-Dieu Servient",45.760877,4.85221,0,0,DGL:SA:S5420,Europe/Paris,2,DGL, +DGL:SP:46154,1,"Musee des Confluences",45.733603,4.818878,0,0,DGL:SA:S5908,Europe/Paris,2,DGL, +DGL:SP:46155,1,"Halle Tony Garnier",45.731724,4.82288,0,0,DGL:SA:S5909,Europe/Paris,2,DGL, +DGL:SP:46156,1,"Halle Tony Garnier",45.731695,4.82287,0,0,DGL:SA:S5909,Europe/Paris,2,DGL, +DGL:SP:46157,1,"ENS Lyon",45.731462,4.828847,0,0,DGL:SA:S5910,Europe/Paris,2,DGL, +DGL:SP:46158,1,"ENS Lyon",45.7314,4.828841,0,0,DGL:SA:S5910,Europe/Paris,2,DGL, +DGL:SP:46159,1,"Debourg",45.73119,4.834616,0,0,DGL:SA:S5220,Europe/Paris,2,DGL, +DGL:SP:46160,1,"Debourg",45.731165,4.834601,0,0,DGL:SA:S5220,Europe/Paris,2,DGL, +DGL:SP:46165,1,"Kellermann",45.713786,4.81737,0,0,DGL:SA:S10611,Europe/Paris,2,DGL, +DGL:SP:46166,1,"Kellermann",45.713771,4.817333,0,0,DGL:SA:S10611,Europe/Paris,2,DGL, +DGL:SP:46168,1,"Garibaldi Paul Bert",45.757506,4.852798,0,0,DGL:SA:S34282,Europe/Paris,0,DGL, +DGL:SP:46169,1,"Garibaldi Paul Bert",45.756813,4.85259,0,0,DGL:SA:S34282,Europe/Paris,0,DGL, +DGL:SP:46170,1,"Part-Dieu Servient",45.760327,4.852211,0,0,DGL:SA:S5420,Europe/Paris,2,DGL, +DGL:SP:46171,1,"Descartes - Foch",45.688227,4.787317,0,0,DGL:SA:S34283,Europe/Paris,0,DGL, +DGL:SP:46172,1,"Descartes - Foch",45.688511,4.787348,0,0,DGL:SA:S34283,Europe/Paris,0,DGL, +DGL:SP:46173,1,"Lardillet",45.686643,4.791146,0,0,DGL:SA:S10714,Europe/Paris,0,DGL, +DGL:SP:46174,1,"Lardillet",45.686746,4.791266,0,0,DGL:SA:S10714,Europe/Paris,0,DGL, +DGL:SP:46175,1,"Part-Dieu Servient",45.760613,4.85136,0,0,DGL:SA:S5420,Europe/Paris,2,DGL, +DGL:SP:46176,1,"College Jean Renoir",45.869368,4.845577,0,0,DGL:SA:S10597,Europe/Paris,0,DGL, +DGL:SP:46179,1,"Confluence Rambaud",45.733352,4.816175,0,0,DGL:SA:S34284,Europe/Paris,2,DGL, +DGL:SP:46180,1,"La Sucriere",45.73798,4.815117,0,0,DGL:SA:S32590,Europe/Paris,2,DGL, +DGL:SP:46181,1,"St Fons Bourrelier",45.710699,4.855093,0,0,DGL:SA:S34285,Europe/Paris,2,DGL, +DGL:SP:46182,1,"St Fons Bourrelier",45.710862,4.855153,0,0,DGL:SA:S34285,Europe/Paris,2,DGL, +DGL:SP:46183,1,"St Fons Dussurgey",45.714134,4.854873,0,0,DGL:SA:S34286,Europe/Paris,2,DGL, +DGL:SP:46184,1,"St Fons Dussurgey",45.713761,4.855015,0,0,DGL:SA:S34286,Europe/Paris,2,DGL, +DGL:SP:46185,1,"Komarov",45.69159,4.871816,0,0,DGL:SA:S10614,Europe/Paris,2,DGL, +DGL:SP:46186,1,"Komarov",45.692078,4.872558,0,0,DGL:SA:S10614,Europe/Paris,2,DGL, +DGL:SP:46188,1,"Clos de la Jeunesse",45.789384,4.847864,0,0,DGL:SA:S10265,Europe/Paris,2,DGL, +DGL:SP:46189,1,"Debourg",45.73118,4.834399,0,0,DGL:SA:S5220,Europe/Paris,2,DGL, +DGL:SP:46190,1,"Debourg",45.730967,4.834672,0,0,DGL:SA:S5220,Europe/Paris,2,DGL, +DGL:SP:46191,1,"Part-Dieu Jules Favre",45.763638,4.857003,0,0,DGL:SA:S11061,Europe/Paris,2,DGL, +DGL:SP:46192,1,"Sacuny SPA",45.677917,4.771087,0,0,DGL:SA:S34287,Europe/Paris,2,DGL, +DGL:SP:46193,1,"Sacuny SPA",45.677837,4.770656,0,0,DGL:SA:S34287,Europe/Paris,2,DGL, +DGL:SP:46197,1,"Poumeyrol",45.791394,4.863143,0,0,DGL:SA:S34288,Europe/Paris,0,DGL, +DGL:SP:46198,1,"Poumeyrol",45.791518,4.863207,0,0,DGL:SA:S34288,Europe/Paris,0,DGL, +DGL:SP:462,1,"Chavril",45.744466,4.798517,0,0,DGL:SA:S10217,Europe/Paris,2,DGL, +DGL:SP:46200,1,"Garibaldi - Lafayette",45.763959,4.851462,0,0,DGL:SA:S10709,Europe/Paris,2,DGL, +DGL:SP:46201,1,"Camp Militaire",45.819548,4.869315,0,0,DGL:SA:S20110,Europe/Paris,2,DGL, +DGL:SP:46204,1,"Pateliere - Robiniers",45.745887,4.745214,0,0,DGL:SA:S31800,Europe/Paris,2,DGL, +DGL:SP:46205,1,"Pateliere - Robiniers",45.745853,4.745195,0,0,DGL:SA:S31800,Europe/Paris,2,DGL, +DGL:SP:46206,1,"Meyzieu Z.i",45.767683,5.031638,0,0,DGL:SA:S5568,Europe/Paris,2,DGL, +DGL:SP:46207,1,"Meyzieu les Panettes",45.766145,5.034975,0,0,DGL:SA:S5911,Europe/Paris,2,DGL, +DGL:SP:46212,1,"Pr Bernard",45.722499,4.845405,0,0,DGL:SA:S33051,Europe/Paris,0,DGL, +DGL:SP:46213,1,"Clos de la Jeunesse",45.789021,4.845286,0,0,DGL:SA:S10265,Europe/Paris,2,DGL, +DGL:SP:46214,1,"Clos de la Jeunesse",45.788755,4.84474,0,0,DGL:SA:S10265,Europe/Paris,2,DGL, +DGL:SP:46215,1,"Caluire Chemin Petit",45.804358,4.860135,0,0,DGL:SA:S10228,Europe/Paris,2,DGL, +DGL:SP:46216,1,"Pont de Fontaines",45.832669,4.848092,0,0,DGL:SA:S11169,Europe/Paris,2,DGL, +DGL:SP:46229,1,"La Halte",45.910025,4.777848,0,0,DGL:SA:S34291,Europe/Paris,0,DGL, +DGL:SP:46230,1,"La Halte",45.909665,4.777832,0,0,DGL:SA:S34291,Europe/Paris,0,DGL, +DGL:SP:46231,1,"Quincieux Boulodrome",45.916552,4.774915,0,0,DGL:SA:S34292,Europe/Paris,0,DGL, +DGL:SP:46232,1,"Quincieux Mairie",45.914762,4.778988,0,0,DGL:SA:S34293,Europe/Paris,0,DGL, +DGL:SP:46233,1,"Quincieux Mairie",45.914732,4.779115,0,0,DGL:SA:S34293,Europe/Paris,0,DGL, +DGL:SP:46234,1,"Jerusalem",45.911306,4.787667,0,0,DGL:SA:S34294,Europe/Paris,0,DGL, +DGL:SP:46235,1,"Jerusalem",45.91139,4.787129,0,0,DGL:SA:S34294,Europe/Paris,0,DGL, +DGL:SP:46236,1,"Port Macon",45.897691,4.801098,0,0,DGL:SA:S34295,Europe/Paris,0,DGL, +DGL:SP:46237,1,"Port Macon",45.898714,4.800809,0,0,DGL:SA:S34295,Europe/Paris,0,DGL, +DGL:SP:46239,1,"Route de Chasselay",45.913441,4.777214,0,0,DGL:SA:S34296,Europe/Paris,0,DGL, +DGL:SP:46240,1,"Route de Chasselay",45.91264,4.77683,0,0,DGL:SA:S34296,Europe/Paris,0,DGL, +DGL:SP:46242,1,"Parc des Tuileries",45.822309,4.766201,0,0,DGL:SA:S34297,Europe/Paris,0,DGL, +DGL:SP:46256,1,"Lancon",45.772736,4.896441,0,0,DGL:SA:S10711,Europe/Paris,0,DGL, +DGL:SP:46257,1,"Cusset",45.767657,4.902356,0,0,DGL:SA:S5023,Europe/Paris,0,DGL, +DGL:SP:46264,1,"Ste Foy Place Saint Luc",45.748666,4.800621,0,0,DGL:SA:S34271,Europe/Paris,0,DGL, +DGL:SP:46265,1,"Brotillon",45.70386,4.82733,0,0,DGL:SA:S33242,Europe/Paris,2,DGL, +DGL:SP:46266,1,"Republique - Pierre Benite",45.70292,4.828005,0,0,DGL:SA:S33240,Europe/Paris,2,DGL, +DGL:SP:46267,1,"Republique - Pierre Benite",45.70292,4.828087,0,0,DGL:SA:S33240,Europe/Paris,2,DGL, +DGL:SP:46269,1,"Gare de Venissieux",45.706488,4.888073,0,0,STE:SA:OCE87723320,Europe/Paris,0,DGL, +DGL:SP:46270,1,"Gare de Venissieux",45.706418,4.887993,0,0,STE:SA:OCE87723320,Europe/Paris,0,DGL, +DGL:SP:46282,1,"Lopofa",45.697149,4.934141,0,0,DGL:SA:S10865,Europe/Paris,0,DGL, +DGL:SP:46283,1,"St Priest Les Alpes",45.693664,4.930701,0,0,DGL:SA:S32193,Europe/Paris,0,DGL, +DGL:SP:46289,1,"Terreaux La Feuillee",45.766903,4.831524,0,0,DGL:SA:S34306,Europe/Paris,2,DGL, +DGL:SP:46290,1,"Cordeliers",45.764212,4.835891,0,0,DGL:SA:S5021,Europe/Paris,0,DGL, +DGL:SP:46292,1,"Carette",45.786194,4.839572,0,0,DGL:SA:S10162,Europe/Paris,2,DGL, +DGL:SP:46293,1,"Cimetiere de Corbas",45.674781,4.899913,0,0,DGL:SA:S10237,Europe/Paris,0,DGL, +DGL:SP:46294,1,"La Buire",45.751556,4.859676,0,0,DGL:SA:S34308,Europe/Paris,2,DGL, +DGL:SP:46295,1,"La Buire",45.751854,4.859804,0,0,DGL:SA:S34308,Europe/Paris,0,DGL, +DGL:SP:46297,1,"Gare d'Ecully",45.764961,4.779082,0,0,DGL:SA:S34309,Europe/Paris,0,DGL, +DGL:SP:463,1,"Chazay",45.745509,4.78626,0,0,DGL:SA:S10218,Europe/Paris,2,DGL, +DGL:SP:46303,1,"Hotel de Ville L.Pradel",45.766535,4.83531,0,0,DGL:SA:S34311,Europe/Paris,0,DGL, +DGL:SP:46304,1,"Les Terres St G. les Ollieres",45.7608,4.706196,0,0,DGL:SA:S10846,Europe/Paris,2,DGL, +DGL:SP:46307,1,"Terreaux La Feuillee",45.767322,4.831202,0,0,DGL:SA:S34306,Europe/Paris,2,DGL, +DGL:SP:46308,1,"Carteret",45.726357,4.845295,0,0,DGL:SA:S34313,Europe/Paris,0,DGL, +DGL:SP:46309,1,"Carteret",45.726467,4.845409,0,0,DGL:SA:S34313,Europe/Paris,0,DGL, +DGL:SP:46310,1,"Debourg",45.731338,4.835781,0,0,DGL:SA:S5220,Europe/Paris,0,DGL, +DGL:SP:46311,1,"Jean Vallier",45.734053,4.839195,0,0,DGL:SA:S11737,Europe/Paris,0,DGL, +DGL:SP:46312,1,"Parilly",45.720026,4.887425,0,0,DGL:SA:S5084,Europe/Paris,0,DGL, +DGL:SP:46314,1,"Lamartine",45.740338,5.019572,0,0,DGL:SA:S34314,Europe/Paris,0,DGL, +DGL:SP:46315,1,"Lamartine",45.74018,5.019443,0,0,DGL:SA:S34314,Europe/Paris,0,DGL, +DGL:SP:46316,1,"Genas Rond Point de l'Epine(D)",45.734692,4.983106,0,0,DGL:SA:S34315,Europe/Paris,0,DGL, +DGL:SP:46317,1,"Genas Rond Point de l'Epine(D)",45.734762,4.983079,0,0,DGL:SA:S34315,Europe/Paris,0,DGL, +DGL:SP:46318,1,"Genas Place Jean Jaures",45.738525,5.017091,0,0,DGL:SA:S10495,Europe/Paris,0,DGL, +DGL:SP:46327,1,"Calmette - Muriers",45.717219,4.986574,0,0,DGL:SA:S34319,Europe/Paris,0,DGL, +DGL:SP:46328,1,"Calmette - Muriers",45.71687,4.986764,0,0,DGL:SA:S34319,Europe/Paris,0,DGL, +DGL:SP:46329,1,"Rond-Point d'Italie",45.713347,4.992753,0,0,DGL:SA:S34320,Europe/Paris,0,DGL, +DGL:SP:46330,1,"Rond-Point d'Italie",45.713353,4.99285,0,0,DGL:SA:S34320,Europe/Paris,0,DGL, +DGL:SP:46331,1,"Bornicat",45.722056,4.99994,0,0,DGL:SA:S34321,Europe/Paris,0,DGL, +DGL:SP:46333,1,"Carnot",45.723414,5.004207,0,0,DGL:SA:S34322,Europe/Paris,0,DGL, +DGL:SP:46335,1,"Olivier de Serres",45.722366,5.009326,0,0,DGL:SA:S34324,Europe/Paris,0,DGL, +DGL:SP:46336,1,"ZI du Mariage",45.766061,5.074969,0,0,DGL:SA:S34325,Europe/Paris,0,DGL, +DGL:SP:46337,1,"ZI du Mariage",45.766027,5.075129,0,0,DGL:SA:S34325,Europe/Paris,0,DGL, +DGL:SP:46338,1,"L'Odyssee",45.764036,5.063098,0,0,DGL:SA:S34326,Europe/Paris,0,DGL, +DGL:SP:46339,1,"L'Odyssee",45.764021,5.063146,0,0,DGL:SA:S34326,Europe/Paris,0,DGL, +DGL:SP:46340,1,"Vallon",45.759665,5.062205,0,0,DGL:SA:S34327,Europe/Paris,0,DGL, +DGL:SP:46341,1,"Vallon",45.759609,5.062055,0,0,DGL:SA:S34327,Europe/Paris,0,DGL, +DGL:SP:46342,1,"Place la Valla",45.757983,5.067459,0,0,DGL:SA:S34328,Europe/Paris,0,DGL, +DGL:SP:46343,1,"Place la Valla",45.758019,5.067487,0,0,DGL:SA:S34328,Europe/Paris,0,DGL, +DGL:SP:46344,1,"Pusignan Mairie",45.755226,5.067312,0,0,DGL:SA:S34329,Europe/Paris,0,DGL, +DGL:SP:46345,1,"Pusignan Mairie",45.75569,5.067407,0,0,DGL:SA:S34329,Europe/Paris,0,DGL, +DGL:SP:46346,1,"Moifond",45.749096,5.070778,0,0,DGL:SA:S34330,Europe/Paris,0,DGL, +DGL:SP:46347,1,"Moifond",45.749287,5.070857,0,0,DGL:SA:S34330,Europe/Paris,0,DGL, +DGL:SP:46348,1,"ZI Satolas Green",45.745131,5.064187,0,0,DGL:SA:S34331,Europe/Paris,0,DGL, +DGL:SP:46349,1,"ZI Satolas Green",45.745017,5.064367,0,0,DGL:SA:S34331,Europe/Paris,0,DGL, +DGL:SP:46350,1,"Gutenberg",45.7439,5.067739,0,0,DGL:SA:S34332,Europe/Paris,0,DGL, +DGL:SP:46351,1,"Gutenberg",45.743917,5.067345,0,0,DGL:SA:S34332,Europe/Paris,0,DGL, +DGL:SP:46352,1,"Les Marches du Rhone",45.688085,5.066492,0,0,DGL:SA:S34333,Europe/Paris,0,DGL, +DGL:SP:46353,1,"Les Marches du Rhone",45.688378,5.066953,0,0,DGL:SA:S34333,Europe/Paris,0,DGL, +DGL:SP:46354,1,"La Gaiete",45.760681,5.057711,0,0,DGL:SA:S34334,Europe/Paris,0,DGL, +DGL:SP:46355,1,"La Gaiete",45.760745,5.057505,0,0,DGL:SA:S34334,Europe/Paris,0,DGL, +DGL:SP:46356,1,"Hameau de Bianne",45.808085,5.088494,0,0,DGL:SA:S34335,Europe/Paris,0,DGL, +DGL:SP:46357,1,"La Petite Gare",45.801042,5.084747,0,0,DGL:SA:S34336,Europe/Paris,0,DGL, +DGL:SP:46358,1,"La Petite Gare",45.800717,5.084372,0,0,DGL:SA:S34336,Europe/Paris,0,DGL, +DGL:SP:46359,1,"Pommier",45.795873,5.084641,0,0,DGL:SA:S34337,Europe/Paris,0,DGL, +DGL:SP:46360,1,"Pommier",45.794753,5.084124,0,0,DGL:SA:S34337,Europe/Paris,0,DGL, +DGL:SP:46364,1,"Bornicat",45.722455,5.000057,0,0,DGL:SA:S34321,Europe/Paris,0,DGL, +DGL:SP:46369,1,"Ligonnet",45.595378,4.769712,0,0,DGL:SA:S34338,Europe/Paris,0,DGL, +DGL:SP:46370,1,"Ligonnet",45.595345,4.769784,0,0,DGL:SA:S34338,Europe/Paris,0,DGL, +DGL:SP:46371,1,"St-Pierre-de-Chandieu - Rajat",45.641362,5.034237,0,0,DGL:SA:S34339,Europe/Paris,0,DGL, +DGL:SP:46372,1,"St-Pierre-de-Chandieu - Rajat",45.641139,5.034539,0,0,DGL:SA:S34339,Europe/Paris,0,DGL, +DGL:SP:46373,1,"Compagnon",45.643896,5.030333,0,0,DGL:SA:S34340,Europe/Paris,0,DGL, +DGL:SP:46374,1,"Compagnon",45.643829,5.030469,0,0,DGL:SA:S34340,Europe/Paris,0,DGL, +DGL:SP:46375,1,"Frindeau",45.645964,5.023456,0,0,DGL:SA:S34341,Europe/Paris,0,DGL, +DGL:SP:46376,1,"Frindeau",45.645736,5.023799,0,0,DGL:SA:S34341,Europe/Paris,0,DGL, +DGL:SP:46377,1,"Amedee Ronin",45.647664,5.011576,0,0,DGL:SA:S34342,Europe/Paris,0,DGL, +DGL:SP:46378,1,"Amedee Ronin",45.647602,5.011755,0,0,DGL:SA:S34342,Europe/Paris,0,DGL, +DGL:SP:46379,1,"St-Pierre-de-Chandieu College",45.648188,5.004649,0,0,DGL:SA:S34343,Europe/Paris,0,DGL, +DGL:SP:46380,1,"St-Pierre-de-Chandieu College",45.648114,5.005001,0,0,DGL:SA:S34343,Europe/Paris,0,DGL, +DGL:SP:46381,1,"Jacquette",45.644642,5.004841,0,0,DGL:SA:S34344,Europe/Paris,0,DGL, +DGL:SP:46382,1,"Jacquette",45.644566,5.004884,0,0,DGL:SA:S34344,Europe/Paris,0,DGL, +DGL:SP:46383,1,"Cros Cassier",45.644344,5.00158,0,0,DGL:SA:S34345,Europe/Paris,0,DGL, +DGL:SP:46384,1,"Cros Cassier",45.644324,5.00177,0,0,DGL:SA:S34345,Europe/Paris,0,DGL, +DGL:SP:46385,1,"Toussieu Eglise",45.65493,4.989687,0,0,DGL:SA:S34346,Europe/Paris,0,DGL, +DGL:SP:46386,1,"Toussieu Eglise",45.654887,4.989603,0,0,DGL:SA:S34346,Europe/Paris,0,DGL, +DGL:SP:46387,1,"Toussieu Mairie",45.654416,4.985089,0,0,DGL:SA:S34347,Europe/Paris,0,DGL, +DGL:SP:46388,1,"Toussieu Mairie",45.654805,4.984899,0,0,DGL:SA:S34347,Europe/Paris,0,DGL, +DGL:SP:46389,1,"La Cote",45.6586,4.983822,0,0,DGL:SA:S34348,Europe/Paris,0,DGL, +DGL:SP:46390,1,"La Cote",45.658573,4.983787,0,0,DGL:SA:S34348,Europe/Paris,0,DGL, +DGL:SP:46391,1,"12 juillet 1944",45.660847,4.983494,0,0,DGL:SA:S34349,Europe/Paris,0,DGL, +DGL:SP:46392,1,"12 juillet 1944",45.660818,4.983466,0,0,DGL:SA:S34349,Europe/Paris,0,DGL, +DGL:SP:46395,1,"Toussieu Les Tilleuls",45.651909,4.991074,0,0,DGL:SA:S34350,Europe/Paris,0,DGL, +DGL:SP:46396,1,"Toussieu Les Tilleuls",45.651863,4.991019,0,0,DGL:SA:S34350,Europe/Paris,0,DGL, +DGL:SP:46397,1,"Colombier-Saugnieu Les Salines",45.715246,5.127557,0,0,DGL:SA:S34351,Europe/Paris,0,DGL, +DGL:SP:46398,1,"Place de Cholet",45.725168,5.106918,0,0,DGL:SA:S34352,Europe/Paris,0,DGL, +DGL:SP:46399,1,"Colombier-Saugnieu Mairie",45.71486,5.110359,0,0,DGL:SA:S34353,Europe/Paris,0,DGL, +DGL:SP:464,1,"Chazay",45.745697,4.78668,0,0,DGL:SA:S10218,Europe/Paris,2,DGL, +DGL:SP:46400,1,"Colombier-Saugnieu Mairie",45.714865,5.110404,0,0,DGL:SA:S34353,Europe/Paris,0,DGL, +DGL:SP:46401,1,"Grandalisse",45.710825,5.104406,0,0,DGL:SA:S34354,Europe/Paris,0,DGL, +DGL:SP:46402,1,"Grandalisse",45.710787,5.104516,0,0,DGL:SA:S34354,Europe/Paris,0,DGL, +DGL:SP:46403,1,"Marechal Juin",45.686224,5.06414,0,0,DGL:SA:S34355,Europe/Paris,0,DGL, +DGL:SP:46404,1,"Marechal Juin",45.686173,5.064175,0,0,DGL:SA:S34355,Europe/Paris,0,DGL, +DGL:SP:46405,1,"St-Laurent Zone Industrielle",45.684259,5.060188,0,0,DGL:SA:S34356,Europe/Paris,0,DGL, +DGL:SP:46406,1,"St-Laurent Zone Industrielle",45.68412,5.06001,0,0,DGL:SA:S34356,Europe/Paris,0,DGL, +DGL:SP:46407,1,"St-Laurent Centre",45.688066,5.045957,0,0,DGL:SA:S34357,Europe/Paris,0,DGL, +DGL:SP:46408,1,"St-Laurent Centre",45.687427,5.047844,0,0,DGL:SA:S34357,Europe/Paris,0,DGL, +DGL:SP:46409,1,"St-Laurent",45.689437,5.04148,0,0,DGL:SA:S34358,Europe/Paris,0,DGL, +DGL:SP:46410,1,"St-Laurent",45.689229,5.041957,0,0,DGL:SA:S34358,Europe/Paris,0,DGL, +DGL:SP:46411,1,"Engrives",45.691646,5.0342,0,0,DGL:SA:S34359,Europe/Paris,0,DGL, +DGL:SP:46412,1,"Engrives",45.691505,5.034411,0,0,DGL:SA:S34359,Europe/Paris,0,DGL, +DGL:SP:46413,1,"St-Bonnet Centre",45.692489,5.031439,0,0,DGL:SA:S34360,Europe/Paris,0,DGL, +DGL:SP:46414,1,"St-Bonnet Centre",45.692476,5.031188,0,0,DGL:SA:S34360,Europe/Paris,0,DGL, +DGL:SP:46415,1,"Rue Neuve",45.69481,5.023731,0,0,DGL:SA:S34361,Europe/Paris,0,DGL, +DGL:SP:46416,1,"Rue Neuve",45.694608,5.024244,0,0,DGL:SA:S34361,Europe/Paris,0,DGL, +DGL:SP:46417,1,"Parc du Chanay",45.697081,5.016866,0,0,DGL:SA:S34362,Europe/Paris,0,DGL, +DGL:SP:46418,1,"Parc du Chanay",45.696929,5.01711,0,0,DGL:SA:S34362,Europe/Paris,0,DGL, +DGL:SP:46419,1,"Manissieux Pierre Blanche",45.70569,4.991529,0,0,DGL:SA:S20079,Europe/Paris,0,DGL, +DGL:SP:46420,1,"Manissieux Pierre Blanche",45.705631,4.991298,0,0,DGL:SA:S20079,Europe/Paris,0,DGL, +DGL:SP:46421,1,"Mermoz - Pinel",45.730975,4.888,0,0,DGL:SA:S5082,Europe/Paris,0,DGL, +DGL:SP:46422,1,"Grange Blanche",45.742205,4.879966,0,0,DGL:SA:S5041,Europe/Paris,2,DGL, +DGL:SP:46423,1,"Mermoz - Pinel",45.731008,4.887807,0,0,DGL:SA:S5082,Europe/Paris,0,DGL, +DGL:SP:46424,1,"Route de Givors",45.64961,4.984888,0,0,DGL:SA:S34363,Europe/Paris,0,DGL, +DGL:SP:46425,1,"Route de Givors",45.649649,4.985185,0,0,DGL:SA:S34363,Europe/Paris,0,DGL, +DGL:SP:46426,1,"Idoux",45.591831,4.76294,0,0,DGL:SA:S34364,Europe/Paris,0,DGL, +DGL:SP:46427,1,"Idoux",45.591952,4.763071,0,0,DGL:SA:S34364,Europe/Paris,0,DGL, +DGL:SP:46428,1,"Robespierre-Carnot",45.586451,4.771264,0,0,DGL:SA:S34365,Europe/Paris,0,DGL, +DGL:SP:46429,1,"Robespierre-Carnot",45.586151,4.770901,0,0,DGL:SA:S34365,Europe/Paris,0,DGL, +DGL:SP:46430,1,"Boutras-Sabatier",45.609494,4.771759,0,0,DGL:SA:S34366,Europe/Paris,0,DGL, +DGL:SP:46431,1,"Boutras-Sabatier",45.609441,4.771927,0,0,DGL:SA:S34366,Europe/Paris,0,DGL, +DGL:SP:46432,1,"Liauthaud",45.589611,4.760828,0,0,DGL:SA:S31741,Europe/Paris,0,DGL, +DGL:SP:46433,1,"Liauthaud",45.589164,4.761453,0,0,DGL:SA:S31741,Europe/Paris,0,DGL, +DGL:SP:46434,1,"Buissiere - Viralamande(D)",45.803241,4.881364,0,0,DGL:SA:S20129,Europe/Paris,0,DGL, +DGL:SP:46435,1,"Centre Social Sauvegarde",45.78669,4.791967,0,0,DGL:SA:S10170,Europe/Paris,2,DGL, +DGL:SP:46436,1,"Centre Social Sauvegarde",45.786642,4.792081,0,0,DGL:SA:S10170,Europe/Paris,2,DGL, +DGL:SP:46437,1,"Union Nautique",45.797366,4.83684,0,0,DGL:SA:S11407,Europe/Paris,0,DGL, +DGL:SP:46438,1,"Echangeur Sauvegarde",45.786719,4.786938,0,0,DGL:SA:S33330,Europe/Paris,2,DGL, +DGL:SP:46439,1,"Echangeur Sauvegarde",45.786661,4.787527,0,0,DGL:SA:S33330,Europe/Paris,2,DGL, +DGL:SP:46440,1,"Techlid Le Paisy",45.804088,4.764675,0,0,DGL:SA:S33710,Europe/Paris,2,DGL, +DGL:SP:46441,1,"Genas Avenir Montgolfier",45.722162,4.983168,0,0,DGL:SA:S33453,Europe/Paris,0,DGL, +DGL:SP:46444,1,"Ecole Jules Ferry",45.716071,5.127217,0,0,DGL:SA:S34368,Europe/Paris,0,DGL, +DGL:SP:46445,1,"Place Joanny Favre",45.711872,5.111685,0,0,DGL:SA:S34369,Europe/Paris,0,DGL, +DGL:SP:46458,1,"Ratabizet",45.716725,4.977399,0,0,DGL:SA:S34377,Europe/Paris,0,DGL, +DGL:SP:46471,1,"Segliere - Jaures",45.74671,5.019113,0,0,DGL:SA:S33951,Europe/Paris,0,DGL, +DGL:SP:46495,1,"Centre Village",45.833765,4.877445,0,0,DGL:SA:S34400,Europe/Paris,0,DGL, +DGL:SP:46496,1,"Centre Village",45.833656,4.877369,0,0,DGL:SA:S34400,Europe/Paris,2,DGL, +DGL:SP:46497,1,"Sathonay Village Eglise",45.831473,4.878155,0,0,DGL:SA:S20111,Europe/Paris,0,DGL, +DGL:SP:46498,1,"Sathonay Village Eglise",45.831567,4.877979,0,0,DGL:SA:S20111,Europe/Paris,0,DGL, +DGL:SP:46500,1,"La Rama",45.578243,4.749338,0,0,DGL:SA:S34402,Europe/Paris,0,DGL, +DGL:SP:46513,1,"Chemin de Crepieux",45.801836,4.879114,0,0,DGL:SA:S34412,Europe/Paris,0,DGL, +DGL:SP:46514,1,"Chemin de Crepieux",45.801934,4.879145,0,0,DGL:SA:S34412,Europe/Paris,0,DGL, +DGL:SP:46515,1,"Vieux Crepieux",45.799723,4.877009,0,0,DGL:SA:S11462,Europe/Paris,0,DGL, +DGL:SP:46523,1,"Bifurcation du Rosay",45.792115,4.809011,0,0,DGL:SA:S10096,Europe/Paris,0,DGL, +DGL:SP:46524,1,"Bifurcation du Rosay",45.791939,4.808457,0,0,DGL:SA:S10096,Europe/Paris,2,DGL, +DGL:SP:46537,1,"Crepieux Les Brosses",45.809244,4.91273,0,0,DGL:SA:S10304,Europe/Paris,0,DGL, +DGL:SP:46551,1,"Mayer",45.609173,4.789531,0,0,DGL:SA:S31654,Europe/Paris,0,DGL, +DGL:SP:46552,1,"Mayer",45.609282,4.789666,0,0,DGL:SA:S31654,Europe/Paris,2,DGL, +DGL:SP:46555,1,"Garibaldi - Lafayette",45.763938,4.851558,0,0,DGL:SA:S10709,Europe/Paris,2,DGL, +DGL:SP:46569,1,"Hopital Croix-Rousse",45.781944,4.832727,0,0,DGL:SA:S10563,Europe/Paris,2,DGL, +DGL:SP:46571,1,"Champivost",45.811631,4.772989,0,0,DGL:SA:S34429,Europe/Paris,2,DGL, +DGL:SP:46574,1,"Parc Olympique Lyonnais",45.761918,4.98267,0,0,DGL:SA:S5912,Europe/Paris,0,DGL, +DGL:SP:46579,1,"Meyzieu les Panettes",45.762402,5.030136,0,0,DGL:SA:S34433,Europe/Paris,0,DGL, +DGL:SP:46580,1,"Parc Olympique Lyonnais",45.762639,4.982136,0,0,DGL:SA:S5912,Europe/Paris,0,DGL, +DGL:SP:46581,1,"Parc Olympique Lyonnais",45.761942,4.981723,0,0,DGL:SA:S5912,Europe/Paris,0,DGL, +DGL:SP:46595,1,"Manissieux A. Pare",45.709868,4.977733,0,0,DGL:SA:S34434,Europe/Paris,2,DGL, +DGL:SP:46599,1,"Giboulet Wassman",45.738292,5.016049,0,0,DGL:SA:S34435,Europe/Paris,0,DGL, +DGL:SP:466,1,"Chemin Bressan",45.88199,4.834302,0,0,DGL:SA:S10219,Europe/Paris,2,DGL, +DGL:SP:46600,1,"Antoine Roybet",45.735968,5.011922,0,0,DGL:SA:S34436,Europe/Paris,0,DGL, +DGL:SP:46601,1,"Antoine Roybet",45.735997,5.012015,0,0,DGL:SA:S34436,Europe/Paris,0,DGL, +DGL:SP:46602,1,"Reaux Roybet",45.730469,5.00819,0,0,DGL:SA:S34437,Europe/Paris,0,DGL, +DGL:SP:46603,1,"Reaux Roybet",45.730546,5.008285,0,0,DGL:SA:S34437,Europe/Paris,0,DGL, +DGL:SP:46612,1,"Meyzieu les Panettes",45.760769,5.028174,0,0,DGL:SA:S34433,Europe/Paris,0,DGL, +DGL:SP:46613,1,"Eurexpo",45.73239,4.94931,0,0,DGL:SA:S34431,Europe/Paris,0,DGL, +DGL:SP:46614,1,"Eurexpo",45.734337,4.947017,0,0,DGL:SA:S34431,Europe/Paris,0,DGL, +DGL:SP:46632,1,"Lycee Lumiere",45.733941,4.863831,0,0,DGL:SA:S5700,Europe/Paris,2,DGL, +DGL:SP:46639,1,"Fontaines Petit Moulin",45.834221,4.84262,0,0,DGL:SA:S20020,Europe/Paris,0,DGL, +DGL:SP:46640,1,"Andre Philip",45.772402,4.865299,0,0,DGL:SA:S34440,Europe/Paris,2,DGL, +DGL:SP:46642,1,"Charpennes Charles Hernu",45.770886,4.863715,0,0,DGL:SA:S5102,Europe/Paris,2,DGL, +DGL:SP:46644,1,"Charpennes Charles Hernu",45.771229,4.864326,0,0,DGL:SA:S5102,Europe/Paris,2,DGL, +DGL:SP:46645,1,"Charpennes Charles Hernu",45.77064,4.861754,0,0,DGL:SA:S5102,Europe/Paris,2,DGL, +DGL:SP:46647,1,"Cusset",45.765577,4.900586,0,0,DGL:SA:S5023,Europe/Paris,2,DGL, +DGL:SP:46648,1,"Cusset",45.7659,4.901042,0,0,DGL:SA:S5023,Europe/Paris,2,DGL, +DGL:SP:46659,1,"Parc Olympique Lyonnais",45.768077,4.98139,0,0,DGL:SA:S5912,Europe/Paris,0,DGL, +DGL:SP:46660,1,"Parc Olympique Lyonnais",45.768106,4.981432,0,0,DGL:SA:S5912,Europe/Paris,2,DGL, +DGL:SP:46661,1,"Balzac",45.770433,4.98252,0,0,DGL:SA:S34443,Europe/Paris,2,DGL, +DGL:SP:46662,1,"Balzac",45.770461,4.982462,0,0,DGL:SA:S34443,Europe/Paris,2,DGL, +DGL:SP:46675,1,"Plasson et Chaize",45.790627,4.818207,0,0,DGL:SA:S33360,Europe/Paris,2,DGL, +DGL:SP:46680,1,"Parc des Lumieres",45.682374,4.965588,0,0,DGL:SA:S34444,Europe/Paris,0,DGL, +DGL:SP:46681,1,"Parc des Meurieres",45.681414,4.958158,0,0,DGL:SA:S33213,Europe/Paris,0,DGL, +DGL:SP:46682,1,"Parc des Lumieres 3",45.680523,4.96975,0,0,DGL:SA:S33212,Europe/Paris,0,DGL, +DGL:SP:46683,1,"Parc des Meurieres",45.68112,4.957293,0,0,DGL:SA:S33213,Europe/Paris,0,DGL, +DGL:SP:46684,1,"La Palombiere",45.682521,4.954216,0,0,DGL:SA:S33214,Europe/Paris,0,DGL, +DGL:SP:46685,1,"La Palombiere",45.682654,4.9541,0,0,DGL:SA:S33214,Europe/Paris,0,DGL, +DGL:SP:46687,1,"Domer - Trois Pierres",45.747247,4.847852,0,0,DGL:SA:S34446,Europe/Paris,0,DGL, +DGL:SP:46688,1,"Place Stalingrad",45.749384,4.85354,0,0,DGL:SA:S11133,Europe/Paris,0,DGL, +DGL:SP:46689,1,"Tchecoslovaques Blandan",45.747671,4.858907,0,0,DGL:SA:S34447,Europe/Paris,0,DGL, +DGL:SP:46690,1,"Tchecoslovaques Blandan",45.74554,4.858541,0,0,DGL:SA:S34447,Europe/Paris,0,DGL, +DGL:SP:46691,1,"Part-Dieu Servient",45.759968,4.85084,0,0,DGL:SA:S5420,Europe/Paris,0,DGL, +DGL:SP:46692,1,"Begonniere",45.713904,4.784013,0,0,DGL:SA:S34448,Europe/Paris,0,DGL, +DGL:SP:46696,1,"Santy Grandvaux",45.774278,4.772811,0,0,DGL:SA:S32074,Europe/Paris,0,DGL, +DGL:SP:46697,1,"Fontaines Jules Ferry",45.833251,4.84589,0,0,DGL:SA:S34449,Europe/Paris,0,DGL, +DGL:SP:467,1,"Chemin de Grange Blanche",45.663705,4.901831,0,0,DGL:SA:S10220,Europe/Paris,2,DGL, +DGL:SP:46703,1,"St Pierre de Vaise",45.772282,4.808332,0,0,DGL:SA:S11329,Europe/Paris,2,DGL, +DGL:SP:46705,1,"Sergent Berthet",45.771886,4.805435,0,0,DGL:SA:S11270,Europe/Paris,2,DGL, +DGL:SP:46707,1,"Fontaines Jules Ferry",45.833017,4.846253,0,0,DGL:SA:S34449,Europe/Paris,0,DGL, +DGL:SP:46708,1,"ZA Everest Parc",45.724733,4.985177,0,0,DGL:SA:S34450,Europe/Paris,0,DGL, +DGL:SP:46709,1,"Avenir - Montgolfier",45.722096,4.982934,0,0,DGL:SA:S34318,Europe/Paris,0,DGL, +DGL:SP:46710,1,"Valmy - Place Ferber",45.773659,4.805378,0,0,DGL:SA:S34451,Europe/Paris,2,DGL, +DGL:SP:46711,1,"Rillieux Nations",45.820454,4.907063,0,0,DGL:SA:S34452,Europe/Paris,2,DGL, +DGL:SP:46717,1,"Rillieux Nations",45.820789,4.907001,0,0,DGL:SA:S34452,Europe/Paris,2,DGL, +DGL:SP:46718,1,"Les Amandiers",45.717139,4.753748,0,0,DGL:SA:S34453,Europe/Paris,0,DGL, +DGL:SP:46721,1,"Les Amandiers",45.717029,4.75386,0,0,DGL:SA:S34453,Europe/Paris,0,DGL, +DGL:SP:46724,1,"Solaize Campus",45.644613,4.82671,0,0,DGL:SA:S34454,Europe/Paris,0,DGL, +DGL:SP:46725,1,"Solaize Campus",45.644667,4.826517,0,0,DGL:SA:S34454,Europe/Paris,0,DGL, +DGL:SP:46728,1,"Parenty",45.873663,4.845453,0,0,DGL:SA:S33882,Europe/Paris,0,DGL, +DGL:SP:46735,1,"Saxe - Lafayette",45.76365,4.844485,0,0,DGL:SA:S11267,Europe/Paris,0,DGL, +DGL:SP:46738,1,"Verlaine - 4 aout",45.764723,4.879766,0,0,DGL:SA:S31390,Europe/Paris,0,DGL, +DGL:SP:46739,1,"Verlaine",45.762921,4.878175,0,0,DGL:SA:S11450,Europe/Paris,0,DGL, +DGL:SP:46762,1,"Craponne Val d'Yzeron",45.737805,4.715695,0,0,DGL:SA:S5767,Europe/Paris,0,DGL, +DGL:SP:46769,1,"Part-Dieu Renaudel",45.758074,4.858373,0,0,DGL:SA:S11062,Europe/Paris,0,DGL, +DGL:SP:46770,1,"Clos de la Jeunesse",45.789246,4.846437,0,0,DGL:SA:S10265,Europe/Paris,2,DGL, +DGL:SP:46771,1,"Leo Lagrange",45.764434,4.877716,0,0,DGL:SA:S33592,Europe/Paris,0,DGL, +DGL:SP:46774,1,"Alsace",45.76372,4.869518,0,0,DGL:SA:S10024,Europe/Paris,0,DGL, +DGL:SP:46782,1,"Lissieu - Montluzin",45.87099,4.749399,0,0,DGL:SA:S10995,Europe/Paris,0,DGL, +DGL:SP:46783,1,"Lissieu - Montluzin",45.870974,4.749198,0,0,DGL:SA:S10995,Europe/Paris,0,DGL, +DGL:SP:46792,1,"Sathonay Manutention",45.827565,4.872533,0,0,DGL:SA:S11260,Europe/Paris,0,DGL, +DGL:SP:46793,1,"Sathonay Castellane",45.824545,4.868393,0,0,DGL:SA:S34463,Europe/Paris,0,DGL, +DGL:SP:46794,1,"Viviani",45.726784,4.863213,0,0,DGL:SA:S11471,Europe/Paris,0,DGL, +DGL:SP:468,1,"Chemin de Grange Blanche",45.663707,4.901754,0,0,DGL:SA:S10220,Europe/Paris,2,DGL, +DGL:SP:46801,1,"Casanova",45.595527,4.76787,0,0,DGL:SA:S31673,Europe/Paris,0,DGL, +DGL:SP:46802,1,"Casanova",45.595405,4.767842,0,0,DGL:SA:S31673,Europe/Paris,0,DGL, +DGL:SP:46803,1,"Givors Yves Farge",45.594082,4.764658,0,0,DGL:SA:S31672,Europe/Paris,0,DGL, +DGL:SP:46804,1,"Givors Yves Farge",45.593668,4.764503,0,0,DGL:SA:S31672,Europe/Paris,0,DGL, +DGL:SP:46807,1,"Le Joli Mai",45.738779,4.718611,0,0,DGL:SA:S30190,Europe/Paris,0,DGL, +DGL:SP:46808,1,"Grange Rouge",45.731899,4.873918,0,0,DGL:SA:S10529,Europe/Paris,0,DGL, +DGL:SP:46813,1,"Professeur Beauvisage CISL",45.731341,4.866659,0,0,DGL:SA:S5702,Europe/Paris,0,DGL, +DGL:SP:46818,1,"Collonges St Martin",45.817447,4.844089,0,0,DGL:SA:S10278,Europe/Paris,0,DGL, +DGL:SP:46819,1,"Manillon",45.821508,4.845256,0,0,DGL:SA:S34468,Europe/Paris,0,DGL, +DGL:SP:46832,1,"Manillon",45.821705,4.845183,0,0,DGL:SA:S34468,Europe/Paris,0,DGL, +DGL:SP:46833,1,"Collonges Gare",45.829042,4.846037,0,0,DGL:SA:S32115,Europe/Paris,0,DGL, +DGL:SP:46837,1,"St Didier Tennis",45.803763,4.790039,0,0,DGL:SA:S34469,Europe/Paris,0,DGL, +DGL:SP:46840,1,"St Didier Tennis",45.803935,4.790058,0,0,DGL:SA:S34469,Europe/Paris,0,DGL, +DGL:SP:46844,1,"Chaponost - Eglise",45.710211,4.74323,0,0,DGL:SA:S34470,Europe/Paris,0,DGL, +DGL:SP:46845,1,"Chaponost - Eglise",45.710153,4.74342,0,0,DGL:SA:S34470,Europe/Paris,0,DGL, +DGL:SP:46853,1,"Diderot - Rolland",45.697486,4.927639,0,0,DGL:SA:S34473,Europe/Paris,0,DGL, +DGL:SP:46854,1,"Diderot - Rolland",45.697437,4.927748,0,0,DGL:SA:S34473,Europe/Paris,0,DGL, +DGL:SP:46855,1,"St Priest Pompidou",45.695123,4.930888,0,0,DGL:SA:S34474,Europe/Paris,0,DGL, +DGL:SP:46856,1,"St Priest Pompidou",45.695227,4.931036,0,0,DGL:SA:S34474,Europe/Paris,0,DGL, +DGL:SP:46870,1,"Carreau Brossolette",45.769619,4.993864,0,0,DGL:SA:S34475,Europe/Paris,0,DGL, +DGL:SP:46871,1,"Carreau Brossolette",45.769373,4.993981,0,0,DGL:SA:S34475,Europe/Paris,0,DGL, +DGL:SP:46872,1,"Meyzieu Gare",45.771392,4.998705,0,0,DGL:SA:S5567,Europe/Paris,0,DGL, +DGL:SP:46873,1,"Meyzieu Gare",45.77145,4.998631,0,0,DGL:SA:S5567,Europe/Paris,0,DGL, +DGL:SP:46874,1,"Jaures Barrault",45.768126,5.009019,0,0,DGL:SA:S34477,Europe/Paris,0,DGL, +DGL:SP:46875,1,"Jaures Barrault",45.768308,5.009168,0,0,DGL:SA:S34477,Europe/Paris,0,DGL, +DGL:SP:46876,1,"Meyzieu Centre Aquatique",45.769599,5.012066,0,0,DGL:SA:S34478,Europe/Paris,0,DGL, +DGL:SP:46877,1,"Meyzieu Centre Aquatique",45.769739,5.012112,0,0,DGL:SA:S34478,Europe/Paris,0,DGL, +DGL:SP:46878,1,"Meyzieu Bascule",45.766137,4.996112,0,0,DGL:SA:S32265,Europe/Paris,0,DGL, +DGL:SP:46879,1,"College Evariste Gallois",45.771438,4.993841,0,0,DGL:SA:S32041,Europe/Paris,0,DGL, +DGL:SP:46880,1,"College Evariste Gallois",45.77115,4.993466,0,0,DGL:SA:S32041,Europe/Paris,0,DGL, +DGL:SP:46881,1,"Meyzieu Ch.De Gaulle",45.766486,5.004711,0,0,DGL:SA:S30061,Europe/Paris,0,DGL, +DGL:SP:46907,1,"Georges Brassens",45.768786,4.976352,0,0,DGL:SA:S20160,Europe/Paris,0,DGL, +DGL:SP:46908,1,"Georges Brassens",45.769101,4.975385,0,0,DGL:SA:S20160,Europe/Paris,0,DGL, +DGL:SP:46916,1,"Champagne (ch.St Didier)",45.799826,4.786596,0,0,DGL:SA:S10182,Europe/Paris,0,DGL, +DGL:SP:46928,1,"Lycee Jean Perrin",45.794198,4.815219,0,0,DGL:SA:S10878,Europe/Paris,0,DGL, +DGL:SP:46932,1,"Savaron - Deleuvre",45.782307,4.825266,0,0,DGL:SA:S30183,Europe/Paris,0,DGL, +DGL:SP:46933,1,"Savaron - Deleuvre",45.782945,4.825273,0,0,DGL:SA:S30183,Europe/Paris,0,DGL, +DGL:SP:46935,1,"Limonest Le Puy d'Or",45.813253,4.776898,0,0,DGL:SA:S33290,Europe/Paris,0,DGL, +DGL:SP:46936,1,"Limonest Le Puy d'Or",45.81311,4.776751,0,0,DGL:SA:S33290,Europe/Paris,0,DGL, +DGL:SP:46939,1,"Rue de France - 4 aout",45.763627,4.884576,0,0,DGL:SA:S33621,Europe/Paris,0,DGL, +DGL:SP:46940,1,"Rue de France - 4 aout",45.764038,4.884661,0,0,DGL:SA:S33621,Europe/Paris,0,DGL, +DGL:SP:46947,1,"Les 4 Vents",45.705912,5.107012,0,0,DGL:SA:S34491,Europe/Paris,0,DGL, +DGL:SP:46948,1,"Les 4 Vents",45.705964,5.107157,0,0,DGL:SA:S34491,Europe/Paris,0,DGL, +DGL:SP:46957,1,"Maisons Neuves",45.755717,4.876507,0,0,DGL:SA:S10902,Europe/Paris,0,DGL, +DGL:SP:46958,1,"Florian",45.756687,4.879518,0,0,DGL:SA:S10442,Europe/Paris,2,DGL, +DGL:SP:46960,1,"Vaulx-en-Velin La Soie",45.761659,4.919451,0,0,ORX:SA:S5564,Europe/Paris,0,DGL, +DGL:SP:46961,1,"Vaulx-en-Velin La Soie",45.761486,4.920159,0,0,ORX:SA:S5564,Europe/Paris,0,DGL, +DGL:SP:46962,1,"Vaulx-en-Velin La Soie",45.761429,4.920252,0,0,ORX:SA:S5564,Europe/Paris,0,DGL, +DGL:SP:46970,1,"Bernaix",45.758269,4.897233,0,0,DGL:SA:S10091,Europe/Paris,0,DGL, +DGL:SP:46971,1,"Espace Francois Perraud",45.707743,4.748351,0,0,DGL:SA:S34472,Europe/Paris,0,DGL, +DGL:SP:46972,1,"Espace Francois Perraud",45.707698,4.748349,0,0,DGL:SA:S34472,Europe/Paris,0,DGL, +DGL:SP:46973,1,"Reydellet - Les Arcs",45.704871,4.752303,0,0,DGL:SA:S34471,Europe/Paris,0,DGL, +DGL:SP:46974,1,"Reydellet - Les Arcs",45.704835,4.752228,0,0,DGL:SA:S34471,Europe/Paris,0,DGL, +DGL:SP:46975,1,"Claudius Collonge",45.747716,4.821804,0,0,DGL:SA:S10256,Europe/Paris,0,DGL, +DGL:SP:46977,1,"Buyer - Gai Vallon",45.763513,4.800246,0,0,DGL:SA:S30117,Europe/Paris,0,DGL, +DGL:SP:46978,1,"Buyer - Gai Vallon",45.763076,4.801312,0,0,DGL:SA:S30117,Europe/Paris,0,DGL, +DGL:SP:46986,1,"Verlaine",45.76315,4.87827,0,0,DGL:SA:S11450,Europe/Paris,0,DGL, +DGL:SP:46990,1,"Les Provences",45.735407,4.792685,0,0,DGL:SA:S10837,Europe/Paris,0,DGL, +DGL:SP:46991,1,"Beaunant",45.72873,4.77778,0,0,DGL:SA:S11849,Europe/Paris,0,DGL, +DGL:SP:47000,1,"Institut d'art contemporain",45.763764,4.872899,0,0,DGL:SA:S31921,Europe/Paris,0,DGL, +DGL:SP:47001,1,"Institut d'art contemporain",45.763795,4.872902,0,0,DGL:SA:S31921,Europe/Paris,0,DGL, +DGL:SP:47002,1,"Halles Paul Bocuse",45.763647,4.850749,0,0,DGL:SA:S31920,Europe/Paris,0,DGL, +DGL:SP:47003,1,"Halles Paul Bocuse",45.763681,4.850989,0,0,DGL:SA:S31920,Europe/Paris,0,DGL, +DGL:SP:47004,1,"Thiers - Lafayette",45.763671,4.863463,0,0,DGL:SA:S5302,Europe/Paris,0,DGL, +DGL:SP:47005,1,"Blanqui-Ctre Memoires et Ste",45.761055,4.884265,0,0,DGL:SA:S31922,Europe/Paris,0,DGL, +DGL:SP:47006,1,"Alsace",45.763782,4.870198,0,0,DGL:SA:S10024,Europe/Paris,0,DGL, +DGL:SP:47007,1,"Grandclement",45.7597,4.889348,0,0,DGL:SA:S10519,Europe/Paris,0,DGL, +DGL:SP:47008,1,"Bon Coin",45.76053,4.905247,0,0,DGL:SA:S10107,Europe/Paris,0,DGL, +DGL:SP:47015,1,"Cote de Vaux",45.814694,4.812752,0,0,DGL:SA:S33171,Europe/Paris,0,DGL, +DGL:SP:47016,1,"L'Indiennerie",45.810415,4.813686,0,0,DGL:SA:S11887,Europe/Paris,0,DGL, +DGL:SP:473,1,"Chemin des Moulins",45.696767,4.811721,0,0,DGL:SA:S10223,Europe/Paris,2,DGL, +DGL:SP:474,1,"Chemin des Moulins",45.697027,4.812568,0,0,DGL:SA:S10223,Europe/Paris,2,DGL, +DGL:SP:475,1,"Chemin des Pivolles",45.753138,4.934174,0,0,DGL:SA:S10224,Europe/Paris,0,DGL, +DGL:SP:476,1,"Chemin des Pivolles",45.753209,4.934229,0,0,DGL:SA:S10224,Europe/Paris,0,DGL, +DGL:SP:478,1,"Chemin du Chene",45.824117,4.794438,0,0,DGL:SA:S10226,Europe/Paris,0,DGL, +DGL:SP:479,1,"Chemin du Chene",45.823927,4.794455,0,0,DGL:SA:S10226,Europe/Paris,0,DGL, +DGL:SP:48,1,"Quai Tilsitt",45.758086,4.828265,0,0,DGL:SA:S10023,Europe/Paris,0,DGL, +DGL:SP:482,1,"Caluire Chemin Petit",45.803352,4.860587,0,0,DGL:SA:S10228,Europe/Paris,2,DGL, +DGL:SP:483,1,"Caluire Chemin Petit",45.803353,4.860124,0,0,DGL:SA:S10228,Europe/Paris,2,DGL, +DGL:SP:484,1,"Caluire Chemin Petit",45.804013,4.860386,0,0,DGL:SA:S10228,Europe/Paris,2,DGL, +DGL:SP:490,1,"Valpre",45.778507,4.787074,0,0,DGL:SA:S10231,Europe/Paris,0,DGL, +DGL:SP:491,1,"Valpre",45.778407,4.787134,0,0,DGL:SA:S10231,Europe/Paris,0,DGL, +DGL:SP:493,1,"Chorel",45.774692,4.86497,0,0,DGL:SA:S10232,Europe/Paris,0,DGL, +DGL:SP:497,1,"Cimetiere Communautaire",45.723653,4.917631,0,0,DGL:SA:S10234,Europe/Paris,2,DGL, +DGL:SP:498,1,"Cimetiere Communautaire",45.723713,4.917762,0,0,DGL:SA:S10234,Europe/Paris,2,DGL, +DGL:SP:5,1,"4 Chemins - La Salette",45.749253,4.796121,0,0,DGL:SA:S10002,Europe/Paris,2,DGL, +DGL:SP:50,1,"Alsace",45.763258,4.868676,0,0,DGL:SA:S10024,Europe/Paris,2,DGL, +DGL:SP:500,1,"Cimetiere Croix-Rousse",45.781253,4.820618,0,0,DGL:SA:S10235,Europe/Paris,2,DGL, +DGL:SP:501,1,"Cimetiere d'Oullins",45.709431,4.810954,0,0,DGL:SA:S10236,Europe/Paris,2,DGL, +DGL:SP:502,1,"Cimetiere d'Oullins",45.709376,4.810977,0,0,DGL:SA:S10236,Europe/Paris,2,DGL, +DGL:SP:504,1,"Cimetiere de Corbas",45.675485,4.899593,0,0,DGL:SA:S10237,Europe/Paris,2,DGL, +DGL:SP:506,1,"Cimetiere de Cusset",45.762325,4.911664,0,0,DGL:SA:S10238,Europe/Paris,2,DGL, +DGL:SP:508,1,"Cimetiere de Ste Foy",45.733243,4.796806,0,0,DGL:SA:S10239,Europe/Paris,2,DGL, +DGL:SP:509,1,"Cimetiere de Ste Foy",45.733017,4.796475,0,0,DGL:SA:S10239,Europe/Paris,2,DGL, +DGL:SP:51,1,"Alsace",45.764091,4.868869,0,0,DGL:SA:S10024,Europe/Paris,2,DGL, +DGL:SP:515,1,"Cimetiere de Loyasse",45.762672,4.8134,0,0,DGL:SA:S10242,Europe/Paris,0,DGL, +DGL:SP:516,1,"Cimetiere de Loyasse",45.762483,4.813829,0,0,DGL:SA:S10242,Europe/Paris,2,DGL, +DGL:SP:519,1,"Cite Ampere",45.708456,4.812298,0,0,DGL:SA:S10244,Europe/Paris,2,DGL, +DGL:SP:52,1,"Alsace",45.763724,4.870369,0,0,DGL:SA:S10024,Europe/Paris,2,DGL, +DGL:SP:520,1,"Cite Ampere",45.708519,4.812314,0,0,DGL:SA:S10244,Europe/Paris,2,DGL, +DGL:SP:521,1,"Cite Berliet",45.710861,4.902358,0,0,DGL:SA:S10245,Europe/Paris,2,DGL, +DGL:SP:522,1,"Cite Berliet",45.711531,4.901374,0,0,DGL:SA:S10245,Europe/Paris,2,DGL, +DGL:SP:524,1,"Cite Berliet centre",45.705297,4.901212,0,0,DGL:SA:S10247,Europe/Paris,0,DGL, +DGL:SP:525,1,"Cite Berliet centre",45.705499,4.901054,0,0,DGL:SA:S10247,Europe/Paris,0,DGL, +DGL:SP:526,1,"Cite de l' Enfance - IDEF",45.725939,4.907443,0,0,DGL:SA:S10248,Europe/Paris,2,DGL, +DGL:SP:527,1,"Cite de l' Enfance - IDEF",45.726262,4.907098,0,0,DGL:SA:S10248,Europe/Paris,2,DGL, +DGL:SP:528,1,"Cite Edouard Herriot",45.802574,4.83256,0,0,DGL:SA:S10249,Europe/Paris,2,DGL, +DGL:SP:529,1,"Hopital St Jean de Dieu",45.724262,4.853966,0,0,DGL:SA:S10250,Europe/Paris,2,DGL, +DGL:SP:53,1,"Alsace",45.7638,4.869382,0,0,DGL:SA:S10024,Europe/Paris,0,DGL, +DGL:SP:530,1,"Hopital St Jean de Dieu",45.723916,4.85413,0,0,DGL:SA:S10250,Europe/Paris,2,DGL, +DGL:SP:531,1,"Cite Ribaud",45.740544,4.950472,0,0,DGL:SA:S10251,Europe/Paris,2,DGL, +DGL:SP:532,1,"Cite Ribaud",45.740646,4.950374,0,0,DGL:SA:S10251,Europe/Paris,2,DGL, +DGL:SP:533,1,"Cite St Jean",45.776584,4.902993,0,0,DGL:SA:S10252,Europe/Paris,2,DGL, +DGL:SP:534,1,"Cite St Jean",45.77619,4.902524,0,0,DGL:SA:S10252,Europe/Paris,0,DGL, +DGL:SP:539,1,"Claude Farrere",45.687715,4.953116,0,0,DGL:SA:S10255,Europe/Paris,0,DGL, +DGL:SP:54,1,"Ampere",45.817099,4.838356,0,0,DGL:SA:S10025,Europe/Paris,0,DGL, +DGL:SP:540,1,"Claude Farrere",45.688071,4.951386,0,0,DGL:SA:S10255,Europe/Paris,0,DGL, +DGL:SP:541,1,"Claudius Collonge",45.748433,4.820294,0,0,DGL:SA:S10256,Europe/Paris,0,DGL, +DGL:SP:545,1,"Clinique Charcot",45.750207,4.797771,0,0,DGL:SA:S10258,Europe/Paris,2,DGL, +DGL:SP:546,1,"Clinique du Tonkin",45.776771,4.864963,0,0,DGL:SA:S10259,Europe/Paris,2,DGL, +DGL:SP:547,1,"Clinique du Tonkin",45.776809,4.8649,0,0,DGL:SA:S10259,Europe/Paris,2,DGL, +DGL:SP:55,1,"Ampere",45.817075,4.838612,0,0,DGL:SA:S10025,Europe/Paris,0,DGL, +DGL:SP:550,1,"Clinique Sauvegarde",45.788887,4.788617,0,0,DGL:SA:S10261,Europe/Paris,0,DGL, +DGL:SP:551,1,"Clinique Sauvegarde",45.788601,4.788527,0,0,DGL:SA:S10261,Europe/Paris,2,DGL, +DGL:SP:552,1,"Apollinaire - Bourbonnais",45.772694,4.795651,0,0,DGL:SA:S10262,Europe/Paris,2,DGL, +DGL:SP:553,1,"Clinique Trarieux",45.744564,4.891626,0,0,DGL:SA:S10263,Europe/Paris,2,DGL, +DGL:SP:554,1,"Clinique Trarieux",45.744598,4.891692,0,0,DGL:SA:S10263,Europe/Paris,2,DGL, +DGL:SP:555,1,"Clos Chaurand",45.693563,4.798232,0,0,DGL:SA:S10264,Europe/Paris,2,DGL, +DGL:SP:556,1,"Clos Chaurand",45.693583,4.798117,0,0,DGL:SA:S10264,Europe/Paris,0,DGL, +DGL:SP:557,1,"Clos de la Jeunesse",45.78931,4.846921,0,0,DGL:SA:S10265,Europe/Paris,2,DGL, +DGL:SP:559,1,"Clos des Cedres",45.7603,4.787356,0,0,DGL:SA:S10266,Europe/Paris,0,DGL, +DGL:SP:56,1,"Ampere - Lavoisier",45.731801,4.970225,0,0,DGL:SA:S10026,Europe/Paris,0,DGL, +DGL:SP:560,1,"Clos des Cedres",45.760218,4.787442,0,0,DGL:SA:S10266,Europe/Paris,0,DGL, +DGL:SP:561,1,"Clos des Chassagnes",45.724647,4.80831,0,0,DGL:SA:S10267,Europe/Paris,2,DGL, +DGL:SP:562,1,"Clos des Chassagnes",45.724807,4.807996,0,0,DGL:SA:S10267,Europe/Paris,2,DGL, +DGL:SP:563,1,"Clos Jouve",45.772946,4.821015,0,0,DGL:SA:S10268,Europe/Paris,2,DGL, +DGL:SP:564,1,"Clos Jouve",45.77347,4.821405,0,0,DGL:SA:S10268,Europe/Paris,2,DGL, +DGL:SP:566,1,"Clos Rival",45.685589,4.79446,0,0,DGL:SA:S10269,Europe/Paris,2,DGL, +DGL:SP:567,1,"Clos Rival",45.685181,4.794198,0,0,DGL:SA:S10269,Europe/Paris,2,DGL, +DGL:SP:57,1,"Ampere - Lavoisier",45.7318,4.970675,0,0,DGL:SA:S10026,Europe/Paris,0,DGL, +DGL:SP:572,1,"Coblod - Rosenberg",45.700482,4.892124,0,0,DGL:SA:S10272,Europe/Paris,2,DGL, +DGL:SP:573,1,"Coblod - Rosenberg",45.700536,4.892088,0,0,DGL:SA:S10272,Europe/Paris,2,DGL, +DGL:SP:574,1,"Colbert",45.772622,4.83439,0,0,DGL:SA:S10273,Europe/Paris,2,DGL, +DGL:SP:575,1,"Colbert",45.772413,4.834458,0,0,DGL:SA:S10273,Europe/Paris,2,DGL, +DGL:SP:576,1,"Coli",45.76916,4.945851,0,0,DGL:SA:S10274,Europe/Paris,0,DGL, +DGL:SP:577,1,"Coli",45.769338,4.946709,0,0,DGL:SA:S10274,Europe/Paris,2,DGL, +DGL:SP:578,1,"Colin",45.776558,4.874447,0,0,DGL:SA:S10275,Europe/Paris,2,DGL, +DGL:SP:579,1,"Colin",45.776658,4.8744,0,0,DGL:SA:S10275,Europe/Paris,2,DGL, +DGL:SP:580,1,"Colin",45.776701,4.874067,0,0,DGL:SA:S10275,Europe/Paris,2,DGL, +DGL:SP:581,1,"Colin",45.77695,4.874207,0,0,DGL:SA:S10275,Europe/Paris,2,DGL, +DGL:SP:583,1,"Le Grand Roule",45.730144,4.807618,0,0,DGL:SA:S10277,Europe/Paris,2,DGL, +DGL:SP:584,1,"Le Grand Roule",45.730003,4.807471,0,0,DGL:SA:S10277,Europe/Paris,2,DGL, +DGL:SP:585,1,"Collonges St Martin",45.817686,4.843931,0,0,DGL:SA:S10278,Europe/Paris,0,DGL, +DGL:SP:586,1,"Condorcet",45.778839,4.867103,0,0,DGL:SA:S5300,Europe/Paris,2,DGL, +DGL:SP:587,1,"Condorcet",45.779049,4.866174,0,0,DGL:SA:S5300,Europe/Paris,2,DGL, +DGL:SP:588,1,"Contrebandiers",45.787136,4.804879,0,0,DGL:SA:S10280,Europe/Paris,0,DGL, +DGL:SP:589,1,"Contrebandiers",45.78674,4.804874,0,0,DGL:SA:S10280,Europe/Paris,0,DGL, +DGL:SP:592,1,"Corbas Mairie",45.670123,4.898329,0,0,DGL:SA:S10282,Europe/Paris,2,DGL, +DGL:SP:593,1,"Corbas Mairie",45.671212,4.899497,0,0,DGL:SA:S10282,Europe/Paris,2,DGL, +DGL:SP:596,1,"Corbas Rue du Midi",45.659695,4.899693,0,0,DGL:SA:S10284,Europe/Paris,0,DGL, +DGL:SP:599,1,"Cordeliers",45.7628,4.838111,0,0,DGL:SA:S5021,Europe/Paris,2,DGL, +DGL:SP:6,1,"4 Chemins - La Salette",45.749374,4.795946,0,0,DGL:SA:S10002,Europe/Paris,2,DGL, +DGL:SP:603,1,"Cordeliers",45.764769,4.838175,0,0,DGL:SA:S5021,Europe/Paris,0,DGL, +DGL:SP:611,1,"Cote Berthaud",45.671633,4.828926,0,0,DGL:SA:S10289,Europe/Paris,2,DGL, +DGL:SP:612,1,"Cote Berthaud",45.672129,4.829308,0,0,DGL:SA:S10289,Europe/Paris,2,DGL, +DGL:SP:619,1,"Couzon",45.845792,4.832424,0,0,DGL:SA:S10293,Europe/Paris,2,DGL, +DGL:SP:620,1,"Couzon",45.845686,4.832342,0,0,DGL:SA:S10293,Europe/Paris,2,DGL, +DGL:SP:621,1,"Gare et stade de Couzon",45.849376,4.832381,0,0,DGL:SA:S10294,Europe/Paris,2,DGL, +DGL:SP:622,1,"Gare et stade de Couzon",45.84886,4.832074,0,0,DGL:SA:S10294,Europe/Paris,2,DGL, +DGL:SP:623,1,"Craponne Centre",45.747388,4.722807,0,0,DGL:SA:S10295,Europe/Paris,2,DGL, +DGL:SP:624,1,"Craponne Centre",45.74733,4.723846,0,0,DGL:SA:S10295,Europe/Paris,2,DGL, +DGL:SP:625,1,"Craponne Dumont",45.747364,4.716314,0,0,DGL:SA:S10296,Europe/Paris,2,DGL, +DGL:SP:626,1,"Craponne Dumont",45.747311,4.715861,0,0,DGL:SA:S10296,Europe/Paris,2,DGL, +DGL:SP:627,1,"Craponne Mairie",45.742581,4.723267,0,0,DGL:SA:S10297,Europe/Paris,2,DGL, +DGL:SP:628,1,"Craponne Mairie",45.742364,4.723734,0,0,DGL:SA:S10297,Europe/Paris,2,DGL, +DGL:SP:631,1,"Craponne Martin",45.74736,4.729221,0,0,DGL:SA:S10300,Europe/Paris,2,DGL, +DGL:SP:632,1,"Craponne Martin",45.747323,4.728821,0,0,DGL:SA:S10300,Europe/Paris,2,DGL, +DGL:SP:635,1,"Crecy",45.800847,4.803126,0,0,DGL:SA:S10302,Europe/Paris,0,DGL, +DGL:SP:636,1,"Crecy",45.800568,4.80314,0,0,DGL:SA:S10302,Europe/Paris,0,DGL, +DGL:SP:639,1,"Crepieux Les Brosses",45.808023,4.913381,0,0,DGL:SA:S10304,Europe/Paris,0,DGL, +DGL:SP:640,1,"Crepieux Les Brosses",45.808096,4.912535,0,0,DGL:SA:S10304,Europe/Paris,0,DGL, +DGL:SP:641,1,"Croix des Rameaux",45.815878,4.796631,0,0,DGL:SA:S10305,Europe/Paris,2,DGL, +DGL:SP:642,1,"Croix des Rameaux",45.81598,4.796468,0,0,DGL:SA:S10305,Europe/Paris,2,DGL, +DGL:SP:643,1,"Croix-Rousse",45.774597,4.831821,0,0,DGL:SA:S5223,Europe/Paris,2,DGL, +DGL:SP:644,1,"Croix-Rousse",45.774464,4.831827,0,0,DGL:SA:S5223,Europe/Paris,2,DGL, +DGL:SP:645,1,"Croizat - Coblod",45.702523,4.887478,0,0,DGL:SA:S10307,Europe/Paris,2,DGL, +DGL:SP:647,1,"Cuers",45.798355,4.767974,0,0,DGL:SA:S10308,Europe/Paris,2,DGL, +DGL:SP:648,1,"Cuers",45.798082,4.767692,0,0,DGL:SA:S10308,Europe/Paris,2,DGL, +DGL:SP:65,1,"Andre Brun",45.767741,4.966929,0,0,DGL:SA:S10031,Europe/Paris,2,DGL, +DGL:SP:655,1,"Curie - Jules Guesde",45.709127,4.885202,0,0,DGL:SA:S10312,Europe/Paris,2,DGL, +DGL:SP:656,1,"Curie - Jules Guesde",45.70936,4.88529,0,0,DGL:SA:S10312,Europe/Paris,2,DGL, +DGL:SP:657,1,"Curis la Planche",45.871676,4.821604,0,0,DGL:SA:S10313,Europe/Paris,2,DGL, +DGL:SP:658,1,"Curis la Planche",45.872252,4.823241,0,0,DGL:SA:S10313,Europe/Paris,2,DGL, +DGL:SP:659,1,"Curis Lavoir",45.870378,4.820489,0,0,DGL:SA:S10314,Europe/Paris,2,DGL, +DGL:SP:66,1,"Andre Brun",45.767111,4.966565,0,0,DGL:SA:S10031,Europe/Paris,0,DGL, +DGL:SP:660,1,"Curis Lavoir",45.870163,4.820415,0,0,DGL:SA:S10314,Europe/Paris,2,DGL, +DGL:SP:663,1,"Cuzin - Stalingrad",45.774473,4.914999,0,0,DGL:SA:S10316,Europe/Paris,2,DGL, +DGL:SP:664,1,"Cuzin - Stalingrad",45.77444,4.914843,0,0,DGL:SA:S10316,Europe/Paris,2,DGL, +DGL:SP:666,1,"Cyprian - Genas",45.752207,4.901843,0,0,DGL:SA:S10317,Europe/Paris,0,DGL, +DGL:SP:667,1,"Cyprian - Leon Blum",45.760272,4.901486,0,0,DGL:SA:S10318,Europe/Paris,0,DGL, +DGL:SP:668,1,"Cyprian - Leon Blum",45.760193,4.899039,0,0,DGL:SA:S10318,Europe/Paris,0,DGL, +DGL:SP:669,1,"Cyrano",45.754761,4.879781,0,0,DGL:SA:S10319,Europe/Paris,2,DGL, +DGL:SP:670,1,"Cyrano",45.754887,4.879388,0,0,DGL:SA:S10319,Europe/Paris,2,DGL, +DGL:SP:671,1,"D'Arsonval - Jacquard",45.727278,4.971165,0,0,DGL:SA:S10320,Europe/Paris,0,DGL, +DGL:SP:672,1,"D'Arsonval - Jacquard",45.728086,4.971268,0,0,DGL:SA:S10320,Europe/Paris,0,DGL, +DGL:SP:673,1,"Dardilly Le Bas",45.807775,4.752328,0,0,DGL:SA:S10321,Europe/Paris,2,DGL, +DGL:SP:674,1,"Dardilly Le Bas",45.806915,4.753358,0,0,DGL:SA:S10321,Europe/Paris,2,DGL, +DGL:SP:675,1,"Dardilly Le Haut",45.81766,4.750536,0,0,DGL:SA:S10322,Europe/Paris,2,DGL, +DGL:SP:676,1,"Dardilly Le Haut",45.817426,4.750525,0,0,DGL:SA:S10322,Europe/Paris,2,DGL, +DGL:SP:681,1,"Dauphine",45.662951,4.952774,0,0,DGL:SA:S10325,Europe/Paris,2,DGL, +DGL:SP:687,1,"De Gaulle - Pont SNCF",45.755127,4.77113,0,0,DGL:SA:S10328,Europe/Paris,2,DGL, +DGL:SP:688,1,"De Gaulle - Pont SNCF",45.754703,4.770751,0,0,DGL:SA:S10328,Europe/Paris,2,DGL, +DGL:SP:693,1,"Debrousse",45.748404,4.812655,0,0,DGL:SA:S10330,Europe/Paris,2,DGL, +DGL:SP:694,1,"Debrousse",45.748663,4.813143,0,0,DGL:SA:S10330,Europe/Paris,2,DGL, +DGL:SP:695,1,"Decines Bascule",45.771381,4.961019,0,0,DGL:SA:S10331,Europe/Paris,0,DGL, +DGL:SP:696,1,"Decines Bascule",45.771462,4.961049,0,0,DGL:SA:S10331,Europe/Paris,0,DGL, +DGL:SP:698,1,"Decines Champ Fleuri",45.773954,4.972231,0,0,DGL:SA:S10332,Europe/Paris,0,DGL, +DGL:SP:699,1,"Decines Eglise",45.763328,4.965098,0,0,DGL:SA:S10333,Europe/Paris,2,DGL, +DGL:SP:70,1,"Antonins",45.778136,4.879061,0,0,DGL:SA:S10034,Europe/Paris,2,DGL, +DGL:SP:700,1,"Decines Eglise",45.763683,4.963803,0,0,DGL:SA:S10333,Europe/Paris,2,DGL, +DGL:SP:701,1,"Decines Gare",45.769922,4.95219,0,0,DGL:SA:S10334,Europe/Paris,2,DGL, +DGL:SP:702,1,"Decines Gare",45.769984,4.952219,0,0,DGL:SA:S10334,Europe/Paris,2,DGL, +DGL:SP:707,1,"Decines Wilson",45.768703,4.942665,0,0,DGL:SA:S10337,Europe/Paris,2,DGL, +DGL:SP:708,1,"Decines Wilson",45.768693,4.941957,0,0,DGL:SA:S10337,Europe/Paris,0,DGL, +DGL:SP:709,1,"Decomberousse",45.762761,4.915029,0,0,DGL:SA:S10338,Europe/Paris,2,DGL, +DGL:SP:71,1,"Antonins",45.778139,4.878932,0,0,DGL:SA:S10034,Europe/Paris,2,DGL, +DGL:SP:710,1,"Decomberousse",45.762739,4.915208,0,0,DGL:SA:S10338,Europe/Paris,2,DGL, +DGL:SP:714,1,"Demi-Lune Clemenceau",45.763778,4.777312,0,0,DGL:SA:S10340,Europe/Paris,2,DGL, +DGL:SP:716,1,"Demi-Lune Mairie",45.760615,4.777481,0,0,DGL:SA:S10341,Europe/Paris,2,DGL, +DGL:SP:717,1,"Demi-Lune Mairie",45.760437,4.777383,0,0,DGL:SA:S10341,Europe/Paris,2,DGL, +DGL:SP:72,1,"Aqueducs de Beaunant",45.724375,4.779639,0,0,DGL:SA:S10035,Europe/Paris,0,DGL, +DGL:SP:720,1,"Demi-Lune Vauboin",45.764025,4.782468,0,0,DGL:SA:S10342,Europe/Paris,2,DGL, +DGL:SP:721,1,"Demi-Lune Vauboin",45.764107,4.782021,0,0,DGL:SA:S10342,Europe/Paris,2,DGL, +DGL:SP:725,1,"Demi-Lune Vauboin",45.764487,4.781935,0,0,DGL:SA:S10342,Europe/Paris,0,DGL, +DGL:SP:726,1,"Demi-Lune Vauboin",45.764448,4.782062,0,0,DGL:SA:S10342,Europe/Paris,0,DGL, +DGL:SP:73,1,"Aqueducs de Beaunant",45.724341,4.779959,0,0,DGL:SA:S10035,Europe/Paris,0,DGL, +DGL:SP:749,1,"Descartes",45.776353,4.872327,0,0,DGL:SA:S10357,Europe/Paris,2,DGL, +DGL:SP:75,1,"Arago",45.758023,4.884818,0,0,DGL:SA:S10037,Europe/Paris,2,DGL, +DGL:SP:750,1,"Descartes",45.776182,4.871535,0,0,DGL:SA:S10357,Europe/Paris,2,DGL, +DGL:SP:751,1,"Desgrand",45.785588,4.904854,0,0,DGL:SA:S10358,Europe/Paris,2,DGL, +DGL:SP:752,1,"Desgrand",45.785341,4.906194,0,0,DGL:SA:S10358,Europe/Paris,2,DGL, +DGL:SP:753,1,"Diderot",45.713262,4.809045,0,0,DGL:SA:S10359,Europe/Paris,2,DGL, +DGL:SP:754,1,"Diderot - Les Ormes",45.697663,4.929425,0,0,DGL:SA:S10360,Europe/Paris,0,DGL, +DGL:SP:755,1,"Diderot - Les Ormes",45.697735,4.92903,0,0,DGL:SA:S10360,Europe/Paris,0,DGL, +DGL:SP:759,1,"Dorothee Petit",45.669037,4.81651,0,0,DGL:SA:S10363,Europe/Paris,2,DGL, +DGL:SP:76,1,"Arago",45.757947,4.884171,0,0,DGL:SA:S10037,Europe/Paris,2,DGL, +DGL:SP:760,1,"Dorothee Petit",45.668796,4.816807,0,0,DGL:SA:S10363,Europe/Paris,0,DGL, +DGL:SP:761,1,"Docteur Horand",45.770851,4.802116,0,0,DGL:SA:S10364,Europe/Paris,2,DGL, +DGL:SP:762,1,"Docteur Rebatel",45.749844,4.873549,0,0,DGL:SA:S10365,Europe/Paris,2,DGL, +DGL:SP:763,1,"Duchere Balmont",45.789086,4.799767,0,0,DGL:SA:S10366,Europe/Paris,2,DGL, +DGL:SP:764,1,"Duchere Balmont",45.78946,4.799052,0,0,DGL:SA:S10366,Europe/Paris,2,DGL, +DGL:SP:77,1,"Assomption",45.733259,4.812861,0,0,DGL:SA:S10038,Europe/Paris,2,DGL, +DGL:SP:770,1,"Duchere Capucines",45.789412,4.794289,0,0,DGL:SA:S10369,Europe/Paris,2,DGL, +DGL:SP:771,1,"Duchere Capucines",45.789443,4.794216,0,0,DGL:SA:S10369,Europe/Paris,2,DGL, +DGL:SP:772,1,"Duchere Chateau",45.781094,4.793068,0,0,DGL:SA:S10370,Europe/Paris,2,DGL, +DGL:SP:773,1,"Duchere Chateau",45.780976,4.794349,0,0,DGL:SA:S10370,Europe/Paris,2,DGL, +DGL:SP:778,1,"Duchere Piscine",45.787535,4.79984,0,0,DGL:SA:S10373,Europe/Paris,2,DGL, +DGL:SP:779,1,"Duchere Piscine",45.787155,4.799515,0,0,DGL:SA:S10373,Europe/Paris,2,DGL, +DGL:SP:78,1,"Assomption",45.733611,4.812825,0,0,DGL:SA:S10038,Europe/Paris,2,DGL, +DGL:SP:788,1,"Duclos",45.697671,4.887498,0,0,DGL:SA:S10376,Europe/Paris,2,DGL, +DGL:SP:789,1,"Duclos",45.697385,4.887767,0,0,DGL:SA:S10376,Europe/Paris,2,DGL, +DGL:SP:795,1,"Dumas",45.776379,4.887495,0,0,DGL:SA:S10378,Europe/Paris,0,DGL, +DGL:SP:796,1,"Dumas",45.776447,4.88728,0,0,DGL:SA:S10378,Europe/Paris,0,DGL, +DGL:SP:8,1,"8 Mai - Parc du Roy",45.819871,4.865311,0,0,DGL:SA:S10003,Europe/Paris,2,DGL, +DGL:SP:80,1,"Ateliers SNCF",45.719686,4.818161,0,0,DGL:SA:S10040,Europe/Paris,2,DGL, +DGL:SP:801,1,"Dumas - Salengro",45.753506,4.928791,0,0,DGL:SA:S10380,Europe/Paris,0,DGL, +DGL:SP:802,1,"Dumas - Salengro",45.753577,4.928447,0,0,DGL:SA:S10380,Europe/Paris,0,DGL, +DGL:SP:805,1,"Duquesne - Foch",45.772497,4.843633,0,0,DGL:SA:S10382,Europe/Paris,2,DGL, +DGL:SP:806,1,"Duquesne - Foch",45.772157,4.843116,0,0,DGL:SA:S10382,Europe/Paris,2,DGL, +DGL:SP:807,1,"Duquesne - Foch",45.772825,4.843056,0,0,DGL:SA:S10382,Europe/Paris,2,DGL, +DGL:SP:808,1,"Duquesne - Foch",45.772518,4.842682,0,0,DGL:SA:S10382,Europe/Paris,2,DGL, +DGL:SP:81,1,"Ateliers SNCF",45.720301,4.818035,0,0,DGL:SA:S10040,Europe/Paris,2,DGL, +DGL:SP:810,1,"Duroc",45.769091,4.817709,0,0,DGL:SA:S10383,Europe/Paris,2,DGL, +DGL:SP:813,1,"Emile Vial",45.745138,4.929387,0,0,DGL:SA:S10385,Europe/Paris,2,DGL, +DGL:SP:814,1,"Emile Vial",45.745311,4.929305,0,0,DGL:SA:S10385,Europe/Paris,2,DGL, +DGL:SP:815,1,"Echangeur du Perollier",45.787873,4.782718,0,0,DGL:SA:S10386,Europe/Paris,2,DGL, +DGL:SP:816,1,"Echangeur du Perollier",45.787412,4.782787,0,0,DGL:SA:S10386,Europe/Paris,2,DGL, +DGL:SP:817,1,"Cite Inter Transbordeur",45.78443,4.860246,0,0,DGL:SA:S5660,Europe/Paris,2,DGL, +DGL:SP:818,1,"Cite Inter Transbordeur",45.78439,4.859987,0,0,DGL:SA:S5660,Europe/Paris,2,DGL, +DGL:SP:823,1,"Dardilly Les Gorges",45.807451,4.764026,0,0,DGL:SA:S10390,Europe/Paris,2,DGL, +DGL:SP:824,1,"Dardilly Les Gorges",45.807504,4.763642,0,0,DGL:SA:S10390,Europe/Paris,0,DGL, +DGL:SP:825,1,"Ecole de Sante",45.728104,4.924844,0,0,DGL:SA:S10391,Europe/Paris,0,DGL, +DGL:SP:828,1,"Ecole Veterinaire",45.790121,4.708515,0,0,DGL:SA:S10393,Europe/Paris,2,DGL, +DGL:SP:829,1,"Ecole Veterinaire",45.790082,4.708667,0,0,DGL:SA:S10393,Europe/Paris,2,DGL, +DGL:SP:832,1,"La Mulatiere Mairie",45.729092,4.810411,0,0,DGL:SA:S10395,Europe/Paris,2,DGL, +DGL:SP:833,1,"La Mulatiere Mairie",45.729025,4.810177,0,0,DGL:SA:S10395,Europe/Paris,2,DGL, +DGL:SP:834,1,"Ecully Centre",45.774486,4.7791,0,0,DGL:SA:S10396,Europe/Paris,2,DGL, +DGL:SP:835,1,"Ecully Centre",45.774522,4.779114,0,0,DGL:SA:S10396,Europe/Paris,2,DGL, +DGL:SP:836,1,"Ecully Centre",45.774733,4.778082,0,0,DGL:SA:S10396,Europe/Paris,2,DGL, +DGL:SP:839,1,"Ecully Le Trouillat",45.776586,4.774009,0,0,DGL:SA:S10399,Europe/Paris,2,DGL, +DGL:SP:84,1,"Aubepins",45.75072,4.892452,0,0,DGL:SA:S10042,Europe/Paris,2,DGL, +DGL:SP:840,1,"Ecully Le Trouillat",45.776001,4.774395,0,0,DGL:SA:S10399,Europe/Paris,2,DGL, +DGL:SP:842,1,"Edgar Quinet",45.765814,4.844602,0,0,DGL:SA:S10401,Europe/Paris,2,DGL, +DGL:SP:843,1,"Edgar Quinet",45.765655,4.844491,0,0,DGL:SA:S10401,Europe/Paris,2,DGL, +DGL:SP:844,1,"Egalite - Farrere",45.688292,4.949611,0,0,DGL:SA:S10402,Europe/Paris,0,DGL, +DGL:SP:845,1,"Egalite - Farrere",45.688323,4.949831,0,0,DGL:SA:S10402,Europe/Paris,0,DGL, +DGL:SP:846,1,"Eglantines",45.740744,4.962759,0,0,DGL:SA:S10403,Europe/Paris,0,DGL, +DGL:SP:847,1,"Eglantines",45.740367,4.962703,0,0,DGL:SA:S10403,Europe/Paris,0,DGL, +DGL:SP:848,1,"Eglise Demi-Lune",45.764643,4.78553,0,0,DGL:SA:S5882,Europe/Paris,2,DGL, +DGL:SP:849,1,"Eglise Demi-Lune",45.764726,4.786267,0,0,DGL:SA:S5882,Europe/Paris,2,DGL, +DGL:SP:85,1,"Aubepins",45.751426,4.890311,0,0,DGL:SA:S10042,Europe/Paris,2,DGL, +DGL:SP:852,1,"Emile Chanel",45.777833,4.816116,0,0,DGL:SA:S10406,Europe/Paris,2,DGL, +DGL:SP:853,1,"Entree de Decines",45.767442,4.934554,0,0,DGL:SA:S10407,Europe/Paris,2,DGL, +DGL:SP:854,1,"Entree de Decines",45.767702,4.935377,0,0,DGL:SA:S10407,Europe/Paris,2,DGL, +DGL:SP:856,1,"Entree de Decines",45.768289,4.936433,0,0,DGL:SA:S10407,Europe/Paris,2,DGL, +DGL:SP:867,1,"Etats-Unis Leriche",45.727473,4.869253,0,0,DGL:SA:S10411,Europe/Paris,2,DGL, +DGL:SP:872,1,"Etats-Unis Viviani",45.724962,4.870834,0,0,DGL:SA:S5703,Europe/Paris,2,DGL, +DGL:SP:874,1,"Etats-Unis Viviani",45.724881,4.871254,0,0,DGL:SA:S5703,Europe/Paris,2,DGL, +DGL:SP:877,1,"Etoile d'Alai",45.753397,4.769137,0,0,DGL:SA:S10415,Europe/Paris,2,DGL, +DGL:SP:88,1,"Audibert Lavirotte",45.735316,4.856747,0,0,DGL:SA:S10044,Europe/Paris,0,DGL, +DGL:SP:884,1,"Eurexpo Entree Principale",45.731201,4.949309,0,0,DGL:SA:S5621,Europe/Paris,2,DGL, +DGL:SP:885,1,"Evellier",45.749038,4.694581,0,0,DGL:SA:S10420,Europe/Paris,2,DGL, +DGL:SP:886,1,"Evellier",45.748991,4.694657,0,0,DGL:SA:S10420,Europe/Paris,2,DGL, +DGL:SP:887,1,"Falsan",45.80449,4.834629,0,0,DGL:SA:S10421,Europe/Paris,0,DGL, +DGL:SP:89,1,"Audibert Lavirotte",45.734781,4.857314,0,0,DGL:SA:S10044,Europe/Paris,0,DGL, +DGL:SP:896,1,"Fee des Eaux",45.650083,4.802155,0,0,DGL:SA:S10427,Europe/Paris,0,DGL, +DGL:SP:897,1,"College Plan du Loup",45.735291,4.788376,0,0,DGL:SA:S5881,Europe/Paris,2,DGL, +DGL:SP:898,1,"College Plan du Loup",45.735219,4.789619,0,0,DGL:SA:S5881,Europe/Paris,2,DGL, +DGL:SP:899,1,"Felix Faure - Vivier Merle",45.754038,4.859173,0,0,DGL:SA:S10429,Europe/Paris,2,DGL, +DGL:SP:9,1,"8 Mai - Parc du Roy",45.819485,4.86528,0,0,DGL:SA:S10003,Europe/Paris,0,DGL, +DGL:SP:90,1,"Austerlitz",45.775472,4.834944,0,0,DGL:SA:S10045,Europe/Paris,2,DGL, +DGL:SP:900,1,"Felix Faure - Vivier Merle",45.753952,4.859414,0,0,DGL:SA:S10429,Europe/Paris,2,DGL, +DGL:SP:901,1,"Felix Faure - Vivier Merle",45.753601,4.858986,0,0,DGL:SA:S10429,Europe/Paris,2,DGL, +DGL:SP:902,1,"Felix Faure - Vivier Merle",45.753634,4.858756,0,0,DGL:SA:S10429,Europe/Paris,2,DGL, +DGL:SP:903,1,"Felix Jacquier",45.772971,4.848619,0,0,DGL:SA:S10430,Europe/Paris,2,DGL, +DGL:SP:904,1,"Felix Jacquier",45.77288,4.84702,0,0,DGL:SA:S10430,Europe/Paris,2,DGL, +DGL:SP:907,1,"Feuillat - Albert Thomas",45.744626,4.874607,0,0,DGL:SA:S10432,Europe/Paris,2,DGL, +DGL:SP:908,1,"Feuillat - Albert Thomas",45.744201,4.875088,0,0,DGL:SA:S10432,Europe/Paris,2,DGL, +DGL:SP:91,1,"Austerlitz",45.775297,4.835104,0,0,DGL:SA:S10045,Europe/Paris,2,DGL, +DGL:SP:910,1,"Feuillat - Freres Lumiere",45.743306,4.874469,0,0,DGL:SA:S10433,Europe/Paris,2,DGL, +DGL:SP:911,1,"Feuillat - Freres Lumiere",45.743416,4.873972,0,0,DGL:SA:S10433,Europe/Paris,2,DGL, +DGL:SP:912,1,"Feuillat - Lacassagne",45.750142,4.875105,0,0,DGL:SA:S10434,Europe/Paris,0,DGL, +DGL:SP:913,1,"Feuillat - Lacassagne",45.749534,4.876119,0,0,DGL:SA:S10434,Europe/Paris,0,DGL, +DGL:SP:914,1,"Feyzin Chateau de l'Isle",45.672226,4.850343,0,0,DGL:SA:S10435,Europe/Paris,0,DGL, +DGL:SP:918,1,"Feyzin Les Razes",45.666206,4.849285,0,0,DGL:SA:S10437,Europe/Paris,0,DGL, +DGL:SP:919,1,"Filature",45.777769,4.884537,0,0,DGL:SA:S10438,Europe/Paris,0,DGL, +DGL:SP:92,1,"Avenue de l'Industrie",45.680428,4.922309,0,0,DGL:SA:S10046,Europe/Paris,2,DGL, +DGL:SP:920,1,"Filature",45.777715,4.884534,0,0,DGL:SA:S10438,Europe/Paris,0,DGL, +DGL:SP:925,1,"Fleurieu",45.863038,4.840539,0,0,DGL:SA:S10441,Europe/Paris,2,DGL, +DGL:SP:926,1,"Fleurieu",45.862895,4.840494,0,0,DGL:SA:S10441,Europe/Paris,2,DGL, +DGL:SP:927,1,"Florian",45.757185,4.881281,0,0,DGL:SA:S10442,Europe/Paris,2,DGL, +DGL:SP:928,1,"Florian",45.756814,4.879785,0,0,DGL:SA:S10442,Europe/Paris,2,DGL, +DGL:SP:93,1,"Avenue de l'Industrie",45.679942,4.921503,0,0,DGL:SA:S10046,Europe/Paris,2,DGL, +DGL:SP:930,1,"Foch - Roosevelt Metro",45.769125,4.843891,0,0,DGL:SA:S5182,Europe/Paris,2,DGL, +DGL:SP:931,1,"Foch - Roosevelt Metro",45.768277,4.843981,0,0,DGL:SA:S5182,Europe/Paris,2,DGL, +DGL:SP:932,1,"Fonderie",45.782585,4.918827,0,0,DGL:SA:S10444,Europe/Paris,2,DGL, +DGL:SP:933,1,"Fonderie",45.782587,4.918763,0,0,DGL:SA:S10444,Europe/Paris,2,DGL, +DGL:SP:934,1,"Fontaines Centre",45.835018,4.846975,0,0,DGL:SA:S10445,Europe/Paris,0,DGL, +DGL:SP:94,1,"Avenue de la Paix",45.785586,4.748587,0,0,DGL:SA:S10047,Europe/Paris,2,DGL, +DGL:SP:942,1,"Fontrobert",45.673076,4.949377,0,0,DGL:SA:S10450,Europe/Paris,0,DGL, +DGL:SP:943,1,"Fontrobert",45.674959,4.949312,0,0,DGL:SA:S10450,Europe/Paris,2,DGL, +DGL:SP:944,1,"Fort de Bron",45.731179,4.917559,0,0,DGL:SA:S10451,Europe/Paris,2,DGL, +DGL:SP:948,1,"Fort de Montessuy",45.792192,4.848854,0,0,DGL:SA:S10452,Europe/Paris,2,DGL, +DGL:SP:949,1,"Fort de Montessuy",45.791882,4.848634,0,0,DGL:SA:S10452,Europe/Paris,2,DGL, +DGL:SP:95,1,"Avenue de la Paix",45.784889,4.748814,0,0,DGL:SA:S10047,Europe/Paris,2,DGL, +DGL:SP:954,1,"Foucaud - Picasso",45.774027,4.921474,0,0,DGL:SA:S10455,Europe/Paris,0,DGL, +DGL:SP:955,1,"Foucaud - Picasso",45.774604,4.921025,0,0,DGL:SA:S10455,Europe/Paris,2,DGL, +DGL:SP:96,1,"Avignon",45.691868,4.857097,0,0,DGL:SA:S10048,Europe/Paris,2,DGL, +DGL:SP:962,1,"Francheville Bel Air",45.747401,4.756782,0,0,DGL:SA:S5764,Europe/Paris,2,DGL, +DGL:SP:963,1,"Francheville Bel Air",45.747348,4.755833,0,0,DGL:SA:S5764,Europe/Paris,2,DGL, +DGL:SP:97,1,"Avignon",45.691529,4.857749,0,0,DGL:SA:S10048,Europe/Paris,2,DGL, +DGL:SP:976,1,"Francis Poulenc",45.746961,4.961333,0,0,DGL:SA:S10468,Europe/Paris,0,DGL, +DGL:SP:977,1,"Francis Poulenc",45.747136,4.962319,0,0,DGL:SA:S10468,Europe/Paris,0,DGL, +DGL:SP:98,1,"Ayasse - Yves Farge",45.735468,4.827357,0,0,DGL:SA:S10049,Europe/Paris,2,DGL, +DGL:SP:980,1,"Frere Benoit",45.763769,4.795021,0,0,DGL:SA:S10470,Europe/Paris,0,DGL, +DGL:SP:981,1,"Frere Benoit",45.763572,4.795797,0,0,DGL:SA:S10470,Europe/Paris,2,DGL, +DGL:SP:984,1,"Fromentin",45.872487,4.763848,0,0,DGL:SA:S10472,Europe/Paris,2,DGL, +DGL:SP:985,1,"Fromentin",45.872516,4.763759,0,0,DGL:SA:S10472,Europe/Paris,2,DGL, +DGL:SP:986,1,"Fromont",45.776056,4.937302,0,0,DGL:SA:S10473,Europe/Paris,0,DGL, +DGL:SP:987,1,"Gabriel Rosset",45.729697,4.841555,0,0,DGL:SA:S10474,Europe/Paris,2,DGL, +DGL:SP:988,1,"Gabriel Rosset",45.729802,4.841701,0,0,DGL:SA:S10474,Europe/Paris,2,DGL, +DGL:SP:989,1,"St Genis Gadagne",45.700686,4.795609,0,0,DGL:SA:S10475,Europe/Paris,2,DGL, +DGL:SP:99,1,"Ayasse - Yves Farge",45.736014,4.827921,0,0,DGL:SA:S10049,Europe/Paris,2,DGL, +DGL:SP:990,1,"St Genis Gadagne",45.701738,4.79608,0,0,DGL:SA:S10475,Europe/Paris,2,DGL, +DGL:SP:999,1,"Garanjou",45.705208,4.816289,0,0,DGL:SA:S10482,Europe/Paris,2,DGL, +O38:SP:1000,1,"LES ETAGES",44.937078,6.25637,0,0,O38:SA:CTP1000,Europe/Paris,,O38, +O38:SP:10000,1,"PONT DE MAUBEC",45.583169,5.26893,0,0,O38:SA:CTP10000,Europe/Paris,,O38, +O38:SP:10005,1,"LE MEYNIER",45.575346,5.269152,0,0,O38:SA:CTP10005,Europe/Paris,,O38, +O38:SP:10007,1,"LE MEYNIER",45.575307,5.268768,0,0,O38:SA:CTP10005,Europe/Paris,,O38, +O38:SP:10009,1,"LE BROUCHOUD",45.571329,5.26722,0,0,O38:SA:CTP10009,Europe/Paris,,O38, +O38:SP:1001,1,"LES ETAGES",44.937051,6.256319,0,0,O38:SA:CTP1000,Europe/Paris,,O38, +O38:SP:10011,1,"LE BROUCHOUD",45.571134,5.267276,0,0,O38:SA:CTP10009,Europe/Paris,,O38, +O38:SP:10013,1,"GRAND SOLEIL",45.594126,5.236144,0,0,O38:SA:CTP10013,Europe/Paris,,O38, +O38:SP:10015,1,"GRAND SOLEIL",45.593876,5.236718,0,0,O38:SA:CTP10013,Europe/Paris,,O38, +O38:SP:100162,1,"ROUTE DE ST MARTIN",45.139305,5.827303,0,0,O38:SA:CTP2733,Europe/Paris,,O38, +O38:SP:100163,1,"ROUTE DE ST MARTIN",45.139283,5.827159,0,0,O38:SA:CTP2733,Europe/Paris,,O38, +O38:SP:100164,1,"LES BRETS VC",45.014019,5.657144,0,0,O38:SA:CTP100164,Europe/Paris,,O38, +O38:SP:100165,1,"LES BRETS VC",45.014079,5.657052,0,0,O38:SA:CTP100164,Europe/Paris,,O38, +O38:SP:100166,1,"LES JAILS LES BENAIS",45.003502,5.65313,0,0,O38:SA:CTP100166,Europe/Paris,,O38, +O38:SP:100167,1,"LES JAILS LES BENAIS",45.003453,5.653049,0,0,O38:SA:CTP100166,Europe/Paris,,O38, +O38:SP:10017,1,"LA LADRIERE",45.589008,5.247468,0,0,O38:SA:CTP9991,Europe/Paris,,O38, +O38:SP:10019,1,"JOLIOT CURIE",45.589242,5.2603,0,0,O38:SA:CTP10019,Europe/Paris,,O38, +O38:SP:1002,1,"LA BERARDE",44.932614,6.292564,0,0,O38:SA:CTP1002,Europe/Paris,,O38, +O38:SP:10021,1,"JOLIOT CURIE",45.58908,5.26068,0,0,O38:SA:CTP10019,Europe/Paris,,O38, +O38:SP:10029,1,"MEDIATHEQUE",45.589824,5.275822,0,0,O38:SA:CTP10029,Europe/Paris,,O38, +O38:SP:1003,1,"LA BERARDE",44.932595,6.29258,0,0,O38:SA:CTP1002,Europe/Paris,,O38, +O38:SP:10033,1,"LYCEE J-C. AUBRY",45.590714,5.295418,0,0,O38:SA:CTP10033,Europe/Paris,,O38, +O38:SP:10035,1,"LYCEE J-C. AUBRY",45.590762,5.295494,0,0,O38:SA:CTP10033,Europe/Paris,,O38, +O38:SP:10042,1,"PALAIS ROYAL",45.588247,5.291119,0,0,O38:SA:CTP10042,Europe/Paris,,O38, +O38:SP:10044,1,"PALAIS ROYAL",45.588335,5.291173,0,0,O38:SA:CTP10042,Europe/Paris,,O38, +O38:SP:10045,1,"LE BREZET",45.577465,5.35239,0,0,O38:SA:CTP10045,Europe/Paris,,O38, +O38:SP:10046,1,"LE BREZET",45.577421,5.352308,0,0,O38:SA:CTP10045,Europe/Paris,,O38, +O38:SP:10047,1,"COIRANNE",45.570946,5.342577,0,0,O38:SA:CTP10047,Europe/Paris,,O38, +O38:SP:10048,1,"COIRANNE",45.570877,5.343304,0,0,O38:SA:CTP10047,Europe/Paris,,O38, +O38:SP:1005,1,"COLLEGE LES MARISTES",45.038536,5.052879,0,0,O38:SA:CTP1005,Europe/Paris,,O38, +O38:SP:10054,1,"PHARMACIE",45.588352,5.309312,0,0,O38:SA:CTP10054,Europe/Paris,,O38, +O38:SP:10056,1,"PHARMACIE",45.588272,5.309685,0,0,O38:SA:CTP10054,Europe/Paris,,O38, +O38:SP:1006,1,"LYCEE SAINT-MAURICE",45.045025,5.044216,0,0,O38:SA:CTP1006,Europe/Paris,,O38, +O38:SP:10062,1,"COLLEGE PRE BENIT",45.590943,5.289378,0,0,O38:SA:CTP10062,Europe/Paris,,O38, +O38:SP:1008,1,"LYCEE TRIBOULET",45.045338,5.057786,0,0,O38:SA:CTP1008,Europe/Paris,,O38, +O38:SP:10085,1,"LA PLACE",45.588246,5.316495,0,0,O38:SA:CTP10085,Europe/Paris,,O38, +O38:SP:10087,1,"LA PLACE",45.588319,5.316468,0,0,O38:SA:CTP10085,Europe/Paris,,O38, +O38:SP:1009,1,"LYCEE TRIBOULET",45.045738,5.056157,0,0,O38:SA:CTP1008,Europe/Paris,,O38, +O38:SP:10093,1,"RUFFIEU",45.57315,5.301504,0,0,O38:SA:CTP10093,Europe/Paris,,O38, +O38:SP:10095,1,"RUFFIEU",45.572996,5.301702,0,0,O38:SA:CTP10093,Europe/Paris,,O38, +O38:SP:10097,1,"PONT DE L'AGNY",45.564199,5.303357,0,0,O38:SA:CTP10097,Europe/Paris,,O38, +O38:SP:10099,1,"PONT DE L'AGNY",45.564338,5.303467,0,0,O38:SA:CTP10097,Europe/Paris,,O38, +O38:SP:1010,1,"COLLEGE NOTRE DAME DES CHAMPS",45.04479,5.048937,0,0,O38:SA:CTP1010,Europe/Paris,,O38, +O38:SP:10100,1,"LYCEE PRIVE ST MARC",45.563589,5.306695,0,0,O38:SA:CTP10100,Europe/Paris,,O38, +O38:SP:10101,1,"LYCEE PRIVE ST MARC",45.563665,5.306761,0,0,O38:SA:CTP10100,Europe/Paris,,O38, +O38:SP:10102,1,"PREMINS LAC CLAIR",45.603211,5.345219,0,0,O38:SA:CTP10102,Europe/Paris,,O38, +O38:SP:10103,1,"PREMINS LAC CLAIR",45.603278,5.345262,0,0,O38:SA:CTP10102,Europe/Paris,,O38, +O38:SP:10104,1,"PREMINS LA CROIX",45.605586,5.336516,0,0,O38:SA:CTP10104,Europe/Paris,,O38, +O38:SP:10105,1,"PREMINS LA CROIX",45.605654,5.336552,0,0,O38:SA:CTP10104,Europe/Paris,,O38, +O38:SP:1011,1,"COLLEGE NOTRE DAME DES CHAMPS",45.044797,5.049097,0,0,O38:SA:CTP1010,Europe/Paris,,O38, +O38:SP:10111,1,"DAUPHINE SAVOIE",45.584207,5.288555,0,0,O38:SA:CTP10111,Europe/Paris,,O38, +O38:SP:10113,1,"DAUPHINE SAVOIE",45.584184,5.288545,0,0,O38:SA:CTP10111,Europe/Paris,,O38, +O38:SP:10114,1,"LA MADELEINE",45.565965,5.387517,0,0,O38:SA:CTP10114,Europe/Paris,,O38, +O38:SP:10115,1,"LA MADELEINE",45.565996,5.386656,0,0,O38:SA:CTP10114,Europe/Paris,,O38, +O38:SP:1012,1,"ST JEAN EN ROYANS",45.019206,5.290848,0,0,O38:SA:CTP1012,Europe/Paris,,O38, +O38:SP:10120,1,"LOT.PLANAISE",45.576285,5.397978,0,0,O38:SA:CTP10120,Europe/Paris,,O38, +O38:SP:10121,1,"LOT.PLANAISE",45.576353,5.397946,0,0,O38:SA:CTP10120,Europe/Paris,,O38, +O38:SP:10122,1,"LE VILLAGE",45.567151,5.374994,0,0,O38:SA:CTP10122,Europe/Paris,,O38, +O38:SP:10123,1,"LE VILLAGE",45.567202,5.375059,0,0,O38:SA:CTP10122,Europe/Paris,,O38, +O38:SP:10124,1,"FALIZAN",45.604022,5.39765,0,0,O38:SA:CTP10124,Europe/Paris,,O38, +O38:SP:10125,1,"FALIZAN",45.603852,5.39787,0,0,O38:SA:CTP10124,Europe/Paris,,O38, +O38:SP:10126,1,"VACHERES",45.568015,5.358077,0,0,O38:SA:CTP10126,Europe/Paris,,O38, +O38:SP:10127,1,"VACHERES",45.567985,5.358319,0,0,O38:SA:CTP10126,Europe/Paris,,O38, +O38:SP:10128,1,"LA PEAU DE LOUP",45.567367,5.370284,0,0,O38:SA:CTP10128,Europe/Paris,,O38, +O38:SP:10129,1,"LA PEAU DE LOUP",45.567429,5.370348,0,0,O38:SA:CTP10128,Europe/Paris,,O38, +O38:SP:10130,1,"PEVRIN",45.566797,5.406961,0,0,O38:SA:CTP10130,Europe/Paris,,O38, +O38:SP:10131,1,"PEVRIN",45.566933,5.406014,0,0,O38:SA:CTP10130,Europe/Paris,,O38, +O38:SP:10132,1,"LES COMMUNAUX",45.577762,5.366101,0,0,O38:SA:CTP10132,Europe/Paris,,O38, +O38:SP:10133,1,"LES COMMUNAUX",45.577765,5.366203,0,0,O38:SA:CTP10132,Europe/Paris,,O38, +O38:SP:10134,1,"CHEMIN DU GEAY",45.574782,5.374289,0,0,O38:SA:CTP10134,Europe/Paris,,O38, +O38:SP:10135,1,"CHEMIN DU GEAY",45.574818,5.374355,0,0,O38:SA:CTP10134,Europe/Paris,,O38, +O38:SP:10136,1,"AUX QUATRE VENTS",45.575695,5.385025,0,0,O38:SA:CTP10136,Europe/Paris,,O38, +O38:SP:10137,1,"AUX QUATRE VENTS",45.575654,5.385044,0,0,O38:SA:CTP10136,Europe/Paris,,O38, +O38:SP:1014,1,"ST LAURENT EN ROYANS",45.02901,5.326752,0,0,O38:SA:CTP1014,Europe/Paris,,O38, +O38:SP:10140,1,"LA MITAGNIERE",45.592429,5.419898,0,0,O38:SA:CTP10140,Europe/Paris,,O38, +O38:SP:10141,1,"LA MITAGNIERE",45.592387,5.419877,0,0,O38:SA:CTP10140,Europe/Paris,,O38, +O38:SP:1015,1,"ST LAURENT EN ROYANS",45.029181,5.32731,0,0,O38:SA:CTP1014,Europe/Paris,,O38, +O38:SP:10150,1,"LE BOIS-ABRIBUS",45.573942,5.39347,0,0,O38:SA:CTP10150,Europe/Paris,,O38, +O38:SP:10151,1,"LE BOIS-ABRIBUS",45.574008,5.393433,0,0,O38:SA:CTP10150,Europe/Paris,,O38, +O38:SP:10152,1,"VERNAVENT",45.579228,5.409683,0,0,O38:SA:CTP10152,Europe/Paris,,O38, +O38:SP:10153,1,"VERNAVENT",45.579192,5.409773,0,0,O38:SA:CTP10152,Europe/Paris,,O38, +O38:SP:10154,1,"HAMEAU VERNAVENT",45.577268,5.406277,0,0,O38:SA:CTP10154,Europe/Paris,,O38, +O38:SP:10155,1,"HAMEAU VERNAVENT",45.577208,5.40629,0,0,O38:SA:CTP10154,Europe/Paris,,O38, +O38:SP:1016,1,"ENTREE ST MARTIN",45.018328,5.44283,0,0,O38:SA:CTP1016,Europe/Paris,,O38, +O38:SP:1017,1,"ENTREE ST MARTIN",45.018362,5.442752,0,0,O38:SA:CTP1016,Europe/Paris,,O38, +O38:SP:101772,1,"CENTRE-VILLAGE",45.170511,5.68079,0,0,O38:SA:CTP101772,Europe/Paris,,O38, +O38:SP:101773,1,"CENTRE-VILLAGE",45.170511,5.680677,0,0,O38:SA:CTP101772,Europe/Paris,,O38, +O38:SP:101774,1,"BOUCHAYER-HOTEL DE VILLE",45.181297,5.694445,0,0,O38:SA:CTP101774,Europe/Paris,,O38, +O38:SP:101775,1,"BOUCHAYER-HOTEL DE VILLE",45.18114,5.694541,0,0,O38:SA:CTP101774,Europe/Paris,,O38, +O38:SP:101776,1,"BEL AIR",45.492147,5.437713,0,0,O38:SA:CTP101776,Europe/Paris,,O38, +O38:SP:101777,1,"BEL AIR",45.492196,5.437736,0,0,O38:SA:CTP101776,Europe/Paris,,O38, +O38:SP:101778,1,"PRESQU'ILE (TRAM)",45.205834,5.699426,0,0,O38:SA:CTP101778,Europe/Paris,,O38, +O38:SP:101779,1,"PRESQU'ILE (TRAM)",45.205997,5.699651,0,0,O38:SA:CTP101778,Europe/Paris,,O38, +O38:SP:10178,1,"EGLISE",45.582167,5.41561,0,0,O38:SA:CTP10178,Europe/Paris,,O38, +O38:SP:10179,1,"EGLISE",45.582201,5.415702,0,0,O38:SA:CTP10178,Europe/Paris,,O38, +O38:SP:1018,1,"PONT DE TOURTRE",45.013723,5.442514,0,0,O38:SA:CTP1018,Europe/Paris,,O38, +O38:SP:10180,1,"RECULEFORT",45.589684,5.412065,0,0,O38:SA:CTP10180,Europe/Paris,,O38, +O38:SP:10181,1,"RECULEFORT",45.58985,5.4121,0,0,O38:SA:CTP10180,Europe/Paris,,O38, +O38:SP:101812,1,"LES VESVES",45.510808,5.339062,0,0,O38:SA:CTP101812,Europe/Paris,,O38, +O38:SP:101813,1,"LES VESVES",45.510769,5.339099,0,0,O38:SA:CTP101812,Europe/Paris,,O38, +O38:SP:101814,1,"LOTISSEMENT MENEGHIN",44.997795,5.652364,0,0,O38:SA:CTP101814,Europe/Paris,,O38, +O38:SP:101815,1,"LOTISSEMENT MENEGHIN",44.997912,5.652321,0,0,O38:SA:CTP101814,Europe/Paris,,O38, +O38:SP:10182,1,"STADE",45.587945,5.464384,0,0,O38:SA:CTP10182,Europe/Paris,,O38, +O38:SP:101822,1,"PALLUEL",45.255021,5.661663,0,0,O38:SA:CTP101822,Europe/Paris,,O38, +O38:SP:101823,1,"PALLUEL",45.254757,5.661623,0,0,O38:SA:CTP101822,Europe/Paris,,O38, +O38:SP:10183,1,"STADE",45.587895,5.464304,0,0,O38:SA:CTP10182,Europe/Paris,,O38, +O38:SP:10184,1,"ETANG LE BERRE",45.602067,5.483046,0,0,O38:SA:CTP10184,Europe/Paris,,O38, +O38:SP:10185,1,"ETANG LE BERRE",45.602122,5.482953,0,0,O38:SA:CTP10184,Europe/Paris,,O38, +O38:SP:10186,1,"LES PALLETEAUX",45.594605,5.465224,0,0,O38:SA:CTP10186,Europe/Paris,,O38, +O38:SP:101860,1,"LES ROLES",45.516582,5.239223,0,0,O38:SA:CTP8566,Europe/Paris,,O38, +O38:SP:101861,1,"LE MICHALET",45.478781,4.968223,0,0,O38:SA:CTP101861,Europe/Paris,,O38, +O38:SP:101862,1,"LE MICHALET",45.478755,4.968169,0,0,O38:SA:CTP101861,Europe/Paris,,O38, +O38:SP:101863,1,"JEU DE PAUME",45.527105,4.873228,0,0,OIV:SA:CTP13978,Europe/Paris,,O38, +O38:SP:101866,1,"ROUTE DE BEAUREPAIRE",45.440499,5.004612,0,0,O38:SA:CTP101866,Europe/Paris,,O38, +O38:SP:101867,1,"ROUTE DE BEAUREPAIRE",45.440474,5.004536,0,0,O38:SA:CTP101866,Europe/Paris,,O38, +O38:SP:101868,1,"PLACE DE LA ST VINCENT",45.492634,4.945505,0,0,O38:SA:CTP101868,Europe/Paris,,O38, +O38:SP:101869,1,"MANUFACTURE MONTLUC",45.749345,4.859338,0,0,O38:SA:CTP101869,Europe/Paris,,O38, +O38:SP:10187,1,"LES PALLETEAUX",45.594462,5.46514,0,0,O38:SA:CTP10186,Europe/Paris,,O38, +O38:SP:101870,1,"MANUFACTURE MONTLUC",45.749405,4.85949,0,0,O38:SA:CTP101869,Europe/Paris,,O38, +O38:SP:101871,1,"TISSAGE",45.735005,5.187528,0,0,O38:SA:CTP101871,Europe/Paris,,O38, +O38:SP:101872,1,"TISSAGE",45.735387,5.187342,0,0,O38:SA:CTP101871,Europe/Paris,,O38, +O38:SP:10188,1,"HAMEAU DE SORLIN",45.595283,5.477154,0,0,O38:SA:CTP10188,Europe/Paris,,O38, +O38:SP:101883,1,"LES VOUILLANTS",45.170945,5.673234,0,0,O38:SA:CTP101883,Europe/Paris,,O38, +O38:SP:101884,1,"LES VOUILLANTS",45.171091,5.673242,0,0,O38:SA:CTP101883,Europe/Paris,,O38, +O38:SP:101885,1,"LA BUQUINIERE 2",45.491077,5.70449,0,0,O38:SA:CTP101885,Europe/Paris,,O38, +O38:SP:101886,1,"LA BUQUINIERE 2",45.491059,5.704554,0,0,O38:SA:CTP101885,Europe/Paris,,O38, +O38:SP:101887,1,"LYCEE (2)",45.068131,5.770041,0,0,O38:SA:CTP101887,Europe/Paris,,O38, +O38:SP:101888,1,"LYCEE (2)",45.068164,5.770132,0,0,O38:SA:CTP101887,Europe/Paris,,O38, +O38:SP:10189,1,"HAMEAU DE SORLIN",45.595332,5.478028,0,0,O38:SA:CTP10188,Europe/Paris,,O38, +O38:SP:1019,1,"PONT DE TOURTRE",45.013601,5.442618,0,0,O38:SA:CTP1018,Europe/Paris,,O38, +O38:SP:10190,1,"LE MEYNAT",45.576535,5.462758,0,0,O38:SA:CTP10190,Europe/Paris,,O38, +O38:SP:10191,1,"LE MEYNAT",45.576342,5.462815,0,0,O38:SA:CTP10190,Europe/Paris,,O38, +O38:SP:10192,1,"LES COMMUNES",45.599574,5.486389,0,0,O38:SA:CTP10192,Europe/Paris,,O38, +O38:SP:10193,1,"LES COMMUNES",45.599641,5.486427,0,0,O38:SA:CTP10192,Europe/Paris,,O38, +O38:SP:101935,1,"LA GUINGUETTE",44.728711,6.008388,0,0,O38:SA:CTP101935,Europe/Paris,,O38, +O38:SP:101936,1,"LA GUINGUETTE",44.728654,6.008318,0,0,O38:SA:CTP101935,Europe/Paris,,O38, +O38:SP:10194,1,"LOT. LE LADRET",45.556623,5.474145,0,0,O38:SA:CTP10194,Europe/Paris,,O38, +O38:SP:101944,1,"MONTEE DE LA BLACHE",45.215826,5.384212,0,0,O38:SA:CTP101944,Europe/Paris,,O38, +O38:SP:101945,1,"MONTEE DE LA BLACHE",45.215947,5.384631,0,0,O38:SA:CTP101944,Europe/Paris,,O38, +O38:SP:10195,1,"LOT. LE LADRET",45.55672,5.474078,0,0,O38:SA:CTP10194,Europe/Paris,,O38, +O38:SP:10196,1,"LE PISSOUD",45.593703,5.489346,0,0,O38:SA:CTP10196,Europe/Paris,,O38, +O38:SP:10197,1,"LE PISSOUD",45.593685,5.489248,0,0,O38:SA:CTP10196,Europe/Paris,,O38, +O38:SP:101981,1,"LES CHEVREUILS",45.042731,5.977608,0,0,O38:SA:CTP101981,Europe/Paris,,O38, +O38:SP:101982,1,"LES CHEVREUILS",45.042701,5.977516,0,0,O38:SA:CTP101981,Europe/Paris,,O38, +O38:SP:101983,1,"VILLARNET LE MOULIN",44.861271,5.690958,0,0,O38:SA:CTP101983,Europe/Paris,,O38, +O38:SP:101984,1,"VILLARNET LE MOULIN",44.861319,5.690733,0,0,O38:SA:CTP101983,Europe/Paris,,O38, +O38:SP:101987,1,"EGLISE",44.990491,5.771696,0,0,O38:SA:CTP101987,Europe/Paris,,O38, +O38:SP:101988,1,"EGLISE",44.990431,5.771626,0,0,O38:SA:CTP101987,Europe/Paris,,O38, +O38:SP:101989,1,"LE MOULIN",44.897173,5.928173,0,0,O38:SA:CTP101989,Europe/Paris,,O38, +O38:SP:10199,1,"GARE S.N.C.F.",45.560349,5.449561,0,0,O38:SA:CTP10199,Europe/Paris,,O38, +O38:SP:101990,1,"LE MOULIN",44.897086,5.928162,0,0,O38:SA:CTP101989,Europe/Paris,,O38, +O38:SP:101992,1,"ROUTE DE MEPIEU",45.730876,5.434801,0,0,O38:SA:CTP101992,Europe/Paris,,O38, +O38:SP:101993,1,"ROUTE DE MEPIEU",45.730937,5.434844,0,0,O38:SA:CTP101992,Europe/Paris,,O38, +O38:SP:1020,1,"CROISEMENT ST AGNAN-ST MARTIN",45.001595,5.435086,0,0,O38:SA:CTP1020,Europe/Paris,,O38, +O38:SP:10201,1,"CHATANAY",45.582357,5.447894,0,0,O38:SA:CTP10201,Europe/Paris,,O38, +O38:SP:102014,1,"ECOLES",45.393819,6.070142,0,0,O38:SA:CTP102014,Europe/Paris,,O38, +O38:SP:102015,1,"ECOLES",45.393905,6.070252,0,0,O38:SA:CTP102014,Europe/Paris,,O38, +O38:SP:102016,1,"ROUTE DE ROSSIERE",45.31374,5.302665,0,0,O38:SA:CTP102016,Europe/Paris,,O38, +O38:SP:10202,1,"CHATANAY",45.582368,5.447988,0,0,O38:SA:CTP10201,Europe/Paris,,O38, +O38:SP:102021,1,"BAYET",45.187234,5.210766,0,0,O38:SA:CTP102021,Europe/Paris,,O38, +O38:SP:102022,1,"BAYET",45.187414,5.210788,0,0,O38:SA:CTP102021,Europe/Paris,,O38, +O38:SP:102023,1,"L'ELLIOU",45.265987,5.530947,0,0,O38:SA:CTP102023,Europe/Paris,,O38, +O38:SP:102024,1,"VICAIRE ET GERBAUD",44.87099,5.621269,0,0,O38:SA:CTP102024,Europe/Paris,,O38, +O38:SP:102025,1,"LE CHAMBOUD 2",45.486177,4.954983,0,0,O38:SA:CTP102025,Europe/Paris,,O38, +O38:SP:102026,1,"LE CHAMBOUD 2",45.486147,4.95486,0,0,O38:SA:CTP102025,Europe/Paris,,O38, +O38:SP:102027,1,"BONPERTUIS",45.394957,5.529753,0,0,O38:SA:CTP7018,Europe/Paris,,O38, +O38:SP:102028,1,"MARTIN CLUZEL",45.433212,5.514182,0,0,OVO:SA:CTP7823,Europe/Paris,,O38, +O38:SP:10203,1,"LA POSTE",45.566197,5.448371,0,0,O38:SA:CTP10203,Europe/Paris,,O38, +O38:SP:10204,1,"LA POSTE",45.56625,5.448162,0,0,O38:SA:CTP10203,Europe/Paris,,O38, +O38:SP:102045,1,"FAUCONNIERE",45.17727,5.693528,0,0,O38:SA:CTP102045,Europe/Paris,,O38, +O38:SP:102049,1,"CHATEAU MEA LA VERGNE",44.740966,5.759404,0,0,O38:SA:CTP102049,Europe/Paris,,O38, +O38:SP:10205,1,"LE CHAMP DE MARS",45.56265,5.443936,0,0,O38:SA:CTP10205,Europe/Paris,,O38, +O38:SP:102050,1,"LEYSSINS GUERRE",45.580737,5.584018,0,0,O38:SA:CTP102050,Europe/Paris,,O38, +O38:SP:102051,1,"LEYSSINS GUERRE",45.580739,5.584094,0,0,O38:SA:CTP102050,Europe/Paris,,O38, +O38:SP:102052,1,"CHATEAU MEA LA VERGNE",44.741162,5.760376,0,0,O38:SA:CTP102049,Europe/Paris,,O38, +O38:SP:102053,1,"CARREFOUR DE L'EPINETTE",45.41658,5.770232,0,0,O38:SA:CTP102053,Europe/Paris,,O38, +O38:SP:10206,1,"LE CHAMP DE MARS",45.563007,5.4428,0,0,O38:SA:CTP10205,Europe/Paris,,O38, +O38:SP:10207,1,"SECURITE SOCIALE",45.560781,5.454567,0,0,O38:SA:CTP10207,Europe/Paris,,O38, +O38:SP:10208,1,"VILLAGE",45.584752,5.463724,0,0,O38:SA:CTP10208,Europe/Paris,,O38, +O38:SP:102080,1,"MEILLON",45.465082,5.123915,0,0,O38:SA:CTP102080,Europe/Paris,,O38, +O38:SP:102081,1,"MEILLON",45.465037,5.123813,0,0,O38:SA:CTP102080,Europe/Paris,,O38, +O38:SP:10209,1,"VILLAGE",45.584774,5.463649,0,0,O38:SA:CTP10208,Europe/Paris,,O38, +O38:SP:102096,1,"LES 4 ROUTES",45.428966,5.432911,0,0,O38:SA:CTP7771,Europe/Paris,,O38, +O38:SP:102098,1,"LA PLACE",45.62688,5.311578,0,0,O38:SA:CTP10787,Europe/Paris,,O38, +O38:SP:102099,1,"GRANDE CHARRIERE",45.627229,5.32065,0,0,O38:SA:CTP10792,Europe/Paris,,O38, +O38:SP:1021,1,"CROISEMENT ST AGNAN-ST MARTIN",45.001481,5.435719,0,0,O38:SA:CTP1020,Europe/Paris,,O38, +O38:SP:10210,1,"MODURIERE",45.592022,5.432721,0,0,O38:SA:CTP10210,Europe/Paris,,O38, +O38:SP:102100,1,"LA FOLATIERE",45.833199,5.393842,0,0,O38:SA:CTP11911,Europe/Paris,,O38, +O38:SP:102101,1,"JEAN VINCENT",45.016394,5.872305,0,0,O38:SA:CTP102101,Europe/Paris,,O38, +O38:SP:102102,1,"JEAN VINCENT",45.016401,5.872214,0,0,O38:SA:CTP102101,Europe/Paris,,O38, +O38:SP:102103,1,"LES QUATRE ROUTES D518",45.595455,5.090205,0,0,O38:SA:CTP102103,Europe/Paris,,O38, +O38:SP:102104,1,"LES QUATRE ROUTES D518",45.595524,5.090425,0,0,O38:SA:CTP102103,Europe/Paris,,O38, +O38:SP:102105,1,"LES QUATRE ROUTES D518",45.59373,5.091219,0,0,O38:SA:CTP102103,Europe/Paris,,O38, +O38:SP:10211,1,"MODURIERE",45.592025,5.432619,0,0,O38:SA:CTP10210,Europe/Paris,,O38, +O38:SP:10212,1,"MAIRIE",45.573826,5.479975,0,0,O38:SA:CTP10212,Europe/Paris,,O38, +O38:SP:10213,1,"MAIRIE",45.573784,5.480075,0,0,O38:SA:CTP10212,Europe/Paris,,O38, +O38:SP:10214,1,"LE GRAND BOIS",45.598397,5.434131,0,0,O38:SA:CTP10214,Europe/Paris,,O38, +O38:SP:10215,1,"LE GRAND BOIS",45.5984,5.434028,0,0,O38:SA:CTP10214,Europe/Paris,,O38, +O38:SP:10216,1,"LE PRA-DIO",45.587256,5.424518,0,0,O38:SA:CTP10216,Europe/Paris,,O38, +O38:SP:10217,1,"LE PRA-DIO",45.587206,5.424444,0,0,O38:SA:CTP10216,Europe/Paris,,O38, +O38:SP:10219,1,"LES YRIS",45.586166,5.437485,0,0,O38:SA:CTP10219,Europe/Paris,,O38, +O38:SP:1022,1,"LES BARRAQUES",45.002117,5.421713,0,0,O38:SA:CTP1022,Europe/Paris,,O38, +O38:SP:10220,1,"LES IRIS",45.582597,5.440472,0,0,O38:SA:CTP10220,Europe/Paris,,O38, +O38:SP:10221,1,"LES IRIS",45.582549,5.440431,0,0,O38:SA:CTP10220,Europe/Paris,,O38, +O38:SP:10222,1,"CAFE LES ALLOBROGES",45.566989,5.43897,0,0,O38:SA:CTP10222,Europe/Paris,,O38, +O38:SP:10223,1,"CAFE LES ALLOBROGES",45.566903,5.439356,0,0,O38:SA:CTP10222,Europe/Paris,,O38, +O38:SP:10224,1,"RD2 CROCHAT",45.566038,5.476918,0,0,O38:SA:CTP10224,Europe/Paris,,O38, +O38:SP:10225,1,"RD2 CROCHAT",45.566063,5.476835,0,0,O38:SA:CTP10224,Europe/Paris,,O38, +O38:SP:10226,1,"USINE FERRARI",45.566464,5.424108,0,0,O38:SA:CTP10226,Europe/Paris,,O38, +O38:SP:10227,1,"USINE FERRARI",45.566371,5.424049,0,0,O38:SA:CTP10226,Europe/Paris,,O38, +O38:SP:10228,1,"TRICONFORT",45.569887,5.459905,0,0,O38:SA:CTP10228,Europe/Paris,,O38, +O38:SP:10229,1,"TRICONFORT",45.569769,5.459854,0,0,O38:SA:CTP10228,Europe/Paris,,O38, +O38:SP:1023,1,"LES BARRAQUES",45.002069,5.421755,0,0,O38:SA:CTP1022,Europe/Paris,,O38, +O38:SP:10230,1,"LE PASSERON",45.572568,5.471953,0,0,O38:SA:CTP10230,Europe/Paris,,O38, +O38:SP:10231,1,"LE PASSERON",45.57258,5.471653,0,0,O38:SA:CTP10230,Europe/Paris,,O38, +O38:SP:10232,1,"CHARPENAY LOTISSEMENT",45.567533,5.487835,0,0,O38:SA:CTP10232,Europe/Paris,,O38, +O38:SP:10233,1,"CHARPENAY LOTISSEMENT",45.567456,5.487861,0,0,O38:SA:CTP10232,Europe/Paris,,O38, +O38:SP:10234,1,"PLACE THEVENON",45.566237,5.445515,0,0,O38:SA:CTP10234,Europe/Paris,,O38, +O38:SP:10235,1,"PLACE THEVENON",45.566169,5.445488,0,0,O38:SA:CTP10234,Europe/Paris,,O38, +O38:SP:10236,1,"LYCEE ELIE CARTAN",45.564352,5.443385,0,0,O38:SA:CTP10236,Europe/Paris,,O38, +O38:SP:10237,1,"LYCEE ELIE CARTAN",45.564468,5.443441,0,0,O38:SA:CTP10236,Europe/Paris,,O38, +O38:SP:1024,1,"COOPERATIVE ST MARTIN",45.022785,5.443168,0,0,O38:SA:CTP1024,Europe/Paris,,O38, +O38:SP:10240,1,"CROIS.ROCHETOIRIN",45.58021,5.434545,0,0,O38:SA:CTP10240,Europe/Paris,,O38, +O38:SP:10241,1,"CROIS.ROCHETOIRIN",45.58001,5.434558,0,0,O38:SA:CTP10240,Europe/Paris,,O38, +O38:SP:10242,1,"PLACE",45.572281,5.42938,0,0,O38:SA:CTP10242,Europe/Paris,,O38, +O38:SP:10243,1,"PLACE",45.57228,5.429303,0,0,O38:SA:CTP10242,Europe/Paris,,O38, +O38:SP:10244,1,"LE BRESSON-ECOLE",45.597253,5.448103,0,0,O38:SA:CTP10244,Europe/Paris,,O38, +O38:SP:10245,1,"LE BRESSON-ECOLE",45.597369,5.447977,0,0,O38:SA:CTP10244,Europe/Paris,,O38, +O38:SP:10248,1,"ECOLE LE FOULON",45.56868,5.454506,0,0,O38:SA:CTP10248,Europe/Paris,,O38, +O38:SP:10249,1,"ECOLE LE FOULON",45.568577,5.454559,0,0,O38:SA:CTP10248,Europe/Paris,,O38, +O38:SP:1025,1,"COOPERATIVE ST MARTIN",45.022699,5.443214,0,0,O38:SA:CTP1024,Europe/Paris,,O38, +O38:SP:10250,1,"CITE CLERGET",45.564562,5.433777,0,0,O38:SA:CTP10250,Europe/Paris,,O38, +O38:SP:10252,1,"COLLEGE LES DAUPHINS",45.563176,5.430551,0,0,O38:SA:CTP10252,Europe/Paris,,O38, +O38:SP:10253,1,"COLLEGE LES DAUPHINS",45.563255,5.430497,0,0,O38:SA:CTP10252,Europe/Paris,,O38, +O38:SP:10256,1,"MOLLARD-MAILLET",45.576184,5.432981,0,0,O38:SA:CTP10256,Europe/Paris,,O38, +O38:SP:10257,1,"MOLLARD-MAILLET",45.576152,5.433073,0,0,O38:SA:CTP10256,Europe/Paris,,O38, +O38:SP:10258,1,"LE JOLI MOULIN",45.566492,5.430729,0,0,O38:SA:CTP10258,Europe/Paris,,O38, +O38:SP:10259,1,"LE JOLI MOULIN",45.566443,5.430896,0,0,O38:SA:CTP10258,Europe/Paris,,O38, +O38:SP:10260,1,"ECOLE DU BOURG",45.572514,5.479855,0,0,O38:SA:CTP10260,Europe/Paris,,O38, +O38:SP:10261,1,"ECOLE DU BOURG",45.572677,5.479396,0,0,O38:SA:CTP10260,Europe/Paris,,O38, +O38:SP:10263,1,"LE GRAND BOIS",45.598349,5.433946,0,0,O38:SA:CTP10214,Europe/Paris,,O38, +O38:SP:10264,1,"BAS CUIRIEU",45.561463,5.432115,0,0,O38:SA:CTP10264,Europe/Paris,,O38, +O38:SP:10266,1,"COLLEGE LE CALLOUD",45.570174,5.446089,0,0,O38:SA:CTP10266,Europe/Paris,,O38, +O38:SP:10268,1,"CHEMIN DE L'ETANG",45.594175,5.447737,0,0,O38:SA:CTP10268,Europe/Paris,,O38, +O38:SP:10269,1,"CHEMIN DE L'ETANG",45.594133,5.448038,0,0,O38:SA:CTP10268,Europe/Paris,,O38, +O38:SP:1027,1,"HAUTS PLATEAUX",45.024762,5.518122,0,0,O38:SA:CTP1027,Europe/Paris,,O38, +O38:SP:10270,1,"COMBALAN",45.569457,5.433577,0,0,O38:SA:CTP10270,Europe/Paris,,O38, +O38:SP:10271,1,"COMBALAN",45.56866,5.433458,0,0,O38:SA:CTP10270,Europe/Paris,,O38, +O38:SP:10272,1,"LES PLAGNES",45.588262,5.485129,0,0,O38:SA:CTP10272,Europe/Paris,,O38, +O38:SP:10273,1,"LES PLAGNES",45.588193,5.4851,0,0,O38:SA:CTP10272,Europe/Paris,,O38, +O38:SP:10274,1,"RUE PASTEUR (SNCF)",45.561059,5.450133,0,0,O38:SA:CTP10274,Europe/Paris,,O38, +O38:SP:10275,1,"AVOLIN-STADE",45.5757,5.532614,0,0,O38:SA:CTP10275,Europe/Paris,,O38, +O38:SP:10276,1,"AVOLIN-STADE",45.575806,5.532483,0,0,O38:SA:CTP10275,Europe/Paris,,O38, +O38:SP:10277,1,"LE GROS CHENE",45.589643,5.501647,0,0,O38:SA:CTP10277,Europe/Paris,,O38, +O38:SP:10278,1,"LE GROS CHENE",45.589595,5.501681,0,0,O38:SA:CTP10277,Europe/Paris,,O38, +O38:SP:10279,1,"CARREFOUR LA MOLETTE",45.570471,5.552105,0,0,O38:SA:CTP10279,Europe/Paris,,O38, +O38:SP:10280,1,"ARLACOT",45.588344,5.555093,0,0,O38:SA:CTP10280,Europe/Paris,,O38, +O38:SP:10281,1,"LES RIVOIRES 2",45.596328,5.555048,0,0,O38:SA:CTP10281,Europe/Paris,,O38, +O38:SP:10282,1,"LE FAYET",45.596879,5.544664,0,0,O38:SA:CTP10282,Europe/Paris,,O38, +O38:SP:10283,1,"VILLAGE",45.579381,5.528859,0,0,O38:SA:CTP10283,Europe/Paris,,O38, +O38:SP:10284,1,"VILLAGE",45.579749,5.528416,0,0,O38:SA:CTP10283,Europe/Paris,,O38, +O38:SP:10285,1,"LA PORTE",45.600138,5.543488,0,0,O38:SA:CTP10285,Europe/Paris,,O38, +O38:SP:10286,1,"LA PORTE",45.600345,5.543592,0,0,O38:SA:CTP10285,Europe/Paris,,O38, +O38:SP:10288,1,"EVRIEU STATION ELF",45.582947,5.547028,0,0,O38:SA:CTP10288,Europe/Paris,,O38, +O38:SP:10289,1,"EVRIEU STATION ELF",45.583014,5.546921,0,0,O38:SA:CTP10288,Europe/Paris,,O38, +O38:SP:1029,1,"HAUTS PLATEAUX",45.024406,5.518003,0,0,O38:SA:CTP1027,Europe/Paris,,O38, +O38:SP:10290,1,"VARVOTTIER",45.58854,5.508564,0,0,O38:SA:CTP10290,Europe/Paris,,O38, +O38:SP:10291,1,"VARVOTTIER",45.588468,5.50856,0,0,O38:SA:CTP10290,Europe/Paris,,O38, +O38:SP:10292,1,"LE VERONIN",45.601459,5.511144,0,0,O38:SA:CTP10292,Europe/Paris,,O38, +O38:SP:10293,1,"LE VERONIN",45.60139,5.511116,0,0,O38:SA:CTP10292,Europe/Paris,,O38, +O38:SP:102938,1,"ROUTE DES DEVERS",45.209868,5.458475,0,0,O38:SA:CTP102938,Europe/Paris,,O38, +O38:SP:102939,1,"ROUTE DES DEVERS",45.20984,5.458674,0,0,O38:SA:CTP102938,Europe/Paris,,O38, +O38:SP:10294,1,"LE LACA",45.599019,5.498847,0,0,O38:SA:CTP10294,Europe/Paris,,O38, +O38:SP:102940,1,"CARRIERE LANGLOIS",45.550444,5.374144,0,0,O38:SA:CTP9352,Europe/Paris,,O38, +O38:SP:102941,1,"EGLISE",45.627597,5.308344,0,0,O38:SA:CTP10747,Europe/Paris,,O38, +O38:SP:102942,1,"LA RIVIERE",45.627269,5.305149,0,0,O38:SA:CTP10788,Europe/Paris,,O38, +O38:SP:102943,1,"LA PLACE",45.54881,5.22394,0,0,O38:SA:CTP9172,Europe/Paris,,O38, +O38:SP:102944,1,"ECOLE",45.586338,5.192376,0,0,O38:SA:CTP9872,Europe/Paris,,O38, +O38:SP:102945,1,"VERS NIVOLAS",45.559409,5.292988,0,0,O38:SA:CTP9273,Europe/Paris,,O38, +O38:SP:10295,1,"LE LACA",45.5991,5.498929,0,0,O38:SA:CTP10294,Europe/Paris,,O38, +O38:SP:102956,1,"LA COMBE DU LIN",45.246003,5.325875,0,0,O38:SA:CTP4082,Europe/Paris,,O38, +O38:SP:102957,1,"LES GLENATS",45.102523,5.464403,0,0,O38:SA:CTP102957,Europe/Paris,,O38, +O38:SP:102958,1,"LES GLENATS",45.102463,5.464376,0,0,O38:SA:CTP102957,Europe/Paris,,O38, +O38:SP:102959,1,"LES AILES",45.093869,5.451631,0,0,O38:SA:CTP102959,Europe/Paris,,O38, +O38:SP:102960,1,"LES AILES",45.093965,5.45148,0,0,O38:SA:CTP102959,Europe/Paris,,O38, +O38:SP:102963,1,"GARE ROUTIERE SUD",45.36349,5.594908,0,0,O38:SA:CTP102963,Europe/Paris,,O38, +O38:SP:10298,1,"CITE FRANTISSOR",45.591037,5.520063,0,0,O38:SA:CTP10298,Europe/Paris,,O38, +O38:SP:102988,1,"L'HOMME DU LAC",44.8407,5.721498,0,0,O38:SA:CTP102988,Europe/Paris,,O38, +O38:SP:102989,1,"L'HOMME DU LAC",44.840464,5.720843,0,0,O38:SA:CTP102988,Europe/Paris,,O38, +O38:SP:10299,1,"CITE FRANTISSOR",45.590966,5.520081,0,0,O38:SA:CTP10298,Europe/Paris,,O38, +O38:SP:102990,1,"VOIE PARKING",45.173332,5.544239,0,0,O38:SA:CTP102990,Europe/Paris,,O38, +O38:SP:102991,1,"VOIE PARKING",45.173487,5.544252,0,0,O38:SA:CTP102990,Europe/Paris,,O38, +O38:SP:102992,1,"VALLIER-LIBERATION (OUEST)",45.180376,5.71513,0,0,O38:SA:CTP102992,Europe/Paris,,O38, +O38:SP:102993,1,"VALLIER-LIBERATION (OUEST)",45.180171,5.715933,0,0,O38:SA:CTP102992,Europe/Paris,,O38, +O38:SP:1030,1,"LES RITONS",45.028509,5.522802,0,0,O38:SA:CTP1030,Europe/Paris,,O38, +O38:SP:10300,1,"LOT. LA RANCHE",45.587671,5.511167,0,0,O38:SA:CTP10300,Europe/Paris,,O38, +O38:SP:103009,1,"ROUTE DE SAINT NIZIER",45.176598,5.681452,0,0,O38:SA:CTP103009,Europe/Paris,,O38, +O38:SP:10301,1,"LOT. LA RANCHE",45.587556,5.510781,0,0,O38:SA:CTP10300,Europe/Paris,,O38, +O38:SP:103010,1,"ROUTE DE SAINT NIZIER",45.176378,5.681418,0,0,O38:SA:CTP103009,Europe/Paris,,O38, +O38:SP:103011,1,"LES VISANS",45.170259,5.677901,0,0,O38:SA:CTP103011,Europe/Paris,,O38, +O38:SP:103012,1,"LES VISANS",45.170149,5.677971,0,0,O38:SA:CTP103011,Europe/Paris,,O38, +O38:SP:10302,1,"GOUTTE(MAUCHAMP)",45.577641,5.510534,0,0,O38:SA:CTP10302,Europe/Paris,,O38, +O38:SP:10303,1,"GOUTTE(MAUCHAMP)",45.577746,5.509772,0,0,O38:SA:CTP10302,Europe/Paris,,O38, +O38:SP:10304,1,"CAFE MERMET",45.590997,5.519914,0,0,O38:SA:CTP10304,Europe/Paris,,O38, +O38:SP:103040,1,"LIVET RD1091",45.106771,5.934724,0,0,O38:SA:CTP103040,Europe/Paris,,O38, +O38:SP:103041,1,"LIVET RD1091",45.106835,5.934614,0,0,O38:SA:CTP103040,Europe/Paris,,O38, +O38:SP:103042,1,"GAVET RD1091",45.071839,5.874579,0,0,O38:SA:CTP103042,Europe/Paris,,O38, +O38:SP:103043,1,"GAVET RD1091",45.071756,5.874431,0,0,O38:SA:CTP103042,Europe/Paris,,O38, +O38:SP:103044,1,"SAMLOC",45.30555,5.618163,0,0,O38:SA:CTP103044,Europe/Paris,,O38, +O38:SP:103045,1,"RADIALL",45.307921,5.617428,0,0,OVO:SA:CTP14914,Europe/Paris,,O38, +O38:SP:103046,1,"POMAGALSKI",45.309918,5.61407,0,0,O38:SA:CTP103046,Europe/Paris,,O38, +O38:SP:103047,1,"ALUMINIUM",45.312471,5.609138,0,0,O38:SA:CTP103047,Europe/Paris,,O38, +O38:SP:103048,1,"RELAIS INFO SERVICES",45.314173,5.605299,0,0,O38:SA:CTP103048,Europe/Paris,,O38, +O38:SP:103049,1,"RD1085 PORTE DU VERCORS",45.314518,5.606493,0,0,O38:SA:CTP103049,Europe/Paris,,O38, +O38:SP:10305,1,"CAFE MERMET",45.590948,5.519858,0,0,O38:SA:CTP10304,Europe/Paris,,O38, +O38:SP:103054,1,"CHABETENEYRE - LES EGARRAS",44.739247,5.752581,0,0,O38:SA:CTP103054,Europe/Paris,,O38, +O38:SP:10306,1,"AVOLIN",45.573228,5.535233,0,0,O38:SA:CTP10306,Europe/Paris,,O38, +O38:SP:10307,1,"AVOLIN",45.573183,5.535207,0,0,O38:SA:CTP10306,Europe/Paris,,O38, +O38:SP:10308,1,"FAVERGES-ECOLES",45.590808,5.525035,0,0,O38:SA:CTP10308,Europe/Paris,,O38, +O38:SP:10309,1,"FAVERGES-ECOLES",45.590744,5.52505,0,0,O38:SA:CTP10308,Europe/Paris,,O38, +O38:SP:1031,1,"LES RITONS",45.028569,5.522748,0,0,O38:SA:CTP1030,Europe/Paris,,O38, +O38:SP:10310,1,"VERONIN ECOLE",45.597303,5.5053,0,0,O38:SA:CTP10310,Europe/Paris,,O38, +O38:SP:10311,1,"VERONIN ECOLE",45.597251,5.505372,0,0,O38:SA:CTP10310,Europe/Paris,,O38, +O38:SP:10312,1,"LE TRAVERSOUD",45.59535,5.501527,0,0,O38:SA:CTP10312,Europe/Paris,,O38, +O38:SP:10313,1,"LE TRAVERSOUD",45.595303,5.501575,0,0,O38:SA:CTP10312,Europe/Paris,,O38, +O38:SP:10314,1,"LE LACA-CROIS.D16K",45.595899,5.494221,0,0,O38:SA:CTP10314,Europe/Paris,,O38, +O38:SP:103143,1,"CUINAT ET COQUIER",45.719225,5.270329,0,0,O38:SA:CTP103143,Europe/Paris,,O38, +O38:SP:103144,1,"CUINAT ET COQUIER",45.720985,5.263773,0,0,O38:SA:CTP103144,Europe/Paris,,O38, +O38:SP:10315,1,"LE LACA-CROIS.D16K",45.595844,5.494286,0,0,O38:SA:CTP10314,Europe/Paris,,O38, +O38:SP:103158,1,"GARE",45.250845,5.852475,0,0,O38:SA:CTP103158,Europe/Paris,,O38, +O38:SP:103159,1,"Z.I. MOLLARD",45.568208,5.963585,0,0,O38:SA:CTP9665,Europe/Paris,,O38, +O38:SP:10316,1,"LES BRUYERES",45.589662,5.496452,0,0,O38:SA:CTP10316,Europe/Paris,,O38, +O38:SP:103160,1,"CENTRE COMMERCIAL BASSENS",45.572289,5.944073,0,0,O38:SA:CTP11953,Europe/Paris,,O38, +O38:SP:103161,1,"JOPPET",45.569513,5.932226,0,0,O38:SA:CTP10466,Europe/Paris,,O38, +O38:SP:10317,1,"LES BRUYERES",45.589734,5.49646,0,0,O38:SA:CTP10316,Europe/Paris,,O38, +O38:SP:103171,1,"FOYER LAURENT BOUVIER",45.346079,4.813497,0,0,O38:SA:CTP103171,Europe/Paris,,O38, +O38:SP:103172,1,"FOYER LAURENT BOUVIER",45.346094,4.813663,0,0,O38:SA:CTP103171,Europe/Paris,,O38, +O38:SP:10318,1,"LE GINARD",45.594834,5.553797,0,0,O38:SA:CTP10318,Europe/Paris,,O38, +O38:SP:10319,1,"BELLEFONTAINE",45.581037,5.49029,0,0,O38:SA:CTP10319,Europe/Paris,,O38, +O38:SP:1032,1,"LES MARECHAUX",45.033301,5.531142,0,0,O38:SA:CTP1032,Europe/Paris,,O38, +O38:SP:10320,1,"BELLEFONTAINE",45.581104,5.490252,0,0,O38:SA:CTP10319,Europe/Paris,,O38, +O38:SP:10321,1,"MAUCHAMP",45.574848,5.513222,0,0,O38:SA:CTP10321,Europe/Paris,,O38, +O38:SP:103219,1,"PLACE DU 19/03/1962",45.354204,5.607714,0,0,OVO:SA:CTP14441,Europe/Paris,,O38, +O38:SP:10322,1,"MAUCHAMP",45.574923,5.513205,0,0,O38:SA:CTP10321,Europe/Paris,,O38, +O38:SP:103220,1,"PLACE DU 19/03/1962",45.35412,5.607738,0,0,OVO:SA:CTP14441,Europe/Paris,,O38, +O38:SP:103221,1,"CHEMIN DES SABLES",45.646141,5.459312,0,0,O38:SA:CTP103221,Europe/Paris,,O38, +O38:SP:103222,1,"CHEMIN DES SABLES",45.646069,5.459229,0,0,O38:SA:CTP103221,Europe/Paris,,O38, +O38:SP:103223,1,"HAMEAU LE DESERT",45.02681,5.845792,0,0,O38:SA:CTP103223,Europe/Paris,,O38, +O38:SP:103224,1,"LES ALPETS",45.027041,5.855453,0,0,O38:SA:CTP103224,Europe/Paris,,O38, +O38:SP:103225,1,"ROUTE DE ROVON",45.203899,5.46547,0,0,O38:SA:CTP3063,Europe/Paris,,O38, +O38:SP:103226,1,"MONTEE DE TECHE",45.187262,5.384098,0,0,O38:SA:CTP2979,Europe/Paris,,O38, +O38:SP:10323,1,"BOUTTIERES",45.577297,5.554624,0,0,O38:SA:CTP10323,Europe/Paris,,O38, +O38:SP:10324,1,"BOUTTIERES",45.577342,5.554544,0,0,O38:SA:CTP10323,Europe/Paris,,O38, +O38:SP:103259,1,"SAMPAN",45.61398,5.054037,0,0,O38:SA:CTP103259,Europe/Paris,,O38, +O38:SP:10326,1,"LA BALLATIERE",45.584682,5.509053,0,0,O38:SA:CTP10326,Europe/Paris,,O38, +O38:SP:103260,1,"SAMPAN",45.6138,5.054069,0,0,O38:SA:CTP103259,Europe/Paris,,O38, +O38:SP:103261,1,"GROUPE SCOLAIRE",45.420666,4.897253,0,0,O38:SA:CTP103261,Europe/Paris,,O38, +O38:SP:103262,1,"LE GONTARD - ECOLE",45.431937,4.938017,0,0,O38:SA:CTP103262,Europe/Paris,,O38, +O38:SP:103263,1,"STADE",45.613299,5.020537,0,0,O38:SA:CTP103263,Europe/Paris,,O38, +O38:SP:103264,1,"STADE",45.6133,5.020838,0,0,O38:SA:CTP103263,Europe/Paris,,O38, +O38:SP:103265,1,"ST BAUVAIS",44.788186,5.755715,0,0,O38:SA:CTP451,Europe/Paris,,O38, +O38:SP:103266,1,"TREZANNE",44.820852,5.581846,0,0,O38:SA:CTP103266,Europe/Paris,,O38, +O38:SP:103267,1,"BERNARDIERE",44.813753,5.572603,0,0,O38:SA:CTP103267,Europe/Paris,,O38, +O38:SP:103268,1,"BERNARDIERE",44.813745,5.572619,0,0,O38:SA:CTP103267,Europe/Paris,,O38, +O38:SP:103269,1,"DONNIERE",44.821185,5.553951,0,0,O38:SA:CTP103269,Europe/Paris,,O38, +O38:SP:10327,1,"LA BALLATIERE",45.584755,5.50897,0,0,O38:SA:CTP10326,Europe/Paris,,O38, +O38:SP:103270,1,"DONNIERE",44.821281,5.553947,0,0,O38:SA:CTP103269,Europe/Paris,,O38, +O38:SP:10328,1,"EVRIEU",45.583386,5.543008,0,0,O38:SA:CTP10328,Europe/Paris,,O38, +O38:SP:103286,1,"CHEMIN DE SAINT-MARTIN",45.22213,5.793567,0,0,O38:SA:CTP103286,Europe/Paris,,O38, +O38:SP:103287,1,"CHEMIN DE SAINT-MARTIN",45.222059,5.793511,0,0,O38:SA:CTP103286,Europe/Paris,,O38, +O38:SP:10329,1,"EVRIEU",45.583295,5.542983,0,0,O38:SA:CTP10328,Europe/Paris,,O38, +O38:SP:103290,1,"PETIT COZANCE",45.702123,5.32885,0,0,O38:SA:CTP103290,Europe/Paris,,O38, +O38:SP:103291,1,"PETIT COZANCE",45.702288,5.328785,0,0,O38:SA:CTP103290,Europe/Paris,,O38, +O38:SP:103292,1,"BEAUSOLEIL",45.498811,5.221229,0,0,O38:SA:CTP103292,Europe/Paris,,O38, +O38:SP:103293,1,"BEAUSOLEIL",45.498312,5.221535,0,0,O38:SA:CTP103292,Europe/Paris,,O38, +O38:SP:1033,1,"LES MARECHAUX",45.033372,5.531122,0,0,O38:SA:CTP1032,Europe/Paris,,O38, +O38:SP:10330,1,"LE GURDIN",45.56926,5.533789,0,0,O38:SA:CTP10330,Europe/Paris,,O38, +O38:SP:103303,1,"LA CROIX FERREE",45.160737,5.618448,0,0,O38:SA:CTP103303,Europe/Paris,,O38, +O38:SP:103304,1,"LA CROIX FERREE",45.160351,5.619006,0,0,O38:SA:CTP103303,Europe/Paris,,O38, +O38:SP:103305,1,"LE MAS DU BIROLLET",45.072042,5.315567,0,0,O38:SA:CTP103305,Europe/Paris,,O38, +O38:SP:103306,1,"LE MAS DU BIROLLET",45.072008,5.315446,0,0,O38:SA:CTP103305,Europe/Paris,,O38, +O38:SP:103308,1,"PARABOOT",45.321365,5.60021,0,0,O38:SA:CTP103308,Europe/Paris,,O38, +O38:SP:103309,1,"PARABOOT",45.321361,5.600424,0,0,O38:SA:CTP103308,Europe/Paris,,O38, +O38:SP:10331,1,"LE GURDIN",45.569266,5.533891,0,0,O38:SA:CTP10330,Europe/Paris,,O38, +O38:SP:103310,1,"LES MARCEAUX",44.77476,5.782116,0,0,O38:SA:CTP103310,Europe/Paris,,O38, +O38:SP:103311,1,"LES MARCEAUX",44.774761,5.782065,0,0,O38:SA:CTP103310,Europe/Paris,,O38, +O38:SP:103312,1,"LA BERNARDIERE",45.425006,5.513562,0,0,OVO:SA:CTP15075,Europe/Paris,,O38, +O38:SP:103313,1,"LA BERNARDIERE",45.424997,5.513807,0,0,OVO:SA:CTP15075,Europe/Paris,,O38, +O38:SP:103314,1,"MAIRIE",45.091886,6.063315,0,0,O38:SA:CTP103314,Europe/Paris,,O38, +O38:SP:103315,1,"PONT DE L'EAU D'OLLE",45.121627,6.023074,0,0,O38:SA:CTP103315,Europe/Paris,,O38, +O38:SP:10332,1,"VERSIN",45.55785,5.539833,0,0,O38:SA:CTP10332,Europe/Paris,,O38, +O38:SP:103329,1,"LE BURON",45.477903,4.977338,0,0,OIV:SA:CTP8328,Europe/Paris,,O38, +O38:SP:10333,1,"VERSIN",45.557901,5.539761,0,0,O38:SA:CTP10332,Europe/Paris,,O38, +O38:SP:103330,1,"LA QUEUE DU LOUP",45.214301,5.397111,0,0,O38:SA:CTP103330,Europe/Paris,,O38, +O38:SP:103331,1,"LA QUEUE DU LOUP",45.214887,5.397514,0,0,O38:SA:CTP103330,Europe/Paris,,O38, +O38:SP:103332,1,"RUE KERDREAN",45.325238,5.564333,0,0,O38:SA:CTP103332,Europe/Paris,,O38, +O38:SP:103334,1,"LE BOIS DE CLAIX VC",45.106767,5.279164,0,0,O38:SA:CTP103334,Europe/Paris,,O38, +O38:SP:103335,1,"LE BOIS DE CLAIX VC",45.10682,5.279336,0,0,O38:SA:CTP103334,Europe/Paris,,O38, +O38:SP:103336,1,"CENTRE AROEVEN",45.3929,5.844137,0,0,O38:SA:CTP103336,Europe/Paris,,O38, +O38:SP:103338,1,"Z.A DU ROCHER",45.518953,4.929825,0,0,O38:SA:CTP103338,Europe/Paris,,O38, +O38:SP:103339,1,"GARE SNCF LAVOISIER",45.372141,4.794747,0,0,O38:SA:CTP103339,Europe/Paris,,O38, +O38:SP:10334,1,"RUE BRANLY",45.556807,5.53618,0,0,O38:SA:CTP10334,Europe/Paris,,O38, +O38:SP:103348,1,"COVET",45.566116,5.915387,0,0,O38:SA:CTP103348,Europe/Paris,,O38, +O38:SP:103349,1,"COVET",45.566271,5.915183,0,0,O38:SA:CTP103348,Europe/Paris,,O38, +O38:SP:10335,1,"RUE BRANLY",45.55671,5.536031,0,0,O38:SA:CTP10334,Europe/Paris,,O38, +O38:SP:103350,1,"AVENUE D'ARGENSON",45.054497,5.679023,0,0,O38:SA:CTP103350,Europe/Paris,,O38, +O38:SP:103351,1,"AVENUE D'ARGENSON",45.05453,5.678921,0,0,O38:SA:CTP103350,Europe/Paris,,O38, +O38:SP:103352,1,"LES FRAISSES",44.9195,5.570932,0,0,O38:SA:CTP103352,Europe/Paris,,O38, +O38:SP:103353,1,"LES FRAISSES",44.91963,5.570731,0,0,O38:SA:CTP103352,Europe/Paris,,O38, +O38:SP:103354,1,"ECOLES",45.508921,5.596376,0,0,O38:SA:CTP103354,Europe/Paris,,O38, +O38:SP:103355,1,"ECOLES",45.508882,5.596463,0,0,O38:SA:CTP103354,Europe/Paris,,O38, +O38:SP:103356,1,"LE SOUGEY",45.506567,5.621909,0,0,O38:SA:CTP103356,Europe/Paris,,O38, +O38:SP:103357,1,"LE SOUGEY",45.506538,5.622,0,0,O38:SA:CTP103356,Europe/Paris,,O38, +O38:SP:103358,1,"LE CHAMPLAS",44.939313,5.972646,0,0,O38:SA:CTP103358,Europe/Paris,,O38, +O38:SP:103359,1,"LE CHAMPLAS",44.939352,5.972743,0,0,O38:SA:CTP103358,Europe/Paris,,O38, +O38:SP:10336,1,"CHARPENAY-TAILLIS",45.566801,5.496322,0,0,O38:SA:CTP10336,Europe/Paris,,O38, +O38:SP:103361,1,"CHOCHE - BOULONGEAT",45.456953,5.654682,0,0,OVO:SA:CTP14682,Europe/Paris,,O38, +O38:SP:103369,1,"CHOCHE - LE PARIS",45.455608,5.648499,0,0,O38:SA:CTP7891,Europe/Paris,,O38, +O38:SP:10337,1,"CHARPENAY-TAILLIS",45.566729,5.496316,0,0,O38:SA:CTP10336,Europe/Paris,,O38, +O38:SP:103370,1,"CHOCHE - LES BROSSES",45.45411,5.643912,0,0,OVO:SA:CTP7906,Europe/Paris,,O38, +O38:SP:103371,1,"LE THAU",44.826494,5.724955,0,0,O38:SA:CTP103371,Europe/Paris,,O38, +O38:SP:103372,1,"LE THAU",44.826567,5.724824,0,0,O38:SA:CTP103371,Europe/Paris,,O38, +O38:SP:103373,1,"ECOLE",45.49802,5.537241,0,0,O38:SA:CTP103373,Europe/Paris,,O38, +O38:SP:103374,1,"ECOLE",45.498005,5.5373,0,0,O38:SA:CTP103373,Europe/Paris,,O38, +O38:SP:103375,1,"ROUTE DE PISIEU",45.345479,5.056506,0,0,O38:SA:CTP103375,Europe/Paris,,O38, +O38:SP:103376,1,"ROUTE DE PISIEU",45.34551,5.056597,0,0,O38:SA:CTP103375,Europe/Paris,,O38, +O38:SP:103377,1,"CHEMIN DES BOURDOIRES",45.396635,5.751129,0,0,O38:SA:CTP103377,Europe/Paris,,O38, +O38:SP:103378,1,"CHEMIN DES BOURDOIRES",45.39658,5.75115,0,0,O38:SA:CTP103377,Europe/Paris,,O38, +O38:SP:10338,1,"BIEZE",45.574412,5.489832,0,0,O38:SA:CTP10338,Europe/Paris,,O38, +O38:SP:103380,1,"BOIS VERT ROUTE DE RIVES",45.3393,5.517012,0,0,O38:SA:CTP103380,Europe/Paris,,O38, +O38:SP:103381,1,"BOIS VERT ROUTE DE RIVES",45.339239,5.517025,0,0,O38:SA:CTP103380,Europe/Paris,,O38, +O38:SP:103382,1,"FERME BOURDIS",45.344745,5.521271,0,0,O38:SA:CTP103382,Europe/Paris,,O38, +O38:SP:103383,1,"FERME BOURDIS",45.344821,5.521193,0,0,O38:SA:CTP103382,Europe/Paris,,O38, +O38:SP:103384,1,"LA VACHE",45.110415,5.269745,0,0,O38:SA:CTP103384,Europe/Paris,,O38, +O38:SP:103385,1,"FERME DUMAS",44.876057,5.61129,0,0,O38:SA:CTP103385,Europe/Paris,,O38, +O38:SP:103386,1,"FERME DUMAS",44.876019,5.611339,0,0,O38:SA:CTP103385,Europe/Paris,,O38, +O38:SP:103387,1,"PARKING LYCEE PIERRE BEGHIN",45.320248,5.588722,0,0,O38:SA:CTP103387,Europe/Paris,,O38, +O38:SP:10339,1,"BIEZE",45.574381,5.490769,0,0,O38:SA:CTP10338,Europe/Paris,,O38, +O38:SP:10340,1,"SAINT-MARTIN",45.591654,5.492895,0,0,O38:SA:CTP10340,Europe/Paris,,O38, +O38:SP:10341,1,"SAINT-MARTIN",45.591704,5.492966,0,0,O38:SA:CTP10340,Europe/Paris,,O38, +O38:SP:10342,1,"LE SUER",45.571113,5.515302,0,0,O38:SA:CTP10342,Europe/Paris,,O38, +O38:SP:103430,1,"LA PLAINE",45.759422,5.187361,0,0,O38:SA:CTP103430,Europe/Paris,,O38, +O38:SP:103431,1,"ECOLE PUBLIQUE",44.900214,5.908148,0,0,O38:SA:CTP103431,Europe/Paris,,O38, +O38:SP:103432,1,"ECOLE PUBLIQUE",44.900281,5.908203,0,0,O38:SA:CTP103431,Europe/Paris,,O38, +O38:SP:10344,1,"LE CRET",45.555396,5.549435,0,0,O38:SA:CTP10344,Europe/Paris,,O38, +O38:SP:10345,1,"LE CRET",45.555439,5.549468,0,0,O38:SA:CTP10344,Europe/Paris,,O38, +O38:SP:10346,1,"L'EGLISE",45.576958,5.600477,0,0,O38:SA:CTP10346,Europe/Paris,,O38, +O38:SP:10347,1,"L'EGLISE",45.576844,5.599876,0,0,O38:SA:CTP10346,Europe/Paris,,O38, +O38:SP:10348,1,"LA CUISINIERE",45.579157,5.588367,0,0,O38:SA:CTP10348,Europe/Paris,,O38, +O38:SP:10349,1,"LA CUISINIERE",45.579138,5.588495,0,0,O38:SA:CTP10348,Europe/Paris,,O38, +O38:SP:10350,1,"LES ECOLES",45.589619,5.604631,0,0,O38:SA:CTP10350,Europe/Paris,,O38, +O38:SP:10351,1,"LES ECOLES",45.589649,5.604519,0,0,O38:SA:CTP10350,Europe/Paris,,O38, +O38:SP:10352,1,"LE DECOUSU",45.572375,5.595986,0,0,O38:SA:CTP10352,Europe/Paris,,O38, +O38:SP:10353,1,"LE DECOUSU",45.572445,5.595917,0,0,O38:SA:CTP10352,Europe/Paris,,O38, +O38:SP:10354,1,"MAROC",45.56359,5.564154,0,0,O38:SA:CTP10354,Europe/Paris,,O38, +O38:SP:10355,1,"MAROC",45.563607,5.564195,0,0,O38:SA:CTP10354,Europe/Paris,,O38, +O38:SP:10356,1,"LE BOIS",45.596074,5.570337,0,0,O38:SA:CTP10356,Europe/Paris,,O38, +O38:SP:10357,1,"LE BOIS",45.596287,5.569835,0,0,O38:SA:CTP10356,Europe/Paris,,O38, +O38:SP:10358,1,"LES RIVOIRES 1",45.596812,5.563964,0,0,O38:SA:CTP10358,Europe/Paris,,O38, +O38:SP:10359,1,"LES JAYERES",45.595043,5.572904,0,0,O38:SA:CTP10359,Europe/Paris,,O38, +O38:SP:10360,1,"LES JAYERES",45.594977,5.573268,0,0,O38:SA:CTP10359,Europe/Paris,,O38, +O38:SP:10361,1,"LA LIBARDE",45.556283,5.593375,0,0,O38:SA:CTP10361,Europe/Paris,,O38, +O38:SP:10362,1,"LA LIBARDE",45.556554,5.593447,0,0,O38:SA:CTP10361,Europe/Paris,,O38, +O38:SP:10363,1,"LES PETITES TERNES",45.56784,5.595965,0,0,O38:SA:CTP10363,Europe/Paris,,O38, +O38:SP:10364,1,"LES PETITES TERNES",45.567884,5.596005,0,0,O38:SA:CTP10363,Europe/Paris,,O38, +O38:SP:10365,1,"LE BUGNON",45.597908,5.565294,0,0,O38:SA:CTP10365,Europe/Paris,,O38, +O38:SP:10366,1,"LE VILLAGE",45.587438,5.607815,0,0,O38:SA:CTP10366,Europe/Paris,,O38, +O38:SP:10367,1,"LE VILLAGE",45.587506,5.607917,0,0,O38:SA:CTP10366,Europe/Paris,,O38, +O38:SP:10368,1,"STATION D'EPURATION",45.57781,5.592643,0,0,O38:SA:CTP10368,Europe/Paris,,O38, +O38:SP:10369,1,"STATION D'EPURATION",45.577877,5.592679,0,0,O38:SA:CTP10368,Europe/Paris,,O38, +O38:SP:1037,1,"CLOS DE LA BALME",45.020695,5.529294,0,0,ONL:SA:CTP1034,Europe/Paris,,O38, +O38:SP:10370,1,"BOIS DE LEYSSINS",45.578199,5.576803,0,0,O38:SA:CTP10370,Europe/Paris,,O38, +O38:SP:10371,1,"LES GRANDES TERNES",45.56451,5.597703,0,0,O38:SA:CTP10371,Europe/Paris,,O38, +O38:SP:10372,1,"HLM PIERRE BLANCHE",45.570968,5.601144,0,0,O38:SA:CTP10372,Europe/Paris,,O38, +O38:SP:10373,1,"HLM PIERRE BLANCHE",45.570996,5.600983,0,0,O38:SA:CTP10372,Europe/Paris,,O38, +O38:SP:10374,1,"LE GUILLERMARD",45.59144,5.559908,0,0,O38:SA:CTP10374,Europe/Paris,,O38, +O38:SP:10375,1,"ECOLE LA BRUYERE",45.554546,5.615679,0,0,O38:SA:CTP10375,Europe/Paris,,O38, +O38:SP:10376,1,"ECOLE LA BRUYERE",45.554598,5.615623,0,0,O38:SA:CTP10375,Europe/Paris,,O38, +O38:SP:10379,1,"MEUDENIN",45.577578,5.569242,0,0,O38:SA:CTP10379,Europe/Paris,,O38, +O38:SP:10380,1,"CARREFOUR BRESSAN N.516",45.5812,5.567154,0,0,O38:SA:CTP10380,Europe/Paris,,O38, +O38:SP:10381,1,"CARREFOUR BRESSAN N.516",45.58127,5.567174,0,0,O38:SA:CTP10380,Europe/Paris,,O38, +O38:SP:10382,1,"LES CHARMILLES",45.593908,5.621825,0,0,O38:SA:CTP10382,Europe/Paris,,O38, +O38:SP:10383,1,"LES CHARMILLES",45.594092,5.621186,0,0,O38:SA:CTP10382,Europe/Paris,,O38, +O38:SP:10384,1,"LES PLANCHES",45.592285,5.618005,0,0,O38:SA:CTP10384,Europe/Paris,,O38, +O38:SP:10385,1,"LES PLANCHES",45.592219,5.617817,0,0,O38:SA:CTP10384,Europe/Paris,,O38, +O38:SP:10386,1,"VILLAGE",45.598447,5.588133,0,0,O38:SA:CTP10386,Europe/Paris,,O38, +O38:SP:10387,1,"VILLAGE",45.598516,5.588136,0,0,O38:SA:CTP10386,Europe/Paris,,O38, +O38:SP:10388,1,"LE GAY",45.594106,5.591641,0,0,O38:SA:CTP10388,Europe/Paris,,O38, +O38:SP:10389,1,"LE GAY",45.594261,5.591674,0,0,O38:SA:CTP10388,Europe/Paris,,O38, +O38:SP:1039,1,"OFFICE DE TOURISME",45.031743,5.527188,0,0,O38:SA:CTP1039,Europe/Paris,,O38, +O38:SP:10390,1,"LE CHANET",45.578435,5.622738,0,0,O38:SA:CTP10390,Europe/Paris,,O38, +O38:SP:10391,1,"LE CHANET",45.578486,5.622714,0,0,O38:SA:CTP10390,Europe/Paris,,O38, +O38:SP:10392,1,"LES FERRIERES",45.560497,5.616952,0,0,O38:SA:CTP10392,Europe/Paris,,O38, +O38:SP:10393,1,"LES FERRIERES",45.560544,5.616875,0,0,O38:SA:CTP10392,Europe/Paris,,O38, +O38:SP:10394,1,"MALATRAIT",45.564969,5.618798,0,0,O38:SA:CTP10394,Europe/Paris,,O38, +O38:SP:10395,1,"MALATRAIT",45.564854,5.618815,0,0,O38:SA:CTP10394,Europe/Paris,,O38, +O38:SP:10396,1,"CHANET LE BAS",45.57336,5.620718,0,0,O38:SA:CTP10396,Europe/Paris,,O38, +O38:SP:10397,1,"CHANET LE BAS",45.573348,5.620724,0,0,O38:SA:CTP10396,Europe/Paris,,O38, +O38:SP:10398,1,"LA BIGOLANCHE",45.566238,5.619935,0,0,O38:SA:CTP10398,Europe/Paris,,O38, +O38:SP:10399,1,"CARREFOUR RTE CHIMILIN",45.575604,5.604335,0,0,O38:SA:CTP10399,Europe/Paris,,O38, +O38:SP:10400,1,"CARREFOUR RTE CHIMILIN",45.575522,5.604383,0,0,O38:SA:CTP10399,Europe/Paris,,O38, +O38:SP:10401,1,"ECOLES-POMPIERS",45.576354,5.598076,0,0,O38:SA:CTP10401,Europe/Paris,,O38, +O38:SP:10402,1,"ECOLES-POMPIERS",45.576321,5.597998,0,0,O38:SA:CTP10401,Europe/Paris,,O38, +O38:SP:10403,1,"BORGERON",45.574354,5.615655,0,0,O38:SA:CTP10403,Europe/Paris,,O38, +O38:SP:10404,1,"BORGERON",45.574489,5.615634,0,0,O38:SA:CTP10403,Europe/Paris,,O38, +O38:SP:10407,1,"LE MARTINET",45.590751,5.595386,0,0,O38:SA:CTP10407,Europe/Paris,,O38, +O38:SP:10408,1,"LE MARTINET",45.590682,5.595391,0,0,O38:SA:CTP10407,Europe/Paris,,O38, +O38:SP:10409,1,"NORMANDOZ",45.587239,5.600069,0,0,O38:SA:CTP10409,Europe/Paris,,O38, +O38:SP:1041,1,"OFFICE DE TOURISME",45.031948,5.527269,0,0,O38:SA:CTP1039,Europe/Paris,,O38, +O38:SP:10410,1,"NORMANDOZ",45.587286,5.600409,0,0,O38:SA:CTP10409,Europe/Paris,,O38, +O38:SP:10411,1,"CHARMILLES APRES LA CROIX",45.589146,5.623483,0,0,O38:SA:CTP10411,Europe/Paris,,O38, +O38:SP:10412,1,"CHARMILLES APRES LA CROIX",45.589768,5.623423,0,0,O38:SA:CTP10411,Europe/Paris,,O38, +O38:SP:10413,1,"GARE DE L'EST",45.597141,5.628265,0,0,O38:SA:CTP10413,Europe/Paris,,O38, +O38:SP:10414,1,"GARE DE L'EST",45.597162,5.628173,0,0,O38:SA:CTP10413,Europe/Paris,,O38, +O38:SP:10415,1,"CENTRE",45.570089,5.641702,0,0,O38:SA:CTP10415,Europe/Paris,,O38, +O38:SP:10418,1,"CENTRE",45.570083,5.641847,0,0,O38:SA:CTP10415,Europe/Paris,,O38, +O38:SP:10419,1,"MUNERI",45.553021,5.643164,0,0,O38:SA:CTP10419,Europe/Paris,,O38, +O38:SP:1042,1,"LE PIGEONNIER",44.994109,5.650771,0,0,O38:SA:CTP1042,Europe/Paris,,O38, +O38:SP:10420,1,"MUNERI",45.552968,5.643013,0,0,O38:SA:CTP10419,Europe/Paris,,O38, +O38:SP:10421,1,"AVAUX LAVOIR",45.557609,5.660204,0,0,O38:SA:CTP10421,Europe/Paris,,O38, +O38:SP:10422,1,"AVAUX LAVOIR",45.557606,5.660226,0,0,O38:SA:CTP10421,Europe/Paris,,O38, +O38:SP:10424,1,"ROUTE DU FAYET",45.557859,5.643862,0,0,O38:SA:CTP10424,Europe/Paris,,O38, +O38:SP:10425,1,"LE VORGET",45.579465,5.636302,0,0,O38:SA:CTP10425,Europe/Paris,,O38, +O38:SP:10426,1,"LE VORGET",45.57941,5.636235,0,0,O38:SA:CTP10425,Europe/Paris,,O38, +O38:SP:10428,1,"LA COLONGE",45.55162,5.655508,0,0,O38:SA:CTP10428,Europe/Paris,,O38, +O38:SP:10429,1,"LA CHAPELIERE",45.597181,5.627564,0,0,O38:SA:CTP10429,Europe/Paris,,O38, +O38:SP:1043,1,"LE PIGEONNIER",44.994102,5.650691,0,0,O38:SA:CTP1042,Europe/Paris,,O38, +O38:SP:10430,1,"VORGET LE LAC",45.576047,5.641203,0,0,O38:SA:CTP10430,Europe/Paris,,O38, +O38:SP:10431,1,"VORGET LE LAC",45.576112,5.641249,0,0,O38:SA:CTP10430,Europe/Paris,,O38, +O38:SP:10434,1,"AIRE SERVICE A.43",45.577131,5.630719,0,0,O38:SA:CTP10434,Europe/Paris,,O38, +O38:SP:10435,1,"AIRE SERVICE A.43",45.577159,5.630592,0,0,O38:SA:CTP10434,Europe/Paris,,O38, +O38:SP:10436,1,"ECOLES",45.570022,5.641466,0,0,O38:SA:CTP10436,Europe/Paris,,O38, +O38:SP:10437,1,"ECOLES",45.569947,5.641149,0,0,O38:SA:CTP10436,Europe/Paris,,O38, +O38:SP:10438,1,"PRIOLAZ",45.554383,5.629524,0,0,O38:SA:CTP10438,Europe/Paris,,O38, +O38:SP:10439,1,"PRIOLAZ",45.5543,5.629772,0,0,O38:SA:CTP10438,Europe/Paris,,O38, +O38:SP:1044,1,"LA GARE",44.990924,5.64972,0,0,O38:SA:CTP1044,Europe/Paris,,O38, +O38:SP:10440,1,"LE NAN FERME REVOL",45.554272,5.63454,0,0,O38:SA:CTP10440,Europe/Paris,,O38, +O38:SP:10441,1,"LE NAN FERME REVOL",45.554214,5.634591,0,0,O38:SA:CTP10440,Europe/Paris,,O38, +O38:SP:10444,1,"ROUTE D'AVAUX",45.555113,5.667299,0,0,O38:SA:CTP10444,Europe/Paris,,O38, +O38:SP:10446,1,"LES CHAMPAGNES 2",45.574444,5.634452,0,0,O38:SA:CTP10446,Europe/Paris,,O38, +O38:SP:10447,1,"LES CHAMPAGNES 2",45.574669,5.634345,0,0,O38:SA:CTP10446,Europe/Paris,,O38, +O38:SP:10448,1,"AVAUX BOURG",45.556603,5.665727,0,0,O38:SA:CTP10448,Europe/Paris,,O38, +O38:SP:10449,1,"AVAUX BOURG",45.556673,5.665744,0,0,O38:SA:CTP10448,Europe/Paris,,O38, +O38:SP:1045,1,"LA GARE",44.991592,5.649697,0,0,O38:SA:CTP1044,Europe/Paris,,O38, +O38:SP:10450,1,"HAMEAU LE NAN",45.556909,5.635014,0,0,O38:SA:CTP10450,Europe/Paris,,O38, +O38:SP:10451,1,"HAMEAU LE NAN",45.556969,5.635069,0,0,O38:SA:CTP10450,Europe/Paris,,O38, +O38:SP:10452,1,"LES RIVAUX",45.564885,5.649993,0,0,O38:SA:CTP10452,Europe/Paris,,O38, +O38:SP:10453,1,"LES RIVAUX",45.56477,5.649891,0,0,O38:SA:CTP10452,Europe/Paris,,O38, +O38:SP:10454,1,"LA TOUVANCHE",45.557483,5.659961,0,0,O38:SA:CTP10454,Europe/Paris,,O38, +O38:SP:10455,1,"LA TOUVANCHE",45.557481,5.659859,0,0,O38:SA:CTP10454,Europe/Paris,,O38, +O38:SP:10457,1,"LE HAUT FAYET",45.555751,5.650643,0,0,O38:SA:CTP10457,Europe/Paris,,O38, +O38:SP:10458,1,"ROUTE DE ST CASSIN",45.546364,5.88614,0,0,O38:SA:CTP10458,Europe/Paris,,O38, +O38:SP:10459,1,"ROUTE DE ST CASSIN",45.546612,5.886322,0,0,O38:SA:CTP10458,Europe/Paris,,O38, +O38:SP:10461,1,"GARE ROUTIERE",45.569958,5.917216,0,0,O38:SA:CTP10461,Europe/Paris,,O38, +O38:SP:10463,1,"GARE ROUTIERE",45.569928,5.917267,0,0,O38:SA:CTP10461,Europe/Paris,,O38, +O38:SP:10464,1,"COLLEGE N-D. DE LA VILLETTE",45.550982,5.952374,0,0,O38:SA:CTP10464,Europe/Paris,,O38, +O38:SP:10465,1,"COLLEGE N-D. DE LA VILLETTE",45.550892,5.952407,0,0,O38:SA:CTP10464,Europe/Paris,,O38, +O38:SP:10466,1,"JOPPET",45.569037,5.931056,0,0,O38:SA:CTP10466,Europe/Paris,,O38, +O38:SP:10467,1,"CENTRE",45.561237,5.898243,0,0,O38:SA:CTP10467,Europe/Paris,,O38, +O38:SP:10468,1,"CENTRE",45.56118,5.898285,0,0,O38:SA:CTP10467,Europe/Paris,,O38, +O38:SP:10470,1,"HOPITAL CHAMBERY",45.564207,5.911052,0,0,O38:SA:CTP10470,Europe/Paris,,O38, +O38:SP:10471,1,"HOPITAL CHAMBERY",45.564132,5.911084,0,0,O38:SA:CTP10470,Europe/Paris,,O38, +O38:SP:10474,1,"CHALLES CENTRE",45.549535,5.984465,0,0,O38:SA:CTP10474,Europe/Paris,,O38, +O38:SP:10475,1,"CHALLES CENTRE",45.549653,5.984126,0,0,O38:SA:CTP10474,Europe/Paris,,O38, +O38:SP:10476,1,"CROIX-ROUGE",45.652376,4.953874,0,0,DGL:SA:S11734,Europe/Paris,,O38, +O38:SP:10477,1,"CROIX-ROUGE",45.652437,4.954,0,0,DGL:SA:S11734,Europe/Paris,,O38, +O38:SP:10480,1,"LIBERATION",45.659015,4.953777,0,0,DGL:SA:S11733,Europe/Paris,,O38, +O38:SP:10481,1,"LIBERATION",45.658674,4.953828,0,0,DGL:SA:S11733,Europe/Paris,,O38, +O38:SP:10482,1,"23 AOUT 1944",45.66408,4.952358,0,0,O38:SA:CTP10482,Europe/Paris,,O38, +O38:SP:10483,1,"23 AOUT 1944",45.664111,4.95227,0,0,O38:SA:CTP10482,Europe/Paris,,O38, +O38:SP:10494,1,"LE FRINDEAU",45.64589,5.023628,0,0,DGL:SA:S34341,Europe/Paris,,O38, +O38:SP:10495,1,"LE FRINDEAU",45.645794,5.023705,0,0,DGL:SA:S34341,Europe/Paris,,O38, +O38:SP:10500,1,"BIBLIOTHEQUE",45.647582,5.012786,0,0,O38:SA:CTP10500,Europe/Paris,,O38, +O38:SP:10503,1,"AMEDEE RONIN",45.647611,5.011568,0,0,DGL:SA:S34342,Europe/Paris,,O38, +O38:SP:10504,1,"AMEDEE RONIN",45.647658,5.011713,0,0,DGL:SA:S34342,Europe/Paris,,O38, +O38:SP:10509,1,"LA GENDARMERIE",45.629411,5.069782,0,0,O38:SA:CTP10509,Europe/Paris,,O38, +O38:SP:10510,1,"LA GENDARMERIE",45.629337,5.069678,0,0,O38:SA:CTP10509,Europe/Paris,,O38, +O38:SP:10511,1,"LE FOYER RURAL",45.630327,5.062789,0,0,O38:SA:CTP10511,Europe/Paris,,O38, +O38:SP:10512,1,"LE FOYER RURAL",45.630253,5.062777,0,0,O38:SA:CTP10511,Europe/Paris,,O38, +O38:SP:10513,1,"COLLEGE JACQUES PREVERT",45.630885,5.055588,0,0,O38:SA:CTP10513,Europe/Paris,,O38, +O38:SP:10514,1,"COLLEGE JACQUES PREVERT",45.63095,5.055613,0,0,O38:SA:CTP10513,Europe/Paris,,O38, +O38:SP:10515,1,"LES BOSQUETS",45.6318,5.061684,0,0,O38:SA:CTP10515,Europe/Paris,,O38, +O38:SP:10516,1,"E.D.F.",45.631296,5.073897,0,0,O38:SA:CTP10516,Europe/Paris,,O38, +O38:SP:10517,1,"E.D.F.",45.631341,5.073814,0,0,O38:SA:CTP10516,Europe/Paris,,O38, +O38:SP:10518,1,"L'ALOUETTE",45.614706,5.082142,0,0,O38:SA:CTP10518,Europe/Paris,,O38, +O38:SP:10519,1,"L'ALOUETTE",45.613824,5.082231,0,0,O38:SA:CTP10518,Europe/Paris,,O38, +O38:SP:10520,1,"HAMEAU L'ALOUETTE",45.614229,5.085498,0,0,O38:SA:CTP10520,Europe/Paris,,O38, +O38:SP:10521,1,"HAMEAU L'ALOUETTE",45.61416,5.085469,0,0,O38:SA:CTP10520,Europe/Paris,,O38, +O38:SP:10522,1,"LAVIGNON",45.62692,5.068326,0,0,O38:SA:CTP10522,Europe/Paris,,O38, +O38:SP:10523,1,"LAVIGNON",45.626849,5.069027,0,0,O38:SA:CTP10522,Europe/Paris,,O38, +O38:SP:10524,1,"PLACE GAMBETTA",45.627533,5.064305,0,0,O38:SA:CTP10524,Europe/Paris,,O38, +O38:SP:10525,1,"PLACE GAMBETTA",45.627352,5.064077,0,0,O38:SA:CTP10524,Europe/Paris,,O38, +O38:SP:10526,1,"SOCAREL",45.635587,5.048985,0,0,O38:SA:CTP10526,Europe/Paris,,O38, +O38:SP:10527,1,"LA PISCINE",45.630843,5.058203,0,0,O38:SA:CTP10527,Europe/Paris,,O38, +O38:SP:10528,1,"LA PISCINE",45.630912,5.058229,0,0,O38:SA:CTP10527,Europe/Paris,,O38, +O38:SP:10531,1,"RAJAT",45.641113,5.034573,0,0,DGL:SA:S34339,Europe/Paris,,O38, +O38:SP:10532,1,"RAJAT",45.641305,5.034362,0,0,DGL:SA:S34339,Europe/Paris,,O38, +O38:SP:10535,1,"LE COMPAGNON",45.643821,5.030446,0,0,DGL:SA:S34340,Europe/Paris,,O38, +O38:SP:10536,1,"LE COMPAGNON",45.643906,5.030408,0,0,DGL:SA:S34340,Europe/Paris,,O38, +O38:SP:10538,1,"LA CENTIGONNIERE",45.618934,5.085269,0,0,O38:SA:CTP10538,Europe/Paris,,O38, +O38:SP:10539,1,"LA CENTIGONNIERE",45.618944,5.085247,0,0,O38:SA:CTP10538,Europe/Paris,,O38, +O38:SP:10542,1,"LES AVOCATS",45.659909,5.077397,0,0,O38:SA:CTP10542,Europe/Paris,,O38, +O38:SP:10543,1,"LES AVOCATS",45.659842,5.077361,0,0,O38:SA:CTP10542,Europe/Paris,,O38, +O38:SP:10544,1,"LE STADE",45.660786,5.084133,0,0,O38:SA:CTP10544,Europe/Paris,,O38, +O38:SP:10545,1,"LE STADE",45.660753,5.084225,0,0,O38:SA:CTP10544,Europe/Paris,,O38, +O38:SP:10546,1,"CHEMIN DES ORANGES",45.62567,5.060768,0,0,O38:SA:CTP10546,Europe/Paris,,O38, +O38:SP:10547,1,"CHEMIN DES ORANGES",45.625609,5.06087,0,0,O38:SA:CTP10546,Europe/Paris,,O38, +O38:SP:10549,1,"HOTEL DE LA POSTE",45.633375,5.146693,0,0,O38:SA:CTP10549,Europe/Paris,,O38, +O38:SP:10551,1,"HOTEL DE LA POSTE",45.633466,5.146631,0,0,O38:SA:CTP10549,Europe/Paris,,O38, +O38:SP:10552,1,"COLLEGE LOUIS ARAGON",45.617362,5.153134,0,0,O38:SA:CTP10552,Europe/Paris,,O38, +O38:SP:10553,1,"COLLEGE LOUIS ARAGON",45.617387,5.153038,0,0,O38:SA:CTP10552,Europe/Paris,,O38, +O38:SP:10555,1,"LIBERATION",45.640958,5.137356,0,0,O38:SA:CTP10555,Europe/Paris,,O38, +O38:SP:10556,1,"LIBERATION",45.641057,5.137407,0,0,O38:SA:CTP10555,Europe/Paris,,O38, +O38:SP:10558,1,"COL DES ARMIERES",45.624971,5.139319,0,0,O38:SA:CTP10558,Europe/Paris,,O38, +O38:SP:10560,1,"COL DES ARMIERES",45.624889,5.13918,0,0,O38:SA:CTP10558,Europe/Paris,,O38, +O38:SP:10566,1,"CHESNES RD1006",45.654421,5.114737,0,0,O38:SA:CTP10566,Europe/Paris,,O38, +O38:SP:10568,1,"CHESNES RD1006",45.653607,5.115871,0,0,O38:SA:CTP10566,Europe/Paris,,O38, +O38:SP:10570,1,"Z.I. CHAPEAU ROUGE",45.640005,5.121343,0,0,O38:SA:CTP10570,Europe/Paris,,O38, +O38:SP:10572,1,"Z.I. CHAPEAU ROUGE",45.6402,5.120771,0,0,O38:SA:CTP10570,Europe/Paris,,O38, +O38:SP:10575,1,"GARE SNCF",45.627462,5.151327,0,0,O38:SA:CTP10575,Europe/Paris,,O38, +O38:SP:10577,1,"GARE SNCF",45.627601,5.151389,0,0,O38:SA:CTP10575,Europe/Paris,,O38, +O38:SP:10579,1,"COLLEGE ANNE FRANK",45.634228,5.141928,0,0,O38:SA:CTP10579,Europe/Paris,,O38, +O38:SP:10581,1,"COLLEGE ANNE FRANK",45.634256,5.141982,0,0,O38:SA:CTP10579,Europe/Paris,,O38, +O38:SP:10584,1,"LA CRUIZILLE",45.621888,5.141312,0,0,O38:SA:CTP10584,Europe/Paris,,O38, +O38:SP:10586,1,"LA CRUIZILLE",45.622075,5.141269,0,0,O38:SA:CTP10584,Europe/Paris,,O38, +O38:SP:10590,1,"ANCIENNE GENDARMERIE",45.636847,5.143559,0,0,O38:SA:CTP10590,Europe/Paris,,O38, +O38:SP:10592,1,"ANCIENNE GENDARMERIE",45.636836,5.143672,0,0,O38:SA:CTP10590,Europe/Paris,,O38, +O38:SP:10594,1,"Z.I. RUE DU RUISSEAU",45.645787,5.103442,0,0,O38:SA:CTP10594,Europe/Paris,,O38, +O38:SP:10596,1,"Z.I. RUE DU RUISSEAU",45.644744,5.103946,0,0,O38:SA:CTP10594,Europe/Paris,,O38, +O38:SP:10598,1,"RIANTE PLAINE",45.638182,5.133951,0,0,O38:SA:CTP10598,Europe/Paris,,O38, +O38:SP:10600,1,"RIANTE PLAINE",45.638118,5.133904,0,0,O38:SA:CTP10598,Europe/Paris,,O38, +O38:SP:10605,1,"EXTERNAT STE-MARIE",45.628752,5.151823,0,0,O38:SA:CTP10605,Europe/Paris,,O38, +O38:SP:10607,1,"EXTERNAT STE-MARIE",45.628779,5.151794,0,0,O38:SA:CTP10605,Europe/Paris,,O38, +O38:SP:10610,1,"LE BOURG",45.613736,5.151576,0,0,O38:SA:CTP10610,Europe/Paris,,O38, +O38:SP:10612,1,"LE BOURG",45.613187,5.152094,0,0,O38:SA:CTP10610,Europe/Paris,,O38, +O38:SP:10613,1,"MONTJAY PLACE",45.629555,5.093936,0,0,O38:SA:CTP10613,Europe/Paris,,O38, +O38:SP:10614,1,"MONTJAY PLACE",45.629424,5.093888,0,0,O38:SA:CTP10613,Europe/Paris,,O38, +O38:SP:10616,1,"COLLEGE LES ALLINGES",45.628285,5.11448,0,0,O38:SA:CTP10616,Europe/Paris,,O38, +O38:SP:10617,1,"COLLEGE LES ALLINGES",45.628313,5.114574,0,0,O38:SA:CTP10616,Europe/Paris,,O38, +O38:SP:10619,1,"CHESNES-TOTEM",45.652081,5.119353,0,0,O38:SA:CTP10619,Europe/Paris,,O38, +O38:SP:1062,1,"GENEVREY ECOLE",45.027756,5.654476,0,0,O38:SA:CTP1062,Europe/Paris,,O38, +O38:SP:10620,1,"CHESNES-TOTEM",45.652112,5.119293,0,0,O38:SA:CTP10619,Europe/Paris,,O38, +O38:SP:10622,1,"CENTRE PENITENTIAIRE",45.658673,5.128548,0,0,O38:SA:CTP10622,Europe/Paris,,O38, +O38:SP:10623,1,"CENTRE PENITENTIAIRE",45.658658,5.128567,0,0,O38:SA:CTP10622,Europe/Paris,,O38, +O38:SP:10627,1,"LA NOIREE MLP",45.640127,5.108806,0,0,O38:SA:CTP10627,Europe/Paris,,O38, +O38:SP:10629,1,"LA NOIREE MLP",45.639625,5.109906,0,0,O38:SA:CTP10627,Europe/Paris,,O38, +O38:SP:1063,1,"GENEVREY ECOLE",45.027823,5.654441,0,0,O38:SA:CTP1062,Europe/Paris,,O38, +O38:SP:10636,1,"L'ANGONNE",45.635093,5.097423,0,0,O38:SA:CTP10636,Europe/Paris,,O38, +O38:SP:10639,1,"LES ROCHES",45.618355,5.153693,0,0,O38:SA:CTP10639,Europe/Paris,,O38, +O38:SP:1064,1,"COL DE L'ARZELIER",44.989329,5.594458,0,0,O38:SA:CTP1064,Europe/Paris,,O38, +O38:SP:10640,1,"LES ROCHES",45.618159,5.153417,0,0,O38:SA:CTP10639,Europe/Paris,,O38, +O38:SP:10646,1,"MAIRIE",45.632403,5.111274,0,0,O38:SA:CTP10646,Europe/Paris,,O38, +O38:SP:10648,1,"MAIRIE",45.632633,5.110413,0,0,O38:SA:CTP10646,Europe/Paris,,O38, +O38:SP:1065,1,"COL DE L'ARZELIER",44.989302,5.594552,0,0,O38:SA:CTP1064,Europe/Paris,,O38, +O38:SP:10654,1,"Z.I. LUZAIS A43",45.655745,5.101012,0,0,O38:SA:CTP10654,Europe/Paris,,O38, +O38:SP:10656,1,"Z.I. LUZAIS A43",45.655791,5.100859,0,0,O38:SA:CTP10654,Europe/Paris,,O38, +O38:SP:10659,1,"LE BERGERON",45.658496,5.172594,0,0,O38:SA:CTP10659,Europe/Paris,,O38, +O38:SP:10660,1,"LE BERGERON",45.658658,5.172487,0,0,O38:SA:CTP10659,Europe/Paris,,O38, +O38:SP:10661,1,"CAFE GIROUD",45.654012,5.203029,0,0,O38:SA:CTP10661,Europe/Paris,,O38, +O38:SP:10662,1,"CAFE GIROUD",45.654051,5.203242,0,0,O38:SA:CTP10661,Europe/Paris,,O38, +O38:SP:10663,1,"CORBEYSSIEU",45.638956,5.200287,0,0,O38:SA:CTP10663,Europe/Paris,,O38, +O38:SP:10664,1,"CORBEYSSIEU",45.638891,5.20024,0,0,O38:SA:CTP10663,Europe/Paris,,O38, +O38:SP:10665,1,"LES QUATRE VIES",45.65484,5.17797,0,0,O38:SA:CTP10665,Europe/Paris,,O38, +O38:SP:10666,1,"LES QUATRE VIES",45.654795,5.17789,0,0,O38:SA:CTP10665,Europe/Paris,,O38, +O38:SP:10668,1,"LYCEE PHILIBERT DELORME",45.622734,5.218219,0,0,O38:SA:CTP10668,Europe/Paris,,O38, +O38:SP:10670,1,"LYCEE PHILIBERT DELORME",45.622655,5.21813,0,0,O38:SA:CTP10668,Europe/Paris,,O38, +O38:SP:10671,1,"MASSONAS",45.652624,5.198769,0,0,O38:SA:CTP10671,Europe/Paris,,O38, +O38:SP:10672,1,"MASSONAS",45.652559,5.198812,0,0,O38:SA:CTP10671,Europe/Paris,,O38, +O38:SP:10673,1,"FOUILLOUZAN",45.650043,5.192312,0,0,O38:SA:CTP10673,Europe/Paris,,O38, +O38:SP:10674,1,"FOUILLOUZAN",45.649996,5.192389,0,0,O38:SA:CTP10673,Europe/Paris,,O38, +O38:SP:10676,1,"COLLEGE ROBERT DOISNEAU",45.620817,5.208662,0,0,O38:SA:CTP10676,Europe/Paris,,O38, +O38:SP:10677,1,"COLLEGE ROBERT DOISNEAU",45.620919,5.209542,0,0,O38:SA:CTP10676,Europe/Paris,,O38, +O38:SP:10678,1,"LE VILLAGE",45.648578,5.184165,0,0,O38:SA:CTP10678,Europe/Paris,,O38, +O38:SP:10679,1,"LE VILLAGE",45.648678,5.183981,0,0,O38:SA:CTP10678,Europe/Paris,,O38, +O38:SP:1068,1,"LES BRETS",45.015759,5.658632,0,0,O38:SA:CTP1068,Europe/Paris,,O38, +O38:SP:10685,1,"PARC TECHNOLOGIQUE OUEST",45.62437,5.162764,0,0,O38:SA:CTP10685,Europe/Paris,,O38, +O38:SP:10687,1,"PARC TECHNOLOGIQUE OUEST",45.625203,5.163564,0,0,O38:SA:CTP10685,Europe/Paris,,O38, +O38:SP:1069,1,"LES BRETS",45.015973,5.658587,0,0,O38:SA:CTP1068,Europe/Paris,,O38, +O38:SP:10690,1,"IUT - TRIFORIUM",45.621041,5.219817,0,0,O38:SA:CTP10690,Europe/Paris,,O38, +O38:SP:10692,1,"IUT - TRIFORIUM",45.62068,5.219676,0,0,O38:SA:CTP10690,Europe/Paris,,O38, +O38:SP:10698,1,"COLLEGE FRANCOIS TRUFFAUT",45.622596,5.225015,0,0,O38:SA:CTP10698,Europe/Paris,,O38, +O38:SP:1070,1,"LE VILLAGE",45.009552,5.700193,0,0,O38:SA:CTP1070,Europe/Paris,,O38, +O38:SP:10700,1,"COLLEGE FRANCOIS TRUFFAUT",45.622724,5.225093,0,0,O38:SA:CTP10698,Europe/Paris,,O38, +O38:SP:10704,1,"PIERRE LOUVE",45.613132,5.242005,0,0,O38:SA:CTP10704,Europe/Paris,,O38, +O38:SP:10706,1,"PIERRE LOUVE",45.613398,5.240913,0,0,O38:SA:CTP10704,Europe/Paris,,O38, +O38:SP:1071,1,"LE VILLAGE",45.009534,5.700303,0,0,O38:SA:CTP1070,Europe/Paris,,O38, +O38:SP:10711,1,"LE VILLAGE",45.622933,5.232099,0,0,O38:SA:CTP10711,Europe/Paris,,O38, +O38:SP:10712,1,"LE VILLAGE",45.623022,5.231944,0,0,O38:SA:CTP10711,Europe/Paris,,O38, +O38:SP:10714,1,"CENTRE COMMERCIAL",45.614959,5.225204,0,0,O38:SA:CTP10714,Europe/Paris,,O38, +O38:SP:10716,1,"CENTRE COMMERCIAL",45.614889,5.224796,0,0,O38:SA:CTP10714,Europe/Paris,,O38, +O38:SP:10717,1,"LES ALEXANDRES",45.646508,5.237528,0,0,O38:SA:CTP10717,Europe/Paris,,O38, +O38:SP:10718,1,"LES ALEXANDRES",45.64657,5.237569,0,0,O38:SA:CTP10717,Europe/Paris,,O38, +O38:SP:1072,1,"LE MOULIN",45.015111,5.704426,0,0,O38:SA:CTP1072,Europe/Paris,,O38, +O38:SP:10720,1,"COLLEGE CHAMPFLEURI",45.612085,5.26453,0,0,O38:SA:CTP10720,Europe/Paris,,O38, +O38:SP:10723,1,"LE GIRERD",45.642683,5.23262,0,0,O38:SA:CTP10723,Europe/Paris,,O38, +O38:SP:10724,1,"LE GIRERD",45.642618,5.23266,0,0,O38:SA:CTP10723,Europe/Paris,,O38, +O38:SP:10725,1,"CHAUDENOUD-RD.18F",45.652114,5.265437,0,0,O38:SA:CTP10725,Europe/Paris,,O38, +O38:SP:10726,1,"CHAUDENOUD-RD.18F",45.652174,5.26538,0,0,O38:SA:CTP10725,Europe/Paris,,O38, +O38:SP:10727,1,"LA GARE",45.625149,5.285808,0,0,O38:SA:CTP10727,Europe/Paris,,O38, +O38:SP:10728,1,"LA GARE",45.625185,5.285666,0,0,O38:SA:CTP10727,Europe/Paris,,O38, +O38:SP:10729,1,"LA CHANAS",45.655745,5.272576,0,0,O38:SA:CTP10729,Europe/Paris,,O38, +O38:SP:1073,1,"LE MOULIN",45.015127,5.704327,0,0,O38:SA:CTP1072,Europe/Paris,,O38, +O38:SP:10730,1,"LA CHANAS",45.655772,5.272437,0,0,O38:SA:CTP10729,Europe/Paris,,O38, +O38:SP:10731,1,"MESSENAS",45.650064,5.251108,0,0,O38:SA:CTP10731,Europe/Paris,,O38, +O38:SP:10732,1,"MESSENAS",45.650152,5.251205,0,0,O38:SA:CTP10731,Europe/Paris,,O38, +O38:SP:10733,1,"FERMES",45.647875,5.2257,0,0,O38:SA:CTP10733,Europe/Paris,,O38, +O38:SP:10734,1,"FERMES",45.647922,5.225609,0,0,O38:SA:CTP10733,Europe/Paris,,O38, +O38:SP:10735,1,"LE CHATEAU",45.645918,5.234377,0,0,O38:SA:CTP10735,Europe/Paris,,O38, +O38:SP:10736,1,"LE CHATEAU",45.64592,5.234481,0,0,O38:SA:CTP10735,Europe/Paris,,O38, +O38:SP:10737,1,"LA BONNARDIERE",45.651646,5.261213,0,0,O38:SA:CTP10737,Europe/Paris,,O38, +O38:SP:10738,1,"LA BONNARDIERE",45.651575,5.261234,0,0,O38:SA:CTP10737,Europe/Paris,,O38, +O38:SP:10739,1,"LE LICHOUD",45.637637,5.239972,0,0,O38:SA:CTP10739,Europe/Paris,,O38, +O38:SP:1074,1,"LES PAUTTATS",45.011419,5.70157,0,0,O38:SA:CTP1074,Europe/Paris,,O38, +O38:SP:10740,1,"LE LICHOUD",45.637596,5.239912,0,0,O38:SA:CTP10739,Europe/Paris,,O38, +O38:SP:10742,1,"CFA-BTP",45.612617,5.266078,0,0,O38:SA:CTP10742,Europe/Paris,,O38, +O38:SP:10743,1,"CFA-BTP",45.612576,5.265734,0,0,O38:SA:CTP10742,Europe/Paris,,O38, +O38:SP:10744,1,"LAVAL",45.621459,5.352833,0,0,O38:SA:CTP10744,Europe/Paris,,O38, +O38:SP:10745,1,"LAVAL",45.62145,5.353608,0,0,O38:SA:CTP10744,Europe/Paris,,O38, +O38:SP:10747,1,"EGLISE",45.627526,5.308448,0,0,O38:SA:CTP10747,Europe/Paris,,O38, +O38:SP:10749,1,"LOT.LES BARRIERES",45.639692,5.355068,0,0,O38:SA:CTP10749,Europe/Paris,,O38, +O38:SP:1075,1,"LES PAUTTATS",45.011486,5.701558,0,0,O38:SA:CTP1074,Europe/Paris,,O38, +O38:SP:10750,1,"LOT.LES BARRIERES",45.639659,5.355948,0,0,O38:SA:CTP10749,Europe/Paris,,O38, +O38:SP:10751,1,"LES HAIES",45.634207,5.318842,0,0,O38:SA:CTP10751,Europe/Paris,,O38, +O38:SP:10753,1,"ZONE D'ACTIVITE",45.632928,5.298248,0,0,O38:SA:CTP10753,Europe/Paris,,O38, +O38:SP:10755,1,"ZONE D'ACTIVITE",45.632895,5.29836,0,0,O38:SA:CTP10753,Europe/Paris,,O38, +O38:SP:10758,1,"LES MONTEES",45.653071,5.357396,0,0,O38:SA:CTP10758,Europe/Paris,,O38, +O38:SP:10759,1,"LES MONTEES",45.653011,5.357423,0,0,O38:SA:CTP10758,Europe/Paris,,O38, +O38:SP:1076,1,"ST PIERRE-EGLISE",45.028353,5.705947,0,0,O38:SA:CTP1076,Europe/Paris,,O38, +O38:SP:10760,1,"LA GOUTELLE",45.653397,5.346527,0,0,O38:SA:CTP10760,Europe/Paris,,O38, +O38:SP:10761,1,"LA GOUTELLE",45.653266,5.346694,0,0,O38:SA:CTP10760,Europe/Paris,,O38, +O38:SP:10762,1,"VERSIN RTE RIVIER",45.640932,5.343158,0,0,O38:SA:CTP10762,Europe/Paris,,O38, +O38:SP:10763,1,"VERSIN RTE RIVIER",45.641003,5.343168,0,0,O38:SA:CTP10762,Europe/Paris,,O38, +O38:SP:10766,1,"LA VERCHERE",45.623527,5.326524,0,0,O38:SA:CTP10766,Europe/Paris,,O38, +O38:SP:10767,1,"LA VERCHERE",45.623558,5.326746,0,0,O38:SA:CTP10766,Europe/Paris,,O38, +O38:SP:1077,1,"ST PIERRE-EGLISE",45.028212,5.706013,0,0,O38:SA:CTP1076,Europe/Paris,,O38, +O38:SP:10770,1,"LA GRANDE CHANAS",45.643392,5.326604,0,0,O38:SA:CTP10770,Europe/Paris,,O38, +O38:SP:10771,1,"LA GRANDE CHANAS",45.64343,5.326752,0,0,O38:SA:CTP10770,Europe/Paris,,O38, +O38:SP:10773,1,"FLOSAILLE",45.645322,5.301196,0,0,O38:SA:CTP10773,Europe/Paris,,O38, +O38:SP:10774,1,"FLOSAILLE",45.645475,5.301278,0,0,O38:SA:CTP10773,Europe/Paris,,O38, +O38:SP:10775,1,"VERSIN",45.642186,5.337451,0,0,O38:SA:CTP10775,Europe/Paris,,O38, +O38:SP:10776,1,"VERSIN",45.642182,5.337293,0,0,O38:SA:CTP10775,Europe/Paris,,O38, +O38:SP:10777,1,"LE CLAIR",45.644284,5.313633,0,0,O38:SA:CTP10777,Europe/Paris,,O38, +O38:SP:10778,1,"LE CLAIR",45.644244,5.313681,0,0,O38:SA:CTP10777,Europe/Paris,,O38, +O38:SP:1078,1,"PRE DU BIL",45.024611,5.706499,0,0,O38:SA:CTP1078,Europe/Paris,,O38, +O38:SP:10783,1,"DEMPTEZIEU PLACE",45.617607,5.323654,0,0,O38:SA:CTP10783,Europe/Paris,,O38, +O38:SP:10785,1,"DEMPTEZIEU PLACE",45.617575,5.323783,0,0,O38:SA:CTP10783,Europe/Paris,,O38, +O38:SP:10787,1,"LA PLACE",45.627035,5.310881,0,0,O38:SA:CTP10787,Europe/Paris,,O38, +O38:SP:10788,1,"LA RIVIERE",45.627137,5.305184,0,0,O38:SA:CTP10788,Europe/Paris,,O38, +O38:SP:10789,1,"ST MARTIN LOTISSEMENT",45.640596,5.298331,0,0,O38:SA:CTP10789,Europe/Paris,,O38, +O38:SP:1079,1,"PRE DU BIL",45.024602,5.70658,0,0,O38:SA:CTP1078,Europe/Paris,,O38, +O38:SP:10790,1,"ST MARTIN LOTISSEMENT",45.640612,5.298387,0,0,O38:SA:CTP10789,Europe/Paris,,O38, +O38:SP:10792,1,"GRANDE CHARRIERE",45.627293,5.320634,0,0,O38:SA:CTP10792,Europe/Paris,,O38, +O38:SP:10793,1,"LE FOULU",45.639778,5.296625,0,0,O38:SA:CTP10793,Europe/Paris,,O38, +O38:SP:10794,1,"LE FOULU",45.640001,5.296521,0,0,O38:SA:CTP10793,Europe/Paris,,O38, +O38:SP:10795,1,"BERTHIER LAVOIR",45.624931,5.315848,0,0,O38:SA:CTP10795,Europe/Paris,,O38, +O38:SP:10796,1,"BERTHIER LAVOIR",45.625033,5.315567,0,0,O38:SA:CTP10795,Europe/Paris,,O38, +O38:SP:10797,1,"LE PETIT BOIS",45.610544,5.340246,0,0,O38:SA:CTP10797,Europe/Paris,,O38, +O38:SP:10798,1,"LE PETIT BOIS",45.610461,5.340262,0,0,O38:SA:CTP10797,Europe/Paris,,O38, +O38:SP:1080,1,"LE SERF DE VIF",45.026723,5.662087,0,0,O38:SA:CTP1080,Europe/Paris,,O38, +O38:SP:10800,1,"CHAPEZE ECOLE",45.613857,5.334608,0,0,O38:SA:CTP10800,Europe/Paris,,O38, +O38:SP:10801,1,"CHAPEZE ECOLE",45.61382,5.33453,0,0,O38:SA:CTP10800,Europe/Paris,,O38, +O38:SP:10803,1,"LE MOLLARD",45.615578,5.318968,0,0,O38:SA:CTP10803,Europe/Paris,,O38, +O38:SP:10805,1,"LE MOLLARD",45.615372,5.318869,0,0,O38:SA:CTP10803,Europe/Paris,,O38, +O38:SP:10806,1,"LES TERRES JOLIES",45.615824,5.349261,0,0,O38:SA:CTP10806,Europe/Paris,,O38, +O38:SP:10807,1,"LES TERRES JOLIES",45.615728,5.349178,0,0,O38:SA:CTP10806,Europe/Paris,,O38, +O38:SP:10808,1,"LE RIVIER",45.632614,5.341657,0,0,O38:SA:CTP10808,Europe/Paris,,O38, +O38:SP:10809,1,"LE RIVIER",45.63267,5.341802,0,0,O38:SA:CTP10808,Europe/Paris,,O38, +O38:SP:1081,1,"LE SERF DE VIF",45.026422,5.662146,0,0,O38:SA:CTP1080,Europe/Paris,,O38, +O38:SP:10810,1,"COLLEGE DE SAINT-CHEF",45.641427,5.357745,0,0,O38:SA:CTP10810,Europe/Paris,,O38, +O38:SP:10811,1,"COLLEGE DE SAINT-CHEF",45.641521,5.357751,0,0,O38:SA:CTP10810,Europe/Paris,,O38, +O38:SP:10812,1,"FUYSSIEUX",45.612932,5.413634,0,0,O38:SA:CTP10812,Europe/Paris,,O38, +O38:SP:10813,1,"FUYSSIEUX",45.612862,5.413655,0,0,O38:SA:CTP10812,Europe/Paris,,O38, +O38:SP:10814,1,"MOULIN VIEUX",45.616174,5.37703,0,0,O38:SA:CTP10814,Europe/Paris,,O38, +O38:SP:10815,1,"MOULIN VIEUX",45.616109,5.377113,0,0,O38:SA:CTP10814,Europe/Paris,,O38, +O38:SP:10816,1,"I.M.E",45.63353,5.363842,0,0,O38:SA:CTP10816,Europe/Paris,,O38, +O38:SP:10817,1,"I.M.E",45.633478,5.363913,0,0,O38:SA:CTP10816,Europe/Paris,,O38, +O38:SP:10818,1,"JAVELARD",45.63423,5.358275,0,0,O38:SA:CTP10818,Europe/Paris,,O38, +O38:SP:10819,1,"JAVELARD",45.634301,5.358262,0,0,O38:SA:CTP10818,Europe/Paris,,O38, +O38:SP:1082,1,"GIRARDIERE",45.021139,5.660881,0,0,O38:SA:CTP1082,Europe/Paris,,O38, +O38:SP:10820,1,"TRIEUX CROISEMENT",45.652924,5.36053,0,0,O38:SA:CTP10820,Europe/Paris,,O38, +O38:SP:10821,1,"TRIEUX CROISEMENT",45.652852,5.360527,0,0,O38:SA:CTP10820,Europe/Paris,,O38, +O38:SP:10824,1,"LE MUNARD",45.632449,5.424526,0,0,O38:SA:CTP10824,Europe/Paris,,O38, +O38:SP:10825,1,"LE MUNARD",45.632369,5.42458,0,0,O38:SA:CTP10824,Europe/Paris,,O38, +O38:SP:10826,1,"LA PLACE",45.613195,5.391049,0,0,O38:SA:CTP10826,Europe/Paris,,O38, +O38:SP:10827,1,"LA PLACE",45.613146,5.390932,0,0,O38:SA:CTP10826,Europe/Paris,,O38, +O38:SP:10828,1,"CHATEAU DE MONTCARRA",45.618475,5.380933,0,0,O38:SA:CTP10828,Europe/Paris,,O38, +O38:SP:10829,1,"CHATEAU DE MONTCARRA",45.618412,5.380885,0,0,O38:SA:CTP10828,Europe/Paris,,O38, +O38:SP:1083,1,"GIRARDIERE",45.021156,5.660783,0,0,O38:SA:CTP1082,Europe/Paris,,O38, +O38:SP:10830,1,"LE ROYOLET",45.613735,5.403769,0,0,O38:SA:CTP10830,Europe/Paris,,O38, +O38:SP:10831,1,"LE ROYOLET",45.613804,5.403791,0,0,O38:SA:CTP10830,Europe/Paris,,O38, +O38:SP:10832,1,"LE CHOULIN",45.649963,5.381973,0,0,O38:SA:CTP10832,Europe/Paris,,O38, +O38:SP:10833,1,"LE CHOULIN",45.650031,5.382007,0,0,O38:SA:CTP10832,Europe/Paris,,O38, +O38:SP:10834,1,"ECOLE D'ARCISSE",45.638725,5.383707,0,0,O38:SA:CTP10834,Europe/Paris,,O38, +O38:SP:10835,1,"ECOLE D'ARCISSE",45.638744,5.383608,0,0,O38:SA:CTP10834,Europe/Paris,,O38, +O38:SP:10836,1,"LES MOLES LOT.",45.63908,5.361819,0,0,O38:SA:CTP10836,Europe/Paris,,O38, +O38:SP:10837,1,"LES MOLES LOT.",45.639034,5.3618,0,0,O38:SA:CTP10836,Europe/Paris,,O38, +O38:SP:10838,1,"CRUCILLEUX BOURG",45.648339,5.394569,0,0,O38:SA:CTP10838,Europe/Paris,,O38, +O38:SP:10839,1,"CRUCILLEUX BOURG",45.648458,5.394537,0,0,O38:SA:CTP10838,Europe/Paris,,O38, +O38:SP:1084,1,"ALLEE DU POYET",45.030983,5.664106,0,0,O38:SA:CTP1084,Europe/Paris,,O38, +O38:SP:10840,1,"CHATEAU ROJON",45.651867,5.373534,0,0,O38:SA:CTP10840,Europe/Paris,,O38, +O38:SP:10841,1,"CHATEAU ROJON",45.651927,5.373589,0,0,O38:SA:CTP10840,Europe/Paris,,O38, +O38:SP:10844,1,"LES AYES",45.640256,5.414503,0,0,O38:SA:CTP10844,Europe/Paris,,O38, +O38:SP:10845,1,"LES AYES",45.640241,5.414382,0,0,O38:SA:CTP10844,Europe/Paris,,O38, +O38:SP:10846,1,"OLOUISE LAVOIR",45.650687,5.419918,0,0,O38:SA:CTP10846,Europe/Paris,,O38, +O38:SP:10847,1,"OLOUISE LAVOIR",45.650733,5.419999,0,0,O38:SA:CTP10846,Europe/Paris,,O38, +O38:SP:10848,1,"ECOLES DU BOURG",45.63347,5.367381,0,0,O38:SA:CTP10848,Europe/Paris,,O38, +O38:SP:10849,1,"ECOLES DU BOURG",45.63341,5.367325,0,0,O38:SA:CTP10848,Europe/Paris,,O38, +O38:SP:1085,1,"ALLEE DU POYET",45.030947,5.664243,0,0,O38:SA:CTP1084,Europe/Paris,,O38, +O38:SP:10850,1,"CRUCILLEUX",45.64477,5.398221,0,0,O38:SA:CTP10850,Europe/Paris,,O38, +O38:SP:10851,1,"CRUCILLEUX",45.644758,5.398392,0,0,O38:SA:CTP10850,Europe/Paris,,O38, +O38:SP:10852,1,"CHATEAU LE MARCHIL",45.632005,5.373603,0,0,O38:SA:CTP10852,Europe/Paris,,O38, +O38:SP:10853,1,"CHATEAU LE MARCHIL",45.632042,5.373515,0,0,O38:SA:CTP10852,Europe/Paris,,O38, +O38:SP:10854,1,"CRUCILLEUX RD.19",45.64284,5.401237,0,0,O38:SA:CTP10854,Europe/Paris,,O38, +O38:SP:10856,1,"LOT.BONNE GAGNE",45.631445,5.361146,0,0,O38:SA:CTP10856,Europe/Paris,,O38, +O38:SP:10857,1,"LOT.BONNE GAGNE",45.631404,5.36123,0,0,O38:SA:CTP10856,Europe/Paris,,O38, +O38:SP:10858,1,"LA BIOUSSE",45.627274,5.37722,0,0,O38:SA:CTP10858,Europe/Paris,,O38, +O38:SP:10859,1,"LA BIOUSSE",45.6273,5.377293,0,0,O38:SA:CTP10858,Europe/Paris,,O38, +O38:SP:1086,1,"LES ALLARDS",45.027473,5.784346,0,0,O38:SA:CTP1086,Europe/Paris,,O38, +O38:SP:10860,1,"CRUCILLEUX CROIX",45.643714,5.388438,0,0,O38:SA:CTP10860,Europe/Paris,,O38, +O38:SP:10861,1,"CRUCILLEUX CROIX",45.643663,5.388107,0,0,O38:SA:CTP10860,Europe/Paris,,O38, +O38:SP:10862,1,"LA PLACE",45.627541,5.424043,0,0,O38:SA:CTP10862,Europe/Paris,,O38, +O38:SP:10863,1,"LA PLACE",45.627556,5.424159,0,0,O38:SA:CTP10862,Europe/Paris,,O38, +O38:SP:10866,1,"ROUTE LE PUY",45.60816,5.454083,0,0,O38:SA:CTP10866,Europe/Paris,,O38, +O38:SP:10867,1,"ROUTE LE PUY",45.608227,5.454086,0,0,O38:SA:CTP10866,Europe/Paris,,O38, +O38:SP:10868,1,"LA SARDINIERE",45.616257,5.451113,0,0,O38:SA:CTP10868,Europe/Paris,,O38, +O38:SP:10869,1,"LA SARDINIERE",45.616255,5.451075,0,0,O38:SA:CTP10868,Europe/Paris,,O38, +O38:SP:1087,1,"LES ALLARDS",45.027512,5.784262,0,0,O38:SA:CTP1086,Europe/Paris,,O38, +O38:SP:10870,1,"LE LANCELOT",45.607754,5.490133,0,0,O38:SA:CTP10870,Europe/Paris,,O38, +O38:SP:10871,1,"LE LANCELOT",45.607692,5.49019,0,0,O38:SA:CTP10870,Europe/Paris,,O38, +O38:SP:10872,1,"LA PETITE FRETTE",45.610636,5.471492,0,0,O38:SA:CTP10872,Europe/Paris,,O38, +O38:SP:10873,1,"LA PETITE FRETTE",45.611055,5.471768,0,0,O38:SA:CTP10872,Europe/Paris,,O38, +O38:SP:10874,1,"LE MICHOUD",45.618419,5.487247,0,0,O38:SA:CTP10874,Europe/Paris,,O38, +O38:SP:10875,1,"LE MICHOUD",45.618475,5.487126,0,0,O38:SA:CTP10874,Europe/Paris,,O38, +O38:SP:10876,1,"MORTHELAYZE",45.615305,5.464496,0,0,O38:SA:CTP10876,Europe/Paris,,O38, +O38:SP:10877,1,"MORTHELAYZE",45.61536,5.464446,0,0,O38:SA:CTP10876,Europe/Paris,,O38, +O38:SP:10878,1,"LES 3 TERREMENTS",45.614638,5.432267,0,0,O38:SA:CTP10878,Europe/Paris,,O38, +O38:SP:10879,1,"LES 3 TERREMENTS",45.614853,5.432452,0,0,O38:SA:CTP10878,Europe/Paris,,O38, +O38:SP:1088,1,"ECOLE PRIMAIRE",45.025754,5.773042,0,0,O38:SA:CTP1088,Europe/Paris,,O38, +O38:SP:10880,1,"LE BUISSON",45.609901,5.480937,0,0,O38:SA:CTP10880,Europe/Paris,,O38, +O38:SP:10882,1,"TROIS TERREMENTS",45.614863,5.432187,0,0,O38:SA:CTP10882,Europe/Paris,,O38, +O38:SP:10883,1,"TROIS TERREMENTS",45.614833,5.43217,0,0,O38:SA:CTP10882,Europe/Paris,,O38, +O38:SP:10886,1,"BORDENOUD ECOLE",45.615055,5.461883,0,0,O38:SA:CTP10886,Europe/Paris,,O38, +O38:SP:10888,1,"ANGLOUR",45.642869,5.436816,0,0,O38:SA:CTP10888,Europe/Paris,,O38, +O38:SP:10889,1,"ANGLOUR",45.642865,5.436863,0,0,O38:SA:CTP10888,Europe/Paris,,O38, +O38:SP:1089,1,"ECOLE PRIMAIRE",45.02579,5.773031,0,0,O38:SA:CTP1088,Europe/Paris,,O38, +O38:SP:10890,1,"LA CHAPITE",45.615956,5.456812,0,0,O38:SA:CTP10890,Europe/Paris,,O38, +O38:SP:10891,1,"LA CHAPITE",45.616114,5.456439,0,0,O38:SA:CTP10890,Europe/Paris,,O38, +O38:SP:10892,1,"ECOLE",45.635405,5.475703,0,0,O38:SA:CTP10892,Europe/Paris,,O38, +O38:SP:10893,1,"ECOLE",45.635477,5.475678,0,0,O38:SA:CTP10892,Europe/Paris,,O38, +O38:SP:10894,1,"LE BRASSARD",45.629347,5.485378,0,0,O38:SA:CTP10894,Europe/Paris,,O38, +O38:SP:10895,1,"LE BRASSARD",45.62967,5.484447,0,0,O38:SA:CTP10894,Europe/Paris,,O38, +O38:SP:10897,1,"LE PILLARDIN",45.649756,5.483918,0,0,O38:SA:CTP10897,Europe/Paris,,O38, +O38:SP:10898,1,"LE BAS",45.638229,5.478672,0,0,O38:SA:CTP10898,Europe/Paris,,O38, +O38:SP:10899,1,"LE BAS",45.638504,5.477875,0,0,O38:SA:CTP10898,Europe/Paris,,O38, +O38:SP:1090,1,"LE VILLAGE",45.025593,5.772848,0,0,O38:SA:CTP1090,Europe/Paris,,O38, +O38:SP:10901,1,"BRAILLES",45.645369,5.44423,0,0,O38:SA:CTP10901,Europe/Paris,,O38, +O38:SP:10902,1,"LES BLANCHETTES",45.628359,5.435542,0,0,O38:SA:CTP10902,Europe/Paris,,O38, +O38:SP:10903,1,"LES BLANCHETTES",45.628306,5.435379,0,0,O38:SA:CTP10902,Europe/Paris,,O38, +O38:SP:10904,1,"SUZEL STADE",45.634988,5.430824,0,0,O38:SA:CTP10904,Europe/Paris,,O38, +O38:SP:10905,1,"SUZEL STADE",45.634962,5.430953,0,0,O38:SA:CTP10904,Europe/Paris,,O38, +O38:SP:10906,1,"PLACE",45.630781,5.453558,0,0,O38:SA:CTP10906,Europe/Paris,,O38, +O38:SP:10907,1,"PLACE",45.630915,5.453848,0,0,O38:SA:CTP10906,Europe/Paris,,O38, +O38:SP:10908,1,"CENTRE VILLAGE",45.636315,5.475805,0,0,O38:SA:CTP10908,Europe/Paris,,O38, +O38:SP:10909,1,"CENTRE VILLAGE",45.636296,5.475904,0,0,O38:SA:CTP10908,Europe/Paris,,O38, +O38:SP:1091,1,"LE VILLAGE",45.025552,5.772929,0,0,O38:SA:CTP1090,Europe/Paris,,O38, +O38:SP:10910,1,"SALERIEU",45.607884,5.447706,0,0,O38:SA:CTP10910,Europe/Paris,,O38, +O38:SP:10912,1,"LA FRETTE - LE MONT",45.624847,5.475966,0,0,O38:SA:CTP10912,Europe/Paris,,O38, +O38:SP:10913,1,"LA FRETTE - LE MONT",45.624929,5.475915,0,0,O38:SA:CTP10912,Europe/Paris,,O38, +O38:SP:10914,1,"LA FRETTE - LA CROIX",45.619641,5.470749,0,0,O38:SA:CTP10914,Europe/Paris,,O38, +O38:SP:10915,1,"LA FRETTE - LA CROIX",45.619806,5.470929,0,0,O38:SA:CTP10914,Europe/Paris,,O38, +O38:SP:10918,1,"LES GRAVANNES",45.65046,5.479044,0,0,O38:SA:CTP10918,Europe/Paris,,O38, +O38:SP:10919,1,"LES GRAVANNES",45.650389,5.479035,0,0,O38:SA:CTP10918,Europe/Paris,,O38, +O38:SP:1092,1,"LES JOSSERANDS",45.018111,5.786038,0,0,O38:SA:CTP1092,Europe/Paris,,O38, +O38:SP:10920,1,"CURTIN RN.75",45.646762,5.491308,0,0,O38:SA:CTP10920,Europe/Paris,,O38, +O38:SP:10921,1,"CURTIN RN.75",45.646671,5.491332,0,0,O38:SA:CTP10920,Europe/Paris,,O38, +O38:SP:10922,1,"LA PLAINE RD.19",45.648235,5.489106,0,0,O38:SA:CTP10922,Europe/Paris,,O38, +O38:SP:10923,1,"LA PLAINE RD.19",45.64828,5.488835,0,0,O38:SA:CTP10922,Europe/Paris,,O38, +O38:SP:10924,1,"HAUT SALERIEU",45.608941,5.452472,0,0,O38:SA:CTP10924,Europe/Paris,,O38, +O38:SP:10926,1,"VALAGNON",45.640408,5.473965,0,0,O38:SA:CTP10926,Europe/Paris,,O38, +O38:SP:10927,1,"VALAGNON",45.64075,5.473195,0,0,O38:SA:CTP10926,Europe/Paris,,O38, +O38:SP:10929,1,"FORET RIVOIRE VIEILLE",45.61336,5.464412,0,0,O38:SA:CTP10929,Europe/Paris,,O38, +O38:SP:1093,1,"LES JOSSERANDS",45.018126,5.785887,0,0,O38:SA:CTP1092,Europe/Paris,,O38, +O38:SP:10930,1,"CURTIN PLACE",45.643598,5.490353,0,0,O38:SA:CTP10930,Europe/Paris,,O38, +O38:SP:10931,1,"CURTIN PLACE",45.643597,5.490447,0,0,O38:SA:CTP10930,Europe/Paris,,O38, +O38:SP:10932,1,"CHARRAY ETANGS",45.647027,5.439769,0,0,O38:SA:CTP10932,Europe/Paris,,O38, +O38:SP:10933,1,"CHARRAY ETANGS",45.647528,5.440214,0,0,O38:SA:CTP10932,Europe/Paris,,O38, +O38:SP:10934,1,"SALLE DES FETES",45.628261,5.425682,0,0,O38:SA:CTP10934,Europe/Paris,,O38, +O38:SP:10935,1,"SALLE DES FETES",45.628214,5.425736,0,0,O38:SA:CTP10934,Europe/Paris,,O38, +O38:SP:10937,1,"LA FRETTE",45.616754,5.480646,0,0,O38:SA:CTP10937,Europe/Paris,,O38, +O38:SP:10938,1,"LE PERTICOZ-LA LONGERAIE",45.639209,5.554651,0,0,O38:SA:CTP10938,Europe/Paris,,O38, +O38:SP:10939,1,"LE PERTICOZ-LA LONGERAIE",45.639242,5.55456,0,0,O38:SA:CTP10938,Europe/Paris,,O38, +O38:SP:1094,1,"LA BERGOGNE",45.004426,5.782078,0,0,O38:SA:CTP1094,Europe/Paris,,O38, +O38:SP:10940,1,"ROUTE DE CHASSIN",45.611053,5.532305,0,0,O38:SA:CTP10940,Europe/Paris,,O38, +O38:SP:10941,1,"ROUTE DE CHASSIN",45.610996,5.532313,0,0,O38:SA:CTP10940,Europe/Paris,,O38, +O38:SP:10942,1,"LE FOURNIER",45.62512,5.504006,0,0,O38:SA:CTP10942,Europe/Paris,,O38, +O38:SP:10946,1,"COUVERIER",45.625044,5.498542,0,0,O38:SA:CTP10946,Europe/Paris,,O38, +O38:SP:10947,1,"COUVERIER",45.624952,5.498574,0,0,O38:SA:CTP10946,Europe/Paris,,O38, +O38:SP:10948,1,"LE DRU",45.621273,5.497785,0,0,O38:SA:CTP10948,Europe/Paris,,O38, +O38:SP:10949,1,"LE DRU",45.621339,5.497861,0,0,O38:SA:CTP10948,Europe/Paris,,O38, +O38:SP:1095,1,"LA BERGOGNE",45.004407,5.78198,0,0,O38:SA:CTP1094,Europe/Paris,,O38, +O38:SP:10950,1,"LE VILLARD-MAISON MERGOUD",45.643864,5.545117,0,0,O38:SA:CTP10950,Europe/Paris,,O38, +O38:SP:10951,1,"LE VILLARD-MAISON MERGOUD",45.643792,5.545111,0,0,O38:SA:CTP10950,Europe/Paris,,O38, +O38:SP:10952,1,"LE SAINT MARTIN",45.611424,5.528454,0,0,O38:SA:CTP10952,Europe/Paris,,O38, +O38:SP:10953,1,"MAIRIE",45.607752,5.544569,0,0,O38:SA:CTP10953,Europe/Paris,,O38, +O38:SP:10954,1,"MAIRIE",45.607812,5.544702,0,0,O38:SA:CTP10953,Europe/Paris,,O38, +O38:SP:10955,1,"ECOLE PRIV.LES FORGES",45.609631,5.493956,0,0,O38:SA:CTP10955,Europe/Paris,,O38, +O38:SP:10956,1,"ECOLE PRIV.LES FORGES",45.60959,5.494041,0,0,O38:SA:CTP10955,Europe/Paris,,O38, +O38:SP:10957,1,"EGLISE",45.611268,5.498429,0,0,O38:SA:CTP10957,Europe/Paris,,O38, +O38:SP:10958,1,"EGLISE",45.611355,5.498367,0,0,O38:SA:CTP10957,Europe/Paris,,O38, +O38:SP:1096,1,"PETICHET",44.997457,5.773083,0,0,O38:SA:CTP1096,Europe/Paris,,O38, +O38:SP:10960,1,"LE CLOS",45.645578,5.539094,0,0,O38:SA:CTP10960,Europe/Paris,,O38, +O38:SP:10966,1,"LES BRUYERES",45.608365,5.506181,0,0,O38:SA:CTP10966,Europe/Paris,,O38, +O38:SP:10967,1,"LE CHARRON",45.601547,5.555238,0,0,O38:SA:CTP10967,Europe/Paris,,O38, +O38:SP:10968,1,"LE CHARRON",45.601578,5.555359,0,0,O38:SA:CTP10967,Europe/Paris,,O38, +O38:SP:1097,1,"PETICHET",44.997477,5.772993,0,0,O38:SA:CTP1096,Europe/Paris,,O38, +O38:SP:10972,1,"ECOLES",45.611867,5.497708,0,0,O38:SA:CTP10972,Europe/Paris,,O38, +O38:SP:10973,1,"BOIS VION-ABRIBUS",45.609785,5.537109,0,0,O38:SA:CTP10973,Europe/Paris,,O38, +O38:SP:10974,1,"BOIS VION-ABRIBUS",45.609681,5.537136,0,0,O38:SA:CTP10973,Europe/Paris,,O38, +O38:SP:10975,1,"LE MALEIN",45.608542,5.533646,0,0,O38:SA:CTP10975,Europe/Paris,,O38, +O38:SP:10976,1,"LE MALEIN",45.608454,5.533593,0,0,O38:SA:CTP10975,Europe/Paris,,O38, +O38:SP:10977,1,"BAS CORBELIN",45.610262,5.541387,0,0,O38:SA:CTP10977,Europe/Paris,,O38, +O38:SP:10978,1,"BAS CORBELIN",45.610283,5.541486,0,0,O38:SA:CTP10977,Europe/Paris,,O38, +O38:SP:10979,1,"LA GOYARDIERE",45.6063,5.557925,0,0,O38:SA:CTP10979,Europe/Paris,,O38, +O38:SP:1098,1,"PIED DU LAC",45.024187,5.781611,0,0,O38:SA:CTP1098,Europe/Paris,,O38, +O38:SP:10980,1,"LA GOYARDIERE",45.606229,5.557921,0,0,O38:SA:CTP10979,Europe/Paris,,O38, +O38:SP:10983,1,"ECOLE PRIVEE",45.609066,5.543613,0,0,O38:SA:CTP10983,Europe/Paris,,O38, +O38:SP:10984,1,"ECOLES PUBLIQUES",45.606676,5.545991,0,0,O38:SA:CTP10984,Europe/Paris,,O38, +O38:SP:10985,1,"CHAMP MARS",45.614077,5.500349,0,0,O38:SA:CTP10985,Europe/Paris,,O38, +O38:SP:10986,1,"CHAMP MARS",45.613871,5.500964,0,0,O38:SA:CTP10985,Europe/Paris,,O38, +O38:SP:10989,1,"RABATABOEUF-RD143",45.617939,5.49431,0,0,O38:SA:CTP10989,Europe/Paris,,O38, +O38:SP:1099,1,"PIED DU LAC",45.024115,5.781616,0,0,O38:SA:CTP1098,Europe/Paris,,O38, +O38:SP:10990,1,"RABATABOEUF-RD143",45.61797,5.494141,0,0,O38:SA:CTP10989,Europe/Paris,,O38, +O38:SP:10991,1,"LE PETIT VEYRINS",45.630123,5.533322,0,0,O38:SA:CTP10991,Europe/Paris,,O38, +O38:SP:10992,1,"LE PETIT VEYRINS",45.630201,5.533301,0,0,O38:SA:CTP10991,Europe/Paris,,O38, +O38:SP:10993,1,"LES AVENIERES GARE",45.634229,5.553061,0,0,O38:SA:CTP10993,Europe/Paris,,O38, +O38:SP:10994,1,"LES AVENIERES GARE",45.634091,5.553482,0,0,O38:SA:CTP10993,Europe/Paris,,O38, +O38:SP:10999,1,"VEYRINS GARE",45.625939,5.539979,0,0,O38:SA:CTP10999,Europe/Paris,,O38, +O38:SP:1100,1,"LE LAC",45.022114,5.774128,0,0,O38:SA:CTP1100,Europe/Paris,,O38, +O38:SP:11000,1,"VEYRINS GARE",45.625867,5.540001,0,0,O38:SA:CTP10999,Europe/Paris,,O38, +O38:SP:11001,1,"LE PERIER",45.636693,5.517932,0,0,O38:SA:CTP11001,Europe/Paris,,O38, +O38:SP:11002,1,"LE PERIER",45.636465,5.518454,0,0,O38:SA:CTP11001,Europe/Paris,,O38, +O38:SP:11004,1,"THUELLIN-EGLISE",45.639002,5.508158,0,0,O38:SA:CTP11004,Europe/Paris,,O38, +O38:SP:11005,1,"ECOLE DE MUSIQUE",45.639718,5.508013,0,0,O38:SA:CTP11005,Europe/Paris,,O38, +O38:SP:11006,1,"ECOLE DE MUSIQUE",45.63969,5.507903,0,0,O38:SA:CTP11005,Europe/Paris,,O38, +O38:SP:11007,1,"CURTIN FERME",45.642322,5.49505,0,0,O38:SA:CTP11007,Europe/Paris,,O38, +O38:SP:11008,1,"CURTIN FERME",45.64225,5.49504,0,0,O38:SA:CTP11007,Europe/Paris,,O38, +O38:SP:11009,1,"LE BOIS-MT MAURIN",45.621602,5.522518,0,0,O38:SA:CTP11009,Europe/Paris,,O38, +O38:SP:1101,1,"LE LAC",45.02256,5.774053,0,0,O38:SA:CTP1100,Europe/Paris,,O38, +O38:SP:11010,1,"LE BOIS-MT MAURIN",45.621664,5.52248,0,0,O38:SA:CTP11009,Europe/Paris,,O38, +O38:SP:11014,1,"BOIS DE THUELLIN",45.633431,5.506554,0,0,O38:SA:CTP11014,Europe/Paris,,O38, +O38:SP:11015,1,"VEYRINS MAIRIE",45.626133,5.538691,0,0,O38:SA:CTP11015,Europe/Paris,,O38, +O38:SP:11016,1,"VEYRINS MAIRIE",45.626162,5.539217,0,0,O38:SA:CTP11015,Europe/Paris,,O38, +O38:SP:11019,1,"HAMEAU LE MOLARD",45.626423,5.53024,0,0,O38:SA:CTP11019,Europe/Paris,,O38, +O38:SP:1102,1,"LES PRATS",45.021007,5.767213,0,0,O38:SA:CTP1102,Europe/Paris,,O38, +O38:SP:11020,1,"HAMEAU LE MOLARD",45.626524,5.530452,0,0,O38:SA:CTP11019,Europe/Paris,,O38, +O38:SP:11029,1,"USINE JAMBON D'AOSTE",45.601676,5.608837,0,0,O38:SA:CTP11029,Europe/Paris,,O38, +O38:SP:1103,1,"LES PRATS",45.02115,5.767168,0,0,O38:SA:CTP1102,Europe/Paris,,O38, +O38:SP:11030,1,"USINE JAMBON D'AOSTE",45.601563,5.608668,0,0,O38:SA:CTP11029,Europe/Paris,,O38, +O38:SP:11032,1,"ECOLE LES CHAMPAGNES",45.598647,5.627395,0,0,O38:SA:CTP11032,Europe/Paris,,O38, +O38:SP:11033,1,"LES CHAMPAGNES",45.603129,5.621049,0,0,O38:SA:CTP11033,Europe/Paris,,O38, +O38:SP:11034,1,"LES CHAMPAGNES",45.603039,5.621014,0,0,O38:SA:CTP11033,Europe/Paris,,O38, +O38:SP:11037,1,"LE VARD",45.605348,5.565963,0,0,O38:SA:CTP11037,Europe/Paris,,O38, +O38:SP:11038,1,"LA CHEVRE",45.604085,5.568698,0,0,O38:SA:CTP11038,Europe/Paris,,O38, +O38:SP:11039,1,"LA CHEVRE",45.604089,5.568808,0,0,O38:SA:CTP11038,Europe/Paris,,O38, +O38:SP:1104,1,"NOTRE DAME DE VAULX",44.986163,5.748376,0,0,O38:SA:CTP1104,Europe/Paris,,O38, +O38:SP:1105,1,"NOTRE DAME DE VAULX",44.986099,5.748444,0,0,O38:SA:CTP1104,Europe/Paris,,O38, +O38:SP:11050,1,"COLLEGE ARC EN CIERS",45.633212,5.574679,0,0,O38:SA:CTP11050,Europe/Paris,,O38, +O38:SP:11056,1,"LES AVENIERES STADE",45.631501,5.572493,0,0,O38:SA:CTP11056,Europe/Paris,,O38, +O38:SP:11057,1,"LES AVENIERES STADE",45.631483,5.572274,0,0,O38:SA:CTP11056,Europe/Paris,,O38, +O38:SP:11058,1,"Z.A. DU BERT",45.626822,5.582779,0,0,O38:SA:CTP11058,Europe/Paris,,O38, +O38:SP:11059,1,"Z.A. DU BERT",45.626738,5.58267,0,0,O38:SA:CTP11058,Europe/Paris,,O38, +O38:SP:1106,1,"ECOLE",44.986651,5.748822,0,0,O38:SA:CTP1106,Europe/Paris,,O38, +O38:SP:11061,1,"LE CHAMP DE MARS",45.633608,5.561539,0,0,O38:SA:CTP11061,Europe/Paris,,O38, +O38:SP:11062,1,"ST DIDIER-LE PONT",45.618865,5.610758,0,0,O38:SA:CTP11062,Europe/Paris,,O38, +O38:SP:11063,1,"ST DIDIER-LE PONT",45.618807,5.610696,0,0,O38:SA:CTP11062,Europe/Paris,,O38, +O38:SP:11064,1,"LA JONNAZ",45.602276,5.568531,0,0,O38:SA:CTP11064,Europe/Paris,,O38, +O38:SP:11067,1,"LE RUBAT",45.630495,5.57267,0,0,O38:SA:CTP11067,Europe/Paris,,O38, +O38:SP:11068,1,"LE RUBAT",45.630456,5.572767,0,0,O38:SA:CTP11067,Europe/Paris,,O38, +O38:SP:11069,1,"ST GENIX-PLACE DES ECOLES",45.60135,5.630574,0,0,O38:SA:CTP11069,Europe/Paris,,O38, +O38:SP:1107,1,"ECOLE",44.986594,5.748885,0,0,O38:SA:CTP1106,Europe/Paris,,O38, +O38:SP:11070,1,"ST GENIX-PLACE DES ECOLES",45.601278,5.630375,0,0,O38:SA:CTP11069,Europe/Paris,,O38, +O38:SP:11075,1,"LES MEURIERES",45.67947,4.949215,0,0,O38:SA:CTP11075,Europe/Paris,,O38, +O38:SP:11076,1,"LES MEURIERES",45.679424,4.949126,0,0,O38:SA:CTP11075,Europe/Paris,,O38, +O38:SP:11077,1,"LA POSTE",45.670186,4.950081,0,0,O38:SA:CTP11077,Europe/Paris,,O38, +O38:SP:11078,1,"LA POSTE",45.669937,4.950285,0,0,O38:SA:CTP11077,Europe/Paris,,O38, +O38:SP:11079,1,"ROUTE DE MIONS",45.684339,4.947763,0,0,DGL:SA:S11237,Europe/Paris,,O38, +O38:SP:1108,1,"LES PELLISSIERS",45.01031,5.761846,0,0,O38:SA:CTP1108,Europe/Paris,,O38, +O38:SP:11080,1,"ROUTE DE MIONS",45.684665,4.94749,0,0,DGL:SA:S11237,Europe/Paris,,O38, +O38:SP:11083,1,"CITE BERLIET",45.710849,4.902311,0,0,O38:SA:CTP11083,Europe/Paris,,O38, +O38:SP:11084,1,"CITE BERLIET",45.711555,4.901391,0,0,O38:SA:CTP11083,Europe/Paris,,O38, +O38:SP:11085,1,"SALENGRO",45.690519,4.936612,0,0,O38:SA:CTP11085,Europe/Paris,,O38, +O38:SP:11086,1,"SALENGRO",45.690549,4.936922,0,0,O38:SA:CTP11085,Europe/Paris,,O38, +O38:SP:11087,1,"PLACE DU LAC",45.66472,5.078127,0,0,O38:SA:CTP11087,Europe/Paris,,O38, +O38:SP:11088,1,"PLACE DU LAC",45.664649,5.078141,0,0,O38:SA:CTP11087,Europe/Paris,,O38, +O38:SP:11089,1,"RD 1006",45.667875,5.086611,0,0,O38:SA:CTP11089,Europe/Paris,,O38, +O38:SP:1109,1,"LES PELLISSIERS",45.010203,5.761879,0,0,O38:SA:CTP1108,Europe/Paris,,O38, +O38:SP:11090,1,"RD 1006",45.667933,5.086348,0,0,O38:SA:CTP11089,Europe/Paris,,O38, +O38:SP:11091,1,"ST LAURENT ZONE INDUSTRIELLE",45.684273,5.060167,0,0,DGL:SA:S34356,Europe/Paris,,O38, +O38:SP:11092,1,"ST LAURENT ZONE INDUSTRIELLE",45.684136,5.059966,0,0,DGL:SA:S34356,Europe/Paris,,O38, +O38:SP:11094,1,"LE CHAFFARD",45.668465,5.143203,0,0,O38:SA:CTP11094,Europe/Paris,,O38, +O38:SP:11096,1,"LE CHAFFARD",45.668557,5.143345,0,0,O38:SA:CTP11094,Europe/Paris,,O38, +O38:SP:11098,1,"LA SERVE",45.688249,5.117011,0,0,O38:SA:CTP11098,Europe/Paris,,O38, +O38:SP:1110,1,"LES ROURES",44.997996,5.752644,0,0,O38:SA:CTP1110,Europe/Paris,,O38, +O38:SP:11101,1,"BAS BONCE FONTAINE",45.685084,5.116261,0,0,O38:SA:CTP11101,Europe/Paris,,O38, +O38:SP:11103,1,"BAS BONCE FONTAINE",45.685136,5.11619,0,0,O38:SA:CTP11101,Europe/Paris,,O38, +O38:SP:1111,1,"LES ROURES",44.997829,5.752649,0,0,O38:SA:CTP1110,Europe/Paris,,O38, +O38:SP:11110,1,"LES ETRAITS",45.693308,5.134697,0,0,O38:SA:CTP11110,Europe/Paris,,O38, +O38:SP:11112,1,"LES ETRAITS",45.693245,5.134747,0,0,O38:SA:CTP11110,Europe/Paris,,O38, +O38:SP:11116,1,"HAUT DE BONCE",45.691062,5.112809,0,0,O38:SA:CTP11116,Europe/Paris,,O38, +O38:SP:11118,1,"HAUT DE BONCE",45.691031,5.112679,0,0,O38:SA:CTP11116,Europe/Paris,,O38, +O38:SP:11119,1,"LE CHAFFARD-STAT.SERVICE",45.667449,5.142161,0,0,O38:SA:CTP11119,Europe/Paris,,O38, +O38:SP:1112,1,"ECOLE",45.01348,5.759039,0,0,O38:SA:CTP1112,Europe/Paris,,O38, +O38:SP:11120,1,"LE CHAFFARD-STAT.SERVICE",45.6675,5.142089,0,0,O38:SA:CTP11119,Europe/Paris,,O38, +O38:SP:11122,1,"POMPIERS",45.689911,5.12907,0,0,O38:SA:CTP11122,Europe/Paris,,O38, +O38:SP:11124,1,"POMPIERS",45.690091,5.129172,0,0,O38:SA:CTP11122,Europe/Paris,,O38, +O38:SP:11126,1,"L'EPERON",45.6982,5.133126,0,0,O38:SA:CTP11126,Europe/Paris,,O38, +O38:SP:11127,1,"L'EPERON",45.698174,5.133031,0,0,O38:SA:CTP11126,Europe/Paris,,O38, +O38:SP:11129,1,"PLACE",45.693606,5.127266,0,0,O38:SA:CTP11129,Europe/Paris,,O38, +O38:SP:1113,1,"ECOLE",45.013458,5.759136,0,0,O38:SA:CTP1112,Europe/Paris,,O38, +O38:SP:11131,1,"PLACE",45.693488,5.127195,0,0,O38:SA:CTP11129,Europe/Paris,,O38, +O38:SP:11137,1,"CORIAU",45.701604,5.200575,0,0,O38:SA:CTP11137,Europe/Paris,,O38, +O38:SP:11138,1,"CORIAU",45.701768,5.200352,0,0,O38:SA:CTP11137,Europe/Paris,,O38, +O38:SP:11139,1,"LE STADE",45.682889,5.168182,0,0,O38:SA:CTP11139,Europe/Paris,,O38, +O38:SP:1114,1,"LES PERRINS",44.999784,5.750659,0,0,O38:SA:CTP1114,Europe/Paris,,O38, +O38:SP:11140,1,"LE STADE",45.682881,5.168042,0,0,O38:SA:CTP11139,Europe/Paris,,O38, +O38:SP:11141,1,"POISIEU 4 VOIES",45.700882,5.207585,0,0,O38:SA:CTP11141,Europe/Paris,,O38, +O38:SP:11142,1,"POISIEU 4 VOIES",45.700814,5.207551,0,0,O38:SA:CTP11141,Europe/Paris,,O38, +O38:SP:11143,1,"BOIRIEU FERME",45.691193,5.206546,0,0,O38:SA:CTP11143,Europe/Paris,,O38, +O38:SP:11144,1,"BOIRIEU FERME",45.691204,5.206444,0,0,O38:SA:CTP11143,Europe/Paris,,O38, +O38:SP:11145,1,"PLACE",45.694804,5.207795,0,0,O38:SA:CTP11145,Europe/Paris,,O38, +O38:SP:11146,1,"PLACE",45.694741,5.207844,0,0,O38:SA:CTP11145,Europe/Paris,,O38, +O38:SP:11147,1,"POISIEU FERME",45.700378,5.215335,0,0,O38:SA:CTP11147,Europe/Paris,,O38, +O38:SP:11148,1,"POISIEU FERME",45.700308,5.215357,0,0,O38:SA:CTP11147,Europe/Paris,,O38, +O38:SP:1115,1,"LES PERRINS",44.999855,5.75064,0,0,O38:SA:CTP1114,Europe/Paris,,O38, +O38:SP:11151,1,"CENTRE",45.679621,5.167386,0,0,O38:SA:CTP11151,Europe/Paris,,O38, +O38:SP:11152,1,"CENTRE",45.679489,5.167259,0,0,O38:SA:CTP11151,Europe/Paris,,O38, +O38:SP:11153,1,"LE BUCLET",45.696341,5.163966,0,0,O38:SA:CTP11153,Europe/Paris,,O38, +O38:SP:11154,1,"LE BUCLET",45.696389,5.164154,0,0,O38:SA:CTP11153,Europe/Paris,,O38, +O38:SP:11155,1,"MIANGES",45.698722,5.171298,0,0,O38:SA:CTP11155,Europe/Paris,,O38, +O38:SP:11156,1,"MIANGES",45.698788,5.171336,0,0,O38:SA:CTP11155,Europe/Paris,,O38, +O38:SP:11157,1,"GONAS",45.661603,5.167316,0,0,O38:SA:CTP11157,Europe/Paris,,O38, +O38:SP:11158,1,"GONAS",45.661719,5.167118,0,0,O38:SA:CTP11157,Europe/Paris,,O38, +O38:SP:11159,1,"LA PLACE",45.679201,5.206173,0,0,O38:SA:CTP11159,Europe/Paris,,O38, +O38:SP:1116,1,"LES THENEAUX",44.982989,5.783808,0,0,O38:SA:CTP1116,Europe/Paris,,O38, +O38:SP:11160,1,"LA PLACE",45.679196,5.206291,0,0,O38:SA:CTP11159,Europe/Paris,,O38, +O38:SP:11161,1,"ECOLE",45.677616,5.204298,0,0,O38:SA:CTP11161,Europe/Paris,,O38, +O38:SP:11162,1,"ECOLE",45.677562,5.204367,0,0,O38:SA:CTP11161,Europe/Paris,,O38, +O38:SP:11163,1,"PLACE",45.680616,5.219129,0,0,O38:SA:CTP11163,Europe/Paris,,O38, +O38:SP:11164,1,"PLACE",45.680687,5.219147,0,0,O38:SA:CTP11163,Europe/Paris,,O38, +O38:SP:11165,1,"CHEMIN DES VIGNOBLES",45.689583,5.164035,0,0,O38:SA:CTP11165,Europe/Paris,,O38, +O38:SP:11166,1,"CHEMIN DES VIGNOBLES",45.689714,5.163992,0,0,O38:SA:CTP11165,Europe/Paris,,O38, +O38:SP:1117,1,"LES THENEAUX",44.983057,5.783778,0,0,O38:SA:CTP1116,Europe/Paris,,O38, +O38:SP:11171,1,"MORAS",45.687835,5.257715,0,0,O38:SA:CTP11171,Europe/Paris,,O38, +O38:SP:11172,1,"MORAS",45.687774,5.257662,0,0,O38:SA:CTP11171,Europe/Paris,,O38, +O38:SP:11173,1,"FRETIGNIER",45.67924,5.256002,0,0,O38:SA:CTP11173,Europe/Paris,,O38, +O38:SP:11175,1,"CRIZIEU",45.693058,5.264987,0,0,O38:SA:CTP11175,Europe/Paris,,O38, +O38:SP:11176,1,"CRIZIEU",45.693042,5.264887,0,0,O38:SA:CTP11175,Europe/Paris,,O38, +O38:SP:11177,1,"LAVOIR LA MIRAIL",45.675005,5.29247,0,0,O38:SA:CTP11177,Europe/Paris,,O38, +O38:SP:11178,1,"LAVOIR LA MIRAIL",45.674819,5.292385,0,0,O38:SA:CTP11177,Europe/Paris,,O38, +O38:SP:11179,1,"LA GARE",45.685206,5.288125,0,0,O38:SA:CTP11179,Europe/Paris,,O38, +O38:SP:1118,1,"CROIX DES THENEAUX",44.982226,5.771687,0,0,O38:SA:CTP1118,Europe/Paris,,O38, +O38:SP:11180,1,"LA GARE",45.685332,5.288208,0,0,O38:SA:CTP11179,Europe/Paris,,O38, +O38:SP:11181,1,"LA PLACE",45.671756,5.29126,0,0,O38:SA:CTP11181,Europe/Paris,,O38, +O38:SP:11182,1,"LA PLACE",45.671632,5.291124,0,0,O38:SA:CTP11181,Europe/Paris,,O38, +O38:SP:11183,1,"RTE SAINT HILAIRE",45.660962,5.282525,0,0,O38:SA:CTP11183,Europe/Paris,,O38, +O38:SP:11184,1,"RTE SAINT HILAIRE",45.661023,5.282624,0,0,O38:SA:CTP11183,Europe/Paris,,O38, +O38:SP:11185,1,"LE GRIOT",45.65832,5.276793,0,0,O38:SA:CTP11185,Europe/Paris,,O38, +O38:SP:11186,1,"LE GRIOT",45.658759,5.277311,0,0,O38:SA:CTP11185,Europe/Paris,,O38, +O38:SP:11187,1,"ECOLE",45.659382,5.277004,0,0,O38:SA:CTP11187,Europe/Paris,,O38, +O38:SP:11188,1,"ECOLE DU VILLAGE",45.672668,5.290144,0,0,O38:SA:CTP11188,Europe/Paris,,O38, +O38:SP:11189,1,"ECOLE DU VILLAGE",45.672672,5.290041,0,0,O38:SA:CTP11188,Europe/Paris,,O38, +O38:SP:1119,1,"CROIX DES THENEAUX",44.982193,5.771583,0,0,O38:SA:CTP1118,Europe/Paris,,O38, +O38:SP:11190,1,"LE PETIT MEYZIEU",45.688035,5.236683,0,0,O38:SA:CTP11190,Europe/Paris,,O38, +O38:SP:11191,1,"LE PETIT MEYZIEU",45.687987,5.236759,0,0,O38:SA:CTP11190,Europe/Paris,,O38, +O38:SP:11195,1,"FERMES",45.668137,5.348177,0,0,O38:SA:CTP11195,Europe/Paris,,O38, +O38:SP:11196,1,"FERMES",45.668207,5.348157,0,0,O38:SA:CTP11195,Europe/Paris,,O38, +O38:SP:11197,1,"ALLEE DU BOIS",45.668451,5.339263,0,0,O38:SA:CTP11197,Europe/Paris,,O38, +O38:SP:11198,1,"ALLEE DU BOIS",45.668379,5.339258,0,0,O38:SA:CTP11197,Europe/Paris,,O38, +O38:SP:1120,1,"LE VILLARET",45.004977,5.752604,0,0,O38:SA:CTP1120,Europe/Paris,,O38, +O38:SP:11201,1,"CIMETIERE",45.691291,5.323431,0,0,O38:SA:CTP11201,Europe/Paris,,O38, +O38:SP:11202,1,"CIMETIERE",45.691321,5.323338,0,0,O38:SA:CTP11201,Europe/Paris,,O38, +O38:SP:11203,1,"COUVALOUP FONTAINE",45.695729,5.360687,0,0,O38:SA:CTP11203,Europe/Paris,,O38, +O38:SP:11204,1,"COUVALOUP FONTAINE",45.695658,5.360657,0,0,O38:SA:CTP11203,Europe/Paris,,O38, +O38:SP:11207,1,"CHAMONT TRANSFORMATEUR",45.6593,5.327615,0,0,O38:SA:CTP11207,Europe/Paris,,O38, +O38:SP:11208,1,"CHAMONT TRANSFORMATEUR",45.659284,5.327565,0,0,O38:SA:CTP11207,Europe/Paris,,O38, +O38:SP:11209,1,"CHAMONT ECOLE",45.654789,5.340654,0,0,O38:SA:CTP11209,Europe/Paris,,O38, +O38:SP:1121,1,"LE VILLARET",45.00498,5.752595,0,0,O38:SA:CTP1120,Europe/Paris,,O38, +O38:SP:11210,1,"CHAMONT ECOLE",45.654723,5.340763,0,0,O38:SA:CTP11209,Europe/Paris,,O38, +O38:SP:11211,1,"PLACE",45.667251,5.352001,0,0,O38:SA:CTP11211,Europe/Paris,,O38, +O38:SP:11212,1,"PLACE",45.667322,5.351992,0,0,O38:SA:CTP11211,Europe/Paris,,O38, +O38:SP:11213,1,"COZANCE CROIX",45.699833,5.327897,0,0,O38:SA:CTP11213,Europe/Paris,,O38, +O38:SP:11214,1,"COZANCE CROIX",45.699875,5.327723,0,0,O38:SA:CTP11213,Europe/Paris,,O38, +O38:SP:11215,1,"MONTAGNIEU FOUR",45.69709,5.352346,0,0,O38:SA:CTP11215,Europe/Paris,,O38, +O38:SP:11216,1,"MONTAGNIEU FOUR",45.697035,5.352448,0,0,O38:SA:CTP11215,Europe/Paris,,O38, +O38:SP:11217,1,"SERRIERES PLATANES",45.690147,5.339878,0,0,O38:SA:CTP11217,Europe/Paris,,O38, +O38:SP:11218,1,"SERRIERES PLATANES",45.690241,5.340308,0,0,O38:SA:CTP11217,Europe/Paris,,O38, +O38:SP:1122,1,"LES GONTHEAUMES",44.993521,5.769294,0,0,O38:SA:CTP1122,Europe/Paris,,O38, +O38:SP:11221,1,"ROUTE DE CREMIEU",45.684969,5.314967,0,0,O38:SA:CTP11221,Europe/Paris,,O38, +O38:SP:11222,1,"ROUTE DE CREMIEU",45.68458,5.314215,0,0,O38:SA:CTP11221,Europe/Paris,,O38, +O38:SP:11223,1,"LA PLACE",45.686988,5.31955,0,0,O38:SA:CTP11223,Europe/Paris,,O38, +O38:SP:11224,1,"LA PLACE",45.687228,5.319601,0,0,O38:SA:CTP11223,Europe/Paris,,O38, +O38:SP:11225,1,"LE RONDEAU",45.661291,5.323896,0,0,O38:SA:CTP11225,Europe/Paris,,O38, +O38:SP:11226,1,"LE RONDEAU",45.660648,5.323364,0,0,O38:SA:CTP11225,Europe/Paris,,O38, +O38:SP:11227,1,"ECOLE",45.667586,5.360076,0,0,O38:SA:CTP11227,Europe/Paris,,O38, +O38:SP:11228,1,"ECOLE",45.667657,5.360058,0,0,O38:SA:CTP11227,Europe/Paris,,O38, +O38:SP:11229,1,"LE PONTET",45.668855,5.365092,0,0,O38:SA:CTP11229,Europe/Paris,,O38, +O38:SP:1123,1,"LES GONTHEAUMES",44.993527,5.769279,0,0,O38:SA:CTP1122,Europe/Paris,,O38, +O38:SP:11230,1,"LE PONTET",45.668913,5.365148,0,0,O38:SA:CTP11229,Europe/Paris,,O38, +O38:SP:11231,1,"LE DOUVENT",45.692857,5.400976,0,0,O38:SA:CTP11231,Europe/Paris,,O38, +O38:SP:11232,1,"LE DOUVENT",45.692692,5.40166,0,0,O38:SA:CTP11231,Europe/Paris,,O38, +O38:SP:11233,1,"MAISON YNNA",45.658728,5.391844,0,0,O38:SA:CTP11233,Europe/Paris,,O38, +O38:SP:11234,1,"MAISON YNNA",45.658628,5.391797,0,0,O38:SA:CTP11233,Europe/Paris,,O38, +O38:SP:11235,1,"OLOUISE ECOLE",45.656572,5.402493,0,0,O38:SA:CTP11235,Europe/Paris,,O38, +O38:SP:11236,1,"OLOUISE ECOLE",45.656503,5.402461,0,0,O38:SA:CTP11235,Europe/Paris,,O38, +O38:SP:11237,1,"OLOUISE SEZIN",45.656118,5.406515,0,0,O38:SA:CTP11237,Europe/Paris,,O38, +O38:SP:11238,1,"OLOUISE SEZIN",45.656125,5.406403,0,0,O38:SA:CTP11237,Europe/Paris,,O38, +O38:SP:11239,1,"EGLISE",45.671687,5.41067,0,0,O38:SA:CTP11239,Europe/Paris,,O38, +O38:SP:1124,1,"CENTRE",45.002682,5.796175,0,0,O38:SA:CTP1124,Europe/Paris,,O38, +O38:SP:11240,1,"EGLISE",45.671747,5.41063,0,0,O38:SA:CTP11239,Europe/Paris,,O38, +O38:SP:11241,1,"TRANSPORT DUCARROZ",45.691543,5.375863,0,0,O38:SA:CTP11241,Europe/Paris,,O38, +O38:SP:11242,1,"TRANSPORT DUCARROZ",45.691414,5.375855,0,0,O38:SA:CTP11241,Europe/Paris,,O38, +O38:SP:11245,1,"LA MARGOTONNE",45.693404,5.373648,0,0,O38:SA:CTP11245,Europe/Paris,,O38, +O38:SP:11246,1,"LA MARGOTONNE",45.693445,5.373715,0,0,O38:SA:CTP11245,Europe/Paris,,O38, +O38:SP:11249,1,"OSSEE CARREFOUR",45.675289,5.418992,0,0,O38:SA:CTP11249,Europe/Paris,,O38, +O38:SP:1125,1,"CENTRE",45.002685,5.796264,0,0,O38:SA:CTP1124,Europe/Paris,,O38, +O38:SP:11250,1,"OSSEE CARREFOUR",45.675239,5.419102,0,0,O38:SA:CTP11249,Europe/Paris,,O38, +O38:SP:11251,1,"LES FERRANDIERES",45.680284,5.392695,0,0,O38:SA:CTP11251,Europe/Paris,,O38, +O38:SP:11252,1,"LES FERRANDIERES",45.680301,5.392794,0,0,O38:SA:CTP11251,Europe/Paris,,O38, +O38:SP:11253,1,"CHASSINS",45.692268,5.409465,0,0,O38:SA:CTP11253,Europe/Paris,,O38, +O38:SP:11254,1,"CHASSINS",45.692327,5.409377,0,0,O38:SA:CTP11253,Europe/Paris,,O38, +O38:SP:11255,1,"SABLONNIERES GARE",45.690103,5.375099,0,0,O38:SA:CTP11255,Europe/Paris,,O38, +O38:SP:11256,1,"SABLONNIERES GARE",45.690035,5.375249,0,0,O38:SA:CTP11255,Europe/Paris,,O38, +O38:SP:11257,1,"SABLONNIERES USINES",45.690099,5.368597,0,0,O38:SA:CTP11257,Europe/Paris,,O38, +O38:SP:11258,1,"SABLONNIERES USINES",45.690168,5.368551,0,0,O38:SA:CTP11257,Europe/Paris,,O38, +O38:SP:1126,1,"VILLAGE",44.982782,5.887342,0,0,O38:SA:CTP1126,Europe/Paris,,O38, +O38:SP:11261,1,"LE LAVOIR",45.694479,5.365628,0,0,O38:SA:CTP11261,Europe/Paris,,O38, +O38:SP:11262,1,"LE LAVOIR",45.694435,5.365711,0,0,O38:SA:CTP11261,Europe/Paris,,O38, +O38:SP:11264,1,"LES SABLES",45.661005,5.38299,0,0,O38:SA:CTP11264,Europe/Paris,,O38, +O38:SP:11265,1,"LES SABLES",45.660983,5.382891,0,0,O38:SA:CTP11264,Europe/Paris,,O38, +O38:SP:11266,1,"LE RAPILLARD",45.665842,5.372419,0,0,O38:SA:CTP11266,Europe/Paris,,O38, +O38:SP:11267,1,"LE RAPILLARD",45.665783,5.372362,0,0,O38:SA:CTP11266,Europe/Paris,,O38, +O38:SP:11268,1,"MONTROND",45.66248,5.377609,0,0,O38:SA:CTP11268,Europe/Paris,,O38, +O38:SP:11269,1,"MONTROND",45.662341,5.377773,0,0,O38:SA:CTP11268,Europe/Paris,,O38, +O38:SP:1127,1,"VILLAGE",44.982655,5.887237,0,0,O38:SA:CTP1126,Europe/Paris,,O38, +O38:SP:11270,1,"HOPITAL",45.679715,5.463008,0,0,O38:SA:CTP11270,Europe/Paris,,O38, +O38:SP:11271,1,"HOPITAL",45.679693,5.462952,0,0,O38:SA:CTP11270,Europe/Paris,,O38, +O38:SP:11272,1,"LA GARE",45.671974,5.470709,0,0,O38:SA:CTP11272,Europe/Paris,,O38, +O38:SP:11273,1,"LA GARE",45.671946,5.470803,0,0,O38:SA:CTP11272,Europe/Paris,,O38, +O38:SP:11276,1,"LYCEE CAMILLE COROT",45.674621,5.47713,0,0,O38:SA:CTP11276,Europe/Paris,,O38, +O38:SP:11277,1,"LYCEE CAMILLE COROT",45.674635,5.476961,0,0,O38:SA:CTP11276,Europe/Paris,,O38, +O38:SP:11278,1,"PASSINS VILLAGE",45.687712,5.43157,0,0,O38:SA:CTP11278,Europe/Paris,,O38, +O38:SP:11279,1,"PASSINS VILLAGE",45.68777,5.431659,0,0,O38:SA:CTP11278,Europe/Paris,,O38, +O38:SP:1128,1,"LES MAZOIRS",44.99074,5.883439,0,0,O38:SA:CTP1128,Europe/Paris,,O38, +O38:SP:11280,1,"CREVIERES ABRIBUS",45.696781,5.439206,0,0,O38:SA:CTP11280,Europe/Paris,,O38, +O38:SP:11281,1,"CREVIERES ABRIBUS",45.696689,5.438994,0,0,O38:SA:CTP11280,Europe/Paris,,O38, +O38:SP:11282,1,"SUPERMARCHE",45.684185,5.449841,0,0,O38:SA:CTP11282,Europe/Paris,,O38, +O38:SP:11283,1,"SUPERMARCHE",45.684235,5.449903,0,0,O38:SA:CTP11282,Europe/Paris,,O38, +O38:SP:11284,1,"PASSINS ECOLE",45.686754,5.429408,0,0,O38:SA:CTP11284,Europe/Paris,,O38, +O38:SP:11285,1,"PASSINS ECOLE",45.686837,5.429384,0,0,O38:SA:CTP11284,Europe/Paris,,O38, +O38:SP:11287,1,"LE MARTERAY CHATEAU",45.667783,5.430583,0,0,O38:SA:CTP11287,Europe/Paris,,O38, +O38:SP:11288,1,"COLLEGE F-A.RAVIER",45.678849,5.465976,0,0,O38:SA:CTP11288,Europe/Paris,,O38, +O38:SP:1129,1,"LES MAZOIRS",44.99097,5.883315,0,0,O38:SA:CTP1128,Europe/Paris,,O38, +O38:SP:11291,1,"THUILE",45.689791,5.477056,0,0,O38:SA:CTP11291,Europe/Paris,,O38, +O38:SP:11292,1,"L'EPINETTE",45.652687,5.463472,0,0,O38:SA:CTP11292,Europe/Paris,,O38, +O38:SP:11293,1,"L'EPINETTE",45.652742,5.463376,0,0,O38:SA:CTP11292,Europe/Paris,,O38, +O38:SP:11294,1,"CENTRE VILLE",45.675559,5.471656,0,0,O38:SA:CTP11294,Europe/Paris,,O38, +O38:SP:11296,1,"LE PLANOT",45.694053,5.436277,0,0,O38:SA:CTP11296,Europe/Paris,,O38, +O38:SP:11297,1,"LE PLANOT",45.693965,5.436277,0,0,O38:SA:CTP11296,Europe/Paris,,O38, +O38:SP:1130,1,"MOULIN VIEUX",45.003793,5.880129,0,0,O38:SA:CTP1130,Europe/Paris,,O38, +O38:SP:11300,1,"BEAUTAZ",45.664601,5.471258,0,0,O38:SA:CTP11300,Europe/Paris,,O38, +O38:SP:11301,1,"BEAUTAZ",45.664747,5.471138,0,0,O38:SA:CTP11300,Europe/Paris,,O38, +O38:SP:11302,1,"LE STADE",45.657703,5.472243,0,0,O38:SA:CTP11302,Europe/Paris,,O38, +O38:SP:11303,1,"LE STADE",45.658013,5.472184,0,0,O38:SA:CTP11302,Europe/Paris,,O38, +O38:SP:11304,1,"CHARRAY",45.65339,5.451118,0,0,O38:SA:CTP11304,Europe/Paris,,O38, +O38:SP:11305,1,"CHARRAY",45.653255,5.450955,0,0,O38:SA:CTP11304,Europe/Paris,,O38, +O38:SP:11306,1,"ECOLE CONDORCET",45.651425,5.473249,0,0,O38:SA:CTP11306,Europe/Paris,,O38, +O38:SP:11308,1,"LE VARSIN",45.690904,5.486349,0,0,O38:SA:CTP11308,Europe/Paris,,O38, +O38:SP:11309,1,"LE VARSIN",45.690979,5.486341,0,0,O38:SA:CTP11308,Europe/Paris,,O38, +O38:SP:1131,1,"MOULIN VIEUX",45.003911,5.879925,0,0,O38:SA:CTP1130,Europe/Paris,,O38, +O38:SP:11311,1,"VEZERONCE PLACE",45.651121,5.47131,0,0,O38:SA:CTP11311,Europe/Paris,,O38, +O38:SP:11312,1,"VEZERONCE PLACE",45.65117,5.471229,0,0,O38:SA:CTP11311,Europe/Paris,,O38, +O38:SP:11314,1,"LE CHOLLARD",45.659775,5.472282,0,0,O38:SA:CTP11314,Europe/Paris,,O38, +O38:SP:11317,1,"PLACE",45.671484,5.5241,0,0,O38:SA:CTP11317,Europe/Paris,,O38, +O38:SP:11318,1,"PLACE",45.671418,5.524057,0,0,O38:SA:CTP11317,Europe/Paris,,O38, +O38:SP:11319,1,"LE MOLLARD",45.670166,5.505162,0,0,O38:SA:CTP11319,Europe/Paris,,O38, +O38:SP:11320,1,"LE MOLLARD",45.670188,5.505169,0,0,O38:SA:CTP11319,Europe/Paris,,O38, +O38:SP:11323,1,"CHATEAU",45.696341,5.521984,0,0,O38:SA:CTP11323,Europe/Paris,,O38, +O38:SP:11324,1,"CHATEAU",45.696271,5.521961,0,0,O38:SA:CTP11323,Europe/Paris,,O38, +O38:SP:11325,1,"MAIRIE",45.694521,5.528654,0,0,O38:SA:CTP11325,Europe/Paris,,O38, +O38:SP:11326,1,"MAIRIE",45.694585,5.528702,0,0,O38:SA:CTP11325,Europe/Paris,,O38, +O38:SP:11327,1,"BRIEUX",45.692456,5.527684,0,0,O38:SA:CTP11327,Europe/Paris,,O38, +O38:SP:11328,1,"BRIEUX",45.692534,5.527786,0,0,O38:SA:CTP11327,Europe/Paris,,O38, +O38:SP:11329,1,"BUVIN ECOLE",45.653134,5.545489,0,0,O38:SA:CTP11329,Europe/Paris,,O38, +O38:SP:1133,1,"STATION LA BLACHE",45.023742,5.863089,0,0,O38:SA:CTP1133,Europe/Paris,,O38, +O38:SP:11330,1,"BUVIN ECOLE",45.653075,5.545467,0,0,O38:SA:CTP11329,Europe/Paris,,O38, +O38:SP:11331,1,"LE SABLONNET",45.653177,5.556392,0,0,O38:SA:CTP11331,Europe/Paris,,O38, +O38:SP:11332,1,"LE SABLONNET",45.653159,5.556491,0,0,O38:SA:CTP11331,Europe/Paris,,O38, +O38:SP:11333,1,"LE POLOSSAT",45.657247,5.533389,0,0,O38:SA:CTP11333,Europe/Paris,,O38, +O38:SP:11334,1,"LE POLOSSAT",45.657176,5.533371,0,0,O38:SA:CTP11333,Europe/Paris,,O38, +O38:SP:11335,1,"COLLONGE MAISON BOISSON",45.651705,5.525922,0,0,O38:SA:CTP11335,Europe/Paris,,O38, +O38:SP:11336,1,"COLLONGE MAISON BOISSON",45.651736,5.525829,0,0,O38:SA:CTP11335,Europe/Paris,,O38, +O38:SP:11339,1,"PLACE",45.696749,5.50279,0,0,O38:SA:CTP11339,Europe/Paris,,O38, +O38:SP:11340,1,"PLACE",45.696739,5.502892,0,0,O38:SA:CTP11339,Europe/Paris,,O38, +O38:SP:11341,1,"L'EGLISE",45.692869,5.501154,0,0,O38:SA:CTP11341,Europe/Paris,,O38, +O38:SP:11342,1,"L'EGLISE",45.692887,5.501054,0,0,O38:SA:CTP11341,Europe/Paris,,O38, +O38:SP:11349,1,"BACHUT MAIRIE DU 8e",45.737159,4.868512,0,0,O38:SA:CTP11349,Europe/Paris,,O38, +O38:SP:1135,1,"STATION LA BLACHE",45.023515,5.862912,0,0,O38:SA:CTP1133,Europe/Paris,,O38, +O38:SP:11350,1,"BACHUT MAIRIE DU 8e",45.737347,4.868408,0,0,O38:SA:CTP11349,Europe/Paris,,O38, +O38:SP:11351,1,"PARILLY",45.719323,4.888111,0,0,O38:SA:CTP11351,Europe/Paris,,O38, +O38:SP:11352,1,"PARILLY",45.720061,4.887819,0,0,O38:SA:CTP11351,Europe/Paris,,O38, +O38:SP:11354,1,"GRANGE-ROUGE",45.732009,4.873509,0,0,O38:SA:CTP11354,Europe/Paris,,O38, +O38:SP:11355,1,"GRANGE-ROUGE",45.731176,4.874137,0,0,O38:SA:CTP11354,Europe/Paris,,O38, +O38:SP:11358,1,"GRANGE BLANCHE",45.743295,4.879022,0,0,O38:SA:CTP11358,Europe/Paris,,O38, +O38:SP:11359,1,"GRANGE BLANCHE",45.743153,4.878013,0,0,O38:SA:CTP11358,Europe/Paris,,O38, +O38:SP:1136,1,"CHABOTTE",45.01336,5.874738,0,0,O38:SA:CTP1136,Europe/Paris,,O38, +O38:SP:11360,1,"MERMOZ-PINEL",45.730745,4.886711,0,0,O38:SA:CTP11360,Europe/Paris,,O38, +O38:SP:11361,1,"MERMOZ-PINEL",45.730874,4.88691,0,0,O38:SA:CTP11360,Europe/Paris,,O38, +O38:SP:11363,1,"MANUFACTURE MONTLUC (EST)",45.749276,4.860225,0,0,O38:SA:CTP11363,Europe/Paris,,O38, +O38:SP:11364,1,"MANUFACTURE MONTLUC (EST)",45.749178,4.86096,0,0,O38:SA:CTP11363,Europe/Paris,,O38, +O38:SP:11366,1,"CAZENEUVE BERLIET",45.739275,4.866262,0,0,DGL:SA:S30194,Europe/Paris,,O38, +O38:SP:11367,1,"CAZENEUVE BERLIET",45.739151,4.86627,0,0,DGL:SA:S30194,Europe/Paris,,O38, +O38:SP:1137,1,"CHABOTTE",45.013398,5.874789,0,0,O38:SA:CTP1136,Europe/Paris,,O38, +O38:SP:11371,1,"INSTIT. JDA AZIEU",45.735994,5.014881,0,0,O38:SA:CTP11371,Europe/Paris,,O38, +O38:SP:11372,1,"INSTIT. JDA AZIEU",45.736311,5.01468,0,0,O38:SA:CTP11371,Europe/Paris,,O38, +O38:SP:11373,1,"LES BURLANCHERES",45.753163,5.118567,0,0,O38:SA:CTP11373,Europe/Paris,,O38, +O38:SP:11374,1,"LES BURLANCHERES",45.753287,5.118771,0,0,O38:SA:CTP11373,Europe/Paris,,O38, +O38:SP:11379,1,"JET D'EAU",45.742065,5.156112,0,0,O38:SA:CTP11379,Europe/Paris,,O38, +O38:SP:1138,1,"L'ALPE DU GRAND SERRE",45.024926,5.860906,0,0,O38:SA:CTP1138,Europe/Paris,,O38, +O38:SP:11380,1,"JET D'EAU",45.741981,5.156158,0,0,O38:SA:CTP11379,Europe/Paris,,O38, +O38:SP:11381,1,"CHAVAGNEUX ECOLE",45.727355,5.146987,0,0,O38:SA:CTP11381,Europe/Paris,,O38, +O38:SP:11385,1,"CHAVAGNEUX CHAPELLE",45.727393,5.144969,0,0,O38:SA:CTP11385,Europe/Paris,,O38, +O38:SP:11386,1,"CHAVAGNEUX CHAPELLE",45.727465,5.144973,0,0,O38:SA:CTP11385,Europe/Paris,,O38, +O38:SP:11387,1,"TRANSFORMATEUR",45.749485,5.156134,0,0,O38:SA:CTP11387,Europe/Paris,,O38, +O38:SP:11388,1,"TRANSFORMATEUR",45.749482,5.156316,0,0,O38:SA:CTP11387,Europe/Paris,,O38, +O38:SP:11389,1,"LE PIARDAY",45.752976,5.14764,0,0,O38:SA:CTP11389,Europe/Paris,,O38, +O38:SP:1139,1,"L'ALPE DU GRAND SERRE",45.02467,5.861113,0,0,O38:SA:CTP1138,Europe/Paris,,O38, +O38:SP:11390,1,"LE PIARDAY",45.752845,5.147293,0,0,O38:SA:CTP11389,Europe/Paris,,O38, +O38:SP:11391,1,"CHAVAGNEUX LES GRANDS CHAMPS",45.726339,5.150972,0,0,O38:SA:CTP11391,Europe/Paris,,O38, +O38:SP:11392,1,"CHAVAGNEUX LES GRANDS CHAMPS",45.726271,5.150938,0,0,O38:SA:CTP11391,Europe/Paris,,O38, +O38:SP:11393,1,"COLLEGE",45.745046,5.156118,0,0,O38:SA:CTP11393,Europe/Paris,,O38, +O38:SP:11394,1,"COLLEGE",45.745097,5.156126,0,0,O38:SA:CTP11393,Europe/Paris,,O38, +O38:SP:11395,1,"CITE EDF",45.739305,5.157228,0,0,O38:SA:CTP11395,Europe/Paris,,O38, +O38:SP:11396,1,"CITE EDF",45.739297,5.157378,0,0,O38:SA:CTP11395,Europe/Paris,,O38, +O38:SP:11397,1,"PLACE DE TASSIGNY",45.752541,5.111438,0,0,O38:SA:CTP11397,Europe/Paris,,O38, +O38:SP:11398,1,"PLACE DE TASSIGNY",45.752662,5.111301,0,0,O38:SA:CTP11397,Europe/Paris,,O38, +O38:SP:11399,1,"USINE PHOENIX",45.749772,5.166835,0,0,O38:SA:CTP11399,Europe/Paris,,O38, +O38:SP:1140,1,"LE VILLARD",45.007596,5.875465,0,0,O38:SA:CTP1140,Europe/Paris,,O38, +O38:SP:11400,1,"USINE PHOENIX",45.749921,5.166756,0,0,O38:SA:CTP11399,Europe/Paris,,O38, +O38:SP:11403,1,"MAIRIE",45.750126,5.173718,0,0,O38:SA:CTP11403,Europe/Paris,,O38, +O38:SP:11404,1,"MAIRIE",45.750276,5.173488,0,0,O38:SA:CTP11403,Europe/Paris,,O38, +O38:SP:11407,1,"CENTRE COMMERCIAL",45.740891,5.160181,0,0,O38:SA:CTP11407,Europe/Paris,,O38, +O38:SP:11408,1,"CENTRE COMMERCIAL",45.740919,5.158888,0,0,O38:SA:CTP11407,Europe/Paris,,O38, +O38:SP:11409,1,"ROUTE DE VIENNE",45.743554,5.167091,0,0,O38:SA:CTP11409,Europe/Paris,,O38, +O38:SP:1141,1,"LE VILLARD",45.008074,5.875663,0,0,O38:SA:CTP1140,Europe/Paris,,O38, +O38:SP:11410,1,"ROUTE DE VIENNE",45.743357,5.167085,0,0,O38:SA:CTP11409,Europe/Paris,,O38, +O38:SP:11411,1,"LE DAUPHIN",45.736341,5.162011,0,0,O38:SA:CTP11411,Europe/Paris,,O38, +O38:SP:11412,1,"LE DAUPHIN",45.737008,5.162657,0,0,O38:SA:CTP11411,Europe/Paris,,O38, +O38:SP:11415,1,"LES 4 BUISSONS",45.750164,5.187382,0,0,O38:SA:CTP11415,Europe/Paris,,O38, +O38:SP:11416,1,"LES 4 BUISSONS",45.750153,5.187025,0,0,O38:SA:CTP11415,Europe/Paris,,O38, +O38:SP:11417,1,"JAMEYZIEU CHAPELLE",45.716933,5.1673,0,0,O38:SA:CTP11417,Europe/Paris,,O38, +O38:SP:11418,1,"JAMEYZIEU CHAPELLE",45.716989,5.167331,0,0,O38:SA:CTP11417,Europe/Paris,,O38, +O38:SP:11419,1,"GARAGE ROUDINSKI",45.741817,5.187253,0,0,O38:SA:CTP11419,Europe/Paris,,O38, +O38:SP:1142,1,"LES BOSSES",44.984941,5.967577,0,0,O38:SA:CTP1142,Europe/Paris,,O38, +O38:SP:11420,1,"GARAGE ROUDINSKI",45.741722,5.18732,0,0,O38:SA:CTP11419,Europe/Paris,,O38, +O38:SP:11421,1,"PARKING COLLEGE",45.746016,5.176451,0,0,O38:SA:CTP11421,Europe/Paris,,O38, +O38:SP:11422,1,"PARKING COLLEGE",45.745994,5.176354,0,0,O38:SA:CTP11421,Europe/Paris,,O38, +O38:SP:11425,1,"P.M.U.",45.744957,5.167544,0,0,O38:SA:CTP11425,Europe/Paris,,O38, +O38:SP:11426,1,"P.M.U.",45.745188,5.167724,0,0,O38:SA:CTP11425,Europe/Paris,,O38, +O38:SP:11427,1,"BEPTENOUD PLACE",45.720073,5.224316,0,0,O38:SA:CTP11427,Europe/Paris,,O38, +O38:SP:11428,1,"BEPTENOUD PLACE",45.720065,5.224396,0,0,O38:SA:CTP11427,Europe/Paris,,O38, +O38:SP:11429,1,"LE MARAIS LAVOIR",45.72352,5.218267,0,0,O38:SA:CTP11429,Europe/Paris,,O38, +O38:SP:1143,1,"LES BOSSES",44.984977,5.96783,0,0,O38:SA:CTP1142,Europe/Paris,,O38, +O38:SP:11430,1,"LE MARAIS LAVOIR",45.723511,5.218783,0,0,O38:SA:CTP11429,Europe/Paris,,O38, +O38:SP:11431,1,"TRANSFORMATEUR",45.751709,5.195809,0,0,O38:SA:CTP11431,Europe/Paris,,O38, +O38:SP:11432,1,"TRANSFORMATEUR",45.751859,5.196029,0,0,O38:SA:CTP11431,Europe/Paris,,O38, +O38:SP:11433,1,"LE CHATEAU D'EAU",45.739193,5.180282,0,0,O38:SA:CTP11433,Europe/Paris,,O38, +O38:SP:11434,1,"LE CHATEAU D'EAU",45.739166,5.180383,0,0,O38:SA:CTP11433,Europe/Paris,,O38, +O38:SP:11435,1,"JAMEYZIEU CAFE",45.715565,5.161296,0,0,O38:SA:CTP11435,Europe/Paris,,O38, +O38:SP:11436,1,"JAMEYZIEU CAFE",45.715618,5.161392,0,0,O38:SA:CTP11435,Europe/Paris,,O38, +O38:SP:11437,1,"COLLEGE PH. COUSTEAU",45.744937,5.17686,0,0,O38:SA:CTP11437,Europe/Paris,,O38, +O38:SP:11438,1,"COLLEGE PH. COUSTEAU",45.744934,5.176841,0,0,O38:SA:CTP11437,Europe/Paris,,O38, +O38:SP:11439,1,"MAIRIE",45.733771,5.186751,0,0,O38:SA:CTP11439,Europe/Paris,,O38, +O38:SP:11440,1,"MAIRIE",45.733722,5.186545,0,0,O38:SA:CTP11439,Europe/Paris,,O38, +O38:SP:11441,1,"PLACE DU DAUPHINE",45.74837,5.184933,0,0,O38:SA:CTP11441,Europe/Paris,,O38, +O38:SP:11442,1,"PLACE DU DAUPHINE",45.748645,5.184946,0,0,O38:SA:CTP11441,Europe/Paris,,O38, +O38:SP:11445,1,"BARENS CH.LA COTE",45.742239,5.219579,0,0,O38:SA:CTP11445,Europe/Paris,,O38, +O38:SP:11446,1,"BARENS CH.LA COTE",45.742147,5.219661,0,0,O38:SA:CTP11445,Europe/Paris,,O38, +O38:SP:11447,1,"LEAP PAUL CLAUDEL",45.724352,5.215923,0,0,O38:SA:CTP11447,Europe/Paris,,O38, +O38:SP:11448,1,"LEAP PAUL CLAUDEL",45.724496,5.215676,0,0,O38:SA:CTP11447,Europe/Paris,,O38, +O38:SP:11449,1,"LOT. LE CAPITOLE",45.72246,5.218082,0,0,O38:SA:CTP11449,Europe/Paris,,O38, +O38:SP:11450,1,"LOT. LE CAPITOLE",45.722503,5.218165,0,0,O38:SA:CTP11449,Europe/Paris,,O38, +O38:SP:11451,1,"BARENS ROUTIERS",45.746096,5.224383,0,0,O38:SA:CTP11451,Europe/Paris,,O38, +O38:SP:11452,1,"BARENS ROUTIERS",45.746294,5.224297,0,0,O38:SA:CTP11451,Europe/Paris,,O38, +O38:SP:11455,1,"BARENS CALVAIRE",45.737619,5.214147,0,0,O38:SA:CTP11455,Europe/Paris,,O38, +O38:SP:11456,1,"BARENS CALVAIRE",45.737555,5.214097,0,0,O38:SA:CTP11455,Europe/Paris,,O38, +O38:SP:11457,1,"BOULEVARD VERNA",45.749099,5.18317,0,0,O38:SA:CTP11457,Europe/Paris,,O38, +O38:SP:11458,1,"BOULEVARD VERNA",45.749177,5.182996,0,0,O38:SA:CTP11457,Europe/Paris,,O38, +O38:SP:11459,1,"MONTLOUVIER",45.718093,5.276162,0,0,O38:SA:CTP11459,Europe/Paris,,O38, +O38:SP:1146,1,"LE SELLIER",44.990243,6.116888,0,0,O38:SA:CTP1146,Europe/Paris,,O38, +O38:SP:11460,1,"MONTLOUVIER",45.718282,5.276898,0,0,O38:SA:CTP11459,Europe/Paris,,O38, +O38:SP:11461,1,"PLACE DE LA CHAITE",45.724943,5.24842,0,0,O38:SA:CTP11461,Europe/Paris,,O38, +O38:SP:11462,1,"PLACE DE LA CHAITE",45.724855,5.248385,0,0,O38:SA:CTP11461,Europe/Paris,,O38, +O38:SP:11463,1,"COLLEGE LAMARTINE",45.724145,5.245532,0,0,O38:SA:CTP11463,Europe/Paris,,O38, +O38:SP:11464,1,"COLLEGE LAMARTINE",45.723956,5.24566,0,0,O38:SA:CTP11463,Europe/Paris,,O38, +O38:SP:11465,1,"LA LEVRATIERE",45.727118,5.238075,0,0,O38:SA:CTP11465,Europe/Paris,,O38, +O38:SP:11466,1,"LA LEVRATIERE",45.727429,5.23792,0,0,O38:SA:CTP11465,Europe/Paris,,O38, +O38:SP:11467,1,"ROUTE DE PEYRIEU",45.71919,5.286921,0,0,O38:SA:CTP11467,Europe/Paris,,O38, +O38:SP:11468,1,"ROUTE DE PEYRIEU",45.719222,5.286731,0,0,O38:SA:CTP11467,Europe/Paris,,O38, +O38:SP:11469,1,"ST JULIEN-RD.52",45.734895,5.288362,0,0,O38:SA:CTP11469,Europe/Paris,,O38, +O38:SP:1147,1,"VENOSC VILLE",44.992844,6.116157,0,0,O38:SA:CTP1147,Europe/Paris,,O38, +O38:SP:11470,1,"ST JULIEN-RD.52",45.734846,5.288437,0,0,O38:SA:CTP11469,Europe/Paris,,O38, +O38:SP:11471,1,"SALLE DES FETES",45.724106,5.252685,0,0,O38:SA:CTP11471,Europe/Paris,,O38, +O38:SP:11472,1,"SALLE DES FETES",45.724004,5.252959,0,0,O38:SA:CTP11471,Europe/Paris,,O38, +O38:SP:11475,1,"CHAMP PROFOND",45.734119,5.264423,0,0,O38:SA:CTP11475,Europe/Paris,,O38, +O38:SP:11476,1,"CHAMP PROFOND",45.734055,5.264412,0,0,O38:SA:CTP11475,Europe/Paris,,O38, +O38:SP:11477,1,"CERTEAU",45.742072,5.24809,0,0,O38:SA:CTP11477,Europe/Paris,,O38, +O38:SP:11478,1,"CERTEAU",45.742098,5.248186,0,0,O38:SA:CTP11477,Europe/Paris,,O38, +O38:SP:1148,1,"VENOSC VILLE",44.992813,6.116066,0,0,O38:SA:CTP1147,Europe/Paris,,O38, +O38:SP:11480,1,"LES AREMES",45.70861,5.247766,0,0,O38:SA:CTP11480,Europe/Paris,,O38, +O38:SP:11481,1,"LES AREMES",45.708565,5.247686,0,0,O38:SA:CTP11480,Europe/Paris,,O38, +O38:SP:11482,1,"BLIED ABRIBUS",45.71231,5.262757,0,0,O38:SA:CTP11482,Europe/Paris,,O38, +O38:SP:11483,1,"BLIED ABRIBUS",45.712128,5.262688,0,0,O38:SA:CTP11482,Europe/Paris,,O38, +O38:SP:11484,1,"MOIRIEU-CHAPELLE",45.710535,5.261204,0,0,O38:SA:CTP11484,Europe/Paris,,O38, +O38:SP:11485,1,"MOIRIEU-CHAPELLE",45.710576,5.261118,0,0,O38:SA:CTP11484,Europe/Paris,,O38, +O38:SP:11486,1,"LE RELUISANT",45.718995,5.243073,0,0,O38:SA:CTP11486,Europe/Paris,,O38, +O38:SP:11487,1,"LE RELUISANT",45.719125,5.243056,0,0,O38:SA:CTP11486,Europe/Paris,,O38, +O38:SP:1149,1,"ECOLE DU BOURG - LE SELLIER",44.989525,6.115613,0,0,O38:SA:CTP1149,Europe/Paris,,O38, +O38:SP:11490,1,"MOIRIEU-CHEMIN DES VIGNES",45.70984,5.259083,0,0,O38:SA:CTP11490,Europe/Paris,,O38, +O38:SP:11491,1,"MOIRIEU-FOUR",45.708308,5.259109,0,0,O38:SA:CTP11491,Europe/Paris,,O38, +O38:SP:11492,1,"MOIRIEU-FOUR",45.708296,5.259018,0,0,O38:SA:CTP11491,Europe/Paris,,O38, +O38:SP:11495,1,"CLAIR BOIS",45.738195,5.268865,0,0,O38:SA:CTP11495,Europe/Paris,,O38, +O38:SP:11496,1,"CLAIR BOIS",45.738022,5.268934,0,0,O38:SA:CTP11495,Europe/Paris,,O38, +O38:SP:11497,1,"ECOLES VILLEMOIRIEU",45.716428,5.237291,0,0,O38:SA:CTP11497,Europe/Paris,,O38, +O38:SP:11498,1,"ECOLES VILLEMOIRIEU",45.716356,5.237287,0,0,O38:SA:CTP11497,Europe/Paris,,O38, +O38:SP:11499,1,"LE BOURG",45.712222,5.298211,0,0,O38:SA:CTP11499,Europe/Paris,,O38, +O38:SP:1150,1,"ECOLE DU BOURG - LE SELLIER",44.989426,6.115695,0,0,O38:SA:CTP1149,Europe/Paris,,O38, +O38:SP:11500,1,"LE BOURG",45.712072,5.298326,0,0,O38:SA:CTP11499,Europe/Paris,,O38, +O38:SP:11501,1,"SICCIEU LE BAS",45.740265,5.320778,0,0,O38:SA:CTP11501,Europe/Paris,,O38, +O38:SP:11502,1,"SICCIEU LE BAS",45.740284,5.320679,0,0,O38:SA:CTP11501,Europe/Paris,,O38, +O38:SP:11505,1,"LE MONUMENT",45.719241,5.294946,0,0,O38:SA:CTP11505,Europe/Paris,,O38, +O38:SP:11506,1,"LE MONUMENT",45.719205,5.294987,0,0,O38:SA:CTP11505,Europe/Paris,,O38, +O38:SP:11507,1,"CARISIEU",45.718748,5.318935,0,0,O38:SA:CTP11507,Europe/Paris,,O38, +O38:SP:11508,1,"CARISIEU",45.718748,5.318832,0,0,O38:SA:CTP11507,Europe/Paris,,O38, +O38:SP:11509,1,"PLACE",45.709897,5.349497,0,0,O38:SA:CTP11509,Europe/Paris,,O38, +O38:SP:1151,1,"TELECABINE",44.987459,6.115654,0,0,O38:SA:CTP1151,Europe/Paris,,O38, +O38:SP:11510,1,"PLACE",45.709656,5.349612,0,0,O38:SA:CTP11509,Europe/Paris,,O38, +O38:SP:11511,1,"GRAND COZANCE FOUR",45.703637,5.332302,0,0,O38:SA:CTP11511,Europe/Paris,,O38, +O38:SP:11512,1,"GRAND COZANCE FOUR",45.703707,5.332272,0,0,O38:SA:CTP11511,Europe/Paris,,O38, +O38:SP:11513,1,"SICCIEU PLACE",45.735452,5.316879,0,0,O38:SA:CTP11513,Europe/Paris,,O38, +O38:SP:11514,1,"SICCIEU PLACE",45.735424,5.316783,0,0,O38:SA:CTP11513,Europe/Paris,,O38, +O38:SP:11515,1,"LE PERRAY",45.728552,5.318091,0,0,O38:SA:CTP11515,Europe/Paris,,O38, +O38:SP:11516,1,"LE PERRAY",45.728543,5.317989,0,0,O38:SA:CTP11515,Europe/Paris,,O38, +O38:SP:11517,1,"ECOLE",45.711255,5.350398,0,0,O38:SA:CTP11517,Europe/Paris,,O38, +O38:SP:11518,1,"ECOLE",45.711263,5.350455,0,0,O38:SA:CTP11517,Europe/Paris,,O38, +O38:SP:11519,1,"MONUMENT",45.72784,5.381435,0,0,O38:SA:CTP11519,Europe/Paris,,O38, +O38:SP:1152,1,"TELECABINE",44.987396,6.115638,0,0,O38:SA:CTP1151,Europe/Paris,,O38, +O38:SP:11520,1,"MONUMENT",45.727796,5.381517,0,0,O38:SA:CTP11519,Europe/Paris,,O38, +O38:SP:11521,1,"CHANIZIEU - FONTAINE",45.737088,5.390613,0,0,O38:SA:CTP11521,Europe/Paris,,O38, +O38:SP:11522,1,"CHANIZIEU - FONTAINE",45.737176,5.390537,0,0,O38:SA:CTP11521,Europe/Paris,,O38, +O38:SP:11525,1,"FERME SAUBIN",45.704487,5.379652,0,0,O38:SA:CTP11525,Europe/Paris,,O38, +O38:SP:11526,1,"TIRIEU ABRIBUS",45.708233,5.377445,0,0,O38:SA:CTP11526,Europe/Paris,,O38, +O38:SP:11527,1,"TIRIEU ABRIBUS",45.708225,5.377529,0,0,O38:SA:CTP11526,Europe/Paris,,O38, +O38:SP:11528,1,"ECOLE",45.729462,5.383529,0,0,O38:SA:CTP11528,Europe/Paris,,O38, +O38:SP:11529,1,"ECOLE",45.729562,5.383588,0,0,O38:SA:CTP11528,Europe/Paris,,O38, +O38:SP:11530,1,"LES CITES",45.72538,5.424473,0,0,O38:SA:CTP11530,Europe/Paris,,O38, +O38:SP:11532,1,"ARANDON GARE",45.717376,5.423352,0,0,O38:SA:CTP11532,Europe/Paris,,O38, +O38:SP:11533,1,"ARANDON GARE",45.717382,5.42325,0,0,O38:SA:CTP11532,Europe/Paris,,O38, +O38:SP:11534,1,"FOUR COREOL",45.729985,5.406109,0,0,O38:SA:CTP11534,Europe/Paris,,O38, +O38:SP:11535,1,"TIRIEU LOTISSEMENT",45.702227,5.385563,0,0,O38:SA:CTP11535,Europe/Paris,,O38, +O38:SP:11537,1,"LANCIN CABINE",45.727961,5.406606,0,0,O38:SA:CTP11537,Europe/Paris,,O38, +O38:SP:11538,1,"LANCIN CABINE",45.72791,5.406521,0,0,O38:SA:CTP11537,Europe/Paris,,O38, +O38:SP:11539,1,"TIRIEU LE BAS",45.703447,5.382901,0,0,O38:SA:CTP11539,Europe/Paris,,O38, +O38:SP:11540,1,"TIRIEU LE BAS",45.703199,5.382936,0,0,O38:SA:CTP11539,Europe/Paris,,O38, +O38:SP:11543,1,"LE BROQUET",45.726408,5.378778,0,0,O38:SA:CTP11543,Europe/Paris,,O38, +O38:SP:11544,1,"LE BROQUET",45.726451,5.378695,0,0,O38:SA:CTP11543,Europe/Paris,,O38, +O38:SP:11545,1,"LANCIN",45.726158,5.406148,0,0,O38:SA:CTP11545,Europe/Paris,,O38, +O38:SP:11546,1,"LANCIN",45.724754,5.405096,0,0,O38:SA:CTP11545,Europe/Paris,,O38, +O38:SP:11547,1,"CHANIZIEU - ABRIBUS",45.73406,5.386142,0,0,O38:SA:CTP11547,Europe/Paris,,O38, +O38:SP:11548,1,"CHANIZIEU - ABRIBUS",45.734143,5.386046,0,0,O38:SA:CTP11547,Europe/Paris,,O38, +O38:SP:11551,1,"CHATEAU DE TIRIEU",45.709265,5.376101,0,0,O38:SA:CTP11551,Europe/Paris,,O38, +O38:SP:11552,1,"MONTGAUDET",45.705601,5.368026,0,0,O38:SA:CTP11552,Europe/Paris,,O38, +O38:SP:11553,1,"MONTGAUDET",45.705653,5.367926,0,0,O38:SA:CTP11552,Europe/Paris,,O38, +O38:SP:11554,1,"LA ROCHE",45.703068,5.36963,0,0,O38:SA:CTP11554,Europe/Paris,,O38, +O38:SP:11555,1,"LA ROCHE",45.703057,5.369615,0,0,O38:SA:CTP11554,Europe/Paris,,O38, +O38:SP:11556,1,"LES CAPTAGES",45.710761,5.372341,0,0,O38:SA:CTP11556,Europe/Paris,,O38, +O38:SP:11557,1,"LES CAPTAGES",45.710731,5.372358,0,0,O38:SA:CTP11556,Europe/Paris,,O38, +O38:SP:11558,1,"PUSIGNIEU CENTRE",45.738832,5.475024,0,0,O38:SA:CTP11558,Europe/Paris,,O38, +O38:SP:11559,1,"PUSIGNIEU CENTRE",45.738903,5.475007,0,0,O38:SA:CTP11558,Europe/Paris,,O38, +O38:SP:1156,1,"STATION - AGENCE TRANSISERE VFD",45.006236,6.122139,0,0,O38:SA:CTP1156,Europe/Paris,,O38, +O38:SP:11560,1,"LA CROIX",45.711175,5.432799,0,0,O38:SA:CTP11560,Europe/Paris,,O38, +O38:SP:11561,1,"LA CROIX",45.711196,5.432699,0,0,O38:SA:CTP11560,Europe/Paris,,O38, +O38:SP:11562,1,"CONCHARBIN",45.716249,5.464724,0,0,O38:SA:CTP11562,Europe/Paris,,O38, +O38:SP:11563,1,"CONCHARBIN",45.716297,5.464813,0,0,O38:SA:CTP11562,Europe/Paris,,O38, +O38:SP:11564,1,"DALEIGNEU",45.719412,5.482977,0,0,O38:SA:CTP11564,Europe/Paris,,O38, +O38:SP:11565,1,"DALEIGNEU",45.719405,5.48328,0,0,O38:SA:CTP11564,Europe/Paris,,O38, +O38:SP:11566,1,"PUSIGNIEU ECOLE",45.739843,5.481094,0,0,O38:SA:CTP11566,Europe/Paris,,O38, +O38:SP:11567,1,"PUSIGNIEU ECOLE",45.739982,5.481054,0,0,O38:SA:CTP11566,Europe/Paris,,O38, +O38:SP:11568,1,"CREYS VILLAGE",45.727471,5.487439,0,0,O38:SA:CTP11568,Europe/Paris,,O38, +O38:SP:11569,1,"CREYS VILLAGE",45.72742,5.487556,0,0,O38:SA:CTP11568,Europe/Paris,,O38, +O38:SP:1157,1,"BALLATIN",44.988971,6.1157,0,0,O38:SA:CTP1157,Europe/Paris,,O38, +O38:SP:11570,1,"HAMEAU LA GORGE",45.72352,5.463091,0,0,O38:SA:CTP11570,Europe/Paris,,O38, +O38:SP:11571,1,"HAMEAU LA GORGE",45.723576,5.462893,0,0,O38:SA:CTP11570,Europe/Paris,,O38, +O38:SP:11572,1,"BOLOGNE",45.722823,5.432638,0,0,O38:SA:CTP11572,Europe/Paris,,O38, +O38:SP:11573,1,"BOLOGNE",45.722639,5.432584,0,0,O38:SA:CTP11572,Europe/Paris,,O38, +O38:SP:11574,1,"PUSIGNIEU",45.738401,5.472382,0,0,O38:SA:CTP11574,Europe/Paris,,O38, +O38:SP:11578,1,"ARANDON ECOLE",45.711858,5.433174,0,0,O38:SA:CTP11578,Europe/Paris,,O38, +O38:SP:11579,1,"PLATEAU",45.702281,5.491234,0,0,O38:SA:CTP11579,Europe/Paris,,O38, +O38:SP:1158,1,"BALLATIN",44.988977,6.11571,0,0,O38:SA:CTP1157,Europe/Paris,,O38, +O38:SP:11580,1,"PLATEAU",45.702213,5.491199,0,0,O38:SA:CTP11579,Europe/Paris,,O38, +O38:SP:11581,1,"LE NIZERAY SCIERIE",45.705992,5.485194,0,0,O38:SA:CTP11581,Europe/Paris,,O38, +O38:SP:11582,1,"LE NIZERAY SCIERIE",45.705927,5.485151,0,0,O38:SA:CTP11581,Europe/Paris,,O38, +O38:SP:11583,1,"ECOLE",45.726987,5.488503,0,0,O38:SA:CTP11583,Europe/Paris,,O38, +O38:SP:11584,1,"ECOLE",45.727012,5.48858,0,0,O38:SA:CTP11583,Europe/Paris,,O38, +O38:SP:11585,1,"LE POULET",45.732484,5.486746,0,0,O38:SA:CTP11585,Europe/Paris,,O38, +O38:SP:11586,1,"LE POULET",45.732532,5.486807,0,0,O38:SA:CTP11585,Europe/Paris,,O38, +O38:SP:11587,1,"LE MOLLARD",45.729666,5.494892,0,0,O38:SA:CTP11587,Europe/Paris,,O38, +O38:SP:11588,1,"LE MOLLARD",45.729639,5.494797,0,0,O38:SA:CTP11587,Europe/Paris,,O38, +O38:SP:11589,1,"TOURS",45.709811,5.534958,0,0,O38:SA:CTP11589,Europe/Paris,,O38, +O38:SP:1159,1,"PONT ESCOFFIER",45.006574,6.069395,0,0,O38:SA:CTP1159,Europe/Paris,,O38, +O38:SP:11590,1,"TOURS",45.709787,5.534935,0,0,O38:SA:CTP11589,Europe/Paris,,O38, +O38:SP:11591,1,"PLAINE DU ROUX",45.700585,5.49621,0,0,O38:SA:CTP11591,Europe/Paris,,O38, +O38:SP:11592,1,"PLAINE DU ROUX",45.700687,5.496193,0,0,O38:SA:CTP11591,Europe/Paris,,O38, +O38:SP:11595,1,"GOUVOUX MT FAISSON",45.708439,5.515802,0,0,O38:SA:CTP11595,Europe/Paris,,O38, +O38:SP:11596,1,"GOUVOUX MT FAISSON",45.708728,5.515999,0,0,O38:SA:CTP11595,Europe/Paris,,O38, +O38:SP:1160,1,"PONT ESCOFFIER",45.006523,6.069324,0,0,O38:SA:CTP1159,Europe/Paris,,O38, +O38:SP:1164,1,"STATION - MAISON DU TOURISME",45.010925,6.123969,0,0,O38:SA:CTP1164,Europe/Paris,,O38, +O38:SP:1165,1,"LES ESCALONS",44.992192,6.079082,0,0,O38:SA:CTP1165,Europe/Paris,,O38, +O38:SP:1166,1,"LES ESCALONS",44.992125,6.079049,0,0,O38:SA:CTP1165,Europe/Paris,,O38, +O38:SP:11661,1,"LES BRUYERES",45.756637,5.155702,0,0,O38:SA:CTP11661,Europe/Paris,,O38, +O38:SP:11663,1,"RUE DES MESANGES",45.78722,5.106618,0,0,O38:SA:CTP11663,Europe/Paris,,O38, +O38:SP:11664,1,"RUE DES MESANGES",45.786931,5.106366,0,0,O38:SA:CTP11663,Europe/Paris,,O38, +O38:SP:11665,1,"ASNIERE AUBERGE",45.777986,5.116848,0,0,O38:SA:CTP11665,Europe/Paris,,O38, +O38:SP:11666,1,"ASNIERE AUBERGE",45.776672,5.118816,0,0,O38:SA:CTP11665,Europe/Paris,,O38, +O38:SP:11667,1,"MONS VILLAGE",45.781341,5.107108,0,0,O38:SA:CTP11667,Europe/Paris,,O38, +O38:SP:11668,1,"MONS VILLAGE",45.781559,5.107046,0,0,O38:SA:CTP11667,Europe/Paris,,O38, +O38:SP:11669,1,"LA PLACE",45.795316,5.114713,0,0,O38:SA:CTP11669,Europe/Paris,,O38, +O38:SP:1167,1,"LES OUGIERS",44.9934,6.081386,0,0,O38:SA:CTP1167,Europe/Paris,,O38, +O38:SP:11670,1,"LA PLACE",45.795258,5.114463,0,0,O38:SA:CTP11669,Europe/Paris,,O38, +O38:SP:11671,1,"LES ORMES",45.795328,5.120377,0,0,O38:SA:CTP11671,Europe/Paris,,O38, +O38:SP:11672,1,"LES ORMES",45.79542,5.120355,0,0,O38:SA:CTP11671,Europe/Paris,,O38, +O38:SP:11673,1,"SOUS L'EGLISE",45.801005,5.123448,0,0,O38:SA:CTP11673,Europe/Paris,,O38, +O38:SP:11674,1,"SOUS L'EGLISE",45.801018,5.123612,0,0,O38:SA:CTP11673,Europe/Paris,,O38, +O38:SP:11675,1,"A.F.T.",45.790474,5.133981,0,0,O38:SA:CTP11675,Europe/Paris,,O38, +O38:SP:11676,1,"A.F.T.",45.790411,5.134212,0,0,O38:SA:CTP11675,Europe/Paris,,O38, +O38:SP:11677,1,"RUE DES PERDRIX",45.786494,5.110008,0,0,O38:SA:CTP11677,Europe/Paris,,O38, +O38:SP:11678,1,"RUE DES PERDRIX",45.78657,5.109997,0,0,O38:SA:CTP11677,Europe/Paris,,O38, +O38:SP:11679,1,"LES SAULES",45.790107,5.108504,0,0,O38:SA:CTP11679,Europe/Paris,,O38, +O38:SP:1168,1,"LES OUGIERS",44.993305,6.08141,0,0,O38:SA:CTP1167,Europe/Paris,,O38, +O38:SP:11680,1,"LES SAULES",45.789915,5.109168,0,0,O38:SA:CTP11679,Europe/Paris,,O38, +O38:SP:11681,1,"Z.I.",45.794876,5.130398,0,0,O38:SA:CTP11681,Europe/Paris,,O38, +O38:SP:11682,1,"Z.I.",45.794718,5.130481,0,0,O38:SA:CTP11681,Europe/Paris,,O38, +O38:SP:11683,1,"MONS-ECOLE",45.77924,5.111142,0,0,O38:SA:CTP11683,Europe/Paris,,O38, +O38:SP:11684,1,"MONS-ECOLE",45.779459,5.110598,0,0,O38:SA:CTP11683,Europe/Paris,,O38, +O38:SP:11685,1,"LA MAIRIE",45.790019,5.169771,0,0,O38:SA:CTP11685,Europe/Paris,,O38, +O38:SP:11686,1,"LA MAIRIE",45.789846,5.169696,0,0,O38:SA:CTP11685,Europe/Paris,,O38, +O38:SP:11687,1,"LES 5 CHEMINS",45.767596,5.194277,0,0,O38:SA:CTP11687,Europe/Paris,,O38, +O38:SP:11688,1,"LES 5 CHEMINS",45.767714,5.194332,0,0,O38:SA:CTP11687,Europe/Paris,,O38, +O38:SP:11689,1,"LES 5 CHEMINS ECOLE",45.766659,5.193248,0,0,O38:SA:CTP11689,Europe/Paris,,O38, +O38:SP:1169,1,"VENOSC EGLISE",44.990293,6.114862,0,0,O38:SA:CTP1169,Europe/Paris,,O38, +O38:SP:11690,1,"LES 5 CHEMINS ECOLE",45.766707,5.193524,0,0,O38:SA:CTP11689,Europe/Paris,,O38, +O38:SP:11691,1,"RUE DU 11 NOVEMBRE",45.770528,5.177406,0,0,O38:SA:CTP11691,Europe/Paris,,O38, +O38:SP:11692,1,"RUE DU 11 NOVEMBRE",45.770642,5.176902,0,0,O38:SA:CTP11691,Europe/Paris,,O38, +O38:SP:11697,1,"USINE M.R.C.",45.767615,5.182777,0,0,O38:SA:CTP11697,Europe/Paris,,O38, +O38:SP:11698,1,"SQUARE GINET",45.763567,5.178399,0,0,O38:SA:CTP11698,Europe/Paris,,O38, +O38:SP:11699,1,"SQUARE GINET",45.763618,5.178562,0,0,O38:SA:CTP11698,Europe/Paris,,O38, +O38:SP:1170,1,"VENOSC EGLISE",44.990276,6.114961,0,0,O38:SA:CTP1169,Europe/Paris,,O38, +O38:SP:11700,1,"LA CROIX",45.778474,5.17377,0,0,O38:SA:CTP11700,Europe/Paris,,O38, +O38:SP:11701,1,"LA CROIX",45.777883,5.174365,0,0,O38:SA:CTP11700,Europe/Paris,,O38, +O38:SP:11702,1,"LE BOUCHET",45.776578,5.179405,0,0,O38:SA:CTP11702,Europe/Paris,,O38, +O38:SP:11703,1,"LE BOUCHET",45.776911,5.177525,0,0,O38:SA:CTP11702,Europe/Paris,,O38, +O38:SP:11704,1,"LES MOULINS",45.771555,5.183361,0,0,O38:SA:CTP11704,Europe/Paris,,O38, +O38:SP:11705,1,"LES MOULINS",45.771536,5.183455,0,0,O38:SA:CTP11704,Europe/Paris,,O38, +O38:SP:11707,1,"COLLEGE LE GRAND CHAMP",45.758039,5.175072,0,0,O38:SA:CTP11707,Europe/Paris,,O38, +O38:SP:11708,1,"COLLEGE LE GRAND CHAMP",45.758367,5.175314,0,0,O38:SA:CTP11707,Europe/Paris,,O38, +O38:SP:11709,1,"LE DEPOT",45.789634,5.165986,0,0,O38:SA:CTP11709,Europe/Paris,,O38, +O38:SP:11710,1,"LE DEPOT",45.789709,5.166052,0,0,O38:SA:CTP11709,Europe/Paris,,O38, +O38:SP:11711,1,"PONT D'ASNIERES",45.766334,5.183906,0,0,O38:SA:CTP11711,Europe/Paris,,O38, +O38:SP:11712,1,"PONT D'ASNIERES",45.766286,5.183808,0,0,O38:SA:CTP11711,Europe/Paris,,O38, +O38:SP:11713,1,"PLACE",45.776754,5.171084,0,0,O38:SA:CTP11713,Europe/Paris,,O38, +O38:SP:11714,1,"PLACE",45.777005,5.171264,0,0,O38:SA:CTP11713,Europe/Paris,,O38, +O38:SP:11715,1,"L'HERITIERE",45.772589,5.172007,0,0,O38:SA:CTP11715,Europe/Paris,,O38, +O38:SP:11716,1,"L'HERITIERE",45.772629,5.172093,0,0,O38:SA:CTP11715,Europe/Paris,,O38, +O38:SP:11717,1,"LYCEES",45.754876,5.17278,0,0,O38:SA:CTP11717,Europe/Paris,,O38, +O38:SP:11719,1,"LA PLAINE",45.761159,5.189664,0,0,O38:SA:CTP11719,Europe/Paris,,O38, +O38:SP:11720,1,"LA GARE",45.755375,5.210623,0,0,O38:SA:CTP11720,Europe/Paris,,O38, +O38:SP:11721,1,"LA GARE",45.755244,5.210655,0,0,O38:SA:CTP11720,Europe/Paris,,O38, +O38:SP:11722,1,"LE PORT",45.769772,5.208138,0,0,O38:SA:CTP11722,Europe/Paris,,O38, +O38:SP:11723,1,"LE PORT",45.769753,5.208238,0,0,O38:SA:CTP11722,Europe/Paris,,O38, +O38:SP:11724,1,"PASSIEU-CHEVRAMONT",45.758285,5.215054,0,0,O38:SA:CTP11724,Europe/Paris,,O38, +O38:SP:11725,1,"PASSIEU-CHEVRAMONT",45.758191,5.215212,0,0,O38:SA:CTP11724,Europe/Paris,,O38, +O38:SP:11726,1,"BD DU COLLEGE",45.756092,5.173539,0,0,O38:SA:CTP11726,Europe/Paris,,O38, +O38:SP:11727,1,"BD DU COLLEGE",45.756056,5.173628,0,0,O38:SA:CTP11726,Europe/Paris,,O38, +O38:SP:11728,1,"PASSIEU-LA GIRINE",45.75702,5.219107,0,0,O38:SA:CTP11728,Europe/Paris,,O38, +O38:SP:11729,1,"PASSIEU-LA GIRINE",45.757082,5.218989,0,0,O38:SA:CTP11728,Europe/Paris,,O38, +O38:SP:1173,1,"L'ALLEAU",44.984671,6.121863,0,0,O38:SA:CTP1173,Europe/Paris,,O38, +O38:SP:11730,1,"MAIRIE",45.752495,5.220263,0,0,O38:SA:CTP11730,Europe/Paris,,O38, +O38:SP:11731,1,"MAIRIE",45.752151,5.220466,0,0,O38:SA:CTP11730,Europe/Paris,,O38, +O38:SP:11732,1,"ZONE ARTISANALE",45.761791,5.208475,0,0,O38:SA:CTP11732,Europe/Paris,,O38, +O38:SP:11733,1,"ZONE ARTISANALE",45.76152,5.208349,0,0,O38:SA:CTP11732,Europe/Paris,,O38, +O38:SP:11734,1,"ST-ETIENNE DE HIERES",45.796964,5.278772,0,0,O38:SA:CTP11734,Europe/Paris,,O38, +O38:SP:11735,1,"ST-ETIENNE DE HIERES",45.796834,5.278944,0,0,O38:SA:CTP11734,Europe/Paris,,O38, +O38:SP:11736,1,"BOURCIEU",45.784762,5.285231,0,0,O38:SA:CTP11736,Europe/Paris,,O38, +O38:SP:11737,1,"BOURCIEU",45.784912,5.285169,0,0,O38:SA:CTP11736,Europe/Paris,,O38, +O38:SP:11738,1,"LA PLACE",45.758876,5.254214,0,0,O38:SA:CTP11738,Europe/Paris,,O38, +O38:SP:11739,1,"LA PLACE",45.758869,5.254111,0,0,O38:SA:CTP11738,Europe/Paris,,O38, +O38:SP:1174,1,"L'ALLEAU",44.984691,6.121753,0,0,O38:SA:CTP1173,Europe/Paris,,O38, +O38:SP:11740,1,"LA PLACE",45.797111,5.29335,0,0,O38:SA:CTP11740,Europe/Paris,,O38, +O38:SP:11741,1,"LA PLACE",45.797278,5.292519,0,0,O38:SA:CTP11740,Europe/Paris,,O38, +O38:SP:11742,1,"LE ROCHER",45.75706,5.293064,0,0,O38:SA:CTP11742,Europe/Paris,,O38, +O38:SP:11743,1,"LE ROCHER",45.757023,5.293153,0,0,O38:SA:CTP11742,Europe/Paris,,O38, +O38:SP:11744,1,"MICHALIEU",45.752061,5.277256,0,0,O38:SA:CTP11744,Europe/Paris,,O38, +O38:SP:11745,1,"MICHALIEU",45.752125,5.277205,0,0,O38:SA:CTP11744,Europe/Paris,,O38, +O38:SP:11746,1,"L'EGLISE",45.752512,5.290064,0,0,O38:SA:CTP11746,Europe/Paris,,O38, +O38:SP:11747,1,"L'EGLISE",45.752452,5.290123,0,0,O38:SA:CTP11746,Europe/Paris,,O38, +O38:SP:1175,1,"BOURG D'ARUD CAMPING",44.986985,6.121233,0,0,O38:SA:CTP1175,Europe/Paris,,O38, +O38:SP:11751,1,"JALIONAS",45.762663,5.233039,0,0,O38:SA:CTP11751,Europe/Paris,,O38, +O38:SP:11752,1,"LOPRETE",45.780341,5.28351,0,0,O38:SA:CTP11752,Europe/Paris,,O38, +O38:SP:11753,1,"LOPRETE",45.780364,5.283411,0,0,O38:SA:CTP11752,Europe/Paris,,O38, +O38:SP:11754,1,"LA FONTAINE",45.777442,5.281465,0,0,O38:SA:CTP11754,Europe/Paris,,O38, +O38:SP:11755,1,"LA FONTAINE",45.77751,5.281503,0,0,O38:SA:CTP11754,Europe/Paris,,O38, +O38:SP:11758,1,"CHATELANS PLACE",45.774219,5.308493,0,0,O38:SA:CTP11758,Europe/Paris,,O38, +O38:SP:11759,1,"CHATELANS PLACE",45.774266,5.308572,0,0,O38:SA:CTP11758,Europe/Paris,,O38, +O38:SP:1176,1,"BOURG D'ARUD CAMPING",44.987001,6.12094,0,0,O38:SA:CTP1175,Europe/Paris,,O38, +O38:SP:11760,1,"HAMEAU CHAPIEU",45.788941,5.36389,0,0,O38:SA:CTP11760,Europe/Paris,,O38, +O38:SP:11761,1,"HAMEAU CHAPIEU",45.788923,5.363844,0,0,O38:SA:CTP11760,Europe/Paris,,O38, +O38:SP:11762,1,"LE VERNAY",45.794215,5.356342,0,0,O38:SA:CTP11762,Europe/Paris,,O38, +O38:SP:11763,1,"LE VERNAY",45.794212,5.35624,0,0,O38:SA:CTP11762,Europe/Paris,,O38, +O38:SP:11764,1,"CHATELANS LOT.",45.772104,5.302139,0,0,O38:SA:CTP11764,Europe/Paris,,O38, +O38:SP:11765,1,"CHATELANS LOT.",45.772173,5.302114,0,0,O38:SA:CTP11764,Europe/Paris,,O38, +O38:SP:11766,1,"ETANG LA TUILLE",45.763593,5.322808,0,0,O38:SA:CTP11766,Europe/Paris,,O38, +O38:SP:11767,1,"ETANG LA TUILLE",45.763569,5.32271,0,0,O38:SA:CTP11766,Europe/Paris,,O38, +O38:SP:11768,1,"MAIRIE",45.790072,5.337988,0,0,O38:SA:CTP11768,Europe/Paris,,O38, +O38:SP:11769,1,"MAIRIE",45.789987,5.338097,0,0,O38:SA:CTP11768,Europe/Paris,,O38, +O38:SP:11770,1,"SURBAIX",45.77745,5.349323,0,0,O38:SA:CTP11770,Europe/Paris,,O38, +O38:SP:11771,1,"SURBAIX",45.77728,5.349296,0,0,O38:SA:CTP11770,Europe/Paris,,O38, +O38:SP:11772,1,"LA PLAINE",45.773384,5.345128,0,0,O38:SA:CTP11772,Europe/Paris,,O38, +O38:SP:11773,1,"LA PLAINE",45.773336,5.345221,0,0,O38:SA:CTP11772,Europe/Paris,,O38, +O38:SP:11774,1,"BAIX",45.78122,5.35171,0,0,O38:SA:CTP11774,Europe/Paris,,O38, +O38:SP:11775,1,"BAIX",45.781224,5.351857,0,0,O38:SA:CTP11774,Europe/Paris,,O38, +O38:SP:11778,1,"LE VERT-LA CROIX",45.786094,5.339313,0,0,O38:SA:CTP11778,Europe/Paris,,O38, +O38:SP:11779,1,"LE VERT-LA CROIX",45.786076,5.339213,0,0,O38:SA:CTP11778,Europe/Paris,,O38, +O38:SP:1178,1,"STATION - PALAIS DES SPORTS",45.013804,6.124634,0,0,O38:SA:CTP1178,Europe/Paris,,O38, +O38:SP:11780,1,"PLACE",45.750169,5.329404,0,0,O38:SA:CTP11780,Europe/Paris,,O38, +O38:SP:11781,1,"PLACE",45.750245,5.3292,0,0,O38:SA:CTP11780,Europe/Paris,,O38, +O38:SP:11786,1,"LE ROLLAND-4 CHEMINS",45.791983,5.424089,0,0,O38:SA:CTP11786,Europe/Paris,,O38, +O38:SP:11787,1,"LE ROLLAND-4 CHEMINS",45.7918,5.424577,0,0,O38:SA:CTP11786,Europe/Paris,,O38, +O38:SP:11788,1,"POLEYRIEU VILLAGE",45.76118,5.40919,0,0,O38:SA:CTP11788,Europe/Paris,,O38, +O38:SP:11789,1,"POLEYRIEU VILLAGE",45.761245,5.409176,0,0,O38:SA:CTP11788,Europe/Paris,,O38, +O38:SP:11790,1,"HLM LA RIVOIRE",45.793979,5.409916,0,0,O38:SA:CTP11790,Europe/Paris,,O38, +O38:SP:11791,1,"HLM LA RIVOIRE",45.793862,5.410222,0,0,O38:SA:CTP11790,Europe/Paris,,O38, +O38:SP:11792,1,"MARLIEU",45.784992,5.406741,0,0,O38:SA:CTP11792,Europe/Paris,,O38, +O38:SP:11793,1,"MARLIEU",45.784981,5.406706,0,0,O38:SA:CTP11792,Europe/Paris,,O38, +O38:SP:11794,1,"LES FONTANETTES",45.792098,5.401567,0,0,O38:SA:CTP11794,Europe/Paris,,O38, +O38:SP:11796,1,"ECOLE",45.793593,5.411598,0,0,O38:SA:CTP11796,Europe/Paris,,O38, +O38:SP:11797,1,"ECOLE",45.793523,5.411576,0,0,O38:SA:CTP11796,Europe/Paris,,O38, +O38:SP:11798,1,"ROUTE DE BOULIEU",45.783142,5.398411,0,0,O38:SA:CTP11798,Europe/Paris,,O38, +O38:SP:11799,1,"ROUTE DE BOULIEU",45.783081,5.398466,0,0,O38:SA:CTP11798,Europe/Paris,,O38, +O38:SP:1180,1,"STATION - PALAIS DES SPORTS",45.013461,6.124626,0,0,O38:SA:CTP1178,Europe/Paris,,O38, +O38:SP:11800,1,"BOULIEU FERME",45.776472,5.375101,0,0,O38:SA:CTP11800,Europe/Paris,,O38, +O38:SP:11801,1,"BOULIEU FERME",45.776405,5.375065,0,0,O38:SA:CTP11800,Europe/Paris,,O38, +O38:SP:11802,1,"BOULIEU VILLAGE",45.774291,5.379572,0,0,O38:SA:CTP11802,Europe/Paris,,O38, +O38:SP:11803,1,"BOULIEU VILLAGE",45.774352,5.379623,0,0,O38:SA:CTP11802,Europe/Paris,,O38, +O38:SP:11808,1,"DEPOT DAUPHINE RD1075",45.777682,5.401038,0,0,O38:SA:CTP11808,Europe/Paris,,O38, +O38:SP:11809,1,"DEPOT DAUPHINE RD1075",45.777377,5.400926,0,0,O38:SA:CTP11808,Europe/Paris,,O38, +O38:SP:11810,1,"BOULIEU CHATEAU",45.776075,5.381341,0,0,O38:SA:CTP11810,Europe/Paris,,O38, +O38:SP:11811,1,"BOULIEU CHATEAU",45.776044,5.381435,0,0,O38:SA:CTP11810,Europe/Paris,,O38, +O38:SP:11813,1,"POLEYRIEU LE BAS",45.757587,5.40928,0,0,O38:SA:CTP11813,Europe/Paris,,O38, +O38:SP:11814,1,"CHAVANNE",45.764509,5.417796,0,0,O38:SA:CTP11814,Europe/Paris,,O38, +O38:SP:11815,1,"CHAVANNE",45.764474,5.417886,0,0,O38:SA:CTP11814,Europe/Paris,,O38, +O38:SP:11816,1,"FAVERGES - SALLE DES FETES",45.760428,5.442723,0,0,O38:SA:CTP11816,Europe/Paris,,O38, +O38:SP:11817,1,"FAVERGES - SALLE DES FETES",45.760477,5.442856,0,0,O38:SA:CTP11816,Europe/Paris,,O38, +O38:SP:11818,1,"FAVERGES",45.763818,5.445756,0,0,O38:SA:CTP11818,Europe/Paris,,O38, +O38:SP:11819,1,"FAVERGES",45.763896,5.445724,0,0,O38:SA:CTP11818,Europe/Paris,,O38, +O38:SP:1182,1,"PLAN DU LAC",44.978612,6.144928,0,0,O38:SA:CTP1182,Europe/Paris,,O38, +O38:SP:11822,1,"MALVILLE",45.748786,5.47872,0,0,O38:SA:CTP11822,Europe/Paris,,O38, +O38:SP:11823,1,"MALVILLE",45.748932,5.478528,0,0,O38:SA:CTP11822,Europe/Paris,,O38, +O38:SP:11824,1,"MEPIEU",45.748866,5.446982,0,0,O38:SA:CTP11824,Europe/Paris,,O38, +O38:SP:11825,1,"MEPIEU",45.748818,5.447019,0,0,O38:SA:CTP11824,Europe/Paris,,O38, +O38:SP:11826,1,"LE BEL AIR",45.768198,5.450066,0,0,O38:SA:CTP11826,Europe/Paris,,O38, +O38:SP:11827,1,"LE BEL AIR",45.768088,5.449873,0,0,O38:SA:CTP11826,Europe/Paris,,O38, +O38:SP:1183,1,"PLAN DU LAC",44.978567,6.144849,0,0,O38:SA:CTP1182,Europe/Paris,,O38, +O38:SP:11832,1,"LE BAYARD",45.781371,5.440518,0,0,O38:SA:CTP11832,Europe/Paris,,O38, +O38:SP:11833,1,"LE BAYARD",45.781369,5.440622,0,0,O38:SA:CTP11832,Europe/Paris,,O38, +O38:SP:11834,1,"QUIRIEU",45.788113,5.43738,0,0,O38:SA:CTP11834,Europe/Paris,,O38, +O38:SP:11835,1,"QUIRIEU",45.788068,5.437299,0,0,O38:SA:CTP11834,Europe/Paris,,O38, +O38:SP:11836,1,"LA BERGERIE",45.780018,5.440079,0,0,O38:SA:CTP11836,Europe/Paris,,O38, +O38:SP:11837,1,"LA BERGERIE",45.779892,5.440178,0,0,O38:SA:CTP11836,Europe/Paris,,O38, +O38:SP:11838,1,"FAVERGES PIFFON",45.759498,5.453947,0,0,O38:SA:CTP11838,Europe/Paris,,O38, +O38:SP:1184,1,"CARREFOUR LE REYNAUD",45.090221,5.193681,0,0,O38:SA:CTP1184,Europe/Paris,,O38, +O38:SP:11843,1,"MOULIN D'AVAUX",45.804355,5.288683,0,0,O38:SA:CTP11843,Europe/Paris,,O38, +O38:SP:11844,1,"MOULIN D'AVAUX",45.804259,5.288759,0,0,O38:SA:CTP11843,Europe/Paris,,O38, +O38:SP:11845,1,"CAFE MARTINET",45.797849,5.295136,0,0,O38:SA:CTP11845,Europe/Paris,,O38, +O38:SP:11846,1,"CAFE MARTINET",45.79779,5.295241,0,0,O38:SA:CTP11845,Europe/Paris,,O38, +O38:SP:11847,1,"LES USINES",45.807074,5.291339,0,0,O38:SA:CTP11847,Europe/Paris,,O38, +O38:SP:11848,1,"LES USINES",45.807146,5.291623,0,0,O38:SA:CTP11847,Europe/Paris,,O38, +O38:SP:11849,1,"LA BROSSE",45.827857,5.30066,0,0,O38:SA:CTP11849,Europe/Paris,,O38, +O38:SP:1185,1,"CARREFOUR LE REYNAUD",45.090207,5.193661,0,0,O38:SA:CTP1184,Europe/Paris,,O38, +O38:SP:11850,1,"LA BROSSE",45.827889,5.300684,0,0,O38:SA:CTP11849,Europe/Paris,,O38, +O38:SP:11853,1,"AMBLERIEU",45.834445,5.325891,0,0,O38:SA:CTP11853,Europe/Paris,,O38, +O38:SP:11854,1,"AMBLERIEU",45.834633,5.326156,0,0,O38:SA:CTP11853,Europe/Paris,,O38, +O38:SP:11855,1,"MARIGNIEU VILLAS",45.81331,5.304146,0,0,O38:SA:CTP11855,Europe/Paris,,O38, +O38:SP:11856,1,"MARIGNIEU VILLAS",45.81324,5.304124,0,0,O38:SA:CTP11855,Europe/Paris,,O38, +O38:SP:11859,1,"LES BROSSES",45.829225,5.352989,0,0,O38:SA:CTP11859,Europe/Paris,,O38, +O38:SP:1186,1,"GARE",45.08712,5.192646,0,0,O38:SA:CTP1186,Europe/Paris,,O38, +O38:SP:11860,1,"LES BROSSES",45.82935,5.352912,0,0,O38:SA:CTP11859,Europe/Paris,,O38, +O38:SP:11863,1,"ECOLE",45.839073,5.353816,0,0,O38:SA:CTP11863,Europe/Paris,,O38, +O38:SP:11864,1,"TORJONAS",45.806215,5.32936,0,0,O38:SA:CTP11864,Europe/Paris,,O38, +O38:SP:11866,1,"PARMILIEU",45.839177,5.355143,0,0,O38:SA:CTP11866,Europe/Paris,,O38, +O38:SP:11867,1,"PARMILIEU",45.839068,5.355323,0,0,O38:SA:CTP11866,Europe/Paris,,O38, +O38:SP:1187,1,"GARE",45.087058,5.192697,0,0,O38:SA:CTP1186,Europe/Paris,,O38, +O38:SP:11870,1,"ROND-POINT NORD",45.821518,5.406569,0,0,O38:SA:CTP11870,Europe/Paris,,O38, +O38:SP:11871,1,"ROND-POINT NORD",45.82157,5.406472,0,0,O38:SA:CTP11870,Europe/Paris,,O38, +O38:SP:11876,1,"PLACE",45.815816,5.404209,0,0,O38:SA:CTP11876,Europe/Paris,,O38, +O38:SP:11877,1,"PLACE",45.815805,5.404297,0,0,O38:SA:CTP11876,Europe/Paris,,O38, +O38:SP:11878,1,"CENTRE COMMERCIAL",45.809727,5.402722,0,0,O38:SA:CTP11878,Europe/Paris,,O38, +O38:SP:11879,1,"CENTRE COMMERCIAL",45.809481,5.402545,0,0,O38:SA:CTP11878,Europe/Paris,,O38, +O38:SP:1188,1,"LES FAURIES",45.0855,5.182234,0,0,O38:SA:CTP1188,Europe/Paris,,O38, +O38:SP:11880,1,"COLLEGE LES PIERRES PLANTES",45.807029,5.399604,0,0,O38:SA:CTP11880,Europe/Paris,,O38, +O38:SP:11881,1,"COLLEGE LES PIERRES PLANTES",45.807231,5.400022,0,0,O38:SA:CTP11880,Europe/Paris,,O38, +O38:SP:11882,1,"ECOLE",45.809197,5.368275,0,0,O38:SA:CTP11882,Europe/Paris,,O38, +O38:SP:11883,1,"ECOLE",45.809227,5.368185,0,0,O38:SA:CTP11882,Europe/Paris,,O38, +O38:SP:11884,1,"MAIRIE",45.79558,5.415409,0,0,O38:SA:CTP11884,Europe/Paris,,O38, +O38:SP:11885,1,"MAIRIE",45.795593,5.415251,0,0,O38:SA:CTP11884,Europe/Paris,,O38, +O38:SP:11888,1,"HAMEAU LE TURNOUD",45.838663,5.400918,0,0,O38:SA:CTP11888,Europe/Paris,,O38, +O38:SP:11889,1,"HAMEAU LE TURNOUD",45.83855,5.401108,0,0,O38:SA:CTP11888,Europe/Paris,,O38, +O38:SP:1189,1,"LES FAURIES",45.08538,5.182223,0,0,O38:SA:CTP1188,Europe/Paris,,O38, +O38:SP:11890,1,"AMBLAGNIEU PLACE",45.840256,5.39374,0,0,O38:SA:CTP11890,Europe/Paris,,O38, +O38:SP:11891,1,"VASSIEU",45.825723,5.39374,0,0,O38:SA:CTP11891,Europe/Paris,,O38, +O38:SP:11892,1,"VASSIEU",45.825778,5.393603,0,0,O38:SA:CTP11891,Europe/Paris,,O38, +O38:SP:11893,1,"MARIEU",45.838372,5.376561,0,0,O38:SA:CTP11893,Europe/Paris,,O38, +O38:SP:11895,1,"CONILIEU",45.824897,5.38353,0,0,O38:SA:CTP11895,Europe/Paris,,O38, +O38:SP:11896,1,"CONILIEU",45.82488,5.38343,0,0,O38:SA:CTP11895,Europe/Paris,,O38, +O38:SP:11897,1,"LOTISSEMENT CHANO",45.831796,5.406845,0,0,O38:SA:CTP11897,Europe/Paris,,O38, +O38:SP:11898,1,"LOTISSEMENT CHANO",45.83174,5.406728,0,0,O38:SA:CTP11897,Europe/Paris,,O38, +O38:SP:11899,1,"MONTEE DU CHATEAU",45.83685,5.396422,0,0,O38:SA:CTP11899,Europe/Paris,,O38, +O38:SP:1190,1,"L'ECHARPE",45.07752,5.161087,0,0,O38:SA:CTP1190,Europe/Paris,,O38, +O38:SP:11900,1,"MONTEE DU CHATEAU",45.837017,5.396551,0,0,O38:SA:CTP11899,Europe/Paris,,O38, +O38:SP:11905,1,"ECOLE",45.834571,5.399276,0,0,O38:SA:CTP11905,Europe/Paris,,O38, +O38:SP:11906,1,"ECOLE",45.834567,5.399083,0,0,O38:SA:CTP11905,Europe/Paris,,O38, +O38:SP:11907,1,"DISIMIEU",45.820747,5.38233,0,0,O38:SA:CTP11907,Europe/Paris,,O38, +O38:SP:11908,1,"DISIMIEU",45.821056,5.381764,0,0,O38:SA:CTP11907,Europe/Paris,,O38, +O38:SP:11909,1,"CONILIEU CARREFOUR",45.820779,5.38826,0,0,O38:SA:CTP11909,Europe/Paris,,O38, +O38:SP:1191,1,"ECOLE LA BAUDIERE",45.078346,5.169666,0,0,O38:SA:CTP1191,Europe/Paris,,O38, +O38:SP:11910,1,"CONILIEU CARREFOUR",45.820763,5.388467,0,0,O38:SA:CTP11909,Europe/Paris,,O38, +O38:SP:11911,1,"LA FOLATIERE",45.833257,5.393973,0,0,O38:SA:CTP11911,Europe/Paris,,O38, +O38:SP:11912,1,"INSTITUTION ST LOUIS",45.851402,5.066918,0,0,O38:SA:CTP11912,Europe/Paris,,O38, +O38:SP:11913,1,"INSTITUTION ST LOUIS",45.851425,5.067004,0,0,O38:SA:CTP11912,Europe/Paris,,O38, +O38:SP:11915,1,"MAIRIE",45.852673,5.337551,0,0,O38:SA:CTP11915,Europe/Paris,,O38, +O38:SP:11916,1,"MAIRIE",45.852552,5.337545,0,0,O38:SA:CTP11915,Europe/Paris,,O38, +O38:SP:11917,1,"TRAVERS-FONTAINE",45.845482,5.310431,0,0,O38:SA:CTP11917,Europe/Paris,,O38, +O38:SP:11918,1,"TRAVERS-FONTAINE",45.84548,5.310505,0,0,O38:SA:CTP11917,Europe/Paris,,O38, +O38:SP:11919,1,"PERTEMPS",45.870102,5.342915,0,0,O38:SA:CTP11919,Europe/Paris,,O38, +O38:SP:1192,1,"ECOLE LA BAUDIERE",45.078279,5.169708,0,0,O38:SA:CTP1191,Europe/Paris,,O38, +O38:SP:11920,1,"PERTEMPS",45.870314,5.342845,0,0,O38:SA:CTP11919,Europe/Paris,,O38, +O38:SP:11921,1,"ANCIENNE ECOLE",45.85209,5.333366,0,0,O38:SA:CTP11921,Europe/Paris,,O38, +O38:SP:11922,1,"ANCIENNE ECOLE",45.852059,5.333342,0,0,O38:SA:CTP11921,Europe/Paris,,O38, +O38:SP:11923,1,"LONGE REY",45.875947,5.360352,0,0,O38:SA:CTP11923,Europe/Paris,,O38, +O38:SP:11924,1,"LONGE REY",45.875946,5.360437,0,0,O38:SA:CTP11923,Europe/Paris,,O38, +O38:SP:11925,1,"ECOLE",45.874075,5.366661,0,0,O38:SA:CTP11925,Europe/Paris,,O38, +O38:SP:11926,1,"ECOLE",45.874127,5.36673,0,0,O38:SA:CTP11925,Europe/Paris,,O38, +O38:SP:11929,1,"CIMETIERE",45.873105,5.361149,0,0,O38:SA:CTP11929,Europe/Paris,,O38, +O38:SP:1193,1,"LA BAUDIERE",45.077538,5.166857,0,0,O38:SA:CTP1193,Europe/Paris,,O38, +O38:SP:11930,1,"CIMETIERE",45.873033,5.361132,0,0,O38:SA:CTP11929,Europe/Paris,,O38, +O38:SP:11932,1,"LOT. FARMIER",45.120897,6.011066,0,0,O38:SA:CTP11932,Europe/Paris,,O38, +O38:SP:11933,1,"LOT. FARMIER",45.120959,6.010973,0,0,O38:SA:CTP11932,Europe/Paris,,O38, +O38:SP:11934,1,"PERNIERE BASSE (ABRI)",45.121578,6.017397,0,0,O38:SA:CTP11934,Europe/Paris,,O38, +O38:SP:11935,1,"PERNIERE BASSE (ABRI)",45.121578,6.017539,0,0,O38:SA:CTP11934,Europe/Paris,,O38, +O38:SP:11936,1,"PERNIERE BASSE (FOND)",45.122153,6.013802,0,0,O38:SA:CTP11936,Europe/Paris,,O38, +O38:SP:11937,1,"PERNIERE BASSE (FOND)",45.122252,6.013566,0,0,O38:SA:CTP11936,Europe/Paris,,O38, +O38:SP:11938,1,"LOT. LES ACACIAS",45.53465,5.415995,0,0,O38:SA:CTP11938,Europe/Paris,,O38, +O38:SP:1194,1,"LA BAUDIERE",45.077691,5.167217,0,0,O38:SA:CTP1193,Europe/Paris,,O38, +O38:SP:1195,1,"PEROUX",45.081185,5.146627,0,0,O38:SA:CTP1195,Europe/Paris,,O38, +O38:SP:11951,1,"QUINQUIN",45.573506,5.950883,0,0,O38:SA:CTP11951,Europe/Paris,,O38, +O38:SP:11952,1,"QUINQUIN",45.57342,5.951154,0,0,O38:SA:CTP11951,Europe/Paris,,O38, +O38:SP:11953,1,"CENTRE COMMERCIAL BASSENS",45.572848,5.945063,0,0,O38:SA:CTP11953,Europe/Paris,,O38, +O38:SP:11954,1,"LES FEYTAUX",45.30115,5.105826,0,0,O38:SA:CTP11954,Europe/Paris,,O38, +O38:SP:11955,1,"LES FEYTAUX",45.301496,5.105042,0,0,O38:SA:CTP11954,Europe/Paris,,O38, +O38:SP:11957,1,"ST PHILIBERT RD 512",45.379804,5.849721,0,0,O38:SA:CTP11957,Europe/Paris,,O38, +O38:SP:11958,1,"CHEMIN DES ROCHES",45.243854,5.338004,0,0,O38:SA:CTP11958,Europe/Paris,,O38, +O38:SP:11959,1,"Z.I TRAM",45.768028,5.031151,0,0,DGL:SA:S5568,Europe/Paris,,O38, +O38:SP:1196,1,"LES GUILLOTS",45.079504,5.232374,0,0,O38:SA:CTP1196,Europe/Paris,,O38, +O38:SP:11961,1,"LES JAILLEUX",45.126179,5.5978,0,0,O38:SA:CTP11961,Europe/Paris,,O38, +O38:SP:11962,1,"LES JAILLEUX",45.126316,5.597726,0,0,O38:SA:CTP11961,Europe/Paris,,O38, +O38:SP:11966,1,"LE BRACHET",45.573025,5.105161,0,0,O38:SA:CTP11966,Europe/Paris,,O38, +O38:SP:11967,1,"LE BRACHET",45.573036,5.105067,0,0,O38:SA:CTP11966,Europe/Paris,,O38, +O38:SP:11968,1,"LA FORET 1",45.565031,5.107925,0,0,O38:SA:CTP11968,Europe/Paris,,O38, +O38:SP:11969,1,"LA FORET 1",45.565086,5.108029,0,0,O38:SA:CTP11968,Europe/Paris,,O38, +O38:SP:1197,1,"LES GUILLOTS",45.079568,5.232419,0,0,O38:SA:CTP1196,Europe/Paris,,O38, +O38:SP:11970,1,"LA FORET 2",45.568774,5.11951,0,0,O38:SA:CTP11970,Europe/Paris,,O38, +O38:SP:11971,1,"LES VOIRIES",45.564376,5.120474,0,0,O38:SA:CTP11971,Europe/Paris,,O38, +O38:SP:11972,1,"LES VOIRIES",45.564338,5.12025,0,0,O38:SA:CTP11971,Europe/Paris,,O38, +O38:SP:11973,1,"BORDENOUD",45.621342,5.433192,0,0,O38:SA:CTP11973,Europe/Paris,,O38, +O38:SP:11974,1,"LES RIVOIRES",45.62517,5.411981,0,0,O38:SA:CTP11974,Europe/Paris,,O38, +O38:SP:11976,1,"CHAMP DE LA COUR",45.048423,5.832126,0,0,O38:SA:CTP11976,Europe/Paris,,O38, +O38:SP:11978,1,"CHAMP DE LA COUR",45.048347,5.832255,0,0,O38:SA:CTP11976,Europe/Paris,,O38, +O38:SP:1198,1,"BARRIERE",45.071772,5.247072,0,0,O38:SA:CTP1198,Europe/Paris,,O38, +O38:SP:11984,1,"EUROPE",45.240638,5.677727,0,0,O38:SA:CTP11984,Europe/Paris,,O38, +O38:SP:11986,1,"EUROPE",45.240142,5.678287,0,0,O38:SA:CTP11984,Europe/Paris,,O38, +O38:SP:11987,1,"RIVETIERE CHATEAU D'EAU",45.549856,5.341696,0,0,O38:SA:CTP11987,Europe/Paris,,O38, +O38:SP:11988,1,"RIVETIERE CHATEAU D'EAU",45.549863,5.341825,0,0,O38:SA:CTP11987,Europe/Paris,,O38, +O38:SP:11989,1,"ROUTE DES ROSIERS",45.481068,5.222942,0,0,O38:SA:CTP11989,Europe/Paris,,O38, +O38:SP:1199,1,"BARRIERE",45.071745,5.247152,0,0,O38:SA:CTP1198,Europe/Paris,,O38, +O38:SP:11990,1,"ROUTE DES ROSIERS",45.481177,5.223013,0,0,O38:SA:CTP11989,Europe/Paris,,O38, +O38:SP:11991,1,"LE CAMPING",45.832439,5.301062,0,0,O38:SA:CTP11991,Europe/Paris,,O38, +O38:SP:11992,1,"LE CAMPING",45.832464,5.300963,0,0,O38:SA:CTP11991,Europe/Paris,,O38, +O38:SP:11993,1,"GYMNASE VACHERON",45.722004,5.24473,0,0,O38:SA:CTP11993,Europe/Paris,,O38, +O38:SP:11994,1,"LES COTES",45.175236,5.547246,0,0,O38:SA:CTP11994,Europe/Paris,,O38, +O38:SP:11995,1,"LES COTES",45.175168,5.547095,0,0,O38:SA:CTP11994,Europe/Paris,,O38, +O38:SP:11996,1,"LA BEAUME",45.542539,5.069216,0,0,O38:SA:CTP11996,Europe/Paris,,O38, +O38:SP:11998,1,"CUVILLEUX",45.234706,5.687423,0,0,O38:SA:CTP11998,Europe/Paris,,O38, +O38:SP:1200,1,"LES CHARBONNOTS RD21",45.075954,5.250385,0,0,O38:SA:CTP1200,Europe/Paris,,O38, +O38:SP:12000,1,"CUVILLEUX",45.23485,5.687662,0,0,O38:SA:CTP11998,Europe/Paris,,O38, +O38:SP:12001,1,"LE MOLLARD",45.58218,5.189053,0,0,O38:SA:CTP12001,Europe/Paris,,O38, +O38:SP:12002,1,"LE MOLLARD",45.582183,5.18913,0,0,O38:SA:CTP12001,Europe/Paris,,O38, +O38:SP:12007,1,"LES LIERS - RD51B",45.428068,5.401297,0,0,O38:SA:CTP12007,Europe/Paris,,O38, +O38:SP:12008,1,"LES LIERS - RD51B",45.427929,5.401286,0,0,O38:SA:CTP12007,Europe/Paris,,O38, +O38:SP:12009,1,"LES PLANS",45.245119,5.369671,0,0,O38:SA:CTP12009,Europe/Paris,,O38, +O38:SP:1201,1,"LES CHARBONNOTS RD21",45.075958,5.250329,0,0,O38:SA:CTP1200,Europe/Paris,,O38, +O38:SP:12010,1,"LES PLANS",45.244975,5.369851,0,0,O38:SA:CTP12009,Europe/Paris,,O38, +O38:SP:12014,1,"LES BRUYERES - MAISON MEYNIER",45.347241,5.145576,0,0,O38:SA:CTP12014,Europe/Paris,,O38, +O38:SP:12015,1,"LES BRUYERES - MAISON MEYNIER",45.347304,5.145489,0,0,O38:SA:CTP12014,Europe/Paris,,O38, +O38:SP:12018,1,"LA PLANTA",45.14503,5.221662,0,0,O38:SA:CTP12018,Europe/Paris,,O38, +O38:SP:12019,1,"LA PLANTA",45.144981,5.221773,0,0,O38:SA:CTP12018,Europe/Paris,,O38, +O38:SP:1202,1,"AUX VALLINS",45.091054,5.212036,0,0,O38:SA:CTP1202,Europe/Paris,,O38, +O38:SP:12020,1,"LA VILLE",45.131641,6.041288,0,0,O38:SA:CTP12020,Europe/Paris,,O38, +O38:SP:12021,1,"LA VILLE",45.13166,6.04151,0,0,O38:SA:CTP12020,Europe/Paris,,O38, +O38:SP:12022,1,"LES PLATIERES",45.058617,5.319398,0,0,O38:SA:CTP12022,Europe/Paris,,O38, +O38:SP:12023,1,"LA SAVAGINE",45.697877,5.488182,0,0,O38:SA:CTP12023,Europe/Paris,,O38, +O38:SP:12024,1,"LA SAVAGINE",45.697951,5.488098,0,0,O38:SA:CTP12023,Europe/Paris,,O38, +O38:SP:12025,1,"LES CHAPELLES",44.801032,5.754541,0,0,O38:SA:CTP12025,Europe/Paris,,O38, +O38:SP:12026,1,"LES CHAPELLES",44.801026,5.754738,0,0,O38:SA:CTP12025,Europe/Paris,,O38, +O38:SP:1203,1,"AUX VALLINS",45.09097,5.211972,0,0,O38:SA:CTP1202,Europe/Paris,,O38, +O38:SP:12033,1,"LES COMBAUX",45.314552,5.255098,0,0,O38:SA:CTP12033,Europe/Paris,,O38, +O38:SP:12034,1,"LES ERABLES",45.125845,5.590163,0,0,O38:SA:CTP12034,Europe/Paris,,O38, +O38:SP:12035,1,"LES ERABLES",45.125746,5.590057,0,0,O38:SA:CTP12034,Europe/Paris,,O38, +O38:SP:1204,1,"LES VACHERES D21",45.076892,5.240183,0,0,O38:SA:CTP1204,Europe/Paris,,O38, +O38:SP:12044,1,"LA CROISETTE",45.604084,5.553284,0,0,O38:SA:CTP12044,Europe/Paris,,O38, +O38:SP:12045,1,"LA CROISETTE",45.604208,5.553153,0,0,O38:SA:CTP12044,Europe/Paris,,O38, +O38:SP:12048,1,"COLLEGE",45.648112,5.004938,0,0,DGL:SA:S34343,Europe/Paris,,O38, +O38:SP:12049,1,"COLLEGE",45.648151,5.005075,0,0,DGL:SA:S34343,Europe/Paris,,O38, +O38:SP:1205,1,"LES VACHERES D21",45.076882,5.240163,0,0,O38:SA:CTP1204,Europe/Paris,,O38, +O38:SP:12050,1,"STADE",45.205281,5.417471,0,0,O38:SA:CTP12050,Europe/Paris,,O38, +O38:SP:12051,1,"STADE",45.205209,5.417428,0,0,O38:SA:CTP12050,Europe/Paris,,O38, +O38:SP:12052,1,"LES ITIERS",44.838637,5.874427,0,0,O38:SA:CTP12052,Europe/Paris,,O38, +O38:SP:12053,1,"LES ITIERS",44.838686,5.874171,0,0,O38:SA:CTP12052,Europe/Paris,,O38, +O38:SP:12055,1,"ZA MONTPLAISIR",45.52499,4.921852,0,0,O38:SA:CTP12055,Europe/Paris,,O38, +O38:SP:12057,1,"ZA MONTPLAISIR",45.524946,4.921944,0,0,O38:SA:CTP12055,Europe/Paris,,O38, +O38:SP:12058,1,"LE RIVAL MARGUETIERE",45.349378,5.271608,0,0,O38:SA:CTP12058,Europe/Paris,,O38, +O38:SP:12059,1,"LE RIVAL MARGUETIERE",45.349486,5.271359,0,0,O38:SA:CTP12058,Europe/Paris,,O38, +O38:SP:1206,1,"LES CHARBONNOTS",45.073024,5.252005,0,0,O38:SA:CTP1206,Europe/Paris,,O38, +O38:SP:12062,1,"LE PILAT",45.339215,5.176709,0,0,O38:SA:CTP12062,Europe/Paris,,O38, +O38:SP:12063,1,"LE PILAT",45.33927,5.176878,0,0,O38:SA:CTP12062,Europe/Paris,,O38, +O38:SP:12064,1,"CHEMIN DU MARTERAY",45.654364,5.41407,0,0,O38:SA:CTP12064,Europe/Paris,,O38, +O38:SP:12065,1,"CHEMIN DU MARTERAY",45.654304,5.413877,0,0,O38:SA:CTP12064,Europe/Paris,,O38, +O38:SP:12067,1,"NORBERT SEGARD CNET",45.209058,5.795176,0,0,O38:SA:CTP12067,Europe/Paris,,O38, +O38:SP:12069,1,"NORBERT SEGARD CNET",45.209301,5.79451,0,0,O38:SA:CTP12067,Europe/Paris,,O38, +O38:SP:12071,1,"BUSSEROLLES",45.208849,5.797624,0,0,O38:SA:CTP12071,Europe/Paris,,O38, +O38:SP:12073,1,"BUSSEROLLES",45.208795,5.797608,0,0,O38:SA:CTP12071,Europe/Paris,,O38, +O38:SP:12078,1,"LES VERNES",44.997288,5.790206,0,0,O38:SA:CTP12078,Europe/Paris,,O38, +O38:SP:12079,1,"LES VERNES",44.997348,5.790092,0,0,O38:SA:CTP12078,Europe/Paris,,O38, +O38:SP:1208,1,"LA COMBE",45.085082,5.199776,0,0,O38:SA:CTP1208,Europe/Paris,,O38, +O38:SP:12080,1,"LE MOLLARD LE HAUT",44.965641,5.72144,0,0,O38:SA:CTP12080,Europe/Paris,,O38, +O38:SP:12081,1,"LE MOLLARD LE HAUT",44.965655,5.721507,0,0,O38:SA:CTP12080,Europe/Paris,,O38, +O38:SP:12082,1,"ROUTE DES COMBES",45.320043,5.272206,0,0,O38:SA:CTP12082,Europe/Paris,,O38, +O38:SP:12083,1,"ROUTE DES COMBES",45.320141,5.271514,0,0,O38:SA:CTP12082,Europe/Paris,,O38, +O38:SP:12086,1,"LA BRETONNIERE",45.296415,5.336998,0,0,O38:SA:CTP12086,Europe/Paris,,O38, +O38:SP:12087,1,"LA BRETONNIERE",45.296417,5.337055,0,0,O38:SA:CTP12086,Europe/Paris,,O38, +O38:SP:12088,1,"PONT DE ST ROMAIN EN GAL",45.528346,4.873578,0,0,O38:SA:CTP12088,Europe/Paris,,O38, +O38:SP:12089,1,"STOP RN7",45.489342,4.828475,0,0,O38:SA:CTP12089,Europe/Paris,,O38, +O38:SP:1209,1,"LA COMBE",45.085019,5.199728,0,0,O38:SA:CTP1208,Europe/Paris,,O38, +O38:SP:12090,1,"LA GARENNE",45.75039,5.147463,0,0,O38:SA:CTP12090,Europe/Paris,,O38, +O38:SP:12091,1,"LA GARENNE",45.75036,5.147597,0,0,O38:SA:CTP12090,Europe/Paris,,O38, +O38:SP:12092,1,"ROND POINT DE LA LECHERE",45.748039,5.145244,0,0,O38:SA:CTP12092,Europe/Paris,,O38, +O38:SP:12093,1,"ROND POINT DE LA LECHERE",45.748052,5.145134,0,0,O38:SA:CTP12092,Europe/Paris,,O38, +O38:SP:12094,1,"LA REFEUILLE",45.728899,5.1419,0,0,O38:SA:CTP12094,Europe/Paris,,O38, +O38:SP:12095,1,"LA REFEUILLE",45.728704,5.142068,0,0,O38:SA:CTP12094,Europe/Paris,,O38, +O38:SP:12096,1,"RUE DE LA PLAINE",45.734293,5.156239,0,0,O38:SA:CTP12096,Europe/Paris,,O38, +O38:SP:12097,1,"RUE DE LA PLAINE",45.73402,5.15628,0,0,O38:SA:CTP12096,Europe/Paris,,O38, +O38:SP:12098,1,"PIARDAY LOTISSEMENT",45.754062,5.143893,0,0,O38:SA:CTP12098,Europe/Paris,,O38, +O38:SP:12099,1,"PIARDAY LOTISSEMENT",45.753887,5.143977,0,0,O38:SA:CTP12098,Europe/Paris,,O38, +O38:SP:12100,1,"PIARDAY ECOLE JAMMES",45.755836,5.142921,0,0,O38:SA:CTP12100,Europe/Paris,,O38, +O38:SP:12101,1,"PIARDAY ECOLE JAMMES",45.75585,5.143049,0,0,O38:SA:CTP12100,Europe/Paris,,O38, +O38:SP:12104,1,"MAISON DU DEPARTEMENT",45.724164,5.237984,0,0,O38:SA:CTP12104,Europe/Paris,,O38, +O38:SP:12105,1,"MAISON DU DEPARTEMENT",45.724158,5.238247,0,0,O38:SA:CTP12104,Europe/Paris,,O38, +O38:SP:12106,1,"LES TILLEULS",45.791993,5.112406,0,0,O38:SA:CTP12106,Europe/Paris,,O38, +O38:SP:12107,1,"LES TILLEULS",45.791854,5.112232,0,0,O38:SA:CTP12106,Europe/Paris,,O38, +O38:SP:12108,1,"PONT DE LA MOUCHE",44.925577,5.782832,0,0,O38:SA:CTP12108,Europe/Paris,,O38, +O38:SP:12109,1,"PONT DE LA MOUCHE",44.92607,5.782848,0,0,O38:SA:CTP12108,Europe/Paris,,O38, +O38:SP:1211,1,"LES GAMONDS RD1092",45.085481,5.214633,0,0,O38:SA:CTP1211,Europe/Paris,,O38, +O38:SP:12110,1,"NID ALPIN",45.070666,5.554783,0,0,O38:SA:CTP12110,Europe/Paris,,O38, +O38:SP:12111,1,"NID ALPIN",45.06996,5.554992,0,0,O38:SA:CTP12110,Europe/Paris,,O38, +O38:SP:12112,1,"CENTRE DE LOISIRS",45.187865,5.616334,0,0,O38:SA:CTP12112,Europe/Paris,,O38, +O38:SP:12113,1,"CENTRE DE LOISIRS",45.187814,5.616409,0,0,O38:SA:CTP12112,Europe/Paris,,O38, +O38:SP:12114,1,"CENTRE DE LOISIRS NALIA",44.892751,5.613954,0,0,O38:SA:CTP12114,Europe/Paris,,O38, +O38:SP:12115,1,"LA GRANGE DE MORGES",44.855532,5.779093,0,0,O38:SA:CTP12115,Europe/Paris,,O38, +O38:SP:12116,1,"LA GRANGE DE MORGES",44.855432,5.779008,0,0,O38:SA:CTP12115,Europe/Paris,,O38, +O38:SP:1212,1,"LES BUISSIERES",45.083575,5.222235,0,0,O38:SA:CTP1212,Europe/Paris,,O38, +O38:SP:1213,1,"LES BUISSIERES",45.083508,5.222193,0,0,O38:SA:CTP1212,Europe/Paris,,O38, +O38:SP:1214,1,"HAMEAU LES GAMONDS",45.085376,5.218395,0,0,O38:SA:CTP1214,Europe/Paris,,O38, +O38:SP:1215,1,"HAMEAU LES GAMONDS",45.085327,5.218321,0,0,O38:SA:CTP1214,Europe/Paris,,O38, +O38:SP:1216,1,"ECOLE",45.087251,5.200911,0,0,O38:SA:CTP1216,Europe/Paris,,O38, +O38:SP:1217,1,"ECOLE",45.087256,5.200809,0,0,O38:SA:CTP1216,Europe/Paris,,O38, +O38:SP:1218,1,"PONT DU FURAND",45.085234,5.207927,0,0,O38:SA:CTP1218,Europe/Paris,,O38, +O38:SP:1219,1,"PONT DU FURAND",45.085143,5.207479,0,0,O38:SA:CTP1218,Europe/Paris,,O38, +O38:SP:1220,1,"LES CITES",45.071222,5.240523,0,0,O38:SA:CTP1220,Europe/Paris,,O38, +O38:SP:1221,1,"LES CITES",45.071224,5.240421,0,0,O38:SA:CTP1220,Europe/Paris,,O38, +O38:SP:1223,1,"GARE",45.071138,5.245073,0,0,O38:SA:CTP1223,Europe/Paris,,O38, +O38:SP:1224,1,"GARE",45.071132,5.245173,0,0,O38:SA:CTP1223,Europe/Paris,,O38, +O38:SP:1225,1,"LE MAS",45.081157,5.227357,0,0,O38:SA:CTP1225,Europe/Paris,,O38, +O38:SP:1226,1,"LE MAS",45.081213,5.227421,0,0,O38:SA:CTP1225,Europe/Paris,,O38, +O38:SP:1227,1,"L'OLIVIER BOURG",45.087972,5.200494,0,0,O38:SA:CTP1227,Europe/Paris,,O38, +O38:SP:1228,1,"L'OLIVIER BOURG",45.087925,5.200571,0,0,O38:SA:CTP1227,Europe/Paris,,O38, +O38:SP:1231,1,"LE VILLAGE",45.063464,5.300839,0,0,O38:SA:CTP1231,Europe/Paris,,O38, +O38:SP:12314,1,"LA CUCHE",45.25601,5.628069,0,0,O38:SA:CTP12314,Europe/Paris,,O38, +O38:SP:12316,1,"LA CUCHE",45.256031,5.628147,0,0,O38:SA:CTP12314,Europe/Paris,,O38, +O38:SP:1232,1,"LE VILLAGE",45.063519,5.300892,0,0,O38:SA:CTP1231,Europe/Paris,,O38, +O38:SP:1233,1,"CARREF.RTE DE LA BLACHETTE",45.077572,5.30454,0,0,O38:SA:CTP1233,Europe/Paris,,O38, +O38:SP:1234,1,"CARREF.RTE DE LA BLACHETTE",45.077516,5.304476,0,0,O38:SA:CTP1233,Europe/Paris,,O38, +O38:SP:1235,1,"LE MAS D531",45.055076,5.31005,0,0,O38:SA:CTP1235,Europe/Paris,,O38, +O38:SP:1236,1,"LE MAS D531",45.055057,5.310192,0,0,O38:SA:CTP1235,Europe/Paris,,O38, +O38:SP:1237,1,"LES CLARIS",45.060691,5.329653,0,0,O38:SA:CTP1237,Europe/Paris,,O38, +O38:SP:1238,1,"HAMEAU DE VEYRAND",45.072429,5.30893,0,0,O38:SA:CTP1238,Europe/Paris,,O38, +O38:SP:1239,1,"HAMEAU DE VEYRAND",45.072413,5.308916,0,0,O38:SA:CTP1238,Europe/Paris,,O38, +O38:SP:1240,1,"ECOLES",45.063397,5.300815,0,0,O38:SA:CTP1240,Europe/Paris,,O38, +O38:SP:1241,1,"ECOLES",45.063375,5.300812,0,0,O38:SA:CTP1240,Europe/Paris,,O38, +O38:SP:1242,1,"FERME GUERIN",45.077947,5.318647,0,0,O38:SA:CTP1242,Europe/Paris,,O38, +O38:SP:1243,1,"FERME GUERIN",45.077977,5.318555,0,0,O38:SA:CTP1242,Europe/Paris,,O38, +O38:SP:1244,1,"VOIE CHARBONNEL",45.075935,5.306099,0,0,O38:SA:CTP1244,Europe/Paris,,O38, +O38:SP:1245,1,"LE BIROLLET",45.071031,5.316106,0,0,O38:SA:CTP1245,Europe/Paris,,O38, +O38:SP:1246,1,"LE CREUX",45.079399,5.2642,0,0,O38:SA:CTP1246,Europe/Paris,,O38, +O38:SP:1247,1,"LE CREUX",45.079338,5.264253,0,0,O38:SA:CTP1246,Europe/Paris,,O38, +O38:SP:1248,1,"LE VILLAGE",45.074878,5.283466,0,0,O38:SA:CTP1248,Europe/Paris,,O38, +O38:SP:1249,1,"LE VILLAGE",45.074517,5.283273,0,0,O38:SA:CTP1248,Europe/Paris,,O38, +O38:SP:12494,1,"GRAND SABLON",45.19885,5.750284,0,0,O38:SA:CTP12494,Europe/Paris,,O38, +O38:SP:12496,1,"GRAND SABLON",45.198792,5.750313,0,0,O38:SA:CTP12494,Europe/Paris,,O38, +O38:SP:1250,1,"L'ENCHERE",45.080346,5.324202,0,0,O38:SA:CTP1250,Europe/Paris,,O38, +O38:SP:1251,1,"L'ENCHERE",45.080341,5.324212,0,0,O38:SA:CTP1250,Europe/Paris,,O38, +O38:SP:1252,1,"LA MAIRIE",45.074386,5.315924,0,0,O38:SA:CTP1252,Europe/Paris,,O38, +O38:SP:1253,1,"LA MAIRIE",45.07435,5.315868,0,0,O38:SA:CTP1252,Europe/Paris,,O38, +O38:SP:1254,1,"PONT DE MANNE",45.061575,5.27903,0,0,O38:SA:CTP1254,Europe/Paris,,O38, +O38:SP:1255,1,"PONT DE MANNE",45.061424,5.280111,0,0,O38:SA:CTP1254,Europe/Paris,,O38, +O38:SP:1256,1,"CLAIRIVAUX",45.065253,5.270782,0,0,O38:SA:CTP1256,Europe/Paris,,O38, +O38:SP:1257,1,"CLAIRIVAUX",45.066086,5.272456,0,0,O38:SA:CTP1256,Europe/Paris,,O38, +O38:SP:1258,1,"LES MOURAUX",45.086056,5.268786,0,0,O38:SA:CTP1258,Europe/Paris,,O38, +O38:SP:1259,1,"LES MOURAUX",45.086106,5.268902,0,0,O38:SA:CTP1258,Europe/Paris,,O38, +O38:SP:1260,1,"TUNNEL DE BLUVINAYE",45.078474,5.309969,0,0,O38:SA:CTP1260,Europe/Paris,,O38, +O38:SP:1261,1,"TUNNEL DE BLUVINAYE",45.078547,5.309738,0,0,O38:SA:CTP1260,Europe/Paris,,O38, +O38:SP:1262,1,"LES GARENNES",45.083013,5.291724,0,0,O38:SA:CTP1262,Europe/Paris,,O38, +O38:SP:1263,1,"LES GARENNES",45.082737,5.291588,0,0,O38:SA:CTP1262,Europe/Paris,,O38, +O38:SP:1264,1,"BLUVINAYE",45.084333,5.307598,0,0,O38:SA:CTP1264,Europe/Paris,,O38, +O38:SP:1265,1,"BLUVINAYE",45.084093,5.307512,0,0,O38:SA:CTP1264,Europe/Paris,,O38, +O38:SP:1270,1,"MEZELIER",45.053288,5.367707,0,0,O38:SA:CTP1270,Europe/Paris,,O38, +O38:SP:1272,1,"STE EULALIE EN ROYANS",45.047282,5.340649,0,0,O38:SA:CTP1272,Europe/Paris,,O38, +O38:SP:1273,1,"STE EULALIE EN ROYANS",45.047276,5.340559,0,0,O38:SA:CTP1272,Europe/Paris,,O38, +O38:SP:1274,1,"LES CHAMPS",45.080511,5.362859,0,0,O38:SA:CTP1274,Europe/Paris,,O38, +O38:SP:1275,1,"LES CHAMPS",45.080442,5.362831,0,0,O38:SA:CTP1274,Europe/Paris,,O38, +O38:SP:1276,1,"LES NUGUES",45.075094,5.365877,0,0,O38:SA:CTP1276,Europe/Paris,,O38, +O38:SP:1277,1,"LES NUGUES",45.075116,5.365974,0,0,O38:SA:CTP1276,Europe/Paris,,O38, +O38:SP:1278,1,"TERROT",45.085434,5.382071,0,0,O38:SA:CTP1278,Europe/Paris,,O38, +O38:SP:1279,1,"TERROT",45.08545,5.381972,0,0,O38:SA:CTP1278,Europe/Paris,,O38, +O38:SP:1280,1,"JELINE",45.08299,5.38101,0,0,O38:SA:CTP1280,Europe/Paris,,O38, +O38:SP:12801,1,"LE RONDEAU",45.160255,5.709613,0,0,O38:SA:CTP12801,Europe/Paris,,O38, +O38:SP:12803,1,"LE RONDEAU",45.161152,5.710101,0,0,O38:SA:CTP12801,Europe/Paris,,O38, +O38:SP:1281,1,"JELINE",45.083011,5.380914,0,0,O38:SA:CTP1280,Europe/Paris,,O38, +O38:SP:1284,1,"BOURNIERE",45.070066,5.372159,0,0,O38:SA:CTP1284,Europe/Paris,,O38, +O38:SP:1285,1,"BOURNIERE",45.070081,5.372175,0,0,O38:SA:CTP1284,Europe/Paris,,O38, +O38:SP:1288,1,"LE BEL - LA PLAINE",45.063068,5.32669,0,0,O38:SA:CTP1288,Europe/Paris,,O38, +O38:SP:1289,1,"LE BEL - LA PLAINE",45.06295,5.326851,0,0,O38:SA:CTP1288,Europe/Paris,,O38, +O38:SP:1292,1,"BALAI",45.071356,5.328873,0,0,O38:SA:CTP1292,Europe/Paris,,O38, +O38:SP:1293,1,"BALAI",45.071359,5.328908,0,0,O38:SA:CTP1292,Europe/Paris,,O38, +O38:SP:1294,1,"STADE",45.064058,5.3371,0,0,O38:SA:CTP1294,Europe/Paris,,O38, +O38:SP:1295,1,"STADE",45.063998,5.337092,0,0,O38:SA:CTP1294,Europe/Paris,,O38, +O38:SP:1296,1,"COLLEGE RAYMOND GUELEN",45.06363,5.341386,0,0,O38:SA:CTP1296,Europe/Paris,,O38, +O38:SP:1297,1,"COLLEGE RAYMOND GUELEN",45.063649,5.34156,0,0,O38:SA:CTP1296,Europe/Paris,,O38, +O38:SP:1298,1,"ECOLE",45.085861,5.339897,0,0,O38:SA:CTP1298,Europe/Paris,,O38, +O38:SP:1299,1,"ECOLE",45.085833,5.339822,0,0,O38:SA:CTP1298,Europe/Paris,,O38, +O38:SP:1300,1,"MAIRIE",45.0577,5.373277,0,0,O38:SA:CTP1300,Europe/Paris,,O38, +O38:SP:1301,1,"MAIRIE",45.057655,5.373203,0,0,O38:SA:CTP1300,Europe/Paris,,O38, +O38:SP:1302,1,"LE VILLAGE",45.066794,5.391103,0,0,O38:SA:CTP1302,Europe/Paris,,O38, +O38:SP:1303,1,"LE VILLAGE",45.066858,5.391157,0,0,O38:SA:CTP1302,Europe/Paris,,O38, +O38:SP:1304,1,"ECOLES",45.062929,5.342735,0,0,O38:SA:CTP1304,Europe/Paris,,O38, +O38:SP:13044,1,"MUGUETS",45.634396,5.109383,0,0,O38:SA:CTP13044,Europe/Paris,,O38, +O38:SP:13046,1,"LE BOIS",45.617684,5.511733,0,0,O38:SA:CTP13046,Europe/Paris,,O38, +O38:SP:13047,1,"LE BOIS",45.617756,5.511824,0,0,O38:SA:CTP13046,Europe/Paris,,O38, +O38:SP:13048,1,"CHEZ MEUNIER",45.504286,4.92518,0,0,O38:SA:CTP13048,Europe/Paris,,O38, +O38:SP:13049,1,"CHEZ MEUNIER",45.504405,4.92497,0,0,O38:SA:CTP13048,Europe/Paris,,O38, +O38:SP:1305,1,"ECOLES",45.062918,5.342762,0,0,O38:SA:CTP1304,Europe/Paris,,O38, +O38:SP:13050,1,"CHEMIN DE LA MAISONNIERE",45.432977,4.968513,0,0,O38:SA:CTP13050,Europe/Paris,,O38, +O38:SP:13051,1,"CHEMIN DE LA MAISONNIERE",45.433112,4.968489,0,0,O38:SA:CTP13050,Europe/Paris,,O38, +O38:SP:13052,1,"LA VOUTE",45.12123,6.032738,0,0,O38:SA:CTP13052,Europe/Paris,,O38, +O38:SP:13053,1,"LA VOUTE",45.121265,6.032696,0,0,O38:SA:CTP13052,Europe/Paris,,O38, +O38:SP:13054,1,"GROUPE SCOLAIRE",45.640778,5.361276,0,0,O38:SA:CTP13054,Europe/Paris,,O38, +O38:SP:13055,1,"GROUPE SCOLAIRE",45.640719,5.361303,0,0,O38:SA:CTP13054,Europe/Paris,,O38, +O38:SP:13058,1,"LES MICHALONS",45.171851,5.638824,0,0,O38:SA:CTP13058,Europe/Paris,,O38, +O38:SP:13060,1,"LES MICHALONS",45.171649,5.638845,0,0,O38:SA:CTP13058,Europe/Paris,,O38, +O38:SP:13063,1,"MAIRIE",45.328418,5.2614,0,0,O38:SA:CTP13063,Europe/Paris,,O38, +O38:SP:13064,1,"MAIRIE",45.328377,5.261386,0,0,O38:SA:CTP13063,Europe/Paris,,O38, +O38:SP:13065,1,"SICCIEU ECOLE",45.733852,5.31567,0,0,O38:SA:CTP13065,Europe/Paris,,O38, +O38:SP:13066,1,"SICCIEU ECOLE",45.73382,5.315804,0,0,O38:SA:CTP13065,Europe/Paris,,O38, +O38:SP:13067,1,"PRE POULET",45.704771,5.348918,0,0,O38:SA:CTP13067,Europe/Paris,,O38, +O38:SP:13068,1,"PRE POULET",45.704692,5.348875,0,0,O38:SA:CTP13067,Europe/Paris,,O38, +O38:SP:13069,1,"TIGNIEU ECOLE",45.733621,5.185032,0,0,O38:SA:CTP13069,Europe/Paris,,O38, +O38:SP:13071,1,"CHATEAU D'HERBELON",44.898075,5.673599,0,0,O38:SA:CTP13071,Europe/Paris,,O38, +O38:SP:13072,1,"JULLIERES",44.911455,5.665882,0,0,O38:SA:CTP13072,Europe/Paris,,O38, +O38:SP:13073,1,"JULLIERES",44.911384,5.66592,0,0,O38:SA:CTP13072,Europe/Paris,,O38, +O38:SP:13074,1,"LYCEE COLBERT",45.745877,4.859157,0,0,DGL:SA:S5905,Europe/Paris,,O38, +O38:SP:13075,1,"ST AGNAN",45.74088,4.862743,0,0,DGL:SA:S11289,Europe/Paris,,O38, +O38:SP:13076,1,"ST AGNAN",45.741001,4.862727,0,0,DGL:SA:S11289,Europe/Paris,,O38, +O38:SP:13079,1,"BILLONNIERES",45.142866,5.246853,0,0,O38:SA:CTP13079,Europe/Paris,,O38, +O38:SP:1308,1,"COL TOUTES AURES",45.075002,5.354205,0,0,O38:SA:CTP1308,Europe/Paris,,O38, +O38:SP:13080,1,"BILLONNIERES",45.142879,5.246801,0,0,O38:SA:CTP13079,Europe/Paris,,O38, +O38:SP:13081,1,"TINTONIERE",45.085742,5.187194,0,0,O38:SA:CTP13081,Europe/Paris,,O38, +O38:SP:13082,1,"TINTONIERE",45.085695,5.186958,0,0,O38:SA:CTP13081,Europe/Paris,,O38, +O38:SP:13083,1,"LA CHANAZ",45.608256,5.550004,0,0,O38:SA:CTP13083,Europe/Paris,,O38, +O38:SP:13084,1,"LA CHANAZ",45.608316,5.550024,0,0,O38:SA:CTP13083,Europe/Paris,,O38, +O38:SP:13086,1,"LONGS PRES",45.302773,5.907182,0,0,O38:SA:CTP13086,Europe/Paris,,O38, +O38:SP:13088,1,"LONGS PRES",45.302901,5.906748,0,0,O38:SA:CTP13086,Europe/Paris,,O38, +O38:SP:1309,1,"COL TOUTES AURES",45.075073,5.35421,0,0,O38:SA:CTP1308,Europe/Paris,,O38, +O38:SP:13091,1,"ROUTE DES PLAINES",45.399784,5.470785,0,0,O38:SA:CTP13091,Europe/Paris,,O38, +O38:SP:13092,1,"ROUTE DES PLAINES",45.399828,5.470818,0,0,O38:SA:CTP13091,Europe/Paris,,O38, +O38:SP:13093,1,"MONT JOYEUX",45.317851,5.241913,0,0,O38:SA:CTP13093,Europe/Paris,,O38, +O38:SP:13094,1,"MONT JOYEUX",45.317868,5.241992,0,0,O38:SA:CTP13093,Europe/Paris,,O38, +O38:SP:13095,1,"USINE LAFARGE",45.659063,5.080702,0,0,O38:SA:CTP13095,Europe/Paris,,O38, +O38:SP:13096,1,"USINE LAFARGE",45.659055,5.080611,0,0,O38:SA:CTP13095,Europe/Paris,,O38, +O38:SP:13097,1,"CROIX DE MISSION",45.333634,4.943156,0,0,O38:SA:CTP13097,Europe/Paris,,O38, +O38:SP:13098,1,"CROIX DE MISSION",45.333491,4.943354,0,0,O38:SA:CTP13097,Europe/Paris,,O38, +O38:SP:13099,1,"FONTBESSET RD1532",45.289475,5.569027,0,0,O38:SA:CTP13099,Europe/Paris,,O38, +O38:SP:1310,1,"BOURG",45.086413,5.341411,0,0,O38:SA:CTP1310,Europe/Paris,,O38, +O38:SP:13100,1,"FONTBESSET RD1532",45.289533,5.568904,0,0,O38:SA:CTP13099,Europe/Paris,,O38, +O38:SP:1311,1,"BOURG",45.086348,5.341453,0,0,O38:SA:CTP1310,Europe/Paris,,O38, +O38:SP:1312,1,"LA CROIX DU BEAU GEAI",45.083341,5.331538,0,0,O38:SA:CTP1312,Europe/Paris,,O38, +O38:SP:1313,1,"LA CROIX DU BEAU GEAI",45.083371,5.331403,0,0,O38:SA:CTP1312,Europe/Paris,,O38, +O38:SP:13136,1,"GARE UNIVERSITES (SNCF)",45.184902,5.785192,0,0,O38:SA:CTP13136,Europe/Paris,,O38, +O38:SP:13138,1,"GARE UNIVERSITES (SNCF)",45.184892,5.785536,0,0,O38:SA:CTP13136,Europe/Paris,,O38, +O38:SP:1314,1,"LA GUIBAUDIERE-CIMETIERE",45.083812,5.337269,0,0,O38:SA:CTP1314,Europe/Paris,,O38, +O38:SP:13140,1,"GARE UNIVERSITES (TRAMWAY)",45.185543,5.785681,0,0,O38:SA:CTP13140,Europe/Paris,,O38, +O38:SP:13142,1,"GARE UNIVERSITES (TRAMWAY)",45.185545,5.785288,0,0,O38:SA:CTP13140,Europe/Paris,,O38, +O38:SP:13147,1,"VIGNATE",45.189281,5.77817,0,0,O38:SA:CTP13147,Europe/Paris,,O38, +O38:SP:13148,1,"VIGNATE",45.189166,5.778071,0,0,O38:SA:CTP13147,Europe/Paris,,O38, +O38:SP:1315,1,"LA GUIBAUDIERE-CIMETIERE",45.083844,5.336531,0,0,O38:SA:CTP1314,Europe/Paris,,O38, +O38:SP:13151,1,"LE RUTY",45.545405,5.666247,0,0,O38:SA:CTP13151,Europe/Paris,,O38, +O38:SP:13152,1,"LE RUTY",45.545233,5.666008,0,0,O38:SA:CTP13151,Europe/Paris,,O38, +O38:SP:1316,1,"HAMEAU CATINON",45.064635,5.367406,0,0,O38:SA:CTP1316,Europe/Paris,,O38, +O38:SP:1317,1,"HAMEAU CATINON",45.06467,5.367395,0,0,O38:SA:CTP1316,Europe/Paris,,O38, +O38:SP:13170,1,"PART-DIEU VILLETTE GARE ROUTIERE",45.760661,4.862949,0,0,O38:SA:CTP13170,Europe/Paris,,O38, +O38:SP:13173,1,"PART-DIEU RENAUDEL",45.757466,4.858714,0,0,DGL:SA:S11062,Europe/Paris,,O38, +O38:SP:13175,1,"PART-DIEU VILLETTE GARE ROUTIERE",45.760627,4.862947,0,0,O38:SA:CTP13170,Europe/Paris,,O38, +O38:SP:1318,1,"LES MASSONS",45.063344,5.384408,0,0,O38:SA:CTP1318,Europe/Paris,,O38, +O38:SP:1319,1,"LES MASSONS",45.063272,5.384408,0,0,O38:SA:CTP1318,Europe/Paris,,O38, +O38:SP:1320,1,"CHEMIN DES GAMONES",45.067203,5.360208,0,0,O38:SA:CTP1320,Europe/Paris,,O38, +O38:SP:1321,1,"CHEMIN DES GAMONES",45.067269,5.360166,0,0,O38:SA:CTP1320,Europe/Paris,,O38, +O38:SP:1322,1,"COMBE BERNARD",45.062791,5.396561,0,0,O38:SA:CTP1322,Europe/Paris,,O38, +O38:SP:1323,1,"COMBE BERNARD",45.062772,5.396502,0,0,O38:SA:CTP1322,Europe/Paris,,O38, +O38:SP:13239,1,"MAISON BERRUYER",45.220502,5.404684,0,0,O38:SA:CTP13239,Europe/Paris,,O38, +O38:SP:1324,1,"LE CLOS",45.057793,5.400988,0,0,O38:SA:CTP1324,Europe/Paris,,O38, +O38:SP:13240,1,"MAISON BERRUYER",45.221264,5.404554,0,0,O38:SA:CTP13239,Europe/Paris,,O38, +O38:SP:13241,1,"CHAUMEIL",44.909512,5.5695,0,0,O38:SA:CTP13241,Europe/Paris,,O38, +O38:SP:13242,1,"CHAUMEIL",44.909493,5.569601,0,0,O38:SA:CTP13241,Europe/Paris,,O38, +O38:SP:13243,1,"COTE BELETTE",44.901206,5.560641,0,0,O38:SA:CTP13243,Europe/Paris,,O38, +O38:SP:13244,1,"COTE BELETTE",44.901311,5.560648,0,0,O38:SA:CTP13243,Europe/Paris,,O38, +O38:SP:13245,1,"FRUITIERE",44.912593,5.56862,0,0,O38:SA:CTP13245,Europe/Paris,,O38, +O38:SP:13246,1,"FRUITIERE",44.912659,5.568649,0,0,O38:SA:CTP13245,Europe/Paris,,O38, +O38:SP:13247,1,"LES DOLOMITES",44.900619,5.555104,0,0,O38:SA:CTP13247,Europe/Paris,,O38, +O38:SP:13248,1,"LES DOLOMITES",44.900541,5.555013,0,0,O38:SA:CTP13247,Europe/Paris,,O38, +O38:SP:1325,1,"LE CLOS",45.057807,5.401105,0,0,O38:SA:CTP1324,Europe/Paris,,O38, +O38:SP:13252,1,"TEMPLE DE CYBELE",45.524657,4.876887,0,0,O38:SA:CTP13252,Europe/Paris,,O38, +O38:SP:13254,1,"TEMPLE DE CYBELE",45.524512,4.876905,0,0,O38:SA:CTP13252,Europe/Paris,,O38, +O38:SP:1332,1,"LES ORCETS",45.071318,5.458542,0,0,O38:SA:CTP1332,Europe/Paris,,O38, +O38:SP:13322,1,"LE BASSARD",45.467324,4.824784,0,0,O38:SA:CTP13322,Europe/Paris,,O38, +O38:SP:13323,1,"LE BASSARD",45.467219,4.825169,0,0,O38:SA:CTP13322,Europe/Paris,,O38, +O38:SP:13324,1,"ECOLE PRIVEE J. D'ARC",45.537528,5.669093,0,0,O38:SA:CTP13324,Europe/Paris,,O38, +O38:SP:13325,1,"ECOLE PRIVEE J. D'ARC",45.537588,5.669152,0,0,O38:SA:CTP13324,Europe/Paris,,O38, +O38:SP:13326,1,"BONNE BLANCHE",45.49882,5.699989,0,0,O38:SA:CTP13326,Europe/Paris,,O38, +O38:SP:13327,1,"BONNE BLANCHE",45.498686,5.699978,0,0,O38:SA:CTP13326,Europe/Paris,,O38, +O38:SP:13328,1,"LE LAC",45.49392,5.693968,0,0,O38:SA:CTP13328,Europe/Paris,,O38, +O38:SP:13329,1,"LE LAC",45.493947,5.694016,0,0,O38:SA:CTP13328,Europe/Paris,,O38, +O38:SP:1333,1,"LES ORCETS",45.071376,5.458435,0,0,O38:SA:CTP1332,Europe/Paris,,O38, +O38:SP:13330,1,"ROUTE ST MARTIN",45.497094,5.683215,0,0,O38:SA:CTP13330,Europe/Paris,,O38, +O38:SP:13331,1,"ROUTE ST MARTIN",45.497131,5.683126,0,0,O38:SA:CTP13330,Europe/Paris,,O38, +O38:SP:13332,1,"LA BATHIE CAR. RD132",45.304473,5.390344,0,0,O38:SA:CTP13332,Europe/Paris,,O38, +O38:SP:13333,1,"LA BATHIE CAR. RD132",45.304464,5.390312,0,0,O38:SA:CTP13332,Europe/Paris,,O38, +O38:SP:1334,1,"LA MARTELLIERE",45.0586,5.452832,0,0,O38:SA:CTP1334,Europe/Paris,,O38, +O38:SP:1335,1,"LA MARTELLIERE",45.058469,5.452851,0,0,O38:SA:CTP1334,Europe/Paris,,O38, +O38:SP:13351,1,"ZA MONTPLAISIR CALOR",45.524012,4.920432,0,0,O38:SA:CTP13351,Europe/Paris,,O38, +O38:SP:13353,1,"ZA MONTPLAISIR CALOR",45.524093,4.920577,0,0,O38:SA:CTP13351,Europe/Paris,,O38, +O38:SP:13357,1,"LA GUILLOTIERE",45.304922,5.077307,0,0,O38:SA:CTP13357,Europe/Paris,,O38, +O38:SP:13358,1,"LA GUILLOTIERE",45.304942,5.077103,0,0,O38:SA:CTP13357,Europe/Paris,,O38, +O38:SP:1336,1,"ST JULIEN PTT",45.049774,5.448843,0,0,O38:SA:CTP1336,Europe/Paris,,O38, +O38:SP:13362,1,"LA GARENNE",45.705998,5.53333,0,0,O38:SA:CTP13362,Europe/Paris,,O38, +O38:SP:13363,1,"LA GARENNE",45.70602,5.533251,0,0,O38:SA:CTP13362,Europe/Paris,,O38, +O38:SP:13364,1,"LE PAVE",45.692836,5.533396,0,0,O38:SA:CTP13364,Europe/Paris,,O38, +O38:SP:13365,1,"LE PAVE",45.692892,5.533389,0,0,O38:SA:CTP13364,Europe/Paris,,O38, +O38:SP:13366,1,"CLOS MOREL",45.525529,5.179585,0,0,O38:SA:CTP13366,Europe/Paris,,O38, +O38:SP:13367,1,"EYBERTIERE CROISEMENT",45.189654,5.563324,0,0,O38:SA:CTP13367,Europe/Paris,,O38, +O38:SP:13368,1,"CLOS MOREL",45.525609,5.179625,0,0,O38:SA:CTP13366,Europe/Paris,,O38, +O38:SP:13369,1,"EYBERTIERE CROISEMENT",45.189895,5.563477,0,0,O38:SA:CTP13367,Europe/Paris,,O38, +O38:SP:1337,1,"ST JULIEN PTT",45.050002,5.448878,0,0,O38:SA:CTP1336,Europe/Paris,,O38, +O38:SP:13370,1,"LACRAS",45.344436,5.071789,0,0,O38:SA:CTP13370,Europe/Paris,,O38, +O38:SP:13371,1,"LACRAS",45.34433,5.071411,0,0,O38:SA:CTP13370,Europe/Paris,,O38, +O38:SP:13373,1,"ISLE D'ABEAU-GARE",45.607842,5.219761,0,0,O38:SA:CTP13373,Europe/Paris,,O38, +O38:SP:13377,1,"FERME D'AMBY",45.765993,5.319389,0,0,O38:SA:CTP13377,Europe/Paris,,O38, +O38:SP:13378,1,"FERME D'AMBY",45.765991,5.31951,0,0,O38:SA:CTP13377,Europe/Paris,,O38, +O38:SP:1338,1,"LA VALETTE",45.081853,5.486894,0,0,O38:SA:CTP1338,Europe/Paris,,O38, +O38:SP:13385,1,"ROUTE DE FAVERGES",45.587646,5.540636,0,0,O38:SA:CTP13385,Europe/Paris,,O38, +O38:SP:13386,1,"ROUTE DE FAVERGES",45.587949,5.540594,0,0,O38:SA:CTP13385,Europe/Paris,,O38, +O38:SP:13387,1,"CHANTEBELLE",45.059875,5.363256,0,0,O38:SA:CTP13387,Europe/Paris,,O38, +O38:SP:13388,1,"CHANTEBELLE",45.059913,5.363305,0,0,O38:SA:CTP13387,Europe/Paris,,O38, +O38:SP:13389,1,"MAIRIE",45.341561,5.185895,0,0,O38:SA:CTP13389,Europe/Paris,,O38, +O38:SP:13394,1,"LE PLANOLET",45.371588,5.838483,0,0,O38:SA:CTP13394,Europe/Paris,,O38, +O38:SP:13395,1,"PARC TECHNOLOGIQUE EST",45.620298,5.175162,0,0,O38:SA:CTP13395,Europe/Paris,,O38, +O38:SP:13396,1,"PARC TECHNOLOGIQUE EST",45.620223,5.174915,0,0,O38:SA:CTP13395,Europe/Paris,,O38, +O38:SP:13397,1,"LE RUAL",45.634694,5.409468,0,0,O38:SA:CTP13397,Europe/Paris,,O38, +O38:SP:13398,1,"LE RUAL",45.634732,5.40956,0,0,O38:SA:CTP13397,Europe/Paris,,O38, +O38:SP:13400,1,"ST BONNET CENTRE - LYCEE",45.609604,5.156088,0,0,O38:SA:CTP13400,Europe/Paris,,O38, +O38:SP:13401,1,"ST BONNET CENTRE - LYCEE",45.609666,5.156305,0,0,O38:SA:CTP13400,Europe/Paris,,O38, +O38:SP:13404,1,"LES GRANDES VIGNES",45.267005,5.478755,0,0,O38:SA:CTP13404,Europe/Paris,,O38, +O38:SP:13405,1,"LES GRANDES VIGNES",45.266968,5.478841,0,0,O38:SA:CTP13404,Europe/Paris,,O38, +O38:SP:13407,1,"PLACE CHAFFARDIERE",45.454466,5.637169,0,0,OVO:SA:CTP14702,Europe/Paris,,O38, +O38:SP:13408,1,"PLACE CHAFFARDIERE",45.454496,5.637089,0,0,OVO:SA:CTP14702,Europe/Paris,,O38, +O38:SP:13409,1,"PICHONNIERE",45.222367,5.396981,0,0,O38:SA:CTP13409,Europe/Paris,,O38, +O38:SP:1341,1,"BOIS BARBU-FOYER DE FOND",45.059944,5.522754,0,0,O38:SA:CTP1341,Europe/Paris,,O38, +O38:SP:13410,1,"PICHONNIERE",45.222458,5.397027,0,0,O38:SA:CTP13409,Europe/Paris,,O38, +O38:SP:13411,1,"ECOLE DES MURIERS",45.848568,5.331884,0,0,O38:SA:CTP13411,Europe/Paris,,O38, +O38:SP:13412,1,"ECOLE DES MURIERS",45.848659,5.332037,0,0,O38:SA:CTP13411,Europe/Paris,,O38, +O38:SP:13414,1,"LES GORGES",45.445838,5.658198,0,0,OVO:SA:CTP13413,Europe/Paris,,O38, +O38:SP:13416,1,"GARE MULTIMODALE",45.048445,5.05123,0,0,O38:SA:CTP13416,Europe/Paris,,O38, +O38:SP:13417,1,"LE MANISCEY",45.070141,5.131979,0,0,O38:SA:CTP13417,Europe/Paris,,O38, +O38:SP:13418,1,"LE MANISCEY",45.070221,5.131858,0,0,O38:SA:CTP13417,Europe/Paris,,O38, +O38:SP:13419,1,"GRANDE PLACE",45.0711,5.137293,0,0,O38:SA:CTP13419,Europe/Paris,,O38, +O38:SP:1342,1,"LES TRAVERSES",45.036343,5.533983,0,0,O38:SA:CTP1342,Europe/Paris,,O38, +O38:SP:13420,1,"LE NATIONAL",45.06167,5.109027,0,0,O38:SA:CTP13420,Europe/Paris,,O38, +O38:SP:13421,1,"LE NATIONAL",45.061607,5.109074,0,0,O38:SA:CTP13420,Europe/Paris,,O38, +O38:SP:13422,1,"GRANDE PLACE",45.071169,5.137265,0,0,O38:SA:CTP13419,Europe/Paris,,O38, +O38:SP:13424,1,"P+R BIEVRE DAUPHINE",45.38168,5.477203,0,0,O38:SA:CTP13424,Europe/Paris,,O38, +O38:SP:13425,1,"ST CLAIR/GALAURE",45.260471,5.144443,0,0,O38:SA:CTP13425,Europe/Paris,,O38, +O38:SP:13426,1,"ST CLAIR/GALAURE",45.260432,5.144358,0,0,O38:SA:CTP13425,Europe/Paris,,O38, +O38:SP:1343,1,"LES TRAVERSES",45.036362,5.533885,0,0,O38:SA:CTP1342,Europe/Paris,,O38, +O38:SP:13430,1,"MAISON FORTE",45.695961,5.35708,0,0,O38:SA:CTP13430,Europe/Paris,,O38, +O38:SP:13431,1,"MAISON FORTE",45.695969,5.357136,0,0,O38:SA:CTP13430,Europe/Paris,,O38, +O38:SP:13432,1,"CHEMIN DE LA VIVET",45.32314,5.20061,0,0,O38:SA:CTP13432,Europe/Paris,,O38, +O38:SP:13433,1,"CHEMIN DE LA VIVET",45.323001,5.200532,0,0,O38:SA:CTP13432,Europe/Paris,,O38, +O38:SP:1345,1,"PONT DE L'ESSARTON",45.067354,5.546462,0,0,O38:SA:CTP1345,Europe/Paris,,O38, +O38:SP:13450,1,"RUE DU PRE ROUX",45.271032,5.887465,0,0,O38:SA:CTP13450,Europe/Paris,,O38, +O38:SP:1347,1,"PONT DE L'ESSARTON",45.067239,5.546487,0,0,O38:SA:CTP1345,Europe/Paris,,O38, +O38:SP:1348,1,"FROMAGERIE",45.078265,5.536293,0,0,O38:SA:CTP1348,Europe/Paris,,O38, +O38:SP:13489,1,"LE CROS",44.833327,5.940347,0,0,O38:SA:CTP13489,Europe/Paris,,O38, +O38:SP:1349,1,"FROMAGERIE",45.078202,5.536244,0,0,O38:SA:CTP1348,Europe/Paris,,O38, +O38:SP:13490,1,"LE CROS",44.833315,5.940186,0,0,O38:SA:CTP13489,Europe/Paris,,O38, +O38:SP:1350,1,"ECOLE LES LECHES",45.06991,5.555088,0,0,O38:SA:CTP1350,Europe/Paris,,O38, +O38:SP:1351,1,"ECOLE LES LECHES",45.069831,5.555292,0,0,O38:SA:CTP1350,Europe/Paris,,O38, +O38:SP:1353,1,"FONT NOIRE",45.078769,5.554911,0,0,O38:SA:CTP1353,Europe/Paris,,O38, +O38:SP:1355,1,"FONT NOIRE",45.078809,5.554582,0,0,O38:SA:CTP1353,Europe/Paris,,O38, +O38:SP:1356,1,"LES POUTEILS",45.048212,5.55548,0,0,O38:SA:CTP1356,Europe/Paris,,O38, +O38:SP:1357,1,"LES POUTEILS",45.048245,5.55552,0,0,O38:SA:CTP1356,Europe/Paris,,O38, +O38:SP:1358,1,"LES GUILLETS",45.049875,5.547505,0,0,O38:SA:CTP1358,Europe/Paris,,O38, +O38:SP:1359,1,"LES GUILLETS",45.04969,5.547622,0,0,O38:SA:CTP1358,Europe/Paris,,O38, +O38:SP:1360,1,"SAGNES(PRENATIER)",45.07375,5.547752,0,0,O38:SA:CTP1360,Europe/Paris,,O38, +O38:SP:1361,1,"SAGNES(PRENATIER)",45.073727,5.54798,0,0,O38:SA:CTP1360,Europe/Paris,,O38, +O38:SP:1362,1,"L'ESSARTON-LE PEUIL",45.062349,5.546491,0,0,O38:SA:CTP1362,Europe/Paris,,O38, +O38:SP:1363,1,"L'ESSARTON-LE PEUIL",45.062323,5.546888,0,0,O38:SA:CTP1362,Europe/Paris,,O38, +O38:SP:1365,1,"ET. JEAN PREVOST",45.063352,5.557602,0,0,O38:SA:CTP1365,Europe/Paris,,O38, +O38:SP:1366,1,"ET. JEAN PREVOST",45.061897,5.555874,0,0,O38:SA:CTP1365,Europe/Paris,,O38, +O38:SP:1367,1,"FONT DE LA MAIE",45.049516,5.543228,0,0,O38:SA:CTP1367,Europe/Paris,,O38, +O38:SP:1368,1,"FONT DE LA MAIE",45.049915,5.543096,0,0,O38:SA:CTP1367,Europe/Paris,,O38, +O38:SP:1369,1,"LA TANCANIERE",45.071054,5.540869,0,0,O38:SA:CTP1369,Europe/Paris,,O38, +O38:SP:1370,1,"LA TANCANIERE",45.071119,5.540878,0,0,O38:SA:CTP1369,Europe/Paris,,O38, +O38:SP:1373,1,"BOIS BARBU-FERME",45.065615,5.532257,0,0,O38:SA:CTP1373,Europe/Paris,,O38, +O38:SP:1374,1,"BOIS BARBU-FERME",45.065496,5.53211,0,0,O38:SA:CTP1373,Europe/Paris,,O38, +O38:SP:1376,1,"BALCON DE VILLARD-COTE 2000",45.046337,5.55692,0,0,O38:SA:CTP1376,Europe/Paris,,O38, +O38:SP:1378,1,"BALCON DE VILLARD-COTE 2000",45.046046,5.557122,0,0,O38:SA:CTP1376,Europe/Paris,,O38, +O38:SP:1379,1,"BOIS BARBU-4 VENTS",45.066123,5.52772,0,0,O38:SA:CTP1379,Europe/Paris,,O38, +O38:SP:1380,1,"BOIS BARBU-4 VENTS",45.066046,5.527535,0,0,O38:SA:CTP1379,Europe/Paris,,O38, +O38:SP:1382,1,"CHARPICHON",45.076221,5.537233,0,0,O38:SA:CTP1382,Europe/Paris,,O38, +O38:SP:1384,1,"CHARPICHON",45.076547,5.537055,0,0,O38:SA:CTP1382,Europe/Paris,,O38, +O38:SP:1386,1,"GARE ROUTIERE",45.072682,5.552645,0,0,O38:SA:CTP1386,Europe/Paris,,O38, +O38:SP:1388,1,"GARE ROUTIERE",45.072647,5.552685,0,0,O38:SA:CTP1386,Europe/Paris,,O38, +O38:SP:1389,1,"ROCHE POINTUE",45.073582,5.543277,0,0,O38:SA:CTP1389,Europe/Paris,,O38, +O38:SP:1390,1,"ROCHE POINTUE",45.073528,5.54321,0,0,O38:SA:CTP1389,Europe/Paris,,O38, +O38:SP:1391,1,"LES LOMBARDS",45.077324,5.573708,0,0,O38:SA:CTP1391,Europe/Paris,,O38, +O38:SP:1392,1,"LES LOMBARDS",45.077278,5.573496,0,0,O38:SA:CTP1391,Europe/Paris,,O38, +O38:SP:1393,1,"CHABERTS-MOURETS",45.074103,5.572333,0,0,O38:SA:CTP1393,Europe/Paris,,O38, +O38:SP:13930,1,"L'ISLE-LYCEE.COLLEGE",45.505505,4.851698,0,0,O38:SA:CTP13930,Europe/Paris,,O38, +O38:SP:13932,1,"L'ISLE-LYCEE.COLLEGE",45.505582,4.851593,0,0,O38:SA:CTP13930,Europe/Paris,,O38, +O38:SP:1394,1,"CHABERTS-MOURETS",45.074087,5.572235,0,0,O38:SA:CTP1393,Europe/Paris,,O38, +O38:SP:1396,1,"LA BALMETTE",45.058102,5.545397,0,0,O38:SA:CTP1396,Europe/Paris,,O38, +O38:SP:1398,1,"LA BALMETTE",45.057744,5.545258,0,0,O38:SA:CTP1396,Europe/Paris,,O38, +O38:SP:1400,1,"COULEUR SOLEIL-GRAND ADRET",45.068629,5.556877,0,0,O38:SA:CTP1400,Europe/Paris,,O38, +O38:SP:1402,1,"COULEUR SOLEIL-GRAND ADRET",45.068506,5.557148,0,0,O38:SA:CTP1400,Europe/Paris,,O38, +O38:SP:1403,1,"CONTERIE-ELF ANTAR",45.073903,5.553961,0,0,O38:SA:CTP1403,Europe/Paris,,O38, +O38:SP:1404,1,"CONTERIE-ELF ANTAR",45.07385,5.553897,0,0,O38:SA:CTP1403,Europe/Paris,,O38, +O38:SP:1405,1,"LES COCHETTES",45.068159,5.566871,0,0,O38:SA:CTP1405,Europe/Paris,,O38, +O38:SP:1406,1,"LES COCHETTES",45.068026,5.566983,0,0,O38:SA:CTP1405,Europe/Paris,,O38, +O38:SP:1408,1,"MAEVA LA CROIX MARGAUT",45.071945,5.555848,0,0,O38:SA:CTP1408,Europe/Paris,,O38, +O38:SP:1410,1,"MAEVA LA CROIX MARGAUT",45.070685,5.554758,0,0,O38:SA:CTP1408,Europe/Paris,,O38, +O38:SP:1412,1,"LES BAINS",45.067534,5.552602,0,0,O38:SA:CTP1412,Europe/Paris,,O38, +O38:SP:14133,1,"CROIX BLANCHE",45.601841,5.229068,0,0,O38:SA:CTP14133,Europe/Paris,,O38, +O38:SP:14135,1,"CROIX BLANCHE",45.601665,5.229436,0,0,O38:SA:CTP14133,Europe/Paris,,O38, +O38:SP:1414,1,"LES BAINS",45.067462,5.55191,0,0,O38:SA:CTP1412,Europe/Paris,,O38, +O38:SP:1419,1,"LES GUIBERTS",45.038506,5.705746,0,0,O38:SA:CTP1419,Europe/Paris,,O38, +O38:SP:1420,1,"LES GUIBERTS",45.038385,5.705784,0,0,O38:SA:CTP1419,Europe/Paris,,O38, +O38:SP:14208,1,"VAUCANSON",45.590954,5.271748,0,0,O38:SA:CTP14208,Europe/Paris,,O38, +O38:SP:1421,1,"LE BOUTEY",45.076722,5.725401,0,0,O38:SA:CTP1421,Europe/Paris,,O38, +O38:SP:14210,1,"VAUCANSON",45.590629,5.272308,0,0,O38:SA:CTP14208,Europe/Paris,,O38, +O38:SP:14212,1,"MAIRIE",45.586348,5.192572,0,0,O38:SA:CTP14212,Europe/Paris,,O38, +O38:SP:14214,1,"MAIRIE",45.586385,5.192483,0,0,O38:SA:CTP14212,Europe/Paris,,O38, +O38:SP:1422,1,"LE BOUTEY",45.076956,5.725607,0,0,O38:SA:CTP1421,Europe/Paris,,O38, +O38:SP:1423,1,"CHEMIN DU CLOUD",45.071102,5.72289,0,0,O38:SA:CTP1423,Europe/Paris,,O38, +O38:SP:1424,1,"CHEMIN DU CLOUD",45.070873,5.722866,0,0,O38:SA:CTP1423,Europe/Paris,,O38, +O38:SP:1426,1,"LA PELISSIERE",45.070374,5.675072,0,0,O38:SA:CTP1426,Europe/Paris,,O38, +O38:SP:1428,1,"LA PELISSIERE",45.070403,5.674979,0,0,O38:SA:CTP1426,Europe/Paris,,O38, +O38:SP:1429,1,"LA TOUR",45.038253,5.704248,0,0,O38:SA:CTP1429,Europe/Paris,,O38, +O38:SP:1430,1,"LA TOUR",45.037992,5.703982,0,0,O38:SA:CTP1429,Europe/Paris,,O38, +O38:SP:1431,1,"LES CONDAMINES",45.043782,5.706508,0,0,O38:SA:CTP1431,Europe/Paris,,O38, +O38:SP:1432,1,"LES CONDAMINES",45.043748,5.706598,0,0,O38:SA:CTP1431,Europe/Paris,,O38, +O38:SP:1434,1,"LE CANAL",45.05199,5.710358,0,0,O38:SA:CTP1434,Europe/Paris,,O38, +O38:SP:14356,1,"STADE DE LA PRAIRIE",45.605855,5.165208,0,0,O38:SA:CTP14356,Europe/Paris,,O38, +O38:SP:14358,1,"STADE DE LA PRAIRIE",45.605776,5.16527,0,0,O38:SA:CTP14356,Europe/Paris,,O38, +O38:SP:1438,1,"GENDARMERIE",45.053015,5.676641,0,0,O38:SA:CTP1438,Europe/Paris,,O38, +O38:SP:1440,1,"GENDARMERIE",45.053014,5.676505,0,0,O38:SA:CTP1438,Europe/Paris,,O38, +O38:SP:1441,1,"LA RIVOIRE",45.050165,5.682847,0,0,O38:SA:CTP1441,Europe/Paris,,O38, +O38:SP:1442,1,"LA RIVOIRE",45.050102,5.682797,0,0,O38:SA:CTP1441,Europe/Paris,,O38, +O38:SP:1443,1,"LE CROZET",45.039752,5.671499,0,0,O38:SA:CTP1443,Europe/Paris,,O38, +O38:SP:1444,1,"LE CROZET",45.040294,5.670876,0,0,O38:SA:CTP1443,Europe/Paris,,O38, +O38:SP:1445,1,"COLLEGE LE MASSEGU",45.052392,5.672033,0,0,O38:SA:CTP1445,Europe/Paris,,O38, +O38:SP:1446,1,"COLLEGE LE MASSEGU",45.052398,5.672065,0,0,O38:SA:CTP1445,Europe/Paris,,O38, +O38:SP:1447,1,"LES ISLES",45.048498,5.706529,0,0,O38:SA:CTP1447,Europe/Paris,,O38, +O38:SP:1448,1,"LES ISLES",45.048622,5.70652,0,0,O38:SA:CTP1447,Europe/Paris,,O38, +O38:SP:1449,1,"LA GARE",45.043546,5.701479,0,0,SIN:SA:OCE87747568,Europe/Paris,,O38, +O38:SP:1450,1,"LA GARE",45.043385,5.701623,0,0,SIN:SA:OCE87747568,Europe/Paris,,O38, +O38:SP:1452,1,"LE CHALET",45.043468,5.664509,0,0,O38:SA:CTP1452,Europe/Paris,,O38, +O38:SP:1454,1,"LE CHALET",45.043471,5.664408,0,0,O38:SA:CTP1452,Europe/Paris,,O38, +O38:SP:1456,1,"LA CIME DU BOURG",45.049076,5.669333,0,0,O38:SA:CTP1456,Europe/Paris,,O38, +O38:SP:1460,1,"LES GARCINS",45.063523,5.669619,0,0,O38:SA:CTP1460,Europe/Paris,,O38, +O38:SP:1462,1,"LES GARCINS",45.063548,5.669523,0,0,O38:SA:CTP1460,Europe/Paris,,O38, +O38:SP:1464,1,"LA GRANGE",45.03919,5.661231,0,0,O38:SA:CTP1464,Europe/Paris,,O38, +O38:SP:1466,1,"LA GRANGE",45.039334,5.661248,0,0,O38:SA:CTP1464,Europe/Paris,,O38, +O38:SP:1468,1,"MAIRIE",45.055972,5.668534,0,0,O38:SA:CTP1468,Europe/Paris,,O38, +O38:SP:1470,1,"MAIRIE",45.055839,5.669069,0,0,O38:SA:CTP1468,Europe/Paris,,O38, +O38:SP:1477,1,"CAR. ST-PIERRE-DE-MESAGE",45.059949,5.752448,0,0,O38:SA:CTP1477,Europe/Paris,,O38, +O38:SP:1478,1,"CAR. ST-PIERRE-DE-MESAGE",45.059791,5.752364,0,0,O38:SA:CTP1477,Europe/Paris,,O38, +O38:SP:1480,1,"LE PEAGE",45.057651,5.771076,0,0,O38:SA:CTP1480,Europe/Paris,,O38, +O38:SP:1482,1,"LE PEAGE",45.057374,5.770819,0,0,O38:SA:CTP1480,Europe/Paris,,O38, +O38:SP:1484,1,"LE MANIGUET",45.053089,5.77798,0,0,O38:SA:CTP1484,Europe/Paris,,O38, +O38:SP:1486,1,"LE MANIGUET",45.053115,5.778018,0,0,O38:SA:CTP1484,Europe/Paris,,O38, +O38:SP:1488,1,"PLACE DU CHATEAU",45.074972,5.771961,0,0,O38:SA:CTP1488,Europe/Paris,,O38, +O38:SP:1490,1,"PLACE DU CHATEAU",45.075097,5.772135,0,0,O38:SA:CTP1488,Europe/Paris,,O38, +O38:SP:14923,1,"LES GRANGES",44.735041,5.751815,0,0,O38:SA:CTP14923,Europe/Paris,,O38, +O38:SP:14924,1,"LES GRANGES",44.735102,5.751783,0,0,O38:SA:CTP14923,Europe/Paris,,O38, +O38:SP:14925,1,"GROUPE SCOLAIRE",44.82715,5.620003,0,0,O38:SA:CTP14925,Europe/Paris,,O38, +O38:SP:14926,1,"GROUPE SCOLAIRE",44.827074,5.62014,0,0,O38:SA:CTP14925,Europe/Paris,,O38, +O38:SP:14927,1,"VILLETTE",44.833571,5.746714,0,0,O38:SA:CTP14927,Europe/Paris,,O38, +O38:SP:14928,1,"VILLETTE",44.833663,5.745134,0,0,O38:SA:CTP14927,Europe/Paris,,O38, +O38:SP:14929,1,"LE GRAND MOULIN",45.135078,5.527026,0,0,O38:SA:CTP14929,Europe/Paris,,O38, +O38:SP:1493,1,"CAR.ROUTE DE MONTALEY",45.07167,5.757724,0,0,O38:SA:CTP1493,Europe/Paris,,O38, +O38:SP:14931,1,"Z.A CHARANCIEU",45.529874,5.589562,0,0,O38:SA:CTP14931,Europe/Paris,,O38, +O38:SP:14932,1,"Z.A CHARANCIEU",45.529556,5.589734,0,0,O38:SA:CTP14931,Europe/Paris,,O38, +O38:SP:14933,1,"CHEMIN DE LA CROIX VERTE",45.220881,5.810794,0,0,O38:SA:CTP14933,Europe/Paris,,O38, +O38:SP:14934,1,"CHEMIN DE LA CROIX VERTE",45.220582,5.811102,0,0,O38:SA:CTP14933,Europe/Paris,,O38, +O38:SP:14935,1,"LE PRIEURE",45.225647,5.811564,0,0,O38:SA:CTP14935,Europe/Paris,,O38, +O38:SP:14936,1,"LE PRIEURE",45.225356,5.812076,0,0,O38:SA:CTP14935,Europe/Paris,,O38, +O38:SP:14937,1,"CHARMILLES AVANT LA CROIX",45.583114,5.62438,0,0,O38:SA:CTP14937,Europe/Paris,,O38, +O38:SP:14938,1,"CHARMILLES AVANT LA CROIX",45.583175,5.624326,0,0,O38:SA:CTP14937,Europe/Paris,,O38, +O38:SP:14939,1,"MONTEE DES ROSSIERES",45.422283,4.834042,0,0,O38:SA:CTP14939,Europe/Paris,,O38, +O38:SP:1494,1,"CAR.ROUTE DE MONTALEY",45.071477,5.757801,0,0,O38:SA:CTP1493,Europe/Paris,,O38, +O38:SP:14940,1,"MONTEE DES ROSSIERES",45.422241,4.834113,0,0,O38:SA:CTP14939,Europe/Paris,,O38, +O38:SP:14945,1,"CROIX DROGUET",45.60593,5.461595,0,0,O38:SA:CTP14945,Europe/Paris,,O38, +O38:SP:14946,1,"CROIX DROGUET",45.605896,5.461565,0,0,O38:SA:CTP14945,Europe/Paris,,O38, +O38:SP:14947,1,"FOYER SKI DE FOND",45.116361,5.404234,0,0,O38:SA:CTP14947,Europe/Paris,,O38, +O38:SP:14948,1,"FOYER SKI DE FOND",45.116395,5.404225,0,0,O38:SA:CTP14947,Europe/Paris,,O38, +O38:SP:14961,1,"LES FORGES",45.077494,5.768538,0,0,O38:SA:CTP14961,Europe/Paris,,O38, +O38:SP:14963,1,"LES FORGES",45.077177,5.768576,0,0,O38:SA:CTP14961,Europe/Paris,,O38, +O38:SP:14964,1,"LE COLEO",45.433884,6.007413,0,0,O38:SA:CTP14964,Europe/Paris,,O38, +O38:SP:14992,1,"Z.A. CHAMP 7 LAUX",45.28502,5.93499,0,0,O38:SA:CTP14992,Europe/Paris,,O38, +O38:SP:14993,1,"Z.A. CHAMP 7 LAUX",45.284912,5.935004,0,0,O38:SA:CTP14992,Europe/Paris,,O38, +O38:SP:14994,1,"PONT ROUGE",45.11686,6.014628,0,0,O38:SA:CTP14994,Europe/Paris,,O38, +O38:SP:14995,1,"PONT ROUGE",45.117063,6.014723,0,0,O38:SA:CTP14994,Europe/Paris,,O38, +O38:SP:14998,1,"GOUFFRE DE LA CROIX",45.064556,5.39322,0,0,O38:SA:CTP14998,Europe/Paris,,O38, +O38:SP:14999,1,"GOUFFRE DE LA CROIX",45.064445,5.393297,0,0,O38:SA:CTP14998,Europe/Paris,,O38, +O38:SP:15000,1,"LE VIEUX PONT",45.338391,4.847699,0,0,O38:SA:CTP15000,Europe/Paris,,O38, +O38:SP:15001,1,"LE VIEUX PONT",45.33822,4.847451,0,0,O38:SA:CTP15000,Europe/Paris,,O38, +O38:SP:1501,1,"CAR.ROUTE DE ST-SAUVEUR",45.066623,5.753931,0,0,O38:SA:CTP1501,Europe/Paris,,O38, +O38:SP:1502,1,"CAR.ROUTE DE ST-SAUVEUR",45.06691,5.754196,0,0,O38:SA:CTP1501,Europe/Paris,,O38, +O38:SP:15024,1,"LE MOULIN",45.230686,5.819229,0,0,O38:SA:CTP15024,Europe/Paris,,O38, +O38:SP:15025,1,"LE MOULIN",45.23083,5.819106,0,0,O38:SA:CTP15024,Europe/Paris,,O38, +O38:SP:15026,1,"LA REMISE",45.069355,5.321518,0,0,O38:SA:CTP15026,Europe/Paris,,O38, +O38:SP:15027,1,"LA REMISE",45.069323,5.32151,0,0,O38:SA:CTP15026,Europe/Paris,,O38, +O38:SP:15028,1,"LE BRASSARD LA COTE",45.632316,5.482478,0,0,O38:SA:CTP15028,Europe/Paris,,O38, +O38:SP:15029,1,"LE BRASSARD LA COTE",45.632164,5.482585,0,0,O38:SA:CTP15028,Europe/Paris,,O38, +O38:SP:1503,1,"LYCEE",45.069107,5.766709,0,0,O38:SA:CTP1503,Europe/Paris,,O38, +O38:SP:15030,1,"SALLE DES FETES",45.590491,5.607512,0,0,O38:SA:CTP15030,Europe/Paris,,O38, +O38:SP:15031,1,"SALLE DES FETES",45.590327,5.607432,0,0,O38:SA:CTP15030,Europe/Paris,,O38, +O38:SP:15032,1,"LES APPERTS",45.3525,4.899567,0,0,O38:SA:CTP15032,Europe/Paris,,O38, +O38:SP:15033,1,"LES APPERTS",45.351742,4.897893,0,0,O38:SA:CTP15032,Europe/Paris,,O38, +O38:SP:1504,1,"LYCEE",45.069018,5.767063,0,0,O38:SA:CTP1503,Europe/Paris,,O38, +O38:SP:15055,1,"GOUVOUX PIERRE BRUNE",45.710615,5.521927,0,0,O38:SA:CTP15055,Europe/Paris,,O38, +O38:SP:15056,1,"GOUVOUX PIERRE BRUNE",45.710554,5.521859,0,0,O38:SA:CTP15055,Europe/Paris,,O38, +O38:SP:15080,1,"BEPTENAZ",45.732312,5.258318,0,0,O38:SA:CTP15080,Europe/Paris,,O38, +O38:SP:15081,1,"BEPTENAZ",45.732258,5.25805,0,0,O38:SA:CTP15080,Europe/Paris,,O38, +O38:SP:15082,1,"MOLARD VIRET",45.771877,5.44713,0,0,O38:SA:CTP15082,Europe/Paris,,O38, +O38:SP:15083,1,"MOLARD VIRET",45.77183,5.447196,0,0,O38:SA:CTP15082,Europe/Paris,,O38, +O38:SP:15084,1,"LES REINETTES",45.639852,5.196279,0,0,O38:SA:CTP15084,Europe/Paris,,O38, +O38:SP:15085,1,"LES REINETTES",45.640007,5.196118,0,0,O38:SA:CTP15084,Europe/Paris,,O38, +O38:SP:15086,1,"CAVE ET VIDOS",45.260094,5.374419,0,0,O38:SA:CTP15086,Europe/Paris,,O38, +O38:SP:15087,1,"CAVE ET VIDOS",45.260158,5.37451,0,0,O38:SA:CTP15086,Europe/Paris,,O38, +O38:SP:15088,1,"LE CORNIOLAY",45.827861,5.410654,0,0,O38:SA:CTP15088,Europe/Paris,,O38, +O38:SP:15089,1,"LE CORNIOLAY",45.828176,5.410412,0,0,O38:SA:CTP15088,Europe/Paris,,O38, +O38:SP:15090,1,"LES GARNIERS",45.630481,5.447524,0,0,O38:SA:CTP15090,Europe/Paris,,O38, +O38:SP:15091,1,"LES GARNIERS",45.63046,5.447843,0,0,O38:SA:CTP15090,Europe/Paris,,O38, +O38:SP:15092,1,"SAPEURS POMPIERS",45.21001,5.405338,0,0,O38:SA:CTP15092,Europe/Paris,,O38, +O38:SP:15093,1,"SAPEURS POMPIERS",45.209939,5.405308,0,0,O38:SA:CTP15092,Europe/Paris,,O38, +O38:SP:15109,1,"RIOUPEROUX-MAIRIE",45.091779,5.903288,0,0,O38:SA:CTP15109,Europe/Paris,,O38, +O38:SP:15110,1,"RIOUPEROUX-MAIRIE",45.092099,5.903463,0,0,O38:SA:CTP15109,Europe/Paris,,O38, +O38:SP:15119,1,"LES GLOVETTES",45.052276,5.562927,0,0,O38:SA:CTP15119,Europe/Paris,,O38, +O38:SP:1512,1,"LE LAC MORT",45.035107,5.794906,0,0,O38:SA:CTP1512,Europe/Paris,,O38, +O38:SP:15120,1,"LES GORGES",45.093795,5.526925,0,0,O38:SA:CTP15120,Europe/Paris,,O38, +O38:SP:15121,1,"LES GORGES",45.093752,5.526836,0,0,O38:SA:CTP15120,Europe/Paris,,O38, +O38:SP:15122,1,"RODET",44.835382,5.739812,0,0,O38:SA:CTP15122,Europe/Paris,,O38, +O38:SP:15123,1,"RODET",44.835423,5.739868,0,0,O38:SA:CTP15122,Europe/Paris,,O38, +O38:SP:15124,1,"SENDON",44.82218,5.673625,0,0,O38:SA:CTP15124,Europe/Paris,,O38, +O38:SP:15125,1,"SENDON",44.822119,5.673518,0,0,O38:SA:CTP15124,Europe/Paris,,O38, +O38:SP:15126,1,"PONT DES VANNES",45.110598,5.708395,0,0,O38:SA:CTP15126,Europe/Paris,,O38, +O38:SP:15127,1,"PONT DES VANNES",45.110689,5.708492,0,0,O38:SA:CTP15126,Europe/Paris,,O38, +O38:SP:1513,1,"LE LAC MORT",45.035179,5.794901,0,0,O38:SA:CTP1512,Europe/Paris,,O38, +O38:SP:15132,1,"CASSEROUSSE",45.141198,5.888197,0,0,O38:SA:CTP15132,Europe/Paris,,O38, +O38:SP:15133,1,"CASSEROUSSE",45.141501,5.88769,0,0,O38:SA:CTP15132,Europe/Paris,,O38, +O38:SP:15134,1,"MAISON DOIZE",45.429684,5.241998,0,0,O38:SA:CTP15134,Europe/Paris,,O38, +O38:SP:15135,1,"MAISON DOIZE",45.429755,5.241966,0,0,O38:SA:CTP15134,Europe/Paris,,O38, +O38:SP:15136,1,"CHEMIN SUR CORDIER",45.430917,5.011512,0,0,O38:SA:CTP15136,Europe/Paris,,O38, +O38:SP:15137,1,"TARENTEY",45.508129,5.60476,0,0,O38:SA:CTP15137,Europe/Paris,,O38, +O38:SP:15138,1,"TARENTEY",45.50815,5.60384,0,0,O38:SA:CTP15137,Europe/Paris,,O38, +O38:SP:15139,1,"LES PALLETEAUX D16B",45.594257,5.465897,0,0,O38:SA:CTP15139,Europe/Paris,,O38, +O38:SP:15140,1,"LES PALLETEAUX D16B",45.594297,5.465679,0,0,O38:SA:CTP15139,Europe/Paris,,O38, +O38:SP:1515,1,"LE VILLAGE",45.05361,5.834725,0,0,O38:SA:CTP1515,Europe/Paris,,O38, +O38:SP:15161,1,"LES CHAMPS RD116",44.904629,5.690941,0,0,O38:SA:CTP15161,Europe/Paris,,O38, +O38:SP:15162,1,"LES CHAMPS RD116",44.904704,5.691058,0,0,O38:SA:CTP15161,Europe/Paris,,O38, +O38:SP:15165,1,"PAUL BERLIET",45.704522,4.912836,0,0,DGL:SA:S10089,Europe/Paris,,O38, +O38:SP:15166,1,"PAUL BERLIET",45.70513,4.911897,0,0,DGL:SA:S10089,Europe/Paris,,O38, +O38:SP:1517,1,"LE VILLAGE",45.053661,5.834636,0,0,O38:SA:CTP1515,Europe/Paris,,O38, +O38:SP:15180,1,"LE GILLIER",45.4331,4.939092,0,0,O38:SA:CTP15180,Europe/Paris,,O38, +O38:SP:15181,1,"LE GILLIER",45.433163,4.939173,0,0,O38:SA:CTP15180,Europe/Paris,,O38, +O38:SP:15182,1,"LES ALLEMANDS",44.95755,5.813826,0,0,O38:SA:CTP15182,Europe/Paris,,O38, +O38:SP:15183,1,"LES ALLEMANDS",44.956839,5.813303,0,0,O38:SA:CTP15182,Europe/Paris,,O38, +O38:SP:1519,1,"LE VILLAGE",45.044459,5.826094,0,0,O38:SA:CTP1519,Europe/Paris,,O38, +O38:SP:15198,1,"CHANTEFEUILLE",45.080558,5.774662,0,0,O38:SA:CTP15198,Europe/Paris,,O38, +O38:SP:15203,1,"LE LICHOUD RD18",45.634926,5.24417,0,0,O38:SA:CTP15203,Europe/Paris,,O38, +O38:SP:15204,1,"LE LICHOUD RD18",45.634959,5.244376,0,0,O38:SA:CTP15203,Europe/Paris,,O38, +O38:SP:15206,1,"DAUPHINE",45.649575,5.100082,0,0,O38:SA:CTP15206,Europe/Paris,,O38, +O38:SP:15208,1,"DAUPHINE",45.650588,5.099843,0,0,O38:SA:CTP15206,Europe/Paris,,O38, +O38:SP:1521,1,"LE VILLAGE",45.044389,5.826069,0,0,O38:SA:CTP1519,Europe/Paris,,O38, +O38:SP:15211,1,"PRE DE L'EAU ROND POINT",45.223914,5.820373,0,0,O38:SA:CTP15211,Europe/Paris,,O38, +O38:SP:15222,1,"LES MOINES",45.592555,5.211698,0,0,O38:SA:CTP15222,Europe/Paris,,O38, +O38:SP:15224,1,"LES MOINES",45.592438,5.211457,0,0,O38:SA:CTP15222,Europe/Paris,,O38, +O38:SP:15243,1,"PLAINE",45.563967,5.968438,0,0,O38:SA:CTP15243,Europe/Paris,,O38, +O38:SP:15244,1,"PLAINE",45.563769,5.968433,0,0,O38:SA:CTP15243,Europe/Paris,,O38, +O38:SP:15247,1,"HERPIEUX",45.31955,4.837545,0,0,O38:SA:CTP15247,Europe/Paris,,O38, +O38:SP:15248,1,"HERPIEUX",45.319626,4.83702,0,0,O38:SA:CTP15247,Europe/Paris,,O38, +O38:SP:15249,1,"LE PLATRE",45.621827,5.060752,0,0,O38:SA:CTP15249,Europe/Paris,,O38, +O38:SP:1525,1,"BELLE LAUZE",45.047533,5.845381,0,0,O38:SA:CTP1525,Europe/Paris,,O38, +O38:SP:15250,1,"LE PLATRE",45.62172,5.0608,0,0,O38:SA:CTP15249,Europe/Paris,,O38, +O38:SP:15251,1,"FRANCOIS TRUFFAUT",45.387454,4.780541,0,0,O38:SA:CTP15251,Europe/Paris,,O38, +O38:SP:15252,1,"FRANCOIS TRUFFAUT",45.387417,4.780305,0,0,O38:SA:CTP15251,Europe/Paris,,O38, +O38:SP:15253,1,"CHEMIN DE SAMBILLOT",45.459506,4.82208,0,0,O38:SA:CTP15253,Europe/Paris,,O38, +O38:SP:15257,1,"BEAUCHUZEL",45.428217,4.847169,0,0,O38:SA:CTP15257,Europe/Paris,,O38, +O38:SP:15258,1,"BEAUCHUZEL",45.428315,4.847153,0,0,O38:SA:CTP15257,Europe/Paris,,O38, +O38:SP:15259,1,"DESSOUS LE CELLIER",45.059793,5.41181,0,0,O38:SA:CTP15259,Europe/Paris,,O38, +O38:SP:15260,1,"DESSOUS LE CELLIER",45.059829,5.411719,0,0,O38:SA:CTP15259,Europe/Paris,,O38, +O38:SP:15261,1,"ALBERGES CENTRE",45.033252,6.067189,0,0,O38:SA:CTP15261,Europe/Paris,,O38, +O38:SP:15262,1,"LES ACHARDS",44.83342,5.926788,0,0,O38:SA:CTP15262,Europe/Paris,,O38, +O38:SP:15263,1,"LES ACHARDS",44.833128,5.927055,0,0,O38:SA:CTP15262,Europe/Paris,,O38, +O38:SP:15264,1,"ALBERGES CENTRE",45.033413,6.067221,0,0,O38:SA:CTP15261,Europe/Paris,,O38, +O38:SP:15265,1,"RUE DES LAVANDES",45.154154,5.335818,0,0,O38:SA:CTP15265,Europe/Paris,,O38, +O38:SP:15266,1,"RUE DES LAVANDES",45.154165,5.335663,0,0,O38:SA:CTP15265,Europe/Paris,,O38, +O38:SP:15267,1,"BOURG",45.294377,5.236627,0,0,O38:SA:CTP15267,Europe/Paris,,O38, +O38:SP:15268,1,"BOURG",45.294381,5.236691,0,0,O38:SA:CTP15267,Europe/Paris,,O38, +O38:SP:15269,1,"LES ANTONINS",45.337589,5.820416,0,0,O38:SA:CTP15269,Europe/Paris,,O38, +O38:SP:1527,1,"BELLE LAUZE",45.047559,5.845477,0,0,O38:SA:CTP1525,Europe/Paris,,O38, +O38:SP:15270,1,"LES ANTONINS",45.337644,5.820239,0,0,O38:SA:CTP15269,Europe/Paris,,O38, +O38:SP:15271,1,"PONT DE LA DIAT",45.33988,5.80797,0,0,O38:SA:CTP15271,Europe/Paris,,O38, +O38:SP:15272,1,"PONT DE LA DIAT",45.339947,5.807874,0,0,O38:SA:CTP15271,Europe/Paris,,O38, +O38:SP:15273,1,"TELECABINE",45.344528,5.816663,0,0,O38:SA:CTP15273,Europe/Paris,,O38, +O38:SP:15274,1,"PHARMACIE",45.279692,5.539261,0,0,O38:SA:CTP15274,Europe/Paris,,O38, +O38:SP:15275,1,"PHARMACIE",45.279762,5.539354,0,0,O38:SA:CTP15274,Europe/Paris,,O38, +O38:SP:15277,1,"LE RIVIER",45.380057,5.492697,0,0,O38:SA:CTP15277,Europe/Paris,,O38, +O38:SP:15278,1,"LE RIVIER",45.379611,5.492131,0,0,O38:SA:CTP15277,Europe/Paris,,O38, +O38:SP:15279,1,"CONDILLAC UNIVERSITES",45.189347,5.774464,0,0,O38:SA:CTP15279,Europe/Paris,,O38, +O38:SP:1528,1,"LE SAPPEY",45.037943,5.809352,0,0,O38:SA:CTP1528,Europe/Paris,,O38, +O38:SP:15288,1,"GAGNAGES",45.35469,5.303098,0,0,O38:SA:CTP15288,Europe/Paris,,O38, +O38:SP:15289,1,"GAGNAGES",45.354644,5.303031,0,0,O38:SA:CTP15288,Europe/Paris,,O38, +O38:SP:1529,1,"LE SAPPEY",45.038015,5.809347,0,0,O38:SA:CTP1528,Europe/Paris,,O38, +O38:SP:15292,1,"PRE BOREL",45.2738,5.480964,0,0,O38:SA:CTP15292,Europe/Paris,,O38, +O38:SP:15293,1,"PRE BOREL",45.273764,5.481053,0,0,O38:SA:CTP15292,Europe/Paris,,O38, +O38:SP:15297,1,"Z.I REVENTIN VAUGRIS",45.458814,4.825319,0,0,O38:SA:CTP15297,Europe/Paris,,O38, +O38:SP:15298,1,"MONTEE DE BUCLAY",45.602899,5.550558,0,0,O38:SA:CTP15298,Europe/Paris,,O38, +O38:SP:15299,1,"MONTEE DE BUCLAY",45.602798,5.550727,0,0,O38:SA:CTP15298,Europe/Paris,,O38, +O38:SP:1530,1,"JEAN PONCET",45.03168,5.851977,0,0,O38:SA:CTP1530,Europe/Paris,,O38, +O38:SP:15300,1,"CLOS MARGOT",45.067389,5.562888,0,0,O38:SA:CTP15300,Europe/Paris,,O38, +O38:SP:15301,1,"CLOS MARGOT",45.067412,5.562478,0,0,O38:SA:CTP15300,Europe/Paris,,O38, +O38:SP:1531,1,"JEAN PONCET",45.03171,5.852288,0,0,O38:SA:CTP1530,Europe/Paris,,O38, +O38:SP:1533,1,"LA GARE",45.053414,5.829406,0,0,O38:SA:CTP1533,Europe/Paris,,O38, +O38:SP:1535,1,"LA GARE",45.053457,5.8295,0,0,O38:SA:CTP1533,Europe/Paris,,O38, +O38:SP:1539,1,"ECOLE",45.029106,5.856351,0,0,O38:SA:CTP1539,Europe/Paris,,O38, +O38:SP:15404,1,"VIGNOZET",45.616081,5.466723,0,0,O38:SA:CTP15404,Europe/Paris,,O38, +O38:SP:15405,1,"VIGNOZET",45.616142,5.467005,0,0,O38:SA:CTP15404,Europe/Paris,,O38, +O38:SP:15407,1,"ECOLE",45.046467,6.08634,0,0,O38:SA:CTP15407,Europe/Paris,,O38, +O38:SP:15408,1,"ECOLE",45.04627,6.086243,0,0,O38:SA:CTP15407,Europe/Paris,,O38, +O38:SP:15409,1,"GARE ROUTIERE",45.341642,5.341651,0,0,O38:SA:CTP15409,Europe/Paris,,O38, +O38:SP:15412,1,"LEYGAT",44.89825,5.922039,0,0,O38:SA:CTP15412,Europe/Paris,,O38, +O38:SP:15413,1,"LEYGAT",44.898345,5.921955,0,0,O38:SA:CTP15412,Europe/Paris,,O38, +O38:SP:15414,1,"HAUT DE LA COMBE",45.311044,5.312264,0,0,O38:SA:CTP15414,Europe/Paris,,O38, +O38:SP:15415,1,"HAUT DE LA COMBE",45.311085,5.312147,0,0,O38:SA:CTP15414,Europe/Paris,,O38, +O38:SP:15419,1,"LE STADE",45.525061,5.352962,0,0,O38:SA:CTP15419,Europe/Paris,,O38, +O38:SP:1542,1,"GAVET PISCINE",45.0664,5.869027,0,0,O38:SA:CTP1542,Europe/Paris,,O38, +O38:SP:15420,1,"LE STADE",45.52497,5.352922,0,0,O38:SA:CTP15419,Europe/Paris,,O38, +O38:SP:15421,1,"LE GILET",45.318758,5.338215,0,0,O38:SA:CTP15421,Europe/Paris,,O38, +O38:SP:15422,1,"LE GILET",45.318786,5.338162,0,0,O38:SA:CTP15421,Europe/Paris,,O38, +O38:SP:15425,1,"AGENCE TRANSISERE VFD",45.05841,6.028539,0,0,O38:SA:CTP15425,Europe/Paris,,O38, +O38:SP:15427,1,"AGENCE TRANSISERE VFD",45.058341,6.028586,0,0,O38:SA:CTP15425,Europe/Paris,,O38, +O38:SP:1543,1,"GAVET PISCINE",45.066269,5.86896,0,0,O38:SA:CTP1542,Europe/Paris,,O38, +O38:SP:15438,1,"LA BOURGEAT 2",45.189021,5.863376,0,0,O38:SA:CTP15438,Europe/Paris,,O38, +O38:SP:15439,1,"GRAVETAN",45.583284,4.982477,0,0,OIV:SA:CTP13834,Europe/Paris,,O38, +O38:SP:1544,1,"GAVET",45.067872,5.8716,0,0,O38:SA:CTP1544,Europe/Paris,,O38, +O38:SP:15440,1,"GRAVETAN",45.583183,4.982547,0,0,OIV:SA:CTP13834,Europe/Paris,,O38, +O38:SP:1545,1,"GAVET",45.067913,5.871517,0,0,O38:SA:CTP1544,Europe/Paris,,O38, +O38:SP:15450,1,"MONTCELET",45.428433,5.756488,0,0,O38:SA:CTP7965,Europe/Paris,,O38, +O38:SP:15451,1,"LES ANDRES",45.450817,5.767216,0,0,O38:SA:CTP7998,Europe/Paris,,O38, +O38:SP:15452,1,"CALATRIN",45.471094,5.547066,0,0,OVO:SA:CTP15255,Europe/Paris,,O38, +O38:SP:15453,1,"CALATRIN",45.470702,5.546577,0,0,OVO:SA:CTP15255,Europe/Paris,,O38, +O38:SP:15454,1,"ANCIENNE ECOLE",45.438454,5.771518,0,0,O38:SA:CTP15454,Europe/Paris,,O38, +O38:SP:15455,1,"ANCIENNE ECOLE",45.438391,5.771357,0,0,O38:SA:CTP15454,Europe/Paris,,O38, +O38:SP:15459,1,"LE BIROLLET",45.07124,5.315034,0,0,O38:SA:CTP1245,Europe/Paris,,O38, +O38:SP:1546,1,"LE PONT",45.027259,5.858113,0,0,O38:SA:CTP1546,Europe/Paris,,O38, +O38:SP:15460,1,"LES FLANDRES",45.58967,5.62916,0,0,O38:SA:CTP15460,Europe/Paris,,O38, +O38:SP:15461,1,"LES FLANDRES",45.589486,5.629369,0,0,O38:SA:CTP15460,Europe/Paris,,O38, +O38:SP:1547,1,"LE PONT",45.027072,5.858028,0,0,O38:SA:CTP1546,Europe/Paris,,O38, +O38:SP:15473,1,"LES ROCHES DE PAJAY",45.34761,5.101519,0,0,O38:SA:CTP5992,Europe/Paris,,O38, +O38:SP:15477,1,"LES CELESTES",45.524088,4.878152,0,0,O38:SA:CTP15477,Europe/Paris,,O38, +O38:SP:15478,1,"LES CELESTES",45.524396,4.877141,0,0,O38:SA:CTP15477,Europe/Paris,,O38, +O38:SP:15479,1,"COURS DE VERDUN",45.520103,4.870722,0,0,OIV:SA:CTP13942,Europe/Paris,,O38, +O38:SP:1548,1,"GAVET-ECOLE",45.069818,5.873229,0,0,O38:SA:CTP1548,Europe/Paris,,O38, +O38:SP:15480,1,"COURS DE VERDUN",45.519934,4.870531,0,0,OIV:SA:CTP13942,Europe/Paris,,O38, +O38:SP:1549,1,"GAVET-ECOLE",45.069779,5.873314,0,0,O38:SA:CTP1548,Europe/Paris,,O38, +O38:SP:15492,1,"MARIGNIEU RD",45.813053,5.299418,0,0,O38:SA:CTP15492,Europe/Paris,,O38, +O38:SP:15493,1,"MARIGNIEU RD",45.812234,5.298227,0,0,O38:SA:CTP15492,Europe/Paris,,O38, +O38:SP:15494,1,"LE SILO",45.38837,5.117468,0,0,O38:SA:CTP15494,Europe/Paris,,O38, +O38:SP:15495,1,"LE SILO",45.388464,5.117678,0,0,O38:SA:CTP15494,Europe/Paris,,O38, +O38:SP:15496,1,"ECOLES MAYETTE SEQUOIA",45.208963,5.406451,0,0,O38:SA:CTP15496,Europe/Paris,,O38, +O38:SP:15497,1,"ECOLES MAYETTE SEQUOIA",45.208918,5.406521,0,0,O38:SA:CTP15496,Europe/Paris,,O38, +O38:SP:1550,1,"VILLAGE",45.047899,5.977005,0,0,O38:SA:CTP1550,Europe/Paris,,O38, +O38:SP:15503,1,"ECOLE",45.753507,5.330739,0,0,O38:SA:CTP15503,Europe/Paris,,O38, +O38:SP:15504,1,"ECOLE",45.753324,5.330688,0,0,O38:SA:CTP15503,Europe/Paris,,O38, +O38:SP:15505,1,"CHEMIN DES CHARBONNIERES",45.665012,5.429187,0,0,O38:SA:CTP15505,Europe/Paris,,O38, +O38:SP:15506,1,"CHEMIN DES CHARBONNIERES",45.664928,5.429219,0,0,O38:SA:CTP15505,Europe/Paris,,O38, +O38:SP:15507,1,"PARKING RELAIS MANDRIN",45.342245,5.338299,0,0,O38:SA:CTP15507,Europe/Paris,,O38, +O38:SP:15508,1,"PARKING RELAIS MANDRIN",45.342002,5.338483,0,0,O38:SA:CTP15507,Europe/Paris,,O38, +O38:SP:1551,1,"VILLAGE",45.047993,5.976919,0,0,O38:SA:CTP1550,Europe/Paris,,O38, +O38:SP:1552,1,"LA POYAT",45.041382,5.977461,0,0,O38:SA:CTP1552,Europe/Paris,,O38, +O38:SP:15526,1,"GROUPE SCOLAIRE",45.572211,5.426426,0,0,O38:SA:CTP15526,Europe/Paris,,O38, +O38:SP:15527,1,"GROUPE SCOLAIRE",45.572241,5.426428,0,0,O38:SA:CTP15526,Europe/Paris,,O38, +O38:SP:1553,1,"LA POYAT",45.04136,5.977531,0,0,O38:SA:CTP1552,Europe/Paris,,O38, +O38:SP:1554,1,"PONT DES OULLES",45.0394,5.977939,0,0,O38:SA:CTP1554,Europe/Paris,,O38, +O38:SP:1555,1,"PONT DES OULLES",45.039325,5.978008,0,0,O38:SA:CTP1554,Europe/Paris,,O38, +O38:SP:1556,1,"LA GRENONIERE",45.051572,5.975036,0,0,O38:SA:CTP1556,Europe/Paris,,O38, +O38:SP:1557,1,"LA GRENONIERE",45.051456,5.97513,0,0,O38:SA:CTP1556,Europe/Paris,,O38, +O38:SP:1558,1,"LA PALLUD D'ORNON",45.051383,5.987828,0,0,O38:SA:CTP1558,Europe/Paris,,O38, +O38:SP:15587,1,"MARTYRS - RESISTANCE",45.207896,5.697087,0,0,O38:SA:CTP15587,Europe/Paris,,O38, +O38:SP:15588,1,"MARTYRS - RESISTANCE",45.20768,5.697218,0,0,O38:SA:CTP15587,Europe/Paris,,O38, +O38:SP:15589,1,"ROUTE DE ST GERVAIS",45.204374,5.471975,0,0,O38:SA:CTP15589,Europe/Paris,,O38, +O38:SP:1559,1,"LA PALLUD D'ORNON",45.051447,5.987865,0,0,O38:SA:CTP1558,Europe/Paris,,O38, +O38:SP:15590,1,"ROUTE DE ST GERVAIS",45.20446,5.471913,0,0,O38:SA:CTP15589,Europe/Paris,,O38, +O38:SP:15591,1,"LYCEE GALILEE",45.504145,4.854774,0,0,O38:SA:CTP15591,Europe/Paris,,O38, +O38:SP:15592,1,"LYCEE GALILEE",45.505018,4.855686,0,0,O38:SA:CTP15591,Europe/Paris,,O38, +O38:SP:15593,1,"CANTINE",45.098798,5.250692,0,0,O38:SA:CTP15593,Europe/Paris,,O38, +O38:SP:15594,1,"CANTINE",45.098742,5.2507,0,0,O38:SA:CTP15593,Europe/Paris,,O38, +O38:SP:15595,1,"MATERNELLE GARE",45.075142,5.247023,0,0,O38:SA:CTP15595,Europe/Paris,,O38, +O38:SP:15596,1,"MATERNELLE GARE",45.075042,5.247015,0,0,O38:SA:CTP15595,Europe/Paris,,O38, +O38:SP:15597,1,"PRIMAIRE GARE",45.07306,5.245492,0,0,O38:SA:CTP15597,Europe/Paris,,O38, +O38:SP:15598,1,"PRIMAIRE GARE",45.073064,5.245551,0,0,O38:SA:CTP15597,Europe/Paris,,O38, +O38:SP:15599,1,"PRIMAIRE VILLAGE",45.100491,5.247768,0,0,O38:SA:CTP15599,Europe/Paris,,O38, +O38:SP:1560,1,"LE RIVIER",45.029294,5.974012,0,0,O38:SA:CTP1560,Europe/Paris,,O38, +O38:SP:15600,1,"PRIMAIRE VILLAGE",45.10048,5.247833,0,0,O38:SA:CTP15599,Europe/Paris,,O38, +O38:SP:15601,1,"LES HAUTS DE ST ROCH",45.576618,5.443523,0,0,O38:SA:CTP15601,Europe/Paris,,O38, +O38:SP:15602,1,"LES HAUTS DE ST ROCH",45.576615,5.443475,0,0,O38:SA:CTP15601,Europe/Paris,,O38, +O38:SP:15603,1,"LES PRES DE ST ROCH",45.573157,5.435912,0,0,O38:SA:CTP15603,Europe/Paris,,O38, +O38:SP:15604,1,"LES PRES DE ST ROCH",45.573151,5.435716,0,0,O38:SA:CTP15603,Europe/Paris,,O38, +O38:SP:15605,1,"ECOLE",45.718529,5.294785,0,0,O38:SA:CTP15605,Europe/Paris,,O38, +O38:SP:15606,1,"ECOLE",45.718567,5.294818,0,0,O38:SA:CTP15605,Europe/Paris,,O38, +O38:SP:15607,1,"ROUTE DE GIVORS",45.649632,4.985159,0,0,DGL:SA:S34363,Europe/Paris,,O38, +O38:SP:15608,1,"ROUTE DE GIVORS",45.649606,4.984942,0,0,DGL:SA:S34363,Europe/Paris,,O38, +O38:SP:1561,1,"LE RIVIER",45.029187,5.974041,0,0,O38:SA:CTP1560,Europe/Paris,,O38, +O38:SP:1562,1,"LA POUTHUIRE",45.037543,5.976801,0,0,O38:SA:CTP1562,Europe/Paris,,O38, +O38:SP:1563,1,"LA POUTHUIRE",45.037596,5.976742,0,0,O38:SA:CTP1562,Europe/Paris,,O38, +O38:SP:1564,1,"LE VERT",45.039435,6.040195,0,0,O38:SA:CTP1564,Europe/Paris,,O38, +O38:SP:1565,1,"LE VERT",45.03942,6.040097,0,0,O38:SA:CTP1564,Europe/Paris,,O38, +O38:SP:1568,1,"LA RIVE",45.042074,6.042678,0,0,O38:SA:CTP1568,Europe/Paris,,O38, +O38:SP:1569,1,"LA RIVE",45.042082,6.042578,0,0,O38:SA:CTP1568,Europe/Paris,,O38, +O38:SP:1571,1,"PAGANON",45.090364,6.065419,0,0,O38:SA:CTP1571,Europe/Paris,,O38, +O38:SP:1573,1,"PAGANON",45.090467,6.064976,0,0,O38:SA:CTP1571,Europe/Paris,,O38, +O38:SP:1576,1,"ECOLE PRIMAIRE CENTRE",45.052564,6.029509,0,0,O38:SA:CTP1576,Europe/Paris,,O38, +O38:SP:1577,1,"ECOLE PRIMAIRE CENTRE",45.052546,6.029411,0,0,O38:SA:CTP1576,Europe/Paris,,O38, +O38:SP:15780,1,"AVENUE DE LA GARE",45.300927,5.489862,0,0,O38:SA:CTP15780,Europe/Paris,,O38, +O38:SP:15781,1,"AVENUE DE LA GARE",45.30103,5.49053,0,0,O38:SA:CTP15780,Europe/Paris,,O38, +O38:SP:1580,1,"MATERNELLE LA FARE",45.052196,6.029533,0,0,O38:SA:CTP1580,Europe/Paris,,O38, +O38:SP:1581,1,"MATERNELLE LA FARE",45.052252,6.029605,0,0,O38:SA:CTP1580,Europe/Paris,,O38, +O38:SP:1582,1,"OFFICE DE TOURISME",45.054771,6.031556,0,0,O38:SA:CTP1582,Europe/Paris,,O38, +O38:SP:1583,1,"OFFICE DE TOURISME",45.054847,6.031602,0,0,O38:SA:CTP1582,Europe/Paris,,O38, +O38:SP:1584,1,"LE COUARD",45.045899,6.047209,0,0,O38:SA:CTP1584,Europe/Paris,,O38, +O38:SP:1585,1,"LE COUARD",45.046016,6.047252,0,0,O38:SA:CTP1584,Europe/Paris,,O38, +O38:SP:1586,1,"SARENNES-LA BERGERIE",45.063767,6.038398,0,0,O38:SA:CTP1586,Europe/Paris,,O38, +O38:SP:1587,1,"SARENNES-LA BERGERIE",45.063793,6.038288,0,0,O38:SA:CTP1586,Europe/Paris,,O38, +O38:SP:1588,1,"COLLEGE LES 6 VALLEES",45.056552,6.025939,0,0,O38:SA:CTP1588,Europe/Paris,,O38, +O38:SP:1589,1,"COLLEGE LES 6 VALLEES",45.056581,6.026006,0,0,O38:SA:CTP1588,Europe/Paris,,O38, +O38:SP:1590,1,"LE VERNIS",45.048852,6.051175,0,0,O38:SA:CTP1590,Europe/Paris,,O38, +O38:SP:15906,1,"LE LOING",44.837156,5.779332,0,0,O38:SA:CTP15906,Europe/Paris,,O38, +O38:SP:15907,1,"LE LOING",44.837179,5.779256,0,0,O38:SA:CTP15906,Europe/Paris,,O38, +O38:SP:15908,1,"CHATEAU BAS POSTE",44.743505,5.749962,0,0,O38:SA:CTP15908,Europe/Paris,,O38, +O38:SP:15909,1,"CHATEAU BAS POSTE",44.743675,5.749736,0,0,O38:SA:CTP15908,Europe/Paris,,O38, +O38:SP:1591,1,"LE VERNIS",45.048796,6.051113,0,0,O38:SA:CTP1590,Europe/Paris,,O38, +O38:SP:15910,1,"VILLAGE POINT PROPRE",45.203301,5.217246,0,0,O38:SA:CTP15910,Europe/Paris,,O38, +O38:SP:15911,1,"VILLAGE POINT PROPRE",45.203279,5.217339,0,0,O38:SA:CTP15910,Europe/Paris,,O38, +O38:SP:15912,1,"MAIRIE",44.961294,5.553387,0,0,O38:SA:CTP15912,Europe/Paris,,O38, +O38:SP:15913,1,"MAIRIE",44.961239,5.553321,0,0,O38:SA:CTP15912,Europe/Paris,,O38, +O38:SP:15914,1,"HOTEL DE VILLE-CHANRION",45.187979,5.738417,0,0,O38:SA:CTP15914,Europe/Paris,,O38, +O38:SP:15915,1,"HOTEL DE VILLE-CHANRION",45.188149,5.737851,0,0,O38:SA:CTP15914,Europe/Paris,,O38, +O38:SP:15916,1,"LES BRUYERES",45.756977,5.154476,0,0,O38:SA:CTP11661,Europe/Paris,,O38, +O38:SP:1592,1,"LA MORLIERE",45.062175,6.025496,0,0,O38:SA:CTP1592,Europe/Paris,,O38, +O38:SP:1593,1,"LA MORLIERE",45.062212,6.025584,0,0,O38:SA:CTP1592,Europe/Paris,,O38, +O38:SP:15937,1,"LES PAILLERES",45.343269,5.045742,0,0,O38:SA:CTP15937,Europe/Paris,,O38, +O38:SP:15938,1,"LES PAILLERES",45.343515,5.045366,0,0,O38:SA:CTP15937,Europe/Paris,,O38, +O38:SP:15942,1,"IMPASSE DU PETIT MOULIN",44.926296,5.637379,0,0,O38:SA:CTP15942,Europe/Paris,,O38, +O38:SP:15943,1,"DURAND SAVOYAT",45.199376,5.712851,0,0,O38:SA:CTP15943,Europe/Paris,,O38, +O38:SP:15944,1,"DURAND SAVOYAT",45.19942,5.713416,0,0,O38:SA:CTP15943,Europe/Paris,,O38, +O38:SP:15945,1,"SOUS CUMANE",45.140352,5.334381,0,0,O38:SA:CTP15945,Europe/Paris,,O38, +O38:SP:15946,1,"SOUS CUMANE",45.140382,5.334504,0,0,O38:SA:CTP15945,Europe/Paris,,O38, +O38:SP:15947,1,"LA CHAPELANIERE",45.551299,4.936096,0,0,O38:SA:CTP15947,Europe/Paris,,O38, +O38:SP:15948,1,"LA CHAPELANIERE",45.551342,4.936402,0,0,O38:SA:CTP15947,Europe/Paris,,O38, +O38:SP:15951,1,"BONNETON",45.084497,5.579153,0,0,O38:SA:CTP15951,Europe/Paris,,O38, +O38:SP:15952,1,"BONNETON",45.084731,5.579083,0,0,O38:SA:CTP15951,Europe/Paris,,O38, +O38:SP:15953,1,"CHENEVARIE",44.970956,5.558652,0,0,O38:SA:CTP15953,Europe/Paris,,O38, +O38:SP:15954,1,"CHENEVARIE",44.970917,5.55867,0,0,O38:SA:CTP15953,Europe/Paris,,O38, +O38:SP:15955,1,"LA COMBE",44.969651,5.555321,0,0,O38:SA:CTP15955,Europe/Paris,,O38, +O38:SP:15956,1,"LA COMBE",44.969726,5.555488,0,0,O38:SA:CTP15955,Europe/Paris,,O38, +O38:SP:15957,1,"MASETEYRE CHATEAU",44.973508,5.569696,0,0,O38:SA:CTP15957,Europe/Paris,,O38, +O38:SP:15958,1,"MASETEYRE CHATEAU",44.973474,5.569785,0,0,O38:SA:CTP15957,Europe/Paris,,O38, +O38:SP:15959,1,"PONTEIL",44.973223,5.560818,0,0,O38:SA:CTP15959,Europe/Paris,,O38, +O38:SP:15960,1,"PONTEIL",44.973182,5.560857,0,0,O38:SA:CTP15959,Europe/Paris,,O38, +O38:SP:15961,1,"BOUCHIER",44.959709,5.561466,0,0,O38:SA:CTP15961,Europe/Paris,,O38, +O38:SP:15962,1,"BOUCHIER",44.959575,5.561306,0,0,O38:SA:CTP15961,Europe/Paris,,O38, +O38:SP:15963,1,"CHAPELLE ST ROCH",45.219459,5.495158,0,0,O38:SA:CTP15963,Europe/Paris,,O38, +O38:SP:15964,1,"CHAPELLE ST ROCH",45.219489,5.495192,0,0,O38:SA:CTP15963,Europe/Paris,,O38, +O38:SP:15965,1,"TEISSEIRE",45.272327,5.887553,0,0,O38:SA:CTP15965,Europe/Paris,,O38, +O38:SP:15966,1,"TEISSEIRE",45.272312,5.886886,0,0,O38:SA:CTP15965,Europe/Paris,,O38, +O38:SP:15967,1,"VERDUN-PREFECTURE",45.188328,5.731519,0,0,O38:SA:CTP3240,Europe/Paris,,O38, +O38:SP:15968,1,"LE PERRIER",45.151519,6.065156,0,0,O38:SA:CTP15968,Europe/Paris,,O38, +O38:SP:15969,1,"LE PERRIER",45.152141,6.063313,0,0,O38:SA:CTP15968,Europe/Paris,,O38, +O38:SP:15971,1,"SALLE DES FETES",45.146634,5.376335,0,0,O38:SA:CTP15971,Europe/Paris,,O38, +O38:SP:15972,1,"SALLE DES FETES",45.146635,5.376198,0,0,O38:SA:CTP15971,Europe/Paris,,O38, +O38:SP:15973,1,"LES ARNAUDS",45.207551,5.849187,0,0,O38:SA:CTP15973,Europe/Paris,,O38, +O38:SP:15974,1,"LES ARNAUDS",45.20743,5.849224,0,0,O38:SA:CTP15973,Europe/Paris,,O38, +O38:SP:1598,1,"LE PARADIS",45.046382,6.038291,0,0,O38:SA:CTP1598,Europe/Paris,,O38, +O38:SP:1599,1,"LE PARADIS",45.046308,6.038339,0,0,O38:SA:CTP1598,Europe/Paris,,O38, +O38:SP:15993,1,"SECURITE SOCIALE",45.560819,5.454618,0,0,O38:SA:CTP10207,Europe/Paris,,O38, +O38:SP:16013,1,"CHEMIN DE LA ROCHE",45.090075,5.341726,0,0,O38:SA:CTP16013,Europe/Paris,,O38, +O38:SP:16014,1,"CHEMIN DE LA ROCHE",45.090091,5.341646,0,0,O38:SA:CTP16013,Europe/Paris,,O38, +O38:SP:1602,1,"LES CROISETTES",45.057852,6.039766,0,0,O38:SA:CTP1602,Europe/Paris,,O38, +O38:SP:16028,1,"LE MOLLARD LE BAS",44.960232,5.717174,0,0,O38:SA:CTP16028,Europe/Paris,,O38, +O38:SP:16029,1,"LE MOLLARD LE BAS",44.960156,5.717187,0,0,O38:SA:CTP16028,Europe/Paris,,O38, +O38:SP:1603,1,"LES CROISETTES",45.057606,6.039766,0,0,O38:SA:CTP1602,Europe/Paris,,O38, +O38:SP:1604,1,"CHAMPROND",45.047437,6.122781,0,0,O38:SA:CTP1604,Europe/Paris,,O38, +O38:SP:1605,1,"CHAMPROND",45.047417,6.122794,0,0,O38:SA:CTP1604,Europe/Paris,,O38, +O38:SP:16058,1,"CONSUOZ LOTISSEMENT",45.457158,5.620031,0,0,OVO:SA:CTP14685,Europe/Paris,,O38, +O38:SP:16059,1,"CONSUOZ LOTISSEMENT",45.457151,5.619888,0,0,OVO:SA:CTP14685,Europe/Paris,,O38, +O38:SP:1606,1,"LE CLAPIER",45.029004,6.071102,0,0,O38:SA:CTP1606,Europe/Paris,,O38, +O38:SP:1607,1,"LE CLAPIER",45.029021,6.07095,0,0,O38:SA:CTP1606,Europe/Paris,,O38, +O38:SP:16075,1,"CONSUOZ ABRIBUS",45.452093,5.611056,0,0,OVO:SA:CTP14684,Europe/Paris,,O38, +O38:SP:16076,1,"CONSUOZ ABRIBUS",45.451999,5.611114,0,0,OVO:SA:CTP14684,Europe/Paris,,O38, +O38:SP:16077,1,"HAMEAU LA RIVIERE",45.085539,5.210143,0,0,O38:SA:CTP16077,Europe/Paris,,O38, +O38:SP:1608,1,"LES COURS",45.050693,6.083363,0,0,O38:SA:CTP1608,Europe/Paris,,O38, +O38:SP:1609,1,"LES COURS",45.050621,6.083358,0,0,O38:SA:CTP1608,Europe/Paris,,O38, +O38:SP:16090,1,"CHAMP DE FOIRE",44.682813,6.077344,0,0,O38:SA:CTP16090,Europe/Paris,,O38, +O38:SP:16091,1,"BEAU SITE",45.113927,5.70566,0,0,O38:SA:CTP16091,Europe/Paris,,O38, +O38:SP:16092,1,"BEAU SITE",45.115128,5.704929,0,0,O38:SA:CTP16091,Europe/Paris,,O38, +O38:SP:1611,1,"BONS",45.035111,6.115058,0,0,O38:SA:CTP1611,Europe/Paris,,O38, +O38:SP:16124,1,"LA FOURCHAT",45.31113,5.385161,0,0,O38:SA:CTP16124,Europe/Paris,,O38, +O38:SP:16125,1,"LA FOURCHAT",45.311089,5.385121,0,0,O38:SA:CTP16124,Europe/Paris,,O38, +O38:SP:1613,1,"BONS",45.03518,6.115102,0,0,O38:SA:CTP1611,Europe/Paris,,O38, +O38:SP:1614,1,"LE PUY",45.046608,6.115199,0,0,O38:SA:CTP1614,Europe/Paris,,O38, +O38:SP:1615,1,"LE PUY",45.046603,6.115221,0,0,O38:SA:CTP1614,Europe/Paris,,O38, +O38:SP:1619,1,"OFFICE DE TOURISME",45.055857,6.077529,0,0,O38:SA:CTP1619,Europe/Paris,,O38, +O38:SP:1621,1,"OFFICE DE TOURISME",45.055833,6.077515,0,0,O38:SA:CTP1619,Europe/Paris,,O38, +O38:SP:1622,1,"LES CHATAINS",45.046609,6.09237,0,0,O38:SA:CTP1622,Europe/Paris,,O38, +O38:SP:1623,1,"LES CHATAINS",45.04671,6.092324,0,0,O38:SA:CTP1622,Europe/Paris,,O38, +O38:SP:1624,1,"LE CERT",45.040592,6.079904,0,0,O38:SA:CTP1624,Europe/Paris,,O38, +O38:SP:1625,1,"LA BALME",45.037129,6.081024,0,0,O38:SA:CTP1625,Europe/Paris,,O38, +O38:SP:1626,1,"LA RIVOIRE",45.032455,6.089347,0,0,O38:SA:CTP1626,Europe/Paris,,O38, +O38:SP:1627,1,"LA RIVOIRE",45.032438,6.089679,0,0,O38:SA:CTP1626,Europe/Paris,,O38, +O38:SP:1628,1,"LE GARCIN",45.036347,6.093153,0,0,O38:SA:CTP1628,Europe/Paris,,O38, +O38:SP:1629,1,"LE GARCIN",45.036172,6.093373,0,0,O38:SA:CTP1628,Europe/Paris,,O38, +O38:SP:1631,1,"LE VILLAGE",45.043315,6.124521,0,0,O38:SA:CTP1631,Europe/Paris,,O38, +O38:SP:1633,1,"LE VILLAGE",45.043303,6.124328,0,0,O38:SA:CTP1631,Europe/Paris,,O38, +O38:SP:1634,1,"L'EGLISE",45.046092,6.120699,0,0,O38:SA:CTP1634,Europe/Paris,,O38, +O38:SP:1635,1,"L'EGLISE",45.046104,6.120799,0,0,O38:SA:CTP1634,Europe/Paris,,O38, +O38:SP:1641,1,"MONT DE LANS VILLAGE",45.036344,6.132066,0,0,ONL:SA:CTP1638,Europe/Paris,,O38, +O38:SP:1642,1,"BARRAGE DU CHAMBON",45.044902,6.136234,0,0,O38:SA:CTP1642,Europe/Paris,,O38, +O38:SP:1643,1,"BARRAGE DU CHAMBON",45.044553,6.135996,0,0,O38:SA:CTP1642,Europe/Paris,,O38, +O38:SP:1645,1,"STATION - POINT INFO",45.01755,6.124786,0,0,O38:SA:CTP1645,Europe/Paris,,O38, +O38:SP:1647,1,"STATION - POINT INFO",45.017882,6.124865,0,0,O38:SA:CTP1645,Europe/Paris,,O38, +O38:SP:1650,1,"LES CHAZEAUX",45.047804,6.125358,0,0,O38:SA:CTP1650,Europe/Paris,,O38, +O38:SP:1651,1,"LES CHAZEAUX",45.047737,6.125391,0,0,O38:SA:CTP1650,Europe/Paris,,O38, +O38:SP:1652,1,"MIZOEN",45.049937,6.142482,0,0,O38:SA:CTP1652,Europe/Paris,,O38, +O38:SP:1653,1,"MIZOEN",45.049872,6.142528,0,0,O38:SA:CTP1652,Europe/Paris,,O38, +O38:SP:1654,1,"STATION - EQUIPEMENT",45.02009,6.123438,0,0,O38:SA:CTP1654,Europe/Paris,,O38, +O38:SP:1655,1,"STATION - EQUIPEMENT",45.020203,6.123585,0,0,O38:SA:CTP1654,Europe/Paris,,O38, +O38:SP:1656,1,"LES PINETS",45.09224,5.189804,0,0,O38:SA:CTP1656,Europe/Paris,,O38, +O38:SP:1657,1,"LES PINETS",45.092222,5.189705,0,0,O38:SA:CTP1656,Europe/Paris,,O38, +O38:SP:1658,1,"MONTENA LA CROIX",45.105448,5.187155,0,0,O38:SA:CTP1658,Europe/Paris,,O38, +O38:SP:1659,1,"MONTENA LA CROIX",45.105462,5.187055,0,0,O38:SA:CTP1658,Europe/Paris,,O38, +O38:SP:1660,1,"LE POING",45.094021,5.188985,0,0,O38:SA:CTP1660,Europe/Paris,,O38, +O38:SP:1661,1,"LE POING",45.093991,5.188893,0,0,O38:SA:CTP1660,Europe/Paris,,O38, +O38:SP:1662,1,"CARREFOUR ROMEYERE",45.116168,5.194337,0,0,O38:SA:CTP1662,Europe/Paris,,O38, +O38:SP:1663,1,"LES TERROTS",45.098338,5.184593,0,0,O38:SA:CTP1663,Europe/Paris,,O38, +O38:SP:1664,1,"LES TERROTS",45.098307,5.184501,0,0,O38:SA:CTP1663,Europe/Paris,,O38, +O38:SP:1665,1,"LES MURONNIERES",45.119649,5.196265,0,0,O38:SA:CTP1665,Europe/Paris,,O38, +O38:SP:1666,1,"LES MURONNIERES",45.119616,5.196355,0,0,O38:SA:CTP1665,Europe/Paris,,O38, +O38:SP:1667,1,"HAMEAU MAGUIERE",45.109308,5.188079,0,0,O38:SA:CTP1667,Europe/Paris,,O38, +O38:SP:1668,1,"GRD CHAMP(CLAPET)",45.130353,5.211402,0,0,O38:SA:CTP1668,Europe/Paris,,O38, +O38:SP:1669,1,"BOIS ROUSSET",45.126229,5.202135,0,0,O38:SA:CTP1669,Europe/Paris,,O38, +O38:SP:1670,1,"CAR.MONTLOUBET",45.137154,5.261454,0,0,O38:SA:CTP1670,Europe/Paris,,O38, +O38:SP:1671,1,"CAR.MONTLOUBET",45.137115,5.261369,0,0,O38:SA:CTP1670,Europe/Paris,,O38, +O38:SP:1672,1,"BOURG",45.125659,5.231008,0,0,O38:SA:CTP1672,Europe/Paris,,O38, +O38:SP:1673,1,"BOURG",45.125639,5.230911,0,0,O38:SA:CTP1672,Europe/Paris,,O38, +O38:SP:1674,1,"FERME ROZAND",45.099546,5.256105,0,0,O38:SA:CTP1674,Europe/Paris,,O38, +O38:SP:1675,1,"FERME ROZAND",45.099584,5.25602,0,0,O38:SA:CTP1674,Europe/Paris,,O38, +O38:SP:1676,1,"LES THOMASSONS",45.133126,5.247363,0,0,O38:SA:CTP1676,Europe/Paris,,O38, +O38:SP:1677,1,"LES THOMASSONS",45.133061,5.247322,0,0,O38:SA:CTP1676,Europe/Paris,,O38, +O38:SP:1678,1,"GRANDE GRANGE",45.119684,5.240915,0,0,O38:SA:CTP1678,Europe/Paris,,O38, +O38:SP:1679,1,"GRANDE GRANGE",45.119671,5.241016,0,0,O38:SA:CTP1678,Europe/Paris,,O38, +O38:SP:1680,1,"LES CARRES",45.116135,5.239837,0,0,O38:SA:CTP1680,Europe/Paris,,O38, +O38:SP:1681,1,"LES CARRES",45.11616,5.239742,0,0,O38:SA:CTP1680,Europe/Paris,,O38, +O38:SP:1682,1,"ECOLE",45.125551,5.23105,0,0,O38:SA:CTP1682,Europe/Paris,,O38, +O38:SP:1683,1,"ECOLE",45.12554,5.230966,0,0,O38:SA:CTP1682,Europe/Paris,,O38, +O38:SP:1684,1,"LES ROBERTS-CROIX",45.114237,5.22609,0,0,O38:SA:CTP1684,Europe/Paris,,O38, +O38:SP:1685,1,"LES ROBERTS-CROIX",45.114307,5.22611,0,0,O38:SA:CTP1684,Europe/Paris,,O38, +O38:SP:1686,1,"LA PLAINE D21",45.090161,5.250939,0,0,O38:SA:CTP1686,Europe/Paris,,O38, +O38:SP:1687,1,"LA PLAINE D21",45.089634,5.250918,0,0,O38:SA:CTP1686,Europe/Paris,,O38, +O38:SP:1688,1,"LE PERRIER",45.092978,5.226845,0,0,O38:SA:CTP1688,Europe/Paris,,O38, +O38:SP:1689,1,"LE PERRIER",45.092818,5.226155,0,0,O38:SA:CTP1688,Europe/Paris,,O38, +O38:SP:1690,1,"LE VILLAGE",45.100812,5.247251,0,0,O38:SA:CTP1690,Europe/Paris,,O38, +O38:SP:1691,1,"LE VILLAGE",45.100586,5.246843,0,0,O38:SA:CTP1690,Europe/Paris,,O38, +O38:SP:1692,1,"CAR.LE MOULIN",45.110509,5.211477,0,0,O38:SA:CTP1692,Europe/Paris,,O38, +O38:SP:1693,1,"CAR.LE MOULIN",45.110439,5.211498,0,0,O38:SA:CTP1692,Europe/Paris,,O38, +O38:SP:1694,1,"LA PLAINE",45.127987,5.240408,0,0,O38:SA:CTP1694,Europe/Paris,,O38, +O38:SP:1695,1,"LES SABLES",45.131133,5.232428,0,0,O38:SA:CTP1695,Europe/Paris,,O38, +O38:SP:1696,1,"LES TERRAS",45.114764,5.218333,0,0,O38:SA:CTP1696,Europe/Paris,,O38, +O38:SP:1697,1,"LES TERRAS",45.114769,5.218347,0,0,O38:SA:CTP1696,Europe/Paris,,O38, +O38:SP:1698,1,"LE PILON-LE MAS",45.118212,5.217337,0,0,O38:SA:CTP1698,Europe/Paris,,O38, +O38:SP:1699,1,"LE PILON-LE MAS",45.118213,5.217322,0,0,O38:SA:CTP1698,Europe/Paris,,O38, +O38:SP:1700,1,"LE FAYET",45.096725,5.220268,0,0,O38:SA:CTP1700,Europe/Paris,,O38, +O38:SP:1701,1,"LE FAYET",45.096686,5.220306,0,0,O38:SA:CTP1700,Europe/Paris,,O38, +O38:SP:1702,1,"LE GRAND FAYET",45.099924,5.223603,0,0,O38:SA:CTP1702,Europe/Paris,,O38, +O38:SP:1703,1,"LE GRAND FAYET",45.099855,5.223631,0,0,O38:SA:CTP1702,Europe/Paris,,O38, +O38:SP:1704,1,"LE POUYET",45.110895,5.200827,0,0,O38:SA:CTP1704,Europe/Paris,,O38, +O38:SP:1705,1,"LE POUYET",45.110929,5.201021,0,0,O38:SA:CTP1704,Europe/Paris,,O38, +O38:SP:1706,1,"LES SABLIERES",45.106521,5.209939,0,0,O38:SA:CTP1706,Europe/Paris,,O38, +O38:SP:1707,1,"GARAGE FLANDRIN",45.098001,5.239862,0,0,O38:SA:CTP1707,Europe/Paris,,O38, +O38:SP:1708,1,"GARAGE FLANDRIN",45.09806,5.240195,0,0,O38:SA:CTP1707,Europe/Paris,,O38, +O38:SP:1709,1,"LE PLUMET",45.134534,5.216977,0,0,O38:SA:CTP1709,Europe/Paris,,O38, +O38:SP:1710,1,"LE PLUMET",45.134519,5.217076,0,0,O38:SA:CTP1709,Europe/Paris,,O38, +O38:SP:1711,1,"LE SILO",45.105109,5.258589,0,0,O38:SA:CTP1711,Europe/Paris,,O38, +O38:SP:1712,1,"LE SILO",45.105111,5.258574,0,0,O38:SA:CTP1711,Europe/Paris,,O38, +O38:SP:1713,1,"TREMOLE",45.125345,5.217422,0,0,O38:SA:CTP1713,Europe/Paris,,O38, +O38:SP:1714,1,"TREMOLE",45.125342,5.217523,0,0,O38:SA:CTP1713,Europe/Paris,,O38, +O38:SP:1715,1,"LE DONGER",45.128277,5.255552,0,0,O38:SA:CTP1715,Europe/Paris,,O38, +O38:SP:1716,1,"LE DONGER",45.128308,5.255443,0,0,O38:SA:CTP1715,Europe/Paris,,O38, +O38:SP:1717,1,"BAS GERVAN",45.12745,5.310105,0,0,O38:SA:CTP1717,Europe/Paris,,O38, +O38:SP:1718,1,"BAS GERVAN",45.127391,5.310165,0,0,O38:SA:CTP1717,Europe/Paris,,O38, +O38:SP:1719,1,"COTE GALET FORAS",45.137076,5.271549,0,0,O38:SA:CTP1719,Europe/Paris,,O38, +O38:SP:1720,1,"BEAUVOIR-BARRAGE",45.123832,5.321744,0,0,O38:SA:CTP1720,Europe/Paris,,O38, +O38:SP:1722,1,"GRALERE",45.134894,5.303678,0,0,O38:SA:CTP1722,Europe/Paris,,O38, +O38:SP:1723,1,"GRALERE",45.13484,5.303744,0,0,O38:SA:CTP1722,Europe/Paris,,O38, +O38:SP:1724,1,"CHAMP RAILLET",45.124872,5.276153,0,0,O38:SA:CTP1724,Europe/Paris,,O38, +O38:SP:1725,1,"CHAMP RAILLET",45.124857,5.276148,0,0,O38:SA:CTP1724,Europe/Paris,,O38, +O38:SP:1726,1,"LA CROISEE DE ST-JUST",45.08988,5.299291,0,0,O38:SA:CTP1726,Europe/Paris,,O38, +O38:SP:1727,1,"LA CROISEE DE ST-JUST",45.090278,5.298382,0,0,O38:SA:CTP1726,Europe/Paris,,O38, +O38:SP:1728,1,"LES SAGNES",45.094495,5.288384,0,0,O38:SA:CTP1728,Europe/Paris,,O38, +O38:SP:1729,1,"LES SAGNES",45.09443,5.288342,0,0,O38:SA:CTP1728,Europe/Paris,,O38, +O38:SP:1730,1,"CAR.BERTIQUIERE",45.125016,5.30555,0,0,O38:SA:CTP1730,Europe/Paris,,O38, +O38:SP:1732,1,"AVANT CARREF.SEILLERE",45.135364,5.309552,0,0,O38:SA:CTP1732,Europe/Paris,,O38, +O38:SP:1733,1,"AVANT CARREF.SEILLERE",45.135418,5.309618,0,0,O38:SA:CTP1732,Europe/Paris,,O38, +O38:SP:1735,1,"PLAINE DE GERVAN",45.133068,5.313936,0,0,O38:SA:CTP1735,Europe/Paris,,O38, +O38:SP:1736,1,"MONTMARTEL",45.128629,5.268002,0,0,O38:SA:CTP1736,Europe/Paris,,O38, +O38:SP:1738,1,"FORAS",45.136846,5.268863,0,0,O38:SA:CTP1738,Europe/Paris,,O38, +O38:SP:1739,1,"FORAS",45.136777,5.268893,0,0,O38:SA:CTP1738,Europe/Paris,,O38, +O38:SP:1740,1,"LES CIGALES-(GRALERE)",45.135599,5.29933,0,0,O38:SA:CTP1740,Europe/Paris,,O38, +O38:SP:1741,1,"LES CIGALES-(GRALERE)",45.135552,5.299252,0,0,O38:SA:CTP1740,Europe/Paris,,O38, +O38:SP:1742,1,"CARREF. L'ALLIERE",45.107625,5.268584,0,0,O38:SA:CTP1742,Europe/Paris,,O38, +O38:SP:1743,1,"CARREF. L'ALLIERE",45.107696,5.268605,0,0,O38:SA:CTP1742,Europe/Paris,,O38, +O38:SP:1744,1,"AU MATRERE",45.108145,5.270019,0,0,O38:SA:CTP1744,Europe/Paris,,O38, +O38:SP:1745,1,"AU MATRERE",45.10821,5.269977,0,0,O38:SA:CTP1744,Europe/Paris,,O38, +O38:SP:1746,1,"BOURG",45.111851,5.27903,0,0,O38:SA:CTP1746,Europe/Paris,,O38, +O38:SP:1747,1,"BOURG",45.111754,5.278767,0,0,O38:SA:CTP1746,Europe/Paris,,O38, +O38:SP:1748,1,"LA FERME BLANCHE",45.121743,5.284987,0,0,O38:SA:CTP1748,Europe/Paris,,O38, +O38:SP:1750,1,"LE SIBERT",45.097764,5.269397,0,0,O38:SA:CTP1750,Europe/Paris,,O38, +O38:SP:1751,1,"LE SIBERT",45.097762,5.269499,0,0,O38:SA:CTP1750,Europe/Paris,,O38, +O38:SP:1752,1,"L'IMAGE",45.112257,5.263599,0,0,O38:SA:CTP1752,Europe/Paris,,O38, +O38:SP:1753,1,"L'IMAGE",45.112431,5.263747,0,0,O38:SA:CTP1752,Europe/Paris,,O38, +O38:SP:1754,1,"LA GARE",45.124226,5.280057,0,0,O38:SA:CTP1754,Europe/Paris,,O38, +O38:SP:1755,1,"LA GARE",45.12436,5.279998,0,0,O38:SA:CTP1754,Europe/Paris,,O38, +O38:SP:1756,1,"LA SEREE",45.110839,5.274838,0,0,O38:SA:CTP1756,Europe/Paris,,O38, +O38:SP:1757,1,"LA SEREE",45.110809,5.274929,0,0,O38:SA:CTP1756,Europe/Paris,,O38, +O38:SP:1758,1,"LE VILLAGE",45.114799,5.327264,0,0,O38:SA:CTP1758,Europe/Paris,,O38, +O38:SP:1759,1,"LE VILLAGE",45.114855,5.327189,0,0,O38:SA:CTP1758,Europe/Paris,,O38, +O38:SP:1760,1,"LA CROIX DE L'IMAGE",45.116206,5.268934,0,0,O38:SA:CTP1760,Europe/Paris,,O38, +O38:SP:1761,1,"LA CROIX DE L'IMAGE",45.116013,5.268788,0,0,O38:SA:CTP1760,Europe/Paris,,O38, +O38:SP:1762,1,"CALAIS",45.104548,5.313373,0,0,O38:SA:CTP1762,Europe/Paris,,O38, +O38:SP:1763,1,"CALAIS",45.104217,5.313182,0,0,O38:SA:CTP1762,Europe/Paris,,O38, +O38:SP:1764,1,"LE BOIS DE CLAIX D71",45.108212,5.278743,0,0,O38:SA:CTP1764,Europe/Paris,,O38, +O38:SP:1765,1,"LE BOIS DE CLAIX D71",45.108128,5.278732,0,0,O38:SA:CTP1764,Europe/Paris,,O38, +O38:SP:1766,1,"CROISEE ST-JUST",45.090537,5.299246,0,0,O38:SA:CTP1766,Europe/Paris,,O38, +O38:SP:1767,1,"CROISEE ST-JUST",45.090456,5.299377,0,0,O38:SA:CTP1766,Europe/Paris,,O38, +O38:SP:1768,1,"LA CROISEE",45.128125,5.285443,0,0,O38:SA:CTP1768,Europe/Paris,,O38, +O38:SP:1769,1,"LA CROISEE",45.128175,5.285371,0,0,O38:SA:CTP1768,Europe/Paris,,O38, +O38:SP:1770,1,"LES CONDAMINES",45.112623,5.321519,0,0,O38:SA:CTP1770,Europe/Paris,,O38, +O38:SP:1771,1,"LES CONDAMINES",45.112614,5.321701,0,0,O38:SA:CTP1770,Europe/Paris,,O38, +O38:SP:1772,1,"PROPRIETE VIENNOISE",45.101829,5.280303,0,0,O38:SA:CTP1772,Europe/Paris,,O38, +O38:SP:1773,1,"PROPRIETE VIENNOISE",45.101661,5.280364,0,0,O38:SA:CTP1772,Europe/Paris,,O38, +O38:SP:1774,1,"LES SAGNES",45.091078,5.296558,0,0,O38:SA:CTP1774,Europe/Paris,,O38, +O38:SP:1775,1,"LES SAGNES",45.091023,5.296505,0,0,O38:SA:CTP1774,Europe/Paris,,O38, +O38:SP:1776,1,"BARRAGE DE BEAUVOIR",45.124194,5.323365,0,0,O38:SA:CTP1776,Europe/Paris,,O38, +O38:SP:1778,1,"4 ROUTES",45.116735,5.32683,0,0,O38:SA:CTP1778,Europe/Paris,,O38, +O38:SP:1779,1,"4 ROUTES",45.116578,5.326438,0,0,O38:SA:CTP1778,Europe/Paris,,O38, +O38:SP:1780,1,"LES BARILLATS",45.099248,5.308035,0,0,O38:SA:CTP1780,Europe/Paris,,O38, +O38:SP:1781,1,"LES BARILLATS",45.098912,5.30785,0,0,O38:SA:CTP1780,Europe/Paris,,O38, +O38:SP:1782,1,"LES FAURIES",45.102275,5.391384,0,0,O38:SA:CTP1782,Europe/Paris,,O38, +O38:SP:1783,1,"LES FAURIES",45.102334,5.391356,0,0,O38:SA:CTP1782,Europe/Paris,,O38, +O38:SP:1784,1,"BOURG",45.091926,5.382709,0,0,O38:SA:CTP1784,Europe/Paris,,O38, +O38:SP:1785,1,"BOURG",45.091954,5.382616,0,0,O38:SA:CTP1784,Europe/Paris,,O38, +O38:SP:1788,1,"LES COURTIOUX",45.093934,5.342032,0,0,O38:SA:CTP1788,Europe/Paris,,O38, +O38:SP:1789,1,"LES COURTIOUX",45.093937,5.342015,0,0,O38:SA:CTP1788,Europe/Paris,,O38, +O38:SP:1792,1,"L'ILE",45.132324,5.360242,0,0,O38:SA:CTP1792,Europe/Paris,,O38, +O38:SP:1793,1,"L'ILE",45.135055,5.362454,0,0,O38:SA:CTP1793,Europe/Paris,,O38, +O38:SP:1794,1,"LE MOURLIET",45.125926,5.365882,0,0,O38:SA:CTP1794,Europe/Paris,,O38, +O38:SP:1795,1,"LE MOURLIET",45.12595,5.365818,0,0,O38:SA:CTP1794,Europe/Paris,,O38, +O38:SP:1796,1,"FERME CADET",45.131473,5.363247,0,0,O38:SA:CTP1796,Europe/Paris,,O38, +O38:SP:1797,1,"FERME CADET",45.131403,5.363229,0,0,O38:SA:CTP1796,Europe/Paris,,O38, +O38:SP:1798,1,"LE CARRA",45.125274,5.348567,0,0,O38:SA:CTP1798,Europe/Paris,,O38, +O38:SP:1799,1,"LE CARRA",45.125343,5.348531,0,0,O38:SA:CTP1798,Europe/Paris,,O38, +O38:SP:1800,1,"GAILLARDONNIERES",45.109035,5.334034,0,0,O38:SA:CTP1800,Europe/Paris,,O38, +O38:SP:1801,1,"GAILLARDONNIERES",45.108964,5.33405,0,0,O38:SA:CTP1800,Europe/Paris,,O38, +O38:SP:1802,1,"MONTEUX",45.098578,5.340868,0,0,O38:SA:CTP1802,Europe/Paris,,O38, +O38:SP:1803,1,"MONTEUX",45.098486,5.340976,0,0,O38:SA:CTP1802,Europe/Paris,,O38, +O38:SP:1805,1,"BOURG",45.12146,5.362146,0,0,O38:SA:CTP1805,Europe/Paris,,O38, +O38:SP:1806,1,"CHEMIN LACHAT",45.124211,5.359274,0,0,O38:SA:CTP1806,Europe/Paris,,O38, +O38:SP:1807,1,"CHEMIN LACHAT",45.124107,5.359209,0,0,O38:SA:CTP1806,Europe/Paris,,O38, +O38:SP:1808,1,"AUBERGE DU FAZ",45.115489,5.399906,0,0,O38:SA:CTP1808,Europe/Paris,,O38, +O38:SP:1809,1,"LES RIMETS",45.112061,5.459774,0,0,O38:SA:CTP1809,Europe/Paris,,O38, +O38:SP:1810,1,"LES RIMETS",45.112058,5.459776,0,0,O38:SA:CTP1809,Europe/Paris,,O38, +O38:SP:1812,1,"LA ROCHETTE",45.108328,5.397036,0,0,O38:SA:CTP1812,Europe/Paris,,O38, +O38:SP:1813,1,"LA ROCHETTE",45.10832,5.397059,0,0,O38:SA:CTP1812,Europe/Paris,,O38, +O38:SP:1814,1,"LA COTE",45.127528,5.47224,0,0,O38:SA:CTP1814,Europe/Paris,,O38, +O38:SP:1815,1,"LA COTE",45.127446,5.472079,0,0,O38:SA:CTP1814,Europe/Paris,,O38, +O38:SP:1817,1,"MEAUDRE PLACE",45.127558,5.527424,0,0,O38:SA:CTP1817,Europe/Paris,,O38, +O38:SP:1819,1,"MEAUDRE PLACE",45.127411,5.527212,0,0,O38:SA:CTP1817,Europe/Paris,,O38, +O38:SP:1820,1,"MEAUDRE ECOLE",45.125937,5.525458,0,0,O38:SA:CTP1820,Europe/Paris,,O38, +O38:SP:1821,1,"MEAUDRE ECOLE",45.126009,5.525447,0,0,O38:SA:CTP1820,Europe/Paris,,O38, +O38:SP:1822,1,"LA ROCHETTE",45.129247,5.475572,0,0,O38:SA:CTP1822,Europe/Paris,,O38, +O38:SP:1823,1,"LA ROCHETTE",45.12923,5.475671,0,0,O38:SA:CTP1822,Europe/Paris,,O38, +O38:SP:1824,1,"LE VIOLON",45.111952,5.471549,0,0,O38:SA:CTP1824,Europe/Paris,,O38, +O38:SP:1825,1,"LE VIOLON",45.111937,5.471621,0,0,O38:SA:CTP1824,Europe/Paris,,O38, +O38:SP:1826,1,"BALME MATERNELLE",45.088123,5.467862,0,0,O38:SA:CTP1826,Europe/Paris,,O38, +O38:SP:1827,1,"BALME MATERNELLE",45.088188,5.467817,0,0,O38:SA:CTP1826,Europe/Paris,,O38, +O38:SP:1828,1,"BOURG",45.104067,5.473225,0,0,O38:SA:CTP1828,Europe/Paris,,O38, +O38:SP:1829,1,"BOURG",45.103975,5.473152,0,0,O38:SA:CTP1828,Europe/Paris,,O38, +O38:SP:1830,1,"LA LAUZE",45.10832,5.471011,0,0,O38:SA:CTP1830,Europe/Paris,,O38, +O38:SP:1831,1,"LA LAUZE",45.108317,5.471112,0,0,O38:SA:CTP1830,Europe/Paris,,O38, +O38:SP:1832,1,"ECOLE PRIMAIRE",45.102631,5.472254,0,0,O38:SA:CTP1832,Europe/Paris,,O38, +O38:SP:1833,1,"ECOLE PRIMAIRE",45.102546,5.472272,0,0,O38:SA:CTP1832,Europe/Paris,,O38, +O38:SP:1834,1,"LA FEUILLETIERE",45.108073,5.472777,0,0,O38:SA:CTP1834,Europe/Paris,,O38, +O38:SP:1835,1,"LA FEUILLETIERE",45.108069,5.472878,0,0,O38:SA:CTP1834,Europe/Paris,,O38, +O38:SP:1836,1,"CHEMIN DES POURROIS",45.12537,5.476407,0,0,O38:SA:CTP1836,Europe/Paris,,O38, +O38:SP:1837,1,"CHEMIN DES POURROIS",45.125353,5.476505,0,0,O38:SA:CTP1836,Europe/Paris,,O38, +O38:SP:1839,1,"LES JARRANDS",45.085449,5.525115,0,0,O38:SA:CTP1839,Europe/Paris,,O38, +O38:SP:1841,1,"LES JARRANDS",45.085535,5.525042,0,0,O38:SA:CTP1839,Europe/Paris,,O38, +O38:SP:1842,1,"LE SERVET",45.109982,5.470272,0,0,O38:SA:CTP1842,Europe/Paris,,O38, +O38:SP:1843,1,"LE SERVET",45.109911,5.470295,0,0,O38:SA:CTP1842,Europe/Paris,,O38, +O38:SP:1844,1,"CORDET",45.09661,5.470869,0,0,O38:SA:CTP1844,Europe/Paris,,O38, +O38:SP:1845,1,"CORDET",45.096693,5.471216,0,0,O38:SA:CTP1844,Europe/Paris,,O38, +O38:SP:1847,1,"LES COTES DE LANS",45.10165,5.560876,0,0,O38:SA:CTP1847,Europe/Paris,,O38, +O38:SP:1849,1,"LES COTES DE LANS",45.101396,5.560568,0,0,O38:SA:CTP1847,Europe/Paris,,O38, +O38:SP:1850,1,"LE VIEUX MOULIN",45.12274,5.530525,0,0,O38:SA:CTP1850,Europe/Paris,,O38, +O38:SP:1851,1,"LE VIEUX MOULIN",45.12273,5.530425,0,0,O38:SA:CTP1850,Europe/Paris,,O38, +O38:SP:1853,1,"LES MORETS",45.116655,5.531627,0,0,O38:SA:CTP1853,Europe/Paris,,O38, +O38:SP:1855,1,"LES MORETS",45.116727,5.531712,0,0,O38:SA:CTP1853,Europe/Paris,,O38, +O38:SP:1857,1,"BOUILLY",45.110564,5.566745,0,0,O38:SA:CTP1857,Europe/Paris,,O38, +O38:SP:1859,1,"BOUILLY",45.110438,5.566709,0,0,O38:SA:CTP1857,Europe/Paris,,O38, +O38:SP:1861,1,"LES EYMARDS",45.117793,5.571857,0,0,O38:SA:CTP1861,Europe/Paris,,O38, +O38:SP:1863,1,"LES EYMARDS",45.11773,5.571975,0,0,O38:SA:CTP1861,Europe/Paris,,O38, +O38:SP:1865,1,"MAIRIE",45.128175,5.588783,0,0,O38:SA:CTP1865,Europe/Paris,,O38, +O38:SP:1867,1,"MAIRIE",45.12821,5.588876,0,0,O38:SA:CTP1865,Europe/Paris,,O38, +O38:SP:1868,1,"L'AIGLE",45.121966,5.588153,0,0,O38:SA:CTP1868,Europe/Paris,,O38, +O38:SP:1869,1,"L'AIGLE",45.121913,5.588222,0,0,O38:SA:CTP1868,Europe/Paris,,O38, +O38:SP:1870,1,"LE PEUIL",45.119564,5.587284,0,0,O38:SA:CTP1870,Europe/Paris,,O38, +O38:SP:1871,1,"LE PEUIL",45.119519,5.587363,0,0,O38:SA:CTP1870,Europe/Paris,,O38, +O38:SP:1872,1,"LES FRANCONS",45.106976,5.58049,0,0,O38:SA:CTP1872,Europe/Paris,,O38, +O38:SP:1873,1,"LES FRANCONS",45.106992,5.580391,0,0,O38:SA:CTP1872,Europe/Paris,,O38, +O38:SP:1874,1,"MAISON FAVARIN",45.10037,5.579743,0,0,O38:SA:CTP1874,Europe/Paris,,O38, +O38:SP:1875,1,"MAISON FAVARIN",45.100318,5.579808,0,0,O38:SA:CTP1874,Europe/Paris,,O38, +O38:SP:1876,1,"LES HERAUTS",45.098933,5.579676,0,0,O38:SA:CTP1876,Europe/Paris,,O38, +O38:SP:1877,1,"LES HERAUTS",45.098942,5.579596,0,0,O38:SA:CTP1876,Europe/Paris,,O38, +O38:SP:1878,1,"LES GIRARDS",45.091992,5.579542,0,0,O38:SA:CTP1878,Europe/Paris,,O38, +O38:SP:1879,1,"LES GIRARDS",45.092067,5.579632,0,0,O38:SA:CTP1878,Europe/Paris,,O38, +O38:SP:1881,1,"TRAFFET-PONT DES ANIERS",45.096725,5.55718,0,0,O38:SA:CTP1881,Europe/Paris,,O38, +O38:SP:1883,1,"TRAFFET-PONT DES ANIERS",45.09667,5.55728,0,0,O38:SA:CTP1881,Europe/Paris,,O38, +O38:SP:1884,1,"CHEMIN DES GEYMONDS",45.086354,5.55482,0,0,O38:SA:CTP1884,Europe/Paris,,O38, +O38:SP:1886,1,"LES GEYMONDS",45.085118,5.554088,0,0,O38:SA:CTP1886,Europe/Paris,,O38, +O38:SP:1888,1,"LES GEYMONDS",45.085077,5.554155,0,0,O38:SA:CTP1886,Europe/Paris,,O38, +O38:SP:1889,1,"ROUTE DES NOBLES",45.084329,5.580189,0,0,O38:SA:CTP1889,Europe/Paris,,O38, +O38:SP:1890,1,"VILLE VIEILLE",45.087127,5.569696,0,0,O38:SA:CTP1890,Europe/Paris,,O38, +O38:SP:1891,1,"VILLE VIEILLE",45.087129,5.569513,0,0,O38:SA:CTP1890,Europe/Paris,,O38, +O38:SP:1892,1,"LES ARRIBERTS",45.086051,5.574912,0,0,O38:SA:CTP1892,Europe/Paris,,O38, +O38:SP:1893,1,"POULATS-CARREFOUR",45.085783,5.560951,0,0,O38:SA:CTP1893,Europe/Paris,,O38, +O38:SP:1894,1,"LES NOBLES",45.081634,5.575878,0,0,O38:SA:CTP1894,Europe/Paris,,O38, +O38:SP:1895,1,"LES NOBLES",45.081644,5.575978,0,0,O38:SA:CTP1894,Europe/Paris,,O38, +O38:SP:1897,1,"LES BERNARDS",45.127657,5.599329,0,0,O38:SA:CTP1897,Europe/Paris,,O38, +O38:SP:1899,1,"LES BERNARDS",45.127564,5.599195,0,0,O38:SA:CTP1897,Europe/Paris,,O38, +O38:SP:1904,1,"LES DEUX PONTS",45.118736,5.701854,0,0,O38:SA:CTP1904,Europe/Paris,,O38, +O38:SP:1905,1,"LES DEUX PONTS",45.118849,5.701878,0,0,O38:SA:CTP1904,Europe/Paris,,O38, +O38:SP:1906,1,"SAUT DU MOINE",45.094512,5.721393,0,0,O38:SA:CTP1906,Europe/Paris,,O38, +O38:SP:1907,1,"SAUT DU MOINE",45.094432,5.721602,0,0,O38:SA:CTP1906,Europe/Paris,,O38, +O38:SP:1909,1,"ALLIERES ET RISSET",45.092965,5.683637,0,0,O38:SA:CTP1909,Europe/Paris,,O38, +O38:SP:1911,1,"ALLIERES ET RISSET",45.092961,5.683739,0,0,O38:SA:CTP1909,Europe/Paris,,O38, +O38:SP:1915,1,"VARCES REPUBLIQUE",45.086091,5.6826,0,0,O38:SA:CTP1915,Europe/Paris,,O38, +O38:SP:1920,1,"MARCELLINE",45.126006,5.698254,0,0,O38:SA:CTP1920,Europe/Paris,,O38, +O38:SP:1922,1,"MARCELLINE",45.125545,5.697913,0,0,O38:SA:CTP1920,Europe/Paris,,O38, +O38:SP:1924,1,"PAVILLON COLMARD",45.08415,5.728855,0,0,O38:SA:CTP1924,Europe/Paris,,O38, +O38:SP:1934,1,"PONT DE CHAMP NAVARRE",45.08735,5.730289,0,0,O38:SA:CTP1934,Europe/Paris,,O38, +O38:SP:1935,1,"PONT DE CHAMP NAVARRE",45.087556,5.730365,0,0,O38:SA:CTP1934,Europe/Paris,,O38, +O38:SP:1961,1,"COLLEGE LES MATTONS",45.086562,5.774935,0,0,O38:SA:CTP1961,Europe/Paris,,O38, +O38:SP:1962,1,"COLLEGE LES MATTONS",45.086667,5.774768,0,0,O38:SA:CTP1961,Europe/Paris,,O38, +O38:SP:1975,1,"LA GARE - RN85",45.083849,5.742355,0,0,O38:SA:CTP1975,Europe/Paris,,O38, +O38:SP:1976,1,"LA GARE - RN85",45.083968,5.742348,0,0,O38:SA:CTP1975,Europe/Paris,,O38, +O38:SP:1977,1,"PONT DE CHAMP",45.088524,5.73074,0,0,O38:SA:CTP1977,Europe/Paris,,O38, +O38:SP:1978,1,"PONT DE CHAMP",45.088565,5.730899,0,0,O38:SA:CTP1977,Europe/Paris,,O38, +O38:SP:1991,1,"LES TRAVERS",45.091068,5.791587,0,0,O38:SA:CTP1991,Europe/Paris,,O38, +O38:SP:2001,1,"L'ALLIANCE",45.081971,5.76825,0,0,O38:SA:CTP2001,Europe/Paris,,O38, +O38:SP:2002,1,"L'ALLIANCE",45.082075,5.768065,0,0,O38:SA:CTP2001,Europe/Paris,,O38, +O38:SP:2016,1,"MAISON BLANCHE",45.11068,5.804103,0,0,O38:SA:CTP2016,Europe/Paris,,O38, +O38:SP:2020,1,"BELMONT",45.119938,5.828368,0,0,O38:SA:CTP2020,Europe/Paris,,O38, +O38:SP:2022,1,"BELMONT",45.119913,5.828459,0,0,O38:SA:CTP2020,Europe/Paris,,O38, +O38:SP:2023,1,"MONTGARDIER",45.115192,5.831082,0,0,O38:SA:CTP2023,Europe/Paris,,O38, +O38:SP:2024,1,"MONTGARDIER",45.115151,5.831166,0,0,O38:SA:CTP2023,Europe/Paris,,O38, +O38:SP:2025,1,"LE FUJAREY",45.113542,5.836546,0,0,O38:SA:CTP2025,Europe/Paris,,O38, +O38:SP:2026,1,"LE FUJAREY",45.113588,5.836509,0,0,O38:SA:CTP2025,Europe/Paris,,O38, +O38:SP:2039,1,"LES CLAVAUX",45.075968,5.88368,0,0,O38:SA:CTP2039,Europe/Paris,,O38, +O38:SP:2040,1,"LES CLAVAUX",45.076076,5.883691,0,0,O38:SA:CTP2039,Europe/Paris,,O38, +O38:SP:2041,1,"RIOUPEROUX-PONT(LA SALINIERE)",45.088744,5.901715,0,0,O38:SA:CTP2041,Europe/Paris,,O38, +O38:SP:2042,1,"RIOUPEROUX-PONT(LA SALINIERE)",45.088648,5.901622,0,0,O38:SA:CTP2041,Europe/Paris,,O38, +O38:SP:2045,1,"PIERRE EYBESSE",45.071401,5.874795,0,0,O38:SA:CTP2045,Europe/Paris,,O38, +O38:SP:2046,1,"PIERRE EYBESSE",45.071341,5.874901,0,0,O38:SA:CTP2045,Europe/Paris,,O38, +O38:SP:2047,1,"RIOUPEROUX-HLM",45.094148,5.905087,0,0,O38:SA:CTP2047,Europe/Paris,,O38, +O38:SP:2048,1,"RIOUPEROUX-HLM",45.094159,5.905237,0,0,O38:SA:CTP2047,Europe/Paris,,O38, +O38:SP:2049,1,"RIOUPEROUX-ECOLE",45.09279,5.904087,0,0,O38:SA:CTP2049,Europe/Paris,,O38, +O38:SP:2050,1,"RIOUPEROUX-ECOLE",45.09283,5.904006,0,0,O38:SA:CTP2049,Europe/Paris,,O38, +O38:SP:2051,1,"LES PONANTS",45.096103,5.908318,0,0,O38:SA:CTP2051,Europe/Paris,,O38, +O38:SP:2052,1,"LES PONANTS",45.096165,5.908268,0,0,O38:SA:CTP2051,Europe/Paris,,O38, +O38:SP:2053,1,"LES ROBERTS",45.101236,5.918123,0,0,O38:SA:CTP2053,Europe/Paris,,O38, +O38:SP:2054,1,"LES ROBERTS",45.101175,5.918262,0,0,O38:SA:CTP2053,Europe/Paris,,O38, +O38:SP:2055,1,"MAIRIE",45.111137,5.874869,0,0,O38:SA:CTP2055,Europe/Paris,,O38, +O38:SP:2056,1,"MAIRIE",45.111077,5.874866,0,0,O38:SA:CTP2055,Europe/Paris,,O38, +O38:SP:2058,1,"1750",45.109831,5.875382,0,0,O38:SA:CTP2058,Europe/Paris,,O38, +O38:SP:2060,1,"1750",45.10987,5.875331,0,0,O38:SA:CTP2058,Europe/Paris,,O38, +O38:SP:2063,1,"LIVET DISPENSAIRE",45.108166,5.935999,0,0,O38:SA:CTP2063,Europe/Paris,,O38, +O38:SP:2064,1,"LIVET DISPENSAIRE",45.108109,5.936051,0,0,O38:SA:CTP2063,Europe/Paris,,O38, +O38:SP:2065,1,"LIVET",45.106239,5.930026,0,0,O38:SA:CTP2065,Europe/Paris,,O38, +O38:SP:2066,1,"LIVET",45.106201,5.930348,0,0,O38:SA:CTP2065,Europe/Paris,,O38, +O38:SP:2067,1,"LIVET-ECOLE",45.107966,5.933285,0,0,O38:SA:CTP2067,Europe/Paris,,O38, +O38:SP:2068,1,"LIVET-ECOLE",45.108034,5.933254,0,0,O38:SA:CTP2067,Europe/Paris,,O38, +O38:SP:2070,1,"LE VILLAGE",45.081239,6.059719,0,0,O38:SA:CTP2070,Europe/Paris,,O38, +O38:SP:2072,1,"LE VILLAGE",45.081283,6.059623,0,0,O38:SA:CTP2070,Europe/Paris,,O38, +O38:SP:2074,1,"ROCHETAILLEE",45.114514,6.004455,0,0,O38:SA:CTP2074,Europe/Paris,,O38, +O38:SP:2076,1,"ROCHETAILLEE",45.114698,6.004146,0,0,O38:SA:CTP2074,Europe/Paris,,O38, +O38:SP:2077,1,"LES ESSOULIEUX",45.069645,6.036723,0,0,O38:SA:CTP2077,Europe/Paris,,O38, +O38:SP:2078,1,"LES ESSOULIEUX",45.069501,6.036711,0,0,O38:SA:CTP2077,Europe/Paris,,O38, +O38:SP:2079,1,"LE VILLAGE",45.067363,6.04424,0,0,O38:SA:CTP2079,Europe/Paris,,O38, +O38:SP:2080,1,"LE VILLAGE",45.067351,6.04406,0,0,O38:SA:CTP2079,Europe/Paris,,O38, +O38:SP:2081,1,"ECOLE",45.089105,6.068497,0,0,O38:SA:CTP2081,Europe/Paris,,O38, +O38:SP:2082,1,"ECOLE",45.089146,6.06853,0,0,O38:SA:CTP2081,Europe/Paris,,O38, +O38:SP:2083,1,"LES MORELLES",45.071827,6.018174,0,0,O38:SA:CTP2083,Europe/Paris,,O38, +O38:SP:2084,1,"LES MORELLES",45.071813,6.018408,0,0,O38:SA:CTP2083,Europe/Paris,,O38, +O38:SP:2085,1,"CHEMIN DES EFFONDS",45.104376,6.00806,0,0,O38:SA:CTP2085,Europe/Paris,,O38, +O38:SP:2086,1,"CHEMIN DES EFFONDS",45.104712,6.008092,0,0,O38:SA:CTP2085,Europe/Paris,,O38, +O38:SP:2087,1,"LE BASSEY",45.075744,6.031064,0,0,O38:SA:CTP2087,Europe/Paris,,O38, +O38:SP:2088,1,"LE BASSEY",45.075814,6.031089,0,0,O38:SA:CTP2087,Europe/Paris,,O38, +O38:SP:2091,1,"LE RIBOT",45.075058,6.048129,0,0,O38:SA:CTP2091,Europe/Paris,,O38, +O38:SP:2092,1,"LE RIBOT",45.074871,6.047974,0,0,O38:SA:CTP2091,Europe/Paris,,O38, +O38:SP:2093,1,"LES SAGNES",45.091419,6.056404,0,0,O38:SA:CTP2093,Europe/Paris,,O38, +O38:SP:2094,1,"LES SAGNES",45.091323,6.056527,0,0,O38:SA:CTP2093,Europe/Paris,,O38, +O38:SP:2095,1,"LA PAUTE VILLAGE",45.074675,6.013735,0,0,O38:SA:CTP2095,Europe/Paris,,O38, +O38:SP:2096,1,"LA PAUTE VILLAGE",45.074841,6.013308,0,0,O38:SA:CTP2095,Europe/Paris,,O38, +O38:SP:2097,1,"LE HAUT",45.082226,6.059896,0,0,O38:SA:CTP2097,Europe/Paris,,O38, +O38:SP:2099,1,"MAONA",45.084998,6.059966,0,0,O38:SA:CTP2099,Europe/Paris,,O38, +O38:SP:2101,1,"MAONA",45.085044,6.06009,0,0,O38:SA:CTP2099,Europe/Paris,,O38, +O38:SP:2102,1,"ECOLES DES SABLES",45.097924,6.00968,0,0,O38:SA:CTP2102,Europe/Paris,,O38, +O38:SP:2103,1,"ECOLES DES SABLES",45.09718,6.009707,0,0,O38:SA:CTP2102,Europe/Paris,,O38, +O38:SP:2104,1,"EGLISE DES SABLES",45.092436,6.010887,0,0,O38:SA:CTP2104,Europe/Paris,,O38, +O38:SP:2105,1,"EGLISE DES SABLES",45.092968,6.010887,0,0,O38:SA:CTP2104,Europe/Paris,,O38, +O38:SP:2106,1,"L'ORDRE",45.082724,6.013156,0,0,O38:SA:CTP2106,Europe/Paris,,O38, +O38:SP:2107,1,"L'ORDRE",45.083125,6.013239,0,0,O38:SA:CTP2106,Europe/Paris,,O38, +O38:SP:2108,1,"LA PAUTE-PONT(RN91)",45.074195,6.016318,0,0,O38:SA:CTP2108,Europe/Paris,,O38, +O38:SP:2109,1,"LA PAUTE-PONT(RN91)",45.074337,6.016334,0,0,O38:SA:CTP2108,Europe/Paris,,O38, +O38:SP:2117,1,"ROND POINT DE L'EUROPE",45.090621,6.074088,0,0,O38:SA:CTP2117,Europe/Paris,,O38, +O38:SP:2118,1,"ROND POINT DE L'EUROPE",45.090753,6.073701,0,0,O38:SA:CTP2117,Europe/Paris,,O38, +O38:SP:2120,1,"AVENUE DE L'ETENDARD",45.092778,6.06893,0,0,O38:SA:CTP2120,Europe/Paris,,O38, +O38:SP:2123,1,"AVENUE DE L'ETENDARD",45.093232,6.068437,0,0,O38:SA:CTP2120,Europe/Paris,,O38, +O38:SP:2127,1,"L'ECLOSE",45.087981,6.069128,0,0,O38:SA:CTP2127,Europe/Paris,,O38, +O38:SP:2129,1,"ROND POINT DES PISTES",45.095644,6.070515,0,0,O38:SA:CTP2129,Europe/Paris,,O38, +O38:SP:2131,1,"ROND POINT DES PISTES",45.095668,6.070319,0,0,O38:SA:CTP2129,Europe/Paris,,O38, +O38:SP:2135,1,"PARKING DES BERGERS",45.089623,6.076212,0,0,O38:SA:CTP2135,Europe/Paris,,O38, +O38:SP:2138,1,"ECOLE",45.141474,5.192902,0,0,O38:SA:CTP2138,Europe/Paris,,O38, +O38:SP:2139,1,"ECOLE",45.141542,5.192871,0,0,O38:SA:CTP2138,Europe/Paris,,O38, +O38:SP:2140,1,"VILLAGE",45.140746,5.191647,0,0,O38:SA:CTP2140,Europe/Paris,,O38, +O38:SP:2141,1,"MONTLOUBET",45.141352,5.257419,0,0,O38:SA:CTP2141,Europe/Paris,,O38, +O38:SP:2142,1,"MONTLOUBET",45.141383,5.25751,0,0,O38:SA:CTP2141,Europe/Paris,,O38, +O38:SP:2143,1,"LE MAS DES ROUTES",45.15152,5.216164,0,0,O38:SA:CTP2143,Europe/Paris,,O38, +O38:SP:2144,1,"LE MAS DES ROUTES",45.151592,5.216168,0,0,O38:SA:CTP2143,Europe/Paris,,O38, +O38:SP:2147,1,"LES MOLLES-GIRARDIERE",45.145604,5.252169,0,0,O38:SA:CTP2147,Europe/Paris,,O38, +O38:SP:2148,1,"LES MOLLES-GIRARDIERE",45.145564,5.252085,0,0,O38:SA:CTP2147,Europe/Paris,,O38, +O38:SP:2149,1,"LA BRUYERE D68A",45.163126,5.202005,0,0,O38:SA:CTP2149,Europe/Paris,,O38, +O38:SP:2150,1,"LA BRUYERE D68A",45.163133,5.201978,0,0,O38:SA:CTP2149,Europe/Paris,,O38, +O38:SP:2151,1,"L'HOPITAL D68A",45.154877,5.203094,0,0,O38:SA:CTP2151,Europe/Paris,,O38, +O38:SP:2152,1,"L'HOPITAL D68A",45.154904,5.203,0,0,O38:SA:CTP2151,Europe/Paris,,O38, +O38:SP:2153,1,"LES BOUDILLONS",45.139459,5.243471,0,0,O38:SA:CTP2153,Europe/Paris,,O38, +O38:SP:2154,1,"LES BOUDILLONS",45.139476,5.24357,0,0,O38:SA:CTP2153,Europe/Paris,,O38, +O38:SP:2157,1,"CABARET NEUF",45.155019,5.256923,0,0,O38:SA:CTP2157,Europe/Paris,,O38, +O38:SP:2158,1,"CABARET NEUF",45.15503,5.256829,0,0,O38:SA:CTP2157,Europe/Paris,,O38, +O38:SP:2159,1,"CROIX ROUGE",45.142789,5.198327,0,0,O38:SA:CTP2159,Europe/Paris,,O38, +O38:SP:2160,1,"CROIX ROUGE",45.14286,5.198304,0,0,O38:SA:CTP2159,Europe/Paris,,O38, +O38:SP:2161,1,"HAMEAU DES ROUTES-LA PINEDE",45.150525,5.208689,0,0,O38:SA:CTP2161,Europe/Paris,,O38, +O38:SP:2162,1,"HAMEAU DES ROUTES-LA PINEDE",45.150466,5.208631,0,0,O38:SA:CTP2161,Europe/Paris,,O38, +O38:SP:2163,1,"CROIX DE LA CAVE",45.150205,5.202254,0,0,O38:SA:CTP2163,Europe/Paris,,O38, +O38:SP:2164,1,"CROIX DE LA CAVE",45.150161,5.202334,0,0,O38:SA:CTP2163,Europe/Paris,,O38, +O38:SP:2165,1,"LE TRUCHET D68",45.147364,5.19842,0,0,O38:SA:CTP2165,Europe/Paris,,O38, +O38:SP:2166,1,"LE TRUCHET D68",45.147342,5.198516,0,0,O38:SA:CTP2165,Europe/Paris,,O38, +O38:SP:2167,1,"LES VOUREYS",45.152773,5.23314,0,0,O38:SA:CTP2167,Europe/Paris,,O38, +O38:SP:2168,1,"LES VOUREYS",45.152764,5.233039,0,0,O38:SA:CTP2167,Europe/Paris,,O38, +O38:SP:2170,1,"LA CHAPELLE",45.151507,5.248124,0,0,O38:SA:CTP2170,Europe/Paris,,O38, +O38:SP:2173,1,"EC.PRIM.I ET II",45.173939,5.219606,0,0,O38:SA:CTP2173,Europe/Paris,,O38, +O38:SP:2174,1,"EC.PRIM.I ET II",45.174009,5.219623,0,0,O38:SA:CTP2173,Europe/Paris,,O38, +O38:SP:2175,1,"LES ARRODIERES",45.165006,5.237767,0,0,O38:SA:CTP2175,Europe/Paris,,O38, +O38:SP:2176,1,"LES ARRODIERES",45.164911,5.237855,0,0,O38:SA:CTP2175,Europe/Paris,,O38, +O38:SP:2179,1,"JACQUEMONT",45.15105,5.242698,0,0,O38:SA:CTP2179,Europe/Paris,,O38, +O38:SP:2180,1,"JACQUEMONT",45.150984,5.242739,0,0,O38:SA:CTP2179,Europe/Paris,,O38, +O38:SP:2181,1,"LE GRAND CHENE",45.178795,5.248577,0,0,O38:SA:CTP2181,Europe/Paris,,O38, +O38:SP:2182,1,"LE GRAND CHENE",45.178759,5.24849,0,0,O38:SA:CTP2181,Europe/Paris,,O38, +O38:SP:2183,1,"GIRARDIERE",45.143317,5.254797,0,0,O38:SA:CTP2183,Europe/Paris,,O38, +O38:SP:2186,1,"LA MALADIERE",45.157696,5.239148,0,0,O38:SA:CTP2186,Europe/Paris,,O38, +O38:SP:2187,1,"CIZIERES",45.169253,5.23108,0,0,O38:SA:CTP2187,Europe/Paris,,O38, +O38:SP:2188,1,"CIZIERES",45.169324,5.231273,0,0,O38:SA:CTP2187,Europe/Paris,,O38, +O38:SP:2189,1,"CHAPAIZE LE BAS",45.162405,5.25247,0,0,O38:SA:CTP2189,Europe/Paris,,O38, +O38:SP:2190,1,"CHAPAIZE LE BAS",45.1624,5.252447,0,0,O38:SA:CTP2189,Europe/Paris,,O38, +O38:SP:2191,1,"FONT FROIDE",45.166264,5.202151,0,0,O38:SA:CTP2191,Europe/Paris,,O38, +O38:SP:2192,1,"FONT FROIDE",45.166247,5.202052,0,0,O38:SA:CTP2191,Europe/Paris,,O38, +O38:SP:2193,1,"CARPE DIEM",45.167906,5.200087,0,0,O38:SA:CTP2193,Europe/Paris,,O38, +O38:SP:2194,1,"CARPE DIEM",45.167906,5.199986,0,0,O38:SA:CTP2193,Europe/Paris,,O38, +O38:SP:2195,1,"CHAPAIZE",45.159834,5.253849,0,0,O38:SA:CTP2195,Europe/Paris,,O38, +O38:SP:2196,1,"CHAPAIZE",45.159796,5.253762,0,0,O38:SA:CTP2195,Europe/Paris,,O38, +O38:SP:2197,1,"LES REYNAUDS",45.172211,5.200462,0,0,O38:SA:CTP2197,Europe/Paris,,O38, +O38:SP:2198,1,"LES REYNAUDS",45.172223,5.200562,0,0,O38:SA:CTP2197,Europe/Paris,,O38, +O38:SP:2199,1,"BELAN",45.182909,5.200056,0,0,O38:SA:CTP2199,Europe/Paris,,O38, +O38:SP:2200,1,"BELAN",45.182858,5.199984,0,0,O38:SA:CTP2199,Europe/Paris,,O38, +O38:SP:2201,1,"LES MOUILLES",45.141344,5.228892,0,0,O38:SA:CTP2201,Europe/Paris,,O38, +O38:SP:2202,1,"LES MOUILLES",45.141354,5.228911,0,0,O38:SA:CTP2201,Europe/Paris,,O38, +O38:SP:2203,1,"CHAPAIZE LE HAUT",45.168932,5.243266,0,0,O38:SA:CTP2203,Europe/Paris,,O38, +O38:SP:2204,1,"CHAPAIZE LE HAUT",45.169051,5.243225,0,0,O38:SA:CTP2203,Europe/Paris,,O38, +O38:SP:2205,1,"LA BLACHE",45.168158,5.246417,0,0,O38:SA:CTP2205,Europe/Paris,,O38, +O38:SP:2206,1,"LA BLACHE",45.168168,5.246434,0,0,O38:SA:CTP2205,Europe/Paris,,O38, +O38:SP:2207,1,"LE BOIS",45.176281,5.255993,0,0,O38:SA:CTP2207,Europe/Paris,,O38, +O38:SP:2208,1,"LE BOIS",45.176314,5.255903,0,0,O38:SA:CTP2207,Europe/Paris,,O38, +O38:SP:2209,1,"CARREFOUR DE CHAPAIZE",45.165525,5.249409,0,0,O38:SA:CTP2209,Europe/Paris,,O38, +O38:SP:2210,1,"CARREFOUR DE CHAPAIZE",45.165582,5.24947,0,0,O38:SA:CTP2209,Europe/Paris,,O38, +O38:SP:2213,1,"CROIST-VATILLIEUX",45.149356,5.240436,0,0,O38:SA:CTP2213,Europe/Paris,,O38, +O38:SP:2214,1,"CROIST-VATILLIEUX",45.149327,5.240285,0,0,O38:SA:CTP2213,Europe/Paris,,O38, +O38:SP:2215,1,"ST ANTOINE PLACE",45.174598,5.216129,0,0,O38:SA:CTP2215,Europe/Paris,,O38, +O38:SP:2216,1,"ST ANTOINE PLACE",45.175642,5.21459,0,0,O38:SA:CTP2215,Europe/Paris,,O38, +O38:SP:2217,1,"LES COURTIS",45.146105,5.225627,0,0,O38:SA:CTP2217,Europe/Paris,,O38, +O38:SP:2218,1,"LES COURTIS",45.146155,5.225702,0,0,O38:SA:CTP2217,Europe/Paris,,O38, +O38:SP:2219,1,"PENETIERE",45.184054,5.262772,0,0,O38:SA:CTP2219,Europe/Paris,,O38, +O38:SP:2220,1,"PENETIERE",45.184077,5.262677,0,0,O38:SA:CTP2219,Europe/Paris,,O38, +O38:SP:2221,1,"LES GONNOTS-CHAMPENIER",45.139651,5.231373,0,0,O38:SA:CTP2221,Europe/Paris,,O38, +O38:SP:2222,1,"LES GONNOTS-CHAMPENIER",45.139707,5.231243,0,0,O38:SA:CTP2221,Europe/Paris,,O38, +O38:SP:2223,1,"LA SABLON",45.139695,5.218856,0,0,O38:SA:CTP2223,Europe/Paris,,O38, +O38:SP:2224,1,"LA SABLON",45.13967,5.218951,0,0,O38:SA:CTP2223,Europe/Paris,,O38, +O38:SP:2227,1,"CIZIERES BAS",45.164993,5.233032,0,0,O38:SA:CTP2227,Europe/Paris,,O38, +O38:SP:2228,1,"CIZIERES BAS",45.165032,5.233082,0,0,O38:SA:CTP2227,Europe/Paris,,O38, +O38:SP:2229,1,"EMPEREY",45.141883,5.219665,0,0,O38:SA:CTP2229,Europe/Paris,,O38, +O38:SP:2230,1,"EMPEREY",45.141892,5.219565,0,0,O38:SA:CTP2229,Europe/Paris,,O38, +O38:SP:2231,1,"BONAUX-TERRIFAUX",45.180265,5.286369,0,0,O38:SA:CTP2231,Europe/Paris,,O38, +O38:SP:2232,1,"BONAUX-TERRIFAUX",45.18023,5.28628,0,0,O38:SA:CTP2231,Europe/Paris,,O38, +O38:SP:2233,1,"CHIROUZE-VIOLETTES",45.139725,5.275626,0,0,O38:SA:CTP2233,Europe/Paris,,O38, +O38:SP:2234,1,"CHIROUZE-VIOLETTES",45.139736,5.275784,0,0,O38:SA:CTP2233,Europe/Paris,,O38, +O38:SP:2235,1,"ECOLES",45.142054,5.283437,0,0,O38:SA:CTP2235,Europe/Paris,,O38, +O38:SP:2236,1,"ECOLES",45.142152,5.283555,0,0,O38:SA:CTP2235,Europe/Paris,,O38, +O38:SP:2237,1,"LES COMBES",45.15,5.272375,0,0,O38:SA:CTP2237,Europe/Paris,,O38, +O38:SP:2238,1,"LES COMBES",45.149954,5.272483,0,0,O38:SA:CTP2237,Europe/Paris,,O38, +O38:SP:2239,1,"QUIVIERE",45.172144,5.288206,0,0,O38:SA:CTP2239,Europe/Paris,,O38, +O38:SP:2240,1,"QUIVIERE",45.172104,5.28829,0,0,O38:SA:CTP2239,Europe/Paris,,O38, +O38:SP:2241,1,"AUX PINS",45.164243,5.285605,0,0,O38:SA:CTP2241,Europe/Paris,,O38, +O38:SP:2242,1,"AUX PINS",45.164227,5.285705,0,0,O38:SA:CTP2241,Europe/Paris,,O38, +O38:SP:2243,1,"CAR.LES MAISONNES",45.170336,5.30823,0,0,O38:SA:CTP2243,Europe/Paris,,O38, +O38:SP:2244,1,"CAR.LES MAISONNES",45.170378,5.308312,0,0,O38:SA:CTP2243,Europe/Paris,,O38, +O38:SP:2245,1,"LA GLORIETTE",45.144054,5.293917,0,0,O38:SA:CTP2245,Europe/Paris,,O38, +O38:SP:2246,1,"LA GLORIETTE",45.144093,5.293747,0,0,O38:SA:CTP2245,Europe/Paris,,O38, +O38:SP:2247,1,"MAIRIE",45.143032,5.283729,0,0,O38:SA:CTP2247,Europe/Paris,,O38, +O38:SP:2248,1,"MAIRIE",45.142843,5.28397,0,0,O38:SA:CTP2247,Europe/Paris,,O38, +O38:SP:2249,1,"ST JUST",45.144192,5.279806,0,0,O38:SA:CTP2249,Europe/Paris,,O38, +O38:SP:2250,1,"ST JUST",45.144213,5.279851,0,0,O38:SA:CTP2249,Europe/Paris,,O38, +O38:SP:2251,1,"LE VILLAGE",45.173888,5.332497,0,0,O38:SA:CTP2251,Europe/Paris,,O38, +O38:SP:2252,1,"LE VILLAGE",45.173667,5.332465,0,0,O38:SA:CTP2251,Europe/Paris,,O38, +O38:SP:2254,1,"SCIERIE MOCELLIN",45.168671,5.328878,0,0,O38:SA:CTP2254,Europe/Paris,,O38, +O38:SP:2255,1,"LA POIPE",45.150987,5.284331,0,0,O38:SA:CTP2255,Europe/Paris,,O38, +O38:SP:2256,1,"LA POIPE",45.150841,5.284398,0,0,O38:SA:CTP2255,Europe/Paris,,O38, +O38:SP:2257,1,"PHARMACIE",45.141207,5.288257,0,0,O38:SA:CTP2257,Europe/Paris,,O38, +O38:SP:2258,1,"PHARMACIE",45.14133,5.288804,0,0,O38:SA:CTP2257,Europe/Paris,,O38, +O38:SP:2263,1,"CARREF. SEILLERE",45.137125,5.305564,0,0,O38:SA:CTP2263,Europe/Paris,,O38, +O38:SP:2264,1,"CARREF. SEILLERE",45.137134,5.305462,0,0,O38:SA:CTP2263,Europe/Paris,,O38, +O38:SP:2265,1,"LA GARE",45.151059,5.323335,0,0,SIN:SA:OCE87761718,Europe/Paris,,O38, +O38:SP:2266,1,"LA GARE",45.150889,5.32297,0,0,SIN:SA:OCE87761718,Europe/Paris,,O38, +O38:SP:2267,1,"CAR.MONTOLIVET",45.177883,5.305826,0,0,O38:SA:CTP2267,Europe/Paris,,O38, +O38:SP:2268,1,"CAR.MONTOLIVET",45.17788,5.305928,0,0,O38:SA:CTP2267,Europe/Paris,,O38, +O38:SP:2269,1,"CAR.HAUT PLAN",45.17501,5.306783,0,0,O38:SA:CTP2269,Europe/Paris,,O38, +O38:SP:2270,1,"CAR.HAUT PLAN",45.175023,5.306682,0,0,O38:SA:CTP2269,Europe/Paris,,O38, +O38:SP:2271,1,"CAR.LA REVORD",45.171925,5.307034,0,0,O38:SA:CTP2271,Europe/Paris,,O38, +O38:SP:2272,1,"CAR.LA REVORD",45.1719,5.306938,0,0,O38:SA:CTP2271,Europe/Paris,,O38, +O38:SP:2273,1,"LES ECHAVAGNES AREA",45.139852,5.326607,0,0,O38:SA:CTP2273,Europe/Paris,,O38, +O38:SP:2274,1,"LES ECHAVAGNES AREA",45.140067,5.326483,0,0,O38:SA:CTP2273,Europe/Paris,,O38, +O38:SP:2275,1,"MAISON GIRON",45.173832,5.26684,0,0,O38:SA:CTP2275,Europe/Paris,,O38, +O38:SP:2276,1,"MAISON GIRON",45.173886,5.266908,0,0,O38:SA:CTP2275,Europe/Paris,,O38, +O38:SP:2277,1,"BD BEYLE STENDHAL",45.151516,5.318249,0,0,O38:SA:CTP2277,Europe/Paris,,O38, +O38:SP:2278,1,"BD BEYLE STENDHAL",45.15142,5.318214,0,0,O38:SA:CTP2277,Europe/Paris,,O38, +O38:SP:2279,1,"PARKING LA SAULAIE",45.157393,5.317799,0,0,O38:SA:CTP2279,Europe/Paris,,O38, +O38:SP:2280,1,"PARKING LA SAULAIE",45.157282,5.317772,0,0,O38:SA:CTP2279,Europe/Paris,,O38, +O38:SP:2282,1,"ECOLES",45.173829,5.332636,0,0,O38:SA:CTP2282,Europe/Paris,,O38, +O38:SP:2288,1,"CHEMIN DE LA COLERE",45.183666,5.267943,0,0,O38:SA:CTP2288,Europe/Paris,,O38, +O38:SP:2289,1,"COLLEGE DE CHATTE",45.13926,5.29122,0,0,O38:SA:CTP2289,Europe/Paris,,O38, +O38:SP:2290,1,"COLLEGE DE CHATTE",45.139263,5.291314,0,0,O38:SA:CTP2289,Europe/Paris,,O38, +O38:SP:2294,1,"LE GRAND PRE",45.158895,5.330405,0,0,O38:SA:CTP2294,Europe/Paris,,O38, +O38:SP:2295,1,"LES GRANDS PAINS",45.162958,5.282087,0,0,O38:SA:CTP2295,Europe/Paris,,O38, +O38:SP:2296,1,"LES GRANDS PAINS",45.162911,5.282009,0,0,O38:SA:CTP2295,Europe/Paris,,O38, +O38:SP:2297,1,"LES GONTHIERS",45.142807,5.370663,0,0,O38:SA:CTP2297,Europe/Paris,,O38, +O38:SP:2298,1,"LES GONTHIERS",45.142936,5.370976,0,0,O38:SA:CTP2297,Europe/Paris,,O38, +O38:SP:2300,1,"FOND DE BEAULIEU",45.177484,5.39175,0,0,O38:SA:CTP2300,Europe/Paris,,O38, +O38:SP:2301,1,"CHAGNEUX",45.155584,5.380721,0,0,O38:SA:CTP2301,Europe/Paris,,O38, +O38:SP:2302,1,"CHAGNEUX",45.155642,5.380951,0,0,O38:SA:CTP2301,Europe/Paris,,O38, +O38:SP:2303,1,"LE VILLAGE",45.147614,5.375493,0,0,O38:SA:CTP2303,Europe/Paris,,O38, +O38:SP:2304,1,"LE VILLAGE",45.14734,5.375141,0,0,O38:SA:CTP2303,Europe/Paris,,O38, +O38:SP:2305,1,"LES DEVEYS",45.154255,5.371139,0,0,O38:SA:CTP2305,Europe/Paris,,O38, +O38:SP:2306,1,"LES DEVEYS",45.154185,5.371159,0,0,O38:SA:CTP2305,Europe/Paris,,O38, +O38:SP:2307,1,"LES BROSSES",45.162791,5.384529,0,0,O38:SA:CTP2307,Europe/Paris,,O38, +O38:SP:2308,1,"LES BROSSES",45.162842,5.384604,0,0,O38:SA:CTP2307,Europe/Paris,,O38, +O38:SP:2309,1,"LA CASCADE",45.177983,5.334627,0,0,O38:SA:CTP2309,Europe/Paris,,O38, +O38:SP:2310,1,"LA CASCADE",45.177955,5.334721,0,0,O38:SA:CTP2309,Europe/Paris,,O38, +O38:SP:2311,1,"BECOURT-RD1092",45.178993,5.376636,0,0,O38:SA:CTP2311,Europe/Paris,,O38, +O38:SP:2312,1,"BECOURT-RD1092",45.178999,5.376529,0,0,O38:SA:CTP2311,Europe/Paris,,O38, +O38:SP:2313,1,"SARRELOUPS",45.172424,5.369589,0,0,O38:SA:CTP2313,Europe/Paris,,O38, +O38:SP:2315,1,"EGLISE",45.1487,5.341923,0,0,O38:SA:CTP2315,Europe/Paris,,O38, +O38:SP:2316,1,"EGLISE",45.148697,5.342024,0,0,O38:SA:CTP2315,Europe/Paris,,O38, +O38:SP:2318,1,"MAISON ARGOUD",45.168773,5.373442,0,0,O38:SA:CTP2318,Europe/Paris,,O38, +O38:SP:2319,1,"LA CHATAIGNIERE",45.169883,5.367723,0,0,O38:SA:CTP2319,Europe/Paris,,O38, +O38:SP:2320,1,"LA CHATAIGNIERE",45.170117,5.367915,0,0,O38:SA:CTP2319,Europe/Paris,,O38, +O38:SP:2321,1,"LA MALADIERE",45.157902,5.333135,0,0,O38:SA:CTP2321,Europe/Paris,,O38, +O38:SP:2322,1,"LA MALADIERE",45.157931,5.33372,0,0,O38:SA:CTP2321,Europe/Paris,,O38, +O38:SP:2323,1,"LOT.BRETON",45.168023,5.370984,0,0,O38:SA:CTP2323,Europe/Paris,,O38, +O38:SP:2326,1,"LES ROUTES",45.167916,5.350123,0,0,O38:SA:CTP2326,Europe/Paris,,O38, +O38:SP:2328,1,"PERTUZOU",45.160178,5.34454,0,0,O38:SA:CTP2328,Europe/Paris,,O38, +O38:SP:2329,1,"LES MAISONS NEUVES",45.161399,5.350551,0,0,O38:SA:CTP2329,Europe/Paris,,O38, +O38:SP:2330,1,"LES MAISONS NEUVES",45.161335,5.350679,0,0,O38:SA:CTP2329,Europe/Paris,,O38, +O38:SP:2331,1,"LA PERESSIERE",45.175315,5.377408,0,0,O38:SA:CTP2331,Europe/Paris,,O38, +O38:SP:2333,1,"LES TILLEULS",45.161628,5.334337,0,0,O38:SA:CTP2333,Europe/Paris,,O38, +O38:SP:2334,1,"LES TILLEULS",45.161637,5.334356,0,0,O38:SA:CTP2333,Europe/Paris,,O38, +O38:SP:2335,1,"FROMAGERIE",45.180653,5.378489,0,0,O38:SA:CTP2335,Europe/Paris,,O38, +O38:SP:2336,1,"FROMAGERIE",45.181107,5.379422,0,0,O38:SA:CTP2335,Europe/Paris,,O38, +O38:SP:2337,1,"CHAGNEUX RD1532",45.15784,5.387185,0,0,O38:SA:CTP2337,Europe/Paris,,O38, +O38:SP:2338,1,"CHAGNEUX RD1532",45.158455,5.388209,0,0,O38:SA:CTP2337,Europe/Paris,,O38, +O38:SP:2340,1,"LA CHARRIERE",45.178571,5.395062,0,0,O38:SA:CTP2340,Europe/Paris,,O38, +O38:SP:2341,1,"L'ILE LA CROIX",45.135026,5.364103,0,0,O38:SA:CTP2341,Europe/Paris,,O38, +O38:SP:2342,1,"L'ILE LA CROIX",45.135108,5.364225,0,0,O38:SA:CTP2341,Europe/Paris,,O38, +O38:SP:2343,1,"LE COUPIER",45.13576,5.339226,0,0,O38:SA:CTP2343,Europe/Paris,,O38, +O38:SP:2344,1,"LE COUPIER",45.135711,5.339299,0,0,O38:SA:CTP2343,Europe/Paris,,O38, +O38:SP:2345,1,"LA CROIX",45.141061,5.346462,0,0,O38:SA:CTP2345,Europe/Paris,,O38, +O38:SP:2346,1,"LA CROIX",45.141007,5.346531,0,0,O38:SA:CTP2345,Europe/Paris,,O38, +O38:SP:2347,1,"LES COMBEAUX-PONT AUTOROUTE",45.145649,5.343004,0,0,O38:SA:CTP2347,Europe/Paris,,O38, +O38:SP:2348,1,"LES COMBEAUX-PONT AUTOROUTE",45.145635,5.342904,0,0,O38:SA:CTP2347,Europe/Paris,,O38, +O38:SP:2349,1,"GRAND CHAMP",45.176679,5.374074,0,0,O38:SA:CTP2349,Europe/Paris,,O38, +O38:SP:2350,1,"GRAND CHAMP",45.176416,5.373935,0,0,O38:SA:CTP2349,Europe/Paris,,O38, +O38:SP:2351,1,"MAIRIE-SALLE DES FETES",45.152629,5.343484,0,0,O38:SA:CTP2351,Europe/Paris,,O38, +O38:SP:2352,1,"MAIRIE-SALLE DES FETES",45.152591,5.343571,0,0,O38:SA:CTP2351,Europe/Paris,,O38, +O38:SP:2353,1,"ECOLES",45.171564,5.412411,0,0,O38:SA:CTP2353,Europe/Paris,,O38, +O38:SP:2354,1,"ECOLES",45.171602,5.412548,0,0,O38:SA:CTP2353,Europe/Paris,,O38, +O38:SP:2357,1,"PLACE (FONTAINE)",45.146229,5.437177,0,0,O38:SA:CTP2357,Europe/Paris,,O38, +O38:SP:2358,1,"PLACE (FONTAINE)",45.146239,5.437109,0,0,O38:SA:CTP2357,Europe/Paris,,O38, +O38:SP:2359,1,"LE VILLAGE",45.170907,5.41244,0,0,O38:SA:CTP2359,Europe/Paris,,O38, +O38:SP:2360,1,"LE VILLAGE",45.170197,5.411397,0,0,O38:SA:CTP2359,Europe/Paris,,O38, +O38:SP:2362,1,"LES SEIGLIERES",45.180406,5.40321,0,0,O38:SA:CTP2362,Europe/Paris,,O38, +O38:SP:2363,1,"LE MOULIN",45.156637,5.439627,0,0,O38:SA:CTP2363,Europe/Paris,,O38, +O38:SP:2365,1,"MEAUDRE PISCINE",45.13025,5.528059,0,0,O38:SA:CTP2365,Europe/Paris,,O38, +O38:SP:2367,1,"MEAUDRE PISCINE",45.131074,5.528237,0,0,O38:SA:CTP2365,Europe/Paris,,O38, +O38:SP:2371,1,"THORENAS",45.143664,5.526244,0,0,O38:SA:CTP2371,Europe/Paris,,O38, +O38:SP:2373,1,"THORENAS",45.143955,5.52631,0,0,O38:SA:CTP2371,Europe/Paris,,O38, +O38:SP:2375,1,"TRUITE CARREFOUR D.106C",45.149996,5.525712,0,0,O38:SA:CTP2375,Europe/Paris,,O38, +O38:SP:2377,1,"TRUITE CARREFOUR D.106C",45.150089,5.525624,0,0,O38:SA:CTP2375,Europe/Paris,,O38, +O38:SP:2378,1,"LES TRANCHANTS",45.161067,5.523729,0,0,O38:SA:CTP2378,Europe/Paris,,O38, +O38:SP:2379,1,"LES TRANCHANTS",45.161161,5.523847,0,0,O38:SA:CTP2378,Europe/Paris,,O38, +O38:SP:2380,1,"LES GONNETS",45.156308,5.523124,0,0,O38:SA:CTP2380,Europe/Paris,,O38, +O38:SP:2381,1,"LES GONNETS",45.15629,5.523026,0,0,O38:SA:CTP2380,Europe/Paris,,O38, +O38:SP:2383,1,"LES DOLLYS",45.139508,5.526292,0,0,O38:SA:CTP2383,Europe/Paris,,O38, +O38:SP:2385,1,"LES DOLLYS",45.139309,5.526319,0,0,O38:SA:CTP2383,Europe/Paris,,O38, +O38:SP:2386,1,"LE COCHET",45.137398,5.517759,0,0,O38:SA:CTP2386,Europe/Paris,,O38, +O38:SP:2387,1,"LE COCHET",45.137375,5.517663,0,0,O38:SA:CTP2386,Europe/Paris,,O38, +O38:SP:2388,1,"LES FARLAIX",45.131142,5.519364,0,0,O38:SA:CTP2388,Europe/Paris,,O38, +O38:SP:2389,1,"LES FARLAIX",45.131165,5.51946,0,0,O38:SA:CTP2388,Europe/Paris,,O38, +O38:SP:2392,1,"FERME BLANC-BRUDE",45.169173,5.527055,0,0,O38:SA:CTP2392,Europe/Paris,,O38, +O38:SP:2393,1,"FERME BLANC-BRUDE",45.169207,5.526965,0,0,O38:SA:CTP2392,Europe/Paris,,O38, +O38:SP:2394,1,"LA TRUITE(HAMEAU)",45.151154,5.523189,0,0,O38:SA:CTP2394,Europe/Paris,,O38, +O38:SP:2395,1,"LA TRUITE(HAMEAU)",45.151152,5.523088,0,0,O38:SA:CTP2394,Europe/Paris,,O38, +O38:SP:2397,1,"LES VERNES",45.15832,5.528947,0,0,O38:SA:CTP2397,Europe/Paris,,O38, +O38:SP:2399,1,"LES VERNES",45.158218,5.528819,0,0,O38:SA:CTP2397,Europe/Paris,,O38, +O38:SP:2400,1,"LES EYMES",45.145399,5.517556,0,0,O38:SA:CTP2400,Europe/Paris,,O38, +O38:SP:2401,1,"LES EYMES",45.145459,5.517499,0,0,O38:SA:CTP2400,Europe/Paris,,O38, +O38:SP:2402,1,"LA FOND",45.136739,5.477856,0,0,O38:SA:CTP2402,Europe/Paris,,O38, +O38:SP:2403,1,"LA FOND",45.136624,5.477892,0,0,O38:SA:CTP2402,Europe/Paris,,O38, +O38:SP:2404,1,"COL DE ROMEYERE",45.143947,5.479714,0,0,O38:SA:CTP2404,Europe/Paris,,O38, +O38:SP:2405,1,"COL DE ROMEYERE",45.143946,5.479612,0,0,O38:SA:CTP2404,Europe/Paris,,O38, +O38:SP:2406,1,"LES RITTONS",45.133249,5.476708,0,0,O38:SA:CTP2406,Europe/Paris,,O38, +O38:SP:2407,1,"LES RITTONS",45.133217,5.4768,0,0,O38:SA:CTP2406,Europe/Paris,,O38, +O38:SP:2408,1,"LES GRANGEONS",45.131612,5.538209,0,0,O38:SA:CTP2408,Europe/Paris,,O38, +O38:SP:2409,1,"LES GRIATS",45.147623,5.548793,0,0,O38:SA:CTP2409,Europe/Paris,,O38, +O38:SP:2410,1,"LES GRIATS",45.147679,5.548738,0,0,O38:SA:CTP2409,Europe/Paris,,O38, +O38:SP:2411,1,"LES AGUIARDS",45.132404,5.542219,0,0,O38:SA:CTP2411,Europe/Paris,,O38, +O38:SP:2413,1,"LA PERRINIERE PONT",45.156117,5.553825,0,0,O38:SA:CTP2413,Europe/Paris,,O38, +O38:SP:2415,1,"LA PERRINIERE PONT",45.156138,5.553932,0,0,O38:SA:CTP2413,Europe/Paris,,O38, +O38:SP:2417,1,"LES FRANQUES",45.167371,5.53513,0,0,O38:SA:CTP2417,Europe/Paris,,O38, +O38:SP:2419,1,"LES FRANQUES",45.167394,5.535025,0,0,O38:SA:CTP2417,Europe/Paris,,O38, +O38:SP:2421,1,"LE BOUCHET",45.169247,5.552427,0,0,O38:SA:CTP2421,Europe/Paris,,O38, +O38:SP:2423,1,"LE BOUCHET",45.169266,5.552471,0,0,O38:SA:CTP2421,Europe/Paris,,O38, +O38:SP:2425,1,"PIAILLON",45.142109,5.537324,0,0,O38:SA:CTP2425,Europe/Paris,,O38, +O38:SP:2426,1,"PIAILLON",45.142053,5.537387,0,0,O38:SA:CTP2425,Europe/Paris,,O38, +O38:SP:2427,1,"LES HIRONDELLES",45.171039,5.537528,0,0,O38:SA:CTP2427,Europe/Paris,,O38, +O38:SP:2428,1,"LES HIRONDELLES",45.171004,5.537616,0,0,O38:SA:CTP2427,Europe/Paris,,O38, +O38:SP:2429,1,"LA BOURRIERE",45.139836,5.545065,0,0,O38:SA:CTP2429,Europe/Paris,,O38, +O38:SP:2431,1,"JAUME",45.129862,5.580426,0,0,O38:SA:CTP2431,Europe/Paris,,O38, +O38:SP:2433,1,"JAUME",45.129724,5.580435,0,0,O38:SA:CTP2431,Europe/Paris,,O38, +O38:SP:2434,1,"LES GAILLARDES",45.14392,5.543037,0,0,O38:SA:CTP2434,Europe/Paris,,O38, +O38:SP:2435,1,"LES GAILLARDES",45.143898,5.543054,0,0,O38:SA:CTP2434,Europe/Paris,,O38, +O38:SP:2436,1,"HAMEAU LE BOUCHET",45.170863,5.561062,0,0,O38:SA:CTP2436,Europe/Paris,,O38, +O38:SP:2437,1,"FOYER SKI DE FOND",45.176328,5.540105,0,0,O38:SA:CTP2437,Europe/Paris,,O38, +O38:SP:2438,1,"LE TRUC",45.173875,5.560456,0,0,O38:SA:CTP2438,Europe/Paris,,O38, +O38:SP:2439,1,"LE TRUC",45.173754,5.560255,0,0,O38:SA:CTP2438,Europe/Paris,,O38, +O38:SP:2440,1,"ANDREVIERE",45.174464,5.53693,0,0,O38:SA:CTP2440,Europe/Paris,,O38, +O38:SP:2441,1,"ANDREVIERE",45.174394,5.536912,0,0,O38:SA:CTP2440,Europe/Paris,,O38, +O38:SP:2443,1,"AUTRANS VILLAGE",45.175015,5.542611,0,0,O38:SA:CTP2443,Europe/Paris,,O38, +O38:SP:2446,1,"LES ARNAUDS",45.143348,5.545535,0,0,O38:SA:CTP2446,Europe/Paris,,O38, +O38:SP:2447,1,"LE CORDEY",45.134559,5.542788,0,0,O38:SA:CTP2447,Europe/Paris,,O38, +O38:SP:2449,1,"L'OLETTE",45.1404,5.589104,0,0,O38:SA:CTP2449,Europe/Paris,,O38, +O38:SP:2451,1,"L'OLETTE",45.140492,5.589045,0,0,O38:SA:CTP2449,Europe/Paris,,O38, +O38:SP:2453,1,"COL DE LA CROIX PERRIN",45.130071,5.559817,0,0,O38:SA:CTP2453,Europe/Paris,,O38, +O38:SP:2455,1,"COL DE LA CROIX PERRIN",45.130171,5.559865,0,0,O38:SA:CTP2453,Europe/Paris,,O38, +O38:SP:2457,1,"OFFICE DE TOURISME",45.129396,5.584219,0,0,O38:SA:CTP2457,Europe/Paris,,O38, +O38:SP:2459,1,"OFFICE DE TOURISME",45.129336,5.584265,0,0,O38:SA:CTP2457,Europe/Paris,,O38, +O38:SP:2460,1,"L'ECHARLIERE",45.164651,5.552982,0,0,O38:SA:CTP2460,Europe/Paris,,O38, +O38:SP:2461,1,"L'ECHARLIERE",45.164662,5.552882,0,0,O38:SA:CTP2460,Europe/Paris,,O38, +O38:SP:2462,1,"LES IMBEAUX",45.133656,5.531381,0,0,O38:SA:CTP2462,Europe/Paris,,O38, +O38:SP:2463,1,"LES IMBEAUX",45.132979,5.530671,0,0,O38:SA:CTP2462,Europe/Paris,,O38, +O38:SP:2465,1,"LES ROCHES ROUSSES",45.13848,5.60509,0,0,O38:SA:CTP2465,Europe/Paris,,O38, +O38:SP:2467,1,"LES ROCHES ROUSSES",45.138592,5.605361,0,0,O38:SA:CTP2465,Europe/Paris,,O38, +O38:SP:2468,1,"DONNETS CROIX LICHOU",45.145161,5.60788,0,0,O38:SA:CTP2468,Europe/Paris,,O38, +O38:SP:2469,1,"DONNETS CROIX LICHOU",45.145228,5.607844,0,0,O38:SA:CTP2468,Europe/Paris,,O38, +O38:SP:2471,1,"LA CHENEVARIE",45.133446,5.603883,0,0,O38:SA:CTP2471,Europe/Paris,,O38, +O38:SP:2473,1,"LA CHENEVARIE",45.133459,5.604339,0,0,O38:SA:CTP2471,Europe/Paris,,O38, +O38:SP:2475,1,"LES VOLANTS",45.157127,5.619437,0,0,O38:SA:CTP2475,Europe/Paris,,O38, +O38:SP:2477,1,"LES VOLANTS",45.156913,5.619295,0,0,O38:SA:CTP2475,Europe/Paris,,O38, +O38:SP:2479,1,"LE VILLAGE",45.171019,5.630142,0,0,O38:SA:CTP2479,Europe/Paris,,O38, +O38:SP:2481,1,"LE VILLAGE",45.170904,5.630402,0,0,O38:SA:CTP2479,Europe/Paris,,O38, +O38:SP:2483,1,"LA TOUR",45.166104,5.624705,0,0,O38:SA:CTP2483,Europe/Paris,,O38, +O38:SP:2485,1,"LA TOUR",45.16657,5.624351,0,0,O38:SA:CTP2483,Europe/Paris,,O38, +O38:SP:2487,1,"BAYARD",45.146156,5.705046,0,0,O38:SA:CTP2487,Europe/Paris,,O38, +O38:SP:2489,1,"BAYARD",45.145658,5.704667,0,0,O38:SA:CTP2487,Europe/Paris,,O38, +O38:SP:2492,1,"LOUISE MICHEL",45.169272,5.712821,0,0,O38:SA:CTP2492,Europe/Paris,,O38, +O38:SP:2494,1,"LOUISE MICHEL",45.169378,5.712625,0,0,O38:SA:CTP2492,Europe/Paris,,O38, +O38:SP:2504,1,"QUINZAINE",45.151617,5.706866,0,0,O38:SA:CTP2504,Europe/Paris,,O38, +O38:SP:2506,1,"QUINZAINE",45.151515,5.706668,0,0,O38:SA:CTP2504,Europe/Paris,,O38, +O38:SP:2508,1,"ILES DE MARS",45.131654,5.699973,0,0,O38:SA:CTP2508,Europe/Paris,,O38, +O38:SP:2510,1,"ILES DE MARS",45.131917,5.700238,0,0,O38:SA:CTP2508,Europe/Paris,,O38, +O38:SP:2524,1,"HAUTS DE SEYSSINS",45.161097,5.667895,0,0,O38:SA:CTP2524,Europe/Paris,,O38, +O38:SP:2526,1,"HAUTS DE SEYSSINS",45.160883,5.667726,0,0,O38:SA:CTP2524,Europe/Paris,,O38, +O38:SP:2528,1,"STADE LESDIGUIERES",45.163881,5.710787,0,0,O38:SA:CTP2528,Europe/Paris,,O38, +O38:SP:2530,1,"STADE LESDIGUIERES",45.16378,5.710991,0,0,O38:SA:CTP2528,Europe/Paris,,O38, +O38:SP:2534,1,"FLOTTIBULLE",45.137932,5.702103,0,0,O38:SA:CTP2534,Europe/Paris,,O38, +O38:SP:2536,1,"FLOTTIBULLE",45.137851,5.702229,0,0,O38:SA:CTP2534,Europe/Paris,,O38, +O38:SP:2540,1,"BEL AIR",45.164866,5.67152,0,0,O38:SA:CTP2540,Europe/Paris,,O38, +O38:SP:2542,1,"BEL AIR",45.164132,5.671579,0,0,O38:SA:CTP2540,Europe/Paris,,O38, +O38:SP:2544,1,"LA TOUR SANS VENIN",45.170687,5.666735,0,0,O38:SA:CTP2544,Europe/Paris,,O38, +O38:SP:2546,1,"LA TOUR SANS VENIN",45.171188,5.667105,0,0,O38:SA:CTP2544,Europe/Paris,,O38, +O38:SP:266,1,"GARE S.N.C.F",44.563603,6.085693,0,0,SIN:SA:OCE87763003,Europe/Paris,,O38, +O38:SP:2660,1,"LE PENET",45.15874,5.848355,0,0,O38:SA:CTP2660,Europe/Paris,,O38, +O38:SP:2662,1,"LE PENET",45.158667,5.84842,0,0,O38:SA:CTP2660,Europe/Paris,,O38, +O38:SP:2664,1,"MAIRIE",45.152171,5.838099,0,0,O38:SA:CTP2664,Europe/Paris,,O38, +O38:SP:2666,1,"MAIRIE",45.152225,5.838248,0,0,O38:SA:CTP2664,Europe/Paris,,O38, +O38:SP:2669,1,"LA GRIVOLEE",45.146244,5.855515,0,0,O38:SA:CTP2669,Europe/Paris,,O38, +O38:SP:267,1,"GARE S.N.C.F",44.563571,6.085635,0,0,SIN:SA:OCE87763003,Europe/Paris,,O38, +O38:SP:2671,1,"LA GRIVOLEE",45.146475,5.855471,0,0,O38:SA:CTP2669,Europe/Paris,,O38, +O38:SP:2673,1,"CROISEMENT 6",45.152955,5.825446,0,0,O38:SA:CTP2673,Europe/Paris,,O38, +O38:SP:2674,1,"CROISEMENT 6",45.152819,5.825458,0,0,O38:SA:CTP2673,Europe/Paris,,O38, +O38:SP:2676,1,"URIAGE GARE",45.144016,5.829159,0,0,O38:SA:CTP2676,Europe/Paris,,O38, +O38:SP:2678,1,"URIAGE GARE",45.144045,5.829403,0,0,O38:SA:CTP2676,Europe/Paris,,O38, +O38:SP:268,1,"ROCHASSON",44.569039,6.083336,0,0,O38:SA:CTP268,Europe/Paris,,O38, +O38:SP:2681,1,"CARREFOUR DE CHAMROUSSE",45.15501,5.840172,0,0,O38:SA:CTP2681,Europe/Paris,,O38, +O38:SP:2683,1,"CARREFOUR DE CHAMROUSSE",45.155289,5.840393,0,0,O38:SA:CTP2681,Europe/Paris,,O38, +O38:SP:2685,1,"HOPITAL THERMAL",45.140732,5.834995,0,0,O38:SA:CTP2685,Europe/Paris,,O38, +O38:SP:2687,1,"HOPITAL THERMAL",45.140563,5.834888,0,0,O38:SA:CTP2685,Europe/Paris,,O38, +O38:SP:2689,1,"BELMONT LA CHAPELLE",45.122314,5.829701,0,0,O38:SA:CTP2689,Europe/Paris,,O38, +O38:SP:269,1,"ROCHASSON",44.56884,6.083207,0,0,O38:SA:CTP268,Europe/Paris,,O38, +O38:SP:2691,1,"BELMONT LA CHAPELLE",45.122397,5.829516,0,0,O38:SA:CTP2689,Europe/Paris,,O38, +O38:SP:2693,1,"LE VACHER",45.136126,5.833483,0,0,O38:SA:CTP2693,Europe/Paris,,O38, +O38:SP:2695,1,"LE VACHER",45.136195,5.833536,0,0,O38:SA:CTP2693,Europe/Paris,,O38, +O38:SP:2697,1,"LE MOLLARD",45.144603,5.839538,0,0,O38:SA:CTP2697,Europe/Paris,,O38, +O38:SP:2699,1,"LE MOLLARD",45.144527,5.839503,0,0,O38:SA:CTP2697,Europe/Paris,,O38, +O38:SP:270,1,"VILLAGE",44.637946,6.085181,0,0,O38:SA:CTP270,Europe/Paris,,O38, +O38:SP:2703,1,"LES ALBERGES",45.130893,5.819007,0,0,O38:SA:CTP2703,Europe/Paris,,O38, +O38:SP:271,1,"VILLAGE",44.637868,6.085286,0,0,O38:SA:CTP270,Europe/Paris,,O38, +O38:SP:2712,1,"GS LA RICHARDIERE",45.144553,5.83604,0,0,O38:SA:CTP2712,Europe/Paris,,O38, +O38:SP:2714,1,"VILLENEUVE D'URIAGE",45.147781,5.819472,0,0,O38:SA:CTP2714,Europe/Paris,,O38, +O38:SP:2716,1,"VILLENEUVE D'URIAGE",45.1478,5.81957,0,0,O38:SA:CTP2714,Europe/Paris,,O38, +O38:SP:2718,1,"ROUTE DU BELIN",45.152522,5.846874,0,0,O38:SA:CTP2718,Europe/Paris,,O38, +O38:SP:272,1,"COL BAYARD",44.621124,6.082231,0,0,O38:SA:CTP272,Europe/Paris,,O38, +O38:SP:2720,1,"ROUTE DU BELIN",45.152594,5.846877,0,0,O38:SA:CTP2718,Europe/Paris,,O38, +O38:SP:2722,1,"ROUTE DU CHAVANOZ",45.150288,5.844387,0,0,O38:SA:CTP2722,Europe/Paris,,O38, +O38:SP:2724,1,"ROUTE DU CHAVANOZ",45.151078,5.844857,0,0,O38:SA:CTP2722,Europe/Paris,,O38, +O38:SP:2726,1,"LES ROUX",45.129054,5.826394,0,0,O38:SA:CTP2726,Europe/Paris,,O38, +O38:SP:2728,1,"LES ROUX",45.129114,5.826375,0,0,O38:SA:CTP2726,Europe/Paris,,O38, +O38:SP:273,1,"COL BAYARD",44.621143,6.082341,0,0,O38:SA:CTP272,Europe/Paris,,O38, +O38:SP:2730,1,"LA FERME",45.135476,5.836489,0,0,O38:SA:CTP2730,Europe/Paris,,O38, +O38:SP:2731,1,"LA FERME",45.135445,5.836377,0,0,O38:SA:CTP2730,Europe/Paris,,O38, +O38:SP:2733,1,"ROUTE DE ST MARTIN",45.139462,5.828172,0,0,O38:SA:CTP2733,Europe/Paris,,O38, +O38:SP:2735,1,"ROUTE DE ST MARTIN",45.139407,5.828057,0,0,O38:SA:CTP2733,Europe/Paris,,O38, +O38:SP:2737,1,"LES DAVIDS",45.128026,5.835076,0,0,O38:SA:CTP2737,Europe/Paris,,O38, +O38:SP:2739,1,"LES DAVIDS",45.128026,5.835009,0,0,O38:SA:CTP2737,Europe/Paris,,O38, +O38:SP:2745,1,"LE CHENIL",45.16312,5.812229,0,0,O38:SA:CTP2745,Europe/Paris,,O38, +O38:SP:2746,1,"LE CHENIL",45.163075,5.813066,0,0,O38:SA:CTP2745,Europe/Paris,,O38, +O38:SP:2748,1,"ST NIZIER D'URIAGE",45.164262,5.835067,0,0,O38:SA:CTP2748,Europe/Paris,,O38, +O38:SP:275,1,"LES BARRAQUES - ROND POINT",44.676779,6.070885,0,0,O38:SA:CTP275,Europe/Paris,,O38, +O38:SP:2750,1,"ST NIZIER D'URIAGE",45.164086,5.835087,0,0,O38:SA:CTP2748,Europe/Paris,,O38, +O38:SP:2752,1,"LE PINET D'URIAGE",45.165282,5.848999,0,0,O38:SA:CTP2752,Europe/Paris,,O38, +O38:SP:2754,1,"LE PINET D'URIAGE",45.165196,5.848906,0,0,O38:SA:CTP2752,Europe/Paris,,O38, +O38:SP:2755,1,"CARREFOUR DU REPLAT",45.16154,5.850976,0,0,O38:SA:CTP2755,Europe/Paris,,O38, +O38:SP:2756,1,"CARREFOUR DU REPLAT",45.161403,5.85092,0,0,O38:SA:CTP2755,Europe/Paris,,O38, +O38:SP:2757,1,"LOTISSEMENT LA NOYAREY",45.161806,5.842479,0,0,O38:SA:CTP2757,Europe/Paris,,O38, +O38:SP:2758,1,"LOTISSEMENT LA NOYAREY",45.161697,5.842758,0,0,O38:SA:CTP2757,Europe/Paris,,O38, +O38:SP:276,1,"LES BARRAQUES - ROND POINT",44.676759,6.070767,0,0,O38:SA:CTP275,Europe/Paris,,O38, +O38:SP:2760,1,"LE ROSSIN",45.158947,5.839944,0,0,O38:SA:CTP2760,Europe/Paris,,O38, +O38:SP:2762,1,"LE ROSSIN",45.158746,5.839951,0,0,O38:SA:CTP2760,Europe/Paris,,O38, +O38:SP:2764,1,"LE BOULOUD",45.137627,5.839467,0,0,O38:SA:CTP2764,Europe/Paris,,O38, +O38:SP:2766,1,"LE BOULOUD",45.137629,5.839378,0,0,O38:SA:CTP2764,Europe/Paris,,O38, +O38:SP:2768,1,"LA TUILERIE",45.136378,5.82475,0,0,O38:SA:CTP2768,Europe/Paris,,O38, +O38:SP:2769,1,"LA TUILERIE",45.136151,5.824214,0,0,O38:SA:CTP2768,Europe/Paris,,O38, +O38:SP:277,1,"BRUTINEL",44.654713,6.084875,0,0,O38:SA:CTP277,Europe/Paris,,O38, +O38:SP:2770,1,"LE MAUPAS",45.158903,5.819275,0,0,O38:SA:CTP2770,Europe/Paris,,O38, +O38:SP:2771,1,"LE MAUPAS",45.159209,5.819114,0,0,O38:SA:CTP2770,Europe/Paris,,O38, +O38:SP:2772,1,"LES PEIFFENDES",45.156796,5.823114,0,0,O38:SA:CTP2772,Europe/Paris,,O38, +O38:SP:2773,1,"LES PEIFFENDES",45.157185,5.822351,0,0,O38:SA:CTP2772,Europe/Paris,,O38, +O38:SP:2774,1,"HAUTES VUES",45.162965,5.839543,0,0,O38:SA:CTP2774,Europe/Paris,,O38, +O38:SP:2775,1,"HAUTES VUES",45.163044,5.839501,0,0,O38:SA:CTP2774,Europe/Paris,,O38, +O38:SP:2777,1,"LES BONNETS",45.149537,5.850266,0,0,O38:SA:CTP2777,Europe/Paris,,O38, +O38:SP:2779,1,"LES BONNETS",45.149476,5.850192,0,0,O38:SA:CTP2777,Europe/Paris,,O38, +O38:SP:278,1,"BRUTINEL",44.654823,6.084774,0,0,O38:SA:CTP277,Europe/Paris,,O38, +O38:SP:2781,1,"LA PISCINE",45.150666,5.837525,0,0,O38:SA:CTP2781,Europe/Paris,,O38, +O38:SP:2783,1,"LA PISCINE",45.150616,5.837508,0,0,O38:SA:CTP2781,Europe/Paris,,O38, +O38:SP:2784,1,"MAISON ROCHE",45.149143,5.855494,0,0,O38:SA:CTP2784,Europe/Paris,,O38, +O38:SP:2786,1,"BELMONT 3",45.124209,5.83092,0,0,O38:SA:CTP2786,Europe/Paris,,O38, +O38:SP:2788,1,"BELMONT 3",45.124173,5.831008,0,0,O38:SA:CTP2786,Europe/Paris,,O38, +O38:SP:279,1,"CHATEAU MEA",44.741637,5.765548,0,0,O38:SA:CTP279,Europe/Paris,,O38, +O38:SP:2790,1,"LES BLANCHERES 2",45.130932,5.830334,0,0,O38:SA:CTP2790,Europe/Paris,,O38, +O38:SP:2791,1,"LES BLANCHERES 2",45.130974,5.830259,0,0,O38:SA:CTP2790,Europe/Paris,,O38, +O38:SP:2793,1,"1650",45.126238,5.878289,0,0,O38:SA:CTP2793,Europe/Paris,,O38, +O38:SP:2795,1,"1650",45.126242,5.878342,0,0,O38:SA:CTP2793,Europe/Paris,,O38, +O38:SP:2798,1,"LES SEIGLIERES",45.15467,5.870733,0,0,O38:SA:CTP2798,Europe/Paris,,O38, +O38:SP:280,1,"CHATEAU MEA",44.741655,5.765491,0,0,O38:SA:CTP279,Europe/Paris,,O38, +O38:SP:2800,1,"LES SEIGLIERES",45.154191,5.871511,0,0,O38:SA:CTP2798,Europe/Paris,,O38, +O38:SP:2804,1,"PHARMACIE",45.123692,6.027112,0,0,O38:SA:CTP2804,Europe/Paris,,O38, +O38:SP:2805,1,"PHARMACIE",45.12372,6.027047,0,0,O38:SA:CTP2804,Europe/Paris,,O38, +O38:SP:2806,1,"LA PASSERELLE",45.12055,6.020183,0,0,O38:SA:CTP2806,Europe/Paris,,O38, +O38:SP:2807,1,"LA PASSERELLE",45.120522,6.02029,0,0,O38:SA:CTP2806,Europe/Paris,,O38, +O38:SP:281,1,"CHATEAU BAS PLACE",44.744547,5.746922,0,0,O38:SA:CTP281,Europe/Paris,,O38, +O38:SP:2810,1,"PLAN BARBIER",45.128796,6.040793,0,0,O38:SA:CTP2810,Europe/Paris,,O38, +O38:SP:2812,1,"PLAN BARBIER",45.128647,6.040504,0,0,O38:SA:CTP2810,Europe/Paris,,O38, +O38:SP:2815,1,"LES GRANDS CHAMPS",45.133629,6.04266,0,0,O38:SA:CTP2815,Europe/Paris,,O38, +O38:SP:2816,1,"LES GRANDS CHAMPS",45.133918,6.043047,0,0,O38:SA:CTP2815,Europe/Paris,,O38, +O38:SP:2817,1,"LA FONDERIE",45.126662,6.034423,0,0,O38:SA:CTP2817,Europe/Paris,,O38, +O38:SP:2818,1,"LA FONDERIE",45.126772,6.034568,0,0,O38:SA:CTP2817,Europe/Paris,,O38, +O38:SP:2819,1,"CITE LE VERNEY",45.14776,6.048384,0,0,O38:SA:CTP2819,Europe/Paris,,O38, +O38:SP:282,1,"CHATEAU BAS PLACE",44.744458,5.746807,0,0,O38:SA:CTP281,Europe/Paris,,O38, +O38:SP:2820,1,"CITE LE VERNEY",45.147772,6.048346,0,0,O38:SA:CTP2819,Europe/Paris,,O38, +O38:SP:2821,1,"LA CONDAMINE",45.14964,6.054467,0,0,O38:SA:CTP2821,Europe/Paris,,O38, +O38:SP:2822,1,"LA CONDAMINE",45.149922,6.053319,0,0,O38:SA:CTP2821,Europe/Paris,,O38, +O38:SP:2823,1,"POURCHERY",45.14924,6.058782,0,0,O38:SA:CTP2823,Europe/Paris,,O38, +O38:SP:2824,1,"POURCHERY",45.149262,6.059196,0,0,O38:SA:CTP2823,Europe/Paris,,O38, +O38:SP:2825,1,"CAR.D526-D44",45.13688,6.048974,0,0,O38:SA:CTP2825,Europe/Paris,,O38, +O38:SP:2826,1,"CAR.D526-D44",45.136867,6.04912,0,0,O38:SA:CTP2825,Europe/Paris,,O38, +O38:SP:2828,1,"VILLAGE",45.13996,6.052265,0,0,O38:SA:CTP2828,Europe/Paris,,O38, +O38:SP:2830,1,"VILLAGE",45.139956,6.052174,0,0,O38:SA:CTP2828,Europe/Paris,,O38, +O38:SP:2831,1,"LE ROBERAND",45.139076,6.052649,0,0,O38:SA:CTP2831,Europe/Paris,,O38, +O38:SP:2832,1,"LE ROBERAND",45.139089,6.052522,0,0,O38:SA:CTP2831,Europe/Paris,,O38, +O38:SP:2833,1,"LA BEURRIERE",45.124801,6.039994,0,0,O38:SA:CTP2833,Europe/Paris,,O38, +O38:SP:2834,1,"LA BEURRIERE",45.124863,6.039945,0,0,O38:SA:CTP2833,Europe/Paris,,O38, +O38:SP:2835,1,"LE VERNEY",45.147747,6.050059,0,0,O38:SA:CTP2835,Europe/Paris,,O38, +O38:SP:2836,1,"LE VERNEY",45.147749,6.050205,0,0,O38:SA:CTP2835,Europe/Paris,,O38, +O38:SP:2838,1,"LE RAFFOUR",45.115446,6.024802,0,0,O38:SA:CTP2838,Europe/Paris,,O38, +O38:SP:2839,1,"LE RAFFOUR",45.115438,6.024966,0,0,O38:SA:CTP2838,Europe/Paris,,O38, +O38:SP:2840,1,"RIF JANY",45.147888,6.05193,0,0,O38:SA:CTP2840,Europe/Paris,,O38, +O38:SP:2841,1,"RIF JANY",45.147959,6.052011,0,0,O38:SA:CTP2840,Europe/Paris,,O38, +O38:SP:2842,1,"GS LES ARDOISIERES",45.127167,6.03847,0,0,O38:SA:CTP2842,Europe/Paris,,O38, +O38:SP:2843,1,"GS LES ARDOISIERES",45.127226,6.038444,0,0,O38:SA:CTP2842,Europe/Paris,,O38, +O38:SP:2848,1,"L'EGLISE",45.157302,6.073157,0,0,O38:SA:CTP2848,Europe/Paris,,O38, +O38:SP:2849,1,"L'EGLISE",45.157598,6.073369,0,0,O38:SA:CTP2848,Europe/Paris,,O38, +O38:SP:2852,1,"STATION TELEPHERIQUE",45.15752,6.078366,0,0,O38:SA:CTP2852,Europe/Paris,,O38, +O38:SP:2854,1,"STATION TELEPHERIQUE",45.157687,6.077261,0,0,O38:SA:CTP2852,Europe/Paris,,O38, +O38:SP:2857,1,"HLM",45.159107,6.0799,0,0,O38:SA:CTP2857,Europe/Paris,,O38, +O38:SP:2858,1,"HLM",45.159122,6.079833,0,0,O38:SA:CTP2857,Europe/Paris,,O38, +O38:SP:2861,1,"MAISON ROUX",45.228768,5.198867,0,0,O38:SA:CTP2861,Europe/Paris,,O38, +O38:SP:2863,1,"CHAPELLE DE REDON",45.208679,5.252242,0,0,O38:SA:CTP2863,Europe/Paris,,O38, +O38:SP:2864,1,"CHAPELLE DE REDON",45.208671,5.252262,0,0,O38:SA:CTP2863,Europe/Paris,,O38, +O38:SP:2865,1,"VAUGRENIER",45.202814,5.262831,0,0,O38:SA:CTP2865,Europe/Paris,,O38, +O38:SP:2866,1,"VAUGRENIER",45.202826,5.262793,0,0,O38:SA:CTP2865,Europe/Paris,,O38, +O38:SP:2867,1,"BOURGEONNIERE",45.21656,5.208927,0,0,O38:SA:CTP2867,Europe/Paris,,O38, +O38:SP:2869,1,"LE MERCIER",45.198904,5.265118,0,0,O38:SA:CTP2869,Europe/Paris,,O38, +O38:SP:287,1,"LE SERRE",44.741856,5.780533,0,0,O38:SA:CTP287,Europe/Paris,,O38, +O38:SP:2870,1,"LE MERCIER",45.19885,5.26505,0,0,O38:SA:CTP2869,Europe/Paris,,O38, +O38:SP:2871,1,"CHAPPONAY",45.194949,5.205714,0,0,O38:SA:CTP2871,Europe/Paris,,O38, +O38:SP:2872,1,"CHAPPONAY",45.194996,5.205792,0,0,O38:SA:CTP2871,Europe/Paris,,O38, +O38:SP:2873,1,"DIONAY VILLAGE",45.203765,5.218334,0,0,O38:SA:CTP2873,Europe/Paris,,O38, +O38:SP:2874,1,"DIONAY VILLAGE",45.203693,5.218319,0,0,O38:SA:CTP2873,Europe/Paris,,O38, +O38:SP:2875,1,"LA VILLE D'OR",45.206562,5.226418,0,0,O38:SA:CTP2875,Europe/Paris,,O38, +O38:SP:2876,1,"LA VILLE D'OR",45.206598,5.226507,0,0,O38:SA:CTP2875,Europe/Paris,,O38, +O38:SP:2877,1,"CIMETIERE",45.200467,5.263719,0,0,O38:SA:CTP2877,Europe/Paris,,O38, +O38:SP:2878,1,"CIMETIERE",45.200467,5.263689,0,0,O38:SA:CTP2877,Europe/Paris,,O38, +O38:SP:2879,1,"L'ORNIERE",45.188501,5.244793,0,0,O38:SA:CTP2879,Europe/Paris,,O38, +O38:SP:288,1,"LE SERRE",44.741948,5.780574,0,0,O38:SA:CTP287,Europe/Paris,,O38, +O38:SP:2880,1,"L'ORNIERE",45.188498,5.244895,0,0,O38:SA:CTP2879,Europe/Paris,,O38, +O38:SP:2881,1,"L'AIGUE NOIRE",45.229606,5.239299,0,0,O38:SA:CTP2881,Europe/Paris,,O38, +O38:SP:2885,1,"ECOLE PRIMAIRE",45.188397,5.261543,0,0,O38:SA:CTP2885,Europe/Paris,,O38, +O38:SP:2886,1,"ECOLE PRIMAIRE",45.188333,5.261592,0,0,O38:SA:CTP2885,Europe/Paris,,O38, +O38:SP:2887,1,"MAS DE PEROLLIERE",45.209649,5.219052,0,0,O38:SA:CTP2887,Europe/Paris,,O38, +O38:SP:2889,1,"LA SAPINIERE",45.217342,5.229206,0,0,O38:SA:CTP2889,Europe/Paris,,O38, +O38:SP:289,1,"PONT DE LA GUINGUETTE",44.734189,6.00387,0,0,O38:SA:CTP289,Europe/Paris,,O38, +O38:SP:2890,1,"LA SAPINIERE",45.217404,5.229153,0,0,O38:SA:CTP2889,Europe/Paris,,O38, +O38:SP:2891,1,"LE BOURG",45.187737,5.261248,0,0,O38:SA:CTP2891,Europe/Paris,,O38, +O38:SP:2892,1,"LE BOURG",45.18773,5.261232,0,0,O38:SA:CTP2891,Europe/Paris,,O38, +O38:SP:2893,1,"CURTECHIN",45.194633,5.247926,0,0,O38:SA:CTP2893,Europe/Paris,,O38, +O38:SP:2894,1,"CURTECHIN",45.194602,5.248019,0,0,O38:SA:CTP2893,Europe/Paris,,O38, +O38:SP:2896,1,"L'AIGUE NOIRE HAUT",45.226967,5.237085,0,0,O38:SA:CTP2896,Europe/Paris,,O38, +O38:SP:2897,1,"LA MATHIEU",45.183651,5.304967,0,0,O38:SA:CTP2897,Europe/Paris,,O38, +O38:SP:2898,1,"LA MATHIEU",45.183714,5.304918,0,0,O38:SA:CTP2897,Europe/Paris,,O38, +O38:SP:2899,1,"LES GARENNES",45.19799,5.290441,0,0,O38:SA:CTP2899,Europe/Paris,,O38, +O38:SP:290,1,"PONT DE LA GUINGUETTE",44.734268,6.00395,0,0,O38:SA:CTP289,Europe/Paris,,O38, +O38:SP:2900,1,"LES GARENNES",45.197985,5.29034,0,0,O38:SA:CTP2899,Europe/Paris,,O38, +O38:SP:2901,1,"BLAGNEUX CHATEAU",45.185177,5.305793,0,0,O38:SA:CTP2901,Europe/Paris,,O38, +O38:SP:2902,1,"BLAGNEUX CHATEAU",45.185183,5.305691,0,0,O38:SA:CTP2901,Europe/Paris,,O38, +O38:SP:2903,1,"CHEMIN DE MESSINS",45.224776,5.29292,0,0,O38:SA:CTP2903,Europe/Paris,,O38, +O38:SP:2904,1,"CHEMIN DE MESSINS",45.224774,5.293022,0,0,O38:SA:CTP2903,Europe/Paris,,O38, +O38:SP:2905,1,"LA CROIX ROUGE",45.218561,5.295327,0,0,O38:SA:CTP2905,Europe/Paris,,O38, +O38:SP:2906,1,"LA CROIX ROUGE",45.218579,5.295291,0,0,O38:SA:CTP2905,Europe/Paris,,O38, +O38:SP:2907,1,"BAYANNES",45.19288,5.31098,0,0,O38:SA:CTP2907,Europe/Paris,,O38, +O38:SP:2908,1,"BAYANNES",45.192929,5.311093,0,0,O38:SA:CTP2907,Europe/Paris,,O38, +O38:SP:2909,1,"BLAGNEUX",45.185274,5.309681,0,0,O38:SA:CTP2909,Europe/Paris,,O38, +O38:SP:291,1,"PONT VALLA",44.712266,6.032439,0,0,O38:SA:CTP291,Europe/Paris,,O38, +O38:SP:2910,1,"BLAGNEUX",45.185345,5.309691,0,0,O38:SA:CTP2909,Europe/Paris,,O38, +O38:SP:2911,1,"PONT DU RAILLET",45.191449,5.273918,0,0,O38:SA:CTP2911,Europe/Paris,,O38, +O38:SP:2912,1,"PONT DU RAILLET",45.191454,5.27402,0,0,O38:SA:CTP2911,Europe/Paris,,O38, +O38:SP:2913,1,"ECOLE",45.188288,5.291552,0,0,O38:SA:CTP2913,Europe/Paris,,O38, +O38:SP:2914,1,"ECOLE",45.188312,5.291455,0,0,O38:SA:CTP2913,Europe/Paris,,O38, +O38:SP:2915,1,"CAR.DE MURINAIS",45.191393,5.295134,0,0,O38:SA:CTP2915,Europe/Paris,,O38, +O38:SP:2916,1,"CAR.DE MURINAIS",45.191457,5.295088,0,0,O38:SA:CTP2915,Europe/Paris,,O38, +O38:SP:2917,1,"PORTE ET GARIOLLE-CHATEAU ROST",45.187067,5.287451,0,0,O38:SA:CTP2917,Europe/Paris,,O38, +O38:SP:2918,1,"PORTE ET GARIOLLE-CHATEAU ROST",45.187136,5.287426,0,0,O38:SA:CTP2917,Europe/Paris,,O38, +O38:SP:2919,1,"GIRARDIERE-FLATS",45.206362,5.294207,0,0,O38:SA:CTP2919,Europe/Paris,,O38, +O38:SP:292,1,"PONT VALLA",44.71278,6.031778,0,0,O38:SA:CTP291,Europe/Paris,,O38, +O38:SP:2920,1,"GIRARDIERE-FLATS",45.206365,5.294105,0,0,O38:SA:CTP2919,Europe/Paris,,O38, +O38:SP:2921,1,"BOURG",45.187758,5.290278,0,0,O38:SA:CTP2921,Europe/Paris,,O38, +O38:SP:2922,1,"BOURG",45.187697,5.290332,0,0,O38:SA:CTP2921,Europe/Paris,,O38, +O38:SP:2923,1,"LES PLATRES",45.227968,5.292119,0,0,O38:SA:CTP2923,Europe/Paris,,O38, +O38:SP:2924,1,"LES PLATRES",45.227956,5.292184,0,0,O38:SA:CTP2923,Europe/Paris,,O38, +O38:SP:2925,1,"CROIST.PORTE ET GARIOLLE-RD20A",45.186095,5.281579,0,0,O38:SA:CTP2925,Europe/Paris,,O38, +O38:SP:2926,1,"CROIST.PORTE ET GARIOLLE-RD20A",45.186043,5.281508,0,0,O38:SA:CTP2925,Europe/Paris,,O38, +O38:SP:2927,1,"LE COLOMBIER",45.204255,5.310557,0,0,O38:SA:CTP2927,Europe/Paris,,O38, +O38:SP:2928,1,"LE COLOMBIER",45.204282,5.310463,0,0,O38:SA:CTP2927,Europe/Paris,,O38, +O38:SP:2929,1,"ECOLE",45.213367,5.314661,0,0,O38:SA:CTP2929,Europe/Paris,,O38, +O38:SP:293,1,"CHAMOIS D'OR",44.789532,5.634074,0,0,O38:SA:CTP293,Europe/Paris,,O38, +O38:SP:2930,1,"ECOLE",45.21337,5.314763,0,0,O38:SA:CTP2929,Europe/Paris,,O38, +O38:SP:2931,1,"LE CHATEAU",45.210925,5.317526,0,0,O38:SA:CTP2931,Europe/Paris,,O38, +O38:SP:2933,1,"FERME MAZARIN",45.229815,5.313207,0,0,O38:SA:CTP2933,Europe/Paris,,O38, +O38:SP:2934,1,"FERME MAZARIN",45.22978,5.313191,0,0,O38:SA:CTP2933,Europe/Paris,,O38, +O38:SP:2935,1,"LES ABEILLES",45.206651,5.307065,0,0,O38:SA:CTP2935,Europe/Paris,,O38, +O38:SP:2936,1,"LES ABEILLES",45.206709,5.307006,0,0,O38:SA:CTP2935,Europe/Paris,,O38, +O38:SP:2937,1,"VILLAGE",45.212304,5.315007,0,0,O38:SA:CTP2937,Europe/Paris,,O38, +O38:SP:2938,1,"VILLAGE",45.212308,5.315108,0,0,O38:SA:CTP2937,Europe/Paris,,O38, +O38:SP:2939,1,"COMBE DE MOUZE II",45.202761,5.278811,0,0,O38:SA:CTP2939,Europe/Paris,,O38, +O38:SP:294,1,"CHAMOIS D'OR",44.789563,5.634127,0,0,O38:SA:CTP293,Europe/Paris,,O38, +O38:SP:2940,1,"COMBE DE MOUZE II",45.202751,5.278911,0,0,O38:SA:CTP2939,Europe/Paris,,O38, +O38:SP:2943,1,"LA COMBE PERRERAS",45.223644,5.32159,0,0,O38:SA:CTP2943,Europe/Paris,,O38, +O38:SP:2944,1,"LA COMBE PERRERAS",45.22368,5.321679,0,0,O38:SA:CTP2943,Europe/Paris,,O38, +O38:SP:2945,1,"COMBE DE MOUZE I",45.207305,5.276149,0,0,O38:SA:CTP2945,Europe/Paris,,O38, +O38:SP:2947,1,"LES COMBES",45.227806,5.301298,0,0,O38:SA:CTP2947,Europe/Paris,,O38, +O38:SP:2948,1,"LES COMBES",45.227845,5.301382,0,0,O38:SA:CTP2947,Europe/Paris,,O38, +O38:SP:2949,1,"INTERSECTION DES JOUX",45.210745,5.293647,0,0,O38:SA:CTP2949,Europe/Paris,,O38, +O38:SP:295,1,"ESPARON(RN75)",44.7884,5.635324,0,0,O38:SA:CTP295,Europe/Paris,,O38, +O38:SP:2950,1,"INTERSECTION DES JOUX",45.210756,5.293748,0,0,O38:SA:CTP2949,Europe/Paris,,O38, +O38:SP:2951,1,"LE BURDY",45.20865,5.310041,0,0,O38:SA:CTP2951,Europe/Paris,,O38, +O38:SP:2952,1,"LE BURDY",45.208738,5.310209,0,0,O38:SA:CTP2951,Europe/Paris,,O38, +O38:SP:2953,1,"LES SELLIERS",45.194148,5.302704,0,0,O38:SA:CTP2953,Europe/Paris,,O38, +O38:SP:2954,1,"LES SELLIERS",45.194214,5.30266,0,0,O38:SA:CTP2953,Europe/Paris,,O38, +O38:SP:2955,1,"LES AYES",45.21905,5.322803,0,0,O38:SA:CTP2955,Europe/Paris,,O38, +O38:SP:2956,1,"LES AYES",45.219063,5.322743,0,0,O38:SA:CTP2955,Europe/Paris,,O38, +O38:SP:2957,1,"PLAN DE L'ORME",45.197651,5.311303,0,0,O38:SA:CTP2957,Europe/Paris,,O38, +O38:SP:2958,1,"PLAN DE L'ORME",45.197664,5.311403,0,0,O38:SA:CTP2957,Europe/Paris,,O38, +O38:SP:2959,1,"LE BRESSOT",45.19909,5.384283,0,0,O38:SA:CTP2959,Europe/Paris,,O38, +O38:SP:296,1,"ESPARON(RN75)",44.788352,5.63525,0,0,O38:SA:CTP295,Europe/Paris,,O38, +O38:SP:2960,1,"LE BRESSOT",45.199097,5.384384,0,0,O38:SA:CTP2959,Europe/Paris,,O38, +O38:SP:2961,1,"MAISON CAPTIN",45.183378,5.389352,0,0,O38:SA:CTP2961,Europe/Paris,,O38, +O38:SP:2964,1,"BONNETIERE",45.187964,5.391758,0,0,O38:SA:CTP2964,Europe/Paris,,O38, +O38:SP:2965,1,"ECOLE MATERNELLE",45.192827,5.394555,0,0,O38:SA:CTP2965,Europe/Paris,,O38, +O38:SP:2966,1,"ECOLE MATERNELLE",45.192852,5.394507,0,0,O38:SA:CTP2965,Europe/Paris,,O38, +O38:SP:2968,1,"LE GUA-VC 15",45.189736,5.394872,0,0,O38:SA:CTP2968,Europe/Paris,,O38, +O38:SP:2969,1,"MAISON MANDIER",45.196853,5.388417,0,0,O38:SA:CTP2969,Europe/Paris,,O38, +O38:SP:297,1,"CASSEYRE",44.787052,5.631896,0,0,O38:SA:CTP297,Europe/Paris,,O38, +O38:SP:2970,1,"MAISON MANDIER",45.196831,5.388514,0,0,O38:SA:CTP2969,Europe/Paris,,O38, +O38:SP:2971,1,"LE VILLAGE",45.193935,5.392517,0,0,O38:SA:CTP2971,Europe/Paris,,O38, +O38:SP:2972,1,"LE VILLAGE",45.193825,5.39267,0,0,O38:SA:CTP2971,Europe/Paris,,O38, +O38:SP:2973,1,"MONTESSUT",45.200765,5.389065,0,0,O38:SA:CTP2973,Europe/Paris,,O38, +O38:SP:2974,1,"MONTESSUT",45.200752,5.388966,0,0,O38:SA:CTP2973,Europe/Paris,,O38, +O38:SP:2975,1,"LA GAUCHERIE",45.182762,5.337891,0,0,O38:SA:CTP2975,Europe/Paris,,O38, +O38:SP:2976,1,"LA GAUCHERIE",45.182807,5.337811,0,0,O38:SA:CTP2975,Europe/Paris,,O38, +O38:SP:2978,1,"MAISON BRACHET",45.181657,5.373301,0,0,O38:SA:CTP2978,Europe/Paris,,O38, +O38:SP:2979,1,"MONTEE DE TECHE",45.187258,5.384183,0,0,O38:SA:CTP2979,Europe/Paris,,O38, +O38:SP:298,1,"LES BAYLES",44.790589,5.657976,0,0,O38:SA:CTP298,Europe/Paris,,O38, +O38:SP:2980,1,"LA CROIX BLEUE",45.220119,5.346748,0,0,O38:SA:CTP2980,Europe/Paris,,O38, +O38:SP:2981,1,"LA CROIX BLEUE",45.220162,5.346668,0,0,O38:SA:CTP2980,Europe/Paris,,O38, +O38:SP:2984,1,"CHAMPMOYET ZI",45.207084,5.352606,0,0,O38:SA:CTP2984,Europe/Paris,,O38, +O38:SP:2985,1,"CHAMPMOYET ZI",45.207021,5.352652,0,0,O38:SA:CTP2984,Europe/Paris,,O38, +O38:SP:2986,1,"MASSARET",45.223544,5.343685,0,0,O38:SA:CTP2986,Europe/Paris,,O38, +O38:SP:2987,1,"MASSARET",45.223004,5.344106,0,0,O38:SA:CTP2986,Europe/Paris,,O38, +O38:SP:2988,1,"JACQUETIERE",45.227782,5.35996,0,0,O38:SA:CTP2988,Europe/Paris,,O38, +O38:SP:299,1,"LES BAYLES",44.79055,5.657892,0,0,O38:SA:CTP298,Europe/Paris,,O38, +O38:SP:2990,1,"QUINCIVET",45.197994,5.347062,0,0,O38:SA:CTP2990,Europe/Paris,,O38, +O38:SP:2991,1,"QUINCIVET",45.197976,5.34716,0,0,O38:SA:CTP2990,Europe/Paris,,O38, +O38:SP:2992,1,"LES SABLES",45.18866,5.344358,0,0,O38:SA:CTP2992,Europe/Paris,,O38, +O38:SP:2993,1,"LES SABLES",45.18871,5.344283,0,0,O38:SA:CTP2992,Europe/Paris,,O38, +O38:SP:2995,1,"LE CHATELARD",45.188831,5.377561,0,0,O38:SA:CTP2995,Europe/Paris,,O38, +O38:SP:2997,1,"MAISON JANY",45.186796,5.347554,0,0,O38:SA:CTP2997,Europe/Paris,,O38, +O38:SP:2999,1,"LE ROLLAND",45.190257,5.356298,0,0,O38:SA:CTP2999,Europe/Paris,,O38, +O38:SP:300,1,"SERRE DES BAILES",44.791676,5.665278,0,0,O38:SA:CTP300,Europe/Paris,,O38, +O38:SP:3001,1,"LE ROSSAT",45.187451,5.359473,0,0,O38:SA:CTP3001,Europe/Paris,,O38, +O38:SP:3003,1,"ECOLE",45.182696,5.380597,0,0,O38:SA:CTP3003,Europe/Paris,,O38, +O38:SP:3004,1,"ECOLE",45.182672,5.380544,0,0,O38:SA:CTP3003,Europe/Paris,,O38, +O38:SP:3005,1,"MAISON PUY",45.184206,5.379339,0,0,O38:SA:CTP3005,Europe/Paris,,O38, +O38:SP:3007,1,"LES MACHURIERES",45.201365,5.348679,0,0,O38:SA:CTP3007,Europe/Paris,,O38, +O38:SP:3008,1,"LES MACHURIERES",45.201498,5.348684,0,0,O38:SA:CTP3007,Europe/Paris,,O38, +O38:SP:3009,1,"LE VILLAGE",45.183661,5.381989,0,0,O38:SA:CTP3009,Europe/Paris,,O38, +O38:SP:301,1,"SERRE DES BAILES",44.791789,5.66566,0,0,O38:SA:CTP300,Europe/Paris,,O38, +O38:SP:3010,1,"LE VILLAGE",45.183596,5.381957,0,0,O38:SA:CTP3009,Europe/Paris,,O38, +O38:SP:3011,1,"CHIRONAY",45.229003,5.352445,0,0,O38:SA:CTP3011,Europe/Paris,,O38, +O38:SP:3012,1,"CHIRONAY",45.229066,5.352497,0,0,O38:SA:CTP3011,Europe/Paris,,O38, +O38:SP:3014,1,"LES FORGES",45.185195,5.340639,0,0,O38:SA:CTP3014,Europe/Paris,,O38, +O38:SP:3016,1,"CHEMIN DES QUATRE VIES",45.214581,5.390137,0,0,O38:SA:CTP3016,Europe/Paris,,O38, +O38:SP:3017,1,"PISCINE",45.20725,5.399751,0,0,O38:SA:CTP3017,Europe/Paris,,O38, +O38:SP:3018,1,"PISCINE",45.207492,5.399783,0,0,O38:SA:CTP3017,Europe/Paris,,O38, +O38:SP:3019,1,"GONNARDIERE",45.226956,5.402038,0,0,O38:SA:CTP3019,Europe/Paris,,O38, +O38:SP:302,1,"AVERS",44.769893,5.700617,0,0,O38:SA:CTP302,Europe/Paris,,O38, +O38:SP:3020,1,"GONNARDIERE",45.227239,5.401998,0,0,O38:SA:CTP3019,Europe/Paris,,O38, +O38:SP:3021,1,"VOZELLE",45.215512,5.351258,0,0,O38:SA:CTP3021,Europe/Paris,,O38, +O38:SP:3022,1,"VOZELLE",45.215485,5.351163,0,0,O38:SA:CTP3021,Europe/Paris,,O38, +O38:SP:3023,1,"LES GELINIERES",45.197403,5.448523,0,0,O38:SA:CTP3023,Europe/Paris,,O38, +O38:SP:3024,1,"LES GELINIERES",45.19734,5.448572,0,0,O38:SA:CTP3023,Europe/Paris,,O38, +O38:SP:3025,1,"LES CHARRETS",45.194965,5.445029,0,0,O38:SA:CTP3025,Europe/Paris,,O38, +O38:SP:3026,1,"LES CHARRETS",45.194933,5.44493,0,0,O38:SA:CTP3025,Europe/Paris,,O38, +O38:SP:3027,1,"RIQUETIERE",45.203804,5.452759,0,0,O38:SA:CTP3027,Europe/Paris,,O38, +O38:SP:3028,1,"RIQUETIERE",45.203782,5.452929,0,0,O38:SA:CTP3027,Europe/Paris,,O38, +O38:SP:3029,1,"MAISON BARDIN",45.183564,5.409042,0,0,O38:SA:CTP3029,Europe/Paris,,O38, +O38:SP:303,1,"AVERS",44.769912,5.700974,0,0,O38:SA:CTP302,Europe/Paris,,O38, +O38:SP:3031,1,"LE VILLAGE",45.223289,5.439493,0,0,O38:SA:CTP3031,Europe/Paris,,O38, +O38:SP:3032,1,"LE VILLAGE",45.223459,5.43949,0,0,O38:SA:CTP3031,Europe/Paris,,O38, +O38:SP:3033,1,"CARREFOUR BIVAN",45.21191,5.46178,0,0,O38:SA:CTP3033,Europe/Paris,,O38, +O38:SP:3034,1,"CARREFOUR BIVAN",45.211892,5.461838,0,0,O38:SA:CTP3033,Europe/Paris,,O38, +O38:SP:3036,1,"PACALIERE",45.215979,5.46425,0,0,O38:SA:CTP3036,Europe/Paris,,O38, +O38:SP:3037,1,"LA GARE",45.221155,5.447435,0,0,O38:SA:CTP3037,Europe/Paris,,O38, +O38:SP:3038,1,"LA GARE",45.221223,5.447468,0,0,O38:SA:CTP3037,Europe/Paris,,O38, +O38:SP:3039,1,"CAMINIERE",45.20887,5.460356,0,0,O38:SA:CTP3039,Europe/Paris,,O38, +O38:SP:3040,1,"CAMINIERE",45.208818,5.460287,0,0,O38:SA:CTP3039,Europe/Paris,,O38, +O38:SP:3041,1,"LA CROIX ROUGE",45.216431,5.45575,0,0,O38:SA:CTP3041,Europe/Paris,,O38, +O38:SP:3042,1,"LA CROIX ROUGE",45.216373,5.45582,0,0,O38:SA:CTP3041,Europe/Paris,,O38, +O38:SP:3043,1,"LES ROUTES",45.190129,5.403547,0,0,O38:SA:CTP3043,Europe/Paris,,O38, +O38:SP:3045,1,"MAISON REVOUX",45.19921,5.402208,0,0,O38:SA:CTP3045,Europe/Paris,,O38, +O38:SP:3048,1,"MAISON BIT-MIGNON",45.191891,5.419445,0,0,O38:SA:CTP3048,Europe/Paris,,O38, +O38:SP:3050,1,"MAISON MONTAZ",45.200208,5.407625,0,0,O38:SA:CTP3050,Europe/Paris,,O38, +O38:SP:3051,1,"HAMEAU DE CHASSE",45.186788,5.413675,0,0,O38:SA:CTP3051,Europe/Paris,,O38, +O38:SP:3053,1,"COOPERATIVE NOIX",45.213817,5.417352,0,0,O38:SA:CTP3053,Europe/Paris,,O38, +O38:SP:3054,1,"COOPERATIVE NOIX",45.213861,5.417088,0,0,O38:SA:CTP3053,Europe/Paris,,O38, +O38:SP:3055,1,"BOUCHETIERE",45.203297,5.438636,0,0,O38:SA:CTP3055,Europe/Paris,,O38, +O38:SP:3056,1,"BOUCHETIERE",45.203225,5.438632,0,0,O38:SA:CTP3055,Europe/Paris,,O38, +O38:SP:3057,1,"PONT DE TRELLINS",45.193749,5.426737,0,0,O38:SA:CTP3057,Europe/Paris,,O38, +O38:SP:3058,1,"PONT DE TRELLINS",45.193319,5.426511,0,0,O38:SA:CTP3057,Europe/Paris,,O38, +O38:SP:3059,1,"LE PORT",45.207541,5.467648,0,0,O38:SA:CTP3059,Europe/Paris,,O38, +O38:SP:3060,1,"LE PORT",45.207595,5.467715,0,0,O38:SA:CTP3059,Europe/Paris,,O38, +O38:SP:3061,1,"CHAMOUNIER",45.202334,5.464159,0,0,O38:SA:CTP3061,Europe/Paris,,O38, +O38:SP:3062,1,"CHAMOUNIER",45.202307,5.464253,0,0,O38:SA:CTP3061,Europe/Paris,,O38, +O38:SP:3063,1,"ROUTE DE ROVON",45.203787,5.464677,0,0,O38:SA:CTP3063,Europe/Paris,,O38, +O38:SP:3064,1,"ECOLE",45.200534,5.460237,0,0,O38:SA:CTP3064,Europe/Paris,,O38, +O38:SP:3065,1,"ECOLE",45.200537,5.460318,0,0,O38:SA:CTP3064,Europe/Paris,,O38, +O38:SP:3066,1,"BOURG ABRI",45.200531,5.46025,0,0,O38:SA:CTP3066,Europe/Paris,,O38, +O38:SP:3067,1,"BOURG ABRI",45.200474,5.460195,0,0,O38:SA:CTP3066,Europe/Paris,,O38, +O38:SP:3068,1,"ECOLES LA MAYETTE 2",45.208335,5.405,0,0,O38:SA:CTP3068,Europe/Paris,,O38, +O38:SP:3069,1,"ECOLES LA MAYETTE 2",45.208245,5.404965,0,0,O38:SA:CTP3068,Europe/Paris,,O38, +O38:SP:307,1,"LALLEY",44.757864,5.677509,0,0,O38:SA:CTP307,Europe/Paris,,O38, +O38:SP:3072,1,"L'ALLEGRERIE",45.216312,5.429027,0,0,O38:SA:CTP3072,Europe/Paris,,O38, +O38:SP:3073,1,"L'ALLEGRERIE",45.216297,5.428721,0,0,O38:SA:CTP3072,Europe/Paris,,O38, +O38:SP:3074,1,"COL.J.CHASSIGNEUX",45.210748,5.40938,0,0,O38:SA:CTP3074,Europe/Paris,,O38, +O38:SP:3075,1,"COL.J.CHASSIGNEUX",45.210814,5.409305,0,0,O38:SA:CTP3074,Europe/Paris,,O38, +O38:SP:3076,1,"CROIX PERPIGNAN GARE",45.212134,5.408868,0,0,O38:SA:CTP3076,Europe/Paris,,O38, +O38:SP:3077,1,"CROIX PERPIGNAN GARE",45.212285,5.409096,0,0,O38:SA:CTP3076,Europe/Paris,,O38, +O38:SP:3078,1,"MAIRIE",45.210759,5.403918,0,0,O38:SA:CTP3078,Europe/Paris,,O38, +O38:SP:3079,1,"MAIRIE",45.210417,5.403425,0,0,O38:SA:CTP3078,Europe/Paris,,O38, +O38:SP:308,1,"LE BOURG - ECOLE",44.794046,5.658487,0,0,O38:SA:CTP308,Europe/Paris,,O38, +O38:SP:3080,1,"LES AYES",45.21662,5.403347,0,0,O38:SA:CTP3080,Europe/Paris,,O38, +O38:SP:3081,1,"LES AYES",45.216186,5.402843,0,0,O38:SA:CTP3080,Europe/Paris,,O38, +O38:SP:3084,1,"CHAMP DE MARS",45.211118,5.40506,0,0,O38:SA:CTP3084,Europe/Paris,,O38, +O38:SP:3085,1,"CHAMP DE MARS",45.211186,5.405024,0,0,O38:SA:CTP3084,Europe/Paris,,O38, +O38:SP:3086,1,"ROCHES DE VERDUN",45.223544,5.47436,0,0,O38:SA:CTP3086,Europe/Paris,,O38, +O38:SP:3087,1,"ROCHES DE VERDUN",45.223544,5.474258,0,0,O38:SA:CTP3086,Europe/Paris,,O38, +O38:SP:3088,1,"LE MOULIN",45.2197,5.473968,0,0,O38:SA:CTP3088,Europe/Paris,,O38, +O38:SP:3089,1,"LE MOULIN",45.219676,5.474064,0,0,O38:SA:CTP3088,Europe/Paris,,O38, +O38:SP:309,1,"LE BOURG - ECOLE",44.794075,5.658506,0,0,O38:SA:CTP308,Europe/Paris,,O38, +O38:SP:3090,1,"ECOLES",45.201537,5.478544,0,0,O38:SA:CTP3090,Europe/Paris,,O38, +O38:SP:3091,1,"ECOLES",45.201465,5.478526,0,0,O38:SA:CTP3090,Europe/Paris,,O38, +O38:SP:3092,1,"LE REGONFLE",45.207387,5.482934,0,0,O38:SA:CTP3092,Europe/Paris,,O38, +O38:SP:3093,1,"LE REGONFLE",45.207642,5.483264,0,0,O38:SA:CTP3092,Europe/Paris,,O38, +O38:SP:3094,1,"CHAMP-FLEURI",45.201941,5.475143,0,0,O38:SA:CTP3094,Europe/Paris,,O38, +O38:SP:3095,1,"CHAMP-FLEURI",45.20201,5.475171,0,0,O38:SA:CTP3094,Europe/Paris,,O38, +O38:SP:3096,1,"BOURG",45.201707,5.481435,0,0,O38:SA:CTP3096,Europe/Paris,,O38, +O38:SP:3097,1,"BOURG",45.201628,5.481539,0,0,O38:SA:CTP3096,Europe/Paris,,O38, +O38:SP:3098,1,"LE LIGNET",45.22463,5.494962,0,0,O38:SA:CTP3098,Europe/Paris,,O38, +O38:SP:3099,1,"LE LIGNET",45.224655,5.494867,0,0,O38:SA:CTP3098,Europe/Paris,,O38, +O38:SP:310,1,"LES FOURCHAUX",44.77228,5.65574,0,0,O38:SA:CTP310,Europe/Paris,,O38, +O38:SP:3101,1,"AUTRANS ECOLES",45.176762,5.543413,0,0,O38:SA:CTP3101,Europe/Paris,,O38, +O38:SP:3102,1,"AUTRANS ECOLES",45.176796,5.543558,0,0,O38:SA:CTP3101,Europe/Paris,,O38, +O38:SP:3103,1,"LES PRUDHOMMES",45.201241,5.570699,0,0,O38:SA:CTP3103,Europe/Paris,,O38, +O38:SP:3104,1,"LES PRUDHOMMES",45.201298,5.570654,0,0,O38:SA:CTP3103,Europe/Paris,,O38, +O38:SP:3105,1,"VILLENEUVE(RD 218)",45.194291,5.566616,0,0,O38:SA:CTP3105,Europe/Paris,,O38, +O38:SP:3106,1,"VILLENEUVE(RD 218)",45.194327,5.566529,0,0,O38:SA:CTP3105,Europe/Paris,,O38, +O38:SP:3107,1,"LES ANEMONES",45.180526,5.555147,0,0,O38:SA:CTP3107,Europe/Paris,,O38, +O38:SP:3108,1,"LES ANEMONES",45.180524,5.555252,0,0,O38:SA:CTP3107,Europe/Paris,,O38, +O38:SP:3109,1,"EYBERTIERE(RD 218)",45.183583,5.558733,0,0,O38:SA:CTP3109,Europe/Paris,,O38, +O38:SP:311,1,"LES FOURCHAUX",44.772259,5.655884,0,0,O38:SA:CTP310,Europe/Paris,,O38, +O38:SP:3110,1,"EYBERTIERE(RD 218)",45.183425,5.558714,0,0,O38:SA:CTP3109,Europe/Paris,,O38, +O38:SP:3111,1,"LE CHATEAU(X OCCAJ)",45.178668,5.551251,0,0,O38:SA:CTP3111,Europe/Paris,,O38, +O38:SP:3112,1,"LE CHATEAU(X OCCAJ)",45.178728,5.551194,0,0,O38:SA:CTP3111,Europe/Paris,,O38, +O38:SP:3113,1,"TRANSFORMATEUR",45.182014,5.544737,0,0,O38:SA:CTP3113,Europe/Paris,,O38, +O38:SP:3114,1,"TRANSFORMATEUR",45.182151,5.544689,0,0,O38:SA:CTP3113,Europe/Paris,,O38, +O38:SP:3115,1,"BOURG LE DESSOUS",45.180923,5.541165,0,0,O38:SA:CTP3115,Europe/Paris,,O38, +O38:SP:3116,1,"BOURG LE DESSOUS",45.180885,5.54128,0,0,O38:SA:CTP3115,Europe/Paris,,O38, +O38:SP:3117,1,"EYBERTIERE",45.186342,5.564482,0,0,O38:SA:CTP3117,Europe/Paris,,O38, +O38:SP:3118,1,"EYBERTIERE",45.186318,5.564536,0,0,O38:SA:CTP3117,Europe/Paris,,O38, +O38:SP:3119,1,"LE LAVOIR",45.190711,5.567243,0,0,O38:SA:CTP3119,Europe/Paris,,O38, +O38:SP:312,1,"LE VILLAGE",44.764458,5.664177,0,0,O38:SA:CTP312,Europe/Paris,,O38, +O38:SP:3120,1,"LE LAVOIR",45.19077,5.567185,0,0,O38:SA:CTP3119,Europe/Paris,,O38, +O38:SP:3121,1,"VILLENEUVE",45.193969,5.570283,0,0,O38:SA:CTP3121,Europe/Paris,,O38, +O38:SP:3122,1,"EYBERTIERE ABRI",45.186202,5.561925,0,0,O38:SA:CTP3122,Europe/Paris,,O38, +O38:SP:3123,1,"EYBERTIERE ABRI",45.186197,5.561935,0,0,O38:SA:CTP3122,Europe/Paris,,O38, +O38:SP:3124,1,"LE FOURNEL",45.192402,5.619571,0,0,O38:SA:CTP3124,Europe/Paris,,O38, +O38:SP:3125,1,"LE FOURNEL",45.192321,5.619507,0,0,O38:SA:CTP3124,Europe/Paris,,O38, +O38:SP:3127,1,"PONT JALLA",45.183239,5.621406,0,0,O38:SA:CTP3127,Europe/Paris,,O38, +O38:SP:3129,1,"PONT JALLA",45.183287,5.621242,0,0,O38:SA:CTP3127,Europe/Paris,,O38, +O38:SP:313,1,"LE VILLAGE",44.764408,5.664139,0,0,O38:SA:CTP312,Europe/Paris,,O38, +O38:SP:3130,1,"LA CROIX",45.183079,5.618071,0,0,O38:SA:CTP3130,Europe/Paris,,O38, +O38:SP:3131,1,"LA CROIX",45.18306,5.61817,0,0,O38:SA:CTP3130,Europe/Paris,,O38, +O38:SP:3133,1,"PLACE DE LA LIBERATION",45.206687,5.66274,0,0,O38:SA:CTP3133,Europe/Paris,,O38, +O38:SP:3135,1,"PLACE DE LA LIBERATION",45.20682,5.662806,0,0,O38:SA:CTP3133,Europe/Paris,,O38, +O38:SP:3138,1,"CHATEAU",45.212289,5.661784,0,0,O38:SA:CTP3138,Europe/Paris,,O38, +O38:SP:314,1,"DOMAINE DU SERRYA",44.792263,5.670498,0,0,O38:SA:CTP314,Europe/Paris,,O38, +O38:SP:3140,1,"CHATEAU",45.212253,5.661666,0,0,O38:SA:CTP3138,Europe/Paris,,O38, +O38:SP:3143,1,"LA ROLLANDIERE",45.214806,5.661247,0,0,O38:SA:CTP3143,Europe/Paris,,O38, +O38:SP:3145,1,"LA ROLLANDIERE",45.215009,5.661127,0,0,O38:SA:CTP3143,Europe/Paris,,O38, +O38:SP:3147,1,"LES JAUX",45.176792,5.618418,0,0,O38:SA:CTP3147,Europe/Paris,,O38, +O38:SP:3149,1,"LES JAUX",45.176866,5.61878,0,0,O38:SA:CTP3147,Europe/Paris,,O38, +O38:SP:315,1,"DOMAINE DU SERRYA",44.792327,5.668959,0,0,O38:SA:CTP314,Europe/Paris,,O38, +O38:SP:3151,1,"LES BRETS",45.190981,5.624941,0,0,O38:SA:CTP3151,Europe/Paris,,O38, +O38:SP:3153,1,"LES BRETS",45.190939,5.625067,0,0,O38:SA:CTP3151,Europe/Paris,,O38, +O38:SP:3155,1,"LES GUILLETS",45.174323,5.639495,0,0,O38:SA:CTP3155,Europe/Paris,,O38, +O38:SP:3157,1,"LES GUILLETS",45.17451,5.641168,0,0,O38:SA:CTP3155,Europe/Paris,,O38, +O38:SP:3159,1,"ROMANET",45.17739,5.644511,0,0,O38:SA:CTP3159,Europe/Paris,,O38, +O38:SP:316,1,"PREBOIS",44.789191,5.695092,0,0,O38:SA:CTP316,Europe/Paris,,O38, +O38:SP:3161,1,"ROMANET",45.177386,5.644634,0,0,O38:SA:CTP3159,Europe/Paris,,O38, +O38:SP:3163,1,"PARISET",45.17472,5.658809,0,0,O38:SA:CTP3163,Europe/Paris,,O38, +O38:SP:3165,1,"PARISET",45.175013,5.658168,0,0,O38:SA:CTP3163,Europe/Paris,,O38, +O38:SP:3167,1,"LA DENT DU LOUP",45.212979,5.644768,0,0,O38:SA:CTP3167,Europe/Paris,,O38, +O38:SP:3169,1,"LA DENT DU LOUP",45.21311,5.644765,0,0,O38:SA:CTP3167,Europe/Paris,,O38, +O38:SP:317,1,"PREBOIS",44.789267,5.694997,0,0,O38:SA:CTP316,Europe/Paris,,O38, +O38:SP:3171,1,"RIVOIRE DE LA DAME",45.218101,5.648354,0,0,O38:SA:CTP3171,Europe/Paris,,O38, +O38:SP:3173,1,"RIVOIRE DE LA DAME",45.217901,5.648003,0,0,O38:SA:CTP3171,Europe/Paris,,O38, +O38:SP:3177,1,"USINE",45.199641,5.632025,0,0,O38:SA:CTP3177,Europe/Paris,,O38, +O38:SP:3179,1,"USINE",45.199769,5.631977,0,0,O38:SA:CTP3177,Europe/Paris,,O38, +O38:SP:3181,1,"PRE FLEURY",45.204438,5.665005,0,0,O38:SA:CTP3181,Europe/Paris,,O38, +O38:SP:3183,1,"PRE FLEURY",45.204111,5.665222,0,0,O38:SA:CTP3181,Europe/Paris,,O38, +O38:SP:3190,1,"PRESQU'ILE",45.204621,5.701441,0,0,O38:SA:CTP3190,Europe/Paris,,O38, +O38:SP:3192,1,"PRESQU'ILE",45.204635,5.701089,0,0,O38:SA:CTP3190,Europe/Paris,,O38, +O38:SP:320,1,"MATERNELLE",44.765343,5.662752,0,0,O38:SA:CTP320,Europe/Paris,,O38, +O38:SP:3208,1,"DOCTEUR MARTIN",45.187829,5.726827,0,0,O38:SA:CTP3208,Europe/Paris,,O38, +O38:SP:321,1,"MATERNELLE",44.765379,5.662839,0,0,O38:SA:CTP320,Europe/Paris,,O38, +O38:SP:3210,1,"DOCTEUR MARTIN",45.187298,5.727264,0,0,O38:SA:CTP3208,Europe/Paris,,O38, +O38:SP:322,1,"TOUCHE BOEUF",44.775223,5.704805,0,0,O38:SA:CTP322,Europe/Paris,,O38, +O38:SP:323,1,"TOUCHE BOEUF",44.775165,5.704746,0,0,O38:SA:CTP322,Europe/Paris,,O38, +O38:SP:3230,1,"VICTOR HUGO",45.189579,5.724961,0,0,O38:SA:CTP3230,Europe/Paris,,O38, +O38:SP:3232,1,"VICTOR HUGO",45.189342,5.725007,0,0,O38:SA:CTP3230,Europe/Paris,,O38, +O38:SP:324,1,"LE CHATEAU",44.786268,5.695802,0,0,O38:SA:CTP324,Europe/Paris,,O38, +O38:SP:3240,1,"VERDUN-PREFECTURE",45.188402,5.730848,0,0,O38:SA:CTP3240,Europe/Paris,,O38, +O38:SP:3242,1,"VERDUN-PREFECTURE",45.188351,5.730953,0,0,O38:SA:CTP3240,Europe/Paris,,O38, +O38:SP:325,1,"LE CHATEAU",44.786274,5.695902,0,0,O38:SA:CTP324,Europe/Paris,,O38, +O38:SP:3253,1,"LE NERON",45.215023,5.696134,0,0,O38:SA:CTP3253,Europe/Paris,,O38, +O38:SP:3255,1,"LE NERON",45.214953,5.695986,0,0,O38:SA:CTP3253,Europe/Paris,,O38, +O38:SP:3257,1,"GARE ROUTIERE",45.193137,5.714175,0,0,O38:SA:CTP3257,Europe/Paris,,O38, +O38:SP:3259,1,"GARES",45.191491,5.715314,0,0,O38:SA:CTP3259,Europe/Paris,,O38, +O38:SP:326,1,"VERSANNES",44.791922,5.651899,0,0,O38:SA:CTP326,Europe/Paris,,O38, +O38:SP:3261,1,"GARES",45.191536,5.715074,0,0,O38:SA:CTP3259,Europe/Paris,,O38, +O38:SP:327,1,"VERSANNES",44.791969,5.651897,0,0,O38:SA:CTP326,Europe/Paris,,O38, +O38:SP:328,1,"LA COMMANDERIE",44.77174,5.660698,0,0,O38:SA:CTP328,Europe/Paris,,O38, +O38:SP:3284,1,"CHAVANT",45.185372,5.731422,0,0,O38:SA:CTP3284,Europe/Paris,,O38, +O38:SP:3286,1,"CHAVANT",45.185514,5.73103,0,0,O38:SA:CTP3284,Europe/Paris,,O38, +O38:SP:329,1,"LA COMMANDERIE",44.771678,5.660644,0,0,O38:SA:CTP328,Europe/Paris,,O38, +O38:SP:3306,1,"ALLIES",45.173317,5.714218,0,0,O38:SA:CTP3306,Europe/Paris,,O38, +O38:SP:3308,1,"ALLIES",45.173377,5.714025,0,0,O38:SA:CTP3306,Europe/Paris,,O38, +O38:SP:331,1,"BOIRAS",44.787954,5.726614,0,0,O38:SA:CTP331,Europe/Paris,,O38, +O38:SP:3312,1,"CEA-CAMBRIDGE",45.202653,5.704047,0,0,O38:SA:CTP3312,Europe/Paris,,O38, +O38:SP:3314,1,"CEA-CAMBRIDGE",45.202206,5.704372,0,0,O38:SA:CTP3312,Europe/Paris,,O38, +O38:SP:3318,1,"VALLIER-LIBERATION (SUD)",45.178736,5.71583,0,0,O38:SA:CTP3318,Europe/Paris,,O38, +O38:SP:332,1,"LES PETITS MOULINS",44.766834,5.724764,0,0,O38:SA:CTP332,Europe/Paris,,O38, +O38:SP:3320,1,"VALLIER-LIBERATION (SUD)",45.178793,5.716093,0,0,O38:SA:CTP3318,Europe/Paris,,O38, +O38:SP:333,1,"LES PETITS MOULINS",44.766872,5.724849,0,0,O38:SA:CTP332,Europe/Paris,,O38, +O38:SP:3333,1,"TROIS DAUPHINS",45.19053,5.725011,0,0,O38:SA:CTP3333,Europe/Paris,,O38, +O38:SP:334,1,"VAREILLES",44.77213,5.722619,0,0,O38:SA:CTP334,Europe/Paris,,O38, +O38:SP:3343,1,"SAVEUIL",45.192445,5.696226,0,0,O38:SA:CTP3343,Europe/Paris,,O38, +O38:SP:3345,1,"SAVEUIL",45.192377,5.696803,0,0,O38:SA:CTP3343,Europe/Paris,,O38, +O38:SP:3347,1,"LOUIS MAISONNAT",45.189126,5.694149,0,0,O38:SA:CTP3347,Europe/Paris,,O38, +O38:SP:3349,1,"LOUIS MAISONNAT",45.189074,5.694407,0,0,O38:SA:CTP3347,Europe/Paris,,O38, +O38:SP:335,1,"VAREILLES",44.772058,5.722629,0,0,O38:SA:CTP334,Europe/Paris,,O38, +O38:SP:336,1,"COL DU BANCHET",44.774631,5.729609,0,0,O38:SA:CTP336,Europe/Paris,,O38, +O38:SP:337,1,"COL DU BANCHET",44.774499,5.729496,0,0,O38:SA:CTP336,Europe/Paris,,O38, +O38:SP:3371,1,"BUISSERATTE",45.213693,5.698695,0,0,O38:SA:CTP3371,Europe/Paris,,O38, +O38:SP:3373,1,"BUISSERATTE",45.213507,5.699308,0,0,O38:SA:CTP3371,Europe/Paris,,O38, +O38:SP:3380,1,"ARISTIDE BERGES",45.185482,5.694638,0,0,O38:SA:CTP3380,Europe/Paris,,O38, +O38:SP:3382,1,"ARISTIDE BERGES",45.185091,5.69459,0,0,O38:SA:CTP3380,Europe/Paris,,O38, +O38:SP:340,1,"ST BAUDILLE-PIPET",44.784544,5.768458,0,0,O38:SA:CTP340,Europe/Paris,,O38, +O38:SP:3409,1,"ALSACE-LORRAINE",45.189054,5.719336,0,0,O38:SA:CTP3409,Europe/Paris,,O38, +O38:SP:341,1,"ST BAUDILLE-PIPET",44.784596,5.768528,0,0,O38:SA:CTP340,Europe/Paris,,O38, +O38:SP:3411,1,"ALSACE-LORRAINE",45.189081,5.719454,0,0,O38:SA:CTP3409,Europe/Paris,,O38, +O38:SP:342,1,"LE CROS",44.780988,5.741679,0,0,O38:SA:CTP342,Europe/Paris,,O38, +O38:SP:3420,1,"LA POYA",45.197257,5.672211,0,0,O38:SA:CTP3420,Europe/Paris,,O38, +O38:SP:3422,1,"LA POYA",45.197023,5.672608,0,0,O38:SA:CTP3420,Europe/Paris,,O38, +O38:SP:343,1,"LE CROS",44.781002,5.741592,0,0,O38:SA:CTP342,Europe/Paris,,O38, +O38:SP:3433,1,"BASSE BUISSERATTE",45.216989,5.694254,0,0,O38:SA:CTP3433,Europe/Paris,,O38, +O38:SP:3435,1,"BASSE BUISSERATTE",45.216977,5.694123,0,0,O38:SA:CTP3433,Europe/Paris,,O38, +O38:SP:344,1,"FERME LA RIVIERE",44.787233,5.758239,0,0,O38:SA:CTP344,Europe/Paris,,O38, +O38:SP:3442,1,"CITE INTERNATIONALE",45.195286,5.710922,0,0,O38:SA:CTP3442,Europe/Paris,,O38, +O38:SP:3444,1,"CITE INTERNATIONALE",45.195335,5.710753,0,0,O38:SA:CTP3442,Europe/Paris,,O38, +O38:SP:345,1,"FERME LA RIVIERE",44.787388,5.758227,0,0,O38:SA:CTP344,Europe/Paris,,O38, +O38:SP:3450,1,"LES PIES",45.199513,5.669858,0,0,O38:SA:CTP3450,Europe/Paris,,O38, +O38:SP:3452,1,"LES PIES",45.199583,5.669886,0,0,O38:SA:CTP3450,Europe/Paris,,O38, +O38:SP:3459,1,"DOCTEUR MAZET",45.191179,5.720814,0,0,O38:SA:CTP3459,Europe/Paris,,O38, +O38:SP:346,1,"AGNES",44.789351,5.732531,0,0,O38:SA:CTP346,Europe/Paris,,O38, +O38:SP:3461,1,"DOCTEUR MAZET",45.191335,5.722433,0,0,O38:SA:CTP3459,Europe/Paris,,O38, +O38:SP:3464,1,"BELVEDERE",45.17652,5.688,0,0,O38:SA:CTP3464,Europe/Paris,,O38, +O38:SP:3466,1,"BELVEDERE",45.176325,5.687842,0,0,O38:SA:CTP3464,Europe/Paris,,O38, +O38:SP:347,1,"AGNES",44.78921,5.732525,0,0,O38:SA:CTP346,Europe/Paris,,O38, +O38:SP:3489,1,"LYCEE DU GRESIVAUDAN-BACHAIS",45.214018,5.779015,0,0,O38:SA:CTP3489,Europe/Paris,,O38, +O38:SP:3491,1,"LYCEE DU GRESIVAUDAN-BACHAIS",45.214128,5.779075,0,0,O38:SA:CTP3489,Europe/Paris,,O38, +O38:SP:350,1,"EGLISE-ECOLE",44.745973,5.768223,0,0,O38:SA:CTP350,Europe/Paris,,O38, +O38:SP:3507,1,"LE RONDEAU",45.21379,5.750058,0,0,O38:SA:CTP3507,Europe/Paris,,O38, +O38:SP:3508,1,"LE RONDEAU",45.213735,5.750053,0,0,O38:SA:CTP3507,Europe/Paris,,O38, +O38:SP:351,1,"EGLISE-ECOLE",44.746029,5.76816,0,0,O38:SA:CTP350,Europe/Paris,,O38, +O38:SP:3510,1,"COLLEGE LE CHAMANDIER",45.181997,5.780839,0,0,O38:SA:CTP3510,Europe/Paris,,O38, +O38:SP:3512,1,"COLLEGE LE CHAMANDIER",45.181966,5.780965,0,0,O38:SA:CTP3510,Europe/Paris,,O38, +O38:SP:3513,1,"INSTITUTION DON BOSCO",45.184567,5.787086,0,0,O38:SA:CTP3513,Europe/Paris,,O38, +O38:SP:3514,1,"INSTITUTION DON BOSCO",45.184563,5.787097,0,0,O38:SA:CTP3513,Europe/Paris,,O38, +O38:SP:3516,1,"LE CEDRE",45.20774,5.756634,0,0,O38:SA:CTP3516,Europe/Paris,,O38, +O38:SP:3518,1,"LE CEDRE",45.207276,5.755339,0,0,O38:SA:CTP3516,Europe/Paris,,O38, +O38:SP:352,1,"LE PERRIER",44.781373,5.733812,0,0,O38:SA:CTP352,Europe/Paris,,O38, +O38:SP:3520,1,"MONTFLEURY",45.212395,5.758724,0,0,O38:SA:CTP3520,Europe/Paris,,O38, +O38:SP:3522,1,"MONTFLEURY",45.212713,5.759604,0,0,O38:SA:CTP3520,Europe/Paris,,O38, +O38:SP:3529,1,"TAILLEFER",45.206983,5.784997,0,0,O38:SA:CTP3529,Europe/Paris,,O38, +O38:SP:353,1,"LE PERRIER",44.781373,5.733956,0,0,O38:SA:CTP352,Europe/Paris,,O38, +O38:SP:3531,1,"TAILLEFER",45.207373,5.78457,0,0,O38:SA:CTP3529,Europe/Paris,,O38, +O38:SP:3533,1,"BIR-HAKEIM",45.18886,5.736442,0,0,O38:SA:CTP3533,Europe/Paris,,O38, +O38:SP:3535,1,"BIR-HAKEIM",45.188805,5.736801,0,0,O38:SA:CTP3533,Europe/Paris,,O38, +O38:SP:354,1,"PONT DE VAREILLE",44.772279,5.71163,0,0,O38:SA:CTP354,Europe/Paris,,O38, +O38:SP:3545,1,"EDELWEISS",45.181203,5.788234,0,0,O38:SA:CTP3545,Europe/Paris,,O38, +O38:SP:3548,1,"EDELWEISS",45.181089,5.788411,0,0,O38:SA:CTP3545,Europe/Paris,,O38, +O38:SP:355,1,"PONT DE VAREILLE",44.772222,5.711692,0,0,O38:SA:CTP354,Europe/Paris,,O38, +O38:SP:356,1,"LES BONNETS",44.781393,5.767439,0,0,O38:SA:CTP356,Europe/Paris,,O38, +O38:SP:357,1,"LES BONNETS",44.78145,5.767377,0,0,O38:SA:CTP356,Europe/Paris,,O38, +O38:SP:3571,1,"COLLEGE DES BUCLOS",45.204955,5.778669,0,0,O38:SA:CTP3571,Europe/Paris,,O38, +O38:SP:3572,1,"COLLEGE DES BUCLOS",45.204927,5.778616,0,0,O38:SA:CTP3571,Europe/Paris,,O38, +O38:SP:3574,1,"LIONEL TERRAY",45.209665,5.766253,0,0,O38:SA:CTP3574,Europe/Paris,,O38, +O38:SP:3576,1,"LIONEL TERRAY",45.210377,5.767139,0,0,O38:SA:CTP3574,Europe/Paris,,O38, +O38:SP:3585,1,"LA COMBE",45.172765,5.789865,0,0,O38:SA:CTP3585,Europe/Paris,,O38, +O38:SP:3586,1,"LA COMBE",45.174132,5.790004,0,0,O38:SA:CTP3585,Europe/Paris,,O38, +O38:SP:3587,1,"LES TERRATS",45.168768,5.793674,0,0,O38:SA:CTP3587,Europe/Paris,,O38, +O38:SP:3588,1,"LES TERRATS",45.169145,5.792901,0,0,O38:SA:CTP3587,Europe/Paris,,O38, +O38:SP:3590,1,"PABLO NERUDA",45.173965,5.760752,0,0,O38:SA:CTP3590,Europe/Paris,,O38, +O38:SP:3592,1,"PABLO NERUDA",45.173941,5.760958,0,0,O38:SA:CTP3590,Europe/Paris,,O38, +O38:SP:360,1,"CLOS LEON BARTHALAY",44.747325,5.743617,0,0,O38:SA:CTP360,Europe/Paris,,O38, +O38:SP:361,1,"CLOS LEON BARTHALAY",44.747329,5.743693,0,0,O38:SA:CTP360,Europe/Paris,,O38, +O38:SP:3636,1,"LA TRONCHE HOPITAL",45.201457,5.742325,0,0,O38:SA:CTP3636,Europe/Paris,,O38, +O38:SP:3638,1,"LA TRONCHE HOPITAL",45.20151,5.742271,0,0,O38:SA:CTP3636,Europe/Paris,,O38, +O38:SP:3640,1,"MUSEE HEBERT",45.205617,5.748889,0,0,O38:SA:CTP3640,Europe/Paris,,O38, +O38:SP:3642,1,"MUSEE HEBERT",45.205632,5.748824,0,0,O38:SA:CTP3640,Europe/Paris,,O38, +O38:SP:3645,1,"BIBLIOTHEQUES UNIVERSITAIRES",45.191692,5.770285,0,0,O38:SA:CTP3645,Europe/Paris,,O38, +O38:SP:3647,1,"BIBLIOTHEQUES UNIVERSITAIRES",45.191659,5.770419,0,0,O38:SA:CTP3645,Europe/Paris,,O38, +O38:SP:365,1,"LA POSTERLE",44.774527,5.902086,0,0,O38:SA:CTP365,Europe/Paris,,O38, +O38:SP:3655,1,"CLINIQUE BELLEDONNE",45.185991,5.760896,0,0,O38:SA:CTP3655,Europe/Paris,,O38, +O38:SP:3657,1,"CLINIQUE BELLEDONNE",45.185909,5.76032,0,0,O38:SA:CTP3655,Europe/Paris,,O38, +O38:SP:366,1,"LES CHANEAUX",44.784722,5.905966,0,0,O38:SA:CTP366,Europe/Paris,,O38, +O38:SP:3667,1,"CHAMP ROMAN",45.184525,5.767436,0,0,O38:SA:CTP3667,Europe/Paris,,O38, +O38:SP:3669,1,"CHAMP ROMAN",45.184326,5.767677,0,0,O38:SA:CTP3667,Europe/Paris,,O38, +O38:SP:3672,1,"UNIVERSITES BIOLOGIE",45.191814,5.775925,0,0,O38:SA:CTP3672,Europe/Paris,,O38, +O38:SP:3674,1,"UNIVERSITES BIOLOGIE",45.191366,5.775821,0,0,O38:SA:CTP3672,Europe/Paris,,O38, +O38:SP:3676,1,"UNIVERSITES BIOLOGIE",45.191965,5.77538,0,0,O38:SA:CTP3672,Europe/Paris,,O38, +O38:SP:3678,1,"UNIVERSITES BIOLOGIE",45.191956,5.774705,0,0,O38:SA:CTP3672,Europe/Paris,,O38, +O38:SP:3680,1,"CHAUMETIERE",45.212489,5.771342,0,0,O38:SA:CTP3680,Europe/Paris,,O38, +O38:SP:3682,1,"CHAUMETIERE",45.212393,5.769848,0,0,O38:SA:CTP3680,Europe/Paris,,O38, +O38:SP:3688,1,"INOVALLEE",45.207752,5.78954,0,0,O38:SA:CTP3688,Europe/Paris,,O38, +O38:SP:3690,1,"INOVALLEE",45.207422,5.788642,0,0,O38:SA:CTP3688,Europe/Paris,,O38, +O38:SP:3698,1,"NEYRPIC-BELLEDONNE",45.186723,5.756251,0,0,O38:SA:CTP3698,Europe/Paris,,O38, +O38:SP:370,1,"VILLAGE",44.752367,6.008695,0,0,O38:SA:CTP370,Europe/Paris,,O38, +O38:SP:3700,1,"NEYRPIC-BELLEDONNE",45.186788,5.757251,0,0,O38:SA:CTP3698,Europe/Paris,,O38, +O38:SP:371,1,"VILLAGE",44.752367,6.008803,0,0,O38:SA:CTP370,Europe/Paris,,O38, +O38:SP:3712,1,"SCIENCES SOCIALES",45.190156,5.769193,0,0,O38:SA:CTP3712,Europe/Paris,,O38, +O38:SP:3714,1,"SCIENCES SOCIALES",45.190059,5.769319,0,0,O38:SA:CTP3712,Europe/Paris,,O38, +O38:SP:372,1,"PONT DES RICHARDS",44.775584,6.016436,0,0,O38:SA:CTP372,Europe/Paris,,O38, +O38:SP:373,1,"PONT DES RICHARDS",44.775867,6.016023,0,0,O38:SA:CTP372,Europe/Paris,,O38, +O38:SP:3732,1,"FACULTE DE PHARMACIE",45.211458,5.773887,0,0,O38:SA:CTP3732,Europe/Paris,,O38, +O38:SP:3734,1,"FACULTE DE PHARMACIE",45.211808,5.77453,0,0,O38:SA:CTP3732,Europe/Paris,,O38, +O38:SP:3736,1,"AIGUINARDS-HEXAGONE",45.205055,5.764373,0,0,O38:SA:CTP3736,Europe/Paris,,O38, +O38:SP:3738,1,"AIGUINARDS-HEXAGONE",45.205122,5.76473,0,0,O38:SA:CTP3736,Europe/Paris,,O38, +O38:SP:374,1,"RUTHIERE",44.822993,5.571364,0,0,O38:SA:CTP374,Europe/Paris,,O38, +O38:SP:375,1,"CHATEAU-VIEUX",44.817031,5.570551,0,0,O38:SA:CTP375,Europe/Paris,,O38, +O38:SP:3751,1,"REVIREE SAYETTES",45.212026,5.766339,0,0,O38:SA:CTP3751,Europe/Paris,,O38, +O38:SP:3753,1,"REVIREE SAYETTES",45.212208,5.767361,0,0,O38:SA:CTP3751,Europe/Paris,,O38, +O38:SP:3755,1,"SABLONS",45.197485,5.75359,0,0,O38:SA:CTP3755,Europe/Paris,,O38, +O38:SP:3757,1,"SABLONS",45.196672,5.752857,0,0,O38:SA:CTP3755,Europe/Paris,,O38, +O38:SP:3759,1,"LA REVIREE",45.207449,5.76804,0,0,O38:SA:CTP3759,Europe/Paris,,O38, +O38:SP:376,1,"EGLISE",44.811487,5.573056,0,0,O38:SA:CTP376,Europe/Paris,,O38, +O38:SP:3761,1,"LA REVIREE",45.207321,5.767645,0,0,O38:SA:CTP3759,Europe/Paris,,O38, +O38:SP:3764,1,"PLAINE FLEURIE",45.203329,5.762072,0,0,O38:SA:CTP3764,Europe/Paris,,O38, +O38:SP:3766,1,"PLAINE FLEURIE",45.20266,5.760906,0,0,O38:SA:CTP3764,Europe/Paris,,O38, +O38:SP:377,1,"CARREFOUR RICHARDIERE",44.822743,5.553322,0,0,O38:SA:CTP377,Europe/Paris,,O38, +O38:SP:3775,1,"HOTEL DE VILLE",45.187415,5.737478,0,0,O38:SA:CTP3775,Europe/Paris,,O38, +O38:SP:3777,1,"HOTEL DE VILLE",45.187583,5.737439,0,0,O38:SA:CTP3775,Europe/Paris,,O38, +O38:SP:378,1,"RICHARDIERE",44.822309,5.549898,0,0,O38:SA:CTP378,Europe/Paris,,O38, +O38:SP:3781,1,"PARKING LYCEE GRESIVAUDAN",45.214598,5.780976,0,0,O38:SA:CTP3781,Europe/Paris,,O38, +O38:SP:3786,1,"HOPITAL MICHALLON",45.19753,5.74604,0,0,O38:SA:CTP3786,Europe/Paris,,O38, +O38:SP:3787,1,"HOPITAL MICHALLON",45.19734,5.747051,0,0,O38:SA:CTP3786,Europe/Paris,,O38, +O38:SP:3788,1,"COLLEGE LA MOULINIERE",45.197095,5.828239,0,0,O38:SA:CTP3788,Europe/Paris,,O38, +O38:SP:3789,1,"COLLEGE LA MOULINIERE",45.197021,5.828282,0,0,O38:SA:CTP3788,Europe/Paris,,O38, +O38:SP:3791,1,"L'ORATOIRE",45.198036,5.833835,0,0,O38:SA:CTP3791,Europe/Paris,,O38, +O38:SP:3793,1,"L'ORATOIRE",45.198101,5.83379,0,0,O38:SA:CTP3791,Europe/Paris,,O38, +O38:SP:3795,1,"LE BOURG",45.192133,5.817298,0,0,O38:SA:CTP3795,Europe/Paris,,O38, +O38:SP:3797,1,"LE BOURG",45.192198,5.817252,0,0,O38:SA:CTP3795,Europe/Paris,,O38, +O38:SP:3799,1,"HAMEAU LE FAUX",45.171726,5.846647,0,0,O38:SA:CTP3799,Europe/Paris,,O38, +O38:SP:380,1,"GARE SNCF",44.827539,5.605103,0,0,O38:SA:CTP380,Europe/Paris,,O38, +O38:SP:3801,1,"LES RIVETS",45.194213,5.822859,0,0,O38:SA:CTP3801,Europe/Paris,,O38, +O38:SP:3803,1,"LES RIVETS",45.194148,5.822904,0,0,O38:SA:CTP3801,Europe/Paris,,O38, +O38:SP:381,1,"GARE SNCF",44.827575,5.605192,0,0,O38:SA:CTP380,Europe/Paris,,O38, +O38:SP:3817,1,"LA FONTAINE",45.193699,5.853819,0,0,OGE:SA:CTP3818,Europe/Paris,,O38, +O38:SP:3819,1,"LA FONTAINE",45.193762,5.853808,0,0,OGE:SA:CTP3818,Europe/Paris,,O38, +O38:SP:382,1,"L'ORATOIRE",44.828729,5.614673,0,0,O38:SA:CTP382,Europe/Paris,,O38, +O38:SP:3821,1,"LA SARRAZINE",45.196154,5.868606,0,0,OGE:SA:CTP3822,Europe/Paris,,O38, +O38:SP:3823,1,"LA SARRAZINE",45.196352,5.86855,0,0,OGE:SA:CTP3822,Europe/Paris,,O38, +O38:SP:3826,1,"MAIRIE",45.202318,5.838172,0,0,O38:SA:CTP3826,Europe/Paris,,O38, +O38:SP:3828,1,"MAIRIE",45.202366,5.838054,0,0,O38:SA:CTP3826,Europe/Paris,,O38, +O38:SP:383,1,"L'ORATOIRE",44.828667,5.614619,0,0,O38:SA:CTP382,Europe/Paris,,O38, +O38:SP:3833,1,"LES ARNAUDS (TAG)",45.206656,5.847969,0,0,OGE:SA:CTP3834,Europe/Paris,,O38, +O38:SP:3835,1,"LES ARNAUDS (TAG)",45.206798,5.847878,0,0,OGE:SA:CTP3834,Europe/Paris,,O38, +O38:SP:384,1,"MAIRIE",44.827508,5.622833,0,0,O38:SA:CTP384,Europe/Paris,,O38, +O38:SP:3843,1,"LES ISARDS PATTE D'OIE",45.168774,5.864305,0,0,O38:SA:CTP3843,Europe/Paris,,O38, +O38:SP:3844,1,"LES ISARDS PATTE D'OIE",45.168705,5.86434,0,0,O38:SA:CTP3843,Europe/Paris,,O38, +O38:SP:3846,1,"LA BOURGEAT",45.187222,5.867343,0,0,O38:SA:CTP3846,Europe/Paris,,O38, +O38:SP:3848,1,"LA BOURGEAT",45.187028,5.867769,0,0,O38:SA:CTP3846,Europe/Paris,,O38, +O38:SP:385,1,"MAIRIE",44.827239,5.622556,0,0,O38:SA:CTP384,Europe/Paris,,O38, +O38:SP:3854,1,"CORPS D'URIAGE",45.178172,5.863931,0,0,O38:SA:CTP3854,Europe/Paris,,O38, +O38:SP:3856,1,"LES VALETS",45.167738,5.859026,0,0,O38:SA:CTP3856,Europe/Paris,,O38, +O38:SP:3857,1,"LES VALETS",45.167673,5.859067,0,0,O38:SA:CTP3856,Europe/Paris,,O38, +O38:SP:3858,1,"LA RONZIERE 2",45.16875,5.840501,0,0,O38:SA:CTP3858,Europe/Paris,,O38, +O38:SP:386,1,"TREZANNE",44.822804,5.580127,0,0,O38:SA:CTP386,Europe/Paris,,O38, +O38:SP:3860,1,"LA CHARRIERE",45.213092,5.859167,0,0,O38:SA:CTP3860,Europe/Paris,,O38, +O38:SP:3862,1,"LA CHARRIERE",45.213082,5.858926,0,0,O38:SA:CTP3860,Europe/Paris,,O38, +O38:SP:3864,1,"L'USINE",45.208662,5.851289,0,0,O38:SA:CTP3864,Europe/Paris,,O38, +O38:SP:3866,1,"L'USINE",45.20835,5.850909,0,0,O38:SA:CTP3864,Europe/Paris,,O38, +O38:SP:3868,1,"LES VERNES",45.20767,5.833587,0,0,O38:SA:CTP3868,Europe/Paris,,O38, +O38:SP:3870,1,"LES VERNES",45.207704,5.833676,0,0,O38:SA:CTP3868,Europe/Paris,,O38, +O38:SP:3873,1,"CHENEVIERES",45.206702,5.8273,0,0,O38:SA:CTP3873,Europe/Paris,,O38, +O38:SP:3875,1,"CHENEVIERES",45.206724,5.827338,0,0,O38:SA:CTP3873,Europe/Paris,,O38, +O38:SP:3877,1,"LE PRIEURE",45.204916,5.835753,0,0,O38:SA:CTP3877,Europe/Paris,,O38, +O38:SP:3879,1,"LE PRIEURE",45.204544,5.836142,0,0,O38:SA:CTP3877,Europe/Paris,,O38, +O38:SP:388,1,"LOT THEYSSONNIERE",44.823487,5.625148,0,0,O38:SA:CTP388,Europe/Paris,,O38, +O38:SP:3883,1,"LA CHENEVARIE",45.174313,5.858726,0,0,O38:SA:CTP3883,Europe/Paris,,O38, +O38:SP:3886,1,"LA RONZIERE 1",45.170038,5.843591,0,0,O38:SA:CTP3886,Europe/Paris,,O38, +O38:SP:3889,1,"BAUDONNIERE",45.213464,5.808208,0,0,OGE:SA:CTP3890,Europe/Paris,,O38, +O38:SP:389,1,"LA VIERGE",44.826944,5.628666,0,0,O38:SA:CTP389,Europe/Paris,,O38, +O38:SP:3891,1,"BAUDONNIERE",45.213428,5.808132,0,0,OGE:SA:CTP3890,Europe/Paris,,O38, +O38:SP:3893,1,"LA BRIOT",45.19324,5.820112,0,0,O38:SA:CTP3893,Europe/Paris,,O38, +O38:SP:3895,1,"LA BRIOT",45.193175,5.820153,0,0,O38:SA:CTP3893,Europe/Paris,,O38, +O38:SP:390,1,"LA VIERGE",44.826909,5.628635,0,0,O38:SA:CTP389,Europe/Paris,,O38, +O38:SP:391,1,"ECOLES",44.827563,5.623387,0,0,O38:SA:CTP391,Europe/Paris,,O38, +O38:SP:3920,1,"LES MORTES",45.196396,5.829198,0,0,O38:SA:CTP3920,Europe/Paris,,O38, +O38:SP:3922,1,"LES MORTES",45.196459,5.829152,0,0,O38:SA:CTP3920,Europe/Paris,,O38, +O38:SP:3924,1,"LA PERRIERE",45.190282,5.812895,0,0,O38:SA:CTP3924,Europe/Paris,,O38, +O38:SP:3926,1,"LA PERRIERE",45.190221,5.812949,0,0,O38:SA:CTP3924,Europe/Paris,,O38, +O38:SP:393,1,"GENDARMERIE",44.82434,5.616733,0,0,O38:SA:CTP393,Europe/Paris,,O38, +O38:SP:3934,1,"LA CROIX DE PINET",45.172463,5.873921,0,0,O38:SA:CTP3934,Europe/Paris,,O38, +O38:SP:3936,1,"LA CROIX DE PINET",45.172416,5.873997,0,0,O38:SA:CTP3934,Europe/Paris,,O38, +O38:SP:3938,1,"LE GEYMOND",45.190183,5.884504,0,0,OGE:SA:CTP3939,Europe/Paris,,O38, +O38:SP:394,1,"LES OCHES",44.811744,5.580919,0,0,O38:SA:CTP394,Europe/Paris,,O38, +O38:SP:3940,1,"LE GEYMOND",45.190251,5.884557,0,0,OGE:SA:CTP3939,Europe/Paris,,O38, +O38:SP:3942,1,"LE SAUZET",45.185045,5.872182,0,0,O38:SA:CTP3942,Europe/Paris,,O38, +O38:SP:3947,1,"LE RIF",45.206157,5.878453,0,0,OGE:SA:CTP3946,Europe/Paris,,O38, +O38:SP:3949,1,"LE MOLLARD",45.20892,5.873589,0,0,OGE:SA:CTP3950,Europe/Paris,,O38, +O38:SP:3953,1,"LES JACQUETS",45.185374,5.878214,0,0,OGE:SA:CTP3954,Europe/Paris,,O38, +O38:SP:3955,1,"LES JACQUETS",45.185356,5.878259,0,0,OGE:SA:CTP3954,Europe/Paris,,O38, +O38:SP:3957,1,"CHARRIERES NEUVES",45.187127,5.881289,0,0,OGE:SA:CTP3958,Europe/Paris,,O38, +O38:SP:3961,1,"LES FAURES",45.182378,5.880264,0,0,OGE:SA:CTP3962,Europe/Paris,,O38, +O38:SP:3963,1,"LES FAURES",45.182423,5.880293,0,0,OGE:SA:CTP3962,Europe/Paris,,O38, +O38:SP:3965,1,"LE MONT",45.19678,5.873257,0,0,OGE:SA:CTP3966,Europe/Paris,,O38, +O38:SP:3967,1,"LE MONT",45.196823,5.873386,0,0,OGE:SA:CTP3966,Europe/Paris,,O38, +O38:SP:3969,1,"LES ROUSSETS",45.193996,5.882058,0,0,OGE:SA:CTP3970,Europe/Paris,,O38, +O38:SP:397,1,"LES RIPPERTS",44.836228,5.605519,0,0,O38:SA:CTP397,Europe/Paris,,O38, +O38:SP:3971,1,"LES ROUSSETS",45.194037,5.882103,0,0,OGE:SA:CTP3970,Europe/Paris,,O38, +O38:SP:3973,1,"EGLISE",45.21195,5.881725,0,0,OGE:SA:CTP3974,Europe/Paris,,O38, +O38:SP:3975,1,"EGLISE",45.211623,5.881532,0,0,OGE:SA:CTP3974,Europe/Paris,,O38, +O38:SP:3978,1,"LE NAYSORD",45.20622,5.882407,0,0,OGE:SA:CTP3977,Europe/Paris,,O38, +O38:SP:398,1,"LES RIPPERTS",44.83623,5.605332,0,0,O38:SA:CTP397,Europe/Paris,,O38, +O38:SP:3980,1,"LE NAYSORD",45.206228,5.882481,0,0,OGE:SA:CTP3977,Europe/Paris,,O38, +O38:SP:3982,1,"VILLAGE",45.185832,5.869032,0,0,O38:SA:CTP3982,Europe/Paris,,O38, +O38:SP:3984,1,"LE COUVAT",45.208948,5.87782,0,0,OGE:SA:CTP3985,Europe/Paris,,O38, +O38:SP:3988,1,"LE ROCHAREY",45.174891,5.870494,0,0,O38:SA:CTP3988,Europe/Paris,,O38, +O38:SP:399,1,"LONGEFONDS",44.810772,5.636141,0,0,O38:SA:CTP399,Europe/Paris,,O38, +O38:SP:3990,1,"L'ISLE",45.208667,5.88268,0,0,OGE:SA:CTP3989,Europe/Paris,,O38, +O38:SP:3992,1,"L'ISLE",45.208651,5.88272,0,0,OGE:SA:CTP3989,Europe/Paris,,O38, +O38:SP:3994,1,"PONT RAJAT",45.167182,5.887403,0,0,O38:SA:CTP3994,Europe/Paris,,O38, +O38:SP:3996,1,"PONT RAJAT",45.167181,5.887483,0,0,O38:SA:CTP3994,Europe/Paris,,O38, +O38:SP:3998,1,"LE CHENEVAS",45.171267,5.886984,0,0,O38:SA:CTP3998,Europe/Paris,,O38, +O38:SP:400,1,"LONGEFONDS",44.810701,5.636129,0,0,O38:SA:CTP399,Europe/Paris,,O38, +O38:SP:4000,1,"LE CHENEVAS",45.171248,5.887064,0,0,O38:SA:CTP3998,Europe/Paris,,O38, +O38:SP:4002,1,"LES GUIMETS",45.175415,5.885448,0,0,O38:SA:CTP4002,Europe/Paris,,O38, +O38:SP:4004,1,"LES GUIMETS",45.175435,5.885297,0,0,O38:SA:CTP4002,Europe/Paris,,O38, +O38:SP:4006,1,"LA SAVOYARDE",45.179526,5.884617,0,0,O38:SA:CTP4006,Europe/Paris,,O38, +O38:SP:4008,1,"LA SAVOYARDE",45.179479,5.884692,0,0,O38:SA:CTP4006,Europe/Paris,,O38, +O38:SP:4009,1,"LE ROCHAS",45.160123,6.081695,0,0,O38:SA:CTP4009,Europe/Paris,,O38, +O38:SP:4010,1,"LE ROCHAS",45.160193,6.081724,0,0,O38:SA:CTP4009,Europe/Paris,,O38, +O38:SP:4011,1,"LE COLLET-TENNIS",45.168395,6.094443,0,0,O38:SA:CTP4011,Europe/Paris,,O38, +O38:SP:4012,1,"LE COLLET-TENNIS",45.168458,6.094496,0,0,O38:SA:CTP4011,Europe/Paris,,O38, +O38:SP:4013,1,"LA VILLETTE",45.163686,6.088617,0,0,O38:SA:CTP4013,Europe/Paris,,O38, +O38:SP:4014,1,"LA VILLETTE",45.163712,6.088547,0,0,O38:SA:CTP4013,Europe/Paris,,O38, +O38:SP:4015,1,"HAUT DE LA VILLETTE",45.164872,6.089282,0,0,O38:SA:CTP4015,Europe/Paris,,O38, +O38:SP:4016,1,"HAUT DE LA VILLETTE",45.164931,6.089272,0,0,O38:SA:CTP4015,Europe/Paris,,O38, +O38:SP:4018,1,"LA TOUR D156",45.262725,5.174208,0,0,O38:SA:CTP4018,Europe/Paris,,O38, +O38:SP:4019,1,"ABRI-BUS CD20",45.256798,5.173159,0,0,O38:SA:CTP4019,Europe/Paris,,O38, +O38:SP:402,1,"LES BLANCS",44.796766,5.63794,0,0,O38:SA:CTP402,Europe/Paris,,O38, +O38:SP:4020,1,"ABRI-BUS CD20",45.256806,5.173113,0,0,O38:SA:CTP4019,Europe/Paris,,O38, +O38:SP:4021,1,"LE VARNIER",45.258407,5.167376,0,0,O38:SA:CTP4021,Europe/Paris,,O38, +O38:SP:4022,1,"LE VARNIER",45.258394,5.167402,0,0,O38:SA:CTP4021,Europe/Paris,,O38, +O38:SP:4023,1,"MAISON VIVIER",45.248054,5.196656,0,0,O38:SA:CTP4023,Europe/Paris,,O38, +O38:SP:4025,1,"LE MONNIER",45.263706,5.197739,0,0,O38:SA:CTP4025,Europe/Paris,,O38, +O38:SP:4026,1,"LE MONNIER",45.263634,5.197736,0,0,O38:SA:CTP4025,Europe/Paris,,O38, +O38:SP:4027,1,"LE PEYRINARD",45.259188,5.188172,0,0,O38:SA:CTP4027,Europe/Paris,,O38, +O38:SP:4028,1,"LE PEYRINARD",45.259257,5.188138,0,0,O38:SA:CTP4027,Europe/Paris,,O38, +O38:SP:4029,1,"MAIRIE",45.254289,5.171253,0,0,O38:SA:CTP4029,Europe/Paris,,O38, +O38:SP:403,1,"LES BERLIOUX RN.75",44.839231,5.611255,0,0,O38:SA:CTP403,Europe/Paris,,O38, +O38:SP:4030,1,"MAIRIE",45.254269,5.171351,0,0,O38:SA:CTP4029,Europe/Paris,,O38, +O38:SP:4031,1,"LES LOIVES",45.261105,5.196138,0,0,O38:SA:CTP4031,Europe/Paris,,O38, +O38:SP:4032,1,"LES LOIVES",45.261059,5.196193,0,0,O38:SA:CTP4031,Europe/Paris,,O38, +O38:SP:4033,1,"LE CHARLET",45.250943,5.187101,0,0,O38:SA:CTP4033,Europe/Paris,,O38, +O38:SP:4034,1,"LE CHARLET",45.250874,5.187125,0,0,O38:SA:CTP4033,Europe/Paris,,O38, +O38:SP:4035,1,"ROYANDIERE",45.250735,5.189461,0,0,O38:SA:CTP4035,Europe/Paris,,O38, +O38:SP:4037,1,"CHEMIN DU BRULE FER",45.262531,5.20413,0,0,O38:SA:CTP4037,Europe/Paris,,O38, +O38:SP:4038,1,"CHEMIN DU BRULE FER",45.26246,5.204168,0,0,O38:SA:CTP4037,Europe/Paris,,O38, +O38:SP:4039,1,"LE BONJEAN",45.257826,5.16191,0,0,O38:SA:CTP4039,Europe/Paris,,O38, +O38:SP:404,1,"LES BERLIOUX RN.75",44.838978,5.61116,0,0,O38:SA:CTP403,Europe/Paris,,O38, +O38:SP:4040,1,"LE BONJEAN",45.257829,5.161808,0,0,O38:SA:CTP4039,Europe/Paris,,O38, +O38:SP:4041,1,"CAR.PRE REYNAUD",45.26783,5.231703,0,0,O38:SA:CTP4041,Europe/Paris,,O38, +O38:SP:4042,1,"CAR.PRE REYNAUD",45.267833,5.231601,0,0,O38:SA:CTP4041,Europe/Paris,,O38, +O38:SP:4043,1,"PONT DE PONCET",45.264068,5.249816,0,0,O38:SA:CTP4043,Europe/Paris,,O38, +O38:SP:4044,1,"PONT DE PONCET",45.26394,5.249799,0,0,O38:SA:CTP4043,Europe/Paris,,O38, +O38:SP:4045,1,"PLACE JEAN PERRAUD",45.258608,5.24091,0,0,O38:SA:CTP4045,Europe/Paris,,O38, +O38:SP:4046,1,"PLACE JEAN PERRAUD",45.258673,5.240905,0,0,O38:SA:CTP4045,Europe/Paris,,O38, +O38:SP:4047,1,"LES HALLES",45.258455,5.243687,0,0,O38:SA:CTP4047,Europe/Paris,,O38, +O38:SP:4048,1,"LES HALLES",45.258501,5.243641,0,0,O38:SA:CTP4047,Europe/Paris,,O38, +O38:SP:405,1,"PONT DE PARASSAT",44.826318,5.668436,0,0,O38:SA:CTP405,Europe/Paris,,O38, +O38:SP:4051,1,"ECOLES",45.259536,5.24646,0,0,O38:SA:CTP4051,Europe/Paris,,O38, +O38:SP:4052,1,"ECOLES",45.25958,5.246476,0,0,O38:SA:CTP4051,Europe/Paris,,O38, +O38:SP:4054,1,"LE GRAND JULIN",45.250926,5.217199,0,0,O38:SA:CTP4054,Europe/Paris,,O38, +O38:SP:4055,1,"PILON(CAR.MARNANS)",45.279743,5.261856,0,0,O38:SA:CTP4055,Europe/Paris,,O38, +O38:SP:4056,1,"PILON(CAR.MARNANS)",45.27967,5.261746,0,0,O38:SA:CTP4055,Europe/Paris,,O38, +O38:SP:4057,1,"MAISON RAMBAUD",45.275436,5.231329,0,0,O38:SA:CTP4057,Europe/Paris,,O38, +O38:SP:4058,1,"MAISON RAMBAUD",45.275441,5.231347,0,0,O38:SA:CTP4057,Europe/Paris,,O38, +O38:SP:4059,1,"LES ENVERS",45.262698,5.212266,0,0,O38:SA:CTP4059,Europe/Paris,,O38, +O38:SP:406,1,"PONT DE PARASSAT",44.826234,5.668578,0,0,O38:SA:CTP405,Europe/Paris,,O38, +O38:SP:4060,1,"LES ENVERS",45.262711,5.212273,0,0,O38:SA:CTP4059,Europe/Paris,,O38, +O38:SP:4062,1,"LA MARQUISE",45.237324,5.206695,0,0,O38:SA:CTP4062,Europe/Paris,,O38, +O38:SP:4063,1,"CAMPING",45.245917,5.248522,0,0,O38:SA:CTP4063,Europe/Paris,,O38, +O38:SP:4064,1,"CAMPING",45.246125,5.248515,0,0,O38:SA:CTP4063,Europe/Paris,,O38, +O38:SP:4065,1,"LE VATILIER",45.271252,5.249882,0,0,O38:SA:CTP4065,Europe/Paris,,O38, +O38:SP:4066,1,"LE VATILIER",45.271257,5.249984,0,0,O38:SA:CTP4065,Europe/Paris,,O38, +O38:SP:4067,1,"ROUTE DE GARGAMEL",45.239364,5.247662,0,0,O38:SA:CTP4067,Europe/Paris,,O38, +O38:SP:4069,1,"LE GRAND FAYARD",45.268038,5.213822,0,0,O38:SA:CTP4069,Europe/Paris,,O38, +O38:SP:407,1,"LES MERLONS",44.815979,5.682348,0,0,O38:SA:CTP407,Europe/Paris,,O38, +O38:SP:4070,1,"LE GRAND FAYARD",45.267992,5.213743,0,0,O38:SA:CTP4069,Europe/Paris,,O38, +O38:SP:4071,1,"ORCEL",45.274986,5.250353,0,0,O38:SA:CTP4071,Europe/Paris,,O38, +O38:SP:4072,1,"ORCEL",45.274976,5.250455,0,0,O38:SA:CTP4071,Europe/Paris,,O38, +O38:SP:4073,1,"CAR. DES QUATRE ROUTES",45.257088,5.244271,0,0,O38:SA:CTP4073,Europe/Paris,,O38, +O38:SP:4074,1,"CAR. DES QUATRE ROUTES",45.257066,5.244186,0,0,O38:SA:CTP4073,Europe/Paris,,O38, +O38:SP:4075,1,"LE VERNAY",45.250698,5.336968,0,0,O38:SA:CTP4075,Europe/Paris,,O38, +O38:SP:4076,1,"LE VERNAY",45.250812,5.337011,0,0,O38:SA:CTP4075,Europe/Paris,,O38, +O38:SP:4077,1,"BOURG",45.255956,5.33673,0,0,O38:SA:CTP4077,Europe/Paris,,O38, +O38:SP:4078,1,"BOURG",45.255971,5.336547,0,0,O38:SA:CTP4077,Europe/Paris,,O38, +O38:SP:4079,1,"PARKING ACCA",45.23228,5.307551,0,0,O38:SA:CTP4079,Europe/Paris,,O38, +O38:SP:408,1,"LES MERLONS",44.815859,5.682577,0,0,O38:SA:CTP407,Europe/Paris,,O38, +O38:SP:4080,1,"PARKING ACCA",45.232211,5.30752,0,0,O38:SA:CTP4079,Europe/Paris,,O38, +O38:SP:4081,1,"LEVAUX",45.237636,5.321335,0,0,O38:SA:CTP4081,Europe/Paris,,O38, +O38:SP:4082,1,"LA COMBE DU LIN",45.245937,5.32584,0,0,O38:SA:CTP4082,Europe/Paris,,O38, +O38:SP:4083,1,"CARREFOUR LA SUIFFE",45.242205,5.37401,0,0,O38:SA:CTP4083,Europe/Paris,,O38, +O38:SP:4084,1,"CARREFOUR LA SUIFFE",45.242228,5.373997,0,0,O38:SA:CTP4083,Europe/Paris,,O38, +O38:SP:4085,1,"COTES ET DEVAY",45.234212,5.364331,0,0,O38:SA:CTP4085,Europe/Paris,,O38, +O38:SP:4087,1,"COMBE BUFFIERE",45.252138,5.391696,0,0,O38:SA:CTP4087,Europe/Paris,,O38, +O38:SP:4088,1,"COMBE BUFFIERE",45.25209,5.391621,0,0,O38:SA:CTP4087,Europe/Paris,,O38, +O38:SP:409,1,"PETIT ORIOL PONT",44.820332,5.704717,0,0,O38:SA:CTP409,Europe/Paris,,O38, +O38:SP:4090,1,"LES CHERPES",45.24384,5.354417,0,0,O38:SA:CTP4090,Europe/Paris,,O38, +O38:SP:4091,1,"CENTRE",45.275525,5.385719,0,0,O38:SA:CTP4091,Europe/Paris,,O38, +O38:SP:4092,1,"CENTRE",45.275546,5.385621,0,0,O38:SA:CTP4091,Europe/Paris,,O38, +O38:SP:4095,1,"COL DU COGNET",45.270413,5.345128,0,0,O38:SA:CTP4095,Europe/Paris,,O38, +O38:SP:4097,1,"MOULIN CAILLATIERE",45.233146,5.392116,0,0,O38:SA:CTP4097,Europe/Paris,,O38, +O38:SP:4098,1,"MOULIN CAILLATIERE",45.233141,5.392014,0,0,O38:SA:CTP4097,Europe/Paris,,O38, +O38:SP:4099,1,"BOURG",45.231566,5.33821,0,0,O38:SA:CTP4099,Europe/Paris,,O38, +O38:SP:410,1,"PETIT ORIOL PONT",44.820299,5.704758,0,0,O38:SA:CTP409,Europe/Paris,,O38, +O38:SP:4100,1,"BOURG",45.231352,5.338438,0,0,O38:SA:CTP4099,Europe/Paris,,O38, +O38:SP:4101,1,"LE ROUA",45.24526,5.337285,0,0,O38:SA:CTP4101,Europe/Paris,,O38, +O38:SP:4102,1,"LE ROUA",45.245826,5.337202,0,0,O38:SA:CTP4101,Europe/Paris,,O38, +O38:SP:4103,1,"COMBE ENARDON",45.270779,5.38016,0,0,O38:SA:CTP4103,Europe/Paris,,O38, +O38:SP:4104,1,"COMBE ENARDON",45.27074,5.380075,0,0,O38:SA:CTP4103,Europe/Paris,,O38, +O38:SP:4107,1,"LES ROCHES",45.240631,5.336606,0,0,O38:SA:CTP4107,Europe/Paris,,O38, +O38:SP:4108,1,"LES ROCHES",45.240632,5.336708,0,0,O38:SA:CTP4107,Europe/Paris,,O38, +O38:SP:4109,1,"BRUYERES 2",45.237015,5.356113,0,0,O38:SA:CTP4109,Europe/Paris,,O38, +O38:SP:4110,1,"BRUYERES 2",45.236984,5.35602,0,0,O38:SA:CTP4109,Europe/Paris,,O38, +O38:SP:4111,1,"BRUYERES 3",45.235593,5.356758,0,0,O38:SA:CTP4111,Europe/Paris,,O38, +O38:SP:4112,1,"BRUYERES 3",45.235603,5.356814,0,0,O38:SA:CTP4111,Europe/Paris,,O38, +O38:SP:4113,1,"LA CROIX PERRET",45.260177,5.338746,0,0,O38:SA:CTP4113,Europe/Paris,,O38, +O38:SP:4114,1,"LA CROIX PERRET",45.260592,5.340209,0,0,O38:SA:CTP4113,Europe/Paris,,O38, +O38:SP:4115,1,"LES MARIONS",45.268284,5.345208,0,0,O38:SA:CTP4115,Europe/Paris,,O38, +O38:SP:4116,1,"LES MARIONS",45.268284,5.345299,0,0,O38:SA:CTP4115,Europe/Paris,,O38, +O38:SP:4119,1,"CHAPELLES RD22",45.261235,5.36463,0,0,O38:SA:CTP4119,Europe/Paris,,O38, +O38:SP:4120,1,"CHAPELLES RD22",45.261132,5.364802,0,0,O38:SA:CTP4119,Europe/Paris,,O38, +O38:SP:4121,1,"LES AVENOS",45.257794,5.387675,0,0,O38:SA:CTP4121,Europe/Paris,,O38, +O38:SP:4122,1,"LES AVENOS",45.257754,5.38759,0,0,O38:SA:CTP4121,Europe/Paris,,O38, +O38:SP:4123,1,"MOULIN CHARPENAY",45.241463,5.383988,0,0,O38:SA:CTP4123,Europe/Paris,,O38, +O38:SP:4124,1,"MOULIN CHARPENAY",45.241466,5.383886,0,0,O38:SA:CTP4123,Europe/Paris,,O38, +O38:SP:4125,1,"LE STADE",45.258552,5.372639,0,0,O38:SA:CTP4125,Europe/Paris,,O38, +O38:SP:4126,1,"LE STADE",45.258548,5.372451,0,0,O38:SA:CTP4125,Europe/Paris,,O38, +O38:SP:4127,1,"LA CROISIERE",45.240455,5.358671,0,0,O38:SA:CTP4127,Europe/Paris,,O38, +O38:SP:4128,1,"LE VERT",45.238451,5.361779,0,0,O38:SA:CTP4128,Europe/Paris,,O38, +O38:SP:4129,1,"LA CROISIERE",45.240488,5.358685,0,0,O38:SA:CTP4127,Europe/Paris,,O38, +O38:SP:413,1,"VILLAGE",44.801954,5.651538,0,0,O38:SA:CTP413,Europe/Paris,,O38, +O38:SP:4130,1,"LE VERT",45.238496,5.361858,0,0,O38:SA:CTP4128,Europe/Paris,,O38, +O38:SP:4131,1,"ECOLES",45.230833,5.337665,0,0,O38:SA:CTP4131,Europe/Paris,,O38, +O38:SP:4132,1,"ECOLES",45.230879,5.337587,0,0,O38:SA:CTP4131,Europe/Paris,,O38, +O38:SP:4133,1,"STADE",45.229693,5.349151,0,0,O38:SA:CTP4133,Europe/Paris,,O38, +O38:SP:4134,1,"STADE",45.229365,5.34778,0,0,O38:SA:CTP4133,Europe/Paris,,O38, +O38:SP:4135,1,"LES BROSSES",45.256128,5.37639,0,0,O38:SA:CTP4135,Europe/Paris,,O38, +O38:SP:4136,1,"LES BROSSES",45.256171,5.376471,0,0,O38:SA:CTP4135,Europe/Paris,,O38, +O38:SP:4137,1,"LE MAGNIN",45.236549,5.342281,0,0,O38:SA:CTP4137,Europe/Paris,,O38, +O38:SP:4138,1,"LE MAGNIN",45.236481,5.342317,0,0,O38:SA:CTP4137,Europe/Paris,,O38, +O38:SP:4139,1,"LES BRUYERES",45.237847,5.352712,0,0,O38:SA:CTP4139,Europe/Paris,,O38, +O38:SP:414,1,"VILLAGE",44.801883,5.651635,0,0,O38:SA:CTP413,Europe/Paris,,O38, +O38:SP:4140,1,"LES BRUYERES",45.237834,5.352703,0,0,O38:SA:CTP4139,Europe/Paris,,O38, +O38:SP:4141,1,"CAMPING CHARROI",45.230145,5.385142,0,0,O38:SA:CTP4141,Europe/Paris,,O38, +O38:SP:4142,1,"CAMPING CHARROI",45.230199,5.385208,0,0,O38:SA:CTP4141,Europe/Paris,,O38, +O38:SP:4143,1,"SERRE",45.264485,5.378754,0,0,O38:SA:CTP4143,Europe/Paris,,O38, +O38:SP:4144,1,"SERRE",45.264507,5.378851,0,0,O38:SA:CTP4143,Europe/Paris,,O38, +O38:SP:4145,1,"LE THOMAS",45.240573,5.336689,0,0,O38:SA:CTP4145,Europe/Paris,,O38, +O38:SP:4146,1,"LE THOMAS",45.240724,5.336633,0,0,O38:SA:CTP4145,Europe/Paris,,O38, +O38:SP:4149,1,"LE BOURG",45.268849,5.449455,0,0,O38:SA:CTP4149,Europe/Paris,,O38, +O38:SP:415,1,"LES 4 CHEMINS",44.799964,5.646176,0,0,O38:SA:CTP415,Europe/Paris,,O38, +O38:SP:4150,1,"LE BOURG",45.268497,5.44905,0,0,O38:SA:CTP4149,Europe/Paris,,O38, +O38:SP:4151,1,"ECOLES",45.267512,5.448637,0,0,O38:SA:CTP4151,Europe/Paris,,O38, +O38:SP:4153,1,"MAT.N.D.L'OSIER",45.23899,5.405879,0,0,O38:SA:CTP4153,Europe/Paris,,O38, +O38:SP:4154,1,"MAT.N.D.L'OSIER",45.239057,5.405844,0,0,O38:SA:CTP4153,Europe/Paris,,O38, +O38:SP:4155,1,"ECOLES",45.245323,5.445116,0,0,O38:SA:CTP4155,Europe/Paris,,O38, +O38:SP:4156,1,"ECOLES",45.245319,5.445218,0,0,O38:SA:CTP4155,Europe/Paris,,O38, +O38:SP:4157,1,"HAUT",45.259084,5.446824,0,0,O38:SA:CTP4157,Europe/Paris,,O38, +O38:SP:4158,1,"HAUT",45.259167,5.446912,0,0,O38:SA:CTP4157,Europe/Paris,,O38, +O38:SP:4159,1,"BOURG",45.243633,5.444836,0,0,O38:SA:CTP4159,Europe/Paris,,O38, +O38:SP:416,1,"LES 4 CHEMINS",44.799845,5.646101,0,0,O38:SA:CTP415,Europe/Paris,,O38, +O38:SP:4160,1,"BOURG",45.243725,5.444785,0,0,O38:SA:CTP4159,Europe/Paris,,O38, +O38:SP:4161,1,"LES MOLLARDS",45.249536,5.445454,0,0,O38:SA:CTP4161,Europe/Paris,,O38, +O38:SP:4162,1,"LES MOLLARDS",45.249538,5.445353,0,0,O38:SA:CTP4161,Europe/Paris,,O38, +O38:SP:4163,1,"VILLE",45.255968,5.438302,0,0,O38:SA:CTP4163,Europe/Paris,,O38, +O38:SP:4164,1,"VILLE",45.255896,5.438293,0,0,O38:SA:CTP4163,Europe/Paris,,O38, +O38:SP:4165,1,"LE MARAIS RD1092",45.242796,5.449966,0,0,O38:SA:CTP4165,Europe/Paris,,O38, +O38:SP:4166,1,"LE MARAIS RD1092",45.242841,5.449921,0,0,O38:SA:CTP4165,Europe/Paris,,O38, +O38:SP:4167,1,"BOURG",45.238439,5.40543,0,0,O38:SA:CTP4167,Europe/Paris,,O38, +O38:SP:4168,1,"BOURG",45.238478,5.405346,0,0,O38:SA:CTP4167,Europe/Paris,,O38, +O38:SP:4169,1,"RN 92/RTE DE POLIENAS",45.260621,5.458367,0,0,O38:SA:CTP4169,Europe/Paris,,O38, +O38:SP:417,1,"PONT DE PREBOIS",44.808622,5.700303,0,0,O38:SA:CTP417,Europe/Paris,,O38, +O38:SP:4170,1,"RN 92/RTE DE POLIENAS",45.2607,5.458213,0,0,O38:SA:CTP4169,Europe/Paris,,O38, +O38:SP:4171,1,"CHALAMAND",45.259548,5.429367,0,0,O38:SA:CTP4171,Europe/Paris,,O38, +O38:SP:4172,1,"CHALAMAND",45.259499,5.429164,0,0,O38:SA:CTP4171,Europe/Paris,,O38, +O38:SP:4173,1,"LE RIF",45.248098,5.420763,0,0,O38:SA:CTP4173,Europe/Paris,,O38, +O38:SP:4174,1,"LE RIF",45.248616,5.42076,0,0,O38:SA:CTP4173,Europe/Paris,,O38, +O38:SP:4175,1,"LA ROCHE",45.251448,5.465867,0,0,O38:SA:CTP4175,Europe/Paris,,O38, +O38:SP:4176,1,"LA ROCHE",45.251439,5.465696,0,0,O38:SA:CTP4175,Europe/Paris,,O38, +O38:SP:4177,1,"LES ESSARTS",45.267609,5.467627,0,0,O38:SA:CTP4177,Europe/Paris,,O38, +O38:SP:4178,1,"LES ESSARTS",45.267581,5.467503,0,0,O38:SA:CTP4177,Europe/Paris,,O38, +O38:SP:4179,1,"GALEJAND",45.247675,5.404083,0,0,O38:SA:CTP4179,Europe/Paris,,O38, +O38:SP:418,1,"PONT DE PREBOIS",44.808539,5.700526,0,0,O38:SA:CTP417,Europe/Paris,,O38, +O38:SP:4180,1,"GALEJAND",45.247962,5.403991,0,0,O38:SA:CTP4179,Europe/Paris,,O38, +O38:SP:4181,1,"LA JACONNIERE",45.253947,5.431457,0,0,O38:SA:CTP4181,Europe/Paris,,O38, +O38:SP:4182,1,"LA JACONNIERE",45.253926,5.431524,0,0,O38:SA:CTP4181,Europe/Paris,,O38, +O38:SP:4183,1,"CHAUDRONNERIE SAMI",45.256009,5.465441,0,0,O38:SA:CTP4183,Europe/Paris,,O38, +O38:SP:4184,1,"CHAUDRONNERIE SAMI",45.256055,5.465516,0,0,O38:SA:CTP4183,Europe/Paris,,O38, +O38:SP:4185,1,"FERME DE L'ARENE",45.244004,5.40626,0,0,O38:SA:CTP4185,Europe/Paris,,O38, +O38:SP:4186,1,"FERME DE L'ARENE",45.244028,5.406356,0,0,O38:SA:CTP4185,Europe/Paris,,O38, +O38:SP:4187,1,"LA CHARRIERE",45.253435,5.407451,0,0,O38:SA:CTP4187,Europe/Paris,,O38, +O38:SP:4188,1,"LA CHARRIERE",45.253365,5.407556,0,0,O38:SA:CTP4187,Europe/Paris,,O38, +O38:SP:4189,1,"VILLAGE",45.256556,5.408589,0,0,O38:SA:CTP4189,Europe/Paris,,O38, +O38:SP:419,1,"MENGLAS",44.806954,5.769684,0,0,O38:SA:CTP419,Europe/Paris,,O38, +O38:SP:4190,1,"VILLAGE",45.256439,5.408691,0,0,O38:SA:CTP4189,Europe/Paris,,O38, +O38:SP:4191,1,"PIGENTIERE",45.232831,5.403475,0,0,O38:SA:CTP4191,Europe/Paris,,O38, +O38:SP:4192,1,"PIGENTIERE",45.232815,5.403376,0,0,O38:SA:CTP4191,Europe/Paris,,O38, +O38:SP:4193,1,"TIZIN",45.27197,5.480401,0,0,O38:SA:CTP4193,Europe/Paris,,O38, +O38:SP:4194,1,"TIZIN",45.271916,5.480445,0,0,O38:SA:CTP4193,Europe/Paris,,O38, +O38:SP:4195,1,"MONUMENT AUX MORTS",45.252305,5.472788,0,0,O38:SA:CTP4195,Europe/Paris,,O38, +O38:SP:4196,1,"MONUMENT AUX MORTS",45.252244,5.472842,0,0,O38:SA:CTP4195,Europe/Paris,,O38, +O38:SP:4197,1,"LA THIVOLLIERE",45.243757,5.472759,0,0,O38:SA:CTP4197,Europe/Paris,,O38, +O38:SP:4198,1,"LA THIVOLLIERE",45.24379,5.472667,0,0,O38:SA:CTP4197,Europe/Paris,,O38, +O38:SP:4199,1,"LE GUY",45.258952,5.476583,0,0,O38:SA:CTP4199,Europe/Paris,,O38, +O38:SP:420,1,"MENGLAS",44.806839,5.769799,0,0,O38:SA:CTP419,Europe/Paris,,O38, +O38:SP:4200,1,"LE GUY",45.258923,5.476508,0,0,O38:SA:CTP4199,Europe/Paris,,O38, +O38:SP:4201,1,"BOURG",45.249453,5.471658,0,0,O38:SA:CTP4201,Europe/Paris,,O38, +O38:SP:4202,1,"BOURG",45.249481,5.471548,0,0,O38:SA:CTP4201,Europe/Paris,,O38, +O38:SP:4203,1,"MAIRIE",45.234214,5.506611,0,0,O38:SA:CTP4203,Europe/Paris,,O38, +O38:SP:4204,1,"MAIRIE",45.2342,5.506711,0,0,O38:SA:CTP4203,Europe/Paris,,O38, +O38:SP:4205,1,"ROUTE DE LA RIVIERE",45.239714,5.504027,0,0,O38:SA:CTP4205,Europe/Paris,,O38, +O38:SP:4206,1,"ROUTE DE LA RIVIERE",45.239765,5.503834,0,0,O38:SA:CTP4205,Europe/Paris,,O38, +O38:SP:4207,1,"CITES",45.254806,5.476055,0,0,O38:SA:CTP4207,Europe/Paris,,O38, +O38:SP:4208,1,"CITES",45.254825,5.475957,0,0,O38:SA:CTP4207,Europe/Paris,,O38, +O38:SP:4209,1,"LA RENAUDIERE",45.264204,5.528473,0,0,O38:SA:CTP4209,Europe/Paris,,O38, +O38:SP:421,1,"RTE-ENTRESSEAUX",44.816327,5.774142,0,0,O38:SA:CTP421,Europe/Paris,,O38, +O38:SP:4210,1,"LA RENAUDIERE",45.263993,5.528411,0,0,O38:SA:CTP4209,Europe/Paris,,O38, +O38:SP:4211,1,"LES BRUNIERES",45.247863,5.514882,0,0,O38:SA:CTP4211,Europe/Paris,,O38, +O38:SP:4212,1,"LES BRUNIERES",45.247499,5.514789,0,0,O38:SA:CTP4211,Europe/Paris,,O38, +O38:SP:4213,1,"LE COING",45.249441,5.55419,0,0,O38:SA:CTP4213,Europe/Paris,,O38, +O38:SP:4214,1,"LE COING",45.249432,5.554291,0,0,O38:SA:CTP4213,Europe/Paris,,O38, +O38:SP:4215,1,"VIF DE LA CLAIE",45.254787,5.559818,0,0,O38:SA:CTP4215,Europe/Paris,,O38, +O38:SP:4216,1,"VIF DE LA CLAIE",45.254837,5.559744,0,0,O38:SA:CTP4215,Europe/Paris,,O38, +O38:SP:4217,1,"LES ETROITS",45.263947,5.566021,0,0,O38:SA:CTP4217,Europe/Paris,,O38, +O38:SP:4218,1,"LES ETROITS",45.264467,5.566017,0,0,O38:SA:CTP4217,Europe/Paris,,O38, +O38:SP:4219,1,"LES CHARPENNES",45.269522,5.556165,0,0,O38:SA:CTP4219,Europe/Paris,,O38, +O38:SP:422,1,"RTE-ENTRESSEAUX",44.816256,5.774158,0,0,O38:SA:CTP421,Europe/Paris,,O38, +O38:SP:4220,1,"LES CHARPENNES",45.269448,5.556197,0,0,O38:SA:CTP4219,Europe/Paris,,O38, +O38:SP:4221,1,"LE MUET",45.257332,5.55344,0,0,O38:SA:CTP4221,Europe/Paris,,O38, +O38:SP:4222,1,"LE MUET",45.256972,5.553746,0,0,O38:SA:CTP4221,Europe/Paris,,O38, +O38:SP:4223,1,"BOURG",45.262678,5.560991,0,0,O38:SA:CTP4223,Europe/Paris,,O38, +O38:SP:4224,1,"BOURG",45.262721,5.56107,0,0,O38:SA:CTP4223,Europe/Paris,,O38, +O38:SP:4225,1,"RESIDENCE MUTUALISTE",45.254052,5.662288,0,0,O38:SA:CTP4225,Europe/Paris,,O38, +O38:SP:4227,1,"RESIDENCE MUTUALISTE",45.253009,5.662793,0,0,O38:SA:CTP4225,Europe/Paris,,O38, +O38:SP:423,1,"SER CLAPI",44.832388,5.776337,0,0,O38:SA:CTP423,Europe/Paris,,O38, +O38:SP:4230,1,"RIF TRONCHARD",45.246294,5.6678,0,0,O38:SA:CTP4230,Europe/Paris,,O38, +O38:SP:4231,1,"RIF TRONCHARD",45.246576,5.667755,0,0,O38:SA:CTP4230,Europe/Paris,,O38, +O38:SP:4234,1,"CROIX DE LA ROCHETTE",45.258559,5.659413,0,0,OVO:SA:CTP4237,Europe/Paris,,O38, +O38:SP:4235,1,"CROIX DE LA ROCHETTE",45.25818,5.659485,0,0,OVO:SA:CTP4237,Europe/Paris,,O38, +O38:SP:4238,1,"LEP FRANCOISE DOLTO",45.250356,5.664903,0,0,OVO:SA:CTP4240,Europe/Paris,,O38, +O38:SP:4239,1,"LEP FRANCOISE DOLTO",45.250093,5.665308,0,0,OVO:SA:CTP4240,Europe/Paris,,O38, +O38:SP:424,1,"SER CLAPI",44.832435,5.776261,0,0,O38:SA:CTP423,Europe/Paris,,O38, +O38:SP:4242,1,"LE RUISSET",45.250021,5.631572,0,0,O38:SA:CTP4242,Europe/Paris,,O38, +O38:SP:4244,1,"LE RUISSET",45.249791,5.631603,0,0,O38:SA:CTP4242,Europe/Paris,,O38, +O38:SP:4246,1,"SAINT-JEAN",45.238263,5.635136,0,0,O38:SA:CTP4246,Europe/Paris,,O38, +O38:SP:4247,1,"SAINT-JEAN",45.238888,5.634275,0,0,O38:SA:CTP4246,Europe/Paris,,O38, +O38:SP:4249,1,"BASCULE",45.242862,5.632175,0,0,O38:SA:CTP4249,Europe/Paris,,O38, +O38:SP:425,1,"AUBEPIN",44.834156,5.717535,0,0,O38:SA:CTP425,Europe/Paris,,O38, +O38:SP:4251,1,"BASCULE",45.242872,5.632081,0,0,O38:SA:CTP4249,Europe/Paris,,O38, +O38:SP:4253,1,"LOGIS NEUF",45.263223,5.656679,0,0,OVO:SA:CTP4254,Europe/Paris,,O38, +O38:SP:4256,1,"LOGIS NEUF",45.263628,5.656293,0,0,OVO:SA:CTP4254,Europe/Paris,,O38, +O38:SP:4257,1,"CAP 38",45.240378,5.664694,0,0,O38:SA:CTP4257,Europe/Paris,,O38, +O38:SP:4259,1,"CAP 38",45.240344,5.664588,0,0,O38:SA:CTP4257,Europe/Paris,,O38, +O38:SP:426,1,"AUBEPIN",44.834126,5.717627,0,0,O38:SA:CTP425,Europe/Paris,,O38, +O38:SP:4261,1,"LES ECHALIERES",45.268182,5.619362,0,0,O38:SA:CTP4261,Europe/Paris,,O38, +O38:SP:4264,1,"LES ECHALIERES",45.268216,5.619418,0,0,O38:SA:CTP4261,Europe/Paris,,O38, +O38:SP:4265,1,"KARBEN",45.243143,5.670407,0,0,O38:SA:CTP4265,Europe/Paris,,O38, +O38:SP:427,1,"SERRE DE MILMASE",44.804766,5.72865,0,0,O38:SA:CTP427,Europe/Paris,,O38, +O38:SP:4270,1,"KARBEN",45.243178,5.670496,0,0,O38:SA:CTP4265,Europe/Paris,,O38, +O38:SP:4271,1,"USINE L",45.247977,5.658402,0,0,O38:SA:CTP4271,Europe/Paris,,O38, +O38:SP:4272,1,"USINE L",45.247904,5.658431,0,0,O38:SA:CTP4271,Europe/Paris,,O38, +O38:SP:4273,1,"LES CHAULNES",45.236411,5.638041,0,0,O38:SA:CTP4273,Europe/Paris,,O38, +O38:SP:4275,1,"LES CHAULNES",45.236491,5.638092,0,0,O38:SA:CTP4273,Europe/Paris,,O38, +O38:SP:4277,1,"SAN MARINO BARRAGE",45.236248,5.660977,0,0,O38:SA:CTP4277,Europe/Paris,,O38, +O38:SP:4279,1,"SAN MARINO BARRAGE",45.236752,5.663061,0,0,O38:SA:CTP4277,Europe/Paris,,O38, +O38:SP:428,1,"SERRE DE MILMASE",44.804747,5.728699,0,0,O38:SA:CTP427,Europe/Paris,,O38, +O38:SP:4282,1,"ILES CORDEES",45.259642,5.626132,0,0,O38:SA:CTP4282,Europe/Paris,,O38, +O38:SP:4284,1,"ILES CORDEES",45.259528,5.625992,0,0,O38:SA:CTP4282,Europe/Paris,,O38, +O38:SP:429,1,"ECOLES",44.816327,5.74817,0,0,O38:SA:CTP429,Europe/Paris,,O38, +O38:SP:4294,1,"LA PINEA",45.235094,5.67625,0,0,O38:SA:CTP4294,Europe/Paris,,O38, +O38:SP:4295,1,"LA PINEA",45.235065,5.676366,0,0,O38:SA:CTP4294,Europe/Paris,,O38, +O38:SP:4298,1,"LA MONTA",45.237997,5.688659,0,0,O38:SA:CTP4298,Europe/Paris,,O38, +O38:SP:430,1,"ECOLES",44.816274,5.748092,0,0,O38:SA:CTP429,Europe/Paris,,O38, +O38:SP:4300,1,"LA MONTA",45.237838,5.688885,0,0,O38:SA:CTP4298,Europe/Paris,,O38, +O38:SP:4301,1,"LES BONNAIS",45.240139,5.672821,0,0,O38:SA:CTP4301,Europe/Paris,,O38, +O38:SP:4303,1,"LES BONNAIS",45.240065,5.672693,0,0,O38:SA:CTP4301,Europe/Paris,,O38, +O38:SP:431,1,"FOREYRE",44.810052,5.722855,0,0,O38:SA:CTP431,Europe/Paris,,O38, +O38:SP:4318,1,"LE MURET",45.225806,5.686339,0,0,O38:SA:CTP4318,Europe/Paris,,O38, +O38:SP:432,1,"FOREYRE",44.810031,5.722984,0,0,O38:SA:CTP431,Europe/Paris,,O38, +O38:SP:4320,1,"LE MURET",45.226208,5.686173,0,0,O38:SA:CTP4318,Europe/Paris,,O38, +O38:SP:433,1,"LE GRAND ORIOL",44.829631,5.717185,0,0,O38:SA:CTP433,Europe/Paris,,O38, +O38:SP:4334,1,"PONT DE VENCE",45.229833,5.6828,0,0,O38:SA:CTP4334,Europe/Paris,,O38, +O38:SP:4335,1,"PONT DE VENCE",45.229785,5.682726,0,0,O38:SA:CTP4334,Europe/Paris,,O38, +O38:SP:434,1,"LE GRAND ORIOL",44.829354,5.716973,0,0,O38:SA:CTP433,Europe/Paris,,O38, +O38:SP:4343,1,"TROIS PONTS",45.219798,5.691642,0,0,O38:SA:CTP4343,Europe/Paris,,O38, +O38:SP:4344,1,"TROIS PONTS",45.219481,5.692085,0,0,O38:SA:CTP4343,Europe/Paris,,O38, +O38:SP:4349,1,"MAIRIE",45.233169,5.678736,0,0,O38:SA:CTP4349,Europe/Paris,,O38, +O38:SP:435,1,"PETIT ORIOL-EAUX",44.824306,5.715466,0,0,O38:SA:CTP435,Europe/Paris,,O38, +O38:SP:4351,1,"MAIRIE",45.232848,5.678832,0,0,O38:SA:CTP4349,Europe/Paris,,O38, +O38:SP:4357,1,"ROCHEPLEINE",45.244315,5.674894,0,0,O38:SA:CTP4357,Europe/Paris,,O38, +O38:SP:436,1,"PETIT ORIOL-EAUX",44.82429,5.715419,0,0,O38:SA:CTP435,Europe/Paris,,O38, +O38:SP:4363,1,"PREDIEU",45.223439,5.68859,0,0,O38:SA:CTP4363,Europe/Paris,,O38, +O38:SP:4364,1,"PREDIEU",45.222915,5.688895,0,0,O38:SA:CTP4363,Europe/Paris,,O38, +O38:SP:437,1,"PIERRE VULSON",44.840487,5.724138,0,0,O38:SA:CTP437,Europe/Paris,,O38, +O38:SP:438,1,"PIERRE VULSON",44.840502,5.724133,0,0,O38:SA:CTP437,Europe/Paris,,O38, +O38:SP:4381,1,"MOUTONNEES",45.228042,5.68433,0,0,O38:SA:CTP4381,Europe/Paris,,O38, +O38:SP:4382,1,"MOUTONNEES",45.228346,5.684252,0,0,O38:SA:CTP4381,Europe/Paris,,O38, +O38:SP:4387,1,"LES ARRIOTS",45.230355,5.794425,0,0,O38:SA:CTP4387,Europe/Paris,,O38, +O38:SP:4388,1,"LES ARRIOTS",45.230132,5.794328,0,0,O38:SA:CTP4387,Europe/Paris,,O38, +O38:SP:4400,1,"LA DETOURBE",45.223216,5.793196,0,0,O38:SA:CTP4400,Europe/Paris,,O38, +O38:SP:4401,1,"LA DETOURBE",45.223376,5.793711,0,0,O38:SA:CTP4400,Europe/Paris,,O38, +O38:SP:4406,1,"CROIX ST-PHILIBERT",45.232328,5.798768,0,0,O38:SA:CTP4406,Europe/Paris,,O38, +O38:SP:4409,1,"CROIX ST-PHILIBERT",45.2323,5.798828,0,0,O38:SA:CTP4406,Europe/Paris,,O38, +O38:SP:4418,1,"MAIRIE-FRANQUIERES",45.237708,5.803496,0,0,O38:SA:CTP4418,Europe/Paris,,O38, +O38:SP:442,1,"MAS MARTINENC",44.796668,5.730265,0,0,O38:SA:CTP442,Europe/Paris,,O38, +O38:SP:4420,1,"MAIRIE-FRANQUIERES",45.237706,5.803688,0,0,O38:SA:CTP4418,Europe/Paris,,O38, +O38:SP:4426,1,"LES JAILLIERES",45.220648,5.789221,0,0,O38:SA:CTP4426,Europe/Paris,,O38, +O38:SP:4428,1,"LES JAILLIERES",45.221476,5.790841,0,0,O38:SA:CTP4426,Europe/Paris,,O38, +O38:SP:4429,1,"PLEIN SOLEIL",45.22202,5.799582,0,0,O38:SA:CTP4429,Europe/Paris,,O38, +O38:SP:443,1,"MAS MARTINENC",44.796647,5.730136,0,0,O38:SA:CTP442,Europe/Paris,,O38, +O38:SP:4430,1,"PLEIN SOLEIL",45.222238,5.799981,0,0,O38:SA:CTP4429,Europe/Paris,,O38, +O38:SP:4433,1,"SAINT-MURY",45.218836,5.786831,0,0,O38:SA:CTP4433,Europe/Paris,,O38, +O38:SP:4436,1,"SAINT-MURY",45.218419,5.786454,0,0,O38:SA:CTP4433,Europe/Paris,,O38, +O38:SP:4444,1,"LUCIE PELLAT",45.224836,5.797802,0,0,O38:SA:CTP4444,Europe/Paris,,O38, +O38:SP:4446,1,"LUCIE PELLAT",45.224765,5.797761,0,0,O38:SA:CTP4444,Europe/Paris,,O38, +O38:SP:4448,1,"CHEMIN DES ARRIOTS",45.22771,5.795911,0,0,O38:SA:CTP4448,Europe/Paris,,O38, +O38:SP:4451,1,"CHEMIN DES ARRIOTS",45.227631,5.795685,0,0,O38:SA:CTP4448,Europe/Paris,,O38, +O38:SP:446,1,"PLACE DU VERCORS",44.816609,5.747923,0,0,O38:SA:CTP446,Europe/Paris,,O38, +O38:SP:447,1,"PLACE DU VERCORS",44.816778,5.748041,0,0,O38:SA:CTP446,Europe/Paris,,O38, +O38:SP:448,1,"COLLEGE DU TRIEVES",44.815345,5.748551,0,0,O38:SA:CTP448,Europe/Paris,,O38, +O38:SP:449,1,"COLLEGE DU TRIEVES",44.815256,5.748532,0,0,O38:SA:CTP448,Europe/Paris,,O38, +O38:SP:4500,1,"HAMEAU FLEURI",45.225363,5.809227,0,0,O38:SA:CTP4500,Europe/Paris,,O38, +O38:SP:4502,1,"HAMEAU FLEURI",45.225779,5.809976,0,0,O38:SA:CTP4500,Europe/Paris,,O38, +O38:SP:4504,1,"LE HAUT",45.239423,5.806505,0,0,O38:SA:CTP4504,Europe/Paris,,O38, +O38:SP:4505,1,"LE HAUT",45.239436,5.806532,0,0,O38:SA:CTP4504,Europe/Paris,,O38, +O38:SP:4509,1,"LES EVEQUAUX",45.238736,5.817518,0,0,O38:SA:CTP4511,Europe/Paris,,O38, +O38:SP:451,1,"ST BAUVAIS",44.78821,5.755851,0,0,O38:SA:CTP451,Europe/Paris,,O38, +O38:SP:4511,1,"LES EVEQUAUX",45.238845,5.817449,0,0,O38:SA:CTP4511,Europe/Paris,,O38, +O38:SP:4516,1,"LES CLAVERINS RD1090",45.233811,5.809675,0,0,O38:SA:CTP4516,Europe/Paris,,O38, +O38:SP:4518,1,"LES CLAVERINS RD1090",45.233408,5.808587,0,0,O38:SA:CTP4516,Europe/Paris,,O38, +O38:SP:452,1,"FOREYRE RD.526",44.813403,5.717329,0,0,O38:SA:CTP452,Europe/Paris,,O38, +O38:SP:4521,1,"PRE MILLET",45.222073,5.813315,0,0,O38:SA:CTP4521,Europe/Paris,,O38, +O38:SP:4523,1,"PRE MILLET",45.221589,5.812884,0,0,O38:SA:CTP4521,Europe/Paris,,O38, +O38:SP:4525,1,"LE TARTAIX",45.229171,5.817946,0,0,O38:SA:CTP4525,Europe/Paris,,O38, +O38:SP:4527,1,"LE TARTAIX",45.229093,5.817951,0,0,O38:SA:CTP4525,Europe/Paris,,O38, +O38:SP:4529,1,"CHANTEBOUT",45.226107,5.814514,0,0,OGE:SA:CTP103133,Europe/Paris,,O38, +O38:SP:453,1,"FOREYRE RD.526",44.813483,5.717343,0,0,O38:SA:CTP452,Europe/Paris,,O38, +O38:SP:4531,1,"CHANTEBOUT",45.226109,5.81456,0,0,OGE:SA:CTP103133,Europe/Paris,,O38, +O38:SP:4538,1,"LES BARRAUX",45.242051,5.812492,0,0,O38:SA:CTP4538,Europe/Paris,,O38, +O38:SP:4539,1,"LES BARRAUX",45.24202,5.812535,0,0,O38:SA:CTP4538,Europe/Paris,,O38, +O38:SP:454,1,"BEAUMET",44.812958,5.742484,0,0,O38:SA:CTP454,Europe/Paris,,O38, +O38:SP:4541,1,"CROIX VERTE",45.219097,5.810136,0,0,O38:SA:CTP4541,Europe/Paris,,O38, +O38:SP:4543,1,"CROIX VERTE",45.219168,5.810388,0,0,O38:SA:CTP4541,Europe/Paris,,O38, +O38:SP:4545,1,"INRIA",45.217394,5.807353,0,0,OGE:SA:CTP4544,Europe/Paris,,O38, +O38:SP:4547,1,"INRIA",45.217561,5.807489,0,0,OGE:SA:CTP4544,Europe/Paris,,O38, +O38:SP:4549,1,"LA GARE",45.228639,5.804931,0,0,O38:SA:CTP4549,Europe/Paris,,O38, +O38:SP:455,1,"BEAUMET",44.813852,5.743183,0,0,O38:SA:CTP454,Europe/Paris,,O38, +O38:SP:4551,1,"LA GARE",45.228388,5.80442,0,0,O38:SA:CTP4549,Europe/Paris,,O38, +O38:SP:4552,1,"ECOLE DES CHAVANNES",45.222865,5.808895,0,0,O38:SA:CTP4552,Europe/Paris,,O38, +O38:SP:4553,1,"ECOLE DES CHAVANNES",45.223029,5.808506,0,0,O38:SA:CTP4552,Europe/Paris,,O38, +O38:SP:4555,1,"LA BATIE",45.239181,5.850665,0,0,O38:SA:CTP4555,Europe/Paris,,O38, +O38:SP:4559,1,"GARE",45.246133,5.831302,0,0,O38:SA:CTP4559,Europe/Paris,,O38, +O38:SP:456,1,"MILMAZE",44.803999,5.723647,0,0,O38:SA:CTP456,Europe/Paris,,O38, +O38:SP:4561,1,"GARE",45.245883,5.830999,0,0,O38:SA:CTP4559,Europe/Paris,,O38, +O38:SP:4565,1,"LES MILLETS",45.253886,5.824471,0,0,OGE:SA:CTP4562,Europe/Paris,,O38, +O38:SP:4567,1,"LES COMBES-CHEMIN DU MAS",45.249591,5.82029,0,0,O38:SA:CTP4567,Europe/Paris,,O38, +O38:SP:4568,1,"LE SERVAGE",45.245519,5.819905,0,0,O38:SA:CTP4568,Europe/Paris,,O38, +O38:SP:4569,1,"LE SERVAGE",45.24553,5.819887,0,0,O38:SA:CTP4568,Europe/Paris,,O38, +O38:SP:457,1,"MILMAZE",44.803964,5.72367,0,0,O38:SA:CTP456,Europe/Paris,,O38, +O38:SP:4573,1,"LES VARCIAUX",45.25429,5.836963,0,0,OGE:SA:CTP4570,Europe/Paris,,O38, +O38:SP:4577,1,"LE MANIVAL",45.260847,5.831737,0,0,OGE:SA:CTP4578,Europe/Paris,,O38, +O38:SP:458,1,"MENTAYRE",44.817817,5.779382,0,0,O38:SA:CTP458,Europe/Paris,,O38, +O38:SP:4581,1,"CHATEAU RANDON",45.242289,5.824589,0,0,O38:SA:CTP4581,Europe/Paris,,O38, +O38:SP:4583,1,"CHATEAU RANDON",45.242435,5.825012,0,0,O38:SA:CTP4581,Europe/Paris,,O38, +O38:SP:4588,1,"LE MEMORIAL",45.254143,5.840451,0,0,OGE:SA:CTP4589,Europe/Paris,,O38, +O38:SP:459,1,"MENTAYRE",44.817878,5.779436,0,0,O38:SA:CTP458,Europe/Paris,,O38, +O38:SP:4591,1,"LE MEMORIAL",45.254079,5.839974,0,0,OGE:SA:CTP4589,Europe/Paris,,O38, +O38:SP:4592,1,"GEYDAN GENISSIEUX",45.251755,5.823242,0,0,OGE:SA:CTP4593,Europe/Paris,,O38, +O38:SP:4596,1,"CHEMIN DES BOUTS",45.254356,5.829354,0,0,OGE:SA:CTP4597,Europe/Paris,,O38, +O38:SP:460,1,"CORDEAC",44.827726,5.840164,0,0,O38:SA:CTP460,Europe/Paris,,O38, +O38:SP:4600,1,"PLACE DE L'EGLISE",45.248286,5.826317,0,0,O38:SA:CTP4600,Europe/Paris,,O38, +O38:SP:4602,1,"PLACE DE L'EGLISE",45.248262,5.82632,0,0,O38:SA:CTP4600,Europe/Paris,,O38, +O38:SP:461,1,"CORDEAC",44.827793,5.839914,0,0,O38:SA:CTP460,Europe/Paris,,O38, +O38:SP:4616,1,"COLLEGE GRESIVAUDAN",45.240185,5.820771,0,0,O38:SA:CTP4616,Europe/Paris,,O38, +O38:SP:4618,1,"COLLEGE GRESIVAUDAN",45.240293,5.820764,0,0,O38:SA:CTP4616,Europe/Paris,,O38, +O38:SP:4620,1,"LES EYMES RD1090",45.256003,5.846347,0,0,O38:SA:CTP4620,Europe/Paris,,O38, +O38:SP:4622,1,"LES EYMES RD1090",45.256329,5.847181,0,0,O38:SA:CTP4620,Europe/Paris,,O38, +O38:SP:4624,1,"LES RATZ",45.258225,5.851234,0,0,OGE:SA:CTP4625,Europe/Paris,,O38, +O38:SP:4626,1,"LES RATZ",45.258344,5.851234,0,0,OGE:SA:CTP4625,Europe/Paris,,O38, +O38:SP:4628,1,"LE PIAT",45.250629,5.848138,0,0,OGE:SA:CTP4629,Europe/Paris,,O38, +O38:SP:4630,1,"LE PIAT",45.250938,5.847371,0,0,OGE:SA:CTP4629,Europe/Paris,,O38, +O38:SP:4632,1,"CROIX DU ROZAT",45.253179,5.830652,0,0,O38:SA:CTP4632,Europe/Paris,,O38, +O38:SP:4635,1,"COTE BELLE",45.218366,5.865261,0,0,O38:SA:CTP4635,Europe/Paris,,O38, +O38:SP:4637,1,"COTE BELLE",45.218253,5.865296,0,0,O38:SA:CTP4635,Europe/Paris,,O38, +O38:SP:4639,1,"LE FANGEAT",45.241092,5.840083,0,0,OGE:SA:CTP4640,Europe/Paris,,O38, +O38:SP:4641,1,"LE FANGEAT",45.241171,5.840207,0,0,OGE:SA:CTP4640,Europe/Paris,,O38, +O38:SP:4649,1,"LES MARECHAUX",45.249923,5.836229,0,0,OGE:SA:CTP4650,Europe/Paris,,O38, +O38:SP:4652,1,"LES MARECHAUX",45.249507,5.835829,0,0,OGE:SA:CTP4650,Europe/Paris,,O38, +O38:SP:4656,1,"MAIRIE",45.247421,5.851625,0,0,O38:SA:CTP4656,Europe/Paris,,O38, +O38:SP:466,1,"LES MARINIERS",44.818331,5.908238,0,0,O38:SA:CTP466,Europe/Paris,,O38, +O38:SP:4667,1,"LA PLACE",45.215527,5.862239,0,0,O38:SA:CTP4667,Europe/Paris,,O38, +O38:SP:4669,1,"LA PLACE",45.216192,5.86298,0,0,O38:SA:CTP4667,Europe/Paris,,O38, +O38:SP:467,1,"LES MARINIERS",44.818268,5.908286,0,0,O38:SA:CTP466,Europe/Paris,,O38, +O38:SP:4671,1,"BELLE PLAINE",45.221166,5.86833,0,0,OGE:SA:CTP4672,Europe/Paris,,O38, +O38:SP:4673,1,"BELLE PLAINE",45.221619,5.868771,0,0,OGE:SA:CTP4672,Europe/Paris,,O38, +O38:SP:4683,1,"CLOYERES",45.264437,5.879457,0,0,OGE:SA:CTP4682,Europe/Paris,,O38, +O38:SP:4685,1,"CLOYERES",45.264449,5.87926,0,0,OGE:SA:CTP4682,Europe/Paris,,O38, +O38:SP:469,1,"RN 85",44.833,5.893259,0,0,O38:SA:CTP469,Europe/Paris,,O38, +O38:SP:4692,1,"LES SEMAISES",45.232183,5.821145,0,0,OGE:SA:CTP4695,Europe/Paris,,O38, +O38:SP:4694,1,"LES SEMAISES",45.232353,5.821375,0,0,OGE:SA:CTP4695,Europe/Paris,,O38, +O38:SP:4698,1,"PRE DE L'EAU",45.224217,5.817848,0,0,O38:SA:CTP4698,Europe/Paris,,O38, +O38:SP:470,1,"RN 85",44.833356,5.894095,0,0,O38:SA:CTP469,Europe/Paris,,O38, +O38:SP:4700,1,"PRE DE L'EAU",45.22403,5.819495,0,0,O38:SA:CTP4698,Europe/Paris,,O38, +O38:SP:4701,1,"CLOS MARCHAND",45.249539,5.828262,0,0,O38:SA:CTP4701,Europe/Paris,,O38, +O38:SP:4702,1,"CLOS MARCHAND",45.249476,5.828431,0,0,O38:SA:CTP4701,Europe/Paris,,O38, +O38:SP:471,1,"LES MORAS",44.807574,5.898603,0,0,O38:SA:CTP471,Europe/Paris,,O38, +O38:SP:472,1,"LE BAS DE QUET",44.83677,5.858127,0,0,O38:SA:CTP472,Europe/Paris,,O38, +O38:SP:473,1,"LE BAS DE QUET",44.836729,5.858209,0,0,O38:SA:CTP472,Europe/Paris,,O38, +O38:SP:474,1,"LES PAYAS",44.798836,5.906719,0,0,O38:SA:CTP474,Europe/Paris,,O38, +O38:SP:475,1,"QUET-EN-BEAUMONT",44.834166,5.873677,0,0,O38:SA:CTP475,Europe/Paris,,O38, +O38:SP:476,1,"LA CROIX DE LA PIGNE",44.812162,5.881,0,0,O38:SA:CTP476,Europe/Paris,,O38, +O38:SP:477,1,"MAIRIE",44.835855,5.875496,0,0,O38:SA:CTP477,Europe/Paris,,O38, +O38:SP:4778,1,"LA MADONE",45.246814,5.896064,0,0,OGE:SA:CTP4779,Europe/Paris,,O38, +O38:SP:478,1,"MOULIN ACHARDS",44.812075,5.864066,0,0,O38:SA:CTP478,Europe/Paris,,O38, +O38:SP:4780,1,"LA MADONE",45.246303,5.895601,0,0,OGE:SA:CTP4779,Europe/Paris,,O38, +O38:SP:4782,1,"VORS",45.244382,5.894125,0,0,OGE:SA:CTP4783,Europe/Paris,,O38, +O38:SP:4784,1,"VORS",45.24435,5.894181,0,0,OGE:SA:CTP4783,Europe/Paris,,O38, +O38:SP:4786,1,"LA MAIRIE",45.238259,5.888092,0,0,OGE:SA:CTP4787,Europe/Paris,,O38, +O38:SP:4788,1,"LA MAIRIE",45.238144,5.888015,0,0,OGE:SA:CTP4787,Europe/Paris,,O38, +O38:SP:479,1,"MOULIN ACHARDS",44.812114,5.864215,0,0,O38:SA:CTP478,Europe/Paris,,O38, +O38:SP:4790,1,"LA POLOGNE",45.236465,5.885688,0,0,OGE:SA:CTP4791,Europe/Paris,,O38, +O38:SP:4792,1,"LA POLOGNE",45.23665,5.885841,0,0,OGE:SA:CTP4791,Europe/Paris,,O38, +O38:SP:4794,1,"EGLISE (GENDARMERIE)",45.240949,5.891023,0,0,OGE:SA:CTP4795,Europe/Paris,,O38, +O38:SP:4796,1,"EGLISE (GENDARMERIE)",45.241058,5.89095,0,0,OGE:SA:CTP4795,Europe/Paris,,O38, +O38:SP:480,1,"LES GACHETS",44.817168,5.866287,0,0,O38:SA:CTP480,Europe/Paris,,O38, +O38:SP:4806,1,"BRIGNOUD PLACE",45.258582,5.908649,0,0,O38:SA:CTP4806,Europe/Paris,,O38, +O38:SP:4808,1,"BRIGNOUD PLACE",45.259272,5.90924,0,0,O38:SA:CTP4806,Europe/Paris,,O38, +O38:SP:481,1,"LES GACHETS",44.817245,5.866274,0,0,O38:SA:CTP480,Europe/Paris,,O38, +O38:SP:4810,1,"LE SABOT",45.25346,5.903084,0,0,OGE:SA:CTP4811,Europe/Paris,,O38, +O38:SP:4812,1,"LE SABOT",45.253031,5.902516,0,0,OGE:SA:CTP4811,Europe/Paris,,O38, +O38:SP:482,1,"LE MOULIN",44.822916,5.950041,0,0,O38:SA:CTP482,Europe/Paris,,O38, +O38:SP:4826,1,"LANCEY",45.233673,5.88196,0,0,OGE:SA:CTP4827,Europe/Paris,,O38, +O38:SP:4828,1,"LANCEY",45.233497,5.881717,0,0,OGE:SA:CTP4827,Europe/Paris,,O38, +O38:SP:483,1,"LE MOULIN",44.822959,5.950137,0,0,O38:SA:CTP482,Europe/Paris,,O38, +O38:SP:4837,1,"PARKING LYCEE MARIE REYNOARD",45.250688,5.899167,0,0,OGE:SA:CTP4838,Europe/Paris,,O38, +O38:SP:4839,1,"PARKING LYCEE MARIE REYNOARD",45.250729,5.899083,0,0,OGE:SA:CTP4838,Europe/Paris,,O38, +O38:SP:484,1,"PAQUETTES",44.827119,5.930292,0,0,O38:SA:CTP484,Europe/Paris,,O38, +O38:SP:4841,1,"CITE DES ROSES",45.230528,5.878354,0,0,O38:SA:CTP4841,Europe/Paris,,O38, +O38:SP:4843,1,"CITE DES ROSES",45.229344,5.877178,0,0,O38:SA:CTP4841,Europe/Paris,,O38, +O38:SP:485,1,"PAQUETTES",44.827228,5.930139,0,0,O38:SA:CTP484,Europe/Paris,,O38, +O38:SP:4852,1,"BRIGNOUD CENTRE",45.256192,5.90604,0,0,O38:SA:CTP4852,Europe/Paris,,O38, +O38:SP:4854,1,"BRIGNOUD CENTRE",45.256693,5.906476,0,0,O38:SA:CTP4852,Europe/Paris,,O38, +O38:SP:486,1,"LE VILLAGE",44.80545,5.93074,0,0,O38:SA:CTP486,Europe/Paris,,O38, +O38:SP:4860,1,"CITE NOUVELLE",45.227015,5.874554,0,0,OGE:SA:CTP4861,Europe/Paris,,O38, +O38:SP:4862,1,"CITE NOUVELLE",45.226703,5.874355,0,0,OGE:SA:CTP4861,Europe/Paris,,O38, +O38:SP:4864,1,"PONT DE PRUNEY",45.225522,5.873076,0,0,O38:SA:CTP4864,Europe/Paris,,O38, +O38:SP:4866,1,"PONT DE PRUNEY",45.225053,5.872431,0,0,O38:SA:CTP4864,Europe/Paris,,O38, +O38:SP:487,1,"LE VILLAGE",44.805479,5.930771,0,0,O38:SA:CTP486,Europe/Paris,,O38, +O38:SP:4872,1,"LANCEY GARE SNCF",45.234566,5.881964,0,0,OGE:SA:CTP4873,Europe/Paris,,O38, +O38:SP:4874,1,"LANCEY GARE SNCF",45.234353,5.881129,0,0,OGE:SA:CTP4873,Europe/Paris,,O38, +O38:SP:488,1,"BEAUFIN",44.789151,5.959575,0,0,O38:SA:CTP488,Europe/Paris,,O38, +O38:SP:4880,1,"LYCEE (RD.523)",45.250373,5.899728,0,0,OGE:SA:CTP4881,Europe/Paris,,O38, +O38:SP:4882,1,"LYCEE (RD.523)",45.250267,5.899449,0,0,OGE:SA:CTP4881,Europe/Paris,,O38, +O38:SP:489,1,"BEAUFIN",44.789178,5.959659,0,0,O38:SA:CTP488,Europe/Paris,,O38, +O38:SP:490,1,"ECOLE COMMUNALE",44.818928,5.946835,0,0,O38:SA:CTP490,Europe/Paris,,O38, +O38:SP:491,1,"ECOLE COMMUNALE",44.818943,5.946918,0,0,O38:SA:CTP490,Europe/Paris,,O38, +O38:SP:492,1,"LE SAUTET LA COMBE",44.819289,5.915495,0,0,O38:SA:CTP492,Europe/Paris,,O38, +O38:SP:493,1,"LE SAUTET LA COMBE",44.819346,5.915557,0,0,O38:SA:CTP492,Europe/Paris,,O38, +O38:SP:494,1,"LES CHAPOUX",44.818022,5.918947,0,0,O38:SA:CTP494,Europe/Paris,,O38, +O38:SP:495,1,"LES CHAPOUX",44.81809,5.91891,0,0,O38:SA:CTP494,Europe/Paris,,O38, +O38:SP:4951,1,"LES CATHERINES",45.317564,4.779546,0,0,O38:SA:CTP4951,Europe/Paris,,O38, +O38:SP:4952,1,"LES CATHERINES",45.317494,4.779211,0,0,O38:SA:CTP4951,Europe/Paris,,O38, +O38:SP:4953,1,"LES GRANGES",45.327174,4.767183,0,0,O38:SA:CTP4953,Europe/Paris,,O38, +O38:SP:4954,1,"LES GRANGES",45.327157,4.767281,0,0,O38:SA:CTP4953,Europe/Paris,,O38, +O38:SP:4955,1,"PONT DU RHONE",45.319534,4.768332,0,0,O38:SA:CTP4955,Europe/Paris,,O38, +O38:SP:4956,1,"PONT DU RHONE",45.319382,4.768297,0,0,O38:SA:CTP4955,Europe/Paris,,O38, +O38:SP:4959,1,"GIRATOIRE-STADE-AUBERGE L'ILE",45.322478,4.767864,0,0,O38:SA:CTP4959,Europe/Paris,,O38, +O38:SP:496,1,"LES CHENETS",44.818736,5.933214,0,0,O38:SA:CTP496,Europe/Paris,,O38, +O38:SP:4960,1,"GIRATOIRE-STADE-AUBERGE L'ILE",45.32248,4.767762,0,0,O38:SA:CTP4959,Europe/Paris,,O38, +O38:SP:4961,1,"MONCEY-STOP",45.317467,4.783272,0,0,O38:SA:CTP4961,Europe/Paris,,O38, +O38:SP:4962,1,"MONCEY-STOP",45.317571,4.783009,0,0,O38:SA:CTP4961,Europe/Paris,,O38, +O38:SP:4963,1,"EGLISE-MAIRIE",45.317986,4.774619,0,0,O38:SA:CTP4963,Europe/Paris,,O38, +O38:SP:4964,1,"EGLISE-MAIRIE",45.317903,4.774635,0,0,O38:SA:CTP4963,Europe/Paris,,O38, +O38:SP:4965,1,"CITE CNR",45.307606,4.794218,0,0,O38:SA:CTP4965,Europe/Paris,,O38, +O38:SP:4966,1,"CITE CNR",45.307539,4.794181,0,0,O38:SA:CTP4965,Europe/Paris,,O38, +O38:SP:4967,1,"CAR.RD 519",45.319442,4.837034,0,0,O38:SA:CTP4967,Europe/Paris,,O38, +O38:SP:4968,1,"CAR.RD 519",45.319406,4.835602,0,0,O38:SA:CTP4967,Europe/Paris,,O38, +O38:SP:497,1,"VILLAGE VACANCES",44.814639,5.941486,0,0,O38:SA:CTP497,Europe/Paris,,O38, +O38:SP:4973,1,"COMBE-BAYON",45.311496,4.86363,0,0,O38:SA:CTP4973,Europe/Paris,,O38, +O38:SP:4975,1,"GENDARMERIE",45.319233,4.810553,0,0,O38:SA:CTP4975,Europe/Paris,,O38, +O38:SP:4976,1,"GENDARMERIE",45.319189,4.810168,0,0,O38:SA:CTP4975,Europe/Paris,,O38, +O38:SP:4977,1,"LES DOREAUX",45.310739,4.860192,0,0,O38:SA:CTP4977,Europe/Paris,,O38, +O38:SP:4978,1,"LES DOREAUX",45.310721,4.860415,0,0,O38:SA:CTP4977,Europe/Paris,,O38, +O38:SP:4979,1,"CAMP.BEAUSEJOUR",45.314495,4.824505,0,0,O38:SA:CTP4979,Europe/Paris,,O38, +O38:SP:498,1,"CARDAIRE LES COTES",44.831885,5.913962,0,0,O38:SA:CTP498,Europe/Paris,,O38, +O38:SP:4980,1,"CAMP.BEAUSEJOUR",45.31454,4.824337,0,0,O38:SA:CTP4979,Europe/Paris,,O38, +O38:SP:4981,1,"LES GUYOTS",45.323325,4.831256,0,0,O38:SA:CTP4981,Europe/Paris,,O38, +O38:SP:4982,1,"LES GUYOTS",45.323253,4.831262,0,0,O38:SA:CTP4981,Europe/Paris,,O38, +O38:SP:4983,1,"MAIRIE",45.318069,4.819753,0,0,O38:SA:CTP4983,Europe/Paris,,O38, +O38:SP:4984,1,"MAIRIE",45.318141,4.819752,0,0,O38:SA:CTP4983,Europe/Paris,,O38, +O38:SP:4985,1,"PLANISSIEU N.30bis",45.326064,4.816323,0,0,O38:SA:CTP4985,Europe/Paris,,O38, +O38:SP:4986,1,"PLANISSIEU N.30bis",45.32605,4.816423,0,0,O38:SA:CTP4985,Europe/Paris,,O38, +O38:SP:4987,1,"CACHEPIOU",45.307842,4.80894,0,0,O38:SA:CTP4987,Europe/Paris,,O38, +O38:SP:4988,1,"CACHEPIOU",45.307831,4.809139,0,0,O38:SA:CTP4987,Europe/Paris,,O38, +O38:SP:4989,1,"PLANISSIEU N.26",45.321469,4.817014,0,0,O38:SA:CTP4989,Europe/Paris,,O38, +O38:SP:499,1,"CARDAIRE LES COTES",44.831935,5.914094,0,0,O38:SA:CTP498,Europe/Paris,,O38, +O38:SP:4990,1,"PLANISSIEU N.26",45.321467,4.817116,0,0,O38:SA:CTP4989,Europe/Paris,,O38, +O38:SP:4991,1,"LES FALQUES",45.324201,4.859095,0,0,O38:SA:CTP4991,Europe/Paris,,O38, +O38:SP:4992,1,"LES FALQUES",45.324263,4.859045,0,0,O38:SA:CTP4991,Europe/Paris,,O38, +O38:SP:4993,1,"LES CLAVETTES",45.307439,4.866452,0,0,O38:SA:CTP4993,Europe/Paris,,O38, +O38:SP:4994,1,"LES CLAVETTES",45.307369,4.86647,0,0,O38:SA:CTP4993,Europe/Paris,,O38, +O38:SP:4995,1,"ROND POINT",45.317313,4.808115,0,0,O38:SA:CTP4995,Europe/Paris,,O38, +O38:SP:4998,1,"LA BATIE",45.320482,4.824615,0,0,O38:SA:CTP4998,Europe/Paris,,O38, +O38:SP:4999,1,"LA BATIE",45.320425,4.82468,0,0,O38:SA:CTP4998,Europe/Paris,,O38, +O38:SP:500,1,"PLACE NAPOLEON",44.817456,5.948319,0,0,O38:SA:CTP500,Europe/Paris,,O38, +O38:SP:5000,1,"LE MAS",45.325603,4.89567,0,0,O38:SA:CTP5000,Europe/Paris,,O38, +O38:SP:5001,1,"LE MAS",45.325631,4.895584,0,0,O38:SA:CTP5000,Europe/Paris,,O38, +O38:SP:5002,1,"PORTE DU CHATEAU",45.328682,4.903143,0,0,O38:SA:CTP5002,Europe/Paris,,O38, +O38:SP:5003,1,"PORTE DU CHATEAU",45.328726,4.903223,0,0,O38:SA:CTP5002,Europe/Paris,,O38, +O38:SP:5004,1,"CHEM.CHANTECAILLE",45.322495,4.896442,0,0,O38:SA:CTP5004,Europe/Paris,,O38, +O38:SP:5005,1,"CHEM.CHANTECAILLE",45.322453,4.896359,0,0,O38:SA:CTP5004,Europe/Paris,,O38, +O38:SP:5006,1,"MALMORT",45.315642,4.874561,0,0,O38:SA:CTP5006,Europe/Paris,,O38, +O38:SP:5008,1,"GRANGE NEUVE D519",45.327097,4.875151,0,0,O38:SA:CTP5008,Europe/Paris,,O38, +O38:SP:5009,1,"GRANGE NEUVE D519",45.327163,4.875089,0,0,O38:SA:CTP5008,Europe/Paris,,O38, +O38:SP:501,1,"PLACE NAPOLEON",44.817471,5.948394,0,0,O38:SA:CTP500,Europe/Paris,,O38, +O38:SP:5010,1,"CHAMBALUD ECOLE",45.318854,4.876114,0,0,O38:SA:CTP5010,Europe/Paris,,O38, +O38:SP:5011,1,"CHAMBALUD ECOLE",45.318814,4.876025,0,0,O38:SA:CTP5010,Europe/Paris,,O38, +O38:SP:5012,1,"CARREF.ROTISSES",45.308455,4.876699,0,0,O38:SA:CTP5012,Europe/Paris,,O38, +O38:SP:5013,1,"CARREF.ROTISSES",45.308836,4.876951,0,0,O38:SA:CTP5012,Europe/Paris,,O38, +O38:SP:5014,1,"LA BARONNIERE",45.330958,4.893798,0,0,O38:SA:CTP5014,Europe/Paris,,O38, +O38:SP:5015,1,"LA BARONNIERE",45.331014,4.893734,0,0,O38:SA:CTP5014,Europe/Paris,,O38, +O38:SP:5016,1,"MAIRIE",45.330693,4.901831,0,0,O38:SA:CTP5016,Europe/Paris,,O38, +O38:SP:5018,1,"CHANTE PERDRIX",45.320809,4.893851,0,0,O38:SA:CTP5018,Europe/Paris,,O38, +O38:SP:5019,1,"CHANTE PERDRIX",45.320812,4.893749,0,0,O38:SA:CTP5018,Europe/Paris,,O38, +O38:SP:5020,1,"ROUTE DE SONNAY",45.332354,4.9076,0,0,O38:SA:CTP5020,Europe/Paris,,O38, +O38:SP:5022,1,"LES BRUYERES OUEST",45.317504,4.887213,0,0,O38:SA:CTP5022,Europe/Paris,,O38, +O38:SP:5023,1,"LES BRUYERES OUEST",45.317573,4.887242,0,0,O38:SA:CTP5022,Europe/Paris,,O38, +O38:SP:5024,1,"LES BRUYERES EST",45.316329,4.893529,0,0,O38:SA:CTP5024,Europe/Paris,,O38, +O38:SP:5025,1,"LES BRUYERES EST",45.31633,4.893498,0,0,O38:SA:CTP5024,Europe/Paris,,O38, +O38:SP:5026,1,"PLACE",45.333521,4.947091,0,0,O38:SA:CTP5026,Europe/Paris,,O38, +O38:SP:5027,1,"PLACE",45.333568,4.94701,0,0,O38:SA:CTP5026,Europe/Paris,,O38, +O38:SP:5028,1,"GRANGE GUERIN",45.326642,5.022927,0,0,O38:SA:CTP5028,Europe/Paris,,O38, +O38:SP:5029,1,"CHAMP DES MULES",45.317722,5.130315,0,0,O38:SA:CTP5029,Europe/Paris,,O38, +O38:SP:5030,1,"CHAMP DES MULES",45.317702,5.130304,0,0,O38:SA:CTP5029,Europe/Paris,,O38, +O38:SP:5031,1,"LES POIRIERS",45.309501,5.120613,0,0,O38:SA:CTP5031,Europe/Paris,,O38, +O38:SP:5032,1,"LES POIRIERS",45.309522,5.120452,0,0,O38:SA:CTP5031,Europe/Paris,,O38, +O38:SP:5033,1,"FEYDEL D130",45.308806,5.115399,0,0,O38:SA:CTP5033,Europe/Paris,,O38, +O38:SP:5034,1,"FEYDEL D130",45.308749,5.115233,0,0,O38:SA:CTP5033,Europe/Paris,,O38, +O38:SP:5037,1,"LE RIF D130",45.311305,5.128491,0,0,O38:SA:CTP5037,Europe/Paris,,O38, +O38:SP:5038,1,"LE RIF D130",45.311416,5.128585,0,0,O38:SA:CTP5037,Europe/Paris,,O38, +O38:SP:5039,1,"FERME SANCY",45.296401,5.096908,0,0,O38:SA:CTP5039,Europe/Paris,,O38, +O38:SP:5040,1,"FERME SANCY",45.29644,5.096862,0,0,O38:SA:CTP5039,Europe/Paris,,O38, +O38:SP:5041,1,"PLACE",45.299673,5.113315,0,0,O38:SA:CTP5041,Europe/Paris,,O38, +O38:SP:5042,1,"PLACE",45.299619,5.113049,0,0,O38:SA:CTP5041,Europe/Paris,,O38, +O38:SP:5043,1,"FANTINIERE",45.30682,5.098627,0,0,O38:SA:CTP5043,Europe/Paris,,O38, +O38:SP:5044,1,"FANTINIERE",45.306703,5.098123,0,0,O38:SA:CTP5043,Europe/Paris,,O38, +O38:SP:5045,1,"CHANTABOT",45.320024,5.119937,0,0,O38:SA:CTP5045,Europe/Paris,,O38, +O38:SP:5046,1,"CHANTABOT",45.319954,5.119914,0,0,O38:SA:CTP5045,Europe/Paris,,O38, +O38:SP:5047,1,"PLACE",45.305139,5.087252,0,0,O38:SA:CTP5047,Europe/Paris,,O38, +O38:SP:5048,1,"PLACE",45.305193,5.087137,0,0,O38:SA:CTP5047,Europe/Paris,,O38, +O38:SP:5049,1,"VILLAGE",45.326641,5.121439,0,0,O38:SA:CTP5049,Europe/Paris,,O38, +O38:SP:5050,1,"VILLAGE",45.326742,5.121507,0,0,O38:SA:CTP5049,Europe/Paris,,O38, +O38:SP:5053,1,"CHEMIN DU FARABEY",45.292393,5.07462,0,0,O38:SA:CTP5053,Europe/Paris,,O38, +O38:SP:5054,1,"CHEMIN DU FARABEY",45.292465,5.074617,0,0,O38:SA:CTP5053,Europe/Paris,,O38, +O38:SP:5055,1,"LE SABOT",45.315914,5.140242,0,0,O38:SA:CTP5055,Europe/Paris,,O38, +O38:SP:5056,1,"LE SABOT",45.31598,5.140287,0,0,O38:SA:CTP5055,Europe/Paris,,O38, +O38:SP:5057,1,"LE BOUILLAT",45.314317,5.164647,0,0,O38:SA:CTP5057,Europe/Paris,,O38, +O38:SP:5058,1,"LE BOUILLAT",45.314228,5.164516,0,0,O38:SA:CTP5057,Europe/Paris,,O38, +O38:SP:5059,1,"EGLISE",45.317633,5.169688,0,0,O38:SA:CTP5059,Europe/Paris,,O38, +O38:SP:506,1,"LA JAVERGNE",44.810849,5.914292,0,0,O38:SA:CTP506,Europe/Paris,,O38, +O38:SP:5060,1,"EGLISE",45.318099,5.169424,0,0,O38:SA:CTP5059,Europe/Paris,,O38, +O38:SP:5061,1,"LE RIVAL",45.313868,5.145344,0,0,O38:SA:CTP5061,Europe/Paris,,O38, +O38:SP:5062,1,"LE RIVAL",45.313937,5.145372,0,0,O38:SA:CTP5061,Europe/Paris,,O38, +O38:SP:5063,1,"LE VILLAGE",45.316268,5.204746,0,0,O38:SA:CTP5063,Europe/Paris,,O38, +O38:SP:5064,1,"LE VILLAGE",45.316291,5.205661,0,0,O38:SA:CTP5063,Europe/Paris,,O38, +O38:SP:5067,1,"LES BAJEAUX",45.301586,5.193795,0,0,O38:SA:CTP5067,Europe/Paris,,O38, +O38:SP:5068,1,"LES BAJEAUX",45.301554,5.193763,0,0,O38:SA:CTP5067,Europe/Paris,,O38, +O38:SP:507,1,"VILLAGE",44.832308,5.920336,0,0,O38:SA:CTP507,Europe/Paris,,O38, +O38:SP:5071,1,"LES SABLES",45.327697,5.164004,0,0,O38:SA:CTP5071,Europe/Paris,,O38, +O38:SP:5072,1,"LES SABLES",45.327724,5.164152,0,0,O38:SA:CTP5071,Europe/Paris,,O38, +O38:SP:5073,1,"ECOLE",45.317762,5.167689,0,0,O38:SA:CTP5073,Europe/Paris,,O38, +O38:SP:5074,1,"ECOLE",45.317742,5.167624,0,0,O38:SA:CTP5073,Europe/Paris,,O38, +O38:SP:5075,1,"LA BOURGEAT",45.320172,5.165406,0,0,O38:SA:CTP5075,Europe/Paris,,O38, +O38:SP:5076,1,"LA BOURGEAT",45.320173,5.165305,0,0,O38:SA:CTP5075,Europe/Paris,,O38, +O38:SP:5077,1,"HAMEAU DE PERRETIERE",45.29313,5.197839,0,0,O38:SA:CTP5077,Europe/Paris,,O38, +O38:SP:5078,1,"HAMEAU DE PERRETIERE",45.293201,5.197853,0,0,O38:SA:CTP5077,Europe/Paris,,O38, +O38:SP:508,1,"VILLAGE",44.832331,5.920337,0,0,O38:SA:CTP507,Europe/Paris,,O38, +O38:SP:5081,1,"GROS JEAN",45.298954,5.246991,0,0,O38:SA:CTP5081,Europe/Paris,,O38, +O38:SP:5082,1,"GROS JEAN",45.298905,5.246948,0,0,O38:SA:CTP5081,Europe/Paris,,O38, +O38:SP:5083,1,"PLACE",45.321033,5.23002,0,0,O38:SA:CTP5083,Europe/Paris,,O38, +O38:SP:5084,1,"PLACE",45.320932,5.229452,0,0,O38:SA:CTP5083,Europe/Paris,,O38, +O38:SP:5086,1,"CHARPENAY-BAIZE",45.319194,5.267266,0,0,O38:SA:CTP5086,Europe/Paris,,O38, +O38:SP:5087,1,"CHARPENAY",45.313134,5.260772,0,0,O38:SA:CTP5087,Europe/Paris,,O38, +O38:SP:5088,1,"CHARPENAY",45.313102,5.260756,0,0,O38:SA:CTP5087,Europe/Paris,,O38, +O38:SP:509,1,"LA PLAINE-RD.537",44.796548,5.910612,0,0,O38:SA:CTP509,Europe/Paris,,O38, +O38:SP:5091,1,"CASERNE",45.283129,5.210119,0,0,O38:SA:CTP5091,Europe/Paris,,O38, +O38:SP:5092,1,"CASERNE",45.283112,5.209909,0,0,O38:SA:CTP5091,Europe/Paris,,O38, +O38:SP:5093,1,"CAR. CHAMBARAN",45.282592,5.226665,0,0,O38:SA:CTP5093,Europe/Paris,,O38, +O38:SP:5094,1,"CAR. CHAMBARAN",45.282583,5.226649,0,0,O38:SA:CTP5093,Europe/Paris,,O38, +O38:SP:5095,1,"LE CHEVALIN",45.325165,5.242519,0,0,O38:SA:CTP5095,Europe/Paris,,O38, +O38:SP:5096,1,"LE CHEVALIN",45.325224,5.242865,0,0,O38:SA:CTP5095,Europe/Paris,,O38, +O38:SP:5097,1,"LE BOCAGE D130",45.320808,5.20713,0,0,O38:SA:CTP5097,Europe/Paris,,O38, +O38:SP:5098,1,"LE BOCAGE D130",45.32071,5.206956,0,0,O38:SA:CTP5097,Europe/Paris,,O38, +O38:SP:5099,1,"BEAUREGARD",45.317498,5.248472,0,0,O38:SA:CTP5099,Europe/Paris,,O38, +O38:SP:510,1,"LE MOTTY",44.792305,5.979668,0,0,O38:SA:CTP510,Europe/Paris,,O38, +O38:SP:5100,1,"LE PILON",45.279674,5.261712,0,0,O38:SA:CTP5100,Europe/Paris,,O38, +O38:SP:5101,1,"LE PILON",45.279745,5.261726,0,0,O38:SA:CTP5100,Europe/Paris,,O38, +O38:SP:5102,1,"IMPASSE PRE REYNAUD",45.280341,5.237743,0,0,O38:SA:CTP5102,Europe/Paris,,O38, +O38:SP:5103,1,"IMPASSE PRE REYNAUD",45.280401,5.237798,0,0,O38:SA:CTP5102,Europe/Paris,,O38, +O38:SP:5104,1,"CARREF.CHARPENAY",45.311945,5.265412,0,0,O38:SA:CTP5104,Europe/Paris,,O38, +O38:SP:5106,1,"CHEMIN DES TERRES",45.287336,5.243732,0,0,O38:SA:CTP5106,Europe/Paris,,O38, +O38:SP:5107,1,"CHEMIN DES TERRES",45.28741,5.243518,0,0,O38:SA:CTP5106,Europe/Paris,,O38, +O38:SP:5108,1,"CHEMIN DES CLERCS",45.293053,5.24859,0,0,O38:SA:CTP5108,Europe/Paris,,O38, +O38:SP:5109,1,"CHEMIN DES CLERCS",45.293048,5.248655,0,0,O38:SA:CTP5108,Europe/Paris,,O38, +O38:SP:511,1,"LE MOTTY",44.792263,5.979524,0,0,O38:SA:CTP510,Europe/Paris,,O38, +O38:SP:5110,1,"LE PIVAT",45.290828,5.239363,0,0,O38:SA:CTP5110,Europe/Paris,,O38, +O38:SP:5111,1,"LE PIVAT",45.290867,5.239277,0,0,O38:SA:CTP5110,Europe/Paris,,O38, +O38:SP:5112,1,"MAIRIE",45.292824,5.337712,0,0,O38:SA:CTP5112,Europe/Paris,,O38, +O38:SP:5113,1,"MAIRIE",45.292828,5.33761,0,0,O38:SA:CTP5112,Europe/Paris,,O38, +O38:SP:5114,1,"ECOLE",45.292738,5.337698,0,0,O38:SA:CTP5114,Europe/Paris,,O38, +O38:SP:5115,1,"ECOLE",45.292758,5.337609,0,0,O38:SA:CTP5114,Europe/Paris,,O38, +O38:SP:512,1,"RN85",44.79872,5.974905,0,0,O38:SA:CTP512,Europe/Paris,,O38, +O38:SP:5120,1,"COURS FAVIER",45.310294,5.337477,0,0,O38:SA:CTP5120,Europe/Paris,,O38, +O38:SP:5121,1,"COURS FAVIER",45.31028,5.337378,0,0,O38:SA:CTP5120,Europe/Paris,,O38, +O38:SP:5122,1,"CAFE SAUZE(BASCULE)",45.323546,5.339404,0,0,O38:SA:CTP5122,Europe/Paris,,O38, +O38:SP:5123,1,"CAFE SAUZE(BASCULE)",45.323555,5.339303,0,0,O38:SA:CTP5122,Europe/Paris,,O38, +O38:SP:5124,1,"LE PETIT MOULIN",45.305093,5.339809,0,0,O38:SA:CTP5124,Europe/Paris,,O38, +O38:SP:5125,1,"LE PETIT MOULIN",45.305064,5.339716,0,0,O38:SA:CTP5124,Europe/Paris,,O38, +O38:SP:5126,1,"TERRE GRASSE",45.299778,5.340482,0,0,O38:SA:CTP5126,Europe/Paris,,O38, +O38:SP:5127,1,"TERRE GRASSE",45.299813,5.340547,0,0,O38:SA:CTP5126,Europe/Paris,,O38, +O38:SP:5128,1,"LE COLLET",45.314701,5.299648,0,0,O38:SA:CTP5128,Europe/Paris,,O38, +O38:SP:5129,1,"LE COLLET",45.314632,5.29962,0,0,O38:SA:CTP5128,Europe/Paris,,O38, +O38:SP:513,1,"RN85",44.798621,5.974631,0,0,O38:SA:CTP512,Europe/Paris,,O38, +O38:SP:5130,1,"EGLISE",45.315797,5.287387,0,0,O38:SA:CTP5130,Europe/Paris,,O38, +O38:SP:5131,1,"EGLISE",45.315744,5.287455,0,0,O38:SA:CTP5130,Europe/Paris,,O38, +O38:SP:5132,1,"PLACE",45.315189,5.283745,0,0,O38:SA:CTP5132,Europe/Paris,,O38, +O38:SP:5133,1,"PLACE",45.315261,5.283732,0,0,O38:SA:CTP5132,Europe/Paris,,O38, +O38:SP:5134,1,"LA COMBE DE VAULX",45.312957,5.306554,0,0,O38:SA:CTP5134,Europe/Paris,,O38, +O38:SP:5135,1,"LA COMBE DE VAULX",45.312934,5.306533,0,0,O38:SA:CTP5134,Europe/Paris,,O38, +O38:SP:5136,1,"LA BARATIERE",45.290151,5.342487,0,0,O38:SA:CTP5136,Europe/Paris,,O38, +O38:SP:5137,1,"LA BARATIERE",45.290098,5.342456,0,0,O38:SA:CTP5136,Europe/Paris,,O38, +O38:SP:5138,1,"CRX TOUTES AURES",45.284062,5.35234,0,0,O38:SA:CTP5138,Europe/Paris,,O38, +O38:SP:5139,1,"CRX TOUTES AURES",45.284085,5.352331,0,0,O38:SA:CTP5138,Europe/Paris,,O38, +O38:SP:514,1,"SAVOURAIRE",44.87212,5.607732,0,0,O38:SA:CTP514,Europe/Paris,,O38, +O38:SP:5140,1,"GRANGE NEUVE",45.286306,5.344722,0,0,O38:SA:CTP5140,Europe/Paris,,O38, +O38:SP:5141,1,"GRANGE NEUVE",45.286346,5.344732,0,0,O38:SA:CTP5140,Europe/Paris,,O38, +O38:SP:5142,1,"CIMETIERE",45.306275,5.362928,0,0,O38:SA:CTP5142,Europe/Paris,,O38, +O38:SP:5143,1,"CIMETIERE",45.306234,5.36301,0,0,O38:SA:CTP5142,Europe/Paris,,O38, +O38:SP:5144,1,"RESTAURANT POYAUD",45.300652,5.397545,0,0,O38:SA:CTP5144,Europe/Paris,,O38, +O38:SP:5145,1,"RESTAURANT POYAUD",45.300666,5.397558,0,0,O38:SA:CTP5144,Europe/Paris,,O38, +O38:SP:5146,1,"PLACE",45.295475,5.402704,0,0,O38:SA:CTP5146,Europe/Paris,,O38, +O38:SP:5147,1,"PLACE",45.29552,5.402765,0,0,O38:SA:CTP5146,Europe/Paris,,O38, +O38:SP:5148,1,"LES FOURCOULES",45.308265,5.370546,0,0,O38:SA:CTP5148,Europe/Paris,,O38, +O38:SP:5149,1,"LES FOURCOULES",45.308256,5.370487,0,0,O38:SA:CTP5148,Europe/Paris,,O38, +O38:SP:515,1,"SAVOURAIRE",44.872127,5.607718,0,0,O38:SA:CTP514,Europe/Paris,,O38, +O38:SP:5152,1,"TENNIS",45.312594,5.391687,0,0,O38:SA:CTP5152,Europe/Paris,,O38, +O38:SP:5153,1,"TENNIS",45.312652,5.391627,0,0,O38:SA:CTP5152,Europe/Paris,,O38, +O38:SP:5154,1,"BASCULE",45.305207,5.354167,0,0,O38:SA:CTP5154,Europe/Paris,,O38, +O38:SP:5155,1,"BASCULE",45.305263,5.354209,0,0,O38:SA:CTP5154,Europe/Paris,,O38, +O38:SP:5157,1,"ECOLE",45.305462,5.356738,0,0,O38:SA:CTP5157,Europe/Paris,,O38, +O38:SP:5158,1,"LE BOURG",45.322188,5.35503,0,0,O38:SA:CTP5158,Europe/Paris,,O38, +O38:SP:5159,1,"LE BOURG",45.32225,5.354979,0,0,O38:SA:CTP5158,Europe/Paris,,O38, +O38:SP:516,1,"LES OCHES",44.884732,5.642319,0,0,O38:SA:CTP516,Europe/Paris,,O38, +O38:SP:5160,1,"LA COILLE",45.278541,5.358892,0,0,O38:SA:CTP5160,Europe/Paris,,O38, +O38:SP:5161,1,"LA COILLE",45.278558,5.358991,0,0,O38:SA:CTP5160,Europe/Paris,,O38, +O38:SP:5163,1,"LA BATHIE",45.306153,5.388881,0,0,O38:SA:CTP5163,Europe/Paris,,O38, +O38:SP:5164,1,"ECOLE",45.315248,5.394966,0,0,O38:SA:CTP5164,Europe/Paris,,O38, +O38:SP:5165,1,"ECOLE",45.315312,5.3948,0,0,O38:SA:CTP5164,Europe/Paris,,O38, +O38:SP:5167,1,"ECOLE",45.321816,5.351084,0,0,O38:SA:CTP5167,Europe/Paris,,O38, +O38:SP:5168,1,"LE CHAPERON",45.298437,5.407324,0,0,O38:SA:CTP5168,Europe/Paris,,O38, +O38:SP:5169,1,"LE CHAPERON",45.298508,5.40734,0,0,O38:SA:CTP5168,Europe/Paris,,O38, +O38:SP:5170,1,"PARRETAS",45.280088,5.457496,0,0,O38:SA:CTP5170,Europe/Paris,,O38, +O38:SP:5171,1,"PARRETAS",45.280121,5.457595,0,0,O38:SA:CTP5170,Europe/Paris,,O38, +O38:SP:5172,1,"FONTAINE",45.316509,5.42892,0,0,O38:SA:CTP5172,Europe/Paris,,O38, +O38:SP:5173,1,"FONTAINE",45.316528,5.428995,0,0,O38:SA:CTP5172,Europe/Paris,,O38, +O38:SP:5174,1,"BOURG",45.284261,5.45218,0,0,O38:SA:CTP5174,Europe/Paris,,O38, +O38:SP:5175,1,"BOURG",45.284186,5.452244,0,0,O38:SA:CTP5174,Europe/Paris,,O38, +O38:SP:5176,1,"LE GIRIN",45.304883,5.4194,0,0,O38:SA:CTP5176,Europe/Paris,,O38, +O38:SP:5177,1,"LE GIRIN",45.304728,5.419224,0,0,O38:SA:CTP5176,Europe/Paris,,O38, +O38:SP:5179,1,"FURES LIBERATION",45.307665,5.494627,0,0,OVO:SA:CTP5178,Europe/Paris,,O38, +O38:SP:5181,1,"FURES LIBERATION",45.307548,5.494594,0,0,OVO:SA:CTP5178,Europe/Paris,,O38, +O38:SP:5182,1,"GRAND TIZIN",45.277007,5.482062,0,0,O38:SA:CTP5182,Europe/Paris,,O38, +O38:SP:5183,1,"GRAND TIZIN",45.277811,5.48229,0,0,O38:SA:CTP5182,Europe/Paris,,O38, +O38:SP:5187,1,"BD MICHEL PERRET",45.304973,5.490597,0,0,OVO:SA:CTP5184,Europe/Paris,,O38, +O38:SP:519,1,"LA CHABANNERIE",44.851803,5.627564,0,0,O38:SA:CTP519,Europe/Paris,,O38, +O38:SP:5191,1,"LE PRESSOIR",45.319467,5.522742,0,0,OVO:SA:CTP5190,Europe/Paris,,O38, +O38:SP:5193,1,"LE PRESSOIR",45.319574,5.523388,0,0,OVO:SA:CTP5190,Europe/Paris,,O38, +O38:SP:5195,1,"LE PAVE",45.312266,5.508289,0,0,OVO:SA:CTP5194,Europe/Paris,,O38, +O38:SP:5197,1,"LE PAVE",45.312276,5.508061,0,0,OVO:SA:CTP5194,Europe/Paris,,O38, +O38:SP:5199,1,"GARE SNCF",45.301169,5.491371,0,0,O38:SA:CTP5199,Europe/Paris,,O38, +O38:SP:520,1,"VILLAGE",44.870209,5.596922,0,0,O38:SA:CTP520,Europe/Paris,,O38, +O38:SP:5201,1,"GARE SNCF",45.301303,5.491174,0,0,O38:SA:CTP5199,Europe/Paris,,O38, +O38:SP:5202,1,"MALATRAS",45.275745,5.477607,0,0,O38:SA:CTP5202,Europe/Paris,,O38, +O38:SP:5203,1,"MALATRAS",45.275562,5.477457,0,0,O38:SA:CTP5202,Europe/Paris,,O38, +O38:SP:5204,1,"TRANSPORT FONTAINE",45.289471,5.483208,0,0,O38:SA:CTP5204,Europe/Paris,,O38, +O38:SP:5205,1,"TRANSPORT FONTAINE",45.289169,5.483165,0,0,O38:SA:CTP5204,Europe/Paris,,O38, +O38:SP:5207,1,"ECOLE CAMILLE DESMOULINS",45.298724,5.485171,0,0,O38:SA:CTP5207,Europe/Paris,,O38, +O38:SP:5209,1,"ECOLE CAMILLE DESMOULINS",45.298979,5.485386,0,0,O38:SA:CTP5207,Europe/Paris,,O38, +O38:SP:521,1,"VILLAGE",44.870143,5.596964,0,0,O38:SA:CTP520,Europe/Paris,,O38, +O38:SP:5211,1,"COLLEGE CONDORCET",45.297932,5.487,0,0,OVO:SA:CTP5210,Europe/Paris,,O38, +O38:SP:5213,1,"COLLEGE CONDORCET",45.298094,5.486225,0,0,OVO:SA:CTP5210,Europe/Paris,,O38, +O38:SP:5214,1,"BASCULE",45.29582,5.483313,0,0,O38:SA:CTP5214,Europe/Paris,,O38, +O38:SP:5215,1,"LE MARTINET",45.279648,5.538711,0,0,O38:SA:CTP5215,Europe/Paris,,O38, +O38:SP:5216,1,"LE MARTINET",45.279671,5.538525,0,0,O38:SA:CTP5215,Europe/Paris,,O38, +O38:SP:5217,1,"LE GRAND CHAMPS",45.273856,5.558391,0,0,O38:SA:CTP5217,Europe/Paris,,O38, +O38:SP:5218,1,"LE GRAND CHAMPS",45.273821,5.558481,0,0,O38:SA:CTP5217,Europe/Paris,,O38, +O38:SP:5219,1,"BOURG",45.281002,5.54612,0,0,O38:SA:CTP5219,Europe/Paris,,O38, +O38:SP:5220,1,"BOURG",45.281079,5.546061,0,0,O38:SA:CTP5219,Europe/Paris,,O38, +O38:SP:5221,1,"LE GIT",45.276643,5.54739,0,0,O38:SA:CTP5221,Europe/Paris,,O38, +O38:SP:5223,1,"REPLAT CAB.BAMBOU",45.293095,5.583291,0,0,O38:SA:CTP5223,Europe/Paris,,O38, +O38:SP:5224,1,"REPLAT CAB.BAMBOU",45.293209,5.583335,0,0,O38:SA:CTP5223,Europe/Paris,,O38, +O38:SP:5225,1,"LE GOLF",45.286316,5.557879,0,0,O38:SA:CTP5225,Europe/Paris,,O38, +O38:SP:5226,1,"LE GOLF",45.286249,5.557919,0,0,O38:SA:CTP5225,Europe/Paris,,O38, +O38:SP:5227,1,"PERAUDIERE",45.291625,5.576326,0,0,O38:SA:CTP5227,Europe/Paris,,O38, +O38:SP:5229,1,"ECOLE",45.279444,5.543986,0,0,O38:SA:CTP5229,Europe/Paris,,O38, +O38:SP:523,1,"BOURG",44.885201,5.638923,0,0,O38:SA:CTP523,Europe/Paris,,O38, +O38:SP:5230,1,"ECOLE",45.279747,5.543832,0,0,O38:SA:CTP5229,Europe/Paris,,O38, +O38:SP:5231,1,"FONTBESSET-PISCICULTURE",45.288457,5.572319,0,0,O38:SA:CTP5231,Europe/Paris,,O38, +O38:SP:5233,1,"SOUS-GIBRALTAR RD1532",45.285013,5.553812,0,0,O38:SA:CTP5233,Europe/Paris,,O38, +O38:SP:5234,1,"SOUS-GIBRALTAR RD1532",45.285053,5.553554,0,0,O38:SA:CTP5233,Europe/Paris,,O38, +O38:SP:5235,1,"LE REPLAT-SOCIETE PERRIN",45.292572,5.5796,0,0,O38:SA:CTP5235,Europe/Paris,,O38, +O38:SP:524,1,"CONDAMINE(STAT.OYO)",44.853659,5.617646,0,0,O38:SA:CTP524,Europe/Paris,,O38, +O38:SP:5240,1,"SCHNEIDER",45.318929,5.594678,0,0,OVO:SA:CTP5239,Europe/Paris,,O38, +O38:SP:5242,1,"SCHNEIDER",45.319185,5.594211,0,0,OVO:SA:CTP5239,Europe/Paris,,O38, +O38:SP:5245,1,"LE CHATEAU",45.287919,5.563418,0,0,O38:SA:CTP5245,Europe/Paris,,O38, +O38:SP:5246,1,"LE CHATEAU",45.287853,5.563457,0,0,O38:SA:CTP5245,Europe/Paris,,O38, +O38:SP:5248,1,"SEMINAIRE",45.292672,5.631304,0,0,O38:SA:CTP5248,Europe/Paris,,O38, +O38:SP:525,1,"CONDAMINE(STAT.OYO)",44.85368,5.617584,0,0,O38:SA:CTP524,Europe/Paris,,O38, +O38:SP:5250,1,"SEMINAIRE",45.293213,5.630681,0,0,O38:SA:CTP5248,Europe/Paris,,O38, +O38:SP:5252,1,"LE CHEVALON",45.278102,5.647919,0,0,OVO:SA:CTP5251,Europe/Paris,,O38, +O38:SP:5254,1,"LE CHEVALON",45.278133,5.648049,0,0,OVO:SA:CTP5251,Europe/Paris,,O38, +O38:SP:5260,1,"LA VERRONIERE",45.29279,5.63943,0,0,O38:SA:CTP5260,Europe/Paris,,O38, +O38:SP:5262,1,"LA VERRONIERE",45.292854,5.639301,0,0,O38:SA:CTP5260,Europe/Paris,,O38, +O38:SP:5264,1,"BASCULE",45.268203,5.653842,0,0,OVO:SA:CTP5263,Europe/Paris,,O38, +O38:SP:5266,1,"BASCULE",45.268044,5.653764,0,0,OVO:SA:CTP5263,Europe/Paris,,O38, +O38:SP:5268,1,"CAFE ADRAIT",45.273593,5.650577,0,0,OVO:SA:CTP5267,Europe/Paris,,O38, +O38:SP:527,1,"LES PEYROUSES",44.887297,5.62463,0,0,O38:SA:CTP527,Europe/Paris,,O38, +O38:SP:5270,1,"CAFE ADRAIT",45.273915,5.650554,0,0,OVO:SA:CTP5267,Europe/Paris,,O38, +O38:SP:5272,1,"MALOSSANE LE HAUT",45.309872,5.641118,0,0,OVO:SA:CTP5271,Europe/Paris,,O38, +O38:SP:5274,1,"MALOSSANE LE HAUT",45.309779,5.641096,0,0,OVO:SA:CTP5271,Europe/Paris,,O38, +O38:SP:5276,1,"GARE",45.290161,5.63282,0,0,OVO:SA:CTP5277,Europe/Paris,,O38, +O38:SP:5280,1,"LES CHARMINELLES",45.295338,5.637975,0,0,OVO:SA:CTP5279,Europe/Paris,,O38, +O38:SP:5284,1,"PARKING DE L'ARCADE",45.291414,5.634792,0,0,OVO:SA:CTP5291,Europe/Paris,,O38, +O38:SP:5286,1,"MONUMENT AUX MORTS",45.30255,5.627138,0,0,OVO:SA:CTP5285,Europe/Paris,,O38, +O38:SP:5288,1,"MONUMENT AUX MORTS",45.302602,5.626955,0,0,OVO:SA:CTP5285,Europe/Paris,,O38, +O38:SP:5292,1,"LETP LES PORTES DE CHARTREUSE",45.291664,5.634809,0,0,O38:SA:CTP5292,Europe/Paris,,O38, +O38:SP:5293,1,"LETP LES PORTES DE CHARTREUSE",45.291641,5.634702,0,0,O38:SA:CTP5292,Europe/Paris,,O38, +O38:SP:5296,1,"PLACE DOCTEUR THEVENET",45.298117,5.63644,0,0,OVO:SA:CTP5294,Europe/Paris,,O38, +O38:SP:5298,1,"LES BANETTES",45.29911,5.631821,0,0,O38:SA:CTP5298,Europe/Paris,,O38, +O38:SP:530,1,"LES PEYROUSES 2",44.888906,5.621621,0,0,O38:SA:CTP530,Europe/Paris,,O38, +O38:SP:5300,1,"LES BANETTES",45.299021,5.632053,0,0,O38:SA:CTP5298,Europe/Paris,,O38, +O38:SP:5302,1,"CHASSOLIERE",45.280268,5.646823,0,0,OVO:SA:CTP5301,Europe/Paris,,O38, +O38:SP:5304,1,"CHASSOLIERE",45.280269,5.646656,0,0,OVO:SA:CTP5301,Europe/Paris,,O38, +O38:SP:5306,1,"VOLOUISE",45.28549,5.643534,0,0,O38:SA:CTP5306,Europe/Paris,,O38, +O38:SP:5308,1,"VOLOUISE",45.286629,5.643073,0,0,O38:SA:CTP5306,Europe/Paris,,O38, +O38:SP:5310,1,"ALLIBERT",45.315382,5.603446,0,0,O38:SA:CTP5310,Europe/Paris,,O38, +O38:SP:5312,1,"ALLIBERT",45.315695,5.602297,0,0,O38:SA:CTP5310,Europe/Paris,,O38, +O38:SP:5314,1,"LA RIVE",45.269812,5.618233,0,0,O38:SA:CTP5314,Europe/Paris,,O38, +O38:SP:5316,1,"VEUREY PONT",45.271636,5.619118,0,0,O38:SA:CTP5316,Europe/Paris,,O38, +O38:SP:5317,1,"VEUREY PONT",45.271462,5.619507,0,0,O38:SA:CTP5316,Europe/Paris,,O38, +O38:SP:535,1,"VILLAGE",44.845485,5.621449,0,0,O38:SA:CTP535,Europe/Paris,,O38, +O38:SP:5356,1,"PONT DE BERNIN",45.273734,5.870025,0,0,OGE:SA:CTP5355,Europe/Paris,,O38, +O38:SP:5358,1,"PONT DE BERNIN",45.273968,5.8701,0,0,OGE:SA:CTP5355,Europe/Paris,,O38, +O38:SP:5360,1,"VILLAGE",45.270556,5.867512,0,0,OGE:SA:CTP5359,Europe/Paris,,O38, +O38:SP:5362,1,"VILLAGE",45.270285,5.867375,0,0,OGE:SA:CTP5359,Europe/Paris,,O38, +O38:SP:5364,1,"LA CROIX DES AYES",45.277265,5.873228,0,0,OGE:SA:CTP5363,Europe/Paris,,O38, +O38:SP:5366,1,"LA CROIX DES AYES",45.277282,5.873091,0,0,OGE:SA:CTP5363,Europe/Paris,,O38, +O38:SP:5369,1,"LA MAIRIE",45.291303,5.859256,0,0,O38:SA:CTP5369,Europe/Paris,,O38, +O38:SP:5371,1,"LA MAIRIE",45.291364,5.858986,0,0,O38:SA:CTP5369,Europe/Paris,,O38, +O38:SP:5373,1,"CROIX DES VARVOUX",45.266096,5.862013,0,0,O38:SA:CTP5373,Europe/Paris,,O38, +O38:SP:5375,1,"CROIX DES VARVOUX",45.266104,5.861566,0,0,O38:SA:CTP5373,Europe/Paris,,O38, +O38:SP:538,1,"LES TRAVERSES",44.850823,5.621362,0,0,O38:SA:CTP538,Europe/Paris,,O38, +O38:SP:539,1,"LA BATIE D'AMBEL-RN75",44.867183,5.60488,0,0,O38:SA:CTP539,Europe/Paris,,O38, +O38:SP:5393,1,"LES VARVOUX",45.263787,5.858703,0,0,O38:SA:CTP5393,Europe/Paris,,O38, +O38:SP:5395,1,"LES VARVOUX",45.26397,5.859101,0,0,O38:SA:CTP5393,Europe/Paris,,O38, +O38:SP:5397,1,"LES MEUNIERES",45.29014,5.851246,0,0,OGE:SA:CTP5398,Europe/Paris,,O38, +O38:SP:5399,1,"LES MEUNIERES",45.290236,5.851398,0,0,OGE:SA:CTP5398,Europe/Paris,,O38, +O38:SP:540,1,"LA BATIE D'AMBEL-RN75",44.867186,5.604992,0,0,O38:SA:CTP539,Europe/Paris,,O38, +O38:SP:5405,1,"LES MARGAINS",45.301412,5.873766,0,0,O38:SA:CTP5405,Europe/Paris,,O38, +O38:SP:5407,1,"LES MARGAINS",45.301391,5.873823,0,0,O38:SA:CTP5405,Europe/Paris,,O38, +O38:SP:5413,1,"LE COTEAU",45.295859,5.896725,0,0,OGE:SA:CTP5414,Europe/Paris,,O38, +O38:SP:5415,1,"LE COTEAU",45.295424,5.896587,0,0,OGE:SA:CTP5414,Europe/Paris,,O38, +O38:SP:5423,1,"ST MICROELECTRONICS",45.267045,5.884614,0,0,OGE:SA:CTP5424,Europe/Paris,,O38, +O38:SP:5425,1,"ST MICROELECTRONICS",45.266763,5.884139,0,0,OGE:SA:CTP5424,Europe/Paris,,O38, +O38:SP:543,1,"LES GRANGES",44.86034,5.602512,0,0,O38:SA:CTP543,Europe/Paris,,O38, +O38:SP:5439,1,"PRE DU CHENE",45.266395,5.917052,0,0,OGE:SA:CTP5440,Europe/Paris,,O38, +O38:SP:544,1,"LES GRANGES",44.860379,5.602432,0,0,O38:SA:CTP543,Europe/Paris,,O38, +O38:SP:5441,1,"PRE DU CHENE",45.266484,5.916996,0,0,OGE:SA:CTP5440,Europe/Paris,,O38, +O38:SP:545,1,"LES ROUSSINS",44.859085,5.680433,0,0,O38:SA:CTP545,Europe/Paris,,O38, +O38:SP:5455,1,"COQUILLARD",45.272155,5.923155,0,0,O38:SA:CTP5455,Europe/Paris,,O38, +O38:SP:5457,1,"COQUILLARD",45.272616,5.923753,0,0,O38:SA:CTP5455,Europe/Paris,,O38, +O38:SP:546,1,"LES ROUSSINS",44.859156,5.680419,0,0,O38:SA:CTP545,Europe/Paris,,O38, +O38:SP:5463,1,"PIED DE CROLLES",45.28883,5.888865,0,0,O38:SA:CTP5463,Europe/Paris,,O38, +O38:SP:5465,1,"PIED DE CROLLES",45.288618,5.888715,0,0,O38:SA:CTP5463,Europe/Paris,,O38, +O38:SP:5467,1,"MAIRIE",45.284708,5.883797,0,0,OGE:SA:CTP5468,Europe/Paris,,O38, +O38:SP:5469,1,"MAIRIE",45.284641,5.883831,0,0,OGE:SA:CTP5468,Europe/Paris,,O38, +O38:SP:547,1,"CHATEAUBOIS",44.888577,5.699211,0,0,O38:SA:CTP547,Europe/Paris,,O38, +O38:SP:5471,1,"LA GARE",45.308493,5.914781,0,0,O38:SA:CTP5471,Europe/Paris,,O38, +O38:SP:5473,1,"LA GARE",45.308213,5.914227,0,0,O38:SA:CTP5471,Europe/Paris,,O38, +O38:SP:5475,1,"CARREFOUR Z.I.",45.304056,5.906943,0,0,O38:SA:CTP5475,Europe/Paris,,O38, +O38:SP:5477,1,"CARREFOUR Z.I.",45.304006,5.906675,0,0,O38:SA:CTP5475,Europe/Paris,,O38, +O38:SP:5479,1,"LE BROCEY (STADE)",45.280603,5.877511,0,0,O38:SA:CTP5479,Europe/Paris,,O38, +O38:SP:548,1,"CHATEAUBOIS",44.888614,5.699298,0,0,O38:SA:CTP547,Europe/Paris,,O38, +O38:SP:5481,1,"LE BROCEY (STADE)",45.280836,5.87771,0,0,O38:SA:CTP5479,Europe/Paris,,O38, +O38:SP:5483,1,"LE VILLAGE",45.305665,5.909912,0,0,OGE:SA:CTP5484,Europe/Paris,,O38, +O38:SP:5485,1,"LE VILLAGE",45.306051,5.910502,0,0,OGE:SA:CTP5484,Europe/Paris,,O38, +O38:SP:5487,1,"LE RAFOUR-MONNET",45.269935,5.89114,0,0,O38:SA:CTP5487,Europe/Paris,,O38, +O38:SP:5489,1,"LE RAFOUR-MONNET",45.26987,5.891148,0,0,O38:SA:CTP5487,Europe/Paris,,O38, +O38:SP:549,1,"SOUBEYRANNE",44.852959,5.671064,0,0,O38:SA:CTP549,Europe/Paris,,O38, +O38:SP:5496,1,"LE BAS",45.275423,5.926584,0,0,OGE:SA:CTP5497,Europe/Paris,,O38, +O38:SP:5498,1,"LE BAS",45.275547,5.926563,0,0,OGE:SA:CTP5497,Europe/Paris,,O38, +O38:SP:550,1,"SOUBEYRANNE",44.853588,5.671104,0,0,O38:SA:CTP549,Europe/Paris,,O38, +O38:SP:5500,1,"CHAMPALUD",45.286395,5.937029,0,0,OGE:SA:CTP5501,Europe/Paris,,O38, +O38:SP:5502,1,"CHAMPALUD",45.286371,5.936871,0,0,OGE:SA:CTP5501,Europe/Paris,,O38, +O38:SP:5504,1,"PTT-GARE",45.282873,5.880934,0,0,OGE:SA:CTP5505,Europe/Paris,,O38, +O38:SP:5506,1,"PTT-GARE",45.283553,5.882143,0,0,OGE:SA:CTP5505,Europe/Paris,,O38, +O38:SP:5508,1,"MONTFORT FUNICULAIRE",45.298919,5.899779,0,0,OGE:SA:CTP5509,Europe/Paris,,O38, +O38:SP:551,1,"VILLARD-JULIEN LAVOIR",44.849122,5.706899,0,0,O38:SA:CTP551,Europe/Paris,,O38, +O38:SP:5510,1,"MONTFORT FUNICULAIRE",45.298555,5.899227,0,0,OGE:SA:CTP5509,Europe/Paris,,O38, +O38:SP:5512,1,"LES POMPIERS",45.274964,5.880317,0,0,O38:SA:CTP5512,Europe/Paris,,O38, +O38:SP:5514,1,"LES POMPIERS",45.275144,5.879875,0,0,O38:SA:CTP5512,Europe/Paris,,O38, +O38:SP:5516,1,"CITE JARDINS",45.26212,5.912334,0,0,OGE:SA:CTP5517,Europe/Paris,,O38, +O38:SP:5518,1,"CITE JARDINS",45.262032,5.912338,0,0,OGE:SA:CTP5517,Europe/Paris,,O38, +O38:SP:552,1,"VILLARD-JULIEN LAVOIR",44.849172,5.707006,0,0,O38:SA:CTP551,Europe/Paris,,O38, +O38:SP:553,1,"CLEAU",44.881477,5.704484,0,0,O38:SA:CTP553,Europe/Paris,,O38, +O38:SP:554,1,"CLEAU",44.881455,5.70458,0,0,O38:SA:CTP553,Europe/Paris,,O38, +O38:SP:5558,1,"BRIGNOUD GARE SNCF",45.262555,5.901717,0,0,OGE:SA:CTP5557,Europe/Paris,,O38, +O38:SP:557,1,"CARREF.SAVEL PLAGE",44.874497,5.710147,0,0,O38:SA:CTP557,Europe/Paris,,O38, +O38:SP:558,1,"CARREF.SAVEL PLAGE",44.874464,5.710056,0,0,O38:SA:CTP557,Europe/Paris,,O38, +O38:SP:559,1,"LE VILLAGE",44.849337,5.672169,0,0,O38:SA:CTP559,Europe/Paris,,O38, +O38:SP:560,1,"LE VILLAGE",44.849289,5.672164,0,0,O38:SA:CTP559,Europe/Paris,,O38, +O38:SP:561,1,"MAISSENAS",44.87735,5.654116,0,0,O38:SA:CTP561,Europe/Paris,,O38, +O38:SP:563,1,"LE BUISSET",44.872656,5.65204,0,0,O38:SA:CTP563,Europe/Paris,,O38, +O38:SP:565,1,"MAYRES-SAVEL",44.874058,5.722519,0,0,O38:SA:CTP565,Europe/Paris,,O38, +O38:SP:566,1,"MAYRES-SAVEL",44.874118,5.722574,0,0,O38:SA:CTP565,Europe/Paris,,O38, +O38:SP:567,1,"LA JARGNE",44.866688,5.776371,0,0,O38:SA:CTP567,Europe/Paris,,O38, +O38:SP:5674,1,"PRE SEC",45.304016,5.95367,0,0,OGE:SA:CTP5675,Europe/Paris,,O38, +O38:SP:5676,1,"PRE SEC",45.304055,5.953836,0,0,OGE:SA:CTP5675,Europe/Paris,,O38, +O38:SP:568,1,"LA JARGNE",44.866641,5.776462,0,0,O38:SA:CTP567,Europe/Paris,,O38, +O38:SP:569,1,"LES RIVES",44.866858,5.76893,0,0,O38:SA:CTP569,Europe/Paris,,O38, +O38:SP:570,1,"LES RIVES",44.866774,5.768975,0,0,O38:SA:CTP569,Europe/Paris,,O38, +O38:SP:5703,1,"CARREFOUR RD 523",45.294817,5.945082,0,0,OGE:SA:CTP5704,Europe/Paris,,O38, +O38:SP:5705,1,"CARREFOUR RD 523",45.294918,5.944939,0,0,OGE:SA:CTP5704,Europe/Paris,,O38, +O38:SP:571,1,"CITE E.D.F.",44.871218,5.770591,0,0,O38:SA:CTP571,Europe/Paris,,O38, +O38:SP:572,1,"CITE E.D.F.",44.87122,5.770564,0,0,O38:SA:CTP571,Europe/Paris,,O38, +O38:SP:573,1,"VILLAGE",44.881773,5.777824,0,0,O38:SA:CTP573,Europe/Paris,,O38, +O38:SP:574,1,"VILLAGE",44.881726,5.777901,0,0,O38:SA:CTP573,Europe/Paris,,O38, +O38:SP:575,1,"VILLARD TOUAGE",44.847024,5.734391,0,0,O38:SA:CTP575,Europe/Paris,,O38, +O38:SP:576,1,"VILLARD TOUAGE",44.847032,5.734171,0,0,O38:SA:CTP575,Europe/Paris,,O38, +O38:SP:577,1,"TOUAGE-PONT.RD34B",44.852514,5.739708,0,0,O38:SA:CTP577,Europe/Paris,,O38, +O38:SP:5772,1,"ET.JEANNE D'ARC",45.368922,4.798316,0,0,O38:SA:CTP5772,Europe/Paris,,O38, +O38:SP:5773,1,"ET.JEANNE D'ARC",45.368875,4.798359,0,0,O38:SA:CTP5772,Europe/Paris,,O38, +O38:SP:5776,1,"PLACE REPUBLIQUE",45.362769,4.801582,0,0,O38:SA:CTP5776,Europe/Paris,,O38, +O38:SP:5777,1,"PLACE REPUBLIQUE",45.36272,4.801657,0,0,O38:SA:CTP5776,Europe/Paris,,O38, +O38:SP:5778,1,"LES CITES(RN7)",45.361004,4.800923,0,0,O38:SA:CTP5778,Europe/Paris,,O38, +O38:SP:5779,1,"ROMAIN ROLLAND",45.378846,4.785943,0,0,O38:SA:CTP5779,Europe/Paris,,O38, +O38:SP:578,1,"TOUAGE-PONT.RD34B",44.852572,5.739713,0,0,O38:SA:CTP577,Europe/Paris,,O38, +O38:SP:5780,1,"ROMAIN ROLLAND",45.37879,4.785879,0,0,O38:SA:CTP5779,Europe/Paris,,O38, +O38:SP:5782,1,"GARE SNCF",45.372022,4.795461,0,0,O38:SA:CTP5782,Europe/Paris,,O38, +O38:SP:5783,1,"GARE SNCF",45.371933,4.795438,0,0,O38:SA:CTP5782,Europe/Paris,,O38, +O38:SP:5784,1,"FOYER LE GITE",45.372288,4.800923,0,0,O38:SA:CTP5784,Europe/Paris,,O38, +O38:SP:5785,1,"FOYER LE GITE",45.37235,4.800878,0,0,O38:SA:CTP5784,Europe/Paris,,O38, +O38:SP:5786,1,"PLACE DE LA HALLE",45.372668,4.798848,0,0,O38:SA:CTP5786,Europe/Paris,,O38, +O38:SP:5787,1,"PLACE DE LA HALLE",45.373815,4.797863,0,0,O38:SA:CTP5786,Europe/Paris,,O38, +O38:SP:5788,1,"CLOS AVRIL",45.363137,4.807343,0,0,O38:SA:CTP5788,Europe/Paris,,O38, +O38:SP:5789,1,"CLOS AVRIL",45.363122,4.807244,0,0,O38:SA:CTP5788,Europe/Paris,,O38, +O38:SP:579,1,"PELLENFREY",44.878323,5.741707,0,0,O38:SA:CTP579,Europe/Paris,,O38, +O38:SP:5790,1,"CITE DE L'EDIT",45.367078,4.80163,0,0,O38:SA:CTP5790,Europe/Paris,,O38, +O38:SP:5791,1,"CITE DE L'EDIT",45.367092,4.801517,0,0,O38:SA:CTP5790,Europe/Paris,,O38, +O38:SP:5792,1,"SALLE DES FETES",45.369738,4.799269,0,0,O38:SA:CTP5792,Europe/Paris,,O38, +O38:SP:5793,1,"GIVRAY",45.382168,4.788575,0,0,O38:SA:CTP5793,Europe/Paris,,O38, +O38:SP:5794,1,"GIVRAY",45.38221,4.788658,0,0,O38:SA:CTP5793,Europe/Paris,,O38, +O38:SP:5795,1,"RHONE-POULENC",45.36051,4.794828,0,0,O38:SA:CTP5795,Europe/Paris,,O38, +O38:SP:5796,1,"PTT-JEAN JAURES",45.366332,4.806256,0,0,O38:SA:CTP5796,Europe/Paris,,O38, +O38:SP:5797,1,"PTT-JEAN JAURES",45.36638,4.80618,0,0,O38:SA:CTP5796,Europe/Paris,,O38, +O38:SP:5798,1,"LES CITES",45.359305,4.80496,0,0,O38:SA:CTP5798,Europe/Paris,,O38, +O38:SP:5799,1,"LES CITES",45.359199,4.804947,0,0,O38:SA:CTP5798,Europe/Paris,,O38, +O38:SP:580,1,"PELLENFREY",44.878312,5.741607,0,0,O38:SA:CTP579,Europe/Paris,,O38, +O38:SP:5800,1,"LEP VERGUIN",45.362421,4.796102,0,0,O38:SA:CTP5800,Europe/Paris,,O38, +O38:SP:5801,1,"LEP VERGUIN",45.362452,4.796009,0,0,O38:SA:CTP5800,Europe/Paris,,O38, +O38:SP:5803,1,"CAVE COOPERATIVE",45.376181,4.790458,0,0,O38:SA:CTP5803,Europe/Paris,,O38, +O38:SP:5804,1,"CAVE COOPERATIVE",45.376237,4.790522,0,0,O38:SA:CTP5803,Europe/Paris,,O38, +O38:SP:5805,1,"TRANSFORMATEUR",45.337048,4.839215,0,0,O38:SA:CTP5805,Europe/Paris,,O38, +O38:SP:5806,1,"TRANSFORMATEUR",45.33712,4.8392,0,0,O38:SA:CTP5805,Europe/Paris,,O38, +O38:SP:5807,1,"ROUTE DU STADE",45.343057,4.850745,0,0,O38:SA:CTP5807,Europe/Paris,,O38, +O38:SP:5808,1,"ROUTE DU STADE",45.343063,4.850847,0,0,O38:SA:CTP5807,Europe/Paris,,O38, +O38:SP:5809,1,"TERRES ROUGES",45.381452,4.812345,0,0,O38:SA:CTP5809,Europe/Paris,,O38, +O38:SP:581,1,"LE VILLAGE",44.85329,5.761596,0,0,O38:SA:CTP581,Europe/Paris,,O38, +O38:SP:5810,1,"TERRES ROUGES",45.381488,4.812257,0,0,O38:SA:CTP5809,Europe/Paris,,O38, +O38:SP:5811,1,"CAR.D51-LA FORET",45.338869,4.850864,0,0,O38:SA:CTP5811,Europe/Paris,,O38, +O38:SP:5812,1,"CAR.D51-LA FORET",45.338948,4.850941,0,0,O38:SA:CTP5811,Europe/Paris,,O38, +O38:SP:5813,1,"LA PLACE",45.339298,4.856719,0,0,O38:SA:CTP5813,Europe/Paris,,O38, +O38:SP:5814,1,"LA PLACE",45.339255,4.856834,0,0,O38:SA:CTP5813,Europe/Paris,,O38, +O38:SP:5815,1,"LES VIALS",45.36678,4.808523,0,0,O38:SA:CTP5815,Europe/Paris,,O38, +O38:SP:5816,1,"LES VIALS",45.366736,4.808602,0,0,O38:SA:CTP5815,Europe/Paris,,O38, +O38:SP:5817,1,"ETABLISSEMENT ARRUE",45.355535,4.809662,0,0,O38:SA:CTP5817,Europe/Paris,,O38, +O38:SP:5818,1,"ETABLISSEMENT ARRUE",45.355432,4.809758,0,0,O38:SA:CTP5817,Europe/Paris,,O38, +O38:SP:5819,1,"FAYOLLE",45.341082,4.816448,0,0,O38:SA:CTP5819,Europe/Paris,,O38, +O38:SP:582,1,"LE VILLAGE",44.853444,5.761721,0,0,O38:SA:CTP581,Europe/Paris,,O38, +O38:SP:5820,1,"FAYOLLE",45.341144,4.816381,0,0,O38:SA:CTP5819,Europe/Paris,,O38, +O38:SP:5822,1,"LES BERNARDS",45.337733,4.821995,0,0,O38:SA:CTP5822,Europe/Paris,,O38, +O38:SP:5823,1,"MAUDINEE-TRANSFO",45.380443,4.825014,0,0,O38:SA:CTP5823,Europe/Paris,,O38, +O38:SP:5824,1,"MAUDINEE-TRANSFO",45.380513,4.824992,0,0,O38:SA:CTP5823,Europe/Paris,,O38, +O38:SP:5825,1,"MAIRIE",45.373217,4.812196,0,0,O38:SA:CTP5825,Europe/Paris,,O38, +O38:SP:5826,1,"MAIRIE",45.373363,4.812516,0,0,O38:SA:CTP5825,Europe/Paris,,O38, +O38:SP:5827,1,"CLINIQUE ST-CHARLES",45.371095,4.81349,0,0,O38:SA:CTP5827,Europe/Paris,,O38, +O38:SP:5828,1,"CLINIQUE ST-CHARLES",45.371092,4.813387,0,0,O38:SA:CTP5827,Europe/Paris,,O38, +O38:SP:5831,1,"CHEM.COMBE LOUVEY",45.376123,4.862247,0,0,O38:SA:CTP5831,Europe/Paris,,O38, +O38:SP:5832,1,"CHEM.COMBE LOUVEY",45.376156,4.862157,0,0,O38:SA:CTP5831,Europe/Paris,,O38, +O38:SP:5833,1,"ECOLES",45.363127,4.863021,0,0,O38:SA:CTP5833,Europe/Paris,,O38, +O38:SP:5834,1,"ECOLES",45.363101,4.862927,0,0,O38:SA:CTP5833,Europe/Paris,,O38, +O38:SP:5835,1,"LE PILON",45.361925,4.858221,0,0,O38:SA:CTP5835,Europe/Paris,,O38, +O38:SP:5836,1,"LE PILON",45.36198,4.858279,0,0,O38:SA:CTP5835,Europe/Paris,,O38, +O38:SP:5837,1,"LES PLAINES",45.37983,4.82006,0,0,O38:SA:CTP5837,Europe/Paris,,O38, +O38:SP:5838,1,"LES PLAINES",45.37983,4.820038,0,0,O38:SA:CTP5837,Europe/Paris,,O38, +O38:SP:5839,1,"CHEMIN DES SABLIERES",45.369518,4.859908,0,0,O38:SA:CTP5839,Europe/Paris,,O38, +O38:SP:584,1,"RD 116",44.874332,5.734987,0,0,O38:SA:CTP584,Europe/Paris,,O38, +O38:SP:5840,1,"CHEMIN DES SABLIERES",45.369529,4.859806,0,0,O38:SA:CTP5839,Europe/Paris,,O38, +O38:SP:5841,1,"CARREFOUR PONCIN",45.382274,4.841395,0,0,O38:SA:CTP5841,Europe/Paris,,O38, +O38:SP:5842,1,"CARREFOUR PONCIN",45.382342,4.841361,0,0,O38:SA:CTP5841,Europe/Paris,,O38, +O38:SP:5843,1,"CAR. LES CHALS",45.369541,4.812818,0,0,O38:SA:CTP5843,Europe/Paris,,O38, +O38:SP:5844,1,"LE GUE D'AGNIN",45.358976,4.84233,0,0,O38:SA:CTP5844,Europe/Paris,,O38, +O38:SP:5845,1,"LE GUE D'AGNIN",45.358956,4.842428,0,0,O38:SA:CTP5844,Europe/Paris,,O38, +O38:SP:5846,1,"RUE SAILLANT",45.350677,4.809691,0,0,O38:SA:CTP5846,Europe/Paris,,O38, +O38:SP:5847,1,"RUE SAILLANT",45.350688,4.80982,0,0,O38:SA:CTP5846,Europe/Paris,,O38, +O38:SP:5848,1,"LES CHALS",45.365531,4.822464,0,0,O38:SA:CTP5848,Europe/Paris,,O38, +O38:SP:5849,1,"CARREFOUR REYNAUD",45.360334,4.831374,0,0,O38:SA:CTP5849,Europe/Paris,,O38, +O38:SP:585,1,"ECOLE PRIMAIRE",44.853133,5.762834,0,0,O38:SA:CTP585,Europe/Paris,,O38, +O38:SP:5850,1,"CARREFOUR REYNAUD",45.360356,4.83146,0,0,O38:SA:CTP5849,Europe/Paris,,O38, +O38:SP:5851,1,"DDE-CROIX FINAND",45.377686,4.810693,0,0,O38:SA:CTP5851,Europe/Paris,,O38, +O38:SP:5852,1,"DDE-CROIX FINAND",45.377686,4.810715,0,0,O38:SA:CTP5851,Europe/Paris,,O38, +O38:SP:5853,1,"MAIRIE",45.343912,4.817403,0,0,O38:SA:CTP5853,Europe/Paris,,O38, +O38:SP:5854,1,"MAIRIE",45.343977,4.817393,0,0,O38:SA:CTP5853,Europe/Paris,,O38, +O38:SP:5855,1,"LA DAVIERE",45.364764,4.847927,0,0,O38:SA:CTP5855,Europe/Paris,,O38, +O38:SP:5856,1,"LA DAVIERE",45.3647,4.847971,0,0,O38:SA:CTP5855,Europe/Paris,,O38, +O38:SP:5857,1,"CIMETIERE",45.372753,4.850796,0,0,O38:SA:CTP5857,Europe/Paris,,O38, +O38:SP:5858,1,"CIMETIERE",45.37278,4.85085,0,0,O38:SA:CTP5857,Europe/Paris,,O38, +O38:SP:5859,1,"LOTISSEMENT",45.346609,4.851953,0,0,O38:SA:CTP5859,Europe/Paris,,O38, +O38:SP:586,1,"ECOLE PRIMAIRE",44.853061,5.76282,0,0,O38:SA:CTP585,Europe/Paris,,O38, +O38:SP:5860,1,"LOTISSEMENT",45.346543,4.852006,0,0,O38:SA:CTP5859,Europe/Paris,,O38, +O38:SP:5861,1,"COLLEGE",45.338137,4.81765,0,0,O38:SA:CTP5861,Europe/Paris,,O38, +O38:SP:5862,1,"COLLEGE",45.338256,4.817526,0,0,O38:SA:CTP5861,Europe/Paris,,O38, +O38:SP:5863,1,"PONT DES RAGES",45.381697,4.86648,0,0,O38:SA:CTP5863,Europe/Paris,,O38, +O38:SP:5864,1,"PONT DES RAGES",45.381716,4.866381,0,0,O38:SA:CTP5863,Europe/Paris,,O38, +O38:SP:5865,1,"PIMPIED",45.382098,4.821725,0,0,O38:SA:CTP5865,Europe/Paris,,O38, +O38:SP:5866,1,"PIMPIED",45.38215,4.821655,0,0,O38:SA:CTP5865,Europe/Paris,,O38, +O38:SP:5867,1,"LES OCHES",45.341691,4.877568,0,0,O38:SA:CTP5867,Europe/Paris,,O38, +O38:SP:5868,1,"LES OCHES",45.341685,4.876492,0,0,O38:SA:CTP5867,Europe/Paris,,O38, +O38:SP:5869,1,"BEL AIR",45.338431,4.911355,0,0,O38:SA:CTP5869,Europe/Paris,,O38, +O38:SP:587,1,"LA BAUME",44.870388,5.747647,0,0,O38:SA:CTP587,Europe/Paris,,O38, +O38:SP:5870,1,"BEL AIR",45.338503,4.911335,0,0,O38:SA:CTP5869,Europe/Paris,,O38, +O38:SP:5871,1,"LA PLACE",45.346402,4.882433,0,0,O38:SA:CTP5871,Europe/Paris,,O38, +O38:SP:5872,1,"LA PLACE",45.346317,4.882331,0,0,O38:SA:CTP5871,Europe/Paris,,O38, +O38:SP:5873,1,"LES EYNAUDS",45.379235,4.879611,0,0,O38:SA:CTP5873,Europe/Paris,,O38, +O38:SP:5874,1,"LES EYNAUDS",45.379181,4.879735,0,0,O38:SA:CTP5873,Europe/Paris,,O38, +O38:SP:5875,1,"PONT DE BEREY",45.357347,4.913421,0,0,O38:SA:CTP5875,Europe/Paris,,O38, +O38:SP:5876,1,"PONT DE BEREY",45.357325,4.913496,0,0,O38:SA:CTP5875,Europe/Paris,,O38, +O38:SP:5877,1,"LA PLACE",45.354726,4.905967,0,0,O38:SA:CTP5877,Europe/Paris,,O38, +O38:SP:5878,1,"LA PLACE",45.354675,4.906026,0,0,O38:SA:CTP5877,Europe/Paris,,O38, +O38:SP:5879,1,"ST SULPICE",45.344795,4.938327,0,0,O38:SA:CTP5879,Europe/Paris,,O38, +O38:SP:5880,1,"ST SULPICE",45.344741,4.938207,0,0,O38:SA:CTP5879,Europe/Paris,,O38, +O38:SP:5881,1,"ROUTE DES SABLES",45.356039,4.921816,0,0,O38:SA:CTP5881,Europe/Paris,,O38, +O38:SP:5882,1,"ROUTE DES SABLES",45.356057,4.922216,0,0,O38:SA:CTP5881,Europe/Paris,,O38, +O38:SP:5883,1,"LOT.LES RANCINES",45.334947,4.954518,0,0,O38:SA:CTP5883,Europe/Paris,,O38, +O38:SP:5884,1,"LOT.LES RANCINES",45.334973,4.954791,0,0,O38:SA:CTP5883,Europe/Paris,,O38, +O38:SP:5885,1,"LES MARANDES",45.334972,4.954863,0,0,O38:SA:CTP5885,Europe/Paris,,O38, +O38:SP:5886,1,"LES MARANDES",45.334958,4.954424,0,0,O38:SA:CTP5885,Europe/Paris,,O38, +O38:SP:5887,1,"FEYTAZ-LES PIERRES",45.379328,4.947095,0,0,O38:SA:CTP5887,Europe/Paris,,O38, +O38:SP:5888,1,"FEYTAZ-LES PIERRES",45.379295,4.947185,0,0,O38:SA:CTP5887,Europe/Paris,,O38, +O38:SP:5889,1,"POUSSIEU-ANCIEN TRANSFORMATEUR",45.375193,4.95143,0,0,O38:SA:CTP5889,Europe/Paris,,O38, +O38:SP:589,1,"CHARDEAU",44.873402,5.717046,0,0,O38:SA:CTP589,Europe/Paris,,O38, +O38:SP:5890,1,"LES GIRO",45.375503,4.945128,0,0,O38:SA:CTP5890,Europe/Paris,,O38, +O38:SP:5891,1,"LES GIRO",45.375488,4.945228,0,0,O38:SA:CTP5890,Europe/Paris,,O38, +O38:SP:5892,1,"FELISON-D 46",45.364687,4.953526,0,0,O38:SA:CTP5892,Europe/Paris,,O38, +O38:SP:5893,1,"FELISON-D 46",45.364692,4.953628,0,0,O38:SA:CTP5892,Europe/Paris,,O38, +O38:SP:5894,1,"BELLEGARDE-D134",45.37995,4.960615,0,0,O38:SA:CTP5894,Europe/Paris,,O38, +O38:SP:5895,1,"BELLEGARDE-D134",45.380005,4.960547,0,0,O38:SA:CTP5894,Europe/Paris,,O38, +O38:SP:5896,1,"LE GANAVAT",45.376569,4.946259,0,0,O38:SA:CTP5896,Europe/Paris,,O38, +O38:SP:5897,1,"LE GANAVAT",45.376572,4.946157,0,0,O38:SA:CTP5896,Europe/Paris,,O38, +O38:SP:5898,1,"LA GARENNE",45.378678,4.977035,0,0,O38:SA:CTP5898,Europe/Paris,,O38, +O38:SP:5899,1,"LA GARENNE",45.37875,4.977022,0,0,O38:SA:CTP5898,Europe/Paris,,O38, +O38:SP:590,1,"CHARDEAU",44.873477,5.717036,0,0,O38:SA:CTP589,Europe/Paris,,O38, +O38:SP:5900,1,"POUSSIEU LE HAUT",45.377009,4.948055,0,0,O38:SA:CTP5900,Europe/Paris,,O38, +O38:SP:5901,1,"LE MOURELET",45.376668,4.968028,0,0,O38:SA:CTP5901,Europe/Paris,,O38, +O38:SP:5902,1,"LE MOURELET",45.376644,4.968042,0,0,O38:SA:CTP5901,Europe/Paris,,O38, +O38:SP:5903,1,"LES GROLIERES",45.37027,4.942628,0,0,O38:SA:CTP5903,Europe/Paris,,O38, +O38:SP:5904,1,"LES GROLIERES",45.370215,4.942557,0,0,O38:SA:CTP5903,Europe/Paris,,O38, +O38:SP:5905,1,"LES BARDELIERES",45.37578,4.963682,0,0,O38:SA:CTP5905,Europe/Paris,,O38, +O38:SP:5906,1,"LES BARDELIERES",45.375709,4.963672,0,0,O38:SA:CTP5905,Europe/Paris,,O38, +O38:SP:5909,1,"BELLEGARDE VILLAGE",45.38076,4.961832,0,0,O38:SA:CTP5909,Europe/Paris,,O38, +O38:SP:5910,1,"BELLEGARDE VILLAGE",45.380727,4.961842,0,0,O38:SA:CTP5909,Europe/Paris,,O38, +O38:SP:5911,1,"POUSSIEU EGLISE",45.375093,4.946633,0,0,O38:SA:CTP5911,Europe/Paris,,O38, +O38:SP:5912,1,"POUSSIEU EGLISE",45.375072,4.946655,0,0,O38:SA:CTP5911,Europe/Paris,,O38, +O38:SP:5913,1,"HAUT POUSSIEU D46",45.378186,4.94972,0,0,O38:SA:CTP5913,Europe/Paris,,O38, +O38:SP:5918,1,"LE SILO-LE GUY",45.36886,4.989603,0,0,O38:SA:CTP5918,Europe/Paris,,O38, +O38:SP:5919,1,"LE SILO-LE GUY",45.368822,4.98969,0,0,O38:SA:CTP5918,Europe/Paris,,O38, +O38:SP:5920,1,"LES ALBERGERIES",45.378763,4.995727,0,0,O38:SA:CTP5920,Europe/Paris,,O38, +O38:SP:5921,1,"LES ALBERGERIES",45.378699,4.995861,0,0,O38:SA:CTP5920,Europe/Paris,,O38, +O38:SP:5922,1,"LES PICHONNIERES",45.371386,4.953026,0,0,O38:SA:CTP5922,Europe/Paris,,O38, +O38:SP:5923,1,"LES TREMBLES",45.372156,4.992428,0,0,O38:SA:CTP5923,Europe/Paris,,O38, +O38:SP:5924,1,"LES TREMBLES",45.372191,4.992338,0,0,O38:SA:CTP5923,Europe/Paris,,O38, +O38:SP:5925,1,"LA RANCHE",45.373597,4.957152,0,0,O38:SA:CTP5925,Europe/Paris,,O38, +O38:SP:5926,1,"LA RANCHE",45.373561,4.957189,0,0,O38:SA:CTP5925,Europe/Paris,,O38, +O38:SP:5927,1,"POUSSIEU PLACE",45.373422,4.950467,0,0,O38:SA:CTP5927,Europe/Paris,,O38, +O38:SP:5928,1,"POUSSIEU PLACE",45.373489,4.950379,0,0,O38:SA:CTP5927,Europe/Paris,,O38, +O38:SP:5929,1,"LA PLAINE",45.374884,4.994379,0,0,O38:SA:CTP5929,Europe/Paris,,O38, +O38:SP:593,1,"PELLENFREY RD 116",44.874042,5.746704,0,0,O38:SA:CTP593,Europe/Paris,,O38, +O38:SP:5930,1,"LA PLAINE",45.374854,4.994472,0,0,O38:SA:CTP5929,Europe/Paris,,O38, +O38:SP:5931,1,"CAR.BATAILLOUSE",45.356278,4.953519,0,0,O38:SA:CTP5931,Europe/Paris,,O38, +O38:SP:5932,1,"CAR.BATAILLOUSE",45.35627,4.95362,0,0,O38:SA:CTP5931,Europe/Paris,,O38, +O38:SP:5933,1,"LA PLACE",45.352777,4.989856,0,0,O38:SA:CTP5933,Europe/Paris,,O38, +O38:SP:5934,1,"LA PLACE",45.352849,4.989851,0,0,O38:SA:CTP5933,Europe/Paris,,O38, +O38:SP:5935,1,"ROUTE DE TOURDAN",45.352906,4.994917,0,0,O38:SA:CTP5935,Europe/Paris,,O38, +O38:SP:5936,1,"LE JANIN",45.357576,4.983982,0,0,O38:SA:CTP5936,Europe/Paris,,O38, +O38:SP:5937,1,"LE JANIN",45.357596,4.984079,0,0,O38:SA:CTP5936,Europe/Paris,,O38, +O38:SP:5938,1,"LE FER",45.353856,4.985709,0,0,O38:SA:CTP5938,Europe/Paris,,O38, +O38:SP:5939,1,"LE FER",45.353822,4.985621,0,0,O38:SA:CTP5938,Europe/Paris,,O38, +O38:SP:594,1,"PELLENFREY RD 116",44.873975,5.746744,0,0,O38:SA:CTP593,Europe/Paris,,O38, +O38:SP:5940,1,"LE POULET-RD538",45.350707,5.037572,0,0,O38:SA:CTP5940,Europe/Paris,,O38, +O38:SP:5941,1,"LE POULET-RD538",45.350705,5.037486,0,0,O38:SA:CTP5940,Europe/Paris,,O38, +O38:SP:5942,1,"S.I.C.A",45.337984,5.044935,0,0,O38:SA:CTP5942,Europe/Paris,,O38, +O38:SP:5943,1,"S.I.C.A",45.337929,5.045017,0,0,O38:SA:CTP5942,Europe/Paris,,O38, +O38:SP:5944,1,"LA VACHERE",45.354571,5.033332,0,0,O38:SA:CTP5944,Europe/Paris,,O38, +O38:SP:5945,1,"LA VACHERE",45.354585,5.033251,0,0,O38:SA:CTP5944,Europe/Paris,,O38, +O38:SP:5946,1,"ROUTE DU POULET",45.346777,5.041553,0,0,O38:SA:CTP5946,Europe/Paris,,O38, +O38:SP:5947,1,"ROUTE DU POULET",45.346401,5.042119,0,0,O38:SA:CTP5946,Europe/Paris,,O38, +O38:SP:5948,1,"COLLEGE JACQUES BREL",45.338156,5.063726,0,0,O38:SA:CTP5948,Europe/Paris,,O38, +O38:SP:5949,1,"COLLEGE JACQUES BREL",45.338026,5.063904,0,0,O38:SA:CTP5948,Europe/Paris,,O38, +O38:SP:595,1,"LES EGATS",44.876111,5.835162,0,0,O38:SA:CTP595,Europe/Paris,,O38, +O38:SP:5950,1,"ET.L.DUFEILLANT",45.338738,5.057032,0,0,O38:SA:CTP5950,Europe/Paris,,O38, +O38:SP:5951,1,"ET.L.DUFEILLANT",45.338771,5.05708,0,0,O38:SA:CTP5950,Europe/Paris,,O38, +O38:SP:5952,1,"CAR.BOIS-VIEUX",45.344702,5.021527,0,0,O38:SA:CTP5952,Europe/Paris,,O38, +O38:SP:5953,1,"CAR.BOIS-VIEUX",45.34477,5.021558,0,0,O38:SA:CTP5952,Europe/Paris,,O38, +O38:SP:5954,1,"GARE ROUTIERE",45.336193,5.055843,0,0,O38:SA:CTP5954,Europe/Paris,,O38, +O38:SP:5955,1,"GARE ROUTIERE",45.33629,5.0559,0,0,O38:SA:CTP5954,Europe/Paris,,O38, +O38:SP:5956,1,"LE GRAND CHEMIN",45.341157,5.047958,0,0,O38:SA:CTP5956,Europe/Paris,,O38, +O38:SP:5957,1,"LE GRAND CHEMIN",45.341167,5.048019,0,0,O38:SA:CTP5956,Europe/Paris,,O38, +O38:SP:5958,1,"MAISON PACALET",45.377499,5.051069,0,0,O38:SA:CTP5958,Europe/Paris,,O38, +O38:SP:5959,1,"MAISON PACALET",45.377456,5.050988,0,0,O38:SA:CTP5958,Europe/Paris,,O38, +O38:SP:596,1,"LES EGATS",44.87647,5.836627,0,0,O38:SA:CTP595,Europe/Paris,,O38, +O38:SP:5960,1,"TOURDAN",45.371659,5.032658,0,0,O38:SA:CTP5960,Europe/Paris,,O38, +O38:SP:5961,1,"TOURDAN",45.371651,5.032619,0,0,O38:SA:CTP5960,Europe/Paris,,O38, +O38:SP:5962,1,"CHARPENAY-GAMBALOUD",45.378035,5.058312,0,0,O38:SA:CTP5962,Europe/Paris,,O38, +O38:SP:5963,1,"CHARPENAY-GAMBALOUD",45.378024,5.058211,0,0,O38:SA:CTP5962,Europe/Paris,,O38, +O38:SP:5964,1,"ROUCLAVARD",45.360999,5.056315,0,0,O38:SA:CTP5964,Europe/Paris,,O38, +O38:SP:5965,1,"ROUCLAVARD",45.360995,5.056214,0,0,O38:SA:CTP5964,Europe/Paris,,O38, +O38:SP:5966,1,"AUBERGE DUPINET(RD 538)",45.369234,5.027643,0,0,O38:SA:CTP5966,Europe/Paris,,O38, +O38:SP:5967,1,"AUBERGE DUPINET(RD 538)",45.369168,5.027482,0,0,O38:SA:CTP5966,Europe/Paris,,O38, +O38:SP:5968,1,"MAISON ROUSSET",45.36686,5.061291,0,0,O38:SA:CTP5968,Europe/Paris,,O38, +O38:SP:5969,1,"MAISON ROUSSET",45.366931,5.061273,0,0,O38:SA:CTP5968,Europe/Paris,,O38, +O38:SP:597,1,"LE CHARDENOT",44.884522,5.829431,0,0,O38:SA:CTP597,Europe/Paris,,O38, +O38:SP:5970,1,"GRANGE ROBERT",45.332708,5.034777,0,0,O38:SA:CTP5970,Europe/Paris,,O38, +O38:SP:5971,1,"GRANGE ROBERT",45.332745,5.034943,0,0,O38:SA:CTP5970,Europe/Paris,,O38, +O38:SP:5972,1,"LE TRUCHAUD",45.3627,5.134443,0,0,O38:SA:CTP5972,Europe/Paris,,O38, +O38:SP:5973,1,"LE TRUCHAUD",45.362764,5.134491,0,0,O38:SA:CTP5972,Europe/Paris,,O38, +O38:SP:5974,1,"LES GRANGES",45.364769,5.133995,0,0,O38:SA:CTP5974,Europe/Paris,,O38, +O38:SP:5975,1,"LES GRANGES",45.364773,5.133894,0,0,O38:SA:CTP5974,Europe/Paris,,O38, +O38:SP:5978,1,"LA BEAUME",45.334477,5.115017,0,0,O38:SA:CTP5978,Europe/Paris,,O38, +O38:SP:5979,1,"LA BEAUME",45.33444,5.115105,0,0,O38:SA:CTP5978,Europe/Paris,,O38, +O38:SP:5981,1,"LE CONTENT",45.337628,5.128825,0,0,O38:SA:CTP5981,Europe/Paris,,O38, +O38:SP:5984,1,"LES BRUYERES",45.34485,5.139537,0,0,O38:SA:CTP5984,Europe/Paris,,O38, +O38:SP:5985,1,"LES BRUYERES",45.344908,5.138957,0,0,O38:SA:CTP5984,Europe/Paris,,O38, +O38:SP:5986,1,"ECOLE",45.36434,5.137559,0,0,O38:SA:CTP5986,Europe/Paris,,O38, +O38:SP:5987,1,"ECOLE",45.36429,5.137485,0,0,O38:SA:CTP5986,Europe/Paris,,O38, +O38:SP:5988,1,"LE VILLAGE",45.346383,5.080659,0,0,O38:SA:CTP5988,Europe/Paris,,O38, +O38:SP:5989,1,"LE VILLAGE",45.346391,5.081204,0,0,O38:SA:CTP5988,Europe/Paris,,O38, +O38:SP:599,1,"SERRE-BERTON",44.855948,5.789768,0,0,O38:SA:CTP599,Europe/Paris,,O38, +O38:SP:5990,1,"LE PONT ROUGE",45.347858,5.095615,0,0,O38:SA:CTP5990,Europe/Paris,,O38, +O38:SP:5991,1,"LE PONT ROUGE",45.3479,5.095755,0,0,O38:SA:CTP5990,Europe/Paris,,O38, +O38:SP:5992,1,"LES ROCHES DE PAJAY",45.34765,5.101497,0,0,O38:SA:CTP5992,Europe/Paris,,O38, +O38:SP:5994,1,"LOTISSEMENT DES ROCHES",45.351918,5.102084,0,0,O38:SA:CTP5994,Europe/Paris,,O38, +O38:SP:5995,1,"LA GUSTINIERE",45.35001,5.112783,0,0,O38:SA:CTP5995,Europe/Paris,,O38, +O38:SP:5996,1,"LE BOIS",45.366652,5.137881,0,0,O38:SA:CTP5996,Europe/Paris,,O38, +O38:SP:5997,1,"LE BOIS",45.366597,5.13793,0,0,O38:SA:CTP5996,Europe/Paris,,O38, +O38:SP:5998,1,"LES GENETS",45.359782,5.134523,0,0,O38:SA:CTP5998,Europe/Paris,,O38, +O38:SP:5999,1,"LA MANGE",45.342886,5.182241,0,0,O38:SA:CTP5999,Europe/Paris,,O38, +O38:SP:600,1,"CHAMPLONG-CAMPING",44.856536,5.843609,0,0,O38:SA:CTP600,Europe/Paris,,O38, +O38:SP:6000,1,"LA MANGE",45.342884,5.182343,0,0,O38:SA:CTP5999,Europe/Paris,,O38, +O38:SP:6001,1,"LA GUILLOTIERE",45.339503,5.17367,0,0,O38:SA:CTP6001,Europe/Paris,,O38, +O38:SP:6002,1,"LA GUILLOTIERE",45.339522,5.173753,0,0,O38:SA:CTP6001,Europe/Paris,,O38, +O38:SP:6003,1,"STADE",45.366482,5.14717,0,0,O38:SA:CTP6003,Europe/Paris,,O38, +O38:SP:6004,1,"STADE",45.36619,5.146475,0,0,O38:SA:CTP6003,Europe/Paris,,O38, +O38:SP:6005,1,"EGLISE",45.339765,5.182941,0,0,O38:SA:CTP6005,Europe/Paris,,O38, +O38:SP:6006,1,"EGLISE",45.33976,5.183004,0,0,O38:SA:CTP6005,Europe/Paris,,O38, +O38:SP:6007,1,"LES FEUGES",45.36248,5.15342,0,0,O38:SA:CTP6007,Europe/Paris,,O38, +O38:SP:6008,1,"LES FEUGES",45.362495,5.153499,0,0,O38:SA:CTP6007,Europe/Paris,,O38, +O38:SP:6009,1,"AVENUE DE LA GARE",45.340709,5.185298,0,0,O38:SA:CTP6009,Europe/Paris,,O38, +O38:SP:6010,1,"AVENUE DE LA GARE",45.340778,5.185418,0,0,O38:SA:CTP6009,Europe/Paris,,O38, +O38:SP:6011,1,"LES POIPES",45.339696,5.163169,0,0,O38:SA:CTP6011,Europe/Paris,,O38, +O38:SP:6012,1,"LES POIPES",45.339675,5.163108,0,0,O38:SA:CTP6011,Europe/Paris,,O38, +O38:SP:6014,1,"LE COLLET",45.344964,5.17443,0,0,O38:SA:CTP6014,Europe/Paris,,O38, +O38:SP:6015,1,"MALATRAT",45.332081,5.164707,0,0,O38:SA:CTP6015,Europe/Paris,,O38, +O38:SP:6016,1,"MALATRAT",45.33208,5.164606,0,0,O38:SA:CTP6015,Europe/Paris,,O38, +O38:SP:6017,1,"LE VILLAGE",45.364307,5.142749,0,0,O38:SA:CTP6017,Europe/Paris,,O38, +O38:SP:6018,1,"LE VILLAGE",45.36413,5.142366,0,0,O38:SA:CTP6017,Europe/Paris,,O38, +O38:SP:6019,1,"LA CHATAIGNERAIE",45.368401,5.206886,0,0,O38:SA:CTP6019,Europe/Paris,,O38, +O38:SP:602,1,"LES 4 CHEMINS",44.844687,5.811813,0,0,O38:SA:CTP602,Europe/Paris,,O38, +O38:SP:6020,1,"LA CHATAIGNERAIE",45.368475,5.207045,0,0,O38:SA:CTP6019,Europe/Paris,,O38, +O38:SP:6021,1,"LES BLACHES",45.347524,5.184753,0,0,O38:SA:CTP6021,Europe/Paris,,O38, +O38:SP:6022,1,"LES BLACHES",45.34754,5.184839,0,0,O38:SA:CTP6021,Europe/Paris,,O38, +O38:SP:6023,1,"QUAI SUD",45.34082,5.19413,0,0,O38:SA:CTP6023,Europe/Paris,,O38, +O38:SP:6024,1,"QUAI SUD",45.340861,5.194291,0,0,O38:SA:CTP6023,Europe/Paris,,O38, +O38:SP:6025,1,"LE RIVAL",45.352111,5.264946,0,0,O38:SA:CTP6025,Europe/Paris,,O38, +O38:SP:6026,1,"LE RIVAL",45.351916,5.265024,0,0,O38:SA:CTP6025,Europe/Paris,,O38, +O38:SP:6027,1,"COLLEGE M.MARIOTTE",45.329016,5.267934,0,0,O38:SA:CTP6027,Europe/Paris,,O38, +O38:SP:6028,1,"COLLEGE M.MARIOTTE",45.329016,5.26802,0,0,O38:SA:CTP6027,Europe/Paris,,O38, +O38:SP:6029,1,"GARAGE CHAPPUIS",45.338259,5.266271,0,0,O38:SA:CTP6029,Europe/Paris,,O38, +O38:SP:603,1,"COL-ST-SEBASTIEN",44.841581,5.78689,0,0,O38:SA:CTP603,Europe/Paris,,O38, +O38:SP:6031,1,"MI PLAINE",45.363904,5.264109,0,0,O38:SA:CTP6031,Europe/Paris,,O38, +O38:SP:6032,1,"MI PLAINE",45.363803,5.264184,0,0,O38:SA:CTP6031,Europe/Paris,,O38, +O38:SP:6033,1,"LES 4 CHEMINS",45.329425,5.266517,0,0,O38:SA:CTP6033,Europe/Paris,,O38, +O38:SP:6034,1,"LES 4 CHEMINS",45.329471,5.26659,0,0,O38:SA:CTP6033,Europe/Paris,,O38, +O38:SP:6035,1,"LES HALLES",45.328598,5.262602,0,0,O38:SA:CTP6035,Europe/Paris,,O38, +O38:SP:6036,1,"LES HALLES",45.328654,5.262627,0,0,O38:SA:CTP6035,Europe/Paris,,O38, +O38:SP:6037,1,"LES ESSARTS",45.347377,5.255952,0,0,O38:SA:CTP6037,Europe/Paris,,O38, +O38:SP:6038,1,"LES ESSARTS",45.34737,5.25585,0,0,O38:SA:CTP6037,Europe/Paris,,O38, +O38:SP:6039,1,"LA RIVOIRE",45.371133,5.217529,0,0,O38:SA:CTP6039,Europe/Paris,,O38, +O38:SP:604,1,"COL-ST-SEBASTIEN",44.841592,5.786769,0,0,O38:SA:CTP603,Europe/Paris,,O38, +O38:SP:6040,1,"LA RIVOIRE",45.37112,5.217387,0,0,O38:SA:CTP6039,Europe/Paris,,O38, +O38:SP:6041,1,"EGLISE",45.368954,5.212511,0,0,O38:SA:CTP6041,Europe/Paris,,O38, +O38:SP:6042,1,"EGLISE",45.368892,5.212471,0,0,O38:SA:CTP6041,Europe/Paris,,O38, +O38:SP:6043,1,"POIPONNIER",45.364012,5.215108,0,0,O38:SA:CTP6043,Europe/Paris,,O38, +O38:SP:6044,1,"POIPONNIER",45.363957,5.215046,0,0,O38:SA:CTP6043,Europe/Paris,,O38, +O38:SP:6047,1,"LE GRAND CHAMP",45.341366,5.254001,0,0,O38:SA:CTP6047,Europe/Paris,,O38, +O38:SP:605,1,"ST SEBASTIEN VILLAGE",44.848016,5.79852,0,0,O38:SA:CTP605,Europe/Paris,,O38, +O38:SP:6050,1,"LYCEE SAINT EXUPERY",45.330127,5.260611,0,0,O38:SA:CTP6050,Europe/Paris,,O38, +O38:SP:6052,1,"EGLISE",45.328754,5.258334,0,0,O38:SA:CTP6052,Europe/Paris,,O38, +O38:SP:6053,1,"LE MARTINET D130",45.336758,5.314467,0,0,O38:SA:CTP6053,Europe/Paris,,O38, +O38:SP:6054,1,"LE MARTINET D130",45.336687,5.31418,0,0,O38:SA:CTP6053,Europe/Paris,,O38, +O38:SP:6055,1,"LE BESSEY D130",45.336711,5.306423,0,0,O38:SA:CTP6055,Europe/Paris,,O38, +O38:SP:6056,1,"LE BESSEY D130",45.336576,5.306016,0,0,O38:SA:CTP6055,Europe/Paris,,O38, +O38:SP:6057,1,"EGLISE",45.346004,5.309064,0,0,O38:SA:CTP6057,Europe/Paris,,O38, +O38:SP:6058,1,"EGLISE",45.346074,5.308846,0,0,O38:SA:CTP6057,Europe/Paris,,O38, +O38:SP:6059,1,"MAIRIE",45.348997,5.307056,0,0,O38:SA:CTP6059,Europe/Paris,,O38, +O38:SP:606,1,"ST SEBASTIEN VILLAGE",44.847913,5.798402,0,0,O38:SA:CTP605,Europe/Paris,,O38, +O38:SP:6060,1,"MAIRIE",45.348726,5.307,0,0,O38:SA:CTP6059,Europe/Paris,,O38, +O38:SP:6061,1,"LE BESSEY",45.34057,5.306507,0,0,O38:SA:CTP6061,Europe/Paris,,O38, +O38:SP:6062,1,"LE BESSEY",45.340522,5.306582,0,0,O38:SA:CTP6061,Europe/Paris,,O38, +O38:SP:6063,1,"HAMEAU LE TEMPLE",45.337643,5.279587,0,0,O38:SA:CTP6063,Europe/Paris,,O38, +O38:SP:6064,1,"HAMEAU LE TEMPLE",45.337585,5.279607,0,0,O38:SA:CTP6063,Europe/Paris,,O38, +O38:SP:6069,1,"LE VERDIN-ABRI",45.330893,5.288525,0,0,O38:SA:CTP6069,Europe/Paris,,O38, +O38:SP:607,1,"MASSERANGE",44.860053,5.787955,0,0,O38:SA:CTP607,Europe/Paris,,O38, +O38:SP:6070,1,"LE VERDIN-ABRI",45.330873,5.288458,0,0,O38:SA:CTP6069,Europe/Paris,,O38, +O38:SP:6079,1,"LE PAILLER",45.346774,5.354447,0,0,O38:SA:CTP6079,Europe/Paris,,O38, +O38:SP:608,1,"MASSERANGE",44.859909,5.788062,0,0,O38:SA:CTP607,Europe/Paris,,O38, +O38:SP:6080,1,"LE PAILLER",45.346781,5.354564,0,0,O38:SA:CTP6079,Europe/Paris,,O38, +O38:SP:6083,1,"LA POSTE",45.342211,5.392372,0,0,O38:SA:CTP6083,Europe/Paris,,O38, +O38:SP:6084,1,"LA POSTE",45.342169,5.392393,0,0,O38:SA:CTP6083,Europe/Paris,,O38, +O38:SP:6085,1,"BASCULE",45.342789,5.385609,0,0,O38:SA:CTP6085,Europe/Paris,,O38, +O38:SP:6086,1,"BASCULE",45.342968,5.385489,0,0,O38:SA:CTP6085,Europe/Paris,,O38, +O38:SP:6087,1,"ETS RICCARDI",45.34179,5.395406,0,0,O38:SA:CTP6087,Europe/Paris,,O38, +O38:SP:6088,1,"ETS RICCARDI",45.341792,5.395912,0,0,O38:SA:CTP6087,Europe/Paris,,O38, +O38:SP:6089,1,"LES BLACHES",45.344073,5.378576,0,0,O38:SA:CTP6089,Europe/Paris,,O38, +O38:SP:6090,1,"LES BLACHES",45.344025,5.378443,0,0,O38:SA:CTP6089,Europe/Paris,,O38, +O38:SP:6091,1,"REPUBLIQUE",45.335054,5.4241,0,0,O38:SA:CTP6091,Europe/Paris,,O38, +O38:SP:6092,1,"REPUBLIQUE",45.335022,5.424146,0,0,O38:SA:CTP6091,Europe/Paris,,O38, +O38:SP:6093,1,"LE SILO ABRI",45.341947,5.433273,0,0,O38:SA:CTP6093,Europe/Paris,,O38, +O38:SP:6094,1,"LE SILO ABRI",45.341905,5.433211,0,0,O38:SA:CTP6093,Europe/Paris,,O38, +O38:SP:6095,1,"CHAMP DE FOIRE",45.343426,5.475731,0,0,O38:SA:CTP6095,Europe/Paris,,O38, +O38:SP:6096,1,"CHAMP DE FOIRE",45.343387,5.475758,0,0,O38:SA:CTP6095,Europe/Paris,,O38, +O38:SP:6097,1,"GARAGE REGUILLON",45.341466,5.423218,0,0,O38:SA:CTP6097,Europe/Paris,,O38, +O38:SP:6098,1,"GARAGE REGUILLON",45.341616,5.42495,0,0,O38:SA:CTP6097,Europe/Paris,,O38, +O38:SP:6099,1,"LA CHATAIGNERAIE",45.32894,5.432968,0,0,O38:SA:CTP6099,Europe/Paris,,O38, +O38:SP:6100,1,"LA CHATAIGNERAIE",45.329003,5.432989,0,0,O38:SA:CTP6099,Europe/Paris,,O38, +O38:SP:6101,1,"MAIRIE",45.341463,5.471646,0,0,O38:SA:CTP6101,Europe/Paris,,O38, +O38:SP:6102,1,"MAIRIE",45.34144,5.471671,0,0,O38:SA:CTP6101,Europe/Paris,,O38, +O38:SP:6103,1,"CROIX ST GEORGES",45.343123,5.466961,0,0,O38:SA:CTP6103,Europe/Paris,,O38, +O38:SP:6104,1,"CROIX ST GEORGES",45.343071,5.467005,0,0,O38:SA:CTP6103,Europe/Paris,,O38, +O38:SP:6105,1,"PHARMACIE",45.333873,5.426607,0,0,O38:SA:CTP6105,Europe/Paris,,O38, +O38:SP:6106,1,"PHARMACIE",45.333838,5.426562,0,0,O38:SA:CTP6105,Europe/Paris,,O38, +O38:SP:6107,1,"LE CHAMBARD",45.325121,5.432499,0,0,O38:SA:CTP6107,Europe/Paris,,O38, +O38:SP:6108,1,"LE CHAMBARD",45.325053,5.432554,0,0,O38:SA:CTP6107,Europe/Paris,,O38, +O38:SP:611,1,"ST PIERRE DE MEAROTZ",44.87484,5.823643,0,0,O38:SA:CTP611,Europe/Paris,,O38, +O38:SP:6110,1,"LES PRAIRIES",45.339006,5.488175,0,0,OVO:SA:CTP6109,Europe/Paris,,O38, +O38:SP:6112,1,"LES PRAIRIES",45.339158,5.488509,0,0,OVO:SA:CTP6109,Europe/Paris,,O38, +O38:SP:6114,1,"ZONE ARTISANALE",45.339841,5.492263,0,0,O38:SA:CTP6114,Europe/Paris,,O38, +O38:SP:6116,1,"ZONE ARTISANALE",45.339855,5.492134,0,0,O38:SA:CTP6114,Europe/Paris,,O38, +O38:SP:6117,1,"CRIEL DE RENAGE",45.332812,5.499961,0,0,O38:SA:CTP6117,Europe/Paris,,O38, +O38:SP:6118,1,"CRIEL DE RENAGE",45.332781,5.499993,0,0,O38:SA:CTP6117,Europe/Paris,,O38, +O38:SP:612,1,"ST PIERRE DE MEAROTZ",44.874772,5.823609,0,0,O38:SA:CTP611,Europe/Paris,,O38, +O38:SP:6120,1,"MAIRIE",45.345374,5.528596,0,0,OVO:SA:CTP6119,Europe/Paris,,O38, +O38:SP:6124,1,"6 CHEMINS",45.347055,5.524231,0,0,OVO:SA:CTP6125,Europe/Paris,,O38, +O38:SP:6126,1,"6 CHEMINS",45.347012,5.524152,0,0,OVO:SA:CTP6125,Europe/Paris,,O38, +O38:SP:6129,1,"PONT DE BOIS VERT",45.342131,5.526877,0,0,OVO:SA:CTP6130,Europe/Paris,,O38, +O38:SP:613,1,"LES MEYERS",44.877526,5.84445,0,0,O38:SA:CTP613,Europe/Paris,,O38, +O38:SP:6133,1,"LEZARDIERES PONT AUTOROUTE",45.352275,5.536983,0,0,OVO:SA:CTP6134,Europe/Paris,,O38, +O38:SP:6135,1,"LEZARDIERES PONT AUTOROUTE",45.352383,5.5373,0,0,OVO:SA:CTP6134,Europe/Paris,,O38, +O38:SP:6137,1,"LE MOURET LAVOIR",45.366136,5.514415,0,0,OVO:SA:CTP6140,Europe/Paris,,O38, +O38:SP:6139,1,"LE MOURET LAVOIR",45.36619,5.51467,0,0,OVO:SA:CTP6140,Europe/Paris,,O38, +O38:SP:614,1,"LES MEYERS",44.877572,5.844373,0,0,O38:SA:CTP613,Europe/Paris,,O38, +O38:SP:6141,1,"MALADIERE",45.352756,5.491424,0,0,O38:SA:CTP6141,Europe/Paris,,O38, +O38:SP:6143,1,"MALADIERE",45.352557,5.491475,0,0,O38:SA:CTP6141,Europe/Paris,,O38, +O38:SP:6145,1,"MOLLARD ROND",45.339956,5.505881,0,0,O38:SA:CTP6145,Europe/Paris,,O38, +O38:SP:6146,1,"MOLLARD ROND",45.339967,5.505893,0,0,O38:SA:CTP6145,Europe/Paris,,O38, +O38:SP:6148,1,"LA CROZE",45.337622,5.484225,0,0,OVO:SA:CTP6147,Europe/Paris,,O38, +O38:SP:615,1,"LOT.LES FRAISSES",44.876873,5.817636,0,0,O38:SA:CTP615,Europe/Paris,,O38, +O38:SP:6150,1,"LA CROZE",45.33774,5.484579,0,0,OVO:SA:CTP6147,Europe/Paris,,O38, +O38:SP:6152,1,"LE PLAN",45.345866,5.497697,0,0,O38:SA:CTP6152,Europe/Paris,,O38, +O38:SP:6153,1,"LE PLAN",45.345786,5.497528,0,0,O38:SA:CTP6152,Europe/Paris,,O38, +O38:SP:6155,1,"PLACE DE LA LIBERATION",45.349889,5.502626,0,0,OVO:SA:CTP6154,Europe/Paris,,O38, +O38:SP:6157,1,"PLACE DE LA LIBERATION",45.349914,5.502674,0,0,OVO:SA:CTP6154,Europe/Paris,,O38, +O38:SP:6159,1,"ALLIMAND",45.354102,5.492928,0,0,OVO:SA:CTP6158,Europe/Paris,,O38, +O38:SP:616,1,"LOT.LES FRAISSES",44.876812,5.817583,0,0,O38:SA:CTP615,Europe/Paris,,O38, +O38:SP:6161,1,"ALLIMAND",45.353861,5.493395,0,0,OVO:SA:CTP6158,Europe/Paris,,O38, +O38:SP:6163,1,"MATERNELLE RENAGE",45.336337,5.487091,0,0,O38:SA:CTP6163,Europe/Paris,,O38, +O38:SP:6165,1,"BOIS VERT CARREFOUR",45.338492,5.522623,0,0,O38:SA:CTP6165,Europe/Paris,,O38, +O38:SP:6167,1,"BOIS VERT CARREFOUR",45.338416,5.522639,0,0,O38:SA:CTP6165,Europe/Paris,,O38, +O38:SP:6169,1,"LES RIVOIRES",45.348816,5.528496,0,0,OVO:SA:CTP6168,Europe/Paris,,O38, +O38:SP:617,1,"LES SERRUES",44.854181,5.845081,0,0,O38:SA:CTP617,Europe/Paris,,O38, +O38:SP:6171,1,"LES RIVOIRES",45.348866,5.528521,0,0,OVO:SA:CTP6168,Europe/Paris,,O38, +O38:SP:6173,1,"CLOS JUVIN",45.345431,5.494704,0,0,OVO:SA:CTP6172,Europe/Paris,,O38, +O38:SP:6175,1,"CLOS JUVIN",45.345541,5.494721,0,0,OVO:SA:CTP6172,Europe/Paris,,O38, +O38:SP:6178,1,"LES QUATRE CHEMINS",45.336004,5.508448,0,0,O38:SA:CTP6178,Europe/Paris,,O38, +O38:SP:6179,1,"LES QUATRE CHEMINS",45.33603,5.508506,0,0,O38:SA:CTP6178,Europe/Paris,,O38, +O38:SP:618,1,"HAUT QUET-RN85",44.840618,5.875639,0,0,O38:SA:CTP618,Europe/Paris,,O38, +O38:SP:6185,1,"BAS RIVES",45.34927,5.509837,0,0,OVO:SA:CTP6184,Europe/Paris,,O38, +O38:SP:6186,1,"BAS RIVES",45.349331,5.50964,0,0,OVO:SA:CTP6184,Europe/Paris,,O38, +O38:SP:6188,1,"COLLEGE ROBERT DESNOS",45.350994,5.505068,0,0,OVO:SA:CTP6187,Europe/Paris,,O38, +O38:SP:6189,1,"COLLEGE ROBERT DESNOS",45.351056,5.504953,0,0,OVO:SA:CTP6187,Europe/Paris,,O38, +O38:SP:619,1,"HAUT QUET-RN85",44.840597,5.875458,0,0,O38:SA:CTP618,Europe/Paris,,O38, +O38:SP:6191,1,"AVENUE JEAN JAURES",45.352575,5.495074,0,0,OVO:SA:CTP6193,Europe/Paris,,O38, +O38:SP:6195,1,"ECOLE A. BROCHIER",45.334891,5.484074,0,0,O38:SA:CTP6195,Europe/Paris,,O38, +O38:SP:6196,1,"CROISEMENT MOLLARD ROND",45.335805,5.501712,0,0,O38:SA:CTP6196,Europe/Paris,,O38, +O38:SP:6197,1,"CROISEMENT MOLLARD ROND",45.33576,5.501792,0,0,O38:SA:CTP6196,Europe/Paris,,O38, +O38:SP:6199,1,"EGLISE",45.334081,5.4834,0,0,OVO:SA:CTP6198,Europe/Paris,,O38, +O38:SP:620,1,"LES MARCOUX",44.853914,5.85855,0,0,O38:SA:CTP620,Europe/Paris,,O38, +O38:SP:6201,1,"EGLISE",45.334057,5.483296,0,0,OVO:SA:CTP6198,Europe/Paris,,O38, +O38:SP:6203,1,"PLACE CARDINAL",45.331728,5.486132,0,0,OVO:SA:CTP6202,Europe/Paris,,O38, +O38:SP:6205,1,"PLACE CARDINAL",45.331705,5.486078,0,0,OVO:SA:CTP6202,Europe/Paris,,O38, +O38:SP:6207,1,"CHALET",45.330577,5.557275,0,0,OVO:SA:CTP6206,Europe/Paris,,O38, +O38:SP:6209,1,"CHALET",45.33052,5.557365,0,0,OVO:SA:CTP6206,Europe/Paris,,O38, +O38:SP:621,1,"LES MARCOUX",44.853979,5.858417,0,0,O38:SA:CTP620,Europe/Paris,,O38, +O38:SP:6211,1,"GARE SNCF",45.322359,5.582326,0,0,OVO:SA:CTP6210,Europe/Paris,,O38, +O38:SP:6213,1,"GARE SNCF",45.322148,5.58282,0,0,OVO:SA:CTP6210,Europe/Paris,,O38, +O38:SP:6215,1,"SAINT JACQUES",45.326879,5.556292,0,0,OVO:SA:CTP6216,Europe/Paris,,O38, +O38:SP:6217,1,"SAINT JACQUES",45.326795,5.556381,0,0,OVO:SA:CTP6216,Europe/Paris,,O38, +O38:SP:6219,1,"PLACE DU 8 MAI 1945",45.326844,5.564463,0,0,O38:SA:CTP6219,Europe/Paris,,O38, +O38:SP:622,1,"LA SALLE ECOLES",44.863687,5.856392,0,0,O38:SA:CTP622,Europe/Paris,,O38, +O38:SP:6224,1,"LYCEE PIERRE BEGHIN",45.320606,5.589547,0,0,O38:SA:CTP6224,Europe/Paris,,O38, +O38:SP:6225,1,"LYCEE PIERRE BEGHIN",45.320566,5.588707,0,0,O38:SA:CTP6224,Europe/Paris,,O38, +O38:SP:6227,1,"CHOROT POMPIERS",45.326714,5.570975,0,0,OVO:SA:CTP6226,Europe/Paris,,O38, +O38:SP:6228,1,"CHOROT POMPIERS",45.326676,5.571278,0,0,OVO:SA:CTP6226,Europe/Paris,,O38, +O38:SP:623,1,"LA SALLE ECOLES",44.86361,5.85637,0,0,O38:SA:CTP622,Europe/Paris,,O38, +O38:SP:6230,1,"PARC DE LA GRILLE",45.325976,5.562813,0,0,OVO:SA:CTP6229,Europe/Paris,,O38, +O38:SP:6231,1,"PLACE",45.341593,5.582369,0,0,OVO:SA:CTP14720,Europe/Paris,,O38, +O38:SP:6232,1,"PLACE",45.341618,5.582345,0,0,OVO:SA:CTP14720,Europe/Paris,,O38, +O38:SP:6233,1,"MAISONNEUVE",45.326736,5.576565,0,0,O38:SA:CTP6233,Europe/Paris,,O38, +O38:SP:6234,1,"MAISONNEUVE",45.326672,5.576447,0,0,O38:SA:CTP6233,Europe/Paris,,O38, +O38:SP:6236,1,"LE ROYER",45.359577,5.557189,0,0,OVO:SA:CTP6235,Europe/Paris,,O38, +O38:SP:6238,1,"LE ROYER",45.359355,5.557274,0,0,OVO:SA:CTP6235,Europe/Paris,,O38, +O38:SP:624,1,"EGLISE",44.863002,5.864137,0,0,O38:SA:CTP624,Europe/Paris,,O38, +O38:SP:6240,1,"MALOZA",45.355528,5.549674,0,0,OVO:SA:CTP6239,Europe/Paris,,O38, +O38:SP:6242,1,"MALOZA",45.355632,5.549788,0,0,OVO:SA:CTP6239,Europe/Paris,,O38, +O38:SP:6244,1,"EGLISE",45.360064,5.551274,0,0,OVO:SA:CTP6243,Europe/Paris,,O38, +O38:SP:6246,1,"EGLISE",45.359997,5.551542,0,0,OVO:SA:CTP6243,Europe/Paris,,O38, +O38:SP:6248,1,"CROIX MORIN",45.363586,5.57606,0,0,OVO:SA:CTP6249,Europe/Paris,,O38, +O38:SP:625,1,"EGLISE",44.863132,5.864312,0,0,O38:SA:CTP624,Europe/Paris,,O38, +O38:SP:6250,1,"CROIX MORIN",45.363632,5.575889,0,0,OVO:SA:CTP6249,Europe/Paris,,O38, +O38:SP:6254,1,"PLAN MENU RD1075",45.349431,5.595485,0,0,OVO:SA:CTP6251,Europe/Paris,,O38, +O38:SP:6258,1,"BD EDGAR KOFLER",45.359864,5.600251,0,0,OVO:SA:CTP6259,Europe/Paris,,O38, +O38:SP:626,1,"LES SOUCHONS",44.867008,5.847763,0,0,O38:SA:CTP626,Europe/Paris,,O38, +O38:SP:6262,1,"LYCEE FERDINAND BUISSON",45.361739,5.59871,0,0,O38:SA:CTP6262,Europe/Paris,,O38, +O38:SP:6264,1,"LYCEE FERDINAND BUISSON",45.361631,5.598639,0,0,O38:SA:CTP6262,Europe/Paris,,O38, +O38:SP:6266,1,"PARKING PLAN MENU",45.353291,5.597641,0,0,OVO:SA:CTP6255,Europe/Paris,,O38, +O38:SP:6268,1,"PARKING PLAN MENU",45.353388,5.597553,0,0,OVO:SA:CTP6255,Europe/Paris,,O38, +O38:SP:627,1,"LES SOUCHONS",44.866791,5.848054,0,0,O38:SA:CTP626,Europe/Paris,,O38, +O38:SP:6270,1,"PLACE BROCHIER",45.355708,5.617374,0,0,OVO:SA:CTP6269,Europe/Paris,,O38, +O38:SP:6272,1,"PLACE BROCHIER",45.355619,5.617321,0,0,OVO:SA:CTP6269,Europe/Paris,,O38, +O38:SP:6274,1,"PLACE",45.335504,5.621069,0,0,OVO:SA:CTP6273,Europe/Paris,,O38, +O38:SP:6278,1,"LE MARTINET",45.339289,5.662596,0,0,O38:SA:CTP6278,Europe/Paris,,O38, +O38:SP:628,1,"LA MARECHE",44.863945,5.860415,0,0,O38:SA:CTP628,Europe/Paris,,O38, +O38:SP:6280,1,"LE MARTINET",45.339109,5.662653,0,0,O38:SA:CTP6278,Europe/Paris,,O38, +O38:SP:6282,1,"ST JULIEN VILLAGE",45.350228,5.661929,0,0,OVO:SA:CTP6281,Europe/Paris,,O38, +O38:SP:6284,1,"ST JULIEN VILLAGE",45.350243,5.662058,0,0,OVO:SA:CTP6281,Europe/Paris,,O38, +O38:SP:6286,1,"LAC",45.350526,5.657197,0,0,OVO:SA:CTP6285,Europe/Paris,,O38, +O38:SP:6288,1,"LAC",45.350534,5.656921,0,0,OVO:SA:CTP6285,Europe/Paris,,O38, +O38:SP:6289,1,"LES GROLLETS",45.355402,5.673198,0,0,O38:SA:CTP6289,Europe/Paris,,O38, +O38:SP:629,1,"LA MARECHE",44.864075,5.860616,0,0,O38:SA:CTP628,Europe/Paris,,O38, +O38:SP:6290,1,"LES GROLLETS",45.355288,5.673019,0,0,O38:SA:CTP6289,Europe/Paris,,O38, +O38:SP:6292,1,"COL DE LA PLACETTE",45.330421,5.658283,0,0,OVO:SA:CTP6291,Europe/Paris,,O38, +O38:SP:6294,1,"COL DE LA PLACETTE",45.330378,5.658147,0,0,OVO:SA:CTP6291,Europe/Paris,,O38, +O38:SP:6296,1,"QUATRE BRAS",45.326012,5.656449,0,0,OVO:SA:CTP6295,Europe/Paris,,O38, +O38:SP:6298,1,"QUATRE BRAS",45.326239,5.656693,0,0,OVO:SA:CTP6295,Europe/Paris,,O38, +O38:SP:630,1,"ST LAURENT-EN-BEAUMONT",44.879321,5.850552,0,0,O38:SA:CTP630,Europe/Paris,,O38, +O38:SP:6300,1,"LES BARNIERS",45.315587,5.651061,0,0,OVO:SA:CTP6299,Europe/Paris,,O38, +O38:SP:6302,1,"LES BARNIERS",45.315322,5.651002,0,0,OVO:SA:CTP6299,Europe/Paris,,O38, +O38:SP:6304,1,"LE GARREL",45.34972,5.646123,0,0,OVO:SA:CTP6303,Europe/Paris,,O38, +O38:SP:6306,1,"LE GARREL",45.349608,5.645811,0,0,OVO:SA:CTP6303,Europe/Paris,,O38, +O38:SP:6307,1,"LE JALAS",45.351425,5.671249,0,0,O38:SA:CTP6307,Europe/Paris,,O38, +O38:SP:6308,1,"LE JALAS",45.351218,5.670976,0,0,O38:SA:CTP6307,Europe/Paris,,O38, +O38:SP:631,1,"ST LAURENT-EN-BEAUMONT",44.879332,5.850451,0,0,O38:SA:CTP630,Europe/Paris,,O38, +O38:SP:6310,1,"RD520 POMMIERS VILLAGE",45.318799,5.652938,0,0,OVO:SA:CTP6309,Europe/Paris,,O38, +O38:SP:6312,1,"RD520 POMMIERS VILLAGE",45.319063,5.653109,0,0,OVO:SA:CTP6309,Europe/Paris,,O38, +O38:SP:6314,1,"LE GAY GIRATOIRE",45.331103,5.612829,0,0,OVO:SA:CTP6313,Europe/Paris,,O38, +O38:SP:6315,1,"LA DIAT",45.339677,5.806619,0,0,O38:SA:CTP6315,Europe/Paris,,O38, +O38:SP:6316,1,"LA DIAT",45.339814,5.807011,0,0,O38:SA:CTP6315,Europe/Paris,,O38, +O38:SP:6317,1,"LES REVOLS",45.319747,5.782118,0,0,O38:SA:CTP6317,Europe/Paris,,O38, +O38:SP:632,1,"ST MICHEL-EN-BEAUMONT",44.868212,5.8997,0,0,O38:SA:CTP632,Europe/Paris,,O38, +O38:SP:6320,1,"LES GUILLETS",45.317541,5.785926,0,0,O38:SA:CTP6320,Europe/Paris,,O38, +O38:SP:6321,1,"CHERLIEU",45.31501,5.791026,0,0,O38:SA:CTP6321,Europe/Paris,,O38, +O38:SP:6322,1,"CHERLIEU",45.314939,5.791022,0,0,O38:SA:CTP6321,Europe/Paris,,O38, +O38:SP:6323,1,"LES EGAUX",45.316758,5.798775,0,0,O38:SA:CTP6323,Europe/Paris,,O38, +O38:SP:6324,1,"LES EGAUX",45.316743,5.798842,0,0,O38:SA:CTP6323,Europe/Paris,,O38, +O38:SP:6325,1,"GERENTIERE",45.319673,5.809078,0,0,O38:SA:CTP6325,Europe/Paris,,O38, +O38:SP:6326,1,"GERENTIERE",45.31956,5.809156,0,0,O38:SA:CTP6325,Europe/Paris,,O38, +O38:SP:6327,1,"LES COTTAVES",45.313919,5.775965,0,0,O38:SA:CTP6327,Europe/Paris,,O38, +O38:SP:6328,1,"LES COTTAVES",45.313847,5.775957,0,0,O38:SA:CTP6327,Europe/Paris,,O38, +O38:SP:6329,1,"ST HUGUES",45.323735,5.806408,0,0,O38:SA:CTP6329,Europe/Paris,,O38, +O38:SP:633,1,"ST MICHEL-EN-BEAUMONT",44.868186,5.899794,0,0,O38:SA:CTP632,Europe/Paris,,O38, +O38:SP:6330,1,"ST HUGUES",45.323634,5.806542,0,0,O38:SA:CTP6329,Europe/Paris,,O38, +O38:SP:6331,1,"LES COTES DU MOULIN",45.348496,5.784463,0,0,O38:SA:CTP6331,Europe/Paris,,O38, +O38:SP:6332,1,"LES COTES DU MOULIN",45.348068,5.785887,0,0,O38:SA:CTP6331,Europe/Paris,,O38, +O38:SP:6333,1,"ECOLE DE ST HUGUES",45.323044,5.806398,0,0,O38:SA:CTP6333,Europe/Paris,,O38, +O38:SP:6334,1,"ECOLE DE ST HUGUES",45.323004,5.806339,0,0,O38:SA:CTP6333,Europe/Paris,,O38, +O38:SP:6335,1,"LA CORRERIE",45.346633,5.793759,0,0,O38:SA:CTP6335,Europe/Paris,,O38, +O38:SP:6336,1,"LA CORRERIE",45.346707,5.794186,0,0,O38:SA:CTP6335,Europe/Paris,,O38, +O38:SP:6338,1,"LES COMBES",45.316303,5.784755,0,0,O38:SA:CTP6338,Europe/Paris,,O38, +O38:SP:6339,1,"PONT DES BARGETTES",45.332769,5.806344,0,0,O38:SA:CTP6339,Europe/Paris,,O38, +O38:SP:634,1,"STE LUCE",44.849861,5.911367,0,0,O38:SA:CTP634,Europe/Paris,,O38, +O38:SP:6340,1,"PONT DES BARGETTES",45.333103,5.806462,0,0,O38:SA:CTP6339,Europe/Paris,,O38, +O38:SP:6341,1,"CAMPING MARTINIERE",45.326537,5.797635,0,0,O38:SA:CTP6341,Europe/Paris,,O38, +O38:SP:6342,1,"CAMPING MARTINIERE",45.326569,5.797565,0,0,O38:SA:CTP6341,Europe/Paris,,O38, +O38:SP:6343,1,"GONTIERE",45.333581,5.811748,0,0,O38:SA:CTP6343,Europe/Paris,,O38, +O38:SP:6344,1,"GONTIERE",45.33357,5.811848,0,0,O38:SA:CTP6343,Europe/Paris,,O38, +O38:SP:6345,1,"LA PATASSIERE",45.346841,5.816917,0,0,O38:SA:CTP6345,Europe/Paris,,O38, +O38:SP:6346,1,"LA PATASSIERE",45.346867,5.816834,0,0,O38:SA:CTP6345,Europe/Paris,,O38, +O38:SP:6347,1,"MOLLARD-BELLET",45.335865,5.81369,0,0,O38:SA:CTP6347,Europe/Paris,,O38, +O38:SP:6348,1,"MOLLARD-BELLET",45.335841,5.813787,0,0,O38:SA:CTP6347,Europe/Paris,,O38, +O38:SP:6349,1,"ROUTE PERQUELIN",45.341032,5.818194,0,0,O38:SA:CTP6349,Europe/Paris,,O38, +O38:SP:635,1,"STE LUCE",44.849805,5.911304,0,0,O38:SA:CTP634,Europe/Paris,,O38, +O38:SP:6350,1,"ROUTE PERQUELIN",45.340973,5.818221,0,0,O38:SA:CTP6349,Europe/Paris,,O38, +O38:SP:6352,1,"LA PAJONNIERE",45.354516,5.823866,0,0,O38:SA:CTP6352,Europe/Paris,,O38, +O38:SP:6353,1,"CABINET MEDICAL",45.339933,5.810416,0,0,O38:SA:CTP6353,Europe/Paris,,O38, +O38:SP:6354,1,"CABINET MEDICAL",45.340069,5.810539,0,0,O38:SA:CTP6353,Europe/Paris,,O38, +O38:SP:6358,1,"PLAN DE VILLE",45.342472,5.813841,0,0,O38:SA:CTP6358,Europe/Paris,,O38, +O38:SP:6359,1,"LA COCHE",45.350767,5.819456,0,0,O38:SA:CTP6359,Europe/Paris,,O38, +O38:SP:6360,1,"LA COCHE",45.350758,5.819557,0,0,O38:SA:CTP6359,Europe/Paris,,O38, +O38:SP:6361,1,"LA MOLLARIERE",45.328257,5.810281,0,0,O38:SA:CTP6361,Europe/Paris,,O38, +O38:SP:6362,1,"LA MOLLARIERE",45.328273,5.810181,0,0,O38:SA:CTP6361,Europe/Paris,,O38, +O38:SP:6364,1,"BUISSONNAY",45.310548,5.917341,0,0,OGE:SA:CTP6365,Europe/Paris,,O38, +O38:SP:6366,1,"BUISSONNAY",45.310398,5.917311,0,0,OGE:SA:CTP6365,Europe/Paris,,O38, +O38:SP:6379,1,"INSTITUT",45.327159,5.93472,0,0,O38:SA:CTP6379,Europe/Paris,,O38, +O38:SP:638,1,"LE VILLARD",44.840421,5.923821,0,0,O38:SA:CTP638,Europe/Paris,,O38, +O38:SP:6381,1,"INSTITUT",45.327153,5.934766,0,0,O38:SA:CTP6379,Europe/Paris,,O38, +O38:SP:6383,1,"LES VIROILLES",45.326643,5.899982,0,0,OGE:SA:CTP6384,Europe/Paris,,O38, +O38:SP:6385,1,"LES VIROILLES",45.326713,5.899968,0,0,OGE:SA:CTP6384,Europe/Paris,,O38, +O38:SP:639,1,"LE VILLARD",44.840398,5.923726,0,0,O38:SA:CTP638,Europe/Paris,,O38, +O38:SP:6391,1,"HAMEAU ST MICHEL",45.35359,5.917981,0,0,OGE:SA:CTP6390,Europe/Paris,,O38, +O38:SP:6393,1,"HAMEAU ST MICHEL",45.353564,5.918006,0,0,OGE:SA:CTP6390,Europe/Paris,,O38, +O38:SP:6395,1,"LE PRAYER",45.324882,5.897475,0,0,OGE:SA:CTP6394,Europe/Paris,,O38, +O38:SP:6397,1,"LE PRAYER",45.324869,5.897518,0,0,OGE:SA:CTP6394,Europe/Paris,,O38, +O38:SP:6399,1,"LE TERRAIL",45.342287,5.905248,0,0,O38:SA:CTP6399,Europe/Paris,,O38, +O38:SP:6401,1,"LE TERRAIL",45.342277,5.905326,0,0,O38:SA:CTP6399,Europe/Paris,,O38, +O38:SP:6403,1,"LE COMBET",45.346854,5.908719,0,0,O38:SA:CTP6403,Europe/Paris,,O38, +O38:SP:6405,1,"LE COMBET",45.346799,5.908707,0,0,O38:SA:CTP6403,Europe/Paris,,O38, +O38:SP:6409,1,"LA BATIE",45.343803,5.905503,0,0,OGE:SA:CTP6408,Europe/Paris,,O38, +O38:SP:6411,1,"LA BATIE",45.343777,5.905541,0,0,OGE:SA:CTP6408,Europe/Paris,,O38, +O38:SP:6413,1,"LES PELLOUX",45.329784,5.903322,0,0,OGE:SA:CTP6412,Europe/Paris,,O38, +O38:SP:6415,1,"LES PELLOUX",45.329798,5.90325,0,0,OGE:SA:CTP6412,Europe/Paris,,O38, +O38:SP:6417,1,"LES CHATAINS",45.319057,5.889874,0,0,O38:SA:CTP6417,Europe/Paris,,O38, +O38:SP:6419,1,"LES CHATAINS",45.319025,5.889863,0,0,O38:SA:CTP6417,Europe/Paris,,O38, +O38:SP:6421,1,"LA CROIX DES EYRAUDS",45.312515,5.88743,0,0,OGE:SA:CTP6420,Europe/Paris,,O38, +O38:SP:6423,1,"LA CROIX DES EYRAUDS",45.312514,5.887508,0,0,OGE:SA:CTP6420,Europe/Paris,,O38, +O38:SP:6425,1,"LA MURE",45.318617,5.926137,0,0,O38:SA:CTP6425,Europe/Paris,,O38, +O38:SP:6427,1,"LA MURE",45.31884,5.926321,0,0,O38:SA:CTP6425,Europe/Paris,,O38, +O38:SP:6429,1,"LE CARRE",45.314701,5.923677,0,0,OGE:SA:CTP6428,Europe/Paris,,O38, +O38:SP:6431,1,"LE CARRE",45.314826,5.923638,0,0,OGE:SA:CTP6428,Europe/Paris,,O38, +O38:SP:6432,1,"MAIRIE",45.322865,5.93024,0,0,OGE:SA:CTP6433,Europe/Paris,,O38, +O38:SP:6434,1,"MAIRIE",45.322852,5.930147,0,0,OGE:SA:CTP6433,Europe/Paris,,O38, +O38:SP:6436,1,"LA DIAT",45.335635,5.902249,0,0,OGE:SA:CTP6437,Europe/Paris,,O38, +O38:SP:6438,1,"LA DIAT",45.334935,5.902559,0,0,OGE:SA:CTP6437,Europe/Paris,,O38, +O38:SP:6440,1,"ECOLE LES GANDINS",45.308619,5.884586,0,0,O38:SA:CTP6440,Europe/Paris,,O38, +O38:SP:6442,1,"ECOLE LES GANDINS",45.307991,5.883468,0,0,O38:SA:CTP6440,Europe/Paris,,O38, +O38:SP:6444,1,"LES VIALS",45.315135,5.888169,0,0,OGE:SA:CTP6445,Europe/Paris,,O38, +O38:SP:6446,1,"LES VIALS",45.315147,5.888131,0,0,OGE:SA:CTP6445,Europe/Paris,,O38, +O38:SP:6448,1,"LES GUILLOTS",45.338657,5.903027,0,0,O38:SA:CTP6448,Europe/Paris,,O38, +O38:SP:6450,1,"LES GUILLOTS",45.338663,5.902942,0,0,O38:SA:CTP6448,Europe/Paris,,O38, +O38:SP:6452,1,"ECOLE DES GAUDES",45.309051,5.885638,0,0,O38:SA:CTP6452,Europe/Paris,,O38, +O38:SP:6454,1,"ECOLE DES GAUDES",45.309166,5.886153,0,0,O38:SA:CTP6452,Europe/Paris,,O38, +O38:SP:6456,1,"LES MASSARDS",45.316973,5.888227,0,0,O38:SA:CTP6456,Europe/Paris,,O38, +O38:SP:6458,1,"LES MASSARDS",45.316964,5.888281,0,0,O38:SA:CTP6456,Europe/Paris,,O38, +O38:SP:6460,1,"LES GAUDES (VILLAGE)",45.309979,5.887351,0,0,OGE:SA:CTP6461,Europe/Paris,,O38, +O38:SP:6462,1,"LES GAUDES (VILLAGE)",45.310022,5.887269,0,0,OGE:SA:CTP6461,Europe/Paris,,O38, +O38:SP:6464,1,"LA FRETTE",45.338768,5.942103,0,0,OGE:SA:CTP6465,Europe/Paris,,O38, +O38:SP:6466,1,"LA FRETTE",45.338678,5.941965,0,0,OGE:SA:CTP6465,Europe/Paris,,O38, +O38:SP:648,1,"SANCTUAIRE",44.858849,5.976992,0,0,O38:SA:CTP648,Europe/Paris,,O38, +O38:SP:6484,1,"LA GARE",45.342113,5.974355,0,0,O38:SA:CTP6484,Europe/Paris,,O38, +O38:SP:6486,1,"LA GARE",45.342113,5.974262,0,0,O38:SA:CTP6484,Europe/Paris,,O38, +O38:SP:649,1,"SANCTUAIRE",44.858806,5.976989,0,0,O38:SA:CTP648,Europe/Paris,,O38, +O38:SP:6493,1,"LA CONCHE",45.351816,5.947203,0,0,O38:SA:CTP6493,Europe/Paris,,O38, +O38:SP:6495,1,"LA CONCHE",45.351894,5.947321,0,0,O38:SA:CTP6493,Europe/Paris,,O38, +O38:SP:6497,1,"VILLARD BOZON",45.332378,5.971425,0,0,OGE:SA:CTP6498,Europe/Paris,,O38, +O38:SP:6499,1,"VILLARD BOZON",45.332431,5.971362,0,0,OGE:SA:CTP6498,Europe/Paris,,O38, +O38:SP:650,1,"EGLISE",44.841703,5.974934,0,0,O38:SA:CTP650,Europe/Paris,,O38, +O38:SP:6501,1,"LE COTTEN",45.31112,5.960571,0,0,O38:SA:CTP6501,Europe/Paris,,O38, +O38:SP:6503,1,"LE COTTEN",45.311349,5.960679,0,0,O38:SA:CTP6501,Europe/Paris,,O38, +O38:SP:6509,1,"GRANDES TERRES",45.30748,5.95702,0,0,OGE:SA:CTP6510,Europe/Paris,,O38, +O38:SP:651,1,"EGLISE",44.841678,5.975029,0,0,O38:SA:CTP650,Europe/Paris,,O38, +O38:SP:6511,1,"GRANDES TERRES",45.307292,5.956927,0,0,OGE:SA:CTP6510,Europe/Paris,,O38, +O38:SP:652,1,"LE VILLAGE",44.902254,5.567514,0,0,O38:SA:CTP652,Europe/Paris,,O38, +O38:SP:6521,1,"LE CLOS DU CEDRE",45.312304,5.961687,0,0,O38:SA:CTP6521,Europe/Paris,,O38, +O38:SP:6523,1,"LE CLOS DU CEDRE",45.312301,5.961596,0,0,O38:SA:CTP6521,Europe/Paris,,O38, +O38:SP:6529,1,"COLLEGE-RD.523",45.337861,5.974998,0,0,OGE:SA:CTP6530,Europe/Paris,,O38, +O38:SP:653,1,"LE VILLAGE",44.90232,5.567477,0,0,O38:SA:CTP652,Europe/Paris,,O38, +O38:SP:6531,1,"COLLEGE-RD.523",45.337966,5.975216,0,0,OGE:SA:CTP6530,Europe/Paris,,O38, +O38:SP:654,1,"ABRIBUS",44.89775,5.554428,0,0,O38:SA:CTP654,Europe/Paris,,O38, +O38:SP:655,1,"ABRIBUS",44.897749,5.554426,0,0,O38:SA:CTP654,Europe/Paris,,O38, +O38:SP:656,1,"COLLEGE-ECOLES",44.915646,5.630567,0,0,O38:SA:CTP656,Europe/Paris,,O38, +O38:SP:657,1,"COLLEGE-ECOLES",44.915577,5.630592,0,0,O38:SA:CTP656,Europe/Paris,,O38, +O38:SP:6578,1,"LES GRENOUILLERES",45.427788,4.808487,0,0,O38:SA:CTP6578,Europe/Paris,,O38, +O38:SP:6579,1,"LES GRENOUILLERES",45.427825,4.808533,0,0,O38:SA:CTP6578,Europe/Paris,,O38, +O38:SP:658,1,"MAISON MEDICALE MONESTIER",44.92072,5.636365,0,0,O38:SA:CTP658,Europe/Paris,,O38, +O38:SP:6580,1,"MAIRIE",45.41435,4.790806,0,0,O38:SA:CTP6580,Europe/Paris,,O38, +O38:SP:6581,1,"MAIRIE",45.41424,4.790908,0,0,O38:SA:CTP6580,Europe/Paris,,O38, +O38:SP:6582,1,"CHUZY",45.415976,4.777728,0,0,O38:SA:CTP6582,Europe/Paris,,O38, +O38:SP:6583,1,"CHUZY",45.415621,4.778103,0,0,O38:SA:CTP6582,Europe/Paris,,O38, +O38:SP:6584,1,"VAUVILLON",45.4187,4.793641,0,0,O38:SA:CTP6584,Europe/Paris,,O38, +O38:SP:6585,1,"VAUVILLON",45.418638,4.793566,0,0,O38:SA:CTP6584,Europe/Paris,,O38, +O38:SP:6586,1,"GRANGE BASSE",45.413451,4.787413,0,0,O38:SA:CTP6586,Europe/Paris,,O38, +O38:SP:6587,1,"GRANGE BASSE",45.41331,4.787397,0,0,O38:SA:CTP6586,Europe/Paris,,O38, +O38:SP:6588,1,"LES LITTES",45.425141,4.771723,0,0,O38:SA:CTP6588,Europe/Paris,,O38, +O38:SP:6589,1,"LES LITTES",45.425164,4.77182,0,0,O38:SA:CTP6588,Europe/Paris,,O38, +O38:SP:659,1,"MAISON MEDICALE MONESTIER",44.921585,5.636584,0,0,O38:SA:CTP658,Europe/Paris,,O38, +O38:SP:6590,1,"VARAMBON",45.428506,4.771277,0,0,O38:SA:CTP6590,Europe/Paris,,O38, +O38:SP:6591,1,"VARAMBON",45.428512,4.771379,0,0,O38:SA:CTP6590,Europe/Paris,,O38, +O38:SP:6592,1,"LE COLOMBIER",45.39652,4.786223,0,0,O38:SA:CTP6592,Europe/Paris,,O38, +O38:SP:6593,1,"LE COLOMBIER",45.396452,4.78619,0,0,O38:SA:CTP6592,Europe/Paris,,O38, +O38:SP:6596,1,"PTT",45.397562,4.774291,0,0,O38:SA:CTP6596,Europe/Paris,,O38, +O38:SP:6597,1,"PTT",45.39751,4.774221,0,0,O38:SA:CTP6596,Europe/Paris,,O38, +O38:SP:6598,1,"ETS REGUILLON",45.40486,4.771468,0,0,O38:SA:CTP6598,Europe/Paris,,O38, +O38:SP:6599,1,"ETS REGUILLON",45.404831,4.771374,0,0,O38:SA:CTP6598,Europe/Paris,,O38, +O38:SP:660,1,"LE FAU",44.894713,5.616897,0,0,O38:SA:CTP660,Europe/Paris,,O38, +O38:SP:6600,1,"LE MARECHAL",45.395674,4.790071,0,0,O38:SA:CTP6600,Europe/Paris,,O38, +O38:SP:6601,1,"LE MARECHAL",45.395633,4.790095,0,0,O38:SA:CTP6600,Europe/Paris,,O38, +O38:SP:6602,1,"SERPAILLE",45.39383,4.800905,0,0,O38:SA:CTP6602,Europe/Paris,,O38, +O38:SP:6603,1,"SERPAILLE",45.393896,4.80094,0,0,O38:SA:CTP6602,Europe/Paris,,O38, +O38:SP:6604,1,"LES PRAILLES",45.421937,4.7669,0,0,O38:SA:CTP6604,Europe/Paris,,O38, +O38:SP:6605,1,"LES PRAILLES",45.421931,4.766919,0,0,O38:SA:CTP6604,Europe/Paris,,O38, +O38:SP:6606,1,"LA RAINY",45.413372,4.796618,0,0,O38:SA:CTP6606,Europe/Paris,,O38, +O38:SP:6609,1,"ETS PARET",45.398869,4.808797,0,0,O38:SA:CTP6609,Europe/Paris,,O38, +O38:SP:661,1,"LE FAU",44.895461,5.616031,0,0,O38:SA:CTP660,Europe/Paris,,O38, +O38:SP:6610,1,"ETS PARET",45.398797,4.808794,0,0,O38:SA:CTP6609,Europe/Paris,,O38, +O38:SP:6611,1,"REVOLETS-ECOLES",45.422102,4.75837,0,0,O38:SA:CTP6611,Europe/Paris,,O38, +O38:SP:6612,1,"REVOLETS-ECOLES",45.422098,4.758348,0,0,O38:SA:CTP6611,Europe/Paris,,O38, +O38:SP:6616,1,"COLLEGE FREDERIC MISTRAL",45.39716,4.77986,0,0,O38:SA:CTP6616,Europe/Paris,,O38, +O38:SP:6617,1,"COLLEGE FREDERIC MISTRAL",45.39721,4.77959,0,0,O38:SA:CTP6616,Europe/Paris,,O38, +O38:SP:6618,1,"PLATEAU DE LOUZE",45.397908,4.807854,0,0,O38:SA:CTP6618,Europe/Paris,,O38, +O38:SP:6619,1,"PLATEAU DE LOUZE",45.397928,4.807756,0,0,O38:SA:CTP6618,Europe/Paris,,O38, +O38:SP:662,1,"VILLAGE",44.929568,5.627999,0,0,O38:SA:CTP662,Europe/Paris,,O38, +O38:SP:6620,1,"LES PYRAMIDES",45.390504,4.776502,0,0,O38:SA:CTP6620,Europe/Paris,,O38, +O38:SP:6621,1,"LES PYRAMIDES",45.390528,4.776599,0,0,O38:SA:CTP6620,Europe/Paris,,O38, +O38:SP:6622,1,"CAFE MARIE-FRANCE",45.401602,4.772693,0,0,O38:SA:CTP6622,Europe/Paris,,O38, +O38:SP:6623,1,"CAFE MARIE-FRANCE",45.401579,4.772791,0,0,O38:SA:CTP6622,Europe/Paris,,O38, +O38:SP:6624,1,"ECOLES PORT VIEUX",45.38537,4.778468,0,0,O38:SA:CTP6624,Europe/Paris,,O38, +O38:SP:6625,1,"ECOLES PORT VIEUX",45.385396,4.778344,0,0,O38:SA:CTP6624,Europe/Paris,,O38, +O38:SP:6626,1,"MONTEE DE LOUZE",45.385361,4.801314,0,0,O38:SA:CTP6626,Europe/Paris,,O38, +O38:SP:6627,1,"MONTEE DE LOUZE",45.38539,4.801221,0,0,O38:SA:CTP6626,Europe/Paris,,O38, +O38:SP:6628,1,"SURVIFRAIS-RENAULT",45.392706,4.781353,0,0,O38:SA:CTP6628,Europe/Paris,,O38, +O38:SP:6629,1,"SURVIFRAIS-RENAULT",45.392707,4.781398,0,0,O38:SA:CTP6628,Europe/Paris,,O38, +O38:SP:663,1,"VILLAGE",44.929635,5.628039,0,0,O38:SA:CTP662,Europe/Paris,,O38, +O38:SP:6630,1,"COLOMBIER ABRI D4",45.396906,4.780581,0,0,O38:SA:CTP6630,Europe/Paris,,O38, +O38:SP:6631,1,"COLOMBIER ABRI D4",45.397241,4.780836,0,0,O38:SA:CTP6630,Europe/Paris,,O38, +O38:SP:6632,1,"LOT.LES OLIVIERS",45.417062,4.76266,0,0,O38:SA:CTP6632,Europe/Paris,,O38, +O38:SP:6634,1,"PONT DE LA VAREZE",45.424499,4.759343,0,0,O38:SA:CTP6634,Europe/Paris,,O38, +O38:SP:6636,1,"RANCH DU MARAIS",45.4144,4.765243,0,0,O38:SA:CTP6636,Europe/Paris,,O38, +O38:SP:6637,1,"RANCH DU MARAIS",45.414394,4.765224,0,0,O38:SA:CTP6636,Europe/Paris,,O38, +O38:SP:6638,1,"LES CRAIES",45.407292,4.769913,0,0,O38:SA:CTP6638,Europe/Paris,,O38, +O38:SP:6639,1,"LES CRAIES",45.407263,4.769818,0,0,O38:SA:CTP6638,Europe/Paris,,O38, +O38:SP:664,1,"GRISAIL",44.93831,5.609308,0,0,O38:SA:CTP664,Europe/Paris,,O38, +O38:SP:6640,1,"GLAY",45.430502,4.78657,0,0,O38:SA:CTP6640,Europe/Paris,,O38, +O38:SP:6641,1,"GLAY",45.430564,4.786517,0,0,O38:SA:CTP6640,Europe/Paris,,O38, +O38:SP:6642,1,"PARC DE VARAMBON",45.429685,4.776236,0,0,O38:SA:CTP6642,Europe/Paris,,O38, +O38:SP:6643,1,"PARC DE VARAMBON",45.429753,4.776204,0,0,O38:SA:CTP6642,Europe/Paris,,O38, +O38:SP:6647,1,"ECOLE D'ASSIEU",45.406789,4.867318,0,0,O38:SA:CTP6647,Europe/Paris,,O38, +O38:SP:6649,1,"ECOLE D'ASSIEU",45.406721,4.867349,0,0,O38:SA:CTP6647,Europe/Paris,,O38, +O38:SP:665,1,"GRISAIL",44.938281,5.609215,0,0,O38:SA:CTP664,Europe/Paris,,O38, +O38:SP:6651,1,"LES BRUYERES",45.40636,4.857186,0,0,OIV:SA:CTP6650,Europe/Paris,,O38, +O38:SP:6653,1,"LES BRUYERES",45.406322,4.857213,0,0,OIV:SA:CTP6650,Europe/Paris,,O38, +O38:SP:6655,1,"BASCULE",45.406326,4.86253,0,0,OIV:SA:CTP6654,Europe/Paris,,O38, +O38:SP:6657,1,"BASCULE",45.406374,4.862453,0,0,OIV:SA:CTP6654,Europe/Paris,,O38, +O38:SP:6658,1,"TROQUINO",45.417624,4.815788,0,0,O38:SA:CTP6658,Europe/Paris,,O38, +O38:SP:6659,1,"TROQUINO",45.417757,4.815721,0,0,O38:SA:CTP6658,Europe/Paris,,O38, +O38:SP:666,1,"LE FRUT",44.931105,5.623547,0,0,O38:SA:CTP666,Europe/Paris,,O38, +O38:SP:6660,1,"CABINE",45.429451,4.836757,0,0,O38:SA:CTP6660,Europe/Paris,,O38, +O38:SP:6661,1,"CABINE",45.429522,4.836761,0,0,O38:SA:CTP6660,Europe/Paris,,O38, +O38:SP:6662,1,"GARAGE RENAULT",45.420471,4.816998,0,0,O38:SA:CTP6662,Europe/Paris,,O38, +O38:SP:6663,1,"GARAGE RENAULT",45.420676,4.816934,0,0,O38:SA:CTP6662,Europe/Paris,,O38, +O38:SP:6664,1,"LE CLOS(RTE CHEYSSIEU)",45.431151,4.819823,0,0,O38:SA:CTP6664,Europe/Paris,,O38, +O38:SP:6665,1,"LE CLOS(RTE CHEYSSIEU)",45.430979,4.820249,0,0,O38:SA:CTP6664,Europe/Paris,,O38, +O38:SP:667,1,"LE FRUT",44.93104,5.623504,0,0,O38:SA:CTP666,Europe/Paris,,O38, +O38:SP:6670,1,"BESON",45.41673,4.836374,0,0,O38:SA:CTP6670,Europe/Paris,,O38, +O38:SP:6671,1,"LE CUILLERY",45.419218,4.842347,0,0,O38:SA:CTP6671,Europe/Paris,,O38, +O38:SP:6672,1,"LE CUILLERY",45.419225,4.842313,0,0,O38:SA:CTP6671,Europe/Paris,,O38, +O38:SP:6675,1,"HOTEL DES NATIONS",45.412807,4.813723,0,0,O38:SA:CTP6675,Europe/Paris,,O38, +O38:SP:6676,1,"HOTEL DES NATIONS",45.412717,4.813833,0,0,O38:SA:CTP6675,Europe/Paris,,O38, +O38:SP:6678,1,"LES MEUILLES",45.412984,4.841167,0,0,O38:SA:CTP6678,Europe/Paris,,O38, +O38:SP:668,1,"GARAGE DES ALPES",44.926162,5.63854,0,0,O38:SA:CTP668,Europe/Paris,,O38, +O38:SP:6680,1,"LES MEUILLES",45.413052,4.841135,0,0,O38:SA:CTP6678,Europe/Paris,,O38, +O38:SP:6681,1,"ROUTE DE VIENNE(RD 131C)",45.394125,4.809095,0,0,O38:SA:CTP6681,Europe/Paris,,O38, +O38:SP:6682,1,"ROUTE DE VIENNE(RD 131C)",45.394244,4.809163,0,0,O38:SA:CTP6681,Europe/Paris,,O38, +O38:SP:6683,1,"CHAMP GIRAUD",45.393083,4.862371,0,0,O38:SA:CTP6683,Europe/Paris,,O38, +O38:SP:6684,1,"CHAMP GIRAUD",45.393111,4.862314,0,0,O38:SA:CTP6683,Europe/Paris,,O38, +O38:SP:6685,1,"LE SILO",45.387886,4.86546,0,0,O38:SA:CTP6685,Europe/Paris,,O38, +O38:SP:6686,1,"LE SILO",45.387618,4.8653,0,0,O38:SA:CTP6685,Europe/Paris,,O38, +O38:SP:6687,1,"CHEMIN DES CROZES",45.389509,4.809569,0,0,O38:SA:CTP6687,Europe/Paris,,O38, +O38:SP:6688,1,"ROCHE PINGOLET",45.38522,4.868339,0,0,O38:SA:CTP6688,Europe/Paris,,O38, +O38:SP:6689,1,"ROCHE PINGOLET",45.385067,4.869733,0,0,O38:SA:CTP6688,Europe/Paris,,O38, +O38:SP:669,1,"GARAGE DES ALPES",44.926135,5.638451,0,0,O38:SA:CTP668,Europe/Paris,,O38, +O38:SP:6690,1,"LE RESERVOIR",45.386595,4.824058,0,0,O38:SA:CTP6690,Europe/Paris,,O38, +O38:SP:6691,1,"LE RESERVOIR",45.386594,4.824039,0,0,O38:SA:CTP6690,Europe/Paris,,O38, +O38:SP:6692,1,"LA CROIX",45.427895,4.878042,0,0,O38:SA:CTP6692,Europe/Paris,,O38, +O38:SP:6693,1,"LA CROIX",45.427939,4.878123,0,0,O38:SA:CTP6692,Europe/Paris,,O38, +O38:SP:6694,1,"LE LAC",45.389,4.850342,0,0,O38:SA:CTP6694,Europe/Paris,,O38, +O38:SP:6695,1,"LE LAC",45.388981,4.850408,0,0,O38:SA:CTP6694,Europe/Paris,,O38, +O38:SP:6696,1,"GRANGE NEUVE",45.396787,4.861464,0,0,O38:SA:CTP6696,Europe/Paris,,O38, +O38:SP:6697,1,"GRANGE NEUVE",45.396819,4.861394,0,0,O38:SA:CTP6696,Europe/Paris,,O38, +O38:SP:670,1,"LA POSTE",44.915567,5.633944,0,0,O38:SA:CTP670,Europe/Paris,,O38, +O38:SP:6700,1,"LES MURIERES",45.395017,4.861626,0,0,O38:SA:CTP6700,Europe/Paris,,O38, +O38:SP:6701,1,"LES MURIERES",45.394589,4.861815,0,0,O38:SA:CTP6700,Europe/Paris,,O38, +O38:SP:6704,1,"AU GOURAY",45.398007,4.920968,0,0,O38:SA:CTP6704,Europe/Paris,,O38, +O38:SP:6705,1,"AU GOURAY",45.39806,4.920899,0,0,O38:SA:CTP6704,Europe/Paris,,O38, +O38:SP:6706,1,"MAIRIE",45.39092,4.908937,0,0,O38:SA:CTP6706,Europe/Paris,,O38, +O38:SP:6707,1,"MAIRIE",45.390979,4.908878,0,0,O38:SA:CTP6706,Europe/Paris,,O38, +O38:SP:6708,1,"ECOLE DU HAUT",45.395141,4.906843,0,0,O38:SA:CTP6708,Europe/Paris,,O38, +O38:SP:6709,1,"ECOLE DU HAUT",45.395157,4.906942,0,0,O38:SA:CTP6708,Europe/Paris,,O38, +O38:SP:671,1,"LA POSTE",44.91649,5.634554,0,0,O38:SA:CTP670,Europe/Paris,,O38, +O38:SP:6711,1,"LE PRE COCARD",45.405365,4.941698,0,0,O38:SA:CTP6711,Europe/Paris,,O38, +O38:SP:6712,1,"RTE.COMBONNIERES",45.389368,4.902963,0,0,O38:SA:CTP6712,Europe/Paris,,O38, +O38:SP:6713,1,"RTE.COMBONNIERES",45.389398,4.903347,0,0,O38:SA:CTP6712,Europe/Paris,,O38, +O38:SP:672,1,"ROUAC",44.920728,5.689548,0,0,O38:SA:CTP672,Europe/Paris,,O38, +O38:SP:6726,1,"LE COUCHOUD",45.393523,4.912232,0,0,O38:SA:CTP6726,Europe/Paris,,O38, +O38:SP:6727,1,"LE COUCHOUD",45.393465,4.91208,0,0,O38:SA:CTP6726,Europe/Paris,,O38, +O38:SP:6729,1,"GERBEY",45.399303,4.923416,0,0,O38:SA:CTP6729,Europe/Paris,,O38, +O38:SP:673,1,"ROUAC",44.9209,5.689546,0,0,O38:SA:CTP672,Europe/Paris,,O38, +O38:SP:6730,1,"LA COMBE DELAY",45.424069,4.885572,0,0,O38:SA:CTP6730,Europe/Paris,,O38, +O38:SP:6731,1,"LA COMBE DELAY",45.424035,4.885378,0,0,O38:SA:CTP6730,Europe/Paris,,O38, +O38:SP:6732,1,"GARAGE MARY",45.428325,4.92828,0,0,O38:SA:CTP6732,Europe/Paris,,O38, +O38:SP:6733,1,"GARAGE MARY",45.428288,4.928066,0,0,O38:SA:CTP6732,Europe/Paris,,O38, +O38:SP:6734,1,"LE DORIER D134",45.387396,4.889807,0,0,O38:SA:CTP6734,Europe/Paris,,O38, +O38:SP:6735,1,"LE DORIER D134",45.38746,4.889758,0,0,O38:SA:CTP6734,Europe/Paris,,O38, +O38:SP:6737,1,"ECOLE MATERNELLE",45.386179,4.884025,0,0,O38:SA:CTP6737,Europe/Paris,,O38, +O38:SP:6738,1,"MAIRIE",45.386273,4.880427,0,0,O38:SA:CTP6738,Europe/Paris,,O38, +O38:SP:6739,1,"MAIRIE",45.386203,4.880449,0,0,O38:SA:CTP6738,Europe/Paris,,O38, +O38:SP:6740,1,"MAISON MABILON",45.386944,4.893965,0,0,O38:SA:CTP6740,Europe/Paris,,O38, +O38:SP:6741,1,"MAISON MABILON",45.387015,4.893979,0,0,O38:SA:CTP6740,Europe/Paris,,O38, +O38:SP:6742,1,"BIBLIOTHEQUE",45.426863,4.880247,0,0,O38:SA:CTP6742,Europe/Paris,,O38, +O38:SP:6743,1,"BIBLIOTHEQUE",45.427057,4.88003,0,0,O38:SA:CTP6742,Europe/Paris,,O38, +O38:SP:6744,1,"ST ALBAN-PLACE",45.420647,4.901332,0,0,O38:SA:CTP6744,Europe/Paris,,O38, +O38:SP:6745,1,"ST ALBAN-PLACE",45.420689,4.901064,0,0,O38:SA:CTP6744,Europe/Paris,,O38, +O38:SP:6746,1,"CHEMIN CHAMBERON",45.422392,4.908655,0,0,O38:SA:CTP6746,Europe/Paris,,O38, +O38:SP:6747,1,"CHEMIN CHAMBERON",45.422469,4.9088,0,0,O38:SA:CTP6746,Europe/Paris,,O38, +O38:SP:675,1,"LE TRACOL",44.920384,5.656216,0,0,O38:SA:CTP675,Europe/Paris,,O38, +O38:SP:6750,1,"ROUTE CHALENCEY",45.425453,4.921626,0,0,O38:SA:CTP6750,Europe/Paris,,O38, +O38:SP:6751,1,"ROUTE CHALENCEY",45.425427,4.921427,0,0,O38:SA:CTP6750,Europe/Paris,,O38, +O38:SP:6752,1,"CHEMIN DE LA MAYENCONNE",45.426831,4.924871,0,0,O38:SA:CTP6752,Europe/Paris,,O38, +O38:SP:6753,1,"CHEMIN DE LA MAYENCONNE",45.426835,4.924764,0,0,O38:SA:CTP6752,Europe/Paris,,O38, +O38:SP:6754,1,"MAIRIE",45.421871,4.906372,0,0,O38:SA:CTP6754,Europe/Paris,,O38, +O38:SP:6755,1,"MAIRIE",45.421744,4.906095,0,0,O38:SA:CTP6754,Europe/Paris,,O38, +O38:SP:6756,1,"LES CHARMILLES",45.420962,4.897062,0,0,O38:SA:CTP6756,Europe/Paris,,O38, +O38:SP:6757,1,"LES CHARMILLES",45.421036,4.897059,0,0,O38:SA:CTP6756,Europe/Paris,,O38, +O38:SP:6758,1,"LES GAUTHIERS",45.381355,4.970821,0,0,O38:SA:CTP6758,Europe/Paris,,O38, +O38:SP:6759,1,"LES GAUTHIERS",45.381452,4.971002,0,0,O38:SA:CTP6758,Europe/Paris,,O38, +O38:SP:676,1,"MARCIEU",44.914151,5.68897,0,0,O38:SA:CTP676,Europe/Paris,,O38, +O38:SP:6760,1,"CHEZ MILLAT",45.382718,4.977109,0,0,O38:SA:CTP6760,Europe/Paris,,O38, +O38:SP:6761,1,"CHEZ MILLAT",45.382662,4.977068,0,0,O38:SA:CTP6760,Europe/Paris,,O38, +O38:SP:6762,1,"LE BAS",45.383945,4.992532,0,0,O38:SA:CTP6762,Europe/Paris,,O38, +O38:SP:6763,1,"LE BAS",45.383937,4.992634,0,0,O38:SA:CTP6762,Europe/Paris,,O38, +O38:SP:6764,1,"MIANCON",45.386704,4.944868,0,0,O38:SA:CTP6764,Europe/Paris,,O38, +O38:SP:6765,1,"MIANCON",45.386724,4.94477,0,0,O38:SA:CTP6764,Europe/Paris,,O38, +O38:SP:6766,1,"MIANCON LE BAS",45.38254,4.944631,0,0,O38:SA:CTP6766,Europe/Paris,,O38, +O38:SP:6767,1,"MIANCON LE BAS",45.38261,4.94465,0,0,O38:SA:CTP6766,Europe/Paris,,O38, +O38:SP:6768,1,"CARREF.D134A",45.38264,4.948803,0,0,O38:SA:CTP6768,Europe/Paris,,O38, +O38:SP:6769,1,"CARREF.D134A",45.382568,4.948808,0,0,O38:SA:CTP6768,Europe/Paris,,O38, +O38:SP:677,1,"MARCIEU",44.914154,5.688869,0,0,O38:SA:CTP676,Europe/Paris,,O38, +O38:SP:6770,1,"CHAMPON",45.380993,4.954552,0,0,O38:SA:CTP6770,Europe/Paris,,O38, +O38:SP:6771,1,"ST SULPICE-ABRI",45.419255,4.957145,0,0,O38:SA:CTP6771,Europe/Paris,,O38, +O38:SP:6772,1,"ST SULPICE-ABRI",45.419326,4.957164,0,0,O38:SA:CTP6771,Europe/Paris,,O38, +O38:SP:6773,1,"CHEZ THAIZE",45.383325,4.981748,0,0,O38:SA:CTP6773,Europe/Paris,,O38, +O38:SP:6774,1,"CHEZ THAIZE",45.383257,4.98178,0,0,O38:SA:CTP6773,Europe/Paris,,O38, +O38:SP:6775,1,"CARREF.BRUYERES",45.389004,4.955253,0,0,O38:SA:CTP6775,Europe/Paris,,O38, +O38:SP:6776,1,"CARREF.BRUYERES",45.389073,4.955281,0,0,O38:SA:CTP6775,Europe/Paris,,O38, +O38:SP:6777,1,"CHEZ MARTIN",45.38586,4.988748,0,0,O38:SA:CTP6777,Europe/Paris,,O38, +O38:SP:6778,1,"CHEZ MARTIN",45.385808,4.988627,0,0,O38:SA:CTP6777,Europe/Paris,,O38, +O38:SP:6779,1,"MAISON CELARD",45.392449,4.945769,0,0,O38:SA:CTP6779,Europe/Paris,,O38, +O38:SP:678,1,"LES PRAS",44.915914,5.685131,0,0,O38:SA:CTP678,Europe/Paris,,O38, +O38:SP:6780,1,"MAISON CELARD",45.392413,4.945718,0,0,O38:SA:CTP6779,Europe/Paris,,O38, +O38:SP:6781,1,"LE PACA",45.417631,4.99074,0,0,O38:SA:CTP6781,Europe/Paris,,O38, +O38:SP:6782,1,"LE PACA",45.41758,4.990669,0,0,O38:SA:CTP6781,Europe/Paris,,O38, +O38:SP:6783,1,"MAISON CARRAZ",45.421557,4.978807,0,0,O38:SA:CTP6783,Europe/Paris,,O38, +O38:SP:6784,1,"MAISON CARRAZ",45.421627,4.978833,0,0,O38:SA:CTP6783,Europe/Paris,,O38, +O38:SP:6785,1,"LES MAINES",45.421734,4.977308,0,0,O38:SA:CTP6785,Europe/Paris,,O38, +O38:SP:6786,1,"LES MAINES",45.421793,4.977064,0,0,O38:SA:CTP6785,Europe/Paris,,O38, +O38:SP:6787,1,"LA PLACE",45.387524,4.989293,0,0,O38:SA:CTP6787,Europe/Paris,,O38, +O38:SP:6788,1,"LA PLACE",45.387503,4.989228,0,0,O38:SA:CTP6787,Europe/Paris,,O38, +O38:SP:6789,1,"LA FEYTA",45.419162,4.950384,0,0,O38:SA:CTP6789,Europe/Paris,,O38, +O38:SP:679,1,"LES PRAS",44.915869,5.685096,0,0,O38:SA:CTP678,Europe/Paris,,O38, +O38:SP:6790,1,"LA FEYTA",45.419012,4.950481,0,0,O38:SA:CTP6789,Europe/Paris,,O38, +O38:SP:6791,1,"LES CHEVROTS",45.417114,4.99585,0,0,O38:SA:CTP6791,Europe/Paris,,O38, +O38:SP:6792,1,"LES CHEVROTS",45.417187,4.995729,0,0,O38:SA:CTP6791,Europe/Paris,,O38, +O38:SP:6793,1,"CHATEAU D'EAU",45.41833,4.984022,0,0,O38:SA:CTP6793,Europe/Paris,,O38, +O38:SP:6794,1,"CHATEAU D'EAU",45.418333,4.983891,0,0,O38:SA:CTP6793,Europe/Paris,,O38, +O38:SP:6795,1,"SIBUZE",45.420754,4.982779,0,0,O38:SA:CTP6795,Europe/Paris,,O38, +O38:SP:6796,1,"SIBUZE",45.42078,4.982785,0,0,O38:SA:CTP6795,Europe/Paris,,O38, +O38:SP:6797,1,"LES VOGES",45.419881,4.971726,0,0,O38:SA:CTP6797,Europe/Paris,,O38, +O38:SP:6798,1,"LES VOGES",45.419824,4.971788,0,0,O38:SA:CTP6797,Europe/Paris,,O38, +O38:SP:6799,1,"LES ROBERTS",45.419226,4.962096,0,0,O38:SA:CTP6799,Europe/Paris,,O38, +O38:SP:6800,1,"LES ROBERTS",45.419296,4.962073,0,0,O38:SA:CTP6799,Europe/Paris,,O38, +O38:SP:6801,1,"MAISON-BROCHIER-SALOMON",45.383063,5.055274,0,0,O38:SA:CTP6801,Europe/Paris,,O38, +O38:SP:6802,1,"MAISON-BROCHIER-SALOMON",45.383097,5.055363,0,0,O38:SA:CTP6801,Europe/Paris,,O38, +O38:SP:6803,1,"BARBARIN",45.383728,5.042513,0,0,O38:SA:CTP6803,Europe/Paris,,O38, +O38:SP:6804,1,"BARBARIN",45.383683,5.042483,0,0,O38:SA:CTP6803,Europe/Paris,,O38, +O38:SP:6805,1,"LAVOIR",45.383914,5.036405,0,0,O38:SA:CTP6805,Europe/Paris,,O38, +O38:SP:6806,1,"LAVOIR",45.383856,5.03636,0,0,O38:SA:CTP6805,Europe/Paris,,O38, +O38:SP:6807,1,"CARREF.MACHON-BARDIN",45.385259,5.023976,0,0,O38:SA:CTP6807,Europe/Paris,,O38, +O38:SP:6808,1,"CARREF.MACHON-BARDIN",45.385929,5.023694,0,0,O38:SA:CTP6807,Europe/Paris,,O38, +O38:SP:6809,1,"ECOLE PRIMAIRE",45.380285,5.037486,0,0,O38:SA:CTP6809,Europe/Paris,,O38, +O38:SP:681,1,"PLACE",44.915161,5.657841,0,0,O38:SA:CTP681,Europe/Paris,,O38, +O38:SP:6810,1,"ECOLE PRIMAIRE",45.380218,5.037427,0,0,O38:SA:CTP6809,Europe/Paris,,O38, +O38:SP:6812,1,"MAISON COTTE",45.397902,5.056343,0,0,O38:SA:CTP6812,Europe/Paris,,O38, +O38:SP:6813,1,"L'EMBRANCHEMENT",45.37955,5.025111,0,0,O38:SA:CTP6813,Europe/Paris,,O38, +O38:SP:6814,1,"L'EMBRANCHEMENT",45.380344,5.024848,0,0,O38:SA:CTP6813,Europe/Paris,,O38, +O38:SP:6818,1,"MAIRIE",45.402171,5.029939,0,0,O38:SA:CTP6818,Europe/Paris,,O38, +O38:SP:6819,1,"ECOLE MAT-SALLE DES FETES",45.386821,5.063855,0,0,O38:SA:CTP6819,Europe/Paris,,O38, +O38:SP:682,1,"LES CHAMPS VILLAGE",44.903516,5.688736,0,0,O38:SA:CTP682,Europe/Paris,,O38, +O38:SP:6820,1,"ECOLE MAT-SALLE DES FETES",45.386877,5.064048,0,0,O38:SA:CTP6819,Europe/Paris,,O38, +O38:SP:6821,1,"CAR.MAISON BERNE",45.400809,5.068447,0,0,O38:SA:CTP6821,Europe/Paris,,O38, +O38:SP:6822,1,"CAR.MAISON BERNE",45.400749,5.068209,0,0,O38:SA:CTP6821,Europe/Paris,,O38, +O38:SP:6823,1,"LA CROIX",45.38753,5.076177,0,0,O38:SA:CTP6823,Europe/Paris,,O38, +O38:SP:6824,1,"LA CROIX",45.387503,5.076072,0,0,O38:SA:CTP6823,Europe/Paris,,O38, +O38:SP:6826,1,"STADE",45.379907,5.037508,0,0,O38:SA:CTP6826,Europe/Paris,,O38, +O38:SP:6827,1,"MAISON MARCHAND",45.381177,5.029668,0,0,O38:SA:CTP6827,Europe/Paris,,O38, +O38:SP:6828,1,"MAISON MARCHAND",45.381242,5.029626,0,0,O38:SA:CTP6827,Europe/Paris,,O38, +O38:SP:6829,1,"GUIERS-GRANGE NEUVE ABRI",45.381235,5.057524,0,0,O38:SA:CTP6829,Europe/Paris,,O38, +O38:SP:6830,1,"GUIERS-GRANGE NEUVE ABRI",45.381258,5.057621,0,0,O38:SA:CTP6829,Europe/Paris,,O38, +O38:SP:6831,1,"LA TOUR TELECOM",45.411389,5.016616,0,0,O38:SA:CTP6831,Europe/Paris,,O38, +O38:SP:6832,1,"LA TOUR TELECOM",45.411142,5.016909,0,0,O38:SA:CTP6831,Europe/Paris,,O38, +O38:SP:6833,1,"DESGRANGES",45.398053,5.023552,0,0,O38:SA:CTP6833,Europe/Paris,,O38, +O38:SP:6834,1,"DESGRANGES",45.397691,5.023496,0,0,O38:SA:CTP6833,Europe/Paris,,O38, +O38:SP:6835,1,"STADE",45.391124,5.03586,0,0,O38:SA:CTP6835,Europe/Paris,,O38, +O38:SP:6836,1,"STADE",45.391185,5.035806,0,0,O38:SA:CTP6835,Europe/Paris,,O38, +O38:SP:6837,1,"LA SICARDIERE",45.393993,5.123652,0,0,O38:SA:CTP6837,Europe/Paris,,O38, +O38:SP:6838,1,"LA SICARDIERE",45.394041,5.123576,0,0,O38:SA:CTP6837,Europe/Paris,,O38, +O38:SP:684,1,"LE VILLAGE",44.892523,5.763008,0,0,O38:SA:CTP684,Europe/Paris,,O38, +O38:SP:6840,1,"CHEMIN DE LA TUILIERE",45.410602,5.135459,0,0,O38:SA:CTP6840,Europe/Paris,,O38, +O38:SP:6841,1,"GRAND BOSSIEU RD.51",45.411848,5.144657,0,0,O38:SA:CTP6841,Europe/Paris,,O38, +O38:SP:6842,1,"GRAND BOSSIEU RD.51",45.411798,5.144439,0,0,O38:SA:CTP6841,Europe/Paris,,O38, +O38:SP:6843,1,"MAISON BALLERAND",45.41069,5.111693,0,0,O38:SA:CTP6843,Europe/Paris,,O38, +O38:SP:6844,1,"MAISON BALLERAND",45.410712,5.11179,0,0,O38:SA:CTP6843,Europe/Paris,,O38, +O38:SP:6845,1,"CROIST GRANDE BISSERA",45.402711,5.092579,0,0,O38:SA:CTP6845,Europe/Paris,,O38, +O38:SP:6846,1,"CROIST GRANDE BISSERA",45.402669,5.092504,0,0,O38:SA:CTP6845,Europe/Paris,,O38, +O38:SP:6847,1,"SUR CHARDON",45.402439,5.12926,0,0,O38:SA:CTP6847,Europe/Paris,,O38, +O38:SP:6848,1,"SUR CHARDON",45.402379,5.129312,0,0,O38:SA:CTP6847,Europe/Paris,,O38, +O38:SP:6849,1,"LES RIVAUX",45.387028,5.083835,0,0,O38:SA:CTP6849,Europe/Paris,,O38, +O38:SP:685,1,"SIMANE",44.89965,5.772152,0,0,O38:SA:CTP685,Europe/Paris,,O38, +O38:SP:6850,1,"LES RIVAUX",45.38707,5.083982,0,0,O38:SA:CTP6849,Europe/Paris,,O38, +O38:SP:6851,1,"LE JAYON",45.390128,5.120458,0,0,O38:SA:CTP6851,Europe/Paris,,O38, +O38:SP:6852,1,"LE JAYON",45.390224,5.120485,0,0,O38:SA:CTP6851,Europe/Paris,,O38, +O38:SP:6853,1,"POMMIER ECOLES",45.400371,5.118809,0,0,O38:SA:CTP6853,Europe/Paris,,O38, +O38:SP:6854,1,"POMMIER ECOLES",45.400349,5.118873,0,0,O38:SA:CTP6853,Europe/Paris,,O38, +O38:SP:6855,1,"DOMAINE DU VERNAY",45.401598,5.078277,0,0,O38:SA:CTP6855,Europe/Paris,,O38, +O38:SP:6856,1,"DOMAINE DU VERNAY",45.401527,5.078289,0,0,O38:SA:CTP6855,Europe/Paris,,O38, +O38:SP:6857,1,"CHANTEMERLE",45.415714,5.112919,0,0,O38:SA:CTP6857,Europe/Paris,,O38, +O38:SP:6858,1,"CHANTEMERLE",45.415743,5.112825,0,0,O38:SA:CTP6857,Europe/Paris,,O38, +O38:SP:6859,1,"LE BAS SCIERIE",45.386669,5.110997,0,0,O38:SA:CTP6859,Europe/Paris,,O38, +O38:SP:686,1,"SIMANE",44.899688,5.772067,0,0,O38:SA:CTP685,Europe/Paris,,O38, +O38:SP:6860,1,"LE BAS SCIERIE",45.386617,5.111081,0,0,O38:SA:CTP6859,Europe/Paris,,O38, +O38:SP:6861,1,"CROIST PETIT BISSERA",45.406817,5.11107,0,0,O38:SA:CTP6861,Europe/Paris,,O38, +O38:SP:6862,1,"CROIST PETIT BISSERA",45.406753,5.110903,0,0,O38:SA:CTP6861,Europe/Paris,,O38, +O38:SP:6863,1,"LES BRUYERES",45.387108,5.092288,0,0,O38:SA:CTP6863,Europe/Paris,,O38, +O38:SP:6864,1,"LES BRUYERES",45.387177,5.092262,0,0,O38:SA:CTP6863,Europe/Paris,,O38, +O38:SP:6865,1,"CHEMIN DU FAY",45.387869,5.101353,0,0,O38:SA:CTP6865,Europe/Paris,,O38, +O38:SP:6866,1,"CHEMIN DU FAY",45.387859,5.101348,0,0,O38:SA:CTP6865,Europe/Paris,,O38, +O38:SP:6867,1,"LA CAGE VC N° 2",45.422938,5.099129,0,0,O38:SA:CTP6867,Europe/Paris,,O38, +O38:SP:6868,1,"LA CAGE VC N° 2",45.422906,5.099219,0,0,O38:SA:CTP6867,Europe/Paris,,O38, +O38:SP:6869,1,"ROUTE DU GRAND BOSSIEU",45.411886,5.136784,0,0,O38:SA:CTP6869,Europe/Paris,,O38, +O38:SP:687,1,"NANTIZON",44.917706,5.780925,0,0,O38:SA:CTP687,Europe/Paris,,O38, +O38:SP:6870,1,"ROUTE DU GRAND BOSSIEU",45.411819,5.136797,0,0,O38:SA:CTP6869,Europe/Paris,,O38, +O38:SP:6871,1,"RTE-LA CHARRIERE",45.393636,5.170345,0,0,O38:SA:CTP6871,Europe/Paris,,O38, +O38:SP:6872,1,"RTE-LA CHARRIERE",45.393564,5.170342,0,0,O38:SA:CTP6871,Europe/Paris,,O38, +O38:SP:6873,1,"PLACE M. RICHARD BERLAND",45.417597,5.148288,0,0,O38:SA:CTP6873,Europe/Paris,,O38, +O38:SP:6875,1,"LES BRUYERES",45.380323,5.161622,0,0,O38:SA:CTP6875,Europe/Paris,,O38, +O38:SP:6876,1,"LES BRUYERES",45.380331,5.161672,0,0,O38:SA:CTP6875,Europe/Paris,,O38, +O38:SP:6877,1,"LES VIES CROZES",45.421629,5.167982,0,0,O38:SA:CTP6877,Europe/Paris,,O38, +O38:SP:6878,1,"LES VIES CROZES",45.42178,5.16825,0,0,O38:SA:CTP6877,Europe/Paris,,O38, +O38:SP:6879,1,"LE BAS",45.403446,5.208522,0,0,O38:SA:CTP6879,Europe/Paris,,O38, +O38:SP:688,1,"NANTIZON",44.917095,5.781011,0,0,O38:SA:CTP687,Europe/Paris,,O38, +O38:SP:6880,1,"LE BAS",45.403414,5.20845,0,0,O38:SA:CTP6879,Europe/Paris,,O38, +O38:SP:6881,1,"BASCULE D.51",45.415379,5.15265,0,0,O38:SA:CTP6881,Europe/Paris,,O38, +O38:SP:6882,1,"BASCULE D.51",45.415315,5.152658,0,0,O38:SA:CTP6881,Europe/Paris,,O38, +O38:SP:6883,1,"PATODIERE-CROIX",45.418958,5.158491,0,0,O38:SA:CTP6883,Europe/Paris,,O38, +O38:SP:6884,1,"PATODIERE-CROIX",45.419067,5.158685,0,0,O38:SA:CTP6883,Europe/Paris,,O38, +O38:SP:6885,1,"CHANTEMERLE",45.386006,5.16211,0,0,O38:SA:CTP6885,Europe/Paris,,O38, +O38:SP:6886,1,"CHANTEMERLE",45.386027,5.162182,0,0,O38:SA:CTP6885,Europe/Paris,,O38, +O38:SP:6887,1,"PLACE",45.393263,5.166096,0,0,O38:SA:CTP6887,Europe/Paris,,O38, +O38:SP:6889,1,"LE PION",45.391164,5.207673,0,0,O38:SA:CTP6889,Europe/Paris,,O38, +O38:SP:689,1,"PONT DE MALADIERE",44.913996,5.782784,0,0,O38:SA:CTP689,Europe/Paris,,O38, +O38:SP:6890,1,"LE PION",45.391136,5.207723,0,0,O38:SA:CTP6889,Europe/Paris,,O38, +O38:SP:6891,1,"CIMETIERE",45.390296,5.184176,0,0,O38:SA:CTP6891,Europe/Paris,,O38, +O38:SP:6892,1,"CIMETIERE",45.39025,5.184418,0,0,O38:SA:CTP6891,Europe/Paris,,O38, +O38:SP:6893,1,"LE GOURE",45.390406,5.197568,0,0,O38:SA:CTP6893,Europe/Paris,,O38, +O38:SP:6894,1,"LE GOURE",45.390451,5.197515,0,0,O38:SA:CTP6893,Europe/Paris,,O38, +O38:SP:6895,1,"EGLISE",45.390336,5.189519,0,0,O38:SA:CTP6895,Europe/Paris,,O38, +O38:SP:6896,1,"EGLISE",45.390264,5.189621,0,0,O38:SA:CTP6895,Europe/Paris,,O38, +O38:SP:6897,1,"LA RANCHE",45.383971,5.175464,0,0,O38:SA:CTP6897,Europe/Paris,,O38, +O38:SP:6898,1,"LA RANCHE",45.383973,5.175542,0,0,O38:SA:CTP6897,Europe/Paris,,O38, +O38:SP:6899,1,"ECOLE",45.390319,5.189651,0,0,O38:SA:CTP6899,Europe/Paris,,O38, +O38:SP:690,1,"PONT DE MALADIERE",44.91404,5.782856,0,0,O38:SA:CTP689,Europe/Paris,,O38, +O38:SP:6900,1,"ECOLE",45.390268,5.189583,0,0,O38:SA:CTP6899,Europe/Paris,,O38, +O38:SP:6901,1,"CHEMIN DE TRAVERSE",45.42138,5.15641,0,0,O38:SA:CTP6901,Europe/Paris,,O38, +O38:SP:6902,1,"CHEMIN DE TRAVERSE",45.421464,5.156477,0,0,O38:SA:CTP6901,Europe/Paris,,O38, +O38:SP:6903,1,"LES RUATS CARREFOUR",45.420504,5.231826,0,0,O38:SA:CTP6903,Europe/Paris,,O38, +O38:SP:6904,1,"LES RUATS CARREFOUR",45.420472,5.231966,0,0,O38:SA:CTP6903,Europe/Paris,,O38, +O38:SP:6905,1,"HAMEAU ST CORPS",45.415769,5.261944,0,0,O38:SA:CTP6905,Europe/Paris,,O38, +O38:SP:6906,1,"HAMEAU ST CORPS",45.415823,5.261963,0,0,O38:SA:CTP6905,Europe/Paris,,O38, +O38:SP:6907,1,"LES CROZES",45.403703,5.227505,0,0,O38:SA:CTP6907,Europe/Paris,,O38, +O38:SP:6908,1,"CITE SCOLAIRE",45.391031,5.264181,0,0,O38:SA:CTP6908,Europe/Paris,,O38, +O38:SP:6909,1,"CITE SCOLAIRE",45.391052,5.264237,0,0,O38:SA:CTP6908,Europe/Paris,,O38, +O38:SP:691,1,"ECOLE LE VILLARET",44.92987,5.774426,0,0,O38:SA:CTP691,Europe/Paris,,O38, +O38:SP:6910,1,"COLLEGE ST FRANCOIS",45.391485,5.254719,0,0,O38:SA:CTP6910,Europe/Paris,,O38, +O38:SP:6911,1,"COLLEGE ST FRANCOIS",45.391459,5.254957,0,0,O38:SA:CTP6910,Europe/Paris,,O38, +O38:SP:6912,1,"POULARDIERE",45.403842,5.273869,0,0,O38:SA:CTP6912,Europe/Paris,,O38, +O38:SP:6913,1,"POULARDIERE",45.403826,5.273792,0,0,O38:SA:CTP6912,Europe/Paris,,O38, +O38:SP:6914,1,"LE REVOLLET",45.392062,5.226866,0,0,O38:SA:CTP6914,Europe/Paris,,O38, +O38:SP:6915,1,"LE REVOLLET",45.392119,5.22699,0,0,O38:SA:CTP6914,Europe/Paris,,O38, +O38:SP:6916,1,"G.S.ANDRE MALRAUX",45.394852,5.266295,0,0,O38:SA:CTP6916,Europe/Paris,,O38, +O38:SP:6917,1,"LA CHAPELLE",45.396785,5.233456,0,0,O38:SA:CTP6917,Europe/Paris,,O38, +O38:SP:6918,1,"LA CHAPELLE",45.3977,5.232515,0,0,O38:SA:CTP6917,Europe/Paris,,O38, +O38:SP:6919,1,"LES CROZES",45.403678,5.227574,0,0,O38:SA:CTP6907,Europe/Paris,,O38, +O38:SP:692,1,"ECOLE LE VILLARET",44.929909,5.774511,0,0,O38:SA:CTP691,Europe/Paris,,O38, +O38:SP:6920,1,"LES CROZES",45.403647,5.227262,0,0,O38:SA:CTP6907,Europe/Paris,,O38, +O38:SP:6921,1,"EGLISE",45.398772,5.214234,0,0,O38:SA:CTP6921,Europe/Paris,,O38, +O38:SP:6922,1,"EGLISE",45.39878,5.214295,0,0,O38:SA:CTP6921,Europe/Paris,,O38, +O38:SP:6923,1,"PLACE H. BERLIOZ",45.391928,5.260767,0,0,O38:SA:CTP6923,Europe/Paris,,O38, +O38:SP:6926,1,"LEGTA",45.387359,5.267611,0,0,O38:SA:CTP6926,Europe/Paris,,O38, +O38:SP:6927,1,"LES BERLANDIERES",45.392285,5.231834,0,0,O38:SA:CTP6927,Europe/Paris,,O38, +O38:SP:6928,1,"LES BERLANDIERES",45.392354,5.232443,0,0,O38:SA:CTP6927,Europe/Paris,,O38, +O38:SP:6929,1,"LA POYAT",45.398108,5.222406,0,0,O38:SA:CTP6929,Europe/Paris,,O38, +O38:SP:693,1,"LE VILLARET",44.927351,5.776719,0,0,O38:SA:CTP693,Europe/Paris,,O38, +O38:SP:6930,1,"LA POYAT",45.398055,5.222411,0,0,O38:SA:CTP6929,Europe/Paris,,O38, +O38:SP:6931,1,"HAMEAU POIPON",45.377703,5.23549,0,0,O38:SA:CTP6931,Europe/Paris,,O38, +O38:SP:6932,1,"HAMEAU POIPON",45.377703,5.235459,0,0,O38:SA:CTP6931,Europe/Paris,,O38, +O38:SP:6933,1,"LE COLONEAU",45.391926,5.304653,0,0,O38:SA:CTP6933,Europe/Paris,,O38, +O38:SP:6934,1,"LE COLONEAU",45.391896,5.30453,0,0,O38:SA:CTP6933,Europe/Paris,,O38, +O38:SP:6935,1,"TERNAN",45.392668,5.286709,0,0,O38:SA:CTP6935,Europe/Paris,,O38, +O38:SP:6936,1,"TERNAN",45.392596,5.286996,0,0,O38:SA:CTP6935,Europe/Paris,,O38, +O38:SP:6937,1,"LE VILLAGE",45.392235,5.294952,0,0,O38:SA:CTP6937,Europe/Paris,,O38, +O38:SP:6938,1,"LE VILLAGE",45.392312,5.296016,0,0,O38:SA:CTP6937,Europe/Paris,,O38, +O38:SP:6939,1,"CONDELLE (RD73)",45.390947,5.312719,0,0,O38:SA:CTP6939,Europe/Paris,,O38, +O38:SP:694,1,"LE VILLARET",44.927225,5.776964,0,0,O38:SA:CTP693,Europe/Paris,,O38, +O38:SP:6940,1,"CONDELLE (RD73)",45.390877,5.312703,0,0,O38:SA:CTP6939,Europe/Paris,,O38, +O38:SP:6941,1,"MAIRIE",45.390572,5.327465,0,0,O38:SA:CTP6941,Europe/Paris,,O38, +O38:SP:6942,1,"MAIRIE",45.390536,5.327551,0,0,O38:SA:CTP6941,Europe/Paris,,O38, +O38:SP:6943,1,"BEAUGE D71D",45.41888,5.322615,0,0,O38:SA:CTP6943,Europe/Paris,,O38, +O38:SP:6944,1,"BEAUGE D71D",45.41892,5.322974,0,0,O38:SA:CTP6943,Europe/Paris,,O38, +O38:SP:6945,1,"LA FOURNACHE",45.390498,5.317629,0,0,O38:SA:CTP6945,Europe/Paris,,O38, +O38:SP:6946,1,"LA FOURNACHE",45.390413,5.316747,0,0,O38:SA:CTP6945,Europe/Paris,,O38, +O38:SP:6947,1,"LES PIERRES N85",45.417601,5.329874,0,0,O38:SA:CTP6947,Europe/Paris,,O38, +O38:SP:6948,1,"LES PIERRES N85",45.417663,5.329925,0,0,O38:SA:CTP6947,Europe/Paris,,O38, +O38:SP:695,1,"LA CENTRALE",44.92912,5.782414,0,0,O38:SA:CTP695,Europe/Paris,,O38, +O38:SP:6951,1,"LE PLANTIER",45.390373,5.340702,0,0,O38:SA:CTP6951,Europe/Paris,,O38, +O38:SP:6952,1,"LE PLANTIER",45.390332,5.340308,0,0,O38:SA:CTP6951,Europe/Paris,,O38, +O38:SP:6955,1,"POMPIERS",45.390338,5.35956,0,0,O38:SA:CTP6955,Europe/Paris,,O38, +O38:SP:6956,1,"POMPIERS",45.390304,5.358968,0,0,O38:SA:CTP6955,Europe/Paris,,O38, +O38:SP:6957,1,"Z.A. MEYZIN",45.390391,5.352903,0,0,O38:SA:CTP6957,Europe/Paris,,O38, +O38:SP:6958,1,"Z.A. MEYZIN",45.390349,5.353158,0,0,O38:SA:CTP6957,Europe/Paris,,O38, +O38:SP:6959,1,"LE VILLAGE",45.389859,5.363678,0,0,O38:SA:CTP6959,Europe/Paris,,O38, +O38:SP:696,1,"LA CENTRALE",44.933471,5.781526,0,0,O38:SA:CTP696,Europe/Paris,,O38, +O38:SP:6960,1,"LE VILLAGE",45.389897,5.363603,0,0,O38:SA:CTP6959,Europe/Paris,,O38, +O38:SP:6961,1,"LONGECHENAL",45.418126,5.347185,0,0,O38:SA:CTP6961,Europe/Paris,,O38, +O38:SP:6962,1,"LONGECHENAL",45.418196,5.347158,0,0,O38:SA:CTP6961,Europe/Paris,,O38, +O38:SP:6963,1,"LA BOURGEAT",45.396365,5.398096,0,0,O38:SA:CTP6963,Europe/Paris,,O38, +O38:SP:6964,1,"LA BOURGEAT",45.396122,5.397447,0,0,O38:SA:CTP6963,Europe/Paris,,O38, +O38:SP:6965,1,"LA CHARRIERE",45.39659,5.389641,0,0,O38:SA:CTP6965,Europe/Paris,,O38, +O38:SP:6966,1,"LA CHARRIERE",45.39652,5.389661,0,0,O38:SA:CTP6965,Europe/Paris,,O38, +O38:SP:6967,1,"CAFE BERLIOZ",45.399534,5.377461,0,0,O38:SA:CTP6967,Europe/Paris,,O38, +O38:SP:6968,1,"CAFE BERLIOZ",45.399473,5.377537,0,0,O38:SA:CTP6967,Europe/Paris,,O38, +O38:SP:6969,1,"LA PETITE GARE",45.392598,5.386313,0,0,O38:SA:CTP6969,Europe/Paris,,O38, +O38:SP:697,1,"HLM LE BREDENT",44.920665,5.78179,0,0,O38:SA:CTP697,Europe/Paris,,O38, +O38:SP:6970,1,"LA PETITE GARE",45.392526,5.386072,0,0,O38:SA:CTP6969,Europe/Paris,,O38, +O38:SP:6971,1,"EGLISE",45.398962,5.385414,0,0,O38:SA:CTP6971,Europe/Paris,,O38, +O38:SP:6972,1,"EGLISE",45.398797,5.385554,0,0,O38:SA:CTP6971,Europe/Paris,,O38, +O38:SP:6973,1,"LA POLLARDIERE",45.398651,5.372288,0,0,O38:SA:CTP6973,Europe/Paris,,O38, +O38:SP:6974,1,"LA POLLARDIERE",45.398716,5.372243,0,0,O38:SA:CTP6973,Europe/Paris,,O38, +O38:SP:6975,1,"HLM",45.387398,5.367871,0,0,O38:SA:CTP6975,Europe/Paris,,O38, +O38:SP:6976,1,"HLM",45.387456,5.36793,0,0,O38:SA:CTP6975,Europe/Paris,,O38, +O38:SP:6977,1,"CHEMIN DES VIGNES",45.396143,5.385641,0,0,O38:SA:CTP6977,Europe/Paris,,O38, +O38:SP:6978,1,"CHEMIN DES VIGNES",45.396212,5.385673,0,0,O38:SA:CTP6977,Europe/Paris,,O38, +O38:SP:6979,1,"LA MONTAGNE",45.399463,5.351688,0,0,O38:SA:CTP6979,Europe/Paris,,O38, +O38:SP:698,1,"HLM LE BREDENT",44.920736,5.781785,0,0,O38:SA:CTP697,Europe/Paris,,O38, +O38:SP:6980,1,"LA MONTAGNE",45.39958,5.351823,0,0,O38:SA:CTP6979,Europe/Paris,,O38, +O38:SP:6981,1,"LA CONTAMINE",45.399904,5.475417,0,0,O38:SA:CTP6981,Europe/Paris,,O38, +O38:SP:6982,1,"LA CONTAMINE",45.399948,5.475321,0,0,O38:SA:CTP6981,Europe/Paris,,O38, +O38:SP:6983,1,"L'HÔPITAL",45.3977,5.426269,0,0,O38:SA:CTP6983,Europe/Paris,,O38, +O38:SP:6984,1,"L'HÔPITAL",45.397663,5.426216,0,0,O38:SA:CTP6983,Europe/Paris,,O38, +O38:SP:6985,1,"GRAND LEMPS STADE",45.397655,5.431146,0,0,O38:SA:CTP6985,Europe/Paris,,O38, +O38:SP:6986,1,"GRAND LEMPS STADE",45.397629,5.430787,0,0,O38:SA:CTP6985,Europe/Paris,,O38, +O38:SP:6989,1,"LA GARE",45.400222,5.463117,0,0,O38:SA:CTP6989,Europe/Paris,,O38, +O38:SP:699,1,"ECOLE",44.893197,5.766606,0,0,O38:SA:CTP699,Europe/Paris,,O38, +O38:SP:6990,1,"LA GARE",45.400253,5.463013,0,0,O38:SA:CTP6989,Europe/Paris,,O38, +O38:SP:6991,1,"BAS COLOMBE",45.397345,5.437503,0,0,O38:SA:CTP6991,Europe/Paris,,O38, +O38:SP:6992,1,"BAS COLOMBE",45.397294,5.437479,0,0,O38:SA:CTP6991,Europe/Paris,,O38, +O38:SP:6993,1,"ERMAC ABRI",45.398376,5.45214,0,0,O38:SA:CTP6993,Europe/Paris,,O38, +O38:SP:6994,1,"ERMAC ABRI",45.398267,5.451898,0,0,O38:SA:CTP6993,Europe/Paris,,O38, +O38:SP:6995,1,"LA BERTINE",45.39935,5.457394,0,0,O38:SA:CTP6995,Europe/Paris,,O38, +O38:SP:6996,1,"LA BERTINE",45.399321,5.457491,0,0,O38:SA:CTP6995,Europe/Paris,,O38, +O38:SP:6997,1,"PLACE DU CHATEAU",45.398207,5.420535,0,0,O38:SA:CTP6997,Europe/Paris,,O38, +O38:SP:6998,1,"PLACE DU CHATEAU",45.398256,5.420348,0,0,O38:SA:CTP6997,Europe/Paris,,O38, +O38:SP:6999,1,"EGLISE",45.397659,5.449315,0,0,O38:SA:CTP6999,Europe/Paris,,O38, +O38:SP:700,1,"ECOLE",44.893126,5.76659,0,0,O38:SA:CTP699,Europe/Paris,,O38, +O38:SP:7000,1,"EGLISE",45.397685,5.448779,0,0,O38:SA:CTP6999,Europe/Paris,,O38, +O38:SP:7002,1,"GRAND LEMPS USINE",45.40658,5.422764,0,0,O38:SA:CTP7002,Europe/Paris,,O38, +O38:SP:7003,1,"COLLEGE LIERS ET LEMPS",45.395471,5.423029,0,0,O38:SA:CTP7003,Europe/Paris,,O38, +O38:SP:7004,1,"COLLEGE LIERS ET LEMPS",45.395532,5.422947,0,0,O38:SA:CTP7003,Europe/Paris,,O38, +O38:SP:7007,1,"GARE SNCF",45.396733,5.422804,0,0,O38:SA:CTP7007,Europe/Paris,,O38, +O38:SP:7009,1,"PASSAGE A NIVEAU",45.393818,5.425197,0,0,O38:SA:CTP7009,Europe/Paris,,O38, +O38:SP:701,1,"EGLISE",44.903149,5.836012,0,0,O38:SA:CTP701,Europe/Paris,,O38, +O38:SP:7010,1,"AVENUE DE L'EUROPE",45.393397,5.422528,0,0,O38:SA:CTP7010,Europe/Paris,,O38, +O38:SP:7011,1,"AVENUE DE L'EUROPE",45.393476,5.422397,0,0,O38:SA:CTP7010,Europe/Paris,,O38, +O38:SP:7012,1,"ECOLE MATERNELLE",45.398292,5.501545,0,0,O38:SA:CTP7012,Europe/Paris,,O38, +O38:SP:7013,1,"LA ROBERTIERE",45.399821,5.492562,0,0,O38:SA:CTP7013,Europe/Paris,,O38, +O38:SP:7014,1,"LA ROBERTIERE",45.399882,5.492315,0,0,O38:SA:CTP7013,Europe/Paris,,O38, +O38:SP:7015,1,"ECOLE PRIMAIRE ST EXUPERY",45.398969,5.50317,0,0,O38:SA:CTP7015,Europe/Paris,,O38, +O38:SP:7018,1,"BONPERTUIS",45.394969,5.529864,0,0,O38:SA:CTP7018,Europe/Paris,,O38, +O38:SP:702,1,"EGLISE",44.90311,5.836068,0,0,O38:SA:CTP701,Europe/Paris,,O38, +O38:SP:7020,1,"LE VILLAGE",45.3986,5.504861,0,0,O38:SA:CTP7020,Europe/Paris,,O38, +O38:SP:7021,1,"LE VILLAGE",45.398516,5.504811,0,0,O38:SA:CTP7020,Europe/Paris,,O38, +O38:SP:7027,1,"LA COURATIERE",45.385185,5.533714,0,0,OVO:SA:CTP7026,Europe/Paris,,O38, +O38:SP:7029,1,"LA COURATIERE",45.385178,5.53355,0,0,OVO:SA:CTP7026,Europe/Paris,,O38, +O38:SP:703,1,"LES CHAPEAUX",44.896435,5.835968,0,0,O38:SA:CTP703,Europe/Paris,,O38, +O38:SP:7031,1,"LE RIVIER-ECOLE",45.380732,5.494578,0,0,OVO:SA:CTP7030,Europe/Paris,,O38, +O38:SP:7033,1,"LE RIVIER-ECOLE",45.380736,5.494634,0,0,OVO:SA:CTP7030,Europe/Paris,,O38, +O38:SP:7034,1,"PLAMBOIS",45.404212,5.523387,0,0,O38:SA:CTP7034,Europe/Paris,,O38, +O38:SP:7035,1,"PLAMBOIS",45.404191,5.523486,0,0,O38:SA:CTP7034,Europe/Paris,,O38, +O38:SP:7036,1,"CHAMP GUICHARD",45.398173,5.515242,0,0,O38:SA:CTP7036,Europe/Paris,,O38, +O38:SP:7037,1,"CHAMP GUICHARD",45.398241,5.51533,0,0,O38:SA:CTP7036,Europe/Paris,,O38, +O38:SP:7038,1,"LA COUCHONNIERE",45.400203,5.484866,0,0,O38:SA:CTP7038,Europe/Paris,,O38, +O38:SP:7039,1,"LA COUCHONNIERE",45.400143,5.485047,0,0,O38:SA:CTP7038,Europe/Paris,,O38, +O38:SP:704,1,"LES CHAPEAUX",44.896445,5.835961,0,0,O38:SA:CTP703,Europe/Paris,,O38, +O38:SP:7040,1,"LE JACQUIN",45.399347,5.499819,0,0,O38:SA:CTP7040,Europe/Paris,,O38, +O38:SP:7041,1,"LE JACQUIN",45.399382,5.49987,0,0,O38:SA:CTP7040,Europe/Paris,,O38, +O38:SP:7043,1,"BOURG ECOLE",45.366927,5.526203,0,0,OVO:SA:CTP7042,Europe/Paris,,O38, +O38:SP:7044,1,"BOURG ECOLE",45.366999,5.526278,0,0,OVO:SA:CTP7042,Europe/Paris,,O38, +O38:SP:7045,1,"LA RAVIGNHOUSE",45.391243,5.520353,0,0,OVO:SA:CTP7060,Europe/Paris,,O38, +O38:SP:7046,1,"LA RAVIGNHOUSE",45.39147,5.519981,0,0,OVO:SA:CTP7060,Europe/Paris,,O38, +O38:SP:7048,1,"VILLAGE",45.380259,5.541165,0,0,OVO:SA:CTP7047,Europe/Paris,,O38, +O38:SP:705,1,"ROIZON GARE",44.913947,5.81673,0,0,O38:SA:CTP705,Europe/Paris,,O38, +O38:SP:7050,1,"VILLAGE",45.380227,5.541108,0,0,OVO:SA:CTP7047,Europe/Paris,,O38, +O38:SP:7051,1,"ROUTE DE CHARAVINES",45.389108,5.501248,0,0,O38:SA:CTP7051,Europe/Paris,,O38, +O38:SP:7052,1,"ROUTE DE CHARAVINES",45.389126,5.501106,0,0,O38:SA:CTP7051,Europe/Paris,,O38, +O38:SP:7054,1,"ROUTE DU RIVIER",45.374754,5.496769,0,0,OVO:SA:CTP7055,Europe/Paris,,O38, +O38:SP:7056,1,"ROUTE DU RIVIER",45.374521,5.496887,0,0,OVO:SA:CTP7055,Europe/Paris,,O38, +O38:SP:7059,1,"LA RAVIGNHOUSE",45.391295,5.521197,0,0,OVO:SA:CTP7060,Europe/Paris,,O38, +O38:SP:706,1,"ROIZON GARE",44.913826,5.816944,0,0,O38:SA:CTP705,Europe/Paris,,O38, +O38:SP:7061,1,"LA RAVIGNHOUSE",45.391207,5.521011,0,0,OVO:SA:CTP7060,Europe/Paris,,O38, +O38:SP:7063,1,"ZA LA TALAMUD",45.386421,5.525335,0,0,OVO:SA:CTP7066,Europe/Paris,,O38, +O38:SP:7065,1,"ZA LA TALAMUD",45.386429,5.52486,0,0,OVO:SA:CTP7066,Europe/Paris,,O38, +O38:SP:7067,1,"LE CHATELARD",45.369252,5.50808,0,0,OVO:SA:CTP7068,Europe/Paris,,O38, +O38:SP:7069,1,"LE CHATELARD",45.368936,5.507769,0,0,OVO:SA:CTP7068,Europe/Paris,,O38, +O38:SP:7071,1,"PAPETERIE",45.409734,5.531944,0,0,O38:SA:CTP7071,Europe/Paris,,O38, +O38:SP:7073,1,"PAPETERIE",45.410243,5.531844,0,0,O38:SA:CTP7071,Europe/Paris,,O38, +O38:SP:7075,1,"LE GAYET",45.409592,5.560555,0,0,OVO:SA:CTP7076,Europe/Paris,,O38, +O38:SP:7077,1,"LE GAYET",45.40953,5.56049,0,0,OVO:SA:CTP7076,Europe/Paris,,O38, +O38:SP:7079,1,"LE FAGOT",45.40288,5.566738,0,0,OVO:SA:CTP7080,Europe/Paris,,O38, +O38:SP:708,1,"CARRIERE BARBE",44.901533,5.817419,0,0,O38:SA:CTP708,Europe/Paris,,O38, +O38:SP:7081,1,"LE FAGOT",45.403228,5.566544,0,0,OVO:SA:CTP7080,Europe/Paris,,O38, +O38:SP:7083,1,"LE PAYSAN",45.378728,5.548589,0,0,O38:SA:CTP7083,Europe/Paris,,O38, +O38:SP:7085,1,"LE PAYSAN",45.378603,5.549872,0,0,O38:SA:CTP7083,Europe/Paris,,O38, +O38:SP:7087,1,"CENTRE SOCIAL",45.368127,5.588621,0,0,OVO:SA:CTP7088,Europe/Paris,,O38, +O38:SP:7089,1,"CENTRE SOCIAL",45.367868,5.588675,0,0,OVO:SA:CTP7088,Europe/Paris,,O38, +O38:SP:7092,1,"PLACE GENERAL LECLERC",45.366164,5.590984,0,0,OVO:SA:CTP14814,Europe/Paris,,O38, +O38:SP:7093,1,"PLACE GENERAL LECLERC",45.366305,5.591191,0,0,OVO:SA:CTP14814,Europe/Paris,,O38, +O38:SP:7095,1,"L'AGNELAS",45.378443,5.563905,0,0,OVO:SA:CTP7094,Europe/Paris,,O38, +O38:SP:7097,1,"L'AGNELAS",45.37849,5.563596,0,0,OVO:SA:CTP7094,Europe/Paris,,O38, +O38:SP:7099,1,"POLE DE VOUISE",45.377518,5.581573,0,0,O38:SA:CTP7099,Europe/Paris,,O38, +O38:SP:7101,1,"POLE DE VOUISE",45.375983,5.580846,0,0,O38:SA:CTP7099,Europe/Paris,,O38, +O38:SP:7103,1,"BRAMERET",45.369746,5.586529,0,0,OVO:SA:CTP7102,Europe/Paris,,O38, +O38:SP:7108,1,"LE VERDIN",45.397731,5.569355,0,0,OVO:SA:CTP7109,Europe/Paris,,O38, +O38:SP:711,1,"COL DE MALISSOL",44.928491,5.843427,0,0,O38:SA:CTP711,Europe/Paris,,O38, +O38:SP:7110,1,"LE VERDIN",45.397672,5.569457,0,0,OVO:SA:CTP7109,Europe/Paris,,O38, +O38:SP:712,1,"COL DE MALISSOL",44.928425,5.843622,0,0,O38:SA:CTP711,Europe/Paris,,O38, +O38:SP:7124,1,"CROIX BAYARD",45.365841,5.621897,0,0,O38:SA:CTP7124,Europe/Paris,,O38, +O38:SP:7126,1,"CROIX BAYARD",45.365441,5.621637,0,0,O38:SA:CTP7124,Europe/Paris,,O38, +O38:SP:713,1,"SERBOUVET",44.928298,5.809846,0,0,O38:SA:CTP713,Europe/Paris,,O38, +O38:SP:7130,1,"VILLAGE",45.377213,5.645677,0,0,O38:SA:CTP7130,Europe/Paris,,O38, +O38:SP:7132,1,"VILLAGE",45.377849,5.646463,0,0,O38:SA:CTP7130,Europe/Paris,,O38, +O38:SP:7134,1,"ETANG DAUPHIN",45.367646,5.633395,0,0,O38:SA:CTP7134,Europe/Paris,,O38, +O38:SP:7136,1,"ETANG DAUPHIN",45.367581,5.633398,0,0,O38:SA:CTP7134,Europe/Paris,,O38, +O38:SP:714,1,"SERBOUVET",44.92831,5.809831,0,0,O38:SA:CTP713,Europe/Paris,,O38, +O38:SP:7140,1,"LA BOURDERIE",45.376767,5.678481,0,0,O38:SA:CTP7140,Europe/Paris,,O38, +O38:SP:7142,1,"LES BACHES",45.405558,5.705624,0,0,O38:SA:CTP7142,Europe/Paris,,O38, +O38:SP:7143,1,"LES BACHES",45.405576,5.705575,0,0,O38:SA:CTP7142,Europe/Paris,,O38, +O38:SP:7144,1,"LA GRASSETIERE",45.403583,5.694802,0,0,O38:SA:CTP7144,Europe/Paris,,O38, +O38:SP:7145,1,"LA GRASSETIERE",45.403481,5.694747,0,0,O38:SA:CTP7144,Europe/Paris,,O38, +O38:SP:7146,1,"PONT DEMAY",45.363156,5.677955,0,0,O38:SA:CTP7146,Europe/Paris,,O38, +O38:SP:7147,1,"PONT DEMAY",45.363119,5.678601,0,0,O38:SA:CTP7146,Europe/Paris,,O38, +O38:SP:7148,1,"LA COTE",45.402848,5.699518,0,0,O38:SA:CTP7148,Europe/Paris,,O38, +O38:SP:7149,1,"LA COTE",45.402836,5.699649,0,0,O38:SA:CTP7148,Europe/Paris,,O38, +O38:SP:715,1,"CIMON",44.910895,5.784146,0,0,O38:SA:CTP715,Europe/Paris,,O38, +O38:SP:7151,1,"LE PERON",45.396307,5.686876,0,0,O38:SA:CTP7151,Europe/Paris,,O38, +O38:SP:7152,1,"LES GENONS",45.394732,5.701739,0,0,O38:SA:CTP7152,Europe/Paris,,O38, +O38:SP:7153,1,"LES GENONS",45.39478,5.701663,0,0,O38:SA:CTP7152,Europe/Paris,,O38, +O38:SP:7154,1,"COLLEGE LE GRAND SOM",45.393589,5.732055,0,0,O38:SA:CTP7154,Europe/Paris,,O38, +O38:SP:7156,1,"LE COTTERG",45.388409,5.725466,0,0,O38:SA:CTP7156,Europe/Paris,,O38, +O38:SP:7157,1,"LE COTTERG",45.388584,5.724676,0,0,O38:SA:CTP7156,Europe/Paris,,O38, +O38:SP:7158,1,"PLAINE FLEURIE",45.396051,5.727405,0,0,O38:SA:CTP7158,Europe/Paris,,O38, +O38:SP:7159,1,"PLAINE FLEURIE",45.396088,5.727493,0,0,O38:SA:CTP7158,Europe/Paris,,O38, +O38:SP:716,1,"CIMON",44.910724,5.784002,0,0,O38:SA:CTP715,Europe/Paris,,O38, +O38:SP:7160,1,"L'EGLISE-ECOLE PRIVEE",45.38797,5.731347,0,0,O38:SA:CTP7160,Europe/Paris,,O38, +O38:SP:7162,1,"LE REVOL",45.396011,5.741363,0,0,O38:SA:CTP7162,Europe/Paris,,O38, +O38:SP:7163,1,"LE REVOL",45.39565,5.741325,0,0,O38:SA:CTP7162,Europe/Paris,,O38, +O38:SP:7165,1,"LA TUILERIE",45.402071,5.713516,0,0,O38:SA:CTP7165,Europe/Paris,,O38, +O38:SP:7166,1,"LES JOLYS",45.389672,5.680043,0,0,O38:SA:CTP7166,Europe/Paris,,O38, +O38:SP:7167,1,"LES JOLYS",45.389699,5.680013,0,0,O38:SA:CTP7166,Europe/Paris,,O38, +O38:SP:7168,1,"LA SIRANDIERE",45.365816,5.684078,0,0,O38:SA:CTP7168,Europe/Paris,,O38, +O38:SP:7169,1,"LA SIRANDIERE",45.366233,5.684618,0,0,O38:SA:CTP7168,Europe/Paris,,O38, +O38:SP:717,1,"ROIZON - LE BAS",44.914356,5.822341,0,0,O38:SA:CTP717,Europe/Paris,,O38, +O38:SP:7170,1,"LES SATRES",45.388321,5.692952,0,0,O38:SA:CTP7170,Europe/Paris,,O38, +O38:SP:7171,1,"LES SATRES",45.388266,5.693018,0,0,O38:SA:CTP7170,Europe/Paris,,O38, +O38:SP:7172,1,"CHARBONNIERE",45.36426,5.682552,0,0,O38:SA:CTP7172,Europe/Paris,,O38, +O38:SP:7173,1,"CHARBONNIERE",45.364111,5.682273,0,0,O38:SA:CTP7172,Europe/Paris,,O38, +O38:SP:7175,1,"LA TUILERIE",45.382443,5.688715,0,0,O38:SA:CTP7175,Europe/Paris,,O38, +O38:SP:7176,1,"LA GUILLETIERE LOT",45.3847,5.684853,0,0,O38:SA:CTP7176,Europe/Paris,,O38, +O38:SP:7177,1,"LA GUILLETIERE LOT",45.38471,5.684954,0,0,O38:SA:CTP7176,Europe/Paris,,O38, +O38:SP:7178,1,"LA GUILLETIERE",45.385365,5.681559,0,0,O38:SA:CTP7178,Europe/Paris,,O38, +O38:SP:7179,1,"LA GUILLETIERE",45.385427,5.681509,0,0,O38:SA:CTP7178,Europe/Paris,,O38, +O38:SP:718,1,"ROIZON - LE BAS",44.914342,5.822086,0,0,O38:SA:CTP717,Europe/Paris,,O38, +O38:SP:7180,1,"LA GUILLOTIERE",45.386488,5.7166,0,0,O38:SA:CTP7180,Europe/Paris,,O38, +O38:SP:7181,1,"LA GUILLOTIERE",45.386546,5.716506,0,0,O38:SA:CTP7180,Europe/Paris,,O38, +O38:SP:7184,1,"LE VILLAGE",45.37485,5.696931,0,0,O38:SA:CTP7184,Europe/Paris,,O38, +O38:SP:7185,1,"LE VILLAGE",45.374526,5.697022,0,0,O38:SA:CTP7184,Europe/Paris,,O38, +O38:SP:7186,1,"LES COTES DE VILETTE",45.392601,5.699737,0,0,O38:SA:CTP7186,Europe/Paris,,O38, +O38:SP:7187,1,"LES COTES DE VILETTE",45.392638,5.699649,0,0,O38:SA:CTP7186,Europe/Paris,,O38, +O38:SP:7188,1,"LES TERPENDS",45.39674,5.704081,0,0,O38:SA:CTP7188,Europe/Paris,,O38, +O38:SP:7189,1,"LES TERPENDS",45.396812,5.704079,0,0,O38:SA:CTP7188,Europe/Paris,,O38, +O38:SP:719,1,"LA POSTE",44.907183,5.789296,0,0,O38:SA:CTP719,Europe/Paris,,O38, +O38:SP:7190,1,"HAMEAU VILLETTE",45.400356,5.723254,0,0,O38:SA:CTP7190,Europe/Paris,,O38, +O38:SP:7191,1,"HAMEAU VILLETTE",45.400488,5.723252,0,0,O38:SA:CTP7190,Europe/Paris,,O38, +O38:SP:7192,1,"GARE ROUTIERE",45.388269,5.733436,0,0,O38:SA:CTP7192,Europe/Paris,,O38, +O38:SP:7193,1,"GARE ROUTIERE",45.388117,5.73348,0,0,O38:SA:CTP7192,Europe/Paris,,O38, +O38:SP:7194,1,"CROISEMENT LE NEPLIER",45.407998,5.71057,0,0,O38:SA:CTP7194,Europe/Paris,,O38, +O38:SP:7195,1,"CROISEMENT LE NEPLIER",45.407956,5.710678,0,0,O38:SA:CTP7194,Europe/Paris,,O38, +O38:SP:7196,1,"LES LARDS",45.37846,5.700289,0,0,O38:SA:CTP7196,Europe/Paris,,O38, +O38:SP:7197,1,"LES LARDS",45.37843,5.700434,0,0,O38:SA:CTP7196,Europe/Paris,,O38, +O38:SP:7198,1,"ECOLE DU BOURG",45.388716,5.735019,0,0,O38:SA:CTP7198,Europe/Paris,,O38, +O38:SP:7199,1,"ECOLE DU BOURG",45.38878,5.735067,0,0,O38:SA:CTP7198,Europe/Paris,,O38, +O38:SP:720,1,"LA POSTE",44.908038,5.790455,0,0,O38:SA:CTP719,Europe/Paris,,O38, +O38:SP:7201,1,"LES MARTINS",45.392649,5.745223,0,0,O38:SA:CTP7201,Europe/Paris,,O38, +O38:SP:7202,1,"LA FOURVOIRIE",45.378575,5.747226,0,0,O38:SA:CTP7202,Europe/Paris,,O38, +O38:SP:7203,1,"LA FOURVOIRIE",45.378599,5.747333,0,0,O38:SA:CTP7202,Europe/Paris,,O38, +O38:SP:7204,1,"LES BOURDOIRES",45.398427,5.754328,0,0,O38:SA:CTP7204,Europe/Paris,,O38, +O38:SP:7205,1,"LES BOURDOIRES",45.397582,5.755642,0,0,O38:SA:CTP7204,Europe/Paris,,O38, +O38:SP:7206,1,"ST PHILIBERT EGLISE",45.379756,5.848988,0,0,O38:SA:CTP7206,Europe/Paris,,O38, +O38:SP:7207,1,"LES CLOITRES",45.383114,5.854345,0,0,O38:SA:CTP7207,Europe/Paris,,O38, +O38:SP:7208,1,"LES CLOITRES",45.383098,5.8542,0,0,O38:SA:CTP7207,Europe/Paris,,O38, +O38:SP:7209,1,"LES REY",45.389192,5.845016,0,0,O38:SA:CTP7209,Europe/Paris,,O38, +O38:SP:721,1,"DR.RICARD",44.903992,5.791436,0,0,O38:SA:CTP721,Europe/Paris,,O38, +O38:SP:7210,1,"ST PHILIBERT-LE MONUMENT",45.380896,5.85126,0,0,O38:SA:CTP7210,Europe/Paris,,O38, +O38:SP:7211,1,"ST PHILIBERT-LE MONUMENT",45.380816,5.851373,0,0,O38:SA:CTP7210,Europe/Paris,,O38, +O38:SP:7212,1,"LES ARRAGONS",45.382438,5.843906,0,0,O38:SA:CTP7212,Europe/Paris,,O38, +O38:SP:7213,1,"ST PHILIBERT-MAISON SAULE",45.379195,5.846296,0,0,O38:SA:CTP7213,Europe/Paris,,O38, +O38:SP:7214,1,"LE VILLARD",45.398378,5.843633,0,0,O38:SA:CTP7214,Europe/Paris,,O38, +O38:SP:7215,1,"BIFURCATION LES ARRAGONS",45.383847,5.84463,0,0,O38:SA:CTP7215,Europe/Paris,,O38, +O38:SP:7218,1,"BIFURCATION LES BAS/LE VILLARD",45.403062,5.842552,0,0,O38:SA:CTP7218,Europe/Paris,,O38, +O38:SP:7219,1,"LES BAS",45.403568,5.843527,0,0,O38:SA:CTP7219,Europe/Paris,,O38, +O38:SP:722,1,"DR.RICARD",44.9039,5.791509,0,0,O38:SA:CTP721,Europe/Paris,,O38, +O38:SP:7221,1,"LES VASSAUX",45.388631,5.853121,0,0,O38:SA:CTP7221,Europe/Paris,,O38, +O38:SP:7222,1,"LES VASSAUX",45.388655,5.853024,0,0,O38:SA:CTP7221,Europe/Paris,,O38, +O38:SP:7229,1,"COL DE MARCIEU",45.355953,5.919037,0,0,O38:SA:CTP7229,Europe/Paris,,O38, +O38:SP:723,1,"LE SAUZE",44.913672,5.799408,0,0,O38:SA:CTP723,Europe/Paris,,O38, +O38:SP:7231,1,"COL DE MARCIEU",45.356007,5.918978,0,0,O38:SA:CTP7229,Europe/Paris,,O38, +O38:SP:724,1,"LE SAUZE",44.913665,5.799276,0,0,O38:SA:CTP723,Europe/Paris,,O38, +O38:SP:7243,1,"LOTISSEMENT MARCIEU",45.355146,5.918522,0,0,OGE:SA:CTP7244,Europe/Paris,,O38, +O38:SP:7245,1,"LOTISSEMENT MARCIEU",45.355109,5.918552,0,0,OGE:SA:CTP7244,Europe/Paris,,O38, +O38:SP:725,1,"PONT HAUT",44.901614,5.817382,0,0,O38:SA:CTP725,Europe/Paris,,O38, +O38:SP:726,1,"PONT HAUT",44.901706,5.817395,0,0,O38:SA:CTP725,Europe/Paris,,O38, +O38:SP:727,1,"LA FAURIE",44.918219,5.807063,0,0,O38:SA:CTP727,Europe/Paris,,O38, +O38:SP:7279,1,"LES FONTAINES",45.360834,6.001776,0,0,OGE:SA:CTP7280,Europe/Paris,,O38, +O38:SP:728,1,"LA FAURIE",44.91831,5.807042,0,0,O38:SA:CTP727,Europe/Paris,,O38, +O38:SP:7281,1,"LES FONTAINES",45.361311,6.001813,0,0,OGE:SA:CTP7280,Europe/Paris,,O38, +O38:SP:7287,1,"LE VILLAGE",45.38048,5.967567,0,0,O38:SA:CTP7287,Europe/Paris,,O38, +O38:SP:7289,1,"LE VILLAGE",45.380241,5.967392,0,0,O38:SA:CTP7287,Europe/Paris,,O38, +O38:SP:729,1,"LE CROZET",44.899765,5.807777,0,0,O38:SA:CTP729,Europe/Paris,,O38, +O38:SP:7299,1,"CAVE COOPERATIVE",45.368851,5.958355,0,0,OGE:SA:CTP7300,Europe/Paris,,O38, +O38:SP:730,1,"LE CROZET",44.899875,5.80778,0,0,O38:SA:CTP729,Europe/Paris,,O38, +O38:SP:7301,1,"CAVE COOPERATIVE",45.36888,5.958261,0,0,OGE:SA:CTP7300,Europe/Paris,,O38, +O38:SP:7303,1,"HAUT TOUVET E.D.F.",45.364179,5.954695,0,0,O38:SA:CTP7303,Europe/Paris,,O38, +O38:SP:7305,1,"HAUT TOUVET E.D.F.",45.364087,5.954705,0,0,O38:SA:CTP7303,Europe/Paris,,O38, +O38:SP:7307,1,"LE SAINT-JEAN",45.361594,5.9515,0,0,OGE:SA:CTP7308,Europe/Paris,,O38, +O38:SP:7309,1,"LE SAINT-JEAN",45.361501,5.951455,0,0,OGE:SA:CTP7308,Europe/Paris,,O38, +O38:SP:731,1,"VILLARET-REYNAUD",44.920389,5.805684,0,0,O38:SA:CTP731,Europe/Paris,,O38, +O38:SP:732,1,"VILLARET-REYNAUD",44.920433,5.805697,0,0,O38:SA:CTP731,Europe/Paris,,O38, +O38:SP:7322,1,"LA GARE",45.359864,5.950414,0,0,O38:SA:CTP7322,Europe/Paris,,O38, +O38:SP:733,1,"LES BASTIONS ECOLE",44.898996,5.787934,0,0,O38:SA:CTP733,Europe/Paris,,O38, +O38:SP:734,1,"LES BASTIONS ECOLE",44.900278,5.787872,0,0,O38:SA:CTP733,Europe/Paris,,O38, +O38:SP:7341,1,"LA CHARRIERE",45.359652,5.948195,0,0,O38:SA:CTP7341,Europe/Paris,,O38, +O38:SP:7342,1,"LA CHARRIERE",45.358854,5.948418,0,0,O38:SA:CTP7341,Europe/Paris,,O38, +O38:SP:7344,1,"MAIRIE",45.374918,5.949151,0,0,O38:SA:CTP7344,Europe/Paris,,O38, +O38:SP:7345,1,"MAIRIE",45.374952,5.949261,0,0,O38:SA:CTP7344,Europe/Paris,,O38, +O38:SP:735,1,"LA MAIRIE",44.905997,5.7839,0,0,O38:SA:CTP735,Europe/Paris,,O38, +O38:SP:7355,1,"LA BRANCHY",45.371632,5.952723,0,0,OGE:SA:CTP7356,Europe/Paris,,O38, +O38:SP:7357,1,"LA BRANCHY",45.371471,5.952755,0,0,OGE:SA:CTP7356,Europe/Paris,,O38, +O38:SP:736,1,"LA MAIRIE",44.906431,5.784277,0,0,O38:SA:CTP735,Europe/Paris,,O38, +O38:SP:737,1,"LE FREYNET",44.927878,5.831997,0,0,O38:SA:CTP737,Europe/Paris,,O38, +O38:SP:738,1,"REPUBLIQUE",44.902526,5.78516,0,0,O38:SA:CTP738,Europe/Paris,,O38, +O38:SP:739,1,"REPUBLIQUE",44.902126,5.784753,0,0,O38:SA:CTP738,Europe/Paris,,O38, +O38:SP:7397,1,"LE DAVID",45.387114,6.067332,0,0,OGE:SA:CTP7398,Europe/Paris,,O38, +O38:SP:7399,1,"LE DAVID",45.387024,6.067333,0,0,OGE:SA:CTP7398,Europe/Paris,,O38, +O38:SP:740,1,"CHARLAIX",44.896556,5.816564,0,0,O38:SA:CTP740,Europe/Paris,,O38, +O38:SP:7404,1,"PLACE DE VERDUN",45.39404,6.074939,0,0,OGE:SA:CTP7403,Europe/Paris,,O38, +O38:SP:7406,1,"PLACE DE VERDUN",45.394004,6.07483,0,0,OGE:SA:CTP7403,Europe/Paris,,O38, +O38:SP:7408,1,"SAILLES",45.366748,6.033283,0,0,O38:SA:CTP7408,Europe/Paris,,O38, +O38:SP:741,1,"CHARLAIX",44.896496,5.816638,0,0,O38:SA:CTP740,Europe/Paris,,O38, +O38:SP:7410,1,"SAILLES",45.366778,6.032886,0,0,O38:SA:CTP7408,Europe/Paris,,O38, +O38:SP:744,1,"LES MIARDS",44.889049,5.835553,0,0,O38:SA:CTP744,Europe/Paris,,O38, +O38:SP:745,1,"LES MIARDS",44.889081,5.835462,0,0,O38:SA:CTP744,Europe/Paris,,O38, +O38:SP:7451,1,"LE CHABOUD",45.385119,6.061403,0,0,OGE:SA:CTP7452,Europe/Paris,,O38, +O38:SP:7453,1,"LE CHABOUD",45.385141,6.060443,0,0,OGE:SA:CTP7452,Europe/Paris,,O38, +O38:SP:7459,1,"ST PIERRE VILLAGE",45.374159,6.046651,0,0,O38:SA:CTP7459,Europe/Paris,,O38, +O38:SP:746,1,"LES RIEUX",44.891255,5.847628,0,0,O38:SA:CTP746,Europe/Paris,,O38, +O38:SP:7461,1,"ST PIERRE VILLAGE",45.374154,6.046697,0,0,O38:SA:CTP7459,Europe/Paris,,O38, +O38:SP:747,1,"LES RIEUX",44.891327,5.847633,0,0,O38:SA:CTP746,Europe/Paris,,O38, +O38:SP:7479,1,"MORETEL MAIRIE",45.367296,6.016737,0,0,OGE:SA:CTP7480,Europe/Paris,,O38, +O38:SP:748,1,"MALBUISSON",44.892559,5.842131,0,0,O38:SA:CTP748,Europe/Paris,,O38, +O38:SP:7481,1,"MORETEL MAIRIE",45.367332,6.016794,0,0,OGE:SA:CTP7480,Europe/Paris,,O38, +O38:SP:7483,1,"LA ROCHE",45.377505,6.051936,0,0,OGE:SA:CTP7484,Europe/Paris,,O38, +O38:SP:7485,1,"LA ROCHE",45.377333,6.051533,0,0,OGE:SA:CTP7484,Europe/Paris,,O38, +O38:SP:749,1,"MALBUISSON",44.892488,5.842124,0,0,O38:SA:CTP748,Europe/Paris,,O38, +O38:SP:750,1,"COLLEGE LOUIS MAUBERRET",44.898182,5.791021,0,0,O38:SA:CTP750,Europe/Paris,,O38, +O38:SP:751,1,"COLLEGE LOUIS MAUBERRET",44.898231,5.79109,0,0,O38:SA:CTP750,Europe/Paris,,O38, +O38:SP:7513,1,"LE CHATEAU D'EAU",45.465702,4.801774,0,0,O38:SA:CTP7513,Europe/Paris,,O38, +O38:SP:7515,1,"LE CHATEAU D'EAU",45.465689,4.80186,0,0,O38:SA:CTP7513,Europe/Paris,,O38, +O38:SP:7516,1,"L'AMBALLAN-CHEMIN MATI",45.472908,4.810733,0,0,O38:SA:CTP7516,Europe/Paris,,O38, +O38:SP:7517,1,"L'AMBALLAN-CHEMIN MATI",45.47288,4.810828,0,0,O38:SA:CTP7516,Europe/Paris,,O38, +O38:SP:7519,1,"PLACE",45.460176,4.812071,0,0,O38:SA:CTP7519,Europe/Paris,,O38, +O38:SP:752,1,"SALLE DES FETES",44.889832,5.796546,0,0,O38:SA:CTP752,Europe/Paris,,O38, +O38:SP:7520,1,"PLACE",45.460105,4.811975,0,0,O38:SA:CTP7519,Europe/Paris,,O38, +O38:SP:7522,1,"LE MARAIS",45.462158,4.802704,0,0,O38:SA:CTP7522,Europe/Paris,,O38, +O38:SP:7523,1,"LE MARAIS",45.462158,4.802685,0,0,O38:SA:CTP7522,Europe/Paris,,O38, +O38:SP:7524,1,"EGLISE",45.440876,4.771269,0,0,O38:SA:CTP7524,Europe/Paris,,O38, +O38:SP:7526,1,"LA MAIRIE",45.438959,4.770052,0,0,O38:SA:CTP7526,Europe/Paris,,O38, +O38:SP:7527,1,"LA MAIRIE",45.438969,4.770153,0,0,O38:SA:CTP7526,Europe/Paris,,O38, +O38:SP:7528,1,"GARE ST CLAIR LES ROCHES",45.452175,4.767922,0,0,O38:SA:CTP7528,Europe/Paris,,O38, +O38:SP:7529,1,"GARE ST CLAIR LES ROCHES",45.452146,4.767713,0,0,O38:SA:CTP7528,Europe/Paris,,O38, +O38:SP:753,1,"SALLE DES FETES",44.889765,5.796583,0,0,O38:SA:CTP752,Europe/Paris,,O38, +O38:SP:7530,1,"CARREFOUR BERTHELOT",45.445456,4.767434,0,0,O38:SA:CTP7530,Europe/Paris,,O38, +O38:SP:7531,1,"CARREFOUR BERTHELOT",45.445865,4.767261,0,0,O38:SA:CTP7530,Europe/Paris,,O38, +O38:SP:7532,1,"MAIRIE",45.440481,4.769839,0,0,O38:SA:CTP7532,Europe/Paris,,O38, +O38:SP:7533,1,"MAIRIE",45.44047,4.769738,0,0,O38:SA:CTP7532,Europe/Paris,,O38, +O38:SP:7534,1,"LA GARE",45.461111,4.768786,0,0,O38:SA:CTP7534,Europe/Paris,,O38, +O38:SP:7535,1,"LA GARE",45.461077,4.768888,0,0,O38:SA:CTP7534,Europe/Paris,,O38, +O38:SP:7536,1,"LA CROIX DE GLAY",45.435243,4.796337,0,0,O38:SA:CTP7536,Europe/Paris,,O38, +O38:SP:7537,1,"LA CROIX DE GLAY",45.435242,4.79645,0,0,O38:SA:CTP7536,Europe/Paris,,O38, +O38:SP:7538,1,"COLLEGE PRIVE LES MARRONNIERS",45.462458,4.768992,0,0,O38:SA:CTP7538,Europe/Paris,,O38, +O38:SP:7539,1,"COLLEGE PRIVE LES MARRONNIERS",45.462242,4.768587,0,0,O38:SA:CTP7538,Europe/Paris,,O38, +O38:SP:7540,1,"COLLEGE LE BASSENON",45.470824,4.775614,0,0,O38:SA:CTP7540,Europe/Paris,,O38, +O38:SP:7541,1,"COLLEGE LE BASSENON",45.470806,4.775566,0,0,O38:SA:CTP7540,Europe/Paris,,O38, +O38:SP:7542,1,"VILLAGE",45.44374,4.795014,0,0,O38:SA:CTP7542,Europe/Paris,,O38, +O38:SP:7543,1,"VILLAGE",45.44364,4.79502,0,0,O38:SA:CTP7542,Europe/Paris,,O38, +O38:SP:7544,1,"LE CHANET",45.448232,4.79766,0,0,O38:SA:CTP7544,Europe/Paris,,O38, +O38:SP:7545,1,"LE CHANET",45.448259,4.797833,0,0,O38:SA:CTP7544,Europe/Paris,,O38, +O38:SP:7546,1,"TOISIEU SILO",45.451259,4.804743,0,0,O38:SA:CTP7546,Europe/Paris,,O38, +O38:SP:7547,1,"TOISIEU SILO",45.451191,4.804781,0,0,O38:SA:CTP7546,Europe/Paris,,O38, +O38:SP:7548,1,"RN7 MAISON BRULEE",45.463669,4.82667,0,0,O38:SA:CTP7548,Europe/Paris,,O38, +O38:SP:7549,1,"RN7 MAISON BRULEE",45.463682,4.82657,0,0,O38:SA:CTP7548,Europe/Paris,,O38, +O38:SP:755,1,"FERME BRACHON",44.893145,5.792917,0,0,O38:SA:CTP755,Europe/Paris,,O38, +O38:SP:7551,1,"COLOMBETTE CHEMIN",45.463058,4.821332,0,0,O38:SA:CTP7551,Europe/Paris,,O38, +O38:SP:7554,1,"LIEURAZ",45.469158,4.826783,0,0,O38:SA:CTP7554,Europe/Paris,,O38, +O38:SP:7555,1,"LIEURAZ",45.469098,4.826821,0,0,O38:SA:CTP7554,Europe/Paris,,O38, +O38:SP:7556,1,"LE CLOS-LE BAS N7",45.431361,4.817846,0,0,O38:SA:CTP7556,Europe/Paris,,O38, +O38:SP:7557,1,"LE CLOS-LE BAS N7",45.431401,4.817768,0,0,O38:SA:CTP7556,Europe/Paris,,O38, +O38:SP:7559,1,"GD CHEMIN GAR. PATISSIER",45.472922,4.829167,0,0,O38:SA:CTP7559,Europe/Paris,,O38, +O38:SP:756,1,"FERME BRACHON",44.893187,5.793,0,0,O38:SA:CTP755,Europe/Paris,,O38, +O38:SP:7560,1,"GD CHEMIN GAR. PATISSIER",45.472918,4.829141,0,0,O38:SA:CTP7559,Europe/Paris,,O38, +O38:SP:7563,1,"LE GONTARD-PLACE",45.432143,4.936764,0,0,O38:SA:CTP7563,Europe/Paris,,O38, +O38:SP:7564,1,"LE GONTARD-PLACE",45.432241,4.937126,0,0,O38:SA:CTP7563,Europe/Paris,,O38, +O38:SP:7565,1,"LOT LES GARATIERES",45.42833,4.928232,0,0,O38:SA:CTP7565,Europe/Paris,,O38, +O38:SP:7566,1,"LOT LES GARATIERES",45.428284,4.928071,0,0,O38:SA:CTP7565,Europe/Paris,,O38, +O38:SP:7567,1,"LE FIT",45.443387,5.001053,0,0,O38:SA:CTP7567,Europe/Paris,,O38, +O38:SP:7568,1,"LE FIT",45.443437,5.001121,0,0,O38:SA:CTP7567,Europe/Paris,,O38, +O38:SP:757,1,"MAIRIE(PIVOL)",44.912704,5.807219,0,0,O38:SA:CTP757,Europe/Paris,,O38, +O38:SP:7570,1,"LE CYVAS",45.471735,4.973416,0,0,O38:SA:CTP7570,Europe/Paris,,O38, +O38:SP:7572,1,"LE CYVAS",45.471644,4.97339,0,0,O38:SA:CTP7570,Europe/Paris,,O38, +O38:SP:7573,1,"MAIRIE",45.440761,5.00546,0,0,O38:SA:CTP7573,Europe/Paris,,O38, +O38:SP:7575,1,"ECOLES",45.440874,5.005693,0,0,O38:SA:CTP7575,Europe/Paris,,O38, +O38:SP:7576,1,"ECOLES",45.440803,5.005717,0,0,O38:SA:CTP7575,Europe/Paris,,O38, +O38:SP:7577,1,"CAR.DU VERNAY",45.442876,4.993651,0,0,O38:SA:CTP7577,Europe/Paris,,O38, +O38:SP:7579,1,"CAR.CHEMIN DU VERNAY",45.442505,4.991455,0,0,O38:SA:CTP7579,Europe/Paris,,O38, +O38:SP:758,1,"MAIRIE(PIVOL)",44.912661,5.8073,0,0,O38:SA:CTP757,Europe/Paris,,O38, +O38:SP:7580,1,"CAR.CHEMIN DU VERNAY",45.442575,4.991436,0,0,O38:SA:CTP7579,Europe/Paris,,O38, +O38:SP:7583,1,"LES GARENNES",45.435813,4.978572,0,0,O38:SA:CTP7583,Europe/Paris,,O38, +O38:SP:7584,1,"LES GARENNES",45.435905,4.978534,0,0,O38:SA:CTP7583,Europe/Paris,,O38, +O38:SP:7586,1,"CENTRE",45.474245,4.997202,0,0,O38:SA:CTP7586,Europe/Paris,,O38, +O38:SP:7588,1,"CENTRE",45.47382,4.997908,0,0,O38:SA:CTP7586,Europe/Paris,,O38, +O38:SP:7589,1,"CHEZ JANIN",45.435401,4.974856,0,0,O38:SA:CTP7589,Europe/Paris,,O38, +O38:SP:759,1,"LES TERRASSES",44.888744,5.824417,0,0,O38:SA:CTP759,Europe/Paris,,O38, +O38:SP:7590,1,"CHEZ JANIN",45.435489,4.975047,0,0,O38:SA:CTP7589,Europe/Paris,,O38, +O38:SP:7591,1,"BOURNE CARREFOUR",45.44113,4.980959,0,0,O38:SA:CTP7591,Europe/Paris,,O38, +O38:SP:7592,1,"BOURNE CARREFOUR",45.440938,4.980414,0,0,O38:SA:CTP7591,Europe/Paris,,O38, +O38:SP:7596,1,"LE PINET",45.463146,5.001558,0,0,O38:SA:CTP7596,Europe/Paris,,O38, +O38:SP:7598,1,"LE PINET",45.463795,5.001625,0,0,O38:SA:CTP7596,Europe/Paris,,O38, +O38:SP:760,1,"LES TERRASSES",44.890535,5.825104,0,0,O38:SA:CTP759,Europe/Paris,,O38, +O38:SP:7600,1,"BOURG",45.429684,4.97055,0,0,O38:SA:CTP7600,Europe/Paris,,O38, +O38:SP:7601,1,"BOURG",45.429655,4.970643,0,0,O38:SA:CTP7600,Europe/Paris,,O38, +O38:SP:7605,1,"LA MARTINIERE",45.463424,4.983259,0,0,O38:SA:CTP7605,Europe/Paris,,O38, +O38:SP:7607,1,"LA MARTINIERE",45.463456,4.983216,0,0,O38:SA:CTP7605,Europe/Paris,,O38, +O38:SP:7609,1,"CHEZ PISTOLET",45.457329,4.998446,0,0,O38:SA:CTP7609,Europe/Paris,,O38, +O38:SP:761,1,"HOPITAL",44.905329,5.795315,0,0,O38:SA:CTP761,Europe/Paris,,O38, +O38:SP:7611,1,"CHEZ PISTOLET",45.457356,4.998645,0,0,O38:SA:CTP7609,Europe/Paris,,O38, +O38:SP:7612,1,"LE MILLET",45.439575,4.969533,0,0,O38:SA:CTP7612,Europe/Paris,,O38, +O38:SP:7613,1,"LE MILLET",45.439509,4.969288,0,0,O38:SA:CTP7612,Europe/Paris,,O38, +O38:SP:7614,1,"HAMEAU DE BUIS",45.441858,5.040404,0,0,O38:SA:CTP7614,Europe/Paris,,O38, +O38:SP:7615,1,"HAMEAU DE BUIS",45.441833,5.0404,0,0,O38:SA:CTP7614,Europe/Paris,,O38, +O38:SP:7617,1,"MAISON JULIEN",45.466951,5.07952,0,0,O38:SA:CTP7617,Europe/Paris,,O38, +O38:SP:7619,1,"MAISON JULIEN",45.466914,5.079711,0,0,O38:SA:CTP7617,Europe/Paris,,O38, +O38:SP:762,1,"HOPITAL",44.905259,5.795068,0,0,O38:SA:CTP761,Europe/Paris,,O38, +O38:SP:7620,1,"HAMEAU LE BURON",45.442828,5.019782,0,0,O38:SA:CTP7620,Europe/Paris,,O38, +O38:SP:7621,1,"HAMEAU LE BURON",45.442756,5.019786,0,0,O38:SA:CTP7620,Europe/Paris,,O38, +O38:SP:7623,1,"MAISON REVOLAT",45.467903,5.065228,0,0,O38:SA:CTP7623,Europe/Paris,,O38, +O38:SP:7625,1,"MAISON REVOLAT",45.467972,5.065258,0,0,O38:SA:CTP7623,Europe/Paris,,O38, +O38:SP:7627,1,"PLACE",45.470141,5.054904,0,0,OIV:SA:CTP7626,Europe/Paris,,O38, +O38:SP:7629,1,"PLACE",45.47021,5.054934,0,0,OIV:SA:CTP7626,Europe/Paris,,O38, +O38:SP:763,1,"LA CROIX",44.904974,5.807424,0,0,O38:SA:CTP763,Europe/Paris,,O38, +O38:SP:7630,1,"LE RAJAT",45.467075,5.07301,0,0,O38:SA:CTP7630,Europe/Paris,,O38, +O38:SP:7631,1,"LE RAJAT",45.46702,5.073165,0,0,O38:SA:CTP7630,Europe/Paris,,O38, +O38:SP:7632,1,"MAISON BAULE",45.432028,5.063772,0,0,O38:SA:CTP7632,Europe/Paris,,O38, +O38:SP:7633,1,"MAISON BAULE",45.432049,5.063587,0,0,O38:SA:CTP7632,Europe/Paris,,O38, +O38:SP:7634,1,"R.I.S.",45.425733,5.085377,0,0,O38:SA:CTP7634,Europe/Paris,,O38, +O38:SP:7635,1,"R.I.S.",45.425854,5.085447,0,0,O38:SA:CTP7634,Europe/Paris,,O38, +O38:SP:7636,1,"BOURG",45.433639,5.095253,0,0,O38:SA:CTP7636,Europe/Paris,,O38, +O38:SP:7637,1,"BOURG",45.433677,5.095167,0,0,O38:SA:CTP7636,Europe/Paris,,O38, +O38:SP:7638,1,"LE PONT ROUGE",45.458224,5.141262,0,0,O38:SA:CTP7638,Europe/Paris,,O38, +O38:SP:7639,1,"LE PONT ROUGE",45.458282,5.141322,0,0,O38:SA:CTP7638,Europe/Paris,,O38, +O38:SP:764,1,"LA CROIX",44.904902,5.807417,0,0,O38:SA:CTP763,Europe/Paris,,O38, +O38:SP:7640,1,"LES VALAISES",45.471287,5.121478,0,0,O38:SA:CTP7640,Europe/Paris,,O38, +O38:SP:7642,1,"LE MOULIN",45.467535,5.097021,0,0,O38:SA:CTP7642,Europe/Paris,,O38, +O38:SP:7643,1,"LE MOULIN",45.467464,5.096997,0,0,O38:SA:CTP7642,Europe/Paris,,O38, +O38:SP:7646,1,"LE SERPOLLIER",45.469822,5.114994,0,0,O38:SA:CTP7646,Europe/Paris,,O38, +O38:SP:7647,1,"LE SERPOLLIER",45.469785,5.11494,0,0,O38:SA:CTP7646,Europe/Paris,,O38, +O38:SP:7649,1,"SOUS CHENAUX",45.467134,5.089217,0,0,O38:SA:CTP7649,Europe/Paris,,O38, +O38:SP:765,1,"MEHARIE",44.887293,5.783535,0,0,O38:SA:CTP765,Europe/Paris,,O38, +O38:SP:7651,1,"SOUS CHENAUX",45.467065,5.08924,0,0,O38:SA:CTP7649,Europe/Paris,,O38, +O38:SP:7653,1,"GEORGILLON",45.428522,5.089786,0,0,O38:SA:CTP7653,Europe/Paris,,O38, +O38:SP:7654,1,"GEORGILLON",45.428588,5.089747,0,0,O38:SA:CTP7653,Europe/Paris,,O38, +O38:SP:7657,1,"QUARTIER L'EGLISE",45.471071,5.104026,0,0,O38:SA:CTP7657,Europe/Paris,,O38, +O38:SP:7659,1,"QUARTIER L'EGLISE",45.471056,5.103926,0,0,O38:SA:CTP7657,Europe/Paris,,O38, +O38:SP:766,1,"MEHARIE",44.887364,5.783521,0,0,O38:SA:CTP765,Europe/Paris,,O38, +O38:SP:7664,1,"PONT DU RECOURS",45.467202,5.107229,0,0,O38:SA:CTP7664,Europe/Paris,,O38, +O38:SP:7666,1,"PONT DU RECOURS",45.467235,5.107454,0,0,O38:SA:CTP7664,Europe/Paris,,O38, +O38:SP:7669,1,"LE PONT ROUGE MAISON MARCHETTI",45.460896,5.135851,0,0,O38:SA:CTP7669,Europe/Paris,,O38, +O38:SP:767,1,"COMPLEXE JEAN MOREL",44.896979,5.78932,0,0,O38:SA:CTP767,Europe/Paris,,O38, +O38:SP:7672,1,"LE PONT ROUGE CHARTIER",45.464065,5.12612,0,0,O38:SA:CTP7672,Europe/Paris,,O38, +O38:SP:7674,1,"D51",45.423731,5.175192,0,0,O38:SA:CTP7674,Europe/Paris,,O38, +O38:SP:7675,1,"D51",45.423742,5.175184,0,0,O38:SA:CTP7674,Europe/Paris,,O38, +O38:SP:7676,1,"LE VILLAGE",45.458174,5.181041,0,0,O38:SA:CTP7676,Europe/Paris,,O38, +O38:SP:7677,1,"LE VILLAGE",45.458175,5.181016,0,0,O38:SA:CTP7676,Europe/Paris,,O38, +O38:SP:7678,1,"LES ARGOUDS",45.426093,5.180228,0,0,O38:SA:CTP7678,Europe/Paris,,O38, +O38:SP:7679,1,"LES ARGOUDS",45.426055,5.180394,0,0,O38:SA:CTP7678,Europe/Paris,,O38, +O38:SP:768,1,"COMPLEXE JEAN MOREL",44.897091,5.789326,0,0,O38:SA:CTP767,Europe/Paris,,O38, +O38:SP:7681,1,"BONNEVAUX-RD518",45.462358,5.161051,0,0,O38:SA:CTP7681,Europe/Paris,,O38, +O38:SP:7682,1,"EGLISE",45.431756,5.200308,0,0,O38:SA:CTP7682,Europe/Paris,,O38, +O38:SP:7683,1,"EGLISE",45.431658,5.20042,0,0,O38:SA:CTP7682,Europe/Paris,,O38, +O38:SP:7684,1,"MAIS.JANIN-COSTE",45.431688,5.188521,0,0,O38:SA:CTP7684,Europe/Paris,,O38, +O38:SP:7685,1,"MAIS.JANIN-COSTE",45.431617,5.188539,0,0,O38:SA:CTP7684,Europe/Paris,,O38, +O38:SP:7686,1,"LE NEMOZ",45.431554,5.205605,0,0,O38:SA:CTP7686,Europe/Paris,,O38, +O38:SP:7687,1,"LE NEMOZ",45.431518,5.205744,0,0,O38:SA:CTP7686,Europe/Paris,,O38, +O38:SP:7688,1,"BOULANGERIE",45.431547,5.205583,0,0,O38:SA:CTP7688,Europe/Paris,,O38, +O38:SP:7689,1,"BOULANGERIE",45.431531,5.20591,0,0,O38:SA:CTP7688,Europe/Paris,,O38, +O38:SP:7690,1,"LOT.GUILLERMOND",45.428158,5.187314,0,0,O38:SA:CTP7690,Europe/Paris,,O38, +O38:SP:7691,1,"LOT.GUILLERMOND",45.428155,5.187464,0,0,O38:SA:CTP7690,Europe/Paris,,O38, +O38:SP:7692,1,"LES NOISETIERS",45.431738,5.196796,0,0,O38:SA:CTP7692,Europe/Paris,,O38, +O38:SP:7693,1,"LES NOISETIERS",45.43162,5.196415,0,0,O38:SA:CTP7692,Europe/Paris,,O38, +O38:SP:7694,1,"LE VILLAGE",45.431516,5.205867,0,0,O38:SA:CTP7694,Europe/Paris,,O38, +O38:SP:7695,1,"LE VILLAGE",45.431546,5.205545,0,0,O38:SA:CTP7694,Europe/Paris,,O38, +O38:SP:7697,1,"LE LAUDIAR",45.432937,5.193703,0,0,O38:SA:CTP7697,Europe/Paris,,O38, +O38:SP:7698,1,"LE LAUDIAR",45.432867,5.193723,0,0,O38:SA:CTP7697,Europe/Paris,,O38, +O38:SP:7699,1,"BONNEVAUX",45.46101,5.156013,0,0,O38:SA:CTP7699,Europe/Paris,,O38, +O38:SP:7700,1,"BONNEVAUX",45.460959,5.156065,0,0,O38:SA:CTP7699,Europe/Paris,,O38, +O38:SP:7701,1,"ECOLE MATERNELLE",45.428599,5.22968,0,0,O38:SA:CTP7701,Europe/Paris,,O38, +O38:SP:7703,1,"ECOLE PRIMAIRE",45.429901,5.231188,0,0,O38:SA:CTP7703,Europe/Paris,,O38, +O38:SP:7705,1,"PLACE",45.428452,5.225775,0,0,O38:SA:CTP7705,Europe/Paris,,O38, +O38:SP:7706,1,"PLACE",45.428382,5.225869,0,0,O38:SA:CTP7705,Europe/Paris,,O38, +O38:SP:7707,1,"LES RUATS",45.424504,5.228133,0,0,O38:SA:CTP7707,Europe/Paris,,O38, +O38:SP:7708,1,"LES RUATS",45.424599,5.22792,0,0,O38:SA:CTP7707,Europe/Paris,,O38, +O38:SP:7709,1,"LE VILLAGE",45.428248,5.225707,0,0,O38:SA:CTP7709,Europe/Paris,,O38, +O38:SP:771,1,"CLOS DU PUITS",44.8887,5.788324,0,0,O38:SA:CTP771,Europe/Paris,,O38, +O38:SP:7710,1,"LE VILLAGE",45.428109,5.22566,0,0,O38:SA:CTP7709,Europe/Paris,,O38, +O38:SP:7711,1,"MAISON CLAVEL",45.429465,5.238666,0,0,O38:SA:CTP7711,Europe/Paris,,O38, +O38:SP:7712,1,"VILLARNOUD D51",45.430046,5.245471,0,0,O38:SA:CTP7712,Europe/Paris,,O38, +O38:SP:7713,1,"VILLARNOUD D51",45.430023,5.245533,0,0,O38:SA:CTP7712,Europe/Paris,,O38, +O38:SP:7714,1,"ROUTE DU LIERS",45.432292,5.259434,0,0,O38:SA:CTP7714,Europe/Paris,,O38, +O38:SP:7715,1,"ROUTE DU LIERS",45.43236,5.2594,0,0,O38:SA:CTP7714,Europe/Paris,,O38, +O38:SP:7716,1,"BASCULE",45.434781,5.271844,0,0,O38:SA:CTP7716,Europe/Paris,,O38, +O38:SP:7717,1,"BASCULE",45.434845,5.271815,0,0,O38:SA:CTP7716,Europe/Paris,,O38, +O38:SP:7718,1,"LE CANEL",45.431525,5.213321,0,0,O38:SA:CTP7718,Europe/Paris,,O38, +O38:SP:7719,1,"LE CANEL",45.431454,5.213568,0,0,O38:SA:CTP7718,Europe/Paris,,O38, +O38:SP:772,1,"CLOS DU PUITS",44.888749,5.788251,0,0,O38:SA:CTP771,Europe/Paris,,O38, +O38:SP:7720,1,"Z.A",45.432755,5.27215,0,0,O38:SA:CTP7720,Europe/Paris,,O38, +O38:SP:7721,1,"Z.A",45.432811,5.272231,0,0,O38:SA:CTP7720,Europe/Paris,,O38, +O38:SP:7722,1,"MAIRIE",45.4213,5.311418,0,0,O38:SA:CTP7722,Europe/Paris,,O38, +O38:SP:7723,1,"MAIRIE",45.421035,5.311814,0,0,O38:SA:CTP7722,Europe/Paris,,O38, +O38:SP:7726,1,"CENTRE",45.44142,5.329916,0,0,O38:SA:CTP7726,Europe/Paris,,O38, +O38:SP:7727,1,"CENTRE",45.441473,5.329847,0,0,O38:SA:CTP7726,Europe/Paris,,O38, +O38:SP:7728,1,"PLACE",45.452146,5.290411,0,0,O38:SA:CTP7728,Europe/Paris,,O38, +O38:SP:7729,1,"PLACE",45.451868,5.290306,0,0,O38:SA:CTP7728,Europe/Paris,,O38, +O38:SP:773,1,"CARREF.SERGE FEU",44.925609,5.851671,0,0,O38:SA:CTP773,Europe/Paris,,O38, +O38:SP:7730,1,"ROUTE DE FLACHERES",45.458091,5.291647,0,0,O38:SA:CTP7730,Europe/Paris,,O38, +O38:SP:7731,1,"ROUTE DE FLACHERES",45.458257,5.291827,0,0,O38:SA:CTP7730,Europe/Paris,,O38, +O38:SP:7732,1,"BAS CHAMPIER",45.44542,5.2907,0,0,O38:SA:CTP7732,Europe/Paris,,O38, +O38:SP:7733,1,"BAS CHAMPIER",45.44556,5.29047,0,0,O38:SA:CTP7732,Europe/Paris,,O38, +O38:SP:7734,1,"LE CONTOUR",45.436514,5.299313,0,0,O38:SA:CTP7734,Europe/Paris,,O38, +O38:SP:7736,1,"REGARDIN D71D",45.419441,5.316879,0,0,O38:SA:CTP7736,Europe/Paris,,O38, +O38:SP:7737,1,"REGARDIN D71D",45.41949,5.316955,0,0,O38:SA:CTP7736,Europe/Paris,,O38, +O38:SP:7738,1,"ROSSATIERE D71D",45.423948,5.303583,0,0,O38:SA:CTP7738,Europe/Paris,,O38, +O38:SP:7739,1,"ROSSATIERE D71D",45.424004,5.303648,0,0,O38:SA:CTP7738,Europe/Paris,,O38, +O38:SP:774,1,"CARREF.SERGE FEU",44.925541,5.851697,0,0,O38:SA:CTP773,Europe/Paris,,O38, +O38:SP:7740,1,"DANTONNIERE D71D",45.425343,5.296231,0,0,O38:SA:CTP7740,Europe/Paris,,O38, +O38:SP:7741,1,"DANTONNIERE D71D",45.425276,5.296194,0,0,O38:SA:CTP7740,Europe/Paris,,O38, +O38:SP:7744,1,"GARAGE",45.450065,5.38473,0,0,O38:SA:CTP7744,Europe/Paris,,O38, +O38:SP:7745,1,"GARAGE",45.450062,5.384628,0,0,O38:SA:CTP7744,Europe/Paris,,O38, +O38:SP:7746,1,"ROSSATIERE",45.445556,5.408401,0,0,O38:SA:CTP7746,Europe/Paris,,O38, +O38:SP:7747,1,"ROSSATIERE",45.445567,5.407934,0,0,O38:SA:CTP7746,Europe/Paris,,O38, +O38:SP:7748,1,"LE HAUT",45.452662,5.382767,0,0,O38:SA:CTP7748,Europe/Paris,,O38, +O38:SP:7749,1,"LE HAUT",45.452721,5.382826,0,0,O38:SA:CTP7748,Europe/Paris,,O38, +O38:SP:7750,1,"LA CARIEVE",45.450783,5.409751,0,0,O38:SA:CTP7750,Europe/Paris,,O38, +O38:SP:7751,1,"LA CARIEVE",45.450755,5.409656,0,0,O38:SA:CTP7750,Europe/Paris,,O38, +O38:SP:7752,1,"HAMEAU DE VAUX",45.461204,5.409467,0,0,O38:SA:CTP7752,Europe/Paris,,O38, +O38:SP:7753,1,"HAMEAU DE VAUX",45.461214,5.409568,0,0,O38:SA:CTP7752,Europe/Paris,,O38, +O38:SP:7754,1,"CROIST RTE DU CHEVALET",45.460693,5.412452,0,0,O38:SA:CTP7754,Europe/Paris,,O38, +O38:SP:7755,1,"CROIST RTE DU CHEVALET",45.460683,5.412432,0,0,O38:SA:CTP7754,Europe/Paris,,O38, +O38:SP:7756,1,"PLACE DE LA FONTAINE",45.455519,5.378417,0,0,O38:SA:CTP7756,Europe/Paris,,O38, +O38:SP:7757,1,"PLACE DE LA FONTAINE",45.455492,5.378512,0,0,O38:SA:CTP7756,Europe/Paris,,O38, +O38:SP:7758,1,"ROUTE DE BIZONNES",45.459831,5.371962,0,0,O38:SA:CTP7758,Europe/Paris,,O38, +O38:SP:776,1,"LES PRAS",44.917878,5.871974,0,0,O38:SA:CTP776,Europe/Paris,,O38, +O38:SP:7760,1,"LES LIERS",45.424734,5.392482,0,0,O38:SA:CTP7760,Europe/Paris,,O38, +O38:SP:7761,1,"VILLAGE",45.465134,5.350949,0,0,O38:SA:CTP7761,Europe/Paris,,O38, +O38:SP:7762,1,"VILLAGE",45.465111,5.351046,0,0,O38:SA:CTP7761,Europe/Paris,,O38, +O38:SP:7763,1,"LE BAS",45.462273,5.349805,0,0,O38:SA:CTP7763,Europe/Paris,,O38, +O38:SP:7764,1,"LE BAS",45.462317,5.349725,0,0,O38:SA:CTP7763,Europe/Paris,,O38, +O38:SP:7765,1,"PISCICULTURE",45.443499,5.449637,0,0,O38:SA:CTP7765,Europe/Paris,,O38, +O38:SP:7766,1,"PISCICULTURE",45.443519,5.449734,0,0,O38:SA:CTP7765,Europe/Paris,,O38, +O38:SP:7767,1,"TERNIN",45.4402,5.443905,0,0,O38:SA:CTP7767,Europe/Paris,,O38, +O38:SP:7768,1,"TERNIN",45.440184,5.444005,0,0,O38:SA:CTP7767,Europe/Paris,,O38, +O38:SP:7769,1,"ECOLES",45.433152,5.439207,0,0,O38:SA:CTP7769,Europe/Paris,,O38, +O38:SP:777,1,"MALBUISSON",44.896561,5.857112,0,0,O38:SA:CTP777,Europe/Paris,,O38, +O38:SP:7770,1,"ECOLES",45.433105,5.439285,0,0,O38:SA:CTP7769,Europe/Paris,,O38, +O38:SP:7771,1,"LES 4 ROUTES",45.428236,5.432871,0,0,O38:SA:CTP7771,Europe/Paris,,O38, +O38:SP:7772,1,"CUETAN",45.421029,5.451824,0,0,O38:SA:CTP7772,Europe/Paris,,O38, +O38:SP:7773,1,"CUETAN",45.421154,5.451497,0,0,O38:SA:CTP7772,Europe/Paris,,O38, +O38:SP:7774,1,"LA GARE",45.438349,5.428844,0,0,O38:SA:CTP7774,Europe/Paris,,O38, +O38:SP:7775,1,"LA GARE",45.438474,5.428903,0,0,O38:SA:CTP7774,Europe/Paris,,O38, +O38:SP:7776,1,"COMBE-RTE RONGY",45.455907,5.439881,0,0,O38:SA:CTP7776,Europe/Paris,,O38, +O38:SP:7777,1,"COMBE-RTE RONGY",45.455969,5.439831,0,0,O38:SA:CTP7776,Europe/Paris,,O38, +O38:SP:7778,1,"HAMEAU LES BLACHES",45.434944,5.422614,0,0,O38:SA:CTP7778,Europe/Paris,,O38, +O38:SP:7779,1,"HAMEAU LES BLACHES",45.434875,5.422582,0,0,O38:SA:CTP7778,Europe/Paris,,O38, +O38:SP:778,1,"MALBUISSON",44.896678,5.857073,0,0,O38:SA:CTP777,Europe/Paris,,O38, +O38:SP:7780,1,"HAMEAU LA COMBE",45.454707,5.435432,0,0,O38:SA:CTP7780,Europe/Paris,,O38, +O38:SP:7781,1,"HAMEAU LA COMBE",45.454746,5.435347,0,0,O38:SA:CTP7780,Europe/Paris,,O38, +O38:SP:7782,1,"LES SABLES",45.459683,5.446386,0,0,O38:SA:CTP7782,Europe/Paris,,O38, +O38:SP:7783,1,"LES SABLES",45.459643,5.446471,0,0,O38:SA:CTP7782,Europe/Paris,,O38, +O38:SP:7784,1,"GALIEVE",45.463398,5.419527,0,0,O38:SA:CTP7784,Europe/Paris,,O38, +O38:SP:7785,1,"GALIEVE",45.463452,5.41946,0,0,O38:SA:CTP7784,Europe/Paris,,O38, +O38:SP:7786,1,"LA RONGY",45.452023,5.447725,0,0,O38:SA:CTP7786,Europe/Paris,,O38, +O38:SP:7787,1,"LA RONGY",45.451993,5.447818,0,0,O38:SA:CTP7786,Europe/Paris,,O38, +O38:SP:7788,1,"CENTRE",45.441077,5.428147,0,0,O38:SA:CTP7788,Europe/Paris,,O38, +O38:SP:7789,1,"CENTRE",45.441053,5.428061,0,0,O38:SA:CTP7788,Europe/Paris,,O38, +O38:SP:779,1,"LE HAUT",44.906618,5.851389,0,0,O38:SA:CTP779,Europe/Paris,,O38, +O38:SP:7790,1,"LA MOTTE",45.44639,5.445524,0,0,O38:SA:CTP7790,Europe/Paris,,O38, +O38:SP:7791,1,"LA MOTTE",45.446404,5.445625,0,0,O38:SA:CTP7790,Europe/Paris,,O38, +O38:SP:7793,1,"HAMEAU PIOTIERE",45.431756,5.428215,0,0,O38:SA:CTP7793,Europe/Paris,,O38, +O38:SP:7794,1,"LEPPAR LE VALLON",45.445219,5.428976,0,0,O38:SA:CTP7794,Europe/Paris,,O38, +O38:SP:7795,1,"LEPPAR LE VALLON",45.445221,5.428887,0,0,O38:SA:CTP7794,Europe/Paris,,O38, +O38:SP:7796,1,"LE LAC",45.431336,5.414074,0,0,O38:SA:CTP7796,Europe/Paris,,O38, +O38:SP:7797,1,"LE LAC",45.431206,5.414106,0,0,O38:SA:CTP7796,Europe/Paris,,O38, +O38:SP:7798,1,"LES HALLES",45.44311,5.423692,0,0,O38:SA:CTP7798,Europe/Paris,,O38, +O38:SP:7799,1,"LES HALLES",45.443077,5.424183,0,0,O38:SA:CTP7798,Europe/Paris,,O38, +O38:SP:780,1,"LE HAUT",44.906689,5.851377,0,0,O38:SA:CTP779,Europe/Paris,,O38, +O38:SP:7800,1,"MAT LE TULIPIER (PRIVEE)",45.444155,5.430556,0,0,O38:SA:CTP7800,Europe/Paris,,O38, +O38:SP:7802,1,"BLAUNE VILLAGE",45.432367,5.468169,0,0,O38:SA:CTP7802,Europe/Paris,,O38, +O38:SP:7803,1,"BLAUNE VILLAGE",45.432398,5.468075,0,0,O38:SA:CTP7802,Europe/Paris,,O38, +O38:SP:7804,1,"LES BARILS",45.451144,5.431894,0,0,O38:SA:CTP7804,Europe/Paris,,O38, +O38:SP:7805,1,"LES BARILS",45.451073,5.431905,0,0,O38:SA:CTP7804,Europe/Paris,,O38, +O38:SP:7806,1,"ROUTE DE BLAUNE",45.422202,5.47242,0,0,O38:SA:CTP7806,Europe/Paris,,O38, +O38:SP:7807,1,"ROUTE DE BLAUNE",45.422152,5.472342,0,0,O38:SA:CTP7806,Europe/Paris,,O38, +O38:SP:7808,1,"CENTRE",45.422297,5.475263,0,0,O38:SA:CTP7808,Europe/Paris,,O38, +O38:SP:7809,1,"CENTRE",45.422372,5.475118,0,0,O38:SA:CTP7808,Europe/Paris,,O38, +O38:SP:781,1,"PLACE",44.900262,5.906168,0,0,O38:SA:CTP781,Europe/Paris,,O38, +O38:SP:7811,1,"PRI LE TULIPIER (PRIVEE)",45.445709,5.429632,0,0,O38:SA:CTP7811,Europe/Paris,,O38, +O38:SP:7812,1,"LOT LES JONQUILLES",45.439944,5.422006,0,0,O38:SA:CTP7812,Europe/Paris,,O38, +O38:SP:7813,1,"LOT LES JONQUILLES",45.440013,5.421978,0,0,O38:SA:CTP7812,Europe/Paris,,O38, +O38:SP:7814,1,"CHEMIN LA RAZ",45.438617,5.416456,0,0,O38:SA:CTP7814,Europe/Paris,,O38, +O38:SP:7815,1,"CHEMIN LA RAZ",45.438622,5.416558,0,0,O38:SA:CTP7814,Europe/Paris,,O38, +O38:SP:7817,1,"GARE",45.424999,5.516706,0,0,OVO:SA:CTP7816,Europe/Paris,,O38, +O38:SP:7819,1,"GARE",45.425026,5.516596,0,0,OVO:SA:CTP7816,Europe/Paris,,O38, +O38:SP:782,1,"PLACE",44.900298,5.906136,0,0,O38:SA:CTP781,Europe/Paris,,O38, +O38:SP:7821,1,"PLACE DU MARCHE",45.428566,5.5142,0,0,OVO:SA:CTP14386,Europe/Paris,,O38, +O38:SP:7822,1,"PLACE DU MARCHE",45.428855,5.514219,0,0,OVO:SA:CTP14386,Europe/Paris,,O38, +O38:SP:7824,1,"MARTIN CLUZEL",45.433402,5.513957,0,0,OVO:SA:CTP7823,Europe/Paris,,O38, +O38:SP:7826,1,"VIRAGE JANIN",45.42947,5.500063,0,0,OVO:SA:CTP7825,Europe/Paris,,O38, +O38:SP:7828,1,"VIRAGE JANIN",45.429336,5.499931,0,0,OVO:SA:CTP7825,Europe/Paris,,O38, +O38:SP:783,1,"PONT DU PRETRE",44.894935,5.868896,0,0,O38:SA:CTP783,Europe/Paris,,O38, +O38:SP:7830,1,"LE GUILLERMET",45.413763,5.530717,0,0,OVO:SA:CTP7829,Europe/Paris,,O38, +O38:SP:7832,1,"LE GUILLERMET",45.413579,5.530787,0,0,OVO:SA:CTP7829,Europe/Paris,,O38, +O38:SP:7838,1,"VERS ARS",45.449032,5.513337,0,0,OVO:SA:CTP7837,Europe/Paris,,O38, +O38:SP:784,1,"PONT DU PRETRE",44.8946,5.869299,0,0,O38:SA:CTP783,Europe/Paris,,O38, +O38:SP:7840,1,"VERS ARS",45.449162,5.513369,0,0,OVO:SA:CTP7837,Europe/Paris,,O38, +O38:SP:7842,1,"VERNAY HT-S.D.FETES",45.423704,5.495654,0,0,O38:SA:CTP7842,Europe/Paris,,O38, +O38:SP:7843,1,"VERNAY HT-S.D.FETES",45.423632,5.495642,0,0,O38:SA:CTP7842,Europe/Paris,,O38, +O38:SP:7844,1,"VERNAY LE BAS",45.424056,5.48961,0,0,O38:SA:CTP7844,Europe/Paris,,O38, +O38:SP:7845,1,"VERNAY LE BAS",45.424105,5.48958,0,0,O38:SA:CTP7844,Europe/Paris,,O38, +O38:SP:7847,1,"OFFICE DE TOURISME",45.432578,5.516266,0,0,O38:SA:CTP7847,Europe/Paris,,O38, +O38:SP:7848,1,"OFFICE DE TOURISME",45.432704,5.51643,0,0,O38:SA:CTP7847,Europe/Paris,,O38, +O38:SP:785,1,"EQUIPEMENT",44.898774,5.898856,0,0,O38:SA:CTP785,Europe/Paris,,O38, +O38:SP:7850,1,"LES MAURES",45.441914,5.560074,0,0,OVO:SA:CTP7851,Europe/Paris,,O38, +O38:SP:7853,1,"VILLAGE",45.413446,5.55692,0,0,OVO:SA:CTP7854,Europe/Paris,,O38, +O38:SP:7855,1,"VILLAGE",45.413184,5.557064,0,0,OVO:SA:CTP7854,Europe/Paris,,O38, +O38:SP:7857,1,"VILLAGE",45.439071,5.595367,0,0,OVO:SA:CTP7858,Europe/Paris,,O38, +O38:SP:786,1,"EQUIPEMENT",44.898768,5.899027,0,0,O38:SA:CTP785,Europe/Paris,,O38, +O38:SP:7861,1,"LA SARRA",45.437151,5.58309,0,0,OVO:SA:CTP7860,Europe/Paris,,O38, +O38:SP:7863,1,"LA SARRA",45.43716,5.582758,0,0,OVO:SA:CTP7860,Europe/Paris,,O38, +O38:SP:7865,1,"L'ARSENAL",45.430895,5.567985,0,0,O38:SA:CTP7865,Europe/Paris,,O38, +O38:SP:7867,1,"L'ARSENAL",45.430463,5.567466,0,0,O38:SA:CTP7865,Europe/Paris,,O38, +O38:SP:7868,1,"VILLAGE",45.448943,5.548887,0,0,OVO:SA:CTP14372,Europe/Paris,,O38, +O38:SP:7870,1,"LES RIVOIRES",45.459926,5.590252,0,0,OVO:SA:CTP7869,Europe/Paris,,O38, +O38:SP:7873,1,"LA CHAPELLE",45.452234,5.677965,0,0,OVO:SA:CTP7872,Europe/Paris,,O38, +O38:SP:7875,1,"LA CHAPELLE",45.452209,5.677864,0,0,OVO:SA:CTP7872,Europe/Paris,,O38, +O38:SP:7876,1,"LA COTE D'AINAN",45.442052,5.617069,0,0,OVO:SA:CTP14452,Europe/Paris,,O38, +O38:SP:7877,1,"LA COTE D'AINAN",45.44192,5.616613,0,0,OVO:SA:CTP14452,Europe/Paris,,O38, +O38:SP:7879,1,"LA FAGOTIERE",45.446038,5.675359,0,0,O38:SA:CTP7879,Europe/Paris,,O38, +O38:SP:7881,1,"VILLAGE",45.444762,5.663364,0,0,OVO:SA:CTP248,Europe/Paris,,O38, +O38:SP:7883,1,"NOUVELIERE",45.433811,5.644743,0,0,OVO:SA:CTP7882,Europe/Paris,,O38, +O38:SP:7885,1,"PIVOTIERE",45.440023,5.6601,0,0,OVO:SA:CTP7886,Europe/Paris,,O38, +O38:SP:7888,1,"LE BURLET",45.433632,5.650293,0,0,O38:SA:CTP7888,Europe/Paris,,O38, +O38:SP:789,1,"GENDARMERIE",44.898999,5.911645,0,0,O38:SA:CTP789,Europe/Paris,,O38, +O38:SP:7891,1,"CHOCHE - LE PARIS",45.45597,5.647812,0,0,O38:SA:CTP7891,Europe/Paris,,O38, +O38:SP:7894,1,"PISCINE - CAFE DELPHIN",45.455954,5.636847,0,0,O38:SA:CTP7894,Europe/Paris,,O38, +O38:SP:7896,1,"PISCINE - CAFE DELPHIN",45.455899,5.636874,0,0,O38:SA:CTP7894,Europe/Paris,,O38, +O38:SP:7898,1,"LE ROULET",45.454248,5.631671,0,0,O38:SA:CTP7898,Europe/Paris,,O38, +O38:SP:790,1,"GENDARMERIE",44.899141,5.911541,0,0,O38:SA:CTP789,Europe/Paris,,O38, +O38:SP:7900,1,"LE ROULET",45.454856,5.631549,0,0,O38:SA:CTP7898,Europe/Paris,,O38, +O38:SP:7902,1,"VILLAGE",45.45636,5.635104,0,0,O38:SA:CTP7902,Europe/Paris,,O38, +O38:SP:7904,1,"VILLAGE",45.45621,5.634621,0,0,O38:SA:CTP7902,Europe/Paris,,O38, +O38:SP:7905,1,"CHOCHE - BOULONGEAT",45.456935,5.6548,0,0,OVO:SA:CTP14682,Europe/Paris,,O38, +O38:SP:7907,1,"CHOCHE - LES BROSSES",45.454189,5.643902,0,0,OVO:SA:CTP7906,Europe/Paris,,O38, +O38:SP:7909,1,"GENDARMERIE",45.451604,5.630442,0,0,O38:SA:CTP7909,Europe/Paris,,O38, +O38:SP:791,1,"LE SERT",44.892637,5.855553,0,0,O38:SA:CTP791,Europe/Paris,,O38, +O38:SP:7911,1,"GENDARMERIE",45.450715,5.630196,0,0,O38:SA:CTP7909,Europe/Paris,,O38, +O38:SP:7913,1,"HLM",45.435351,5.709307,0,0,O38:SA:CTP7913,Europe/Paris,,O38, +O38:SP:7914,1,"HLM",45.435386,5.709176,0,0,O38:SA:CTP7913,Europe/Paris,,O38, +O38:SP:7915,1,"CHEMIN DU FROU",45.433208,5.70982,0,0,O38:SA:CTP7915,Europe/Paris,,O38, +O38:SP:7916,1,"CHEMIN DU FROU",45.433214,5.709736,0,0,O38:SA:CTP7915,Europe/Paris,,O38, +O38:SP:792,1,"LA PLACE",44.902046,5.948675,0,0,O38:SA:CTP792,Europe/Paris,,O38, +O38:SP:7920,1,"LA GROTTE",45.424061,5.705123,0,0,O38:SA:CTP7920,Europe/Paris,,O38, +O38:SP:7921,1,"LE GRAND COSSERT BAS",45.445146,5.700955,0,0,O38:SA:CTP7921,Europe/Paris,,O38, +O38:SP:7924,1,"LE PERRON",45.440572,5.707292,0,0,O38:SA:CTP7924,Europe/Paris,,O38, +O38:SP:7926,1,"LA MICHALIERE",45.451763,5.701794,0,0,O38:SA:CTP7926,Europe/Paris,,O38, +O38:SP:7927,1,"LE GRAND COSSERT",45.447697,5.698294,0,0,O38:SA:CTP7927,Europe/Paris,,O38, +O38:SP:7929,1,"ECOLE PRIMAIRE MIRIBEL",45.426062,5.706479,0,0,O38:SA:CTP7929,Europe/Paris,,O38, +O38:SP:793,1,"LA PLACE",44.90208,5.948617,0,0,O38:SA:CTP792,Europe/Paris,,O38, +O38:SP:7930,1,"ECOLE PRIMAIRE MIRIBEL",45.427166,5.707288,0,0,O38:SA:CTP7929,Europe/Paris,,O38, +O38:SP:7932,1,"EGLISE",45.428133,5.70726,0,0,OVO:SA:CTP7931,Europe/Paris,,O38, +O38:SP:7934,1,"EGLISE",45.428139,5.707341,0,0,OVO:SA:CTP7931,Europe/Paris,,O38, +O38:SP:7936,1,"LE THIL",45.447869,5.710748,0,0,O38:SA:CTP7936,Europe/Paris,,O38, +O38:SP:7937,1,"LA BILLIONNIERE",45.421435,5.703211,0,0,O38:SA:CTP7937,Europe/Paris,,O38, +O38:SP:7938,1,"LA BILLIONNIERE",45.421404,5.703303,0,0,O38:SA:CTP7937,Europe/Paris,,O38, +O38:SP:7939,1,"SCIERIE BARIOZ",45.417514,5.701803,0,0,O38:SA:CTP7939,Europe/Paris,,O38, +O38:SP:794,1,"PONT BATTANT",44.900313,5.944526,0,0,O38:SA:CTP794,Europe/Paris,,O38, +O38:SP:7940,1,"SCIERIE BARIOZ",45.417474,5.702278,0,0,O38:SA:CTP7939,Europe/Paris,,O38, +O38:SP:7941,1,"LE BAS BOLIN",45.413728,5.703434,0,0,O38:SA:CTP7941,Europe/Paris,,O38, +O38:SP:7942,1,"LE BAS BOLIN",45.413654,5.703364,0,0,O38:SA:CTP7941,Europe/Paris,,O38, +O38:SP:7943,1,"PASSARDIERE",45.409992,5.703492,0,0,O38:SA:CTP7943,Europe/Paris,,O38, +O38:SP:7944,1,"PASSARDIERE",45.410026,5.703927,0,0,O38:SA:CTP7943,Europe/Paris,,O38, +O38:SP:7945,1,"CROIX BATARD",45.410376,5.710113,0,0,O38:SA:CTP7945,Europe/Paris,,O38, +O38:SP:7947,1,"CASTEL",45.437253,5.734415,0,0,O38:SA:CTP7947,Europe/Paris,,O38, +O38:SP:7948,1,"CASTEL",45.437182,5.734433,0,0,O38:SA:CTP7947,Europe/Paris,,O38, +O38:SP:795,1,"PONT BATTANT",44.900261,5.944473,0,0,O38:SA:CTP794,Europe/Paris,,O38, +O38:SP:7950,1,"TOUR ST HUGUES",45.44079,5.708959,0,0,O38:SA:CTP7950,Europe/Paris,,O38, +O38:SP:7951,1,"SOUS LE BOIS Nø2",45.433208,5.71975,0,0,O38:SA:CTP7951,Europe/Paris,,O38, +O38:SP:7952,1,"SOUS LE BOIS Nø2",45.433274,5.719712,0,0,O38:SA:CTP7951,Europe/Paris,,O38, +O38:SP:7954,1,"LA COMBE",45.441845,5.703498,0,0,O38:SA:CTP7954,Europe/Paris,,O38, +O38:SP:7956,1,"LA ROCHE",45.453587,5.711724,0,0,O38:SA:CTP7956,Europe/Paris,,O38, +O38:SP:7957,1,"LOT. L'ENCLOS",45.4311,5.713607,0,0,O38:SA:CTP7957,Europe/Paris,,O38, +O38:SP:7959,1,"COLLEGE ST-BRUNO",45.433086,5.754153,0,0,O38:SA:CTP7959,Europe/Paris,,O38, +O38:SP:796,1,"ECOLE",44.903902,5.947916,0,0,O38:SA:CTP796,Europe/Paris,,O38, +O38:SP:7960,1,"COLLEGE ST-BRUNO",45.433054,5.75396,0,0,O38:SA:CTP7959,Europe/Paris,,O38, +O38:SP:7961,1,"AIGUENOIRE",45.407202,5.758963,0,0,O38:SA:CTP7961,Europe/Paris,,O38, +O38:SP:7962,1,"AIGUENOIRE",45.407279,5.75895,0,0,O38:SA:CTP7961,Europe/Paris,,O38, +O38:SP:7963,1,"LE VILLAGE",45.433965,5.752384,0,0,O38:SA:CTP7963,Europe/Paris,,O38, +O38:SP:7964,1,"LE VILLAGE",45.433399,5.752418,0,0,O38:SA:CTP7963,Europe/Paris,,O38, +O38:SP:7965,1,"MONTCELET",45.428779,5.756763,0,0,O38:SA:CTP7965,Europe/Paris,,O38, +O38:SP:7966,1,"ECOLE DU FROU",45.427971,5.780376,0,0,O38:SA:CTP7966,Europe/Paris,,O38, +O38:SP:7967,1,"ECOLE DU FROU",45.428066,5.780272,0,0,O38:SA:CTP7966,Europe/Paris,,O38, +O38:SP:7968,1,"COLLEGE BEATRICE DE SAVOIE",45.439252,5.751716,0,0,O38:SA:CTP7968,Europe/Paris,,O38, +O38:SP:7969,1,"COLLEGE BEATRICE DE SAVOIE",45.439306,5.751742,0,0,O38:SA:CTP7968,Europe/Paris,,O38, +O38:SP:797,1,"ECOLE",44.903919,5.947994,0,0,O38:SA:CTP796,Europe/Paris,,O38, +O38:SP:7970,1,"PLACE",45.43757,5.7524,0,0,O38:SA:CTP7970,Europe/Paris,,O38, +O38:SP:7971,1,"PLACE",45.437867,5.751967,0,0,O38:SA:CTP7970,Europe/Paris,,O38, +O38:SP:7972,1,"MAIRIE",45.438409,5.774893,0,0,O38:SA:CTP7972,Europe/Paris,,O38, +O38:SP:7973,1,"MAIRIE",45.438522,5.774716,0,0,O38:SA:CTP7972,Europe/Paris,,O38, +O38:SP:798,1,"LES ANGELAS",44.891581,5.925555,0,0,O38:SA:CTP798,Europe/Paris,,O38, +O38:SP:7980,1,"HAMEAU LA RICHARDIERE",45.424124,5.778334,0,0,O38:SA:CTP7980,Europe/Paris,,O38, +O38:SP:7982,1,"LA MARINE",45.41208,5.766122,0,0,O38:SA:CTP7982,Europe/Paris,,O38, +O38:SP:7983,1,"LA MARINE",45.412018,5.766154,0,0,O38:SA:CTP7982,Europe/Paris,,O38, +O38:SP:7984,1,"BERLAND CAFE RAFFIN",45.428992,5.780319,0,0,O38:SA:CTP7984,Europe/Paris,,O38, +O38:SP:7985,1,"BERLAND CAFE RAFFIN",45.429051,5.780262,0,0,O38:SA:CTP7984,Europe/Paris,,O38, +O38:SP:7986,1,"RICHERD ET MARAIS POSTE GAZ",45.420315,5.770563,0,0,O38:SA:CTP7986,Europe/Paris,,O38, +O38:SP:7987,1,"RICHERD ET MARAIS POSTE GAZ",45.420067,5.77058,0,0,O38:SA:CTP7986,Europe/Paris,,O38, +O38:SP:7988,1,"LE CHATELARD",45.430804,5.794515,0,0,O38:SA:CTP7988,Europe/Paris,,O38, +O38:SP:7989,1,"LE CHATELARD",45.430863,5.794551,0,0,O38:SA:CTP7988,Europe/Paris,,O38, +O38:SP:799,1,"LES ANGELAS",44.891607,5.925343,0,0,O38:SA:CTP798,Europe/Paris,,O38, +O38:SP:7990,1,"LES BLANCHES",45.430006,5.783859,0,0,O38:SA:CTP7990,Europe/Paris,,O38, +O38:SP:7991,1,"LES BLANCHES",45.429963,5.783913,0,0,O38:SA:CTP7990,Europe/Paris,,O38, +O38:SP:7992,1,"BERLAND EGLISE",45.429485,5.777502,0,0,O38:SA:CTP7992,Europe/Paris,,O38, +O38:SP:7993,1,"BERLAND EGLISE",45.429256,5.777947,0,0,O38:SA:CTP7992,Europe/Paris,,O38, +O38:SP:7994,1,"LA RICHARDIERE",45.425463,5.774571,0,0,O38:SA:CTP7994,Europe/Paris,,O38, +O38:SP:7995,1,"LA RICHARDIERE",45.4252,5.774509,0,0,O38:SA:CTP7994,Europe/Paris,,O38, +O38:SP:7996,1,"LA ROSETTE",45.414193,5.749913,0,0,O38:SA:CTP7996,Europe/Paris,,O38, +O38:SP:7997,1,"LA ROSETTE",45.413218,5.749699,0,0,O38:SA:CTP7996,Europe/Paris,,O38, +O38:SP:7998,1,"LES ANDRES",45.449682,5.766414,0,0,O38:SA:CTP7998,Europe/Paris,,O38, +O38:SP:7999,1,"LE COTTERG",45.440231,5.758682,0,0,O38:SA:CTP7999,Europe/Paris,,O38, +O38:SP:800,1,"LES DORAS",44.927772,5.968028,0,0,O38:SA:CTP800,Europe/Paris,,O38, +O38:SP:8000,1,"LE COTTERG",45.440159,5.758445,0,0,O38:SA:CTP7999,Europe/Paris,,O38, +O38:SP:8001,1,"LE PLANEY",45.417566,5.819074,0,0,O38:SA:CTP8001,Europe/Paris,,O38, +O38:SP:8002,1,"LE PLANEY",45.417733,5.819613,0,0,O38:SA:CTP8001,Europe/Paris,,O38, +O38:SP:8003,1,"LES SERMES",45.420282,5.82587,0,0,O38:SA:CTP8003,Europe/Paris,,O38, +O38:SP:8004,1,"LES SERMES",45.420195,5.826086,0,0,O38:SA:CTP8003,Europe/Paris,,O38, +O38:SP:8005,1,"ECOLE PRIMAIRE BOURG",45.417092,5.851357,0,0,O38:SA:CTP8005,Europe/Paris,,O38, +O38:SP:8006,1,"ECOLE PRIMAIRE BOURG",45.417104,5.851545,0,0,O38:SA:CTP8005,Europe/Paris,,O38, +O38:SP:8007,1,"MAIRIE",45.415426,5.853822,0,0,O38:SA:CTP8007,Europe/Paris,,O38, +O38:SP:8008,1,"MAIRIE",45.415366,5.853902,0,0,O38:SA:CTP8007,Europe/Paris,,O38, +O38:SP:8009,1,"LE GRAND CHENEVEY",45.404375,5.856518,0,0,O38:SA:CTP8009,Europe/Paris,,O38, +O38:SP:801,1,"LES DORAS",44.927687,5.968041,0,0,O38:SA:CTP800,Europe/Paris,,O38, +O38:SP:8010,1,"LE GRAND CHENEVEY",45.404365,5.856418,0,0,O38:SA:CTP8009,Europe/Paris,,O38, +O38:SP:8011,1,"ROUTE DU CHATEAU",45.411439,5.842434,0,0,O38:SA:CTP8011,Europe/Paris,,O38, +O38:SP:8012,1,"LE CHATEAU",45.413647,5.837766,0,0,O38:SA:CTP8012,Europe/Paris,,O38, +O38:SP:8013,1,"LES BAS-MAISON BOUVET",45.405058,5.840503,0,0,O38:SA:CTP8013,Europe/Paris,,O38, +O38:SP:8014,1,"LE PETIT CHENEVEY",45.407093,5.857457,0,0,O38:SA:CTP8014,Europe/Paris,,O38, +O38:SP:8015,1,"LE PETIT CHENEVEY",45.40708,5.857356,0,0,O38:SA:CTP8014,Europe/Paris,,O38, +O38:SP:8021,1,"PONT DE LA GACHE",45.434742,6.001424,0,0,O38:SA:CTP8021,Europe/Paris,,O38, +O38:SP:8023,1,"PONT DE LA GACHE",45.434829,6.001612,0,0,O38:SA:CTP8021,Europe/Paris,,O38, +O38:SP:8039,1,"LA BERARDE",45.409203,5.982287,0,0,OGE:SA:CTP8040,Europe/Paris,,O38, +O38:SP:804,1,"COLLEGE LA CHAPELLE",44.964782,5.414447,0,0,O38:SA:CTP804,Europe/Paris,,O38, +O38:SP:8041,1,"LA BERARDE",45.409054,5.982359,0,0,OGE:SA:CTP8040,Europe/Paris,,O38, +O38:SP:8047,1,"LES GRANGES",45.402026,5.979226,0,0,O38:SA:CTP8047,Europe/Paris,,O38, +O38:SP:8049,1,"LES GRANGES",45.401924,5.979097,0,0,O38:SA:CTP8047,Europe/Paris,,O38, +O38:SP:805,1,"COLLEGE LA CHAPELLE",44.964745,5.414704,0,0,O38:SA:CTP804,Europe/Paris,,O38, +O38:SP:806,1,"CHATEAU-BERNARD",44.974925,5.576248,0,0,O38:SA:CTP806,Europe/Paris,,O38, +O38:SP:807,1,"CHATEAU-BERNARD",44.974918,5.576147,0,0,O38:SA:CTP806,Europe/Paris,,O38, +O38:SP:808,1,"MORINAIRE",44.971865,5.574164,0,0,O38:SA:CTP808,Europe/Paris,,O38, +O38:SP:809,1,"MORINAIRE",44.971813,5.574232,0,0,O38:SA:CTP808,Europe/Paris,,O38, +O38:SP:810,1,"PUY GRIMAUD",44.980167,5.581041,0,0,O38:SA:CTP810,Europe/Paris,,O38, +O38:SP:811,1,"PUY GRIMAUD",44.980209,5.580982,0,0,O38:SA:CTP810,Europe/Paris,,O38, +O38:SP:812,1,"LES MARCEAUX",44.963151,5.65113,0,0,O38:SA:CTP812,Europe/Paris,,O38, +O38:SP:813,1,"LES MARCEAUX",44.963218,5.651169,0,0,O38:SA:CTP812,Europe/Paris,,O38, +O38:SP:814,1,"LES GAILLARDONS",44.968804,5.648674,0,0,O38:SA:CTP814,Europe/Paris,,O38, +O38:SP:815,1,"LES GAILLARDONS",44.96884,5.64878,0,0,O38:SA:CTP814,Europe/Paris,,O38, +O38:SP:8163,1,"LA MAIRIE",45.432223,6.019645,0,0,OGE:SA:CTP8162,Europe/Paris,,O38, +O38:SP:817,1,"GUERIPEL",44.965433,5.64777,0,0,O38:SA:CTP817,Europe/Paris,,O38, +O38:SP:819,1,"LE VILLAGE",44.974728,5.620922,0,0,O38:SA:CTP819,Europe/Paris,,O38, +O38:SP:821,1,"LE VILLAGE",44.974721,5.620959,0,0,O38:SA:CTP819,Europe/Paris,,O38, +O38:SP:823,1,"LE VERNAY",44.970087,5.608555,0,0,O38:SA:CTP823,Europe/Paris,,O38, +O38:SP:824,1,"LE VERNAY",44.970024,5.608605,0,0,O38:SA:CTP823,Europe/Paris,,O38, +O38:SP:8257,1,"ECOLE DE VAUGRIS",45.490161,4.829878,0,0,O38:SA:CTP8257,Europe/Paris,,O38, +O38:SP:8258,1,"ECOLE DE VAUGRIS",45.490205,4.829798,0,0,O38:SA:CTP8257,Europe/Paris,,O38, +O38:SP:8259,1,"SNACK RN7",45.495312,4.836074,0,0,O38:SA:CTP8259,Europe/Paris,,O38, +O38:SP:826,1,"CASSOULET",44.979971,5.622207,0,0,O38:SA:CTP826,Europe/Paris,,O38, +O38:SP:8260,1,"SNACK RN7",45.495269,4.836156,0,0,O38:SA:CTP8259,Europe/Paris,,O38, +O38:SP:8262,1,"LAVOIR RN7",45.478892,4.829459,0,0,O38:SA:CTP8262,Europe/Paris,,O38, +O38:SP:8263,1,"LAVOIR RN7",45.478893,4.829561,0,0,O38:SA:CTP8262,Europe/Paris,,O38, +O38:SP:8265,1,"GARE ROUTIERE",45.520556,4.870071,0,0,O38:SA:CTP8265,Europe/Paris,,O38, +O38:SP:8268,1,"GARE ROUTIERE",45.520585,4.86999,0,0,O38:SA:CTP8265,Europe/Paris,,O38, +O38:SP:8271,1,"NOUVELLE GARE ROUTIERE",45.518765,4.870902,0,0,O38:SA:CTP8271,Europe/Paris,,O38, +O38:SP:8273,1,"NOUVELLE GARE ROUTIERE",45.518736,4.870868,0,0,O38:SA:CTP8271,Europe/Paris,,O38, +O38:SP:828,1,"CASSOULET",44.979936,5.622296,0,0,O38:SA:CTP826,Europe/Paris,,O38, +O38:SP:8280,1,"LE TRENTE",45.512368,4.865042,0,0,OIV:SA:CTP103003,Europe/Paris,,O38, +O38:SP:8282,1,"LE TRENTE",45.512461,4.864983,0,0,OIV:SA:CTP103003,Europe/Paris,,O38, +O38:SP:8287,1,"PLACE PICHAT",45.524247,4.870791,0,0,O38:SA:CTP8287,Europe/Paris,,O38, +O38:SP:8289,1,"PLACE PICHAT",45.524685,4.871351,0,0,O38:SA:CTP8287,Europe/Paris,,O38, +O38:SP:8291,1,"LA ROSIERE ECOLE",45.493281,4.942045,0,0,O38:SA:CTP8291,Europe/Paris,,O38, +O38:SP:8292,1,"LA ROSIERE ECOLE",45.492904,4.94337,0,0,O38:SA:CTP8291,Europe/Paris,,O38, +O38:SP:8294,1,"TABOURETTE ROUTIER",45.515736,4.936574,0,0,O38:SA:CTP8294,Europe/Paris,,O38, +O38:SP:8296,1,"TABOURETTE ROUTIER",45.515893,4.936144,0,0,O38:SA:CTP8294,Europe/Paris,,O38, +O38:SP:8297,1,"BERARDIER",45.505765,4.909357,0,0,OIV:SA:CTP13736,Europe/Paris,,O38, +O38:SP:8298,1,"BERARDIER",45.505822,4.909352,0,0,OIV:SA:CTP13736,Europe/Paris,,O38, +O38:SP:8300,1,"LOTISSEMENT LE PINAY",45.515911,4.944677,0,0,OIV:SA:CTP8299,Europe/Paris,,O38, +O38:SP:8302,1,"LE LOGIS NEUF",45.512062,4.957374,0,0,O38:SA:CTP8302,Europe/Paris,,O38, +O38:SP:8304,1,"LE LOGIS NEUF",45.512422,4.955864,0,0,O38:SA:CTP8302,Europe/Paris,,O38, +O38:SP:8308,1,"LE BURON",45.477938,4.977501,0,0,OIV:SA:CTP8328,Europe/Paris,,O38, +O38:SP:8310,1,"LE CHAMBOUD",45.480859,4.960869,0,0,O38:SA:CTP8310,Europe/Paris,,O38, +O38:SP:8312,1,"LE CHAMBOUD",45.48102,4.96088,0,0,O38:SA:CTP8310,Europe/Paris,,O38, +O38:SP:8314,1,"LE JULIEN",45.511287,5.009288,0,0,O38:SA:CTP8314,Europe/Paris,,O38, +O38:SP:8316,1,"LE JULIEN",45.51124,5.009068,0,0,O38:SA:CTP8314,Europe/Paris,,O38, +O38:SP:8320,1,"LA MARAUQUE-LE COLAS",45.479621,4.989024,0,0,O38:SA:CTP8320,Europe/Paris,,O38, +O38:SP:8322,1,"LA MARAUQUE-LE COLAS",45.479635,4.989338,0,0,O38:SA:CTP8320,Europe/Paris,,O38, +O38:SP:833,1,"LA MORTE",44.959689,5.650776,0,0,O38:SA:CTP833,Europe/Paris,,O38, +O38:SP:8331,1,"LE PLAN NORD",45.514567,4.98113,0,0,OIV:SA:CTP8332,Europe/Paris,,O38, +O38:SP:8333,1,"LE PLAN NORD",45.514518,4.981064,0,0,OIV:SA:CTP8332,Europe/Paris,,O38, +O38:SP:8335,1,"BOIS BALAY",45.516896,4.958742,0,0,OIV:SA:CTP8336,Europe/Paris,,O38, +O38:SP:8337,1,"BOIS BALAY",45.516858,4.958858,0,0,OIV:SA:CTP8336,Europe/Paris,,O38, +O38:SP:8339,1,"LA REPUBLIQUE",45.507695,4.978843,0,0,O38:SA:CTP8339,Europe/Paris,,O38, +O38:SP:834,1,"LA MORTE",44.959582,5.650808,0,0,O38:SA:CTP833,Europe/Paris,,O38, +O38:SP:8341,1,"LA REPUBLIQUE",45.507573,4.978993,0,0,O38:SA:CTP8339,Europe/Paris,,O38, +O38:SP:8343,1,"LES DAMES",45.514948,4.9753,0,0,OIV:SA:CTP8344,Europe/Paris,,O38, +O38:SP:8347,1,"LE MICHALIN",45.515764,4.969706,0,0,OIV:SA:CTP8348,Europe/Paris,,O38, +O38:SP:8349,1,"LE MICHALIN",45.515834,4.969605,0,0,OIV:SA:CTP8348,Europe/Paris,,O38, +O38:SP:835,1,"LE COLLET",44.944909,5.645599,0,0,O38:SA:CTP835,Europe/Paris,,O38, +O38:SP:8351,1,"GARAGE BERAUD",45.510156,4.9668,0,0,OIV:SA:CTP8352,Europe/Paris,,O38, +O38:SP:8353,1,"GARAGE BERAUD",45.510029,4.967014,0,0,OIV:SA:CTP8352,Europe/Paris,,O38, +O38:SP:8355,1,"CHEZ ROUX",45.520706,4.990843,0,0,OIV:SA:CTP8356,Europe/Paris,,O38, +O38:SP:8357,1,"CHEZ ROUX",45.520729,4.990797,0,0,OIV:SA:CTP8356,Europe/Paris,,O38, +O38:SP:8359,1,"LE VILLAGE",45.516645,4.964573,0,0,O38:SA:CTP8359,Europe/Paris,,O38, +O38:SP:836,1,"LE COLLET",44.94494,5.645661,0,0,O38:SA:CTP835,Europe/Paris,,O38, +O38:SP:8360,1,"LE VILLAGE",45.516615,4.965153,0,0,O38:SA:CTP8359,Europe/Paris,,O38, +O38:SP:8362,1,"LES GRANGES",45.510997,5.005163,0,0,O38:SA:CTP8362,Europe/Paris,,O38, +O38:SP:8364,1,"LES GRANGES",45.510873,5.005415,0,0,O38:SA:CTP8362,Europe/Paris,,O38, +O38:SP:8366,1,"LE QUINQUELIN",45.512871,4.988155,0,0,OIV:SA:CTP8367,Europe/Paris,,O38, +O38:SP:8368,1,"LE QUINQUELIN",45.512815,4.988391,0,0,OIV:SA:CTP8367,Europe/Paris,,O38, +O38:SP:837,1,"LE VILLAGE",44.955461,5.588288,0,0,O38:SA:CTP837,Europe/Paris,,O38, +O38:SP:8371,1,"PLACE",45.517424,5.078655,0,0,O38:SA:CTP8371,Europe/Paris,,O38, +O38:SP:8372,1,"PLACE",45.518231,5.078897,0,0,O38:SA:CTP8371,Europe/Paris,,O38, +O38:SP:8373,1,"LES PEYTIERES",45.512499,5.08253,0,0,O38:SA:CTP8373,Europe/Paris,,O38, +O38:SP:8374,1,"LES PEYTIERES",45.512396,5.082636,0,0,O38:SA:CTP8373,Europe/Paris,,O38, +O38:SP:8375,1,"LOTISSEMENT",45.509744,5.083832,0,0,O38:SA:CTP8375,Europe/Paris,,O38, +O38:SP:8376,1,"LOTISSEMENT",45.50981,5.08391,0,0,O38:SA:CTP8375,Europe/Paris,,O38, +O38:SP:8378,1,"LA DETOURBE-LE ROUTIER",45.495109,5.045085,0,0,O38:SA:CTP8378,Europe/Paris,,O38, +O38:SP:838,1,"LE VILLAGE",44.955454,5.588385,0,0,O38:SA:CTP837,Europe/Paris,,O38, +O38:SP:8380,1,"LA PLACE",45.512197,5.016214,0,0,O38:SA:CTP8380,Europe/Paris,,O38, +O38:SP:8381,1,"LA PLACE",45.512251,5.016149,0,0,O38:SA:CTP8380,Europe/Paris,,O38, +O38:SP:8383,1,"NARBORIE",45.499182,5.032881,0,0,OIV:SA:CTP8382,Europe/Paris,,O38, +O38:SP:8385,1,"NARBORIE",45.499254,5.032846,0,0,OIV:SA:CTP8382,Europe/Paris,,O38, +O38:SP:8387,1,"LA DETOURBE",45.49481,5.041622,0,0,OIV:SA:CTP8388,Europe/Paris,,O38, +O38:SP:8389,1,"LA DETOURBE",45.49509,5.040614,0,0,OIV:SA:CTP8388,Europe/Paris,,O38, +O38:SP:839,1,"PRECLOT",44.941789,5.607698,0,0,O38:SA:CTP839,Europe/Paris,,O38, +O38:SP:8391,1,"CHATEAU GRILLET",45.506492,5.023904,0,0,OIV:SA:CTP8392,Europe/Paris,,O38, +O38:SP:8393,1,"CHATEAU GRILLET",45.506574,5.023848,0,0,OIV:SA:CTP8392,Europe/Paris,,O38, +O38:SP:8396,1,"SAVAS AIRE DE JEUX",45.505823,5.06065,0,0,O38:SA:CTP8396,Europe/Paris,,O38, +O38:SP:8397,1,"SAVAS AIRE DE JEUX",45.50571,5.060864,0,0,O38:SA:CTP8396,Europe/Paris,,O38, +O38:SP:840,1,"PRECLOT",44.941756,5.607607,0,0,O38:SA:CTP839,Europe/Paris,,O38, +O38:SP:8400,1,"SAVAS",45.5043,5.061693,0,0,O38:SA:CTP8400,Europe/Paris,,O38, +O38:SP:8401,1,"SAVAS",45.504291,5.061645,0,0,O38:SA:CTP8400,Europe/Paris,,O38, +O38:SP:8402,1,"MEPIN ECOLE",45.49158,5.069694,0,0,O38:SA:CTP8402,Europe/Paris,,O38, +O38:SP:8403,1,"MEPIN ECOLE",45.491647,5.069632,0,0,O38:SA:CTP8402,Europe/Paris,,O38, +O38:SP:8404,1,"SAVAS - MI-PLAINE",45.497764,5.075345,0,0,O38:SA:CTP8404,Europe/Paris,,O38, +O38:SP:8405,1,"SAVAS - MI-PLAINE",45.497859,5.0754,0,0,O38:SA:CTP8404,Europe/Paris,,O38, +O38:SP:8406,1,"LE FAYET",45.487213,5.057892,0,0,O38:SA:CTP8406,Europe/Paris,,O38, +O38:SP:8407,1,"LE FAYET",45.487284,5.057876,0,0,O38:SA:CTP8406,Europe/Paris,,O38, +O38:SP:8408,1,"MEPIN EGLISE",45.489409,5.073277,0,0,O38:SA:CTP8408,Europe/Paris,,O38, +O38:SP:8409,1,"MEPIN EGLISE",45.489462,5.073192,0,0,O38:SA:CTP8408,Europe/Paris,,O38, +O38:SP:841,1,"LE MAS",44.951473,5.601689,0,0,O38:SA:CTP841,Europe/Paris,,O38, +O38:SP:8410,1,"MAIRIE",45.518709,5.077658,0,0,O38:SA:CTP8410,Europe/Paris,,O38, +O38:SP:8412,1,"CLOS DE LA CAILLE",45.514287,5.073023,0,0,O38:SA:CTP8412,Europe/Paris,,O38, +O38:SP:8413,1,"CLOS DE LA CAILLE",45.514355,5.072884,0,0,O38:SA:CTP8412,Europe/Paris,,O38, +O38:SP:8415,1,"BOIS CHARON",45.486021,5.051809,0,0,O38:SA:CTP8415,Europe/Paris,,O38, +O38:SP:8416,1,"BOIS CHARON",45.486002,5.051824,0,0,O38:SA:CTP8415,Europe/Paris,,O38, +O38:SP:8417,1,"LOT.LES 3 VALLEES",45.509674,5.083865,0,0,O38:SA:CTP8417,Europe/Paris,,O38, +O38:SP:8418,1,"LOT.LES 3 VALLEES",45.509755,5.08395,0,0,O38:SA:CTP8417,Europe/Paris,,O38, +O38:SP:8419,1,"FERME PELLET",45.500445,5.089143,0,0,O38:SA:CTP8419,Europe/Paris,,O38, +O38:SP:842,1,"LE MAS",44.951641,5.601544,0,0,O38:SA:CTP841,Europe/Paris,,O38, +O38:SP:8423,1,"LES BROSSES",45.499062,5.089462,0,0,O38:SA:CTP8423,Europe/Paris,,O38, +O38:SP:8424,1,"LES BROSSES",45.498938,5.089044,0,0,O38:SA:CTP8423,Europe/Paris,,O38, +O38:SP:8425,1,"COLLEGE FERNAND BOUVIER",45.497265,5.142993,0,0,O38:SA:CTP8425,Europe/Paris,,O38, +O38:SP:8426,1,"COLLEGE FERNAND BOUVIER",45.497178,5.142344,0,0,O38:SA:CTP8425,Europe/Paris,,O38, +O38:SP:8427,1,"L'ESCALE RD.518",45.502746,5.127443,0,0,O38:SA:CTP8427,Europe/Paris,,O38, +O38:SP:8428,1,"L'ESCALE RD.518",45.502795,5.12756,0,0,O38:SA:CTP8427,Europe/Paris,,O38, +O38:SP:8429,1,"L'ESCALE",45.502309,5.127442,0,0,O38:SA:CTP8429,Europe/Paris,,O38, +O38:SP:843,1,"MANINAIRE",44.944582,5.606194,0,0,O38:SA:CTP843,Europe/Paris,,O38, +O38:SP:8430,1,"L'ESCALE",45.502375,5.127573,0,0,O38:SA:CTP8429,Europe/Paris,,O38, +O38:SP:8432,1,"LE CINEMA",45.500872,5.142717,0,0,O38:SA:CTP8432,Europe/Paris,,O38, +O38:SP:8434,1,"LE CINEMA",45.500853,5.14279,0,0,O38:SA:CTP8432,Europe/Paris,,O38, +O38:SP:8435,1,"GARAGE",45.50315,5.123291,0,0,O38:SA:CTP8435,Europe/Paris,,O38, +O38:SP:8437,1,"RTE VIL. DE MARC",45.498906,5.134883,0,0,O38:SA:CTP8437,Europe/Paris,,O38, +O38:SP:844,1,"MANINAIRE",44.944592,5.60618,0,0,O38:SA:CTP843,Europe/Paris,,O38, +O38:SP:8440,1,"LE CHEVALLET",45.500285,5.10478,0,0,O38:SA:CTP8440,Europe/Paris,,O38, +O38:SP:8441,1,"LE CHEVALLET",45.50044,5.104965,0,0,O38:SA:CTP8440,Europe/Paris,,O38, +O38:SP:8442,1,"LES MONTS",45.471508,5.147267,0,0,O38:SA:CTP8442,Europe/Paris,,O38, +O38:SP:8443,1,"LES MONTS",45.471469,5.14714,0,0,O38:SA:CTP8442,Europe/Paris,,O38, +O38:SP:8444,1,"PLACE L.MONTAGNAT",45.502379,5.142556,0,0,O38:SA:CTP8444,Europe/Paris,,O38, +O38:SP:8445,1,"PLACE L.MONTAGNAT",45.5023,5.142677,0,0,O38:SA:CTP8444,Europe/Paris,,O38, +O38:SP:8446,1,"LE VILLAGE",45.504883,5.105864,0,0,O38:SA:CTP8446,Europe/Paris,,O38, +O38:SP:8447,1,"LE VILLAGE",45.504934,5.105928,0,0,O38:SA:CTP8446,Europe/Paris,,O38, +O38:SP:8448,1,"LA RABATELLIERE",45.505366,5.096104,0,0,O38:SA:CTP8448,Europe/Paris,,O38, +O38:SP:8449,1,"LA RABATELLIERE",45.5054,5.09568,0,0,O38:SA:CTP8448,Europe/Paris,,O38, +O38:SP:8450,1,"VERTEY",45.497889,5.096368,0,0,O38:SA:CTP8450,Europe/Paris,,O38, +O38:SP:8451,1,"GARAGE FRANCON",45.500393,5.106052,0,0,O38:SA:CTP8451,Europe/Paris,,O38, +O38:SP:8453,1,"LE PETIT BOIS",45.499905,5.099075,0,0,O38:SA:CTP8453,Europe/Paris,,O38, +O38:SP:8455,1,"LE MIRAILLET",45.485651,5.135302,0,0,O38:SA:CTP8455,Europe/Paris,,O38, +O38:SP:8456,1,"LE MIRAILLET",45.485698,5.135224,0,0,O38:SA:CTP8455,Europe/Paris,,O38, +O38:SP:8457,1,"ECOLE JOANNES LACROIX",45.501239,5.139369,0,0,O38:SA:CTP8457,Europe/Paris,,O38, +O38:SP:8459,1,"LE STADE",45.496492,5.141628,0,0,O38:SA:CTP8459,Europe/Paris,,O38, +O38:SP:8461,1,"LE STADE",45.496665,5.141811,0,0,O38:SA:CTP8459,Europe/Paris,,O38, +O38:SP:8463,1,"LA PISCINE",45.497305,5.140623,0,0,O38:SA:CTP8463,Europe/Paris,,O38, +O38:SP:8464,1,"POYAT",45.479416,5.103353,0,0,O38:SA:CTP8464,Europe/Paris,,O38, +O38:SP:8465,1,"POYAT",45.47943,5.103253,0,0,O38:SA:CTP8464,Europe/Paris,,O38, +O38:SP:8466,1,"LE PETIT MOUSSEY",45.484438,5.109442,0,0,O38:SA:CTP8466,Europe/Paris,,O38, +O38:SP:8467,1,"LE PETIT MOUSSEY",45.484497,5.109382,0,0,O38:SA:CTP8466,Europe/Paris,,O38, +O38:SP:8469,1,"BUFFEVENT",45.488316,5.126546,0,0,O38:SA:CTP8469,Europe/Paris,,O38, +O38:SP:847,1,"PISCINE",44.948961,5.71824,0,0,O38:SA:CTP847,Europe/Paris,,O38, +O38:SP:8471,1,"BUFFEVENT",45.488349,5.126752,0,0,O38:SA:CTP8469,Europe/Paris,,O38, +O38:SP:8478,1,"MAISON HOULLIER",45.495737,5.091464,0,0,O38:SA:CTP8478,Europe/Paris,,O38, +O38:SP:8479,1,"MAISON HOULLIER",45.495804,5.09143,0,0,O38:SA:CTP8478,Europe/Paris,,O38, +O38:SP:848,1,"PISCINE",44.948949,5.718141,0,0,O38:SA:CTP847,Europe/Paris,,O38, +O38:SP:8480,1,"LES GASSOULIERES",45.494468,5.087433,0,0,O38:SA:CTP8480,Europe/Paris,,O38, +O38:SP:8481,1,"LES GASSOULIERES",45.494499,5.087277,0,0,O38:SA:CTP8480,Europe/Paris,,O38, +O38:SP:8483,1,"PLACE",45.475095,5.102758,0,0,O38:SA:CTP8483,Europe/Paris,,O38, +O38:SP:8485,1,"PLACE",45.475147,5.102827,0,0,O38:SA:CTP8483,Europe/Paris,,O38, +O38:SP:8489,1,"LE GEVRIER",45.48563,5.11393,0,0,O38:SA:CTP8489,Europe/Paris,,O38, +O38:SP:849,1,"ECOLE PRIMAIRE",44.959196,5.656768,0,0,O38:SA:CTP849,Europe/Paris,,O38, +O38:SP:8490,1,"MEPIN RECULAS",45.493964,5.085832,0,0,O38:SA:CTP8490,Europe/Paris,,O38, +O38:SP:8492,1,"RUE DU 8 MAI",45.485651,5.212583,0,0,O38:SA:CTP8492,Europe/Paris,,O38, +O38:SP:8493,1,"RUE DU 8 MAI",45.485592,5.212523,0,0,O38:SA:CTP8492,Europe/Paris,,O38, +O38:SP:8494,1,"LES BROSSES",45.494448,5.191059,0,0,O38:SA:CTP8494,Europe/Paris,,O38, +O38:SP:8495,1,"LES BROSSES",45.494514,5.191102,0,0,O38:SA:CTP8494,Europe/Paris,,O38, +O38:SP:8496,1,"LOT. LA COLLINE",45.490775,5.201004,0,0,O38:SA:CTP8496,Europe/Paris,,O38, +O38:SP:8497,1,"LOT. LA COLLINE",45.490736,5.200953,0,0,O38:SA:CTP8496,Europe/Paris,,O38, +O38:SP:8498,1,"EGLISE",45.486685,5.210126,0,0,O38:SA:CTP8498,Europe/Paris,,O38, +O38:SP:8499,1,"EGLISE",45.486614,5.210135,0,0,O38:SA:CTP8498,Europe/Paris,,O38, +O38:SP:850,1,"ECOLE PRIMAIRE",44.959203,5.656661,0,0,O38:SA:CTP849,Europe/Paris,,O38, +O38:SP:8500,1,"PLACE DE LA GARE",45.487557,5.203091,0,0,O38:SA:CTP8500,Europe/Paris,,O38, +O38:SP:8501,1,"PLACE DE LA GARE",45.487712,5.203035,0,0,O38:SA:CTP8500,Europe/Paris,,O38, +O38:SP:8502,1,"LES BOUVARATIERES",45.499099,5.203351,0,0,O38:SA:CTP8502,Europe/Paris,,O38, +O38:SP:8503,1,"LES BOUVARATIERES",45.499107,5.20325,0,0,O38:SA:CTP8502,Europe/Paris,,O38, +O38:SP:8504,1,"STADE",45.51471,5.200364,0,0,O38:SA:CTP8504,Europe/Paris,,O38, +O38:SP:8505,1,"STADE",45.514506,5.200265,0,0,O38:SA:CTP8504,Europe/Paris,,O38, +O38:SP:8506,1,"CHEVRON",45.511157,5.204155,0,0,O38:SA:CTP8506,Europe/Paris,,O38, +O38:SP:8508,1,"MONTJOUX ETANG",45.50819,5.166688,0,0,O38:SA:CTP8508,Europe/Paris,,O38, +O38:SP:8509,1,"MONTJOUX ETANG",45.508212,5.166474,0,0,O38:SA:CTP8508,Europe/Paris,,O38, +O38:SP:851,1,"LA VILLE",44.966335,5.700858,0,0,O38:SA:CTP851,Europe/Paris,,O38, +O38:SP:8510,1,"MENON",45.515615,5.210576,0,0,O38:SA:CTP8510,Europe/Paris,,O38, +O38:SP:8511,1,"MENON",45.51556,5.210642,0,0,O38:SA:CTP8510,Europe/Paris,,O38, +O38:SP:8512,1,"LANGOUVERT",45.512678,5.192322,0,0,O38:SA:CTP8512,Europe/Paris,,O38, +O38:SP:8513,1,"LANGOUVERT",45.512753,5.192368,0,0,O38:SA:CTP8512,Europe/Paris,,O38, +O38:SP:8514,1,"COTE DU DROGUET",45.510492,5.182012,0,0,O38:SA:CTP8514,Europe/Paris,,O38, +O38:SP:8515,1,"COTE DU DROGUET",45.510622,5.182175,0,0,O38:SA:CTP8514,Europe/Paris,,O38, +O38:SP:8516,1,"LES BIESSES",45.50199,5.173472,0,0,O38:SA:CTP8516,Europe/Paris,,O38, +O38:SP:8517,1,"LES BIESSES",45.501928,5.173418,0,0,O38:SA:CTP8516,Europe/Paris,,O38, +O38:SP:8518,1,"LES BOUVARATIERES",45.499742,5.203456,0,0,O38:SA:CTP8502,Europe/Paris,,O38, +O38:SP:8519,1,"LES BOUVARATIERES",45.499614,5.203372,0,0,O38:SA:CTP8502,Europe/Paris,,O38, +O38:SP:852,1,"LA VILLE",44.966912,5.70155,0,0,O38:SA:CTP851,Europe/Paris,,O38, +O38:SP:8521,1,"H.L.M. LA BARRE",45.502038,5.149748,0,0,O38:SA:CTP8521,Europe/Paris,,O38, +O38:SP:8523,1,"H.L.M. LA BARRE",45.501967,5.149694,0,0,O38:SA:CTP8521,Europe/Paris,,O38, +O38:SP:8524,1,"MONTJOUX",45.509045,5.175051,0,0,O38:SA:CTP8524,Europe/Paris,,O38, +O38:SP:8525,1,"MONTJOUX",45.509111,5.174869,0,0,O38:SA:CTP8524,Europe/Paris,,O38, +O38:SP:8526,1,"LE BAILLY",45.503378,5.209453,0,0,O38:SA:CTP8526,Europe/Paris,,O38, +O38:SP:8527,1,"LE BAILLY",45.503308,5.209433,0,0,O38:SA:CTP8526,Europe/Paris,,O38, +O38:SP:8528,1,"LE FONTANIL",45.478387,5.235053,0,0,O38:SA:CTP8528,Europe/Paris,,O38, +O38:SP:8529,1,"LE FONTANIL",45.478449,5.235108,0,0,O38:SA:CTP8528,Europe/Paris,,O38, +O38:SP:853,1,"LES RAUX",44.957029,5.709267,0,0,O38:SA:CTP853,Europe/Paris,,O38, +O38:SP:8530,1,"LES ROBINS",45.476269,5.24352,0,0,O38:SA:CTP8530,Europe/Paris,,O38, +O38:SP:8531,1,"LES ROBINS",45.4762,5.243492,0,0,O38:SA:CTP8530,Europe/Paris,,O38, +O38:SP:8532,1,"SAINT-CHRISTOPHE",45.482641,5.217426,0,0,O38:SA:CTP8532,Europe/Paris,,O38, +O38:SP:8533,1,"SAINT-CHRISTOPHE",45.482576,5.217383,0,0,O38:SA:CTP8532,Europe/Paris,,O38, +O38:SP:8534,1,"MAISON SERLIN",45.481189,5.24812,0,0,O38:SA:CTP8534,Europe/Paris,,O38, +O38:SP:8535,1,"MAISON SERLIN",45.481207,5.248219,0,0,O38:SA:CTP8534,Europe/Paris,,O38, +O38:SP:8536,1,"LES EFFEUILLERS",45.472247,5.273011,0,0,O38:SA:CTP8536,Europe/Paris,,O38, +O38:SP:8537,1,"LES EFFEUILLERS",45.472268,5.272759,0,0,O38:SA:CTP8536,Europe/Paris,,O38, +O38:SP:8538,1,"LES EFFEUILLERS",45.472732,5.271447,0,0,O38:SA:CTP8536,Europe/Paris,,O38, +O38:SP:8539,1,"LES EFFEUILLERS",45.472792,5.271502,0,0,O38:SA:CTP8536,Europe/Paris,,O38, +O38:SP:854,1,"LES RAUX",44.956964,5.709308,0,0,O38:SA:CTP853,Europe/Paris,,O38, +O38:SP:8540,1,"LE BAS MOLLARD",45.487211,5.267246,0,0,O38:SA:CTP8540,Europe/Paris,,O38, +O38:SP:8541,1,"LE BAS MOLLARD",45.487229,5.267346,0,0,O38:SA:CTP8540,Europe/Paris,,O38, +O38:SP:8542,1,"LA BATIE",45.475221,5.254627,0,0,O38:SA:CTP8542,Europe/Paris,,O38, +O38:SP:8543,1,"LA BATIE",45.475149,5.254623,0,0,O38:SA:CTP8542,Europe/Paris,,O38, +O38:SP:8544,1,"LA VOLLANDIERE",45.484334,5.248492,0,0,O38:SA:CTP8544,Europe/Paris,,O38, +O38:SP:8545,1,"LA VOLLANDIERE",45.484363,5.248397,0,0,O38:SA:CTP8544,Europe/Paris,,O38, +O38:SP:8546,1,"MAISON DOUCELIN",45.484558,5.264706,0,0,O38:SA:CTP8546,Europe/Paris,,O38, +O38:SP:8547,1,"MAISON DOUCELIN",45.484572,5.264806,0,0,O38:SA:CTP8546,Europe/Paris,,O38, +O38:SP:8548,1,"CROIS.LA BATIE",45.475334,5.260618,0,0,O38:SA:CTP8548,Europe/Paris,,O38, +O38:SP:8549,1,"CROIS.LA BATIE",45.475264,5.260596,0,0,O38:SA:CTP8548,Europe/Paris,,O38, +O38:SP:855,1,"LE VILLAGE",44.981315,5.656406,0,0,O38:SA:CTP855,Europe/Paris,,O38, +O38:SP:8550,1,"LE HAUT MOLLARD",45.483458,5.263229,0,0,O38:SA:CTP8550,Europe/Paris,,O38, +O38:SP:8551,1,"LE HAUT MOLLARD",45.483474,5.263328,0,0,O38:SA:CTP8550,Europe/Paris,,O38, +O38:SP:8552,1,"LE MOLLARD-ECOLE",45.479831,5.253754,0,0,O38:SA:CTP8552,Europe/Paris,,O38, +O38:SP:8553,1,"LE MOLLARD-ECOLE",45.479769,5.253805,0,0,O38:SA:CTP8552,Europe/Paris,,O38, +O38:SP:8554,1,"LE PELLET-ABRIBUS",45.491596,5.237377,0,0,O38:SA:CTP8554,Europe/Paris,,O38, +O38:SP:8555,1,"LE PELLET-ABRIBUS",45.491655,5.237319,0,0,O38:SA:CTP8554,Europe/Paris,,O38, +O38:SP:8556,1,"HAMEAU LE GINET",45.48995,5.231409,0,0,O38:SA:CTP8556,Europe/Paris,,O38, +O38:SP:8557,1,"HAMEAU LE GINET",45.489943,5.231416,0,0,O38:SA:CTP8556,Europe/Paris,,O38, +O38:SP:8558,1,"BOURG",45.499012,5.233216,0,0,O38:SA:CTP8558,Europe/Paris,,O38, +O38:SP:8559,1,"BOURG",45.499057,5.233301,0,0,O38:SA:CTP8558,Europe/Paris,,O38, +O38:SP:856,1,"LE VILLAGE",44.981378,5.656385,0,0,O38:SA:CTP855,Europe/Paris,,O38, +O38:SP:8560,1,"LA MOLLIERE",45.506344,5.256725,0,0,O38:SA:CTP8560,Europe/Paris,,O38, +O38:SP:8561,1,"LA MOLLIERE",45.50637,5.256805,0,0,O38:SA:CTP8560,Europe/Paris,,O38, +O38:SP:8562,1,"LES CHATAIGNIERS",45.502177,5.249026,0,0,O38:SA:CTP8562,Europe/Paris,,O38, +O38:SP:8563,1,"LES CHATAIGNIERS",45.502168,5.249034,0,0,O38:SA:CTP8562,Europe/Paris,,O38, +O38:SP:8564,1,"LE DOUILLET",45.496818,5.243604,0,0,O38:SA:CTP8564,Europe/Paris,,O38, +O38:SP:8565,1,"LE DOUILLET",45.496805,5.243461,0,0,O38:SA:CTP8564,Europe/Paris,,O38, +O38:SP:8566,1,"LES ROLES",45.51656,5.239299,0,0,O38:SA:CTP8566,Europe/Paris,,O38, +O38:SP:8567,1,"LE FRANCHISSON",45.511637,5.328976,0,0,O38:SA:CTP8567,Europe/Paris,,O38, +O38:SP:8568,1,"LE FRANCHISSON",45.511356,5.328648,0,0,O38:SA:CTP8567,Europe/Paris,,O38, +O38:SP:857,1,"LES BLAIS - ECOLE",44.9767,5.703954,0,0,O38:SA:CTP857,Europe/Paris,,O38, +O38:SP:8570,1,"LA PLACE",45.502014,5.302282,0,0,O38:SA:CTP8570,Europe/Paris,,O38, +O38:SP:8572,1,"LA PLACE",45.501604,5.30222,0,0,O38:SA:CTP8570,Europe/Paris,,O38, +O38:SP:8573,1,"LE TRAMOLE",45.485002,5.293315,0,0,O38:SA:CTP8573,Europe/Paris,,O38, +O38:SP:8574,1,"LE TRAMOLE",45.484953,5.293149,0,0,O38:SA:CTP8573,Europe/Paris,,O38, +O38:SP:8575,1,"CENTRE",45.46967,5.313986,0,0,O38:SA:CTP8575,Europe/Paris,,O38, +O38:SP:8576,1,"CENTRE",45.469601,5.314013,0,0,O38:SA:CTP8575,Europe/Paris,,O38, +O38:SP:8577,1,"LE PILON",45.468348,5.321246,0,0,O38:SA:CTP8577,Europe/Paris,,O38, +O38:SP:8578,1,"LE PILON",45.46835,5.321179,0,0,O38:SA:CTP8577,Europe/Paris,,O38, +O38:SP:858,1,"LES BLAIS - ECOLE",44.976282,5.703884,0,0,O38:SA:CTP857,Europe/Paris,,O38, +O38:SP:8580,1,"MAIRIE",45.508151,5.303116,0,0,O38:SA:CTP8580,Europe/Paris,,O38, +O38:SP:8582,1,"MAIRIE",45.507578,5.302952,0,0,O38:SA:CTP8580,Europe/Paris,,O38, +O38:SP:8584,1,"LE VILLAGE",45.498319,5.300901,0,0,O38:SA:CTP8584,Europe/Paris,,O38, +O38:SP:8586,1,"LE VILLAGE",45.498431,5.300828,0,0,O38:SA:CTP8584,Europe/Paris,,O38, +O38:SP:8589,1,"LE FERRAND",45.496003,5.365886,0,0,O38:SA:CTP8589,Europe/Paris,,O38, +O38:SP:859,1,"LA CROIX DE PORTIER",44.94949,5.655089,0,0,O38:SA:CTP859,Europe/Paris,,O38, +O38:SP:8590,1,"LE FERRAND",45.496081,5.365783,0,0,O38:SA:CTP8589,Europe/Paris,,O38, +O38:SP:8591,1,"EGLISE",45.497572,5.366656,0,0,O38:SA:CTP8591,Europe/Paris,,O38, +O38:SP:8592,1,"EGLISE",45.497596,5.366559,0,0,O38:SA:CTP8591,Europe/Paris,,O38, +O38:SP:8593,1,"LES ARENDEAUX",45.503103,5.368036,0,0,O38:SA:CTP8593,Europe/Paris,,O38, +O38:SP:8594,1,"LES ARENDEAUX",45.503159,5.36794,0,0,O38:SA:CTP8593,Europe/Paris,,O38, +O38:SP:8595,1,"PLACE DU TRIEVE",45.503584,5.417682,0,0,O38:SA:CTP8595,Europe/Paris,,O38, +O38:SP:8596,1,"PLACE DU TRIEVE",45.503559,5.417748,0,0,O38:SA:CTP8595,Europe/Paris,,O38, +O38:SP:8597,1,"LES HALLES",45.490907,5.387215,0,0,O38:SA:CTP8597,Europe/Paris,,O38, +O38:SP:8598,1,"LES HALLES",45.490892,5.387195,0,0,O38:SA:CTP8597,Europe/Paris,,O38, +O38:SP:8599,1,"ST ROMAIN",45.488788,5.363938,0,0,O38:SA:CTP8599,Europe/Paris,,O38, +O38:SP:860,1,"LA CROIX DE PORTIER",44.949435,5.655094,0,0,O38:SA:CTP859,Europe/Paris,,O38, +O38:SP:8600,1,"ST ROMAIN",45.488674,5.363818,0,0,O38:SA:CTP8599,Europe/Paris,,O38, +O38:SP:8601,1,"LE RAPOUX",45.508108,5.370364,0,0,O38:SA:CTP8601,Europe/Paris,,O38, +O38:SP:8602,1,"LE RAPOUX",45.50848,5.370016,0,0,O38:SA:CTP8601,Europe/Paris,,O38, +O38:SP:8603,1,"CAFE CALLOUD",45.485108,5.364398,0,0,O38:SA:CTP8603,Europe/Paris,,O38, +O38:SP:8604,1,"CAFE CALLOUD",45.485122,5.364331,0,0,O38:SA:CTP8603,Europe/Paris,,O38, +O38:SP:8605,1,"CAFE BONVALLET",45.47442,5.364571,0,0,O38:SA:CTP8605,Europe/Paris,,O38, +O38:SP:8606,1,"CAFE BONVALLET",45.474363,5.364679,0,0,O38:SA:CTP8605,Europe/Paris,,O38, +O38:SP:8607,1,"LE POULARD-GARAGE DEBIEZ",45.484002,5.399346,0,0,O38:SA:CTP8607,Europe/Paris,,O38, +O38:SP:8608,1,"LE POULARD-GARAGE DEBIEZ",45.483807,5.399292,0,0,O38:SA:CTP8607,Europe/Paris,,O38, +O38:SP:8609,1,"LE MOIROUD",45.470802,5.356919,0,0,O38:SA:CTP8609,Europe/Paris,,O38, +O38:SP:861,1,"LES FAURIES",44.934687,5.65047,0,0,O38:SA:CTP861,Europe/Paris,,O38, +O38:SP:8610,1,"LE MOIROUD",45.470865,5.35684,0,0,O38:SA:CTP8609,Europe/Paris,,O38, +O38:SP:8611,1,"GROUPE LE BROCARD",45.497915,5.366559,0,0,O38:SA:CTP8611,Europe/Paris,,O38, +O38:SP:8612,1,"GROUPE LE BROCARD",45.497888,5.366667,0,0,O38:SA:CTP8611,Europe/Paris,,O38, +O38:SP:8613,1,"GROUPE ST-EXUPERY",45.491879,5.38527,0,0,O38:SA:CTP8613,Europe/Paris,,O38, +O38:SP:8614,1,"GROUPE ST-EXUPERY",45.491864,5.385254,0,0,O38:SA:CTP8613,Europe/Paris,,O38, +O38:SP:8615,1,"EGLISE",45.498126,5.482878,0,0,O38:SA:CTP8615,Europe/Paris,,O38, +O38:SP:8616,1,"EGLISE",45.497964,5.482844,0,0,O38:SA:CTP8615,Europe/Paris,,O38, +O38:SP:8617,1,"LE LUTEAU-CROIX",45.498797,5.445182,0,0,O38:SA:CTP8617,Europe/Paris,,O38, +O38:SP:8618,1,"LE LUTEAU-CROIX",45.498848,5.445321,0,0,O38:SA:CTP8617,Europe/Paris,,O38, +O38:SP:8619,1,"LES SERVES",45.466708,5.423544,0,0,O38:SA:CTP8619,Europe/Paris,,O38, +O38:SP:862,1,"LES FAURIES",44.934751,5.650328,0,0,O38:SA:CTP861,Europe/Paris,,O38, +O38:SP:8620,1,"LES SERVES",45.466671,5.42352,0,0,O38:SA:CTP8619,Europe/Paris,,O38, +O38:SP:8621,1,"LES RIPEAUX",45.472401,5.43388,0,0,O38:SA:CTP8621,Europe/Paris,,O38, +O38:SP:8622,1,"LES RIPEAUX",45.472371,5.433973,0,0,O38:SA:CTP8621,Europe/Paris,,O38, +O38:SP:8623,1,"EYNOUD",45.507316,5.446566,0,0,O38:SA:CTP8623,Europe/Paris,,O38, +O38:SP:8624,1,"LE ROUSSET",45.489508,5.432766,0,0,O38:SA:CTP8624,Europe/Paris,,O38, +O38:SP:8625,1,"LE ROUSSET",45.489477,5.432844,0,0,O38:SA:CTP8624,Europe/Paris,,O38, +O38:SP:8626,1,"PASSAGE A NIVEAU",45.490777,5.470363,0,0,O38:SA:CTP8626,Europe/Paris,,O38, +O38:SP:8627,1,"PASSAGE A NIVEAU",45.49078,5.470216,0,0,O38:SA:CTP8626,Europe/Paris,,O38, +O38:SP:8628,1,"MAIRIE",45.493614,5.463529,0,0,O38:SA:CTP8628,Europe/Paris,,O38, +O38:SP:8629,1,"MAIRIE",45.49372,5.463569,0,0,O38:SA:CTP8628,Europe/Paris,,O38, +O38:SP:863,1,"ECOLES MAT/PRIM.",44.982661,5.658332,0,0,O38:SA:CTP863,Europe/Paris,,O38, +O38:SP:8630,1,"SARAPIN",45.498387,5.464436,0,0,O38:SA:CTP8630,Europe/Paris,,O38, +O38:SP:8631,1,"SARAPIN",45.498869,5.465208,0,0,O38:SA:CTP8630,Europe/Paris,,O38, +O38:SP:8632,1,"PLACE CLAVEL",45.484857,5.475279,0,0,O38:SA:CTP8632,Europe/Paris,,O38, +O38:SP:8633,1,"PLACE CLAVEL",45.484968,5.475534,0,0,O38:SA:CTP8632,Europe/Paris,,O38, +O38:SP:8636,1,"GROUPE SCOLAIRE",45.481711,5.469542,0,0,O38:SA:CTP8636,Europe/Paris,,O38, +O38:SP:8638,1,"EGLISE",45.47022,5.44791,0,0,O38:SA:CTP8638,Europe/Paris,,O38, +O38:SP:8639,1,"EGLISE",45.470177,5.447946,0,0,O38:SA:CTP8638,Europe/Paris,,O38, +O38:SP:864,1,"ECOLES MAT/PRIM.",44.982679,5.658394,0,0,O38:SA:CTP863,Europe/Paris,,O38, +O38:SP:8640,1,"LA GUINGUETTE",45.488537,5.473836,0,0,O38:SA:CTP8640,Europe/Paris,,O38, +O38:SP:8641,1,"LA GUINGUETTE",45.488522,5.474021,0,0,O38:SA:CTP8640,Europe/Paris,,O38, +O38:SP:8642,1,"MALLEIN RD 73",45.466101,5.455294,0,0,O38:SA:CTP8642,Europe/Paris,,O38, +O38:SP:8643,1,"MALLEIN RD 73",45.466081,5.455392,0,0,O38:SA:CTP8642,Europe/Paris,,O38, +O38:SP:8644,1,"RUE DU CHAMP DE MARS",45.484265,5.476932,0,0,O38:SA:CTP8644,Europe/Paris,,O38, +O38:SP:8645,1,"RUE DU CHAMP DE MARS",45.484302,5.477021,0,0,O38:SA:CTP8644,Europe/Paris,,O38, +O38:SP:8646,1,"LE GRAND BLANDIN",45.479173,5.454994,0,0,O38:SA:CTP8646,Europe/Paris,,O38, +O38:SP:8647,1,"LE GRAND BLANDIN",45.479154,5.455093,0,0,O38:SA:CTP8646,Europe/Paris,,O38, +O38:SP:8648,1,"CHATEAU L'EPINAY",45.48556,5.453266,0,0,O38:SA:CTP8648,Europe/Paris,,O38, +O38:SP:8649,1,"CHATEAU L'EPINAY",45.485543,5.453308,0,0,O38:SA:CTP8648,Europe/Paris,,O38, +O38:SP:8651,1,"CIMETIERE",45.4728,5.449705,0,0,O38:SA:CTP8651,Europe/Paris,,O38, +O38:SP:8652,1,"PHARMACIE",45.483691,5.473375,0,0,O38:SA:CTP8652,Europe/Paris,,O38, +O38:SP:8653,1,"PHARMACIE",45.483633,5.473332,0,0,O38:SA:CTP8652,Europe/Paris,,O38, +O38:SP:8654,1,"LE GICLAS",45.487043,5.466692,0,0,O38:SA:CTP8654,Europe/Paris,,O38, +O38:SP:8655,1,"LE GICLAS",45.487101,5.466632,0,0,O38:SA:CTP8654,Europe/Paris,,O38, +O38:SP:8656,1,"LA RABATELIERE",45.490314,5.455031,0,0,O38:SA:CTP8656,Europe/Paris,,O38, +O38:SP:8657,1,"LA RABATELIERE",45.490354,5.454946,0,0,O38:SA:CTP8656,Europe/Paris,,O38, +O38:SP:8658,1,"VIRAGE DU VILLAGE",45.499732,5.500094,0,0,O38:SA:CTP8658,Europe/Paris,,O38, +O38:SP:8659,1,"VIRAGE DU VILLAGE",45.499661,5.500108,0,0,O38:SA:CTP8658,Europe/Paris,,O38, +O38:SP:8660,1,"EGLISE",45.500446,5.504057,0,0,O38:SA:CTP8660,Europe/Paris,,O38, +O38:SP:8661,1,"EGLISE",45.500512,5.504137,0,0,O38:SA:CTP8660,Europe/Paris,,O38, +O38:SP:8662,1,"MAISON GUTTIN",45.501389,5.498461,0,0,O38:SA:CTP8662,Europe/Paris,,O38, +O38:SP:8663,1,"MAISON GUTTIN",45.501391,5.498272,0,0,O38:SA:CTP8662,Europe/Paris,,O38, +O38:SP:8664,1,"PONT DES PIERRES",45.504491,5.490052,0,0,O38:SA:CTP8664,Europe/Paris,,O38, +O38:SP:8665,1,"PONT DES PIERRES",45.504553,5.490001,0,0,O38:SA:CTP8664,Europe/Paris,,O38, +O38:SP:8666,1,"CROISEMENT MACONIN",45.506356,5.510105,0,0,O38:SA:CTP8666,Europe/Paris,,O38, +O38:SP:8667,1,"CROISEMENT MACONIN",45.506276,5.510161,0,0,O38:SA:CTP8666,Europe/Paris,,O38, +O38:SP:8669,1,"LE MARAIS",45.493422,5.52854,0,0,O38:SA:CTP8669,Europe/Paris,,O38, +O38:SP:867,1,"LES RIPEAUX",44.980924,5.703441,0,0,O38:SA:CTP867,Europe/Paris,,O38, +O38:SP:8671,1,"LE MARAIS",45.49337,5.528398,0,0,O38:SA:CTP8669,Europe/Paris,,O38, +O38:SP:8672,1,"SALLE DES FETES",45.498104,5.539637,0,0,O38:SA:CTP8672,Europe/Paris,,O38, +O38:SP:8673,1,"SALLE DES FETES",45.498038,5.539679,0,0,O38:SA:CTP8672,Europe/Paris,,O38, +O38:SP:8674,1,"CARREFOUR MARCELAS",45.4979,5.529124,0,0,O38:SA:CTP8674,Europe/Paris,,O38, +O38:SP:8675,1,"CARREFOUR MARCELAS",45.497901,5.529017,0,0,O38:SA:CTP8674,Europe/Paris,,O38, +O38:SP:8677,1,"EGLISE",45.48938,5.592832,0,0,OVO:SA:CTP8676,Europe/Paris,,O38, +O38:SP:8678,1,"EGLISE",45.489549,5.592894,0,0,OVO:SA:CTP8676,Europe/Paris,,O38, +O38:SP:868,1,"LES RIPEAUX",44.980116,5.703435,0,0,O38:SA:CTP867,Europe/Paris,,O38, +O38:SP:8680,1,"JALAMION",45.498527,5.587899,0,0,O38:SA:CTP8680,Europe/Paris,,O38, +O38:SP:8682,1,"JALAMION",45.498658,5.588082,0,0,O38:SA:CTP8680,Europe/Paris,,O38, +O38:SP:8683,1,"LA CHARRIERE",45.496276,5.609524,0,0,O38:SA:CTP8683,Europe/Paris,,O38, +O38:SP:8684,1,"LA CHARRIERE",45.496367,5.609308,0,0,O38:SA:CTP8683,Europe/Paris,,O38, +O38:SP:8685,1,"FOND DE CHARRIERE",45.492751,5.613526,0,0,O38:SA:CTP8685,Europe/Paris,,O38, +O38:SP:8686,1,"FOND DE CHARRIERE",45.492563,5.613606,0,0,O38:SA:CTP8685,Europe/Paris,,O38, +O38:SP:8688,1,"VILLAGE EGLISE",45.489389,5.592822,0,0,OVO:SA:CTP8676,Europe/Paris,,O38, +O38:SP:869,1,"LES DOURCHES",44.941974,5.655374,0,0,O38:SA:CTP869,Europe/Paris,,O38, +O38:SP:8690,1,"VILLAGE EGLISE",45.489574,5.592888,0,0,OVO:SA:CTP8676,Europe/Paris,,O38, +O38:SP:8699,1,"LES ETRAITS",45.502328,5.593205,0,0,O38:SA:CTP8699,Europe/Paris,,O38, +O38:SP:870,1,"LES DOURCHES",44.941963,5.655382,0,0,O38:SA:CTP869,Europe/Paris,,O38, +O38:SP:8700,1,"LES ETRAITS",45.502214,5.593296,0,0,O38:SA:CTP8699,Europe/Paris,,O38, +O38:SP:8702,1,"TRIPIER",45.473351,5.566163,0,0,O38:SA:CTP8702,Europe/Paris,,O38, +O38:SP:8704,1,"TRIPIER",45.473998,5.566469,0,0,O38:SA:CTP8702,Europe/Paris,,O38, +O38:SP:8706,1,"BEGENSIERE",45.500805,5.606018,0,0,O38:SA:CTP8706,Europe/Paris,,O38, +O38:SP:8707,1,"BEGENSIERE",45.501233,5.606008,0,0,O38:SA:CTP8706,Europe/Paris,,O38, +O38:SP:8709,1,"PALADRU VILLAGE",45.476552,5.554898,0,0,OVO:SA:CTP8708,Europe/Paris,,O38, +O38:SP:871,1,"TREFFORT-CROIX",44.947407,5.718821,0,0,O38:SA:CTP871,Europe/Paris,,O38, +O38:SP:8711,1,"PALADRU VILLAGE",45.47626,5.554364,0,0,OVO:SA:CTP8708,Europe/Paris,,O38, +O38:SP:8712,1,"HAMEAU LE CLOU",45.490705,5.615287,0,0,O38:SA:CTP8712,Europe/Paris,,O38, +O38:SP:8713,1,"HAMEAU LE CLOU",45.49067,5.615197,0,0,O38:SA:CTP8712,Europe/Paris,,O38, +O38:SP:8715,1,"ST PIERRE DE PALADRU",45.488495,5.572284,0,0,OVO:SA:CTP8714,Europe/Paris,,O38, +O38:SP:8717,1,"ST PIERRE DE PALADRU",45.488225,5.571906,0,0,OVO:SA:CTP8714,Europe/Paris,,O38, +O38:SP:8719,1,"PALADRU STADE",45.483952,5.567596,0,0,O38:SA:CTP8719,Europe/Paris,,O38, +O38:SP:872,1,"TREFFORT-CROIX",44.947403,5.718923,0,0,O38:SA:CTP871,Europe/Paris,,O38, +O38:SP:8721,1,"PALADRU STADE",45.483097,5.567126,0,0,O38:SA:CTP8719,Europe/Paris,,O38, +O38:SP:8723,1,"VERRONIERE",45.466685,5.557607,0,0,O38:SA:CTP8723,Europe/Paris,,O38, +O38:SP:8724,1,"VERRONIERE",45.46743,5.558932,0,0,O38:SA:CTP8723,Europe/Paris,,O38, +O38:SP:8726,1,"GARAGE RENAULT",45.480031,5.564677,0,0,OVO:SA:CTP8725,Europe/Paris,,O38, +O38:SP:8728,1,"GARAGE RENAULT",45.480194,5.565021,0,0,OVO:SA:CTP8725,Europe/Paris,,O38, +O38:SP:873,1,"LA MOLIERE-ECOLE",44.949764,5.717417,0,0,O38:SA:CTP873,Europe/Paris,,O38, +O38:SP:8730,1,"LOT LA TRUITIERE",45.477853,5.559087,0,0,OVO:SA:CTP8729,Europe/Paris,,O38, +O38:SP:8732,1,"LOT LA TRUITIERE",45.477806,5.559042,0,0,OVO:SA:CTP8729,Europe/Paris,,O38, +O38:SP:8734,1,"BOURG",45.470283,5.609937,0,0,OVO:SA:CTP8733,Europe/Paris,,O38, +O38:SP:8737,1,"LA PLATIERE",45.479985,5.615709,0,0,O38:SA:CTP8737,Europe/Paris,,O38, +O38:SP:8739,1,"LA PLATIERE",45.479982,5.615729,0,0,O38:SA:CTP8737,Europe/Paris,,O38, +O38:SP:874,1,"LA MOLIERE-ECOLE",44.949805,5.717499,0,0,O38:SA:CTP873,Europe/Paris,,O38, +O38:SP:8741,1,"FERME MOLLARD",45.477229,5.614272,0,0,OVO:SA:CTP8740,Europe/Paris,,O38, +O38:SP:8743,1,"FERME MOLLARD",45.477202,5.614367,0,0,OVO:SA:CTP8740,Europe/Paris,,O38, +O38:SP:8745,1,"CHATEAU D'EAU",45.46583,5.616071,0,0,OVO:SA:CTP8744,Europe/Paris,,O38, +O38:SP:8747,1,"CHATEAU D'EAU",45.465861,5.616143,0,0,OVO:SA:CTP8744,Europe/Paris,,O38, +O38:SP:8749,1,"LES TROIS CHENES",45.503606,5.570962,0,0,OVO:SA:CTP8748,Europe/Paris,,O38, +O38:SP:875,1,"ECOLE PRIMAIRE",44.94672,5.658624,0,0,O38:SA:CTP875,Europe/Paris,,O38, +O38:SP:8751,1,"LES TROIS CHENES",45.503861,5.570701,0,0,OVO:SA:CTP8748,Europe/Paris,,O38, +O38:SP:8753,1,"LE PLATON",45.485086,5.632578,0,0,OVO:SA:CTP8752,Europe/Paris,,O38, +O38:SP:8755,1,"PICOUDIERE 4 CHEMINS",45.460607,5.681405,0,0,OVO:SA:CTP8754,Europe/Paris,,O38, +O38:SP:8757,1,"PICOUDIERE 4 CHEMINS",45.460573,5.681632,0,0,OVO:SA:CTP8754,Europe/Paris,,O38, +O38:SP:8758,1,"LA MARTINETTE",45.45996,5.641781,0,0,O38:SA:CTP8758,Europe/Paris,,O38, +O38:SP:8759,1,"LA MARTINETTE",45.45993,5.641874,0,0,O38:SA:CTP8758,Europe/Paris,,O38, +O38:SP:876,1,"ECOLE PRIMAIRE",44.946761,5.658547,0,0,O38:SA:CTP875,Europe/Paris,,O38, +O38:SP:8761,1,"LES HOPITAUX",45.471809,5.63202,0,0,OVO:SA:CTP8760,Europe/Paris,,O38, +O38:SP:8763,1,"LES HOPITAUX",45.471822,5.631999,0,0,OVO:SA:CTP8760,Europe/Paris,,O38, +O38:SP:8765,1,"L'ORCIERE",45.478801,5.623573,0,0,O38:SA:CTP8765,Europe/Paris,,O38, +O38:SP:8768,1,"LA RAMELIERE",45.494225,5.63115,0,0,O38:SA:CTP8768,Europe/Paris,,O38, +O38:SP:877,1,"LE VIVIER",44.956219,5.716507,0,0,O38:SA:CTP877,Europe/Paris,,O38, +O38:SP:8770,1,"LA RAMELIERE",45.494157,5.63119,0,0,O38:SA:CTP8768,Europe/Paris,,O38, +O38:SP:8772,1,"GRAND VELANNE",45.494624,5.645527,0,0,O38:SA:CTP8772,Europe/Paris,,O38, +O38:SP:8774,1,"GRAND VELANNE",45.494606,5.645581,0,0,O38:SA:CTP8772,Europe/Paris,,O38, +O38:SP:8775,1,"BASSAROT",45.481951,5.655898,0,0,O38:SA:CTP8775,Europe/Paris,,O38, +O38:SP:8776,1,"BASSAROT",45.482023,5.655903,0,0,O38:SA:CTP8775,Europe/Paris,,O38, +O38:SP:8777,1,"LE VIEUX ST JEAN",45.498478,5.668533,0,0,O38:SA:CTP8777,Europe/Paris,,O38, +O38:SP:8778,1,"LE VIEUX ST JEAN",45.498459,5.668473,0,0,O38:SA:CTP8777,Europe/Paris,,O38, +O38:SP:8779,1,"PLAMPALAIS HOPITAL",45.459213,5.632025,0,0,O38:SA:CTP8779,Europe/Paris,,O38, +O38:SP:878,1,"LE VIVIER",44.956154,5.716463,0,0,O38:SA:CTP877,Europe/Paris,,O38, +O38:SP:8780,1,"PLAMPALAIS HOPITAL",45.45923,5.632124,0,0,O38:SA:CTP8779,Europe/Paris,,O38, +O38:SP:8781,1,"VILLAGE",45.493708,5.682614,0,0,O38:SA:CTP8781,Europe/Paris,,O38, +O38:SP:8782,1,"VILLAGE",45.49364,5.682622,0,0,O38:SA:CTP8781,Europe/Paris,,O38, +O38:SP:8784,1,"LE DONNAT",45.469627,5.670348,0,0,O38:SA:CTP8784,Europe/Paris,,O38, +O38:SP:8786,1,"LA CROIX",45.497383,5.682879,0,0,O38:SA:CTP8786,Europe/Paris,,O38, +O38:SP:8787,1,"LA CROIX",45.497418,5.682967,0,0,O38:SA:CTP8786,Europe/Paris,,O38, +O38:SP:879,1,"EGLISE",44.945226,5.656058,0,0,O38:SA:CTP879,Europe/Paris,,O38, +O38:SP:8791,1,"LE PERRIER",45.467536,5.681039,0,0,O38:SA:CTP8791,Europe/Paris,,O38, +O38:SP:8793,1,"LA ROCHE",45.475772,5.680865,0,0,O38:SA:CTP8793,Europe/Paris,,O38, +O38:SP:8795,1,"LA ROCHE",45.475839,5.680986,0,0,O38:SA:CTP8793,Europe/Paris,,O38, +O38:SP:8798,1,"CHAMPET",45.465136,5.650409,0,0,O38:SA:CTP8798,Europe/Paris,,O38, +O38:SP:880,1,"EGLISE",44.945211,5.656124,0,0,O38:SA:CTP879,Europe/Paris,,O38, +O38:SP:8800,1,"CHAMPET",45.465052,5.650036,0,0,O38:SA:CTP8798,Europe/Paris,,O38, +O38:SP:8806,1,"LA PALE",45.467234,5.660477,0,0,O38:SA:CTP8806,Europe/Paris,,O38, +O38:SP:8808,1,"LA PALE",45.467226,5.660139,0,0,O38:SA:CTP8806,Europe/Paris,,O38, +O38:SP:8809,1,"LE BLETINET",45.502743,5.677942,0,0,O38:SA:CTP8809,Europe/Paris,,O38, +O38:SP:881,1,"LES JEANNOTS",44.973375,5.703924,0,0,O38:SA:CTP881,Europe/Paris,,O38, +O38:SP:8810,1,"LE BLETINET",45.502786,5.678025,0,0,O38:SA:CTP8809,Europe/Paris,,O38, +O38:SP:8812,1,"CENTRE",45.488851,5.647879,0,0,OVO:SA:CTP8811,Europe/Paris,,O38, +O38:SP:8814,1,"CENTRE",45.489024,5.648105,0,0,OVO:SA:CTP8811,Europe/Paris,,O38, +O38:SP:8816,1,"LA SAUGE",45.48198,5.658182,0,0,O38:SA:CTP8816,Europe/Paris,,O38, +O38:SP:8818,1,"LA SAUGE",45.481999,5.658472,0,0,O38:SA:CTP8816,Europe/Paris,,O38, +O38:SP:882,1,"LES JEANNOTS",44.973197,5.70386,0,0,O38:SA:CTP881,Europe/Paris,,O38, +O38:SP:8821,1,"EGLISE",45.494397,5.67811,0,0,O38:SA:CTP8821,Europe/Paris,,O38, +O38:SP:8822,1,"EGLISE",45.494372,5.678022,0,0,O38:SA:CTP8821,Europe/Paris,,O38, +O38:SP:8824,1,"LA GLACIERE",45.463502,5.631569,0,0,O38:SA:CTP8824,Europe/Paris,,O38, +O38:SP:8826,1,"LA GLACIERE",45.463523,5.631414,0,0,O38:SA:CTP8824,Europe/Paris,,O38, +O38:SP:8829,1,"LE CRE",45.456125,5.705083,0,0,O38:SA:CTP8829,Europe/Paris,,O38, +O38:SP:883,1,"LES COTES",44.946887,5.710797,0,0,O38:SA:CTP883,Europe/Paris,,O38, +O38:SP:8834,1,"RD82",45.480447,5.691039,0,0,O38:SA:CTP8834,Europe/Paris,,O38, +O38:SP:8836,1,"RD82",45.480715,5.691162,0,0,O38:SA:CTP8834,Europe/Paris,,O38, +O38:SP:8837,1,"LE LANET",45.502199,5.695649,0,0,O38:SA:CTP8837,Europe/Paris,,O38, +O38:SP:8839,1,"ECOLE LA MONTAGNE",45.461511,5.714573,0,0,O38:SA:CTP8839,Europe/Paris,,O38, +O38:SP:884,1,"LES COTES",44.946841,5.710744,0,0,O38:SA:CTP883,Europe/Paris,,O38, +O38:SP:8841,1,"LA MONTAGNE DESSUS",45.461797,5.711185,0,0,O38:SA:CTP8841,Europe/Paris,,O38, +O38:SP:8842,1,"CHEZ MUSY",45.492049,5.691686,0,0,O38:SA:CTP8842,Europe/Paris,,O38, +O38:SP:885,1,"LESPINASSE",44.962681,5.775835,0,0,O38:SA:CTP885,Europe/Paris,,O38, +O38:SP:8850,1,"LA BUQUINIERE",45.492858,5.70632,0,0,O38:SA:CTP8850,Europe/Paris,,O38, +O38:SP:8851,1,"LA BUQUINIERE",45.492821,5.706368,0,0,O38:SA:CTP8850,Europe/Paris,,O38, +O38:SP:8852,1,"LA SATRE",45.471681,5.688315,0,0,O38:SA:CTP8852,Europe/Paris,,O38, +O38:SP:8853,1,"LA SATRE",45.471609,5.688311,0,0,O38:SA:CTP8852,Europe/Paris,,O38, +O38:SP:8854,1,"LA BRANCHAT",45.491651,5.694959,0,0,O38:SA:CTP8854,Europe/Paris,,O38, +O38:SP:8856,1,"EGLISE",45.48444,5.71019,0,0,O38:SA:CTP8856,Europe/Paris,,O38, +O38:SP:8858,1,"EGLISE",45.484567,5.710126,0,0,O38:SA:CTP8856,Europe/Paris,,O38, +O38:SP:886,1,"LESPINASSE",44.962664,5.775737,0,0,O38:SA:CTP885,Europe/Paris,,O38, +O38:SP:8863,1,"LA ROUSSIERE",45.496641,5.688059,0,0,O38:SA:CTP8863,Europe/Paris,,O38, +O38:SP:8864,1,"LA ROUSSIERE",45.496679,5.687962,0,0,O38:SA:CTP8863,Europe/Paris,,O38, +O38:SP:8866,1,"VERCHERE",45.485618,5.70614,0,0,O38:SA:CTP8866,Europe/Paris,,O38, +O38:SP:8868,1,"VERCHERE",45.485374,5.706107,0,0,O38:SA:CTP8866,Europe/Paris,,O38, +O38:SP:887,1,"SER SIGAUD",44.943615,5.780032,0,0,O38:SA:CTP887,Europe/Paris,,O38, +O38:SP:8870,1,"MAISON GALLIN",45.472629,5.694142,0,0,O38:SA:CTP8870,Europe/Paris,,O38, +O38:SP:8872,1,"MAISON GALLIN",45.472586,5.693946,0,0,O38:SA:CTP8870,Europe/Paris,,O38, +O38:SP:8873,1,"SOUS LE MONT",45.477643,5.701373,0,0,O38:SA:CTP8873,Europe/Paris,,O38, +O38:SP:8874,1,"SOUS LE MONT",45.477694,5.701531,0,0,O38:SA:CTP8873,Europe/Paris,,O38, +O38:SP:8876,1,"LE FOYER MUNICIPAL",45.477201,5.690063,0,0,O38:SA:CTP8876,Europe/Paris,,O38, +O38:SP:8878,1,"LE FOYER MUNICIPAL",45.477145,5.689955,0,0,O38:SA:CTP8876,Europe/Paris,,O38, +O38:SP:8879,1,"BANDE DESSOUS",45.455403,5.780251,0,0,O38:SA:CTP8879,Europe/Paris,,O38, +O38:SP:888,1,"SER SIGAUD",44.943127,5.77993,0,0,O38:SA:CTP887,Europe/Paris,,O38, +O38:SP:8880,1,"BANDE DESSOUS",45.455501,5.780082,0,0,O38:SA:CTP8879,Europe/Paris,,O38, +O38:SP:8881,1,"COL DE COUZ",45.470342,5.818725,0,0,O38:SA:CTP8881,Europe/Paris,,O38, +O38:SP:8882,1,"COL DE COUZ",45.470612,5.818837,0,0,O38:SA:CTP8881,Europe/Paris,,O38, +O38:SP:8883,1,"COTE BARRIER",45.46029,5.8107,0,0,O38:SA:CTP8883,Europe/Paris,,O38, +O38:SP:8884,1,"COTE BARRIER",45.459845,5.810427,0,0,O38:SA:CTP8883,Europe/Paris,,O38, +O38:SP:8885,1,"LES GROS LOUIS",45.484129,5.833343,0,0,O38:SA:CTP8885,Europe/Paris,,O38, +O38:SP:8886,1,"LES GROS LOUIS",45.484356,5.833708,0,0,O38:SA:CTP8885,Europe/Paris,,O38, +O38:SP:8887,1,"LES MARTINS",45.478579,5.829685,0,0,O38:SA:CTP8887,Europe/Paris,,O38, +O38:SP:8888,1,"LES MARTINS",45.479013,5.829905,0,0,O38:SA:CTP8887,Europe/Paris,,O38, +O38:SP:889,1,"LE MOLLARD",44.963716,5.721313,0,0,O38:SA:CTP889,Europe/Paris,,O38, +O38:SP:8898,1,"LA GARE",45.467701,5.989566,0,0,O38:SA:CTP8898,Europe/Paris,,O38, +O38:SP:890,1,"LE MOLLARD",44.964048,5.721925,0,0,O38:SA:CTP889,Europe/Paris,,O38, +O38:SP:8900,1,"LA GARE",45.467802,5.989665,0,0,O38:SA:CTP8898,Europe/Paris,,O38, +O38:SP:8906,1,"CERNON",45.45972,5.994973,0,0,O38:SA:CTP8906,Europe/Paris,,O38, +O38:SP:8907,1,"CERNON",45.459717,5.995032,0,0,O38:SA:CTP8906,Europe/Paris,,O38, +O38:SP:891,1,"PEROUZAT",44.949688,5.779082,0,0,O38:SA:CTP891,Europe/Paris,,O38, +O38:SP:8917,1,"L'ETRAZ",45.471222,5.989011,0,0,O38:SA:CTP8917,Europe/Paris,,O38, +O38:SP:8919,1,"L'ETRAZ",45.4713,5.988878,0,0,O38:SA:CTP8917,Europe/Paris,,O38, +O38:SP:892,1,"PEROUZAT",44.949429,5.778994,0,0,O38:SA:CTP891,Europe/Paris,,O38, +O38:SP:8921,1,"MAIRIE",45.463372,5.990767,0,0,OGE:SA:CTP8922,Europe/Paris,,O38, +O38:SP:8923,1,"MAIRIE",45.463315,5.990692,0,0,OGE:SA:CTP8922,Europe/Paris,,O38, +O38:SP:893,1,"LA FESTINIERE",44.953347,5.754857,0,0,O38:SA:CTP893,Europe/Paris,,O38, +O38:SP:894,1,"LA FESTINIERE",44.953475,5.754444,0,0,O38:SA:CTP893,Europe/Paris,,O38, +O38:SP:8946,1,"LYCEE",45.530303,4.865634,0,0,OIV:SA:CTP8947,Europe/Paris,,O38, +O38:SP:8948,1,"LYCEE",45.530162,4.865661,0,0,OIV:SA:CTP8947,Europe/Paris,,O38, +O38:SP:895,1,"BAYARDIERE",44.950511,5.719754,0,0,O38:SA:CTP895,Europe/Paris,,O38, +O38:SP:8954,1,"MONTEE BON ACCUEIL",45.543383,4.866576,0,0,O38:SA:CTP8954,Europe/Paris,,O38, +O38:SP:8956,1,"MONTEE BON ACCUEIL",45.543983,4.865827,0,0,O38:SA:CTP8954,Europe/Paris,,O38, +O38:SP:8958,1,"COLLEGE GRANGE",45.54751,4.863616,0,0,O38:SA:CTP8958,Europe/Paris,,O38, +O38:SP:896,1,"BAYARDIERE",44.950505,5.719786,0,0,O38:SA:CTP895,Europe/Paris,,O38, +O38:SP:8960,1,"COLLEGE GRANGE",45.5475,4.863569,0,0,O38:SA:CTP8958,Europe/Paris,,O38, +O38:SP:8968,1,"COLLEGE PONSARD",45.5271,4.878444,0,0,OIV:SA:CTP8971,Europe/Paris,,O38, +O38:SP:8970,1,"COLLEGE PONSARD",45.527001,4.878827,0,0,OIV:SA:CTP8971,Europe/Paris,,O38, +O38:SP:8972,1,"PLACE JEU DE PAUME",45.526955,4.873279,0,0,OIV:SA:CTP13978,Europe/Paris,,O38, +O38:SP:8973,1,"PLACE JEU DE PAUME",45.527165,4.873287,0,0,OIV:SA:CTP13978,Europe/Paris,,O38, +O38:SP:8986,1,"GROTTE",45.554888,4.947962,0,0,O38:SA:CTP8986,Europe/Paris,,O38, +O38:SP:8987,1,"GROTTE",45.554929,4.94782,0,0,O38:SA:CTP8986,Europe/Paris,,O38, +O38:SP:8989,1,"MAIRIE",45.530008,4.912182,0,0,OIV:SA:CTP8988,Europe/Paris,,O38, +O38:SP:899,1,"LA FAURIE",44.95931,5.725713,0,0,O38:SA:CTP899,Europe/Paris,,O38, +O38:SP:8991,1,"MAIRIE",45.530021,4.91209,0,0,OIV:SA:CTP8988,Europe/Paris,,O38, +O38:SP:8999,1,"LA VEGA",45.529742,4.902193,0,0,OIV:SA:CTP9000,Europe/Paris,,O38, +O38:SP:900,1,"LA FAURIE",44.959296,5.725613,0,0,O38:SA:CTP899,Europe/Paris,,O38, +O38:SP:9001,1,"LA VEGA",45.530003,4.903081,0,0,OIV:SA:CTP9000,Europe/Paris,,O38, +O38:SP:9003,1,"CHARLEMAGNE",45.526616,4.904148,0,0,OIV:SA:CTP9007,Europe/Paris,,O38, +O38:SP:9005,1,"CHARLEMAGNE",45.526846,4.903451,0,0,OIV:SA:CTP9007,Europe/Paris,,O38, +O38:SP:9009,1,"G. BRASSENS CORRESPONDANCE",45.528146,4.926075,0,0,OIV:SA:CTP103005,Europe/Paris,,O38, +O38:SP:901,1,"LES BUTTARIAS",44.959867,5.73166,0,0,O38:SA:CTP901,Europe/Paris,,O38, +O38:SP:9011,1,"G. BRASSENS CORRESPONDANCE",45.528152,4.926199,0,0,OIV:SA:CTP103005,Europe/Paris,,O38, +O38:SP:9012,1,"LE BIELOIS",45.567288,5.008941,0,0,O38:SA:CTP9012,Europe/Paris,,O38, +O38:SP:9013,1,"LE BIELOIS",45.567223,5.008984,0,0,O38:SA:CTP9012,Europe/Paris,,O38, +O38:SP:9014,1,"PEAGE DE OYTIER",45.565348,5.003382,0,0,O38:SA:CTP9014,Europe/Paris,,O38, +O38:SP:9015,1,"PEAGE DE OYTIER",45.565338,5.003213,0,0,O38:SA:CTP9014,Europe/Paris,,O38, +O38:SP:9016,1,"LE PAVY-BONNON",45.556377,5.014773,0,0,O38:SA:CTP9016,Europe/Paris,,O38, +O38:SP:9017,1,"LE PAVY-BONNON",45.556434,5.014787,0,0,O38:SA:CTP9016,Europe/Paris,,O38, +O38:SP:9019,1,"PLACE",45.55293,5.004351,0,0,O38:SA:CTP9019,Europe/Paris,,O38, +O38:SP:902,1,"LES BUTTARIAS",44.959824,5.731741,0,0,O38:SA:CTP901,Europe/Paris,,O38, +O38:SP:9021,1,"PLACE",45.553,5.004376,0,0,O38:SA:CTP9019,Europe/Paris,,O38, +O38:SP:9023,1,"SUBTUER",45.552489,4.982653,0,0,O38:SA:CTP9023,Europe/Paris,,O38, +O38:SP:9025,1,"SUBTUER",45.552547,4.982712,0,0,O38:SA:CTP9023,Europe/Paris,,O38, +O38:SP:9027,1,"BARATON",45.549242,4.96238,0,0,O38:SA:CTP9027,Europe/Paris,,O38, +O38:SP:9029,1,"BARATON",45.549175,4.962415,0,0,O38:SA:CTP9027,Europe/Paris,,O38, +O38:SP:903,1,"LA GARE",44.961613,5.736888,0,0,O38:SA:CTP903,Europe/Paris,,O38, +O38:SP:9031,1,"PEAGE STATION AGIP",45.564013,4.99529,0,0,O38:SA:CTP9031,Europe/Paris,,O38, +O38:SP:9033,1,"PEAGE STATION AGIP",45.563942,4.995306,0,0,O38:SA:CTP9031,Europe/Paris,,O38, +O38:SP:9037,1,"AVANT LE PALAIS",45.551535,4.974661,0,0,O38:SA:CTP9037,Europe/Paris,,O38, +O38:SP:9039,1,"AVANT LE PALAIS",45.551508,4.974679,0,0,O38:SA:CTP9037,Europe/Paris,,O38, +O38:SP:904,1,"LA GARE",44.961818,5.736341,0,0,O38:SA:CTP903,Europe/Paris,,O38, +O38:SP:9041,1,"SOUS COTE",45.56145,4.98041,0,0,O38:SA:CTP9041,Europe/Paris,,O38, +O38:SP:9042,1,"SOUS COTE",45.561648,4.981547,0,0,O38:SA:CTP9041,Europe/Paris,,O38, +O38:SP:9044,1,"PERRIER-LE CLOS",45.557901,4.963036,0,0,OIV:SA:CTP9046,Europe/Paris,,O38, +O38:SP:9047,1,"ROUTE DE LUZINAY",45.557218,4.955193,0,0,O38:SA:CTP9047,Europe/Paris,,O38, +O38:SP:9049,1,"ROUTE DE LUZINAY",45.556853,4.954233,0,0,O38:SA:CTP9047,Europe/Paris,,O38, +O38:SP:905,1,"COMBEFOLLE",44.96506,5.729456,0,0,O38:SA:CTP905,Europe/Paris,,O38, +O38:SP:9051,1,"LE PEAGE",45.564378,4.998254,0,0,O38:SA:CTP9051,Europe/Paris,,O38, +O38:SP:9053,1,"LE PEAGE",45.564255,4.998339,0,0,O38:SA:CTP9051,Europe/Paris,,O38, +O38:SP:9054,1,"OYTIER - LA PLACE",45.562056,5.021158,0,0,O38:SA:CTP9054,Europe/Paris,,O38, +O38:SP:9055,1,"OYTIER - LA PLACE",45.562041,5.021057,0,0,O38:SA:CTP9054,Europe/Paris,,O38, +O38:SP:9058,1,"LA FOURNACHE",45.567383,5.026316,0,0,O38:SA:CTP9058,Europe/Paris,,O38, +O38:SP:9059,1,"LA FOURNACHE",45.567315,5.026349,0,0,O38:SA:CTP9058,Europe/Paris,,O38, +O38:SP:906,1,"COMBEFOLLE",44.966388,5.730035,0,0,O38:SA:CTP905,Europe/Paris,,O38, +O38:SP:9060,1,"LA PRINCIERE",45.559172,5.078522,0,0,O38:SA:CTP9060,Europe/Paris,,O38, +O38:SP:9061,1,"LA PRINCIERE",45.559101,5.078496,0,0,O38:SA:CTP9060,Europe/Paris,,O38, +O38:SP:9062,1,"LE BERTHOLON STADE",45.56223,5.019168,0,0,O38:SA:CTP9062,Europe/Paris,,O38, +O38:SP:9063,1,"VILLAGE",45.555619,5.080284,0,0,O38:SA:CTP9063,Europe/Paris,,O38, +O38:SP:9064,1,"VILLAGE",45.555397,5.080485,0,0,O38:SA:CTP9063,Europe/Paris,,O38, +O38:SP:9065,1,"CENTRE EQUESTRE",45.544211,5.059534,0,0,O38:SA:CTP9065,Europe/Paris,,O38, +O38:SP:9066,1,"CENTRE EQUESTRE",45.544249,5.05962,0,0,O38:SA:CTP9065,Europe/Paris,,O38, +O38:SP:9067,1,"LE REVOIREAU",45.544536,5.053283,0,0,O38:SA:CTP9067,Europe/Paris,,O38, +O38:SP:9068,1,"LE REVOIREAU",45.54455,5.053272,0,0,O38:SA:CTP9067,Europe/Paris,,O38, +O38:SP:9069,1,"GORGES",45.545276,5.030006,0,0,O38:SA:CTP9069,Europe/Paris,,O38, +O38:SP:907,1,"LA ROCHE",44.960548,5.746295,0,0,O38:SA:CTP907,Europe/Paris,,O38, +O38:SP:9070,1,"GORGES",45.545278,5.030032,0,0,O38:SA:CTP9069,Europe/Paris,,O38, +O38:SP:9071,1,"CHEZ MARET",45.540203,5.031996,0,0,O38:SA:CTP9071,Europe/Paris,,O38, +O38:SP:9072,1,"CHEZ MARET",45.540229,5.032092,0,0,O38:SA:CTP9071,Europe/Paris,,O38, +O38:SP:9073,1,"CHATEAU D'EAU",45.535852,5.037031,0,0,O38:SA:CTP9073,Europe/Paris,,O38, +O38:SP:9074,1,"CHATEAU D'EAU",45.535882,5.037123,0,0,O38:SA:CTP9073,Europe/Paris,,O38, +O38:SP:9075,1,"LE SERVANIN",45.542631,5.04698,0,0,O38:SA:CTP9075,Europe/Paris,,O38, +O38:SP:9076,1,"LE SERVANIN",45.542565,5.046944,0,0,O38:SA:CTP9075,Europe/Paris,,O38, +O38:SP:9077,1,"RANGUILLON",45.552193,5.02451,0,0,O38:SA:CTP9077,Europe/Paris,,O38, +O38:SP:9078,1,"RANGUILLON",45.552202,5.024546,0,0,O38:SA:CTP9077,Europe/Paris,,O38, +O38:SP:908,1,"LA ROCHE",44.960578,5.74624,0,0,O38:SA:CTP907,Europe/Paris,,O38, +O38:SP:9081,1,"LE COLOMBIER",45.524987,5.084513,0,0,O38:SA:CTP9081,Europe/Paris,,O38, +O38:SP:9082,1,"LE COLOMBIER",45.525048,5.084398,0,0,O38:SA:CTP9081,Europe/Paris,,O38, +O38:SP:9083,1,"MAISON NACQUIN",45.550625,5.147912,0,0,O38:SA:CTP9083,Europe/Paris,,O38, +O38:SP:9084,1,"MAISON NACQUIN",45.550554,5.147891,0,0,O38:SA:CTP9083,Europe/Paris,,O38, +O38:SP:9085,1,"LE PLAN-ANCIEN MOULIN",45.531744,5.108685,0,0,O38:SA:CTP9085,Europe/Paris,,O38, +O38:SP:9086,1,"LE PLAN-ANCIEN MOULIN",45.5318,5.108823,0,0,O38:SA:CTP9085,Europe/Paris,,O38, +O38:SP:9087,1,"LES EPYES",45.534928,5.113264,0,0,O38:SA:CTP9087,Europe/Paris,,O38, +O38:SP:9088,1,"LES EPYES",45.535027,5.113235,0,0,O38:SA:CTP9087,Europe/Paris,,O38, +O38:SP:9089,1,"USINE DOUILLET",45.533086,5.121759,0,0,O38:SA:CTP9089,Europe/Paris,,O38, +O38:SP:909,1,"LE VILLARD-ECOLE",44.967231,5.738289,0,0,O38:SA:CTP909,Europe/Paris,,O38, +O38:SP:9090,1,"USINE DOUILLET",45.533094,5.122021,0,0,O38:SA:CTP9089,Europe/Paris,,O38, +O38:SP:9091,1,"MAISON TURILLE",45.535348,5.12881,0,0,O38:SA:CTP9091,Europe/Paris,,O38, +O38:SP:9092,1,"MAISON TURILLE",45.535472,5.129405,0,0,O38:SA:CTP9091,Europe/Paris,,O38, +O38:SP:9093,1,"LES CLAVELIERES",45.540746,5.101064,0,0,O38:SA:CTP9093,Europe/Paris,,O38, +O38:SP:9094,1,"LES CLAVELIERES",45.540751,5.101253,0,0,O38:SA:CTP9093,Europe/Paris,,O38, +O38:SP:9095,1,"VILLAGE",45.53768,5.105183,0,0,O38:SA:CTP9095,Europe/Paris,,O38, +O38:SP:9096,1,"VILLAGE",45.537662,5.105261,0,0,O38:SA:CTP9095,Europe/Paris,,O38, +O38:SP:9097,1,"LA FARFATIERE",45.537592,5.143433,0,0,O38:SA:CTP9097,Europe/Paris,,O38, +O38:SP:9098,1,"LA FARFATIERE",45.537552,5.143347,0,0,O38:SA:CTP9097,Europe/Paris,,O38, +O38:SP:9099,1,"LE BARROZ",45.548256,5.139627,0,0,O38:SA:CTP9099,Europe/Paris,,O38, +O38:SP:910,1,"LE VILLARD-ECOLE",44.96708,5.738385,0,0,O38:SA:CTP909,Europe/Paris,,O38, +O38:SP:9100,1,"LE BARROZ",45.54831,5.139601,0,0,O38:SA:CTP9099,Europe/Paris,,O38, +O38:SP:9101,1,"ROUTE DE CHASSE",45.532265,5.08862,0,0,O38:SA:CTP9101,Europe/Paris,,O38, +O38:SP:9102,1,"ROUTE DE CHASSE",45.53227,5.088478,0,0,O38:SA:CTP9101,Europe/Paris,,O38, +O38:SP:9105,1,"CHEZ MATHILDE",45.560002,5.146421,0,0,O38:SA:CTP9105,Europe/Paris,,O38, +O38:SP:9106,1,"CHEZ MATHILDE",45.560025,5.146368,0,0,O38:SA:CTP9105,Europe/Paris,,O38, +O38:SP:9107,1,"L'AMBALLON",45.548268,5.094287,0,0,O38:SA:CTP9107,Europe/Paris,,O38, +O38:SP:9108,1,"L'AMBALLON",45.548342,5.09404,0,0,O38:SA:CTP9107,Europe/Paris,,O38, +O38:SP:9109,1,"LES AYES",45.561003,5.0951,0,0,O38:SA:CTP9109,Europe/Paris,,O38, +O38:SP:911,1,"STATION SERVICE",44.958113,5.777296,0,0,O38:SA:CTP911,Europe/Paris,,O38, +O38:SP:9110,1,"LES AYES",45.561051,5.095048,0,0,O38:SA:CTP9109,Europe/Paris,,O38, +O38:SP:9111,1,"COLLEGE DE PERANCHE",45.554911,5.0852,0,0,O38:SA:CTP9111,Europe/Paris,,O38, +O38:SP:9112,1,"COLLEGE DE PERANCHE",45.554999,5.085331,0,0,O38:SA:CTP9111,Europe/Paris,,O38, +O38:SP:9113,1,"CHARLET",45.534999,5.10484,0,0,O38:SA:CTP9113,Europe/Paris,,O38, +O38:SP:9114,1,"CHARLET",45.535006,5.104968,0,0,O38:SA:CTP9113,Europe/Paris,,O38, +O38:SP:9115,1,"JACQUERON",45.559858,5.125471,0,0,O38:SA:CTP9115,Europe/Paris,,O38, +O38:SP:9116,1,"JACQUERON",45.559908,5.125463,0,0,O38:SA:CTP9115,Europe/Paris,,O38, +O38:SP:9117,1,"PARKING COLLEGE DE PERANCHE",45.554834,5.085227,0,0,O38:SA:CTP9117,Europe/Paris,,O38, +O38:SP:9118,1,"PARKING COLLEGE DE PERANCHE",45.554709,5.085299,0,0,O38:SA:CTP9117,Europe/Paris,,O38, +O38:SP:9119,1,"LE RAFFET",45.518286,5.211218,0,0,O38:SA:CTP9119,Europe/Paris,,O38, +O38:SP:912,1,"STATION SERVICE",44.957943,5.777277,0,0,O38:SA:CTP911,Europe/Paris,,O38, +O38:SP:9120,1,"LE RAFFET",45.518416,5.211457,0,0,O38:SA:CTP9119,Europe/Paris,,O38, +O38:SP:9122,1,"LA CHARPE",45.548179,5.209593,0,0,O38:SA:CTP9122,Europe/Paris,,O38, +O38:SP:9124,1,"LA CHARPE",45.548123,5.209443,0,0,O38:SA:CTP9122,Europe/Paris,,O38, +O38:SP:9129,1,"PLACE DU 8 MAI",45.536109,5.165562,0,0,O38:SA:CTP9129,Europe/Paris,,O38, +O38:SP:913,1,"PEYCHAGNARD",44.935765,5.763615,0,0,O38:SA:CTP913,Europe/Paris,,O38, +O38:SP:9130,1,"PLACE DU 8 MAI",45.536326,5.166388,0,0,O38:SA:CTP9129,Europe/Paris,,O38, +O38:SP:9131,1,"TARNEZIEU",45.542912,5.201154,0,0,O38:SA:CTP9131,Europe/Paris,,O38, +O38:SP:9132,1,"TARNEZIEU",45.542951,5.201208,0,0,O38:SA:CTP9131,Europe/Paris,,O38, +O38:SP:9133,1,"L'ABERAY",45.5316,5.155954,0,0,O38:SA:CTP9133,Europe/Paris,,O38, +O38:SP:9134,1,"L'ABERAY",45.532201,5.156066,0,0,O38:SA:CTP9133,Europe/Paris,,O38, +O38:SP:9135,1,"LA PETITE FORET 2",45.53512,5.184769,0,0,O38:SA:CTP9135,Europe/Paris,,O38, +O38:SP:9136,1,"LA PETITE FORET 2",45.535136,5.184772,0,0,O38:SA:CTP9135,Europe/Paris,,O38, +O38:SP:9139,1,"LA VERNE",45.541914,5.190514,0,0,O38:SA:CTP9139,Europe/Paris,,O38, +O38:SP:914,1,"PEYCHAGNARD",44.935816,5.763544,0,0,O38:SA:CTP913,Europe/Paris,,O38, +O38:SP:9140,1,"LA VERNE",45.541898,5.19067,0,0,O38:SA:CTP9139,Europe/Paris,,O38, +O38:SP:9141,1,"LE REVOLLET",45.539147,5.147918,0,0,O38:SA:CTP9141,Europe/Paris,,O38, +O38:SP:9142,1,"LE REVOLLET",45.539306,5.148286,0,0,O38:SA:CTP9141,Europe/Paris,,O38, +O38:SP:9143,1,"LA PETITE FORET",45.533759,5.18419,0,0,O38:SA:CTP9143,Europe/Paris,,O38, +O38:SP:9144,1,"LA PETITE FORET",45.533749,5.18424,0,0,O38:SA:CTP9143,Europe/Paris,,O38, +O38:SP:9147,1,"STADE",45.540169,5.156252,0,0,O38:SA:CTP9147,Europe/Paris,,O38, +O38:SP:9148,1,"STADE",45.540126,5.155096,0,0,O38:SA:CTP9147,Europe/Paris,,O38, +O38:SP:9149,1,"LES BEAUX/LA CROIX",45.563221,5.171111,0,0,O38:SA:CTP9149,Europe/Paris,,O38, +O38:SP:915,1,"LES BETHOUX",44.956362,5.726288,0,0,O38:SA:CTP915,Europe/Paris,,O38, +O38:SP:9150,1,"LES BEAUX/LA CROIX",45.563188,5.171173,0,0,O38:SA:CTP9149,Europe/Paris,,O38, +O38:SP:9151,1,"LA GRANDE FORET",45.548446,5.186614,0,0,O38:SA:CTP9151,Europe/Paris,,O38, +O38:SP:9152,1,"LA GRANDE FORET",45.548401,5.186638,0,0,O38:SA:CTP9151,Europe/Paris,,O38, +O38:SP:9156,1,"MALASSIN",45.554904,5.214163,0,0,O38:SA:CTP9156,Europe/Paris,,O38, +O38:SP:9158,1,"MALASSIN",45.554878,5.214107,0,0,O38:SA:CTP9156,Europe/Paris,,O38, +O38:SP:9159,1,"LA GRANDE FORET 2",45.547998,5.178761,0,0,O38:SA:CTP9159,Europe/Paris,,O38, +O38:SP:916,1,"LES BETHOUX",44.956398,5.726375,0,0,O38:SA:CTP915,Europe/Paris,,O38, +O38:SP:9160,1,"LA GRANDE FORET 2",45.548058,5.178748,0,0,O38:SA:CTP9159,Europe/Paris,,O38, +O38:SP:9161,1,"FOURNEAT",45.564495,5.160069,0,0,O38:SA:CTP9161,Europe/Paris,,O38, +O38:SP:9162,1,"FOURNEAT",45.564382,5.159999,0,0,O38:SA:CTP9161,Europe/Paris,,O38, +O38:SP:9163,1,"HAMEAU LES BEAUX",45.56353,5.183581,0,0,O38:SA:CTP9163,Europe/Paris,,O38, +O38:SP:9164,1,"HAMEAU LES BEAUX",45.563578,5.183567,0,0,O38:SA:CTP9163,Europe/Paris,,O38, +O38:SP:9166,1,"LA RIVOIRE",45.56158,5.283557,0,0,O38:SA:CTP9166,Europe/Paris,,O38, +O38:SP:9168,1,"LA RIVOIRE",45.561512,5.283708,0,0,O38:SA:CTP9166,Europe/Paris,,O38, +O38:SP:9169,1,"LE MOULE-CAFE",45.547337,5.251696,0,0,O38:SA:CTP9169,Europe/Paris,,O38, +O38:SP:917,1,"LE CREY",44.941409,5.764341,0,0,O38:SA:CTP917,Europe/Paris,,O38, +O38:SP:9170,1,"LE MOULE-CAFE",45.547671,5.252412,0,0,O38:SA:CTP9169,Europe/Paris,,O38, +O38:SP:9172,1,"LA PLACE",45.549195,5.223396,0,0,O38:SA:CTP9172,Europe/Paris,,O38, +O38:SP:9174,1,"LA PLACE",45.549151,5.223335,0,0,O38:SA:CTP9172,Europe/Paris,,O38, +O38:SP:9176,1,"EGLISE",45.550822,5.229055,0,0,O38:SA:CTP9176,Europe/Paris,,O38, +O38:SP:918,1,"LE CREY",44.941162,5.764539,0,0,O38:SA:CTP917,Europe/Paris,,O38, +O38:SP:9183,1,"LA BARRE",45.555526,5.2798,0,0,O38:SA:CTP9183,Europe/Paris,,O38, +O38:SP:9185,1,"LA BARRE",45.556142,5.28021,0,0,O38:SA:CTP9183,Europe/Paris,,O38, +O38:SP:9186,1,"BARRACAND",45.526867,5.259488,0,0,O38:SA:CTP9186,Europe/Paris,,O38, +O38:SP:9187,1,"BARRACAND",45.526822,5.259464,0,0,O38:SA:CTP9186,Europe/Paris,,O38, +O38:SP:9188,1,"BAGNEUX",45.529548,5.241561,0,0,O38:SA:CTP9188,Europe/Paris,,O38, +O38:SP:9189,1,"BAGNEUX",45.529618,5.241543,0,0,O38:SA:CTP9188,Europe/Paris,,O38, +O38:SP:919,1,"LE VERNAY",44.976922,5.744629,0,0,O38:SA:CTP919,Europe/Paris,,O38, +O38:SP:9192,1,"ENTREE BOURG",45.520938,5.250217,0,0,O38:SA:CTP9192,Europe/Paris,,O38, +O38:SP:9196,1,"LES VIGNES",45.525789,5.246756,0,0,O38:SA:CTP9196,Europe/Paris,,O38, +O38:SP:9197,1,"LES VIGNES",45.525856,5.246722,0,0,O38:SA:CTP9196,Europe/Paris,,O38, +O38:SP:9198,1,"BOURG",45.524313,5.254504,0,0,O38:SA:CTP9198,Europe/Paris,,O38, +O38:SP:920,1,"LE VERNAY",44.976936,5.744505,0,0,O38:SA:CTP919,Europe/Paris,,O38, +O38:SP:9201,1,"LE GRAND PALEYSIN",45.558598,5.252155,0,0,O38:SA:CTP9201,Europe/Paris,,O38, +O38:SP:9203,1,"LE GRAND PALEYSIN",45.558565,5.252122,0,0,O38:SA:CTP9201,Europe/Paris,,O38, +O38:SP:9205,1,"ECOLE",45.515188,5.268671,0,0,O38:SA:CTP9205,Europe/Paris,,O38, +O38:SP:9206,1,"CROIX CHEVALLIER",45.519506,5.26699,0,0,O38:SA:CTP9206,Europe/Paris,,O38, +O38:SP:9207,1,"CROIX CHEVALLIER",45.5196,5.26704,0,0,O38:SA:CTP9206,Europe/Paris,,O38, +O38:SP:9209,1,"LA PLACE",45.561677,5.2224,0,0,O38:SA:CTP9209,Europe/Paris,,O38, +O38:SP:921,1,"LE COLLET",44.948682,5.757919,0,0,O38:SA:CTP921,Europe/Paris,,O38, +O38:SP:9211,1,"LA PLACE",45.561589,5.222106,0,0,O38:SA:CTP9209,Europe/Paris,,O38, +O38:SP:9213,1,"LE PETIT PALEYSIN",45.557713,5.247517,0,0,O38:SA:CTP9213,Europe/Paris,,O38, +O38:SP:9215,1,"LE PETIT PALEYSIN",45.557683,5.247563,0,0,O38:SA:CTP9213,Europe/Paris,,O38, +O38:SP:922,1,"LE COLLET",44.948701,5.757847,0,0,O38:SA:CTP921,Europe/Paris,,O38, +O38:SP:9228,1,"MAIRIE",45.524647,5.252455,0,0,O38:SA:CTP9228,Europe/Paris,,O38, +O38:SP:9229,1,"MAIRIE",45.524632,5.252556,0,0,O38:SA:CTP9228,Europe/Paris,,O38, +O38:SP:923,1,"LES ECURIES",44.965361,5.743022,0,0,O38:SA:CTP923,Europe/Paris,,O38, +O38:SP:9230,1,"LA MISERE",45.541326,5.251387,0,0,O38:SA:CTP9230,Europe/Paris,,O38, +O38:SP:9231,1,"LA MISERE",45.54135,5.251157,0,0,O38:SA:CTP9230,Europe/Paris,,O38, +O38:SP:9232,1,"TRAMOLE",45.516516,5.267543,0,0,O38:SA:CTP9232,Europe/Paris,,O38, +O38:SP:9233,1,"TRAMOLE",45.516505,5.267441,0,0,O38:SA:CTP9232,Europe/Paris,,O38, +O38:SP:9234,1,"LE RAFFOUR",45.532024,5.22188,0,0,O38:SA:CTP9234,Europe/Paris,,O38, +O38:SP:9235,1,"LE RAFFOUR",45.531771,5.221792,0,0,O38:SA:CTP9234,Europe/Paris,,O38, +O38:SP:9236,1,"LE CHATENAY",45.538432,5.239889,0,0,O38:SA:CTP9236,Europe/Paris,,O38, +O38:SP:9237,1,"LE CHATENAY",45.538403,5.239793,0,0,O38:SA:CTP9236,Europe/Paris,,O38, +O38:SP:9238,1,"ECOLE",45.540846,5.244075,0,0,O38:SA:CTP9238,Europe/Paris,,O38, +O38:SP:9239,1,"ECOLE",45.540812,5.243992,0,0,O38:SA:CTP9238,Europe/Paris,,O38, +O38:SP:924,1,"LES ECURIES",44.965291,5.743095,0,0,O38:SA:CTP923,Europe/Paris,,O38, +O38:SP:9241,1,"CIMETIERE",45.550816,5.232443,0,0,O38:SA:CTP9241,Europe/Paris,,O38, +O38:SP:9243,1,"CIMETIERE",45.551068,5.233247,0,0,O38:SA:CTP9241,Europe/Paris,,O38, +O38:SP:9248,1,"MAIRIE",45.558704,5.28673,0,0,O38:SA:CTP9248,Europe/Paris,,O38, +O38:SP:9250,1,"MAIRIE",45.5587,5.286833,0,0,O38:SA:CTP9248,Europe/Paris,,O38, +O38:SP:9257,1,"CAFE BONNET",45.517499,5.329863,0,0,O38:SA:CTP9257,Europe/Paris,,O38, +O38:SP:9258,1,"CAFE BONNET",45.517518,5.329734,0,0,O38:SA:CTP9257,Europe/Paris,,O38, +O38:SP:9259,1,"LOTISSEMENT DU STADE",45.515141,5.329769,0,0,O38:SA:CTP9259,Europe/Paris,,O38, +O38:SP:926,1,"MAIRIE",44.962008,5.744031,0,0,O38:SA:CTP926,Europe/Paris,,O38, +O38:SP:9260,1,"LOTISSEMENT DU STADE",45.515079,5.329691,0,0,O38:SA:CTP9259,Europe/Paris,,O38, +O38:SP:9262,1,"LA COMBE-RN.85",45.532309,5.308255,0,0,O38:SA:CTP9262,Europe/Paris,,O38, +O38:SP:9264,1,"LA COMBE-RN.85",45.532355,5.308368,0,0,O38:SA:CTP9262,Europe/Paris,,O38, +O38:SP:927,1,"MAIRIE",44.961929,5.744007,0,0,O38:SA:CTP926,Europe/Paris,,O38, +O38:SP:9273,1,"VERS NIVOLAS",45.559409,5.293321,0,0,O38:SA:CTP9273,Europe/Paris,,O38, +O38:SP:9276,1,"ROUTE DE BIOL",45.539613,5.310272,0,0,O38:SA:CTP9276,Europe/Paris,,O38, +O38:SP:9278,1,"ROUTE DE BIOL",45.539318,5.31006,0,0,O38:SA:CTP9276,Europe/Paris,,O38, +O38:SP:9290,1,"VOLAND/PACHAUDIERE",45.519269,5.304575,0,0,O38:SA:CTP9290,Europe/Paris,,O38, +O38:SP:9292,1,"VOLAND/PACHAUDIERE",45.519048,5.30457,0,0,O38:SA:CTP9290,Europe/Paris,,O38, +O38:SP:9298,1,"LES MOIROUDS",45.557963,5.33761,0,0,O38:SA:CTP9298,Europe/Paris,,O38, +O38:SP:930,1,"LES MOUTIERES",44.934907,5.771084,0,0,O38:SA:CTP930,Europe/Paris,,O38, +O38:SP:9300,1,"LES MOIROUDS",45.557951,5.337867,0,0,O38:SA:CTP9298,Europe/Paris,,O38, +O38:SP:9302,1,"LA PLACE",45.556772,5.305935,0,0,O38:SA:CTP9302,Europe/Paris,,O38, +O38:SP:9304,1,"LA PLACE",45.556843,5.30641,0,0,O38:SA:CTP9302,Europe/Paris,,O38, +O38:SP:9306,1,"BAS VERMELLE",45.560134,5.30424,0,0,O38:SA:CTP9306,Europe/Paris,,O38, +O38:SP:9308,1,"BAS VERMELLE",45.560034,5.304385,0,0,O38:SA:CTP9306,Europe/Paris,,O38, +O38:SP:931,1,"LES MOUTIERES",44.934796,5.770985,0,0,O38:SA:CTP930,Europe/Paris,,O38, +O38:SP:9311,1,"PLACE",45.557668,5.343304,0,0,O38:SA:CTP9311,Europe/Paris,,O38, +O38:SP:9313,1,"PLACE",45.557718,5.343704,0,0,O38:SA:CTP9311,Europe/Paris,,O38, +O38:SP:9314,1,"LES COLLOMBS",45.54839,5.342029,0,0,O38:SA:CTP9314,Europe/Paris,,O38, +O38:SP:9315,1,"LES COLLOMBS",45.548389,5.341926,0,0,O38:SA:CTP9314,Europe/Paris,,O38, +O38:SP:9316,1,"LE FICHAILLON",45.539852,5.341501,0,0,O38:SA:CTP9316,Europe/Paris,,O38, +O38:SP:9317,1,"LE FICHAILLON",45.5398,5.34157,0,0,O38:SA:CTP9316,Europe/Paris,,O38, +O38:SP:9318,1,"D.520 RTE DE SUCCIEU",45.527434,5.327248,0,0,O38:SA:CTP9318,Europe/Paris,,O38, +O38:SP:9319,1,"D.520 RTE DE SUCCIEU",45.527572,5.327178,0,0,O38:SA:CTP9318,Europe/Paris,,O38, +O38:SP:932,1,"COLLEGE VALLON DES MOTTES",44.961369,5.743838,0,0,O38:SA:CTP932,Europe/Paris,,O38, +O38:SP:9320,1,"RTE DE BUFFIERES",45.533796,5.316988,0,0,O38:SA:CTP9320,Europe/Paris,,O38, +O38:SP:9321,1,"RTE DE BUFFIERES",45.533825,5.317082,0,0,O38:SA:CTP9320,Europe/Paris,,O38, +O38:SP:9323,1,"LE GAPILLON",45.527836,5.351686,0,0,O38:SA:CTP9323,Europe/Paris,,O38, +O38:SP:9325,1,"LES CURTETS",45.550886,5.307883,0,0,O38:SA:CTP9325,Europe/Paris,,O38, +O38:SP:9327,1,"LES CURTETS",45.550421,5.308505,0,0,O38:SA:CTP9325,Europe/Paris,,O38, +O38:SP:9329,1,"US.VOISIN PASCAL",45.546874,5.310082,0,0,O38:SA:CTP9329,Europe/Paris,,O38, +O38:SP:933,1,"COLLEGE VALLON DES MOTTES",44.961299,5.743919,0,0,O38:SA:CTP932,Europe/Paris,,O38, +O38:SP:9331,1,"US.VOISIN PASCAL",45.546862,5.309921,0,0,O38:SA:CTP9329,Europe/Paris,,O38, +O38:SP:9335,1,"PLACE",45.528214,5.339208,0,0,O38:SA:CTP9335,Europe/Paris,,O38, +O38:SP:9336,1,"USINE",45.525191,5.342319,0,0,O38:SA:CTP9336,Europe/Paris,,O38, +O38:SP:9337,1,"USINE",45.525129,5.342373,0,0,O38:SA:CTP9336,Europe/Paris,,O38, +O38:SP:9338,1,"LE JAVET",45.529927,5.344832,0,0,O38:SA:CTP9338,Europe/Paris,,O38, +O38:SP:9340,1,"QUINSONNAS",45.550749,5.324676,0,0,O38:SA:CTP9340,Europe/Paris,,O38, +O38:SP:9341,1,"QUINSONNAS",45.550709,5.324561,0,0,O38:SA:CTP9340,Europe/Paris,,O38, +O38:SP:9342,1,"PATTON",45.532998,5.41755,0,0,O38:SA:CTP9342,Europe/Paris,,O38, +O38:SP:9343,1,"PATTON",45.533103,5.417325,0,0,O38:SA:CTP9342,Europe/Paris,,O38, +O38:SP:9344,1,"EGLISE",45.541256,5.391917,0,0,O38:SA:CTP9344,Europe/Paris,,O38, +O38:SP:9345,1,"EGLISE",45.541249,5.391826,0,0,O38:SA:CTP9344,Europe/Paris,,O38, +O38:SP:9346,1,"MORNAS",45.549,5.386248,0,0,O38:SA:CTP9346,Europe/Paris,,O38, +O38:SP:9347,1,"MORNAS",45.548814,5.386181,0,0,O38:SA:CTP9346,Europe/Paris,,O38, +O38:SP:9348,1,"LA MOLETTE",45.532885,5.361333,0,0,O38:SA:CTP9348,Europe/Paris,,O38, +O38:SP:9349,1,"LA MOLETTE",45.532882,5.361435,0,0,O38:SA:CTP9348,Europe/Paris,,O38, +O38:SP:9350,1,"CHEMIN DES DAMES",45.54557,5.374344,0,0,O38:SA:CTP9350,Europe/Paris,,O38, +O38:SP:9351,1,"CHEMIN DES DAMES",45.545622,5.374416,0,0,O38:SA:CTP9350,Europe/Paris,,O38, +O38:SP:9352,1,"CARRIERE LANGLOIS",45.550345,5.374149,0,0,O38:SA:CTP9352,Europe/Paris,,O38, +O38:SP:9353,1,"VAUX-LA PHARMACIE",45.54269,5.398552,0,0,O38:SA:CTP9353,Europe/Paris,,O38, +O38:SP:9354,1,"VAUX-LA PHARMACIE",45.54248,5.398959,0,0,O38:SA:CTP9353,Europe/Paris,,O38, +O38:SP:9355,1,"ECOLES",45.540868,5.392748,0,0,O38:SA:CTP9355,Europe/Paris,,O38, +O38:SP:9356,1,"ECOLES",45.540922,5.392817,0,0,O38:SA:CTP9355,Europe/Paris,,O38, +O38:SP:9357,1,"EGLISE",45.519208,5.401125,0,0,O38:SA:CTP9357,Europe/Paris,,O38, +O38:SP:9358,1,"EGLISE",45.51927,5.401178,0,0,O38:SA:CTP9357,Europe/Paris,,O38, +O38:SP:9359,1,"LES ROCHES",45.52191,5.404308,0,0,O38:SA:CTP9359,Europe/Paris,,O38, +O38:SP:9360,1,"LES ROCHES",45.521996,5.404565,0,0,O38:SA:CTP9359,Europe/Paris,,O38, +O38:SP:9361,1,"LE LUMINAIRE",45.548445,5.38352,0,0,O38:SA:CTP9361,Europe/Paris,,O38, +O38:SP:9362,1,"LE LUMINAIRE",45.548349,5.383397,0,0,O38:SA:CTP9361,Europe/Paris,,O38, +O38:SP:9363,1,"CAFE COLLOMB",45.547304,5.387381,0,0,O38:SA:CTP9363,Europe/Paris,,O38, +O38:SP:9364,1,"CAFE COLLOMB",45.547114,5.387538,0,0,O38:SA:CTP9363,Europe/Paris,,O38, +O38:SP:9365,1,"LE BOIS",45.535531,5.401117,0,0,O38:SA:CTP9365,Europe/Paris,,O38, +O38:SP:9366,1,"LE BOIS",45.535519,5.401044,0,0,O38:SA:CTP9365,Europe/Paris,,O38, +O38:SP:9367,1,"BAS VALLIN",45.548828,5.370471,0,0,O38:SA:CTP9367,Europe/Paris,,O38, +O38:SP:9368,1,"BAS VALLIN",45.548885,5.370533,0,0,O38:SA:CTP9367,Europe/Paris,,O38, +O38:SP:9369,1,"VAUX-GARAGE GARNIER",45.54371,5.396282,0,0,O38:SA:CTP9369,Europe/Paris,,O38, +O38:SP:9370,1,"VAUX-GARAGE GARNIER",45.543634,5.396252,0,0,O38:SA:CTP9369,Europe/Paris,,O38, +O38:SP:9371,1,"ROGUIERES",45.549114,5.406507,0,0,O38:SA:CTP9371,Europe/Paris,,O38, +O38:SP:9372,1,"ROGUIERES",45.549191,5.406499,0,0,O38:SA:CTP9371,Europe/Paris,,O38, +O38:SP:9373,1,"LE TARDIVET",45.546485,5.401096,0,0,O38:SA:CTP9373,Europe/Paris,,O38, +O38:SP:9374,1,"LE TARDIVET",45.546543,5.401037,0,0,O38:SA:CTP9373,Europe/Paris,,O38, +O38:SP:9375,1,"LA LEYDIERE",45.519472,5.379515,0,0,O38:SA:CTP9375,Europe/Paris,,O38, +O38:SP:9376,1,"LA LEYDIERE",45.519404,5.379513,0,0,O38:SA:CTP9375,Europe/Paris,,O38, +O38:SP:9379,1,"MONTPENSIER",45.525372,5.409851,0,0,O38:SA:CTP9379,Europe/Paris,,O38, +O38:SP:938,1,"ECOLE DU BOURG",44.955505,5.776899,0,0,O38:SA:CTP938,Europe/Paris,,O38, +O38:SP:9380,1,"MONTPENSIER",45.525394,5.409756,0,0,O38:SA:CTP9379,Europe/Paris,,O38, +O38:SP:9381,1,"PONTERAY",45.529668,5.408249,0,0,O38:SA:CTP9381,Europe/Paris,,O38, +O38:SP:9382,1,"PONTERAY",45.529714,5.408327,0,0,O38:SA:CTP9381,Europe/Paris,,O38, +O38:SP:9384,1,"HAMEAU LE BUIS",45.548287,5.380428,0,0,O38:SA:CTP9384,Europe/Paris,,O38, +O38:SP:9385,1,"GIRATOIRE",45.542929,5.399553,0,0,O38:SA:CTP9385,Europe/Paris,,O38, +O38:SP:9386,1,"GIRATOIRE",45.542911,5.399354,0,0,O38:SA:CTP9385,Europe/Paris,,O38, +O38:SP:9387,1,"FERME BIESSY",45.551026,5.415726,0,0,O38:SA:CTP9387,Europe/Paris,,O38, +O38:SP:9388,1,"FERME BIESSY",45.551091,5.415752,0,0,O38:SA:CTP9387,Europe/Paris,,O38, +O38:SP:9389,1,"LA TAILLAT",45.51872,5.385476,0,0,O38:SA:CTP9389,Europe/Paris,,O38, +O38:SP:939,1,"ECOLE DU BOURG",44.955519,5.776982,0,0,O38:SA:CTP938,Europe/Paris,,O38, +O38:SP:9390,1,"LA TAILLAT",45.518767,5.385366,0,0,O38:SA:CTP9389,Europe/Paris,,O38, +O38:SP:9391,1,"LES TERREAUX",45.518214,5.389551,0,0,O38:SA:CTP9391,Europe/Paris,,O38, +O38:SP:9392,1,"LES TERREAUX",45.518179,5.389493,0,0,O38:SA:CTP9391,Europe/Paris,,O38, +O38:SP:9394,1,"USINE GIROUD",45.53871,5.406046,0,0,O38:SA:CTP9394,Europe/Paris,,O38, +O38:SP:9395,1,"USINE GIROUD",45.538772,5.406098,0,0,O38:SA:CTP9394,Europe/Paris,,O38, +O38:SP:9396,1,"CLOS JANIN",45.545135,5.392091,0,0,O38:SA:CTP9396,Europe/Paris,,O38, +O38:SP:9397,1,"CLOS JANIN",45.545072,5.39204,0,0,O38:SA:CTP9396,Europe/Paris,,O38, +O38:SP:9398,1,"CAFE DURAND",45.535552,5.415225,0,0,O38:SA:CTP9398,Europe/Paris,,O38, +O38:SP:940,1,"MAIRIE",44.953835,5.778355,0,0,O38:SA:CTP940,Europe/Paris,,O38, +O38:SP:9400,1,"LOT. ETANG ROU",45.521501,5.459564,0,0,O38:SA:CTP9400,Europe/Paris,,O38, +O38:SP:9401,1,"LES GORGES ET ROYBUIS",45.517479,5.463624,0,0,O38:SA:CTP9401,Europe/Paris,,O38, +O38:SP:9402,1,"LES GORGES ET ROYBUIS",45.517409,5.4636,0,0,O38:SA:CTP9401,Europe/Paris,,O38, +O38:SP:9403,1,"ECOLE",45.511023,5.475815,0,0,O38:SA:CTP9403,Europe/Paris,,O38, +O38:SP:9404,1,"ECOLE",45.511048,5.475719,0,0,O38:SA:CTP9403,Europe/Paris,,O38, +O38:SP:9405,1,"LE MARTERAY",45.526584,5.435741,0,0,O38:SA:CTP9405,Europe/Paris,,O38, +O38:SP:9406,1,"LE MARTERAY",45.526531,5.435811,0,0,O38:SA:CTP9405,Europe/Paris,,O38, +O38:SP:9407,1,"CROIS.RTE MARLIEU",45.534186,5.454535,0,0,O38:SA:CTP9407,Europe/Paris,,O38, +O38:SP:9408,1,"CROIS.RTE MARLIEU",45.534304,5.454575,0,0,O38:SA:CTP9407,Europe/Paris,,O38, +O38:SP:9409,1,"LE CAMBADE",45.536716,5.450249,0,0,O38:SA:CTP9409,Europe/Paris,,O38, +O38:SP:941,1,"MAIRIE",44.953877,5.77827,0,0,O38:SA:CTP940,Europe/Paris,,O38, +O38:SP:9410,1,"LE CAMBADE",45.536699,5.450142,0,0,O38:SA:CTP9409,Europe/Paris,,O38, +O38:SP:9411,1,"LE PERRIN",45.527276,5.438954,0,0,O38:SA:CTP9411,Europe/Paris,,O38, +O38:SP:9412,1,"LE PERRIN",45.527259,5.439034,0,0,O38:SA:CTP9411,Europe/Paris,,O38, +O38:SP:9413,1,"RTE BAS MONTAGNIEU",45.519726,5.425648,0,0,O38:SA:CTP9413,Europe/Paris,,O38, +O38:SP:9414,1,"RTE BAS MONTAGNIEU",45.519816,5.425688,0,0,O38:SA:CTP9413,Europe/Paris,,O38, +O38:SP:9415,1,"MARLIEU VILLAGE",45.536714,5.457869,0,0,O38:SA:CTP9415,Europe/Paris,,O38, +O38:SP:9416,1,"MARLIEU VILLAGE",45.536649,5.457826,0,0,O38:SA:CTP9415,Europe/Paris,,O38, +O38:SP:9418,1,"TANCIN-VILLAS",45.515894,5.484204,0,0,O38:SA:CTP9418,Europe/Paris,,O38, +O38:SP:942,1,"ECOLE DE LA FESTINIERE",44.95475,5.753996,0,0,O38:SA:CTP942,Europe/Paris,,O38, +O38:SP:9420,1,"LE LATOUD",45.525591,5.468743,0,0,O38:SA:CTP9420,Europe/Paris,,O38, +O38:SP:9421,1,"LE LATOUD",45.52546,5.468746,0,0,O38:SA:CTP9420,Europe/Paris,,O38, +O38:SP:9422,1,"LE CHEMIN",45.547328,5.46889,0,0,O38:SA:CTP9422,Europe/Paris,,O38, +O38:SP:9423,1,"LE CHEMIN",45.547263,5.468938,0,0,O38:SA:CTP9422,Europe/Paris,,O38, +O38:SP:9424,1,"ECOLE LA RANCHE",45.524108,5.452298,0,0,O38:SA:CTP9424,Europe/Paris,,O38, +O38:SP:9425,1,"ECOLE LA RANCHE",45.524178,5.452281,0,0,O38:SA:CTP9424,Europe/Paris,,O38, +O38:SP:9427,1,"LE GRAND CHAMP",45.532679,5.466717,0,0,O38:SA:CTP9427,Europe/Paris,,O38, +O38:SP:9428,1,"LE COUVENT",45.552871,5.445346,0,0,O38:SA:CTP9428,Europe/Paris,,O38, +O38:SP:9429,1,"LE COUVENT",45.552715,5.445404,0,0,O38:SA:CTP9428,Europe/Paris,,O38, +O38:SP:943,1,"ECOLE DE LA FESTINIERE",44.954691,5.754012,0,0,O38:SA:CTP942,Europe/Paris,,O38, +O38:SP:9430,1,"LA CURE",45.532699,5.448022,0,0,O38:SA:CTP9430,Europe/Paris,,O38, +O38:SP:9431,1,"LA CURE",45.532628,5.448002,0,0,O38:SA:CTP9430,Europe/Paris,,O38, +O38:SP:9432,1,"LE POULAILLER",45.528814,5.483463,0,0,O38:SA:CTP9432,Europe/Paris,,O38, +O38:SP:9433,1,"LE POULAILLER",45.528865,5.483535,0,0,O38:SA:CTP9432,Europe/Paris,,O38, +O38:SP:9435,1,"CROIS.RTE LATOUD",45.525169,5.468906,0,0,O38:SA:CTP9435,Europe/Paris,,O38, +O38:SP:9436,1,"CARREFOUR DE BOUIS",45.513937,5.426224,0,0,O38:SA:CTP9436,Europe/Paris,,O38, +O38:SP:9437,1,"CARREFOUR DE BOUIS",45.512894,5.426624,0,0,O38:SA:CTP9436,Europe/Paris,,O38, +O38:SP:9438,1,"CHAMP DE COURSE",45.555731,5.445279,0,0,O38:SA:CTP9438,Europe/Paris,,O38, +O38:SP:9439,1,"CHAMP DE COURSE",45.555727,5.445176,0,0,O38:SA:CTP9438,Europe/Paris,,O38, +O38:SP:944,1,"ZI LES MARAIS",44.933387,5.781719,0,0,O38:SA:CTP944,Europe/Paris,,O38, +O38:SP:9441,1,"DEMPTEZIEU",45.537562,5.479574,0,0,O38:SA:CTP9441,Europe/Paris,,O38, +O38:SP:9442,1,"LE VILLAGE",45.555356,5.483747,0,0,O38:SA:CTP9442,Europe/Paris,,O38, +O38:SP:9443,1,"LE VILLAGE",45.555134,5.4842,0,0,O38:SA:CTP9442,Europe/Paris,,O38, +O38:SP:9444,1,"BOURG",45.524408,5.454311,0,0,O38:SA:CTP9444,Europe/Paris,,O38, +O38:SP:9445,1,"BOURG",45.524336,5.454326,0,0,O38:SA:CTP9444,Europe/Paris,,O38, +O38:SP:9446,1,"POMPIERS",45.554764,5.484402,0,0,O38:SA:CTP9446,Europe/Paris,,O38, +O38:SP:9447,1,"POMPIERS",45.554736,5.484342,0,0,O38:SA:CTP9446,Europe/Paris,,O38, +O38:SP:9448,1,"ECOLE",45.547374,5.436681,0,0,O38:SA:CTP9448,Europe/Paris,,O38, +O38:SP:9449,1,"ECOLE",45.547436,5.436799,0,0,O38:SA:CTP9448,Europe/Paris,,O38, +O38:SP:945,1,"ZI LES MARAIS",44.933483,5.781558,0,0,O38:SA:CTP944,Europe/Paris,,O38, +O38:SP:9450,1,"ROUTE DE VEYSSIN",45.535251,5.47688,0,0,O38:SA:CTP9450,Europe/Paris,,O38, +O38:SP:9451,1,"ROUTE DE VEYSSIN",45.535255,5.476983,0,0,O38:SA:CTP9450,Europe/Paris,,O38, +O38:SP:9452,1,"CARREFOUR",45.524587,5.454751,0,0,O38:SA:CTP9452,Europe/Paris,,O38, +O38:SP:9453,1,"BEL AIR",45.552955,5.425039,0,0,O38:SA:CTP9453,Europe/Paris,,O38, +O38:SP:9454,1,"BEL AIR",45.553063,5.42509,0,0,O38:SA:CTP9453,Europe/Paris,,O38, +O38:SP:9455,1,"CENTRE",45.545687,5.442585,0,0,O38:SA:CTP9455,Europe/Paris,,O38, +O38:SP:9456,1,"CENTRE",45.545493,5.44346,0,0,O38:SA:CTP9455,Europe/Paris,,O38, +O38:SP:9459,1,"TRIBOUILLON",45.512537,5.463813,0,0,O38:SA:CTP9459,Europe/Paris,,O38, +O38:SP:946,1,"COMBALBERTE",44.964434,5.813048,0,0,O38:SA:CTP946,Europe/Paris,,O38, +O38:SP:9460,1,"TRIBOUILLON",45.512539,5.463848,0,0,O38:SA:CTP9459,Europe/Paris,,O38, +O38:SP:9461,1,"GRAND ENVELUN",45.516804,5.480554,0,0,O38:SA:CTP9461,Europe/Paris,,O38, +O38:SP:9462,1,"GRAND ENVELUN",45.516845,5.480391,0,0,O38:SA:CTP9461,Europe/Paris,,O38, +O38:SP:9463,1,"LES ARPHANTS",45.526179,5.486319,0,0,O38:SA:CTP9463,Europe/Paris,,O38, +O38:SP:9464,1,"LES ARPHANTS",45.526145,5.486383,0,0,O38:SA:CTP9463,Europe/Paris,,O38, +O38:SP:9466,1,"TANCIN-FERME",45.51156,5.486541,0,0,O38:SA:CTP9466,Europe/Paris,,O38, +O38:SP:9467,1,"LE GODARD",45.543385,5.507886,0,0,O38:SA:CTP9467,Europe/Paris,,O38, +O38:SP:9468,1,"LE GODARD",45.543286,5.507932,0,0,O38:SA:CTP9467,Europe/Paris,,O38, +O38:SP:9469,1,"LE BRENIER RD73",45.514734,5.52505,0,0,O38:SA:CTP9469,Europe/Paris,,O38, +O38:SP:947,1,"COMBALBERTE",44.964394,5.813126,0,0,O38:SA:CTP946,Europe/Paris,,O38, +O38:SP:9470,1,"LE BRENIER RD73",45.515204,5.525079,0,0,O38:SA:CTP9469,Europe/Paris,,O38, +O38:SP:9471,1,"PONT DE COURS",45.519442,5.524804,0,0,O38:SA:CTP9471,Europe/Paris,,O38, +O38:SP:9472,1,"PONT DE COURS",45.519436,5.524699,0,0,O38:SA:CTP9471,Europe/Paris,,O38, +O38:SP:9473,1,"ST ONDRAS ECOLE",45.518822,5.54697,0,0,O38:SA:CTP9473,Europe/Paris,,O38, +O38:SP:9474,1,"ST ONDRAS ECOLE",45.518751,5.546934,0,0,O38:SA:CTP9473,Europe/Paris,,O38, +O38:SP:9475,1,"COUPE-GORGE",45.539608,5.509139,0,0,O38:SA:CTP9475,Europe/Paris,,O38, +O38:SP:9476,1,"COUPE-GORGE",45.53978,5.50911,0,0,O38:SA:CTP9475,Europe/Paris,,O38, +O38:SP:9477,1,"RUE PEGUY",45.550508,5.534012,0,0,O38:SA:CTP9477,Europe/Paris,,O38, +O38:SP:9478,1,"RUE PEGUY",45.55048,5.533942,0,0,O38:SA:CTP9477,Europe/Paris,,O38, +O38:SP:9479,1,"STADE",45.530859,5.513889,0,0,O38:SA:CTP9479,Europe/Paris,,O38, +O38:SP:948,1,"LE VILLAGE",44.934689,5.8253,0,0,O38:SA:CTP948,Europe/Paris,,O38, +O38:SP:9480,1,"STADE",45.531057,5.513742,0,0,O38:SA:CTP9479,Europe/Paris,,O38, +O38:SP:9481,1,"VERCOURS",45.52053,5.538649,0,0,O38:SA:CTP9481,Europe/Paris,,O38, +O38:SP:9482,1,"VERCOURS",45.520448,5.538692,0,0,O38:SA:CTP9481,Europe/Paris,,O38, +O38:SP:9483,1,"LE BRENIER",45.511793,5.530382,0,0,O38:SA:CTP9483,Europe/Paris,,O38, +O38:SP:9484,1,"LE BRENIER",45.511788,5.530371,0,0,O38:SA:CTP9483,Europe/Paris,,O38, +O38:SP:9485,1,"LE BUCLAS",45.525984,5.552184,0,0,O38:SA:CTP9485,Europe/Paris,,O38, +O38:SP:9486,1,"LE BUCLAS",45.526058,5.552092,0,0,O38:SA:CTP9485,Europe/Paris,,O38, +O38:SP:9487,1,"ST ONDRAS RD73",45.51553,5.526552,0,0,O38:SA:CTP9487,Europe/Paris,,O38, +O38:SP:9488,1,"ST ONDRAS RD73",45.515476,5.526619,0,0,O38:SA:CTP9487,Europe/Paris,,O38, +O38:SP:9489,1,"ARBOUDIERE RN6",45.539566,5.529465,0,0,O38:SA:CTP9489,Europe/Paris,,O38, +O38:SP:949,1,"LE VILLAGE",44.93467,5.825364,0,0,O38:SA:CTP948,Europe/Paris,,O38, +O38:SP:9490,1,"ARBOUDIERE RN6",45.539572,5.529484,0,0,O38:SA:CTP9489,Europe/Paris,,O38, +O38:SP:9491,1,"PONT DU GAZ",45.535382,5.539481,0,0,O38:SA:CTP9491,Europe/Paris,,O38, +O38:SP:9492,1,"PONT DU GAZ",45.535399,5.538662,0,0,O38:SA:CTP9491,Europe/Paris,,O38, +O38:SP:9493,1,"L'EGLISE",45.548087,5.534258,0,0,O38:SA:CTP9493,Europe/Paris,,O38, +O38:SP:9494,1,"L'EGLISE",45.548038,5.534336,0,0,O38:SA:CTP9493,Europe/Paris,,O38, +O38:SP:9495,1,"RD1006 BARGE",45.543118,5.523205,0,0,O38:SA:CTP9495,Europe/Paris,,O38, +O38:SP:9496,1,"RD1006 BARGE",45.543224,5.523285,0,0,O38:SA:CTP9495,Europe/Paris,,O38, +O38:SP:9499,1,"BARRIERE",45.536494,5.535834,0,0,O38:SA:CTP9499,Europe/Paris,,O38, +O38:SP:950,1,"COMBOURSIERE",44.961463,5.822837,0,0,O38:SA:CTP950,Europe/Paris,,O38, +O38:SP:9502,1,"FERRARD",45.54398,5.531289,0,0,O38:SA:CTP9502,Europe/Paris,,O38, +O38:SP:9503,1,"FERRARD",45.544357,5.531332,0,0,O38:SA:CTP9502,Europe/Paris,,O38, +O38:SP:9504,1,"RTE ST DIDIER",45.550842,5.497354,0,0,O38:SA:CTP9504,Europe/Paris,,O38, +O38:SP:9505,1,"RTE ST DIDIER",45.550903,5.497431,0,0,O38:SA:CTP9504,Europe/Paris,,O38, +O38:SP:9507,1,"SNCF - GARE",45.544526,5.523992,0,0,SIN:SA:OCE87723494,Europe/Paris,,O38, +O38:SP:9508,1,"SNCF - GARE",45.54448,5.523915,0,0,SIN:SA:OCE87723494,Europe/Paris,,O38, +O38:SP:9509,1,"LA POSTE",45.537287,5.584048,0,0,O38:SA:CTP9509,Europe/Paris,,O38, +O38:SP:951,1,"COMBOURSIERE",44.96151,5.822867,0,0,O38:SA:CTP950,Europe/Paris,,O38, +O38:SP:9510,1,"LA POSTE",45.537345,5.584552,0,0,O38:SA:CTP9509,Europe/Paris,,O38, +O38:SP:9511,1,"COLLEGE MARCEL BOUVIER",45.536055,5.591253,0,0,O38:SA:CTP9511,Europe/Paris,,O38, +O38:SP:9512,1,"COLLEGE MARCEL BOUVIER",45.536198,5.591411,0,0,O38:SA:CTP9511,Europe/Paris,,O38, +O38:SP:9514,1,"LA BATIE MAIRIE",45.509598,5.596872,0,0,OVO:SA:CTP9517,Europe/Paris,,O38, +O38:SP:9516,1,"LA BATIE MAIRIE",45.509328,5.596652,0,0,OVO:SA:CTP9517,Europe/Paris,,O38, +O38:SP:9519,1,"LES ROCHES",45.509524,5.611012,0,0,O38:SA:CTP9519,Europe/Paris,,O38, +O38:SP:952,1,"TORS-LES AUCHES PARKING",44.941997,5.795615,0,0,O38:SA:CTP952,Europe/Paris,,O38, +O38:SP:9521,1,"LES ROCHES",45.509659,5.610578,0,0,O38:SA:CTP9519,Europe/Paris,,O38, +O38:SP:9522,1,"BEAUREGARD",45.553275,5.56228,0,0,O38:SA:CTP9522,Europe/Paris,,O38, +O38:SP:9523,1,"BEAUREGARD",45.553187,5.56228,0,0,O38:SA:CTP9522,Europe/Paris,,O38, +O38:SP:9524,1,"STADE",45.548153,5.572079,0,0,O38:SA:CTP9524,Europe/Paris,,O38, +O38:SP:9525,1,"STADE",45.548091,5.572134,0,0,O38:SA:CTP9524,Europe/Paris,,O38, +O38:SP:9526,1,"LOTISSEMENT LE CUAZ",45.512533,5.597472,0,0,O38:SA:CTP9526,Europe/Paris,,O38, +O38:SP:9527,1,"LOTISSEMENT LE CUAZ",45.512201,5.597604,0,0,O38:SA:CTP9526,Europe/Paris,,O38, +O38:SP:9529,1,"LE TEMPLE 2",45.511563,5.607662,0,0,O38:SA:CTP9529,Europe/Paris,,O38, +O38:SP:953,1,"TORS-LES AUCHES PARKING",44.942008,5.795715,0,0,O38:SA:CTP952,Europe/Paris,,O38, +O38:SP:9531,1,"LE TEMPLE 2",45.511581,5.607815,0,0,O38:SA:CTP9529,Europe/Paris,,O38, +O38:SP:9533,1,"BRENARD",45.509844,5.622006,0,0,O38:SA:CTP9533,Europe/Paris,,O38, +O38:SP:9534,1,"BRENARD",45.509774,5.617574,0,0,O38:SA:CTP9534,Europe/Paris,,O38, +O38:SP:9536,1,"LA CHAPELLE HAMEAU",45.526616,5.605962,0,0,O38:SA:CTP9536,Europe/Paris,,O38, +O38:SP:9538,1,"LA CHAPELLE HAMEAU",45.526766,5.605756,0,0,O38:SA:CTP9536,Europe/Paris,,O38, +O38:SP:9539,1,"VILLAGE",45.546211,5.564189,0,0,O38:SA:CTP9539,Europe/Paris,,O38, +O38:SP:954,1,"TORS-ENTREE (LE TERROIR)",44.940416,5.796237,0,0,O38:SA:CTP954,Europe/Paris,,O38, +O38:SP:9540,1,"VILLAGE",45.546254,5.564122,0,0,O38:SA:CTP9539,Europe/Paris,,O38, +O38:SP:9544,1,"FERME PEYRIN",45.519924,5.609024,0,0,O38:SA:CTP9544,Europe/Paris,,O38, +O38:SP:9546,1,"FERME PEYRIN",45.519947,5.608927,0,0,O38:SA:CTP9544,Europe/Paris,,O38, +O38:SP:9547,1,"GARAGE OPEL",45.537315,5.586658,0,0,O38:SA:CTP9547,Europe/Paris,,O38, +O38:SP:9548,1,"LA BRUYERE",45.548003,5.610221,0,0,O38:SA:CTP9548,Europe/Paris,,O38, +O38:SP:9549,1,"LA BRUYERE",45.547972,5.610403,0,0,O38:SA:CTP9548,Europe/Paris,,O38, +O38:SP:955,1,"TORS-ENTREE (LE TERROIR)",44.940481,5.796196,0,0,O38:SA:CTP954,Europe/Paris,,O38, +O38:SP:9551,1,"CENTRE",45.525055,5.581398,0,0,OVO:SA:CTP9550,Europe/Paris,,O38, +O38:SP:9553,1,"CENTRE",45.525249,5.581302,0,0,OVO:SA:CTP9550,Europe/Paris,,O38, +O38:SP:9554,1,"LOT RONCEVEAU",45.530001,5.585327,0,0,O38:SA:CTP9554,Europe/Paris,,O38, +O38:SP:9555,1,"LOT RONCEVEAU",45.529978,5.585499,0,0,O38:SA:CTP9554,Europe/Paris,,O38, +O38:SP:9556,1,"LA PETITE AYAL",45.517266,5.589214,0,0,O38:SA:CTP9556,Europe/Paris,,O38, +O38:SP:9557,1,"LA PETITE AYAL",45.51709,5.589976,0,0,O38:SA:CTP9556,Europe/Paris,,O38, +O38:SP:9558,1,"NETRIN",45.544859,5.583826,0,0,O38:SA:CTP9558,Europe/Paris,,O38, +O38:SP:9559,1,"NETRIN",45.544863,5.583928,0,0,O38:SA:CTP9558,Europe/Paris,,O38, +O38:SP:956,1,"VILLAGE",44.942395,5.815074,0,0,O38:SA:CTP956,Europe/Paris,,O38, +O38:SP:9561,1,"LE TEMPLE",45.51405,5.60656,0,0,O38:SA:CTP9561,Europe/Paris,,O38, +O38:SP:9563,1,"LE TEMPLE",45.514835,5.606353,0,0,O38:SA:CTP9561,Europe/Paris,,O38, +O38:SP:9564,1,"GARAGE GADOU",45.535893,5.568064,0,0,O38:SA:CTP9564,Europe/Paris,,O38, +O38:SP:9565,1,"GARAGE GADOU",45.53598,5.567898,0,0,O38:SA:CTP9564,Europe/Paris,,O38, +O38:SP:9566,1,"LE BAILLY",45.537119,5.579715,0,0,O38:SA:CTP9566,Europe/Paris,,O38, +O38:SP:9567,1,"LE BAILLY",45.536965,5.579258,0,0,O38:SA:CTP9566,Europe/Paris,,O38, +O38:SP:9568,1,"BOUCHET-BONNELET",45.514063,5.595893,0,0,O38:SA:CTP9568,Europe/Paris,,O38, +O38:SP:9569,1,"BOUCHET-BONNELET",45.514001,5.595995,0,0,O38:SA:CTP9568,Europe/Paris,,O38, +O38:SP:957,1,"VILLAGE",44.942445,5.815148,0,0,O38:SA:CTP956,Europe/Paris,,O38, +O38:SP:9570,1,"LE MARTINET(BRUYERE)",45.550846,5.61293,0,0,O38:SA:CTP9570,Europe/Paris,,O38, +O38:SP:9571,1,"LA LUISSERT",45.539689,5.560855,0,0,O38:SA:CTP9571,Europe/Paris,,O38, +O38:SP:9572,1,"LA LUISSERT",45.539667,5.560757,0,0,O38:SA:CTP9571,Europe/Paris,,O38, +O38:SP:9573,1,"GRAND VERROU",45.532612,5.614917,0,0,O38:SA:CTP9573,Europe/Paris,,O38, +O38:SP:9574,1,"GRAND VERROU",45.53254,5.614912,0,0,O38:SA:CTP9573,Europe/Paris,,O38, +O38:SP:9575,1,"LE PERRET",45.534752,5.592902,0,0,O38:SA:CTP9575,Europe/Paris,,O38, +O38:SP:9576,1,"RUE D'ITALIE",45.536838,5.588823,0,0,O38:SA:CTP9576,Europe/Paris,,O38, +O38:SP:9577,1,"RUE D'ITALIE",45.536827,5.588924,0,0,O38:SA:CTP9576,Europe/Paris,,O38, +O38:SP:958,1,"ECOLE DE FUGIERES",44.954502,5.807067,0,0,O38:SA:CTP958,Europe/Paris,,O38, +O38:SP:9586,1,"LE BESSON",45.552433,5.604345,0,0,O38:SA:CTP9586,Europe/Paris,,O38, +O38:SP:9587,1,"LE BESSON",45.552505,5.604343,0,0,O38:SA:CTP9586,Europe/Paris,,O38, +O38:SP:9588,1,"LA DECHETTERIE",45.544433,5.59821,0,0,O38:SA:CTP9588,Europe/Paris,,O38, +O38:SP:9589,1,"MAISON GUINET",45.549103,5.645286,0,0,O38:SA:CTP9589,Europe/Paris,,O38, +O38:SP:959,1,"ECOLE DE FUGIERES",44.954445,5.807128,0,0,O38:SA:CTP958,Europe/Paris,,O38, +O38:SP:9590,1,"MAISON GUINET",45.549047,5.645238,0,0,O38:SA:CTP9589,Europe/Paris,,O38, +O38:SP:9591,1,"GROUPE SCOLAIRE",45.507428,5.673629,0,0,O38:SA:CTP9591,Europe/Paris,,O38, +O38:SP:9592,1,"GROUPE SCOLAIRE",45.507388,5.67365,0,0,O38:SA:CTP9591,Europe/Paris,,O38, +O38:SP:9593,1,"PETIT VERROU",45.532359,5.621251,0,0,O38:SA:CTP9593,Europe/Paris,,O38, +O38:SP:9594,1,"PETIT VERROU",45.532391,5.620903,0,0,O38:SA:CTP9593,Europe/Paris,,O38, +O38:SP:9595,1,"LA ROMAGNIERE",45.549941,5.645723,0,0,O38:SA:CTP9595,Europe/Paris,,O38, +O38:SP:9596,1,"LA ROMAGNIERE",45.550008,5.645793,0,0,O38:SA:CTP9595,Europe/Paris,,O38, +O38:SP:9597,1,"GARE (HLM)",45.52662,5.627349,0,0,O38:SA:CTP9597,Europe/Paris,,O38, +O38:SP:9598,1,"GARE (HLM)",45.526782,5.627395,0,0,O38:SA:CTP9597,Europe/Paris,,O38, +O38:SP:9599,1,"LA FESCHE",45.524204,5.64347,0,0,O38:SA:CTP9599,Europe/Paris,,O38, +O38:SP:960,1,"LES SAGNES",44.933393,5.794824,0,0,O38:SA:CTP960,Europe/Paris,,O38, +O38:SP:9600,1,"FALLAMIEUX",45.517812,5.638253,0,0,O38:SA:CTP9600,Europe/Paris,,O38, +O38:SP:9601,1,"LES ETEPPES (ASTRA)",45.518953,5.685846,0,0,O38:SA:CTP9601,Europe/Paris,,O38, +O38:SP:9602,1,"LES ETEPPES (ASTRA)",45.518963,5.685929,0,0,O38:SA:CTP9601,Europe/Paris,,O38, +O38:SP:9603,1,"LE CLERMONT I",45.543494,5.643684,0,0,O38:SA:CTP9603,Europe/Paris,,O38, +O38:SP:9604,1,"LE CLERMONT I",45.543425,5.643659,0,0,O38:SA:CTP9603,Europe/Paris,,O38, +O38:SP:9605,1,"LE CLERMONT II",45.545275,5.634104,0,0,O38:SA:CTP9605,Europe/Paris,,O38, +O38:SP:9606,1,"LE CLERMONT II",45.545213,5.633955,0,0,O38:SA:CTP9605,Europe/Paris,,O38, +O38:SP:9607,1,"LE VARNIER",45.511429,5.677336,0,0,O38:SA:CTP9607,Europe/Paris,,O38, +O38:SP:9608,1,"LE VARNIER",45.51146,5.677244,0,0,O38:SA:CTP9607,Europe/Paris,,O38, +O38:SP:9609,1,"COLLEGE LE GUILLON",45.538589,5.657152,0,0,O38:SA:CTP9609,Europe/Paris,,O38, +O38:SP:961,1,"LES SAGNES",44.933511,5.794969,0,0,O38:SA:CTP960,Europe/Paris,,O38, +O38:SP:9610,1,"COLLEGE LE GUILLON",45.538624,5.6573,0,0,O38:SA:CTP9609,Europe/Paris,,O38, +O38:SP:9611,1,"LYCEE PRAVAZ",45.539761,5.670531,0,0,O38:SA:CTP9611,Europe/Paris,,O38, +O38:SP:9612,1,"LYCEE PRAVAZ",45.5397,5.670619,0,0,O38:SA:CTP9611,Europe/Paris,,O38, +O38:SP:9615,1,"LE TERCINET",45.543352,5.627056,0,0,O38:SA:CTP9615,Europe/Paris,,O38, +O38:SP:9616,1,"LE TERCINET",45.543298,5.627251,0,0,O38:SA:CTP9615,Europe/Paris,,O38, +O38:SP:9617,1,"LE FAISSEAU",45.534279,5.637765,0,0,O38:SA:CTP9617,Europe/Paris,,O38, +O38:SP:9618,1,"LE FAISSEAU",45.534378,5.63781,0,0,O38:SA:CTP9617,Europe/Paris,,O38, +O38:SP:9619,1,"MAISON CARRE",45.551087,5.640101,0,0,O38:SA:CTP9619,Europe/Paris,,O38, +O38:SP:962,1,"LES MAZUERS",44.943328,5.800854,0,0,O38:SA:CTP962,Europe/Paris,,O38, +O38:SP:9620,1,"MAISON CARRE",45.551049,5.640508,0,0,O38:SA:CTP9619,Europe/Paris,,O38, +O38:SP:9621,1,"LE DREVON",45.506819,5.679111,0,0,O38:SA:CTP9621,Europe/Paris,,O38, +O38:SP:9622,1,"LE DREVON",45.506762,5.679049,0,0,O38:SA:CTP9621,Europe/Paris,,O38, +O38:SP:9623,1,"CENTRE",45.507285,5.673067,0,0,O38:SA:CTP9623,Europe/Paris,,O38, +O38:SP:9624,1,"CENTRE",45.507386,5.672765,0,0,O38:SA:CTP9623,Europe/Paris,,O38, +O38:SP:9626,1,"LES ETEPPES",45.520315,5.685491,0,0,O38:SA:CTP9626,Europe/Paris,,O38, +O38:SP:9627,1,"LES ETEPPES",45.520308,5.685585,0,0,O38:SA:CTP9626,Europe/Paris,,O38, +O38:SP:9628,1,"LE SABLON",45.532085,5.627601,0,0,O38:SA:CTP9628,Europe/Paris,,O38, +O38:SP:9629,1,"LE SABLON",45.532215,5.628353,0,0,O38:SA:CTP9628,Europe/Paris,,O38, +O38:SP:963,1,"LES MAZUERS",44.943685,5.801655,0,0,O38:SA:CTP962,Europe/Paris,,O38, +O38:SP:9631,1,"COLLEGE J. D'ARC - C.E.RURAL",45.537718,5.669034,0,0,O38:SA:CTP9631,Europe/Paris,,O38, +O38:SP:9632,1,"COLLEGE J. D'ARC - C.E.RURAL",45.537661,5.669125,0,0,O38:SA:CTP9631,Europe/Paris,,O38, +O38:SP:9633,1,"CENTRE",45.534797,5.671099,0,0,O38:SA:CTP9633,Europe/Paris,,O38, +O38:SP:9634,1,"CENTRE",45.534787,5.671222,0,0,O38:SA:CTP9633,Europe/Paris,,O38, +O38:SP:9635,1,"HOPITAL",45.536738,5.659515,0,0,O38:SA:CTP9635,Europe/Paris,,O38, +O38:SP:9636,1,"HOPITAL",45.536631,5.65985,0,0,O38:SA:CTP9635,Europe/Paris,,O38, +O38:SP:9637,1,"LES SALINES",45.52604,5.681102,0,0,O38:SA:CTP9637,Europe/Paris,,O38, +O38:SP:9638,1,"EGLISE",45.536756,5.670002,0,0,O38:SA:CTP9638,Europe/Paris,,O38, +O38:SP:9639,1,"EGLISE",45.536746,5.670051,0,0,O38:SA:CTP9638,Europe/Paris,,O38, +O38:SP:964,1,"ANCIENNE MATERNELLE",44.945206,5.793895,0,0,O38:SA:CTP964,Europe/Paris,,O38, +O38:SP:9640,1,"PLACE DU 8 MAI",45.535786,5.673647,0,0,O38:SA:CTP9640,Europe/Paris,,O38, +O38:SP:9641,1,"PLACE DU 8 MAI",45.535748,5.673676,0,0,O38:SA:CTP9640,Europe/Paris,,O38, +O38:SP:9643,1,"GARE SNCF",45.524635,5.681263,0,0,O38:SA:CTP9643,Europe/Paris,,O38, +O38:SP:9644,1,"GARE SNCF",45.524748,5.680755,0,0,O38:SA:CTP9643,Europe/Paris,,O38, +O38:SP:9647,1,"MAIRIE",45.504413,5.701883,0,0,O38:SA:CTP9647,Europe/Paris,,O38, +O38:SP:9648,1,"MAIRIE",45.504538,5.701638,0,0,O38:SA:CTP9647,Europe/Paris,,O38, +O38:SP:965,1,"ANCIENNE MATERNELLE",44.94523,5.793991,0,0,O38:SA:CTP964,Europe/Paris,,O38, +O38:SP:9651,1,"LA CROIX DES ADIEUX",45.514267,5.691745,0,0,O38:SA:CTP9651,Europe/Paris,,O38, +O38:SP:9652,1,"LA CROIX DES ADIEUX",45.514318,5.691818,0,0,O38:SA:CTP9651,Europe/Paris,,O38, +O38:SP:9655,1,"CENTRE",45.502825,5.704611,0,0,O38:SA:CTP9655,Europe/Paris,,O38, +O38:SP:9656,1,"CENTRE",45.502704,5.704544,0,0,O38:SA:CTP9655,Europe/Paris,,O38, +O38:SP:9657,1,"LA BOYARDIERE",45.505438,5.689809,0,0,O38:SA:CTP9657,Europe/Paris,,O38, +O38:SP:9658,1,"LA BOYARDIERE",45.505369,5.689781,0,0,O38:SA:CTP9657,Europe/Paris,,O38, +O38:SP:9659,1,"CENTRE",45.501775,5.844313,0,0,O38:SA:CTP9659,Europe/Paris,,O38, +O38:SP:9660,1,"CENTRE",45.502089,5.844916,0,0,O38:SA:CTP9659,Europe/Paris,,O38, +O38:SP:9661,1,"LA PRAIRE",45.520117,5.854065,0,0,O38:SA:CTP9661,Europe/Paris,,O38, +O38:SP:9662,1,"LA PRAIRE",45.519594,5.853976,0,0,O38:SA:CTP9661,Europe/Paris,,O38, +O38:SP:9663,1,"LA QUILLERE",45.514019,5.851727,0,0,O38:SA:CTP9663,Europe/Paris,,O38, +O38:SP:9664,1,"LA QUILLERE",45.513362,5.851325,0,0,O38:SA:CTP9663,Europe/Paris,,O38, +O38:SP:9665,1,"Z.I. MOLLARD",45.568112,5.963774,0,0,O38:SA:CTP9665,Europe/Paris,,O38, +O38:SP:9666,1,"LYCEE DU GRANIER",45.551177,5.968347,0,0,O38:SA:CTP9666,Europe/Paris,,O38, +O38:SP:9667,1,"LYCEE DU GRANIER",45.551123,5.96821,0,0,O38:SA:CTP9666,Europe/Paris,,O38, +O38:SP:9668,1,"LES MARCHES",45.498343,6.000496,0,0,O38:SA:CTP9668,Europe/Paris,,O38, +O38:SP:9669,1,"LES MARCHES",45.498403,6.000579,0,0,O38:SA:CTP9668,Europe/Paris,,O38, +O38:SP:967,1,"LE BOURG",44.978136,5.80595,0,0,O38:SA:CTP967,Europe/Paris,,O38, +O38:SP:9670,1,"ST JEOIRE CENTRE",45.533387,5.992117,0,0,O38:SA:CTP9670,Europe/Paris,,O38, +O38:SP:9671,1,"ST JEOIRE CENTRE",45.532426,5.992168,0,0,O38:SA:CTP9670,Europe/Paris,,O38, +O38:SP:9674,1,"L.P.NIVOLET",45.570908,5.970058,0,0,O38:SA:CTP9674,Europe/Paris,,O38, +O38:SP:9675,1,"L.P.NIVOLET",45.570989,5.970039,0,0,O38:SA:CTP9674,Europe/Paris,,O38, +O38:SP:968,1,"LA TRAVERSE",44.967951,5.802604,0,0,O38:SA:CTP968,Europe/Paris,,O38, +O38:SP:969,1,"LA TRAVERSE",44.967929,5.802701,0,0,O38:SA:CTP968,Europe/Paris,,O38, +O38:SP:9693,1,"LE PLAN",45.586696,5.012433,0,0,O38:SA:CTP9693,Europe/Paris,,O38, +O38:SP:9694,1,"LE PLAN",45.586766,5.01241,0,0,O38:SA:CTP9693,Europe/Paris,,O38, +O38:SP:9695,1,"LE GRAND PIERRE",45.587088,5.016498,0,0,O38:SA:CTP9695,Europe/Paris,,O38, +O38:SP:9696,1,"LE GRAND PIERRE",45.587158,5.016602,0,0,O38:SA:CTP9695,Europe/Paris,,O38, +O38:SP:9698,1,"LE PONT (RD.36A)",45.590552,5.002886,0,0,OIV:SA:CTP9697,Europe/Paris,,O38, +O38:SP:970,1,"LES TROUSSIERS",44.971804,5.795072,0,0,O38:SA:CTP970,Europe/Paris,,O38, +O38:SP:9700,1,"LE PONT (RD.36A)",45.590678,5.002886,0,0,OIV:SA:CTP9697,Europe/Paris,,O38, +O38:SP:9702,1,"MAIRIE",45.61227,5.014634,0,0,OIV:SA:CTP9701,Europe/Paris,,O38, +O38:SP:9704,1,"MAIRIE",45.612079,5.014135,0,0,OIV:SA:CTP9701,Europe/Paris,,O38, +O38:SP:9706,1,"LA MARTINIERE",45.601173,4.996392,0,0,OIV:SA:CTP9739,Europe/Paris,,O38, +O38:SP:9708,1,"LA MARTINIERE",45.601216,4.996317,0,0,OIV:SA:CTP9739,Europe/Paris,,O38, +O38:SP:9712,1,"LE VILLAGE",45.585561,4.998117,0,0,O38:SA:CTP9712,Europe/Paris,,O38, +O38:SP:9714,1,"LE VILLAGE",45.585638,4.998031,0,0,O38:SA:CTP9712,Europe/Paris,,O38, +O38:SP:9716,1,"LE SULON",45.608243,5.004119,0,0,O38:SA:CTP9716,Europe/Paris,,O38, +O38:SP:9717,1,"LE SULON",45.608196,5.004068,0,0,O38:SA:CTP9716,Europe/Paris,,O38, +O38:SP:9718,1,"LE CORBET",45.603972,4.998871,0,0,OIV:SA:CTP9705,Europe/Paris,,O38, +O38:SP:9719,1,"LE CORBET",45.604082,4.998943,0,0,OIV:SA:CTP9705,Europe/Paris,,O38, +O38:SP:9720,1,"LA SOLAINE",45.590386,4.992715,0,0,OIV:SA:CTP103227,Europe/Paris,,O38, +O38:SP:9721,1,"LA SOLAINE",45.590207,4.992664,0,0,OIV:SA:CTP103227,Europe/Paris,,O38, +O38:SP:9723,1,"LE CHANA",45.593403,4.994539,0,0,O38:SA:CTP9723,Europe/Paris,,O38, +O38:SP:9725,1,"LE CHANA",45.593229,4.99451,0,0,O38:SA:CTP9723,Europe/Paris,,O38, +O38:SP:9726,1,"LOT.LE CHANOZ",45.584515,5.001569,0,0,O38:SA:CTP9726,Europe/Paris,,O38, +O38:SP:9727,1,"LOT.LE CHANOZ",45.584553,5.00151,0,0,O38:SA:CTP9726,Europe/Paris,,O38, +O38:SP:9728,1,"TRAMOLAY",45.615595,4.994516,0,0,O38:SA:CTP9728,Europe/Paris,,O38, +O38:SP:973,1,"LES DROUEYVES",44.975999,5.801373,0,0,O38:SA:CTP973,Europe/Paris,,O38, +O38:SP:9730,1,"LA COMBE DEVAUD",45.609078,5.006877,0,0,O38:SA:CTP9730,Europe/Paris,,O38, +O38:SP:9732,1,"LA COMBE DEVAUD",45.608979,5.006976,0,0,O38:SA:CTP9730,Europe/Paris,,O38, +O38:SP:9733,1,"LOT.LE PLAN",45.585154,5.005349,0,0,O38:SA:CTP9733,Europe/Paris,,O38, +O38:SP:9734,1,"LOT.LE PLAN",45.585087,5.005458,0,0,O38:SA:CTP9733,Europe/Paris,,O38, +O38:SP:9735,1,"LE CHENE",45.607043,5.002239,0,0,O38:SA:CTP9735,Europe/Paris,,O38, +O38:SP:9736,1,"LE CHENE",45.606952,5.002215,0,0,O38:SA:CTP9735,Europe/Paris,,O38, +O38:SP:9737,1,"RIGARD",45.587959,4.999151,0,0,O38:SA:CTP9737,Europe/Paris,,O38, +O38:SP:9738,1,"RIGARD",45.587906,4.99922,0,0,O38:SA:CTP9737,Europe/Paris,,O38, +O38:SP:974,1,"LES EVERRAS",44.936407,5.860438,0,0,O38:SA:CTP974,Europe/Paris,,O38, +O38:SP:9740,1,"LA ROLLANDIERE",45.598372,4.996341,0,0,O38:SA:CTP9740,Europe/Paris,,O38, +O38:SP:9742,1,"LA ROLLANDIERE",45.598637,4.99625,0,0,O38:SA:CTP9740,Europe/Paris,,O38, +O38:SP:9744,1,"LE LARPIN",45.588606,4.991572,0,0,OIV:SA:CTP9743,Europe/Paris,,O38, +O38:SP:9746,1,"LE LARPIN",45.588598,4.991183,0,0,OIV:SA:CTP9743,Europe/Paris,,O38, +O38:SP:9747,1,"ECOLES",45.585842,4.998122,0,0,O38:SA:CTP9747,Europe/Paris,,O38, +O38:SP:9748,1,"ECOLES",45.585856,4.998021,0,0,O38:SA:CTP9747,Europe/Paris,,O38, +O38:SP:975,1,"LES EVERRAS",44.936368,5.860351,0,0,O38:SA:CTP974,Europe/Paris,,O38, +O38:SP:9755,1,"MAISON ROUX",45.603736,5.012084,0,0,O38:SA:CTP9755,Europe/Paris,,O38, +O38:SP:9756,1,"MAISON ROUX",45.603727,5.012095,0,0,O38:SA:CTP9755,Europe/Paris,,O38, +O38:SP:9758,1,"CHARROUD ABRIBUS",45.612865,5.006158,0,0,O38:SA:CTP9758,Europe/Paris,,O38, +O38:SP:976,1,"MAIRIE",44.941209,5.854001,0,0,O38:SA:CTP976,Europe/Paris,,O38, +O38:SP:9760,1,"LES PIERRES(GARDON)",45.582948,4.98827,0,0,O38:SA:CTP9760,Europe/Paris,,O38, +O38:SP:9761,1,"LES CABANES",45.578884,5.043757,0,0,O38:SA:CTP9761,Europe/Paris,,O38, +O38:SP:9762,1,"LES CABANES",45.578977,5.043626,0,0,O38:SA:CTP9761,Europe/Paris,,O38, +O38:SP:9767,1,"CARRIERE VIRETON",45.581295,5.050565,0,0,O38:SA:CTP9767,Europe/Paris,,O38, +O38:SP:9768,1,"CARRIERE VIRETON",45.581117,5.050293,0,0,O38:SA:CTP9767,Europe/Paris,,O38, +O38:SP:9769,1,"LES GRANGES BLANCHES",45.573661,5.027876,0,0,O38:SA:CTP9769,Europe/Paris,,O38, +O38:SP:977,1,"MAIRIE",44.941174,5.854028,0,0,O38:SA:CTP976,Europe/Paris,,O38, +O38:SP:9770,1,"LES GRANGES BLANCHES",45.573597,5.027951,0,0,O38:SA:CTP9769,Europe/Paris,,O38, +O38:SP:9771,1,"LA CROIX MAYET",45.587667,5.021314,0,0,O38:SA:CTP9771,Europe/Paris,,O38, +O38:SP:9772,1,"LA CROIX MAYET",45.587737,5.021288,0,0,O38:SA:CTP9771,Europe/Paris,,O38, +O38:SP:9773,1,"MAISON VERNAY",45.589492,5.027929,0,0,O38:SA:CTP9773,Europe/Paris,,O38, +O38:SP:9774,1,"MAISON VERNAY",45.58932,5.028016,0,0,O38:SA:CTP9773,Europe/Paris,,O38, +O38:SP:9775,1,"CHAPELLE ST JUST(RD.36)",45.590176,5.035359,0,0,O38:SA:CTP9775,Europe/Paris,,O38, +O38:SP:9776,1,"CHAPELLE ST JUST(RD.36)",45.59018,5.035462,0,0,O38:SA:CTP9775,Europe/Paris,,O38, +O38:SP:9778,1,"LE FAYET PLACE",45.607269,5.038286,0,0,O38:SA:CTP9778,Europe/Paris,,O38, +O38:SP:978,1,"CARREF. RTE LA ROCHETTE",44.947957,5.866091,0,0,O38:SA:CTP978,Europe/Paris,,O38, +O38:SP:9780,1,"LE FAYET PLACE",45.607347,5.037959,0,0,O38:SA:CTP9778,Europe/Paris,,O38, +O38:SP:9781,1,"LE CLOS",45.573455,5.065472,0,0,O38:SA:CTP9781,Europe/Paris,,O38, +O38:SP:9782,1,"LE CLOS",45.573756,5.06525,0,0,O38:SA:CTP9781,Europe/Paris,,O38, +O38:SP:9784,1,"CARNEVAL",45.610133,5.029397,0,0,OIV:SA:CTP9783,Europe/Paris,,O38, +O38:SP:9786,1,"CARNEVAL",45.61012,5.0293,0,0,OIV:SA:CTP9783,Europe/Paris,,O38, +O38:SP:9787,1,"LAFAYETTE",45.584539,5.061913,0,0,O38:SA:CTP9787,Europe/Paris,,O38, +O38:SP:9788,1,"LAFAYETTE",45.584337,5.061873,0,0,O38:SA:CTP9787,Europe/Paris,,O38, +O38:SP:9789,1,"SAINT OBLAS",45.570098,5.044476,0,0,O38:SA:CTP9789,Europe/Paris,,O38, +O38:SP:979,1,"CARREF. RTE LA ROCHETTE",44.947983,5.866018,0,0,O38:SA:CTP978,Europe/Paris,,O38, +O38:SP:9790,1,"SAINT OBLAS",45.570094,5.044373,0,0,O38:SA:CTP9789,Europe/Paris,,O38, +O38:SP:9791,1,"LE GRAND BOIS",45.569014,5.032784,0,0,O38:SA:CTP9791,Europe/Paris,,O38, +O38:SP:9792,1,"LE GRAND BOIS",45.569019,5.032578,0,0,O38:SA:CTP9791,Europe/Paris,,O38, +O38:SP:9795,1,"LE FAYET ECOLES",45.60843,5.039066,0,0,O38:SA:CTP9795,Europe/Paris,,O38, +O38:SP:9796,1,"LE FAYET ECOLES",45.608429,5.039087,0,0,O38:SA:CTP9795,Europe/Paris,,O38, +O38:SP:9797,1,"LE FAYET COMTE",45.607482,5.043427,0,0,O38:SA:CTP9797,Europe/Paris,,O38, +O38:SP:9798,1,"LE FAYET COMTE",45.607414,5.043427,0,0,O38:SA:CTP9797,Europe/Paris,,O38, +O38:SP:9799,1,"VILLENEUVE",45.604749,5.046684,0,0,O38:SA:CTP9799,Europe/Paris,,O38, +O38:SP:980,1,"FONTAGNEU",44.969709,5.878313,0,0,O38:SA:CTP980,Europe/Paris,,O38, +O38:SP:9800,1,"CHEMIN DE SARAVANIER",45.580524,5.06295,0,0,O38:SA:CTP9800,Europe/Paris,,O38, +O38:SP:9801,1,"CHEMIN DE SARAVANIER",45.580555,5.063144,0,0,O38:SA:CTP9800,Europe/Paris,,O38, +O38:SP:9802,1,"LES BOUVIERES",45.587068,5.09771,0,0,O38:SA:CTP9802,Europe/Paris,,O38, +O38:SP:9803,1,"LES BOUVIERES",45.587405,5.097715,0,0,O38:SA:CTP9802,Europe/Paris,,O38, +O38:SP:9804,1,"LE BELLAI",45.572737,5.094251,0,0,O38:SA:CTP9804,Europe/Paris,,O38, +O38:SP:9805,1,"LE BELLAI",45.572808,5.094089,0,0,O38:SA:CTP9804,Europe/Paris,,O38, +O38:SP:9808,1,"LES BRUYERES",45.577487,5.091492,0,0,O38:SA:CTP9808,Europe/Paris,,O38, +O38:SP:9809,1,"LES BRUYERES",45.577298,5.091583,0,0,O38:SA:CTP9808,Europe/Paris,,O38, +O38:SP:981,1,"FONTAGNEU",44.96995,5.87855,0,0,O38:SA:CTP980,Europe/Paris,,O38, +O38:SP:9810,1,"BOURG",45.588551,5.092474,0,0,O38:SA:CTP9810,Europe/Paris,,O38, +O38:SP:9811,1,"BOURG",45.588584,5.092381,0,0,O38:SA:CTP9810,Europe/Paris,,O38, +O38:SP:9812,1,"HAMEAU LE PILLARD",45.583535,5.127184,0,0,O38:SA:CTP9812,Europe/Paris,,O38, +O38:SP:9813,1,"HAMEAU LE PILLARD",45.583603,5.127149,0,0,O38:SA:CTP9812,Europe/Paris,,O38, +O38:SP:9814,1,"PONAS-ABRIBUS",45.612741,5.093087,0,0,O38:SA:CTP9814,Europe/Paris,,O38, +O38:SP:9815,1,"PONAS-ABRIBUS",45.612813,5.09309,0,0,O38:SA:CTP9814,Europe/Paris,,O38, +O38:SP:9816,1,"LA GARENNE",45.600333,5.126361,0,0,O38:SA:CTP9816,Europe/Paris,,O38, +O38:SP:9817,1,"LA GARENNE",45.60046,5.126184,0,0,O38:SA:CTP9816,Europe/Paris,,O38, +O38:SP:9818,1,"ROUTE DE VIGNIEU",45.583136,5.124282,0,0,O38:SA:CTP9818,Europe/Paris,,O38, +O38:SP:9819,1,"ROUTE DE VIGNIEU",45.583087,5.124357,0,0,O38:SA:CTP9818,Europe/Paris,,O38, +O38:SP:982,1,"LE MOLLARD",44.960818,5.872978,0,0,O38:SA:CTP982,Europe/Paris,,O38, +O38:SP:9820,1,"LE GROZAT",45.603163,5.100876,0,0,O38:SA:CTP9820,Europe/Paris,,O38, +O38:SP:9821,1,"LE GROZAT",45.603151,5.100844,0,0,O38:SA:CTP9820,Europe/Paris,,O38, +O38:SP:9822,1,"PONAS RESERVOIR",45.606803,5.098976,0,0,O38:SA:CTP9822,Europe/Paris,,O38, +O38:SP:9823,1,"PONAS RESERVOIR",45.60681,5.099078,0,0,O38:SA:CTP9822,Europe/Paris,,O38, +O38:SP:9824,1,"LA PLACE",45.588839,5.090465,0,0,O38:SA:CTP9824,Europe/Paris,,O38, +O38:SP:9825,1,"LA PLACE",45.588887,5.090468,0,0,O38:SA:CTP9824,Europe/Paris,,O38, +O38:SP:9826,1,"LES QUATRE ROUTES D36",45.595224,5.0926,0,0,O38:SA:CTP9826,Europe/Paris,,O38, +O38:SP:9827,1,"LES QUATRE ROUTES D36",45.595053,5.091654,0,0,O38:SA:CTP9826,Europe/Paris,,O38, +O38:SP:9828,1,"ECOLE DE PONAS",45.61027,5.096581,0,0,O38:SA:CTP9828,Europe/Paris,,O38, +O38:SP:9829,1,"ECOLE DE PONAS",45.610292,5.096677,0,0,O38:SA:CTP9828,Europe/Paris,,O38, +O38:SP:983,1,"LE MOLLARD",44.960859,5.872917,0,0,O38:SA:CTP982,Europe/Paris,,O38, +O38:SP:9830,1,"ECOLE DU BOURG",45.596684,5.130231,0,0,O38:SA:CTP9830,Europe/Paris,,O38, +O38:SP:9831,1,"ECOLE DU BOURG",45.596573,5.130199,0,0,O38:SA:CTP9830,Europe/Paris,,O38, +O38:SP:9832,1,"VILLAGE",45.596376,5.129384,0,0,O38:SA:CTP9832,Europe/Paris,,O38, +O38:SP:9833,1,"VILLAGE",45.596333,5.129317,0,0,O38:SA:CTP9832,Europe/Paris,,O38, +O38:SP:9834,1,"LES ETANGS",45.59004,5.131012,0,0,O38:SA:CTP9834,Europe/Paris,,O38, +O38:SP:9835,1,"LES ETANGS",45.590036,5.131114,0,0,O38:SA:CTP9834,Europe/Paris,,O38, +O38:SP:9836,1,"LA TIERCERIE",45.579912,5.144101,0,0,O38:SA:CTP9836,Europe/Paris,,O38, +O38:SP:9837,1,"LA TIERCERIE",45.579907,5.144111,0,0,O38:SA:CTP9836,Europe/Paris,,O38, +O38:SP:9838,1,"TRIEVOZ GILET",45.598806,5.106746,0,0,O38:SA:CTP9838,Europe/Paris,,O38, +O38:SP:9839,1,"TRIEVOZ GILET",45.598846,5.10658,0,0,O38:SA:CTP9838,Europe/Paris,,O38, +O38:SP:984,1,"LES DAURENS",44.956502,5.961805,0,0,O38:SA:CTP984,Europe/Paris,,O38, +O38:SP:9840,1,"TIERCERIE/BUCLAS",45.579834,5.148399,0,0,O38:SA:CTP9840,Europe/Paris,,O38, +O38:SP:9842,1,"LE FOUILLEUX",45.568683,5.135698,0,0,O38:SA:CTP9842,Europe/Paris,,O38, +O38:SP:9843,1,"LE FOUILLEUX",45.568697,5.135645,0,0,O38:SA:CTP9842,Europe/Paris,,O38, +O38:SP:9844,1,"COMBEROUSSE",45.578993,5.114499,0,0,O38:SA:CTP9844,Europe/Paris,,O38, +O38:SP:9845,1,"COMBEROUSSE",45.579003,5.114486,0,0,O38:SA:CTP9844,Europe/Paris,,O38, +O38:SP:9849,1,"COLLEGE SONIA DELAUNAY",45.603845,5.148774,0,0,O38:SA:CTP9849,Europe/Paris,,O38, +O38:SP:985,1,"LES DAURENS",44.956623,5.961633,0,0,O38:SA:CTP984,Europe/Paris,,O38, +O38:SP:9851,1,"COLLEGE SONIA DELAUNAY",45.603613,5.148664,0,0,O38:SA:CTP9849,Europe/Paris,,O38, +O38:SP:9855,1,"LE BAILLY",45.594492,5.111954,0,0,O38:SA:CTP9855,Europe/Paris,,O38, +O38:SP:9856,1,"LE BAILLY",45.594502,5.111977,0,0,O38:SA:CTP9855,Europe/Paris,,O38, +O38:SP:9857,1,"ST BONNET-BOURG",45.604209,5.165285,0,0,O38:SA:CTP9857,Europe/Paris,,O38, +O38:SP:9858,1,"ST BONNET-BOURG",45.604186,5.16539,0,0,O38:SA:CTP9857,Europe/Paris,,O38, +O38:SP:9859,1,"LES GIRAUDS/LE RUAL",45.590815,5.160117,0,0,O38:SA:CTP9859,Europe/Paris,,O38, +O38:SP:986,1,"LA CHALP",44.970536,5.959616,0,0,O38:SA:CTP986,Europe/Paris,,O38, +O38:SP:9860,1,"LES GIRAUDS/LE RUAL",45.590751,5.160484,0,0,O38:SA:CTP9859,Europe/Paris,,O38, +O38:SP:9861,1,"BOIS DE ROCHE",45.571587,5.161471,0,0,O38:SA:CTP9861,Europe/Paris,,O38, +O38:SP:9862,1,"BOIS DE ROCHE",45.571483,5.161426,0,0,O38:SA:CTP9861,Europe/Paris,,O38, +O38:SP:9867,1,"LA CROIX-LE VILLAGE",45.58644,5.162568,0,0,O38:SA:CTP9867,Europe/Paris,,O38, +O38:SP:9868,1,"LA CROIX-LE VILLAGE",45.586669,5.162574,0,0,O38:SA:CTP9867,Europe/Paris,,O38, +O38:SP:9869,1,"AILLAT",45.567192,5.189551,0,0,O38:SA:CTP9869,Europe/Paris,,O38, +O38:SP:987,1,"LA CHALP",44.970677,5.959308,0,0,O38:SA:CTP986,Europe/Paris,,O38, +O38:SP:9870,1,"AILLAT",45.567252,5.188926,0,0,O38:SA:CTP9869,Europe/Paris,,O38, +O38:SP:9872,1,"ECOLE",45.586316,5.19243,0,0,O38:SA:CTP9872,Europe/Paris,,O38, +O38:SP:9874,1,"LES MOLETTES",45.571457,5.187666,0,0,O38:SA:CTP9874,Europe/Paris,,O38, +O38:SP:9876,1,"LES MOLETTES",45.571495,5.187594,0,0,O38:SA:CTP9874,Europe/Paris,,O38, +O38:SP:9878,1,"LE SAUNIER",45.568567,5.167394,0,0,O38:SA:CTP9878,Europe/Paris,,O38, +O38:SP:9879,1,"LE SAUNIER",45.568572,5.1674,0,0,O38:SA:CTP9878,Europe/Paris,,O38, +O38:SP:988,1,"LE VILLAGE",44.936087,5.973682,0,0,O38:SA:CTP988,Europe/Paris,,O38, +O38:SP:9881,1,"ECOLES DE ROCHE",45.587403,5.157786,0,0,O38:SA:CTP9881,Europe/Paris,,O38, +O38:SP:9882,1,"ECOLES DE ROCHE",45.58744,5.157874,0,0,O38:SA:CTP9881,Europe/Paris,,O38, +O38:SP:9886,1,"LA CROIX",45.594169,5.218683,0,0,O38:SA:CTP9886,Europe/Paris,,O38, +O38:SP:9887,1,"LA CROIX",45.594424,5.218868,0,0,O38:SA:CTP9886,Europe/Paris,,O38, +O38:SP:9888,1,"ST BONNET DE ROCHE",45.603737,5.163088,0,0,O38:SA:CTP9888,Europe/Paris,,O38, +O38:SP:9889,1,"ST BONNET DE ROCHE",45.604111,5.16532,0,0,O38:SA:CTP9888,Europe/Paris,,O38, +O38:SP:989,1,"LE VILLAGE",44.936182,5.973701,0,0,O38:SA:CTP988,Europe/Paris,,O38, +O38:SP:9891,1,"ST-BONNET CENTRE GARE ROUTIERE",45.608954,5.156764,0,0,O38:SA:CTP9891,Europe/Paris,,O38, +O38:SP:9893,1,"ST-BONNET CENTRE GARE ROUTIERE",45.608921,5.157008,0,0,O38:SA:CTP9891,Europe/Paris,,O38, +O38:SP:9897,1,"GREENLAND",45.611202,5.171935,0,0,O38:SA:CTP9897,Europe/Paris,,O38, +O38:SP:9899,1,"GREENLAND",45.611236,5.17175,0,0,O38:SA:CTP9897,Europe/Paris,,O38, +O38:SP:990,1,"LES RAMBEAUX",44.942282,5.971804,0,0,O38:SA:CTP990,Europe/Paris,,O38, +O38:SP:9905,1,"SQUARE DELAUNAY",45.584553,5.276705,0,0,O38:SA:CTP9905,Europe/Paris,,O38, +O38:SP:9909,1,"LE VILLAGE",45.595336,5.223602,0,0,O38:SA:CTP9909,Europe/Paris,,O38, +O38:SP:991,1,"LES RAMBEAUX",44.942409,5.971676,0,0,O38:SA:CTP990,Europe/Paris,,O38, +O38:SP:9911,1,"LE VILLAGE",45.595405,5.223479,0,0,O38:SA:CTP9909,Europe/Paris,,O38, +O38:SP:9913,1,"ESPACE BARBUSSE",45.596248,5.268551,0,0,O38:SA:CTP9913,Europe/Paris,,O38, +O38:SP:9915,1,"ESPACE BARBUSSE",45.596255,5.268738,0,0,O38:SA:CTP9913,Europe/Paris,,O38, +O38:SP:992,1,"PASSERELLE DE LANCHATRA",44.968045,6.155048,0,0,O38:SA:CTP992,Europe/Paris,,O38, +O38:SP:9920,1,"FOLATIERE",45.589041,5.282659,0,0,O38:SA:CTP9920,Europe/Paris,,O38, +O38:SP:9923,1,"FOLATIERE",45.589172,5.281916,0,0,O38:SA:CTP9920,Europe/Paris,,O38, +O38:SP:9926,1,"LA GRIVE",45.600319,5.231035,0,0,O38:SA:CTP9926,Europe/Paris,,O38, +O38:SP:9927,1,"LA GRIVE",45.599017,5.23159,0,0,O38:SA:CTP9926,Europe/Paris,,O38, +O38:SP:9929,1,"LE CAPITOLE",45.585035,5.274272,0,0,O38:SA:CTP9929,Europe/Paris,,O38, +O38:SP:993,1,"PASSERELLE DE LANCHATRA",44.967972,6.155028,0,0,O38:SA:CTP992,Europe/Paris,,O38, +O38:SP:9931,1,"POSTE GAMBETTA",45.586261,5.273215,0,0,O38:SA:CTP9931,Europe/Paris,,O38, +O38:SP:9933,1,"POSTE GAMBETTA",45.586297,5.273102,0,0,O38:SA:CTP9931,Europe/Paris,,O38, +O38:SP:994,1,"VILLAGE",44.957806,6.176296,0,0,O38:SA:CTP994,Europe/Paris,,O38, +O38:SP:9941,1,"LES GRANDS TOURNANTS",45.566241,5.282982,0,0,O38:SA:CTP9941,Europe/Paris,,O38, +O38:SP:9943,1,"LES GRANDS TOURNANTS",45.566307,5.283023,0,0,O38:SA:CTP9941,Europe/Paris,,O38, +O38:SP:9945,1,"LE SADIAU",45.567799,5.2649,0,0,O38:SA:CTP9945,Europe/Paris,,O38, +O38:SP:9947,1,"LE SADIAU",45.567809,5.265029,0,0,O38:SA:CTP9945,Europe/Paris,,O38, +O38:SP:9949,1,"GARE SNCF",45.58392,5.27259,0,0,O38:SA:CTP9949,Europe/Paris,,O38, +O38:SP:995,1,"VILLAGE",44.957807,6.176309,0,0,O38:SA:CTP994,Europe/Paris,,O38, +O38:SP:9951,1,"CHARGES",45.579999,5.27428,0,0,O38:SA:CTP9951,Europe/Paris,,O38, +O38:SP:9952,1,"CHARGES",45.57991,5.274398,0,0,O38:SA:CTP9951,Europe/Paris,,O38, +O38:SP:9954,1,"LYCEE",45.587791,5.273111,0,0,O38:SA:CTP9954,Europe/Paris,,O38, +O38:SP:9956,1,"LYCEE",45.587648,5.273019,0,0,O38:SA:CTP9954,Europe/Paris,,O38, +O38:SP:9957,1,"CAPITOLE",45.585102,5.273451,0,0,O38:SA:CTP9957,Europe/Paris,,O38, +O38:SP:996,1,"CHAMPHORENT",44.934007,6.203612,0,0,O38:SA:CTP996,Europe/Paris,,O38, +O38:SP:9965,1,"STADE CHANTEREINE",45.602258,5.265708,0,0,O38:SA:CTP9965,Europe/Paris,,O38, +O38:SP:9967,1,"STADE CHANTEREINE",45.602044,5.266099,0,0,O38:SA:CTP9965,Europe/Paris,,O38, +O38:SP:997,1,"CHAMPHORENT",44.933935,6.203607,0,0,O38:SA:CTP996,Europe/Paris,,O38, +O38:SP:9970,1,"PONT ST-MICHEL",45.589219,5.276627,0,0,O38:SA:CTP9970,Europe/Paris,,O38, +O38:SP:9972,1,"PONT ST-MICHEL",45.589372,5.277402,0,0,O38:SA:CTP9970,Europe/Paris,,O38, +O38:SP:9974,1,"BARBUSSE GARE ROUTIERE",45.592298,5.270734,0,0,O38:SA:CTP9974,Europe/Paris,,O38, +O38:SP:9977,1,"LA COMBE USINE",45.571171,5.279186,0,0,O38:SA:CTP9977,Europe/Paris,,O38, +O38:SP:9979,1,"LA COMBE USINE",45.571386,5.278958,0,0,O38:SA:CTP9977,Europe/Paris,,O38, +O38:SP:998,1,"PRE CLOT",44.945718,6.188265,0,0,O38:SA:CTP998,Europe/Paris,,O38, +O38:SP:9981,1,"LE BESSON",45.566092,5.260566,0,0,O38:SA:CTP9981,Europe/Paris,,O38, +O38:SP:9983,1,"LE BESSON",45.566,5.260544,0,0,O38:SA:CTP9981,Europe/Paris,,O38, +O38:SP:9986,1,"H.L.M.",45.576115,5.276503,0,0,O38:SA:CTP9986,Europe/Paris,,O38, +O38:SP:9988,1,"H.L.M.",45.575888,5.276474,0,0,O38:SA:CTP9986,Europe/Paris,,O38, +O38:SP:999,1,"PRE CLOT",44.945718,6.188174,0,0,O38:SA:CTP998,Europe/Paris,,O38, +O38:SP:9991,1,"LA LADRIERE",45.589321,5.245693,0,0,O38:SA:CTP9991,Europe/Paris,,O38, +O38:SP:9993,1,"EFMA",45.606739,5.269546,0,0,O38:SA:CTP9993,Europe/Paris,,O38, +O38:SP:9994,1,"EFMA",45.606668,5.269468,0,0,O38:SA:CTP9993,Europe/Paris,,O38, +O38:SP:9996,1,"LE BOURNAY",45.564582,5.22989,0,0,O38:SA:CTP9996,Europe/Paris,,O38, +O38:SP:9998,1,"LE BOURNAY",45.56461,5.229792,0,0,O38:SA:CTP9996,Europe/Paris,,O38, +OAB:SP:1000013,1,"POLE D'ACTIVITES",43.490822,5.372625,0,0,OAC:SA:CTP120170,Europe/Paris,,OAB, +OAB:SP:1000025,1,"GAZEL",43.504742,5.387121,0,0,OAB:SA:CTP1000025,Europe/Paris,,OAB, +OAB:SP:1000027,1,"SAINT-JOSEPH",43.50864,5.389241,0,0,OAB:SA:CTP1000027,Europe/Paris,,OAB, +OAB:SP:1000028,1,"ANGENOT",43.509327,5.391991,0,0,OAC:SA:CTP132313,Europe/Paris,,OAB, +OAB:SP:1000038,1,"LE SERRE 2",43.502396,5.39096,0,0,OAB:SA:CTP1000038,Europe/Paris,,OAB, +OAB:SP:1000070,1,"COLONEL SCHULER",43.513222,5.441552,0,0,OAB:SA:CTP1000072,Europe/Paris,,OAB, +OAB:SP:1000072,1,"COLONEL SCHULER",43.513336,5.441667,0,0,OAB:SA:CTP1000072,Europe/Paris,,OAB, +OAB:SP:1000077,1,"GIONO",43.514599,5.438344,0,0,OAB:SA:CTP1000077,Europe/Paris,,OAB, +OAB:SP:1000078,1,"LA FOURANE",43.513393,5.444818,0,0,OAB:SA:CTP1000079,Europe/Paris,,OAB, +OAB:SP:1000079,1,"LA FOURANE",43.51345,5.444703,0,0,OAB:SA:CTP1000079,Europe/Paris,,OAB, +OAB:SP:1000081,1,"FLORALIES",43.515457,5.436911,0,0,OAB:SA:CTP1000082,Europe/Paris,,OAB, +OAB:SP:1000082,1,"FLORALIES",43.5158,5.436281,0,0,OAB:SA:CTP1000082,Europe/Paris,,OAB, +OAB:SP:1000083,1,"LA FIGUIERE",43.516544,5.43502,0,0,OAB:SA:CTP1000083,Europe/Paris,,OAB, +OAB:SP:1000085,1,"CLOS BERNADETTE",43.517177,5.435364,0,0,OAB:SA:CTP1057750,Europe/Paris,,OAB, +OAB:SP:1000087,1,"LES ALPILLES",43.51712,5.437083,0,0,OAB:SA:CTP1000087,Europe/Paris,,OAB, +OAB:SP:1000088,1,"LES ALPILLES",43.517177,5.437198,0,0,OAB:SA:CTP1000087,Europe/Paris,,OAB, +OAB:SP:1000089,1,"ROUMANILLE",43.518952,5.441609,0,0,OAB:SA:CTP1000089,Europe/Paris,,OAB, +OAB:SP:1000090,1,"ROUMANILLE",43.518894,5.441553,0,0,OAB:SA:CTP1000089,Europe/Paris,,OAB, +OAB:SP:1000095,1,"REINE JEANNE",43.523246,5.448716,0,0,OAB:SA:CTP1000096,Europe/Paris,,OAB, +OAB:SP:1000096,1,"REINE JEANNE",43.523128,5.448734,0,0,OAB:SA:CTP1000096,Europe/Paris,,OAB, +OAB:SP:1000098,1,"FERRY",43.522045,5.449516,0,0,OAB:SA:CTP1000098,Europe/Paris,,OAB, +OAB:SP:1000099,1,"PARC JOURDAN",43.520501,5.449746,0,0,OAB:SA:CTP1000099,Europe/Paris,,OAB, +OAB:SP:1000100,1,"PARC JOURDAN",43.520272,5.449688,0,0,OAB:SA:CTP1000099,Europe/Paris,,OAB, +OAB:SP:1000101,1,"PUGET",43.519181,5.449974,0,0,OAB:SA:CTP1000102,Europe/Paris,,OAB, +OAB:SP:1000102,1,"PUGET",43.519554,5.449812,0,0,OAB:SA:CTP1000102,Europe/Paris,,OAB, +OAB:SP:1000103,1,"COURCY",43.519581,5.453641,0,0,OAB:SA:CTP1000103,Europe/Paris,,OAB, +OAB:SP:1000104,1,"COURCY",43.519523,5.453699,0,0,OAB:SA:CTP1000103,Europe/Paris,,OAB, +OAB:SP:1000105,1,"CITE U.",43.517807,5.454501,0,0,OAB:SA:CTP1000105,Europe/Paris,,OAB, +OAB:SP:1000106,1,"CITE U.",43.517635,5.454329,0,0,OAB:SA:CTP1000105,Europe/Paris,,OAB, +OAB:SP:1000107,1,"CUQUES",43.516716,5.453985,0,0,OAB:SA:CTP1000107,Europe/Paris,,OAB, +OAB:SP:1000108,1,"MOULIN DE TESTAS",43.516659,5.451178,0,0,OAB:SA:CTP1000108,Europe/Paris,,OAB, +OAB:SP:1000109,1,"VAL SAINT-JEAN",43.515857,5.452438,0,0,OAB:SA:CTP1000109,Europe/Paris,,OAB, +OAB:SP:1000110,1,"VAL SAINT-JEAN",43.515857,5.452266,0,0,OAB:SA:CTP1000109,Europe/Paris,,OAB, +OAB:SP:1000111,1,"ARMEE D'AFRIQUE",43.513908,5.454959,0,0,OAB:SA:CTP1000112,Europe/Paris,,OAB, +OAB:SP:1000112,1,"ARMEE D'AFRIQUE",43.514084,5.454902,0,0,OAB:SA:CTP1000112,Europe/Paris,,OAB, +OAB:SP:1000114,1,"CIBLE",43.516373,5.460975,0,0,OAB:SA:CTP1000114,Europe/Paris,,OAB, +OAB:SP:1000116,1,"INFIRMERIES",43.513164,5.463725,0,0,OAC:SA:CTP132401,Europe/Paris,,OAB, +OAB:SP:1000117,1,"INFIRMERIES",43.513107,5.463668,0,0,OAC:SA:CTP132401,Europe/Paris,,OAB, +OAB:SP:1000118,1,"VAL DE L'ARC",43.511273,5.46533,0,0,OAB:SA:CTP1000118,Europe/Paris,,OAB, +OAB:SP:1000119,1,"MAURIAT",43.5158,5.466304,0,0,OAB:SA:CTP1000120,Europe/Paris,,OAB, +OAB:SP:1000120,1,"MAURIAT",43.516029,5.466705,0,0,OAB:SA:CTP1000120,Europe/Paris,,OAB, +OAB:SP:1000136,1,"FERRAGEON",43.522274,5.510593,0,0,OAB:SA:CTP1000137,Europe/Paris,,OAB, +OAB:SP:1000137,1,"FERRAGEON",43.522102,5.51088,0,0,OAB:SA:CTP1000137,Europe/Paris,,OAB, +OAB:SP:1000139,1,"PARC DES SPORTS",43.517578,5.503145,0,0,OAB:SA:CTP1000143,Europe/Paris,,OAB, +OAB:SP:1000143,1,"PARC DES SPORTS",43.517921,5.503718,0,0,OAB:SA:CTP1000143,Europe/Paris,,OAB, +OAB:SP:1000147,1,"MAISON PEZET",43.509784,5.489738,0,0,OAB:SA:CTP1000149,Europe/Paris,,OAB, +OAB:SP:1000149,1,"MAISON PEZET",43.50967,5.489738,0,0,OAB:SA:CTP1000149,Europe/Paris,,OAB, +OAB:SP:1000150,1,"MAGNAN",43.514999,5.470658,0,0,OAB:SA:CTP1057570,Europe/Paris,,OAB, +OAB:SP:1000152,1,"VAL SAINT-ANDRE",43.515971,5.471632,0,0,OAB:SA:CTP1000152,Europe/Paris,,OAB, +OAB:SP:1000154,1,"PONT DES CHANDELLES",43.510986,5.487102,0,0,OAB:SA:CTP1000154,Europe/Paris,,OAB, +OAB:SP:1000156,1,"SAINT-EXUPERY",43.519295,5.432442,0,0,OAB:SA:CTP1000156,Europe/Paris,,OAB, +OAB:SP:1000157,1,"PONT DES CHANDELLES",43.510986,5.48739,0,0,OAB:SA:CTP1000154,Europe/Paris,,OAB, +OAB:SP:1000158,1,"SAINT-EXUPERY",43.519871,5.432156,0,0,OAB:SA:CTP1000156,Europe/Paris,,OAB, +OAB:SP:1000165,1,"JULES VERNE",43.520671,5.432156,0,0,OAB:SA:CTP1000166,Europe/Paris,,OAB, +OAB:SP:1000166,1,"JULES VERNE",43.520901,5.432213,0,0,OAB:SA:CTP1000166,Europe/Paris,,OAB, +OAB:SP:1000168,1,"8 Mai 1945",43.523075,5.433015,0,0,OAB:SA:CTP1000168,Europe/Paris,,OAB, +OAB:SP:1000169,1,"LA TORSE",43.520901,5.467622,0,0,OAB:SA:CTP1057757,Europe/Paris,,OAB, +OAB:SP:1000170,1,"LE CORBUSIER",43.523479,5.431353,0,0,OAB:SA:CTP1000170,Europe/Paris,,OAB, +OAB:SP:1000172,1,"CASSIN",43.52256,5.468424,0,0,OAB:SA:CTP1000176,Europe/Paris,,OAB, +OAB:SP:1000175,1,"DUNANT",43.520329,5.429634,0,0,OAB:SA:CTP1000175,Europe/Paris,,OAB, +OAB:SP:1000176,1,"CASSIN",43.522388,5.468368,0,0,OAB:SA:CTP1000176,Europe/Paris,,OAB, +OAB:SP:1000177,1,"DUNANT",43.520385,5.429806,0,0,OAB:SA:CTP1000175,Europe/Paris,,OAB, +OAB:SP:1000178,1,"SCHWEITZER",43.522735,5.43015,0,0,OAB:SA:CTP1000179,Europe/Paris,,OAB, +OAB:SP:1000179,1,"SCHWEITZER",43.522736,5.429978,0,0,OAB:SA:CTP1000179,Europe/Paris,,OAB, +OAB:SP:1000181,1,"LESSEPS - MAIRIE",43.523823,5.434734,0,0,OAC:SA:CTP132466,Europe/Paris,,OAB, +OAB:SP:1000182,1,"ECOLE LA TORSE",43.525139,5.466705,0,0,OAB:SA:CTP1000186,Europe/Paris,,OAB, +OAB:SP:1000183,1,"LESSEPS - MAIRIE",43.523766,5.436166,0,0,OAC:SA:CTP132466,Europe/Paris,,OAB, +OAB:SP:1000184,1,"TUBINGEN",43.524223,5.432213,0,0,OAC:SA:CTP132469,Europe/Paris,,OAB, +OAB:SP:1000185,1,"TUBINGEN",43.524566,5.431124,0,0,OAC:SA:CTP132469,Europe/Paris,,OAB, +OAB:SP:1000186,1,"ECOLE LA TORSE",43.524738,5.467049,0,0,OAB:SA:CTP1000186,Europe/Paris,,OAB, +OAB:SP:1000189,1,"SAINT-JOHN PERSE",43.525139,5.424651,0,0,OAB:SA:CTP1000189,Europe/Paris,,OAB, +OAB:SP:1000191,1,"HAMEAU LA TORSE",43.525997,5.465101,0,0,OAB:SA:CTP1000191,Europe/Paris,,OAB, +OAB:SP:1000192,1,"PARC PAYSAGER",43.524452,5.423561,0,0,OAB:SA:CTP1000192,Europe/Paris,,OAB, +OAB:SP:1000193,1,"PARC PAYSAGER",43.524453,5.423618,0,0,OAB:SA:CTP1000192,Europe/Paris,,OAB, +OAB:SP:1000194,1,"VASARELY",43.522217,5.423848,0,0,OAB:SA:CTP1000196,Europe/Paris,,OAB, +OAB:SP:1000195,1,"HAMEAU LA TORSE",43.526172,5.465043,0,0,OAB:SA:CTP1000191,Europe/Paris,,OAB, +OAB:SP:1000196,1,"VASARELY",43.522102,5.423905,0,0,OAB:SA:CTP1000196,Europe/Paris,,OAB, +OAB:SP:1000200,1,"COQ D'ARGENT",43.521358,5.421155,0,0,OAB:SA:CTP1000200,Europe/Paris,,OAB, +OAB:SP:1000201,1,"COQ D'ARGENT",43.521359,5.421212,0,0,OAB:SA:CTP1000200,Europe/Paris,,OAB, +OAB:SP:1000204,1,"PONT DE LA TORSE",43.52686,5.463439,0,0,OAB:SA:CTP1000204,Europe/Paris,,OAB, +OAB:SP:1000205,1,"VIGNES DE MARIUS",43.522045,5.418061,0,0,OAB:SA:CTP1000205,Europe/Paris,,OAB, +OAB:SP:1000209,1,"PONT DE LA TORSE",43.526973,5.463439,0,0,OAB:SA:CTP1000204,Europe/Paris,,OAB, +OAB:SP:1000210,1,"VIGNES DE MARIUS",43.521702,5.41892,0,0,OAB:SA:CTP1000205,Europe/Paris,,OAB, +OAB:SP:1000222,1,"E.BRUNET",43.480736,5.426369,0,0,OAB:SA:CTP1000222,Europe/Paris,,OAB, +OAB:SP:1000223,1,"FONTCOUVERTE",43.480564,5.428603,0,0,OAB:SA:CTP1000223,Europe/Paris,,OAB, +OAB:SP:1000247,1,"SANTO ESTELLO",43.51712,5.446422,0,0,OAB:SA:CTP1000247,Europe/Paris,,OAB, +OAB:SP:1000250,1,"STADE CARCASSONNE",43.526687,5.459257,0,0,OAC:SA:CTP132535,Europe/Paris,,OAB, +OAB:SP:1000251,1,"GRANDE THUMINE",43.522331,5.415654,0,0,OAB:SA:CTP1000251,Europe/Paris,,OAB, +OAB:SP:1000253,1,"GRANDE THUMINE",43.522274,5.415483,0,0,OAB:SA:CTP1000251,Europe/Paris,,OAB, +OAB:SP:1000254,1,"PAYOT",43.522388,5.413534,0,0,OAB:SA:CTP1000254,Europe/Paris,,OAB, +OAB:SP:1000255,1,"PAYOT",43.522446,5.413534,0,0,OAB:SA:CTP1000254,Europe/Paris,,OAB, +OAB:SP:1000256,1,"PARC D'ARIANE",43.523823,5.412502,0,0,OAB:SA:CTP1000256,Europe/Paris,,OAB, +OAB:SP:1000257,1,"PARC D'ARIANE",43.524109,5.412503,0,0,OAB:SA:CTP1000256,Europe/Paris,,OAB, +OAB:SP:1000258,1,"JAS DU VALLON",43.526687,5.410555,0,0,OAB:SA:CTP1000258,Europe/Paris,,OAB, +OAB:SP:1000259,1,"JAS DU VALLON",43.526745,5.410612,0,0,OAB:SA:CTP1000258,Europe/Paris,,OAB, +OAB:SP:1000260,1,"FOUR D'EYGLUN",43.528118,5.411416,0,0,OAB:SA:CTP1000260,Europe/Paris,,OAB, +OAB:SP:1000261,1,"FOUR D'EYGLUN",43.528233,5.411701,0,0,OAB:SA:CTP1000260,Europe/Paris,,OAB, +OAB:SP:1000262,1,"FOUR D'EYGLUN",43.528118,5.411128,0,0,OAB:SA:CTP1000260,Europe/Paris,,OAB, +OAB:SP:1000263,1,"LE DEFFENS",43.523766,5.416456,0,0,OAB:SA:CTP1000263,Europe/Paris,,OAB, +OAB:SP:1000264,1,"ECOLE MILITAIRE",43.526325,5.45641,0,0,OAB:SA:CTP1000264,Europe/Paris,,OAB, +OAB:SP:1000265,1,"LE DEFFENS",43.524051,5.416456,0,0,OAB:SA:CTP1000263,Europe/Paris,,OAB, +OAB:SP:1000267,1,"CROIX VERTE",43.525482,5.413534,0,0,OAB:SA:CTP1000267,Europe/Paris,,OAB, +OAB:SP:1000268,1,"ECOLE MILITAIRE",43.526401,5.456277,0,0,OAB:SA:CTP1000264,Europe/Paris,,OAB, +OAB:SP:1000269,1,"BOIS DE L'AUNE",43.52726,5.415024,0,0,OAB:SA:CTP1000269,Europe/Paris,,OAB, +OAB:SP:1000270,1,"THERMIDOR",43.526172,5.41726,0,0,OAB:SA:CTP1000270,Europe/Paris,,OAB, +OAB:SP:1000271,1,"PICASSO",43.528866,5.416285,0,0,OAB:SA:CTP1000271,Europe/Paris,,OAB, +OAB:SP:1000272,1,"PICASSO",43.528232,5.415941,0,0,OAB:SA:CTP1000271,Europe/Paris,,OAB, +OAB:SP:1000274,1,"HORLOGE",43.529839,5.420238,0,0,OAB:SA:CTP1000274,Europe/Paris,,OAB, +OAB:SP:1000275,1,"HORLOGE",43.529896,5.420525,0,0,OAB:SA:CTP1000274,Europe/Paris,,OAB, +OAB:SP:1000276,1,"STADE OUEST",43.528461,5.424593,0,0,OAC:SA:CTP132561,Europe/Paris,,OAB, +OAB:SP:1000277,1,"STADE OUEST",43.529038,5.423332,0,0,OAC:SA:CTP132561,Europe/Paris,,OAB, +OAB:SP:1000278,1,"ROND-POINT DE GALICE",43.530983,5.415655,0,0,OAB:SA:CTP1057910,Europe/Paris,,OAB, +OAB:SP:1000280,1,"CASTORS",43.530411,5.434677,0,0,OAB:SA:CTP1000280,Europe/Paris,,OAB, +OAB:SP:1000281,1,"CASTORS",43.53041,5.434963,0,0,OAB:SA:CTP1000280,Europe/Paris,,OAB, +OAB:SP:1000282,1,"R.I.C.M",43.528518,5.459199,0,0,OAB:SA:CTP1000282,Europe/Paris,,OAB, +OAB:SP:1000285,1,"DOCTEUR AURIENTIS",43.530411,5.458569,0,0,OAC:SA:CTP132570,Europe/Paris,,OAB, +OAB:SP:1000286,1,"INDOCHINE",43.531326,5.440177,0,0,OAB:SA:CTP1000286,Europe/Paris,,OAB, +OAB:SP:1000289,1,"PARC RAMBOT",43.530925,5.456048,0,0,OAB:SA:CTP1000324,Europe/Paris,,OAB, +OAB:SP:1000290,1,"JOUVEAU",43.53196,5.436796,0,0,OAB:SA:CTP1000290,Europe/Paris,,OAB, +OAB:SP:1000291,1,"JOUVEAU",43.531902,5.436739,0,0,OAB:SA:CTP1000290,Europe/Paris,,OAB, +OAB:SP:1000292,1,"PARC SAINT-MITRE",43.532074,5.423332,0,0,OAC:SA:CTP132577,Europe/Paris,,OAB, +OAB:SP:1000293,1,"PARC SAINT-MITRE",43.532074,5.424363,0,0,OAC:SA:CTP132577,Europe/Paris,,OAB, +OAB:SP:1000294,1,"FLEMING",43.532074,5.421212,0,0,OAB:SA:CTP1000294,Europe/Paris,,OAB, +OAB:SP:1000295,1,"FLEMING",43.532017,5.421212,0,0,OAB:SA:CTP1000294,Europe/Paris,,OAB, +OAB:SP:1000299,1,"JEAN MONNET",43.532246,5.417488,0,0,OAB:SA:CTP1000301,Europe/Paris,,OAB, +OAB:SP:1000301,1,"JEAN MONNET",43.532303,5.417259,0,0,OAB:SA:CTP1000301,Europe/Paris,,OAB, +OAB:SP:1000309,1,"CLOS GABRIEL",43.529323,5.412903,0,0,OAB:SA:CTP1000309,Europe/Paris,,OAB, +OAB:SP:1000311,1,"CLOS GABRIEL",43.529553,5.413133,0,0,OAB:SA:CTP1000309,Europe/Paris,,OAB, +OAB:SP:1000312,1,"DEUX ORMES",43.53173,5.412904,0,0,OAB:SA:CTP1000312,Europe/Paris,,OAB, +OAB:SP:1000313,1,"DEUX ORMES",43.531327,5.413248,0,0,OAB:SA:CTP1000312,Europe/Paris,,OAB, +OAB:SP:1000316,1,"VIVES",43.532875,5.412847,0,0,OAB:SA:CTP1000316,Europe/Paris,,OAB, +OAB:SP:1000319,1,"VIVES",43.532875,5.412904,0,0,OAB:SA:CTP1000316,Europe/Paris,,OAB, +OAB:SP:1000322,1,"RAVANASSE",43.535339,5.414165,0,0,OAB:SA:CTP1000322,Europe/Paris,,OAB, +OAB:SP:1000324,1,"PARC RAMBOT",43.530754,5.455704,0,0,OAB:SA:CTP1000324,Europe/Paris,,OAB, +OAB:SP:1000326,1,"RAVANASSE",43.535283,5.414451,0,0,OAB:SA:CTP1000322,Europe/Paris,,OAB, +OAB:SP:1000328,1,"LA BREDASQUE",43.536427,5.411586,0,0,OAB:SA:CTP1000328,Europe/Paris,,OAB, +OAB:SP:1000330,1,"LA BREDASQUE",43.536312,5.411701,0,0,OAB:SA:CTP1000328,Europe/Paris,,OAB, +OAB:SP:1000337,1,"BAGATELLE",43.536426,5.409237,0,0,OAB:SA:CTP1000338,Europe/Paris,,OAB, +OAB:SP:1000338,1,"BAGATELLE",43.536025,5.408893,0,0,OAB:SA:CTP1000338,Europe/Paris,,OAB, +OAB:SP:1000339,1,"DOMAINE FLEURS",43.534134,5.408321,0,0,OAB:SA:CTP1000339,Europe/Paris,,OAB, +OAB:SP:1000340,1,"DOMAINE FLEURS",43.533791,5.408206,0,0,OAB:SA:CTP1000339,Europe/Paris,,OAB, +OAB:SP:1000341,1,"DAUDET",43.535053,5.463211,0,0,OAB:SA:CTP1000347,Europe/Paris,,OAB, +OAB:SP:1000342,1,"TRIOLET",43.531673,5.407863,0,0,OAC:SA:CTP132627,Europe/Paris,,OAB, +OAB:SP:1000343,1,"TRIOLET",43.53173,5.407919,0,0,OAC:SA:CTP132627,Europe/Paris,,OAB, +OAB:SP:1000344,1,"ERIDAN",43.531212,5.409466,0,0,OAB:SA:CTP1000345,Europe/Paris,,OAB, +OAB:SP:1000345,1,"ERIDAN",43.531326,5.409466,0,0,OAB:SA:CTP1000345,Europe/Paris,,OAB, +OAB:SP:1000347,1,"DAUDET",43.53511,5.463439,0,0,OAB:SA:CTP1000347,Europe/Paris,,OAB, +OAB:SP:1000348,1,"JARDINS D' ESTELLE",43.529437,5.410498,0,0,OAB:SA:CTP1000348,Europe/Paris,,OAB, +OAB:SP:1000349,1,"GRANDE BASTIDE",43.530124,5.409638,0,0,OAC:SA:CTP132634,Europe/Paris,,OAB, +OAB:SP:1000351,1,"SAINT-PERES",43.525429,5.398924,0,0,OAB:SA:CTP1000351,Europe/Paris,,OAB, +OAB:SP:1000352,1,"CHOPIN",43.535568,5.465502,0,0,OAB:SA:CTP1014716,Europe/Paris,,OAB, +OAB:SP:1000353,1,"SAINT-PERES",43.525482,5.398809,0,0,OAB:SA:CTP1000351,Europe/Paris,,OAB, +OAB:SP:1000354,1,"LA MOLIERE",43.524967,5.39457,0,0,OAB:SA:CTP1000354,Europe/Paris,,OAB, +OAB:SP:1000355,1,"LA MOLIERE",43.525078,5.394727,0,0,OAB:SA:CTP1000354,Europe/Paris,,OAB, +OAB:SP:1000358,1,"CENTRE AERE",43.524853,5.389814,0,0,OAC:SA:CTP132643,Europe/Paris,,OAB, +OAB:SP:1000362,1,"PINETTE",43.536942,5.467736,0,0,OAB:SA:CTP1000362,Europe/Paris,,OAB, +OAB:SP:1000364,1,"PINETTE",43.537289,5.467851,0,0,OAB:SA:CTP1000362,Europe/Paris,,OAB, +OAB:SP:1000365,1,"ESTRAMADOUR",43.537518,5.420754,0,0,OAB:SA:CTP1000365,Europe/Paris,,OAB, +OAB:SP:1000366,1,"ESTRAMADOUR",43.53746,5.420295,0,0,OAB:SA:CTP1000365,Europe/Paris,,OAB, +OAB:SP:1000369,1,"TENNIS",43.539692,5.41978,0,0,OAB:SA:CTP1000370,Europe/Paris,,OAB, +OAB:SP:1000370,1,"TENNIS",43.540612,5.419264,0,0,OAB:SA:CTP1000370,Europe/Paris,,OAB, +OAB:SP:1000372,1,"LE POET",43.542499,5.417373,0,0,OAB:SA:CTP1000372,Europe/Paris,,OAB, +OAB:SP:1000374,1,"PARC BEAUREGARD",43.53769,5.470945,0,0,OAB:SA:CTP1000378,Europe/Paris,,OAB, +OAB:SP:1000375,1,"LE POET",43.542499,5.417373,0,0,OAB:SA:CTP1000372,Europe/Paris,,OAB, +OAB:SP:1000376,1,"OLIVIERS",43.545078,5.416113,0,0,OAB:SA:CTP1000377,Europe/Paris,,OAB, +OAB:SP:1000377,1,"OLIVIERS",43.545135,5.415942,0,0,OAB:SA:CTP1000377,Europe/Paris,,OAB, +OAB:SP:1000378,1,"PARC BEAUREGARD",43.537628,5.470773,0,0,OAB:SA:CTP1000378,Europe/Paris,,OAB, +OAB:SP:1000380,1,"TIR A L'ARC",43.573097,5.409352,0,0,OAB:SA:CTP1000380,Europe/Paris,,OAB, +OAB:SP:1000381,1,"PONT ROUT",43.5476,5.413076,0,0,OAB:SA:CTP1057955,Europe/Paris,,OAB, +OAB:SP:1000383,1,"BEAUREGARD",43.537804,5.473007,0,0,OAB:SA:CTP1000389,Europe/Paris,,OAB, +OAB:SP:1000384,1,"RASTOIN",43.549663,5.412159,0,0,OAB:SA:CTP1000385,Europe/Paris,,OAB, +OAB:SP:1000385,1,"RASTOIN",43.550121,5.411644,0,0,OAB:SA:CTP1000385,Europe/Paris,,OAB, +OAB:SP:1000386,1,"SARRIETTE",43.552185,5.408263,0,0,OAB:SA:CTP1000386,Europe/Paris,,OAB, +OAB:SP:1000389,1,"BEAUREGARD",43.537804,5.473237,0,0,OAB:SA:CTP1000389,Europe/Paris,,OAB, +OAB:SP:1000390,1,"CHEMIN EGUILLES",43.555222,5.404138,0,0,OAB:SA:CTP1009390,Europe/Paris,,OAB, +OAB:SP:1000391,1,"BERGERIE",43.554817,5.407518,0,0,OAB:SA:CTP1000392,Europe/Paris,,OAB, +OAB:SP:1000392,1,"BERGERIE",43.554763,5.40769,0,0,OAB:SA:CTP1000392,Europe/Paris,,OAB, +OAB:SP:1000393,1,"PLAINE",43.554993,5.411758,0,0,OAB:SA:CTP1000393,Europe/Paris,,OAB, +OAB:SP:1000394,1,"PLAINE",43.555107,5.411701,0,0,OAB:SA:CTP1000393,Europe/Paris,,OAB, +OAB:SP:1000395,1,"REPENTANCE",43.536255,5.473351,0,0,OAB:SA:CTP1000398,Europe/Paris,,OAB, +OAB:SP:1000398,1,"REPENTANCE",43.536598,5.473466,0,0,OAB:SA:CTP1000398,Europe/Paris,,OAB, +OAB:SP:1000400,1,"FAVELOUN",43.560261,5.420696,0,0,OAB:SA:CTP1000401,Europe/Paris,,OAB, +OAB:SP:1000401,1,"FAVELOUN",43.56055,5.420639,0,0,OAB:SA:CTP1000401,Europe/Paris,,OAB, +OAB:SP:1000402,1,"AVON",43.563816,5.420467,0,0,OAB:SA:CTP1000402,Europe/Paris,,OAB, +OAB:SP:1000403,1,"AVON",43.563473,5.420582,0,0,OAB:SA:CTP1000402,Europe/Paris,,OAB, +OAB:SP:1000405,1,"CRUYES",43.567139,5.420983,0,0,OAC:SA:CTP132690,Europe/Paris,,OAB, +OAB:SP:1000406,1,"CRUYES",43.567082,5.420983,0,0,OAC:SA:CTP132690,Europe/Paris,,OAB, +OAB:SP:1000408,1,"COUNTRY",43.569832,5.417889,0,0,OAB:SA:CTP1000408,Europe/Paris,,OAB, +OAB:SP:1000471,1,"PUYRICARD C 22",43.584213,5.415139,0,0,OAB:SA:CTP1000471,Europe/Paris,,OAB, +OAB:SP:1000480,1,"GRAND SAINT JEAN",43.612114,5.382938,0,0,OAB:SA:CTP1000480,Europe/Paris,,OAB, +OAB:SP:1000481,1,"ERABLES",43.580143,5.417029,0,0,OAB:SA:CTP1000482,Europe/Paris,,OAB, +OAB:SP:1000482,1,"ERABLES",43.580086,5.417144,0,0,OAB:SA:CTP1000482,Europe/Paris,,OAB, +OAB:SP:1000483,1,"PALATINES",43.580201,5.413592,0,0,OAC:SA:CTP132768,Europe/Paris,,OAB, +OAB:SP:1000484,1,"PALATINES",43.580143,5.413649,0,0,OAC:SA:CTP132768,Europe/Paris,,OAB, +OAB:SP:1000485,1,"ABBE ROUSTAND",43.581001,5.411472,0,0,OAC:SA:CTP132770,Europe/Paris,,OAB, +OAB:SP:1000486,1,"BESSI",43.578884,5.410441,0,0,OAB:SA:CTP1057775,Europe/Paris,,OAB, +OAB:SP:1000487,1,"GRAND DOMAINE",43.582264,5.411243,0,0,OAC:SA:CTP132772,Europe/Paris,,OAB, +OAB:SP:1000488,1,"TOURTERELLES",43.58152,5.409867,0,0,OAB:SA:CTP1000488,Europe/Paris,,OAB, +OAB:SP:1000490,1,"LES PALOMBES",43.579742,5.409352,0,0,OAC:SA:CTP132775,Europe/Paris,,OAB, +OAB:SP:1000495,1,"GLACIERE",43.574814,5.421728,0,0,OAB:SA:CTP1000496,Europe/Paris,,OAB, +OAB:SP:1000496,1,"GLACIERE",43.574756,5.422129,0,0,OAB:SA:CTP1000496,Europe/Paris,,OAB, +OAB:SP:1000497,1,"PARC RIGAUD",43.563068,5.471862,0,0,OAB:SA:CTP1000497,Europe/Paris,,OAB, +OAB:SP:1000498,1,"PASCALIS",43.562324,5.467622,0,0,OAB:SA:CTP1000498,Europe/Paris,,OAB, +OAB:SP:1000499,1,"PASCALIS",43.56221,5.467392,0,0,OAB:SA:CTP1000498,Europe/Paris,,OAB, +OAB:SP:1000511,1,"E 13",43.559803,5.457424,0,0,OAB:SA:CTP1000511,Europe/Paris,,OAB, +OAB:SP:1000513,1,"HOPITAL PONTIER",43.533962,5.4435,0,0,OAB:SA:CTP1000513,Europe/Paris,,OAB, +OAB:SP:1000514,1,"HOPITAL TAMARIS",43.535625,5.441438,0,0,OAB:SA:CTP1000514,Europe/Paris,,OAB, +OAB:SP:1000515,1,"MOZART",43.534706,5.439146,0,0,OAB:SA:CTP1000515,Europe/Paris,,OAB, +OAB:SP:1000516,1,"OLYMPIA",43.536541,5.437026,0,0,OAB:SA:CTP1000516,Europe/Paris,,OAB, +OAB:SP:1000517,1,"OLYMPIA",43.53654,5.43714,0,0,OAB:SA:CTP1000516,Europe/Paris,,OAB, +OAB:SP:1000518,1,"FLEURY-VAL",43.538661,5.438057,0,0,OAB:SA:CTP1000518,Europe/Paris,,OAB, +OAB:SP:1000519,1,"FLEURY-VAL",43.538834,5.438286,0,0,OAB:SA:CTP1000518,Europe/Paris,,OAB, +OAB:SP:1000520,1,"LAURIERS",43.539692,5.43863,0,0,OAB:SA:CTP1000521,Europe/Paris,,OAB, +OAB:SP:1000521,1,"LAURIERS",43.539348,5.438458,0,0,OAB:SA:CTP1000521,Europe/Paris,,OAB, +OAB:SP:1000522,1,"GUYON",43.533962,5.436338,0,0,OAB:SA:CTP1000522,Europe/Paris,,OAB, +OAB:SP:1000526,1,"BELVEYRE",43.570976,5.424363,0,0,OAB:SA:CTP1000526,Europe/Paris,,OAB, +OAB:SP:1000527,1,"BELVEYRE",43.571033,5.424306,0,0,OAB:SA:CTP1000526,Europe/Paris,,OAB, +OAB:SP:1000528,1,"HUILERIE",43.549149,5.427515,0,0,OAB:SA:CTP1000528,Europe/Paris,,OAB, +OAB:SP:1000529,1,"RENOIR",43.534538,5.436625,0,0,OAB:SA:CTP1000529,Europe/Paris,,OAB, +OAB:SP:1000530,1,"RENOIR",43.534424,5.436625,0,0,OAB:SA:CTP1000529,Europe/Paris,,OAB, +OAB:SP:1000531,1,"FUSAINS",43.568455,5.425681,0,0,OAB:SA:CTP1000532,Europe/Paris,,OAB, +OAB:SP:1000532,1,"FUSAINS",43.568626,5.425681,0,0,OAB:SA:CTP1000532,Europe/Paris,,OAB, +OAB:SP:1000533,1,"ROSAKI",43.566105,5.427571,0,0,OAB:SA:CTP1000533,Europe/Paris,,OAB, +OAB:SP:1000534,1,"ROSAKI",43.56599,5.427571,0,0,OAB:SA:CTP1000533,Europe/Paris,,OAB, +OAB:SP:1000537,1,"ECOLE",43.599568,5.447167,0,0,OAB:SA:CTP1000537,Europe/Paris,,OAB, +OAB:SP:1000538,1,"COUTERON EGLISE",43.599224,5.444531,0,0,OAB:SA:CTP1000538,Europe/Paris,,OAB, +OAB:SP:1000539,1,"COUTERON",43.597561,5.443214,0,0,OAC:SA:CTP132824,Europe/Paris,,OAB, +OAB:SP:1000540,1,"FONT- ROUSSE BAS",43.596301,5.442755,0,0,OAB:SA:CTP1000541,Europe/Paris,,OAB, +OAB:SP:1000541,1,"FONT- ROUSSE BAS",43.596073,5.442354,0,0,OAB:SA:CTP1000541,Europe/Paris,,OAB, +OAB:SP:1000542,1,"LA TREVARESSE",43.592751,5.435307,0,0,OAB:SA:CTP1000543,Europe/Paris,,OAB, +OAB:SP:1000543,1,"LA TREVARESSE",43.592579,5.434963,0,0,OAB:SA:CTP1000543,Europe/Paris,,OAB, +OAB:SP:1000544,1,"VILLAGE DU SOLEIL",43.59,5.431812,0,0,OAB:SA:CTP1000545,Europe/Paris,,OAB, +OAB:SP:1000545,1,"VILLAGE DU SOLEIL",43.590058,5.431984,0,0,OAB:SA:CTP1000545,Europe/Paris,,OAB, +OAB:SP:1000546,1,"Quille",43.587478,5.431525,0,0,OAB:SA:CTP1000546,Europe/Paris,,OAB, +OAB:SP:1000547,1,"QUILLE",43.587421,5.431182,0,0,OAB:SA:CTP1000547,Europe/Paris,,OAB, +OAB:SP:1000548,1,"I.A.E.",43.58702,5.423504,0,0,OAB:SA:CTP1000548,Europe/Paris,,OAB, +OAB:SP:1000550,1,"LES CAMUS",43.586559,5.421499,0,0,OAB:SA:CTP1000551,Europe/Paris,,OAB, +OAB:SP:1000551,1,"LES CAMUS",43.586845,5.421499,0,0,OAB:SA:CTP1000551,Europe/Paris,,OAB, +OAB:SP:1000552,1,"MAUREL",43.583523,5.422072,0,0,OAC:SA:CTP132837,Europe/Paris,,OAB, +OAB:SP:1000553,1,"MAUREL",43.583584,5.422014,0,0,OAC:SA:CTP132837,Europe/Paris,,OAB, +OAB:SP:1000556,1,"MAIRIE PUYRICARD",43.582206,5.421957,0,0,OAC:SA:CTP132841,Europe/Paris,,OAB, +OAB:SP:1000557,1,"MAIRIE PUYRICARD",43.582435,5.422014,0,0,OAC:SA:CTP132841,Europe/Paris,,OAB, +OAB:SP:1000566,1,"SOLARI",43.534938,5.445391,0,0,OAC:SA:CTP132851,Europe/Paris,,OAB, +OAB:SP:1000567,1,"PAQUERETTES",43.536655,5.444761,0,0,OAC:SA:CTP132852,Europe/Paris,,OAB, +OAB:SP:1000568,1,"PAQUERETTES",43.537288,5.444875,0,0,OAC:SA:CTP132852,Europe/Paris,,OAB, +OAB:SP:1000569,1,"LA GINETTE",43.539863,5.442525,0,0,OAC:SA:CTP132854,Europe/Paris,,OAB, +OAB:SP:1000570,1,"LA GINETTE",43.539921,5.442584,0,0,OAC:SA:CTP132854,Europe/Paris,,OAB, +OAB:SP:1000571,1,"BELLEVUE",43.541469,5.441609,0,0,OAB:SA:CTP1000571,Europe/Paris,,OAB, +OAB:SP:1000572,1,"BELLEVUE",43.541298,5.441896,0,0,OAB:SA:CTP1000571,Europe/Paris,,OAB, +OAB:SP:1000573,1,"MURIERS BLANCS",43.542671,5.441094,0,0,OAB:SA:CTP1000573,Europe/Paris,,OAB, +OAB:SP:1000574,1,"MURIERS BLANCS",43.542671,5.441094,0,0,OAB:SA:CTP1000573,Europe/Paris,,OAB, +OAB:SP:1000579,1,"D 18 AQUEDUC",43.559689,5.450433,0,0,OAB:SA:CTP1000579,Europe/Paris,,OAB, +OAB:SP:1000590,1,"LES FEUILLANTS",43.598419,5.44969,0,0,OAC:SA:CTP132875,Europe/Paris,,OAB, +OAB:SP:1000596,1,"D 6",43.587879,5.457194,0,0,OAB:SA:CTP1000596,Europe/Paris,,OAB, +OAB:SP:1000597,1,"D 7",43.584041,5.456735,0,0,OAB:SA:CTP1000597,Europe/Paris,,OAB, +OAB:SP:1000602,1,"EPERON",43.556995,5.433645,0,0,OAB:SA:CTP1000602,Europe/Paris,,OAB, +OAB:SP:1000603,1,"EPERON",43.557511,5.434332,0,0,OAB:SA:CTP1000602,Europe/Paris,,OAB, +OAB:SP:1000604,1,"PUY DU ROY",43.555279,5.434046,0,0,OAC:SA:CTP132889,Europe/Paris,,OAB, +OAB:SP:1000605,1,"PUY DU ROY",43.554588,5.433989,0,0,OAC:SA:CTP132889,Europe/Paris,,OAB, +OAB:SP:1000606,1,"ENTREMONT",43.5527,5.435822,0,0,OAC:SA:CTP132891,Europe/Paris,,OAB, +OAB:SP:1000607,1,"ENTREMONT",43.551841,5.436625,0,0,OAC:SA:CTP132891,Europe/Paris,,OAB, +OAB:SP:1000612,1,"MONTVERT",43.545651,5.440693,0,0,OAB:SA:CTP1000613,Europe/Paris,,OAB, +OAB:SP:1000613,1,"MONTVERT",43.54565,5.440865,0,0,OAB:SA:CTP1000613,Europe/Paris,,OAB, +OAB:SP:1000614,1,"LAGRANGE",43.542613,5.44224,0,0,OAB:SA:CTP1000614,Europe/Paris,,OAB, +OAB:SP:1000615,1,"LAGRANGE",43.5425,5.44201,0,0,OAB:SA:CTP1000614,Europe/Paris,,OAB, +OAB:SP:1000616,1,"LES LAUVES NORD",43.557339,5.443214,0,0,OAC:SA:CTP132901,Europe/Paris,,OAB, +OAB:SP:1000617,1,"LES LAUVES NORD",43.557338,5.443271,0,0,OAC:SA:CTP132901,Europe/Paris,,OAB, +OAB:SP:1000618,1,"LES LAUVES SUD",43.555336,5.443729,0,0,OAC:SA:CTP132903,Europe/Paris,,OAB, +OAB:SP:1000620,1,"CRESPI",43.553673,5.443615,0,0,OAB:SA:CTP1000620,Europe/Paris,,OAB, +OAB:SP:1000621,1,"CRESPI",43.553787,5.443729,0,0,OAB:SA:CTP1000620,Europe/Paris,,OAB, +OAB:SP:1000622,1,"LES CASAMS",43.550522,5.444188,0,0,OAC:SA:CTP132907,Europe/Paris,,OAB, +OAB:SP:1000623,1,"LES CASAMS",43.550522,5.44413,0,0,OAC:SA:CTP132907,Europe/Paris,,OAB, +OAB:SP:1000624,1,"DE MAZENOD",43.54697,5.445448,0,0,OAC:SA:CTP132909,Europe/Paris,,OAB, +OAB:SP:1000625,1,"DE MAZENOD",43.547027,5.445448,0,0,OAC:SA:CTP132909,Europe/Paris,,OAB, +OAB:SP:1000629,1,"LA COQUILLADE",43.577449,5.431984,0,0,OAC:SA:CTP132914,Europe/Paris,,OAB, +OAB:SP:1000630,1,"MADELEINE",43.575333,5.432157,0,0,OAB:SA:CTP1000631,Europe/Paris,,OAB, +OAB:SP:1000631,1,"MADELEINE",43.575618,5.432041,0,0,OAB:SA:CTP1000631,Europe/Paris,,OAB, +OAB:SP:1000632,1,"LA CHESNERAIE",43.572868,5.432671,0,0,OAB:SA:CTP1000633,Europe/Paris,,OAB, +OAB:SP:1000633,1,"LA CHESNERAIE",43.572639,5.432614,0,0,OAB:SA:CTP1000633,Europe/Paris,,OAB, +OAB:SP:1000636,1,"DIOULOUFFET",43.565933,5.434104,0,0,OAB:SA:CTP1000637,Europe/Paris,,OAB, +OAB:SP:1000637,1,"DIOULOUFFET",43.566048,5.433932,0,0,OAB:SA:CTP1000637,Europe/Paris,,OAB, +OAB:SP:1000638,1,"CHOCOLATERIE",43.563472,5.434046,0,0,OAB:SA:CTP1000638,Europe/Paris,,OAB, +OAB:SP:1000639,1,"CHOCOLATERIE",43.563183,5.434162,0,0,OAB:SA:CTP1000638,Europe/Paris,,OAB, +OAB:SP:1000642,1,"GRANDS CHENES",43.560604,5.43502,0,0,OAB:SA:CTP1000643,Europe/Paris,,OAB, +OAB:SP:1000643,1,"GRANDS CHENES",43.560489,5.434677,0,0,OAB:SA:CTP1000643,Europe/Paris,,OAB, +OAB:SP:1000644,1,"EOLIENNE",43.559002,5.442125,0,0,OAC:SA:CTP132929,Europe/Paris,,OAB, +OAB:SP:1000645,1,"EOLIENNE",43.558945,5.442068,0,0,OAC:SA:CTP132929,Europe/Paris,,OAB, +OAB:SP:1000646,1,"MARGUERITE",43.550522,5.438572,0,0,OAB:SA:CTP1000646,Europe/Paris,,OAB, +OAB:SP:1000647,1,"MARGUERITE",43.550293,5.438745,0,0,OAB:SA:CTP1000646,Europe/Paris,,OAB, +OAB:SP:1000648,1,"PORTAIL CEZANNE",43.541984,5.445677,0,0,OAB:SA:CTP1000651,Europe/Paris,,OAB, +OAB:SP:1000649,1,"PORTAIL CEZANNE",43.542214,5.445506,0,0,OAB:SA:CTP1000651,Europe/Paris,,OAB, +OAB:SP:1000650,1,"PORTAIL CEZANNE",43.542557,5.446136,0,0,OAB:SA:CTP1000651,Europe/Paris,,OAB, +OAB:SP:1000651,1,"PORTAIL CEZANNE",43.542614,5.445907,0,0,OAB:SA:CTP1000651,Europe/Paris,,OAB, +OAB:SP:1000652,1,"LOUBASSANE",43.542384,5.44883,0,0,OAC:SA:CTP132937,Europe/Paris,,OAB, +OAB:SP:1000653,1,"LOUBASSANE",43.542328,5.448886,0,0,OAC:SA:CTP132937,Europe/Paris,,OAB, +OAB:SP:1000654,1,"MARUEGE",43.545078,5.455303,0,0,OAB:SA:CTP1000654,Europe/Paris,,OAB, +OAB:SP:1000655,1,"MARUEGE",43.544277,5.455532,0,0,OAB:SA:CTP1000654,Europe/Paris,,OAB, +OAB:SP:1000656,1,"MARUEGE HAUT",43.546512,5.454786,0,0,OAB:SA:CTP1000656,Europe/Paris,,OAB, +OAB:SP:1000657,1,"MARUEGE HAUT",43.546283,5.455074,0,0,OAB:SA:CTP1000656,Europe/Paris,,OAB, +OAB:SP:1000660,1,"FONTLEBRE",43.550922,5.457079,0,0,OAB:SA:CTP1014894,Europe/Paris,,OAB, +OAB:SP:1000662,1,"DOCTEUR BERTRAND",43.541412,5.451865,0,0,OAB:SA:CTP1000663,Europe/Paris,,OAB, +OAB:SP:1000663,1,"DOCTEUR BERTRAND",43.541469,5.452152,0,0,OAB:SA:CTP1000663,Europe/Paris,,OAB, +OAB:SP:1000671,1,"AMANDIERS",43.537861,5.453126,0,0,OAB:SA:CTP1000671,Europe/Paris,,OAB, +OAB:SP:1000673,1,"PEUPLIERS",43.538948,5.449573,0,0,OAB:SA:CTP1000673,Europe/Paris,,OAB, +OAB:SP:1000674,1,"PEUPLIERS",43.538891,5.44986,0,0,OAB:SA:CTP1000673,Europe/Paris,,OAB, +OAB:SP:1000675,1,"BEISSON",43.539692,5.447797,0,0,OAB:SA:CTP1000675,Europe/Paris,,OAB, +OAB:SP:1000676,1,"BEISSON",43.539749,5.447855,0,0,OAB:SA:CTP1000675,Europe/Paris,,OAB, +OAB:SP:1000677,1,"CEZANNE",43.539921,5.446022,0,0,OAC:SA:CTP132962,Europe/Paris,,OAB, +OAB:SP:1000678,1,"CEZANNE",43.539864,5.446021,0,0,OAC:SA:CTP132962,Europe/Paris,,OAB, +OAB:SP:1000679,1,"ATELIER CEZANNE",43.536942,5.446766,0,0,OAC:SA:CTP132964,Europe/Paris,,OAB, +OAB:SP:1000681,1,"ALEXIS",43.535625,5.446021,0,0,OAB:SA:CTP1000682,Europe/Paris,,OAB, +OAB:SP:1000682,1,"ALEXIS",43.535797,5.445964,0,0,OAB:SA:CTP1000682,Europe/Paris,,OAB, +OAB:SP:1000683,1,"GIANOTTI",43.534881,5.448314,0,0,OAB:SA:CTP1057949,Europe/Paris,,OAB, +OAB:SP:1000684,1,"PASTEUR NOTRE-DAME",43.534305,5.446537,0,0,OAC:SA:CTP132969,Europe/Paris,,OAB, +OAB:SP:1000685,1,"VIOLETTE",43.534478,5.451235,0,0,OAB:SA:CTP1000685,Europe/Paris,,OAB, +OAB:SP:1000688,1,"NATION",43.534076,5.445219,0,0,OAB:SA:CTP1000688,Europe/Paris,,OAB, +OAB:SP:1000691,1,"CAMPRA",43.531959,5.448314,0,0,OAB:SA:CTP1000691,Europe/Paris,,OAB, +OAB:SP:1000692,1,"THERMES",43.531383,5.443672,0,0,OAB:SA:CTP1000692,Europe/Paris,,OAB, +OAB:SP:1000694,1,"NIOLLON",43.527546,5.442698,0,0,OAC:SA:CTP132979,Europe/Paris,,OAB, +OAB:SP:1000695,1,"ROTONDE VICTOR HUGO",43.525428,5.446193,0,0,OAB:SA:CTP1000695,Europe/Paris,,OAB, +OAB:SP:1000699,1,"BOULEGON",43.530697,5.44923,0,0,OAB:SA:CTP1000699,Europe/Paris,,OAB, +OAB:SP:1000700,1,"PALAIS DE JUSTICE",43.529037,5.450891,0,0,OAB:SA:CTP1000700,Europe/Paris,,OAB, +OAB:SP:1000712,1,"TOURELLES",43.517291,5.465273,0,0,OAC:SA:CTP132997,Europe/Paris,,OAB, +OAB:SP:1000713,1,"TOURELLES",43.518207,5.464012,0,0,OAC:SA:CTP132997,Europe/Paris,,OAB, +OAB:SP:1000726,1,"BADESSE",43.502968,5.37612,0,0,OAC:SA:CTP133011,Europe/Paris,,OAB, +OAB:SP:1001996,1,"J 5",43.553958,5.531335,0,0,OAB:SA:CTP1001996,Europe/Paris,,OAB, +OAB:SP:1001997,1,"J 6",43.552872,5.528183,0,0,OAB:SA:CTP1001997,Europe/Paris,,OAB, +OAB:SP:1001998,1,"J 6 BIS",43.550006,5.523714,0,0,OAB:SA:CTP1001998,Europe/Paris,,OAB, +OAB:SP:1001999,1,"J 7",43.548343,5.511854,0,0,OAB:SA:CTP1001999,Europe/Paris,,OAB, +OAB:SP:1002000,1,"J 8",43.546684,5.512141,0,0,OAB:SA:CTP1002000,Europe/Paris,,OAB, +OAB:SP:1002001,1,"J 8 BIS",43.545879,5.508072,0,0,OAB:SA:CTP1002001,Europe/Paris,,OAB, +OAB:SP:1002002,1,"J 9",43.545422,5.513917,0,0,OAB:SA:CTP1057794,Europe/Paris,,OAB, +OAB:SP:1002003,1,"J 10",43.547314,5.493176,0,0,OAB:SA:CTP1002003,Europe/Paris,,OAB, +OAB:SP:1002004,1,"J 11",43.546227,5.496212,0,0,OAB:SA:CTP1002004,Europe/Paris,,OAB, +OAB:SP:1002005,1,"J 12",43.545078,5.499306,0,0,OAB:SA:CTP1002005,Europe/Paris,,OAB, +OAB:SP:1002006,1,"J 13",43.546337,5.504062,0,0,OAB:SA:CTP1002006,Europe/Paris,,OAB, +OAB:SP:1002008,1,"J 15",43.540497,5.491571,0,0,OAB:SA:CTP1002008,Europe/Paris,,OAB, +OAB:SP:1002010,1,"J 16",43.551785,5.543024,0,0,OAB:SA:CTP1002010,Europe/Paris,,OAB, +OAB:SP:1002011,1,"J 17",43.552414,5.538726,0,0,OAB:SA:CTP1002011,Europe/Paris,,OAB, +OAB:SP:1002012,1,"J 18",43.552586,5.536262,0,0,OAB:SA:CTP1002012,Europe/Paris,,OAB, +OAB:SP:1002013,1,"J 19",43.541813,5.496327,0,0,OAB:SA:CTP1002013,Europe/Paris,,OAB, +OAB:SP:1004114,1,"LA POSTE VENELLES",43.59756,5.484753,0,0,OAB:SA:CTP1004114,Europe/Paris,,OAB, +OAB:SP:1009390,1,"CHEMIN EGUILLES",43.554992,5.404023,0,0,OAB:SA:CTP1009390,Europe/Paris,,OAB, +OAB:SP:1010004,1,"GARE SNCF",43.522965,5.445735,0,0,OAB:SA:CTP1057263,Europe/Paris,,OAB, +OAB:SP:1010016,1,"SAINT-JEAN",43.525082,5.454502,0,0,OAB:SA:CTP1010016,Europe/Paris,,OAB, +OAB:SP:1010017,1,"MIOLLIS",43.528003,5.455189,0,0,OAB:SA:CTP1010017,Europe/Paris,,OAB, +OAB:SP:1010021,1,"BOURSE",43.532131,5.445334,0,0,OAB:SA:CTP1010021,Europe/Paris,,OAB, +OAB:SP:1010024,1,"SEXTIUS",43.527831,5.443443,0,0,OAB:SA:CTP1010024,Europe/Paris,,OAB, +OAB:SP:1010026,1,"BRIAND",43.532589,5.449058,0,0,OAB:SA:CTP1010026,Europe/Paris,,OAB, +OAB:SP:1010027,1,"CORDELIERS",43.529381,5.444016,0,0,OAB:SA:CTP1010027,Europe/Paris,,OAB, +OAB:SP:1010031,1,"SOUS-PREFECTURE",43.519749,5.442779,0,0,OAC:SA:CTP120031,Europe/Paris,,OAB, +OAB:SP:1010032,1,"SOUS-PREFECTURE",43.519756,5.442679,0,0,OAC:SA:CTP120031,Europe/Paris,,OAB, +OAB:SP:1010033,1,"LE PIGONNET",43.517636,5.438974,0,0,OAB:SA:CTP1010034,Europe/Paris,,OAB, +OAB:SP:1010034,1,"LE PIGONNET",43.517693,5.438859,0,0,OAB:SA:CTP1010034,Europe/Paris,,OAB, +OAB:SP:1010035,1,"DEBAZAC",43.513793,5.43989,0,0,OAB:SA:CTP1010036,Europe/Paris,,OAB, +OAB:SP:1010036,1,"DEBAZAC",43.513851,5.439604,0,0,OAB:SA:CTP1010036,Europe/Paris,,OAB, +OAB:SP:1010039,1,"SCHUMAN",43.515228,5.445792,0,0,OAB:SA:CTP1010039,Europe/Paris,,OAB, +OAB:SP:1010053,1,"BERGER",43.51345,5.449344,0,0,OAB:SA:CTP1010053,Europe/Paris,,OAB, +OAB:SP:1010054,1,"BERGER",43.51358,5.448654,0,0,OAB:SA:CTP1010053,Europe/Paris,,OAB, +OAB:SP:1010055,1,"COTON ROUGE",43.512821,5.452496,0,0,OAC:SA:CTP134142,Europe/Paris,,OAB, +OAB:SP:1010056,1,"COTON ROUGE",43.513278,5.453126,0,0,OAC:SA:CTP134142,Europe/Paris,,OAB, +OAB:SP:1010057,1,"BEL ORMEAU",43.513736,5.458913,0,0,OAC:SA:CTP134143,Europe/Paris,,OAB, +OAB:SP:1010058,1,"BEL ORMEAU",43.51368,5.457881,0,0,OAC:SA:CTP134143,Europe/Paris,,OAB, +OAB:SP:1010059,1,"BEAUSOLEIL",43.514313,5.463668,0,0,OAB:SA:CTP1010059,Europe/Paris,,OAB, +OAB:SP:1010060,1,"BEAUSOLEIL",43.514256,5.462866,0,0,OAB:SA:CTP1010059,Europe/Paris,,OAB, +OAB:SP:1010065,1,"PARC RELAIS MALACRIDA",43.515416,5.468589,0,0,OAB:SA:CTP1010066,Europe/Paris,,OAB, +OAB:SP:1010066,1,"PARC RELAIS MALACRIDA",43.5154,5.468825,0,0,OAB:SA:CTP1010066,Europe/Paris,,OAB, +OAB:SP:1010067,1,"SAINTE-ANNE",43.521244,5.458626,0,0,OAC:SA:CTP120068,Europe/Paris,,OAB, +OAB:SP:1010068,1,"SAINTE-ANNE",43.521302,5.458684,0,0,OAC:SA:CTP120068,Europe/Paris,,OAB, +OAB:SP:1010071,1,"GAUTIER",43.521072,5.455418,0,0,OAB:SA:CTP1010072,Europe/Paris,,OAB, +OAB:SP:1010072,1,"GAUTIER",43.520958,5.455475,0,0,OAB:SA:CTP1010072,Europe/Paris,,OAB, +OAB:SP:1010073,1,"SAINT-JEROME",43.517807,5.4596,0,0,OAB:SA:CTP1010073,Europe/Paris,,OAB, +OAB:SP:1010074,1,"SAINT-JEROME",43.517578,5.459829,0,0,OAB:SA:CTP1010073,Europe/Paris,,OAB, +OAB:SP:1010075,1,"TOUR D'AYGOSI",43.519409,5.461663,0,0,OAB:SA:CTP1010075,Europe/Paris,,OAB, +OAB:SP:1010076,1,"TOUR D'AYGOSI",43.519695,5.461434,0,0,OAB:SA:CTP1010075,Europe/Paris,,OAB, +OAB:SP:1010077,1,"CIBLE",43.515972,5.461205,0,0,OAB:SA:CTP1000114,Europe/Paris,,OAB, +OAB:SP:1010078,1,"G.R. BELGES",43.524109,5.443042,0,0,OAC:SA:CTP120079,Europe/Paris,,OAB, +OAB:SP:1010079,1,"G.R. BELGES",43.523895,5.442978,0,0,OAC:SA:CTP120079,Europe/Paris,,OAB, +OAB:SP:1010080,1,"MOULIN",43.535968,5.457709,0,0,OAB:SA:CTP1010080,Europe/Paris,,OAB, +OAB:SP:1010081,1,"MOULIN",43.536484,5.457595,0,0,OAB:SA:CTP1010080,Europe/Paris,,OAB, +OAB:SP:1010083,1,"ARCADES PLATANES",43.559288,5.461319,0,0,OAB:SA:CTP1010084,Europe/Paris,,OAB, +OAB:SP:1010084,1,"ARCADES PLATANES",43.559516,5.461548,0,0,OAB:SA:CTP1010084,Europe/Paris,,OAB, +OAB:SP:1010091,1,"PLATANES",43.555793,5.459657,0,0,OAB:SA:CTP1010091,Europe/Paris,,OAB, +OAB:SP:1010092,1,"PLATANES",43.55608,5.459887,0,0,OAB:SA:CTP1010091,Europe/Paris,,OAB, +OAB:SP:1010093,1,"ARTS ET METIERS",43.529724,5.453928,0,0,OAC:SA:CTP120093,Europe/Paris,,OAB, +OAB:SP:1010095,1,"LYCEE CEZANNE",43.533047,5.45897,0,0,OAB:SA:CTP1010095,Europe/Paris,,OAB, +OAB:SP:1010096,1,"LYCEE CEZANNE",43.533901,5.459284,0,0,OAB:SA:CTP1010095,Europe/Paris,,OAB, +OAB:SP:1010097,1,"PETIT NICE",43.534423,5.463038,0,0,OAC:SA:CTP134089,Europe/Paris,,OAB, +OAB:SP:1010099,1,"PETIT ROQUEFAVOUR",43.535282,5.46871,0,0,OAB:SA:CTP1010099,Europe/Paris,,OAB, +OAB:SP:1010100,1,"PETIT ROQUEFAVOUR",43.535682,5.469454,0,0,OAB:SA:CTP1010099,Europe/Paris,,OAB, +OAB:SP:1010103,1,"REPUBLIQUE",43.5289,5.439712,0,0,OAC:SA:CTP134002,Europe/Paris,,OAB, +OAB:SP:1010105,1,"MINIMES",43.528751,5.436166,0,0,OAC:SA:CTP120106,Europe/Paris,,OAB, +OAB:SP:1010106,1,"MINIMES",43.52858,5.436109,0,0,OAC:SA:CTP120106,Europe/Paris,,OAB, +OAB:SP:1010107,1,"PETITE CHARTREUSE",43.531555,5.431984,0,0,OAB:SA:CTP1010108,Europe/Paris,,OAB, +OAB:SP:1010108,1,"PETITE CHARTREUSE",43.531555,5.431755,0,0,OAB:SA:CTP1010108,Europe/Paris,,OAB, +OAB:SP:1010109,1,"DALMAS",43.532017,5.430093,0,0,OAB:SA:CTP1010110,Europe/Paris,,OAB, +OAB:SP:1010110,1,"DALMAS",43.531902,5.430265,0,0,OAB:SA:CTP1010110,Europe/Paris,,OAB, +OAB:SP:1010111,1,"AMADOUR",43.533161,5.426999,0,0,OAB:SA:CTP1010112,Europe/Paris,,OAB, +OAB:SP:1010112,1,"AMADOUR",43.533103,5.426827,0,0,OAB:SA:CTP1010112,Europe/Paris,,OAB, +OAB:SP:1010113,1,"LA RAYMONDE",43.534767,5.423504,0,0,OAB:SA:CTP1010113,Europe/Paris,,OAB, +OAB:SP:1010114,1,"LA RAYMONDE",43.534882,5.423618,0,0,OAB:SA:CTP1010113,Europe/Paris,,OAB, +OAB:SP:1010115,1,"SAINT-MITRE",43.536369,5.421441,0,0,OAB:SA:CTP1010115,Europe/Paris,,OAB, +OAB:SP:1010116,1,"SAINT-MITRE",43.536083,5.422014,0,0,OAB:SA:CTP1010115,Europe/Paris,,OAB, +OAB:SP:1010117,1,"PONTIER",43.532874,5.436968,0,0,OAB:SA:CTP1010118,Europe/Paris,,OAB, +OAB:SP:1010118,1,"PONTIER",43.532761,5.43714,0,0,OAB:SA:CTP1010118,Europe/Paris,,OAB, +OAB:SP:1010121,1,"VERTE COLLINE",43.536713,5.434849,0,0,OAB:SA:CTP1010122,Europe/Paris,,OAB, +OAB:SP:1010122,1,"VERTE COLLINE",43.536884,5.434906,0,0,OAB:SA:CTP1010122,Europe/Paris,,OAB, +OAB:SP:1010123,1,"LA CHEVALIERE",43.545536,5.430206,0,0,OAB:SA:CTP1010123,Europe/Paris,,OAB, +OAB:SP:1010125,1,"RAPINE",43.552643,5.42379,0,0,OAC:SA:CTP120125,Europe/Paris,,OAB, +OAB:SP:1010126,1,"RAPINE",43.552299,5.424249,0,0,OAC:SA:CTP120125,Europe/Paris,,OAB, +OAB:SP:1010157,1,"COUTON",43.503197,5.391017,0,0,OAC:SA:CTP120157,Europe/Paris,,OAB, +OAB:SP:1010159,1,"MILLES - MAIRIE",43.503311,5.385746,0,0,OAB:SA:CTP1010159,Europe/Paris,,OAB, +OAB:SP:1010185,1,"LA MAYANELLE",43.538376,5.411586,0,0,OAC:SA:CTP133943,Europe/Paris,,OAB, +OAB:SP:1010186,1,"LA MAYANELLE",43.538376,5.411586,0,0,OAC:SA:CTP133943,Europe/Paris,,OAB, +OAB:SP:1010189,1,"CORSY",43.528404,5.428947,0,0,OAC:SA:CTP120189,Europe/Paris,,OAB, +OAB:SP:1012289,1,"3 BONS DIEUX",43.53574,5.471862,0,0,OAB:SA:CTP1012289,Europe/Paris,,OAB, +OAB:SP:1012290,1,"3 BONS DIEUX",43.535625,5.47083,0,0,OAB:SA:CTP1012289,Europe/Paris,,OAB, +OAB:SP:1012291,1,"DOMAINE PRIGNON",43.538548,5.484924,0,0,OAC:SA:CTP122291,Europe/Paris,,OAB, +OAB:SP:1012293,1,"COLLONGUE",43.539863,5.4969,0,0,OAC:SA:CTP122293,Europe/Paris,,OAB, +OAB:SP:1012660,1,"LA CAUSE",43.510299,5.492316,0,0,OAB:SA:CTP1012661,Europe/Paris,,OAB, +OAB:SP:1012661,1,"LA CAUSE",43.510642,5.49266,0,0,OAB:SA:CTP1012661,Europe/Paris,,OAB, +OAB:SP:1012664,1,"LES ARTAUDS",43.514714,5.499535,0,0,OAC:SA:CTP122664,Europe/Paris,,OAB, +OAB:SP:1012665,1,"LES ARTAUDS",43.514656,5.499535,0,0,OAC:SA:CTP122664,Europe/Paris,,OAB, +OAB:SP:1012666,1,"PALETTE",43.51265,5.494837,0,0,OAB:SA:CTP1012666,Europe/Paris,,OAB, +OAB:SP:1012667,1,"LE THOLONET",43.519523,5.511568,0,0,OAB:SA:CTP1012667,Europe/Paris,,OAB, +OAB:SP:1013651,1,"ZONE ARTISANALE",43.493397,5.369016,0,0,OAC:SA:CTP123651,Europe/Paris,,OAB, +OAB:SP:1013654,1,"DUCHESNE",43.492024,5.372511,0,0,OAB:SA:CTP1013654,Europe/Paris,,OAB, +OAB:SP:1013743,1,"COTON ROUGE",43.513393,5.452095,0,0,OAC:SA:CTP134142,Europe/Paris,,OAB, +OAB:SP:1013809,1,"BELLEGARDE",43.531555,5.451636,0,0,OAC:SA:CTP123809,Europe/Paris,,OAB, +OAB:SP:1013819,1,"SAINT-BENOIT",43.514313,5.461376,0,0,OAB:SA:CTP1013820,Europe/Paris,,OAB, +OAB:SP:1013820,1,"SAINT-BENOIT",43.514084,5.46109,0,0,OAB:SA:CTP1013820,Europe/Paris,,OAB, +OAB:SP:1013888,1,"DE LA MOLLE",43.530125,5.43863,0,0,OAC:SA:CTP123888,Europe/Paris,,OAB, +OAB:SP:1013889,1,"DE LA MOLLE",43.530754,5.438229,0,0,OAC:SA:CTP123888,Europe/Paris,,OAB, +OAB:SP:1013998,1,"PASTEUR",43.533505,5.445907,0,0,OAC:SA:CTP133961,Europe/Paris,,OAB, +OAB:SP:1013999,1,"PASTEUR",43.533333,5.445907,0,0,OAC:SA:CTP133961,Europe/Paris,,OAB, +OAB:SP:1014388,1,"DE REGIS",43.579685,5.418347,0,0,OAB:SA:CTP1014388,Europe/Paris,,OAB, +OAB:SP:1014389,1,"DE REGIS",43.579571,5.41829,0,0,OAB:SA:CTP1014388,Europe/Paris,,OAB, +OAB:SP:1014408,1,"AERODROME",43.502967,5.37337,0,0,OAC:SA:CTP134023,Europe/Paris,,OAB, +OAB:SP:1014440,1,"PONT DES CORNEILLES",43.541469,5.454329,0,0,OAC:SA:CTP133964,Europe/Paris,,OAB, +OAB:SP:1014468,1,"LES 3 CHEMINS",43.535397,5.480399,0,0,OAC:SA:CTP124468,Europe/Paris,,OAB, +OAB:SP:1014469,1,"LES 3 CHEMINS",43.535225,5.479539,0,0,OAC:SA:CTP124468,Europe/Paris,,OAB, +OAB:SP:1014470,1,"FONTENAILLE",43.534077,5.460861,0,0,OAB:SA:CTP1014471,Europe/Paris,,OAB, +OAB:SP:1014471,1,"FONTENAILLE",43.533962,5.461147,0,0,OAB:SA:CTP1014471,Europe/Paris,,OAB, +OAB:SP:1014472,1,"ROTONDE VICTOR HUGO",43.525311,5.44625,0,0,OAB:SA:CTP1000695,Europe/Paris,,OAB, +OAB:SP:1014663,1,"MOURET",43.520042,5.434677,0,0,OAB:SA:CTP1017231,Europe/Paris,,OAB, +OAB:SP:1014702,1,"LA COQUILLADE",43.577507,5.431926,0,0,OAC:SA:CTP132914,Europe/Paris,,OAB, +OAB:SP:1014707,1,"BOUTIERE",43.54147,5.438917,0,0,OAB:SA:CTP1014707,Europe/Paris,,OAB, +OAB:SP:1014716,1,"CHOPIN",43.535454,5.465387,0,0,OAB:SA:CTP1014716,Europe/Paris,,OAB, +OAB:SP:1014719,1,"CITE DU LIVRE",43.52491,5.440177,0,0,OAB:SA:CTP1014719,Europe/Paris,,OAB, +OAB:SP:1014721,1,"CORSY",43.528233,5.429806,0,0,OAC:SA:CTP120189,Europe/Paris,,OAB, +OAB:SP:1014730,1,"HOPITAL PONTIER",43.533848,5.442698,0,0,OAB:SA:CTP1000513,Europe/Paris,,OAB, +OAB:SP:1014732,1,"KOENIG",43.542557,5.436338,0,0,OAB:SA:CTP1014732,Europe/Paris,,OAB, +OAB:SP:1014737,1,"LE TUBET",43.546283,5.414622,0,0,OAB:SA:CTP1014737,Europe/Paris,,OAB, +OAB:SP:1014738,1,"LE TUBET",43.546227,5.41468,0,0,OAB:SA:CTP1014737,Europe/Paris,,OAB, +OAB:SP:1014750,1,"LES PEINTRES",43.544964,5.445219,0,0,OAB:SA:CTP1014750,Europe/Paris,,OAB, +OAB:SP:1014751,1,"LES PEINTRES",43.544907,5.445334,0,0,OAB:SA:CTP1014750,Europe/Paris,,OAB, +OAB:SP:1014754,1,"LES 3 SAUTETS",43.512879,5.471862,0,0,OAB:SA:CTP1014754,Europe/Paris,,OAB, +OAB:SP:1014755,1,"LES 3 SAUTETS",43.51242,5.472549,0,0,OAB:SA:CTP1014754,Europe/Paris,,OAB, +OAB:SP:1014758,1,"MAISON DU DROIT",43.524452,5.415368,0,0,OAB:SA:CTP1014758,Europe/Paris,,OAB, +OAB:SP:1014768,1,"NATION",43.533791,5.445448,0,0,OAB:SA:CTP1000688,Europe/Paris,,OAB, +OAB:SP:1014777,1,"PARC RELAIS KRYPTON",43.511505,5.448771,0,0,OAC:SA:CTP134159,Europe/Paris,,OAB, +OAB:SP:1014787,1,"PONT DE L'ARC",43.509327,5.44075,0,0,OAB:SA:CTP1057727,Europe/Paris,,OAB, +OAB:SP:1014794,1,"RESIDENCE BEAUFORT",43.563759,5.429634,0,0,OAC:SA:CTP133970,Europe/Paris,,OAB, +OAB:SP:1014795,1,"RESIDENCE BEAUFORT",43.562725,5.43015,0,0,OAC:SA:CTP133970,Europe/Paris,,OAB, +OAB:SP:1014800,1,"ROND-POINT D'EGUILLES",43.532703,5.427285,0,0,OAB:SA:CTP1014800,Europe/Paris,,OAB, +OAB:SP:1014801,1,"ROND-POINT D'EGUILLES",43.532646,5.42677,0,0,OAB:SA:CTP1014800,Europe/Paris,,OAB, +OAB:SP:1014803,1,"ROTONDE BONAPARTE",43.52663,5.44459,0,0,OAB:SA:CTP1014803,Europe/Paris,,OAB, +OAB:SP:1014811,1,"SALLE DES FETES PUYRICARD",43.580601,5.421327,0,0,OAB:SA:CTP1014811,Europe/Paris,,OAB, +OAB:SP:1014812,1,"SALLE DES FETES PUYRICARD",43.580715,5.421499,0,0,OAB:SA:CTP1014811,Europe/Paris,,OAB, +OAB:SP:1014813,1,"SCOTTO",43.52491,5.428603,0,0,OAB:SA:CTP1014813,Europe/Paris,,OAB, +OAB:SP:1014814,1,"SCOTTO",43.525025,5.42889,0,0,OAB:SA:CTP1014813,Europe/Paris,,OAB, +OAB:SP:1014815,1,"SEIGNEURIE",43.541641,5.435536,0,0,OAB:SA:CTP1014815,Europe/Paris,,OAB, +OAB:SP:1014817,1,"SAINT-BENOIT",43.514084,5.462121,0,0,OAB:SA:CTP1013820,Europe/Paris,,OAB, +OAB:SP:1014827,1,"SAINT-PIERRE",43.522846,5.456221,0,0,OAB:SA:CTP1014828,Europe/Paris,,OAB, +OAB:SP:1014828,1,"SAINT-PIERRE",43.523075,5.455933,0,0,OAB:SA:CTP1014828,Europe/Paris,,OAB, +OAB:SP:1014831,1,"CROIX DE CELONY",43.555451,5.415023,0,0,OAB:SA:CTP1014831,Europe/Paris,,OAB, +OAB:SP:1014832,1,"CROIX DE CELONY",43.555507,5.414967,0,0,OAB:SA:CTP1014831,Europe/Paris,,OAB, +OAB:SP:1014838,1,"VALLON DES SOURCES",43.538319,5.46894,0,0,OAB:SA:CTP1014839,Europe/Paris,,OAB, +OAB:SP:1014839,1,"VALLON DES SOURCES",43.538147,5.469341,0,0,OAB:SA:CTP1014839,Europe/Paris,,OAB, +OAB:SP:1014840,1,"VERTE CAMPAGNE",43.575905,5.424764,0,0,OAC:SA:CTP133951,Europe/Paris,,OAB, +OAB:SP:1014844,1,"ZOLA",43.532875,5.455074,0,0,OAC:SA:CTP124844,Europe/Paris,,OAB, +OAB:SP:1014845,1,"ZOLA",43.532933,5.454902,0,0,OAC:SA:CTP124844,Europe/Paris,,OAB, +OAB:SP:1014847,1,"ETOILE",43.574127,5.42253,0,0,OAC:SA:CTP133974,Europe/Paris,,OAB, +OAB:SP:1014848,1,"ETOILE",43.573326,5.423217,0,0,OAC:SA:CTP133974,Europe/Paris,,OAB, +OAB:SP:1014858,1,"PHILIBERT",43.494774,5.342889,0,0,OAB:SA:CTP1014858,Europe/Paris,,OAB, +OAB:SP:1014859,1,"PHILIBERT",43.494946,5.34266,0,0,OAB:SA:CTP1014858,Europe/Paris,,OAB, +OAB:SP:1014860,1,"DESCARTES",43.495575,5.347472,0,0,OAB:SA:CTP1014860,Europe/Paris,,OAB, +OAB:SP:1014861,1,"DESCARTES",43.495804,5.347071,0,0,OAB:SA:CTP1014860,Europe/Paris,,OAB, +OAB:SP:1014862,1,"PETIT NICE",43.53379,5.46258,0,0,OAC:SA:CTP134089,Europe/Paris,,OAB, +OAB:SP:1014865,1,"ROSE",43.561008,5.433874,0,0,OAC:SA:CTP132926,Europe/Paris,,OAB, +OAB:SP:1014867,1,"BELGES",43.524681,5.443787,0,0,OAB:SA:CTP1014867,Europe/Paris,,OAB, +OAB:SP:1014871,1,"MALHERBE",43.52388,5.446938,0,0,OAB:SA:CTP1014871,Europe/Paris,,OAB, +OAB:SP:1014894,1,"FONTLEBRE",43.55075,5.456907,0,0,OAB:SA:CTP1014894,Europe/Paris,,OAB, +OAB:SP:1014965,1,"GAMBETTA",43.524681,5.453756,0,0,OAB:SA:CTP1014965,Europe/Paris,,OAB, +OAB:SP:1015004,1,"ROI RENE",43.523994,5.449573,0,0,OAB:SA:CTP1015004,Europe/Paris,,OAB, +OAB:SP:1015013,1,"PALETTE",43.512764,5.494894,0,0,OAB:SA:CTP1012666,Europe/Paris,,OAB, +OAB:SP:1015014,1,"ROCHER DU DRAGON",43.532818,5.43926,0,0,OAC:SA:CTP134297,Europe/Paris,,OAB, +OAB:SP:1015023,1,"GALICE",43.528404,5.433416,0,0,OAB:SA:CTP1015024,Europe/Paris,,OAB, +OAB:SP:1015024,1,"GALICE",43.528232,5.433359,0,0,OAB:SA:CTP1015024,Europe/Paris,,OAB, +OAB:SP:1015026,1,"JARDINS SAINT DONAT",43.547828,5.455418,0,0,OAB:SA:CTP1015027,Europe/Paris,,OAB, +OAB:SP:1015027,1,"JARDINS SAINT DONAT",43.547772,5.455246,0,0,OAB:SA:CTP1015027,Europe/Paris,,OAB, +OAB:SP:1015029,1,"CHALET",43.54015,5.43657,0,0,OAB:SA:CTP1015029,Europe/Paris,,OAB, +OAB:SP:1015032,1,"MONCLAR",43.507821,5.386817,0,0,OAB:SA:CTP1015032,Europe/Paris,,OAB, +OAB:SP:1015044,1,"PEYTRAL",43.532131,5.45685,0,0,OAB:SA:CTP1015044,Europe/Paris,,OAB, +OAB:SP:1015048,1,"DURANNE ECOLE",43.486465,5.344608,0,0,OAC:SA:CTP133953,Europe/Paris,,OAB, +OAB:SP:1015144,1,"MAGELLAN",43.494545,5.355838,0,0,OAC:SA:CTP125144,Europe/Paris,,OAB, +OAB:SP:1015145,1,"MAGELLAN",43.494487,5.355895,0,0,OAC:SA:CTP125144,Europe/Paris,,OAB, +OAB:SP:1017151,1,"PLEIADES",43.491222,5.340482,0,0,OAB:SA:CTP1017151,Europe/Paris,,OAB, +OAB:SP:1017152,1,"PLEIADES",43.491104,5.340368,0,0,OAB:SA:CTP1017151,Europe/Paris,,OAB, +OAB:SP:1017206,1,"BRUNET",43.547199,5.440005,0,0,OAB:SA:CTP1017206,Europe/Paris,,OAB, +OAB:SP:1017207,1,"BRUNET",43.547199,5.439948,0,0,OAB:SA:CTP1017206,Europe/Paris,,OAB, +OAB:SP:1017212,1,"CAMUS",43.520328,5.431296,0,0,OAB:SA:CTP1017212,Europe/Paris,,OAB, +OAB:SP:1017213,1,"CAMUS",43.520271,5.431296,0,0,OAB:SA:CTP1017212,Europe/Paris,,OAB, +OAB:SP:1017220,1,"BELLEGARDE",43.53236,5.452037,0,0,OAC:SA:CTP123809,Europe/Paris,,OAB, +OAB:SP:1017227,1,"BEAUFORT",43.569717,5.433015,0,0,OAB:SA:CTP1017228,Europe/Paris,,OAB, +OAB:SP:1017228,1,"BEAUFORT",43.569599,5.43313,0,0,OAB:SA:CTP1017228,Europe/Paris,,OAB, +OAB:SP:1017229,1,"RIGAUD",43.542904,5.454673,0,0,OAC:SA:CTP133991,Europe/Paris,,OAB, +OAB:SP:1017231,1,"MOURET",43.520214,5.43525,0,0,OAB:SA:CTP1017231,Europe/Paris,,OAB, +OAB:SP:1017232,1,"STADE CARCASSONNE",43.526687,5.459257,0,0,OAC:SA:CTP132535,Europe/Paris,,OAB, +OAB:SP:1017383,1,"CELONY ECOLE",43.556709,5.419264,0,0,OAB:SA:CTP1017383,Europe/Paris,,OAB, +OAB:SP:1017384,1,"CELONY ECOLE",43.556252,5.419779,0,0,OAB:SA:CTP1017383,Europe/Paris,,OAB, +OAB:SP:1017443,1,"SILVACANE",43.530754,5.439776,0,0,OAC:SA:CTP127443,Europe/Paris,,OAB, +OAB:SP:1050123,1,"LA CHEVALIERE",43.54565,5.430206,0,0,OAB:SA:CTP1010123,Europe/Paris,,OAB, +OAB:SP:1057245,1,"ROUTE DE MOULIN",43.597446,5.450891,0,0,OAC:SA:CTP132876,Europe/Paris,,OAB, +OAB:SP:1057247,1,"LEVESQUE",43.596989,5.455074,0,0,OAC:SA:CTP132877,Europe/Paris,,OAB, +OAB:SP:1057258,1,"D 4",43.593857,5.455871,0,0,OAB:SA:CTP1057258,Europe/Paris,,OAB, +OAB:SP:1057263,1,"GARE SNCF",43.522674,5.446486,0,0,OAB:SA:CTP1057263,Europe/Paris,,OAB, +OAB:SP:1057264,1,"RECTORAT",43.521954,5.447572,0,0,OAB:SA:CTP1057264,Europe/Paris,,OAB, +OAB:SP:1057266,1,"PASTEUR NOTRE-DAME",43.534305,5.446537,0,0,OAC:SA:CTP132969,Europe/Paris,,OAB, +OAB:SP:1057282,1,"Cc LES MILLES",43.504283,5.394856,0,0,OAC:SA:CTP120156,Europe/Paris,,OAB, +OAB:SP:1057287,1,"MARTELLY",43.517472,5.424733,0,0,OAB:SA:CTP1057287,Europe/Paris,,OAB, +OAB:SP:1057305,1,"ANGENOT",43.509155,5.392278,0,0,OAC:SA:CTP132313,Europe/Paris,,OAB, +OAB:SP:1057394,1,"COLLONGUE",43.539982,5.496613,0,0,OAC:SA:CTP122293,Europe/Paris,,OAB, +OAB:SP:1057397,1,"MAISON D'ARRET",43.481308,5.395715,0,0,OAB:SA:CTP1057397,Europe/Paris,,OAB, +OAB:SP:1057400,1,"PARC RELAIS KRYPTON",43.511505,5.448771,0,0,OAC:SA:CTP134159,Europe/Paris,,OAB, +OAB:SP:1057452,1,"CIM. ST-PIERRE",43.525368,5.460288,0,0,OAB:SA:CTP1057452,Europe/Paris,,OAB, +OAB:SP:1057502,1,"HOPITAL TAMARIS",43.535854,5.44138,0,0,OAB:SA:CTP1000514,Europe/Paris,,OAB, +OAB:SP:1057531,1,"EUROPE-GARE ROUTIERE",43.52346,5.438411,0,0,OAB:SA:CTP1057531,Europe/Paris,,OAB, +OAB:SP:1057547,1,"AMANDIERS",43.538089,5.453126,0,0,OAB:SA:CTP1000671,Europe/Paris,,OAB, +OAB:SP:1057549,1,"CHALET",43.54015,5.43657,0,0,OAB:SA:CTP1015029,Europe/Paris,,OAB, +OAB:SP:1057550,1,"SEIGNEURIE",43.541641,5.435536,0,0,OAB:SA:CTP1014815,Europe/Paris,,OAB, +OAB:SP:1057570,1,"MAGNAN",43.514713,5.470257,0,0,OAB:SA:CTP1057570,Europe/Paris,,OAB, +OAB:SP:1057571,1,"PISCINE",43.501476,5.391762,0,0,OAB:SA:CTP1057571,Europe/Paris,,OAB, +OAB:SP:1057573,1,"PARC RELAIS HAUTS DE BRUNET",43.547371,5.439433,0,0,OAB:SA:CTP1057573,Europe/Paris,,OAB, +OAB:SP:1057574,1,"SAINT-LOUIS",43.529324,5.453813,0,0,OAB:SA:CTP1057574,Europe/Paris,,OAB, +OAB:SP:1057575,1,"POLE DE LA BEAUVALLE",43.51305,5.437198,0,0,OAB:SA:CTP1057575,Europe/Paris,,OAB, +OAB:SP:1057576,1,"POLE DE LA BEAUVALLE",43.513049,5.437255,0,0,OAB:SA:CTP1057575,Europe/Paris,,OAB, +OAB:SP:1057577,1,"CALIFORNIA",43.512306,5.436567,0,0,OAB:SA:CTP1057577,Europe/Paris,,OAB, +OAB:SP:1057578,1,"CALIFORNIA",43.512249,5.435937,0,0,OAB:SA:CTP1057577,Europe/Paris,,OAB, +OAB:SP:1057579,1,"L'ARMELIERE",43.51009,5.436183,0,0,OAB:SA:CTP1057579,Europe/Paris,,OAB, +OAB:SP:1057580,1,"L'ARMELIERE",43.51009,5.436183,0,0,OAB:SA:CTP1057579,Europe/Paris,,OAB, +OAB:SP:1057581,1,"PARADE",43.508011,5.42379,0,0,OAC:SA:CTP134018,Europe/Paris,,OAB, +OAB:SP:1057582,1,"PARADE",43.508122,5.423561,0,0,OAC:SA:CTP134018,Europe/Paris,,OAB, +OAB:SP:1057583,1,"CHAMP DE FOIRE",43.507091,5.415884,0,0,OAB:SA:CTP1057583,Europe/Paris,,OAB, +OAB:SP:1057584,1,"CHAMP DE FOIRE",43.507721,5.417144,0,0,OAB:SA:CTP1057583,Europe/Paris,,OAB, +OAB:SP:1057585,1,"CHAMP DE FOIRE",43.507606,5.416628,0,0,OAB:SA:CTP1057583,Europe/Paris,,OAB, +OAB:SP:1057586,1,"CHAMP DE FOIRE",43.50692,5.415483,0,0,OAB:SA:CTP1057583,Europe/Paris,,OAB, +OAB:SP:1057587,1,"Cc LES MILLES",43.504283,5.394856,0,0,OAC:SA:CTP120156,Europe/Paris,,OAB, +OAB:SP:1057589,1,"P+R KRYPTON QUAI 7",43.511284,5.448954,0,0,OAC:SA:CTP134159,Europe/Paris,,OAB, +OAB:SP:1057590,1,"GARE DES MILLES",43.503311,5.383683,0,0,OAC:SA:CTP134020,Europe/Paris,,OAB, +OAB:SP:1057591,1,"GARE DES MILLES",43.503369,5.383511,0,0,OAC:SA:CTP134020,Europe/Paris,,OAB, +OAB:SP:1057592,1,"REQUIER",43.501018,5.381735,0,0,OAB:SA:CTP1057592,Europe/Paris,,OAB, +OAB:SP:1057593,1,"REQUIER",43.500961,5.381564,0,0,OAB:SA:CTP1057592,Europe/Paris,,OAB, +OAB:SP:1057594,1,"GARE ROUTIERE QUAI 4",43.523491,5.441509,0,0,OAC:SA:CTP134124,Europe/Paris,,OAB, +OAB:SP:1057595,1,"LAVOISIER",43.489331,5.367812,0,0,OAB:SA:CTP1057595,Europe/Paris,,OAB, +OAB:SP:1057596,1,"GARE ROUTIERE QUAI 5",43.523499,5.441433,0,0,OAC:SA:CTP134124,Europe/Paris,,OAB, +OAB:SP:1057597,1,"ENTREPOTS",43.487152,5.372454,0,0,OAB:SA:CTP1057597,Europe/Paris,,OAB, +OAB:SP:1057598,1,"GARE ROUTIERE QUAI 3",43.523487,5.441579,0,0,OAC:SA:CTP134130,Europe/Paris,,OAB, +OAB:SP:1057599,1,"PERRIN",43.484516,5.374287,0,0,OAB:SA:CTP1057599,Europe/Paris,,OAB, +OAB:SP:1057600,1,"PILON DU ROY",43.481995,5.378641,0,0,OAB:SA:CTP1057600,Europe/Paris,,OAB, +OAB:SP:1057601,1,"MONTRICHER",43.479133,5.383683,0,0,OAB:SA:CTP1057601,Europe/Paris,,OAB, +OAB:SP:1057602,1,"EIFFEL",43.482055,5.385459,0,0,OAB:SA:CTP1057602,Europe/Paris,,OAB, +OAB:SP:1057603,1,"EIFFEL",43.481308,5.387522,0,0,OAB:SA:CTP1057602,Europe/Paris,,OAB, +OAB:SP:1057604,1,"BESSEMER",43.484516,5.382194,0,0,OAC:SA:CTP123660,Europe/Paris,,OAB, +OAB:SP:1057605,1,"BESSEMER",43.484287,5.382194,0,0,OAC:SA:CTP123660,Europe/Paris,,OAB, +OAB:SP:1057606,1,"AMPERE",43.48658,5.379501,0,0,OAC:SA:CTP123658,Europe/Paris,,OAB, +OAB:SP:1057607,1,"AMPERE",43.486351,5.379558,0,0,OAC:SA:CTP123658,Europe/Paris,,OAB, +OAB:SP:1057608,1,"ARMAND",43.488815,5.382251,0,0,OAB:SA:CTP1057608,Europe/Paris,,OAB, +OAB:SP:1057609,1,"JOLIOT CURIE",43.491223,5.380188,0,0,OAB:SA:CTP1057609,Europe/Paris,,OAB, +OAB:SP:1057610,1,"ENTE",43.493225,5.37761,0,0,OAB:SA:CTP1057610,Europe/Paris,,OAB, +OAB:SP:1057611,1,"EINSTEIN",43.492824,5.373829,0,0,OAB:SA:CTP1057611,Europe/Paris,,OAB, +OAB:SP:1057612,1,"POLE D'ACTIVITES",43.490875,5.372511,0,0,OAC:SA:CTP120170,Europe/Paris,,OAB, +OAB:SP:1057613,1,"POLE D'ACTIVITES",43.491223,5.373485,0,0,OAC:SA:CTP120170,Europe/Paris,,OAB, +OAB:SP:1057614,1,"VAL SAINT-ANDRE",43.516029,5.47169,0,0,OAB:SA:CTP1000152,Europe/Paris,,OAB, +OAB:SP:1057615,1,"LE FRERE",43.488873,5.376579,0,0,OAC:SA:CTP124424,Europe/Paris,,OAB, +OAB:SP:1057616,1,"LE FRERE",43.4887,5.376464,0,0,OAC:SA:CTP124424,Europe/Paris,,OAB, +OAB:SP:1057617,1,"BERTHIER",43.481079,5.379615,0,0,OAC:SA:CTP123662,Europe/Paris,,OAB, +OAB:SP:1057618,1,"BERTHIER",43.481022,5.379386,0,0,OAC:SA:CTP123662,Europe/Paris,,OAB, +OAB:SP:1057619,1,"LA ROBOLE",43.478042,5.375605,0,0,OAC:SA:CTP123664,Europe/Paris,,OAB, +OAB:SP:1057620,1,"LA ROBOLE",43.478214,5.37549,0,0,OAC:SA:CTP123664,Europe/Paris,,OAB, +OAB:SP:1057621,1,"LES GROTTES",43.479015,5.370792,0,0,OAC:SA:CTP123666,Europe/Paris,,OAB, +OAB:SP:1057622,1,"LES GROTTES",43.479072,5.370964,0,0,OAC:SA:CTP123666,Europe/Paris,,OAB, +OAB:SP:1057623,1,"PICHAURY",43.480393,5.366495,0,0,OAC:SA:CTP123668,Europe/Paris,,OAB, +OAB:SP:1057624,1,"PICHAURY",43.47982,5.367125,0,0,OAC:SA:CTP123668,Europe/Paris,,OAB, +OAB:SP:1057625,1,"PARC CLUB GOLF",43.485664,5.361682,0,0,OAC:SA:CTP120171,Europe/Paris,,OAB, +OAB:SP:1057626,1,"PARC CLUB GOLF",43.485309,5.362403,0,0,OAC:SA:CTP120171,Europe/Paris,,OAB, +OAB:SP:1057627,1,"DE BROGLIE",43.490704,5.356124,0,0,OAB:SA:CTP1057627,Europe/Paris,,OAB, +OAB:SP:1057628,1,"DE BROGLIE",43.490532,5.356353,0,0,OAB:SA:CTP1057627,Europe/Paris,,OAB, +OAB:SP:1057629,1,"ARAGO",43.492538,5.355379,0,0,OAC:SA:CTP124704,Europe/Paris,,OAB, +OAB:SP:1057630,1,"ARAGO",43.491909,5.355207,0,0,OAC:SA:CTP124704,Europe/Paris,,OAB, +OAB:SP:1057631,1,"FRESNEL",43.495689,5.351197,0,0,OAC:SA:CTP132289,Europe/Paris,,OAB, +OAB:SP:1057632,1,"FRESNEL",43.495804,5.351426,0,0,OAC:SA:CTP132289,Europe/Paris,,OAB, +OAB:SP:1057633,1,"FOUCAULT",43.48801,5.359218,0,0,OAC:SA:CTP120168,Europe/Paris,,OAB, +OAB:SP:1057634,1,"FOUCAULT",43.488071,5.359333,0,0,OAC:SA:CTP120168,Europe/Paris,,OAB, +OAB:SP:1057635,1,"REPUBLIQUE",43.528621,5.440061,0,0,OAC:SA:CTP134002,Europe/Paris,,OAB, +OAB:SP:1057636,1,"GAMBETTA",43.524567,5.454673,0,0,OAB:SA:CTP1014965,Europe/Paris,,OAB, +OAB:SP:1057637,1,"NIOLLON",43.527962,5.44154,0,0,OAC:SA:CTP132979,Europe/Paris,,OAB, +OAB:SP:1057638,1,"LA SEDS",43.529151,5.436395,0,0,OAB:SA:CTP1057638,Europe/Paris,,OAB, +OAB:SP:1057639,1,"MARTIN",43.514542,5.432728,0,0,OAB:SA:CTP1057639,Europe/Paris,,OAB, +OAB:SP:1057640,1,"MARTIN",43.514366,5.431926,0,0,OAB:SA:CTP1057639,Europe/Paris,,OAB, +OAB:SP:1057641,1,"CAVALIERS",43.513909,5.43015,0,0,OAB:SA:CTP1057641,Europe/Paris,,OAB, +OAB:SP:1057642,1,"CAVALIERS",43.514083,5.430609,0,0,OAB:SA:CTP1057641,Europe/Paris,,OAB, +OAB:SP:1057643,1,"CLUB HIPPIQUE",43.512707,5.427285,0,0,OAB:SA:CTP1057643,Europe/Paris,,OAB, +OAB:SP:1057644,1,"CLUB HIPPIQUE",43.512706,5.427113,0,0,OAB:SA:CTP1057643,Europe/Paris,,OAB, +OAB:SP:1057645,1,"AUBEPINES",43.511848,5.421613,0,0,OAB:SA:CTP1057645,Europe/Paris,,OAB, +OAB:SP:1057646,1,"AUBEPINES",43.51202,5.421785,0,0,OAB:SA:CTP1057645,Europe/Paris,,OAB, +OAB:SP:1057647,1,"CAMP DE MENTHE",43.511044,5.413362,0,0,OAB:SA:CTP1057647,Europe/Paris,,OAB, +OAB:SP:1057648,1,"CAMP DE MENTHE",43.510528,5.41468,0,0,OAB:SA:CTP1057647,Europe/Paris,,OAB, +OAB:SP:1057649,1,"VALCROS",43.510586,5.40981,0,0,OAB:SA:CTP1057649,Europe/Paris,,OAB, +OAB:SP:1057650,1,"VALCROS",43.510585,5.409638,0,0,OAB:SA:CTP1057649,Europe/Paris,,OAB, +OAB:SP:1057651,1,"BEAUVOISIN",43.50824,5.408149,0,0,OAB:SA:CTP1057651,Europe/Paris,,OAB, +OAB:SP:1057652,1,"BEAUVOISIN",43.508178,5.408148,0,0,OAB:SA:CTP1057651,Europe/Paris,,OAB, +OAB:SP:1057653,1,"CHATEAU",43.508122,5.406258,0,0,OAB:SA:CTP1057653,Europe/Paris,,OAB, +OAB:SP:1057654,1,"CHATEAU",43.508064,5.406258,0,0,OAB:SA:CTP1057653,Europe/Paris,,OAB, +OAB:SP:1057655,1,"CHATEAU DE GALICE",43.52388,5.376349,0,0,OAC:SA:CTP132641,Europe/Paris,,OAB, +OAB:SP:1057656,1,"LA PIOLINE",43.507378,5.400872,0,0,OAB:SA:CTP1057656,Europe/Paris,,OAB, +OAB:SP:1057657,1,"LA PIOLINE",43.507321,5.400815,0,0,OAB:SA:CTP1057656,Europe/Paris,,OAB, +OAB:SP:1057658,1,"LA BEAUVALLE",43.514656,5.442583,0,0,OAC:SA:CTP124733,Europe/Paris,,OAB, +OAB:SP:1057659,1,"LA BEAUVALLE",43.514656,5.442698,0,0,OAC:SA:CTP124733,Europe/Paris,,OAB, +OAB:SP:1057660,1,"CARTOUX",43.489903,5.431239,0,0,OAB:SA:CTP1057660,Europe/Paris,,OAB, +OAB:SP:1057661,1,"CARTOUX",43.489845,5.431182,0,0,OAB:SA:CTP1057660,Europe/Paris,,OAB, +OAB:SP:1057662,1,"ROUBIN",43.487495,5.429062,0,0,OAB:SA:CTP1057662,Europe/Paris,,OAB, +OAB:SP:1057663,1,"ROUBIN",43.487553,5.429119,0,0,OAB:SA:CTP1057662,Europe/Paris,,OAB, +OAB:SP:1057664,1,"MALOUESSE",43.483543,5.427056,0,0,OAB:SA:CTP1057664,Europe/Paris,,OAB, +OAB:SP:1057665,1,"MALOUESSE",43.483372,5.427228,0,0,OAB:SA:CTP1057664,Europe/Paris,,OAB, +OAB:SP:1057666,1,"CIMETIERE LUYNES",43.481766,5.425796,0,0,OAB:SA:CTP1057666,Europe/Paris,,OAB, +OAB:SP:1057667,1,"CIMETIERE LUYNES",43.481881,5.425681,0,0,OAB:SA:CTP1057666,Europe/Paris,,OAB, +OAB:SP:1057668,1,"LIBERATEURS",43.481766,5.423045,0,0,OAC:SA:CTP132348,Europe/Paris,,OAB, +OAB:SP:1057669,1,"LIBERATEURS",43.481307,5.423275,0,0,OAC:SA:CTP132348,Europe/Paris,,OAB, +OAB:SP:1057670,1,"CAIRE",43.48257,5.4219,0,0,OAC:SA:CTP134105,Europe/Paris,,OAB, +OAB:SP:1057671,1,"CAIRE",43.482513,5.421957,0,0,OAC:SA:CTP134105,Europe/Paris,,OAB, +OAB:SP:1057672,1,"ALBERTIN",43.483371,5.422931,0,0,OAB:SA:CTP1057672,Europe/Paris,,OAB, +OAB:SP:1057673,1,"ALBERTIN",43.483371,5.422816,0,0,OAB:SA:CTP1057672,Europe/Paris,,OAB, +OAB:SP:1057674,1,"CAPRICORNE",43.485088,5.423905,0,0,OAB:SA:CTP1057674,Europe/Paris,,OAB, +OAB:SP:1057675,1,"CAPRICORNE",43.485146,5.42379,0,0,OAB:SA:CTP1057674,Europe/Paris,,OAB, +OAB:SP:1057676,1,"CHAPUIS",43.487266,5.422473,0,0,OAC:SA:CTP120143,Europe/Paris,,OAB, +OAB:SP:1057677,1,"CHAPUIS",43.486751,5.422129,0,0,OAC:SA:CTP120143,Europe/Paris,,OAB, +OAB:SP:1057678,1,"DE GREEN",43.4879,5.420811,0,0,OAC:SA:CTP134104,Europe/Paris,,OAB, +OAB:SP:1057679,1,"DE GREEN",43.487899,5.420983,0,0,OAC:SA:CTP134104,Europe/Paris,,OAB, +OAB:SP:1057680,1,"COMMANDERIE",43.488243,5.418347,0,0,OAC:SA:CTP134107,Europe/Paris,,OAB, +OAB:SP:1057681,1,"COMMANDERIE",43.488185,5.418405,0,0,OAC:SA:CTP134107,Europe/Paris,,OAB, +OAB:SP:1057682,1,"MAVEL",43.489445,5.416113,0,0,OAC:SA:CTP132343,Europe/Paris,,OAB, +OAB:SP:1057683,1,"MAVEL",43.489444,5.416055,0,0,OAC:SA:CTP132343,Europe/Paris,,OAB, +OAB:SP:1057684,1,"ROSEAUX",43.487667,5.412502,0,0,OAC:SA:CTP132342,Europe/Paris,,OAB, +OAB:SP:1057685,1,"ROSE",43.560779,5.433702,0,0,OAC:SA:CTP132926,Europe/Paris,,OAB, +OAB:SP:1057686,1,"ROSEAUX",43.487781,5.412388,0,0,OAC:SA:CTP132342,Europe/Paris,,OAB, +OAB:SP:1057687,1,"CHAMSON",43.486523,5.413191,0,0,OAB:SA:CTP1057687,Europe/Paris,,OAB, +OAB:SP:1057688,1,"CHAMSON",43.486408,5.413191,0,0,OAB:SA:CTP1057687,Europe/Paris,,OAB, +OAB:SP:1057689,1,"VIDAL",43.486179,5.415368,0,0,OAC:SA:CTP132340,Europe/Paris,,OAB, +OAB:SP:1057690,1,"VIDAL",43.48618,5.41554,0,0,OAC:SA:CTP132340,Europe/Paris,,OAB, +OAB:SP:1057691,1,"LUYNES MAIL",43.485378,5.417946,0,0,OAC:SA:CTP134102,Europe/Paris,,OAB, +OAB:SP:1057692,1,"LUYNES MAIL",43.485493,5.417889,0,0,OAC:SA:CTP134102,Europe/Paris,,OAB, +OAB:SP:1057693,1,"LUYNES SUD",43.483658,5.417774,0,0,OAC:SA:CTP120145,Europe/Paris,,OAB, +OAB:SP:1057694,1,"LUYNES SUD",43.483943,5.418061,0,0,OAC:SA:CTP120145,Europe/Paris,,OAB, +OAB:SP:1057695,1,"LUYNES LYCEE",43.480449,5.41468,0,0,OAB:SA:CTP1057695,Europe/Paris,,OAB, +OAB:SP:1057696,1,"LUYNES LYCEE",43.480392,5.415139,0,0,OAB:SA:CTP1057695,Europe/Paris,,OAB, +OAB:SP:1057697,1,"RAMPELIN",43.477299,5.414279,0,0,OAC:SA:CTP120149,Europe/Paris,,OAB, +OAB:SP:1057698,1,"RAMPELIN",43.477985,5.414337,0,0,OAC:SA:CTP120149,Europe/Paris,,OAB, +OAB:SP:1057699,1,"TROIS PIGEONS",43.473229,5.410326,0,0,OAC:SA:CTP120151,Europe/Paris,,OAB, +OAB:SP:1057700,1,"TROIS PIGEONS",43.472999,5.40981,0,0,OAC:SA:CTP120151,Europe/Paris,,OAB, +OAB:SP:1057701,1,"CIM. MILITAIRE",43.47174,5.400987,0,0,OAB:SA:CTP1057701,Europe/Paris,,OAB, +OAB:SP:1057702,1,"CIM. MILITAIRE",43.471168,5.40242,0,0,OAB:SA:CTP1057701,Europe/Paris,,OAB, +OAB:SP:1057703,1,"MAISON D'ARRET",43.481308,5.395715,0,0,OAB:SA:CTP1057397,Europe/Paris,,OAB, +OAB:SP:1057704,1,"LE SERRE",43.501476,5.386777,0,0,OAB:SA:CTP1057704,Europe/Paris,,OAB, +OAB:SP:1057705,1,"PISCINE",43.501476,5.391762,0,0,OAB:SA:CTP1057571,Europe/Paris,,OAB, +OAB:SP:1057706,1,"BADESSE",43.502967,5.375891,0,0,OAC:SA:CTP133011,Europe/Paris,,OAB, +OAB:SP:1057707,1,"HIPPODROME",43.50801,5.425453,0,0,OAC:SA:CTP134025,Europe/Paris,,OAB, +OAB:SP:1057708,1,"HIPPODROME",43.508121,5.425052,0,0,OAC:SA:CTP134025,Europe/Paris,,OAB, +OAB:SP:1057709,1,"GALILEE",43.488815,5.341113,0,0,OAC:SA:CTP133954,Europe/Paris,,OAB, +OAB:SP:1057710,1,"GALILEE",43.488873,5.34117,0,0,OAC:SA:CTP133954,Europe/Paris,,OAB, +OAB:SP:1057711,1,"ARCHIMEDE",43.491394,5.338878,0,0,OAC:SA:CTP125074,Europe/Paris,,OAB, +OAB:SP:1057712,1,"ARCHIMEDE",43.491566,5.339164,0,0,OAC:SA:CTP125074,Europe/Paris,,OAB, +OAB:SP:1057713,1,"CENTRE AERE",43.524834,5.389996,0,0,OAC:SA:CTP132643,Europe/Paris,,OAB, +OAB:SP:1057714,1,"LA POSTE",27.140959,-3.404569,0,0,OAB:SA:CTP1057714,Europe/Paris,,OAB, +OAB:SP:1057715,1,"CHEMIN DU SEUIL",43.58593,5.412847,0,0,OAC:SA:CTP132755,Europe/Paris,,OAB, +OAB:SP:1057716,1,"PISCINE YVES BLANC",43.526402,5.460345,0,0,OAB:SA:CTP1057816,Europe/Paris,,OAB, +OAB:SP:1057717,1,"NELSON MANDELA",43.529095,5.439031,0,0,OAC:SA:CTP134438,Europe/Paris,,OAB, +OAB:SP:1057718,1,"LES CHENES",43.535236,5.476066,0,0,OAC:SA:CTP134125,Europe/Paris,,OAB, +OAB:SP:1057719,1,"LES CHENES",43.535305,5.476194,0,0,OAC:SA:CTP134125,Europe/Paris,,OAB, +OAB:SP:1057720,1,"AURIOL",43.537861,5.446709,0,0,OAC:SA:CTP133995,Europe/Paris,,OAB, +OAB:SP:1057721,1,"BOUFFAN",43.534882,5.415024,0,0,OAB:SA:CTP1057721,Europe/Paris,,OAB, +OAB:SP:1057722,1,"BOUFFAN",43.534935,5.415058,0,0,OAB:SA:CTP1057721,Europe/Paris,,OAB, +OAB:SP:1057723,1,"MALACRIDA",43.514103,5.470171,0,0,OAB:SA:CTP1057723,Europe/Paris,,OAB, +OAB:SP:1057724,1,"MALACRIDA",43.51414,5.469913,0,0,OAB:SA:CTP1057723,Europe/Paris,,OAB, +OAB:SP:1057725,1,"LES TROIS MOULINS",43.537113,5.452898,0,0,OAB:SA:CTP1057725,Europe/Paris,,OAB, +OAB:SP:1057726,1,"LES TROIS MOULINS",43.536827,5.452839,0,0,OAB:SA:CTP1057725,Europe/Paris,,OAB, +OAB:SP:1057727,1,"PONT DE L'ARC",43.509499,5.44075,0,0,OAB:SA:CTP1057727,Europe/Paris,,OAB, +OAB:SP:1057728,1,"GIONO",43.514656,5.438401,0,0,OAB:SA:CTP1000077,Europe/Paris,,OAB, +OAB:SP:1057729,1,"SOLARI",43.534248,5.44562,0,0,OAC:SA:CTP132851,Europe/Paris,,OAB, +OAB:SP:1057730,1,"MOULIN BERNARD",43.510071,5.443099,0,0,OAB:SA:CTP1057730,Europe/Paris,,OAB, +OAB:SP:1057731,1,"MOULIN BERNARD",43.509842,5.443156,0,0,OAB:SA:CTP1057730,Europe/Paris,,OAB, +OAB:SP:1057732,1,"GUIRAMANDE",43.499989,5.443041,0,0,OAB:SA:CTP1057732,Europe/Paris,,OAB, +OAB:SP:1057733,1,"GUIRAMANDE",43.499989,5.443156,0,0,OAB:SA:CTP1057732,Europe/Paris,,OAB, +OAB:SP:1057734,1,"BOMPARS",43.498154,5.441323,0,0,OAB:SA:CTP1057734,Europe/Paris,,OAB, +OAB:SP:1057735,1,"BOMPARS",43.498039,5.441266,0,0,OAB:SA:CTP1057734,Europe/Paris,,OAB, +OAB:SP:1057736,1,"HAUTS MALOUESSE",43.490933,5.437026,0,0,OAB:SA:CTP1057736,Europe/Paris,,OAB, +OAB:SP:1057737,1,"HAUTS MALOUESSE",43.491104,5.437083,0,0,OAB:SA:CTP1057736,Europe/Paris,,OAB, +OAB:SP:1057738,1,"TIR A L'ARC",43.573097,5.409352,0,0,OAB:SA:CTP1000380,Europe/Paris,,OAB, +OAB:SP:1057739,1,"BRASSENS",43.542042,5.456105,0,0,OAC:SA:CTP134080,Europe/Paris,,OAB, +OAB:SP:1057740,1,"BRASSENS",43.541641,5.456621,0,0,OAC:SA:CTP134080,Europe/Paris,,OAB, +OAB:SP:1057741,1,"PARC RELAIS ROUTE DES ALPES",43.540497,5.457194,0,0,OAC:SA:CTP133939,Europe/Paris,,OAB, +OAB:SP:1057742,1,"CIM. ST-PIERRE",43.525482,5.460173,0,0,OAB:SA:CTP1057452,Europe/Paris,,OAB, +OAB:SP:1057744,1,"CHURCHILL",43.519008,5.445506,0,0,OAB:SA:CTP1057744,Europe/Paris,,OAB, +OAB:SP:1057745,1,"PETIT NICE",43.533733,5.463496,0,0,OAC:SA:CTP134089,Europe/Paris,,OAB, +OAB:SP:1057746,1,"ARTS ET METIERS",43.529724,5.453584,0,0,OAC:SA:CTP120093,Europe/Paris,,OAB, +OAB:SP:1057749,1,"MARTELLY",43.517472,5.424733,0,0,OAB:SA:CTP1057287,Europe/Paris,,OAB, +OAB:SP:1057750,1,"CLOS BERNADETTE",43.51712,5.435536,0,0,OAB:SA:CTP1057750,Europe/Paris,,OAB, +OAB:SP:1057751,1,"ARC MEYRAN ZOLA",43.511619,5.461663,0,0,OAB:SA:CTP1057751,Europe/Paris,,OAB, +OAB:SP:1057753,1,"R.I.C.M",43.528518,5.459199,0,0,OAB:SA:CTP1000282,Europe/Paris,,OAB, +OAB:SP:1057754,1,"CIM. ST-PIERRE",43.525368,5.460288,0,0,OAB:SA:CTP1057452,Europe/Paris,,OAB, +OAB:SP:1057755,1,"PARKING CARCASSONNE",43.522793,5.46046,0,0,OAB:SA:CTP1057755,Europe/Paris,,OAB, +OAB:SP:1057756,1,"PARKING CARCASSONNE",43.523194,5.460517,0,0,OAB:SA:CTP1057755,Europe/Paris,,OAB, +OAB:SP:1057757,1,"LA TORSE",43.521129,5.467622,0,0,OAB:SA:CTP1057757,Europe/Paris,,OAB, +OAB:SP:1057758,1,"GUYON",43.534882,5.435937,0,0,OAB:SA:CTP1000522,Europe/Paris,,OAB, +OAB:SP:1057759,1,"GRAND THEATRE DE PROVENCE",43.52676,5.438083,0,0,OAB:SA:CTP1057759,Europe/Paris,,OAB, +OAB:SP:1057760,1,"ARCHIVES",43.527069,5.438927,0,0,OAC:SA:CTP133941,Europe/Paris,,OAB, +OAB:SP:1057761,1,"PARKING LES TROIS BONS DIEUX",43.535225,5.476331,0,0,OAC:SA:CTP134125,Europe/Paris,,OAB, +OAB:SP:1057764,1,"DOMAINE PRIGNON",43.538146,5.484467,0,0,OAC:SA:CTP122291,Europe/Paris,,OAB, +OAB:SP:1057765,1,"ONTANO",43.547371,5.442641,0,0,OAC:SA:CTP133968,Europe/Paris,,OAB, +OAB:SP:1057766,1,"ONTANO",43.547313,5.442698,0,0,OAC:SA:CTP133968,Europe/Paris,,OAB, +OAB:SP:1057767,1,"ABBE ROUSTAND",43.58112,5.411472,0,0,OAC:SA:CTP132770,Europe/Paris,,OAB, +OAB:SP:1057769,1,"TOURTERELLES",43.581406,5.409753,0,0,OAB:SA:CTP1000488,Europe/Paris,,OAB, +OAB:SP:1057770,1,"LES PALOMBES",43.579628,5.409352,0,0,OAC:SA:CTP132775,Europe/Paris,,OAB, +OAB:SP:1057771,1,"COLONEL BELLEC",43.575104,5.417832,0,0,OAC:SA:CTP133987,Europe/Paris,,OAB, +OAB:SP:1057772,1,"COLONEL BELLEC",43.575046,5.41806,0,0,OAC:SA:CTP133987,Europe/Paris,,OAB, +OAB:SP:1057773,1,"GUIENNE",43.577622,5.410383,0,0,OAC:SA:CTP133983,Europe/Paris,,OAB, +OAB:SP:1057774,1,"GUIENNE",43.577907,5.410097,0,0,OAC:SA:CTP133983,Europe/Paris,,OAB, +OAB:SP:1057775,1,"BESSI",43.579342,5.410784,0,0,OAB:SA:CTP1057775,Europe/Paris,,OAB, +OAB:SP:1057776,1,"FERRY",43.522274,5.449688,0,0,OAB:SA:CTP1000098,Europe/Paris,,OAB, +OAB:SP:1057777,1,"SAN PEYRE",43.581634,5.424593,0,0,OAB:SA:CTP1057777,Europe/Paris,,OAB, +OAB:SP:1057778,1,"SAN PEYRE",43.58152,5.424478,0,0,OAB:SA:CTP1057777,Europe/Paris,,OAB, +OAB:SP:1057779,1,"ROSTOLANE",43.582035,5.425738,0,0,OAB:SA:CTP1057779,Europe/Paris,,OAB, +OAB:SP:1057780,1,"ROSTOLANE",43.581634,5.426712,0,0,OAB:SA:CTP1057779,Europe/Paris,,OAB, +OAB:SP:1057784,1,"D 6",43.587822,5.457194,0,0,OAB:SA:CTP1000596,Europe/Paris,,OAB, +OAB:SP:1057785,1,"D 7",43.584041,5.456735,0,0,OAB:SA:CTP1000597,Europe/Paris,,OAB, +OAB:SP:1057786,1,"D 13",43.582092,5.457022,0,0,OAB:SA:CTP1057786,Europe/Paris,,OAB, +OAB:SP:1057787,1,"J 1",43.5467,5.521532,0,0,OAB:SA:CTP1057787,Europe/Paris,,OAB, +OAB:SP:1057788,1,"J 5",43.553787,5.531621,0,0,OAB:SA:CTP1001996,Europe/Paris,,OAB, +OAB:SP:1057789,1,"J 6 BIS",43.550006,5.523714,0,0,OAB:SA:CTP1001998,Europe/Paris,,OAB, +OAB:SP:1057790,1,"J 6",43.552871,5.528356,0,0,OAB:SA:CTP1001997,Europe/Paris,,OAB, +OAB:SP:1057791,1,"J 7",43.548287,5.511855,0,0,OAB:SA:CTP1001999,Europe/Paris,,OAB, +OAB:SP:1057792,1,"J 8 BIS",43.545879,5.508072,0,0,OAB:SA:CTP1002001,Europe/Paris,,OAB, +OAB:SP:1057793,1,"J 8",43.546741,5.512141,0,0,OAB:SA:CTP1002000,Europe/Paris,,OAB, +OAB:SP:1057794,1,"J 9",43.545365,5.514146,0,0,OAB:SA:CTP1057794,Europe/Paris,,OAB, +OAB:SP:1057795,1,"J 10",43.547313,5.493233,0,0,OAB:SA:CTP1002003,Europe/Paris,,OAB, +OAB:SP:1057796,1,"J 11",43.546226,5.49627,0,0,OAB:SA:CTP1002004,Europe/Paris,,OAB, +OAB:SP:1057797,1,"J 12",43.545078,5.499364,0,0,OAB:SA:CTP1002005,Europe/Paris,,OAB, +OAB:SP:1057798,1,"J 13",43.546283,5.504119,0,0,OAB:SA:CTP1002006,Europe/Paris,,OAB, +OAB:SP:1057799,1,"J 15",43.540497,5.491571,0,0,OAB:SA:CTP1002008,Europe/Paris,,OAB, +OAB:SP:1057800,1,"J 16",43.551724,5.542966,0,0,OAB:SA:CTP1002010,Europe/Paris,,OAB, +OAB:SP:1057801,1,"J 17",43.552356,5.538725,0,0,OAB:SA:CTP1002011,Europe/Paris,,OAB, +OAB:SP:1057802,1,"J 18",43.552585,5.536319,0,0,OAB:SA:CTP1002012,Europe/Paris,,OAB, +OAB:SP:1057803,1,"J 19",43.541813,5.496327,0,0,OAB:SA:CTP1002013,Europe/Paris,,OAB, +OAB:SP:1057804,1,"VIOLETTE",43.534706,5.451235,0,0,OAB:SA:CTP1000685,Europe/Paris,,OAB, +OAB:SP:1057805,1,"ROMANA",43.581978,5.416285,0,0,OAC:SA:CTP133981,Europe/Paris,,OAB, +OAB:SP:1057806,1,"ROMANA",43.582035,5.416227,0,0,OAC:SA:CTP133981,Europe/Paris,,OAB, +OAB:SP:1057807,1,"FERRATO",43.563069,5.459657,0,0,OAB:SA:CTP1057807,Europe/Paris,,OAB, +OAB:SP:1057808,1,"BOUTIERE",43.541362,5.438942,0,0,OAB:SA:CTP1014707,Europe/Paris,,OAB, +OAB:SP:1057809,1,"ROCHER DU DRAGON",43.533104,5.440177,0,0,OAC:SA:CTP134297,Europe/Paris,,OAB, +OAB:SP:1057810,1,"FONTFIGUIERE",43.538147,5.421212,0,0,OAB:SA:CTP1057810,Europe/Paris,,OAB, +OAB:SP:1057811,1,"ITALIE",43.526859,5.452324,0,0,OAB:SA:CTP1057811,Europe/Paris,,OAB, +OAB:SP:1057812,1,"MUSEE GRANET",43.526058,5.453011,0,0,OAB:SA:CTP1057812,Europe/Paris,,OAB, +OAB:SP:1057813,1,"MOURET GARE ROUTIERE",43.522881,5.436643,0,0,OAB:SA:CTP1057813,Europe/Paris,,OAB, +OAB:SP:1057814,1,"EUROPOLE ARBOIS",43.490417,5.332002,0,0,OAC:SA:CTP132288,Europe/Paris,,OAB, +OAB:SP:1057816,1,"PISCINE YVES BLANC",43.526402,5.460345,0,0,OAB:SA:CTP1057816,Europe/Paris,,OAB, +OAB:SP:1057819,1,"COUTON",43.503254,5.390903,0,0,OAC:SA:CTP120157,Europe/Paris,,OAB, +OAB:SP:1057822,1,"REQUIER",43.500274,5.382537,0,0,OAB:SA:CTP1057592,Europe/Paris,,OAB, +OAB:SP:1057823,1,"ZONE ARTISANALE",43.493168,5.369531,0,0,OAC:SA:CTP123651,Europe/Paris,,OAB, +OAB:SP:1057824,1,"SAINT-MITRE DES CHAMPS",43.536713,5.419093,0,0,OAB:SA:CTP1057824,Europe/Paris,,OAB, +OAB:SP:1057825,1,"SAINT-MITRE DES CHAMPS",43.536141,5.417201,0,0,OAB:SA:CTP1057824,Europe/Paris,,OAB, +OAB:SP:1057826,1,"VENELLES MAS D'AUBERE",43.570919,5.468367,0,0,OAC:SA:CTP124556,Europe/Paris,,OAB, +OAB:SP:1057827,1,"VENELLES MAS D'AUBERE",43.570919,5.468367,0,0,OAC:SA:CTP124556,Europe/Paris,,OAB, +OAB:SP:1057833,1,"Cc BOUFFAN",43.534305,5.416285,0,0,OAB:SA:CTP1057833,Europe/Paris,,OAB, +OAB:SP:1057834,1,"Cc BOUFFAN",43.534248,5.416342,0,0,OAB:SA:CTP1057833,Europe/Paris,,OAB, +OAB:SP:1057835,1,"JARDINS D' ESTELLE",43.52938,5.410498,0,0,OAB:SA:CTP1000348,Europe/Paris,,OAB, +OAB:SP:1057836,1,"BOURSE",43.532208,5.445218,0,0,OAB:SA:CTP1010021,Europe/Paris,,OAB, +OAB:SP:1057837,1,"GIRELLES",43.528751,5.40666,0,0,OAB:SA:CTP1057837,Europe/Paris,,OAB, +OAB:SP:1057838,1,"GIRELLES",43.528866,5.406487,0,0,OAB:SA:CTP1057837,Europe/Paris,,OAB, +OAB:SP:1057839,1,"LEGROS",43.523651,5.435192,0,0,OAB:SA:CTP1057839,Europe/Paris,,OAB, +OAB:SP:1057840,1,"LEGROS",43.523251,5.435078,0,0,OAB:SA:CTP1057839,Europe/Paris,,OAB, +OAB:SP:1057841,1,"MARECHAL LECLERC",43.521816,5.435078,0,0,OAB:SA:CTP1057841,Europe/Paris,,OAB, +OAB:SP:1057842,1,"MARECHAL LECLERC",43.521759,5.435135,0,0,OAB:SA:CTP1057841,Europe/Paris,,OAB, +OAB:SP:1057843,1,"MARECHAL JUIN",43.519695,5.433817,0,0,OAB:SA:CTP1057843,Europe/Paris,,OAB, +OAB:SP:1057844,1,"MARECHAL JUIN",43.519695,5.433931,0,0,OAB:SA:CTP1057843,Europe/Paris,,OAB, +OAB:SP:1057845,1,"HIPPOCAMPE",43.532246,5.416457,0,0,OAB:SA:CTP1057845,Europe/Paris,,OAB, +OAB:SP:1057846,1,"MOULIN DE TESTAS",43.516716,5.450834,0,0,OAB:SA:CTP1000108,Europe/Paris,,OAB, +OAB:SP:1057847,1,"PLAN D'AILLANE QUAI 10",43.498841,5.372682,0,0,OAB:SA:CTP1057847,Europe/Paris,,OAB, +OAB:SP:1057848,1,"ROBERT",43.52206,5.452469,0,0,OAB:SA:CTP1057848,Europe/Paris,,OAB, +OAB:SP:1057849,1,"ROBERT",43.522102,5.452037,0,0,OAB:SA:CTP1057848,Europe/Paris,,OAB, +OAB:SP:1057850,1,"ORAISON",43.521573,5.454051,0,0,OAB:SA:CTP1057850,Europe/Paris,,OAB, +OAB:SP:1057851,1,"ORAISON",43.521187,5.454558,0,0,OAB:SA:CTP1057850,Europe/Paris,,OAB, +OAB:SP:1057852,1,"CLG JAS DE BOUFFAN",43.525139,5.422644,0,0,OAC:SA:CTP120188,Europe/Paris,,OAB, +OAB:SP:1057853,1,"CLG JAS DE BOUFFAN",43.524968,5.422988,0,0,OAC:SA:CTP120188,Europe/Paris,,OAB, +OAB:SP:1057854,1,"PETITE MIGNARDE",43.567253,5.465731,0,0,OAC:SA:CTP124558,Europe/Paris,,OAB, +OAB:SP:1057855,1,"PETITE MIGNARDE",43.567368,5.465731,0,0,OAC:SA:CTP124558,Europe/Paris,,OAB, +OAB:SP:1057856,1,"LES FLORALIES",43.575962,5.469169,0,0,OAC:SA:CTP122719,Europe/Paris,,OAB, +OAB:SP:1057857,1,"LES FLORALIES",43.576076,5.469054,0,0,OAC:SA:CTP122719,Europe/Paris,,OAB, +OAB:SP:1057858,1,"LES LOGISSONS",43.580315,5.471117,0,0,OAC:SA:CTP122723,Europe/Paris,,OAB, +OAB:SP:1057859,1,"LES LOGISSONS",43.580257,5.470945,0,0,OAC:SA:CTP122723,Europe/Paris,,OAB, +OAB:SP:1057860,1,"TOULOUBRE",43.582378,5.472435,0,0,OAC:SA:CTP122725,Europe/Paris,,OAB, +OAB:SP:1057861,1,"TOULOUBRE",43.582779,5.472721,0,0,OAC:SA:CTP122725,Europe/Paris,,OAB, +OAB:SP:1057862,1,"ROND-POINT DE LA GARE",43.587536,5.475987,0,0,OAC:SA:CTP122721,Europe/Paris,,OAB, +OAB:SP:1057863,1,"ROND-POINT DE LA GARE",43.587593,5.476388,0,0,OAC:SA:CTP122721,Europe/Paris,,OAB, +OAB:SP:1057864,1,"QUATRE TOURS",43.590572,5.478622,0,0,OAC:SA:CTP122727,Europe/Paris,,OAB, +OAB:SP:1057865,1,"QUATRE TOURS",43.590687,5.479081,0,0,OAC:SA:CTP122727,Europe/Paris,,OAB, +OAB:SP:1057866,1,"CABASSOLS",43.593094,5.481545,0,0,OAC:SA:CTP122729,Europe/Paris,,OAB, +OAB:SP:1057867,1,"CABASSOLS",43.593037,5.481659,0,0,OAC:SA:CTP122729,Europe/Paris,,OAB, +OAB:SP:1057868,1,"GRANDE TERRE",43.600425,5.486758,0,0,OAB:SA:CTP1057868,Europe/Paris,,OAB, +OAB:SP:1057869,1,"PUYRICARD CENTRE",43.580544,5.422531,0,0,OAC:SA:CTP134000,Europe/Paris,,OAB, +OAB:SP:1057870,1,"PUYRICARD CENTRE",43.580543,5.422587,0,0,OAC:SA:CTP134000,Europe/Paris,,OAB, +OAB:SP:1057871,1,"CHEMIN DU SEUIL",43.5857,5.413134,0,0,OAC:SA:CTP132755,Europe/Paris,,OAB, +OAB:SP:1057872,1,"REPARADE",43.587307,5.432786,0,0,OAB:SA:CTP1057872,Europe/Paris,,OAB, +OAB:SP:1057873,1,"REPARADE",43.587192,5.432671,0,0,OAB:SA:CTP1057872,Europe/Paris,,OAB, +OAB:SP:1057874,1,"ECOLE VAL SAINT-ANDRE",43.518532,5.466893,0,0,OAB:SA:CTP1057874,Europe/Paris,,OAB, +OAB:SP:1057875,1,"ECOLE VAL SAINT-ANDRE",43.518765,5.467203,0,0,OAB:SA:CTP1057874,Europe/Paris,,OAB, +OAB:SP:1057876,1,"VENDOME",43.531273,5.441953,0,0,OAC:SA:CTP133938,Europe/Paris,,OAB, +OAB:SP:1057877,1,"AMADO",43.534996,5.416858,0,0,OAB:SA:CTP1057877,Europe/Paris,,OAB, +OAB:SP:1057878,1,"AMADO",43.53511,5.416915,0,0,OAB:SA:CTP1057877,Europe/Paris,,OAB, +OAB:SP:1057879,1,"ESPERANTISTES",43.538318,5.457079,0,0,OAC:SA:CTP134082,Europe/Paris,,OAB, +OAB:SP:1057880,1,"ESPERANTISTES",43.53872,5.457079,0,0,OAC:SA:CTP134082,Europe/Paris,,OAB, +OAB:SP:1057881,1,"PONT DE L'ARC - MAIRIE",43.509548,5.438196,0,0,OAB:SA:CTP1057881,Europe/Paris,,OAB, +OAB:SP:1057883,1,"CLG SAINT-EUTROPE",43.540383,5.452438,0,0,OAC:SA:CTP123805,Europe/Paris,,OAB, +OAB:SP:1057884,1,"SAINT-DONAT",43.543476,5.452553,0,0,OAB:SA:CTP1057884,Europe/Paris,,OAB, +OAB:SP:1057888,1,"BELGES",43.524681,5.443787,0,0,OAB:SA:CTP1014867,Europe/Paris,,OAB, +OAB:SP:1057889,1,"SAINT-THOMAS",43.531441,5.457079,0,0,OAC:SA:CTP124829,Europe/Paris,,OAB, +OAB:SP:1057890,1,"LES CIGALES",43.51815,5.458913,0,0,OAB:SA:CTP1057890,Europe/Paris,,OAB, +OAB:SP:1057891,1,"LES CIGALES",43.51815,5.458913,0,0,OAB:SA:CTP1057890,Europe/Paris,,OAB, +OAB:SP:1057892,1,"8 Mai 1945",43.523021,5.433015,0,0,OAB:SA:CTP1000168,Europe/Paris,,OAB, +OAB:SP:1057893,1,"MEYRAN",43.511791,5.453871,0,0,OAB:SA:CTP1057893,Europe/Paris,,OAB, +OAB:SP:1057894,1,"MEYRAN",43.511677,5.453641,0,0,OAB:SA:CTP1057893,Europe/Paris,,OAB, +OAB:SP:1057895,1,"NOVOTEL",43.511791,5.45748,0,0,OAB:SA:CTP1057895,Europe/Paris,,OAB, +OAB:SP:1057896,1,"NOVOTEL",43.511848,5.457538,0,0,OAB:SA:CTP1057895,Europe/Paris,,OAB, +OAB:SP:1057897,1,"PEROUSE",43.524738,5.435822,0,0,OAB:SA:CTP1057897,Europe/Paris,,OAB, +OAB:SP:1057898,1,"MONTAIGUET",43.504456,5.446078,0,0,OAB:SA:CTP1057898,Europe/Paris,,OAB, +OAB:SP:1057899,1,"MONTAIGUET",43.504627,5.446365,0,0,OAB:SA:CTP1057898,Europe/Paris,,OAB, +OAB:SP:1057900,1,"ENSOLEILLE",43.512535,5.423676,0,0,OAB:SA:CTP1057900,Europe/Paris,,OAB, +OAB:SP:1057901,1,"BULL",43.485779,5.34243,0,0,OAB:SA:CTP1057901,Europe/Paris,,OAB, +OAB:SP:1057902,1,"BULL",43.485664,5.342431,0,0,OAB:SA:CTP1057901,Europe/Paris,,OAB, +OAB:SP:1057903,1,"E.BRUNET",43.480736,5.426369,0,0,OAB:SA:CTP1000222,Europe/Paris,,OAB, +OAB:SP:1057904,1,"FONTCOUVERTE",43.480564,5.428603,0,0,OAB:SA:CTP1000223,Europe/Paris,,OAB, +OAB:SP:1057905,1,"STATION",43.594925,5.482804,0,0,OAC:SA:CTP134468,Europe/Paris,,OAB, +OAB:SP:1057906,1,"CAMP DES MILLES",43.503139,5.381563,0,0,OAC:SA:CTP134027,Europe/Paris,,OAB, +OAB:SP:1057907,1,"CAMP DES MILLES",43.503139,5.381392,0,0,OAC:SA:CTP134027,Europe/Paris,,OAB, +OAB:SP:1057908,1,"VIVIEN",43.528119,5.405169,0,0,OAB:SA:CTP1057908,Europe/Paris,,OAB, +OAB:SP:1057909,1,"VIVIEN",43.528175,5.404997,0,0,OAB:SA:CTP1057908,Europe/Paris,,OAB, +OAB:SP:1057910,1,"ROND-POINT DE GALICE",43.530926,5.417029,0,0,OAB:SA:CTP1057910,Europe/Paris,,OAB, +OAB:SP:1057912,1,"ARC MEYRAN ZOLA",43.511619,5.461663,0,0,OAB:SA:CTP1057751,Europe/Paris,,OAB, +OAB:SP:1057914,1,"PONT DE LA FIGUIERE",43.51554,5.434648,0,0,OAB:SA:CTP1057914,Europe/Paris,,OAB, +OAB:SP:1057915,1,"PONT DE LA FIGUIERE",43.515567,5.434925,0,0,OAB:SA:CTP1057914,Europe/Paris,,OAB, +OAB:SP:1057918,1,"CIM. ST-PIERRE",43.525482,5.460173,0,0,OAB:SA:CTP1057452,Europe/Paris,,OAB, +OAB:SP:1057921,1,"PARKING LES TROIS BONS DIEUX",43.535225,5.476216,0,0,OAC:SA:CTP134125,Europe/Paris,,OAB, +OAB:SP:1057922,1,"LES LAUVES SUD",43.555336,5.443787,0,0,OAC:SA:CTP132903,Europe/Paris,,OAB, +OAB:SP:1057923,1,"VERTE CAMPAGNE",43.575847,5.424936,0,0,OAC:SA:CTP133951,Europe/Paris,,OAB, +OAB:SP:1057925,1,"PALERNE",43.577392,5.422072,0,0,OAC:SA:CTP132845,Europe/Paris,,OAB, +OAB:SP:1057926,1,"PALERNE",43.577393,5.422244,0,0,OAC:SA:CTP132845,Europe/Paris,,OAB, +OAB:SP:1057927,1,"GRAND DOMAINE",43.581864,5.4113,0,0,OAC:SA:CTP132772,Europe/Paris,,OAB, +OAB:SP:1057931,1,"RECTORAT",43.522365,5.44757,0,0,OAB:SA:CTP1057264,Europe/Paris,,OAB, +OAB:SP:1057932,1,"RECTORAT",43.522388,5.446537,0,0,OAB:SA:CTP1057264,Europe/Paris,,OAB, +OAB:SP:1057937,1,"I.A.E.",43.586964,5.423561,0,0,OAB:SA:CTP1000548,Europe/Paris,,OAB, +OAB:SP:1057940,1,"MAGNAN",43.514713,5.470257,0,0,OAB:SA:CTP1057570,Europe/Paris,,OAB, +OAB:SP:1057941,1,"D 9",43.581634,5.430207,0,0,OAB:SA:CTP1057941,Europe/Paris,,OAB, +OAB:SP:1057942,1,"J 15 BIS",43.541698,5.493176,0,0,OAB:SA:CTP1057942,Europe/Paris,,OAB, +OAB:SP:1057943,1,"GUIRAMANDE SILO",43.509457,5.446972,0,0,OAB:SA:CTP1057943,Europe/Paris,,OAB, +OAB:SP:1057944,1,"GUIRAMANDE SILO",43.509304,5.44692,0,0,OAB:SA:CTP1057943,Europe/Paris,,OAB, +OAB:SP:1057945,1,"BOURGET",43.519615,5.456453,0,0,OAB:SA:CTP1057945,Europe/Paris,,OAB, +OAB:SP:1057946,1,"BOURGET",43.520031,5.455975,0,0,OAB:SA:CTP1057945,Europe/Paris,,OAB, +OAB:SP:1057947,1,"PLAINE DES DES",43.488529,5.435192,0,0,OAB:SA:CTP1057947,Europe/Paris,,OAB, +OAB:SP:1057948,1,"PLAINE DES DES",43.488472,5.435364,0,0,OAB:SA:CTP1057947,Europe/Paris,,OAB, +OAB:SP:1057949,1,"GIANOTTI",43.534423,5.447855,0,0,OAB:SA:CTP1057949,Europe/Paris,,OAB, +OAB:SP:1057950,1,"D 19",43.559059,5.448657,0,0,OAB:SA:CTP1057950,Europe/Paris,,OAB, +OAB:SP:1057951,1,"E 15",43.558315,5.451351,0,0,OAB:SA:CTP1057951,Europe/Paris,,OAB, +OAB:SP:1057952,1,"E 12",43.561294,5.460689,0,0,OAB:SA:CTP1057952,Europe/Paris,,OAB, +OAB:SP:1057953,1,"PUYRICARD C 22",43.584213,5.415139,0,0,OAB:SA:CTP1000471,Europe/Paris,,OAB, +OAB:SP:1057954,1,"FERRATO",43.563069,5.459657,0,0,OAB:SA:CTP1057807,Europe/Paris,,OAB, +OAB:SP:1057955,1,"PONT ROUT",43.547486,5.413305,0,0,OAB:SA:CTP1057955,Europe/Paris,,OAB, +OAB:SP:1057957,1,"PAUL JULIEN",43.512592,5.48206,0,0,OAB:SA:CTP1057957,Europe/Paris,,OAB, +OAB:SP:1057958,1,"PAUL JULIEN",43.512478,5.482003,0,0,OAB:SA:CTP1057957,Europe/Paris,,OAB, +OAB:SP:1057960,1,"P+R KRYPTON QUAI 8",43.511287,5.448992,0,0,OAC:SA:CTP134159,Europe/Paris,,OAB, +OAB:SP:1057961,1,"ROUTE DE MOULIN",43.597389,5.450719,0,0,OAC:SA:CTP132876,Europe/Paris,,OAB, +OAB:SP:1057962,1,"LEVESQUE",43.597503,5.454787,0,0,OAC:SA:CTP132877,Europe/Paris,,OAB, +OAB:SP:1057963,1,"PRESIDENTE",43.590382,5.457469,0,0,OAB:SA:CTP1057963,Europe/Paris,,OAB, +OAB:SP:1057964,1,"PRESIDENTE",43.50938,5.457469,0,0,OAB:SA:CTP1057964,Europe/Paris,,OAB, +OAB:SP:1057965,1,"MARCEL PAGNOL",43.526645,5.423887,0,0,OAC:SA:CTP124642,Europe/Paris,,OAB, +OAB:SP:1057966,1,"MARCEL PAGNOL",43.526192,5.423975,0,0,OAC:SA:CTP124642,Europe/Paris,,OAB, +OAB:SP:1057967,1,"LEON BLUM",43.524078,5.431244,0,0,OAB:SA:CTP1057967,Europe/Paris,,OAB, +OAB:SP:1057968,1,"ADM ZOLA QUAI 1",43.51173,5.461555,0,0,OAB:SA:CTP1057968,Europe/Paris,,OAB, +OAB:SP:1057969,1,"ADM ZOLA QUAI 2",43.511669,5.461527,0,0,OAB:SA:CTP1057969,Europe/Paris,,OAB, +OAB:SP:1057970,1,"ADM ZOLA QUAI 3",43.511623,5.461499,0,0,OAB:SA:CTP1057970,Europe/Paris,,OAB, +OAB:SP:1057971,1,"COTON ROUGE",43.513278,5.453126,0,0,OAC:SA:CTP134142,Europe/Paris,,OAB, +OAB:SP:1057972,1,"COTON ROUGE",43.513393,5.452095,0,0,OAC:SA:CTP134142,Europe/Paris,,OAB, +OAB:SP:1057973,1,"DOCTEUR AURIENTIS",43.530411,5.458569,0,0,OAC:SA:CTP132570,Europe/Paris,,OAB, +OAB:SP:1057974,1,"POMPIDOU",43.528332,5.438944,0,0,OAC:SA:CTP134445,Europe/Paris,,OAB, +OAB:SP:1057975,1,"COUTERON EGLISE",43.599224,5.444531,0,0,OAB:SA:CTP1000538,Europe/Paris,,OAB, +OAB:SP:1057976,1,"BEAUVALLON",43.541436,5.439327,0,0,OAB:SA:CTP1057976,Europe/Paris,,OAB, +OAC:SP:120015,1,"Gambetta",43.524746,5.454518,0,0,OAC:SA:CTP120015,Europe/Paris,,OAC, +OAC:SP:120016,1,"Saint Jean",43.525112,5.454578,0,0,OAC:SA:CTP120016,Europe/Paris,,OAC, +OAC:SP:120017,1,"Miollis",43.528024,5.455184,0,0,OAC:SA:CTP120017,Europe/Paris,,OAC, +OAC:SP:120026,1,"Briand",43.532648,5.448872,0,0,OAC:SA:CTP120026,Europe/Paris,,OAC, +OAC:SP:120031,1,"Sous Prefecture",43.519761,5.442672,0,0,OAC:SA:CTP120031,Europe/Paris,,OAC, +OAC:SP:120032,1,"Sous Prefecture",43.519746,5.442773,0,0,OAC:SA:CTP120031,Europe/Paris,,OAC, +OAC:SP:120041,1,"Pont de l Arc",43.510219,5.441075,0,0,OAC:SA:CTP120041,Europe/Paris,,OAC, +OAC:SP:120042,1,"Pont de l Arc",43.509432,5.440721,0,0,OAC:SA:CTP120041,Europe/Paris,,OAC, +OAC:SP:120045,1,"L Armeliere",43.510096,5.436172,0,0,OAC:SA:CTP120045,Europe/Paris,,OAC, +OAC:SP:120051,1,"Mere de Dieu Brulee",43.505274,5.435469,0,0,OAC:SA:CTP120051,Europe/Paris,,OAC, +OAC:SP:120052,1,"Mere de Dieu Brulee",43.505085,5.435552,0,0,OAC:SA:CTP120051,Europe/Paris,,OAC, +OAC:SP:120059,1,"Beausoleil",43.514361,5.464193,0,0,OAC:SA:CTP120059,Europe/Paris,,OAC, +OAC:SP:120068,1,"Sainte Anne",43.521329,5.458655,0,0,OAC:SA:CTP120068,Europe/Paris,,OAC, +OAC:SP:120071,1,"Gautier",43.521025,5.455406,0,0,OAC:SA:CTP120071,Europe/Paris,,OAC, +OAC:SP:120074,1,"Saint Jerome",43.517557,5.459825,0,0,OAC:SA:CTP120074,Europe/Paris,,OAC, +OAC:SP:120076,1,"Tour d Aygosi",43.519697,5.461396,0,0,OAC:SA:CTP120076,Europe/Paris,,OAC, +OAC:SP:120079,1,"G.R. Belges",43.523895,5.442974,0,0,OAC:SA:CTP120079,Europe/Paris,,OAC, +OAC:SP:120080,1,"Moulin",43.535791,5.45769,0,0,OAC:SA:CTP120080,Europe/Paris,,OAC, +OAC:SP:120081,1,"Moulin",43.536456,5.45761,0,0,OAC:SA:CTP120080,Europe/Paris,,OAC, +OAC:SP:120091,1,"Les Platanes",43.555684,5.459501,0,0,OAC:SA:CTP120091,Europe/Paris,,OAC, +OAC:SP:120092,1,"Les Platanes",43.556101,5.459889,0,0,OAC:SA:CTP120091,Europe/Paris,,OAC, +OAC:SP:120093,1,"Arts et Metiers",43.529746,5.454002,0,0,OAC:SA:CTP120093,Europe/Paris,,OAC, +OAC:SP:120095,1,"Lycee Cezanne",43.533021,5.458912,0,0,OAC:SA:CTP120095,Europe/Paris,,OAC, +OAC:SP:120096,1,"Lycee Cezanne",43.533901,5.459278,0,0,OAC:SA:CTP120095,Europe/Paris,,OAC, +OAC:SP:120099,1,"Pt Roquefavour",43.535709,5.469507,0,0,OAC:SA:CTP120099,Europe/Paris,,OAC, +OAC:SP:120100,1,"Pt Roquefavour",43.535318,5.468735,0,0,OAC:SA:CTP120099,Europe/Paris,,OAC, +OAC:SP:120106,1,"Minimes",43.528601,5.436269,0,0,OAC:SA:CTP120106,Europe/Paris,,OAC, +OAC:SP:120111,1,"Amadour",43.533174,5.427011,0,0,OAC:SA:CTP120111,Europe/Paris,,OAC, +OAC:SP:120112,1,"Amadour",43.533047,5.42692,0,0,OAC:SA:CTP120111,Europe/Paris,,OAC, +OAC:SP:120113,1,"La Raymonde",43.534753,5.423461,0,0,OAC:SA:CTP120113,Europe/Paris,,OAC, +OAC:SP:120114,1,"La Raymonde",43.535,5.423449,0,0,OAC:SA:CTP120113,Europe/Paris,,OAC, +OAC:SP:120115,1,"Saint Mitre",43.536167,5.421553,0,0,OAC:SA:CTP120115,Europe/Paris,,OAC, +OAC:SP:120116,1,"Saint Mitre",43.536098,5.42203,0,0,OAC:SA:CTP120115,Europe/Paris,,OAC, +OAC:SP:120117,1,"Pontier",43.532871,5.436892,0,0,OAC:SA:CTP120117,Europe/Paris,,OAC, +OAC:SP:120118,1,"Pontier",43.532792,5.437153,0,0,OAC:SA:CTP120117,Europe/Paris,,OAC, +OAC:SP:120125,1,"Rapine",43.552148,5.424336,0,0,OAC:SA:CTP120125,Europe/Paris,,OAC, +OAC:SP:120126,1,"Rapine",43.552758,5.423689,0,0,OAC:SA:CTP120125,Europe/Paris,,OAC, +OAC:SP:120127,1,"Celony",43.555723,5.419512,0,0,OAC:SA:CTP120127,Europe/Paris,,OAC, +OAC:SP:120128,1,"Celony",43.555816,5.419611,0,0,OAC:SA:CTP120127,Europe/Paris,,OAC, +OAC:SP:120131,1,"La Calade",43.568344,5.398757,0,0,OAC:SA:CTP120131,Europe/Paris,,OAC, +OAC:SP:120137,1,"Les Freres Gris",43.496256,5.433563,0,0,OAC:SA:CTP120137,Europe/Paris,,OAC, +OAC:SP:120138,1,"Les Freres Gris",43.496036,5.43334,0,0,OAC:SA:CTP120137,Europe/Paris,,OAC, +OAC:SP:120139,1,"Bon Rencontre",43.492222,5.429846,0,0,OAC:SA:CTP120139,Europe/Paris,,OAC, +OAC:SP:120140,1,"Bon Rencontre",43.491927,5.429222,0,0,OAC:SA:CTP120139,Europe/Paris,,OAC, +OAC:SP:120141,1,"La Blaque",43.489315,5.425674,0,0,OAC:SA:CTP120141,Europe/Paris,,OAC, +OAC:SP:120142,1,"La Blaque",43.489226,5.425416,0,0,OAC:SA:CTP120141,Europe/Paris,,OAC, +OAC:SP:120143,1,"Chapuis",43.486822,5.422249,0,0,OAC:SA:CTP120143,Europe/Paris,,OAC, +OAC:SP:120144,1,"Chapuis",43.487129,5.422412,0,0,OAC:SA:CTP120143,Europe/Paris,,OAC, +OAC:SP:120145,1,"Luynes Sud",43.483661,5.417744,0,0,OAC:SA:CTP120145,Europe/Paris,,OAC, +OAC:SP:120146,1,"Luynes Sud",43.483958,5.418049,0,0,OAC:SA:CTP120145,Europe/Paris,,OAC, +OAC:SP:120149,1,"Rampelin",43.477332,5.414208,0,0,OAC:SA:CTP120149,Europe/Paris,,OAC, +OAC:SP:120150,1,"Rampelin",43.477922,5.4143,0,0,OAC:SA:CTP120149,Europe/Paris,,OAC, +OAC:SP:120151,1,"Trois Pigeons",43.472988,5.409781,0,0,OAC:SA:CTP120151,Europe/Paris,,OAC, +OAC:SP:120154,1,"Les Granettes",43.535042,5.393681,0,0,OAC:SA:CTP120154,Europe/Paris,,OAC, +OAC:SP:120155,1,"Les Granettes",43.535154,5.394384,0,0,OAC:SA:CTP120154,Europe/Paris,,OAC, +OAC:SP:120156,1,"Cc Les Milles",43.504334,5.394764,0,0,OAC:SA:CTP120156,Europe/Paris,,OAC, +OAC:SP:120157,1,"Couton",43.503273,5.390934,0,0,OAC:SA:CTP120157,Europe/Paris,,OAC, +OAC:SP:120159,1,"Mairie Milles",43.503309,5.385765,0,0,OAC:SA:CTP120159,Europe/Paris,,OAC, +OAC:SP:120162,1,"Requier",43.500263,5.382528,0,0,OAC:SA:CTP120162,Europe/Paris,,OAC, +OAC:SP:120163,1,"Requier",43.50074,5.381826,0,0,OAC:SA:CTP120162,Europe/Paris,,OAC, +OAC:SP:120168,1,"Foucault",43.487919,5.359257,0,0,OAC:SA:CTP120168,Europe/Paris,,OAC, +OAC:SP:120169,1,"Foucault",43.488071,5.359322,0,0,OAC:SA:CTP120168,Europe/Paris,,OAC, +OAC:SP:120170,1,"Pole d Activites",43.491232,5.373508,0,0,OAC:SA:CTP120170,Europe/Paris,,OAC, +OAC:SP:120171,1,"Parc Club Golf",43.485506,5.361706,0,0,OAC:SA:CTP120171,Europe/Paris,,OAC, +OAC:SP:120172,1,"Parc Club Golf",43.485163,5.362517,0,0,OAC:SA:CTP120171,Europe/Paris,,OAC, +OAC:SP:120175,1,"Vallon des Mourgues",43.550119,5.390815,0,0,OAC:SA:CTP120175,Europe/Paris,,OAC, +OAC:SP:120176,1,"Vallon des Mourgues",43.550123,5.390543,0,0,OAC:SA:CTP120175,Europe/Paris,,OAC, +OAC:SP:120188,1,"CLG Jas Bouffan",43.525245,5.422209,0,0,OAC:SA:CTP120188,Europe/Paris,,OAC, +OAC:SP:120189,1,"Corsy",43.528163,5.42988,0,0,OAC:SA:CTP120189,Europe/Paris,,OAC, +OAC:SP:120512,1,"La Mounine",43.462189,5.406786,0,0,OAC:SA:CTP120512,Europe/Paris,,OAC, +OAC:SP:120513,1,"La Mounine",43.462769,5.4075,0,0,OAC:SA:CTP120512,Europe/Paris,,OAC, +OAC:SP:120514,1,"Centre Commercial Rhin et Danube",43.459777,5.405239,0,0,OAC:SA:CTP120514,Europe/Paris,,OAC, +OAC:SP:120515,1,"Centre Commercial Rhin et Danube",43.459926,5.405527,0,0,OAC:SA:CTP120514,Europe/Paris,,OAC, +OAC:SP:120518,1,"La Croix d Or",43.452528,5.400483,0,0,OAC:SA:CTP120518,Europe/Paris,,OAC, +OAC:SP:120519,1,"La Croix d Or",43.452341,5.400166,0,0,OAC:SA:CTP120518,Europe/Paris,,OAC, +OAC:SP:120520,1,"Pont de Bouc",43.447873,5.3975,0,0,OAC:SA:CTP120520,Europe/Paris,,OAC, +OAC:SP:120521,1,"Pont de Bouc",43.447913,5.397286,0,0,OAC:SA:CTP120520,Europe/Paris,,OAC, +OAC:SP:120522,1,"Plan Marseillais",43.44382,5.397628,0,0,OAC:SA:CTP120522,Europe/Paris,,OAC, +OAC:SP:120523,1,"Plan Marseillais",43.443609,5.397502,0,0,OAC:SA:CTP120522,Europe/Paris,,OAC, +OAC:SP:120526,1,"Violesi",43.43716,5.398882,0,0,OAC:SA:CTP120526,Europe/Paris,,OAC, +OAC:SP:120527,1,"Violesi",43.438072,5.39753,0,0,OAC:SA:CTP120526,Europe/Paris,,OAC, +OAC:SP:120528,1,"Petites Bastides",43.432113,5.395719,0,0,OAC:SA:CTP120528,Europe/Paris,,OAC, +OAC:SP:120529,1,"Petites Bastides",43.433289,5.396411,0,0,OAC:SA:CTP120528,Europe/Paris,,OAC, +OAC:SP:120530,1,"Les Chabauds",43.427943,5.389473,0,0,OAC:SA:CTP120530,Europe/Paris,,OAC, +OAC:SP:120531,1,"Les Chabauds",43.428056,5.389474,0,0,OAC:SA:CTP120530,Europe/Paris,,OAC, +OAC:SP:120532,1,"La Malle",43.426417,5.387991,0,0,OAC:SA:CTP120532,Europe/Paris,,OAC, +OAC:SP:120533,1,"La Malle",43.426453,5.388154,0,0,OAC:SA:CTP120532,Europe/Paris,,OAC, +OAC:SP:120536,1,"Pin Porte Rouge",43.419709,5.379876,0,0,OAC:SA:CTP120536,Europe/Paris,,OAC, +OAC:SP:120537,1,"Pin Porte Rouge",43.419654,5.380036,0,0,OAC:SA:CTP120536,Europe/Paris,,OAC, +OAC:SP:120539,1,"Les Tilleuls",43.436641,5.417815,0,0,OAC:SA:CTP120539,Europe/Paris,,OAC, +OAC:SP:120540,1,"Les Tilleuls",43.437288,5.41748,0,0,OAC:SA:CTP120539,Europe/Paris,,OAC, +OAC:SP:120541,1,"La Salle Les Marronniers",43.43999,5.423583,0,0,OAC:SA:CTP120541,Europe/Paris,,OAC, +OAC:SP:120542,1,"La Salle Les Marronniers",43.439893,5.423635,0,0,OAC:SA:CTP120541,Europe/Paris,,OAC, +OAC:SP:120547,1,"Plein Soleil",43.447202,5.416113,0,0,OAC:SA:CTP120547,Europe/Paris,,OAC, +OAC:SP:120548,1,"Plein Soleil",43.447206,5.416687,0,0,OAC:SA:CTP120547,Europe/Paris,,OAC, +OAC:SP:120557,1,"Malbergue",43.450943,5.422991,0,0,OAC:SA:CTP120557,Europe/Paris,,OAC, +OAC:SP:120558,1,"Malbergue",43.451002,5.423078,0,0,OAC:SA:CTP120557,Europe/Paris,,OAC, +OAC:SP:120559,1,"Ecole des Pins",43.452428,5.417255,0,0,OAC:SA:CTP120559,Europe/Paris,,OAC, +OAC:SP:120563,1,"Collet Blanc",43.447578,5.438136,0,0,OAC:SA:CTP120563,Europe/Paris,,OAC, +OAC:SP:120565,1,"Cougnaou",43.446514,5.410984,0,0,OAC:SA:CTP120565,Europe/Paris,,OAC, +OAC:SP:120569,1,"La Babiole",43.436281,5.404224,0,0,OAC:SA:CTP120569,Europe/Paris,,OAC, +OAC:SP:120570,1,"La Babiole",43.436045,5.403711,0,0,OAC:SA:CTP120569,Europe/Paris,,OAC, +OAC:SP:120571,1,"La Salle Le Merle",43.438081,5.424545,0,0,OAC:SA:CTP120571,Europe/Paris,,OAC, +OAC:SP:120573,1,"Beausoleil",43.464621,5.414184,0,0,OAC:SA:CTP120573,Europe/Paris,,OAC, +OAC:SP:120577,1,"Chateaubriand",43.444228,5.41712,0,0,OAC:SA:CTP120577,Europe/Paris,,OAC, +OAC:SP:120579,1,"Clos des Ecrivains",43.44516,5.43196,0,0,OAC:SA:CTP120579,Europe/Paris,,OAC, +OAC:SP:120580,1,"Clos des Pins",43.458736,5.396164,0,0,OAC:SA:CTP120580,Europe/Paris,,OAC, +OAC:SP:120585,1,"La Cypriere",43.459336,5.416751,0,0,OAC:SA:CTP120585,Europe/Paris,,OAC, +OAC:SP:120590,1,"Les Amandiers",43.4588,5.399491,0,0,OAC:SA:CTP120590,Europe/Paris,,OAC, +OAC:SP:120594,1,"Escandihado",43.458395,5.412275,0,0,OAC:SA:CTP120594,Europe/Paris,,OAC, +OAC:SP:120595,1,"Lou Cantounet",43.439512,5.4168,0,0,OAC:SA:CTP120595,Europe/Paris,,OAC, +OAC:SP:120596,1,"Montaury",43.43988,5.405392,0,0,OAC:SA:CTP120596,Europe/Paris,,OAC, +OAC:SP:120597,1,"Prevert",43.448821,5.431446,0,0,OAC:SA:CTP120597,Europe/Paris,,OAC, +OAC:SP:120598,1,"Sainte Anne",43.453893,5.414312,0,0,OAC:SA:CTP120598,Europe/Paris,,OAC, +OAC:SP:120662,1,"Centre Commercial de Calas",43.46522,5.352948,0,0,OAC:SA:CTP120662,Europe/Paris,,OAC, +OAC:SP:120663,1,"Centre Commercial de Calas",43.465269,5.352584,0,0,OAC:SA:CTP120662,Europe/Paris,,OAC, +OAC:SP:120664,1,"Tennis",43.463978,5.347038,0,0,OAC:SA:CTP120664,Europe/Paris,,OAC, +OAC:SP:120665,1,"Tennis",43.463881,5.346982,0,0,OAC:SA:CTP120664,Europe/Paris,,OAC, +OAC:SP:120667,1,"Domaine du Realtor",43.47042,5.333507,0,0,OAC:SA:CTP120667,Europe/Paris,,OAC, +OAC:SP:120672,1,"Saint Martin",43.446492,5.369356,0,0,OAC:SA:CTP120672,Europe/Paris,,OAC, +OAC:SP:120673,1,"Les Patelles",43.444676,5.372585,0,0,OAC:SA:CTP120673,Europe/Paris,,OAC, +OAC:SP:120674,1,"Les Patelles",43.444712,5.372661,0,0,OAC:SA:CTP120673,Europe/Paris,,OAC, +OAC:SP:120677,1,"Route de Rans",43.439488,5.379676,0,0,OAC:SA:CTP120677,Europe/Paris,,OAC, +OAC:SP:120678,1,"Route de Rans",43.439732,5.37956,0,0,OAC:SA:CTP120677,Europe/Paris,,OAC, +OAC:SP:120679,1,"Le Puits Neuf",43.440571,5.376728,0,0,OAC:SA:CTP120679,Europe/Paris,,OAC, +OAC:SP:120680,1,"Le Puits Neuf",43.440562,5.376174,0,0,OAC:SA:CTP120679,Europe/Paris,,OAC, +OAC:SP:120681,1,"Le Couladou",43.436057,5.379779,0,0,OAC:SA:CTP120681,Europe/Paris,,OAC, +OAC:SP:120682,1,"Le Couladou",43.437063,5.379627,0,0,OAC:SA:CTP120681,Europe/Paris,,OAC, +OAC:SP:120683,1,"Le Verger",43.429648,5.382829,0,0,OAC:SA:CTP120683,Europe/Paris,,OAC, +OAC:SP:120684,1,"Le Verger",43.428649,5.383622,0,0,OAC:SA:CTP120683,Europe/Paris,,OAC, +OAC:SP:120685,1,"La Trebillane",43.460841,5.356044,0,0,OAC:SA:CTP120685,Europe/Paris,,OAC, +OAC:SP:120686,1,"La Trebillane",43.46119,5.356912,0,0,OAC:SA:CTP120685,Europe/Paris,,OAC, +OAC:SP:120694,1,"L Eclair",43.46216,5.343824,0,0,OAC:SA:CTP120694,Europe/Paris,,OAC, +OAC:SP:120695,1,"Domaine de l Arbois",43.469804,5.343987,0,0,OAC:SA:CTP120695,Europe/Paris,,OAC, +OAC:SP:120781,1,"La Geinette",43.488381,5.597666,0,0,OAC:SA:CTP120781,Europe/Paris,,OAC, +OAC:SP:120782,1,"La Geinette",43.488566,5.597606,0,0,OAC:SA:CTP120781,Europe/Paris,,OAC, +OAC:SP:120784,1,"La Gavotte",43.488768,5.592945,0,0,OAC:SA:CTP120784,Europe/Paris,,OAC, +OAC:SP:120785,1,"La Tuilerie",43.490316,5.585199,0,0,OAC:SA:CTP120785,Europe/Paris,,OAC, +OAC:SP:120786,1,"La Tuilerie",43.490129,5.585399,0,0,OAC:SA:CTP120785,Europe/Paris,,OAC, +OAC:SP:120787,1,"Le Village N7",43.490056,5.56927,0,0,OAC:SA:CTP120787,Europe/Paris,,OAC, +OAC:SP:120788,1,"Le Village N7",43.490117,5.567645,0,0,OAC:SA:CTP120787,Europe/Paris,,OAC, +OAC:SP:120789,1,"La Cardeline N7",43.489001,5.552789,0,0,OAC:SA:CTP120789,Europe/Paris,,OAC, +OAC:SP:120790,1,"La Cardeline N7",43.488965,5.554152,0,0,OAC:SA:CTP120789,Europe/Paris,,OAC, +OAC:SP:120972,1,"Les Lampis",43.565254,5.358249,0,0,OAC:SA:CTP120972,Europe/Paris,,OAC, +OAC:SP:120974,1,"Vieille",43.568697,5.360035,0,0,OAC:SA:CTP120974,Europe/Paris,,OAC, +OAC:SP:120978,1,"La Cooperative",43.570525,5.355888,0,0,OAC:SA:CTP120978,Europe/Paris,,OAC, +OAC:SP:120979,1,"La Cooperative",43.570786,5.355022,0,0,OAC:SA:CTP120978,Europe/Paris,,OAC, +OAC:SP:120981,1,"Les Logissons",43.571212,5.362579,0,0,OAC:SA:CTP120981,Europe/Paris,,OAC, +OAC:SP:120982,1,"Les Logissons",43.571669,5.361094,0,0,OAC:SA:CTP120981,Europe/Paris,,OAC, +OAC:SP:120983,1,"Les Fourques",43.568942,5.368288,0,0,OAC:SA:CTP120983,Europe/Paris,,OAC, +OAC:SP:120984,1,"Les Fourques",43.569236,5.36786,0,0,OAC:SA:CTP120983,Europe/Paris,,OAC, +OAC:SP:120985,1,"Le Garage",43.567263,5.372119,0,0,OAC:SA:CTP120985,Europe/Paris,,OAC, +OAC:SP:120986,1,"Le Garage",43.567423,5.372065,0,0,OAC:SA:CTP120985,Europe/Paris,,OAC, +OAC:SP:120987,1,"Les Figons",43.559894,5.381514,0,0,OAC:SA:CTP120987,Europe/Paris,,OAC, +OAC:SP:120988,1,"De Gaulle",43.564675,5.377136,0,0,OAC:SA:CTP120988,Europe/Paris,,OAC, +OAC:SP:120989,1,"Bompard",43.5444,5.347983,0,0,OAC:SA:CTP120989,Europe/Paris,,OAC, +OAC:SP:120993,1,"Les Gres Hauts",43.550706,5.349548,0,0,OAC:SA:CTP120993,Europe/Paris,,OAC, +OAC:SP:120994,1,"Les Cardonniers",43.560398,5.352672,0,0,OAC:SA:CTP120994,Europe/Paris,,OAC, +OAC:SP:120995,1,"Les Cardonniers",43.561018,5.3528,0,0,OAC:SA:CTP120994,Europe/Paris,,OAC, +OAC:SP:120997,1,"Les Tasselles",43.558207,5.36204,0,0,OAC:SA:CTP120997,Europe/Paris,,OAC, +OAC:SP:121000,1,"Rastel",43.573858,5.344644,0,0,OAC:SA:CTP121000,Europe/Paris,,OAC, +OAC:SP:121134,1,"Halte Routiere",43.453418,5.558236,0,0,OAC:SA:CTP121134,Europe/Paris,,OAC, +OAC:SP:121137,1,"Jas de Bassas",43.444568,5.552507,0,0,OAC:SA:CTP121137,Europe/Paris,,OAC, +OAC:SP:121139,1,"La Barque",43.477477,5.538863,0,0,OAC:SA:CTP121139,Europe/Paris,,OAC, +OAC:SP:121140,1,"La Barque",43.477435,5.538781,0,0,OAC:SA:CTP121139,Europe/Paris,,OAC, +OAC:SP:121142,1,"Ouviere",43.453247,5.554078,0,0,OAC:SA:CTP121142,Europe/Paris,,OAC, +OAC:SP:121143,1,"GR SNCF Quai 01",43.455513,5.464085,0,0,OAC:SA:CTP121143,Europe/Paris,,OAC, +OAC:SP:121318,1,"Le Deffend",43.630947,5.636072,0,0,OAC:SA:CTP121318,Europe/Paris,,OAC, +OAC:SP:121319,1,"Sainte Marguerite",43.635025,5.630516,0,0,OAC:SA:CTP121319,Europe/Paris,,OAC, +OAC:SP:121320,1,"Sainte Marguerite",43.635602,5.631709,0,0,OAC:SA:CTP121319,Europe/Paris,,OAC, +OAC:SP:121321,1,"Vallon des Asseaux",43.636361,5.6232,0,0,OAC:SA:CTP121321,Europe/Paris,,OAC, +OAC:SP:121322,1,"Vallon des Asseaux",43.636412,5.623305,0,0,OAC:SA:CTP121321,Europe/Paris,,OAC, +OAC:SP:121323,1,"Saint Jean",43.639409,5.61574,0,0,OAC:SA:CTP121323,Europe/Paris,,OAC, +OAC:SP:121324,1,"Saint Jean",43.639365,5.615634,0,0,OAC:SA:CTP121323,Europe/Paris,,OAC, +OAC:SP:121325,1,"Le Logis d Anne",43.666897,5.644775,0,0,OAC:SA:CTP121325,Europe/Paris,,OAC, +OAC:SP:121334,1,"Valdenan",43.644156,5.270791,0,0,OAC:SA:CTP121334,Europe/Paris,,OAC, +OAC:SP:121335,1,"Valdenan",43.643386,5.271704,0,0,OAC:SA:CTP121334,Europe/Paris,,OAC, +OAC:SP:121336,1,"Saint Louis",43.648307,5.265035,0,0,OAC:SA:CTP121336,Europe/Paris,,OAC, +OAC:SP:121337,1,"Saint Louis",43.648609,5.265082,0,0,OAC:SA:CTP121336,Europe/Paris,,OAC, +OAC:SP:121340,1,"Saint Roch",43.657077,5.254967,0,0,OAC:SA:CTP121340,Europe/Paris,,OAC, +OAC:SP:121664,1,"La Baraque",43.635338,5.516866,0,0,OAC:SA:CTP121664,Europe/Paris,,OAC, +OAC:SP:121665,1,"La Baraque",43.634525,5.516791,0,0,OAC:SA:CTP121664,Europe/Paris,,OAC, +OAC:SP:121666,1,"La Carriere",43.630288,5.512028,0,0,OAC:SA:CTP121666,Europe/Paris,,OAC, +OAC:SP:121667,1,"La Carriere",43.629798,5.511126,0,0,OAC:SA:CTP121666,Europe/Paris,,OAC, +OAC:SP:121669,1,"Pre de Ville",43.632376,5.527035,0,0,OAC:SA:CTP121669,Europe/Paris,,OAC, +OAC:SP:121670,1,"Mediatheque",43.638381,5.527943,0,0,OAC:SA:CTP121670,Europe/Paris,,OAC, +OAC:SP:121671,1,"Mediatheque",43.638451,5.528007,0,0,OAC:SA:CTP121670,Europe/Paris,,OAC, +OAC:SP:121672,1,"Les Trois Gares",43.643059,5.541089,0,0,OAC:SA:CTP121672,Europe/Paris,,OAC, +OAC:SP:121673,1,"Les Trois Gares",43.643151,5.540799,0,0,OAC:SA:CTP121672,Europe/Paris,,OAC, +OAC:SP:121684,1,"Hotel de Ville",43.486336,5.493613,0,0,OAC:SA:CTP121684,Europe/Paris,,OAC, +OAC:SP:121690,1,"Les Coteaux Rouges",43.481848,5.497109,0,0,OAC:SA:CTP121690,Europe/Paris,,OAC, +OAC:SP:121691,1,"Les Coteaux Rouges",43.481847,5.496851,0,0,OAC:SA:CTP121690,Europe/Paris,,OAC, +OAC:SP:121692,1,"La Croix",43.477464,5.491817,0,0,OAC:SA:CTP121692,Europe/Paris,,OAC, +OAC:SP:121693,1,"La Croix",43.477277,5.491758,0,0,OAC:SA:CTP121692,Europe/Paris,,OAC, +OAC:SP:121694,1,"Le Plan de Meyreuil",43.473043,5.495571,0,0,OAC:SA:CTP121694,Europe/Paris,,OAC, +OAC:SP:121695,1,"Le Plan de Meyreuil",43.472946,5.495721,0,0,OAC:SA:CTP121694,Europe/Paris,,OAC, +OAC:SP:121696,1,"Bachasson",43.487182,5.529938,0,0,OAC:SA:CTP121696,Europe/Paris,,OAC, +OAC:SP:121697,1,"Bachasson",43.487431,5.529517,0,0,OAC:SA:CTP121696,Europe/Paris,,OAC, +OAC:SP:121698,1,"Les Sauvaires",43.469065,5.497182,0,0,OAC:SA:CTP121698,Europe/Paris,,OAC, +OAC:SP:121699,1,"Les Sauvaires",43.46878,5.497652,0,0,OAC:SA:CTP121698,Europe/Paris,,OAC, +OAC:SP:121700,1,"Le Canet",43.493644,5.524066,0,0,OAC:SA:CTP121700,Europe/Paris,,OAC, +OAC:SP:121701,1,"Le Canet",43.493234,5.524197,0,0,OAC:SA:CTP121700,Europe/Paris,,OAC, +OAC:SP:121702,1,"Pont de Bayeux",43.50154,5.515567,0,0,OAC:SA:CTP121702,Europe/Paris,,OAC, +OAC:SP:121703,1,"Pont de Bayeux",43.502243,5.51443,0,0,OAC:SA:CTP121702,Europe/Paris,,OAC, +OAC:SP:121837,1,"Les Pins",43.412966,5.373357,0,0,OAC:SA:CTP121837,Europe/Paris,,OAC, +OAC:SP:121838,1,"Les Pins",43.413063,5.373222,0,0,OAC:SA:CTP121837,Europe/Paris,,OAC, +OAC:SP:121845,1,"La Renardiere",43.41312,5.301954,0,0,OAC:SA:CTP121845,Europe/Paris,,OAC, +OAC:SP:121846,1,"La Renardiere",43.413643,5.300746,0,0,OAC:SA:CTP121845,Europe/Paris,,OAC, +OAC:SP:121857,1,"Jeanne d Arc",43.381448,5.346801,0,0,OET:SA:CTP30528,Europe/Paris,,OAC, +OAC:SP:121858,1,"Jeanne d Arc",43.381483,5.346878,0,0,OET:SA:CTP30528,Europe/Paris,,OAC, +OAC:SP:121860,1,"Monaco",43.384992,5.345427,0,0,OET:SA:CTP30523,Europe/Paris,,OAC, +OAC:SP:121861,1,"Les Oliviers",43.389525,5.344511,0,0,OAC:SA:CTP121861,Europe/Paris,,OAC, +OAC:SP:121862,1,"Les Oliviers",43.39001,5.344403,0,0,OAC:SA:CTP121861,Europe/Paris,,OAC, +OAC:SP:121863,1,"Cadeneaux",43.395024,5.343561,0,0,OAC:SA:CTP121863,Europe/Paris,,OAC, +OAC:SP:121864,1,"Cadeneaux",43.395242,5.343619,0,0,OAC:SA:CTP121863,Europe/Paris,,OAC, +OAC:SP:121869,1,"Roches Blanches",43.399315,5.341438,0,0,OET:SA:CTP31041,Europe/Paris,,OAC, +OAC:SP:121870,1,"Roches Blanches",43.399327,5.34149,0,0,OET:SA:CTP31041,Europe/Paris,,OAC, +OAC:SP:121871,1,"Les Romarins",43.401531,5.339453,0,0,OAC:SA:CTP121871,Europe/Paris,,OAC, +OAC:SP:121872,1,"Les Romarins",43.401325,5.339535,0,0,OAC:SA:CTP121871,Europe/Paris,,OAC, +OAC:SP:121873,1,"Le Ripert",43.398192,5.342213,0,0,OAC:SA:CTP121873,Europe/Paris,,OAC, +OAC:SP:121874,1,"Le Ripert",43.398718,5.341764,0,0,OAC:SA:CTP121873,Europe/Paris,,OAC, +OAC:SP:121881,1,"Octroi",43.374863,5.354165,0,0,OET:SA:CTP30625,Europe/Paris,,OAC, +OAC:SP:121882,1,"Octroi",43.375364,5.353739,0,0,OET:SA:CTP30625,Europe/Paris,,OAC, +OAC:SP:121889,1,"Sainte Elisabeth",43.401205,5.337334,0,0,OET:SA:CTP30510,Europe/Paris,,OAC, +OAC:SP:121891,1,"La Rastelido",43.418285,5.298069,0,0,OET:SA:CTP30572,Europe/Paris,,OAC, +OAC:SP:121899,1,"Square General De Gaulle",43.409073,5.321924,0,0,OAC:SA:CTP121899,Europe/Paris,,OAC, +OAC:SP:121901,1,"La Lecque",43.446384,5.645306,0,0,OAC:SA:CTP121901,Europe/Paris,,OAC, +OAC:SP:121902,1,"La Lecque",43.446499,5.645559,0,0,OAC:SA:CTP121901,Europe/Paris,,OAC, +OAC:SP:121903,1,"Le Village",43.446711,5.640265,0,0,OAC:SA:CTP121903,Europe/Paris,,OAC, +OAC:SP:121904,1,"Le Village",43.446668,5.640199,0,0,OAC:SA:CTP121903,Europe/Paris,,OAC, +OAC:SP:121905,1,"Le Lavoir",43.450129,5.637824,0,0,OAC:SA:CTP121905,Europe/Paris,,OAC, +OAC:SP:121906,1,"Le Lavoir",43.450296,5.637717,0,0,OAC:SA:CTP121905,Europe/Paris,,OAC, +OAC:SP:121907,1,"Le Vieux Moulin",43.457622,5.629647,0,0,OAC:SA:CTP121907,Europe/Paris,,OAC, +OAC:SP:121908,1,"Le Vieux Moulin",43.457935,5.629778,0,0,OAC:SA:CTP121907,Europe/Paris,,OAC, +OAC:SP:121909,1,"La Corneirelle",43.463164,5.611846,0,0,OAC:SA:CTP121909,Europe/Paris,,OAC, +OAC:SP:121910,1,"La Corneirelle",43.463288,5.612026,0,0,OAC:SA:CTP121909,Europe/Paris,,OAC, +OAC:SP:121912,1,"Les Michels",43.447056,5.601742,0,0,OAC:SA:CTP121912,Europe/Paris,,OAC, +OAC:SP:121913,1,"Les Michels",43.446959,5.601836,0,0,OAC:SA:CTP121912,Europe/Paris,,OAC, +OAC:SP:121943,1,"Centre Peyrolles",43.646328,5.586992,0,0,OAC:SA:CTP121943,Europe/Paris,,OAC, +OAC:SP:121944,1,"Centre Peyrolles",43.646446,5.586517,0,0,OAC:SA:CTP121943,Europe/Paris,,OAC, +OAC:SP:121947,1,"Les Violettes",43.64552,5.596768,0,0,OAC:SA:CTP121947,Europe/Paris,,OAC, +OAC:SP:121948,1,"Les Violettes",43.645459,5.596757,0,0,OAC:SA:CTP121947,Europe/Paris,,OAC, +OAC:SP:122039,1,"Les Fanettes",43.652579,5.459059,0,0,OAC:SA:CTP122039,Europe/Paris,,OAC, +OAC:SP:122040,1,"Les Fanettes",43.652345,5.459505,0,0,OAC:SA:CTP122039,Europe/Paris,,OAC, +OAC:SP:122041,1,"Les Savoyants",43.648495,5.462268,0,0,OAC:SA:CTP122041,Europe/Paris,,OAC, +OAC:SP:122042,1,"Les Savoyants",43.648332,5.462159,0,0,OAC:SA:CTP122041,Europe/Paris,,OAC, +OAC:SP:122043,1,"La Groule",43.644443,5.463267,0,0,OAC:SA:CTP122043,Europe/Paris,,OAC, +OAC:SP:122044,1,"La Groule",43.644442,5.463071,0,0,OAC:SA:CTP122043,Europe/Paris,,OAC, +OAC:SP:122045,1,"Les Danjauds",43.641408,5.463718,0,0,OAC:SA:CTP122045,Europe/Paris,,OAC, +OAC:SP:122046,1,"Les Danjauds",43.64143,5.463589,0,0,OAC:SA:CTP122045,Europe/Paris,,OAC, +OAC:SP:122047,1,"Les Bastides",43.636082,5.460486,0,0,OAC:SA:CTP122047,Europe/Paris,,OAC, +OAC:SP:122048,1,"Les Bastides",43.636138,5.460353,0,0,OAC:SA:CTP122047,Europe/Paris,,OAC, +OAC:SP:122049,1,"Saint Roch",43.627492,5.461384,0,0,OAC:SA:CTP122049,Europe/Paris,,OAC, +OAC:SP:122050,1,"Saint Roch",43.627646,5.460993,0,0,OAC:SA:CTP122049,Europe/Paris,,OAC, +OAC:SP:122055,1,"Avaux de Jean",43.679727,5.406949,0,0,OAC:SA:CTP122055,Europe/Paris,,OAC, +OAC:SP:122056,1,"Avaux de Jean",43.679748,5.407326,0,0,OAC:SA:CTP122055,Europe/Paris,,OAC, +OAC:SP:122057,1,"Les Goirands",43.661274,5.451258,0,0,OAC:SA:CTP122057,Europe/Paris,,OAC, +OAC:SP:122058,1,"Les Goirands",43.661065,5.450968,0,0,OAC:SA:CTP122057,Europe/Paris,,OAC, +OAC:SP:122059,1,"Halte St Canadet",43.655932,5.469171,0,0,OAC:SA:CTP122059,Europe/Paris,,OAC, +OAC:SP:122060,1,"Halte St Canadet",43.656049,5.468729,0,0,OAC:SA:CTP122059,Europe/Paris,,OAC, +OAC:SP:122061,1,"Les Viaux",43.661431,5.440732,0,0,OAC:SA:CTP122061,Europe/Paris,,OAC, +OAC:SP:122062,1,"Les Viaux",43.661236,5.440877,0,0,OAC:SA:CTP122061,Europe/Paris,,OAC, +OAC:SP:122063,1,"Bas du Cours",43.661856,5.440796,0,0,OAC:SA:CTP122063,Europe/Paris,,OAC, +OAC:SP:122066,1,"Le Puits Neuf",43.664995,5.428882,0,0,OAC:SA:CTP122066,Europe/Paris,,OAC, +OAC:SP:122067,1,"Le Puits Neuf",43.66488,5.429299,0,0,OAC:SA:CTP122066,Europe/Paris,,OAC, +OAC:SP:122068,1,"Les Gielles",43.671625,5.417102,0,0,OAC:SA:CTP122068,Europe/Paris,,OAC, +OAC:SP:122069,1,"Les Gielles",43.671975,5.416652,0,0,OAC:SA:CTP122068,Europe/Paris,,OAC, +OAC:SP:122070,1,"Lotis.Rousset",43.658993,5.41954,0,0,OAC:SA:CTP122070,Europe/Paris,,OAC, +OAC:SP:122071,1,"Cooperative",43.665139,5.435243,0,0,OAC:SA:CTP122071,Europe/Paris,,OAC, +OAC:SP:122072,1,"Cooperative",43.665062,5.435218,0,0,OAC:SA:CTP122071,Europe/Paris,,OAC, +OAC:SP:122073,1,"Les Farandoles",43.66561,5.431223,0,0,OAC:SA:CTP122073,Europe/Paris,,OAC, +OAC:SP:122074,1,"Les Farandoles",43.6658,5.43127,0,0,OAC:SA:CTP122073,Europe/Paris,,OAC, +OAC:SP:122077,1,"Eglise Vieille",43.659196,5.41346,0,0,OAC:SA:CTP122077,Europe/Paris,,OAC, +OAC:SP:122090,1,"Legion Etrangere",43.523762,5.698565,0,0,OAC:SA:CTP122090,Europe/Paris,,OAC, +OAC:SP:122124,1,"L Etape",43.626683,5.349442,0,0,OAC:SA:CTP122124,Europe/Paris,,OAC, +OAC:SP:122125,1,"L Etape",43.626699,5.349315,0,0,OAC:SA:CTP122124,Europe/Paris,,OAC, +OAC:SP:122146,1,"La Baume",43.715106,5.32418,0,0,OAC:SA:CTP122146,Europe/Paris,,OAC, +OAC:SP:122147,1,"La Baume",43.715017,5.324123,0,0,OAC:SA:CTP122146,Europe/Paris,,OAC, +OAC:SP:122148,1,"Le Trou de Magnan",43.714496,5.318515,0,0,OAC:SA:CTP122148,Europe/Paris,,OAC, +OAC:SP:122149,1,"Le Trou de Magnan",43.714484,5.317999,0,0,OAC:SA:CTP122148,Europe/Paris,,OAC, +OAC:SP:122150,1,"La Jacourelette",43.713209,5.311845,0,0,OAC:SA:CTP122150,Europe/Paris,,OAC, +OAC:SP:122151,1,"La Jacourelette",43.713308,5.312196,0,0,OAC:SA:CTP122150,Europe/Paris,,OAC, +OAC:SP:122152,1,"Hotel de Ville",43.714876,5.307643,0,0,OAC:SA:CTP122152,Europe/Paris,,OAC, +OAC:SP:122153,1,"Hotel de Ville",43.71499,5.307586,0,0,OAC:SA:CTP122152,Europe/Paris,,OAC, +OAC:SP:122157,1,"Le Grand Clos",43.71857,5.30554,0,0,OAC:SA:CTP122157,Europe/Paris,,OAC, +OAC:SP:122158,1,"Le Grand Clos",43.718633,5.305579,0,0,OAC:SA:CTP122157,Europe/Paris,,OAC, +OAC:SP:122186,1,"College",43.478983,5.624577,0,0,OAC:SA:CTP122186,Europe/Paris,,OAC, +OAC:SP:122193,1,"Les Bannettes",43.486963,5.608962,0,0,OAC:SA:CTP122193,Europe/Paris,,OAC, +OAC:SP:122194,1,"Les Bannettes",43.486927,5.609367,0,0,OAC:SA:CTP122193,Europe/Paris,,OAC, +OAC:SP:122195,1,"Victoire",43.473294,5.609387,0,0,OAC:SA:CTP122195,Europe/Paris,,OAC, +OAC:SP:122196,1,"Victoire",43.473048,5.609257,0,0,OAC:SA:CTP122195,Europe/Paris,,OAC, +OAC:SP:122197,1,"Perroy",43.469098,5.608124,0,0,OAC:SA:CTP122197,Europe/Paris,,OAC, +OAC:SP:122198,1,"Perroy",43.469292,5.607461,0,0,OAC:SA:CTP122197,Europe/Paris,,OAC, +OAC:SP:122199,1,"La Plaine",43.470558,5.598459,0,0,OAC:SA:CTP122199,Europe/Paris,,OAC, +OAC:SP:122200,1,"La Plaine",43.470663,5.598051,0,0,OAC:SA:CTP122199,Europe/Paris,,OAC, +OAC:SP:122201,1,"Villevieille",43.471719,5.614891,0,0,OAC:SA:CTP122201,Europe/Paris,,OAC, +OAC:SP:122202,1,"Villevieille",43.471448,5.615261,0,0,OAC:SA:CTP122201,Europe/Paris,,OAC, +OAC:SP:122241,1,"Le Bouquet",43.523001,5.568054,0,0,OAC:SA:CTP122241,Europe/Paris,,OAC, +OAC:SP:122244,1,"Centre",43.621102,5.298027,0,0,OAC:SA:CTP122244,Europe/Paris,,OAC, +OAC:SP:122245,1,"Centre",43.62106,5.298301,0,0,OAC:SA:CTP122244,Europe/Paris,,OAC, +OAC:SP:122247,1,"La Galinette",43.61835,5.308022,0,0,OAC:SA:CTP122247,Europe/Paris,,OAC, +OAC:SP:122248,1,"Cave cooperative",43.622864,5.298881,0,0,OAC:SA:CTP122248,Europe/Paris,,OAC, +OAC:SP:122274,1,"Hotel de Ville",43.685683,5.396754,0,0,OAC:SA:CTP122274,Europe/Paris,,OAC, +OAC:SP:122289,1,"3 Bons Dieux",43.535593,5.47122,0,0,OAC:SA:CTP122289,Europe/Paris,,OAC, +OAC:SP:122291,1,"Domaine Prignon",43.538033,5.484569,0,0,OAC:SA:CTP122291,Europe/Paris,,OAC, +OAC:SP:122292,1,"Domaine Prignon",43.538113,5.484463,0,0,OAC:SA:CTP122291,Europe/Paris,,OAC, +OAC:SP:122293,1,"Collongue",43.539969,5.496614,0,0,OAC:SA:CTP122293,Europe/Paris,,OAC, +OAC:SP:122294,1,"Collongue",43.539872,5.496918,0,0,OAC:SA:CTP122293,Europe/Paris,,OAC, +OAC:SP:122296,1,"Ch. Savoyards",43.545499,5.514388,0,0,OAC:SA:CTP122296,Europe/Paris,,OAC, +OAC:SP:122297,1,"Ch. Savoyards",43.545453,5.514111,0,0,OAC:SA:CTP122296,Europe/Paris,,OAC, +OAC:SP:122298,1,"Mairie",43.547687,5.520652,0,0,OAC:SA:CTP122298,Europe/Paris,,OAC, +OAC:SP:122301,1,"Les Bonfillons",43.550526,5.540075,0,0,OAC:SA:CTP122301,Europe/Paris,,OAC, +OAC:SP:122302,1,"Les Bonfillons",43.550598,5.54008,0,0,OAC:SA:CTP122301,Europe/Paris,,OAC, +OAC:SP:122616,1,"Petit Chemin de Bouc",43.431617,5.435387,0,0,OAC:SA:CTP122616,Europe/Paris,,OAC, +OAC:SP:122617,1,"Cours des Heros",43.429425,5.435985,0,0,OAC:SA:CTP122617,Europe/Paris,,OAC, +OAC:SP:122619,1,"Peche a la Truite",43.443603,5.439893,0,0,OAC:SA:CTP122619,Europe/Paris,,OAC, +OAC:SP:122622,1,"Les Migraniers",43.434381,5.43681,0,0,OAC:SA:CTP122622,Europe/Paris,,OAC, +OAC:SP:122623,1,"Les Migraniers",43.434337,5.436679,0,0,OAC:SA:CTP122622,Europe/Paris,,OAC, +OAC:SP:122627,1,"Gare de Simiane",43.434692,5.426152,0,0,OAC:SA:CTP122627,Europe/Paris,,OAC, +OAC:SP:122661,1,"La Cause",43.510746,5.492791,0,0,OAC:SA:CTP122661,Europe/Paris,,OAC, +OAC:SP:122664,1,"Les Artauds",43.514719,5.499414,0,0,OAC:SA:CTP122664,Europe/Paris,,OAC, +OAC:SP:122665,1,"Les Artauds",43.514556,5.499705,0,0,OAC:SA:CTP122664,Europe/Paris,,OAC, +OAC:SP:122667,1,"La Cremade",43.519524,5.511683,0,0,OAC:SA:CTP122667,Europe/Paris,,OAC, +OAC:SP:122668,1,"Halte Routiere",43.448723,5.682953,0,0,OAC:SA:CTP122668,Europe/Paris,,OAC, +OAC:SP:122669,1,"Le Vallat",43.44997,5.674564,0,0,OAC:SA:CTP122669,Europe/Paris,,OAC, +OAC:SP:122670,1,"Le Vallat",43.450099,5.674415,0,0,OAC:SA:CTP122669,Europe/Paris,,OAC, +OAC:SP:122679,1,"Les Plaines",43.555827,5.570199,0,0,OAC:SA:CTP122679,Europe/Paris,,OAC, +OAC:SP:122680,1,"Chemin St Francois",43.554762,5.576605,0,0,OAC:SA:CTP122680,Europe/Paris,,OAC, +OAC:SP:122682,1,"Les Cabassols",43.553854,5.5803,0,0,OAC:SA:CTP122682,Europe/Paris,,OAC, +OAC:SP:122683,1,"Les Cabassols",43.553374,5.582083,0,0,OAC:SA:CTP122682,Europe/Paris,,OAC, +OAC:SP:122684,1,"Le Chenil",43.555014,5.588738,0,0,OAC:SA:CTP122684,Europe/Paris,,OAC, +OAC:SP:122685,1,"Le Chenil",43.555498,5.589712,0,0,OAC:SA:CTP122684,Europe/Paris,,OAC, +OAC:SP:122686,1,"Ouest",43.555152,5.597582,0,0,OAC:SA:CTP122686,Europe/Paris,,OAC, +OAC:SP:122719,1,"Les Floralies",43.576003,5.469179,0,0,OAC:SA:CTP122719,Europe/Paris,,OAC, +OAC:SP:122720,1,"Les Floralies",43.576054,5.469054,0,0,OAC:SA:CTP122719,Europe/Paris,,OAC, +OAC:SP:122721,1,"Rd Pt de la Gare",43.587484,5.476237,0,0,OAC:SA:CTP122721,Europe/Paris,,OAC, +OAC:SP:122722,1,"Rd Pt de la Gare",43.58749,5.475834,0,0,OAC:SA:CTP122721,Europe/Paris,,OAC, +OAC:SP:122723,1,"Les Logissons",43.580501,5.471211,0,0,OAC:SA:CTP122723,Europe/Paris,,OAC, +OAC:SP:122724,1,"Les Logissons",43.580113,5.470824,0,0,OAC:SA:CTP122723,Europe/Paris,,OAC, +OAC:SP:122725,1,"La Touloubre",43.582403,5.47246,0,0,OAC:SA:CTP122725,Europe/Paris,,OAC, +OAC:SP:122726,1,"La Touloubre",43.582798,5.472701,0,0,OAC:SA:CTP122725,Europe/Paris,,OAC, +OAC:SP:122727,1,"Les Quatre Tours",43.59082,5.479197,0,0,OAC:SA:CTP122727,Europe/Paris,,OAC, +OAC:SP:122728,1,"Les Quatre Tours",43.590493,5.478554,0,0,OAC:SA:CTP122727,Europe/Paris,,OAC, +OAC:SP:122729,1,"Les Cabassols",43.593131,5.481721,0,0,OAC:SA:CTP122729,Europe/Paris,,OAC, +OAC:SP:122730,1,"Les Cabassols",43.593062,5.481444,0,0,OAC:SA:CTP122729,Europe/Paris,,OAC, +OAC:SP:122735,1,"L Oratoire",43.610995,5.468032,0,0,OAC:SA:CTP122735,Europe/Paris,,OAC, +OAC:SP:122736,1,"L Oratoire",43.610873,5.467744,0,0,OAC:SA:CTP122735,Europe/Paris,,OAC, +OAC:SP:122737,1,"Les Bigourdins",43.609007,5.466866,0,0,OAC:SA:CTP122737,Europe/Paris,,OAC, +OAC:SP:122738,1,"Les Bigourdins",43.608143,5.46617,0,0,OAC:SA:CTP122737,Europe/Paris,,OAC, +OAC:SP:122743,1,"Matins Clairs",43.593971,5.476069,0,0,OAC:SA:CTP122743,Europe/Paris,,OAC, +OAC:SP:122753,1,"Les Batailles",43.540539,5.269304,0,0,OAC:SA:CTP122753,Europe/Paris,,OAC, +OAC:SP:122754,1,"Les Batailles",43.540505,5.268606,0,0,OAC:SA:CTP122753,Europe/Paris,,OAC, +OAC:SP:122755,1,"Val Lourdes",43.544796,5.278737,0,0,OAC:SA:CTP122755,Europe/Paris,,OAC, +OAC:SP:122756,1,"Val Lourdes",43.544898,5.279336,0,0,OAC:SA:CTP122755,Europe/Paris,,OAC, +OAC:SP:122757,1,"La Lecque",43.546194,5.285057,0,0,OAC:SA:CTP122757,Europe/Paris,,OAC, +OAC:SP:122758,1,"La Lecque",43.546454,5.286392,0,0,OAC:SA:CTP122757,Europe/Paris,,OAC, +OAC:SP:122761,1,"Les Bonfils",43.540834,5.296764,0,0,OAC:SA:CTP122761,Europe/Paris,,OAC, +OAC:SP:122762,1,"Les Bonfils",43.540922,5.296823,0,0,OAC:SA:CTP122761,Europe/Paris,,OAC, +OAC:SP:122765,1,"Le Berry",43.541673,5.304453,0,0,OAC:SA:CTP122765,Europe/Paris,,OAC, +OAC:SP:122766,1,"Le Berry",43.541704,5.304808,0,0,OAC:SA:CTP122765,Europe/Paris,,OAC, +OAC:SP:122767,1,"Vignes Longues",43.54707,5.310307,0,0,OAC:SA:CTP122767,Europe/Paris,,OAC, +OAC:SP:122768,1,"Vignes Longues",43.547214,5.311243,0,0,OAC:SA:CTP122767,Europe/Paris,,OAC, +OAC:SP:122769,1,"L Etoile",43.546775,5.324092,0,0,OAC:SA:CTP122769,Europe/Paris,,OAC, +OAC:SP:122770,1,"L Etoile",43.546704,5.323812,0,0,OAC:SA:CTP122769,Europe/Paris,,OAC, +OAC:SP:122771,1,"Les Peyres",43.546573,5.32615,0,0,OAC:SA:CTP122771,Europe/Paris,,OAC, +OAC:SP:122772,1,"Les Peyres",43.546539,5.326024,0,0,OAC:SA:CTP122771,Europe/Paris,,OAC, +OAC:SP:122773,1,"Vignes Longues Hautes",43.546804,5.319548,0,0,OAC:SA:CTP122773,Europe/Paris,,OAC, +OAC:SP:122774,1,"Vignes Longues Hautes",43.546763,5.320397,0,0,OAC:SA:CTP122773,Europe/Paris,,OAC, +OAC:SP:122775,1,"Les Vences",43.54545,5.34126,0,0,OAC:SA:CTP122775,Europe/Paris,,OAC, +OAC:SP:122776,1,"Les Vences",43.545021,5.343337,0,0,OAC:SA:CTP122775,Europe/Paris,,OAC, +OAC:SP:122781,1,"Saint Remy",43.546092,5.332367,0,0,OAC:SA:CTP122781,Europe/Paris,,OAC, +OAC:SP:122782,1,"Saint Remy",43.546036,5.331925,0,0,OAC:SA:CTP122781,Europe/Paris,,OAC, +OAC:SP:122783,1,"La Cooperative",43.546588,5.293426,0,0,OAC:SA:CTP122783,Europe/Paris,,OAC, +OAC:SP:122837,1,"Victor Gelu",43.442883,5.245365,0,0,OAC:SA:CTP122837,Europe/Paris,,OAC, +OAC:SP:122838,1,"Victor Gelu",43.442896,5.244913,0,0,OAC:SA:CTP122837,Europe/Paris,,OAC, +OAC:SP:122851,1,"Mediatheque",43.444491,5.251587,0,0,OAC:SA:CTP122851,Europe/Paris,,OAC, +OAC:SP:122852,1,"Mediatheque",43.443704,5.251826,0,0,OAC:SA:CTP122851,Europe/Paris,,OAC, +OAC:SP:122853,1,"Petite Garrigue",43.441642,5.253125,0,0,OAC:SA:CTP122853,Europe/Paris,,OAC, +OAC:SP:122854,1,"Petite Garrigue",43.442328,5.252838,0,0,OAC:SA:CTP122853,Europe/Paris,,OAC, +OAC:SP:122857,1,"Bd D. Padovani",43.436925,5.257234,0,0,OAC:SA:CTP122857,Europe/Paris,,OAC, +OAC:SP:122858,1,"Bd D. Padovani",43.436738,5.257181,0,0,OAC:SA:CTP122857,Europe/Paris,,OAC, +OAC:SP:122859,1,"Espace",43.434404,5.260718,0,0,OET:SA:CTP30071,Europe/Paris,,OAC, +OAC:SP:122860,1,"Espace",43.434571,5.260717,0,0,OET:SA:CTP30071,Europe/Paris,,OAC, +OAC:SP:122861,1,"Les Pinchinades Rd9",43.439331,5.285671,0,0,OET:SA:CTP30602,Europe/Paris,,OAC, +OAC:SP:122867,1,"Les Pommiers",43.448241,5.246672,0,0,OET:SA:CTP30163,Europe/Paris,,OAC, +OAC:SP:122868,1,"Les Pommiers",43.448862,5.246464,0,0,OET:SA:CTP30163,Europe/Paris,,OAC, +OAC:SP:122869,1,"Salvator Allende",43.452279,5.244704,0,0,OET:SA:CTP30161,Europe/Paris,,OAC, +OAC:SP:122870,1,"Salvator Allende",43.45149,5.244775,0,0,OET:SA:CTP30161,Europe/Paris,,OAC, +OAC:SP:122871,1,"Les Roses",43.453965,5.243568,0,0,OET:SA:CTP30159,Europe/Paris,,OAC, +OAC:SP:122872,1,"Les Roses",43.453773,5.243476,0,0,OET:SA:CTP30159,Europe/Paris,,OAC, +OAC:SP:122877,1,"Roucas L Escouniere",43.457372,5.249015,0,0,OET:SA:CTP30130,Europe/Paris,,OAC, +OAC:SP:122878,1,"Roucas L Escouniere",43.457453,5.248883,0,0,OET:SA:CTP30130,Europe/Paris,,OAC, +OAC:SP:122879,1,"Le Parc",43.455735,5.250524,0,0,OET:SA:CTP30125,Europe/Paris,,OAC, +OAC:SP:122880,1,"Le Parc",43.455936,5.250565,0,0,OET:SA:CTP30125,Europe/Paris,,OAC, +OAC:SP:122881,1,"Les Vignes",43.453281,5.250781,0,0,OET:SA:CTP30123,Europe/Paris,,OAC, +OAC:SP:122882,1,"Les Vignes",43.453151,5.250729,0,0,OET:SA:CTP30123,Europe/Paris,,OAC, +OAC:SP:122883,1,"Les Hermes",43.450635,5.252318,0,0,OET:SA:CTP30121,Europe/Paris,,OAC, +OAC:SP:122884,1,"Les Hermes",43.450621,5.252255,0,0,OET:SA:CTP30121,Europe/Paris,,OAC, +OAC:SP:122885,1,"Foyer Soleil",43.44752,5.255139,0,0,OET:SA:CTP30119,Europe/Paris,,OAC, +OAC:SP:122886,1,"Foyer Soleil",43.44784,5.255028,0,0,OET:SA:CTP30119,Europe/Paris,,OAC, +OAC:SP:122887,1,"La Vallee",43.445353,5.256415,0,0,OET:SA:CTP30117,Europe/Paris,,OAC, +OAC:SP:122888,1,"La Vallee",43.445375,5.256221,0,0,OET:SA:CTP30117,Europe/Paris,,OAC, +OAC:SP:122889,1,"Le Liourat",43.441363,5.259603,0,0,OET:SA:CTP30115,Europe/Paris,,OAC, +OAC:SP:122890,1,"Le Liourat",43.441122,5.259612,0,0,OET:SA:CTP30115,Europe/Paris,,OAC, +OAC:SP:122891,1,"Pas du Boeuf",43.438027,5.26244,0,0,OET:SA:CTP30113,Europe/Paris,,OAC, +OAC:SP:122892,1,"Pas du Boeuf",43.438096,5.262308,0,0,OET:SA:CTP30113,Europe/Paris,,OAC, +OAC:SP:122893,1,"Les Terrasses",43.435863,5.263742,0,0,OET:SA:CTP30111,Europe/Paris,,OAC, +OAC:SP:122894,1,"Les Terrasses",43.436162,5.263419,0,0,OET:SA:CTP30111,Europe/Paris,,OAC, +OAC:SP:122895,1,"Croix Route",43.432296,5.265286,0,0,OET:SA:CTP30109,Europe/Paris,,OAC, +OAC:SP:122896,1,"Croix Route",43.432257,5.265223,0,0,OET:SA:CTP30109,Europe/Paris,,OAC, +OAC:SP:122897,1,"Bastide Blanche",43.431289,5.266144,0,0,OAC:SA:CTP122897,Europe/Paris,,OAC, +OAC:SP:122898,1,"Bastide Blanche",43.430944,5.266209,0,0,OAC:SA:CTP122897,Europe/Paris,,OAC, +OAC:SP:122901,1,"Le Griffon",43.427506,5.272177,0,0,OAC:SA:CTP122901,Europe/Paris,,OAC, +OAC:SP:122902,1,"Le Griffon Clinique",43.427183,5.270804,0,0,OAC:SA:CTP122902,Europe/Paris,,OAC, +OAC:SP:122903,1,"CLG Beauvoir",43.427589,5.276269,0,0,OET:SA:CTP30085,Europe/Paris,,OAC, +OAC:SP:122904,1,"CLG Beauvoir",43.427447,5.276423,0,0,OET:SA:CTP30085,Europe/Paris,,OAC, +OAC:SP:122905,1,"Mairie Quartier Sud",43.426016,5.278936,0,0,OAC:SA:CTP122905,Europe/Paris,,OAC, +OAC:SP:122906,1,"Mairie Quartier Sud",43.425902,5.27923,0,0,OAC:SA:CTP122905,Europe/Paris,,OAC, +OAC:SP:122907,1,"Le Repos",43.425128,5.282159,0,0,OAC:SA:CTP122907,Europe/Paris,,OAC, +OAC:SP:122908,1,"Le Repos",43.424706,5.282539,0,0,OAC:SA:CTP122907,Europe/Paris,,OAC, +OAC:SP:122909,1,"Ecole Le Repos",43.42371,5.28431,0,0,OET:SA:CTP30091,Europe/Paris,,OAC, +OAC:SP:122910,1,"Ecole Le Repos",43.423471,5.284377,0,0,OET:SA:CTP30091,Europe/Paris,,OAC, +OAC:SP:122911,1,"Fontblanche",43.422384,5.286239,0,0,OAC:SA:CTP122911,Europe/Paris,,OAC, +OAC:SP:122912,1,"Fontblanche",43.422235,5.286289,0,0,OAC:SA:CTP122911,Europe/Paris,,OAC, +OAC:SP:122922,1,"Ferme Croze",43.423105,5.290962,0,0,OET:SA:CTP30826,Europe/Paris,,OAC, +OAC:SP:122930,1,"Centre Village",43.558278,5.250545,0,0,OET:SA:CTP31070,Europe/Paris,,OAC, +OAC:SP:122931,1,"Centre Village",43.558355,5.250396,0,0,OET:SA:CTP31070,Europe/Paris,,OAC, +OAC:SP:122932,1,"Collet Poste",43.557222,5.244151,0,0,OAC:SA:CTP122932,Europe/Paris,,OAC, +OAC:SP:122934,1,"Les Poneys",43.554796,5.244282,0,0,OET:SA:CTP30679,Europe/Paris,,OAC, +OAC:SP:122936,1,"La Mine",43.549607,5.243594,0,0,OET:SA:CTP30673,Europe/Paris,,OAC, +OAC:SP:122937,1,"La Mine",43.549451,5.243393,0,0,OET:SA:CTP30673,Europe/Paris,,OAC, +OAC:SP:122938,1,"Avenue de l Europe",43.554122,5.240529,0,0,OAC:SA:CTP122938,Europe/Paris,,OAC, +OAC:SP:122941,1,"Malvallat",43.549089,5.256617,0,0,OET:SA:CTP31073,Europe/Paris,,OAC, +OAC:SP:122942,1,"La Plantade",43.557417,5.254763,0,0,OET:SA:CTP31072,Europe/Paris,,OAC, +OAC:SP:122943,1,"La Plantade",43.557181,5.254658,0,0,OET:SA:CTP31072,Europe/Paris,,OAC, +OAC:SP:122944,1,"Moulin du Pont",43.543088,5.25908,0,0,OAC:SA:CTP122944,Europe/Paris,,OAC, +OAC:SP:122945,1,"Moulin du Pont",43.541638,5.261177,0,0,OAC:SA:CTP122944,Europe/Paris,,OAC, +OAC:SP:123537,1,"Trois Pigeons",43.473205,5.410348,0,0,OAC:SA:CTP120151,Europe/Paris,,OAC, +OAC:SP:123548,1,"Saint Canadet",43.630601,5.458078,0,0,OAC:SA:CTP123548,Europe/Paris,,OAC, +OAC:SP:123651,1,"Zone Artisanale",43.493267,5.369074,0,0,OAC:SA:CTP123651,Europe/Paris,,OAC, +OAC:SP:123654,1,"Duchesne",43.492046,5.372397,0,0,OAC:SA:CTP123654,Europe/Paris,,OAC, +OAC:SP:123658,1,"Ampere",43.486277,5.379576,0,0,OAC:SA:CTP123658,Europe/Paris,,OAC, +OAC:SP:123660,1,"Bessemer",43.484227,5.382243,0,0,OAC:SA:CTP123660,Europe/Paris,,OAC, +OAC:SP:123661,1,"Bessemer",43.484494,5.382215,0,0,OAC:SA:CTP123660,Europe/Paris,,OAC, +OAC:SP:123662,1,"Berthier",43.48103,5.37932,0,0,OAC:SA:CTP123662,Europe/Paris,,OAC, +OAC:SP:123663,1,"Berthier",43.481115,5.379571,0,0,OAC:SA:CTP123662,Europe/Paris,,OAC, +OAC:SP:123664,1,"La Robole",43.478053,5.375586,0,0,OAC:SA:CTP123664,Europe/Paris,,OAC, +OAC:SP:123665,1,"La Robole",43.478089,5.375493,0,0,OAC:SA:CTP123664,Europe/Paris,,OAC, +OAC:SP:123666,1,"Les Grottes",43.479008,5.370919,0,0,OAC:SA:CTP123666,Europe/Paris,,OAC, +OAC:SP:123667,1,"Les Grottes",43.479087,5.370887,0,0,OAC:SA:CTP123666,Europe/Paris,,OAC, +OAC:SP:123668,1,"Pichaury",43.479862,5.367505,0,0,OAC:SA:CTP123668,Europe/Paris,,OAC, +OAC:SP:123669,1,"Pichaury",43.480561,5.36651,0,0,OAC:SA:CTP123668,Europe/Paris,,OAC, +OAC:SP:123670,1,"Lagremeuse",43.479703,5.355321,0,0,OAC:SA:CTP123670,Europe/Paris,,OAC, +OAC:SP:123681,1,"Leclerc",43.693526,5.50371,0,0,OAC:SA:CTP123681,Europe/Paris,,OAC, +OAC:SP:123737,1,"Clos Saint Imbert",43.469108,5.339075,0,0,OAC:SA:CTP123737,Europe/Paris,,OAC, +OAC:SP:123741,1,"Jean Moulin",43.461369,5.350154,0,0,OAC:SA:CTP123741,Europe/Paris,,OAC, +OAC:SP:123742,1,"Jean Moulin",43.461586,5.349508,0,0,OAC:SA:CTP123741,Europe/Paris,,OAC, +OAC:SP:123746,1,"Parking Cezanne",43.663395,5.43603,0,0,OAC:SA:CTP123746,Europe/Paris,,OAC, +OAC:SP:123748,1,"Vauclaire",43.64941,5.486956,0,0,OAC:SA:CTP123748,Europe/Paris,,OAC, +OAC:SP:123749,1,"Vauclaire",43.649238,5.487145,0,0,OAC:SA:CTP123748,Europe/Paris,,OAC, +OAC:SP:123750,1,"Usine a Mais",43.659148,5.460345,0,0,OAC:SA:CTP123750,Europe/Paris,,OAC, +OAC:SP:123751,1,"Usine a Mais",43.659179,5.46037,0,0,OAC:SA:CTP123750,Europe/Paris,,OAC, +OAC:SP:123752,1,"La Roubine",43.663034,5.441397,0,0,OAC:SA:CTP123752,Europe/Paris,,OAC, +OAC:SP:123753,1,"La Roubine",43.663088,5.441253,0,0,OAC:SA:CTP123752,Europe/Paris,,OAC, +OAC:SP:123754,1,"La Cride",43.647428,5.421859,0,0,OAC:SA:CTP123754,Europe/Paris,,OAC, +OAC:SP:123756,1,"Avenue du Stade",43.660933,5.427067,0,0,OAC:SA:CTP123756,Europe/Paris,,OAC, +OAC:SP:123757,1,"Avenue du Stade",43.660878,5.426818,0,0,OAC:SA:CTP123756,Europe/Paris,,OAC, +OAC:SP:123758,1,"Barral",43.654535,5.453902,0,0,OAC:SA:CTP123758,Europe/Paris,,OAC, +OAC:SP:123759,1,"Barral",43.654301,5.454415,0,0,OAC:SA:CTP123758,Europe/Paris,,OAC, +OAC:SP:123762,1,"Cabane",43.657843,5.447108,0,0,OAC:SA:CTP123762,Europe/Paris,,OAC, +OAC:SP:123763,1,"Cabane",43.658006,5.446751,0,0,OAC:SA:CTP123762,Europe/Paris,,OAC, +OAC:SP:123767,1,"Arc Meyran Zola",43.511961,5.461104,0,0,OAC:SA:CTP134447,Europe/Paris,,OAC, +OAC:SP:123768,1,"La France",43.483866,5.636299,0,0,OAC:SA:CTP123768,Europe/Paris,,OAC, +OAC:SP:123771,1,"Cabriliverni",43.477264,5.648621,0,0,OAC:SA:CTP123771,Europe/Paris,,OAC, +OAC:SP:123775,1,"La Clairiere",43.484707,5.608037,0,0,OAC:SA:CTP123775,Europe/Paris,,OAC, +OAC:SP:123778,1,"Les Planes Nord",43.486284,5.62125,0,0,OAC:SA:CTP123778,Europe/Paris,,OAC, +OAC:SP:123779,1,"Nouveau",43.485072,5.623862,0,0,OAC:SA:CTP123779,Europe/Paris,,OAC, +OAC:SP:123785,1,"Les Putis",43.4197,5.459302,0,0,OAC:SA:CTP123785,Europe/Paris,,OAC, +OAC:SP:123788,1,"Esplanade Saint Denis",43.661084,5.353319,0,0,OAC:SA:CTP123788,Europe/Paris,,OAC, +OAC:SP:123800,1,"College Jean Jaures",43.64664,5.575767,0,0,OAC:SA:CTP123800,Europe/Paris,,OAC, +OAC:SP:123802,1,"La Poste",43.597534,5.484755,0,0,OAC:SA:CTP123802,Europe/Paris,,OAC, +OAC:SP:123805,1,"CLG St Eutrope",43.540399,5.45231,0,0,OAC:SA:CTP123805,Europe/Paris,,OAC, +OAC:SP:123807,1,"Les Faurys",43.594636,5.47142,0,0,OAC:SA:CTP123807,Europe/Paris,,OAC, +OAC:SP:123809,1,"Bellegarde",43.531696,5.45163,0,0,OAC:SA:CTP123809,Europe/Paris,,OAC, +OAC:SP:123819,1,"Saint Benoit",43.514367,5.461412,0,0,OAC:SA:CTP123819,Europe/Paris,,OAC, +OAC:SP:123823,1,"College Marcel Pagnol",43.693825,5.508109,0,0,OAC:SA:CTP123823,Europe/Paris,,OAC, +OAC:SP:123824,1,"College Marcel Pagnol",43.693913,5.508154,0,0,OAC:SA:CTP123823,Europe/Paris,,OAC, +OAC:SP:123825,1,"College Marie Mauron",43.700018,5.501232,0,0,OAC:SA:CTP123825,Europe/Paris,,OAC, +OAC:SP:123827,1,"Lycee Val de Durance",43.708847,5.505725,0,0,OAC:SA:CTP123827,Europe/Paris,,OAC, +OAC:SP:123853,1,"Saint Christophe",43.708668,5.362138,0,0,OAC:SA:CTP123853,Europe/Paris,,OAC, +OAC:SP:123854,1,"Saint Christophe",43.708725,5.361711,0,0,OAC:SA:CTP123853,Europe/Paris,,OAC, +OAC:SP:123855,1,"College des Garrigues",43.654149,5.326396,0,0,OAC:SA:CTP123855,Europe/Paris,,OAC, +OAC:SP:123856,1,"College des Garrigues",43.654142,5.326123,0,0,OAC:SA:CTP123855,Europe/Paris,,OAC, +OAC:SP:123879,1,"Mazouillette",43.653462,5.476049,0,0,OAC:SA:CTP123879,Europe/Paris,,OAC, +OAC:SP:123880,1,"Mazouillette",43.65331,5.476242,0,0,OAC:SA:CTP123879,Europe/Paris,,OAC, +OAC:SP:123886,1,"Saint Esteve",43.624982,5.459528,0,0,OAC:SA:CTP123886,Europe/Paris,,OAC, +OAC:SP:123887,1,"Saint Esteve",43.624941,5.458983,0,0,OAC:SA:CTP123886,Europe/Paris,,OAC, +OAC:SP:123888,1,"De la Molle",43.530669,5.438117,0,0,OAC:SA:CTP123888,Europe/Paris,,OAC, +OAC:SP:123904,1,"Ecoles maternelles et primaires",43.664537,5.435567,0,0,OAC:SA:CTP123904,Europe/Paris,,OAC, +OAC:SP:123906,1,"Place de St Canadet",43.630022,5.456856,0,0,OAC:SA:CTP123906,Europe/Paris,,OAC, +OAC:SP:123919,1,"La Piscine",43.689313,5.522646,0,0,OAC:SA:CTP123919,Europe/Paris,,OAC, +OAC:SP:123924,1,"Verdun",43.694692,5.510545,0,0,OAC:SA:CTP123924,Europe/Paris,,OAC, +OAC:SP:123925,1,"Verdun",43.694438,5.510037,0,0,OAC:SA:CTP123924,Europe/Paris,,OAC, +OAC:SP:123930,1,"Les Plantiers",43.550465,5.36668,0,0,OAC:SA:CTP123930,Europe/Paris,,OAC, +OAC:SP:123931,1,"Les Plantiers",43.55125,5.36649,0,0,OAC:SA:CTP123930,Europe/Paris,,OAC, +OAC:SP:123936,1,"Duby",43.572578,5.353331,0,0,OAC:SA:CTP123936,Europe/Paris,,OAC, +OAC:SP:123937,1,"Duby",43.571451,5.353468,0,0,OAC:SA:CTP123936,Europe/Paris,,OAC, +OAC:SP:123938,1,"Surville",43.572435,5.357784,0,0,OAC:SA:CTP123938,Europe/Paris,,OAC, +OAC:SP:123939,1,"Surville",43.571894,5.357276,0,0,OAC:SA:CTP123938,Europe/Paris,,OAC, +OAC:SP:123945,1,"Artaud",43.568374,5.356577,0,0,OAC:SA:CTP123945,Europe/Paris,,OAC, +OAC:SP:123949,1,"CLG Chateau Double",43.531507,5.420549,0,0,OAC:SA:CTP123949,Europe/Paris,,OAC, +OAC:SP:123957,1,"Les Acacias",43.570896,5.358325,0,0,OAC:SA:CTP123957,Europe/Paris,,OAC, +OAC:SP:123962,1,"Les Collets",43.555844,5.239264,0,0,OAC:SA:CTP123962,Europe/Paris,,OAC, +OAC:SP:123966,1,"Quai Saint Louis N 3",43.530371,5.452665,0,0,OAC:SA:CTP123966,Europe/Paris,,OAC, +OAC:SP:123967,1,"Quai Saint Louis N 2",43.530584,5.452461,0,0,OAC:SA:CTP123967,Europe/Paris,,OAC, +OAC:SP:123970,1,"Lycee International de Luynes",43.480455,5.414662,0,0,OAC:SA:CTP123970,Europe/Paris,,OAC, +OAC:SP:123971,1,"Lycee International de Luynes",43.480402,5.415149,0,0,OAC:SA:CTP123970,Europe/Paris,,OAC, +OAC:SP:123980,1,"Sainte Michelle",43.544114,5.297183,0,0,OAC:SA:CTP123980,Europe/Paris,,OAC, +OAC:SP:123981,1,"Sainte Michelle",43.544142,5.297061,0,0,OAC:SA:CTP123980,Europe/Paris,,OAC, +OAC:SP:123982,1,"Les Claux",43.543627,5.299392,0,0,OAC:SA:CTP123982,Europe/Paris,,OAC, +OAC:SP:123983,1,"Les Claux",43.54353,5.299498,0,0,OAC:SA:CTP123982,Europe/Paris,,OAC, +OAC:SP:123984,1,"Ecole",43.538458,5.302775,0,0,OAC:SA:CTP123984,Europe/Paris,,OAC, +OAC:SP:123990,1,"Hotel de ville",43.655101,5.262574,0,0,OAC:SA:CTP123990,Europe/Paris,,OAC, +OAC:SP:123992,1,"Montee d Aix",43.652138,5.263625,0,0,OAC:SA:CTP123992,Europe/Paris,,OAC, +OAC:SP:123993,1,"Montee d Aix",43.652488,5.26346,0,0,OAC:SA:CTP123992,Europe/Paris,,OAC, +OAC:SP:124011,1,"Les Pinchinades Rd9",43.43824,5.285676,0,0,OET:SA:CTP30602,Europe/Paris,,OAC, +OAC:SP:124012,1,"Pierre Plantee",43.446609,5.24868,0,0,OET:SA:CTP30042,Europe/Paris,,OAC, +OAC:SP:124016,1,"Vauniere",43.443962,5.40561,0,0,OAC:SA:CTP124016,Europe/Paris,,OAC, +OAC:SP:124017,1,"Vauniere",43.443658,5.405487,0,0,OAC:SA:CTP124016,Europe/Paris,,OAC, +OAC:SP:124018,1,"Les Tihous",43.433329,5.411851,0,0,OAC:SA:CTP124018,Europe/Paris,,OAC, +OAC:SP:124023,1,"Les Vergers",43.45437,5.39615,0,0,OAC:SA:CTP124023,Europe/Paris,,OAC, +OAC:SP:124024,1,"Les Muriers",43.46319,5.408999,0,0,OAC:SA:CTP124024,Europe/Paris,,OAC, +OAC:SP:124025,1,"Les Muriers",43.463096,5.408943,0,0,OAC:SA:CTP124024,Europe/Paris,,OAC, +OAC:SP:124026,1,"Les Muriers",43.462696,5.408916,0,0,OAC:SA:CTP124024,Europe/Paris,,OAC, +OAC:SP:124028,1,"Pibou",43.447768,5.427055,0,0,OAC:SA:CTP124028,Europe/Paris,,OAC, +OAC:SP:124029,1,"Pibou",43.447826,5.427048,0,0,OAC:SA:CTP124028,Europe/Paris,,OAC, +OAC:SP:124032,1,"Les Micocouliers",43.4502,5.425373,0,0,OAC:SA:CTP124032,Europe/Paris,,OAC, +OAC:SP:124033,1,"Les Micocouliers",43.449991,5.425967,0,0,OAC:SA:CTP124032,Europe/Paris,,OAC, +OAC:SP:124034,1,"Rhin et Danube",43.461104,5.410342,0,0,OAC:SA:CTP124034,Europe/Paris,,OAC, +OAC:SP:124035,1,"Rhin et Danube",43.461086,5.410403,0,0,OAC:SA:CTP124034,Europe/Paris,,OAC, +OAC:SP:124036,1,"La Salle Centre Commercial",43.441566,5.423167,0,0,OAC:SA:CTP124036,Europe/Paris,,OAC, +OAC:SP:124037,1,"La Salle Centre Commercial",43.441232,5.42333,0,0,OAC:SA:CTP124036,Europe/Paris,,OAC, +OAC:SP:124042,1,"Centre Commercial du Moulin",43.43354,5.430378,0,0,OAC:SA:CTP124042,Europe/Paris,,OAC, +OAC:SP:124043,1,"Centre Commercial du Moulin",43.433541,5.430589,0,0,OAC:SA:CTP124042,Europe/Paris,,OAC, +OAC:SP:124045,1,"CLG de Simiane",43.432773,5.438453,0,0,OAC:SA:CTP124045,Europe/Paris,,OAC, +OAC:SP:124049,1,"Le Chene",43.414845,5.463552,0,0,OAC:SA:CTP124049,Europe/Paris,,OAC, +OAC:SP:124050,1,"Les Martinons",43.417502,5.462835,0,0,OAC:SA:CTP124050,Europe/Paris,,OAC, +OAC:SP:124053,1,"La Grenouille",43.424394,5.450218,0,0,OAC:SA:CTP124053,Europe/Paris,,OAC, +OAC:SP:124054,1,"La Chapelle",43.413737,5.441277,0,0,OAC:SA:CTP124054,Europe/Paris,,OAC, +OAC:SP:124057,1,"Les Merentiers",43.415578,5.444542,0,0,OAC:SA:CTP124057,Europe/Paris,,OAC, +OAC:SP:124059,1,"La Greou",43.416229,5.446955,0,0,OAC:SA:CTP124059,Europe/Paris,,OAC, +OAC:SP:124060,1,"Pont des Putis",43.424592,5.44778,0,0,OAC:SA:CTP124060,Europe/Paris,,OAC, +OAC:SP:124062,1,"Chemin du Canal",43.426524,5.440622,0,0,OAC:SA:CTP124062,Europe/Paris,,OAC, +OAC:SP:124063,1,"Chemin du Canal",43.426476,5.442035,0,0,OAC:SA:CTP124062,Europe/Paris,,OAC, +OAC:SP:124064,1,"La Gratiane",43.458245,5.415798,0,0,OAC:SA:CTP124064,Europe/Paris,,OAC, +OAC:SP:124065,1,"La Gratiane",43.458084,5.415792,0,0,OAC:SA:CTP124064,Europe/Paris,,OAC, +OAC:SP:124070,1,"La Tuilerie",43.465446,5.419876,0,0,OAC:SA:CTP124070,Europe/Paris,,OAC, +OAC:SP:124071,1,"La Tuilerie",43.464714,5.420282,0,0,OAC:SA:CTP124070,Europe/Paris,,OAC, +OAC:SP:124074,1,"Hameau du Verger",43.428605,5.413286,0,0,OAC:SA:CTP124074,Europe/Paris,,OAC, +OAC:SP:124075,1,"Hameau du Verger",43.4287,5.413374,0,0,OAC:SA:CTP124074,Europe/Paris,,OAC, +OAC:SP:124083,1,"Les Terres Blanches",43.453895,5.417583,0,0,OAC:SA:CTP124083,Europe/Paris,,OAC, +OAC:SP:124084,1,"Les Terres Blanches",43.454333,5.41756,0,0,OAC:SA:CTP124083,Europe/Paris,,OAC, +OAC:SP:124102,1,"Le Gay",43.464945,5.364977,0,0,OAC:SA:CTP124102,Europe/Paris,,OAC, +OAC:SP:124116,1,"Le Siege",43.429616,5.419158,0,0,OAC:SA:CTP124116,Europe/Paris,,OAC, +OAC:SP:124123,1,"L Eclair",43.462199,5.342895,0,0,OAC:SA:CTP120694,Europe/Paris,,OAC, +OAC:SP:124125,1,"Mitterrand",43.378836,5.351727,0,0,OET:SA:CTP30627,Europe/Paris,,OAC, +OAC:SP:124126,1,"Mitterrand",43.378296,5.352002,0,0,OET:SA:CTP30627,Europe/Paris,,OAC, +OAC:SP:124127,1,"Gavotte Mairie",43.379884,5.350747,0,0,OET:SA:CTP30530,Europe/Paris,,OAC, +OAC:SP:124128,1,"Gavotte Mairie",43.379684,5.350907,0,0,OET:SA:CTP30530,Europe/Paris,,OAC, +OAC:SP:124130,1,"Les Tabords",43.380107,5.348298,0,0,OET:SA:CTP30685,Europe/Paris,,OAC, +OAC:SP:124132,1,"Vieille route de la Gavotte",43.386545,5.34483,0,0,OAC:SA:CTP124132,Europe/Paris,,OAC, +OAC:SP:124133,1,"Le Clos Ideal",43.391535,5.341566,0,0,OET:SA:CTP30564,Europe/Paris,,OAC, +OAC:SP:124134,1,"Le Clos Ideal",43.39164,5.341438,0,0,OET:SA:CTP30564,Europe/Paris,,OAC, +OAC:SP:124142,1,"Le Clos de la Cadiere",43.418135,5.292763,0,0,OAC:SA:CTP124142,Europe/Paris,,OAC, +OAC:SP:124143,1,"Le Clos de la Cadiere",43.418108,5.292347,0,0,OAC:SA:CTP124142,Europe/Paris,,OAC, +OAC:SP:124152,1,"Clos Riant Les Frenes",43.436652,5.422363,0,0,OAC:SA:CTP124930,Europe/Paris,,OAC, +OAC:SP:124156,1,"Centre de Calas",43.459561,5.35334,0,0,OAC:SA:CTP124156,Europe/Paris,,OAC, +OAC:SP:124157,1,"Centre de Calas",43.459918,5.353358,0,0,OAC:SA:CTP124156,Europe/Paris,,OAC, +OAC:SP:124161,1,"Hotel de Ville",43.430685,5.434417,0,0,OAC:SA:CTP124161,Europe/Paris,,OAC, +OAC:SP:124172,1,"La Diote",43.42776,5.523566,0,0,OAC:SA:CTP124172,Europe/Paris,,OAC, +OAC:SP:124177,1,"La Plaine",43.418908,5.519894,0,0,OAC:SA:CTP124177,Europe/Paris,,OAC, +OAC:SP:124180,1,"Les Rampauds",43.413679,5.523007,0,0,OAE:SA:CTP40871,Europe/Paris,,OAC, +OAC:SP:124187,1,"Super Gassin",43.417194,5.514284,0,0,OAC:SA:CTP124187,Europe/Paris,,OAC, +OAC:SP:124188,1,"La Tour",43.417295,5.504922,0,0,OAC:SA:CTP124188,Europe/Paris,,OAC, +OAC:SP:124189,1,"La Tour",43.417423,5.504995,0,0,OAC:SA:CTP124188,Europe/Paris,,OAC, +OAC:SP:124194,1,"Les Vignes Basses",43.421933,5.506894,0,0,OAC:SA:CTP124194,Europe/Paris,,OAC, +OAC:SP:124196,1,"Les Rigauds",43.427551,5.489503,0,0,OAC:SA:CTP124196,Europe/Paris,,OAC, +OAC:SP:124198,1,"Chateau Bas",43.425978,5.486702,0,0,OAC:SA:CTP124198,Europe/Paris,,OAC, +OAC:SP:124200,1,"Ecole des Moulieres",43.4265,5.479455,0,0,OAC:SA:CTP124200,Europe/Paris,,OAC, +OAC:SP:124204,1,"Bastides Neuves",43.425128,5.492271,0,0,OAC:SA:CTP124204,Europe/Paris,,OAC, +OAC:SP:124206,1,"La Source",43.42517,5.486852,0,0,OAC:SA:CTP124206,Europe/Paris,,OAC, +OAC:SP:124209,1,"Les Fabres",43.430021,5.472872,0,0,OAC:SA:CTP124209,Europe/Paris,,OAC, +OAC:SP:124210,1,"Sire Marin",43.425169,5.47006,0,0,OAC:SA:CTP124210,Europe/Paris,,OAC, +OAC:SP:124211,1,"Sire Marin",43.425351,5.469454,0,0,OAC:SA:CTP124210,Europe/Paris,,OAC, +OAC:SP:124222,1,"Les Bastidons",43.475155,5.516321,0,0,OAC:SA:CTP124222,Europe/Paris,,OAC, +OAC:SP:124229,1,"Saint Charles",43.462792,5.610769,0,0,OAC:SA:CTP133037,Europe/Paris,,OAC, +OAC:SP:124235,1,"La Grande Bastide",43.470778,5.552869,0,0,OAC:SA:CTP124235,Europe/Paris,,OAC, +OAC:SP:124244,1,"Le Lavoir",43.524865,5.673067,0,0,OAC:SA:CTP124244,Europe/Paris,,OAC, +OAC:SP:124245,1,"Le Lavoir",43.525119,5.671766,0,0,OAC:SA:CTP124244,Europe/Paris,,OAC, +OAC:SP:124250,1,"Ecole de Chateauneuf le Rouge",43.489071,5.565978,0,0,OAC:SA:CTP124250,Europe/Paris,,OAC, +OAC:SP:124251,1,"Ecole de Chateauneuf le Rouge",43.488888,5.565629,0,0,OAC:SA:CTP124250,Europe/Paris,,OAC, +OAC:SP:124270,1,"La Treille",43.456279,5.607579,0,0,OAC:SA:CTP124270,Europe/Paris,,OAC, +OAC:SP:124271,1,"La Treille",43.455933,5.607243,0,0,OAC:SA:CTP124270,Europe/Paris,,OAC, +OAC:SP:124275,1,"Ecole Jean Jaures",43.448838,5.640808,0,0,OAC:SA:CTP124275,Europe/Paris,,OAC, +OAC:SP:124282,1,"Gautier",43.511389,5.545845,0,0,OAC:SA:CTP124282,Europe/Paris,,OAC, +OAC:SP:124300,1,"Lot Ste Victoire",43.526088,5.68611,0,0,OAC:SA:CTP124300,Europe/Paris,,OAC, +OAC:SP:124301,1,"Lot Ste Victoire",43.526039,5.686381,0,0,OAC:SA:CTP124300,Europe/Paris,,OAC, +OAC:SP:124306,1,"Maison Familiale",43.523111,5.677383,0,0,OAC:SA:CTP124306,Europe/Paris,,OAC, +OAC:SP:124307,1,"Maison Familiale",43.523001,5.677341,0,0,OAC:SA:CTP124306,Europe/Paris,,OAC, +OAC:SP:124310,1,"Les Ecoles",43.48185,5.624107,0,0,OAC:SA:CTP124310,Europe/Paris,,OAC, +OAC:SP:124311,1,"Les Ecoles",43.480852,5.624125,0,0,OAC:SA:CTP124310,Europe/Paris,,OAC, +OAC:SP:124328,1,"Le Stade",43.472031,5.496904,0,0,OAC:SA:CTP124328,Europe/Paris,,OAC, +OAC:SP:124424,1,"Le Frere",43.488866,5.376575,0,0,OAC:SA:CTP124424,Europe/Paris,,OAC, +OAC:SP:124425,1,"Le Frere",43.488705,5.376459,0,0,OAC:SA:CTP124424,Europe/Paris,,OAC, +OAC:SP:124435,1,"Garcin",43.692461,5.505408,0,0,OAC:SA:CTP124435,Europe/Paris,,OAC, +OAC:SP:124446,1,"Les Saugeonnes",43.417626,5.498988,0,0,OAC:SA:CTP124446,Europe/Paris,,OAC, +OAC:SP:124447,1,"Les Saugeonnes",43.418643,5.499276,0,0,OAC:SA:CTP124446,Europe/Paris,,OAC, +OAC:SP:124449,1,"La Roque",43.429348,5.452442,0,0,OAC:SA:CTP124449,Europe/Paris,,OAC, +OAC:SP:124451,1,"Cimetiere",43.429257,5.440639,0,0,OAC:SA:CTP124451,Europe/Paris,,OAC, +OAC:SP:124454,1,"La Mule",43.457185,5.40349,0,0,OAC:SA:CTP124454,Europe/Paris,,OAC, +OAC:SP:124455,1,"La Mule",43.456918,5.403526,0,0,OAC:SA:CTP124454,Europe/Paris,,OAC, +OAC:SP:124464,1,"Les Verans",43.548428,5.524075,0,0,OAC:SA:CTP124464,Europe/Paris,,OAC, +OAC:SP:124465,1,"Les Verans",43.548403,5.52432,0,0,OAC:SA:CTP124464,Europe/Paris,,OAC, +OAC:SP:124466,1,"Keyrie",43.540088,5.49203,0,0,OAC:SA:CTP124466,Europe/Paris,,OAC, +OAC:SP:124468,1,"Les 3 Chemins",43.535229,5.479444,0,0,OAC:SA:CTP124468,Europe/Paris,,OAC, +OAC:SP:124469,1,"Les 3 Chemins",43.535442,5.480436,0,0,OAC:SA:CTP124468,Europe/Paris,,OAC, +OAC:SP:124470,1,"Fontenaille",43.534058,5.460891,0,0,OAC:SA:CTP124470,Europe/Paris,,OAC, +OAC:SP:124471,1,"Fontenaille",43.533919,5.461124,0,0,OAC:SA:CTP124470,Europe/Paris,,OAC, +OAC:SP:124473,1,"Rotonde V. Hugo",43.525208,5.446154,0,0,OAC:SA:CTP124473,Europe/Paris,,OAC, +OAC:SP:124474,1,"Cassin",43.449215,5.679441,0,0,OAC:SA:CTP124474,Europe/Paris,,OAC, +OAC:SP:124475,1,"Cassin Quai 3",43.449406,5.679219,0,0,OAC:SA:CTP124475,Europe/Paris,,OAC, +OAC:SP:124476,1,"La Marniere",43.47137,5.607232,0,0,OAC:SA:CTP124476,Europe/Paris,,OAC, +OAC:SP:124477,1,"La Marniere",43.471461,5.607114,0,0,OAC:SA:CTP124476,Europe/Paris,,OAC, +OAC:SP:124479,1,"Grand Vallat",43.45192,5.557061,0,0,OAC:SA:CTP124479,Europe/Paris,,OAC, +OAC:SP:124482,1,"Puskaric",43.485037,5.491554,0,0,OAC:SA:CTP124482,Europe/Paris,,OAC, +OAC:SP:124484,1,"Maison Ste Victoire",43.519523,5.583769,0,0,OAC:SA:CTP124484,Europe/Paris,,OAC, +OAC:SP:124485,1,"Maison Ste Victoire",43.519626,5.583037,0,0,OAC:SA:CTP124484,Europe/Paris,,OAC, +OAC:SP:124486,1,"Camping",43.517494,5.541195,0,0,OAC:SA:CTP124486,Europe/Paris,,OAC, +OAC:SP:124488,1,"Les Valladets",43.544571,5.359134,0,0,OAC:SA:CTP124488,Europe/Paris,,OAC, +OAC:SP:124489,1,"Les Valladets",43.544511,5.359083,0,0,OAC:SA:CTP124488,Europe/Paris,,OAC, +OAC:SP:124490,1,"Les Corindons",43.545375,5.360982,0,0,OAC:SA:CTP124490,Europe/Paris,,OAC, +OAC:SP:124491,1,"Les Corindons",43.545413,5.361223,0,0,OAC:SA:CTP124490,Europe/Paris,,OAC, +OAC:SP:124492,1,"Tourmaline",43.54575,5.364117,0,0,OAC:SA:CTP124492,Europe/Paris,,OAC, +OAC:SP:124493,1,"Tourmaline",43.545856,5.363886,0,0,OAC:SA:CTP124492,Europe/Paris,,OAC, +OAC:SP:124494,1,"Serpentine",43.546027,5.366262,0,0,OAC:SA:CTP124494,Europe/Paris,,OAC, +OAC:SP:124495,1,"Serpentine",43.546091,5.36622,0,0,OAC:SA:CTP124494,Europe/Paris,,OAC, +OAC:SP:124502,1,"Paul Arene",43.689546,5.5096,0,0,OAC:SA:CTP124502,Europe/Paris,,OAC, +OAC:SP:124515,1,"Camping",43.526742,5.682426,0,0,OAC:SA:CTP124515,Europe/Paris,,OAC, +OAC:SP:124521,1,"Tarascon",43.696118,5.52117,0,0,OAC:SA:CTP124521,Europe/Paris,,OAC, +OAC:SP:124533,1,"La Croix de Gon",43.697961,5.478591,0,0,OAC:SA:CTP124533,Europe/Paris,,OAC, +OAC:SP:124536,1,"Setti de Barba",43.691391,5.494016,0,0,OAC:SA:CTP124536,Europe/Paris,,OAC, +OAC:SP:124537,1,"Setti de Barba",43.691589,5.493363,0,0,OAC:SA:CTP124536,Europe/Paris,,OAC, +OAC:SP:124552,1,"Pierre Plantee",43.694187,5.491211,0,0,OAC:SA:CTP124552,Europe/Paris,,OAC, +OAC:SP:124556,1,"Mas d Aubere",43.570901,5.468347,0,0,OAC:SA:CTP124556,Europe/Paris,,OAC, +OAC:SP:124557,1,"Mas d Aubere",43.571233,5.468789,0,0,OAC:SA:CTP124556,Europe/Paris,,OAC, +OAC:SP:124558,1,"La Petite Mignarde",43.566922,5.465235,0,0,OAC:SA:CTP124558,Europe/Paris,,OAC, +OAC:SP:124559,1,"La Petite Mignarde",43.567377,5.465587,0,0,OAC:SA:CTP124558,Europe/Paris,,OAC, +OAC:SP:124560,1,"Gare SNCF",43.684822,5.503725,0,0,OAC:SA:CTP124560,Europe/Paris,,OAC, +OAC:SP:124562,1,"Les Genets",43.690578,5.519789,0,0,OAC:SA:CTP124562,Europe/Paris,,OAC, +OAC:SP:124563,1,"Les Genets",43.690669,5.519724,0,0,OAC:SA:CTP124562,Europe/Paris,,OAC, +OAC:SP:124564,1,"Pierre Augier",43.691447,5.517567,0,0,OAC:SA:CTP124564,Europe/Paris,,OAC, +OAC:SP:124565,1,"Pierre Augier",43.691338,5.517689,0,0,OAC:SA:CTP124564,Europe/Paris,,OAC, +OAC:SP:124580,1,"La Treille Muscate",43.691449,5.49612,0,0,OAC:SA:CTP124580,Europe/Paris,,OAC, +OAC:SP:124581,1,"La Treille Muscate",43.691378,5.496545,0,0,OAC:SA:CTP124580,Europe/Paris,,OAC, +OAC:SP:124582,1,"Fontaine Maurel",43.689098,5.499438,0,0,OAC:SA:CTP124582,Europe/Paris,,OAC, +OAC:SP:124586,1,"8 Mai 1945",43.684057,5.501469,0,0,OAC:SA:CTP124586,Europe/Paris,,OAC, +OAC:SP:124590,1,"ZAC Terre du Fort",43.676866,5.500934,0,0,OAC:SA:CTP124590,Europe/Paris,,OAC, +OAC:SP:124592,1,"Le Gue",43.695341,5.495943,0,0,OAC:SA:CTP124592,Europe/Paris,,OAC, +OAC:SP:124596,1,"La Devalade",43.696948,5.500101,0,0,OAC:SA:CTP124596,Europe/Paris,,OAC, +OAC:SP:124598,1,"Les Jardins",43.698193,5.50187,0,0,OAC:SA:CTP124598,Europe/Paris,,OAC, +OAC:SP:124600,1,"Le Pont de Leze",43.699104,5.504426,0,0,OAC:SA:CTP124600,Europe/Paris,,OAC, +OAC:SP:124602,1,"Rollin",43.691525,5.504666,0,0,OAC:SA:CTP124602,Europe/Paris,,OAC, +OAC:SP:124603,1,"Rollin",43.691471,5.504683,0,0,OAC:SA:CTP124602,Europe/Paris,,OAC, +OAC:SP:124606,1,"Le Flora",43.691634,5.521625,0,0,OAC:SA:CTP124606,Europe/Paris,,OAC, +OAC:SP:124607,1,"Le Flora",43.691749,5.521966,0,0,OAC:SA:CTP124606,Europe/Paris,,OAC, +OAC:SP:124608,1,"Farigoule",43.69143,5.524424,0,0,OAC:SA:CTP124608,Europe/Paris,,OAC, +OAC:SP:124609,1,"Farigoule",43.691203,5.524046,0,0,OAC:SA:CTP124608,Europe/Paris,,OAC, +OAC:SP:124612,1,"Le Claux",43.694077,5.531001,0,0,OAC:SA:CTP124612,Europe/Paris,,OAC, +OAC:SP:124613,1,"Le Claux",43.694139,5.531021,0,0,OAC:SA:CTP124612,Europe/Paris,,OAC, +OAC:SP:124614,1,"Boiry",43.695096,5.528955,0,0,OAC:SA:CTP124614,Europe/Paris,,OAC, +OAC:SP:124615,1,"Boiry",43.695074,5.528793,0,0,OAC:SA:CTP124614,Europe/Paris,,OAC, +OAC:SP:124616,1,"Republique",43.691644,5.500044,0,0,OAC:SA:CTP124616,Europe/Paris,,OAC, +OAC:SP:124617,1,"Republique",43.691413,5.500622,0,0,OAC:SA:CTP124616,Europe/Paris,,OAC, +OAC:SP:124618,1,"St Colome",43.704313,5.505038,0,0,OAC:SA:CTP124618,Europe/Paris,,OAC, +OAC:SP:124620,1,"Jean Moulin",43.700083,5.505474,0,0,OAC:SA:CTP124620,Europe/Paris,,OAC, +OAC:SP:124622,1,"Hameau de Beaumont",43.695784,5.486374,0,0,OAC:SA:CTP124622,Europe/Paris,,OAC, +OAC:SP:124626,1,"Les Moulieres",43.697255,5.48222,0,0,OAC:SA:CTP124626,Europe/Paris,,OAC, +OAC:SP:124635,1,"Les Robinsons",43.563206,5.359112,0,0,OAC:SA:CTP124635,Europe/Paris,,OAC, +OAC:SP:124636,1,"Croze Cascabel",43.424395,5.290422,0,0,OET:SA:CTP30098,Europe/Paris,,OAC, +OAC:SP:124637,1,"Croze Cascabel",43.424231,5.290381,0,0,OET:SA:CTP30098,Europe/Paris,,OAC, +OAC:SP:124638,1,"La Cadiere",43.427047,5.291056,0,0,OET:SA:CTP30100,Europe/Paris,,OAC, +OAC:SP:124639,1,"La Cadiere",43.427179,5.290925,0,0,OET:SA:CTP30100,Europe/Paris,,OAC, +OAC:SP:124642,1,"Marcel Pagnol",43.526645,5.423881,0,0,OAC:SA:CTP124642,Europe/Paris,,OAC, +OAC:SP:124643,1,"Marcel Pagnol",43.52619,5.423968,0,0,OAC:SA:CTP124642,Europe/Paris,,OAC, +OAC:SP:124644,1,"National",43.653591,5.260249,0,0,OAC:SA:CTP124644,Europe/Paris,,OAC, +OAC:SP:124654,1,"Centre Saint Paul",43.685715,5.707688,0,0,OAC:SA:CTP124654,Europe/Paris,,OAC, +OAC:SP:124657,1,"La Jonquiere",43.55693,5.549344,0,0,OAC:SA:CTP124657,Europe/Paris,,OAC, +OAC:SP:124658,1,"Les Bourgarels",43.556383,5.555458,0,0,OAC:SA:CTP124658,Europe/Paris,,OAC, +OAC:SP:124660,1,"La Jonquiere",43.556983,5.549175,0,0,OAC:SA:CTP124657,Europe/Paris,,OAC, +OAC:SP:124661,1,"Les Bourgarels",43.556264,5.556057,0,0,OAC:SA:CTP124658,Europe/Paris,,OAC, +OAC:SP:124662,1,"Village Haut",43.555938,5.603667,0,0,OAC:SA:CTP124662,Europe/Paris,,OAC, +OAC:SP:124663,1,"Mouret",43.520071,5.435088,0,0,OAC:SA:CTP124663,Europe/Paris,,OAC, +OAC:SP:124666,1,"La Muscatelle",43.483077,5.544076,0,0,OAC:SA:CTP124666,Europe/Paris,,OAC, +OAC:SP:124668,1,"Escandihado",43.458221,5.412517,0,0,OAC:SA:CTP120594,Europe/Paris,,OAC, +OAC:SP:124669,1,"Les Cayols",43.429309,5.404545,0,0,OAC:SA:CTP124669,Europe/Paris,,OAC, +OAC:SP:124670,1,"Les Cayols",43.429437,5.40558,0,0,OAC:SA:CTP124669,Europe/Paris,,OAC, +OAC:SP:124674,1,"Montee des Pins",43.442774,5.439915,0,0,OAC:SA:CTP124674,Europe/Paris,,OAC, +OAC:SP:124681,1,"Village des Ormeaux",43.432161,5.424745,0,0,OAC:SA:CTP124681,Europe/Paris,,OAC, +OAC:SP:124682,1,"Village des Ormeaux",43.431947,5.424805,0,0,OAC:SA:CTP124681,Europe/Paris,,OAC, +OAC:SP:124691,1,"Le Couloubleau",43.634154,5.641954,0,0,OAC:SA:CTP124691,Europe/Paris,,OAC, +OAC:SP:124695,1,"Saint Esprit",43.636864,5.642457,0,0,OAC:SA:CTP124695,Europe/Paris,,OAC, +OAC:SP:124697,1,"Mairie",43.636997,5.638388,0,0,OAC:SA:CTP124697,Europe/Paris,,OAC, +OAC:SP:124698,1,"Mairie",43.637054,5.638157,0,0,OAC:SA:CTP124697,Europe/Paris,,OAC, +OAC:SP:124704,1,"Arago",43.492486,5.355333,0,0,OAC:SA:CTP124704,Europe/Paris,,OAC, +OAC:SP:124733,1,"La Beauvalle",43.514701,5.442736,0,0,OAC:SA:CTP124733,Europe/Paris,,OAC, +OAC:SP:124734,1,"La Beauvalle",43.514707,5.442593,0,0,OAC:SA:CTP124733,Europe/Paris,,OAC, +OAC:SP:124803,1,"Bonaparte",43.52663,5.444518,0,0,OAC:SA:CTP124803,Europe/Paris,,OAC, +OAC:SP:124813,1,"Scotto",43.52501,5.428744,0,0,OAC:SA:CTP124813,Europe/Paris,,OAC, +OAC:SP:124814,1,"Scotto",43.524868,5.428718,0,0,OAC:SA:CTP124813,Europe/Paris,,OAC, +OAC:SP:124817,1,"Saint Benoit",43.514126,5.462292,0,0,OAC:SA:CTP123819,Europe/Paris,,OAC, +OAC:SP:124827,1,"Saint Pierre",43.523021,5.456146,0,0,OAC:SA:CTP124827,Europe/Paris,,OAC, +OAC:SP:124828,1,"Saint Pierre",43.52298,5.455976,0,0,OAC:SA:CTP124827,Europe/Paris,,OAC, +OAC:SP:124829,1,"Saint Thomas",43.531215,5.456825,0,0,OAC:SA:CTP124829,Europe/Paris,,OAC, +OAC:SP:124844,1,"Zola",43.532914,5.455156,0,0,OAC:SA:CTP124844,Europe/Paris,,OAC, +OAC:SP:124845,1,"Zola",43.532891,5.45483,0,0,OAC:SA:CTP124844,Europe/Paris,,OAC, +OAC:SP:124858,1,"Philibert",43.494808,5.342897,0,0,OAC:SA:CTP124858,Europe/Paris,,OAC, +OAC:SP:124859,1,"Philibert",43.494882,5.342673,0,0,OAC:SA:CTP124858,Europe/Paris,,OAC, +OAC:SP:124860,1,"Descartes",43.495503,5.347587,0,0,OAC:SA:CTP124860,Europe/Paris,,OAC, +OAC:SP:124861,1,"Descartes",43.495812,5.346993,0,0,OAC:SA:CTP124860,Europe/Paris,,OAC, +OAC:SP:124862,1,"Petit Nice",43.533806,5.462525,0,0,OAC:SA:CTP134089,Europe/Paris,,OAC, +OAC:SP:124863,1,"Quai Saint Louis N 1",43.53098,5.452142,0,0,OAC:SA:CTP124863,Europe/Paris,,OAC, +OAC:SP:124871,1,"Malherbe",43.523889,5.447189,0,0,OAC:SA:CTP124871,Europe/Paris,,OAC, +OAC:SP:124876,1,"CLG de la chesneraie",43.573197,5.434915,0,0,OAC:SA:CTP124876,Europe/Paris,,OAC, +OAC:SP:124877,1,"Roger Bernard",43.689865,5.512743,0,0,OAC:SA:CTP124877,Europe/Paris,,OAC, +OAC:SP:124878,1,"Roger Bernard",43.689775,5.512747,0,0,OAC:SA:CTP124877,Europe/Paris,,OAC, +OAC:SP:124879,1,"Le Claret",43.692612,5.514327,0,0,OAC:SA:CTP124879,Europe/Paris,,OAC, +OAC:SP:124880,1,"Notre Dame des Anges",43.694523,5.488997,0,0,OAC:SA:CTP124880,Europe/Paris,,OAC, +OAC:SP:124881,1,"Vieux moulin",43.689682,5.498923,0,0,OAC:SA:CTP124881,Europe/Paris,,OAC, +OAC:SP:124883,1,"Les Moulins",43.688506,5.497002,0,0,OAC:SA:CTP124883,Europe/Paris,,OAC, +OAC:SP:124885,1,"Dourdouille",43.685403,5.501401,0,0,OAC:SA:CTP124885,Europe/Paris,,OAC, +OAC:SP:124887,1,"Plaine du Chateau",43.688754,5.502793,0,0,OAC:SA:CTP124887,Europe/Paris,,OAC, +OAC:SP:124892,1,"Renardiere Ecole",43.416934,5.298879,0,0,OET:SA:CTP30484,Europe/Paris,,OAC, +OAC:SP:124893,1,"Ch. du Pas de la Mue",43.414774,5.300279,0,0,OET:SA:CTP30562,Europe/Paris,,OAC, +OAC:SP:124894,1,"Fontlebre",43.550667,5.456817,0,0,OAC:SA:CTP124894,Europe/Paris,,OAC, +OAC:SP:124904,1,"Luberon",43.695954,5.512077,0,0,OAC:SA:CTP124904,Europe/Paris,,OAC, +OAC:SP:124906,1,"La Diane",43.694896,5.504789,0,0,OAC:SA:CTP124906,Europe/Paris,,OAC, +OAC:SP:124907,1,"Bonnaud",43.689833,5.504525,0,0,OAC:SA:CTP124907,Europe/Paris,,OAC, +OAC:SP:124908,1,"Chapelle St Roch",43.687869,5.50557,0,0,OAC:SA:CTP124908,Europe/Paris,,OAC, +OAC:SP:124913,1,"Brassens",43.691278,5.502616,0,0,OAC:SA:CTP124913,Europe/Paris,,OAC, +OAC:SP:124914,1,"Les Condamines",43.691581,5.532817,0,0,OAC:SA:CTP124914,Europe/Paris,,OAC, +OAC:SP:124915,1,"Leon Arnoux",43.690385,5.506988,0,0,OAC:SA:CTP124915,Europe/Paris,,OAC, +OAC:SP:124916,1,"Les Festons",43.692932,5.508023,0,0,OAC:SA:CTP124916,Europe/Paris,,OAC, +OAC:SP:124927,1,"Beausoleil",43.464632,5.413931,0,0,OAC:SA:CTP120573,Europe/Paris,,OAC, +OAC:SP:124929,1,"Chateaubriand",43.444154,5.41709,0,0,OAC:SA:CTP120577,Europe/Paris,,OAC, +OAC:SP:124930,1,"Clos Riant Les Frenes",43.436476,5.421639,0,0,OAC:SA:CTP124930,Europe/Paris,,OAC, +OAC:SP:124931,1,"Collet Blanc",43.447733,5.438352,0,0,OAC:SA:CTP120563,Europe/Paris,,OAC, +OAC:SP:124932,1,"Cougnaou",43.44638,5.410797,0,0,OAC:SA:CTP120565,Europe/Paris,,OAC, +OAC:SP:124933,1,"La Salle Le Merle",43.43747,5.424125,0,0,OAC:SA:CTP120571,Europe/Paris,,OAC, +OAC:SP:124934,1,"Lou Cantounet",43.439672,5.416899,0,0,OAC:SA:CTP120595,Europe/Paris,,OAC, +OAC:SP:124935,1,"Montaury",43.440219,5.405368,0,0,OAC:SA:CTP120596,Europe/Paris,,OAC, +OAC:SP:124936,1,"Sainte Anne",43.453946,5.414476,0,0,OAC:SA:CTP120598,Europe/Paris,,OAC, +OAC:SP:124937,1,"Prevert",43.447808,5.432784,0,0,OAC:SA:CTP120597,Europe/Paris,,OAC, +OAC:SP:124938,1,"Ecole de la Tour",43.41659,5.505087,0,0,OAE:SA:CTP40868,Europe/Paris,,OAC, +OAC:SP:124947,1,"Les Platanes",43.447322,5.419006,0,0,OAC:SA:CTP124947,Europe/Paris,,OAC, +OAC:SP:124948,1,"Vallon de Simiane",43.430853,5.425575,0,0,OAC:SA:CTP124948,Europe/Paris,,OAC, +OAC:SP:124949,1,"Vallon de Simiane",43.430896,5.425498,0,0,OAC:SA:CTP124948,Europe/Paris,,OAC, +OAC:SP:124950,1,"Le Jabouret",43.427147,5.43898,0,0,OAC:SA:CTP124950,Europe/Paris,,OAC, +OAC:SP:124966,1,"Lagremeuse",43.478782,5.356386,0,0,OAC:SA:CTP123670,Europe/Paris,,OAC, +OAC:SP:124985,1,"La Cardeline",43.4884,5.554755,0,0,OAC:SA:CTP124985,Europe/Paris,,OAC, +OAC:SP:124986,1,"La Cardeline",43.488433,5.554816,0,0,OAC:SA:CTP124985,Europe/Paris,,OAC, +OAC:SP:124987,1,"Le Portaou",43.417636,5.517699,0,0,OAC:SA:CTP124987,Europe/Paris,,OAC, +OAC:SP:124990,1,"Vallon",43.42851,5.530981,0,0,OAC:SA:CTP124990,Europe/Paris,,OAC, +OAC:SP:124992,1,"Font de Rigon",43.417283,5.517107,0,0,OAC:SA:CTP124992,Europe/Paris,,OAC, +OAC:SP:124994,1,"Les Geines",43.424282,5.500617,0,0,OAC:SA:CTP124994,Europe/Paris,,OAC, +OAC:SP:124997,1,"La Creche de Mimet",43.426673,5.487299,0,0,OAC:SA:CTP124997,Europe/Paris,,OAC, +OAC:SP:124999,1,"Giono",43.422753,5.498188,0,0,OAC:SA:CTP124999,Europe/Paris,,OAC, +OAC:SP:125002,1,"L OPAC",43.4285,5.479824,0,0,OAC:SA:CTP125002,Europe/Paris,,OAC, +OAC:SP:125004,1,"Roi Rene",43.523945,5.449861,0,0,OAC:SA:CTP125004,Europe/Paris,,OAC, +OAC:SP:125007,1,"CLG Font d Aurumy",43.445849,5.559301,0,0,OAC:SA:CTP125007,Europe/Paris,,OAC, +OAC:SP:125008,1,"CLG Font d Aurumy",43.446003,5.559483,0,0,OAC:SA:CTP125007,Europe/Paris,,OAC, +OAC:SP:125017,1,"Les Ribas",43.484509,5.615205,0,0,OAC:SA:CTP125017,Europe/Paris,,OAC, +OAC:SP:125018,1,"Les Ribas",43.485293,5.614646,0,0,OAC:SA:CTP125017,Europe/Paris,,OAC, +OAC:SP:125019,1,"Les Plaines",43.55589,5.570318,0,0,OAC:SA:CTP122679,Europe/Paris,,OAC, +OAC:SP:125025,1,"Ouest",43.555283,5.59782,0,0,OAC:SA:CTP122686,Europe/Paris,,OAC, +OAC:SP:125044,1,"Peytral",43.532101,5.456885,0,0,OAC:SA:CTP125044,Europe/Paris,,OAC, +OAC:SP:125046,1,"Les Moulieres La Source",43.423711,5.480167,0,0,OAC:SA:CTP125046,Europe/Paris,,OAC, +OAC:SP:125047,1,"Les Moulieres La Source",43.423888,5.479264,0,0,OAC:SA:CTP125046,Europe/Paris,,OAC, +OAC:SP:125051,1,"Plan de Campagne",43.421482,5.367598,0,0,OAC:SA:CTP125051,Europe/Paris,,OAC, +OAC:SP:125052,1,"Plan de Campagne",43.421043,5.367155,0,0,OAC:SA:CTP125051,Europe/Paris,,OAC, +OAC:SP:125057,1,"Grande Avenue",43.417694,5.35806,0,0,OAC:SA:CTP125057,Europe/Paris,,OAC, +OAC:SP:125058,1,"Grande Avenue",43.417654,5.358475,0,0,OAC:SA:CTP125057,Europe/Paris,,OAC, +OAC:SP:125062,1,"8 mai 1945",43.456298,5.558347,0,0,OAC:SA:CTP125062,Europe/Paris,,OAC, +OAC:SP:125063,1,"8 mai 1945",43.456323,5.558497,0,0,OAC:SA:CTP125062,Europe/Paris,,OAC, +OAC:SP:125064,1,"Nativite",43.512449,5.438395,0,0,OAC:SA:CTP125064,Europe/Paris,,OAC, +OAC:SP:125068,1,"Ecole de la Barque",43.478343,5.538522,0,0,OAC:SA:CTP125068,Europe/Paris,,OAC, +OAC:SP:125070,1,"Les Pallieres",43.525387,5.677534,0,0,OAC:SA:CTP125070,Europe/Paris,,OAC, +OAC:SP:125071,1,"Les Pallieres",43.525335,5.677553,0,0,OAC:SA:CTP125070,Europe/Paris,,OAC, +OAC:SP:125074,1,"Archimede",43.491629,5.33932,0,0,OAC:SA:CTP125074,Europe/Paris,,OAC, +OAC:SP:125075,1,"Archimede",43.491469,5.338873,0,0,OAC:SA:CTP125074,Europe/Paris,,OAC, +OAC:SP:125084,1,"La Brasse",43.458105,5.375243,0,0,OAC:SA:CTP125084,Europe/Paris,,OAC, +OAC:SP:125085,1,"La Brasse",43.458523,5.374158,0,0,OAC:SA:CTP125084,Europe/Paris,,OAC, +OAC:SP:125086,1,"Le Village",43.489728,5.566758,0,0,OAC:SA:CTP125086,Europe/Paris,,OAC, +OAC:SP:125087,1,"Arsene Sari",43.487924,5.562106,0,0,OAC:SA:CTP125087,Europe/Paris,,OAC, +OAC:SP:125088,1,"Arsene Sari",43.48793,5.56235,0,0,OAC:SA:CTP125087,Europe/Paris,,OAC, +OAC:SP:125091,1,"Petit Nice",43.449655,5.428368,0,0,OAC:SA:CTP125091,Europe/Paris,,OAC, +OAC:SP:125092,1,"Petit Nice",43.449536,5.4286,0,0,OAC:SA:CTP125091,Europe/Paris,,OAC, +OAC:SP:125094,1,"Victor Hugo",43.691942,5.498907,0,0,OAC:SA:CTP125094,Europe/Paris,,OAC, +OAC:SP:125095,1,"Victor Hugo",43.692024,5.499097,0,0,OAC:SA:CTP125094,Europe/Paris,,OAC, +OAC:SP:125096,1,"MFR Garachon",43.675037,5.216827,0,0,OAC:SA:CTP125096,Europe/Paris,,OAC, +OAC:SP:125106,1,"Val de Tourame",43.590302,5.472253,0,0,OAC:SA:CTP125106,Europe/Paris,,OAC, +OAC:SP:125108,1,"Les Residences",43.596738,5.475904,0,0,OAC:SA:CTP125108,Europe/Paris,,OAC, +OAC:SP:125115,1,"Molx",43.429517,5.456272,0,0,OAC:SA:CTP125115,Europe/Paris,,OAC, +OAC:SP:125116,1,"Molx",43.429417,5.456368,0,0,OAC:SA:CTP125115,Europe/Paris,,OAC, +OAC:SP:125123,1,"Pignan",43.419771,5.447771,0,0,OAC:SA:CTP125123,Europe/Paris,,OAC, +OAC:SP:125144,1,"Magellan",43.494626,5.355683,0,0,OAC:SA:CTP125144,Europe/Paris,,OAC, +OAC:SP:125145,1,"Magellan",43.494385,5.35587,0,0,OAC:SA:CTP125144,Europe/Paris,,OAC, +OAC:SP:125148,1,"CEA Cadarache",43.700757,5.742096,0,0,OAC:SA:CTP125148,Europe/Paris,,OAC, +OAC:SP:125149,1,"CEA Cadarache",43.700606,5.742151,0,0,OAC:SA:CTP125148,Europe/Paris,,OAC, +OAC:SP:125150,1,"Centre Saint Paul",43.685561,5.709373,0,0,OAC:SA:CTP124654,Europe/Paris,,OAC, +OAC:SP:127114,1,"Barlatier",43.49265,5.527051,0,0,OAC:SA:CTP127114,Europe/Paris,,OAC, +OAC:SP:127115,1,"Barlatier",43.492476,5.527132,0,0,OAC:SA:CTP127114,Europe/Paris,,OAC, +OAC:SP:127118,1,"Clos du Roy",43.620295,5.307074,0,0,OAC:SA:CTP127118,Europe/Paris,,OAC, +OAC:SP:127119,1,"Clos du Roy",43.620252,5.307084,0,0,OAC:SA:CTP127118,Europe/Paris,,OAC, +OAC:SP:127120,1,"PAE La Pile Budeou",43.612684,5.324038,0,0,OAC:SA:CTP127120,Europe/Paris,,OAC, +OAC:SP:127121,1,"PAE La Pile Budeou",43.612652,5.323854,0,0,OAC:SA:CTP127120,Europe/Paris,,OAC, +OAC:SP:127124,1,"Gendarmerie",43.479155,5.615936,0,0,OAC:SA:CTP127124,Europe/Paris,,OAC, +OAC:SP:127128,1,"Imbert",43.467778,5.613229,0,0,OAC:SA:CTP127128,Europe/Paris,,OAC, +OAC:SP:127129,1,"Imbert",43.468142,5.613012,0,0,OAC:SA:CTP127128,Europe/Paris,,OAC, +OAC:SP:127131,1,"Vacher",43.46436,5.611606,0,0,OAC:SA:CTP127131,Europe/Paris,,OAC, +OAC:SP:127132,1,"Vacher",43.464254,5.611356,0,0,OAC:SA:CTP127131,Europe/Paris,,OAC, +OAC:SP:127136,1,"La Garenne",43.450649,5.630531,0,0,OAC:SA:CTP127136,Europe/Paris,,OAC, +OAC:SP:127137,1,"La Garenne",43.450694,5.630501,0,0,OAC:SA:CTP127136,Europe/Paris,,OAC, +OAC:SP:127139,1,"Les Michels Bas",43.448691,5.604262,0,0,OAC:SA:CTP127139,Europe/Paris,,OAC, +OAC:SP:127140,1,"Les Michels Bas",43.448871,5.604659,0,0,OAC:SA:CTP127139,Europe/Paris,,OAC, +OAC:SP:127142,1,"Les Chaurets",43.452187,5.621127,0,0,OAC:SA:CTP127142,Europe/Paris,,OAC, +OAC:SP:127143,1,"Les Chaurets",43.452233,5.620607,0,0,OAC:SA:CTP127142,Europe/Paris,,OAC, +OAC:SP:127155,1,"Eglise",43.636992,5.634517,0,0,OAC:SA:CTP127155,Europe/Paris,,OAC, +OAC:SP:127156,1,"Eglise",43.637067,5.634553,0,0,OAC:SA:CTP127155,Europe/Paris,,OAC, +OAC:SP:127158,1,"De Gaulle",43.565351,5.376702,0,0,OAC:SA:CTP120988,Europe/Paris,,OAC, +OAC:SP:127160,1,"Les Figons",43.559516,5.3815,0,0,OAC:SA:CTP120987,Europe/Paris,,OAC, +OAC:SP:127169,1,"Les Pinchinades M.Pagnol",43.425666,5.294691,0,0,OET:SA:CTP30570,Europe/Paris,,OAC, +OAC:SP:127170,1,"Les Pinchinades M.Pagnol",43.425678,5.294433,0,0,OET:SA:CTP30570,Europe/Paris,,OAC, +OAC:SP:127172,1,"Val de Croy",43.421667,5.297226,0,0,OET:SA:CTP30482,Europe/Paris,,OAC, +OAC:SP:127177,1,"Vincent Scotto",43.637746,5.52636,0,0,OAC:SA:CTP127177,Europe/Paris,,OAC, +OAC:SP:127180,1,"Saint Andre",43.651689,5.480817,0,0,OAC:SA:CTP127180,Europe/Paris,,OAC, +OAC:SP:127181,1,"Saint Andre",43.651582,5.480785,0,0,OAC:SA:CTP127180,Europe/Paris,,OAC, +OAC:SP:127183,1,"Ecole",43.663762,5.439498,0,0,OAC:SA:CTP127183,Europe/Paris,,OAC, +OAC:SP:127186,1,"Les Noisetiers",43.622419,5.459207,0,0,OAC:SA:CTP127186,Europe/Paris,,OAC, +OAC:SP:127192,1,"Sauvecanne",43.42958,5.403661,0,0,OAC:SA:CTP127192,Europe/Paris,,OAC, +OAC:SP:127220,1,"Bellegarde",43.53236,5.452069,0,0,OAC:SA:CTP123809,Europe/Paris,,OAC, +OAC:SP:127236,1,"L Oliveraie",43.451554,5.415623,0,0,OAC:SA:CTP127236,Europe/Paris,,OAC, +OAC:SP:127237,1,"L Oliveraie",43.451419,5.41613,0,0,OAC:SA:CTP127236,Europe/Paris,,OAC, +OAC:SP:127241,1,"Centre Medical",43.638557,5.618231,0,0,OAC:SA:CTP127241,Europe/Paris,,OAC, +OAC:SP:127242,1,"Centre Medical",43.638681,5.617937,0,0,OAC:SA:CTP127241,Europe/Paris,,OAC, +OAC:SP:127342,1,"Aigue Vive",43.486193,5.628386,0,0,OAC:SA:CTP127342,Europe/Paris,,OAC, +OAC:SP:127407,1,"Le Petit Colomblier",43.636197,5.643085,0,0,OAC:SA:CTP127407,Europe/Paris,,OAC, +OAC:SP:127410,1,"Fabregues",43.568419,5.343846,0,0,OAC:SA:CTP127410,Europe/Paris,,OAC, +OAC:SP:127412,1,"Caire Val",43.696473,5.339703,0,0,OAC:SA:CTP127412,Europe/Paris,,OAC, +OAC:SP:127413,1,"Caire Val",43.696375,5.339749,0,0,OAC:SA:CTP127412,Europe/Paris,,OAC, +OAC:SP:127415,1,"Coste",43.692715,5.336474,0,0,OAC:SA:CTP127415,Europe/Paris,,OAC, +OAC:SP:127416,1,"Coste",43.692601,5.336506,0,0,OAC:SA:CTP127415,Europe/Paris,,OAC, +OAC:SP:127418,1,"Sousville",43.682401,5.328713,0,0,OAC:SA:CTP127418,Europe/Paris,,OAC, +OAC:SP:127419,1,"Sousville",43.68248,5.329018,0,0,OAC:SA:CTP127418,Europe/Paris,,OAC, +OAC:SP:127421,1,"Garrigues",43.664265,5.327462,0,0,OAC:SA:CTP127421,Europe/Paris,,OAC, +OAC:SP:127422,1,"Garrigues",43.664468,5.326944,0,0,OAC:SA:CTP127421,Europe/Paris,,OAC, +OAC:SP:127432,1,"Le Moulinet",43.44894,5.384758,0,0,OAC:SA:CTP127432,Europe/Paris,,OAC, +OAC:SP:127434,1,"Le Moulinet",43.448881,5.385021,0,0,OAC:SA:CTP127432,Europe/Paris,,OAC, +OAC:SP:127435,1,"Bartavelles",43.448834,5.39025,0,0,OAC:SA:CTP127435,Europe/Paris,,OAC, +OAC:SP:127437,1,"Bartavelles",43.448692,5.39032,0,0,OAC:SA:CTP127435,Europe/Paris,,OAC, +OAC:SP:127438,1,"Estelan",43.662212,5.338854,0,0,OAC:SA:CTP127438,Europe/Paris,,OAC, +OAC:SP:127440,1,"Estelan",43.66237,5.338761,0,0,OAC:SA:CTP127438,Europe/Paris,,OAC, +OAC:SP:127442,1,"Les Platanes",43.44738,5.419012,0,0,OAC:SA:CTP124947,Europe/Paris,,OAC, +OAC:SP:127443,1,"Silvacane",43.530763,5.43966,0,0,OAC:SA:CTP127443,Europe/Paris,,OAC, +OAC:SP:127445,1,"Bourse",43.532203,5.445217,0,0,OAC:SA:CTP127445,Europe/Paris,,OAC, +OAC:SP:127447,1,"Complexe Sportif",43.57356,5.345268,0,0,OAC:SA:CTP127447,Europe/Paris,,OAC, +OAC:SP:127454,1,"Lignane",43.585775,5.369319,0,0,OAC:SA:CTP127454,Europe/Paris,,OAC, +OAC:SP:127455,1,"Lignane",43.5857,5.369088,0,0,OAC:SA:CTP127454,Europe/Paris,,OAC, +OAC:SP:127456,1,"Gare du Pey Blanc",43.545511,5.398158,0,0,OAC:SA:CTP127456,Europe/Paris,,OAC, +OAC:SP:127457,1,"Gare du Pey Blanc",43.545689,5.398381,0,0,OAC:SA:CTP127456,Europe/Paris,,OAC, +OAC:SP:127458,1,"Residence du Pey Blanc",43.543442,5.403138,0,0,OAC:SA:CTP127458,Europe/Paris,,OAC, +OAC:SP:127460,1,"Residence du Pey Blanc",43.543081,5.403991,0,0,OAC:SA:CTP127458,Europe/Paris,,OAC, +OAC:SP:127462,1,"Village",43.4517,5.413626,0,0,OAC:SA:CTP127462,Europe/Paris,,OAC, +OAC:SP:127464,1,"Village",43.452056,5.413312,0,0,OAC:SA:CTP127462,Europe/Paris,,OAC, +OAC:SP:127465,1,"Calas Village",43.46079,5.353629,0,0,OAC:SA:CTP127465,Europe/Paris,,OAC, +OAC:SP:127471,1,"Pre Bosque",43.644014,5.503521,0,0,OAC:SA:CTP127471,Europe/Paris,,OAC, +OAC:SP:127473,1,"Pre Bosque",43.6441,5.503979,0,0,OAC:SA:CTP127471,Europe/Paris,,OAC, +OAC:SP:127476,1,"Mime",43.468877,5.559847,0,0,OAC:SA:CTP127476,Europe/Paris,,OAC, +OAC:SP:127480,1,"Pellegrin",43.478137,5.568789,0,0,OAC:SA:CTP127480,Europe/Paris,,OAC, +OAC:SP:127494,1,"Les Vertus",43.44543,5.55574,0,0,OAC:SA:CTP127494,Europe/Paris,,OAC, +OAC:SP:127496,1,"Les Vertus",43.445314,5.55578,0,0,OAC:SA:CTP127494,Europe/Paris,,OAC, +OAC:SP:127500,1,"Domaine des Michels",43.451202,5.593404,0,0,OAC:SA:CTP127500,Europe/Paris,,OAC, +OAC:SP:127508,1,"Restanques",43.461641,5.418209,0,0,OAC:SA:CTP127508,Europe/Paris,,OAC, +OAC:SP:127510,1,"Cezanne",43.524121,5.664775,0,0,OAC:SA:CTP127510,Europe/Paris,,OAC, +OAC:SP:127512,1,"Cezanne",43.524189,5.664833,0,0,OAC:SA:CTP127510,Europe/Paris,,OAC, +OAC:SP:127515,1,"Le Griffon",43.434138,5.279257,0,0,OAC:SA:CTP127515,Europe/Paris,,OAC, +OAC:SP:127525,1,"Les Terres de la Mule",43.459252,5.402752,0,0,OAC:SA:CTP127525,Europe/Paris,,OAC, +OAC:SP:127557,1,"Aigues Marines",43.47068,5.504016,0,0,OAC:SA:CTP127557,Europe/Paris,,OAC, +OAC:SP:127559,1,"Aigues Marines",43.470637,5.504259,0,0,OAC:SA:CTP127557,Europe/Paris,,OAC, +OAC:SP:127562,1,"Les Pitalugues",43.443009,5.365683,0,0,OAC:SA:CTP127562,Europe/Paris,,OAC, +OAC:SP:127564,1,"Les Pitalugues",43.442805,5.363937,0,0,OAC:SA:CTP127562,Europe/Paris,,OAC, +OAC:SP:127567,1,"Le Griffon",43.433175,5.280145,0,0,OAC:SA:CTP127515,Europe/Paris,,OAC, +OAC:SP:127569,1,"Centre Commercial",43.642132,5.534235,0,0,OAC:SA:CTP127569,Europe/Paris,,OAC, +OAC:SP:127571,1,"Centre Commercial",43.642079,5.534249,0,0,OAC:SA:CTP127569,Europe/Paris,,OAC, +OAC:SP:127607,1,"Monod Parking Nord",43.399895,5.334468,0,0,OET:SA:CTP31039,Europe/Paris,,OAC, +OAC:SP:127647,1,"Le Clos des Poetes",43.442817,5.434296,0,0,OAC:SA:CTP127647,Europe/Paris,,OAC, +OAC:SP:127651,1,"Les Longs Cols",43.454023,5.571061,0,0,OAC:SA:CTP127651,Europe/Paris,,OAC, +OAC:SP:127653,1,"Les Longs Cols",43.453985,5.571727,0,0,OAC:SA:CTP127651,Europe/Paris,,OAC, +OAC:SP:127675,1,"Lycee Duby A",43.480147,5.414165,0,0,OAC:SA:CTP127675,Europe/Paris,,OAC, +OAC:SP:127677,1,"Lycee Duby B",43.480382,5.412294,0,0,OAC:SA:CTP127677,Europe/Paris,,OAC, +OAC:SP:127680,1,"Petites Bastides",43.43322,5.396478,0,0,OAC:SA:CTP120528,Europe/Paris,,OAC, +OAC:SP:127681,1,"Violesi",43.437445,5.397311,0,0,OAC:SA:CTP120526,Europe/Paris,,OAC, +OAC:SP:127682,1,"Rimbaud",43.454201,5.564572,0,0,OAC:SA:CTP127682,Europe/Paris,,OAC, +OAC:SP:127684,1,"Rimbaud",43.454092,5.565075,0,0,OAC:SA:CTP127682,Europe/Paris,,OAC, +OAC:SP:127687,1,"Silvacane",43.714935,5.329155,0,0,OAC:SA:CTP127687,Europe/Paris,,OAC, +OAC:SP:127689,1,"Silvacane",43.714835,5.329445,0,0,OAC:SA:CTP127687,Europe/Paris,,OAC, +OAC:SP:127691,1,"Peisson",43.482279,5.61991,0,0,OAC:SA:CTP127691,Europe/Paris,,OAC, +OAC:SP:127693,1,"Peisson",43.482386,5.61965,0,0,OAC:SA:CTP127691,Europe/Paris,,OAC, +OAC:SP:127796,1,"La Grassie",43.50989,5.433394,0,0,OAC:SA:CTP127796,Europe/Paris,,OAC, +OAC:SP:127798,1,"Saint Saens",43.442672,5.426536,0,0,OAC:SA:CTP127798,Europe/Paris,,OAC, +OAC:SP:127806,1,"La Prise",43.663202,5.495434,0,0,OAC:SA:CTP127806,Europe/Paris,,OAC, +OAC:SP:127808,1,"CLG Le Puy Sainte Reparade",43.664862,5.442529,0,0,OAC:SA:CTP127808,Europe/Paris,,OAC, +OAC:SP:127824,1,"ITER",43.711381,5.772844,0,0,OAC:SA:CTP127824,Europe/Paris,,OAC, +OAC:SP:127835,1,"Chateau Noir",43.523342,5.493398,0,0,OAC:SA:CTP127835,Europe/Paris,,OAC, +OAC:SP:127837,1,"Chateau Noir",43.523396,5.493403,0,0,OAC:SA:CTP127835,Europe/Paris,,OAC, +OAC:SP:127838,1,"Mont Joli",43.522127,5.486612,0,0,OAC:SA:CTP127838,Europe/Paris,,OAC, +OAC:SP:127840,1,"Mont Joli",43.522182,5.486603,0,0,OAC:SA:CTP127838,Europe/Paris,,OAC, +OAC:SP:127841,1,"Le Saffre",43.439765,5.438881,0,0,OAC:SA:CTP127841,Europe/Paris,,OAC, +OAC:SP:127843,1,"Le Saffre",43.439591,5.43887,0,0,OAC:SA:CTP127841,Europe/Paris,,OAC, +OAC:SP:132286,1,"Saint Pierre",43.555215,5.61147,0,0,OAC:SA:CTP132286,Europe/Paris,,OAC, +OAC:SP:132288,1,"Europole Arbois",43.490358,5.332006,0,0,OAC:SA:CTP132288,Europe/Paris,,OAC, +OAC:SP:132289,1,"Fresnel",43.495835,5.351418,0,0,OAC:SA:CTP132289,Europe/Paris,,OAC, +OAC:SP:132290,1,"Fresnel",43.495701,5.351345,0,0,OAC:SA:CTP132289,Europe/Paris,,OAC, +OAC:SP:132291,1,"Arago",43.491942,5.355196,0,0,OAC:SA:CTP124704,Europe/Paris,,OAC, +OAC:SP:132292,1,"De Broglie",43.490635,5.356164,0,0,OAC:SA:CTP132292,Europe/Paris,,OAC, +OAC:SP:132293,1,"De Broglie",43.490587,5.356267,0,0,OAC:SA:CTP132292,Europe/Paris,,OAC, +OAC:SP:132294,1,"Pilon du Roy",43.482086,5.37857,0,0,OAC:SA:CTP132294,Europe/Paris,,OAC, +OAC:SP:132296,1,"Entrepots",43.487188,5.372467,0,0,OAC:SA:CTP132296,Europe/Paris,,OAC, +OAC:SP:132297,1,"Lavoisier",43.489435,5.367723,0,0,OAC:SA:CTP132297,Europe/Paris,,OAC, +OAC:SP:132298,1,"Pole d Activites",43.490903,5.372633,0,0,OAC:SA:CTP120170,Europe/Paris,,OAC, +OAC:SP:132304,1,"Eiffel",43.481308,5.387565,0,0,OAC:SA:CTP132304,Europe/Paris,,OAC, +OAC:SP:132305,1,"Maison d Arret D59",43.47911,5.394459,0,0,OAC:SA:CTP132305,Europe/Paris,,OAC, +OAC:SP:132306,1,"Maison d Arret",43.481525,5.395701,0,0,OAC:SA:CTP132306,Europe/Paris,,OAC, +OAC:SP:132307,1,"Eiffel",43.482143,5.385338,0,0,OAC:SA:CTP132304,Europe/Paris,,OAC, +OAC:SP:132308,1,"Cim. Militaire",43.47182,5.400915,0,0,OAC:SA:CTP132308,Europe/Paris,,OAC, +OAC:SP:132309,1,"Cim. Militaire",43.471238,5.402346,0,0,OAC:SA:CTP132308,Europe/Paris,,OAC, +OAC:SP:132312,1,"Saint Joseph",43.508715,5.389618,0,0,OAC:SA:CTP132312,Europe/Paris,,OAC, +OAC:SP:132313,1,"Angenot",43.50914,5.392296,0,0,OAC:SA:CTP132313,Europe/Paris,,OAC, +OAC:SP:132322,1,"Le Serre 01",43.502292,5.390602,0,0,OAC:SA:CTP132322,Europe/Paris,,OAC, +OAC:SP:132323,1,"Le Serre 02",43.502327,5.390963,0,0,OAC:SA:CTP132323,Europe/Paris,,OAC, +OAC:SP:132339,1,"Ecole du Cros",43.563199,5.353986,0,0,OAC:SA:CTP132339,Europe/Paris,,OAC, +OAC:SP:132340,1,"Vidal",43.486275,5.415545,0,0,OAC:SA:CTP132340,Europe/Paris,,OAC, +OAC:SP:132342,1,"Roseaux",43.487731,5.412476,0,0,OAC:SA:CTP132342,Europe/Paris,,OAC, +OAC:SP:132343,1,"Mavel",43.489423,5.41609,0,0,OAC:SA:CTP132343,Europe/Paris,,OAC, +OAC:SP:132348,1,"Liberateurs",43.481793,5.423058,0,0,OAC:SA:CTP132348,Europe/Paris,,OAC, +OAC:SP:132365,1,"La Cooperative",43.546607,5.293592,0,0,OAC:SA:CTP122783,Europe/Paris,,OAC, +OAC:SP:132383,1,"Ferry",43.522129,5.449488,0,0,OAC:SA:CTP132383,Europe/Paris,,OAC, +OAC:SP:132385,1,"Parc Jourdan",43.520266,5.449693,0,0,OAC:SA:CTP132385,Europe/Paris,,OAC, +OAC:SP:132395,1,"Val Saint Jean",43.51583,5.452308,0,0,OAC:SA:CTP132395,Europe/Paris,,OAC, +OAC:SP:132396,1,"Armee d Afrique",43.513926,5.454886,0,0,OAC:SA:CTP132396,Europe/Paris,,OAC, +OAC:SP:132399,1,"Cible",43.5159,5.461174,0,0,OAC:SA:CTP132399,Europe/Paris,,OAC, +OAC:SP:132401,1,"Infirmeries",43.513224,5.463774,0,0,OAC:SA:CTP132401,Europe/Paris,,OAC, +OAC:SP:132402,1,"Infirmeries",43.513086,5.463652,0,0,OAC:SA:CTP132401,Europe/Paris,,OAC, +OAC:SP:132405,1,"Mauriat",43.515989,5.466712,0,0,OAC:SA:CTP132405,Europe/Paris,,OAC, +OAC:SP:132407,1,"Le Grand Puits",43.601956,5.478832,0,0,OAC:SA:CTP132407,Europe/Paris,,OAC, +OAC:SP:132408,1,"Le Grand Logis",43.600652,5.485064,0,0,OAC:SA:CTP132408,Europe/Paris,,OAC, +OAC:SP:132421,1,"Ferrageon",43.522225,5.510551,0,0,OAC:SA:CTP132421,Europe/Paris,,OAC, +OAC:SP:132422,1,"Ferrageon",43.522231,5.510787,0,0,OAC:SA:CTP132421,Europe/Paris,,OAC, +OAC:SP:132424,1,"Parc des Sports",43.517517,5.502976,0,0,OAC:SA:CTP132424,Europe/Paris,,OAC, +OAC:SP:132428,1,"Parc des Sports",43.517904,5.503683,0,0,OAC:SA:CTP132424,Europe/Paris,,OAC, +OAC:SP:132432,1,"Maison Pezet",43.509785,5.48978,0,0,OAC:SA:CTP132432,Europe/Paris,,OAC, +OAC:SP:132434,1,"Maison Pezet",43.509651,5.489734,0,0,OAC:SA:CTP132432,Europe/Paris,,OAC, +OAC:SP:132439,1,"Pont Chandelles",43.510993,5.487109,0,0,OAC:SA:CTP132439,Europe/Paris,,OAC, +OAC:SP:132442,1,"Pont Chandelles",43.510957,5.487611,0,0,OAC:SA:CTP132439,Europe/Paris,,OAC, +OAC:SP:132445,1,"Saint Germet",43.421348,5.290016,0,0,OET:SA:CTP30096,Europe/Paris,,OAC, +OAC:SP:132446,1,"Saint Germet",43.421377,5.290148,0,0,OET:SA:CTP30096,Europe/Paris,,OAC, +OAC:SP:132466,1,"Lesseps Mairie",43.523813,5.434801,0,0,OAC:SA:CTP132466,Europe/Paris,,OAC, +OAC:SP:132467,1,"Ecole La Torse",43.525169,5.466712,0,0,OAC:SA:CTP132467,Europe/Paris,,OAC, +OAC:SP:132468,1,"Lesseps Mairie",43.523821,5.436066,0,0,OAC:SA:CTP132466,Europe/Paris,,OAC, +OAC:SP:132469,1,"Tubingen",43.524572,5.431088,0,0,OAC:SA:CTP132469,Europe/Paris,,OAC, +OAC:SP:132470,1,"Tubingen",43.524217,5.432228,0,0,OAC:SA:CTP132469,Europe/Paris,,OAC, +OAC:SP:132471,1,"Ecole La Torse",43.524759,5.467015,0,0,OAC:SA:CTP132467,Europe/Paris,,OAC, +OAC:SP:132474,1,"Saint John Perse",43.525136,5.424516,0,0,OAC:SA:CTP132474,Europe/Paris,,OAC, +OAC:SP:132476,1,"Hameau La Torse",43.525994,5.465106,0,0,OAC:SA:CTP132476,Europe/Paris,,OAC, +OAC:SP:132480,1,"Hameau La Torse",43.526283,5.464845,0,0,OAC:SA:CTP132476,Europe/Paris,,OAC, +OAC:SP:132487,1,"Les Jardiniers",43.429078,5.286366,0,0,OET:SA:CTP30102,Europe/Paris,,OAC, +OAC:SP:132488,1,"Les Jardiniers",43.429226,5.285926,0,0,OET:SA:CTP30102,Europe/Paris,,OAC, +OAC:SP:132489,1,"Pont de la Torse",43.526893,5.463499,0,0,OAC:SA:CTP132489,Europe/Paris,,OAC, +OAC:SP:132491,1,"La Fille Du Puisatier",43.431762,5.284086,0,0,OET:SA:CTP30104,Europe/Paris,,OAC, +OAC:SP:132493,1,"La Fille Du Puisatier",43.432438,5.284264,0,0,OET:SA:CTP30104,Europe/Paris,,OAC, +OAC:SP:132494,1,"Pont de la Torse",43.527013,5.463314,0,0,OAC:SA:CTP132489,Europe/Paris,,OAC, +OAC:SP:132496,1,"Le Brusquie",43.4339,5.28407,0,0,OET:SA:CTP30106,Europe/Paris,,OAC, +OAC:SP:132497,1,"Le Brusquie",43.433848,5.284153,0,0,OET:SA:CTP30106,Europe/Paris,,OAC, +OAC:SP:132498,1,"Les Pierres Fauves",43.435753,5.285409,0,0,OET:SA:CTP30108,Europe/Paris,,OAC, +OAC:SP:132516,1,"19 mars 1962",43.451801,5.240207,0,0,OET:SA:CTP30151,Europe/Paris,,OAC, +OAC:SP:132519,1,"La Plaine",43.452853,5.241472,0,0,OET:SA:CTP30153,Europe/Paris,,OAC, +OAC:SP:132522,1,"Marcel Pagnol",43.422402,5.286753,0,0,OAC:SA:CTP132522,Europe/Paris,,OAC, +OAC:SP:132523,1,"Marcel Pagnol",43.422574,5.286923,0,0,OAC:SA:CTP132522,Europe/Paris,,OAC, +OAC:SP:132535,1,"Sta. Carcassonne",43.526753,5.459279,0,0,OAC:SA:CTP132535,Europe/Paris,,OAC, +OAC:SP:132549,1,"Ecole Militaire",43.526282,5.455805,0,0,OAC:SA:CTP132549,Europe/Paris,,OAC, +OAC:SP:132553,1,"Ecole Militaire",43.526398,5.456294,0,0,OAC:SA:CTP132549,Europe/Paris,,OAC, +OAC:SP:132559,1,"Horloge",43.529822,5.420161,0,0,OAC:SA:CTP132559,Europe/Paris,,OAC, +OAC:SP:132560,1,"Horloge",43.529972,5.420457,0,0,OAC:SA:CTP132559,Europe/Paris,,OAC, +OAC:SP:132561,1,"Stade Ouest",43.529078,5.423237,0,0,OAC:SA:CTP132561,Europe/Paris,,OAC, +OAC:SP:132562,1,"Stade Ouest",43.528383,5.424637,0,0,OAC:SA:CTP132561,Europe/Paris,,OAC, +OAC:SP:132570,1,"Dr Aurientis",43.530112,5.45881,0,0,OAC:SA:CTP132570,Europe/Paris,,OAC, +OAC:SP:132572,1,"CLG Rocher Du Dragon",43.533928,5.439272,0,0,OAC:SA:CTP132572,Europe/Paris,,OAC, +OAC:SP:132574,1,"Parc Rambot",43.530936,5.455955,0,0,OAC:SA:CTP132574,Europe/Paris,,OAC, +OAC:SP:132577,1,"Parc Saint Mitre",43.532103,5.423162,0,0,OAC:SA:CTP132577,Europe/Paris,,OAC, +OAC:SP:132578,1,"Parc Saint Mitre",43.532038,5.424479,0,0,OAC:SA:CTP132577,Europe/Paris,,OAC, +OAC:SP:132581,1,"Lami",43.416464,5.354094,0,0,OAC:SA:CTP132581,Europe/Paris,,OAC, +OAC:SP:132583,1,"Avant Cap",43.418554,5.360787,0,0,OAC:SA:CTP132583,Europe/Paris,,OAC, +OAC:SP:132588,1,"Le Boulard",43.450711,5.362003,0,0,OAC:SA:CTP132588,Europe/Paris,,OAC, +OAC:SP:132595,1,"Le Puits Vieux",43.44169,5.381903,0,0,OAC:SA:CTP132595,Europe/Paris,,OAC, +OAC:SP:132602,1,"La Milane",43.447767,5.394328,0,0,OAC:SA:CTP132602,Europe/Paris,,OAC, +OAC:SP:132603,1,"La Milane",43.447377,5.395171,0,0,OAC:SA:CTP132602,Europe/Paris,,OAC, +OAC:SP:132605,1,"Violet",43.446563,5.378881,0,0,OAC:SA:CTP132605,Europe/Paris,,OAC, +OAC:SP:132606,1,"Violet",43.44649,5.378548,0,0,OAC:SA:CTP132605,Europe/Paris,,OAC, +OAC:SP:132609,1,"Parc Rambot",43.530756,5.455852,0,0,OAC:SA:CTP132574,Europe/Paris,,OAC, +OAC:SP:132612,1,"La Dame",43.462738,5.368657,0,0,OAC:SA:CTP132612,Europe/Paris,,OAC, +OAC:SP:132613,1,"La Bredasque",43.53636,5.411592,0,0,OAC:SA:CTP132613,Europe/Paris,,OAC, +OAC:SP:132614,1,"La Dame",43.462115,5.369188,0,0,OAC:SA:CTP132612,Europe/Paris,,OAC, +OAC:SP:132617,1,"Jussieu",43.455882,5.38436,0,0,OAC:SA:CTP132617,Europe/Paris,,OAC, +OAC:SP:132618,1,"Jussieu",43.456105,5.384165,0,0,OAC:SA:CTP132617,Europe/Paris,,OAC, +OAC:SP:132619,1,"Lac Bleu",43.455313,5.330981,0,0,OAC:SA:CTP132619,Europe/Paris,,OAC, +OAC:SP:132620,1,"Gare Aix TGV",43.454561,5.316419,0,0,OAC:SA:CTP132620,Europe/Paris,,OAC, +OAC:SP:132621,1,"CLG Marie Mauron",43.445825,5.35438,0,0,OAC:SA:CTP132621,Europe/Paris,,OAC, +OAC:SP:132622,1,"Bagatelle",43.536465,5.409245,0,0,OAC:SA:CTP132622,Europe/Paris,,OAC, +OAC:SP:132623,1,"Bagatelle",43.536403,5.409283,0,0,OAC:SA:CTP132622,Europe/Paris,,OAC, +OAC:SP:132624,1,"Domaine Fleurs",43.534151,5.408335,0,0,OAC:SA:CTP132624,Europe/Paris,,OAC, +OAC:SP:132625,1,"Domaine Fleurs",43.533806,5.408169,0,0,OAC:SA:CTP132624,Europe/Paris,,OAC, +OAC:SP:132626,1,"Daudet",43.535142,5.463223,0,0,OAC:SA:CTP132626,Europe/Paris,,OAC, +OAC:SP:132627,1,"Triolet",43.53167,5.407839,0,0,OAC:SA:CTP132627,Europe/Paris,,OAC, +OAC:SP:132628,1,"Triolet",43.53185,5.407979,0,0,OAC:SA:CTP132627,Europe/Paris,,OAC, +OAC:SP:132629,1,"Eridan",43.531233,5.409377,0,0,OAC:SA:CTP132629,Europe/Paris,,OAC, +OAC:SP:132630,1,"Eridan",43.53132,5.409403,0,0,OAC:SA:CTP132629,Europe/Paris,,OAC, +OAC:SP:132632,1,"Daudet",43.535079,5.463423,0,0,OAC:SA:CTP132626,Europe/Paris,,OAC, +OAC:SP:132634,1,"Grande Bastide",43.530063,5.409404,0,0,OAC:SA:CTP132634,Europe/Paris,,OAC, +OAC:SP:132635,1,"Grande Bastide",43.529906,5.409496,0,0,OAC:SA:CTP132634,Europe/Paris,,OAC, +OAC:SP:132636,1,"Saints Peres",43.525505,5.399175,0,0,OAC:SA:CTP132636,Europe/Paris,,OAC, +OAC:SP:132637,1,"Chopin",43.535568,5.465472,0,0,OAC:SA:CTP132637,Europe/Paris,,OAC, +OAC:SP:132638,1,"Saints Peres",43.525511,5.399015,0,0,OAC:SA:CTP132636,Europe/Paris,,OAC, +OAC:SP:132639,1,"La Moliere",43.525067,5.394823,0,0,OAC:SA:CTP132639,Europe/Paris,,OAC, +OAC:SP:132640,1,"La Moliere",43.525047,5.394377,0,0,OAC:SA:CTP132639,Europe/Paris,,OAC, +OAC:SP:132641,1,"Chateau Galice",43.523807,5.376221,0,0,OAC:SA:CTP132641,Europe/Paris,,OAC, +OAC:SP:132643,1,"Centre Aere",43.524801,5.389884,0,0,OAC:SA:CTP132643,Europe/Paris,,OAC, +OAC:SP:132644,1,"A1",43.531768,5.396559,0,0,OAC:SA:CTP132644,Europe/Paris,,OAC, +OAC:SP:132645,1,"A2",43.531352,5.400282,0,0,OAC:SA:CTP132645,Europe/Paris,,OAC, +OAC:SP:132646,1,"A3",43.535696,5.403958,0,0,OAC:SA:CTP132646,Europe/Paris,,OAC, +OAC:SP:132647,1,"Pinette",43.537251,5.4678,0,0,OAC:SA:CTP132647,Europe/Paris,,OAC, +OAC:SP:132648,1,"A4",43.536927,5.393407,0,0,OAC:SA:CTP132648,Europe/Paris,,OAC, +OAC:SP:132649,1,"Pinette",43.536919,5.467701,0,0,OAC:SA:CTP132647,Europe/Paris,,OAC, +OAC:SP:132659,1,"Parc Beauregard",43.53768,5.470795,0,0,OAC:SA:CTP132659,Europe/Paris,,OAC, +OAC:SP:132663,1,"Parc Beauregard",43.537583,5.470899,0,0,OAC:SA:CTP132659,Europe/Paris,,OAC, +OAC:SP:132668,1,"Beauregard",43.537789,5.472945,0,0,OAC:SA:CTP132668,Europe/Paris,,OAC, +OAC:SP:132674,1,"Beauregard",43.537833,5.473369,0,0,OAC:SA:CTP132668,Europe/Paris,,OAC, +OAC:SP:132680,1,"Repentance",43.536267,5.473344,0,0,OAC:SA:CTP132680,Europe/Paris,,OAC, +OAC:SP:132683,1,"Repentance",43.536619,5.473457,0,0,OAC:SA:CTP132680,Europe/Paris,,OAC, +OAC:SP:132684,1,"Les Gourgoulons",43.554292,5.299743,0,0,OAC:SA:CTP132684,Europe/Paris,,OAC, +OAC:SP:132685,1,"Faveloun",43.560361,5.420685,0,0,OAC:SA:CTP132685,Europe/Paris,,OAC, +OAC:SP:132686,1,"Faveloun",43.560471,5.420573,0,0,OAC:SA:CTP132685,Europe/Paris,,OAC, +OAC:SP:132687,1,"Avon",43.563666,5.420478,0,0,OAC:SA:CTP132687,Europe/Paris,,OAC, +OAC:SP:132688,1,"Avon",43.563572,5.420582,0,0,OAC:SA:CTP132687,Europe/Paris,,OAC, +OAC:SP:132689,1,"J01",43.546186,5.519709,0,0,OAC:SA:CTP132689,Europe/Paris,,OAC, +OAC:SP:132690,1,"Cruyes",43.567178,5.420977,0,0,OAC:SA:CTP132690,Europe/Paris,,OAC, +OAC:SP:132691,1,"Cruyes",43.567179,5.421087,0,0,OAC:SA:CTP132690,Europe/Paris,,OAC, +OAC:SP:132692,1,"J04",43.54946,5.530005,0,0,OAC:SA:CTP132692,Europe/Paris,,OAC, +OAC:SP:132700,1,"J04",43.550063,5.532094,0,0,OAC:SA:CTP132692,Europe/Paris,,OAC, +OAC:SP:132702,1,"J05",43.553942,5.53146,0,0,OAC:SA:CTP132702,Europe/Paris,,OAC, +OAC:SP:132704,1,"J06",43.552883,5.528145,0,0,OAC:SA:CTP132704,Europe/Paris,,OAC, +OAC:SP:132708,1,"J07",43.548324,5.511823,0,0,OAC:SA:CTP132708,Europe/Paris,,OAC, +OAC:SP:132713,1,"J08",43.546629,5.512125,0,0,OAC:SA:CTP132713,Europe/Paris,,OAC, +OAC:SP:132719,1,"B19",43.568105,5.399422,0,0,OAC:SA:CTP132719,Europe/Paris,,OAC, +OAC:SP:132720,1,"J10",43.547238,5.493315,0,0,OAC:SA:CTP132720,Europe/Paris,,OAC, +OAC:SP:132721,1,"B20",43.565956,5.40278,0,0,OAC:SA:CTP132721,Europe/Paris,,OAC, +OAC:SP:132722,1,"B21",43.558088,5.415822,0,0,OAC:SA:CTP132722,Europe/Paris,,OAC, +OAC:SP:132727,1,"C02",43.577573,5.383586,0,0,OAC:SA:CTP132727,Europe/Paris,,OAC, +OAC:SP:132728,1,"C03",43.58435,5.372375,0,0,OAC:SA:CTP132728,Europe/Paris,,OAC, +OAC:SP:132729,1,"C04",43.585954,5.37,0,0,OAC:SA:CTP132729,Europe/Paris,,OAC, +OAC:SP:132730,1,"C05",43.596415,5.366437,0,0,OAC:SA:CTP132730,Europe/Paris,,OAC, +OAC:SP:132731,1,"J11",43.54613,5.496226,0,0,OAC:SA:CTP132731,Europe/Paris,,OAC, +OAC:SP:132732,1,"C06",43.601963,5.366047,0,0,OAC:SA:CTP132732,Europe/Paris,,OAC, +OAC:SP:132735,1,"J12",43.545033,5.49945,0,0,OAC:SA:CTP132735,Europe/Paris,,OAC, +OAC:SP:132743,1,"J14",43.543954,5.506834,0,0,OAC:SA:CTP132743,Europe/Paris,,OAC, +OAC:SP:132747,1,"J15",43.540422,5.49131,0,0,OAC:SA:CTP132747,Europe/Paris,,OAC, +OAC:SP:132751,1,"J16",43.551854,5.54281,0,0,OAC:SA:CTP132751,Europe/Paris,,OAC, +OAC:SP:132754,1,"J17",43.552177,5.538849,0,0,OAC:SA:CTP132754,Europe/Paris,,OAC, +OAC:SP:132755,1,"Chemin du Seuil",43.585793,5.413001,0,0,OAC:SA:CTP132755,Europe/Paris,,OAC, +OAC:SP:132756,1,"C22",43.584119,5.415199,0,0,OAC:SA:CTP132756,Europe/Paris,,OAC, +OAC:SP:132757,1,"J18",43.552524,5.536149,0,0,OAC:SA:CTP132757,Europe/Paris,,OAC, +OAC:SP:132766,1,"Erables",43.580148,5.416741,0,0,OAC:SA:CTP132766,Europe/Paris,,OAC, +OAC:SP:132767,1,"Erables",43.5801,5.417266,0,0,OAC:SA:CTP132766,Europe/Paris,,OAC, +OAC:SP:132768,1,"Palatines",43.580202,5.41354,0,0,OAC:SA:CTP132768,Europe/Paris,,OAC, +OAC:SP:132769,1,"Palatines",43.580118,5.413784,0,0,OAC:SA:CTP132768,Europe/Paris,,OAC, +OAC:SP:132770,1,"Abbe Roustand",43.581134,5.411475,0,0,OAC:SA:CTP132770,Europe/Paris,,OAC, +OAC:SP:132771,1,"Bessi",43.579313,5.410881,0,0,OAC:SA:CTP132771,Europe/Paris,,OAC, +OAC:SP:132772,1,"Grand Domaine",43.582279,5.411266,0,0,OAC:SA:CTP132772,Europe/Paris,,OAC, +OAC:SP:132773,1,"Tourterelles",43.581367,5.409696,0,0,OAC:SA:CTP132773,Europe/Paris,,OAC, +OAC:SP:132774,1,"Plantation",43.582514,5.408642,0,0,OAC:SA:CTP132774,Europe/Paris,,OAC, +OAC:SP:132775,1,"Les Palombes",43.579553,5.409349,0,0,OAC:SA:CTP132775,Europe/Paris,,OAC, +OAC:SP:132778,1,"La Touloubre",43.57731,5.420454,0,0,OAC:SA:CTP132778,Europe/Paris,,OAC, +OAC:SP:132779,1,"La Touloubre",43.577441,5.420566,0,0,OAC:SA:CTP132778,Europe/Paris,,OAC, +OAC:SP:132780,1,"Glaciere",43.574798,5.421756,0,0,OAC:SA:CTP132780,Europe/Paris,,OAC, +OAC:SP:132781,1,"Glaciere",43.57485,5.422136,0,0,OAC:SA:CTP132780,Europe/Paris,,OAC, +OAC:SP:132807,1,"Guyon",43.533762,5.43639,0,0,OAC:SA:CTP132807,Europe/Paris,,OAC, +OAC:SP:132811,1,"Belveyre",43.570975,5.424363,0,0,OAC:SA:CTP132811,Europe/Paris,,OAC, +OAC:SP:132812,1,"Belveyre",43.570968,5.424289,0,0,OAC:SA:CTP132811,Europe/Paris,,OAC, +OAC:SP:132813,1,"Huilerie",43.549286,5.42733,0,0,OAC:SA:CTP132813,Europe/Paris,,OAC, +OAC:SP:132816,1,"Fusains",43.568777,5.425396,0,0,OAC:SA:CTP132816,Europe/Paris,,OAC, +OAC:SP:132817,1,"Fusains",43.568226,5.425989,0,0,OAC:SA:CTP132816,Europe/Paris,,OAC, +OAC:SP:132818,1,"Rosaki",43.566136,5.427514,0,0,OAC:SA:CTP132818,Europe/Paris,,OAC, +OAC:SP:132819,1,"Rosaki",43.565984,5.427545,0,0,OAC:SA:CTP132818,Europe/Paris,,OAC, +OAC:SP:132822,1,"Couteron Ecole",43.599607,5.447005,0,0,OAC:SA:CTP132822,Europe/Paris,,OAC, +OAC:SP:132823,1,"Couteron Eglise",43.599207,5.444502,0,0,OAC:SA:CTP132823,Europe/Paris,,OAC, +OAC:SP:132824,1,"Couteron",43.597441,5.443166,0,0,OAC:SA:CTP132824,Europe/Paris,,OAC, +OAC:SP:132825,1,"Font Rousse Bas",43.596405,5.442606,0,0,OAC:SA:CTP132825,Europe/Paris,,OAC, +OAC:SP:132826,1,"Font Rousse Bas",43.59607,5.442404,0,0,OAC:SA:CTP132825,Europe/Paris,,OAC, +OAC:SP:132827,1,"La Trevaresse",43.592569,5.434993,0,0,OAC:SA:CTP132827,Europe/Paris,,OAC, +OAC:SP:132828,1,"La Trevaresse",43.592813,5.435343,0,0,OAC:SA:CTP132827,Europe/Paris,,OAC, +OAC:SP:132829,1,"Village Soleil",43.590041,5.431793,0,0,OAC:SA:CTP132829,Europe/Paris,,OAC, +OAC:SP:132830,1,"Village Soleil",43.590201,5.43207,0,0,OAC:SA:CTP132829,Europe/Paris,,OAC, +OAC:SP:132831,1,"Quille",43.587512,5.431135,0,0,OAC:SA:CTP132831,Europe/Paris,,OAC, +OAC:SP:132832,1,"Quille",43.587408,5.431605,0,0,OAC:SA:CTP132831,Europe/Paris,,OAC, +OAC:SP:132833,1,"IAE",43.587031,5.423583,0,0,OAC:SA:CTP132833,Europe/Paris,,OAC, +OAC:SP:132834,1,"IAE",43.586954,5.423517,0,0,OAC:SA:CTP132833,Europe/Paris,,OAC, +OAC:SP:132835,1,"Les Camus",43.586477,5.421464,0,0,OAC:SA:CTP132835,Europe/Paris,,OAC, +OAC:SP:132836,1,"Les Camus",43.586818,5.421518,0,0,OAC:SA:CTP132835,Europe/Paris,,OAC, +OAC:SP:132837,1,"Maurel",43.583512,5.42209,0,0,OAC:SA:CTP132837,Europe/Paris,,OAC, +OAC:SP:132838,1,"Maurel",43.583471,5.42201,0,0,OAC:SA:CTP132837,Europe/Paris,,OAC, +OAC:SP:132841,1,"Mairie Puyricard",43.582111,5.422027,0,0,OAC:SA:CTP132841,Europe/Paris,,OAC, +OAC:SP:132842,1,"Mairie Puyricard",43.582454,5.422049,0,0,OAC:SA:CTP132841,Europe/Paris,,OAC, +OAC:SP:132845,1,"Palerne",43.577412,5.422002,0,0,OAC:SA:CTP132845,Europe/Paris,,OAC, +OAC:SP:132846,1,"Palerne",43.577389,5.422284,0,0,OAC:SA:CTP132845,Europe/Paris,,OAC, +OAC:SP:132850,1,"D09",43.581576,5.43024,0,0,OAC:SA:CTP132850,Europe/Paris,,OAC, +OAC:SP:132851,1,"Solari",43.53498,5.44541,0,0,OAC:SA:CTP132851,Europe/Paris,,OAC, +OAC:SP:132852,1,"Paquerettes",43.536469,5.44475,0,0,OAC:SA:CTP132852,Europe/Paris,,OAC, +OAC:SP:132853,1,"Paquerettes",43.537417,5.444774,0,0,OAC:SA:CTP132852,Europe/Paris,,OAC, +OAC:SP:132854,1,"La Ginette",43.539748,5.442517,0,0,OAC:SA:CTP132854,Europe/Paris,,OAC, +OAC:SP:132855,1,"La Ginette",43.539955,5.442559,0,0,OAC:SA:CTP132854,Europe/Paris,,OAC, +OAC:SP:132856,1,"Bellevue",43.541426,5.441747,0,0,OAC:SA:CTP132856,Europe/Paris,,OAC, +OAC:SP:132857,1,"Bellevue",43.541384,5.441831,0,0,OAC:SA:CTP132856,Europe/Paris,,OAC, +OAC:SP:132858,1,"Muriers Blanc",43.542687,5.440982,0,0,OAC:SA:CTP132858,Europe/Paris,,OAC, +OAC:SP:132859,1,"Muriers Blanc",43.54264,5.441078,0,0,OAC:SA:CTP132858,Europe/Paris,,OAC, +OAC:SP:132865,1,"D13",43.582078,5.456987,0,0,OAC:SA:CTP132865,Europe/Paris,,OAC, +OAC:SP:132868,1,"D14",43.577,5.457666,0,0,OAC:SA:CTP132868,Europe/Paris,,OAC, +OAC:SP:132869,1,"D15",43.57428,5.457109,0,0,OAC:SA:CTP132869,Europe/Paris,,OAC, +OAC:SP:132870,1,"D15",43.574302,5.457243,0,0,OAC:SA:CTP132869,Europe/Paris,,OAC, +OAC:SP:132871,1,"D16",43.5676,5.456874,0,0,OAC:SA:CTP132871,Europe/Paris,,OAC, +OAC:SP:132872,1,"D16",43.567628,5.456996,0,0,OAC:SA:CTP132871,Europe/Paris,,OAC, +OAC:SP:132873,1,"D17",43.564327,5.457604,0,0,OAC:SA:CTP132873,Europe/Paris,,OAC, +OAC:SP:132874,1,"D17",43.563511,5.458253,0,0,OAC:SA:CTP132873,Europe/Paris,,OAC, +OAC:SP:132875,1,"Les Feuillants",43.598573,5.449726,0,0,OAC:SA:CTP132875,Europe/Paris,,OAC, +OAC:SP:132876,1,"Route de Moulin",43.597439,5.450885,0,0,OAC:SA:CTP132876,Europe/Paris,,OAC, +OAC:SP:132877,1,"Levesque",43.597512,5.454832,0,0,OAC:SA:CTP132877,Europe/Paris,,OAC, +OAC:SP:132878,1,"D04",43.594036,5.455875,0,0,OAC:SA:CTP132878,Europe/Paris,,OAC, +OAC:SP:132879,1,"Presidente",43.59026,5.457456,0,0,OAC:SA:CTP132879,Europe/Paris,,OAC, +OAC:SP:132881,1,"D06",43.587826,5.457173,0,0,OAC:SA:CTP132881,Europe/Paris,,OAC, +OAC:SP:132882,1,"D07",43.584047,5.45679,0,0,OAC:SA:CTP132882,Europe/Paris,,OAC, +OAC:SP:132883,1,"D10",43.578942,5.442182,0,0,OAC:SA:CTP132883,Europe/Paris,,OAC, +OAC:SP:132884,1,"D11",43.579183,5.449687,0,0,OAC:SA:CTP132884,Europe/Paris,,OAC, +OAC:SP:132885,1,"D12",43.579758,5.453852,0,0,OAC:SA:CTP132885,Europe/Paris,,OAC, +OAC:SP:132887,1,"Eperon",43.557216,5.433624,0,0,OAC:SA:CTP132887,Europe/Paris,,OAC, +OAC:SP:132888,1,"Eperon",43.557537,5.434301,0,0,OAC:SA:CTP132887,Europe/Paris,,OAC, +OAC:SP:132889,1,"Puy du Roy",43.555308,5.434028,0,0,OAC:SA:CTP132889,Europe/Paris,,OAC, +OAC:SP:132890,1,"Puy du Roy",43.554398,5.434023,0,0,OAC:SA:CTP132889,Europe/Paris,,OAC, +OAC:SP:132891,1,"Entremont",43.552662,5.435787,0,0,OAC:SA:CTP132891,Europe/Paris,,OAC, +OAC:SP:132892,1,"Entremont",43.55186,5.4366,0,0,OAC:SA:CTP132891,Europe/Paris,,OAC, +OAC:SP:132895,1,"Guyon",43.534748,5.436087,0,0,OAC:SA:CTP132807,Europe/Paris,,OAC, +OAC:SP:132897,1,"Montvert",43.545347,5.440746,0,0,OAC:SA:CTP132897,Europe/Paris,,OAC, +OAC:SP:132898,1,"Monvert",43.545673,5.440845,0,0,OAC:SA:CTP132898,Europe/Paris,,OAC, +OAC:SP:132901,1,"Les Lauves Nord",43.557341,5.443162,0,0,OAC:SA:CTP132901,Europe/Paris,,OAC, +OAC:SP:132902,1,"Les Lauves Nord",43.557384,5.44324,0,0,OAC:SA:CTP132901,Europe/Paris,,OAC, +OAC:SP:132903,1,"Les Lauves Sud",43.555338,5.443772,0,0,OAC:SA:CTP132903,Europe/Paris,,OAC, +OAC:SP:132904,1,"Les Lauves Sud",43.555322,5.443814,0,0,OAC:SA:CTP132903,Europe/Paris,,OAC, +OAC:SP:132905,1,"Crespi",43.553703,5.443628,0,0,OAC:SA:CTP132905,Europe/Paris,,OAC, +OAC:SP:132906,1,"Crespi",43.553816,5.443659,0,0,OAC:SA:CTP132905,Europe/Paris,,OAC, +OAC:SP:132907,1,"Les Casams",43.550532,5.444208,0,0,OAC:SA:CTP132907,Europe/Paris,,OAC, +OAC:SP:132908,1,"Les Casams",43.550443,5.444159,0,0,OAC:SA:CTP132907,Europe/Paris,,OAC, +OAC:SP:132909,1,"De Mazenod",43.547125,5.445472,0,0,OAC:SA:CTP132909,Europe/Paris,,OAC, +OAC:SP:132910,1,"De Mazenod",43.54728,5.445408,0,0,OAC:SA:CTP132909,Europe/Paris,,OAC, +OAC:SP:132914,1,"La Coquillade",43.577577,5.431959,0,0,OAC:SA:CTP132914,Europe/Paris,,OAC, +OAC:SP:132915,1,"Madeleine",43.575494,5.43218,0,0,OAC:SA:CTP132915,Europe/Paris,,OAC, +OAC:SP:132916,1,"Madeleine",43.575423,5.432018,0,0,OAC:SA:CTP132915,Europe/Paris,,OAC, +OAC:SP:132917,1,"La Chesneraie",43.572967,5.432703,0,0,OAC:SA:CTP132917,Europe/Paris,,OAC, +OAC:SP:132918,1,"La Chesneraie",43.572528,5.43264,0,0,OAC:SA:CTP132917,Europe/Paris,,OAC, +OAC:SP:132921,1,"Dioulouffet",43.566195,5.434085,0,0,OAC:SA:CTP132921,Europe/Paris,,OAC, +OAC:SP:132922,1,"Dioulouffet",43.565872,5.434018,0,0,OAC:SA:CTP132921,Europe/Paris,,OAC, +OAC:SP:132923,1,"Chocolaterie",43.563235,5.434,0,0,OAC:SA:CTP132923,Europe/Paris,,OAC, +OAC:SP:132924,1,"Chocolaterie",43.563359,5.43412,0,0,OAC:SA:CTP132923,Europe/Paris,,OAC, +OAC:SP:132926,1,"Rose",43.560854,5.43367,0,0,OAC:SA:CTP132926,Europe/Paris,,OAC, +OAC:SP:132927,1,"Grands Chenes",43.56062,5.434655,0,0,OAC:SA:CTP132927,Europe/Paris,,OAC, +OAC:SP:132928,1,"Grands Chenes",43.560558,5.434776,0,0,OAC:SA:CTP132927,Europe/Paris,,OAC, +OAC:SP:132929,1,"Eolienne",43.558907,5.441935,0,0,OAC:SA:CTP132929,Europe/Paris,,OAC, +OAC:SP:132930,1,"Eolienne",43.558958,5.442025,0,0,OAC:SA:CTP132929,Europe/Paris,,OAC, +OAC:SP:132931,1,"Marguerite",43.550547,5.438538,0,0,OAC:SA:CTP132931,Europe/Paris,,OAC, +OAC:SP:132932,1,"Marguerite",43.550257,5.438742,0,0,OAC:SA:CTP132931,Europe/Paris,,OAC, +OAC:SP:132933,1,"Portail Cezanne",43.542148,5.445637,0,0,OAC:SA:CTP132933,Europe/Paris,,OAC, +OAC:SP:132934,1,"Portail Cezanne",43.54214,5.445526,0,0,OAC:SA:CTP132933,Europe/Paris,,OAC, +OAC:SP:132935,1,"Portail Cezanne",43.542539,5.446153,0,0,OAC:SA:CTP132933,Europe/Paris,,OAC, +OAC:SP:132936,1,"Portail Cezanne",43.542671,5.44575,0,0,OAC:SA:CTP132933,Europe/Paris,,OAC, +OAC:SP:132937,1,"Loubassane",43.542432,5.448819,0,0,OAC:SA:CTP132937,Europe/Paris,,OAC, +OAC:SP:132938,1,"Loubassane",43.542304,5.448958,0,0,OAC:SA:CTP132937,Europe/Paris,,OAC, +OAC:SP:132939,1,"Maruege",43.544947,5.455359,0,0,OAC:SA:CTP132939,Europe/Paris,,OAC, +OAC:SP:132940,1,"Maruege",43.544386,5.455594,0,0,OAC:SA:CTP132939,Europe/Paris,,OAC, +OAC:SP:132941,1,"Maruege Haut",43.546433,5.454814,0,0,OAC:SA:CTP132941,Europe/Paris,,OAC, +OAC:SP:132942,1,"Maruege Haut",43.546309,5.455016,0,0,OAC:SA:CTP132941,Europe/Paris,,OAC, +OAC:SP:132945,1,"Fontlebre",43.550905,5.457053,0,0,OAC:SA:CTP124894,Europe/Paris,,OAC, +OAC:SP:132947,1,"Dr Bertrand",43.541395,5.451929,0,0,OAC:SA:CTP132947,Europe/Paris,,OAC, +OAC:SP:132948,1,"Dr Bertrand",43.541498,5.452153,0,0,OAC:SA:CTP132947,Europe/Paris,,OAC, +OAC:SP:132962,1,"Cezanne",43.539857,5.445932,0,0,OAC:SA:CTP132962,Europe/Paris,,OAC, +OAC:SP:132963,1,"Cezanne",43.539909,5.446019,0,0,OAC:SA:CTP132962,Europe/Paris,,OAC, +OAC:SP:132964,1,"Atelier Cezanne",43.53698,5.446759,0,0,OAC:SA:CTP132964,Europe/Paris,,OAC, +OAC:SP:132966,1,"Alexis",43.535944,5.44614,0,0,OAC:SA:CTP132966,Europe/Paris,,OAC, +OAC:SP:132967,1,"Alexis",43.535841,5.445968,0,0,OAC:SA:CTP132966,Europe/Paris,,OAC, +OAC:SP:132969,1,"Pasteur N. Dame",43.534387,5.446463,0,0,OAC:SA:CTP132969,Europe/Paris,,OAC, +OAC:SP:132979,1,"Niollon",43.527552,5.442673,0,0,OAC:SA:CTP132979,Europe/Paris,,OAC, +OAC:SP:132980,1,"Rotonde Poste",43.525709,5.444907,0,0,OAC:SA:CTP132980,Europe/Paris,,OAC, +OAC:SP:132997,1,"Tourelles",43.517312,5.465268,0,0,OAC:SA:CTP132997,Europe/Paris,,OAC, +OAC:SP:132998,1,"Tourelles",43.518171,5.46406,0,0,OAC:SA:CTP132997,Europe/Paris,,OAC, +OAC:SP:133003,1,"Les Grandes Terres",43.443968,5.368288,0,0,OAC:SA:CTP133003,Europe/Paris,,OAC, +OAC:SP:133004,1,"Les Grandes Terres",43.444325,5.369191,0,0,OAC:SA:CTP133003,Europe/Paris,,OAC, +OAC:SP:133011,1,"Badesse",43.502956,5.376199,0,0,OAC:SA:CTP133011,Europe/Paris,,OAC, +OAC:SP:133019,1,"La Cremade",43.541373,5.2998,0,0,OAC:SA:CTP133019,Europe/Paris,,OAC, +OAC:SP:133020,1,"La Cremade",43.541307,5.299932,0,0,OAC:SA:CTP133019,Europe/Paris,,OAC, +OAC:SP:133021,1,"Ecole de Musique",43.440884,5.3819,0,0,OAC:SA:CTP133021,Europe/Paris,,OAC, +OAC:SP:133022,1,"Ecole de Musique",43.440897,5.382232,0,0,OAC:SA:CTP133021,Europe/Paris,,OAC, +OAC:SP:133025,1,"Violesi",43.437885,5.396772,0,0,OAC:SA:CTP120526,Europe/Paris,,OAC, +OAC:SP:133027,1,"La Roucaoudo",43.457121,5.564212,0,0,OAC:SA:CTP133027,Europe/Paris,,OAC, +OAC:SP:133029,1,"La Croix du Goi",43.447298,5.565873,0,0,OAC:SA:CTP133029,Europe/Paris,,OAC, +OAC:SP:133031,1,"La Montjoie",43.460838,5.568122,0,0,OAC:SA:CTP133031,Europe/Paris,,OAC, +OAC:SP:133033,1,"La Begude",43.453088,5.545496,0,0,OAC:SA:CTP133033,Europe/Paris,,OAC, +OAC:SP:133034,1,"La Begude",43.453093,5.545248,0,0,OAC:SA:CTP133033,Europe/Paris,,OAC, +OAC:SP:133035,1,"Cimetiere",43.45903,5.557246,0,0,OAC:SA:CTP133035,Europe/Paris,,OAC, +OAC:SP:133036,1,"Cimetiere",43.459031,5.557522,0,0,OAC:SA:CTP133035,Europe/Paris,,OAC, +OAC:SP:133037,1,"Saint Charles",43.462488,5.610484,0,0,OAC:SA:CTP133037,Europe/Paris,,OAC, +OAC:SP:133040,1,"Fina",43.446507,5.522941,0,0,OAC:SA:CTP133040,Europe/Paris,,OAC, +OAC:SP:133042,1,"Cite Brogilum",43.436097,5.55791,0,0,OAC:SA:CTP133042,Europe/Paris,,OAC, +OAC:SP:133045,1,"Quatre Termes",43.440867,5.529251,0,0,OAC:SA:CTP133045,Europe/Paris,,OAC, +OAC:SP:133046,1,"Quatre Termes",43.440217,5.529401,0,0,OAC:SA:CTP133045,Europe/Paris,,OAC, +OAC:SP:133049,1,"Les Laouvas",43.459404,5.546906,0,0,OAC:SA:CTP133049,Europe/Paris,,OAC, +OAC:SP:133050,1,"Les Laouvas",43.459862,5.546498,0,0,OAC:SA:CTP133049,Europe/Paris,,OAC, +OAC:SP:133051,1,"Les Beaumouilles",43.463334,5.574771,0,0,OAC:SA:CTP133051,Europe/Paris,,OAC, +OAC:SP:133053,1,"Le Stade",43.447089,5.562688,0,0,OAC:SA:CTP133053,Europe/Paris,,OAC, +OAC:SP:133054,1,"Le Stade",43.44698,5.562778,0,0,OAC:SA:CTP133053,Europe/Paris,,OAC, +OAC:SP:133056,1,"La Roquette",43.473083,5.515109,0,0,OAC:SA:CTP133056,Europe/Paris,,OAC, +OAC:SP:133061,1,"Les Ormeaux",43.433461,5.425768,0,0,OAC:SA:CTP133061,Europe/Paris,,OAC, +OAC:SP:133062,1,"Les Ormeaux",43.433285,5.425668,0,0,OAC:SA:CTP133061,Europe/Paris,,OAC, +OAC:SP:133064,1,"Le Siege",43.429661,5.419275,0,0,OAC:SA:CTP124116,Europe/Paris,,OAC, +OAC:SP:133088,1,"Les Cardelines",43.424508,5.295833,0,0,OET:SA:CTP30480,Europe/Paris,,OAC, +OAC:SP:133089,1,"Les Cardelines",43.424451,5.295742,0,0,OET:SA:CTP30480,Europe/Paris,,OAC, +OAC:SP:133937,1,"Jardin St Donat",43.547707,5.455228,0,0,OAC:SA:CTP133937,Europe/Paris,,OAC, +OAC:SP:133938,1,"Vendome",43.531306,5.441672,0,0,OAC:SA:CTP133938,Europe/Paris,,OAC, +OAC:SP:133939,1,"P R Route Alpes",43.540437,5.457187,0,0,OAC:SA:CTP133939,Europe/Paris,,OAC, +OAC:SP:133940,1,"Gare Routiere Quai 20",43.523667,5.439664,0,0,OAC:SA:CTP133940,Europe/Paris,,OAC, +OAC:SP:133941,1,"Archives",43.527022,5.438958,0,0,OAC:SA:CTP133941,Europe/Paris,,OAC, +OAC:SP:133942,1,"Gare SNCF Q2",43.684561,5.504278,0,0,OAC:SA:CTP133942,Europe/Paris,,OAC, +OAC:SP:133943,1,"La Mayanelle",43.538412,5.41163,0,0,OAC:SA:CTP133943,Europe/Paris,,OAC, +OAC:SP:133944,1,"Ampere",43.486582,5.379523,0,0,OAC:SA:CTP123658,Europe/Paris,,OAC, +OAC:SP:133945,1,"Ecole Eugene Bremond",43.577933,5.422612,0,0,OAC:SA:CTP133945,Europe/Paris,,OAC, +OAC:SP:133946,1,"Ecole Auguste Boyer",43.507148,5.391323,0,0,OAC:SA:CTP133946,Europe/Paris,,OAC, +OAC:SP:133947,1,"De Regis",43.579663,5.418323,0,0,OAC:SA:CTP133947,Europe/Paris,,OAC, +OAC:SP:133948,1,"Le Serre 03",43.502377,5.391243,0,0,OAC:SA:CTP133948,Europe/Paris,,OAC, +OAC:SP:133949,1,"Aire d Accueil des Gens du Voyage",43.458921,5.305536,0,0,OAC:SA:CTP133949,Europe/Paris,,OAC, +OAC:SP:133950,1,"A5",43.545953,5.392099,0,0,OAC:SA:CTP133950,Europe/Paris,,OAC, +OAC:SP:133951,1,"Verte Campagne",43.57594,5.424769,0,0,OAC:SA:CTP133951,Europe/Paris,,OAC, +OAC:SP:133952,1,"Verte Campagne",43.575901,5.424707,0,0,OAC:SA:CTP133951,Europe/Paris,,OAC, +OAC:SP:133953,1,"Duranne Ecole",43.486464,5.34461,0,0,OAC:SA:CTP133953,Europe/Paris,,OAC, +OAC:SP:133954,1,"Galilee",43.488664,5.341126,0,0,OAC:SA:CTP133954,Europe/Paris,,OAC, +OAC:SP:133955,1,"Galilee",43.488922,5.341172,0,0,OAC:SA:CTP133954,Europe/Paris,,OAC, +OAC:SP:133956,1,"Pleiades",43.491251,5.340549,0,0,OAC:SA:CTP133956,Europe/Paris,,OAC, +OAC:SP:133957,1,"Pleiades",43.49108,5.340301,0,0,OAC:SA:CTP133956,Europe/Paris,,OAC, +OAC:SP:133958,1,"Gare SNCF Q4",43.684531,5.504395,0,0,OAC:SA:CTP133958,Europe/Paris,,OAC, +OAC:SP:133959,1,"Verte Colline",43.536525,5.43496,0,0,OAC:SA:CTP133959,Europe/Paris,,OAC, +OAC:SP:133960,1,"Verte Colline",43.537018,5.434785,0,0,OAC:SA:CTP133959,Europe/Paris,,OAC, +OAC:SP:133961,1,"Pasteur",43.533306,5.445864,0,0,OAC:SA:CTP133961,Europe/Paris,,OAC, +OAC:SP:133962,1,"Pasteur",43.533238,5.446025,0,0,OAC:SA:CTP133961,Europe/Paris,,OAC, +OAC:SP:133963,1,"De Regis",43.57946,5.418342,0,0,OAC:SA:CTP133947,Europe/Paris,,OAC, +OAC:SP:133964,1,"Pont Corneilles",43.54146,5.454295,0,0,OAC:SA:CTP133964,Europe/Paris,,OAC, +OAC:SP:133965,1,"La Coquillade",43.577485,5.431771,0,0,OAC:SA:CTP132914,Europe/Paris,,OAC, +OAC:SP:133966,1,"Les Peintres",43.544824,5.445276,0,0,OAC:SA:CTP133966,Europe/Paris,,OAC, +OAC:SP:133967,1,"Les Peintres",43.544982,5.445313,0,0,OAC:SA:CTP133966,Europe/Paris,,OAC, +OAC:SP:133968,1,"Ontano",43.54734,5.442637,0,0,OAC:SA:CTP133968,Europe/Paris,,OAC, +OAC:SP:133969,1,"Ontano",43.547362,5.442784,0,0,OAC:SA:CTP133968,Europe/Paris,,OAC, +OAC:SP:133970,1,"Resid. Beaufort",43.563688,5.429636,0,0,OAC:SA:CTP133970,Europe/Paris,,OAC, +OAC:SP:133971,1,"Resid. Beaufort",43.56274,5.430157,0,0,OAC:SA:CTP133970,Europe/Paris,,OAC, +OAC:SP:133972,1,"Puyricard Fetes",43.580573,5.421282,0,0,OAC:SA:CTP133972,Europe/Paris,,OAC, +OAC:SP:133973,1,"Puyricard Fetes",43.580734,5.421516,0,0,OAC:SA:CTP133972,Europe/Paris,,OAC, +OAC:SP:133974,1,"Etoile",43.57407,5.422564,0,0,OAC:SA:CTP133974,Europe/Paris,,OAC, +OAC:SP:133975,1,"Etoile",43.573318,5.423221,0,0,OAC:SA:CTP133974,Europe/Paris,,OAC, +OAC:SP:133976,1,"Quai Saint Louis N 4",43.529971,5.45298,0,0,OAC:SA:CTP133976,Europe/Paris,,OAC, +OAC:SP:133977,1,"Rose",43.561116,5.433779,0,0,OAC:SA:CTP132926,Europe/Paris,,OAC, +OAC:SP:133978,1,"Chemin du Seuil",43.585761,5.41289,0,0,OAC:SA:CTP132755,Europe/Paris,,OAC, +OAC:SP:133979,1,"C22",43.583383,5.415285,0,0,OAC:SA:CTP132756,Europe/Paris,,OAC, +OAC:SP:133980,1,"Solari",43.534245,5.445623,0,0,OAC:SA:CTP132851,Europe/Paris,,OAC, +OAC:SP:133981,1,"Romana",43.581759,5.416477,0,0,OAC:SA:CTP133981,Europe/Paris,,OAC, +OAC:SP:133982,1,"Romana",43.582058,5.416333,0,0,OAC:SA:CTP133981,Europe/Paris,,OAC, +OAC:SP:133983,1,"Guienne",43.57819,5.409782,0,0,OAC:SA:CTP133983,Europe/Paris,,OAC, +OAC:SP:133984,1,"Guienne",43.577323,5.410326,0,0,OAC:SA:CTP133983,Europe/Paris,,OAC, +OAC:SP:133985,1,"Brunet",43.54725,5.440031,0,0,OAC:SA:CTP133985,Europe/Paris,,OAC, +OAC:SP:133986,1,"Brunet",43.547303,5.439743,0,0,OAC:SA:CTP133985,Europe/Paris,,OAC, +OAC:SP:133987,1,"Colonel Bellec",43.575057,5.418029,0,0,OAC:SA:CTP133987,Europe/Paris,,OAC, +OAC:SP:133988,1,"Colonel Bellec",43.575117,5.418083,0,0,OAC:SA:CTP133987,Europe/Paris,,OAC, +OAC:SP:133989,1,"Beaufort",43.569546,5.433099,0,0,OAC:SA:CTP133989,Europe/Paris,,OAC, +OAC:SP:133990,1,"Beaufort",43.569783,5.43317,0,0,OAC:SA:CTP133989,Europe/Paris,,OAC, +OAC:SP:133991,1,"Rigaud",43.542936,5.454582,0,0,OAC:SA:CTP133991,Europe/Paris,,OAC, +OAC:SP:133992,1,"Celony Ecole",43.556782,5.41925,0,0,OAC:SA:CTP133992,Europe/Paris,,OAC, +OAC:SP:133993,1,"Celony Ecole",43.556315,5.419752,0,0,OAC:SA:CTP133992,Europe/Paris,,OAC, +OAC:SP:133994,1,"Abbe Roustand",43.580778,5.411463,0,0,OAC:SA:CTP132770,Europe/Paris,,OAC, +OAC:SP:133995,1,"Auriol",43.537844,5.44676,0,0,OAC:SA:CTP133995,Europe/Paris,,OAC, +OAC:SP:133996,1,"Presidente",43.590267,5.457382,0,0,OAC:SA:CTP132879,Europe/Paris,,OAC, +OAC:SP:133997,1,"Grand Domaine",43.581621,5.411279,0,0,OAC:SA:CTP132772,Europe/Paris,,OAC, +OAC:SP:133998,1,"Les Palombes",43.579972,5.409379,0,0,OAC:SA:CTP132775,Europe/Paris,,OAC, +OAC:SP:133999,1,"Tourterelles",43.581625,5.410084,0,0,OAC:SA:CTP132773,Europe/Paris,,OAC, +OAC:SP:134000,1,"Puyricard Centre",43.580608,5.422633,0,0,OAC:SA:CTP134000,Europe/Paris,,OAC, +OAC:SP:134001,1,"Puyricard Centre",43.58051,5.422533,0,0,OAC:SA:CTP134000,Europe/Paris,,OAC, +OAC:SP:134002,1,"Republique",43.528624,5.440055,0,0,OAC:SA:CTP134002,Europe/Paris,,OAC, +OAC:SP:134003,1,"Niollon",43.527965,5.441534,0,0,OAC:SA:CTP132979,Europe/Paris,,OAC, +OAC:SP:134004,1,"Cruyes Scolaire",43.563631,5.428977,0,0,OAC:SA:CTP134004,Europe/Paris,,OAC, +OAC:SP:134005,1,"Jaubert",43.697356,5.514571,0,0,OAC:SA:CTP134005,Europe/Paris,,OAC, +OAC:SP:134006,1,"Chapelle St Roch",43.687976,5.505633,0,0,OAC:SA:CTP124908,Europe/Paris,,OAC, +OAC:SP:134007,1,"Asters",43.695778,5.525221,0,0,OAC:SA:CTP134007,Europe/Paris,,OAC, +OAC:SP:134008,1,"Asters",43.695703,5.525372,0,0,OAC:SA:CTP134007,Europe/Paris,,OAC, +OAC:SP:134009,1,"Sanclar",43.696997,5.518387,0,0,OAC:SA:CTP134009,Europe/Paris,,OAC, +OAC:SP:134010,1,"Sanclar",43.6969,5.518408,0,0,OAC:SA:CTP134009,Europe/Paris,,OAC, +OAC:SP:134011,1,"Bonnaud",43.68989,5.504405,0,0,OAC:SA:CTP124907,Europe/Paris,,OAC, +OAC:SP:134012,1,"Luberon",43.6959,5.51215,0,0,OAC:SA:CTP124904,Europe/Paris,,OAC, +OAC:SP:134013,1,"Jaubert",43.697628,5.51488,0,0,OAC:SA:CTP134005,Europe/Paris,,OAC, +OAC:SP:134014,1,"Les Festons",43.692881,5.50811,0,0,OAC:SA:CTP124916,Europe/Paris,,OAC, +OAC:SP:134015,1,"Delsome",43.683645,5.507732,0,0,OAC:SA:CTP134015,Europe/Paris,,OAC, +OAC:SP:134016,1,"Delsome",43.683536,5.507817,0,0,OAC:SA:CTP134015,Europe/Paris,,OAC, +OAC:SP:134017,1,"Gare SNCF Q1",43.684578,5.504221,0,0,OAC:SA:CTP134017,Europe/Paris,,OAC, +OAC:SP:134018,1,"Parade",43.508115,5.423604,0,0,OAC:SA:CTP134018,Europe/Paris,,OAC, +OAC:SP:134019,1,"Parade",43.507998,5.42378,0,0,OAC:SA:CTP134018,Europe/Paris,,OAC, +OAC:SP:134020,1,"Gare des Milles",43.503342,5.383421,0,0,OAC:SA:CTP134020,Europe/Paris,,OAC, +OAC:SP:134021,1,"Champ de Foire",43.507805,5.417204,0,0,OAC:SA:CTP134021,Europe/Paris,,OAC, +OAC:SP:134022,1,"Champ de Foire",43.507654,5.417279,0,0,OAC:SA:CTP134021,Europe/Paris,,OAC, +OAC:SP:134023,1,"Aerodrome",43.502949,5.373454,0,0,OAC:SA:CTP134023,Europe/Paris,,OAC, +OAC:SP:134024,1,"Pont de l Arc",43.509484,5.440948,0,0,OAC:SA:CTP120041,Europe/Paris,,OAC, +OAC:SP:134025,1,"Hippodrome",43.508114,5.424959,0,0,OAC:SA:CTP134025,Europe/Paris,,OAC, +OAC:SP:134026,1,"Hippodrome",43.50801,5.425462,0,0,OAC:SA:CTP134025,Europe/Paris,,OAC, +OAC:SP:134027,1,"Camp des Milles",43.503014,5.381072,0,0,OAC:SA:CTP134027,Europe/Paris,,OAC, +OAC:SP:134028,1,"Camp des Milles",43.503097,5.380707,0,0,OAC:SA:CTP134027,Europe/Paris,,OAC, +OAC:SP:134029,1,"Badesse",43.503038,5.375965,0,0,OAC:SA:CTP133011,Europe/Paris,,OAC, +OAC:SP:134030,1,"L Armeliere",43.509822,5.435389,0,0,OAC:SA:CTP120045,Europe/Paris,,OAC, +OAC:SP:134031,1,"Paul Arene",43.689425,5.509271,0,0,OAC:SA:CTP124502,Europe/Paris,,OAC, +OAC:SP:134032,1,"8 Mai 1945",43.684153,5.501252,0,0,OAC:SA:CTP124586,Europe/Paris,,OAC, +OAC:SP:134033,1,"Tresorerie",43.677333,5.503392,0,0,OAC:SA:CTP134033,Europe/Paris,,OAC, +OAC:SP:134034,1,"Tresorerie",43.677433,5.503367,0,0,OAC:SA:CTP134033,Europe/Paris,,OAC, +OAC:SP:134035,1,"Leon Arnoux",43.690523,5.506797,0,0,OAC:SA:CTP124915,Europe/Paris,,OAC, +OAC:SP:134036,1,"Lamartine",43.691389,5.515001,0,0,OAC:SA:CTP134036,Europe/Paris,,OAC, +OAC:SP:134037,1,"Lamartine",43.691762,5.515445,0,0,OAC:SA:CTP134036,Europe/Paris,,OAC, +OAC:SP:134038,1,"Herborn",43.681737,5.501792,0,0,OAC:SA:CTP134038,Europe/Paris,,OAC, +OAC:SP:134039,1,"Herborn",43.681666,5.501756,0,0,OAC:SA:CTP134038,Europe/Paris,,OAC, +OAC:SP:134040,1,"Saint Martin",43.680015,5.502204,0,0,OAC:SA:CTP134040,Europe/Paris,,OAC, +OAC:SP:134041,1,"Saint Martin",43.679974,5.502104,0,0,OAC:SA:CTP134040,Europe/Paris,,OAC, +OAC:SP:134042,1,"Pierre Plantee",43.69414,5.491638,0,0,OAC:SA:CTP124552,Europe/Paris,,OAC, +OAC:SP:134043,1,"Le Gue",43.695195,5.495745,0,0,OAC:SA:CTP124592,Europe/Paris,,OAC, +OAC:SP:134044,1,"La Devalade",43.69696,5.499944,0,0,OAC:SA:CTP124596,Europe/Paris,,OAC, +OAC:SP:134045,1,"Plaine du Chateau",43.688775,5.50271,0,0,OAC:SA:CTP124887,Europe/Paris,,OAC, +OAC:SP:134046,1,"Parking Devalade",43.695636,5.50002,0,0,OAC:SA:CTP134046,Europe/Paris,,OAC, +OAC:SP:134047,1,"Parking Devalade",43.69562,5.500143,0,0,OAC:SA:CTP134046,Europe/Paris,,OAC, +OAC:SP:134048,1,"Hopital",43.694163,5.498542,0,0,OAC:SA:CTP134048,Europe/Paris,,OAC, +OAC:SP:134049,1,"Hopital",43.694108,5.498641,0,0,OAC:SA:CTP134048,Europe/Paris,,OAC, +OAC:SP:134050,1,"Barba",43.692762,5.495013,0,0,OAC:SA:CTP134050,Europe/Paris,,OAC, +OAC:SP:134051,1,"Barba",43.692852,5.495008,0,0,OAC:SA:CTP134050,Europe/Paris,,OAC, +OAC:SP:134052,1,"Brassens",43.691189,5.5026,0,0,OAC:SA:CTP124913,Europe/Paris,,OAC, +OAC:SP:134053,1,"Les Moulieres",43.69694,5.482042,0,0,OAC:SA:CTP124626,Europe/Paris,,OAC, +OAC:SP:134054,1,"Hameau de Beaumont",43.695341,5.485911,0,0,OAC:SA:CTP124622,Europe/Paris,,OAC, +OAC:SP:134055,1,"Notre Dame des Anges",43.694377,5.488882,0,0,OAC:SA:CTP124880,Europe/Paris,,OAC, +OAC:SP:134056,1,"St Colome",43.703586,5.505346,0,0,OAC:SA:CTP124618,Europe/Paris,,OAC, +OAC:SP:134057,1,"Jean Moulin",43.700213,5.50537,0,0,OAC:SA:CTP124620,Europe/Paris,,OAC, +OAC:SP:134058,1,"La Diane",43.694853,5.504868,0,0,OAC:SA:CTP124906,Europe/Paris,,OAC, +OAC:SP:134059,1,"Les Jardins",43.698695,5.502482,0,0,OAC:SA:CTP124598,Europe/Paris,,OAC, +OAC:SP:134060,1,"Vieux moulin",43.689792,5.498915,0,0,OAC:SA:CTP124881,Europe/Paris,,OAC, +OAC:SP:134061,1,"Mauron",43.700178,5.500562,0,0,OAC:SA:CTP134061,Europe/Paris,,OAC, +OAC:SP:134062,1,"Mauron",43.700219,5.500758,0,0,OAC:SA:CTP134061,Europe/Paris,,OAC, +OAC:SP:134063,1,"Saint Joseph",43.703679,5.497299,0,0,OAC:SA:CTP134063,Europe/Paris,,OAC, +OAC:SP:134064,1,"Les Moulins",43.688438,5.496874,0,0,OAC:SA:CTP124883,Europe/Paris,,OAC, +OAC:SP:134065,1,"Dourdouille",43.685705,5.500668,0,0,OAC:SA:CTP124885,Europe/Paris,,OAC, +OAC:SP:134066,1,"Sta. Carcassonne",43.526704,5.459304,0,0,OAC:SA:CTP132535,Europe/Paris,,OAC, +OAC:SP:134067,1,"Marine",43.520308,5.533852,0,0,OAC:SA:CTP134067,Europe/Paris,,OAC, +OAC:SP:134068,1,"Marine",43.520805,5.53265,0,0,OAC:SA:CTP134067,Europe/Paris,,OAC, +OAC:SP:134069,1,"Vallon des Gardes",43.521008,5.4769,0,0,OAC:SA:CTP134069,Europe/Paris,,OAC, +OAC:SP:134070,1,"Vallon des Gardes",43.520869,5.47586,0,0,OAC:SA:CTP134069,Europe/Paris,,OAC, +OAC:SP:134072,1,"Cardinale",43.524583,5.446318,0,0,OAC:SA:CTP134072,Europe/Paris,,OAC, +OAC:SP:134073,1,"CLG Georges Brassens",43.437374,5.408979,0,0,OAC:SA:CTP134073,Europe/Paris,,OAC, +OAC:SP:134074,1,"Jean Perrin",43.443827,5.422373,0,0,OAC:SA:CTP134074,Europe/Paris,,OAC, +OAC:SP:134075,1,"Gare Routiere Quai 13",43.523571,5.440113,0,0,OAC:SA:CTP134075,Europe/Paris,,OAC, +OAC:SP:134076,1,"Jardin St Donat",43.547905,5.4554,0,0,OAC:SA:CTP133937,Europe/Paris,,OAC, +OAC:SP:134077,1,"Grande Terre",43.60044,5.486814,0,0,OAC:SA:CTP134077,Europe/Paris,,OAC, +OAC:SP:134078,1,"L Agnel",43.597476,5.481784,0,0,OAC:SA:CTP134078,Europe/Paris,,OAC, +OAC:SP:134079,1,"Mairie",43.598502,5.484531,0,0,OAC:SA:CTP134079,Europe/Paris,,OAC, +OAC:SP:134080,1,"Brassens",43.541906,5.456165,0,0,OAC:SA:CTP134080,Europe/Paris,,OAC, +OAC:SP:134081,1,"Brassens",43.541771,5.456539,0,0,OAC:SA:CTP134080,Europe/Paris,,OAC, +OAC:SP:134082,1,"Esperantistes 2",43.538371,5.457024,0,0,OAC:SA:CTP134082,Europe/Paris,,OAC, +OAC:SP:134083,1,"Esperantistes 2",43.53862,5.457066,0,0,OAC:SA:CTP134082,Europe/Paris,,OAC, +OAC:SP:134084,1,"P R Route Alpes",43.54051,5.45729,0,0,OAC:SA:CTP133939,Europe/Paris,,OAC, +OAC:SP:134085,1,"Cimetiere",43.645949,5.57819,0,0,OAC:SA:CTP134085,Europe/Paris,,OAC, +OAC:SP:134086,1,"Cimetiere",43.645877,5.577327,0,0,OAC:SA:CTP134085,Europe/Paris,,OAC, +OAC:SP:134087,1,"Centre Aquatique",43.597919,5.495037,0,0,OAC:SA:CTP134087,Europe/Paris,,OAC, +OAC:SP:134088,1,"Ecole Virginie Dedieu",43.438191,5.411306,0,0,OAC:SA:CTP134088,Europe/Paris,,OAC, +OAC:SP:134089,1,"Petit Nice",43.533702,5.463506,0,0,OAC:SA:CTP134089,Europe/Paris,,OAC, +OAC:SP:134090,1,"3 Bons Dieux",43.535753,5.471865,0,0,OAC:SA:CTP122289,Europe/Paris,,OAC, +OAC:SP:134091,1,"Village Haut",43.556006,5.60335,0,0,OAC:SA:CTP124662,Europe/Paris,,OAC, +OAC:SP:134092,1,"Centre Technique",43.555154,5.594832,0,0,OAC:SA:CTP134092,Europe/Paris,,OAC, +OAC:SP:134093,1,"Centre Technique",43.555236,5.594916,0,0,OAC:SA:CTP134092,Europe/Paris,,OAC, +OAC:SP:134094,1,"Mouret Gare Routiere Quai 21",43.523121,5.437282,0,0,OAC:SA:CTP134094,Europe/Paris,,OAC, +OAC:SP:134095,1,"Gouirand",43.555159,5.605777,0,0,OAC:SA:CTP134095,Europe/Paris,,OAC, +OAC:SP:134096,1,"Saint Joseph",43.460901,5.480643,0,0,OAC:SA:CTP134096,Europe/Paris,,OAC, +OAC:SP:134097,1,"Avenue des Ecoles",43.452812,5.469999,0,0,OAC:SA:CTP134097,Europe/Paris,,OAC, +OAC:SP:134098,1,"Ecole Saint Joseph",43.462947,5.483529,0,0,OAC:SA:CTP134098,Europe/Paris,,OAC, +OAC:SP:134099,1,"Centre Charpak",43.445931,5.479612,0,0,OAC:SA:CTP134099,Europe/Paris,,OAC, +OAC:SP:134100,1,"Groupe Scolaire Les Aires",43.452897,5.482222,0,0,OAC:SA:CTP134100,Europe/Paris,,OAC, +OAC:SP:134101,1,"Lycee Fourcade",43.455979,5.477512,0,0,OAC:SA:CTP134101,Europe/Paris,,OAC, +OAC:SP:134102,1,"Mail",43.485423,5.417893,0,0,OAC:SA:CTP134102,Europe/Paris,,OAC, +OAC:SP:134103,1,"Coton Rouge",43.513403,5.451928,0,0,OAC:SA:CTP134142,Europe/Paris,,OAC, +OAC:SP:134104,1,"De Green",43.487939,5.420953,0,0,OAC:SA:CTP134104,Europe/Paris,,OAC, +OAC:SP:134105,1,"Caire",43.482622,5.421843,0,0,OAC:SA:CTP134105,Europe/Paris,,OAC, +OAC:SP:134106,1,"Chamson",43.486447,5.413213,0,0,OAC:SA:CTP134106,Europe/Paris,,OAC, +OAC:SP:134107,1,"Commanderie",43.488288,5.418373,0,0,OAC:SA:CTP134107,Europe/Paris,,OAC, +OAC:SP:134108,1,"Roseaux",43.487915,5.412437,0,0,OAC:SA:CTP132342,Europe/Paris,,OAC, +OAC:SP:134109,1,"Moulin Testas",43.517369,5.44976,0,0,OAC:SA:CTP134109,Europe/Paris,,OAC, +OAC:SP:134110,1,"Pont Arc Mairie",43.509544,5.438192,0,0,OAC:SA:CTP134110,Europe/Paris,,OAC, +OAC:SP:134111,1,"8 Mai 1945",43.458748,5.478689,0,0,OAC:SA:CTP134111,Europe/Paris,,OAC, +OAC:SP:134112,1,"Colline des Freres",43.452604,5.467808,0,0,OAC:SA:CTP134112,Europe/Paris,,OAC, +OAC:SP:134113,1,"La Pinede du Claou",43.447774,5.484643,0,0,OAC:SA:CTP134113,Europe/Paris,,OAC, +OAC:SP:134114,1,"Le Virginia",43.446303,5.485765,0,0,OAC:SA:CTP134114,Europe/Paris,,OAC, +OAC:SP:134115,1,"Les Oliviers",43.444442,5.486067,0,0,OAC:SA:CTP134115,Europe/Paris,,OAC, +OAC:SP:134116,1,"Maison de Retraite",43.449396,5.475205,0,0,OAC:SA:CTP134116,Europe/Paris,,OAC, +OAC:SP:134117,1,"Pergine",43.417201,5.51709,0,0,OAE:SA:CTP40866,Europe/Paris,,OAC, +OAC:SP:134118,1,"Pergine",43.416729,5.517369,0,0,OAE:SA:CTP40866,Europe/Paris,,OAC, +OAC:SP:134119,1,"Petit Nice",43.534452,5.462992,0,0,OAC:SA:CTP134089,Europe/Paris,,OAC, +OAC:SP:134120,1,"Arts et Metiers",43.529866,5.453833,0,0,OAC:SA:CTP120093,Europe/Paris,,OAC, +OAC:SP:134121,1,"Chopin",43.535436,5.465353,0,0,OAC:SA:CTP132637,Europe/Paris,,OAC, +OAC:SP:134122,1,"Vallon Sources",43.538353,5.468951,0,0,OAC:SA:CTP134122,Europe/Paris,,OAC, +OAC:SP:134123,1,"Vallon Sources",43.538125,5.469307,0,0,OAC:SA:CTP134122,Europe/Paris,,OAC, +OAC:SP:134124,1,"Gare Routiere Quai 10",43.523518,5.441117,0,0,OAC:SA:CTP134124,Europe/Paris,,OAC, +OAC:SP:134125,1,"Les Chenes",43.535304,5.476188,0,0,OAC:SA:CTP134125,Europe/Paris,,OAC, +OAC:SP:134126,1,"Les Chenes",43.535236,5.47606,0,0,OAC:SA:CTP134125,Europe/Paris,,OAC, +OAC:SP:134127,1,"Lycee Fourcade",43.456175,5.477798,0,0,OAC:SA:CTP134101,Europe/Paris,,OAC, +OAC:SP:134128,1,"Avenue des Ecoles",43.45274,5.469955,0,0,OAC:SA:CTP134097,Europe/Paris,,OAC, +OAC:SP:134129,1,"Rond Point des Phoceens",43.455437,5.464613,0,0,OAC:SA:CTP134129,Europe/Paris,,OAC, +OAC:SP:134130,1,"Gare Routiere Quai 01",43.523485,5.441746,0,0,OAC:SA:CTP134130,Europe/Paris,,OAC, +OAC:SP:134131,1,"Jean de Roy",43.647941,5.598942,0,0,OAC:SA:CTP134131,Europe/Paris,,OAC, +OAC:SP:134132,1,"Jean de Roy",43.647809,5.598826,0,0,OAC:SA:CTP134131,Europe/Paris,,OAC, +OAC:SP:134133,1,"Gare SNCF Q5",43.684513,5.504452,0,0,OAC:SA:CTP134133,Europe/Paris,,OAC, +OAC:SP:134134,1,"Gambetta",43.524739,5.453954,0,0,OAC:SA:CTP120015,Europe/Paris,,OAC, +OAC:SP:134135,1,"Hameau de Valabre",43.471298,5.449805,0,0,OAC:SA:CTP134135,Europe/Paris,,OAC, +OAC:SP:134136,1,"Hameau de Valabre",43.471639,5.449324,0,0,OAC:SA:CTP134135,Europe/Paris,,OAC, +OAC:SP:134137,1,"Hameau de Turin",43.477038,5.428518,0,0,OAC:SA:CTP134137,Europe/Paris,,OAC, +OAC:SP:134138,1,"Hameau de Turin",43.477601,5.426809,0,0,OAC:SA:CTP134137,Europe/Paris,,OAC, +OAC:SP:134139,1,"Saint Andre",43.464971,5.464145,0,0,OAC:SA:CTP134139,Europe/Paris,,OAC, +OAC:SP:134140,1,"Saint Andre",43.465543,5.463241,0,0,OAC:SA:CTP134139,Europe/Paris,,OAC, +OAC:SP:134141,1,"La Barque",43.477012,5.538684,0,0,OAC:SA:CTP121139,Europe/Paris,,OAC, +OAC:SP:134142,1,"Coton Rouge",43.513277,5.453154,0,0,OAC:SA:CTP134142,Europe/Paris,,OAC, +OAC:SP:134143,1,"Bel Ormeau",43.513747,5.458935,0,0,OAC:SA:CTP134143,Europe/Paris,,OAC, +OAC:SP:134144,1,"Bel Ormeau",43.513704,5.457806,0,0,OAC:SA:CTP134143,Europe/Paris,,OAC, +OAC:SP:134145,1,"Beausoleil",43.514274,5.462821,0,0,OAC:SA:CTP120059,Europe/Paris,,OAC, +OAC:SP:134146,1,"Saint Benoit",43.514048,5.461026,0,0,OAC:SA:CTP123819,Europe/Paris,,OAC, +OAC:SP:134147,1,"Les Rosiers",43.481318,5.53417,0,0,OAC:SA:CTP134147,Europe/Paris,,OAC, +OAC:SP:134148,1,"Les Rosiers",43.48138,5.534261,0,0,OAC:SA:CTP134147,Europe/Paris,,OAC, +OAC:SP:134149,1,"Carlin Couperine",43.426172,5.542381,0,0,OAC:SA:CTP134149,Europe/Paris,,OAC, +OAC:SP:134150,1,"Carlin Couperine",43.426005,5.542172,0,0,OAC:SA:CTP134149,Europe/Paris,,OAC, +OAC:SP:134151,1,"Halte Routiere",43.431094,5.54208,0,0,OAC:SA:CTP134151,Europe/Paris,,OAC, +OAC:SP:134152,1,"Halte Routiere",43.431193,5.54234,0,0,OAC:SA:CTP134151,Europe/Paris,,OAC, +OAC:SP:134153,1,"Les Gournauds",43.421292,5.54385,0,0,OAC:SA:CTP134153,Europe/Paris,,OAC, +OAC:SP:134154,1,"Les Gournauds",43.421898,5.543753,0,0,OAC:SA:CTP134153,Europe/Paris,,OAC, +OAC:SP:134155,1,"Les Pierrassons",43.434496,5.541252,0,0,OAC:SA:CTP134155,Europe/Paris,,OAC, +OAC:SP:134156,1,"Les Pierrassons",43.434535,5.541356,0,0,OAC:SA:CTP134155,Europe/Paris,,OAC, +OAC:SP:134157,1,"Les Revaux",43.443788,5.552345,0,0,OAC:SA:CTP134157,Europe/Paris,,OAC, +OAC:SP:134158,1,"Les Revaux",43.443354,5.551772,0,0,OAC:SA:CTP134157,Europe/Paris,,OAC, +OAC:SP:134159,1,"P R Krypton Q4",43.511254,5.448743,0,0,OAC:SA:CTP134159,Europe/Paris,,OAC, +OAC:SP:134160,1,"Saint Joseph",43.460702,5.480519,0,0,OAC:SA:CTP134096,Europe/Paris,,OAC, +OAC:SP:134161,1,"Anciens Combattants",43.453618,5.476131,0,0,OAC:SA:CTP134161,Europe/Paris,,OAC, +OAC:SP:134162,1,"Anciens Combattants",43.453687,5.475955,0,0,OAC:SA:CTP134161,Europe/Paris,,OAC, +OAC:SP:134163,1,"8 Mai 1945",43.458587,5.478785,0,0,OAC:SA:CTP134111,Europe/Paris,,OAC, +OAC:SP:134164,1,"Clos de la Diote",43.427842,5.537977,0,0,OAC:SA:CTP134164,Europe/Paris,,OAC, +OAC:SP:134165,1,"Colline des Freres",43.452399,5.46784,0,0,OAC:SA:CTP134112,Europe/Paris,,OAC, +OAC:SP:134166,1,"Coteaux de Veline",43.452581,5.474904,0,0,OAC:SA:CTP134166,Europe/Paris,,OAC, +OAC:SP:134167,1,"Coteaux de Veline",43.452587,5.474712,0,0,OAC:SA:CTP134166,Europe/Paris,,OAC, +OAC:SP:134168,1,"Ecole Saint Joseph",43.462809,5.483519,0,0,OAC:SA:CTP134098,Europe/Paris,,OAC, +OAC:SP:134169,1,"Puits de Coudeil",43.436535,5.535886,0,0,OAC:SA:CTP134169,Europe/Paris,,OAC, +OAC:SP:134170,1,"Puits de Coudeil",43.436614,5.535868,0,0,OAC:SA:CTP134169,Europe/Paris,,OAC, +OAC:SP:134171,1,"Pascaret",43.434933,5.538349,0,0,OAC:SA:CTP134171,Europe/Paris,,OAC, +OAC:SP:134172,1,"Pascaret",43.434752,5.538764,0,0,OAC:SA:CTP134171,Europe/Paris,,OAC, +OAC:SP:134173,1,"Toulon",43.451657,5.472616,0,0,OAC:SA:CTP134173,Europe/Paris,,OAC, +OAC:SP:134174,1,"Toulon",43.45161,5.47242,0,0,OAC:SA:CTP134173,Europe/Paris,,OAC, +OAC:SP:134175,1,"P R Krypton Q5",43.511265,5.448816,0,0,OAC:SA:CTP134159,Europe/Paris,,OAC, +OAC:SP:134176,1,"Vieux Puits",43.452056,5.588222,0,0,OAC:SA:CTP134176,Europe/Paris,,OAC, +OAC:SP:134177,1,"Les Quatre Chemins",43.478127,5.536936,0,0,OAC:SA:CTP134177,Europe/Paris,,OAC, +OAC:SP:134178,1,"Vieux Puits",43.45196,5.588765,0,0,OAC:SA:CTP134176,Europe/Paris,,OAC, +OAC:SP:134179,1,"Biver Centre",43.434527,5.4653,0,0,OAC:SA:CTP134179,Europe/Paris,,OAC, +OAC:SP:134180,1,"Route Blanche",43.446711,5.473193,0,0,OAC:SA:CTP134180,Europe/Paris,,OAC, +OAC:SP:134181,1,"Biver Centre",43.434422,5.465199,0,0,OAC:SA:CTP134179,Europe/Paris,,OAC, +OAC:SP:134182,1,"College Pesquier",43.444485,5.469573,0,0,OAC:SA:CTP134182,Europe/Paris,,OAC, +OAC:SP:134183,1,"Collevieille Cauvet",43.439326,5.458593,0,0,OAC:SA:CTP134183,Europe/Paris,,OAC, +OAC:SP:134184,1,"Collevieille Cauvet",43.439842,5.458043,0,0,OAC:SA:CTP134183,Europe/Paris,,OAC, +OAC:SP:134185,1,"Font du Roy",43.448638,5.472893,0,0,OAC:SA:CTP134185,Europe/Paris,,OAC, +OAC:SP:134186,1,"Font du Roy",43.448745,5.472748,0,0,OAC:SA:CTP134185,Europe/Paris,,OAC, +OAC:SP:134187,1,"Les Azalees La Poste",43.437572,5.464991,0,0,OAC:SA:CTP134187,Europe/Paris,,OAC, +OAC:SP:134188,1,"Les Azalees La Poste",43.43672,5.465033,0,0,OAC:SA:CTP134187,Europe/Paris,,OAC, +OAC:SP:134189,1,"Les Roseaux de Cezanne",43.443844,5.472659,0,0,OAC:SA:CTP134189,Europe/Paris,,OAC, +OAC:SP:134190,1,"Les Roseaux de Cezanne",43.443793,5.472482,0,0,OAC:SA:CTP134189,Europe/Paris,,OAC, +OAC:SP:134191,1,"Mediatheque",43.451015,5.472611,0,0,OAC:SA:CTP134191,Europe/Paris,,OAC, +OAC:SP:134192,1,"Mediatheque",43.451121,5.472541,0,0,OAC:SA:CTP134191,Europe/Paris,,OAC, +OAC:SP:134193,1,"Route Blanche",43.446714,5.473067,0,0,OAC:SA:CTP134180,Europe/Paris,,OAC, +OAC:SP:134194,1,"Saint Pierre Galetti",43.440188,5.465172,0,0,OAC:SA:CTP134194,Europe/Paris,,OAC, +OAC:SP:134195,1,"Saint Pierre Galetti",43.439245,5.464972,0,0,OAC:SA:CTP134194,Europe/Paris,,OAC, +OAC:SP:134196,1,"Sainte Barbe",43.436582,5.462391,0,0,OAC:SA:CTP134196,Europe/Paris,,OAC, +OAC:SP:134197,1,"Sainte Barbe",43.437616,5.461308,0,0,OAC:SA:CTP134196,Europe/Paris,,OAC, +OAC:SP:134198,1,"College Pesquier",43.444404,5.46979,0,0,OAC:SA:CTP134182,Europe/Paris,,OAC, +OAC:SP:134199,1,"Avenue de Nice",43.459565,5.477837,0,0,OAC:SA:CTP134199,Europe/Paris,,OAC, +OAC:SP:134200,1,"Avenue de Nice",43.459604,5.478202,0,0,OAC:SA:CTP134199,Europe/Paris,,OAC, +OAC:SP:134201,1,"Saint Roch",43.458728,5.474832,0,0,OAC:SA:CTP134201,Europe/Paris,,OAC, +OAC:SP:134202,1,"Saint Roch",43.45866,5.474874,0,0,OAC:SA:CTP134201,Europe/Paris,,OAC, +OAC:SP:134203,1,"Le Virginia",43.446352,5.485764,0,0,OAC:SA:CTP134114,Europe/Paris,,OAC, +OAC:SP:134204,1,"Les Oliviers",43.444569,5.486279,0,0,OAC:SA:CTP134115,Europe/Paris,,OAC, +OAC:SP:134205,1,"Maison du Peuple",43.456481,5.473105,0,0,OAC:SA:CTP134205,Europe/Paris,,OAC, +OAC:SP:134206,1,"La Pinede du Claou",43.447784,5.484771,0,0,OAC:SA:CTP134113,Europe/Paris,,OAC, +OAC:SP:134207,1,"Parking Savine",43.456644,5.474575,0,0,OAC:SA:CTP134207,Europe/Paris,,OAC, +OAC:SP:134208,1,"Brossolette Lycee Fourcade",43.45667,5.478395,0,0,OAC:SA:CTP134208,Europe/Paris,,OAC, +OAC:SP:134209,1,"Brossolette Lycee Fourcade",43.456609,5.478402,0,0,OAC:SA:CTP134208,Europe/Paris,,OAC, +OAC:SP:134210,1,"Centre Charpak",43.445833,5.47949,0,0,OAC:SA:CTP134099,Europe/Paris,,OAC, +OAC:SP:134211,1,"Chateau Pitty",43.45348,5.483768,0,0,OAC:SA:CTP134211,Europe/Paris,,OAC, +OAC:SP:134212,1,"La Crau",43.456585,5.482293,0,0,OAC:SA:CTP134212,Europe/Paris,,OAC, +OAC:SP:134213,1,"La Crau",43.456604,5.481815,0,0,OAC:SA:CTP134212,Europe/Paris,,OAC, +OAC:SP:134214,1,"Maison de Retraite",43.449352,5.475146,0,0,OAC:SA:CTP134116,Europe/Paris,,OAC, +OAC:SP:134215,1,"Notre Dame",43.455463,5.484413,0,0,OAC:SA:CTP134215,Europe/Paris,,OAC, +OAC:SP:134216,1,"Notre Dame",43.455344,5.484231,0,0,OAC:SA:CTP134215,Europe/Paris,,OAC, +OAC:SP:134217,1,"Parking Savine",43.456528,5.474631,0,0,OAC:SA:CTP134207,Europe/Paris,,OAC, +OAC:SP:134218,1,"Claou",43.450192,5.485942,0,0,OAC:SA:CTP134218,Europe/Paris,,OAC, +OAC:SP:134219,1,"Claou",43.450209,5.48582,0,0,OAC:SA:CTP134218,Europe/Paris,,OAC, +OAC:SP:134220,1,"Norias",43.447723,5.477361,0,0,OAC:SA:CTP134220,Europe/Paris,,OAC, +OAC:SP:134221,1,"Norias",43.447158,5.477869,0,0,OAC:SA:CTP134220,Europe/Paris,,OAC, +OAC:SP:134222,1,"Bompertuis",43.453776,5.453978,0,0,OAC:SA:CTP134222,Europe/Paris,,OAC, +OAC:SP:134223,1,"Fontvenelle",43.458891,5.45917,0,0,OAC:SA:CTP134223,Europe/Paris,,OAC, +OAC:SP:134224,1,"Fontvenelle",43.458942,5.459613,0,0,OAC:SA:CTP134223,Europe/Paris,,OAC, +OAC:SP:134225,1,"La Plaine",43.449302,5.449467,0,0,OAC:SA:CTP134225,Europe/Paris,,OAC, +OAC:SP:134226,1,"Puits Morandat",43.450336,5.448551,0,0,OAC:SA:CTP134226,Europe/Paris,,OAC, +OAC:SP:134227,1,"Zone d Activites Avon",43.448485,5.455908,0,0,OAC:SA:CTP134227,Europe/Paris,,OAC, +OAC:SP:134228,1,"Acacias",43.456811,5.458606,0,0,OAC:SA:CTP134228,Europe/Paris,,OAC, +OAC:SP:134229,1,"Acacias",43.456671,5.458544,0,0,OAC:SA:CTP134228,Europe/Paris,,OAC, +OAC:SP:134230,1,"Mouret",43.52003,5.434693,0,0,OAC:SA:CTP124663,Europe/Paris,,OAC, +OAC:SP:134231,1,"Gare Routiere Quai 16",43.523578,5.439955,0,0,OAC:SA:CTP134231,Europe/Paris,,OAC, +OAC:SP:134232,1,"Foire",43.419295,5.363833,0,0,OAC:SA:CTP134232,Europe/Paris,,OAC, +OAC:SP:134233,1,"Mouret Gare Routiere Quai 22",43.522993,5.4372,0,0,OAC:SA:CTP134233,Europe/Paris,,OAC, +OAC:SP:134238,1,"Gare Routiere Quai 18",43.523585,5.439827,0,0,OAC:SA:CTP134238,Europe/Paris,,OAC, +OAC:SP:134239,1,"Jauvade",43.521836,5.668009,0,0,OAC:SA:CTP134239,Europe/Paris,,OAC, +OAC:SP:134240,1,"Jauvade",43.521688,5.667778,0,0,OAC:SA:CTP134239,Europe/Paris,,OAC, +OAC:SP:134241,1,"Les Garrigues",43.45032,5.604016,0,0,OAC:SA:CTP134241,Europe/Paris,,OAC, +OAC:SP:134242,1,"Boudian",43.449852,5.600516,0,0,OAC:SA:CTP134242,Europe/Paris,,OAC, +OAC:SP:134243,1,"Les Michels Bas 2",43.448486,5.604444,0,0,OAC:SA:CTP134243,Europe/Paris,,OAC, +OAC:SP:134244,1,"Zone Artisanale",43.493091,5.369342,0,0,OAC:SA:CTP123651,Europe/Paris,,OAC, +OAC:SP:134245,1,"Les Pinchinades Rd9",43.437886,5.285691,0,0,OET:SA:CTP30602,Europe/Paris,,OAC, +OAC:SP:134246,1,"Les Pins Cinema",43.439641,5.255396,0,0,OAC:SA:CTP134246,Europe/Paris,,OAC, +OAC:SP:134247,1,"Les Pins Cinema",43.439513,5.255242,0,0,OAC:SA:CTP134246,Europe/Paris,,OAC, +OAC:SP:134248,1,"Plan d Aillane Quai 04",43.49803,5.370395,0,0,OAC:SA:CTP134248,Europe/Paris,,OAC, +OAC:SP:134249,1,"Gare TGV",43.455382,5.316069,0,0,OAC:SA:CTP134249,Europe/Paris,,OAC, +OAC:SP:134250,1,"Baumel",43.534858,5.41008,0,0,OAC:SA:CTP134250,Europe/Paris,,OAC, +OAC:SP:134251,1,"Baumel",43.53503,5.410063,0,0,OAC:SA:CTP134250,Europe/Paris,,OAC, +OAC:SP:134252,1,"Domaine des Plantiers",43.541781,5.370734,0,0,OAC:SA:CTP134252,Europe/Paris,,OAC, +OAC:SP:134253,1,"Domaine des Plantiers",43.541754,5.369731,0,0,OAC:SA:CTP134252,Europe/Paris,,OAC, +OAC:SP:134254,1,"Figons Bas",43.539482,5.378496,0,0,OAC:SA:CTP134254,Europe/Paris,,OAC, +OAC:SP:134255,1,"Figons Bas",43.539697,5.378197,0,0,OAC:SA:CTP134254,Europe/Paris,,OAC, +OAC:SP:134256,1,"Mouret Gare Routiere Quai 26",43.522939,5.436589,0,0,OAC:SA:CTP134256,Europe/Paris,,OAC, +OAC:SP:134257,1,"La Galinette",43.618162,5.308063,0,0,OAC:SA:CTP122247,Europe/Paris,,OAC, +OAC:SP:134258,1,"B20",43.565679,5.403477,0,0,OAC:SA:CTP132721,Europe/Paris,,OAC, +OAC:SP:134259,1,"C02",43.57779,5.383422,0,0,OAC:SA:CTP132727,Europe/Paris,,OAC, +OAC:SP:134260,1,"Gare Routiere Quai 19",43.523591,5.439743,0,0,OAC:SA:CTP134260,Europe/Paris,,OAC, +OAC:SP:134261,1,"Calisson",43.581519,5.377414,0,0,OAC:SA:CTP134261,Europe/Paris,,OAC, +OAC:SP:134262,1,"Calisson",43.57972,5.379962,0,0,OAC:SA:CTP134262,Europe/Paris,,OAC, +OAC:SP:134263,1,"CAT Philibert",43.679311,5.407134,0,0,OAC:SA:CTP134263,Europe/Paris,,OAC, +OAC:SP:134265,1,"Gare Routiere Quai 02",43.523473,5.44166,0,0,OAC:SA:CTP134130,Europe/Paris,,OAC, +OAC:SP:134266,1,"D13 Bis",43.57988,5.456971,0,0,OAC:SA:CTP134266,Europe/Paris,,OAC, +OAC:SP:134267,1,"Monaco",43.384942,5.345156,0,0,OET:SA:CTP30523,Europe/Paris,,OAC, +OAC:SP:134268,1,"Cadeneaux Cimetiere",43.397285,5.340265,0,0,OET:SA:CTP30597,Europe/Paris,,OAC, +OAC:SP:134269,1,"Cadeneaux Cimetiere",43.397213,5.340111,0,0,OET:SA:CTP30597,Europe/Paris,,OAC, +OAC:SP:134270,1,"Mouret Gare Routiere Quai 24",43.522705,5.437039,0,0,OAC:SA:CTP134270,Europe/Paris,,OAC, +OAC:SP:134271,1,"Les Rigauds",43.427472,5.489742,0,0,OAC:SA:CTP124196,Europe/Paris,,OAC, +OAC:SP:134272,1,"Chateau Bas",43.425811,5.486707,0,0,OAC:SA:CTP124198,Europe/Paris,,OAC, +OAC:SP:134273,1,"Le Moulin",43.4227,5.525656,0,0,OAC:SA:CTP134273,Europe/Paris,,OAC, +OAC:SP:134274,1,"Vallon",43.428428,5.530866,0,0,OAC:SA:CTP124990,Europe/Paris,,OAC, +OAC:SP:134275,1,"Font de Rigon",43.417268,5.517452,0,0,OAC:SA:CTP124992,Europe/Paris,,OAC, +OAC:SP:134276,1,"Les Geines",43.424293,5.500515,0,0,OAC:SA:CTP124994,Europe/Paris,,OAC, +OAC:SP:134277,1,"Grands Pins",43.421497,5.524237,0,0,OAC:SA:CTP134277,Europe/Paris,,OAC, +OAC:SP:134278,1,"RN113",43.411086,5.310428,0,0,OAC:SA:CTP134278,Europe/Paris,,OAC, +OAC:SP:134279,1,"RN113",43.410955,5.310602,0,0,OAC:SA:CTP134278,Europe/Paris,,OAC, +OAC:SP:134280,1,"Val de Croy",43.421778,5.297247,0,0,OET:SA:CTP30482,Europe/Paris,,OAC, +OAC:SP:134281,1,"Les Pierres Fauves",43.435851,5.28558,0,0,OET:SA:CTP30108,Europe/Paris,,OAC, +OAC:SP:134282,1,"Renardiere Ecole",43.417058,5.298944,0,0,OET:SA:CTP30484,Europe/Paris,,OAC, +OAC:SP:134283,1,"La Rastelido",43.418376,5.298072,0,0,OET:SA:CTP30572,Europe/Paris,,OAC, +OAC:SP:134284,1,"Square General De Gaulle",43.409399,5.321966,0,0,OAC:SA:CTP121899,Europe/Paris,,OAC, +OAC:SP:134285,1,"Ch. du Pas de la Mue",43.414736,5.300403,0,0,OET:SA:CTP30562,Europe/Paris,,OAC, +OAC:SP:134286,1,"Plan d Aillane Quai 01",43.497797,5.370503,0,0,OAC:SA:CTP134286,Europe/Paris,,OAC, +OAC:SP:134287,1,"Pechiney",43.45338,5.465126,0,0,OAC:SA:CTP134287,Europe/Paris,,OAC, +OAC:SP:134288,1,"Avon",43.446255,5.458306,0,0,OAC:SA:CTP134288,Europe/Paris,,OAC, +OAC:SP:134289,1,"Avon",43.446401,5.458227,0,0,OAC:SA:CTP134288,Europe/Paris,,OAC, +OAC:SP:134290,1,"Puits Gerard",43.42706,5.474872,0,0,OAC:SA:CTP134290,Europe/Paris,,OAC, +OAC:SP:134291,1,"Puits Gerard",43.427242,5.474746,0,0,OAC:SA:CTP134290,Europe/Paris,,OAC, +OAC:SP:134292,1,"Pilon du Roy",43.430369,5.469311,0,0,OAC:SA:CTP134403,Europe/Paris,,OAC, +OAC:SP:134293,1,"P R Krypton Q3",43.511245,5.448677,0,0,OAC:SA:CTP134159,Europe/Paris,,OAC, +OAC:SP:134294,1,"Coutaou",43.489133,5.641774,0,0,OAC:SA:CTP134294,Europe/Paris,,OAC, +OAC:SP:134296,1,"Le Pin",43.41928,5.381291,0,0,OAC:SA:CTP134296,Europe/Paris,,OAC, +OAC:SP:134297,1,"Rocher Du Dragon",43.532795,5.439532,0,0,OAC:SA:CTP134297,Europe/Paris,,OAC, +OAC:SP:134298,1,"Rocher Du Dragon",43.533115,5.440178,0,0,OAC:SA:CTP134297,Europe/Paris,,OAC, +OAC:SP:134299,1,"Chateau Calade",43.572436,5.391201,0,0,OAC:SA:CTP134299,Europe/Paris,,OAC, +OAC:SP:134300,1,"Cave Cooperative",43.623035,5.299122,0,0,OAC:SA:CTP134300,Europe/Paris,,OAC, +OAC:SP:134301,1,"Le Logis d Anne",43.658877,5.634146,0,0,OAC:SA:CTP134301,Europe/Paris,,OAC, +OAC:SP:134302,1,"La Mayanelle D17",43.538617,5.413102,0,0,OAC:SA:CTP134302,Europe/Paris,,OAC, +OAC:SP:134303,1,"La Mayanelle D17",43.538705,5.413248,0,0,OAC:SA:CTP134302,Europe/Paris,,OAC, +OAC:SP:134306,1,"Mouret Gare Routiere Quai 28",43.522555,5.436494,0,0,OAC:SA:CTP134306,Europe/Paris,,OAC, +OAC:SP:134308,1,"Hamamelis",43.6914,5.527348,0,0,OAC:SA:CTP134308,Europe/Paris,,OAC, +OAC:SP:134309,1,"Hamamelis",43.691456,5.527124,0,0,OAC:SA:CTP134308,Europe/Paris,,OAC, +OAC:SP:134310,1,"Les Condamines",43.69154,5.533008,0,0,OAC:SA:CTP124914,Europe/Paris,,OAC, +OAC:SP:134311,1,"EREA Louis Aragon",43.396933,5.321127,0,0,OET:SA:CTP31115,Europe/Paris,,OAC, +OAC:SP:134312,1,"LEP Sainte Elisabeth",43.401877,5.354222,0,0,OAC:SA:CTP134312,Europe/Paris,,OAC, +OAC:SP:134316,1,"Centre Commercial",43.466262,5.465373,0,0,OAC:SA:CTP134316,Europe/Paris,,OAC, +OAC:SP:134318,1,"Valabre",43.472021,5.453464,0,0,OAC:SA:CTP134318,Europe/Paris,,OAC, +OAC:SP:134319,1,"Lycee de Valabre",43.469386,5.450967,0,0,OAC:SA:CTP134319,Europe/Paris,,OAC, +OAC:SP:134320,1,"Lycee de Valabre",43.469445,5.450853,0,0,OAC:SA:CTP134319,Europe/Paris,,OAC, +OAC:SP:134321,1,"Bassin d Eau",43.450979,5.452902,0,0,OAC:SA:CTP134321,Europe/Paris,,OAC, +OAC:SP:134322,1,"Cite Centrale 2",43.463257,5.479435,0,0,OAC:SA:CTP134322,Europe/Paris,,OAC, +OAC:SP:134323,1,"Cite Centrale 1",43.461181,5.477383,0,0,OAC:SA:CTP134323,Europe/Paris,,OAC, +OAC:SP:134324,1,"Chabanu",43.473585,5.465393,0,0,OAC:SA:CTP134324,Europe/Paris,,OAC, +OAC:SP:134325,1,"Payannet",43.470531,5.465803,0,0,OAC:SA:CTP134325,Europe/Paris,,OAC, +OAC:SP:134329,1,"La Recense",43.549238,5.301601,0,0,OAC:SA:CTP134329,Europe/Paris,,OAC, +OAC:SP:134336,1,"La Plaine",43.418944,5.519826,0,0,OAC:SA:CTP124177,Europe/Paris,,OAC, +OAC:SP:134352,1,"Darius Millhaud",43.422541,5.501204,0,0,OAC:SA:CTP134352,Europe/Paris,,OAC, +OAC:SP:134355,1,"Les Noisetiers",43.622641,5.459076,0,0,OAC:SA:CTP127186,Europe/Paris,,OAC, +OAC:SP:134365,1,"Parking Sainte Anne",43.412351,5.507244,0,0,OAC:SA:CTP134365,Europe/Paris,,OAC, +OAC:SP:134367,1,"Parc d Activites",43.454918,5.452731,0,0,OAC:SA:CTP134367,Europe/Paris,,OAC, +OAC:SP:134368,1,"Hameau de Payannet",43.470159,5.474076,0,0,OAC:SA:CTP134368,Europe/Paris,,OAC, +OAC:SP:134369,1,"Jean de Bouc 1",43.462997,5.488695,0,0,OAC:SA:CTP134369,Europe/Paris,,OAC, +OAC:SP:134370,1,"Jean de Bouc 2",43.460399,5.492331,0,0,OAC:SA:CTP134370,Europe/Paris,,OAC, +OAC:SP:134371,1,"Pharmacie du Lycee",43.45673,5.480024,0,0,OAC:SA:CTP134371,Europe/Paris,,OAC, +OAC:SP:134372,1,"Les Pres",43.459314,5.464784,0,0,OAC:SA:CTP134372,Europe/Paris,,OAC, +OAC:SP:134373,1,"Puits Z",43.468665,5.475865,0,0,OAC:SA:CTP134373,Europe/Paris,,OAC, +OAC:SP:134374,1,"Quartier Collevieille",43.439636,5.456011,0,0,OAC:SA:CTP134374,Europe/Paris,,OAC, +OAC:SP:134375,1,"Rambert",43.481197,5.470003,0,0,OAC:SA:CTP134375,Europe/Paris,,OAC, +OAC:SP:134376,1,"San Bovieri",43.441108,5.471117,0,0,OAC:SA:CTP134376,Europe/Paris,,OAC, +OAC:SP:134378,1,"Square Veline",43.45248,5.473035,0,0,OAC:SA:CTP134378,Europe/Paris,,OAC, +OAC:SP:134380,1,"Van Gogh",43.456948,5.486105,0,0,OAC:SA:CTP134380,Europe/Paris,,OAC, +OAC:SP:134383,1,"Roman",43.478728,5.461415,0,0,OAC:SA:CTP134383,Europe/Paris,,OAC, +OAC:SP:134384,1,"Bareme",43.476413,5.464303,0,0,OAC:SA:CTP134384,Europe/Paris,,OAC, +OAC:SP:134385,1,"Lycee de Valabre",43.469541,5.451255,0,0,OAC:SA:CTP134319,Europe/Paris,,OAC, +OAC:SP:134392,1,"Grands Pins",43.421543,5.524161,0,0,OAC:SA:CTP134277,Europe/Paris,,OAC, +OAC:SP:134395,1,"MFR Roque d Antheron",43.721919,5.311835,0,0,OAC:SA:CTP134395,Europe/Paris,,OAC, +OAC:SP:134403,1,"Pilon du Roy",43.43149,5.467906,0,0,OAC:SA:CTP134403,Europe/Paris,,OAC, +OAC:SP:134404,1,"Pechiney",43.453663,5.465247,0,0,OAC:SA:CTP134287,Europe/Paris,,OAC, +OAC:SP:134405,1,"Piboulas",43.492854,5.552506,0,0,OAC:SA:CTP134405,Europe/Paris,,OAC, +OAC:SP:134406,1,"Argelas",43.483834,5.590824,0,0,OAC:SA:CTP134406,Europe/Paris,,OAC, +OAC:SP:134407,1,"Sainte Victoire",43.483022,5.594519,0,0,OAC:SA:CTP134407,Europe/Paris,,OAC, +OAC:SP:134408,1,"Pinede",43.485475,5.595499,0,0,OAC:SA:CTP134408,Europe/Paris,,OAC, +OAC:SP:134420,1,"Val de Tourame",43.590222,5.472181,0,0,OAC:SA:CTP125106,Europe/Paris,,OAC, +OAC:SP:134421,1,"Allee du Parc",43.597894,5.4854,0,0,OAC:SA:CTP134421,Europe/Paris,,OAC, +OAC:SP:134422,1,"Ferme Croze",43.423152,5.291194,0,0,OET:SA:CTP30826,Europe/Paris,,OAC, +OAC:SP:134425,1,"J08bis",43.54605,5.508016,0,0,OAC:SA:CTP134425,Europe/Paris,,OAC, +OAC:SP:134426,1,"J06bis",43.549949,5.523632,0,0,OAC:SA:CTP134426,Europe/Paris,,OAC, +OAC:SP:134427,1,"Creche Mandela",43.410305,5.370792,0,0,OAC:SA:CTP134427,Europe/Paris,,OAC, +OAC:SP:134428,1,"Creche Mandela",43.410213,5.370876,0,0,OAC:SA:CTP134427,Europe/Paris,,OAC, +OAC:SP:134429,1,"Gavotte Peyret",43.389265,5.35241,0,0,OAC:SA:CTP134429,Europe/Paris,,OAC, +OAC:SP:134430,1,"Gavotte Peyret",43.388277,5.351995,0,0,OAC:SA:CTP134429,Europe/Paris,,OAC, +OAC:SP:134431,1,"Mandela Ecole",43.408698,5.366891,0,0,OAC:SA:CTP134431,Europe/Paris,,OAC, +OAC:SP:134432,1,"Mandela Ecole",43.409026,5.367821,0,0,OAC:SA:CTP134431,Europe/Paris,,OAC, +OAC:SP:134433,1,"Tubie Sauze",43.407048,5.363168,0,0,OAC:SA:CTP134433,Europe/Paris,,OAC, +OAC:SP:134434,1,"Saint Jerome",43.517804,5.459635,0,0,OAC:SA:CTP120074,Europe/Paris,,OAC, +OAC:SP:134435,1,"Les Gilets",43.416012,5.5384,0,0,OAC:SA:CTP134435,Europe/Paris,,OAC, +OAC:SP:134436,1,"Les Gilets",43.415664,5.538188,0,0,OAC:SA:CTP134435,Europe/Paris,,OAC, +OAC:SP:134437,1,"La Cause",43.510253,5.492276,0,0,OAC:SA:CTP122661,Europe/Paris,,OAC, +OAC:SP:134438,1,"Nelson Mandela",43.529027,5.438649,0,0,OAC:SA:CTP134438,Europe/Paris,,OAC, +OAC:SP:134439,1,"D13",43.580095,5.456014,0,0,OAC:SA:CTP132865,Europe/Paris,,OAC, +OAC:SP:134440,1,"D09",43.581491,5.430107,0,0,OAC:SA:CTP132850,Europe/Paris,,OAC, +OAC:SP:134441,1,"Bessi",43.579434,5.410831,0,0,OAC:SA:CTP132771,Europe/Paris,,OAC, +OAC:SP:134442,1,"Lou Valadet",43.440396,5.550113,0,0,OAC:SA:CTP134442,Europe/Paris,,OAC, +OAC:SP:134443,1,"Lou Valadet",43.440848,5.55052,0,0,OAC:SA:CTP134442,Europe/Paris,,OAC, +OAC:SP:134444,1,"Maison du Peuple",43.456419,5.473092,0,0,OAC:SA:CTP134205,Europe/Paris,,OAC, +OAC:SP:134445,1,"Pompidou",43.528476,5.438947,0,0,OAC:SA:CTP134445,Europe/Paris,,OAC, +OAC:SP:134446,1,"Collet",43.609266,5.496673,0,0,OAC:SA:CTP134446,Europe/Paris,,OAC, +OAC:SP:134447,1,"Arc Meyran Zola",43.512012,5.461994,0,0,OAC:SA:CTP134447,Europe/Paris,,OAC, +OAC:SP:134448,1,"Violesi",43.437499,5.398196,0,0,OAC:SA:CTP120526,Europe/Paris,,OAC, +OAC:SP:134449,1,"Maison d Arret D59",43.479011,5.394462,0,0,OAC:SA:CTP132305,Europe/Paris,,OAC, +OAC:SP:134450,1,"Chateau Pitty",43.453548,5.483599,0,0,OAC:SA:CTP134211,Europe/Paris,,OAC, +OAC:SP:134451,1,"Chateau Pitty",43.453405,5.483565,0,0,OAC:SA:CTP134211,Europe/Paris,,OAC, +OAC:SP:134452,1,"Cassin Quai 1",43.449754,5.678425,0,0,OAC:SA:CTP134452,Europe/Paris,,OAC, +OAC:SP:134453,1,"Cassin Quai 2",43.449562,5.678864,0,0,OAC:SA:CTP134453,Europe/Paris,,OAC, +OAC:SP:134454,1,"Gare Routiere Quai 17",43.523582,5.439897,0,0,OAC:SA:CTP134454,Europe/Paris,,OAC, +OAC:SP:134455,1,"Baone",27.140959,-3.404569,0,0,OAC:SA:CTP134455,Europe/Paris,,OAC, +OAC:SP:134456,1,"Vendange",43.572913,5.361396,0,0,OAC:SA:CTP134456,Europe/Paris,,OAC, +OAC:SP:134457,1,"Vendange",43.573198,5.361685,0,0,OAC:SA:CTP134456,Europe/Paris,,OAC, +OAC:SP:134458,1,"Giboux",43.428724,5.47133,0,0,OAC:SA:CTP134458,Europe/Paris,,OAC, +OAC:SP:134459,1,"Giboux",43.428791,5.471413,0,0,OAC:SA:CTP134458,Europe/Paris,,OAC, +OAC:SP:134463,1,"Baltard",43.48514,5.384052,0,0,OAC:SA:CTP134463,Europe/Paris,,OAC, +OAC:SP:134464,1,"Baltard",43.484832,5.383725,0,0,OAC:SA:CTP134463,Europe/Paris,,OAC, +OAC:SP:134465,1,"Plan d Aillane Quai 10",43.497852,5.37053,0,0,OAC:SA:CTP134465,Europe/Paris,,OAC, +OAC:SP:134466,1,"Maison d Arret",27.140959,-3.404569,0,0,OAC:SA:CTP134466,Europe/Paris,,OAC, +OAC:SP:134467,1,"Trois Ponts",43.469602,5.565836,0,0,OAC:SA:CTP134467,Europe/Paris,,OAC, +OAC:SP:134468,1,"Station",43.594926,5.482775,0,0,OAC:SA:CTP134468,Europe/Paris,,OAC, +OAC:SP:134469,1,"Les Sauvaires",27.140959,-3.404569,0,0,OAC:SA:CTP134469,Europe/Paris,,OAC, +OAE:SP:40001,1,"Agora",43.286465,5.6016,0,0,OAE:SA:CTP40001,Europe/Paris,,OAE, +OAE:SP:40002,1,"Beausoleil",43.278462,5.517864,0,0,OAE:SA:CTP40002,Europe/Paris,,OAE, +OAE:SP:40003,1,"La Feutrière",43.275683,5.706521,0,0,OAE:SA:CTP40004,Europe/Paris,,OAE, +OAE:SP:40004,1,"La Feutrière",43.275812,5.706147,0,0,OAE:SA:CTP40004,Europe/Paris,,OAE, +OAE:SP:40007,1,"La Garenne",43.275629,5.552034,0,0,OAE:SA:CTP40007,Europe/Paris,,OAE, +OAE:SP:40009,1,"La Gastaude",43.308822,5.545138,0,0,OAE:SA:CTP40009,Europe/Paris,,OAE, +OAE:SP:40010,1,"La Gastaude",43.308792,5.546146,0,0,OAE:SA:CTP40009,Europe/Paris,,OAE, +OAE:SP:40011,1,"La Glacière",43.36818,5.639122,0,0,OAE:SA:CTP40011,Europe/Paris,,OAE, +OAE:SP:40012,1,"La Glacière",43.36838,5.638739,0,0,OAE:SA:CTP40011,Europe/Paris,,OAE, +OAE:SP:40013,1,"La Martisèle",43.310136,5.573315,0,0,OAE:SA:CTP40013,Europe/Paris,,OAE, +OAE:SP:40014,1,"La Martisèle",43.31016,5.573428,0,0,OAE:SA:CTP40013,Europe/Paris,,OAE, +OAE:SP:40015,1,"La Muscatelle",43.287528,5.523303,0,0,OAE:SA:CTP40015,Europe/Paris,,OAE, +OAE:SP:40016,1,"La Muscatelle",43.288178,5.524127,0,0,OAE:SA:CTP40015,Europe/Paris,,OAE, +OAE:SP:40017,1,"La Parette",43.360208,5.641843,0,0,OAE:SA:CTP40017,Europe/Paris,,OAE, +OAE:SP:40018,1,"La Parette",43.360453,5.642374,0,0,OAE:SA:CTP40017,Europe/Paris,,OAE, +OAE:SP:40019,1,"Beausoleil",43.278271,5.518235,0,0,OAE:SA:CTP40002,Europe/Paris,,OAE, +OAE:SP:40021,1,"La Pignore",43.304765,5.53309,0,0,OAE:SA:CTP40021,Europe/Paris,,OAE, +OAE:SP:40022,1,"La Pignore",43.304811,5.533363,0,0,OAE:SA:CTP40021,Europe/Paris,,OAE, +OAE:SP:40023,1,"La Place",43.369533,5.632813,0,0,OAE:SA:CTP40023,Europe/Paris,,OAE, +OAE:SP:40024,1,"La Place",43.369586,5.632866,0,0,OAE:SA:CTP40023,Europe/Paris,,OAE, +OAE:SP:40025,1,"La Plaine",43.33803,5.57436,0,0,OAE:SA:CTP40025,Europe/Paris,,OAE, +OAE:SP:40026,1,"La Plaine",43.337962,5.574208,0,0,OAE:SA:CTP40025,Europe/Paris,,OAE, +OAE:SP:40027,1,"La Planque",43.294712,5.574218,0,0,OAE:SA:CTP40027,Europe/Paris,,OAE, +OAE:SP:40028,1,"La Planque",43.294912,5.574464,0,0,OAE:SA:CTP40027,Europe/Paris,,OAE, +OAE:SP:40029,1,"La Pomme",43.405923,5.575891,0,0,OAE:SA:CTP40029,Europe/Paris,,OAE, +OAE:SP:40032,1,"La Queirade",43.277831,5.528845,0,0,OAE:SA:CTP40032,Europe/Paris,,OAE, +OAE:SP:40033,1,"La Queirade",43.278044,5.528943,0,0,OAE:SA:CTP40032,Europe/Paris,,OAE, +OAE:SP:40034,1,"La République",43.297008,5.620423,0,0,OAE:SA:CTP40034,Europe/Paris,,OAE, +OAE:SP:40035,1,"La République",43.297188,5.620728,0,0,OAE:SA:CTP40034,Europe/Paris,,OAE, +OAE:SP:40036,1,"La Thuilière",43.303085,5.529388,0,0,OAE:SA:CTP40036,Europe/Paris,,OAE, +OAE:SP:40037,1,"La Thuilière",43.303107,5.529574,0,0,OAE:SA:CTP40036,Europe/Paris,,OAE, +OAE:SP:40038,1,"La Tourtelle",43.285465,5.55421,0,0,OAE:SA:CTP40038,Europe/Paris,,OAE, +OAE:SP:40039,1,"La Tourtelle",43.28562,5.55444,0,0,OAE:SA:CTP40038,Europe/Paris,,OAE, +OAE:SP:40042,1,"La Treille",43.311369,5.512016,0,0,OAE:SA:CTP40042,Europe/Paris,,OAE, +OAE:SP:40047,1,"L'Aumone",43.287112,5.530026,0,0,OAE:SA:CTP40047,Europe/Paris,,OAE, +OAE:SP:40048,1,"L'Aumone",43.28776,5.528216,0,0,OAE:SA:CTP40047,Europe/Paris,,OAE, +OAE:SP:40049,1,"Le Cannet",43.332611,5.592682,0,0,OAE:SA:CTP40049,Europe/Paris,,OAE, +OAE:SP:40051,1,"Bouire",43.376761,5.608741,0,0,OAE:SA:CTP40886,Europe/Paris,,OAE, +OAE:SP:40053,1,"Saint Martin",43.282653,5.610455,0,0,OAE:SA:CTP40053,Europe/Paris,,OAE, +OAE:SP:40054,1,"St Martin",43.282777,5.610228,0,0,OAE:SA:CTP40054,Europe/Paris,,OAE, +OAE:SP:40055,1,"Le Maltrait",43.374846,5.612553,0,0,OAE:SA:CTP40055,Europe/Paris,,OAE, +OAE:SP:40056,1,"Le Maltrait",43.374781,5.612636,0,0,OAE:SA:CTP40055,Europe/Paris,,OAE, +OAE:SP:40057,1,"Le Mouton",43.28223,5.50905,0,0,OAE:SA:CTP40057,Europe/Paris,,OAE, +OAE:SP:40058,1,"Le Mouton",43.282024,5.510208,0,0,OAE:SA:CTP40057,Europe/Paris,,OAE, +OAE:SP:40059,1,"Le Plan",43.382618,5.603058,0,0,OAE:SA:CTP40059,Europe/Paris,,OAE, +OAE:SP:40060,1,"Le Plan",43.382586,5.602908,0,0,OAE:SA:CTP40059,Europe/Paris,,OAE, +OAE:SP:40061,1,"Le Puits",43.271416,5.684177,0,0,OAE:SA:CTP40061,Europe/Paris,,OAE, +OAE:SP:40062,1,"Le Puits",43.271273,5.682704,0,0,OAE:SA:CTP40061,Europe/Paris,,OAE, +OAE:SP:40063,1,"Le Renard",43.297261,5.610045,0,0,OAE:SA:CTP40063,Europe/Paris,,OAE, +OAE:SP:40064,1,"Le Renard",43.297392,5.609905,0,0,OAE:SA:CTP40063,Europe/Paris,,OAE, +OAE:SP:40065,1,"Le Soleillet",43.372441,5.607336,0,0,OAE:SA:CTP40065,Europe/Paris,,OAE, +OAE:SP:40066,1,"Le Soleillet",43.372907,5.607104,0,0,OAE:SA:CTP40065,Europe/Paris,,OAE, +OAE:SP:40067,1,"Le Verger des Passons",43.291636,5.584965,0,0,OAE:SA:CTP40067,Europe/Paris,,OAE, +OAE:SP:40068,1,"Le Verger des Passons",43.291727,5.584946,0,0,OAE:SA:CTP40067,Europe/Paris,,OAE, +OAE:SP:40069,1,"Le Village",43.283757,5.544882,0,0,OAE:SA:CTP40069,Europe/Paris,,OAE, +OAE:SP:40070,1,"Village",43.283736,5.544979,0,0,OAE:SA:CTP40070,Europe/Paris,,OAE, +OAE:SP:40071,1,"Les 4 Bigues",43.346506,5.58466,0,0,OAE:SA:CTP40071,Europe/Paris,,OAE, +OAE:SP:40072,1,"Les 4 Bigues",43.346535,5.5846,0,0,OAE:SA:CTP40071,Europe/Paris,,OAE, +OAE:SP:40073,1,"Camoins Thermal",43.301307,5.504355,0,0,OM1:SA:CTP1178,Europe/Paris,,OAE, +OAE:SP:40074,1,"Les 4 Chemins",43.313011,5.573712,0,0,OAE:SA:CTP40074,Europe/Paris,,OAE, +OAE:SP:40075,1,"Les Artauds",43.368211,5.648062,0,0,OAE:SA:CTP40075,Europe/Paris,,OAE, +OAE:SP:40076,1,"Les Artauds",43.368328,5.647772,0,0,OAE:SA:CTP40075,Europe/Paris,,OAE, +OAE:SP:40077,1,"Les Baumes",43.357539,5.634145,0,0,OAE:SA:CTP40077,Europe/Paris,,OAE, +OAE:SP:40078,1,"Les Baumes",43.357493,5.63418,0,0,OAE:SA:CTP40077,Europe/Paris,,OAE, +OAE:SP:40079,1,"Les Bénézits",43.401582,5.587141,0,0,OAE:SA:CTP40838,Europe/Paris,,OAE, +OAE:SP:40080,1,"Les Candolles",43.277853,5.510163,0,0,OAE:SA:CTP40080,Europe/Paris,,OAE, +OAE:SP:40081,1,"Les Caniers",43.286914,5.59451,0,0,OAE:SA:CTP40081,Europe/Paris,,OAE, +OAE:SP:40082,1,"Les Caniers",43.287251,5.594369,0,0,OAE:SA:CTP40081,Europe/Paris,,OAE, +OAE:SP:40083,1,"Les Charrons",43.297037,5.623897,0,0,OAE:SA:CTP40083,Europe/Paris,,OAE, +OAE:SP:40084,1,"Les Charrons",43.297468,5.623626,0,0,OAE:SA:CTP40083,Europe/Paris,,OAE, +OAE:SP:40085,1,"Camoins Thermal",43.301266,5.504537,0,0,OM1:SA:CTP1178,Europe/Paris,,OAE, +OAE:SP:40086,1,"Les Craux",43.296399,5.615931,0,0,OAE:SA:CTP40086,Europe/Paris,,OAE, +OAE:SP:40087,1,"Les Craux",43.296509,5.615838,0,0,OAE:SA:CTP40086,Europe/Paris,,OAE, +OAE:SP:40088,1,"Les Creissauds",43.278638,5.538885,0,0,OAE:SA:CTP40088,Europe/Paris,,OAE, +OAE:SP:40089,1,"Les Creissauds",43.278781,5.538942,0,0,OAE:SA:CTP40088,Europe/Paris,,OAE, +OAE:SP:40090,1,"Les Défensions",43.296403,5.569746,0,0,OAE:SA:CTP40090,Europe/Paris,,OAE, +OAE:SP:40091,1,"Les Défensions",43.296452,5.56901,0,0,OAE:SA:CTP40090,Europe/Paris,,OAE, +OAE:SP:40092,1,"La Casamance",43.27869,5.531724,0,0,OAE:SA:CTP40092,Europe/Paris,,OAE, +OAE:SP:40094,1,"Chemin Des Gorguettes",43.403085,5.586499,0,0,OAE:SA:CTP40094,Europe/Paris,,OAE, +OAE:SP:40095,1,"Les Grands Pins",43.275768,5.52745,0,0,OAE:SA:CTP40095,Europe/Paris,,OAE, +OAE:SP:40096,1,"Les Grands Pins",43.275664,5.527629,0,0,OAE:SA:CTP40095,Europe/Paris,,OAE, +OAE:SP:40097,1,"Les Gypières",43.366391,5.619072,0,0,OAE:SA:CTP40097,Europe/Paris,,OAE, +OAE:SP:40098,1,"Les Gypières",43.366473,5.61904,0,0,OAE:SA:CTP40097,Europe/Paris,,OAE, +OAE:SP:40101,1,"Les Héliantes",43.360343,5.663767,0,0,OAE:SA:CTP40101,Europe/Paris,,OAE, +OAE:SP:40102,1,"Les Camoins",43.301313,5.512691,0,0,OAE:SA:CTP40102,Europe/Paris,,OAE, +OAE:SP:40103,1,"Camp d'Aubert",43.365446,5.642626,0,0,OAE:SA:CTP40103,Europe/Paris,,OAE, +OAE:SP:40106,1,"Les Jourdans",43.309968,5.576828,0,0,OAE:SA:CTP40106,Europe/Paris,,OAE, +OAE:SP:40107,1,"Les Jourdans",43.310015,5.576732,0,0,OAE:SA:CTP40106,Europe/Paris,,OAE, +OAE:SP:40108,1,"Les Lignières",43.294831,5.562196,0,0,OAE:SA:CTP40108,Europe/Paris,,OAE, +OAE:SP:40109,1,"Les Lignieres",43.295002,5.561282,0,0,OAE:SA:CTP40109,Europe/Paris,,OAE, +OAE:SP:40110,1,"Les Micocouliers",43.281559,5.506773,0,0,OAE:SA:CTP40110,Europe/Paris,,OAE, +OAE:SP:40111,1,"Les Micocouliers",43.281681,5.506903,0,0,OAE:SA:CTP40110,Europe/Paris,,OAE, +OAE:SP:40112,1,"Garlaban",43.29616,5.573327,0,0,OAE:SA:CTP40112,Europe/Paris,,OAE, +OAE:SP:40113,1,"Garlaban",43.296139,5.573425,0,0,OAE:SA:CTP40112,Europe/Paris,,OAE, +OAE:SP:40114,1,"Camp d'Aubert",43.365295,5.642851,0,0,OAE:SA:CTP40103,Europe/Paris,,OAE, +OAE:SP:40115,1,"Camp Major",43.288171,5.5413,0,0,OAE:SA:CTP40115,Europe/Paris,,OAE, +OAE:SP:40116,1,"Les Mûriers",43.298217,5.601985,0,0,OAE:SA:CTP40116,Europe/Paris,,OAE, +OAE:SP:40117,1,"Les Mûriers",43.298365,5.601846,0,0,OAE:SA:CTP40116,Europe/Paris,,OAE, +OAE:SP:40118,1,"Les Paluds",43.283908,5.602882,0,0,OAE:SA:CTP40118,Europe/Paris,,OAE, +OAE:SP:40119,1,"Les Paluds",43.283675,5.604038,0,0,OAE:SA:CTP40118,Europe/Paris,,OAE, +OAE:SP:40120,1,"Les Passons",43.294524,5.580462,0,0,OAE:SA:CTP40120,Europe/Paris,,OAE, +OAE:SP:40121,1,"Les Platanes",43.328878,5.598347,0,0,OAE:SA:CTP40121,Europe/Paris,,OAE, +OAE:SP:40122,1,"Les Platanes",43.328748,5.598204,0,0,OAE:SA:CTP40121,Europe/Paris,,OAE, +OAE:SP:40123,1,"Les Restanques",43.280941,5.508228,0,0,OAE:SA:CTP40123,Europe/Paris,,OAE, +OAE:SP:40124,1,"Les Restanques",43.280962,5.508439,0,0,OAE:SA:CTP40123,Europe/Paris,,OAE, +OAE:SP:40127,1,"Les Solans",43.307098,5.57355,0,0,OAE:SA:CTP40127,Europe/Paris,,OAE, +OAE:SP:40128,1,"Les Solans",43.307245,5.573448,0,0,OAE:SA:CTP40127,Europe/Paris,,OAE, +OAE:SP:40131,1,"Camp Major",43.2883,5.541196,0,0,OAE:SA:CTP40115,Europe/Paris,,OAE, +OAE:SP:40132,1,"Central Parc",43.288898,5.572278,0,0,OAE:SA:CTP40132,Europe/Paris,,OAE, +OAE:SP:40133,1,"Les Tourraques",43.380003,5.673405,0,0,OAE:SA:CTP40133,Europe/Paris,,OAE, +OAE:SP:40134,1,"Les Tourraques",43.380084,5.673385,0,0,OAE:SA:CTP40133,Europe/Paris,,OAE, +OAE:SP:40135,1,"L'Ouert",43.345004,5.582283,0,0,OAE:SA:CTP40135,Europe/Paris,,OAE, +OAE:SP:40136,1,"L'Ouert",43.34534,5.582475,0,0,OAE:SA:CTP40135,Europe/Paris,,OAE, +OAE:SP:40137,1,"Marcel Pagnol",43.295623,5.572361,0,0,OAE:SA:CTP40137,Europe/Paris,,OAE, +OAE:SP:40138,1,"Marcel Pagnol",43.295752,5.572233,0,0,OAE:SA:CTP40137,Europe/Paris,,OAE, +OAE:SP:40139,1,"Marcel Paul",43.301604,5.574115,0,0,OAE:SA:CTP40139,Europe/Paris,,OAE, +OAE:SP:40140,1,"Marcel Paul",43.301632,5.574079,0,0,OAE:SA:CTP40139,Europe/Paris,,OAE, +OAE:SP:40141,1,"Mistral",43.290782,5.594766,0,0,OAE:SA:CTP40141,Europe/Paris,,OAE, +OAE:SP:40142,1,"Mistral",43.290978,5.594556,0,0,OAE:SA:CTP40141,Europe/Paris,,OAE, +OAE:SP:40143,1,"Central Parc",43.28883,5.572151,0,0,OAE:SA:CTP40132,Europe/Paris,,OAE, +OAE:SP:40144,1,"Agora",43.286868,5.60166,0,0,OAE:SA:CTP40001,Europe/Paris,,OAE, +OAE:SP:40146,1,"Centre Commercial",43.296077,5.591595,0,0,OAE:SA:CTP40146,Europe/Paris,,OAE, +OAE:SP:40147,1,"Moulin de Redon",43.377274,5.681927,0,0,OAE:SA:CTP40147,Europe/Paris,,OAE, +OAE:SP:40148,1,"Moulin de Redon",43.377391,5.681354,0,0,OAE:SA:CTP40147,Europe/Paris,,OAE, +OAE:SP:40149,1,"Napollon",43.313383,5.5784,0,0,OAE:SA:CTP40149,Europe/Paris,,OAE, +OAE:SP:40150,1,"Napollon",43.313552,5.578447,0,0,OAE:SA:CTP40149,Europe/Paris,,OAE, +OAE:SP:40151,1,"OK Corral",43.267629,5.727549,0,0,OAE:SA:CTP40151,Europe/Paris,,OAE, +OAE:SP:40154,1,"Pas de l'Avé",43.377062,5.668746,0,0,OAE:SA:CTP40154,Europe/Paris,,OAE, +OAE:SP:40155,1,"Pas de l'Avé",43.373562,5.66996,0,0,OAE:SA:CTP40155,Europe/Paris,,OAE, +OAE:SP:40156,1,"Pas de Trets",43.38442,5.602063,0,0,OAE:SA:CTP40156,Europe/Paris,,OAE, +OAE:SP:40157,1,"Pas de Trets",43.385963,5.600992,0,0,OAE:SA:CTP40156,Europe/Paris,,OAE, +OAE:SP:40158,1,"Centre Commercial",43.296406,5.591699,0,0,OAE:SA:CTP40146,Europe/Paris,,OAE, +OAE:SP:40159,1,"Pédéguien",43.365092,5.632176,0,0,OAE:SA:CTP40159,Europe/Paris,,OAE, +OAE:SP:40160,1,"Pédéguien",43.36505,5.632075,0,0,OAE:SA:CTP40159,Europe/Paris,,OAE, +OAE:SP:40161,1,"Pic de Bertagne",43.281776,5.616498,0,0,OAE:SA:CTP40161,Europe/Paris,,OAE, +OAE:SP:40162,1,"Pic de Bertagne",43.281994,5.616425,0,0,OAE:SA:CTP40161,Europe/Paris,,OAE, +OAE:SP:40163,1,"Pin Vert",43.301436,5.570448,0,0,OAE:SA:CTP40163,Europe/Paris,,OAE, +OAE:SP:40164,1,"Pin Vert",43.301376,5.570654,0,0,OAE:SA:CTP40163,Europe/Paris,,OAE, +OAE:SP:40167,1,"Place de l'Eglise",43.281189,5.516267,0,0,OAE:SA:CTP40167,Europe/Paris,,OAE, +OAE:SP:40168,1,"Place de l'Eglise",43.280932,5.51613,0,0,OAE:SA:CTP40167,Europe/Paris,,OAE, +OAE:SP:40169,1,"Place des XV",43.292516,5.567397,0,0,OAE:SA:CTP40169,Europe/Paris,,OAE, +OAE:SP:40170,1,"Plaine de Jouques",43.281541,5.618307,0,0,OAE:SA:CTP40170,Europe/Paris,,OAE, +OAE:SP:40171,1,"Plaine de Jouques",43.281795,5.618247,0,0,OAE:SA:CTP40170,Europe/Paris,,OAE, +OAE:SP:40172,1,"Quartier de Jouques",43.28045,5.621063,0,0,OAE:SA:CTP40172,Europe/Paris,,OAE, +OAE:SP:40173,1,"Quartier de Jouques",43.280785,5.621279,0,0,OAE:SA:CTP40172,Europe/Paris,,OAE, +OAE:SP:40174,1,"Centre des Impôts",43.301904,5.57641,0,0,OAE:SA:CTP40174,Europe/Paris,,OAE, +OAE:SP:40175,1,"La Treille Pluvence",43.3081,5.509742,0,0,OAE:SA:CTP40175,Europe/Paris,,OAE, +OAE:SP:40176,1,"La Treille Pluvence",43.307983,5.50944,0,0,OAE:SA:CTP40175,Europe/Paris,,OAE, +OAE:SP:40184,1,"Pont de Garnière",43.346501,5.597908,0,0,OAE:SA:CTP40184,Europe/Paris,,OAE, +OAE:SP:40185,1,"Pont de Garnière",43.346504,5.597834,0,0,OAE:SA:CTP40184,Europe/Paris,,OAE, +OAE:SP:40186,1,"Pont de Joux",43.365338,5.614081,0,0,OAE:SA:CTP40839,Europe/Paris,,OAE, +OAE:SP:40187,1,"Pont de la Papeterie",43.365736,5.615792,0,0,OAE:SA:CTP40187,Europe/Paris,,OAE, +OAE:SP:40188,1,"Pont de la Papeterie",43.365789,5.615808,0,0,OAE:SA:CTP40187,Europe/Paris,,OAE, +OAE:SP:40189,1,"Pont de la Vede",43.359587,5.661431,0,0,OAE:SA:CTP40189,Europe/Paris,,OAE, +OAE:SP:40190,1,"Pont de la Vède",43.359539,5.661551,0,0,OAE:SA:CTP40190,Europe/Paris,,OAE, +OAE:SP:40191,1,"Pont de Lamagnon",43.296231,5.582012,0,0,OAE:SA:CTP40191,Europe/Paris,,OAE, +OAE:SP:40192,1,"Pont de Lamagnon",43.296395,5.582538,0,0,OAE:SA:CTP40191,Europe/Paris,,OAE, +OAE:SP:40193,1,"Pont de l'Etoile",43.32688,5.596915,0,0,OAE:SA:CTP40193,Europe/Paris,,OAE, +OAE:SP:40194,1,"Pont de l'Etoile",43.32688,5.596915,0,0,OAE:SA:CTP40193,Europe/Paris,,OAE, +OAE:SP:40195,1,"Centre des Impôts",43.301957,5.576733,0,0,OAE:SA:CTP40174,Europe/Paris,,OAE, +OAE:SP:40196,1,"Raymond Reynaud",43.349564,5.599832,0,0,OAE:SA:CTP40196,Europe/Paris,,OAE, +OAE:SP:40197,1,"Raymond Reynaud",43.349611,5.600044,0,0,OAE:SA:CTP40196,Europe/Paris,,OAE, +OAE:SP:40198,1,"Rose des Vents",43.29997,5.572237,0,0,OAE:SA:CTP40198,Europe/Paris,,OAE, +OAE:SP:40199,1,"Rose des Vents",43.300027,5.572142,0,0,OAE:SA:CTP40198,Europe/Paris,,OAE, +OAE:SP:40200,1,"Route de Gemenos",43.296256,5.57763,0,0,OAE:SA:CTP40200,Europe/Paris,,OAE, +OAE:SP:40201,1,"Route de Gemenos",43.296177,5.576961,0,0,OAE:SA:CTP40200,Europe/Paris,,OAE, +OAE:SP:40204,1,"Saint Barthélémy",43.375417,5.626568,0,0,OAE:SA:CTP40204,Europe/Paris,,OAE, +OAE:SP:40205,1,"Saint Estève",43.338489,5.60174,0,0,OAE:SA:CTP40205,Europe/Paris,,OAE, +OAE:SP:40206,1,"St Esteve",43.338522,5.601545,0,0,OAE:SA:CTP40206,Europe/Paris,,OAE, +OAE:SP:40207,1,"Saint Philippe",43.280315,5.538769,0,0,OAE:SA:CTP40207,Europe/Paris,,OAE, +OAE:SP:40208,1,"St Philippe",43.280568,5.539325,0,0,OAE:SA:CTP40208,Europe/Paris,,OAE, +OAE:SP:40209,1,"Saint Sébastien",43.275342,5.69786,0,0,OAE:SA:CTP40209,Europe/Paris,,OAE, +OAE:SP:40210,1,"St Sébastien",43.275558,5.698143,0,0,OAE:SA:CTP40210,Europe/Paris,,OAE, +OAE:SP:40212,1,"Ravel Decroix",43.290513,5.560119,0,0,OAE:SA:CTP40212,Europe/Paris,,OAE, +OAE:SP:40214,1,"Sces Techniques Saint Zacharie",43.38263,5.70112,0,0,OAE:SA:CTP40214,Europe/Paris,,OAE, +OAE:SP:40215,1,"Soeurs Gastine",43.289667,5.566449,0,0,OAE:SA:CTP40215,Europe/Paris,,OAE, +OAE:SP:40216,1,"Soeurs Gastine",43.289759,5.566392,0,0,OAE:SA:CTP40215,Europe/Paris,,OAE, +OAE:SP:40217,1,"Souque Nègre",43.388613,5.599034,0,0,OAE:SA:CTP40218,Europe/Paris,,OAE, +OAE:SP:40218,1,"Souque Nègre",43.388265,5.599224,0,0,OAE:SA:CTP40218,Europe/Paris,,OAE, +OAE:SP:40219,1,"Montée de Lascours",43.344873,5.593773,0,0,OAE:SA:CTP40219,Europe/Paris,,OAE, +OAE:SP:40220,1,"Montée de Lascours",43.345059,5.592379,0,0,OAE:SA:CTP40219,Europe/Paris,,OAE, +OAE:SP:40221,1,"Saint Roch",43.346338,5.603592,0,0,OAE:SA:CTP40221,Europe/Paris,,OAE, +OAE:SP:40222,1,"St Roch",43.346207,5.603473,0,0,OAE:SA:CTP40222,Europe/Paris,,OAE, +OAE:SP:40223,1,"Saint Zacharie Centre Ville",43.384471,5.706703,0,0,OAE:SA:CTP40223,Europe/Paris,,OAE, +OAE:SP:40224,1,"St Zacharie Centre Ville",43.384155,5.706747,0,0,OAE:SA:CTP40224,Europe/Paris,,OAE, +OAE:SP:40225,1,"Sainte Madeleine",43.353945,5.627271,0,0,OAE:SA:CTP40225,Europe/Paris,,OAE, +OAE:SP:40226,1,"Sainte Madeleine",43.354075,5.627734,0,0,OAE:SA:CTP40225,Europe/Paris,,OAE, +OAE:SP:40227,1,"Tennis",43.314577,5.594553,0,0,OAE:SA:CTP40227,Europe/Paris,,OAE, +OAE:SP:40228,1,"Tennis",43.31453,5.5946,0,0,OAE:SA:CTP40227,Europe/Paris,,OAE, +OAE:SP:40229,1,"Val Pré",43.299248,5.569327,0,0,OAE:SA:CTP40229,Europe/Paris,,OAE, +OAE:SP:40230,1,"Val Pré",43.299276,5.569292,0,0,OAE:SA:CTP40229,Europe/Paris,,OAE, +OAE:SP:40231,1,"Valcros",43.341975,5.603331,0,0,OAE:SA:CTP40231,Europe/Paris,,OAE, +OAE:SP:40232,1,"Valcros",43.341835,5.6032,0,0,OAE:SA:CTP40231,Europe/Paris,,OAE, +OAE:SP:40233,1,"Vallon du Roy",43.276933,5.522444,0,0,OAE:SA:CTP40233,Europe/Paris,,OAE, +OAE:SP:40234,1,"Vallon du Roy",43.27682,5.522586,0,0,OAE:SA:CTP40233,Europe/Paris,,OAE, +OAE:SP:40235,1,"Salengro",43.296042,5.56858,0,0,OAE:SA:CTP40235,Europe/Paris,,OAE, +OAE:SP:40236,1,"Salengro",43.295768,5.56843,0,0,OAE:SA:CTP40235,Europe/Paris,,OAE, +OAE:SP:40237,1,"Chemin de Bon Civet",43.277508,5.552964,0,0,OAE:SA:CTP40237,Europe/Paris,,OAE, +OAE:SP:40238,1,"Chemin de Bon Civet",43.277263,5.552716,0,0,OAE:SA:CTP40237,Europe/Paris,,OAE, +OAE:SP:40239,1,"Centre Ville",43.297117,5.62922,0,0,OAE:SA:CTP40239,Europe/Paris,,OAE, +OAE:SP:40240,1,"Passage à Niveau",43.298541,5.575789,0,0,OAE:SA:CTP40240,Europe/Paris,,OAE, +OAE:SP:40241,1,"Passage à Niveau",43.298826,5.575903,0,0,OAE:SA:CTP40240,Europe/Paris,,OAE, +OAE:SP:40246,1,"Chemin Saint Michel",43.291724,5.577005,0,0,OAE:SA:CTP40246,Europe/Paris,,OAE, +OAE:SP:40247,1,"Chemin St Michel",43.291581,5.57728,0,0,OAE:SA:CTP40247,Europe/Paris,,OAE, +OAE:SP:40248,1,"Château Blanc",43.280733,5.551261,0,0,OAE:SA:CTP40248,Europe/Paris,,OAE, +OAE:SP:40249,1,"Les Escourtines",43.281584,5.504719,0,0,OAE:SA:CTP40249,Europe/Paris,,OAE, +OAE:SP:40250,1,"Les Escourtines",43.281474,5.504799,0,0,OAE:SA:CTP40249,Europe/Paris,,OAE, +OAE:SP:40251,1,"Vienot",43.291079,5.554451,0,0,OAE:SA:CTP40251,Europe/Paris,,OAE, +OAE:SP:40252,1,"Vienot",43.291117,5.554379,0,0,OAE:SA:CTP40251,Europe/Paris,,OAE, +OAE:SP:40253,1,"La Marjolaine",43.301967,5.55963,0,0,OAE:SA:CTP40253,Europe/Paris,,OAE, +OAE:SP:40254,1,"La Marjolaine",43.305086,5.556098,0,0,OAE:SA:CTP40254,Europe/Paris,,OAE, +OAE:SP:40255,1,"Claire Fontaine",43.298347,5.536598,0,0,OAE:SA:CTP40255,Europe/Paris,,OAE, +OAE:SP:40256,1,"Claire Fontaine",43.298398,5.5367,0,0,OAE:SA:CTP40255,Europe/Paris,,OAE, +OAE:SP:40257,1,"La Vassale",43.300597,5.570844,0,0,OAE:SA:CTP40257,Europe/Paris,,OAE, +OAE:SP:40258,1,"La Vassale",43.300634,5.570809,0,0,OAE:SA:CTP40257,Europe/Paris,,OAE, +OAE:SP:40259,1,"Château Blanc",43.281283,5.550615,0,0,OAE:SA:CTP40248,Europe/Paris,,OAE, +OAE:SP:40260,1,"La Penne Poste",43.281217,5.518657,0,0,OAE:SA:CTP40260,Europe/Paris,,OAE, +OAE:SP:40261,1,"La Penne Mairie",43.282843,5.515079,0,0,OAE:SA:CTP40261,Europe/Paris,,OAE, +OAE:SP:40262,1,"La Penne Gare",43.284339,5.515593,0,0,OAE:SA:CTP40262,Europe/Paris,,OAE, +OAE:SP:40263,1,"Noël Robion",43.283521,5.523782,0,0,OAE:SA:CTP40263,Europe/Paris,,OAE, +OAE:SP:40264,1,"La Vallée",43.284279,5.521855,0,0,OAE:SA:CTP40264,Europe/Paris,,OAE, +OAE:SP:40265,1,"La Bourgade",43.281405,5.521732,0,0,OAE:SA:CTP40265,Europe/Paris,,OAE, +OAE:SP:40266,1,"La Penne",43.281789,5.514233,0,0,OAE:SA:CTP40266,Europe/Paris,,OAE, +OAE:SP:40267,1,"La Penne",43.281786,5.514319,0,0,OAE:SA:CTP40266,Europe/Paris,,OAE, +OAE:SP:40268,1,"Grand Linche",43.298152,5.603816,0,0,OAE:SA:CTP40268,Europe/Paris,,OAE, +OAE:SP:40269,1,"Grand Linche",43.29824,5.603883,0,0,OAE:SA:CTP40268,Europe/Paris,,OAE, +OAE:SP:40272,1,"Chemin des Barres",43.40172,5.597745,0,0,OAE:SA:CTP40272,Europe/Paris,,OAE, +OAE:SP:40273,1,"Pinchon",43.297636,5.597138,0,0,OAE:SA:CTP40273,Europe/Paris,,OAE, +OAE:SP:40274,1,"Pinchon",43.297392,5.596865,0,0,OAE:SA:CTP40273,Europe/Paris,,OAE, +OAE:SP:40275,1,"Saint Zacharie ZI",43.387749,5.720043,0,0,OAE:SA:CTP40275,Europe/Paris,,OAE, +OAE:SP:40276,1,"Clinique Saint Roch",43.30123,5.507269,0,0,OAE:SA:CTP40276,Europe/Paris,,OAE, +OAE:SP:40277,1,"Clinique St Roch",43.301129,5.507337,0,0,OAE:SA:CTP40277,Europe/Paris,,OAE, +OAE:SP:40278,1,"La Treille Camoins",43.307374,5.508421,0,0,OAE:SA:CTP40278,Europe/Paris,,OAE, +OAE:SP:40279,1,"La Treille Camoins",43.307312,5.508098,0,0,OAE:SA:CTP40278,Europe/Paris,,OAE, +OAE:SP:40280,1,"La Treille Campagne",43.30386,5.505912,0,0,OAE:SA:CTP40280,Europe/Paris,,OAE, +OAE:SP:40281,1,"La Treille Campagne",43.304298,5.505998,0,0,OAE:SA:CTP40280,Europe/Paris,,OAE, +OAE:SP:40282,1,"Place du Monument",43.301177,5.510603,0,0,OAE:SA:CTP40282,Europe/Paris,,OAE, +OAE:SP:40283,1,"Camoins Montée D'Eoures",43.300911,5.51076,0,0,OAE:SA:CTP40283,Europe/Paris,,OAE, +OAE:SP:40284,1,"Eoures Saint Roch",43.300359,5.514239,0,0,OAE:SA:CTP40284,Europe/Paris,,OAE, +OAE:SP:40285,1,"Eoures St Roch",43.300274,5.51437,0,0,OAE:SA:CTP40285,Europe/Paris,,OAE, +OAE:SP:40286,1,"Eoures Notre Dame",43.300515,5.518385,0,0,OAE:SA:CTP40286,Europe/Paris,,OAE, +OAE:SP:40287,1,"Eoures Notre Dame",43.300448,5.518541,0,0,OAE:SA:CTP40286,Europe/Paris,,OAE, +OAE:SP:40288,1,"Eoures Cigales",43.301268,5.522749,0,0,OAE:SA:CTP40288,Europe/Paris,,OAE, +OAE:SP:40289,1,"Eoures Cigales",43.301204,5.523681,0,0,OAE:SA:CTP40288,Europe/Paris,,OAE, +OAE:SP:40291,1,"Les Royantes",43.288344,5.546972,0,0,OAE:SA:CTP40291,Europe/Paris,,OAE, +OAE:SP:40292,1,"Les Royantes",43.288402,5.54684,0,0,OAE:SA:CTP40291,Europe/Paris,,OAE, +OAE:SP:40293,1,"Poteries",43.26921,5.647102,0,0,OAE:SA:CTP40293,Europe/Paris,,OAE, +OAE:SP:40294,1,"Poteries",43.269773,5.64663,0,0,OAE:SA:CTP40293,Europe/Paris,,OAE, +OAE:SP:40295,1,"Eoures Parking",43.301724,5.526468,0,0,OAE:SA:CTP40295,Europe/Paris,,OAE, +OAE:SP:40296,1,"Eoures Parking",43.301333,5.526311,0,0,OAE:SA:CTP40295,Europe/Paris,,OAE, +OAE:SP:40297,1,"Avenue Jean Mermoz",43.286445,5.578479,0,0,OAE:SA:CTP40297,Europe/Paris,,OAE, +OAE:SP:40298,1,"Avenue Jean Mermoz",43.286102,5.577931,0,0,OAE:SA:CTP40297,Europe/Paris,,OAE, +OAE:SP:40299,1,"Résidence Le Mermoz",43.287101,5.573432,0,0,OAE:SA:CTP40299,Europe/Paris,,OAE, +OAE:SP:40300,1,"Résidence Le Mermoz",43.286952,5.573904,0,0,OAE:SA:CTP40299,Europe/Paris,,OAE, +OAE:SP:40301,1,"Bonnes Nouvelles",43.290981,5.593251,0,0,OAE:SA:CTP40301,Europe/Paris,,OAE, +OAE:SP:40302,1,"Bonnes Nouvelles",43.290765,5.592968,0,0,OAE:SA:CTP40301,Europe/Paris,,OAE, +OAE:SP:40304,1,"Chemin du Château",43.292487,5.576457,0,0,OAE:SA:CTP40304,Europe/Paris,,OAE, +OAE:SP:40309,1,"Cimetière de la Penne sur Huveaune",43.278848,5.508457,0,0,OAE:SA:CTP40309,Europe/Paris,,OAE, +OAE:SP:40310,1,"Cimetiere de la Penne",43.278919,5.508486,0,0,OAE:SA:CTP40310,Europe/Paris,,OAE, +OAE:SP:40311,1,"Gaston de Saporta",43.381337,5.702511,0,0,OAE:SA:CTP40311,Europe/Paris,,OAE, +OAE:SP:40312,1,"Gaston de Saporta",43.381353,5.70229,0,0,OAE:SA:CTP40311,Europe/Paris,,OAE, +OAE:SP:40313,1,"Chemin du Château",43.292419,5.57633,0,0,OAE:SA:CTP40304,Europe/Paris,,OAE, +OAE:SP:40314,1,"Chemin St Joseph",43.299294,5.561819,0,0,OAE:SA:CTP40314,Europe/Paris,,OAE, +OAE:SP:40315,1,"Robespierre",43.287022,5.584113,0,0,OAE:SA:CTP40315,Europe/Paris,,OAE, +OAE:SP:40316,1,"Robespierre",43.287215,5.583952,0,0,OAE:SA:CTP40315,Europe/Paris,,OAE, +OAE:SP:40317,1,"La Treille Thermal",43.305519,5.506398,0,0,OAE:SA:CTP40317,Europe/Paris,,OAE, +OAE:SP:40318,1,"La Treille Thermal",43.305836,5.506317,0,0,OAE:SA:CTP40317,Europe/Paris,,OAE, +OAE:SP:40319,1,"La Dorgale",43.336577,5.596271,0,0,OAE:SA:CTP40319,Europe/Paris,,OAE, +OAE:SP:40320,1,"Les Sicardes",43.360834,5.631413,0,0,OAE:SA:CTP40320,Europe/Paris,,OAE, +OAE:SP:40321,1,"Les Sicardes",43.361,5.631559,0,0,OAE:SA:CTP40320,Europe/Paris,,OAE, +OAE:SP:40322,1,"Saint Eloi",43.364593,5.639346,0,0,OAE:SA:CTP40322,Europe/Paris,,OAE, +OAE:SP:40323,1,"Saint Eloi",43.364508,5.639477,0,0,OAE:SA:CTP40322,Europe/Paris,,OAE, +OAE:SP:40324,1,"La Colombe",43.364154,5.647199,0,0,OAE:SA:CTP40324,Europe/Paris,,OAE, +OAE:SP:40325,1,"La Colombe",43.3641,5.647208,0,0,OAE:SA:CTP40324,Europe/Paris,,OAE, +OAE:SP:40326,1,"Chemin St Joseph",43.299085,5.562189,0,0,OAE:SA:CTP40314,Europe/Paris,,OAE, +OAE:SP:40327,1,"Cigardonne",43.316872,5.581972,0,0,OAE:SA:CTP40327,Europe/Paris,,OAE, +OAE:SP:40328,1,"La Thuilière Centre",43.300858,5.530508,0,0,OAE:SA:CTP40328,Europe/Paris,,OAE, +OAE:SP:40329,1,"La Thuilière Centre",43.301051,5.530642,0,0,OAE:SA:CTP40328,Europe/Paris,,OAE, +OAE:SP:40330,1,"La Gratiane",43.307143,5.53901,0,0,OAE:SA:CTP40330,Europe/Paris,,OAE, +OAE:SP:40331,1,"La Gratiane",43.307305,5.539598,0,0,OAE:SA:CTP40330,Europe/Paris,,OAE, +OAE:SP:40333,1,"Seignadone",43.296132,5.543641,0,0,OAE:SA:CTP40333,Europe/Paris,,OAE, +OAE:SP:40334,1,"Khamisis",43.295408,5.549522,0,0,OAE:SA:CTP40334,Europe/Paris,,OAE, +OAE:SP:40335,1,"Khamisis",43.295526,5.549492,0,0,OAE:SA:CTP40334,Europe/Paris,,OAE, +OAE:SP:40336,1,"La Sabatière",43.295543,5.557927,0,0,OAE:SA:CTP40336,Europe/Paris,,OAE, +OAE:SP:40340,1,"Cigardonne",43.316721,5.581607,0,0,OAE:SA:CTP40327,Europe/Paris,,OAE, +OAE:SP:40341,1,"Cimetière des Passons",43.292559,5.574368,0,0,OAE:SA:CTP40358,Europe/Paris,,OAE, +OAE:SP:40342,1,"Chemin des Marseillais",43.401942,5.596352,0,0,OAE:SA:CTP40342,Europe/Paris,,OAE, +OAE:SP:40344,1,"S. Techniques",43.397125,5.600382,0,0,OAE:SA:CTP40344,Europe/Paris,,OAE, +OAE:SP:40349,1,"Ecole de Beaudinard",43.315301,5.588448,0,0,OAE:SA:CTP40349,Europe/Paris,,OAE, +OAE:SP:40350,1,"Ecole de Beaudinard",43.315387,5.588576,0,0,OAE:SA:CTP40349,Europe/Paris,,OAE, +OAE:SP:40358,1,"Cimetière des Passons",43.292651,5.574299,0,0,OAE:SA:CTP40358,Europe/Paris,,OAE, +OAE:SP:40364,1,"Passage à niveau Roquevaire",43.332043,5.594806,0,0,OAE:SA:CTP40364,Europe/Paris,,OAE, +OAE:SP:40365,1,"Passage à Niveau Roquevaire",43.332071,5.594783,0,0,OAE:SA:CTP40365,Europe/Paris,,OAE, +OAE:SP:40370,1,"La Chapelle",43.396319,5.605912,0,0,OAE:SA:CTP40370,Europe/Paris,,OAE, +OAE:SP:40372,1,"La Comtesse",43.294263,5.584671,0,0,OAE:SA:CTP40372,Europe/Paris,,OAE, +OAE:SP:40373,1,"La Comtesse",43.294334,5.584699,0,0,OAE:SA:CTP40372,Europe/Paris,,OAE, +OAE:SP:40377,1,"Mairie",43.369387,5.634371,0,0,OAE:SA:CTP40377,Europe/Paris,,OAE, +OAE:SP:40378,1,"Mairie",43.369365,5.634184,0,0,OAE:SA:CTP40377,Europe/Paris,,OAE, +OAE:SP:40379,1,"Cuges les Pins Mairie",43.275465,5.70028,0,0,OAE:SA:CTP40379,Europe/Paris,,OAE, +OAE:SP:40380,1,"Lot. de la Louve",43.306741,5.5606,0,0,OAE:SA:CTP40380,Europe/Paris,,OAE, +OAE:SP:40381,1,"Clos de la Louve",43.303835,5.562148,0,0,OAE:SA:CTP40381,Europe/Paris,,OAE, +OAE:SP:40382,1,"Clos de la Louve",43.303883,5.56204,0,0,OAE:SA:CTP40381,Europe/Paris,,OAE, +OAE:SP:40383,1,"Bassin de la Gare",43.300457,5.562303,0,0,OAE:SA:CTP40383,Europe/Paris,,OAE, +OAE:SP:40384,1,"Bassin de la Gare",43.300334,5.562222,0,0,OAE:SA:CTP40383,Europe/Paris,,OAE, +OAE:SP:40385,1,"Clos Ruffisque",43.277449,5.535335,0,0,OAE:SA:CTP40385,Europe/Paris,,OAE, +OAE:SP:40386,1,"Longuelance",43.313332,5.576784,0,0,OAE:SA:CTP40386,Europe/Paris,,OAE, +OAE:SP:40387,1,"Longuelance",43.313256,5.57662,0,0,OAE:SA:CTP40386,Europe/Paris,,OAE, +OAE:SP:40388,1,"Les Manaux",43.343701,5.581039,0,0,OAE:SA:CTP40388,Europe/Paris,,OAE, +OAE:SP:40389,1,"Les Manaux",43.343739,5.580967,0,0,OAE:SA:CTP40388,Europe/Paris,,OAE, +OAE:SP:40390,1,"Clos Ruffisque",43.277441,5.535618,0,0,OAE:SA:CTP40385,Europe/Paris,,OAE, +OAE:SP:40391,1,"Avenue de la Paix",43.278879,5.551613,0,0,OAE:SA:CTP40391,Europe/Paris,,OAE, +OAE:SP:40394,1,"Collège Louis Aragon",43.345396,5.600852,0,0,OAE:SA:CTP40843,Europe/Paris,,OAE, +OAE:SP:40395,1,"Les Esparêts",43.341708,5.579447,0,0,OAE:SA:CTP40395,Europe/Paris,,OAE, +OAE:SP:40396,1,"Les Esparêts",43.342291,5.578889,0,0,OAE:SA:CTP40395,Europe/Paris,,OAE, +OAE:SP:40397,1,"Joinville",43.320998,5.581147,0,0,OAE:SA:CTP40397,Europe/Paris,,OAE, +OAE:SP:40398,1,"Joinville",43.321011,5.581036,0,0,OAE:SA:CTP40397,Europe/Paris,,OAE, +OAE:SP:40399,1,"Centre Ville",43.348906,5.602826,0,0,OAE:SA:CTP40399,Europe/Paris,,OAE, +OAE:SP:40402,1,"Musée de la Légion",43.293524,5.553886,0,0,OAE:SA:CTP40402,Europe/Paris,,OAE, +OAE:SP:40403,1,"Musée de la Légion",43.293603,5.55394,0,0,OAE:SA:CTP40402,Europe/Paris,,OAE, +OAE:SP:40404,1,"La Sounce",43.333059,5.57456,0,0,OAE:SA:CTP40404,Europe/Paris,,OAE, +OAE:SP:40405,1,"La Sounce",43.333071,5.574474,0,0,OAE:SA:CTP40404,Europe/Paris,,OAE, +OAE:SP:40406,1,"Collège Lakanal",43.285934,5.582611,0,0,OAE:SA:CTP40406,Europe/Paris,,OAE, +OAE:SP:40407,1,"Vallat",43.289765,5.597195,0,0,OAE:SA:CTP40407,Europe/Paris,,OAE, +OAE:SP:40408,1,"Vallat",43.289747,5.597465,0,0,OAE:SA:CTP40407,Europe/Paris,,OAE, +OAE:SP:40409,1,"Les Cardalines",43.305158,5.556102,0,0,OAE:SA:CTP40409,Europe/Paris,,OAE, +OAE:SP:40410,1,"Les Cardalines",43.305058,5.556134,0,0,OAE:SA:CTP40409,Europe/Paris,,OAE, +OAE:SP:40411,1,"Ecole Claire Dauphin",43.368795,5.643694,0,0,OAE:SA:CTP40411,Europe/Paris,,OAE, +OAE:SP:40412,1,"Allée des Pins",43.275243,5.549317,0,0,OAE:SA:CTP40412,Europe/Paris,,OAE, +OAE:SP:40413,1,"L'Oratoire",43.386613,5.60299,0,0,OAE:SA:CTP40413,Europe/Paris,,OAE, +OAE:SP:40416,1,"Collège Lakanal",43.285917,5.58229,0,0,OAE:SA:CTP40406,Europe/Paris,,OAE, +OAE:SP:40417,1,"Collège Ubelka",43.370269,5.647835,0,0,OAE:SA:CTP40417,Europe/Paris,,OAE, +OAE:SP:40418,1,"Les Tuileries",43.385392,5.710889,0,0,OAE:SA:CTP40418,Europe/Paris,,OAE, +OAE:SP:40419,1,"Les Tuileries",43.385449,5.709943,0,0,OAE:SA:CTP40418,Europe/Paris,,OAE, +OAE:SP:40420,1,"Les Gisclans",43.397749,5.590772,0,0,OAE:SA:CTP40420,Europe/Paris,,OAE, +OAE:SP:40421,1,"L'Aumone Vieille",43.285198,5.523334,0,0,OAE:SA:CTP40421,Europe/Paris,,OAE, +OAE:SP:40422,1,"L'Aumone Vieille",43.28533,5.523403,0,0,OAE:SA:CTP40421,Europe/Paris,,OAE, +OAE:SP:40423,1,"Ebé",43.287857,5.583557,0,0,OAE:SA:CTP40423,Europe/Paris,,OAE, +OAE:SP:40424,1,"Ebé",43.28764,5.582979,0,0,OAE:SA:CTP40423,Europe/Paris,,OAE, +OAE:SP:40427,1,"Quartier des Vaux",43.285615,5.581264,0,0,OAE:SA:CTP40427,Europe/Paris,,OAE, +OAE:SP:40428,1,"Quartier des Vaux",43.285602,5.581386,0,0,OAE:SA:CTP40427,Europe/Paris,,OAE, +OAE:SP:40429,1,"Les Pénitents",43.292873,5.571972,0,0,OAE:SA:CTP40429,Europe/Paris,,OAE, +OAE:SP:40430,1,"Les Pénitents",43.292621,5.572598,0,0,OAE:SA:CTP40429,Europe/Paris,,OAE, +OAE:SP:40431,1,"Médiathèque",43.292274,5.573662,0,0,OAE:SA:CTP40431,Europe/Paris,,OAE, +OAE:SP:40434,1,"Comoedia",43.293699,5.567242,0,0,OAE:SA:CTP40434,Europe/Paris,,OAE, +OAE:SP:40437,1,"Les Alliés",43.295555,5.626767,0,0,OAE:SA:CTP40437,Europe/Paris,,OAE, +OAE:SP:40438,1,"Les Alliés",43.295467,5.626417,0,0,OAE:SA:CTP40437,Europe/Paris,,OAE, +OAE:SP:40439,1,"Le Dirigeable",43.282757,5.607014,0,0,OAE:SA:CTP40439,Europe/Paris,,OAE, +OAE:SP:40440,1,"Le Dirigeable",43.282753,5.610424,0,0,OAE:SA:CTP40440,Europe/Paris,,OAE, +OAE:SP:40442,1,"Les Baraques",43.321577,5.587609,0,0,OAE:SA:CTP40442,Europe/Paris,,OAE, +OAE:SP:40443,1,"Les Baraques",43.323902,5.589811,0,0,OAE:SA:CTP40443,Europe/Paris,,OAE, +OAE:SP:40444,1,"Les Délices",43.296672,5.540002,0,0,OAE:SA:CTP40444,Europe/Paris,,OAE, +OAE:SP:40445,1,"Les Délices",43.297174,5.539747,0,0,OAE:SA:CTP40444,Europe/Paris,,OAE, +OAE:SP:40447,1,"Coulin Carrefour",43.273956,5.636655,0,0,OAE:SA:CTP40447,Europe/Paris,,OAE, +OAE:SP:40448,1,"Pastré",43.296365,5.596031,0,0,OAE:SA:CTP40448,Europe/Paris,,OAE, +OAE:SP:40449,1,"Pastré",43.296393,5.5957,0,0,OAE:SA:CTP40448,Europe/Paris,,OAE, +OAE:SP:40450,1,"Coulin Carrefour",43.274197,5.636423,0,0,OAE:SA:CTP40447,Europe/Paris,,OAE, +OAE:SP:40451,1,"Avenue de la Paix",43.278729,5.551531,0,0,OAE:SA:CTP40391,Europe/Paris,,OAE, +OAE:SP:40452,1,"Avenue du 19 Mars",43.28902,5.569441,0,0,OAE:SA:CTP40452,Europe/Paris,,OAE, +OAE:SP:40453,1,"Cours Barthélémy",43.292727,5.566966,0,0,OAE:SA:CTP40453,Europe/Paris,,OAE, +OAE:SP:40456,1,"Collège Nathalie Sarraute",43.298547,5.564227,0,0,OAE:SA:CTP40456,Europe/Paris,,OAE, +OAE:SP:40457,1,"Collège Nathalie Sarraute",43.298424,5.564122,0,0,OAE:SA:CTP40456,Europe/Paris,,OAE, +OAE:SP:40458,1,"La Gorgue",43.330815,5.573226,0,0,OAE:SA:CTP40458,Europe/Paris,,OAE, +OAE:SP:40459,1,"La Gorgue",43.330801,5.573102,0,0,OAE:SA:CTP40458,Europe/Paris,,OAE, +OAE:SP:40460,1,"Cours Voltaire",43.295241,5.568289,0,0,OAE:SA:CTP40460,Europe/Paris,,OAE, +OAE:SP:40461,1,"Cuges Libération",43.275909,5.701881,0,0,OAE:SA:CTP40461,Europe/Paris,,OAE, +OAE:SP:40462,1,"Cuges Libération",43.276036,5.701852,0,0,OAE:SA:CTP40461,Europe/Paris,,OAE, +OAE:SP:40463,1,"Ecole de la Pérussonne",43.281083,5.540153,0,0,OAE:SA:CTP40463,Europe/Paris,,OAE, +OAE:SP:40464,1,"Ecole de la Pérussonne",43.281714,5.542515,0,0,OAE:SA:CTP40463,Europe/Paris,,OAE, +OAE:SP:40465,1,"Ecole Les Passons",43.293417,5.577211,0,0,OAE:SA:CTP40465,Europe/Paris,,OAE, +OAE:SP:40466,1,"Ecole Les Passons",43.29348,5.577227,0,0,OAE:SA:CTP40465,Europe/Paris,,OAE, +OAE:SP:40467,1,"Eglise de Roquevaire",43.349602,5.603926,0,0,OAE:SA:CTP40467,Europe/Paris,,OAE, +OAE:SP:40468,1,"Eglise de Roquevaire",43.350125,5.604153,0,0,OAE:SA:CTP40467,Europe/Paris,,OAE, +OAE:SP:40469,1,"Avenue du 19 Mars",43.287495,5.5729,0,0,OAE:SA:CTP40469,Europe/Paris,,OAE, +OAE:SP:40470,1,"Bassardelle",43.294148,5.578631,0,0,OAE:SA:CTP40470,Europe/Paris,,OAE, +OAE:SP:40471,1,"Elzéard Rougier",43.293455,5.567893,0,0,OAE:SA:CTP40471,Europe/Paris,,OAE, +OAE:SP:40474,1,"Eoures Village",43.301268,5.520606,0,0,OAE:SA:CTP40474,Europe/Paris,,OAE, +OAE:SP:40475,1,"Eoures Village",43.301202,5.521009,0,0,OAE:SA:CTP40474,Europe/Paris,,OAE, +OAE:SP:40476,1,"Fauge",43.288347,5.600636,0,0,OAE:SA:CTP40476,Europe/Paris,,OAE, +OAE:SP:40477,1,"Fauge",43.288699,5.600015,0,0,OAE:SA:CTP40476,Europe/Paris,,OAE, +OAE:SP:40478,1,"Favary",43.328164,5.573766,0,0,OAE:SA:CTP40478,Europe/Paris,,OAE, +OAE:SP:40479,1,"Favary",43.328206,5.573239,0,0,OAE:SA:CTP40478,Europe/Paris,,OAE, +OAE:SP:40480,1,"Font de Mai",43.307818,5.55284,0,0,OAE:SA:CTP40480,Europe/Paris,,OAE, +OAE:SP:40481,1,"Font de Mai",43.307818,5.552853,0,0,OAE:SA:CTP40480,Europe/Paris,,OAE, +OAE:SP:40482,1,"Fontmagne",43.277288,5.620932,0,0,OAE:SA:CTP40482,Europe/Paris,,OAE, +OAE:SP:40483,1,"Fontmagne",43.277483,5.620746,0,0,OAE:SA:CTP40482,Europe/Paris,,OAE, +OAE:SP:40484,1,"Ganteaume",43.288245,5.574272,0,0,OAE:SA:CTP40484,Europe/Paris,,OAE, +OAE:SP:40485,1,"Ganteaume",43.288603,5.573714,0,0,OAE:SA:CTP40484,Europe/Paris,,OAE, +OAE:SP:40486,1,"Bassardelle",43.294161,5.578497,0,0,OAE:SA:CTP40470,Europe/Paris,,OAE, +OAE:SP:40488,1,"Groupe Provence",43.28795,5.576607,0,0,OAE:SA:CTP40488,Europe/Paris,,OAE, +OAE:SP:40489,1,"Groupe Provence",43.288101,5.576652,0,0,OAE:SA:CTP40488,Europe/Paris,,OAE, +OAE:SP:40492,1,"Hameau du Moulin de Redon",43.3805,5.680562,0,0,OAE:SA:CTP40492,Europe/Paris,,OAE, +OAE:SP:40493,1,"Hameau du Moulin de Redon",43.380588,5.680628,0,0,OAE:SA:CTP40492,Europe/Paris,,OAE, +OAE:SP:40496,1,"Hôpital",43.291344,5.563625,0,0,OAE:SA:CTP40496,Europe/Paris,,OAE, +OAE:SP:40497,1,"Hôpital",43.291207,5.564578,0,0,OAE:SA:CTP40496,Europe/Paris,,OAE, +OAE:SP:40498,1,"Horizons Clairs",43.291148,5.580308,0,0,OAE:SA:CTP40498,Europe/Paris,,OAE, +OAE:SP:40499,1,"Horizons Clairs",43.290959,5.580889,0,0,OAE:SA:CTP40498,Europe/Paris,,OAE, +OAE:SP:40500,1,"Battiers",43.402461,5.592298,0,0,OAE:SA:CTP40500,Europe/Paris,,OAE, +OAE:SP:40503,1,"Jeanne D'Arc",43.298356,5.577158,0,0,OAE:SA:CTP40503,Europe/Paris,,OAE, +OAE:SP:40504,1,"Jeanne d'Arc",43.298192,5.577542,0,0,OAE:SA:CTP40504,Europe/Paris,,OAE, +OAE:SP:40506,1,"La Bastidonne",43.286885,5.516472,0,0,OAE:SA:CTP40506,Europe/Paris,,OAE, +OAE:SP:40507,1,"La Bastidonne",43.287031,5.515163,0,0,OAE:SA:CTP40506,Europe/Paris,,OAE, +OAE:SP:40508,1,"Marius Boyer",43.396067,5.592268,0,0,OAE:SA:CTP40508,Europe/Paris,,OAE, +OAE:SP:40509,1,"Marius Boyer",43.396223,5.592154,0,0,OAE:SA:CTP40508,Europe/Paris,,OAE, +OAE:SP:40510,1,"Gare",43.3932,5.594868,0,0,OAE:SA:CTP40510,Europe/Paris,,OAE, +OAE:SP:40511,1,"Gare",43.393536,5.594455,0,0,OAE:SA:CTP40510,Europe/Paris,,OAE, +OAE:SP:40512,1,"La Bourbonne",43.283541,5.59454,0,0,OAE:SA:CTP40512,Europe/Paris,,OAE, +OAE:SP:40514,1,"Baumone",43.294701,5.594841,0,0,OAE:SA:CTP40514,Europe/Paris,,OAE, +OAE:SP:40515,1,"La Clé des Champs",43.291111,5.582116,0,0,OAE:SA:CTP40515,Europe/Paris,,OAE, +OAE:SP:40516,1,"La Clé des Champs",43.2912,5.582134,0,0,OAE:SA:CTP40515,Europe/Paris,,OAE, +OAE:SP:40517,1,"Le Soleil",43.283829,5.514592,0,0,OAE:SA:CTP40517,Europe/Paris,,OAE, +OAE:SP:40518,1,"Le Soleil",43.283764,5.514034,0,0,OAE:SA:CTP40517,Europe/Paris,,OAE, +OAE:SP:40519,1,"La Croix",43.368856,5.627325,0,0,OAE:SA:CTP40519,Europe/Paris,,OAE, +OAE:SP:40520,1,"La Croix",43.368908,5.62739,0,0,OAE:SA:CTP40519,Europe/Paris,,OAE, +OAE:SP:40521,1,"La Curasse",43.275453,5.714693,0,0,OAE:SA:CTP40521,Europe/Paris,,OAE, +OAE:SP:40522,1,"La Curasse",43.275597,5.71528,0,0,OAE:SA:CTP40521,Europe/Paris,,OAE, +OAE:SP:40523,1,"Mairie",43.377408,5.605782,0,0,OAE:SA:CTP40523,Europe/Paris,,OAE, +OAE:SP:40524,1,"Mairie",43.377393,5.605683,0,0,OAE:SA:CTP40523,Europe/Paris,,OAE, +OAE:SP:40525,1,"La Durande",43.318998,5.581563,0,0,OAE:SA:CTP40525,Europe/Paris,,OAE, +OAE:SP:40526,1,"La Durande",43.319063,5.581493,0,0,OAE:SA:CTP40525,Europe/Paris,,OAE, +OAE:SP:40527,1,"Baumone",43.295681,5.595155,0,0,OAE:SA:CTP40514,Europe/Paris,,OAE, +OAE:SP:40531,1,"Pujol",43.368184,5.649244,0,0,OAE:SA:CTP40531,Europe/Paris,,OAE, +OAE:SP:40532,1,"Pujol",43.368468,5.649926,0,0,OAE:SA:CTP40531,Europe/Paris,,OAE, +OAE:SP:40533,1,"Pierre Blancard",43.297473,5.56317,0,0,OAE:SA:CTP40533,Europe/Paris,,OAE, +OAE:SP:40534,1,"Pierre Blancard",43.297546,5.563137,0,0,OAE:SA:CTP40533,Europe/Paris,,OAE, +OAE:SP:40535,1,"L'Auberge",43.355468,5.626877,0,0,OAE:SA:CTP40535,Europe/Paris,,OAE, +OAE:SP:40536,1,"L'Auberge",43.35561,5.626947,0,0,OAE:SA:CTP40535,Europe/Paris,,OAE, +OAE:SP:40537,1,"Les Marseillais",43.356077,5.631978,0,0,OAE:SA:CTP40537,Europe/Paris,,OAE, +OAE:SP:40538,1,"Les Marseillais",43.356074,5.632052,0,0,OAE:SA:CTP40537,Europe/Paris,,OAE, +OAE:SP:40539,1,"Les Vignes",43.358684,5.637872,0,0,OAE:SA:CTP40539,Europe/Paris,,OAE, +OAE:SP:40540,1,"Les Vignes",43.358615,5.637794,0,0,OAE:SA:CTP40539,Europe/Paris,,OAE, +OAE:SP:40541,1,"Pierrina",43.363465,5.650882,0,0,OAE:SA:CTP40541,Europe/Paris,,OAE, +OAE:SP:40542,1,"Pierrina",43.363389,5.651025,0,0,OAE:SA:CTP40541,Europe/Paris,,OAE, +OAE:SP:40543,1,"L'Escale",43.357491,5.660003,0,0,OAE:SA:CTP40543,Europe/Paris,,OAE, +OAE:SP:40544,1,"L'Escale",43.357493,5.659941,0,0,OAE:SA:CTP40543,Europe/Paris,,OAE, +OAE:SP:40545,1,"Les Estiennes",43.363038,5.658032,0,0,OAE:SA:CTP40545,Europe/Paris,,OAE, +OAE:SP:40546,1,"Les Estiennes",43.363144,5.658691,0,0,OAE:SA:CTP40545,Europe/Paris,,OAE, +OAE:SP:40556,1,"Jas de Valèze",43.385058,5.566264,0,0,OAE:SA:CTP40556,Europe/Paris,,OAE, +OAE:SP:40557,1,"Jas de Valèze",43.385176,5.566234,0,0,OAE:SA:CTP40556,Europe/Paris,,OAE, +OAE:SP:40568,1,"Le Château",43.379972,5.58287,0,0,OAE:SA:CTP40615,Europe/Paris,,OAE, +OAE:SP:40576,1,"Les Hermittes",43.377711,5.59014,0,0,OAE:SA:CTP40576,Europe/Paris,,OAE, +OAE:SP:40579,1,"Ravel Decroix",43.290518,5.559984,0,0,OAE:SA:CTP40212,Europe/Paris,,OAE, +OAE:SP:40580,1,"Les Pégoulières",43.381743,5.579616,0,0,OAE:SA:CTP40580,Europe/Paris,,OAE, +OAE:SP:40581,1,"Les Termes",43.385448,5.561353,0,0,OAE:SA:CTP40581,Europe/Paris,,OAE, +OAE:SP:40582,1,"Les Termes",43.385546,5.560496,0,0,OAE:SA:CTP40581,Europe/Paris,,OAE, +OAE:SP:40594,1,"Revers du Jas",43.37807,5.587473,0,0,OAE:SA:CTP40594,Europe/Paris,,OAE, +OAE:SP:40611,1,"Halte Routière de Peypin",43.384622,5.576598,0,0,OAE:SA:CTP40611,Europe/Paris,,OAE, +OAE:SP:40612,1,"Halte Routière de Peypin",43.384909,5.575714,0,0,OAE:SA:CTP40611,Europe/Paris,,OAE, +OAE:SP:40615,1,"Le Château",43.379611,5.583528,0,0,OAE:SA:CTP40615,Europe/Paris,,OAE, +OAE:SP:40616,1,"Le Deven",43.377214,5.597646,0,0,OAE:SA:CTP40616,Europe/Paris,,OAE, +OAE:SP:40617,1,"Le Panorama",43.3769,5.603854,0,0,OAE:SA:CTP40617,Europe/Paris,,OAE, +OAE:SP:40619,1,"Hameau du Vallon",43.276891,5.554628,0,0,OAE:SA:CTP40619,Europe/Paris,,OAE, +OAE:SP:40620,1,"Hameau du Vallon",43.277015,5.554696,0,0,OAE:SA:CTP40619,Europe/Paris,,OAE, +OAE:SP:40621,1,"Cimetière des Fenestrelles",43.274601,5.559053,0,0,OAE:SA:CTP40621,Europe/Paris,,OAE, +OAE:SP:40622,1,"Cimetière des Fenestrelles",43.274724,5.559122,0,0,OAE:SA:CTP40621,Europe/Paris,,OAE, +OAE:SP:40623,1,"Les Pégoulières",43.381633,5.579684,0,0,OAE:SA:CTP40580,Europe/Paris,,OAE, +OAE:SP:40624,1,"La Verrerie",43.375009,5.607507,0,0,OAE:SA:CTP40624,Europe/Paris,,OAE, +OAE:SP:40625,1,"La Verrerie",43.374943,5.60759,0,0,OAE:SA:CTP40624,Europe/Paris,,OAE, +OAE:SP:40626,1,"Les Cossettes",43.283781,5.548884,0,0,OAE:SA:CTP40626,Europe/Paris,,OAE, +OAE:SP:40627,1,"Les Cossettes",43.283668,5.548767,0,0,OAE:SA:CTP40626,Europe/Paris,,OAE, +OAE:SP:40628,1,"Colonel de Roux",43.295324,5.566755,0,0,OAE:SA:CTP40628,Europe/Paris,,OAE, +OAE:SP:40629,1,"Gare",43.295571,5.564515,0,0,OAE:SA:CTP40998,Europe/Paris,,OAE, +OAE:SP:40630,1,"Gare",43.295653,5.565074,0,0,OAE:SA:CTP40998,Europe/Paris,,OAE, +OAE:SP:40631,1,"Gare",43.295616,5.564801,0,0,OAE:SA:CTP40998,Europe/Paris,,OAE, +OAE:SP:40632,1,"Gare",43.295872,5.567056,0,0,OAE:SA:CTP40998,Europe/Paris,,OAE, +OAE:SP:40633,1,"Gare",43.295698,5.565372,0,0,OAE:SA:CTP40998,Europe/Paris,,OAE, +OAE:SP:40635,1,"Martin Luther King",43.29288,5.562788,0,0,OAE:SA:CTP40635,Europe/Paris,,OAE, +OAE:SP:40636,1,"Martin Luther King",43.292863,5.563034,0,0,OAE:SA:CTP40635,Europe/Paris,,OAE, +OAE:SP:40637,1,"Piscine Alain Bernard / Oasis du Charrel",43.28443,5.547615,0,0,OAE:SA:CTP40637,Europe/Paris,,OAE, +OAE:SP:40638,1,"Piscine Alain Bernard / Oasis du Charrel",43.284511,5.547041,0,0,OAE:SA:CTP40637,Europe/Paris,,OAE, +OAE:SP:40639,1,"Eiffel",43.284907,5.548516,0,0,OAE:SA:CTP40639,Europe/Paris,,OAE, +OAE:SP:40640,1,"Eiffel",43.286705,5.54853,0,0,OAE:SA:CTP40639,Europe/Paris,,OAE, +OAE:SP:40641,1,"Les Gisclans",43.397216,5.591125,0,0,OAE:SA:CTP40420,Europe/Paris,,OAE, +OAE:SP:40647,1,"Ravel Decroix",43.290493,5.559896,0,0,OAE:SA:CTP40212,Europe/Paris,,OAE, +OAE:SP:40648,1,"Ravel Decroix",43.290494,5.559859,0,0,OAE:SA:CTP40212,Europe/Paris,,OAE, +OAE:SP:40649,1,"Château Blanc",43.281795,5.550053,0,0,OAE:SA:CTP40248,Europe/Paris,,OAE, +OAE:SP:40650,1,"Château Blanc",43.281725,5.549987,0,0,OAE:SA:CTP40248,Europe/Paris,,OAE, +OAE:SP:40651,1,"Le Charrel",43.279191,5.551126,0,0,OAE:SA:CTP40651,Europe/Paris,,OAE, +OAE:SP:40652,1,"Marthin Luther King",43.292969,5.562793,0,0,OAE:SA:CTP40652,Europe/Paris,,OAE, +OAE:SP:40653,1,"Marthin Luther King",43.292971,5.562744,0,0,OAE:SA:CTP40652,Europe/Paris,,OAE, +OAE:SP:40654,1,"Piscine Alain Bernard / Oasis du Charrel",43.284679,5.548011,0,0,OAE:SA:CTP40637,Europe/Paris,,OAE, +OAE:SP:40655,1,"Piscine Alain Bernard / Oasis du Charrel",43.284734,5.547989,0,0,OAE:SA:CTP40637,Europe/Paris,,OAE, +OAE:SP:40656,1,"Gare",43.295776,5.565771,0,0,OAE:SA:CTP40998,Europe/Paris,,OAE, +OAE:SP:40657,1,"La Tourtelle",43.285638,5.554466,0,0,OAE:SA:CTP40038,Europe/Paris,,OAE, +OAE:SP:40658,1,"La Tourtelle",43.285675,5.554406,0,0,OAE:SA:CTP40038,Europe/Paris,,OAE, +OAE:SP:40659,1,"Le Castellet",43.28566,5.566309,0,0,OAE:SA:CTP40659,Europe/Paris,,OAE, +OAE:SP:40660,1,"Le Castellet",43.285592,5.566195,0,0,OAE:SA:CTP40659,Europe/Paris,,OAE, +OAE:SP:40661,1,"Lou Fenestrel",43.280262,5.565181,0,0,OAE:SA:CTP40661,Europe/Paris,,OAE, +OAE:SP:40662,1,"Lou Fenestrel",43.280211,5.565104,0,0,OAE:SA:CTP40661,Europe/Paris,,OAE, +OAE:SP:40663,1,"Vallon des Gavots",43.281648,5.565456,0,0,OAE:SA:CTP40663,Europe/Paris,,OAE, +OAE:SP:40664,1,"Vallon des Gavots",43.28166,5.565358,0,0,OAE:SA:CTP40663,Europe/Paris,,OAE, +OAE:SP:40667,1,"Chemin du Charrel",43.277462,5.561085,0,0,OAE:SA:CTP40667,Europe/Paris,,OAE, +OAE:SP:40668,1,"Chemin du Charrel",43.277519,5.561002,0,0,OAE:SA:CTP40667,Europe/Paris,,OAE, +OAE:SP:40669,1,"La Verdure",43.288838,5.567091,0,0,OAE:SA:CTP40669,Europe/Paris,,OAE, +OAE:SP:40670,1,"La Verdure",43.288753,5.566951,0,0,OAE:SA:CTP40669,Europe/Paris,,OAE, +OAE:SP:40671,1,"Gare",43.295655,5.566195,0,0,OAE:SA:CTP40998,Europe/Paris,,OAE, +OAE:SP:40672,1,"Lotissement des Solans",43.312217,5.569615,0,0,OAE:SA:CTP40672,Europe/Paris,,OAE, +OAE:SP:40673,1,"La Bretagne",43.312254,5.563299,0,0,OAE:SA:CTP40673,Europe/Paris,,OAE, +OAE:SP:40674,1,"Grand Pin Vert",43.307324,5.565743,0,0,OAE:SA:CTP40674,Europe/Paris,,OAE, +OAE:SP:40675,1,"Jean Aicard",43.302656,5.567549,0,0,OAE:SA:CTP40675,Europe/Paris,,OAE, +OAE:SP:40677,1,"Route d'Eoures",43.297332,5.568752,0,0,OAE:SA:CTP40677,Europe/Paris,,OAE, +OAE:SP:40678,1,"Actipôle",43.285632,5.527199,0,0,OAE:SA:CTP40678,Europe/Paris,,OAE, +OAE:SP:40679,1,"Le Deven",43.377191,5.598125,0,0,OAE:SA:CTP40616,Europe/Paris,,OAE, +OAE:SP:40680,1,"Le Panorama",43.37668,5.603102,0,0,OAE:SA:CTP40617,Europe/Paris,,OAE, +OAE:SP:40681,1,"Les Boyers",43.396882,5.620819,0,0,OAE:SA:CTP40681,Europe/Paris,,OAE, +OAE:SP:40682,1,"Santucci",43.394525,5.59773,0,0,OAE:SA:CTP40682,Europe/Paris,,OAE, +OAE:SP:40684,1,"Chemin de Langlade",43.307501,5.587046,0,0,OAE:SA:CTP40684,Europe/Paris,,OAE, +OAE:SP:40685,1,"Chemin de Langlade",43.307498,5.587132,0,0,OAE:SA:CTP40684,Europe/Paris,,OAE, +OAE:SP:40686,1,"Auberge Neuve",43.39362,5.551244,0,0,OAE:SA:CTP40686,Europe/Paris,,OAE, +OAE:SP:40687,1,"Auberge Neuve",43.39292,5.5515,0,0,OAE:SA:CTP40686,Europe/Paris,,OAE, +OAE:SP:40688,1,"Clair Soleil",43.300535,5.580371,0,0,OAE:SA:CTP40688,Europe/Paris,,OAE, +OAE:SP:40689,1,"Clair Soleil",43.300558,5.580508,0,0,OAE:SA:CTP40688,Europe/Paris,,OAE, +OAE:SP:40690,1,"Lotissement des Solans",43.312166,5.569513,0,0,OAE:SA:CTP40672,Europe/Paris,,OAE, +OAE:SP:40691,1,"La Bretagne",43.31226,5.563398,0,0,OAE:SA:CTP40673,Europe/Paris,,OAE, +OAE:SP:40692,1,"Val de Riou",43.326476,5.611121,0,0,OAE:SA:CTP40692,Europe/Paris,,OAE, +OAE:SP:40693,1,"Val de Riou",43.326482,5.61122,0,0,OAE:SA:CTP40692,Europe/Paris,,OAE, +OAE:SP:40694,1,"La Cauvine",43.333153,5.616024,0,0,OAE:SA:CTP40694,Europe/Paris,,OAE, +OAE:SP:40695,1,"La Cauvine",43.333128,5.615961,0,0,OAE:SA:CTP40694,Europe/Paris,,OAE, +OAE:SP:40696,1,"Piguière",43.335922,5.616626,0,0,OAE:SA:CTP40696,Europe/Paris,,OAE, +OAE:SP:40697,1,"Piguière",43.335926,5.616515,0,0,OAE:SA:CTP40696,Europe/Paris,,OAE, +OAE:SP:40698,1,"La Cougoulière",43.339245,5.606761,0,0,OAE:SA:CTP40698,Europe/Paris,,OAE, +OAE:SP:40699,1,"La Cougoulière",43.339202,5.606697,0,0,OAE:SA:CTP40698,Europe/Paris,,OAE, +OAE:SP:40700,1,"Le Pigeonnier",43.402614,5.608898,0,0,OAE:SA:CTP40700,Europe/Paris,,OAE, +OAE:SP:40701,1,"Valla de Rigon",43.398202,5.615578,0,0,OAE:SA:CTP40701,Europe/Paris,,OAE, +OAE:SP:40702,1,"Les Playes",43.385015,5.613258,0,0,OAE:SA:CTP40702,Europe/Paris,,OAE, +OAE:SP:40703,1,"Plan de Redon",43.390578,5.617251,0,0,OAE:SA:CTP40703,Europe/Paris,,OAE, +OAE:SP:40704,1,"Chemin du Caou",43.329147,5.607861,0,0,OAE:SA:CTP40704,Europe/Paris,,OAE, +OAE:SP:40705,1,"Chemin du Caou",43.329154,5.607923,0,0,OAE:SA:CTP40704,Europe/Paris,,OAE, +OAE:SP:40706,1,"Campagne",43.322458,5.587006,0,0,OAE:SA:CTP40706,Europe/Paris,,OAE, +OAE:SP:40707,1,"Grand Pin Vert",43.307448,5.565812,0,0,OAE:SA:CTP40674,Europe/Paris,,OAE, +OAE:SP:40708,1,"Jean Aicard",43.302672,5.567636,0,0,OAE:SA:CTP40675,Europe/Paris,,OAE, +OAE:SP:40709,1,"Route de Beaudinard",43.310188,5.58354,0,0,OAE:SA:CTP40709,Europe/Paris,,OAE, +OAE:SP:40710,1,"Route de Beaudinard",43.31008,5.583534,0,0,OAE:SA:CTP40709,Europe/Paris,,OAE, +OAE:SP:40711,1,"Chemin de Valcros",43.337683,5.613461,0,0,OAE:SA:CTP40711,Europe/Paris,,OAE, +OAE:SP:40712,1,"Chemin de Valcros",43.337676,5.613399,0,0,OAE:SA:CTP40711,Europe/Paris,,OAE, +OAE:SP:40713,1,"Le Lavoir",43.328034,5.613415,0,0,OAE:SA:CTP40713,Europe/Paris,,OAE, +OAE:SP:40714,1,"Le Lavoir",43.328036,5.613341,0,0,OAE:SA:CTP40713,Europe/Paris,,OAE, +OAE:SP:40715,1,"Les Thourons",43.335936,5.603775,0,0,OAE:SA:CTP40715,Europe/Paris,,OAE, +OAE:SP:40716,1,"Les Thourons",43.335959,5.6039,0,0,OAE:SA:CTP40715,Europe/Paris,,OAE, +OAE:SP:40717,1,"Boulodrome",43.393627,5.595324,0,0,OAE:SA:CTP40717,Europe/Paris,,OAE, +OAE:SP:40718,1,"Le Coularet",43.193585,5.364388,0,0,OAE:SA:CTP40718,Europe/Paris,,OAE, +OAE:SP:40719,1,"Le Coularet",43.193585,5.364388,0,0,OAE:SA:CTP40718,Europe/Paris,,OAE, +OAE:SP:40720,1,"Les Chênes",43.39421,5.624095,0,0,OAE:SA:CTP40720,Europe/Paris,,OAE, +OAE:SP:40721,1,"Bastide Thouron",43.333105,5.606362,0,0,OAE:SA:CTP40721,Europe/Paris,,OAE, +OAE:SP:40722,1,"Bastide Thouron",43.333201,5.606453,0,0,OAE:SA:CTP40721,Europe/Paris,,OAE, +OAE:SP:40723,1,"Allée des Muriers",43.27573,5.551375,0,0,OAE:SA:CTP40723,Europe/Paris,,OAE, +OAE:SP:40724,1,"Parking Passons",43.292449,5.575913,0,0,OAE:SA:CTP40724,Europe/Paris,,OAE, +OAE:SP:40725,1,"Les Faïenciers",43.294859,5.56993,0,0,OAE:SA:CTP40725,Europe/Paris,,OAE, +OAE:SP:40726,1,"Les Faïenciers",43.294799,5.569852,0,0,OAE:SA:CTP40725,Europe/Paris,,OAE, +OAE:SP:40728,1,"Route d'Eoures",43.297274,5.568896,0,0,OAE:SA:CTP40677,Europe/Paris,,OAE, +OAE:SP:40729,1,"Centre Aéré d'Auriol",43.372138,5.645551,0,0,OAE:SA:CTP40729,Europe/Paris,,OAE, +OAE:SP:40732,1,"Les 4 Chemins",43.313145,5.57314,0,0,OAE:SA:CTP40074,Europe/Paris,,OAE, +OAE:SP:40803,1,"La Casamance",43.276556,5.531482,0,0,OAE:SA:CTP40092,Europe/Paris,,OAE, +OAE:SP:40838,1,"Les Bénézits",43.40177,5.587177,0,0,OAE:SA:CTP40838,Europe/Paris,,OAE, +OAE:SP:40839,1,"Pont de Joux",43.365281,5.613892,0,0,OAE:SA:CTP40839,Europe/Paris,,OAE, +OAE:SP:40842,1,"La Chapelle",43.396458,5.605476,0,0,OAE:SA:CTP40370,Europe/Paris,,OAE, +OAE:SP:40843,1,"Collège Louis Aragon",43.345544,5.600416,0,0,OAE:SA:CTP40843,Europe/Paris,,OAE, +OAE:SP:40844,1,"La Chavatine",43.406195,5.549988,0,0,OAE:SA:CTP40844,Europe/Paris,,OAE, +OAE:SP:40845,1,"Collet Blanc",43.40612,5.536476,0,0,OAE:SA:CTP40845,Europe/Paris,,OAE, +OAE:SP:40846,1,"St Savournin Centre",43.40643,5.528142,0,0,OAE:SA:CTP40846,Europe/Paris,,OAE, +OAE:SP:40847,1,"L'Etoile",43.408908,5.52617,0,0,OAE:SA:CTP40847,Europe/Paris,,OAE, +OAE:SP:40848,1,"Armel Maroc",43.396355,5.544872,0,0,OAE:SA:CTP40848,Europe/Paris,,OAE, +OAE:SP:40849,1,"Les Oliviers",43.39182,5.55007,0,0,OAE:SA:CTP40849,Europe/Paris,,OAE, +OAE:SP:40850,1,"Les Oliviers",43.391905,5.549951,0,0,OAE:SA:CTP40849,Europe/Paris,,OAE, +OAE:SP:40851,1,"La Reyne",43.395437,5.550642,0,0,OAE:SA:CTP40851,Europe/Paris,,OAE, +OAE:SP:40852,1,"La Gare Cadolive",43.39825,5.549481,0,0,OAE:SA:CTP40852,Europe/Paris,,OAE, +OAE:SP:40853,1,"Le Stade",43.277492,5.561616,0,0,OAE:SA:CTP40853,Europe/Paris,,OAE, +OAE:SP:40854,1,"St Joseph Cadolive",43.403756,5.551257,0,0,OAE:SA:CTP40854,Europe/Paris,,OAE, +OAE:SP:40855,1,"L'Etoile",43.408912,5.526035,0,0,OAE:SA:CTP40847,Europe/Paris,,OAE, +OAE:SP:40856,1,"Chante Coucou",43.400132,5.549117,0,0,OAE:SA:CTP40856,Europe/Paris,,OAE, +OAE:SP:40858,1,"Plateau des Espillières",43.282779,5.57181,0,0,OAE:SA:CTP40858,Europe/Paris,,OAE, +OAE:SP:40859,1,"Armel Maroc",43.396357,5.544811,0,0,OAE:SA:CTP40848,Europe/Paris,,OAE, +OAE:SP:40860,1,"Chante Coucou",43.400091,5.548967,0,0,OAE:SA:CTP40856,Europe/Paris,,OAE, +OAE:SP:40861,1,"La Gare Cadolive",43.398303,5.550446,0,0,OAE:SA:CTP40852,Europe/Paris,,OAE, +OAE:SP:40862,1,"La Reyne",43.395487,5.55046,0,0,OAE:SA:CTP40851,Europe/Paris,,OAE, +OAE:SP:40863,1,"St Joseph Cadolive",43.403791,5.551272,0,0,OAE:SA:CTP40854,Europe/Paris,,OAE, +OAE:SP:40864,1,"Le Stade",43.401221,5.549092,0,0,OAE:SA:CTP40864,Europe/Paris,,OAE, +OAE:SP:40865,1,"La Poste",43.452674,5.469992,0,0,OAE:SA:CTP40865,Europe/Paris,,OAE, +OAE:SP:40866,1,"Pergine",43.41719,5.517094,0,0,OAE:SA:CTP40866,Europe/Paris,,OAE, +OAE:SP:40867,1,"Pergine",43.416555,5.517589,0,0,OAE:SA:CTP40866,Europe/Paris,,OAE, +OAE:SP:40868,1,"La Tour",43.416807,5.504439,0,0,OAE:SA:CTP40868,Europe/Paris,,OAE, +OAE:SP:40869,1,"La Chavatine",43.40623,5.549126,0,0,OAE:SA:CTP40844,Europe/Paris,,OAE, +OAE:SP:40870,1,"Collet Blanc",43.406299,5.536227,0,0,OAE:SA:CTP40845,Europe/Paris,,OAE, +OAE:SP:40871,1,"Les Rampauds",43.413743,5.52296,0,0,OAE:SA:CTP40871,Europe/Paris,,OAE, +OAE:SP:40872,1,"Les Rampauds",43.412628,5.524157,0,0,OAE:SA:CTP40871,Europe/Paris,,OAE, +OAE:SP:40873,1,"St Savournin Centre",43.406202,5.528265,0,0,OAE:SA:CTP40846,Europe/Paris,,OAE, +OAE:SP:40874,1,"La Valentine",43.405272,5.546556,0,0,OAE:SA:CTP40874,Europe/Paris,,OAE, +OAE:SP:40875,1,"La Valentine",43.404877,5.545917,0,0,OAE:SA:CTP40874,Europe/Paris,,OAE, +OAE:SP:40882,1,"Battiers",43.402463,5.592224,0,0,OAE:SA:CTP40500,Europe/Paris,,OAE, +OAE:SP:40886,1,"Bouire",43.374887,5.60914,0,0,OAE:SA:CTP40886,Europe/Paris,,OAE, +OAE:SP:40889,1,"La Rouvière",43.378517,5.56576,0,0,OAE:SA:CTP40889,Europe/Paris,,OAE, +OAE:SP:40900,1,"Le Reggage",43.363572,5.567469,0,0,OAE:SA:CTP40900,Europe/Paris,,OAE, +OAE:SP:40901,1,"Les Bastides Provençales",43.388665,5.56685,0,0,OAE:SA:CTP40901,Europe/Paris,,OAE, +OAE:SP:40906,1,"Les Hauts de Peypin",43.387473,5.582272,0,0,OAE:SA:CTP40906,Europe/Paris,,OAE, +OAE:SP:40910,1,"Les Matelots",43.391222,5.587984,0,0,OAE:SA:CTP40910,Europe/Paris,,OAE, +OAE:SP:40911,1,"Les Roquettes",43.390352,5.604547,0,0,OAE:SA:CTP40911,Europe/Paris,,OAE, +OAE:SP:40931,1,"Parc d'Activités de Valdonne",43.399125,5.55693,0,0,OAE:SA:CTP40931,Europe/Paris,,OAE, +OAE:SP:40938,1,"Plein Sud",43.378927,5.586226,0,0,OAE:SA:CTP40938,Europe/Paris,,OAE, +OAE:SP:40951,1,"S. Techniques",43.397271,5.600329,0,0,OAE:SA:CTP40344,Europe/Paris,,OAE, +OAE:SP:40952,1,"Seignadone",43.296121,5.543726,0,0,OAE:SA:CTP40333,Europe/Paris,,OAE, +OAE:SP:40957,1,"Chemin des Barres",43.401757,5.597723,0,0,OAE:SA:CTP40272,Europe/Paris,,OAE, +OAE:SP:40960,1,"Chemin des Gorguettes",43.403105,5.586438,0,0,OAE:SA:CTP40960,Europe/Paris,,OAE, +OAE:SP:40961,1,"Chemin des Gorguettes",43.40306,5.586461,0,0,OAE:SA:CTP40960,Europe/Paris,,OAE, +OAE:SP:40962,1,"Chemin des Marseillais",43.401757,5.597723,0,0,OAE:SA:CTP40342,Europe/Paris,,OAE, +OAE:SP:40966,1,"Clos Doria",43.404237,5.572132,0,0,OAE:SA:CTP40966,Europe/Paris,,OAE, +OAE:SP:40972,1,"Ecole Le Pigeonnier",43.403584,5.609842,0,0,OAE:SA:CTP40972,Europe/Paris,,OAE, +OAE:SP:40973,1,"Ecoles Prim Matern Auberge Neuve",43.392516,5.552674,0,0,OAE:SA:CTP40973,Europe/Paris,,OAE, +OAE:SP:40978,1,"Escaillon",43.385019,5.573562,0,0,OAE:SA:CTP40978,Europe/Paris,,OAE, +OAE:SP:40981,1,"Impasse des Ormeaux",43.388422,5.5842,0,0,OAE:SA:CTP40981,Europe/Paris,,OAE, +OAE:SP:40995,1,"Eglise de Beaudinard",43.315389,5.588503,0,0,OAE:SA:CTP40995,Europe/Paris,,OAE, +OAE:SP:40996,1,"Eglise de Beaudinard",43.311944,5.585561,0,0,OAE:SA:CTP40996,Europe/Paris,,OAE, +OAE:SP:40997,1,"Eoures Park",43.302228,5.529772,0,0,OAE:SA:CTP40997,Europe/Paris,,OAE, +OAE:SP:40998,1,"Gare",43.295807,5.566216,0,0,OAE:SA:CTP40998,Europe/Paris,,OAE, +OAE:SP:40999,1,"Gare",43.295369,5.56464,0,0,OAE:SA:CTP40998,Europe/Paris,,OAE, +OAE:SP:41000,1,"Saint Pierre",43.304119,5.578419,0,0,OAE:SA:CTP41000,Europe/Paris,,OAE, +OAE:SP:41001,1,"La Source",43.317438,5.596576,0,0,OAE:SA:CTP41001,Europe/Paris,,OAE, +OAE:SP:41002,1,"La Source",43.317338,5.596619,0,0,OAE:SA:CTP41001,Europe/Paris,,OAE, +OAE:SP:41003,1,"Terrain Berlioux",43.295612,5.583159,0,0,OAE:SA:CTP41003,Europe/Paris,,OAE, +OAE:SP:41004,1,"Terrain Berlioux",43.29568,5.583286,0,0,OAE:SA:CTP41003,Europe/Paris,,OAE, +OAE:SP:41005,1,"Ecole Camp Major",43.285931,5.545557,0,0,OAE:SA:CTP41005,Europe/Paris,,OAE, +OAE:SP:41006,1,"Ecole Valriant",43.284166,5.543834,0,0,OAE:SA:CTP41006,Europe/Paris,,OAE, +OAE:SP:41007,1,"Pont de Tessala",43.294368,5.557221,0,0,OAE:SA:CTP41007,Europe/Paris,,OAE, +OAE:SP:41008,1,"Résidence Tessala",43.296017,5.555639,0,0,OAE:SA:CTP41008,Europe/Paris,,OAE, +OET:SP:30001,1,"LES CADESTEAUX RN 113",43.478861,5.227184,0,0,OET:SA:CTP30001,Europe/Paris,,OET, +OET:SP:30002,1,"LES CADESTEAUX RN 113",43.479961,5.226746,0,0,OET:SA:CTP30001,Europe/Paris,,OET, +OET:SP:30003,1,"LA FALAISE",43.47412,5.228278,0,0,OET:SA:CTP30003,Europe/Paris,,OET, +OET:SP:30004,1,"LA FALAISE",43.475458,5.227988,0,0,OET:SA:CTP30003,Europe/Paris,,OET, +OET:SP:30005,1,"BASE NAUTIQUE",43.471295,5.230642,0,0,OET:SA:CTP30005,Europe/Paris,,OET, +OET:SP:30006,1,"BASE NAUTIQUE",43.470131,5.231806,0,0,OET:SA:CTP30005,Europe/Paris,,OET, +OET:SP:30007,1,"LE PORRY",43.467088,5.231602,0,0,OET:SA:CTP30007,Europe/Paris,,OET, +OET:SP:30009,1,"LES VIGNETTES",43.461188,5.230613,0,0,OET:SA:CTP31227,Europe/Paris,,OET, +OET:SP:30010,1,"VIGNETTES ECOLE",43.462412,5.230576,0,0,OET:SA:CTP30010,Europe/Paris,,OET, +OET:SP:30011,1,"LES VIGNETTES RN 113",43.463535,5.231953,0,0,OET:SA:CTP30011,Europe/Paris,,OET, +OET:SP:30014,1,"HENRI LOUBET",43.450468,5.235638,0,0,OET:SA:CTP30014,Europe/Paris,,OET, +OET:SP:30016,1,"LES TAMARIS",43.448971,5.233118,0,0,OET:SA:CTP30016,Europe/Paris,,OET, +OET:SP:30017,1,"LES TAMARIS",43.448849,5.232297,0,0,OET:SA:CTP30016,Europe/Paris,,OET, +OET:SP:30018,1,"LES TRIBALLES",43.449195,5.230488,0,0,OET:SA:CTP30018,Europe/Paris,,OET, +OET:SP:30019,1,"CHEMIN DU LION",43.454198,5.231798,0,0,OET:SA:CTP31151,Europe/Paris,,OET, +OET:SP:30020,1,"CHEMIN DU LION",43.453968,5.231902,0,0,OET:SA:CTP31151,Europe/Paris,,OET, +OET:SP:30021,1,"VIEUX MOULIN",43.458703,5.233079,0,0,OET:SA:CTP30021,Europe/Paris,,OET, +OET:SP:30022,1,"VIEUX MOULIN",43.458601,5.232852,0,0,OET:SA:CTP30021,Europe/Paris,,OET, +OET:SP:30023,1,"LES SYBILLES",43.415899,5.271242,0,0,OET:SA:CTP30023,Europe/Paris,,OET, +OET:SP:30024,1,"FERNANDEL",43.394641,5.230988,0,0,OET:SA:CTP30024,Europe/Paris,,OET, +OET:SP:30026,1,"HOTELS 1",43.44447,5.224917,0,0,OET:SA:CTP30026,Europe/Paris,,OET, +OET:SP:30027,1,"FRET",43.444564,5.22075,0,0,OET:SA:CTP30027,Europe/Paris,,OET, +OET:SP:30028,1,"LES SYBILLES",43.415979,5.271259,0,0,OET:SA:CTP30023,Europe/Paris,,OET, +OET:SP:30029,1,"AEROPORT",43.443668,5.220261,0,0,OET:SA:CTP30029,Europe/Paris,,OET, +OET:SP:30033,1,"LONDRES / BRUXELLES",43.429228,5.238276,0,0,OET:SA:CTP31269,Europe/Paris,,OET, +OET:SP:30034,1,"LONDRES / BRUXELLES",43.428788,5.237613,0,0,OET:SA:CTP31269,Europe/Paris,,OET, +OET:SP:30035,1,"LONDRES ATHENES",43.431984,5.241822,0,0,OET:SA:CTP30035,Europe/Paris,,OET, +OET:SP:30036,1,"LONDRES ATHENES",43.43236,5.242199,0,0,OET:SA:CTP30035,Europe/Paris,,OET, +OET:SP:30037,1,"ESTROUBLANS CENTRE VIE",43.433948,5.242662,0,0,OET:SA:CTP30037,Europe/Paris,,OET, +OET:SP:30038,1,"ESTROUBLANS CENTRE VIE",43.433825,5.242582,0,0,OET:SA:CTP30037,Europe/Paris,,OET, +OET:SP:30040,1,"EUROPE / ESTROUBLANS",43.440038,5.242946,0,0,OET:SA:CTP30040,Europe/Paris,,OET, +OET:SP:30041,1,"EUROPE / ESTROUBLANS",43.439996,5.242821,0,0,OET:SA:CTP30040,Europe/Paris,,OET, +OET:SP:30042,1,"PIERRE PLANTEE - QUAI 5",43.446682,5.248653,0,0,OET:SA:CTP30042,Europe/Paris,,OET, +OET:SP:30043,1,"PIERRE PLANTEE - QUAI 4",43.446589,5.248771,0,0,OET:SA:CTP30042,Europe/Paris,,OET, +OET:SP:30045,1,"PIERRE PLANTEE - QUAI 1",43.446401,5.249095,0,0,OET:SA:CTP30042,Europe/Paris,,OET, +OET:SP:30046,1,"PIERRE PLANTEE - QUAI 2",43.446763,5.248669,0,0,OET:SA:CTP30042,Europe/Paris,,OET, +OET:SP:30048,1,"ATHENES STOCKHOLM",43.434223,5.239801,0,0,OET:SA:CTP30048,Europe/Paris,,OET, +OET:SP:30056,1,"ANJOLY",43.421096,5.267314,0,0,OET:SA:CTP30056,Europe/Paris,,OET, +OET:SP:30057,1,"MEDIATHEQUE",43.442649,5.252496,0,0,OET:SA:CTP31273,Europe/Paris,,OET, +OET:SP:30058,1,"MEDIATHEQUE",43.442812,5.252455,0,0,OET:SA:CTP31273,Europe/Paris,,OET, +OET:SP:30061,1,"LES PINS / CINEMA",43.439628,5.255106,0,0,OET:SA:CTP31275,Europe/Paris,,OET, +OET:SP:30062,1,"LES PINS / CINEMA",43.439848,5.254982,0,0,OET:SA:CTP31275,Europe/Paris,,OET, +OET:SP:30063,1,"J.E CONSTANT",43.439691,5.256109,0,0,OET:SA:CTP30063,Europe/Paris,,OET, +OET:SP:30064,1,"J.E CONSTANT",43.439644,5.256181,0,0,OET:SA:CTP30063,Europe/Paris,,OET, +OET:SP:30067,1,"PAUL GUIGOU",43.439841,5.252575,0,0,OET:SA:CTP30067,Europe/Paris,,OET, +OET:SP:30069,1,"PADOVANI",43.436775,5.257182,0,0,OET:SA:CTP31277,Europe/Paris,,OET, +OET:SP:30070,1,"PADOVANI",43.436919,5.25719,0,0,OET:SA:CTP31277,Europe/Paris,,OET, +OET:SP:30071,1,"ESPACE",43.434254,5.260953,0,0,OET:SA:CTP30071,Europe/Paris,,OET, +OET:SP:30072,1,"ESPACE",43.434549,5.260709,0,0,OET:SA:CTP30071,Europe/Paris,,OET, +OET:SP:30073,1,"BASTIDE BLANCHE",43.431001,5.266155,0,0,OET:SA:CTP31281,Europe/Paris,,OET, +OET:SP:30074,1,"BASTIDE BLANCHE",43.431289,5.266157,0,0,OET:SA:CTP31281,Europe/Paris,,OET, +OET:SP:30075,1,"GRIFFON CLINIQUE",43.427458,5.272094,0,0,OET:SA:CTP31283,Europe/Paris,,OET, +OET:SP:30076,1,"LYCEE MONNET",43.424186,5.271395,0,0,OET:SA:CTP31285,Europe/Paris,,OET, +OET:SP:30077,1,"LYCEE MONNET",43.424411,5.271715,0,0,OET:SA:CTP31285,Europe/Paris,,OET, +OET:SP:30078,1,"COLLEGE CLAUDEL",43.423463,5.274505,0,0,OET:SA:CTP31287,Europe/Paris,,OET, +OET:SP:30079,1,"COLLEGE CLAUDEL",43.423536,5.274471,0,0,OET:SA:CTP31287,Europe/Paris,,OET, +OET:SP:30080,1,"LA FRESCOULE",43.423974,5.277208,0,0,OET:SA:CTP30080,Europe/Paris,,OET, +OET:SP:30081,1,"LA FRESCOULE",43.424031,5.277088,0,0,OET:SA:CTP30081,Europe/Paris,,OET, +OET:SP:30082,1,"MAIL DE LA FRESCOULE",43.422362,5.279914,0,0,OET:SA:CTP30082,Europe/Paris,,OET, +OET:SP:30083,1,"MAIL DE LA FRESCOULE",43.422436,5.280164,0,0,OET:SA:CTP30082,Europe/Paris,,OET, +OET:SP:30084,1,"RUE DE FONTBLANCHE",43.423136,5.283519,0,0,OET:SA:CTP30084,Europe/Paris,,OET, +OET:SP:30085,1,"COLLEGE S. DE BEAUVOIR",43.427457,5.276425,0,0,OET:SA:CTP30085,Europe/Paris,,OET, +OET:SP:30086,1,"COLLEGE S.DE BEAUVOIR",43.427552,5.276269,0,0,OET:SA:CTP30085,Europe/Paris,,OET, +OET:SP:30087,1,"MAIRIE QUARTIERS SUD",43.42607,5.280141,0,0,OET:SA:CTP31289,Europe/Paris,,OET, +OET:SP:30088,1,"MAIRIE QUARTIERS SUD",43.42611,5.279995,0,0,OET:SA:CTP31289,Europe/Paris,,OET, +OET:SP:30089,1,"LE REPOS",43.424746,5.282529,0,0,OET:SA:CTP31291,Europe/Paris,,OET, +OET:SP:30090,1,"LE REPOS",43.425108,5.282128,0,0,OET:SA:CTP31291,Europe/Paris,,OET, +OET:SP:30091,1,"ECOLE LE REPOS",43.423509,5.28434,0,0,OET:SA:CTP30091,Europe/Paris,,OET, +OET:SP:30093,1,"RUE DE FONTBLANCHE",43.423425,5.283805,0,0,OET:SA:CTP30084,Europe/Paris,,OET, +OET:SP:30094,1,"FONTBLANCHE",43.422261,5.286238,0,0,OET:SA:CTP30094,Europe/Paris,,OET, +OET:SP:30095,1,"FONTBLANCHE",43.422379,5.286219,0,0,OET:SA:CTP30094,Europe/Paris,,OET, +OET:SP:30096,1,"ST GERMET",43.421406,5.290228,0,0,OET:SA:CTP30096,Europe/Paris,,OET, +OET:SP:30097,1,"ST GERMET",43.421434,5.290168,0,0,OET:SA:CTP30096,Europe/Paris,,OET, +OET:SP:30098,1,"CROZE / CASCABEL",43.424368,5.29043,0,0,OET:SA:CTP30098,Europe/Paris,,OET, +OET:SP:30099,1,"CROZE / CASCABEL",43.424243,5.290387,0,0,OET:SA:CTP30098,Europe/Paris,,OET, +OET:SP:30100,1,"LA CADIERE",43.42715,5.290956,0,0,OET:SA:CTP30100,Europe/Paris,,OET, +OET:SP:30101,1,"LA CADIERE",43.427057,5.291063,0,0,OET:SA:CTP30100,Europe/Paris,,OET, +OET:SP:30102,1,"LES JARDINIERS",43.429075,5.286342,0,0,OET:SA:CTP30102,Europe/Paris,,OET, +OET:SP:30103,1,"LES JARDINIERS",43.429304,5.28586,0,0,OET:SA:CTP30102,Europe/Paris,,OET, +OET:SP:30104,1,"LA FILLE DU PUISATIER",43.432361,5.284241,0,0,OET:SA:CTP30104,Europe/Paris,,OET, +OET:SP:30105,1,"LA FILLE DU PUISATIER",43.431861,5.284104,0,0,OET:SA:CTP30104,Europe/Paris,,OET, +OET:SP:30106,1,"LE BRUSQUIE",43.433864,5.284195,0,0,OET:SA:CTP30106,Europe/Paris,,OET, +OET:SP:30107,1,"LE BRUSQUIE",43.433958,5.284051,0,0,OET:SA:CTP30106,Europe/Paris,,OET, +OET:SP:30108,1,"LES PIERRES FAUVES",43.435764,5.285428,0,0,OET:SA:CTP30108,Europe/Paris,,OET, +OET:SP:30109,1,"CROIX ROUTE",43.432252,5.265133,0,0,OET:SA:CTP30109,Europe/Paris,,OET, +OET:SP:30111,1,"LES TERRASSES",43.436167,5.263359,0,0,OET:SA:CTP30111,Europe/Paris,,OET, +OET:SP:30113,1,"PAS DU BOEUF",43.438004,5.262293,0,0,OET:SA:CTP30113,Europe/Paris,,OET, +OET:SP:30115,1,"LE LIOURAT",43.441134,5.259601,0,0,OET:SA:CTP30115,Europe/Paris,,OET, +OET:SP:30116,1,"LE LIOURAT",43.441393,5.259689,0,0,OET:SA:CTP30115,Europe/Paris,,OET, +OET:SP:30117,1,"LA VALLEE",43.445398,5.25624,0,0,OET:SA:CTP30117,Europe/Paris,,OET, +OET:SP:30118,1,"LA VALLEE",43.445437,5.256464,0,0,OET:SA:CTP30117,Europe/Paris,,OET, +OET:SP:30119,1,"FOYER SOLEIL",43.447588,5.255068,0,0,OET:SA:CTP30119,Europe/Paris,,OET, +OET:SP:30120,1,"FOYER SOLEIL",43.447837,5.255167,0,0,OET:SA:CTP30119,Europe/Paris,,OET, +OET:SP:30121,1,"LES HERMES",43.450671,5.252139,0,0,OET:SA:CTP30121,Europe/Paris,,OET, +OET:SP:30122,1,"LES HERMES",43.450653,5.252484,0,0,OET:SA:CTP30121,Europe/Paris,,OET, +OET:SP:30123,1,"LES VIGNES",43.453174,5.250686,0,0,OET:SA:CTP30123,Europe/Paris,,OET, +OET:SP:30125,1,"LE PARC",43.455778,5.250523,0,0,OET:SA:CTP30125,Europe/Paris,,OET, +OET:SP:30127,1,"PLACE DE L'AIRE",43.459441,5.250759,0,0,OET:SA:CTP30127,Europe/Paris,,OET, +OET:SP:30128,1,"PLACE DE L'AIRE",43.459433,5.250709,0,0,OET:SA:CTP30127,Europe/Paris,,OET, +OET:SP:30129,1,"VIEUX VILLAGE",43.461712,5.24922,0,0,OET:SA:CTP30129,Europe/Paris,,OET, +OET:SP:30130,1,"ROUCAS L'ESCOUNIERE",43.457413,5.248927,0,0,OET:SA:CTP30130,Europe/Paris,,OET, +OET:SP:30131,1,"ROUCAS L'ESCOUNIERE",43.457493,5.248956,0,0,OET:SA:CTP30130,Europe/Paris,,OET, +OET:SP:30132,1,"FREDERIC MISTRAL",43.457195,5.246336,0,0,OET:SA:CTP30132,Europe/Paris,,OET, +OET:SP:30133,1,"FREDERIC MISTRAL",43.457255,5.246438,0,0,OET:SA:CTP30132,Europe/Paris,,OET, +OET:SP:30134,1,"LA RANGUE",43.459293,5.245554,0,0,OET:SA:CTP30134,Europe/Paris,,OET, +OET:SP:30135,1,"LA RANGUE",43.459429,5.245857,0,0,OET:SA:CTP30134,Europe/Paris,,OET, +OET:SP:30136,1,"PRE BATAILLE",43.460945,5.245341,0,0,OET:SA:CTP30136,Europe/Paris,,OET, +OET:SP:30137,1,"PRE BATAILLE",43.461203,5.245428,0,0,OET:SA:CTP30136,Europe/Paris,,OET, +OET:SP:30138,1,"REINE JEANNE",43.461449,5.243638,0,0,OET:SA:CTP30138,Europe/Paris,,OET, +OET:SP:30139,1,"REINE JEANNE",43.461609,5.2434,0,0,OET:SA:CTP30138,Europe/Paris,,OET, +OET:SP:30140,1,"LA CORNICHE",43.460018,5.242368,0,0,OET:SA:CTP30140,Europe/Paris,,OET, +OET:SP:30141,1,"LA CORNICHE",43.459902,5.242325,0,0,OET:SA:CTP30140,Europe/Paris,,OET, +OET:SP:30142,1,"STADE LADOUMEGUE",43.458373,5.24268,0,0,OET:SA:CTP30142,Europe/Paris,,OET, +OET:SP:30143,1,"STADE LADOUMEGUE",43.45812,5.242025,0,0,OET:SA:CTP30142,Europe/Paris,,OET, +OET:SP:30144,1,"LES CADENIERES",43.465635,5.241814,0,0,OET:SA:CTP30144,Europe/Paris,,OET, +OET:SP:30145,1,"PICARDIE",43.457358,5.239616,0,0,OET:SA:CTP30145,Europe/Paris,,OET, +OET:SP:30147,1,"LORRAINE",43.455044,5.238042,0,0,OET:SA:CTP30147,Europe/Paris,,OET, +OET:SP:30149,1,"ALSACE",43.453193,5.238639,0,0,OET:SA:CTP30149,Europe/Paris,,OET, +OET:SP:30151,1,"19-mars-62",43.45165,5.239845,0,0,OET:SA:CTP30151,Europe/Paris,,OET, +OET:SP:30152,1,"19-mars-62",43.451793,5.24021,0,0,OET:SA:CTP30151,Europe/Paris,,OET, +OET:SP:30153,1,"LA PLAINE",43.45286,5.241326,0,0,OET:SA:CTP30153,Europe/Paris,,OET, +OET:SP:30154,1,"LA PLAINE",43.452857,5.241461,0,0,OET:SA:CTP30153,Europe/Paris,,OET, +OET:SP:30156,1,"LES COURONNES (BD DE LA LOMBARDE)",43.413182,5.249738,0,0,OET:SA:CTP30156,Europe/Paris,,OET, +OET:SP:30157,1,"COUPERIGNE2",43.443291,5.233003,0,0,OET:SA:CTP30157,Europe/Paris,,OET, +OET:SP:30159,1,"LES ROSES",43.45397,5.24353,0,0,OET:SA:CTP30159,Europe/Paris,,OET, +OET:SP:30160,1,"LES ROSES",43.453827,5.243498,0,0,OET:SA:CTP30159,Europe/Paris,,OET, +OET:SP:30161,1,"SALVATOR ALLENDE",43.452304,5.244606,0,0,OET:SA:CTP30161,Europe/Paris,,OET, +OET:SP:30162,1,"SALVATOR ALLENDE",43.451498,5.244812,0,0,OET:SA:CTP30161,Europe/Paris,,OET, +OET:SP:30163,1,"LES POMMIERS",43.448746,5.246511,0,0,OET:SA:CTP30163,Europe/Paris,,OET, +OET:SP:30164,1,"LES POMMIERS",43.448301,5.246661,0,0,OET:SA:CTP30163,Europe/Paris,,OET, +OET:SP:30165,1,"LE JAI",43.425394,5.18171,0,0,OET:SA:CTP30165,Europe/Paris,,OET, +OET:SP:30166,1,"LE JAI AVIATEUR",43.428405,5.18519,0,0,OET:SA:CTP30166,Europe/Paris,,OET, +OET:SP:30167,1,"LE JAI / LA MOTTE PIQUET",43.429847,5.187088,0,0,OET:SA:CTP30167,Europe/Paris,,OET, +OET:SP:30168,1,"LE JAI / LA MOTTE PIQUET",43.430065,5.187346,0,0,OET:SA:CTP30167,Europe/Paris,,OET, +OET:SP:30169,1,"LE JAI / COMTE DE GRASSE",43.431909,5.189708,0,0,OET:SA:CTP30169,Europe/Paris,,OET, +OET:SP:30170,1,"LE JAI / COMTE DE GRASSE",43.431858,5.189607,0,0,OET:SA:CTP30169,Europe/Paris,,OET, +OET:SP:30171,1,"LE JAI / CENTRE NAUTIQUE",43.435178,5.193943,0,0,OET:SA:CTP30171,Europe/Paris,,OET, +OET:SP:30172,1,"LE JAI / CENTRE NAUTIQUE",43.435386,5.194262,0,0,OET:SA:CTP30171,Europe/Paris,,OET, +OET:SP:30175,1,"LES BEUGONS",43.427044,5.210034,0,0,OET:SA:CTP30175,Europe/Paris,,OET, +OET:SP:30176,1,"LES BEUGONS",43.427116,5.210038,0,0,OET:SA:CTP30175,Europe/Paris,,OET, +OET:SP:30177,1,"J. MERMOZ",43.424625,5.211714,0,0,OET:SA:CTP30177,Europe/Paris,,OET, +OET:SP:30178,1,"J. MERMOZ",43.424961,5.211595,0,0,OET:SA:CTP30177,Europe/Paris,,OET, +OET:SP:30179,1,"ROS ET ROMANO",43.42438,5.215514,0,0,OET:SA:CTP30179,Europe/Paris,,OET, +OET:SP:30180,1,"ROS ET ROMANO",43.424298,5.215547,0,0,OET:SA:CTP30179,Europe/Paris,,OET, +OET:SP:30181,1,"ROUTE DE LA PLAGE",43.42147,5.213344,0,0,OET:SA:CTP30181,Europe/Paris,,OET, +OET:SP:30182,1,"ROUTE DE LA PLAGE",43.422394,5.212762,0,0,OET:SA:CTP30181,Europe/Paris,,OET, +OET:SP:30183,1,"ST EXUPERY",43.41938,5.213832,0,0,OET:SA:CTP30183,Europe/Paris,,OET, +OET:SP:30184,1,"ST EXUPERY",43.419164,5.213845,0,0,OET:SA:CTP30183,Europe/Paris,,OET, +OET:SP:30189,1,"LA SIGNORE",43.420278,5.206129,0,0,OET:SA:CTP30189,Europe/Paris,,OET, +OET:SP:30190,1,"LA SIGNORE",43.419811,5.205415,0,0,OET:SA:CTP30189,Europe/Paris,,OET, +OET:SP:30191,1,"GYMNASE ST PIERRE",43.408482,5.207389,0,0,OET:SA:CTP30191,Europe/Paris,,OET, +OET:SP:30192,1,"GYMNASE ST PIERRE",43.408792,5.207231,0,0,OET:SA:CTP30191,Europe/Paris,,OET, +OET:SP:30193,1,"HOTEL DE VILLE",43.421255,5.232814,0,0,OET:SA:CTP31267,Europe/Paris,,OET, +OET:SP:30194,1,"HOTEL DE VILLE",43.42144,5.232601,0,0,OET:SA:CTP31267,Europe/Paris,,OET, +OET:SP:30195,1,"GENEVOIX BRASSENS",43.412035,5.204988,0,0,OET:SA:CTP30195,Europe/Paris,,OET, +OET:SP:30196,1,"GENEVOIX BRASSENS",43.413116,5.204919,0,0,OET:SA:CTP30195,Europe/Paris,,OET, +OET:SP:30197,1,"SORBIERE",43.414431,5.206194,0,0,OET:SA:CTP31256,Europe/Paris,,OET, +OET:SP:30198,1,"BOLMON",43.415507,5.210368,0,0,OET:SA:CTP31257,Europe/Paris,,OET, +OET:SP:30206,1,"BARRELET LIBERATION",43.417479,5.211935,0,0,OET:SA:CTP31258,Europe/Paris,,OET, +OET:SP:30207,1,"BARRELET LIBERATION",43.417618,5.212115,0,0,OET:SA:CTP31258,Europe/Paris,,OET, +OET:SP:30209,1,"LYCEE BLERIOT",43.419163,5.217226,0,0,OET:SA:CTP31260,Europe/Paris,,OET, +OET:SP:30212,1,"CASCADELLE",43.412915,5.264218,0,0,OET:SA:CTP30212,Europe/Paris,,OET, +OET:SP:30213,1,"CASCADELLE",43.412955,5.264097,0,0,OET:SA:CTP30212,Europe/Paris,,OET, +OET:SP:30214,1,"GALAGOVIERE",43.418942,5.220817,0,0,OET:SA:CTP30214,Europe/Paris,,OET, +OET:SP:30215,1,"LE GABIAN",43.41979,5.224721,0,0,OET:SA:CTP30215,Europe/Paris,,OET, +OET:SP:30216,1,"LE GABIAN",43.419741,5.224891,0,0,OET:SA:CTP30215,Europe/Paris,,OET, +OET:SP:30217,1,"LE MOULIN",43.421427,5.229739,0,0,OET:SA:CTP30217,Europe/Paris,,OET, +OET:SP:30218,1,"LE MOULIN",43.42139,5.229798,0,0,OET:SA:CTP30217,Europe/Paris,,OET, +OET:SP:30219,1,"GABRIEL VOISIN",43.421725,5.231703,0,0,OET:SA:CTP30219,Europe/Paris,,OET, +OET:SP:30220,1,"GABRIEL VOISIN",43.421759,5.231446,0,0,OET:SA:CTP30219,Europe/Paris,,OET, +OET:SP:30221,1,"PARC CAMOIN",43.41756,5.219699,0,0,OET:SA:CTP30221,Europe/Paris,,OET, +OET:SP:30223,1,"PARC CAMOIN - QUAI 4",43.417881,5.219431,0,0,OET:SA:CTP30223,Europe/Paris,,OET, +OET:SP:30224,1,"PARC CAMOIN",43.417402,5.219543,0,0,OET:SA:CTP30221,Europe/Paris,,OET, +OET:SP:30226,1,"PRESIDENT J.F KENNEDY",43.417692,5.22179,0,0,OET:SA:CTP30226,Europe/Paris,,OET, +OET:SP:30229,1,"MIRABEAU",43.415872,5.216542,0,0,OET:SA:CTP30229,Europe/Paris,,OET, +OET:SP:30230,1,"MIRABEAU",43.41573,5.216498,0,0,OET:SA:CTP30229,Europe/Paris,,OET, +OET:SP:30231,1,"MISTRAL",43.414178,5.217012,0,0,OET:SA:CTP30231,Europe/Paris,,OET, +OET:SP:30232,1,"MISTRAL",43.414103,5.216799,0,0,OET:SA:CTP30231,Europe/Paris,,OET, +OET:SP:30233,1,"SAINTE ANNE",43.412202,5.218627,0,0,OET:SA:CTP30233,Europe/Paris,,OET, +OET:SP:30234,1,"SAINTE ANNE",43.412131,5.218574,0,0,OET:SA:CTP30233,Europe/Paris,,OET, +OET:SP:30235,1,"MAISON MEDICALE",43.523568,5.257549,0,0,OET:SA:CTP30235,Europe/Paris,,OET, +OET:SP:30236,1,"LES FLORIDES",43.410411,5.209557,0,0,OET:SA:CTP30236,Europe/Paris,,OET, +OET:SP:30237,1,"ROQUEPERTUSE COLLEGE",43.530296,5.249537,0,0,OET:SA:CTP30237,Europe/Paris,,OET, +OET:SP:30242,1,"CLINIQUE",43.409456,5.215048,0,0,OET:SA:CTP30242,Europe/Paris,,OET, +OET:SP:30243,1,"CLINIQUE",43.409417,5.215157,0,0,OET:SA:CTP30242,Europe/Paris,,OET, +OET:SP:30244,1,"MARCEL PAGNOL",43.406329,5.215298,0,0,OET:SA:CTP30244,Europe/Paris,,OET, +OET:SP:30245,1,"MARCEL PAGNOL",43.4061,5.215447,0,0,OET:SA:CTP30244,Europe/Paris,,OET, +OET:SP:30246,1,"LE CARESTIER",43.404878,5.220097,0,0,OET:SA:CTP30246,Europe/Paris,,OET, +OET:SP:30247,1,"LE CARESTIER",43.405036,5.220598,0,0,OET:SA:CTP30246,Europe/Paris,,OET, +OET:SP:30248,1,"LA CHAUME",43.407889,5.221161,0,0,OET:SA:CTP30248,Europe/Paris,,OET, +OET:SP:30249,1,"LA CHAUME",43.408141,5.221174,0,0,OET:SA:CTP30248,Europe/Paris,,OET, +OET:SP:30250,1,"LES AMANDIERS",43.406211,5.222371,0,0,OET:SA:CTP30250,Europe/Paris,,OET, +OET:SP:30251,1,"LES AMANDIERS",43.4062,5.22247,0,0,OET:SA:CTP30250,Europe/Paris,,OET, +OET:SP:30252,1,"EMILIE DE MIRABEAU (PARKING)",43.405077,5.223757,0,0,OET:SA:CTP30252,Europe/Paris,,OET, +OET:SP:30253,1,"EMILIE DE MIRABEAU",43.405221,5.223752,0,0,OET:SA:CTP30253,Europe/Paris,,OET, +OET:SP:30254,1,"LA VIERGE",43.408701,5.228775,0,0,OET:SA:CTP30254,Europe/Paris,,OET, +OET:SP:30255,1,"LA VIERGE",43.408604,5.228709,0,0,OET:SA:CTP30254,Europe/Paris,,OET, +OET:SP:30256,1,"LE COLLET ROUGE",43.411447,5.229666,0,0,OET:SA:CTP30256,Europe/Paris,,OET, +OET:SP:30257,1,"LE COLLET ROUGE",43.41154,5.22956,0,0,OET:SA:CTP30256,Europe/Paris,,OET, +OET:SP:30258,1,"LES OLIVIERS",43.41512,5.230863,0,0,OET:SA:CTP30258,Europe/Paris,,OET, +OET:SP:30259,1,"LES OLIVIERS",43.415104,5.230776,0,0,OET:SA:CTP30258,Europe/Paris,,OET, +OET:SP:30260,1,"LE DEVIN",43.406568,5.225855,0,0,OET:SA:CTP30260,Europe/Paris,,OET, +OET:SP:30261,1,"LE DEVIN",43.406406,5.225835,0,0,OET:SA:CTP30260,Europe/Paris,,OET, +OET:SP:30264,1,"NOTRE DAME",43.404424,5.23036,0,0,OET:SA:CTP30264,Europe/Paris,,OET, +OET:SP:30265,1,"NOTRE DAME",43.4038,5.230797,0,0,OET:SA:CTP30264,Europe/Paris,,OET, +OET:SP:30266,1,"LACANAU",43.402663,5.23698,0,0,OET:SA:CTP30266,Europe/Paris,,OET, +OET:SP:30267,1,"LACANAU",43.402598,5.237372,0,0,OET:SA:CTP30266,Europe/Paris,,OET, +OET:SP:30268,1,"RAUMARTIN",43.40294,5.239375,0,0,OET:SA:CTP30268,Europe/Paris,,OET, +OET:SP:30269,1,"RAUMARTIN",43.402738,5.239858,0,0,OET:SA:CTP30268,Europe/Paris,,OET, +OET:SP:30270,1,"SABATERY",43.404249,5.248531,0,0,OET:SA:CTP30270,Europe/Paris,,OET, +OET:SP:30271,1,"SABATERY",43.404163,5.249045,0,0,OET:SA:CTP30270,Europe/Paris,,OET, +OET:SP:30272,1,"PETIT NICE",43.40636,5.256249,0,0,OET:SA:CTP30272,Europe/Paris,,OET, +OET:SP:30273,1,"RUE H. MILHAU",43.405383,5.252499,0,0,OET:SA:CTP30273,Europe/Paris,,OET, +OET:SP:30274,1,"RUE H. MILHAU",43.405238,5.252195,0,0,OET:SA:CTP30273,Europe/Paris,,OET, +OET:SP:30275,1,"HENRI DUNANT",43.406799,5.25632,0,0,OET:SA:CTP30275,Europe/Paris,,OET, +OET:SP:30276,1,"HENRI DUNANT",43.406824,5.256383,0,0,OET:SA:CTP30275,Europe/Paris,,OET, +OET:SP:30277,1,"GARE PAS DES LANCIERS",43.409537,5.253487,0,0,OET:SA:CTP30277,Europe/Paris,,OET, +OET:SP:30278,1,"GARE PAS DES LANCIERS",43.409636,5.253517,0,0,OET:SA:CTP30277,Europe/Paris,,OET, +OET:SP:30279,1,"LES COURONNES",43.41324,5.248926,0,0,OET:SA:CTP30279,Europe/Paris,,OET, +OET:SP:30280,1,"LES COURONNES",43.412915,5.249638,0,0,OET:SA:CTP30279,Europe/Paris,,OET, +OET:SP:30281,1,"CARBONNEL",43.415408,5.244546,0,0,OET:SA:CTP30281,Europe/Paris,,OET, +OET:SP:30282,1,"CARBONNEL",43.415509,5.24449,0,0,OET:SA:CTP30281,Europe/Paris,,OET, +OET:SP:30283,1,"LA RESIDENCE",43.417393,5.240983,0,0,OET:SA:CTP30283,Europe/Paris,,OET, +OET:SP:30284,1,"LA RESIDENCE",43.417246,5.241444,0,0,OET:SA:CTP30283,Europe/Paris,,OET, +OET:SP:30285,1,"LA CROIX",43.419235,5.238017,0,0,OET:SA:CTP30285,Europe/Paris,,OET, +OET:SP:30286,1,"LA CROIX",43.419345,5.237961,0,0,OET:SA:CTP30285,Europe/Paris,,OET, +OET:SP:30287,1,"BD ABBADIE",43.420026,5.235701,0,0,OET:SA:CTP30287,Europe/Paris,,OET, +OET:SP:30288,1,"BD ABBADIE",43.420087,5.235765,0,0,OET:SA:CTP30287,Europe/Paris,,OET, +OET:SP:30289,1,"BD FERRISSE",43.419561,5.24129,0,0,OET:SA:CTP30289,Europe/Paris,,OET, +OET:SP:30290,1,"BD FERRISSE",43.419615,5.241626,0,0,OET:SA:CTP30289,Europe/Paris,,OET, +OET:SP:30291,1,"LA GLACIERE",43.418766,5.244741,0,0,OET:SA:CTP30291,Europe/Paris,,OET, +OET:SP:30292,1,"LA GLACIERE",43.418991,5.24442,0,0,OET:SA:CTP30291,Europe/Paris,,OET, +OET:SP:30293,1,"LES RICHAUDS",43.419221,5.248885,0,0,OET:SA:CTP30293,Europe/Paris,,OET, +OET:SP:30294,1,"LES RICHAUDS",43.41925,5.248479,0,0,OET:SA:CTP30293,Europe/Paris,,OET, +OET:SP:30295,1,"LA SIPIERE",43.41797,5.257235,0,0,OET:SA:CTP30295,Europe/Paris,,OET, +OET:SP:30296,1,"LA SIPIERE",43.418759,5.255326,0,0,OET:SA:CTP30295,Europe/Paris,,OET, +OET:SP:30297,1,"LES AMPHOUX",43.414228,5.265544,0,0,OET:SA:CTP30297,Europe/Paris,,OET, +OET:SP:30298,1,"MOULIN A HUILE",43.417834,5.259609,0,0,OET:SA:CTP30298,Europe/Paris,,OET, +OET:SP:30299,1,"LE PAS DES BROQUETTES",43.412038,5.259116,0,0,OET:SA:CTP30299,Europe/Paris,,OET, +OET:SP:30300,1,"LE PAS DES BROQUETTES",43.412046,5.259474,0,0,OET:SA:CTP30299,Europe/Paris,,OET, +OET:SP:30301,1,"PAS DES LANCIERS/LES PLATANES",43.406361,5.25853,0,0,OET:SA:CTP30301,Europe/Paris,,OET, +OET:SP:30302,1,"PAS DES LANCIERS/LES PLATANES",43.405932,5.25878,0,0,OET:SA:CTP30301,Europe/Paris,,OET, +OET:SP:30304,1,"LES PLATANES",43.404942,5.258803,0,0,OET:SA:CTP30304,Europe/Paris,,OET, +OET:SP:30305,1,"CHEMIN DU LEVUN",43.534806,5.256034,0,0,OET:SA:CTP30305,Europe/Paris,,OET, +OET:SP:30306,1,"CHEMIN DU LEVUN",43.53491,5.255867,0,0,OET:SA:CTP30305,Europe/Paris,,OET, +OET:SP:30307,1,"CCIAL ST VICTORET",43.417796,5.233343,0,0,OET:SA:CTP31265,Europe/Paris,,OET, +OET:SP:30308,1,"CCIAL ST VICTORET",43.417943,5.233227,0,0,OET:SA:CTP31265,Europe/Paris,,OET, +OET:SP:30309,1,"COLLEGE PREVERT",43.416252,5.231562,0,0,OET:SA:CTP31263,Europe/Paris,,OET, +OET:SP:30310,1,"COLLEGE PREVERT",43.416301,5.23175,0,0,OET:SA:CTP31263,Europe/Paris,,OET, +OET:SP:30313,1,"8 MAI 1945 / C. COMMERCIAL",43.414882,5.223314,0,0,OET:SA:CTP30313,Europe/Paris,,OET, +OET:SP:30315,1,"GEORGES CLEMENCEAU",43.414381,5.220513,0,0,OET:SA:CTP30315,Europe/Paris,,OET, +OET:SP:30317,1,"LE THOLONET",43.383103,5.200705,0,0,OET:SA:CTP30317,Europe/Paris,,OET, +OET:SP:30318,1,"COTTON",43.384471,5.2115,0,0,OET:SA:CTP30318,Europe/Paris,,OET, +OET:SP:30320,1,"LES PIELLETTES",43.385051,5.217373,0,0,OET:SA:CTP30320,Europe/Paris,,OET, +OET:SP:30321,1,"LES PRES",43.389233,5.221048,0,0,OET:SA:CTP30321,Europe/Paris,,OET, +OET:SP:30322,1,"PLACE DE LAURE",43.388209,5.218308,0,0,OET:SA:CTP30322,Europe/Paris,,OET, +OET:SP:30323,1,"LES ACACIAS",43.385615,5.219806,0,0,OET:SA:CTP31202,Europe/Paris,,OET, +OET:SP:30324,1,"PRE FLEURI",43.386733,5.223413,0,0,OET:SA:CTP30324,Europe/Paris,,OET, +OET:SP:30325,1,"PRE FLEURI",43.386725,5.222697,0,0,OET:SA:CTP30324,Europe/Paris,,OET, +OET:SP:30327,1,"LE THOLONET",43.383144,5.200201,0,0,OET:SA:CTP30317,Europe/Paris,,OET, +OET:SP:30328,1,"MENAGE NEUF",43.387356,5.232346,0,0,OET:SA:CTP30328,Europe/Paris,,OET, +OET:SP:30329,1,"MENAGE NEUF",43.387418,5.232399,0,0,OET:SA:CTP30328,Europe/Paris,,OET, +OET:SP:30330,1,"VIGUIERE BD DE PROVENCE",43.388505,5.234427,0,0,OET:SA:CTP30330,Europe/Paris,,OET, +OET:SP:30331,1,"VIGUIERE BD DE PROVENCE",43.389049,5.234947,0,0,OET:SA:CTP30330,Europe/Paris,,OET, +OET:SP:30332,1,"VIGUIERE ECOLE",43.389893,5.234657,0,0,OET:SA:CTP30332,Europe/Paris,,OET, +OET:SP:30333,1,"VIGUIERE LE MAIL",43.390364,5.236531,0,0,OET:SA:CTP30333,Europe/Paris,,OET, +OET:SP:30334,1,"VICTOR HUGO",43.393413,5.238202,0,0,OET:SA:CTP30334,Europe/Paris,,OET, +OET:SP:30335,1,"LA REPUBLIQUE",43.394181,5.239042,0,0,OET:SA:CTP30335,Europe/Paris,,OET, +OET:SP:30336,1,"LA REPUBLIQUE",43.394277,5.239158,0,0,OET:SA:CTP30335,Europe/Paris,,OET, +OET:SP:30337,1,"CAPEAU",43.396237,5.244498,0,0,OET:SA:CTP30337,Europe/Paris,,OET, +OET:SP:30338,1,"CAPEAU",43.396264,5.245165,0,0,OET:SA:CTP30337,Europe/Paris,,OET, +OET:SP:30339,1,"LES FORTUNES",43.397,5.251887,0,0,OET:SA:CTP30339,Europe/Paris,,OET, +OET:SP:30340,1,"REBUTY",43.400976,5.263103,0,0,OET:SA:CTP30340,Europe/Paris,,OET, +OET:SP:30341,1,"REBUTY",43.400705,5.263163,0,0,OET:SA:CTP30340,Europe/Paris,,OET, +OET:SP:30343,1,"LA ROSE",43.393645,5.231579,0,0,OET:SA:CTP30343,Europe/Paris,,OET, +OET:SP:30346,1,"COLLET DE LEBRE",43.395172,5.230645,0,0,OET:SA:CTP30346,Europe/Paris,,OET, +OET:SP:30347,1,"COLLET DE LEBRE",43.395142,5.230422,0,0,OET:SA:CTP30346,Europe/Paris,,OET, +OET:SP:30348,1,"LE TUNNEL",43.400228,5.226189,0,0,OET:SA:CTP30348,Europe/Paris,,OET, +OET:SP:30349,1,"LE TUNNEL",43.399967,5.226213,0,0,OET:SA:CTP30348,Europe/Paris,,OET, +OET:SP:30350,1,"LA GARE ROCKENHAUSEN",43.486439,5.228666,0,0,OET:SA:CTP30350,Europe/Paris,,OET, +OET:SP:30351,1,"LA GARE ROCKENHAUSEN",43.486376,5.229663,0,0,OET:SA:CTP30350,Europe/Paris,,OET, +OET:SP:30352,1,"LE LAVOIR",43.486123,5.225352,0,0,OET:SA:CTP30352,Europe/Paris,,OET, +OET:SP:30353,1,"LE LAVOIR",43.486023,5.225372,0,0,OET:SA:CTP30352,Europe/Paris,,OET, +OET:SP:30354,1,"ROCKENHAUSEN",43.485897,5.223711,0,0,OET:SA:CTP30354,Europe/Paris,,OET, +OET:SP:30355,1,"ROCKENHAUSEN",43.485848,5.223177,0,0,OET:SA:CTP30354,Europe/Paris,,OET, +OET:SP:30356,1,"MAS DES JEUNES",43.485631,5.232615,0,0,OET:SA:CTP30356,Europe/Paris,,OET, +OET:SP:30357,1,"MARCEL ACHARD",43.485999,5.237352,0,0,OET:SA:CTP30357,Europe/Paris,,OET, +OET:SP:30358,1,"MARCEL ACHARD",43.485877,5.237197,0,0,OET:SA:CTP30357,Europe/Paris,,OET, +OET:SP:30361,1,"LA GARE",43.487138,5.230431,0,0,OET:SA:CTP30361,Europe/Paris,,OET, +OET:SP:30362,1,"LA GARE",43.486692,5.230297,0,0,OET:SA:CTP30361,Europe/Paris,,OET, +OET:SP:30363,1,"CENTRE VILLE",43.488306,5.230144,0,0,OET:SA:CTP30363,Europe/Paris,,OET, +OET:SP:30364,1,"CENTRE VILLE",43.488774,5.229785,0,0,OET:SA:CTP30363,Europe/Paris,,OET, +OET:SP:30365,1,"CHARLES DE GAULLE",43.491415,5.229881,0,0,OET:SA:CTP30365,Europe/Paris,,OET, +OET:SP:30366,1,"CHARLES DE GAULLE",43.491315,5.229592,0,0,OET:SA:CTP30365,Europe/Paris,,OET, +OET:SP:30367,1,"AV. VICTOR HUGO",43.491798,5.22701,0,0,OET:SA:CTP30367,Europe/Paris,,OET, +OET:SP:30368,1,"AV. VICTOR HUGO",43.491737,5.226945,0,0,OET:SA:CTP30367,Europe/Paris,,OET, +OET:SP:30369,1,"STADE DES PUGETTES",43.491916,5.221605,0,0,OET:SA:CTP30369,Europe/Paris,,OET, +OET:SP:30370,1,"STADE DES PUGETTES",43.491561,5.221748,0,0,OET:SA:CTP30369,Europe/Paris,,OET, +OET:SP:30371,1,"BD MONTAIGNE",43.488284,5.222546,0,0,OET:SA:CTP30371,Europe/Paris,,OET, +OET:SP:30372,1,"BD MONTAIGNE",43.489373,5.222527,0,0,OET:SA:CTP30371,Europe/Paris,,OET, +OET:SP:30373,1,"LA CLINIQUE",43.488454,5.220925,0,0,OET:SA:CTP30373,Europe/Paris,,OET, +OET:SP:30374,1,"LA CLINIQUE",43.487109,5.221771,0,0,OET:SA:CTP30373,Europe/Paris,,OET, +OET:SP:30375,1,"ROUTE DE VELAUX",43.494289,5.232374,0,0,OET:SA:CTP30375,Europe/Paris,,OET, +OET:SP:30376,1,"ROUTE DE VELAUX",43.493994,5.232655,0,0,OET:SA:CTP30375,Europe/Paris,,OET, +OET:SP:30377,1,"LES BLEUETS",43.495897,5.235148,0,0,OET:SA:CTP30377,Europe/Paris,,OET, +OET:SP:30378,1,"LES FREGATES",43.497013,5.234772,0,0,OET:SA:CTP30378,Europe/Paris,,OET, +OET:SP:30379,1,"LE CIMETIERE",43.493479,5.229714,0,0,OET:SA:CTP30379,Europe/Paris,,OET, +OET:SP:30380,1,"LE CIMETIERE",43.494244,5.229703,0,0,OET:SA:CTP30379,Europe/Paris,,OET, +OET:SP:30381,1,"LES BRETS",43.510959,5.219415,0,0,OET:SA:CTP30381,Europe/Paris,,OET, +OET:SP:30382,1,"LES CESAIRES",43.514368,5.214002,0,0,OET:SA:CTP30382,Europe/Paris,,OET, +OET:SP:30383,1,"LES BARJAQUETS",43.507831,5.218677,0,0,OET:SA:CTP30383,Europe/Paris,,OET, +OET:SP:30384,1,"HAMEAU DES BARJAQUETS",43.515842,5.209973,0,0,OET:SA:CTP30384,Europe/Paris,,OET, +OET:SP:30385,1,"LES CEDRES",43.50952,5.214005,0,0,OET:SA:CTP30385,Europe/Paris,,OET, +OET:SP:30386,1,"LES MURIERS",43.511189,5.216177,0,0,OET:SA:CTP30386,Europe/Paris,,OET, +OET:SP:30387,1,"LA GRANDE BASTIDE",43.505052,5.220044,0,0,OET:SA:CTP30387,Europe/Paris,,OET, +OET:SP:30390,1,"LA GERBINE",43.509411,5.224836,0,0,OET:SA:CTP30390,Europe/Paris,,OET, +OET:SP:30393,1,"LA VERDIERE",43.518353,5.232134,0,0,OET:SA:CTP30393,Europe/Paris,,OET, +OET:SP:30394,1,"LA VERDIERE",43.517771,5.231375,0,0,OET:SA:CTP30393,Europe/Paris,,OET, +OET:SP:30395,1,"LA VERANE",43.52821,5.236811,0,0,OET:SA:CTP30395,Europe/Paris,,OET, +OET:SP:30396,1,"LA VERANE",43.528321,5.236705,0,0,OET:SA:CTP30395,Europe/Paris,,OET, +OET:SP:30397,1,"BASTIDE BERTIN",43.533262,5.247265,0,0,OET:SA:CTP30397,Europe/Paris,,OET, +OET:SP:30398,1,"EMILE RIPERT",43.536461,5.245042,0,0,OET:SA:CTP30398,Europe/Paris,,OET, +OET:SP:30399,1,"BERLIOZ",43.537146,5.248638,0,0,OET:SA:CTP30399,Europe/Paris,,OET, +OET:SP:30400,1,"PAGANINI",43.536305,5.251475,0,0,OET:SA:CTP30400,Europe/Paris,,OET, +OET:SP:30401,1,"LES COLLINES",43.534729,5.254559,0,0,OET:SA:CTP30401,Europe/Paris,,OET, +OET:SP:30402,1,"LES RESTOUBLES",43.530346,5.255683,0,0,OET:SA:CTP30402,Europe/Paris,,OET, +OET:SP:30403,1,"CENTRE COMMERCIAL",43.492079,5.231965,0,0,OET:SA:CTP30403,Europe/Paris,,OET, +OET:SP:30404,1,"QUATRE TOURS",43.532486,5.253679,0,0,OET:SA:CTP30404,Europe/Paris,,OET, +OET:SP:30405,1,"LES RESTOUBLES",43.52987,5.255968,0,0,OET:SA:CTP30402,Europe/Paris,,OET, +OET:SP:30406,1,"LE PARTERRE",43.526661,5.257238,0,0,OET:SA:CTP30406,Europe/Paris,,OET, +OET:SP:30409,1,"LA PERAUDE",43.527457,5.252075,0,0,OET:SA:CTP30409,Europe/Paris,,OET, +OET:SP:30410,1,"PIERRE PUGET",43.529436,5.249394,0,0,OET:SA:CTP30410,Europe/Paris,,OET, +OET:SP:30411,1,"ROQUEPERTUSE COLLEGE",43.530918,5.250496,0,0,OET:SA:CTP30237,Europe/Paris,,OET, +OET:SP:30414,1,"LE DRIGNON",43.473792,5.16568,0,0,OET:SA:CTP30414,Europe/Paris,,OET, +OET:SP:30415,1,"PORT A. SAMSON",43.472275,5.166926,0,0,OET:SA:CTP30415,Europe/Paris,,OET, +OET:SP:30416,1,"FREDERIC MISTRAL",43.473691,5.168824,0,0,OET:SA:CTP30416,Europe/Paris,,OET, +OET:SP:30417,1,"JEAN MONNET",43.476495,5.168555,0,0,OET:SA:CTP30417,Europe/Paris,,OET, +OET:SP:30418,1,"PLACE SOUVENIR FRANCAIS",43.475777,5.167124,0,0,OET:SA:CTP30418,Europe/Paris,,OET, +OET:SP:30419,1,"AV. DE LA LIBERATION",43.478447,5.168194,0,0,OET:SA:CTP30419,Europe/Paris,,OET, +OET:SP:30420,1,"AV. DE LA LIBERATION",43.478695,5.168355,0,0,OET:SA:CTP30419,Europe/Paris,,OET, +OET:SP:30421,1,"LOUIS PASQUET",43.480387,5.16897,0,0,OET:SA:CTP30421,Europe/Paris,,OET, +OET:SP:30422,1,"LOUIS PASQUET",43.480435,5.168873,0,0,OET:SA:CTP30421,Europe/Paris,,OET, +OET:SP:30424,1,"LA BALEINE BLEUE",43.48305,5.169287,0,0,OET:SA:CTP30424,Europe/Paris,,OET, +OET:SP:30425,1,"LA BALEINE BLEUE",43.483113,5.169253,0,0,OET:SA:CTP30424,Europe/Paris,,OET, +OET:SP:30426,1,"LES LOGIS",43.485141,5.169773,0,0,OET:SA:CTP30426,Europe/Paris,,OET, +OET:SP:30427,1,"LES LOGIS",43.485375,5.169785,0,0,OET:SA:CTP30426,Europe/Paris,,OET, +OET:SP:30428,1,"JEAN-JACQUES ROUSSEAU",43.485219,5.166455,0,0,OET:SA:CTP30428,Europe/Paris,,OET, +OET:SP:30429,1,"JEAN-JACQUES ROUSSEAU",43.485127,5.166215,0,0,OET:SA:CTP30428,Europe/Paris,,OET, +OET:SP:30430,1,"GS PICASSO",43.487307,5.165039,0,0,OET:SA:CTP30430,Europe/Paris,,OET, +OET:SP:30431,1,"GS PICASSO",43.487009,5.165086,0,0,OET:SA:CTP30430,Europe/Paris,,OET, +OET:SP:30432,1,"MARCEL DASSAULT",43.48812,5.166623,0,0,OET:SA:CTP30432,Europe/Paris,,OET, +OET:SP:30433,1,"MARCEL DASSAULT",43.488177,5.16649,0,0,OET:SA:CTP30432,Europe/Paris,,OET, +OET:SP:30434,1,"FORUM JEUNES ET CULTURE",43.488892,5.171108,0,0,OET:SA:CTP30434,Europe/Paris,,OET, +OET:SP:30435,1,"FORUM JEUNES ET CULTURE",43.488928,5.170442,0,0,OET:SA:CTP30434,Europe/Paris,,OET, +OET:SP:30436,1,"G.S. PAUL LANGEVIN",43.488936,5.173543,0,0,OET:SA:CTP30436,Europe/Paris,,OET, +OET:SP:30437,1,"G.S. PAUL LANGEVIN",43.48904,5.173338,0,0,OET:SA:CTP30436,Europe/Paris,,OET, +OET:SP:30442,1,"LES CEDRES",43.509532,5.213561,0,0,OET:SA:CTP30385,Europe/Paris,,OET, +OET:SP:30443,1,"LE CLOS DE GALEIGNE",43.495459,5.156955,0,0,OET:SA:CTP30443,Europe/Paris,,OET, +OET:SP:30444,1,"COOPERATIVE VINICOLE",43.494552,5.154835,0,0,OET:SA:CTP30444,Europe/Paris,,OET, +OET:SP:30445,1,"COOPERATIVE VINICOLE",43.494464,5.154782,0,0,OET:SA:CTP30444,Europe/Paris,,OET, +OET:SP:30447,1,"LA SUZANNE",43.494268,5.140875,0,0,OET:SA:CTP30447,Europe/Paris,,OET, +OET:SP:30448,1,"LES 3 PINS",43.497086,5.132774,0,0,OET:SA:CTP30448,Europe/Paris,,OET, +OET:SP:30449,1,"MAURAN - PONT DE L'ARC",43.506558,5.133398,0,0,OET:SA:CTP30449,Europe/Paris,,OET, +OET:SP:30450,1,"MAURAN",43.507663,5.134811,0,0,OET:SA:CTP30450,Europe/Paris,,OET, +OET:SP:30451,1,"ST ESTEVE",43.503404,5.150935,0,0,OET:SA:CTP30451,Europe/Paris,,OET, +OET:SP:30452,1,"G.S. EMILE ZOLA",43.487665,5.161314,0,0,OET:SA:CTP30452,Europe/Paris,,OET, +OET:SP:30453,1,"LES OEILLADES",43.486928,5.163377,0,0,OET:SA:CTP30453,Europe/Paris,,OET, +OET:SP:30454,1,"POSTE - CENTRE COMMERCIAL",43.478329,5.169263,0,0,OET:SA:CTP30454,Europe/Paris,,OET, +OET:SP:30455,1,"POSTE - CENTRE COMMERCIAL",43.478255,5.169333,0,0,OET:SA:CTP30454,Europe/Paris,,OET, +OET:SP:30456,1,"BOETI",43.479975,5.173012,0,0,OET:SA:CTP30456,Europe/Paris,,OET, +OET:SP:30457,1,"BOETI",43.480041,5.172917,0,0,OET:SA:CTP30456,Europe/Paris,,OET, +OET:SP:30458,1,"CABRIANNE OUEST",43.48174,5.174965,0,0,OET:SA:CTP30458,Europe/Paris,,OET, +OET:SP:30459,1,"CABRIANNE OUEST",43.48178,5.175152,0,0,OET:SA:CTP30458,Europe/Paris,,OET, +OET:SP:30460,1,"CAPEVAIRE",43.482679,5.173122,0,0,OET:SA:CTP30460,Europe/Paris,,OET, +OET:SP:30461,1,"CAPEVAIRE",43.482716,5.173099,0,0,OET:SA:CTP30460,Europe/Paris,,OET, +OET:SP:30462,1,"DEZARNAUD",43.481849,5.170129,0,0,OET:SA:CTP30462,Europe/Paris,,OET, +OET:SP:30463,1,"DEZARNAUD",43.48195,5.170393,0,0,OET:SA:CTP30462,Europe/Paris,,OET, +OET:SP:30464,1,"LES ACACIAS",43.485242,5.172088,0,0,OET:SA:CTP30464,Europe/Paris,,OET, +OET:SP:30465,1,"LES ACACIAS",43.485505,5.172373,0,0,OET:SA:CTP30464,Europe/Paris,,OET, +OET:SP:30466,1,"LA MARIELIE",43.488042,5.173684,0,0,OET:SA:CTP30466,Europe/Paris,,OET, +OET:SP:30467,1,"LA MARIELIE",43.487978,5.173743,0,0,OET:SA:CTP30466,Europe/Paris,,OET, +OET:SP:30468,1,"LES JARDINS DE CABRIANNE",43.47758,5.169374,0,0,OET:SA:CTP30468,Europe/Paris,,OET, +OET:SP:30469,1,"LES JARDINS DE CABRIANNE",43.477568,5.169485,0,0,OET:SA:CTP30468,Europe/Paris,,OET, +OET:SP:30470,1,"08-mai-45",43.479423,5.172812,0,0,OET:SA:CTP30470,Europe/Paris,,OET, +OET:SP:30471,1,"08-mai-45",43.479545,5.172954,0,0,OET:SA:CTP30470,Europe/Paris,,OET, +OET:SP:30472,1,"PARC HENRI FABRE",43.481483,5.176533,0,0,OET:SA:CTP30472,Europe/Paris,,OET, +OET:SP:30473,1,"PARC HENRI FABRE",43.481454,5.176605,0,0,OET:SA:CTP30472,Europe/Paris,,OET, +OET:SP:30474,1,"LES MOUETTES",43.483324,5.180045,0,0,OET:SA:CTP30474,Europe/Paris,,OET, +OET:SP:30475,1,"LES MOUETTES",43.483234,5.180053,0,0,OET:SA:CTP30474,Europe/Paris,,OET, +OET:SP:30476,1,"LES PALLIERES",43.417027,5.284278,0,0,OET:SA:CTP30476,Europe/Paris,,OET, +OET:SP:30479,1,"CERCLE LE REPOS",43.419762,5.288182,0,0,OET:SA:CTP30479,Europe/Paris,,OET, +OET:SP:30480,1,"LES CARDELINES",43.424499,5.295817,0,0,OET:SA:CTP30480,Europe/Paris,,OET, +OET:SP:30481,1,"LES CARDELINES",43.424447,5.29574,0,0,OET:SA:CTP30480,Europe/Paris,,OET, +OET:SP:30482,1,"VAL DE CROY",43.421807,5.297232,0,0,OET:SA:CTP30482,Europe/Paris,,OET, +OET:SP:30483,1,"VAL DE CROY",43.421702,5.29714,0,0,OET:SA:CTP30482,Europe/Paris,,OET, +OET:SP:30484,1,"RENARDIERE ECOLE",43.417031,5.29891,0,0,OET:SA:CTP30484,Europe/Paris,,OET, +OET:SP:30485,1,"RENARDIERE ECOLE",43.416997,5.298822,0,0,OET:SA:CTP30484,Europe/Paris,,OET, +OET:SP:30486,1,"LA RENARDIERE",43.413163,5.301868,0,0,OET:SA:CTP31297,Europe/Paris,,OET, +OET:SP:30487,1,"LA RENARDIERE",43.41297,5.302043,0,0,OET:SA:CTP31297,Europe/Paris,,OET, +OET:SP:30489,1,"LA CITE HAUTE 2",43.423313,5.304602,0,0,OET:SA:CTP30489,Europe/Paris,,OET, +OET:SP:30494,1,"GENERAL LECLERC",43.409692,5.319476,0,0,OET:SA:CTP30494,Europe/Paris,,OET, +OET:SP:30495,1,"SQUARE GAL DE GAULLE - QUAI 4",43.40939,5.321939,0,0,OET:SA:CTP30495,Europe/Paris,,OET, +OET:SP:30496,1,"SQUARE GAL DE GAULLE - QUAI 3",43.409067,5.322539,0,0,OET:SA:CTP30496,Europe/Paris,,OET, +OET:SP:30497,1,"LES CLAIRIERES",43.420705,5.3238,0,0,OET:SA:CTP30497,Europe/Paris,,OET, +OET:SP:30498,1,"LA VOILERIE",43.419182,5.339154,0,0,OET:SA:CTP30498,Europe/Paris,,OET, +OET:SP:30500,1,"CINEMA",43.414475,5.360176,0,0,OET:SA:CTP30500,Europe/Paris,,OET, +OET:SP:30503,1,"LE PIN",43.413002,5.373224,0,0,OET:SA:CTP30503,Europe/Paris,,OET, +OET:SP:30504,1,"LES OEILLADES",43.486839,5.162965,0,0,OET:SA:CTP30453,Europe/Paris,,OET, +OET:SP:30505,1,"JAS DE RHODES",43.391476,5.315124,0,0,OET:SA:CTP30505,Europe/Paris,,OET, +OET:SP:30506,1,"COLLEGE MONOD",43.398405,5.335698,0,0,OET:SA:CTP30506,Europe/Paris,,OET, +OET:SP:30507,1,"COLLEGE MONOD",43.398428,5.335502,0,0,OET:SA:CTP30506,Europe/Paris,,OET, +OET:SP:30508,1,"BOUROUMETTES ECOLE",43.393746,5.33443,0,0,OET:SA:CTP30508,Europe/Paris,,OET, +OET:SP:30509,1,"BOUROUMETTES ECOLE",43.393647,5.334413,0,0,OET:SA:CTP30508,Europe/Paris,,OET, +OET:SP:30510,1,"STE ELISABETH",43.401192,5.337324,0,0,OET:SA:CTP30510,Europe/Paris,,OET, +OET:SP:30511,1,"CADENEAUX EGLISE",43.394214,5.339906,0,0,OET:SA:CTP30511,Europe/Paris,,OET, +OET:SP:30512,1,"CADENEAUX EGLISE",43.394197,5.340201,0,0,OET:SA:CTP30511,Europe/Paris,,OET, +OET:SP:30513,1,"LES MATELOTS",43.388961,5.334439,0,0,OET:SA:CTP30513,Europe/Paris,,OET, +OET:SP:30514,1,"LES MATELOTS",43.389071,5.334383,0,0,OET:SA:CTP30513,Europe/Paris,,OET, +OET:SP:30515,1,"MOULIN DU DIABLE",43.376661,5.350797,0,0,OET:SA:CTP30515,Europe/Paris,,OET, +OET:SP:30516,1,"AMANDIERS HAUT",43.387746,5.336435,0,0,OET:SA:CTP30516,Europe/Paris,,OET, +OET:SP:30517,1,"AMANDIERS HAUT",43.387824,5.336217,0,0,OET:SA:CTP30516,Europe/Paris,,OET, +OET:SP:30518,1,"AMANDIERS BAS",43.385049,5.337366,0,0,OET:SA:CTP30518,Europe/Paris,,OET, +OET:SP:30519,1,"AMANDIERS BAS",43.385089,5.33722,0,0,OET:SA:CTP30518,Europe/Paris,,OET, +OET:SP:30520,1,"AVENUE DES ROSIERS",43.383392,5.340029,0,0,OET:SA:CTP30520,Europe/Paris,,OET, +OET:SP:30521,1,"AVENUE DES ROSIERS",43.383286,5.340282,0,0,OET:SA:CTP30520,Europe/Paris,,OET, +OET:SP:30523,1,"MONACO",43.385024,5.345355,0,0,OET:SA:CTP30523,Europe/Paris,,OET, +OET:SP:30524,1,"MONACO",43.384928,5.345239,0,0,OET:SA:CTP30523,Europe/Paris,,OET, +OET:SP:30525,1,"STADE BASILE BOLI",43.381057,5.337675,0,0,OET:SA:CTP30525,Europe/Paris,,OET, +OET:SP:30526,1,"ST GEORGES",43.378604,5.344352,0,0,OET:SA:CTP30526,Europe/Paris,,OET, +OET:SP:30527,1,"ST GEORGES",43.378917,5.344726,0,0,OET:SA:CTP30526,Europe/Paris,,OET, +OET:SP:30528,1,"JEANNE D'ARC",43.381483,5.346895,0,0,OET:SA:CTP30528,Europe/Paris,,OET, +OET:SP:30529,1,"JEANNE D'ARC",43.381432,5.346769,0,0,OET:SA:CTP30528,Europe/Paris,,OET, +OET:SP:30530,1,"MAIRIE GAVOTTE",43.379835,5.350828,0,0,OET:SA:CTP30530,Europe/Paris,,OET, +OET:SP:30531,1,"MAIRIE GAVOTTE",43.379811,5.350716,0,0,OET:SA:CTP30530,Europe/Paris,,OET, +OET:SP:30532,1,"VERDURON",43.375177,5.344369,0,0,OET:SA:CTP30532,Europe/Paris,,OET, +OET:SP:30533,1,"VERDURON",43.375264,5.344177,0,0,OET:SA:CTP30532,Europe/Paris,,OET, +OET:SP:30534,1,"TANTE ROSE",43.376763,5.335872,0,0,OET:SA:CTP30534,Europe/Paris,,OET, +OET:SP:30535,1,"COLLEGE COUSTEAU",43.484344,5.23434,0,0,OET:SA:CTP30535,Europe/Paris,,OET, +OET:SP:30536,1,"POLE EMPLOI",43.422679,5.261349,0,0,OET:SA:CTP30536,Europe/Paris,,OET, +OET:SP:30538,1,"LES PIERRES FAUVES",43.435823,5.285567,0,0,OET:SA:CTP30108,Europe/Paris,,OET, +OET:SP:30539,1,"LE JAI AVIATEUR",43.428074,5.184767,0,0,OET:SA:CTP30166,Europe/Paris,,OET, +OET:SP:30540,1,"LA COLLINE",43.403998,5.242487,0,0,OET:SA:CTP30540,Europe/Paris,,OET, +OET:SP:30541,1,"LA COLLINE",43.404127,5.242703,0,0,OET:SA:CTP30540,Europe/Paris,,OET, +OET:SP:30542,1,"LA GERBINE",43.509387,5.224736,0,0,OET:SA:CTP30390,Europe/Paris,,OET, +OET:SP:30543,1,"LES BRETS",43.510111,5.219162,0,0,OET:SA:CTP30381,Europe/Paris,,OET, +OET:SP:30544,1,"LA GRANDE BASTIDE",43.504798,5.220451,0,0,OET:SA:CTP30387,Europe/Paris,,OET, +OET:SP:30545,1,"CHEMIN DE PIERREFEU",43.394007,5.337638,0,0,OET:SA:CTP30545,Europe/Paris,,OET, +OET:SP:30546,1,"CHEMIN DE PIERREFEU",43.394045,5.337578,0,0,OET:SA:CTP30545,Europe/Paris,,OET, +OET:SP:30548,1,"LES BARNOUINS",43.416793,5.321856,0,0,OET:SA:CTP30548,Europe/Paris,,OET, +OET:SP:30549,1,"CADENEAUX CIMETIERE",43.398696,5.338809,0,0,OET:SA:CTP30549,Europe/Paris,,OET, +OET:SP:30550,1,"CADENEAUX CIMETIERE",43.39881,5.33858,0,0,OET:SA:CTP30549,Europe/Paris,,OET, +OET:SP:30551,1,"Bd TARDY - Av DES JOYEUX",43.377506,5.346649,0,0,OET:SA:CTP30551,Europe/Paris,,OET, +OET:SP:30552,1,"AV MARIUS BREMOND",43.375318,5.347077,0,0,OET:SA:CTP30552,Europe/Paris,,OET, +OET:SP:30553,1,"AV MARIUS BREMOND",43.375341,5.347201,0,0,OET:SA:CTP30552,Europe/Paris,,OET, +OET:SP:30554,1,"LES COLIBRIS",43.391201,5.331177,0,0,OET:SA:CTP30554,Europe/Paris,,OET, +OET:SP:30555,1,"LES COLIBRIS",43.39123,5.330809,0,0,OET:SA:CTP30554,Europe/Paris,,OET, +OET:SP:30556,1,"LES MOUETTES",43.392146,5.327922,0,0,OET:SA:CTP30556,Europe/Paris,,OET, +OET:SP:30557,1,"LES MOUETTES",43.392166,5.327861,0,0,OET:SA:CTP30556,Europe/Paris,,OET, +OET:SP:30558,1,"LES ROSSIGNOLS",43.392423,5.329613,0,0,OET:SA:CTP30558,Europe/Paris,,OET, +OET:SP:30559,1,"LES ROSSIGNOLS",43.392371,5.32987,0,0,OET:SA:CTP30558,Europe/Paris,,OET, +OET:SP:30560,1,"Bd PAUL ARENE",43.396843,5.334938,0,0,OET:SA:CTP30560,Europe/Paris,,OET, +OET:SP:30561,1,"Bd PAUL ARENE",43.396758,5.334132,0,0,OET:SA:CTP30560,Europe/Paris,,OET, +OET:SP:30562,1,"CHEMIN DU PAS DE LA MUE",43.414837,5.300203,0,0,OET:SA:CTP30562,Europe/Paris,,OET, +OET:SP:30563,1,"CHEMIN DU PAS DE LA MUE",43.414751,5.300371,0,0,OET:SA:CTP30562,Europe/Paris,,OET, +OET:SP:30564,1,"LE CLOS IDEAL",43.391524,5.341565,0,0,OET:SA:CTP30564,Europe/Paris,,OET, +OET:SP:30565,1,"LE CLOS IDEAL",43.3916,5.341396,0,0,OET:SA:CTP30564,Europe/Paris,,OET, +OET:SP:30566,1,"LA GARDIETTE",43.419226,5.34271,0,0,OET:SA:CTP30566,Europe/Paris,,OET, +OET:SP:30567,1,"LA GARDIETTE",43.419301,5.342615,0,0,OET:SA:CTP30566,Europe/Paris,,OET, +OET:SP:30569,1,"PLAN DE CAMPAGNE VILLAGE",43.417836,5.353839,0,0,OET:SA:CTP30569,Europe/Paris,,OET, +OET:SP:30570,1,"PINCHINADES M.PAGNOL",43.42568,5.294397,0,0,OET:SA:CTP30570,Europe/Paris,,OET, +OET:SP:30571,1,"PINCHINADES / M.PAGNOL",43.425671,5.294717,0,0,OET:SA:CTP30570,Europe/Paris,,OET, +OET:SP:30572,1,"LA RASTELIDO",43.418386,5.29803,0,0,OET:SA:CTP30572,Europe/Paris,,OET, +OET:SP:30573,1,"LA RASTELIDO",43.41837,5.297943,0,0,OET:SA:CTP30572,Europe/Paris,,OET, +OET:SP:30574,1,"BOWLING",43.414501,5.352837,0,0,OET:SA:CTP30574,Europe/Paris,,OET, +OET:SP:30579,1,"LES BLONDINES",43.382147,5.342442,0,0,OET:SA:CTP30579,Europe/Paris,,OET, +OET:SP:30580,1,"LES BLONDINES",43.382389,5.342455,0,0,OET:SA:CTP30579,Europe/Paris,,OET, +OET:SP:30582,1,"CHARLES DE GAULLE",43.414441,5.204443,0,0,OET:SA:CTP30582,Europe/Paris,,OET, +OET:SP:30583,1,"Bd DE L'EUROPE",43.436768,5.24183,0,0,OET:SA:CTP30583,Europe/Paris,,OET, +OET:SP:30584,1,"Bd DE L'EUROPE",43.436784,5.241893,0,0,OET:SA:CTP30583,Europe/Paris,,OET, +OET:SP:30588,1,"AV DES OLIVIERS",43.511573,5.221003,0,0,OET:SA:CTP30588,Europe/Paris,,OET, +OET:SP:30589,1,"AV DES OLIVIERS",43.511453,5.221121,0,0,OET:SA:CTP30588,Europe/Paris,,OET, +OET:SP:30590,1,"VENT DU SOLEIL",43.464554,5.239203,0,0,OET:SA:CTP30590,Europe/Paris,,OET, +OET:SP:30591,1,"LES CESAIRES",43.514485,5.213983,0,0,OET:SA:CTP30382,Europe/Paris,,OET, +OET:SP:30592,1,"GRIFFON CLINIQUE",43.427234,5.270774,0,0,OET:SA:CTP31283,Europe/Paris,,OET, +OET:SP:30595,1,"VICTOR GELU",43.442756,5.244849,0,0,OET:SA:CTP31271,Europe/Paris,,OET, +OET:SP:30596,1,"VICTOR GELU",43.443085,5.245335,0,0,OET:SA:CTP31271,Europe/Paris,,OET, +OET:SP:30597,1,"CADENEAUX STADE",43.396908,5.340035,0,0,OET:SA:CTP30597,Europe/Paris,,OET, +OET:SP:30598,1,"LES MURIERS",43.511434,5.216103,0,0,OET:SA:CTP30386,Europe/Paris,,OET, +OET:SP:30599,1,"PISCINE C. JOUVE",43.476079,5.172078,0,0,OET:SA:CTP30599,Europe/Paris,,OET, +OET:SP:30601,1,"LA TETE NOIRE",43.488257,5.221557,0,0,OET:SA:CTP31143,Europe/Paris,,OET, +OET:SP:30602,1,"LES PINCHINADES",43.43788,5.28566,0,0,OET:SA:CTP30602,Europe/Paris,,OET, +OET:SP:30603,1,"EMILE BOUILHAC",43.46008,5.250729,0,0,OET:SA:CTP30603,Europe/Paris,,OET, +OET:SP:30604,1,"AV. DE LATTRE DE TASSIGNY",43.417538,5.291226,0,0,OET:SA:CTP30604,Europe/Paris,,OET, +OET:SP:30605,1,"LES BAYONS",43.383822,5.206486,0,0,OET:SA:CTP30605,Europe/Paris,,OET, +OET:SP:30608,1,"CADENEAUX STADE",43.397103,5.340156,0,0,OET:SA:CTP30597,Europe/Paris,,OET, +OET:SP:30610,1,"JEAN AICARD",43.463598,5.243007,0,0,OET:SA:CTP30610,Europe/Paris,,OET, +OET:SP:30611,1,"CHEMIN DES OISEAUX",43.459349,5.229779,0,0,OET:SA:CTP30611,Europe/Paris,,OET, +OET:SP:30612,1,"HALTE ROUTIERE DE VELAUX",43.533409,5.249807,0,0,OET:SA:CTP30612,Europe/Paris,,OET, +OET:SP:30614,1,"ALLEE DES PLATANES",43.40074,5.265533,0,0,OET:SA:CTP30614,Europe/Paris,,OET, +OET:SP:30617,1,"CAUCADIS",43.450109,5.24031,0,0,OET:SA:CTP31164,Europe/Paris,,OET, +OET:SP:30618,1,"LES 3 PINS",43.497016,5.132721,0,0,OET:SA:CTP30448,Europe/Paris,,OET, +OET:SP:30620,1,"PISCINE",43.397561,5.323025,0,0,OET:SA:CTP30620,Europe/Paris,,OET, +OET:SP:30621,1,"PISCINE",43.397716,5.322934,0,0,OET:SA:CTP30620,Europe/Paris,,OET, +OET:SP:30622,1,"PLACE JEAN MOULIN - MAIRIE",43.476019,5.16784,0,0,OET:SA:CTP30622,Europe/Paris,,OET, +OET:SP:30623,1,"LA PERAUDE",43.52744,5.252049,0,0,OET:SA:CTP30409,Europe/Paris,,OET, +OET:SP:30624,1,"SAINT ANTOINE",43.373966,5.354563,0,0,OET:SA:CTP30624,Europe/Paris,,OET, +OET:SP:30625,1,"OCTROI",43.375393,5.353701,0,0,OET:SA:CTP30625,Europe/Paris,,OET, +OET:SP:30626,1,"OCTROI",43.374859,5.354129,0,0,OET:SA:CTP30625,Europe/Paris,,OET, +OET:SP:30627,1,"F. MITTERRAND",43.378301,5.351968,0,0,OET:SA:CTP30627,Europe/Paris,,OET, +OET:SP:30628,1,"F. MITTERRAND",43.378344,5.352056,0,0,OET:SA:CTP30627,Europe/Paris,,OET, +OET:SP:30629,1,"PIERRE PUGET",43.529328,5.249414,0,0,OET:SA:CTP30410,Europe/Paris,,OET, +OET:SP:30630,1,"FREDERIC MISTRAL",43.488938,5.234746,0,0,OET:SA:CTP30630,Europe/Paris,,OET, +OET:SP:30631,1,"FREDERIC MISTRAL",43.488991,5.234773,0,0,OET:SA:CTP30630,Europe/Paris,,OET, +OET:SP:30632,1,"LYCEE BLERIOT",43.419095,5.216766,0,0,OET:SA:CTP31261,Europe/Paris,,OET, +OET:SP:30634,1,"MAURAN PONT DE L'ARC",43.506569,5.133324,0,0,OET:SA:CTP30634,Europe/Paris,,OET, +OET:SP:30635,1,"C.A.M.",43.49061,5.233435,0,0,OET:SA:CTP30635,Europe/Paris,,OET, +OET:SP:30636,1,"C.A.M.",43.49059,5.233508,0,0,OET:SA:CTP30635,Europe/Paris,,OET, +OET:SP:30637,1,"LA SUZANNE",43.494243,5.140825,0,0,OET:SA:CTP30447,Europe/Paris,,OET, +OET:SP:30638,1,"MIRABEAU MARCHÉ",27.140968,-3.404561,0,0,OET:SA:CTP30638,Europe/Paris,,OET, +OET:SP:30639,1,"LOTISSEMENT LES VIGNES",43.491961,5.16244,0,0,OET:SA:CTP30639,Europe/Paris,,OET, +OET:SP:30641,1,"GS SAINT LOUIS",43.395548,5.234388,0,0,OET:SA:CTP30641,Europe/Paris,,OET, +OET:SP:30642,1,"LES PIELLETTES",43.385131,5.216724,0,0,OET:SA:CTP30320,Europe/Paris,,OET, +OET:SP:30644,1,"LES BAYONS",43.383931,5.206775,0,0,OET:SA:CTP30605,Europe/Paris,,OET, +OET:SP:30645,1,"COTTON",43.384498,5.211131,0,0,OET:SA:CTP30318,Europe/Paris,,OET, +OET:SP:30646,1,"TOES/CARESTIER",43.404435,5.21651,0,0,OET:SA:CTP30646,Europe/Paris,,OET, +OET:SP:30647,1,"LES AMPHOUX",43.414307,5.265609,0,0,OET:SA:CTP30297,Europe/Paris,,OET, +OET:SP:30648,1,"TECHNOPARC 2",43.398523,5.206544,0,0,OET:SA:CTP30648,Europe/Paris,,OET, +OET:SP:30649,1,"SAINTE MARIE",43.41237,5.237509,0,0,OET:SA:CTP30649,Europe/Paris,,OET, +OET:SP:30650,1,"LOTISSEMENT LES VIGNES",43.491729,5.162021,0,0,OET:SA:CTP30639,Europe/Paris,,OET, +OET:SP:30651,1,"SARRAGOUSSE",43.487574,5.237975,0,0,OET:SA:CTP30651,Europe/Paris,,OET, +OET:SP:30652,1,"SARRAGOUSSE",43.487682,5.237956,0,0,OET:SA:CTP30651,Europe/Paris,,OET, +OET:SP:30653,1,"LES BAISSES",43.540592,5.150195,0,0,OET:SA:CTP30653,Europe/Paris,,OET, +OET:SP:30654,1,"LES BAISSES",43.540566,5.15049,0,0,OET:SA:CTP30653,Europe/Paris,,OET, +OET:SP:30655,1,"LES GRAMENIERES",43.550391,5.185335,0,0,OET:SA:CTP30655,Europe/Paris,,OET, +OET:SP:30656,1,"CENTRE COMMERCIAL",43.528554,5.257075,0,0,OET:SA:CTP30656,Europe/Paris,,OET, +OET:SP:30657,1,"CENTRE COMMERCIAL",43.528129,5.257189,0,0,OET:SA:CTP30656,Europe/Paris,,OET, +OET:SP:30658,1,"BASTIDE BERTIN",43.532941,5.246829,0,0,OET:SA:CTP30397,Europe/Paris,,OET, +OET:SP:30659,1,"LES COLLINES",43.534763,5.254635,0,0,OET:SA:CTP30401,Europe/Paris,,OET, +OET:SP:30660,1,"PAGANINI",43.536368,5.251491,0,0,OET:SA:CTP30400,Europe/Paris,,OET, +OET:SP:30661,1,"BERLIOZ",43.53721,5.248604,0,0,OET:SA:CTP30399,Europe/Paris,,OET, +OET:SP:30662,1,"EMILE RIPERT",43.53649,5.24497,0,0,OET:SA:CTP30398,Europe/Paris,,OET, +OET:SP:30663,1,"LES GRAMENIERES",43.550264,5.185032,0,0,OET:SA:CTP30655,Europe/Paris,,OET, +OET:SP:30664,1,"CAMPING MARINA",43.470538,5.229727,0,0,OET:SA:CTP30664,Europe/Paris,,OET, +OET:SP:30665,1,"PORT A. SAMSON",43.472261,5.166789,0,0,OET:SA:CTP30415,Europe/Paris,,OET, +OET:SP:30666,1,"Z.A. LA GLACIERE",43.42273,5.242167,0,0,OET:SA:CTP30666,Europe/Paris,,OET, +OET:SP:30667,1,"Z.A. LA GLACIERE",43.422774,5.242181,0,0,OET:SA:CTP30666,Europe/Paris,,OET, +OET:SP:30668,1,"LE CLOS DE GALEIGNE",43.49549,5.156809,0,0,OET:SA:CTP30443,Europe/Paris,,OET, +OET:SP:30669,1,"LES BARJAQUETS",43.507829,5.218763,0,0,OET:SA:CTP30383,Europe/Paris,,OET, +OET:SP:30670,1,"MOULIN DU PONT",43.543051,5.259101,0,0,OET:SA:CTP30670,Europe/Paris,,OET, +OET:SP:30671,1,"MOULIN DU PONT",43.542011,5.258999,0,0,OET:SA:CTP30670,Europe/Paris,,OET, +OET:SP:30672,1,"TECHNOPARC",43.401068,5.201788,0,0,OET:SA:CTP30672,Europe/Paris,,OET, +OET:SP:30673,1,"LA MINE",43.549487,5.243566,0,0,OET:SA:CTP30673,Europe/Paris,,OET, +OET:SP:30674,1,"LA MINE",43.549509,5.243407,0,0,OET:SA:CTP30673,Europe/Paris,,OET, +OET:SP:30677,1,"LES COLLETS",43.557141,5.244215,0,0,OET:SA:CTP30677,Europe/Paris,,OET, +OET:SP:30679,1,"LES PONEYS",43.554773,5.244342,0,0,OET:SA:CTP30679,Europe/Paris,,OET, +OET:SP:30682,1,"LES VIGNETTES - LE BAOU",43.460205,5.233044,0,0,OET:SA:CTP30682,Europe/Paris,,OET, +OET:SP:30683,1,"RUINAT/GENEVOIX",43.413268,5.204606,0,0,OET:SA:CTP30683,Europe/Paris,,OET, +OET:SP:30685,1,"LES TABORS",43.380115,5.348216,0,0,OET:SA:CTP30685,Europe/Paris,,OET, +OET:SP:30687,1,"LES BARALLES",43.55036,5.224778,0,0,OET:SA:CTP30687,Europe/Paris,,OET, +OET:SP:30688,1,"LES BLEUETS",43.495857,5.235282,0,0,OET:SA:CTP30377,Europe/Paris,,OET, +OET:SP:30689,1,"BONNE BRISE",43.426693,5.328715,0,0,OET:SA:CTP30689,Europe/Paris,,OET, +OET:SP:30690,1,"LE BRUSQ",43.406687,5.299941,0,0,OET:SA:CTP30690,Europe/Paris,,OET, +OET:SP:30691,1,"LES BARALLES",43.550473,5.223572,0,0,OET:SA:CTP30687,Europe/Paris,,OET, +OET:SP:30693,1,"ECOLE CASTEL HELENE",43.409441,5.31195,0,0,OET:SA:CTP30693,Europe/Paris,,OET, +OET:SP:30694,1,"LES MOUTERONS",43.531452,5.148929,0,0,OET:SA:CTP30694,Europe/Paris,,OET, +OET:SP:30695,1,"LES MOUTERONS",43.531445,5.148842,0,0,OET:SA:CTP30694,Europe/Paris,,OET, +OET:SP:30696,1,"PARC AQUATIQUE",43.415678,5.367605,0,0,OET:SA:CTP30696,Europe/Paris,,OET, +OET:SP:30699,1,"FAVIER",43.550635,5.203623,0,0,OET:SA:CTP30699,Europe/Paris,,OET, +OET:SP:30700,1,"FAVIER",43.550596,5.204103,0,0,OET:SA:CTP30699,Europe/Paris,,OET, +OET:SP:30705,1,"LE GRAND VERGER",43.416947,5.289184,0,0,OET:SA:CTP30705,Europe/Paris,,OET, +OET:SP:30706,1,"LE GRAND VERGER",43.417264,5.289102,0,0,OET:SA:CTP30705,Europe/Paris,,OET, +OET:SP:30707,1,"AV DE LATTRE DE TASSIGNY",43.417646,5.29223,0,0,OET:SA:CTP30707,Europe/Paris,,OET, +OET:SP:30708,1,"LES GALLARGUES",43.519564,5.148196,0,0,OET:SA:CTP30708,Europe/Paris,,OET, +OET:SP:30709,1,"LES GALLARGUES",43.519548,5.148133,0,0,OET:SA:CTP30708,Europe/Paris,,OET, +OET:SP:30716,1,"CARBONNEL (BD FELIX TURI)",43.415205,5.245412,0,0,OET:SA:CTP30716,Europe/Paris,,OET, +OET:SP:30719,1,"PERRUSSONS",43.42,5.220907,0,0,OET:SA:CTP30719,Europe/Paris,,OET, +OET:SP:30720,1,"PERRUSSONS",43.419803,5.220885,0,0,OET:SA:CTP30719,Europe/Paris,,OET, +OET:SP:30721,1,"ST NICOLAS",43.424299,5.218224,0,0,OET:SA:CTP30721,Europe/Paris,,OET, +OET:SP:30722,1,"ST NICOLAS",43.423834,5.21846,0,0,OET:SA:CTP30721,Europe/Paris,,OET, +OET:SP:30724,1,"ECUREUILS",43.42457,5.289947,0,0,OET:SA:CTP30724,Europe/Paris,,OET, +OET:SP:30725,1,"ECUREUILS",43.424506,5.289981,0,0,OET:SA:CTP30724,Europe/Paris,,OET, +OET:SP:30730,1,"AV PASTEUR",43.391583,5.233325,0,0,OET:SA:CTP30730,Europe/Paris,,OET, +OET:SP:30731,1,"AV PASTEUR",43.391664,5.233994,0,0,OET:SA:CTP30730,Europe/Paris,,OET, +OET:SP:30732,1,"JEAN.JAURES",43.393039,5.23706,0,0,OET:SA:CTP30732,Europe/Paris,,OET, +OET:SP:30734,1,"CINEMA",43.414307,5.360093,0,0,OET:SA:CTP30500,Europe/Paris,,OET, +OET:SP:30736,1,"COOPERATIVE AGRICOLE",43.533011,5.190971,0,0,OET:SA:CTP31174,Europe/Paris,,OET, +OET:SP:30737,1,"POUSARAQUE",43.387761,5.229321,0,0,OET:SA:CTP30737,Europe/Paris,,OET, +OET:SP:30738,1,"PETIT PRINCE",43.478679,5.173059,0,0,OET:SA:CTP30738,Europe/Paris,,OET, +OET:SP:30739,1,"VIEILLE ROUTE DE LA GAVOTTE",43.386568,5.344795,0,0,OET:SA:CTP30739,Europe/Paris,,OET, +OET:SP:30740,1,"VIELLE ROUTE DE LA GAVOTTE",43.386154,5.345131,0,0,OET:SA:CTP30740,Europe/Paris,,OET, +OET:SP:30741,1,"Z.I. LES PINS",43.403715,5.260258,0,0,OET:SA:CTP30741,Europe/Paris,,OET, +OET:SP:30742,1,"HENRI FABRE",43.417712,5.2032,0,0,OET:SA:CTP30742,Europe/Paris,,OET, +OET:SP:30743,1,"HENRI FABRE",43.417956,5.203151,0,0,OET:SA:CTP30742,Europe/Paris,,OET, +OET:SP:30744,1,"BOWLING",43.414468,5.353033,0,0,OET:SA:CTP30574,Europe/Paris,,OET, +OET:SP:30745,1,"LES VIGNETTES - LE BAOU",43.461433,5.232193,0,0,OET:SA:CTP30682,Europe/Paris,,OET, +OET:SP:30748,1,"CLOS DE LA CADIERE",43.417646,5.293205,0,0,OET:SA:CTP31295,Europe/Paris,,OET, +OET:SP:30749,1,"PETIT PRINCE",43.478704,5.173147,0,0,OET:SA:CTP30738,Europe/Paris,,OET, +OET:SP:30750,1,"PLAN DE CAMPAGNE - BARNEOUD",43.416989,5.359692,0,0,OET:SA:CTP30750,Europe/Paris,,OET, +OET:SP:30752,1,"PISCINE C. JOUVE",43.476027,5.172014,0,0,OET:SA:CTP30599,Europe/Paris,,OET, +OET:SP:30754,1,"EGLISE",43.55047,5.194922,0,0,OET:SA:CTP30754,Europe/Paris,,OET, +OET:SP:30756,1,"EGLISE",43.550413,5.195031,0,0,OET:SA:CTP30754,Europe/Paris,,OET, +OET:SP:30757,1,"HENRI LOUBET",43.450132,5.235423,0,0,OET:SA:CTP30014,Europe/Paris,,OET, +OET:SP:30758,1,"ROUTE DU CHEMIN DE FER",43.454679,5.235221,0,0,OET:SA:CTP30758,Europe/Paris,,OET, +OET:SP:30763,1,"HENRI BARBUSSE",43.489398,5.164179,0,0,OET:SA:CTP30763,Europe/Paris,,OET, +OET:SP:30766,1,"HENRI BARBUSSE",43.489554,5.164063,0,0,OET:SA:CTP30763,Europe/Paris,,OET, +OET:SP:30768,1,"AV. DE SYLVANES",43.491804,5.156059,0,0,OET:SA:CTP30768,Europe/Paris,,OET, +OET:SP:30769,1,"AV. DE SYLVANES",43.492423,5.155768,0,0,OET:SA:CTP30768,Europe/Paris,,OET, +OET:SP:30770,1,"LE PETIT CHENE",43.418955,5.301847,0,0,OET:SA:CTP30770,Europe/Paris,,OET, +OET:SP:30776,1,"Z.I. LES PINS",43.403144,5.260771,0,0,OET:SA:CTP30741,Europe/Paris,,OET, +OET:SP:30778,1,"LA GIRAUDE",43.550604,5.210212,0,0,OET:SA:CTP30778,Europe/Paris,,OET, +OET:SP:30779,1,"LA GIRAUDE",43.55053,5.210963,0,0,OET:SA:CTP30778,Europe/Paris,,OET, +OET:SP:30780,1,"LA CITE HAUTE",43.425689,5.305835,0,0,OET:SA:CTP30780,Europe/Paris,,OET, +OET:SP:30781,1,"COLLEGE F LEGER",43.487155,5.158794,0,0,OET:SA:CTP30781,Europe/Paris,,OET, +OET:SP:30782,1,"CHEMIN DE LA GUIENNE",43.500158,5.166045,0,0,OET:SA:CTP30782,Europe/Paris,,OET, +OET:SP:30783,1,"CHEMIN DE RICHELME",43.523466,5.176418,0,0,OET:SA:CTP31163,Europe/Paris,,OET, +OET:SP:30784,1,"TOES/CARESTIER",43.404448,5.216363,0,0,OET:SA:CTP30646,Europe/Paris,,OET, +OET:SP:30786,1,"AERODROME NORD",43.535639,5.172783,0,0,OET:SA:CTP31032,Europe/Paris,,OET, +OET:SP:30787,1,"LE CLOS",43.484699,5.139196,0,0,OET:SA:CTP30787,Europe/Paris,,OET, +OET:SP:30792,1,"LES BARNOUINS 2",43.414178,5.319524,0,0,OET:SA:CTP30792,Europe/Paris,,OET, +OET:SP:30793,1,"CLOSON",43.423166,5.326507,0,0,OET:SA:CTP30793,Europe/Paris,,OET, +OET:SP:30794,1,"VERSAILLES",43.407796,5.332378,0,0,OET:SA:CTP30794,Europe/Paris,,OET, +OET:SP:30796,1,"LA LAITERIE",43.40834,5.312091,0,0,OET:SA:CTP30796,Europe/Paris,,OET, +OET:SP:30797,1,"LA CULASSE",43.405743,5.284857,0,0,OET:SA:CTP30797,Europe/Paris,,OET, +OET:SP:30798,1,"EMILE BOUILHAC",43.460054,5.250691,0,0,OET:SA:CTP30603,Europe/Paris,,OET, +OET:SP:30799,1,"Bd TARDY - Av DES JOYEUX",43.377484,5.346796,0,0,OET:SA:CTP30551,Europe/Paris,,OET, +OET:SP:30800,1,"CHEMIN NOTRE DAME",43.522683,5.193472,0,0,OET:SA:CTP30800,Europe/Paris,,OET, +OET:SP:30805,1,"CHEMIN DE VAL SEC",43.378778,5.342327,0,0,OET:SA:CTP30805,Europe/Paris,,OET, +OET:SP:30806,1,"CHEMIN DE VAL SEC",43.378674,5.342506,0,0,OET:SA:CTP30805,Europe/Paris,,OET, +OET:SP:30807,1,"LE RELAIS",43.415246,5.374984,0,0,OET:SA:CTP30807,Europe/Paris,,OET, +OET:SP:30812,1,"JEAN GIONO",43.379108,5.341432,0,0,OET:SA:CTP30812,Europe/Paris,,OET, +OET:SP:30815,1,"St ESTEVE HAMEAU",43.504571,5.152055,0,0,OET:SA:CTP30815,Europe/Paris,,OET, +OET:SP:30816,1,"St ESTEVE HAMEAU",43.504506,5.152114,0,0,OET:SA:CTP30815,Europe/Paris,,OET, +OET:SP:30818,1,"LES TABORS",43.38019,5.348763,0,0,OET:SA:CTP30685,Europe/Paris,,OET, +OET:SP:30820,1,"CH DES PETITS CADENEAUX",43.389441,5.341111,0,0,OET:SA:CTP30820,Europe/Paris,,OET, +OET:SP:30821,1,"CH DES PETITS CADENEAUX",43.388624,5.341376,0,0,OET:SA:CTP30820,Europe/Paris,,OET, +OET:SP:30822,1,"MAURAN",43.50761,5.134759,0,0,OET:SA:CTP30450,Europe/Paris,,OET, +OET:SP:30823,1,"TUNNEL RD113",43.410971,5.310599,0,0,OET:SA:CTP31299,Europe/Paris,,OET, +OET:SP:30824,1,"LA PETITE SUZANNE",43.499263,5.132053,0,0,OET:SA:CTP30824,Europe/Paris,,OET, +OET:SP:30825,1,"NUNGESSER ET COLI",43.375364,5.349286,0,0,OET:SA:CTP30825,Europe/Paris,,OET, +OET:SP:30826,1,"FERME CROZE",43.423133,5.291193,0,0,OET:SA:CTP30826,Europe/Paris,,OET, +OET:SP:30827,1,"FERME CROZE",43.4232,5.291036,0,0,OET:SA:CTP30826,Europe/Paris,,OET, +OET:SP:30828,1,"POUSARAQUE",43.387688,5.229367,0,0,OET:SA:CTP30737,Europe/Paris,,OET, +OET:SP:30831,1,"LES JONQUILLES",43.481581,5.1663,0,0,OET:SA:CTP31114,Europe/Paris,,OET, +OET:SP:30835,1,"TUNNEL RD113",43.411071,5.310555,0,0,OET:SA:CTP31299,Europe/Paris,,OET, +OET:SP:30837,1,"CHEMIN DES BŒUFS",43.377142,5.339393,0,0,OET:SA:CTP30837,Europe/Paris,,OET, +OET:SP:30838,1,"IMPASSE DES JONQUILLES",43.387459,5.341882,0,0,OET:SA:CTP30838,Europe/Paris,,OET, +OET:SP:30839,1,"IMPASSE CELESTE",43.378197,5.350865,0,0,OET:SA:CTP30839,Europe/Paris,,OET, +OET:SP:30840,1,"ETIENNE RABATTU",43.417401,5.349782,0,0,OET:SA:CTP30840,Europe/Paris,,OET, +OET:SP:30841,1,"CHEMIN DE VELAUX",43.414713,5.349764,0,0,OET:SA:CTP30841,Europe/Paris,,OET, +OET:SP:30843,1,"MONTEE DU CHaTEAU",43.411541,5.312775,0,0,OET:SA:CTP30843,Europe/Paris,,OET, +OET:SP:30844,1,"LA PETITE SUZANNE",43.49903,5.132029,0,0,OET:SA:CTP30824,Europe/Paris,,OET, +OET:SP:30845,1,"CHEMIN MEUNIER",27.140959,-3.404569,0,0,OET:SA:CTP30845,Europe/Paris,,OET, +OET:SP:30846,1,"BOULEVARD TARDY",43.378121,5.349419,0,0,OET:SA:CTP30846,Europe/Paris,,OET, +OET:SP:30850,1,"STADE M.VITRIA",43.398595,5.328851,0,0,OET:SA:CTP30850,Europe/Paris,,OET, +OET:SP:30851,1,"STADE M.VITRIA",43.398522,5.328908,0,0,OET:SA:CTP30850,Europe/Paris,,OET, +OET:SP:30852,1,"DOMAINE DU PLATEAU",43.393582,5.316664,0,0,OET:SA:CTP30852,Europe/Paris,,OET, +OET:SP:30853,1,"AVE DE L'EUROPE",43.416143,5.227584,0,0,OET:SA:CTP30853,Europe/Paris,,OET, +OET:SP:30854,1,"AVE DE L'EUROPE",43.416256,5.227417,0,0,OET:SA:CTP30853,Europe/Paris,,OET, +OET:SP:30855,1,"BOULEVARD TARDY",43.378085,5.349417,0,0,OET:SA:CTP30846,Europe/Paris,,OET, +OET:SP:30856,1,"VIGNETTES ECOLE",43.462333,5.23051,0,0,OET:SA:CTP30010,Europe/Paris,,OET, +OET:SP:30857,1,"AV. 1ERE ARMEE",43.411471,5.215334,0,0,OET:SA:CTP30857,Europe/Paris,,OET, +OET:SP:30858,1,"CLOS DE LA CADIERE",43.4178,5.293151,0,0,OET:SA:CTP31295,Europe/Paris,,OET, +OET:SP:30860,1,"IMPASSE DES JONQUILLES",43.387134,5.341939,0,0,OET:SA:CTP30838,Europe/Paris,,OET, +OET:SP:30861,1,"ETIENNE RABATU",43.417396,5.349658,0,0,OET:SA:CTP30861,Europe/Paris,,OET, +OET:SP:30862,1,"CHEMIN DES BŒUFS",43.377097,5.339379,0,0,OET:SA:CTP30837,Europe/Paris,,OET, +OET:SP:30863,1,"AV. 1ERE ARMEE",43.411675,5.215468,0,0,OET:SA:CTP30857,Europe/Paris,,OET, +OET:SP:30864,1,"MAS DES JEUNES",43.485787,5.232499,0,0,OET:SA:CTP30356,Europe/Paris,,OET, +OET:SP:30866,1,"PAUL RAPHEL",43.410985,5.254819,0,0,OET:SA:CTP30866,Europe/Paris,,OET, +OET:SP:30867,1,"PAUL RAPHEL",43.411049,5.254773,0,0,OET:SA:CTP30866,Europe/Paris,,OET, +OET:SP:30876,1,"SQUARE MARGUERITE DE PCE",43.440653,5.258466,0,0,OET:SA:CTP30876,Europe/Paris,,OET, +OET:SP:30877,1,"SQUARE MARGUERITE DE PCE",43.44053,5.258324,0,0,OET:SA:CTP30876,Europe/Paris,,OET, +OET:SP:30878,1,"HELENE BOUCHER",43.526201,5.253642,0,0,OET:SA:CTP30878,Europe/Paris,,OET, +OET:SP:30879,1,"HELENE BOUCHER",43.526348,5.253526,0,0,OET:SA:CTP30878,Europe/Paris,,OET, +OET:SP:30880,1,"LES ORMES",43.508544,5.216229,0,0,OET:SA:CTP30880,Europe/Paris,,OET, +OET:SP:30881,1,"LES ORMES",43.508593,5.216763,0,0,OET:SA:CTP30880,Europe/Paris,,OET, +OET:SP:30884,1,"CONCORDE",43.421173,5.207642,0,0,OET:SA:CTP30884,Europe/Paris,,OET, +OET:SP:30885,1,"CONCORDE",43.421233,5.207732,0,0,OET:SA:CTP30884,Europe/Paris,,OET, +OET:SP:30887,1,"ATHENES STOCKHOLM",43.434393,5.239858,0,0,OET:SA:CTP30048,Europe/Paris,,OET, +OET:SP:30893,1,"POLE EMPLOI",43.423012,5.260663,0,0,OET:SA:CTP30536,Europe/Paris,,OET, +OET:SP:30894,1,"ANJOLY",43.421279,5.266854,0,0,OET:SA:CTP30056,Europe/Paris,,OET, +OET:SP:30895,1,"COUPERIGNES",43.443834,5.23387,0,0,OET:SA:CTP30895,Europe/Paris,,OET, +OET:SP:30896,1,"AIRBUS HELICOPTERS",43.434206,5.234086,0,0,OET:SA:CTP30896,Europe/Paris,,OET, +OET:SP:30897,1,"GARE DE VITROLLES VAMP",43.442551,5.237125,0,0,OET:SA:CTP30897,Europe/Paris,,OET, +OET:SP:30898,1,"COUPERIGNES",43.443952,5.233827,0,0,OET:SA:CTP30895,Europe/Paris,,OET, +OET:SP:30899,1,"LES TRIBALLES",43.448011,5.230354,0,0,OET:SA:CTP30018,Europe/Paris,,OET, +OET:SP:30901,1,"LES ROMARINS",27.140968,-3.404561,0,0,OET:SA:CTP30901,Europe/Paris,,OET, +OET:SP:30902,1,"LE GABIAN",43.42,5.226619,0,0,OET:SA:CTP30215,Europe/Paris,,OET, +OET:SP:30905,1,"LES MOUETTES",43.491366,5.202827,0,0,OET:SA:CTP30905,Europe/Paris,,OET, +OET:SP:30906,1,"LES CADESTEAUX",43.478733,5.227622,0,0,OET:SA:CTP30906,Europe/Paris,,OET, +OET:SP:30908,1,"CLINIQUE DE ROGNAC",27.140968,-3.404561,0,0,OET:SA:CTP30908,Europe/Paris,,OET, +OET:SP:30909,1,"LA FALAISE",43.478677,5.227094,0,0,OET:SA:CTP30909,Europe/Paris,,OET, +OET:SP:30910,1,"EUROPE CH. DE GAULLE",27.140968,-3.404561,0,0,OET:SA:CTP30910,Europe/Paris,,OET, +OET:SP:30911,1,"ROGNAC2",43.491216,5.202881,0,0,OET:SA:CTP30911,Europe/Paris,,OET, +OET:SP:30915,1,"LA GLACIÈRE",43.422133,5.24325,0,0,OET:SA:CTP30915,Europe/Paris,,OET, +OET:SP:30919,1,"ECOLE MANDELA",43.409014,5.367634,0,0,OET:SA:CTP30919,Europe/Paris,,OET, +OET:SP:30920,1,"1ÉME / 4ÉME AV.",43.421416,5.244477,0,0,OET:SA:CTP30920,Europe/Paris,,OET, +OET:SP:30922,1,"LE TUNNEL",43.397749,5.228182,0,0,OET:SA:CTP30922,Europe/Paris,,OET, +OET:SP:30923,1,"ROUTE DE VELAUX FRONTIERE",27.140968,-3.404561,0,0,OET:SA:CTP30923,Europe/Paris,,OET, +OET:SP:30924,1,"BASE NAUTIQUE",27.140968,-3.404561,0,0,OET:SA:CTP30924,Europe/Paris,,OET, +OET:SP:30925,1,"COLLET DE LÈBRE",43.397752,5.228068,0,0,OET:SA:CTP30925,Europe/Paris,,OET, +OET:SP:30926,1,"COLLÈGE J. PRÉVERT",43.4156,5.231257,0,0,OET:SA:CTP30926,Europe/Paris,,OET, +OET:SP:30927,1,"LES TRIBALLES",27.140968,-3.404561,0,0,OET:SA:CTP30927,Europe/Paris,,OET, +OET:SP:30928,1,"LES SYBILLES",27.140968,-3.404561,0,0,OET:SA:CTP30928,Europe/Paris,,OET, +OET:SP:30931,1,"LES OLIVIERS",43.415616,5.231103,0,0,OET:SA:CTP30258,Europe/Paris,,OET, +OET:SP:30932,1,"PLACE J. MOULIN",27.140968,-3.404561,0,0,OET:SA:CTP30932,Europe/Paris,,OET, +OET:SP:30933,1,"MENDÈS FRANCE PIERRE PLANTÉE",27.140968,-3.404561,0,0,OET:SA:CTP30933,Europe/Paris,,OET, +OET:SP:30935,1,"COLLÈGE J. PRÉVERT",43.414416,5.235865,0,0,OET:SA:CTP30935,Europe/Paris,,OET, +OET:SP:30937,1,"STE MARIE",43.414399,5.236184,0,0,OET:SA:CTP30937,Europe/Paris,,OET, +OET:SP:30938,1,"CENTRE COMMERCIAL ST VICTORET",43.414433,5.235983,0,0,OET:SA:CTP30938,Europe/Paris,,OET, +OET:SP:30941,1,"CARREFOUR DES COURONNES",43.410533,5.252708,0,0,OET:SA:CTP30941,Europe/Paris,,OET, +OET:SP:30942,1,"GARE DE PAS DES LANCIERS",43.410466,5.252488,0,0,OET:SA:CTP30942,Europe/Paris,,OET, +OET:SP:30950,1,"LA VERDIERE",43.518788,5.232603,0,0,OET:SA:CTP30393,Europe/Paris,,OET, +OET:SP:30951,1,"LA GERBINE",43.509568,5.225133,0,0,OET:SA:CTP30390,Europe/Paris,,OET, +OET:SP:30952,1,"LE GABIAN",43.420253,5.22657,0,0,OET:SA:CTP30215,Europe/Paris,,OET, +OET:SP:30954,1,"VICTOR GELU",43.443085,5.245335,0,0,OET:SA:CTP31271,Europe/Paris,,OET, +OET:SP:30955,1,"PAS DES LANCIERS LES PLATANES",43.405249,5.259252,0,0,OET:SA:CTP30955,Europe/Paris,,OET, +OET:SP:30956,1,"PAS DES LANCIERS / PLATANES",43.405133,5.259308,0,0,OET:SA:CTP30956,Europe/Paris,,OET, +OET:SP:30957,1,"HOTELS",43.444779,5.223797,0,0,OET:SA:CTP30957,Europe/Paris,,OET, +OET:SP:30967,1,"GARE DE VITROLLES (VAMP)",43.442449,5.237243,0,0,OET:SA:CTP30897,Europe/Paris,,OET, +OET:SP:30968,1,"LES VIGNETTES - LE BAOU",43.460252,5.232578,0,0,OET:SA:CTP30682,Europe/Paris,,OET, +OET:SP:30971,1,"CHEMIN NOTRE DAME",27.140968,-3.404561,0,0,OET:SA:CTP30971,Europe/Paris,,OET, +OET:SP:30972,1,"MAISON DES ASSOCIATIONS",43.419711,5.237066,0,0,OET:SA:CTP30972,Europe/Paris,,OET, +OET:SP:30973,1,"MAISON DES ASSOCIATIONS",43.419743,5.237216,0,0,OET:SA:CTP30972,Europe/Paris,,OET, +OET:SP:30979,1,"GABRIEL VOISIN (FRONTIERE)",27.140968,-3.404561,0,0,OET:SA:CTP30979,Europe/Paris,,OET, +OET:SP:30981,1,"AV DE LATTRE DE TASSIGNY",43.420362,5.28762,0,0,OET:SA:CTP30981,Europe/Paris,,OET, +OET:SP:30988,1,"LONDRES BRUXELLES",27.140968,-3.404561,0,0,OET:SA:CTP31223,Europe/Paris,,OET, +OET:SP:30994,1,"J. MONNET",43.476116,5.168438,0,0,OET:SA:CTP30994,Europe/Paris,,OET, +OET:SP:30995,1,"F. MISTRAL",43.473599,5.16895,0,0,OET:SA:CTP30995,Europe/Paris,,OET, +OET:SP:30996,1,"LE PETIT PORT",43.472483,5.166923,0,0,OET:SA:CTP30996,Europe/Paris,,OET, +OET:SP:30997,1,"LE DRIGNON",43.473922,5.165674,0,0,OET:SA:CTP30414,Europe/Paris,,OET, +OET:SP:30998,1,"PLACE DU SOUVENIR FRANÇAIS",43.475866,5.16715,0,0,OET:SA:CTP30998,Europe/Paris,,OET, +OET:SP:31010,1,"CHEMIN DES GRANDS LOTS",43.519368,5.170839,0,0,OET:SA:CTP31010,Europe/Paris,,OET, +OET:SP:31011,1,"CHEMIN DES GRANDS LOTS",43.519371,5.170703,0,0,OET:SA:CTP31010,Europe/Paris,,OET, +OET:SP:31013,1,"CHEMIN DU COUSSOUS",43.515122,5.167106,0,0,OET:SA:CTP31013,Europe/Paris,,OET, +OET:SP:31014,1,"CHEMIN DU COUSSOUS",43.515136,5.167255,0,0,OET:SA:CTP31013,Europe/Paris,,OET, +OET:SP:31015,1,"CHEMIN DE BOUCARUT",43.512647,5.165093,0,0,OET:SA:CTP31015,Europe/Paris,,OET, +OET:SP:31016,1,"CHEMIN DE BOUCARUT",43.512644,5.165217,0,0,OET:SA:CTP31015,Europe/Paris,,OET, +OET:SP:31017,1,"CHEMIN DE LA TRANSHUMANCE",43.509474,5.162292,0,0,OET:SA:CTP31017,Europe/Paris,,OET, +OET:SP:31018,1,"CHEMIN DE LA TRANSHUMANCE",43.509384,5.1623,0,0,OET:SA:CTP31017,Europe/Paris,,OET, +OET:SP:31021,1,"Z.I EUROFLORY",43.519181,5.19258,0,0,OET:SA:CTP31021,Europe/Paris,,OET, +OET:SP:31028,1,"St CHRISTOPHE",43.396974,5.281298,0,0,OET:SA:CTP31028,Europe/Paris,,OET, +OET:SP:31029,1,"CHEMIN DE LA CROIX",43.39402,5.271885,0,0,OET:SA:CTP31029,Europe/Paris,,OET, +OET:SP:31030,1,"AERODROME SUD",43.530448,5.180399,0,0,OET:SA:CTP31030,Europe/Paris,,OET, +OET:SP:31031,1,"AERODROME SUD",43.530405,5.180323,0,0,OET:SA:CTP31030,Europe/Paris,,OET, +OET:SP:31032,1,"AERODROME NORD",43.535605,5.172731,0,0,OET:SA:CTP31032,Europe/Paris,,OET, +OET:SP:31033,1,"PLAN DES PENNES",43.395208,5.27646,0,0,OET:SA:CTP31033,Europe/Paris,,OET, +OET:SP:31035,1,"COTTAGE ISABELLE",43.400379,5.290267,0,0,OET:SA:CTP31035,Europe/Paris,,OET, +OET:SP:31036,1,"LA CABASSETTE",43.401925,5.292603,0,0,OET:SA:CTP31036,Europe/Paris,,OET, +OET:SP:31039,1,"COLLEGE JACQUES MONOD NORD",43.399866,5.334566,0,0,OET:SA:CTP31039,Europe/Paris,,OET, +OET:SP:31041,1,"ROCHES BLANCHES",43.399268,5.341503,0,0,OET:SA:CTP31041,Europe/Paris,,OET, +OET:SP:31042,1,"ROCHES BLANCHES",43.399252,5.34144,0,0,OET:SA:CTP31041,Europe/Paris,,OET, +OET:SP:31045,1,"LES GARRIGUES",43.390102,5.336435,0,0,OET:SA:CTP31045,Europe/Paris,,OET, +OET:SP:31046,1,"LES GARRIGUES",43.390341,5.336262,0,0,OET:SA:CTP31045,Europe/Paris,,OET, +OET:SP:31060,1,"LES CRAVONS",43.529243,5.184813,0,0,OET:SA:CTP31060,Europe/Paris,,OET, +OET:SP:31061,1,"CENTRE COMMERCIAL",43.491831,5.232484,0,0,OET:SA:CTP30403,Europe/Paris,,OET, +OET:SP:31062,1,"TECHNOPARC",43.401186,5.201757,0,0,OET:SA:CTP30672,Europe/Paris,,OET, +OET:SP:31064,1,"CAVE COOPERATIVE OUEST",43.49484,5.154133,0,0,OET:SA:CTP31149,Europe/Paris,,OET, +OET:SP:31065,1,"CAVE COOPERATIVE NORD",43.4956,5.154319,0,0,OET:SA:CTP31065,Europe/Paris,,OET, +OET:SP:31066,1,"PIERRE PLANTEE - MENDES France",43.446919,5.247566,0,0,OET:SA:CTP31066,Europe/Paris,,OET, +OET:SP:31069,1,"PAUL ELUARD",43.479031,5.165815,0,0,OET:SA:CTP31069,Europe/Paris,,OET, +OET:SP:31070,1,"CENTRE",43.558376,5.251117,0,0,OET:SA:CTP31070,Europe/Paris,,OET, +OET:SP:31071,1,"CENTRE",43.558463,5.251257,0,0,OET:SA:CTP31070,Europe/Paris,,OET, +OET:SP:31072,1,"PLANTADE",43.557325,5.254761,0,0,OET:SA:CTP31072,Europe/Paris,,OET, +OET:SP:31073,1,"MALVALLAT",43.549623,5.256544,0,0,OET:SA:CTP31073,Europe/Paris,,OET, +OET:SP:31074,1,"MALVALLAT",43.549908,5.256299,0,0,OET:SA:CTP31073,Europe/Paris,,OET, +OET:SP:31075,1,"PLANTADE",43.5573,5.254661,0,0,OET:SA:CTP31072,Europe/Paris,,OET, +OET:SP:31078,1,"MOULIN A HUILE",43.417854,5.259869,0,0,OET:SA:CTP30298,Europe/Paris,,OET, +OET:SP:31079,1,"LE CROY",43.422307,5.302613,0,0,OET:SA:CTP31079,Europe/Paris,,OET, +OET:SP:31080,1,"SQUARE",43.492051,5.229654,0,0,OET:SA:CTP31080,Europe/Paris,,OET, +OET:SP:31081,1,"SQUARE",43.492045,5.229542,0,0,OET:SA:CTP31080,Europe/Paris,,OET, +OET:SP:31082,1,"VIGUIERE ECOLE",43.389991,5.234674,0,0,OET:SA:CTP30332,Europe/Paris,,OET, +OET:SP:31083,1,"LES TULIPES",43.494876,5.232972,0,0,OET:SA:CTP31083,Europe/Paris,,OET, +OET:SP:31084,1,"LES TULIPES",43.49493,5.232974,0,0,OET:SA:CTP31083,Europe/Paris,,OET, +OET:SP:31085,1,"LA BORNE",43.408375,5.303976,0,0,OET:SA:CTP31085,Europe/Paris,,OET, +OET:SP:31086,1,"LES CRAVONS",43.529372,5.185042,0,0,OET:SA:CTP31060,Europe/Paris,,OET, +OET:SP:31087,1,"MOULIN À HUILE (FRONTIÈRE)",27.140968,-3.404561,0,0,OET:SA:CTP31087,Europe/Paris,,OET, +OET:SP:31103,1,"CAPEAU",27.140968,-3.404561,0,0,OET:SA:CTP31103,Europe/Paris,,OET, +OET:SP:31114,1,"LES JONQUILLES",43.481456,5.166281,0,0,OET:SA:CTP31114,Europe/Paris,,OET, +OET:SP:31115,1,"EREA LOUIS ARAGON",43.396443,5.32087,0,0,OET:SA:CTP31115,Europe/Paris,,OET, +OET:SP:31116,1,"DEPOT SUMA",43.507884,5.20725,0,0,OET:SA:CTP31116,Europe/Paris,,OET, +OET:SP:31117,1,"LES CADENEAUX",43.395544,5.343502,0,0,OET:SA:CTP31117,Europe/Paris,,OET, +OET:SP:31118,1,"LES CADENEAUX",43.394812,5.343612,0,0,OET:SA:CTP31117,Europe/Paris,,OET, +OET:SP:31119,1,"SIMONE SIGNORET",43.405196,5.259704,0,0,OET:SA:CTP31119,Europe/Paris,,OET, +OET:SP:31120,1,"AVENUE DES LAVANDES",43.505986,5.220758,0,0,OET:SA:CTP31120,Europe/Paris,,OET, +OET:SP:31121,1,"LES VOLTES",43.502935,5.168851,0,0,OET:SA:CTP31121,Europe/Paris,,OET, +OET:SP:31122,1,"LES CIGALES",43.506968,5.177279,0,0,OET:SA:CTP31122,Europe/Paris,,OET, +OET:SP:31123,1,"ECOLE KRAEMER",43.510968,5.219403,0,0,OET:SA:CTP31123,Europe/Paris,,OET, +OET:SP:31124,1,"G.S. MARCEL PAGNOL",43.489152,5.224085,0,0,OET:SA:CTP31124,Europe/Paris,,OET, +OET:SP:31125,1,"G.S. LES JARDINS",43.490212,5.2221,0,0,OET:SA:CTP31125,Europe/Paris,,OET, +OET:SP:31126,1,"G.S. ROMAIN ROLLAND",43.496183,5.233865,0,0,OET:SA:CTP31126,Europe/Paris,,OET, +OET:SP:31127,1,"G.S. JEAN GIONO",43.483781,5.23588,0,0,OET:SA:CTP31127,Europe/Paris,,OET, +OET:SP:31128,1,"G.S. CARBONEL",43.415642,5.245557,0,0,OET:SA:CTP31128,Europe/Paris,,OET, +OET:SP:31129,1,"G.S. JEAN COCTEAU",43.411757,5.238206,0,0,OET:SA:CTP31129,Europe/Paris,,OET, +OET:SP:31130,1,"CLOS D'EMPALIERE",43.416059,5.257409,0,0,OET:SA:CTP31130,Europe/Paris,,OET, +OET:SP:31131,1,"CLOS DE PROVENCE",43.419086,5.258846,0,0,OET:SA:CTP31131,Europe/Paris,,OET, +OET:SP:31132,1,"SAINT JOSEPH",43.516425,5.149228,0,0,OET:SA:CTP31132,Europe/Paris,,OET, +OET:SP:31133,1,"SAINT JOSEPH",43.516295,5.149407,0,0,OET:SA:CTP31132,Europe/Paris,,OET, +OET:SP:31134,1,"DRAILLE DES TRIBALLES",43.447454,5.235695,0,0,OET:SA:CTP31134,Europe/Paris,,OET, +OET:SP:31135,1,"ECOLE STE MARIE (ARRET SCOLAIRE)",43.411819,5.235581,0,0,OET:SA:CTP31135,Europe/Paris,,OET, +OET:SP:31140,1,"Square Général de Gaulle (frontière)",27.140968,-3.404561,0,0,OET:SA:CTP31140,Europe/Paris,,OET, +OET:SP:31141,1,"Les Fortunés (frontière)",27.140968,-3.404561,0,0,OET:SA:CTP31141,Europe/Paris,,OET, +OET:SP:31143,1,"LA TETE NOIRE",43.488319,5.221597,0,0,OET:SA:CTP31143,Europe/Paris,,OET, +OET:SP:31144,1,"ESPACE - QUAI 3",43.434492,5.260805,0,0,OET:SA:CTP30071,Europe/Paris,,OET, +OET:SP:31145,1,"Le Parterre",43.526661,5.257238,0,0,OET:SA:CTP31145,Europe/Paris,,OET, +OET:SP:31146,1,"RUE AMPERE",43.513231,5.233975,0,0,OET:SA:CTP31146,Europe/Paris,,OET, +OET:SP:31147,1,"Z.I. LA VERDIERE",43.515449,5.2428,0,0,OET:SA:CTP31147,Europe/Paris,,OET, +OET:SP:31148,1,"LYCEE MONNET (SCOLAIRES)",43.424291,5.270167,0,0,OET:SA:CTP31148,Europe/Paris,,OET, +OET:SP:31149,1,"CAVE COOPERATIVE OUEST",43.494923,5.154063,0,0,OET:SA:CTP31149,Europe/Paris,,OET, +OET:SP:31150,1,"LA GUIENNE",43.500114,5.166018,0,0,OET:SA:CTP31150,Europe/Paris,,OET, +OET:SP:31151,1,"CHEMIN DU LION",43.454008,5.231768,0,0,OET:SA:CTP31151,Europe/Paris,,OET, +OET:SP:31152,1,"CHEMIN MEUNIER",43.550435,5.218253,0,0,OET:SA:CTP31152,Europe/Paris,,OET, +OET:SP:31153,1,"CHEMIN MEUNIER",43.550451,5.219355,0,0,OET:SA:CTP31152,Europe/Paris,,OET, +OET:SP:31154,1,"LES TRIBALLES RD20",43.449173,5.230635,0,0,OET:SA:CTP31154,Europe/Paris,,OET, +OET:SP:31155,1,"LES TRIBALLES RD20",43.449195,5.230488,0,0,OET:SA:CTP31154,Europe/Paris,,OET, +OET:SP:31156,1,"LES LIMITES",43.538046,5.168452,0,0,OET:SA:CTP31156,Europe/Paris,,OET, +OET:SP:31157,1,"LES LIMITES",43.538011,5.168413,0,0,OET:SA:CTP31156,Europe/Paris,,OET, +OET:SP:31158,1,"LA CITE HAUTE",27.140959,-3.404569,0,0,OET:SA:CTP31158,Europe/Paris,,OET, +OET:SP:31159,1,"LA CITE HAUTE",27.140959,-3.404569,0,0,OET:SA:CTP31158,Europe/Paris,,OET, +OET:SP:31160,1,"PARKING COLLEGE PETIT PRINCE",43.389236,5.228656,0,0,OET:SA:CTP31160,Europe/Paris,,OET, +OET:SP:31161,1,"LES AUBEPINES",43.526987,5.260493,0,0,OET:SA:CTP31161,Europe/Paris,,OET, +OET:SP:31162,1,"PIERRE PLANTEE",43.446369,5.248921,0,0,OET:SA:CTP31228,Europe/Paris,,OET, +OET:SP:31163,1,"CHEMIN DE RICHELME",43.523513,5.176346,0,0,OET:SA:CTP31163,Europe/Paris,,OET, +OET:SP:31164,1,"CAUCADIS",43.450298,5.240295,0,0,OET:SA:CTP31164,Europe/Paris,,OET, +OET:SP:31166,1,"SAINT ANTOINE VILLAGE",43.371091,5.356075,0,0,OET:SA:CTP31166,Europe/Paris,,OET, +OET:SP:31167,1,"SAINT ANTOINE VILLAGE",43.371656,5.356118,0,0,OET:SA:CTP31166,Europe/Paris,,OET, +OET:SP:31168,1,"CHEMIN DES PINETTES",43.530693,5.233785,0,0,OET:SA:CTP31168,Europe/Paris,,OET, +OET:SP:31169,1,"FONTAINE DE LAURENT",43.522071,5.233657,0,0,OET:SA:CTP31169,Europe/Paris,,OET, +OET:SP:31170,1,"RUE CHAPTAL",43.513552,5.238094,0,0,OET:SA:CTP31170,Europe/Paris,,OET, +OET:SP:31171,1,"CAVE COOPERATIVE",43.533651,5.257842,0,0,OET:SA:CTP31171,Europe/Paris,,OET, +OET:SP:31172,1,"P.CEZANNE",43.534646,5.261948,0,0,OET:SA:CTP31172,Europe/Paris,,OET, +OET:SP:31173,1,"SARAH BERNHARDT",43.530548,5.260502,0,0,OET:SA:CTP31173,Europe/Paris,,OET, +OET:SP:31174,1,"COOPERATIVE AGRICOLE",43.532971,5.191093,0,0,OET:SA:CTP31174,Europe/Paris,,OET, +OET:SP:31176,1,"ROUTE DU CHEMIN DE FER",43.454139,5.235243,0,0,OET:SA:CTP30758,Europe/Paris,,OET, +OET:SP:31178,1,"CIMETIERE HAUT",43.519463,5.258019,0,0,OET:SA:CTP31178,Europe/Paris,,OET, +OET:SP:31179,1,"MOULIN A HUILE",43.514929,5.246085,0,0,OET:SA:CTP31179,Europe/Paris,,OET, +OET:SP:31180,1,"JULES ANDRAUD",43.523853,5.259974,0,0,OET:SA:CTP31180,Europe/Paris,,OET, +OET:SP:31185,1,"LES GUIGUES",43.549693,5.179724,0,0,OET:SA:CTP31185,Europe/Paris,,OET, +OET:SP:31186,1,"LES GUIGUES",43.549564,5.179149,0,0,OET:SA:CTP31185,Europe/Paris,,OET, +OET:SP:31187,1,"CHEMIN DES LIMITES",43.534309,5.155238,0,0,OET:SA:CTP31187,Europe/Paris,,OET, +OET:SP:31188,1,"CHEMIN DES LIMITES",43.53496,5.155777,0,0,OET:SA:CTP31187,Europe/Paris,,OET, +OET:SP:31191,1,"SORBIERE",43.414455,5.205628,0,0,OET:SA:CTP31256,Europe/Paris,,OET, +OET:SP:31192,1,"BOLMON",43.415393,5.209918,0,0,OET:SA:CTP31257,Europe/Paris,,OET, +OET:SP:31202,1,"LES ACACIAS",43.385452,5.219206,0,0,OET:SA:CTP31202,Europe/Paris,,OET, +OET:SP:31204,1,"PONT DES CADENEAUX",43.395078,5.342787,0,0,OET:SA:CTP31204,Europe/Paris,,OET, +OET:SP:31205,1,"PONT DES CADENEAUX",43.395198,5.342979,0,0,OET:SA:CTP31204,Europe/Paris,,OET, +OET:SP:31208,1,"FONTBLANCHE - QUAI 3",43.42239,5.286787,0,0,OET:SA:CTP31208,Europe/Paris,,OET, +OET:SP:31209,1,"FONTBLANCHE - QUAI 4",43.422531,5.286893,0,0,OET:SA:CTP31209,Europe/Paris,,OET, +OET:SP:31215,1,"SAINT ANTOINE BERANGER",43.368399,5.356488,0,0,OET:SA:CTP31215,Europe/Paris,,OET, +OET:SP:31216,1,"SAINT ANTOINE BERANGER",43.368479,5.356542,0,0,OET:SA:CTP31215,Europe/Paris,,OET, +OET:SP:31223,1,"LONDRES BRUXELLES",27.140968,-3.404561,0,0,OET:SA:CTP31223,Europe/Paris,,OET, +OET:SP:31227,1,"LES VIGNETTES",43.460772,5.230382,0,0,OET:SA:CTP31227,Europe/Paris,,OET, +OET:SP:31228,1,"PIERRE PLANTEE",43.445901,5.249613,0,0,OET:SA:CTP31228,Europe/Paris,,OET, +OET:SP:31229,1,"ROCHES BLANCHES",43.399305,5.341492,0,0,OET:SA:CTP31041,Europe/Paris,,OET, +OET:SP:31230,1,"ROCHES BLANCHES",43.398949,5.341671,0,0,OET:SA:CTP31041,Europe/Paris,,OET, +OET:SP:31231,1,"ZI NORD",43.498933,5.214769,0,0,OET:SA:CTP31231,Europe/Paris,,OET, +OET:SP:31232,1,"MAIRIE",43.401015,5.340139,0,0,OET:SA:CTP31232,Europe/Paris,,OET, +OET:SP:31233,1,"MAIRIE",43.40077,5.340237,0,0,OET:SA:CTP31232,Europe/Paris,,OET, +OET:SP:31234,1,"Z.I. NORD",43.497919,5.215373,0,0,OET:SA:CTP31234,Europe/Paris,,OET, +OET:SP:31235,1,"CH. DU COUVENT",43.417429,5.223899,0,0,OET:SA:CTP31235,Europe/Paris,,OET, +OET:SP:31236,1,"CH. DU COUVENT",43.417335,5.223388,0,0,OET:SA:CTP31235,Europe/Paris,,OET, +OET:SP:31237,1,"PARC RELAIS PALLIERES",43.415155,5.297777,0,0,OET:SA:CTP31296,Europe/Paris,,OET, +OET:SP:31238,1,"PARC RELAIS PALLIERES",43.415216,5.297841,0,0,OET:SA:CTP31296,Europe/Paris,,OET, +OET:SP:31239,1,"SQUARE DE GAULLE",43.409288,5.322045,0,0,OET:SA:CTP31239,Europe/Paris,,OET, +OET:SP:31240,1,"SQUARE DE GAULLE",43.409168,5.32215,0,0,OET:SA:CTP31239,Europe/Paris,,OET, +OET:SP:31241,1,"CLEMENT ADER",43.50022,5.222148,0,0,OET:SA:CTP31241,Europe/Paris,,OET, +OET:SP:31242,1,"LES PONEYS",43.555345,5.244124,0,0,OET:SA:CTP30679,Europe/Paris,,OET, +OET:SP:31243,1,"ATHENES ROME",43.440446,5.240807,0,0,OET:SA:CTP31243,Europe/Paris,,OET, +OET:SP:31244,1,"AV LAVOISIER",43.498613,5.217656,0,0,OET:SA:CTP31244,Europe/Paris,,OET, +OET:SP:31245,1,"CLEMENT ADER",43.500283,5.222163,0,0,OET:SA:CTP31241,Europe/Paris,,OET, +OET:SP:31246,1,"ATHENES ROME",43.440593,5.240691,0,0,OET:SA:CTP31243,Europe/Paris,,OET, +OET:SP:31247,1,"AV LAVOISIER",43.498549,5.21769,0,0,OET:SA:CTP31244,Europe/Paris,,OET, +OET:SP:31248,1,"DOMAINE DU PLATEAU",43.393563,5.3167,0,0,OET:SA:CTP30852,Europe/Paris,,OET, +OET:SP:31249,1,"ETIENNE RABATU",27.140959,-3.404569,0,0,OET:SA:CTP31249,Europe/Paris,,OET, +OET:SP:31252,1,"BD ST ANTOINE",43.367525,5.356566,0,0,OET:SA:CTP31252,Europe/Paris,,OET, +OET:SP:31253,1,"RELAIS DES CHASSEURS",43.378364,5.330383,0,0,OET:SA:CTP31253,Europe/Paris,,OET, +OET:SP:31254,1,"GENEVOIX / BRASSENS",43.413116,5.204919,0,0,OET:SA:CTP31254,Europe/Paris,,OET, +OET:SP:31255,1,"GENEVOIX / BRASSENS",43.412035,5.204988,0,0,OET:SA:CTP31254,Europe/Paris,,OET, +OET:SP:31256,1,"SORBIERE",43.414431,5.206194,0,0,OET:SA:CTP31256,Europe/Paris,,OET, +OET:SP:31257,1,"BOLMON",43.415507,5.210368,0,0,OET:SA:CTP31257,Europe/Paris,,OET, +OET:SP:31258,1,"BARRELET LIBERATION",43.417479,5.211935,0,0,OET:SA:CTP31258,Europe/Paris,,OET, +OET:SP:31259,1,"BARRELET LIBERATION",43.417618,5.212115,0,0,OET:SA:CTP31258,Europe/Paris,,OET, +OET:SP:31260,1,"LYCEE BLERIOT",43.419163,5.217226,0,0,OET:SA:CTP31260,Europe/Paris,,OET, +OET:SP:31261,1,"LYCEE BLERIOT",43.419095,5.216766,0,0,OET:SA:CTP31261,Europe/Paris,,OET, +OET:SP:31262,1,"PARC CAMOIN - QUAI N°1",43.417402,5.219543,0,0,OET:SA:CTP31262,Europe/Paris,,OET, +OET:SP:31263,1,"COLLEGE PREVERT",43.416301,5.23175,0,0,OET:SA:CTP31263,Europe/Paris,,OET, +OET:SP:31264,1,"COLLEGE PREVERT",43.416252,5.231562,0,0,OET:SA:CTP31263,Europe/Paris,,OET, +OET:SP:31265,1,"CCIAL ST VICTORET",43.417796,5.233343,0,0,OET:SA:CTP31265,Europe/Paris,,OET, +OET:SP:31266,1,"CCIAL ST VICTORET",43.417943,5.233227,0,0,OET:SA:CTP31265,Europe/Paris,,OET, +OET:SP:31267,1,"HOTEL DE VILLE",43.42144,5.232601,0,0,OET:SA:CTP31267,Europe/Paris,,OET, +OET:SP:31268,1,"HOTEL DE VILLE",43.421255,5.232814,0,0,OET:SA:CTP31267,Europe/Paris,,OET, +OET:SP:31269,1,"LONDRES / BRUXELLES",43.429228,5.238276,0,0,OET:SA:CTP31269,Europe/Paris,,OET, +OET:SP:31270,1,"LONDRES / BRUXELLES",43.428788,5.237613,0,0,OET:SA:CTP31269,Europe/Paris,,OET, +OET:SP:31271,1,"VICTOR GELU",43.443085,5.245335,0,0,OET:SA:CTP31271,Europe/Paris,,OET, +OET:SP:31272,1,"VICTOR GELU",43.442756,5.244849,0,0,OET:SA:CTP31271,Europe/Paris,,OET, +OET:SP:31273,1,"MEDIATHEQUE",43.442649,5.252496,0,0,OET:SA:CTP31273,Europe/Paris,,OET, +OET:SP:31274,1,"MEDIATHEQUE",43.442812,5.252455,0,0,OET:SA:CTP31273,Europe/Paris,,OET, +OET:SP:31275,1,"LES PINS / CINEMA",43.439628,5.255106,0,0,OET:SA:CTP31275,Europe/Paris,,OET, +OET:SP:31276,1,"LES PINS / CINEMA",43.439848,5.254982,0,0,OET:SA:CTP31275,Europe/Paris,,OET, +OET:SP:31277,1,"PADOVANI",43.436775,5.257182,0,0,OET:SA:CTP31277,Europe/Paris,,OET, +OET:SP:31278,1,"PADOVANI",43.436919,5.25719,0,0,OET:SA:CTP31277,Europe/Paris,,OET, +OET:SP:31279,1,"ESPACE QUAI 1",43.434254,5.260953,0,0,OET:SA:CTP30071,Europe/Paris,,OET, +OET:SP:31280,1,"ESPACE QUAI 2",43.434549,5.260709,0,0,OET:SA:CTP30071,Europe/Paris,,OET, +OET:SP:31281,1,"BASTIDE BLANCHE",43.431001,5.266155,0,0,OET:SA:CTP31281,Europe/Paris,,OET, +OET:SP:31282,1,"BASTIDE BLANCHE",43.431289,5.266157,0,0,OET:SA:CTP31281,Europe/Paris,,OET, +OET:SP:31283,1,"GRIFFON CLINIQUE",43.427234,5.270774,0,0,OET:SA:CTP31283,Europe/Paris,,OET, +OET:SP:31284,1,"GRIFFON CLINIQUE",43.427458,5.272094,0,0,OET:SA:CTP31283,Europe/Paris,,OET, +OET:SP:31285,1,"LYCEE MONNET",43.424186,5.271395,0,0,OET:SA:CTP31285,Europe/Paris,,OET, +OET:SP:31286,1,"LYCEE MONNET",43.424411,5.271715,0,0,OET:SA:CTP31285,Europe/Paris,,OET, +OET:SP:31287,1,"COLLEGE CLAUDEL",43.423463,5.274505,0,0,OET:SA:CTP31287,Europe/Paris,,OET, +OET:SP:31288,1,"COLLEGE CLAUDEL",43.423536,5.274471,0,0,OET:SA:CTP31287,Europe/Paris,,OET, +OET:SP:31289,1,"MAIRIE QUARTIERS SUD",43.42607,5.280141,0,0,OET:SA:CTP31289,Europe/Paris,,OET, +OET:SP:31290,1,"MAIRIE QUARTIERS SUD",43.42611,5.279995,0,0,OET:SA:CTP31289,Europe/Paris,,OET, +OET:SP:31291,1,"LE REPOS",43.424746,5.282529,0,0,OET:SA:CTP31291,Europe/Paris,,OET, +OET:SP:31292,1,"LE REPOS",43.425108,5.282128,0,0,OET:SA:CTP31291,Europe/Paris,,OET, +OET:SP:31293,1,"FONTBLANCHE - QUAI N°1",43.422261,5.286238,0,0,OET:SA:CTP31293,Europe/Paris,,OET, +OET:SP:31294,1,"FONTBLANCHE - QUAI N°2",43.422379,5.286219,0,0,OET:SA:CTP31294,Europe/Paris,,OET, +OET:SP:31295,1,"CLOS DE LA CADIERE",43.4178,5.293151,0,0,OET:SA:CTP31295,Europe/Paris,,OET, +OET:SP:31296,1,"PARC RELAIS PALLIERES",43.415216,5.297841,0,0,OET:SA:CTP31296,Europe/Paris,,OET, +OET:SP:31297,1,"LA RENARDIERE",43.41297,5.302043,0,0,OET:SA:CTP31297,Europe/Paris,,OET, +OET:SP:31298,1,"LA RENARDIERE",43.413163,5.301868,0,0,OET:SA:CTP31297,Europe/Paris,,OET, +OET:SP:31299,1,"TUNNEL RD113",43.410971,5.310599,0,0,OET:SA:CTP31299,Europe/Paris,,OET, +OET:SP:31300,1,"TUNNEL RD113",43.411071,5.310555,0,0,OET:SA:CTP31299,Europe/Paris,,OET, +OET:SP:31301,1,"FONT SEGUGNE",43.450529,5.249762,0,0,OET:SA:CTP31301,Europe/Paris,,OET, +OET:SP:31302,1,"FONT SEGUGNE",43.45081,5.249665,0,0,OET:SA:CTP31301,Europe/Paris,,OET, +OET:SP:31303,1,"LES TRIBALLES",27.140968,-3.404561,0,0,OET:SA:CTP30927,Europe/Paris,,OET, +OET:SP:31304,1,"CERCLE LE REPOS",43.419823,5.288259,0,0,OET:SA:CTP30479,Europe/Paris,,OET, +OET:SP:31305,1,"PARC CAMOIN - QUAI N°2",43.41756,5.219699,0,0,OET:SA:CTP31305,Europe/Paris,,OET, +OGE:SP:102054,1,"LA MARELLE",45.280409,5.879104,0,0,OGE:SA:CTP102054,Europe/Paris,,OGE, +OGE:SP:102055,1,"PONT DE BERNIN",45.273759,5.869996,0,0,OGE:SA:CTP5355,Europe/Paris,,OGE, +OGE:SP:102056,1,"8 MAI 1945",45.284025,5.884042,0,0,OGE:SA:CTP102056,Europe/Paris,,OGE, +OGE:SP:102057,1,"MEDIATHEQUE",45.435931,6.026448,0,0,OGE:SA:CTP102057,Europe/Paris,,OGE, +OGE:SP:102058,1,"LEO LAGRANGE",45.279721,5.883105,0,0,OGE:SA:CTP102058,Europe/Paris,,OGE, +OGE:SP:102059,1,"LE CUBE",45.263346,5.867904,0,0,OGE:SA:CTP102059,Europe/Paris,,OGE, +OGE:SP:102060,1,"ECOCENTRE",45.275944,5.887109,0,0,OGE:SA:CTP102060,Europe/Paris,,OGE, +OGE:SP:102062,1,"LA MARELLE",45.280389,5.879105,0,0,OGE:SA:CTP102054,Europe/Paris,,OGE, +OGE:SP:102063,1,"CHARLES DE GAULLE",45.280128,5.8901,0,0,OGE:SA:CTP102063,Europe/Paris,,OGE, +OGE:SP:102065,1,"H.MOISSAN",45.284072,5.886969,0,0,OGE:SA:CTP102065,Europe/Paris,,OGE, +OGE:SP:102066,1,"ESPACE JARGOT",45.278129,5.883437,0,0,OGE:SA:CTP102066,Europe/Paris,,OGE, +OGE:SP:102067,1,"ESPACE JARGOT",45.278131,5.883422,0,0,OGE:SA:CTP102066,Europe/Paris,,OGE, +OGE:SP:102068,1,"CENTRE NAUTIQUE INTERCOMMUNAL",45.276175,5.896542,0,0,OGE:SA:CTP102068,Europe/Paris,,OGE, +OGE:SP:102069,1,"TEISSEIRE",45.272382,5.886756,0,0,OGE:SA:CTP102069,Europe/Paris,,OGE, +OGE:SP:102070,1,"CHARLES DE GAULLE",45.280138,5.890092,0,0,OGE:SA:CTP102063,Europe/Paris,,OGE, +OGE:SP:102071,1,"ECOCENTRE",45.275953,5.887113,0,0,OGE:SA:CTP102060,Europe/Paris,,OGE, +OGE:SP:102072,1,"8 MAI 1945",45.284085,5.884213,0,0,OGE:SA:CTP102056,Europe/Paris,,OGE, +OGE:SP:102073,1,"H.MOISSAN",45.284068,5.886958,0,0,OGE:SA:CTP102065,Europe/Paris,,OGE, +OGE:SP:102074,1,"TEISSEIRE",45.272152,5.887614,0,0,OGE:SA:CTP102069,Europe/Paris,,OGE, +OGE:SP:102075,1,"LE CUBE A",45.26334,5.867891,0,0,OGE:SA:CTP102075,Europe/Paris,,OGE, +OGE:SP:102076,1,"MEDIATHEQUE",45.436025,6.02647,0,0,OGE:SA:CTP102057,Europe/Paris,,OGE, +OGE:SP:102077,1,"Z.I.LE RAFOUR CROIZAT",45.2698,5.892604,0,0,OGE:SA:CTP5488,Europe/Paris,,OGE, +OGE:SP:102078,1,"LEO LAGRANGE",45.279725,5.883068,0,0,OGE:SA:CTP102058,Europe/Paris,,OGE, +OGE:SP:102079,1,"VILLAGE D ENTREPRISES",45.43758,6.009799,0,0,OGE:SA:CTP102079,Europe/Paris,,OGE, +OGE:SP:103072,1,"VILLAGE D ENTREPRISES",45.437515,6.009825,0,0,OGE:SA:CTP102079,Europe/Paris,,OGE, +OGE:SP:103094,1,"BESSEY",45.39113,6.081485,0,0,OGE:SA:CTP103094,Europe/Paris,,OGE, +OGE:SP:103095,1,"GUILLET",45.397621,6.085005,0,0,OGE:SA:CTP103095,Europe/Paris,,OGE, +OGE:SP:103096,1,"GRANDE ILE CATERPILLAR",45.231926,5.871363,0,0,OGE:SA:CTP13477,Europe/Paris,,OGE, +OGE:SP:103101,1,"MUSEE JADIS",45.392388,6.075826,0,0,OGE:SA:CTP103101,Europe/Paris,,OGE, +OGE:SP:103103,1,"LES PANISSIERES",45.383815,6.085635,0,0,OGE:SA:CTP103103,Europe/Paris,,OGE, +OGE:SP:103104,1,"BELLE AUX AIRES",45.287688,5.987951,0,0,OGE:SA:CTP103104,Europe/Paris,,OGE, +OGE:SP:103110,1,"ST MAXIMIN LA COMBE",45.429227,6.026881,0,0,OGE:SA:CTP103110,Europe/Paris,,OGE, +OGE:SP:103111,1,"ST MAXIMIN LA COMBE",45.429241,6.026578,0,0,OGE:SA:CTP103110,Europe/Paris,,OGE, +OGE:SP:103112,1,"AVALLON",45.4309,6.034751,0,0,OGE:SA:CTP103112,Europe/Paris,,OGE, +OGE:SP:103113,1,"AVALLON",45.430831,6.034906,0,0,OGE:SA:CTP103112,Europe/Paris,,OGE, +OGE:SP:103114,1,"LES BRUNS",45.431888,6.048224,0,0,OGE:SA:CTP103114,Europe/Paris,,OGE, +OGE:SP:103115,1,"LES BRUNS",45.431838,6.04821,0,0,OGE:SA:CTP103114,Europe/Paris,,OGE, +OGE:SP:103116,1,"RIPPELETS",45.433278,6.050243,0,0,OGE:SA:CTP103116,Europe/Paris,,OGE, +OGE:SP:103117,1,"RIPPELETS",45.433194,6.050056,0,0,OGE:SA:CTP103116,Europe/Paris,,OGE, +OGE:SP:103118,1,"BRETONNIERES",45.43731,6.056737,0,0,OGE:SA:CTP103118,Europe/Paris,,OGE, +OGE:SP:103119,1,"BRETONNIERES",45.437377,6.056825,0,0,OGE:SA:CTP103118,Europe/Paris,,OGE, +OGE:SP:103120,1,"GENDARMERIE",45.395127,6.072336,0,0,OGE:SA:CTP103120,Europe/Paris,,OGE, +OGE:SP:103121,1,"GENDARMERIE",45.395167,6.072332,0,0,OGE:SA:CTP103120,Europe/Paris,,OGE, +OGE:SP:103122,1,"AVENUE DE SAVOIE",45.396786,6.078085,0,0,OGE:SA:CTP103122,Europe/Paris,,OGE, +OGE:SP:103123,1,"LA SCIERIE",45.211468,5.895391,0,0,OGE:SA:CTP103123,Europe/Paris,,OGE, +OGE:SP:103125,1,"ESAT",45.304101,5.911396,0,0,OGE:SA:CTP103125,Europe/Paris,,OGE, +OGE:SP:103127,1,"AV GENERAL DE GAULLE",45.22495,5.798485,0,0,OGE:SA:CTP103127,Europe/Paris,,OGE, +OGE:SP:103128,1,"AV GENERAL DE GAULLE",45.225011,5.798583,0,0,OGE:SA:CTP103127,Europe/Paris,,OGE, +OGE:SP:103129,1,"MONTBONNOT LA PISCINE",45.223234,5.803351,0,0,OGE:SA:CTP103129,Europe/Paris,,OGE, +OGE:SP:103130,1,"MONTBONNOT LA PISCINE",45.223151,5.803123,0,0,OGE:SA:CTP103129,Europe/Paris,,OGE, +OGE:SP:103131,1,"CHATEAU RANDON",45.242455,5.824955,0,0,OGE:SA:CTP103131,Europe/Paris,,OGE, +OGE:SP:103132,1,"CHATEAU RANDON",45.242267,5.824586,0,0,OGE:SA:CTP103131,Europe/Paris,,OGE, +OGE:SP:103133,1,"CHANTEBOUT",45.226095,5.814567,0,0,OGE:SA:CTP103133,Europe/Paris,,OGE, +OGE:SP:103134,1,"CH DE LA CROIX VERTE",45.220593,5.81114,0,0,OGE:SA:CTP103134,Europe/Paris,,OGE, +OGE:SP:103135,1,"CH DE LA CROIX VERTE",45.220633,5.811096,0,0,OGE:SA:CTP103134,Europe/Paris,,OGE, +OGE:SP:103136,1,"ECOLE DES CHAVANNES",45.223108,5.808449,0,0,OGE:SA:CTP103136,Europe/Paris,,OGE, +OGE:SP:103137,1,"ECOLE DES CHAVANNES",45.223102,5.808461,0,0,OGE:SA:CTP103136,Europe/Paris,,OGE, +OGE:SP:103138,1,"PLEIN SOLEIL",45.222232,5.800058,0,0,OGE:SA:CTP103138,Europe/Paris,,OGE, +OGE:SP:103139,1,"PLEIN SOLEIL",45.22204,5.799557,0,0,OGE:SA:CTP103138,Europe/Paris,,OGE, +OGE:SP:103140,1,"LA DETOURBE",45.223425,5.79369,0,0,OGE:SA:CTP103140,Europe/Paris,,OGE, +OGE:SP:103141,1,"LA DETOURBE",45.22317,5.793226,0,0,OGE:SA:CTP103140,Europe/Paris,,OGE, +OGE:SP:103236,1,"LE SAUZET",45.185047,5.872171,0,0,OGE:SA:CTP103236,Europe/Paris,,OGE, +OGE:SP:103237,1,"LE SAUZET",45.185075,5.872119,0,0,OGE:SA:CTP103236,Europe/Paris,,OGE, +OGE:SP:103238,1,"LE DAVID",45.387081,6.067293,0,0,OGE:SA:CTP7398,Europe/Paris,,OGE, +OGE:SP:103239,1,"LE DAVID",45.387061,6.06736,0,0,OGE:SA:CTP7398,Europe/Paris,,OGE, +OGE:SP:103240,1,"CARREFOUR DU REPLAT",45.161409,5.850888,0,0,OGE:SA:CTP103240,Europe/Paris,,OGE, +OGE:SP:103241,1,"CARREFOUR DU REPLAT",45.161551,5.851009,0,0,OGE:SA:CTP103240,Europe/Paris,,OGE, +OGE:SP:103242,1,"LES VALETS",45.167493,5.858076,0,0,OGE:SA:CTP103242,Europe/Paris,,OGE, +OGE:SP:103243,1,"LOTISSEMENT LA NOYAREY",45.161663,5.842811,0,0,OGE:SA:CTP103243,Europe/Paris,,OGE, +OGE:SP:103245,1,"LE CHEYLAS USINES",45.383802,5.997324,0,0,OGE:SA:CTP13449,Europe/Paris,,OGE, +OGE:SP:103246,1,"LE MERCIER RD523",45.378201,5.994097,0,0,OGE:SA:CTP103246,Europe/Paris,,OGE, +OGE:SP:103247,1,"HALLE DES SPORTS",45.299824,5.992805,0,0,OGE:SA:CTP103247,Europe/Paris,,OGE, +OGE:SP:103248,1,"LE CHEYLAS MAIRIE - RD523",45.370918,5.990255,0,0,OGE:SA:CTP103248,Europe/Paris,,OGE, +OGE:SP:103249,1,"LA CHENEVARIE",45.176283,5.860913,0,0,OGE:SA:CTP103249,Europe/Paris,,OGE, +OGE:SP:103250,1,"CORPS D URIAGE",45.178151,5.864839,0,0,OGE:SA:CTP103250,Europe/Paris,,OGE, +OGE:SP:103251,1,"ISARDS PATTE DOIE",45.168763,5.864484,0,0,OGE:SA:CTP103251,Europe/Paris,,OGE, +OGE:SP:103252,1,"ISARDS PATTE D OIE",45.168873,5.86486,0,0,OGE:SA:CTP103252,Europe/Paris,,OGE, +OGE:SP:103253,1,"ST NIZIER D URIAGE",45.164093,5.835072,0,0,OGE:SA:CTP103253,Europe/Paris,,OGE, +OGE:SP:103254,1,"ST NIZIER D URIAGE",45.16427,5.83514,0,0,OGE:SA:CTP103253,Europe/Paris,,OGE, +OGE:SP:103255,1,"MEDIPOLE DE SAVOIE",45.545911,5.970555,0,0,OGE:SA:CTP103255,Europe/Paris,,OGE, +OGE:SP:103256,1,"LE TOUVET LE MOLLARD",45.355939,5.94711,0,0,OGE:SA:CTP103256,Europe/Paris,,OGE, +OGE:SP:103257,1,"LE TOUVET LE MOLLARD",45.35596,5.947113,0,0,OGE:SA:CTP103256,Europe/Paris,,OGE, +OGE:SP:103258,1,"ALLIBERT TREKKING",45.468191,5.992992,0,0,OGE:SA:CTP103258,Europe/Paris,,OGE, +OGE:SP:103271,1,"LE ROZAT",45.255696,5.833793,0,0,OGE:SA:CTP103271,Europe/Paris,,OGE, +OGE:SP:103272,1,"LA PEREREE",45.19009,5.841037,0,0,OGE:SA:CTP103272,Europe/Paris,,OGE, +OGE:SP:103273,1,"LE ROCHAREY",45.174972,5.870556,0,0,OGE:SA:CTP103273,Europe/Paris,,OGE, +OGE:SP:103274,1,"LE PINET D URIAGE",45.165238,5.848993,0,0,OGE:SA:CTP103274,Europe/Paris,,OGE, +OGE:SP:103275,1,"LE PENET",45.158716,5.848369,0,0,OGE:SA:CTP103275,Europe/Paris,,OGE, +OGE:SP:103276,1,"HAUTES VUES",45.163003,5.839527,0,0,OGE:SA:CTP103276,Europe/Paris,,OGE, +OGE:SP:103277,1,"GARE",45.184907,5.785354,0,0,OGE:SA:CTP103277,Europe/Paris,,OGE, +OGE:SP:103278,1,"LE VILLAGE",45.185799,5.86903,0,0,OGE:SA:CTP103278,Europe/Paris,,OGE, +OGE:SP:103279,1,"LE VILLAGE",45.185821,5.869019,0,0,OGE:SA:CTP103278,Europe/Paris,,OGE, +OGE:SP:103280,1,"LE TOUVET LA CHARRIERE",45.358851,5.948389,0,0,OGE:SA:CTP103280,Europe/Paris,,OGE, +OGE:SP:103281,1,"LE TOUVET LA CHARRIERE",45.359705,5.948307,0,0,OGE:SA:CTP103280,Europe/Paris,,OGE, +OGE:SP:103282,1,"RUE DES NOYERS",45.470356,5.991242,0,0,OGE:SA:CTP103282,Europe/Paris,,OGE, +OGE:SP:103283,1,"AVENUE DE SAVOIE",45.439779,6.029333,0,0,OGE:SA:CTP103283,Europe/Paris,,OGE, +OGE:SP:103284,1,"PONTCHARRA - AVENUE DE SAVOIE",45.440401,6.029682,0,0,OGE:SA:CTP103284,Europe/Paris,,OGE, +OGE:SP:103307,1,"LE ROZAT",45.255729,5.833768,0,0,OGE:SA:CTP103271,Europe/Paris,,OGE, +OGE:SP:103360,1,"COLLEGE GRESIVAUDAN - RD 1090",45.240238,5.820807,0,0,OGE:SA:CTP103360,Europe/Paris,,OGE, +OGE:SP:103362,1,"LYCEE HORTICOLE - PARKING",45.239517,5.825045,0,0,OGE:SA:CTP103362,Europe/Paris,,OGE, +OGE:SP:103363,1,"LE COLLET D ALLEVARD",45.393729,6.107469,0,0,OGE:SA:CTP103363,Europe/Paris,,OGE, +OGE:SP:103364,1,"LYCEE P. DU TERRAIL - BREDA",45.43712,6.016556,0,0,OGE:SA:CTP103364,Europe/Paris,,OGE, +OGE:SP:103365,1,"LE VILLARD",45.466915,5.981447,0,0,OGE:SA:CTP8119,Europe/Paris,,OGE, +OGE:SP:103366,1,"LE FRENET",45.21884,5.93912,0,0,OGE:SA:CTP103366,Europe/Paris,,OGE, +OGE:SP:103367,1,"VAUGELAS HAUT",45.242542,5.965233,0,0,OGE:SA:CTP103367,Europe/Paris,,OGE, +OGE:SP:103368,1,"VAUGELAS HAUT",45.242498,5.965233,0,0,OGE:SA:CTP103367,Europe/Paris,,OGE, +OGE:SP:12003,1,"ST BERNARD EGLISE",45.328372,5.903558,0,0,OGE:SA:CTP12003,Europe/Paris,,OGE, +OGE:SP:12005,1,"ST BERNARD EGLISE",45.328326,5.903545,0,0,OGE:SA:CTP12003,Europe/Paris,,OGE, +OGE:SP:12029,1,"LE RIVET",45.239199,5.835191,0,0,OGE:SA:CTP12029,Europe/Paris,,OGE, +OGE:SP:12031,1,"LE RIVET",45.239179,5.835196,0,0,OGE:SA:CTP12029,Europe/Paris,,OGE, +OGE:SP:12066,1,"NORBERT SEGARD CNET",45.209088,5.795057,0,0,OGE:SA:CTP12066,Europe/Paris,,OGE, +OGE:SP:12068,1,"NORBERT SEGARD CNET",45.209286,5.794582,0,0,OGE:SA:CTP12066,Europe/Paris,,OGE, +OGE:SP:12072,1,"BUSSEROLLES",45.208846,5.797468,0,0,OGE:SA:CTP12072,Europe/Paris,,OGE, +OGE:SP:12075,1,"BUSSEROLLES",45.208819,5.797685,0,0,OGE:SA:CTP12072,Europe/Paris,,OGE, +OGE:SP:13132,1,"PLAN POUCET",45.431864,6.12147,0,0,OGE:SA:CTP13132,Europe/Paris,,OGE, +OGE:SP:13134,1,"PLAN POUCET",45.431842,6.121498,0,0,OGE:SA:CTP13132,Europe/Paris,,OGE, +OGE:SP:13437,1,"COLLEGE FLAVIUS VAUS",45.400022,6.077123,0,0,OGE:SA:CTP13437,Europe/Paris,,OGE, +OGE:SP:13438,1,"COLLEGE FLAVIUS VAUS",45.400017,6.077136,0,0,OGE:SA:CTP13437,Europe/Paris,,OGE, +OGE:SP:13439,1,"ECOLES-PLEIADE",45.393495,6.069988,0,0,OGE:SA:CTP13439,Europe/Paris,,OGE, +OGE:SP:13440,1,"ECOLES-PLEIADE",45.393704,6.070092,0,0,OGE:SA:CTP13439,Europe/Paris,,OGE, +OGE:SP:13441,1,"CHATEAU",45.399818,5.977939,0,0,OGE:SA:CTP13441,Europe/Paris,,OGE, +OGE:SP:13442,1,"CHATEAU",45.399797,5.977891,0,0,OGE:SA:CTP13441,Europe/Paris,,OGE, +OGE:SP:13449,1,"LE CHEYLAS USINES",45.383781,5.997137,0,0,OGE:SA:CTP13449,Europe/Paris,,OGE, +OGE:SP:13459,1,"AV CHAMPOLLION LIDL",45.42198,6.0044,0,0,OGE:SA:CTP13459,Europe/Paris,,OGE, +OGE:SP:13460,1,"AV CHAMPOLLION LIDL",45.421952,6.004422,0,0,OGE:SA:CTP13459,Europe/Paris,,OGE, +OGE:SP:13461,1,"AV CHAMPOLLION RENA",45.431002,6.004915,0,0,OGE:SA:CTP13461,Europe/Paris,,OGE, +OGE:SP:13462,1,"AV CHAMPOLLION RENA",45.430966,6.005018,0,0,OGE:SA:CTP13461,Europe/Paris,,OGE, +OGE:SP:13463,1,"AVENUE DU GRANIER",45.43921,6.019922,0,0,OGE:SA:CTP13463,Europe/Paris,,OGE, +OGE:SP:13464,1,"AVENUE DU GRANIER",45.439262,6.019475,0,0,OGE:SA:CTP13463,Europe/Paris,,OGE, +OGE:SP:13465,1,"JACQUES VAUCANSON",45.427436,6.004744,0,0,OGE:SA:CTP13465,Europe/Paris,,OGE, +OGE:SP:13466,1,"JACQUES VAUCANSON",45.427023,6.005212,0,0,OGE:SA:CTP13465,Europe/Paris,,OGE, +OGE:SP:13467,1,"LYCEE AV DE LA GARE",45.433045,6.01568,0,0,OGE:SA:CTP13467,Europe/Paris,,OGE, +OGE:SP:13468,1,"LYCEE AV DE LA GARE",45.433051,6.015933,0,0,OGE:SA:CTP13467,Europe/Paris,,OGE, +OGE:SP:13469,1,"RESIDENCES BAYARD",45.438374,6.014075,0,0,OGE:SA:CTP13469,Europe/Paris,,OGE, +OGE:SP:13470,1,"RESIDENCES BAYARD",45.438418,6.014069,0,0,OGE:SA:CTP13469,Europe/Paris,,OGE, +OGE:SP:13471,1,"RUE DU GRESIVAUDAN",45.436529,6.022937,0,0,OGE:SA:CTP13471,Europe/Paris,,OGE, +OGE:SP:13472,1,"RUE DU GRESIVAUDAN",45.436586,6.022877,0,0,OGE:SA:CTP13471,Europe/Paris,,OGE, +OGE:SP:13477,1,"GRANDE ILE CATERPILLAR",45.231994,5.871353,0,0,OGE:SA:CTP13477,Europe/Paris,,OGE, +OGE:SP:14972,1,"LES CHABERTS",45.36703,5.988466,0,0,OGE:SA:CTP14972,Europe/Paris,,OGE, +OGE:SP:14973,1,"LES CHABERTS",45.367322,5.988707,0,0,OGE:SA:CTP14972,Europe/Paris,,OGE, +OGE:SP:14974,1,"LE CARNIVAL LANCELOT",45.254075,5.949282,0,0,OGE:SA:CTP14974,Europe/Paris,,OGE, +OGE:SP:14975,1,"LE CARNIVAL LANCELOT",45.25406,5.949303,0,0,OGE:SA:CTP14974,Europe/Paris,,OGE, +OGE:SP:14976,1,"LA TAILLAT",45.247978,5.954347,0,0,OGE:SA:CTP14976,Europe/Paris,,OGE, +OGE:SP:14977,1,"LA TAILLAT",45.247978,5.954326,0,0,OGE:SA:CTP14976,Europe/Paris,,OGE, +OGE:SP:15047,1,"LES AVONS 2",45.263969,5.9648,0,0,OGE:SA:CTP15047,Europe/Paris,,OGE, +OGE:SP:15051,1,"LE TOUVET GENDARMERIE",45.357682,5.953937,0,0,OGE:SA:CTP15051,Europe/Paris,,OGE, +OGE:SP:15052,1,"LE TOUVET GENDARMERIE",45.357663,5.954065,0,0,OGE:SA:CTP15051,Europe/Paris,,OGE, +OGE:SP:15094,1,"LA TOUR DU TREUIL",45.404261,6.071053,0,0,OGE:SA:CTP15094,Europe/Paris,,OGE, +OGE:SP:15095,1,"LA TOUR DU TREUIL",45.404252,6.071041,0,0,OGE:SA:CTP15094,Europe/Paris,,OGE, +OGE:SP:15096,1,"LE GLAPIGNEUX",45.408757,6.073942,0,0,OGE:SA:CTP15096,Europe/Paris,,OGE, +OGE:SP:15097,1,"LE GLAPIGNEUX",45.408744,6.07395,0,0,OGE:SA:CTP15096,Europe/Paris,,OGE, +OGE:SP:15098,1,"LE MOLLARD",45.406743,6.073846,0,0,OGE:SA:CTP15098,Europe/Paris,,OGE, +OGE:SP:15099,1,"LE MOLLARD",45.406737,6.073846,0,0,OGE:SA:CTP15098,Europe/Paris,,OGE, +OGE:SP:15100,1,"PONT DU BENS",45.437598,6.116655,0,0,OGE:SA:CTP15100,Europe/Paris,,OGE, +OGE:SP:15101,1,"REVIT",45.429291,6.100084,0,0,OGE:SA:CTP15101,Europe/Paris,,OGE, +OGE:SP:15102,1,"REVIT",45.429297,6.100071,0,0,OGE:SA:CTP15101,Europe/Paris,,OGE, +OGE:SP:15108,1,"PLANCHAMPS",45.372291,6.022213,0,0,OGE:SA:CTP15108,Europe/Paris,,OGE, +OGE:SP:15168,1,"LE VIEUX MANEGE",45.265317,5.964989,0,0,OGE:SA:CTP15168,Europe/Paris,,OGE, +OGE:SP:15169,1,"PATTE D OIE",45.411534,5.980687,0,0,OGE:SA:CTP15169,Europe/Paris,,OGE, +OGE:SP:15170,1,"PATTE D OIE",45.411546,5.98067,0,0,OGE:SA:CTP15169,Europe/Paris,,OGE, +OGE:SP:15171,1,"LES VIGNASSES",45.393194,6.009038,0,0,OGE:SA:CTP15171,Europe/Paris,,OGE, +OGE:SP:15172,1,"LES VIGNASSES",45.393208,6.009039,0,0,OGE:SA:CTP15171,Europe/Paris,,OGE, +OGE:SP:15176,1,"TRANSFO",45.244922,5.848458,0,0,OGE:SA:CTP15176,Europe/Paris,,OGE, +OGE:SP:15437,1,"ECOLE CESAR TERRIER",45.430816,6.02345,0,0,OGE:SA:CTP15437,Europe/Paris,,OGE, +OGE:SP:16049,1,"SORT VILL. ST MICHEL",45.352135,5.915895,0,0,OGE:SA:CTP6388,Europe/Paris,,OGE, +OGE:SP:16070,1,"LA TREILLE",45.437433,6.025074,0,0,OGE:SA:CTP16070,Europe/Paris,,OGE, +OGE:SP:16071,1,"LE CLOS DU MARS",45.240391,5.852672,0,0,OGE:SA:CTP16071,Europe/Paris,,OGE, +OGE:SP:16072,1,"LE CLOS DU MARS",45.240395,5.852664,0,0,OGE:SA:CTP16071,Europe/Paris,,OGE, +OGE:SP:16073,1,"DOUSSAGNE",45.304009,5.99036,0,0,OGE:SA:CTP16073,Europe/Paris,,OGE, +OGE:SP:16074,1,"DOUSSAGNE",45.304009,5.99036,0,0,OGE:SA:CTP16073,Europe/Paris,,OGE, +OGE:SP:3806,1,"ECOLES",45.184763,5.866953,0,0,OGE:SA:CTP3806,Europe/Paris,,OGE, +OGE:SP:3808,1,"ECOLES",45.184762,5.866977,0,0,OGE:SA:CTP3806,Europe/Paris,,OGE, +OGE:SP:3818,1,"LA FONTAINE",45.193701,5.853755,0,0,OGE:SA:CTP3818,Europe/Paris,,OGE, +OGE:SP:3820,1,"LA FONTAINE",45.193712,5.853761,0,0,OGE:SA:CTP3818,Europe/Paris,,OGE, +OGE:SP:3822,1,"LA SARRAZINE",45.196277,5.868544,0,0,OGE:SA:CTP3822,Europe/Paris,,OGE, +OGE:SP:3824,1,"LA SARRAZINE",45.196252,5.868567,0,0,OGE:SA:CTP3822,Europe/Paris,,OGE, +OGE:SP:3829,1,"MAIRIE",45.202385,5.838073,0,0,OGE:SA:CTP3829,Europe/Paris,,OGE, +OGE:SP:3831,1,"MAIRIE",45.202363,5.838159,0,0,OGE:SA:CTP3829,Europe/Paris,,OGE, +OGE:SP:3834,1,"LES ARNAUDS",45.206645,5.84793,0,0,OGE:SA:CTP3834,Europe/Paris,,OGE, +OGE:SP:3837,1,"LES ARNAUDS",45.206898,5.847919,0,0,OGE:SA:CTP3834,Europe/Paris,,OGE, +OGE:SP:3845,1,"LA BOURGEAT",45.187076,5.867677,0,0,OGE:SA:CTP3845,Europe/Paris,,OGE, +OGE:SP:3847,1,"LA BOURGEAT",45.18706,5.867613,0,0,OGE:SA:CTP3845,Europe/Paris,,OGE, +OGE:SP:3859,1,"LA CHARRIERE",45.213106,5.859055,0,0,OGE:SA:CTP3859,Europe/Paris,,OGE, +OGE:SP:3861,1,"LA CHARRIERE",45.213042,5.859017,0,0,OGE:SA:CTP3859,Europe/Paris,,OGE, +OGE:SP:3863,1,"L USINE",45.208641,5.851275,0,0,OGE:SA:CTP3863,Europe/Paris,,OGE, +OGE:SP:3865,1,"L USINE",45.208377,5.85095,0,0,OGE:SA:CTP3863,Europe/Paris,,OGE, +OGE:SP:3871,1,"LES VERNES",45.207292,5.834003,0,0,OGE:SA:CTP3871,Europe/Paris,,OGE, +OGE:SP:3872,1,"LES VERNES",45.207177,5.833934,0,0,OGE:SA:CTP3871,Europe/Paris,,OGE, +OGE:SP:3881,1,"LE PRIEURE",45.204543,5.836154,0,0,OGE:SA:CTP3881,Europe/Paris,,OGE, +OGE:SP:3882,1,"LE PRIEURE",45.204901,5.835746,0,0,OGE:SA:CTP3881,Europe/Paris,,OGE, +OGE:SP:3890,1,"BAUDONNIERE",45.213438,5.808194,0,0,OGE:SA:CTP3890,Europe/Paris,,OGE, +OGE:SP:3892,1,"BAUDONNIERE",45.213521,5.80815,0,0,OGE:SA:CTP3890,Europe/Paris,,OGE, +OGE:SP:3898,1,"ST JEAN LE VIEUX LA MONTA",45.209552,5.86644,0,0,OGE:SA:CTP3898,Europe/Paris,,OGE, +OGE:SP:3900,1,"ST JEAN LE VIEUX LA MONTA",45.209557,5.866409,0,0,OGE:SA:CTP3898,Europe/Paris,,OGE, +OGE:SP:3915,1,"RENE CASSIN",45.204563,5.844247,0,0,OGE:SA:CTP3915,Europe/Paris,,OGE, +OGE:SP:3919,1,"RENE CASSIN",45.204244,5.843762,0,0,OGE:SA:CTP3915,Europe/Paris,,OGE, +OGE:SP:3931,1,"LE MAS JULIEN",45.212326,5.897874,0,0,OGE:SA:CTP3931,Europe/Paris,,OGE, +OGE:SP:3933,1,"LE MAS JULIEN",45.212328,5.897976,0,0,OGE:SA:CTP3931,Europe/Paris,,OGE, +OGE:SP:3939,1,"LE GEYMOND",45.190232,5.884567,0,0,OGE:SA:CTP3939,Europe/Paris,,OGE, +OGE:SP:3941,1,"LE GEYMOND",45.19023,5.884535,0,0,OGE:SA:CTP3939,Europe/Paris,,OGE, +OGE:SP:3946,1,"LE RIF",45.206175,5.87847,0,0,OGE:SA:CTP3946,Europe/Paris,,OGE, +OGE:SP:3948,1,"LE RIF",45.206179,5.878515,0,0,OGE:SA:CTP3946,Europe/Paris,,OGE, +OGE:SP:3950,1,"JEAN LE VIEUX - LE MOLLARD",45.208905,5.873583,0,0,OGE:SA:CTP3950,Europe/Paris,,OGE, +OGE:SP:3952,1,"ST JEAN LE VIEUX LE MOLLARD",45.208964,5.873542,0,0,OGE:SA:CTP3950,Europe/Paris,,OGE, +OGE:SP:3954,1,"LES JACQUETS",45.185348,5.878229,0,0,OGE:SA:CTP3954,Europe/Paris,,OGE, +OGE:SP:3956,1,"LES JACQUETS",45.185346,5.87824,0,0,OGE:SA:CTP3954,Europe/Paris,,OGE, +OGE:SP:3958,1,"CHARRIERES NEUVES",45.187148,5.881305,0,0,OGE:SA:CTP3958,Europe/Paris,,OGE, +OGE:SP:3962,1,"LES FAURES",45.182571,5.880098,0,0,OGE:SA:CTP3962,Europe/Paris,,OGE, +OGE:SP:3964,1,"LES FAURES",45.182352,5.880349,0,0,OGE:SA:CTP3962,Europe/Paris,,OGE, +OGE:SP:3966,1,"LE MONT",45.196785,5.873329,0,0,OGE:SA:CTP3966,Europe/Paris,,OGE, +OGE:SP:3968,1,"LE MONT",45.196766,5.873355,0,0,OGE:SA:CTP3966,Europe/Paris,,OGE, +OGE:SP:3970,1,"LES ROUSSETS",45.194009,5.882019,0,0,OGE:SA:CTP3970,Europe/Paris,,OGE, +OGE:SP:3972,1,"LES ROUSSETS",45.194007,5.882023,0,0,OGE:SA:CTP3970,Europe/Paris,,OGE, +OGE:SP:3974,1,"ST JEAN LE VIEUX EGLISE",45.211898,5.88167,0,0,OGE:SA:CTP3974,Europe/Paris,,OGE, +OGE:SP:3977,1,"LE NAYSORD",45.206233,5.882454,0,0,OGE:SA:CTP3977,Europe/Paris,,OGE, +OGE:SP:3979,1,"LE NAYSORD",45.206239,5.882449,0,0,OGE:SA:CTP3977,Europe/Paris,,OGE, +OGE:SP:3985,1,"LE COUVAT",45.208943,5.877811,0,0,OGE:SA:CTP3985,Europe/Paris,,OGE, +OGE:SP:3987,1,"LE COUVAT",45.208901,5.87782,0,0,OGE:SA:CTP3985,Europe/Paris,,OGE, +OGE:SP:3989,1,"L ISLE",45.208669,5.88273,0,0,OGE:SA:CTP3989,Europe/Paris,,OGE, +OGE:SP:3991,1,"L ISLE",45.208659,5.882696,0,0,OGE:SA:CTP3989,Europe/Paris,,OGE, +OGE:SP:4485,1,"LA POSTE",45.226445,5.80267,0,0,OGE:SA:CTP4485,Europe/Paris,,OGE, +OGE:SP:4520,1,"PRE MILLET",45.221557,5.812804,0,0,OGE:SA:CTP4520,Europe/Paris,,OGE, +OGE:SP:4522,1,"PRE MILLET",45.222002,5.813244,0,0,OGE:SA:CTP4520,Europe/Paris,,OGE, +OGE:SP:4526,1,"LE TARTAIX",45.228871,5.817546,0,0,OGE:SA:CTP4526,Europe/Paris,,OGE, +OGE:SP:4540,1,"CROIX VERTE",45.219118,5.810154,0,0,OGE:SA:CTP4540,Europe/Paris,,OGE, +OGE:SP:4542,1,"CROIX VERTE",45.219131,5.810362,0,0,OGE:SA:CTP4540,Europe/Paris,,OGE, +OGE:SP:4544,1,"INRIA",45.2176,5.807552,0,0,OGE:SA:CTP4544,Europe/Paris,,OGE, +OGE:SP:4546,1,"INRIA",45.217393,5.807299,0,0,OGE:SA:CTP4544,Europe/Paris,,OGE, +OGE:SP:4554,1,"ST ISMIER LA BATIE",45.239214,5.850726,0,0,OGE:SA:CTP4554,Europe/Paris,,OGE, +OGE:SP:4556,1,"ST ISMIER LA BATIE",45.239207,5.85071,0,0,OGE:SA:CTP4554,Europe/Paris,,OGE, +OGE:SP:4558,1,"ST ISMIER GARE",45.246116,5.831294,0,0,OGE:SA:CTP4558,Europe/Paris,,OGE, +OGE:SP:4560,1,"ST ISMIER GARE",45.245893,5.831013,0,0,OGE:SA:CTP4558,Europe/Paris,,OGE, +OGE:SP:4562,1,"LES MILLETS",45.253913,5.824445,0,0,OGE:SA:CTP4562,Europe/Paris,,OGE, +OGE:SP:4564,1,"LES MILLETS",45.253902,5.824464,0,0,OGE:SA:CTP4562,Europe/Paris,,OGE, +OGE:SP:4570,1,"LES VARCIAUX",45.254233,5.83522,0,0,OGE:SA:CTP4570,Europe/Paris,,OGE, +OGE:SP:4572,1,"LES VARCIAUX",45.254246,5.83523,0,0,OGE:SA:CTP4570,Europe/Paris,,OGE, +OGE:SP:4574,1,"BOUFFIERE",45.262352,5.832369,0,0,OGE:SA:CTP4574,Europe/Paris,,OGE, +OGE:SP:4576,1,"BOUFFIERE",45.26236,5.8323,0,0,OGE:SA:CTP4574,Europe/Paris,,OGE, +OGE:SP:4578,1,"LE MANIVAL",45.260816,5.831709,0,0,OGE:SA:CTP4578,Europe/Paris,,OGE, +OGE:SP:4580,1,"LE MANIVAL",45.260857,5.831747,0,0,OGE:SA:CTP4578,Europe/Paris,,OGE, +OGE:SP:4586,1,"DENT DE CROLLES",45.246672,5.830949,0,0,OGE:SA:CTP4586,Europe/Paris,,OGE, +OGE:SP:4587,1,"DENT DE CROLLES",45.246571,5.830944,0,0,OGE:SA:CTP4586,Europe/Paris,,OGE, +OGE:SP:4589,1,"LE MEMORIAL",45.254179,5.840466,0,0,OGE:SA:CTP4589,Europe/Paris,,OGE, +OGE:SP:4590,1,"LE MEMORIAL",45.254072,5.840003,0,0,OGE:SA:CTP4589,Europe/Paris,,OGE, +OGE:SP:4593,1,"GEYDAN GENISSIEUX",45.251759,5.8233,0,0,OGE:SA:CTP4593,Europe/Paris,,OGE, +OGE:SP:4595,1,"GEYDAN GENISSIEUX",45.251767,5.823285,0,0,OGE:SA:CTP4593,Europe/Paris,,OGE, +OGE:SP:4597,1,"CHEMIN DES BOUTS",45.254356,5.829374,0,0,OGE:SA:CTP4597,Europe/Paris,,OGE, +OGE:SP:4599,1,"CHEMIN DES BOUTS",45.254353,5.829363,0,0,OGE:SA:CTP4597,Europe/Paris,,OGE, +OGE:SP:4605,1,"LOT. LABIS",45.257593,5.833096,0,0,OGE:SA:CTP4605,Europe/Paris,,OGE, +OGE:SP:4607,1,"LOT. LABIS",45.257568,5.833094,0,0,OGE:SA:CTP4605,Europe/Paris,,OGE, +OGE:SP:4609,1,"LE MOULIN",45.242032,5.848317,0,0,OGE:SA:CTP4609,Europe/Paris,,OGE, +OGE:SP:4611,1,"LE MOULIN",45.24202,5.848375,0,0,OGE:SA:CTP4609,Europe/Paris,,OGE, +OGE:SP:4619,1,"COLLEGE GRESIVAUDAN - PARKING",45.24075,5.821193,0,0,OGE:SA:CTP4619,Europe/Paris,,OGE, +OGE:SP:4621,1,"LES EYMES RD 1090",45.256034,5.84639,0,0,OGE:SA:CTP4621,Europe/Paris,,OGE, +OGE:SP:4623,1,"LES EYMES RD 1090",45.256343,5.84727,0,0,OGE:SA:CTP4621,Europe/Paris,,OGE, +OGE:SP:4625,1,"LES RATZ",45.258202,5.851163,0,0,OGE:SA:CTP4625,Europe/Paris,,OGE, +OGE:SP:4627,1,"LES RATZ",45.258486,5.851457,0,0,OGE:SA:CTP4625,Europe/Paris,,OGE, +OGE:SP:4629,1,"LE PIAT",45.250664,5.848064,0,0,OGE:SA:CTP4629,Europe/Paris,,OGE, +OGE:SP:4631,1,"LE PIAT",45.250957,5.847245,0,0,OGE:SA:CTP4629,Europe/Paris,,OGE, +OGE:SP:4636,1,"COTE BELLE",45.218277,5.865272,0,0,OGE:SA:CTP4636,Europe/Paris,,OGE, +OGE:SP:4638,1,"COTE BELLE",45.218353,5.865275,0,0,OGE:SA:CTP4636,Europe/Paris,,OGE, +OGE:SP:4640,1,"LE FANGEAT",45.241105,5.840095,0,0,OGE:SA:CTP4640,Europe/Paris,,OGE, +OGE:SP:4642,1,"LE FANGEAT",45.241116,5.84007,0,0,OGE:SA:CTP4640,Europe/Paris,,OGE, +OGE:SP:4648,1,"GRANDES VIGNES",45.250524,5.842896,0,0,OGE:SA:CTP4648,Europe/Paris,,OGE, +OGE:SP:4650,1,"LES MARECHAUX",45.249519,5.835832,0,0,OGE:SA:CTP4650,Europe/Paris,,OGE, +OGE:SP:4651,1,"LES MARECHAUX",45.249884,5.836188,0,0,OGE:SA:CTP4650,Europe/Paris,,OGE, +OGE:SP:4654,1,"ST NAZAIRE LES EYMES GARE",45.250807,5.852521,0,0,OGE:SA:CTP4655,Europe/Paris,,OGE, +OGE:SP:4655,1,"ST NAZAIRE LES EYMES GARE",45.250805,5.852385,0,0,OGE:SA:CTP4655,Europe/Paris,,OGE, +OGE:SP:4657,1,"ST NAZAIRE LES EYMES MAIRIE",45.247052,5.851677,0,0,OGE:SA:CTP4657,Europe/Paris,,OGE, +OGE:SP:4659,1,"ST NAZAIRE LES EYMES MAIRIE",45.246982,5.851626,0,0,OGE:SA:CTP4657,Europe/Paris,,OGE, +OGE:SP:4661,1,"LE LAVORS",45.247014,5.845547,0,0,OGE:SA:CTP4661,Europe/Paris,,OGE, +OGE:SP:4663,1,"LE LAVORS",45.247016,5.845546,0,0,OGE:SA:CTP4661,Europe/Paris,,OGE, +OGE:SP:4665,1,"CHEMIN QUARTALLEES",45.252911,5.831992,0,0,OGE:SA:CTP4665,Europe/Paris,,OGE, +OGE:SP:4666,1,"CHEMIN QUARTALLEES",45.252924,5.832003,0,0,OGE:SA:CTP4665,Europe/Paris,,OGE, +OGE:SP:4668,1,"LA PLACE",45.21616,5.862926,0,0,OGE:SA:CTP4668,Europe/Paris,,OGE, +OGE:SP:4670,1,"LA PLACE",45.215533,5.862228,0,0,OGE:SA:CTP4668,Europe/Paris,,OGE, +OGE:SP:4672,1,"BELLE PLAINE",45.221612,5.868757,0,0,OGE:SA:CTP4672,Europe/Paris,,OGE, +OGE:SP:4674,1,"BELLE PLAINE",45.221098,5.868262,0,0,OGE:SA:CTP4672,Europe/Paris,,OGE, +OGE:SP:4676,1,"LA TRAVERSE",45.250267,5.838081,0,0,OGE:SA:CTP4676,Europe/Paris,,OGE, +OGE:SP:4678,1,"LES PLANTEES",45.242908,5.844294,0,0,OGE:SA:CTP4678,Europe/Paris,,OGE, +OGE:SP:4680,1,"LES PLANTEES",45.242898,5.844275,0,0,OGE:SA:CTP4678,Europe/Paris,,OGE, +OGE:SP:4682,1,"CLOYERES",45.264406,5.879343,0,0,OGE:SA:CTP4682,Europe/Paris,,OGE, +OGE:SP:4684,1,"CLOYERES",45.264456,5.879345,0,0,OGE:SA:CTP4682,Europe/Paris,,OGE, +OGE:SP:4686,1,"LE BUTTIT",45.247017,5.841632,0,0,OGE:SA:CTP4686,Europe/Paris,,OGE, +OGE:SP:4689,1,"LYCEE HORTICOLE",45.239209,5.825091,0,0,OGE:SA:CTP4689,Europe/Paris,,OGE, +OGE:SP:4691,1,"LYCEE HORTICOLE",45.239321,5.82493,0,0,OGE:SA:CTP4689,Europe/Paris,,OGE, +OGE:SP:4695,1,"LES SEMAISES",45.232305,5.821338,0,0,OGE:SA:CTP4695,Europe/Paris,,OGE, +OGE:SP:4697,1,"PRE DE L EAU",45.224155,5.818022,0,0,OGE:SA:CTP4697,Europe/Paris,,OGE, +OGE:SP:4699,1,"PRE DE L EAU",45.223983,5.819363,0,0,OGE:SA:CTP4697,Europe/Paris,,OGE, +OGE:SP:4703,1,"LA COMBE DE LANCEY - LE VILLARD",45.221378,5.902096,0,0,OGE:SA:CTP4703,Europe/Paris,,OGE, +OGE:SP:4705,1,"LA COMBE DE LANCEY - LE VILLARD",45.22138,5.902106,0,0,OGE:SA:CTP4703,Europe/Paris,,OGE, +OGE:SP:4711,1,"LE PETIT CHATEAU",45.221242,5.897458,0,0,OGE:SA:CTP4711,Europe/Paris,,OGE, +OGE:SP:4713,1,"LE PETIT CHATEAU",45.221225,5.89746,0,0,OGE:SA:CTP4711,Europe/Paris,,OGE, +OGE:SP:4715,1,"LE MAS LA RUE",45.2312,5.896972,0,0,OGE:SA:CTP4715,Europe/Paris,,OGE, +OGE:SP:4717,1,"LE MAS LA RUE",45.231222,5.896985,0,0,OGE:SA:CTP4715,Europe/Paris,,OGE, +OGE:SP:4719,1,"LE MAS MONTACOL",45.232633,5.894285,0,0,OGE:SA:CTP4719,Europe/Paris,,OGE, +OGE:SP:4721,1,"LE MAS MONTACOL",45.232635,5.894286,0,0,OGE:SA:CTP4719,Europe/Paris,,OGE, +OGE:SP:4723,1,"LE BONNAT",45.254064,5.931444,0,0,OGE:SA:CTP4723,Europe/Paris,,OGE, +OGE:SP:4725,1,"LE BONNAT",45.254001,5.931493,0,0,OGE:SA:CTP4723,Europe/Paris,,OGE, +OGE:SP:4727,1,"MAIRIE",45.252552,5.93225,0,0,OGE:SA:CTP4727,Europe/Paris,,OGE, +OGE:SP:4729,1,"MAIRIE",45.252479,5.932258,0,0,OGE:SA:CTP4727,Europe/Paris,,OGE, +OGE:SP:4735,1,"LA COMBE DE LANCEY - LE MONT",45.224113,5.903166,0,0,OGE:SA:CTP4735,Europe/Paris,,OGE, +OGE:SP:4737,1,"LA COMBE DE LANCEY - LE MONT",45.22413,5.903213,0,0,OGE:SA:CTP4735,Europe/Paris,,OGE, +OGE:SP:4739,1,"LES ECHARRAS",45.218048,5.897692,0,0,OGE:SA:CTP4739,Europe/Paris,,OGE, +OGE:SP:4741,1,"LES ECHARRAS",45.218051,5.897668,0,0,OGE:SA:CTP4739,Europe/Paris,,OGE, +OGE:SP:4743,1,"VILLARD D EN BAS",45.22058,5.8992,0,0,OGE:SA:CTP4743,Europe/Paris,,OGE, +OGE:SP:4744,1,"VILLARD D EN BAS",45.220592,5.899187,0,0,OGE:SA:CTP4743,Europe/Paris,,OGE, +OGE:SP:4746,1,"LA COMBE LA CHAPELLE",45.225541,5.898078,0,0,OGE:SA:CTP4746,Europe/Paris,,OGE, +OGE:SP:4748,1,"LA COMBE LA CHAPELLE",45.225549,5.898162,0,0,OGE:SA:CTP4746,Europe/Paris,,OGE, +OGE:SP:4750,1,"LE MAS VANNIER",45.218536,5.893267,0,0,OGE:SA:CTP4750,Europe/Paris,,OGE, +OGE:SP:4751,1,"LE MAS VANNIER",45.218548,5.893263,0,0,OGE:SA:CTP4750,Europe/Paris,,OGE, +OGE:SP:4753,1,"ECOLE DE STE AGNES",45.237805,5.921396,0,0,OGE:SA:CTP4753,Europe/Paris,,OGE, +OGE:SP:4755,1,"ECOLE DE STE AGNES",45.237801,5.921424,0,0,OGE:SA:CTP4753,Europe/Paris,,OGE, +OGE:SP:4757,1,"LA VILLE",45.235405,5.925725,0,0,OGE:SA:CTP4757,Europe/Paris,,OGE, +OGE:SP:4759,1,"LA VILLE",45.235347,5.92593,0,0,OGE:SA:CTP4757,Europe/Paris,,OGE, +OGE:SP:4761,1,"LE CHOLET",45.216829,5.930858,0,0,OGE:SA:CTP4761,Europe/Paris,,OGE, +OGE:SP:4763,1,"LE CHOLET",45.216824,5.930816,0,0,OGE:SA:CTP4761,Europe/Paris,,OGE, +OGE:SP:4765,1,"LE MAS LARY",45.214157,5.893071,0,0,OGE:SA:CTP4765,Europe/Paris,,OGE, +OGE:SP:4767,1,"LE MAS LARY",45.214198,5.893006,0,0,OGE:SA:CTP4765,Europe/Paris,,OGE, +OGE:SP:4770,1,"CARREFOUR PRELONG",45.216006,5.931753,0,0,OGE:SA:CTP4770,Europe/Paris,,OGE, +OGE:SP:4772,1,"CARREFOUR PRELONG",45.216007,5.93174,0,0,OGE:SA:CTP4770,Europe/Paris,,OGE, +OGE:SP:4775,1,"ST MURY CIMETIERE",45.22537,5.92753,0,0,OGE:SA:CTP4775,Europe/Paris,,OGE, +OGE:SP:4777,1,"ST MURY CIMETIERE",45.225702,5.926702,0,0,OGE:SA:CTP4775,Europe/Paris,,OGE, +OGE:SP:4779,1,"LA MADONE",45.246783,5.896012,0,0,OGE:SA:CTP4779,Europe/Paris,,OGE, +OGE:SP:4781,1,"LA MADONE",45.246347,5.895635,0,0,OGE:SA:CTP4779,Europe/Paris,,OGE, +OGE:SP:4783,1,"VORS",45.244374,5.89419,0,0,OGE:SA:CTP4783,Europe/Paris,,OGE, +OGE:SP:4785,1,"VORS",45.244392,5.894124,0,0,OGE:SA:CTP4783,Europe/Paris,,OGE, +OGE:SP:4787,1,"LA MAIRIE",45.238304,5.888287,0,0,OGE:SA:CTP4787,Europe/Paris,,OGE, +OGE:SP:4789,1,"LA MAIRIE",45.238357,5.888214,0,0,OGE:SA:CTP4787,Europe/Paris,,OGE, +OGE:SP:4791,1,"LA POLOGNE",45.236592,5.885871,0,0,OGE:SA:CTP4791,Europe/Paris,,OGE, +OGE:SP:4793,1,"LA POLOGNE",45.236459,5.885573,0,0,OGE:SA:CTP4791,Europe/Paris,,OGE, +OGE:SP:4795,1,"LA GENDARMERIE",45.240937,5.89101,0,0,OGE:SA:CTP4795,Europe/Paris,,OGE, +OGE:SP:4797,1,"LA GENDARMERIE",45.241049,5.891011,0,0,OGE:SA:CTP4795,Europe/Paris,,OGE, +OGE:SP:4799,1,"L EGLISE",45.223492,5.926882,0,0,OGE:SA:CTP4799,Europe/Paris,,OGE, +OGE:SP:4801,1,"L EGLISE",45.22356,5.92689,0,0,OGE:SA:CTP4799,Europe/Paris,,OGE, +OGE:SP:4803,1,"LA FAURE",45.230279,5.933752,0,0,OGE:SA:CTP4803,Europe/Paris,,OGE, +OGE:SP:4805,1,"LA FAURE",45.230294,5.933759,0,0,OGE:SA:CTP4803,Europe/Paris,,OGE, +OGE:SP:4807,1,"BRIGNOUD PLACE",45.259297,5.909272,0,0,OGE:SA:CTP4807,Europe/Paris,,OGE, +OGE:SP:4809,1,"BRIGNOUD PLACE",45.258588,5.908598,0,0,OGE:SA:CTP4807,Europe/Paris,,OGE, +OGE:SP:4811,1,"LE SABOT",45.253464,5.903053,0,0,OGE:SA:CTP4811,Europe/Paris,,OGE, +OGE:SP:4813,1,"LE SABOT",45.253043,5.902529,0,0,OGE:SA:CTP4811,Europe/Paris,,OGE, +OGE:SP:4815,1,"LE MAS N° 2",45.238915,5.916194,0,0,OGE:SA:CTP4815,Europe/Paris,,OGE, +OGE:SP:4817,1,"LE MAS N° 2",45.238909,5.916198,0,0,OGE:SA:CTP4815,Europe/Paris,,OGE, +OGE:SP:4819,1,"STE AGNES LE MOLLARD",45.235332,5.934657,0,0,OGE:SA:CTP4819,Europe/Paris,,OGE, +OGE:SP:4821,1,"STE AGNES LE MOLLARD",45.235336,5.934667,0,0,OGE:SA:CTP4819,Europe/Paris,,OGE, +OGE:SP:4823,1,"MAIS.D ARGOUD AU RIF",45.231755,5.932653,0,0,OGE:SA:CTP4823,Europe/Paris,,OGE, +OGE:SP:4825,1,"MAIS.D ARGOUD AU RIF",45.231771,5.932666,0,0,OGE:SA:CTP4823,Europe/Paris,,OGE, +OGE:SP:4827,1,"LANCEY",45.233664,5.881937,0,0,OGE:SA:CTP4827,Europe/Paris,,OGE, +OGE:SP:4829,1,"LANCEY",45.233499,5.881723,0,0,OGE:SA:CTP4827,Europe/Paris,,OGE, +OGE:SP:4831,1,"LA PALLUD MATERNELLE",45.220565,5.928066,0,0,OGE:SA:CTP4831,Europe/Paris,,OGE, +OGE:SP:4833,1,"LA PALLUD MATERNELLE",45.220548,5.928107,0,0,OGE:SA:CTP4831,Europe/Paris,,OGE, +OGE:SP:4838,1,"LYCEE M. REYNOARD - PARKING",45.250563,5.899008,0,0,OGE:SA:CTP4838,Europe/Paris,,OGE, +OGE:SP:4840,1,"CITE DES ROSES",45.230534,5.87834,0,0,OGE:SA:CTP4840,Europe/Paris,,OGE, +OGE:SP:4842,1,"CITE DES ROSES",45.229377,5.877156,0,0,OGE:SA:CTP4840,Europe/Paris,,OGE, +OGE:SP:4844,1,"STE AGNES LA BOURGEAT",45.241822,5.911331,0,0,OGE:SA:CTP4844,Europe/Paris,,OGE, +OGE:SP:4846,1,"STE AGNES LA BOURGEAT",45.241817,5.91144,0,0,OGE:SA:CTP4844,Europe/Paris,,OGE, +OGE:SP:4848,1,"LE FAY",45.226408,5.934702,0,0,OGE:SA:CTP4848,Europe/Paris,,OGE, +OGE:SP:4850,1,"LE FAY",45.226392,5.934603,0,0,OGE:SA:CTP4848,Europe/Paris,,OGE, +OGE:SP:4853,1,"BRIGNOUD CENTRE",45.256971,5.906834,0,0,OGE:SA:CTP4853,Europe/Paris,,OGE, +OGE:SP:4855,1,"BRIGNOUD CENTRE",45.256995,5.90676,0,0,OGE:SA:CTP4853,Europe/Paris,,OGE, +OGE:SP:4857,1,"STE AGNES LA GORGE",45.213724,5.933997,0,0,OGE:SA:CTP4857,Europe/Paris,,OGE, +OGE:SP:4859,1,"STE AGNES LA GORGE",45.21374,5.93401,0,0,OGE:SA:CTP4857,Europe/Paris,,OGE, +OGE:SP:4861,1,"CITE NOUVELLE",45.226979,5.874515,0,0,OGE:SA:CTP4861,Europe/Paris,,OGE, +OGE:SP:4863,1,"CITE NOUVELLE",45.226818,5.874423,0,0,OGE:SA:CTP4861,Europe/Paris,,OGE, +OGE:SP:4865,1,"PONT DE PRUNEY",45.225546,5.87305,0,0,OGE:SA:CTP4865,Europe/Paris,,OGE, +OGE:SP:4867,1,"PONT DE PRUNEY",45.225034,5.872419,0,0,OGE:SA:CTP4865,Europe/Paris,,OGE, +OGE:SP:4869,1,"LES GRANDS CHAMPS",45.235619,5.930592,0,0,OGE:SA:CTP4869,Europe/Paris,,OGE, +OGE:SP:4871,1,"LES GRANDS CHAMPS",45.235629,5.930582,0,0,OGE:SA:CTP4869,Europe/Paris,,OGE, +OGE:SP:4873,1,"LANCEY SNCF",45.234332,5.881137,0,0,OGE:SA:CTP4873,Europe/Paris,,OGE, +OGE:SP:4875,1,"LANCEY SNCF",45.234329,5.881128,0,0,OGE:SA:CTP4873,Europe/Paris,,OGE, +OGE:SP:4878,1,"LE BANC",45.218836,5.926266,0,0,OGE:SA:CTP4878,Europe/Paris,,OGE, +OGE:SP:4879,1,"LE BANC",45.218813,5.926243,0,0,OGE:SA:CTP4878,Europe/Paris,,OGE, +OGE:SP:4881,1,"LYCEE RD.523",45.250307,5.899682,0,0,OGE:SA:CTP4881,Europe/Paris,,OGE, +OGE:SP:4883,1,"LYCEE RD.523",45.250252,5.899384,0,0,OGE:SA:CTP4881,Europe/Paris,,OGE, +OGE:SP:4885,1,"LE MAS VIEUX",45.227225,5.923309,0,0,OGE:SA:CTP4885,Europe/Paris,,OGE, +OGE:SP:4886,1,"LE MAS VIEUX",45.227236,5.923325,0,0,OGE:SA:CTP4885,Europe/Paris,,OGE, +OGE:SP:4888,1,"LES COCHARDS",45.230614,5.918497,0,0,OGE:SA:CTP4888,Europe/Paris,,OGE, +OGE:SP:4889,1,"LES COCHARDS",45.230607,5.918512,0,0,OGE:SA:CTP4888,Europe/Paris,,OGE, +OGE:SP:4891,1,"COLLEGE BELLEDONNE - PARKING",45.245469,5.897173,0,0,OGE:SA:CTP4891,Europe/Paris,,OGE, +OGE:SP:4895,1,"PAPETERIES",45.234311,5.887154,0,0,OGE:SA:CTP4895,Europe/Paris,,OGE, +OGE:SP:4897,1,"PAPETERIES",45.234309,5.887144,0,0,OGE:SA:CTP4895,Europe/Paris,,OGE, +OGE:SP:4899,1,"LA BOUTIERE",45.238642,5.973853,0,0,OGE:SA:CTP4899,Europe/Paris,,OGE, +OGE:SP:4901,1,"LA BOUTIERE",45.238638,5.973847,0,0,OGE:SA:CTP4899,Europe/Paris,,OGE, +OGE:SP:4903,1,"PRABERT",45.250606,5.972506,0,0,OGE:SA:CTP4903,Europe/Paris,,OGE, +OGE:SP:4905,1,"PRABERT",45.250678,5.972511,0,0,OGE:SA:CTP4903,Europe/Paris,,OGE, +OGE:SP:4907,1,"LE MOLLARD",45.254912,5.942219,0,0,OGE:SA:CTP4907,Europe/Paris,,OGE, +OGE:SP:4909,1,"LE MOLLARD",45.254893,5.942181,0,0,OGE:SA:CTP4907,Europe/Paris,,OGE, +OGE:SP:4911,1,"LE FUZIER",45.251996,5.963308,0,0,OGE:SA:CTP4911,Europe/Paris,,OGE, +OGE:SP:4913,1,"LE FUZIER",45.251995,5.963218,0,0,OGE:SA:CTP4911,Europe/Paris,,OGE, +OGE:SP:4915,1,"PRAPOUTEL PATTE D OIE",45.253094,5.992143,0,0,OGE:SA:CTP4915,Europe/Paris,,OGE, +OGE:SP:4917,1,"PRAPOUTEL PATTE D OIE",45.253085,5.992151,0,0,OGE:SA:CTP4915,Europe/Paris,,OGE, +OGE:SP:4921,1,"LE PLANEYSSARD ECOLE",45.24608,5.96754,0,0,OGE:SA:CTP4921,Europe/Paris,,OGE, +OGE:SP:4923,1,"LE PLANEYSSARD ECOLE",45.246134,5.967589,0,0,OGE:SA:CTP4921,Europe/Paris,,OGE, +OGE:SP:4925,1,"PRAPOUTEL GDARMERIE",45.256746,5.993209,0,0,OGE:SA:CTP4925,Europe/Paris,,OGE, +OGE:SP:4927,1,"PRAPOUTEL GDARMERIE",45.256752,5.993217,0,0,OGE:SA:CTP4925,Europe/Paris,,OGE, +OGE:SP:4929,1,"LE CARNIVAL",45.254173,5.955351,0,0,OGE:SA:CTP4929,Europe/Paris,,OGE, +OGE:SP:4931,1,"LE CARNIVAL",45.254173,5.955448,0,0,OGE:SA:CTP4929,Europe/Paris,,OGE, +OGE:SP:4933,1,"LE FAY N°2",45.222279,5.937311,0,0,OGE:SA:CTP4933,Europe/Paris,,OGE, +OGE:SP:4935,1,"LE FAY N°2",45.222267,5.937273,0,0,OGE:SA:CTP4933,Europe/Paris,,OGE, +OGE:SP:4937,1,"LES GENIEVRES",45.257846,5.976374,0,0,OGE:SA:CTP4937,Europe/Paris,,OGE, +OGE:SP:4939,1,"LES GENIEVRES",45.257869,5.976368,0,0,OGE:SA:CTP4937,Europe/Paris,,OGE, +OGE:SP:4941,1,"VAUGELAS",45.244217,5.963384,0,0,OGE:SA:CTP4941,Europe/Paris,,OGE, +OGE:SP:4943,1,"VAUGELAS",45.244229,5.963348,0,0,OGE:SA:CTP4941,Europe/Paris,,OGE, +OGE:SP:4945,1,"LA PERRIERE",45.235092,5.941164,0,0,OGE:SA:CTP4945,Europe/Paris,,OGE, +OGE:SP:4946,1,"LA PERRIERE",45.234966,5.941236,0,0,OGE:SA:CTP4945,Europe/Paris,,OGE, +OGE:SP:4948,1,"EPINGLE LA PERRIERE",45.236882,5.942588,0,0,OGE:SA:CTP4948,Europe/Paris,,OGE, +OGE:SP:4950,1,"EPINGLE LA PERRIERE",45.236829,5.942519,0,0,OGE:SA:CTP4948,Europe/Paris,,OGE, +OGE:SP:5355,1,"PONT DE BERNIN",45.273976,5.870104,0,0,OGE:SA:CTP5355,Europe/Paris,,OGE, +OGE:SP:5359,1,"VILLAGE",45.270507,5.867563,0,0,OGE:SA:CTP5359,Europe/Paris,,OGE, +OGE:SP:5361,1,"VILLAGE",45.270543,5.867475,0,0,OGE:SA:CTP5359,Europe/Paris,,OGE, +OGE:SP:5363,1,"LA CROIX DES AYES",45.277256,5.873053,0,0,OGE:SA:CTP5363,Europe/Paris,,OGE, +OGE:SP:5365,1,"LA CROIX DES AYES",45.277328,5.87324,0,0,OGE:SA:CTP5363,Europe/Paris,,OGE, +OGE:SP:5370,1,"ST PANCRASSE LA MAIRIE",45.29135,5.858981,0,0,OGE:SA:CTP5370,Europe/Paris,,OGE, +OGE:SP:5372,1,"ST PANCRASSE LA MAIRIE",45.291338,5.859256,0,0,OGE:SA:CTP5370,Europe/Paris,,OGE, +OGE:SP:5374,1,"CROIX DES VARVOUX",45.26613,5.861625,0,0,OGE:SA:CTP5374,Europe/Paris,,OGE, +OGE:SP:5376,1,"CROIX DES VARVOUX",45.266091,5.861947,0,0,OGE:SA:CTP5374,Europe/Paris,,OGE, +OGE:SP:5378,1,"P.T.T.",45.269063,5.867948,0,0,OGE:SA:CTP5378,Europe/Paris,,OGE, +OGE:SP:5380,1,"P.T.T.",45.269057,5.867954,0,0,OGE:SA:CTP5378,Europe/Paris,,OGE, +OGE:SP:5382,1,"VARVOUX LE BAS",45.264443,5.864239,0,0,OGE:SA:CTP5382,Europe/Paris,,OGE, +OGE:SP:5384,1,"VARVOUX LE BAS",45.264454,5.864249,0,0,OGE:SA:CTP5382,Europe/Paris,,OGE, +OGE:SP:5394,1,"LES VARVOUX",45.263958,5.859026,0,0,OGE:SA:CTP5394,Europe/Paris,,OGE, +OGE:SP:5396,1,"LES VARVOUX",45.263798,5.858735,0,0,OGE:SA:CTP5394,Europe/Paris,,OGE, +OGE:SP:5398,1,"LES MEUNIERES",45.290078,5.851292,0,0,OGE:SA:CTP5398,Europe/Paris,,OGE, +OGE:SP:5400,1,"LES MEUNIERES",45.290121,5.85121,0,0,OGE:SA:CTP5398,Europe/Paris,,OGE, +OGE:SP:5402,1,"LES GRANDES CITES",45.300299,5.870299,0,0,OGE:SA:CTP5402,Europe/Paris,,OGE, +OGE:SP:5404,1,"LES GRANDES CITES",45.300298,5.870274,0,0,OGE:SA:CTP5402,Europe/Paris,,OGE, +OGE:SP:5406,1,"LES MARGAINS",45.301198,5.873269,0,0,OGE:SA:CTP5406,Europe/Paris,,OGE, +OGE:SP:5408,1,"LES MARGAINS",45.301412,5.873791,0,0,OGE:SA:CTP5406,Europe/Paris,,OGE, +OGE:SP:5410,1,"LES REVOLEYS",45.267198,5.865896,0,0,OGE:SA:CTP5410,Europe/Paris,,OGE, +OGE:SP:5412,1,"LES REVOLEYS",45.267185,5.865908,0,0,OGE:SA:CTP5410,Europe/Paris,,OGE, +OGE:SP:5414,1,"LE COTEAU",45.295891,5.896789,0,0,OGE:SA:CTP5414,Europe/Paris,,OGE, +OGE:SP:5417,1,"LE COTEAU",45.29544,5.896547,0,0,OGE:SA:CTP5414,Europe/Paris,,OGE, +OGE:SP:5422,1,"COLLEGE S.BEAUVOIR",45.278437,5.878645,0,0,OGE:SA:CTP5422,Europe/Paris,,OGE, +OGE:SP:5424,1,"ST MICROELECTRONICS",45.267023,5.884665,0,0,OGE:SA:CTP5424,Europe/Paris,,OGE, +OGE:SP:5426,1,"ST MICROELECTRONICS",45.266815,5.884153,0,0,OGE:SA:CTP5424,Europe/Paris,,OGE, +OGE:SP:5432,1,"ECOLE PERF. GUYNEMER",45.260787,5.91118,0,0,OGE:SA:CTP5432,Europe/Paris,,OGE, +OGE:SP:5434,1,"ECOLE PERF. GUYNEMER",45.260774,5.911203,0,0,OGE:SA:CTP5432,Europe/Paris,,OGE, +OGE:SP:5436,1,"LE BOCCARD",45.261878,5.921141,0,0,OGE:SA:CTP5436,Europe/Paris,,OGE, +OGE:SP:5438,1,"LE BOCCARD",45.261872,5.921188,0,0,OGE:SA:CTP5436,Europe/Paris,,OGE, +OGE:SP:5440,1,"PRE DU CHENE",45.26645,5.916992,0,0,OGE:SA:CTP5440,Europe/Paris,,OGE, +OGE:SP:5442,1,"PRE DU CHENE",45.266397,5.917022,0,0,OGE:SA:CTP5440,Europe/Paris,,OGE, +OGE:SP:5444,1,"LOT. LA TOUR",45.275821,5.938075,0,0,OGE:SA:CTP5444,Europe/Paris,,OGE, +OGE:SP:5446,1,"LOT. LA TOUR",45.275792,5.938169,0,0,OGE:SA:CTP5444,Europe/Paris,,OGE, +OGE:SP:5456,1,"COQUILLARD",45.272624,5.92374,0,0,OGE:SA:CTP5456,Europe/Paris,,OGE, +OGE:SP:5458,1,"COQUILLARD",45.272144,5.923143,0,0,OGE:SA:CTP5456,Europe/Paris,,OGE, +OGE:SP:5460,1,"CHAMP PRES FROGES - LE MOLLARD",45.282119,5.938851,0,0,OGE:SA:CTP5460,Europe/Paris,,OGE, +OGE:SP:5462,1,"CHAMP PRES FROGES - LE MOLLARD",45.282055,5.938814,0,0,OGE:SA:CTP5460,Europe/Paris,,OGE, +OGE:SP:5464,1,"PIED DE CROLLES",45.288724,5.888816,0,0,OGE:SA:CTP5464,Europe/Paris,,OGE, +OGE:SP:5466,1,"PIED DE CROLLES",45.288837,5.888878,0,0,OGE:SA:CTP5464,Europe/Paris,,OGE, +OGE:SP:5468,1,"MAIRIE",45.284663,5.883719,0,0,OGE:SA:CTP5468,Europe/Paris,,OGE, +OGE:SP:5470,1,"MAIRIE",45.284609,5.883788,0,0,OGE:SA:CTP5468,Europe/Paris,,OGE, +OGE:SP:5472,1,"LA GARE",45.308493,5.914772,0,0,OGE:SA:CTP5472,Europe/Paris,,OGE, +OGE:SP:5474,1,"LA GARE",45.308111,5.914081,0,0,OGE:SA:CTP5472,Europe/Paris,,OGE, +OGE:SP:5476,1,"CARREFOUR ZI",45.3041,5.907001,0,0,OGE:SA:CTP5476,Europe/Paris,,OGE, +OGE:SP:5478,1,"CARREFOUR ZI",45.304007,5.906658,0,0,OGE:SA:CTP5476,Europe/Paris,,OGE, +OGE:SP:5480,1,"LE BROCEY STADE",45.280601,5.877503,0,0,OGE:SA:CTP5480,Europe/Paris,,OGE, +OGE:SP:5482,1,"LE BROCEY STADE",45.280808,5.877709,0,0,OGE:SA:CTP5480,Europe/Paris,,OGE, +OGE:SP:5484,1,"LE VILLAGE",45.305744,5.910022,0,0,OGE:SA:CTP5484,Europe/Paris,,OGE, +OGE:SP:5486,1,"LE VILLAGE",45.305797,5.909989,0,0,OGE:SA:CTP5484,Europe/Paris,,OGE, +OGE:SP:5488,1,"Z.I.LE RAFOUR CROIZAT",45.269595,5.893104,0,0,OGE:SA:CTP5488,Europe/Paris,,OGE, +OGE:SP:5492,1,"Z.I.LE RAFOUR MONNET",45.269856,5.891126,0,0,OGE:SA:CTP5492,Europe/Paris,,OGE, +OGE:SP:5494,1,"LANGENET",45.262594,5.925832,0,0,OGE:SA:CTP5494,Europe/Paris,,OGE, +OGE:SP:5495,1,"LANGENET",45.262586,5.925839,0,0,OGE:SA:CTP5494,Europe/Paris,,OGE, +OGE:SP:5497,1,"LE BAS",45.275541,5.926655,0,0,OGE:SA:CTP5497,Europe/Paris,,OGE, +OGE:SP:5499,1,"LE BAS",45.275426,5.926461,0,0,OGE:SA:CTP5497,Europe/Paris,,OGE, +OGE:SP:5501,1,"CHAMPALUD",45.286421,5.936919,0,0,OGE:SA:CTP5501,Europe/Paris,,OGE, +OGE:SP:5503,1,"CHAMPALUD",45.286411,5.937013,0,0,OGE:SA:CTP5501,Europe/Paris,,OGE, +OGE:SP:5505,1,"PTT GARE",45.282917,5.880988,0,0,OGE:SA:CTP5505,Europe/Paris,,OGE, +OGE:SP:5507,1,"PTT GARE",45.283558,5.88212,0,0,OGE:SA:CTP5505,Europe/Paris,,OGE, +OGE:SP:5509,1,"MONTFORT FUNICULAIRE",45.298601,5.899234,0,0,OGE:SA:CTP5509,Europe/Paris,,OGE, +OGE:SP:5511,1,"MONTFORT FUNICULAIRE",45.298878,5.899784,0,0,OGE:SA:CTP5509,Europe/Paris,,OGE, +OGE:SP:5513,1,"POMPIERS",45.275171,5.879848,0,0,OGE:SA:CTP5513,Europe/Paris,,OGE, +OGE:SP:5515,1,"POMPIERS",45.274945,5.880324,0,0,OGE:SA:CTP5513,Europe/Paris,,OGE, +OGE:SP:5517,1,"CITE JARDINS",45.262075,5.91236,0,0,OGE:SA:CTP5517,Europe/Paris,,OGE, +OGE:SP:5519,1,"CITE JARDINS",45.262101,5.912296,0,0,OGE:SA:CTP5517,Europe/Paris,,OGE, +OGE:SP:5525,1,"LES JAURES",45.263039,5.932934,0,0,OGE:SA:CTP5525,Europe/Paris,,OGE, +OGE:SP:5527,1,"LES JAURES",45.263047,5.932933,0,0,OGE:SA:CTP5525,Europe/Paris,,OGE, +OGE:SP:5529,1,"LOT BALC. BELLEDONNE",45.265285,5.931595,0,0,OGE:SA:CTP5529,Europe/Paris,,OGE, +OGE:SP:5531,1,"LOT BALC. BELLEDONNE",45.265303,5.931613,0,0,OGE:SA:CTP5529,Europe/Paris,,OGE, +OGE:SP:5533,1,"ALLEE DES THUYAS",45.266772,5.926172,0,0,OGE:SA:CTP5533,Europe/Paris,,OGE, +OGE:SP:5535,1,"ALLEE DES THUYAS",45.266768,5.926186,0,0,OGE:SA:CTP5533,Europe/Paris,,OGE, +OGE:SP:5537,1,"LE PLANET",45.26353,5.923827,0,0,OGE:SA:CTP5537,Europe/Paris,,OGE, +OGE:SP:5539,1,"LES BOIS",45.266582,5.932307,0,0,OGE:SA:CTP5539,Europe/Paris,,OGE, +OGE:SP:5541,1,"LES BOIS",45.266654,5.932122,0,0,OGE:SA:CTP5539,Europe/Paris,,OGE, +OGE:SP:5543,1,"LE MAZARETIER",45.269298,5.93203,0,0,OGE:SA:CTP5543,Europe/Paris,,OGE, +OGE:SP:5545,1,"LE MAZARETIER",45.26927,5.932029,0,0,OGE:SA:CTP5543,Europe/Paris,,OGE, +OGE:SP:5547,1,"LES VIGNES DE PICHAT",45.269079,5.925142,0,0,OGE:SA:CTP5547,Europe/Paris,,OGE, +OGE:SP:5549,1,"PRE BENOIT",45.302792,5.877562,0,0,OGE:SA:CTP5549,Europe/Paris,,OGE, +OGE:SP:5551,1,"PRE BENOIT",45.302787,5.877565,0,0,OGE:SA:CTP5549,Europe/Paris,,OGE, +OGE:SP:5553,1,"LES GANDINS",45.304204,5.879843,0,0,OGE:SA:CTP5553,Europe/Paris,,OGE, +OGE:SP:5555,1,"LES GANDINS",45.304203,5.879815,0,0,OGE:SA:CTP5553,Europe/Paris,,OGE, +OGE:SP:5557,1,"BRIGNOUD GARE SNCF",45.262733,5.902089,0,0,OGE:SA:CTP5557,Europe/Paris,,OGE, +OGE:SP:5559,1,"BRIGNOUD GARE SNCF",45.262779,5.902168,0,0,OGE:SA:CTP5557,Europe/Paris,,OGE, +OGE:SP:5561,1,"MAS PELIOUD",45.265802,5.936195,0,0,OGE:SA:CTP5561,Europe/Paris,,OGE, +OGE:SP:5563,1,"MAS PELIOUD",45.265808,5.936213,0,0,OGE:SA:CTP5561,Europe/Paris,,OGE, +OGE:SP:5565,1,"LES AYETTES",45.266332,5.924447,0,0,OGE:SA:CTP5565,Europe/Paris,,OGE, +OGE:SP:5567,1,"LES AYETTES",45.266331,5.924429,0,0,OGE:SA:CTP5565,Europe/Paris,,OGE, +OGE:SP:5573,1,"L ENVERS",45.260736,5.967872,0,0,OGE:SA:CTP5573,Europe/Paris,,OGE, +OGE:SP:5575,1,"L ENVERS",45.260744,5.967868,0,0,OGE:SA:CTP5573,Europe/Paris,,OGE, +OGE:SP:5578,1,"ROUTE VIEUX MANEGE",45.265326,5.965009,0,0,OGE:SA:CTP5578,Europe/Paris,,OGE, +OGE:SP:5580,1,"ROUTE VIEUX MANEGE",45.265309,5.964997,0,0,OGE:SA:CTP5578,Europe/Paris,,OGE, +OGE:SP:5582,1,"LES ALPETS",45.267176,5.96298,0,0,OGE:SA:CTP5582,Europe/Paris,,OGE, +OGE:SP:5584,1,"LES ALPETS",45.267176,5.962992,0,0,OGE:SA:CTP5582,Europe/Paris,,OGE, +OGE:SP:5586,1,"LES BARRES",45.272232,5.974234,0,0,OGE:SA:CTP5586,Europe/Paris,,OGE, +OGE:SP:5588,1,"LES BARRES",45.272275,5.97421,0,0,OGE:SA:CTP5586,Europe/Paris,,OGE, +OGE:SP:5590,1,"LE MOULIN DES ADRETS",45.268585,5.968772,0,0,OGE:SA:CTP5590,Europe/Paris,,OGE, +OGE:SP:5592,1,"LE MOULIN DES ADRETS",45.268594,5.968765,0,0,OGE:SA:CTP5590,Europe/Paris,,OGE, +OGE:SP:5594,1,"VILLARD CHATEAU",45.270458,5.983018,0,0,OGE:SA:CTP5594,Europe/Paris,,OGE, +OGE:SP:5596,1,"VILLARD CHATEAU",45.270462,5.983039,0,0,OGE:SA:CTP5594,Europe/Paris,,OGE, +OGE:SP:5598,1,"POUTAZ BAS",45.264515,5.978251,0,0,OGE:SA:CTP5598,Europe/Paris,,OGE, +OGE:SP:5600,1,"POUTAZ BAS",45.264505,5.978212,0,0,OGE:SA:CTP5598,Europe/Paris,,OGE, +OGE:SP:5602,1,"LES AVONS",45.262289,5.968785,0,0,OGE:SA:CTP5602,Europe/Paris,,OGE, +OGE:SP:5604,1,"LES AVONS",45.262291,5.968786,0,0,OGE:SA:CTP5602,Europe/Paris,,OGE, +OGE:SP:5606,1,"PRES COMMUNAUX N°1",45.273566,5.978765,0,0,OGE:SA:CTP5606,Europe/Paris,,OGE, +OGE:SP:5608,1,"PRES COMMUNAUX N°1",45.273583,5.978742,0,0,OGE:SA:CTP5606,Europe/Paris,,OGE, +OGE:SP:5610,1,"PRES COMMUNAUX N°2",45.274263,5.984343,0,0,OGE:SA:CTP5610,Europe/Paris,,OGE, +OGE:SP:5612,1,"PRES COMMUNAUX N°2",45.27428,5.984288,0,0,OGE:SA:CTP5610,Europe/Paris,,OGE, +OGE:SP:5614,1,"LES FOURNELLES",45.264492,5.976296,0,0,OGE:SA:CTP5614,Europe/Paris,,OGE, +OGE:SP:5616,1,"LES FOURNELLES",45.264476,5.976299,0,0,OGE:SA:CTP5614,Europe/Paris,,OGE, +OGE:SP:5618,1,"LA PITROUSE",45.266426,5.979596,0,0,OGE:SA:CTP5618,Europe/Paris,,OGE, +OGE:SP:5620,1,"LA PITROUSE",45.266416,5.979556,0,0,OGE:SA:CTP5618,Europe/Paris,,OGE, +OGE:SP:5622,1,"COL DES AYES",45.274085,5.987092,0,0,OGE:SA:CTP5622,Europe/Paris,,OGE, +OGE:SP:5624,1,"COL DES AYES",45.274158,5.987107,0,0,OGE:SA:CTP5622,Europe/Paris,,OGE, +OGE:SP:5626,1,"LE HAUT",45.288676,5.972451,0,0,OGE:SA:CTP5626,Europe/Paris,,OGE, +OGE:SP:5628,1,"LE HAUT",45.28866,5.972442,0,0,OGE:SA:CTP5626,Europe/Paris,,OGE, +OGE:SP:5630,1,"MAIRIE",45.287706,5.970496,0,0,OGE:SA:CTP5630,Europe/Paris,,OGE, +OGE:SP:5632,1,"MAIRIE",45.287727,5.970505,0,0,OGE:SA:CTP5630,Europe/Paris,,OGE, +OGE:SP:5634,1,"VILLARD BERNARD",45.273411,5.975972,0,0,OGE:SA:CTP5634,Europe/Paris,,OGE, +OGE:SP:5636,1,"VILLARD BERNARD",45.273411,5.976059,0,0,OGE:SA:CTP5634,Europe/Paris,,OGE, +OGE:SP:5638,1,"CHAMP LE HAUT MAIRIE",45.280018,5.940826,0,0,OGE:SA:CTP5638,Europe/Paris,,OGE, +OGE:SP:5640,1,"CHAMP LE HAUT MAIRIE",45.279995,5.940924,0,0,OGE:SA:CTP5638,Europe/Paris,,OGE, +OGE:SP:5642,1,"POUTAZ HAUT",45.262138,5.978524,0,0,OGE:SA:CTP5642,Europe/Paris,,OGE, +OGE:SP:5644,1,"POUTAZ HAUT",45.262145,5.978525,0,0,OGE:SA:CTP5642,Europe/Paris,,OGE, +OGE:SP:5646,1,"LES COMPTES",45.25923,5.968043,0,0,OGE:SA:CTP5646,Europe/Paris,,OGE, +OGE:SP:5648,1,"LES COMPTES",45.259214,5.968047,0,0,OGE:SA:CTP5646,Europe/Paris,,OGE, +OGE:SP:5650,1,"ROUARE",45.267194,5.945632,0,0,OGE:SA:CTP5650,Europe/Paris,,OGE, +OGE:SP:5652,1,"ROUARE",45.267201,5.945628,0,0,OGE:SA:CTP5650,Europe/Paris,,OGE, +OGE:SP:5656,1,"ECOLE LES ADRETS",45.270682,5.965162,0,0,OGE:SA:CTP5656,Europe/Paris,,OGE, +OGE:SP:5659,1,"ECOLE LES ADRETS",45.270761,5.965228,0,0,OGE:SA:CTP5656,Europe/Paris,,OGE, +OGE:SP:5661,1,"PLACE",45.287986,5.969489,0,0,OGE:SA:CTP5661,Europe/Paris,,OGE, +OGE:SP:5663,1,"PLACE",45.287978,5.969482,0,0,OGE:SA:CTP5661,Europe/Paris,,OGE, +OGE:SP:5665,1,"LE LANAT",45.272395,5.979911,0,0,OGE:SA:CTP5665,Europe/Paris,,OGE, +OGE:SP:5666,1,"LE LANAT",45.272388,5.979913,0,0,OGE:SA:CTP5665,Europe/Paris,,OGE, +OGE:SP:5668,1,"ECOLES",45.300239,5.996151,0,0,OGE:SA:CTP5668,Europe/Paris,,OGE, +OGE:SP:5670,1,"ECOLES",45.300241,5.99614,0,0,OGE:SA:CTP5668,Europe/Paris,,OGE, +OGE:SP:5673,1,"LES AYES",45.27689,5.994481,0,0,OGE:SA:CTP5673,Europe/Paris,,OGE, +OGE:SP:5675,1,"PRE SEC",45.304003,5.953777,0,0,OGE:SA:CTP5675,Europe/Paris,,OGE, +OGE:SP:5677,1,"PRE SEC",45.304055,5.953632,0,0,OGE:SA:CTP5675,Europe/Paris,,OGE, +OGE:SP:5679,1,"ROUTE DES GAUTHIERS",45.292444,5.995001,0,0,OGE:SA:CTP5679,Europe/Paris,,OGE, +OGE:SP:5681,1,"ROUTE DES GAUTHIERS",45.292452,5.995006,0,0,OGE:SA:CTP5679,Europe/Paris,,OGE, +OGE:SP:5683,1,"LES GLAPIGNEUX",45.285713,5.997177,0,0,OGE:SA:CTP5683,Europe/Paris,,OGE, +OGE:SP:5686,1,"LES COMBES D EN BAS",45.298366,5.980861,0,0,OGE:SA:CTP5686,Europe/Paris,,OGE, +OGE:SP:5688,1,"LES COMBES D EN BAS",45.298295,5.980867,0,0,OGE:SA:CTP5686,Europe/Paris,,OGE, +OGE:SP:5690,1,"LE BOURGUIGNON",45.298586,5.985471,0,0,OGE:SA:CTP5690,Europe/Paris,,OGE, +OGE:SP:5692,1,"LE BOURGUIGNON",45.298665,5.98418,0,0,OGE:SA:CTP5690,Europe/Paris,,OGE, +OGE:SP:5694,1,"LES BERTS",45.281019,5.990748,0,0,OGE:SA:CTP5694,Europe/Paris,,OGE, +OGE:SP:5696,1,"LES VALLINS",45.284176,5.988688,0,0,OGE:SA:CTP5696,Europe/Paris,,OGE, +OGE:SP:5698,1,"PIERRE HERSE",45.290191,5.995793,0,0,OGE:SA:CTP5698,Europe/Paris,,OGE, +OGE:SP:5700,1,"LES COMBES D EN HAUT",45.297302,5.975645,0,0,OGE:SA:CTP5700,Europe/Paris,,OGE, +OGE:SP:5702,1,"LES COMBES D EN HAUT",45.2973,5.975632,0,0,OGE:SA:CTP5700,Europe/Paris,,OGE, +OGE:SP:5704,1,"CARR. RD 523",45.294933,5.944949,0,0,OGE:SA:CTP5704,Europe/Paris,,OGE, +OGE:SP:5706,1,"CARR. RD 523",45.29479,5.945079,0,0,OGE:SA:CTP5704,Europe/Paris,,OGE, +OGE:SP:5708,1,"LOUTRE",45.286137,5.990002,0,0,OGE:SA:CTP5708,Europe/Paris,,OGE, +OGE:SP:5710,1,"LA TOUR",45.279027,5.995232,0,0,OGE:SA:CTP5710,Europe/Paris,,OGE, +OGE:SP:5712,1,"LA MAISON BLANCHE",45.298258,5.971087,0,0,OGE:SA:CTP5712,Europe/Paris,,OGE, +OGE:SP:5714,1,"LA MAISON BLANCHE",45.298255,5.971091,0,0,OGE:SA:CTP5712,Europe/Paris,,OGE, +OGE:SP:5716,1,"LES FOURNACHES",45.269908,5.987986,0,0,OGE:SA:CTP5716,Europe/Paris,,OGE, +OGE:SP:5718,1,"LES FOURNACHES",45.269915,5.98798,0,0,OGE:SA:CTP5716,Europe/Paris,,OGE, +OGE:SP:5720,1,"LA ROCHE",45.295694,5.995461,0,0,OGE:SA:CTP5720,Europe/Paris,,OGE, +OGE:SP:5722,1,"LA ROCHE",45.295692,5.995468,0,0,OGE:SA:CTP5720,Europe/Paris,,OGE, +OGE:SP:5724,1,"GORGE D OR",45.297409,5.963962,0,0,OGE:SA:CTP5724,Europe/Paris,,OGE, +OGE:SP:5726,1,"GORGE D OR",45.297399,5.963948,0,0,OGE:SA:CTP5724,Europe/Paris,,OGE, +OGE:SP:5728,1,"LES ESSARTS",45.300738,5.967807,0,0,OGE:SA:CTP5728,Europe/Paris,,OGE, +OGE:SP:5730,1,"LES ESSARTS",45.300747,5.967786,0,0,OGE:SA:CTP5728,Europe/Paris,,OGE, +OGE:SP:5732,1,"LES BLETTIERES",45.266784,5.975207,0,0,OGE:SA:CTP5732,Europe/Paris,,OGE, +OGE:SP:5734,1,"LES BLETTIERES",45.266759,5.97511,0,0,OGE:SA:CTP5732,Europe/Paris,,OGE, +OGE:SP:5736,1,"REVEL LA MONTA",45.303979,5.990404,0,0,OGE:SA:CTP5736,Europe/Paris,,OGE, +OGE:SP:5738,1,"REVEL LA MONTA",45.30399,5.990419,0,0,OGE:SA:CTP5736,Europe/Paris,,OGE, +OGE:SP:5740,1,"GLAPIGNEUX DESSOUS",45.286646,5.995816,0,0,OGE:SA:CTP5740,Europe/Paris,,OGE, +OGE:SP:5742,1,"LE PRE",45.272682,5.967609,0,0,OGE:SA:CTP5742,Europe/Paris,,OGE, +OGE:SP:5744,1,"LE PRE",45.272687,5.967781,0,0,OGE:SA:CTP5742,Europe/Paris,,OGE, +OGE:SP:5749,1,"LA MARTINETTE",45.282108,6.073965,0,0,OGE:SA:CTP5749,Europe/Paris,,OGE, +OGE:SP:5751,1,"LA MARTINETTE",45.282093,6.074064,0,0,OGE:SA:CTP5749,Europe/Paris,,OGE, +OGE:SP:5753,1,"FOND DE FRANCE",45.280143,6.074021,0,0,OGE:SA:CTP5753,Europe/Paris,,OGE, +OGE:SP:5755,1,"FOND DE FRANCE",45.280125,6.073923,0,0,OGE:SA:CTP5753,Europe/Paris,,OGE, +OGE:SP:5757,1,"LE PLEYNET",45.273635,6.05726,0,0,OGE:SA:CTP5757,Europe/Paris,,OGE, +OGE:SP:5761,1,"CAMOREL",45.297066,6.079208,0,0,OGE:SA:CTP5761,Europe/Paris,,OGE, +OGE:SP:5763,1,"CAMOREL",45.297085,6.07911,0,0,OGE:SA:CTP5761,Europe/Paris,,OGE, +OGE:SP:5765,1,"LA FERRIERE LA CHAPELLE",45.291381,6.076878,0,0,OGE:SA:CTP5765,Europe/Paris,,OGE, +OGE:SP:5767,1,"LA FERRIERE LA CHAPELLE",45.291367,6.076977,0,0,OGE:SA:CTP5765,Europe/Paris,,OGE, +OGE:SP:5769,1,"LES MILLETS C.V.O.",45.285808,6.074508,0,0,OGE:SA:CTP5769,Europe/Paris,,OGE, +OGE:SP:5771,1,"LES MILLETS C.V.O.",45.285839,6.0746,0,0,OGE:SA:CTP5769,Europe/Paris,,OGE, +OGE:SP:6365,1,"BUISSONNAY",45.310486,5.917263,0,0,OGE:SA:CTP6365,Europe/Paris,,OGE, +OGE:SP:6367,1,"BUISSONNAY",45.310437,5.917336,0,0,OGE:SA:CTP6365,Europe/Paris,,OGE, +OGE:SP:6380,1,"INSTITUT",45.327262,5.934814,0,0,OGE:SA:CTP6380,Europe/Paris,,OGE, +OGE:SP:6382,1,"INSTITUT",45.3273,5.934969,0,0,OGE:SA:CTP6380,Europe/Paris,,OGE, +OGE:SP:6384,1,"LES VIROILLES",45.326648,5.899969,0,0,OGE:SA:CTP6384,Europe/Paris,,OGE, +OGE:SP:6386,1,"LES VIROILLES",45.326682,5.899954,0,0,OGE:SA:CTP6384,Europe/Paris,,OGE, +OGE:SP:6388,1,"SORT VILL. ST MICHEL",45.352151,5.915956,0,0,OGE:SA:CTP6388,Europe/Paris,,OGE, +OGE:SP:6390,1,"HAMEAU ST MICHEL",45.353661,5.917996,0,0,OGE:SA:CTP6390,Europe/Paris,,OGE, +OGE:SP:6392,1,"HAMEAU ST MICHEL",45.353626,5.918086,0,0,OGE:SA:CTP6390,Europe/Paris,,OGE, +OGE:SP:6394,1,"LE PRAYER",45.324894,5.897524,0,0,OGE:SA:CTP6394,Europe/Paris,,OGE, +OGE:SP:6396,1,"LE PRAYER",45.324896,5.897536,0,0,OGE:SA:CTP6394,Europe/Paris,,OGE, +OGE:SP:6398,1,"LE TERRAIL",45.341646,5.904939,0,0,OGE:SA:CTP6398,Europe/Paris,,OGE, +OGE:SP:6400,1,"LE TERRAIL",45.341712,5.904936,0,0,OGE:SA:CTP6398,Europe/Paris,,OGE, +OGE:SP:6402,1,"LE COMBET",45.347046,5.909264,0,0,OGE:SA:CTP6402,Europe/Paris,,OGE, +OGE:SP:6404,1,"LE COMBET",45.347078,5.909244,0,0,OGE:SA:CTP6402,Europe/Paris,,OGE, +OGE:SP:6408,1,"ST BERNARD DU TOUVET - LA BATIE",45.344277,5.905456,0,0,OGE:SA:CTP6408,Europe/Paris,,OGE, +OGE:SP:6410,1,"ST BERNARD DU TOUVET - LA BATIE",45.344223,5.905446,0,0,OGE:SA:CTP6408,Europe/Paris,,OGE, +OGE:SP:6412,1,"LES PELLOUX",45.32986,5.903268,0,0,OGE:SA:CTP6412,Europe/Paris,,OGE, +OGE:SP:6414,1,"LES PELLOUX",45.328851,5.902911,0,0,OGE:SA:CTP6412,Europe/Paris,,OGE, +OGE:SP:6416,1,"LES CHATAINS",45.319046,5.889801,0,0,OGE:SA:CTP6416,Europe/Paris,,OGE, +OGE:SP:6418,1,"LES CHATAINS",45.319029,5.889815,0,0,OGE:SA:CTP6416,Europe/Paris,,OGE, +OGE:SP:6420,1,"LA CROIX DES EYRAUDS",45.31273,5.887424,0,0,OGE:SA:CTP6420,Europe/Paris,,OGE, +OGE:SP:6422,1,"LA CROIX DES EYRAUDS",45.312891,5.887512,0,0,OGE:SA:CTP6420,Europe/Paris,,OGE, +OGE:SP:6424,1,"LA MURE",45.318824,5.926321,0,0,OGE:SA:CTP6424,Europe/Paris,,OGE, +OGE:SP:6426,1,"LA MURE",45.318641,5.926132,0,0,OGE:SA:CTP6424,Europe/Paris,,OGE, +OGE:SP:6428,1,"LE CARRE",45.314682,5.923635,0,0,OGE:SA:CTP6428,Europe/Paris,,OGE, +OGE:SP:6430,1,"LE CARRE",45.314712,5.923494,0,0,OGE:SA:CTP6428,Europe/Paris,,OGE, +OGE:SP:6433,1,"LA TERRASSE MAIRIE",45.322784,5.930162,0,0,OGE:SA:CTP6433,Europe/Paris,,OGE, +OGE:SP:6435,1,"LA TERRASSE MAIRIE",45.322899,5.930194,0,0,OGE:SA:CTP6433,Europe/Paris,,OGE, +OGE:SP:6437,1,"LA DIAT",45.334943,5.902589,0,0,OGE:SA:CTP6437,Europe/Paris,,OGE, +OGE:SP:6439,1,"LA DIAT",45.33496,5.902571,0,0,OGE:SA:CTP6437,Europe/Paris,,OGE, +OGE:SP:6441,1,"MAT. LES GANDINS",45.308023,5.883439,0,0,OGE:SA:CTP6443,Europe/Paris,,OGE, +OGE:SP:6443,1,"MAT. LES GANDINS",45.308009,5.883441,0,0,OGE:SA:CTP6443,Europe/Paris,,OGE, +OGE:SP:6445,1,"LES VIALS",45.315118,5.888137,0,0,OGE:SA:CTP6445,Europe/Paris,,OGE, +OGE:SP:6447,1,"LES VIALS",45.315151,5.888108,0,0,OGE:SA:CTP6445,Europe/Paris,,OGE, +OGE:SP:6449,1,"LES GUILLOTS",45.338663,5.903021,0,0,OGE:SA:CTP6449,Europe/Paris,,OGE, +OGE:SP:6451,1,"LES GUILLOTS",45.338679,5.903024,0,0,OGE:SA:CTP6449,Europe/Paris,,OGE, +OGE:SP:6453,1,"ECOLE DES GAUDES",45.309195,5.886072,0,0,OGE:SA:CTP6453,Europe/Paris,,OGE, +OGE:SP:6455,1,"ECOLE DES GAUDES",45.308922,5.885463,0,0,OGE:SA:CTP6453,Europe/Paris,,OGE, +OGE:SP:6457,1,"LES MASSARDS",45.316977,5.888231,0,0,OGE:SA:CTP6457,Europe/Paris,,OGE, +OGE:SP:6459,1,"LES MASSARDS",45.316987,5.888269,0,0,OGE:SA:CTP6457,Europe/Paris,,OGE, +OGE:SP:6461,1,"LES GAUDES VILLAGE",45.309283,5.88635,0,0,OGE:SA:CTP6461,Europe/Paris,,OGE, +OGE:SP:6465,1,"LA FRETTE",45.338693,5.941964,0,0,OGE:SA:CTP6465,Europe/Paris,,OGE, +OGE:SP:6467,1,"LA FRETTE",45.338777,5.942156,0,0,OGE:SA:CTP6465,Europe/Paris,,OGE, +OGE:SP:6473,1,"LACHAT",45.324265,5.919653,0,0,OGE:SA:CTP6473,Europe/Paris,,OGE, +OGE:SP:6475,1,"LACHAT",45.324259,5.919644,0,0,OGE:SA:CTP6473,Europe/Paris,,OGE, +OGE:SP:6477,1,"LE BURLET",45.324916,5.924891,0,0,OGE:SA:CTP6477,Europe/Paris,,OGE, +OGE:SP:6479,1,"LE BURLET",45.324914,5.92489,0,0,OGE:SA:CTP6477,Europe/Paris,,OGE, +OGE:SP:6481,1,"MONTABON",45.345182,5.933267,0,0,OGE:SA:CTP6481,Europe/Paris,,OGE, +OGE:SP:6483,1,"MONTABON",45.345186,5.93327,0,0,OGE:SA:CTP6481,Europe/Paris,,OGE, +OGE:SP:6488,1,"LA GARE",45.34223,5.974358,0,0,OGE:SA:CTP6488,Europe/Paris,,OGE, +OGE:SP:6490,1,"MONTGALMAND",45.319085,5.972038,0,0,OGE:SA:CTP6490,Europe/Paris,,OGE, +OGE:SP:6492,1,"MONTGALMAND",45.319099,5.972039,0,0,OGE:SA:CTP6490,Europe/Paris,,OGE, +OGE:SP:6494,1,"LA CONCHE",45.3519,5.947253,0,0,OGE:SA:CTP6494,Europe/Paris,,OGE, +OGE:SP:6496,1,"LA CONCHE",45.351908,5.947302,0,0,OGE:SA:CTP6494,Europe/Paris,,OGE, +OGE:SP:6498,1,"VILLARD BOZON",45.332344,5.971396,0,0,OGE:SA:CTP6498,Europe/Paris,,OGE, +OGE:SP:6500,1,"VILLARD BOZON",45.332458,5.971386,0,0,OGE:SA:CTP6498,Europe/Paris,,OGE, +OGE:SP:6506,1,"LE CARRET",45.312441,6.009147,0,0,OGE:SA:CTP6506,Europe/Paris,,OGE, +OGE:SP:6508,1,"LE CARRET",45.312372,6.009163,0,0,OGE:SA:CTP6506,Europe/Paris,,OGE, +OGE:SP:6510,1,"GRANDES TERRES",45.30729,5.956927,0,0,OGE:SA:CTP6510,Europe/Paris,,OGE, +OGE:SP:6512,1,"GRANDES TERRES",45.307482,5.957006,0,0,OGE:SA:CTP6510,Europe/Paris,,OGE, +OGE:SP:6514,1,"LE GRE",45.307096,6.003357,0,0,OGE:SA:CTP6514,Europe/Paris,,OGE, +OGE:SP:6516,1,"LE GRE",45.3071,6.003367,0,0,OGE:SA:CTP6514,Europe/Paris,,OGE, +OGE:SP:6522,1,"LE CLOS DU CEDRE",45.312372,5.961663,0,0,OGE:SA:CTP6522,Europe/Paris,,OGE, +OGE:SP:6524,1,"LE CLOS DU CEDRE",45.312306,5.961655,0,0,OGE:SA:CTP6522,Europe/Paris,,OGE, +OGE:SP:6528,1,"COLLEGE ICARE - PARKING",45.337803,5.974493,0,0,OGE:SA:CTP6528,Europe/Paris,,OGE, +OGE:SP:6530,1,"COLLEGE RD.523",45.337968,5.975082,0,0,OGE:SA:CTP6530,Europe/Paris,,OGE, +OGE:SP:6532,1,"COLLEGE RD.523",45.337976,5.975208,0,0,OGE:SA:CTP6530,Europe/Paris,,OGE, +OGE:SP:6534,1,"LA COCHE",45.323712,6.023578,0,0,OGE:SA:CTP6534,Europe/Paris,,OGE, +OGE:SP:6535,1,"LA COCHE",45.323693,6.023591,0,0,OGE:SA:CTP6534,Europe/Paris,,OGE, +OGE:SP:6537,1,"LA CASSEY",45.347435,6.040271,0,0,OGE:SA:CTP6537,Europe/Paris,,OGE, +OGE:SP:6539,1,"LA CASSEY",45.347425,6.04029,0,0,OGE:SA:CTP6537,Europe/Paris,,OGE, +OGE:SP:6541,1,"LES VINCENTS",45.321432,6.018335,0,0,OGE:SA:CTP6541,Europe/Paris,,OGE, +OGE:SP:6543,1,"LES VINCENTS",45.32144,6.018311,0,0,OGE:SA:CTP6541,Europe/Paris,,OGE, +OGE:SP:6545,1,"PONT DU ROUGE",45.316242,6.012843,0,0,OGE:SA:CTP6545,Europe/Paris,,OGE, +OGE:SP:6547,1,"LE LEVET",45.348207,6.031668,0,0,OGE:SA:CTP6547,Europe/Paris,,OGE, +OGE:SP:6549,1,"LE LEVET",45.348204,6.031662,0,0,OGE:SA:CTP6547,Europe/Paris,,OGE, +OGE:SP:6551,1,"LE VOLEY",45.344407,6.038211,0,0,OGE:SA:CTP6551,Europe/Paris,,OGE, +OGE:SP:6553,1,"LE VOLEY",45.34441,6.03822,0,0,OGE:SA:CTP6551,Europe/Paris,,OGE, +OGE:SP:6555,1,"LES AMICONS",45.3409,6.03345,0,0,OGE:SA:CTP6555,Europe/Paris,,OGE, +OGE:SP:6557,1,"LES AMICONS",45.340832,6.033407,0,0,OGE:SA:CTP6555,Europe/Paris,,OGE, +OGE:SP:6559,1,"LE CURTILLARD",45.302483,6.081252,0,0,OGE:SA:CTP6559,Europe/Paris,,OGE, +OGE:SP:6561,1,"LE CURTILLARD",45.302491,6.081353,0,0,OGE:SA:CTP6559,Europe/Paris,,OGE, +OGE:SP:6563,1,"LA FERRIERE LE VILLAGE",45.319241,6.087079,0,0,OGE:SA:CTP6563,Europe/Paris,,OGE, +OGE:SP:6565,1,"LA FERRIERE LE VILLAGE",45.319263,6.087176,0,0,OGE:SA:CTP6563,Europe/Paris,,OGE, +OGE:SP:6567,1,"LE PETIT THIERVOZ",45.308419,6.080453,0,0,OGE:SA:CTP6567,Europe/Paris,,OGE, +OGE:SP:6569,1,"LE PETIT THIERVOZ",45.308304,6.080356,0,0,OGE:SA:CTP6567,Europe/Paris,,OGE, +OGE:SP:6571,1,"LE GRAND THIERVOZ",45.30658,6.07974,0,0,OGE:SA:CTP6571,Europe/Paris,,OGE, +OGE:SP:6573,1,"LE GRAND THIERVOZ",45.306572,6.079767,0,0,OGE:SA:CTP6571,Europe/Paris,,OGE, +OGE:SP:6575,1,"LA PIAT",45.339657,6.093884,0,0,OGE:SA:CTP6575,Europe/Paris,,OGE, +OGE:SP:6577,1,"LA PIAT",45.339645,6.093985,0,0,OGE:SA:CTP6575,Europe/Paris,,OGE, +OGE:SP:7224,1,"LA CHAPELLE",45.39741,5.943864,0,0,OGE:SA:CTP7224,Europe/Paris,,OGE, +OGE:SP:7226,1,"LA CHAPELLE",45.397412,5.943871,0,0,OGE:SA:CTP7224,Europe/Paris,,OGE, +OGE:SP:7228,1,"COL DE MARCIEU",45.355802,5.918807,0,0,OGE:SA:CTP7228,Europe/Paris,,OGE, +OGE:SP:7232,1,"LE VILLARD",45.391518,5.93593,0,0,OGE:SA:CTP7232,Europe/Paris,,OGE, +OGE:SP:7234,1,"LE VILLARD",45.391526,5.935951,0,0,OGE:SA:CTP7232,Europe/Paris,,OGE, +OGE:SP:7238,1,"BELLECHAMBRE",45.384023,5.931969,0,0,OGE:SA:CTP7238,Europe/Paris,,OGE, +OGE:SP:7240,1,"LA VIEILLE EGLISE",45.394826,5.943447,0,0,OGE:SA:CTP7240,Europe/Paris,,OGE, +OGE:SP:7242,1,"LA VIEILLE EGLISE",45.394831,5.943443,0,0,OGE:SA:CTP7240,Europe/Paris,,OGE, +OGE:SP:7244,1,"LOTISSEMENT MARCIEU",45.353632,5.918006,0,0,OGE:SA:CTP7244,Europe/Paris,,OGE, +OGE:SP:7246,1,"LOTISSEMENT MARCIEU",45.353615,5.917987,0,0,OGE:SA:CTP7244,Europe/Paris,,OGE, +OGE:SP:7248,1,"LA MOUILLA",45.389077,5.933823,0,0,OGE:SA:CTP7248,Europe/Paris,,OGE, +OGE:SP:7250,1,"LA MOUILLA",45.389097,5.933853,0,0,OGE:SA:CTP7248,Europe/Paris,,OGE, +OGE:SP:7252,1,"LES MEYANNES",45.386861,5.998927,0,0,OGE:SA:CTP7252,Europe/Paris,,OGE, +OGE:SP:7254,1,"LES MEYANNES",45.386534,5.998673,0,0,OGE:SA:CTP7252,Europe/Paris,,OGE, +OGE:SP:7258,1,"LE CHEYLAS - LA MAIRIE",45.370874,5.992405,0,0,OGE:SA:CTP7258,Europe/Paris,,OGE, +OGE:SP:7260,1,"ZAC DES VIGNES",45.368849,5.990215,0,0,OGE:SA:CTP7260,Europe/Paris,,OGE, +OGE:SP:7262,1,"ZAC DES VIGNES",45.368845,5.990223,0,0,OGE:SA:CTP7260,Europe/Paris,,OGE, +OGE:SP:7264,1,"LE CHEYLAS GARE D.523",45.392098,6.001703,0,0,OGE:SA:CTP7264,Europe/Paris,,OGE, +OGE:SP:7266,1,"LE CHEYLAS GARE D.523",45.392399,6.001945,0,0,OGE:SA:CTP7264,Europe/Paris,,OGE, +OGE:SP:7268,1,"LE CHEYLAS LE MERCIER",45.37578,5.997128,0,0,OGE:SA:CTP7268,Europe/Paris,,OGE, +OGE:SP:7270,1,"LE CHEYLAS LE MERCIER",45.375787,5.997069,0,0,OGE:SA:CTP7268,Europe/Paris,,OGE, +OGE:SP:7272,1,"LE ROMPAY",45.388383,5.996208,0,0,OGE:SA:CTP7272,Europe/Paris,,OGE, +OGE:SP:7274,1,"LE ROMPAY",45.38839,5.996222,0,0,OGE:SA:CTP7272,Europe/Paris,,OGE, +OGE:SP:7276,1,"LA FLACHERE MAIRIE",45.398497,5.962826,0,0,OGE:SA:CTP7276,Europe/Paris,,OGE, +OGE:SP:7278,1,"LA FLACHERE MAIRIE",45.398509,5.962749,0,0,OGE:SA:CTP7276,Europe/Paris,,OGE, +OGE:SP:7280,1,"LES FONTAINES",45.360988,6.001761,0,0,OGE:SA:CTP7280,Europe/Paris,,OGE, +OGE:SP:7282,1,"LES FONTAINES",45.360891,6.001722,0,0,OGE:SA:CTP7280,Europe/Paris,,OGE, +OGE:SP:7284,1,"BEAUREGARD",45.371335,6.004511,0,0,OGE:SA:CTP7284,Europe/Paris,,OGE, +OGE:SP:7286,1,"BEAUREGARD",45.371319,6.004559,0,0,OGE:SA:CTP7284,Europe/Paris,,OGE, +OGE:SP:7288,1,"STE MARIE D ALLOIX LE VILLAGE",45.380506,5.967584,0,0,OGE:SA:CTP7288,Europe/Paris,,OGE, +OGE:SP:7290,1,"STE MARIE D ALLOIX LE VILLAGE",45.380194,5.967277,0,0,OGE:SA:CTP7288,Europe/Paris,,OGE, +OGE:SP:7292,1,"LA FLACHERE ECOLE",45.394758,5.96156,0,0,OGE:SA:CTP7292,Europe/Paris,,OGE, +OGE:SP:7294,1,"LA FLACHERE ECOLE",45.394753,5.961536,0,0,OGE:SA:CTP7292,Europe/Paris,,OGE, +OGE:SP:7296,1,"GARAGE RENAULT",45.366069,5.956227,0,0,OGE:SA:CTP7296,Europe/Paris,,OGE, +OGE:SP:7298,1,"GARAGE RENAULT",45.365999,5.956157,0,0,OGE:SA:CTP7296,Europe/Paris,,OGE, +OGE:SP:7300,1,"CAVE COOPERATIVE",45.368862,5.958286,0,0,OGE:SA:CTP7300,Europe/Paris,,OGE, +OGE:SP:7302,1,"CAVE COOPERATIVE",45.368781,5.958295,0,0,OGE:SA:CTP7300,Europe/Paris,,OGE, +OGE:SP:7304,1,"HAUT TOUVET E.D.F",45.364327,5.954842,0,0,OGE:SA:CTP7304,Europe/Paris,,OGE, +OGE:SP:7306,1,"HAUT TOUVET E.D.F",45.364097,5.954693,0,0,OGE:SA:CTP7304,Europe/Paris,,OGE, +OGE:SP:7308,1,"LE ST JEAN",45.361587,5.951464,0,0,OGE:SA:CTP7308,Europe/Paris,,OGE, +OGE:SP:7310,1,"LE ST JEAN",45.361529,5.951522,0,0,OGE:SA:CTP7308,Europe/Paris,,OGE, +OGE:SP:7312,1,"LA FUMAS",45.370961,5.956594,0,0,OGE:SA:CTP7312,Europe/Paris,,OGE, +OGE:SP:7314,1,"LA FUMAS",45.370975,5.95655,0,0,OGE:SA:CTP7312,Europe/Paris,,OGE, +OGE:SP:7317,1,"COLLEGE P. AIGUILLE - HAUT",45.360749,5.94784,0,0,OGE:SA:CTP7317,Europe/Paris,,OGE, +OGE:SP:7319,1,"COLLEGE P. AIGUILLE - BAS",45.360415,5.948821,0,0,OGE:SA:CTP7319,Europe/Paris,,OGE, +OGE:SP:7321,1,"LE TOUVET LA GARE",45.359881,5.950358,0,0,OGE:SA:CTP7321,Europe/Paris,,OGE, +OGE:SP:7323,1,"LE TOUVET LA GARE",45.359931,5.950353,0,0,OGE:SA:CTP7321,Europe/Paris,,OGE, +OGE:SP:7325,1,"ST VINCENT MERCUZE PISCINE",45.382389,5.951966,0,0,OGE:SA:CTP7325,Europe/Paris,,OGE, +OGE:SP:7328,1,"ST VINCENT MERCUZE PISCINE",45.382423,5.951911,0,0,OGE:SA:CTP7325,Europe/Paris,,OGE, +OGE:SP:7330,1,"LE TRAIT",45.371119,6.006755,0,0,OGE:SA:CTP7330,Europe/Paris,,OGE, +OGE:SP:7332,1,"LE TRAIT",45.371116,6.006801,0,0,OGE:SA:CTP7330,Europe/Paris,,OGE, +OGE:SP:7334,1,"LE CHAPELAT",45.370599,6.00981,0,0,OGE:SA:CTP7334,Europe/Paris,,OGE, +OGE:SP:7336,1,"LE CHAPELAT",45.370607,6.009792,0,0,OGE:SA:CTP7334,Europe/Paris,,OGE, +OGE:SP:7338,1,"MAILLES",45.368889,6.010912,0,0,OGE:SA:CTP7338,Europe/Paris,,OGE, +OGE:SP:7340,1,"MAILLES",45.36888,6.010917,0,0,OGE:SA:CTP7338,Europe/Paris,,OGE, +OGE:SP:7343,1,"ST VINCENT MERCUZE MAIRIE",45.37501,5.949209,0,0,OGE:SA:CTP7343,Europe/Paris,,OGE, +OGE:SP:7346,1,"ST VINCENT MERCUZE MAIRIE",45.374941,5.949234,0,0,OGE:SA:CTP7343,Europe/Paris,,OGE, +OGE:SP:7348,1,"LE MONTALIEU",45.385804,5.955435,0,0,OGE:SA:CTP7348,Europe/Paris,,OGE, +OGE:SP:7350,1,"LE MONTALIEU",45.385811,5.955418,0,0,OGE:SA:CTP7348,Europe/Paris,,OGE, +OGE:SP:7352,1,"LES BLEUETS",45.391353,5.997983,0,0,OGE:SA:CTP7352,Europe/Paris,,OGE, +OGE:SP:7354,1,"LES BLEUETS",45.391274,5.997905,0,0,OGE:SA:CTP7352,Europe/Paris,,OGE, +OGE:SP:7356,1,"ST VINCENT LA BRANCHY",45.371603,5.952799,0,0,OGE:SA:CTP7356,Europe/Paris,,OGE, +OGE:SP:7358,1,"ST VINCENT LA BRANCHY",45.371443,5.952794,0,0,OGE:SA:CTP7356,Europe/Paris,,OGE, +OGE:SP:7360,1,"PLOSSU MAIRIE",45.359579,5.951277,0,0,OGE:SA:CTP7360,Europe/Paris,,OGE, +OGE:SP:7362,1,"PLOSSU MAIRIE",45.35956,5.951188,0,0,OGE:SA:CTP7360,Europe/Paris,,OGE, +OGE:SP:7364,1,"GS DOUDART DE LAGREE",45.377914,5.949779,0,0,OGE:SA:CTP7364,Europe/Paris,,OGE, +OGE:SP:7366,1,"GS DOUDART DE LAGREE",45.378023,5.949812,0,0,OGE:SA:CTP7364,Europe/Paris,,OGE, +OGE:SP:7368,1,"LOT. DE LA BARDE",45.387049,5.956745,0,0,OGE:SA:CTP7368,Europe/Paris,,OGE, +OGE:SP:7370,1,"LE CHEYLAS LE VILLARD",45.387012,6.0054,0,0,OGE:SA:CTP7370,Europe/Paris,,OGE, +OGE:SP:7372,1,"LE CHEYLAS LE VILLARD",45.387026,6.005348,0,0,OGE:SA:CTP7370,Europe/Paris,,OGE, +OGE:SP:7374,1,"TOUVET MATERNELLE",45.36104,5.953476,0,0,OGE:SA:CTP7374,Europe/Paris,,OGE, +OGE:SP:7375,1,"TOUVET MATERNELLE",45.361024,5.95342,0,0,OGE:SA:CTP7374,Europe/Paris,,OGE, +OGE:SP:7377,1,"RUE HAUSSEPIED",45.370468,5.958029,0,0,OGE:SA:CTP7377,Europe/Paris,,OGE, +OGE:SP:7379,1,"RUE HAUSSEPIED",45.370473,5.958029,0,0,OGE:SA:CTP7377,Europe/Paris,,OGE, +OGE:SP:7381,1,"LE TROUILLET",45.390979,6.012692,0,0,OGE:SA:CTP7381,Europe/Paris,,OGE, +OGE:SP:7383,1,"LE TROUILLET",45.390972,6.012693,0,0,OGE:SA:CTP7381,Europe/Paris,,OGE, +OGE:SP:7385,1,"LE CHEYLAS ECOLES GARE",45.3925,5.998706,0,0,OGE:SA:CTP7385,Europe/Paris,,OGE, +OGE:SP:7387,1,"LE CHEYLAS ECOLES GARE",45.392529,5.998613,0,0,OGE:SA:CTP7385,Europe/Paris,,OGE, +OGE:SP:7392,1,"LES MORETS",45.38221,6.073489,0,0,OGE:SA:CTP7392,Europe/Paris,,OGE, +OGE:SP:7394,1,"LES MORETS",45.382239,6.073395,0,0,OGE:SA:CTP7392,Europe/Paris,,OGE, +OGE:SP:7398,1,"LE DAVID",45.387077,6.06737,0,0,OGE:SA:CTP7398,Europe/Paris,,OGE, +OGE:SP:7400,1,"LE DAVID",45.387064,6.067335,0,0,OGE:SA:CTP7398,Europe/Paris,,OGE, +OGE:SP:7403,1,"PLACE DE VERDUN",45.393981,6.074931,0,0,OGE:SA:CTP7403,Europe/Paris,,OGE, +OGE:SP:7405,1,"PLACE DE VERDUN",45.394047,6.074973,0,0,OGE:SA:CTP7403,Europe/Paris,,OGE, +OGE:SP:7407,1,"SAILLES",45.366778,6.033147,0,0,OGE:SA:CTP7407,Europe/Paris,,OGE, +OGE:SP:7409,1,"SAILLES",45.366771,6.03309,0,0,OGE:SA:CTP7407,Europe/Paris,,OGE, +OGE:SP:7413,1,"HAMEAU MONTOUVRARD",45.380403,6.076588,0,0,OGE:SA:CTP7413,Europe/Paris,,OGE, +OGE:SP:7415,1,"HAMEAU MONTOUVRARD",45.380424,6.0766,0,0,OGE:SA:CTP7413,Europe/Paris,,OGE, +OGE:SP:7417,1,"ST PIERRE ECOLES",45.373329,6.048505,0,0,OGE:SA:CTP7417,Europe/Paris,,OGE, +OGE:SP:7419,1,"ST PIERRE ECOLES",45.373397,6.04847,0,0,OGE:SA:CTP7417,Europe/Paris,,OGE, +OGE:SP:7421,1,"LE CATUS",45.368472,6.017298,0,0,OGE:SA:CTP7421,Europe/Paris,,OGE, +OGE:SP:7423,1,"LE CATUS",45.368475,6.017295,0,0,OGE:SA:CTP7421,Europe/Paris,,OGE, +OGE:SP:7425,1,"QUARTIER DE GERLAND",45.368347,6.038253,0,0,OGE:SA:CTP7425,Europe/Paris,,OGE, +OGE:SP:7427,1,"QUARTIER DE GERLAND",45.368621,6.038634,0,0,OGE:SA:CTP7425,Europe/Paris,,OGE, +OGE:SP:7429,1,"SAILLES LE BAS",45.364398,6.034545,0,0,OGE:SA:CTP7429,Europe/Paris,,OGE, +OGE:SP:7431,1,"SAILLES LE BAS",45.364384,6.03455,0,0,OGE:SA:CTP7429,Europe/Paris,,OGE, +OGE:SP:7433,1,"LE GUILLON",45.353029,6.032781,0,0,OGE:SA:CTP7433,Europe/Paris,,OGE, +OGE:SP:7435,1,"LE GUILLON",45.353004,6.032795,0,0,OGE:SA:CTP7433,Europe/Paris,,OGE, +OGE:SP:7437,1,"LE RIGARD",45.355773,6.033459,0,0,OGE:SA:CTP7437,Europe/Paris,,OGE, +OGE:SP:7439,1,"LE RIGARD",45.355771,6.03345,0,0,OGE:SA:CTP7437,Europe/Paris,,OGE, +OGE:SP:7443,1,"SAILLES LE HAUT",45.362149,6.036204,0,0,OGE:SA:CTP7443,Europe/Paris,,OGE, +OGE:SP:7445,1,"SAILLES LE HAUT",45.362164,6.036199,0,0,OGE:SA:CTP7443,Europe/Paris,,OGE, +OGE:SP:7447,1,"MONTGOUTOUX",45.358658,6.055796,0,0,OGE:SA:CTP7447,Europe/Paris,,OGE, +OGE:SP:7449,1,"MONTGOUTOUX",45.358668,6.055782,0,0,OGE:SA:CTP7447,Europe/Paris,,OGE, +OGE:SP:7452,1,"LE CHABOUD",45.385129,6.060843,0,0,OGE:SA:CTP7452,Europe/Paris,,OGE, +OGE:SP:7454,1,"LE CHABOUD",45.385123,6.060845,0,0,OGE:SA:CTP7452,Europe/Paris,,OGE, +OGE:SP:7456,1,"GORGE NOIRE",45.357613,6.037408,0,0,OGE:SA:CTP7456,Europe/Paris,,OGE, +OGE:SP:7458,1,"GORGE NOIRE",45.357611,6.037403,0,0,OGE:SA:CTP7456,Europe/Paris,,OGE, +OGE:SP:7460,1,"CRETS EN BELLEDONNE LE VILLAGE",45.374171,6.046647,0,0,OGE:SA:CTP7460,Europe/Paris,,OGE, +OGE:SP:7462,1,"CRETS EN BELLEDONNE VILLAGE",45.374592,6.04737,0,0,OGE:SA:CTP7462,Europe/Paris,,OGE, +OGE:SP:7464,1,"LE BEROUD",45.350616,6.031975,0,0,OGE:SA:CTP7464,Europe/Paris,,OGE, +OGE:SP:7466,1,"LE BEROUD",45.350613,6.03198,0,0,OGE:SA:CTP7464,Europe/Paris,,OGE, +OGE:SP:7468,1,"LE CARIGNON",45.356087,6.050271,0,0,OGE:SA:CTP7468,Europe/Paris,,OGE, +OGE:SP:7470,1,"LE CARIGNON",45.356101,6.050253,0,0,OGE:SA:CTP7468,Europe/Paris,,OGE, +OGE:SP:7472,1,"LE FEYJOUX",45.354442,6.046481,0,0,OGE:SA:CTP7472,Europe/Paris,,OGE, +OGE:SP:7474,1,"LE FEYJOUX",45.35444,6.046472,0,0,OGE:SA:CTP7472,Europe/Paris,,OGE, +OGE:SP:7476,1,"LES GRANGES",45.35171,6.041372,0,0,OGE:SA:CTP7476,Europe/Paris,,OGE, +OGE:SP:7478,1,"LES GRANGES",45.35172,6.041394,0,0,OGE:SA:CTP7476,Europe/Paris,,OGE, +OGE:SP:7480,1,"MAIRIE",45.36733,6.016766,0,0,OGE:SA:CTP7480,Europe/Paris,,OGE, +OGE:SP:7482,1,"MAIRIE",45.367326,6.016765,0,0,OGE:SA:CTP7480,Europe/Paris,,OGE, +OGE:SP:7484,1,"CRETS EN BELLEDONNE LA ROCHE",45.377543,6.051977,0,0,OGE:SA:CTP7484,Europe/Paris,,OGE, +OGE:SP:7486,1,"CRETS EN BELLEDONNE LA ROCHE",45.377597,6.051909,0,0,OGE:SA:CTP7484,Europe/Paris,,OGE, +OGE:SP:7488,1,"LES COTTERIAUX",45.36202,6.045233,0,0,OGE:SA:CTP7488,Europe/Paris,,OGE, +OGE:SP:7490,1,"LES COTTERIAUX",45.362037,6.045242,0,0,OGE:SA:CTP7488,Europe/Paris,,OGE, +OGE:SP:7492,1,"L ABBAYE",45.393508,6.0165,0,0,OGE:SA:CTP7492,Europe/Paris,,OGE, +OGE:SP:7494,1,"L ABBAYE",45.393517,6.016508,0,0,OGE:SA:CTP7492,Europe/Paris,,OGE, +OGE:SP:7496,1,"LE VILLAGE",45.3568,6.099986,0,0,OGE:SA:CTP7496,Europe/Paris,,OGE, +OGE:SP:7498,1,"LE VILLAGE",45.356773,6.099891,0,0,OGE:SA:CTP7496,Europe/Paris,,OGE, +OGE:SP:7506,1,"CHINFERT",45.368076,6.097657,0,0,OGE:SA:CTP7506,Europe/Paris,,OGE, +OGE:SP:7508,1,"CHINFERT",45.36808,6.097555,0,0,OGE:SA:CTP7506,Europe/Paris,,OGE, +OGE:SP:7510,1,"HOT PIC BELLE ETOILE",45.360775,6.098763,0,0,OGE:SA:CTP7510,Europe/Paris,,OGE, +OGE:SP:7512,1,"HOT PIC BELLE ETOILE",45.360748,6.098668,0,0,OGE:SA:CTP7510,Europe/Paris,,OGE, +OGE:SP:8016,1,"LES PRES MAIRIE",45.406743,5.945467,0,0,OGE:SA:CTP8016,Europe/Paris,,OGE, +OGE:SP:8018,1,"LES PRES MAIRIE",45.406756,5.945474,0,0,OGE:SA:CTP8016,Europe/Paris,,OGE, +OGE:SP:8024,1,"CIMETIERE",45.439948,5.980173,0,0,OGE:SA:CTP8024,Europe/Paris,,OGE, +OGE:SP:8026,1,"CIMETIERE",45.439923,5.980152,0,0,OGE:SA:CTP8024,Europe/Paris,,OGE, +OGE:SP:8028,1,"HAMEAU LA CUILLER",45.443254,5.980694,0,0,OGE:SA:CTP8028,Europe/Paris,,OGE, +OGE:SP:8030,1,"HAMEAU LA CUILLER",45.443295,5.980673,0,0,OGE:SA:CTP8028,Europe/Paris,,OGE, +OGE:SP:8032,1,"LA CORVA",45.433105,5.977189,0,0,OGE:SA:CTP8032,Europe/Paris,,OGE, +OGE:SP:8034,1,"LA CORVA",45.433124,5.977142,0,0,OGE:SA:CTP8032,Europe/Paris,,OGE, +OGE:SP:8036,1,"LE RESERVOIR",45.430186,5.983558,0,0,OGE:SA:CTP8036,Europe/Paris,,OGE, +OGE:SP:8038,1,"LE RESERVOIR",45.430103,5.983594,0,0,OGE:SA:CTP8036,Europe/Paris,,OGE, +OGE:SP:8040,1,"LA BERARDE",45.409172,5.982295,0,0,OGE:SA:CTP8040,Europe/Paris,,OGE, +OGE:SP:8042,1,"LA BERARDE",45.40907,5.982294,0,0,OGE:SA:CTP8040,Europe/Paris,,OGE, +OGE:SP:8044,1,"LE BOISSIEU",45.408384,5.967152,0,0,OGE:SA:CTP8044,Europe/Paris,,OGE, +OGE:SP:8046,1,"LE BOISSIEU",45.408389,5.967134,0,0,OGE:SA:CTP8044,Europe/Paris,,OGE, +OGE:SP:8048,1,"LA BUISSIERE LES GRANGES",45.401933,5.979097,0,0,OGE:SA:CTP8050,Europe/Paris,,OGE, +OGE:SP:8050,1,"LA BUISSIERE LES GRANGES",45.402078,5.979232,0,0,OGE:SA:CTP8050,Europe/Paris,,OGE, +OGE:SP:8052,1,"LA BUISSIERE ECOLE",45.404728,5.978065,0,0,OGE:SA:CTP8052,Europe/Paris,,OGE, +OGE:SP:8054,1,"LA BUISSIERE ECOLE",45.404704,5.97813,0,0,OGE:SA:CTP8052,Europe/Paris,,OGE, +OGE:SP:8056,1,"MATERNELLE",45.43641,5.980799,0,0,OGE:SA:CTP8056,Europe/Paris,,OGE, +OGE:SP:8058,1,"MATERNELLE",45.436421,5.980754,0,0,OGE:SA:CTP8056,Europe/Paris,,OGE, +OGE:SP:8060,1,"LE BOISSIEU LOT",45.40669,5.965562,0,0,OGE:SA:CTP8060,Europe/Paris,,OGE, +OGE:SP:8062,1,"LE BOISSIEU LOT",45.406689,5.965553,0,0,OGE:SA:CTP8060,Europe/Paris,,OGE, +OGE:SP:8064,1,"HAMEAU DE ST GEORGES",45.418527,5.956805,0,0,OGE:SA:CTP8064,Europe/Paris,,OGE, +OGE:SP:8066,1,"HAMEAU DE ST GEORGES",45.418521,5.956798,0,0,OGE:SA:CTP8064,Europe/Paris,,OGE, +OGE:SP:8068,1,"EC.PRIMAIRE",45.435145,5.978696,0,0,OGE:SA:CTP8068,Europe/Paris,,OGE, +OGE:SP:8070,1,"LE PUITS",45.435178,6.00008,0,0,OGE:SA:CTP8070,Europe/Paris,,OGE, +OGE:SP:8072,1,"LE PUITS",45.435212,5.999995,0,0,OGE:SA:CTP8070,Europe/Paris,,OGE, +OGE:SP:8078,1,"LE FAYET",45.417813,5.974534,0,0,OGE:SA:CTP8078,Europe/Paris,,OGE, +OGE:SP:8080,1,"LE FAYET",45.417783,5.974515,0,0,OGE:SA:CTP8078,Europe/Paris,,OGE, +OGE:SP:8082,1,"LOT. BEAUREG",45.428756,5.978013,0,0,OGE:SA:CTP8082,Europe/Paris,,OGE, +OGE:SP:8084,1,"LOT. BEAUREG",45.428885,5.978011,0,0,OGE:SA:CTP8082,Europe/Paris,,OGE, +OGE:SP:8086,1,"JAVEYDAN",45.402624,6.014096,0,0,OGE:SA:CTP8086,Europe/Paris,,OGE, +OGE:SP:8088,1,"JAVEYDAN",45.402615,6.014091,0,0,OGE:SA:CTP8086,Europe/Paris,,OGE, +OGE:SP:8090,1,"MALBOURGET",45.407889,6.0147,0,0,OGE:SA:CTP8090,Europe/Paris,,OGE, +OGE:SP:8092,1,"MALBOURGET",45.407901,6.014705,0,0,OGE:SA:CTP8090,Europe/Paris,,OGE, +OGE:SP:8094,1,"ST MARCEL D EN HAUT",45.444583,5.964132,0,0,OGE:SA:CTP8094,Europe/Paris,,OGE, +OGE:SP:8096,1,"ST MARCEL D EN HAUT",45.444575,5.964121,0,0,OGE:SA:CTP8094,Europe/Paris,,OGE, +OGE:SP:8100,1,"COLLEGE MARCEL CHENE - PARKING",45.432218,6.008949,0,0,OGE:SA:CTP8100,Europe/Paris,,OGE, +OGE:SP:8102,1,"VILLARD DIDIER",45.418862,6.012837,0,0,OGE:SA:CTP8102,Europe/Paris,,OGE, +OGE:SP:8104,1,"VILLARD DIDIER",45.418986,6.012798,0,0,OGE:SA:CTP8102,Europe/Paris,,OGE, +OGE:SP:8108,1,"LYCEE P. DU TERRAIL - PARVIS",45.434,6.016029,0,0,OGE:SA:CTP8108,Europe/Paris,,OGE, +OGE:SP:8110,1,"LE VILLAGE",45.43489,5.978408,0,0,OGE:SA:CTP8110,Europe/Paris,,OGE, +OGE:SP:8112,1,"LE VILLAGE",45.434897,5.978434,0,0,OGE:SA:CTP8110,Europe/Paris,,OGE, +OGE:SP:8114,1,"LA GARE",45.433877,6.007976,0,0,SIN:SA:OCE87747493,Europe/Paris,,OGE, +OGE:SP:8119,1,"LE VILLARD",45.466929,5.981516,0,0,OGE:SA:CTP8119,Europe/Paris,,OGE, +OGE:SP:8125,1,"VILLARD NOIR",45.413776,6.012937,0,0,OGE:SA:CTP8125,Europe/Paris,,OGE, +OGE:SP:8127,1,"VILLARD NOIR",45.413627,6.012947,0,0,OGE:SA:CTP8125,Europe/Paris,,OGE, +OGE:SP:8130,1,"LA FLACHERE LA GARE",45.400493,5.96394,0,0,OGE:SA:CTP8130,Europe/Paris,,OGE, +OGE:SP:8132,1,"LA FLACHERE LA GARE",45.400494,5.963719,0,0,OGE:SA:CTP8130,Europe/Paris,,OGE, +OGE:SP:8136,1,"BREDA",45.436975,6.016948,0,0,OGE:SA:CTP8136,Europe/Paris,,OGE, +OGE:SP:8138,1,"PISCINE",45.43376,6.012347,0,0,OGE:SA:CTP8138,Europe/Paris,,OGE, +OGE:SP:8140,1,"PISCINE",45.433766,6.012347,0,0,OGE:SA:CTP8138,Europe/Paris,,OGE, +OGE:SP:8142,1,"LA MALADIERE",45.418789,5.984367,0,0,OGE:SA:CTP8142,Europe/Paris,,OGE, +OGE:SP:8144,1,"LA MALADIERE",45.418766,5.984304,0,0,OGE:SA:CTP8142,Europe/Paris,,OGE, +OGE:SP:8146,1,"LE BREDA",45.401986,6.081191,0,0,OGE:SA:CTP8146,Europe/Paris,,OGE, +OGE:SP:8148,1,"LE BREDA",45.401946,6.081276,0,0,OGE:SA:CTP8146,Europe/Paris,,OGE, +OGE:SP:8150,1,"ROUTE DU MOUTARET",45.396333,6.073792,0,0,OGE:SA:CTP8150,Europe/Paris,,OGE, +OGE:SP:8152,1,"ROUTE DU MOUTARET",45.396345,6.073777,0,0,OGE:SA:CTP8150,Europe/Paris,,OGE, +OGE:SP:8154,1,"PANORAMIC",45.400588,6.074325,0,0,OGE:SA:CTP8154,Europe/Paris,,OGE, +OGE:SP:8156,1,"PANORAMIC",45.400588,6.074323,0,0,OGE:SA:CTP8154,Europe/Paris,,OGE, +OGE:SP:8158,1,"LE CLOSY",45.407307,6.07933,0,0,OGE:SA:CTP8158,Europe/Paris,,OGE, +OGE:SP:8160,1,"LE CLOSY",45.407345,6.079307,0,0,OGE:SA:CTP8158,Europe/Paris,,OGE, +OGE:SP:8162,1,"LA MAIRIE",45.432695,6.020086,0,0,OGE:SA:CTP8162,Europe/Paris,,OGE, +OGE:SP:8164,1,"LA MAIRIE",45.43271,6.020106,0,0,OGE:SA:CTP8162,Europe/Paris,,OGE, +OGE:SP:8170,1,"CHALLEYS",45.411423,6.02021,0,0,OGE:SA:CTP8170,Europe/Paris,,OGE, +OGE:SP:8172,1,"CHALLEYS",45.411426,6.020214,0,0,OGE:SA:CTP8170,Europe/Paris,,OGE, +OGE:SP:8174,1,"PAPILLARD",45.400489,6.017497,0,0,OGE:SA:CTP8174,Europe/Paris,,OGE, +OGE:SP:8176,1,"PAPILLARD",45.400477,6.017502,0,0,OGE:SA:CTP8174,Europe/Paris,,OGE, +OGE:SP:8178,1,"LE MARAIS",45.408435,6.021899,0,0,OGE:SA:CTP8178,Europe/Paris,,OGE, +OGE:SP:8180,1,"LE MARAIS",45.408434,6.021895,0,0,OGE:SA:CTP8178,Europe/Paris,,OGE, +OGE:SP:8182,1,"MONTAUCHER",45.406146,6.021259,0,0,OGE:SA:CTP8182,Europe/Paris,,OGE, +OGE:SP:8184,1,"MONTAUCHER",45.406141,6.021275,0,0,OGE:SA:CTP8182,Europe/Paris,,OGE, +OGE:SP:8186,1,"LES PLANTEES",45.413594,6.0182,0,0,OGE:SA:CTP8186,Europe/Paris,,OGE, +OGE:SP:8188,1,"LES PLANTEES",45.413579,6.018202,0,0,OGE:SA:CTP8186,Europe/Paris,,OGE, +OGE:SP:8190,1,"LE PAPET",45.41471,6.022146,0,0,OGE:SA:CTP8190,Europe/Paris,,OGE, +OGE:SP:8192,1,"LE PAPET",45.414717,6.02214,0,0,OGE:SA:CTP8190,Europe/Paris,,OGE, +OGE:SP:8198,1,"ST MAXIMIN LA MAIRIE",45.428536,6.037729,0,0,OGE:SA:CTP8198,Europe/Paris,,OGE, +OGE:SP:8200,1,"ST MAXIMIN LA MAIRIE",45.428442,6.03806,0,0,OGE:SA:CTP8198,Europe/Paris,,OGE, +OGE:SP:8214,1,"BEAUVOIR",45.428082,6.123887,0,0,OGE:SA:CTP8214,Europe/Paris,,OGE, +OGE:SP:8216,1,"BEAUVOIR",45.42807,6.123885,0,0,OGE:SA:CTP8214,Europe/Paris,,OGE, +OGE:SP:8218,1,"LA RATZ",45.404693,6.084126,0,0,OGE:SA:CTP8218,Europe/Paris,,OGE, +OGE:SP:8220,1,"LA RATZ",45.404648,6.084204,0,0,OGE:SA:CTP8218,Europe/Paris,,OGE, +OGE:SP:8222,1,"LE COLOMBIER",45.409316,6.088351,0,0,OGE:SA:CTP8222,Europe/Paris,,OGE, +OGE:SP:8224,1,"LE COLOMBIER",45.409319,6.088336,0,0,OGE:SA:CTP8222,Europe/Paris,,OGE, +OGE:SP:8226,1,"LA CHAPELLE LA GORGE",45.418965,6.09947,0,0,OGE:SA:CTP8226,Europe/Paris,,OGE, +OGE:SP:8228,1,"LA CHAPELLE LA GORGE",45.418964,6.099469,0,0,OGE:SA:CTP8226,Europe/Paris,,OGE, +OGE:SP:8232,1,"CHEMIN DES RUPINES",45.425596,6.10505,0,0,OGE:SA:CTP8232,Europe/Paris,,OGE, +OGE:SP:8234,1,"LA CHAPELLE ECOLE",45.422703,6.095395,0,0,OGE:SA:CTP8234,Europe/Paris,,OGE, +OGE:SP:8236,1,"LA CHAPELLE ECOLE",45.422745,6.09531,0,0,OGE:SA:CTP8234,Europe/Paris,,OGE, +OGE:SP:8238,1,"MONTGAREN",45.427838,6.107253,0,0,OGE:SA:CTP8238,Europe/Paris,,OGE, +OGE:SP:8240,1,"MONTGAREN",45.42782,6.107299,0,0,OGE:SA:CTP8238,Europe/Paris,,OGE, +OGE:SP:8242,1,"LE MOUTARET LE VILLAGE",45.432151,6.088781,0,0,OGE:SA:CTP8242,Europe/Paris,,OGE, +OGE:SP:8244,1,"LE MOUTARET LE VILLAGE",45.432235,6.088807,0,0,OGE:SA:CTP8242,Europe/Paris,,OGE, +OGE:SP:8246,1,"FREYDON",45.420054,6.084648,0,0,OGE:SA:CTP8246,Europe/Paris,,OGE, +OGE:SP:8248,1,"FREYDON",45.420048,6.084655,0,0,OGE:SA:CTP8246,Europe/Paris,,OGE, +OGE:SP:8250,1,"LES MASURES",45.424693,6.086772,0,0,OGE:SA:CTP8250,Europe/Paris,,OGE, +OGE:SP:8252,1,"LES MASURES",45.424692,6.086771,0,0,OGE:SA:CTP8250,Europe/Paris,,OGE, +OGE:SP:8254,1,"LE BUISSON",45.412873,6.093779,0,0,OGE:SA:CTP8254,Europe/Paris,,OGE, +OGE:SP:8256,1,"LE BUISSON",45.41286,6.093776,0,0,OGE:SA:CTP8254,Europe/Paris,,OGE, +OGE:SP:8889,1,"EC PRIVEE BELLECOUR",45.464594,5.991696,0,0,OGE:SA:CTP8889,Europe/Paris,,OGE, +OGE:SP:8891,1,"EC PRIVEE BELLECOUR",45.46453,5.991745,0,0,OGE:SA:CTP8889,Europe/Paris,,OGE, +OGE:SP:8893,1,"HAMEAU LA VILLE",45.466937,5.981462,0,0,OGE:SA:CTP8893,Europe/Paris,,OGE, +OGE:SP:8895,1,"HAMEAU LA VILLE",45.466932,5.98145,0,0,OGE:SA:CTP8893,Europe/Paris,,OGE, +OGE:SP:8897,1,"LA GARE",45.467787,5.98962,0,0,OGE:SA:CTP8897,Europe/Paris,,OGE, +OGE:SP:8899,1,"LA GARE",45.467781,5.989619,0,0,OGE:SA:CTP8897,Europe/Paris,,OGE, +OGE:SP:8901,1,"LES ATRUS",45.467942,5.966145,0,0,OGE:SA:CTP8901,Europe/Paris,,OGE, +OGE:SP:8903,1,"LES ATRUS",45.468057,5.966352,0,0,OGE:SA:CTP8901,Europe/Paris,,OGE, +OGE:SP:8905,1,"CERNON",45.459731,5.994981,0,0,OGE:SA:CTP8905,Europe/Paris,,OGE, +OGE:SP:8908,1,"CERNON",45.459744,5.995007,0,0,OGE:SA:CTP8905,Europe/Paris,,OGE, +OGE:SP:8910,1,"LES GIROUDS",45.466389,5.970698,0,0,OGE:SA:CTP8910,Europe/Paris,,OGE, +OGE:SP:8912,1,"LES GIROUDS",45.466396,5.970739,0,0,OGE:SA:CTP8910,Europe/Paris,,OGE, +OGE:SP:8914,1,"LA PALUD",45.477978,5.970087,0,0,OGE:SA:CTP8914,Europe/Paris,,OGE, +OGE:SP:8916,1,"LA PALUD",45.478099,5.969689,0,0,OGE:SA:CTP8914,Europe/Paris,,OGE, +OGE:SP:8918,1,"L ETRAZ",45.471263,5.988973,0,0,OGE:SA:CTP8918,Europe/Paris,,OGE, +OGE:SP:8920,1,"L ETRAZ",45.471253,5.988918,0,0,OGE:SA:CTP8918,Europe/Paris,,OGE, +OGE:SP:8922,1,"MAIRIE",45.463356,5.990793,0,0,OGE:SA:CTP8922,Europe/Paris,,OGE, +OGE:SP:8924,1,"MAIRIE",45.463357,5.990807,0,0,OGE:SA:CTP8922,Europe/Paris,,OGE, +OGE:SP:8926,1,"ST MARCEL D EN BAS",45.451425,5.965012,0,0,OGE:SA:CTP8926,Europe/Paris,,OGE, +OGE:SP:8927,1,"ST MARCEL D EN BAS",45.45144,5.964993,0,0,OGE:SA:CTP8926,Europe/Paris,,OGE, +OGE:SP:8929,1,"BELLECOMBETTE",45.468639,5.971449,0,0,OGE:SA:CTP8929,Europe/Paris,,OGE, +OGE:SP:8931,1,"BELLECOMBETTE",45.468638,5.971439,0,0,OGE:SA:CTP8929,Europe/Paris,,OGE, +OGE:SP:8935,1,"LA MEUNIERE",45.459612,5.990643,0,0,OGE:SA:CTP8935,Europe/Paris,,OGE, +OGE:SP:8937,1,"ECOLE",45.467447,5.987963,0,0,OGE:SA:CTP8937,Europe/Paris,,OGE, +OGE:SP:8939,1,"BELLECOMBE",45.459824,5.967494,0,0,OGE:SA:CTP8939,Europe/Paris,,OGE, +OGE:SP:8941,1,"BELLECOMBE",45.459814,5.967526,0,0,OGE:SA:CTP8939,Europe/Paris,,OGE, +OGE:SP:8943,1,"LES GAILLONS",45.466062,5.994002,0,0,OGE:SA:CTP8943,Europe/Paris,,OGE, +OGE:SP:8945,1,"LES GAILLONS",45.466127,5.994004,0,0,OGE:SA:CTP8943,Europe/Paris,,OGE, +OGR:SP:100173,1,"Comboire",45.14583,5.690815,0,0,OGR:SA:CTP100173,Europe/Paris,,OGR, +OGR:SP:100174,1,"Drac",45.148949,5.693968,0,0,OGR:SA:CTP100174,Europe/Paris,,OGR, +OGR:SP:100175,1,"Musée Géo Charles",45.148786,5.70172,0,0,OGR:SA:CTP100175,Europe/Paris,,OGR, +OGR:SP:100176,1,"Colonel Manhès",45.146471,5.70177,0,0,OGR:SA:CTP100176,Europe/Paris,,OGR, +OGR:SP:100177,1,"Bayard",45.146397,5.705112,0,0,O38:SA:CTP2487,Europe/Paris,,OGR, +OGR:SP:100179,1,"Quinzaine",45.151664,5.706894,0,0,O38:SA:CTP2504,Europe/Paris,,OGR, +OGR:SP:100180,1,"Grugliasco",45.15122,5.708763,0,0,OGR:SA:CTP100180,Europe/Paris,,OGR, +OGR:SP:100181,1,"Fernand Pelloutier",45.150838,5.714822,0,0,OGR:SA:CTP100181,Europe/Paris,,OGR, +OGR:SP:100182,1,"La Rampe - Centre-Ville",45.149671,5.718836,0,0,OGR:SA:CTP100182,Europe/Paris,,OGR, +OGR:SP:100183,1,"Antoine Polotti",45.14834,5.723195,0,0,OGR:SA:CTP100183,Europe/Paris,,OGR, +OGR:SP:100184,1,"Le Château",45.147243,5.726717,0,0,OGR:SA:CTP100184,Europe/Paris,,OGR, +OGR:SP:100185,1,"Ecoles Hospitalières",45.146275,5.729813,0,0,OGR:SA:CTP100185,Europe/Paris,,OGR, +OGR:SP:100186,1,"Hôpital Sud",45.146896,5.732739,0,0,OGR:SA:CTP100186,Europe/Paris,,OGR, +OGR:SP:100187,1,"François Quesnay",45.147903,5.735167,0,0,OGR:SA:CTP100187,Europe/Paris,,OGR, +OGR:SP:100188,1,"Les Ruires-Boétie",45.14932,5.741221,0,0,OGR:SA:CTP100188,Europe/Paris,,OGR, +OGR:SP:100189,1,"Odyssée",45.152474,5.748477,0,0,OGR:SA:CTP100189,Europe/Paris,,OGR, +OGR:SP:100190,1,"Champ Fila",45.156269,5.755047,0,0,OGR:SA:CTP100190,Europe/Paris,,OGR, +OGR:SP:100191,1,"Centre Socio-Culturel",45.159409,5.760115,0,0,OGR:SA:CTP100191,Europe/Paris,,OGR, +OGR:SP:100192,1,"Le Carina",45.162379,5.763047,0,0,OGR:SA:CTP100192,Europe/Paris,,OGR, +OGR:SP:100193,1,"Saint-Martin-d'Hères Village",45.165121,5.765519,0,0,OGR:SA:CTP100193,Europe/Paris,,OGR, +OGR:SP:100194,1,"Maisons Blanches",45.166167,5.764604,0,0,OGR:SA:CTP100194,Europe/Paris,,OGR, +OGR:SP:100195,1,"Croix du Pâtre",45.168209,5.761739,0,0,OGR:SA:CTP100195,Europe/Paris,,OGR, +OGR:SP:100196,1,"Potié",45.170882,5.758594,0,0,OGR:SA:CTP100196,Europe/Paris,,OGR, +OGR:SP:100197,1,"Etienne Grappe",45.172214,5.757734,0,0,OGR:SA:CTP100197,Europe/Paris,,OGR, +OGR:SP:100198,1,"Pablo Neruda",45.173962,5.760909,0,0,O38:SA:CTP3590,Europe/Paris,,OGR, +OGR:SP:100199,1,"Henri Wallon",45.175911,5.764556,0,0,OGR:SA:CTP100199,Europe/Paris,,OGR, +OGR:SP:100200,1,"Rocheplane",45.178302,5.762361,0,0,OGR:SA:CTP100200,Europe/Paris,,OGR, +OGR:SP:100201,1,"Pierre Courtade",45.179558,5.763966,0,0,OGR:SA:CTP100201,Europe/Paris,,OGR, +OGR:SP:100202,1,"Coli",45.180852,5.766949,0,0,OGR:SA:CTP100202,Europe/Paris,,OGR, +OGR:SP:100203,1,"Champ Roman",45.184732,5.768461,0,0,OGR:SA:CTP100435,Europe/Paris,,OGR, +OGR:SP:100204,1,"Promotion Sociale",45.187433,5.769634,0,0,OGR:SA:CTP100204,Europe/Paris,,OGR, +OGR:SP:100205,1,"Sciences Sociales",45.190064,5.769287,0,0,O38:SA:CTP3712,Europe/Paris,,OGR, +OGR:SP:100206,1,"Bibliothèques Universitaires",45.19166,5.770379,0,0,OGR:SA:CTP100206,Europe/Paris,,OGR, +OGR:SP:100207,1,"Universités - Biologie",45.19195,5.775249,0,0,OGR:SA:CTP100207,Europe/Paris,,OGR, +OGR:SP:100208,1,"Epicéa",45.194602,5.775973,0,0,OGR:SA:CTP100208,Europe/Paris,,OGR, +OGR:SP:100209,1,"Universités - IUT - UFRAPS",45.197657,5.775882,0,0,OGR:SA:CTP100209,Europe/Paris,,OGR, +OGR:SP:100210,1,"Epicéa",45.19584,5.774675,0,0,OGR:SA:CTP100208,Europe/Paris,,OGR, +OGR:SP:100211,1,"Universités - Biologie",45.191948,5.774739,0,0,OGR:SA:CTP100207,Europe/Paris,,OGR, +OGR:SP:100212,1,"Bibliothèques Universitaires",45.191689,5.770292,0,0,OGR:SA:CTP100206,Europe/Paris,,OGR, +OGR:SP:100213,1,"Sciences Sociales",45.190165,5.769204,0,0,O38:SA:CTP3712,Europe/Paris,,OGR, +OGR:SP:100214,1,"Promotion Sociale",45.187137,5.769578,0,0,OGR:SA:CTP100204,Europe/Paris,,OGR, +OGR:SP:100215,1,"Champ Roman",45.183895,5.768155,0,0,OGR:SA:CTP100435,Europe/Paris,,OGR, +OGR:SP:100216,1,"Coli",45.180279,5.766264,0,0,OGR:SA:CTP100202,Europe/Paris,,OGR, +OGR:SP:100217,1,"Pierre Courtade",45.179516,5.763581,0,0,OGR:SA:CTP100201,Europe/Paris,,OGR, +OGR:SP:100218,1,"Rocheplane",45.178258,5.762307,0,0,OGR:SA:CTP100200,Europe/Paris,,OGR, +OGR:SP:100219,1,"Henri Wallon",45.175634,5.763915,0,0,OGR:SA:CTP100199,Europe/Paris,,OGR, +OGR:SP:100220,1,"Pablo Neruda",45.173949,5.760743,0,0,O38:SA:CTP3590,Europe/Paris,,OGR, +OGR:SP:100221,1,"Etienne Grappe",45.172112,5.757524,0,0,OGR:SA:CTP100197,Europe/Paris,,OGR, +OGR:SP:100222,1,"Potié",45.170894,5.75848,0,0,OGR:SA:CTP100196,Europe/Paris,,OGR, +OGR:SP:100223,1,"Maisons Blanches",45.166736,5.763392,0,0,OGR:SA:CTP100194,Europe/Paris,,OGR, +OGR:SP:100224,1,"Saint-Martin-d'Hères Village",45.164922,5.765265,0,0,OGR:SA:CTP100193,Europe/Paris,,OGR, +OGR:SP:100225,1,"Le Carina",45.162349,5.762867,0,0,OGR:SA:CTP100192,Europe/Paris,,OGR, +OGR:SP:100226,1,"Centre Socio-Culturel",45.158994,5.759555,0,0,OGR:SA:CTP100191,Europe/Paris,,OGR, +OGR:SP:100227,1,"Champ Fila",45.156272,5.754971,0,0,OGR:SA:CTP100190,Europe/Paris,,OGR, +OGR:SP:100228,1,"Odyssée",45.152898,5.749025,0,0,OGR:SA:CTP100189,Europe/Paris,,OGR, +OGR:SP:100229,1,"Les Ruires-Boétie",45.149358,5.741147,0,0,OGR:SA:CTP100188,Europe/Paris,,OGR, +OGR:SP:100230,1,"François Quesnay",45.147928,5.73494,0,0,OGR:SA:CTP100187,Europe/Paris,,OGR, +OGR:SP:100231,1,"Hôpital Sud",45.146909,5.732345,0,0,OGR:SA:CTP100186,Europe/Paris,,OGR, +OGR:SP:100232,1,"Ecoles Hospitalières",45.146376,5.72973,0,0,OGR:SA:CTP100185,Europe/Paris,,OGR, +OGR:SP:100233,1,"Le Château",45.147324,5.726709,0,0,OGR:SA:CTP100184,Europe/Paris,,OGR, +OGR:SP:100234,1,"Antoine Polotti",45.148604,5.722512,0,0,OGR:SA:CTP100183,Europe/Paris,,OGR, +OGR:SP:100235,1,"La Rampe - Centre-Ville",45.14965,5.719242,0,0,OGR:SA:CTP100182,Europe/Paris,,OGR, +OGR:SP:100236,1,"Fernand Pelloutier",45.150751,5.715606,0,0,OGR:SA:CTP100181,Europe/Paris,,OGR, +OGR:SP:100237,1,"Grugliasco",45.15122,5.709069,0,0,OGR:SA:CTP100180,Europe/Paris,,OGR, +OGR:SP:100238,1,"Quinzaine",45.151491,5.706642,0,0,O38:SA:CTP2504,Europe/Paris,,OGR, +OGR:SP:100240,1,"Bayard",45.14612,5.704421,0,0,O38:SA:CTP2487,Europe/Paris,,OGR, +OGR:SP:100241,1,"Colonel Manhès",45.146594,5.701561,0,0,OGR:SA:CTP100176,Europe/Paris,,OGR, +OGR:SP:100242,1,"Musée Géo Charles",45.149209,5.70116,0,0,OGR:SA:CTP100175,Europe/Paris,,OGR, +OGR:SP:100243,1,"Drac",45.149375,5.694172,0,0,OGR:SA:CTP100174,Europe/Paris,,OGR, +OGR:SP:100244,1,"Les Alloves",45.171902,5.764932,0,0,OGR:SA:CTP100244,Europe/Paris,,OGR, +OGR:SP:100245,1,"Glaïeuls",45.169638,5.763583,0,0,OGR:SA:CTP100245,Europe/Paris,,OGR, +OGR:SP:100246,1,"Etienne Grappe",45.172134,5.757118,0,0,OGR:SA:CTP100197,Europe/Paris,,OGR, +OGR:SP:100247,1,"Edmond Rostand",45.174462,5.754321,0,0,OGR:SA:CTP100247,Europe/Paris,,OGR, +OGR:SP:100248,1,"Houille Blanche",45.177946,5.751696,0,0,OGR:SA:CTP100248,Europe/Paris,,OGR, +OGR:SP:100249,1,"Bon Pasteur",45.179385,5.750868,0,0,OGR:SA:CTP100307,Europe/Paris,,OGR, +OGR:SP:100250,1,"Grand Châtelet",45.181937,5.748415,0,0,OGR:SA:CTP100306,Europe/Paris,,OGR, +OGR:SP:100251,1,"Jeanne d'Arc",45.181766,5.745183,0,0,OGR:SA:CTP100251,Europe/Paris,,OGR, +OGR:SP:100252,1,"Madeleine",45.185148,5.743239,0,0,OGR:SA:CTP100252,Europe/Paris,,OGR, +OGR:SP:100253,1,"Bir Hakeim",45.18886,5.736387,0,0,O38:SA:CTP3533,Europe/Paris,,OGR, +OGR:SP:100254,1,"Verdun - Préfecture",45.188409,5.730833,0,0,OGR:SA:CTP100254,Europe/Paris,,OGR, +OGR:SP:100257,1,"Championnet",45.185386,5.7225,0,0,OGR:SA:CTP100257,Europe/Paris,,OGR, +OGR:SP:100258,1,"Condorcet",45.185761,5.71934,0,0,OGR:SA:CTP100258,Europe/Paris,,OGR, +OGR:SP:100259,1,"Chorier - Condorcet",45.185927,5.71744,0,0,OGR:SA:CTP100259,Europe/Paris,,OGR, +OGR:SP:100260,1,"Saint-Bruno",45.185923,5.714027,0,0,OGR:SA:CTP100260,Europe/Paris,,OGR, +OGR:SP:100261,1,"D'Alembert",45.184225,5.710639,0,0,OGR:SA:CTP100261,Europe/Paris,,OGR, +OGR:SP:100262,1,"Vallier - Docteur Calmette",45.180439,5.71018,0,0,OGR:SA:CTP100262,Europe/Paris,,OGR, +OGR:SP:100263,1,"Champs-Elysées",45.177943,5.710245,0,0,OGR:SA:CTP100263,Europe/Paris,,OGR, +OGR:SP:100264,1,"Salengro",45.175662,5.708872,0,0,OGR:SA:CTP100264,Europe/Paris,,OGR, +OGR:SP:100265,1,"Henri Dunant",45.17441,5.708299,0,0,OGR:SA:CTP100265,Europe/Paris,,OGR, +OGR:SP:100266,1,"Docteur Schweitzer",45.172453,5.706322,0,0,OGR:SA:CTP100266,Europe/Paris,,OGR, +OGR:SP:100267,1,"Anatole France",45.171855,5.704949,0,0,OGR:SA:CTP100267,Europe/Paris,,OGR, +OGR:SP:100268,1,"Cité Paul Mistral",45.168547,5.704787,0,0,OGR:SA:CTP100268,Europe/Paris,,OGR, +OGR:SP:100269,1,"Bachelard",45.167184,5.705201,0,0,OGR:SA:CTP100269,Europe/Paris,,OGR, +OGR:SP:100270,1,"Stade Lesdiguières",45.164372,5.710618,0,0,OGR:SA:CTP100270,Europe/Paris,,OGR, +OGR:SP:100271,1,"Verlaine",45.161623,5.716025,0,0,OGR:SA:CTP100271,Europe/Paris,,OGR, +OGR:SP:100272,1,"Maison des Anciens",45.159407,5.723475,0,0,OGR:SA:CTP100272,Europe/Paris,,OGR, +OGR:SP:100273,1,"Edmond Esmonin",45.159073,5.726738,0,0,OGR:SA:CTP100284,Europe/Paris,,OGR, +OGR:SP:100274,1,"Grand'place",45.159255,5.731967,0,0,OGR:SA:CTP100274,Europe/Paris,,OGR, +OGR:SP:100275,1,"Raymond Chanas",45.159421,5.737742,0,0,OGR:SA:CTP100275,Europe/Paris,,OGR, +OGR:SP:100278,1,"Maisons Neuves",45.165176,5.742689,0,0,OGR:SA:CTP100278,Europe/Paris,,OGR, +OGR:SP:100279,1,"Maisons Neuves",45.164755,5.74232,0,0,OGR:SA:CTP100278,Europe/Paris,,OGR, +OGR:SP:100282,1,"Raymond Chanas",45.159676,5.738216,0,0,OGR:SA:CTP100275,Europe/Paris,,OGR, +OGR:SP:100283,1,"Grand'place",45.158928,5.731794,0,0,OGR:SA:CTP100274,Europe/Paris,,OGR, +OGR:SP:100284,1,"Edmond Esmonin",45.159374,5.726617,0,0,OGR:SA:CTP100284,Europe/Paris,,OGR, +OGR:SP:100285,1,"Maison des Anciens",45.159747,5.723254,0,0,OGR:SA:CTP100272,Europe/Paris,,OGR, +OGR:SP:100286,1,"Verlaine",45.161926,5.716133,0,0,OGR:SA:CTP100271,Europe/Paris,,OGR, +OGR:SP:100287,1,"Stade Lesdiguières",45.164677,5.710662,0,0,OGR:SA:CTP100270,Europe/Paris,,OGR, +OGR:SP:100288,1,"Bachelard",45.166689,5.706647,0,0,OGR:SA:CTP100269,Europe/Paris,,OGR, +OGR:SP:100289,1,"Cité Paul Mistral",45.168625,5.704868,0,0,OGR:SA:CTP100268,Europe/Paris,,OGR, +OGR:SP:100290,1,"Anatole France",45.172086,5.705052,0,0,OGR:SA:CTP100267,Europe/Paris,,OGR, +OGR:SP:100291,1,"Docteur Schweitzer",45.172376,5.706776,0,0,OGR:SA:CTP100266,Europe/Paris,,OGR, +OGR:SP:100292,1,"Salengro",45.17557,5.70893,0,0,OGR:SA:CTP100264,Europe/Paris,,OGR, +OGR:SP:100293,1,"Champs-Elysées",45.178312,5.71056,0,0,OGR:SA:CTP100263,Europe/Paris,,OGR, +OGR:SP:100294,1,"Vallier - Docteur Calmette",45.180496,5.711266,0,0,OGR:SA:CTP100262,Europe/Paris,,OGR, +OGR:SP:100295,1,"Abbé Grégoire",45.183885,5.711739,0,0,OGR:SA:CTP100295,Europe/Paris,,OGR, +OGR:SP:100296,1,"Saint-Bruno",45.185881,5.71363,0,0,OGR:SA:CTP100260,Europe/Paris,,OGR, +OGR:SP:100297,1,"Chorier - Condorcet",45.185879,5.717246,0,0,OGR:SA:CTP100259,Europe/Paris,,OGR, +OGR:SP:100298,1,"Condorcet",45.185774,5.71892,0,0,OGR:SA:CTP100258,Europe/Paris,,OGR, +OGR:SP:100299,1,"Championnet",45.185545,5.723184,0,0,OGR:SA:CTP100257,Europe/Paris,,OGR, +OGR:SP:100302,1,"Verdun - Préfecture",45.188393,5.731049,0,0,OGR:SA:CTP100254,Europe/Paris,,OGR, +OGR:SP:100303,1,"Bir Hakeim",45.188795,5.736765,0,0,O38:SA:CTP3533,Europe/Paris,,OGR, +OGR:SP:100304,1,"Madeleine",45.184914,5.743237,0,0,OGR:SA:CTP100252,Europe/Paris,,OGR, +OGR:SP:100305,1,"Jeanne d'Arc",45.181909,5.74579,0,0,OGR:SA:CTP100251,Europe/Paris,,OGR, +OGR:SP:100306,1,"Grand Châtelet",45.181825,5.748522,0,0,OGR:SA:CTP100306,Europe/Paris,,OGR, +OGR:SP:100307,1,"Bon Pasteur",45.178232,5.751472,0,0,OGR:SA:CTP100307,Europe/Paris,,OGR, +OGR:SP:100308,1,"Edmond Rostand",45.174409,5.754292,0,0,OGR:SA:CTP100247,Europe/Paris,,OGR, +OGR:SP:100309,1,"Etienne Grappe",45.172061,5.757126,0,0,OGR:SA:CTP100197,Europe/Paris,,OGR, +OGR:SP:100310,1,"Croix du Pâtre",45.168279,5.762698,0,0,OGR:SA:CTP100195,Europe/Paris,,OGR, +OGR:SP:100311,1,"Glaïeuls",45.170058,5.763978,0,0,OGR:SA:CTP100245,Europe/Paris,,OGR, +OGR:SP:100312,1,"Les Alloves",45.172038,5.765183,0,0,OGR:SA:CTP100244,Europe/Paris,,OGR, +OGR:SP:100313,1,"Lycée du Grésivaudan",45.213405,5.780845,0,0,OGR:SA:CTP100313,Europe/Paris,,OGR, +OGR:SP:100314,1,"Lycée du Grésivaudan - Bachais",45.214161,5.779096,0,0,O38:SA:CTP3489,Europe/Paris,,OGR, +OGR:SP:100315,1,"Faculté de Pharmacie",45.211503,5.773925,0,0,OGR:SA:CTP100315,Europe/Paris,,OGR, +OGR:SP:100316,1,"La Revirée",45.20731,5.767704,0,0,O38:SA:CTP3759,Europe/Paris,,OGR, +OGR:SP:100317,1,"Aiguinards-Hexagone",45.206333,5.764064,0,0,OGR:SA:CTP100317,Europe/Paris,,OGR, +OGR:SP:100318,1,"Place de la Louisiane",45.208762,5.763212,0,0,OGR:SA:CTP100318,Europe/Paris,,OGR, +OGR:SP:100319,1,"Grésivaudan",45.20997,5.761767,0,0,OGR:SA:CTP100319,Europe/Paris,,OGR, +OGR:SP:100320,1,"Jules Flandrin",45.208291,5.757804,0,0,OGR:SA:CTP100320,Europe/Paris,,OGR, +OGR:SP:100321,1,"Le Cèdre",45.207259,5.755333,0,0,OGR:SA:CTP100321,Europe/Paris,,OGR, +OGR:SP:100322,1,"Centre Théologique",45.206169,5.752145,0,0,OGR:SA:CTP100322,Europe/Paris,,OGR, +OGR:SP:100323,1,"Musée Hébert",45.205639,5.748877,0,0,O38:SA:CTP3640,Europe/Paris,,OGR, +OGR:SP:100324,1,"Commandant Nal",45.203235,5.745354,0,0,OGR:SA:CTP100324,Europe/Paris,,OGR, +OGR:SP:100325,1,"Hôpital",45.20152,5.742269,0,0,OGR:SA:CTP100325,Europe/Paris,,OGR, +OGR:SP:100326,1,"Hôpital Michallon",45.197143,5.747578,0,0,OGR:SA:CTP100326,Europe/Paris,,OGR, +OGR:SP:100327,1,"Cimetière du Grand Sablon",45.192475,5.745344,0,0,OGR:SA:CTP100327,Europe/Paris,,OGR, +OGR:SP:100328,1,"Saint-Roch",45.191582,5.739826,0,0,OGR:SA:CTP100328,Europe/Paris,,OGR, +OGR:SP:100329,1,"Mutualité",45.190698,5.735468,0,0,OGR:SA:CTP100329,Europe/Paris,,OGR, +OGR:SP:100331,1,"Chavant",45.184821,5.732447,0,0,OGR:SA:CTP100331,Europe/Paris,,OGR, +OGR:SP:100332,1,"Driant",45.182285,5.7341,0,0,OGR:SA:CTP100332,Europe/Paris,,OGR, +OGR:SP:100333,1,"Auguste Ravier",45.183988,5.739654,0,0,OGR:SA:CTP100333,Europe/Paris,,OGR, +OGR:SP:100334,1,"Edison",45.181834,5.740909,0,0,OGR:SA:CTP100334,Europe/Paris,,OGR, +OGR:SP:100335,1,"Les Bains",45.178206,5.742635,0,0,OGR:SA:CTP100335,Europe/Paris,,OGR, +OGR:SP:100336,1,"André Argouges",45.175062,5.744746,0,0,OGR:SA:CTP100336,Europe/Paris,,OGR, +OGR:SP:100337,1,"Paul Cocat",45.171962,5.745434,0,0,OGR:SA:CTP100337,Europe/Paris,,OGR, +OGR:SP:100338,1,"Léon Jouhaux",45.168994,5.744438,0,0,OGR:SA:CTP100338,Europe/Paris,,OGR, +OGR:SP:100339,1,"Pierre Loti",45.166636,5.746457,0,0,OGR:SA:CTP100339,Europe/Paris,,OGR, +OGR:SP:100340,1,"Paul Eluard",45.165121,5.748871,0,0,OGR:SA:CTP100340,Europe/Paris,,OGR, +OGR:SP:100341,1,"Le Marais",45.163618,5.750618,0,0,OGR:SA:CTP100341,Europe/Paris,,OGR, +OGR:SP:100342,1,"Bel Air",45.161062,5.755253,0,0,OGR:SA:CTP100342,Europe/Paris,,OGR, +OGR:SP:100343,1,"Robespierre",45.15985,5.757176,0,0,OGR:SA:CTP100343,Europe/Paris,,OGR, +OGR:SP:100344,1,"Centre Socio-Culturel",45.158214,5.759736,0,0,OGR:SA:CTP100191,Europe/Paris,,OGR, +OGR:SP:100345,1,"Prémol",45.15752,5.764122,0,0,OGR:SA:CTP100345,Europe/Paris,,OGR, +OGR:SP:100346,1,"Centre Socio-Culturel",45.158267,5.759764,0,0,OGR:SA:CTP100191,Europe/Paris,,OGR, +OGR:SP:100347,1,"Robespierre",45.1598,5.757352,0,0,OGR:SA:CTP100343,Europe/Paris,,OGR, +OGR:SP:100348,1,"Bel Air",45.161096,5.755306,0,0,OGR:SA:CTP100342,Europe/Paris,,OGR, +OGR:SP:100349,1,"Le Marais",45.164029,5.750701,0,0,OGR:SA:CTP100341,Europe/Paris,,OGR, +OGR:SP:100350,1,"Paul Eluard",45.16506,5.749097,0,0,OGR:SA:CTP100340,Europe/Paris,,OGR, +OGR:SP:100351,1,"Pierre Loti",45.16666,5.74656,0,0,OGR:SA:CTP100339,Europe/Paris,,OGR, +OGR:SP:100352,1,"Léon Jouhaux",45.169276,5.744621,0,0,OGR:SA:CTP100338,Europe/Paris,,OGR, +OGR:SP:100353,1,"Paul Cocat",45.172644,5.745782,0,0,OGR:SA:CTP100337,Europe/Paris,,OGR, +OGR:SP:100354,1,"André Argouges",45.175921,5.744035,0,0,OGR:SA:CTP100336,Europe/Paris,,OGR, +OGR:SP:100355,1,"Les Bains",45.178886,5.742486,0,0,OGR:SA:CTP100335,Europe/Paris,,OGR, +OGR:SP:100356,1,"Edison",45.181147,5.741287,0,0,OGR:SA:CTP100334,Europe/Paris,,OGR, +OGR:SP:100357,1,"Clémenceau",45.183882,5.741073,0,0,OGR:SA:CTP100357,Europe/Paris,,OGR, +OGR:SP:100358,1,"Auguste Ravier",45.183779,5.738851,0,0,OGR:SA:CTP100333,Europe/Paris,,OGR, +OGR:SP:100359,1,"Driant",45.182592,5.734093,0,0,OGR:SA:CTP100332,Europe/Paris,,OGR, +OGR:SP:100360,1,"Chavant",45.185022,5.732332,0,0,OGR:SA:CTP100331,Europe/Paris,,OGR, +OGR:SP:100362,1,"Mutualité",45.190465,5.736625,0,0,OGR:SA:CTP100329,Europe/Paris,,OGR, +OGR:SP:100363,1,"Saint-Roch",45.1915,5.739579,0,0,OGR:SA:CTP100328,Europe/Paris,,OGR, +OGR:SP:100364,1,"Cimetière du Grand Sablon",45.192506,5.745511,0,0,OGR:SA:CTP100327,Europe/Paris,,OGR, +OGR:SP:100365,1,"Hôpital Michallon",45.197303,5.747066,0,0,OGR:SA:CTP100326,Europe/Paris,,OGR, +OGR:SP:100366,1,"Hôpital",45.201508,5.74237,0,0,OGR:SA:CTP100325,Europe/Paris,,OGR, +OGR:SP:100367,1,"Commandant Nal",45.203308,5.745614,0,0,OGR:SA:CTP100324,Europe/Paris,,OGR, +OGR:SP:100368,1,"Musée Hébert",45.205611,5.748901,0,0,O38:SA:CTP3640,Europe/Paris,,OGR, +OGR:SP:100369,1,"Centre Théologique",45.206283,5.75312,0,0,OGR:SA:CTP100322,Europe/Paris,,OGR, +OGR:SP:100370,1,"Le Cèdre",45.207802,5.756729,0,0,OGR:SA:CTP100321,Europe/Paris,,OGR, +OGR:SP:100371,1,"Jules Flandrin",45.208766,5.75903,0,0,OGR:SA:CTP100320,Europe/Paris,,OGR, +OGR:SP:100372,1,"Grésivaudan",45.20969,5.761202,0,0,OGR:SA:CTP100319,Europe/Paris,,OGR, +OGR:SP:100373,1,"Place de la Louisiane",45.208689,5.763148,0,0,OGR:SA:CTP100318,Europe/Paris,,OGR, +OGR:SP:100374,1,"Aiguinards-Hexagone",45.206077,5.764189,0,0,OGR:SA:CTP100317,Europe/Paris,,OGR, +OGR:SP:100375,1,"La Revirée",45.20741,5.767978,0,0,O38:SA:CTP3759,Europe/Paris,,OGR, +OGR:SP:100376,1,"Faculté de Pharmacie",45.211897,5.774573,0,0,OGR:SA:CTP100315,Europe/Paris,,OGR, +OGR:SP:100377,1,"Lycée du Grésivaudan - Bachais",45.214028,5.779037,0,0,O38:SA:CTP3489,Europe/Paris,,OGR, +OGR:SP:100378,1,"Lycée du Grésivaudan",45.213336,5.781032,0,0,OGR:SA:CTP100313,Europe/Paris,,OGR, +OGR:SP:100379,1,"Gières Gare - Universités",45.184899,5.785457,0,0,OGR:SA:CTP100379,Europe/Paris,,OGR, +OGR:SP:100380,1,"Edelweiss",45.181493,5.78755,0,0,OGR:SA:CTP100380,Europe/Paris,,OGR, +OGR:SP:100381,1,"Roseraie",45.179013,5.781005,0,0,OGR:SA:CTP100381,Europe/Paris,,OGR, +OGR:SP:100382,1,"Anguisses",45.177823,5.777863,0,0,OGR:SA:CTP100382,Europe/Paris,,OGR, +OGR:SP:100383,1,"Galochère",45.178779,5.773148,0,0,OGR:SA:CTP100383,Europe/Paris,,OGR, +OGR:SP:100384,1,"Elsa Triolet",45.179583,5.770155,0,0,OGR:SA:CTP100384,Europe/Paris,,OGR, +OGR:SP:100385,1,"Coli",45.18073,5.765961,0,0,OGR:SA:CTP100202,Europe/Paris,,OGR, +OGR:SP:100386,1,"Portail Rouge",45.181401,5.763469,0,0,OGR:SA:CTP100386,Europe/Paris,,OGR, +OGR:SP:100387,1,"Cité Labeye",45.182217,5.760374,0,0,OGR:SA:CTP100387,Europe/Paris,,OGR, +OGR:SP:100388,1,"Maison Communale",45.184014,5.753762,0,0,OGR:SA:CTP100388,Europe/Paris,,OGR, +OGR:SP:100389,1,"Gay",45.184797,5.750857,0,0,OGR:SA:CTP100389,Europe/Paris,,OGR, +OGR:SP:100390,1,"Croix Rouge",45.185581,5.7479,0,0,OGR:SA:CTP100390,Europe/Paris,,OGR, +OGR:SP:100391,1,"Flandrin - Valmy",45.186563,5.744357,0,0,OGR:SA:CTP100391,Europe/Paris,,OGR, +OGR:SP:100392,1,"Verdun - Préfecture",45.188276,5.731627,0,0,OGR:SA:CTP100254,Europe/Paris,,OGR, +OGR:SP:100393,1,"Flandrin - Valmy",45.186491,5.744352,0,0,OGR:SA:CTP100391,Europe/Paris,,OGR, +OGR:SP:100394,1,"Croix Rouge",45.185546,5.74786,0,0,OGR:SA:CTP100390,Europe/Paris,,OGR, +OGR:SP:100395,1,"Gay",45.184478,5.751856,0,0,OGR:SA:CTP100389,Europe/Paris,,OGR, +OGR:SP:100396,1,"Maison Communale",45.18395,5.753784,0,0,OGR:SA:CTP100388,Europe/Paris,,OGR, +OGR:SP:100397,1,"Cité Labeye",45.182528,5.759056,0,0,OGR:SA:CTP100387,Europe/Paris,,OGR, +OGR:SP:100398,1,"Portail Rouge",45.18136,5.763339,0,0,OGR:SA:CTP100386,Europe/Paris,,OGR, +OGR:SP:100399,1,"Coli",45.180711,5.765705,0,0,OGR:SA:CTP100202,Europe/Paris,,OGR, +OGR:SP:100400,1,"Elsa Triolet",45.179522,5.770087,0,0,OGR:SA:CTP100384,Europe/Paris,,OGR, +OGR:SP:100401,1,"Galochère",45.178695,5.773232,0,0,OGR:SA:CTP100383,Europe/Paris,,OGR, +OGR:SP:100402,1,"Anguisses",45.177801,5.777976,0,0,OGR:SA:CTP100382,Europe/Paris,,OGR, +OGR:SP:100403,1,"Roseraie",45.178969,5.780977,0,0,OGR:SA:CTP100381,Europe/Paris,,OGR, +OGR:SP:100404,1,"Edelweiss",45.181425,5.787711,0,0,OGR:SA:CTP100380,Europe/Paris,,OGR, +OGR:SP:100405,1,"Gières Gare - Universités",45.184913,5.785267,0,0,OGR:SA:CTP100379,Europe/Paris,,OGR, +OGR:SP:100406,1,"Chenevières",45.206732,5.827344,0,0,O38:SA:CTP3873,Europe/Paris,,OGR, +OGR:SP:100407,1,"Les Vernes",45.207135,5.83398,0,0,OGR:SA:CTP100407,Europe/Paris,,OGR, +OGR:SP:100408,1,"Le Prieuré",45.204891,5.835762,0,0,OGR:SA:CTP100408,Europe/Paris,,OGR, +OGR:SP:100409,1,"Les Arnauds",45.206832,5.847884,0,0,OGE:SA:CTP3834,Europe/Paris,,OGR, +OGR:SP:100410,1,"René Cassin",45.2045,5.844157,0,0,OGE:SA:CTP3915,Europe/Paris,,OGR, +OGR:SP:100411,1,"Domène Mairie",45.201518,5.838212,0,0,OGR:SA:CTP100411,Europe/Paris,,OGR, +OGR:SP:100412,1,"Coubertin",45.200044,5.835279,0,0,OGR:SA:CTP100412,Europe/Paris,,OGR, +OGR:SP:100413,1,"L'Oratoire",45.19819,5.834118,0,0,O38:SA:CTP3791,Europe/Paris,,OGR, +OGR:SP:100414,1,"Les Mortes",45.196356,5.82887,0,0,O38:SA:CTP3920,Europe/Paris,,OGR, +OGR:SP:100415,1,"Les Rivets",45.194826,5.824545,0,0,OGR:SA:CTP100415,Europe/Paris,,OGR, +OGR:SP:100416,1,"La Briot",45.192986,5.819476,0,0,OGR:SA:CTP100416,Europe/Paris,,OGR, +OGR:SP:100417,1,"Le Bourg",45.191873,5.816465,0,0,OGR:SA:CTP100417,Europe/Paris,,OGR, +OGR:SP:100418,1,"La Perrière",45.189021,5.810059,0,0,OGR:SA:CTP100418,Europe/Paris,,OGR, +OGR:SP:100419,1,"Le Japin",45.187458,5.807058,0,0,OGR:SA:CTP100419,Europe/Paris,,OGR, +OGR:SP:100420,1,"Champrondet",45.18578,5.802854,0,0,OGR:SA:CTP100420,Europe/Paris,,OGR, +OGR:SP:100421,1,"Pied de Gières",45.18388,5.798521,0,0,OGR:SA:CTP100421,Europe/Paris,,OGR, +OGR:SP:100422,1,"Place de la République",45.182093,5.792565,0,0,OGR:SA:CTP100422,Europe/Paris,,OGR, +OGR:SP:100423,1,"Le Sonnant",45.181607,5.782706,0,0,OGR:SA:CTP100423,Europe/Paris,,OGR, +OGR:SP:100424,1,"Porte du Grésivaudan",45.182524,5.776652,0,0,OGR:SA:CTP100424,Europe/Paris,,OGR, +OGR:SP:100425,1,"Champ Roman",45.184529,5.767456,0,0,OGR:SA:CTP100435,Europe/Paris,,OGR, +OGR:SP:100426,1,"Clinique Belledonne",45.185981,5.76095,0,0,O38:SA:CTP3655,Europe/Paris,,OGR, +OGR:SP:100427,1,"Neyrpic - Belledonne",45.186701,5.757162,0,0,OGR:SA:CTP100427,Europe/Paris,,OGR, +OGR:SP:100428,1,"Péri - Brossolette",45.187616,5.752596,0,0,OGR:SA:CTP100428,Europe/Paris,,OGR, +OGR:SP:100429,1,"Flandrin - Valmy",45.187173,5.744738,0,0,OGR:SA:CTP100391,Europe/Paris,,OGR, +OGR:SP:100430,1,"Verdun - Préfecture",45.188285,5.731628,0,0,OGR:SA:CTP100254,Europe/Paris,,OGR, +OGR:SP:100431,1,"Flandrin - Valmy",45.186959,5.744356,0,0,OGR:SA:CTP100391,Europe/Paris,,OGR, +OGR:SP:100432,1,"Péri - Brossolette",45.187571,5.75258,0,0,OGR:SA:CTP100428,Europe/Paris,,OGR, +OGR:SP:100433,1,"Neyrpic - Belledonne",45.186845,5.756279,0,0,OGR:SA:CTP100427,Europe/Paris,,OGR, +OGR:SP:100434,1,"Clinique Belledonne",45.18591,5.760322,0,0,O38:SA:CTP3655,Europe/Paris,,OGR, +OGR:SP:100435,1,"Champ Roman",45.184341,5.767686,0,0,OGR:SA:CTP100435,Europe/Paris,,OGR, +OGR:SP:100436,1,"Porte du Grésivaudan",45.182316,5.77697,0,0,OGR:SA:CTP100424,Europe/Paris,,OGR, +OGR:SP:100437,1,"Le Sonnant",45.181418,5.781561,0,0,OGR:SA:CTP100423,Europe/Paris,,OGR, +OGR:SP:100438,1,"Place de la République",45.182071,5.792691,0,0,OGR:SA:CTP100422,Europe/Paris,,OGR, +OGR:SP:100439,1,"Pied de Gières",45.183809,5.798491,0,0,OGR:SA:CTP100421,Europe/Paris,,OGR, +OGR:SP:100440,1,"Champrondet",45.185733,5.802914,0,0,OGR:SA:CTP100420,Europe/Paris,,OGR, +OGR:SP:100441,1,"Le Japin",45.187822,5.807807,0,0,OGR:SA:CTP100419,Europe/Paris,,OGR, +OGR:SP:100442,1,"La Perrière",45.189707,5.811732,0,0,OGR:SA:CTP100418,Europe/Paris,,OGR, +OGR:SP:100443,1,"Le Bourg",45.191859,5.816629,0,0,OGR:SA:CTP100417,Europe/Paris,,OGR, +OGR:SP:100444,1,"La Briot",45.193281,5.820412,0,0,OGR:SA:CTP100416,Europe/Paris,,OGR, +OGR:SP:100445,1,"Les Rivets",45.194878,5.82488,0,0,OGR:SA:CTP100415,Europe/Paris,,OGR, +OGR:SP:100446,1,"Les Mortes",45.196375,5.829113,0,0,O38:SA:CTP3920,Europe/Paris,,OGR, +OGR:SP:100447,1,"L'Oratoire",45.198016,5.833623,0,0,O38:SA:CTP3791,Europe/Paris,,OGR, +OGR:SP:100448,1,"Coubertin",45.200032,5.835367,0,0,OGR:SA:CTP100412,Europe/Paris,,OGR, +OGR:SP:100449,1,"Domène Mairie",45.201367,5.838151,0,0,OGR:SA:CTP100411,Europe/Paris,,OGR, +OGR:SP:100450,1,"René Cassin",45.204244,5.843734,0,0,OGE:SA:CTP3915,Europe/Paris,,OGR, +OGR:SP:100451,1,"Le Prieuré",45.204565,5.836099,0,0,OGR:SA:CTP100408,Europe/Paris,,OGR, +OGR:SP:100452,1,"Les Vernes",45.207362,5.833918,0,0,OGR:SA:CTP100407,Europe/Paris,,OGR, +OGR:SP:100453,1,"Gendarmerie",45.140033,5.698523,0,0,OGR:SA:CTP100453,Europe/Paris,,OGR, +OGR:SP:100454,1,"Danielle Casanova",45.144477,5.700708,0,0,OGR:SA:CTP100454,Europe/Paris,,OGR, +OGR:SP:100455,1,"Bayard",45.146034,5.704314,0,0,O38:SA:CTP2487,Europe/Paris,,OGR, +OGR:SP:100456,1,"Auguste Ferrier",45.144828,5.709622,0,0,OGR:SA:CTP100456,Europe/Paris,,OGR, +OGR:SP:100457,1,"Auguste Delaune",45.143364,5.714228,0,0,OGR:SA:CTP100457,Europe/Paris,,OGR, +OGR:SP:100458,1,"Marie Curie",45.144991,5.717292,0,0,OGR:SA:CTP100458,Europe/Paris,,OGR, +OGR:SP:100459,1,"Paul Héroult",45.147277,5.713474,0,0,OGR:SA:CTP100459,Europe/Paris,,OGR, +OGR:SP:100460,1,"Les Glières",45.149619,5.711669,0,0,OGR:SA:CTP100460,Europe/Paris,,OGR, +OGR:SP:100461,1,"Grugliasco",45.151817,5.710161,0,0,OGR:SA:CTP100180,Europe/Paris,,OGR, +OGR:SP:100462,1,"Monmousseau",45.153547,5.711882,0,0,OGR:SA:CTP100462,Europe/Paris,,OGR, +OGR:SP:100463,1,"Les Essarts",45.159297,5.713758,0,0,OGR:SA:CTP100463,Europe/Paris,,OGR, +OGR:SP:100464,1,"Verlaine",45.1621,5.716054,0,0,OGR:SA:CTP100271,Europe/Paris,,OGR, +OGR:SP:100465,1,"Beauvert",45.164168,5.717923,0,0,OGR:SA:CTP100465,Europe/Paris,,OGR, +OGR:SP:100466,1,"Massenet",45.167709,5.721079,0,0,OGR:SA:CTP100466,Europe/Paris,,OGR, +OGR:SP:100467,1,"Clos d'Or",45.169487,5.722715,0,0,OGR:SA:CTP100467,Europe/Paris,,OGR, +OGR:SP:100468,1,"Eugène Sue",45.172837,5.724765,0,0,OGR:SA:CTP100468,Europe/Paris,,OGR, +OGR:SP:100469,1,"Capuche",45.176153,5.726151,0,0,OGR:SA:CTP100469,Europe/Paris,,OGR, +OGR:SP:100470,1,"Rue des Déportés",45.178294,5.727707,0,0,OGR:SA:CTP100470,Europe/Paris,,OGR, +OGR:SP:100471,1,"Gustave Rivet",45.181703,5.727826,0,0,OGR:SA:CTP100471,Europe/Paris,,OGR, +OGR:SP:100472,1,"Caserne de Bonne",45.185089,5.725423,0,0,OGR:SA:CTP100472,Europe/Paris,,OGR, +OGR:SP:100473,1,"Saint-Roch",45.191728,5.737989,0,0,OGR:SA:CTP100328,Europe/Paris,,OGR, +OGR:SP:100474,1,"Hôtel de Police",45.194094,5.735714,0,0,OGR:SA:CTP100474,Europe/Paris,,OGR, +OGR:SP:100475,1,"Notre-Dame - Musée",45.194111,5.73192,0,0,OGR:SA:CTP101519,Europe/Paris,,OGR, +OGR:SP:100476,1,"Saint-Laurent",45.197979,5.732628,0,0,OGR:SA:CTP100476,Europe/Paris,,OGR, +OGR:SP:100477,1,"Petite Tronche",45.20212,5.734422,0,0,OGR:SA:CTP100477,Europe/Paris,,OGR, +OGR:SP:100478,1,"Bastille",45.204608,5.737873,0,0,OGR:SA:CTP100478,Europe/Paris,,OGR, +OGR:SP:100479,1,"Jules Rey",45.206582,5.742783,0,0,OGR:SA:CTP100479,Europe/Paris,,OGR, +OGR:SP:100480,1,"Grande Tronche",45.20704,5.745779,0,0,OGR:SA:CTP100480,Europe/Paris,,OGR, +OGR:SP:100481,1,"Croix de Montfleury",45.208794,5.749339,0,0,OGR:SA:CTP100481,Europe/Paris,,OGR, +OGR:SP:100482,1,"Mairie",45.210192,5.752787,0,0,OGR:SA:CTP100786,Europe/Paris,,OGR, +OGR:SP:100483,1,"Montfleury",45.211856,5.756367,0,0,OGR:SA:CTP100483,Europe/Paris,,OGR, +OGR:SP:100484,1,"Eygala",45.213853,5.764605,0,0,OGR:SA:CTP100484,Europe/Paris,,OGR, +OGR:SP:100485,1,"Les Oiseaux",45.21506,5.768667,0,0,OGR:SA:CTP100485,Europe/Paris,,OGR, +OGR:SP:100486,1,"Buclos",45.215814,5.772255,0,0,OGR:SA:CTP100486,Europe/Paris,,OGR, +OGR:SP:100487,1,"La Foy",45.217101,5.776335,0,0,OGR:SA:CTP100487,Europe/Paris,,OGR, +OGR:SP:100488,1,"Haut-Meylan",45.217986,5.778288,0,0,OGR:SA:CTP100488,Europe/Paris,,OGR, +OGR:SP:100489,1,"Les Mûriers",45.21605,5.779468,0,0,OGR:SA:CTP100489,Europe/Paris,,OGR, +OGR:SP:100490,1,"Les Mûriers",45.215044,5.779685,0,0,OGR:SA:CTP100489,Europe/Paris,,OGR, +OGR:SP:100491,1,"Haut-Meylan",45.217852,5.777961,0,0,OGR:SA:CTP100488,Europe/Paris,,OGR, +OGR:SP:100492,1,"La Foy",45.216805,5.775718,0,0,OGR:SA:CTP100487,Europe/Paris,,OGR, +OGR:SP:100493,1,"Buclos",45.215698,5.771636,0,0,OGR:SA:CTP100486,Europe/Paris,,OGR, +OGR:SP:100494,1,"Les Oiseaux",45.215047,5.768526,0,0,OGR:SA:CTP100485,Europe/Paris,,OGR, +OGR:SP:100495,1,"Eygala",45.213772,5.764307,0,0,OGR:SA:CTP100484,Europe/Paris,,OGR, +OGR:SP:100496,1,"Montfleury",45.212188,5.757572,0,0,OGR:SA:CTP100483,Europe/Paris,,OGR, +OGR:SP:100497,1,"Mairie",45.210127,5.752554,0,0,OGR:SA:CTP100786,Europe/Paris,,OGR, +OGR:SP:100498,1,"Croix de Montfleury",45.208833,5.749265,0,0,OGR:SA:CTP100481,Europe/Paris,,OGR, +OGR:SP:100499,1,"Grande Tronche",45.207017,5.745357,0,0,OGR:SA:CTP100480,Europe/Paris,,OGR, +OGR:SP:100500,1,"Jules Rey",45.206487,5.74237,0,0,OGR:SA:CTP100479,Europe/Paris,,OGR, +OGR:SP:100501,1,"Bastille",45.204436,5.737595,0,0,OGR:SA:CTP100478,Europe/Paris,,OGR, +OGR:SP:100502,1,"Petite Tronche",45.201948,5.734157,0,0,OGR:SA:CTP100477,Europe/Paris,,OGR, +OGR:SP:100503,1,"Saint-Laurent",45.198017,5.732566,0,0,OGR:SA:CTP100476,Europe/Paris,,OGR, +OGR:SP:100504,1,"Xavier Jouvin",45.195599,5.730088,0,0,OGR:SA:CTP100504,Europe/Paris,,OGR, +OGR:SP:100505,1,"Notre-Dame - Musée",45.193915,5.732163,0,0,OGR:SA:CTP101519,Europe/Paris,,OGR, +OGR:SP:100506,1,"Hôtel de Police",45.193396,5.736168,0,0,OGR:SA:CTP100474,Europe/Paris,,OGR, +OGR:SP:100507,1,"Saint-Roch",45.191668,5.737896,0,0,OGR:SA:CTP100328,Europe/Paris,,OGR, +OGR:SP:100508,1,"Caserne de Bonne",45.185056,5.725332,0,0,OGR:SA:CTP100472,Europe/Paris,,OGR, +OGR:SP:100509,1,"Gustave Rivet",45.1812,5.728063,0,0,OGR:SA:CTP100471,Europe/Paris,,OGR, +OGR:SP:100510,1,"Rue des Déportés",45.177908,5.727365,0,0,OGR:SA:CTP100470,Europe/Paris,,OGR, +OGR:SP:100511,1,"Capuche",45.17582,5.725876,0,0,OGR:SA:CTP100469,Europe/Paris,,OGR, +OGR:SP:100512,1,"Eugène Sue",45.17304,5.724599,0,0,OGR:SA:CTP100468,Europe/Paris,,OGR, +OGR:SP:100513,1,"Clos d'Or",45.169456,5.722547,0,0,OGR:SA:CTP100467,Europe/Paris,,OGR, +OGR:SP:100514,1,"Massenet",45.167993,5.721236,0,0,OGR:SA:CTP100466,Europe/Paris,,OGR, +OGR:SP:100515,1,"Beauvert",45.164146,5.717757,0,0,OGR:SA:CTP100465,Europe/Paris,,OGR, +OGR:SP:100516,1,"Verlaine",45.162366,5.716172,0,0,OGR:SA:CTP100271,Europe/Paris,,OGR, +OGR:SP:100517,1,"Les Essarts",45.159188,5.713523,0,0,OGR:SA:CTP100463,Europe/Paris,,OGR, +OGR:SP:100518,1,"Monmousseau",45.153271,5.711496,0,0,OGR:SA:CTP100462,Europe/Paris,,OGR, +OGR:SP:100519,1,"Grugliasco",45.151567,5.70979,0,0,OGR:SA:CTP100180,Europe/Paris,,OGR, +OGR:SP:100520,1,"Les Glières",45.149702,5.711598,0,0,OGR:SA:CTP100460,Europe/Paris,,OGR, +OGR:SP:100521,1,"Paul Héroult",45.1478,5.712856,0,0,OGR:SA:CTP100459,Europe/Paris,,OGR, +OGR:SP:100522,1,"Marie Curie",45.144702,5.716434,0,0,OGR:SA:CTP100458,Europe/Paris,,OGR, +OGR:SP:100523,1,"Auguste Delaune",45.143408,5.714269,0,0,OGR:SA:CTP100457,Europe/Paris,,OGR, +OGR:SP:100524,1,"Auguste Ferrier",45.144914,5.709755,0,0,OGR:SA:CTP100456,Europe/Paris,,OGR, +OGR:SP:100525,1,"Danielle Casanova",45.14406,5.700505,0,0,OGR:SA:CTP100454,Europe/Paris,,OGR, +OGR:SP:100526,1,"Vassieux",45.14303,5.700022,0,0,OGR:SA:CTP100526,Europe/Paris,,OGR, +OGR:SP:100529,1,"Vallier - Libération",45.178567,5.71577,0,0,OGR:SA:CTP100529,Europe/Paris,,OGR, +OGR:SP:100530,1,"Alliés",45.173309,5.713999,0,0,OGR:SA:CTP100530,Europe/Paris,,OGR, +OGR:SP:100531,1,"Louise Michel",45.170182,5.712905,0,0,OGR:SA:CTP100531,Europe/Paris,,OGR, +OGR:SP:100532,1,"Stade Lesdiguières",45.163844,5.710802,0,0,OGR:SA:CTP100270,Europe/Paris,,OGR, +OGR:SP:100533,1,"Le Rondeau",45.160243,5.709603,0,0,OGR:SA:CTP100533,Europe/Paris,,OGR, +OGR:SP:100534,1,"Pompidou",45.119862,5.69267,0,0,OGR:SA:CTP100534,Europe/Paris,,OGR, +OGR:SP:100535,1,"Pont Rouge",45.118576,5.69319,0,0,OGR:SA:CTP100535,Europe/Paris,,OGR, +OGR:SP:100536,1,"Carrière",45.114715,5.690185,0,0,OGR:SA:CTP100536,Europe/Paris,,OGR, +OGR:SP:100537,1,"Pré de l'Orme",45.110388,5.688551,0,0,OGR:SA:CTP100537,Europe/Paris,,OGR, +OGR:SP:100538,1,"Le Rochefort",45.101644,5.685342,0,0,OGR:SA:CTP100538,Europe/Paris,,OGR, +OGR:SP:100539,1,"Saint-Ange",45.096833,5.683667,0,0,OGR:SA:CTP100539,Europe/Paris,,OGR, +OGR:SP:100540,1,"Rond-Point de l'Europe",45.093034,5.683642,0,0,OGR:SA:CTP100540,Europe/Paris,,OGR, +OGR:SP:100541,1,"L'Oriel",45.089841,5.683587,0,0,OGR:SA:CTP100541,Europe/Paris,,OGR, +OGR:SP:100542,1,"République",45.086836,5.683155,0,0,OGR:SA:CTP100542,Europe/Paris,,OGR, +OGR:SP:100543,1,"Pélissière",45.070568,5.675061,0,0,O38:SA:CTP1426,Europe/Paris,,OGR, +OGR:SP:100544,1,"Les Garcins",45.06315,5.669345,0,0,OGR:SA:CTP100544,Europe/Paris,,OGR, +OGR:SP:100545,1,"Uriol",45.060635,5.668559,0,0,OGR:SA:CTP100545,Europe/Paris,,OGR, +OGR:SP:100546,1,"Mairie",45.056006,5.6686,0,0,O38:SA:CTP1468,Europe/Paris,,OGR, +OGR:SP:100547,1,"Gendarmerie",45.053012,5.676549,0,0,O38:SA:CTP1438,Europe/Paris,,OGR, +OGR:SP:100548,1,"Le Masségu",45.051944,5.674644,0,0,OGR:SA:CTP100548,Europe/Paris,,OGR, +OGR:SP:100549,1,"La Valonne",45.050307,5.671294,0,0,OGR:SA:CTP100549,Europe/Paris,,OGR, +OGR:SP:100550,1,"La Cime du Bourg",45.048119,5.667391,0,0,OGR:SA:CTP100550,Europe/Paris,,OGR, +OGR:SP:100551,1,"Le Chalet",45.043329,5.6644,0,0,O38:SA:CTP1452,Europe/Paris,,OGR, +OGR:SP:100552,1,"La Grange",45.039327,5.661265,0,0,O38:SA:CTP1464,Europe/Paris,,OGR, +OGR:SP:100553,1,"Le Rif",45.032299,5.655462,0,0,OGR:SA:CTP100553,Europe/Paris,,OGR, +OGR:SP:100554,1,"L'Usine Nord",45.030001,5.652812,0,0,OGR:SA:CTP100554,Europe/Paris,,OGR, +OGR:SP:100555,1,"Le Pont de Genevrey",45.028522,5.651708,0,0,OGR:SA:CTP100555,Europe/Paris,,OGR, +OGR:SP:100556,1,"Les Saillants",45.024629,5.645802,0,0,OGR:SA:CTP100556,Europe/Paris,,OGR, +OGR:SP:100557,1,"Les Saillants",45.024515,5.645706,0,0,OGR:SA:CTP100556,Europe/Paris,,OGR, +OGR:SP:100558,1,"Le Pont de Genevrey",45.027923,5.651241,0,0,OGR:SA:CTP100555,Europe/Paris,,OGR, +OGR:SP:100559,1,"L'Usine Nord",45.029876,5.652779,0,0,OGR:SA:CTP100554,Europe/Paris,,OGR, +OGR:SP:100560,1,"Le Rif",45.032577,5.655784,0,0,OGR:SA:CTP100553,Europe/Paris,,OGR, +OGR:SP:100561,1,"La Grange",45.039159,5.661179,0,0,O38:SA:CTP1464,Europe/Paris,,OGR, +OGR:SP:100562,1,"Le Chalet",45.043552,5.664489,0,0,O38:SA:CTP1452,Europe/Paris,,OGR, +OGR:SP:100563,1,"La Cime du Bourg",45.048252,5.667463,0,0,OGR:SA:CTP100550,Europe/Paris,,OGR, +OGR:SP:100564,1,"La Valonne",45.050271,5.671571,0,0,OGR:SA:CTP100549,Europe/Paris,,OGR, +OGR:SP:100565,1,"Le Masségu",45.052098,5.675212,0,0,OGR:SA:CTP100548,Europe/Paris,,OGR, +OGR:SP:100566,1,"Gendarmerie",45.053082,5.676604,0,0,O38:SA:CTP1438,Europe/Paris,,OGR, +OGR:SP:100567,1,"Mairie",45.055842,5.668971,0,0,O38:SA:CTP1468,Europe/Paris,,OGR, +OGR:SP:100568,1,"Uriol",45.060668,5.668663,0,0,OGR:SA:CTP100545,Europe/Paris,,OGR, +OGR:SP:100569,1,"Les Garcins",45.064609,5.670525,0,0,OGR:SA:CTP100544,Europe/Paris,,OGR, +OGR:SP:100570,1,"Pélissière",45.070388,5.675051,0,0,O38:SA:CTP1426,Europe/Paris,,OGR, +OGR:SP:100571,1,"République",45.086346,5.682985,0,0,OGR:SA:CTP100542,Europe/Paris,,OGR, +OGR:SP:100572,1,"L'Oriel",45.088964,5.683643,0,0,OGR:SA:CTP100541,Europe/Paris,,OGR, +OGR:SP:100573,1,"Rond-Point de l'Europe",45.093121,5.683749,0,0,OGR:SA:CTP100540,Europe/Paris,,OGR, +OGR:SP:100574,1,"Saint-Ange",45.097589,5.683954,0,0,OGR:SA:CTP100539,Europe/Paris,,OGR, +OGR:SP:100575,1,"Le Rochefort",45.102259,5.685837,0,0,OGR:SA:CTP100538,Europe/Paris,,OGR, +OGR:SP:100576,1,"Pré de l'Orme",45.108933,5.688133,0,0,OGR:SA:CTP100537,Europe/Paris,,OGR, +OGR:SP:100577,1,"Carrière",45.114801,5.690292,0,0,OGR:SA:CTP100536,Europe/Paris,,OGR, +OGR:SP:100578,1,"Pont Rouge",45.1186,5.693306,0,0,OGR:SA:CTP100535,Europe/Paris,,OGR, +OGR:SP:100579,1,"Pompidou",45.119928,5.692547,0,0,OGR:SA:CTP100534,Europe/Paris,,OGR, +OGR:SP:100580,1,"Le Rondeau",45.161201,5.710094,0,0,OGR:SA:CTP100533,Europe/Paris,,OGR, +OGR:SP:100581,1,"Stade Lesdiguières",45.163901,5.711009,0,0,OGR:SA:CTP100270,Europe/Paris,,OGR, +OGR:SP:100582,1,"Louise Michel",45.169551,5.712918,0,0,OGR:SA:CTP100531,Europe/Paris,,OGR, +OGR:SP:100583,1,"Louise Michel",45.169191,5.712616,0,0,OGR:SA:CTP100531,Europe/Paris,,OGR, +OGR:SP:100584,1,"Alliés",45.173385,5.714182,0,0,OGR:SA:CTP100530,Europe/Paris,,OGR, +OGR:SP:100585,1,"Vallier - Libération",45.179079,5.716132,0,0,OGR:SA:CTP100529,Europe/Paris,,OGR, +OGR:SP:100587,1,"Flottibulle",45.138042,5.701833,0,0,O38:SA:CTP2534,Europe/Paris,,OGR, +OGR:SP:100588,1,"Flottibulle",45.138036,5.702901,0,0,O38:SA:CTP2534,Europe/Paris,,OGR, +OGR:SP:100589,1,"Grand Galet",45.136788,5.70813,0,0,OGR:SA:CTP100589,Europe/Paris,,OGR, +OGR:SP:100590,1,"Gay Lussac",45.13645,5.712142,0,0,OGR:SA:CTP100590,Europe/Paris,,OGR, +OGR:SP:100591,1,"Denis Papin",45.138866,5.71323,0,0,OGR:SA:CTP100591,Europe/Paris,,OGR, +OGR:SP:100593,1,"Le Village",45.141326,5.720567,0,0,OGR:SA:CTP100593,Europe/Paris,,OGR, +OGR:SP:100594,1,"Paul Langevin",45.143463,5.723127,0,0,OGR:SA:CTP100594,Europe/Paris,,OGR, +OGR:SP:100595,1,"Guy Mocquet",45.145477,5.725846,0,0,OGR:SA:CTP100595,Europe/Paris,,OGR, +OGR:SP:100597,1,"L'Iliade",45.147438,5.746208,0,0,OGR:SA:CTP100597,Europe/Paris,,OGR, +OGR:SP:100598,1,"Les Javaux",45.149794,5.749827,0,0,OGR:SA:CTP100598,Europe/Paris,,OGR, +OGR:SP:100600,1,"Les Javaux",45.149557,5.749341,0,0,OGR:SA:CTP100598,Europe/Paris,,OGR, +OGR:SP:100601,1,"L'Iliade",45.146671,5.744813,0,0,OGR:SA:CTP100597,Europe/Paris,,OGR, +OGR:SP:100603,1,"Guy Mocquet",45.14511,5.725187,0,0,OGR:SA:CTP100595,Europe/Paris,,OGR, +OGR:SP:100604,1,"Paul Langevin",45.143267,5.722747,0,0,OGR:SA:CTP100594,Europe/Paris,,OGR, +OGR:SP:100605,1,"Le Village",45.141164,5.720252,0,0,OGR:SA:CTP100593,Europe/Paris,,OGR, +OGR:SP:100607,1,"Denis Papin",45.138252,5.712709,0,0,OGR:SA:CTP100591,Europe/Paris,,OGR, +OGR:SP:100608,1,"Gay Lussac",45.13634,5.711906,0,0,OGR:SA:CTP100590,Europe/Paris,,OGR, +OGR:SP:100609,1,"Grand Galet",45.136818,5.708335,0,0,OGR:SA:CTP100589,Europe/Paris,,OGR, +OGR:SP:100610,1,"L'Ovalie",45.209763,5.666934,0,0,OGR:SA:CTP100610,Europe/Paris,,OGR, +OGR:SP:100611,1,"Le Gua",45.209714,5.664371,0,0,OGR:SA:CTP100611,Europe/Paris,,OGR, +OGR:SP:100612,1,"Place de la Libération",45.206711,5.662739,0,0,O38:SA:CTP3133,Europe/Paris,,OGR, +OGR:SP:100613,1,"Trefforine",45.204097,5.665244,0,0,OGR:SA:CTP100613,Europe/Paris,,OGR, +OGR:SP:100614,1,"Pré Fleury",45.201451,5.667913,0,0,OGR:SA:CTP100614,Europe/Paris,,OGR, +OGR:SP:100615,1,"Les Pies",45.19952,5.669848,0,0,O38:SA:CTP3450,Europe/Paris,,OGR, +OGR:SP:100616,1,"La Poya",45.197271,5.672196,0,0,O38:SA:CTP3420,Europe/Paris,,OGR, +OGR:SP:100617,1,"Gérard Philipe",45.196473,5.677165,0,0,OGR:SA:CTP100617,Europe/Paris,,OGR, +OGR:SP:100618,1,"Rue des Alpes",45.198316,5.681453,0,0,OGR:SA:CTP100618,Europe/Paris,,OGR, +OGR:SP:100619,1,"Marat",45.199094,5.682812,0,0,OGR:SA:CTP100619,Europe/Paris,,OGR, +OGR:SP:100620,1,"Les Écrins",45.197503,5.68632,0,0,OGR:SA:CTP100620,Europe/Paris,,OGR, +OGR:SP:100621,1,"Jules Guesde",45.1979,5.688687,0,0,OGR:SA:CTP100621,Europe/Paris,,OGR, +OGR:SP:100622,1,"Place du Marché Cachin",45.195593,5.690827,0,0,OGR:SA:CTP100622,Europe/Paris,,OGR, +OGR:SP:100623,1,"Rue Pasteur",45.19433,5.694189,0,0,OGR:SA:CTP100623,Europe/Paris,,OGR, +OGR:SP:100624,1,"Curie - Vercors",45.191812,5.694992,0,0,OGR:SA:CTP100624,Europe/Paris,,OGR, +OGR:SP:100625,1,"Louis Maisonnat",45.189064,5.694444,0,0,O38:SA:CTP3347,Europe/Paris,,OGR, +OGR:SP:100626,1,"Aristide Bergès",45.185072,5.694547,0,0,O38:SA:CTP3380,Europe/Paris,,OGR, +OGR:SP:100627,1,"Bouchayer - Hôtel de Ville",45.181177,5.694451,0,0,OGR:SA:CTP100627,Europe/Paris,,OGR, +OGR:SP:100628,1,"Murailles",45.178439,5.692096,0,0,OGR:SA:CTP100628,Europe/Paris,,OGR, +OGR:SP:100629,1,"Belvédère",45.176764,5.688532,0,0,O38:SA:CTP3464,Europe/Paris,,OGR, +OGR:SP:100630,1,"Centre-Village",45.170517,5.680709,0,0,O38:SA:CTP101772,Europe/Paris,,OGR, +OGR:SP:100631,1,"Village",45.168195,5.678864,0,0,OGR:SA:CTP100631,Europe/Paris,,OGR, +OGR:SP:100632,1,"Centre-Village",45.170515,5.680773,0,0,O38:SA:CTP101772,Europe/Paris,,OGR, +OGR:SP:100633,1,"Belvédère",45.176503,5.688211,0,0,O38:SA:CTP3464,Europe/Paris,,OGR, +OGR:SP:100634,1,"Murailles",45.17825,5.691779,0,0,OGR:SA:CTP100628,Europe/Paris,,OGR, +OGR:SP:100635,1,"Bouchayer - Hôtel de Ville",45.180765,5.694375,0,0,OGR:SA:CTP100627,Europe/Paris,,OGR, +OGR:SP:100636,1,"Aristide Bergès",45.185511,5.694649,0,0,O38:SA:CTP3380,Europe/Paris,,OGR, +OGR:SP:100637,1,"Louis Maisonnat",45.18912,5.694091,0,0,O38:SA:CTP3347,Europe/Paris,,OGR, +OGR:SP:100638,1,"Curie - Vercors",45.191882,5.695047,0,0,OGR:SA:CTP100624,Europe/Paris,,OGR, +OGR:SP:100639,1,"Rue Pasteur",45.194376,5.694167,0,0,OGR:SA:CTP100623,Europe/Paris,,OGR, +OGR:SP:100640,1,"Place du Marché Cachin",45.195887,5.690654,0,0,OGR:SA:CTP100622,Europe/Paris,,OGR, +OGR:SP:100641,1,"Jules Guesde",45.197906,5.688777,0,0,OGR:SA:CTP100621,Europe/Paris,,OGR, +OGR:SP:100642,1,"Les Écrins",45.19753,5.686309,0,0,OGR:SA:CTP100620,Europe/Paris,,OGR, +OGR:SP:100643,1,"Marat",45.199147,5.682841,0,0,OGR:SA:CTP100619,Europe/Paris,,OGR, +OGR:SP:100644,1,"Rue des Alpes",45.197775,5.680275,0,0,OGR:SA:CTP100618,Europe/Paris,,OGR, +OGR:SP:100645,1,"Gérard Philipe",45.196468,5.677038,0,0,OGR:SA:CTP100617,Europe/Paris,,OGR, +OGR:SP:100646,1,"La Poya",45.197079,5.672566,0,0,O38:SA:CTP3420,Europe/Paris,,OGR, +OGR:SP:100647,1,"Les Pies",45.199573,5.669889,0,0,O38:SA:CTP3450,Europe/Paris,,OGR, +OGR:SP:100648,1,"Pré Fleury",45.201828,5.66763,0,0,OGR:SA:CTP100614,Europe/Paris,,OGR, +OGR:SP:100649,1,"Trefforine",45.204456,5.664986,0,0,OGR:SA:CTP100613,Europe/Paris,,OGR, +OGR:SP:100650,1,"Place de la Libération",45.206817,5.662809,0,0,O38:SA:CTP3133,Europe/Paris,,OGR, +OGR:SP:100651,1,"Le Gua",45.209694,5.664434,0,0,OGR:SA:CTP100611,Europe/Paris,,OGR, +OGR:SP:100652,1,"L'Ovalie",45.209673,5.666954,0,0,OGR:SA:CTP100610,Europe/Paris,,OGR, +OGR:SP:100653,1,"Mairie",45.272923,5.613024,0,0,OGR:SA:CTP100653,Europe/Paris,,OGR, +OGR:SP:100654,1,"Eglise",45.272425,5.615252,0,0,OGR:SA:CTP100654,Europe/Paris,,OGR, +OGR:SP:100655,1,"La Rive",45.269742,5.618001,0,0,O38:SA:CTP5314,Europe/Paris,,OGR, +OGR:SP:100656,1,"Les Echalières",45.26819,5.619324,0,0,O38:SA:CTP4261,Europe/Paris,,OGR, +OGR:SP:100657,1,"Perrières",45.261524,5.624922,0,0,OGR:SA:CTP100657,Europe/Paris,,OGR, +OGR:SP:100658,1,"Iles Cordées",45.259547,5.626028,0,0,O38:SA:CTP4282,Europe/Paris,,OGR, +OGR:SP:100659,1,"La Cuche",45.256039,5.628039,0,0,O38:SA:CTP12314,Europe/Paris,,OGR, +OGR:SP:100660,1,"Le Ruisset",45.249639,5.631656,0,0,OGR:SA:CTP100660,Europe/Paris,,OGR, +OGR:SP:100661,1,"Bascule",45.242909,5.632065,0,0,O38:SA:CTP4249,Europe/Paris,,OGR, +OGR:SP:100662,1,"Saint-Jean",45.2383,5.635092,0,0,OGR:SA:CTP100662,Europe/Paris,,OGR, +OGR:SP:100663,1,"Les Chaulnes",45.236421,5.638026,0,0,O38:SA:CTP4273,Europe/Paris,,OGR, +OGR:SP:100664,1,"Praparis - Les Roses",45.232011,5.645231,0,0,OGR:SA:CTP100664,Europe/Paris,,OGR, +OGR:SP:100665,1,"Praparis Usine",45.229249,5.649704,0,0,OGR:SA:CTP100665,Europe/Paris,,OGR, +OGR:SP:100666,1,"Les Engenières",45.219598,5.660224,0,0,OGR:SA:CTP100666,Europe/Paris,,OGR, +OGR:SP:100667,1,"La Rollandière",45.215015,5.661122,0,0,O38:SA:CTP3143,Europe/Paris,,OGR, +OGR:SP:100668,1,"Château",45.212244,5.661669,0,0,O38:SA:CTP3138,Europe/Paris,,OGR, +OGR:SP:100669,1,"Ancienne Mairie",45.192719,5.67806,0,0,OGR:SA:CTP100669,Europe/Paris,,OGR, +OGR:SP:100670,1,"Jean Prévost",45.189552,5.682759,0,0,OGR:SA:CTP100670,Europe/Paris,,OGR, +OGR:SP:100671,1,"Karl Marx",45.186516,5.687287,0,0,OGR:SA:CTP100671,Europe/Paris,,OGR, +OGR:SP:100672,1,"Bergès - Vercors",45.184243,5.691899,0,0,OGR:SA:CTP100672,Europe/Paris,,OGR, +OGR:SP:100673,1,"Les Iles",45.184166,5.697127,0,0,OGR:SA:CTP100673,Europe/Paris,,OGR, +OGR:SP:100674,1,"Seyssinet-Pariset Hôtel de Ville",45.181089,5.697068,0,0,OGR:SA:CTP100674,Europe/Paris,,OGR, +OGR:SP:100675,1,"Seyssinet-Pariset Hôtel de Ville",45.180369,5.695255,0,0,OGR:SA:CTP100674,Europe/Paris,,OGR, +OGR:SP:100676,1,"Bergès - Vercors",45.183675,5.690452,0,0,OGR:SA:CTP100672,Europe/Paris,,OGR, +OGR:SP:100677,1,"Karl Marx",45.186748,5.687072,0,0,OGR:SA:CTP100671,Europe/Paris,,OGR, +OGR:SP:100678,1,"Jean Prévost",45.189987,5.682365,0,0,OGR:SA:CTP100670,Europe/Paris,,OGR, +OGR:SP:100679,1,"Ancienne Mairie",45.192977,5.677859,0,0,OGR:SA:CTP100669,Europe/Paris,,OGR, +OGR:SP:100680,1,"Château",45.212286,5.661761,0,0,O38:SA:CTP3138,Europe/Paris,,OGR, +OGR:SP:100681,1,"La Rollandière",45.21485,5.661227,0,0,O38:SA:CTP3143,Europe/Paris,,OGR, +OGR:SP:100682,1,"Les Engenières",45.219622,5.660328,0,0,OGR:SA:CTP100666,Europe/Paris,,OGR, +OGR:SP:100683,1,"Praparis Usine",45.229614,5.649242,0,0,OGR:SA:CTP100665,Europe/Paris,,OGR, +OGR:SP:100684,1,"Praparis - Les Roses",45.23226,5.645029,0,0,OGR:SA:CTP100664,Europe/Paris,,OGR, +OGR:SP:100685,1,"Les Chaulnes",45.236545,5.63811,0,0,O38:SA:CTP4273,Europe/Paris,,OGR, +OGR:SP:100686,1,"Saint-Jean",45.23891,5.634249,0,0,OGR:SA:CTP100662,Europe/Paris,,OGR, +OGR:SP:100687,1,"Bascule",45.242924,5.632168,0,0,O38:SA:CTP4249,Europe/Paris,,OGR, +OGR:SP:100688,1,"Le Ruisset",45.249706,5.631811,0,0,OGR:SA:CTP100660,Europe/Paris,,OGR, +OGR:SP:100689,1,"La Cuche",45.256063,5.628142,0,0,O38:SA:CTP12314,Europe/Paris,,OGR, +OGR:SP:100690,1,"Iles Cordées",45.259707,5.626076,0,0,O38:SA:CTP4282,Europe/Paris,,OGR, +OGR:SP:100691,1,"Perrières",45.262089,5.6247,0,0,OGR:SA:CTP100657,Europe/Paris,,OGR, +OGR:SP:100692,1,"Les Echalières",45.268241,5.619442,0,0,O38:SA:CTP4261,Europe/Paris,,OGR, +OGR:SP:100693,1,"La Rive",45.269816,5.618247,0,0,O38:SA:CTP5314,Europe/Paris,,OGR, +OGR:SP:100694,1,"Eglise",45.272251,5.615637,0,0,OGR:SA:CTP100654,Europe/Paris,,OGR, +OGR:SP:100695,1,"Le Prisme",45.166363,5.690374,0,0,OGR:SA:CTP100695,Europe/Paris,,OGR, +OGR:SP:100696,1,"Parc François Mitterrand",45.162869,5.685302,0,0,OGR:SA:CTP100696,Europe/Paris,,OGR, +OGR:SP:100697,1,"L'Agneau",45.161301,5.682955,0,0,OGR:SA:CTP100697,Europe/Paris,,OGR, +OGR:SP:100698,1,"Beauvoir",45.158988,5.683248,0,0,OGR:SA:CTP100698,Europe/Paris,,OGR, +OGR:SP:100699,1,"Place du Village",45.156283,5.681278,0,0,OGR:SA:CTP100699,Europe/Paris,,OGR, +OGR:SP:100700,1,"L'Argoud",45.153864,5.679975,0,0,OGR:SA:CTP100700,Europe/Paris,,OGR, +OGR:SP:100701,1,"Pré Nouvel",45.15139,5.680321,0,0,OGR:SA:CTP100701,Europe/Paris,,OGR, +OGR:SP:100702,1,"Garlettes",45.147476,5.677733,0,0,OGR:SA:CTP100702,Europe/Paris,,OGR, +OGR:SP:100703,1,"Cimetière des Garlettes",45.145245,5.676785,0,0,OGR:SA:CTP100703,Europe/Paris,,OGR, +OGR:SP:100704,1,"Col de Comboire",45.140193,5.673146,0,0,OGR:SA:CTP100704,Europe/Paris,,OGR, +OGR:SP:100705,1,"La Croix Rolland",45.129422,5.671217,0,0,OGR:SA:CTP100705,Europe/Paris,,OGR, +OGR:SP:100706,1,"Furonnières",45.125974,5.671201,0,0,OGR:SA:CTP100706,Europe/Paris,,OGR, +OGR:SP:100707,1,"Mairie",45.120257,5.673275,0,0,OGR:SA:CTP100707,Europe/Paris,,OGR, +OGR:SP:100708,1,"La Ronzy",45.120835,5.675929,0,0,OGR:SA:CTP100708,Europe/Paris,,OGR, +OGR:SP:100709,1,"La Chièze",45.121177,5.682512,0,0,OGR:SA:CTP100709,Europe/Paris,,OGR, +OGR:SP:100710,1,"Pont Rouge",45.118604,5.692887,0,0,OGR:SA:CTP100535,Europe/Paris,,OGR, +OGR:SP:100711,1,"La Chièze",45.121507,5.681425,0,0,OGR:SA:CTP100709,Europe/Paris,,OGR, +OGR:SP:100712,1,"La Ronzy",45.121001,5.676092,0,0,OGR:SA:CTP100708,Europe/Paris,,OGR, +OGR:SP:100713,1,"Mairie",45.120254,5.672474,0,0,OGR:SA:CTP100707,Europe/Paris,,OGR, +OGR:SP:100714,1,"Poste",45.121102,5.672143,0,0,OGR:SA:CTP100714,Europe/Paris,,OGR, +OGR:SP:100715,1,"Furonnières",45.125961,5.671315,0,0,OGR:SA:CTP100706,Europe/Paris,,OGR, +OGR:SP:100716,1,"La Croix Rolland",45.129204,5.671281,0,0,OGR:SA:CTP100705,Europe/Paris,,OGR, +OGR:SP:100717,1,"Col de Comboire",45.140021,5.673209,0,0,OGR:SA:CTP100704,Europe/Paris,,OGR, +OGR:SP:100718,1,"Cimetière des Garlettes",45.145314,5.676865,0,0,OGR:SA:CTP100703,Europe/Paris,,OGR, +OGR:SP:100719,1,"Garlettes",45.147332,5.677724,0,0,OGR:SA:CTP100702,Europe/Paris,,OGR, +OGR:SP:100720,1,"Pré Nouvel",45.151382,5.680445,0,0,OGR:SA:CTP100701,Europe/Paris,,OGR, +OGR:SP:100721,1,"L'Argoud",45.154332,5.680296,0,0,OGR:SA:CTP100700,Europe/Paris,,OGR, +OGR:SP:100722,1,"Place du Village",45.156396,5.6814,0,0,OGR:SA:CTP100699,Europe/Paris,,OGR, +OGR:SP:100723,1,"Ancienne Gare",45.159779,5.681781,0,0,OGR:SA:CTP100723,Europe/Paris,,OGR, +OGR:SP:100724,1,"L'Agneau",45.161955,5.682778,0,0,OGR:SA:CTP100697,Europe/Paris,,OGR, +OGR:SP:100725,1,"Parc François Mitterrand",45.162815,5.685324,0,0,OGR:SA:CTP100696,Europe/Paris,,OGR, +OGR:SP:100726,1,"Le Prisme",45.166393,5.690554,0,0,OGR:SA:CTP100695,Europe/Paris,,OGR, +OGR:SP:100727,1,"Presqu'île",45.205775,5.699505,0,0,OGR:SA:CTP100727,Europe/Paris,,OGR, +OGR:SP:100728,1,"Louis Gagnière",45.214666,5.686905,0,0,OGR:SA:CTP100728,Europe/Paris,,OGR, +OGR:SP:100729,1,"Cap des H'",45.217319,5.681273,0,0,OGR:SA:CTP100729,Europe/Paris,,OGR, +OGR:SP:100730,1,"Les Glairaux",45.218526,5.679908,0,0,OGR:SA:CTP100730,Europe/Paris,,OGR, +OGR:SP:100731,1,"Belledonne",45.222675,5.684004,0,0,OGR:SA:CTP100731,Europe/Paris,,OGR, +OGR:SP:100732,1,"Fiancey - Prédieu",45.223385,5.687041,0,0,OGR:SA:CTP101848,Europe/Paris,,OGR, +OGR:SP:100733,1,"Muret",45.226176,5.686164,0,0,O38:SA:CTP4318,Europe/Paris,,OGR, +OGR:SP:100734,1,"Moutonnées",45.228377,5.68422,0,0,O38:SA:CTP4381,Europe/Paris,,OGR, +OGR:SP:100735,1,"Pont de Vence",45.23038,5.6835,0,0,OGR:SA:CTP100735,Europe/Paris,,OGR, +OGR:SP:100736,1,"Visancourt",45.233175,5.686064,0,0,OGR:SA:CTP100736,Europe/Paris,,OGR, +OGR:SP:100737,1,"Cuvilleux",45.2349,5.687685,0,0,O38:SA:CTP11998,Europe/Paris,,OGR, +OGR:SP:100738,1,"La Monta",45.237996,5.688611,0,0,O38:SA:CTP4298,Europe/Paris,,OGR, +OGR:SP:100739,1,"Eglise",45.240156,5.683847,0,0,OGR:SA:CTP100739,Europe/Paris,,OGR, +OGR:SP:100743,1,"Rochepleine",45.244586,5.675167,0,0,O38:SA:CTP4357,Europe/Paris,,OGR, +OGR:SP:100744,1,"Karben",45.242986,5.671184,0,0,OGR:SA:CTP100744,Europe/Paris,,OGR, +OGR:SP:100745,1,"CAP 38",45.240182,5.666185,0,0,OGR:SA:CTP100745,Europe/Paris,,OGR, +OGR:SP:100746,1,"La Biolle - Gare",45.23522,5.669532,0,0,OGR:SA:CTP100746,Europe/Paris,,OGR, +OGR:SP:100747,1,"Saint Egrève Gare",45.235808,5.671542,0,0,OGR:SA:CTP100747,Europe/Paris,,OGR, +OGR:SP:100748,1,"La Biolle - Gare",45.235498,5.66988,0,0,OGR:SA:CTP100746,Europe/Paris,,OGR, +OGR:SP:100749,1,"CAP 38",45.239965,5.666542,0,0,OGR:SA:CTP100745,Europe/Paris,,OGR, +OGR:SP:100750,1,"Karben",45.242908,5.671383,0,0,OGR:SA:CTP100744,Europe/Paris,,OGR, +OGR:SP:100751,1,"Rochepleine",45.24435,5.674923,0,0,O38:SA:CTP4357,Europe/Paris,,OGR, +OGR:SP:100755,1,"Eglise",45.239988,5.684066,0,0,OGR:SA:CTP100739,Europe/Paris,,OGR, +OGR:SP:100756,1,"La Monta",45.23787,5.688909,0,0,O38:SA:CTP4298,Europe/Paris,,OGR, +OGR:SP:100757,1,"Cuvilleux",45.234692,5.687404,0,0,O38:SA:CTP11998,Europe/Paris,,OGR, +OGR:SP:100758,1,"Visancourt",45.232958,5.685771,0,0,OGR:SA:CTP100736,Europe/Paris,,OGR, +OGR:SP:100759,1,"Pont de Vence",45.230124,5.683319,0,0,OGR:SA:CTP100735,Europe/Paris,,OGR, +OGR:SP:100760,1,"Moutonnées",45.228085,5.684355,0,0,O38:SA:CTP4381,Europe/Paris,,OGR, +OGR:SP:100761,1,"Muret",45.225874,5.686287,0,0,O38:SA:CTP4318,Europe/Paris,,OGR, +OGR:SP:100762,1,"Fiancey - Prédieu",45.223524,5.68752,0,0,OGR:SA:CTP101848,Europe/Paris,,OGR, +OGR:SP:100763,1,"Belledonne",45.222719,5.684032,0,0,OGR:SA:CTP100731,Europe/Paris,,OGR, +OGR:SP:100764,1,"Les Glairaux",45.219464,5.679633,0,0,OGR:SA:CTP100730,Europe/Paris,,OGR, +OGR:SP:100765,1,"Cap des H'",45.217052,5.681474,0,0,OGR:SA:CTP100729,Europe/Paris,,OGR, +OGR:SP:100766,1,"Presqu'île",45.20594,5.699706,0,0,OGR:SA:CTP100727,Europe/Paris,,OGR, +OGR:SP:100767,1,"Gares",45.190932,5.715414,0,0,OGR:SA:CTP100767,Europe/Paris,,OGR, +OGR:SP:100768,1,"Victor Hugo",45.19056,5.724892,0,0,OGR:SA:CTP100768,Europe/Paris,,OGR, +OGR:SP:100769,1,"Place Cymaise",45.194996,5.729173,0,0,OGR:SA:CTP100769,Europe/Paris,,OGR, +OGR:SP:100770,1,"Maurice Gignoux",45.194207,5.725253,0,0,OGR:SA:CTP100770,Europe/Paris,,OGR, +OGR:SP:100771,1,"Musée Dauphinois",45.194972,5.72614,0,0,OGR:SA:CTP100771,Europe/Paris,,OGR, +OGR:SP:100772,1,"Veyret",45.194833,5.724795,0,0,OGR:SA:CTP100772,Europe/Paris,,OGR, +OGR:SP:100773,1,"Le Rabot",45.195046,5.72342,0,0,OGR:SA:CTP100773,Europe/Paris,,OGR, +OGR:SP:100774,1,"Veyret",45.194787,5.724805,0,0,OGR:SA:CTP100772,Europe/Paris,,OGR, +OGR:SP:100775,1,"Musée Dauphinois",45.195027,5.726105,0,0,OGR:SA:CTP100771,Europe/Paris,,OGR, +OGR:SP:100776,1,"Maurice Gignoux",45.194227,5.725178,0,0,OGR:SA:CTP100770,Europe/Paris,,OGR, +OGR:SP:100777,1,"Gares",45.191586,5.715199,0,0,OGR:SA:CTP100767,Europe/Paris,,OGR, +OGR:SP:100778,1,"Grand Sablon",45.199017,5.749591,0,0,OGR:SA:CTP100778,Europe/Paris,,OGR, +OGR:SP:100779,1,"Vercors",45.200654,5.751105,0,0,OGR:SA:CTP100779,Europe/Paris,,OGR, +OGR:SP:100780,1,"Doyen Gosse",45.201353,5.75297,0,0,OGR:SA:CTP100780,Europe/Paris,,OGR, +OGR:SP:100781,1,"Pascal",45.199304,5.755493,0,0,OGR:SA:CTP100781,Europe/Paris,,OGR, +OGR:SP:100782,1,"La Carronnerie Basse",45.201166,5.758753,0,0,OGR:SA:CTP100782,Europe/Paris,,OGR, +OGR:SP:100783,1,"Plaine Fleurie",45.202731,5.760862,0,0,ONL:SA:CTP3767,Europe/Paris,,OGR, +OGR:SP:100784,1,"Les Léchères",45.205215,5.758582,0,0,OGR:SA:CTP100784,Europe/Paris,,OGR, +OGR:SP:100785,1,"Le Cèdre",45.20783,5.755521,0,0,OGR:SA:CTP100321,Europe/Paris,,OGR, +OGR:SP:100786,1,"Mairie",45.209735,5.752721,0,0,OGR:SA:CTP100786,Europe/Paris,,OGR, +OGR:SP:100787,1,"Mairie-Condamine",45.211177,5.750924,0,0,OGR:SA:CTP100787,Europe/Paris,,OGR, +OGR:SP:100788,1,"Charles Pajon",45.213201,5.752437,0,0,OGR:SA:CTP100788,Europe/Paris,,OGR, +OGR:SP:100789,1,"Monument",45.216436,5.753834,0,0,OGR:SA:CTP100789,Europe/Paris,,OGR, +OGR:SP:100790,1,"La Corne d'Or",45.21813,5.760512,0,0,OGR:SA:CTP100790,Europe/Paris,,OGR, +OGR:SP:100791,1,"Village",45.219924,5.762789,0,0,OGR:SA:CTP100791,Europe/Paris,,OGR, +OGR:SP:100792,1,"Providence",45.221014,5.764512,0,0,OGR:SA:CTP100792,Europe/Paris,,OGR, +OGR:SP:100793,1,"Rochasson",45.22379,5.76792,0,0,OGR:SA:CTP100793,Europe/Paris,,OGR, +OGR:SP:100794,1,"La Garenne",45.227412,5.765921,0,0,OGR:SA:CTP100794,Europe/Paris,,OGR, +OGR:SP:100795,1,"Rochasson",45.223641,5.767796,0,0,OGR:SA:CTP100793,Europe/Paris,,OGR, +OGR:SP:100796,1,"Providence",45.221112,5.764556,0,0,OGR:SA:CTP100792,Europe/Paris,,OGR, +OGR:SP:100797,1,"Village",45.219831,5.762286,0,0,OGR:SA:CTP100791,Europe/Paris,,OGR, +OGR:SP:100798,1,"La Corne d'Or",45.218087,5.760458,0,0,OGR:SA:CTP100790,Europe/Paris,,OGR, +OGR:SP:100799,1,"Monument",45.216354,5.753842,0,0,OGR:SA:CTP100789,Europe/Paris,,OGR, +OGR:SP:100800,1,"Charles Pajon",45.21426,5.753152,0,0,OGR:SA:CTP100788,Europe/Paris,,OGR, +OGR:SP:100801,1,"Mairie-Condamine",45.211013,5.750379,0,0,OGR:SA:CTP100787,Europe/Paris,,OGR, +OGR:SP:100802,1,"Mairie",45.20972,5.752631,0,0,OGR:SA:CTP100786,Europe/Paris,,OGR, +OGR:SP:100803,1,"Le Cèdre",45.207928,5.755272,0,0,OGR:SA:CTP100321,Europe/Paris,,OGR, +OGR:SP:100804,1,"Les Léchères",45.204545,5.75928,0,0,OGR:SA:CTP100784,Europe/Paris,,OGR, +OGR:SP:100805,1,"Plaine Fleurie",45.202676,5.760897,0,0,ONL:SA:CTP3767,Europe/Paris,,OGR, +OGR:SP:100806,1,"La Carronnerie Basse",45.200942,5.758141,0,0,OGR:SA:CTP100782,Europe/Paris,,OGR, +OGR:SP:100807,1,"Pascal",45.1995,5.755275,0,0,OGR:SA:CTP100781,Europe/Paris,,OGR, +OGR:SP:100808,1,"Doyen Gosse",45.201378,5.753035,0,0,OGR:SA:CTP100780,Europe/Paris,,OGR, +OGR:SP:100809,1,"Vercors",45.200648,5.751029,0,0,OGR:SA:CTP100779,Europe/Paris,,OGR, +OGR:SP:100810,1,"La Détourbe",45.223481,5.793955,0,0,OGR:SA:CTP100810,Europe/Paris,,OGR, +OGR:SP:100811,1,"La Treille",45.226386,5.791092,0,0,OGR:SA:CTP100811,Europe/Paris,,OGR, +OGR:SP:100812,1,"Saint-Victor",45.228595,5.78928,0,0,OGR:SA:CTP100812,Europe/Paris,,OGR, +OGR:SP:100813,1,"Montlivet",45.229983,5.789812,0,0,OGR:SA:CTP100813,Europe/Paris,,OGR, +OGR:SP:100814,1,"Pré Catlan",45.230024,5.78733,0,0,OGR:SA:CTP100814,Europe/Paris,,OGR, +OGR:SP:100815,1,"Gué du Boutet",45.228694,5.784635,0,0,OGR:SA:CTP100815,Europe/Paris,,OGR, +OGR:SP:100816,1,"Croix de Cibeins",45.225997,5.7842,0,0,OGR:SA:CTP100816,Europe/Paris,,OGR, +OGR:SP:100817,1,"Croix des Rameaux",45.22374,5.781767,0,0,OGR:SA:CTP100817,Europe/Paris,,OGR, +OGR:SP:100818,1,"Champlars",45.220226,5.779816,0,0,OGR:SA:CTP100818,Europe/Paris,,OGR, +OGR:SP:100819,1,"Les Jaillières",45.220638,5.789168,0,0,OGR:SA:CTP100819,Europe/Paris,,OGR, +OGR:SP:100820,1,"Saint-Mury",45.219472,5.786126,0,0,OGR:SA:CTP100820,Europe/Paris,,OGR, +OGR:SP:100821,1,"Bérivière",45.218818,5.783117,0,0,OGR:SA:CTP100821,Europe/Paris,,OGR, +OGR:SP:100822,1,"Haut-Meylan",45.218448,5.779081,0,0,OGR:SA:CTP100488,Europe/Paris,,OGR, +OGR:SP:100823,1,"Saint-Jean Bosco",45.212818,5.773051,0,0,OGR:SA:CTP100823,Europe/Paris,,OGR, +OGR:SP:100824,1,"Chaumetière",45.212404,5.769828,0,0,OGR:SA:CTP100824,Europe/Paris,,OGR, +OGR:SP:100825,1,"Revirée - Sayettes",45.212199,5.767277,0,0,OGR:SA:CTP100825,Europe/Paris,,OGR, +OGR:SP:100826,1,"Lionel Terray",45.210354,5.767128,0,0,OGR:SA:CTP100826,Europe/Paris,,OGR, +OGR:SP:100827,1,"Champ Rochas",45.207443,5.759025,0,0,OGR:SA:CTP100827,Europe/Paris,,OGR, +OGR:SP:100828,1,"Champ Rochas",45.207113,5.75833,0,0,OGR:SA:CTP100827,Europe/Paris,,OGR, +OGR:SP:100829,1,"Lionel Terray",45.20967,5.766245,0,0,OGR:SA:CTP100826,Europe/Paris,,OGR, +OGR:SP:100830,1,"Revirée - Sayettes",45.21205,5.76638,0,0,OGR:SA:CTP100825,Europe/Paris,,OGR, +OGR:SP:100831,1,"Chaumetière",45.212485,5.771285,0,0,OGR:SA:CTP100824,Europe/Paris,,OGR, +OGR:SP:100832,1,"Saint-Jean Bosco",45.212898,5.773654,0,0,OGR:SA:CTP100823,Europe/Paris,,OGR, +OGR:SP:100833,1,"Haut-Meylan",45.218301,5.779187,0,0,OGR:SA:CTP100488,Europe/Paris,,OGR, +OGR:SP:100834,1,"Champlars",45.220226,5.780096,0,0,OGR:SA:CTP100818,Europe/Paris,,OGR, +OGR:SP:100835,1,"Croix des Rameaux",45.22355,5.781793,0,0,OGR:SA:CTP100817,Europe/Paris,,OGR, +OGR:SP:100836,1,"Croix de Cibeins",45.22566,5.784612,0,0,OGR:SA:CTP100816,Europe/Paris,,OGR, +OGR:SP:100837,1,"Gué du Boutet",45.228707,5.784802,0,0,OGR:SA:CTP100815,Europe/Paris,,OGR, +OGR:SP:100838,1,"Pré Catlan",45.230195,5.787621,0,0,OGR:SA:CTP100814,Europe/Paris,,OGR, +OGR:SP:100839,1,"Montlivet",45.229958,5.789734,0,0,OGR:SA:CTP100813,Europe/Paris,,OGR, +OGR:SP:100840,1,"Saint-Victor",45.228555,5.789125,0,0,OGR:SA:CTP100812,Europe/Paris,,OGR, +OGR:SP:100841,1,"La Treille",45.226276,5.791162,0,0,OGR:SA:CTP100811,Europe/Paris,,OGR, +OGR:SP:100842,1,"La Détourbe",45.223148,5.793176,0,0,OGR:SA:CTP100810,Europe/Paris,,OGR, +OGR:SP:100843,1,"Bérivière",45.218713,5.783034,0,0,OGR:SA:CTP100821,Europe/Paris,,OGR, +OGR:SP:100844,1,"Saint-Mury",45.219368,5.786005,0,0,OGR:SA:CTP100820,Europe/Paris,,OGR, +OGR:SP:100845,1,"Les Jaillières",45.221522,5.790879,0,0,OGR:SA:CTP100819,Europe/Paris,,OGR, +OGR:SP:100846,1,"La Détourbe",45.222758,5.792642,0,0,OGR:SA:CTP100810,Europe/Paris,,OGR, +OGR:SP:100847,1,"Le Chamandier",45.181847,5.780958,0,0,O38:SA:CTP3510,Europe/Paris,,OGR, +OGR:SP:100848,1,"Edelweiss",45.181165,5.788255,0,0,OGR:SA:CTP100380,Europe/Paris,,OGR, +OGR:SP:100849,1,"La Faurie",45.175419,5.794671,0,0,OGR:SA:CTP100849,Europe/Paris,,OGR, +OGR:SP:100850,1,"La Frênaie",45.173378,5.795142,0,0,OGR:SA:CTP100850,Europe/Paris,,OGR, +OGR:SP:100851,1,"La Serralière",45.172828,5.798061,0,0,OGR:SA:CTP100851,Europe/Paris,,OGR, +OGR:SP:100852,1,"La Ville",45.174091,5.802621,0,0,OGR:SA:CTP100852,Europe/Paris,,OGR, +OGR:SP:100853,1,"Mairie",45.171654,5.804824,0,0,OGR:SA:CTP100853,Europe/Paris,,OGR, +OGR:SP:100854,1,"La Chênaie",45.170509,5.807464,0,0,OGR:SA:CTP100854,Europe/Paris,,OGR, +OGR:SP:100855,1,"Cul Froid",45.170069,5.80865,0,0,OGR:SA:CTP100855,Europe/Paris,,OGR, +OGR:SP:100856,1,"Le Perroud",45.172453,5.81036,0,0,OGR:SA:CTP100856,Europe/Paris,,OGR, +OGR:SP:100857,1,"Sous-Perroud",45.170297,5.810773,0,0,OGR:SA:CTP100857,Europe/Paris,,OGR, +OGR:SP:100858,1,"Le Reynet",45.169897,5.813217,0,0,OGR:SA:CTP100858,Europe/Paris,,OGR, +OGR:SP:100859,1,"Le Chapon",45.170958,5.821851,0,0,OGR:SA:CTP100859,Europe/Paris,,OGR, +OGR:SP:100860,1,"Le Chapon",45.171013,5.821841,0,0,OGR:SA:CTP100859,Europe/Paris,,OGR, +OGR:SP:100861,1,"Le Reynet",45.170073,5.813623,0,0,OGR:SA:CTP100858,Europe/Paris,,OGR, +OGR:SP:100862,1,"Sous-Perroud",45.170341,5.810801,0,0,OGR:SA:CTP100857,Europe/Paris,,OGR, +OGR:SP:100863,1,"Le Perroud",45.172648,5.810449,0,0,OGR:SA:CTP100856,Europe/Paris,,OGR, +OGR:SP:100864,1,"Cul Froid",45.170015,5.808484,0,0,OGR:SA:CTP100855,Europe/Paris,,OGR, +OGR:SP:100865,1,"La Chênaie",45.17058,5.807481,0,0,OGR:SA:CTP100854,Europe/Paris,,OGR, +OGR:SP:100866,1,"Mairie",45.171811,5.804681,0,0,OGR:SA:CTP100853,Europe/Paris,,OGR, +OGR:SP:100867,1,"La Ville",45.17377,5.802792,0,0,OGR:SA:CTP100852,Europe/Paris,,OGR, +OGR:SP:100868,1,"La Serralière",45.173048,5.798215,0,0,OGR:SA:CTP100851,Europe/Paris,,OGR, +OGR:SP:100869,1,"La Frênaie",45.173081,5.794607,0,0,OGR:SA:CTP100850,Europe/Paris,,OGR, +OGR:SP:100870,1,"La Faurie",45.175256,5.794979,0,0,OGR:SA:CTP100849,Europe/Paris,,OGR, +OGR:SP:100871,1,"Edelweiss",45.181078,5.788441,0,0,OGR:SA:CTP100380,Europe/Paris,,OGR, +OGR:SP:100872,1,"Le Chamandier",45.18185,5.78092,0,0,O38:SA:CTP3510,Europe/Paris,,OGR, +OGR:SP:100873,1,"Col de l'Arzelier",44.990229,5.595105,0,0,OGR:SA:CTP100873,Europe/Paris,,OGR, +OGR:SP:100874,1,"L'Arzelier",44.996922,5.602577,0,0,OGR:SA:CTP100874,Europe/Paris,,OGR, +OGR:SP:100875,1,"Prélenfrey Eglise",45.016934,5.613295,0,0,OGR:SA:CTP100875,Europe/Paris,,OGR, +OGR:SP:100876,1,"Les Faures",45.014388,5.613538,0,0,OGR:SA:CTP100876,Europe/Paris,,OGR, +OGR:SP:100877,1,"La Charrière",45.012771,5.615867,0,0,OGR:SA:CTP100877,Europe/Paris,,OGR, +OGR:SP:100878,1,"Le Vernay",44.970146,5.608745,0,0,O38:SA:CTP823,Europe/Paris,,OGR, +OGR:SP:100879,1,"Miribel",44.974663,5.620996,0,0,OGR:SA:CTP100879,Europe/Paris,,OGR, +OGR:SP:100880,1,"Bayanne",44.979961,5.622348,0,0,OGR:SA:CTP100880,Europe/Paris,,OGR, +OGR:SP:100881,1,"Cassoulet",44.982289,5.623094,0,0,OGR:SA:CTP100881,Europe/Paris,,OGR, +OGR:SP:100882,1,"La Pierre",44.989164,5.621977,0,0,OGR:SA:CTP100882,Europe/Paris,,OGR, +OGR:SP:100883,1,"Saint-Barthélémy",44.999862,5.62946,0,0,OGR:SA:CTP100883,Europe/Paris,,OGR, +OGR:SP:100884,1,"Les Rossets",45.016566,5.64083,0,0,OGR:SA:CTP100884,Europe/Paris,,OGR, +OGR:SP:100885,1,"Mairie",45.022109,5.644573,0,0,OGR:SA:CTP100885,Europe/Paris,,OGR, +OGR:SP:100886,1,"Mairie",45.022191,5.64454,0,0,OGR:SA:CTP100885,Europe/Paris,,OGR, +OGR:SP:100887,1,"Les Rossets",45.016792,5.640805,0,0,OGR:SA:CTP100884,Europe/Paris,,OGR, +OGR:SP:100888,1,"Saint-Barthélémy",44.999947,5.629338,0,0,OGR:SA:CTP100883,Europe/Paris,,OGR, +OGR:SP:100889,1,"La Pierre",44.989021,5.621639,0,0,OGR:SA:CTP100882,Europe/Paris,,OGR, +OGR:SP:100890,1,"Cassoulet",44.981806,5.623002,0,0,OGR:SA:CTP100881,Europe/Paris,,OGR, +OGR:SP:100891,1,"Bayanne",44.980738,5.622876,0,0,OGR:SA:CTP100880,Europe/Paris,,OGR, +OGR:SP:100892,1,"Miribel",44.974703,5.620871,0,0,OGR:SA:CTP100879,Europe/Paris,,OGR, +OGR:SP:100893,1,"La Charrière",45.012858,5.615949,0,0,OGR:SA:CTP100877,Europe/Paris,,OGR, +OGR:SP:100894,1,"Les Faures",45.014473,5.613721,0,0,OGR:SA:CTP100876,Europe/Paris,,OGR, +OGR:SP:100895,1,"L'Arzelier",44.996998,5.602771,0,0,OGR:SA:CTP100874,Europe/Paris,,OGR, +OGR:SP:100896,1,"Col de l'Arzelier",44.99021,5.594825,0,0,OGR:SA:CTP100873,Europe/Paris,,OGR, +OGR:SP:100897,1,"Rue du Nord",45.054326,5.675371,0,0,OGR:SA:CTP100897,Europe/Paris,,OGR, +OGR:SP:100898,1,"Rue de L'Espère",45.054807,5.677622,0,0,OGR:SA:CTP100898,Europe/Paris,,OGR, +OGR:SP:100899,1,"Z.A. des Speyres",45.056904,5.681838,0,0,OGR:SA:CTP100899,Europe/Paris,,OGR, +OGR:SP:100900,1,"Allée des Granges",45.057848,5.684778,0,0,OGR:SA:CTP100900,Europe/Paris,,OGR, +OGR:SP:100901,1,"Mas Garni",45.060781,5.688194,0,0,OGR:SA:CTP100901,Europe/Paris,,OGR, +OGR:SP:100902,1,"Le Petit Brion",45.062252,5.690176,0,0,OGR:SA:CTP100902,Europe/Paris,,OGR, +OGR:SP:100903,1,"Jacobins",45.064419,5.691313,0,0,OGR:SA:CTP100903,Europe/Paris,,OGR, +OGR:SP:100904,1,"La Plaine",45.066856,5.69213,0,0,OGR:SA:CTP100904,Europe/Paris,,OGR, +OGR:SP:100905,1,"Ecole Reymure",45.069079,5.693344,0,0,OGR:SA:CTP100905,Europe/Paris,,OGR, +OGR:SP:100906,1,"Rue de la Sacristie",45.070809,5.69538,0,0,OGR:SA:CTP100906,Europe/Paris,,OGR, +OGR:SP:100907,1,"Le Refuge",45.074617,5.699587,0,0,OGR:SA:CTP100907,Europe/Paris,,OGR, +OGR:SP:100908,1,"Le Gros Chêne",45.078322,5.702098,0,0,OGR:SA:CTP100908,Europe/Paris,,OGR, +OGR:SP:100909,1,"Malissolles",45.08396,5.704701,0,0,OGR:SA:CTP100909,Europe/Paris,,OGR, +OGR:SP:100910,1,"Fontagneux",45.087285,5.707864,0,0,OGR:SA:CTP100910,Europe/Paris,,OGR, +OGR:SP:100911,1,"Rozatière",45.087064,5.702411,0,0,OGR:SA:CTP100911,Europe/Paris,,OGR, +OGR:SP:100912,1,"Balzac",45.087276,5.694213,0,0,OGR:SA:CTP100912,Europe/Paris,,OGR, +OGR:SP:100913,1,"Berliognière",45.089984,5.692495,0,0,OGR:SA:CTP100913,Europe/Paris,,OGR, +OGR:SP:100914,1,"Notre-Dame de Lachal",45.087355,5.690112,0,0,OGR:SA:CTP100914,Europe/Paris,,OGR, +OGR:SP:100915,1,"République",45.085846,5.682536,0,0,OGR:SA:CTP100542,Europe/Paris,,OGR, +OGR:SP:100916,1,"Notre-Dame de Lachal",45.087318,5.690148,0,0,OGR:SA:CTP100914,Europe/Paris,,OGR, +OGR:SP:100917,1,"Berliognière",45.089838,5.692575,0,0,OGR:SA:CTP100913,Europe/Paris,,OGR, +OGR:SP:100918,1,"Balzac",45.087287,5.69415,0,0,OGR:SA:CTP100912,Europe/Paris,,OGR, +OGR:SP:100919,1,"Rozatière",45.087105,5.702527,0,0,OGR:SA:CTP100911,Europe/Paris,,OGR, +OGR:SP:100920,1,"Fontagneux",45.087288,5.707787,0,0,OGR:SA:CTP100910,Europe/Paris,,OGR, +OGR:SP:100921,1,"Malissolles",45.083847,5.70458,0,0,OGR:SA:CTP100909,Europe/Paris,,OGR, +OGR:SP:100922,1,"Le Gros Chêne",45.078341,5.702048,0,0,OGR:SA:CTP100908,Europe/Paris,,OGR, +OGR:SP:100923,1,"Le Refuge",45.074663,5.699551,0,0,OGR:SA:CTP100907,Europe/Paris,,OGR, +OGR:SP:100924,1,"Rue de la Sacristie",45.070609,5.695177,0,0,OGR:SA:CTP100906,Europe/Paris,,OGR, +OGR:SP:100925,1,"Ecole Reymure",45.069143,5.693323,0,0,OGR:SA:CTP100905,Europe/Paris,,OGR, +OGR:SP:100926,1,"La Plaine",45.066627,5.691977,0,0,OGR:SA:CTP100904,Europe/Paris,,OGR, +OGR:SP:100927,1,"Jacobins",45.06458,5.691271,0,0,OGR:SA:CTP100903,Europe/Paris,,OGR, +OGR:SP:100928,1,"Le Petit Brion",45.062281,5.690114,0,0,OGR:SA:CTP100902,Europe/Paris,,OGR, +OGR:SP:100929,1,"Mas Garni",45.060559,5.687787,0,0,OGR:SA:CTP100901,Europe/Paris,,OGR, +OGR:SP:100930,1,"Allée des Granges",45.057937,5.684737,0,0,OGR:SA:CTP100900,Europe/Paris,,OGR, +OGR:SP:100931,1,"Z.A. des Speyres",45.056907,5.681712,0,0,OGR:SA:CTP100899,Europe/Paris,,OGR, +OGR:SP:100932,1,"Rue de L'Espère",45.05486,5.677664,0,0,OGR:SA:CTP100898,Europe/Paris,,OGR, +OGR:SP:100933,1,"Rue du Nord",45.054295,5.675204,0,0,OGR:SA:CTP100897,Europe/Paris,,OGR, +OGR:SP:100934,1,"La Giraudière",45.095031,5.679821,0,0,OGR:SA:CTP100934,Europe/Paris,,OGR, +OGR:SP:100935,1,"Cité Scolaire",45.09496,5.674402,0,0,OGR:SA:CTP100935,Europe/Paris,,OGR, +OGR:SP:100936,1,"Les Tisserands",45.092027,5.674633,0,0,OGR:SA:CTP100936,Europe/Paris,,OGR, +OGR:SP:100937,1,"Les Platanes",45.089301,5.675461,0,0,OGR:SA:CTP100937,Europe/Paris,,OGR, +OGR:SP:100938,1,"La Pommeraie",45.087648,5.672057,0,0,OGR:SA:CTP100938,Europe/Paris,,OGR, +OGR:SP:100939,1,"Chambord",45.085184,5.667144,0,0,OGR:SA:CTP100939,Europe/Paris,,OGR, +OGR:SP:100940,1,"Le Meinget",45.079728,5.662967,0,0,OGR:SA:CTP100940,Europe/Paris,,OGR, +OGR:SP:100941,1,"Le Poulat",45.074441,5.660021,0,0,OGR:SA:CTP100941,Europe/Paris,,OGR, +OGR:SP:100942,1,"La Bascule",45.071811,5.654959,0,0,OGR:SA:CTP100942,Europe/Paris,,OGR, +OGR:SP:100943,1,"La Garde",45.070491,5.650624,0,0,OGR:SA:CTP100943,Europe/Paris,,OGR, +OGR:SP:100944,1,"La Croix",45.070553,5.644936,0,0,OGR:SA:CTP100944,Europe/Paris,,OGR, +OGR:SP:100945,1,"Place",45.071667,5.642601,0,0,OGR:SA:CTP100945,Europe/Paris,,OGR, +OGR:SP:100946,1,"La Croix",45.070499,5.64492,0,0,OGR:SA:CTP100944,Europe/Paris,,OGR, +OGR:SP:100947,1,"La Garde",45.07042,5.650594,0,0,OGR:SA:CTP100943,Europe/Paris,,OGR, +OGR:SP:100948,1,"La Bascule",45.071737,5.655018,0,0,OGR:SA:CTP100942,Europe/Paris,,OGR, +OGR:SP:100949,1,"Le Poulat",45.074393,5.660119,0,0,OGR:SA:CTP100941,Europe/Paris,,OGR, +OGR:SP:100950,1,"Le Meinget",45.079219,5.662822,0,0,OGR:SA:CTP100940,Europe/Paris,,OGR, +OGR:SP:100951,1,"Chambord",45.085012,5.667184,0,0,OGR:SA:CTP100939,Europe/Paris,,OGR, +OGR:SP:100952,1,"La Pommeraie",45.087607,5.672207,0,0,OGR:SA:CTP100938,Europe/Paris,,OGR, +OGR:SP:100953,1,"Les Platanes",45.089612,5.675606,0,0,OGR:SA:CTP100937,Europe/Paris,,OGR, +OGR:SP:100954,1,"Les Tisserands",45.091961,5.674731,0,0,OGR:SA:CTP100936,Europe/Paris,,OGR, +OGR:SP:100955,1,"Cité Scolaire",45.095178,5.674339,0,0,OGR:SA:CTP100935,Europe/Paris,,OGR, +OGR:SP:100956,1,"La Giraudière",45.094852,5.68009,0,0,OGR:SA:CTP100934,Europe/Paris,,OGR, +OGR:SP:100957,1,"Pompidou",45.1204,5.691838,0,0,OGR:SA:CTP100534,Europe/Paris,,OGR, +OGR:SP:100958,1,"Charrières",45.115988,5.688876,0,0,OGR:SA:CTP100958,Europe/Paris,,OGR, +OGR:SP:100959,1,"Saint-Michel",45.112032,5.684518,0,0,OGR:SA:CTP100959,Europe/Paris,,OGR, +OGR:SP:100960,1,"Les Bauches",45.110831,5.678647,0,0,OGR:SA:CTP100960,Europe/Paris,,OGR, +OGR:SP:100961,1,"Pavillon",45.108397,5.674255,0,0,OGR:SA:CTP100961,Europe/Paris,,OGR, +OGR:SP:100962,1,"Risset",45.107235,5.673092,0,0,OGR:SA:CTP100962,Europe/Paris,,OGR, +OGR:SP:100963,1,"Bel Horizon",45.108663,5.671995,0,0,OGR:SA:CTP100963,Europe/Paris,,OGR, +OGR:SP:100964,1,"La Bâtie",45.111844,5.671931,0,0,OGR:SA:CTP100964,Europe/Paris,,OGR, +OGR:SP:100965,1,"La Chênaie",45.114189,5.672682,0,0,OGR:SA:CTP100965,Europe/Paris,,OGR, +OGR:SP:100966,1,"Grands Champs",45.116831,5.673451,0,0,OGR:SA:CTP100966,Europe/Paris,,OGR, +OGR:SP:100967,1,"Les Eglantiers",45.11816,5.672971,0,0,OGR:SA:CTP100967,Europe/Paris,,OGR, +OGR:SP:100968,1,"Boulodrome-Ecole",45.119621,5.668989,0,0,OGR:SA:CTP100968,Europe/Paris,,OGR, +OGR:SP:100969,1,"Les Roses",45.117913,5.667386,0,0,OGR:SA:CTP100969,Europe/Paris,,OGR, +OGR:SP:100970,1,"Les Pampres",45.115365,5.665886,0,0,OGR:SA:CTP100970,Europe/Paris,,OGR, +OGR:SP:100971,1,"Les Taillis",45.113154,5.665766,0,0,OGR:SA:CTP100971,Europe/Paris,,OGR, +OGR:SP:100972,1,"Bellevue",45.111956,5.665479,0,0,OGR:SA:CTP100972,Europe/Paris,,OGR, +OGR:SP:100973,1,"La Chanteraie",45.110119,5.665483,0,0,OGR:SA:CTP100973,Europe/Paris,,OGR, +OGR:SP:100974,1,"Val d'Allières",45.106901,5.665316,0,0,OGR:SA:CTP100974,Europe/Paris,,OGR, +OGR:SP:100975,1,"La Chanteraie",45.110218,5.665502,0,0,OGR:SA:CTP100973,Europe/Paris,,OGR, +OGR:SP:100976,1,"Bellevue",45.111782,5.665583,0,0,OGR:SA:CTP100972,Europe/Paris,,OGR, +OGR:SP:100977,1,"Les Taillis",45.11315,5.665893,0,0,OGR:SA:CTP100971,Europe/Paris,,OGR, +OGR:SP:100978,1,"Les Pampres",45.115253,5.666032,0,0,OGR:SA:CTP100970,Europe/Paris,,OGR, +OGR:SP:100979,1,"Les Roses",45.117743,5.667974,0,0,OGR:SA:CTP100969,Europe/Paris,,OGR, +OGR:SP:100980,1,"Boulodrome-Ecole",45.11961,5.669345,0,0,OGR:SA:CTP100968,Europe/Paris,,OGR, +OGR:SP:100981,1,"Mairie",45.11972,5.672569,0,0,OGR:SA:CTP100707,Europe/Paris,,OGR, +OGR:SP:100982,1,"Les Eglantiers",45.118032,5.673027,0,0,OGR:SA:CTP100967,Europe/Paris,,OGR, +OGR:SP:100983,1,"Grands Champs",45.116985,5.673397,0,0,OGR:SA:CTP100966,Europe/Paris,,OGR, +OGR:SP:100984,1,"La Chênaie",45.114182,5.672618,0,0,OGR:SA:CTP100965,Europe/Paris,,OGR, +OGR:SP:100985,1,"La Bâtie",45.111917,5.671885,0,0,OGR:SA:CTP100964,Europe/Paris,,OGR, +OGR:SP:100986,1,"Bel Horizon",45.108801,5.671914,0,0,OGR:SA:CTP100963,Europe/Paris,,OGR, +OGR:SP:100987,1,"Risset",45.106971,5.672898,0,0,OGR:SA:CTP100962,Europe/Paris,,OGR, +OGR:SP:100988,1,"Pavillon",45.108404,5.674344,0,0,OGR:SA:CTP100961,Europe/Paris,,OGR, +OGR:SP:100989,1,"Les Bauches",45.110515,5.678082,0,0,OGR:SA:CTP100960,Europe/Paris,,OGR, +OGR:SP:100990,1,"Saint-Michel",45.112197,5.684706,0,0,OGR:SA:CTP100959,Europe/Paris,,OGR, +OGR:SP:100991,1,"Charrières",45.115985,5.688965,0,0,OGR:SA:CTP100958,Europe/Paris,,OGR, +OGR:SP:100992,1,"Pont Rouge",45.118317,5.692539,0,0,OGR:SA:CTP100535,Europe/Paris,,OGR, +OGR:SP:100993,1,"Fond Ratel",45.12215,5.689349,0,0,OGR:SA:CTP100993,Europe/Paris,,OGR, +OGR:SP:100994,1,"Mémorial",45.122649,5.69102,0,0,OGR:SA:CTP100994,Europe/Paris,,OGR, +OGR:SP:100995,1,"La Balmette",45.125213,5.688109,0,0,OGR:SA:CTP100995,Europe/Paris,,OGR, +OGR:SP:100996,1,"Le Coteau",45.126696,5.686698,0,0,OGR:SA:CTP100996,Europe/Paris,,OGR, +OGR:SP:100997,1,"Les Cimentiers",45.130473,5.683567,0,0,OGR:SA:CTP100997,Europe/Paris,,OGR, +OGR:SP:100998,1,"Moucherotte",45.125788,5.680958,0,0,OGR:SA:CTP100998,Europe/Paris,,OGR, +OGR:SP:100999,1,"Les Pérouses",45.124567,5.679371,0,0,OGR:SA:CTP100999,Europe/Paris,,OGR, +OGR:SP:101000,1,"Les Fayards",45.122096,5.675611,0,0,OGR:SA:CTP101000,Europe/Paris,,OGR, +OGR:SP:101001,1,"Malhivert",45.132541,5.666876,0,0,OGR:SA:CTP101001,Europe/Paris,,OGR, +OGR:SP:101002,1,"Chemin de l'Abbé",45.135214,5.668423,0,0,OGR:SA:CTP101002,Europe/Paris,,OGR, +OGR:SP:101003,1,"Cossey",45.138946,5.670058,0,0,OGR:SA:CTP101003,Europe/Paris,,OGR, +OGR:SP:101004,1,"Cossey",45.138862,5.670168,0,0,OGR:SA:CTP101003,Europe/Paris,,OGR, +OGR:SP:101005,1,"Chemin de l'Abbé",45.135243,5.668348,0,0,OGR:SA:CTP101002,Europe/Paris,,OGR, +OGR:SP:101006,1,"Malhivert",45.132072,5.666619,0,0,OGR:SA:CTP101001,Europe/Paris,,OGR, +OGR:SP:101007,1,"Poste",45.12148,5.67214,0,0,OGR:SA:CTP100714,Europe/Paris,,OGR, +OGR:SP:101008,1,"Mairie",45.120574,5.67351,0,0,OGR:SA:CTP100707,Europe/Paris,,OGR, +OGR:SP:101009,1,"Les Fayards",45.122006,5.675618,0,0,OGR:SA:CTP101000,Europe/Paris,,OGR, +OGR:SP:101010,1,"Les Pérouses",45.124483,5.679455,0,0,OGR:SA:CTP100999,Europe/Paris,,OGR, +OGR:SP:101011,1,"Moucherotte",45.125638,5.680885,0,0,OGR:SA:CTP100998,Europe/Paris,,OGR, +OGR:SP:101012,1,"Les Cimentiers",45.130453,5.683617,0,0,OGR:SA:CTP100997,Europe/Paris,,OGR, +OGR:SP:101013,1,"Le Coteau",45.126623,5.686731,0,0,OGR:SA:CTP100996,Europe/Paris,,OGR, +OGR:SP:101014,1,"La Balmette",45.125214,5.688046,0,0,OGR:SA:CTP100995,Europe/Paris,,OGR, +OGR:SP:101015,1,"Mémorial",45.122566,5.691078,0,0,OGR:SA:CTP100994,Europe/Paris,,OGR, +OGR:SP:101016,1,"Fond Ratel",45.122082,5.689205,0,0,OGR:SA:CTP100993,Europe/Paris,,OGR, +OGR:SP:101017,1,"Cimetière",45.169669,5.683459,0,0,OGR:SA:CTP101017,Europe/Paris,,OGR, +OGR:SP:101018,1,"Percevalière",45.170161,5.686823,0,0,OGR:SA:CTP101018,Europe/Paris,,OGR, +OGR:SP:101019,1,"Tuilerie",45.169064,5.692154,0,0,OGR:SA:CTP101019,Europe/Paris,,OGR, +OGR:SP:101020,1,"Le Prisme",45.166317,5.690384,0,0,OGR:SA:CTP100695,Europe/Paris,,OGR, +OGR:SP:101021,1,"Marc Sangnier",45.16486,5.689151,0,0,OGR:SA:CTP101021,Europe/Paris,,OGR, +OGR:SP:101022,1,"La Baume",45.159495,5.689693,0,0,OGR:SA:CTP101022,Europe/Paris,,OGR, +OGR:SP:101023,1,"Le Bournet",45.157648,5.689747,0,0,OGR:SA:CTP101023,Europe/Paris,,OGR, +OGR:SP:101024,1,"Hameau des Chaumières",45.154697,5.689378,0,0,OGR:SA:CTP101024,Europe/Paris,,OGR, +OGR:SP:101025,1,"Les Nalettes",45.152116,5.688968,0,0,OGR:SA:CTP101025,Europe/Paris,,OGR, +OGR:SP:101027,1,"Place du Village",45.155828,5.680831,0,0,OGR:SA:CTP100699,Europe/Paris,,OGR, +OGR:SP:101028,1,"Le Priou",45.156979,5.678801,0,0,OGR:SA:CTP101028,Europe/Paris,,OGR, +OGR:SP:101029,1,"Le Parlement",45.15864,5.674472,0,0,OGR:SA:CTP101029,Europe/Paris,,OGR, +OGR:SP:101030,1,"Les Côtes",45.156061,5.671301,0,0,OGR:SA:CTP101030,Europe/Paris,,OGR, +OGR:SP:101031,1,"Le Cellier",45.161486,5.673535,0,0,OGR:SA:CTP101031,Europe/Paris,,OGR, +OGR:SP:101032,1,"Le Cellier",45.16146,5.673508,0,0,OGR:SA:CTP101031,Europe/Paris,,OGR, +OGR:SP:101033,1,"Les Côtes",45.155623,5.671491,0,0,OGR:SA:CTP101030,Europe/Paris,,OGR, +OGR:SP:101034,1,"Le Parlement",45.158629,5.674535,0,0,OGR:SA:CTP101029,Europe/Paris,,OGR, +OGR:SP:101035,1,"Le Priou",45.156963,5.678711,0,0,OGR:SA:CTP101028,Europe/Paris,,OGR, +OGR:SP:101036,1,"Place du Village",45.155799,5.680893,0,0,OGR:SA:CTP100699,Europe/Paris,,OGR, +OGR:SP:101038,1,"Hameau des Chaumières",45.154639,5.689527,0,0,OGR:SA:CTP101024,Europe/Paris,,OGR, +OGR:SP:101039,1,"Le Bournet",45.157443,5.689989,0,0,OGR:SA:CTP101023,Europe/Paris,,OGR, +OGR:SP:101040,1,"La Baume",45.160514,5.689958,0,0,OGR:SA:CTP101022,Europe/Paris,,OGR, +OGR:SP:101041,1,"Marc Sangnier",45.164931,5.689181,0,0,OGR:SA:CTP101021,Europe/Paris,,OGR, +OGR:SP:101042,1,"Tuilerie",45.169039,5.692076,0,0,OGR:SA:CTP101019,Europe/Paris,,OGR, +OGR:SP:101043,1,"Percevalière",45.17027,5.686499,0,0,OGR:SA:CTP101018,Europe/Paris,,OGR, +OGR:SP:101044,1,"Les Côtes",45.210065,5.647489,0,0,OGR:SA:CTP101044,Europe/Paris,,OGR, +OGR:SP:101045,1,"Beaurevoir",45.210095,5.648612,0,0,OGR:SA:CTP101045,Europe/Paris,,OGR, +OGR:SP:101046,1,"Vieux donjon",45.211384,5.649772,0,0,OGR:SA:CTP101046,Europe/Paris,,OGR, +OGR:SP:101047,1,"Mollard - Pichon",45.213608,5.65249,0,0,OGR:SA:CTP101047,Europe/Paris,,OGR, +OGR:SP:101048,1,"Rivoire de la Dame",45.214928,5.65169,0,0,OGR:SA:CTP101048,Europe/Paris,,OGR, +OGR:SP:101049,1,"Les Parcs",45.216575,5.652005,0,0,OGR:SA:CTP101049,Europe/Paris,,OGR, +OGR:SP:101050,1,"Les Chênes",45.21809,5.653433,0,0,OGR:SA:CTP101050,Europe/Paris,,OGR, +OGR:SP:101051,1,"Blanc Fontaine",45.210641,5.656249,0,0,OGR:SA:CTP101051,Europe/Paris,,OGR, +OGR:SP:101052,1,"La Poya",45.197204,5.672026,0,0,O38:SA:CTP3420,Europe/Paris,,OGR, +OGR:SP:101053,1,"Blanc Fontaine",45.210875,5.656276,0,0,OGR:SA:CTP101051,Europe/Paris,,OGR, +OGR:SP:101054,1,"Les Chênes",45.218151,5.653501,0,0,OGR:SA:CTP101050,Europe/Paris,,OGR, +OGR:SP:101055,1,"Les Parcs",45.216543,5.651889,0,0,OGR:SA:CTP101049,Europe/Paris,,OGR, +OGR:SP:101056,1,"Rivoire de la Dame",45.214967,5.651603,0,0,OGR:SA:CTP101048,Europe/Paris,,OGR, +OGR:SP:101057,1,"Mollard - Pichon",45.213539,5.652372,0,0,OGR:SA:CTP101047,Europe/Paris,,OGR, +OGR:SP:101058,1,"Vieux donjon",45.211368,5.649682,0,0,OGR:SA:CTP101046,Europe/Paris,,OGR, +OGR:SP:101059,1,"Beaurevoir",45.210097,5.648549,0,0,OGR:SA:CTP101045,Europe/Paris,,OGR, +OGR:SP:101060,1,"Châtelard",45.273533,5.60481,0,0,OGR:SA:CTP101060,Europe/Paris,,OGR, +OGR:SP:101061,1,"Chemin du Parc",45.274494,5.606129,0,0,OGR:SA:CTP101061,Europe/Paris,,OGR, +OGR:SP:101062,1,"Les Marronniers",45.276357,5.611047,0,0,OGR:SA:CTP101062,Europe/Paris,,OGR, +OGR:SP:101063,1,"Petit Châtelard",45.276082,5.612127,0,0,OGR:SA:CTP101063,Europe/Paris,,OGR, +OGR:SP:101064,1,"Le Béryl",45.274801,5.612829,0,0,OGR:SA:CTP101064,Europe/Paris,,OGR, +OGR:SP:101065,1,"Mairie",45.273049,5.612726,0,0,OGR:SA:CTP100653,Europe/Paris,,OGR, +OGR:SP:101066,1,"Mairie",45.273109,5.612819,0,0,OGR:SA:CTP100653,Europe/Paris,,OGR, +OGR:SP:101067,1,"Le Béryl",45.27487,5.612642,0,0,OGR:SA:CTP101064,Europe/Paris,,OGR, +OGR:SP:101068,1,"Petit Châtelard",45.27657,5.612385,0,0,OGR:SA:CTP101063,Europe/Paris,,OGR, +OGR:SP:101069,1,"Les Marronniers",45.275938,5.610002,0,0,OGR:SA:CTP101062,Europe/Paris,,OGR, +OGR:SP:101070,1,"Chemin du Parc",45.274674,5.606446,0,0,OGR:SA:CTP101061,Europe/Paris,,OGR, +OGR:SP:101071,1,"Les Bonnais",45.239875,5.673023,0,0,OGR:SA:CTP101071,Europe/Paris,,OGR, +OGR:SP:101072,1,"Karben",45.242379,5.671183,0,0,OGR:SA:CTP100744,Europe/Paris,,OGR, +OGR:SP:101073,1,"San Marino - Barrage",45.236747,5.659735,0,0,OGR:SA:CTP101073,Europe/Paris,,OGR, +OGR:SP:101075,1,"Karben",45.242276,5.671022,0,0,OGR:SA:CTP100744,Europe/Paris,,OGR, +OGR:SP:101076,1,"Les Bonnais",45.239783,5.672867,0,0,OGR:SA:CTP101071,Europe/Paris,,OGR, +OGR:SP:101077,1,"Saint Egrève Gare",45.235314,5.671513,0,0,OGR:SA:CTP100747,Europe/Paris,,OGR, +OGR:SP:101078,1,"Rue du Maupas",45.245903,5.62949,0,0,OGR:SA:CTP101078,Europe/Paris,,OGR, +OGR:SP:101079,1,"Village",45.247261,5.62711,0,0,OGR:SA:CTP101079,Europe/Paris,,OGR, +OGR:SP:101080,1,"Parc des Biches",45.250229,5.627847,0,0,OGR:SA:CTP101080,Europe/Paris,,OGR, +OGR:SP:101081,1,"Village",45.247253,5.627059,0,0,OGR:SA:CTP101079,Europe/Paris,,OGR, +OGR:SP:101082,1,"Rue du Maupas",45.245858,5.629474,0,0,OGR:SA:CTP101078,Europe/Paris,,OGR, +OGR:SP:101083,1,"Vence EcoParc",45.227734,5.668458,0,0,OGR:SA:CTP101083,Europe/Paris,,OGR, +OGR:SP:101084,1,"Complexe Sportif",45.211418,5.672715,0,0,OGR:SA:CTP101084,Europe/Paris,,OGR, +OGR:SP:101085,1,"François Blumet",45.209659,5.677003,0,0,OGR:SA:CTP101085,Europe/Paris,,OGR, +OGR:SP:101086,1,"Maladière",45.207877,5.679464,0,0,OGR:SA:CTP101086,Europe/Paris,,OGR, +OGR:SP:101087,1,"Chamechaude",45.205455,5.683259,0,0,OGR:SA:CTP101087,Europe/Paris,,OGR, +OGR:SP:101088,1,"Maladière",45.207626,5.680231,0,0,OGR:SA:CTP101086,Europe/Paris,,OGR, +OGR:SP:101089,1,"François Blumet",45.209938,5.676727,0,0,OGR:SA:CTP101085,Europe/Paris,,OGR, +OGR:SP:101090,1,"Complexe Sportif",45.211361,5.67252,0,0,OGR:SA:CTP101084,Europe/Paris,,OGR, +OGR:SP:101091,1,"Vence EcoParc",45.227453,5.668531,0,0,OGR:SA:CTP101083,Europe/Paris,,OGR, +OGR:SP:101092,1,"Collège Chartreuse",45.217838,5.690961,0,0,OGR:SA:CTP101092,Europe/Paris,,OGR, +OGR:SP:101093,1,"Hôtel de Ville",45.20815,5.707023,0,0,OGR:SA:CTP101093,Europe/Paris,,OGR, +OGR:SP:101094,1,"Conrad Kilian",45.206519,5.708835,0,0,OGR:SA:CTP101094,Europe/Paris,,OGR, +OGR:SP:101095,1,"Résistance",45.203408,5.714326,0,0,OGR:SA:CTP101095,Europe/Paris,,OGR, +OGR:SP:101096,1,"16 Août 1944",45.204124,5.7158,0,0,OGR:SA:CTP101096,Europe/Paris,,OGR, +OGR:SP:101097,1,"Clos Saint Martin",45.205032,5.714026,0,0,OGR:SA:CTP101097,Europe/Paris,,OGR, +OGR:SP:101098,1,"Clos Gérard Gruel",45.209682,5.710517,0,0,OGR:SA:CTP101098,Europe/Paris,,OGR, +OGR:SP:101099,1,"Canet",45.210669,5.706093,0,0,OGR:SA:CTP101099,Europe/Paris,,OGR, +OGR:SP:101100,1,"L'Hermitage",45.214796,5.704483,0,0,OGR:SA:CTP101100,Europe/Paris,,OGR, +OGR:SP:101101,1,"Narbonne",45.214053,5.709985,0,0,OGR:SA:CTP101101,Europe/Paris,,OGR, +OGR:SP:101102,1,"La Banchardière",45.217141,5.712803,0,0,OGR:SA:CTP101102,Europe/Paris,,OGR, +OGR:SP:101103,1,"La Rivoire",45.21994,5.715145,0,0,OGR:SA:CTP101103,Europe/Paris,,OGR, +OGR:SP:101104,1,"La Buisseratière",45.223085,5.717778,0,0,OGR:SA:CTP101104,Europe/Paris,,OGR, +OGR:SP:101105,1,"Gatinet",45.2249,5.719143,0,0,OGR:SA:CTP101105,Europe/Paris,,OGR, +OGR:SP:101106,1,"Ripaillère",45.22682,5.720784,0,0,OGR:SA:CTP101106,Europe/Paris,,OGR, +OGR:SP:101107,1,"Col de Clémencières",45.234197,5.725642,0,0,OGR:SA:CTP101107,Europe/Paris,,OGR, +OGR:SP:101108,1,"Ripaillère",45.226849,5.720709,0,0,OGR:SA:CTP101106,Europe/Paris,,OGR, +OGR:SP:101109,1,"Gatinet",45.224943,5.719083,0,0,OGR:SA:CTP101105,Europe/Paris,,OGR, +OGR:SP:101110,1,"La Buisseratière",45.223105,5.717703,0,0,OGR:SA:CTP101104,Europe/Paris,,OGR, +OGR:SP:101111,1,"La Rivoire",45.220007,5.715081,0,0,OGR:SA:CTP101103,Europe/Paris,,OGR, +OGR:SP:101112,1,"La Banchardière",45.217306,5.712825,0,0,OGR:SA:CTP101102,Europe/Paris,,OGR, +OGR:SP:101113,1,"Narbonne",45.214008,5.709977,0,0,OGR:SA:CTP101101,Europe/Paris,,OGR, +OGR:SP:101114,1,"L'Hermitage",45.214761,5.704417,0,0,OGR:SA:CTP101100,Europe/Paris,,OGR, +OGR:SP:101115,1,"Hôtel de Ville",45.208263,5.706852,0,0,OGR:SA:CTP101093,Europe/Paris,,OGR, +OGR:SP:101116,1,"Canet",45.210431,5.706194,0,0,OGR:SA:CTP101099,Europe/Paris,,OGR, +OGR:SP:101117,1,"Clos Gérard Gruel",45.209625,5.710616,0,0,OGR:SA:CTP101098,Europe/Paris,,OGR, +OGR:SP:101118,1,"Clos Saint Martin",45.204953,5.714018,0,0,OGR:SA:CTP101097,Europe/Paris,,OGR, +OGR:SP:101119,1,"16 Août 1944",45.204172,5.715666,0,0,OGR:SA:CTP101096,Europe/Paris,,OGR, +OGR:SP:101120,1,"Résistance",45.203386,5.714276,0,0,OGR:SA:CTP101095,Europe/Paris,,OGR, +OGR:SP:101121,1,"Conrad Kilian",45.206506,5.708739,0,0,OGR:SA:CTP101094,Europe/Paris,,OGR, +OGR:SP:101122,1,"Hôtel de Ville",45.207848,5.706572,0,0,OGR:SA:CTP101093,Europe/Paris,,OGR, +OGR:SP:101123,1,"Levetière",45.226089,5.725411,0,0,OGR:SA:CTP101123,Europe/Paris,,OGR, +OGR:SP:101124,1,"Lachal",45.222249,5.724673,0,0,OGR:SA:CTP101124,Europe/Paris,,OGR, +OGR:SP:101125,1,"Mas Caché",45.217702,5.721871,0,0,OGR:SA:CTP101125,Europe/Paris,,OGR, +OGR:SP:101126,1,"Le Gomma",45.215129,5.719141,0,0,OGR:SA:CTP101126,Europe/Paris,,OGR, +OGR:SP:101127,1,"Hôtel Bellevue",45.211533,5.71775,0,0,OGR:SA:CTP101127,Europe/Paris,,OGR, +OGR:SP:101128,1,"Les Combes",45.209635,5.718004,0,0,OGR:SA:CTP101128,Europe/Paris,,OGR, +OGR:SP:101129,1,"Le Reposoir",45.209448,5.716439,0,0,OGR:SA:CTP101129,Europe/Paris,,OGR, +OGR:SP:101130,1,"Les Fauvettes",45.205213,5.718259,0,0,OGR:SA:CTP101130,Europe/Paris,,OGR, +OGR:SP:101131,1,"Place du Village",45.203651,5.716932,0,0,OGR:SA:CTP101131,Europe/Paris,,OGR, +OGR:SP:101132,1,"Casamaures - Village",45.198993,5.717993,0,0,OGR:SA:CTP101132,Europe/Paris,,OGR, +OGR:SP:101133,1,"Casamaures - Village",45.198961,5.718131,0,0,OGR:SA:CTP101132,Europe/Paris,,OGR, +OGR:SP:101134,1,"Place du Village",45.203637,5.716702,0,0,OGR:SA:CTP101131,Europe/Paris,,OGR, +OGR:SP:101135,1,"Les Fauvettes",45.20658,5.7175,0,0,OGR:SA:CTP101130,Europe/Paris,,OGR, +OGR:SP:101136,1,"Le Reposoir",45.209789,5.716485,0,0,OGR:SA:CTP101129,Europe/Paris,,OGR, +OGR:SP:101137,1,"Les Combes",45.209715,5.718034,0,0,OGR:SA:CTP101128,Europe/Paris,,OGR, +OGR:SP:101138,1,"Hôtel Bellevue",45.211777,5.717727,0,0,OGR:SA:CTP101127,Europe/Paris,,OGR, +OGR:SP:101139,1,"Le Gomma",45.215283,5.719405,0,0,OGR:SA:CTP101126,Europe/Paris,,OGR, +OGR:SP:101140,1,"Mas Caché",45.217349,5.721939,0,0,OGR:SA:CTP101125,Europe/Paris,,OGR, +OGR:SP:101141,1,"Lachal",45.222582,5.724754,0,0,OGR:SA:CTP101124,Europe/Paris,,OGR, +OGR:SP:101142,1,"Levetière",45.22614,5.725512,0,0,OGR:SA:CTP101123,Europe/Paris,,OGR, +OGR:SP:101143,1,"Planfay Haut",45.27994,5.718874,0,0,OGR:SA:CTP101143,Europe/Paris,,OGR, +OGR:SP:101144,1,"Planfay Combaleyre",45.276444,5.717141,0,0,OGR:SA:CTP101144,Europe/Paris,,OGR, +OGR:SP:101145,1,"Planfay Bas",45.278695,5.71365,0,0,OGR:SA:CTP101145,Europe/Paris,,OGR, +OGR:SP:101146,1,"Pomarey",45.282952,5.712168,0,0,OGR:SA:CTP101146,Europe/Paris,,OGR, +OGR:SP:101147,1,"Pomarey Bas",45.280454,5.709606,0,0,OGR:SA:CTP101147,Europe/Paris,,OGR, +OGR:SP:101148,1,"Savoyardière",45.278332,5.708329,0,0,OGR:SA:CTP101148,Europe/Paris,,OGR, +OGR:SP:101149,1,"Pont du Gua",45.276086,5.707274,0,0,OGR:SA:CTP101149,Europe/Paris,,OGR, +OGR:SP:101150,1,"Village",45.263349,5.69973,0,0,OGR:SA:CTP101150,Europe/Paris,,OGR, +OGR:SP:101151,1,"Le Mollard",45.258224,5.695914,0,0,OGR:SA:CTP101151,Europe/Paris,,OGR, +OGR:SP:101152,1,"Garcinière",45.251639,5.69488,0,0,OGR:SA:CTP101152,Europe/Paris,,OGR, +OGR:SP:101153,1,"Bellevue",45.244057,5.692443,0,0,OGR:SA:CTP101153,Europe/Paris,,OGR, +OGR:SP:101154,1,"Champy",45.239914,5.691581,0,0,OGR:SA:CTP101154,Europe/Paris,,OGR, +OGR:SP:101155,1,"Chemin vert",45.236595,5.692362,0,0,OGR:SA:CTP101155,Europe/Paris,,OGR, +OGR:SP:101156,1,"Collège Barnave",45.230968,5.691754,0,0,OGR:SA:CTP101156,Europe/Paris,,OGR, +OGR:SP:101157,1,"Collège Barnave",45.230935,5.691943,0,0,OGR:SA:CTP101156,Europe/Paris,,OGR, +OGR:SP:101158,1,"Chemin vert",45.236566,5.692449,0,0,OGR:SA:CTP101155,Europe/Paris,,OGR, +OGR:SP:101159,1,"Champy",45.239921,5.691645,0,0,OGR:SA:CTP101154,Europe/Paris,,OGR, +OGR:SP:101160,1,"Bellevue",45.244172,5.692527,0,0,OGR:SA:CTP101153,Europe/Paris,,OGR, +OGR:SP:101161,1,"Garcinière",45.25161,5.694942,0,0,OGR:SA:CTP101152,Europe/Paris,,OGR, +OGR:SP:101162,1,"Le Mollard",45.258193,5.696039,0,0,OGR:SA:CTP101151,Europe/Paris,,OGR, +OGR:SP:101163,1,"Village",45.263346,5.699807,0,0,OGR:SA:CTP101150,Europe/Paris,,OGR, +OGR:SP:101164,1,"Pont du Gua",45.276076,5.707325,0,0,OGR:SA:CTP101149,Europe/Paris,,OGR, +OGR:SP:101165,1,"Savoyardière",45.278322,5.708379,0,0,OGR:SA:CTP101148,Europe/Paris,,OGR, +OGR:SP:101166,1,"Pomarey Bas",45.280452,5.709682,0,0,OGR:SA:CTP101147,Europe/Paris,,OGR, +OGR:SP:101167,1,"Pomarey",45.282954,5.712117,0,0,OGR:SA:CTP101146,Europe/Paris,,OGR, +OGR:SP:101168,1,"Planfay Bas",45.278689,5.713573,0,0,OGR:SA:CTP101145,Europe/Paris,,OGR, +OGR:SP:101169,1,"Planfay Combaleyre",45.276427,5.717115,0,0,OGR:SA:CTP101144,Europe/Paris,,OGR, +OGR:SP:101170,1,"Planfay Haut",45.27993,5.718924,0,0,OGR:SA:CTP101143,Europe/Paris,,OGR, +OGR:SP:101171,1,"La Cime de Mont-Quaix",45.257327,5.746089,0,0,OGR:SA:CTP101171,Europe/Paris,,OGR, +OGR:SP:101172,1,"Fontvieille",45.259201,5.744904,0,0,OGR:SA:CTP101172,Europe/Paris,,OGR, +OGR:SP:101173,1,"Mont-Quaix",45.255752,5.742844,0,0,OGR:SA:CTP101173,Europe/Paris,,OGR, +OGR:SP:101174,1,"Bas de Mont-Quaix",45.252878,5.741737,0,0,OGR:SA:CTP101174,Europe/Paris,,OGR, +OGR:SP:101175,1,"Sous La Frette",45.250363,5.735323,0,0,OGR:SA:CTP101175,Europe/Paris,,OGR, +OGR:SP:101176,1,"Roudier",45.248117,5.731642,0,0,OGR:SA:CTP101176,Europe/Paris,,OGR, +OGR:SP:101177,1,"Le Charpen",45.24256,5.725478,0,0,OGR:SA:CTP101177,Europe/Paris,,OGR, +OGR:SP:101178,1,"Centre Aéré",45.247526,5.722951,0,0,OGR:SA:CTP101178,Europe/Paris,,OGR, +OGR:SP:101179,1,"Le Château",45.252165,5.722023,0,0,OGR:SA:CTP101179,Europe/Paris,,OGR, +OGR:SP:101180,1,"Ecoles",45.253462,5.719923,0,0,OGR:SA:CTP101180,Europe/Paris,,OGR, +OGR:SP:101181,1,"Place",45.25319,5.717318,0,0,OGR:SA:CTP101181,Europe/Paris,,OGR, +OGR:SP:101182,1,"Bas de Petesset",45.256348,5.710588,0,0,OGR:SA:CTP101182,Europe/Paris,,OGR, +OGR:SP:101183,1,"Bas de Petesset",45.256372,5.710398,0,0,OGR:SA:CTP101182,Europe/Paris,,OGR, +OGR:SP:101184,1,"Le Barbet",45.258006,5.708152,0,0,OGR:SA:CTP101184,Europe/Paris,,OGR, +OGR:SP:101185,1,"Le Bas de Quaix",45.253987,5.701419,0,0,OGR:SA:CTP101185,Europe/Paris,,OGR, +OGR:SP:101186,1,"Le Bas de Quaix",45.25385,5.702099,0,0,OGR:SA:CTP101185,Europe/Paris,,OGR, +OGR:SP:101187,1,"Le Barbet",45.257992,5.708049,0,0,OGR:SA:CTP101184,Europe/Paris,,OGR, +OGR:SP:101188,1,"Place",45.253252,5.717373,0,0,OGR:SA:CTP101181,Europe/Paris,,OGR, +OGR:SP:101189,1,"Le Château",45.252049,5.721978,0,0,OGR:SA:CTP101179,Europe/Paris,,OGR, +OGR:SP:101190,1,"Centre Aéré",45.247628,5.722856,0,0,OGR:SA:CTP101178,Europe/Paris,,OGR, +OGR:SP:101191,1,"Le Charpen",45.242472,5.725422,0,0,OGR:SA:CTP101177,Europe/Paris,,OGR, +OGR:SP:101192,1,"Roudier",45.24801,5.731598,0,0,OGR:SA:CTP101176,Europe/Paris,,OGR, +OGR:SP:101193,1,"Sous La Frette",45.250318,5.735346,0,0,OGR:SA:CTP101175,Europe/Paris,,OGR, +OGR:SP:101194,1,"Bas de Mont-Quaix",45.252767,5.741806,0,0,OGR:SA:CTP101174,Europe/Paris,,OGR, +OGR:SP:101195,1,"Mont-Quaix",45.255206,5.743027,0,0,OGR:SA:CTP101173,Europe/Paris,,OGR, +OGR:SP:101196,1,"Fontvieille",45.259204,5.74507,0,0,OGR:SA:CTP101172,Europe/Paris,,OGR, +OGR:SP:101197,1,"La Cime de Mont-Quaix",45.257354,5.746104,0,0,OGR:SA:CTP101171,Europe/Paris,,OGR, +OGR:SP:101198,1,"Col de Porte",45.289819,5.767043,0,0,OGR:SA:CTP101198,Europe/Paris,,OGR, +OGR:SP:101199,1,"Pont du Croz",45.276688,5.757469,0,0,OGR:SA:CTP101199,Europe/Paris,,OGR, +OGR:SP:101200,1,"Le Village",45.273394,5.758605,0,0,OGR:SA:CTP101200,Europe/Paris,,OGR, +OGR:SP:101201,1,"Les Jonquilles",45.264674,5.774197,0,0,OGR:SA:CTP101201,Europe/Paris,,OGR, +OGR:SP:101202,1,"Churut",45.264745,5.777427,0,0,OGR:SA:CTP101202,Europe/Paris,,OGR, +OGR:SP:101203,1,"Place",45.25948,5.777063,0,0,OGR:SA:CTP101203,Europe/Paris,,OGR, +OGR:SP:101204,1,"Le Gouillat",45.254739,5.771108,0,0,OGR:SA:CTP101204,Europe/Paris,,OGR, +OGR:SP:101205,1,"Saint-Eynard",45.249262,5.765339,0,0,OGR:SA:CTP101205,Europe/Paris,,OGR, +OGR:SP:101206,1,"Col de Vence",45.234007,5.751067,0,0,OGR:SA:CTP101206,Europe/Paris,,OGR, +OGR:SP:101207,1,"Batonnière",45.227332,5.75876,0,0,OGR:SA:CTP101207,Europe/Paris,,OGR, +OGR:SP:101208,1,"La Garenne",45.226786,5.765485,0,0,OGR:SA:CTP100794,Europe/Paris,,OGR, +OGR:SP:101209,1,"Monument",45.217001,5.753601,0,0,OGR:SA:CTP100789,Europe/Paris,,OGR, +OGR:SP:101210,1,"Le Gorget",45.215322,5.748457,0,0,OGR:SA:CTP101210,Europe/Paris,,OGR, +OGR:SP:101211,1,"Saint-Germain",45.210153,5.744085,0,0,OGR:SA:CTP101211,Europe/Paris,,OGR, +OGR:SP:101212,1,"Le Rozan",45.209256,5.742258,0,0,OGR:SA:CTP101212,Europe/Paris,,OGR, +OGR:SP:101213,1,"Le Rozan",45.209254,5.742347,0,0,OGR:SA:CTP101212,Europe/Paris,,OGR, +OGR:SP:101214,1,"Saint-Germain",45.21004,5.743963,0,0,OGR:SA:CTP101211,Europe/Paris,,OGR, +OGR:SP:101215,1,"Le Gorget",45.215275,5.748521,0,0,OGR:SA:CTP101210,Europe/Paris,,OGR, +OGR:SP:101216,1,"Monument",45.217017,5.753666,0,0,OGR:SA:CTP100789,Europe/Paris,,OGR, +OGR:SP:101218,1,"Batonnière",45.227283,5.758885,0,0,OGR:SA:CTP101207,Europe/Paris,,OGR, +OGR:SP:101219,1,"Col de Vence",45.234192,5.75118,0,0,OGR:SA:CTP101206,Europe/Paris,,OGR, +OGR:SP:101220,1,"Saint-Eynard",45.24924,5.765465,0,0,OGR:SA:CTP101205,Europe/Paris,,OGR, +OGR:SP:101221,1,"Le Gouillat",45.254678,5.771041,0,0,OGR:SA:CTP101204,Europe/Paris,,OGR, +OGR:SP:101222,1,"Place",45.259536,5.777296,0,0,OGR:SA:CTP101203,Europe/Paris,,OGR, +OGR:SP:101223,1,"Churut",45.264788,5.777519,0,0,OGR:SA:CTP101202,Europe/Paris,,OGR, +OGR:SP:101224,1,"Les Jonquilles",45.264745,5.77424,0,0,OGR:SA:CTP101201,Europe/Paris,,OGR, +OGR:SP:101225,1,"Col de Porte",45.289746,5.767064,0,0,OGR:SA:CTP101198,Europe/Paris,,OGR, +OGR:SP:101226,1,"Le Village",45.273468,5.758533,0,0,OGR:SA:CTP101200,Europe/Paris,,OGR, +OGR:SP:101227,1,"Pont du Croz",45.276636,5.757415,0,0,OGR:SA:CTP101199,Europe/Paris,,OGR, +OGR:SP:101228,1,"Chemin de Namière",45.272316,5.678532,0,0,OGR:SA:CTP101228,Europe/Paris,,OGR, +OGR:SP:101229,1,"Colavière",45.272372,5.676061,0,0,OGR:SA:CTP101229,Europe/Paris,,OGR, +OGR:SP:101230,1,"Fochaire",45.271584,5.67442,0,0,OGR:SA:CTP101230,Europe/Paris,,OGR, +OGR:SP:101231,1,"La Rivoire",45.268735,5.668536,0,0,OGR:SA:CTP101231,Europe/Paris,,OGR, +OGR:SP:101232,1,"Le Fontanil Cimetière",45.258831,5.66352,0,0,OGR:SA:CTP101232,Europe/Paris,,OGR, +OGR:SP:101233,1,"Le Fontanil Mairie",45.255587,5.666295,0,0,OGR:SA:CTP101233,Europe/Paris,,OGR, +OGR:SP:101234,1,"Rafour",45.248989,5.666924,0,0,OGR:SA:CTP101234,Europe/Paris,,OGR, +OGR:SP:101237,1,"Rafour",45.249479,5.667121,0,0,OGR:SA:CTP101234,Europe/Paris,,OGR, +OGR:SP:101238,1,"Le Fontanil Mairie",45.255634,5.666396,0,0,OGR:SA:CTP101233,Europe/Paris,,OGR, +OGR:SP:101239,1,"Le Fontanil Cimetière",45.258855,5.663608,0,0,OGR:SA:CTP101232,Europe/Paris,,OGR, +OGR:SP:101240,1,"La Rivoire",45.268688,5.668597,0,0,OGR:SA:CTP101231,Europe/Paris,,OGR, +OGR:SP:101241,1,"Fochaire",45.271536,5.674506,0,0,OGR:SA:CTP101230,Europe/Paris,,OGR, +OGR:SP:101242,1,"Colavière",45.272317,5.676096,0,0,OGR:SA:CTP101229,Europe/Paris,,OGR, +OGR:SP:101243,1,"Chemin de Namière",45.272282,5.678479,0,0,OGR:SA:CTP101228,Europe/Paris,,OGR, +OGR:SP:101244,1,"Lycée",45.069075,5.766452,0,0,O38:SA:CTP1503,Europe/Paris,,OGR, +OGR:SP:101245,1,"Chantefeuille",45.080449,5.774816,0,0,O38:SA:CTP15198,Europe/Paris,,OGR, +OGR:SP:101246,1,"Collège Les Mattons",45.086902,5.774673,0,0,O38:SA:CTP1961,Europe/Paris,,OGR, +OGR:SP:101249,1,"Eglise",45.110752,5.787241,0,0,OGR:SA:CTP101249,Europe/Paris,,OGR, +OGR:SP:101250,1,"Mont Rolland",45.115277,5.784052,0,0,OGR:SA:CTP101250,Europe/Paris,,OGR, +OGR:SP:101251,1,"L'Olympe",45.117845,5.782851,0,0,OGR:SA:CTP101251,Europe/Paris,,OGR, +OGR:SP:101252,1,"Le Replat",45.120984,5.781462,0,0,OGR:SA:CTP101252,Europe/Paris,,OGR, +OGR:SP:101253,1,"Les Métraux",45.121639,5.785045,0,0,OGR:SA:CTP101253,Europe/Paris,,OGR, +OGR:SP:101254,1,"Le Coin",45.127985,5.785107,0,0,OGR:SA:CTP101254,Europe/Paris,,OGR, +OGR:SP:101255,1,"Souveyron",45.130611,5.778249,0,0,OGR:SA:CTP101255,Europe/Paris,,OGR, +OGR:SP:101256,1,"L'Enclos",45.133301,5.774841,0,0,OGR:SA:CTP101256,Europe/Paris,,OGR, +OGR:SP:101257,1,"Tavernolles",45.136285,5.770369,0,0,OGR:SA:CTP101257,Europe/Paris,,OGR, +OGR:SP:101258,1,"Le Verderet",45.146972,5.754336,0,0,OGR:SA:CTP101258,Europe/Paris,,OGR, +OGR:SP:101259,1,"Les Javaux",45.151125,5.74959,0,0,OGR:SA:CTP100598,Europe/Paris,,OGR, +OGR:SP:101260,1,"Odyssée",45.153365,5.748481,0,0,OGR:SA:CTP100189,Europe/Paris,,OGR, +OGR:SP:101261,1,"Général de Gaulle",45.162398,5.744021,0,0,OGR:SA:CTP101261,Europe/Paris,,OGR, +OGR:SP:101262,1,"Grand'place",45.158902,5.732047,0,0,OGR:SA:CTP100274,Europe/Paris,,OGR, +OGR:SP:101263,1,"Tavernolles",45.136119,5.770486,0,0,OGR:SA:CTP101257,Europe/Paris,,OGR, +OGR:SP:101264,1,"L'Enclos",45.133287,5.774725,0,0,OGR:SA:CTP101256,Europe/Paris,,OGR, +OGR:SP:101266,1,"Le Coin",45.127951,5.785042,0,0,OGR:SA:CTP101254,Europe/Paris,,OGR, +OGR:SP:101267,1,"Les Métraux",45.121686,5.784984,0,0,OGR:SA:CTP101253,Europe/Paris,,OGR, +OGR:SP:101268,1,"Le Replat",45.120766,5.781423,0,0,OGR:SA:CTP101252,Europe/Paris,,OGR, +OGR:SP:101269,1,"L'Olympe",45.117756,5.78282,0,0,OGR:SA:CTP101251,Europe/Paris,,OGR, +OGR:SP:101270,1,"Mont Rolland",45.115399,5.783907,0,0,OGR:SA:CTP101250,Europe/Paris,,OGR, +OGR:SP:101271,1,"Eglise",45.110717,5.787163,0,0,OGR:SA:CTP101249,Europe/Paris,,OGR, +OGR:SP:101273,1,"Chantefeuille",45.080582,5.774863,0,0,O38:SA:CTP15198,Europe/Paris,,OGR, +OGR:SP:101274,1,"le village",45.094966,5.764822,0,0,OGR:SA:CTP101274,Europe/Paris,,OGR, +OGR:SP:101275,1,"Collège Les Mattons",45.08654,5.774672,0,0,O38:SA:CTP1961,Europe/Paris,,OGR, +OGR:SP:101276,1,"Les Simianes",45.116118,5.757781,0,0,OGR:SA:CTP101276,Europe/Paris,,OGR, +OGR:SP:101277,1,"Les Thévenets",45.115714,5.751016,0,0,OGR:SA:CTP101277,Europe/Paris,,OGR, +OGR:SP:101278,1,"Le Plâtre",45.117754,5.747899,0,0,OGR:SA:CTP101278,Europe/Paris,,OGR, +OGR:SP:101279,1,"Place du Laca",45.113789,5.728633,0,0,OGR:SA:CTP101279,Europe/Paris,,OGR, +OGR:SP:101280,1,"François Quesnay",45.148715,5.735395,0,0,OGR:SA:CTP100187,Europe/Paris,,OGR, +OGR:SP:101281,1,"Alpexpo",45.154491,5.733788,0,0,OGR:SA:CTP101281,Europe/Paris,,OGR, +OGR:SP:101282,1,"Polesud - Alpexpo",45.157154,5.733837,0,0,OGR:SA:CTP101282,Europe/Paris,,OGR, +OGR:SP:101283,1,"Grand'place",45.159239,5.732488,0,0,OGR:SA:CTP100274,Europe/Paris,,OGR, +OGR:SP:101284,1,"Polesud - Alpexpo",45.15706,5.733678,0,0,OGR:SA:CTP101282,Europe/Paris,,OGR, +OGR:SP:101285,1,"Alpexpo",45.154224,5.73367,0,0,OGR:SA:CTP101281,Europe/Paris,,OGR, +OGR:SP:101286,1,"François Quesnay",45.148549,5.735245,0,0,OGR:SA:CTP100187,Europe/Paris,,OGR, +OGR:SP:101287,1,"Place du Laca",45.113736,5.728617,0,0,OGR:SA:CTP101279,Europe/Paris,,OGR, +OGR:SP:101288,1,"Le Plâtre",45.117713,5.747794,0,0,OGR:SA:CTP101278,Europe/Paris,,OGR, +OGR:SP:101289,1,"Les Thévenets",45.115651,5.751012,0,0,OGR:SA:CTP101277,Europe/Paris,,OGR, +OGR:SP:101290,1,"Les Simianes",45.116046,5.757764,0,0,OGR:SA:CTP101276,Europe/Paris,,OGR, +OGR:SP:101291,1,"Le Bourg",45.138709,5.79299,0,0,OGR:SA:CTP101291,Europe/Paris,,OGR, +OGR:SP:101292,1,"Le Chollet",45.140249,5.783642,0,0,OGR:SA:CTP101292,Europe/Paris,,OGR, +OGR:SP:101293,1,"Les Angonnes",45.139932,5.776167,0,0,OGR:SA:CTP101293,Europe/Paris,,OGR, +OGR:SP:101294,1,"Beaulieu",45.138554,5.77355,0,0,OGR:SA:CTP101294,Europe/Paris,,OGR, +OGR:SP:101295,1,"Collège des Saules",45.161428,5.743058,0,0,OGR:SA:CTP101295,Europe/Paris,,OGR, +OGR:SP:101296,1,"Général de Gaulle",45.161476,5.74385,0,0,OGR:SA:CTP101261,Europe/Paris,,OGR, +OGR:SP:101297,1,"Odyssée",45.153568,5.748302,0,0,OGR:SA:CTP100189,Europe/Paris,,OGR, +OGR:SP:101298,1,"Les Javaux",45.150414,5.749865,0,0,OGR:SA:CTP100598,Europe/Paris,,OGR, +OGR:SP:101299,1,"Le Verderet",45.146938,5.754283,0,0,OGR:SA:CTP101258,Europe/Paris,,OGR, +OGR:SP:101300,1,"Beaulieu",45.138534,5.773612,0,0,OGR:SA:CTP101294,Europe/Paris,,OGR, +OGR:SP:101301,1,"Les Angonnes",45.13988,5.776112,0,0,OGR:SA:CTP101293,Europe/Paris,,OGR, +OGR:SP:101302,1,"Le Bourg",45.138665,5.792936,0,0,OGR:SA:CTP101291,Europe/Paris,,OGR, +OGR:SP:101303,1,"Lagay",45.140803,5.749974,0,0,OGR:SA:CTP101303,Europe/Paris,,OGR, +OGR:SP:101304,1,"Mairie",45.137704,5.747711,0,0,OGR:SA:CTP101304,Europe/Paris,,OGR, +OGR:SP:101305,1,"Les Vignes",45.138088,5.745737,0,0,OGR:SA:CTP101305,Europe/Paris,,OGR, +OGR:SP:101306,1,"La Maritelle",45.141618,5.741348,0,0,OGR:SA:CTP101306,Europe/Paris,,OGR, +OGR:SP:101307,1,"La Maritelle",45.141078,5.741315,0,0,OGR:SA:CTP101306,Europe/Paris,,OGR, +OGR:SP:101308,1,"Les Vignes",45.138082,5.74566,0,0,OGR:SA:CTP101305,Europe/Paris,,OGR, +OGR:SP:101309,1,"Mairie",45.137753,5.748159,0,0,OGR:SA:CTP101304,Europe/Paris,,OGR, +OGR:SP:101310,1,"Bresson Lagay",45.140929,5.749982,0,0,OGR:SA:CTP101310,Europe/Paris,,OGR, +OGR:SP:101311,1,"Vignate",45.189234,5.77806,0,0,O38:SA:CTP13147,Europe/Paris,,OGR, +OGR:SP:101312,1,"La Combe",45.174133,5.789917,0,0,OGR:SA:CTP101312,Europe/Paris,,OGR, +OGR:SP:101313,1,"Les Terrats",45.168793,5.793586,0,0,OGR:SA:CTP101313,Europe/Paris,,OGR, +OGR:SP:101314,1,"Le Chenil",45.1631,5.812296,0,0,O38:SA:CTP2745,Europe/Paris,,OGR, +OGR:SP:101315,1,"Uriage Gare",45.14395,5.829153,0,0,O38:SA:CTP2676,Europe/Paris,,OGR, +OGR:SP:101316,1,"La Tuilerie",45.136172,5.824225,0,0,O38:SA:CTP2768,Europe/Paris,,OGR, +OGR:SP:101317,1,"Les Alberges",45.131482,5.819033,0,0,OGR:SA:CTP101317,Europe/Paris,,OGR, +OGR:SP:101318,1,"Les Guichards",45.127591,5.81678,0,0,OGR:SA:CTP101318,Europe/Paris,,OGR, +OGR:SP:101319,1,"Ecole Jules Bruant",45.121723,5.814403,0,0,OGR:SA:CTP101319,Europe/Paris,,OGR, +OGR:SP:101320,1,"Vaulnaveys-Le-Haut Le Village",45.119335,5.810986,0,0,OGR:SA:CTP101320,Europe/Paris,,OGR, +OGR:SP:101321,1,"Marchandises",45.114829,5.807665,0,0,OGR:SA:CTP101321,Europe/Paris,,OGR, +OGR:SP:101322,1,"Maison Blanche",45.111811,5.805124,0,0,OGR:SA:CTP101322,Europe/Paris,,OGR, +OGR:SP:101323,1,"Vaulnaveys-Le-Bas Le Village",45.105493,5.80042,0,0,OGR:SA:CTP101323,Europe/Paris,,OGR, +OGR:SP:101324,1,"Chemin des Cottes",45.093976,5.793258,0,0,OGR:SA:CTP101324,Europe/Paris,,OGR, +OGR:SP:101325,1,"Les Travers",45.091325,5.791619,0,0,O38:SA:CTP1991,Europe/Paris,,OGR, +OGR:SP:101326,1,"Le Pont du Mas",45.086647,5.788827,0,0,OGR:SA:CTP101326,Europe/Paris,,OGR, +OGR:SP:101327,1,"Les Corniers",45.081763,5.787581,0,0,OGR:SA:CTP101327,Europe/Paris,,OGR, +OGR:SP:101328,1,"Les Allas",45.075469,5.778601,0,0,OGR:SA:CTP101328,Europe/Paris,,OGR, +OGR:SP:101329,1,"Place du Château",45.075093,5.772046,0,0,O38:SA:CTP1488,Europe/Paris,,OGR, +OGR:SP:101330,1,"L'Alliance",45.081985,5.76834,0,0,O38:SA:CTP2001,Europe/Paris,,OGR, +OGR:SP:101331,1,"L'Alliance",45.082084,5.768037,0,0,O38:SA:CTP2001,Europe/Paris,,OGR, +OGR:SP:101332,1,"Place du Château",45.075098,5.772179,0,0,O38:SA:CTP1488,Europe/Paris,,OGR, +OGR:SP:101333,1,"Les Allas",45.075439,5.778408,0,0,OGR:SA:CTP101328,Europe/Paris,,OGR, +OGR:SP:101334,1,"Les Corniers",45.081432,5.787497,0,0,OGR:SA:CTP101327,Europe/Paris,,OGR, +OGR:SP:101335,1,"Le Pont du Mas",45.086869,5.789009,0,0,OGR:SA:CTP101326,Europe/Paris,,OGR, +OGR:SP:101336,1,"Les Travers",45.091065,5.79159,0,0,O38:SA:CTP1991,Europe/Paris,,OGR, +OGR:SP:101337,1,"Chemin des Cottes",45.09384,5.793262,0,0,OGR:SA:CTP101324,Europe/Paris,,OGR, +OGR:SP:101338,1,"Vaulnaveys-Le-Bas Le Village",45.105332,5.800384,0,0,OGR:SA:CTP101323,Europe/Paris,,OGR, +OGR:SP:101339,1,"Maison Blanche",45.111675,5.804887,0,0,OGR:SA:CTP101322,Europe/Paris,,OGR, +OGR:SP:101340,1,"Marchandises",45.11514,5.808091,0,0,OGR:SA:CTP101321,Europe/Paris,,OGR, +OGR:SP:101341,1,"Vaulnaveys-Le-Haut Le Village",45.11935,5.811101,0,0,OGR:SA:CTP101320,Europe/Paris,,OGR, +OGR:SP:101342,1,"Ecole Jules Bruant",45.121361,5.814164,0,0,OGR:SA:CTP101319,Europe/Paris,,OGR, +OGR:SP:101343,1,"Les Guichards",45.125652,5.816875,0,0,OGR:SA:CTP101318,Europe/Paris,,OGR, +OGR:SP:101344,1,"Les Alberges",45.130854,5.818968,0,0,OGR:SA:CTP101317,Europe/Paris,,OGR, +OGR:SP:101345,1,"La Tuilerie",45.136298,5.824805,0,0,O38:SA:CTP2768,Europe/Paris,,OGR, +OGR:SP:101346,1,"Uriage Gare",45.143994,5.829487,0,0,O38:SA:CTP2676,Europe/Paris,,OGR, +OGR:SP:101347,1,"Le Chenil",45.163104,5.813047,0,0,O38:SA:CTP2745,Europe/Paris,,OGR, +OGR:SP:101348,1,"Les Terrats",45.169154,5.79295,0,0,OGR:SA:CTP101313,Europe/Paris,,OGR, +OGR:SP:101349,1,"La Combe",45.174098,5.790018,0,0,OGR:SA:CTP101312,Europe/Paris,,OGR, +OGR:SP:101350,1,"Vignate",45.189276,5.778152,0,0,O38:SA:CTP13147,Europe/Paris,,OGR, +OGR:SP:101434,1,"La Poya",45.19709,5.672223,0,0,O38:SA:CTP3420,Europe/Paris,,OGR, +OGR:SP:101435,1,"Charles Michels",45.193855,5.68009,0,0,OGR:SA:CTP101435,Europe/Paris,,OGR, +OGR:SP:101436,1,"Hôtel de Ville - La Source",45.191343,5.687273,0,0,OGR:SA:CTP101436,Europe/Paris,,OGR, +OGR:SP:101437,1,"Louis Maisonnat",45.189203,5.694007,0,0,O38:SA:CTP3347,Europe/Paris,,OGR, +OGR:SP:101438,1,"Les Fontainades - Le Vog",45.189087,5.698443,0,0,OGR:SA:CTP101438,Europe/Paris,,OGR, +OGR:SP:101439,1,"Berriat-Le Magasin",45.188725,5.706724,0,0,OGR:SA:CTP101439,Europe/Paris,,OGR, +OGR:SP:101440,1,"Saint-Bruno",45.188336,5.713423,0,0,OGR:SA:CTP101440,Europe/Paris,,OGR, +OGR:SP:101441,1,"Gares",45.190105,5.715205,0,0,OGR:SA:CTP100767,Europe/Paris,,OGR, +OGR:SP:101442,1,"Alsace-Lorraine",45.18946,5.719972,0,0,OGR:SA:CTP101442,Europe/Paris,,OGR, +OGR:SP:101443,1,"Victor Hugo",45.189731,5.72498,0,0,OGR:SA:CTP100768,Europe/Paris,,OGR, +OGR:SP:101444,1,"Hubert Dubedout - Maison du Tourisme",45.190199,5.728218,0,0,OGR:SA:CTP101444,Europe/Paris,,OGR, +OGR:SP:101445,1,"Verdun - Préfecture",45.1883,5.731438,0,0,OGR:SA:CTP100254,Europe/Paris,,OGR, +OGR:SP:101446,1,"Verdun - Préfecture",45.188325,5.731515,0,0,OGR:SA:CTP100254,Europe/Paris,,OGR, +OGR:SP:101447,1,"Chavant",45.184664,5.731699,0,0,OGR:SA:CTP100331,Europe/Paris,,OGR, +OGR:SP:101448,1,"Albert 1er de Belgique",45.181684,5.73167,0,0,OGR:SA:CTP101448,Europe/Paris,,OGR, +OGR:SP:101449,1,"Mounier",45.178997,5.731786,0,0,OGR:SA:CTP101449,Europe/Paris,,OGR, +OGR:SP:101450,1,"MC2: Maison de la Culture",45.173464,5.731957,0,0,OGR:SA:CTP101450,Europe/Paris,,OGR, +OGR:SP:101451,1,"Malherbe",45.16937,5.732165,0,0,OGR:SA:CTP101451,Europe/Paris,,OGR, +OGR:SP:101452,1,"La Bruyère",45.166348,5.731179,0,0,OGR:SA:CTP101452,Europe/Paris,,OGR, +OGR:SP:101453,1,"Arlequin",45.163587,5.730475,0,0,OGR:SA:CTP101453,Europe/Paris,,OGR, +OGR:SP:101454,1,"Grand'place",45.159012,5.732576,0,0,OGR:SA:CTP100274,Europe/Paris,,OGR, +OGR:SP:101455,1,"Polesud - Alpexpo",45.157343,5.732957,0,0,OGR:SA:CTP101282,Europe/Paris,,OGR, +OGR:SP:101456,1,"Les Granges",45.156961,5.727806,0,0,OGR:SA:CTP101456,Europe/Paris,,OGR, +OGR:SP:101457,1,"Surieux",45.158455,5.721916,0,0,OGR:SA:CTP101457,Europe/Paris,,OGR, +OGR:SP:101458,1,"Essarts - La Butte",45.155885,5.719087,0,0,OGR:SA:CTP101458,Europe/Paris,,OGR, +OGR:SP:101459,1,"Gare",45.153033,5.718419,0,0,OGR:SA:CTP101459,Europe/Paris,,OGR, +OGR:SP:101460,1,"La Rampe - Centre-Ville",45.148791,5.717866,0,0,OGR:SA:CTP100182,Europe/Paris,,OGR, +OGR:SP:101461,1,"Marie Curie",45.145727,5.717082,0,0,OGR:SA:CTP100458,Europe/Paris,,OGR, +OGR:SP:101462,1,"Auguste Delaune",45.1425,5.715423,0,0,OGR:SA:CTP100457,Europe/Paris,,OGR, +OGR:SP:101463,1,"Denis Papin",45.138322,5.71307,0,0,OGR:SA:CTP100591,Europe/Paris,,OGR, +OGR:SP:101464,1,"Denis Papin",45.138311,5.713133,0,0,OGR:SA:CTP100591,Europe/Paris,,OGR, +OGR:SP:101465,1,"Auguste Delaune",45.142502,5.715359,0,0,OGR:SA:CTP100457,Europe/Paris,,OGR, +OGR:SP:101466,1,"Marie Curie",45.145715,5.717183,0,0,OGR:SA:CTP100458,Europe/Paris,,OGR, +OGR:SP:101467,1,"La Rampe - Centre-Ville",45.148788,5.717955,0,0,OGR:SA:CTP100182,Europe/Paris,,OGR, +OGR:SP:101468,1,"Gare",45.153024,5.718496,0,0,OGR:SA:CTP101459,Europe/Paris,,OGR, +OGR:SP:101469,1,"Essarts - La Butte",45.155882,5.719176,0,0,OGR:SA:CTP101458,Europe/Paris,,OGR, +OGR:SP:101470,1,"Surieux",45.158393,5.721874,0,0,OGR:SA:CTP101457,Europe/Paris,,OGR, +OGR:SP:101471,1,"Les Granges",45.156916,5.727803,0,0,OGR:SA:CTP101456,Europe/Paris,,OGR, +OGR:SP:101472,1,"Polesud - Alpexpo",45.157289,5.732954,0,0,OGR:SA:CTP101282,Europe/Paris,,OGR, +OGR:SP:101473,1,"Grand'place",45.159095,5.731919,0,0,OGR:SA:CTP100274,Europe/Paris,,OGR, +OGR:SP:101474,1,"Arlequin",45.163593,5.730565,0,0,OGR:SA:CTP101453,Europe/Paris,,OGR, +OGR:SP:101475,1,"La Bruyère",45.166319,5.73124,0,0,OGR:SA:CTP101452,Europe/Paris,,OGR, +OGR:SP:101476,1,"Malherbe",45.169465,5.732273,0,0,OGR:SA:CTP101451,Europe/Paris,,OGR, +OGR:SP:101477,1,"MC2: Maison de la Culture",45.17347,5.732059,0,0,OGR:SA:CTP101450,Europe/Paris,,OGR, +OGR:SP:101478,1,"Mounier",45.178986,5.731862,0,0,OGR:SA:CTP101449,Europe/Paris,,OGR, +OGR:SP:101479,1,"Albert 1er de Belgique",45.181773,5.731726,0,0,OGR:SA:CTP101448,Europe/Paris,,OGR, +OGR:SP:101480,1,"Chavant",45.184661,5.731775,0,0,OGR:SA:CTP100331,Europe/Paris,,OGR, +OGR:SP:101481,1,"Hubert Dubedout - Maison du Tourisme",45.190226,5.728219,0,0,OGR:SA:CTP101444,Europe/Paris,,OGR, +OGR:SP:101482,1,"Victor Hugo",45.189777,5.724945,0,0,OGR:SA:CTP100768,Europe/Paris,,OGR, +OGR:SP:101483,1,"Alsace-Lorraine",45.189505,5.719988,0,0,OGR:SA:CTP101442,Europe/Paris,,OGR, +OGR:SP:101484,1,"Gares",45.189956,5.715104,0,0,OGR:SA:CTP100767,Europe/Paris,,OGR, +OGR:SP:101485,1,"Saint-Bruno",45.188381,5.713425,0,0,OGR:SA:CTP101440,Europe/Paris,,OGR, +OGR:SP:101486,1,"Berriat-Le Magasin",45.188801,5.706524,0,0,OGR:SA:CTP101439,Europe/Paris,,OGR, +OGR:SP:101487,1,"Les Fontainades - Le Vog",45.189141,5.698447,0,0,OGR:SA:CTP101438,Europe/Paris,,OGR, +OGR:SP:101488,1,"Louis Maisonnat",45.18923,5.694008,0,0,O38:SA:CTP3347,Europe/Paris,,OGR, +OGR:SP:101489,1,"Hôtel de Ville - La Source",45.191378,5.687288,0,0,OGR:SA:CTP101436,Europe/Paris,,OGR, +OGR:SP:101490,1,"Charles Michels",45.193899,5.680105,0,0,OGR:SA:CTP101435,Europe/Paris,,OGR, +OGR:SP:101491,1,"La Poya",45.197115,5.672263,0,0,O38:SA:CTP3420,Europe/Paris,,OGR, +OGR:SP:101492,1,"Presqu'île",45.205788,5.699671,0,0,OGR:SA:CTP100727,Europe/Paris,,OGR, +OGR:SP:101493,1,"CEA - Cambridge",45.202163,5.704313,0,0,OGR:SA:CTP101493,Europe/Paris,,OGR, +OGR:SP:101494,1,"Cité Internationale",45.195085,5.711197,0,0,O38:SA:CTP3442,Europe/Paris,,OGR, +OGR:SP:101495,1,"Palais de Justice",45.191189,5.711686,0,0,OGR:SA:CTP101495,Europe/Paris,,OGR, +OGR:SP:101496,1,"Sainte-Claire - Les Halles",45.191457,5.730675,0,0,OGR:SA:CTP101496,Europe/Paris,,OGR, +OGR:SP:101497,1,"Notre-Dame - Musée",45.193582,5.732142,0,0,OGR:SA:CTP101519,Europe/Paris,,OGR, +OGR:SP:101498,1,"Ile Verte",45.197249,5.73676,0,0,OGR:SA:CTP101498,Europe/Paris,,OGR, +OGR:SP:101499,1,"Hôpital",45.200606,5.741232,0,0,OGR:SA:CTP100325,Europe/Paris,,OGR, +OGR:SP:101500,1,"Michallon",45.200283,5.745326,0,0,OGR:SA:CTP101500,Europe/Paris,,OGR, +OGR:SP:101501,1,"Grand Sablon",45.199076,5.750015,0,0,OGR:SA:CTP100778,Europe/Paris,,OGR, +OGR:SP:101502,1,"Grand Sablon",45.199032,5.75,0,0,OGR:SA:CTP100778,Europe/Paris,,OGR, +OGR:SP:101503,1,"Les Taillées - Universités",45.192239,5.757867,0,0,OGR:SA:CTP101503,Europe/Paris,,OGR, +OGR:SP:101504,1,"Gabriel Fauré",45.192279,5.764305,0,0,OGR:SA:CTP101504,Europe/Paris,,OGR, +OGR:SP:101505,1,"Bibliothèques Universitaires",45.192463,5.7709,0,0,OGR:SA:CTP100206,Europe/Paris,,OGR, +OGR:SP:101506,1,"Condillac - Universités",45.189009,5.774376,0,0,O38:SA:CTP15279,Europe/Paris,,OGR, +OGR:SP:101507,1,"Mayencin - Champ Roman",45.184563,5.779105,0,0,OGR:SA:CTP101507,Europe/Paris,,OGR, +OGR:SP:101508,1,"Gières Gare - Universités",45.185398,5.785499,0,0,OGR:SA:CTP100379,Europe/Paris,,OGR, +OGR:SP:101509,1,"Plaine des Sports",45.187615,5.784544,0,0,OGR:SA:CTP101509,Europe/Paris,,OGR, +OGR:SP:101510,1,"Gières Gare - Universités",45.185453,5.785464,0,0,OGR:SA:CTP100379,Europe/Paris,,OGR, +OGR:SP:101511,1,"Mayencin - Champ Roman",45.184589,5.779145,0,0,OGR:SA:CTP101507,Europe/Paris,,OGR, +OGR:SP:101512,1,"Condillac - Universités",45.189103,5.774426,0,0,O38:SA:CTP15279,Europe/Paris,,OGR, +OGR:SP:101513,1,"Bibliothèques Universitaires",45.19246,5.770976,0,0,OGR:SA:CTP100206,Europe/Paris,,OGR, +OGR:SP:101514,1,"Gabriel Fauré",45.192343,5.764296,0,0,OGR:SA:CTP101504,Europe/Paris,,OGR, +OGR:SP:101515,1,"Les Taillées - Universités",45.192322,5.757887,0,0,OGR:SA:CTP101503,Europe/Paris,,OGR, +OGR:SP:101516,1,"Michallon",45.200346,5.745304,0,0,OGR:SA:CTP101500,Europe/Paris,,OGR, +OGR:SP:101517,1,"Hôpital",45.200653,5.741159,0,0,OGR:SA:CTP100325,Europe/Paris,,OGR, +OGR:SP:101518,1,"Ile Verte",45.197287,5.736699,0,0,OGR:SA:CTP101498,Europe/Paris,,OGR, +OGR:SP:101519,1,"Notre-Dame - Musée",45.193611,5.732068,0,0,OGR:SA:CTP101519,Europe/Paris,,OGR, +OGR:SP:101520,1,"Sainte-Claire - Les Halles",45.191467,5.730625,0,0,OGR:SA:CTP101496,Europe/Paris,,OGR, +OGR:SP:101521,1,"Palais de Justice - Gare",45.191232,5.711765,0,0,OGR:SA:CTP101521,Europe/Paris,,OGR, +OGR:SP:101522,1,"Cité Internationale",45.195082,5.711273,0,0,O38:SA:CTP3442,Europe/Paris,,OGR, +OGR:SP:101523,1,"CEA - Cambridge",45.20264,5.703965,0,0,OGR:SA:CTP101493,Europe/Paris,,OGR, +OGR:SP:101524,1,"Presqu'île",45.205814,5.699711,0,0,OGR:SA:CTP100727,Europe/Paris,,OGR, +OGR:SP:101525,1,"Le Prisme",45.166405,5.690466,0,0,OGR:SA:CTP100695,Europe/Paris,,OGR, +OGR:SP:101526,1,"Mas des Iles",45.167632,5.694333,0,0,OGR:SA:CTP101526,Europe/Paris,,OGR, +OGR:SP:101527,1,"Grand Pré",45.172102,5.69426,0,0,OGR:SA:CTP101527,Europe/Paris,,OGR, +OGR:SP:101528,1,"Fauconnière",45.176509,5.694271,0,0,OGR:SA:CTP101528,Europe/Paris,,OGR, +OGR:SP:101529,1,"Seyssinet-Pariset Hôtel de Ville",45.180209,5.696391,0,0,OGR:SA:CTP100674,Europe/Paris,,OGR, +OGR:SP:101530,1,"Vallier - Catane",45.180064,5.706224,0,0,OGR:SA:CTP101530,Europe/Paris,,OGR, +OGR:SP:101531,1,"Vallier - Docteur Calmette",45.180133,5.710773,0,0,OGR:SA:CTP100262,Europe/Paris,,OGR, +OGR:SP:101532,1,"Vallier - Libération",45.1803,5.715659,0,0,OGR:SA:CTP100529,Europe/Paris,,OGR, +OGR:SP:101533,1,"Foch - Ferrié",45.180801,5.722564,0,0,OGR:SA:CTP101533,Europe/Paris,,OGR, +OGR:SP:101534,1,"Gustave Rivet",45.182333,5.728132,0,0,OGR:SA:CTP100471,Europe/Paris,,OGR, +OGR:SP:101535,1,"Hôtel de Ville",45.187458,5.737791,0,0,O38:SA:CTP3775,Europe/Paris,,OGR, +OGR:SP:101536,1,"Flandrin - Valmy",45.187189,5.744803,0,0,OGR:SA:CTP100391,Europe/Paris,,OGR, +OGR:SP:101537,1,"Péri - Brossolette",45.187706,5.751417,0,0,OGR:SA:CTP100428,Europe/Paris,,OGR, +OGR:SP:101538,1,"Neyrpic - Belledonne",45.186765,5.756542,0,0,OGR:SA:CTP100427,Europe/Paris,,OGR, +OGR:SP:101539,1,"Hector Berlioz - Universités",45.191088,5.758806,0,0,OGR:SA:CTP101539,Europe/Paris,,OGR, +OGR:SP:101540,1,"Condillac - Universités",45.189043,5.774408,0,0,O38:SA:CTP15279,Europe/Paris,,OGR, +OGR:SP:101541,1,"Hector Berlioz - Universités",45.191113,5.758693,0,0,OGR:SA:CTP101539,Europe/Paris,,OGR, +OGR:SP:101542,1,"Neyrpic - Belledonne",45.186848,5.756483,0,0,OGR:SA:CTP100427,Europe/Paris,,OGR, +OGR:SP:101543,1,"Péri - Brossolette",45.187724,5.751418,0,0,OGR:SA:CTP100428,Europe/Paris,,OGR, +OGR:SP:101544,1,"Flandrin - Valmy",45.187209,5.74474,0,0,OGR:SA:CTP100391,Europe/Paris,,OGR, +OGR:SP:101545,1,"Hôtel de Ville",45.187485,5.737767,0,0,O38:SA:CTP3775,Europe/Paris,,OGR, +OGR:SP:101546,1,"Gustave Rivet",45.18236,5.728108,0,0,OGR:SA:CTP100471,Europe/Paris,,OGR, +OGR:SP:101547,1,"Foch - Ferrié",45.180828,5.722553,0,0,OGR:SA:CTP101533,Europe/Paris,,OGR, +OGR:SP:101548,1,"Vallier - Libération",45.180327,5.715648,0,0,OGR:SA:CTP100529,Europe/Paris,,OGR, +OGR:SP:101549,1,"Vallier - Docteur Calmette",45.18016,5.710774,0,0,OGR:SA:CTP100262,Europe/Paris,,OGR, +OGR:SP:101550,1,"Vallier - Catane",45.180091,5.706212,0,0,OGR:SA:CTP101530,Europe/Paris,,OGR, +OGR:SP:101551,1,"Seyssinet-Pariset Hôtel de Ville",45.180254,5.696394,0,0,OGR:SA:CTP100674,Europe/Paris,,OGR, +OGR:SP:101552,1,"Fauconnière",45.176511,5.69422,0,0,OGR:SA:CTP101528,Europe/Paris,,OGR, +OGR:SP:101553,1,"Grand Pré",45.172095,5.694142,0,0,OGR:SA:CTP101527,Europe/Paris,,OGR, +OGR:SP:101554,1,"Mas des Iles",45.167623,5.694209,0,0,OGR:SA:CTP101526,Europe/Paris,,OGR, +OGR:SP:101555,1,"Le Prisme",45.166388,5.690427,0,0,OGR:SA:CTP100695,Europe/Paris,,OGR, +OGR:SP:101556,1,"Cité Jean Macé",45.199959,5.7105,0,0,OGR:SA:CTP101556,Europe/Paris,,OGR, +OGR:SP:101557,1,"Arago",45.197094,5.711739,0,0,OGR:SA:CTP101557,Europe/Paris,,OGR, +OGR:SP:101558,1,"Emile Gueymard",45.195014,5.71351,0,0,OGR:SA:CTP101558,Europe/Paris,,OGR, +OGR:SP:101559,1,"Félix Viallet",45.190731,5.718471,0,0,OGR:SA:CTP101559,Europe/Paris,,OGR, +OGR:SP:101560,1,"Docteur Mazet",45.191388,5.72258,0,0,OGR:SA:CTP101560,Europe/Paris,,OGR, +OGR:SP:101561,1,"Victor Hugo",45.189063,5.725334,0,0,OGR:SA:CTP100768,Europe/Paris,,OGR, +OGR:SP:101562,1,"Docteur Martin",45.187311,5.727277,0,0,OGR:SA:CTP103320,Europe/Paris,,OGR, +OGR:SP:101563,1,"Chavant",45.185336,5.731486,0,0,OGR:SA:CTP100331,Europe/Paris,,OGR, +OGR:SP:101564,1,"Hôtel de Ville",45.18743,5.737509,0,0,O38:SA:CTP3775,Europe/Paris,,OGR, +OGR:SP:101565,1,"Sablons",45.196779,5.752994,0,0,OGR:SA:CTP101565,Europe/Paris,,OGR, +OGR:SP:101566,1,"Plaine Fleurie",45.203314,5.762108,0,0,ONL:SA:CTP3767,Europe/Paris,,OGR, +OGR:SP:101567,1,"Aiguinards-Hexagone",45.205116,5.764715,0,0,OGR:SA:CTP100317,Europe/Paris,,OGR, +OGR:SP:101568,1,"La Revirée",45.20733,5.76796,0,0,O38:SA:CTP3759,Europe/Paris,,OGR, +OGR:SP:101569,1,"Le Brêt",45.205898,5.771744,0,0,OGR:SA:CTP101569,Europe/Paris,,OGR, +OGR:SP:101570,1,"Piscine des Buclos",45.208883,5.77538,0,0,OGR:SA:CTP101570,Europe/Paris,,OGR, +OGR:SP:101571,1,"Mairie",45.209282,5.7785,0,0,OGR:SA:CTP101571,Europe/Paris,,OGR, +OGR:SP:101572,1,"Granier",45.210265,5.784536,0,0,OGR:SA:CTP101572,Europe/Paris,,OGR, +OGR:SP:101573,1,"Malacher",45.211217,5.787219,0,0,OGR:SA:CTP101573,Europe/Paris,,OGR, +OGR:SP:101574,1,"Les Béalières",45.211532,5.790703,0,0,OGR:SA:CTP101574,Europe/Paris,,OGR, +OGR:SP:101575,1,"Maupertuis",45.212852,5.797193,0,0,OGR:SA:CTP101575,Europe/Paris,,OGR, +OGR:SP:101576,1,"Les Béalières",45.211464,5.791451,0,0,OGR:SA:CTP101574,Europe/Paris,,OGR, +OGR:SP:101577,1,"Malacher",45.21128,5.787235,0,0,OGR:SA:CTP101573,Europe/Paris,,OGR, +OGR:SP:101578,1,"Granier",45.210244,5.78405,0,0,OGR:SA:CTP101572,Europe/Paris,,OGR, +OGR:SP:101579,1,"Mairie",45.209409,5.779257,0,0,OGR:SA:CTP101571,Europe/Paris,,OGR, +OGR:SP:101580,1,"Piscine des Buclos",45.208831,5.775033,0,0,OGR:SA:CTP101570,Europe/Paris,,OGR, +OGR:SP:101581,1,"Le Brêt",45.205976,5.771838,0,0,OGR:SA:CTP101569,Europe/Paris,,OGR, +OGR:SP:101582,1,"Aiguinards-Hexagone",45.205081,5.764382,0,0,OGR:SA:CTP100317,Europe/Paris,,OGR, +OGR:SP:101583,1,"Carronnerie - Ile d'Amour",45.201166,5.758753,0,0,OGR:SA:CTP101583,Europe/Paris,,OGR, +OGR:SP:101584,1,"Sablons",45.197505,5.753663,0,0,OGR:SA:CTP101565,Europe/Paris,,OGR, +OGR:SP:101585,1,"Hôtel de Ville",45.187543,5.737363,0,0,O38:SA:CTP3775,Europe/Paris,,OGR, +OGR:SP:101586,1,"Chavant",45.185507,5.731203,0,0,OGR:SA:CTP100331,Europe/Paris,,OGR, +OGR:SP:101587,1,"Docteur Martin",45.187801,5.726861,0,0,OGR:SA:CTP103320,Europe/Paris,,OGR, +OGR:SP:101588,1,"Victor Hugo",45.189553,5.724918,0,0,OGR:SA:CTP100768,Europe/Paris,,OGR, +OGR:SP:101589,1,"Docteur Mazet",45.19139,5.722293,0,0,OGR:SA:CTP101560,Europe/Paris,,OGR, +OGR:SP:101590,1,"Félix Viallet",45.190682,5.717691,0,0,OGR:SA:CTP101559,Europe/Paris,,OGR, +OGR:SP:101591,1,"Emile Gueymard",45.194839,5.713652,0,0,OGR:SA:CTP101558,Europe/Paris,,OGR, +OGR:SP:101592,1,"Arago",45.197767,5.711513,0,0,OGR:SA:CTP101557,Europe/Paris,,OGR, +OGR:SP:101593,1,"Cité Jean Macé",45.200378,5.711226,0,0,OGR:SA:CTP101556,Europe/Paris,,OGR, +OGR:SP:101596,1,"Bayard",45.145654,5.704647,0,0,O38:SA:CTP2487,Europe/Paris,,OGR, +OGR:SP:101599,1,"Flottibulle",45.137864,5.702051,0,0,O38:SA:CTP2534,Europe/Paris,,OGR, +OGR:SP:101600,1,"Clos Dominique",45.135466,5.70127,0,0,OGR:SA:CTP101600,Europe/Paris,,OGR, +OGR:SP:101603,1,"Irène Joliot-Curie",45.127418,5.698557,0,0,OGR:SA:CTP101603,Europe/Paris,,OGR, +OGR:SP:101604,1,"Marcelline",45.125527,5.697947,0,0,OGR:SA:CTP101604,Europe/Paris,,OGR, +OGR:SP:101605,1,"Pont-de-Claix Mairie",45.122879,5.697697,0,0,OGR:SA:CTP101605,Europe/Paris,,OGR, +OGR:SP:101606,1,"Pont-de-Claix Mairie",45.122948,5.697803,0,0,OGR:SA:CTP101605,Europe/Paris,,OGR, +OGR:SP:101607,1,"Marcelline",45.126138,5.698289,0,0,OGR:SA:CTP101604,Europe/Paris,,OGR, +OGR:SP:101608,1,"Irène Joliot-Curie",45.128001,5.698923,0,0,OGR:SA:CTP101603,Europe/Paris,,OGR, +OGR:SP:101611,1,"Clos Dominique",45.135808,5.701545,0,0,OGR:SA:CTP101600,Europe/Paris,,OGR, +OGR:SP:101612,1,"Flottibulle",45.137911,5.70227,0,0,O38:SA:CTP2534,Europe/Paris,,OGR, +OGR:SP:101617,1,"Christophe Turc",45.161367,5.724142,0,0,OGR:SA:CTP101617,Europe/Paris,,OGR, +OGR:SP:101618,1,"Village Olympique",45.164107,5.724042,0,0,OGR:SA:CTP101618,Europe/Paris,,OGR, +OGR:SP:101619,1,"Vigny",45.167441,5.723379,0,0,OGR:SA:CTP101619,Europe/Paris,,OGR, +OGR:SP:101620,1,"Clos d'Or",45.169553,5.723215,0,0,OGR:SA:CTP100467,Europe/Paris,,OGR, +OGR:SP:101621,1,"Capuche",45.176069,5.724796,0,0,OGR:SA:CTP100469,Europe/Paris,,OGR, +OGR:SP:101622,1,"Foch - Ferrié",45.18044,5.723459,0,0,OGR:SA:CTP101533,Europe/Paris,,OGR, +OGR:SP:101623,1,"Marceau - Jardin des Vallons",45.182451,5.722168,0,0,OGR:SA:CTP101623,Europe/Paris,,OGR, +OGR:SP:101626,1,"Marceau - Jardin des Vallons",45.182629,5.72195,0,0,OGR:SA:CTP101623,Europe/Paris,,OGR, +OGR:SP:101627,1,"Foch - Ferrié",45.180163,5.723391,0,0,OGR:SA:CTP101533,Europe/Paris,,OGR, +OGR:SP:101628,1,"Capuche",45.17659,5.724535,0,0,OGR:SA:CTP100469,Europe/Paris,,OGR, +OGR:SP:101629,1,"Clos d'Or",45.16934,5.723113,0,0,OGR:SA:CTP100467,Europe/Paris,,OGR, +OGR:SP:101630,1,"Vigny",45.167343,5.723348,0,0,OGR:SA:CTP101619,Europe/Paris,,OGR, +OGR:SP:101631,1,"Village Olympique",45.163553,5.723931,0,0,OGR:SA:CTP101618,Europe/Paris,,OGR, +OGR:SP:101632,1,"Christophe Turc",45.160731,5.724027,0,0,OGR:SA:CTP101617,Europe/Paris,,OGR, +OGR:SP:101634,1,"Mallifaud",45.180329,5.735075,0,0,OGR:SA:CTP101634,Europe/Paris,,OGR, +OGR:SP:101635,1,"Bajatière",45.178135,5.736138,0,0,OGR:SA:CTP101635,Europe/Paris,,OGR, +OGR:SP:101636,1,"Ponsard",45.175969,5.737202,0,0,OGR:SA:CTP101636,Europe/Paris,,OGR, +OGR:SP:101637,1,"Paul Claudel",45.173362,5.738506,0,0,OGR:SA:CTP101637,Europe/Paris,,OGR, +OGR:SP:101638,1,"Teisseire",45.170913,5.739706,0,0,OGR:SA:CTP101638,Europe/Paris,,OGR, +OGR:SP:101639,1,"Jean Racine",45.166825,5.741747,0,0,OGR:SA:CTP101639,Europe/Paris,,OGR, +OGR:SP:101640,1,"Maisons Neuves",45.164911,5.74252,0,0,OGR:SA:CTP100278,Europe/Paris,,OGR, +OGR:SP:101641,1,"Général de Gaulle",45.161132,5.74449,0,0,OGR:SA:CTP101261,Europe/Paris,,OGR, +OGR:SP:101642,1,"Val d'Eybens",45.159054,5.745585,0,0,OGR:SA:CTP101642,Europe/Paris,,OGR, +OGR:SP:101643,1,"Le Bourg",45.147808,5.751155,0,0,OGR:SA:CTP101643,Europe/Paris,,OGR, +OGR:SP:101644,1,"Le Bourg",45.147907,5.751174,0,0,OGR:SA:CTP101643,Europe/Paris,,OGR, +OGR:SP:101645,1,"Val d'Eybens",45.159271,5.745572,0,0,OGR:SA:CTP101642,Europe/Paris,,OGR, +OGR:SP:101646,1,"Jean Racine",45.167544,5.741511,0,0,OGR:SA:CTP101639,Europe/Paris,,OGR, +OGR:SP:101647,1,"Teisseire",45.171027,5.739802,0,0,OGR:SA:CTP101638,Europe/Paris,,OGR, +OGR:SP:101648,1,"Paul Claudel",45.173414,5.738573,0,0,OGR:SA:CTP101637,Europe/Paris,,OGR, +OGR:SP:101649,1,"Ponsard",45.176075,5.737259,0,0,OGR:SA:CTP101636,Europe/Paris,,OGR, +OGR:SP:101650,1,"Bajatière",45.178296,5.73616,0,0,OGR:SA:CTP101635,Europe/Paris,,OGR, +OGR:SP:101651,1,"Mallifaud",45.180416,5.735144,0,0,OGR:SA:CTP101634,Europe/Paris,,OGR, +OGR:SP:101652,1,"Neyrpic - Belledonne",45.185909,5.757431,0,0,OGR:SA:CTP100427,Europe/Paris,,OGR, +OGR:SP:101653,1,"Pierre Sémard",45.181282,5.757121,0,0,OGR:SA:CTP101653,Europe/Paris,,OGR, +OGR:SP:101654,1,"Edouard Vaillant",45.179053,5.754934,0,0,OGR:SA:CTP101654,Europe/Paris,,OGR, +OGR:SP:101655,1,"Bon Pasteur",45.178586,5.749902,0,0,OGR:SA:CTP100307,Europe/Paris,,OGR, +OGR:SP:101656,1,"Saint-Augustin",45.178268,5.74591,0,0,OGR:SA:CTP101656,Europe/Paris,,OGR, +OGR:SP:101657,1,"Paul Cocat",45.172261,5.744778,0,0,OGR:SA:CTP100337,Europe/Paris,,OGR, +OGR:SP:101658,1,"Teisseire",45.170809,5.740158,0,0,OGR:SA:CTP101638,Europe/Paris,,OGR, +OGR:SP:101659,1,"Louis Jouvet",45.169993,5.737116,0,0,OGR:SA:CTP101659,Europe/Paris,,OGR, +OGR:SP:101660,1,"Malherbe",45.168967,5.732955,0,0,OGR:SA:CTP101451,Europe/Paris,,OGR, +OGR:SP:101661,1,"Flaubert - Clos d'Or",45.17049,5.727906,0,0,OGR:SA:CTP101661,Europe/Paris,,OGR, +OGR:SP:101662,1,"Stalingrad-Alliés",45.17188,5.723955,0,0,OGR:SA:CTP101662,Europe/Paris,,OGR, +OGR:SP:101663,1,"Marché d'Intérêt National",45.173537,5.718048,0,0,OGR:SA:CTP101663,Europe/Paris,,OGR, +OGR:SP:101664,1,"Alliés",45.174704,5.714302,0,0,OGR:SA:CTP100530,Europe/Paris,,OGR, +OGR:SP:101665,1,"Rhin et Danube",45.174971,5.705215,0,0,OGR:SA:CTP101665,Europe/Paris,,OGR, +OGR:SP:101666,1,"Vallier - Catane",45.179682,5.705462,0,0,OGR:SA:CTP101530,Europe/Paris,,OGR, +OGR:SP:101667,1,"Cémoi",45.18495,5.70573,0,0,OGR:SA:CTP101667,Europe/Paris,,OGR, +OGR:SP:101668,1,"Berriat-Le Magasin",45.188672,5.705905,0,0,OGR:SA:CTP101439,Europe/Paris,,OGR, +OGR:SP:101669,1,"Esclangon",45.19158,5.706502,0,0,OGR:SA:CTP101669,Europe/Paris,,OGR, +OGR:SP:101670,1,"Palais de Justice - Gare",45.191637,5.71086,0,0,OGR:SA:CTP101521,Europe/Paris,,OGR, +OGR:SP:101671,1,"Esclangon",45.191255,5.706826,0,0,OGR:SA:CTP101669,Europe/Paris,,OGR, +OGR:SP:101672,1,"Berriat-Le Magasin",45.188486,5.705805,0,0,OGR:SA:CTP101439,Europe/Paris,,OGR, +OGR:SP:101673,1,"Cémoi",45.184899,5.705638,0,0,OGR:SA:CTP101667,Europe/Paris,,OGR, +OGR:SP:101674,1,"Vallier - Catane",45.179669,5.705296,0,0,OGR:SA:CTP101530,Europe/Paris,,OGR, +OGR:SP:101675,1,"Rhin et Danube",45.17511,5.705108,0,0,OGR:SA:CTP101665,Europe/Paris,,OGR, +OGR:SP:101676,1,"Lys Rouge",45.173044,5.710571,0,0,OGR:SA:CTP101676,Europe/Paris,,OGR, +OGR:SP:101677,1,"Alliés",45.17445,5.714081,0,0,OGR:SA:CTP100530,Europe/Paris,,OGR, +OGR:SP:101678,1,"Marché d'Intérêt National",45.173419,5.718079,0,0,OGR:SA:CTP101663,Europe/Paris,,OGR, +OGR:SP:101679,1,"Stalingrad-Alliés",45.17153,5.724825,0,0,OGR:SA:CTP101662,Europe/Paris,,OGR, +OGR:SP:101680,1,"Flaubert - Clos d'Or",45.170628,5.727227,0,0,OGR:SA:CTP101661,Europe/Paris,,OGR, +OGR:SP:101681,1,"Malherbe",45.168919,5.733079,0,0,OGR:SA:CTP101451,Europe/Paris,,OGR, +OGR:SP:101682,1,"Louis Jouvet",45.169873,5.736905,0,0,OGR:SA:CTP101659,Europe/Paris,,OGR, +OGR:SP:101683,1,"Teisseire",45.170759,5.740307,0,0,OGR:SA:CTP101638,Europe/Paris,,OGR, +OGR:SP:101684,1,"Saint-Augustin",45.178167,5.745395,0,0,OGR:SA:CTP101656,Europe/Paris,,OGR, +OGR:SP:101685,1,"Bon Pasteur",45.178754,5.750893,0,0,OGR:SA:CTP100307,Europe/Paris,,OGR, +OGR:SP:101686,1,"Edouard Vaillant",45.179013,5.755071,0,0,OGR:SA:CTP101654,Europe/Paris,,OGR, +OGR:SP:101687,1,"Pierre Sémard",45.181316,5.757187,0,0,OGR:SA:CTP101653,Europe/Paris,,OGR, +OGR:SP:101688,1,"Neyrpic - Belledonne",45.185869,5.757582,0,0,OGR:SA:CTP100427,Europe/Paris,,OGR, +OGR:SP:101689,1,"8 mai 1945",45.171053,5.756822,0,0,OGR:SA:CTP101689,Europe/Paris,,OGR, +OGR:SP:101690,1,"Zella Melhis",45.167067,5.753535,0,0,OGR:SA:CTP101690,Europe/Paris,,OGR, +OGR:SP:101691,1,"Chopin",45.166051,5.751423,0,0,OGR:SA:CTP101691,Europe/Paris,,OGR, +OGR:SP:101692,1,"La Châtelière",45.162172,5.749034,0,0,OGR:SA:CTP101692,Europe/Paris,,OGR, +OGR:SP:101693,1,"Général de Gaulle",45.161872,5.745007,0,0,OGR:SA:CTP101261,Europe/Paris,,OGR, +OGR:SP:101694,1,"Rondeau",45.160355,5.693728,0,0,OGR:SA:CTP101694,Europe/Paris,,OGR, +OGR:SP:101695,1,"Grand Pré - Centre Sud",45.170837,5.694565,0,0,OGR:SA:CTP101695,Europe/Paris,,OGR, +OGR:SP:101696,1,"La Plaine",45.172595,5.696886,0,0,OGR:SA:CTP101696,Europe/Paris,,OGR, +OGR:SP:101697,1,"Beau Site",45.175915,5.696959,0,0,OGR:SA:CTP101697,Europe/Paris,,OGR, +OGR:SP:101698,1,"L'Arche",45.178164,5.697019,0,0,OGR:SA:CTP101698,Europe/Paris,,OGR, +OGR:SP:101699,1,"Seyssinet-Pariset Hôtel de Ville",45.180782,5.697075,0,0,OGR:SA:CTP100674,Europe/Paris,,OGR, +OGR:SP:101700,1,"Les Iles",45.184102,5.697161,0,0,OGR:SA:CTP100673,Europe/Paris,,OGR, +OGR:SP:101701,1,"Rue Pasteur",45.194206,5.694729,0,0,OGR:SA:CTP100623,Europe/Paris,,OGR, +OGR:SP:101702,1,"Charmettes",45.197402,5.693547,0,0,OGR:SA:CTP101702,Europe/Paris,,OGR, +OGR:SP:101703,1,"Saint-Eynard",45.201131,5.690207,0,0,OGR:SA:CTP101703,Europe/Paris,,OGR, +OGR:SP:101704,1,"La Sure",45.202632,5.686003,0,0,OGR:SA:CTP101704,Europe/Paris,,OGR, +OGR:SP:101705,1,"Chamechaude",45.205107,5.68348,0,0,OGR:SA:CTP101087,Europe/Paris,,OGR, +OGR:SP:101706,1,"Martyrs - Résistance",45.208105,5.696614,0,0,OGR:SA:CTP101706,Europe/Paris,,OGR, +OGR:SP:101708,1,"Martyrs - Résistance",45.208443,5.696444,0,0,OGR:SA:CTP101706,Europe/Paris,,OGR, +OGR:SP:101709,1,"Chamechaude",45.205043,5.683501,0,0,OGR:SA:CTP101087,Europe/Paris,,OGR, +OGR:SP:101710,1,"La Sure",45.202282,5.686194,0,0,OGR:SA:CTP101704,Europe/Paris,,OGR, +OGR:SP:101711,1,"Saint-Eynard",45.201401,5.689904,0,0,OGR:SA:CTP101703,Europe/Paris,,OGR, +OGR:SP:101712,1,"Charmettes",45.197858,5.693053,0,0,OGR:SA:CTP101702,Europe/Paris,,OGR, +OGR:SP:101713,1,"Rue Pasteur",45.194653,5.694514,0,0,OGR:SA:CTP100623,Europe/Paris,,OGR, +OGR:SP:101714,1,"L'Arche",45.178282,5.696988,0,0,OGR:SA:CTP101698,Europe/Paris,,OGR, +OGR:SP:101715,1,"Beau Site",45.17525,5.696894,0,0,OGR:SA:CTP101697,Europe/Paris,,OGR, +OGR:SP:101716,1,"La Plaine",45.172398,5.696823,0,0,OGR:SA:CTP101696,Europe/Paris,,OGR, +OGR:SP:101717,1,"Grand Pré - Centre Sud",45.170952,5.694623,0,0,OGR:SA:CTP101695,Europe/Paris,,OGR, +OGR:SP:101718,1,"Rondeau",45.160221,5.693694,0,0,OGR:SA:CTP101694,Europe/Paris,,OGR, +OGR:SP:101719,1,"Grand'place",45.159221,5.732194,0,0,OGR:SA:CTP100274,Europe/Paris,,OGR, +OGR:SP:101720,1,"La Châtelière",45.162187,5.749124,0,0,OGR:SA:CTP101692,Europe/Paris,,OGR, +OGR:SP:101721,1,"Chopin",45.166281,5.751845,0,0,OGR:SA:CTP101691,Europe/Paris,,OGR, +OGR:SP:101722,1,"Zella Melhis",45.167523,5.754212,0,0,OGR:SA:CTP101690,Europe/Paris,,OGR, +OGR:SP:101723,1,"8 mai 1945",45.171059,5.756912,0,0,OGR:SA:CTP101689,Europe/Paris,,OGR, +OGR:SP:101724,1,"Etienne Grappe",45.172125,5.75769,0,0,OGR:SA:CTP100197,Europe/Paris,,OGR, +OGR:SP:101725,1,"Parc Jo Blanchon",45.175129,5.757367,0,0,OGR:SA:CTP101725,Europe/Paris,,OGR, +OGR:SP:101726,1,"Edouard Vaillant",45.179411,5.755235,0,0,OGR:SA:CTP101654,Europe/Paris,,OGR, +OGR:SP:101727,1,"Maison Communale",45.184446,5.754367,0,0,OGR:SA:CTP100388,Europe/Paris,,OGR, +OGR:SP:101728,1,"Les Taillées - Universités",45.192145,5.757841,0,0,OGR:SA:CTP101503,Europe/Paris,,OGR, +OGR:SP:101729,1,"Maison Communale",45.184468,5.754227,0,0,OGR:SA:CTP100388,Europe/Paris,,OGR, +OGR:SP:101730,1,"Edouard Vaillant",45.179391,5.755123,0,0,OGR:SA:CTP101654,Europe/Paris,,OGR, +OGR:SP:101731,1,"Parc Jo Blanchon",45.17508,5.757247,0,0,OGR:SA:CTP101725,Europe/Paris,,OGR, +OGR:SP:101732,1,"Hôtel de Ville",45.20792,5.706589,0,0,OGR:SA:CTP101093,Europe/Paris,,OGR, +OGR:SP:101733,1,"Casamaures - Village",45.199534,5.716778,0,0,OGR:SA:CTP101132,Europe/Paris,,OGR, +OGR:SP:101734,1,"Esplanade Centre",45.195662,5.716784,0,0,OGR:SA:CTP101734,Europe/Paris,,OGR, +OGR:SP:101735,1,"Esplanade Centre",45.195678,5.716862,0,0,OGR:SA:CTP101734,Europe/Paris,,OGR, +OGR:SP:101736,1,"Alsace-Lorraine",45.189057,5.719368,0,0,OGR:SA:CTP101442,Europe/Paris,,OGR, +OGR:SP:101737,1,"Condorcet",45.18487,5.717987,0,0,OGR:SA:CTP100258,Europe/Paris,,OGR, +OGR:SP:101738,1,"Vallier - Libération",45.179751,5.716224,0,0,OGR:SA:CTP100529,Europe/Paris,,OGR, +OGR:SP:101739,1,"Alliés",45.173985,5.714269,0,0,OGR:SA:CTP100530,Europe/Paris,,OGR, +OGR:SP:101740,1,"Louise Michel",45.16976,5.712867,0,0,OGR:SA:CTP100531,Europe/Paris,,OGR, +OGR:SP:101741,1,"Louise Michel",45.169749,5.712917,0,0,OGR:SA:CTP100531,Europe/Paris,,OGR, +OGR:SP:101742,1,"Alliés",45.173955,5.714369,0,0,OGR:SA:CTP100530,Europe/Paris,,OGR, +OGR:SP:101743,1,"Vallier - Libération",45.17974,5.716287,0,0,OGR:SA:CTP100529,Europe/Paris,,OGR, +OGR:SP:101744,1,"Condorcet",45.184853,5.718043,0,0,OGR:SA:CTP100258,Europe/Paris,,OGR, +OGR:SP:101745,1,"Alsace-Lorraine",45.189038,5.719478,0,0,OGR:SA:CTP101442,Europe/Paris,,OGR, +OGR:SP:101746,1,"Casamaures - Village",45.199531,5.71688,0,0,OGR:SA:CTP101132,Europe/Paris,,OGR, +OGR:SP:101747,1,"Hôtel de Ville",45.207946,5.706629,0,0,OGR:SA:CTP101093,Europe/Paris,,OGR, +OGR:SP:101824,1,"Le Marais",45.163583,5.751284,0,0,OGR:SA:CTP100341,Europe/Paris,,OGR, +OGR:SP:101842,1,"Palluel",45.255065,5.661477,0,0,O38:SA:CTP101822,Europe/Paris,,OGR, +OGR:SP:101843,1,"Rafour",45.248258,5.666543,0,0,OGR:SA:CTP101234,Europe/Paris,,OGR, +OGR:SP:101844,1,"Karben",45.242435,5.67099,0,0,OGR:SA:CTP100744,Europe/Paris,,OGR, +OGR:SP:101845,1,"La Pinéa - St Robert",45.235651,5.675488,0,0,OGR:SA:CTP101845,Europe/Paris,,OGR, +OGR:SP:101846,1,"Pont de Vence",45.230089,5.682298,0,0,OGR:SA:CTP100735,Europe/Paris,,OGR, +OGR:SP:101847,1,"Muret",45.225953,5.686126,0,0,O38:SA:CTP4318,Europe/Paris,,OGR, +OGR:SP:101848,1,"Fiancey - Prédieu",45.22314,5.68863,0,0,OGR:SA:CTP101848,Europe/Paris,,OGR, +OGR:SP:101849,1,"Néron",45.21782,5.69334,0,0,OGR:SA:CTP101849,Europe/Paris,,OGR, +OGR:SP:101850,1,"Horloge",45.213627,5.698848,0,0,OGR:SA:CTP101850,Europe/Paris,,OGR, +OGR:SP:101851,1,"Horloge",45.213642,5.698768,0,0,OGR:SA:CTP101850,Europe/Paris,,OGR, +OGR:SP:101852,1,"Néron",45.21798,5.693218,0,0,OGR:SA:CTP101849,Europe/Paris,,OGR, +OGR:SP:101853,1,"Fiancey - Prédieu",45.223159,5.688673,0,0,OGR:SA:CTP101848,Europe/Paris,,OGR, +OGR:SP:101854,1,"Muret",45.225937,5.686233,0,0,O38:SA:CTP4318,Europe/Paris,,OGR, +OGR:SP:101855,1,"Pont de Vence",45.23023,5.682147,0,0,OGR:SA:CTP100735,Europe/Paris,,OGR, +OGR:SP:101856,1,"La Pinéa - St Robert",45.23571,5.67553,0,0,OGR:SA:CTP101845,Europe/Paris,,OGR, +OGR:SP:101857,1,"Karben",45.242467,5.671034,0,0,OGR:SA:CTP100744,Europe/Paris,,OGR, +OGR:SP:101858,1,"Rafour",45.248297,5.666626,0,0,OGR:SA:CTP101234,Europe/Paris,,OGR, +OGR:SP:101859,1,"Palluel",45.255193,5.661316,0,0,O38:SA:CTP101822,Europe/Paris,,OGR, +OGR:SP:101880,1,"Les Forges",45.077084,5.76858,0,0,O38:SA:CTP14961,Europe/Paris,,OGR, +OGR:SP:101881,1,"Les Forges",45.077413,5.768533,0,0,O38:SA:CTP14961,Europe/Paris,,OGR, +OGR:SP:101891,1,"Gavanière",45.241263,5.681656,0,0,OGR:SA:CTP101891,Europe/Paris,,OGR, +OGR:SP:101892,1,"Rocher d'Escalade",45.243771,5.679199,0,0,OGR:SA:CTP101892,Europe/Paris,,OGR, +OGR:SP:101893,1,"Rocher d'Escalade",45.243749,5.679009,0,0,OGR:SA:CTP101892,Europe/Paris,,OGR, +OGR:SP:101894,1,"Gavanière",45.241093,5.681698,0,0,OGR:SA:CTP101891,Europe/Paris,,OGR, +OGR:SP:101895,1,"Ancienne Mairie",45.217946,5.779314,0,0,OGR:SA:CTP101895,Europe/Paris,,OGR, +OGR:SP:101896,1,"Ancienne Mairie",45.217932,5.779328,0,0,OGR:SA:CTP101895,Europe/Paris,,OGR, +OGR:SP:101897,1,"La Chiaise",45.261172,5.69831,0,0,OGR:SA:CTP101897,Europe/Paris,,OGR, +OGR:SP:101898,1,"Chemin Fiancey",45.228644,5.691713,0,0,OGR:SA:CTP101898,Europe/Paris,,OGR, +OGR:SP:101899,1,"Chemin Fiancey",45.228594,5.691742,0,0,OGR:SA:CTP101898,Europe/Paris,,OGR, +OGR:SP:101900,1,"La Chiaise",45.261143,5.69833,0,0,OGR:SA:CTP101897,Europe/Paris,,OGR, +OGR:SP:101902,1,"Napoléon - Souveyron",45.131075,5.776999,0,0,OGR:SA:CTP101902,Europe/Paris,,OGR, +OGR:SP:101904,1,"Clos Jouvin",45.094617,5.744169,0,0,OGR:SA:CTP101904,Europe/Paris,,OGR, +OGR:SP:101905,1,"Le Vernet Croix",45.096505,5.740213,0,0,OGR:SA:CTP101905,Europe/Paris,,OGR, +OGR:SP:101906,1,"Les Charbonnaux",45.100676,5.742416,0,0,OGR:SA:CTP101906,Europe/Paris,,OGR, +OGR:SP:101907,1,"Maupertuis",45.105537,5.746363,0,0,OGR:SA:CTP101907,Europe/Paris,,OGR, +OGR:SP:101908,1,"Les Chaberts",45.107573,5.749504,0,0,OGR:SA:CTP101908,Europe/Paris,,OGR, +OGR:SP:101909,1,"Sud Galaxie",45.1501,5.724842,0,0,OGR:SA:CTP101909,Europe/Paris,,OGR, +OGR:SP:101910,1,"Gare",45.153214,5.719268,0,0,OGR:SA:CTP101459,Europe/Paris,,OGR, +OGR:SP:101911,1,"Sud Galaxie",45.149235,5.724573,0,0,OGR:SA:CTP101909,Europe/Paris,,OGR, +OGR:SP:101912,1,"Les Chaberts",45.107638,5.749387,0,0,OGR:SA:CTP101908,Europe/Paris,,OGR, +OGR:SP:101913,1,"Maupertuis",45.105609,5.746327,0,0,OGR:SA:CTP101907,Europe/Paris,,OGR, +OGR:SP:101914,1,"Les Charbonnaux",45.100926,5.74211,0,0,OGR:SA:CTP101906,Europe/Paris,,OGR, +OGR:SP:101915,1,"Le Vernet Croix",45.096451,5.739914,0,0,OGR:SA:CTP101905,Europe/Paris,,OGR, +OGR:SP:101916,1,"Clos Jouvin",45.094335,5.743739,0,0,OGR:SA:CTP101904,Europe/Paris,,OGR, +OGR:SP:101917,1,"Avenue de la République",45.142787,5.735886,0,0,OGR:SA:CTP101917,Europe/Paris,,OGR, +OGR:SP:101919,1,"Marie Curie",45.144987,5.717268,0,0,OGR:SA:CTP100458,Europe/Paris,,OGR, +OGR:SP:101921,1,"Avenue de la République",45.142769,5.73589,0,0,OGR:SA:CTP101917,Europe/Paris,,OGR, +OGR:SP:101923,1,"Edelweiss",45.181444,5.78803,0,0,OGR:SA:CTP100380,Europe/Paris,,OGR, +OGR:SP:101924,1,"Lycée",45.069092,5.76684,0,0,O38:SA:CTP1503,Europe/Paris,,OGR, +OGR:SP:101925,1,"Le Péage",45.057687,5.771005,0,0,O38:SA:CTP1480,Europe/Paris,,OGR, +OGR:SP:101926,1,"Lycée",45.068112,5.770148,0,0,O38:SA:CTP101887,Europe/Paris,,OGR, +OGR:SP:101927,1,"Edelweiss",45.181289,5.78811,0,0,OGR:SA:CTP100380,Europe/Paris,,OGR, +OGR:SP:101947,1,"Auguste Delaune",45.142462,5.715191,0,0,OGR:SA:CTP100457,Europe/Paris,,OGR, +OGR:SP:102035,1,"Le Prisme",45.166688,5.691338,0,0,OGR:SA:CTP100695,Europe/Paris,,OGR, +OGR:SP:102036,1,"Le Prisme",45.166659,5.691152,0,0,OGR:SA:CTP100695,Europe/Paris,,OGR, +OGR:SP:102964,1,"Clinique du Dauphiné",45.161792,5.674132,0,0,OGR:SA:CTP102964,Europe/Paris,,OGR, +OGR:SP:102965,1,"Clinique du Dauphiné",45.162007,5.674061,0,0,OGR:SA:CTP102964,Europe/Paris,,OGR, +OGR:SP:103013,1,"Route de Saint-Egrève",45.254881,5.704796,0,0,OGR:SA:CTP103013,Europe/Paris,,OGR, +OGR:SP:103014,1,"Route de Saint-Egrève",45.254824,5.704883,0,0,OGR:SA:CTP103013,Europe/Paris,,OGR, +OGR:SP:103015,1,"Lycée du Grésivaudan",45.214653,5.781045,0,0,OGR:SA:CTP100313,Europe/Paris,,OGR, +OGR:SP:103016,1,"ZI des Iles",45.13853,5.694488,0,0,OGR:SA:CTP103016,Europe/Paris,,OGR, +OGR:SP:103017,1,"120 Toises",45.136254,5.694961,0,0,OGR:SA:CTP103017,Europe/Paris,,OGR, +OGR:SP:103018,1,"Auguste Delaune",45.142194,5.715111,0,0,OGR:SA:CTP100457,Europe/Paris,,OGR, +OGR:SP:103019,1,"Pré au crêt",45.144051,5.740097,0,0,OGR:SA:CTP103019,Europe/Paris,,OGR, +OGR:SP:103021,1,"Pré au crêt",45.144125,5.740534,0,0,OGR:SA:CTP103019,Europe/Paris,,OGR, +OGR:SP:103022,1,"Le Cret",45.143768,5.748541,0,0,OGR:SA:CTP103022,Europe/Paris,,OGR, +OGR:SP:103023,1,"Commanderie",45.143173,5.733491,0,0,OGR:SA:CTP103023,Europe/Paris,,OGR, +OGR:SP:103024,1,"Stade",45.143504,5.729428,0,0,OGR:SA:CTP103024,Europe/Paris,,OGR, +OGR:SP:103025,1,"Stade",45.14344,5.729462,0,0,OGR:SA:CTP103024,Europe/Paris,,OGR, +OGR:SP:103026,1,"Commanderie",45.143869,5.73487,0,0,OGR:SA:CTP103023,Europe/Paris,,OGR, +OGR:SP:103027,1,"Le Cret",45.143915,5.748592,0,0,OGR:SA:CTP103022,Europe/Paris,,OGR, +OGR:SP:103028,1,"Navis",45.156019,5.708203,0,0,OGR:SA:CTP103028,Europe/Paris,,OGR, +OGR:SP:103029,1,"Ecureuil",45.142548,5.703685,0,0,OGR:SA:CTP103029,Europe/Paris,,OGR, +OGR:SP:103030,1,"Iles de Mars",45.13168,5.699978,0,0,O38:SA:CTP2508,Europe/Paris,,OGR, +OGR:SP:103031,1,"Iles de Mars",45.131971,5.700259,0,0,O38:SA:CTP2508,Europe/Paris,,OGR, +OGR:SP:103032,1,"Ecureuil",45.142609,5.703831,0,0,OGR:SA:CTP103029,Europe/Paris,,OGR, +OGR:SP:103033,1,"Navis",45.156271,5.708419,0,0,OGR:SA:CTP103028,Europe/Paris,,OGR, +OGR:SP:103034,1,"Centre du graphisme",45.141855,5.718159,0,0,OGR:SA:CTP103034,Europe/Paris,,OGR, +OGR:SP:103035,1,"Centre du graphisme",45.141777,5.717884,0,0,OGR:SA:CTP103034,Europe/Paris,,OGR, +OGR:SP:103036,1,"Presqu'île",45.206676,5.698643,0,0,OGR:SA:CTP100727,Europe/Paris,,OGR, +OGR:SP:103037,1,"Presqu'île",45.206844,5.698556,0,0,OGR:SA:CTP100727,Europe/Paris,,OGR, +OGR:SP:103165,1,"Les Géants",45.161217,5.740071,0,0,OGR:SA:CTP103165,Europe/Paris,,OGR, +OGR:SP:103166,1,"Les Saules",45.16196,5.741823,0,0,OGR:SA:CTP103166,Europe/Paris,,OGR, +OGR:SP:103167,1,"Les Saules",45.161703,5.741642,0,0,OGR:SA:CTP103166,Europe/Paris,,OGR, +OGR:SP:103168,1,"Les Géants",45.161009,5.739685,0,0,OGR:SA:CTP103165,Europe/Paris,,OGR, +OGR:SP:103169,1,"Marianne",45.134945,5.692911,0,0,OGR:SA:CTP103169,Europe/Paris,,OGR, +OGR:SP:103300,1,"Le Château",45.147114,5.726188,0,0,OGR:SA:CTP100184,Europe/Paris,,OGR, +OGR:SP:103301,1,"Le Château",45.147044,5.726078,0,0,OGR:SA:CTP100184,Europe/Paris,,OGR, +OGR:SP:103320,1,"Docteur Martin",45.187372,5.727969,0,0,OGR:SA:CTP103320,Europe/Paris,,OGR, +OGR:SP:103321,1,"Docteur Martin",45.187378,5.728319,0,0,OGR:SA:CTP103320,Europe/Paris,,OGR, +OGR:SP:103322,1,"Colonel Dumont",45.181504,5.721946,0,0,OGR:SA:CTP103322,Europe/Paris,,OGR, +OGR:SP:103323,1,"Foch - Ferrié",45.180638,5.721814,0,0,OGR:SA:CTP101533,Europe/Paris,,OGR, +OGR:SP:103326,1,"Victor Hugo",45.188712,5.725309,0,0,OGR:SA:CTP100768,Europe/Paris,,OGR, +OGR:SP:103389,1,"Oxford",45.209543,5.702162,0,0,OGR:SA:CTP103389,Europe/Paris,,OGR, +OGR:SP:103390,1,"ZI Saint-Martin-le-Vinoux",45.212923,5.692067,0,0,OGR:SA:CTP103390,Europe/Paris,,OGR, +OGR:SP:103391,1,"Gières Gare - Universités",45.185477,5.785226,0,0,OGR:SA:CTP100379,Europe/Paris,,OGR, +OGR:SP:103392,1,"Gières Gare - Universités",45.185539,5.785627,0,0,OGR:SA:CTP100379,Europe/Paris,,OGR, +OGR:SP:103393,1,"Téléphérique",45.192948,5.725657,0,0,OGR:SA:CTP103393,Europe/Paris,,OGR, +OGR:SP:103394,1,"Place de Bérulle",45.193879,5.729233,0,0,OGR:SA:CTP103394,Europe/Paris,,OGR, +OGR:SP:103395,1,"Les Puis",45.17174,5.816748,0,0,OGR:SA:CTP103395,Europe/Paris,,OGR, +OGR:SP:103396,1,"Les Puis",45.172063,5.816404,0,0,OGR:SA:CTP103395,Europe/Paris,,OGR, +OGR:SP:103397,1,"Rue de la Lune",45.155513,5.672221,0,0,OGR:SA:CTP103397,Europe/Paris,,OGR, +OGR:SP:103398,1,"Rue de la Lune",45.155367,5.672259,0,0,OGR:SA:CTP103397,Europe/Paris,,OGR, +OGR:SP:103399,1,"Grange Haute",45.245632,5.694756,0,0,OGR:SA:CTP103399,Europe/Paris,,OGR, +OGR:SP:103400,1,"Grange Haute",45.245602,5.695763,0,0,OGR:SA:CTP103399,Europe/Paris,,OGR, +OGR:SP:103401,1,"ZA La Plaine",45.068299,5.723202,0,0,OGR:SA:CTP103401,Europe/Paris,,OGR, +OGR:SP:103402,1,"La Melle",45.07071,5.727245,0,0,OGR:SA:CTP103402,Europe/Paris,,OGR, +OGR:SP:103403,1,"Marcel Paul",45.07748,5.73175,0,0,OGR:SA:CTP103403,Europe/Paris,,OGR, +OGR:SP:103404,1,"Le Pavillon",45.080003,5.734642,0,0,OGR:SA:CTP103404,Europe/Paris,,OGR, +OGR:SP:103405,1,"Salle Emile Zola",45.082578,5.733771,0,0,OGR:SA:CTP103405,Europe/Paris,,OGR, +OGR:SP:103406,1,"Léo Lagrange",45.084495,5.734783,0,0,OGR:SA:CTP103406,Europe/Paris,,OGR, +OGR:SP:103407,1,"Espace Navarre",45.08675,5.730534,0,0,OGR:SA:CTP103407,Europe/Paris,,OGR, +OGR:SP:103408,1,"Pont de Champ",45.087706,5.730557,0,0,O38:SA:CTP1934,Europe/Paris,,OGR, +OGR:SP:103409,1,"Gare de Jarrie",45.085627,5.742553,0,0,SIN:SA:OCE87747535,Europe/Paris,,OGR, +OGR:SP:103410,1,"Parc Vöhringen",45.078878,5.7694,0,0,OGR:SA:CTP103410,Europe/Paris,,OGR, +OGR:SP:103411,1,"L'Alliance",45.081664,5.768681,0,0,O38:SA:CTP2001,Europe/Paris,,OGR, +OGR:SP:103412,1,"Vénaria",45.081773,5.771708,0,0,OGR:SA:CTP103412,Europe/Paris,,OGR, +OGR:SP:103413,1,"Camping",45.085691,5.771214,0,0,OGR:SA:CTP103413,Europe/Paris,,OGR, +OGR:SP:103414,1,"Ecoles Joliot-Curie",45.083999,5.775102,0,0,OGR:SA:CTP103414,Europe/Paris,,OGR, +OGR:SP:103415,1,"Ecoles Joliot-Curie",45.084035,5.775171,0,0,OGR:SA:CTP103414,Europe/Paris,,OGR, +OGR:SP:103416,1,"Camping",45.085927,5.771265,0,0,OGR:SA:CTP103413,Europe/Paris,,OGR, +OGR:SP:103417,1,"Vénaria",45.081871,5.771629,0,0,OGR:SA:CTP103412,Europe/Paris,,OGR, +OGR:SP:103418,1,"L'Alliance",45.081518,5.76865,0,0,O38:SA:CTP2001,Europe/Paris,,OGR, +OGR:SP:103419,1,"Parc Vöhringen",45.078885,5.769467,0,0,OGR:SA:CTP103410,Europe/Paris,,OGR, +OGR:SP:103420,1,"Pont de Champ",45.087503,5.730315,0,0,O38:SA:CTP1934,Europe/Paris,,OGR, +OGR:SP:103421,1,"Espace Navarre",45.086623,5.730668,0,0,OGR:SA:CTP103407,Europe/Paris,,OGR, +OGR:SP:103422,1,"Léo Lagrange",45.084476,5.734737,0,0,OGR:SA:CTP103406,Europe/Paris,,OGR, +OGR:SP:103423,1,"Salle Emile Zola",45.082607,5.733705,0,0,OGR:SA:CTP103405,Europe/Paris,,OGR, +OGR:SP:103424,1,"Le Pavillon",45.079985,5.734694,0,0,OGR:SA:CTP103404,Europe/Paris,,OGR, +OGR:SP:103425,1,"Marcel Paul",45.077446,5.731564,0,0,OGR:SA:CTP103403,Europe/Paris,,OGR, +OGR:SP:103426,1,"La Melle",45.070631,5.727127,0,0,OGR:SA:CTP103402,Europe/Paris,,OGR, +OGR:SP:103427,1,"Gare de Jarrie",45.085627,5.742617,0,0,SIN:SA:OCE87747535,Europe/Paris,,OGR, +OGR:SP:103428,1,"Carronnerie - Ile d'Amour",45.201147,5.759203,0,0,OGR:SA:CTP101583,Europe/Paris,,OGR, +OGR:SP:103429,1,"Victor Hugo",45.188712,5.72522,0,0,OGR:SA:CTP100768,Europe/Paris,,OGR, +OIA:SP:10001,1,"Pont De Maubec",45.583174,5.268225,0,0,OIA:SA:CTP10001,Europe/Paris,,OIA, +OIA:SP:10002,1,"Pont De Maubec",45.583171,5.268327,0,0,OIA:SA:CTP10001,Europe/Paris,,OIA, +OIA:SP:10004,1,"Le Meynier",45.575409,5.268867,0,0,OIA:SA:CTP10004,Europe/Paris,,OIA, +OIA:SP:10006,1,"Le Meynier",45.575444,5.270378,0,0,OIA:SA:CTP10004,Europe/Paris,,OIA, +OIA:SP:10008,1,"Le Brouchoud",45.571796,5.267357,0,0,O38:SA:CTP10009,Europe/Paris,,OIA, +OIA:SP:10010,1,"Le Brouchoud",45.570941,5.267195,0,0,O38:SA:CTP10009,Europe/Paris,,OIA, +OIA:SP:10012,1,"Grand Soleil",45.593909,5.236672,0,0,O38:SA:CTP10013,Europe/Paris,,OIA, +OIA:SP:10014,1,"Grand Soleil",45.594459,5.235945,0,0,O38:SA:CTP10013,Europe/Paris,,OIA, +OIA:SP:10016,1,"Ladrière",45.589048,5.247393,0,0,OIA:SA:CTP9992,Europe/Paris,,OIA, +OIA:SP:10018,1,"Joliot Curie",45.58925,5.26022,0,0,O38:SA:CTP10019,Europe/Paris,,OIA, +OIA:SP:10020,1,"Joliot Curie",45.58925,5.26022,0,0,O38:SA:CTP10019,Europe/Paris,,OIA, +OIA:SP:10022,1,"Champ De Mars",45.590461,5.280473,0,0,OIA:SA:CTP10022,Europe/Paris,,OIA, +OIA:SP:10024,1,"Champ De Mars",45.590127,5.28084,0,0,OIA:SA:CTP10022,Europe/Paris,,OIA, +OIA:SP:10026,1,"Clairs Espaces",45.58569,5.267759,0,0,OIA:SA:CTP10026,Europe/Paris,,OIA, +OIA:SP:10028,1,"Clairs Espaces",45.585387,5.261481,0,0,OIA:SA:CTP10028,Europe/Paris,,OIA, +OIA:SP:10030,1,"Médiathèque",45.589783,5.275688,0,0,O38:SA:CTP10029,Europe/Paris,,OIA, +OIA:SP:10032,1,"Médiathèque",45.58972,5.275737,0,0,O38:SA:CTP10029,Europe/Paris,,OIA, +OIA:SP:10034,1,"J.C. Aubry",45.590494,5.29558,0,0,O38:SA:CTP10033,Europe/Paris,,OIA, +OIA:SP:10037,1,"Montbernier",45.602927,5.302057,0,0,OIA:SA:CTP10037,Europe/Paris,,OIA, +OIA:SP:10041,1,"Palais Royal",45.588349,5.29128,0,0,O38:SA:CTP10042,Europe/Paris,,OIA, +OIA:SP:10043,1,"Palais Royal",45.58825,5.2912,0,0,O38:SA:CTP10042,Europe/Paris,,OIA, +OIA:SP:10049,1,"Caserne Pompiers",45.588365,5.312888,0,0,OIA:SA:CTP10049,Europe/Paris,,OIA, +OIA:SP:10051,1,"Caserne Pompiers",45.588438,5.312882,0,0,OIA:SA:CTP10049,Europe/Paris,,OIA, +OIA:SP:10053,1,"Pharmacie",45.588297,5.309042,0,0,O38:SA:CTP10054,Europe/Paris,,OIA, +OIA:SP:10055,1,"Pharmacie",45.588357,5.30945,0,0,O38:SA:CTP10054,Europe/Paris,,OIA, +OIA:SP:10059,1,"Collège Pré Bénit",45.59132,5.2889,0,0,OIA:SA:CTP10059,Europe/Paris,,OIA, +OIA:SP:10061,1,"Ces Pré Bénit",45.590991,5.289503,0,0,O38:SA:CTP10062,Europe/Paris,,OIA, +OIA:SP:10063,1,"Collège Pré Bénit",45.59142,5.2888,0,0,OIA:SA:CTP10059,Europe/Paris,,OIA, +OIA:SP:10064,1,"Collège Pré Bénit",45.590943,5.289378,0,0,OIA:SA:CTP10059,Europe/Paris,,OIA, +OIA:SP:10069,1,"Lavaizin Cafe",45.58526,5.324135,0,0,OIA:SA:CTP10069,Europe/Paris,,OIA, +OIA:SP:10071,1,"Lavaizin Cafe",45.585324,5.324184,0,0,OIA:SA:CTP10069,Europe/Paris,,OIA, +OIA:SP:10073,1,"Usine Schwarzenbach",45.578656,5.306502,0,0,OIA:SA:CTP10073,Europe/Paris,,OIA, +OIA:SP:10075,1,"Usine Schwarzenbach",45.578677,5.306599,0,0,OIA:SA:CTP10073,Europe/Paris,,OIA, +OIA:SP:10078,1,"La Cite Rose",45.58362,5.308301,0,0,OIA:SA:CTP10078,Europe/Paris,,OIA, +OIA:SP:10080,1,"La Cite Rose",45.583585,5.30839,0,0,OIA:SA:CTP10078,Europe/Paris,,OIA, +OIA:SP:10082,1,"Lavaizin Parking",45.585102,5.32471,0,0,OIA:SA:CTP10082,Europe/Paris,,OIA, +OIA:SP:10084,1,"Lavaizin Parking",45.584026,5.326404,0,0,OIA:SA:CTP10082,Europe/Paris,,OIA, +OIA:SP:10086,1,"La Place",45.588248,5.316573,0,0,O38:SA:CTP10085,Europe/Paris,,OIA, +OIA:SP:10088,1,"La Place",45.588319,5.316581,0,0,O38:SA:CTP10085,Europe/Paris,,OIA, +OIA:SP:10090,1,"La Poterie",45.57909,5.331356,0,0,OIA:SA:CTP10090,Europe/Paris,,OIA, +OIA:SP:10092,1,"Ruffieu",45.573392,5.301476,0,0,O38:SA:CTP10093,Europe/Paris,,OIA, +OIA:SP:10094,1,"Ruffieu",45.572652,5.301749,0,0,O38:SA:CTP10093,Europe/Paris,,OIA, +OIA:SP:10096,1,"Pont De L'Agny",45.564338,5.303357,0,0,OIA:SA:CTP10096,Europe/Paris,,OIA, +OIA:SP:10098,1,"Pont De L'Agny",45.562817,5.303827,0,0,OIA:SA:CTP10096,Europe/Paris,,OIA, +OIA:SP:10106,1,"Ferme Couilloud",45.578518,5.331158,0,0,OIA:SA:CTP10106,Europe/Paris,,OIA, +OIA:SP:10108,1,"Ferme Couilloud",45.578535,5.331258,0,0,OIA:SA:CTP10106,Europe/Paris,,OIA, +OIA:SP:10110,1,"Dauphiné Savoie",45.584296,5.287229,0,0,OIA:SA:CTP10110,Europe/Paris,,OIA, +OIA:SP:10112,1,"Dauphiné Savoie",45.584283,5.288387,0,0,OIA:SA:CTP10110,Europe/Paris,,OIA, +OIA:SP:10116,1,"Route Du Lac Clair",45.600077,5.364057,0,0,OIA:SA:CTP10116,Europe/Paris,,OIA, +OIA:SP:10118,1,"Route Du Lac Clair",45.600102,5.36396,0,0,OIA:SA:CTP10116,Europe/Paris,,OIA, +OIA:SP:10142,1,"Chatonnay Abribus",45.587567,5.361436,0,0,OIA:SA:CTP10142,Europe/Paris,,OIA, +OIA:SP:10144,1,"Chatonnay Abribus",45.588596,5.358359,0,0,OIA:SA:CTP10144,Europe/Paris,,OIA, +OIA:SP:10146,1,"Maison Astier",45.593577,5.355752,0,0,OIA:SA:CTP10146,Europe/Paris,,OIA, +OIA:SP:10149,1,"Maison Astier",45.593534,5.355834,0,0,OIA:SA:CTP10146,Europe/Paris,,OIA, +OIA:SP:10156,1,"Route Des Envers",45.595817,5.360097,0,0,OIA:SA:CTP10156,Europe/Paris,,OIA, +OIA:SP:10158,1,"Route Des Envers",45.595753,5.360144,0,0,OIA:SA:CTP10156,Europe/Paris,,OIA, +OIA:SP:10162,1,"Le Terrat",45.593321,5.381127,0,0,OIA:SA:CTP10162,Europe/Paris,,OIA, +OIA:SP:10164,1,"Le Terrat",45.593317,5.381113,0,0,OIA:SA:CTP10162,Europe/Paris,,OIA, +OIA:SP:10166,1,"Cafe Saugey",45.587796,5.378765,0,0,OIA:SA:CTP10166,Europe/Paris,,OIA, +OIA:SP:10168,1,"Cafe Saugey",45.58778,5.378767,0,0,OIA:SA:CTP10166,Europe/Paris,,OIA, +OIA:SP:10170,1,"Montceau Place",45.587632,5.374604,0,0,OIA:SA:CTP10170,Europe/Paris,,OIA, +OIA:SP:10172,1,"Montceau Place",45.58756,5.374603,0,0,OIA:SA:CTP10170,Europe/Paris,,OIA, +OIA:SP:10174,1,"Les Traineaux",45.599409,5.368111,0,0,OIA:SA:CTP10174,Europe/Paris,,OIA, +OIA:SP:10176,1,"Les Traineaux",45.59948,5.368095,0,0,OIA:SA:CTP10174,Europe/Paris,,OIA, +OIA:SP:101929,1,"La Barrière",45.587868,5.246505,0,0,OIA:SA:CTP101929,Europe/Paris,,OIA, +OIA:SP:101930,1,"La Barrière",45.588185,5.246333,0,0,OIA:SA:CTP101929,Europe/Paris,,OIA, +OIA:SP:101931,1,"La Maladière",45.586037,5.255517,0,0,OIA:SA:CTP101931,Europe/Paris,,OIA, +OIA:SP:101932,1,"La Maladière",45.586037,5.255517,0,0,OIA:SA:CTP101931,Europe/Paris,,OIA, +OIA:SP:102043,1,"Les Collombs",45.548273,5.342048,0,0,O38:SA:CTP9314,Europe/Paris,,OIA, +OIA:SP:102044,1,"Les Collombs",45.548107,5.341932,0,0,O38:SA:CTP9314,Europe/Paris,,OIA, +OIA:SP:102047,1,"Rivetière Château d'eau",45.550265,5.341818,0,0,OIA:SA:CTP102047,Europe/Paris,,OIA, +OIA:SP:102048,1,"Rivetière Château d'eau",45.550265,5.341818,0,0,OIA:SA:CTP102047,Europe/Paris,,OIA, +OIA:SP:103039,1,"Champagneux",45.602276,5.293734,0,0,OIA:SA:CTP14120,Europe/Paris,,OIA, +OIA:SP:103050,1,"St Bonnet Centre",45.609563,5.15641,0,0,O38:SA:CTP9891,Europe/Paris,,OIA, +OIA:SP:103051,1,"St Bonnet Centre",45.609516,5.156108,0,0,O38:SA:CTP9891,Europe/Paris,,OIA, +OIA:SP:103052,1,"St Bonnet Centre",45.608927,5.156882,0,0,O38:SA:CTP9891,Europe/Paris,,OIA, +OIA:SP:103053,1,"Flosaille",45.645234,5.301048,0,0,O38:SA:CTP10773,Europe/Paris,,OIA, +OIA:SP:103170,1,"Libération",45.641057,5.137407,0,0,OIA:SA:CTP10554,Europe/Paris,,OIA, +OIA:SP:103173,1,"Ancienne Gendarmerie",45.636836,5.143672,0,0,O38:SA:CTP10590,Europe/Paris,,OIA, +OIA:SP:103174,1,"EFMA",45.606739,5.269546,0,0,O38:SA:CTP9993,Europe/Paris,,OIA, +OIA:SP:103175,1,"Clairs espaces",45.586149,5.263071,0,0,OIA:SA:CTP103175,Europe/Paris,,OIA, +OIA:SP:103176,1,"CFA-BTP",45.612488,5.265758,0,0,O38:SA:CTP10742,Europe/Paris,,OIA, +OIA:SP:103179,1,"Les Vesves",45.510808,5.339062,0,0,O38:SA:CTP101812,Europe/Paris,,OIA, +OIA:SP:103180,1,"Les Vesves",45.510769,5.339099,0,0,O38:SA:CTP101812,Europe/Paris,,OIA, +OIA:SP:103181,1,"Le Franchisson",45.511356,5.328648,0,0,OIA:SA:CTP103181,Europe/Paris,,OIA, +OIA:SP:103182,1,"St Bonnet de Roche",45.604111,5.16532,0,0,O38:SA:CTP9857,Europe/Paris,,OIA, +OIA:SP:103183,1,"GARE",45.637765,5.09926,0,0,OIA:SA:CTP103183,Europe/Paris,,OIA, +OIA:SP:103184,1,"Premins Lac Clair",45.603278,5.345262,0,0,O38:SA:CTP10102,Europe/Paris,,OIA, +OIA:SP:103185,1,"Premins Lac Clair",45.603211,5.345219,0,0,O38:SA:CTP10102,Europe/Paris,,OIA, +OIA:SP:103186,1,"Premins La Croix",45.605654,5.336552,0,0,O38:SA:CTP10104,Europe/Paris,,OIA, +OIA:SP:103187,1,"Premins La Croix",45.605586,5.336516,0,0,O38:SA:CTP10104,Europe/Paris,,OIA, +OIA:SP:103188,1,"La Gare",45.625185,5.285666,0,0,O38:SA:CTP10727,Europe/Paris,,OIA, +OIA:SP:103189,1,"La Gare",45.625149,5.285808,0,0,O38:SA:CTP10727,Europe/Paris,,OIA, +OIA:SP:103190,1,"Laval",45.62145,5.353608,0,0,O38:SA:CTP10744,Europe/Paris,,OIA, +OIA:SP:103191,1,"Laval",45.621459,5.352833,0,0,O38:SA:CTP10744,Europe/Paris,,OIA, +OIA:SP:103192,1,"Les Haies",45.634207,5.318842,0,0,O38:SA:CTP10751,Europe/Paris,,OIA, +OIA:SP:103193,1,"La Verchère",45.623527,5.326524,0,0,O38:SA:CTP10766,Europe/Paris,,OIA, +OIA:SP:103194,1,"La Verchère",45.623558,5.326746,0,0,O38:SA:CTP10766,Europe/Paris,,OIA, +OIA:SP:103195,1,"La Place",45.62688,5.311578,0,0,O38:SA:CTP10787,Europe/Paris,,OIA, +OIA:SP:103196,1,"La Place",45.627035,5.310881,0,0,O38:SA:CTP10787,Europe/Paris,,OIA, +OIA:SP:103197,1,"La Rivière",45.62719,5.305198,0,0,O38:SA:CTP10788,Europe/Paris,,OIA, +OIA:SP:103200,1,"Grande Charrière",45.627293,5.320634,0,0,O38:SA:CTP10792,Europe/Paris,,OIA, +OIA:SP:103201,1,"Berthier Lavoir",45.624931,5.315848,0,0,O38:SA:CTP10795,Europe/Paris,,OIA, +OIA:SP:103202,1,"Berthier Lavoir",45.625033,5.315567,0,0,O38:SA:CTP10795,Europe/Paris,,OIA, +OIA:SP:103203,1,"Le Petit Bois",45.610544,5.340246,0,0,O38:SA:CTP10797,Europe/Paris,,OIA, +OIA:SP:103204,1,"Le Petit Bois",45.610461,5.340262,0,0,O38:SA:CTP10797,Europe/Paris,,OIA, +OIA:SP:103205,1,"Les Terres Jolies",45.615824,5.349261,0,0,O38:SA:CTP10806,Europe/Paris,,OIA, +OIA:SP:103206,1,"Les Terres Jolies",45.615728,5.349178,0,0,O38:SA:CTP10806,Europe/Paris,,OIA, +OIA:SP:103207,1,"Le Rivier",45.632614,5.341657,0,0,O38:SA:CTP10808,Europe/Paris,,OIA, +OIA:SP:103208,1,"Le Rivier",45.63267,5.341802,0,0,O38:SA:CTP10808,Europe/Paris,,OIA, +OIA:SP:103209,1,"Quinsonnas",45.550709,5.324561,0,0,O38:SA:CTP9340,Europe/Paris,,OIA, +OIA:SP:103210,1,"Quinsonnas",45.550749,5.324676,0,0,O38:SA:CTP9340,Europe/Paris,,OIA, +OIA:SP:103211,1,"Le Javet",45.529931,5.344559,0,0,O38:SA:CTP9338,Europe/Paris,,OIA, +OIA:SP:103212,1,"Le Stade",45.52497,5.352922,0,0,O38:SA:CTP15419,Europe/Paris,,OIA, +OIA:SP:103213,1,"D.520 RTE De Succieu",45.527572,5.327178,0,0,O38:SA:CTP9318,Europe/Paris,,OIA, +OIA:SP:103214,1,"RTE De Buffières",45.533796,5.316988,0,0,O38:SA:CTP9320,Europe/Paris,,OIA, +OIA:SP:103215,1,"RTE De Buffières",45.533825,5.317082,0,0,O38:SA:CTP9320,Europe/Paris,,OIA, +OIA:SP:103216,1,"Le Gapillon",45.527836,5.351686,0,0,O38:SA:CTP9323,Europe/Paris,,OIA, +OIA:SP:103217,1,"Hotel de la Poste",45.633466,5.146631,0,0,O38:SA:CTP10549,Europe/Paris,,OIA, +OIA:SP:103218,1,"Hotel de la Poste",45.633375,5.146693,0,0,O38:SA:CTP10549,Europe/Paris,,OIA, +OIA:SP:103388,1,"Ecole Primaire",45.627106,5.310906,0,0,OIA:SA:CTP103388,Europe/Paris,,OIA, +OIA:SP:10548,1,"Verpillière Mairie",45.632699,5.1465,0,0,OIA:SA:CTP10548,Europe/Paris,,OIA, +OIA:SP:10550,1,"Verpillière Mairie",45.63265,5.14678,0,0,OIA:SA:CTP10548,Europe/Paris,,OIA, +OIA:SP:10554,1,"Libération",45.64008,5.13872,0,0,OIA:SA:CTP10554,Europe/Paris,,OIA, +OIA:SP:10557,1,"Col Des Armières",45.624756,5.139439,0,0,O38:SA:CTP10558,Europe/Paris,,OIA, +OIA:SP:10559,1,"Col Des Armières",45.624679,5.139183,0,0,O38:SA:CTP10558,Europe/Paris,,OIA, +OIA:SP:10561,1,"Mas De La Raz",45.618469,5.137477,0,0,OIA:SA:CTP10561,Europe/Paris,,OIA, +OIA:SP:10563,1,"Mas De La Raz",45.61857,5.13772,0,0,OIA:SA:CTP10561,Europe/Paris,,OIA, +OIA:SP:10565,1,"Chesnes Rd1006",45.653792,5.115941,0,0,O38:SA:CTP10566,Europe/Paris,,OIA, +OIA:SP:10567,1,"Chesnes Rd1006",45.654849,5.113604,0,0,O38:SA:CTP10566,Europe/Paris,,OIA, +OIA:SP:10569,1,"Z.1. Chapeau Rouge",45.640128,5.120999,0,0,O38:SA:CTP10570,Europe/Paris,,OIA, +OIA:SP:10571,1,"Z.1. Chapeau Rouge",45.640128,5.120999,0,0,O38:SA:CTP10570,Europe/Paris,,OIA, +OIA:SP:10576,1,"Verpillière Gare",45.62762,5.15137,0,0,O38:SA:CTP10575,Europe/Paris,,OIA, +OIA:SP:10578,1,"Verpillière Gare",45.627449,5.15132,0,0,O38:SA:CTP10575,Europe/Paris,,OIA, +OIA:SP:10580,1,"Collège Anne Frank",45.633842,5.141697,0,0,OIA:SA:CTP10580,Europe/Paris,,OIA, +OIA:SP:10583,1,"Ces Anne Franck",45.634786,5.139942,0,0,OIA:SA:CTP10583,Europe/Paris,,OIA, +OIA:SP:10585,1,"Cruizille",45.62202,5.141537,0,0,O38:SA:CTP10584,Europe/Paris,,OIA, +OIA:SP:10587,1,"Cruizille",45.621801,5.141282,0,0,O38:SA:CTP10584,Europe/Paris,,OIA, +OIA:SP:10588,1,"Centre Tennistique",45.62123,5.14112,0,0,OIA:SA:CTP10588,Europe/Paris,,OIA, +OIA:SP:10589,1,"Centre Tennistique",45.62122,5.14123,0,0,OIA:SA:CTP10588,Europe/Paris,,OIA, +OIA:SP:10591,1,"Ancienne Gendarmerie",45.63692,5.14347,0,0,O38:SA:CTP10590,Europe/Paris,,OIA, +OIA:SP:10593,1,"Z.1. Bd De La Noiree Cote Anjou",45.643447,5.10508,0,0,OIA:SA:CTP10593,Europe/Paris,,OIA, +OIA:SP:10595,1,"Z.2. Rue Du Ruisseau",45.643552,5.105021,0,0,OIA:SA:CTP10595,Europe/Paris,,OIA, +OIA:SP:10597,1,"Z.2. Rue Du Ruisseau",45.645765,5.103188,0,0,O38:SA:CTP10594,Europe/Paris,,OIA, +OIA:SP:10599,1,"Riante Plaine",45.63585,5.13565,0,0,OIA:SA:CTP10599,Europe/Paris,,OIA, +OIA:SP:10601,1,"Riante Plaine",45.63585,5.13565,0,0,OIA:SA:CTP10599,Europe/Paris,,OIA, +OIA:SP:10604,1,"Externat Ste-Marie",45.6284,5.15128,0,0,OIA:SA:CTP10604,Europe/Paris,,OIA, +OIA:SP:10606,1,"La Verpillière Giraud Gare Sncf",45.6284,5.15128,0,0,OIA:SA:CTP10606,Europe/Paris,,OIA, +OIA:SP:10609,1,"Le Bourg",45.613127,5.152123,0,0,OIA:SA:CTP10609,Europe/Paris,,OIA, +OIA:SP:10611,1,"Le Bourg",45.613692,5.151498,0,0,OIA:SA:CTP10609,Europe/Paris,,OIA, +OIA:SP:10615,1,"Les Allinges",45.628497,5.11448,0,0,O38:SA:CTP10616,Europe/Paris,,OIA, +OIA:SP:10618,1,"Z.1. D75",45.651879,5.11787,0,0,OIA:SA:CTP10618,Europe/Paris,,OIA, +OIA:SP:10621,1,"Z.4.Centre Penitentiaire",45.658673,5.128548,0,0,O38:SA:CTP10622,Europe/Paris,,OIA, +OIA:SP:10624,1,"Le Rafo",45.617449,5.1564,0,0,OIA:SA:CTP10624,Europe/Paris,,OIA, +OIA:SP:10626,1,"Le Rafo",45.6175,5.15667,0,0,OIA:SA:CTP10624,Europe/Paris,,OIA, +OIA:SP:10628,1,"Z.1. La Noiree Mlp",45.639962,5.10871,0,0,O38:SA:CTP10627,Europe/Paris,,OIA, +OIA:SP:10630,1,"Z.1. La Noiree Mlp",45.640027,5.108754,0,0,O38:SA:CTP10627,Europe/Paris,,OIA, +OIA:SP:10632,1,"St Quentin Gare",45.637799,5.09917,0,0,OIA:SA:CTP10632,Europe/Paris,,OIA, +OIA:SP:10635,1,"St Quentin Gare",45.63788,5.09932,0,0,OIA:SA:CTP10632,Europe/Paris,,OIA, +OIA:SP:10638,1,"Les Roches",45.618349,5.153661,0,0,O38:SA:CTP10639,Europe/Paris,,OIA, +OIA:SP:10641,1,"Les Roches",45.61813,5.15335,0,0,O38:SA:CTP10639,Europe/Paris,,OIA, +OIA:SP:10643,1,"Z.1. Rue D'Anjou",45.642019,5.106147,0,0,OIA:SA:CTP10643,Europe/Paris,,OIA, +OIA:SP:10645,1,"Z.1. Rue D'Anjou",45.642056,5.106235,0,0,OIA:SA:CTP10643,Europe/Paris,,OIA, +OIA:SP:10647,1,"St Quentin Mairie",45.632317,5.111292,0,0,O38:SA:CTP10646,Europe/Paris,,OIA, +OIA:SP:10649,1,"St Quentin Mairie",45.632592,5.110542,0,0,O38:SA:CTP10646,Europe/Paris,,OIA, +OIA:SP:10653,1,"Z.2. Luzais A43",45.655926,5.100635,0,0,O38:SA:CTP10654,Europe/Paris,,OIA, +OIA:SP:10655,1,"Z.2. Luzais A43",45.655926,5.100635,0,0,O38:SA:CTP10654,Europe/Paris,,OIA, +OIA:SP:10667,1,"Lycée Delorme",45.622738,5.218269,0,0,O38:SA:CTP10668,Europe/Paris,,OIA, +OIA:SP:10669,1,"Lycée Delorme",45.622666,5.218262,0,0,O38:SA:CTP10668,Europe/Paris,,OIA, +OIA:SP:10675,1,"Collège R. Doisneau",45.620748,5.208627,0,0,O38:SA:CTP10676,Europe/Paris,,OIA, +OIA:SP:10680,1,"Place",45.61252,5.18133,0,0,OIA:SA:CTP10680,Europe/Paris,,OIA, +OIA:SP:10682,1,"Place",45.61262,5.18147,0,0,OIA:SA:CTP10680,Europe/Paris,,OIA, +OIA:SP:10684,1,"Parc Techno Ouest",45.625323,5.163446,0,0,OIA:SA:CTP10684,Europe/Paris,,OIA, +OIA:SP:10686,1,"Parc Techno Ouest",45.625323,5.163446,0,0,OIA:SA:CTP10684,Europe/Paris,,OIA, +OIA:SP:10689,1,"Triforium",45.620508,5.219725,0,0,O38:SA:CTP10690,Europe/Paris,,OIA, +OIA:SP:10691,1,"Triforium",45.621226,5.219814,0,0,O38:SA:CTP10690,Europe/Paris,,OIA, +OIA:SP:10697,1,"Collège F. Truffaut",45.622835,5.225263,0,0,O38:SA:CTP10698,Europe/Paris,,OIA, +OIA:SP:10699,1,"Collège F. Truffaut",45.622581,5.224865,0,0,O38:SA:CTP10698,Europe/Paris,,OIA, +OIA:SP:10703,1,"Pierre Louve",45.613311,5.241143,0,0,O38:SA:CTP10704,Europe/Paris,,OIA, +OIA:SP:10705,1,"Pierre Louve",45.613,5.242025,0,0,O38:SA:CTP10704,Europe/Paris,,OIA, +OIA:SP:10707,1,"Coteaux De Chasse",45.61636,5.236058,0,0,OIA:SA:CTP10707,Europe/Paris,,OIA, +OIA:SP:10709,1,"Coteaux De Chasse",45.61591,5.236756,0,0,OIA:SA:CTP10707,Europe/Paris,,OIA, +OIA:SP:10713,1,"Centre Commercial",45.614968,5.225141,0,0,O38:SA:CTP10714,Europe/Paris,,OIA, +OIA:SP:10715,1,"Centre Commercial",45.615028,5.225243,0,0,O38:SA:CTP10714,Europe/Paris,,OIA, +OIA:SP:10719,1,"Pré Pommier",45.612019,5.26423,0,0,OIA:SA:CTP10719,Europe/Paris,,OIA, +OIA:SP:10721,1,"Pré Pommier",45.61197,5.26445,0,0,OIA:SA:CTP10719,Europe/Paris,,OIA, +OIA:SP:10746,1,"Eglise",45.627586,5.308688,0,0,O38:SA:CTP10747,Europe/Paris,,OIA, +OIA:SP:10748,1,"Eglise",45.6276,5.308311,0,0,O38:SA:CTP10747,Europe/Paris,,OIA, +OIA:SP:10752,1,"St Martin-Lotissement",45.640631,5.298436,0,0,OIA:SA:CTP10752,Europe/Paris,,OIA, +OIA:SP:10754,1,"St Martin-Lotissement",45.642218,5.298784,0,0,OIA:SA:CTP10752,Europe/Paris,,OIA, +OIA:SP:10756,1,"Zone D'Activites",45.633094,5.298637,0,0,O38:SA:CTP10753,Europe/Paris,,OIA, +OIA:SP:10757,1,"Zone D'Activites",45.632834,5.297706,0,0,O38:SA:CTP10753,Europe/Paris,,OIA, +OIA:SP:10772,1,"Flosaille",45.645234,5.301048,0,0,O38:SA:CTP10773,Europe/Paris,,OIA, +OIA:SP:10784,1,"Demptezieu Place",45.617548,5.323376,0,0,OIA:SA:CTP10784,Europe/Paris,,OIA, +OIA:SP:10786,1,"Demptezieu Place",45.617401,5.3225,0,0,OIA:SA:CTP10784,Europe/Paris,,OIA, +OIA:SP:10799,1,"Chapeze Ecole",45.614084,5.333847,0,0,OIA:SA:CTP10799,Europe/Paris,,OIA, +OIA:SP:10802,1,"Le Mollard",45.615966,5.319312,0,0,O38:SA:CTP10803,Europe/Paris,,OIA, +OIA:SP:10804,1,"Le Mollard",45.615171,5.318675,0,0,O38:SA:CTP10803,Europe/Paris,,OIA, +OIA:SP:11093,1,"Le Chaffard",45.668412,5.143468,0,0,O38:SA:CTP11094,Europe/Paris,,OIA, +OIA:SP:11095,1,"Le Chaffard",45.668596,5.14324,0,0,O38:SA:CTP11094,Europe/Paris,,OIA, +OIA:SP:11100,1,"Bas Bonce Fontaine",45.685084,5.116261,0,0,O38:SA:CTP11101,Europe/Paris,,OIA, +OIA:SP:11102,1,"Bas Bonce Fontaine",45.685136,5.11619,0,0,O38:SA:CTP11101,Europe/Paris,,OIA, +OIA:SP:11107,1,"Ecole",45.69152,5.130123,0,0,OIA:SA:CTP11107,Europe/Paris,,OIA, +OIA:SP:11108,1,"La Croix Pallin",45.691506,5.130422,0,0,OIA:SA:CTP11108,Europe/Paris,,OIA, +OIA:SP:11109,1,"La Croix Pallin",45.691441,5.130465,0,0,OIA:SA:CTP11108,Europe/Paris,,OIA, +OIA:SP:11111,1,"Les Etraits",45.693245,5.134747,0,0,O38:SA:CTP11110,Europe/Paris,,OIA, +OIA:SP:11113,1,"L'Eperon",45.693115,5.133982,0,0,OIA:SA:CTP11113,Europe/Paris,,OIA, +OIA:SP:11114,1,"L'Eperon",45.693115,5.133982,0,0,OIA:SA:CTP11113,Europe/Paris,,OIA, +OIA:SP:11115,1,"Les Etraits",45.693245,5.134747,0,0,O38:SA:CTP11110,Europe/Paris,,OIA, +OIA:SP:11117,1,"Haut De Bonce",45.691299,5.112845,0,0,O38:SA:CTP11116,Europe/Paris,,OIA, +OIA:SP:11121,1,"Satolas Pompiers",45.691807,5.128981,0,0,OIA:SA:CTP11121,Europe/Paris,,OIA, +OIA:SP:11123,1,"Satolas Pompiers",45.687338,5.129301,0,0,O38:SA:CTP11122,Europe/Paris,,OIA, +OIA:SP:11130,1,"Satolas Place",45.693759,5.12762,0,0,O38:SA:CTP11129,Europe/Paris,,OIA, +OIA:SP:11132,1,"Satolas Place",45.693386,5.126961,0,0,O38:SA:CTP11129,Europe/Paris,,OIA, +OIA:SP:11134,1,"La Ruette",45.681663,5.111178,0,0,OIA:SA:CTP11134,Europe/Paris,,OIA, +OIA:SP:11136,1,"La Ruette",45.681602,5.111234,0,0,OIA:SA:CTP11134,Europe/Paris,,OIA, +OIA:SP:120,1,"La Serve",45.688314,5.116964,0,0,O38:SA:CTP11098,Europe/Paris,,OIA, +OIA:SP:122,1,"La Croix",45.594489,5.219149,0,0,OIA:SA:CTP122,Europe/Paris,,OIA, +OIA:SP:130,1,"Haut De Bonce",45.691299,5.112845,0,0,O38:SA:CTP11116,Europe/Paris,,OIA, +OIA:SP:13039,1,"Vicat",45.60503,5.2168,0,0,OIA:SA:CTP13039,Europe/Paris,,OIA, +OIA:SP:13041,1,"Vicat",45.60495,5.21695,0,0,OIA:SA:CTP13039,Europe/Paris,,OIA, +OIA:SP:13043,1,"Muguets",45.634626,5.108849,0,0,OIA:SA:CTP13043,Europe/Paris,,OIA, +OIA:SP:13045,1,"Muguets",45.636104,5.108267,0,0,OIA:SA:CTP13043,Europe/Paris,,OIA, +OIA:SP:13399,1,"St Bonnet Centre",45.609481,5.15676,0,0,O38:SA:CTP9891,Europe/Paris,,OIA, +OIA:SP:14106,1,"Albizzias",45.604485,5.29752,0,0,OIA:SA:CTP14106,Europe/Paris,,OIA, +OIA:SP:14107,1,"Albizzias",45.605222,5.299439,0,0,OIA:SA:CTP14106,Europe/Paris,,OIA, +OIA:SP:14108,1,"Barthélémy",45.615509,5.279746,0,0,OIA:SA:CTP14108,Europe/Paris,,OIA, +OIA:SP:14109,1,"Belle Rive",45.595648,5.291069,0,0,OIA:SA:CTP14109,Europe/Paris,,OIA, +OIA:SP:14110,1,"Belle Rive",45.59542,5.28983,0,0,OIA:SA:CTP14109,Europe/Paris,,OIA, +OIA:SP:14112,1,"Belvédère",45.59663,5.291638,0,0,OIA:SA:CTP14112,Europe/Paris,,OIA, +OIA:SP:14113,1,"Bernache",45.605767,5.302941,0,0,OIA:SA:CTP14113,Europe/Paris,,OIA, +OIA:SP:14114,1,"Caisse D'Epargne",45.58885,5.28563,0,0,OIA:SA:CTP14114,Europe/Paris,,OIA, +OIA:SP:14115,1,"Caisse D'Epargne",45.58885,5.28563,0,0,OIA:SA:CTP14114,Europe/Paris,,OIA, +OIA:SP:14116,1,"Champ Du Pin",45.61117,5.27313,0,0,OIA:SA:CTP14116,Europe/Paris,,OIA, +OIA:SP:14117,1,"Champ Du Pin",45.61113,5.27313,0,0,OIA:SA:CTP14116,Europe/Paris,,OIA, +OIA:SP:14118,1,"Champ Fleuri",45.60805,5.263056,0,0,OIA:SA:CTP14118,Europe/Paris,,OIA, +OIA:SP:14119,1,"Champ Fleuri",45.608163,5.262498,0,0,OIA:SA:CTP14118,Europe/Paris,,OIA, +OIA:SP:14120,1,"Champagneux",45.602276,5.293734,0,0,OIA:SA:CTP14120,Europe/Paris,,OIA, +OIA:SP:14121,1,"Champaret",45.585048,5.295557,0,0,OIA:SA:CTP14121,Europe/Paris,,OIA, +OIA:SP:14122,1,"Champaret",45.585048,5.295557,0,0,OIA:SA:CTP14121,Europe/Paris,,OIA, +OIA:SP:14123,1,"Champaret Moulin",45.587843,5.291612,0,0,OIA:SA:CTP14123,Europe/Paris,,OIA, +OIA:SP:14124,1,"Champaret Moulin",45.586729,5.29122,0,0,OIA:SA:CTP14123,Europe/Paris,,OIA, +OIA:SP:14125,1,"Charbonnières",45.614338,5.294423,0,0,OIA:SA:CTP14125,Europe/Paris,,OIA, +OIA:SP:14126,1,"Charges - Gare SNCF",45.5801,5.27422,0,0,O38:SA:CTP9951,Europe/Paris,,OIA, +OIA:SP:14127,1,"Charges - Gare SNCF",45.58002,5.27433,0,0,O38:SA:CTP9951,Europe/Paris,,OIA, +OIA:SP:14128,1,"Charmilles",45.606816,5.266146,0,0,OIA:SA:CTP14128,Europe/Paris,,OIA, +OIA:SP:14129,1,"Charmilles",45.606741,5.267297,0,0,OIA:SA:CTP14128,Europe/Paris,,OIA, +OIA:SP:14130,1,"Châtillon",45.573427,5.288358,0,0,OIA:SA:CTP14130,Europe/Paris,,OIA, +OIA:SP:14131,1,"Claude Chary",45.585081,5.289225,0,0,OIA:SA:CTP14131,Europe/Paris,,OIA, +OIA:SP:14132,1,"Claude Chary",45.585317,5.287776,0,0,OIA:SA:CTP14131,Europe/Paris,,OIA, +OIA:SP:14134,1,"Croix Blanche",45.601667,5.229462,0,0,O38:SA:CTP14133,Europe/Paris,,OIA, +OIA:SP:14136,1,"Croix Blanche",45.601909,5.229141,0,0,O38:SA:CTP14133,Europe/Paris,,OIA, +OIA:SP:14137,1,"Ecole Pré-Bénit",45.592858,5.284461,0,0,OIA:SA:CTP14137,Europe/Paris,,OIA, +OIA:SP:14139,1,"Ecole Jean Rostand",45.608514,5.269666,0,0,OIA:SA:CTP14139,Europe/Paris,,OIA, +OIA:SP:14141,1,"Emile Zola",45.58833,5.27073,0,0,OIA:SA:CTP14141,Europe/Paris,,OIA, +OIA:SP:14142,1,"Emile Zola",45.58833,5.27073,0,0,OIA:SA:CTP14141,Europe/Paris,,OIA, +OIA:SP:14143,1,"Henri Barbusse",45.599776,5.266144,0,0,OIA:SA:CTP14143,Europe/Paris,,OIA, +OIA:SP:14144,1,"Henri Barbusse",45.5993,5.266478,0,0,OIA:SA:CTP14143,Europe/Paris,,OIA, +OIA:SP:14145,1,"Hôtel De Ville",45.593592,5.275408,0,0,OIA:SA:CTP14145,Europe/Paris,,OIA, +OIA:SP:14146,1,"Hôtel De Ville",45.594026,5.275328,0,0,OIA:SA:CTP14145,Europe/Paris,,OIA, +OIA:SP:14147,1,"J. Strauss",45.604336,5.267501,0,0,OIA:SA:CTP14147,Europe/Paris,,OIA, +OIA:SP:14148,1,"J. Strauss",45.604334,5.266836,0,0,OIA:SA:CTP14147,Europe/Paris,,OIA, +OIA:SP:14149,1,"Jardin De Ville",45.58195,5.27457,0,0,OIA:SA:CTP9950,Europe/Paris,,OIA, +OIA:SP:14150,1,"Jean Rostand",45.60672,5.270015,0,0,OIA:SA:CTP14150,Europe/Paris,,OIA, +OIA:SP:14151,1,"Jean Rostand",45.606668,5.268352,0,0,OIA:SA:CTP14150,Europe/Paris,,OIA, +OIA:SP:14154,1,"La Rivoire",45.597761,5.287364,0,0,OIA:SA:CTP14154,Europe/Paris,,OIA, +OIA:SP:14155,1,"La Serve",45.574894,5.285988,0,0,OIA:SA:CTP14155,Europe/Paris,,OIA, +OIA:SP:14156,1,"La Tour",45.58628,5.29212,0,0,OIA:SA:CTP14156,Europe/Paris,,OIA, +OIA:SP:14157,1,"La Tour",45.58622,5.29213,0,0,OIA:SA:CTP14156,Europe/Paris,,OIA, +OIA:SP:14158,1,"Le Bois",45.575178,5.292272,0,0,OIA:SA:CTP14158,Europe/Paris,,OIA, +OIA:SP:14160,1,"Le Loup",45.60291,5.294861,0,0,OIA:SA:CTP14160,Europe/Paris,,OIA, +OIA:SP:14161,1,"Le Loup",45.60291,5.294861,0,0,OIA:SA:CTP14160,Europe/Paris,,OIA, +OIA:SP:14162,1,"Le Mas",45.595794,5.284079,0,0,OIA:SA:CTP14162,Europe/Paris,,OIA, +OIA:SP:14163,1,"Le Plateau",45.599813,5.289744,0,0,OIA:SA:CTP14163,Europe/Paris,,OIA, +OIA:SP:14164,1,"Le Rivet",45.583881,5.297161,0,0,OIA:SA:CTP14164,Europe/Paris,,OIA, +OIA:SP:14165,1,"Le Rivet",45.581692,5.29721,0,0,OIA:SA:CTP14164,Europe/Paris,,OIA, +OIA:SP:14166,1,"Les Sommes",45.578446,5.290908,0,0,OIA:SA:CTP14166,Europe/Paris,,OIA, +OIA:SP:14167,1,"Libération",45.595099,5.273565,0,0,OIA:SA:CTP14167,Europe/Paris,,OIA, +OIA:SP:14168,1,"Libération",45.595245,5.274842,0,0,OIA:SA:CTP14167,Europe/Paris,,OIA, +OIA:SP:14169,1,"Linné",45.61202,5.27083,0,0,OIA:SA:CTP14169,Europe/Paris,,OIA, +OIA:SP:14170,1,"Linné",45.61205,5.27073,0,0,OIA:SA:CTP14169,Europe/Paris,,OIA, +OIA:SP:14171,1,"L'Oiselet",45.587644,5.264898,0,0,OIA:SA:CTP14171,Europe/Paris,,OIA, +OIA:SP:14173,1,"Maison Blanche",45.58017,5.30007,0,0,OIA:SA:CTP14173,Europe/Paris,,OIA, +OIA:SP:14174,1,"Maison Blanche",45.58002,5.30002,0,0,OIA:SA:CTP14173,Europe/Paris,,OIA, +OIA:SP:14175,1,"Maubec",45.571097,5.279055,0,0,OIA:SA:CTP14175,Europe/Paris,,OIA, +OIA:SP:14176,1,"Médipôle Clinique",45.598313,5.245612,0,0,OIA:SA:CTP14176,Europe/Paris,,OIA, +OIA:SP:14177,1,"Médipôle Clinique",45.598313,5.245612,0,0,OIA:SA:CTP14176,Europe/Paris,,OIA, +OIA:SP:14178,1,"Mozas Le Bas",45.614529,5.27543,0,0,OIA:SA:CTP14178,Europe/Paris,,OIA, +OIA:SP:14179,1,"Mozas Le Bas",45.61508,5.27553,0,0,OIA:SA:CTP14178,Europe/Paris,,OIA, +OIA:SP:14180,1,"Mozas Le Haut",45.614038,5.280089,0,0,OIA:SA:CTP14180,Europe/Paris,,OIA, +OIA:SP:14181,1,"Papin",45.58903,5.25618,0,0,OIA:SA:CTP14181,Europe/Paris,,OIA, +OIA:SP:14182,1,"Papin",45.58903,5.25618,0,0,OIA:SA:CTP14181,Europe/Paris,,OIA, +OIA:SP:14183,1,"Pasteur",45.599522,5.270712,0,0,OIA:SA:CTP14183,Europe/Paris,,OIA, +OIA:SP:14184,1,"Pasteur",45.599522,5.270712,0,0,OIA:SA:CTP14183,Europe/Paris,,OIA, +OIA:SP:14185,1,"Petit Mont",45.596306,5.29279,0,0,OIA:SA:CTP14185,Europe/Paris,,OIA, +OIA:SP:14186,1,"Petit Mont",45.596932,5.293873,0,0,OIA:SA:CTP14185,Europe/Paris,,OIA, +OIA:SP:14187,1,"Pierre Curie",45.5886,5.26767,0,0,OIA:SA:CTP14187,Europe/Paris,,OIA, +OIA:SP:14188,1,"Pierre Curie",45.5886,5.26767,0,0,OIA:SA:CTP14187,Europe/Paris,,OIA, +OIA:SP:14189,1,"Piscine",45.591,5.28697,0,0,OIA:SA:CTP14189,Europe/Paris,,OIA, +OIA:SP:14190,1,"Piscine",45.59117,5.28697,0,0,OIA:SA:CTP14189,Europe/Paris,,OIA, +OIA:SP:14191,1,"Plan Bourgoin",45.578246,5.28109,0,0,OIA:SA:CTP14191,Europe/Paris,,OIA, +OIA:SP:14192,1,"Pont De Jallieu",45.597202,5.274199,0,0,OIA:SA:CTP14192,Europe/Paris,,OIA, +OIA:SP:14193,1,"Pont De Jallieu",45.597202,5.274199,0,0,OIA:SA:CTP14192,Europe/Paris,,OIA, +OIA:SP:14194,1,"Pré Bénit",45.592027,5.285262,0,0,OIA:SA:CTP14194,Europe/Paris,,OIA, +OIA:SP:14195,1,"Pré Bénit",45.592027,5.285262,0,0,OIA:SA:CTP14194,Europe/Paris,,OIA, +OIA:SP:14199,1,"Square Du Parc",45.59227,5.28245,0,0,OIA:SA:CTP14199,Europe/Paris,,OIA, +OIA:SP:14201,1,"Stade",45.58963,5.28638,0,0,OIA:SA:CTP14201,Europe/Paris,,OIA, +OIA:SP:14202,1,"Stade",45.58923,5.2863,0,0,OIA:SA:CTP14201,Europe/Paris,,OIA, +OIA:SP:14203,1,"Temple Diederichs",45.59127,5.277471,0,0,OIA:SA:CTP14203,Europe/Paris,,OIA, +OIA:SP:14204,1,"Temple Diederichs",45.59138,5.27745,0,0,OIA:SA:CTP14203,Europe/Paris,,OIA, +OIA:SP:14205,1,"Tillaret",45.577232,5.293907,0,0,OIA:SA:CTP14205,Europe/Paris,,OIA, +OIA:SP:14206,1,"Tonkin",45.59461,5.280861,0,0,OIA:SA:CTP14206,Europe/Paris,,OIA, +OIA:SP:14207,1,"Tonkin",45.594292,5.280639,0,0,OIA:SA:CTP14206,Europe/Paris,,OIA, +OIA:SP:14209,1,"Vaucanson",45.591165,5.271483,0,0,OIA:SA:CTP9976,Europe/Paris,,OIA, +OIA:SP:14211,1,"Victor Hugo",45.58605,5.28123,0,0,OIA:SA:CTP14211,Europe/Paris,,OIA, +OIA:SP:14213,1,"Mairie",45.586163,5.191993,0,0,O38:SA:CTP14212,Europe/Paris,,OIA, +OIA:SP:14215,1,"Mairie",45.586342,5.192387,0,0,O38:SA:CTP14212,Europe/Paris,,OIA, +OIA:SP:14216,1,"Mollard",45.582176,5.189146,0,0,OIA:SA:CTP14216,Europe/Paris,,OIA, +OIA:SP:14217,1,"Mollard",45.58276,5.187778,0,0,OIA:SA:CTP14216,Europe/Paris,,OIA, +OIA:SP:14218,1,"Alicante",45.61835,5.247131,0,0,OIA:SA:CTP14218,Europe/Paris,,OIA, +OIA:SP:14219,1,"Arthur Rimbaud",45.61475,5.24217,0,0,OIA:SA:CTP14219,Europe/Paris,,OIA, +OIA:SP:14220,1,"Arthur Rimbaud",45.61485,5.2422,0,0,OIA:SA:CTP14219,Europe/Paris,,OIA, +OIA:SP:14221,1,"Atlantide",45.62162,5.21232,0,0,OIA:SA:CTP14221,Europe/Paris,,OIA, +OIA:SP:14222,1,"Atlantide",45.6216,5.21222,0,0,OIA:SA:CTP14221,Europe/Paris,,OIA, +OIA:SP:14223,1,"Centre Administratif",45.621317,5.230136,0,0,OIA:SA:CTP14223,Europe/Paris,,OIA, +OIA:SP:14224,1,"Centre Administratif",45.6212,5.23047,0,0,OIA:SA:CTP14223,Europe/Paris,,OIA, +OIA:SP:14227,1,"Collège R. Doisneau",45.620932,5.209548,0,0,O38:SA:CTP10676,Europe/Paris,,OIA, +OIA:SP:14228,1,"Fauvettes",45.61983,5.21235,0,0,OIA:SA:CTP14228,Europe/Paris,,OIA, +OIA:SP:14229,1,"Fauvettes",45.62022,5.21193,0,0,OIA:SA:CTP14228,Europe/Paris,,OIA, +OIA:SP:14230,1,"Galoubier",45.599863,5.220147,0,0,OIA:SA:CTP14230,Europe/Paris,,OIA, +OIA:SP:14231,1,"Grande Buissière",45.600558,5.223222,0,0,OIA:SA:CTP14231,Europe/Paris,,OIA, +OIA:SP:14232,1,"Guillaume Apollinaire",45.616879,5.24213,0,0,OIA:SA:CTP14232,Europe/Paris,,OIA, +OIA:SP:14233,1,"Guillaume Apollinaire",45.6165,5.24193,0,0,OIA:SA:CTP14232,Europe/Paris,,OIA, +OIA:SP:14234,1,"Gymnase St Hubert",45.622429,5.22268,0,0,OIA:SA:CTP14234,Europe/Paris,,OIA, +OIA:SP:14235,1,"Gymnase St Hubert",45.6225,5.2225,0,0,OIA:SA:CTP14234,Europe/Paris,,OIA, +OIA:SP:14238,1,"Le Lombard",45.611426,5.217046,0,0,OIA:SA:CTP14238,Europe/Paris,,OIA, +OIA:SP:14239,1,"Le Temple",45.606663,5.211306,0,0,OIA:SA:CTP14239,Europe/Paris,,OIA, +OIA:SP:14240,1,"Les Branches",45.61773,5.23263,0,0,OIA:SA:CTP14240,Europe/Paris,,OIA, +OIA:SP:14241,1,"Les Branches",45.6176,5.2332,0,0,OIA:SA:CTP14240,Europe/Paris,,OIA, +OIA:SP:14242,1,"L'Isle D'Abeau Gare",45.60786,5.219705,0,0,OIA:SA:CTP14242,Europe/Paris,,OIA, +OIA:SP:14243,1,"Mistral",45.61785,5.239343,0,0,OIA:SA:CTP14243,Europe/Paris,,OIA, +OIA:SP:14244,1,"Pacifique",45.62227,5.21513,0,0,OIA:SA:CTP14244,Europe/Paris,,OIA, +OIA:SP:14248,1,"Pasteur Vinci",45.603465,5.218039,0,0,OIA:SA:CTP14248,Europe/Paris,,OIA, +OIA:SP:14249,1,"Pasteur Vinci",45.603077,5.218045,0,0,OIA:SA:CTP14248,Europe/Paris,,OIA, +OIA:SP:14250,1,"Pierre Plate",45.62112,5.21132,0,0,OIA:SA:CTP14250,Europe/Paris,,OIA, +OIA:SP:14251,1,"Pierre Plate",45.62098,5.21133,0,0,OIA:SA:CTP14250,Europe/Paris,,OIA, +OIA:SP:14252,1,"Plantées",45.619497,5.217376,0,0,OIA:SA:CTP14252,Europe/Paris,,OIA, +OIA:SP:14253,1,"Plantées",45.619497,5.217376,0,0,OIA:SA:CTP14252,Europe/Paris,,OIA, +OIA:SP:14254,1,"Raspeig",45.619495,5.241841,0,0,OIA:SA:CTP14254,Europe/Paris,,OIA, +OIA:SP:14255,1,"Rue De L'Hôtel De Ville",45.623065,5.228575,0,0,OIA:SA:CTP14255,Europe/Paris,,OIA, +OIA:SP:14256,1,"Rue De L'Hôtel De Ville",45.62288,5.2288,0,0,OIA:SA:CTP14255,Europe/Paris,,OIA, +OIA:SP:14259,1,"Rue Du Lans",45.619261,5.221843,0,0,OIA:SA:CTP14259,Europe/Paris,,OIA, +OIA:SP:14260,1,"Rue Du Lans",45.619246,5.223033,0,0,OIA:SA:CTP14259,Europe/Paris,,OIA, +OIA:SP:14261,1,"Seigle",45.615707,5.200551,0,0,OIA:SA:CTP14261,Europe/Paris,,OIA, +OIA:SP:14262,1,"Seigle",45.616143,5.200004,0,0,OIA:SA:CTP14261,Europe/Paris,,OIA, +OIA:SP:14263,1,"St Germain",45.616448,5.209617,0,0,OIA:SA:CTP14263,Europe/Paris,,OIA, +OIA:SP:14264,1,"St Germain",45.61646,5.209679,0,0,OIA:SA:CTP14263,Europe/Paris,,OIA, +OIA:SP:14265,1,"Trois Vallons",45.60155,5.21897,0,0,OIA:SA:CTP14265,Europe/Paris,,OIA, +OIA:SP:14266,1,"Trois Vallons",45.60158,5.219,0,0,OIA:SA:CTP14265,Europe/Paris,,OIA, +OIA:SP:14267,1,"Boussieu",45.578311,5.303849,0,0,OIA:SA:CTP14267,Europe/Paris,,OIA, +OIA:SP:14268,1,"Croisement St-Pierre",45.597668,5.381583,0,0,OIA:SA:CTP14268,Europe/Paris,,OIA, +OIA:SP:14269,1,"Charretons",45.621046,5.121125,0,0,OIA:SA:CTP14269,Europe/Paris,,OIA, +OIA:SP:14270,1,"Charretons",45.62105,5.121276,0,0,OIA:SA:CTP14269,Europe/Paris,,OIA, +OIA:SP:14271,1,"Cochet",45.62331,5.118813,0,0,OIA:SA:CTP14271,Europe/Paris,,OIA, +OIA:SP:14272,1,"Cochet",45.624081,5.117995,0,0,OIA:SA:CTP14271,Europe/Paris,,OIA, +OIA:SP:14273,1,"Furin",45.634527,5.106559,0,0,OIA:SA:CTP14273,Europe/Paris,,OIA, +OIA:SP:14274,1,"Furin",45.633865,5.107847,0,0,OIA:SA:CTP14273,Europe/Paris,,OIA, +OIA:SP:14275,1,"Gargues",45.6179,5.12573,0,0,OIA:SA:CTP14275,Europe/Paris,,OIA, +OIA:SP:14276,1,"Gargues",45.617955,5.125476,0,0,OIA:SA:CTP14275,Europe/Paris,,OIA, +OIA:SP:14277,1,"La Lieuse",45.63095,5.1125,0,0,OIA:SA:CTP14277,Europe/Paris,,OIA, +OIA:SP:14278,1,"La Lieuse",45.63097,5.112117,0,0,OIA:SA:CTP14277,Europe/Paris,,OIA, +OIA:SP:14279,1,"Les Moines",45.6272,5.134058,0,0,OIA:SA:CTP14279,Europe/Paris,,OIA, +OIA:SP:14280,1,"Monument Aux Morts",45.636166,5.102509,0,0,OIA:SA:CTP14280,Europe/Paris,,OIA, +OIA:SP:14281,1,"Monument Aux Morts",45.635802,5.103173,0,0,OIA:SA:CTP14280,Europe/Paris,,OIA, +OIA:SP:14282,1,"Trois Communes",45.6252,5.1387,0,0,OIA:SA:CTP14282,Europe/Paris,,OIA, +OIA:SP:14283,1,"Trois Communes",45.625429,5.13853,0,0,OIA:SA:CTP14282,Europe/Paris,,OIA, +OIA:SP:14285,1,"Le Bourg Ecole Maternelle",45.62707,5.311645,0,0,OIA:SA:CTP14285,Europe/Paris,,OIA, +OIA:SP:14286,1,"Ancienne Gare",45.613897,5.186104,0,0,OIA:SA:CTP14286,Europe/Paris,,OIA, +OIA:SP:14287,1,"Ancienne Gare",45.613799,5.186394,0,0,OIA:SA:CTP14286,Europe/Paris,,OIA, +OIA:SP:14288,1,"Belmont",45.612,5.195476,0,0,OIA:SA:CTP14288,Europe/Paris,,OIA, +OIA:SP:14289,1,"Belmont",45.611929,5.19617,0,0,OIA:SA:CTP14288,Europe/Paris,,OIA, +OIA:SP:14290,1,"Bizet",45.61672,5.17142,0,0,OIA:SA:CTP14290,Europe/Paris,,OIA, +OIA:SP:14291,1,"Bizet",45.61655,5.17155,0,0,OIA:SA:CTP14290,Europe/Paris,,OIA, +OIA:SP:14292,1,"Cime De Vaulx",45.615039,5.17285,0,0,OIA:SA:CTP14292,Europe/Paris,,OIA, +OIA:SP:14293,1,"Cime De Vaulx",45.614758,5.173042,0,0,OIA:SA:CTP14292,Europe/Paris,,OIA, +OIA:SP:14294,1,"Lavoir",45.613005,5.176542,0,0,OIA:SA:CTP14294,Europe/Paris,,OIA, +OIA:SP:14295,1,"Lavoir",45.612985,5.175649,0,0,OIA:SA:CTP14294,Europe/Paris,,OIA, +OIA:SP:14296,1,"Nautan",45.61203,5.18858,0,0,OIA:SA:CTP14296,Europe/Paris,,OIA, +OIA:SP:14297,1,"Nautan",45.61205,5.18872,0,0,OIA:SA:CTP14296,Europe/Paris,,OIA, +OIA:SP:14298,1,"Poste",45.614215,5.18208,0,0,OIA:SA:CTP14298,Europe/Paris,,OIA, +OIA:SP:14299,1,"Poste",45.614933,5.182528,0,0,OIA:SA:CTP14298,Europe/Paris,,OIA, +OIA:SP:14300,1,"Artois",45.6407,5.13058,0,0,OIA:SA:CTP14300,Europe/Paris,,OIA, +OIA:SP:14301,1,"Artois",45.6407,5.13058,0,0,OIA:SA:CTP14300,Europe/Paris,,OIA, +OIA:SP:14302,1,"Ecole Jean Moulin",45.63335,5.14033,0,0,OIA:SA:CTP14302,Europe/Paris,,OIA, +OIA:SP:14303,1,"Ecole Jean Moulin",45.63335,5.14033,0,0,OIA:SA:CTP14302,Europe/Paris,,OIA, +OIA:SP:14304,1,"Les Loipes",45.63872,5.13242,0,0,OIA:SA:CTP14304,Europe/Paris,,OIA, +OIA:SP:14305,1,"Les Loipes",45.63872,5.13242,0,0,OIA:SA:CTP14304,Europe/Paris,,OIA, +OIA:SP:14306,1,"Picardie",45.64237,5.13525,0,0,OIA:SA:CTP14306,Europe/Paris,,OIA, +OIA:SP:14307,1,"Piscine",45.63503,5.14487,0,0,OIA:SA:CTP14307,Europe/Paris,,OIA, +OIA:SP:14308,1,"Rue Des Alpes",45.63123,5.1517,0,0,OIA:SA:CTP14308,Europe/Paris,,OIA, +OIA:SP:14309,1,"Aillat",45.612097,5.159514,0,0,OIA:SA:CTP14309,Europe/Paris,,OIA, +OIA:SP:14310,1,"Aillat",45.612125,5.159361,0,0,OIA:SA:CTP14309,Europe/Paris,,OIA, +OIA:SP:14311,1,"Allée De La Halle",45.601544,5.173026,0,0,OIA:SA:CTP14311,Europe/Paris,,OIA, +OIA:SP:14312,1,"Avenue Des Bois",45.62165,5.147914,0,0,OIA:SA:CTP14312,Europe/Paris,,OIA, +OIA:SP:14313,1,"Avenue Des Bois",45.621829,5.146872,0,0,OIA:SA:CTP14312,Europe/Paris,,OIA, +OIA:SP:14314,1,"Berthet",45.60975,5.15237,0,0,OIA:SA:CTP14314,Europe/Paris,,OIA, +OIA:SP:14315,1,"Berthet",45.610444,5.152336,0,0,OIA:SA:CTP14314,Europe/Paris,,OIA, +OIA:SP:14316,1,"Chaussée Du Parc",45.60446,5.18338,0,0,OIA:SA:CTP14316,Europe/Paris,,OIA, +OIA:SP:14317,1,"Christophe Colomb",45.599377,5.182854,0,0,OIA:SA:CTP14317,Europe/Paris,,OIA, +OIA:SP:14318,1,"Clos Des Aubépines",45.60153,5.176065,0,0,OIA:SA:CTP14318,Europe/Paris,,OIA, +OIA:SP:14319,1,"Clos Des Chênes",45.601448,5.177907,0,0,OIA:SA:CTP14319,Europe/Paris,,OIA, +OIA:SP:14320,1,"Essarts",45.600797,5.180477,0,0,OIA:SA:CTP14320,Europe/Paris,,OIA, +OIA:SP:14321,1,"Etang Neuf",45.605601,5.175505,0,0,OIA:SA:CTP14321,Europe/Paris,,OIA, +OIA:SP:14322,1,"Fougères Le Haut",45.600026,5.18213,0,0,OIA:SA:CTP14322,Europe/Paris,,OIA, +OIA:SP:14323,1,"Ginet Village",45.61238,5.1453,0,0,OIA:SA:CTP14323,Europe/Paris,,OIA, +OIA:SP:14324,1,"Ginet Village",45.61247,5.14533,0,0,OIA:SA:CTP14323,Europe/Paris,,OIA, +OIA:SP:14325,1,"Groupe Scolaire 22",45.602509,5.18559,0,0,OIA:SA:CTP14325,Europe/Paris,,OIA, +OIA:SP:14326,1,"Gs 4 L'Etang",45.606679,5.15107,0,0,OIA:SA:CTP14326,Europe/Paris,,OIA, +OIA:SP:14327,1,"Gs 4 L'Etang",45.6068,5.15105,0,0,OIA:SA:CTP14326,Europe/Paris,,OIA, +OIA:SP:14328,1,"Hudson",45.596728,5.177305,0,0,OIA:SA:CTP14328,Europe/Paris,,OIA, +OIA:SP:14329,1,"Isatis",45.619013,5.143226,0,0,OIA:SA:CTP14329,Europe/Paris,,OIA, +OIA:SP:14330,1,"Le Pont",45.614731,5.160979,0,0,OIA:SA:CTP14330,Europe/Paris,,OIA, +OIA:SP:14331,1,"Le Pont",45.614731,5.160979,0,0,OIA:SA:CTP14330,Europe/Paris,,OIA, +OIA:SP:14332,1,"Lémand",45.61862,5.15898,0,0,OIA:SA:CTP14332,Europe/Paris,,OIA, +OIA:SP:14333,1,"Lémand",45.618457,5.15902,0,0,OIA:SA:CTP14332,Europe/Paris,,OIA, +OIA:SP:14334,1,"Les Armières",45.621967,5.145163,0,0,OIA:SA:CTP14334,Europe/Paris,,OIA, +OIA:SP:14335,1,"Les Armières",45.621549,5.144287,0,0,OIA:SA:CTP14334,Europe/Paris,,OIA, +OIA:SP:14336,1,"Les Quatre Vents",45.608154,5.177092,0,0,OIA:SA:CTP14336,Europe/Paris,,OIA, +OIA:SP:14337,1,"Muissiat",45.616668,5.162313,0,0,OIA:SA:CTP14337,Europe/Paris,,OIA, +OIA:SP:14338,1,"Muissiat",45.61688,5.16247,0,0,OIA:SA:CTP14337,Europe/Paris,,OIA, +OIA:SP:14339,1,"Noyera",45.61023,5.14753,0,0,OIA:SA:CTP14339,Europe/Paris,,OIA, +OIA:SP:14340,1,"Noyera",45.61018,5.14747,0,0,OIA:SA:CTP14339,Europe/Paris,,OIA, +OIA:SP:14341,1,"Pasteur Maladière",45.60892,5.1494,0,0,OIA:SA:CTP14341,Europe/Paris,,OIA, +OIA:SP:14342,1,"Pasteur Maladière",45.608979,5.14902,0,0,OIA:SA:CTP14341,Europe/Paris,,OIA, +OIA:SP:14343,1,"Pinède",45.608516,5.151478,0,0,OIA:SA:CTP14343,Europe/Paris,,OIA, +OIA:SP:14344,1,"Pinède",45.608493,5.150579,0,0,OIA:SA:CTP14343,Europe/Paris,,OIA, +OIA:SP:14345,1,"Place De L'Europe",45.60233,5.17157,0,0,OIA:SA:CTP14345,Europe/Paris,,OIA, +OIA:SP:14346,1,"Place De L'Europe",45.6023,5.1715,0,0,OIA:SA:CTP14345,Europe/Paris,,OIA, +OIA:SP:14347,1,"Quincias",45.597676,5.180714,0,0,OIA:SA:CTP14347,Europe/Paris,,OIA, +OIA:SP:14348,1,"Rond Point De Muissiat",45.61842,5.16395,0,0,OIA:SA:CTP14348,Europe/Paris,,OIA, +OIA:SP:14349,1,"Rond Point De Muissiat",45.618564,5.16414,0,0,OIA:SA:CTP14348,Europe/Paris,,OIA, +OIA:SP:14350,1,"Rue Du Bret",45.621165,5.150954,0,0,OIA:SA:CTP14350,Europe/Paris,,OIA, +OIA:SP:14351,1,"Rue Du Bret",45.621206,5.150973,0,0,OIA:SA:CTP14350,Europe/Paris,,OIA, +OIA:SP:14352,1,"Sécurité Sociale",45.610477,5.158963,0,0,OIA:SA:CTP14352,Europe/Paris,,OIA, +OIA:SP:14353,1,"Sécurité Sociale",45.610372,5.158806,0,0,OIA:SA:CTP14352,Europe/Paris,,OIA, +OIA:SP:14354,1,"Sorbier",45.603048,5.14553,0,0,OIA:SA:CTP14354,Europe/Paris,,OIA, +OIA:SP:14355,1,"Sorbier",45.603331,5.145711,0,0,OIA:SA:CTP14354,Europe/Paris,,OIA, +OIA:SP:14357,1,"Stade De La Prairie",45.60572,5.16525,0,0,O38:SA:CTP14356,Europe/Paris,,OIA, +OIA:SP:14359,1,"Stade De La Prairie",45.6058,5.16533,0,0,O38:SA:CTP14356,Europe/Paris,,OIA, +OIA:SP:14360,1,"Vellein",45.614429,5.14403,0,0,OIA:SA:CTP14360,Europe/Paris,,OIA, +OIA:SP:14361,1,"Vellein",45.6144,5.14393,0,0,OIA:SA:CTP14360,Europe/Paris,,OIA, +OIA:SP:15016,1,"Maladière Asimov",45.588899,5.252999,0,0,OIA:SA:CTP15016,Europe/Paris,,OIA, +OIA:SP:15017,1,"Maladière Asimov",45.588936,5.25271,0,0,OIA:SA:CTP15016,Europe/Paris,,OIA, +OIA:SP:15018,1,"Maladière Branly",45.590562,5.246835,0,0,OIA:SA:CTP15018,Europe/Paris,,OIA, +OIA:SP:15019,1,"Maladière Branly",45.590168,5.248268,0,0,OIA:SA:CTP15018,Europe/Paris,,OIA, +OIA:SP:15020,1,"Médipôle Hôpital",45.598054,5.245156,0,0,OIA:SA:CTP15020,Europe/Paris,,OIA, +OIA:SP:15021,1,"Médipôle Hôpital",45.598471,5.245832,0,0,OIA:SA:CTP15020,Europe/Paris,,OIA, +OIA:SP:15022,1,"Les Sayes",45.613035,5.232142,0,0,OIA:SA:CTP15022,Europe/Paris,,OIA, +OIA:SP:15023,1,"Les Sayes",45.613092,5.231729,0,0,OIA:SA:CTP15022,Europe/Paris,,OIA, +OIA:SP:15057,1,"Les Guinguettes",45.624462,5.174239,0,0,OIA:SA:CTP15057,Europe/Paris,,OIA, +OIA:SP:15059,1,"Les Guinguettes",45.624381,5.174209,0,0,OIA:SA:CTP15057,Europe/Paris,,OIA, +OIA:SP:15141,1,"Impasse du Lavoir",45.68881,5.115701,0,0,OIA:SA:CTP15141,Europe/Paris,,OIA, +OIA:SP:15142,1,"Impasse Du Lavoir",45.68881,5.115701,0,0,OIA:SA:CTP15142,Europe/Paris,,OIA, +OIA:SP:15199,1,"Louis Braille",45.592569,5.243536,0,0,OIA:SA:CTP15199,Europe/Paris,,OIA, +OIA:SP:15200,1,"Louis Braille",45.592569,5.243536,0,0,OIA:SA:CTP15199,Europe/Paris,,OIA, +OIA:SP:15201,1,"Pôle Restauration",45.594162,5.240071,0,0,OIA:SA:CTP15201,Europe/Paris,,OIA, +OIA:SP:15202,1,"Pôle Restauration",45.594162,5.240071,0,0,OIA:SA:CTP15201,Europe/Paris,,OIA, +OIA:SP:15205,1,"Dauphine",45.650483,5.099646,0,0,OIA:SA:CTP15205,Europe/Paris,,OIA, +OIA:SP:15207,1,"Dauphine",45.649839,5.100234,0,0,OIA:SA:CTP15205,Europe/Paris,,OIA, +OIA:SP:15218,1,"Ferronniere",45.585754,5.250315,0,0,OIA:SA:CTP15218,Europe/Paris,,OIA, +OIA:SP:15219,1,"Ferronniere",45.585512,5.252238,0,0,OIA:SA:CTP15218,Europe/Paris,,OIA, +OIA:SP:15220,1,"Noyers",45.588239,5.24172,0,0,OIA:SA:CTP15220,Europe/Paris,,OIA, +OIA:SP:15221,1,"Noyers",45.588786,5.23991,0,0,OIA:SA:CTP15220,Europe/Paris,,OIA, +OIA:SP:15223,1,"Les Moines",45.5926,5.21194,0,0,OIA:SA:CTP15223,Europe/Paris,,OIA, +OIA:SP:15225,1,"Les Moines",45.592998,5.213483,0,0,OIA:SA:CTP15223,Europe/Paris,,OIA, +OIA:SP:15226,1,"College Champoulant",45.60482,5.220587,0,0,OIA:SA:CTP15226,Europe/Paris,,OIA, +OIA:SP:15227,1,"College Champoulant",45.60482,5.220587,0,0,OIA:SA:CTP15226,Europe/Paris,,OIA, +OIA:SP:15228,1,"College Champoulant",45.604851,5.222411,0,0,OIA:SA:CTP15226,Europe/Paris,,OIA, +OIA:SP:15229,1,"Hall Des Sports",45.585927,5.322878,0,0,OIA:SA:CTP15229,Europe/Paris,,OIA, +OIA:SP:15230,1,"Hall Des Sports",45.586353,5.32206,0,0,OIA:SA:CTP15229,Europe/Paris,,OIA, +OIA:SP:15231,1,"Hotel De Ville",45.58766,5.318928,0,0,OIA:SA:CTP15231,Europe/Paris,,OIA, +OIA:SP:15232,1,"Hotel De Ville",45.587743,5.318571,0,0,OIA:SA:CTP15231,Europe/Paris,,OIA, +OIA:SP:15237,1,"Gramond",45.595338,5.230032,0,0,OIA:SA:CTP15237,Europe/Paris,,OIA, +OIA:SP:15238,1,"Gramond",45.594766,5.231552,0,0,OIA:SA:CTP15237,Europe/Paris,,OIA, +OIA:SP:15239,1,"Pre-Chatelain",45.629614,5.293565,0,0,OIA:SA:CTP15239,Europe/Paris,,OIA, +OIA:SP:15240,1,"Pre-Chatelain",45.628979,5.295582,0,0,OIA:SA:CTP15239,Europe/Paris,,OIA, +OIA:SP:15241,1,"Truitelles",45.625265,5.315744,0,0,OIA:SA:CTP15241,Europe/Paris,,OIA, +OIA:SP:15242,1,"Truitelles",45.6255,5.315781,0,0,OIA:SA:CTP15241,Europe/Paris,,OIA, +OIA:SP:15306,1,"Montée De Langonne",45.634332,5.096546,0,0,OIA:SA:CTP15306,Europe/Paris,,OIA, +OIA:SP:15307,1,"Radiall",45.645741,5.10425,0,0,OIA:SA:CTP15307,Europe/Paris,,OIA, +OIA:SP:15308,1,"Z.1. Bd De La Noiree Cote Mc Do",45.643568,5.132418,0,0,OIA:SA:CTP15308,Europe/Paris,,OIA, +OIA:SP:15309,1,"Z.2. Bd De Tharabie",45.659768,5.102419,0,0,OIA:SA:CTP15309,Europe/Paris,,OIA, +OIA:SP:15310,1,"Z.2. Rue De Montmurier",45.665646,5.091219,0,0,OIA:SA:CTP15310,Europe/Paris,,OIA, +OIA:SP:15311,1,"Z.3 Rue Du Morellon",45.666185,5.091949,0,0,OIA:SA:CTP15311,Europe/Paris,,OIA, +OIA:SP:15312,1,"Z.3. Bd De Satolas",45.660667,5.103364,0,0,OIA:SA:CTP15312,Europe/Paris,,OIA, +OIA:SP:15313,1,"Z.3. Rue De Brisson",45.669664,5.129199,0,0,OIA:SA:CTP15313,Europe/Paris,,OIA, +OIA:SP:15314,1,"Z.4. D1006",45.649388,5.137224,0,0,OIA:SA:CTP15314,Europe/Paris,,OIA, +OIA:SP:15315,1,"Z.4. D124",45.644527,5.133405,0,0,OIA:SA:CTP15315,Europe/Paris,,OIA, +OIA:SP:15316,1,"Z.4. D124",45.669125,5.130401,0,0,OIA:SA:CTP15316,Europe/Paris,,OIA, +OIA:SP:15317,1,"Z.4. D75",45.652928,5.119286,0,0,OIA:SA:CTP15317,Europe/Paris,,OIA, +OIA:SP:15318,1,"Z.4. Rue Des Garinnes",45.649239,5.126238,0,0,OIA:SA:CTP15318,Europe/Paris,,OIA, +OIA:SP:15319,1,"Parc Techno Est",45.624091,5.175468,0,0,OIA:SA:CTP15319,Europe/Paris,,OIA, +OIA:SP:15320,1,"Parc Techno Est",45.623987,5.175561,0,0,OIA:SA:CTP15319,Europe/Paris,,OIA, +OIA:SP:15321,1,"Rue Condorcet",45.626884,5.169453,0,0,OIA:SA:CTP15321,Europe/Paris,,OIA, +OIA:SP:15322,1,"Rue Condorcet",45.626223,5.170269,0,0,OIA:SA:CTP15321,Europe/Paris,,OIA, +OIA:SP:15323,1,"Cci Nord-Isere",45.627394,5.168338,0,0,OIA:SA:CTP15323,Europe/Paris,,OIA, +OIA:SP:15324,1,"Cci Nord-Isere",45.626974,5.165505,0,0,OIA:SA:CTP15323,Europe/Paris,,OIA, +OIA:SP:15423,1,"Zone Commerciale",45.589944,5.238976,0,0,OIA:SA:CTP15423,Europe/Paris,,OIA, +OIA:SP:15424,1,"Zone Commerciale",45.591536,5.237646,0,0,OIA:SA:CTP15423,Europe/Paris,,OIA, +OIA:SP:15475,1,"Vincent Scotto",45.602476,5.266854,0,0,OIA:SA:CTP15475,Europe/Paris,,OIA, +OIA:SP:15476,1,"Vincent Scotto",45.602219,5.266927,0,0,OIA:SA:CTP15475,Europe/Paris,,OIA, +OIA:SP:15753,1,"Café Bonnet",45.517516,5.329833,0,0,O38:SA:CTP9257,Europe/Paris,,OIA, +OIA:SP:15754,1,"Café Bonnet",45.517519,5.32973,0,0,O38:SA:CTP9257,Europe/Paris,,OIA, +OIA:SP:15782,1,"Grand Tissage",45.590892,5.273295,0,0,OIA:SA:CTP15782,Europe/Paris,,OIA, +OIA:SP:15783,1,"Grand Tissage",45.590927,5.273302,0,0,OIA:SA:CTP15782,Europe/Paris,,OIA, +OIA:SP:15786,1,"Lot. Du stade",45.514668,5.32962,0,0,OIA:SA:CTP15786,Europe/Paris,,OIA, +OIA:SP:15787,1,"Lot. Du stade",45.514662,5.329722,0,0,OIA:SA:CTP15786,Europe/Paris,,OIA, +OIA:SP:189,1,"Alsace Lorraine",45.585692,5.270455,0,0,OIA:SA:CTP189,Europe/Paris,,OIA, +OIA:SP:192,1,"Place",45.548834,5.223599,0,0,OIA:SA:CTP192,Europe/Paris,,OIA, +OIA:SP:8569,1,"Badinière Place",45.502026,5.302252,0,0,O38:SA:CTP8570,Europe/Paris,,OIA, +OIA:SP:8571,1,"Badinière Place",45.502014,5.302353,0,0,O38:SA:CTP8570,Europe/Paris,,OIA, +OIA:SP:8579,1,"Badinière Mairie",45.507939,5.303088,0,0,O38:SA:CTP8580,Europe/Paris,,OIA, +OIA:SP:8581,1,"Badinière Mairie",45.507943,5.302986,0,0,O38:SA:CTP8580,Europe/Paris,,OIA, +OIA:SP:8583,1,"Le Village",45.498507,5.300848,0,0,O38:SA:CTP8584,Europe/Paris,,OIA, +OIA:SP:8585,1,"Le Village",45.498488,5.300947,0,0,O38:SA:CTP8584,Europe/Paris,,OIA, +OIA:SP:9121,1,"La Charpe",45.548213,5.209587,0,0,O38:SA:CTP9122,Europe/Paris,,OIA, +OIA:SP:9123,1,"La Charpe",45.548141,5.20959,0,0,O38:SA:CTP9122,Europe/Paris,,OIA, +OIA:SP:9155,1,"Malassin",45.555735,5.214313,0,0,OIA:SA:CTP9155,Europe/Paris,,OIA, +OIA:SP:9157,1,"Malassin",45.555085,5.214185,0,0,OIA:SA:CTP9155,Europe/Paris,,OIA, +OIA:SP:9165,1,"La Rivoire",45.561119,5.284158,0,0,O38:SA:CTP9166,Europe/Paris,,OIA, +OIA:SP:9167,1,"La Rivoire",45.561856,5.283221,0,0,O38:SA:CTP9166,Europe/Paris,,OIA, +OIA:SP:9171,1,"Colombier",45.548834,5.223599,0,0,OIA:SA:CTP9171,Europe/Paris,,OIA, +OIA:SP:9173,1,"Place",45.548905,5.223611,0,0,OIA:SA:CTP192,Europe/Paris,,OIA, +OIA:SP:9175,1,"Ecole",45.547231,5.224144,0,0,OIA:SA:CTP9175,Europe/Paris,,OIA, +OIA:SP:9182,1,"La Barre",45.55661,5.280429,0,0,OIA:SA:CTP9182,Europe/Paris,,OIA, +OIA:SP:9184,1,"La Barre",45.556645,5.280339,0,0,OIA:SA:CTP9182,Europe/Paris,,OIA, +OIA:SP:9200,1,"Le Grand Paleysin",45.558606,5.252161,0,0,O38:SA:CTP9201,Europe/Paris,,OIA, +OIA:SP:9202,1,"Le Grand Paleysin",45.55859,5.252172,0,0,O38:SA:CTP9201,Europe/Paris,,OIA, +OIA:SP:9208,1,"Chèzeneuve Place",45.561634,5.222171,0,0,O38:SA:CTP9209,Europe/Paris,,OIA, +OIA:SP:9210,1,"Chèzeneuve Place",45.561796,5.222641,0,0,O38:SA:CTP9209,Europe/Paris,,OIA, +OIA:SP:9212,1,"Le Petit Paleysin",45.557674,5.247576,0,0,O38:SA:CTP9213,Europe/Paris,,OIA, +OIA:SP:9214,1,"Le Petit Paleysin",45.557744,5.247555,0,0,O38:SA:CTP9213,Europe/Paris,,OIA, +OIA:SP:9216,1,"Verrieres",45.533248,5.276593,0,0,OIA:SA:CTP9216,Europe/Paris,,OIA, +OIA:SP:9218,1,"Verrieres",45.533186,5.276646,0,0,OIA:SA:CTP9216,Europe/Paris,,OIA, +OIA:SP:9220,1,"Le Berthon",45.53965,5.28548,0,0,OIA:SA:CTP9220,Europe/Paris,,OIA, +OIA:SP:9222,1,"Le Berthon",45.539719,5.285509,0,0,OIA:SA:CTP9220,Europe/Paris,,OIA, +OIA:SP:9227,1,"Ecole",45.562797,5.223466,0,0,OIA:SA:CTP9227,Europe/Paris,,OIA, +OIA:SP:9242,1,"Cimetiere",45.551336,5.233973,0,0,OIA:SA:CTP9242,Europe/Paris,,OIA, +OIA:SP:9244,1,"Chaletout",45.546191,5.282171,0,0,OIA:SA:CTP9244,Europe/Paris,,OIA, +OIA:SP:9247,1,"Meyrié Mairie",45.558718,5.286733,0,0,O38:SA:CTP9248,Europe/Paris,,OIA, +OIA:SP:9249,1,"Meyrié Mairie",45.558757,5.286835,0,0,O38:SA:CTP9248,Europe/Paris,,OIA, +OIA:SP:9251,1,"Les Revilles",45.539591,5.297071,0,0,OIA:SA:CTP9251,Europe/Paris,,OIA, +OIA:SP:9254,1,"Les Eparres Bourg",45.532788,5.291909,0,0,OIA:SA:CTP9254,Europe/Paris,,OIA, +OIA:SP:9261,1,"La Combe-Rn.85",45.531636,5.308009,0,0,O38:SA:CTP9262,Europe/Paris,,OIA, +OIA:SP:9263,1,"La Combe-Rn.85",45.532466,5.308297,0,0,O38:SA:CTP9262,Europe/Paris,,OIA, +OIA:SP:9265,1,"L'Orme",45.541179,5.305546,0,0,OIA:SA:CTP9265,Europe/Paris,,OIA, +OIA:SP:9267,1,"L'Orme",45.541156,5.305449,0,0,OIA:SA:CTP9265,Europe/Paris,,OIA, +OIA:SP:9270,1,"Ecole La Combe",45.532681,5.30787,0,0,OIA:SA:CTP9270,Europe/Paris,,OIA, +OIA:SP:9274,1,"Vers Nivolas",45.558843,5.290719,0,0,OIA:SA:CTP9274,Europe/Paris,,OIA, +OIA:SP:9275,1,"Vers Nivolas",45.559568,5.293663,0,0,OIA:SA:CTP9274,Europe/Paris,,OIA, +OIA:SP:9277,1,"Route De Biol",45.538991,5.310156,0,0,O38:SA:CTP9276,Europe/Paris,,OIA, +OIA:SP:9279,1,"Route De Biol",45.540628,5.310259,0,0,O38:SA:CTP9276,Europe/Paris,,OIA, +OIA:SP:9281,1,"Le Zeret",45.534541,5.288628,0,0,OIA:SA:CTP9281,Europe/Paris,,OIA, +OIA:SP:9283,1,"Les Rivoires",45.53598,5.301199,0,0,OIA:SA:CTP9283,Europe/Paris,,OIA, +OIA:SP:9285,1,"Les Rivoires",45.535995,5.301181,0,0,OIA:SA:CTP9283,Europe/Paris,,OIA, +OIA:SP:9289,1,"Voland/Pachaudiere",45.51938,5.304795,0,0,O38:SA:CTP9290,Europe/Paris,,OIA, +OIA:SP:9291,1,"Voland/Pachaudiere",45.51938,5.304795,0,0,O38:SA:CTP9290,Europe/Paris,,OIA, +OIA:SP:9293,1,"Les Eynards",45.53907,5.289008,0,0,OIA:SA:CTP9293,Europe/Paris,,OIA, +OIA:SP:9295,1,"Les Eynards",45.539001,5.288978,0,0,OIA:SA:CTP9293,Europe/Paris,,OIA, +OIA:SP:9297,1,"Les Moirouds",45.557905,5.337987,0,0,O38:SA:CTP9298,Europe/Paris,,OIA, +OIA:SP:9299,1,"Les Moirouds",45.558237,5.336691,0,0,O38:SA:CTP9298,Europe/Paris,,OIA, +OIA:SP:9301,1,"Nivolas - La Place",45.556842,5.306447,0,0,O38:SA:CTP9302,Europe/Paris,,OIA, +OIA:SP:9303,1,"Nivolas - La Place",45.556746,5.305177,0,0,O38:SA:CTP9302,Europe/Paris,,OIA, +OIA:SP:9305,1,"Bas Vermelle",45.560193,5.304211,0,0,OIA:SA:CTP9305,Europe/Paris,,OIA, +OIA:SP:9307,1,"Bas Vermelle",45.558886,5.304649,0,0,OIA:SA:CTP9305,Europe/Paris,,OIA, +OIA:SP:9309,1,"Lycee St Marc",45.560193,5.304211,0,0,OIA:SA:CTP9309,Europe/Paris,,OIA, +OIA:SP:9310,1,"Serezin Place",45.557687,5.343526,0,0,O38:SA:CTP9311,Europe/Paris,,OIA, +OIA:SP:9312,1,"Serezin Place",45.557749,5.343707,0,0,O38:SA:CTP9311,Europe/Paris,,OIA, +OIA:SP:9324,1,"Les Curtets",45.549727,5.308951,0,0,OIA:SA:CTP9324,Europe/Paris,,OIA, +OIA:SP:9326,1,"Les Curtets",45.551744,5.307139,0,0,OIA:SA:CTP9326,Europe/Paris,,OIA, +OIA:SP:9328,1,"Us.Voisin Pascal",45.546939,5.309922,0,0,O38:SA:CTP9329,Europe/Paris,,OIA, +OIA:SP:9330,1,"Us.Voisin Pascal",45.54696,5.310019,0,0,O38:SA:CTP9329,Europe/Paris,,OIA, +OIA:SP:9332,1,"Place",45.52866,5.339035,0,0,OIA:SA:CTP9332,Europe/Paris,,OIA, +OIA:SP:9334,1,"Place",45.528589,5.339027,0,0,OIA:SA:CTP9332,Europe/Paris,,OIA, +OIA:SP:9848,1,"Collège Sonia Delaunay",45.603858,5.148796,0,0,O38:SA:CTP9849,Europe/Paris,,OIA, +OIA:SP:9850,1,"Collège Sonia Delaunay",45.603799,5.148857,0,0,O38:SA:CTP9849,Europe/Paris,,OIA, +OIA:SP:9852,1,"Servenoble",45.607392,5.148214,0,0,OIA:SA:CTP9852,Europe/Paris,,OIA, +OIA:SP:9863,1,"Les Fougères",45.603449,5.169277,0,0,OIA:SA:CTP9863,Europe/Paris,,OIA, +OIA:SP:9865,1,"Les Fougères",45.603947,5.168789,0,0,OIA:SA:CTP9863,Europe/Paris,,OIA, +OIA:SP:9871,1,"Le Moulin",45.588147,5.194673,0,0,OIA:SA:CTP9871,Europe/Paris,,OIA, +OIA:SP:9873,1,"Le Moulin",45.588147,5.194673,0,0,OIA:SA:CTP9871,Europe/Paris,,OIA, +OIA:SP:9875,1,"Les Mollettes",45.5713,5.187404,0,0,O38:SA:CTP9874,Europe/Paris,,OIA, +OIA:SP:9877,1,"Les Mollettes",45.5713,5.187404,0,0,O38:SA:CTP9874,Europe/Paris,,OIA, +OIA:SP:9885,1,"La Croix",45.594417,5.219153,0,0,OIA:SA:CTP122,Europe/Paris,,OIA, +OIA:SP:9890,1,"St Bonnet Centre",45.608896,5.156781,0,0,O38:SA:CTP9891,Europe/Paris,,OIA, +OIA:SP:9892,1,"St Bonnet Centre",45.608926,5.157373,0,0,O38:SA:CTP9891,Europe/Paris,,OIA, +OIA:SP:9894,1,"St Bonnet Centre",45.608926,5.157373,0,0,O38:SA:CTP9891,Europe/Paris,,OIA, +OIA:SP:9895,1,"St Bonnet Centre",45.608909,5.156974,0,0,O38:SA:CTP9891,Europe/Paris,,OIA, +OIA:SP:9896,1,"St Bonnet Centre",45.608896,5.156781,0,0,O38:SA:CTP9891,Europe/Paris,,OIA, +OIA:SP:9898,1,"Greenland",45.61125,5.17193,0,0,OIA:SA:CTP9898,Europe/Paris,,OIA, +OIA:SP:9900,1,"Greenland",45.6111,5.17167,0,0,OIA:SA:CTP9898,Europe/Paris,,OIA, +OIA:SP:9901,1,"Greenland",45.612349,5.171898,0,0,OIA:SA:CTP9898,Europe/Paris,,OIA, +OIA:SP:9902,1,"Greenland",45.612683,5.172211,0,0,OIA:SA:CTP9898,Europe/Paris,,OIA, +OIA:SP:9904,1,"Médicis - Gare Sncf",45.584742,5.275832,0,0,OIA:SA:CTP9904,Europe/Paris,,OIA, +OIA:SP:9908,1,"St Alban-De-Roche - Le Village",45.594999,5.223145,0,0,O38:SA:CTP9909,Europe/Paris,,OIA, +OIA:SP:9910,1,"St Alban-De-Roche - Le Village",45.595505,5.223631,0,0,O38:SA:CTP9909,Europe/Paris,,OIA, +OIA:SP:9912,1,"Espace Barbusse",45.596269,5.26848,0,0,O38:SA:CTP9913,Europe/Paris,,OIA, +OIA:SP:9914,1,"Espace Barbusse",45.59637,5.26872,0,0,O38:SA:CTP9913,Europe/Paris,,OIA, +OIA:SP:9916,1,"Alsace Lorraine",45.585692,5.270455,0,0,OIA:SA:CTP189,Europe/Paris,,OIA, +OIA:SP:9918,1,"Edouard Marion",45.586837,5.27075,0,0,OIA:SA:CTP9918,Europe/Paris,,OIA, +OIA:SP:9919,1,"Edouard Marion",45.586299,5.27082,0,0,OIA:SA:CTP9918,Europe/Paris,,OIA, +OIA:SP:9921,1,"Folatière",45.58923,5.28123,0,0,OIA:SA:CTP9921,Europe/Paris,,OIA, +OIA:SP:9924,1,"Folatière",45.58917,5.28097,0,0,OIA:SA:CTP9921,Europe/Paris,,OIA, +OIA:SP:9928,1,"Médicis - Gare Sncf",45.584946,5.275149,0,0,OIA:SA:CTP9904,Europe/Paris,,OIA, +OIA:SP:9930,1,"Poste Gambetta",45.58632,5.2732,0,0,O38:SA:CTP9931,Europe/Paris,,OIA, +OIA:SP:9932,1,"Poste Gambetta",45.58633,5.27308,0,0,O38:SA:CTP9931,Europe/Paris,,OIA, +OIA:SP:9934,1,"Espinassays",45.588003,5.246332,0,0,OIA:SA:CTP9934,Europe/Paris,,OIA, +OIA:SP:9936,1,"Montjay",45.588027,5.246235,0,0,OIA:SA:CTP9936,Europe/Paris,,OIA, +OIA:SP:9938,1,"Papillons",45.586344,5.255261,0,0,OIA:SA:CTP9938,Europe/Paris,,OIA, +OIA:SP:9940,1,"Les Grands Tournants",45.566243,5.283364,0,0,O38:SA:CTP9941,Europe/Paris,,OIA, +OIA:SP:9942,1,"Les Grands Tournants",45.566241,5.282982,0,0,O38:SA:CTP9941,Europe/Paris,,OIA, +OIA:SP:9944,1,"Le Sadiau",45.568046,5.265297,0,0,OIA:SA:CTP9944,Europe/Paris,,OIA, +OIA:SP:9946,1,"Le Sadiau",45.568591,5.266116,0,0,OIA:SA:CTP9944,Europe/Paris,,OIA, +OIA:SP:9948,1,"Gare",45.583948,5.272394,0,0,O38:SA:CTP9949,Europe/Paris,,OIA, +OIA:SP:9950,1,"Jardin De Ville",45.582,5.27437,0,0,OIA:SA:CTP9950,Europe/Paris,,OIA, +OIA:SP:9953,1,"Lycée",45.587947,5.272992,0,0,OIA:SA:CTP9953,Europe/Paris,,OIA, +OIA:SP:9955,1,"Lycée",45.588381,5.272938,0,0,OIA:SA:CTP9953,Europe/Paris,,OIA, +OIA:SP:9960,1,"La Grive",45.599146,5.231549,0,0,OIA:SA:CTP9960,Europe/Paris,,OIA, +OIA:SP:9962,1,"La Grive",45.600393,5.231037,0,0,OIA:SA:CTP9960,Europe/Paris,,OIA, +OIA:SP:9964,1,"Chantereine",45.60482,5.27025,0,0,OIA:SA:CTP9964,Europe/Paris,,OIA, +OIA:SP:9966,1,"Chantereine",45.60477,5.27017,0,0,OIA:SA:CTP9964,Europe/Paris,,OIA, +OIA:SP:9968,1,"Stade Chantereine",45.602194,5.265593,0,0,O38:SA:CTP9965,Europe/Paris,,OIA, +OIA:SP:9969,1,"Stade Chantereine",45.602242,5.265531,0,0,O38:SA:CTP9965,Europe/Paris,,OIA, +OIA:SP:9971,1,"Pont St Michel",45.589364,5.277324,0,0,O38:SA:CTP9970,Europe/Paris,,OIA, +OIA:SP:9973,1,"Pont St Michel",45.589316,5.276398,0,0,O38:SA:CTP9970,Europe/Paris,,OIA, +OIA:SP:9975,1,"Barbusse",45.592527,5.270316,0,0,OIA:SA:CTP9975,Europe/Paris,,OIA, +OIA:SP:9976,1,"Vaucanson",45.592826,5.27061,0,0,OIA:SA:CTP9976,Europe/Paris,,OIA, +OIA:SP:9978,1,"La Combe Usine",45.570063,5.279521,0,0,OIA:SA:CTP9978,Europe/Paris,,OIA, +OIA:SP:9980,1,"La Combe Usine",45.573513,5.277853,0,0,OIA:SA:CTP9980,Europe/Paris,,OIA, +OIA:SP:9982,1,"Le Besson",45.566204,5.26081,0,0,O38:SA:CTP9981,Europe/Paris,,OIA, +OIA:SP:9984,1,"Le Besson",45.566137,5.260845,0,0,O38:SA:CTP9981,Europe/Paris,,OIA, +OIA:SP:9989,1,"H.L.M",45.5758,5.276652,0,0,O38:SA:CTP9986,Europe/Paris,,OIA, +OIA:SP:9990,1,"H.L.M",45.576095,5.276432,0,0,O38:SA:CTP9986,Europe/Paris,,OIA, +OIA:SP:9992,1,"Ladrière",45.589577,5.245741,0,0,OIA:SA:CTP9992,Europe/Paris,,OIA, +OIA:SP:9995,1,"Le Bournay",45.56441,5.229157,0,0,O38:SA:CTP9996,Europe/Paris,,OIA, +OIA:SP:9997,1,"Le Bournay",45.564719,5.230633,0,0,O38:SA:CTP9996,Europe/Paris,,OIA, +OIA:SP:9999,1,"Champfort",45.613368,5.289668,0,0,OIA:SA:CTP9999,Europe/Paris,,OIA, +OIV:SP:101980,1,"PONT DE SAINT ROMAIN",45.527242,4.873068,0,0,OIV:SA:CTP13978,Europe/Paris,,OIV, +OIV:SP:102994,1,"LA VIEILLE DARTAMAS",45.504326,4.904001,0,0,OIV:SA:CTP102994,Europe/Paris,,OIV, +OIV:SP:102995,1,"CHEMIN DES LIESSES",45.491514,4.905903,0,0,OIV:SA:CTP102995,Europe/Paris,,OIV, +OIV:SP:102996,1,"LOT.LA DARTAMAS LE B",45.509503,4.899036,0,0,OIV:SA:CTP102996,Europe/Paris,,OIV, +OIV:SP:102997,1,"CHEMIN DES LIESSES",45.491115,4.905657,0,0,OIV:SA:CTP102995,Europe/Paris,,OIV, +OIV:SP:102998,1,"LOT.LA DARTAMAS LE B",45.509685,4.898671,0,0,OIV:SA:CTP102996,Europe/Paris,,OIV, +OIV:SP:102999,1,"LA VIEILLE DARTAMAS",45.504458,4.903976,0,0,OIV:SA:CTP102994,Europe/Paris,,OIV, +OIV:SP:103000,1,"SAINT AVOUR",45.502629,4.852656,0,0,OIV:SA:CTP103000,Europe/Paris,,OIV, +OIV:SP:103001,1,"SAINT AVOUR",45.502708,4.852911,0,0,OIV:SA:CTP103000,Europe/Paris,,OIV, +OIV:SP:103002,1,"SAINT IGNACE SCOLAIR",45.515388,4.908457,0,0,OIV:SA:CTP103002,Europe/Paris,,OIV, +OIV:SP:103003,1,"LE TRENTE",45.512421,4.864941,0,0,OIV:SA:CTP103003,Europe/Paris,,OIV, +OIV:SP:103004,1,"LE TRENTE",45.512388,4.865041,0,0,OIV:SA:CTP103003,Europe/Paris,,OIV, +OIV:SP:103005,1,"COLL BRASSENS PARKIN",45.528285,4.925983,0,0,OIV:SA:CTP103005,Europe/Paris,,OIV, +OIV:SP:103006,1,"MILLE CLUBS",45.511138,5.015986,0,0,OIV:SA:CTP103006,Europe/Paris,,OIV, +OIV:SP:103008,1,"CENTRE COMMERCIAL ES",45.573987,4.811586,0,0,OIV:SA:CTP15443,Europe/Paris,,OIV, +OIV:SP:103227,1,"LA ROLANDIERE",45.593307,4.994555,0,0,OIV:SA:CTP103227,Europe/Paris,,OIV, +OIV:SP:103229,1,"LE FANTON",45.50757,4.995942,0,0,OIV:SA:CTP103229,Europe/Paris,,OIV, +OIV:SP:103288,1,"LE STADE",45.613032,5.022276,0,0,OIV:SA:CTP103288,Europe/Paris,,OIV, +OIV:SP:103316,1,"ZI L ABBAYE VULCO",45.519465,4.922494,0,0,OIV:SA:CTP103316,Europe/Paris,,OIV, +OIV:SP:12054,1,"Z.A. DE MONPLAISIR",45.525049,4.921961,0,0,OIV:SA:CTP12054,Europe/Paris,,OIV, +OIV:SP:12056,1,"Z.A. DE MONPLAISIR",45.525072,4.922276,0,0,OIV:SA:CTP12054,Europe/Paris,,OIV, +OIV:SP:13249,1,"CHAMBRE DE METIERS",45.518643,4.919914,0,0,OIV:SA:CTP13249,Europe/Paris,,OIV, +OIV:SP:13251,1,"TEMPLE DE CYBELE",45.524747,4.876963,0,0,OIV:SA:CTP13251,Europe/Paris,,OIV, +OIV:SP:13253,1,"TEMPLE DE CYBELE",45.524505,4.876903,0,0,OIV:SA:CTP13251,Europe/Paris,,OIV, +OIV:SP:13255,1,"LES CELESTES",45.524157,4.878043,0,0,OIV:SA:CTP13255,Europe/Paris,,OIV, +OIV:SP:13352,1,"ZA CALOR",45.524306,4.920397,0,0,OIV:SA:CTP13352,Europe/Paris,,OIV, +OIV:SP:13354,1,"FREREJEAN",45.523986,4.919308,0,0,OIV:SA:CTP13354,Europe/Paris,,OIV, +OIV:SP:13355,1,"FREREJEAN",45.52401,4.919466,0,0,OIV:SA:CTP13354,Europe/Paris,,OIV, +OIV:SP:13356,1,"ZA CALOR",45.524178,4.920262,0,0,OIV:SA:CTP13352,Europe/Paris,,OIV, +OIV:SP:13491,1,"LOT CHATAIGNIERS",45.456388,4.9341,0,0,OIV:SA:CTP13491,Europe/Paris,,OIV, +OIV:SP:13492,1,"LOT CHATAIGNIERS",45.456386,4.934178,0,0,OIV:SA:CTP13491,Europe/Paris,,OIV, +OIV:SP:13493,1,"CHALON MAIRIE",45.445583,4.93117,0,0,OIV:SA:CTP13493,Europe/Paris,,OIV, +OIV:SP:13495,1,"AV. F. MITTERRAND",45.583214,4.797678,0,0,OIV:SA:CTP13495,Europe/Paris,,OIV, +OIV:SP:13496,1,"AV. F. MITTERRAND",45.583211,4.797913,0,0,OIV:SA:CTP13495,Europe/Paris,,OIV, +OIV:SP:13500,1,"BARBIERES 19 MARS",45.585535,4.798076,0,0,OIV:SA:CTP13500,Europe/Paris,,OIV, +OIV:SP:13502,1,"BARBIERES MENDES FRA",45.584327,4.795982,0,0,OIV:SA:CTP13502,Europe/Paris,,OIV, +OIV:SP:13503,1,"BOUCHARD TREMBAS",45.578469,4.827857,0,0,OIV:SA:CTP13503,Europe/Paris,,OIV, +OIV:SP:13504,1,"BOUCHARD TREMBAS",45.578447,4.82795,0,0,OIV:SA:CTP13503,Europe/Paris,,OIV, +OIV:SP:13505,1,"CENTRE COMMERCIAL DE",45.575834,4.810674,0,0,OIV:SA:CTP13505,Europe/Paris,,OIV, +OIV:SP:13506,1,"CENTRE COMMERCIAL DE",45.575764,4.810618,0,0,OIV:SA:CTP13505,Europe/Paris,,OIV, +OIV:SP:13507,1,"CHARNEVAUX FAURE",45.585475,4.789908,0,0,OIV:SA:CTP13507,Europe/Paris,,OIV, +OIV:SP:13508,1,"CHARNEVAUX FAURE",45.585606,4.789876,0,0,OIV:SA:CTP13507,Europe/Paris,,OIV, +OIV:SP:13511,1,"CIMETIERE DE CHASSE",45.58375,4.802882,0,0,OIV:SA:CTP13511,Europe/Paris,,OIV, +OIV:SP:13512,1,"CIMETIERE DE CHASSE",45.583954,4.802801,0,0,OIV:SA:CTP13511,Europe/Paris,,OIV, +OIV:SP:13513,1,"CITE BERQUET",45.583513,4.791621,0,0,OIV:SA:CTP13513,Europe/Paris,,OIV, +OIV:SP:13514,1,"CITE BERQUET",45.585038,4.790855,0,0,OIV:SA:CTP13513,Europe/Paris,,OIV, +OIV:SP:13515,1,"ECOLE PRIMAIRE CHASS",45.580183,4.805271,0,0,OIV:SA:CTP13515,Europe/Paris,,OIV, +OIV:SP:13516,1,"ECOLE PRIMAIRE CHASS",45.580145,4.805332,0,0,OIV:SA:CTP13515,Europe/Paris,,OIV, +OIV:SP:13517,1,"GENDARMERIE",45.573323,4.81518,0,0,OIV:SA:CTP13517,Europe/Paris,,OIV, +OIV:SP:13518,1,"GENDARMERIE",45.57367,4.814473,0,0,OIV:SA:CTP13517,Europe/Paris,,OIV, +OIV:SP:13519,1,"LE LOT SOULINS",45.583401,4.811551,0,0,OIV:SA:CTP13519,Europe/Paris,,OIV, +OIV:SP:13520,1,"LE LOT SOULINS",45.583327,4.811516,0,0,OIV:SA:CTP13519,Europe/Paris,,OIV, +OIV:SP:13521,1,"LE MOULIN",45.569897,4.818879,0,0,OIV:SA:CTP13521,Europe/Paris,,OIV, +OIV:SP:13522,1,"LE MOULIN",45.569806,4.819098,0,0,OIV:SA:CTP13521,Europe/Paris,,OIV, +OIV:SP:13523,1,"LES 4 VENTS",45.58299,4.819898,0,0,OIV:SA:CTP13523,Europe/Paris,,OIV, +OIV:SP:13524,1,"LES 4 VENTS",45.582962,4.819784,0,0,OIV:SA:CTP13523,Europe/Paris,,OIV, +OIV:SP:13525,1,"LES ESPINASSES",45.583339,4.797804,0,0,OIV:SA:CTP13525,Europe/Paris,,OIV, +OIV:SP:13526,1,"LES ESPINASSES",45.583115,4.797989,0,0,OIV:SA:CTP13525,Europe/Paris,,OIV, +OIV:SP:13527,1,"CHASSE MAIRIE",45.578551,4.808029,0,0,OIV:SA:CTP13527,Europe/Paris,,OIV, +OIV:SP:13528,1,"CHASSE MAIRIE",45.578595,4.808111,0,0,OIV:SA:CTP13527,Europe/Paris,,OIV, +OIV:SP:13529,1,"PLACE JULES FERRY",45.580227,4.805621,0,0,OIV:SA:CTP13529,Europe/Paris,,OIV, +OIV:SP:13530,1,"PLACE JULES FERRY",45.580079,4.805934,0,0,OIV:SA:CTP13529,Europe/Paris,,OIV, +OIV:SP:13531,1,"QUARTIER CHATEAU",45.582436,4.798954,0,0,OIV:SA:CTP13531,Europe/Paris,,OIV, +OIV:SP:13532,1,"QUARTIER CHATEAU",45.582499,4.798935,0,0,OIV:SA:CTP13531,Europe/Paris,,OIV, +OIV:SP:13533,1,"QUARTIER GARE",45.581299,4.793895,0,0,OIV:SA:CTP13533,Europe/Paris,,OIV, +OIV:SP:13534,1,"QUARTIER GARE",45.581811,4.79526,0,0,OIV:SA:CTP13533,Europe/Paris,,OIV, +OIV:SP:13535,1,"QUARTIER RHONE",45.577467,4.798666,0,0,OIV:SA:CTP13535,Europe/Paris,,OIV, +OIV:SP:13536,1,"QUARTIER RHONE",45.577341,4.798664,0,0,OIV:SA:CTP13535,Europe/Paris,,OIV, +OIV:SP:13537,1,"ROND POINT DE FLEVIE",45.586894,4.787263,0,0,OIV:SA:CTP13537,Europe/Paris,,OIV, +OIV:SP:13538,1,"ROND POINT DE FLEVIE",45.587031,4.78701,0,0,OIV:SA:CTP13537,Europe/Paris,,OIV, +OIV:SP:13539,1,"SAINT MARTIN",45.582706,4.813542,0,0,OIV:SA:CTP13539,Europe/Paris,,OIV, +OIV:SP:13540,1,"SAINT MARTIN",45.58264,4.813317,0,0,OIV:SA:CTP13539,Europe/Paris,,OIV, +OIV:SP:13545,1,"ALPES",45.428285,4.847274,0,0,OIV:SA:CTP13545,Europe/Paris,,OIV, +OIV:SP:13546,1,"ALPES",45.428167,4.847237,0,0,OIV:SA:CTP13545,Europe/Paris,,OIV, +OIV:SP:13547,1,"LE BESON",45.422458,4.834266,0,0,OIV:SA:CTP13547,Europe/Paris,,OIV, +OIV:SP:13548,1,"LE BESON",45.422439,4.834378,0,0,OIV:SA:CTP13547,Europe/Paris,,OIV, +OIV:SP:13549,1,"AUBERGE LA VALLEE",45.553204,4.874302,0,0,OIV:SA:CTP13549,Europe/Paris,,OIV, +OIV:SP:13550,1,"AUBERGE LA VALLEE",45.553102,4.874207,0,0,OIV:SA:CTP13549,Europe/Paris,,OIV, +OIV:SP:13551,1,"ECOLE",45.585052,4.878476,0,0,OIV:SA:CTP13551,Europe/Paris,,OIV, +OIV:SP:13552,1,"ECOLE",45.584355,4.87739,0,0,OIV:SA:CTP13551,Europe/Paris,,OIV, +OIV:SP:13553,1,"GARAGE",45.576773,4.880105,0,0,OIV:SA:CTP13553,Europe/Paris,,OIV, +OIV:SP:13554,1,"GARAGE",45.576857,4.880257,0,0,OIV:SA:CTP13553,Europe/Paris,,OIV, +OIV:SP:13556,1,"LA BOUSSOLE",45.568017,4.861769,0,0,OIV:SA:CTP13556,Europe/Paris,,OIV, +OIV:SP:13557,1,"LA BOUSSOLE RN7",45.566445,4.858397,0,0,OIV:SA:CTP13557,Europe/Paris,,OIV, +OIV:SP:13558,1,"LA BOUSSOLE RN7",45.566405,4.85823,0,0,OIV:SA:CTP13557,Europe/Paris,,OIV, +OIV:SP:13559,1,"LA TOURMENTE",45.583546,4.885372,0,0,OIV:SA:CTP13559,Europe/Paris,,OIV, +OIV:SP:13560,1,"LA TOURMENTE",45.58376,4.885184,0,0,OIV:SA:CTP13559,Europe/Paris,,OIV, +OIV:SP:13561,1,"LE BOIRON",45.581817,4.878923,0,0,OIV:SA:CTP13561,Europe/Paris,,OIV, +OIV:SP:13562,1,"LE BOIRON",45.581736,4.879052,0,0,OIV:SA:CTP13561,Europe/Paris,,OIV, +OIV:SP:13564,1,"LE GRUYERE",45.569511,4.872625,0,0,OIV:SA:CTP13564,Europe/Paris,,OIV, +OIV:SP:13566,1,"LES PINS GARAGE MOTO",45.582204,4.859335,0,0,OIV:SA:CTP13566,Europe/Paris,,OIV, +OIV:SP:13567,1,"LES PINS RESTAURANT",45.578793,4.857799,0,0,OIV:SA:CTP13567,Europe/Paris,,OIV, +OIV:SP:13568,1,"LES PINS RESTAURANT",45.578873,4.857893,0,0,OIV:SA:CTP13567,Europe/Paris,,OIV, +OIV:SP:13569,1,"LES PINS CORNAVAN",45.583329,4.85969,0,0,OIV:SA:CTP13569,Europe/Paris,,OIV, +OIV:SP:13570,1,"LES PINS CORNAVAN",45.583283,4.859588,0,0,OIV:SA:CTP13569,Europe/Paris,,OIV, +OIV:SP:13571,1,"LES SERPAIZIERES",45.570229,4.878517,0,0,OIV:SA:CTP13571,Europe/Paris,,OIV, +OIV:SP:13572,1,"LES SERPAIZIERES",45.570043,4.878592,0,0,OIV:SA:CTP13571,Europe/Paris,,OIV, +OIV:SP:13573,1,"MOULIN LEVEAU LOT",45.564686,4.870492,0,0,OIV:SA:CTP13573,Europe/Paris,,OIV, +OIV:SP:13574,1,"MOULIN LEVEAU LOT",45.564692,4.870225,0,0,OIV:SA:CTP13573,Europe/Paris,,OIV, +OIV:SP:13575,1,"PAUPHILE I",45.562315,4.861251,0,0,OIV:SA:CTP13575,Europe/Paris,,OIV, +OIV:SP:13576,1,"PAUPHILE I",45.56232,4.861319,0,0,OIV:SA:CTP13575,Europe/Paris,,OIV, +OIV:SP:13577,1,"PAUPHILE II",45.560939,4.861319,0,0,OIV:SA:CTP13577,Europe/Paris,,OIV, +OIV:SP:13578,1,"PAUPHILE II",45.560934,4.861394,0,0,OIV:SA:CTP13577,Europe/Paris,,OIV, +OIV:SP:13579,1,"PAUPHILE RN7",45.564347,4.859317,0,0,OIV:SA:CTP13579,Europe/Paris,,OIV, +OIV:SP:13580,1,"PAUPHILE RN7",45.564434,4.859213,0,0,OIV:SA:CTP13579,Europe/Paris,,OIV, +OIV:SP:13581,1,"PLACE",45.585578,4.878639,0,0,OIV:SA:CTP13581,Europe/Paris,,OIV, +OIV:SP:13582,1,"PLACE",45.585244,4.878187,0,0,OIV:SA:CTP13581,Europe/Paris,,OIV, +OIV:SP:13584,1,"THIERS",45.570194,4.869521,0,0,OIV:SA:CTP13584,Europe/Paris,,OIV, +OIV:SP:13585,1,"COTES D AREY BOURG",45.456664,4.868039,0,0,OIV:SA:CTP13585,Europe/Paris,,OIV, +OIV:SP:13586,1,"COTES D AREY BOURG",45.456667,4.868112,0,0,OIV:SA:CTP13585,Europe/Paris,,OIV, +OIV:SP:13587,1,"CABINET DENTAIRE",45.454674,4.866329,0,0,OIV:SA:CTP13587,Europe/Paris,,OIV, +OIV:SP:13588,1,"COTES D AREY CHATEAU",45.45572,4.859448,0,0,OIV:SA:CTP13588,Europe/Paris,,OIV, +OIV:SP:13589,1,"COTES D AREY CHATEAU",45.455744,4.858789,0,0,OIV:SA:CTP13588,Europe/Paris,,OIV, +OIV:SP:13590,1,"SAR SUZON",45.450854,4.871366,0,0,OIV:SA:CTP13590,Europe/Paris,,OIV, +OIV:SP:13591,1,"SAR SUZON",45.450891,4.871264,0,0,OIV:SA:CTP13590,Europe/Paris,,OIV, +OIV:SP:13592,1,"AIGUEBELLE",45.505436,4.940226,0,0,OIV:SA:CTP13592,Europe/Paris,,OIV, +OIV:SP:13593,1,"AIGUEBELLE",45.505319,4.940258,0,0,OIV:SA:CTP13592,Europe/Paris,,OIV, +OIV:SP:13594,1,"VILLAGE",45.516618,4.965445,0,0,OIV:SA:CTP13594,Europe/Paris,,OIV, +OIV:SP:13595,1,"VILLAGE",45.516674,4.964436,0,0,OIV:SA:CTP13594,Europe/Paris,,OIV, +OIV:SP:13597,1,"CHATEAU PLANTIER",45.498103,4.95468,0,0,OIV:SA:CTP13597,Europe/Paris,,OIV, +OIV:SP:13598,1,"CHAUMONT CARREFOUR",45.502377,4.973251,0,0,OIV:SA:CTP13598,Europe/Paris,,OIV, +OIV:SP:13599,1,"CHAUMONT CARREFOUR",45.50244,4.973683,0,0,OIV:SA:CTP13598,Europe/Paris,,OIV, +OIV:SP:13600,1,"CHEZ MEUNIER",45.509788,4.925085,0,0,OIV:SA:CTP13600,Europe/Paris,,OIV, +OIV:SP:13608,1,"ECOLE MATERNELLE EST",45.515921,4.962653,0,0,OIV:SA:CTP13608,Europe/Paris,,OIV, +OIV:SP:13609,1,"ECOLE MATERNELLE EST",45.515934,4.962654,0,0,OIV:SA:CTP13608,Europe/Paris,,OIV, +OIV:SP:13610,1,"ECOLE PRIMAIRE ESTRA",45.516794,4.962293,0,0,OIV:SA:CTP13610,Europe/Paris,,OIV, +OIV:SP:13612,1,"GEMENS",45.511684,4.927431,0,0,OIV:SA:CTP13612,Europe/Paris,,OIV, +OIV:SP:13613,1,"GEMENS",45.51052,4.927379,0,0,OIV:SA:CTP13612,Europe/Paris,,OIV, +OIV:SP:13616,1,"LA COUPE",45.499914,4.935229,0,0,OIV:SA:CTP13616,Europe/Paris,,OIV, +OIV:SP:13617,1,"LA COUPE",45.500003,4.935473,0,0,OIV:SA:CTP13616,Europe/Paris,,OIV, +OIV:SP:13618,1,"CRAZ LE SILO",45.509523,4.947127,0,0,OIV:SA:CTP13618,Europe/Paris,,OIV, +OIV:SP:13619,1,"CRAZ LE SILO",45.509415,4.947393,0,0,OIV:SA:CTP13618,Europe/Paris,,OIV, +OIV:SP:13620,1,"LE BERGUET",45.520252,4.925862,0,0,OIV:SA:CTP13620,Europe/Paris,,OIV, +OIV:SP:13621,1,"LE BERGUET",45.520445,4.925802,0,0,OIV:SA:CTP13620,Europe/Paris,,OIV, +OIV:SP:13622,1,"LE COMBAT",45.503343,4.981559,0,0,OIV:SA:CTP13622,Europe/Paris,,OIV, +OIV:SP:13623,1,"LE COMBAT",45.503298,4.981654,0,0,OIV:SA:CTP13622,Europe/Paris,,OIV, +OIV:SP:13624,1,"LE GRAND RUINAIS",45.50279,4.975745,0,0,OIV:SA:CTP13624,Europe/Paris,,OIV, +OIV:SP:13625,1,"LE GRAND RUINAIS",45.502854,4.975816,0,0,OIV:SA:CTP13624,Europe/Paris,,OIV, +OIV:SP:13626,1,"LE JANIN",45.501985,4.948064,0,0,OIV:SA:CTP13626,Europe/Paris,,OIV, +OIV:SP:13627,1,"LE JANIN",45.501929,4.948377,0,0,OIV:SA:CTP13626,Europe/Paris,,OIV, +OIV:SP:13630,1,"LE VIANNAIS",45.502345,4.967599,0,0,OIV:SA:CTP13630,Europe/Paris,,OIV, +OIV:SP:13631,1,"LE VIANNAIS",45.502367,4.967249,0,0,OIV:SA:CTP13630,Europe/Paris,,OIV, +OIV:SP:13632,1,"LES 4 VENTS",45.493278,4.942128,0,0,OIV:SA:CTP13632,Europe/Paris,,OIV, +OIV:SP:13633,1,"LES 4 VENTS",45.493276,4.941889,0,0,OIV:SA:CTP13632,Europe/Paris,,OIV, +OIV:SP:13634,1,"MAISON PUZIN JULIEN",45.504663,4.957386,0,0,OIV:SA:CTP13634,Europe/Paris,,OIV, +OIV:SP:13635,1,"MAISON PUZIN JULIEN",45.504626,4.957329,0,0,OIV:SA:CTP13634,Europe/Paris,,OIV, +OIV:SP:13636,1,"MAISON VINCENDON",45.508921,4.931235,0,0,OIV:SA:CTP13636,Europe/Paris,,OIV, +OIV:SP:13637,1,"MAISON VINCENDON",45.508902,4.931163,0,0,OIV:SA:CTP13636,Europe/Paris,,OIV, +OIV:SP:13638,1,"MAS DU GRAY",45.509191,4.973469,0,0,OIV:SA:CTP13638,Europe/Paris,,OIV, +OIV:SP:13639,1,"MAS DU GRAY",45.508885,4.97268,0,0,OIV:SA:CTP13638,Europe/Paris,,OIV, +OIV:SP:13640,1,"MERLIERE",45.512372,4.942384,0,0,OIV:SA:CTP13640,Europe/Paris,,OIV, +OIV:SP:13641,1,"MERLIERE",45.512238,4.942444,0,0,OIV:SA:CTP13640,Europe/Paris,,OIV, +OIV:SP:13642,1,"MEUNIER D538",45.504478,4.924863,0,0,OIV:SA:CTP13642,Europe/Paris,,OIV, +OIV:SP:13643,1,"MEUNIER D538",45.504256,4.925215,0,0,OIV:SA:CTP13642,Europe/Paris,,OIV, +OIV:SP:13645,1,"REPUBLIQUE",45.507598,4.978972,0,0,OIV:SA:CTP13645,Europe/Paris,,OIV, +OIV:SP:13646,1,"ROSIERE LES CEDRES",45.49058,4.94816,0,0,OIV:SA:CTP13646,Europe/Paris,,OIV, +OIV:SP:13647,1,"ROSIERE LES CEDRES",45.490701,4.947909,0,0,OIV:SA:CTP13646,Europe/Paris,,OIV, +OIV:SP:13648,1,"TABOURETTE CHALET",45.515607,4.940875,0,0,OIV:SA:CTP13648,Europe/Paris,,OIV, +OIV:SP:13649,1,"TABOURETTE CHALET",45.515331,4.940826,0,0,OIV:SA:CTP13648,Europe/Paris,,OIV, +OIV:SP:13651,1,"ZA DU ROCHER",45.51982,4.931515,0,0,OIV:SA:CTP13651,Europe/Paris,,OIV, +OIV:SP:13654,1,"CHAMBOUD ROUSSEL",45.485804,4.955126,0,0,OIV:SA:CTP13654,Europe/Paris,,OIV, +OIV:SP:13655,1,"CHAMBOUD ROUSSEL",45.485758,4.955233,0,0,OIV:SA:CTP13654,Europe/Paris,,OIV, +OIV:SP:13657,1,"CHANVILLARD",45.479391,4.99072,0,0,OIV:SA:CTP13657,Europe/Paris,,OIV, +OIV:SP:13660,1,"CHAUMONT TRANSFORMAT",45.499277,4.974218,0,0,OIV:SA:CTP13660,Europe/Paris,,OIV, +OIV:SP:13661,1,"CHAUMONT TRANSFORMAT",45.49928,4.974356,0,0,OIV:SA:CTP13660,Europe/Paris,,OIV, +OIV:SP:13662,1,"CHAUMONT VILLAGE",45.499136,4.98197,0,0,OIV:SA:CTP13662,Europe/Paris,,OIV, +OIV:SP:13663,1,"CHAUMONT VILLAGE",45.4991,4.982135,0,0,OIV:SA:CTP13662,Europe/Paris,,OIV, +OIV:SP:13664,1,"CHEZ DIDIER DUVERGER",45.48424,4.989105,0,0,OIV:SA:CTP13664,Europe/Paris,,OIV, +OIV:SP:13665,1,"CHEZ DIDIER DUVERGER",45.484241,4.989169,0,0,OIV:SA:CTP13664,Europe/Paris,,OIV, +OIV:SP:13666,1,"CHEZ DURIEUX",45.470423,5.021752,0,0,OIV:SA:CTP13666,Europe/Paris,,OIV, +OIV:SP:13667,1,"CHEZ DURIEUX",45.470517,5.022154,0,0,OIV:SA:CTP13666,Europe/Paris,,OIV, +OIV:SP:13668,1,"CHEZ DUVERGER VOISIN",45.485723,4.969133,0,0,OIV:SA:CTP13668,Europe/Paris,,OIV, +OIV:SP:13669,1,"CHEZ DUVERGER VOISIN",45.4857,4.969202,0,0,OIV:SA:CTP13668,Europe/Paris,,OIV, +OIV:SP:13670,1,"CHEZ THIBAUD",45.469817,5.03321,0,0,OIV:SA:CTP13670,Europe/Paris,,OIV, +OIV:SP:13671,1,"CHEZ THIBAUD",45.469841,5.033131,0,0,OIV:SA:CTP13670,Europe/Paris,,OIV, +OIV:SP:13672,1,"FERME RONJAT",45.484243,5.012451,0,0,OIV:SA:CTP13672,Europe/Paris,,OIV, +OIV:SP:13673,1,"FERME RONJAT",45.484382,5.012337,0,0,OIV:SA:CTP13672,Europe/Paris,,OIV, +OIV:SP:13674,1,"HAMEAU BAILLOUD",45.496504,4.963248,0,0,OIV:SA:CTP13674,Europe/Paris,,OIV, +OIV:SP:13675,1,"HAMEAU BAILLOUD",45.496501,4.963309,0,0,OIV:SA:CTP13674,Europe/Paris,,OIV, +OIV:SP:13676,1,"LA COMBE DE VAUX",45.46977,5.018769,0,0,OIV:SA:CTP13676,Europe/Paris,,OIV, +OIV:SP:13677,1,"LA COMBE DE VAUX",45.469847,5.018589,0,0,OIV:SA:CTP13676,Europe/Paris,,OIV, +OIV:SP:13679,1,"LA CROIX",45.490529,4.99746,0,0,OIV:SA:CTP13678,Europe/Paris,,OIV, +OIV:SP:13680,1,"LA GARDE",45.485131,4.999476,0,0,OIV:SA:CTP13680,Europe/Paris,,OIV, +OIV:SP:13681,1,"LA GARDE",45.485044,4.999638,0,0,OIV:SA:CTP13680,Europe/Paris,,OIV, +OIV:SP:13682,1,"LE BAILLOUD II",45.495214,4.963473,0,0,OIV:SA:CTP13682,Europe/Paris,,OIV, +OIV:SP:13683,1,"LE BAILLOUD II",45.495127,4.963482,0,0,OIV:SA:CTP13682,Europe/Paris,,OIV, +OIV:SP:13684,1,"LE BAILLOUD RD41",45.498178,4.961011,0,0,OIV:SA:CTP13684,Europe/Paris,,OIV, +OIV:SP:13685,1,"LE BAILLOUD RD41",45.498106,4.961411,0,0,OIV:SA:CTP13684,Europe/Paris,,OIV, +OIV:SP:13686,1,"LE BUSSIN",45.479183,5.028732,0,0,OIV:SA:CTP13686,Europe/Paris,,OIV, +OIV:SP:13687,1,"LE BUSSIN",45.479252,5.028787,0,0,OIV:SA:CTP13686,Europe/Paris,,OIV, +OIV:SP:13688,1,"LE GEMELAS",45.470587,5.023914,0,0,OIV:SA:CTP13688,Europe/Paris,,OIV, +OIV:SP:13689,1,"LE GEMELAS",45.470587,5.023914,0,0,OIV:SA:CTP13688,Europe/Paris,,OIV, +OIV:SP:13690,1,"LE MICHALET",45.478147,4.96975,0,0,OIV:SA:CTP13690,Europe/Paris,,OIV, +OIV:SP:13691,1,"LE MICHALET",45.4782,4.969818,0,0,OIV:SA:CTP13690,Europe/Paris,,OIV, +OIV:SP:13692,1,"LE NOLLY",45.477294,5.022833,0,0,OIV:SA:CTP13692,Europe/Paris,,OIV, +OIV:SP:13693,1,"LE NOLLY",45.477355,5.023183,0,0,OIV:SA:CTP13692,Europe/Paris,,OIV, +OIV:SP:13694,1,"LE PLAN",45.483478,5.023563,0,0,OIV:SA:CTP13694,Europe/Paris,,OIV, +OIV:SP:13695,1,"LE PLAN",45.483434,5.023542,0,0,OIV:SA:CTP13694,Europe/Paris,,OIV, +OIV:SP:13698,1,"LE PLAN 2",45.483168,5.022196,0,0,OIV:SA:CTP13697,Europe/Paris,,OIV, +OIV:SP:13699,1,"LE PLAN 1",45.483935,5.027245,0,0,OIV:SA:CTP13699,Europe/Paris,,OIV, +OIV:SP:13700,1,"LE RECOURT",45.477669,5.028231,0,0,OIV:SA:CTP13700,Europe/Paris,,OIV, +OIV:SP:13701,1,"LE RECOURT",45.477731,5.028216,0,0,OIV:SA:CTP13700,Europe/Paris,,OIV, +OIV:SP:13702,1,"LE SABLE",45.483643,5.032001,0,0,OIV:SA:CTP13702,Europe/Paris,,OIV, +OIV:SP:13704,1,"LE TRIEVE",45.480556,5.001227,0,0,OIV:SA:CTP13704,Europe/Paris,,OIV, +OIV:SP:13705,1,"LE TRIEVE",45.480768,5.001413,0,0,OIV:SA:CTP13704,Europe/Paris,,OIV, +OIV:SP:13706,1,"LE VIANNAIS",45.502334,4.967439,0,0,OIV:SA:CTP13630,Europe/Paris,,OIV, +OIV:SP:13707,1,"LE VIANNAIS",45.50238,4.967187,0,0,OIV:SA:CTP13630,Europe/Paris,,OIV, +OIV:SP:13708,1,"LE VOLLAND",45.481409,5.008527,0,0,OIV:SA:CTP13708,Europe/Paris,,OIV, +OIV:SP:13709,1,"LE VOLLAND",45.48151,5.008442,0,0,OIV:SA:CTP13708,Europe/Paris,,OIV, +OIV:SP:13711,1,"IMPASSE DU VOLLAND",45.480585,5.016157,0,0,OIV:SA:CTP13710,Europe/Paris,,OIV, +OIV:SP:13712,1,"LES BRUYERES",45.477461,5.018269,0,0,OIV:SA:CTP13712,Europe/Paris,,OIV, +OIV:SP:13715,1,"LES CREZ",45.495888,4.990831,0,0,OIV:SA:CTP13714,Europe/Paris,,OIV, +OIV:SP:13716,1,"LIEU DIT CHEZ MONSIE",45.49793,4.973744,0,0,OIV:SA:CTP13716,Europe/Paris,,OIV, +OIV:SP:13717,1,"LIEU DIT CHEZ MONSIE",45.497916,4.973821,0,0,OIV:SA:CTP13716,Europe/Paris,,OIV, +OIV:SP:13718,1,"MAISON GAMET",45.476531,4.96165,0,0,OIV:SA:CTP13718,Europe/Paris,,OIV, +OIV:SP:13719,1,"MAISON GAMET",45.47655,4.961717,0,0,OIV:SA:CTP13718,Europe/Paris,,OIV, +OIV:SP:13720,1,"MAISON LAURENCON",45.471668,4.964333,0,0,OIV:SA:CTP13720,Europe/Paris,,OIV, +OIV:SP:13721,1,"MAISON LAURENCON",45.471609,4.964264,0,0,OIV:SA:CTP13720,Europe/Paris,,OIV, +OIV:SP:13722,1,"MAS VOISIN D41",45.493202,4.974872,0,0,OIV:SA:CTP13722,Europe/Paris,,OIV, +OIV:SP:13723,1,"MAS VOISIN D41",45.493001,4.975443,0,0,OIV:SA:CTP13722,Europe/Paris,,OIV, +OIV:SP:13724,1,"RD41C LA COLLE",45.477444,4.992221,0,0,OIV:SA:CTP13724,Europe/Paris,,OIV, +OIV:SP:13725,1,"RD41C LA COLLE",45.477482,4.99211,0,0,OIV:SA:CTP13724,Europe/Paris,,OIV, +OIV:SP:13728,1,"SAINT MARCEL D41",45.470547,5.010615,0,0,OIV:SA:CTP13728,Europe/Paris,,OIV, +OIV:SP:13729,1,"SAINT MARCEL D41",45.470617,5.010686,0,0,OIV:SA:CTP13728,Europe/Paris,,OIV, +OIV:SP:13730,1,"THIBAUD PONT",45.470935,5.033328,0,0,OIV:SA:CTP13730,Europe/Paris,,OIV, +OIV:SP:13731,1,"THIBAUD PONT",45.470987,5.033192,0,0,OIV:SA:CTP13730,Europe/Paris,,OIV, +OIV:SP:13732,1,"AVENUE DU DAUPHINE",45.496174,4.908432,0,0,OIV:SA:CTP13732,Europe/Paris,,OIV, +OIV:SP:13733,1,"AVENUE DU DAUPHINE",45.496133,4.908517,0,0,OIV:SA:CTP13732,Europe/Paris,,OIV, +OIV:SP:13734,1,"PLACE DU 19 MARS 196",45.495779,4.907337,0,0,OIV:SA:CTP13734,Europe/Paris,,OIV, +OIV:SP:13735,1,"PLACE DU 19 MARS 196",45.496242,4.906908,0,0,OIV:SA:CTP13734,Europe/Paris,,OIV, +OIV:SP:13736,1,"BERARDIER PLACE",45.505799,4.909368,0,0,OIV:SA:CTP13736,Europe/Paris,,OIV, +OIV:SP:13737,1,"BERARDIER PLACE",45.505799,4.909201,0,0,OIV:SA:CTP13736,Europe/Paris,,OIV, +OIV:SP:13738,1,"CHEMIN MOURANT",45.489502,4.91256,0,0,OIV:SA:CTP13738,Europe/Paris,,OIV, +OIV:SP:13739,1,"CHEMIN MOURANT",45.489304,4.912805,0,0,OIV:SA:CTP13738,Europe/Paris,,OIV, +OIV:SP:13740,1,"CHEZ MATTON",45.486165,4.914162,0,0,OIV:SA:CTP13740,Europe/Paris,,OIV, +OIV:SP:13741,1,"CHEZ MATTON",45.485361,4.914375,0,0,OIV:SA:CTP13740,Europe/Paris,,OIV, +OIV:SP:13742,1,"COLLONGE D538",45.507618,4.906158,0,0,OIV:SA:CTP13742,Europe/Paris,,OIV, +OIV:SP:13743,1,"COLLONGE D538",45.507988,4.905948,0,0,OIV:SA:CTP13742,Europe/Paris,,OIV, +OIV:SP:13746,1,"GEDIMAT",45.510209,4.900473,0,0,OIV:SA:CTP13746,Europe/Paris,,OIV, +OIV:SP:13747,1,"GEDIMAT",45.510361,4.900397,0,0,OIV:SA:CTP13746,Europe/Paris,,OIV, +OIV:SP:13754,1,"LA SCIERIE",45.480787,4.899267,0,0,OIV:SA:CTP13754,Europe/Paris,,OIV, +OIV:SP:13755,1,"LA SCIERIE",45.479544,4.900353,0,0,OIV:SA:CTP13754,Europe/Paris,,OIV, +OIV:SP:13756,1,"LA TOUR MONTLEANT",45.502976,4.904504,0,0,OIV:SA:CTP13756,Europe/Paris,,OIV, +OIV:SP:13757,1,"LA TOUR MONTLEANT",45.502779,4.904657,0,0,OIV:SA:CTP13756,Europe/Paris,,OIV, +OIV:SP:13758,1,"LA VIEILLE EGLISE",45.488824,4.906889,0,0,OIV:SA:CTP13758,Europe/Paris,,OIV, +OIV:SP:13759,1,"LA VIEILLE EGLISE",45.488777,4.906786,0,0,OIV:SA:CTP13758,Europe/Paris,,OIV, +OIV:SP:13760,1,"LE BRUT",45.476642,4.913471,0,0,OIV:SA:CTP13760,Europe/Paris,,OIV, +OIV:SP:13761,1,"LE BRUT",45.476698,4.91345,0,0,OIV:SA:CTP13760,Europe/Paris,,OIV, +OIV:SP:13763,1,"LE GRAND CHAMPS",45.502552,4.913359,0,0,OIV:SA:CTP13763,Europe/Paris,,OIV, +OIV:SP:13767,1,"LE PELUT",45.485557,4.907071,0,0,OIV:SA:CTP13767,Europe/Paris,,OIV, +OIV:SP:13768,1,"LE TELEGRAPHE",45.487145,4.894514,0,0,OIV:SA:CTP13768,Europe/Paris,,OIV, +OIV:SP:13770,1,"LE TONKIN",45.5083,4.917728,0,0,OIV:SA:CTP13770,Europe/Paris,,OIV, +OIV:SP:13771,1,"LE TONKIN",45.507941,4.917236,0,0,OIV:SA:CTP13770,Europe/Paris,,OIV, +OIV:SP:13774,1,"VOIE DE L EUROPE",45.500544,4.910705,0,0,OIV:SA:CTP13774,Europe/Paris,,OIV, +OIV:SP:13776,1,"VOSSERE",45.497041,4.893153,0,0,OIV:SA:CTP13776,Europe/Paris,,OIV, +OIV:SP:13778,1,"ILLINS",45.589862,4.940175,0,0,OIV:SA:CTP13778,Europe/Paris,,OIV, +OIV:SP:13779,1,"ILLINS",45.589968,4.940321,0,0,OIV:SA:CTP13778,Europe/Paris,,OIV, +OIV:SP:13780,1,"PLACE",45.588463,4.9554,0,0,OIV:SA:CTP13780,Europe/Paris,,OIV, +OIV:SP:13781,1,"PLACE",45.588663,4.955486,0,0,OIV:SA:CTP13780,Europe/Paris,,OIV, +OIV:SP:13782,1,"CHALET CROISSETTES",45.587214,4.959788,0,0,OIV:SA:CTP13782,Europe/Paris,,OIV, +OIV:SP:13783,1,"CHALET CROISSETTES",45.587214,4.959788,0,0,OIV:SA:CTP13782,Europe/Paris,,OIV, +OIV:SP:13784,1,"LES MOILLES",45.572972,4.957403,0,0,OIV:SA:CTP13784,Europe/Paris,,OIV, +OIV:SP:13785,1,"LES MOILLES",45.572961,4.957484,0,0,OIV:SA:CTP13784,Europe/Paris,,OIV, +OIV:SP:13786,1,"ROUTE VILLENEUVE",45.589205,4.947709,0,0,OIV:SA:CTP13786,Europe/Paris,,OIV, +OIV:SP:13788,1,"SAINT GERMAIN",45.585183,4.974321,0,0,OIV:SA:CTP13788,Europe/Paris,,OIV, +OIV:SP:13790,1,"SAINT GERMAIN",45.585082,4.97434,0,0,OIV:SA:CTP13788,Europe/Paris,,OIV, +OIV:SP:13791,1,"PONT TGV",45.472325,5.043261,0,0,OIV:SA:CTP13791,Europe/Paris,,OIV, +OIV:SP:13792,1,"PONT TGV",45.472272,5.043226,0,0,OIV:SA:CTP13791,Europe/Paris,,OIV, +OIV:SP:13797,1,"CANCANNE",45.533754,4.903646,0,0,OIV:SA:CTP13797,Europe/Paris,,OIV, +OIV:SP:13798,1,"CANCANNE",45.533669,4.90366,0,0,OIV:SA:CTP13797,Europe/Paris,,OIV, +OIV:SP:13799,1,"CHAMP DE COURSES",45.525555,4.925675,0,0,OIV:SA:CTP13799,Europe/Paris,,OIV, +OIV:SP:13800,1,"CHAMP DE COURSES",45.525572,4.925262,0,0,OIV:SA:CTP13799,Europe/Paris,,OIV, +OIV:SP:13801,1,"COLLEGE BRASSENS",45.527089,4.926878,0,0,OIV:SA:CTP9010,Europe/Paris,,OIV, +OIV:SP:13802,1,"FOYER DE CANCANNE",45.531371,4.901491,0,0,OIV:SA:CTP13802,Europe/Paris,,OIV, +OIV:SP:13803,1,"FOYER DE CANCANNE",45.531237,4.901361,0,0,OIV:SA:CTP13802,Europe/Paris,,OIV, +OIV:SP:13804,1,"LA REVOLEE",45.531001,4.923421,0,0,OIV:SA:CTP13804,Europe/Paris,,OIV, +OIV:SP:13805,1,"LA REVOLEE",45.531074,4.923528,0,0,OIV:SA:CTP13804,Europe/Paris,,OIV, +OIV:SP:13806,1,"L ABBAYE",45.521388,4.92154,0,0,OIV:SA:CTP13806,Europe/Paris,,OIV, +OIV:SP:13807,1,"L ABBAYE",45.5217,4.920485,0,0,OIV:SA:CTP13806,Europe/Paris,,OIV, +OIV:SP:13808,1,"LE SAINT GEORGES",45.532216,4.910096,0,0,OIV:SA:CTP13808,Europe/Paris,,OIV, +OIV:SP:13809,1,"LE SAINT GEORGES",45.532325,4.910114,0,0,OIV:SA:CTP13808,Europe/Paris,,OIV, +OIV:SP:13810,1,"LES BLEUETS",45.530645,4.909495,0,0,OIV:SA:CTP13810,Europe/Paris,,OIV, +OIV:SP:13811,1,"LES BLEUETS",45.53071,4.909505,0,0,OIV:SA:CTP13810,Europe/Paris,,OIV, +OIV:SP:13812,1,"LES FORGES",45.530633,4.905897,0,0,OIV:SA:CTP13812,Europe/Paris,,OIV, +OIV:SP:13813,1,"LES FORGES",45.530687,4.90553,0,0,OIV:SA:CTP13812,Europe/Paris,,OIV, +OIV:SP:13814,1,"LES GENETS",45.531626,4.906911,0,0,OIV:SA:CTP13814,Europe/Paris,,OIV, +OIV:SP:13816,1,"LES GENTIANES",45.52748,4.918014,0,0,OIV:SA:CTP13816,Europe/Paris,,OIV, +OIV:SP:13817,1,"LES GENTIANES",45.527423,4.918202,0,0,OIV:SA:CTP13816,Europe/Paris,,OIV, +OIV:SP:13818,1,"LES MESANGES",45.527414,4.915734,0,0,OIV:SA:CTP13818,Europe/Paris,,OIV, +OIV:SP:13819,1,"LES MESANGES",45.527536,4.915749,0,0,OIV:SA:CTP13818,Europe/Paris,,OIV, +OIV:SP:13820,1,"LES TANNERIES",45.533106,4.912607,0,0,OIV:SA:CTP13820,Europe/Paris,,OIV, +OIV:SP:13821,1,"LES TANNERIES",45.533409,4.912592,0,0,OIV:SA:CTP13820,Europe/Paris,,OIV, +OIV:SP:13822,1,"PLAN DES AURES",45.527831,4.92246,0,0,OIV:SA:CTP13822,Europe/Paris,,OIV, +OIV:SP:13823,1,"PLAN DES AURES",45.527765,4.922406,0,0,OIV:SA:CTP13822,Europe/Paris,,OIV, +OIV:SP:13824,1,"CEN",45.468229,4.842436,0,0,OIV:SA:CTP13824,Europe/Paris,,OIV, +OIV:SP:13825,1,"CEN",45.468198,4.842389,0,0,OIV:SA:CTP13824,Europe/Paris,,OIV, +OIV:SP:13828,1,"LA PLAINE",45.472873,4.83532,0,0,OIV:SA:CTP13828,Europe/Paris,,OIV, +OIV:SP:13829,1,"LA PLAINE",45.47292,4.835304,0,0,OIV:SA:CTP13828,Europe/Paris,,OIV, +OIV:SP:13830,1,"LES JONCS PLUMASSE",45.465935,4.839706,0,0,OIV:SA:CTP13830,Europe/Paris,,OIV, +OIV:SP:13831,1,"LES JONCS PLUMASSE",45.465933,4.839661,0,0,OIV:SA:CTP13830,Europe/Paris,,OIV, +OIV:SP:13832,1,"BARBETTES",45.462308,4.837268,0,0,OIV:SA:CTP13832,Europe/Paris,,OIV, +OIV:SP:13833,1,"BARBETTES",45.462278,4.837289,0,0,OIV:SA:CTP13832,Europe/Paris,,OIV, +OIV:SP:13834,1,"GRAVETAN",45.58331,4.982483,0,0,OIV:SA:CTP13834,Europe/Paris,,OIV, +OIV:SP:13835,1,"GRAVETAN",45.58322,4.982443,0,0,OIV:SA:CTP13834,Europe/Paris,,OIV, +OIV:SP:13837,1,"ECOLE DE LA SOURCE",45.467642,4.943268,0,0,OIV:SA:CTP13837,Europe/Paris,,OIV, +OIV:SP:13838,1,"ECOLE DE LA SOURCE",45.46765,4.943976,0,0,OIV:SA:CTP13837,Europe/Paris,,OIV, +OIV:SP:13839,1,"BASSE ROSIERE",45.495427,4.930758,0,0,OIV:SA:CTP13839,Europe/Paris,,OIV, +OIV:SP:13840,1,"BASSE ROSIERE",45.495569,4.930548,0,0,OIV:SA:CTP13839,Europe/Paris,,OIV, +OIV:SP:13841,1,"BASSE ROSIERE GARENN",45.491088,4.93468,0,0,OIV:SA:CTP13841,Europe/Paris,,OIV, +OIV:SP:13842,1,"BASSE ROSIERE GARENN",45.490848,4.934852,0,0,OIV:SA:CTP13841,Europe/Paris,,OIV, +OIV:SP:13843,1,"BASSE ROSIERE SORDIE",45.48739,4.937636,0,0,OIV:SA:CTP13843,Europe/Paris,,OIV, +OIV:SP:13844,1,"BASSE ROSIERE SORDIE",45.487394,4.93774,0,0,OIV:SA:CTP13843,Europe/Paris,,OIV, +OIV:SP:13845,1,"CARR CHEMIN MANIN",45.467638,4.950156,0,0,OIV:SA:CTP13845,Europe/Paris,,OIV, +OIV:SP:13846,1,"CARR CHEMIN MANIN",45.46746,4.949901,0,0,OIV:SA:CTP13845,Europe/Paris,,OIV, +OIV:SP:13847,1,"CARR MOLLES RICHARDI",45.473687,4.951905,0,0,OIV:SA:CTP13847,Europe/Paris,,OIV, +OIV:SP:13848,1,"CARR MOLLES RICHARDI",45.473639,4.951636,0,0,OIV:SA:CTP13847,Europe/Paris,,OIV, +OIV:SP:13849,1,"CHEMIN DE COURSIN",45.47258,4.922719,0,0,OIV:SA:CTP13849,Europe/Paris,,OIV, +OIV:SP:13850,1,"CHEMIN DE COURSIN",45.472309,4.922971,0,0,OIV:SA:CTP13849,Europe/Paris,,OIV, +OIV:SP:13851,1,"CHEMIN DE MALATRA",45.475296,4.920504,0,0,OIV:SA:CTP13851,Europe/Paris,,OIV, +OIV:SP:13852,1,"CHEMIN DE MALATRA",45.475072,4.920814,0,0,OIV:SA:CTP13851,Europe/Paris,,OIV, +OIV:SP:13853,1,"DUVIN LA CROIX",45.482291,4.936117,0,0,OIV:SA:CTP13853,Europe/Paris,,OIV, +OIV:SP:13854,1,"DUVIN LA CROIX",45.481922,4.936215,0,0,OIV:SA:CTP13853,Europe/Paris,,OIV, +OIV:SP:13855,1,"GRANGE",45.464418,4.927656,0,0,OIV:SA:CTP13855,Europe/Paris,,OIV, +OIV:SP:13856,1,"GRANGE",45.464785,4.927046,0,0,OIV:SA:CTP13855,Europe/Paris,,OIV, +OIV:SP:13857,1,"LA BOURGEAT",45.468216,4.952869,0,0,OIV:SA:CTP13857,Europe/Paris,,OIV, +OIV:SP:13858,1,"LA BOURGEAT",45.467988,4.952489,0,0,OIV:SA:CTP13857,Europe/Paris,,OIV, +OIV:SP:13859,1,"LES TERRES ROUGES",45.463416,4.929872,0,0,OIV:SA:CTP13859,Europe/Paris,,OIV, +OIV:SP:13860,1,"LES TERRES ROUGES",45.463199,4.930556,0,0,OIV:SA:CTP13859,Europe/Paris,,OIV, +OIV:SP:13861,1,"MALATRA LE HAUT",45.478337,4.926601,0,0,OIV:SA:CTP13861,Europe/Paris,,OIV, +OIV:SP:13862,1,"MALATRA LE HAUT",45.478359,4.926636,0,0,OIV:SA:CTP13861,Europe/Paris,,OIV, +OIV:SP:13863,1,"MALATRA LE MARCIAT",45.480641,4.92174,0,0,OIV:SA:CTP13863,Europe/Paris,,OIV, +OIV:SP:13864,1,"MALATRA LE MARCIAT",45.480619,4.921934,0,0,OIV:SA:CTP13863,Europe/Paris,,OIV, +OIV:SP:13865,1,"MARMILLON ABRIBUS",45.475675,4.930223,0,0,OIV:SA:CTP13865,Europe/Paris,,OIV, +OIV:SP:13866,1,"MARMILLON ABRIBUS",45.475689,4.929957,0,0,OIV:SA:CTP13865,Europe/Paris,,OIV, +OIV:SP:13867,1,"SAINT SORLIN PLACE",45.467711,4.941353,0,0,OIV:SA:CTP13867,Europe/Paris,,OIV, +OIV:SP:13868,1,"SAINT SORLIN PLACE",45.467695,4.941948,0,0,OIV:SA:CTP13867,Europe/Paris,,OIV, +OIV:SP:13869,1,"PRIMARETTE SORTIE",45.472978,4.931188,0,0,OIV:SA:CTP13869,Europe/Paris,,OIV, +OIV:SP:13870,1,"PRIMARETTE SORTIE",45.472755,4.93129,0,0,OIV:SA:CTP13869,Europe/Paris,,OIV, +OIV:SP:13871,1,"STADE MANIN",45.473245,4.942437,0,0,OIV:SA:CTP13871,Europe/Paris,,OIV, +OIV:SP:13872,1,"STADE MANIN",45.473219,4.9426,0,0,OIV:SA:CTP13871,Europe/Paris,,OIV, +OIV:SP:13873,1,"AVANT LE FERRAILLEUR",45.559517,4.967968,0,0,OIV:SA:CTP13873,Europe/Paris,,OIV, +OIV:SP:13875,1,"CROISEMENT BALLONNIE",45.543867,4.97048,0,0,OIV:SA:CTP13875,Europe/Paris,,OIV, +OIV:SP:13877,1,"CROISEMENT CHAVRAY",45.543806,4.963254,0,0,OIV:SA:CTP13877,Europe/Paris,,OIV, +OIV:SP:13878,1,"CROISEMENT CHAVRAY",45.54385,4.963185,0,0,OIV:SA:CTP13877,Europe/Paris,,OIV, +OIV:SP:13879,1,"LE PALAIS",45.547489,4.972605,0,0,OIV:SA:CTP13879,Europe/Paris,,OIV, +OIV:SP:13880,1,"LE PALAIS",45.547505,4.972562,0,0,OIV:SA:CTP13879,Europe/Paris,,OIV, +OIV:SP:13883,1,"EGLISE",45.562582,4.916079,0,0,OIV:SA:CTP13883,Europe/Paris,,OIV, +OIV:SP:13884,1,"EGLISE",45.562585,4.916328,0,0,OIV:SA:CTP13883,Europe/Paris,,OIV, +OIV:SP:13885,1,"LE BIEF",45.566356,4.910193,0,0,OIV:SA:CTP13885,Europe/Paris,,OIV, +OIV:SP:13886,1,"LE BIEF",45.566418,4.910244,0,0,OIV:SA:CTP13885,Europe/Paris,,OIV, +OIV:SP:13887,1,"LE CHATEAU D EAU",45.561041,4.944805,0,0,OIV:SA:CTP13887,Europe/Paris,,OIV, +OIV:SP:13888,1,"LE CHATEAU D EAU",45.561222,4.944667,0,0,OIV:SA:CTP13887,Europe/Paris,,OIV, +OIV:SP:13889,1,"EGLISE",45.559457,4.845263,0,0,OIV:SA:CTP13889,Europe/Paris,,OIV, +OIV:SP:13890,1,"EGLISE",45.559512,4.845545,0,0,OIV:SA:CTP13889,Europe/Paris,,OIV, +OIV:SP:13891,1,"LES 7 FONTAINES",45.556508,4.857837,0,0,OIV:SA:CTP13891,Europe/Paris,,OIV, +OIV:SP:13892,1,"LES 7 FONTAINES",45.55643,4.857756,0,0,OIV:SA:CTP13891,Europe/Paris,,OIV, +OIV:SP:13893,1,"LES CANNES",45.560298,4.850964,0,0,OIV:SA:CTP13893,Europe/Paris,,OIV, +OIV:SP:13894,1,"LES CANNES",45.559931,4.849407,0,0,OIV:SA:CTP13893,Europe/Paris,,OIV, +OIV:SP:13895,1,"LES GARDIERES ZI SEY",45.55539,4.82822,0,0,OIV:SA:CTP13895,Europe/Paris,,OIV, +OIV:SP:13896,1,"LES GARDIERES ZI SEY",45.555468,4.828347,0,0,OIV:SA:CTP13895,Europe/Paris,,OIV, +OIV:SP:13897,1,"PAUPHILE",45.556088,4.861694,0,0,OIV:SA:CTP13897,Europe/Paris,,OIV, +OIV:SP:13898,1,"PAUPHILE",45.556177,4.861937,0,0,OIV:SA:CTP13897,Europe/Paris,,OIV, +OIV:SP:13899,1,"ROCHE COULOURE",45.560482,4.837929,0,0,OIV:SA:CTP13899,Europe/Paris,,OIV, +OIV:SP:13900,1,"ROCHE COULOURE",45.560527,4.838149,0,0,OIV:SA:CTP13899,Europe/Paris,,OIV, +OIV:SP:13901,1,"TRANSPORT LABBEY",45.563488,4.83137,0,0,OIV:SA:CTP13901,Europe/Paris,,OIV, +OIV:SP:13902,1,"TRANSPORT LABBEY",45.563286,4.831166,0,0,OIV:SA:CTP13901,Europe/Paris,,OIV, +OIV:SP:13903,1,"ZI SEYSSUEL RESTAU",45.559471,4.823503,0,0,OIV:SA:CTP13903,Europe/Paris,,OIV, +OIV:SP:13904,1,"ZI SEYSSUEL RESTAU",45.559477,4.823219,0,0,OIV:SA:CTP13903,Europe/Paris,,OIV, +OIV:SP:13905,1,"ZI SEYSSUEL TUILER",45.551199,4.832505,0,0,OIV:SA:CTP13905,Europe/Paris,,OIV, +OIV:SP:13906,1,"ZI SEYSSUEL TUILER",45.551253,4.832671,0,0,OIV:SA:CTP13905,Europe/Paris,,OIV, +OIV:SP:13907,1,"ABBE PIERRE CALES",45.511078,4.860434,0,0,OIV:SA:CTP13907,Europe/Paris,,OIV, +OIV:SP:13908,1,"ABBE PIERRE CALES",45.510814,4.860314,0,0,OIV:SA:CTP13907,Europe/Paris,,OIV, +OIV:SP:13910,1,"AGROTEC",45.545922,4.864527,0,0,OIV:SA:CTP13909,Europe/Paris,,OIV, +OIV:SP:13911,1,"BD MAUPAS",45.53212,4.884154,0,0,OIV:SA:CTP13911,Europe/Paris,,OIV, +OIV:SP:13912,1,"BD MAUPAS",45.532115,4.884281,0,0,OIV:SA:CTP13911,Europe/Paris,,OIV, +OIV:SP:13913,1,"BEAUREGARD",45.518184,4.878878,0,0,OIV:SA:CTP13913,Europe/Paris,,OIV, +OIV:SP:13914,1,"BEAUREGARD",45.51822,4.878954,0,0,OIV:SA:CTP13913,Europe/Paris,,OIV, +OIV:SP:13915,1,"BEL AIR",45.517075,4.873481,0,0,OIV:SA:CTP13915,Europe/Paris,,OIV, +OIV:SP:13916,1,"BEL AIR",45.517126,4.873402,0,0,OIV:SA:CTP13915,Europe/Paris,,OIV, +OIV:SP:13917,1,"BURGONDES",45.520043,4.878521,0,0,OIV:SA:CTP13917,Europe/Paris,,OIV, +OIV:SP:13918,1,"BURGONDES",45.51994,4.878582,0,0,OIV:SA:CTP13917,Europe/Paris,,OIV, +OIV:SP:13919,1,"CLAUDE BERNARD",45.541234,4.856773,0,0,OIV:SA:CTP13919,Europe/Paris,,OIV, +OIV:SP:13920,1,"CLAUDE BERNARD",45.541328,4.856907,0,0,OIV:SA:CTP13919,Europe/Paris,,OIV, +OIV:SP:13921,1,"CENTRE SOCIAL",45.540405,4.861801,0,0,OIV:SA:CTP13921,Europe/Paris,,OIV, +OIV:SP:13922,1,"CENTRE SOCIAL",45.540518,4.861763,0,0,OIV:SA:CTP13921,Europe/Paris,,OIV, +OIV:SP:13923,1,"CHAMBRE DE METIERS",45.518828,4.919714,0,0,OIV:SA:CTP13249,Europe/Paris,,OIV, +OIV:SP:13924,1,"CHEMIN DE LA LOGE",45.519994,4.874163,0,0,OIV:SA:CTP13924,Europe/Paris,,OIV, +OIV:SP:13925,1,"CHEMIN DE LA LOGE",45.519994,4.874163,0,0,OIV:SA:CTP13924,Europe/Paris,,OIV, +OIV:SP:13926,1,"CHEMIN DES GRANDES V",45.536989,4.893913,0,0,OIV:SA:CTP13926,Europe/Paris,,OIV, +OIV:SP:13927,1,"CHEMIN DES GRANDES V",45.537215,4.894007,0,0,OIV:SA:CTP13926,Europe/Paris,,OIV, +OIV:SP:13928,1,"CITE JARDIN",45.540775,4.864759,0,0,OIV:SA:CTP13928,Europe/Paris,,OIV, +OIV:SP:13929,1,"CITE JARDIN",45.540511,4.865311,0,0,OIV:SA:CTP13928,Europe/Paris,,OIV, +OIV:SP:13933,1,"COLLEGE DE L ISLE",45.505637,4.851699,0,0,OIV:SA:CTP13933,Europe/Paris,,OIV, +OIV:SP:13936,1,"COLLONGE",45.514005,4.903469,0,0,OIV:SA:CTP13936,Europe/Paris,,OIV, +OIV:SP:13937,1,"COLLONGE",45.513892,4.902859,0,0,OIV:SA:CTP13936,Europe/Paris,,OIV, +OIV:SP:13938,1,"COMTE ROLLAND",45.527341,4.897993,0,0,OIV:SA:CTP13938,Europe/Paris,,OIV, +OIV:SP:13939,1,"COMTE ROLLAND",45.527301,4.897733,0,0,OIV:SA:CTP13938,Europe/Paris,,OIV, +OIV:SP:13940,1,"COUPE JARRET",45.51172,4.873392,0,0,OIV:SA:CTP13940,Europe/Paris,,OIV, +OIV:SP:13941,1,"COUPE JARRET",45.511719,4.873311,0,0,OIV:SA:CTP13940,Europe/Paris,,OIV, +OIV:SP:13942,1,"COURS DE VERDUN",45.520033,4.870702,0,0,OIV:SA:CTP13942,Europe/Paris,,OIV, +OIV:SP:13943,1,"COURS DE VERDUN",45.519884,4.870501,0,0,OIV:SA:CTP13942,Europe/Paris,,OIV, +OIV:SP:13944,1,"CUVIERE",45.52905,4.878049,0,0,OIV:SA:CTP13944,Europe/Paris,,OIV, +OIV:SP:13945,1,"CUVIERE",45.529061,4.877927,0,0,OIV:SA:CTP13944,Europe/Paris,,OIV, +OIV:SP:13946,1,"ECOLE MAUPAS",45.529836,4.881987,0,0,OIV:SA:CTP13946,Europe/Paris,,OIV, +OIV:SP:13947,1,"ECOLE MAUPAS",45.529834,4.882079,0,0,OIV:SA:CTP13946,Europe/Paris,,OIV, +OIV:SP:13948,1,"ESTRESSIN CENTRE COM",45.542289,4.85022,0,0,OIV:SA:CTP13948,Europe/Paris,,OIV, +OIV:SP:13949,1,"ESTRESSIN CENTRE COM",45.542309,4.850381,0,0,OIV:SA:CTP13948,Europe/Paris,,OIV, +OIV:SP:13950,1,"ESTRESSIN ZI",45.542084,4.85471,0,0,OIV:SA:CTP13950,Europe/Paris,,OIV, +OIV:SP:13951,1,"ESTRESSIN ZI",45.542132,4.854858,0,0,OIV:SA:CTP13950,Europe/Paris,,OIV, +OIV:SP:13952,1,"ETIENNE REY",45.536958,4.869509,0,0,OIV:SA:CTP13952,Europe/Paris,,OIV, +OIV:SP:13953,1,"ETIENNE REY",45.53694,4.869392,0,0,OIV:SA:CTP13952,Europe/Paris,,OIV, +OIV:SP:13956,1,"GARE ESTRESSIN",45.540284,4.867348,0,0,OIV:SA:CTP13956,Europe/Paris,,OIV, +OIV:SP:13957,1,"GARE ESTRESSIN",45.540227,4.867153,0,0,OIV:SA:CTP13956,Europe/Paris,,OIV, +OIV:SP:13958,1,"GUETAL",45.51665,4.866253,0,0,OIV:SA:CTP13958,Europe/Paris,,OIV, +OIV:SP:13959,1,"GUETAL",45.516647,4.86645,0,0,OIV:SA:CTP13958,Europe/Paris,,OIV, +OIV:SP:13960,1,"GUILLEMOTTES",45.537055,4.886272,0,0,OIV:SA:CTP13960,Europe/Paris,,OIV, +OIV:SP:13961,1,"GUILLEMOTTES",45.536992,4.886178,0,0,OIV:SA:CTP13960,Europe/Paris,,OIV, +OIV:SP:13964,1,"HAMEAU GUILLEMOTTES",45.536038,4.88778,0,0,OIV:SA:CTP13964,Europe/Paris,,OIV, +OIV:SP:13965,1,"HAMEAU GUILLEMOTTES",45.535876,4.887739,0,0,OIV:SA:CTP13964,Europe/Paris,,OIV, +OIV:SP:13966,1,"HERMITAGE",45.514229,4.872768,0,0,OIV:SA:CTP13966,Europe/Paris,,OIV, +OIV:SP:13967,1,"HERMITAGE",45.514266,4.872789,0,0,OIV:SA:CTP13966,Europe/Paris,,OIV, +OIV:SP:13968,1,"HOPITAL LUCIEN HUSSE",45.534625,4.88044,0,0,OIV:SA:CTP13968,Europe/Paris,,OIV, +OIV:SP:13969,1,"HOPITAL LUCIEN HUSSE",45.534428,4.880892,0,0,OIV:SA:CTP13968,Europe/Paris,,OIV, +OIV:SP:13971,1,"IME LA BATIE",45.535284,4.881554,0,0,OIV:SA:CTP13971,Europe/Paris,,OIV, +OIV:SP:13972,1,"JEAN JAURES",45.53656,4.873627,0,0,OIV:SA:CTP13972,Europe/Paris,,OIV, +OIV:SP:13973,1,"JEAN JAURES",45.538201,4.872195,0,0,OIV:SA:CTP13972,Europe/Paris,,OIV, +OIV:SP:13974,1,"JEAN MONNET",45.514715,4.906715,0,0,OIV:SA:CTP13974,Europe/Paris,,OIV, +OIV:SP:13975,1,"JEAN MONNET",45.514458,4.907545,0,0,OIV:SA:CTP13974,Europe/Paris,,OIV, +OIV:SP:13976,1,"JEAN MOULIN",45.507974,4.859637,0,0,OIV:SA:CTP13976,Europe/Paris,,OIV, +OIV:SP:13977,1,"JEAN MOULIN",45.508233,4.859506,0,0,OIV:SA:CTP13976,Europe/Paris,,OIV, +OIV:SP:13978,1,"JEU DE PAUME",45.527154,4.873263,0,0,OIV:SA:CTP13978,Europe/Paris,,OIV, +OIV:SP:13979,1,"JEU DE PAUME",45.526988,4.873214,0,0,OIV:SA:CTP13978,Europe/Paris,,OIV, +OIV:SP:13980,1,"LA PASSARDIERE",45.517379,4.888579,0,0,OIV:SA:CTP13980,Europe/Paris,,OIV, +OIV:SP:13981,1,"LA PASSARDIERE",45.51748,4.888588,0,0,OIV:SA:CTP13980,Europe/Paris,,OIV, +OIV:SP:13982,1,"LA PETITE RENTE",45.514688,4.891114,0,0,OIV:SA:CTP13982,Europe/Paris,,OIV, +OIV:SP:13983,1,"LA PETITE RENTE",45.514764,4.891019,0,0,OIV:SA:CTP13982,Europe/Paris,,OIV, +OIV:SP:13984,1,"LA PYRAMIDE",45.516479,4.868853,0,0,OIV:SA:CTP13984,Europe/Paris,,OIV, +OIV:SP:13985,1,"LA PYRAMIDE",45.516499,4.868775,0,0,OIV:SA:CTP13984,Europe/Paris,,OIV, +OIV:SP:13986,1,"LA RAVAT",45.524153,4.891869,0,0,OIV:SA:CTP13986,Europe/Paris,,OIV, +OIV:SP:13987,1,"LA RAVAT",45.524052,4.891564,0,0,OIV:SA:CTP13986,Europe/Paris,,OIV, +OIV:SP:13988,1,"LA RECLUSIERE",45.541786,4.868339,0,0,OIV:SA:CTP13988,Europe/Paris,,OIV, +OIV:SP:13989,1,"LA RECLUSIERE",45.541672,4.868272,0,0,OIV:SA:CTP13988,Europe/Paris,,OIV, +OIV:SP:13990,1,"LAFAYETTE",45.524764,4.889748,0,0,OIV:SA:CTP13990,Europe/Paris,,OIV, +OIV:SP:13991,1,"LAFAYETTE",45.525011,4.89047,0,0,OIV:SA:CTP13990,Europe/Paris,,OIV, +OIV:SP:13992,1,"LANCIERS",45.515109,4.864523,0,0,OIV:SA:CTP13992,Europe/Paris,,OIV, +OIV:SP:13993,1,"LANCIERS",45.515176,4.864727,0,0,OIV:SA:CTP13992,Europe/Paris,,OIV, +OIV:SP:13994,1,"LE PONT",45.529297,4.901642,0,0,OIV:SA:CTP13994,Europe/Paris,,OIV, +OIV:SP:13995,1,"LE PONT",45.529415,4.901637,0,0,OIV:SA:CTP13994,Europe/Paris,,OIV, +OIV:SP:13996,1,"LES CEDRES",45.516893,4.918752,0,0,OIV:SA:CTP13996,Europe/Paris,,OIV, +OIV:SP:13997,1,"LES CEDRES",45.516979,4.918988,0,0,OIV:SA:CTP13996,Europe/Paris,,OIV, +OIV:SP:13998,1,"LES CELESTES",45.524407,4.877386,0,0,OIV:SA:CTP13255,Europe/Paris,,OIV, +OIV:SP:14000,1,"LES CHARAVELLES",45.539152,4.871063,0,0,OIV:SA:CTP14000,Europe/Paris,,OIV, +OIV:SP:14001,1,"LES CHARAVELLES",45.539475,4.870827,0,0,OIV:SA:CTP14000,Europe/Paris,,OIV, +OIV:SP:14002,1,"LES GRANDS PRES",45.516291,4.879627,0,0,OIV:SA:CTP14002,Europe/Paris,,OIV, +OIV:SP:14003,1,"LES GRANDS PRES",45.516345,4.879585,0,0,OIV:SA:CTP14002,Europe/Paris,,OIV, +OIV:SP:14004,1,"LES HAMEAUX DE MALIS",45.514965,4.912824,0,0,OIV:SA:CTP14004,Europe/Paris,,OIV, +OIV:SP:14005,1,"LES HAMEAUX DE MALIS",45.515017,4.912879,0,0,OIV:SA:CTP14004,Europe/Paris,,OIV, +OIV:SP:14006,1,"LES HAUTS DE MALISSO",45.514985,4.911059,0,0,OIV:SA:CTP14006,Europe/Paris,,OIV, +OIV:SP:14007,1,"LES HAUTS DE MALISSO",45.51495,4.910931,0,0,OIV:SA:CTP14006,Europe/Paris,,OIV, +OIV:SP:14008,1,"LES HAUTS DE VIENNE",45.513943,4.876497,0,0,OIV:SA:CTP14008,Europe/Paris,,OIV, +OIV:SP:14009,1,"LES HAUTS DE VIENNE",45.513891,4.876602,0,0,OIV:SA:CTP14008,Europe/Paris,,OIV, +OIV:SP:14010,1,"LES PORTES DE LYON",45.533564,4.873336,0,0,OIV:SA:CTP14010,Europe/Paris,,OIV, +OIV:SP:14011,1,"LES TUPINIERES",45.523033,4.880932,0,0,OIV:SA:CTP14011,Europe/Paris,,OIV, +OIV:SP:14012,1,"LES TUPINIERES",45.522998,4.881093,0,0,OIV:SA:CTP14011,Europe/Paris,,OIV, +OIV:SP:14013,1,"LEVEAU ECOLE",45.549988,4.876875,0,0,OIV:SA:CTP14013,Europe/Paris,,OIV, +OIV:SP:14014,1,"LEVEAU ECOLE",45.550173,4.876954,0,0,OIV:SA:CTP14013,Europe/Paris,,OIV, +OIV:SP:14015,1,"L HORLOGE",45.514331,4.91751,0,0,OIV:SA:CTP14015,Europe/Paris,,OIV, +OIV:SP:14016,1,"L HORLOGE",45.51425,4.91752,0,0,OIV:SA:CTP14015,Europe/Paris,,OIV, +OIV:SP:14017,1,"L OCTROI",45.520344,4.884279,0,0,OIV:SA:CTP14017,Europe/Paris,,OIV, +OIV:SP:14018,1,"L OCTROI",45.520353,4.884334,0,0,OIV:SA:CTP14017,Europe/Paris,,OIV, +OIV:SP:14019,1,"LOUIS REVOL",45.524851,4.888277,0,0,OIV:SA:CTP14019,Europe/Paris,,OIV, +OIV:SP:14020,1,"LOUIS REVOL",45.52494,4.887782,0,0,OIV:SA:CTP14019,Europe/Paris,,OIV, +OIV:SP:14021,1,"LYCEE GALILEE",45.504189,4.854787,0,0,OIV:SA:CTP14021,Europe/Paris,,OIV, +OIV:SP:14022,1,"LYCEE GALILEE",45.503997,4.854404,0,0,OIV:SA:CTP14021,Europe/Paris,,OIV, +OIV:SP:14023,1,"MAISON D ENFANTS",45.534817,4.886448,0,0,OIV:SA:CTP14023,Europe/Paris,,OIV, +OIV:SP:14024,1,"MAISON D ENFANTS",45.534823,4.886507,0,0,OIV:SA:CTP14023,Europe/Paris,,OIV, +OIV:SP:14025,1,"MALISSOL CUISINE CEN",45.512702,4.917258,0,0,OIV:SA:CTP14025,Europe/Paris,,OIV, +OIV:SP:14026,1,"MALISSOL CUISINE CEN",45.512408,4.916978,0,0,OIV:SA:CTP14025,Europe/Paris,,OIV, +OIV:SP:14027,1,"LA FERME",45.514721,4.915276,0,0,OIV:SA:CTP14027,Europe/Paris,,OIV, +OIV:SP:14028,1,"LA FERME",45.514767,4.915373,0,0,OIV:SA:CTP14027,Europe/Paris,,OIV, +OIV:SP:14029,1,"MALISSOL LA GERE",45.517841,4.921987,0,0,OIV:SA:CTP14029,Europe/Paris,,OIV, +OIV:SP:14032,1,"MALISSOL MAISON V. H",45.515925,4.911771,0,0,OIV:SA:CTP14034,Europe/Paris,,OIV, +OIV:SP:14034,1,"MALISSOL MAISON V. H",45.516027,4.911807,0,0,OIV:SA:CTP14034,Europe/Paris,,OIV, +OIV:SP:14035,1,"MICHEL SERVET",45.517921,4.869647,0,0,OIV:SA:CTP14035,Europe/Paris,,OIV, +OIV:SP:14036,1,"MICHEL SERVET",45.51801,4.869793,0,0,OIV:SA:CTP14035,Europe/Paris,,OIV, +OIV:SP:14037,1,"MONT SALOMON",45.536663,4.883086,0,0,OIV:SA:CTP14037,Europe/Paris,,OIV, +OIV:SP:14038,1,"MONT SALOMON",45.536632,4.883256,0,0,OIV:SA:CTP14037,Europe/Paris,,OIV, +OIV:SP:14040,1,"NOTRE DAME DE L ISLE",45.503786,4.851296,0,0,OIV:SA:CTP14040,Europe/Paris,,OIV, +OIV:SP:14041,1,"NOTRE DAME DE L ISLE",45.503936,4.851118,0,0,OIV:SA:CTP14040,Europe/Paris,,OIV, +OIV:SP:14042,1,"PIERRE ET MARIE CURI",45.54128,4.862257,0,0,OIV:SA:CTP14042,Europe/Paris,,OIV, +OIV:SP:14043,1,"PIERRE ET MARIE CURI",45.541339,4.862169,0,0,OIV:SA:CTP14042,Europe/Paris,,OIV, +OIV:SP:14045,1,"PARC RELAIS SUD",45.502155,4.84878,0,0,OIV:SA:CTP14045,Europe/Paris,,OIV, +OIV:SP:14046,1,"PASTEUR",45.535776,4.871444,0,0,OIV:SA:CTP14046,Europe/Paris,,OIV, +OIV:SP:14047,1,"PASTEUR",45.535616,4.871248,0,0,OIV:SA:CTP14046,Europe/Paris,,OIV, +OIV:SP:14049,1,"PLACE D ARPOT",45.534858,4.874591,0,0,OIV:SA:CTP14049,Europe/Paris,,OIV, +OIV:SP:14050,1,"PLACE DRAPIERE",45.527935,4.879461,0,0,OIV:SA:CTP14050,Europe/Paris,,OIV, +OIV:SP:14051,1,"PLACE DRAPIERE",45.527697,4.880097,0,0,OIV:SA:CTP14050,Europe/Paris,,OIV, +OIV:SP:14052,1,"PORT AU PRINCE",45.537708,4.867818,0,0,OIV:SA:CTP14052,Europe/Paris,,OIV, +OIV:SP:14053,1,"PORT AU PRINCE",45.538179,4.868188,0,0,OIV:SA:CTP14052,Europe/Paris,,OIV, +OIV:SP:14054,1,"QUARTIER ST GERMAIN",45.513489,4.862782,0,0,OIV:SA:CTP14054,Europe/Paris,,OIV, +OIV:SP:14055,1,"QUARTIER ST GERMAIN",45.51326,4.862639,0,0,OIV:SA:CTP14054,Europe/Paris,,OIV, +OIV:SP:14056,1,"RABELAIS",45.527069,4.882442,0,0,OIV:SA:CTP14056,Europe/Paris,,OIV, +OIV:SP:14057,1,"RABELAIS",45.527094,4.882518,0,0,OIV:SA:CTP14056,Europe/Paris,,OIV, +OIV:SP:14058,1,"ROBESPIERRE",45.509423,4.859043,0,0,OIV:SA:CTP14058,Europe/Paris,,OIV, +OIV:SP:14059,1,"ROBESPIERRE",45.509371,4.85909,0,0,OIV:SA:CTP14058,Europe/Paris,,OIV, +OIV:SP:14060,1,"ROCHE CLAIRE",45.513418,4.898968,0,0,OIV:SA:CTP14060,Europe/Paris,,OIV, +OIV:SP:14061,1,"ROCHE CLAIRE",45.513385,4.899031,0,0,OIV:SA:CTP14060,Europe/Paris,,OIV, +OIV:SP:14062,1,"ROND POINT MALISSOL",45.519007,4.918553,0,0,OIV:SA:CTP14062,Europe/Paris,,OIV, +OIV:SP:14063,1,"ROND POINT MALISSOL",45.518991,4.9186,0,0,OIV:SA:CTP14062,Europe/Paris,,OIV, +OIV:SP:14064,1,"SAINT BENOIT",45.512777,4.896557,0,0,OIV:SA:CTP14064,Europe/Paris,,OIV, +OIV:SP:14065,1,"SAINT BENOIT",45.512605,4.89668,0,0,OIV:SA:CTP14064,Europe/Paris,,OIV, +OIV:SP:14066,1,"SAINT IGNACE",45.515057,4.909705,0,0,OIV:SA:CTP14066,Europe/Paris,,OIV, +OIV:SP:14067,1,"SAINT IGNACE",45.514984,4.908534,0,0,OIV:SA:CTP14066,Europe/Paris,,OIV, +OIV:SP:14068,1,"SAVOIE",45.54052,4.858231,0,0,OIV:SA:CTP14068,Europe/Paris,,OIV, +OIV:SP:14069,1,"SAVOIE",45.540474,4.858109,0,0,OIV:SA:CTP14068,Europe/Paris,,OIV, +OIV:SP:14070,1,"SAINT MAURICE",45.52472,4.871395,0,0,OIV:SA:CTP14070,Europe/Paris,,OIV, +OIV:SP:14074,1,"STADE MALISSOL",45.517078,4.908166,0,0,OIV:SA:CTP14074,Europe/Paris,,OIV, +OIV:SP:14075,1,"STADE MALISSOL",45.517109,4.907997,0,0,OIV:SA:CTP14074,Europe/Paris,,OIV, +OIV:SP:14077,1,"TUILERIE",45.530697,4.874078,0,0,OIV:SA:CTP14077,Europe/Paris,,OIV, +OIV:SP:14079,1,"URGENCES HOPITAL",45.532935,4.87927,0,0,OIV:SA:CTP14079,Europe/Paris,,OIV, +OIV:SP:14080,1,"VICTOR FAUGIER",45.525623,4.884695,0,0,OIV:SA:CTP14080,Europe/Paris,,OIV, +OIV:SP:14081,1,"VICTOR FAUGIER",45.526049,4.884353,0,0,OIV:SA:CTP14080,Europe/Paris,,OIV, +OIV:SP:14082,1,"LA CROIX",45.586425,4.907502,0,0,OIV:SA:CTP14082,Europe/Paris,,OIV, +OIV:SP:14083,1,"LA CROIX",45.586349,4.908262,0,0,OIV:SA:CTP14082,Europe/Paris,,OIV, +OIV:SP:14084,1,"VILLETTE VILLAGE",45.587533,4.914504,0,0,OIV:SA:CTP14084,Europe/Paris,,OIV, +OIV:SP:14085,1,"VILLETTE VILLAGE",45.587479,4.914531,0,0,OIV:SA:CTP14084,Europe/Paris,,OIV, +OIV:SP:14086,1,"LES DAUPHINES",45.585438,4.893984,0,0,OIV:SA:CTP14086,Europe/Paris,,OIV, +OIV:SP:14087,1,"LES DAUPHINES",45.586136,4.897095,0,0,OIV:SA:CTP14087,Europe/Paris,,OIV, +OIV:SP:14092,1,"LEP CASANOVA",45.594032,4.766326,0,0,OIV:SA:CTP14092,Europe/Paris,,OIV, +OIV:SP:14093,1,"LEP CASANOVA",45.594045,4.766438,0,0,OIV:SA:CTP14092,Europe/Paris,,OIV, +OIV:SP:14094,1,"LEP ARAGON PICASSO",45.601178,4.761066,0,0,OIV:SA:CTP14094,Europe/Paris,,OIV, +OIV:SP:14095,1,"LEP ARAGON PICASSO",45.60125,4.761052,0,0,OIV:SA:CTP14094,Europe/Paris,,OIV, +OIV:SP:14096,1,"NOTRE DAME",45.590759,4.770487,0,0,OIV:SA:CTP14096,Europe/Paris,,OIV, +OIV:SP:14097,1,"NOTRE DAME",45.591025,4.771214,0,0,OIV:SA:CTP14096,Europe/Paris,,OIV, +OIV:SP:14949,1,"G. BRASSENS",45.58522,4.813128,0,0,OIV:SA:CTP14949,Europe/Paris,,OIV, +OIV:SP:14950,1,"G. BRASSENS",45.58514,4.812837,0,0,OIV:SA:CTP14949,Europe/Paris,,OIV, +OIV:SP:14951,1,"LES MURIERS",45.510524,4.955041,0,0,OIV:SA:CTP14951,Europe/Paris,,OIV, +OIV:SP:14952,1,"LES MURIERS",45.510241,4.954823,0,0,OIV:SA:CTP14951,Europe/Paris,,OIV, +OIV:SP:14953,1,"CLAIR DE LUNE",45.530429,4.91956,0,0,OIV:SA:CTP14953,Europe/Paris,,OIV, +OIV:SP:14954,1,"CLAIR DE LUNE",45.530485,4.919775,0,0,OIV:SA:CTP14953,Europe/Paris,,OIV, +OIV:SP:14955,1,"GRANGE HAUTE",45.549972,4.900097,0,0,OIV:SA:CTP14955,Europe/Paris,,OIV, +OIV:SP:14956,1,"GRANGE HAUTE",45.549972,4.900097,0,0,OIV:SA:CTP14955,Europe/Paris,,OIV, +OIV:SP:14957,1,"DIDEROT",45.532639,4.874299,0,0,OIV:SA:CTP14957,Europe/Paris,,OIV, +OIV:SP:15129,1,"BASCULE CHEMIN DE LA",45.506557,4.893194,0,0,OIV:SA:CTP15129,Europe/Paris,,OIV, +OIV:SP:15130,1,"CHEMIN MASSIER",45.545525,4.879502,0,0,OIV:SA:CTP15130,Europe/Paris,,OIV, +OIV:SP:15131,1,"CHEMIN MASSIER",45.545525,4.879502,0,0,OIV:SA:CTP15130,Europe/Paris,,OIV, +OIV:SP:15179,1,"LE BUSSIN II",45.483499,5.033611,0,0,OIV:SA:CTP15179,Europe/Paris,,OIV, +OIV:SP:15441,1,"CHEMIN DE LA ROSIERE",45.491676,4.949868,0,0,OIV:SA:CTP15441,Europe/Paris,,OIV, +OIV:SP:15442,1,"CLE DES CHAMPS",45.494678,5.042327,0,0,OIV:SA:CTP15442,Europe/Paris,,OIV, +OIV:SP:15443,1,"CENTRE COMMERCIAL ES",45.57405,4.811557,0,0,OIV:SA:CTP15443,Europe/Paris,,OIV, +OIV:SP:15444,1,"HAMEAU DE THIERS",45.571863,4.867787,0,0,OIV:SA:CTP15444,Europe/Paris,,OIV, +OIV:SP:15446,1,"LE CLOS DE LA GARE",45.494718,5.046123,0,0,OIV:SA:CTP15446,Europe/Paris,,OIV, +OIV:SP:15447,1,"LES JARDINS DE LA DE",45.493864,5.044907,0,0,OIV:SA:CTP15447,Europe/Paris,,OIV, +OIV:SP:15448,1,"GRAVIER ROUGE",45.543304,4.896106,0,0,OIV:SA:CTP15448,Europe/Paris,,OIV, +OIV:SP:15449,1,"CHAMP DE BRAS",45.539992,4.879973,0,0,OIV:SA:CTP15449,Europe/Paris,,OIV, +OIV:SP:15457,1,"ZI ISLON",45.583815,4.784946,0,0,OIV:SA:CTP15457,Europe/Paris,,OIV, +OIV:SP:15918,1,"CHATEAU PLANTIER D41",45.500048,4.954486,0,0,OIV:SA:CTP15918,Europe/Paris,,OIV, +OIV:SP:15919,1,"PLACE DE LA SAINT VI",45.492737,4.945679,0,0,OIV:SA:CTP15919,Europe/Paris,,OIV, +OIV:SP:15941,1,"CHATEAU PLANTIER D41",45.500004,4.954949,0,0,OIV:SA:CTP15918,Europe/Paris,,OIV, +OIV:SP:15970,1,"HAMEAU DE CHARLEMAGN",45.521154,4.901619,0,0,OIV:SA:CTP15970,Europe/Paris,,OIV, +OIV:SP:6646,1,"PLACE",45.406959,4.868065,0,0,OIV:SA:CTP6646,Europe/Paris,,OIV, +OIV:SP:6648,1,"PLACE",45.406904,4.867844,0,0,OIV:SA:CTP6646,Europe/Paris,,OIV, +OIV:SP:6650,1,"LES MEUILLES",45.406471,4.857001,0,0,OIV:SA:CTP6650,Europe/Paris,,OIV, +OIV:SP:6652,1,"LES MEUILLES",45.406484,4.856864,0,0,OIV:SA:CTP6650,Europe/Paris,,OIV, +OIV:SP:6654,1,"BASCULE",45.406431,4.862377,0,0,OIV:SA:CTP6654,Europe/Paris,,OIV, +OIV:SP:6656,1,"BASCULE",45.406349,4.862401,0,0,OIV:SA:CTP6654,Europe/Paris,,OIV, +OIV:SP:6666,1,"CENTRE",45.429465,4.83854,0,0,OIV:SA:CTP6666,Europe/Paris,,OIV, +OIV:SP:6669,1,"CENTRE",45.429474,4.838554,0,0,OIV:SA:CTP6666,Europe/Paris,,OIV, +OIV:SP:6677,1,"LE CUILLERY",45.413115,4.841134,0,0,OIV:SA:CTP6677,Europe/Paris,,OIV, +OIV:SP:6679,1,"LE CUILLERY",45.413135,4.840999,0,0,OIV:SA:CTP6677,Europe/Paris,,OIV, +OIV:SP:67,1,"LE PIALLIER",45.480311,5.016546,0,0,OIV:SA:CTP67,Europe/Paris,,OIV, +OIV:SP:70,1,"MOULIN DE LA GARDE",45.482589,4.989995,0,0,OIV:SA:CTP70,Europe/Paris,,OIV, +OIV:SP:7569,1,"LE CIVAS",45.472133,4.973342,0,0,OIV:SA:CTP7569,Europe/Paris,,OIV, +OIV:SP:7571,1,"LE CIVAS",45.472101,4.97325,0,0,OIV:SA:CTP7569,Europe/Paris,,OIV, +OIV:SP:7585,1,"MAIRIE",45.473865,4.997592,0,0,OIV:SA:CTP7585,Europe/Paris,,OIV, +OIV:SP:7587,1,"MAIRIE",45.473865,4.997592,0,0,OIV:SA:CTP7585,Europe/Paris,,OIV, +OIV:SP:7597,1,"LE PINET",45.463783,5.00167,0,0,OIV:SA:CTP7597,Europe/Paris,,OIV, +OIV:SP:7599,1,"LE PINET",45.463775,5.00153,0,0,OIV:SA:CTP7597,Europe/Paris,,OIV, +OIV:SP:7604,1,"LA MARTINIERE",45.463559,4.983094,0,0,OIV:SA:CTP7604,Europe/Paris,,OIV, +OIV:SP:7606,1,"LA MARTINIERE",45.463562,4.983131,0,0,OIV:SA:CTP7604,Europe/Paris,,OIV, +OIV:SP:7608,1,"CHEZ PISTOLET",45.457591,4.998844,0,0,OIV:SA:CTP7608,Europe/Paris,,OIV, +OIV:SP:7610,1,"CHEZ PISTOLET",45.457029,4.998111,0,0,OIV:SA:CTP7608,Europe/Paris,,OIV, +OIV:SP:7616,1,"LE RAJAT 1",45.466981,5.079673,0,0,OIV:SA:CTP7616,Europe/Paris,,OIV, +OIV:SP:7618,1,"LE RAJAT 1",45.466907,5.079721,0,0,OIV:SA:CTP7616,Europe/Paris,,OIV, +OIV:SP:7622,1,"LE RAJAT 2",45.467859,5.065632,0,0,OIV:SA:CTP7622,Europe/Paris,,OIV, +OIV:SP:7624,1,"LE RAJAT 2",45.467831,5.065624,0,0,OIV:SA:CTP7622,Europe/Paris,,OIV, +OIV:SP:7626,1,"PLACE",45.470206,5.054654,0,0,OIV:SA:CTP7626,Europe/Paris,,OIV, +OIV:SP:7628,1,"PLACE",45.470243,5.054813,0,0,OIV:SA:CTP7626,Europe/Paris,,OIV, +OIV:SP:7648,1,"LE MOULIN",45.467049,5.089028,0,0,OIV:SA:CTP7648,Europe/Paris,,OIV, +OIV:SP:7650,1,"LE MOULIN",45.467098,5.089013,0,0,OIV:SA:CTP7648,Europe/Paris,,OIV, +OIV:SP:7656,1,"QUARTIER EGLISE",45.470912,5.104061,0,0,OIV:SA:CTP7656,Europe/Paris,,OIV, +OIV:SP:7658,1,"QUARTIER EGLISE",45.47088,5.104024,0,0,OIV:SA:CTP7656,Europe/Paris,,OIV, +OIV:SP:7663,1,"PONT DU RECOURS",45.467171,5.106923,0,0,OIV:SA:CTP7663,Europe/Paris,,OIV, +OIV:SP:7665,1,"PONT DU RECOURS",45.467116,5.107027,0,0,OIV:SA:CTP7663,Europe/Paris,,OIV, +OIV:SP:8264,1,"CHAMP DE MARS",45.521498,4.871101,0,0,OIV:SA:CTP8264,Europe/Paris,,OIV, +OIV:SP:8266,1,"CHAMP DE MARS",45.521389,4.871276,0,0,OIV:SA:CTP8264,Europe/Paris,,OIV, +OIV:SP:8267,1,"JARDIN DE VILLE",45.522046,4.870415,0,0,OIV:SA:CTP8267,Europe/Paris,,OIV, +OIV:SP:8269,1,"GARE ROUTIERE ALLOBR",45.520533,4.870561,0,0,OIV:SA:CTP8269,Europe/Paris,,OIV, +OIV:SP:8272,1,"GARE DE VIENNE",45.521162,4.873979,0,0,OIV:SA:CTP8272,Europe/Paris,,OIV, +OIV:SP:8274,1,"GARE DE VIENNE",45.521307,4.874171,0,0,OIV:SA:CTP8272,Europe/Paris,,OIV, +OIV:SP:8276,1,"SNCF BRILLIER",45.521752,4.872642,0,0,OIV:SA:CTP8276,Europe/Paris,,OIV, +OIV:SP:8288,1,"PLACE PICHAT",45.526137,4.872469,0,0,OIV:SA:CTP8288,Europe/Paris,,OIV, +OIV:SP:8290,1,"JARDIN DE VILLE",45.522229,4.870186,0,0,OIV:SA:CTP8267,Europe/Paris,,OIV, +OIV:SP:8293,1,"TABOURETTE ROUTIER",45.515721,4.936575,0,0,OIV:SA:CTP8293,Europe/Paris,,OIV, +OIV:SP:8295,1,"TABOURETTE ROUTIER",45.515921,4.936208,0,0,OIV:SA:CTP8293,Europe/Paris,,OIV, +OIV:SP:8299,1,"LE PINAY",45.515942,4.944729,0,0,OIV:SA:CTP8299,Europe/Paris,,OIV, +OIV:SP:8301,1,"LE PINAY",45.51584,4.944673,0,0,OIV:SA:CTP8299,Europe/Paris,,OIV, +OIV:SP:8303,1,"LOGIS NEUF",45.512435,4.955828,0,0,OIV:SA:CTP8303,Europe/Paris,,OIV, +OIV:SP:8305,1,"LOGIS NEUF",45.51256,4.957663,0,0,OIV:SA:CTP8303,Europe/Paris,,OIV, +OIV:SP:8309,1,"LE CHAMBOUD",45.480724,4.961002,0,0,OIV:SA:CTP8309,Europe/Paris,,OIV, +OIV:SP:8311,1,"LE CHAMBOUD",45.480808,4.961058,0,0,OIV:SA:CTP8309,Europe/Paris,,OIV, +OIV:SP:8319,1,"LE COLAS",45.479633,4.98901,0,0,OIV:SA:CTP8319,Europe/Paris,,OIV, +OIV:SP:8321,1,"LE COLAS",45.479643,4.989011,0,0,OIV:SA:CTP8319,Europe/Paris,,OIV, +OIV:SP:8323,1,"LA MARAUQUE",45.479689,4.989319,0,0,OIV:SA:CTP8323,Europe/Paris,,OIV, +OIV:SP:8324,1,"LA MARAUQUE",45.479644,4.989263,0,0,OIV:SA:CTP8323,Europe/Paris,,OIV, +OIV:SP:8326,1,"LE BRACHET",45.477805,4.979324,0,0,OIV:SA:CTP8326,Europe/Paris,,OIV, +OIV:SP:8328,1,"LE BURON",45.477941,4.97741,0,0,OIV:SA:CTP8328,Europe/Paris,,OIV, +OIV:SP:8329,1,"LE BRACHET",45.47774,4.979325,0,0,OIV:SA:CTP8326,Europe/Paris,,OIV, +OIV:SP:8330,1,"LE BURON",45.478002,4.977374,0,0,OIV:SA:CTP8328,Europe/Paris,,OIV, +OIV:SP:8332,1,"LE PLAN NORD",45.514519,4.98086,0,0,OIV:SA:CTP8332,Europe/Paris,,OIV, +OIV:SP:8334,1,"LE PLAN NORD",45.514658,4.981164,0,0,OIV:SA:CTP8332,Europe/Paris,,OIV, +OIV:SP:8336,1,"BOIS BALAY",45.516914,4.958892,0,0,OIV:SA:CTP8336,Europe/Paris,,OIV, +OIV:SP:8338,1,"BOIS BALAY",45.516869,4.958623,0,0,OIV:SA:CTP8336,Europe/Paris,,OIV, +OIV:SP:8340,1,"PORTE DES ALPES",45.507056,4.981932,0,0,OIV:SA:CTP8340,Europe/Paris,,OIV, +OIV:SP:8344,1,"LES DAMES",45.514987,4.975167,0,0,OIV:SA:CTP8344,Europe/Paris,,OIV, +OIV:SP:8345,1,"LES DAMES",45.514951,4.974577,0,0,OIV:SA:CTP8344,Europe/Paris,,OIV, +OIV:SP:8348,1,"LE MICHALIN",45.515868,4.969605,0,0,OIV:SA:CTP8348,Europe/Paris,,OIV, +OIV:SP:8350,1,"LE MICHALIN",45.51579,4.969532,0,0,OIV:SA:CTP8348,Europe/Paris,,OIV, +OIV:SP:8352,1,"GARAGE BERAUD",45.510067,4.967246,0,0,OIV:SA:CTP8352,Europe/Paris,,OIV, +OIV:SP:8354,1,"GARAGE BERAUD",45.510094,4.966697,0,0,OIV:SA:CTP8352,Europe/Paris,,OIV, +OIV:SP:8356,1,"CHEZ ROUX",45.520667,4.990884,0,0,OIV:SA:CTP8356,Europe/Paris,,OIV, +OIV:SP:8358,1,"CHEZ ROUX",45.520644,4.990805,0,0,OIV:SA:CTP8356,Europe/Paris,,OIV, +OIV:SP:8361,1,"LES GRANGES",45.510977,5.005012,0,0,OIV:SA:CTP8361,Europe/Paris,,OIV, +OIV:SP:8363,1,"LES GRANGES",45.510999,5.005147,0,0,OIV:SA:CTP8361,Europe/Paris,,OIV, +OIV:SP:8367,1,"LE QUINQUELIN",45.512934,4.988123,0,0,OIV:SA:CTP8367,Europe/Paris,,OIV, +OIV:SP:8382,1,"NARBORIE",45.499036,5.033314,0,0,OIV:SA:CTP8382,Europe/Paris,,OIV, +OIV:SP:8384,1,"NARBORIE",45.499274,5.032736,0,0,OIV:SA:CTP8382,Europe/Paris,,OIV, +OIV:SP:8388,1,"LA DETOURBE",45.495066,5.040828,0,0,OIV:SA:CTP8388,Europe/Paris,,OIV, +OIV:SP:8390,1,"LA DETOURBE",45.495296,5.040069,0,0,OIV:SA:CTP8388,Europe/Paris,,OIV, +OIV:SP:8392,1,"CHATEAU GRILLET",45.506608,5.02379,0,0,OIV:SA:CTP8392,Europe/Paris,,OIV, +OIV:SP:8394,1,"CHATEAU GRILLET",45.506597,5.0237,0,0,OIV:SA:CTP8392,Europe/Paris,,OIV, +OIV:SP:8482,1,"VILLENEUVE PLACE",45.474272,5.102925,0,0,OIV:SA:CTP8482,Europe/Paris,,OIV, +OIV:SP:8484,1,"VILLENEUVE PLACE",45.474275,5.103063,0,0,OIV:SA:CTP8482,Europe/Paris,,OIV, +OIV:SP:8947,1,"LYCEE E.FITZGERALD",45.530127,4.865439,0,0,OIV:SA:CTP8947,Europe/Paris,,OIV, +OIV:SP:8951,1,"BEAUREGARD",45.56641,4.824796,0,0,OIV:SA:CTP8951,Europe/Paris,,OIV, +OIV:SP:8953,1,"BEAUREGARD",45.566498,4.824856,0,0,OIV:SA:CTP8951,Europe/Paris,,OIV, +OIV:SP:8955,1,"BON ACCUEIL",45.543456,4.866537,0,0,OIV:SA:CTP8955,Europe/Paris,,OIV, +OIV:SP:8957,1,"BON ACCUEIL",45.543384,4.866425,0,0,OIV:SA:CTP8955,Europe/Paris,,OIV, +OIV:SP:8961,1,"COLLEGE GRANGE",45.547436,4.863568,0,0,OIV:SA:CTP8961,Europe/Paris,,OIV, +OIV:SP:8967,1,"PONSARD",45.526628,4.878164,0,0,OIV:SA:CTP8967,Europe/Paris,,OIV, +OIV:SP:8969,1,"NICOLAS CHORIER",45.526865,4.878173,0,0,OIV:SA:CTP8969,Europe/Paris,,OIV, +OIV:SP:8971,1,"CHORIER PONSARD",45.527008,4.878516,0,0,OIV:SA:CTP8971,Europe/Paris,,OIV, +OIV:SP:8974,1,"VILLAGE",45.558615,4.918036,0,0,OIV:SA:CTP8974,Europe/Paris,,OIV, +OIV:SP:8976,1,"VILLAGE",45.558655,4.918377,0,0,OIV:SA:CTP8974,Europe/Paris,,OIV, +OIV:SP:8979,1,"LES JARDINS DE NEVES",45.559895,4.923557,0,0,OIV:SA:CTP8979,Europe/Paris,,OIV, +OIV:SP:8981,1,"LES JARDINS DE NEVES",45.559905,4.923476,0,0,OIV:SA:CTP8979,Europe/Paris,,OIV, +OIV:SP:8984,1,"GRANGE BASSE",45.544511,4.897011,0,0,OIV:SA:CTP8984,Europe/Paris,,OIV, +OIV:SP:8985,1,"GRANGE BASSE",45.544416,4.897101,0,0,OIV:SA:CTP8984,Europe/Paris,,OIV, +OIV:SP:8988,1,"MAIRIE",45.529956,4.912309,0,0,OIV:SA:CTP8988,Europe/Paris,,OIV, +OIV:SP:8990,1,"MAIRIE",45.530058,4.912046,0,0,OIV:SA:CTP8988,Europe/Paris,,OIV, +OIV:SP:8992,1,"LE GRAND CHENE",45.556377,4.903321,0,0,OIV:SA:CTP8992,Europe/Paris,,OIV, +OIV:SP:8994,1,"LE GRAND CHENE",45.556065,4.902829,0,0,OIV:SA:CTP8992,Europe/Paris,,OIV, +OIV:SP:8996,1,"GRANGE",45.546968,4.898543,0,0,OIV:SA:CTP8996,Europe/Paris,,OIV, +OIV:SP:8998,1,"GRANGE",45.546955,4.898656,0,0,OIV:SA:CTP8996,Europe/Paris,,OIV, +OIV:SP:9000,1,"LA VEGA",45.529769,4.902423,0,0,OIV:SA:CTP9000,Europe/Paris,,OIV, +OIV:SP:9002,1,"LA VEGA",45.529775,4.902301,0,0,OIV:SA:CTP9000,Europe/Paris,,OIV, +OIV:SP:9004,1,"RONCEVEAUX",45.525734,4.907191,0,0,OIV:SA:CTP9004,Europe/Paris,,OIV, +OIV:SP:9006,1,"RONCEVEAUX",45.525526,4.907421,0,0,OIV:SA:CTP9004,Europe/Paris,,OIV, +OIV:SP:9007,1,"CHARLEMAGNE",45.526791,4.90364,0,0,OIV:SA:CTP9007,Europe/Paris,,OIV, +OIV:SP:9008,1,"CHARLEMAGNE",45.52662,4.904169,0,0,OIV:SA:CTP9007,Europe/Paris,,OIV, +OIV:SP:9010,1,"COLLEGE BRASSENS",45.527536,4.925881,0,0,OIV:SA:CTP9010,Europe/Paris,,OIV, +OIV:SP:9018,1,"PLACE",45.553703,5.005222,0,0,OIV:SA:CTP9018,Europe/Paris,,OIV, +OIV:SP:9020,1,"PLACE",45.553766,5.005233,0,0,OIV:SA:CTP9018,Europe/Paris,,OIV, +OIV:SP:9024,1,"SUBTUER",45.552625,4.982617,0,0,OIV:SA:CTP9024,Europe/Paris,,OIV, +OIV:SP:9026,1,"BARATON",45.548872,4.962184,0,0,OIV:SA:CTP9026,Europe/Paris,,OIV, +OIV:SP:9028,1,"BARATON",45.548899,4.962327,0,0,OIV:SA:CTP9026,Europe/Paris,,OIV, +OIV:SP:9030,1,"PEAGE STATION AGIP",45.563738,4.992614,0,0,OIV:SA:CTP9030,Europe/Paris,,OIV, +OIV:SP:9032,1,"PEAGE STATION AGIP",45.563634,4.992664,0,0,OIV:SA:CTP9030,Europe/Paris,,OIV, +OIV:SP:9038,1,"AVANT LE PALAIS",45.550731,4.975231,0,0,OIV:SA:CTP9038,Europe/Paris,,OIV, +OIV:SP:9040,1,"SOUS COTE",45.56166,4.981506,0,0,OIV:SA:CTP9040,Europe/Paris,,OIV, +OIV:SP:9043,1,"SOUS COTE",45.561509,4.981259,0,0,OIV:SA:CTP9040,Europe/Paris,,OIV, +OIV:SP:9046,1,"PERRIER LE CLOS",45.557815,4.96272,0,0,OIV:SA:CTP9046,Europe/Paris,,OIV, +OIV:SP:9050,1,"LE PEAGE",45.564274,4.998507,0,0,OIV:SA:CTP9050,Europe/Paris,,OIV, +OIV:SP:9052,1,"LE PEAGE",45.564402,4.998198,0,0,OIV:SA:CTP9050,Europe/Paris,,OIV, +OIV:SP:9697,1,"LE PONT",45.590534,5.002893,0,0,OIV:SA:CTP9697,Europe/Paris,,OIV, +OIV:SP:9701,1,"MAIRIE",45.612285,5.014604,0,0,OIV:SA:CTP9701,Europe/Paris,,OIV, +OIV:SP:9703,1,"MAIRIE",45.61208,5.014188,0,0,OIV:SA:CTP9701,Europe/Paris,,OIV, +OIV:SP:9705,1,"LE CORBET",45.603977,4.998868,0,0,OIV:SA:CTP9705,Europe/Paris,,OIV, +OIV:SP:9707,1,"LE CORBET",45.603977,4.998868,0,0,OIV:SA:CTP9705,Europe/Paris,,OIV, +OIV:SP:9711,1,"SAINT JUST VILLAGE",45.585633,4.998006,0,0,OIV:SA:CTP9711,Europe/Paris,,OIV, +OIV:SP:9713,1,"SAINT JUST VILLAGE",45.585594,4.998116,0,0,OIV:SA:CTP9711,Europe/Paris,,OIV, +OIV:SP:9715,1,"LES VIGNES",45.597851,5.005283,0,0,OIV:SA:CTP9715,Europe/Paris,,OIV, +OIV:SP:9722,1,"LE CHANA",45.590275,4.992688,0,0,OIV:SA:CTP9722,Europe/Paris,,OIV, +OIV:SP:9724,1,"LE CHANA",45.590275,4.992688,0,0,OIV:SA:CTP9722,Europe/Paris,,OIV, +OIV:SP:9729,1,"LE CHENE",45.609141,5.007285,0,0,OIV:SA:CTP9729,Europe/Paris,,OIV, +OIV:SP:9731,1,"LE CHENE",45.609141,5.007285,0,0,OIV:SA:CTP9729,Europe/Paris,,OIV, +OIV:SP:9739,1,"MARTINIERE",45.601221,4.996315,0,0,OIV:SA:CTP9739,Europe/Paris,,OIV, +OIV:SP:9741,1,"MARTINIERE",45.601221,4.996315,0,0,OIV:SA:CTP9739,Europe/Paris,,OIV, +OIV:SP:9743,1,"LE LARPIN",45.588625,4.991703,0,0,OIV:SA:CTP9743,Europe/Paris,,OIV, +OIV:SP:9745,1,"LE LARPIN",45.588645,4.991208,0,0,OIV:SA:CTP9743,Europe/Paris,,OIV, +OIV:SP:9757,1,"LE SULON",45.609004,5.006958,0,0,OIV:SA:CTP9757,Europe/Paris,,OIV, +OIV:SP:9759,1,"LE SULON",45.609004,5.006958,0,0,OIV:SA:CTP9757,Europe/Paris,,OIV, +OIV:SP:9777,1,"LE FAYET PLACE",45.607331,5.037948,0,0,OIV:SA:CTP9777,Europe/Paris,,OIV, +OIV:SP:9779,1,"LE FAYET PLACE",45.607283,5.038273,0,0,OIV:SA:CTP9777,Europe/Paris,,OIV, +OIV:SP:9783,1,"CARNEVAL",45.610043,5.029489,0,0,OIV:SA:CTP9783,Europe/Paris,,OIV, +OIV:SP:9785,1,"CARNEVAL",45.610113,5.02951,0,0,OIV:SA:CTP9783,Europe/Paris,,OIV, +OIV:SP:99,1,"LA BASCULE",45.512145,5.014553,0,0,OIV:SA:CTP99,Europe/Paris,,OIV, +OM1:SP:1,1,"METRO BOUGAINVILLE",43.321973,5.371115,0,0,OM1:SA:CTP1,Europe/Paris,,OM1, +OM1:SP:100,1,"PLACE BOUGAINVILLE",43.319295,5.369126,0,0,OM1:SA:CTP518,Europe/Paris,,OM1, +OM1:SP:1000,1,"SAINT LOUIS PICARDIE",43.347195,5.369271,0,0,OM1:SA:CTP991,Europe/Paris,,OM1, +OM1:SP:1001,1,"AUTOROUTE",43.348688,5.371802,0,0,OM1:SA:CTP990,Europe/Paris,,OM1, +OM1:SP:1002,1,"CHEMIN DE SAINT ANTOINE",43.348807,5.374606,0,0,OM1:SA:CTP989,Europe/Paris,,OM1, +OM1:SP:1003,1,"SAINTE MARTHE",43.339036,5.391953,0,0,OM1:SA:CTP114,Europe/Paris,,OM1, +OM1:SP:1004,1,"FORGE DOLET",43.337639,5.394269,0,0,OM1:SA:CTP986,Europe/Paris,,OM1, +OM1:SP:1005,1,"LA MARGERAY",43.336371,5.397121,0,0,OM1:SA:CTP985,Europe/Paris,,OM1, +OM1:SP:1006,1,"BUSSERINE H. L. M",43.331722,5.398363,0,0,OM1:SA:CTP983,Europe/Paris,,OM1, +OM1:SP:1007,1,"THEATRE DU MERLAN",43.329366,5.397733,0,0,OM1:SA:CTP982,Europe/Paris,,OM1, +OM1:SP:1008,1,"CENTRE CIAL DU MERLAN",43.328578,5.399846,0,0,OM1:SA:CTP981,Europe/Paris,,OM1, +OM1:SP:1009,1,"PROSPER MERIMEE SAINT PAUL",43.329422,5.402096,0,0,OM1:SA:CTP980,Europe/Paris,,OM1, +OM1:SP:101,1,"CASANOVA DE LESSEPS",43.321862,5.374731,0,0,OM1:SA:CTP101,Europe/Paris,,OM1, +OM1:SP:1010,1,"MERLAN SAINTE MARTHE",43.330647,5.405168,0,0,OM1:SA:CTP340,Europe/Paris,,OM1, +OM1:SP:1011,1,"LES HIRONDELLES",43.330916,5.406771,0,0,OM1:SA:CTP979,Europe/Paris,,OM1, +OM1:SP:1012,1,"LA ROSE FUVEAU",43.326663,5.422803,0,0,OM1:SA:CTP978,Europe/Paris,,OM1, +OM1:SP:1013,1,"LA ROSE VILLAGE",43.328608,5.426456,0,0,OM1:SA:CTP977,Europe/Paris,,OM1, +OM1:SP:1016,1,"CANEBIERE BOURSE",43.296538,5.376025,0,0,OM1:SA:CTP1058,Europe/Paris,,OM1, +OM1:SP:1019,1,"LOUBON BELLEVUE",43.311887,5.379264,0,0,OM1:SA:CTP222,Europe/Paris,,OM1, +OM1:SP:102,1,"CASANOVA BARBES",43.323461,5.374138,0,0,OM1:SA:CTP143,Europe/Paris,,OM1, +OM1:SP:1020,1,"LOUBON BARBINI",43.31283,5.383107,0,0,OM1:SA:CTP221,Europe/Paris,,OM1, +OM1:SP:1021,1,"PLACE CAFFO",43.312791,5.384817,0,0,OM1:SA:CTP220,Europe/Paris,,OM1, +OM1:SP:1022,1,"5 AVENUES BUREL",43.316821,5.390142,0,0,OM1:SA:CTP1056,Europe/Paris,,OM1, +OM1:SP:1023,1,"VILLECROZE MARRONNIERS",43.319868,5.392114,0,0,OM1:SA:CTP1055,Europe/Paris,,OM1, +OM1:SP:1024,1,"VILLECROZE BOUGIE",43.322431,5.392423,0,0,OM1:SA:CTP1054,Europe/Paris,,OM1, +OM1:SP:1025,1,"MONET SAINT BARTHELEMY",43.323835,5.393311,0,0,OM1:SA:CTP1053,Europe/Paris,,OM1, +OM1:SP:1026,1,"MONET FLORIDA",43.326128,5.394579,0,0,OM1:SA:CTP1052,Europe/Paris,,OM1, +OM1:SP:1027,1,"MERIMEE COROT",43.327683,5.396854,0,0,OM1:SA:CTP1051,Europe/Paris,,OM1, +OM1:SP:1028,1,"LES LAURIERS",43.328385,5.413854,0,0,OM1:SA:CTP1050,Europe/Paris,,OM1, +OM1:SP:1029,1,"MERLAN TOURELLE",43.341632,5.407542,0,0,OM1:SA:CTP1049,Europe/Paris,,OM1, +OM1:SP:103,1,"CASANOVA ETATS UNIS",43.325481,5.374245,0,0,OM1:SA:CTP2849,Europe/Paris,,OM1, +OM1:SP:1030,1,"MERLAN PAQUERETTES",43.345479,5.408561,0,0,OM1:SA:CTP1048,Europe/Paris,,OM1, +OM1:SP:1031,1,"MERLAN GUYNEMER",43.346791,5.40825,0,0,OM1:SA:CTP1047,Europe/Paris,,OM1, +OM1:SP:1032,1,"LE MERLAN",43.349424,5.407688,0,0,OM1:SA:CTP1032,Europe/Paris,,OM1, +OM1:SP:1035,1,"CHEMIN DES GRIVES",43.351741,5.415367,0,0,OM1:SA:CTP1035,Europe/Paris,,OM1, +OM1:SP:1036,1,"LISSANDRE",43.356634,5.415038,0,0,OM1:SA:CTP1036,Europe/Paris,,OM1, +OM1:SP:1037,1,"PRES CANADEL",43.358262,5.415347,0,0,OM1:SA:CTP1037,Europe/Paris,,OM1, +OM1:SP:1038,1,"GARDIETTE PAGODE",43.359636,5.41351,0,0,OM1:SA:CTP1038,Europe/Paris,,OM1, +OM1:SP:1039,1,"LA BATARELLE ETOILE",43.359727,5.410323,0,0,OM1:SA:CTP1039,Europe/Paris,,OM1, +OM1:SP:104,1,"PLACE DES ETATS UNIS",43.326285,5.375384,0,0,OM1:SA:CTP142,Europe/Paris,,OM1, +OM1:SP:1040,1,"GARDIETTE PAGODE",43.359405,5.413399,0,0,OM1:SA:CTP1038,Europe/Paris,,OM1, +OM1:SP:1041,1,"PRES CANADEL",43.357768,5.415,0,0,OM1:SA:CTP1037,Europe/Paris,,OM1, +OM1:SP:1042,1,"LISSANDRE",43.356078,5.414651,0,0,OM1:SA:CTP1036,Europe/Paris,,OM1, +OM1:SP:1043,1,"L’ESCALLET",43.352771,5.415829,0,0,OM1:SA:CTP1043,Europe/Paris,,OM1, +OM1:SP:1046,1,"LE MERLAN",43.349745,5.407471,0,0,OM1:SA:CTP1032,Europe/Paris,,OM1, +OM1:SP:1047,1,"MERLAN GUYNEMER",43.346979,5.407989,0,0,OM1:SA:CTP1047,Europe/Paris,,OM1, +OM1:SP:1048,1,"MERLAN PAQUERETTES",43.345235,5.408277,0,0,OM1:SA:CTP1048,Europe/Paris,,OM1, +OM1:SP:1049,1,"MERLAN TOURELLE",43.341569,5.407218,0,0,OM1:SA:CTP1049,Europe/Paris,,OM1, +OM1:SP:105,1,"CIMETIERE DU CANET",43.32556,5.37973,0,0,OM1:SA:CTP141,Europe/Paris,,OM1, +OM1:SP:1050,1,"LES LAURIERS",43.328462,5.413674,0,0,OM1:SA:CTP1050,Europe/Paris,,OM1, +OM1:SP:1051,1,"MERIMEE COROT",43.327864,5.39679,0,0,OM1:SA:CTP1051,Europe/Paris,,OM1, +OM1:SP:1052,1,"MONET FLORIDA",43.326606,5.394543,0,0,OM1:SA:CTP1052,Europe/Paris,,OM1, +OM1:SP:1053,1,"MONET SAINT BARTHELEMY",43.323674,5.392982,0,0,OM1:SA:CTP1053,Europe/Paris,,OM1, +OM1:SP:1054,1,"VILLECROZE BOUGIE",43.321878,5.391926,0,0,OM1:SA:CTP1054,Europe/Paris,,OM1, +OM1:SP:1055,1,"VILLECROZE MARRONNIERS",43.319668,5.391858,0,0,OM1:SA:CTP1055,Europe/Paris,,OM1, +OM1:SP:1056,1,"5 AVENUES BUREL",43.316975,5.38946,0,0,OM1:SA:CTP1056,Europe/Paris,,OM1, +OM1:SP:1058,1,"CANEBIERE BOURSE",43.296833,5.377038,0,0,OM1:SA:CTP1058,Europe/Paris,,OM1, +OM1:SP:1059,1,"MERLAN TROMPETTE",43.332334,5.406896,0,0,OM1:SA:CTP1059,Europe/Paris,,OM1, +OM1:SP:106,1,"MORETTI GIBBES",43.324184,5.383537,0,0,OM1:SA:CTP106,Europe/Paris,,OM1, +OM1:SP:1060,1,"MERLAN VERDON",43.333744,5.407576,0,0,OM1:SA:CTP1060,Europe/Paris,,OM1, +OM1:SP:1061,1,"MERLAN BRISSAC",43.336104,5.407431,0,0,OM1:SA:CTP1061,Europe/Paris,,OM1, +OM1:SP:1062,1,"MERLAN VILLAGE",43.338497,5.407707,0,0,OM1:SA:CTP1062,Europe/Paris,,OM1, +OM1:SP:1063,1,"SAINT JEROME IUT",43.341331,5.40893,0,0,OM1:SA:CTP1063,Europe/Paris,,OM1, +OM1:SP:1064,1,"SAINT JEROME IUT",43.341504,5.408545,0,0,OM1:SA:CTP1063,Europe/Paris,,OM1, +OM1:SP:1065,1,"MERLAN VILLAGE",43.338271,5.407448,0,0,OM1:SA:CTP1062,Europe/Paris,,OM1, +OM1:SP:1066,1,"MERLAN BRISSAC",43.336472,5.407155,0,0,OM1:SA:CTP1061,Europe/Paris,,OM1, +OM1:SP:1067,1,"MERLAN VERDON",43.334063,5.40742,0,0,OM1:SA:CTP1060,Europe/Paris,,OM1, +OM1:SP:1068,1,"MERLAN TROMPETTE",43.332838,5.406849,0,0,OM1:SA:CTP1059,Europe/Paris,,OM1, +OM1:SP:1069,1,"METRO MALPASSE",43.320482,5.415684,0,0,OM1:SA:CTP2278,Europe/Paris,,OM1, +OM1:SP:107,1,"MORETTI ROSIERS",43.323402,5.38607,0,0,OM1:SA:CTP107,Europe/Paris,,OM1, +OM1:SP:1070,1,"VALDONNE HOPITAL LAVERAN",43.325939,5.416667,0,0,OM1:SA:CTP1070,Europe/Paris,,OM1, +OM1:SP:1071,1,"SAINT MITRE",43.342582,5.419274,0,0,OM1:SA:CTP1071,Europe/Paris,,OM1, +OM1:SP:1072,1,"SAINT MITRE VILLAGE",43.343708,5.417338,0,0,OM1:SA:CTP1072,Europe/Paris,,OM1, +OM1:SP:1073,1,"SAINT MITRE PARTY",43.346806,5.41594,0,0,OM1:SA:CTP1073,Europe/Paris,,OM1, +OM1:SP:1074,1,"LA BATARELLE BASSE",43.350216,5.415248,0,0,OM1:SA:CTP1074,Europe/Paris,,OM1, +OM1:SP:1075,1,"LISSANDRE",43.35639,5.413176,0,0,OM1:SA:CTP1036,Europe/Paris,,OM1, +OM1:SP:1076,1,"LISSANDRE ECOLES",43.356113,5.410277,0,0,OM1:SA:CTP1076,Europe/Paris,,OM1, +OM1:SP:1077,1,"LA BATARELLE",43.355696,5.408209,0,0,OM1:SA:CTP1077,Europe/Paris,,OM1, +OM1:SP:1078,1,"LISSANDRE ECOLES",43.356044,5.410187,0,0,OM1:SA:CTP1076,Europe/Paris,,OM1, +OM1:SP:1079,1,"LA BATARELLE BASSE",43.350246,5.415114,0,0,OM1:SA:CTP1074,Europe/Paris,,OM1, +OM1:SP:108,1,"MORETTI SAINTE MARTHE",43.323575,5.388235,0,0,OM1:SA:CTP108,Europe/Paris,,OM1, +OM1:SP:1080,1,"SAINT MITRE PARTY",43.347143,5.415773,0,0,OM1:SA:CTP1073,Europe/Paris,,OM1, +OM1:SP:1081,1,"SAINT MITRE VILLAGE",43.342936,5.418233,0,0,OM1:SA:CTP1072,Europe/Paris,,OM1, +OM1:SP:1082,1,"VALDONNE HOPITAL LAVERAN",43.325806,5.416315,0,0,OM1:SA:CTP1070,Europe/Paris,,OM1, +OM1:SP:1083,1,"METRO ROND POINT DU PRADO",43.271902,5.390226,0,0,OM1:SA:CTP1083,Europe/Paris,,OM1, +OM1:SP:1084,1,"SAINT GINIEZ",43.270185,5.386702,0,0,OM1:SA:CTP1084,Europe/Paris,,OM1, +OM1:SP:1085,1,"PARADIS RIVET",43.27288,5.385553,0,0,OM1:SA:CTP1085,Europe/Paris,,OM1, +OM1:SP:1086,1,"PARADIS LORD DUVEEN",43.275619,5.384381,0,0,OM1:SA:CTP1086,Europe/Paris,,OM1, +OM1:SP:1087,1,"PARADIS WULFRAM PUGET",43.277412,5.383627,0,0,OM1:SA:CTP1087,Europe/Paris,,OM1, +OM1:SP:1088,1,"PLACE DELIBES",43.279091,5.383397,0,0,OM1:SA:CTP1088,Europe/Paris,,OM1, +OM1:SP:1089,1,"PERIER PRADO",43.279724,5.386446,0,0,OM1:SA:CTP1089,Europe/Paris,,OM1, +OM1:SP:109,1,"LA MARINE",43.326312,5.388097,0,0,OM1:SA:CTP109,Europe/Paris,,OM1, +OM1:SP:1090,1,"PRADO DUPRE",43.281745,5.386233,0,0,OM1:SA:CTP1090,Europe/Paris,,OM1, +OM1:SP:1091,1,"CASTELLANE",43.285162,5.38431,0,0,OM1:SA:CTP1091,Europe/Paris,,OM1, +OM1:SP:1098,1,"LIBERATION ESPERANDIEU",43.301802,5.393997,0,0,OM1:SA:CTP1098,Europe/Paris,,OM1, +OM1:SP:1099,1,"CINQ AVENUES CHARTREUX",43.303009,5.397398,0,0,OM1:SA:CTP1099,Europe/Paris,,OM1, +OM1:SP:110,1,"BERTRANDON",43.328386,5.387924,0,0,OM1:SA:CTP110,Europe/Paris,,OM1, +OM1:SP:1100,1,"PLACE BROSSOLETTE",43.307253,5.399952,0,0,OM1:SA:CTP1100,Europe/Paris,,OM1, +OM1:SP:1101,1,"CHARTREUX PIERRE ROCHE",43.309616,5.400669,0,0,OM1:SA:CTP1101,Europe/Paris,,OM1, +OM1:SP:1102,1,"SAINT JUST IVALDI",43.311535,5.401153,0,0,OM1:SA:CTP1102,Europe/Paris,,OM1, +OM1:SP:1103,1,"SAINT JUST ACHARD",43.313501,5.402551,0,0,OM1:SA:CTP1103,Europe/Paris,,OM1, +OM1:SP:1104,1,"LES CHARTREUX",43.316147,5.404047,0,0,OM1:SA:CTP1104,Europe/Paris,,OM1, +OM1:SP:1105,1,"SAINT JUST RAGUSE",43.31727,5.405339,0,0,OM1:SA:CTP1105,Europe/Paris,,OM1, +OM1:SP:1106,1,"DAUDET SAINT JUST",43.319142,5.408432,0,0,OM1:SA:CTP1106,Europe/Paris,,OM1, +OM1:SP:1107,1,"DAUDET MICHEL",43.320851,5.410309,0,0,OM1:SA:CTP1107,Europe/Paris,,OM1, +OM1:SP:1108,1,"MALPASSE",43.32237,5.413482,0,0,OM1:SA:CTP1108,Europe/Paris,,OM1, +OM1:SP:1109,1,"LA BOUDINIERE",43.324229,5.416415,0,0,OM1:SA:CTP1109,Europe/Paris,,OM1, +OM1:SP:111,1,"SAINTE MARTHE LE CAMP",43.3311,5.389239,0,0,OM1:SA:CTP111,Europe/Paris,,OM1, +OM1:SP:1110,1,"LA ROSE VERDIERE",43.325387,5.419298,0,0,OM1:SA:CTP1110,Europe/Paris,,OM1, +OM1:SP:1111,1,"DEPOT LA ROSE",43.339566,5.43227,0,0,OM1:SA:CTP1111,Europe/Paris,,OM1, +OM1:SP:1112,1,"DEPOT LA ROSE",43.339898,5.431955,0,0,OM1:SA:CTP1111,Europe/Paris,,OM1, +OM1:SP:1113,1,"LA ROSE VERDIERE",43.325622,5.419274,0,0,OM1:SA:CTP1110,Europe/Paris,,OM1, +OM1:SP:1114,1,"LA BOUDINIERE",43.324021,5.415813,0,0,OM1:SA:CTP1109,Europe/Paris,,OM1, +OM1:SP:1115,1,"MALPASSE",43.322472,5.413057,0,0,OM1:SA:CTP1108,Europe/Paris,,OM1, +OM1:SP:1116,1,"DAUDET MICHEL",43.321219,5.410354,0,0,OM1:SA:CTP1107,Europe/Paris,,OM1, +OM1:SP:1117,1,"MOUTTE DAUDET",43.320405,5.409263,0,0,OM1:SA:CTP1117,Europe/Paris,,OM1, +OM1:SP:1118,1,"METRO SAINT JUST",43.316067,5.405275,0,0,OM1:SA:CTP1118,Europe/Paris,,OM1, +OM1:SP:1119,1,"SAINT JUST VIDAL",43.319574,5.40811,0,0,OM1:SA:CTP1119,Europe/Paris,,OM1, +OM1:SP:112,1,"SAINTE MARTHE JOURDAN",43.333556,5.390786,0,0,OM1:SA:CTP112,Europe/Paris,,OM1, +OM1:SP:1120,1,"SAINT JUST RAGUSE",43.317225,5.405029,0,0,OM1:SA:CTP1105,Europe/Paris,,OM1, +OM1:SP:1121,1,"LES CHARTREUX",43.315431,5.403603,0,0,OM1:SA:CTP1104,Europe/Paris,,OM1, +OM1:SP:1122,1,"SAINT JUST ACHARD",43.313236,5.402069,0,0,OM1:SA:CTP1103,Europe/Paris,,OM1, +OM1:SP:1123,1,"SAINT JUST IVALDI",43.311089,5.400735,0,0,OM1:SA:CTP1102,Europe/Paris,,OM1, +OM1:SP:1124,1,"COROT MOUTTE",43.321167,5.407764,0,0,OM1:SA:CTP1124,Europe/Paris,,OM1, +OM1:SP:1125,1,"CHARTREUX PIERRE ROCHE",43.310158,5.400562,0,0,OM1:SA:CTP1101,Europe/Paris,,OM1, +OM1:SP:1126,1,"PLACE BROSSOLETTE",43.307278,5.399707,0,0,OM1:SA:CTP1100,Europe/Paris,,OM1, +OM1:SP:1127,1,"METRO CINQ AVENUES",43.303208,5.396731,0,0,OM1:SA:CTP1127,Europe/Paris,,OM1, +OM1:SP:113,1,"SAINTE MARTHE PEUPLIERS",43.335987,5.392259,0,0,OM1:SA:CTP113,Europe/Paris,,OM1, +OM1:SP:1131,1,"PARADIS SYLVABELLE",43.289669,5.378222,0,0,OM1:SA:CTP1131,Europe/Paris,,OM1, +OM1:SP:1132,1,"PARADIS DRAGON",43.287794,5.379033,0,0,OM1:SA:CTP1132,Europe/Paris,,OM1, +OM1:SP:1133,1,"PARADIS SAINTE VICTOIRE",43.286329,5.379632,0,0,OM1:SA:CTP1133,Europe/Paris,,OM1, +OM1:SP:1134,1,"PARADIS FIOLLE",43.284171,5.380564,0,0,OM1:SA:CTP1134,Europe/Paris,,OM1, +OM1:SP:1135,1,"PARADIS MADAGASCAR",43.281705,5.381591,0,0,OM1:SA:CTP1135,Europe/Paris,,OM1, +OM1:SP:1136,1,"PLACE DELIBES",43.278573,5.382975,0,0,OM1:SA:CTP1088,Europe/Paris,,OM1, +OM1:SP:1137,1,"PARADIS WULFRAM PUGET",43.276962,5.383665,0,0,OM1:SA:CTP1087,Europe/Paris,,OM1, +OM1:SP:1138,1,"PARADIS LORD DUVEEN",43.275223,5.384397,0,0,OM1:SA:CTP1086,Europe/Paris,,OM1, +OM1:SP:1139,1,"PARADIS RIVET",43.27333,5.38522,0,0,OM1:SA:CTP1085,Europe/Paris,,OM1, +OM1:SP:114,1,"SAINTE MARTHE",43.338767,5.391914,0,0,OM1:SA:CTP114,Europe/Paris,,OM1, +OM1:SP:1140,1,"PARADIS D'URVILLE",43.272058,5.385681,0,0,OM1:SA:CTP1140,Europe/Paris,,OM1, +OM1:SP:1141,1,"SAINT GINIEZ",43.270472,5.386409,0,0,OM1:SA:CTP1084,Europe/Paris,,OM1, +OM1:SP:1142,1,"PRADO SAINT GINIEZ",43.27061,5.388533,0,0,OM1:SA:CTP1142,Europe/Paris,,OM1, +OM1:SP:1144,1,"METRO SAINT JUST",43.315961,5.405528,0,0,OM1:SA:CTP1118,Europe/Paris,,OM1, +OM1:SP:1145,1,"COROT LACORDAIRE",43.323816,5.405369,0,0,OM1:SA:CTP1145,Europe/Paris,,OM1, +OM1:SP:1146,1,"PARC COROT",43.324504,5.403004,0,0,OM1:SA:CTP1146,Europe/Paris,,OM1, +OM1:SP:1147,1,"CITE SAINT JUST",43.325109,5.401952,0,0,OM1:SA:CTP1147,Europe/Paris,,OM1, +OM1:SP:1148,1,"C.F.A COROT",43.325495,5.400716,0,0,OM1:SA:CTP1148,Europe/Paris,,OM1, +OM1:SP:1149,1,"CHAMPFLEURI",43.32603,5.398688,0,0,OM1:SA:CTP1149,Europe/Paris,,OM1, +OM1:SP:115,1,"NUNGESSER",43.340782,5.386834,0,0,OM1:SA:CTP115,Europe/Paris,,OM1, +OM1:SP:1150,1,"COROT MONET",43.326986,5.396041,0,0,OM1:SA:CTP1150,Europe/Paris,,OM1, +OM1:SP:1151,1,"LES FLAMANTS",43.332227,5.404008,0,0,OM1:SA:CTP1151,Europe/Paris,,OM1, +OM1:SP:1152,1,"COROT MONET",43.326748,5.396213,0,0,OM1:SA:CTP1150,Europe/Paris,,OM1, +OM1:SP:1153,1,"CHAMPFLEURI",43.325352,5.400388,0,0,OM1:SA:CTP1149,Europe/Paris,,OM1, +OM1:SP:1154,1,"CITE SAINT JUST",43.324654,5.402457,0,0,OM1:SA:CTP1147,Europe/Paris,,OM1, +OM1:SP:1155,1,"PARC COROT",43.324065,5.403904,0,0,OM1:SA:CTP1146,Europe/Paris,,OM1, +OM1:SP:1156,1,"COROT LACORDAIRE",43.322518,5.406753,0,0,OM1:SA:CTP1145,Europe/Paris,,OM1, +OM1:SP:1158,1,"SAINT PIERRE PETITE PORTE",43.290414,5.419968,0,0,OM1:SA:CTP1158,Europe/Paris,,OM1, +OM1:SP:1159,1,"SAINT PIERRE JEANNETTE",43.290513,5.422792,0,0,OM1:SA:CTP1159,Europe/Paris,,OM1, +OM1:SP:116,1,"LA SIMIANE",43.341974,5.386627,0,0,OM1:SA:CTP116,Europe/Paris,,OM1, +OM1:SP:1160,1,"LOMBARD PARETTE",43.289346,5.427087,0,0,OM1:SA:CTP1160,Europe/Paris,,OM1, +OM1:SP:1161,1,"LOMBARD BEZOMBES",43.288824,5.429915,0,0,OM1:SA:CTP1161,Europe/Paris,,OM1, +OM1:SP:1162,1,"LOMBARD REBATTU",43.288882,5.43291,0,0,OM1:SA:CTP1162,Europe/Paris,,OM1, +OM1:SP:1163,1,"LOMBARD MIREILLE LAUZE",43.289213,5.437015,0,0,OM1:SA:CTP1163,Europe/Paris,,OM1, +OM1:SP:1164,1,"ALLARD MIREILLE LAUZE",43.289274,5.438643,0,0,OM1:SA:CTP1164,Europe/Paris,,OM1, +OM1:SP:1165,1,"LA POMME EGLISE",43.290201,5.442041,0,0,OM1:SA:CTP1165,Europe/Paris,,OM1, +OM1:SP:1166,1,"LA POMME CAMPANULES",43.291248,5.443784,0,0,OM1:SA:CTP1166,Europe/Paris,,OM1, +OM1:SP:1167,1,"FOLLEREAU LA POMME",43.293008,5.445751,0,0,OM1:SA:CTP1167,Europe/Paris,,OM1, +OM1:SP:1168,1,"LES CAILLOLS (CENTRE URBAIN)",43.294725,5.445142,0,0,OM1:SA:CTP1168,Europe/Paris,,OM1, +OM1:SP:1169,1,"CLAIRVAL LES COMTES",43.293421,5.451055,0,0,OM1:SA:CTP1169,Europe/Paris,,OM1, +OM1:SP:117,1,"TOUR SAINTE",43.344006,5.384763,0,0,OM1:SA:CTP117,Europe/Paris,,OM1, +OM1:SP:1170,1,"H.L.M ROUGUIERE",43.293207,5.454724,0,0,OM1:SA:CTP1170,Europe/Paris,,OM1, +OM1:SP:1171,1,"LA ROUGUIERE",43.29198,5.459496,0,0,OM1:SA:CTP1171,Europe/Paris,,OM1, +OM1:SP:1172,1,"CARTONNERIE",43.290007,5.46366,0,0,OM1:SA:CTP1172,Europe/Paris,,OM1, +OM1:SP:1173,1,"PETIT SAINT MARCEL",43.289264,5.465996,0,0,OM1:SA:CTP1173,Europe/Paris,,OM1, +OM1:SP:1174,1,"L'AUDIENCE",43.295967,5.486848,0,0,OM1:SA:CTP1174,Europe/Paris,,OM1, +OM1:SP:1175,1,"COLLEGE LE RUISSATEL",43.295759,5.489336,0,0,OM7:SA:CTP5000062,Europe/Paris,,OM1, +OM1:SP:1176,1,"LES ACCATES",43.2975,5.497127,0,0,OM1:SA:CTP1176,Europe/Paris,,OM1, +OM1:SP:1177,1,"LES QUATRE SAISONS",43.299626,5.501873,0,0,OM1:SA:CTP1177,Europe/Paris,,OM1, +OM1:SP:1178,1,"CAMOINS LES BAINS",43.301068,5.503923,0,0,OM1:SA:CTP1178,Europe/Paris,,OM1, +OM1:SP:1179,1,"CAMOINS LES CLOS",43.301107,5.507176,0,0,OM1:SA:CTP1179,Europe/Paris,,OM1, +OM1:SP:118,1,"COXE MASSENET",43.345805,5.38221,0,0,OM1:SA:CTP118,Europe/Paris,,OM1, +OM1:SP:1180,1,"CAMOINS MONTEE D EOURES",43.300935,5.510565,0,0,OM1:SA:CTP1180,Europe/Paris,,OM1, +OM1:SP:1181,1,"EOURES SAINT ROCH",43.300235,5.514171,0,0,OM1:SA:CTP1181,Europe/Paris,,OM1, +OM1:SP:1182,1,"EOURES NOTRE DAME",43.300386,5.518513,0,0,OM1:SA:CTP1182,Europe/Paris,,OM1, +OM1:SP:1183,1,"EOURES VILLAGE",43.301145,5.520821,0,0,OM1:SA:CTP1183,Europe/Paris,,OM1, +OM1:SP:1184,1,"EOURES CIGALES",43.30113,5.523135,0,0,OM1:SA:CTP1184,Europe/Paris,,OM1, +OM1:SP:1185,1,"EOURES",43.301311,5.526125,0,0,OM1:SA:CTP1185,Europe/Paris,,OM1, +OM1:SP:1186,1,"EOURES CIGALES",43.301284,5.523094,0,0,OM1:SA:CTP1184,Europe/Paris,,OM1, +OM1:SP:1187,1,"EOURES VILLAGE",43.301258,5.520347,0,0,OM1:SA:CTP1183,Europe/Paris,,OM1, +OM1:SP:1188,1,"EOURES NOTRE DAME",43.300518,5.518311,0,0,OM1:SA:CTP1182,Europe/Paris,,OM1, +OM1:SP:1189,1,"EOURES SAINT ROCH",43.300435,5.51412,0,0,OM1:SA:CTP1181,Europe/Paris,,OM1, +OM1:SP:119,1,"SAINT JOSEPH",43.347166,5.378918,0,0,OM1:SA:CTP119,Europe/Paris,,OM1, +OM1:SP:1191,1,"CAMOINS LES CLOS",43.301258,5.50695,0,0,OM1:SA:CTP1179,Europe/Paris,,OM1, +OM1:SP:1192,1,"CAMOINS LES BAINS",43.301059,5.503615,0,0,OM1:SA:CTP1178,Europe/Paris,,OM1, +OM1:SP:1193,1,"LES QUATRE SAISONS",43.299843,5.501836,0,0,OM1:SA:CTP1177,Europe/Paris,,OM1, +OM1:SP:1194,1,"LES ACCATES",43.297556,5.49644,0,0,OM1:SA:CTP1176,Europe/Paris,,OM1, +OM1:SP:1195,1,"COLLEGE LE RUISSATEL",43.295689,5.488335,0,0,OM7:SA:CTP5000062,Europe/Paris,,OM1, +OM1:SP:1196,1,"L'AUDIENCE",43.296276,5.486422,0,0,OM1:SA:CTP1174,Europe/Paris,,OM1, +OM1:SP:1197,1,"LA MONTRE",43.29087,5.472325,0,0,OM1:SA:CTP1197,Europe/Paris,,OM1, +OM1:SP:1198,1,"PETIT SAINT MARCEL",43.289346,5.466295,0,0,OM1:SA:CTP1173,Europe/Paris,,OM1, +OM1:SP:1199,1,"CARTONNERIE",43.290814,5.462818,0,0,OM1:SA:CTP1172,Europe/Paris,,OM1, +OM1:SP:12,1,"SAINT LOUIS ROVE",43.347945,5.358578,0,0,OM1:SA:CTP12,Europe/Paris,,OM1, +OM1:SP:120,1,"SAINT JOSEPH LES LIONS",43.349281,5.375666,0,0,OM1:SA:CTP120,Europe/Paris,,OM1, +OM1:SP:1200,1,"LA ROUGUIERE",43.292398,5.459038,0,0,OM1:SA:CTP1171,Europe/Paris,,OM1, +OM1:SP:1201,1,"H.L.M ROUGUIERE",43.293371,5.454967,0,0,OM1:SA:CTP1170,Europe/Paris,,OM1, +OM1:SP:1202,1,"CLAIRVAL LES COMTES",43.293681,5.451401,0,0,OM1:SA:CTP1169,Europe/Paris,,OM1, +OM1:SP:1203,1,"LES CAILLOLS (CENTRE URBAIN)",43.294945,5.444994,0,0,OM1:SA:CTP1168,Europe/Paris,,OM1, +OM1:SP:1204,1,"FOLLEREAU LA POMME",43.292836,5.445471,0,0,OM1:SA:CTP1167,Europe/Paris,,OM1, +OM1:SP:1205,1,"LA POMME CAMPANULES",43.291159,5.442192,0,0,OM1:SA:CTP1166,Europe/Paris,,OM1, +OM1:SP:1206,1,"GARE DE LA POMME",43.290695,5.439889,0,0,OM1:SA:CTP1206,Europe/Paris,,OM1, +OM1:SP:1207,1,"LOMBARD MIREILLE LAUZE",43.289363,5.436173,0,0,OM1:SA:CTP1163,Europe/Paris,,OM1, +OM1:SP:1208,1,"LOMBARD REBATTU",43.289063,5.43319,0,0,OM1:SA:CTP1162,Europe/Paris,,OM1, +OM1:SP:1209,1,"LOMBARD BEZOMBES",43.289017,5.429766,0,0,OM1:SA:CTP1161,Europe/Paris,,OM1, +OM1:SP:121,1,"CASTELLAS LES LIONS",43.3506,5.374479,0,0,OM1:SA:CTP121,Europe/Paris,,OM1, +OM1:SP:1210,1,"LOMBARD PARETTE",43.290085,5.426105,0,0,OM1:SA:CTP1160,Europe/Paris,,OM1, +OM1:SP:1211,1,"SAINT PIERRE JEANNETTE",43.290673,5.42221,0,0,OM1:SA:CTP1159,Europe/Paris,,OM1, +OM1:SP:1212,1,"SAINT PIERRE PETITE PORTE",43.290588,5.420174,0,0,OM1:SA:CTP1158,Europe/Paris,,OM1, +OM1:SP:1214,1,"LES CAMOINS",43.301288,5.508961,0,0,OM1:SA:CTP1214,Europe/Paris,,OM1, +OM1:SP:1215,1,"LA TREILLE CAMPAGNE",43.303841,5.505948,0,0,OM1:SA:CTP1215,Europe/Paris,,OM1, +OM1:SP:1216,1,"LA TREILLE THERMAL",43.305668,5.506517,0,0,OM1:SA:CTP1216,Europe/Paris,,OM1, +OM1:SP:1217,1,"LA TREILLE CAMOINS",43.307303,5.508393,0,0,OM1:SA:CTP1217,Europe/Paris,,OM1, +OM1:SP:1218,1,"LA TREILLE PLUVENCE",43.308114,5.509866,0,0,OM1:SA:CTP1218,Europe/Paris,,OM1, +OM1:SP:1219,1,"LA TREILLE",43.311418,5.512487,0,0,OAE:SA:CTP40042,Europe/Paris,,OM1, +OM1:SP:122,1,"LE CASTELLAS",43.352528,5.372757,0,0,OM1:SA:CTP122,Europe/Paris,,OM1, +OM1:SP:1220,1,"LA TREILLE PLUVENCE",43.308159,5.509573,0,0,OM1:SA:CTP1218,Europe/Paris,,OM1, +OM1:SP:1221,1,"LA TREILLE CAMOINS",43.30741,5.508115,0,0,OM1:SA:CTP1217,Europe/Paris,,OM1, +OM1:SP:1222,1,"LA TREILLE THERMAL",43.305978,5.506374,0,0,OM1:SA:CTP1216,Europe/Paris,,OM1, +OM1:SP:1223,1,"LA TREILLE CAMPAGNE",43.304372,5.505928,0,0,OM1:SA:CTP1215,Europe/Paris,,OM1, +OM1:SP:1224,1,"CASTELLANE",43.285143,5.384986,0,0,OM1:SA:CTP1091,Europe/Paris,,OM1, +OM1:SP:1226,1,"BAILLE LODI",43.287135,5.388944,0,0,OM1:SA:CTP1226,Europe/Paris,,OM1, +OM1:SP:1227,1,"BAILLE VERTUS",43.288137,5.392616,0,0,OM1:SA:CTP1227,Europe/Paris,,OM1, +OM1:SP:1228,1,"BAILLE HOPITAL CONCEPTION",43.288776,5.395113,0,0,OM1:SA:CTP1228,Europe/Paris,,OM1, +OM1:SP:1229,1,"BAILLE NEGRE",43.289747,5.398611,0,0,OM1:SA:CTP1229,Europe/Paris,,OM1, +OM1:SP:123,1,"LE CASTELLAS",43.352037,5.372953,0,0,OM1:SA:CTP122,Europe/Paris,,OM1, +OM1:SP:1231,1,"C.H.U TIMONE",43.291777,5.402474,0,0,OM1:SA:CTP1231,Europe/Paris,,OM1, +OM1:SP:1232,1,"SAINT PIERRE GODCHOT",43.291589,5.406859,0,0,OM1:SA:CTP1232,Europe/Paris,,OM1, +OM1:SP:1233,1,"SAINT PIERRE SAINTE THERESE",43.291484,5.410239,0,0,OM1:SA:CTP1233,Europe/Paris,,OM1, +OM1:SP:1238,1,"LES CIGALONS",43.29875,5.45212,0,0,OM1:SA:CTP1238,Europe/Paris,,OM1, +OM1:SP:1239,1,"COLLET DES COMTES",43.299213,5.455075,0,0,OM1:SA:CTP1239,Europe/Paris,,OM1, +OM1:SP:124,1,"CASTELLAS LES LIONS",43.349468,5.375097,0,0,OM1:SA:CTP121,Europe/Paris,,OM1, +OM1:SP:1240,1,"LES LIBERATEURS",43.299607,5.457904,0,0,OM1:SA:CTP1240,Europe/Paris,,OM1, +OM1:SP:1241,1,"LA ROUGUIERE",43.297696,5.459302,0,0,OM1:SA:CTP1241,Europe/Paris,,OM1, +OM1:SP:1242,1,"LES CAILLOLS HOPITAL",43.297866,5.459976,0,0,OM1:SA:CTP1242,Europe/Paris,,OM1, +OM1:SP:1243,1,"LES LIBERATEURS",43.29979,5.457803,0,0,OM1:SA:CTP1240,Europe/Paris,,OM1, +OM1:SP:1244,1,"COLLET DES COMTES",43.299308,5.454896,0,0,OM1:SA:CTP1239,Europe/Paris,,OM1, +OM1:SP:1245,1,"LES CIGALONS",43.2989,5.451894,0,0,OM1:SA:CTP1238,Europe/Paris,,OM1, +OM1:SP:125,1,"SAINT JOSEPH LES LIONS",43.34797,5.376533,0,0,OM1:SA:CTP120,Europe/Paris,,OM1, +OM1:SP:1250,1,"SAINT PIERRE SAINTE THERESE",43.29171,5.409561,0,0,OM1:SA:CTP1233,Europe/Paris,,OM1, +OM1:SP:1251,1,"SAINT PIERRE GODCHOT",43.291623,5.405654,0,0,OM1:SA:CTP1232,Europe/Paris,,OM1, +OM1:SP:1252,1,"C.H.U TIMONE",43.29224,5.401994,0,0,OM1:SA:CTP1231,Europe/Paris,,OM1, +OM1:SP:1254,1,"BAILLE NEGRE",43.290012,5.398465,0,0,OM1:SA:CTP1229,Europe/Paris,,OM1, +OM1:SP:1255,1,"BAILLE HOPITAL CONCEPTION",43.289339,5.395893,0,0,OM1:SA:CTP1228,Europe/Paris,,OM1, +OM1:SP:1256,1,"BAILLE VERTUS",43.28877,5.393758,0,0,OM1:SA:CTP1227,Europe/Paris,,OM1, +OM1:SP:1257,1,"BAILLE LODI",43.287686,5.389798,0,0,OM1:SA:CTP1226,Europe/Paris,,OM1, +OM1:SP:1258,1,"BAILLE GOUFFE",43.286867,5.386665,0,0,OM1:SA:CTP1258,Europe/Paris,,OM1, +OM1:SP:126,1,"SAINT JOSEPH",43.346287,5.378194,0,0,OM1:SA:CTP119,Europe/Paris,,OM1, +OM1:SP:1261,1,"CANTINI SCHWEITZER",43.284122,5.386741,0,0,OM1:SA:CTP1261,Europe/Paris,,OM1, +OM1:SP:1263,1,"TOULON ISLY",43.284628,5.392368,0,0,OM1:SA:CTP1263,Europe/Paris,,OM1, +OM1:SP:1264,1,"TOULON HEBERT",43.284388,5.395433,0,0,OM1:SA:CTP1264,Europe/Paris,,OM1, +OM1:SP:1265,1,"TOULON GALINAT",43.283309,5.397332,0,0,OM1:SA:CTP1265,Europe/Paris,,OM1, +OM1:SP:1266,1,"CAPELETTE RABATAU",43.283573,5.400042,0,0,OM1:SA:CTP1266,Europe/Paris,,OM1, +OM1:SP:1267,1,"CAPELETTE LA POSTE",43.28259,5.402377,0,0,OM1:SA:CTP1267,Europe/Paris,,OM1, +OM1:SP:1268,1,"DELESSERT",43.28124,5.405247,0,0,OM1:SA:CTP1268,Europe/Paris,,OM1, +OM1:SP:1269,1,"CAPELETTE CURTEL",43.280188,5.408698,0,0,OM1:SA:CTP1269,Europe/Paris,,OM1, +OM1:SP:127,1,"COXE MAIRIE 13-14",43.345841,5.380277,0,0,OM1:SA:CTP127,Europe/Paris,,OM1, +OM1:SP:1270,1,"FIFI TURIN",43.279062,5.412527,0,0,OM1:SA:CTP1270,Europe/Paris,,OM1, +OM1:SP:1271,1,"PONT DE VIVAUX HIPPODROME",43.279454,5.415515,0,0,OM1:SA:CTP1271,Europe/Paris,,OM1, +OM1:SP:1272,1,"PONT DE VIVAUX",43.279539,5.417882,0,0,OM1:SA:CTP1272,Europe/Paris,,OM1, +OM1:SP:1273,1,"PONT DE VIVAUX FRENES",43.280757,5.421825,0,0,OM1:SA:CTP1273,Europe/Paris,,OM1, +OM1:SP:1274,1,"SAINT LOUP FLORIAN",43.281553,5.427283,0,0,OM5:SA:CTP4028527,Europe/Paris,,OM1, +OM1:SP:1275,1,"SAINT LOUP EGLISE",43.282339,5.4306,0,0,OM1:SA:CTP1275,Europe/Paris,,OM1, +OM1:SP:1276,1,"SAINT LOUP QUEIREL",43.2828,5.433332,0,0,OM1:SA:CTP1626,Europe/Paris,,OM1, +OM1:SP:1277,1,"RESIDENCE LYCEE EST",43.281315,5.437105,0,0,OM1:SA:CTP1277,Europe/Paris,,OM1, +OM1:SP:1278,1,"SAINT THYS",43.281039,5.439207,0,0,OM1:SA:CTP1278,Europe/Paris,,OM1, +OM1:SP:1279,1,"PARC SAINT CYR",43.281098,5.441832,0,0,OM1:SA:CTP1279,Europe/Paris,,OM1, +OM1:SP:128,1,"COXE MASSENET",43.345503,5.382058,0,0,OM1:SA:CTP118,Europe/Paris,,OM1, +OM1:SP:1281,1,"CHATEAU ST CYR",43.284379,5.442797,0,0,OM1:SA:CTP1281,Europe/Paris,,OM1, +OM1:SP:1282,1,"VALBARELLE HECKEL",43.28595,5.443215,0,0,OM1:SA:CTP1282,Europe/Paris,,OM1, +OM1:SP:1283,1,"STADE CODER",43.287416,5.448181,0,0,OM1:SA:CTP1283,Europe/Paris,,OM1, +OM1:SP:1284,1,"VALBARELLE ANDREU",43.288112,5.450865,0,0,OM1:SA:CTP1284,Europe/Paris,,OM1, +OM1:SP:1285,1,"VALBARELLE LANFRANCHI",43.288513,5.455011,0,0,OM1:SA:CTP1285,Europe/Paris,,OM1, +OM1:SP:1286,1,"GRANIERE RENTE",43.287258,5.458894,0,0,OM1:SA:CTP1286,Europe/Paris,,OM1, +OM1:SP:1287,1,"LA GRANIERE",43.286088,5.460812,0,0,OM1:SA:CTP1287,Europe/Paris,,OM1, +OM1:SP:1288,1,"LES NEREIDES",43.285184,5.459717,0,0,OM1:SA:CTP1288,Europe/Paris,,OM1, +OM1:SP:1289,1,"LE BOSQUET",43.285055,5.457347,0,0,OM1:SA:CTP1289,Europe/Paris,,OM1, +OM1:SP:129,1,"TOUR SAINTE",43.343826,5.384754,0,0,OM1:SA:CTP117,Europe/Paris,,OM1, +OM1:SP:1290,1,"LE BOSQUET",43.284893,5.457658,0,0,OM1:SA:CTP1289,Europe/Paris,,OM1, +OM1:SP:1291,1,"LES NEREIDES",43.285032,5.459389,0,0,OM1:SA:CTP1288,Europe/Paris,,OM1, +OM1:SP:1292,1,"LA GRANIERE",43.286203,5.461188,0,0,OM1:SA:CTP1287,Europe/Paris,,OM1, +OM1:SP:1293,1,"GRANIERE RENTE",43.287564,5.458591,0,0,OM1:SA:CTP1286,Europe/Paris,,OM1, +OM1:SP:1294,1,"VALBARELLE LANFRANCHI",43.288688,5.454245,0,0,OM1:SA:CTP1285,Europe/Paris,,OM1, +OM1:SP:1295,1,"VALBARELLE ANDREU",43.288178,5.450118,0,0,OM1:SA:CTP1284,Europe/Paris,,OM1, +OM1:SP:1296,1,"STADE CODER",43.287388,5.446653,0,0,OM1:SA:CTP1283,Europe/Paris,,OM1, +OM1:SP:1297,1,"VALBARELLE HECKEL",43.286127,5.443015,0,0,OM1:SA:CTP1282,Europe/Paris,,OM1, +OM1:SP:1299,1,"CHATEAU ST CYR",43.283479,5.442822,0,0,OM1:SA:CTP1281,Europe/Paris,,OM1, +OM1:SP:130,1,"LA SIMIANE",43.341756,5.386418,0,0,OM1:SA:CTP116,Europe/Paris,,OM1, +OM1:SP:1301,1,"PARC SAINT CYR",43.28151,5.442187,0,0,OM1:SA:CTP1279,Europe/Paris,,OM1, +OM1:SP:1302,1,"SAINT THYS",43.281222,5.439389,0,0,OM1:SA:CTP1278,Europe/Paris,,OM1, +OM1:SP:1303,1,"RESIDENCE LYCEE EST",43.281476,5.437151,0,0,OM1:SA:CTP1277,Europe/Paris,,OM1, +OM1:SP:1304,1,"SAINT LOUP QUEIREL",43.282927,5.433585,0,0,OM1:SA:CTP1626,Europe/Paris,,OM1, +OM1:SP:1305,1,"SAINT LOUP EGLISE",43.28262,5.431144,0,0,OM1:SA:CTP1275,Europe/Paris,,OM1, +OM1:SP:1306,1,"SAINT LOUP FLORIAN",43.28167,5.426342,0,0,OM5:SA:CTP4028527,Europe/Paris,,OM1, +OM1:SP:1307,1,"PONT DE VIVAUX FRENES",43.280727,5.420974,0,0,OM1:SA:CTP1273,Europe/Paris,,OM1, +OM1:SP:1308,1,"PONT DE VIVAUX",43.279804,5.418032,0,0,OM1:SA:CTP1272,Europe/Paris,,OM1, +OM1:SP:1309,1,"PONT DE VIVAUX HIPPODROME",43.279732,5.415529,0,0,OM1:SA:CTP1271,Europe/Paris,,OM1, +OM1:SP:131,1,"NUNGESSER",43.340534,5.386673,0,0,OM1:SA:CTP115,Europe/Paris,,OM1, +OM1:SP:1310,1,"FIFI TURIN",43.279225,5.412819,0,0,OM1:SA:CTP1270,Europe/Paris,,OM1, +OM1:SP:1311,1,"CAPELETTE CURTEL",43.280604,5.407982,0,0,OM1:SA:CTP1269,Europe/Paris,,OM1, +OM1:SP:1312,1,"DELESSERT",43.281523,5.405077,0,0,OM1:SA:CTP1268,Europe/Paris,,OM1, +OM1:SP:1313,1,"CAPELETTE LA POSTE",43.282558,5.402868,0,0,OM1:SA:CTP1267,Europe/Paris,,OM1, +OM1:SP:1314,1,"CAPELETTE RABATAU",43.283705,5.399827,0,0,OM1:SA:CTP1266,Europe/Paris,,OM1, +OM1:SP:1315,1,"TOULON GALINAT",43.283534,5.397652,0,0,OM1:SA:CTP1265,Europe/Paris,,OM1, +OM1:SP:1316,1,"TOULON HEBERT",43.284612,5.395469,0,0,OM1:SA:CTP1264,Europe/Paris,,OM1, +OM1:SP:1317,1,"TOULON ISLY",43.28484,5.392515,0,0,OM1:SA:CTP1263,Europe/Paris,,OM1, +OM1:SP:1318,1,"TOULON DELPHES",43.285285,5.388846,0,0,OM1:SA:CTP1318,Europe/Paris,,OM1, +OM1:SP:132,1,"SAINTE MARTHE",43.338564,5.391768,0,0,OM1:SA:CTP114,Europe/Paris,,OM1, +OM1:SP:1321,1,"LA POMME HECKEL",43.289573,5.441059,0,0,OM1:SA:CTP1321,Europe/Paris,,OM1, +OM1:SP:1322,1,"VALBARELLE CODER",43.28861,5.457577,0,0,OM1:SA:CTP1322,Europe/Paris,,OM1, +OM1:SP:1323,1,"H.L.M NEREIDES",43.288666,5.459673,0,0,OM1:SA:CTP1323,Europe/Paris,,OM1, +OM1:SP:1324,1,"CHEMIN DE LA STATION",43.288291,5.46268,0,0,OM1:SA:CTP1324,Europe/Paris,,OM1, +OM1:SP:1325,1,"SAINT MARCEL",43.28728,5.46558,0,0,OM1:SA:CTP1325,Europe/Paris,,OM1, +OM1:SP:1326,1,"BARASSE TUBET",43.286181,5.470579,0,0,OM1:SA:CTP1326,Europe/Paris,,OM1, +OM1:SP:1327,1,"BARASSE BEAU SITE",43.286149,5.473852,0,0,OM1:SA:CTP1327,Europe/Paris,,OM1, +OM1:SP:1328,1,"BARASSE CHOUQUET",43.286059,5.47754,0,0,OM1:SA:CTP1328,Europe/Paris,,OM1, +OM1:SP:1329,1,"LA BARASSE",43.285571,5.480381,0,0,OM1:SA:CTP1329,Europe/Paris,,OM1, +OM1:SP:133,1,"SAINTE MARTHE PEUPLIERS",43.336598,5.391983,0,0,OM1:SA:CTP113,Europe/Paris,,OM1, +OM1:SP:1330,1,"GARE DE LA BARASSE",43.284551,5.484818,0,0,OM1:SA:CTP1330,Europe/Paris,,OM1, +OM1:SP:1331,1,"H.L.M LA BARASSE",43.284418,5.488455,0,0,OM1:SA:CTP1331,Europe/Paris,,OM1, +OM1:SP:1332,1,"MONTGRAND",43.283573,5.493947,0,0,OM1:SA:CTP1332,Europe/Paris,,OM1, +OM1:SP:1333,1,"LA MILLIERE",43.283402,5.500388,0,0,OM1:SA:CTP1333,Europe/Paris,,OM1, +OM1:SP:1334,1,"LA SOLITUDE",43.283378,5.503033,0,0,OM1:SA:CTP1334,Europe/Paris,,OM1, +OM1:SP:134,1,"SAINTE MARTHE JOURDAN",43.333784,5.390688,0,0,OM1:SA:CTP112,Europe/Paris,,OM1, +OM1:SP:135,1,"SAINTE MARTHE LE CAMP",43.331317,5.389136,0,0,OM1:SA:CTP111,Europe/Paris,,OM1, +OM1:SP:136,1,"BERTRANDON",43.32901,5.387797,0,0,OM1:SA:CTP110,Europe/Paris,,OM1, +OM1:SP:1365,1,"LA SOLITUDE",43.283459,5.503961,0,0,OM1:SA:CTP1334,Europe/Paris,,OM1, +OM1:SP:1366,1,"LA MILLIERE SOLITUDE",43.283679,5.501979,0,0,OM1:SA:CTP1366,Europe/Paris,,OM1, +OM1:SP:1367,1,"LA MILLIERE",43.28357,5.498957,0,0,OM1:SA:CTP1333,Europe/Paris,,OM1, +OM1:SP:1368,1,"MONTGRAND",43.283921,5.493117,0,0,OM1:SA:CTP1332,Europe/Paris,,OM1, +OM1:SP:1369,1,"H.L.M LA BARASSE",43.284791,5.487392,0,0,OM1:SA:CTP1331,Europe/Paris,,OM1, +OM1:SP:137,1,"LA MARINE",43.324897,5.388219,0,0,OM1:SA:CTP109,Europe/Paris,,OM1, +OM1:SP:1370,1,"GARE DE LA BARASSE",43.284888,5.483753,0,0,OM1:SA:CTP1330,Europe/Paris,,OM1, +OM1:SP:1371,1,"LA BARASSE",43.285612,5.481159,0,0,OM1:SA:CTP1329,Europe/Paris,,OM1, +OM1:SP:1372,1,"BARASSE BANCAL",43.286043,5.479028,0,0,OM1:SA:CTP1372,Europe/Paris,,OM1, +OM1:SP:1373,1,"BARASSE CHOUQUET",43.286355,5.47603,0,0,OM1:SA:CTP1328,Europe/Paris,,OM1, +OM1:SP:1374,1,"BARASSE BEAU SITE",43.286383,5.472904,0,0,OM1:SA:CTP1327,Europe/Paris,,OM1, +OM1:SP:1375,1,"BARASSE TUBET",43.286392,5.471071,0,0,OM1:SA:CTP1326,Europe/Paris,,OM1, +OM1:SP:1376,1,"SAINT MARCEL",43.287742,5.464829,0,0,OM1:SA:CTP1325,Europe/Paris,,OM1, +OM1:SP:1377,1,"CHEMIN DE LA STATION",43.288732,5.46204,0,0,OM1:SA:CTP1324,Europe/Paris,,OM1, +OM1:SP:1378,1,"H.L.M NEREIDES",43.288873,5.459351,0,0,OM1:SA:CTP1323,Europe/Paris,,OM1, +OM1:SP:1379,1,"VALBARELLE CODER",43.288773,5.456588,0,0,OM1:SA:CTP1322,Europe/Paris,,OM1, +OM1:SP:138,1,"MORETTI SAINTE MARTHE",43.323727,5.388255,0,0,OM1:SA:CTP108,Europe/Paris,,OM1, +OM1:SP:1382,1,"LA VALENTINE CENTRE COMMERCIAL",43.294103,5.474927,0,0,OM1:SA:CTP1382,Europe/Paris,,OM1, +OM1:SP:1383,1,"SAINT MENET",43.289789,5.477301,0,0,OM1:SA:CTP1383,Europe/Paris,,OM1, +OM1:SP:1384,1,"LEON BANCAL SAINT MENET",43.289649,5.480568,0,0,OM1:SA:CTP1394,Europe/Paris,,OM1, +OM1:SP:1385,1,"BANCAL BARASSE",43.286306,5.479572,0,0,OM1:SA:CTP1385,Europe/Paris,,OM1, +OM1:SP:1386,1,"SOLITUDE MILLIERE",43.283186,5.502222,0,0,OM1:SA:CTP1386,Europe/Paris,,OM1, +OM1:SP:1387,1,"SOLITUDE ESCOURTINES",43.281179,5.501656,0,0,OM1:SA:CTP1387,Europe/Paris,,OM1, +OM1:SP:1388,1,"ESCOURTINES ECOLES",43.280009,5.503241,0,0,OM1:SA:CTP1388,Europe/Paris,,OM1, +OM1:SP:1389,1,"LES ESCOURTINES",43.281,5.504687,0,0,OAE:SA:CTP40249,Europe/Paris,,OM1, +OM1:SP:139,1,"MORETTI ROSIERS",43.323596,5.386216,0,0,OM1:SA:CTP107,Europe/Paris,,OM1, +OM1:SP:1390,1,"LES ESCOURTINES",43.281313,5.504458,0,0,OAE:SA:CTP40249,Europe/Paris,,OM1, +OM1:SP:1391,1,"LES ESCOURTINES ECOLES",43.280095,5.502446,0,0,OM1:SA:CTP1391,Europe/Paris,,OM1, +OM1:SP:1392,1,"SOLITUDE ESCOURTINES",43.281496,5.502203,0,0,OM1:SA:CTP1387,Europe/Paris,,OM1, +OM1:SP:1393,1,"LES VAUDRANS TROIS LUCS",43.306747,5.470914,0,0,OM1:SA:CTP1393,Europe/Paris,,OM1, +OM1:SP:1394,1,"LEON BANCAL SAINT MENET",43.289424,5.481479,0,0,OM1:SA:CTP1394,Europe/Paris,,OM1, +OM1:SP:1395,1,"SAINT MENET",43.289721,5.479033,0,0,OM1:SA:CTP1383,Europe/Paris,,OM1, +OM1:SP:1398,1,"CATALANS",43.288933,5.354856,0,0,OM1:SA:CTP1398,Europe/Paris,,OM1, +OM1:SP:1399,1,"LYCEE COLBERT",43.288163,5.356982,0,0,OM1:SA:CTP1399,Europe/Paris,,OM1, +OM1:SP:14,1,"CITE SAINT LOUIS",43.351407,5.354102,0,0,OM1:SA:CTP14,Europe/Paris,,OM1, +OM1:SP:140,1,"MORETTI GIBBES",43.324332,5.38373,0,0,OM1:SA:CTP106,Europe/Paris,,OM1, +OM1:SP:1400,1,"PLACE DU 4 SEPTEMBRE",43.288494,5.359289,0,0,OM1:SA:CTP1400,Europe/Paris,,OM1, +OM1:SP:1401,1,"CORSE D'AURELLE",43.289228,5.363562,0,0,OM1:SA:CTP1401,Europe/Paris,,OM1, +OM1:SP:1402,1,"SAINT VICTOR",43.289783,5.366853,0,0,OM1:SA:CTP1402,Europe/Paris,,OM1, +OM1:SP:1403,1,"PETIT CHANTIER",43.290105,5.368828,0,0,OM1:SA:CTP1403,Europe/Paris,,OM1, +OM1:SP:1404,1,"PUGET MOULET",43.289886,5.37118,0,0,OM1:SA:CTP1404,Europe/Paris,,OM1, +OM1:SP:1405,1,"PUGET ROUX DE BRIGNOLES",43.289948,5.373448,0,0,OM1:SA:CTP1405,Europe/Paris,,OM1, +OM1:SP:1406,1,"ESTRANGIN PUGET",43.290282,5.3769,0,0,OM1:SA:CTP1406,Europe/Paris,,OM1, +OM1:SP:1407,1,"BAILLE CASTELLANE",43.286168,5.385311,0,0,OM1:SA:CTP1407,Europe/Paris,,OM1, +OM1:SP:141,1,"CIMETIERE DU CANET",43.325659,5.380044,0,0,OM1:SA:CTP141,Europe/Paris,,OM1, +OM1:SP:1410,1,"ESTRANGIN PUGET",43.290599,5.376831,0,0,OM1:SA:CTP1406,Europe/Paris,,OM1, +OM1:SP:1411,1,"PUGET FORTIA",43.29039,5.374653,0,0,OM1:SA:CTP1411,Europe/Paris,,OM1, +OM1:SP:1412,1,"PLACE DE LA CORDERIE",43.290349,5.372607,0,0,OM1:SA:CTP1412,Europe/Paris,,OM1, +OM1:SP:1413,1,"PETIT CHANTIER",43.290466,5.369413,0,0,OM1:SA:CTP1403,Europe/Paris,,OM1, +OM1:SP:1414,1,"SAINT VICTOR",43.289907,5.365961,0,0,OM1:SA:CTP1402,Europe/Paris,,OM1, +OM1:SP:1415,1,"CORSE D'AURELLE",43.289405,5.363017,0,0,OM1:SA:CTP1401,Europe/Paris,,OM1, +OM1:SP:1416,1,"CORSE 4 SEPTEMBRE",43.288981,5.360213,0,0,OM1:SA:CTP1416,Europe/Paris,,OM1, +OM1:SP:1418,1,"CORNICHE AUDEOUD",43.289643,5.357133,0,0,OM1:SA:CTP1418,Europe/Paris,,OM1, +OM1:SP:1419,1,"VIEUX PORT (COURS JEAN BALLARD)",43.293992,5.374154,0,0,OM1:SA:CTP1419,Europe/Paris,,OM1, +OM1:SP:142,1,"PLACE DES ETATS UNIS",43.32633,5.375731,0,0,OM1:SA:CTP142,Europe/Paris,,OM1, +OM1:SP:1420,1,"SAINTE FORTIA",43.292318,5.374213,0,0,OM1:SA:CTP1420,Europe/Paris,,OM1, +OM1:SP:1421,1,"SAINTE FORT NOTRE DAME",43.291469,5.370192,0,0,OM1:SA:CTP1421,Europe/Paris,,OM1, +OM1:SP:1422,1,"SAINTE PETIT CHANTIER",43.290951,5.367543,0,0,OM1:SA:CTP1422,Europe/Paris,,OM1, +OM1:SP:1424,1,"CHANTECLER",43.286082,5.367027,0,0,OM1:SA:CTP1424,Europe/Paris,,OM1, +OM1:SP:1425,1,"ESPLANADE",43.284948,5.368358,0,0,OM1:SA:CTP1425,Europe/Paris,,OM1, +OM1:SP:1426,1,"TELLENE VALENTIN",43.284438,5.367617,0,0,OM1:SA:CTP1426,Europe/Paris,,OM1, +OM1:SP:1427,1,"AMEDEE AUTRAN",43.282241,5.367735,0,0,OM1:SA:CTP1427,Europe/Paris,,OM1, +OM1:SP:1429,1,"ROUCAS ESTRANGIN",43.278831,5.367801,0,0,OM1:SA:CTP1429,Europe/Paris,,OM1, +OM1:SP:143,1,"CASANOVA BARBES",43.323017,5.374262,0,0,OM1:SA:CTP143,Europe/Paris,,OM1, +OM1:SP:1430,1,"ROUCAS BLANC EMILE DUPLOYE",43.278259,5.36702,0,0,OM1:SA:CTP1430,Europe/Paris,,OM1, +OM1:SP:1431,1,"ROUCAS BLANC",43.276544,5.36597,0,0,OM1:SA:CTP1431,Europe/Paris,,OM1, +OM1:SP:1432,1,"ROUCAS BLANC EMILE DUPLOYE",43.278298,5.367232,0,0,OM1:SA:CTP1430,Europe/Paris,,OM1, +OM1:SP:1433,1,"ROUCAS ESTRANGIN",43.279061,5.368244,0,0,OM1:SA:CTP1429,Europe/Paris,,OM1, +OM1:SP:1434,1,"LE TERRAIL",43.280277,5.368825,0,0,OM1:SA:CTP1434,Europe/Paris,,OM1, +OM1:SP:1435,1,"AMEDEE AUTRAN",43.282054,5.367664,0,0,OM1:SA:CTP1427,Europe/Paris,,OM1, +OM1:SP:1436,1,"TELLENE VALENTIN",43.284322,5.367919,0,0,OM1:SA:CTP1426,Europe/Paris,,OM1, +OM1:SP:1437,1,"ESPLANADE",43.284993,5.368041,0,0,OM1:SA:CTP1425,Europe/Paris,,OM1, +OM1:SP:1438,1,"CHANTECLER",43.28698,5.367087,0,0,OM1:SA:CTP1424,Europe/Paris,,OM1, +OM1:SP:1439,1,"SAINT VICTOR",43.289845,5.367214,0,0,OM1:SA:CTP1402,Europe/Paris,,OM1, +OM1:SP:1440,1,"PLACE DE LA CORDERIE",43.290579,5.371462,0,0,OM1:SA:CTP1412,Europe/Paris,,OM1, +OM1:SP:1441,1,"PLACE AUX HUILES",43.293277,5.371358,0,0,OM1:SA:CTP1441,Europe/Paris,,OM1, +OM1:SP:1443,1,"VIEUX PORT (COURS JEAN BALLARD)",43.293484,5.374337,0,0,OM1:SA:CTP1419,Europe/Paris,,OM1, +OM1:SP:1444,1,"BRETEUIL PUGET",43.290626,5.375552,0,0,OM1:SA:CTP1444,Europe/Paris,,OM1, +OM1:SP:1445,1,"BRETEUIL ROUX DE BRIGNOLES",43.289589,5.375952,0,0,OM1:SA:CTP1445,Europe/Paris,,OM1, +OM1:SP:1446,1,"BRETEUIL DRAGON",43.286666,5.377238,0,0,OM1:SA:CTP1446,Europe/Paris,,OM1, +OM1:SP:1447,1,"VAUBAN BRETEUIL",43.28563,5.377318,0,0,OM1:SA:CTP1447,Europe/Paris,,OM1, +OM1:SP:1448,1,"PLACE VALERE BERNARD",43.283848,5.375451,0,0,OM1:SA:CTP1448,Europe/Paris,,OM1, +OM1:SP:1449,1,"FORT DU SANCTUAIRE",43.282943,5.374394,0,0,OM1:SA:CTP1449,Europe/Paris,,OM1, +OM1:SP:145,1,"METRO BOUGAINVILLE",43.32083,5.371757,0,0,OM1:SA:CTP1,Europe/Paris,,OM1, +OM1:SP:1450,1,"VAUBAN",43.281819,5.374704,0,0,OM1:SA:CTP1450,Europe/Paris,,OM1, +OM1:SP:1451,1,"VAUBAN LA POSTE",43.282802,5.376824,0,0,OM1:SA:CTP1451,Europe/Paris,,OM1, +OM1:SP:1452,1,"LACEDEMONE VILLAS PARADIS",43.281257,5.377111,0,0,OM1:SA:CTP1452,Europe/Paris,,OM1, +OM1:SP:1453,1,"MILLY GUADELOUPE",43.280865,5.37602,0,0,OM1:SA:CTP1453,Europe/Paris,,OM1, +OM1:SP:1454,1,"VAUBAN",43.281893,5.374326,0,0,OM1:SA:CTP1450,Europe/Paris,,OM1, +OM1:SP:1455,1,"FORT DU SANCTUAIRE",43.282798,5.374436,0,0,OM1:SA:CTP1449,Europe/Paris,,OM1, +OM1:SP:1456,1,"PLACE VALERE BERNARD",43.284255,5.375067,0,0,OM1:SA:CTP1448,Europe/Paris,,OM1, +OM1:SP:1457,1,"NOTRE DAME DRAGON",43.287094,5.373863,0,0,OM1:SA:CTP1457,Europe/Paris,,OM1, +OM1:SP:1458,1,"DELANGLADE",43.288511,5.37336,0,0,OM1:SA:CTP1458,Europe/Paris,,OM1, +OM1:SP:1460,1,"VIEUX PORT (COURS JEAN BALLARD)",43.293701,5.374262,0,0,OM1:SA:CTP1419,Europe/Paris,,OM1, +OM1:SP:1461,1,"JULES MOULET AUNE",43.2891,5.37195,0,0,OM1:SA:CTP1461,Europe/Paris,,OM1, +OM1:SP:1462,1,"JULES MOULET DRAGON",43.286729,5.373105,0,0,OM1:SA:CTP1462,Europe/Paris,,OM1, +OM1:SP:1463,1,"JULES MOULET NOTRE DAME",43.284689,5.374019,0,0,OM1:SA:CTP1463,Europe/Paris,,OM1, +OM1:SP:1464,1,"FORT DU SANCTUAIRE NOTRE DAME",43.284059,5.372779,0,0,OM1:SA:CTP1464,Europe/Paris,,OM1, +OM1:SP:1465,1,"ASCENCEUR",43.285733,5.37208,0,0,OM1:SA:CTP1465,Europe/Paris,,OM1, +OM1:SP:1466,1,"ESCALIER NOTRE DAME",43.284932,5.371164,0,0,OM1:SA:CTP1466,Europe/Paris,,OM1, +OM1:SP:1467,1,"NOTRE DAME DE LA GARDE",43.284441,5.371642,0,0,OM1:SA:CTP1467,Europe/Paris,,OM1, +OM1:SP:1468,1,"ESCALIER NOTRE DAME",43.28508,5.370987,0,0,OM1:SA:CTP1466,Europe/Paris,,OM1, +OM1:SP:1469,1,"PLACE COLONEL EDON",43.286381,5.370157,0,0,OM1:SA:CTP1469,Europe/Paris,,OM1, +OM1:SP:1470,1,"ORATOIRE GAZZINO",43.28811,5.370384,0,0,OM1:SA:CTP1470,Europe/Paris,,OM1, +OM1:SP:1471,1,"MONTEE DE L ORATOIRE",43.288887,5.370881,0,0,OM1:SA:CTP1471,Europe/Paris,,OM1, +OM1:SP:1472,1,"JARDIN DE LA COLONNE",43.289204,5.369839,0,0,OM1:SA:CTP1472,Europe/Paris,,OM1, +OM1:SP:1473,1,"LICES CHAIX",43.289411,5.368582,0,0,OM1:SA:CTP1473,Europe/Paris,,OM1, +OM1:SP:1475,1,"SAINT VICTOR",43.28938,5.366155,0,0,OM1:SA:CTP1402,Europe/Paris,,OM1, +OM1:SP:1476,1,"ENDOUME TELLENE",43.28794,5.366214,0,0,OM1:SA:CTP1476,Europe/Paris,,OM1, +OM1:SP:1477,1,"ENDOUME TADDEI",43.287187,5.364193,0,0,OM1:SA:CTP1477,Europe/Paris,,OM1, +OM1:SP:1478,1,"VALLON JOURDAN",43.286365,5.363042,0,0,OM1:SA:CTP1478,Europe/Paris,,OM1, +OM1:SP:1479,1,"BOMPARD ENDOUME",43.28485,5.359995,0,0,OM1:SA:CTP1479,Europe/Paris,,OM1, +OM1:SP:1480,1,"BOMPARD RIGAUD",43.281807,5.361103,0,0,OM1:SA:CTP1480,Europe/Paris,,OM1, +OM1:SP:1481,1,"BOMPARD BAULIEUE",43.281041,5.360213,0,0,OM1:SA:CTP1481,Europe/Paris,,OM1, +OM1:SP:1482,1,"BOMPARD FIDELI",43.280619,5.360666,0,0,OM1:SA:CTP1482,Europe/Paris,,OM1, +OM1:SP:1483,1,"BOMPARD",43.279304,5.360269,0,0,OM1:SA:CTP1483,Europe/Paris,,OM1, +OM1:SP:1484,1,"BOMPARD",43.279261,5.360513,0,0,OM1:SA:CTP1483,Europe/Paris,,OM1, +OM1:SP:1485,1,"BOMPARD FIDELI",43.280703,5.3608,0,0,OM1:SA:CTP1482,Europe/Paris,,OM1, +OM1:SP:1486,1,"BOMPARD RIGAUD",43.282181,5.361233,0,0,OM1:SA:CTP1480,Europe/Paris,,OM1, +OM1:SP:1487,1,"BOMPARD ENDOUME",43.284727,5.360223,0,0,OM1:SA:CTP1479,Europe/Paris,,OM1, +OM1:SP:1488,1,"VALLON JOURDAN",43.286394,5.363289,0,0,OM1:SA:CTP1478,Europe/Paris,,OM1, +OM1:SP:1489,1,"ENDOUME TADDEI",43.287111,5.364657,0,0,OM1:SA:CTP1477,Europe/Paris,,OM1, +OM1:SP:1490,1,"ENDOUME TELLENE",43.287523,5.365995,0,0,OM1:SA:CTP1476,Europe/Paris,,OM1, +OM1:SP:1493,1,"PRADO CASTELLANE",43.284742,5.384213,0,0,OM1:SA:CTP1493,Europe/Paris,,OM1, +OM1:SP:1494,1,"PRADO DUPRE",43.282411,5.385567,0,0,OM1:SA:CTP1090,Europe/Paris,,OM1, +OM1:SP:1495,1,"PERIER PRADO",43.279834,5.386082,0,0,OM1:SA:CTP1089,Europe/Paris,,OM1, +OM1:SP:1496,1,"PLACE DELIBES",43.279301,5.383605,0,0,OM1:SA:CTP1088,Europe/Paris,,OM1, +OM1:SP:1497,1,"LYCEE PERIER",43.278956,5.381826,0,0,OM1:SA:CTP1497,Europe/Paris,,OM1, +OM1:SP:1498,1,"PERIER CREMIEUX",43.278574,5.379775,0,0,OM1:SA:CTP1498,Europe/Paris,,OM1, +OM1:SP:1499,1,"PERIER ESCALIERS",43.27804,5.377335,0,0,OM1:SA:CTP1499,Europe/Paris,,OM1, +OM1:SP:15,1,"ROVE TUILERIES",43.354683,5.3508,0,0,OM1:SA:CTP15,Europe/Paris,,OM1, +OM1:SP:1500,1,"PERIER ARLES",43.278533,5.37645,0,0,OM1:SA:CTP1500,Europe/Paris,,OM1, +OM1:SP:1501,1,"PERIER GRATTE SEMELLE",43.277656,5.375025,0,0,OM1:SA:CTP1501,Europe/Paris,,OM1, +OM1:SP:1502,1,"PERIER GAGLIARDO",43.277229,5.373563,0,0,OM1:SA:CTP1502,Europe/Paris,,OM1, +OM1:SP:1503,1,"ESTRANGIN COLONIES",43.276721,5.371825,0,0,OM1:SA:CTP1503,Europe/Paris,,OM1, +OM1:SP:1504,1,"ESTRANGIN CELINA",43.276684,5.36994,0,0,OM1:SA:CTP1504,Europe/Paris,,OM1, +OM1:SP:1505,1,"ESTRANGIN ROUCAS",43.278838,5.368503,0,0,OM1:SA:CTP1505,Europe/Paris,,OM1, +OM1:SP:1507,1,"ROCHES VEVE",43.280498,5.366068,0,0,OM1:SA:CTP1507,Europe/Paris,,OM1, +OM1:SP:1508,1,"VALLON DE L'ORIOL",43.279621,5.363695,0,0,OM1:SA:CTP1508,Europe/Paris,,OM1, +OM1:SP:1509,1,"ROCHES VEVE",43.280602,5.366516,0,0,OM1:SA:CTP1507,Europe/Paris,,OM1, +OM1:SP:151,1,"VISITATION",43.337695,5.367167,0,0,OM1:SA:CTP151,Europe/Paris,,OM1, +OM1:SP:1510,1,"LE TERRAIL",43.280249,5.368541,0,0,OM1:SA:CTP1434,Europe/Paris,,OM1, +OM1:SP:1511,1,"ESTRANGIN ROUCAS",43.278559,5.368525,0,0,OM1:SA:CTP1505,Europe/Paris,,OM1, +OM1:SP:1512,1,"ESTRANGIN CELINA",43.27603,5.370484,0,0,OM1:SA:CTP1504,Europe/Paris,,OM1, +OM1:SP:1513,1,"ESTRANGIN COLONIES",43.276791,5.372543,0,0,OM1:SA:CTP1503,Europe/Paris,,OM1, +OM1:SP:1514,1,"PERIER GRATTE SEMELLE",43.277832,5.374825,0,0,OM1:SA:CTP1501,Europe/Paris,,OM1, +OM1:SP:1515,1,"PERIER ARLES",43.278515,5.376757,0,0,OM1:SA:CTP1500,Europe/Paris,,OM1, +OM1:SP:1516,1,"PERIER ESCALIERS",43.277901,5.37718,0,0,OM1:SA:CTP1499,Europe/Paris,,OM1, +OM1:SP:1517,1,"PERIER CREMIEUX",43.278479,5.38025,0,0,OM1:SA:CTP1498,Europe/Paris,,OM1, +OM1:SP:1519,1,"THIERS REFORMES",43.298707,5.385189,0,0,OM1:SA:CTP1519,Europe/Paris,,OM1, +OM1:SP:152,1,"ZI DE LA DELORME",43.340726,5.365541,0,0,OM1:SA:CTP152,Europe/Paris,,OM1, +OM1:SP:1520,1,"PLACE JEAN JAURES",43.294835,5.385697,0,0,OM1:SA:CTP1520,Europe/Paris,,OM1, +OM1:SP:1521,1,"3 FRERES BARTHELEMY",43.292597,5.384077,0,0,OM1:SA:CTP1521,Europe/Paris,,OM1, +OM1:SP:1522,1,"NOTRE DAME DU MONT",43.291734,5.384375,0,0,OM1:SA:CTP1522,Europe/Paris,,OM1, +OM1:SP:1523,1,"LODI VILLAGE",43.288946,5.387539,0,0,OM1:SA:CTP1523,Europe/Paris,,OM1, +OM1:SP:1524,1,"GASTON CREMIEUX",43.278879,5.380419,0,0,OM1:SA:CTP1524,Europe/Paris,,OM1, +OM1:SP:1525,1,"MONTEBELLO",43.280059,5.378771,0,0,OM1:SA:CTP1525,Europe/Paris,,OM1, +OM1:SP:1526,1,"VALLON MONTEBELLO",43.280301,5.378464,0,0,OM1:SA:CTP1526,Europe/Paris,,OM1, +OM1:SP:1527,1,"VALLON MONTEBELLO",43.279996,5.37814,0,0,OM1:SA:CTP1526,Europe/Paris,,OM1, +OM1:SP:1528,1,"MONTEBELLO",43.279838,5.378612,0,0,OM1:SA:CTP1525,Europe/Paris,,OM1, +OM1:SP:1529,1,"GASTON CREMIEUX",43.279074,5.379876,0,0,OM1:SA:CTP1524,Europe/Paris,,OM1, +OM1:SP:153,1,"PARC BLANCHARD",43.343686,5.36582,0,0,OM1:SA:CTP153,Europe/Paris,,OM1, +OM1:SP:1530,1,"LODI VILLAGE",43.288718,5.387982,0,0,OM1:SA:CTP1523,Europe/Paris,,OM1, +OM1:SP:1531,1,"NOTRE DAME DU MONT",43.291387,5.385206,0,0,OM1:SA:CTP1522,Europe/Paris,,OM1, +OM1:SP:1532,1,"3 FRERES BARTHELEMY FONTANGE",43.293121,5.385865,0,0,OM1:SA:CTP1532,Europe/Paris,,OM1, +OM1:SP:1533,1,"PLACE JEAN JAURES",43.295434,5.387403,0,0,OM1:SA:CTP1520,Europe/Paris,,OM1, +OM1:SP:1534,1,"SAINT SAVOURNIN BARBAROUX",43.298014,5.387738,0,0,OM1:SA:CTP1534,Europe/Paris,,OM1, +OM1:SP:1536,1,"LA BLANCARDE",43.296075,5.406582,0,0,OM1:SA:CTP1536,Europe/Paris,,OM1, +OM1:SP:154,1,"4 CHEMINS DES AYGALADES",43.346769,5.366205,0,0,OM1:SA:CTP154,Europe/Paris,,OM1, +OM1:SP:1542,1,"ENDOUME BOMPARD",43.284879,5.359308,0,0,OM1:SA:CTP1542,Europe/Paris,,OM1, +OM1:SP:1543,1,"PLACE SAINT EUGENE",43.284262,5.357909,0,0,OM1:SA:CTP1543,Europe/Paris,,OM1, +OM1:SP:1544,1,"ENDOUME VALLON DES AUFFES",43.283704,5.355356,0,0,OM1:SA:CTP1544,Europe/Paris,,OM1, +OM1:SP:1545,1,"ENDOUME BENSA",43.283791,5.353207,0,0,OM1:SA:CTP1545,Europe/Paris,,OM1, +OM1:SP:1546,1,"EGLISE D'ENDOUME",43.2835,5.352699,0,0,OM1:SA:CTP1546,Europe/Paris,,OM1, +OM1:SP:1547,1,"EGLISE D'ENDOUME",43.283273,5.352761,0,0,OM1:SA:CTP1546,Europe/Paris,,OM1, +OM1:SP:1548,1,"ENDOUME VALLON DES AUFFES",43.283651,5.354664,0,0,OM1:SA:CTP1544,Europe/Paris,,OM1, +OM1:SP:1549,1,"PLACE SAINT EUGENE",43.283915,5.35746,0,0,OM1:SA:CTP1543,Europe/Paris,,OM1, +OM1:SP:155,1,"TRAVERSE DE L OASIS",43.348841,5.366376,0,0,OM1:SA:CTP155,Europe/Paris,,OM1, +OM1:SP:1550,1,"ENDOUME BOMPARD",43.284768,5.3594,0,0,OM1:SA:CTP1542,Europe/Paris,,OM1, +OM1:SP:1552,1,"PLACE SEBASTOPOL",43.299062,5.397064,0,0,OM1:SA:CTP1552,Europe/Paris,,OM1, +OM1:SP:1556,1,"DUCLAUX FOCH",43.296501,5.405533,0,0,OM1:SA:CTP1556,Europe/Paris,,OM1, +OM1:SP:1557,1,"LE PHARO",43.291429,5.35916,0,0,OM1:SA:CTP1557,Europe/Paris,,OM1, +OM1:SP:1558,1,"LE PHARO",43.291265,5.35893,0,0,OM1:SA:CTP1557,Europe/Paris,,OM1, +OM1:SP:156,1,"CITÉ DES ARTS DE LA RUE",43.352102,5.36555,0,0,OM1:SA:CTP156,Europe/Paris,,OM1, +OM1:SP:1561,1,"FLAMMARION SIPHON",43.308099,5.396438,0,0,OM1:SA:CTP1561,Europe/Paris,,OM1, +OM1:SP:1562,1,"CHUTES LAVIE DAHDAH",43.310581,5.396447,0,0,OM1:SA:CTP1562,Europe/Paris,,OM1, +OM1:SP:1563,1,"PARDIGON",43.311597,5.396156,0,0,OM1:SA:CTP1563,Europe/Paris,,OM1, +OM1:SP:1564,1,"GUIGOU",43.313705,5.397291,0,0,OM1:SA:CTP1564,Europe/Paris,,OM1, +OM1:SP:1565,1,"PAULETTE",43.315349,5.398266,0,0,OM1:SA:CTP1565,Europe/Paris,,OM1, +OM1:SP:1566,1,"CHUTES LAVIE",43.31699,5.399388,0,0,OM1:SA:CTP1566,Europe/Paris,,OM1, +OM1:SP:1567,1,"RAGUSE CHUTES LAVIE",43.318528,5.403165,0,0,OM1:SA:CTP1567,Europe/Paris,,OM1, +OM1:SP:1568,1,"RAGUSE LUC",43.318671,5.403825,0,0,OM1:SA:CTP1568,Europe/Paris,,OM1, +OM1:SP:1569,1,"CHUTES LAVIE RAGUSE",43.318482,5.402263,0,0,OM1:SA:CTP1569,Europe/Paris,,OM1, +OM1:SP:157,1,"AYGALADES VILLAGE",43.353274,5.366401,0,0,OM1:SA:CTP157,Europe/Paris,,OM1, +OM1:SP:1570,1,"CHUTES LAVIE",43.316628,5.398851,0,0,OM1:SA:CTP1566,Europe/Paris,,OM1, +OM1:SP:1571,1,"PAULETTE",43.314626,5.397451,0,0,OM1:SA:CTP1565,Europe/Paris,,OM1, +OM1:SP:1572,1,"GUIGOU",43.313213,5.396859,0,0,OM1:SA:CTP1564,Europe/Paris,,OM1, +OM1:SP:1573,1,"PARDIGON",43.312004,5.396043,0,0,OM1:SA:CTP1563,Europe/Paris,,OM1, +OM1:SP:1574,1,"CHUTES LAVIE DAHDAH",43.309713,5.39629,0,0,OM1:SA:CTP1562,Europe/Paris,,OM1, +OM1:SP:1575,1,"FLAMMARION SIPHON",43.308072,5.396141,0,0,OM1:SA:CTP1561,Europe/Paris,,OM1, +OM1:SP:1579,1,"JEAN MOULIN BAILLE",43.289703,5.399827,0,0,OM1:SA:CTP1579,Europe/Paris,,OM1, +OM1:SP:158,1,"H.L.M DES AYGALADES",43.353147,5.370251,0,0,OM1:SA:CTP158,Europe/Paris,,OM1, +OM1:SP:1580,1,"JEAN MOULIN FACULTES",43.287975,5.400215,0,0,OM1:SA:CTP1580,Europe/Paris,,OM1, +OM1:SP:1581,1,"JEAN MOULIN SAINTE BAUME",43.286495,5.399139,0,0,OM1:SA:CTP1581,Europe/Paris,,OM1, +OM1:SP:1582,1,"TIMONE GORDE",43.285303,5.399285,0,0,OM1:SA:CTP1582,Europe/Paris,,OM1, +OM1:SP:1583,1,"TIMONE GABRIEL MARIE",43.285595,5.402008,0,0,OM1:SA:CTP1583,Europe/Paris,,OM1, +OM1:SP:1584,1,"PLACE VALENTIN PIGNOL",43.28591,5.404512,0,0,OM1:SA:CTP1584,Europe/Paris,,OM1, +OM1:SP:1585,1,"TIMONE HILARION BOEUF",43.286235,5.407606,0,0,OM1:SA:CTP1585,Europe/Paris,,OM1, +OM1:SP:1586,1,"TIMONE BELVEDERE",43.286505,5.4098,0,0,OM1:SA:CTP1586,Europe/Paris,,OM1, +OM1:SP:1587,1,"CABASSUD TIMONE",43.286209,5.412615,0,0,OM1:SA:CTP1587,Europe/Paris,,OM1, +OM1:SP:1588,1,"CABASSUD MIREILLE LAUZE",43.283625,5.412735,0,0,OM1:SA:CTP1588,Europe/Paris,,OM1, +OM1:SP:1589,1,"DEL BELLO AUBEPINE",43.280732,5.411706,0,0,OM1:SA:CTP1589,Europe/Paris,,OM1, +OM1:SP:159,1,"LA SYLVE LE CASTELLAS",43.354085,5.371447,0,0,OM1:SA:CTP159,Europe/Paris,,OM1, +OM1:SP:1590,1,"PONT DE VIVAUX",43.279541,5.416849,0,0,OM1:SA:CTP1272,Europe/Paris,,OM1, +OM1:SP:1591,1,"PONT DE VIVAUX TONKIN",43.278447,5.416421,0,0,OM1:SA:CTP1591,Europe/Paris,,OM1, +OM1:SP:1592,1,"ROMAIN ROLLAND ICARD",43.276308,5.418275,0,0,OM1:SA:CTP1592,Europe/Paris,,OM1, +OM1:SP:1593,1,"ROMAIN ROLLAND GYMNASE",43.277813,5.42099,0,0,OM1:SA:CTP1593,Europe/Paris,,OM1, +OM1:SP:1594,1,"LYCEE AMPERE",43.279529,5.423876,0,0,OM1:SA:CTP1594,Europe/Paris,,OM1, +OM1:SP:1596,1,"SAINT LOUP FLORIAN",43.281208,5.4274,0,0,OM5:SA:CTP4028527,Europe/Paris,,OM1, +OM1:SP:16,1,"SAINT ANDRE P.N",43.355708,5.346626,0,0,OM1:SA:CTP16,Europe/Paris,,OM1, +OM1:SP:160,1,"LES AYGALADES",43.356754,5.368976,0,0,OM1:SA:CTP160,Europe/Paris,,OM1, +OM1:SP:1606,1,"LYCEE AMPERE",43.279794,5.424025,0,0,OM1:SA:CTP1594,Europe/Paris,,OM1, +OM1:SP:1607,1,"ROMAIN ROLLAND GYMNASE",43.27822,5.421208,0,0,OM1:SA:CTP1593,Europe/Paris,,OM1, +OM1:SP:1609,1,"PONT DE VIVAUX",43.27904,5.4174,0,0,OM1:SA:CTP1272,Europe/Paris,,OM1, +OM1:SP:161,1,"BOULEVARD DE LA GARE",43.357209,5.367508,0,0,OM1:SA:CTP161,Europe/Paris,,OM1, +OM1:SP:1610,1,"FIFI TURIN CAPELETTE",43.279488,5.412415,0,0,OM1:SA:CTP1610,Europe/Paris,,OM1, +OM1:SP:1611,1,"FIFI TURIN AUBEPINE",43.281628,5.412751,0,0,OM1:SA:CTP1611,Europe/Paris,,OM1, +OM1:SP:1612,1,"CABASSUD MIREILLE LAUZE",43.283861,5.412969,0,0,OM1:SA:CTP1588,Europe/Paris,,OM1, +OM1:SP:1613,1,"CABASSUD TIMONE",43.286002,5.412936,0,0,OM1:SA:CTP1587,Europe/Paris,,OM1, +OM1:SP:1614,1,"TIMONE BELVEDERE",43.286862,5.411161,0,0,OM1:SA:CTP1586,Europe/Paris,,OM1, +OM1:SP:1615,1,"TIMONE HILARION BOEUF",43.286356,5.40685,0,0,OM1:SA:CTP1585,Europe/Paris,,OM1, +OM1:SP:1616,1,"PLACE VALENTIN PIGNOL",43.286075,5.404077,0,0,OM1:SA:CTP1584,Europe/Paris,,OM1, +OM1:SP:1617,1,"JEAN MOULIN SAINTE BAUME",43.287143,5.400368,0,0,OM1:SA:CTP1581,Europe/Paris,,OM1, +OM1:SP:1618,1,"JEAN MOULIN FACULTES",43.289291,5.400409,0,0,OM1:SA:CTP1580,Europe/Paris,,OM1, +OM1:SP:1619,1,"METRO STE MARGUERITE DROMEL",43.271147,5.403144,0,0,OM1:SA:CTP1619,Europe/Paris,,OM1, +OM1:SP:162,1,"CHEMIN DE LA MURE",43.358138,5.365783,0,0,OM1:SA:CTP162,Europe/Paris,,OM1, +OM1:SP:1620,1,"TRINITAIRES HUVEAUNE",43.272025,5.406416,0,0,OM1:SA:CTP1620,Europe/Paris,,OM1, +OM1:SP:1621,1,"ROMAIN ROLLAND BELLE OMBRE",43.270772,5.408096,0,0,OM1:SA:CTP1621,Europe/Paris,,OM1, +OM1:SP:1622,1,"PAULINE RIPERT",43.272109,5.410715,0,0,OM1:SA:CTP1622,Europe/Paris,,OM1, +OM1:SP:1623,1,"LA SAUVAGERE",43.273825,5.414228,0,0,OM1:SA:CTP1623,Europe/Paris,,OM1, +OM1:SP:1624,1,"ROMAIN ROLLAND PONT DE VIVAUX",43.275479,5.416766,0,0,OM1:SA:CTP1624,Europe/Paris,,OM1, +OM1:SP:1626,1,"SAINT LOUP PAGNOL",43.283048,5.433137,0,0,OM1:SA:CTP1626,Europe/Paris,,OM1, +OM1:SP:1627,1,"SAINT LOUP DE TRETS",43.283903,5.4353,0,0,OM1:SA:CTP1627,Europe/Paris,,OM1, +OM1:SP:1628,1,"SAINT LOUP ROSE BRUNY",43.2847,5.437903,0,0,OM1:SA:CTP1628,Europe/Paris,,OM1, +OM1:SP:1629,1,"GRANADA",43.284995,5.440172,0,0,OM1:SA:CTP1629,Europe/Paris,,OM1, +OM1:SP:163,1,"L'HERMITAGE JEAN MOULIN",43.36263,5.36178,0,0,OM1:SA:CTP163,Europe/Paris,,OM1, +OM1:SP:1630,1,"GRANADA",43.285005,5.43952,0,0,OM1:SA:CTP1629,Europe/Paris,,OM1, +OM1:SP:1631,1,"SAINT LOUP ROSE BRUNY",43.284673,5.436991,0,0,OM1:SA:CTP1628,Europe/Paris,,OM1, +OM1:SP:1632,1,"SAINT LOUP DE TRETS",43.283586,5.434126,0,0,OM1:SA:CTP1627,Europe/Paris,,OM1, +OM1:SP:1633,1,"SAINT LOUP PAGNOL",43.283093,5.432819,0,0,OM1:SA:CTP1626,Europe/Paris,,OM1, +OM1:SP:1634,1,"ROMAIN ROLLAND PONT DE VIVAUX",43.275676,5.416813,0,0,OM1:SA:CTP1624,Europe/Paris,,OM1, +OM1:SP:1635,1,"LA SAUVAGERE",43.274162,5.414394,0,0,OM1:SA:CTP1623,Europe/Paris,,OM1, +OM1:SP:1636,1,"PAULINE RIPERT",43.272444,5.410942,0,0,OM1:SA:CTP1622,Europe/Paris,,OM1, +OM1:SP:1637,1,"PLATANES ROMAIN ROLLAND",43.272256,5.408729,0,0,OM1:SA:CTP1637,Europe/Paris,,OM1, +OM1:SP:1638,1,"HUVEAUNE PLATANES",43.273393,5.407313,0,0,OM1:SA:CTP1638,Europe/Paris,,OM1, +OM1:SP:1639,1,"METRO STE MARGUERITE DROMEL",43.27091,5.403255,0,0,OM1:SA:CTP1619,Europe/Paris,,OM1, +OM1:SP:164,1,"RESIDENCE LES BORELS",43.364185,5.361184,0,0,OM1:SA:CTP164,Europe/Paris,,OM1, +OM1:SP:1641,1,"METRO STE MARGUERITE DROMEL",43.271321,5.403695,0,0,OM1:SA:CTP1619,Europe/Paris,,OM1, +OM1:SP:1642,1,"BELLE OMBRE ROMAIN ROLLAND",43.27018,5.407732,0,0,OM1:SA:CTP1621,Europe/Paris,,OM1, +OM1:SP:1643,1,"CLAUDEL COLLEGE PASTEUR",43.268365,5.409579,0,0,OM1:SA:CTP1643,Europe/Paris,,OM1, +OM1:SP:1644,1,"SAINT TRONC PARC FLEURI",43.268111,5.412187,0,0,OM1:SA:CTP1644,Europe/Paris,,OM1, +OM1:SP:1645,1,"CLAUDEL MAIRIE 9-10",43.268216,5.413829,0,0,OM1:SA:CTP1645,Europe/Paris,,OM1, +OM1:SP:1646,1,"VALLON DE TOULOUSE",43.267986,5.417471,0,0,OM1:SA:CTP1646,Europe/Paris,,OM1, +OM1:SP:1647,1,"SAINT TRONC LA ROSE",43.268903,5.420314,0,0,OM1:SA:CTP1647,Europe/Paris,,OM1, +OM1:SP:1648,1,"SAINT TRONC",43.270064,5.422776,0,0,OM1:SA:CTP1648,Europe/Paris,,OM1, +OM1:SP:1649,1,"BOIS FLEURY",43.270902,5.425221,0,0,OM1:SA:CTP1649,Europe/Paris,,OM1, +OM1:SP:165,1,"LES BORELS",43.366472,5.363018,0,0,OM1:SA:CTP165,Europe/Paris,,OM1, +OM1:SP:1650,1,"LES ROCHES",43.271846,5.427745,0,0,OM1:SA:CTP1650,Europe/Paris,,OM1, +OM1:SP:1651,1,"RESIDENCE DU LYCEE",43.273494,5.427674,0,0,OM1:SA:CTP1651,Europe/Paris,,OM1, +OM1:SP:1652,1,"LYCEE JEAN PERRIN",43.274545,5.426771,0,0,OM1:SA:CTP1652,Europe/Paris,,OM1, +OM1:SP:1653,1,"LA GERMAINE",43.276811,5.427077,0,0,OM1:SA:CTP1653,Europe/Paris,,OM1, +OM1:SP:1655,1,"LA GERMAINE",43.276597,5.426709,0,0,OM1:SA:CTP1653,Europe/Paris,,OM1, +OM1:SP:1656,1,"LYCEE JEAN PERRIN",43.274648,5.426296,0,0,OM1:SA:CTP1652,Europe/Paris,,OM1, +OM1:SP:1657,1,"RESIDENCE DU LYCEE",43.273578,5.427248,0,0,OM1:SA:CTP1651,Europe/Paris,,OM1, +OM1:SP:1658,1,"LES ROCHES",43.271983,5.427347,0,0,OM1:SA:CTP1650,Europe/Paris,,OM1, +OM1:SP:1659,1,"BOIS FLEURY",43.270915,5.424766,0,0,OM1:SA:CTP1649,Europe/Paris,,OM1, +OM1:SP:1660,1,"SAINT TRONC",43.270199,5.422771,0,0,OM1:SA:CTP1648,Europe/Paris,,OM1, +OM1:SP:1661,1,"SAINT TRONC LA ROSE",43.268895,5.419957,0,0,OM1:SA:CTP1647,Europe/Paris,,OM1, +OM1:SP:1662,1,"VALLON DE TOULOUSE",43.26817,5.416694,0,0,OM1:SA:CTP1646,Europe/Paris,,OM1, +OM1:SP:1663,1,"CLAUDEL MAIRIE 9-10",43.268332,5.41482,0,0,OM1:SA:CTP1645,Europe/Paris,,OM1, +OM1:SP:1664,1,"SAINT TRONC PARC FLEURI",43.268022,5.411838,0,0,OM1:SA:CTP1644,Europe/Paris,,OM1, +OM1:SP:1665,1,"CLAUDEL COLLEGE PASTEUR",43.268338,5.40991,0,0,OM1:SA:CTP1643,Europe/Paris,,OM1, +OM1:SP:1667,1,"LA PUGETTE",43.268948,5.40365,0,0,OM1:SA:CTP1667,Europe/Paris,,OM1, +OM1:SP:1668,1,"SAINT TRONC CLAIR MATIN",43.269819,5.423797,0,0,OM1:SA:CTP1668,Europe/Paris,,OM1, +OM1:SP:1669,1,"SAINT TRONC GAULOISE",43.267952,5.426514,0,0,OM1:SA:CTP1669,Europe/Paris,,OM1, +OM1:SP:1670,1,"SAINT TRONC TRANSFORMATEUR",43.266684,5.426803,0,0,OM1:SA:CTP1670,Europe/Paris,,OM1, +OM1:SP:1671,1,"TOULOUSE VAL DES BOIS",43.26724,5.423104,0,0,OM1:SA:CTP1671,Europe/Paris,,OM1, +OM1:SP:1672,1,"TOULOUSE CLAUDEL",43.26769,5.420913,0,0,OM1:SA:CTP1672,Europe/Paris,,OM1, +OM1:SP:1673,1,"TOULOUSE CLAUDEL",43.26758,5.420981,0,0,OM1:SA:CTP1672,Europe/Paris,,OM1, +OM1:SP:1674,1,"TOULOUSE VAL DES BOIS",43.267004,5.423498,0,0,OM1:SA:CTP1671,Europe/Paris,,OM1, +OM1:SP:1675,1,"SAINT TRONC TRANSFORMATEUR",43.267014,5.427214,0,0,OM1:SA:CTP1670,Europe/Paris,,OM1, +OM1:SP:1676,1,"SAINT TRONC GAULOISE",43.267824,5.426877,0,0,OM1:SA:CTP1669,Europe/Paris,,OM1, +OM1:SP:1677,1,"SAINT TRONC CLAIR MATIN",43.269944,5.423828,0,0,OM1:SA:CTP1668,Europe/Paris,,OM1, +OM1:SP:1678,1,"METRO STE MARGUERITE DROMEL",43.271213,5.403382,0,0,OM1:SA:CTP1619,Europe/Paris,,OM1, +OM1:SP:1679,1,"LES MARRONNIERS",43.276774,5.420232,0,0,OM1:SA:CTP1679,Europe/Paris,,OM1, +OM1:SP:1680,1,"VERDILLON",43.276004,5.422603,0,0,OM1:SA:CTP1680,Europe/Paris,,OM1, +OM1:SP:1681,1,"LA FAUVIERE",43.278428,5.428075,0,0,OM1:SA:CTP1681,Europe/Paris,,OM1, +OM1:SP:1682,1,"CHANTE PERDRIX",43.276277,5.431577,0,0,OM1:SA:CTP1682,Europe/Paris,,OM1, +OM1:SP:1683,1,"CHATEAU SAINT LOUP",43.274772,5.434179,0,0,OM1:SA:CTP1683,Europe/Paris,,OM1, +OM1:SP:1684,1,"LES TROIS PONTS",43.27389,5.435756,0,0,OM1:SA:CTP1684,Europe/Paris,,OM1, +OM1:SP:1685,1,"3 PONTS CANAL",43.274626,5.437359,0,0,OM1:SA:CTP1685,Europe/Paris,,OM1, +OM1:SP:1686,1,"PARC DES BRUYERES",43.274582,5.439169,0,0,OM1:SA:CTP1686,Europe/Paris,,OM1, +OM1:SP:1687,1,"3 PONTS CANAL",43.274761,5.437674,0,0,OM1:SA:CTP1685,Europe/Paris,,OM1, +OM1:SP:1688,1,"LES TROIS PONTS",43.274033,5.435789,0,0,OM1:SA:CTP1684,Europe/Paris,,OM1, +OM1:SP:1689,1,"CHATEAU SAINT LOUP",43.275462,5.43365,0,0,OM1:SA:CTP1683,Europe/Paris,,OM1, +OM1:SP:1690,1,"CHANTE PERDRIX",43.276147,5.432038,0,0,OM1:SA:CTP1682,Europe/Paris,,OM1, +OM1:SP:1691,1,"LA FAUVIERE",43.278546,5.42802,0,0,OM1:SA:CTP1681,Europe/Paris,,OM1, +OM1:SP:1692,1,"LYCEE JEAN PERRIN",43.275283,5.425161,0,0,OM1:SA:CTP1652,Europe/Paris,,OM1, +OM1:SP:1693,1,"VERDILLON",43.276294,5.422225,0,0,OM1:SA:CTP1680,Europe/Paris,,OM1, +OM1:SP:1694,1,"LES MARRONNIERS",43.27694,5.420389,0,0,OM1:SA:CTP1679,Europe/Paris,,OM1, +OM1:SP:1695,1,"CASTELLANE",43.285463,5.383846,0,0,OM1:SA:CTP1091,Europe/Paris,,OM1, +OM1:SP:1696,1,"PRADO PERIER",43.279057,5.387469,0,0,OM5:SA:CTP4019531,Europe/Paris,,OM1, +OM1:SP:1697,1,"PRADO BORDE",43.27764,5.388267,0,0,OM1:SA:CTP1697,Europe/Paris,,OM1, +OM1:SP:1698,1,"PRADO LOUVAIN",43.275922,5.389234,0,0,OM1:SA:CTP1698,Europe/Paris,,OM1, +OM1:SP:1699,1,"PRADO RODOCANACHI",43.274149,5.39026,0,0,OM1:SA:CTP1699,Europe/Paris,,OM1, +OM1:SP:17,1,"SAINT ANDRE",43.356826,5.342963,0,0,OM1:SA:CTP17,Europe/Paris,,OM1, +OM1:SP:1700,1,"PRADO SAINT GINIEZ",43.26956,5.38657,0,0,OM1:SA:CTP1142,Europe/Paris,,OM1, +OM1:SP:1701,1,"PRADO SAINT EXUPERY",43.268251,5.384532,0,0,OM1:SA:CTP1701,Europe/Paris,,OM1, +OM1:SP:1702,1,"PRADO TUNIS",43.266175,5.381284,0,0,OM1:SA:CTP1702,Europe/Paris,,OM1, +OM1:SP:1703,1,"PARC BORELY",43.263954,5.377795,0,0,OM1:SA:CTP1703,Europe/Paris,,OM1, +OM1:SP:1704,1,"LA PLAGE",43.26256,5.375592,0,0,OM1:SA:CTP1704,Europe/Paris,,OM1, +OM1:SP:1705,1,"PLAGE PLANCHES A VOILE",43.260059,5.375312,0,0,OM1:SA:CTP1705,Europe/Paris,,OM1, +OM1:SP:1706,1,"HIPPODROME PLAGE",43.255587,5.376367,0,0,OM1:SA:CTP1706,Europe/Paris,,OM1, +OM1:SP:1707,1,"LES GATONS PLAGE",43.252076,5.375566,0,0,OM1:SA:CTP1707,Europe/Paris,,OM1, +OM1:SP:1708,1,"VIEILLE CHAPELLE",43.247769,5.374268,0,0,OM1:SA:CTP1708,Europe/Paris,,OM1, +OM1:SP:1709,1,"TIBOULEN",43.245376,5.373035,0,0,OM1:SA:CTP1709,Europe/Paris,,OM1, +OM1:SP:171,1,"LES BORELS",43.366672,5.36293,0,0,OM1:SA:CTP165,Europe/Paris,,OM1, +OM1:SP:1710,1,"POINTE ROUGE",43.2437,5.36997,0,0,OM1:SA:CTP1710,Europe/Paris,,OM1, +OM1:SP:1711,1,"POINTE ROUGE PORT",43.242356,5.367599,0,0,OM1:SA:CTP1711,Europe/Paris,,OM1, +OM1:SP:1712,1,"MONTREDON PASTRE",43.240251,5.366024,0,0,OM1:SA:CTP1712,Europe/Paris,,OM1, +OM1:SP:1713,1,"ENGALIERE",43.23922,5.365601,0,0,OM1:SA:CTP1713,Europe/Paris,,OM1, +OM1:SP:1714,1,"GROTTE ROLLAND",43.23676,5.362593,0,0,OM1:SA:CTP1714,Europe/Paris,,OM1, +OM1:SP:1715,1,"VERRERIE",43.234671,5.359495,0,0,OM1:SA:CTP1715,Europe/Paris,,OM1, +OM1:SP:1716,1,"MADRAGUE LIEUTENANT MOULIN",43.233641,5.358075,0,0,OM1:SA:CTP1716,Europe/Paris,,OM1, +OM1:SP:1717,1,"MADRAGUE MONT ROSE",43.231916,5.355451,0,0,OM1:SA:CTP1717,Europe/Paris,,OM1, +OM1:SP:1718,1,"MADRAGUE DE MONTREDON",43.231085,5.354633,0,0,OM1:SA:CTP1718,Europe/Paris,,OM1, +OM1:SP:1719,1,"MADRAGUE MONT ROSE",43.231742,5.35559,0,0,OM1:SA:CTP1717,Europe/Paris,,OM1, +OM1:SP:172,1,"RESIDENCE LES BORELS",43.363983,5.361026,0,0,OM1:SA:CTP164,Europe/Paris,,OM1, +OM1:SP:1720,1,"MADRAGUE LIEUTENANT MOULIN",43.232986,5.357401,0,0,OM1:SA:CTP1716,Europe/Paris,,OM1, +OM1:SP:1721,1,"VERRERIE",43.23447,5.359619,0,0,OM1:SA:CTP1715,Europe/Paris,,OM1, +OM1:SP:1722,1,"GROTTE ROLLAND",43.236103,5.36198,0,0,OM1:SA:CTP1714,Europe/Paris,,OM1, +OM1:SP:1723,1,"ENGALIERE",43.238672,5.365264,0,0,OM1:SA:CTP1713,Europe/Paris,,OM1, +OM1:SP:1724,1,"MONTREDON PASTRE",43.240388,5.367544,0,0,OM1:SA:CTP1712,Europe/Paris,,OM1, +OM1:SP:1725,1,"MONTREDON CHANCEL",43.241957,5.36898,0,0,OM1:SA:CTP1725,Europe/Paris,,OM1, +OM1:SP:1726,1,"POINTE ROUGE",43.243971,5.371214,0,0,OM1:SA:CTP1710,Europe/Paris,,OM1, +OM1:SP:1727,1,"TIBOULEN",43.245151,5.373048,0,0,OM1:SA:CTP1709,Europe/Paris,,OM1, +OM1:SP:1728,1,"VIEILLE CHAPELLE",43.24832,5.375134,0,0,OM1:SA:CTP1708,Europe/Paris,,OM1, +OM1:SP:1729,1,"LES GATONS PLAGE",43.252069,5.375824,0,0,OM1:SA:CTP1707,Europe/Paris,,OM1, +OM1:SP:173,1,"L'HERMITAGE JEAN MOULIN",43.362645,5.361572,0,0,OM1:SA:CTP163,Europe/Paris,,OM1, +OM1:SP:1730,1,"HIPPODROME PLAGE",43.256857,5.376619,0,0,OM1:SA:CTP1706,Europe/Paris,,OM1, +OM1:SP:1732,1,"LA PLAGE",43.262288,5.375676,0,0,OM1:SA:CTP1704,Europe/Paris,,OM1, +OM1:SP:1733,1,"PARC BORELY",43.263865,5.378073,0,0,OM1:SA:CTP1703,Europe/Paris,,OM1, +OM1:SP:1734,1,"PRADO TUNIS",43.26627,5.381769,0,0,OM1:SA:CTP1702,Europe/Paris,,OM1, +OM1:SP:1735,1,"PRADO SAINT EXUPERY",43.267992,5.384456,0,0,OM1:SA:CTP1701,Europe/Paris,,OM1, +OM1:SP:1736,1,"ROND POINT DU PRADO",43.273162,5.39113,0,0,OM1:SA:CTP1736,Europe/Paris,,OM1, +OM1:SP:1737,1,"PRADO RODOCANACHI",43.274854,5.390137,0,0,OM1:SA:CTP1699,Europe/Paris,,OM1, +OM1:SP:1738,1,"PRADO LOUVAIN",43.276572,5.389158,0,0,OM1:SA:CTP1698,Europe/Paris,,OM1, +OM1:SP:1739,1,"PRADO BORDE",43.2783,5.388167,0,0,OM1:SA:CTP1697,Europe/Paris,,OM1, +OM1:SP:174,1,"CHEMIN DE LA MURE",43.357962,5.36565,0,0,OM1:SA:CTP162,Europe/Paris,,OM1, +OM1:SP:1740,1,"PRADO PERIER",43.27926,5.387615,0,0,OM5:SA:CTP4019531,Europe/Paris,,OM1, +OM1:SP:1747,1,"METRO ROND POINT DU PRADO",43.270164,5.392521,0,0,OM1:SA:CTP1747,Europe/Paris,,OM1, +OM1:SP:1748,1,"MICHELET HUVEAUNE",43.26777,5.39387,0,0,OM1:SA:CTP1790,Europe/Paris,,OM1, +OM1:SP:1749,1,"MICHELET RAMON",43.266134,5.394792,0,0,OM1:SA:CTP1749,Europe/Paris,,OM1, +OM1:SP:175,1,"BOULEVARD DE LA GARE",43.357109,5.36722,0,0,OM1:SA:CTP161,Europe/Paris,,OM1, +OM1:SP:1750,1,"MICHELET GANAY",43.264827,5.395535,0,0,OM1:SA:CTP1789,Europe/Paris,,OM1, +OM1:SP:1751,1,"MICHELET BOUSQUET",43.262953,5.396592,0,0,OM1:SA:CTP1788,Europe/Paris,,OM1, +OM1:SP:1752,1,"LE CORBUSIER",43.261144,5.397615,0,0,OM5:SA:CTP4019529,Europe/Paris,,OM1, +OM1:SP:1753,1,"MICHELET LUCE",43.258521,5.399075,0,0,OM1:SA:CTP1753,Europe/Paris,,OM1, +OM1:SP:1754,1,"MICHELET TAINE",43.256584,5.400152,0,0,OM1:SA:CTP1754,Europe/Paris,,OM1, +OM1:SP:1755,1,"MICHELET BONNEAUDE",43.253961,5.401636,0,0,OM1:SA:CTP1755,Europe/Paris,,OM1, +OM1:SP:1756,1,"MICHELET BLANC",43.252781,5.402348,0,0,OM1:SA:CTP1756,Europe/Paris,,OM1, +OM1:SP:1757,1,"OBELISQUE",43.25142,5.4031,0,0,OM5:SA:CTP4019528,Europe/Paris,,OM1, +OM1:SP:1760,1,"ROUBIN",43.245433,5.411538,0,0,OM5:SA:CTP4019526,Europe/Paris,,OM1, +OM1:SP:1761,1,"CC VALMANTE",43.245764,5.416612,0,0,OM1:SA:CTP1761,Europe/Paris,,OM1, +OM1:SP:1763,1,"LOTISSEMENT VALMONT",43.245148,5.424279,0,0,OM1:SA:CTP1763,Europe/Paris,,OM1, +OM1:SP:1764,1,"LE REDON",43.244867,5.428126,0,0,OM5:SA:CTP4019535,Europe/Paris,,OM1, +OM1:SP:1765,1,"LUMINY LACHAMP",43.2461,5.432153,0,0,OM5:SA:CTP4019534,Europe/Paris,,OM1, +OM1:SP:1766,1,"LUMINY VAUFREGES",43.24615,5.435723,0,0,OM1:SA:CTP1766,Europe/Paris,,OM1, +OM1:SP:1767,1,"LUMINY H L M",43.24209,5.438063,0,0,OM1:SA:CTP1767,Europe/Paris,,OM1, +OM1:SP:1768,1,"LUMINY STADE",43.237704,5.435501,0,0,OM1:SA:CTP1768,Europe/Paris,,OM1, +OM1:SP:1769,1,"LUMINY E S C A E",43.231295,5.436336,0,0,OM1:SA:CTP1769,Europe/Paris,,OM1, +OM1:SP:177,1,"LA SYLVE LE CASTELLAS",43.353773,5.371357,0,0,OM1:SA:CTP159,Europe/Paris,,OM1, +OM1:SP:1770,1,"LUMINY",43.231186,5.436994,0,0,OM1:SA:CTP1770,Europe/Paris,,OM1, +OM1:SP:1771,1,"LUMINY STADE",43.237968,5.4357,0,0,OM1:SA:CTP1768,Europe/Paris,,OM1, +OM1:SP:1772,1,"LUMINY H L M",43.243182,5.43822,0,0,OM1:SA:CTP1767,Europe/Paris,,OM1, +OM1:SP:1773,1,"LUMINY VAUFREGES",43.246516,5.435485,0,0,OM1:SA:CTP1766,Europe/Paris,,OM1, +OM1:SP:1774,1,"LUMINY LACHAMP",43.246339,5.43165,0,0,OM5:SA:CTP4019534,Europe/Paris,,OM1, +OM1:SP:1775,1,"LE REDON",43.244984,5.427185,0,0,OM5:SA:CTP4019535,Europe/Paris,,OM1, +OM1:SP:1776,1,"LOTISSEMENT VALMONT",43.245542,5.423427,0,0,OM1:SA:CTP1763,Europe/Paris,,OM1, +OM1:SP:1778,1,"CC VALMANTE",43.245751,5.415492,0,0,OM1:SA:CTP1761,Europe/Paris,,OM1, +OM1:SP:1779,1,"ROUBIN",43.24554,5.411544,0,0,OM5:SA:CTP4019526,Europe/Paris,,OM1, +OM1:SP:178,1,"H.L.M DES AYGALADES",43.353387,5.369414,0,0,OM1:SA:CTP158,Europe/Paris,,OM1, +OM1:SP:1782,1,"OBELISQUE",43.251022,5.403817,0,0,OM5:SA:CTP4019528,Europe/Paris,,OM1, +OM1:SP:1783,1,"MICHELET BLANC",43.252418,5.402772,0,0,OM1:SA:CTP1756,Europe/Paris,,OM1, +OM1:SP:1784,1,"MICHELET BONNEAUDE",43.254776,5.401458,0,0,OM1:SA:CTP1755,Europe/Paris,,OM1, +OM1:SP:1785,1,"MICHELET TAINE",43.256906,5.400243,0,0,OM1:SA:CTP1754,Europe/Paris,,OM1, +OM1:SP:1786,1,"MICHELET LUCE",43.259227,5.39894,0,0,OM1:SA:CTP1753,Europe/Paris,,OM1, +OM1:SP:1787,1,"LE CORBUSIER",43.261503,5.397634,0,0,OM5:SA:CTP4019529,Europe/Paris,,OM1, +OM1:SP:1788,1,"MICHELET BOUSQUET",43.263404,5.396567,0,0,OM1:SA:CTP1788,Europe/Paris,,OM1, +OM1:SP:1789,1,"MICHELET GANAY",43.26556,5.395353,0,0,OM1:SA:CTP1789,Europe/Paris,,OM1, +OM1:SP:179,1,"AYGALADES VILLAGE",43.35327,5.365587,0,0,OM1:SA:CTP157,Europe/Paris,,OM1, +OM1:SP:1790,1,"MICHELET HUVEAUNE",43.268038,5.393934,0,0,OM1:SA:CTP1790,Europe/Paris,,OM1, +OM1:SP:1791,1,"METRO ROND POINT DU PRADO",43.271036,5.392223,0,0,OM1:SA:CTP1083,Europe/Paris,,OM1, +OM1:SP:1792,1,"LACHAMP LUMINY",43.247491,5.435524,0,0,OM1:SA:CTP1792,Europe/Paris,,OM1, +OM1:SP:1793,1,"GRANDS PINS",43.248645,5.44025,0,0,OM1:SA:CTP1793,Europe/Paris,,OM1, +OM1:SP:1794,1,"VAUFREGES",43.249551,5.445625,0,0,OM1:SA:CTP1794,Europe/Paris,,OM1, +OM1:SP:1795,1,"GRANDS PINS",43.248841,5.440642,0,0,OM1:SA:CTP1793,Europe/Paris,,OM1, +OM1:SP:1797,1,"MICHELET LUCE",43.258969,5.39884,0,0,OM1:SA:CTP1753,Europe/Paris,,OM1, +OM1:SP:1798,1,"LUCE ISAAC",43.258096,5.396653,0,0,OM1:SA:CTP1798,Europe/Paris,,OM1, +OM1:SP:1799,1,"SAINTE ANNE",43.256822,5.394001,0,0,OM1:SA:CTP1799,Europe/Paris,,OM1, +OM1:SP:180,1,"CITÉ DES ARTS DE LA RUE",43.35166,5.36528,0,0,OM1:SA:CTP156,Europe/Paris,,OM1, +OM1:SP:1800,1,"SAINTE ANNE HAIFA",43.254627,5.394044,0,0,OM1:SA:CTP1800,Europe/Paris,,OM1, +OM1:SP:1801,1,"L' AILLAUDE",43.252457,5.394482,0,0,OM1:SA:CTP1825,Europe/Paris,,OM1, +OM1:SP:1802,1,"MAZARGUES LEGRE",43.249812,5.396101,0,0,OM1:SA:CTP1802,Europe/Paris,,OM1, +OM1:SP:1803,1,"JARDIN BORTOLI",43.248686,5.397738,0,0,OM1:SA:CTP1803,Europe/Paris,,OM1, +OM1:SP:1804,1,"ROBESPIERRE",43.247118,5.401345,0,0,OM1:SA:CTP1804,Europe/Paris,,OM1, +OM1:SP:1805,1,"MAZARGUES",43.245996,5.403795,0,0,OM1:SA:CTP1805,Europe/Paris,,OM1, +OM1:SP:1806,1,"MORGIOU SEIGNEURIE",43.242608,5.406221,0,0,OM1:SA:CTP1806,Europe/Paris,,OM1, +OM1:SP:1807,1,"MORGIOU ROSIERS",43.240413,5.406903,0,0,OM1:SA:CTP1807,Europe/Paris,,OM1, +OM1:SP:1808,1,"MORGIOU CAUVIERE",43.2376,5.408733,0,0,OM1:SA:CTP1808,Europe/Paris,,OM1, +OM1:SP:1809,1,"MORGIOU BEAUVALLON",43.234852,5.411107,0,0,OM1:SA:CTP1809,Europe/Paris,,OM1, +OM1:SP:181,1,"TRAVERSE DE L OASIS",43.348427,5.366391,0,0,OM1:SA:CTP155,Europe/Paris,,OM1, +OM1:SP:1810,1,"BAUMETTES BEAUVALLON",43.233049,5.412524,0,0,OM1:SA:CTP1810,Europe/Paris,,OM1, +OM1:SP:1811,1,"BAUMETTES RIMBAUD",43.230576,5.4141,0,0,OM1:SA:CTP1811,Europe/Paris,,OM1, +OM1:SP:1812,1,"MORGIOU ARNAUD",43.228368,5.415236,0,0,OM1:SA:CTP1812,Europe/Paris,,OM1, +OM1:SP:1813,1,"LES BAUMETTES",43.226248,5.416414,0,0,OM1:SA:CTP1813,Europe/Paris,,OM1, +OM1:SP:1814,1,"MORGIOU ARNAUD",43.228741,5.415379,0,0,OM1:SA:CTP1812,Europe/Paris,,OM1, +OM1:SP:1815,1,"BAUMETTES RIMBAUD",43.230761,5.414233,0,0,OM1:SA:CTP1811,Europe/Paris,,OM1, +OM1:SP:1816,1,"BEAUVALLON",43.234152,5.412005,0,0,OM1:SA:CTP1816,Europe/Paris,,OM1, +OM1:SP:1817,1,"MORGIOU CAUVIERE",43.237271,5.409232,0,0,OM1:SA:CTP1808,Europe/Paris,,OM1, +OM1:SP:1818,1,"MORGIOU ROSIERS",43.240378,5.407172,0,0,OM1:SA:CTP1807,Europe/Paris,,OM1, +OM1:SP:1819,1,"MORGIOU SEIGNEURIE",43.242801,5.406391,0,0,OM1:SA:CTP1806,Europe/Paris,,OM1, +OM1:SP:182,1,"4 CHEMINS DES AYGALADES",43.346017,5.366067,0,0,OM1:SA:CTP154,Europe/Paris,,OM1, +OM1:SP:1820,1,"MAZARGUES",43.246015,5.404054,0,0,OM1:SA:CTP1805,Europe/Paris,,OM1, +OM1:SP:1822,1,"ROBESPIERRE",43.247895,5.401817,0,0,OM1:SA:CTP1804,Europe/Paris,,OM1, +OM1:SP:1823,1,"ZOLA CONCORDE",43.248134,5.399456,0,0,OM1:SA:CTP1823,Europe/Paris,,OM1, +OM1:SP:1824,1,"MAZARGUES LEGRE",43.25049,5.395669,0,0,OM1:SA:CTP1802,Europe/Paris,,OM1, +OM1:SP:1825,1,"L' AILLAUDE",43.252431,5.394752,0,0,OM1:SA:CTP1825,Europe/Paris,,OM1, +OM1:SP:1826,1,"SAINTE ANNE HAIFA",43.254437,5.394403,0,0,OM1:SA:CTP1800,Europe/Paris,,OM1, +OM1:SP:1827,1,"SAINTE ANNE",43.256598,5.394617,0,0,OM1:SA:CTP1799,Europe/Paris,,OM1, +OM1:SP:1828,1,"ISAAC LUCE",43.257708,5.397309,0,0,OM1:SA:CTP1828,Europe/Paris,,OM1, +OM1:SP:183,1,"PARC BLANCHARD",43.343209,5.365524,0,0,OM1:SA:CTP153,Europe/Paris,,OM1, +OM1:SP:1830,1,"RABAT BAUMETTES",43.23382,5.412614,0,0,OM1:SA:CTP1830,Europe/Paris,,OM1, +OM1:SP:1831,1,"RABAT BEAUVALLON",43.235387,5.413178,0,0,OM1:SA:CTP1831,Europe/Paris,,OM1, +OM1:SP:1832,1,"RABAT SEIGNEURIE",43.237196,5.413434,0,0,OM1:SA:CTP1832,Europe/Paris,,OM1, +OM1:SP:1833,1,"LA SEIGNEURIE",43.239213,5.414268,0,0,OM1:SA:CTP1833,Europe/Paris,,OM1, +OM1:SP:1834,1,"LA SEIGNEURIE",43.239381,5.414351,0,0,OM1:SA:CTP1833,Europe/Paris,,OM1, +OM1:SP:1835,1,"RABAT SEIGNEURIE",43.237608,5.413173,0,0,OM1:SA:CTP1832,Europe/Paris,,OM1, +OM1:SP:1836,1,"RABAT BEAUVALLON",43.235377,5.412894,0,0,OM1:SA:CTP1831,Europe/Paris,,OM1, +OM1:SP:1838,1,"NEGRESKO PAULET",43.269628,5.389847,0,0,OM1:SA:CTP1838,Europe/Paris,,OM1, +OM1:SP:1839,1,"MAZARGUES ETIENNE MILAN",43.266785,5.389585,0,0,OM1:SA:CTP1839,Europe/Paris,,OM1, +OM1:SP:184,1,"ZI DE LA DELORME",43.340524,5.36537,0,0,OM1:SA:CTP152,Europe/Paris,,OM1, +OM1:SP:1840,1,"GRAND SAINT GINIEZ",43.26445,5.3917,0,0,OM1:SA:CTP1840,Europe/Paris,,OM1, +OM1:SP:1841,1,"REGGIO",43.260917,5.393592,0,0,OM1:SA:CTP1841,Europe/Paris,,OM1, +OM1:SP:1842,1,"BOULEVARD VERNE",43.258969,5.394079,0,0,OM1:SA:CTP1842,Europe/Paris,,OM1, +OM1:SP:1843,1,"HAIFA OLLIVARY",43.253148,5.392637,0,0,OM1:SA:CTP1843,Europe/Paris,,OM1, +OM1:SP:1844,1,"HAIFA MARIE LOUISE",43.251655,5.390417,0,0,OM1:SA:CTP1844,Europe/Paris,,OM1, +OM1:SP:1845,1,"HAMBOURG HAIFA",43.249232,5.390239,0,0,OM1:SA:CTP1845,Europe/Paris,,OM1, +OM1:SP:1846,1,"HAMBOURG LANCIER",43.247333,5.392844,0,0,OM1:SA:CTP1846,Europe/Paris,,OM1, +OM1:SP:1847,1,"LE LANCIER",43.246822,5.396261,0,0,OM1:SA:CTP1847,Europe/Paris,,OM1, +OM1:SP:1848,1,"BARQUIERE MARTHELINE",43.24604,5.398471,0,0,OM1:SA:CTP1848,Europe/Paris,,OM1, +OM1:SP:1849,1,"SOUDE REGINENSI",43.244406,5.399946,0,0,OM1:SA:CTP1849,Europe/Paris,,OM1, +OM1:SP:185,1,"VISITATION",43.337327,5.367123,0,0,OM1:SA:CTP151,Europe/Paris,,OM1, +OM1:SP:1850,1,"SOUDE POMEON",43.242706,5.402499,0,0,OM1:SA:CTP1850,Europe/Paris,,OM1, +OM1:SP:1851,1,"OCEAN PISTOU",43.240635,5.401651,0,0,OM1:SA:CTP1851,Europe/Paris,,OM1, +OM1:SP:1852,1,"OCEAN REATTU",43.241395,5.398961,0,0,OM1:SA:CTP1852,Europe/Paris,,OM1, +OM1:SP:1853,1,"COLLEGE ROY D ESPAGNE",43.240736,5.396835,0,0,OM1:SA:CTP1853,Europe/Paris,,OM1, +OM1:SP:1854,1,"SORMIOU ROY D'ESPAGNE",43.235389,5.398936,0,0,OM1:SA:CTP1854,Europe/Paris,,OM1, +OM1:SP:1855,1,"SORMIOU JARRE",43.233164,5.399703,0,0,OM1:SA:CTP1855,Europe/Paris,,OM1, +OM1:SP:1857,1,"LA CAYOLLE",43.22911,5.401553,0,0,OM1:SA:CTP1857,Europe/Paris,,OM1, +OM1:SP:1858,1,"SORMIOU PIERROTTI",43.230412,5.401079,0,0,OM1:SA:CTP1858,Europe/Paris,,OM1, +OM1:SP:1859,1,"COLGATE SORMIOU",43.231773,5.401805,0,0,OM1:SA:CTP1859,Europe/Paris,,OM1, +OM1:SP:1860,1,"COLGATE VALETTE",43.232815,5.404997,0,0,OM1:SA:CTP1860,Europe/Paris,,OM1, +OM1:SP:1861,1,"COLGATE AGELASTO",43.233939,5.408783,0,0,OM1:SA:CTP1861,Europe/Paris,,OM1, +OM1:SP:1862,1,"COLGATE AGELASTO",43.23423,5.408959,0,0,OM1:SA:CTP1861,Europe/Paris,,OM1, +OM1:SP:1863,1,"COLGATE VALETTE",43.233126,5.405124,0,0,OM1:SA:CTP1860,Europe/Paris,,OM1, +OM1:SP:1864,1,"COLGATE SORMIOU",43.232118,5.40234,0,0,OM1:SA:CTP1859,Europe/Paris,,OM1, +OM1:SP:1866,1,"LA CAYOLLE",43.229302,5.401747,0,0,OM1:SA:CTP1857,Europe/Paris,,OM1, +OM1:SP:1868,1,"SORMIOU JARRE",43.233475,5.399818,0,0,OM1:SA:CTP1855,Europe/Paris,,OM1, +OM1:SP:1869,1,"SORMIOU ROY D'ESPAGNE",43.236041,5.399094,0,0,OM1:SA:CTP1854,Europe/Paris,,OM1, +OM1:SP:1870,1,"COLLEGE ROY D ESPAGNE",43.241133,5.39741,0,0,OM1:SA:CTP1853,Europe/Paris,,OM1, +OM1:SP:1871,1,"OCEAN REATTU",43.24141,5.398408,0,0,OM1:SA:CTP1852,Europe/Paris,,OM1, +OM1:SP:1872,1,"OCEAN PISTOU",43.240448,5.401272,0,0,OM1:SA:CTP1851,Europe/Paris,,OM1, +OM1:SP:1873,1,"SOUDE POMEON",43.24235,5.403292,0,0,OM1:SA:CTP1850,Europe/Paris,,OM1, +OM1:SP:1874,1,"SOUDE REGINENSI",43.244544,5.400138,0,0,OM1:SA:CTP1849,Europe/Paris,,OM1, +OM1:SP:1875,1,"BARQUIERE MARTHELINE",43.245899,5.39866,0,0,OM1:SA:CTP1848,Europe/Paris,,OM1, +OM1:SP:1876,1,"LE LANCIER",43.246746,5.395753,0,0,OM1:SA:CTP1847,Europe/Paris,,OM1, +OM1:SP:1877,1,"HAMBOURG LANCIER",43.247379,5.39313,0,0,OM1:SA:CTP1846,Europe/Paris,,OM1, +OM1:SP:1878,1,"HAMBOURG HAIFA",43.249331,5.390564,0,0,OM1:SA:CTP1845,Europe/Paris,,OM1, +OM1:SP:1879,1,"HAIFA MARIE LOUISE",43.251491,5.390802,0,0,OM1:SA:CTP1844,Europe/Paris,,OM1, +OM1:SP:188,1,"CAPITAINE GEZE",43.329121,5.366357,0,0,OM1:SA:CTP188,Europe/Paris,,OM1, +OM1:SP:1880,1,"HAIFA OLLIVARY",43.253276,5.393185,0,0,OM1:SA:CTP1843,Europe/Paris,,OM1, +OM1:SP:1881,1,"SAINTE ANNE",43.257084,5.394298,0,0,OM1:SA:CTP1799,Europe/Paris,,OM1, +OM1:SP:1882,1,"BOULEVARD VERNE",43.259297,5.394256,0,0,OM1:SA:CTP1842,Europe/Paris,,OM1, +OM1:SP:1883,1,"REGGIO",43.261163,5.393789,0,0,OM1:SA:CTP1841,Europe/Paris,,OM1, +OM1:SP:1884,1,"GRAND SAINT GINIEZ",43.2652,5.390941,0,0,OM1:SA:CTP1840,Europe/Paris,,OM1, +OM1:SP:1885,1,"MAZARGUES ETIENNE MILAN",43.26745,5.389608,0,0,OM1:SA:CTP1885,Europe/Paris,,OM1, +OM1:SP:1886,1,"NEGRESKO PAULET",43.268895,5.388762,0,0,OM1:SA:CTP1838,Europe/Paris,,OM1, +OM1:SP:1887,1,"METRO STE MARGUERITE DROMEL",43.270712,5.402974,0,0,OM1:SA:CTP1619,Europe/Paris,,OM1, +OM1:SP:1888,1,"LA PUGETTE",43.268746,5.403472,0,0,OM1:SA:CTP1667,Europe/Paris,,OM1, +OM1:SP:1889,1,"SAINTE MARGUERITE",43.268213,5.406089,0,0,OM1:SA:CTP1889,Europe/Paris,,OM1, +OM1:SP:189,1,"METRO BOUGAINVILLE",43.321422,5.371197,0,0,OM1:SA:CTP1,Europe/Paris,,OM1, +OM1:SP:1890,1,"ANTIDE BOYER",43.265321,5.408789,0,0,OM1:SA:CTP1890,Europe/Paris,,OM1, +OM1:SP:1891,1,"HOPITAL SALVATOR PAOLI CALMETTES",43.263366,5.410825,0,0,OM1:SA:CTP1891,Europe/Paris,,OM1, +OM1:SP:1892,1,"HOPITAL SAINTE MARGUERITE",43.262629,5.412385,0,0,OM1:SA:CTP1892,Europe/Paris,,OM1, +OM1:SP:1893,1,"GRAND PRE",43.261504,5.414589,0,0,OM1:SA:CTP1893,Europe/Paris,,OM1, +OM1:SP:1894,1,"LE CABOT",43.258808,5.417053,0,0,OM1:SA:CTP1894,Europe/Paris,,OM1, +OM1:SP:1895,1,"LE REDON LA PANOUSE",43.257005,5.418777,0,0,OM1:SA:CTP1895,Europe/Paris,,OM1, +OM1:SP:1896,1,"ALLEE DES PINS",43.254714,5.42029,0,0,OM1:SA:CTP1896,Europe/Paris,,OM1, +OM1:SP:1897,1,"LA ROUVIERE",43.252017,5.421819,0,0,OM1:SA:CTP1897,Europe/Paris,,OM1, +OM1:SP:1898,1,"LE FANGAS",43.250102,5.422122,0,0,OM1:SA:CTP1898,Europe/Paris,,OM1, +OM1:SP:1899,1,"LA GOUFFONE",43.246836,5.424382,0,0,OM1:SA:CTP1899,Europe/Paris,,OM1, +OM1:SP:190,1,"TUVES BOSPHORE",43.367534,5.363284,0,0,OM1:SA:CTP190,Europe/Paris,,OM1, +OM1:SP:1900,1,"REDON",43.245155,5.42685,0,0,OM1:SA:CTP1900,Europe/Paris,,OM1, +OM1:SP:1901,1,"LE REDON",43.24529,5.427165,0,0,OM5:SA:CTP4019535,Europe/Paris,,OM1, +OM1:SP:1902,1,"LA GOUFFONE",43.246638,5.424716,0,0,OM1:SA:CTP1899,Europe/Paris,,OM1, +OM1:SP:1903,1,"LE FANGAS",43.250032,5.422364,0,0,OM1:SA:CTP1898,Europe/Paris,,OM1, +OM1:SP:1904,1,"LA ROUVIERE",43.252155,5.422023,0,0,OM1:SA:CTP1897,Europe/Paris,,OM1, +OM1:SP:1905,1,"ALLEE DES PINS",43.254432,5.420718,0,0,OM1:SA:CTP1896,Europe/Paris,,OM1, +OM1:SP:1906,1,"LE REDON LA PANOUSE",43.256891,5.4193,0,0,OM1:SA:CTP1895,Europe/Paris,,OM1, +OM1:SP:1907,1,"LE CABOT",43.259191,5.416877,0,0,OM1:SA:CTP1894,Europe/Paris,,OM1, +OM1:SP:1908,1,"GRAND PRE",43.26172,5.414613,0,0,OM1:SA:CTP1893,Europe/Paris,,OM1, +OM1:SP:1909,1,"HOPITAL SAINTE MARGUERITE",43.263018,5.411976,0,0,OM1:SA:CTP1892,Europe/Paris,,OM1, +OM1:SP:191,1,"LE CANAL",43.366258,5.36901,0,0,OM1:SA:CTP191,Europe/Paris,,OM1, +OM1:SP:1910,1,"HOPITAL SALVATOR PAOLI CALMETTES",43.263833,5.410518,0,0,OM1:SA:CTP1891,Europe/Paris,,OM1, +OM1:SP:1911,1,"ANTIDE BOYER",43.26562,5.408731,0,0,OM1:SA:CTP1890,Europe/Paris,,OM1, +OM1:SP:1912,1,"SAINTE MARGUERITE",43.268207,5.406618,0,0,OM1:SA:CTP1889,Europe/Paris,,OM1, +OM1:SP:1913,1,"CLAIRVAL VALLON DU REDON",43.247838,5.426761,0,0,OM1:SA:CTP1913,Europe/Paris,,OM1, +OM1:SP:1915,1,"GRAND SAINT GINIEZ",43.264589,5.390613,0,0,OM1:SA:CTP1840,Europe/Paris,,OM1, +OM1:SP:1916,1,"LYCEE DAUMIER",43.261434,5.387394,0,0,OM1:SA:CTP1916,Europe/Paris,,OM1, +OM1:SP:1917,1,"CLOT BEY PAUL",43.258387,5.383553,0,0,OM1:SA:CTP1917,Europe/Paris,,OM1, +OM1:SP:1918,1,"CLOT BEY LEAU",43.255622,5.382127,0,0,OM1:SA:CTP1918,Europe/Paris,,OM1, +OM1:SP:1919,1,"PLACE BONNEFON",43.253542,5.381894,0,0,OM1:SA:CTP1919,Europe/Paris,,OM1, +OM1:SP:192,1,"LES PINS",43.366108,5.372096,0,0,OM1:SA:CTP192,Europe/Paris,,OM1, +OM1:SP:1920,1,"SABLIER CITE BORELY",43.251867,5.382001,0,0,OM1:SA:CTP1920,Europe/Paris,,OM1, +OM1:SP:1921,1,"CLINIQUE",43.249673,5.381688,0,0,OM1:SA:CTP1921,Europe/Paris,,OM1, +OM1:SP:1922,1,"BONNEVEINE",43.247191,5.382,0,0,OM1:SA:CTP1922,Europe/Paris,,OM1, +OM1:SP:1923,1,"ZENATTI LANCIER",43.246117,5.383726,0,0,OM1:SA:CTP1923,Europe/Paris,,OM1, +OM1:SP:1924,1,"MUSSO ROY D'ESPAGNE",43.243383,5.384996,0,0,OM1:SA:CTP1924,Europe/Paris,,OM1, +OM1:SP:1926,1,"MUSSO ROY D ESPAGNE",43.2439,5.385171,0,0,OM1:SA:CTP1926,Europe/Paris,,OM1, +OM1:SP:1927,1,"ZENATTI LANCIER",43.246446,5.383854,0,0,OM1:SA:CTP1923,Europe/Paris,,OM1, +OM1:SP:1928,1,"LAPIN BLANC",43.246999,5.383072,0,0,OM1:SA:CTP1928,Europe/Paris,,OM1, +OM1:SP:1929,1,"CLINIQUE",43.249239,5.382059,0,0,OM1:SA:CTP1921,Europe/Paris,,OM1, +OM1:SP:193,1,"LA SAVINE SUD",43.366645,5.372186,0,0,OM1:SA:CTP193,Europe/Paris,,OM1, +OM1:SP:1930,1,"SABLIER CITE BORELY",43.251686,5.382361,0,0,OM1:SA:CTP1920,Europe/Paris,,OM1, +OM1:SP:1931,1,"PLACE BONNEFON",43.254,5.382238,0,0,OM1:SA:CTP1919,Europe/Paris,,OM1, +OM1:SP:1932,1,"CLOT BEY LEAU",43.25607,5.382495,0,0,OM1:SA:CTP1918,Europe/Paris,,OM1, +OM1:SP:1933,1,"CLOT BEY PAUL",43.257778,5.383459,0,0,OM1:SA:CTP1917,Europe/Paris,,OM1, +OM1:SP:1934,1,"LYCEE DAUMIER",43.262125,5.387762,0,0,OM1:SA:CTP1916,Europe/Paris,,OM1, +OM1:SP:1936,1,"ZENATTI LYCEE",43.245867,5.393492,0,0,OM1:SA:CTP1936,Europe/Paris,,OM1, +OM1:SP:1937,1,"ZENATTI MALRIEU",43.246306,5.388472,0,0,OM1:SA:CTP1937,Europe/Paris,,OM1, +OM1:SP:1938,1,"ZENATTI ECOLES",43.246661,5.386117,0,0,OM1:SA:CTP1938,Europe/Paris,,OM1, +OM1:SP:1939,1,"PARANGON NEPTUNE",43.245239,5.380113,0,0,OM1:SA:CTP1939,Europe/Paris,,OM1, +OM1:SP:1940,1,"PARANGON BEAU PIN",43.242292,5.379403,0,0,OM1:SA:CTP1940,Europe/Paris,,OM1, +OM1:SP:1941,1,"CORAIL LYCEE",43.24031,5.376986,0,0,OM1:SA:CTP1941,Europe/Paris,,OM1, +OM1:SP:1942,1,"MARSEILLEVEYRE",43.239185,5.375438,0,0,OM1:SA:CTP1942,Europe/Paris,,OM1, +OM1:SP:1943,1,"CORAIL LYCEE",43.240077,5.377269,0,0,OM1:SA:CTP1941,Europe/Paris,,OM1, +OM1:SP:1944,1,"PARANGON BEAU PIN",43.242919,5.379805,0,0,OM1:SA:CTP1940,Europe/Paris,,OM1, +OM1:SP:1945,1,"PARANGON NEPTUNE",43.245207,5.380308,0,0,OM1:SA:CTP1939,Europe/Paris,,OM1, +OM1:SP:1946,1,"LAPIN BLANC",43.246903,5.382304,0,0,OM1:SA:CTP1928,Europe/Paris,,OM1, +OM1:SP:1947,1,"ZENATTI ECOLES",43.246429,5.386338,0,0,OM1:SA:CTP1938,Europe/Paris,,OM1, +OM1:SP:1948,1,"ZENATTI MALRIEU",43.246049,5.38927,0,0,OM1:SA:CTP1937,Europe/Paris,,OM1, +OM1:SP:1949,1,"ZENATTI LYCEE",43.245732,5.393792,0,0,OM1:SA:CTP1936,Europe/Paris,,OM1, +OM1:SP:195,1,"LA SAVINE",43.367704,5.369158,0,0,OM1:SA:CTP195,Europe/Paris,,OM1, +OM1:SP:1950,1,"METRO STE MARGUERITE DROMEL",43.271081,5.403572,0,0,OM1:SA:CTP1619,Europe/Paris,,OM1, +OM1:SP:1951,1,"AUBERT GANAY",43.265758,5.403251,0,0,OM1:SA:CTP1951,Europe/Paris,,OM1, +OM1:SP:1952,1,"AUBERT COIN JOLI",43.263799,5.404167,0,0,OM1:SA:CTP1952,Europe/Paris,,OM1, +OM1:SP:1953,1,"LE BRIX SEVIGNE",43.261711,5.403908,0,0,OM1:SA:CTP1953,Europe/Paris,,OM1, +OM1:SP:1954,1,"AIGUIER TRIOULET",43.259377,5.402516,0,0,OM1:SA:CTP1954,Europe/Paris,,OM1, +OM1:SP:1955,1,"AIGUIER CANTINI",43.257959,5.403351,0,0,OM1:SA:CTP1955,Europe/Paris,,OM1, +OM1:SP:1956,1,"AIGUIER C.N.R.S",43.255896,5.405369,0,0,OM1:SA:CTP1956,Europe/Paris,,OM1, +OM1:SP:1957,1,"CHATEAU SEC",43.255407,5.40677,0,0,OM1:SA:CTP1957,Europe/Paris,,OM1, +OM1:SP:1959,1,"LA BRUYERE",43.256153,5.411485,0,0,OM1:SA:CTP1959,Europe/Paris,,OM1, +OM1:SP:1960,1,"CHEMIN COLLINE SAINT JOSEPH",43.253943,5.412991,0,0,OM1:SA:CTP1960,Europe/Paris,,OM1, +OM1:SP:1961,1,"SAINT JOSEPH AIGUIER",43.251713,5.414852,0,0,OM1:SA:CTP1961,Europe/Paris,,OM1, +OM1:SP:1962,1,"VALMANTE",43.25029,5.41619,0,0,OM1:SA:CTP1962,Europe/Paris,,OM1, +OM1:SP:1963,1,"VALMANTE",43.250292,5.416756,0,0,OM1:SA:CTP1962,Europe/Paris,,OM1, +OM1:SP:1965,1,"SAINT JOSEPH AIGUIER",43.251599,5.415092,0,0,OM1:SA:CTP1961,Europe/Paris,,OM1, +OM1:SP:1966,1,"CHEMIN COLLINE SAINT JOSEPH",43.253925,5.413297,0,0,OM1:SA:CTP1960,Europe/Paris,,OM1, +OM1:SP:1967,1,"LA BRUYERE",43.256074,5.411714,0,0,OM1:SA:CTP1959,Europe/Paris,,OM1, +OM1:SP:1968,1,"COLLEGE MENU",43.257489,5.410671,0,0,OM1:SA:CTP1968,Europe/Paris,,OM1, +OM1:SP:1969,1,"CHATEAU SEC",43.255717,5.40691,0,0,OM1:SA:CTP1957,Europe/Paris,,OM1, +OM1:SP:197,1,"LA SAVINE SUD",43.366579,5.371665,0,0,OM1:SA:CTP193,Europe/Paris,,OM1, +OM1:SP:1970,1,"AIGUIER C.N.R.S",43.256169,5.405248,0,0,OM1:SA:CTP1956,Europe/Paris,,OM1, +OM1:SP:1971,1,"AIGUIER CANTINI",43.2581,5.403457,0,0,OM1:SA:CTP1955,Europe/Paris,,OM1, +OM1:SP:1972,1,"AIGUIER TRIOULET",43.258914,5.402971,0,0,OM1:SA:CTP1954,Europe/Paris,,OM1, +OM1:SP:1973,1,"LE BRIX SEVIGNE",43.262338,5.40463,0,0,OM1:SA:CTP1953,Europe/Paris,,OM1, +OM1:SP:1974,1,"AUBERT COIN JOLI",43.264146,5.404272,0,0,OM1:SA:CTP1952,Europe/Paris,,OM1, +OM1:SP:1975,1,"AUBERT GANAY",43.266099,5.403293,0,0,OM1:SA:CTP1951,Europe/Paris,,OM1, +OM1:SP:1976,1,"METRO STE MARGUERITE DROMEL",43.271245,5.403814,0,0,OM1:SA:CTP1619,Europe/Paris,,OM1, +OM1:SP:1977,1,"LE BRIX MICHELET",43.259697,5.401696,0,0,OM1:SA:CTP1977,Europe/Paris,,OM1, +OM1:SP:1978,1,"CONCORDE OBELISQUE",43.250149,5.402872,0,0,OM1:SA:CTP1978,Europe/Paris,,OM1, +OM1:SP:1979,1,"MAGDELON",43.248602,5.401338,0,0,OM1:SA:CTP1979,Europe/Paris,,OM1, +OM1:SP:198,1,"LES PINS",43.366171,5.372407,0,0,OM1:SA:CTP192,Europe/Paris,,OM1, +OM1:SP:1980,1,"JARDIN BORTOLI",43.248195,5.396974,0,0,OM1:SA:CTP1803,Europe/Paris,,OM1, +OM1:SP:1981,1,"HAMBOURG LEAU",43.252621,5.386175,0,0,OM1:SA:CTP1981,Europe/Paris,,OM1, +OM1:SP:1982,1,"HAMBOURG CLOT BEY",43.254241,5.382927,0,0,OM1:SA:CTP1982,Europe/Paris,,OM1, +OM1:SP:1985,1,"VIEILLE CHAPELLE",43.248798,5.37479,0,0,OM1:SA:CTP1708,Europe/Paris,,OM1, +OM1:SP:199,1,"LE CANAL",43.366393,5.369325,0,0,OM1:SA:CTP191,Europe/Paris,,OM1, +OM1:SP:1990,1,"HAMBOURG LEAU",43.252444,5.386055,0,0,OM1:SA:CTP1981,Europe/Paris,,OM1, +OM1:SP:1991,1,"MAGDELON",43.248385,5.401376,0,0,OM1:SA:CTP1979,Europe/Paris,,OM1, +OM1:SP:1992,1,"CONCORDE OBELISQUE",43.250254,5.403296,0,0,OM1:SA:CTP1978,Europe/Paris,,OM1, +OM1:SP:1993,1,"LE BRIX MICHELET",43.259521,5.401539,0,0,OM1:SA:CTP1977,Europe/Paris,,OM1, +OM1:SP:1994,1,"VITON LE BRIX",43.261394,5.405257,0,0,OM1:SA:CTP1994,Europe/Paris,,OM1, +OM1:SP:1995,1,"VITON HOPITAL SAINTE MARGUERITE",43.259525,5.408356,0,0,OM1:SA:CTP1995,Europe/Paris,,OM1, +OM1:SP:1996,1,"COLLEGE MENU",43.257403,5.410211,0,0,OM1:SA:CTP1968,Europe/Paris,,OM1, +OM1:SP:1998,1,"AIGUIER SAINT JACQUES",43.252774,5.4092,0,0,OM1:SA:CTP1998,Europe/Paris,,OM1, +OM1:SP:1999,1,"HESPERIDES MONTVAL",43.251912,5.411037,0,0,OM1:SA:CTP1999,Europe/Paris,,OM1, +OM1:SP:2,1,"LES CROTTES",43.323918,5.367486,0,0,OM1:SA:CTP2,Europe/Paris,,OM1, +OM1:SP:200,1,"TUVES BOSPHORE",43.367831,5.363596,0,0,OM1:SA:CTP190,Europe/Paris,,OM1, +OM1:SP:2000,1,"AIGUIER C P C A M",43.250782,5.413768,0,0,OM1:SA:CTP2000,Europe/Paris,,OM1, +OM1:SP:2001,1,"SAINT JOSEPH BON PASTEUR",43.251789,5.418473,0,0,OM1:SA:CTP2001,Europe/Paris,,OM1, +OM1:SP:2002,1,"LA ROUVIERE",43.252413,5.421188,0,0,OM1:SA:CTP1897,Europe/Paris,,OM1, +OM1:SP:2003,1,"LA ROUVIERE",43.252522,5.421464,0,0,OM1:SA:CTP1897,Europe/Paris,,OM1, +OM1:SP:2004,1,"SAINT JOSEPH BON PASTEUR",43.251961,5.418457,0,0,OM1:SA:CTP2001,Europe/Paris,,OM1, +OM1:SP:2005,1,"VALMANTE",43.250575,5.416907,0,0,OM1:SA:CTP1962,Europe/Paris,,OM1, +OM1:SP:2006,1,"AIGUIER C P C A M",43.25087,5.414487,0,0,OM1:SA:CTP2000,Europe/Paris,,OM1, +OM1:SP:2007,1,"HESPERIDES MONTVAL",43.251781,5.411558,0,0,OM1:SA:CTP1999,Europe/Paris,,OM1, +OM1:SP:2008,1,"AIGUIER SAINT JACQUES",43.253178,5.408914,0,0,OM1:SA:CTP1998,Europe/Paris,,OM1, +OM1:SP:201,1,"CANEBIERE BOURSE",43.296717,5.376711,0,0,OM1:SA:CTP1058,Europe/Paris,,OM1, +OM1:SP:2010,1,"VITON HOPITAL SAINTE MARGUERITE",43.258558,5.409756,0,0,OM1:SA:CTP1995,Europe/Paris,,OM1, +OM1:SP:2011,1,"DE LESSEPS PYAT",43.320845,5.375071,0,0,OM1:SA:CTP2011,Europe/Paris,,OM1, +OM1:SP:2012,1,"PLOMBIERES ARNAL",43.315926,5.384281,0,0,OM1:SA:CTP2012,Europe/Paris,,OM1, +OM1:SP:2013,1,"PLACE BUREL",43.314751,5.389256,0,0,OM1:SA:CTP2013,Europe/Paris,,OM1, +OM1:SP:2014,1,"CITE CHUTES LAVIE",43.316158,5.394503,0,0,OM1:SA:CTP2014,Europe/Paris,,OM1, +OM1:SP:2015,1,"SAINT JUST LE DOME",43.315121,5.402502,0,0,OM1:SA:CTP2015,Europe/Paris,,OM1, +OM1:SP:2016,1,"MARECHAL JUIN",43.312726,5.404505,0,0,OM1:SA:CTP2016,Europe/Paris,,OM1, +OM1:SP:2017,1,"METRO CHARTREUX",43.310017,5.403005,0,0,OM1:SA:CTP2017,Europe/Paris,,OM1, +OM1:SP:2018,1,"DUPARC MONTOLIVET",43.307779,5.401691,0,0,OM1:SA:CTP2018,Europe/Paris,,OM1, +OM1:SP:2019,1,"STADE VALLIER",43.300301,5.400627,0,0,OM1:SA:CTP2019,Europe/Paris,,OM1, +OM1:SP:2020,1,"SAKAKINI GRANOUX",43.298445,5.400737,0,0,OM1:SA:CTP2020,Europe/Paris,,OM1, +OM1:SP:2021,1,"SAKAKINI CHAVE",43.295289,5.400409,0,0,OM1:SA:CTP2021,Europe/Paris,,OM1, +OM1:SP:2022,1,"SAKAKINI JEANNE D ARC",43.293152,5.401243,0,0,OM1:SA:CTP2022,Europe/Paris,,OM1, +OM1:SP:2023,1,"PLACE DE POLOGNE",43.284248,5.398441,0,0,OM1:SA:CTP2023,Europe/Paris,,OM1, +OM1:SP:2024,1,"BONNEFOY RABATAU",43.27968,5.399711,0,0,OM1:SA:CTP2024,Europe/Paris,,OM1, +OM1:SP:2029,1,"PLACE FERRIE",43.278136,5.399296,0,0,OM1:SA:CTP2029,Europe/Paris,,OM1, +OM1:SP:2030,1,"BONNEFOY RABATAU",43.279875,5.400128,0,0,OM1:SA:CTP2024,Europe/Paris,,OM1, +OM1:SP:2031,1,"SAKAKINI JEANNE D ARC",43.293085,5.401695,0,0,OM1:SA:CTP2022,Europe/Paris,,OM1, +OM1:SP:2032,1,"SAKAKINI CHAVE",43.295597,5.400659,0,0,OM1:SA:CTP2021,Europe/Paris,,OM1, +OM1:SP:2033,1,"SAKAKINI GRANOUX",43.29822,5.401045,0,0,OM1:SA:CTP2020,Europe/Paris,,OM1, +OM1:SP:2034,1,"STADE VALLIER",43.300276,5.40118,0,0,OM1:SA:CTP2019,Europe/Paris,,OM1, +OM1:SP:2035,1,"DUPARC MONTOLIVET",43.308094,5.402312,0,0,OM1:SA:CTP2018,Europe/Paris,,OM1, +OM1:SP:2036,1,"METRO CHARTREUX",43.310319,5.403428,0,0,OM1:SA:CTP2017,Europe/Paris,,OM1, +OM1:SP:2037,1,"MARECHAL JUIN",43.313033,5.405396,0,0,OM1:SA:CTP2016,Europe/Paris,,OM1, +OM1:SP:2038,1,"SAINT JUST HOTEL DU DEPARTEMENT",43.313973,5.405877,0,0,OM1:SA:CTP2038,Europe/Paris,,OM1, +OM1:SP:2039,1,"SAINT JUST LE DOME",43.31505,5.403422,0,0,OM1:SA:CTP2015,Europe/Paris,,OM1, +OM1:SP:2040,1,"CHALUSSET",43.315661,5.401841,0,0,OM1:SA:CTP2040,Europe/Paris,,OM1, +OM1:SP:2041,1,"CITE CHUTES LAVIE",43.316604,5.395266,0,0,OM1:SA:CTP2014,Europe/Paris,,OM1, +OM1:SP:2042,1,"PLACE BUREL",43.314998,5.389441,0,0,OM1:SA:CTP2013,Europe/Paris,,OM1, +OM1:SP:2043,1,"PLOMBIERES ARNAL",43.316332,5.383933,0,0,OM1:SA:CTP2012,Europe/Paris,,OM1, +OM1:SP:2045,1,"PLOMBIERES BATTALA",43.318523,5.379899,0,0,OM1:SA:CTP2045,Europe/Paris,,OM1, +OM1:SP:2046,1,"METRO BOUGAINVILLE",43.321337,5.371328,0,0,OM1:SA:CTP1,Europe/Paris,,OM1, +OM1:SP:2050,1,"CAPITAINERIE",43.295341,5.365239,0,0,OM1:SA:CTP2050,Europe/Paris,,OM1, +OM1:SP:2051,1,"QUAI DU PORT",43.295823,5.367911,0,0,OM1:SA:CTP2051,Europe/Paris,,OM1, +OM1:SP:2053,1,"PLACE AUX HUILES",43.293255,5.370631,0,0,OM1:SA:CTP1441,Europe/Paris,,OM1, +OM1:SP:2054,1,"THÉATRE LA CRIÉE",43.292684,5.367426,0,0,OM1:SA:CTP2054,Europe/Paris,,OM1, +OM1:SP:2055,1,"FORT SAINT NICOLAS",43.292307,5.361829,0,0,OM1:SA:CTP2055,Europe/Paris,,OM1, +OM1:SP:2056,1,"CATALANS",43.288848,5.353743,0,0,OM1:SA:CTP1398,Europe/Paris,,OM1, +OM1:SP:2057,1,"CORNICHE FREGIER",43.287482,5.352108,0,0,OM1:SA:CTP2057,Europe/Paris,,OM1, +OM1:SP:2058,1,"VALLON DES AUFFES",43.285759,5.350688,0,0,OM1:SA:CTP2058,Europe/Paris,,OM1, +OM1:SP:2060,1,"ENDOUME",43.282168,5.350795,0,0,OM1:SA:CTP2060,Europe/Paris,,OM1, +OM1:SP:2061,1,"FAUSSE MONNAIE",43.280601,5.352485,0,0,OM1:SA:CTP2061,Europe/Paris,,OM1, +OM1:SP:2062,1,"PARC VALMER",43.27805,5.354948,0,0,OM1:SA:CTP2062,Europe/Paris,,OM1, +OM1:SP:2063,1,"VALLON DE LA BAUDILLE",43.276836,5.357198,0,0,OM1:SA:CTP2063,Europe/Paris,,OM1, +OM1:SP:2064,1,"VALLON DE L'ORIOL",43.27554,5.359148,0,0,OM1:SA:CTP2064,Europe/Paris,,OM1, +OM1:SP:2065,1,"CORNICHE NAPOULE",43.274283,5.361654,0,0,OM1:SA:CTP2065,Europe/Paris,,OM1, +OM1:SP:2066,1,"LE PROPHETE",43.272236,5.362533,0,0,OM1:SA:CTP2066,Europe/Paris,,OM1, +OM1:SP:2067,1,"CHEMIN DU ROUCAS BLANC",43.269394,5.366651,0,0,OM1:SA:CTP2067,Europe/Paris,,OM1, +OM1:SP:2068,1,"CORNICHE TALABOT",43.267769,5.371684,0,0,OM1:SA:CTP2068,Europe/Paris,,OM1, +OM1:SP:2069,1,"PLAGE ROUCAS BLANC",43.265493,5.372967,0,0,OM1:SA:CTP2069,Europe/Paris,,OM1, +OM1:SP:207,1,"NATIONAL GUIBAL",43.305461,5.384218,0,0,OM1:SA:CTP207,Europe/Paris,,OM1, +OM1:SP:2070,1,"PLACE AMIRAL MUSELIER",43.263545,5.373811,0,0,OM1:SA:CTP2070,Europe/Paris,,OM1, +OM1:SP:2071,1,"PLACE AMIRAL MUSELIER",43.26413,5.373817,0,0,OM1:SA:CTP2070,Europe/Paris,,OM1, +OM1:SP:2072,1,"PLAGE ROUCAS BLANC",43.266376,5.372915,0,0,OM1:SA:CTP2069,Europe/Paris,,OM1, +OM1:SP:2073,1,"CORNICHE TALABOT",43.268255,5.371341,0,0,OM1:SA:CTP2068,Europe/Paris,,OM1, +OM1:SP:2074,1,"CHEMIN DU ROUCAS BLANC",43.269751,5.366424,0,0,OM1:SA:CTP2067,Europe/Paris,,OM1, +OM1:SP:2075,1,"LE PROPHETE",43.272415,5.362848,0,0,OM1:SA:CTP2066,Europe/Paris,,OM1, +OM1:SP:2076,1,"CORNICHE NAPOULE",43.274494,5.361505,0,0,OM1:SA:CTP2065,Europe/Paris,,OM1, +OM1:SP:2077,1,"VALLON DE L'ORIOL",43.275531,5.3598,0,0,OM1:SA:CTP2064,Europe/Paris,,OM1, +OM1:SP:2078,1,"VALLON DE LA BAUDILLE",43.277026,5.357171,0,0,OM1:SA:CTP2063,Europe/Paris,,OM1, +OM1:SP:2079,1,"PARC VALMER",43.278423,5.354796,0,0,OM1:SA:CTP2062,Europe/Paris,,OM1, +OM1:SP:208,1,"BELLE DE MAI NATIONAL",43.308466,5.381927,0,0,OM1:SA:CTP208,Europe/Paris,,OM1, +OM1:SP:2080,1,"FAUSSE MONNAIE",43.280979,5.352173,0,0,OM1:SA:CTP2061,Europe/Paris,,OM1, +OM1:SP:2081,1,"ENDOUME",43.282798,5.350767,0,0,OM1:SA:CTP2060,Europe/Paris,,OM1, +OM1:SP:2082,1,"VALLON DES AUFFES",43.285603,5.350803,0,0,OM1:SA:CTP2058,Europe/Paris,,OM1, +OM1:SP:2083,1,"CORNICHE FREGIER",43.287502,5.352343,0,0,OM1:SA:CTP2057,Europe/Paris,,OM1, +OM1:SP:2084,1,"CATALANS",43.288803,5.354049,0,0,OM1:SA:CTP1398,Europe/Paris,,OM1, +OM1:SP:2085,1,"CORNICHE AUDEOUD",43.289428,5.357098,0,0,OM1:SA:CTP1418,Europe/Paris,,OM1, +OM1:SP:2086,1,"LE PHARO",43.291637,5.359134,0,0,OM1:SA:CTP1557,Europe/Paris,,OM1, +OM1:SP:2087,1,"FORT SAINT NICOLAS",43.292135,5.362213,0,0,OM1:SA:CTP2055,Europe/Paris,,OM1, +OM1:SP:2088,1,"THÉATRE LA CRIÉE",43.292887,5.369012,0,0,OM1:SA:CTP2054,Europe/Paris,,OM1, +OM1:SP:2089,1,"QUAI DU PORT",43.295921,5.367313,0,0,OM1:SA:CTP2051,Europe/Paris,,OM1, +OM1:SP:209,1,"CLOVIS HUGUES",43.311542,5.384442,0,0,OM1:SA:CTP209,Europe/Paris,,OM1, +OM1:SP:2094,1,"SALENGRO BRIANCON",43.316417,5.369467,0,0,OM1:SA:CTP2094,Europe/Paris,,OM1, +OM1:SP:2095,1,"PLACE CAZEMAJOU",43.318698,5.367962,0,0,OM1:SA:CTP2095,Europe/Paris,,OM1, +OM1:SP:2097,1,"ORIOL CORNICHE",43.275559,5.360404,0,0,OM1:SA:CTP2097,Europe/Paris,,OM1, +OM1:SP:210,1,"BELLE DE MAI LOUBON",43.312951,5.385835,0,0,OM1:SA:CTP210,Europe/Paris,,OM1, +OM1:SP:2100,1,"VALLON DE L'ORIOL",43.279274,5.363246,0,0,OM1:SA:CTP1508,Europe/Paris,,OM1, +OM1:SP:2101,1,"TRAVERSE NICOLAS",43.277372,5.361805,0,0,OM1:SA:CTP2101,Europe/Paris,,OM1, +OM1:SP:2109,1,"FENOUIL ECOLE",43.36067,5.320119,0,0,OM1:SA:CTP2109,Europe/Paris,,OM1, +OM1:SP:211,1,"PERRIN GUIGOU",43.315063,5.389026,0,0,OM1:SA:CTP211,Europe/Paris,,OM1, +OM1:SP:2115,1,"METRO ROND POINT DU PRADO",43.272576,5.390853,0,0,OM1:SA:CTP1083,Europe/Paris,,OM1, +OM1:SP:212,1,"5 AVENUES BUREL",43.31772,5.390153,0,0,OM1:SA:CTP1056,Europe/Paris,,OM1, +OM1:SP:2125,1,"BANCAL BARASSE",43.286206,5.479887,0,0,OM1:SA:CTP1385,Europe/Paris,,OM1, +OM1:SP:2127,1,"PARC",43.274876,5.440252,0,0,OM1:SA:CTP2127,Europe/Paris,,OM1, +OM1:SP:2128,1,"SUSINI MARIE LOUISE",43.339838,5.413668,0,0,OM1:SA:CTP2128,Europe/Paris,,OM1, +OM1:SP:2129,1,"SAINT JEROME IUT",43.341001,5.411365,0,0,OM1:SA:CTP1063,Europe/Paris,,OM1, +OM1:SP:213,1,"SAINTE MARTHE COLONEL",43.318756,5.390393,0,0,OM1:SA:CTP213,Europe/Paris,,OM1, +OM1:SP:2130,1,"SAINT JEROME IUT",43.340965,5.411042,0,0,OM1:SA:CTP1063,Europe/Paris,,OM1, +OM1:SP:2131,1,"SUSINI MARIE LOUISE",43.33973,5.413366,0,0,OM1:SA:CTP2128,Europe/Paris,,OM1, +OM1:SP:2136,1,"ROUX BEAUSOLEIL",43.308139,5.409259,0,0,OM1:SA:CTP2136,Europe/Paris,,OM1, +OM1:SP:2137,1,"VALDONNE PEYPIN",43.326914,5.417816,0,0,OM1:SA:CTP2137,Europe/Paris,,OM1, +OM1:SP:2138,1,"VALDONNE PEYPIN",43.327119,5.417864,0,0,OM1:SA:CTP2137,Europe/Paris,,OM1, +OM1:SP:2139,1,"LA TREILLE",43.311571,5.512508,0,0,OAE:SA:CTP40042,Europe/Paris,,OM1, +OM1:SP:214,1,"SAINTE MARTHE BOUGIE",43.322432,5.389517,0,0,OM1:SA:CTP214,Europe/Paris,,OM1, +OM1:SP:2146,1,"LA CROIX ROUGE",43.3351,5.45083,0,0,OM1:SA:CTP2146,Europe/Paris,,OM1, +OM1:SP:2147,1,"BAR 1900",43.337313,5.452687,0,0,OM1:SA:CTP2147,Europe/Paris,,OM1, +OM1:SP:2148,1,"LA CASCADE",43.338776,5.453703,0,0,OM1:SA:CTP2148,Europe/Paris,,OM1, +OM1:SP:2149,1,"LES MADETS",43.340799,5.456832,0,0,OM1:SA:CTP2149,Europe/Paris,,OM1, +OM1:SP:215,1,"SAINTE MARTHE BOUGIE",43.3216,5.389374,0,0,OM1:SA:CTP214,Europe/Paris,,OM1, +OM1:SP:2150,1,"PLAN DE CUQUES CINEMA",43.343481,5.45832,0,0,OM1:SA:CTP2150,Europe/Paris,,OM1, +OM1:SP:2151,1,"PLAN DE CUQUES FELIBRIGE",43.344338,5.460092,0,0,OM1:SA:CTP2151,Europe/Paris,,OM1, +OM1:SP:2152,1,"PLAN DE CUQUES EGLISE",43.347811,5.464348,0,0,OM1:SA:CTP2152,Europe/Paris,,OM1, +OM1:SP:2153,1,"LES MOISSERONS",43.348469,5.466158,0,0,OM1:SA:CTP2153,Europe/Paris,,OM1, +OM1:SP:2154,1,"PASTEUR NORIA",43.352513,5.467501,0,0,OM1:SA:CTP2154,Europe/Paris,,OM1, +OM1:SP:2155,1,"LES VIDARES",43.355018,5.466393,0,0,OM1:SA:CTP2155,Europe/Paris,,OM1, +OM1:SP:2156,1,"TRANSFORMATEUR",43.358582,5.466636,0,0,OM1:SA:CTP2156,Europe/Paris,,OM1, +OM1:SP:2157,1,"ECOLE MATERNELLE",43.360008,5.464915,0,0,OM1:SA:CTP2157,Europe/Paris,,OM1, +OM1:SP:2158,1,"TRANSFORMATEUR",43.357701,5.466305,0,0,OM1:SA:CTP2156,Europe/Paris,,OM1, +OM1:SP:2159,1,"LA MONTADE",43.360126,5.464564,0,0,OM1:SA:CTP2159,Europe/Paris,,OM1, +OM1:SP:216,1,"SAINTE MARTHE COLONEL",43.319398,5.389971,0,0,OM1:SA:CTP213,Europe/Paris,,OM1, +OM1:SP:2160,1,"LES VIDARES",43.354908,5.466177,0,0,OM1:SA:CTP2155,Europe/Paris,,OM1, +OM1:SP:2161,1,"PASTEUR NORIA",43.352235,5.467461,0,0,OM1:SA:CTP2154,Europe/Paris,,OM1, +OM1:SP:2162,1,"LES ROUBAUDS",43.349152,5.468968,0,0,OM1:SA:CTP2162,Europe/Paris,,OM1, +OM1:SP:2163,1,"L'ELYSEE",43.351416,5.472444,0,0,OM1:SA:CTP2163,Europe/Paris,,OM1, +OM1:SP:2164,1,"L'HERMITAGE",43.351694,5.473408,0,0,OM1:SA:CTP2164,Europe/Paris,,OM1, +OM1:SP:2165,1,"BON RENCONTRE",43.351947,5.479214,0,0,OM1:SA:CTP2165,Europe/Paris,,OM1, +OM1:SP:2166,1,"LES CHANAUDS",43.352595,5.482282,0,0,OM1:SA:CTP2166,Europe/Paris,,OM1, +OM1:SP:2167,1,"MOULIN A HUILE",43.355796,5.486598,0,0,OM1:SA:CTP2167,Europe/Paris,,OM1, +OM1:SP:2168,1,"LOGIS NEUF ECOLES",43.356931,5.48809,0,0,OM7:SA:CTP5023547,Europe/Paris,,OM1, +OM1:SP:2169,1,"LA BOURDONNIERE",43.357883,5.491507,0,0,OM7:SA:CTP5023512,Europe/Paris,,OM1, +OM1:SP:217,1,"5 AVENUES BUREL",43.317213,5.389645,0,0,OM1:SA:CTP1056,Europe/Paris,,OM1, +OM1:SP:2173,1,"LA LOUISE",43.332716,5.459238,0,0,OM1:SA:CTP2173,Europe/Paris,,OM1, +OM1:SP:2174,1,"LA POUNCHE LES OURMES",43.332981,5.461272,0,0,OM1:SA:CTP2174,Europe/Paris,,OM1, +OM1:SP:2175,1,"QUARTIER DE LA POUNCHE",43.332621,5.464074,0,0,OM1:SA:CTP2175,Europe/Paris,,OM1, +OM1:SP:2176,1,"LES TOITS DE LA POUNCHE",43.333104,5.465702,0,0,OM1:SA:CTP2176,Europe/Paris,,OM1, +OM1:SP:2177,1,"LES ECOLES",43.334523,5.466703,0,0,OM7:SA:CTP5000064,Europe/Paris,,OM1, +OM1:SP:2178,1,"CANTONS ROUGES",43.337392,5.465468,0,0,OM1:SA:CTP2178,Europe/Paris,,OM1, +OM1:SP:2179,1,"LE BOCAGE",43.337989,5.470293,0,0,OM1:SA:CTP2179,Europe/Paris,,OM1, +OM1:SP:218,1,"BUREL PLOMBIERES",43.315736,5.388458,0,0,OM1:SA:CTP218,Europe/Paris,,OM1, +OM1:SP:2180,1,"LA TIRANE",43.337679,5.471989,0,0,OM1:SA:CTP2180,Europe/Paris,,OM1, +OM1:SP:2181,1,"HOPITAL MILLE ECUS",43.337902,5.473898,0,0,OM1:SA:CTP2181,Europe/Paris,,OM1, +OM1:SP:2182,1,"HENRI TASSO",43.338171,5.477006,0,0,OM1:SA:CTP2182,Europe/Paris,,OM1, +OM1:SP:2183,1,"LES CIGALES",43.339675,5.482793,0,0,OM1:SA:CTP2183,Europe/Paris,,OM1, +OM1:SP:2184,1,"SAINT ROCH",43.339256,5.484174,0,0,OM1:SA:CTP2184,Europe/Paris,,OM1, +OM1:SP:2185,1,"ALLAUCH",43.336719,5.482384,0,0,OM1:SA:CTP2185,Europe/Paris,,OM1, +OM1:SP:2186,1,"METRO LA ROSE",43.333056,5.429714,0,0,OM1:SA:CTP2186,Europe/Paris,,OM1, +OM1:SP:2188,1,"METRO LA ROSE",43.333162,5.429793,0,0,OM1:SA:CTP2186,Europe/Paris,,OM1, +OM1:SP:219,1,"PLOMBIERES ARNAL",43.315815,5.383746,0,0,OM1:SA:CTP2012,Europe/Paris,,OM1, +OM1:SP:2190,1,"LA BOURDONNIERE",43.358069,5.491296,0,0,OM7:SA:CTP5023512,Europe/Paris,,OM1, +OM1:SP:2191,1,"LOGIS NEUF ECOLES",43.356899,5.486721,0,0,OM7:SA:CTP5023547,Europe/Paris,,OM1, +OM1:SP:2192,1,"LES CHANAUDS",43.352793,5.482268,0,0,OM1:SA:CTP2166,Europe/Paris,,OM1, +OM1:SP:2193,1,"LE LOGIS NEUF CENTRE MEDICAL",43.35477,5.484779,0,0,OM1:SA:CTP2193,Europe/Paris,,OM1, +OM1:SP:2194,1,"BON RENCONTRE",43.352125,5.478645,0,0,OM1:SA:CTP2165,Europe/Paris,,OM1, +OM1:SP:2195,1,"L'HERMITAGE",43.351838,5.473392,0,0,OM1:SA:CTP2164,Europe/Paris,,OM1, +OM1:SP:2196,1,"L'ELYSEE",43.351554,5.472341,0,0,OM1:SA:CTP2163,Europe/Paris,,OM1, +OM1:SP:2197,1,"LES ROUBAUDS",43.349309,5.468817,0,0,OM1:SA:CTP2162,Europe/Paris,,OM1, +OM1:SP:2198,1,"LES MOISSERONS",43.348605,5.466141,0,0,OM1:SA:CTP2153,Europe/Paris,,OM1, +OM1:SP:2199,1,"PLAN DE CUQUES EGLISE",43.347558,5.463767,0,0,OM1:SA:CTP2152,Europe/Paris,,OM1, +OM1:SP:22,1,"TRAVERSE DE LA BARRE",43.368632,5.344963,0,0,OM1:SA:CTP22,Europe/Paris,,OM1, +OM1:SP:220,1,"PLACE CAFFO",43.312895,5.384613,0,0,OM1:SA:CTP220,Europe/Paris,,OM1, +OM1:SP:2200,1,"PLAN DE CUQUES FELIBRIGE",43.344345,5.459822,0,0,OM1:SA:CTP2151,Europe/Paris,,OM1, +OM1:SP:2201,1,"PLAN DE CUQUES CINEMA",43.343317,5.457769,0,0,OM1:SA:CTP2150,Europe/Paris,,OM1, +OM1:SP:2202,1,"LES MADETS",43.340753,5.456546,0,0,OM1:SA:CTP2149,Europe/Paris,,OM1, +OM1:SP:2203,1,"LA CASCADE",43.338976,5.45364,0,0,OM1:SA:CTP2148,Europe/Paris,,OM1, +OM1:SP:2204,1,"BAR 1900",43.337865,5.452865,0,0,OM1:SA:CTP2147,Europe/Paris,,OM1, +OM1:SP:2205,1,"LA CROIX ROUGE",43.335388,5.450845,0,0,OM1:SA:CTP2146,Europe/Paris,,OM1, +OM1:SP:2206,1,"SAINT ROCH",43.339361,5.484611,0,0,OM1:SA:CTP2184,Europe/Paris,,OM1, +OM1:SP:2207,1,"LES CIGALES",43.339875,5.482693,0,0,OM1:SA:CTP2183,Europe/Paris,,OM1, +OM1:SP:2208,1,"LE GRAND PUITS PIE D'AUTRY",43.338433,5.479496,0,0,OM1:SA:CTP2208,Europe/Paris,,OM1, +OM1:SP:2209,1,"HENRI TASSO",43.338326,5.476607,0,0,OM1:SA:CTP2182,Europe/Paris,,OM1, +OM1:SP:221,1,"LOUBON BARBINI",43.312904,5.382717,0,0,OM1:SA:CTP221,Europe/Paris,,OM1, +OM1:SP:2210,1,"HOPITAL MILLE ECUS",43.338161,5.473949,0,0,OM1:SA:CTP2181,Europe/Paris,,OM1, +OM1:SP:2211,1,"LA TIRANE",43.337978,5.471586,0,0,OM1:SA:CTP2180,Europe/Paris,,OM1, +OM1:SP:2212,1,"LE BOCAGE",43.338323,5.469634,0,0,OM1:SA:CTP2179,Europe/Paris,,OM1, +OM1:SP:2213,1,"CANTONS ROUGES",43.337364,5.465195,0,0,OM1:SA:CTP2178,Europe/Paris,,OM1, +OM1:SP:2214,1,"LES ECOLES",43.33443,5.466501,0,0,OM7:SA:CTP5000064,Europe/Paris,,OM1, +OM1:SP:2215,1,"LES TOITS DE LA POUNCHE",43.333475,5.465944,0,0,OM1:SA:CTP2176,Europe/Paris,,OM1, +OM1:SP:2216,1,"QUARTIER DE LA POUNCHE",43.33299,5.462825,0,0,OM1:SA:CTP2175,Europe/Paris,,OM1, +OM1:SP:2217,1,"LA POUNCHE LES OURMES",43.333122,5.460738,0,0,OM1:SA:CTP2174,Europe/Paris,,OM1, +OM1:SP:2218,1,"LA LOUISE",43.332855,5.459122,0,0,OM1:SA:CTP2173,Europe/Paris,,OM1, +OM1:SP:222,1,"LOUBON BELLEVUE",43.312147,5.37929,0,0,OM1:SA:CTP222,Europe/Paris,,OM1, +OM1:SP:2224,1,"ESTAQUE CASTEJON",43.361733,5.306147,0,0,OM1:SA:CTP2224,Europe/Paris,,OM1, +OM1:SP:2226,1,"CORBIERES BASE NAUTIQUE",43.359442,5.293001,0,0,OM1:SA:CTP2226,Europe/Paris,,OM1, +OM1:SP:2227,1,"PLAGE DES CORBIERES",43.358151,5.287931,0,0,OM1:SA:CTP2227,Europe/Paris,,OM1, +OM1:SP:2228,1,"CORBIERES BASE NAUTIQUE",43.358691,5.292186,0,0,OM1:SA:CTP2226,Europe/Paris,,OM1, +OM1:SP:223,1,"NATIONAL LOUBON",43.310649,5.378521,0,0,OM1:SA:CTP223,Europe/Paris,,OM1, +OM1:SP:2230,1,"ESTAQUE CASTEJON",43.361581,5.306767,0,0,OM1:SA:CTP2224,Europe/Paris,,OM1, +OM1:SP:224,1,"NATIONAL BELLE DE MAI",43.307598,5.381795,0,0,OM1:SA:CTP224,Europe/Paris,,OM1, +OM1:SP:225,1,"NATIONAL GUIBAL",43.305885,5.383526,0,0,OM1:SA:CTP207,Europe/Paris,,OM1, +OM1:SP:226,1,"VOLTAIRE ST CHARLES",43.303211,5.385244,0,0,OM1:SA:CTP226,Europe/Paris,,OM1, +OM1:SP:227,1,"LIBERTÉ SEMBAT",43.301612,5.38325,0,0,OM1:SA:CTP227,Europe/Paris,,OM1, +OM1:SP:2271,1,"GIBBES PLOMBIERES",43.319166,5.379416,0,0,OM1:SA:CTP557,Europe/Paris,,OM1, +OM1:SP:2272,1,"GIBBES BON SECOURS",43.319755,5.380235,0,0,OM1:SA:CTP556,Europe/Paris,,OM1, +OM1:SP:2275,1,"LA ROSE",43.333281,5.429726,0,0,OM1:SA:CTP2186,Europe/Paris,,OM1, +OM1:SP:2277,1,"FRAIS VALLON",43.325712,5.423664,0,0,OM1:SA:CTP2277,Europe/Paris,,OM1, +OM1:SP:2278,1,"MALPASSE",43.32073,5.416129,0,0,OM1:SA:CTP2278,Europe/Paris,,OM1, +OM1:SP:2279,1,"SAINT JUST",43.315295,5.406797,0,0,OM1:SA:CTP2279,Europe/Paris,,OM1, +OM1:SP:228,1,"GRANDE ARMEE",43.299566,5.384693,0,0,OM1:SA:CTP228,Europe/Paris,,OM1, +OM1:SP:2280,1,"CHARTREUX",43.309569,5.401688,0,0,OM1:SA:CTP2280,Europe/Paris,,OM1, +OM1:SP:2281,1,"CINQ AVENUES LONGCHAMP",43.304246,5.39723,0,0,OM1:SA:CTP2281,Europe/Paris,,OM1, +OM1:SP:2282,1,"CANEBIERE REFORMES",43.300063,5.385569,0,0,OM1:SA:CTP2282,Europe/Paris,,OM1, +OM1:SP:2283,1,"SAINT CHARLES",43.302413,5.380054,0,0,OM1:SA:CTP2283,Europe/Paris,,OM1, +OM1:SP:2284,1,"COLBERT HOTEL DE REGION",43.300106,5.374207,0,0,OM1:SA:CTP2284,Europe/Paris,,OM1, +OM1:SP:2285,1,"VIEUX PORT",43.295056,5.374051,0,0,OM1:SA:CTP2285,Europe/Paris,,OM1, +OM1:SP:2286,1,"ESTRANGIN",43.290276,5.377737,0,0,OM1:SA:CTP2286,Europe/Paris,,OM1, +OM1:SP:2287,1,"CASTELLANE",43.285889,5.384177,0,0,OM1:SA:CTP1091,Europe/Paris,,OM1, +OM1:SP:2292,1,"FRAIS VALLON",43.325712,5.423664,0,0,OM1:SA:CTP2277,Europe/Paris,,OM1, +OM1:SP:2293,1,"MALPASSE",43.32073,5.416129,0,0,OM1:SA:CTP2278,Europe/Paris,,OM1, +OM1:SP:2294,1,"SAINT JUST",43.315295,5.406797,0,0,OM1:SA:CTP2279,Europe/Paris,,OM1, +OM1:SP:2295,1,"CHARTREUX",43.309568,5.401701,0,0,OM1:SA:CTP2280,Europe/Paris,,OM1, +OM1:SP:2296,1,"CINQ AVENUES LONGCHAMP",43.304246,5.39723,0,0,OM1:SA:CTP2281,Europe/Paris,,OM1, +OM1:SP:2297,1,"CANEBIERE REFORMES",43.300063,5.385569,0,0,OM1:SA:CTP2282,Europe/Paris,,OM1, +OM1:SP:2298,1,"SAINT CHARLES",43.302413,5.380054,0,0,OM1:SA:CTP2283,Europe/Paris,,OM1, +OM1:SP:2299,1,"COLBERT",43.300106,5.374207,0,0,OM1:SA:CTP2299,Europe/Paris,,OM1, +OM1:SP:23,1,"LA BRICARDE",43.370395,5.346892,0,0,OM1:SA:CTP23,Europe/Paris,,OM1, +OM1:SP:2300,1,"VIEUX PORT",43.295056,5.374051,0,0,OM1:SA:CTP2285,Europe/Paris,,OM1, +OM1:SP:2301,1,"ESTRANGIN",43.290276,5.377737,0,0,OM1:SA:CTP2286,Europe/Paris,,OM1, +OM1:SP:2302,1,"BAILLE",43.288363,5.392555,0,0,OM1:SA:CTP1227,Europe/Paris,,OM1, +OM1:SP:2303,1,"TIMONE",43.290957,5.400337,0,0,OM1:SA:CTP2303,Europe/Paris,,OM1, +OM1:SP:2304,1,"BOUGAINVILLE",43.320711,5.371541,0,0,OM1:SA:CTP2304,Europe/Paris,,OM1, +OM1:SP:2305,1,"NATIONAL",43.315122,5.37297,0,0,OM1:SA:CTP2305,Europe/Paris,,OM1, +OM1:SP:2306,1,"DESIREE CLARY",43.309192,5.372471,0,0,OM1:SA:CTP2306,Europe/Paris,,OM1, +OM1:SP:2307,1,"JOLIETTE",43.304358,5.367229,0,0,OM1:SA:CTP3790,Europe/Paris,,OM1, +OM1:SP:2308,1,"JULES GUESDE",43.301973,5.37369,0,0,OM1:SA:CTP2308,Europe/Paris,,OM1, +OM1:SP:2309,1,"SAINT CHARLES",43.302413,5.380054,0,0,OM1:SA:CTP2283,Europe/Paris,,OM1, +OM1:SP:2310,1,"NOAILLES",43.297364,5.381178,0,0,OM1:SA:CTP2310,Europe/Paris,,OM1, +OM1:SP:2311,1,"NOTRE DAME DU MONT",43.292819,5.383842,0,0,OM1:SA:CTP1522,Europe/Paris,,OM1, +OM1:SP:2313,1,"CASTELLANE",43.285764,5.384132,0,0,OM1:SA:CTP1091,Europe/Paris,,OM1, +OM1:SP:2314,1,"PERIER",43.279732,5.387455,0,0,OM1:SA:CTP2314,Europe/Paris,,OM1, +OM1:SP:2315,1,"ROND POINT DU PRADO",43.271735,5.392285,0,0,OM1:SA:CTP1736,Europe/Paris,,OM1, +OM1:SP:2316,1,"SAINTE MARGUERITE DROMEL",43.270903,5.402898,0,0,OM1:SA:CTP1619,Europe/Paris,,OM1, +OM1:SP:2317,1,"NATIONAL",43.315128,5.373081,0,0,OM1:SA:CTP2305,Europe/Paris,,OM1, +OM1:SP:2318,1,"DESIREE CLARY",43.309192,5.372471,0,0,OM1:SA:CTP2306,Europe/Paris,,OM1, +OM1:SP:2319,1,"JOLIETTE",43.304358,5.367229,0,0,OM1:SA:CTP3790,Europe/Paris,,OM1, +OM1:SP:2320,1,"JULES GUESDE",43.301973,5.37369,0,0,OM1:SA:CTP2308,Europe/Paris,,OM1, +OM1:SP:2321,1,"SAINT CHARLES",43.302413,5.380054,0,0,OM1:SA:CTP2283,Europe/Paris,,OM1, +OM1:SP:2322,1,"NOAILLES",43.297364,5.381178,0,0,OM1:SA:CTP2310,Europe/Paris,,OM1, +OM1:SP:2323,1,"NOTRE DAME DU MONT",43.292819,5.383842,0,0,OM1:SA:CTP1522,Europe/Paris,,OM1, +OM1:SP:2324,1,"CASTELLANE",43.285744,5.384117,0,0,OM1:SA:CTP1091,Europe/Paris,,OM1, +OM1:SP:2325,1,"PERIER",43.279732,5.387455,0,0,OM1:SA:CTP2314,Europe/Paris,,OM1, +OM1:SP:2326,1,"ROND POINT DU PRADO",43.271735,5.392285,0,0,OM1:SA:CTP1736,Europe/Paris,,OM1, +OM1:SP:2327,1,"SAINTE MARGUERITE DROMEL",43.270903,5.402898,0,0,OM1:SA:CTP1619,Europe/Paris,,OM1, +OM1:SP:2333,1,"BOUGAINVILLE",43.320711,5.371541,0,0,OM1:SA:CTP2304,Europe/Paris,,OM1, +OM1:SP:2343,1,"RAIMU EDOUARD MANET",43.333445,5.399121,0,0,OM1:SA:CTP2343,Europe/Paris,,OM1, +OM1:SP:2351,1,"ROMAIN ROLLAND ICARD",43.277043,5.419287,0,0,OM1:SA:CTP1592,Europe/Paris,,OM1, +OM1:SP:2354,1,"SAMENA",43.228549,5.352409,0,0,OM1:SA:CTP2354,Europe/Paris,,OM1, +OM1:SP:2356,1,"ESCALETTE",43.225237,5.34835,0,0,OM1:SA:CTP2356,Europe/Paris,,OM1, +OM1:SP:2357,1,"ROCHES BLANCHES",43.218618,5.345507,0,0,OM1:SA:CTP2357,Europe/Paris,,OM1, +OM1:SP:2358,1,"LES GOUDES",43.217143,5.346168,0,0,OM1:SA:CTP2358,Europe/Paris,,OM1, +OM1:SP:2359,1,"DELABRE PELAPRAT",43.215366,5.347316,0,0,OM1:SA:CTP2359,Europe/Paris,,OM1, +OM1:SP:2360,1,"CALLELONGUE",43.212716,5.353312,0,0,OM1:SA:CTP2360,Europe/Paris,,OM1, +OM1:SP:2361,1,"DELABRE PELAPRAT",43.21504,5.348381,0,0,OM1:SA:CTP2359,Europe/Paris,,OM1, +OM1:SP:2362,1,"LES GOUDES",43.217045,5.346445,0,0,OM1:SA:CTP2358,Europe/Paris,,OM1, +OM1:SP:2363,1,"ROCHES BLANCHES",43.218502,5.345796,0,0,OM1:SA:CTP2357,Europe/Paris,,OM1, +OM1:SP:2364,1,"ESCALETTE",43.225061,5.348525,0,0,OM1:SA:CTP2356,Europe/Paris,,OM1, +OM1:SP:2365,1,"SAMENA",43.228748,5.353649,0,0,OM1:SA:CTP2354,Europe/Paris,,OM1, +OM1:SP:2379,1,"CASTELLANE",43.285683,5.38435,0,0,OM1:SA:CTP1091,Europe/Paris,,OM1, +OM1:SP:2388,1,"LA ROSE",43.333278,5.429812,0,0,OM1:SA:CTP2186,Europe/Paris,,OM1, +OM1:SP:239,1,"SAINT CASSIEN",43.320898,5.362954,0,0,OM4:SA:CTP3625960,Europe/Paris,,OM1, +OM1:SP:24,1,"TRAVERSE GRAILLE",43.371983,5.34896,0,0,OM1:SA:CTP24,Europe/Paris,,OM1, +OM1:SP:2405,1,"METRO LA TIMONE",43.291373,5.400544,0,0,OM1:SA:CTP2303,Europe/Paris,,OM1, +OM1:SP:2406,1,"METRO LA TIMONE",43.291205,5.400461,0,0,OM1:SA:CTP2303,Europe/Paris,,OM1, +OM1:SP:2408,1,"METRO LA TIMONE",43.290575,5.399517,0,0,OM1:SA:CTP2303,Europe/Paris,,OM1, +OM1:SP:241,1,"CAP PINEDE",43.326209,5.358936,0,0,OM1:SA:CTP241,Europe/Paris,,OM1, +OM1:SP:2415,1,"METRO LA TIMONE",43.290962,5.400461,0,0,OM1:SA:CTP2303,Europe/Paris,,OM1, +OM1:SP:2416,1,"METRO LA TIMONE",43.2908,5.399529,0,0,OM1:SA:CTP2303,Europe/Paris,,OM1, +OM1:SP:2419,1,"MAS DES OLIVIERS",43.361074,5.494025,0,0,OM1:SA:CTP2419,Europe/Paris,,OM1, +OM1:SP:242,1,"LITTORAL MOUREN",43.330475,5.35528,0,0,OM1:SA:CTP242,Europe/Paris,,OM1, +OM1:SP:2420,1,"LA FEVE",43.362976,5.494475,0,0,OM1:SA:CTP2420,Europe/Paris,,OM1, +OM1:SP:2422,1,"MAS DES OLIVIERS",43.361236,5.493689,0,0,OM1:SA:CTP2419,Europe/Paris,,OM1, +OM1:SP:2424,1,"LES 3 LUCS ENCO DE BOTTE",43.316976,5.469219,0,0,OM1:SA:CTP2424,Europe/Paris,,OM1, +OM1:SP:243,1,"LITTORAL BEAUSEJOUR",43.331633,5.355033,0,0,OM1:SA:CTP243,Europe/Paris,,OM1, +OM1:SP:244,1,"LITTORAL BERNABO",43.335675,5.354581,0,0,OM1:SA:CTP244,Europe/Paris,,OM1, +OM1:SP:2440,1,"LUCE MICHELET",43.258465,5.398518,0,0,OM1:SA:CTP2440,Europe/Paris,,OM1, +OM1:SP:2442,1,"METRO LA TIMONE",43.291141,5.399867,0,0,OM1:SA:CTP2303,Europe/Paris,,OM1, +OM1:SP:2443,1,"METRO LA TIMONE",43.290624,5.40032,0,0,OM1:SA:CTP2303,Europe/Paris,,OM1, +OM1:SP:245,1,"LITTORAL CAP JANET",43.336421,5.353622,0,0,OM1:SA:CTP245,Europe/Paris,,OM1, +OM1:SP:2457,1,"LA VALENTELLE",43.296748,5.475798,0,0,OM1:SA:CTP2457,Europe/Paris,,OM1, +OM1:SP:246,1,"LITTORAL GOURRET",43.338635,5.349044,0,0,OM1:SA:CTP246,Europe/Paris,,OM1, +OM1:SP:2461,1,"TRAVERSE NICOLAS",43.277411,5.362004,0,0,OM1:SA:CTP2101,Europe/Paris,,OM1, +OM1:SP:2463,1,"LE LOGIS NEUF CENTRE MEDICAL",43.354382,5.48482,0,0,OM1:SA:CTP2193,Europe/Paris,,OM1, +OM1:SP:2467,1,"CASTELLANE",43.285908,5.384187,0,0,OM1:SA:CTP1091,Europe/Paris,,OM1, +OM1:SP:2468,1,"BAILLE",43.288363,5.392555,0,0,OM1:SA:CTP1227,Europe/Paris,,OM1, +OM1:SP:247,1,"LITTORAL SANTI",43.343321,5.34775,0,0,OM1:SA:CTP247,Europe/Paris,,OM1, +OM1:SP:2472,1,"TIMONE",43.290957,5.400337,0,0,OM1:SA:CTP2303,Europe/Paris,,OM1, +OM1:SP:2476,1,"LA VALENTINE CENTRE COMMERCIAL",43.29452,5.47575,0,0,OM1:SA:CTP1382,Europe/Paris,,OM1, +OM1:SP:248,1,"LITTORAL RESIDENCE CONSOLAT",43.346551,5.345764,0,0,OM1:SA:CTP248,Europe/Paris,,OM1, +OM1:SP:2480,1,"METRO LA ROSE",43.333319,5.42995,0,0,OM1:SA:CTP2186,Europe/Paris,,OM1, +OM1:SP:249,1,"LITTORAL CITE NOUVELLE",43.348902,5.343028,0,0,OM1:SA:CTP249,Europe/Paris,,OM1, +OM1:SP:2490,1,"PLACE JOSEPH ETIENNE",43.289274,5.36674,0,0,OM1:SA:CTP2490,Europe/Paris,,OM1, +OM1:SP:2499,1,"LES TROIS LUCS BOUQUIERE",43.300944,5.476865,0,0,OM1:SA:CTP2499,Europe/Paris,,OM1, +OM1:SP:25,1,"BOULEVARD FALCOT",43.372972,5.35186,0,0,OM1:SA:CTP25,Europe/Paris,,OM1, +OM1:SP:250,1,"LITTORAL PAS DU FAON",43.351242,5.340403,0,0,OM4:SA:CTP3625953,Europe/Paris,,OM1, +OM1:SP:2501,1,"PEINTRES ROUX LA SERVIANE",43.303408,5.473158,0,0,OM1:SA:CTP2501,Europe/Paris,,OM1, +OM1:SP:2502,1,"PEINTRES ROUX LA VALENTINE",43.295498,5.48106,0,0,OM1:SA:CTP2502,Europe/Paris,,OM1, +OM1:SP:2503,1,"PEINTRES ROUX LA VALENTINE",43.295972,5.481136,0,0,OM1:SA:CTP2502,Europe/Paris,,OM1, +OM1:SP:2504,1,"CENTRE VALENTINE 2",43.295925,5.477809,0,0,OM1:SA:CTP2504,Europe/Paris,,OM1, +OM1:SP:2505,1,"CENTRE VALENTINE 2",43.295913,5.477303,0,0,OM1:SA:CTP2504,Europe/Paris,,OM1, +OM1:SP:2507,1,"LA VALENTELLE",43.296362,5.476109,0,0,OM1:SA:CTP2457,Europe/Paris,,OM1, +OM1:SP:251,1,"LITTORAL JEAN LABRO",43.35391,5.336303,0,0,OM1:SA:CTP251,Europe/Paris,,OM1, +OM1:SP:2516,1,"HOPITAL LAVERAN",43.3269,5.413577,0,0,OM1:SA:CTP2516,Europe/Paris,,OM1, +OM1:SP:2517,1,"HOPITAL LAVERAN",43.326802,5.413843,0,0,OM1:SA:CTP2516,Europe/Paris,,OM1, +OM1:SP:252,1,"LITTORAL MOUREPIANE",43.354357,5.332852,0,0,OM1:SA:CTP252,Europe/Paris,,OM1, +OM1:SP:2521,1,"PARC DU 26EME CENTENAIRE",43.282957,5.389781,0,0,OM1:SA:CTP2521,Europe/Paris,,OM1, +OM1:SP:2525,1,"LYCEE TECNIQUE LA CADENELLE",43.302109,5.456919,0,0,OM1:SA:CTP2525,Europe/Paris,,OM1, +OM1:SP:2526,1,"STADE DES CAILLOLS",43.302797,5.453977,0,0,OM1:SA:CTP2526,Europe/Paris,,OM1, +OM1:SP:2527,1,"LYCEE TECHNIQUE LA CADENELLE",43.302096,5.457362,0,0,OM1:SA:CTP2527,Europe/Paris,,OM1, +OM1:SP:253,1,"LITTORAL VALLOUISE",43.353812,5.330765,0,0,OM1:SA:CTP253,Europe/Paris,,OM1, +OM1:SP:2530,1,"METRO COLBERT",43.300035,5.374486,0,0,OM1:SA:CTP2530,Europe/Paris,,OM1, +OM1:SP:2532,1,"CASTELLANE",43.285344,5.384578,0,0,OM1:SA:CTP1091,Europe/Paris,,OM1, +OM1:SP:2533,1,"DELPHES",43.284067,5.388043,0,0,OM1:SA:CTP2533,Europe/Paris,,OM1, +OM1:SP:254,1,"LITTORAL SAUMATY",43.355355,5.327987,0,0,OM1:SA:CTP254,Europe/Paris,,OM1, +OM1:SP:2541,1,"CASTELLANE",43.285463,5.384793,0,0,OM1:SA:CTP1091,Europe/Paris,,OM1, +OM1:SP:2549,1,"BARNIER GIROUD",43.367304,5.343574,0,0,OM1:SA:CTP2549,Europe/Paris,,OM1, +OM1:SP:255,1,"LITTORAL FENOUIL",43.358429,5.321874,0,0,OM1:SA:CTP255,Europe/Paris,,OM1, +OM1:SP:2551,1,"LYCEE ST CHARLES",43.305336,5.391784,0,0,OM1:SA:CTP2551,Europe/Paris,,OM1, +OM1:SP:2557,1,"SCHWEITZER",43.284024,5.387043,0,0,OM1:SA:CTP2557,Europe/Paris,,OM1, +OM1:SP:2558,1,"ROUET GAZ DU MIDI",43.282264,5.38823,0,0,OM1:SA:CTP2558,Europe/Paris,,OM1, +OM1:SP:2559,1,"ROUET CASSIS",43.280126,5.390048,0,0,OM1:SA:CTP2559,Europe/Paris,,OM1, +OM1:SP:256,1,"FONTAINE DES TUILES",43.358358,5.318925,0,0,OM4:SA:CTP3625950,Europe/Paris,,OM1, +OM1:SP:2561,1,"LES AYGALADES",43.355963,5.369599,0,0,OM1:SA:CTP160,Europe/Paris,,OM1, +OM1:SP:2566,1,"FLAMMARION CASSINI",43.307152,5.395599,0,0,OM1:SA:CTP2566,Europe/Paris,,OM1, +OM1:SP:2567,1,"FLAMMARION CASSINI",43.307041,5.395089,0,0,OM1:SA:CTP2566,Europe/Paris,,OM1, +OM1:SP:257,1,"ESTAQUE PORT",43.360114,5.31559,0,0,OM1:SA:CTP257,Europe/Paris,,OM1, +OM1:SP:2570,1,"SAINT JEROME SUSINI",43.33389,5.420408,0,0,OM1:SA:CTP2570,Europe/Paris,,OM1, +OM1:SP:2572,1,"SAINT JEROME SUSINI",43.333862,5.420123,0,0,OM1:SA:CTP2570,Europe/Paris,,OM1, +OM1:SP:2573,1,"LE CHATELIER SAINT LOUIS",43.347835,5.359312,0,0,OM1:SA:CTP2573,Europe/Paris,,OM1, +OM1:SP:258,1,"ESTAQUE VILLAGE",43.361283,5.31236,0,0,OM1:SA:CTP258,Europe/Paris,,OM1, +OM1:SP:2580,1,"LANGEVIN CONSOLATION",43.339367,5.432621,0,0,OM1:SA:CTP2580,Europe/Paris,,OM1, +OM1:SP:2582,1,"METRO LA ROSE",43.333062,5.429517,0,0,OM1:SA:CTP2186,Europe/Paris,,OM1, +OM1:SP:2584,1,"COLLEGE YVES MONTAND",43.337343,5.463432,0,0,OM1:SA:CTP2584,Europe/Paris,,OM1, +OM1:SP:259,1,"ESPACE MISTRAL",43.362145,5.309151,0,0,OM4:SA:CTP3625948,Europe/Paris,,OM1, +OM1:SP:2592,1,"CHARTREUX ECOLES",43.304728,5.398943,0,0,OM1:SA:CTP2592,Europe/Paris,,OM1, +OM1:SP:2594,1,"PLOMBIERES NOTRE DAME DE BON SECOURS",43.315372,5.386062,0,0,OM1:SA:CTP2594,Europe/Paris,,OM1, +OM1:SP:2600,1,"MAZARGUES BARRAL",43.263191,5.392667,0,0,OM1:SA:CTP2600,Europe/Paris,,OM1, +OM1:SP:2603,1,"PARIS CLARY",43.308217,5.371004,0,0,OM1:SA:CTP2603,Europe/Paris,,OM1, +OM1:SP:2604,1,"SAINT MARCEL CAVAILLON",43.286458,5.467874,0,0,OM1:SA:CTP2604,Europe/Paris,,OM1, +OM1:SP:2606,1,"SAINT MARCEL CAVAILLON",43.286682,5.467886,0,0,OM1:SA:CTP2604,Europe/Paris,,OM1, +OM1:SP:261,1,"ESPACE MISTRAL",43.361985,5.309401,0,0,OM4:SA:CTP3625948,Europe/Paris,,OM1, +OM1:SP:262,1,"ESTAQUE VILLAGE",43.361106,5.312252,0,0,OM1:SA:CTP258,Europe/Paris,,OM1, +OM1:SP:2621,1,"VITON",43.260552,5.40702,0,0,OM1:SA:CTP2621,Europe/Paris,,OM1, +OM1:SP:2624,1,"LECACHE LES COMTES",43.295278,5.448706,0,0,OM1:SA:CTP2624,Europe/Paris,,OM1, +OM1:SP:2625,1,"LECACHE LES COMTES",43.295276,5.449112,0,0,OM1:SA:CTP2624,Europe/Paris,,OM1, +OM1:SP:263,1,"ESTAQUE PORT",43.360044,5.315204,0,0,OM1:SA:CTP257,Europe/Paris,,OM1, +OM1:SP:2631,1,"ROUSSIN PICARON",43.35818,5.337944,0,0,OM1:SA:CTP2631,Europe/Paris,,OM1, +OM1:SP:2632,1,"ROUSSIN BARNIER",43.363178,5.341571,0,0,OM1:SA:CTP2632,Europe/Paris,,OM1, +OM1:SP:2633,1,"ROUSSIN BARNIER",43.36282,5.340553,0,0,OM1:SA:CTP2632,Europe/Paris,,OM1, +OM1:SP:2634,1,"ROUSSIN PICARON",43.358137,5.337572,0,0,OM1:SA:CTP2631,Europe/Paris,,OM1, +OM1:SP:2635,1,"GAY LUSSAC GEZE",43.332886,5.374736,0,0,OM1:SA:CTP2635,Europe/Paris,,OM1, +OM1:SP:2639,1,"LORETTE",43.365017,5.347201,0,0,OM1:SA:CTP2639,Europe/Paris,,OM1, +OM1:SP:264,1,"FONTAINE DES TUILES",43.359007,5.317886,0,0,OM4:SA:CTP3625950,Europe/Paris,,OM1, +OM1:SP:2640,1,"GRAND LITTORAL",43.361708,5.349443,0,0,OM1:SA:CTP2640,Europe/Paris,,OM1, +OM1:SP:2642,1,"ROUSSIN COHEN",43.360852,5.338577,0,0,OM1:SA:CTP2642,Europe/Paris,,OM1, +OM1:SP:2645,1,"ROUSSIN COHEN",43.361253,5.339325,0,0,OM1:SA:CTP2642,Europe/Paris,,OM1, +OM1:SP:2647,1,"GRAND LITTORAL",43.361708,5.349788,0,0,OM1:SA:CTP2640,Europe/Paris,,OM1, +OM1:SP:2648,1,"LORETTE",43.364792,5.347535,0,0,OM1:SA:CTP2639,Europe/Paris,,OM1, +OM1:SP:265,1,"LITTORAL SACOMANE",43.357429,5.320331,0,0,OM1:SA:CTP265,Europe/Paris,,OM1, +OM1:SP:2658,1,"MORGIOU VERT PLAN",43.235768,5.410209,0,0,OM1:SA:CTP2658,Europe/Paris,,OM1, +OM1:SP:2659,1,"MORGIOU VERT PLAN",43.235675,5.410659,0,0,OM1:SA:CTP2658,Europe/Paris,,OM1, +OM1:SP:266,1,"LITTORAL FENOUIL",43.358185,5.321935,0,0,OM1:SA:CTP255,Europe/Paris,,OM1, +OM1:SP:2662,1,"COROT MOUTTE",43.322024,5.407662,0,0,OM1:SA:CTP1124,Europe/Paris,,OM1, +OM1:SP:2664,1,"BOULEVARD DES PINS",43.27797,5.429601,0,0,OM1:SA:CTP2664,Europe/Paris,,OM1, +OM1:SP:2666,1,"BOULEVARD DES PINS",43.278177,5.4296,0,0,OM1:SA:CTP2664,Europe/Paris,,OM1, +OM1:SP:2668,1,"MARTINIQUE PYTHAGORE",43.283031,5.376061,0,0,OM1:SA:CTP2668,Europe/Paris,,OM1, +OM1:SP:2669,1,"CENTRE VALENTINE 1",43.294653,5.480411,0,0,OM1:SA:CTP2669,Europe/Paris,,OM1, +OM1:SP:267,1,"LITTORAL SAUMATY",43.353984,5.328125,0,0,OM1:SA:CTP254,Europe/Paris,,OM1, +OM1:SP:2670,1,"CENTRE VALENTINE 1",43.294866,5.47929,0,0,OM1:SA:CTP2669,Europe/Paris,,OM1, +OM1:SP:2675,1,"DELPHES TOULON",43.28492,5.388408,0,0,OM1:SA:CTP2675,Europe/Paris,,OM1, +OM1:SP:2677,1,"CAILLOLS LE CLOS",43.303738,5.435694,0,0,OM1:SA:CTP2677,Europe/Paris,,OM1, +OM1:SP:268,1,"LITTORAL VALLOUISE",43.3536,5.330643,0,0,OM1:SA:CTP253,Europe/Paris,,OM1, +OM1:SP:2681,1,"TRINITAIRES ROMAIN ROLLAND",43.270988,5.407468,0,0,OM1:SA:CTP2681,Europe/Paris,,OM1, +OM1:SP:269,1,"LITTORAL MOUREPIANE",43.354353,5.33332,0,0,OM1:SA:CTP252,Europe/Paris,,OM1, +OM1:SP:2693,1,"VAUDRANS MARRONNIERS",43.30766,5.475373,0,0,OM1:SA:CTP2693,Europe/Paris,,OM1, +OM1:SP:2695,1,"VAUDRANS MARRONNIERS",43.307763,5.475231,0,0,OM1:SA:CTP2693,Europe/Paris,,OM1, +OM1:SP:27,1,"SAINT ANTOINE",43.373366,5.354469,0,0,OET:SA:CTP30624,Europe/Paris,,OM1, +OM1:SP:270,1,"LITTORAL JEAN LABRO",43.352385,5.338084,0,0,OM1:SA:CTP251,Europe/Paris,,OM1, +OM1:SP:2706,1,"PEINTRES ROUX MONTRE",43.299711,5.477524,0,0,OM1:SA:CTP2706,Europe/Paris,,OM1, +OM1:SP:2708,1,"COCHET STADE",43.238394,5.432439,0,0,OM1:SA:CTP2708,Europe/Paris,,OM1, +OM1:SP:2709,1,"PISCINE",43.237745,5.432207,0,0,OM1:SA:CTP2709,Europe/Paris,,OM1, +OM1:SP:271,1,"LITTORAL PAS DU FAON",43.351075,5.340259,0,0,OM4:SA:CTP3625953,Europe/Paris,,OM1, +OM1:SP:2710,1,"ESC",43.233728,5.433356,0,0,OM1:SA:CTP2710,Europe/Paris,,OM1, +OM1:SP:2711,1,"COCHET PISCINE",43.238027,5.432383,0,0,OM1:SA:CTP2709,Europe/Paris,,OM1, +OM1:SP:2714,1,"SAINT BARNABE LA CROIX",43.303568,5.414703,0,0,OM1:SA:CTP2714,Europe/Paris,,OM1, +OM1:SP:2715,1,"HAITI FRAISSINET",43.297357,5.406429,0,0,OM1:SA:CTP2715,Europe/Paris,,OM1, +OM1:SP:2716,1,"HAITI GARGUIER",43.297181,5.40786,0,0,OM1:SA:CTP2716,Europe/Paris,,OM1, +OM1:SP:2717,1,"TREVARESSE CITE JARDIN",43.296171,5.409517,0,0,OM1:SA:CTP2717,Europe/Paris,,OM1, +OM1:SP:2718,1,"TREVARESSE CITE SNCF",43.296659,5.41384,0,0,OM1:SA:CTP2718,Europe/Paris,,OM1, +OM1:SP:2719,1,"CHARBONNELLE TREVARESSE",43.297639,5.416983,0,0,OM1:SA:CTP2719,Europe/Paris,,OM1, +OM1:SP:272,1,"LITTORAL CITE NOUVELLE",43.348555,5.342899,0,0,OM1:SA:CTP249,Europe/Paris,,OM1, +OM1:SP:2720,1,"ALPES CAUVIN",43.298713,5.416215,0,0,OM1:SA:CTP2720,Europe/Paris,,OM1, +OM1:SP:2721,1,"ALPES LEMAN",43.300269,5.415289,0,0,OM1:SA:CTP2721,Europe/Paris,,OM1, +OM1:SP:2724,1,"ALPES MERLE",43.301519,5.41495,0,0,OM1:SA:CTP2724,Europe/Paris,,OM1, +OM1:SP:2725,1,"ALPES LEMAN",43.29994,5.415149,0,0,OM1:SA:CTP2721,Europe/Paris,,OM1, +OM1:SP:2726,1,"ALPES CAUVIN",43.298646,5.416064,0,0,OM1:SA:CTP2720,Europe/Paris,,OM1, +OM1:SP:2727,1,"CHARBONNELLE TREVARESSE",43.297616,5.416846,0,0,OM1:SA:CTP2719,Europe/Paris,,OM1, +OM1:SP:2728,1,"TREVARESSE CITE SNCF",43.296795,5.41381,0,0,OM1:SA:CTP2718,Europe/Paris,,OM1, +OM1:SP:2729,1,"TREVARESSE CITE JARDIN",43.29627,5.40951,0,0,OM1:SA:CTP2717,Europe/Paris,,OM1, +OM1:SP:273,1,"LITTORAL CHAMANT",43.347108,5.344166,0,0,OM1:SA:CTP273,Europe/Paris,,OM1, +OM1:SP:2730,1,"HAITI GARGUIER",43.297275,5.407717,0,0,OM1:SA:CTP2716,Europe/Paris,,OM1, +OM1:SP:2732,1,"AMARYLLIS ETOILE",43.317274,5.441573,0,0,OM1:SA:CTP2732,Europe/Paris,,OM1, +OM1:SP:2736,1,"ROND POINT DU PRADO",43.27298,5.390887,0,0,OM1:SA:CTP1736,Europe/Paris,,OM1, +OM1:SP:2739,1,"CALANQUE BLANCHE",43.223379,5.346298,0,0,OM1:SA:CTP2739,Europe/Paris,,OM1, +OM1:SP:274,1,"LITTORAL SANTI",43.344038,5.346544,0,0,OM1:SA:CTP247,Europe/Paris,,OM1, +OM1:SP:2740,1,"CALANQUE BLANCHE",43.223339,5.346443,0,0,OM1:SA:CTP2739,Europe/Paris,,OM1, +OM1:SP:2742,1,"LES OLIVES BLACHES",43.325123,5.45439,0,0,OM1:SA:CTP2742,Europe/Paris,,OM1, +OM1:SP:2745,1,"MAZARGUES BARRAL",43.263213,5.392853,0,0,OM1:SA:CTP2600,Europe/Paris,,OM1, +OM1:SP:275,1,"LITTORAL GOURRET",43.339394,5.347963,0,0,OM1:SA:CTP246,Europe/Paris,,OM1, +OM1:SP:2750,1,"CHATEAU DES MARTEGAUX",43.324035,5.443799,0,0,OM1:SA:CTP2750,Europe/Paris,,OM1, +OM1:SP:2751,1,"CHATEAU DES MARTEGAUX",43.324431,5.443168,0,0,OM1:SA:CTP2750,Europe/Paris,,OM1, +OM1:SP:2754,1,"VALLON DU REDON",43.248815,5.42466,0,0,OM1:SA:CTP2754,Europe/Paris,,OM1, +OM1:SP:2755,1,"VALLON DU REDON",43.248579,5.425361,0,0,OM1:SA:CTP2754,Europe/Paris,,OM1, +OM1:SP:276,1,"LITTORAL BERNABO",43.335546,5.354364,0,0,OM1:SA:CTP244,Europe/Paris,,OM1, +OM1:SP:2765,1,"RESIDENCE FONDACLE",43.32072,5.449285,0,0,OM1:SA:CTP2765,Europe/Paris,,OM1, +OM1:SP:277,1,"LITTORAL BEAUSEJOUR",43.332346,5.354639,0,0,OM1:SA:CTP243,Europe/Paris,,OM1, +OM1:SP:2770,1,"HIPPODROME BORELY",43.254583,5.377225,0,0,OM1:SA:CTP2770,Europe/Paris,,OM1, +OM1:SP:2771,1,"HIPPODROME BORELY",43.254322,5.377531,0,0,OM1:SA:CTP2770,Europe/Paris,,OM1, +OM1:SP:2779,1,"PEINTRES ROUX MONTRE",43.299109,5.478402,0,0,OM1:SA:CTP2706,Europe/Paris,,OM1, +OM1:SP:278,1,"LITTORAL MOUREN",43.329901,5.354905,0,0,OM1:SA:CTP242,Europe/Paris,,OM1, +OM1:SP:2780,1,"VELODROME",43.320792,5.458305,0,0,OM1:SA:CTP2780,Europe/Paris,,OM1, +OM1:SP:2783,1,"TRAVERSE PRAT",43.238658,5.374045,0,0,OM1:SA:CTP2783,Europe/Paris,,OM1, +OM1:SP:2785,1,"POL ROUX RABELAIS",43.359706,5.332885,0,0,OM1:SA:CTP2785,Europe/Paris,,OM1, +OM1:SP:2786,1,"CHEMIN DU PASSET",43.360415,5.33424,0,0,OM1:SA:CTP2786,Europe/Paris,,OM1, +OM1:SP:2787,1,"EYDOUX PELOUQUE",43.362775,5.335695,0,0,OM1:SA:CTP2787,Europe/Paris,,OM1, +OM1:SP:2788,1,"EYDOUX MONJARDE",43.362071,5.329656,0,0,OM1:SA:CTP2788,Europe/Paris,,OM1, +OM1:SP:2789,1,"EYDOUX MONJARDE",43.361995,5.327865,0,0,OM1:SA:CTP2788,Europe/Paris,,OM1, +OM1:SP:279,1,"CAP PINEDE",43.326127,5.358673,0,0,OM1:SA:CTP241,Europe/Paris,,OM1, +OM1:SP:2790,1,"EYDOUX PELOUQUE",43.362626,5.335589,0,0,OM1:SA:CTP2787,Europe/Paris,,OM1, +OM1:SP:2791,1,"CHEMIN DU PASSET",43.3606,5.334386,0,0,OM1:SA:CTP2786,Europe/Paris,,OM1, +OM1:SP:2792,1,"POL ROUX RABELAIS",43.359368,5.332768,0,0,OM1:SA:CTP2785,Europe/Paris,,OM1, +OM1:SP:28,1,"BOULEVARD FALCOT",43.373081,5.351151,0,0,OM1:SA:CTP25,Europe/Paris,,OM1, +OM1:SP:2808,1,"METRO ROND POINT DU PRADO",43.27197,5.390685,0,0,OM1:SA:CTP1083,Europe/Paris,,OM1, +OM1:SP:281,1,"SAINT CASSIEN",43.320089,5.362653,0,0,OM4:SA:CTP3625960,Europe/Paris,,OM1, +OM1:SP:2811,1,"CAMOINS VISITATION",43.296674,5.492464,0,0,OM1:SA:CTP2811,Europe/Paris,,OM1, +OM1:SP:2812,1,"CAMOINS VISITATION",43.297012,5.492286,0,0,OM1:SA:CTP2811,Europe/Paris,,OM1, +OM1:SP:2814,1,"LA BEGUDE SUD",43.333614,5.440967,0,0,OM1:SA:CTP2814,Europe/Paris,,OM1, +OM1:SP:2816,1,"SAINT HENRI CHAINE",43.356845,5.334251,0,0,OM1:SA:CTP2816,Europe/Paris,,OM1, +OM1:SP:2820,1,"LYCEE J.PERRIN",43.275357,5.423836,0,0,OM1:SA:CTP2820,Europe/Paris,,OM1, +OM1:SP:2824,1,"COPERNIC",43.342808,5.448636,0,0,OM1:SA:CTP2824,Europe/Paris,,OM1, +OM1:SP:2826,1,"GAROUTTE PHILIPPINE",43.30655,5.41325,0,0,OM1:SA:CTP2826,Europe/Paris,,OM1, +OM1:SP:2827,1,"GAROUTTE GAVOTY",43.308832,5.413951,0,0,OM1:SA:CTP2827,Europe/Paris,,OM1, +OM1:SP:283,1,"LE SILO",43.311351,5.36702,0,0,OM1:SA:CTP283,Europe/Paris,,OM1, +OM1:SP:2830,1,"GAROUTTE PHILIPPINE",43.306586,5.412919,0,0,OM1:SA:CTP2826,Europe/Paris,,OM1, +OM1:SP:2841,1,"COLLEGE MALRAUX",43.342766,5.44633,0,0,OM1:SA:CTP2841,Europe/Paris,,OM1, +OM1:SP:2849,1,"CASANOVA ETATS UNIS",43.325506,5.374025,0,0,OM1:SA:CTP2849,Europe/Paris,,OM1, +OM1:SP:2851,1,"ARENC MIRABEAU",43.314404,5.3659,0,0,OM1:SA:CTP2851,Europe/Paris,,OM1, +OM1:SP:2855,1,"NEGRESKO",43.269919,5.391315,0,0,OM1:SA:CTP2855,Europe/Paris,,OM1, +OM1:SP:2860,1,"MONTE CRISTO FARIA",43.299429,5.394929,0,0,OM1:SA:CTP2860,Europe/Paris,,OM1, +OM1:SP:2861,1,"MONTE CRISTO CAMAS",43.299064,5.391622,0,0,OM1:SA:CTP2861,Europe/Paris,,OM1, +OM1:SP:2862,1,"ROOSEVELT DEVILLIERS",43.29897,5.389561,0,0,OM1:SA:CTP2862,Europe/Paris,,OM1, +OM1:SP:2863,1,"ROOSEVELT REFORMES",43.299126,5.386578,0,0,OM1:SA:CTP2863,Europe/Paris,,OM1, +OM1:SP:2864,1,"ROOSEVELT REFORMES",43.298921,5.38653,0,0,OM1:SA:CTP2863,Europe/Paris,,OM1, +OM1:SP:2865,1,"ROOSEVELT DEVILLIERS",43.298783,5.389465,0,0,OM1:SA:CTP2862,Europe/Paris,,OM1, +OM1:SP:2866,1,"MONTE CRISTO CAMAS",43.298848,5.391623,0,0,OM1:SA:CTP2861,Europe/Paris,,OM1, +OM1:SP:2867,1,"MONTE CRISTO FARIA",43.29927,5.39513,0,0,OM1:SA:CTP2860,Europe/Paris,,OM1, +OM1:SP:2871,1,"BELLE OMBRE ROMAIN ROLLAND",43.270874,5.408015,0,0,OM1:SA:CTP1621,Europe/Paris,,OM1, +OM1:SP:2873,1,"SQUARE GANAY",43.267895,5.402405,0,0,OM1:SA:CTP2873,Europe/Paris,,OM1, +OM1:SP:2876,1,"MONTREDON MIREMONTS",43.237129,5.363122,0,0,OM1:SA:CTP2876,Europe/Paris,,OM1, +OM1:SP:2880,1,"STE MARGUERITE VAUTHIER",43.266939,5.408098,0,0,OM1:SA:CTP2880,Europe/Paris,,OM1, +OM1:SP:2882,1,"CITE LA MARIE BASSE",43.330221,5.457525,0,0,OM1:SA:CTP2882,Europe/Paris,,OM1, +OM1:SP:2884,1,"CITE LA MARIE HAUTE",43.328969,5.456052,0,0,OM1:SA:CTP2884,Europe/Paris,,OM1, +OM1:SP:2885,1,"CITE LA MARIE BASSE",43.32946,5.457718,0,0,OM1:SA:CTP2882,Europe/Paris,,OM1, +OM1:SP:2887,1,"AYGALADES COROT",43.333468,5.367818,0,0,OM1:SA:CTP2887,Europe/Paris,,OM1, +OM1:SP:2888,1,"AYGALADES COROT",43.333232,5.3682,0,0,OM1:SA:CTP2887,Europe/Paris,,OM1, +OM1:SP:2892,1,"LE GRAND PUITS PIE D'AUTRY",43.338568,5.479461,0,0,OM1:SA:CTP2208,Europe/Paris,,OM1, +OM1:SP:2894,1,"BERTHE SILVA-LA ROSE",43.326691,5.421079,0,0,OM1:SA:CTP2894,Europe/Paris,,OM1, +OM1:SP:2896,1,"LES BRUYERES",43.274704,5.438922,0,0,OM1:SA:CTP1686,Europe/Paris,,OM1, +OM1:SP:2899,1,"RICHARD 4 CHEMINS",43.3161,5.423749,0,0,OM1:SA:CTP2899,Europe/Paris,,OM1, +OM1:SP:29,1,"TRAVERSE GRAILLE",43.372266,5.348803,0,0,OM1:SA:CTP24,Europe/Paris,,OM1, +OM1:SP:290,1,"METRO BOUGAINVILLE",43.321002,5.371101,0,0,OM1:SA:CTP1,Europe/Paris,,OM1, +OM1:SP:2901,1,"DESERT GAZELLES",43.297378,5.434999,0,0,OM1:SA:CTP2901,Europe/Paris,,OM1, +OM1:SP:2922,1,"ST JULIEN CENTRE DES IMPOTS",43.306339,5.420466,0,0,OM1:SA:CTP2922,Europe/Paris,,OM1, +OM1:SP:2925,1,"FLORALIA CHIAPALE",43.244964,5.389618,0,0,OM1:SA:CTP2925,Europe/Paris,,OM1, +OM1:SP:2926,1,"FLORALIA RIMET",43.242619,5.392586,0,0,OM1:SA:CTP2926,Europe/Paris,,OM1, +OM1:SP:2928,1,"FLORALIA LE MEE",43.243341,5.392248,0,0,OM1:SA:CTP2928,Europe/Paris,,OM1, +OM1:SP:2929,1,"FLORALIA CHIAPALE",43.245188,5.389672,0,0,OM1:SA:CTP2925,Europe/Paris,,OM1, +OM1:SP:293,1,"CITE SNCF",43.348939,5.346222,0,0,OM1:SA:CTP293,Europe/Paris,,OM1, +OM1:SP:2933,1,"COLLEGE GYPTIS",43.264344,5.420315,0,0,OM1:SA:CTP2933,Europe/Paris,,OM1, +OM1:SP:294,1,"CONSOLAT",43.350644,5.350513,0,0,OM1:SA:CTP294,Europe/Paris,,OM1, +OM1:SP:295,1,"RABELAIS PICARON",43.357815,5.3388,0,0,OM1:SA:CTP295,Europe/Paris,,OM1, +OM1:SP:2950,1,"LA GAVOTTE PEYRET",43.389662,5.352011,0,0,OM1:SA:CTP2950,Europe/Paris,,OM1, +OM1:SP:2951,1,"LES GENETS",43.405156,5.371927,0,0,OM1:SA:CTP2951,Europe/Paris,,OM1, +OM1:SP:2952,1,"HOPITAL NORD",43.377618,5.362639,0,0,OM1:SA:CTP2952,Europe/Paris,,OM1, +OM1:SP:2954,1,"LES PEYRETS FABREGOULES",43.410456,5.372024,0,0,OM1:SA:CTP2954,Europe/Paris,,OM1, +OM1:SP:2955,1,"LES COLLINES",43.404605,5.369765,0,0,OM1:SA:CTP2955,Europe/Paris,,OM1, +OM1:SP:2956,1,"NOTRE DAME LIMITE",43.384598,5.358465,0,0,OM1:SA:CTP2956,Europe/Paris,,OM1, +OM1:SP:2957,1,"NOTRE DAME LIMITE",43.3846,5.358747,0,0,OM1:SA:CTP2956,Europe/Paris,,OM1, +OM1:SP:2959,1,"LES PEYRETS FABREGOULES",43.410424,5.372445,0,0,OM1:SA:CTP2954,Europe/Paris,,OM1, +OM1:SP:296,1,"RABELAIS PELLAN",43.35825,5.336087,0,0,OM1:SA:CTP296,Europe/Paris,,OM1, +OM1:SP:2961,1,"ECOLE CASTORS ISABELLA",43.402618,5.353568,0,0,OM1:SA:CTP2989,Europe/Paris,,OM1, +OM1:SP:2962,1,"HOPITAL NORD",43.377374,5.362454,0,0,OM1:SA:CTP2952,Europe/Paris,,OM1, +OM1:SP:2963,1,"LA GAVOTTE PEYRET",43.389642,5.352362,0,0,OM1:SA:CTP2950,Europe/Paris,,OM1, +OM1:SP:2965,1,"VALLON DE LA ROUGIERE",43.391031,5.374733,0,0,OM1:SA:CTP2965,Europe/Paris,,OM1, +OM1:SP:2966,1,"SAINT ANTOINE",43.37349,5.354709,0,0,OET:SA:CTP30624,Europe/Paris,,OM1, +OM1:SP:2967,1,"PEYRARDS PLACETTE",43.372368,5.377856,0,0,OM1:SA:CTP2967,Europe/Paris,,OM1, +OM1:SP:2969,1,"HOPITAL NORD",43.377183,5.363768,0,0,OM1:SA:CTP2952,Europe/Paris,,OM1, +OM1:SP:297,1,"SAINT HENRI",43.359676,5.33202,0,0,OM1:SA:CTP297,Europe/Paris,,OM1, +OM1:SP:2972,1,"BOIS LEMAITRE",43.322694,5.432294,0,0,OM1:SA:CTP2972,Europe/Paris,,OM1, +OM1:SP:298,1,"RABELAIS FRERES",43.360631,5.329396,0,0,OM1:SA:CTP298,Europe/Paris,,OM1, +OM1:SP:2981,1,"LA GRANDE VIGNE",43.405389,5.364004,0,0,OM1:SA:CTP2981,Europe/Paris,,OM1, +OM1:SP:2982,1,"POLYSPORT GRAND PAVOIS",43.403377,5.363912,0,0,OM1:SA:CTP2982,Europe/Paris,,OM1, +OM1:SP:2983,1,"SEPTEME GARE",43.40145,5.369592,0,0,OM1:SA:CTP2983,Europe/Paris,,OM1, +OM1:SP:2984,1,"COLLEGE FERRANDI",43.407481,5.370958,0,0,OM1:SA:CTP2984,Europe/Paris,,OM1, +OM1:SP:2985,1,"MANDELA L' ARLESIENNE",43.409837,5.36888,0,0,OM1:SA:CTP2985,Europe/Paris,,OM1, +OM1:SP:2986,1,"PLACE BARBUSSE",43.407018,5.363113,0,0,OM1:SA:CTP2986,Europe/Paris,,OM1, +OM1:SP:2987,1,"GRAND PAVOIS",43.403971,5.358899,0,0,OM1:SA:CTP2987,Europe/Paris,,OM1, +OM1:SP:2988,1,"ZA DE LA HAUTE BEDOULE",43.403213,5.356412,0,0,OM1:SA:CTP2988,Europe/Paris,,OM1, +OM1:SP:2989,1,"ECOLE CASTORS ISABELLA",43.40309,5.353299,0,0,OM1:SA:CTP2989,Europe/Paris,,OM1, +OM1:SP:299,1,"RABELAIS BOURGADE",43.36114,5.327241,0,0,OM1:SA:CTP299,Europe/Paris,,OM1, +OM1:SP:2990,1,"CASTORS ISABELLA SUD",43.403719,5.351196,0,0,OM1:SA:CTP2990,Europe/Paris,,OM1, +OM1:SP:2991,1,"VALLON DE LA GAZELLE",43.407093,5.346304,0,0,OM1:SA:CTP2991,Europe/Paris,,OM1, +OM1:SP:2992,1,"CHENE VERT",43.407555,5.354544,0,0,OM1:SA:CTP2992,Europe/Paris,,OM1, +OM1:SP:2993,1,"CIMETIERE NORD",43.405575,5.355241,0,0,OM1:SA:CTP2993,Europe/Paris,,OM1, +OM1:SP:2994,1,"CIMETIERE SUD",43.404341,5.356299,0,0,OM1:SA:CTP2994,Europe/Paris,,OM1, +OM1:SP:2995,1,"BEDOULE SAUZE",43.402646,5.357097,0,0,OM1:SA:CTP2995,Europe/Paris,,OM1, +OM1:SP:2996,1,"TRAVERSE DES FRAISES",43.383021,5.350444,0,0,OM1:SA:CTP2996,Europe/Paris,,OM1, +OM1:SP:2997,1,"LES PEYRARDS CORRADI",43.373591,5.38196,0,0,OM1:SA:CTP2997,Europe/Paris,,OM1, +OM1:SP:2998,1,"LES PEYRARDS CHASSEURS",43.371983,5.380284,0,0,OM1:SA:CTP2998,Europe/Paris,,OM1, +OM1:SP:2999,1,"LES PEYRARDS PLACETTE",43.371258,5.376979,0,0,OM1:SA:CTP2999,Europe/Paris,,OM1, +OM1:SP:3,1,"LYON CAP PINEDE",43.326504,5.366662,0,0,OM1:SA:CTP3,Europe/Paris,,OM1, +OM1:SP:30,1,"LA BRICARDE",43.369871,5.345669,0,0,OM1:SA:CTP23,Europe/Paris,,OM1, +OM1:SP:300,1,"RABELAIS COLLEGE",43.362019,5.325389,0,0,OM1:SA:CTP300,Europe/Paris,,OM1, +OM1:SP:3000,1,"TRAVERSE DES FRAISES",43.38299,5.350591,0,0,OM1:SA:CTP2996,Europe/Paris,,OM1, +OM1:SP:3001,1,"GRAND PAVOIS",43.403729,5.359098,0,0,OM1:SA:CTP2987,Europe/Paris,,OM1, +OM1:SP:3002,1,"PLACE BARBUSSE",43.407336,5.364597,0,0,OM1:SA:CTP2986,Europe/Paris,,OM1, +OM1:SP:3003,1,"MANDELA ECOLE",43.409017,5.367832,0,0,OM1:SA:CTP3003,Europe/Paris,,OM1, +OM1:SP:3004,1,"COLLEGE FERRANDI",43.406742,5.371017,0,0,OM1:SA:CTP2984,Europe/Paris,,OM1, +OM1:SP:3005,1,"SEPTEME GARE",43.401392,5.369871,0,0,OM1:SA:CTP2983,Europe/Paris,,OM1, +OM1:SP:3006,1,"POLYSPORT GRAND PAVOIS",43.403329,5.364149,0,0,OM1:SA:CTP2982,Europe/Paris,,OM1, +OM1:SP:3007,1,"LA GRANDE VIGNE",43.405309,5.364296,0,0,OM1:SA:CTP2981,Europe/Paris,,OM1, +OM1:SP:301,1,"CARONTE",43.362597,5.322042,0,0,OM1:SA:CTP301,Europe/Paris,,OM1, +OM1:SP:3013,1,"SEPTEMES SUD",43.39624,5.365962,0,0,OM1:SA:CTP3013,Europe/Paris,,OM1, +OM1:SP:3014,1,"LA ROUGIERE",43.391946,5.363663,0,0,OM1:SA:CTP3014,Europe/Paris,,OM1, +OM1:SP:3015,1,"NOTRE DAME FASANO",43.389211,5.361517,0,0,OM1:SA:CTP3015,Europe/Paris,,OM1, +OM1:SP:3016,1,"NOTRE DAME FASANO",43.389052,5.361692,0,0,OM1:SA:CTP3015,Europe/Paris,,OM1, +OM1:SP:3017,1,"LA ROUGIERE",43.391164,5.363398,0,0,OM1:SA:CTP3014,Europe/Paris,,OM1, +OM1:SP:3018,1,"SEPTEMES SUD",43.396181,5.365508,0,0,OM1:SA:CTP3013,Europe/Paris,,OM1, +OM1:SP:3019,1,"COMMISSARIAT",43.39234,5.367332,0,0,OM1:SA:CTP3019,Europe/Paris,,OM1, +OM1:SP:302,1,"ESTAQUE GARE",43.362597,5.31848,0,0,OM1:SA:CTP3574,Europe/Paris,,OM1, +OM1:SP:3023,1,"LES FABRETTES",43.379609,5.357079,0,0,OM1:SA:CTP3023,Europe/Paris,,OM1, +OM1:SP:303,1,"LA NERTHE MARINIER",43.36321,5.316145,0,0,OM1:SA:CTP303,Europe/Paris,,OM1, +OM1:SP:3034,1,"LE BRIX MAGALONE",43.261162,5.403647,0,0,OM1:SA:CTP3034,Europe/Paris,,OM1, +OM1:SP:304,1,"LA NERTHE MISTRAL",43.363037,5.313314,0,0,OM1:SA:CTP304,Europe/Paris,,OM1, +OM1:SP:3042,1,"LES TOURELLES",43.393555,5.351893,0,0,OM1:SA:CTP3042,Europe/Paris,,OM1, +OM1:SP:3043,1,"TRANSFORMATEUR",43.396085,5.352435,0,0,OM1:SA:CTP3043,Europe/Paris,,OM1, +OM1:SP:3044,1,"EUGENE MICHEL",43.39943,5.355562,0,0,OM1:SA:CTP3044,Europe/Paris,,OM1, +OM1:SP:3045,1,"EUGENE MICHEL",43.399541,5.355222,0,0,OM1:SA:CTP3044,Europe/Paris,,OM1, +OM1:SP:3046,1,"TRANSFORMATEUR",43.395587,5.35194,0,0,OM1:SA:CTP3043,Europe/Paris,,OM1, +OM1:SP:3047,1,"LES TOURELLES",43.393391,5.351664,0,0,OM1:SA:CTP3042,Europe/Paris,,OM1, +OM1:SP:3048,1,"PINEDE ROUGIERE",43.389105,5.377335,0,0,OM1:SA:CTP3048,Europe/Paris,,OM1, +OM1:SP:3049,1,"HAUT DE LA ROUGIERE",43.386698,5.376578,0,0,OM1:SA:CTP3049,Europe/Paris,,OM1, +OM1:SP:305,1,"FILLAT FALAISE",43.363525,5.309629,0,0,OM1:SA:CTP305,Europe/Paris,,OM1, +OM1:SP:3050,1,"PINEDE ROUGIERE",43.38903,5.377569,0,0,OM1:SA:CTP3048,Europe/Paris,,OM1, +OM1:SP:3051,1,"LES MAZETS",43.392382,5.366956,0,0,OM1:SA:CTP3051,Europe/Paris,,OM1, +OM1:SP:3052,1,"VALLON DE LA ROUGIERE",43.391144,5.374885,0,0,OM1:SA:CTP2965,Europe/Paris,,OM1, +OM1:SP:3053,1,"BARBUSSE-COLBERT",43.29864,5.373991,0,0,OM1:SA:CTP3053,Europe/Paris,,OM1, +OM1:SP:3055,1,"CANEBIERE (BOURSE)",43.296908,5.376311,0,0,OM1:SA:CTP3055,Europe/Paris,,OM1, +OM1:SP:3056,1,"CANEBIERE (BOURSE)",43.296928,5.376366,0,0,OM1:SA:CTP3055,Europe/Paris,,OM1, +OM1:SP:3059,1,"NICOLAS APPERT",43.339669,5.418114,0,0,OM1:SA:CTP3059,Europe/Paris,,OM1, +OM1:SP:306,1,"LA NERTHE",43.363918,5.308084,0,0,OM1:SA:CTP306,Europe/Paris,,OM1, +OM1:SP:3061,1,"NICOLAS APPERT",43.339478,5.417882,0,0,OM1:SA:CTP3059,Europe/Paris,,OM1, +OM1:SP:3069,1,"MONET LAVANDINS",43.324902,5.393885,0,0,OM1:SA:CTP3069,Europe/Paris,,OM1, +OM1:SP:307,1,"FILLAT FALAISE",43.363417,5.309315,0,0,OM1:SA:CTP305,Europe/Paris,,OM1, +OM1:SP:3070,1,"MONET LAVANDINS",43.324764,5.393656,0,0,OM1:SA:CTP3069,Europe/Paris,,OM1, +OM1:SP:3072,1,"SORMIOU CROSIA",43.234638,5.399413,0,0,OM1:SA:CTP3072,Europe/Paris,,OM1, +OM1:SP:3073,1,"SORMIOU CROSIA",43.23461,5.399116,0,0,OM1:SA:CTP3072,Europe/Paris,,OM1, +OM1:SP:308,1,"LA NERTHE MISTRAL",43.36288,5.313133,0,0,OM1:SA:CTP304,Europe/Paris,,OM1, +OM1:SP:3085,1,"CINQ AVENUES FONDERE",43.301773,5.398753,0,0,OM1:SA:CTP3085,Europe/Paris,,OM1, +OM1:SP:3086,1,"BLANCARDE JEANNE DE CHANTAL",43.302922,5.402506,0,0,OM1:SA:CTP3086,Europe/Paris,,OM1, +OM1:SP:3087,1,"BLANCARDE CINQ AVENUES",43.302753,5.397122,0,0,OM1:SA:CTP3087,Europe/Paris,,OM1, +OM1:SP:309,1,"LA NERTHE MARINIER",43.363058,5.316125,0,0,OM1:SA:CTP303,Europe/Paris,,OM1, +OM1:SP:3091,1,"SAINT PIERRE",43.291627,5.413385,0,0,OM1:SA:CTP3091,Europe/Paris,,OM1, +OM1:SP:3092,1,"SAINT PIERRE",43.291813,5.413194,0,0,OM1:SA:CTP3091,Europe/Paris,,OM1, +OM1:SP:3094,1,"METRO CHARTREUX",43.309345,5.401319,0,0,OM1:SA:CTP2017,Europe/Paris,,OM1, +OM1:SP:3097,1,"ROCHE ALBE",43.309303,5.40391,0,0,OM1:SA:CTP3097,Europe/Paris,,OM1, +OM1:SP:31,1,"TRAVERSE DE LA BARRE",43.368599,5.34453,0,0,OM1:SA:CTP22,Europe/Paris,,OM1, +OM1:SP:310,1,"ESTAQUE GARE",43.362399,5.318469,0,0,OM1:SA:CTP3574,Europe/Paris,,OM1, +OM1:SP:311,1,"CARONTE",43.36247,5.321764,0,0,OM1:SA:CTP301,Europe/Paris,,OM1, +OM1:SP:3112,1,"LIBERATION DORMOY",43.302434,5.395441,0,0,OM1:SA:CTP3112,Europe/Paris,,OM1, +OM1:SP:3113,1,"LIBERATION ST VINCENT DE PAUL",43.301057,5.391069,0,0,OM1:SA:CTP3113,Europe/Paris,,OM1, +OM1:SP:3114,1,"LIBERATION REFORMES",43.299296,5.385857,0,0,OM1:SA:CTP3114,Europe/Paris,,OM1, +OM1:SP:312,1,"RABELAIS COLLEGE",43.36191,5.325087,0,0,OM1:SA:CTP300,Europe/Paris,,OM1, +OM1:SP:3121,1,"METRO CINQ AVENUES",43.304156,5.39721,0,0,OM1:SA:CTP1127,Europe/Paris,,OM1, +OM1:SP:3124,1,"CASSINI",43.305848,5.396434,0,0,OM1:SA:CTP3124,Europe/Paris,,OM1, +OM1:SP:3125,1,"CASSINI",43.306204,5.396682,0,0,OM1:SA:CTP3124,Europe/Paris,,OM1, +OM1:SP:3127,1,"PLACE BROSSOLETTE",43.307021,5.400287,0,0,OM1:SA:CTP1100,Europe/Paris,,OM1, +OM1:SP:3130,1,"VALBARELLE SAINT JACQUES",43.28717,5.44675,0,0,OM1:SA:CTP3130,Europe/Paris,,OM1, +OM1:SP:3133,1,"FOCH CINQ AVENUES",43.301977,5.397811,0,0,OM1:SA:CTP3133,Europe/Paris,,OM1, +OM1:SP:3138,1,"POURRIERE FLORALIA",43.24515,5.387628,0,0,OM1:SA:CTP3138,Europe/Paris,,OM1, +OM1:SP:3139,1,"POURRIERE FLORALIA",43.245019,5.387277,0,0,OM1:SA:CTP3138,Europe/Paris,,OM1, +OM1:SP:3141,1,"TEISSEIRE RABATAU",43.274839,5.396659,0,0,OM1:SA:CTP3141,Europe/Paris,,OM1, +OM1:SP:3142,1,"TEISSEIRE MONTFURON",43.273133,5.399103,0,0,OM1:SA:CTP3142,Europe/Paris,,OM1, +OM1:SP:3143,1,"TEISSEIRE PALAIS DES SPORTS",43.270214,5.400788,0,0,OM1:SA:CTP3143,Europe/Paris,,OM1, +OM1:SP:3148,1,"COMTESSE",43.319173,5.447294,0,0,OM1:SA:CTP3148,Europe/Paris,,OM1, +OM1:SP:3149,1,"COMTESSE",43.319169,5.447195,0,0,OM1:SA:CTP3148,Europe/Paris,,OM1, +OM1:SP:3151,1,"LANGEVIN WALLON",43.386539,5.351945,0,0,OM1:SA:CTP3151,Europe/Paris,,OM1, +OM1:SP:3153,1,"LOU GALOUBET",43.400137,5.365638,0,0,OM1:SA:CTP3153,Europe/Paris,,OM1, +OM1:SP:3156,1,"SAINTE MARTHE VERT BOIS",43.335283,5.391614,0,0,OM1:SA:CTP3156,Europe/Paris,,OM1, +OM1:SP:316,1,"RABELAIS PELLAN",43.358073,5.335979,0,0,OM1:SA:CTP296,Europe/Paris,,OM1, +OM1:SP:3160,1,"BIANCO MAZENODE",43.289066,5.425927,0,0,OM1:SA:CTP3160,Europe/Paris,,OM1, +OM1:SP:3165,1,"BRETEUIL SYLVABELLE",43.288391,5.37655,0,0,OM1:SA:CTP3165,Europe/Paris,,OM1, +OM1:SP:3167,1,"PLACE DU MONUMENT",43.301176,5.510587,0,0,OM1:SA:CTP3167,Europe/Paris,,OM1, +OM1:SP:317,1,"RABELAIS PICARON",43.357612,5.339615,0,0,OM1:SA:CTP295,Europe/Paris,,OM1, +OM1:SP:3177,1,"LES CAILLOLS (CENTRE URBAIN)",43.29547,5.445908,0,0,OM1:SA:CTP1168,Europe/Paris,,OM1, +OM1:SP:318,1,"CONSOLAT",43.35105,5.351114,0,0,OM1:SA:CTP294,Europe/Paris,,OM1, +OM1:SP:3181,1,"LES CAILLOLS (CENTRE URBAIN)",43.294911,5.444415,0,0,OM1:SA:CTP1168,Europe/Paris,,OM1, +OM1:SP:319,1,"CITE SNCF",43.349115,5.346046,0,0,OM1:SA:CTP293,Europe/Paris,,OM1, +OM1:SP:3197,1,"LES COLLINES CENTRE",43.405602,5.369635,0,0,OM1:SA:CTP3197,Europe/Paris,,OM1, +OM1:SP:3198,1,"LES COLLINES CIMETIERE",43.404343,5.369433,0,0,OM1:SA:CTP3198,Europe/Paris,,OM1, +OM1:SP:3199,1,"SEPTEMES CENTRE",43.398565,5.366317,0,0,OM1:SA:CTP3199,Europe/Paris,,OM1, +OM1:SP:32,1,"LA CASTELLANE",43.365746,5.343,0,0,OM1:SA:CTP32,Europe/Paris,,OM1, +OM1:SP:3200,1,"LE CENTRE",43.398324,5.366089,0,0,OM1:SA:CTP3199,Europe/Paris,,OM1, +OM1:SP:3204,1,"PLAGE DES CATALANS",43.289906,5.355522,0,0,OM1:SA:CTP3204,Europe/Paris,,OM1, +OM1:SP:3206,1,"EUROMEDITERRANEE GANTES",43.308687,5.368121,0,0,OM1:SA:CTP3206,Europe/Paris,,OM1, +OM1:SP:3209,1,"JOLIETTE",43.305438,5.367182,0,0,OM1:SA:CTP3790,Europe/Paris,,OM1, +OM1:SP:3210,1,"REPUBLIQUE DAMES",43.302199,5.369305,0,0,OM1:SA:CTP3210,Europe/Paris,,OM1, +OM1:SP:3211,1,"SADI CARNOT",43.299842,5.371235,0,0,OM1:SA:CTP3211,Europe/Paris,,OM1, +OM1:SP:3213,1,"BELSUNCE ALCAZAR",43.298503,5.376639,0,0,OM1:SA:CTP3213,Europe/Paris,,OM1, +OM1:SP:3217,1,"CANEBIERE GARIBALDI",43.297798,5.381776,0,0,OM1:SA:CTP3217,Europe/Paris,,OM1, +OM1:SP:3218,1,"REFORMES CANEBIERE",43.300031,5.385472,0,0,OM1:SA:CTP2282,Europe/Paris,,OM1, +OM1:SP:322,1,"METRO BOUGAINVILLE",43.320905,5.371355,0,0,OM1:SA:CTP1,Europe/Paris,,OM1, +OM1:SP:3220,1,"NATIONAL",43.301503,5.388686,0,0,OM1:SA:CTP3220,Europe/Paris,,OM1, +OM1:SP:3221,1,"LONGCHAMP",43.303299,5.392474,0,0,OM1:SA:CTP3221,Europe/Paris,,OM1, +OM1:SP:3222,1,"FOCH SAKAKINI",43.30032,5.400009,0,0,OM1:SA:CTP3222,Europe/Paris,,OM1, +OM1:SP:3223,1,"FOCH BOISSON",43.298132,5.403237,0,0,OM1:SA:CTP3223,Europe/Paris,,OM1, +OM1:SP:3227,1,"LA BLANCARDE",43.296666,5.405391,0,0,OM1:SA:CTP1536,Europe/Paris,,OM1, +OM1:SP:3229,1,"SAINTE THERESE",43.29417,5.409478,0,0,OM1:SA:CTP3229,Europe/Paris,,OM1, +OM1:SP:323,1,"CASANOVA CANET",43.329088,5.375803,0,0,OM1:SA:CTP323,Europe/Paris,,OM1, +OM1:SP:3232,1,"SAINT PIERRE",43.291682,5.414412,0,0,OM1:SA:CTP3091,Europe/Paris,,OM1, +OM1:SP:3233,1,"LA PARETTE",43.295056,5.419395,0,0,OM1:SA:CTP3233,Europe/Paris,,OM1, +OM1:SP:3234,1,"LA BOISERAIE",43.294925,5.422867,0,0,OM1:SA:CTP3234,Europe/Paris,,OM1, +OM1:SP:3236,1,"AIR BEL",43.294304,5.429463,0,0,OM1:SA:CTP3236,Europe/Paris,,OM1, +OM1:SP:3237,1,"LA GROGNARDE",43.294613,5.432316,0,0,OM1:SA:CTP3237,Europe/Paris,,OM1, +OM1:SP:3238,1,"WILLIAM BOOTH",43.292653,5.436849,0,0,OM1:SA:CTP3238,Europe/Paris,,OM1, +OM1:SP:324,1,"CASANOVA LAROUSSE",43.330371,5.376561,0,0,OM1:SA:CTP324,Europe/Paris,,OM1, +OM1:SP:3240,1,"LES CAILLOLS",43.294627,5.443336,0,0,OM1:SA:CTP3240,Europe/Paris,,OM1, +OM1:SP:3247,1,"LES CAILLOLS",43.29467,5.443304,0,0,OM1:SA:CTP3240,Europe/Paris,,OM1, +OM1:SP:3249,1,"WILLIAM BOOTH",43.292789,5.436832,0,0,OM1:SA:CTP3238,Europe/Paris,,OM1, +OM1:SP:325,1,"HLM LE CANET",43.331517,5.375476,0,0,OM1:SA:CTP325,Europe/Paris,,OM1, +OM1:SP:3250,1,"LA GROGNARDE",43.294731,5.432301,0,0,OM1:SA:CTP3237,Europe/Paris,,OM1, +OM1:SP:3251,1,"AIR BEL",43.294442,5.429461,0,0,OM1:SA:CTP3236,Europe/Paris,,OM1, +OM1:SP:3253,1,"LA BOISERAIE",43.295003,5.422851,0,0,OM1:SA:CTP3234,Europe/Paris,,OM1, +OM1:SP:3254,1,"LA PARETTE",43.295174,5.419359,0,0,OM1:SA:CTP3233,Europe/Paris,,OM1, +OM1:SP:3255,1,"SAINT PIERRE",43.29174,5.414418,0,0,OM1:SA:CTP3091,Europe/Paris,,OM1, +OM1:SP:3258,1,"SAINTE THERESE",43.294145,5.409432,0,0,OM1:SA:CTP3229,Europe/Paris,,OM1, +OM1:SP:326,1,"GAY LUSSAC",43.33526,5.374751,0,0,OM1:SA:CTP326,Europe/Paris,,OM1, +OM1:SP:3265,1,"FOCH BOISSON",43.298168,5.403292,0,0,OM1:SA:CTP3223,Europe/Paris,,OM1, +OM1:SP:3266,1,"FOCH SAKAKINI",43.300356,5.400069,0,0,OM1:SA:CTP3222,Europe/Paris,,OM1, +OM1:SP:3267,1,"CINQ AVENUES",43.30207,5.397513,0,0,OM1:SA:CTP3133,Europe/Paris,,OM1, +OM1:SP:3268,1,"LONGCHAMP",43.303361,5.392411,0,0,OM1:SA:CTP3221,Europe/Paris,,OM1, +OM1:SP:3269,1,"NATIONAL",43.301589,5.388531,0,0,OM1:SA:CTP3220,Europe/Paris,,OM1, +OM1:SP:327,1,"AMPERE GAY LUSSAC",43.33632,5.374486,0,0,OM1:SA:CTP327,Europe/Paris,,OM1, +OM1:SP:3271,1,"REFORMES CANEBIERE",43.300092,5.385407,0,0,OM1:SA:CTP2282,Europe/Paris,,OM1, +OM1:SP:3272,1,"CANEBIERE GARIBALDI",43.29787,5.381734,0,0,OM1:SA:CTP3217,Europe/Paris,,OM1, +OM1:SP:3275,1,"BELSUNCE ALCAZAR",43.298512,5.37669,0,0,OM1:SA:CTP3213,Europe/Paris,,OM1, +OM1:SP:3277,1,"SADI CARNOT",43.299857,5.371278,0,0,OM1:SA:CTP3211,Europe/Paris,,OM1, +OM1:SP:3278,1,"REPUBLIQUE DAMES",43.302218,5.369352,0,0,OM1:SA:CTP3210,Europe/Paris,,OM1, +OM1:SP:3279,1,"JOLIETTE",43.30543,5.367224,0,0,OM1:SA:CTP3790,Europe/Paris,,OM1, +OM1:SP:328,1,"CITE BASSENS",43.338659,5.373169,0,0,OM1:SA:CTP328,Europe/Paris,,OM1, +OM1:SP:3281,1,"EUROMEDITERRANEE GANTES",43.308684,5.368155,0,0,OM1:SA:CTP3206,Europe/Paris,,OM1, +OM1:SP:3285,1,"CINQ AVENUES",43.302043,5.397469,0,0,OM1:SA:CTP3133,Europe/Paris,,OM1, +OM1:SP:329,1,"MIN BOLIVAR",43.341381,5.375814,0,0,OM1:SA:CTP329,Europe/Paris,,OM1, +OM1:SP:330,1,"MIN ARNAVAUX",43.338367,5.382233,0,0,OM1:SA:CTP330,Europe/Paris,,OM1, +OM1:SP:331,1,"MIN GIBBES",43.337117,5.385075,0,0,OM1:SA:CTP331,Europe/Paris,,OM1, +OM1:SP:3311,1,"DUGOMMIER CANEBIERE",43.298206,5.380903,0,0,OM1:SA:CTP3311,Europe/Paris,,OM1, +OM1:SP:3313,1,"CANEBIERE VIEUX PORT",43.295528,5.374906,0,0,OM1:SA:CTP3313,Europe/Paris,,OM1, +OM1:SP:3327,1,"ST MITRE ECOLES",43.340583,5.420004,0,0,OM1:SA:CTP710,Europe/Paris,,OM1, +OM1:SP:333,1,"CADE MOUTON",43.331846,5.39242,0,0,OM1:SA:CTP3452,Europe/Paris,,OM1, +OM1:SP:3339,1,"CANEBIERE SAINT FERREOL",43.29632,5.377222,0,0,OM1:SA:CTP3339,Europe/Paris,,OM1, +OM1:SP:3341,1,"REFORMES CANEBIERE",43.300365,5.385692,0,0,OM1:SA:CTP2282,Europe/Paris,,OM1, +OM1:SP:3342,1,"VOLTAIRE ST CHARLES",43.302756,5.384812,0,0,OM1:SA:CTP226,Europe/Paris,,OM1, +OM1:SP:3344,1,"REFORMES CANEBIERE",43.300184,5.385304,0,0,OM1:SA:CTP2282,Europe/Paris,,OM1, +OM1:SP:3349,1,"FOCH CINQ AVENUES",43.302294,5.397381,0,0,OM1:SA:CTP3133,Europe/Paris,,OM1, +OM1:SP:335,1,"JOURDAN CRECHE",43.333689,5.395302,0,0,OM1:SA:CTP335,Europe/Paris,,OM1, +OM1:SP:3351,1,"LES CAILLOLS (CENTRE URBAIN)",43.294705,5.444621,0,0,OM1:SA:CTP1168,Europe/Paris,,OM1, +OM1:SP:3354,1,"GARE SAINT CHARLES",43.30352,5.379792,0,0,OM1:SA:CTP3354,Europe/Paris,,OM1, +OM1:SP:3355,1,"FACULTE ST-CHARLES",43.304346,5.378054,0,0,OM1:SA:CTP3355,Europe/Paris,,OM1, +OM1:SP:3358,1,"GEORGES VERDUN",43.296942,5.397591,0,0,OM1:SA:CTP3358,Europe/Paris,,OM1, +OM1:SP:3359,1,"SEDAN CHAVE",43.295079,5.397838,0,0,OM1:SA:CTP3359,Europe/Paris,,OM1, +OM1:SP:336,1,"JOURDAN LE MAIL",43.333106,5.398413,0,0,OM1:SA:CTP336,Europe/Paris,,OM1, +OM1:SP:3360,1,"JEANNE D'ARC",43.293997,5.399139,0,0,OM1:SA:CTP3360,Europe/Paris,,OM1, +OM1:SP:3362,1,"ST-PIERRE MADON",43.292834,5.40026,0,0,OM1:SA:CTP3362,Europe/Paris,,OM1, +OM1:SP:3363,1,"SEDAN CHAVE",43.295307,5.397944,0,0,OM1:SA:CTP3359,Europe/Paris,,OM1, +OM1:SP:3364,1,"GEORGE VERDUN",43.297145,5.397803,0,0,OM1:SA:CTP3358,Europe/Paris,,OM1, +OM1:SP:3365,1,"PLACE SEBASTOPOL",43.298273,5.397652,0,0,OM1:SA:CTP1552,Europe/Paris,,OM1, +OM1:SP:3367,1,"GAMBETTA ATHENES",43.299178,5.381774,0,0,OM1:SA:CTP3367,Europe/Paris,,OM1, +OM1:SP:3369,1,"BOURDET NEDELEC",43.302935,5.379493,0,0,OM1:SA:CTP3369,Europe/Paris,,OM1, +OM1:SP:337,1,"COLLEGE EDOUARD MANET",43.333827,5.398981,0,0,OM1:SA:CTP337,Europe/Paris,,OM1, +OM1:SP:3372,1,"CANEBIERE SAINT FERREOL",43.296132,5.377301,0,0,OM1:SA:CTP3339,Europe/Paris,,OM1, +OM1:SP:3373,1,"CANEBIERE GARIBALDI",43.297921,5.382284,0,0,OM1:SA:CTP3217,Europe/Paris,,OM1, +OM1:SP:3374,1,"LIBERATION REFORMES",43.299321,5.386452,0,0,OM1:SA:CTP3114,Europe/Paris,,OM1, +OM1:SP:3375,1,"LIBERATION ST VINCENT DE PAUL",43.30082,5.391249,0,0,OM1:SA:CTP3113,Europe/Paris,,OM1, +OM1:SP:3377,1,"GAMBETTA REFORMES",43.299096,5.384772,0,0,OM1:SA:CTP3377,Europe/Paris,,OM1, +OM1:SP:338,1,"BRAQUE LES FLAMANTS",43.332496,5.401817,0,0,OM1:SA:CTP338,Europe/Paris,,OM1, +OM1:SP:3380,1,"REFORMES CANEBIERE",43.30052,5.386026,0,0,OM1:SA:CTP2282,Europe/Paris,,OM1, +OM1:SP:3382,1,"JOURDAN BONNARDEL",43.311518,5.387583,0,0,OM1:SA:CTP3382,Europe/Paris,,OM1, +OM1:SP:3384,1,"REPUBLIQUE DAMES",43.302363,5.369081,0,0,OM1:SA:CTP3210,Europe/Paris,,OM1, +OM1:SP:3386,1,"METRO JOLIETTE",43.30484,5.367541,0,0,OM1:SA:CTP3850,Europe/Paris,,OM1, +OM1:SP:3388,1,"BELLE DE MAI",43.310611,5.389333,0,0,OM1:SA:CTP3388,Europe/Paris,,OM1, +OM1:SP:339,1,"LES FLAMANTS LES IRIS",43.331997,5.403885,0,0,OM1:SA:CTP1151,Europe/Paris,,OM1, +OM1:SP:3396,1,"GARE DE LA POMME",43.290125,5.438763,0,0,OM1:SA:CTP1206,Europe/Paris,,OM1, +OM1:SP:340,1,"MERLAN SAINTE MARTHE",43.330531,5.404213,0,0,OM1:SA:CTP340,Europe/Paris,,OM1, +OM1:SP:341,1,"MUSEE DE LA MOTO",43.328682,5.404065,0,0,OM1:SA:CTP341,Europe/Paris,,OM1, +OM1:SP:3411,1,"EUGENE PIERRE",43.295069,5.389526,0,0,OM1:SA:CTP3411,Europe/Paris,,OM1, +OM1:SP:3413,1,"CAMAS",43.295282,5.393133,0,0,OM1:SA:CTP3413,Europe/Paris,,OM1, +OM1:SP:3414,1,"GEORGE",43.295534,5.397143,0,0,OM1:SA:CTP3414,Europe/Paris,,OM1, +OM1:SP:3415,1,"JEAN MARTIN",43.295807,5.40164,0,0,OM1:SA:CTP3415,Europe/Paris,,OM1, +OM1:SP:3416,1,"LA BLANCARDE",43.296068,5.405809,0,0,OM1:SA:CTP1536,Europe/Paris,,OM1, +OM1:SP:3417,1,"LA BLANCARDE",43.296166,5.405795,0,0,OM1:SA:CTP1536,Europe/Paris,,OM1, +OM1:SP:3419,1,"JEAN MARTIN",43.295906,5.401645,0,0,OM1:SA:CTP3415,Europe/Paris,,OM1, +OM1:SP:342,1,"VILLECROZE LES OLIVIERS",43.328225,5.405605,0,0,OM1:SA:CTP342,Europe/Paris,,OM1, +OM1:SP:3420,1,"GEORGE",43.295618,5.397148,0,0,OM1:SA:CTP3414,Europe/Paris,,OM1, +OM1:SP:3421,1,"CAMAS",43.295381,5.393119,0,0,OM1:SA:CTP3413,Europe/Paris,,OM1, +OM1:SP:343,1,"COLLEGE ROSTAND",43.327306,5.407563,0,0,OM1:SA:CTP343,Europe/Paris,,OM1, +OM1:SP:3430,1,"STADE DES CAILLOLS",43.302935,5.453977,0,0,OM1:SA:CTP2526,Europe/Paris,,OM1, +OM1:SP:344,1,"LES CEDRES",43.326326,5.410061,0,0,OM1:SA:CTP344,Europe/Paris,,OM1, +OM1:SP:345,1,"MARATHON GENETS",43.325859,5.411945,0,0,OM1:SA:CTP345,Europe/Paris,,OM1, +OM1:SP:3452,1,"CADE MOUTON",43.332001,5.392424,0,0,OM1:SA:CTP3452,Europe/Paris,,OM1, +OM1:SP:3459,1,"NOAILLES",43.297233,5.381214,0,0,OM1:SA:CTP2310,Europe/Paris,,OM1, +OM1:SP:346,1,"MARATHON LAVERAN",43.327733,5.413388,0,0,OM1:SA:CTP346,Europe/Paris,,OM1, +OM1:SP:3464,1,"EUGENE PIERRE",43.295223,5.389511,0,0,OM1:SA:CTP3411,Europe/Paris,,OM1, +OM1:SP:347,1,"LAVERAN DIDEROT",43.324999,5.414658,0,0,OM1:SA:CTP347,Europe/Paris,,OM1, +OM1:SP:348,1,"MALPASSE",43.322753,5.412665,0,0,OM1:SA:CTP1108,Europe/Paris,,OM1, +OM1:SP:3486,1,"VALLON DES TUVES",43.367767,5.364883,0,0,OM1:SA:CTP3999,Europe/Paris,,OM1, +OM1:SP:3487,1,"VALLON DES TUVES",43.367954,5.365352,0,0,OM1:SA:CTP3999,Europe/Paris,,OM1, +OM1:SP:3489,1,"LA BLANCARDE",43.29602,5.405993,0,0,OM1:SA:CTP1536,Europe/Paris,,OM1, +OM1:SP:349,1,"METRO MALPASSE",43.320622,5.415803,0,0,OM1:SA:CTP2278,Europe/Paris,,OM1, +OM1:SP:3490,1,"LOUIS ARMAND",43.299781,5.413396,0,0,OM1:SA:CTP3490,Europe/Paris,,OM1, +OM1:SP:3491,1,"SAINT BARNABE",43.303513,5.418711,0,0,OM1:SA:CTP3491,Europe/Paris,,OM1, +OM1:SP:3493,1,"LA FOURRAGERE",43.303816,5.423098,0,0,OM1:SA:CTP3493,Europe/Paris,,OM1, +OM1:SP:3494,1,"SAINT BARNABE",43.303467,5.418708,0,0,OM1:SA:CTP3491,Europe/Paris,,OM1, +OM1:SP:3495,1,"LOUIS ARMAND",43.299754,5.413396,0,0,OM1:SA:CTP3490,Europe/Paris,,OM1, +OM1:SP:3496,1,"LA BLANCARDE",43.296006,5.406005,0,0,OM1:SA:CTP1536,Europe/Paris,,OM1, +OM1:SP:3498,1,"ANSALDI LA JAVIE",43.33412,5.40244,0,0,OM1:SA:CTP3498,Europe/Paris,,OM1, +OM1:SP:35,1,"SAINT ANDRE",43.356672,5.343325,0,0,OM1:SA:CTP17,Europe/Paris,,OM1, +OM1:SP:350,1,"MALPASSE",43.323106,5.413559,0,0,OM1:SA:CTP1108,Europe/Paris,,OM1, +OM1:SP:351,1,"LAVERAN DIDEROT",43.325353,5.414541,0,0,OM1:SA:CTP347,Europe/Paris,,OM1, +OM1:SP:3515,1,"METRO LA TIMONE",43.290986,5.399667,0,0,OM1:SA:CTP2303,Europe/Paris,,OM1, +OM1:SP:3519,1,"ST-MENET BUZINE",43.293546,5.494484,0,0,OM1:SA:CTP3519,Europe/Paris,,OM1, +OM1:SP:352,1,"MARATHON LAVERAN",43.327855,5.413198,0,0,OM1:SA:CTP346,Europe/Paris,,OM1, +OM1:SP:3521,1,"ST-MENET BUZINE",43.293245,5.493946,0,0,OM1:SA:CTP3519,Europe/Paris,,OM1, +OM1:SP:3522,1,"ST-MENET POMPIERS",43.289924,5.494177,0,0,OM1:SA:CTP3522,Europe/Paris,,OM1, +OM1:SP:3523,1,"ST-MENET VILLAGE",43.288488,5.499227,0,0,OM1:SA:CTP3523,Europe/Paris,,OM1, +OM1:SP:3524,1,"LA REYNARDE",43.287653,5.506181,0,0,OM1:SA:CTP3524,Europe/Paris,,OM1, +OM1:SP:3525,1,"ST-MENET VILLAGE",43.288706,5.499348,0,0,OM1:SA:CTP3523,Europe/Paris,,OM1, +OM1:SP:3526,1,"ST-MENET POMPIERS",43.290191,5.4943,0,0,OM1:SA:CTP3522,Europe/Paris,,OM1, +OM1:SP:3527,1,"FOCH CINQ AVENUES",43.302064,5.397686,0,0,OM1:SA:CTP3133,Europe/Paris,,OM1, +OM1:SP:3529,1,"VAILLANT AUPHAN",43.316936,5.377593,0,0,OM1:SA:CTP3529,Europe/Paris,,OM1, +OM1:SP:353,1,"MARATHON GENETS",43.325979,5.411816,0,0,OM1:SA:CTP345,Europe/Paris,,OM1, +OM1:SP:3530,1,"ECOLE VAILLANT",43.315536,5.379989,0,0,OM1:SA:CTP3530,Europe/Paris,,OM1, +OM1:SP:3531,1,"BARBINI BELLEVUE",43.314092,5.379977,0,0,OM1:SA:CTP3531,Europe/Paris,,OM1, +OM1:SP:3532,1,"BARBINI LOUBON",43.313017,5.382677,0,0,OM1:SA:CTP221,Europe/Paris,,OM1, +OM1:SP:3533,1,"PLACE CADENAT",43.311769,5.387516,0,0,OM1:SA:CTP3533,Europe/Paris,,OM1, +OM1:SP:3534,1,"COLLEGE ST-CHARLES",43.31357,5.386114,0,0,OM1:SA:CTP3534,Europe/Paris,,OM1, +OM1:SP:3535,1,"BELLE VUE LOUBON",43.312597,5.380093,0,0,OM1:SA:CTP3535,Europe/Paris,,OM1, +OM1:SP:3536,1,"BELLE VUE SOLFERINO",43.314374,5.380101,0,0,OM1:SA:CTP3536,Europe/Paris,,OM1, +OM1:SP:3537,1,"ECOLE VAILLANT",43.315725,5.380042,0,0,OM1:SA:CTP3530,Europe/Paris,,OM1, +OM1:SP:354,1,"LES CEDRES",43.326557,5.410147,0,0,OM1:SA:CTP344,Europe/Paris,,OM1, +OM1:SP:355,1,"COLLEGE ROSTAND",43.327344,5.407787,0,0,OM1:SA:CTP343,Europe/Paris,,OM1, +OM1:SP:3554,1,"ARENC LE SILO",43.312283,5.368678,0,0,OM1:SA:CTP3554,Europe/Paris,,OM1, +OM1:SP:3556,1,"ARENC LE SILO",43.312287,5.368734,0,0,OM1:SA:CTP3554,Europe/Paris,,OM1, +OM1:SP:3558,1,"METRO FOURRAGERE",43.303962,5.423375,0,0,OM1:SA:CTP3558,Europe/Paris,,OM1, +OM1:SP:356,1,"VILLECROZE LES OLIVIERS",43.328441,5.405579,0,0,OM1:SA:CTP342,Europe/Paris,,OM1, +OM1:SP:3561,1,"PICHOU LUZZATTI",43.365303,5.310707,0,0,OM1:SA:CTP3561,Europe/Paris,,OM1, +OM1:SP:3562,1,"PICHOU MIRAMARE",43.366224,5.312475,0,0,OM1:SA:CTP3562,Europe/Paris,,OM1, +OM1:SP:3563,1,"PICHOU VILLA BELLEVUE",43.367276,5.312251,0,0,OM1:SA:CTP3563,Europe/Paris,,OM1, +OM1:SP:3564,1,"CAMPAGNE BLEUE",43.370339,5.308133,0,0,OM1:SA:CTP3564,Europe/Paris,,OM1, +OM1:SP:3565,1,"CEZANNE PICHOU",43.368382,5.311109,0,0,OM1:SA:CTP3565,Europe/Paris,,OM1, +OM1:SP:3566,1,"CEZANNE MARINIER",43.368452,5.313379,0,0,OM1:SA:CTP3566,Europe/Paris,,OM1, +OM1:SP:3567,1,"LE MARINIER",43.368995,5.314146,0,0,OM1:SA:CTP3567,Europe/Paris,,OM1, +OM1:SP:3568,1,"MARINIER BELVEDERE",43.370364,5.313248,0,0,OM1:SA:CTP3568,Europe/Paris,,OM1, +OM1:SP:3569,1,"ROCHERS DE L'ESTAQUE",43.37369,5.310233,0,0,OM1:SA:CTP3569,Europe/Paris,,OM1, +OM1:SP:357,1,"MUSEE DE LA MOTO",43.32919,5.403919,0,0,OM1:SA:CTP341,Europe/Paris,,OM1, +OM1:SP:3570,1,"MARINIER BELVEDERE",43.370342,5.313101,0,0,OM1:SA:CTP3568,Europe/Paris,,OM1, +OM1:SP:3571,1,"LE MARINIER",43.368936,5.313877,0,0,OM1:SA:CTP3567,Europe/Paris,,OM1, +OM1:SP:3572,1,"MARINIER GROTTE",43.365819,5.314247,0,0,OM1:SA:CTP3572,Europe/Paris,,OM1, +OM1:SP:3573,1,"PICHOU GALINETTE",43.364541,5.310377,0,0,OM1:SA:CTP3573,Europe/Paris,,OM1, +OM1:SP:3574,1,"ESTAQUE GARE",43.36242,5.318325,0,0,OM1:SA:CTP3574,Europe/Paris,,OM1, +OM1:SP:358,1,"MERLAN SAINTE MARTHE",43.330986,5.404323,0,0,OM1:SA:CTP340,Europe/Paris,,OM1, +OM1:SP:3580,1,"LA VALENTELLE",43.29683,5.475945,0,0,OM1:SA:CTP2457,Europe/Paris,,OM1, +OM1:SP:3582,1,"LA VALENTINE CENTRE COMMERCIAL",43.294116,5.475526,0,0,OM1:SA:CTP1382,Europe/Paris,,OM1, +OM1:SP:3583,1,"3 FRERES BARTHELEMY",43.292493,5.384189,0,0,OM1:SA:CTP1521,Europe/Paris,,OM1, +OM1:SP:3585,1,"METRO ROND-POINT DU PRADO",43.271004,5.392101,0,0,OM1:SA:CTP3585,Europe/Paris,,OM1, +OM1:SP:3589,1,"COMPLEXE SPORTIF",43.320112,5.468891,0,0,OM1:SA:CTP3589,Europe/Paris,,OM1, +OM1:SP:359,1,"LES FLAMANTS LES IRIS",43.332216,5.403465,0,0,OM1:SA:CTP1151,Europe/Paris,,OM1, +OM1:SP:3590,1,"ENCO DE BOTTE",43.323382,5.478081,0,0,OM1:SA:CTP3590,Europe/Paris,,OM1, +OM1:SP:3591,1,"PROVENCE AUBAGNENS",43.326897,5.482659,0,0,OM1:SA:CTP3591,Europe/Paris,,OM1, +OM1:SP:3592,1,"GUERIDON",43.331277,5.486461,0,0,OM1:SA:CTP3592,Europe/Paris,,OM1, +OM1:SP:3593,1,"LA CRAIE",43.330772,5.488518,0,0,OM1:SA:CTP3593,Europe/Paris,,OM1, +OM1:SP:3594,1,"SAINT JEAN",43.324323,5.492006,0,0,OM1:SA:CTP3594,Europe/Paris,,OM1, +OM1:SP:3595,1,"BARBARAOU",43.321984,5.49279,0,0,OM7:SA:CTP5023510,Europe/Paris,,OM1, +OM1:SP:3596,1,"A LURIMA",43.325554,5.49194,0,0,OM1:SA:CTP3596,Europe/Paris,,OM1, +OM1:SP:3597,1,"LA CRAIE",43.330809,5.488867,0,0,OM1:SA:CTP3593,Europe/Paris,,OM1, +OM1:SP:3598,1,"GUERIDON",43.331931,5.486887,0,0,OM1:SA:CTP3592,Europe/Paris,,OM1, +OM1:SP:3599,1,"PROVENCE AUBAGNENS",43.32748,5.4823,0,0,OM1:SA:CTP3591,Europe/Paris,,OM1, +OM1:SP:36,1,"SAINT ANDRE P.N",43.355847,5.345524,0,0,OM1:SA:CTP16,Europe/Paris,,OM1, +OM1:SP:360,1,"BRAQUE LES FLAMANTS",43.33284,5.401441,0,0,OM1:SA:CTP338,Europe/Paris,,OM1, +OM1:SP:3600,1,"LES EMBUS",43.324292,5.480605,0,0,OM7:SA:CTP5023543,Europe/Paris,,OM1, +OM1:SP:3601,1,"COMPLEXE SPORTIF",43.320114,5.468261,0,0,OM1:SA:CTP3589,Europe/Paris,,OM1, +OM1:SP:3603,1,"SADI CARNOT",43.297535,5.372941,0,0,OM1:SA:CTP3603,Europe/Paris,,OM1, +OM1:SP:361,1,"COLLEGE EDOUARD MANET",43.333999,5.398621,0,0,OM1:SA:CTP337,Europe/Paris,,OM1, +OM1:SP:3610,1,"EUROMED ARENC",43.312762,5.368449,0,0,OM1:SA:CTP3610,Europe/Paris,,OM1, +OM1:SP:3612,1,"LA PANOUSE",43.256094,5.428171,0,0,OM1:SA:CTP3612,Europe/Paris,,OM1, +OM1:SP:3614,1,"LA PANOUSE BELLE FONTAINE",43.257001,5.422463,0,0,OM1:SA:CTP3614,Europe/Paris,,OM1, +OM1:SP:3615,1,"LA PANOUSE BELLE FONTAINE",43.25713,5.421963,0,0,OM1:SA:CTP3614,Europe/Paris,,OM1, +OM1:SP:3616,1,"LA PANOUSE BOUGAINVILLIERS",43.256921,5.424888,0,0,OM1:SA:CTP3616,Europe/Paris,,OM1, +OM1:SP:3617,1,"LA PANOUSE BOUGAINVILLIERS",43.257125,5.424877,0,0,OM1:SA:CTP3616,Europe/Paris,,OM1, +OM1:SP:362,1,"JOURDAN LE MAIL",43.333274,5.3982,0,0,OM1:SA:CTP336,Europe/Paris,,OM1, +OM1:SP:3621,1,"METRO FOURRAGERE",43.303892,5.423388,0,0,OM1:SA:CTP3558,Europe/Paris,,OM1, +OM1:SP:3623,1,"VALMANTE",43.250554,5.416741,0,0,OM1:SA:CTP1962,Europe/Paris,,OM1, +OM1:SP:3625,1,"L'OUVIERE",43.327915,5.490206,0,0,OM1:SA:CTP3625,Europe/Paris,,OM1, +OM1:SP:3626,1,"L'OUVIERE",43.32801,5.490711,0,0,OM1:SA:CTP3625,Europe/Paris,,OM1, +OM1:SP:3628,1,"AIGUIER LA GAYE",43.254904,5.406817,0,0,OM1:SA:CTP3628,Europe/Paris,,OM1, +OM1:SP:363,1,"JOURDAN CRECHE",43.333786,5.395665,0,0,OM1:SA:CTP335,Europe/Paris,,OM1, +OM1:SP:3630,1,"AIGUIER LA GAYE",43.255168,5.407004,0,0,OM1:SA:CTP3628,Europe/Paris,,OM1, +OM1:SP:3633,1,"PLATEAU DE LA CROIX ROUGE",43.337085,5.444383,0,0,OM1:SA:CTP3633,Europe/Paris,,OM1, +OM1:SP:3642,1,"DE ROUX CREMIEUX",43.338174,5.448717,0,0,OM1:SA:CTP3642,Europe/Paris,,OM1, +OM1:SP:3643,1,"DE ROUX GARLABAN",43.337636,5.446495,0,0,OM1:SA:CTP3643,Europe/Paris,,OM1, +OM1:SP:3644,1,"DE ROUX GARLABAN",43.337615,5.446605,0,0,OM1:SA:CTP3643,Europe/Paris,,OM1, +OM1:SP:3645,1,"DE ROUX CREMIEUX",43.338129,5.448715,0,0,OM1:SA:CTP3642,Europe/Paris,,OM1, +OM1:SP:365,1,"GIBBES CALVET",43.332015,5.386799,0,0,OM1:SA:CTP365,Europe/Paris,,OM1, +OM1:SP:3652,1,"GAYE HOPITAL STE-MARGUERITE",43.257922,5.408748,0,0,OM1:SA:CTP3652,Europe/Paris,,OM1, +OM1:SP:3654,1,"KEYNES LANGEVIN",43.343148,5.432318,0,0,OM1:SA:CTP3654,Europe/Paris,,OM1, +OM1:SP:3657,1,"ROUSSIN MAURRAS",43.355753,5.337933,0,0,OM1:SA:CTP3657,Europe/Paris,,OM1, +OM1:SP:3658,1,"ROUSSIN LABRO",43.353617,5.337811,0,0,OM1:SA:CTP3658,Europe/Paris,,OM1, +OM1:SP:3659,1,"ROUSSIN MAURRAS",43.355868,5.338308,0,0,OM1:SA:CTP3657,Europe/Paris,,OM1, +OM1:SP:366,1,"MIN GIBBES",43.337567,5.385086,0,0,OM1:SA:CTP331,Europe/Paris,,OM1, +OM1:SP:3661,1,"KEYNES LANGEVIN",43.342929,5.432446,0,0,OM1:SA:CTP3654,Europe/Paris,,OM1, +OM1:SP:367,1,"MIN ARNAVAUX",43.338779,5.382588,0,0,OM1:SA:CTP330,Europe/Paris,,OM1, +OM1:SP:3670,1,"CATALANS",43.288927,5.354865,0,0,OM1:SA:CTP1398,Europe/Paris,,OM1, +OM1:SP:3672,1,"SAINT HENRI CHAINE",43.3567,5.334309,0,0,OM1:SA:CTP2816,Europe/Paris,,OM1, +OM1:SP:3674,1,"ROUSSIN PICARON",43.358291,5.337971,0,0,OM1:SA:CTP2631,Europe/Paris,,OM1, +OM1:SP:3677,1,"GUEY ST JULIEN",43.306195,5.422082,0,0,OM1:SA:CTP3677,Europe/Paris,,OM1, +OM1:SP:3678,1,"LYCEE L'OLIVIER",43.305464,5.425458,0,0,OM1:SA:CTP3678,Europe/Paris,,OM1, +OM1:SP:3679,1,"LYCEE L'OLIVIER",43.305456,5.425747,0,0,OM1:SA:CTP3678,Europe/Paris,,OM1, +OM1:SP:368,1,"MIN BOLIVAR",43.340896,5.378031,0,0,OM1:SA:CTP329,Europe/Paris,,OM1, +OM1:SP:3680,1,"GUEY ST JULIEN",43.306448,5.422096,0,0,OM1:SA:CTP3677,Europe/Paris,,OM1, +OM1:SP:3682,1,"METRO LA FOURRAGERE",43.304004,5.42372,0,0,OM1:SA:CTP3682,Europe/Paris,,OM1, +OM1:SP:3688,1,"TRAVERSE DE LA BUZINE",43.294126,5.497223,0,0,OM1:SA:CTP3688,Europe/Paris,,OM1, +OM1:SP:3689,1,"CHATEAU DE LA BUZINE",43.295812,5.502236,0,0,OM1:SA:CTP3689,Europe/Paris,,OM1, +OM1:SP:369,1,"CASTORS DE SERVIERES",43.342175,5.372838,0,0,OM1:SA:CTP369,Europe/Paris,,OM1, +OM1:SP:3691,1,"COLLEGE LE RUISSATEL",43.295832,5.487866,0,0,OM7:SA:CTP5000062,Europe/Paris,,OM1, +OM1:SP:3693,1,"FLORALIA",43.241118,5.394215,0,0,OM1:SA:CTP3693,Europe/Paris,,OM1, +OM1:SP:3694,1,"COLLEGE ROY D'ESPAGNE",43.241487,5.39674,0,0,OM1:SA:CTP3694,Europe/Paris,,OM1, +OM1:SP:3695,1,"COLLEGE ROY D'ESPAGNE",43.241741,5.396702,0,0,OM1:SA:CTP3694,Europe/Paris,,OM1, +OM1:SP:3696,1,"FLORALIA",43.241506,5.394505,0,0,OM1:SA:CTP3693,Europe/Paris,,OM1, +OM1:SP:3698,1,"GUIBAL CAVAIGNAC",43.306249,5.385286,0,0,OM1:SA:CTP3708,Europe/Paris,,OM1, +OM1:SP:3699,1,"ARCHIVES MUNICIPALES",43.308226,5.387784,0,0,OM1:SA:CTP3699,Europe/Paris,,OM1, +OM1:SP:37,1,"ROVE TUILERIES",43.354478,5.350727,0,0,OM1:SA:CTP15,Europe/Paris,,OM1, +OM1:SP:370,1,"CITE BASSENS",43.338674,5.372936,0,0,OM1:SA:CTP328,Europe/Paris,,OM1, +OM1:SP:3707,1,"POLE MEDIA",43.308519,5.388795,0,0,OM1:SA:CTP3707,Europe/Paris,,OM1, +OM1:SP:3708,1,"GUIBAL CAVAIGNAC",43.306395,5.385101,0,0,OM1:SA:CTP3708,Europe/Paris,,OM1, +OM1:SP:371,1,"AMPERE GAY LUSSAC",43.335628,5.374462,0,0,OM1:SA:CTP327,Europe/Paris,,OM1, +OM1:SP:3712,1,"BONNEFOY PALAIS OMNISPORTS",43.281669,5.402116,0,0,OM1:SA:CTP3712,Europe/Paris,,OM1, +OM1:SP:3713,1,"BONNEFOY PALAIS OMNISPORTS",43.281494,5.402299,0,0,OM1:SA:CTP3712,Europe/Paris,,OM1, +OM1:SP:3714,1,"NOAILLES",43.297353,5.380797,0,0,OM1:SA:CTP2310,Europe/Paris,,OM1, +OM1:SP:3716,1,"DUPARC ROCHE",43.309244,5.402638,0,0,OM1:SA:CTP3716,Europe/Paris,,OM1, +OM1:SP:3718,1,"METRO ROND POINT DU PRADO",43.271869,5.390192,0,0,OM1:SA:CTP1083,Europe/Paris,,OM1, +OM1:SP:372,1,"GAY LUSSAC",43.334124,5.37453,0,0,OM1:SA:CTP326,Europe/Paris,,OM1, +OM1:SP:3720,1,"LES MAZETS",43.391916,5.364498,0,0,OM1:SA:CTP3051,Europe/Paris,,OM1, +OM1:SP:3724,1,"REPUBLIQUE DAMES",43.301887,5.369709,0,0,OM1:SA:CTP3210,Europe/Paris,,OM1, +OM1:SP:3726,1,"METRO STE MARGUERITE DROMEL",43.271346,5.403743,0,0,OM1:SA:CTP1619,Europe/Paris,,OM1, +OM1:SP:3728,1,"CAPITAINERIE",43.295282,5.364942,0,0,OM1:SA:CTP2050,Europe/Paris,,OM1, +OM1:SP:373,1,"HLM LE CANET",43.331037,5.374625,0,0,OM1:SA:CTP325,Europe/Paris,,OM1, +OM1:SP:3731,1,"BARNIER GIROUD",43.367196,5.343897,0,0,OM1:SA:CTP2549,Europe/Paris,,OM1, +OM1:SP:3734,1,"ROUX BEAUSOLEIL",43.307981,5.409347,0,0,OM1:SA:CTP2136,Europe/Paris,,OM1, +OM1:SP:3736,1,"BARBINI BELLEVUE",43.314677,5.379928,0,0,OM1:SA:CTP3531,Europe/Paris,,OM1, +OM1:SP:3737,1,"VAUFREGES",43.249609,5.445493,0,0,OM1:SA:CTP1794,Europe/Paris,,OM1, +OM1:SP:3739,1,"GAVOTY GILLET",43.312078,5.414167,0,0,OM1:SA:CTP3739,Europe/Paris,,OM1, +OM1:SP:374,1,"CASANOVA CANET",43.328991,5.374788,0,0,OM1:SA:CTP323,Europe/Paris,,OM1, +OM1:SP:3740,1,"GAROUTTE GAVOTY",43.308718,5.413571,0,0,OM1:SA:CTP2827,Europe/Paris,,OM1, +OM1:SP:3741,1,"ALPES MERLE",43.302724,5.414965,0,0,OM1:SA:CTP2724,Europe/Paris,,OM1, +OM1:SP:3743,1,"ELZEARD ROUGIER",43.309204,5.412589,0,0,OM1:SA:CTP3743,Europe/Paris,,OM1, +OM1:SP:3745,1,"PLACE DU 4 SEPTEMBRE",43.288938,5.358661,0,0,OM1:SA:CTP1400,Europe/Paris,,OM1, +OM1:SP:3746,1,"PLACE DU 4 SEPTEMBRE",43.289032,5.359518,0,0,OM1:SA:CTP1400,Europe/Paris,,OM1, +OM1:SP:375,1,"PLACE DES ETATS UNIS",43.32695,5.374766,0,0,OM1:SA:CTP142,Europe/Paris,,OM1, +OM1:SP:3750,1,"LIBERTE LAFAYETTE",43.30068,5.381181,0,0,OM1:SA:CTP3750,Europe/Paris,,OM1, +OM1:SP:3751,1,"HONNORAT CRIMEE",43.304956,5.382754,0,0,OM1:SA:CTP3751,Europe/Paris,,OM1, +OM1:SP:3756,1,"CANEBIERE VIEUX PORT",43.295621,5.375201,0,0,OM1:SA:CTP3313,Europe/Paris,,OM1, +OM1:SP:3762,1,"METRO SAINT BARNABE",43.303674,5.419331,0,0,OM1:SA:CTP3762,Europe/Paris,,OM1, +OM1:SP:3767,1,"MIRABEAU RUFFI",43.314325,5.369393,0,0,OM1:SA:CTP3767,Europe/Paris,,OM1, +OM1:SP:3768,1,"PARIS GUINOT",43.309691,5.370168,0,0,OM1:SA:CTP3768,Europe/Paris,,OM1, +OM1:SP:377,1,"NATIONAL PYAT",43.312274,5.376378,0,0,OM1:SA:CTP377,Europe/Paris,,OM1, +OM1:SP:3772,1,"LUMINY",43.23133,5.436914,0,0,OM1:SA:CTP1770,Europe/Paris,,OM1, +OM1:SP:3773,1,"CASTELLANE",43.284959,5.384103,0,0,OM1:SA:CTP1091,Europe/Paris,,OM1, +OM1:SP:3774,1,"PARADIS ARMENY",43.290939,5.377948,0,0,OM1:SA:CTP3774,Europe/Paris,,OM1, +OM1:SP:3775,1,"PARADIS DAVSO",43.293425,5.376933,0,0,OM1:SA:CTP3775,Europe/Paris,,OM1, +OM1:SP:3776,1,"PARADIS CANEBIERE",43.294333,5.376495,0,0,OM1:SA:CTP3776,Europe/Paris,,OM1, +OM1:SP:379,1,"NEDELEC LECLERC",43.302988,5.378164,0,0,OM1:SA:CTP379,Europe/Paris,,OM1, +OM1:SP:3790,1,"JOLIETTE",43.305091,5.366655,0,0,OM1:SA:CTP3790,Europe/Paris,,OM1, +OM1:SP:3793,1,"LE SILO",43.310954,5.367336,0,0,OM1:SA:CTP283,Europe/Paris,,OM1, +OM1:SP:3795,1,"MIRABEAU ARENC",43.314158,5.366043,0,0,OM1:SA:CTP3795,Europe/Paris,,OM1, +OM1:SP:3799,1,"CANEBIERE VIEUX PORT",43.2954,5.375184,0,0,OM1:SA:CTP3313,Europe/Paris,,OM1, +OM1:SP:38,1,"CITE SAINT LOUIS",43.351194,5.354005,0,0,OM1:SA:CTP14,Europe/Paris,,OM1, +OM1:SP:380,1,"NEDELEC GUESDE",43.302391,5.376692,0,0,OM1:SA:CTP380,Europe/Paris,,OM1, +OM1:SP:3801,1,"METRO VIEUX PORT",43.294922,5.374316,0,0,OM1:SA:CTP2285,Europe/Paris,,OM1, +OM1:SP:3802,1,"METRO VIEUX PORT",43.294958,5.374309,0,0,OM1:SA:CTP2285,Europe/Paris,,OM1, +OM1:SP:3803,1,"JOLIETTE",43.304688,5.366125,0,0,OM1:SA:CTP3790,Europe/Paris,,OM1, +OM1:SP:3804,1,"METRO VIEUX PORT",43.295592,5.373852,0,0,OM1:SA:CTP2285,Europe/Paris,,OM1, +OM1:SP:3806,1,"METRO VIEUX PORT",43.294552,5.37412,0,0,OM1:SA:CTP2285,Europe/Paris,,OM1, +OM1:SP:3809,1,"PLACE BARGEMON",43.297663,5.369591,0,0,OM1:SA:CTP3809,Europe/Paris,,OM1, +OM1:SP:381,1,"METRO COLBERT HOTEL DE REGION",43.30022,5.374299,0,0,OM1:SA:CTP381,Europe/Paris,,OM1, +OM1:SP:3811,1,"COLLEGE IZZO",43.306503,5.369005,0,0,OM1:SA:CTP3811,Europe/Paris,,OM1, +OM1:SP:3813,1,"BENEDIT",43.307135,5.392461,0,0,OM1:SA:CTP3813,Europe/Paris,,OM1, +OM1:SP:3815,1,"LE PHARO",43.292122,5.359111,0,0,OM1:SA:CTP1557,Europe/Paris,,OM1, +OM1:SP:3816,1,"PHARO CATALANS",43.291981,5.356816,0,0,OM1:SA:CTP3816,Europe/Paris,,OM1, +OM1:SP:3818,1,"MUCEM SAINT JEAN",43.296497,5.362904,0,0,OM1:SA:CTP3828,Europe/Paris,,OM1, +OM1:SP:3819,1,"LA MAJOR",43.299027,5.363581,0,0,OM1:SA:CTP3819,Europe/Paris,,OM1, +OM1:SP:3820,1,"GARE MARITIME INTERNATIONALE",43.300954,5.364336,0,0,OM1:SA:CTP3820,Europe/Paris,,OM1, +OM1:SP:3821,1,"HANGAR J1",43.303105,5.364988,0,0,OM1:SA:CTP3821,Europe/Paris,,OM1, +OM1:SP:3822,1,"EUROMED ARENC",43.312997,5.368588,0,0,OM1:SA:CTP3610,Europe/Paris,,OM1, +OM1:SP:3823,1,"FRAC",43.305519,5.367976,0,0,OM1:SA:CTP3823,Europe/Paris,,OM1, +OM1:SP:3824,1,"JOLIETTE",43.305222,5.36574,0,0,OM1:SA:CTP3790,Europe/Paris,,OM1, +OM1:SP:3825,1,"HANGAR J1",43.303564,5.364904,0,0,OM1:SA:CTP3821,Europe/Paris,,OM1, +OM1:SP:3826,1,"GARE MARITIME INTERNATIONALE",43.301239,5.364225,0,0,OM1:SA:CTP3820,Europe/Paris,,OM1, +OM1:SP:3827,1,"LA MAJOR",43.299012,5.363421,0,0,OM1:SA:CTP3819,Europe/Paris,,OM1, +OM1:SP:3828,1,"MUCEM SAINT JEAN",43.296337,5.362613,0,0,OM1:SA:CTP3828,Europe/Paris,,OM1, +OM1:SP:3829,1,"PLACE BARGEMON",43.29761,5.36968,0,0,OM1:SA:CTP3809,Europe/Paris,,OM1, +OM1:SP:383,1,"CANEBIERE BOURSE",43.29653,5.376002,0,0,OM1:SA:CTP1058,Europe/Paris,,OM1, +OM1:SP:3830,1,"BONNETERIE",43.296758,5.371592,0,0,OM1:SA:CTP3830,Europe/Paris,,OM1, +OM1:SP:3831,1,"PLACE DE LENCHE",43.296302,5.365922,0,0,OM1:SA:CTP3831,Europe/Paris,,OM1, +OM1:SP:3832,1,"CAISSERIE BEAUREGARD",43.296882,5.367666,0,0,OM1:SA:CTP3832,Europe/Paris,,OM1, +OM1:SP:3833,1,"DAMES SCHUMAN",43.302868,5.366978,0,0,OM1:SA:CTP3833,Europe/Paris,,OM1, +OM1:SP:3835,1,"METRO JULES GUESDE",43.301425,5.373796,0,0,OM1:SA:CTP420,Europe/Paris,,OM1, +OM1:SP:3836,1,"FACULTE ST CHARLES",43.304367,5.378539,0,0,OM1:SA:CTP3836,Europe/Paris,,OM1, +OM1:SP:3837,1,"GARE ST CHARLES",43.303927,5.379993,0,0,OM1:SA:CTP3837,Europe/Paris,,OM1, +OM1:SP:3838,1,"BENEDIT",43.307159,5.392641,0,0,OM1:SA:CTP3813,Europe/Paris,,OM1, +OM1:SP:3840,1,"METRO JULES GUESDE",43.301707,5.37349,0,0,OM1:SA:CTP420,Europe/Paris,,OM1, +OM1:SP:3841,1,"DAMES REPUBLIQUE",43.302797,5.368322,0,0,OM1:SA:CTP445,Europe/Paris,,OM1, +OM1:SP:3842,1,"HANGAR J1",43.303434,5.365358,0,0,OM1:SA:CTP3821,Europe/Paris,,OM1, +OM1:SP:3843,1,"JOLIETTE",43.304595,5.366743,0,0,OM1:SA:CTP3790,Europe/Paris,,OM1, +OM1:SP:3847,1,"FORT NOTRE DAME",43.292312,5.371599,0,0,OM1:SA:CTP3847,Europe/Paris,,OM1, +OM1:SP:3850,1,"METRO JOLIETTE",43.304285,5.367697,0,0,OM1:SA:CTP3850,Europe/Paris,,OM1, +OM1:SP:3852,1,"SADI CARNOT",43.300148,5.371126,0,0,OM1:SA:CTP3211,Europe/Paris,,OM1, +OM1:SP:3858,1,"ROSIERE FOURNIER",43.305766,5.435372,0,0,OM1:SA:CTP3858,Europe/Paris,,OM1, +OM1:SP:386,1,"PREFECTURE",43.290085,5.379413,0,0,OM1:SA:CTP386,Europe/Paris,,OM1, +OM1:SP:3861,1,"STADE VALLIER",43.300267,5.400586,0,0,OM1:SA:CTP2019,Europe/Paris,,OM1, +OM1:SP:3862,1,"PLACE SEBASTOPOL",43.29977,5.39796,0,0,OM1:SA:CTP1552,Europe/Paris,,OM1, +OM1:SP:3863,1,"LA ROUVIERE",43.252431,5.422622,0,0,OM1:SA:CTP1897,Europe/Paris,,OM1, +OM1:SP:3864,1,"LONGCHAMP",43.304132,5.393028,0,0,OM1:SA:CTP3221,Europe/Paris,,OM1, +OM1:SP:3865,1,"LONGCHAMP",43.304159,5.393262,0,0,OM1:SA:CTP3221,Europe/Paris,,OM1, +OM1:SP:3866,1,"BELLE DE MAI LA FRICHE",43.309872,5.390082,0,0,OM1:SA:CTP431,Europe/Paris,,OM1, +OM1:SP:3869,1,"KADDOUZ ST JULIEN",43.307841,5.425701,0,0,OM1:SA:CTP3869,Europe/Paris,,OM1, +OM1:SP:3870,1,"KADDOUZ ST JULIEN",43.307881,5.42542,0,0,OM1:SA:CTP3869,Europe/Paris,,OM1, +OM1:SP:3872,1,"LUMINY",43.230987,5.437081,0,0,OM1:SA:CTP1770,Europe/Paris,,OM1, +OM1:SP:3874,1,"BARA VAL DE GRAY",43.348968,5.445187,0,0,OM1:SA:CTP3874,Europe/Paris,,OM1, +OM1:SP:3875,1,"BARA VAL DE GRAY",43.348837,5.445114,0,0,OM1:SA:CTP3874,Europe/Paris,,OM1, +OM1:SP:3877,1,"MUCEM SAINT JEAN",43.296897,5.363104,0,0,OM1:SA:CTP3828,Europe/Paris,,OM1, +OM1:SP:388,1,"CASTELLANE",43.286367,5.383377,0,0,OM1:SA:CTP1091,Europe/Paris,,OM1, +OM1:SP:3883,1,"PLAN D'AOU",43.368685,5.353372,0,0,OM1:SA:CTP3883,Europe/Paris,,OM1, +OM1:SP:3890,1,"FENOUIL LE PELLETIER",43.36242,5.320784,0,0,OM1:SA:CTP3890,Europe/Paris,,OM1, +OM1:SP:3891,1,"FENOUIL ECOLES",43.360623,5.320226,0,0,OM1:SA:CTP2109,Europe/Paris,,OM1, +OM1:SP:3892,1,"FENOUIL CERISIER",43.358984,5.319663,0,0,OM1:SA:CTP3892,Europe/Paris,,OM1, +OM1:SP:3893,1,"FENOUIL LE PELLETIER",43.362344,5.320671,0,0,OM1:SA:CTP3890,Europe/Paris,,OM1, +OM1:SP:3894,1,"FENOUIL CERISIER",43.359013,5.319544,0,0,OM1:SA:CTP3892,Europe/Paris,,OM1, +OM1:SP:3895,1,"ESTAQUE PORT",43.36003,5.315253,0,0,OM1:SA:CTP257,Europe/Paris,,OM1, +OM1:SP:3898,1,"LACHAMP AUGIER",43.24824,5.437286,0,0,OM5:SA:CTP4029119,Europe/Paris,,OM1, +OM1:SP:3899,1,"LACHAMP AUGIER",43.248408,5.436969,0,0,OM5:SA:CTP4029119,Europe/Paris,,OM1, +OM1:SP:3900,1,"LACHAMP LUMINY",43.247179,5.435152,0,0,OM1:SA:CTP1792,Europe/Paris,,OM1, +OM1:SP:3902,1,"GARE SAINT CHARLES",43.30167,5.38136,0,0,OM1:SA:CTP3354,Europe/Paris,,OM1, +OM1:SP:3903,1,"GARE SAINT CHARLES",43.301726,5.381342,0,0,OM1:SA:CTP3354,Europe/Paris,,OM1, +OM1:SP:3907,1,"LIBERTÉ SEMBAT",43.30152,5.3834,0,0,OM1:SA:CTP227,Europe/Paris,,OM1, +OM1:SP:3910,1,"AYGALADES GEZE",43.330102,5.366872,0,0,OM1:SA:CTP3910,Europe/Paris,,OM1, +OM1:SP:3912,1,"ITALIE BERLIOZ",43.289012,5.382802,0,0,OM1:SA:CTP3912,Europe/Paris,,OM1, +OM1:SP:3913,1,"ITALIE SALVATOR",43.290577,5.381694,0,0,OM1:SA:CTP3913,Europe/Paris,,OM1, +OM1:SP:3915,1,"PREFECTURE",43.290139,5.3791,0,0,OM1:SA:CTP386,Europe/Paris,,OM1, +OM1:SP:3917,1,"HOPITAL EUROPEEN",43.309868,5.373623,0,0,OM1:SA:CTP3917,Europe/Paris,,OM1, +OM1:SP:3922,1,"L’ESCALLET",43.352922,5.415898,0,0,OM1:SA:CTP1043,Europe/Paris,,OM1, +OM1:SP:3924,1,"CHEMIN DES GRIVES",43.351721,5.415119,0,0,OM1:SA:CTP1035,Europe/Paris,,OM1, +OM1:SP:3926,1,"BLIDAH ST LAZARE",43.30507,5.374698,0,0,OM1:SA:CTP3926,Europe/Paris,,OM1, +OM1:SP:3927,1,"LES OLIVIERS",43.330542,5.412332,0,0,OM1:SA:CTP3927,Europe/Paris,,OM1, +OM1:SP:3928,1,"LES OLIVIERS",43.330353,5.4123,0,0,OM1:SA:CTP3927,Europe/Paris,,OM1, +OM1:SP:3930,1,"METRO LA ROSE",43.333491,5.431154,0,0,OM1:SA:CTP2186,Europe/Paris,,OM1, +OM1:SP:3931,1,"VAL PLAN",43.334759,5.432738,0,0,OM1:SA:CTP3931,Europe/Paris,,OM1, +OM1:SP:3932,1,"SAINT JEROME PARKING RELAIS",43.343405,5.410306,0,0,OM1:SA:CTP3932,Europe/Paris,,OM1, +OM1:SP:3933,1,"SAINT JEROME PARKING RELAIS",43.343405,5.410306,0,0,OM1:SA:CTP3932,Europe/Paris,,OM1, +OM1:SP:3934,1,"VAL PLAN",43.334826,5.432581,0,0,OM1:SA:CTP3931,Europe/Paris,,OM1, +OM1:SP:3935,1,"METRO LA ROSE",43.333576,5.431035,0,0,OM1:SA:CTP2186,Europe/Paris,,OM1, +OM1:SP:3937,1,"LES VIEUX CYPRES",43.336634,5.434654,0,0,OM1:SA:CTP3937,Europe/Paris,,OM1, +OM1:SP:3938,1,"EINSTEIN MONNET",43.338981,5.440063,0,0,OM1:SA:CTP3938,Europe/Paris,,OM1, +OM1:SP:3939,1,"EINSTEIN ATHENA",43.341039,5.443231,0,0,OM1:SA:CTP3939,Europe/Paris,,OM1, +OM1:SP:394,1,"ROUET LIANDIER",43.278254,5.392312,0,0,OM1:SA:CTP394,Europe/Paris,,OM1, +OM1:SP:3940,1,"COLLEGE MALRAUX",43.342431,5.445016,0,0,OM1:SA:CTP2841,Europe/Paris,,OM1, +OM1:SP:3941,1,"EINSTEIN PARKING RELAIS",43.3455,5.448375,0,0,OM1:SA:CTP3941,Europe/Paris,,OM1, +OM1:SP:3942,1,"EINSTEIN PARKING RELAIS",43.345524,5.448303,0,0,OM1:SA:CTP3941,Europe/Paris,,OM1, +OM1:SP:3943,1,"COLLEGE MALRAUX",43.342464,5.44497,0,0,OM1:SA:CTP2841,Europe/Paris,,OM1, +OM1:SP:3944,1,"EINSTEIN ATHENA",43.341096,5.443134,0,0,OM1:SA:CTP3939,Europe/Paris,,OM1, +OM1:SP:3945,1,"EINSTEIN MONNET",43.339045,5.440054,0,0,OM1:SA:CTP3938,Europe/Paris,,OM1, +OM1:SP:3946,1,"LES VIEUX CYPRES",43.336688,5.434543,0,0,OM1:SA:CTP3937,Europe/Paris,,OM1, +OM1:SP:395,1,"ROUET ROUMANILLE",43.277441,5.393056,0,0,OM1:SA:CTP395,Europe/Paris,,OM1, +OM1:SP:3951,1,"BELLE VUE BARSOTTI",43.313389,5.379565,0,0,OM1:SA:CTP3951,Europe/Paris,,OM1, +OM1:SP:3952,1,"ROME PEYTRAL",43.290443,5.381045,0,0,OM1:SA:CTP3952,Europe/Paris,,OM1, +OM1:SP:3954,1,"ROME DRAGON",43.288836,5.381965,0,0,OM1:SA:CTP3954,Europe/Paris,,OM1, +OM1:SP:3956,1,"BAILLE CASTELLANE",43.286346,5.384789,0,0,OM1:SA:CTP1407,Europe/Paris,,OM1, +OM1:SP:396,1,"ROUET LOUVAIN",43.276471,5.394309,0,0,OM1:SA:CTP4102,Europe/Paris,,OM1, +OM1:SP:3962,1,"LYON ODDO",43.329894,5.365412,0,0,OM1:SA:CTP3962,Europe/Paris,,OM1, +OM1:SP:3963,1,"BILLOUX MAIRIE 15-16",43.33269,5.364476,0,0,OM1:SA:CTP3963,Europe/Paris,,OM1, +OM1:SP:3964,1,"LYON RAFFINERIES",43.336269,5.363186,0,0,OM1:SA:CTP3964,Europe/Paris,,OM1, +OM1:SP:3966,1,"LYON COMMANDERIE",43.339495,5.362001,0,0,OM1:SA:CTP3966,Europe/Paris,,OM1, +OM1:SP:3967,1,"SAINT-LOUIS LA POSTE",43.341011,5.360849,0,0,OM1:SA:CTP3967,Europe/Paris,,OM1, +OM1:SP:3968,1,"PARC SAINT LOUIS",43.347929,5.359169,0,0,OM1:SA:CTP3968,Europe/Paris,,OM1, +OM1:SP:3969,1,"SAINT LOUIS SUSINI",43.346142,5.359383,0,0,OM1:SA:CTP3969,Europe/Paris,,OM1, +OM1:SP:3970,1,"SAINT LOUIS",43.347851,5.359188,0,0,OM1:SA:CTP3970,Europe/Paris,,OM1, +OM1:SP:3971,1,"SAINT LOUIS CAMAU",43.350206,5.35888,0,0,OM1:SA:CTP3971,Europe/Paris,,OM1, +OM1:SP:3972,1,"RESIDENCE SAINT LOUIS",43.355795,5.357466,0,0,OM1:SA:CTP3972,Europe/Paris,,OM1, +OM1:SP:3973,1,"CITE LA VISTE",43.352813,5.357824,0,0,OM1:SA:CTP3973,Europe/Paris,,OM1, +OM1:SP:3974,1,"LA VISTE HANOI",43.358131,5.357671,0,0,OM1:SA:CTP3974,Europe/Paris,,OM1, +OM1:SP:3975,1,"LA VISTE",43.359855,5.357699,0,0,OM1:SA:CTP3975,Europe/Paris,,OM1, +OM1:SP:3976,1,"LA VISTE SCIERIE",43.362652,5.357337,0,0,OM1:SA:CTP3976,Europe/Paris,,OM1, +OM1:SP:3977,1,"COLLEGE JEAN MOULIN",43.366292,5.35688,0,0,OM1:SA:CTP3977,Europe/Paris,,OM1, +OM1:SP:3978,1,"SAINT ANTOINE BERANGER",43.368945,5.356579,0,0,OET:SA:CTP31215,Europe/Paris,,OM1, +OM1:SP:3979,1,"SAINT ANTOINE VILLAGE",43.371563,5.356236,0,0,OET:SA:CTP31166,Europe/Paris,,OM1, +OM1:SP:3980,1,"SAINT ANTOINE COLLET",43.374107,5.355877,0,0,OM1:SA:CTP3980,Europe/Paris,,OM1, +OM1:SP:3981,1,"SAINT ANTOINE MAIRIE",43.376512,5.356365,0,0,OM1:SA:CTP3981,Europe/Paris,,OM1, +OM1:SP:3982,1,"LES FABRETTES",43.379657,5.35734,0,0,OM1:SA:CTP3023,Europe/Paris,,OM1, +OM1:SP:3983,1,"NOTRE DAME LIMITE",43.384398,5.358737,0,0,OM1:SA:CTP2956,Europe/Paris,,OM1, +OM1:SP:3984,1,"VALLON D'OL BOURRELY",43.385141,5.362685,0,0,OM1:SA:CTP3984,Europe/Paris,,OM1, +OM1:SP:3985,1,"PARC KALLISTE",43.384565,5.36464,0,0,OM1:SA:CTP3985,Europe/Paris,,OM1, +OM1:SP:3986,1,"BOURRELY GRANIERE",43.382027,5.363592,0,0,OM1:SA:CTP3986,Europe/Paris,,OM1, +OM1:SP:3987,1,"HOPITAL NORD URGENCES",43.379659,5.361907,0,0,OM1:SA:CTP3987,Europe/Paris,,OM1, +OM1:SP:3988,1,"FACULTE DE MEDECINE",43.377413,5.361276,0,0,OM1:SA:CTP3988,Europe/Paris,,OM1, +OM1:SP:3989,1,"HOPITAL NORD",43.377271,5.362726,0,0,OM1:SA:CTP2952,Europe/Paris,,OM1, +OM1:SP:3990,1,"LA MARTINE",43.374324,5.365837,0,0,OM1:SA:CTP3990,Europe/Paris,,OM1, +OM1:SP:3991,1,"COLLEGE VALLON DES PINS",43.371953,5.36475,0,0,OM1:SA:CTP3991,Europe/Paris,,OM1, +OM1:SP:3992,1,"VAL PINS",43.370814,5.363704,0,0,OM1:SA:CTP3992,Europe/Paris,,OM1, +OM1:SP:3995,1,"METRO BOUGAINVILLE",43.321161,5.370875,0,0,OM1:SA:CTP1,Europe/Paris,,OM1, +OM1:SP:3997,1,"VALLON DES TUVES",43.369078,5.362737,0,0,OM1:SA:CTP3999,Europe/Paris,,OM1, +OM1:SP:3999,1,"VALLON DES TUVES",43.368367,5.363106,0,0,OM1:SA:CTP3999,Europe/Paris,,OM1, +OM1:SP:40,1,"SAINT LOUIS ROVE",43.34827,5.357597,0,0,OM1:SA:CTP12,Europe/Paris,,OM1, +OM1:SP:4000,1,"VAL PINS",43.37066,5.3639,0,0,OM1:SA:CTP3992,Europe/Paris,,OM1, +OM1:SP:4001,1,"COLLEGE VALLON DES PINS",43.371579,5.364952,0,0,OM1:SA:CTP3991,Europe/Paris,,OM1, +OM1:SP:4002,1,"LA MARTINE",43.373873,5.366195,0,0,OM1:SA:CTP3990,Europe/Paris,,OM1, +OM1:SP:4003,1,"HOPITAL NORD",43.377618,5.362639,0,0,OM1:SA:CTP2952,Europe/Paris,,OM1, +OM1:SP:4004,1,"FACULTE DE MEDECINE",43.377571,5.361282,0,0,OM1:SA:CTP3988,Europe/Paris,,OM1, +OM1:SP:4005,1,"HOPITAL NORD URGENCES",43.379659,5.361907,0,0,OM1:SA:CTP3987,Europe/Paris,,OM1, +OM1:SP:4006,1,"BOURRELY GRANIERE",43.382281,5.363989,0,0,OM1:SA:CTP3986,Europe/Paris,,OM1, +OM1:SP:4007,1,"PARC KALLISTE",43.384866,5.364791,0,0,OM1:SA:CTP3985,Europe/Paris,,OM1, +OM1:SP:4008,1,"VALLON D'OL BOURRELY",43.385278,5.362585,0,0,OM1:SA:CTP3984,Europe/Paris,,OM1, +OM1:SP:4009,1,"NOTRE DAME LIMITE",43.384834,5.359426,0,0,OM1:SA:CTP2956,Europe/Paris,,OM1, +OM1:SP:401,1,"METRO STE MARGUERITE DROMEL",43.271048,5.402832,0,0,OM1:SA:CTP1619,Europe/Paris,,OM1, +OM1:SP:4010,1,"LES FABRETTES",43.379499,5.357049,0,0,OM1:SA:CTP3023,Europe/Paris,,OM1, +OM1:SP:4011,1,"SAINT ANTOINE MAIRIE",43.376318,5.356079,0,0,OM1:SA:CTP3981,Europe/Paris,,OM1, +OM1:SP:4012,1,"SAINT ANTOINE COLLET",43.373277,5.355794,0,0,OM1:SA:CTP3980,Europe/Paris,,OM1, +OM1:SP:4013,1,"SAINT ANTOINE VILLAGE",43.371003,5.356078,0,0,OET:SA:CTP31166,Europe/Paris,,OM1, +OM1:SP:4014,1,"SAINT ANTOINE BERANGER",43.368517,5.356398,0,0,OET:SA:CTP31215,Europe/Paris,,OM1, +OM1:SP:4015,1,"COLLEGE JEAN MOULIN",43.366462,5.356645,0,0,OM1:SA:CTP3977,Europe/Paris,,OM1, +OM1:SP:4016,1,"LA VISTE SCIERIE",43.362991,5.357111,0,0,OM1:SA:CTP3976,Europe/Paris,,OM1, +OM1:SP:4017,1,"LA VISTE",43.360066,5.357481,0,0,OM1:SA:CTP3975,Europe/Paris,,OM1, +OM1:SP:4018,1,"LA VISTE HANOI",43.358119,5.357506,0,0,OM1:SA:CTP3974,Europe/Paris,,OM1, +OM1:SP:4019,1,"CITE LA VISTE",43.355659,5.357245,0,0,OM1:SA:CTP4019,Europe/Paris,,OM1, +OM1:SP:4020,1,"RESIDENCE SAINT LOUIS",43.352175,5.357889,0,0,OM1:SA:CTP4020,Europe/Paris,,OM1, +OM1:SP:4021,1,"SAINT LOUIS CAMAU",43.350327,5.35863,0,0,OM1:SA:CTP3971,Europe/Paris,,OM1, +OM1:SP:4022,1,"SAINT LOUIS",43.345937,5.359167,0,0,OM1:SA:CTP3970,Europe/Paris,,OM1, +OM1:SP:4023,1,"SAINT LOUIS SUSINI",43.346155,5.359148,0,0,OM1:SA:CTP3969,Europe/Paris,,OM1, +OM1:SP:4024,1,"PARC SAINT LOUIS",43.347232,5.358984,0,0,OM1:SA:CTP3968,Europe/Paris,,OM1, +OM1:SP:4025,1,"SAINT-LOUIS LA POSTE",43.341139,5.360473,0,0,OM1:SA:CTP3967,Europe/Paris,,OM1, +OM1:SP:4027,1,"LYON COMMANDERIE",43.338525,5.362258,0,0,OM1:SA:CTP3966,Europe/Paris,,OM1, +OM1:SP:4028,1,"LYON RAFFINERIES",43.335647,5.363252,0,0,OM1:SA:CTP3964,Europe/Paris,,OM1, +OM1:SP:4029,1,"BILLOUX MAIRIE 15-16",43.332978,5.364158,0,0,OM1:SA:CTP3963,Europe/Paris,,OM1, +OM1:SP:403,1,"MONTFURON",43.273686,5.400511,0,0,OM1:SA:CTP403,Europe/Paris,,OM1, +OM1:SP:4030,1,"LYON ODDO",43.32987,5.365288,0,0,OM1:SA:CTP3962,Europe/Paris,,OM1, +OM1:SP:4033,1,"SAINT JEROME PARKING RELAIS",43.343405,5.410306,0,0,OM1:SA:CTP3932,Europe/Paris,,OM1, +OM1:SP:4034,1,"SAINT JEROME IUT",43.341007,5.409938,0,0,OM1:SA:CTP1063,Europe/Paris,,OM1, +OM1:SP:4035,1,"SAINT JEROME FACULTE",43.337999,5.409967,0,0,OM1:SA:CTP4035,Europe/Paris,,OM1, +OM1:SP:4036,1,"LES LILAS",43.331143,5.410011,0,0,OM1:SA:CTP4036,Europe/Paris,,OM1, +OM1:SP:4037,1,"LES OLIVIERS",43.330353,5.4123,0,0,OM1:SA:CTP3927,Europe/Paris,,OM1, +OM1:SP:4038,1,"METRO MALPASSE",43.32071,5.415946,0,0,OM1:SA:CTP2278,Europe/Paris,,OM1, +OM1:SP:4039,1,"LES OLIVIERS",43.330542,5.412332,0,0,OM1:SA:CTP3927,Europe/Paris,,OM1, +OM1:SP:404,1,"SCHLOESING FERRIE",43.277009,5.399396,0,0,OM1:SA:CTP404,Europe/Paris,,OM1, +OM1:SP:4040,1,"LES LILAS",43.331133,5.410358,0,0,OM1:SA:CTP4036,Europe/Paris,,OM1, +OM1:SP:4041,1,"SAINT JEROME FACULTE",43.338003,5.410424,0,0,OM1:SA:CTP4035,Europe/Paris,,OM1, +OM1:SP:4042,1,"SAINT JEROME IUT",43.341015,5.410244,0,0,OM1:SA:CTP1063,Europe/Paris,,OM1, +OM1:SP:4043,1,"METRO LA ROSE",43.333576,5.431035,0,0,OM1:SA:CTP2186,Europe/Paris,,OM1, +OM1:SP:4044,1,"METRO LA ROSE",43.333491,5.431154,0,0,OM1:SA:CTP2186,Europe/Paris,,OM1, +OM1:SP:4045,1,"LES VIEUX CYPRES",43.336588,5.434808,0,0,OM1:SA:CTP3937,Europe/Paris,,OM1, +OM1:SP:4046,1,"TECHNOPOLE CENTRALE MARSEILLE",43.341614,5.436893,0,0,OM1:SA:CTP4046,Europe/Paris,,OM1, +OM1:SP:4047,1,"TECHNOPOLE POLYTECH MARSEILLE",43.344549,5.436273,0,0,OM1:SA:CTP4047,Europe/Paris,,OM1, +OM1:SP:4048,1,"TECHNOPOLE DE CHATEAU GOMBERT",43.344863,5.439136,0,0,OM1:SA:CTP4048,Europe/Paris,,OM1, +OM1:SP:4049,1,"TECHNOPOLE DE CHATEAU GOMBERT",43.34486,5.439222,0,0,OM1:SA:CTP4048,Europe/Paris,,OM1, +OM1:SP:4050,1,"TECHNOPOLE POLYTECH MARSEILLE",43.34462,5.436314,0,0,OM1:SA:CTP4047,Europe/Paris,,OM1, +OM1:SP:4051,1,"TECHNOPOLE CENTRALE MARSEILLE",43.34164,5.436568,0,0,OM1:SA:CTP4046,Europe/Paris,,OM1, +OM1:SP:4052,1,"LES VIEUX CYPRES",43.336688,5.434543,0,0,OM1:SA:CTP3937,Europe/Paris,,OM1, +OM1:SP:4053,1,"METRO LA ROSE",43.333576,5.431035,0,0,OM1:SA:CTP2186,Europe/Paris,,OM1, +OM1:SP:4055,1,"LES OLIVIERS",43.330542,5.412332,0,0,OM1:SA:CTP3927,Europe/Paris,,OM1, +OM1:SP:4056,1,"LES LILAS",43.331133,5.410358,0,0,OM1:SA:CTP4036,Europe/Paris,,OM1, +OM1:SP:4057,1,"SAINT JEROME FACULTE",43.338003,5.410424,0,0,OM1:SA:CTP4035,Europe/Paris,,OM1, +OM1:SP:4058,1,"SAINT JEROME IUT",43.341015,5.410244,0,0,OM1:SA:CTP1063,Europe/Paris,,OM1, +OM1:SP:4059,1,"SAINT JEROME IUT",43.341007,5.409938,0,0,OM1:SA:CTP1063,Europe/Paris,,OM1, +OM1:SP:4060,1,"SAINT JEROME FACULTE",43.337999,5.409967,0,0,OM1:SA:CTP4035,Europe/Paris,,OM1, +OM1:SP:4061,1,"LES LILAS",43.331143,5.410011,0,0,OM1:SA:CTP4036,Europe/Paris,,OM1, +OM1:SP:4062,1,"LES OLIVIERS",43.330353,5.4123,0,0,OM1:SA:CTP3927,Europe/Paris,,OM1, +OM1:SP:4064,1,"LANGEVIN CONSOLATION",43.339368,5.432913,0,0,OM1:SA:CTP2580,Europe/Paris,,OM1, +OM1:SP:4065,1,"LANGEVIN PLANK",43.341506,5.433107,0,0,OM1:SA:CTP4065,Europe/Paris,,OM1, +OM1:SP:4066,1,"JOLIOT CURIE",43.343205,5.434876,0,0,OM1:SA:CTP4066,Europe/Paris,,OM1, +OM1:SP:4067,1,"NEEL",43.344458,5.437247,0,0,OM1:SA:CTP4067,Europe/Paris,,OM1, +OM1:SP:4070,1,"LEPRINCE RINGUET",43.344129,5.441545,0,0,OM1:SA:CTP4070,Europe/Paris,,OM1, +OM1:SP:4071,1,"MIEGE",43.343826,5.444489,0,0,OM1:SA:CTP4071,Europe/Paris,,OM1, +OM1:SP:4072,1,"COPERNIC",43.342273,5.449087,0,0,OM1:SA:CTP2824,Europe/Paris,,OM1, +OM1:SP:4073,1,"CHAMPOLLION",43.339686,5.449612,0,0,OM1:SA:CTP4073,Europe/Paris,,OM1, +OM1:SP:4074,1,"CHAMPOLLION",43.339802,5.45001,0,0,OM1:SA:CTP4073,Europe/Paris,,OM1, +OM1:SP:4076,1,"COLLEGE MALRAUX",43.342864,5.446064,0,0,OM1:SA:CTP2841,Europe/Paris,,OM1, +OM1:SP:4077,1,"MIEGE",43.343898,5.444506,0,0,OM1:SA:CTP4071,Europe/Paris,,OM1, +OM1:SP:4078,1,"LEPRINCE RINGUET",43.344209,5.441541,0,0,OM1:SA:CTP4070,Europe/Paris,,OM1, +OM1:SP:4079,1,"NEEL",43.344574,5.437285,0,0,OM1:SA:CTP4067,Europe/Paris,,OM1, +OM1:SP:408,1,"CANTINI BORDE",43.279849,5.395031,0,0,OM1:SA:CTP408,Europe/Paris,,OM1, +OM1:SP:4080,1,"JOLIOT CURIE",43.343449,5.434814,0,0,OM1:SA:CTP4066,Europe/Paris,,OM1, +OM1:SP:4081,1,"LANGEVIN PLANK",43.34161,5.433107,0,0,OM1:SA:CTP4065,Europe/Paris,,OM1, +OM1:SP:4083,1,"TERRASSES DU PORT",43.307409,5.366259,0,0,OM1:SA:CTP4083,Europe/Paris,,OM1, +OM1:SP:4084,1,"DOCKS",43.308977,5.366733,0,0,OM1:SA:CTP4084,Europe/Paris,,OM1, +OM1:SP:4086,1,"DOCKS",43.308993,5.366616,0,0,OM1:SA:CTP4084,Europe/Paris,,OM1, +OM1:SP:4087,1,"TERRASSES DU PORT",43.307424,5.366168,0,0,OM1:SA:CTP4083,Europe/Paris,,OM1, +OM1:SP:4089,1,"DONADILLE LANGEVIN",43.34409,5.430974,0,0,OM1:SA:CTP4089,Europe/Paris,,OM1, +OM1:SP:409,1,"CANTINI REGE",43.281528,5.391957,0,0,OM1:SA:CTP409,Europe/Paris,,OM1, +OM1:SP:4090,1,"LES BARONNIES",43.346014,5.431645,0,0,OM1:SA:CTP4090,Europe/Paris,,OM1, +OM1:SP:4091,1,"DONADILLE",43.346012,5.429513,0,0,OM1:SA:CTP4091,Europe/Paris,,OM1, +OM1:SP:4092,1,"LANGEVIN",43.345997,5.428785,0,0,OM1:SA:CTP4092,Europe/Paris,,OM1, +OM1:SP:4094,1,"PLACE FERRIE",43.277056,5.39807,0,0,OM1:SA:CTP2029,Europe/Paris,,OM1, +OM1:SP:4095,1,"RABATAU ROUET",43.275802,5.396228,0,0,OM1:SA:CTP4095,Europe/Paris,,OM1, +OM1:SP:4096,1,"HOPITAL ST JOSEPH",43.275065,5.39509,0,0,OM1:SA:CTP4096,Europe/Paris,,OM1, +OM1:SP:4097,1,"METRO ROND POINT DU PRADO",43.272962,5.391813,0,0,OM1:SA:CTP1083,Europe/Paris,,OM1, +OM1:SP:4098,1,"METRO ROND POINT DU PRADO",43.272755,5.392075,0,0,OM1:SA:CTP1083,Europe/Paris,,OM1, +OM1:SP:4099,1,"HOPITAL ST JOSEPH",43.274859,5.395317,0,0,OM1:SA:CTP4096,Europe/Paris,,OM1, +OM1:SP:410,1,"PARC DU 26EME CENTENAIRE",43.283207,5.389191,0,0,OM1:SA:CTP2521,Europe/Paris,,OM1, +OM1:SP:4100,1,"RABATAU ROUET",43.275674,5.396408,0,0,OM1:SA:CTP4095,Europe/Paris,,OM1, +OM1:SP:4101,1,"TOULON DELPHES",43.28545,5.387301,0,0,OM1:SA:CTP1318,Europe/Paris,,OM1, +OM1:SP:4102,1,"ROUET LOUVAIN",43.276225,5.395078,0,0,OM1:SA:CTP4102,Europe/Paris,,OM1, +OM1:SP:4103,1,"MAILLANE",43.27777,5.395412,0,0,OM1:SA:CTP4103,Europe/Paris,,OM1, +OM1:SP:4106,1,"HOPITAL NORD",43.377205,5.363819,0,0,OM1:SA:CTP2952,Europe/Paris,,OM1, +OM1:SP:4107,1,"HOPITAL NORD",43.377359,5.363433,0,0,OM1:SA:CTP2952,Europe/Paris,,OM1, +OM1:SP:4108,1,"HOPITAL NORD",43.377058,5.36391,0,0,OM1:SA:CTP2952,Europe/Paris,,OM1, +OM1:SP:411,1,"CANTINI DELPHES",43.284314,5.386972,0,0,OM1:SA:CTP411,Europe/Paris,,OM1, +OM1:SP:4110,1,"METRO ROND POINT DU PRADO",43.271142,5.392641,0,0,OM1:SA:CTP1747,Europe/Paris,,OM1, +OM1:SP:4112,1,"METRO ROND POINT DU PRADO",43.271531,5.392388,0,0,OM1:SA:CTP1747,Europe/Paris,,OM1, +OM1:SP:4114,1,"METRO ROND POINT DU PRADO",43.271347,5.392507,0,0,OM1:SA:CTP1747,Europe/Paris,,OM1, +OM1:SP:4116,1,"METRO ROND POINT DU PRADO",43.271241,5.392591,0,0,OM1:SA:CTP1747,Europe/Paris,,OM1, +OM1:SP:4119,1,"CANEBIERE CAPUCINS",43.296924,5.379112,0,0,OM1:SA:CTP4119,Europe/Paris,,OM1, +OM1:SP:4120,1,"COURS SAINT LOUIS",43.296125,5.377954,0,0,OM1:SA:CTP4120,Europe/Paris,,OM1, +OM1:SP:4121,1,"ROME DAVSO",43.293677,5.379327,0,0,OM1:SA:CTP4121,Europe/Paris,,OM1, +OM1:SP:4122,1,"PLACE DE ROME",43.29062,5.381049,0,0,OM1:SA:CTP4122,Europe/Paris,,OM1, +OM1:SP:4123,1,"ROME DRAGON",43.288849,5.38206,0,0,OM1:SA:CTP3954,Europe/Paris,,OM1, +OM1:SP:4128,1,"CANEBIERE CAPUCINS",43.296874,5.37914,0,0,OM1:SA:CTP4119,Europe/Paris,,OM1, +OM1:SP:4129,1,"CASTELLANE",43.286409,5.383508,0,0,OM1:SA:CTP1091,Europe/Paris,,OM1, +OM1:SP:4130,1,"ROME DRAGON",43.288863,5.382139,0,0,OM1:SA:CTP3954,Europe/Paris,,OM1, +OM1:SP:4131,1,"PLACE DE ROME",43.290631,5.381109,0,0,OM1:SA:CTP4122,Europe/Paris,,OM1, +OM1:SP:4132,1,"ROME DAVSO",43.293692,5.37938,0,0,OM1:SA:CTP4121,Europe/Paris,,OM1, +OM1:SP:4133,1,"COURS SAINT LOUIS",43.296142,5.378023,0,0,OM1:SA:CTP4120,Europe/Paris,,OM1, +OM1:SP:4139,1,"ARENC MIRABEAU",43.31295,5.366131,0,0,OM1:SA:CTP2851,Europe/Paris,,OM1, +OM1:SP:4141,1,"ESTAQUE RIAUX",43.36194,5.303212,0,0,OM1:SA:CTP4141,Europe/Paris,,OM1, +OM1:SP:4142,1,"ESTAQUE RIAUX",43.361755,5.304373,0,0,OM1:SA:CTP4141,Europe/Paris,,OM1, +OM1:SP:4144,1,"PONT DU CANAL",43.371799,5.372459,0,0,OM1:SA:CTP4144,Europe/Paris,,OM1, +OM1:SP:4145,1,"PONT DU CANAL",43.371912,5.372305,0,0,OM1:SA:CTP4144,Europe/Paris,,OM1, +OM1:SP:4146,1,"MANDELA CRECHE",43.410207,5.370929,0,0,OAC:SA:CTP134427,Europe/Paris,,OM1, +OM1:SP:4147,1,"MANDELA CRECHE",43.410318,5.370812,0,0,OAC:SA:CTP134427,Europe/Paris,,OM1, +OM1:SP:4152,1,"GROUPE CLOVIS HUGUES",43.316311,5.378612,0,0,OM1:SA:CTP4152,Europe/Paris,,OM1, +OM1:SP:4153,1,"GROUPE CLOVIS HUGUES",43.316277,5.378561,0,0,OM1:SA:CTP4152,Europe/Paris,,OM1, +OM1:SP:4155,1,"GIONO LIBERATION",43.344145,5.458665,0,0,OM1:SA:CTP4155,Europe/Paris,,OM1, +OM1:SP:4156,1,"ROND POINT DES OLIVIERS",43.343783,5.463401,0,0,OM1:SA:CTP4156,Europe/Paris,,OM1, +OM1:SP:4157,1,"ROND POINT DES OLIVIERS",43.34378,5.463204,0,0,OM1:SA:CTP4156,Europe/Paris,,OM1, +OM1:SP:4158,1,"GIONO LIBERATION",43.344186,5.458802,0,0,OM1:SA:CTP4155,Europe/Paris,,OM1, +OM1:SP:4160,1,"CHATEAU GOMBERT",43.353248,5.438062,0,0,OM1:SA:CTP4160,Europe/Paris,,OM1, +OM1:SP:4164,1,"LA CLAIRIERE",43.26541,5.424199,0,0,OM1:SA:CTP4164,Europe/Paris,,OM1, +OM1:SP:4165,1,"VAL DE BOIS",43.264005,5.422709,0,0,OM1:SA:CTP4165,Europe/Paris,,OM1, +OM1:SP:4166,1,"GRANDE BASTIDE",43.263726,5.420931,0,0,OM1:SA:CTP4166,Europe/Paris,,OM1, +OM1:SP:4167,1,"GRANDE BASTIDE",43.263468,5.421139,0,0,OM1:SA:CTP4166,Europe/Paris,,OM1, +OM1:SP:4168,1,"VAL DE BOIS",43.264084,5.422775,0,0,OM1:SA:CTP4165,Europe/Paris,,OM1, +OM1:SP:4169,1,"LA CLAIRIERE",43.265426,5.424286,0,0,OM1:SA:CTP4164,Europe/Paris,,OM1, +OM1:SP:4173,1,"BOUGAINVILLE",43.34311,5.468293,0,0,OM7:SA:CTP5062708,Europe/Paris,,OM1, +OM1:SP:4174,1,"LES BLACASSINS",43.341889,5.471332,0,0,OM1:SA:CTP4174,Europe/Paris,,OM1, +OM1:SP:4175,1,"LES BLACASSINS",43.341999,5.471251,0,0,OM1:SA:CTP4174,Europe/Paris,,OM1, +OM1:SP:4176,1,"BOUGAINVILLE",43.343415,5.467386,0,0,OM7:SA:CTP5062708,Europe/Paris,,OM1, +OM1:SP:4178,1,"THOLLON",43.369347,5.356058,0,0,OM1:SA:CTP4178,Europe/Paris,,OM1, +OM1:SP:4179,1,"PLAN D'AOU",43.368659,5.353334,0,0,OM1:SA:CTP3883,Europe/Paris,,OM1, +OM1:SP:418,1,"CANEBIERE BOURSE",43.296611,5.3763,0,0,OM1:SA:CTP1058,Europe/Paris,,OM1, +OM1:SP:4180,1,"FORESTA",43.366025,5.353935,0,0,OM1:SA:CTP4180,Europe/Paris,,OM1, +OM1:SP:4181,1,"FORESTA",43.365878,5.354038,0,0,OM1:SA:CTP4180,Europe/Paris,,OM1, +OM1:SP:4182,1,"THOLLON",43.369334,5.35618,0,0,OM1:SA:CTP4178,Europe/Paris,,OM1, +OM1:SP:4186,1,"PLACE DU 4 SEPTEMBRE",43.288405,5.359567,0,0,OM1:SA:CTP1400,Europe/Paris,,OM1, +OM1:SP:4187,1,"RECHER CORSE",43.28891,5.362105,0,0,OM1:SA:CTP4187,Europe/Paris,,OM1, +OM1:SP:4188,1,"RECHER COTEAU",43.286945,5.362568,0,0,OM1:SA:CTP4188,Europe/Paris,,OM1, +OM1:SP:4189,1,"VIEUX CHEMIN D ENDOUME",43.286283,5.360871,0,0,OM1:SA:CTP4189,Europe/Paris,,OM1, +OM1:SP:419,1,"BARBUSSE COLBERT",43.298368,5.374275,0,0,OM1:SA:CTP419,Europe/Paris,,OM1, +OM1:SP:4190,1,"PLACE SAINT EUGENE",43.284615,5.357804,0,0,OM1:SA:CTP1543,Europe/Paris,,OM1, +OM1:SP:4191,1,"GUIDICELLI",43.286379,5.354882,0,0,OM1:SA:CTP4191,Europe/Paris,,OM1, +OM1:SP:4192,1,"SAMATAN",43.288247,5.355625,0,0,OM1:SA:CTP4192,Europe/Paris,,OM1, +OM1:SP:4193,1,"FOUR A CHAUX",43.287452,5.356366,0,0,OM1:SA:CTP4193,Europe/Paris,,OM1, +OM1:SP:4194,1,"CODACCIONI",43.287542,5.358291,0,0,OM1:SA:CTP4194,Europe/Paris,,OM1, +OM1:SP:4197,1,"VIEUX CHEMIN D ENDOUME",43.286222,5.361114,0,0,OM1:SA:CTP4189,Europe/Paris,,OM1, +OM1:SP:4199,1,"METRO PERIER",43.279447,5.387342,0,0,OM1:SA:CTP2314,Europe/Paris,,OM1, +OM1:SP:420,1,"METRO JULES GUESDE",43.301828,5.374347,0,0,OM1:SA:CTP420,Europe/Paris,,OM1, +OM1:SP:4200,1,"MERMOZ CHALET",43.27731,5.387334,0,0,OM1:SA:CTP4200,Europe/Paris,,OM1, +OM1:SP:4201,1,"MERMOZ DUVEEN",43.275811,5.386816,0,0,OM1:SA:CTP4201,Europe/Paris,,OM1, +OM1:SP:4202,1,"CLINIQUE JUGE",43.273366,5.387092,0,0,OM1:SA:CTP4202,Europe/Paris,,OM1, +OM1:SP:4203,1,"MERMOZ SICARD",43.271665,5.386854,0,0,OM1:SA:CTP4203,Europe/Paris,,OM1, +OM1:SP:4204,1,"CADENELLE CHARLEY",43.268001,5.382537,0,0,OM1:SA:CTP4204,Europe/Paris,,OM1, +OM1:SP:4205,1,"PARC BAGATELLE",43.269451,5.381519,0,0,OM1:SA:CTP4205,Europe/Paris,,OM1, +OM1:SP:4206,1,"MAIRIE 6-8",43.271039,5.382908,0,0,OM1:SA:CTP4206,Europe/Paris,,OM1, +OM1:SP:4207,1,"CLINIQUE MONTICELLI",43.271968,5.382809,0,0,OM1:SA:CTP4207,Europe/Paris,,OM1, +OM1:SP:4208,1,"PARC MONTICELLI",43.274449,5.382689,0,0,OM1:SA:CTP4208,Europe/Paris,,OM1, +OM1:SP:4209,1,"ROLLAND PUGET",43.276882,5.382972,0,0,OM1:SA:CTP4209,Europe/Paris,,OM1, +OM1:SP:421,1,"NEDELEC GUESDE",43.302286,5.376908,0,0,OM1:SA:CTP380,Europe/Paris,,OM1, +OM1:SP:4210,1,"CLINIQUE PUGET",43.276644,5.381224,0,0,OM1:SA:CTP4210,Europe/Paris,,OM1, +OM1:SP:4211,1,"EDEN ROC",43.277035,5.377897,0,0,OM1:SA:CTP4211,Europe/Paris,,OM1, +OM1:SP:4212,1,"CLINIQUE PUGET",43.276635,5.381428,0,0,OM1:SA:CTP4210,Europe/Paris,,OM1, +OM1:SP:4213,1,"ROLLAND DAUMIER",43.27823,5.382492,0,0,OM1:SA:CTP4213,Europe/Paris,,OM1, +OM1:SP:4215,1,"BIANCO FLORIAN",43.287547,5.425218,0,0,OM1:SA:CTP4215,Europe/Paris,,OM1, +OM1:SP:4217,1,"SAINTE MARTHE LE CAMP",43.331503,5.389618,0,0,OM1:SA:CTP111,Europe/Paris,,OM1, +OM1:SP:4218,1,"SAINTE MARTHE LE CAMP",43.331489,5.389173,0,0,OM1:SA:CTP111,Europe/Paris,,OM1, +OM1:SP:4222,1,"PLACE BONNEFON",43.254,5.382238,0,0,OM1:SA:CTP1919,Europe/Paris,,OM1, +OM1:SP:4224,1,"BEZOMBES",43.28762,5.429247,0,0,OM1:SA:CTP4224,Europe/Paris,,OM1, +OM1:SP:4225,1,"LA MAZENODE",43.286087,5.42786,0,0,OM1:SA:CTP4225,Europe/Paris,,OM1, +OM1:SP:4226,1,"FLORIAN MIREILLE LAUZE",43.285196,5.425042,0,0,OM1:SA:CTP4226,Europe/Paris,,OM1, +OM1:SP:4227,1,"BARDON FLORIAN",43.282506,5.426965,0,0,OM1:SA:CTP4227,Europe/Paris,,OM1, +OM1:SP:4228,1,"FLORIAN MIREILLE LAUZE",43.284671,5.426429,0,0,OM1:SA:CTP4226,Europe/Paris,,OM1, +OM1:SP:4230,1,"BONNETERIE",43.296758,5.371727,0,0,OM1:SA:CTP3830,Europe/Paris,,OM1, +OM1:SP:4236,1,"PONT DE VIVAUX SIDOLLE",43.281563,5.424133,0,0,OM1:SA:CTP4236,Europe/Paris,,OM1, +OM1:SP:4237,1,"PONT DE VIVAUX SIDOLLE",43.281618,5.423766,0,0,OM1:SA:CTP4236,Europe/Paris,,OM1, +OM1:SP:4239,1,"RESIDENCE GIBBES",43.32329,5.381778,0,0,OM1:SA:CTP4239,Europe/Paris,,OM1, +OM1:SP:4244,1,"GIBBES ROUFFE",43.328483,5.385109,0,0,OM1:SA:CTP538,Europe/Paris,,OM1, +OM1:SP:4246,1,"NATIONAL JULLIEN",43.313976,5.374067,0,0,OM1:SA:CTP4246,Europe/Paris,,OM1, +OM1:SP:4247,1,"NATIONAL JULLIEN",43.313701,5.374237,0,0,OM1:SA:CTP4246,Europe/Paris,,OM1, +OM1:SP:4249,1,"METRO NATIONAL",43.315421,5.373207,0,0,OM1:SA:CTP486,Europe/Paris,,OM1, +OM1:SP:4251,1,"STE TRINITE",43.247829,5.406365,0,0,OM1:SA:CTP4251,Europe/Paris,,OM1, +OM1:SP:4252,1,"STE TRINITE",43.247879,5.406491,0,0,OM1:SA:CTP4251,Europe/Paris,,OM1, +OM1:SP:4254,1,"ALLAR",43.324712,5.364855,0,0,OM1:SA:CTP4254,Europe/Paris,,OM1, +OM1:SP:4255,1,"MARCHE AUX PUCES",43.32599,5.361277,0,0,OM1:SA:CTP4255,Europe/Paris,,OM1, +OM1:SP:4256,1,"BERNABO LITTORAL",43.336261,5.354525,0,0,OM4:SA:CTP3625956,Europe/Paris,,OM1, +OM1:SP:4257,1,"BERNABO LITTORAL",43.336265,5.354698,0,0,OM4:SA:CTP3625956,Europe/Paris,,OM1, +OM1:SP:4258,1,"MARCHE AUX PUCES",43.325939,5.3612,0,0,OM1:SA:CTP4255,Europe/Paris,,OM1, +OM1:SP:4259,1,"ALLAR",43.324756,5.365843,0,0,OM1:SA:CTP4254,Europe/Paris,,OM1, +OM1:SP:426,1,"NATIONAL LOUBON",43.310948,5.378438,0,0,OM1:SA:CTP223,Europe/Paris,,OM1, +OM1:SP:4267,1,"SEPTEMES NORD",43.400864,5.369608,0,0,OM1:SA:CTP4267,Europe/Paris,,OM1, +OM1:SP:4268,1,"MANDELA ECOLE",43.408624,5.366787,0,0,OM1:SA:CTP3003,Europe/Paris,,OM1, +OM1:SP:4269,1,"CASTORS ISABELLA SUD",43.403744,5.351284,0,0,OM1:SA:CTP2990,Europe/Paris,,OM1, +OM1:SP:4270,1,"CASTORS ISABELLA",43.405666,5.348462,0,0,OM1:SA:CTP4270,Europe/Paris,,OM1, +OM1:SP:4271,1,"L'OLIVERAIE",43.38028,5.354205,0,0,OM1:SA:CTP4271,Europe/Paris,,OM1, +OM1:SP:4272,1,"L'OLIVERAIE",43.37998,5.354633,0,0,OM1:SA:CTP4271,Europe/Paris,,OM1, +OM1:SP:4273,1,"LANGEVIN WALLON",43.386107,5.352292,0,0,OM1:SA:CTP3151,Europe/Paris,,OM1, +OM1:SP:4274,1,"BEDOULE SAUZE",43.402639,5.357319,0,0,OM1:SA:CTP2995,Europe/Paris,,OM1, +OM1:SP:4275,1,"CIMETIERE SUD",43.404264,5.356467,0,0,OM1:SA:CTP2994,Europe/Paris,,OM1, +OM1:SP:4276,1,"CIMETIERE NORD",43.405619,5.355305,0,0,OM1:SA:CTP2993,Europe/Paris,,OM1, +OM1:SP:4277,1,"CHENE VERT",43.407295,5.354838,0,0,OM1:SA:CTP2992,Europe/Paris,,OM1, +OM1:SP:4278,1,"VALLON DE LA GAZELLE",43.406875,5.346379,0,0,OM1:SA:CTP2991,Europe/Paris,,OM1, +OM1:SP:4279,1,"CASTORS ISABELLA",43.405602,5.347854,0,0,OM1:SA:CTP4270,Europe/Paris,,OM1, +OM1:SP:4280,1,"ZA DE LA HAUTE BEDOULE",43.403105,5.356431,0,0,OM1:SA:CTP2988,Europe/Paris,,OM1, +OM1:SP:4281,1,"SEPTEMES NORD",43.400877,5.369486,0,0,OM1:SA:CTP4267,Europe/Paris,,OM1, +OM1:SP:4282,1,"HOPITAL EDOUARD TOULOUSE",43.38216,5.358348,0,0,OM1:SA:CTP564,Europe/Paris,,OM1, +OM1:SP:4283,1,"COMMISSARIAT",43.392372,5.367482,0,0,OM1:SA:CTP3019,Europe/Paris,,OM1, +OM1:SP:4284,1,"LES COLLINES GENETS",43.404856,5.367106,0,0,OM1:SA:CTP4284,Europe/Paris,,OM1, +OM1:SP:4287,1,"JOLIETTE",43.30466,5.366087,0,0,OM1:SA:CTP3790,Europe/Paris,,OM1, +OM1:SP:4289,1,"TERMINAL CROISIERES",43.340341,5.346584,0,0,OM1:SA:CTP4289,Europe/Paris,,OM1, +OM1:SP:429,1,"BELLE DE MAI",43.310969,5.3885,0,0,OM1:SA:CTP3388,Europe/Paris,,OM1, +OM1:SP:4290,1,"TERMINAL CROISIERES",43.340104,5.346029,0,0,OM1:SA:CTP4289,Europe/Paris,,OM1, +OM1:SP:431,1,"BELLE DE MAI LA FRICHE",43.309555,5.390161,0,0,OM1:SA:CTP431,Europe/Paris,,OM1, +OM1:SP:4312,1,"ST PIERRE",43.291821,5.413236,0,0,OM1:SA:CTP3091,Europe/Paris,,OM1, +OM1:SP:4318,1,"COLLEGE JEAN GIONO",43.33656,5.434843,0,0,OM1:SA:CTP4318,Europe/Paris,,OM1, +OM1:SP:432,1,"PLACE LEVERRIER",43.306226,5.393075,0,0,OM1:SA:CTP432,Europe/Paris,,OM1, +OM1:SP:433,1,"LYCEE ST CHARLES",43.305531,5.391881,0,0,OM1:SA:CTP2551,Europe/Paris,,OM1, +OM1:SP:4333,1,"CC ST LOUP",43.277269,5.427422,0,0,OM1:SA:CTP4333,Europe/Paris,,OM1, +OM1:SP:434,1,"FLAMMARION ISOARD",43.304423,5.3891,0,0,OM1:SA:CTP434,Europe/Paris,,OM1, +OM1:SP:436,1,"HOTEL DE VILLE",43.296036,5.368775,0,0,OM1:SA:CTP436,Europe/Paris,,OM1, +OM1:SP:438,1,"CAISSERIE BEAUREGARD",43.296915,5.367439,0,0,OM1:SA:CTP3832,Europe/Paris,,OM1, +OM1:SP:439,1,"PLACE DE LENCHE",43.297179,5.366062,0,0,OM1:SA:CTP3831,Europe/Paris,,OM1, +OM1:SP:440,1,"EGLISE SAINT LAURENT",43.296583,5.364221,0,0,OM1:SA:CTP440,Europe/Paris,,OM1, +OM1:SP:441,1,"TOURETTE CATHEDRALE",43.297706,5.364268,0,0,OM1:SA:CTP441,Europe/Paris,,OM1, +OM1:SP:442,1,"LA MAJOR",43.299842,5.36571,0,0,OM1:SA:CTP3819,Europe/Paris,,OM1, +OM1:SP:443,1,"SCHUMAN DAMES",43.303011,5.36653,0,0,OM1:SA:CTP443,Europe/Paris,,OM1, +OM1:SP:444,1,"JOLIETTE",43.304486,5.36715,0,0,OM1:SA:CTP3790,Europe/Paris,,OM1, +OM1:SP:445,1,"DAMES REPUBLIQUE",43.302367,5.369599,0,0,OM1:SA:CTP445,Europe/Paris,,OM1, +OM1:SP:450,1,"STRASBOURG AMIENS",43.306967,5.375161,0,0,OM1:SA:CTP450,Europe/Paris,,OM1, +OM1:SP:451,1,"STRASBOURG DESAIX",43.307777,5.376411,0,0,OM1:SA:CTP451,Europe/Paris,,OM1, +OM1:SP:452,1,"STRASBOURG",43.309534,5.379447,0,0,OM1:SA:CTP452,Europe/Paris,,OM1, +OM1:SP:454,1,"BERNARD CLOVIS HUGUES",43.310253,5.385199,0,0,OM1:SA:CTP454,Europe/Paris,,OM1, +OM1:SP:456,1,"CLOVIS HUGUES",43.311245,5.384464,0,0,OM1:SA:CTP209,Europe/Paris,,OM1, +OM1:SP:457,1,"CRISTOFOL AUZIAS",43.310651,5.381637,0,0,OM1:SA:CTP457,Europe/Paris,,OM1, +OM1:SP:458,1,"CRISTOFOL NATIONAL",43.310034,5.379892,0,0,OM1:SA:CTP458,Europe/Paris,,OM1, +OM1:SP:459,1,"STRASBOURG DESAIX",43.308309,5.376981,0,0,OM1:SA:CTP451,Europe/Paris,,OM1, +OM1:SP:460,1,"PLACE DE STRASBOURG",43.306504,5.373733,0,0,OM1:SA:CTP460,Europe/Paris,,OM1, +OM1:SP:461,1,"FORBIN D'HOZIER",43.30527,5.369013,0,0,OM1:SA:CTP461,Europe/Paris,,OM1, +OM1:SP:468,1,"HOTEL DE VILLE",43.296134,5.370919,0,0,OM1:SA:CTP436,Europe/Paris,,OM1, +OM1:SP:470,1,"CANEBIERE VIEUX PORT",43.295435,5.375289,0,0,OM1:SA:CTP3313,Europe/Paris,,OM1, +OM1:SP:472,1,"FLAMMARION ISOARD",43.304401,5.389555,0,0,OM1:SA:CTP472,Europe/Paris,,OM1, +OM1:SP:473,1,"PLACE LEVERRIER",43.306256,5.393286,0,0,OM1:SA:CTP432,Europe/Paris,,OM1, +OM1:SP:474,1,"BELLE DE MAI LA FRICHE",43.309416,5.39061,0,0,OM1:SA:CTP431,Europe/Paris,,OM1, +OM1:SP:481,1,"PELLETAN MARCEAU",43.303255,5.374078,0,0,OM1:SA:CTP481,Europe/Paris,,OM1, +OM1:SP:482,1,"PLACE DE STRASBOURG",43.306232,5.373485,0,0,OM1:SA:CTP460,Europe/Paris,,OM1, +OM1:SP:483,1,"PELLETAN SAINT LAZARE",43.308476,5.374268,0,0,OM1:SA:CTP483,Europe/Paris,,OM1, +OM1:SP:484,1,"SALENGRO MIRES",43.311608,5.372562,0,0,OM1:SA:CTP484,Europe/Paris,,OM1, +OM1:SP:485,1,"SALENGRO NATIONAL",43.314164,5.370912,0,0,OM1:SA:CTP485,Europe/Paris,,OM1, +OM1:SP:486,1,"METRO NATIONAL",43.315547,5.373214,0,0,OM1:SA:CTP486,Europe/Paris,,OM1, +OM1:SP:488,1,"DE LESSEPS CASANOVA",43.320989,5.374426,0,0,OM1:SA:CTP488,Europe/Paris,,OM1, +OM1:SP:489,1,"METRO BOUGAINVILLE",43.320048,5.370484,0,0,OM1:SA:CTP1,Europe/Paris,,OM1, +OM1:SP:491,1,"SALENGRO COUGIT",43.322102,5.367785,0,0,OM1:SA:CTP491,Europe/Paris,,OM1, +OM1:SP:492,1,"ODDO LYON",43.329108,5.364878,0,0,OM1:SA:CTP492,Europe/Paris,,OM1, +OM1:SP:493,1,"ODDO BUTINEUSE",43.328098,5.360834,0,0,OM1:SA:CTP493,Europe/Paris,,OM1, +OM1:SP:494,1,"RABATTU",43.328533,5.359428,0,0,OM1:SA:CTP494,Europe/Paris,,OM1, +OM1:SP:495,1,"MOULIN A VENT",43.330814,5.359228,0,0,OM1:SA:CTP495,Europe/Paris,,OM1, +OM1:SP:496,1,"DEMANDOLX",43.333404,5.358576,0,0,OM1:SA:CTP496,Europe/Paris,,OM1, +OM1:SP:497,1,"LA CABUCELLE",43.336356,5.357549,0,0,OM1:SA:CTP497,Europe/Paris,,OM1, +OM1:SP:498,1,"LES ABATTOIRS",43.338334,5.357566,0,0,OM1:SA:CTP498,Europe/Paris,,OM1, +OM1:SP:499,1,"TRAVERSE MARITIME",43.339594,5.355255,0,0,OM1:SA:CTP499,Europe/Paris,,OM1, +OM1:SP:50,1,"LYON CAP PINEDE",43.327294,5.366088,0,0,OM1:SA:CTP3,Europe/Paris,,OM1, +OM1:SP:501,1,"LA CALADE",43.341012,5.352792,0,0,OM1:SA:CTP501,Europe/Paris,,OM1, +OM1:SP:502,1,"CAMPAGNE LEVEQUE",43.342651,5.353038,0,0,OM1:SA:CTP502,Europe/Paris,,OM1, +OM1:SP:503,1,"PISCINE MUNICIPALE",43.344614,5.354534,0,0,OM1:SA:CTP503,Europe/Paris,,OM1, +OM1:SP:504,1,"LYCEE SAINT EXUPERY",43.34741,5.355223,0,0,OM1:SA:CTP504,Europe/Paris,,OM1, +OM1:SP:505,1,"PISCINE MUNICIPALE",43.344314,5.354025,0,0,OM1:SA:CTP503,Europe/Paris,,OM1, +OM1:SP:506,1,"CAMPAGNE LEVEQUE",43.342905,5.352953,0,0,OM1:SA:CTP502,Europe/Paris,,OM1, +OM1:SP:507,1,"LA CALADE",43.340968,5.352136,0,0,OM1:SA:CTP501,Europe/Paris,,OM1, +OM1:SP:509,1,"TRAVERSE MARITIME",43.33947,5.355211,0,0,OM1:SA:CTP499,Europe/Paris,,OM1, +OM1:SP:51,1,"LES CROTTES",43.324106,5.367201,0,0,OM1:SA:CTP2,Europe/Paris,,OM1, +OM1:SP:510,1,"LES ABATTOIRS",43.338868,5.357089,0,0,OM1:SA:CTP498,Europe/Paris,,OM1, +OM1:SP:511,1,"LA CABUCELLE",43.336758,5.357311,0,0,OM1:SA:CTP497,Europe/Paris,,OM1, +OM1:SP:512,1,"DEMANDOLX",43.33342,5.35833,0,0,OM1:SA:CTP496,Europe/Paris,,OM1, +OM1:SP:513,1,"MOULIN A VENT",43.330238,5.358939,0,0,OM1:SA:CTP495,Europe/Paris,,OM1, +OM1:SP:514,1,"RABATTU",43.328292,5.35939,0,0,OM1:SA:CTP494,Europe/Paris,,OM1, +OM1:SP:515,1,"ODDO BUTINEUSE",43.327899,5.360577,0,0,OM1:SA:CTP493,Europe/Paris,,OM1, +OM1:SP:516,1,"ODDO LYON",43.329033,5.36501,0,0,OM1:SA:CTP492,Europe/Paris,,OM1, +OM1:SP:517,1,"METRO BOUGAINVILLE",43.321599,5.371293,0,0,OM1:SA:CTP1,Europe/Paris,,OM1, +OM1:SP:518,1,"PLACE BOUGAINVILLE",43.31972,5.369026,0,0,OM1:SA:CTP518,Europe/Paris,,OM1, +OM1:SP:519,1,"PLACE CAZEMAJOU",43.318143,5.366935,0,0,OM1:SA:CTP2095,Europe/Paris,,OM1, +OM1:SP:52,1,"MAGALLON SALENGRO",43.322222,5.368345,0,0,OM1:SA:CTP52,Europe/Paris,,OM1, +OM1:SP:520,1,"RUFFI URBAIN V",43.315956,5.368593,0,0,OM1:SA:CTP520,Europe/Paris,,OM1, +OM1:SP:524,1,"PARIS FORBIN",43.305585,5.372502,0,0,OM1:SA:CTP524,Europe/Paris,,OM1, +OM1:SP:525,1,"METRO JULES GUESDE",43.302108,5.374325,0,0,OM1:SA:CTP420,Europe/Paris,,OM1, +OM1:SP:528,1,"NATIONAL PYAT",43.312989,5.375566,0,0,OM1:SA:CTP377,Europe/Paris,,OM1, +OM1:SP:529,1,"AUPHAN FELIX PYAT",43.31657,5.374549,0,0,OM1:SA:CTP529,Europe/Paris,,OM1, +OM1:SP:53,1,"METRO BOUGAINVILLE",43.321161,5.370875,0,0,OM1:SA:CTP1,Europe/Paris,,OM1, +OM1:SP:530,1,"AUPHAN VAILLANT",43.317147,5.378016,0,0,OM1:SA:CTP3529,Europe/Paris,,OM1, +OM1:SP:531,1,"PLOMBIERES BATTALA",43.31814,5.379793,0,0,OM1:SA:CTP2045,Europe/Paris,,OM1, +OM1:SP:532,1,"PLOMBIERES CUBEDDU",43.31684,5.381879,0,0,OM1:SA:CTP532,Europe/Paris,,OM1, +OM1:SP:535,1,"SAINT GABRIEL",43.322806,5.382984,0,0,OM1:SA:CTP535,Europe/Paris,,OM1, +OM1:SP:536,1,"GIBBES MORETTI",43.324157,5.382292,0,0,OM1:SA:CTP536,Europe/Paris,,OM1, +OM1:SP:537,1,"GIBBES D ARTAGNAN",43.327179,5.384485,0,0,OM1:SA:CTP537,Europe/Paris,,OM1, +OM1:SP:538,1,"GIBBES ROUFFE",43.328144,5.385029,0,0,OM1:SA:CTP538,Europe/Paris,,OM1, +OM1:SP:539,1,"GIBBES LAROUSSE",43.329344,5.384883,0,0,OM1:SA:CTP539,Europe/Paris,,OM1, +OM1:SP:540,1,"ARNAVAUX",43.331269,5.385515,0,0,OM1:SA:CTP540,Europe/Paris,,OM1, +OM1:SP:541,1,"RESIDENCE STATION",43.332018,5.385728,0,0,OM1:SA:CTP541,Europe/Paris,,OM1, +OM1:SP:542,1,"CANET GARE",43.333039,5.38333,0,0,OM1:SA:CTP542,Europe/Paris,,OM1, +OM1:SP:543,1,"BOVET MURET",43.331094,5.380886,0,0,OM1:SA:CTP543,Europe/Paris,,OM1, +OM1:SP:544,1,"ARNAVAUX JAURES",43.332585,5.380621,0,0,OM1:SA:CTP544,Europe/Paris,,OM1, +OM1:SP:545,1,"ARNAVAUX TISSERON",43.332871,5.379108,0,0,OM1:SA:CTP545,Europe/Paris,,OM1, +OM1:SP:546,1,"LE CANET JEAN JAURES",43.333396,5.37804,0,0,OM1:SA:CTP546,Europe/Paris,,OM1, +OM1:SP:547,1,"TISSERON",43.333164,5.378606,0,0,OM1:SA:CTP547,Europe/Paris,,OM1, +OM1:SP:548,1,"BOVET MURET",43.331021,5.380612,0,0,OM1:SA:CTP543,Europe/Paris,,OM1, +OM1:SP:549,1,"FINAT DUCLOS",43.33232,5.382676,0,0,OM1:SA:CTP549,Europe/Paris,,OM1, +OM1:SP:550,1,"H.L.M STATION",43.330977,5.385007,0,0,OM1:SA:CTP550,Europe/Paris,,OM1, +OM1:SP:551,1,"GIBBES LAROUSSE",43.329174,5.384874,0,0,OM1:SA:CTP539,Europe/Paris,,OM1, +OM1:SP:552,1,"GIBBES D ARTAGNAN",43.327697,5.384623,0,0,OM1:SA:CTP537,Europe/Paris,,OM1, +OM1:SP:553,1,"GIBBES MORETTI",43.324374,5.382254,0,0,OM1:SA:CTP536,Europe/Paris,,OM1, +OM1:SP:554,1,"SAINT GABRIEL",43.322748,5.3825,0,0,OM1:SA:CTP535,Europe/Paris,,OM1, +OM1:SP:555,1,"CARRIERE BON SECOURS",43.319885,5.382312,0,0,OM1:SA:CTP555,Europe/Paris,,OM1, +OM1:SP:556,1,"GIBBES BON SECOURS",43.319781,5.380249,0,0,OM1:SA:CTP556,Europe/Paris,,OM1, +OM1:SP:557,1,"GIBBES PLOMBIERES",43.319184,5.379429,0,0,OM1:SA:CTP557,Europe/Paris,,OM1, +OM1:SP:558,1,"PLOMBIERES BATTALA",43.317886,5.377944,0,0,OM1:SA:CTP2045,Europe/Paris,,OM1, +OM1:SP:559,1,"AUPHAN VAILLANT",43.317036,5.377145,0,0,OM1:SA:CTP3529,Europe/Paris,,OM1, +OM1:SP:560,1,"AUPHAN FELIX PYAT",43.316704,5.374568,0,0,OM1:SA:CTP529,Europe/Paris,,OM1, +OM1:SP:561,1,"METRO NATIONAL",43.315319,5.372993,0,0,OM1:SA:CTP486,Europe/Paris,,OM1, +OM1:SP:563,1,"BOURRELY DRAMARD",43.377858,5.358466,0,0,OM1:SA:CTP563,Europe/Paris,,OM1, +OM1:SP:564,1,"HOPITAL EDOUARD TOULOUSE",43.381207,5.358347,0,0,OM1:SA:CTP564,Europe/Paris,,OM1, +OM1:SP:565,1,"LA BIGOTTE",43.384253,5.366115,0,0,OM1:SA:CTP565,Europe/Paris,,OM1, +OM1:SP:566,1,"LA SOLIDARITE",43.386148,5.369409,0,0,OM1:SA:CTP566,Europe/Paris,,OM1, +OM1:SP:567,1,"LA BIGOTTE",43.384466,5.366237,0,0,OM1:SA:CTP565,Europe/Paris,,OM1, +OM1:SP:570,1,"METRO LA ROSE",43.332862,5.42958,0,0,OM1:SA:CTP2186,Europe/Paris,,OM1, +OM1:SP:571,1,"LA ROSE POSTE",43.331528,5.428116,0,0,OM1:SA:CTP571,Europe/Paris,,OM1, +OM1:SP:572,1,"LA GRAVE LA ROSE",43.329908,5.427228,0,0,OM1:SA:CTP572,Europe/Paris,,OM1, +OM1:SP:573,1,"LA ROSE",43.33009,5.429677,0,0,OM1:SA:CTP573,Europe/Paris,,OM1, +OM1:SP:574,1,"LA ROSE BOULEVARD NEUF",43.331263,5.432648,0,0,OM1:SA:CTP574,Europe/Paris,,OM1, +OM1:SP:575,1,"LA CROIX ROUGE VAL PLAN",43.332337,5.435009,0,0,OM1:SA:CTP575,Europe/Paris,,OM1, +OM1:SP:576,1,"LA BEGUDE",43.333172,5.438516,0,0,OM1:SA:CTP576,Europe/Paris,,OM1, +OM1:SP:577,1,"LA RAVELLE",43.33461,5.442881,0,0,OM1:SA:CTP577,Europe/Paris,,OM1, +OM1:SP:578,1,"LA CROIX ROUGE EGLISE",43.334552,5.448336,0,0,OM1:SA:CTP578,Europe/Paris,,OM1, +OM1:SP:579,1,"LA CROIX ROUGE",43.334755,5.451267,0,0,OM1:SA:CTP2146,Europe/Paris,,OM1, +OM1:SP:580,1,"DELPRAT VALLON VERT",43.334891,5.453085,0,0,OM1:SA:CTP580,Europe/Paris,,OM1, +OM1:SP:581,1,"LES BARTAVELLES",43.33339,5.456157,0,0,OM1:SA:CTP581,Europe/Paris,,OM1, +OM1:SP:582,1,"FOURNACLE LES AURENGUES",43.332767,5.458107,0,0,OM1:SA:CTP582,Europe/Paris,,OM1, +OM1:SP:584,1,"FOURNACLE LES AURENGUES",43.332876,5.458384,0,0,OM1:SA:CTP582,Europe/Paris,,OM1, +OM1:SP:585,1,"LES BARTAVELLES",43.333925,5.455694,0,0,OM1:SA:CTP581,Europe/Paris,,OM1, +OM1:SP:586,1,"DELPRAT VALLON VERT",43.334916,5.453764,0,0,OM1:SA:CTP580,Europe/Paris,,OM1, +OM1:SP:587,1,"LA CROIX ROUGE",43.334978,5.451316,0,0,OM1:SA:CTP2146,Europe/Paris,,OM1, +OM1:SP:588,1,"LA CROIX ROUGE EGLISE",43.334871,5.447885,0,0,OM1:SA:CTP578,Europe/Paris,,OM1, +OM1:SP:589,1,"LA RAVELLE",43.33468,5.442639,0,0,OM1:SA:CTP577,Europe/Paris,,OM1, +OM1:SP:590,1,"LA BEGUDE",43.333244,5.437867,0,0,OM1:SA:CTP576,Europe/Paris,,OM1, +OM1:SP:591,1,"LA CROIX ROUGE VAL PLAN",43.332465,5.43493,0,0,OM1:SA:CTP575,Europe/Paris,,OM1, +OM1:SP:592,1,"LA ROSE BOULEVARD NEUF",43.331403,5.432778,0,0,OM1:SA:CTP574,Europe/Paris,,OM1, +OM1:SP:593,1,"LA ROSE",43.329807,5.428861,0,0,OM1:SA:CTP573,Europe/Paris,,OM1, +OM1:SP:594,1,"LA GRAVE LA ROSE",43.329918,5.427524,0,0,OM1:SA:CTP572,Europe/Paris,,OM1, +OM1:SP:595,1,"LA ROSE POSTE",43.331553,5.428499,0,0,OM1:SA:CTP571,Europe/Paris,,OM1, +OM1:SP:596,1,"METRO LA ROSE",43.333485,5.430439,0,0,OM1:SA:CTP2186,Europe/Paris,,OM1, +OM1:SP:597,1,"METRO LA ROSE",43.333312,5.429592,0,0,OM1:SA:CTP2186,Europe/Paris,,OM1, +OM1:SP:599,1,"BERTHE SYLVA VALDONNE",43.32757,5.419157,0,0,OM1:SA:CTP599,Europe/Paris,,OM1, +OM1:SP:613,1,"BERTHE SYLVA VALDONNE",43.327382,5.418728,0,0,OM1:SA:CTP599,Europe/Paris,,OM1, +OM1:SP:615,1,"METRO LA ROSE",43.332969,5.429635,0,0,OM1:SA:CTP2186,Europe/Paris,,OM1, +OM1:SP:616,1,"LA ROSE",43.329707,5.428905,0,0,OM1:SA:CTP573,Europe/Paris,,OM1, +OM1:SP:617,1,"LES BAUDILLONS",43.328342,5.433537,0,0,OM1:SA:CTP617,Europe/Paris,,OM1, +OM1:SP:618,1,"CLOS D'ORVILLE",43.327538,5.435834,0,0,OM1:SA:CTP618,Europe/Paris,,OM1, +OM1:SP:619,1,"LA MAURELLE",43.326194,5.439124,0,0,OM1:SA:CTP619,Europe/Paris,,OM1, +OM1:SP:620,1,"LES MARTEGAUX",43.325116,5.441887,0,0,OM1:SA:CTP620,Europe/Paris,,OM1, +OM1:SP:621,1,"FONDACLE",43.323302,5.445829,0,0,OM1:SA:CTP621,Europe/Paris,,OM1, +OM1:SP:622,1,"LES OLIVES COMTESSE",43.323092,5.448108,0,0,OM1:SA:CTP622,Europe/Paris,,OM1, +OM1:SP:623,1,"LES AURENGUES",43.324656,5.450029,0,0,OM1:SA:CTP623,Europe/Paris,,OM1, +OM1:SP:624,1,"LES ACACIAS",43.325402,5.452841,0,0,OM1:SA:CTP624,Europe/Paris,,OM1, +OM1:SP:625,1,"LES OLIVES VILLAGE",43.323951,5.456038,0,0,OM1:SA:CTP625,Europe/Paris,,OM1, +OM1:SP:626,1,"POILUS MISTRAL",43.322539,5.456971,0,0,OM1:SA:CTP626,Europe/Paris,,OM1, +OM1:SP:627,1,"VELODROME",43.320881,5.458002,0,0,OM1:SA:CTP2780,Europe/Paris,,OM1, +OM1:SP:628,1,"POILUS SIPHON",43.317618,5.46014,0,0,OM1:SA:CTP628,Europe/Paris,,OM1, +OM1:SP:629,1,"POILUS ECOLES",43.314294,5.462484,0,0,OM1:SA:CTP629,Europe/Paris,,OM1, +OM1:SP:630,1,"LES 3 LUCS SAINTE RITA",43.311862,5.464186,0,0,OM1:SA:CTP630,Europe/Paris,,OM1, +OM1:SP:631,1,"PEINTRES ROUX JARDINERIE",43.306232,5.469445,0,0,OM1:SA:CTP631,Europe/Paris,,OM1, +OM1:SP:634,1,"LA VALENTINE",43.296452,5.482873,0,0,OM7:SA:CTP5000061,Europe/Paris,,OM1, +OM1:SP:635,1,"LA SABLIERE LA RAVELLE",43.292097,5.478954,0,0,OM1:SA:CTP635,Europe/Paris,,OM1, +OM1:SP:636,1,"LA SABLIERE",43.290733,5.477635,0,0,OM1:SA:CTP636,Europe/Paris,,OM1, +OM1:SP:637,1,"LA SABLIERE LA MONTRE",43.290636,5.474466,0,0,OM1:SA:CTP637,Europe/Paris,,OM1, +OM1:SP:638,1,"VILLAGE ESTELLAN",43.292077,5.473486,0,0,OM1:SA:CTP638,Europe/Paris,,OM1, +OM1:SP:639,1,"LA VALENTINE CENTRE COMMERCIAL",43.294058,5.475528,0,0,OM1:SA:CTP1382,Europe/Paris,,OM1, +OM1:SP:640,1,"VILLAGE ESTELLAN",43.291882,5.473057,0,0,OM1:SA:CTP638,Europe/Paris,,OM1, +OM1:SP:641,1,"LA SABLIERE LA MONTRE",43.290559,5.473723,0,0,OM1:SA:CTP637,Europe/Paris,,OM1, +OM1:SP:642,1,"LA SABLIERE SAINT MENET",43.291677,5.479152,0,0,OM1:SA:CTP642,Europe/Paris,,OM1, +OM1:SP:643,1,"LA SABLIERE LA RAVELLE",43.293981,5.480657,0,0,OM1:SA:CTP643,Europe/Paris,,OM1, +OM1:SP:644,1,"LA VALENTINE",43.296622,5.483523,0,0,OM7:SA:CTP5000061,Europe/Paris,,OM1, +OM1:SP:646,1,"LES TROIS LUCS BOUQUIERE",43.301614,5.477024,0,0,OM1:SA:CTP2499,Europe/Paris,,OM1, +OM1:SP:647,1,"PEINTRES ROUX LA SERVIANE",43.303658,5.474772,0,0,OM1:SA:CTP2501,Europe/Paris,,OM1, +OM1:SP:648,1,"PEINTRES ROUX JARDINERIE",43.30668,5.469211,0,0,OM1:SA:CTP631,Europe/Paris,,OM1, +OM1:SP:649,1,"LES 3 LUCS SAINTE RITA",43.313224,5.463743,0,0,OM1:SA:CTP630,Europe/Paris,,OM1, +OM1:SP:650,1,"POILUS ECOLES",43.314519,5.462508,0,0,OM1:SA:CTP629,Europe/Paris,,OM1, +OM1:SP:651,1,"POILUS SIPHON",43.317962,5.46006,0,0,OM1:SA:CTP628,Europe/Paris,,OM1, +OM1:SP:653,1,"POILUS MISTRAL",43.322634,5.457124,0,0,OM1:SA:CTP626,Europe/Paris,,OM1, +OM1:SP:654,1,"LES OLIVES VILLAGE",43.323788,5.456387,0,0,OM1:SA:CTP625,Europe/Paris,,OM1, +OM1:SP:655,1,"LES ACACIAS",43.325523,5.452687,0,0,OM1:SA:CTP624,Europe/Paris,,OM1, +OM1:SP:656,1,"LES AURENGUES",43.325104,5.450385,0,0,OM1:SA:CTP623,Europe/Paris,,OM1, +OM1:SP:657,1,"LES OLIVES COMTESSE",43.323836,5.448814,0,0,OM1:SA:CTP622,Europe/Paris,,OM1, +OM1:SP:658,1,"FONDACLE",43.323206,5.446661,0,0,OM1:SA:CTP621,Europe/Paris,,OM1, +OM1:SP:659,1,"LES MARTEGAUX",43.325265,5.441993,0,0,OM1:SA:CTP620,Europe/Paris,,OM1, +OM1:SP:660,1,"LA MAURELLE",43.326753,5.437812,0,0,OM1:SA:CTP619,Europe/Paris,,OM1, +OM1:SP:661,1,"LES BAUDILLONS",43.328394,5.433922,0,0,OM1:SA:CTP617,Europe/Paris,,OM1, +OM1:SP:662,1,"LES TROIS LUCS",43.312549,5.464692,0,0,OM1:SA:CTP662,Europe/Paris,,OM1, +OM1:SP:663,1,"LES VAUDRANS",43.309004,5.47616,0,0,OM1:SA:CTP663,Europe/Paris,,OM1, +OM1:SP:664,1,"LES VAUDRANS TROIS LUCS",43.306907,5.470664,0,0,OM1:SA:CTP1393,Europe/Paris,,OM1, +OM1:SP:666,1,"VALDONNE FUVEAU",43.32919,5.419047,0,0,OM1:SA:CTP666,Europe/Paris,,OM1, +OM1:SP:667,1,"SAINT JEROME PELABON",43.330898,5.41936,0,0,OM1:SA:CTP667,Europe/Paris,,OM1, +OM1:SP:668,1,"SAINT JEROME LES SEREINS",43.332625,5.419983,0,0,OM1:SA:CTP668,Europe/Paris,,OM1, +OM1:SP:669,1,"VAL DES PINS",43.335234,5.420887,0,0,OM1:SA:CTP669,Europe/Paris,,OM1, +OM1:SP:670,1,"LES ALVERGNES",43.337624,5.420966,0,0,OM1:SA:CTP670,Europe/Paris,,OM1, +OM1:SP:671,1,"NOTRE DAME DE LA CONSOLATION",43.339509,5.420759,0,0,OM1:SA:CTP671,Europe/Paris,,OM1, +OM1:SP:672,1,"SAINT MITRE",43.342303,5.420232,0,0,OM1:SA:CTP1071,Europe/Paris,,OM1, +OM1:SP:673,1,"LES 2 TOURS",43.345188,5.424047,0,0,OM1:SA:CTP673,Europe/Paris,,OM1, +OM1:SP:674,1,"STADE MALLET",43.346458,5.426506,0,0,OM1:SA:CTP674,Europe/Paris,,OM1, +OM1:SP:676,1,"LA JULIENNE",43.347661,5.429701,0,0,OM1:SA:CTP676,Europe/Paris,,OM1, +OM1:SP:677,1,"TASTEVIN",43.34952,5.431353,0,0,OM1:SA:CTP677,Europe/Paris,,OM1, +OM1:SP:678,1,"GROTTES LOUBIERE",43.35135,5.433412,0,0,OM1:SA:CTP678,Europe/Paris,,OM1, +OM1:SP:679,1,"LES MOURETS",43.351956,5.43639,0,0,OM1:SA:CTP679,Europe/Paris,,OM1, +OM1:SP:680,1,"PALAMA CHATEAU GOMBERT",43.352382,5.43783,0,0,OM1:SA:CTP680,Europe/Paris,,OM1, +OM1:SP:681,1,"CHATEAU GOMBERT",43.353333,5.438251,0,0,OM1:SA:CTP4160,Europe/Paris,,OM1, +OM1:SP:682,1,"PALAMA CAMOINS",43.354632,5.439357,0,0,OM1:SA:CTP682,Europe/Paris,,OM1, +OM1:SP:683,1,"PALAMA FUMADE",43.357061,5.44024,0,0,OM1:SA:CTP683,Europe/Paris,,OM1, +OM1:SP:684,1,"PALAMA CARROUSSEL",43.358288,5.441046,0,0,OM1:SA:CTP684,Europe/Paris,,OM1, +OM1:SP:685,1,"PALAMA ECUYERS",43.359675,5.442218,0,0,OM1:SA:CTP685,Europe/Paris,,OM1, +OM1:SP:686,1,"PALAMA CHARS",43.360834,5.442872,0,0,OM1:SA:CTP686,Europe/Paris,,OM1, +OM1:SP:687,1,"CHATEAU DE LA PARADE",43.361234,5.441797,0,0,OM1:SA:CTP687,Europe/Paris,,OM1, +OM1:SP:688,1,"LA PARADE COLLECTIFS",43.361122,5.440078,0,0,OM1:SA:CTP688,Europe/Paris,,OM1, +OM1:SP:689,1,"PARADE ARGELAS",43.361367,5.43749,0,0,OM1:SA:CTP689,Europe/Paris,,OM1, +OM1:SP:690,1,"LA PARADE PIERROTS",43.361829,5.439894,0,0,OM1:SA:CTP690,Europe/Paris,,OM1, +OM1:SP:691,1,"LA PARADE",43.363069,5.440861,0,0,OM1:SA:CTP691,Europe/Paris,,OM1, +OM1:SP:692,1,"LA PARADE PIERROTS",43.36179,5.439695,0,0,OM1:SA:CTP690,Europe/Paris,,OM1, +OM1:SP:693,1,"PARADE ARGELAS",43.361538,5.437512,0,0,OM1:SA:CTP689,Europe/Paris,,OM1, +OM1:SP:694,1,"LA PARADE COLLECTIFS",43.361028,5.440221,0,0,OM1:SA:CTP688,Europe/Paris,,OM1, +OM1:SP:695,1,"CHATEAU DE LA PARADE",43.361301,5.441665,0,0,OM1:SA:CTP687,Europe/Paris,,OM1, +OM1:SP:696,1,"PALAMA CHARS",43.360793,5.442735,0,0,OM1:SA:CTP686,Europe/Paris,,OM1, +OM1:SP:697,1,"PALAMA ECUYERS",43.359732,5.44211,0,0,OM1:SA:CTP685,Europe/Paris,,OM1, +OM1:SP:698,1,"PALAMA CARROUSSEL",43.358381,5.440928,0,0,OM1:SA:CTP684,Europe/Paris,,OM1, +OM1:SP:699,1,"PALAMA FUMADE",43.357296,5.440216,0,0,OM1:SA:CTP683,Europe/Paris,,OM1, +OM1:SP:700,1,"PALAMA CAMOINS",43.354843,5.439196,0,0,OM1:SA:CTP682,Europe/Paris,,OM1, +OM1:SP:701,1,"CHATEAU GOMBERT",43.353248,5.438062,0,0,OM1:SA:CTP4160,Europe/Paris,,OM1, +OM1:SP:703,1,"GROTTES LOUBIERE",43.351353,5.432981,0,0,OM1:SA:CTP678,Europe/Paris,,OM1, +OM1:SP:704,1,"TASTEVIN",43.349503,5.430995,0,0,OM1:SA:CTP677,Europe/Paris,,OM1, +OM1:SP:705,1,"LA JULIENNE",43.347714,5.429432,0,0,OM1:SA:CTP676,Europe/Paris,,OM1, +OM1:SP:707,1,"STADE MALLET",43.346536,5.426276,0,0,OM1:SA:CTP674,Europe/Paris,,OM1, +OM1:SP:708,1,"LES 2 TOURS",43.345165,5.423614,0,0,OM1:SA:CTP673,Europe/Paris,,OM1, +OM1:SP:709,1,"SAINT MITRE",43.342398,5.420065,0,0,OM1:SA:CTP1071,Europe/Paris,,OM1, +OM1:SP:710,1,"ST MITRE ECOLES",43.341189,5.419876,0,0,OM1:SA:CTP710,Europe/Paris,,OM1, +OM1:SP:711,1,"NOTRE DAME DE LA CONSOLATION",43.339283,5.420181,0,0,OM1:SA:CTP671,Europe/Paris,,OM1, +OM1:SP:712,1,"LES ALVERGNES",43.336728,5.420844,0,0,OM1:SA:CTP670,Europe/Paris,,OM1, +OM1:SP:713,1,"VAL DES PINS",43.335226,5.420529,0,0,OM1:SA:CTP669,Europe/Paris,,OM1, +OM1:SP:714,1,"SAINT JEROME LES SEREINS",43.332401,5.419626,0,0,OM1:SA:CTP668,Europe/Paris,,OM1, +OM1:SP:715,1,"SAINT JEROME PELABON",43.330519,5.419093,0,0,OM1:SA:CTP667,Europe/Paris,,OM1, +OM1:SP:716,1,"VALDONNE FUVEAU",43.328184,5.418685,0,0,OM1:SA:CTP666,Europe/Paris,,OM1, +OM1:SP:717,1,"PLACE DES HEROS",43.351761,5.439435,0,0,OM1:SA:CTP717,Europe/Paris,,OM1, +OM1:SP:718,1,"PALAMA CHATEAU GOMBERT",43.352326,5.437605,0,0,OM1:SA:CTP680,Europe/Paris,,OM1, +OM1:SP:720,1,"BARA PRATS",43.351281,5.440802,0,0,OM1:SA:CTP720,Europe/Paris,,OM1, +OM1:SP:721,1,"BARA LA CROIX",43.350261,5.443113,0,0,OM1:SA:CTP721,Europe/Paris,,OM1, +OM1:SP:722,1,"BARA BESSONS",43.348084,5.446877,0,0,OM1:SA:CTP722,Europe/Paris,,OM1, +OM1:SP:724,1,"BARA BESSONS",43.347727,5.448644,0,0,OM1:SA:CTP722,Europe/Paris,,OM1, +OM1:SP:725,1,"BARA LA CROIX",43.349274,5.444588,0,0,OM1:SA:CTP721,Europe/Paris,,OM1, +OM1:SP:726,1,"BARA PRATS",43.350983,5.442068,0,0,OM1:SA:CTP720,Europe/Paris,,OM1, +OM1:SP:727,1,"PLACE DES HEROS",43.351587,5.440473,0,0,OM1:SA:CTP717,Europe/Paris,,OM1, +OM1:SP:728,1,"METRO LA ROSE",43.333159,5.429571,0,0,OM1:SA:CTP2186,Europe/Paris,,OM1, +OM1:SP:731,1,"BARIELLE",43.337676,5.432291,0,0,OM1:SA:CTP738,Europe/Paris,,OM1, +OM1:SP:732,1,"CONSOLATION GRACIEUSE",43.338961,5.430168,0,0,OM1:SA:CTP732,Europe/Paris,,OM1, +OM1:SP:733,1,"LYCEE ARTAUD",43.34045,5.424322,0,0,OM1:SA:CTP733,Europe/Paris,,OM1, +OM1:SP:734,1,"CONSOLATION BALUSTRES",43.339875,5.421173,0,0,OM1:SA:CTP734,Europe/Paris,,OM1, +OM1:SP:735,1,"CONSOLATION BALUSTRES",43.339621,5.421887,0,0,OM1:SA:CTP734,Europe/Paris,,OM1, +OM1:SP:736,1,"LYCEE ARTAUD",43.340402,5.424738,0,0,OM1:SA:CTP733,Europe/Paris,,OM1, +OM1:SP:737,1,"CONSOLATION GRACIEUSE",43.339007,5.429172,0,0,OM1:SA:CTP732,Europe/Paris,,OM1, +OM1:SP:738,1,"BARIELLE",43.337033,5.432478,0,0,OM1:SA:CTP738,Europe/Paris,,OM1, +OM1:SP:745,1,"DUPARC BLANCARDE",43.303108,5.400875,0,0,OM1:SA:CTP745,Europe/Paris,,OM1, +OM1:SP:746,1,"PLACE BROSSOLETTE",43.305848,5.400985,0,0,OM1:SA:CTP1100,Europe/Paris,,OM1, +OM1:SP:747,1,"ROUX SAINT BRUNO",43.307685,5.402154,0,0,OM1:SA:CTP747,Europe/Paris,,OM1, +OM1:SP:748,1,"ROUX GAVAUDAN",43.307072,5.405052,0,0,OM1:SA:CTP748,Europe/Paris,,OM1, +OM1:SP:749,1,"ROUX ESPLANADE",43.307009,5.408521,0,0,OM1:SA:CTP749,Europe/Paris,,OM1, +OM1:SP:750,1,"ROUX MONTOLIVET",43.309225,5.408701,0,0,OM1:SA:CTP750,Europe/Paris,,OM1, +OM1:SP:751,1,"CENTRE GERONTOLOGIQUE",43.311371,5.410072,0,0,OM1:SA:CTP751,Europe/Paris,,OM1, +OM1:SP:752,1,"MONTOLIVET BEAUREGARD",43.312514,5.411907,0,0,OM1:SA:CTP752,Europe/Paris,,OM1, +OM1:SP:753,1,"LE PETIT BOSQUET",43.313706,5.413326,0,0,OM1:SA:CTP753,Europe/Paris,,OM1, +OM1:SP:754,1,"MONTOLIVET CORBIERE",43.314796,5.414529,0,0,OM1:SA:CTP754,Europe/Paris,,OM1, +OM1:SP:755,1,"TRAVERSE SAINT JUST",43.316323,5.415831,0,0,OM1:SA:CTP755,Europe/Paris,,OM1, +OM1:SP:756,1,"MONTOLIVET MATHERON",43.317694,5.419131,0,0,OM1:SA:CTP756,Europe/Paris,,OM1, +OM1:SP:757,1,"MONTOLIVET CHABOT",43.31812,5.422171,0,0,OM1:SA:CTP757,Europe/Paris,,OM1, +OM1:SP:758,1,"MONTOLIVET",43.317846,5.423893,0,0,OM1:SA:CTP758,Europe/Paris,,OM1, +OM1:SP:759,1,"RICHARD PY",43.315654,5.425376,0,0,OM1:SA:CTP759,Europe/Paris,,OM1, +OM1:SP:760,1,"RICHARD AIGUILLETTE",43.315365,5.428218,0,0,OM1:SA:CTP760,Europe/Paris,,OM1, +OM1:SP:761,1,"MAZARADE NORMA",43.315018,5.429653,0,0,OM1:SA:CTP761,Europe/Paris,,OM1, +OM1:SP:762,1,"NORMA PEYRARD",43.316766,5.430806,0,0,OM1:SA:CTP762,Europe/Paris,,OM1, +OM1:SP:763,1,"NORMA COMPOSTELLE",43.318519,5.431442,0,0,OM1:SA:CTP763,Europe/Paris,,OM1, +OM1:SP:764,1,"BOIS LEMAITRE",43.320553,5.432648,0,0,OM1:SA:CTP2972,Europe/Paris,,OM1, +OM1:SP:765,1,"COMPADIEU",43.319797,5.432645,0,0,OM1:SA:CTP765,Europe/Paris,,OM1, +OM1:SP:766,1,"LA PIGNATELLE",43.31711,5.436047,0,0,OM1:SA:CTP766,Europe/Paris,,OM1, +OM1:SP:767,1,"KADDOUZ BEAUMONT",43.317556,5.438645,0,0,OM1:SA:CTP767,Europe/Paris,,OM1, +OM1:SP:768,1,"KADDOUZ SEMINAIRE",43.318818,5.439489,0,0,OM1:SA:CTP768,Europe/Paris,,OM1, +OM1:SP:769,1,"PETIT SEMINAIRE",43.320737,5.440615,0,0,OM1:SA:CTP769,Europe/Paris,,OM1, +OM1:SP:770,1,"JONQUILLES LOTUS",43.321141,5.438765,0,0,OM1:SA:CTP770,Europe/Paris,,OM1, +OM1:SP:771,1,"JONQUILLES MAURELLE",43.322343,5.438251,0,0,OM1:SA:CTP771,Europe/Paris,,OM1, +OM1:SP:772,1,"FRAIS VALLON LES ROSES",43.324177,5.436404,0,0,OM1:SA:CTP772,Europe/Paris,,OM1, +OM1:SP:773,1,"FRAIS VALLON COLLEGE",43.325299,5.433656,0,0,OM1:SA:CTP773,Europe/Paris,,OM1, +OM1:SP:775,1,"FRAIS VALLON PISCINE",43.324981,5.426889,0,0,OM1:SA:CTP775,Europe/Paris,,OM1, +OM1:SP:776,1,"METRO FRAIS VALLON",43.324742,5.424572,0,0,OM1:SA:CTP776,Europe/Paris,,OM1, +OM1:SP:777,1,"FRAIS VALLON PISCINE",43.324849,5.427091,0,0,OM1:SA:CTP775,Europe/Paris,,OM1, +OM1:SP:779,1,"FRAIS VALLON COLLEGE",43.325145,5.433685,0,0,OM1:SA:CTP773,Europe/Paris,,OM1, +OM1:SP:780,1,"FRAIS VALLON LES ROSES",43.324352,5.435613,0,0,OM1:SA:CTP772,Europe/Paris,,OM1, +OM1:SP:781,1,"JONQUILLES MAURELLE",43.321849,5.438212,0,0,OM1:SA:CTP771,Europe/Paris,,OM1, +OM1:SP:782,1,"JONQUILLES LOTUS",43.321092,5.43859,0,0,OM1:SA:CTP770,Europe/Paris,,OM1, +OM1:SP:783,1,"PETIT SEMINAIRE",43.320724,5.44043,0,0,OM1:SA:CTP769,Europe/Paris,,OM1, +OM1:SP:784,1,"KADDOUZ SEMINAIRE",43.318653,5.439271,0,0,OM1:SA:CTP768,Europe/Paris,,OM1, +OM1:SP:785,1,"KADDOUZ BEAUMONT",43.317323,5.438004,0,0,OM1:SA:CTP767,Europe/Paris,,OM1, +OM1:SP:786,1,"LA PIGNATELLE",43.317374,5.435913,0,0,OM1:SA:CTP766,Europe/Paris,,OM1, +OM1:SP:787,1,"COMPADIEU",43.319193,5.433646,0,0,OM1:SA:CTP765,Europe/Paris,,OM1, +OM1:SP:788,1,"BOIS LEMAITRE",43.320504,5.432461,0,0,OM1:SA:CTP2972,Europe/Paris,,OM1, +OM1:SP:789,1,"NORMA COMPOSTELLE",43.318428,5.431167,0,0,OM1:SA:CTP763,Europe/Paris,,OM1, +OM1:SP:790,1,"COMPOSTELLE AIGUILLETTE",43.318596,5.429377,0,0,OM1:SA:CTP790,Europe/Paris,,OM1, +OM1:SP:791,1,"COROGNE AIGUILLETTE",43.31813,5.428071,0,0,OM1:SA:CTP791,Europe/Paris,,OM1, +OM1:SP:792,1,"RICHARD AIGUILLETTE",43.315636,5.427247,0,0,OM1:SA:CTP760,Europe/Paris,,OM1, +OM1:SP:793,1,"RICHARD PY",43.315781,5.425642,0,0,OM1:SA:CTP759,Europe/Paris,,OM1, +OM1:SP:794,1,"MONTOLIVET",43.317462,5.424094,0,0,OM1:SA:CTP758,Europe/Paris,,OM1, +OM1:SP:795,1,"MONTOLIVET CHABOT",43.318262,5.421612,0,0,OM1:SA:CTP757,Europe/Paris,,OM1, +OM1:SP:796,1,"MONTOLIVET MATHERON",43.317692,5.417345,0,0,OM1:SA:CTP756,Europe/Paris,,OM1, +OM1:SP:797,1,"TRAVERSE SAINT JUST",43.316542,5.415719,0,0,OM1:SA:CTP755,Europe/Paris,,OM1, +OM1:SP:798,1,"MONTOLIVET CORBIERE",43.314814,5.414198,0,0,OM1:SA:CTP754,Europe/Paris,,OM1, +OM1:SP:799,1,"LE PETIT BOSQUET",43.313923,5.413288,0,0,OM1:SA:CTP753,Europe/Paris,,OM1, +OM1:SP:800,1,"MONTOLIVET BEAUREGARD",43.312179,5.411064,0,0,OM1:SA:CTP752,Europe/Paris,,OM1, +OM1:SP:801,1,"CENTRE GERONTOLOGIQUE",43.31139,5.409729,0,0,OM1:SA:CTP751,Europe/Paris,,OM1, +OM1:SP:802,1,"MONTOLIVET ROUX",43.309694,5.407384,0,0,OM1:SA:CTP802,Europe/Paris,,OM1, +OM1:SP:804,1,"PLACE BROSSOLETTE",43.306225,5.400697,0,0,OM1:SA:CTP1100,Europe/Paris,,OM1, +OM1:SP:805,1,"DUPARC HONDET",43.30436,5.400795,0,0,OM1:SA:CTP805,Europe/Paris,,OM1, +OM1:SP:806,1,"DUPARC BLANCARDE",43.302571,5.40049,0,0,OM1:SA:CTP745,Europe/Paris,,OM1, +OM1:SP:810,1,"CANEBIERE BOURSE",43.296405,5.376276,0,0,OM1:SA:CTP1058,Europe/Paris,,OM1, +OM1:SP:813,1,"BLANCARDE PROGIN",43.303357,5.404767,0,0,OM1:SA:CTP813,Europe/Paris,,OM1, +OM1:SP:814,1,"ST BARNABE FEUILLERAIE",43.304021,5.407327,0,0,OM1:SA:CTP814,Europe/Paris,,OM1, +OM1:SP:815,1,"COMPASSION",43.304049,5.411084,0,0,OM1:SA:CTP815,Europe/Paris,,OM1, +OM1:SP:816,1,"SAINT BARNABE LA CROIX",43.304351,5.414659,0,0,OM1:SA:CTP2714,Europe/Paris,,OM1, +OM1:SP:817,1,"SAINT JULIEN RAMEAU",43.305787,5.418848,0,0,OM1:SA:CTP817,Europe/Paris,,OM1, +OM1:SP:819,1,"SAINT JULIEN KADDOUZ",43.307523,5.425727,0,0,OM1:SA:CTP819,Europe/Paris,,OM1, +OM1:SP:820,1,"FAIDHERBE",43.307756,5.429507,0,0,OM1:SA:CTP820,Europe/Paris,,OM1, +OM1:SP:821,1,"SAINT JULIEN KALLISTE",43.307915,5.432434,0,0,OM1:SA:CTP821,Europe/Paris,,OM1, +OM1:SP:822,1,"BEAUMONT FIGONE",43.308221,5.435874,0,0,OM1:SA:CTP822,Europe/Paris,,OM1, +OM1:SP:823,1,"ROUGEMONT",43.308992,5.440312,0,0,OM1:SA:CTP823,Europe/Paris,,OM1, +OM1:SP:824,1,"SAINT JULIEN HELVETIE",43.310446,5.442583,0,0,OM1:SA:CTP824,Europe/Paris,,OM1, +OM1:SP:825,1,"SAINT JULIEN",43.311389,5.445454,0,0,OM1:SA:CTP825,Europe/Paris,,OM1, +OM1:SP:826,1,"TROIS LUCS MAROC",43.312249,5.449602,0,0,OM1:SA:CTP826,Europe/Paris,,OM1, +OM1:SP:827,1,"TROIS LUCS MARNE",43.311417,5.454113,0,0,OM1:SA:CTP827,Europe/Paris,,OM1, +OM1:SP:828,1,"TROIS LUCS MARIONNE",43.310956,5.458213,0,0,OM1:SA:CTP828,Europe/Paris,,OM1, +OM1:SP:829,1,"TROIS LUCS GERMAINE",43.30959,5.461907,0,0,OM1:SA:CTP829,Europe/Paris,,OM1, +OM1:SP:830,1,"LES TROIS LUCS",43.311896,5.464865,0,0,OM1:SA:CTP662,Europe/Paris,,OM1, +OM1:SP:831,1,"ENCO DE BOTTE TRSE LA SALETTE",43.313707,5.465999,0,0,OM1:SA:CTP831,Europe/Paris,,OM1, +OM1:SP:832,1,"ENCO DE BOTTE CHANTE CIGALE",43.314438,5.467135,0,0,OM1:SA:CTP832,Europe/Paris,,OM1, +OM1:SP:836,1,"VINCENNES ENCO DE BOTTE",43.316043,5.468836,0,0,OM1:SA:CTP836,Europe/Paris,,OM1, +OM1:SP:837,1,"ENCO DE BOTTE CHANTE CIGALE",43.31448,5.466915,0,0,OM1:SA:CTP832,Europe/Paris,,OM1, +OM1:SP:838,1,"ENCO DE BOTTE TRSE LA SALETTE",43.313299,5.465472,0,0,OM1:SA:CTP831,Europe/Paris,,OM1, +OM1:SP:839,1,"LES TROIS LUCS",43.312,5.464699,0,0,OM1:SA:CTP662,Europe/Paris,,OM1, +OM1:SP:840,1,"TROIS LUCS GERMAINE",43.309671,5.461592,0,0,OM1:SA:CTP829,Europe/Paris,,OM1, +OM1:SP:841,1,"TROIS LUCS MARIONNE",43.311362,5.457238,0,0,OM1:SA:CTP828,Europe/Paris,,OM1, +OM1:SP:842,1,"TROIS LUCS MARNE",43.311614,5.453828,0,0,OM1:SA:CTP827,Europe/Paris,,OM1, +OM1:SP:843,1,"TROIS LUCS MAROC",43.312424,5.449451,0,0,OM1:SA:CTP826,Europe/Paris,,OM1, +OM1:SP:844,1,"SAINT JULIEN",43.312143,5.447354,0,0,OM1:SA:CTP825,Europe/Paris,,OM1, +OM1:SP:845,1,"TRAVERSE SAINT PONS",43.311573,5.444996,0,0,OM1:SA:CTP845,Europe/Paris,,OM1, +OM1:SP:846,1,"SAINT JULIEN HELVETIE",43.310385,5.44221,0,0,OM1:SA:CTP824,Europe/Paris,,OM1, +OM1:SP:847,1,"ROUGEMONT",43.308872,5.43916,0,0,OM1:SA:CTP823,Europe/Paris,,OM1, +OM1:SP:848,1,"BEAUMONT FIGONE",43.308332,5.435745,0,0,OM1:SA:CTP822,Europe/Paris,,OM1, +OM1:SP:849,1,"SAINT JULIEN KALLISTE",43.308047,5.4319,0,0,OM1:SA:CTP821,Europe/Paris,,OM1, +OM1:SP:850,1,"FAIDHERBE",43.307882,5.429502,0,0,OM1:SA:CTP820,Europe/Paris,,OM1, +OM1:SP:851,1,"SAINT JULIEN KADDOUZ",43.307668,5.425685,0,0,OM1:SA:CTP819,Europe/Paris,,OM1, +OM1:SP:852,1,"MARGAILLAN",43.306945,5.422051,0,0,OM1:SA:CTP852,Europe/Paris,,OM1, +OM1:SP:853,1,"ST JULIEN CENTRE DES IMPOTS",43.306329,5.42001,0,0,OM1:SA:CTP2922,Europe/Paris,,OM1, +OM1:SP:854,1,"SAINT JULIEN RAMEAU",43.3057,5.417822,0,0,OM1:SA:CTP817,Europe/Paris,,OM1, +OM1:SP:855,1,"SAINT BARNABE LA CROIX",43.304461,5.414271,0,0,OM1:SA:CTP2714,Europe/Paris,,OM1, +OM1:SP:856,1,"COMPASSION",43.304145,5.410855,0,0,OM1:SA:CTP815,Europe/Paris,,OM1, +OM1:SP:857,1,"ST BARNABE FEUILLERAIE",43.304142,5.407198,0,0,OM1:SA:CTP814,Europe/Paris,,OM1, +OM1:SP:858,1,"BLANCARDE PROGIN",43.303529,5.405035,0,0,OM1:SA:CTP813,Europe/Paris,,OM1, +OM1:SP:859,1,"BLANCARDE ROUGIER",43.303239,5.402902,0,0,OM1:SA:CTP859,Europe/Paris,,OM1, +OM1:SP:863,1,"CANEBIERE BOURSE",43.296373,5.376127,0,0,OM1:SA:CTP1058,Europe/Paris,,OM1, +OM1:SP:864,1,"BEAUMONT AV DU 24 AVRIL",43.309139,5.438953,0,0,OM1:SA:CTP864,Europe/Paris,,OM1, +OM1:SP:865,1,"BEAUMONT PASTEUR",43.310647,5.438727,0,0,OM1:SA:CTP865,Europe/Paris,,OM1, +OM1:SP:866,1,"FAUVETTES CHARLEROI",43.31266,5.439735,0,0,OM1:SA:CTP866,Europe/Paris,,OM1, +OM1:SP:867,1,"FAUVETTES PINATEL",43.315176,5.439156,0,0,OM1:SA:CTP867,Europe/Paris,,OM1, +OM1:SP:868,1,"BEAUMONT",43.316826,5.43746,0,0,OM1:SA:CTP868,Europe/Paris,,OM1, +OM1:SP:869,1,"DUMAS BEAUMONT",43.31415,5.437943,0,0,OM1:SA:CTP869,Europe/Paris,,OM1, +OM1:SP:870,1,"BEAUMONT PASTEUR",43.311187,5.438424,0,0,OM1:SA:CTP865,Europe/Paris,,OM1, +OM1:SP:871,1,"SAINT BARNABE LA CROIX",43.304125,5.415041,0,0,OM1:SA:CTP2714,Europe/Paris,,OM1, +OM1:SP:872,1,"SAINT BARNABE CAUVIN",43.303785,5.417805,0,0,OM1:SA:CTP872,Europe/Paris,,OM1, +OM1:SP:873,1,"LEON MEISSEREL",43.304813,5.418648,0,0,OM1:SA:CTP873,Europe/Paris,,OM1, +OM1:SP:874,1,"JEAN RAMEAU",43.307144,5.418269,0,0,OM1:SA:CTP874,Europe/Paris,,OM1, +OM1:SP:875,1,"PLACE DE BOIS LUZY",43.309813,5.41957,0,0,OM1:SA:CTP875,Europe/Paris,,OM1, +OM1:SP:876,1,"PROVENCE",43.31029,5.421135,0,0,OM1:SA:CTP876,Europe/Paris,,OM1, +OM1:SP:878,1,"FELIBRES LAURIERS",43.31138,5.424838,0,0,OM1:SA:CTP878,Europe/Paris,,OM1, +OM1:SP:879,1,"FELIBRES AIGUILLETTE",43.31156,5.427028,0,0,OM1:SA:CTP879,Europe/Paris,,OM1, +OM1:SP:880,1,"KADDOUZ AIGUILLETTE",43.31193,5.429794,0,0,OM1:SA:CTP880,Europe/Paris,,OM1, +OM1:SP:881,1,"KADDOUZ SABLES JAUNES",43.313048,5.431258,0,0,OM1:SA:CTP881,Europe/Paris,,OM1, +OM1:SP:882,1,"KADDOUZ MAZARADE",43.314621,5.433141,0,0,OM1:SA:CTP882,Europe/Paris,,OM1, +OM1:SP:883,1,"KADDOUZ BOURRELY",43.316195,5.435652,0,0,OM1:SA:CTP883,Europe/Paris,,OM1, +OM1:SP:884,1,"LES AMARYLLIS",43.316588,5.441031,0,0,OM1:SA:CTP884,Europe/Paris,,OM1, +OM1:SP:885,1,"LES BOUGAINVILLIERS",43.317659,5.442863,0,0,OM1:SA:CTP885,Europe/Paris,,OM1, +OM1:SP:886,1,"LES ROMARINS",43.317808,5.444866,0,0,OM1:SA:CTP886,Europe/Paris,,OM1, +OM1:SP:887,1,"COMTESSE RAMPAL",43.31739,5.44722,0,0,OM1:SA:CTP887,Europe/Paris,,OM1, +OM1:SP:888,1,"COMTESSE CLINIQUE",43.315851,5.447235,0,0,OM1:SA:CTP888,Europe/Paris,,OM1, +OM1:SP:889,1,"SAINT JULIEN",43.314005,5.447332,0,0,OM1:SA:CTP889,Europe/Paris,,OM1, +OM1:SP:890,1,"SAINT JULIEN",43.314017,5.447555,0,0,OM1:SA:CTP889,Europe/Paris,,OM1, +OM1:SP:891,1,"COMTESSE CLINIQUE",43.315717,5.447536,0,0,OM1:SA:CTP888,Europe/Paris,,OM1, +OM1:SP:892,1,"COMTESSE RAMPAL",43.31768,5.447445,0,0,OM1:SA:CTP887,Europe/Paris,,OM1, +OM1:SP:893,1,"LES ROMARINS",43.317955,5.444775,0,0,OM1:SA:CTP886,Europe/Paris,,OM1, +OM1:SP:894,1,"LES BOUGAINVILLIERS",43.317872,5.442985,0,0,OM1:SA:CTP885,Europe/Paris,,OM1, +OM1:SP:895,1,"LES AMARYLLIS",43.316664,5.440567,0,0,OM1:SA:CTP884,Europe/Paris,,OM1, +OM1:SP:896,1,"KADDOUZ BOURRELY",43.316203,5.435369,0,0,OM1:SA:CTP883,Europe/Paris,,OM1, +OM1:SP:897,1,"KADDOUZ MAZARADE",43.314535,5.432705,0,0,OM1:SA:CTP882,Europe/Paris,,OM1, +OM1:SP:898,1,"KADDOUZ SABLES JAUNES",43.31269,5.430562,0,0,OM1:SA:CTP881,Europe/Paris,,OM1, +OM1:SP:899,1,"KADDOUZ AIGUILLETTE",43.311721,5.428933,0,0,OM1:SA:CTP880,Europe/Paris,,OM1, +OM1:SP:900,1,"FELIBRES AIGUILLETTE",43.311693,5.426764,0,0,OM1:SA:CTP879,Europe/Paris,,OM1, +OM1:SP:901,1,"FELIBRES LAURIERS",43.311588,5.4248,0,0,OM1:SA:CTP878,Europe/Paris,,OM1, +OM1:SP:902,1,"PROVENCE",43.310959,5.421946,0,0,OM1:SA:CTP876,Europe/Paris,,OM1, +OM1:SP:903,1,"PLACE DE BOIS LUZY",43.309977,5.419505,0,0,OM1:SA:CTP875,Europe/Paris,,OM1, +OM1:SP:904,1,"JEAN RAMEAU",43.307302,5.418092,0,0,OM1:SA:CTP874,Europe/Paris,,OM1, +OM1:SP:915,1,"CAILLOLS LA FOURRAGERE",43.303772,5.427643,0,0,OM1:SA:CTP915,Europe/Paris,,OM1, +OM1:SP:916,1,"CAILLOLS PARINI",43.303414,5.431034,0,0,OM1:SA:CTP916,Europe/Paris,,OM1, +OM1:SP:917,1,"CAILLOLS ROSIERE",43.304114,5.434532,0,0,OM1:SA:CTP917,Europe/Paris,,OM1, +OM1:SP:918,1,"CAILLOLS FIGONE",43.303107,5.43827,0,0,OM1:SA:CTP918,Europe/Paris,,OM1, +OM1:SP:919,1,"CAILLOLS MONETTE",43.3037,5.440149,0,0,OM1:SA:CTP919,Europe/Paris,,OM1, +OM1:SP:920,1,"CAILLOLS FORT FOUQUE",43.30325,5.442021,0,0,OM1:SA:CTP920,Europe/Paris,,OM1, +OM1:SP:921,1,"CAILLOLS VIEUX MOULIN",43.302266,5.445292,0,0,OM1:SA:CTP921,Europe/Paris,,OM1, +OM1:SP:922,1,"CAILLOLS PROVENCE",43.303113,5.449278,0,0,OM1:SA:CTP922,Europe/Paris,,OM1, +OM1:SP:923,1,"H.L.M LES CAILLOLS",43.301331,5.449637,0,0,OM1:SA:CTP923,Europe/Paris,,OM1, +OM1:SP:924,1,"LA MOULARDE",43.2984,5.449897,0,0,OM1:SA:CTP924,Europe/Paris,,OM1, +OM1:SP:925,1,"BOOTH LA MOULARDE",43.296929,5.448549,0,0,OM1:SA:CTP925,Europe/Paris,,OM1, +OM1:SP:926,1,"BOOTH LECACHE",43.296035,5.447097,0,0,OM1:SA:CTP926,Europe/Paris,,OM1, +OM1:SP:929,1,"BOOTH LECACHE",43.295814,5.446974,0,0,OM1:SA:CTP926,Europe/Paris,,OM1, +OM1:SP:930,1,"BOOTH LA MOULARDE",43.296711,5.448611,0,0,OM1:SA:CTP925,Europe/Paris,,OM1, +OM1:SP:931,1,"LA MOULARDE",43.298635,5.45018,0,0,OM1:SA:CTP924,Europe/Paris,,OM1, +OM1:SP:932,1,"H.L.M LES CAILLOLS",43.301721,5.449818,0,0,OM1:SA:CTP923,Europe/Paris,,OM1, +OM1:SP:933,1,"CAILLOLS PROVENCE",43.303302,5.449264,0,0,OM1:SA:CTP922,Europe/Paris,,OM1, +OM1:SP:934,1,"CAILLOLS VIEUX MOULIN",43.302447,5.445228,0,0,OM1:SA:CTP921,Europe/Paris,,OM1, +OM1:SP:935,1,"CAILLOLS FORT FOUQUE",43.303416,5.442202,0,0,OM1:SA:CTP920,Europe/Paris,,OM1, +OM1:SP:936,1,"CAILLOLS MONETTE",43.303771,5.439857,0,0,OM1:SA:CTP919,Europe/Paris,,OM1, +OM1:SP:937,1,"CAILLOLS FIGONE",43.303635,5.437412,0,0,OM1:SA:CTP918,Europe/Paris,,OM1, +OM1:SP:938,1,"CAILLOLS ROSIERE",43.304306,5.434419,0,0,OM1:SA:CTP917,Europe/Paris,,OM1, +OM1:SP:939,1,"CAILLOLS PARINI",43.303582,5.430822,0,0,OM1:SA:CTP916,Europe/Paris,,OM1, +OM1:SP:940,1,"CAILLOLS LA FOURRAGERE",43.303992,5.427802,0,0,OM1:SA:CTP915,Europe/Paris,,OM1, +OM1:SP:941,1,"METRO FOURRAGERE",43.304211,5.423628,0,0,OM1:SA:CTP3558,Europe/Paris,,OM1, +OM1:SP:942,1,"GASQUY VIAN",43.301362,5.422625,0,0,OM1:SA:CTP942,Europe/Paris,,OM1, +OM1:SP:943,1,"BASTIDE SAINT JEAN",43.298946,5.421596,0,0,OM1:SA:CTP943,Europe/Paris,,OM1, +OM1:SP:944,1,"GARLABAN CAUVIN",43.298233,5.417938,0,0,OM1:SA:CTP944,Europe/Paris,,OM1, +OM1:SP:945,1,"HAITI HESPERIDES",43.298263,5.41592,0,0,OM1:SA:CTP945,Europe/Paris,,OM1, +OM1:SP:946,1,"COLLEGE DARIUS MILHAUD",43.298044,5.41384,0,0,OM1:SA:CTP946,Europe/Paris,,OM1, +OM1:SP:947,1,"METRO LOUIS ARMAND",43.298902,5.413394,0,0,OM1:SA:CTP947,Europe/Paris,,OM1, +OM1:SP:948,1,"HAGUENAU MERLE",43.301002,5.413223,0,0,OM1:SA:CTP948,Europe/Paris,,OM1, +OM1:SP:949,1,"HAGUENAU ALASKA",43.303495,5.413172,0,0,OM1:SA:CTP949,Europe/Paris,,OM1, +OM1:SP:952,1,"LES BORROMEES",43.300884,5.430836,0,0,OM1:SA:CTP952,Europe/Paris,,OM1, +OM1:SP:953,1,"RESIDENCE VALVERT",43.299672,5.430118,0,0,OM1:SA:CTP953,Europe/Paris,,OM1, +OM1:SP:954,1,"LE VENDOME",43.298416,5.431282,0,0,OM1:SA:CTP954,Europe/Paris,,OM1, +OM1:SP:955,1,"FOURRAGERE DESERT",43.297341,5.433932,0,0,OM1:SA:CTP955,Europe/Paris,,OM1, +OM1:SP:957,1,"BELLEVUE",43.298377,5.436389,0,0,OM1:SA:CTP957,Europe/Paris,,OM1, +OM1:SP:958,1,"CENTRE SOCIAL",43.297781,5.438044,0,0,OM1:SA:CTP958,Europe/Paris,,OM1, +OM1:SP:959,1,"BASTIDE BASSE",43.299226,5.439698,0,0,OM1:SA:CTP959,Europe/Paris,,OM1, +OM1:SP:960,1,"BASTIDE CAZAULX",43.297719,5.44049,0,0,OM1:SA:CTP960,Europe/Paris,,OM1, +OM1:SP:961,1,"MAIRIE 11-12",43.29672,5.442714,0,0,OM1:SA:CTP961,Europe/Paris,,OM1, +OM1:SP:962,1,"MAIRIE 11-12",43.296876,5.442587,0,0,OM1:SA:CTP961,Europe/Paris,,OM1, +OM1:SP:963,1,"BASTIDE CAZAULX",43.298301,5.440263,0,0,OM1:SA:CTP960,Europe/Paris,,OM1, +OM1:SP:964,1,"BASTIDE BASSE",43.299452,5.439956,0,0,OM1:SA:CTP959,Europe/Paris,,OM1, +OM1:SP:965,1,"CENTRE SOCIAL",43.297593,5.437677,0,0,OM1:SA:CTP958,Europe/Paris,,OM1, +OM1:SP:966,1,"BELLEVUE",43.298369,5.436019,0,0,OM1:SA:CTP957,Europe/Paris,,OM1, +OM1:SP:968,1,"LA FOURRAGERE DESERT",43.297578,5.434167,0,0,OM1:SA:CTP955,Europe/Paris,,OM1, +OM1:SP:969,1,"LE VENDOME",43.298611,5.431391,0,0,OM1:SA:CTP954,Europe/Paris,,OM1, +OM1:SP:970,1,"RESIDENCE VALVERT",43.299572,5.430494,0,0,OM1:SA:CTP953,Europe/Paris,,OM1, +OM1:SP:971,1,"LES BORROMEES",43.301126,5.431182,0,0,OM1:SA:CTP952,Europe/Paris,,OM1, +OM1:SP:972,1,"METRO SAINT BARNABE",43.303991,5.420981,0,0,OM1:SA:CTP3762,Europe/Paris,,OM1, +OM1:SP:977,1,"LA ROSE VILLAGE",43.328215,5.425117,0,0,OM1:SA:CTP977,Europe/Paris,,OM1, +OM1:SP:978,1,"LA ROSE FUVEAU",43.327091,5.423233,0,0,OM1:SA:CTP978,Europe/Paris,,OM1, +OM1:SP:979,1,"LES HIRONDELLES",43.331008,5.407355,0,0,OM1:SA:CTP979,Europe/Paris,,OM1, +OM1:SP:980,1,"PROSPER MERIMEE SAINT PAUL",43.32948,5.401619,0,0,OM1:SA:CTP980,Europe/Paris,,OM1, +OM1:SP:981,1,"CENTRE CIAL DU MERLAN",43.328504,5.398955,0,0,OM1:SA:CTP981,Europe/Paris,,OM1, +OM1:SP:982,1,"THEATRE DU MERLAN",43.329912,5.398156,0,0,OM1:SA:CTP982,Europe/Paris,,OM1, +OM1:SP:983,1,"BUSSERINE H. L. M",43.332058,5.398886,0,0,OM1:SA:CTP983,Europe/Paris,,OM1, +OM1:SP:984,1,"SAINTE MARTHE BUSSERINE",43.336042,5.398237,0,0,OM1:SA:CTP984,Europe/Paris,,OM1, +OM1:SP:985,1,"LA MARGERAY",43.336999,5.396871,0,0,OM1:SA:CTP985,Europe/Paris,,OM1, +OM1:SP:986,1,"FORGE DOLET",43.337875,5.394195,0,0,OM1:SA:CTP986,Europe/Paris,,OM1, +OM1:SP:987,1,"SAINTE MARTHE",43.339312,5.391709,0,0,OM1:SA:CTP114,Europe/Paris,,OM1, +OM1:SP:988,1,"SAINT JOSEPH LES LIONS",43.348413,5.376766,0,0,OM1:SA:CTP120,Europe/Paris,,OM1, +OM1:SP:989,1,"CHEMIN DE SAINT ANTOINE",43.348971,5.373579,0,0,OM1:SA:CTP989,Europe/Paris,,OM1, +OM1:SP:99,1,"METRO BOUGAINVILLE",43.321067,5.371339,0,0,OM1:SA:CTP1,Europe/Paris,,OM1, +OM1:SP:990,1,"AUTOROUTE",43.348817,5.371698,0,0,OM1:SA:CTP990,Europe/Paris,,OM1, +OM1:SP:991,1,"SAINT LOUIS PICARDIE",43.347277,5.368918,0,0,OM1:SA:CTP991,Europe/Paris,,OM1, +OM1:SP:992,1,"4 CHEMINS DES AYGALADES",43.3464,5.365582,0,0,OM1:SA:CTP154,Europe/Paris,,OM1, +OM1:SP:993,1,"CHEMIN DE LA COMMANDERIE",43.347929,5.361399,0,0,OM1:SA:CTP993,Europe/Paris,,OM1, +OM1:SP:994,1,"LYCEE SAINT EXUPERY",43.34803,5.355551,0,0,OM1:SA:CTP504,Europe/Paris,,OM1, +OM1:SP:995,1,"LYCEE SAINT EXUPERY",43.347083,5.355009,0,0,OM1:SA:CTP504,Europe/Paris,,OM1, +OM1:SP:996,1,"LYCEE SAINT EXUPERY",43.347537,5.355821,0,0,OM1:SA:CTP504,Europe/Paris,,OM1, +OM1:SP:997,1,"PAUL GAFFAREL",43.348961,5.357966,0,0,OM1:SA:CTP997,Europe/Paris,,OM1, +OM1:SP:998,1,"CHEMIN DE LA COMMANDERIE",43.347608,5.362565,0,0,OM1:SA:CTP993,Europe/Paris,,OM1, +OM1:SP:999,1,"4 CHEMINS DES AYGALADES",43.346226,5.365671,0,0,OM1:SA:CTP154,Europe/Paris,,OM1, +OM2:SP:105002,1,"LA GARDE",43.169033,5.594024,0,0,OM2:SA:CTP105002,Europe/Paris,,OM2, +OM2:SP:105003,1,"LA HAUTE BERTRANDIERE",43.169748,5.597996,0,0,OM2:SA:CTP105003,Europe/Paris,,OM2, +OM2:SP:105004,1,"LA HAUTE BERTRANDIERE",43.169551,5.597997,0,0,OM2:SA:CTP105003,Europe/Paris,,OM2, +OM2:SP:105006,1,"FIGUEROLLES",43.169133,5.599607,0,0,OM2:SA:CTP105006,Europe/Paris,,OM2, +OM2:SP:105008,1,"LA GARDE ECOLE",43.168096,5.600887,0,0,OM2:SA:CTP105008,Europe/Paris,,OM2, +OM2:SP:105010,1,"LE MUGEL",43.167249,5.605667,0,0,OM2:SA:CTP105010,Europe/Paris,,OM2, +OM2:SP:105012,1,"LE PRE",43.169789,5.604067,0,0,OM2:SA:CTP105012,Europe/Paris,,OM2, +OM2:SP:105015,1,"GUERIN (MAIRIE)",43.173804,5.605966,0,0,OM2:SA:CTP105015,Europe/Paris,,OM2, +OM2:SP:105017,1,"REPUBLIQUE",43.175558,5.605365,0,0,OM2:SA:CTP105017,Europe/Paris,,OM2, +OM2:SP:105020,1,"L'EDEN",43.177476,5.610611,0,0,OM5:SA:CTP4029002,Europe/Paris,,OM2, +OM2:SP:105021,1,"L'EDEN",43.177501,5.610956,0,0,OM5:SA:CTP4029002,Europe/Paris,,OM2, +OM2:SP:105025,1,"PORT VIEUX",43.1741,5.608366,0,0,OM2:SA:CTP105025,Europe/Paris,,OM2, +OM2:SP:105026,1,"LA POSTE",43.175985,5.60405,0,0,OM2:SA:CTP105026,Europe/Paris,,OM2, +OM2:SP:105030,1,"SECURITE SOCIALE",43.175508,5.599625,0,0,OM2:SA:CTP105030,Europe/Paris,,OM2, +OM2:SP:105032,1,"CANTE COUCOU",43.17164,5.600548,0,0,OM2:SA:CTP105032,Europe/Paris,,OM2, +OM2:SP:105034,1,"MARC SANGNIER",43.172371,5.599004,0,0,OM2:SA:CTP105034,Europe/Paris,,OM2, +OM2:SP:105036,1,"JEAN MOULIN",43.175574,5.597761,0,0,OM2:SA:CTP105036,Europe/Paris,,OM2, +OM2:SP:105038,1,"TROIS CITERNES",43.17825,5.597593,0,0,OM2:SA:CTP105038,Europe/Paris,,OM2, +OM2:SP:105040,1,"LA ROCADE",43.178862,5.596682,0,0,OM2:SA:CTP105040,Europe/Paris,,OM2, +OM2:SP:105042,1,"BELLEVUE",43.17889,5.595455,0,0,OM2:SA:CTP105042,Europe/Paris,,OM2, +OM2:SP:105043,1,"BELLEVUE",43.178674,5.595479,0,0,OM2:SA:CTP105042,Europe/Paris,,OM2, +OM2:SP:105044,1,"LA CLAIRETTE",43.178983,5.593285,0,0,OM2:SA:CTP105044,Europe/Paris,,OM2, +OM2:SP:105045,1,"LA CLAIRETTE",43.178787,5.593225,0,0,OM2:SA:CTP105044,Europe/Paris,,OM2, +OM2:SP:105046,1,"BUCELLE",43.179537,5.591621,0,0,OM2:SA:CTP105046,Europe/Paris,,OM2, +OM2:SP:105048,1,"FARDELOUP",43.186394,5.590276,0,0,OM2:SA:CTP105048,Europe/Paris,,OM2, +OM2:SP:105049,1,"PIN DE LA FADE",43.184371,5.594413,0,0,OM2:SA:CTP105049,Europe/Paris,,OM2, +OM2:SP:105050,1,"PIN DE LA FADE",43.184535,5.594632,0,0,OM2:SA:CTP105049,Europe/Paris,,OM2, +OM2:SP:105051,1,"ST LOUP",43.183284,5.597055,0,0,OM2:SA:CTP105051,Europe/Paris,,OM2, +OM2:SP:105052,1,"ST LOUP",43.183424,5.597186,0,0,OM2:SA:CTP105051,Europe/Paris,,OM2, +OM2:SP:105053,1,"CENTRE COMMERCIAL",43.1865,5.600396,0,0,OM2:SA:CTP105053,Europe/Paris,,OM2, +OM2:SP:105054,1,"PUITS DE BRUNET",43.187222,5.600339,0,0,OM2:SA:CTP105054,Europe/Paris,,OM2, +OM2:SP:105055,1,"COLLEGE VIREBELLE",43.185041,5.599293,0,0,OM5:SA:CTP4029109,Europe/Paris,,OM2, +OM2:SP:105056,1,"PISCINE",43.184015,5.599935,0,0,OM2:SA:CTP105056,Europe/Paris,,OM2, +OM2:SP:105057,1,"PISCINE",43.183874,5.599829,0,0,OM2:SA:CTP105056,Europe/Paris,,OM2, +OM2:SP:105058,1,"JULES FERRY",43.183561,5.602736,0,0,OM2:SA:CTP105058,Europe/Paris,,OM2, +OM2:SP:105059,1,"JULES FERRY",43.183364,5.602712,0,0,OM2:SA:CTP105058,Europe/Paris,,OM2, +OM2:SP:105060,1,"LYCEE LUMIERE",43.184643,5.605083,0,0,OM5:SA:CTP4029010,Europe/Paris,,OM2, +OM2:SP:105061,1,"LUMIERE",43.184536,5.605028,0,0,OM2:SA:CTP105061,Europe/Paris,,OM2, +OM2:SP:105062,1,"PROVENCE LOGIS",43.182004,5.605437,0,0,OM2:SA:CTP105062,Europe/Paris,,OM2, +OM2:SP:105063,1,"PROVENCE LOGIS",43.181885,5.605209,0,0,OM2:SA:CTP105062,Europe/Paris,,OM2, +OM2:SP:105064,1,"LA MARINE",43.180046,5.60535,0,0,OM2:SA:CTP105064,Europe/Paris,,OM2, +OM2:SP:105065,1,"LA MARINE",43.180171,5.605087,0,0,OM2:SA:CTP105064,Europe/Paris,,OM2, +OM2:SP:105066,1,"MISSION LOCALE",43.178588,5.605685,0,0,OM2:SA:CTP105066,Europe/Paris,,OM2, +OM2:SP:105067,1,"MISSION LOCALE",43.178721,5.605435,0,0,OM2:SA:CTP105066,Europe/Paris,,OM2, +OM2:SP:105068,1,"LE LIDO",43.178446,5.610654,0,0,OM2:SA:CTP105068,Europe/Paris,,OM2, +OM2:SP:105069,1,"LE LIDO",43.178231,5.610899,0,0,OM2:SA:CTP105068,Europe/Paris,,OM2, +OM2:SP:105070,1,"LA LICORNE",43.180471,5.611482,0,0,OM2:SA:CTP105070,Europe/Paris,,OM2, +OM2:SP:105072,1,"CAMUGLI",43.183179,5.612607,0,0,OM2:SA:CTP105072,Europe/Paris,,OM2, +OM2:SP:105073,1,"CAMUGLI",43.183084,5.612786,0,0,OM2:SA:CTP105072,Europe/Paris,,OM2, +OM2:SP:105074,1,"SECADOU",43.184589,5.613535,0,0,OM2:SA:CTP105074,Europe/Paris,,OM2, +OM2:SP:105075,1,"SECADOU",43.184425,5.613624,0,0,OM2:SA:CTP105074,Europe/Paris,,OM2, +OM2:SP:105076,1,"SALIS",43.187162,5.614984,0,0,OM2:SA:CTP105076,Europe/Paris,,OM2, +OM2:SP:105077,1,"SALIS",43.187025,5.615062,0,0,OM2:SA:CTP105076,Europe/Paris,,OM2, +OM2:SP:105078,1,"LANGUEDOC",43.189732,5.616827,0,0,OM2:SA:CTP105078,Europe/Paris,,OM2, +OM2:SP:105079,1,"LANGUEDOC",43.189594,5.616917,0,0,OM2:SA:CTP105078,Europe/Paris,,OM2, +OM2:SP:105080,1,"STE MARGUERITE",43.19127,5.617689,0,0,OM2:SA:CTP105080,Europe/Paris,,OM2, +OM2:SP:105081,1,"STE MARGUERITE",43.191167,5.617818,0,0,OM2:SA:CTP105080,Europe/Paris,,OM2, +OM2:SP:105082,1,"ALOUETTES",43.192924,5.618005,0,0,OM2:SA:CTP105082,Europe/Paris,,OM2, +OM2:SP:105083,1,"ALOUETTES",43.192991,5.618156,0,0,OM2:SA:CTP105082,Europe/Paris,,OM2, +OM2:SP:105084,1,"ABEILLE ECOLE",43.195392,5.61817,0,0,OM2:SA:CTP105084,Europe/Paris,,OM2, +OM2:SP:105085,1,"ABEILLE ECOLE",43.195542,5.618265,0,0,OM2:SA:CTP105084,Europe/Paris,,OM2, +OM2:SP:105086,1,"ABEILLE",43.196895,5.616351,0,0,OM2:SA:CTP105086,Europe/Paris,,OM2, +OM2:SP:105087,1,"ROUMANILLE",43.196273,5.620519,0,0,OM2:SA:CTP105087,Europe/Paris,,OM2, +OM2:SP:105088,1,"ROUMANILLE",43.196438,5.620418,0,0,OM2:SA:CTP105087,Europe/Paris,,OM2, +OM2:SP:105089,1,"MAURELLE SUD",43.197041,5.621017,0,0,OM2:SA:CTP105089,Europe/Paris,,OM2, +OM2:SP:105090,1,"MAURELLE SUD",43.197142,5.620937,0,0,OM2:SA:CTP105089,Europe/Paris,,OM2, +OM2:SP:105091,1,"LAVAUX",43.198503,5.625538,0,0,OM2:SA:CTP105091,Europe/Paris,,OM2, +OM2:SP:105092,1,"LAVAUX",43.198648,5.625485,0,0,OM2:SA:CTP105091,Europe/Paris,,OM2, +OM2:SP:105093,1,"CIGALOU",43.197953,5.631149,0,0,OM2:SA:CTP105093,Europe/Paris,,OM2, +OM2:SP:105094,1,"CIGALOU",43.198117,5.631085,0,0,OM2:SA:CTP105093,Europe/Paris,,OM2, +OM2:SP:105096,1,"GARE SNCF",43.199494,5.632516,0,0,OM2:SA:CTP105096,Europe/Paris,,OM2, +OM2:SP:105097,1,"SAINTE BRIGITTE",43.198269,5.632846,0,0,OM2:SA:CTP105097,Europe/Paris,,OM2, +OM2:SP:105098,1,"SAINTE BRIGITTE",43.198244,5.632703,0,0,OM2:SA:CTP105097,Europe/Paris,,OM2, +OM2:SP:105099,1,"HOMME ROUGE",43.194542,5.634764,0,0,OM2:SA:CTP105099,Europe/Paris,,OM2, +OM2:SP:105100,1,"HOMME ROUGE",43.194488,5.634465,0,0,OM2:SA:CTP105099,Europe/Paris,,OM2, +OM2:SP:105101,1,"CYTHARISTA",43.191604,5.639069,0,0,OM2:SA:CTP105101,Europe/Paris,,OM2, +OM2:SP:105102,1,"CYTHARISTA",43.191443,5.63874,0,0,OM2:SA:CTP105101,Europe/Paris,,OM2, +OM2:SP:105103,1,"BAIE DES ANGES",43.189511,5.645701,0,0,OM2:SA:CTP105103,Europe/Paris,,OM2, +OM2:SP:105104,1,"BAIE DES ANGES",43.189247,5.64565,0,0,OM2:SA:CTP105103,Europe/Paris,,OM2, +OM2:SP:105105,1,"FONTSAINTE",43.190895,5.639901,0,0,OM2:SA:CTP105105,Europe/Paris,,OM2, +OM2:SP:105106,1,"FONTSAINTE",43.190634,5.639898,0,0,OM2:SA:CTP105105,Europe/Paris,,OM2, +OM2:SP:105107,1,"ESPANET PLAGE",43.189447,5.634619,0,0,OM2:SA:CTP105107,Europe/Paris,,OM2, +OM2:SP:105109,1,"ST JEAN ECOLE",43.188656,5.631415,0,0,OM2:SA:CTP105109,Europe/Paris,,OM2, +OM2:SP:105110,1,"ST JEAN ECOLE",43.188414,5.631364,0,0,OM2:SA:CTP105109,Europe/Paris,,OM2, +OM2:SP:105111,1,"ST JEAN CABANON",43.189114,5.629069,0,0,OM2:SA:CTP105111,Europe/Paris,,OM2, +OM2:SP:105112,1,"ST JEAN CABANON",43.188916,5.629082,0,0,OM2:SA:CTP105111,Europe/Paris,,OM2, +OM2:SP:105113,1,"ST JEAN PORT",43.187385,5.625935,0,0,OM2:SA:CTP105113,Europe/Paris,,OM2, +OM2:SP:105114,1,"ST JEAN PORT",43.187428,5.626482,0,0,OM2:SA:CTP105113,Europe/Paris,,OM2, +OM2:SP:105115,1,"GRANDE PLAGE",43.187083,5.62287,0,0,OM2:SA:CTP105115,Europe/Paris,,OM2, +OM2:SP:105116,1,"GRANDE PLAGE",43.186918,5.622958,0,0,OM2:SA:CTP105115,Europe/Paris,,OM2, +OM2:SP:105117,1,"ALLEE LUMIERE",43.185772,5.620152,0,0,OM2:SA:CTP105117,Europe/Paris,,OM2, +OM2:SP:105118,1,"ALLEE LUMIERE",43.18563,5.620378,0,0,OM2:SA:CTP105117,Europe/Paris,,OM2, +OM2:SP:105119,1,"CYRNOS",43.184612,5.617506,0,0,OM2:SA:CTP105119,Europe/Paris,,OM2, +OM2:SP:105120,1,"CYRNOS",43.184443,5.617742,0,0,OM2:SA:CTP105119,Europe/Paris,,OM2, +OM2:SP:105121,1,"VILLA DES TOURS",43.182125,5.614156,0,0,OM2:SA:CTP105121,Europe/Paris,,OM2, +OM2:SP:105122,1,"VILLA DES TOURS",43.181992,5.614382,0,0,OM2:SA:CTP105121,Europe/Paris,,OM2, +OM2:SP:105123,1,"FLOTS BLEUS",43.180494,5.612196,0,0,OM5:SA:CTP4029003,Europe/Paris,,OM2, +OM2:SP:105124,1,"LES FLOTS BLEUS",43.180352,5.612433,0,0,OM5:SA:CTP4029003,Europe/Paris,,OM2, +OM2:SP:105127,1,"BODIN",43.190216,5.604196,0,0,OM5:SA:CTP4029005,Europe/Paris,,OM2, +OM2:SP:105128,1,"LUMIERE",43.184442,5.606571,0,0,OM2:SA:CTP105061,Europe/Paris,,OM2, +OM2:SP:105129,1,"LUMIERE",43.184215,5.606632,0,0,OM2:SA:CTP105061,Europe/Paris,,OM2, +OM2:SP:105130,1,"ERNEST SUBILIA",43.186516,5.607869,0,0,OM2:SA:CTP105130,Europe/Paris,,OM2, +OM2:SP:105131,1,"ERNEST SUBILIA",43.186399,5.608157,0,0,OM2:SA:CTP105130,Europe/Paris,,OM2, +OM2:SP:105133,1,"LA PLAINE",43.189437,5.609104,0,0,OM2:SA:CTP105133,Europe/Paris,,OM2, +OM2:SP:105134,1,"OMBELLES",43.191236,5.608789,0,0,OM2:SA:CTP105134,Europe/Paris,,OM2, +OM2:SP:105135,1,"OMBELLES",43.191118,5.609126,0,0,OM2:SA:CTP105134,Europe/Paris,,OM2, +OM2:SP:105136,1,"LA TREILLE",43.193046,5.609605,0,0,OM2:SA:CTP105136,Europe/Paris,,OM2, +OM2:SP:105137,1,"LA TREILLE",43.192904,5.609806,0,0,OM2:SA:CTP105136,Europe/Paris,,OM2, +OM2:SP:105138,1,"ROUMAGOUA",43.194505,5.610978,0,0,OM2:SA:CTP105138,Europe/Paris,,OM2, +OM2:SP:105139,1,"ROUMAGOUA",43.194345,5.61124,0,0,OM2:SA:CTP105138,Europe/Paris,,OM2, +OM2:SP:105140,1,"LES MATAGOTS",43.195454,5.612003,0,0,OM2:SA:CTP105140,Europe/Paris,,OM2, +OM2:SP:105141,1,"LES MATAGOTS",43.195243,5.612151,0,0,OM2:SA:CTP105140,Europe/Paris,,OM2, +OM2:SP:105142,1,"STE HERMENTAIRE",43.198151,5.614677,0,0,OM2:SA:CTP105142,Europe/Paris,,OM2, +OM2:SP:105143,1,"STE HERMENTAIRE",43.197983,5.614888,0,0,OM2:SA:CTP105142,Europe/Paris,,OM2, +OM2:SP:105144,1,"MAURELLE NORD",43.200702,5.620661,0,0,OM2:SA:CTP105144,Europe/Paris,,OM2, +OM2:SP:105145,1,"MAURELLE NORD",43.200454,5.620856,0,0,OM2:SA:CTP105144,Europe/Paris,,OM2, +OM2:SP:105146,1,"LA PROVIDENCE",43.201788,5.623096,0,0,OM2:SA:CTP105146,Europe/Paris,,OM2, +OM2:SP:105147,1,"LA CROIX",43.212341,5.629121,0,0,OM2:SA:CTP105147,Europe/Paris,,OM2, +OM2:SP:105148,1,"LA CROIX",43.21233,5.629477,0,0,OM2:SA:CTP105147,Europe/Paris,,OM2, +OM2:SP:105149,1,"COOPERATIVE",43.213399,5.630092,0,0,OM2:SA:CTP105149,Europe/Paris,,OM2, +OM2:SP:105150,1,"COOPERATIVE",43.213334,5.630162,0,0,OM2:SA:CTP105149,Europe/Paris,,OM2, +OM2:SP:105151,1,"MAIRIE CEYRESTE",43.214286,5.631397,0,0,OM2:SA:CTP105151,Europe/Paris,,OM2, +OM2:SP:105152,1,"MAIRIE CEYRESTE",43.214229,5.63148,0,0,OM2:SA:CTP105151,Europe/Paris,,OM2, +OM2:SP:105153,1,"LES PALMIERS",43.218326,5.635993,0,0,OM2:SA:CTP105153,Europe/Paris,,OM2, +OM2:SP:105154,1,"LES PALMIERS",43.218147,5.635983,0,0,OM2:SA:CTP105153,Europe/Paris,,OM2, +OM2:SP:105155,1,"LA GRANETTE",43.218905,5.639691,0,0,OM2:SA:CTP105155,Europe/Paris,,OM2, +OM2:SP:105156,1,"LA GRANETTE",43.218922,5.640012,0,0,OM2:SA:CTP105155,Europe/Paris,,OM2, +OM2:SP:105157,1,"LA CALADE",43.220997,5.644201,0,0,OM2:SA:CTP105157,Europe/Paris,,OM2, +OM2:SP:105158,1,"LA CALADE",43.220837,5.644413,0,0,OM2:SA:CTP105157,Europe/Paris,,OM2, +OM2:SP:105159,1,"LE CANTOUNET",43.221884,5.64606,0,0,OM2:SA:CTP105159,Europe/Paris,,OM2, +OM2:SP:105160,1,"LE CANTOUNET",43.221746,5.64615,0,0,OM2:SA:CTP105159,Europe/Paris,,OM2, +OM2:SP:105161,1,"PLAN DE MASSE",43.223163,5.648888,0,0,OM2:SA:CTP105161,Europe/Paris,,OM2, +OM2:SP:105164,1,"LES SEVERIERS",43.203345,5.610191,0,0,OM2:SA:CTP105164,Europe/Paris,,OM2, +OM2:SP:105165,1,"LES SEVERIERS",43.203433,5.609661,0,0,OM2:SA:CTP105164,Europe/Paris,,OM2, +OM2:SP:105166,1,"LES CHARMETTES",43.206611,5.608865,0,0,OM2:SA:CTP105166,Europe/Paris,,OM2, +OM2:SP:105167,1,"LES CHARMETTES",43.206559,5.608493,0,0,OM2:SA:CTP105166,Europe/Paris,,OM2, +OM2:SP:105168,1,"MARCEL CANNEDU",43.208063,5.607263,0,0,OM2:SA:CTP105168,Europe/Paris,,OM2, +OM2:SP:105169,1,"MARCEL CANNEDU",43.207838,5.607275,0,0,OM2:SA:CTP105168,Europe/Paris,,OM2, +OM2:SP:105170,1,"ATLAS",43.207662,5.605962,0,0,OM2:SA:CTP105170,Europe/Paris,,OM2, +OM2:SP:105171,1,"ATLAS",43.207496,5.606076,0,0,OM2:SA:CTP105170,Europe/Paris,,OM2, +OM2:SP:105172,1,"ROND POINT DES VOILES",43.206797,5.601585,0,0,OM2:SA:CTP105172,Europe/Paris,,OM2, +OM2:SP:105173,1,"ROND POINT DES VOILES",43.2066,5.601832,0,0,OM2:SA:CTP105172,Europe/Paris,,OM2, +OM2:SP:105174,1,"FAUBOURG DE L' ENTREPRISE",43.202941,5.598847,0,0,OM2:SA:CTP105174,Europe/Paris,,OM2, +OM2:SP:105175,1,"FAUBOURG DE L' ENTREPRISE",43.203055,5.599246,0,0,OM2:SA:CTP105174,Europe/Paris,,OM2, +OM2:SP:105176,1,"PLAINE BRUNETTE",43.201641,5.597543,0,0,OM2:SA:CTP105176,Europe/Paris,,OM2, +OM2:SP:105177,1,"PLAINE BRUNETTE",43.201507,5.597794,0,0,OM2:SA:CTP105176,Europe/Paris,,OM2, +OM2:SP:105178,1,"OEIL EMERGENCE",43.200272,5.595819,0,0,OM2:SA:CTP105178,Europe/Paris,,OM2, +OM2:SP:105179,1,"OEIL EMERGENCE",43.200078,5.595992,0,0,OM2:SA:CTP105178,Europe/Paris,,OM2, +OM2:SP:105181,1,"ATHELIA I",43.200476,5.594429,0,0,OM2:SA:CTP105181,Europe/Paris,,OM2, +OM2:SP:105183,1,"HOPITAL",43.178741,5.60922,0,0,OM2:SA:CTP105183,Europe/Paris,,OM2, +OM2:SP:105184,1,"JARDIN DE LA VILLE",43.179007,5.607294,0,0,OM2:SA:CTP105184,Europe/Paris,,OM2, +OM2:SP:105185,1,"JARDIN DE LA VILLE",43.179184,5.60739,0,0,OM2:SA:CTP105184,Europe/Paris,,OM2, +OM2:SP:105187,1,"LYCEE MEDITERRANEE",43.19095,5.611366,0,0,OM2:SA:CTP105187,Europe/Paris,,OM2, +OM2:SP:105189,1,"LA PROVIDENCE",43.20156,5.623193,0,0,OM2:SA:CTP105146,Europe/Paris,,OM2, +OM2:SP:105190,1,"CAMUGLI",43.183053,5.612907,0,0,OM2:SA:CTP105072,Europe/Paris,,OM2, +OM2:SP:105191,1,"CHEMIN DU GAROUTIER",43.202724,5.625116,0,0,OM2:SA:CTP105191,Europe/Paris,,OM2, +OM2:SP:105192,1,"CHEMIN DU GAROUTIER",43.202879,5.624781,0,0,OM2:SA:CTP105191,Europe/Paris,,OM2, +OM2:SP:105193,1,"CHEMIN DE VALTENDRE",43.204376,5.626698,0,0,OM2:SA:CTP105193,Europe/Paris,,OM2, +OM2:SP:105194,1,"CHEMIN DE VALTENDRE",43.204484,5.626385,0,0,OM2:SA:CTP105193,Europe/Paris,,OM2, +OM2:SP:105197,1,"PONT DE L'AUTOROUTE",43.209233,5.628415,0,0,OM2:SA:CTP105197,Europe/Paris,,OM2, +OM2:SP:105198,1,"PONT DE L'AUTOROUTE",43.20931,5.628259,0,0,OM2:SA:CTP105197,Europe/Paris,,OM2, +OM2:SP:105199,1,"CENTRE MEDICAL",43.210449,5.628927,0,0,OM2:SA:CTP105199,Europe/Paris,,OM2, +OM2:SP:105201,1,"GARE ROUTIERE",43.173659,5.610442,0,0,OM5:SA:CTP4029001,Europe/Paris,,OM2, +OM2:SP:105202,1,"GRAND VIGNE",43.215883,5.633259,0,0,OM2:SA:CTP105202,Europe/Paris,,OM2, +OM2:SP:105203,1,"GRAND VIGNE",43.215978,5.633092,0,0,OM2:SA:CTP105202,Europe/Paris,,OM2, +OM2:SP:105207,1,"CAMUSSO",43.178723,5.599463,0,0,OM2:SA:CTP105207,Europe/Paris,,OM2, +OM2:SP:105209,1,"HOTEL DES IMPOTS",43.179118,5.602152,0,0,OM2:SA:CTP105209,Europe/Paris,,OM2, +OM2:SP:105213,1,"LA CROIX DE MALTE",43.177728,5.608536,0,0,OM2:SA:CTP105213,Europe/Paris,,OM2, +OM2:SP:105215,1,"BAIE DES ANGES",43.189703,5.649912,0,0,OM2:SA:CTP105215,Europe/Paris,,OM2, +OM2:SP:105220,1,"COLLEGE MATAGOTS",43.193236,5.613042,0,0,OM2:SA:CTP105220,Europe/Paris,,OM2, +OM2:SP:105222,1,"CALENDAL",43.19183,5.619077,0,0,OM2:SA:CTP105222,Europe/Paris,,OM2, +OM2:SP:105223,1,"PEYMIAN",43.190287,5.624734,0,0,OM2:SA:CTP105223,Europe/Paris,,OM2, +OM2:SP:105226,1,"CALENDAL",43.191497,5.618935,0,0,OM2:SA:CTP105222,Europe/Paris,,OM2, +OM2:SP:105227,1,"COLLEGE MATAGOTS",43.193081,5.612603,0,0,OM2:SA:CTP105220,Europe/Paris,,OM2, +OM2:SP:105228,1,"PEYMIAN",43.189892,5.624558,0,0,OM2:SA:CTP105223,Europe/Paris,,OM2, +OM2:SP:105230,1,"COLLEGE VIREBELLE",43.184907,5.59968,0,0,OM5:SA:CTP4029109,Europe/Paris,,OM2, +OM2:SP:105301,1,"GARE SNCF",43.199566,5.63252,0,0,OM2:SA:CTP105096,Europe/Paris,,OM2, +OM2:SP:105302,1,"LE CONSERVATOIRE",43.170805,5.601407,0,0,OM2:SA:CTP105302,Europe/Paris,,OM2, +OM2:SP:105303,1,"ST JEAN LA POSTE",43.188614,5.627682,0,0,OM2:SA:CTP105303,Europe/Paris,,OM2, +OM2:SP:105304,1,"SEMAPHORE",27.140959,-3.404569,0,0,OM2:SA:CTP105304,Europe/Paris,,OM2, +OM2:SP:105305,1,"COLLEGE JEAN JAURES",43.173932,5.603321,0,0,OM5:SA:CTP4029015,Europe/Paris,,OM2, +OM2:SP:105307,1,"SEMAPHORE",27.140959,-3.404569,0,0,OM2:SA:CTP105304,Europe/Paris,,OM2, +OM2:SP:105309,1,"ECOLE DES SEVERIERS",43.203345,5.610191,0,0,OM2:SA:CTP105309,Europe/Paris,,OM2, +OM2:SP:105310,1,"ECOLE DES SEVERIERS",43.203433,5.609661,0,0,OM2:SA:CTP105309,Europe/Paris,,OM2, +OM2:SP:105311,1,"LE VIEUX MAS",43.20099,5.605941,0,0,OM2:SA:CTP105311,Europe/Paris,,OM2, +OM2:SP:105312,1,"LE VIEUX MAS",43.201166,5.605719,0,0,OM2:SA:CTP105311,Europe/Paris,,OM2, +OM2:SP:105313,1,"LA LIONNE",43.197543,5.607601,0,0,OM2:SA:CTP105313,Europe/Paris,,OM2, +OM2:SP:105314,1,"LA LIONNE",43.197975,5.608016,0,0,OM2:SA:CTP105313,Europe/Paris,,OM2, +OM2:SP:105315,1,"DOMAINE DE LA TOUR",43.191089,5.604226,0,0,OM2:SA:CTP105315,Europe/Paris,,OM2, +OM2:SP:105316,1,"DOMAINE DE LA TOUR",43.190906,5.604677,0,0,OM2:SA:CTP105315,Europe/Paris,,OM2, +OM2:SP:105317,1,"ROUTE DE MARSEILLE",27.140959,-3.404569,0,0,OM2:SA:CTP105317,Europe/Paris,,OM2, +OM2:SP:105319,1,"LUMIERE",27.140959,-3.404569,0,0,OM2:SA:CTP105319,Europe/Paris,,OM2, +OM2:SP:105320,1,"LUMIERE",27.140959,-3.404569,0,0,OM2:SA:CTP105319,Europe/Paris,,OM2, +OM2:SP:105321,1,"MAIRIE",27.140959,-3.404569,0,0,SIN:SA:OCE87695973,Europe/Paris,,OM2, +OM2:SP:105322,1,"MAIRIE",27.140959,-3.404569,0,0,SIN:SA:OCE87695973,Europe/Paris,,OM2, +OM2:SP:105323,1,"KENNEDY",43.179114,5.605137,0,0,OM2:SA:CTP105323,Europe/Paris,,OM2, +OM2:SP:105324,1,"EMILIE RIPERT",43.191815,5.617095,0,0,OM2:SA:CTP105324,Europe/Paris,,OM2, +OM2:SP:105325,1,"HOTEL IBIS",43.205654,5.602421,0,0,OM2:SA:CTP105325,Europe/Paris,,OM2, +OM2:SP:105326,1,"GENEVRIERS",43.206936,5.597762,0,0,OM2:SA:CTP105326,Europe/Paris,,OM2, +OM2:SP:105327,1,"JUJUBIERS",43.206096,5.594632,0,0,OM2:SA:CTP105327,Europe/Paris,,OM2, +OM2:SP:105329,1,"MIREILLE",43.189651,5.628879,0,0,OM2:SA:CTP105329,Europe/Paris,,OM2, +OM2:SP:105330,1,"CARBET",43.190358,5.641888,0,0,OM2:SA:CTP105330,Europe/Paris,,OM2, +OM2:SP:105331,1,"CARBET",43.190593,5.641967,0,0,OM2:SA:CTP105330,Europe/Paris,,OM2, +OM2:SP:105353,1,"CAMPING BAIE DES ANGES",43.186402,5.657843,0,0,OM2:SA:CTP105353,Europe/Paris,,OM2, +OM2:SP:105358,1,"LES BASTIDES DU GARLABAN",43.220399,5.628808,0,0,OM2:SA:CTP105358,Europe/Paris,,OM2, +OM3:SP:7001,1,"Vieux Port",43.294642,5.37409,0,0,OM1:SA:CTP2285,Europe/Paris,,OM3, +OM3:SP:7002,1,"Vieux Port",43.294642,5.37409,0,0,OM1:SA:CTP2285,Europe/Paris,,OM3, +OM3:SP:7003,1,"Ile d'If",43.280358,5.326504,0,0,OM3:SA:CTP7003,Europe/Paris,,OM3, +OM3:SP:7004,1,"Frioul",43.280136,5.307049,0,0,OM3:SA:CTP7004,Europe/Paris,,OM3, +OM3:SP:7005,1,"Ile d'If",43.280358,5.326505,0,0,OM3:SA:CTP7003,Europe/Paris,,OM3, +OM3:SP:7006,1,"Frioul",43.280136,5.307049,0,0,OM3:SA:CTP7004,Europe/Paris,,OM3, +OM4:SP:3000061,1,"Plaine des sports",43.393424,5.141003,0,0,OM4:SA:CTP3000061,Europe/Paris,,OM4, +OM4:SP:3000069,1,"Sécurité sociale",43.386763,5.158197,0,0,OM4:SA:CTP3000069,Europe/Paris,,OM4, +OM4:SP:3000610,1,"Foyer li sian ben",43.391265,5.177281,0,0,OM4:SA:CTP3000610,Europe/Paris,,OM4, +OM4:SP:3000612,1,"Mairie annexe",43.396263,5.117301,0,0,OM4:SA:CTP3000612,Europe/Paris,,OM4, +OM4:SP:3020000,1,"Bastides",43.369503,5.269705,0,0,OM4:SA:CTP3020000,Europe/Paris,,OM4, +OM4:SP:3020003,1,"Chenes Verts",43.370623,5.267519,0,0,OM4:SA:CTP3020003,Europe/Paris,,OM4, +OM4:SP:3020004,1,"Les Coulets",43.372089,5.261233,0,0,OM4:SA:CTP3020004,Europe/Paris,,OM4, +OM4:SP:3020005,1,"Bessou",43.370777,5.253228,0,0,OM4:SA:CTP3625944,Europe/Paris,,OM4, +OM4:SP:3020006,1,"Héritages",43.367158,5.262695,0,0,OM4:SA:CTP3020006,Europe/Paris,,OM4, +OM4:SP:3020007,1,"Jardins",43.368468,5.268087,0,0,OM4:SA:CTP3020007,Europe/Paris,,OM4, +OM4:SP:3020008,1,"Logis Neuf",43.372389,5.265107,0,0,OM4:SA:CTP3020008,Europe/Paris,,OM4, +OM4:SP:3020010,1,"Le Mas",43.370617,5.257152,0,0,OM4:SA:CTP3020010,Europe/Paris,,OM4, +OM4:SP:3020011,1,"Ricarde",43.367461,5.262797,0,0,OM4:SA:CTP3020011,Europe/Paris,,OM4, +OM4:SP:3020012,1,"Saint Roch",43.368045,5.250513,0,0,OM4:SA:CTP3020012,Europe/Paris,,OM4, +OM4:SP:3020100,1,"Bastides",43.369924,5.269111,0,0,OM4:SA:CTP3020000,Europe/Paris,,OM4, +OM4:SP:3020103,1,"Chenes Verts",43.370855,5.267272,0,0,OM4:SA:CTP3020003,Europe/Paris,,OM4, +OM4:SP:3020104,1,"Les Coulets",43.368735,5.245963,0,0,OM4:SA:CTP3020104,Europe/Paris,,OM4, +OM4:SP:3020107,1,"Jardins",43.368583,5.267477,0,0,OM4:SA:CTP3020007,Europe/Paris,,OM4, +OM4:SP:3020108,1,"Logis Neuf",43.372352,5.265118,0,0,OM4:SA:CTP3020008,Europe/Paris,,OM4, +OM4:SP:3020109,1,"La Poste",43.369777,5.25065,0,0,OM4:SA:CTP3020109,Europe/Paris,,OM4, +OM4:SP:3020110,1,"Le Mas",43.370412,5.25777,0,0,OM4:SA:CTP3020010,Europe/Paris,,OM4, +OM4:SP:3020500,1,"Anthénors",43.333061,5.202776,0,0,OM4:SA:CTP3020500,Europe/Paris,,OM4, +OM4:SP:3020501,1,"Bartavelle",43.35073,5.215255,0,0,OM4:SA:CTP3020501,Europe/Paris,,OM4, +OM4:SP:3020502,1,"Bergerie",43.363791,5.238884,0,0,OM4:SA:CTP3020502,Europe/Paris,,OM4, +OM4:SP:3020503,1,"Bibliothèque",43.355597,5.200699,0,0,OM4:SA:CTP3020503,Europe/Paris,,OM4, +OM4:SP:3020504,1,"Bourgailles",43.348353,5.203935,0,0,OM4:SA:CTP3020504,Europe/Paris,,OM4, +OM4:SP:3020505,1,"Celier",43.368725,5.245987,0,0,OM4:SA:CTP3020505,Europe/Paris,,OM4, +OM4:SP:3020506,1,"Cote Bleue",43.356118,5.200355,0,0,OM4:SA:CTP3020506,Europe/Paris,,OM4, +OM4:SP:3020507,1,"Chantegrive EDF",43.352471,5.214048,0,0,OM4:SA:CTP3020507,Europe/Paris,,OM4, +OM4:SP:3020510,1,"Chardonerets",43.35272,5.206408,0,0,OM4:SA:CTP3020510,Europe/Paris,,OM4, +OM4:SP:3020511,1,"Cimetière d'Ensues",43.353796,5.198403,0,0,OM4:SA:CTP3020511,Europe/Paris,,OM4, +OM4:SP:3020512,1,"Colleton",43.354464,5.202367,0,0,OM4:SA:CTP3020512,Europe/Paris,,OM4, +OM4:SP:3020513,1,"Colleton",43.354604,5.202855,0,0,OM4:SA:CTP3020512,Europe/Paris,,OM4, +OM4:SP:3020518,1,"Falaise",43.331669,5.213842,0,0,OM4:SA:CTP3020518,Europe/Paris,,OM4, +OM4:SP:3020519,1,"Figuières",43.331886,5.211439,0,0,OM4:SA:CTP3020519,Europe/Paris,,OM4, +OM4:SP:3020520,1,"Flamants Rose",43.351003,5.211781,0,0,OM4:SA:CTP3020520,Europe/Paris,,OM4, +OM4:SP:3020521,1,"Gare SNCF Ensues",43.334559,5.198195,0,0,OM4:SA:CTP3020521,Europe/Paris,,OM4, +OM4:SP:3020523,1,"Grand Méjan",43.333253,5.218159,0,0,OM4:SA:CTP3020523,Europe/Paris,,OM4, +OM4:SP:3020524,1,"Grand Pins",43.340236,5.197049,0,0,OM4:SA:CTP3020524,Europe/Paris,,OM4, +OM4:SP:3020529,1,"Magnolias",43.344616,5.201777,0,0,OM4:SA:CTP3020529,Europe/Paris,,OM4, +OM4:SP:3020533,1,"Niolon Gare",43.340242,5.256776,0,0,OM4:SA:CTP3020533,Europe/Paris,,OM4, +OM4:SP:3020535,1,"Pachons",43.355347,5.207033,0,0,OM4:SA:CTP3020535,Europe/Paris,,OM4, +OM4:SP:3020537,1,"Petit Méjan",43.331471,5.217232,0,0,OM4:SA:CTP3020537,Europe/Paris,,OM4, +OM4:SP:3020538,1,"Plateau la Brise",43.337773,5.198367,0,0,OM4:SA:CTP3020538,Europe/Paris,,OM4, +OM4:SP:3020540,1,"Mairie",43.357098,5.205765,0,0,OM4:SA:CTP3020540,Europe/Paris,,OM4, +OM4:SP:3020542,1,"Rond Point Chantegrive",43.351558,5.209517,0,0,OM4:SA:CTP3020542,Europe/Paris,,OM4, +OM4:SP:3020544,1,"Souvenir Français",43.355492,5.196528,0,0,OM4:SA:CTP3020544,Europe/Paris,,OM4, +OM4:SP:3020546,1,"Vesse",43.342693,5.259919,0,0,OM4:SA:CTP3020546,Europe/Paris,,OM4, +OM4:SP:3020548,1,"Village Redonne",43.333592,5.199391,0,0,OM4:SA:CTP3020548,Europe/Paris,,OM4, +OM4:SP:3020600,1,"Anthénors",43.333012,5.202589,0,0,OM4:SA:CTP3020500,Europe/Paris,,OM4, +OM4:SP:3020604,1,"Bourgailles",43.348972,5.20399,0,0,OM4:SA:CTP3020504,Europe/Paris,,OM4, +OM4:SP:3020610,1,"Chardonerets",43.333367,5.192617,0,0,OM4:SA:CTP3020610,Europe/Paris,,OM4, +OM4:SP:3020611,1,"Cimetière d'Ensues",43.353724,5.198424,0,0,OM4:SA:CTP3020511,Europe/Paris,,OM4, +OM4:SP:3020618,1,"Falaise",43.33148,5.214855,0,0,OM4:SA:CTP3020518,Europe/Paris,,OM4, +OM4:SP:3020619,1,"Figuières",43.331994,5.211456,0,0,OM4:SA:CTP3020519,Europe/Paris,,OM4, +OM4:SP:3020620,1,"Flamants Rose",43.349845,5.214076,0,0,OM4:SA:CTP3020520,Europe/Paris,,OM4, +OM4:SP:3020637,1,"Petit Méjan",43.331391,5.217179,0,0,OM4:SA:CTP3020537,Europe/Paris,,OM4, +OM4:SP:3020638,1,"Plateau la Brise",43.337728,5.198378,0,0,OM4:SA:CTP3020538,Europe/Paris,,OM4, +OM4:SP:3020644,1,"Souvenir Français",43.355166,5.197966,0,0,OM4:SA:CTP3020544,Europe/Paris,,OM4, +OM4:SP:3020648,1,"Village Redonne",43.333479,5.199237,0,0,OM4:SA:CTP3020548,Europe/Paris,,OM4, +OM4:SP:3021001,1,"Boulodrome",43.333303,5.151373,0,0,OM4:SA:CTP3021001,Europe/Paris,,OM4, +OM4:SP:3021002,1,"Camping",43.330006,5.136061,0,0,OM4:SA:CTP3021002,Europe/Paris,,OM4, +OM4:SP:3021003,1,"Centre Commercial",43.330191,5.137967,0,0,OM4:SA:CTP3021003,Europe/Paris,,OM4, +OM4:SP:3021005,1,"Cimetière Carry",43.333839,5.154257,0,0,OM4:SA:CTP3021005,Europe/Paris,,OM4, +OM4:SP:3021006,1,"Ecole Crèche",43.336432,5.15686,0,0,OM4:SA:CTP3021006,Europe/Paris,,OM4, +OM4:SP:3021007,1,"Ecole Thoulouze",43.336841,5.156338,0,0,OM4:SA:CTP3021007,Europe/Paris,,OM4, +OM4:SP:3021011,1,"Gare SNCF Carry",43.336357,5.153555,0,0,OM4:SA:CTP3021011,Europe/Paris,,OM4, +OM4:SP:3021012,1,"Général Leclerc",43.332329,5.163828,0,0,OM4:SA:CTP3021012,Europe/Paris,,OM4, +OM4:SP:3021015,1,"Hauts de Jas",43.337571,5.165195,0,0,OM4:SA:CTP3021015,Europe/Paris,,OM4, +OM4:SP:3021017,1,"Jean Bart",43.336996,5.170291,0,0,OM4:SA:CTP3021017,Europe/Paris,,OM4, +OM4:SP:3021018,1,"Jean Jaurès",43.331537,5.152185,0,0,OM4:SA:CTP3021018,Europe/Paris,,OM4, +OM4:SP:3021019,1,"L'Eden",43.335508,5.142328,0,0,OM4:SA:CTP3021019,Europe/Paris,,OM4, +OM4:SP:3021020,1,"Lombardie",43.33607,5.16687,0,0,OM4:SA:CTP3021020,Europe/Paris,,OM4, +OM4:SP:3021022,1,"Montagnette",43.334929,5.163414,0,0,OM4:SA:CTP3021022,Europe/Paris,,OM4, +OM4:SP:3021026,1,"Port Carry",43.330783,5.153873,0,0,OM4:SA:CTP3021026,Europe/Paris,,OM4, +OM4:SP:3021027,1,"Rd Pt Patissière",43.332304,5.146939,0,0,OM4:SA:CTP3021027,Europe/Paris,,OM4, +OM4:SP:3021028,1,"Rd Pt Corniche",43.328517,5.118585,0,0,OM4:SA:CTP3021028,Europe/Paris,,OM4, +OM4:SP:3021029,1,"Restanques",43.334465,5.158476,0,0,OM4:SA:CTP3021029,Europe/Paris,,OM4, +OM4:SP:3021030,1,"Romaron",43.334304,5.169086,0,0,OM4:SA:CTP3021030,Europe/Paris,,OM4, +OM4:SP:3021031,1,"Carry Le Rouet",43.336262,5.176328,0,0,OM4:SA:CTP3021031,Europe/Paris,,OM4, +OM4:SP:3021033,1,"Route Côte Bleue",43.331784,5.158898,0,0,OM4:SA:CTP3021033,Europe/Paris,,OM4, +OM4:SP:3021034,1,"Square de Gaulle",43.33349,5.142476,0,0,OM4:SA:CTP3021034,Europe/Paris,,OM4, +OM4:SP:3021035,1,"Tasse",43.329864,5.157363,0,0,OM4:SA:CTP3021035,Europe/Paris,,OM4, +OM4:SP:3021036,1,"Théâtre de Verdure",43.334928,5.150097,0,0,OM4:SA:CTP3021036,Europe/Paris,,OM4, +OM4:SP:3021037,1,"Tuilière",43.329811,5.141495,0,0,OM4:SA:CTP3021037,Europe/Paris,,OM4, +OM4:SP:3021040,1,"Le Grand Pin",43.336605,5.178328,0,0,OM4:SA:CTP3021040,Europe/Paris,,OM4, +OM4:SP:3021101,1,"Boulodrome",43.333313,5.151336,0,0,OM4:SA:CTP3021001,Europe/Paris,,OM4, +OM4:SP:3021102,1,"Camping",43.329978,5.135788,0,0,OM4:SA:CTP3021002,Europe/Paris,,OM4, +OM4:SP:3021103,1,"Centre Commercial",43.330235,5.137981,0,0,OM4:SA:CTP3021003,Europe/Paris,,OM4, +OM4:SP:3021112,1,"Général Leclerc",43.332333,5.163323,0,0,OM4:SA:CTP3021012,Europe/Paris,,OM4, +OM4:SP:3021118,1,"Jean Jaurès",43.331311,5.152223,0,0,OM4:SA:CTP3021018,Europe/Paris,,OM4, +OM4:SP:3021126,1,"Port Carry",43.330862,5.152904,0,0,OM4:SA:CTP3021026,Europe/Paris,,OM4, +OM4:SP:3021127,1,"Rd Pt Patissière",43.332333,5.146854,0,0,OM4:SA:CTP3021027,Europe/Paris,,OM4, +OM4:SP:3021131,1,"Carry Le Rouet",43.336376,5.176444,0,0,OM4:SA:CTP3021031,Europe/Paris,,OM4, +OM4:SP:3021135,1,"Tasse",43.329913,5.157538,0,0,OM4:SA:CTP3021035,Europe/Paris,,OM4, +OM4:SP:3021137,1,"Tuilière",43.32993,5.141403,0,0,OM4:SA:CTP3021037,Europe/Paris,,OM4, +OM4:SP:3021500,1,"Aigue Bleue",43.337796,5.113393,0,0,OM4:SA:CTP3021500,Europe/Paris,,OM4, +OM4:SP:3021501,1,"Ambrogiani",43.336841,5.10683,0,0,OM4:SA:CTP3021501,Europe/Paris,,OM4, +OM4:SP:3021503,1,"Rond Point Brûlot",43.333684,5.108599,0,0,OM4:SA:CTP3021503,Europe/Paris,,OM4, +OM4:SP:3021505,1,"Canoubier",43.335056,5.102827,0,0,OM4:SA:CTP3021505,Europe/Paris,,OM4, +OM4:SP:3021507,1,"Cimetière Sausset",43.334663,5.110063,0,0,OM4:SA:CTP3021507,Europe/Paris,,OM4, +OM4:SP:3021508,1,"Collège Matraja",43.339703,5.101141,0,0,OM4:SA:CTP3021508,Europe/Paris,,OM4, +OM4:SP:3021509,1,"Les Coquillages",43.329282,5.129005,0,0,OM4:SA:CTP3021509,Europe/Paris,,OM4, +OM4:SP:3021510,1,"Crêche Sausset",43.332004,5.099107,0,0,OM4:SA:CTP3021510,Europe/Paris,,OM4, +OM4:SP:3021514,1,"Frederic Mistral",43.329405,5.111348,0,0,OM4:SA:CTP3021514,Europe/Paris,,OM4, +OM4:SP:3021515,1,"Frioul",43.334306,5.103653,0,0,OM4:SA:CTP3021515,Europe/Paris,,OM4, +OM4:SP:3021516,1,"Gare SNCF Sausset",43.33305,5.110896,0,0,OM4:SA:CTP3021516,Europe/Paris,,OM4, +OM4:SP:3021517,1,"Gd Vallat Nord",43.336068,5.10088,0,0,OM4:SA:CTP3021517,Europe/Paris,,OM4, +OM4:SP:3021518,1,"Gd Vallat Sud",43.331182,5.098206,0,0,OM4:SA:CTP3021518,Europe/Paris,,OM4, +OM4:SP:3021520,1,"Jean Moulin",43.332238,5.104686,0,0,OM4:SA:CTP3021520,Europe/Paris,,OM4, +OM4:SP:3021521,1,"Jean Sébastien Bach",43.339367,5.114528,0,0,OM4:SA:CTP3021521,Europe/Paris,,OM4, +OM4:SP:3021522,1,"Jules Ferry",43.329296,5.114201,0,0,OM4:SA:CTP3021522,Europe/Paris,,OM4, +OM4:SP:3021526,1,"Marcel Bodelle",43.331999,5.124062,0,0,OM4:SA:CTP3021526,Europe/Paris,,OM4, +OM4:SP:3021527,1,"Mare Nostrum",43.336299,5.102739,0,0,OM4:SA:CTP3021527,Europe/Paris,,OM4, +OM4:SP:3021529,1,"Micocoulier",43.336528,5.099079,0,0,OM4:SA:CTP3021529,Europe/Paris,,OM4, +OM4:SP:3021530,1,"Parc de Loisirs",43.33133,5.11898,0,0,OM4:SA:CTP3021530,Europe/Paris,,OM4, +OM4:SP:3021532,1,"Petit Rouveau",43.329901,5.125586,0,0,OM4:SA:CTP3021532,Europe/Paris,,OM4, +OM4:SP:3021533,1,"Peuplier",43.333126,5.094641,0,0,OM4:SA:CTP3021533,Europe/Paris,,OM4, +OM4:SP:3021534,1,"Police Municipale",43.33102,5.110109,0,0,OM4:SA:CTP3021534,Europe/Paris,,OM4, +OM4:SP:3021536,1,"Rive d'Or",43.330616,5.113562,0,0,OM4:SA:CTP3021536,Europe/Paris,,OM4, +OM4:SP:3021538,1,"Roland Garros",43.334891,5.095243,0,0,OM4:SA:CTP3021538,Europe/Paris,,OM4, +OM4:SP:3021543,1,"Terrasses",43.341256,5.114509,0,0,OM4:SA:CTP3021543,Europe/Paris,,OM4, +OM4:SP:3021544,1,"Tiboulen",43.334294,5.104133,0,0,OM4:SA:CTP3021544,Europe/Paris,,OM4, +OM4:SP:3021545,1,"Verdi",43.335854,5.111648,0,0,OM4:SA:CTP3021545,Europe/Paris,,OM4, +OM4:SP:3021600,1,"Aigue Bleue",43.337732,5.113439,0,0,OM4:SA:CTP3021500,Europe/Paris,,OM4, +OM4:SP:3021603,1,"Rond Point Brûlot",43.333684,5.108599,0,0,OM4:SA:CTP3021503,Europe/Paris,,OM4, +OM4:SP:3021609,1,"Les Coquillages",43.329278,5.129128,0,0,OM4:SA:CTP3021509,Europe/Paris,,OM4, +OM4:SP:3021617,1,"Gd Vallat Nord",43.33617,5.100749,0,0,OM4:SA:CTP3021517,Europe/Paris,,OM4, +OM4:SP:3021620,1,"Jean Moulin",43.332304,5.104603,0,0,OM4:SA:CTP3021520,Europe/Paris,,OM4, +OM4:SP:3021621,1,"Jean Sébastien Bach",43.33952,5.114523,0,0,OM4:SA:CTP3021521,Europe/Paris,,OM4, +OM4:SP:3021626,1,"Marcel Bodelle",43.331503,5.123102,0,0,OM4:SA:CTP3021526,Europe/Paris,,OM4, +OM4:SP:3021629,1,"Micocoulier",43.336631,5.098911,0,0,OM4:SA:CTP3021529,Europe/Paris,,OM4, +OM4:SP:3021630,1,"Parc de Loisirs",43.331116,5.117873,0,0,OM4:SA:CTP3021530,Europe/Paris,,OM4, +OM4:SP:3021633,1,"Peuplier",43.332943,5.094768,0,0,OM4:SA:CTP3021533,Europe/Paris,,OM4, +OM4:SP:3021638,1,"Roland Garros",43.334992,5.095125,0,0,OM4:SA:CTP3021538,Europe/Paris,,OM4, +OM4:SP:3021645,1,"Verdi",43.335789,5.111719,0,0,OM4:SA:CTP3021545,Europe/Paris,,OM4, +OM4:SP:3022504,1,"Hacienda",43.394882,5.126357,0,0,OM4:SA:CTP3022504,Europe/Paris,,OM4, +OM4:SP:3022510,1,"Centre Ville Chateauneuf",43.383514,5.164404,0,0,OM4:SA:CTP3022510,Europe/Paris,,OM4, +OM4:SP:3022511,1,"Chapelle",43.386256,5.168535,0,0,OM4:SA:CTP3022511,Europe/Paris,,OM4, +OM4:SP:3022523,1,"Les Fourques",43.37865,5.17325,0,0,OM4:SA:CTP3022523,Europe/Paris,,OM4, +OM4:SP:3022524,1,"Glacière",43.394237,5.134945,0,0,OM4:SA:CTP3022524,Europe/Paris,,OM4, +OM4:SP:3022539,1,"Marie Curie",43.383522,5.161002,0,0,OM4:SA:CTP3022539,Europe/Paris,,OM4, +OM4:SP:3022540,1,"Paon",43.387192,5.150654,0,0,OM4:SA:CTP3022540,Europe/Paris,,OM4, +OM4:SP:3022542,1,"Pins",43.384303,5.157268,0,0,OM4:SA:CTP3022542,Europe/Paris,,OM4, +OM4:SP:3022545,1,"La Poste",43.397533,5.112156,0,0,OM4:SA:CTP3022545,Europe/Paris,,OM4, +OM4:SP:3022547,1,"Raffinerie",43.399039,5.105336,0,0,OM4:SA:CTP3022547,Europe/Paris,,OM4, +OM4:SP:3022550,1,"Sablière",43.394728,5.122958,0,0,OM4:SA:CTP3022550,Europe/Paris,,OM4, +OM4:SP:3022554,1,"Thyms",43.386031,5.153802,0,0,OM4:SA:CTP3022554,Europe/Paris,,OM4, +OM4:SP:3022555,1,"Trois Frères",43.400047,5.117199,0,0,OM4:SA:CTP3022555,Europe/Paris,,OM4, +OM4:SP:3022558,1,"Mairie la Mède",43.396359,5.117242,0,0,OM4:SA:CTP3022558,Europe/Paris,,OM4, +OM4:SP:3022560,1,"Margnat",43.389333,5.170179,0,0,OM4:SA:CTP3022560,Europe/Paris,,OM4, +OM4:SP:3022604,1,"Hacienda",43.394682,5.136853,0,0,OM4:SA:CTP3022604,Europe/Paris,,OM4, +OM4:SP:3022611,1,"Chapelle",43.386234,5.168669,0,0,OM4:SA:CTP3022511,Europe/Paris,,OM4, +OM4:SP:3022624,1,"Glacière",43.394433,5.136052,0,0,OM4:SA:CTP3022524,Europe/Paris,,OM4, +OM4:SP:3022639,1,"Marie Curie",43.383513,5.161014,0,0,OM4:SA:CTP3022539,Europe/Paris,,OM4, +OM4:SP:3022640,1,"Paon",43.387346,5.150267,0,0,OM4:SA:CTP3022540,Europe/Paris,,OM4, +OM4:SP:3022645,1,"La Poste",43.397434,5.112879,0,0,OM4:SA:CTP3022545,Europe/Paris,,OM4, +OM4:SP:3022647,1,"Raffinerie",43.399073,5.105412,0,0,OM4:SA:CTP3022547,Europe/Paris,,OM4, +OM4:SP:3022650,1,"Sablière",43.394737,5.123292,0,0,OM4:SA:CTP3022550,Europe/Paris,,OM4, +OM4:SP:3022655,1,"Trois Frères",43.399402,5.117439,0,0,OM4:SA:CTP3022555,Europe/Paris,,OM4, +OM4:SP:3022660,1,"Margnat",43.388191,5.170159,0,0,OM4:SA:CTP3022560,Europe/Paris,,OM4, +OM4:SP:3062820,1,"Don Camillo",43.32812,5.150121,0,0,OM4:SA:CTP3062820,Europe/Paris,,OM4, +OM4:SP:3062824,1,"Mediterannée",43.329302,5.145498,0,0,OM4:SA:CTP3062824,Europe/Paris,,OM4, +OM4:SP:3062825,1,"Mediterannée",43.329332,5.145364,0,0,OM4:SA:CTP3062824,Europe/Paris,,OM4, +OM4:SP:3062885,1,"Douard",43.367358,5.243329,0,0,OM4:SA:CTP3062885,Europe/Paris,,OM4, +OM4:SP:3062886,1,"Douard",43.367358,5.243329,0,0,OM4:SA:CTP3062885,Europe/Paris,,OM4, +OM4:SP:3062890,1,"Centre Culturel",43.369348,5.250542,0,0,OM4:SA:CTP3062890,Europe/Paris,,OM4, +OM4:SP:3062894,1,"Héritages",43.367453,5.262735,0,0,OM4:SA:CTP3020006,Europe/Paris,,OM4, +OM4:SP:3062915,1,"Résidence du Port",43.403175,5.117918,0,0,OM4:SA:CTP3062915,Europe/Paris,,OM4, +OM4:SP:3062947,1,"Cimetière Vieux Chateauneuf",43.386634,5.162339,0,0,OM4:SA:CTP3062947,Europe/Paris,,OM4, +OM4:SP:3062948,1,"Cimetière Vieux Chateauneuf",43.386732,5.162036,0,0,OM4:SA:CTP3062947,Europe/Paris,,OM4, +OM4:SP:3062960,1,"Stade",43.382161,5.167629,0,0,OM4:SA:CTP3062960,Europe/Paris,,OM4, +OM4:SP:3062961,1,"Stade",43.382283,5.167451,0,0,OM4:SA:CTP3062960,Europe/Paris,,OM4, +OM4:SP:3062971,1,"Les Hérons",43.349544,5.21574,0,0,OM4:SA:CTP3062971,Europe/Paris,,OM4, +OM4:SP:3062972,1,"Les Hérons",43.349544,5.21574,0,0,OM4:SA:CTP3062971,Europe/Paris,,OM4, +OM4:SP:3062973,1,"Hotel de ville",43.355196,5.205615,0,0,OM4:SA:CTP3062973,Europe/Paris,,OM4, +OM4:SP:3062974,1,"Hotel de ville",43.355196,5.205615,0,0,OM4:SA:CTP3062973,Europe/Paris,,OM4, +OM4:SP:3062976,1,"Graffiane",43.344234,5.201252,0,0,OM4:SA:CTP3062976,Europe/Paris,,OM4, +OM4:SP:3063000,1,"Corbières",43.360298,5.298165,0,0,OM4:SA:CTP3063000,Europe/Paris,,OM4, +OM4:SP:3063001,1,"Corbières",43.360298,5.298165,0,0,OM4:SA:CTP3063000,Europe/Paris,,OM4, +OM4:SP:3063002,1,"Resquiadou",43.355126,5.284366,0,0,OM4:SA:CTP3063002,Europe/Paris,,OM4, +OM4:SP:3063003,1,"Resquiadou",43.355126,5.284366,0,0,OM4:SA:CTP3063002,Europe/Paris,,OM4, +OM4:SP:3621041,1,"Le Rouet Plage",43.33682,5.177099,0,0,OM4:SA:CTP3621041,Europe/Paris,,OM4, +OM4:SP:3625896,1,"ZI La Valampe",43.389315,5.14497,0,0,OM4:SA:CTP3625896,Europe/Paris,,OM4, +OM4:SP:3625897,1,"ZI La Valampe",43.389315,5.14497,0,0,OM4:SA:CTP3625896,Europe/Paris,,OM4, +OM4:SP:3625900,1,"Club Hippique",43.399212,5.136943,0,0,OM4:SA:CTP3625900,Europe/Paris,,OM4, +OM4:SP:3625902,1,"Vieux Moulin",43.383171,5.165062,0,0,OM4:SA:CTP3625902,Europe/Paris,,OM4, +OM4:SP:3625904,1,"Les Michelles",43.381831,5.168006,0,0,OM4:SA:CTP3625904,Europe/Paris,,OM4, +OM4:SP:3625906,1,"Le Grand Jas",43.378979,5.17238,0,0,OM4:SA:CTP3625906,Europe/Paris,,OM4, +OM4:SP:3625910,1,"Les Amandereits",43.378716,5.177191,0,0,OM4:SA:CTP3625910,Europe/Paris,,OM4, +OM4:SP:3625911,1,"Les Amandereits",43.378716,5.177191,0,0,OM4:SA:CTP3625910,Europe/Paris,,OM4, +OM4:SP:3625912,1,"Marie Mauron",43.402501,5.11814,0,0,OM4:SA:CTP3625912,Europe/Paris,,OM4, +OM4:SP:3625913,1,"Marie Mauron",43.402501,5.11814,0,0,OM4:SA:CTP3625912,Europe/Paris,,OM4, +OM4:SP:3625914,1,"Camille Pelletan",43.400209,5.109377,0,0,OM4:SA:CTP3625914,Europe/Paris,,OM4, +OM4:SP:3625915,1,"Camille Pelletan",43.400209,5.109377,0,0,OM4:SA:CTP3625914,Europe/Paris,,OM4, +OM4:SP:3625916,1,"Valampe",43.387918,5.147741,0,0,OM4:SA:CTP3625916,Europe/Paris,,OM4, +OM4:SP:3625917,1,"Valampe",43.387918,5.147741,0,0,OM4:SA:CTP3625916,Europe/Paris,,OM4, +OM4:SP:3625918,1,"Médiathèque",43.383402,5.163858,0,0,OM4:SA:CTP3625918,Europe/Paris,,OM4, +OM4:SP:3625922,1,"Le Stade",43.340335,5.114987,0,0,OM4:SA:CTP3625922,Europe/Paris,,OM4, +OM4:SP:3625923,1,"Le Stade",43.340335,5.114987,0,0,OM4:SA:CTP3625922,Europe/Paris,,OM4, +OM4:SP:3625924,1,"Général Leclerc",43.329196,5.112931,0,0,OM4:SA:CTP3625924,Europe/Paris,,OM4, +OM4:SP:3625925,1,"Général Leclerc",43.329196,5.112931,0,0,OM4:SA:CTP3625924,Europe/Paris,,OM4, +OM4:SP:3625926,1,"Lotissement de la Mer",43.329401,5.133424,0,0,OM4:SA:CTP3625926,Europe/Paris,,OM4, +OM4:SP:3625928,1,"Les Grillons",43.329456,5.130808,0,0,OM4:SA:CTP3625928,Europe/Paris,,OM4, +OM4:SP:3625930,1,"Les Sylvestres",43.330313,5.127027,0,0,OM4:SA:CTP3625930,Europe/Paris,,OM4, +OM4:SP:3625932,1,"Square du 8 Mai",43.331168,5.125599,0,0,OM4:SA:CTP3625932,Europe/Paris,,OM4, +OM4:SP:3625934,1,"La Colombière",43.330188,5.128018,0,0,OM4:SA:CTP3625934,Europe/Paris,,OM4, +OM4:SP:3625936,1,"Bel Air",43.330898,5.126163,0,0,OM4:SA:CTP3625936,Europe/Paris,,OM4, +OM4:SP:3625938,1,"Les Campanules",43.332169,5.12465,0,0,OM4:SA:CTP3625938,Europe/Paris,,OM4, +OM4:SP:3625943,1,"Le Cellier",43.344234,5.201252,0,0,OM4:SA:CTP3625943,Europe/Paris,,OM4, +OM4:SP:3625944,1,"Bessou",43.370864,5.253368,0,0,OM4:SA:CTP3625944,Europe/Paris,,OM4, +OM4:SP:3625946,1,"Estaque Castejon",43.361596,5.306559,0,0,OM4:SA:CTP3625946,Europe/Paris,,OM4, +OM4:SP:3625947,1,"Estaque Castejon",43.3617,5.306022,0,0,OM4:SA:CTP3625946,Europe/Paris,,OM4, +OM4:SP:3625948,1,"Espace Mistral",43.362089,5.309875,0,0,OM4:SA:CTP3625948,Europe/Paris,,OM4, +OM4:SP:3625949,1,"Espace Mistral",43.35973,5.316482,0,0,OM4:SA:CTP3625949,Europe/Paris,,OM4, +OM4:SP:3625950,1,"Estaque Fontaine de Tuiles",43.359059,5.317963,0,0,OM4:SA:CTP3625950,Europe/Paris,,OM4, +OM4:SP:3625951,1,"Estaque Fontaine de Tuiles",43.358326,5.3188,0,0,OM4:SA:CTP3625950,Europe/Paris,,OM4, +OM4:SP:3625952,1,"Littoral Chamant",43.347171,5.34417,0,0,OM4:SA:CTP3625952,Europe/Paris,,OM4, +OM4:SP:3625953,1,"Littoral Pas de Faon",43.351373,5.340188,0,0,OM4:SA:CTP3625953,Europe/Paris,,OM4, +OM4:SP:3625956,1,"Littoral Bemabo",43.335659,5.354481,0,0,OM4:SA:CTP3625956,Europe/Paris,,OM4, +OM4:SP:3625957,1,"Littoral Bemabo",43.335667,5.354519,0,0,OM4:SA:CTP3625956,Europe/Paris,,OM4, +OM4:SP:3625958,1,"Cap Pinède",43.32615,5.358809,0,0,OM4:SA:CTP3625958,Europe/Paris,,OM4, +OM4:SP:3625959,1,"Cap Pinède",43.326411,5.358786,0,0,OM4:SA:CTP3625958,Europe/Paris,,OM4, +OM4:SP:3625960,1,"Saint Cassien",43.320061,5.362689,0,0,OM4:SA:CTP3625960,Europe/Paris,,OM4, +OM4:SP:3625961,1,"Saint Cassien",43.320745,5.362959,0,0,OM4:SA:CTP3625960,Europe/Paris,,OM4, +OM4:SP:3625964,1,"Dames République",43.302388,5.369821,0,0,OM4:SA:CTP3625964,Europe/Paris,,OM4, +OM4:SP:3625965,1,"Dames République",43.302835,5.368306,0,0,OM4:SA:CTP3625964,Europe/Paris,,OM4, +OM4:SP:3625966,1,"Métro Jules Guesde",43.301873,5.372109,0,0,OM4:SA:CTP3625966,Europe/Paris,,OM4, +OM4:SP:3625967,1,"Métro Jules Guesde",43.301815,5.372918,0,0,OM4:SA:CTP3625966,Europe/Paris,,OM4, +OM4:SP:3625968,1,"Gare Saint-Charles",43.303894,5.380145,0,0,OM4:SA:CTP3625968,Europe/Paris,,OM4, +OM4:SP:3625969,1,"Gare Saint-Charles",43.303904,5.380121,0,0,OM4:SA:CTP3625968,Europe/Paris,,OM4, +OM4:SP:3626003,1,"Littoral Jean Labro",43.352412,5.338111,0,0,OM4:SA:CTP3626003,Europe/Paris,,OM4, +OM4:SP:3626004,1,"Littoral Jean Labro",43.353902,5.336266,0,0,OM4:SA:CTP3626003,Europe/Paris,,OM4, +OM4:SP:3626005,1,"Estaque Port",43.359953,5.315249,0,0,OM4:SA:CTP3626005,Europe/Paris,,OM4, +OM4:SP:3626006,1,"Estaque Port",43.359831,5.315735,0,0,OM4:SA:CTP3626005,Europe/Paris,,OM4, +OM4:SP:3626015,1,"Joliot Curie",43.3674,5.243442,0,0,OM4:SA:CTP3626015,Europe/Paris,,OM4, +OM4:SP:3626043,1,"Arenc Mirabeau",43.313586,5.365881,0,0,OM4:SA:CTP3626043,Europe/Paris,,OM4, +OM4:SP:3626045,1,"Charleroux",43.331112,5.111431,0,0,OM4:SA:CTP3626045,Europe/Paris,,OM4, +OM4:SP:3626046,1,"Creux du loup",43.359389,5.228691,0,0,OM4:SA:CTP3626046,Europe/Paris,,OM4, +OM4:SP:3626047,1,"Creux du loup 2",43.356906,5.216686,0,0,OM4:SA:CTP3626047,Europe/Paris,,OM4, +OM4:SP:3626049,1,"Fontaine",43.328802,5.145375,0,0,OM4:SA:CTP3626049,Europe/Paris,,OM4, +OM4:SP:3626050,1,"Joliette",43.304621,5.366516,0,0,OM4:SA:CTP3626050,Europe/Paris,,OM4, +OM4:SP:3626051,1,"Joliette",43.305312,5.365592,0,0,OM4:SA:CTP3626050,Europe/Paris,,OM4, +OM4:SP:3626052,1,"Le Silo",43.309991,5.367083,0,0,OM4:SA:CTP3626052,Europe/Paris,,OM4, +OM4:SP:3626053,1,"Mairie",43.357105,5.205519,0,0,OM4:SA:CTP3020540,Europe/Paris,,OM4, +OM5:SP:4019524,1,"Castellane",43.285394,5.384733,0,0,OM5:SA:CTP4019625,Europe/Paris,,OM5, +OM5:SP:4019525,1,"Castellane",43.285354,5.383894,0,0,OM5:SA:CTP4019625,Europe/Paris,,OM5, +OM5:SP:4019526,1,"Valmante Roubin",43.245432,5.412552,0,0,OM5:SA:CTP4019526,Europe/Paris,,OM5, +OM5:SP:4019528,1,"Obélisque",43.25107,5.403252,0,0,OM5:SA:CTP4019528,Europe/Paris,,OM5, +OM5:SP:4019529,1,"Le Corbusier",43.261341,5.397447,0,0,OM5:SA:CTP4019529,Europe/Paris,,OM5, +OM5:SP:4019530,1,"Rond Pt du Prado",43.272525,5.390803,0,0,OM5:SA:CTP4019530,Europe/Paris,,OM5, +OM5:SP:4019531,1,"Perier",43.279204,5.387392,0,0,OM5:SA:CTP4019531,Europe/Paris,,OM5, +OM5:SP:4019532,1,"Gare du Prado",43.282987,5.391004,0,0,OM5:SA:CTP4019632,Europe/Paris,,OM5, +OM5:SP:4019534,1,"Luminy Lachamp",43.24622,5.432174,0,0,OM5:SA:CTP4019534,Europe/Paris,,OM5, +OM5:SP:4019535,1,"Le Redon",43.244946,5.428061,0,0,OM5:SA:CTP4019535,Europe/Paris,,OM5, +OM5:SP:4019624,1,"Castellane",43.28518,5.384867,0,0,OM5:SA:CTP4019625,Europe/Paris,,OM5, +OM5:SP:4019625,1,"Castellane",43.28536,5.384165,0,0,OM5:SA:CTP4019625,Europe/Paris,,OM5, +OM5:SP:4019626,1,"Valmante Roubin",43.24554,5.411554,0,0,OM5:SA:CTP4019526,Europe/Paris,,OM5, +OM5:SP:4019628,1,"Obélisque",43.250983,5.403744,0,0,OM5:SA:CTP4019528,Europe/Paris,,OM5, +OM5:SP:4019629,1,"Le Corbusier",43.261518,5.397624,0,0,OM5:SA:CTP4019529,Europe/Paris,,OM5, +OM5:SP:4019630,1,"Rond Pt du Prado",43.273095,5.391087,0,0,OM5:SA:CTP4019530,Europe/Paris,,OM5, +OM5:SP:4019631,1,"Perier",43.279296,5.387592,0,0,OM5:SA:CTP4019531,Europe/Paris,,OM5, +OM5:SP:4019632,1,"Gare du Prado",43.282812,5.391609,0,0,OM5:SA:CTP4019632,Europe/Paris,,OM5, +OM5:SP:4019634,1,"Luminy Lachamp",43.246296,5.431604,0,0,OM5:SA:CTP4019534,Europe/Paris,,OM5, +OM5:SP:4019635,1,"Le Redon",43.24485,5.427145,0,0,OM5:SA:CTP4019535,Europe/Paris,,OM5, +OM5:SP:4021044,1,"Collège Saint Augustin",43.251102,5.552293,0,0,OM5:SA:CTP4021144,Europe/Paris,,OM5, +OM5:SP:4021144,1,"Collège Saint Augustin",43.251057,5.552452,0,0,OM5:SA:CTP4021144,Europe/Paris,,OM5, +OM5:SP:4021519,1,"Huit Mai 1945",43.219647,5.536524,0,0,OM5:SA:CTP4021519,Europe/Paris,,OM5, +OM5:SP:4025001,1,"Albizzi",43.229063,5.550491,0,0,OM5:SA:CTP4025101,Europe/Paris,,OM5, +OM5:SP:4025002,1,"Augustin Isnard",43.216141,5.541038,0,0,OM5:SA:CTP4025102,Europe/Paris,,OM5, +OM5:SP:4025003,1,"Belsunce",43.218715,5.534069,0,0,OM5:SA:CTP4025103,Europe/Paris,,OM5, +OM5:SP:4025004,1,"Cabrol",43.221698,5.536072,0,0,OM5:SA:CTP4025104,Europe/Paris,,OM5, +OM5:SP:4025005,1,"Casino",43.213794,5.541904,0,0,OM5:SA:CTP4025105,Europe/Paris,,OM5, +OM5:SP:4025006,1,"Vence",43.217624,5.541391,0,0,OM5:SA:CTP4025106,Europe/Paris,,OM5, +OM5:SP:4025007,1,"Cépages",43.223155,5.539185,0,0,OM5:SA:CTP4025107,Europe/Paris,,OM5, +OM5:SP:4025008,1,"Clos des Oliviers",43.223995,5.541865,0,0,OM5:SA:CTP4025108,Europe/Paris,,OM5, +OM5:SP:4025009,1,"Ferme Blanche",43.225014,5.542122,0,0,OM5:SA:CTP4025109,Europe/Paris,,OM5, +OM5:SP:4025010,1,"Fontblanche",43.228835,5.538336,0,0,OM5:SA:CTP4025110,Europe/Paris,,OM5, +OM5:SP:4025011,1,"Gare SNCF",43.233925,5.552879,0,0,OM5:SA:CTP4025111,Europe/Paris,,OM5, +OM5:SP:4025012,1,"Gendarmerie",43.215088,5.542796,0,0,OM5:SA:CTP4025112,Europe/Paris,,OM5, +OM5:SP:4025015,1,"Leriche",43.215008,5.543838,0,0,OM5:SA:CTP4025015,Europe/Paris,,OM5, +OM5:SP:4025016,1,"Les Brayes",43.221654,5.535995,0,0,OM5:SA:CTP4025016,Europe/Paris,,OM5, +OM5:SP:4025017,1,"Collège Les Gorguettes",43.228275,5.537115,0,0,OM5:SA:CTP4025117,Europe/Paris,,OM5, +OM5:SP:4025018,1,"Les Hauts Cépages",43.223155,5.539185,0,0,OM5:SA:CTP4025118,Europe/Paris,,OM5, +OM5:SP:4025019,1,"Parc Régis Vidal",43.224662,5.545472,0,0,OM5:SA:CTP4025019,Europe/Paris,,OM5, +OM5:SP:4025020,1,"Résidence du Vallat",43.221699,5.536076,0,0,OM5:SA:CTP4025020,Europe/Paris,,OM5, +OM5:SP:4025023,1,"St Jean",43.224068,5.544818,0,0,OM5:SA:CTP4025023,Europe/Paris,,OM5, +OM5:SP:4025024,1,"Terres Marines",43.217693,5.528604,0,0,OM5:SA:CTP4025024,Europe/Paris,,OM5, +OM5:SP:4025049,1,"Les Terrasses",43.227035,5.534377,0,0,OM5:SA:CTP4025049,Europe/Paris,,OM5, +OM5:SP:4025101,1,"Albizzi",43.229471,5.550212,0,0,OM5:SA:CTP4025101,Europe/Paris,,OM5, +OM5:SP:4025102,1,"Augustin Isnard",43.216266,5.541062,0,0,OM5:SA:CTP4025102,Europe/Paris,,OM5, +OM5:SP:4025103,1,"Belsunce",43.218783,5.534119,0,0,OM5:SA:CTP4025103,Europe/Paris,,OM5, +OM5:SP:4025104,1,"Cabrol",43.221653,5.535995,0,0,OM5:SA:CTP4025104,Europe/Paris,,OM5, +OM5:SP:4025105,1,"Casino",43.213787,5.541442,0,0,OM5:SA:CTP4025105,Europe/Paris,,OM5, +OM5:SP:4025106,1,"Vence",43.217561,5.541357,0,0,OM5:SA:CTP4025106,Europe/Paris,,OM5, +OM5:SP:4025107,1,"Cépages",43.223089,5.539996,0,0,OM5:SA:CTP4025107,Europe/Paris,,OM5, +OM5:SP:4025108,1,"Clos des Oliviers",43.224003,5.541743,0,0,OM5:SA:CTP4025108,Europe/Paris,,OM5, +OM5:SP:4025109,1,"Ferme Blanche",43.225087,5.542328,0,0,OM5:SA:CTP4025109,Europe/Paris,,OM5, +OM5:SP:4025110,1,"Fontblanche",43.228771,5.538435,0,0,OM5:SA:CTP4025110,Europe/Paris,,OM5, +OM5:SP:4025111,1,"Gare SNCF",43.233925,5.552879,0,0,OM5:SA:CTP4025111,Europe/Paris,,OM5, +OM5:SP:4025112,1,"Gendarmerie",43.215088,5.542796,0,0,OM5:SA:CTP4025112,Europe/Paris,,OM5, +OM5:SP:4025115,1,"Leriche",43.215286,5.543919,0,0,OM5:SA:CTP4025015,Europe/Paris,,OM5, +OM5:SP:4025116,1,"Les Brayes",43.221701,5.536075,0,0,OM5:SA:CTP4025016,Europe/Paris,,OM5, +OM5:SP:4025117,1,"Collège Les Gorguettes",43.228175,5.537255,0,0,OM5:SA:CTP4025117,Europe/Paris,,OM5, +OM5:SP:4025118,1,"Les Hauts Cépages",43.223089,5.539996,0,0,OM5:SA:CTP4025118,Europe/Paris,,OM5, +OM5:SP:4025119,1,"Parc Régis Vidal",43.224714,5.545407,0,0,OM5:SA:CTP4025019,Europe/Paris,,OM5, +OM5:SP:4025120,1,"Résidence du Vallat",43.221652,5.535994,0,0,OM5:SA:CTP4025020,Europe/Paris,,OM5, +OM5:SP:4025124,1,"Terres Marines",43.217661,5.528508,0,0,OM5:SA:CTP4025024,Europe/Paris,,OM5, +OM5:SP:4025149,1,"Les Terrasses",43.226919,5.53431,0,0,OM5:SA:CTP4025049,Europe/Paris,,OM5, +OM5:SP:4025162,1,"Val d'Or",43.217005,5.536278,0,0,OM5:SA:CTP4025162,Europe/Paris,,OM5, +OM5:SP:4026000,1,"Hôtel de Ville",43.247419,5.591535,0,0,OM5:SA:CTP4026100,Europe/Paris,,OM5, +OM5:SP:4026004,1,"La Poste",43.248749,5.587,0,0,OM5:SA:CTP4026004,Europe/Paris,,OM5, +OM5:SP:4026013,1,"Place Victoire",43.247402,5.59389,0,0,OM5:SA:CTP4026013,Europe/Paris,,OM5, +OM5:SP:4026100,1,"Hôtel de Ville",43.247379,5.591546,0,0,OM5:SA:CTP4026100,Europe/Paris,,OM5, +OM5:SP:4026104,1,"La Poste",43.248686,5.586864,0,0,OM5:SA:CTP4026004,Europe/Paris,,OM5, +OM5:SP:4026113,1,"Place Victoire",43.247346,5.59385,0,0,OM5:SA:CTP4026013,Europe/Paris,,OM5, +OM5:SP:4027504,1,"Les Barles",43.262355,5.579941,0,0,OM5:SA:CTP4027504,Europe/Paris,,OM5, +OM5:SP:4027505,1,"Carpiagne Carnoux",43.24778,5.548234,0,0,OM5:SA:CTP4027605,Europe/Paris,,OM5, +OM5:SP:4027511,1,"La Gineste",43.240602,5.457411,0,0,OM5:SA:CTP4027511,Europe/Paris,,OM5, +OM5:SP:4027513,1,"Le Messuguet",43.231768,5.543255,0,0,OM5:SA:CTP4027513,Europe/Paris,,OM5, +OM5:SP:4027514,1,"Le Panorama",43.253941,5.560146,0,0,OM5:SA:CTP4027514,Europe/Paris,,OM5, +OM5:SP:4027515,1,"Le Stade",43.249825,5.553455,0,0,OM5:SA:CTP4027515,Europe/Paris,,OM5, +OM5:SP:4027519,1,"Lou Caire",43.261207,5.574568,0,0,OM5:SA:CTP4027519,Europe/Paris,,OM5, +OM5:SP:4027520,1,"Mont Fleuri",43.26013,5.572182,0,0,OM5:SA:CTP4027520,Europe/Paris,,OM5, +OM5:SP:4027521,1,"Notre Dame d'Afrique",43.257104,5.567442,0,0,OM5:SA:CTP4027521,Europe/Paris,,OM5, +OM5:SP:4027525,1,"Résidence du Vallat",43.221699,5.536076,0,0,OM5:SA:CTP4025020,Europe/Paris,,OM5, +OM5:SP:4027526,1,"Stade",43.249825,5.553455,0,0,OM5:SA:CTP4027526,Europe/Paris,,OM5, +OM5:SP:4027532,1,"Pont des Barles",43.265816,5.58622,0,0,OM5:SA:CTP4027532,Europe/Paris,,OM5, +OM5:SP:4027534,1,"Collège St Augustin",43.251102,5.552293,0,0,OM5:SA:CTP4027634,Europe/Paris,,OM5, +OM5:SP:4027604,1,"Les Barles",43.26218,5.580116,0,0,OM5:SA:CTP4027504,Europe/Paris,,OM5, +OM5:SP:4027605,1,"Carpiagne Carnoux",43.247857,5.548653,0,0,OM5:SA:CTP4027605,Europe/Paris,,OM5, +OM5:SP:4027611,1,"La Gineste",43.240135,5.457943,0,0,OM5:SA:CTP4027511,Europe/Paris,,OM5, +OM5:SP:4027613,1,"Le Messuguet",43.231481,5.543522,0,0,OM5:SA:CTP4027513,Europe/Paris,,OM5, +OM5:SP:4027614,1,"Le Panorama",43.253835,5.560193,0,0,OM5:SA:CTP4027514,Europe/Paris,,OM5, +OM5:SP:4027615,1,"Le Stade",43.249957,5.554075,0,0,OM5:SA:CTP4027515,Europe/Paris,,OM5, +OM5:SP:4027619,1,"Lou Caire",43.261127,5.57483,0,0,OM5:SA:CTP4027519,Europe/Paris,,OM5, +OM5:SP:4027620,1,"Mont Fleuri",43.25936,5.570919,0,0,OM5:SA:CTP4027520,Europe/Paris,,OM5, +OM5:SP:4027621,1,"Notre Dame d'Afrique",43.256457,5.567325,0,0,OM5:SA:CTP4027521,Europe/Paris,,OM5, +OM5:SP:4027625,1,"Résidence du Vallat",43.221652,5.535994,0,0,OM5:SA:CTP4025020,Europe/Paris,,OM5, +OM5:SP:4027626,1,"Stade",43.249957,5.554075,0,0,OM5:SA:CTP4027526,Europe/Paris,,OM5, +OM5:SP:4027632,1,"Pont des Barles",43.265675,5.585905,0,0,OM5:SA:CTP4027532,Europe/Paris,,OM5, +OM5:SP:4027634,1,"Collège St Augustin",43.251057,5.552452,0,0,OM5:SA:CTP4027634,Europe/Paris,,OM5, +OM5:SP:4028527,1,"St Loup Florian",43.281163,5.427355,0,0,OM5:SA:CTP4028527,Europe/Paris,,OM5, +OM5:SP:4028528,1,"Jean Perrin",43.275154,5.425323,0,0,OM5:SA:CTP4028528,Europe/Paris,,OM5, +OM5:SP:4028529,1,"Ampère",43.279639,5.423722,0,0,OM5:SA:CTP4028629,Europe/Paris,,OM5, +OM5:SP:4028629,1,"Ampère",43.279514,5.423801,0,0,OM5:SA:CTP4028629,Europe/Paris,,OM5, +OM5:SP:4029001,1,"Gare Routière",43.173954,5.610289,0,0,OM5:SA:CTP4029001,Europe/Paris,,OM5, +OM5:SP:4029002,1,"L'Eden",43.177466,5.610713,0,0,OM5:SA:CTP4029002,Europe/Paris,,OM5, +OM5:SP:4029003,1,"Les Flots Bleus",43.180173,5.612186,0,0,OM5:SA:CTP4029003,Europe/Paris,,OM5, +OM5:SP:4029004,1,"Lido",43.17919,5.611446,0,0,OM5:SA:CTP4029004,Europe/Paris,,OM5, +OM5:SP:4029005,1,"Rd Pt Bodin",43.19027,5.603959,0,0,OM5:SA:CTP4029005,Europe/Paris,,OM5, +OM5:SP:4029006,1,"Subilia",43.185004,5.608483,0,0,OM5:SA:CTP4029006,Europe/Paris,,OM5, +OM5:SP:4029007,1,"Vallat de Roubaud",43.187194,5.615152,0,0,OM5:SA:CTP4029007,Europe/Paris,,OM5, +OM5:SP:4029008,1,"Villa des Tours",43.184339,5.617481,0,0,OM5:SA:CTP4029008,Europe/Paris,,OM5, +OM5:SP:4029009,1,"collège Virebelle",43.185499,5.599553,0,0,OM5:SA:CTP4029109,Europe/Paris,,OM5, +OM5:SP:4029010,1,"Lycée Lumière",43.184208,5.604727,0,0,OM5:SA:CTP4029010,Europe/Paris,,OM5, +OM5:SP:4029011,1,"Lycée Méditerranée",43.190653,5.613458,0,0,OM5:SA:CTP4029011,Europe/Paris,,OM5, +OM5:SP:4029012,1,"Collège Matagots",43.195526,5.612422,0,0,OM5:SA:CTP4029112,Europe/Paris,,OM5, +OM5:SP:4029013,1,"Impasse Tivoli",43.182067,5.612453,0,0,OM5:SA:CTP4029113,Europe/Paris,,OM5, +OM5:SP:4029014,1,"Notre Dame Bon Voyage",43.180502,5.611616,0,0,OM5:SA:CTP4029014,Europe/Paris,,OM5, +OM5:SP:4029015,1,"Collège Jean Jaures",43.173917,5.603494,0,0,OM5:SA:CTP4029015,Europe/Paris,,OM5, +OM5:SP:4029016,1,"Route de Marseille",43.183184,5.611708,0,0,OM5:SA:CTP4029016,Europe/Paris,,OM5, +OM5:SP:4029101,1,"Gare Routière",43.173831,5.610408,0,0,OM5:SA:CTP4029001,Europe/Paris,,OM5, +OM5:SP:4029102,1,"L'Eden",43.177499,5.610873,0,0,OM5:SA:CTP4029002,Europe/Paris,,OM5, +OM5:SP:4029103,1,"Les Flots Bleus",43.180173,5.612186,0,0,OM5:SA:CTP4029003,Europe/Paris,,OM5, +OM5:SP:4029104,1,"Lido",43.17919,5.611446,0,0,OM5:SA:CTP4029004,Europe/Paris,,OM5, +OM5:SP:4029105,1,"Rd Pt Bodin",43.190606,5.604411,0,0,OM5:SA:CTP4029005,Europe/Paris,,OM5, +OM5:SP:4029106,1,"Subilia",43.185258,5.608381,0,0,OM5:SA:CTP4029006,Europe/Paris,,OM5, +OM5:SP:4029107,1,"Vallat de Roubaud",43.187194,5.615152,0,0,OM5:SA:CTP4029007,Europe/Paris,,OM5, +OM5:SP:4029108,1,"Villa des Tours",43.184339,5.617481,0,0,OM5:SA:CTP4029008,Europe/Paris,,OM5, +OM5:SP:4029109,1,"collège Virebelle",43.185403,5.599645,0,0,OM5:SA:CTP4029109,Europe/Paris,,OM5, +OM5:SP:4029110,1,"Lycée Lumière",43.184172,5.604988,0,0,OM5:SA:CTP4029010,Europe/Paris,,OM5, +OM5:SP:4029111,1,"Lycée Méditerranée",43.190653,5.613458,0,0,OM5:SA:CTP4029011,Europe/Paris,,OM5, +OM5:SP:4029112,1,"Collège Matagots",43.196241,5.612858,0,0,OM5:SA:CTP4029112,Europe/Paris,,OM5, +OM5:SP:4029113,1,"Impasse Tivoli",43.182038,5.612457,0,0,OM5:SA:CTP4029113,Europe/Paris,,OM5, +OM5:SP:4029114,1,"Notre Dame Bon Voyage",43.180874,5.612845,0,0,OM5:SA:CTP4029014,Europe/Paris,,OM5, +OM5:SP:4029116,1,"Route de Marseille",43.18329,5.611595,0,0,OM5:SA:CTP4029016,Europe/Paris,,OM5, +OM5:SP:4029117,1,"Carpiagne Gineste",43.236545,5.502226,0,0,OM5:SA:CTP4029117,Europe/Paris,,OM5, +OM5:SP:4029118,1,"Carpiagne Gineste",43.23768,5.502462,0,0,OM5:SA:CTP4029117,Europe/Paris,,OM5, +OM5:SP:4029119,1,"Lachamp Augier",43.248408,5.436969,0,0,OM5:SA:CTP4029119,Europe/Paris,,OM5, +OM5:SP:4029121,1,"Grands Pins",43.248841,5.440642,0,0,OM5:SA:CTP4029121,Europe/Paris,,OM5, +OM5:SP:4029122,1,"Grands Pins",43.248645,5.44025,0,0,OM5:SA:CTP4029121,Europe/Paris,,OM5, +OM5:SP:4029123,1,"Lachamp Luminy",43.247179,5.435152,0,0,OM5:SA:CTP4029123,Europe/Paris,,OM5, +OM5:SP:4029124,1,"Lachamp Luminy",43.247491,5.435524,0,0,OM5:SA:CTP4029123,Europe/Paris,,OM5, +OM5:SP:4029125,1,"Les Caniers",43.250752,5.584117,0,0,OM5:SA:CTP4029125,Europe/Paris,,OM5, +OM5:SP:4029126,1,"Les Caniers",43.250039,5.583314,0,0,OM5:SA:CTP4029125,Europe/Paris,,OM5, +OM5:SP:4029127,1,"Centre Ville",43.246997,5.592012,0,0,OM5:SA:CTP4029127,Europe/Paris,,OM5, +OM5:SP:4029128,1,"Centre Ville",43.246664,5.590849,0,0,OM5:SA:CTP4029127,Europe/Paris,,OM5, +OM5:SP:4029129,1,"Zone de Plaine de Jouques",43.280668,5.62126,0,0,OAE:SA:CTP40172,Europe/Paris,,OM5, +OM5:SP:4029130,1,"Zone de Plaine de Jouques",43.280624,5.621233,0,0,OAE:SA:CTP40172,Europe/Paris,,OM5, +OM5:SP:4029131,1,"Aquagem",43.285463,5.616808,0,0,OM5:SA:CTP4029131,Europe/Paris,,OM5, +OM6:SP:2000000,1,"Les Charrons",43.297,5.623919,0,0,OM6:SA:CTP2000000,Europe/Paris,,OM6, +OM6:SP:2000001,1,"Les Charrons",43.297349,5.62368,0,0,OM6:SA:CTP2000000,Europe/Paris,,OM6, +OM6:SP:2000002,1,"Les Craux",43.300725,5.61885,0,0,OM6:SA:CTP2000002,Europe/Paris,,OM6, +OM6:SP:2000003,1,"Les Craux",43.30098,5.618754,0,0,OM6:SA:CTP2000002,Europe/Paris,,OM6, +OM6:SP:2000004,1,"Quartier de Jouques",43.277451,5.620879,0,0,OM6:SA:CTP2000004,Europe/Paris,,OM6, +OM6:SP:2000005,1,"Quartier de Jouques",43.277307,5.620908,0,0,OM6:SA:CTP2000004,Europe/Paris,,OM6, +OM6:SP:2000006,1,"Gémenos Centre-Ville",43.2971,5.62917,0,0,OAE:SA:CTP40239,Europe/Paris,,OM6, +OM6:SP:2000007,1,"Les Alliés",43.297162,5.629223,0,0,OM6:SA:CTP2000007,Europe/Paris,,OM6, +OM6:SP:2000008,1,"Les Alliés",43.295342,5.626397,0,0,OM6:SA:CTP2000008,Europe/Paris,,OM6, +OM6:SP:2000009,1,"Collège de Gémenos",43.288112,5.621354,0,0,OM6:SA:CTP2000009,Europe/Paris,,OM6, +OM6:SP:2000010,1,"Les Ophéliades",43.284912,5.617478,0,0,OM6:SA:CTP2000010,Europe/Paris,,OM6, +OM6:SP:2000011,1,"Aquagem",43.285463,5.616808,0,0,OM6:SA:CTP2000011,Europe/Paris,,OM6, +OM6:SP:2000012,1,"Coulin",43.274168,5.636471,0,0,OM6:SA:CTP2000012,Europe/Paris,,OM6, +OM6:SP:2000013,1,"Coulin",43.274004,5.636535,0,0,OM6:SA:CTP2000012,Europe/Paris,,OM6, +OM6:SP:2000014,1,"Lotissement Les Nègles",43.27746,5.633226,0,0,OM6:SA:CTP2000014,Europe/Paris,,OM6, +OM6:SP:2000015,1,"Lotissement Les Nègles",43.27739,5.633468,0,0,OM6:SA:CTP2000014,Europe/Paris,,OM6, +OM6:SP:2000016,1,"Routelle",43.292325,5.626237,0,0,OM6:SA:CTP2000016,Europe/Paris,,OM6, +OM6:SP:2000017,1,"Routelle",43.292307,5.626223,0,0,OM6:SA:CTP2000016,Europe/Paris,,OM6, +OM6:SP:2000018,1,"La Culasse",43.304335,5.617271,0,0,OM6:SA:CTP2000018,Europe/Paris,,OM6, +OM6:SP:2000019,1,"La Culasse",27.140968,-3.404561,0,0,OM6:SA:CTP2000019,Europe/Paris,,OM6, +OM6:SP:2000020,1,"Les Cyprés",43.306293,5.615301,0,0,OM6:SA:CTP2000020,Europe/Paris,,OM6, +OM6:SP:2000021,1,"Garlaban",43.303803,5.614679,0,0,OM6:SA:CTP2000021,Europe/Paris,,OM6, +OM6:SP:2000022,1,"Garlaban",43.303733,5.614897,0,0,OM6:SA:CTP2000021,Europe/Paris,,OM6, +OM6:SP:2000023,1,"Quatre Chemins",43.308327,5.608459,0,0,OM6:SA:CTP2000023,Europe/Paris,,OM6, +OM6:SP:2000024,1,"Quatre Chemins",27.140968,-3.404561,0,0,OM6:SA:CTP2000024,Europe/Paris,,OM6, +OM6:SP:2000025,1,"Saint Clair",43.312913,5.613794,0,0,OM6:SA:CTP2000025,Europe/Paris,,OM6, +OM6:SP:2000026,1,"Saint Jean de Garguier",43.313559,5.612354,0,0,OM6:SA:CTP2000026,Europe/Paris,,OM6, +OM6:SP:2000027,1,"Fontmagne",43.277088,5.625105,0,0,OM6:SA:CTP2000027,Europe/Paris,,OM6, +OM6:SP:2000028,1,"Fontmagne",43.276905,5.625513,0,0,OM6:SA:CTP2000027,Europe/Paris,,OM6, +OM6:SP:2000029,1,"Le Plateau",27.140959,-3.404569,0,0,OM6:SA:CTP2000029,Europe/Paris,,OM6, +OM6:SP:2000030,1,"Les Grands Cêdres",27.140959,-3.404569,0,0,OM6:SA:CTP2000030,Europe/Paris,,OM6, +OM7:SP:5000061,1,"La Valentine",43.296592,5.483428,0,0,OM7:SA:CTP5000061,Europe/Paris,,OM7, +OM7:SP:5000062,1,"Ruissatel",43.295749,5.489206,0,0,OM7:SA:CTP5000062,Europe/Paris,,OM7, +OM7:SP:5000063,1,"Camoins Croisement",43.29757,5.497115,0,0,OM7:SA:CTP5000063,Europe/Paris,,OM7, +OM7:SP:5000064,1,"Ecoles Pounche",43.334511,5.466648,0,0,OM7:SA:CTP5000064,Europe/Paris,,OM7, +OM7:SP:5023500,1,"Centre",43.336805,5.482808,0,0,OM7:SA:CTP5023500,Europe/Paris,,OM7, +OM7:SP:5023510,1,"Barbaraou",43.322354,5.492916,0,0,OM7:SA:CTP5023510,Europe/Paris,,OM7, +OM7:SP:5023512,1,"La Bourdonnière",43.358171,5.491782,0,0,OM7:SA:CTP5023512,Europe/Paris,,OM7, +OM7:SP:5023522,1,"Général Leclerc",43.341557,5.485755,0,0,OM7:SA:CTP5023522,Europe/Paris,,OM7, +OM7:SP:5023526,1,"Jean Giono",43.334149,5.480444,0,0,OM7:SA:CTP5023526,Europe/Paris,,OM7, +OM7:SP:5023530,1,"La Fève",43.363848,5.496298,0,0,OM7:SA:CTP5023530,Europe/Paris,,OM7, +OM7:SP:5023531,1,"La Pounche",43.332358,5.464158,0,0,OM7:SA:CTP5023531,Europe/Paris,,OM7, +OM7:SP:5023533,1,"L'Afférage",43.341001,5.474019,0,0,OM7:SA:CTP5023533,Europe/Paris,,OM7, +OM7:SP:5023534,1,"Guéridon",43.331629,5.486687,0,0,OM7:SA:CTP5023534,Europe/Paris,,OM7, +OM7:SP:5023537,1,"Route du Clau",43.347293,5.488608,0,0,OM7:SA:CTP5023537,Europe/Paris,,OM7, +OM7:SP:5023539,1,"Les Blacassins",43.341999,5.471251,0,0,OM7:SA:CTP5023539,Europe/Paris,,OM7, +OM7:SP:5023543,1,"Les Embus",43.324558,5.480928,0,0,OM7:SA:CTP5023543,Europe/Paris,,OM7, +OM7:SP:5023547,1,"Logis Neuf",43.356925,5.487066,0,0,OM7:SA:CTP5023547,Europe/Paris,,OM7, +OM7:SP:5023549,1,"L'Ouvière",43.327816,5.490654,0,0,OM7:SA:CTP5023549,Europe/Paris,,OM7, +OM7:SP:5023555,1,"Pié d'Autry",43.341147,5.477957,0,0,OM7:SA:CTP5023555,Europe/Paris,,OM7, +OM7:SP:5023565,1,"Terrasses du Golf",43.324117,5.488604,0,0,OM7:SA:CTP5023565,Europe/Paris,,OM7, +OM7:SP:5023567,1,"Zone Fontvieille",43.326475,5.488549,0,0,OM7:SA:CTP5023567,Europe/Paris,,OM7, +OM7:SP:5023610,1,"Barbaraou",43.321898,5.492842,0,0,OM7:SA:CTP5023510,Europe/Paris,,OM7, +OM7:SP:5023612,1,"La Bourdonnière",43.35804,5.491652,0,0,OM7:SA:CTP5023512,Europe/Paris,,OM7, +OM7:SP:5023620,1,"Enco de Pont",43.318986,5.474945,0,0,OM7:SA:CTP5023620,Europe/Paris,,OM7, +OM7:SP:5023622,1,"Général Leclerc",43.3419,5.486046,0,0,OM7:SA:CTP5023522,Europe/Paris,,OM7, +OM7:SP:5023626,1,"Jean Giono",43.334104,5.48011,0,0,OM7:SA:CTP5023526,Europe/Paris,,OM7, +OM7:SP:5023631,1,"La Pounche",43.332325,5.464058,0,0,OM7:SA:CTP5023531,Europe/Paris,,OM7, +OM7:SP:5023634,1,"Guéridon",43.331866,5.486862,0,0,OM7:SA:CTP5023534,Europe/Paris,,OM7, +OM7:SP:5023637,1,"Route du Clau",43.347478,5.488409,0,0,OM7:SA:CTP5023537,Europe/Paris,,OM7, +OM7:SP:5023639,1,"Les Blacassins",43.341889,5.471332,0,0,OM7:SA:CTP5023539,Europe/Paris,,OM7, +OM7:SP:5023649,1,"L'Ouvière",43.327935,5.490267,0,0,OM7:SA:CTP5023549,Europe/Paris,,OM7, +OM7:SP:5023665,1,"Terrasses du Golf",43.324103,5.489083,0,0,OM7:SA:CTP5023565,Europe/Paris,,OM7, +OM7:SP:5023667,1,"Zone Fontvieille",43.326455,5.488633,0,0,OM7:SA:CTP5023567,Europe/Paris,,OM7, +OM7:SP:5062700,1,"Place des Aubagnens",43.329339,5.474298,0,0,OM7:SA:CTP5062700,Europe/Paris,,OM7, +OM7:SP:5062707,1,"Rond Point des Oliviers",43.344363,5.463713,0,0,OM7:SA:CTP5062707,Europe/Paris,,OM7, +OM7:SP:5062708,1,"Bougainville",43.343415,5.467386,0,0,OM7:SA:CTP5062708,Europe/Paris,,OM7, +OM7:SP:5062709,1,"Bougainville",43.34311,5.468293,0,0,OM7:SA:CTP5062708,Europe/Paris,,OM7, +OM7:SP:5062729,1,"La Verte",43.349664,5.487308,0,0,OM7:SA:CTP5062729,Europe/Paris,,OM7, +OM7:SP:5062730,1,"La Verte",43.349535,5.487668,0,0,OM7:SA:CTP5062729,Europe/Paris,,OM7, +OM7:SP:5625874,1,"Les Trois Lucs",43.315989,5.468881,0,0,OM7:SA:CTP5625874,Europe/Paris,,OM7, +OM7:SP:5625875,1,"Les Trois Lucs",43.316926,5.46947,0,0,OM7:SA:CTP5625874,Europe/Paris,,OM7, +OM7:SP:5625878,1,"Mélizan Visitation",43.296846,5.493332,0,0,OM7:SA:CTP5625878,Europe/Paris,,OM7, +OM7:SP:5625879,1,"Mélizan Visitation",43.296811,5.492662,0,0,OM7:SA:CTP5625878,Europe/Paris,,OM7, +OM7:SP:5625882,1,"Quatre Saison",43.298456,5.49918,0,0,OM7:SA:CTP5625882,Europe/Paris,,OM7, +OM7:SP:5625883,1,"Quatre Saison",43.29851,5.499047,0,0,OM7:SA:CTP5625882,Europe/Paris,,OM7, +OM7:SP:5625884,1,"Vallon de la Clue",43.319407,5.494143,0,0,OM7:SA:CTP5625884,Europe/Paris,,OM7, +OM7:SP:5625885,1,"Vallon de la Clue",43.319375,5.494329,0,0,OM7:SA:CTP5625884,Europe/Paris,,OM7, +OM7:SP:5625886,1,"Pont de la Clue",43.310356,5.500022,0,0,OM7:SA:CTP5625886,Europe/Paris,,OM7, +OM7:SP:5625887,1,"Pont de la Clue",43.310317,5.499916,0,0,OM7:SA:CTP5625886,Europe/Paris,,OM7, +OM7:SP:5625890,1,"Mille Ecus",43.335188,5.469262,0,0,OM7:SA:CTP5625890,Europe/Paris,,OM7, +OM7:SP:5625891,1,"Mille Ecus",43.335195,5.469157,0,0,OM7:SA:CTP5625890,Europe/Paris,,OM7, +OM7:SP:5625894,1,"Enco de Pont",43.318842,5.47495,0,0,OM7:SA:CTP5023620,Europe/Paris,,OM7, +OM7:SP:5625896,1,"Bon Rencontre",27.140959,-3.404569,0,0,OM7:SA:CTP5625896,Europe/Paris,,OM7, +OM7:SP:5625897,1,"Gonagues",27.140959,-3.404569,0,0,OM7:SA:CTP5625897,Europe/Paris,,OM7, +OM8:SP:500000,1,"Gare SNCF",43.684556,4.631072,0,0,OM8:SA:CTP500000,Europe/Paris,,OM8, +OM8:SP:500001,1,"Lamartine",43.681351,4.632359,0,0,OM8:SA:CTP500001,Europe/Paris,,OM8, +OM8:SP:500002,1,"Lamartine",43.681426,4.632541,0,0,OM8:SA:CTP500001,Europe/Paris,,OM8, +OM8:SP:500003,1,"Emile Combes",43.675905,4.632793,0,0,OM8:SA:CTP500003,Europe/Paris,,OM8, +OM8:SP:500004,1,"Emile Combes",43.675903,4.63288,0,0,OM8:SA:CTP500003,Europe/Paris,,OM8, +OM8:SP:500005,1,"Lycée Montmajour",43.697025,4.641835,0,0,OM8:SA:CTP500005,Europe/Paris,,OM8, +OM8:SP:500006,1,"Lycée Montmajour",43.696895,4.641595,0,0,OM8:SA:CTP500005,Europe/Paris,,OM8, +OM8:SP:500007,1,"Gabriel Péri",43.673647,4.625298,0,0,OM8:SA:CTP500007,Europe/Paris,,OM8, +OM8:SP:500008,1,"Collège Morel",43.683934,4.613266,0,0,OM8:SA:CTP500008,Europe/Paris,,OM8, +OM8:SP:500009,1,"Collège Van Gogh",43.679128,4.636367,0,0,OM8:SA:CTP500009,Europe/Paris,,OM8, +OM8:SP:500010,1,"Gabriel Péri",43.67356,4.625255,0,0,OM8:SA:CTP500007,Europe/Paris,,OM8, +OM8:SP:500011,1,"Les Razeteurs",43.453015,4.428096,0,0,OM8:SA:CTP500011,Europe/Paris,,OM8, +OM8:SP:500012,1,"Les Razeteurs",43.453091,4.42791,0,0,OM8:SA:CTP500011,Europe/Paris,,OM8, +OM8:SP:500013,1,"La Brise",43.454109,4.433437,0,0,OM8:SA:CTP500013,Europe/Paris,,OM8, +OM8:SP:500014,1,"Pont Blanc",43.457044,4.426715,0,0,OM8:SA:CTP500014,Europe/Paris,,OM8, +OM8:SP:500015,1,"Pont Blanc",43.456874,4.426659,0,0,OM8:SA:CTP500014,Europe/Paris,,OM8, +OM8:SP:500016,1,"Le Boumian",43.467985,4.416161,0,0,OM8:SA:CTP500016,Europe/Paris,,OM8, +OM8:SP:500017,1,"Le Boumian",43.46773,4.416191,0,0,OM8:SA:CTP500016,Europe/Paris,,OM8, +OM8:SP:500018,1,"Maguelonne",43.481634,4.405117,0,0,OM8:SA:CTP500018,Europe/Paris,,OM8, +OM8:SP:500019,1,"Maguelonne",43.481289,4.40476,0,0,OM8:SA:CTP500018,Europe/Paris,,OM8, +OM8:SP:500020,1,"Pont de Gau",43.489839,4.403198,0,0,OM8:SA:CTP500020,Europe/Paris,,OM8, +OM8:SP:500021,1,"Pont de Gau",43.489368,4.403611,0,0,OM8:SA:CTP500020,Europe/Paris,,OM8, +OM8:SP:500022,1,"Taxil",43.503987,4.400976,0,0,OM8:SA:CTP500022,Europe/Paris,,OM8, +OM8:SP:500023,1,"Taxil",43.503625,4.400833,0,0,OM8:SA:CTP500022,Europe/Paris,,OM8, +OM8:SP:500024,1,"Auberge Jeunesse",43.524764,4.401179,0,0,OM8:SA:CTP500024,Europe/Paris,,OM8, +OM8:SP:500025,1,"Auberge Jeunesse",43.524656,4.401162,0,0,OM8:SA:CTP500024,Europe/Paris,,OM8, +OM8:SP:500026,1,"Pioch Badet",43.522391,4.402081,0,0,OM8:SA:CTP500026,Europe/Paris,,OM8, +OM8:SP:500027,1,"Sénébier",43.545884,4.366244,0,0,OM8:SA:CTP500027,Europe/Paris,,OM8, +OM8:SP:500028,1,"Les Massoucles",43.455916,4.428772,0,0,OM8:SA:CTP500028,Europe/Paris,,OM8, +OM8:SP:500029,1,"Les Massoucles",43.455938,4.428992,0,0,OM8:SA:CTP500028,Europe/Paris,,OM8, +OM8:SP:500030,1,"Cabane de Cambon",43.520548,4.375107,0,0,OM8:SA:CTP500030,Europe/Paris,,OM8, +OM8:SP:500031,1,"Mas du Tadorne",43.46964,4.414078,0,0,OM8:SA:CTP500031,Europe/Paris,,OM8, +OM8:SP:500032,1,"Mas du Tadorne",43.469716,4.41429,0,0,OM8:SA:CTP500031,Europe/Paris,,OM8, +OM8:SP:500033,1,"Groupe Scolaire",43.453827,4.432298,0,0,OM8:SA:CTP500033,Europe/Paris,,OM8, +OM8:SP:500034,1,"Mas Astouin",43.530399,4.367599,0,0,OM8:SA:CTP500034,Europe/Paris,,OM8, +OM8:SP:500035,1,"Château d'Avignon",43.555693,4.413669,0,0,OM8:SA:CTP500035,Europe/Paris,,OM8, +OM8:SP:500036,1,"Château d'Avignon",43.555617,4.413023,0,0,OM8:SA:CTP500035,Europe/Paris,,OM8, +OM8:SP:500037,1,"Les Passerons",43.666383,4.590826,0,0,OM8:SA:CTP500037,Europe/Paris,,OM8, +OM8:SP:500038,1,"Les Passerons",43.666294,4.590773,0,0,OM8:SA:CTP500037,Europe/Paris,,OM8, +OM8:SP:500039,1,"L'Oustalet",43.621446,4.50573,0,0,OM8:SA:CTP500039,Europe/Paris,,OM8, +OM8:SP:500040,1,"L'Oustalet",43.621639,4.505527,0,0,OM8:SA:CTP500039,Europe/Paris,,OM8, +OM8:SP:500041,1,"Pont de Rousty / Musée",43.627044,4.529919,0,0,OM8:SA:CTP500041,Europe/Paris,,OM8, +OM8:SP:500042,1,"Pont de Rousty / Musée",43.626843,4.52928,0,0,OM8:SA:CTP500041,Europe/Paris,,OM8, +OM8:SP:500043,1,"Bastières",43.649922,4.575068,0,0,OM8:SA:CTP500043,Europe/Paris,,OM8, +OM8:SP:500044,1,"Bastières",43.649854,4.574892,0,0,OM8:SA:CTP500043,Europe/Paris,,OM8, +OM8:SP:500045,1,"Mas de la Butte",43.637811,4.554714,0,0,OM8:SA:CTP500045,Europe/Paris,,OM8, +OM8:SP:500046,1,"Mas de la Butte",43.637783,4.555415,0,0,OM8:SA:CTP500045,Europe/Paris,,OM8, +OM8:SP:500047,1,"Paty de la Trinité",43.582801,4.464956,0,0,OM8:SA:CTP500047,Europe/Paris,,OM8, +OM8:SP:500048,1,"Paty de la Trinité",43.583077,4.465152,0,0,OM8:SA:CTP500047,Europe/Paris,,OM8, +OM8:SP:500049,1,"Albaron L'Agachon",43.610516,4.477534,0,0,OM8:SA:CTP500049,Europe/Paris,,OM8, +OM8:SP:500050,1,"Mas de Broglie",43.615885,4.483459,0,0,OM8:SA:CTP500050,Europe/Paris,,OM8, +OM8:SP:500051,1,"Mas de Broglie",43.613945,4.480714,0,0,OM8:SA:CTP500051,Europe/Paris,,OM8, +OM8:SP:500052,1,"Mas de Ventabren",43.573503,4.421476,0,0,OM8:SA:CTP500052,Europe/Paris,,OM8, +OM8:SP:500053,1,"Mas de Ventabren",43.575051,4.425775,0,0,OM8:SA:CTP500053,Europe/Paris,,OM8, +OM8:SP:500054,1,"Les Bruns",43.578297,4.453979,0,0,OM8:SA:CTP500054,Europe/Paris,,OM8, +OM8:SP:500055,1,"Les Bruns",43.578452,4.453795,0,0,OM8:SA:CTP500054,Europe/Paris,,OM8, +OM8:SP:500056,1,"Mas D'Eymini",43.580072,4.435899,0,0,OM8:SA:CTP500056,Europe/Paris,,OM8, +OM8:SP:500057,1,"Mas D'Eymini",43.579865,4.435794,0,0,OM8:SA:CTP500056,Europe/Paris,,OM8, +OM8:SP:500058,1,"Ecole de Gageron",43.610885,4.605893,0,0,OM8:SA:CTP500058,Europe/Paris,,OM8, +OM8:SP:500059,1,"Beynes",43.6176,4.592227,0,0,OM8:SA:CTP500059,Europe/Paris,,OM8, +OM8:SP:500060,1,"Petit Montlong",43.628232,4.615245,0,0,OM8:SA:CTP500060,Europe/Paris,,OM8, +OM8:SP:500061,1,"Petit Montlong",43.628188,4.615112,0,0,OM8:SA:CTP500060,Europe/Paris,,OM8, +OM8:SP:500062,1,"Bar des Sports",43.414323,4.735728,0,0,OM8:SA:CTP500062,Europe/Paris,,OM8, +OM8:SP:500067,1,"Entre les 2 gares",43.691494,4.633642,0,0,OM8:SA:CTP500067,Europe/Paris,,OM8, +OM8:SP:500068,1,"Entre les 2 gares",43.691503,4.633511,0,0,OM8:SA:CTP500067,Europe/Paris,,OM8, +OM8:SP:500070,1,"9 Collines",43.690113,4.64901,0,0,OM8:SA:CTP500070,Europe/Paris,,OM8, +OM8:SP:500071,1,"Aire d'Accueil",43.663657,4.631784,0,0,OM8:SA:CTP500071,Europe/Paris,,OM8, +OM8:SP:500072,1,"Aire d'Accueil",43.663281,4.631806,0,0,OM8:SA:CTP500071,Europe/Paris,,OM8, +OM8:SP:500073,1,"La Genouillade",43.673169,4.644793,0,0,OM8:SA:CTP500073,Europe/Paris,,OM8, +OM8:SP:500074,1,"La Genouillade",43.673135,4.644717,0,0,OM8:SA:CTP500073,Europe/Paris,,OM8, +OM8:SP:500076,1,"Amphithéâtre",43.679321,4.629891,0,0,OM8:SA:CTP500076,Europe/Paris,,OM8, +OM8:SP:500078,1,"Antonelle",43.677246,4.624533,0,0,OM8:SA:CTP500078,Europe/Paris,,OM8, +OM8:SP:500079,1,"Antonelle",43.677066,4.624493,0,0,OM8:SA:CTP500078,Europe/Paris,,OM8, +OM8:SP:500080,1,"Arcades",43.663194,4.648945,0,0,OM8:SA:CTP500080,Europe/Paris,,OM8, +OM8:SP:500081,1,"Arcades",43.66317,4.649217,0,0,OM8:SA:CTP500080,Europe/Paris,,OM8, +OM8:SP:500082,1,"Armellière",43.568252,4.668268,0,0,OM8:SA:CTP500082,Europe/Paris,,OM8, +OM8:SP:500083,1,"Armellière",43.568501,4.667944,0,0,OM8:SA:CTP500082,Europe/Paris,,OM8, +OM8:SP:500084,1,"Avenue des Arches",43.663871,4.639581,0,0,OM8:SA:CTP500084,Europe/Paris,,OM8, +OM8:SP:500085,1,"Avenue des Arches",43.664005,4.639649,0,0,OM8:SA:CTP500084,Europe/Paris,,OM8, +OM8:SP:500086,1,"Auriol",43.677171,4.641002,0,0,OM8:SA:CTP500086,Europe/Paris,,OM8, +OM8:SP:500087,1,"Auriol",43.677161,4.641052,0,0,OM8:SA:CTP500086,Europe/Paris,,OM8, +OM8:SP:500088,1,"Avergues",43.672392,4.591496,0,0,OM8:SA:CTP500088,Europe/Paris,,OM8, +OM8:SP:500089,1,"Avergues",43.672355,4.591675,0,0,OM8:SA:CTP500088,Europe/Paris,,OM8, +OM8:SP:500090,1,"Balot",43.663335,4.700549,0,0,OM8:SA:CTP500090,Europe/Paris,,OM8, +OM8:SP:500091,1,"Balarin",43.648192,4.695136,0,0,OM8:SA:CTP500091,Europe/Paris,,OM8, +OM8:SP:500092,1,"Balarin",43.648319,4.695092,0,0,OM8:SA:CTP500091,Europe/Paris,,OM8, +OM8:SP:500093,1,"Barcarin",43.419811,4.733234,0,0,OM8:SA:CTP500093,Europe/Paris,,OM8, +OM8:SP:500094,1,"Barcarin",43.419932,4.733149,0,0,OM8:SA:CTP500093,Europe/Paris,,OM8, +OM8:SP:500095,1,"Barriol",43.662919,4.618143,0,0,OM8:SA:CTP500095,Europe/Paris,,OM8, +OM8:SP:500099,1,"Bar des Sports",43.414236,4.735432,0,0,OM8:SA:CTP500062,Europe/Paris,,OM8, +OM8:SP:500100,1,"Mas Beaulieu",43.578183,4.660625,0,0,OM8:SA:CTP500100,Europe/Paris,,OM8, +OM8:SP:500101,1,"Mas Beaulieu",43.578418,4.660596,0,0,OM8:SA:CTP500100,Europe/Paris,,OM8, +OM8:SP:500102,1,"Beauregard",43.599057,4.758289,0,0,OM8:SA:CTP500102,Europe/Paris,,OM8, +OM8:SP:500104,1,"Bellombre",43.642944,4.728707,0,0,OM8:SA:CTP500104,Europe/Paris,,OM8, +OM8:SP:500105,1,"Bellombre",43.643137,4.728781,0,0,OM8:SA:CTP500104,Europe/Paris,,OM8, +OM8:SP:500106,1,"Mas Bellan",43.585834,4.733604,0,0,OM8:SA:CTP500106,Europe/Paris,,OM8, +OM8:SP:500108,1,"Benoît",43.679633,4.61984,0,0,OM8:SA:CTP500108,Europe/Paris,,OM8, +OM8:SP:500109,1,"Benoît",43.679652,4.619395,0,0,OM8:SA:CTP500108,Europe/Paris,,OM8, +OM8:SP:500110,1,"Benoit",43.679629,4.619848,0,0,OM8:SA:CTP500110,Europe/Paris,,OM8, +OM8:SP:500111,1,"Benoit",43.679697,4.619793,0,0,OM8:SA:CTP500110,Europe/Paris,,OM8, +OM8:SP:500112,1,"La Bienheureuse",43.648247,4.703837,0,0,OM8:SA:CTP500112,Europe/Paris,,OM8, +OM8:SP:500113,1,"La Bienheureuse",43.648184,4.703836,0,0,OM8:SA:CTP500112,Europe/Paris,,OM8, +OM8:SP:500114,1,"Bigot",43.669568,4.629974,0,0,OM8:SA:CTP500114,Europe/Paris,,OM8, +OM8:SP:500115,1,"Bigot",43.669854,4.62976,0,0,OM8:SA:CTP500114,Europe/Paris,,OM8, +OM8:SP:500117,1,"Domaine de Boisviel",43.504166,4.753048,0,0,OM8:SA:CTP500117,Europe/Paris,,OM8, +OM8:SP:500118,1,"Boysset",43.681587,4.603006,0,0,OM8:SA:CTP500118,Europe/Paris,,OM8, +OM8:SP:500119,1,"Brissy",43.680626,4.634117,0,0,OM8:SA:CTP500119,Europe/Paris,,OM8, +OM8:SP:500120,1,"Brissy",43.680264,4.634238,0,0,OM8:SA:CTP500119,Europe/Paris,,OM8, +OM8:SP:500121,1,"Brossolette",43.681292,4.619143,0,0,OM8:SA:CTP500121,Europe/Paris,,OM8, +OM8:SP:500122,1,"Brossolette",43.681319,4.619189,0,0,OM8:SA:CTP500121,Europe/Paris,,OM8, +OM8:SP:500123,1,"Boisviel St Pierre",43.510397,4.749152,0,0,OM8:SA:CTP500123,Europe/Paris,,OM8, +OM8:SP:500124,1,"Boisviel St Pierre",43.510278,4.749102,0,0,OM8:SA:CTP500123,Europe/Paris,,OM8, +OM8:SP:500125,1,"Les Bastidettes",43.577223,4.753604,0,0,OM8:SA:CTP500125,Europe/Paris,,OM8, +OM8:SP:500127,1,"Les Cabanettes",43.665691,4.466047,0,0,OM8:SA:CTP500127,Europe/Paris,,OM8, +OM8:SP:500128,1,"Cabane de la Lune",43.663057,4.687494,0,0,OM8:SA:CTP500128,Europe/Paris,,OM8, +OM8:SP:500129,1,"Lou Cassaire",43.530903,4.734613,0,0,OM8:SA:CTP500129,Europe/Paris,,OM8, +OM8:SP:500131,1,"Camargue",43.680565,4.620875,0,0,OM8:SA:CTP500131,Europe/Paris,,OM8, +OM8:SP:500132,1,"Camargue",43.680346,4.620726,0,0,OM8:SA:CTP500131,Europe/Paris,,OM8, +OM8:SP:500135,1,"Cavalerie",43.681008,4.631291,0,0,OM8:SA:CTP500135,Europe/Paris,,OM8, +OM8:SP:500136,1,"Bois de Cays",43.644778,4.700011,0,0,OM8:SA:CTP500136,Europe/Paris,,OM8, +OM8:SP:500137,1,"Bois de Cays",43.644671,4.700172,0,0,OM8:SA:CTP500136,Europe/Paris,,OM8, +OM8:SP:500138,1,"Cazeneuve",43.678329,4.592816,0,0,OM8:SA:CTP500138,Europe/Paris,,OM8, +OM8:SP:500139,1,"Cazeneuve",43.678327,4.59294,0,0,OM8:SA:CTP500138,Europe/Paris,,OM8, +OM8:SP:500140,1,"CC l' Aurélienne",43.667058,4.635531,0,0,OM8:SA:CTP500140,Europe/Paris,,OM8, +OM8:SP:500141,1,"CC l'Aurélienne",43.6669,4.635347,0,0,OM8:SA:CTP500141,Europe/Paris,,OM8, +OM8:SP:500142,1,"COLLEGE MISTRAL",43.683911,4.630395,0,0,OM8:SA:CTP500142,Europe/Paris,,OM8, +OM8:SP:500143,1,"COLLEGE MISTRAL",43.68282,4.631416,0,0,OM8:SA:CTP500142,Europe/Paris,,OM8, +OM8:SP:500144,1,"CFA",43.678658,4.602631,0,0,OM8:SA:CTP500144,Europe/Paris,,OM8, +OM8:SP:500145,1,"CFA",43.678602,4.60259,0,0,OM8:SA:CTP500144,Europe/Paris,,OM8, +OM8:SP:500146,1,"Champ de Tir",43.66139,4.660271,0,0,OM8:SA:CTP500146,Europe/Paris,,OM8, +OM8:SP:500147,1,"Chamone",43.433604,4.718005,0,0,OM8:SA:CTP500147,Europe/Paris,,OM8, +OM8:SP:500148,1,"Chamone",43.433634,4.717762,0,0,OM8:SA:CTP500147,Europe/Paris,,OM8, +OM8:SP:500153,1,"Chateaubriand",43.682536,4.638126,0,0,OM8:SA:CTP500153,Europe/Paris,,OM8, +OM8:SP:500154,1,"Chateaubriand",43.682544,4.638195,0,0,OM8:SA:CTP500153,Europe/Paris,,OM8, +OM8:SP:500155,1,"Cigalon",43.67881,4.599924,0,0,OM8:SA:CTP500155,Europe/Paris,,OM8, +OM8:SP:500156,1,"Cigalon",43.678729,4.599931,0,0,OM8:SA:CTP500155,Europe/Paris,,OM8, +OM8:SP:500157,1,"Ilon",43.680076,4.75011,0,0,OM8:SA:CTP500157,Europe/Paris,,OM8, +OM8:SP:500158,1,"Clemenceau",43.675026,4.625448,0,0,OM8:SA:CTP500158,Europe/Paris,,OM8, +OM8:SP:500159,1,"Clemenceau",43.674964,4.62578,0,0,OM8:SA:CTP500158,Europe/Paris,,OM8, +OM8:SP:500160,1,"Clémenceau",43.675098,4.625846,0,0,OM8:SA:CTP500160,Europe/Paris,,OM8, +OM8:SP:500161,1,"Clémenceau",43.674992,4.625849,0,0,OM8:SA:CTP500160,Europe/Paris,,OM8, +OM8:SP:500162,1,"Collège Van Gogh",43.679187,4.636417,0,0,OM8:SA:CTP500009,Europe/Paris,,OM8, +OM8:SP:500163,1,"Collège Van Gogh",43.679064,4.636376,0,0,OM8:SA:CTP500009,Europe/Paris,,OM8, +OM8:SP:500166,1,"Chemin Noir",43.686316,4.641961,0,0,OM8:SA:CTP500166,Europe/Paris,,OM8, +OM8:SP:500167,1,"Chemin Noir",43.686314,4.641917,0,0,OM8:SA:CTP500166,Europe/Paris,,OM8, +OM8:SP:500168,1,"Mas Compagnon",43.663345,4.739637,0,0,OM8:SA:CTP500168,Europe/Paris,,OM8, +OM8:SP:500170,1,"Copernic",43.699764,4.633995,0,0,OM8:SA:CTP500170,Europe/Paris,,OM8, +OM8:SP:500171,1,"Copernic",43.699597,4.634046,0,0,OM8:SA:CTP500170,Europe/Paris,,OM8, +OM8:SP:500172,1,"Coty",43.69268,4.637206,0,0,OM8:SA:CTP500172,Europe/Paris,,OM8, +OM8:SP:500173,1,"Coty",43.692648,4.637017,0,0,OM8:SA:CTP500172,Europe/Paris,,OM8, +OM8:SP:500174,1,"Croisière",43.675859,4.632884,0,0,OM8:SA:CTP500174,Europe/Paris,,OM8, +OM8:SP:500175,1,"Croisière",43.675988,4.632778,0,0,OM8:SA:CTP500174,Europe/Paris,,OM8, +OM8:SP:500176,1,"Croisière",43.676206,4.632961,0,0,OM8:SA:CTP500174,Europe/Paris,,OM8, +OM8:SP:500177,1,"Croisière",43.676315,4.63294,0,0,OM8:SA:CTP500174,Europe/Paris,,OM8, +OM8:SP:500178,1,"Croix de Cazeneuve",43.670049,4.591857,0,0,OM8:SA:CTP500178,Europe/Paris,,OM8, +OM8:SP:500179,1,"Croix de Cazeneuve",43.670084,4.591945,0,0,OM8:SA:CTP500178,Europe/Paris,,OM8, +OM8:SP:500182,1,"Corse",43.655664,4.761484,0,0,OM8:SA:CTP500182,Europe/Paris,,OM8, +OM8:SP:500186,1,"Dragées",43.68186,4.615729,0,0,OM8:SA:CTP500186,Europe/Paris,,OM8, +OM8:SP:500187,1,"Dragées",43.681905,4.615719,0,0,OM8:SA:CTP500186,Europe/Paris,,OM8, +OM8:SP:500188,1,"Dunant",43.682708,4.621795,0,0,OM8:SA:CTP500188,Europe/Paris,,OM8, +OM8:SP:500189,1,"Dunant",43.682704,4.621748,0,0,OM8:SA:CTP500188,Europe/Paris,,OM8, +OM8:SP:500190,1,"F. Eboué",43.68328,4.640214,0,0,OM8:SA:CTP500190,Europe/Paris,,OM8, +OM8:SP:500191,1,"F. Eboué",43.683284,4.640153,0,0,OM8:SA:CTP500190,Europe/Paris,,OM8, +OM8:SP:500193,1,"Ecole de Moules",43.656045,4.740624,0,0,OM8:SA:CTP500193,Europe/Paris,,OM8, +OM8:SP:500195,1,"E. Combes",43.679733,4.633989,0,0,OM8:SA:CTP500195,Europe/Paris,,OM8, +OM8:SP:500196,1,"E. Combes",43.679462,4.633935,0,0,OM8:SA:CTP500195,Europe/Paris,,OM8, +OM8:SP:500198,1,"Edison",43.685153,4.63819,0,0,OM8:SA:CTP500198,Europe/Paris,,OM8, +OM8:SP:500199,1,"Edison",43.685152,4.638239,0,0,OM8:SA:CTP500198,Europe/Paris,,OM8, +OM8:SP:500200,1,"Ecole de Gimeaux",43.664666,4.575346,0,0,OM8:SA:CTP500200,Europe/Paris,,OM8, +OM8:SP:500201,1,"Ecole Gimeaux",43.664684,4.575411,0,0,OM8:SA:CTP500201,Europe/Paris,,OM8, +OM8:SP:500202,1,"E. Giraud",43.677875,4.623006,0,0,OM8:SA:CTP500202,Europe/Paris,,OM8, +OM8:SP:500203,1,"Mas Thibert Centre - école",43.558056,4.728326,0,0,OM8:SA:CTP500203,Europe/Paris,,OM8, +OM8:SP:500204,1,"Erikson",43.684133,4.612033,0,0,OM8:SA:CTP500204,Europe/Paris,,OM8, +OM8:SP:500205,1,"Eyglument",43.680436,4.615535,0,0,OM8:SA:CTP500205,Europe/Paris,,OM8, +OM8:SP:500207,1,"Fanton",43.678492,4.624257,0,0,OM8:SA:CTP500207,Europe/Paris,,OM8, +OM8:SP:500208,1,"Faraman",43.409066,4.700977,0,0,OM8:SA:CTP500208,Europe/Paris,,OM8, +OM8:SP:500209,1,"Fauvettes",43.666062,4.614224,0,0,OM8:SA:CTP500209,Europe/Paris,,OM8, +OM8:SP:500210,1,"Fauvettes",43.666179,4.613993,0,0,OM8:SA:CTP500209,Europe/Paris,,OM8, +OM8:SP:500211,1,"Flamants",43.665901,4.617524,0,0,OM8:SA:CTP500211,Europe/Paris,,OM8, +OM8:SP:500212,1,"Flamants",43.666008,4.617375,0,0,OM8:SA:CTP500211,Europe/Paris,,OM8, +OM8:SP:500213,1,"Foch",43.671059,4.632381,0,0,OM8:SA:CTP500213,Europe/Paris,,OM8, +OM8:SP:500214,1,"Foch",43.67115,4.632323,0,0,OM8:SA:CTP500213,Europe/Paris,,OM8, +OM8:SP:500215,1,"La Forêt",43.519443,4.743332,0,0,OM8:SA:CTP500215,Europe/Paris,,OM8, +OM8:SP:500217,1,"Fournier",43.670492,4.630149,0,0,OM8:SA:CTP500217,Europe/Paris,,OM8, +OM8:SP:500218,1,"Fournier",43.670573,4.630043,0,0,OM8:SA:CTP500217,Europe/Paris,,OM8, +OM8:SP:500219,1,"Gabelle",43.677302,4.616215,0,0,OM8:SA:CTP500219,Europe/Paris,,OM8, +OM8:SP:500220,1,"Gageron",43.609238,4.6099,0,0,OM8:SA:CTP500220,Europe/Paris,,OM8, +OM8:SP:500221,1,"Gageron",43.60926,4.609677,0,0,OM8:SA:CTP500220,Europe/Paris,,OM8, +OM8:SP:500225,1,"Galliéni",43.679919,4.612232,0,0,OM8:SA:CTP500225,Europe/Paris,,OM8, +OM8:SP:500226,1,"Ganteaume",43.66389,4.711938,0,0,OM8:SA:CTP500226,Europe/Paris,,OM8, +OM8:SP:500227,1,"Mas de Chanoines",43.618388,4.734626,0,0,OM8:SA:CTP500227,Europe/Paris,,OM8, +OM8:SP:500228,1,"Grand Rhône",43.709135,4.636687,0,0,OM8:SA:CTP500228,Europe/Paris,,OM8, +OM8:SP:500229,1,"Grand Rhône",43.709185,4.636681,0,0,OM8:SA:CTP500228,Europe/Paris,,OM8, +OM8:SP:500230,1,"Gimeaux",43.673634,4.607177,0,0,OM8:SA:CTP500230,Europe/Paris,,OM8, +OM8:SP:500231,1,"Gimeaux",43.673645,4.606568,0,0,OM8:SA:CTP500230,Europe/Paris,,OM8, +OM8:SP:500232,1,"Gondran",43.687445,4.617561,0,0,OM8:SA:CTP500232,Europe/Paris,,OM8, +OM8:SP:500233,1,"Gondran",43.687361,4.61756,0,0,OM8:SA:CTP500232,Europe/Paris,,OM8, +OM8:SP:500234,1,"Grenier",43.676876,4.621069,0,0,OM8:SA:CTP500234,Europe/Paris,,OM8, +OM8:SP:500237,1,"Gare SNCF",43.684293,4.631185,0,0,OM8:SA:CTP500000,Europe/Paris,,OM8, +OM8:SP:500238,1,"Haras d'Anibert",43.63384,4.710364,0,0,OM8:SA:CTP500238,Europe/Paris,,OM8, +OM8:SP:500239,1,"Haras d'Anibert",43.633938,4.710255,0,0,OM8:SA:CTP500238,Europe/Paris,,OM8, +OM8:SP:500240,1,"Hermite",43.668816,4.64484,0,0,OM8:SA:CTP500240,Europe/Paris,,OM8, +OM8:SP:500241,1,"Hermite",43.668709,4.644823,0,0,OM8:SA:CTP500240,Europe/Paris,,OM8, +OM8:SP:500242,1,"Héritier",43.688414,4.642138,0,0,OM8:SA:CTP500242,Europe/Paris,,OM8, +OM8:SP:500243,1,"Héritier",43.688508,4.641909,0,0,OM8:SA:CTP500242,Europe/Paris,,OM8, +OM8:SP:500244,1,"Herriot",43.682772,4.618095,0,0,OM8:SA:CTP500244,Europe/Paris,,OM8, +OM8:SP:500245,1,"Herriot",43.682799,4.618145,0,0,OM8:SA:CTP500244,Europe/Paris,,OM8, +OM8:SP:500246,1,"Hoch",43.673637,4.639646,0,0,OM8:SA:CTP500246,Europe/Paris,,OM8, +OM8:SP:500247,1,"Hoch",43.673676,4.639786,0,0,OM8:SA:CTP500246,Europe/Paris,,OM8, +OM8:SP:500250,1,"Hongrie",43.696168,4.633553,0,0,OM8:SA:CTP500250,Europe/Paris,,OM8, +OM8:SP:500251,1,"Hongrie",43.696094,4.633648,0,0,OM8:SA:CTP500250,Europe/Paris,,OM8, +OM8:SP:500252,1,"Hôpital",43.657718,4.633044,0,0,OM8:SA:CTP500252,Europe/Paris,,OM8, +OM8:SP:500253,1,"Mas de l'Hoste",43.606259,4.67379,0,0,OM8:SA:CTP500253,Europe/Paris,,OM8, +OM8:SP:500254,1,"Victor Hugo",43.674919,4.634014,0,0,OM8:SA:CTP500254,Europe/Paris,,OM8, +OM8:SP:500255,1,"Victor Hugo",43.675024,4.63405,0,0,OM8:SA:CTP500254,Europe/Paris,,OM8, +OM8:SP:500256,1,"Mas d'Icard",43.548796,4.729865,0,0,OM8:SA:CTP500256,Europe/Paris,,OM8, +OM8:SP:500257,1,"Mas d'Icard",43.54965,4.730284,0,0,OM8:SA:CTP500256,Europe/Paris,,OM8, +OM8:SP:500258,1,"Ile des Sables",43.686106,4.616292,0,0,OM8:SA:CTP500258,Europe/Paris,,OM8, +OM8:SP:500263,1,"Jean Bouin",43.695106,4.63527,0,0,OM8:SA:CTP500263,Europe/Paris,,OM8, +OM8:SP:500264,1,"Jean Bouin",43.695173,4.635075,0,0,OM8:SA:CTP500263,Europe/Paris,,OM8, +OM8:SP:500265,1,"Jerez",43.665716,4.633797,0,0,OM8:SA:CTP500265,Europe/Paris,,OM8, +OM8:SP:500266,1,"Jerez",43.665809,4.633702,0,0,OM8:SA:CTP500265,Europe/Paris,,OM8, +OM8:SP:500268,1,"Jou",43.694928,4.640452,0,0,OM8:SA:CTP500268,Europe/Paris,,OM8, +OM8:SP:500269,1,"Jou",43.694991,4.640229,0,0,OM8:SA:CTP500268,Europe/Paris,,OM8, +OM8:SP:500270,1,"Jouhaux",43.670977,4.63503,0,0,OM8:SA:CTP500270,Europe/Paris,,OM8, +OM8:SP:500271,1,"Jouhaux",43.671132,4.634949,0,0,OM8:SA:CTP500270,Europe/Paris,,OM8, +OM8:SP:500272,1,"Koenig",43.685057,4.609824,0,0,OM8:SA:CTP500272,Europe/Paris,,OM8, +OM8:SP:500273,1,"La Crau",43.661466,4.652495,0,0,OM8:SA:CTP500273,Europe/Paris,,OM8, +OM8:SP:500274,1,"La Crau",43.661864,4.651536,0,0,OM8:SA:CTP500273,Europe/Paris,,OM8, +OM8:SP:500275,1,"Laennec",43.69095,4.637878,0,0,OM8:SA:CTP500275,Europe/Paris,,OM8, +OM8:SP:500276,1,"Laennec",43.691134,4.6377,0,0,OM8:SA:CTP500275,Europe/Paris,,OM8, +OM8:SP:500277,1,"Laget",43.685718,4.620391,0,0,OM8:SA:CTP500277,Europe/Paris,,OM8, +OM8:SP:500278,1,"Laget",43.685711,4.620319,0,0,OM8:SA:CTP500277,Europe/Paris,,OM8, +OM8:SP:500279,1,"Lamartine",43.681347,4.632782,0,0,OM8:SA:CTP500001,Europe/Paris,,OM8, +OM8:SP:500280,1,"Lamartine",43.681288,4.632607,0,0,OM8:SA:CTP500001,Europe/Paris,,OM8, +OM8:SP:500281,1,"Lamour",43.693833,4.639767,0,0,OM8:SA:CTP500281,Europe/Paris,,OM8, +OM8:SP:500282,1,"Lamour",43.693904,4.639499,0,0,OM8:SA:CTP500281,Europe/Paris,,OM8, +OM8:SP:500283,1,"Langlois",43.670331,4.621143,0,0,OM8:SA:CTP500283,Europe/Paris,,OM8, +OM8:SP:500284,1,"Langlois",43.670388,4.621424,0,0,OM8:SA:CTP500283,Europe/Paris,,OM8, +OM8:SP:500285,1,"CC La Plaine de Montmajour",43.706317,4.642322,0,0,OM8:SA:CTP500285,Europe/Paris,,OM8, +OM8:SP:500286,1,"La Roquette",43.674367,4.622369,0,0,OM8:SA:CTP500286,Europe/Paris,,OM8, +OM8:SP:500287,1,"De Lattre",43.685656,4.636934,0,0,OM8:SA:CTP500287,Europe/Paris,,OM8, +OM8:SP:500288,1,"De Lattre",43.685746,4.63695,0,0,OM8:SA:CTP500287,Europe/Paris,,OM8, +OM8:SP:500289,1,"Legaresse",43.65098,4.610798,0,0,OM8:SA:CTP500289,Europe/Paris,,OM8, +OM8:SP:500290,1,"Legaresse",43.65097,4.610681,0,0,OM8:SA:CTP500289,Europe/Paris,,OM8, +OM8:SP:500291,1,"Le Lac",43.656438,4.63536,0,0,OM8:SA:CTP500291,Europe/Paris,,OM8, +OM8:SP:500292,1,"Le Lac",43.656544,4.635438,0,0,OM8:SA:CTP500291,Europe/Paris,,OM8, +OM8:SP:500293,1,"Le Moulin",43.563056,4.738604,0,0,OM8:SA:CTP500293,Europe/Paris,,OM8, +OM8:SP:500294,1,"Le Moulin",43.563205,4.738593,0,0,OM8:SA:CTP500293,Europe/Paris,,OM8, +OM8:SP:500295,1,"Lesseps",43.668597,4.633558,0,0,OM8:SA:CTP500295,Europe/Paris,,OM8, +OM8:SP:500296,1,"Lesseps",43.66874,4.633638,0,0,OM8:SA:CTP500295,Europe/Paris,,OM8, +OM8:SP:500297,1,"Libération",43.699318,4.64245,0,0,OM8:SA:CTP500297,Europe/Paris,,OM8, +OM8:SP:500298,1,"Libération",43.69943,4.642281,0,0,OM8:SA:CTP500297,Europe/Paris,,OM8, +OM8:SP:500299,1,"Lices",43.675213,4.630269,0,0,OM8:SA:CTP500299,Europe/Paris,,OM8, +OM8:SP:500300,1,"Lices",43.675287,4.630357,0,0,OM8:SA:CTP500299,Europe/Paris,,OM8, +OM8:SP:500301,1,"Allende",43.669311,4.615243,0,0,OM8:SA:CTP500301,Europe/Paris,,OM8, +OM8:SP:500302,1,"Allende",43.669354,4.615541,0,0,OM8:SA:CTP500301,Europe/Paris,,OM8, +OM8:SP:500303,1,"Le Sambuc",43.524325,4.706229,0,0,OM8:SA:CTP500303,Europe/Paris,,OM8, +OM8:SP:500304,1,"Le Sambuc",43.524546,4.706473,0,0,OM8:SA:CTP500303,Europe/Paris,,OM8, +OM8:SP:500306,1,"Maternelle Alphonse Daudet",43.647453,4.720466,0,0,OM8:SA:CTP500306,Europe/Paris,,OM8, +OM8:SP:500307,1,"Fourchon",43.652752,4.644683,0,0,OM8:SA:CTP500307,Europe/Paris,,OM8, +OM8:SP:500308,1,"La Major",43.677624,4.631785,0,0,OM8:SA:CTP500308,Europe/Paris,,OM8, +OM8:SP:500309,1,"Mas de l'Amérique",43.441806,4.72409,0,0,OM8:SA:CTP500309,Europe/Paris,,OM8, +OM8:SP:500310,1,"Mas de l'Amérique",43.441969,4.724467,0,0,OM8:SA:CTP500309,Europe/Paris,,OM8, +OM8:SP:500311,1,"Mas de l'Ange",43.620076,4.62824,0,0,OM8:SA:CTP500311,Europe/Paris,,OM8, +OM8:SP:500312,1,"Mas de l'Ange",43.62022,4.62827,0,0,OM8:SA:CTP500311,Europe/Paris,,OM8, +OM8:SP:500313,1,"Massenet",43.684543,4.641077,0,0,OM8:SA:CTP500313,Europe/Paris,,OM8, +OM8:SP:500314,1,"Massenet",43.684541,4.641006,0,0,OM8:SA:CTP500313,Europe/Paris,,OM8, +OM8:SP:500316,1,"Le Mazet",43.565059,4.74041,0,0,OM8:SA:CTP500316,Europe/Paris,,OM8, +OM8:SP:500317,1,"Le Mazet",43.565,4.740548,0,0,OM8:SA:CTP500316,Europe/Paris,,OM8, +OM8:SP:500319,1,"Beynes",43.617654,4.59226,0,0,OM8:SA:CTP500059,Europe/Paris,,OM8, +OM8:SP:500323,1,"Mas des Dentelles",43.657394,4.611817,0,0,OM8:SA:CTP500323,Europe/Paris,,OM8, +OM8:SP:500324,1,"Mas des Dentelles",43.657399,4.611569,0,0,OM8:SA:CTP500323,Europe/Paris,,OM8, +OM8:SP:500326,1,"Place des Micocouliers",43.644318,4.717637,0,0,OM8:SA:CTP500326,Europe/Paris,,OM8, +OM8:SP:500327,1,"Mas Misere",43.651821,4.760416,0,0,OM8:SA:CTP500327,Europe/Paris,,OM8, +OM8:SP:500328,1,"Mas Blanc",43.662501,4.680549,0,0,OM8:SA:CTP500328,Europe/Paris,,OM8, +OM8:SP:500329,1,"Moulin de Magnan",43.662224,4.678327,0,0,OM8:SA:CTP500329,Europe/Paris,,OM8, +OM8:SP:500330,1,"Mas Meou",43.660129,4.752134,0,0,OM8:SA:CTP500330,Europe/Paris,,OM8, +OM8:SP:500331,1,"Mas Millet",43.596508,4.647873,0,0,OM8:SA:CTP500331,Europe/Paris,,OM8, +OM8:SP:500332,1,"Mas Millet",43.596543,4.648005,0,0,OM8:SA:CTP500331,Europe/Paris,,OM8, +OM8:SP:500335,1,"Croisement Route de Fos",43.625853,4.747817,0,0,OM8:SA:CTP500335,Europe/Paris,,OM8, +OM8:SP:500336,1,"Croisement Route de Fos",43.625819,4.747869,0,0,OM8:SA:CTP500335,Europe/Paris,,OM8, +OM8:SP:500337,1,"Moules centre",43.655618,4.74051,0,0,OM8:SA:CTP500337,Europe/Paris,,OM8, +OM8:SP:500340,1,"Moines",43.697855,4.639092,0,0,OM8:SA:CTP500340,Europe/Paris,,OM8, +OM8:SP:500341,1,"Moines",43.697725,4.638876,0,0,OM8:SA:CTP500340,Europe/Paris,,OM8, +OM8:SP:500342,1,"Montlong",43.634651,4.606741,0,0,OM8:SA:CTP500342,Europe/Paris,,OM8, +OM8:SP:500343,1,"Montlong",43.634776,4.606773,0,0,OM8:SA:CTP500342,Europe/Paris,,OM8, +OM8:SP:500344,1,"Montcaldette",43.66313,4.613569,0,0,OM8:SA:CTP500344,Europe/Paris,,OM8, +OM8:SP:500345,1,"Montcaldette",43.663177,4.613447,0,0,OM8:SA:CTP500344,Europe/Paris,,OM8, +OM8:SP:500346,1,"Morel",43.684979,4.614912,0,0,OM8:SA:CTP500346,Europe/Paris,,OM8, +OM8:SP:500347,1,"Le Moulin",43.658764,4.762408,0,0,OM8:SA:CTP500347,Europe/Paris,,OM8, +OM8:SP:500349,1,"Mas de Peint",43.503889,4.707605,0,0,OM8:SA:CTP500349,Europe/Paris,,OM8, +OM8:SP:500350,1,"Mas de Peint",43.504095,4.707767,0,0,OM8:SA:CTP500349,Europe/Paris,,OM8, +OM8:SP:500351,1,"Mas Pédassas",43.634479,4.567448,0,0,OM8:SA:CTP500351,Europe/Paris,,OM8, +OM8:SP:500352,1,"Mas Pédassas",43.63447,4.567554,0,0,OM8:SA:CTP500351,Europe/Paris,,OM8, +OM8:SP:500353,1,"Mas Pilier",43.670976,4.604723,0,0,OM8:SA:CTP500353,Europe/Paris,,OM8, +OM8:SP:500354,1,"Mas du puits",43.674583,4.610716,0,0,OM8:SA:CTP500354,Europe/Paris,,OM8, +OM8:SP:500355,1,"Mas du puits",43.674519,4.610778,0,0,OM8:SA:CTP500354,Europe/Paris,,OM8, +OM8:SP:500359,1,"Mas St Michel",43.653901,4.61019,0,0,OM8:SA:CTP500359,Europe/Paris,,OM8, +OM8:SP:500360,1,"Mas St Michel",43.653897,4.610043,0,0,OM8:SA:CTP500359,Europe/Paris,,OM8, +OM8:SP:500362,1,"Salle Polyvalente",43.659453,4.740723,0,0,OM8:SA:CTP500362,Europe/Paris,,OM8, +OM8:SP:500363,1,"Musée Antique",43.672002,4.617144,0,0,OM8:SA:CTP500363,Europe/Paris,,OM8, +OM8:SP:500367,1,"Les Passerons",43.665667,4.589153,0,0,OM8:SA:CTP500037,Europe/Paris,,OM8, +OM8:SP:500368,1,"Les Passerons",43.665669,4.589476,0,0,OM8:SA:CTP500037,Europe/Paris,,OM8, +OM8:SP:500369,1,"Péchiney",43.404857,4.724594,0,0,OM8:SA:CTP500369,Europe/Paris,,OM8, +OM8:SP:500370,1,"Peaudure",43.470378,4.70657,0,0,OM8:SA:CTP500370,Europe/Paris,,OM8, +OM8:SP:500371,1,"Peaudure",43.471329,4.706769,0,0,OM8:SA:CTP500370,Europe/Paris,,OM8, +OM8:SP:500373,1,"Gabriel Péri",43.673293,4.625301,0,0,OM8:SA:CTP500007,Europe/Paris,,OM8, +OM8:SP:500374,1,"Gabriel Péri",43.673163,4.625181,0,0,OM8:SA:CTP500007,Europe/Paris,,OM8, +OM8:SP:500375,1,"Petit Gageron",43.61333,4.602626,0,0,OM8:SA:CTP500375,Europe/Paris,,OM8, +OM8:SP:500376,1,"Petit Gageron",43.613413,4.602692,0,0,OM8:SA:CTP500375,Europe/Paris,,OM8, +OM8:SP:500377,1,"Piscine Montmajour",43.697097,4.641944,0,0,OM8:SA:CTP500377,Europe/Paris,,OM8, +OM8:SP:500378,1,"Piscine Montmajour",43.697034,4.641558,0,0,OM8:SA:CTP500377,Europe/Paris,,OM8, +OM8:SP:500379,1,"Mas Piston",43.682778,4.719438,0,0,OM8:SA:CTP500379,Europe/Paris,,OM8, +OM8:SP:500380,1,"Parc de Loisirs",43.702271,4.63408,0,0,OM8:SA:CTP500380,Europe/Paris,,OM8, +OM8:SP:500381,1,"Parc de Loisirs",43.702263,4.634176,0,0,OM8:SA:CTP500380,Europe/Paris,,OM8, +OM8:SP:500382,1,"Palais des Congrès",43.669851,4.619234,0,0,OM8:SA:CTP500382,Europe/Paris,,OM8, +OM8:SP:500383,1,"Palais des Congrès",43.669766,4.619179,0,0,OM8:SA:CTP500382,Europe/Paris,,OM8, +OM8:SP:500384,1,"Les Plaines",43.6439,4.56817,0,0,OM8:SA:CTP500384,Europe/Paris,,OM8, +OM8:SP:500385,1,"Les Plaines",43.643901,4.568277,0,0,OM8:SA:CTP500384,Europe/Paris,,OM8, +OM8:SP:500386,1,"Le Plateau",43.658481,4.635944,0,0,OM8:SA:CTP500386,Europe/Paris,,OM8, +OM8:SP:500387,1,"Le Plateau",43.65821,4.635841,0,0,OM8:SA:CTP500386,Europe/Paris,,OM8, +OM8:SP:500388,1,"Porte de Laure",43.677073,4.630461,0,0,OM8:SA:CTP500388,Europe/Paris,,OM8, +OM8:SP:500391,1,"Petit Mandon - moulès",43.66039,4.76166,0,0,OM8:SA:CTP500390,Europe/Paris,,OM8, +OM8:SP:500394,1,"Mas de pomme",43.644835,4.69144,0,0,OM8:SA:CTP500394,Europe/Paris,,OM8, +OM8:SP:500395,1,"Mas de Pomme",43.644828,4.691701,0,0,OM8:SA:CTP500395,Europe/Paris,,OM8, +OM8:SP:500396,1,"Portagnel",43.67763,4.633529,0,0,OM8:SA:CTP500396,Europe/Paris,,OM8, +OM8:SP:500397,1,"Portagnel",43.677747,4.633517,0,0,OM8:SA:CTP500396,Europe/Paris,,OM8, +OM8:SP:500398,1,"Prêcheurs",43.681702,4.605699,0,0,OM8:SA:CTP500398,Europe/Paris,,OM8, +OM8:SP:500399,1,"Prêcheurs",43.681585,4.605682,0,0,OM8:SA:CTP500398,Europe/Paris,,OM8, +OM8:SP:500404,1,"Petit d'Arbaud",43.616135,4.57144,0,0,OM8:SA:CTP500404,Europe/Paris,,OM8, +OM8:SP:500405,1,"Petit d'Arbaud",43.616199,4.571421,0,0,OM8:SA:CTP500404,Europe/Paris,,OM8, +OM8:SP:500406,1,"Petit Mandon - rte eyguières",43.661945,4.669994,0,0,OM8:SA:CTP500406,Europe/Paris,,OM8, +OM8:SP:500407,1,"Pont Van Gogh",43.658095,4.620812,0,0,OM8:SA:CTP500407,Europe/Paris,,OM8, +OM8:SP:500408,1,"Pont Van Gogh",43.658088,4.6207,0,0,OM8:SA:CTP500407,Europe/Paris,,OM8, +OM8:SP:500409,1,"Avenue de Provence",43.644901,4.72312,0,0,OM8:SA:CTP500409,Europe/Paris,,OM8, +OM8:SP:500410,1,"Ravel",43.696085,4.63523,0,0,OM8:SA:CTP500410,Europe/Paris,,OM8, +OM8:SP:500411,1,"Ravel",43.696084,4.635363,0,0,OM8:SA:CTP500410,Europe/Paris,,OM8, +OM8:SP:500415,1,"Réattu",43.678745,4.628159,0,0,OM8:SA:CTP500415,Europe/Paris,,OM8, +OM8:SP:500416,1,"Révolution",43.674905,4.638568,0,0,OM8:SA:CTP500416,Europe/Paris,,OM8, +OM8:SP:500417,1,"Révolution",43.674904,4.63851,0,0,OM8:SA:CTP500416,Europe/Paris,,OM8, +OM8:SP:500418,1,"Ribot",43.69046,4.641872,0,0,OM8:SA:CTP500418,Europe/Paris,,OM8, +OM8:SP:500419,1,"Ribot",43.690453,4.641836,0,0,OM8:SA:CTP500418,Europe/Paris,,OM8, +OM8:SP:500420,1,"Rives Altes",43.68593,4.727268,0,0,OM8:SA:CTP500420,Europe/Paris,,OM8, +OM8:SP:500422,1,"Robespierre",43.681099,4.62429,0,0,OM8:SA:CTP500422,Europe/Paris,,OM8, +OM8:SP:500423,1,"Robespierre",43.681216,4.624343,0,0,OM8:SA:CTP500422,Europe/Paris,,OM8, +OM8:SP:500425,1,"Roseaux",43.668321,4.613484,0,0,OM8:SA:CTP500425,Europe/Paris,,OM8, +OM8:SP:500426,1,"Roseaux",43.667885,4.612905,0,0,OM8:SA:CTP500425,Europe/Paris,,OM8, +OM8:SP:500427,1,"Mas du Roy",43.680734,4.508777,0,0,OM8:SA:CTP500427,Europe/Paris,,OM8, +OM8:SP:500428,1,"Mas du Roy",43.680795,4.508805,0,0,OM8:SA:CTP500427,Europe/Paris,,OM8, +OM8:SP:500429,1,"Saboly",43.677279,4.639118,0,0,OM8:SA:CTP500429,Europe/Paris,,OM8, +OM8:SP:500430,1,"Saboly",43.67708,4.638726,0,0,OM8:SA:CTP500429,Europe/Paris,,OM8, +OM8:SP:500433,1,"Saladelles",43.681751,4.609796,0,0,OM8:SA:CTP500433,Europe/Paris,,OM8, +OM8:SP:500434,1,"Saladelles",43.681841,4.609781,0,0,OM8:SA:CTP500433,Europe/Paris,,OM8, +OM8:SP:500435,1,"Saliers",43.663458,4.480311,0,0,OM8:SA:CTP500435,Europe/Paris,,OM8, +OM8:SP:500436,1,"Saliers",43.66345,4.480322,0,0,OM8:SA:CTP500435,Europe/Paris,,OM8, +OM8:SP:500437,1,"Saulcy",43.684278,4.619683,0,0,OM8:SA:CTP500437,Europe/Paris,,OM8, +OM8:SP:500438,1,"Saurel",43.686973,4.620001,0,0,OM8:SA:CTP500438,Europe/Paris,,OM8, +OM8:SP:500439,1,"Saurel",43.686906,4.619921,0,0,OM8:SA:CTP500438,Europe/Paris,,OM8, +OM8:SP:500440,1,"Sautet",43.678357,4.639127,0,0,OM8:SA:CTP500440,Europe/Paris,,OM8, +OM8:SP:500441,1,"Sautet",43.67829,4.638693,0,0,OM8:SA:CTP500440,Europe/Paris,,OM8, +OM8:SP:500442,1,"Saxy",43.688646,4.636286,0,0,OM8:SA:CTP500442,Europe/Paris,,OM8, +OM8:SP:500443,1,"Saxy",43.68879,4.636286,0,0,OM8:SA:CTP500442,Europe/Paris,,OM8, +OM8:SP:500444,1,"Simon Bon",43.684285,4.732173,0,0,OM8:SA:CTP500444,Europe/Paris,,OM8, +OM8:SP:500445,1,"Sémard",43.683826,4.634183,0,0,OM8:SA:CTP500445,Europe/Paris,,OM8, +OM8:SP:500446,1,"Sémard",43.683842,4.634029,0,0,OM8:SA:CTP500445,Europe/Paris,,OM8, +OM8:SP:500447,1,"Serrailler",43.684573,4.741642,0,0,OM8:SA:CTP500447,Europe/Paris,,OM8, +OM8:SP:500450,1,"Séverin",43.678781,4.596182,0,0,OM8:SA:CTP500450,Europe/Paris,,OM8, +OM8:SP:500451,1,"Séverin",43.678736,4.596165,0,0,OM8:SA:CTP500450,Europe/Paris,,OM8, +OM8:SP:500452,1,"Salin de Giraud Centre",43.415388,4.733329,0,0,OM8:SA:CTP500452,Europe/Paris,,OM8, +OM8:SP:500453,1,"Salin de Giraud Camargue",43.411104,4.727718,0,0,OM8:SA:CTP500453,Europe/Paris,,OM8, +OM8:SP:500454,1,"Salin de Giraud Camargue",43.410902,4.727689,0,0,OM8:SA:CTP500453,Europe/Paris,,OM8, +OM8:SP:500455,1,"Salin de Giraud centre",43.415048,4.732785,0,0,OM8:SA:CTP500455,Europe/Paris,,OM8, +OM8:SP:500456,1,"Signoret",43.702328,4.641437,0,0,OM8:SA:CTP500456,Europe/Paris,,OM8, +OM8:SP:500457,1,"Signoret",43.702376,4.64129,0,0,OM8:SA:CTP500456,Europe/Paris,,OM8, +OM8:SP:500458,1,"Sonnailler",43.673376,4.604598,0,0,OM8:SA:CTP500458,Europe/Paris,,OM8, +OM8:SP:500459,1,"Sonnailler",43.6735,4.604468,0,0,OM8:SA:CTP500458,Europe/Paris,,OM8, +OM8:SP:500460,1,"Mas Mon Souci",43.666172,4.725275,0,0,OM8:SA:CTP500460,Europe/Paris,,OM8, +OM8:SP:500461,1,"Mas de Mon Souci",43.666324,4.725392,0,0,OM8:SA:CTP500461,Europe/Paris,,OM8, +OM8:SP:500462,1,"Souleïado",43.693134,4.633586,0,0,OM8:SA:CTP500462,Europe/Paris,,OM8, +OM8:SP:500463,1,"Souleïado",43.693096,4.633367,0,0,OM8:SA:CTP500462,Europe/Paris,,OM8, +OM8:SP:500464,1,"Stalingrad",43.685107,4.633987,0,0,OM8:SA:CTP500464,Europe/Paris,,OM8, +OM8:SP:500465,1,"Stalingrad",43.685183,4.633901,0,0,OM8:SA:CTP500464,Europe/Paris,,OM8, +OM8:SP:500466,1,"Stalingrad",43.685473,4.633788,0,0,OM8:SA:CTP500464,Europe/Paris,,OM8, +OM8:SP:500467,1,"Stalingrad",43.685713,4.633972,0,0,OM8:SA:CTP500464,Europe/Paris,,OM8, +OM8:SP:500468,1,"Ste Cécile",43.615962,4.570335,0,0,OM8:SA:CTP500468,Europe/Paris,,OM8, +OM8:SP:500469,1,"Ste Cécile",43.616022,4.570517,0,0,OM8:SA:CTP500468,Europe/Paris,,OM8, +OM8:SP:500470,1,"St Pierre",43.68195,4.625898,0,0,OM8:SA:CTP500470,Europe/Paris,,OM8, +OM8:SP:500471,1,"Saint Virgile",43.645884,4.758611,0,0,OM8:SA:CTP500471,Europe/Paris,,OM8, +OM8:SP:500473,1,"La Tapie du Bouchet",43.592223,4.760548,0,0,OM8:SA:CTP500473,Europe/Paris,,OM8, +OM8:SP:500474,1,"Tour",43.674709,4.620114,0,0,OM8:SA:CTP500474,Europe/Paris,,OM8, +OM8:SP:500475,1,"Tournesol",43.686281,4.6111,0,0,OM8:SA:CTP500475,Europe/Paris,,OM8, +OM8:SP:500476,1,"Truchet",43.691282,4.638784,0,0,OM8:SA:CTP500476,Europe/Paris,,OM8, +OM8:SP:500477,1,"Truchet",43.69123,4.638671,0,0,OM8:SA:CTP500476,Europe/Paris,,OM8, +OM8:SP:500478,1,"Vallès",43.675509,4.642608,0,0,OM8:SA:CTP500478,Europe/Paris,,OM8, +OM8:SP:500479,1,"Vallès",43.675501,4.642558,0,0,OM8:SA:CTP500478,Europe/Paris,,OM8, +OM8:SP:500480,1,"Vauban",43.675284,4.63223,0,0,OM8:SA:CTP500480,Europe/Paris,,OM8, +OM8:SP:500481,1,"Vallée des Baux",43.660946,4.632387,0,0,OM8:SA:CTP500481,Europe/Paris,,OM8, +OM8:SP:500482,1,"Vallée des Baux",43.661124,4.632505,0,0,OM8:SA:CTP500481,Europe/Paris,,OM8, +OM8:SP:500483,1,"Verrerie",43.681359,4.621706,0,0,OM8:SA:CTP500483,Europe/Paris,,OM8, +OM8:SP:500484,1,"Verrerie",43.681378,4.62162,0,0,OM8:SA:CTP500483,Europe/Paris,,OM8, +OM8:SP:500487,1,"Vigueirat",43.66511,4.637476,0,0,OM8:SA:CTP500487,Europe/Paris,,OM8, +OM8:SP:500488,1,"Vigueirat",43.66504,4.63749,0,0,OM8:SA:CTP500487,Europe/Paris,,OM8, +OM8:SP:500489,1,"Villeneuve",43.573729,4.624224,0,0,OM8:SA:CTP500489,Europe/Paris,,OM8, +OM8:SP:500490,1,"Villeneuve",43.573933,4.624343,0,0,OM8:SA:CTP500489,Europe/Paris,,OM8, +OM8:SP:500491,1,"Vissac",43.666319,4.618825,0,0,OM8:SA:CTP500491,Europe/Paris,,OM8, +OM8:SP:500492,1,"Vissac",43.665977,4.61886,0,0,OM8:SA:CTP500491,Europe/Paris,,OM8, +OM8:SP:500493,1,"Villevieille",43.65615,4.664812,0,0,OM8:SA:CTP500493,Europe/Paris,,OM8, +OM8:SP:500494,1,"Villevieille",43.656176,4.66402,0,0,OM8:SA:CTP500493,Europe/Paris,,OM8, +OM8:SP:500495,1,"Victor Basch",43.67213,4.627233,0,0,OM8:SA:CTP500495,Europe/Paris,,OM8, +OM8:SP:500496,1,"Victor Basch",43.672228,4.627274,0,0,OM8:SA:CTP500495,Europe/Paris,,OM8, +OM8:SP:500498,1,"Vert pré",43.643504,4.723937,0,0,OM8:SA:CTP500498,Europe/Paris,,OM8, +OM8:SP:500499,1,"Vert pré",43.643784,4.724018,0,0,OM8:SA:CTP500498,Europe/Paris,,OM8, +OM8:SP:500500,1,"Vert village",43.659838,4.655451,0,0,OM8:SA:CTP500500,Europe/Paris,,OM8, +OM8:SP:500501,1,"Vert Village",43.659976,4.655296,0,0,OM8:SA:CTP500501,Europe/Paris,,OM8, +OM8:SP:500502,1,"Wisbech",43.674161,4.643854,0,0,OM8:SA:CTP500502,Europe/Paris,,OM8, +OM8:SP:500503,1,"Wisbech",43.674034,4.643874,0,0,OM8:SA:CTP500502,Europe/Paris,,OM8, +OM8:SP:500504,1,"XVieme Corps",43.680518,4.609395,0,0,OM8:SA:CTP500504,Europe/Paris,,OM8, +OM8:SP:500505,1,"York",43.669599,4.637624,0,0,OM8:SA:CTP500505,Europe/Paris,,OM8, +OM8:SP:500506,1,"York",43.669511,4.637559,0,0,OM8:SA:CTP500505,Europe/Paris,,OM8, +OM8:SP:500509,1,"ZI Sud",43.663292,4.623304,0,0,OM8:SA:CTP500509,Europe/Paris,,OM8, +OM8:SP:500510,1,"Breuil",43.851849,4.688197,0,0,OM8:SA:CTP500510,Europe/Paris,,OM8, +OM8:SP:500511,1,"Breuil",43.851777,4.688268,0,0,OM8:SA:CTP500510,Europe/Paris,,OM8, +OM8:SP:500512,1,"Lycée Paul Langevin",43.811208,4.640856,0,0,OM8:SA:CTP500512,Europe/Paris,,OM8, +OM8:SP:500513,1,"Place Gilles Léontin",43.86088,4.691393,0,0,OM8:SA:CTP500513,Europe/Paris,,OM8, +OM8:SP:500514,1,"Caphan école",43.655674,4.799586,0,0,OM8:SA:CTP500514,Europe/Paris,,OM8, +OM8:SP:500515,1,"Caphan école",43.655593,4.799703,0,0,OM8:SA:CTP500514,Europe/Paris,,OM8, +OM8:SP:500516,1,"La Clastre",43.865589,4.688677,0,0,OM8:SA:CTP500516,Europe/Paris,,OM8, +OM8:SP:500526,1,"Raphèle Eglise",43.646504,4.710891,0,0,OM8:SA:CTP500526,Europe/Paris,,OM8, +OM8:SP:500527,1,"Raphèle Eglise",43.646792,4.711065,0,0,OM8:SA:CTP500526,Europe/Paris,,OM8, +OM8:SP:500528,1,"Raphèle Centre",43.644674,4.718376,0,0,OM8:SA:CTP500528,Europe/Paris,,OM8, +OM8:SP:500529,1,"Raphèle Centre",43.644838,4.718538,0,0,OM8:SA:CTP500528,Europe/Paris,,OM8, +OM8:SP:500530,1,"Ecole Daudet Raphèle",43.647102,4.716998,0,0,OM8:SA:CTP500530,Europe/Paris,,OM8, +OM8:SP:500531,1,"Ecole Daudet Raphèle",43.647219,4.717002,0,0,OM8:SA:CTP500530,Europe/Paris,,OM8, +OM8:SP:500533,1,"Caphan Bois de Boulogne",43.652609,4.788514,0,0,OM8:SA:CTP500533,Europe/Paris,,OM8, +OM8:SP:500535,1,"Bld de Provence",43.636573,4.801604,0,0,OM8:SA:CTP500535,Europe/Paris,,OM8, +OM8:SP:500536,1,"Bld de Provence",43.636439,4.801605,0,0,OM8:SA:CTP500535,Europe/Paris,,OM8, +OM8:SP:500537,1,"Mas Boussard",43.636988,4.79885,0,0,OM8:SA:CTP500537,Europe/Paris,,OM8, +OM8:SP:500538,1,"Mas Boussard",43.637385,4.799214,0,0,OM8:SA:CTP500537,Europe/Paris,,OM8, +OM8:SP:500539,1,"Beauséjour",43.66001,4.748075,0,0,OM8:SA:CTP500539,Europe/Paris,,OM8, +OM8:SP:500540,1,"Beauséjour",43.659264,4.740791,0,0,OM8:SA:CTP500540,Europe/Paris,,OM8, +OM8:SP:500541,1,"Caphan Boulangerie",43.654913,4.793304,0,0,OM8:SA:CTP500541,Europe/Paris,,OM8, +OM8:SP:500542,1,"Caphan Boulangerie",43.654989,4.793316,0,0,OM8:SA:CTP500541,Europe/Paris,,OM8, +OM8:SP:500545,1,"Cuisine Centrale",43.633898,4.799214,0,0,OM8:SA:CTP500545,Europe/Paris,,OM8, +OM8:SP:500546,1,"Cuisine Centrale",43.63416,4.79983,0,0,OM8:SA:CTP500545,Europe/Paris,,OM8, +OM8:SP:500549,1,"Dynamite est",43.610454,4.78535,0,0,OM8:SA:CTP500549,Europe/Paris,,OM8, +OM8:SP:500550,1,"Dynamite Ouest",43.611919,4.78103,0,0,OM8:SA:CTP500550,Europe/Paris,,OM8, +OM8:SP:500551,1,"Dynamite village",43.612657,4.783469,0,0,OM8:SA:CTP500551,Europe/Paris,,OM8, +OM8:SP:500555,1,"Ecole Pagnol",43.635793,4.802775,0,0,OM8:SA:CTP500555,Europe/Paris,,OM8, +OM8:SP:500556,1,"Entrée Ecopôle",43.627755,4.803261,0,0,OM8:SA:CTP500556,Europe/Paris,,OM8, +OM8:SP:500558,1,"Maison des Associations",43.637323,4.806452,0,0,OM8:SA:CTP500558,Europe/Paris,,OM8, +OM8:SP:500559,1,"Maison des Associations",43.637398,4.806332,0,0,OM8:SA:CTP500558,Europe/Paris,,OM8, +OM8:SP:500560,1,"Salle des Fêtes",43.639249,4.810435,0,0,OM8:SA:CTP500560,Europe/Paris,,OM8, +OM8:SP:500561,1,"Salle des Fêtes",43.639288,4.810418,0,0,OM8:SA:CTP500560,Europe/Paris,,OM8, +OM8:SP:500563,1,"Gare de Saint-Martin-de-Crau",43.62225,4.800517,0,0,OM8:SA:CTP500563,Europe/Paris,,OM8, +OM8:SP:500564,1,"Relais du Gardian",43.639233,4.739809,0,0,OM8:SA:CTP500564,Europe/Paris,,OM8, +OM8:SP:500565,1,"Relais du Gardian",43.639266,4.739871,0,0,OM8:SA:CTP500564,Europe/Paris,,OM8, +OM8:SP:500566,1,"La Crèche",43.63521,4.814906,0,0,OM8:SA:CTP500566,Europe/Paris,,OM8, +OM8:SP:500567,1,"La Crèche",43.63539,4.814902,0,0,OM8:SA:CTP500566,Europe/Paris,,OM8, +OM8:SP:500568,1,"Saunier",43.637093,4.745472,0,0,OM8:SA:CTP500568,Europe/Paris,,OM8, +OM8:SP:500569,1,"Saint Hippolyte",43.635847,4.753043,0,0,OM8:SA:CTP500569,Europe/Paris,,OM8, +OM8:SP:500570,1,"L'imprévu",43.635182,4.761741,0,0,OM8:SA:CTP500570,Europe/Paris,,OM8, +OM8:SP:500571,1,"L'Imprévu",43.635359,4.761513,0,0,OM8:SA:CTP500571,Europe/Paris,,OM8, +OM8:SP:500572,1,"Jean Jaurès",43.641527,4.802111,0,0,OM8:SA:CTP500572,Europe/Paris,,OM8, +OM8:SP:500573,1,"Jean Jaurès",43.641441,4.80194,0,0,OM8:SA:CTP500572,Europe/Paris,,OM8, +OM8:SP:500576,1,"Les Lavandins",43.639593,4.81509,0,0,OM8:SA:CTP500576,Europe/Paris,,OM8, +OM8:SP:500577,1,"Les Lavandins",43.63945,4.815144,0,0,OM8:SA:CTP500576,Europe/Paris,,OM8, +OM8:SP:500578,1,"Lavoisier",43.62545,4.799177,0,0,OM8:SA:CTP500578,Europe/Paris,,OM8, +OM8:SP:500579,1,"Lavoisier",43.625487,4.799242,0,0,OM8:SA:CTP500578,Europe/Paris,,OM8, +OM8:SP:500580,1,"Léon Blum",43.636012,4.821113,0,0,OM8:SA:CTP500580,Europe/Paris,,OM8, +OM8:SP:500581,1,"Léon Blum",43.635885,4.821139,0,0,OM8:SA:CTP500580,Europe/Paris,,OM8, +OM8:SP:500582,1,"Lion d'or",43.641192,4.818323,0,0,OM8:SA:CTP500582,Europe/Paris,,OM8, +OM8:SP:500583,1,"Lion d'or",43.641235,4.818412,0,0,OM8:SA:CTP500582,Europe/Paris,,OM8, +OM8:SP:500585,1,"Manades",43.633103,4.814279,0,0,OM8:SA:CTP500585,Europe/Paris,,OM8, +OM8:SP:500586,1,"Manades",43.632928,4.814061,0,0,OM8:SA:CTP500585,Europe/Paris,,OM8, +OM8:SP:500587,1,"Rdp Mediterrannée",43.637044,4.79571,0,0,OM8:SA:CTP500587,Europe/Paris,,OM8, +OM8:SP:500588,1,"Rdp de la Méditerrannée",43.636992,4.795572,0,0,OM8:SA:CTP500588,Europe/Paris,,OM8, +OM8:SP:500589,1,"Pierre Mendès France Nord",43.641343,4.823632,0,0,OM8:SA:CTP500589,Europe/Paris,,OM8, +OM8:SP:500590,1,"Pierre Mendès France Nord",43.641544,4.823787,0,0,OM8:SA:CTP500589,Europe/Paris,,OM8, +OM8:SP:500591,1,"Cabrau",43.632062,4.803868,0,0,OM8:SA:CTP500591,Europe/Paris,,OM8, +OM8:SP:500592,1,"Cabrau",43.632544,4.804057,0,0,OM8:SA:CTP500591,Europe/Paris,,OM8, +OM8:SP:500593,1,"Piscine",43.638193,4.82388,0,0,OM8:SA:CTP500593,Europe/Paris,,OM8, +OM8:SP:500594,1,"Piscine",43.637614,4.823659,0,0,OM8:SA:CTP500593,Europe/Paris,,OM8, +OM8:SP:500595,1,"Planton",43.635544,4.817833,0,0,OM8:SA:CTP500595,Europe/Paris,,OM8, +OM8:SP:500596,1,"Planton",43.635611,4.818062,0,0,OM8:SA:CTP500595,Europe/Paris,,OM8, +OM8:SP:500597,1,"Collège Charloun Rieu St Martin de Crau",43.642004,4.808299,0,0,OM8:SA:CTP500597,Europe/Paris,,OM8, +OM8:SP:500598,1,"Collège Charloun Rieu St Martin de Crau",43.642043,4.808475,0,0,OM8:SA:CTP500597,Europe/Paris,,OM8, +OM8:SP:500599,1,"Rimandière",43.634437,4.810465,0,0,OM8:SA:CTP500599,Europe/Paris,,OM8, +OM8:SP:500600,1,"Rimandière",43.63464,4.810475,0,0,OM8:SA:CTP500599,Europe/Paris,,OM8, +OM8:SP:500602,1,"CC du Salat",43.641068,4.798444,0,0,OM8:SA:CTP500601,Europe/Paris,,OM8, +OM8:SP:500603,1,"Stade St Martin de Crau",43.639913,4.803661,0,0,OM8:SA:CTP500603,Europe/Paris,,OM8, +OM8:SP:500604,1,"Trident",43.640018,4.81382,0,0,OM8:SA:CTP500604,Europe/Paris,,OM8, +OM8:SP:500605,1,"Trident",43.640075,4.813642,0,0,OM8:SA:CTP500604,Europe/Paris,,OM8, +OM8:SP:500606,1,"Mairie",43.638551,4.811547,0,0,OM8:SA:CTP500606,Europe/Paris,,OM8, +OM8:SP:500607,1,"Mairie",43.638389,4.811565,0,0,OM8:SA:CTP500606,Europe/Paris,,OM8, +OM8:SP:500608,1,"Valboisé",43.641982,4.809021,0,0,OM8:SA:CTP500608,Europe/Paris,,OM8, +OM8:SP:500609,1,"Valboisé",43.641847,4.809003,0,0,OM8:SA:CTP500608,Europe/Paris,,OM8, +OM8:SP:500610,1,"La Poste",43.859038,4.648557,0,0,OM8:SA:CTP500610,Europe/Paris,,OM8, +OM8:SP:500612,1,"Avenue Séverine",43.815731,4.664552,0,0,OM8:SA:CTP500612,Europe/Paris,,OM8, +OM8:SP:500613,1,"Avenue Séverine",43.81572,4.664646,0,0,OM8:SA:CTP500612,Europe/Paris,,OM8, +OM8:SP:500614,1,"Gare de Tarascon",43.801406,4.657599,0,0,OM8:SA:CTP500614,Europe/Paris,,OM8, +OM8:SP:500615,1,"Mas de Bosc",43.751822,4.655808,0,0,OM8:SA:CTP500615,Europe/Paris,,OM8, +OM8:SP:500616,1,"Collège René Cassin",43.818727,4.662847,0,0,OM8:SA:CTP500616,Europe/Paris,,OM8, +OM8:SP:500617,1,"Sainte Cécile",43.806652,4.670797,0,0,OM8:SA:CTP500617,Europe/Paris,,OM8, +OM8:SP:500618,1,"A. Chabaud",43.811667,4.667761,0,0,OM8:SA:CTP500618,Europe/Paris,,OM8, +OM8:SP:500619,1,"A. Chabaud",43.811587,4.667855,0,0,OM8:SA:CTP500618,Europe/Paris,,OM8, +OM8:SP:500620,1,"Cimetière St-Georges",43.80979,4.670584,0,0,OM8:SA:CTP500620,Europe/Paris,,OM8, +OM8:SP:500623,1,"Porte Condamine",43.80864,4.66368,0,0,OM8:SA:CTP500623,Europe/Paris,,OM8, +OM8:SP:500624,1,"Porte Condamine",43.808597,4.663749,0,0,OM8:SA:CTP500623,Europe/Paris,,OM8, +OM8:SP:500625,1,"Lycée Alphonse Daudet",43.801863,4.664567,0,0,OM8:SA:CTP500625,Europe/Paris,,OM8, +OM8:SP:500626,1,"Lycée Alphonse Daudet",43.801943,4.664658,0,0,OM8:SA:CTP500625,Europe/Paris,,OM8, +OM8:SP:500629,1,"Les Ferrages",43.806655,4.664929,0,0,OM8:SA:CTP500629,Europe/Paris,,OM8, +OM8:SP:500630,1,"Les Ferrages",43.806596,4.664919,0,0,OM8:SA:CTP500629,Europe/Paris,,OM8, +OM8:SP:500631,1,"St Gabriel",43.767138,4.69042,0,0,OM8:SA:CTP500631,Europe/Paris,,OM8, +OM8:SP:500632,1,"St Gabriel",43.767197,4.690591,0,0,OM8:SA:CTP500631,Europe/Paris,,OM8, +OM8:SP:500633,1,"Château Gaillard",43.811001,4.656567,0,0,OM8:SA:CTP500633,Europe/Paris,,OM8, +OM8:SP:500634,1,"Château Gaillard",43.811003,4.656618,0,0,OM8:SA:CTP500633,Europe/Paris,,OM8, +OM8:SP:500635,1,"Gambetta",43.804151,4.662742,0,0,OM8:SA:CTP500635,Europe/Paris,,OM8, +OM8:SP:500636,1,"Gambetta",43.804157,4.662869,0,0,OM8:SA:CTP500635,Europe/Paris,,OM8, +OM8:SP:500638,1,"Avenue Gouvernet",43.813246,4.6601,0,0,OM8:SA:CTP500638,Europe/Paris,,OM8, +OM8:SP:500639,1,"Avenue Gouvernet",43.813301,4.660064,0,0,OM8:SA:CTP500638,Europe/Paris,,OM8, +OM8:SP:500642,1,"Centre Hospitalier",43.798874,4.665843,0,0,OM8:SA:CTP500642,Europe/Paris,,OM8, +OM8:SP:500643,1,"Victor Hugo",43.803179,4.658681,0,0,OM8:SA:CTP500643,Europe/Paris,,OM8, +OM8:SP:500644,1,"Victor Hugo",43.803131,4.658717,0,0,OM8:SA:CTP500643,Europe/Paris,,OM8, +OM8:SP:500645,1,"Jardin des Plantes",43.806506,4.657771,0,0,OM8:SA:CTP500645,Europe/Paris,,OM8, +OM8:SP:500646,1,"Jardin des Plantes",43.806446,4.657758,0,0,OM8:SA:CTP500645,Europe/Paris,,OM8, +OM8:SP:500649,1,"La Margarido",43.805504,4.668775,0,0,OM8:SA:CTP500649,Europe/Paris,,OM8, +OM8:SP:500650,1,"Barrachin",43.753723,4.645683,0,0,OM8:SA:CTP500650,Europe/Paris,,OM8, +OM8:SP:500651,1,"Grand Mas",43.765784,4.649877,0,0,OM8:SA:CTP500651,Europe/Paris,,OM8, +OM8:SP:500655,1,"Petite Cabanette",43.749967,4.667217,0,0,OM8:SA:CTP500655,Europe/Paris,,OM8, +OM8:SP:500658,1,"Les Platanes",43.802909,4.66145,0,0,OM8:SA:CTP500658,Europe/Paris,,OM8, +OM8:SP:500659,1,"Les Platanes",43.803059,4.661543,0,0,OM8:SA:CTP500658,Europe/Paris,,OM8, +OM8:SP:500664,1,"Mas St Roch",43.748109,4.673551,0,0,OM8:SA:CTP500664,Europe/Paris,,OM8, +OM8:SP:500665,1,"Entrée ZAC du Roubian",43.796874,4.690334,0,0,OM8:SA:CTP500665,Europe/Paris,,OM8, +OM8:SP:500666,1,"Clos des Vergers",43.800501,4.675223,0,0,OM8:SA:CTP500666,Europe/Paris,,OM8, +OM8:SP:500667,1,"Clos des Vergers",43.800484,4.67521,0,0,OM8:SA:CTP500666,Europe/Paris,,OM8, +OM8:SP:500670,1,"Souspiron",43.814255,4.662726,0,0,OM8:SA:CTP500670,Europe/Paris,,OM8, +OM8:SP:500671,1,"Souspiron",43.814243,4.662661,0,0,OM8:SA:CTP500670,Europe/Paris,,OM8, +OM8:SP:500675,1,"La Tarasque",43.820672,4.669854,0,0,OM8:SA:CTP500675,Europe/Paris,,OM8, +OM8:SP:500676,1,"ZAC du Roubian",43.794645,4.691942,0,0,OM8:SA:CTP500676,Europe/Paris,,OM8, +OM8:SP:500677,1,"Mas de Gouin",43.626131,4.803275,0,0,OM8:SA:CTP500677,Europe/Paris,,OM8, +OM8:SP:500721,1,"Lycée H. Leroy",43.38692,4.802841,0,0,OM8:SA:CTP500721,Europe/Paris,,OM8, +OM8:SP:500722,1,"Lycée H. Leroy",43.386706,4.803164,0,0,OM8:SA:CTP500721,Europe/Paris,,OM8, +OM8:SP:500723,1,"Mairie Port St Louis",43.38727,4.804076,0,0,OM8:SA:CTP500723,Europe/Paris,,OM8, +OM8:SP:500724,1,"Collège Robespierre",43.390543,4.805498,0,0,OM8:SA:CTP500724,Europe/Paris,,OM8, +OM8:SP:500725,1,"Collège Robespierre",43.390475,4.805447,0,0,OM8:SA:CTP500724,Europe/Paris,,OM8, +OM8:SP:500726,1,"Stade le Taberner",43.394045,4.797932,0,0,OM8:SA:CTP500726,Europe/Paris,,OM8, +OM8:SP:500743,1,"Route de Saint-Rémy",43.801984,4.665873,0,0,OM8:SA:CTP500743,Europe/Paris,,OM8, +OM8:SP:500744,1,"Pierre Mendès France Sud",43.639804,4.823895,0,0,OM8:SA:CTP500744,Europe/Paris,,OM8, +OM8:SP:500745,1,"Pierre Mendès France Sud",43.639851,4.8241,0,0,OM8:SA:CTP500744,Europe/Paris,,OM8, +OM8:SP:500746,1,"Route de Saint-Rémy",43.801864,4.665735,0,0,OM8:SA:CTP500743,Europe/Paris,,OM8, +OM8:SP:500747,1,"Goudègues",43.684524,4.736814,0,0,OM8:SA:CTP500747,Europe/Paris,,OM8, +OM8:SP:500748,1,"Mas Granier",43.780793,4.657866,0,0,OM8:SA:CTP500748,Europe/Paris,,OM8, +OM8:SP:500750,1,"Stade le Taberner",43.393926,4.798038,0,0,OM8:SA:CTP500726,Europe/Paris,,OM8, +OM8:SP:500751,1,"Vauban",43.397825,4.794199,0,0,OM8:SA:CTP500751,Europe/Paris,,OM8, +OM8:SP:500752,1,"Vauban",43.397806,4.794143,0,0,OM8:SA:CTP500751,Europe/Paris,,OM8, +OM8:SP:500755,1,"Saint Hippolyte",43.635847,4.752997,0,0,OM8:SA:CTP500569,Europe/Paris,,OM8, +OM8:SP:500756,1,"ZI Roubian Sud",43.791891,4.685181,0,0,OM8:SA:CTP500756,Europe/Paris,,OM8, +OM8:SP:500757,1,"Angelets",43.647751,4.803758,0,0,OM8:SA:CTP500757,Europe/Paris,,OM8, +OM9:SP:2199004,1,"Charles de Gaulle",43.705167,5.156136,0,0,OM9:SA:CTP2199004,Europe/Paris,,OM9, +OM9:SP:2199005,1,"Charles de Gaulle",43.705136,5.155973,0,0,OM9:SA:CTP2199004,Europe/Paris,,OM9, +OM9:SP:2199006,1,"La Rocassière",43.705277,5.17056,0,0,OM9:SA:CTP2199006,Europe/Paris,,OM9, +OM9:SP:2199007,1,"Lavoir Grand Fontaine",43.704927,5.167766,0,0,OM9:SA:CTP2199007,Europe/Paris,,OM9, +OM9:SP:2199008,1,"Lavoir Grand Fontaine",43.705002,5.168327,0,0,OM9:SA:CTP2199007,Europe/Paris,,OM9, +OM9:SP:2199009,1,"Le Pigeonnier",43.705837,5.158053,0,0,OM9:SA:CTP2199009,Europe/Paris,,OM9, +OM9:SP:2199010,1,"Le Pigeonnier",43.706127,5.158291,0,0,OM9:SA:CTP2199009,Europe/Paris,,OM9, +OM9:SP:2199011,1,"Maréchal Joffre",43.705451,5.162832,0,0,OM9:SA:CTP2199011,Europe/Paris,,OM9, +OM9:SP:2199012,1,"Maréchal Joffre",43.705348,5.162678,0,0,OM9:SA:CTP2199011,Europe/Paris,,OM9, +OM9:SP:2199013,1,"St Jacques",43.705072,5.151841,0,0,OM9:SA:CTP2199013,Europe/Paris,,OM9, +OM9:SP:2199014,1,"St Jacques",43.704908,5.151932,0,0,OM9:SA:CTP2199013,Europe/Paris,,OM9, +OM9:SP:2199015,1,"La Fontaine",43.663857,5.156473,0,0,OM9:SA:CTP2199015,Europe/Paris,,OM9, +OM9:SP:2199016,1,"Le Lavoir",43.665559,5.157783,0,0,OM9:SA:CTP2199016,Europe/Paris,,OM9, +OM9:SP:2199017,1,"Le Parc",43.661611,5.156374,0,0,OM9:SA:CTP2199017,Europe/Paris,,OM9, +OM9:SP:2199018,1,"Le Parc",43.661473,5.156157,0,0,OM9:SA:CTP2199017,Europe/Paris,,OM9, +OM9:SP:2199019,1,"Le Petit Sonnailler",43.688676,5.14212,0,0,OM9:SA:CTP2199019,Europe/Paris,,OM9, +OM9:SP:2199020,1,"Centre Ville",43.719623,5.24489,0,0,OM9:SA:CTP2199020,Europe/Paris,,OM9, +OM9:SP:2199021,1,"Espigoulier",43.71731,5.240246,0,0,OM9:SA:CTP2199021,Europe/Paris,,OM9, +OM9:SP:2199022,1,"Jeu de Boules",43.718449,5.245389,0,0,OM9:SA:CTP2199022,Europe/Paris,,OM9, +OM9:SP:2199023,1,"Le Stade",43.719999,5.253331,0,0,OM9:SA:CTP2199023,Europe/Paris,,OM9, +OM9:SP:2199024,1,"Le Stade",43.719718,5.253056,0,0,OM9:SA:CTP2199023,Europe/Paris,,OM9, +OM9:SP:2199025,1,"Les Cadenières",43.717985,5.234848,0,0,OM9:SA:CTP2199025,Europe/Paris,,OM9, +OM9:SP:2199026,1,"Les Cadenières",43.71784,5.234878,0,0,OM9:SA:CTP2199025,Europe/Paris,,OM9, +OM9:SP:2199027,1,"Chemin des Arènes",43.695554,5.025553,0,0,OM9:SA:CTP2199027,Europe/Paris,,OM9, +OM9:SP:2199028,1,"Jardin des Bormes",43.698603,5.034585,0,0,OM9:SA:CTP2199028,Europe/Paris,,OM9, +OM9:SP:2199029,1,"Jardin des Bormes",43.698335,5.034164,0,0,OM9:SA:CTP2199028,Europe/Paris,,OM9, +OM9:SP:2199030,1,"Les Paluds",43.688337,5.03695,0,0,OM9:SA:CTP2199030,Europe/Paris,,OM9, +OM9:SP:2199031,1,"Mas Barreau",43.688608,5.03472,0,0,OM9:SA:CTP2199031,Europe/Paris,,OM9, +OM9:SP:2199032,1,"Mas Barreau",43.688644,5.033643,0,0,OM9:SA:CTP2199031,Europe/Paris,,OM9, +OM9:SP:2199033,1,"Place de La Couren",43.697495,5.028893,0,0,OM9:SA:CTP2199033,Europe/Paris,,OM9, +OM9:SP:2199036,1,"Rond Point de La Vierge",43.689453,5.030385,0,0,OM9:SA:CTP2199036,Europe/Paris,,OM9, +OM9:SP:2199037,1,"Rond Point de La Vierge",43.689458,5.030571,0,0,OM9:SA:CTP2199036,Europe/Paris,,OM9, +OM9:SP:2199038,1,"St Véredème",43.693332,5.026663,0,0,OM9:SA:CTP2199038,Europe/Paris,,OM9, +OM9:SP:2199039,1,"Les Oustalets",43.629856,5.167621,0,0,OM9:SA:CTP2199039,Europe/Paris,,OM9, +OM9:SP:2199040,1,"Les Oustalets",43.629946,5.167625,0,0,OM9:SA:CTP2199039,Europe/Paris,,OM9, +OM9:SP:2199041,1,"Mairie",43.630072,5.176212,0,0,OM9:SA:CTP2199041,Europe/Paris,,OM9, +OM9:SP:2199042,1,"Mairie",43.629726,5.175006,0,0,OM9:SA:CTP2199041,Europe/Paris,,OM9, +OM9:SP:2199043,1,"Zoo",43.624725,5.205004,0,0,OM9:SA:CTP2199043,Europe/Paris,,OM9, +OM9:SP:2199044,1,"La Tour",43.697128,5.088922,0,0,OM9:SA:CTP2199044,Europe/Paris,,OM9, +OM9:SP:2199045,1,"La Tour",43.697944,5.087275,0,0,OM9:SA:CTP2199044,Europe/Paris,,OM9, +OM9:SP:2199047,1,"Les Barres",43.696655,5.079565,0,0,OM9:SA:CTP2199047,Europe/Paris,,OM9, +OM9:SP:2199050,1,"Quatre Chemins",43.70111,5.093614,0,0,OM9:SA:CTP2199050,Europe/Paris,,OM9, +OM9:SP:2199051,1,"Quatre Chemins",43.701374,5.094222,0,0,OM9:SA:CTP2199050,Europe/Paris,,OM9, +OM9:SP:2199053,1,"La Coste",43.587313,5.139418,0,0,OM9:SA:CTP2199053,Europe/Paris,,OM9, +OM9:SP:2199054,1,"La Coste",43.587391,5.139546,0,0,OM9:SA:CTP2199053,Europe/Paris,,OM9, +OM9:SP:2199057,1,"Médiathèque",43.58959,5.125474,0,0,OM9:SA:CTP2199057,Europe/Paris,,OM9, +OM9:SP:2199058,1,"Médiathèque",43.589672,5.12507,0,0,OM9:SA:CTP2199057,Europe/Paris,,OM9, +OM9:SP:2199059,1,"Moulin de Laure",43.588182,5.134004,0,0,OM9:SA:CTP2199059,Europe/Paris,,OM9, +OM9:SP:2199060,1,"Moulin de Laure",43.588301,5.133911,0,0,OM9:SA:CTP2199059,Europe/Paris,,OM9, +OM9:SP:2199061,1,"Stade",43.593485,5.117745,0,0,OM9:SA:CTP2199061,Europe/Paris,,OM9, +OM9:SP:2199063,1,"Val de Sibourg",43.582878,5.21139,0,0,OM9:SA:CTP2199063,Europe/Paris,,OM9, +OM9:SP:2199064,1,"Val de Sibourg",43.58444,5.210838,0,0,OM9:SA:CTP2199063,Europe/Paris,,OM9, +OM9:SP:2199065,1,"Avenue de Craponne",43.731035,5.170279,0,0,OM9:SA:CTP2199065,Europe/Paris,,OM9, +OM9:SP:2199066,1,"Avenue de Craponne",43.730834,5.169723,0,0,OM9:SA:CTP2199065,Europe/Paris,,OM9, +OM9:SP:2199067,1,"Canal Edf",43.724286,5.185483,0,0,OM9:SA:CTP2199067,Europe/Paris,,OM9, +OM9:SP:2199068,1,"Canal Edf",43.724254,5.185345,0,0,OM9:SA:CTP2199067,Europe/Paris,,OM9, +OM9:SP:2199069,1,"La Crèche",43.72444,5.179637,0,0,OM9:SA:CTP2199069,Europe/Paris,,OM9, +OM9:SP:2199070,1,"La Crèche",43.724521,5.179964,0,0,OM9:SA:CTP2199069,Europe/Paris,,OM9, +OM9:SP:2199071,1,"Le Vergon",43.72062,5.203072,0,0,OM9:SA:CTP2199071,Europe/Paris,,OM9, +OM9:SP:2199072,1,"Le Vergon",43.720386,5.205144,0,0,OM9:SA:CTP2199071,Europe/Paris,,OM9, +OM9:SP:2199073,1,"Place Raoul Coustet",43.730042,5.177299,0,0,OM9:SA:CTP2199073,Europe/Paris,,OM9, +OM9:SP:2199074,1,"Place Raoul Coustet",43.72972,5.177221,0,0,OM9:SA:CTP2199073,Europe/Paris,,OM9, +OM9:SP:2199075,1,"Pont de La Tour",43.71583,5.215827,0,0,OM9:SA:CTP2199075,Europe/Paris,,OM9, +OM9:SP:2199076,1,"Pont de La Tour",43.716686,5.216106,0,0,OM9:SA:CTP2199075,Europe/Paris,,OM9, +OM9:SP:2199077,1,"Pont Royal",43.713334,5.187776,0,0,OM9:SA:CTP2199077,Europe/Paris,,OM9, +OM9:SP:2199078,1,"Pont Royal",43.713051,5.188617,0,0,OM9:SA:CTP2199077,Europe/Paris,,OM9, +OM9:SP:2199079,1,"Vieille Poste",43.710094,5.193962,0,0,OM9:SA:CTP2199079,Europe/Paris,,OM9, +OM9:SP:2199080,1,"Vieille Poste",43.710196,5.193868,0,0,OM9:SA:CTP2199079,Europe/Paris,,OM9, +OM9:SP:2199081,1,"Bonsour",43.644401,5.154471,0,0,OM9:SA:CTP2199081,Europe/Paris,,OM9, +OM9:SP:2199082,1,"Carcassonne",43.632661,5.157024,0,0,OM9:SA:CTP2199082,Europe/Paris,,OM9, +OM9:SP:2199083,1,"Carcassonne",43.632653,5.156949,0,0,OM9:SA:CTP2199082,Europe/Paris,,OM9, +OM9:SP:2199084,1,"Général de Gaulle",43.629981,5.161832,0,0,OM9:SA:CTP2199084,Europe/Paris,,OM9, +OM9:SP:2199085,1,"Général de Gaulle",43.630062,5.161836,0,0,OM9:SA:CTP2199084,Europe/Paris,,OM9, +OM9:SP:2199086,1,"Les Enjouvènes",43.630741,5.154391,0,0,OM9:SA:CTP2199086,Europe/Paris,,OM9, +OM9:SP:2199087,1,"Les Enjouvènes",43.630557,5.155273,0,0,OM9:SA:CTP2199086,Europe/Paris,,OM9, +OM9:SP:2199088,1,"Le Haut Taulet",43.634197,5.167403,0,0,OM9:SA:CTP2199088,Europe/Paris,,OM9, +OM9:SP:2199089,1,"Le Pigeonnier",43.630899,5.14765,0,0,OM9:SA:CTP2199089,Europe/Paris,,OM9, +OM9:SP:2199090,1,"Le Pigeonnier",43.630807,5.147732,0,0,OM9:SA:CTP2199089,Europe/Paris,,OM9, +OM9:SP:2199091,1,"Les Arènes",43.632129,5.143897,0,0,OM9:SA:CTP2199091,Europe/Paris,,OM9, +OM9:SP:2199092,1,"Les Arènes",43.632042,5.143794,0,0,OM9:SA:CTP2199091,Europe/Paris,,OM9, +OM9:SP:2199093,1,"Les Pinchinats",43.637318,5.152573,0,0,OM9:SA:CTP2199093,Europe/Paris,,OM9, +OM9:SP:2199094,1,"Les Pinchinats",43.638052,5.153055,0,0,OM9:SA:CTP2199093,Europe/Paris,,OM9, +OM9:SP:2199095,1,"Mistral",43.634819,5.152549,0,0,OM9:SA:CTP2199095,Europe/Paris,,OM9, +OM9:SP:2199096,1,"Mistral",43.634747,5.152545,0,0,OM9:SA:CTP2199095,Europe/Paris,,OM9, +OM9:SP:2199097,1,"Station Campus",43.629352,5.135168,0,0,OM9:SA:CTP2199097,Europe/Paris,,OM9, +OM9:SP:2199098,1,"Station Campus",43.62946,5.135148,0,0,OM9:SA:CTP2199097,Europe/Paris,,OM9, +OM9:SP:2199099,1,"18 Juin 1940",43.628053,5.113337,0,0,OM9:SA:CTP2199099,Europe/Paris,,OM9, +OM9:SP:2199100,1,"18 Juin 1940",43.628195,5.113728,0,0,OM9:SA:CTP2199099,Europe/Paris,,OM9, +OM9:SP:2199101,1,"C. Cial Aires de La Dîme",43.634601,5.07839,0,0,OM9:SA:CTP2199101,Europe/Paris,,OM9, +OM9:SP:2199102,1,"Base Aérienne",43.625008,5.112125,0,0,OM9:SA:CTP2199102,Europe/Paris,,OM9, +OM9:SP:2199103,1,"Base Aérienne",43.624919,5.112083,0,0,OM9:SA:CTP2199102,Europe/Paris,,OM9, +OM9:SP:2199104,1,"Beauséjour",43.638809,4.979032,0,0,OM9:SA:CTP2199104,Europe/Paris,,OM9, +OM9:SP:2199105,1,"Bel Air",43.640447,5.071278,0,0,OM9:SA:CTP2199105,Europe/Paris,,OM9, +OM9:SP:2199106,1,"Bel Air",43.640537,5.07127,0,0,OM9:SA:CTP2199105,Europe/Paris,,OM9, +OM9:SP:2199107,1,"Allée des Justes",43.64034,5.059806,0,0,OM9:SA:CTP2199107,Europe/Paris,,OM9, +OM9:SP:2199108,1,"Allée des Justes",43.640231,5.059875,0,0,OM9:SA:CTP2199107,Europe/Paris,,OM9, +OM9:SP:2199109,1,"Bois Joli",43.649221,5.052835,0,0,OM9:SA:CTP2199109,Europe/Paris,,OM9, +OM9:SP:2199110,1,"Boisgelin",43.67945,5.06746,0,0,OM9:SA:CTP2199110,Europe/Paris,,OM9, +OM9:SP:2199111,1,"Boisgelin",43.679576,5.067826,0,0,OM9:SA:CTP2199110,Europe/Paris,,OM9, +OM9:SP:2199112,1,"Cap Canourgues",43.651267,5.096742,0,0,OM9:SA:CTP2199112,Europe/Paris,,OM9, +OM9:SP:2199113,1,"Cap Canourgues",43.651172,5.096614,0,0,OM9:SA:CTP2199112,Europe/Paris,,OM9, +OM9:SP:2199114,1,"Carcassonne",43.640543,5.086985,0,0,OM9:SA:CTP2199114,Europe/Paris,,OM9, +OM9:SP:2199115,1,"Carnot",43.641371,5.097564,0,0,OM9:SA:CTP2199115,Europe/Paris,,OM9, +OM9:SP:2199118,1,"St Côme",43.64461,5.102799,0,0,OM9:SA:CTP2199118,Europe/Paris,,OM9, +OM9:SP:2199119,1,"St Côme",43.644606,5.102625,0,0,OM9:SA:CTP2199118,Europe/Paris,,OM9, +OM9:SP:2199120,1,"Cézanne",43.645519,5.087238,0,0,OM9:SA:CTP2199120,Europe/Paris,,OM9, +OM9:SP:2199121,1,"Cézanne",43.645498,5.087385,0,0,OM9:SA:CTP2199120,Europe/Paris,,OM9, +OM9:SP:2199124,1,"La Jasso",43.64015,4.988914,0,0,OM9:SA:CTP2199124,Europe/Paris,,OM9, +OM9:SP:2199126,1,"Clémenceau",43.641601,5.092795,0,0,OM9:SA:CTP2199126,Europe/Paris,,OM9, +OM9:SP:2199127,1,"Clos Roumanille",43.647223,5.086044,0,0,OM9:SA:CTP2199127,Europe/Paris,,OM9, +OM9:SP:2199128,1,"Clos Roumanille",43.647246,5.086169,0,0,OM9:SA:CTP2199127,Europe/Paris,,OM9, +OM9:SP:2199129,1,"Clos St Antoine",43.651967,5.0915,0,0,OM9:SA:CTP2199129,Europe/Paris,,OM9, +OM9:SP:2199130,1,"Clos St Antoine",43.651828,5.091307,0,0,OM9:SA:CTP2199129,Europe/Paris,,OM9, +OM9:SP:2199131,1,"Craponne",43.633367,5.100718,0,0,OM9:SA:CTP2199131,Europe/Paris,,OM9, +OM9:SP:2199132,1,"Craponne",43.633363,5.100532,0,0,OM9:SA:CTP2199131,Europe/Paris,,OM9, +OM9:SP:2199133,1,"Croix de Crau",43.639967,4.954678,0,0,OM9:SA:CTP2199133,Europe/Paris,,OM9, +OM9:SP:2199134,1,"D. Allemand",43.638597,5.086793,0,0,OM9:SA:CTP2199134,Europe/Paris,,OM9, +OM9:SP:2199135,1,"Danton",43.635829,5.089161,0,0,OM9:SA:CTP2199135,Europe/Paris,,OM9, +OM9:SP:2199137,1,"Impasse du Bivert",43.63778,5.087781,0,0,OM9:SA:CTP2199137,Europe/Paris,,OM9, +OM9:SP:2199138,1,"Denfert Rochereau",43.642744,5.086757,0,0,OM9:SA:CTP2199138,Europe/Paris,,OM9, +OM9:SP:2199139,1,"Denfert Rochereau",43.642721,5.086583,0,0,OM9:SA:CTP2199138,Europe/Paris,,OM9, +OM9:SP:2199140,1,"Ecole de L'Air",43.626469,5.107058,0,0,OM9:SA:CTP2199140,Europe/Paris,,OM9, +OM9:SP:2199141,1,"Ecole de L'Air",43.626805,5.107284,0,0,OM9:SA:CTP2199140,Europe/Paris,,OM9, +OM9:SP:2199142,1,"Empéri",43.638512,5.098949,0,0,OM9:SA:CTP2199142,Europe/Paris,,OM9, +OM9:SP:2199143,1,"Estroublon",43.643741,5.080068,0,0,OM9:SA:CTP2199143,Europe/Paris,,OM9, +OM9:SP:2199144,1,"Europe",43.646728,5.102641,0,0,OM9:SA:CTP2199144,Europe/Paris,,OM9, +OM9:SP:2199145,1,"Europe",43.646713,5.102517,0,0,OM9:SA:CTP2199144,Europe/Paris,,OM9, +OM9:SP:2199146,1,"Farandole",43.643688,5.082158,0,0,OM9:SA:CTP2199146,Europe/Paris,,OM9, +OM9:SP:2199147,1,"Farandole",43.643597,5.082203,0,0,OM9:SA:CTP2199146,Europe/Paris,,OM9, +OM9:SP:2199150,1,"Félix Pyat",43.643911,5.092114,0,0,OM9:SA:CTP2199150,Europe/Paris,,OM9, +OM9:SP:2199151,1,"Félix Pyat",43.643906,5.091965,0,0,OM9:SA:CTP2199150,Europe/Paris,,OM9, +OM9:SP:2199152,1,"Foch",43.639527,5.093004,0,0,OM9:SA:CTP2199152,Europe/Paris,,OM9, +OM9:SP:2199153,1,"Foch",43.639599,5.092983,0,0,OM9:SA:CTP2199152,Europe/Paris,,OM9, +OM9:SP:2199154,1,"Fongrave IUT",43.639791,5.109079,0,0,OM9:SA:CTP2199154,Europe/Paris,,OM9, +OM9:SP:2199155,1,"Fongrave IUT",43.639861,5.109132,0,0,OM9:SA:CTP2199154,Europe/Paris,,OM9, +OM9:SP:2199156,1,"Font Segugne",43.650087,5.101404,0,0,OM9:SA:CTP2199156,Europe/Paris,,OM9, +OM9:SP:2199157,1,"Font Segugne",43.650064,5.101255,0,0,OM9:SA:CTP2199156,Europe/Paris,,OM9, +OM9:SP:2199158,1,"Francou",43.639118,5.083251,0,0,OM9:SA:CTP2199158,Europe/Paris,,OM9, +OM9:SP:2199159,1,"Frères Lamanon",43.645614,5.090945,0,0,OM9:SA:CTP2199159,Europe/Paris,,OM9, +OM9:SP:2199160,1,"Frères Lamanon",43.645808,5.090744,0,0,OM9:SA:CTP2199159,Europe/Paris,,OM9, +OM9:SP:2199161,1,"Gambetta",43.637788,5.099112,0,0,OM9:SA:CTP2199161,Europe/Paris,,OM9, +OM9:SP:2199163,1,"Zola",43.639087,5.089429,0,0,OM9:SA:CTP2199163,Europe/Paris,,OM9, +OM9:SP:2199164,1,"Zola",43.639601,5.088661,0,0,OM9:SA:CTP2199163,Europe/Paris,,OM9, +OM9:SP:2199165,1,"Gascogne",43.652774,5.096543,0,0,OM9:SA:CTP2199165,Europe/Paris,,OM9, +OM9:SP:2199166,1,"Gascogne",43.652786,5.09642,0,0,OM9:SA:CTP2199165,Europe/Paris,,OM9, +OM9:SP:2199168,1,"Glanum",43.641004,5.083008,0,0,OM9:SA:CTP2199168,Europe/Paris,,OM9, +OM9:SP:2199169,1,"Glanum",43.641019,5.083144,0,0,OM9:SA:CTP2199168,Europe/Paris,,OM9, +OM9:SP:2199170,1,"Guynemer",43.629721,5.101941,0,0,OM9:SA:CTP2199170,Europe/Paris,,OM9, +OM9:SP:2199171,1,"Guynemer",43.629885,5.102196,0,0,OM9:SA:CTP2199170,Europe/Paris,,OM9, +OM9:SP:2199172,1,"Hôpital",43.640122,5.102816,0,0,OM9:SA:CTP2199172,Europe/Paris,,OM9, +OM9:SP:2199173,1,"Hôpital",43.640118,5.10263,0,0,OM9:SA:CTP2199172,Europe/Paris,,OM9, +OM9:SP:2199174,1,"Hôtel de Ville",43.640486,5.099119,0,0,OM9:SA:CTP2199174,Europe/Paris,,OM9, +OM9:SP:2199175,1,"Impasse du Cabot",43.649975,5.046802,0,0,OM9:SA:CTP2199175,Europe/Paris,,OM9, +OM9:SP:2199176,1,"Janicot",43.638223,5.101808,0,0,OM9:SA:CTP2199176,Europe/Paris,,OM9, +OM9:SP:2199177,1,"Janicot",43.638295,5.101452,0,0,OM9:SA:CTP2199176,Europe/Paris,,OM9, +OM9:SP:2199178,1,"Jean Moulin",43.649127,5.094261,0,0,OM9:SA:CTP2199178,Europe/Paris,,OM9, +OM9:SP:2199179,1,"Jean Moulin",43.649123,5.09405,0,0,OM9:SA:CTP2199178,Europe/Paris,,OM9, +OM9:SP:2199180,1,"Joseph d'arbaud",43.625813,5.102917,0,0,OM9:SA:CTP2199180,Europe/Paris,,OM9, +OM9:SP:2199181,1,"Joseph d'Arbaud",43.625872,5.102836,0,0,OM9:SA:CTP2199181,Europe/Paris,,OM9, +OM9:SP:2199182,1,"La Borie",43.634479,5.090259,0,0,OM9:SA:CTP2199182,Europe/Paris,,OM9, +OM9:SP:2199183,1,"La Borie",43.634535,5.090188,0,0,OM9:SA:CTP2199182,Europe/Paris,,OM9, +OM9:SP:2199184,1,"La Figuière",43.640498,5.074575,0,0,OM9:SA:CTP2199184,Europe/Paris,,OM9, +OM9:SP:2199185,1,"La Figuière",43.640562,5.074565,0,0,OM9:SA:CTP2199184,Europe/Paris,,OM9, +OM9:SP:2199186,1,"C. Cial La Gandonne",43.633384,5.096905,0,0,OM9:SA:CTP2199186,Europe/Paris,,OM9, +OM9:SP:2199187,1,"C. Cial La Gandonne",43.63335,5.097151,0,0,OM9:SA:CTP2199186,Europe/Paris,,OM9, +OM9:SP:2199188,1,"La Lauzette",43.6507,5.090782,0,0,OM9:SA:CTP2199188,Europe/Paris,,OM9, +OM9:SP:2199189,1,"La Lauzette",43.651086,5.090788,0,0,OM9:SA:CTP2199188,Europe/Paris,,OM9, +OM9:SP:2199190,1,"La Martelière",43.627275,5.088141,0,0,OM9:SA:CTP2199190,Europe/Paris,,OM9, +OM9:SP:2199191,1,"La Martelière",43.626962,5.08773,0,0,OM9:SA:CTP2199190,Europe/Paris,,OM9, +OM9:SP:2199192,1,"La Monaque",43.631069,5.100198,0,0,OM9:SA:CTP2199192,Europe/Paris,,OM9, +OM9:SP:2199193,1,"La Monaque",43.630281,5.099727,0,0,OM9:SA:CTP2199192,Europe/Paris,,OM9, +OM9:SP:2199194,1,"La Piboule",43.63306,5.117964,0,0,OM9:SA:CTP2199194,Europe/Paris,,OM9, +OM9:SP:2199195,1,"La Taille",43.637009,5.081651,0,0,OM9:SA:CTP2199195,Europe/Paris,,OM9, +OM9:SP:2199196,1,"Voie Aurélienne",43.631357,5.087855,0,0,OM9:SA:CTP2199196,Europe/Paris,,OM9, +OM9:SP:2199197,1,"Voie Aurélienne",43.631439,5.087785,0,0,OM9:SA:CTP2199196,Europe/Paris,,OM9, +OM9:SP:2199200,1,"Le Merle",43.640395,5.018014,0,0,OM9:SA:CTP2199200,Europe/Paris,,OM9, +OM9:SP:2199201,1,"Le Petit Quintin",43.63076,5.090117,0,0,OM9:SA:CTP2199201,Europe/Paris,,OM9, +OM9:SP:2199202,1,"Le Petit Quintin",43.630818,5.090281,0,0,OM9:SA:CTP2199201,Europe/Paris,,OM9, +OM9:SP:2199203,1,"Le Touret",43.649612,5.091832,0,0,OM9:SA:CTP2199203,Europe/Paris,,OM9, +OM9:SP:2199204,1,"Le Touret",43.649535,5.091642,0,0,OM9:SA:CTP2199203,Europe/Paris,,OM9, +OM9:SP:2199205,1,"Léopold Coren",43.643509,5.094844,0,0,OM9:SA:CTP2199205,Europe/Paris,,OM9, +OM9:SP:2199206,1,"Léopold Coren",43.6436,5.094786,0,0,OM9:SA:CTP2199205,Europe/Paris,,OM9, +OM9:SP:2199207,1,"Les Barettes",43.639931,5.07638,0,0,OM9:SA:CTP2199207,Europe/Paris,,OM9, +OM9:SP:2199208,1,"Les Bartavelles",43.629264,5.119748,0,0,OM9:SA:CTP2199208,Europe/Paris,,OM9, +OM9:SP:2199209,1,"Les Bartavelles",43.629261,5.119872,0,0,OM9:SA:CTP2199208,Europe/Paris,,OM9, +OM9:SP:2199210,1,"Les Blazots",43.641989,5.088863,0,0,OM9:SA:CTP2199210,Europe/Paris,,OM9, +OM9:SP:2199211,1,"Les Blazots",43.642003,5.089012,0,0,OM9:SA:CTP2199210,Europe/Paris,,OM9, +OM9:SP:2199212,1,"Bressons",43.647729,5.091592,0,0,OM9:SA:CTP2199212,Europe/Paris,,OM9, +OM9:SP:2199213,1,"Bressons",43.647837,5.091597,0,0,OM9:SA:CTP2199212,Europe/Paris,,OM9, +OM9:SP:2199214,1,"Les Cabans",43.644255,5.084625,0,0,OM9:SA:CTP2199214,Europe/Paris,,OM9, +OM9:SP:2199215,1,"Les Cabans",43.644155,5.084645,0,0,OM9:SA:CTP2199214,Europe/Paris,,OM9, +OM9:SP:2199216,1,"Les Canourgues",43.651267,5.096742,0,0,OM9:SA:CTP2199216,Europe/Paris,,OM9, +OM9:SP:2199217,1,"Les Canourgues",43.651172,5.096614,0,0,OM9:SA:CTP2199216,Europe/Paris,,OM9, +OM9:SP:2199218,1,"Les Cerisiers",43.637941,5.053995,0,0,OM9:SA:CTP2199218,Europe/Paris,,OM9, +OM9:SP:2199219,1,"Les Coquelicots",43.651965,5.085579,0,0,OM9:SA:CTP2199219,Europe/Paris,,OM9, +OM9:SP:2199220,1,"Les Coquelicots",43.651721,5.085617,0,0,OM9:SA:CTP2199219,Europe/Paris,,OM9, +OM9:SP:2199221,1,"Les Crozes",43.626994,5.084005,0,0,OM9:SA:CTP2199221,Europe/Paris,,OM9, +OM9:SP:2199222,1,"Les Crozes",43.627039,5.083623,0,0,OM9:SA:CTP2199221,Europe/Paris,,OM9, +OM9:SP:2199223,1,"Les Entrages",43.624998,5.099162,0,0,OM9:SA:CTP2199223,Europe/Paris,,OM9, +OM9:SP:2199224,1,"Les Entrages",43.625034,5.099151,0,0,OM9:SA:CTP2199223,Europe/Paris,,OM9, +OM9:SP:2199225,1,"Les Gabins",43.635551,5.048891,0,0,OM9:SA:CTP2199225,Europe/Paris,,OM9, +OM9:SP:2199226,1,"Les Jardins",43.654516,5.085689,0,0,OM9:SA:CTP2199226,Europe/Paris,,OM9, +OM9:SP:2199227,1,"Les Jardins",43.654562,5.085667,0,0,OM9:SA:CTP2199226,Europe/Paris,,OM9, +OM9:SP:2199228,1,"Les Launes",43.644117,5.087938,0,0,OM9:SA:CTP2199228,Europe/Paris,,OM9, +OM9:SP:2199229,1,"Les Launes",43.644131,5.088087,0,0,OM9:SA:CTP2199228,Europe/Paris,,OM9, +OM9:SP:2199230,1,"Les Pastourelles",43.630635,5.119245,0,0,OM9:SA:CTP2199230,Europe/Paris,,OM9, +OM9:SP:2199231,1,"Les Pastourelles",43.63065,5.119358,0,0,OM9:SA:CTP2199230,Europe/Paris,,OM9, +OM9:SP:2199232,1,"Les Roquassiers",43.629173,5.130243,0,0,OM9:SA:CTP2199232,Europe/Paris,,OM9, +OM9:SP:2199233,1,"Les Roquassiers",43.629334,5.130276,0,0,OM9:SA:CTP2199232,Europe/Paris,,OM9, +OM9:SP:2199236,1,"L'Eyssado",43.649394,5.086607,0,0,OM9:SA:CTP2199236,Europe/Paris,,OM9, +OM9:SP:2199237,1,"L'Eyssado",43.649417,5.086744,0,0,OM9:SA:CTP2199236,Europe/Paris,,OM9, +OM9:SP:2199238,1,"Lurian",43.627273,5.105846,0,0,OM9:SA:CTP2199238,Europe/Paris,,OM9, +OM9:SP:2199239,1,"Lurian",43.626985,5.105869,0,0,OM9:SA:CTP2199238,Europe/Paris,,OM9, +OM9:SP:2199240,1,"Lycée St Jean",43.640535,5.083418,0,0,OM9:SA:CTP2199240,Europe/Paris,,OM9, +OM9:SP:2199241,1,"Lycée St Jean",43.640281,5.081388,0,0,OM9:SA:CTP2199240,Europe/Paris,,OM9, +OM9:SP:2199242,1,"Lycée Technique",43.635516,5.100042,0,0,OM9:SA:CTP2199242,Europe/Paris,,OM9, +OM9:SP:2199243,1,"Lycée Technique",43.635449,5.099866,0,0,OM9:SA:CTP2199242,Europe/Paris,,OM9, +OM9:SP:2199245,1,"Maréchal de Lattre",43.647778,5.092499,0,0,OM9:SA:CTP2199245,Europe/Paris,,OM9, +OM9:SP:2199246,1,"Maréchal de Lattre",43.648704,5.092147,0,0,OM9:SA:CTP2199245,Europe/Paris,,OM9, +OM9:SP:2199247,1,"Mas Dosseto",43.653091,5.099989,0,0,OM9:SA:CTP2199247,Europe/Paris,,OM9, +OM9:SP:2199248,1,"Mas Dosseto",43.652495,5.099725,0,0,OM9:SA:CTP2199247,Europe/Paris,,OM9, +OM9:SP:2199249,1,"Mas du Soleil",43.636114,5.054787,0,0,OM9:SA:CTP2199249,Europe/Paris,,OM9, +OM9:SP:2199250,1,"Mas du Soleil",43.636288,5.054659,0,0,OM9:SA:CTP2199249,Europe/Paris,,OM9, +OM9:SP:2199251,1,"Mas Poulain",43.640075,4.970261,0,0,OM9:SA:CTP2199251,Europe/Paris,,OM9, +OM9:SP:2199252,1,"Massuguettes",43.655567,5.094238,0,0,OM9:SA:CTP2199252,Europe/Paris,,OM9, +OM9:SP:2199253,1,"Massuguettes",43.655721,5.094196,0,0,OM9:SA:CTP2199252,Europe/Paris,,OM9, +OM9:SP:2199254,1,"Morgan Gare Routière",43.638201,5.095256,0,0,OM9:SA:CTP2199254,Europe/Paris,,OM9, +OM9:SP:2199255,1,"Morgan",43.638024,5.094108,0,0,OM9:SA:CTP2199255,Europe/Paris,,OM9, +OM9:SP:2199256,1,"Donnadieu",43.640097,5.107992,0,0,OM9:SA:CTP2199256,Europe/Paris,,OM9, +OM9:SP:2199257,1,"Paul Arène",43.648109,5.097841,0,0,OM9:SA:CTP2199257,Europe/Paris,,OM9, +OM9:SP:2199258,1,"Paul Arène",43.648215,5.097561,0,0,OM9:SA:CTP2199257,Europe/Paris,,OM9, +OM9:SP:2199262,1,"Pont d'Avignon",43.646074,5.093729,0,0,OM9:SA:CTP2199262,Europe/Paris,,OM9, +OM9:SP:2199263,1,"Pont d'Avignon",43.646275,5.093962,0,0,OM9:SA:CTP2199262,Europe/Paris,,OM9, +OM9:SP:2199266,1,"Reine Jeanne",43.634565,5.093966,0,0,OM9:SA:CTP2199266,Europe/Paris,,OM9, +OM9:SP:2199267,1,"Reine Jeanne",43.63428,5.093853,0,0,OM9:SA:CTP2199266,Europe/Paris,,OM9, +OM9:SP:2199268,1,"Remoulaire",43.629696,5.093372,0,0,OM9:SA:CTP2199268,Europe/Paris,,OM9, +OM9:SP:2199269,1,"Remoulaire",43.629146,5.094868,0,0,OM9:SA:CTP2199268,Europe/Paris,,OM9, +OM9:SP:2199270,1,"République",43.640503,5.092829,0,0,OM9:SA:CTP2199270,Europe/Paris,,OM9, +OM9:SP:2199271,1,"République",43.640629,5.09281,0,0,OM9:SA:CTP2199270,Europe/Paris,,OM9, +OM9:SP:2199272,1,"Roi René",43.632141,5.09978,0,0,OM9:SA:CTP2199272,Europe/Paris,,OM9, +OM9:SP:2199273,1,"Roi René",43.632072,5.099677,0,0,OM9:SA:CTP2199272,Europe/Paris,,OM9, +OM9:SP:2199275,1,"Schuman",43.648376,5.102188,0,0,OM9:SA:CTP2199275,Europe/Paris,,OM9, +OM9:SP:2199276,1,"Schuman",43.648407,5.102017,0,0,OM9:SA:CTP2199275,Europe/Paris,,OM9, +OM9:SP:2199277,1,"Sénèque",43.642663,5.094171,0,0,OM9:SA:CTP2199277,Europe/Paris,,OM9, +OM9:SP:2199278,1,"Sénèque",43.642741,5.094262,0,0,OM9:SA:CTP2199277,Europe/Paris,,OM9, +OM9:SP:2199279,1,"St Jean",43.623744,5.118947,0,0,OM9:SA:CTP2199279,Europe/Paris,,OM9, +OM9:SP:2199280,1,"St Léon",43.640554,5.105277,0,0,OM9:SA:CTP2199280,Europe/Paris,,OM9, +OM9:SP:2199281,1,"St Léon",43.640829,5.104721,0,0,OM9:SA:CTP2199280,Europe/Paris,,OM9, +OM9:SP:2199282,1,"St Louis",43.653388,5.088348,0,0,OM9:SA:CTP2199282,Europe/Paris,,OM9, +OM9:SP:2199283,1,"St Louis",43.653419,5.08851,0,0,OM9:SA:CTP2199282,Europe/Paris,,OM9, +OM9:SP:2199284,1,"St Roch",43.637989,5.095469,0,0,OM9:SA:CTP2199284,Europe/Paris,,OM9, +OM9:SP:2199285,1,"St Roch",43.638047,5.095311,0,0,OM9:SA:CTP2199284,Europe/Paris,,OM9, +OM9:SP:2199286,1,"Tallagard",43.654214,5.098297,0,0,OM9:SA:CTP2199286,Europe/Paris,,OM9, +OM9:SP:2199287,1,"Tamaris",43.63861,5.114446,0,0,OM9:SA:CTP2199287,Europe/Paris,,OM9, +OM9:SP:2199288,1,"Tamaris",43.640835,5.113613,0,0,OM9:SA:CTP2199288,Europe/Paris,,OM9, +OM9:SP:2199289,1,"Théâtre",43.640976,5.095068,0,0,OM9:SA:CTP2199289,Europe/Paris,,OM9, +OM9:SP:2199290,1,"Théâtre",43.641183,5.094731,0,0,OM9:SA:CTP2199289,Europe/Paris,,OM9, +OM9:SP:2199291,1,"Trophées",43.634535,5.096206,0,0,OM9:SA:CTP2199291,Europe/Paris,,OM9, +OM9:SP:2199292,1,"Trophées",43.634621,5.095987,0,0,OM9:SA:CTP2199291,Europe/Paris,,OM9, +OM9:SP:2199293,1,"Ursule",43.637906,5.098709,0,0,OM9:SA:CTP2199293,Europe/Paris,,OM9, +OM9:SP:2199296,1,"Ventadouiro",43.627936,5.09788,0,0,OM9:SA:CTP2199296,Europe/Paris,,OM9, +OM9:SP:2199297,1,"Ventadouiro",43.628103,5.098012,0,0,OM9:SA:CTP2199296,Europe/Paris,,OM9, +OM9:SP:2199298,1,"Ventouresco",43.655017,5.091127,0,0,OM9:SA:CTP2199298,Europe/Paris,,OM9, +OM9:SP:2199299,1,"Ventouresco",43.654984,5.090989,0,0,OM9:SA:CTP2199298,Europe/Paris,,OM9, +OM9:SP:2199300,1,"Vert Bocage",43.647587,5.096824,0,0,OM9:SA:CTP2199300,Europe/Paris,,OM9, +OM9:SP:2199301,1,"Vert Bocage",43.647636,5.097694,0,0,OM9:SA:CTP2199300,Europe/Paris,,OM9, +OM9:SP:2199302,1,"Vieux Chemin d'Istres",43.635558,5.076108,0,0,OM9:SA:CTP2199302,Europe/Paris,,OM9, +OM9:SP:2199303,1,"Vieux Moulin",43.628572,5.099743,0,0,OM9:SA:CTP2199303,Europe/Paris,,OM9, +OM9:SP:2199304,1,"Vieux Moulin",43.628693,5.09991,0,0,OM9:SA:CTP2199303,Europe/Paris,,OM9, +OM9:SP:2199305,1,"Wertheim",43.647563,5.094916,0,0,OM9:SA:CTP2199305,Europe/Paris,,OM9, +OM9:SP:2199306,1,"Wertheim",43.647664,5.095193,0,0,OM9:SA:CTP2199305,Europe/Paris,,OM9, +OM9:SP:2199307,1,"Zac de La Crau",43.637502,5.047498,0,0,OM9:SA:CTP2199307,Europe/Paris,,OM9, +OM9:SP:2199308,1,"Zac de La Crau",43.637794,5.048044,0,0,OM9:SA:CTP2199307,Europe/Paris,,OM9, +OM9:SP:2199309,1,"Les Cerisiers",43.637934,5.053933,0,0,OM9:SA:CTP2199218,Europe/Paris,,OM9, +OM9:SP:2199310,1,"L'Amellenque",43.63599,5.057567,0,0,OM9:SA:CTP2199310,Europe/Paris,,OM9, +OM9:SP:2199311,1,"L'Amellenque",43.636161,5.057551,0,0,OM9:SA:CTP2199310,Europe/Paris,,OM9, +OM9:SP:2199312,1,"Hippodrome",43.637218,5.038333,0,0,OM9:SA:CTP2199312,Europe/Paris,,OM9, +OM9:SP:2199313,1,"Chemin de Davis",43.636113,5.060557,0,0,OM9:SA:CTP2199313,Europe/Paris,,OM9, +OM9:SP:2199314,1,"Chevigné",43.746552,5.076843,0,0,OM9:SA:CTP2199314,Europe/Paris,,OM9, +OM9:SP:2199315,1,"Gabriel Péri",43.745009,5.074908,0,0,OM9:SA:CTP2199315,Europe/Paris,,OM9, +OM9:SP:2199316,1,"Gabriel Péri",43.745041,5.075058,0,0,OM9:SA:CTP2199315,Europe/Paris,,OM9, +OM9:SP:2199318,1,"Max Dormoy",43.737911,5.079206,0,0,OM9:SA:CTP2199318,Europe/Paris,,OM9, +OM9:SP:2199319,1,"Mairie",43.685283,5.170509,0,0,OM9:SA:CTP2199319,Europe/Paris,,OM9, +OM9:SP:2199320,1,"Ecole de La Crau",43.642744,5.059016,0,0,OM9:SA:CTP2199320,Europe/Paris,,OM9, +OM9:SP:2199321,1,"Sans soucis",43.649997,5.083056,0,0,OM9:SA:CTP2199321,Europe/Paris,,OM9, +OM9:SP:2199322,1,"Viala",43.639441,5.101669,0,0,OM9:SA:CTP2199322,Europe/Paris,,OM9, +OM9:SP:2199323,1,"Donnadieu",43.640018,5.107926,0,0,OM9:SA:CTP2199256,Europe/Paris,,OM9, +OM9:SP:2199324,1,"Hippodrome",43.637218,5.038333,0,0,OM9:SA:CTP2199312,Europe/Paris,,OM9, +OM9:SP:2199325,1,"Le Lavoir",43.665127,5.157093,0,0,OM9:SA:CTP2199016,Europe/Paris,,OM9, +OM9:SP:2199326,1,"Les Pinèdes",43.652418,5.153641,0,0,OM9:SA:CTP2199326,Europe/Paris,,OM9, +OM9:SP:2199327,1,"Place de La Couren",43.697781,5.028609,0,0,OM9:SA:CTP2199033,Europe/Paris,,OM9, +OM9:SP:2199328,1,"Les Paluds",43.687917,5.038975,0,0,OM9:SA:CTP2199030,Europe/Paris,,OM9, +OM9:SP:2199329,1,"La Rocassière",43.705277,5.17056,0,0,OM9:SA:CTP2199006,Europe/Paris,,OM9, +OM9:SP:2199330,1,"Francou",43.639118,5.083251,0,0,OM9:SA:CTP2199158,Europe/Paris,,OM9, +OM9:SP:2199332,1,"Diane",43.64028,5.053611,0,0,OM9:SA:CTP2199332,Europe/Paris,,OM9, +OM9:SP:2199333,1,"Diane",43.640279,5.052224,0,0,OM9:SA:CTP2199332,Europe/Paris,,OM9, +OM9:SP:2199334,1,"Les Lices",43.631106,5.138609,0,0,OM9:SA:CTP2199334,Europe/Paris,,OM9, +OM9:SP:2199335,1,"Les Lices",43.631389,5.139168,0,0,OM9:SA:CTP2199334,Europe/Paris,,OM9, +OM9:SP:2199336,1,"Fontaine Gilouse",43.69694,5.038895,0,0,OM9:SA:CTP2199336,Europe/Paris,,OM9, +OM9:SP:2199337,1,"Fontaine Gilouse",43.696942,5.039168,0,0,OM9:SA:CTP2199336,Europe/Paris,,OM9, +OM9:SP:2199338,1,"Les Acacias",43.699998,5.088887,0,0,OM9:SA:CTP2199338,Europe/Paris,,OM9, +OM9:SP:2199339,1,"Le Felibrige",43.594446,5.128607,0,0,OM9:SA:CTP2199339,Europe/Paris,,OM9, +OM9:SP:2199340,1,"Le Felibrige",43.594446,5.128607,0,0,OM9:SA:CTP2199339,Europe/Paris,,OM9, +OM9:SP:2199341,1,"Les Fanets",43.587775,5.187782,0,0,OM9:SA:CTP2199341,Europe/Paris,,OM9, +OM9:SP:2199342,1,"Les Fanets",43.588798,5.180372,0,0,OM9:SA:CTP2199342,Europe/Paris,,OM9, +OM9:SP:2199343,1,"La Capelette",43.741392,5.079212,0,0,OM9:SA:CTP2199343,Europe/Paris,,OM9, +OM9:SP:2199344,1,"La Capelette",43.740834,5.078863,0,0,OM9:SA:CTP2199343,Europe/Paris,,OM9, +OM9:SP:2199345,1,"Lou Calen",43.6375,5.123332,0,0,OM9:SA:CTP2199345,Europe/Paris,,OM9, +OM9:SP:2199346,1,"Lou Calen",43.637503,5.11833,0,0,OM9:SA:CTP2199346,Europe/Paris,,OM9, +OM9:SP:2199347,1,"Plan de Clavel",43.633058,5.140005,0,0,OM9:SA:CTP2199347,Europe/Paris,,OM9, +OM9:SP:2199348,1,"Plan de Clavel",43.633054,5.140835,0,0,OM9:SA:CTP2199347,Europe/Paris,,OM9, +OM9:SP:2199349,1,"La Poudrière",43.597495,5.131391,0,0,OM9:SA:CTP2199349,Europe/Paris,,OM9, +OM9:SP:2199350,1,"La Poudrière",43.597495,5.131391,0,0,OM9:SA:CTP2199349,Europe/Paris,,OM9, +OM9:SP:2199351,1,"Papillons blancs",43.655834,5.074171,0,0,OM9:SA:CTP2199351,Europe/Paris,,OM9, +OM9:SP:2199352,1,"La Fontaine",43.663857,5.156473,0,0,OM9:SA:CTP2199015,Europe/Paris,,OM9, +OM9:SP:2199353,1,"Sans soucis",43.649162,5.083338,0,0,OM9:SA:CTP2199321,Europe/Paris,,OM9, +OM9:SP:2199372,1,"Les Vallons",43.628122,5.116597,0,0,OM9:SA:CTP2199372,Europe/Paris,,OM9, +OM9:SP:2199373,1,"Les Vallons",43.629372,5.116596,0,0,OM9:SA:CTP2199372,Europe/Paris,,OM9, +OM9:SP:2199374,1,"Les Sardenas",43.589215,5.113491,0,0,OM9:SA:CTP2199374,Europe/Paris,,OM9, +OM9:SP:2199375,1,"Cazan",43.692593,5.206832,0,0,OM9:SA:CTP2199375,Europe/Paris,,OM9, +OM9:SP:2199376,1,"Rond Point du Golf",43.710898,5.193829,0,0,OM9:SA:CTP2199376,Europe/Paris,,OM9, +OM9:SP:2199377,1,"Rond Point du Golf",43.710745,5.193834,0,0,OM9:SA:CTP2199376,Europe/Paris,,OM9, +OM9:SP:2199378,1,"Le Golf",43.714887,5.197427,0,0,OM9:SA:CTP2199378,Europe/Paris,,OM9, +OM9:SP:2199379,1,"La Prouvenque",43.632599,5.151424,0,0,OM9:SA:CTP2199379,Europe/Paris,,OM9, +OM9:SP:2199380,1,"Canesteu",43.632602,5.094775,0,0,OM9:SA:CTP2199380,Europe/Paris,,OM9, +OM9:SP:2199381,1,"Canesteu",43.632566,5.094761,0,0,OM9:SA:CTP2199380,Europe/Paris,,OM9, +OM9:SP:2199382,1,"Les Séniorales",43.719749,5.25457,0,0,OM9:SA:CTP2199382,Europe/Paris,,OM9, +OM9:SP:2199383,1,"Le Galion",43.63055,5.153465,0,0,OM9:SA:CTP2199383,Europe/Paris,,OM9, +OM9:SP:2199389,1,"Lafayette",27.140959,-3.404569,0,0,OM9:SA:CTP2199389,Europe/Paris,,OM9, +OM9:SP:2199390,1,"Bergeronnette",43.63538,5.070342,0,0,OM9:SA:CTP2199390,Europe/Paris,,OM9, +OM9:SP:2199391,1,"Les Barettes",43.639594,5.07655,0,0,OM9:SA:CTP2199207,Europe/Paris,,OM9, +OM9:SP:2199392,1,"Istres",43.634829,5.076494,0,0,OM9:SA:CTP2199392,Europe/Paris,,OM9, +OM9:SP:2199401,1,"Cimetière des Manières",43.639069,5.11723,0,0,OM9:SA:CTP2199401,Europe/Paris,,OM9, +OM9:SP:2199402,1,"Farigoulette",43.635713,5.114107,0,0,OM9:SA:CTP2199402,Europe/Paris,,OM9, +OM9:SP:2199403,1,"Farigoulette",43.635701,5.114254,0,0,OM9:SA:CTP2199402,Europe/Paris,,OM9, +OM9:SP:2199404,1,"Garage d'Istres",43.63538,5.070342,0,0,OM9:SA:CTP2199404,Europe/Paris,,OM9, +OM9:SP:2199411,1,"Valentine",43.632061,5.113433,0,0,OM9:SA:CTP2199411,Europe/Paris,,OM9, +OM9:SP:2199412,1,"Valentine",43.632084,5.113583,0,0,OM9:SA:CTP2199411,Europe/Paris,,OM9, +OM9:SP:2199413,1,"La Taille",43.637157,5.081857,0,0,OM9:SA:CTP2199195,Europe/Paris,,OM9, +OM9:SP:2199414,1,"Ccial Les Viougues",43.628797,5.117274,0,0,OM9:SA:CTP2199414,Europe/Paris,,OM9, +OM9:SP:2199416,1,"C. Cial La Gandonne",43.634134,5.09075,0,0,OM9:SA:CTP2199416,Europe/Paris,,OM9, +OM9:SP:2199417,1,"C. Cial La Gandonne",43.634211,5.091249,0,0,OM9:SA:CTP2199416,Europe/Paris,,OM9, +OM9:SP:2199418,1,"Le Pigeonnier",43.722156,5.079477,0,0,OM9:SA:CTP2199418,Europe/Paris,,OM9, +OM9:SP:2199419,1,"L'Amandière",43.636213,5.058717,0,0,OM9:SA:CTP2199419,Europe/Paris,,OM9, +OM9:SP:2199420,1,"L'Amandière",43.636445,5.058803,0,0,OM9:SA:CTP2199419,Europe/Paris,,OM9, +OM9:SP:2199421,1,"Les Broquetiers",43.624924,5.087248,0,0,OM9:SA:CTP2199421,Europe/Paris,,OM9, +OM9:SP:2199422,1,"Marcel Pagnol",43.590376,5.12357,0,0,OM9:SA:CTP2199422,Europe/Paris,,OM9, +OM9:SP:2199423,1,"Estamaire",43.62841,5.097965,0,0,OM9:SA:CTP2199423,Europe/Paris,,OM9, +OM9:SP:2199424,1,"Estamaire",43.628517,5.09802,0,0,OM9:SA:CTP2199423,Europe/Paris,,OM9, +OM9:SP:2199426,1,"Gare Routière",43.639493,5.088334,0,0,OM9:SA:CTP2199431,Europe/Paris,,OM9, +OM9:SP:2199427,1,"Rue Remoulaire",43.629706,5.093694,0,0,OM9:SA:CTP2199427,Europe/Paris,,OM9, +OM9:SP:2199428,1,"Rue Remoulaire",43.629295,5.094318,0,0,OM9:SA:CTP2199427,Europe/Paris,,OM9, +OM9:SP:2199429,1,"Les Broquetiers",43.62487,5.087258,0,0,OM9:SA:CTP2199421,Europe/Paris,,OM9, +OM9:SP:2199430,1,"Gare Routière",43.639493,5.088334,0,0,OM9:SA:CTP2199431,Europe/Paris,,OM9, +OM9:SP:2199431,1,"Gare Routière",43.639493,5.088334,0,0,OM9:SA:CTP2199431,Europe/Paris,,OM9, +OM9:SP:2199432,1,"Gare",43.639493,5.088334,0,0,OM9:SA:CTP2199432,Europe/Paris,,OM9, +OM9:SP:2199433,1,"Parking IUT",43.640097,5.107992,0,0,OM9:SA:CTP2199433,Europe/Paris,,OM9, +OM9:SP:2199434,1,"Parking IUT",43.640018,5.107926,0,0,OM9:SA:CTP2199433,Europe/Paris,,OM9, +OM9:SP:2199435,1,"Parking J. D'Arbaud",43.624995,5.102777,0,0,OM9:SA:CTP2199435,Europe/Paris,,OM9, +OM9:SP:2199436,1,"Trophees",43.634445,5.09583,0,0,OM9:SA:CTP2199436,Europe/Paris,,OM9, +OM9:SP:2199437,1,"Danton",27.140959,-3.404569,0,0,OM9:SA:CTP2199437,Europe/Paris,,OM9, +OM9:SP:2199438,1,"Les Pinèdes",27.140959,-3.404569,0,0,OM9:SA:CTP2199438,Europe/Paris,,OM9, +OM9:SP:2199439,1,"Pasteur",27.140959,-3.404569,0,0,OM9:SA:CTP2199439,Europe/Paris,,OM9, +OM9:SP:2199440,1,"Pasteur",27.140959,-3.404569,0,0,OM9:SA:CTP2199439,Europe/Paris,,OM9, +OM9:SP:2199441,1,"Le Château",27.140959,-3.404569,0,0,OM9:SA:CTP2199441,Europe/Paris,,OM9, +OM9:SP:2199442,1,"Le Château",27.140959,-3.404569,0,0,OM9:SA:CTP2199441,Europe/Paris,,OM9, +OM9:SP:2199443,1,"Vignerons",27.140959,-3.404569,0,0,OM9:SA:CTP2199443,Europe/Paris,,OM9, +OM9:SP:2199444,1,"La Cigale",27.140959,-3.404569,0,0,OM9:SA:CTP2199444,Europe/Paris,,OM9, +OMA:SP:20000,1,"PLACE DES AIRES",43.407216,5.056484,0,0,OMA:SA:CTP20000,Europe/Paris,,OMA, +OMA:SP:20001,1,"DOUMER",43.407826,5.053688,0,0,OMA:SA:CTP20001,Europe/Paris,,OMA, +OMA:SP:20002,1,"L'ILE",43.406447,5.055263,0,0,OMA:SA:CTP20002,Europe/Paris,,OMA, +OMA:SP:20003,1,"L'ILE",43.406095,5.055999,0,0,OMA:SA:CTP20002,Europe/Paris,,OMA, +OMA:SP:20004,1,"EGLISE DE JONQUIERES",43.403924,5.054761,0,0,OMA:SA:CTP20004,Europe/Paris,,OMA, +OMA:SP:20005,1,"LE COURS",43.402953,5.054394,0,0,OMA:SA:CTP20005,Europe/Paris,,OMA, +OMA:SP:20006,1,"GENERAL LECLERC",43.402772,5.057634,0,0,OMA:SA:CTP20006,Europe/Paris,,OMA, +OMA:SP:20016,1,"SECURITE SOCIALE",43.408114,5.052161,0,0,OMA:SA:CTP20016,Europe/Paris,,OMA, +OMA:SP:20017,1,"COUBERTIN",43.406959,5.050987,0,0,OMA:SA:CTP20017,Europe/Paris,,OMA, +OMA:SP:20018,1,"CANTO PERDRIX",43.421467,5.050844,0,0,OMA:SA:CTP20018,Europe/Paris,,OMA, +OMA:SP:20019,1,"JOLIOT CURIE",43.410719,5.054516,0,0,OMA:SA:CTP20019,Europe/Paris,,OMA, +OMA:SP:20020,1,"GABRIEL PERI",43.410932,5.052121,0,0,OMA:SA:CTP20020,Europe/Paris,,OMA, +OMA:SP:20021,1,"GABRIEL PERI",43.41098,5.052691,0,0,OMA:SA:CTP20020,Europe/Paris,,OMA, +OMA:SP:20022,1,"LES CAPUCINS",43.411816,5.050917,0,0,OMA:SA:CTP20022,Europe/Paris,,OMA, +OMA:SP:20023,1,"LES CAPUCINS",43.411546,5.050942,0,0,OMA:SA:CTP20022,Europe/Paris,,OMA, +OMA:SP:20024,1,"NOTRE DAME",43.414443,5.050536,0,0,OMA:SA:CTP20024,Europe/Paris,,OMA, +OMA:SP:20025,1,"NOTRE DAME",43.414409,5.050078,0,0,OMA:SA:CTP20024,Europe/Paris,,OMA, +OMA:SP:20026,1,"LES MOULINS",43.416026,5.052289,0,0,OMA:SA:CTP20026,Europe/Paris,,OMA, +OMA:SP:20027,1,"LES MOULINS",43.415971,5.052323,0,0,OMA:SA:CTP20026,Europe/Paris,,OMA, +OMA:SP:20028,1,"LE LAVANDIN",43.418171,5.051033,0,0,OMA:SA:CTP20028,Europe/Paris,,OMA, +OMA:SP:20029,1,"LE LAVANDIN",43.418235,5.050975,0,0,OMA:SA:CTP20028,Europe/Paris,,OMA, +OMA:SP:20030,1,"LES 4 VENTS",43.418256,5.052641,0,0,OMA:SA:CTP20030,Europe/Paris,,OMA, +OMA:SP:20031,1,"LES 4 VENTS",43.418329,5.052608,0,0,OMA:SA:CTP20030,Europe/Paris,,OMA, +OMA:SP:20032,1,"LES VAGUES",43.418978,5.054328,0,0,OMA:SA:CTP20032,Europe/Paris,,OMA, +OMA:SP:20033,1,"LES VAGUES",43.419016,5.054232,0,0,OMA:SA:CTP20032,Europe/Paris,,OMA, +OMA:SP:20034,1,"CIMETIERE CANTO-PERDRIX",43.420372,5.057516,0,0,OMA:SA:CTP20034,Europe/Paris,,OMA, +OMA:SP:20035,1,"LYCEE P. LANGEVIN",43.42103,5.057831,0,0,OMA:SA:CTP20035,Europe/Paris,,OMA, +OMA:SP:20036,1,"CENTRE COMMERCIAL AUCHAN",43.422468,5.054654,0,0,OMA:SA:CTP20036,Europe/Paris,,OMA, +OMA:SP:20037,1,"HENRI WALLON",43.409011,5.053412,0,0,OMA:SA:CTP20037,Europe/Paris,,OMA, +OMA:SP:20038,1,"AUPECLE",43.399448,5.057437,0,0,OMA:SA:CTP20038,Europe/Paris,,OMA, +OMA:SP:20039,1,"AIGUES DOUCES",43.402406,4.975801,0,0,OMA:SA:CTP20039,Europe/Paris,,OMA, +OMA:SP:20040,1,"PARADIS",43.408022,5.053069,0,0,OMA:SA:CTP20040,Europe/Paris,,OMA, +OMA:SP:20041,1,"KENNEDY",43.408515,5.051698,0,0,OMA:SA:CTP20041,Europe/Paris,,OMA, +OMA:SP:20042,1,"COOPERATIVE",43.409217,5.048451,0,0,OMA:SA:CTP20042,Europe/Paris,,OMA, +OMA:SP:20043,1,"LES LAURIERS",43.411174,5.043573,0,0,OMA:SA:CTP20043,Europe/Paris,,OMA, +OMA:SP:20044,1,"LES LAURIERS",43.411087,5.043445,0,0,OMA:SA:CTP20043,Europe/Paris,,OMA, +OMA:SP:20045,1,"COLLEGE M. PAGNOL",43.412347,5.043061,0,0,OMA:SA:CTP20045,Europe/Paris,,OMA, +OMA:SP:20046,1,"HOPITAL",43.413356,5.040341,0,0,OMA:SA:CTP20046,Europe/Paris,,OMA, +OMA:SP:20048,1,"LYCEE JEAN LURCAT",43.417815,5.036905,0,0,OMA:SA:CTP20048,Europe/Paris,,OMA, +OMA:SP:20049,1,"ECOLE D'INFIRMIERE",43.413994,5.036873,0,0,OMA:SA:CTP20049,Europe/Paris,,OMA, +OMA:SP:20050,1,"ECOLE D'INFIRMIERE",43.413932,5.036833,0,0,OMA:SA:CTP20049,Europe/Paris,,OMA, +OMA:SP:20051,1,"LE MAROC",43.414542,5.032951,0,0,OMA:SA:CTP20051,Europe/Paris,,OMA, +OMA:SP:20052,1,"LE MAROC",43.41442,5.033168,0,0,OMA:SA:CTP20051,Europe/Paris,,OMA, +OMA:SP:20053,1,"L'ASTREE",43.414448,5.030949,0,0,OMA:SA:CTP20053,Europe/Paris,,OMA, +OMA:SP:20054,1,"L'ASTREE",43.414314,5.030585,0,0,OMA:SA:CTP20053,Europe/Paris,,OMA, +OMA:SP:20055,1,"LES CIGALES",43.413213,5.02999,0,0,OMA:SA:CTP20055,Europe/Paris,,OMA, +OMA:SP:20056,1,"LES CIGALES",43.413284,5.030055,0,0,OMA:SA:CTP20055,Europe/Paris,,OMA, +OMA:SP:20057,1,"GAMBACCINI",43.411015,5.029455,0,0,OMA:SA:CTP20057,Europe/Paris,,OMA, +OMA:SP:20058,1,"GAMBACCINI",43.41095,5.029514,0,0,OMA:SA:CTP20057,Europe/Paris,,OMA, +OMA:SP:20059,1,"PAUVRE HOMME",43.410894,5.027464,0,0,OMA:SA:CTP20059,Europe/Paris,,OMA, +OMA:SP:20060,1,"PAUVRE HOMME",43.410851,5.027375,0,0,OMA:SA:CTP20059,Europe/Paris,,OMA, +OMA:SP:20062,1,"MAS DE POUANE 1",43.411265,5.020858,0,0,OMA:SA:CTP20062,Europe/Paris,,OMA, +OMA:SP:20064,1,"MAS DE POUANE 2",43.410785,5.01774,0,0,OMA:SA:CTP20064,Europe/Paris,,OMA, +OMA:SP:20065,1,"MAS ST JEAN",43.409637,5.013295,0,0,OMA:SA:CTP20065,Europe/Paris,,OMA, +OMA:SP:20066,1,"GUY MOQUET",43.411303,5.016074,0,0,OMA:SA:CTP20066,Europe/Paris,,OMA, +OMA:SP:20067,1,"FOYER ST JEAN",43.410582,5.004545,0,0,OMA:SA:CTP20067,Europe/Paris,,OMA, +OMA:SP:20068,1,"FOYER ST JEAN",43.410513,5.004443,0,0,OMA:SA:CTP20067,Europe/Paris,,OMA, +OMA:SP:20069,1,"CARREFOUR 1",43.411118,5.001783,0,0,OMA:SA:CTP20069,Europe/Paris,,OMA, +OMA:SP:20070,1,"LES ACACIAS",43.411157,4.999478,0,0,OMA:SA:CTP20070,Europe/Paris,,OMA, +OMA:SP:20071,1,"LES ACACIAS",43.411107,4.999315,0,0,OMA:SA:CTP20070,Europe/Paris,,OMA, +OMA:SP:20072,1,"PAUL ELUARD",43.411418,4.993644,0,0,OMA:SA:CTP20072,Europe/Paris,,OMA, +OMA:SP:20073,1,"PAUL ELUARD",43.41136,4.993802,0,0,OMA:SA:CTP20072,Europe/Paris,,OMA, +OMA:SP:20074,1,"R ROLLAND",43.410461,4.99043,0,0,OMA:SA:CTP20074,Europe/Paris,,OMA, +OMA:SP:20076,1,"LOGIREM",43.408354,4.989531,0,0,OMA:SA:CTP20076,Europe/Paris,,OMA, +OMA:SP:20077,1,"LYCEE J MOULIN",43.407739,4.9915,0,0,OMA:SA:CTP20077,Europe/Paris,,OMA, +OMA:SP:20078,1,"LYCEE J MOULIN",43.407764,4.991588,0,0,OMA:SA:CTP20077,Europe/Paris,,OMA, +OMA:SP:20079,1,"LA GARE DE PORT DE BOUC",43.406527,4.984501,0,0,OMA:SA:CTP20079,Europe/Paris,,OMA, +OMA:SP:20080,1,"LA POSTE",43.40648,4.981995,0,0,OMA:SA:CTP20080,Europe/Paris,,OMA, +OMA:SP:20081,1,"A FRANCE",43.404536,4.980635,0,0,OMA:SA:CTP20081,Europe/Paris,,OMA, +OMA:SP:20082,1,"A FRANCE",43.404551,4.980722,0,0,OMA:SA:CTP20081,Europe/Paris,,OMA, +OMA:SP:20083,1,"LE LITTORAL",43.400844,4.977554,0,0,OMA:SA:CTP20083,Europe/Paris,,OMA, +OMA:SP:20084,1,"SEMAPHORE",43.402661,4.978995,0,0,OMA:SA:CTP20084,Europe/Paris,,OMA, +OMA:SP:20085,1,"SECURITE SOCIALE",43.405107,4.982647,0,0,OMA:SA:CTP20085,Europe/Paris,,OMA, +OMA:SP:20086,1,"RESPELIDO",43.406148,4.984532,0,0,OMA:SA:CTP20086,Europe/Paris,,OMA, +OMA:SP:20087,1,"HOTEL DE VILLE",43.406465,4.986261,0,0,OMA:SA:CTP20087,Europe/Paris,,OMA, +OMA:SP:20088,1,"MOULIN DE FRANCE",43.410112,5.043239,0,0,OMA:SA:CTP20088,Europe/Paris,,OMA, +OMA:SP:20089,1,"CDT L'HERMINIER",43.407014,5.046657,0,0,OMA:SA:CTP20089,Europe/Paris,,OMA, +OMA:SP:20090,1,"HOTEL DE VILLE MARTIGUES",43.406243,5.047977,0,0,OMA:SA:CTP20090,Europe/Paris,,OMA, +OMA:SP:20091,1,"THEATRE",43.406892,5.05151,0,0,OMA:SA:CTP20091,Europe/Paris,,OMA, +OMA:SP:20092,1,"R ROLLAND",43.410553,4.990611,0,0,OMA:SA:CTP20074,Europe/Paris,,OMA, +OMA:SP:20093,1,"ARC EN CIEL",43.382888,5.028035,0,0,OMA:SA:CTP20093,Europe/Paris,,OMA, +OMA:SP:20094,1,"L DEGUT",43.403151,5.050457,0,0,OMA:SA:CTP20094,Europe/Paris,,OMA, +OMA:SP:20095,1,"L DEGUT",43.403054,5.050737,0,0,OMA:SA:CTP20094,Europe/Paris,,OMA, +OMA:SP:20096,1,"FELIX ZIEM",43.401777,5.046434,0,0,OMA:SA:CTP20096,Europe/Paris,,OMA, +OMA:SP:20097,1,"FELIX ZIEM",43.401915,5.047032,0,0,OMA:SA:CTP20096,Europe/Paris,,OMA, +OMA:SP:20098,1,"CHAMBRE DE COMMERCE",43.400519,5.041775,0,0,OMA:SA:CTP20098,Europe/Paris,,OMA, +OMA:SP:20099,1,"CHAMBRE DE COMMERCE",43.400438,5.041758,0,0,OMA:SA:CTP20098,Europe/Paris,,OMA, +OMA:SP:20100,1,"JOSE NOBRE",43.399152,5.039268,0,0,OMA:SA:CTP20100,Europe/Paris,,OMA, +OMA:SP:20101,1,"JOSE NOBRE",43.399336,5.039795,0,0,OMA:SA:CTP20100,Europe/Paris,,OMA, +OMA:SP:20102,1,"F SAUVAGE",43.398116,5.033942,0,0,OMA:SA:CTP20102,Europe/Paris,,OMA, +OMA:SP:20103,1,"F SAUVAGE",43.398079,5.034014,0,0,OMA:SA:CTP20102,Europe/Paris,,OMA, +OMA:SP:20104,1,"GARE SNCF",43.392808,5.026158,0,0,OMA:SA:CTP20104,Europe/Paris,,OMA, +OMA:SP:20105,1,"GARE SNCF",43.392806,5.026257,0,0,OMA:SA:CTP20104,Europe/Paris,,OMA, +OMA:SP:20106,1,"LAVERA",43.388618,5.025789,0,0,OMA:SA:CTP20106,Europe/Paris,,OMA, +OMA:SP:20107,1,"LAVERA",43.38869,5.025805,0,0,OMA:SA:CTP20106,Europe/Paris,,OMA, +OMA:SP:20108,1,"LES LILAS",43.387543,5.025985,0,0,OMA:SA:CTP20108,Europe/Paris,,OMA, +OMA:SP:20109,1,"LES LILAS",43.387497,5.026057,0,0,OMA:SA:CTP20108,Europe/Paris,,OMA, +OMA:SP:20110,1,"LES TAMARIS",43.384667,5.026294,0,0,OMA:SA:CTP20110,Europe/Paris,,OMA, +OMA:SP:20111,1,"LES TAMARIS",43.385116,5.0256,0,0,OMA:SA:CTP20110,Europe/Paris,,OMA, +OMA:SP:20112,1,"LE CERCLE",43.367533,5.053036,0,0,OMA:SA:CTP20112,Europe/Paris,,OMA, +OMA:SP:20113,1,"LES AMANDIERS",43.366051,5.054013,0,0,OMA:SA:CTP20113,Europe/Paris,,OMA, +OMA:SP:20114,1,"LES TABOURETS",43.366046,5.059941,0,0,OMA:SA:CTP20114,Europe/Paris,,OMA, +OMA:SP:20115,1,"LA COURONNE",43.338887,5.053342,0,0,OMA:SA:CTP20115,Europe/Paris,,OMA, +OMA:SP:20116,1,"LA COURONNE",43.339015,5.053619,0,0,OMA:SA:CTP20115,Europe/Paris,,OMA, +OMA:SP:20117,1,"LES VAUCLUSIENS",43.33786,5.050596,0,0,OMA:SA:CTP20117,Europe/Paris,,OMA, +OMA:SP:20118,1,"LES VAUCLUSIENS",43.337487,5.050763,0,0,OMA:SA:CTP20117,Europe/Paris,,OMA, +OMA:SP:20119,1,"LE VERDON",43.335633,5.049037,0,0,OMA:SA:CTP20119,Europe/Paris,,OMA, +OMA:SP:20120,1,"LA PLAGE",43.332497,5.04395,0,0,OMA:SA:CTP20120,Europe/Paris,,OMA, +OMA:SP:20121,1,"BAOU TAILLA",43.332555,5.046305,0,0,OMA:SA:CTP20121,Europe/Paris,,OMA, +OMA:SP:20122,1,"LE PORT",43.331205,5.039578,0,0,OMA:SA:CTP20122,Europe/Paris,,OMA, +OMA:SP:20123,1,"L'EURRE",43.343498,5.058402,0,0,OMA:SA:CTP20123,Europe/Paris,,OMA, +OMA:SP:20124,1,"ST PIERRE ECOLE",43.369554,5.053477,0,0,OMA:SA:CTP20124,Europe/Paris,,OMA, +OMA:SP:20125,1,"LES ROCHES BLANCHES",43.370923,5.051952,0,0,OMA:SA:CTP20125,Europe/Paris,,OMA, +OMA:SP:20126,1,"ST PIERRE LA GRAVADE",43.372,5.050585,0,0,OMA:SA:CTP20126,Europe/Paris,,OMA, +OMA:SP:20127,1,"LA PLATRIERE",43.37046,5.043561,0,0,OMA:SA:CTP20127,Europe/Paris,,OMA, +OMA:SP:20128,1,"LES CHEILLANS",43.372305,5.040271,0,0,OMA:SA:CTP20128,Europe/Paris,,OMA, +OMA:SP:20129,1,"LES ESPANETS",43.373781,5.036618,0,0,OMA:SA:CTP20129,Europe/Paris,,OMA, +OMA:SP:20130,1,"LES OLIVES",43.376774,5.030559,0,0,OMA:SA:CTP20130,Europe/Paris,,OMA, +OMA:SP:20131,1,"G EIFFEL",43.395074,5.057695,0,0,OMA:SA:CTP20131,Europe/Paris,,OMA, +OMA:SP:20132,1,"BOUDEME",43.395803,5.057631,0,0,OMA:SA:CTP20132,Europe/Paris,,OMA, +OMA:SP:20133,1,"S DE LUCA",43.395057,5.058706,0,0,OMA:SA:CTP20133,Europe/Paris,,OMA, +OMA:SP:20134,1,"LES 2 PORTES",43.396396,5.05909,0,0,OMA:SA:CTP20134,Europe/Paris,,OMA, +OMA:SP:20135,1,"G PHILIPPE",43.397121,5.059951,0,0,OMA:SA:CTP20135,Europe/Paris,,OMA, +OMA:SP:20136,1,"E HERRIOT",43.399292,5.060473,0,0,OMA:SA:CTP20136,Europe/Paris,,OMA, +OMA:SP:20137,1,"AUPECLE",43.399557,5.057489,0,0,OMA:SA:CTP20038,Europe/Paris,,OMA, +OMA:SP:20138,1,"CALMETTE ET GUERIN",43.399575,5.047131,0,0,OMA:SA:CTP20138,Europe/Paris,,OMA, +OMA:SP:20139,1,"CALMETTE ET GUERIN",43.400184,5.045446,0,0,OMA:SA:CTP20138,Europe/Paris,,OMA, +OMA:SP:20140,1,"FONT SARADE",43.399217,5.047768,0,0,OMA:SA:CTP20140,Europe/Paris,,OMA, +OMA:SP:20141,1,"PLACE DU 8 MAI",43.399266,5.056193,0,0,OMA:SA:CTP20141,Europe/Paris,,OMA, +OMA:SP:20142,1,"BELLEVUE",43.397181,5.057561,0,0,OMA:SA:CTP20142,Europe/Paris,,OMA, +OMA:SP:20143,1,"LE BATEAU BLANC",43.40662,5.046219,0,0,OMA:SA:CTP20143,Europe/Paris,,OMA, +OMA:SP:20144,1,"LE BATEAU BLANC",43.40653,5.046239,0,0,OMA:SA:CTP20143,Europe/Paris,,OMA, +OMA:SP:20145,1,"MATISSE",43.405659,5.04404,0,0,OMA:SA:CTP20145,Europe/Paris,,OMA, +OMA:SP:20146,1,"MATISSE",43.405657,5.044139,0,0,OMA:SA:CTP20145,Europe/Paris,,OMA, +OMA:SP:20147,1,"SEURAT",43.405317,5.04189,0,0,OMA:SA:CTP20147,Europe/Paris,,OMA, +OMA:SP:20148,1,"SEURAT",43.405089,5.04204,0,0,OMA:SA:CTP20147,Europe/Paris,,OMA, +OMA:SP:20149,1,"J RENOIR",43.406859,5.039595,0,0,OMA:SA:CTP20149,Europe/Paris,,OMA, +OMA:SP:20150,1,"J RENOIR",43.406889,5.039461,0,0,OMA:SA:CTP20149,Europe/Paris,,OMA, +OMA:SP:20151,1,"E DEGAS",43.408107,5.038223,0,0,OMA:SA:CTP20151,Europe/Paris,,OMA, +OMA:SP:20152,1,"E DEGAS",43.408256,5.037996,0,0,OMA:SA:CTP20151,Europe/Paris,,OMA, +OMA:SP:20153,1,"LES ASPHODELES",43.410092,5.041166,0,0,OMA:SA:CTP20153,Europe/Paris,,OMA, +OMA:SP:20154,1,"LES ASPHODELES",43.410155,5.041539,0,0,OMA:SA:CTP20153,Europe/Paris,,OMA, +OMA:SP:20155,1,"DI LORTO",43.413387,5.046736,0,0,OMA:SA:CTP20155,Europe/Paris,,OMA, +OMA:SP:20156,1,"DI LORTO",43.413594,5.046401,0,0,OMA:SA:CTP20155,Europe/Paris,,OMA, +OMA:SP:20157,1,"LA COLLINE",43.413726,5.043619,0,0,OMA:SA:CTP20157,Europe/Paris,,OMA, +OMA:SP:20158,1,"LA COLLINE",43.413676,5.043814,0,0,OMA:SA:CTP20157,Europe/Paris,,OMA, +OMA:SP:20159,1,"HOPITAL",43.413435,5.0405,0,0,OMA:SA:CTP20046,Europe/Paris,,OMA, +OMA:SP:20160,1,"BRISE LAME",43.418256,5.036876,0,0,OMA:SA:CTP20160,Europe/Paris,,OMA, +OMA:SP:20161,1,"HOPITAL DU VALLON",43.421531,5.036796,0,0,OMA:SA:CTP20161,Europe/Paris,,OMA, +OMA:SP:20162,1,"HOPITAL DU VALLON",43.421344,5.036368,0,0,OMA:SA:CTP20161,Europe/Paris,,OMA, +OMA:SP:20163,1,"HAMEAU DU VALLON",43.424233,5.039872,0,0,OMA:SA:CTP20163,Europe/Paris,,OMA, +OMA:SP:20164,1,"HAMEAU DU VALLON",43.424341,5.039853,0,0,OMA:SA:CTP20163,Europe/Paris,,OMA, +OMA:SP:20165,1,"JULIEN OLIVE",43.424351,5.043036,0,0,OMA:SA:CTP20165,Europe/Paris,,OMA, +OMA:SP:20166,1,"JULIEN OLIVE",43.424382,5.043235,0,0,OMA:SA:CTP20165,Europe/Paris,,OMA, +OMA:SP:20167,1,"GINNOUX",43.42465,5.047269,0,0,OMA:SA:CTP20167,Europe/Paris,,OMA, +OMA:SP:20168,1,"GINNOUX",43.424812,5.04724,0,0,OMA:SA:CTP20167,Europe/Paris,,OMA, +OMA:SP:20169,1,"MONTEE EIFFEL",43.396509,5.055269,0,0,OMA:SA:CTP20169,Europe/Paris,,OMA, +OMA:SP:20170,1,"LES VIGNEROS",43.424798,5.049941,0,0,OMA:SA:CTP20170,Europe/Paris,,OMA, +OMA:SP:20171,1,"F. VILLON",43.422142,5.049675,0,0,OMA:SA:CTP20171,Europe/Paris,,OMA, +OMA:SP:20172,1,"E. POTTIER",43.421671,5.04468,0,0,OMA:SA:CTP20172,Europe/Paris,,OMA, +OMA:SP:20173,1,"BRISE LAME",43.418245,5.036815,0,0,OMA:SA:CTP20160,Europe/Paris,,OMA, +OMA:SP:20174,1,"LYCEE JEAN LURCAT",43.417822,5.036977,0,0,OMA:SA:CTP20048,Europe/Paris,,OMA, +OMA:SP:20175,1,"E. POTTIER",43.421241,5.044527,0,0,OMA:SA:CTP20172,Europe/Paris,,OMA, +OMA:SP:20176,1,"F. VILLON",43.422023,5.049271,0,0,OMA:SA:CTP20171,Europe/Paris,,OMA, +OMA:SP:20177,1,"CENTRE COMMERCIAL AUCHAN",43.422357,5.054718,0,0,OMA:SA:CTP20036,Europe/Paris,,OMA, +OMA:SP:20178,1,"OFFENBACH",43.42307,5.056604,0,0,OMA:SA:CTP20178,Europe/Paris,,OMA, +OMA:SP:20179,1,"OFFENBACH",43.423226,5.056424,0,0,OMA:SA:CTP20178,Europe/Paris,,OMA, +OMA:SP:20180,1,"BASE NAUTIQUE",43.42429,5.059624,0,0,OMA:SA:CTP20180,Europe/Paris,,OMA, +OMA:SP:20181,1,"BASE NAUTIQUE",43.424344,5.05932,0,0,OMA:SA:CTP20180,Europe/Paris,,OMA, +OMA:SP:20182,1,"BELVEDERE",43.42716,5.059597,0,0,OMA:SA:CTP20182,Europe/Paris,,OMA, +OMA:SP:20183,1,"BELVEDERE",43.427072,5.059293,0,0,OMA:SA:CTP20182,Europe/Paris,,OMA, +OMA:SP:20184,1,"TOURRET DE VALLIER",43.428396,5.057432,0,0,OMA:SA:CTP20184,Europe/Paris,,OMA, +OMA:SP:20185,1,"TOURRET DE VALLIER",43.428169,5.057585,0,0,OMA:SA:CTP20184,Europe/Paris,,OMA, +OMA:SP:20186,1,"ERIK SATIE",43.429289,5.056186,0,0,OMA:SA:CTP20186,Europe/Paris,,OMA, +OMA:SP:20187,1,"ERIK SATIE",43.429065,5.056362,0,0,OMA:SA:CTP20186,Europe/Paris,,OMA, +OMA:SP:20188,1,"GABRIEL FAURE",43.428668,5.054128,0,0,OMA:SA:CTP20188,Europe/Paris,,OMA, +OMA:SP:20189,1,"GABRIEL FAURE",43.428486,5.054276,0,0,OMA:SA:CTP20188,Europe/Paris,,OMA, +OMA:SP:20190,1,"LE GRAND GOUR",43.4278,5.051648,0,0,OMA:SA:CTP20190,Europe/Paris,,OMA, +OMA:SP:20191,1,"LE GRAND GOUR",43.427591,5.051821,0,0,OMA:SA:CTP20190,Europe/Paris,,OMA, +OMA:SP:20192,1,"CIMETIERE DE REVEILLA",43.422257,5.018178,0,0,OMA:SA:CTP20192,Europe/Paris,,OMA, +OMA:SP:20193,1,"G COUTHON",43.427534,5.040892,0,0,OMA:SA:CTP20193,Europe/Paris,,OMA, +OMA:SP:20194,1,"LA PISCINE",43.409965,5.056602,0,0,OMA:SA:CTP20194,Europe/Paris,,OMA, +OMA:SP:20195,1,"S ALLENDE",43.413198,5.057804,0,0,OMA:SA:CTP20195,Europe/Paris,,OMA, +OMA:SP:20196,1,"FLEMING",43.419015,5.058561,0,0,OMA:SA:CTP20196,Europe/Paris,,OMA, +OMA:SP:20197,1,"BARBOUSSADE",43.424747,5.050913,0,0,OMA:SA:CTP20197,Europe/Paris,,OMA, +OMA:SP:20198,1,"BARBOUSSADE",43.424678,5.051872,0,0,OMA:SA:CTP20197,Europe/Paris,,OMA, +OMA:SP:20199,1,"S GUITRY",43.427181,5.044218,0,0,OMA:SA:CTP20199,Europe/Paris,,OMA, +OMA:SP:20200,1,"LES TERRASSES BLEUES",43.428519,5.042863,0,0,OMA:SA:CTP20200,Europe/Paris,,OMA, +OMA:SP:20201,1,"DROITS DE L'HOMME",43.428577,5.039473,0,0,OMA:SA:CTP20201,Europe/Paris,,OMA, +OMA:SP:20202,1,"ALLEE VIALA",43.426479,5.044234,0,0,OMA:SA:CTP20202,Europe/Paris,,OMA, +OMA:SP:20203,1,"LYCEE P. LANGEVIN",43.420977,5.057766,0,0,OMA:SA:CTP20035,Europe/Paris,,OMA, +OMA:SP:20204,1,"FLEMING",43.41917,5.05847,0,0,OMA:SA:CTP20196,Europe/Paris,,OMA, +OMA:SP:20205,1,"LA POSTE",43.413436,5.056939,0,0,OMA:SA:CTP20205,Europe/Paris,,OMA, +OMA:SP:20206,1,"CHEMIN DE LA RODE",43.409671,5.055762,0,0,OMA:SA:CTP20206,Europe/Paris,,OMA, +OMA:SP:20207,1,"MOULIN DE FRANCE",43.410317,5.042262,0,0,OMA:SA:CTP20088,Europe/Paris,,OMA, +OMA:SP:20209,1,"MAIRIE ANNEXE CROIX-SAINTE",43.410578,5.029657,0,0,OMA:SA:CTP20209,Europe/Paris,,OMA, +OMA:SP:20210,1,"MAIRIE ANNEXE CROIX-SAINTE",43.410384,5.030967,0,0,OMA:SA:CTP20209,Europe/Paris,,OMA, +OMA:SP:20213,1,"LES PLATANES",43.410583,5.021517,0,0,OMA:SA:CTP20213,Europe/Paris,,OMA, +OMA:SP:20214,1,"LES PLATANES",43.410563,5.021602,0,0,OMA:SA:CTP20213,Europe/Paris,,OMA, +OMA:SP:20215,1,"GARE DE CROIX SAINTE",43.410667,5.019621,0,0,OMA:SA:CTP20215,Europe/Paris,,OMA, +OMA:SP:20216,1,"DAUMIER",43.411205,5.013899,0,0,OMA:SA:CTP20216,Europe/Paris,,OMA, +OMA:SP:20217,1,"ST JEAN",43.411356,5.011069,0,0,OMA:SA:CTP20217,Europe/Paris,,OMA, +OMA:SP:20218,1,"CARREFOUR 2",43.411782,5.000408,0,0,OMA:SA:CTP20218,Europe/Paris,,OMA, +OMA:SP:20219,1,"BERGERIE BAS",43.413843,4.994175,0,0,OMA:SA:CTP20219,Europe/Paris,,OMA, +OMA:SP:20220,1,"19 mars 62",43.414147,4.990474,0,0,OMA:SA:CTP20220,Europe/Paris,,OMA, +OMA:SP:20221,1,"GRIMAU",43.415959,4.987899,0,0,OMA:SA:CTP20221,Europe/Paris,,OMA, +OMA:SP:20222,1,"GRIMAU",43.416033,4.987691,0,0,OMA:SA:CTP20221,Europe/Paris,,OMA, +OMA:SP:20223,1,"CIMETIERE PORT DE BOUC",43.4138,4.986008,0,0,OMA:SA:CTP20223,Europe/Paris,,OMA, +OMA:SP:20224,1,"CIMETIERE PORT DE BOUC",43.413138,4.985497,0,0,OMA:SA:CTP20223,Europe/Paris,,OMA, +OMA:SP:20225,1,"LANGEVIN",43.411863,4.982515,0,0,OMA:SA:CTP20225,Europe/Paris,,OMA, +OMA:SP:20226,1,"LANGEVIN",43.41191,4.982418,0,0,OMA:SA:CTP20225,Europe/Paris,,OMA, +OMA:SP:20227,1,"STADE F BAUDILLON",43.412624,4.978961,0,0,OMA:SA:CTP20227,Europe/Paris,,OMA, +OMA:SP:20228,1,"STADE F BAUDILLON",43.412738,4.979102,0,0,OMA:SA:CTP20227,Europe/Paris,,OMA, +OMA:SP:20229,1,"HLM J JAURES",43.410565,4.978977,0,0,OMA:SA:CTP20229,Europe/Paris,,OMA, +OMA:SP:20230,1,"HLM J JAURES",43.410381,4.979116,0,0,OMA:SA:CTP20229,Europe/Paris,,OMA, +OMA:SP:20231,1,"LYCEE MONGRAND",43.408832,4.9796,0,0,OMA:SA:CTP20231,Europe/Paris,,OMA, +OMA:SP:20232,1,"P ET M CURIE",43.409341,4.979759,0,0,OMA:SA:CTP20232,Europe/Paris,,OMA, +OMA:SP:20233,1,"OPOFA",43.409358,4.982695,0,0,OMA:SA:CTP20233,Europe/Paris,,OMA, +OMA:SP:20234,1,"OPOFA",43.409442,4.9826,0,0,OMA:SA:CTP20233,Europe/Paris,,OMA, +OMA:SP:20235,1,"J FERRY",43.409537,4.98459,0,0,OMA:SA:CTP20235,Europe/Paris,,OMA, +OMA:SP:20236,1,"J FERRY",43.409584,4.984482,0,0,OMA:SA:CTP20235,Europe/Paris,,OMA, +OMA:SP:20237,1,"DANTON",43.410432,4.984767,0,0,OMA:SA:CTP20237,Europe/Paris,,OMA, +OMA:SP:20238,1,"DANTON",43.410597,4.984639,0,0,OMA:SA:CTP20237,Europe/Paris,,OMA, +OMA:SP:20239,1,"SALENGRO",43.409405,4.986274,0,0,OMA:SA:CTP20239,Europe/Paris,,OMA, +OMA:SP:20240,1,"SALENGRO",43.408729,4.986354,0,0,OMA:SA:CTP20239,Europe/Paris,,OMA, +OMA:SP:20241,1,"NICOTRA",43.406605,4.97983,0,0,OMA:SA:CTP20241,Europe/Paris,,OMA, +OMA:SP:20242,1,"LES GALETS",43.404712,4.977856,0,0,OMA:SA:CTP20242,Europe/Paris,,OMA, +OMA:SP:20243,1,"LE LITTORAL",43.400476,4.977895,0,0,OMA:SA:CTP20083,Europe/Paris,,OMA, +OMA:SP:20244,1,"PILOTAGE",43.397933,4.981132,0,0,OMA:SA:CTP20244,Europe/Paris,,OMA, +OMA:SP:20245,1,"LA CARAVELLE",43.399397,4.981557,0,0,OMA:SA:CTP20245,Europe/Paris,,OMA, +OMA:SP:20246,1,"REPUBLIQUE",43.402104,4.981891,0,0,OMA:SA:CTP20246,Europe/Paris,,OMA, +OMA:SP:20247,1,"TURENNE",43.402637,4.980683,0,0,OMA:SA:CTP20247,Europe/Paris,,OMA, +OMA:SP:20248,1,"19 mars 62",43.41388,4.990462,0,0,OMA:SA:CTP20220,Europe/Paris,,OMA, +OMA:SP:20249,1,"BERGERIE BAS",43.413644,4.994167,0,0,OMA:SA:CTP20219,Europe/Paris,,OMA, +OMA:SP:20250,1,"LES AMARANTES",43.417021,4.987191,0,0,OMA:SA:CTP20250,Europe/Paris,,OMA, +OMA:SP:20251,1,"LES AMARANTES",43.416814,4.987085,0,0,OMA:SA:CTP20250,Europe/Paris,,OMA, +OMA:SP:20253,1,"NERUDA",43.417147,4.983618,0,0,OMA:SA:CTP20253,Europe/Paris,,OMA, +OMA:SP:20254,1,"AIGUES DOUCES",43.402408,4.975733,0,0,OMA:SA:CTP20039,Europe/Paris,,OMA, +OMA:SP:20255,1,"PARKING GOUIN",43.468316,5.020274,0,0,OMA:SA:CTP20255,Europe/Paris,,OMA, +OMA:SP:20256,1,"GENDARMERIE",43.42471,5.053823,0,0,OMA:SA:CTP20256,Europe/Paris,,OMA, +OMA:SP:20257,1,"GENDARMERIE",43.424888,5.053511,0,0,OMA:SA:CTP20256,Europe/Paris,,OMA, +OMA:SP:20258,1,"ESCAILLON",43.42963,5.047665,0,0,OMA:SA:CTP20258,Europe/Paris,,OMA, +OMA:SP:20259,1,"ESCAILLON",43.429598,5.047516,0,0,OMA:SA:CTP20258,Europe/Paris,,OMA, +OMA:SP:20260,1,"Z.A LES ETANGS",43.438342,5.034467,0,0,OMA:SA:CTP20260,Europe/Paris,,OMA, +OMA:SP:20261,1,"Z.A LES ETANGS",43.438253,5.034413,0,0,OMA:SA:CTP20260,Europe/Paris,,OMA, +OMA:SP:20263,1,"MAIRIE ST MITRE LES REMPARTS",43.451898,5.014037,0,0,OMA:SA:CTP20263,Europe/Paris,,OMA, +OMA:SP:20265,1,"LES PLAINES D'ARNETTES",43.453034,5.020088,0,0,OMA:SA:CTP20265,Europe/Paris,,OMA, +OMA:SP:20266,1,"FONTAINE DU LOUP",43.456381,5.020023,0,0,OMA:SA:CTP20266,Europe/Paris,,OMA, +OMA:SP:20267,1,"BD JEAN ROSTAND",43.458107,5.020042,0,0,OMA:SA:CTP20267,Europe/Paris,,OMA, +OMA:SP:20268,1,"LES MAGNANS",43.45949,5.015404,0,0,OMA:SA:CTP20268,Europe/Paris,,OMA, +OMA:SP:20269,1,"FOYER DU 3ème AGE",43.455785,5.011787,0,0,OMA:SA:CTP20269,Europe/Paris,,OMA, +OMA:SP:20270,1,"FOYER DU 3ème AGE",43.455318,5.011753,0,0,OMA:SA:CTP20269,Europe/Paris,,OMA, +OMA:SP:20272,1,"CIMETIERE ST MITRE",43.457885,5.007972,0,0,OMA:SA:CTP20272,Europe/Paris,,OMA, +OMA:SP:20273,1,"CIMETIERE ST MITRE",43.458227,5.007593,0,0,OMA:SA:CTP20272,Europe/Paris,,OMA, +OMA:SP:20274,1,"VARAGE",43.468739,5.000081,0,0,OMA:SA:CTP20274,Europe/Paris,,OMA, +OMA:SP:20275,1,"LES ILES D'OR",43.467697,5.003899,0,0,OMA:SA:CTP20275,Europe/Paris,,OMA, +OMA:SP:20276,1,"LES ILES D'OR",43.467803,5.003953,0,0,OMA:SA:CTP20275,Europe/Paris,,OMA, +OMA:SP:20277,1,"SALLE POLYVALENTE",43.467903,5.008279,0,0,OMA:SA:CTP20277,Europe/Paris,,OMA, +OMA:SP:20278,1,"SALLE POLYVALENTE",43.468051,5.008496,0,0,OMA:SA:CTP20277,Europe/Paris,,OMA, +OMA:SP:20279,1,"ALLEE LAVOISIER",43.469406,5.015856,0,0,OMA:SA:CTP20279,Europe/Paris,,OMA, +OMA:SP:20280,1,"ALLEE LAVOISIER",43.469509,5.015675,0,0,OMA:SA:CTP20279,Europe/Paris,,OMA, +OMA:SP:20281,1,"ALLEE VIVALDI",43.469179,5.00177,0,0,OMA:SA:CTP20281,Europe/Paris,,OMA, +OMA:SP:20282,1,"ALLEE J.S. BACH",43.468734,5.0027,0,0,OMA:SA:CTP20282,Europe/Paris,,OMA, +OMA:SP:20283,1,"RANQUET",43.476027,4.99716,0,0,OMA:SA:CTP20283,Europe/Paris,,OMA, +OMA:SP:20285,1,"E ZOLA",43.399478,5.059545,0,0,OMA:SA:CTP20285,Europe/Paris,,OMA, +OMA:SP:20286,1,"COLLEGE PAGNOL",43.412377,5.042581,0,0,OMA:SA:CTP20286,Europe/Paris,,OMA, +OMA:SP:20287,1,"MANOUCHIAN",43.411001,5.00216,0,0,OMA:SA:CTP20287,Europe/Paris,,OMA, +OMA:SP:20288,1,"CAMPEOU",43.410475,5.008512,0,0,OMA:SA:CTP20288,Europe/Paris,,OMA, +OMA:SP:20289,1,"INEOS",43.384341,5.02136,0,0,OMA:SA:CTP20289,Europe/Paris,,OMA, +OMA:SP:20290,1,"GEINE VERTE",43.384613,5.026304,0,0,OMA:SA:CTP20290,Europe/Paris,,OMA, +OMA:SP:20291,1,"CORNICHE BOUDEME",43.395831,5.057608,0,0,OMA:SA:CTP20291,Europe/Paris,,OMA, +OMA:SP:20292,1,"CLEMENT MILLE",43.411224,5.001849,0,0,OMA:SA:CTP20292,Europe/Paris,,OMA, +OMA:SP:20293,1,"SAINT JEAN",43.411419,5.01106,0,0,OMA:SA:CTP20293,Europe/Paris,,OMA, +OMA:SP:20294,1,"LES BRUYERES",43.408415,5.024449,0,0,OMA:SA:CTP20294,Europe/Paris,,OMA, +OMA:SP:20295,1,"GARDIANS",43.412346,5.025842,0,0,OMA:SA:CTP20295,Europe/Paris,,OMA, +OMA:SP:20296,1,"COUDOULIERE",43.41368,5.02498,0,0,OMA:SA:CTP20296,Europe/Paris,,OMA, +OMA:SP:20297,1,"DAUGEY",43.413848,5.027257,0,0,OMA:SA:CTP20297,Europe/Paris,,OMA, +OMA:SP:20298,1,"DULLIN",43.42985,5.04643,0,0,OMA:SA:CTP20298,Europe/Paris,,OMA, +OMA:SP:20299,1,"CINEMA",43.430099,5.049045,0,0,OMA:SA:CTP20299,Europe/Paris,,OMA, +OMA:SP:20302,1,"FIGUEROLLES",43.431447,5.047998,0,0,OMA:SA:CTP20302,Europe/Paris,,OMA, +OMA:SP:20303,1,"DUMAS - ARAGON",43.433252,5.045604,0,0,OMA:SA:CTP20303,Europe/Paris,,OMA, +OMA:SP:20304,1,"DUMAS - GRAND PARC",43.433668,5.048362,0,0,OMA:SA:CTP20304,Europe/Paris,,OMA, +OMA:SP:20305,1,"AVENUE GRAND PARC",43.430817,5.048746,0,0,OMA:SA:CTP20305,Europe/Paris,,OMA, +OMA:SP:20306,1,"COLLEGE WALLON",43.409482,5.052188,0,0,OMA:SA:CTP20306,Europe/Paris,,OMA, +OMA:SP:20307,1,"LE TEMPLE",43.398664,5.052243,0,0,OMA:SA:CTP20307,Europe/Paris,,OMA, +OMA:SP:20308,1,"PLAGE DU VERDON",43.335606,5.049024,0,0,OMA:SA:CTP20308,Europe/Paris,,OMA, +OMA:SP:20310,1,"LES PIGNES",43.491971,4.993136,0,0,OMA:SA:CTP20310,Europe/Paris,,OMA, +OMA:SP:20311,1,"QUATRE VENTS",43.495059,4.991896,0,0,OMA:SA:CTP20311,Europe/Paris,,OMA, +OMA:SP:20312,1,"LES HEURES CLAIRES",43.497187,4.998616,0,0,OMA:SA:CTP20312,Europe/Paris,,OMA, +OMA:SP:20313,1,"LA SALLE",43.504441,4.991047,0,0,OMA:SA:CTP20313,Europe/Paris,,OMA, +OMA:SP:20314,1,"GARE ROUTIERE",43.509301,4.988703,0,0,OMA:SA:CTP20314,Europe/Paris,,OMA, +OMA:SP:20315,1,"COLLE D'ARNAUD",43.443337,5.025286,0,0,OMA:SA:CTP20315,Europe/Paris,,OMA, +OMA:SP:20316,1,"CIMETIERE ST JOSEPH",43.409578,5.051971,0,0,OMA:SA:CTP20316,Europe/Paris,,OMA, +OMA:SP:20317,1,"STE ANNE",43.399317,5.063064,0,0,OMA:SA:CTP20317,Europe/Paris,,OMA, +OMA:SP:20319,1,"CROIX DE MALTE",43.398358,5.070022,0,0,OMA:SA:CTP20319,Europe/Paris,,OMA, +OMA:SP:20320,1,"ST LAZARE",43.398581,5.067986,0,0,OMA:SA:CTP20320,Europe/Paris,,OMA, +OMA:SP:20321,1,"CEZANNE",43.398992,5.064898,0,0,OMA:SA:CTP20321,Europe/Paris,,OMA, +OMA:SP:20322,1,"MANOIR STE ANNE",43.399552,5.063013,0,0,OMA:SA:CTP20322,Europe/Paris,,OMA, +OMA:SP:20323,1,"FREDERIC MISTRAL",43.401126,5.059068,0,0,OMA:SA:CTP20323,Europe/Paris,,OMA, +OMA:SP:20324,1,"EGLISE DE JONQUIERES",43.403982,5.054937,0,0,OMA:SA:CTP20004,Europe/Paris,,OMA, +OMA:SP:20325,1,"E. ZOLA",43.39944,5.059604,0,0,OMA:SA:CTP20325,Europe/Paris,,OMA, +OMA:SP:20326,1,"PARC DE FIGUEROLLES",43.435381,5.042089,0,0,OMA:SA:CTP20326,Europe/Paris,,OMA, +OMA:SP:20327,1,"GEINEVERTE",43.384683,5.027084,0,0,OMA:SA:CTP20327,Europe/Paris,,OMA, +OMA:SP:20328,1,"RTE ST PIERRE",43.395416,5.052311,0,0,OMA:SA:CTP20328,Europe/Paris,,OMA, +OMA:SP:20329,1,"LES VENTRONS",43.376888,5.064955,0,0,OMA:SA:CTP20329,Europe/Paris,,OMA, +OMA:SP:20330,1,"PLAGE DE CARRO",43.332461,5.043948,0,0,OMA:SA:CTP20330,Europe/Paris,,OMA, +OMA:SP:20331,1,"RTE LES BASTIDES",43.339349,5.065301,0,0,OMA:SA:CTP20331,Europe/Paris,,OMA, +OMA:SP:20332,1,"CH DE STE CROIX",43.335153,5.066961,0,0,OMA:SA:CTP20332,Europe/Paris,,OMA, +OMA:SP:20333,1,"THALASSOTHERAPIE",43.334284,5.072845,0,0,OMA:SA:CTP20333,Europe/Paris,,OMA, +OMA:SP:20334,1,"LES ROUGES",43.339632,5.083152,0,0,OMA:SA:CTP20334,Europe/Paris,,OMA, +OMA:SP:20335,1,"LES ROUSSURES",43.340704,5.07851,0,0,OMA:SA:CTP20335,Europe/Paris,,OMA, +OMA:SP:20336,1,"LES CHAPPAS",43.340297,5.070471,0,0,OMA:SA:CTP20336,Europe/Paris,,OMA, +OMA:SP:20337,1,"LES BASTIDES",43.339534,5.067207,0,0,OMA:SA:CTP20337,Europe/Paris,,OMA, +OMA:SP:20338,1,"LA SAULCE",43.334008,5.069912,0,0,OMA:SA:CTP20338,Europe/Paris,,OMA, +OMA:SP:20339,1,"PLAGE DE LA COURONNE",43.335969,5.049977,0,0,OMA:SA:CTP20339,Europe/Paris,,OMA, +OMA:SP:20340,1,"SALICORNES",43.437968,5.036831,0,0,OMA:SA:CTP20340,Europe/Paris,,OMA, +OMA:SP:20341,1,"PEUPLIERS",43.440866,5.036708,0,0,OMA:SA:CTP20341,Europe/Paris,,OMA, +OMA:SP:20342,1,"ROSEAUX",43.440986,5.035147,0,0,OMA:SA:CTP20342,Europe/Paris,,OMA, +OMA:SP:20343,1,"SORBIERS",43.437888,5.036445,0,0,OMA:SA:CTP20343,Europe/Paris,,OMA, +OMA:SP:20344,1,"MASSANE PLAGE",43.468312,5.02041,0,0,OMA:SA:CTP20344,Europe/Paris,,OMA, +OMA:SP:20345,1,"THIMONIER",43.394879,5.031804,0,0,OMA:SA:CTP20345,Europe/Paris,,OMA, +OMA:SP:20346,1,"VAUCANSON",43.396952,5.033394,0,0,OMA:SA:CTP20346,Europe/Paris,,OMA, +OMA:SP:20347,1,"EDISON",43.392754,5.032987,0,0,OMA:SA:CTP20347,Europe/Paris,,OMA, +OMA:SP:20348,1,"ULYSSE",43.392952,5.030111,0,0,OMA:SA:CTP20348,Europe/Paris,,OMA, +OMA:SP:20349,1,"CARRE D'AS",43.395633,5.030052,0,0,OMA:SA:CTP20349,Europe/Paris,,OMA, +OMA:SP:20350,1,"THIMONIER HAUT",43.390443,5.033359,0,0,OMA:SA:CTP20350,Europe/Paris,,OMA, +OMA:SP:20351,1,"PK MISTRAL",43.401153,5.059069,0,0,OMA:SA:CTP20351,Europe/Paris,,OMA, +OMA:SP:20354,1,"PK GOUIN",43.468792,5.018494,0,0,OMA:SA:CTP20354,Europe/Paris,,OMA, +OMA:SP:20355,1,"LES MAGNANS",43.459405,5.014845,0,0,OMA:SA:CTP20268,Europe/Paris,,OMA, +OMA:SP:20356,1,"ROSTAND",43.458448,5.019676,0,0,OMA:SA:CTP20356,Europe/Paris,,OMA, +OMA:SP:20358,1,"PLAINE ARNETTES",43.452328,5.020253,0,0,OMA:SA:CTP20358,Europe/Paris,,OMA, +OMA:SP:20359,1,"ROCALEDES",43.449534,5.020541,0,0,OMA:SA:CTP20359,Europe/Paris,,OMA, +OMA:SP:20360,1,"ROSEAUX",43.440643,5.035205,0,0,OMA:SA:CTP20342,Europe/Paris,,OMA, +OMA:SP:20361,1,"PEUPLIERS",43.440507,5.036691,0,0,OMA:SA:CTP20341,Europe/Paris,,OMA, +OMA:SP:20362,1,"SALICORNES",43.437907,5.036766,0,0,OMA:SA:CTP20340,Europe/Paris,,OMA, +OMA:SP:20363,1,"FELIBRES",43.41513,4.999539,0,0,OMA:SA:CTP20363,Europe/Paris,,OMA, +OMA:SP:20364,1,"FELIBRES",43.415112,4.999169,0,0,OMA:SA:CTP20363,Europe/Paris,,OMA, +OMA:SP:20365,1,"PREVERT",43.419739,5.001875,0,0,OMA:SA:CTP20365,Europe/Paris,,OMA, +OMA:SP:20366,1,"PREVERT",43.419393,5.001674,0,0,OMA:SA:CTP20365,Europe/Paris,,OMA, +OMA:SP:20367,1,"LES TERMES",43.42074,5.000676,0,0,OMA:SA:CTP20367,Europe/Paris,,OMA, +OMA:SP:20368,1,"LES TERMES",43.420914,5.000536,0,0,OMA:SA:CTP20367,Europe/Paris,,OMA, +OMA:SP:20371,1,"LES FABRIQUES",43.418623,5.004463,0,0,OMA:SA:CTP20371,Europe/Paris,,OMA, +OMA:SP:20372,1,"LES VIGNOBLES",43.417912,5.005195,0,0,OMA:SA:CTP20372,Europe/Paris,,OMA, +OMA:SP:20373,1,"LES SOURCES",43.417136,5.007157,0,0,OMA:SA:CTP20373,Europe/Paris,,OMA, +OMA:SP:20374,1,"LES SOURCES",43.416574,5.008401,0,0,OMA:SA:CTP20373,Europe/Paris,,OMA, +OMA:SP:20375,1,"DOMAINE DES PINS",43.414994,5.011929,0,0,OMA:SA:CTP20375,Europe/Paris,,OMA, +OMA:SP:20376,1,"DOMAINE DES PINS",43.414436,5.013741,0,0,OMA:SA:CTP20375,Europe/Paris,,OMA, +OMA:SP:20377,1,"LES ETOURNEAUX",43.413665,5.016221,0,0,OMA:SA:CTP20377,Europe/Paris,,OMA, +OMA:SP:20378,1,"LES ETOURNEAUX",43.413564,5.016291,0,0,OMA:SA:CTP20377,Europe/Paris,,OMA, +OMA:SP:20379,1,"REINETTES",43.412654,5.021774,0,0,OMA:SA:CTP20379,Europe/Paris,,OMA, +OMA:SP:20380,1,"REINETTES",43.412516,5.022286,0,0,OMA:SA:CTP20379,Europe/Paris,,OMA, +OMA:SP:20381,1,"LA DRAILLE",43.416446,4.993569,0,0,OMA:SA:CTP20381,Europe/Paris,,OMA, +OMA:SP:20382,1,"LA DRAILLE",43.41644,4.99347,0,0,OMA:SA:CTP20381,Europe/Paris,,OMA, +OMA:SP:20383,1,"LAVANDES",43.417248,4.992422,0,0,OMA:SA:CTP20383,Europe/Paris,,OMA, +OMA:SP:20384,1,"LAVANDES",43.417129,4.992503,0,0,OMA:SA:CTP20383,Europe/Paris,,OMA, +OMA:SP:20385,1,"GARRIGUE",43.41944,4.988095,0,0,OMA:SA:CTP20385,Europe/Paris,,OMA, +OMA:SP:20386,1,"GARRIGUE",43.419306,4.988089,0,0,OMA:SA:CTP20385,Europe/Paris,,OMA, +OMA:SP:20387,1,"ENGRENIER HAUT",43.42128,4.986786,0,0,OMA:SA:CTP20387,Europe/Paris,,OMA, +OMA:SP:20388,1,"ENGRENIER CAT",43.423257,4.985718,0,0,OMA:SA:CTP20388,Europe/Paris,,OMA, +OMA:SP:20389,1,"ENGRENIER",43.42365,4.984379,0,0,OMA:SA:CTP20389,Europe/Paris,,OMA, +OMA:SP:20390,1,"MERIINDOLE - PINS",43.421915,4.981079,0,0,OMA:SA:CTP20390,Europe/Paris,,OMA, +OMA:SP:20391,1,"MERINDOLE",43.420273,4.982755,0,0,OMA:SA:CTP20391,Europe/Paris,,OMA, +OMA:SP:20392,1,"MERINDOLE - PEYRE",43.419368,4.985563,0,0,OMA:SA:CTP20392,Europe/Paris,,OMA, +OMA:SP:20393,1,"CHATEAU EAU",43.418762,4.988989,0,0,OMA:SA:CTP20393,Europe/Paris,,OMA, +OMA:SP:20394,1,"CHATEAU EAU",43.418351,4.989969,0,0,OMA:SA:CTP20393,Europe/Paris,,OMA, +OMA:SP:20395,1,"LES FABRES",43.41522,4.994437,0,0,OMA:SA:CTP20395,Europe/Paris,,OMA, +OMA:SP:20396,1,"LES FABRES",43.415131,4.994408,0,0,OMA:SA:CTP20395,Europe/Paris,,OMA, +OMA:SP:20398,1,"A.F.P.A",43.489123,4.988644,0,0,OMA:SA:CTP20398,Europe/Paris,,OMA, +OMA:SP:20399,1,"PREPAOU",43.496194,4.98119,0,0,OMA:SA:CTP20399,Europe/Paris,,OMA, +OMA:SP:20400,1,"COLLEGE DAUDET",43.497851,4.984046,0,0,OMA:SA:CTP20400,Europe/Paris,,OMA, +OMA:SP:20401,1,"JARDINS LOUIS",43.422667,5.000556,0,0,OMA:SA:CTP20401,Europe/Paris,,OMA, +OMA:SP:20402,1,"MOULET",43.405033,5.027398,0,0,OMA:SA:CTP20402,Europe/Paris,,OMA, +OMA:SP:20403,1,"MOULET",43.405046,5.027584,0,0,OMA:SA:CTP20402,Europe/Paris,,OMA, +OMA:SP:20404,1,"REGIE EAUX",43.404115,5.03029,0,0,OMA:SA:CTP20404,Europe/Paris,,OMA, +OMA:SP:20405,1,"REGIE EAUX",43.403935,5.031392,0,0,OMA:SA:CTP20404,Europe/Paris,,OMA, +OMA:SP:20406,1,"BOULODROME",43.403156,5.040234,0,0,OMA:SA:CTP20406,Europe/Paris,,OMA, +OMA:SP:20407,1,"BOULODROME",43.403679,5.042664,0,0,OMA:SA:CTP20406,Europe/Paris,,OMA, +OMA:SP:20408,1,"LA HALLE",43.405373,5.046123,0,0,OMA:SA:CTP20408,Europe/Paris,,OMA, +OMA:SP:20409,1,"INTERMARCHE",43.411088,5.022909,0,0,OMA:SA:CTP20409,Europe/Paris,,OMA, +OMA:SP:20410,1,"INTERMARCHE",43.410933,5.022631,0,0,OMA:SA:CTP20409,Europe/Paris,,OMA, +OMA:SP:20411,1,"BOTTAI",43.416317,4.973938,0,0,OMA:SA:CTP20411,Europe/Paris,,OMA, +OMA:SP:20412,1,"TAMARIS",43.414472,4.974014,0,0,OMA:SA:CTP20412,Europe/Paris,,OMA, +OMA:SP:20413,1,"TAMARIS",43.414472,4.974014,0,0,OMA:SA:CTP20412,Europe/Paris,,OMA, +OMA:SP:20414,1,"PLAGE OURS",43.412352,4.974656,0,0,OMA:SA:CTP20414,Europe/Paris,,OMA, +OMA:SP:20415,1,"PLAGE OURS",43.412352,4.974656,0,0,OMA:SA:CTP20414,Europe/Paris,,OMA, +OMA:SP:20416,1,"GOUIN",43.517199,4.981605,0,0,OMA:SA:CTP20416,Europe/Paris,,OMA, +OMA:SP:20418,1,"CYPRES",43.521879,4.979622,0,0,OMA:SA:CTP20418,Europe/Paris,,OMA, +OMA:SP:20420,1,"BELLONS",43.527023,4.975559,0,0,OMA:SA:CTP20420,Europe/Paris,,OMA, +OMA:SP:20422,1,"ST EXUPERY",43.530026,4.975203,0,0,OMA:SA:CTP20422,Europe/Paris,,OMA, +OMA:SP:20424,1,"CHALVE",43.577331,4.997773,0,0,OMA:SA:CTP20424,Europe/Paris,,OMA, +OMA:SP:20426,1,"GARE SNCF MIRAMAS",43.580671,4.999463,0,0,OMA:SA:CTP20426,Europe/Paris,,OMA, +OMA:SP:20427,1,"CONSERVATOIRE",43.397629,5.041552,0,0,OMA:SA:CTP20427,Europe/Paris,,OMA, +OMA:SP:20428,1,"CH JARDINS - ST PIERRE",43.371126,5.057816,0,0,OMA:SA:CTP20428,Europe/Paris,,OMA, +OMA:SP:20429,1,"GUEULE D'ENFER",43.396127,5.075724,0,0,OMA:SA:CTP20429,Europe/Paris,,OMA, +OMA:SP:20430,1,"ST LAZARE",43.332786,5.046747,0,0,OMA:SA:CTP20430,Europe/Paris,,OMA, +OMA:SP:20431,1,"CEZANNE",43.399133,5.064634,0,0,OMA:SA:CTP20321,Europe/Paris,,OMA, +OMA:SP:20432,1,"CROIX DE MALTE",43.403626,5.056585,0,0,OMA:SA:CTP20432,Europe/Paris,,OMA, +OMA:SP:20433,1,"TRESORERIE",43.402262,5.056828,0,0,OMA:SA:CTP20433,Europe/Paris,,OMA, +OMA:SP:20434,1,"Collet Redon",43.340491,5.059972,0,0,OMA:SA:CTP20434,Europe/Paris,,OMA, +OMA:SP:20435,1,"Ecole La Couronne",43.331636,5.053492,0,0,OMA:SA:CTP20435,Europe/Paris,,OMA, +OMA:SP:20436,1,"SCOL Tamaris",43.330207,5.081494,0,0,OMA:SA:CTP20436,Europe/Paris,,OMA, +OMA:SP:20437,1,"La Saulce",43.3391,5.070155,0,0,OMA:SA:CTP20437,Europe/Paris,,OMA, +OMA:SP:20438,1,"Les Rosettes",43.339578,5.067246,0,0,OMA:SA:CTP20438,Europe/Paris,,OMA, +OMA:SP:20440,1,"Trou du Loup",43.378706,5.078713,0,0,OMA:SA:CTP20440,Europe/Paris,,OMA, +OMA:SP:20441,1,"113 Les Cormes",43.37228,5.07541,0,0,OMA:SA:CTP20441,Europe/Paris,,OMA, +OMA:SP:20442,1,"Croix Estrine",43.373513,5.067926,0,0,OMA:SA:CTP20442,Europe/Paris,,OMA, +OMA:SP:20443,1,"Croix Estrine",43.373427,5.067798,0,0,OMA:SA:CTP20442,Europe/Paris,,OMA, +OMA:SP:20444,1,"Valeuil",43.376648,5.05528,0,0,OMA:SA:CTP20444,Europe/Paris,,OMA, +OMA:SP:20445,1,"Chemin des Ferrauds",43.378002,5.050413,0,0,OMA:SA:CTP20445,Europe/Paris,,OMA, +OMA:SP:20446,1,"Route de Ponteau",43.367945,5.034112,0,0,OMA:SA:CTP20446,Europe/Paris,,OMA, +OMA:SP:20447,1,"Chemin de la Plaine Saint Martin",43.373641,5.030337,0,0,OMA:SA:CTP20447,Europe/Paris,,OMA, +OMA:SP:20448,1,"Chemin de Boutier",43.371447,5.030703,0,0,OMA:SA:CTP20448,Europe/Paris,,OMA, +OMA:SP:20449,1,"Font Maure",43.367828,5.03126,0,0,OMA:SA:CTP20449,Europe/Paris,,OMA, +OMA:SP:20450,1,"Chemin de la Gare",43.365407,5.030283,0,0,OMA:SA:CTP20450,Europe/Paris,,OMA, +OMA:SP:20451,1,"Les Pieds dans l'Eau",43.356525,5.024432,0,0,OMA:SA:CTP20451,Europe/Paris,,OMA, +OMA:SP:20452,1,"Port des Laurons",43.352454,5.025806,0,0,OMA:SA:CTP20452,Europe/Paris,,OMA, +OMA:SP:20453,1,"Plage des Laurons",43.356362,5.02594,0,0,OMA:SA:CTP20453,Europe/Paris,,OMA, +OMA:SP:20455,1,"Route des Laurons",43.367677,5.033705,0,0,OMA:SA:CTP20455,Europe/Paris,,OMA, +OMA:SP:20456,1,"Seynemes",43.358207,5.024437,0,0,OMA:SA:CTP20456,Europe/Paris,,OMA, +OMA:SP:20457,1,"Cimetiere St Julien",43.362519,5.098495,0,0,OMA:SA:CTP20457,Europe/Paris,,OMA, +OMA:SP:20458,1,"St Julien-Maison Pour Tous",43.362765,5.096264,0,0,OMA:SA:CTP20458,Europe/Paris,,OMA, +OMA:SP:20459,1,"Clos St Michel",43.363966,5.09223,0,0,OMA:SA:CTP20459,Europe/Paris,,OMA, +OMA:SP:20460,1,"Les Cormes",43.367334,5.08745,0,0,OMA:SA:CTP20460,Europe/Paris,,OMA, +OMA:SP:20461,1,"Gravade",43.372374,5.052871,0,0,OMA:SA:CTP20461,Europe/Paris,,OMA, +OMA:SP:20465,1,"Cormes-Tourrel",43.370414,5.080917,0,0,OMA:SA:CTP20465,Europe/Paris,,OMA, +OMA:SP:20466,1,"EGLISE",43.362465,5.10166,0,0,OMA:SA:CTP20466,Europe/Paris,,OMA, +OMA:SP:20467,1,"ZI Ecopolis",43.389435,5.033743,0,0,OMA:SA:CTP20467,Europe/Paris,,OMA, +OMA:SP:20468,1,"Port Carro",43.331118,5.039438,0,0,OMA:SA:CTP20468,Europe/Paris,,OMA, +OMA:SP:20469,1,"La Couronne - Ch L'Oustalet",43.336249,5.050618,0,0,OMA:SA:CTP20469,Europe/Paris,,OMA, +OMA:SP:20472,1,"Cabro d'Or",43.392116,5.056248,0,0,OMA:SA:CTP20472,Europe/Paris,,OMA, +OMA:SP:20473,1,"St Julien - Les Audiberts",43.371276,5.079183,0,0,OMA:SA:CTP20473,Europe/Paris,,OMA, +OMA:SP:20474,1,"Chemin des jardins",43.371126,5.057816,0,0,OMA:SA:CTP20474,Europe/Paris,,OMA, +OMA:SP:20475,1,"Le Paty",43.397713,5.081632,0,0,OMA:SA:CTP20475,Europe/Paris,,OMA, +OMA:SP:20476,1,"Clos Valmont",43.397895,5.08682,0,0,OMA:SA:CTP20476,Europe/Paris,,OMA, +OMA:SP:20479,1,"Gare Lavera",43.392868,5.026285,0,0,OMA:SA:CTP20479,Europe/Paris,,OMA, +OMA:SP:20480,1,"Gare Lavera",43.392836,5.02611,0,0,OMA:SA:CTP20479,Europe/Paris,,OMA, +OMA:SP:20481,1,"Monument Tarditi",43.398092,5.071305,0,0,OMA:SA:CTP20481,Europe/Paris,,OMA, +OMA:SP:20482,1,"Turcan / Marcel Proust",43.416623,5.056437,0,0,OMA:SA:CTP20482,Europe/Paris,,OMA, +OMA:SP:20483,1,"Turcan / Sezau",43.413414,5.053892,0,0,OMA:SA:CTP20483,Europe/Paris,,OMA, +OMA:SP:20484,1,"Turcan / ZUP",43.412223,5.046558,0,0,OMA:SA:CTP20484,Europe/Paris,,OMA, +OMA:SP:20485,1,"Turcan - Clair Soleil",43.411697,5.044584,0,0,OMA:SA:CTP20485,Europe/Paris,,OMA, +OMA:SP:20486,1,"Turcan / Capucins",43.412102,5.04707,0,0,OMA:SA:CTP20486,Europe/Paris,,OMA, +OMA:SP:20487,1,"Turcan / Daguin",43.412698,5.051255,0,0,OMA:SA:CTP20487,Europe/Paris,,OMA, +OMA:SP:20488,1,"Turcan / Maison Syndicats",43.413064,5.053875,0,0,OMA:SA:CTP20488,Europe/Paris,,OMA, +OMA:SP:20489,1,"Turcan / Estandadou",43.416686,5.056773,0,0,OMA:SA:CTP20489,Europe/Paris,,OMA, +OMA:SP:20491,1,"Vallon du Jambon",43.425196,5.048072,0,0,OMA:SA:CTP20491,Europe/Paris,,OMA, +OMA:SP:20492,1,"JB Clement",43.429222,5.057442,0,0,OMA:SA:CTP20492,Europe/Paris,,OMA, +OMA:SP:20493,1,"Touret de Vallier",43.428199,5.057369,0,0,OMA:SA:CTP20493,Europe/Paris,,OMA, +OMA:SP:20494,1,"Touret de Vallier",43.428306,5.057399,0,0,OMA:SA:CTP20493,Europe/Paris,,OMA, +OMA:SP:20498,1,"Bergerie",43.414069,4.994815,0,0,OMA:SA:CTP20498,Europe/Paris,,OMA, +OMA:SP:20499,1,"Les Esperelles",43.392679,5.065621,0,0,OMA:SA:CTP20499,Europe/Paris,,OMA, +OMA:SP:20500,1,"Ecole Tranchier",43.411268,5.021129,0,0,OMA:SA:CTP20500,Europe/Paris,,OMA, +OMA:SP:20501,1,"Ecole Jean Jaures",43.409168,5.054665,0,0,OMA:SA:CTP20501,Europe/Paris,,OMA, +OMA:SP:20502,1,"Ecole Primaire Canto-Perdrix",43.418642,5.054448,0,0,OMA:SA:CTP20502,Europe/Paris,,OMA, +OMA:SP:20505,1,"Les Bassins",43.41854,4.98962,0,0,OMA:SA:CTP20505,Europe/Paris,,OMA, +OMA:SP:20506,1,"Ecole Arcades",43.426101,4.977189,0,0,OMA:SA:CTP20506,Europe/Paris,,OMA, +OMA:SP:20507,1,"Station Agip",43.42029,4.978019,0,0,OMA:SA:CTP20507,Europe/Paris,,OMA, +OMA:SP:20509,1,"Collège MISTRAL",43.410097,4.977155,0,0,OMA:SA:CTP20509,Europe/Paris,,OMA, +OMA:SP:20510,1,"Impase de la liberté",43.405338,4.987862,0,0,OMA:SA:CTP20510,Europe/Paris,,OMA, +OMA:SP:20513,1,"Collège ELUARD",43.412402,4.994208,0,0,OMA:SA:CTP20513,Europe/Paris,,OMA, +OMA:SP:20514,1,"Les Hameaux",43.419671,4.975412,0,0,OMA:SA:CTP20514,Europe/Paris,,OMA, +OMA:SP:20515,1,"Pont du Roy Lafarge",43.426869,4.972253,0,0,OMA:SA:CTP20515,Europe/Paris,,OMA, +OMA:SP:20519,1,"Les pins",43.422104,4.981063,0,0,OMA:SA:CTP20519,Europe/Paris,,OMA, +OMA:SP:20520,1,"Ecole Pagnol",43.416834,4.982929,0,0,OMA:SA:CTP20520,Europe/Paris,,OMA, +OMA:SP:20522,1,"Ecole Louise Michel",43.408025,4.989762,0,0,OMA:SA:CTP20522,Europe/Paris,,OMA, +OMA:SP:20523,1,"SCOL Romain Rolland",43.409961,4.991455,0,0,OMA:SA:CTP20523,Europe/Paris,,OMA, +OMA:SP:20524,1,"Ecole Lucia Tichadou",43.411468,4.988688,0,0,OMA:SA:CTP20524,Europe/Paris,,OMA, +OMA:SP:20525,1,"Place des Aires",43.56363,5.071832,0,0,OMA:SA:CTP20525,Europe/Paris,,OMA, +OMA:SP:20526,1,"Pont de Rhaud",43.586699,5.051075,0,0,OMA:SA:CTP20526,Europe/Paris,,OMA, +OMA:SP:20527,1,"Gymnase",43.592163,4.933028,0,0,OMA:SA:CTP20527,Europe/Paris,,OMA, +OMA:SP:20528,1,"La Crau",43.595891,4.93762,0,0,OMA:SA:CTP20528,Europe/Paris,,OMA, +OMA:SP:20529,1,"Piscine",43.593216,4.932176,0,0,OMA:SA:CTP20529,Europe/Paris,,OMA, +OMA:SP:20530,1,"Aquaron",43.459316,4.933518,0,0,OMA:SA:CTP20530,Europe/Paris,,OMA, +OMA:SP:20531,1,"Archeveque",43.458383,4.948526,0,0,OMA:SA:CTP20531,Europe/Paris,,OMA, +OMA:SP:20532,1,"Archevèque",43.458383,4.948526,0,0,OMA:SA:CTP20532,Europe/Paris,,OMA, +OMA:SP:20533,1,"Arenes",43.432905,4.946211,0,0,OMA:SA:CTP20533,Europe/Paris,,OMA, +OMA:SP:20534,1,"Arenes",43.43271,4.946167,0,0,OMA:SA:CTP20533,Europe/Paris,,OMA, +OMA:SP:20535,1,"Av Jean Perrin",43.472568,4.949122,0,0,OMA:SA:CTP20535,Europe/Paris,,OMA, +OMA:SP:20536,1,"Les Bannes",43.481657,4.869614,0,0,OMA:SA:CTP20536,Europe/Paris,,OMA, +OMA:SP:20537,1,"Les Bannes",43.481403,4.869854,0,0,OMA:SA:CTP20536,Europe/Paris,,OMA, +OMA:SP:20538,1,"Chemin de Bos",43.463308,4.936425,0,0,OMA:SA:CTP20538,Europe/Paris,,OMA, +OMA:SP:20539,1,"Cantegrillet",43.455086,4.937481,0,0,OMA:SA:CTP20539,Europe/Paris,,OMA, +OMA:SP:20540,1,"Cantegrillet",43.454944,4.937331,0,0,OMA:SA:CTP20539,Europe/Paris,,OMA, +OMA:SP:20541,1,"Cantegrillet",43.455584,4.937056,0,0,OMA:SA:CTP20539,Europe/Paris,,OMA, +OMA:SP:20542,1,"Place des Carabins",43.458978,4.935218,0,0,OMA:SA:CTP20542,Europe/Paris,,OMA, +OMA:SP:20543,1,"Place des Carabins",43.458968,4.935303,0,0,OMA:SA:CTP20542,Europe/Paris,,OMA, +OMA:SP:20544,1,"Chemin de Blanc",43.457356,4.927714,0,0,OMA:SA:CTP20544,Europe/Paris,,OMA, +OMA:SP:20545,1,"Chemin du Chaland",43.46048,4.930731,0,0,OMA:SA:CTP20545,Europe/Paris,,OMA, +OMA:SP:20546,1,"Chemin du Chaland",43.460477,4.930855,0,0,OMA:SA:CTP20545,Europe/Paris,,OMA, +OMA:SP:20547,1,"Clément",43.462046,4.932105,0,0,OMA:SA:CTP20547,Europe/Paris,,OMA, +OMA:SP:20548,1,"Clément",43.461999,4.932167,0,0,OMA:SA:CTP20547,Europe/Paris,,OMA, +OMA:SP:20549,1,"Chemin du Mazet",43.463313,4.945343,0,0,OMA:SA:CTP20549,Europe/Paris,,OMA, +OMA:SP:20550,1,"Chemin du Mazet",43.463122,4.944587,0,0,OMA:SA:CTP20549,Europe/Paris,,OMA, +OMA:SP:20551,1,"Chemin de la Colline",43.456747,4.946402,0,0,OMA:SA:CTP20551,Europe/Paris,,OMA, +OMA:SP:20552,1,"Chemin de Phion",43.451588,4.939264,0,0,OMA:SA:CTP20552,Europe/Paris,,OMA, +OMA:SP:20553,1,"Les Crottes",43.47079,4.943316,0,0,OMA:SA:CTP20553,Europe/Paris,,OMA, +OMA:SP:20554,1,"Les Crottes",43.470434,4.943326,0,0,OMA:SA:CTP20553,Europe/Paris,,OMA, +OMA:SP:20555,1,"Chemin de Robert",43.46023,4.927853,0,0,OMA:SA:CTP20555,Europe/Paris,,OMA, +OMA:SP:20556,1,"Centre Ville",43.435572,4.94494,0,0,OMA:SA:CTP20556,Europe/Paris,,OMA, +OMA:SP:20557,1,"Centre Ville",43.436636,4.944303,0,0,OMA:SA:CTP20556,Europe/Paris,,OMA, +OMA:SP:20558,1,"David",43.463871,4.937403,0,0,OMA:SA:CTP20558,Europe/Paris,,OMA, +OMA:SP:20560,1,"Ecole Del Corso",43.462404,4.937113,0,0,OMA:SA:CTP20560,Europe/Paris,,OMA, +OMA:SP:20561,1,"Engrenier",43.430599,4.97673,0,0,OMA:SA:CTP20561,Europe/Paris,,OMA, +OMA:SP:20562,1,"Fenouillère",43.463531,4.929478,0,0,OMA:SA:CTP20562,Europe/Paris,,OMA, +OMA:SP:20563,1,"Fenouillère",43.462133,4.925773,0,0,OMA:SA:CTP20563,Europe/Paris,,OMA, +OMA:SP:20564,1,"Fournil",43.466865,4.936093,0,0,OMA:SA:CTP20564,Europe/Paris,,OMA, +OMA:SP:20565,1,"Galoubet",43.456544,4.931499,0,0,OMA:SA:CTP20565,Europe/Paris,,OMA, +OMA:SP:20566,1,"Gendarmerie",43.444539,4.940779,0,0,OMA:SA:CTP20566,Europe/Paris,,OMA, +OMA:SP:20567,1,"Gerachios (école)",43.456054,4.9389,0,0,OMA:SA:CTP20567,Europe/Paris,,OMA, +OMA:SP:20568,1,"Giono Mauron (école)",43.434177,4.9463,0,0,OMA:SA:CTP20568,Europe/Paris,,OMA, +OMA:SP:20569,1,"Grande Plage",43.430917,4.941113,0,0,OMA:SA:CTP20569,Europe/Paris,,OMA, +OMA:SP:20570,1,"Hesperides",43.465224,4.943423,0,0,OMA:SA:CTP20570,Europe/Paris,,OMA, +OMA:SP:20571,1,"Hesperides",43.465163,4.943494,0,0,OMA:SA:CTP20570,Europe/Paris,,OMA, +OMA:SP:20572,1,"Hotel de Ville",43.455529,4.943423,0,0,OMA:SA:CTP20572,Europe/Paris,,OMA, +OMA:SP:20573,1,"Hotel de Ville",43.455794,4.942344,0,0,OMA:SA:CTP20572,Europe/Paris,,OMA, +OMA:SP:20574,1,"Joseph d'Arbaub",43.445283,4.943289,0,0,OMA:SA:CTP20574,Europe/Paris,,OMA, +OMA:SP:20575,1,"Joncquiere",43.443199,4.942204,0,0,OMA:SA:CTP20575,Europe/Paris,,OMA, +OMA:SP:20576,1,"Karines",43.459499,4.941384,0,0,OMA:SA:CTP20576,Europe/Paris,,OMA, +OMA:SP:20577,1,"Louis Brauquier",43.465877,4.941104,0,0,OMA:SA:CTP20577,Europe/Paris,,OMA, +OMA:SP:20578,1,"Louis Brauquier",43.466125,4.941245,0,0,OMA:SA:CTP20577,Europe/Paris,,OMA, +OMA:SP:20579,1,"Louise Michel",43.465161,4.939461,0,0,OMA:SA:CTP20579,Europe/Paris,,OMA, +OMA:SP:20580,1,"Malraux",43.44486,4.943345,0,0,OMA:SA:CTP20580,Europe/Paris,,OMA, +OMA:SP:20581,1,"Marais",43.43875,4.943576,0,0,OMA:SA:CTP20581,Europe/Paris,,OMA, +OMA:SP:20582,1,"Marais",43.438936,4.94341,0,0,OMA:SA:CTP20581,Europe/Paris,,OMA, +OMA:SP:20583,1,"Place du Marché",43.441509,4.942909,0,0,OMA:SA:CTP20583,Europe/Paris,,OMA, +OMA:SP:20584,1,"Maison de Fos",43.450034,4.93726,0,0,OMA:SA:CTP20584,Europe/Paris,,OMA, +OMA:SP:20585,1,"Maison de Fos",43.449999,4.937152,0,0,OMA:SA:CTP20584,Europe/Paris,,OMA, +OMA:SP:20586,1,"Mistral",43.457903,4.947089,0,0,OMA:SA:CTP20586,Europe/Paris,,OMA, +OMA:SP:20587,1,"Maison pour Tous",43.449391,4.939681,0,0,OMA:SA:CTP20587,Europe/Paris,,OMA, +OMA:SP:20588,1,"Mazet Mistral",43.462087,4.941239,0,0,OMA:SA:CTP20588,Europe/Paris,,OMA, +OMA:SP:20589,1,"Mazet Daudet",43.459533,4.941607,0,0,OMA:SA:CTP20589,Europe/Paris,,OMA, +OMA:SP:20590,1,"Plan d Arenc",43.453913,4.950752,0,0,OMA:SA:CTP20590,Europe/Paris,,OMA, +OMA:SP:20591,1,"Plan d Arenc",43.454015,4.950248,0,0,OMA:SA:CTP20590,Europe/Paris,,OMA, +OMA:SP:20592,1,"Pavillon",43.46126,4.941284,0,0,OMA:SA:CTP20592,Europe/Paris,,OMA, +OMA:SP:20593,1,"Pignatel",43.456161,4.940024,0,0,OMA:SA:CTP20593,Europe/Paris,,OMA, +OMA:SP:20594,1,"Pignatel",43.456229,4.940035,0,0,OMA:SA:CTP20593,Europe/Paris,,OMA, +OMA:SP:20595,1,"Plaine Ronde",43.452557,4.932697,0,0,OMA:SA:CTP20595,Europe/Paris,,OMA, +OMA:SP:20596,1,"Pompidou",43.456267,4.941375,0,0,OMA:SA:CTP20596,Europe/Paris,,OMA, +OMA:SP:20597,1,"Pompidou",43.455597,4.941618,0,0,OMA:SA:CTP20596,Europe/Paris,,OMA, +OMA:SP:20598,1,"Pont du Roy",43.427856,4.971833,0,0,OMA:SA:CTP20598,Europe/Paris,,OMA, +OMA:SP:20599,1,"Pont du Roy",43.427751,4.971955,0,0,OMA:SA:CTP20598,Europe/Paris,,OMA, +OMA:SP:20600,1,"Raffinerie",43.449875,4.926352,0,0,OMA:SA:CTP20600,Europe/Paris,,OMA, +OMA:SP:20602,1,"Route du Mistral",43.459509,4.94545,0,0,OMA:SA:CTP20602,Europe/Paris,,OMA, +OMA:SP:20603,1,"Route du Mistral",43.459607,4.94507,0,0,OMA:SA:CTP20602,Europe/Paris,,OMA, +OMA:SP:20604,1,"Carrefour Vallins",43.451413,4.939312,0,0,OMA:SA:CTP20604,Europe/Paris,,OMA, +OMA:SP:20605,1,"Vallins",43.450576,4.937755,0,0,OMA:SA:CTP20605,Europe/Paris,,OMA, +OMA:SP:20606,1,"Voie Romaine",43.455805,4.947116,0,0,OMA:SA:CTP20606,Europe/Paris,,OMA, +OMA:SP:20607,1,"Voie Romaine",43.455667,4.947438,0,0,OMA:SA:CTP20606,Europe/Paris,,OMA, +OMA:SP:20608,1,"ZA Lavalduc",43.47508,4.947072,0,0,OMA:SA:CTP20608,Europe/Paris,,OMA, +OMA:SP:20609,1,"Centre",43.608527,5.064601,0,0,OMA:SA:CTP20609,Europe/Paris,,OMA, +OMA:SP:20610,1,"Place Foirail",43.609085,5.066026,0,0,OMA:SA:CTP20610,Europe/Paris,,OMA, +OMA:SP:20611,1,"Sainte Croix",43.603092,5.068623,0,0,OMA:SA:CTP20611,Europe/Paris,,OMA, +OMA:SP:20612,1,"4 vents",43.494802,4.992648,0,0,OMA:SA:CTP20612,Europe/Paris,,OMA, +OMA:SP:20613,1,"4 vents",43.494801,4.992539,0,0,OMA:SA:CTP20612,Europe/Paris,,OMA, +OMA:SP:20614,1,"4 vents Méditerranée",43.495186,4.992236,0,0,OMA:SA:CTP20614,Europe/Paris,,OMA, +OMA:SP:20615,1,"4 vents Mediterranee",43.495147,4.991987,0,0,OMA:SA:CTP20615,Europe/Paris,,OMA, +OMA:SP:20616,1,"Les Pignes",43.491792,4.993103,0,0,OMA:SA:CTP20616,Europe/Paris,,OMA, +OMA:SP:20617,1,"Les Pignes",43.491444,4.992988,0,0,OMA:SA:CTP20616,Europe/Paris,,OMA, +OMA:SP:20618,1,"Aristide Briand",43.513931,4.985231,0,0,OMA:SA:CTP20618,Europe/Paris,,OMA, +OMA:SP:20619,1,"Aimé Césaire",43.506904,4.98372,0,0,OMA:SA:CTP20619,Europe/Paris,,OMA, +OMA:SP:20620,1,"Ader Transhumance",43.526461,4.959683,0,0,OMA:SA:CTP20620,Europe/Paris,,OMA, +OMA:SP:20621,1,"Ader Transuhmance",43.526588,4.959765,0,0,OMA:SA:CTP20621,Europe/Paris,,OMA, +OMA:SP:20622,1,"AFPA",43.489222,4.988649,0,0,OMA:SA:CTP20622,Europe/Paris,,OMA, +OMA:SP:20623,1,"AFPA",43.489242,4.988921,0,0,OMA:SA:CTP20622,Europe/Paris,,OMA, +OMA:SP:20624,1,"Ajoncs",43.503775,4.971295,0,0,OMA:SA:CTP20624,Europe/Paris,,OMA, +OMA:SP:20627,1,"Arnalyses",43.51374,4.992563,0,0,OMA:SA:CTP20627,Europe/Paris,,OMA, +OMA:SP:20628,1,"Arnavaux",43.514635,4.994102,0,0,OMA:SA:CTP20628,Europe/Paris,,OMA, +OMA:SP:20629,1,"Arnavaux",43.514551,4.993864,0,0,OMA:SA:CTP20628,Europe/Paris,,OMA, +OMA:SP:20630,1,"Aupierre",43.514155,4.997898,0,0,OMA:SA:CTP20630,Europe/Paris,,OMA, +OMA:SP:20631,1,"Aupierre",43.514071,4.997647,0,0,OMA:SA:CTP20630,Europe/Paris,,OMA, +OMA:SP:20632,1,"Bel Air Manne",43.516091,4.979191,0,0,OMA:SA:CTP20632,Europe/Paris,,OMA, +OMA:SP:20633,1,"Baumes",43.509899,4.982998,0,0,OMA:SA:CTP20633,Europe/Paris,,OMA, +OMA:SP:20634,1,"Baumes",43.51002,4.982484,0,0,OMA:SA:CTP20633,Europe/Paris,,OMA, +OMA:SP:20635,1,"Bayanne",43.527546,4.955167,0,0,OMA:SA:CTP20635,Europe/Paris,,OMA, +OMA:SP:20636,1,"Lotissement Les Bellons",43.52825,4.97336,0,0,OMA:SA:CTP20636,Europe/Paris,,OMA, +OMA:SP:20637,1,"Lotissement Les Bellons",43.528055,4.973348,0,0,OMA:SA:CTP20636,Europe/Paris,,OMA, +OMA:SP:20638,1,"Bord de crau",43.521194,4.963408,0,0,OMA:SA:CTP20638,Europe/Paris,,OMA, +OMA:SP:20639,1,"Bellons",43.52753,4.976497,0,0,OMA:SA:CTP20639,Europe/Paris,,OMA, +OMA:SP:20640,1,"Bellons",43.527118,4.976512,0,0,OMA:SA:CTP20639,Europe/Paris,,OMA, +OMA:SP:20641,1,"Bel air",43.509507,4.978069,0,0,OMA:SA:CTP20641,Europe/Paris,,OMA, +OMA:SP:20642,1,"Bolles",43.504409,4.996012,0,0,OMA:SA:CTP20642,Europe/Paris,,OMA, +OMA:SP:20643,1,"Bolles",43.504417,4.995678,0,0,OMA:SA:CTP20642,Europe/Paris,,OMA, +OMA:SP:20644,1,"Boucasson",43.517914,4.970036,0,0,OMA:SA:CTP20644,Europe/Paris,,OMA, +OMA:SP:20645,1,"Boucasson",43.518065,4.970087,0,0,OMA:SA:CTP20644,Europe/Paris,,OMA, +OMA:SP:20646,1,"Buissonniere",43.503692,4.970014,0,0,OMA:SA:CTP20646,Europe/Paris,,OMA, +OMA:SP:20647,1,"Buissonniere",43.503806,4.970104,0,0,OMA:SA:CTP20646,Europe/Paris,,OMA, +OMA:SP:20648,1,"Cagou",43.488579,5.000179,0,0,OMA:SA:CTP20648,Europe/Paris,,OMA, +OMA:SP:20649,1,"Calameau",43.599027,4.935427,0,0,OMA:SA:CTP20649,Europe/Paris,,OMA, +OMA:SP:20650,1,"Calameau",43.598962,4.935161,0,0,OMA:SA:CTP20649,Europe/Paris,,OMA, +OMA:SP:20651,1,"Capeau Cades",43.508149,4.967545,0,0,OMA:SA:CTP20651,Europe/Paris,,OMA, +OMA:SP:20652,1,"Capeau Cades",43.508854,4.967598,0,0,OMA:SA:CTP20651,Europe/Paris,,OMA, +OMA:SP:20653,1,"Capeau Romarin",43.513127,4.967314,0,0,OMA:SA:CTP20653,Europe/Paris,,OMA, +OMA:SP:20654,1,"Capeau Romarin",43.512936,4.967595,0,0,OMA:SA:CTP20653,Europe/Paris,,OMA, +OMA:SP:20655,1,"Carmes",43.513039,4.985558,0,0,OMA:SA:CTP20655,Europe/Paris,,OMA, +OMA:SP:20656,1,"Carmes",43.51305,4.985704,0,0,OMA:SA:CTP20655,Europe/Paris,,OMA, +OMA:SP:20657,1,"Cité Bayanne",43.526662,4.956399,0,0,OMA:SA:CTP20657,Europe/Paris,,OMA, +OMA:SP:20659,1,"Centre Commercial Prepaou",43.49374,4.983362,0,0,OMA:SA:CTP20659,Europe/Paris,,OMA, +OMA:SP:20660,1,"Centre Commercial Prepaou",43.493382,4.983296,0,0,OMA:SA:CTP20659,Europe/Paris,,OMA, +OMA:SP:20661,1,"Centre Ccial Rassuen",43.496277,4.978551,0,0,OMA:SA:CTP20661,Europe/Paris,,OMA, +OMA:SP:20662,1,"Centre Ccial Rassuen",43.496131,4.97882,0,0,OMA:SA:CTP20661,Europe/Paris,,OMA, +OMA:SP:20663,1,"CC des Craux",43.523055,4.963488,0,0,OMA:SA:CTP20663,Europe/Paris,,OMA, +OMA:SP:20664,1,"CEC",43.500241,4.992175,0,0,OMA:SA:CTP20664,Europe/Paris,,OMA, +OMA:SP:20665,1,"CEC",43.500435,4.99253,0,0,OMA:SA:CTP20664,Europe/Paris,,OMA, +OMA:SP:20666,1,"Clement Ader",43.52155,4.960885,0,0,OMA:SA:CTP20666,Europe/Paris,,OMA, +OMA:SP:20667,1,"Clement Ader",43.52171,4.960999,0,0,OMA:SA:CTP20666,Europe/Paris,,OMA, +OMA:SP:20668,1,"Clinique",43.506991,4.992672,0,0,OMA:SA:CTP20668,Europe/Paris,,OMA, +OMA:SP:20669,1,"Charles Monier",43.517413,4.956186,0,0,OMA:SA:CTP20669,Europe/Paris,,OMA, +OMA:SP:20670,1,"Centre Commercial Cognets",43.498569,4.979499,0,0,OMA:SA:CTP20670,Europe/Paris,,OMA, +OMA:SP:20671,1,"Centre Commercial Cognets",43.498719,4.97993,0,0,OMA:SA:CTP20670,Europe/Paris,,OMA, +OMA:SP:20672,1,"Colonnes",43.500402,4.969408,0,0,OMA:SA:CTP20672,Europe/Paris,,OMA, +OMA:SP:20673,1,"Conservatoire",43.499055,4.992315,0,0,OMA:SA:CTP20673,Europe/Paris,,OMA, +OMA:SP:20674,1,"Coutarel",43.504958,4.983363,0,0,OMA:SA:CTP20674,Europe/Paris,,OMA, +OMA:SP:20675,1,"Coutarel",43.50424,4.982773,0,0,OMA:SA:CTP20674,Europe/Paris,,OMA, +OMA:SP:20676,1,"Coutarel",43.504771,4.983332,0,0,OMA:SA:CTP20674,Europe/Paris,,OMA, +OMA:SP:20677,1,"Cros de la Carriere",43.513295,4.993621,0,0,OMA:SA:CTP20677,Europe/Paris,,OMA, +OMA:SP:20678,1,"Cros de la Carriere",43.513372,4.994995,0,0,OMA:SA:CTP20677,Europe/Paris,,OMA, +OMA:SP:20679,1,"Complexe de Tennis Davini",43.47534,4.992201,0,0,OMA:SA:CTP20679,Europe/Paris,,OMA, +OMA:SP:20680,1,"Cypres",43.521249,4.980153,0,0,OMA:SA:CTP20680,Europe/Paris,,OMA, +OMA:SP:20681,1,"Cypres",43.521816,4.979674,0,0,OMA:SA:CTP20680,Europe/Paris,,OMA, +OMA:SP:20682,1,"Daudet",43.49807,4.983387,0,0,OMA:SA:CTP20682,Europe/Paris,,OMA, +OMA:SP:20683,1,"Daudet",43.497842,4.983084,0,0,OMA:SA:CTP20682,Europe/Paris,,OMA, +OMA:SP:20685,1,"Ecole Armanet",43.491985,4.994792,0,0,OMA:SA:CTP20685,Europe/Paris,,OMA, +OMA:SP:20686,1,"Ecole Calamand",43.50947,4.98286,0,0,OMA:SA:CTP20686,Europe/Paris,,OMA, +OMA:SP:20687,1,"La Clé des Champs",43.598122,4.930833,0,0,OMA:SA:CTP20687,Europe/Paris,,OMA, +OMA:SP:20688,1,"Chateau d Eau Entressen",43.589843,4.942168,0,0,OMA:SA:CTP20688,Europe/Paris,,OMA, +OMA:SP:20689,1,"Chateau d'eau Entressen",43.589836,4.942177,0,0,OMA:SA:CTP20689,Europe/Paris,,OMA, +OMA:SP:20690,1,"Ecole Clos de la Roche",43.492358,4.979234,0,0,OMA:SA:CTP20690,Europe/Paris,,OMA, +OMA:SP:20691,1,"Ecole Camille Pierron",43.494021,4.983679,0,0,OMA:SA:CTP20691,Europe/Paris,,OMA, +OMA:SP:20692,1,"Ecole Prédina",43.492187,4.987751,0,0,OMA:SA:CTP20692,Europe/Paris,,OMA, +OMA:SP:20693,1,"Ecole Gouin",43.51725,4.982114,0,0,OMA:SA:CTP20693,Europe/Paris,,OMA, +OMA:SP:20694,1,"Ecole Jacqueline Auriol",43.508638,4.997011,0,0,OMA:SA:CTP20694,Europe/Paris,,OMA, +OMA:SP:20695,1,"Ecole Jules Ferry",43.494576,4.983376,0,0,OMA:SA:CTP20695,Europe/Paris,,OMA, +OMA:SP:20697,1,"Ecole Mendes France",43.5006,4.984347,0,0,OMA:SA:CTP20697,Europe/Paris,,OMA, +OMA:SP:20698,1,"Feuillantines",43.5193,4.966129,0,0,OMA:SA:CTP20698,Europe/Paris,,OMA, +OMA:SP:20699,1,"Feuillantines",43.519218,4.966327,0,0,OMA:SA:CTP20698,Europe/Paris,,OMA, +OMA:SP:20700,1,"Gros Chêne",43.594286,4.936673,0,0,OMA:SA:CTP20700,Europe/Paris,,OMA, +OMA:SP:20701,1,"Gros Chêne",43.593771,4.937189,0,0,OMA:SA:CTP20700,Europe/Paris,,OMA, +OMA:SP:20702,1,"Gare Routière",43.509168,4.98861,0,0,OMA:SA:CTP20702,Europe/Paris,,OMA, +OMA:SP:20703,1,"Gare Routière",43.509231,4.988613,0,0,OMA:SA:CTP20702,Europe/Paris,,OMA, +OMA:SP:20704,1,"Grignan",43.516591,4.981824,0,0,OMA:SA:CTP20704,Europe/Paris,,OMA, +OMA:SP:20705,1,"Grignan",43.516526,4.981933,0,0,OMA:SA:CTP20704,Europe/Paris,,OMA, +OMA:SP:20706,1,"Guynemer",43.517005,4.977395,0,0,OMA:SA:CTP20706,Europe/Paris,,OMA, +OMA:SP:20707,1,"Guynemer",43.517153,4.97736,0,0,OMA:SA:CTP20706,Europe/Paris,,OMA, +OMA:SP:20708,1,"Halle Polyvalente",43.504533,4.986991,0,0,OMA:SA:CTP20708,Europe/Paris,,OMA, +OMA:SP:20709,1,"Hameau St Martin",43.498764,4.995181,0,0,OMA:SA:CTP20709,Europe/Paris,,OMA, +OMA:SP:20710,1,"Jacqueline Auriol",43.507586,4.99737,0,0,OMA:SA:CTP20710,Europe/Paris,,OMA, +OMA:SP:20711,1,"Chemin de Lavalduc",43.474857,4.995951,0,0,OMA:SA:CTP20711,Europe/Paris,,OMA, +OMA:SP:20712,1,"Lou Blagaire",43.593137,4.93893,0,0,OMA:SA:CTP20712,Europe/Paris,,OMA, +OMA:SP:20713,1,"Lou Blagaire",43.593091,4.93915,0,0,OMA:SA:CTP20712,Europe/Paris,,OMA, +OMA:SP:20714,1,"Lot les Cognets",43.502128,4.978862,0,0,OMA:SA:CTP20714,Europe/Paris,,OMA, +OMA:SP:20715,1,"La Licorne",43.500003,4.970693,0,0,OMA:SA:CTP20715,Europe/Paris,,OMA, +OMA:SP:20716,1,"La Licorne",43.499976,4.97068,0,0,OMA:SA:CTP20715,Europe/Paris,,OMA, +OMA:SP:20717,1,"Luther King",43.502042,4.981831,0,0,OMA:SA:CTP20717,Europe/Paris,,OMA, +OMA:SP:20718,1,"Luther King",43.502232,4.982112,0,0,OMA:SA:CTP20717,Europe/Paris,,OMA, +OMA:SP:20719,1,"Louis Bonte",43.518886,4.960135,0,0,OMA:SA:CTP20719,Europe/Paris,,OMA, +OMA:SP:20720,1,"Louis Bonte",43.518934,4.96021,0,0,OMA:SA:CTP20719,Europe/Paris,,OMA, +OMA:SP:20721,1,"Les Pastres",43.517573,4.971366,0,0,OMA:SA:CTP20721,Europe/Paris,,OMA, +OMA:SP:20722,1,"Les Pastres",43.517572,4.97149,0,0,OMA:SA:CTP20721,Europe/Paris,,OMA, +OMA:SP:20723,1,"Lycée Rimbaud",43.502147,4.986716,0,0,OMA:SA:CTP20723,Europe/Paris,,OMA, +OMA:SP:20724,1,"Mairie Annexe",43.59289,4.939739,0,0,OMA:SA:CTP20724,Europe/Paris,,OMA, +OMA:SP:20725,1,"Mairie annexe",43.592911,4.939617,0,0,OMA:SA:CTP20725,Europe/Paris,,OMA, +OMA:SP:20726,1,"Manne",43.515222,4.969776,0,0,OMA:SA:CTP20726,Europe/Paris,,OMA, +OMA:SP:20727,1,"Manne",43.515132,4.970012,0,0,OMA:SA:CTP20726,Europe/Paris,,OMA, +OMA:SP:20728,1,"Manne 1",43.516047,4.976444,0,0,OMA:SA:CTP20728,Europe/Paris,,OMA, +OMA:SP:20729,1,"Manne 1",43.515997,4.976528,0,0,OMA:SA:CTP20728,Europe/Paris,,OMA, +OMA:SP:20730,1,"Mas Lecque",43.560457,4.963018,0,0,OMA:SA:CTP20730,Europe/Paris,,OMA, +OMA:SP:20731,1,"Mas Lecque",43.560973,4.962498,0,0,OMA:SA:CTP20730,Europe/Paris,,OMA, +OMA:SP:20732,1,"Massugues",43.513663,4.96622,0,0,OMA:SA:CTP20732,Europe/Paris,,OMA, +OMA:SP:20733,1,"Mouettes",43.514238,5.000386,0,0,OMA:SA:CTP20733,Europe/Paris,,OMA, +OMA:SP:20734,1,"Mouettes",43.514298,5.000475,0,0,OMA:SA:CTP20733,Europe/Paris,,OMA, +OMA:SP:20735,1,"Mas Rose",43.554382,4.967289,0,0,OMA:SA:CTP20735,Europe/Paris,,OMA, +OMA:SP:20736,1,"Mas Rose",43.554268,4.967519,0,0,OMA:SA:CTP20735,Europe/Paris,,OMA, +OMA:SP:20737,1,"Port Américain",43.546537,5.010319,0,0,OMA:SA:CTP20737,Europe/Paris,,OMA, +OMA:SP:20738,1,"College Pasteur",43.509661,4.988962,0,0,OMA:SA:CTP20738,Europe/Paris,,OMA, +OMA:SP:20739,1,"Paty",43.548608,4.971336,0,0,OMA:SA:CTP20739,Europe/Paris,,OMA, +OMA:SP:20740,1,"Paty",43.548761,4.971574,0,0,OMA:SA:CTP20739,Europe/Paris,,OMA, +OMA:SP:20741,1,"Peupliers",43.499307,4.980762,0,0,OMA:SA:CTP20741,Europe/Paris,,OMA, +OMA:SP:20742,1,"Peupliers",43.499632,4.981029,0,0,OMA:SA:CTP20741,Europe/Paris,,OMA, +OMA:SP:20744,1,"Piscine",43.507168,4.982837,0,0,OMA:SA:CTP20744,Europe/Paris,,OMA, +OMA:SP:20745,1,"Piscine",43.507224,4.982686,0,0,OMA:SA:CTP20744,Europe/Paris,,OMA, +OMA:SP:20746,1,"Piboules",43.59817,4.929969,0,0,OMA:SA:CTP20746,Europe/Paris,,OMA, +OMA:SP:20747,1,"Pommiers",43.595863,4.936952,0,0,OMA:SA:CTP20747,Europe/Paris,,OMA, +OMA:SP:20748,1,"Pommiers",43.595893,4.937154,0,0,OMA:SA:CTP20747,Europe/Paris,,OMA, +OMA:SP:20749,1,"Pommiers",43.595408,4.937887,0,0,OMA:SA:CTP20747,Europe/Paris,,OMA, +OMA:SP:20750,1,"P Piboules",43.495749,4.982844,0,0,OMA:SA:CTP20750,Europe/Paris,,OMA, +OMA:SP:20751,1,"P Piboules",43.495764,4.982803,0,0,OMA:SA:CTP20750,Europe/Paris,,OMA, +OMA:SP:20752,1,"Predina",43.493447,4.987227,0,0,OMA:SA:CTP20752,Europe/Paris,,OMA, +OMA:SP:20753,1,"Predina",43.493468,4.988064,0,0,OMA:SA:CTP20752,Europe/Paris,,OMA, +OMA:SP:20754,1,"Prepaou",43.496309,4.981131,0,0,OMA:SA:CTP20754,Europe/Paris,,OMA, +OMA:SP:20755,1,"Prepaou",43.496193,4.981118,0,0,OMA:SA:CTP20754,Europe/Paris,,OMA, +OMA:SP:20756,1,"P Saladelle",43.494008,4.985648,0,0,OMA:SA:CTP20756,Europe/Paris,,OMA, +OMA:SP:20757,1,"P Saladelle",43.4939,4.985988,0,0,OMA:SA:CTP20756,Europe/Paris,,OMA, +OMA:SP:20758,1,"Quinsanne",43.520417,4.99924,0,0,OMA:SA:CTP20758,Europe/Paris,,OMA, +OMA:SP:20759,1,"Ranquet",43.475545,4.997412,0,0,OMA:SA:CTP20759,Europe/Paris,,OMA, +OMA:SP:20760,1,"Rassuen",43.493472,4.977433,0,0,OMA:SA:CTP20760,Europe/Paris,,OMA, +OMA:SP:20761,1,"Romaniquette",43.511058,4.999682,0,0,OMA:SA:CTP20761,Europe/Paris,,OMA, +OMA:SP:20762,1,"Romaniquette",43.511061,4.999891,0,0,OMA:SA:CTP20761,Europe/Paris,,OMA, +OMA:SP:20763,1,"La Salle",43.504555,4.990918,0,0,OMA:SA:CTP20763,Europe/Paris,,OMA, +OMA:SP:20764,1,"La Salle",43.504357,4.991167,0,0,OMA:SA:CTP20763,Europe/Paris,,OMA, +OMA:SP:20765,1,"Sainte Catherine",43.516149,4.987747,0,0,OMA:SA:CTP20765,Europe/Paris,,OMA, +OMA:SP:20766,1,"Sainte Catherine",43.516055,4.98757,0,0,OMA:SA:CTP20765,Europe/Paris,,OMA, +OMA:SP:20767,1,"St Exupery",43.529231,4.975365,0,0,OMA:SA:CTP20767,Europe/Paris,,OMA, +OMA:SP:20768,1,"St Exupery",43.530082,4.975055,0,0,OMA:SA:CTP20767,Europe/Paris,,OMA, +OMA:SP:20769,1,"SNCF",43.515374,4.980769,0,0,OMA:SA:CTP20769,Europe/Paris,,OMA, +OMA:SP:20770,1,"Gare SNCF Istres",43.515263,4.980954,0,0,OMA:SA:CTP20770,Europe/Paris,,OMA, +OMA:SP:20771,1,"Sorbes 1",43.545823,4.977886,0,0,OMA:SA:CTP20771,Europe/Paris,,OMA, +OMA:SP:20772,1,"Sorbes 2",43.538883,4.983818,0,0,OMA:SA:CTP20772,Europe/Paris,,OMA, +OMA:SP:20773,1,"Sorbes 3",43.534872,4.984413,0,0,OMA:SA:CTP20773,Europe/Paris,,OMA, +OMA:SP:20774,1,"St Pierre1",43.495621,4.999037,0,0,OMA:SA:CTP20774,Europe/Paris,,OMA, +OMA:SP:20775,1,"St Pierre2",43.492887,4.999416,0,0,OMA:SA:CTP20775,Europe/Paris,,OMA, +OMA:SP:20776,1,"St Pierre",43.489223,5.000678,0,0,OMA:SA:CTP20776,Europe/Paris,,OMA, +OMA:SP:20778,1,"Castellan",43.516804,4.991505,0,0,OMA:SA:CTP20778,Europe/Paris,,OMA, +OMA:SP:20779,1,"Davini",43.476199,4.996618,0,0,OMA:SA:CTP20779,Europe/Paris,,OMA, +OMA:SP:20780,1,"ST Jean",43.536171,4.986834,0,0,OMA:SA:CTP20780,Europe/Paris,,OMA, +OMA:SP:20781,1,"Jean Moulin",43.502345,4.988426,0,0,OMA:SA:CTP20781,Europe/Paris,,OMA, +OMA:SP:20782,1,"Moutonnier",43.485485,4.956187,0,0,OMA:SA:CTP20782,Europe/Paris,,OMA, +OMA:SP:20783,1,"MAISON DE RETRAITE",43.488308,4.992873,0,0,OMA:SA:CTP20783,Europe/Paris,,OMA, +OMA:SP:20784,1,"La Poutre",43.505266,4.989235,0,0,OMA:SA:CTP20784,Europe/Paris,,OMA, +OMA:SP:20786,1,"Latécoère",43.504475,4.996094,0,0,OMA:SA:CTP20786,Europe/Paris,,OMA, +OMA:SP:20787,1,"Mendes France",43.500784,4.984698,0,0,OMA:SA:CTP20787,Europe/Paris,,OMA, +OMA:SP:20788,1,"Ranquet",43.475923,4.997487,0,0,OMA:SA:CTP20759,Europe/Paris,,OMA, +OMA:SP:20789,1,"Rimbaud",43.502326,4.986922,0,0,OMA:SA:CTP20789,Europe/Paris,,OMA, +OMA:SP:20790,1,"Sulauze",43.531731,4.998815,0,0,OMA:SA:CTP20790,Europe/Paris,,OMA, +OMA:SP:20793,1,"Capeau Tarnagas",43.505838,4.967627,0,0,OMA:SA:CTP20793,Europe/Paris,,OMA, +OMA:SP:20794,1,"Capeau Tarnagas",43.506884,4.967653,0,0,OMA:SA:CTP20793,Europe/Paris,,OMA, +OMA:SP:20795,1,"Tartugues 1",43.508577,4.976388,0,0,OMA:SA:CTP20795,Europe/Paris,,OMA, +OMA:SP:20796,1,"Tartugues 1",43.50852,4.976336,0,0,OMA:SA:CTP20795,Europe/Paris,,OMA, +OMA:SP:20797,1,"Tour de Nedon",43.50838,4.992422,0,0,OMA:SA:CTP20797,Europe/Paris,,OMA, +OMA:SP:20798,1,"Vigne Vieille",43.527457,4.998184,0,0,OMA:SA:CTP20798,Europe/Paris,,OMA, +OMA:SP:20799,1,"Vitou",43.523355,5.005902,0,0,OMA:SA:CTP20799,Europe/Paris,,OMA, +OMA:SP:20800,1,"ZI Retortier",43.531914,4.954018,0,0,OMA:SA:CTP20800,Europe/Paris,,OMA, +OMA:SP:20801,1,"4 Chemins",43.571496,5.019213,0,0,OMA:SA:CTP20801,Europe/Paris,,OMA, +OMA:SP:20802,1,"A Bruno",43.584374,5.010938,0,0,OMA:SA:CTP20802,Europe/Paris,,OMA, +OMA:SP:20803,1,"Acaccias",43.580752,5.014013,0,0,OMA:SA:CTP20803,Europe/Paris,,OMA, +OMA:SP:20804,1,"Escaillon",43.429475,5.047475,0,0,OMA:SA:CTP20804,Europe/Paris,,OMA, +OMA:SP:20805,1,"L'Escaillon",43.433764,5.041183,0,0,OMA:SA:CTP20805,Europe/Paris,,OMA, +OMA:SP:20806,1,"Emile Zola",43.399464,5.05927,0,0,OMA:SA:CTP20806,Europe/Paris,,OMA, +OMA:SP:20807,1,"Gendarmerie",43.424695,5.05363,0,0,OMA:SA:CTP20807,Europe/Paris,,OMA, +OMA:SP:20808,1,"Gendarmerie",43.425138,5.053611,0,0,OMA:SA:CTP20807,Europe/Paris,,OMA, +OMA:SP:20809,1,"Général Leclerc",43.402335,5.058167,0,0,OMA:SA:CTP20809,Europe/Paris,,OMA, +OMA:SP:20810,1,"Marcel Pagnol",43.412393,5.042554,0,0,OMA:SA:CTP20810,Europe/Paris,,OMA, +OMA:SP:20811,1,"Brise lame",43.417752,5.038316,0,0,OMA:SA:CTP20811,Europe/Paris,,OMA, +OMA:SP:20812,1,"Langevin",43.421136,5.058012,0,0,OMA:SA:CTP20812,Europe/Paris,,OMA, +OMA:SP:20813,1,"Lurçat",43.418437,5.036457,0,0,OMA:SA:CTP20813,Europe/Paris,,OMA, +OMA:SP:20814,1,"Kennedy",43.408801,5.051058,0,0,OMA:SA:CTP20814,Europe/Paris,,OMA, +OMA:SP:20815,1,"Aubanel",43.587775,5.002417,0,0,OMA:SA:CTP20815,Europe/Paris,,OMA, +OMA:SP:20816,1,"Aubanel",43.587697,5.00137,0,0,OMA:SA:CTP20815,Europe/Paris,,OMA, +OMA:SP:20817,1,"Baronnies",43.58628,5.013754,0,0,OMA:SA:CTP20817,Europe/Paris,,OMA, +OMA:SP:20818,1,"Barielles Sud",43.577751,5.011182,0,0,OMA:SA:CTP20818,Europe/Paris,,OMA, +OMA:SP:20819,1,"Briand Simian",43.581107,5.003527,0,0,OMA:SA:CTP20819,Europe/Paris,,OMA, +OMA:SP:20820,1,"Briand Avenir",43.587359,5.002742,0,0,OMA:SA:CTP20820,Europe/Paris,,OMA, +OMA:SP:20821,1,"Briand Avenir",43.587392,5.002622,0,0,OMA:SA:CTP20820,Europe/Paris,,OMA, +OMA:SP:20822,1,"Briand Cite Jardin",43.57721,5.001022,0,0,OMA:SA:CTP20822,Europe/Paris,,OMA, +OMA:SP:20823,1,"Briand Cite Jardin",43.577137,5.000666,0,0,OMA:SA:CTP20822,Europe/Paris,,OMA, +OMA:SP:20824,1,"Briand Centre Ville",43.582339,5.003685,0,0,OMA:SA:CTP20824,Europe/Paris,,OMA, +OMA:SP:20825,1,"Briand Centre Ville",43.582185,5.003611,0,0,OMA:SA:CTP20824,Europe/Paris,,OMA, +OMA:SP:20826,1,"Briand Liberte",43.579105,5.002792,0,0,OMA:SA:CTP20826,Europe/Paris,,OMA, +OMA:SP:20827,1,"Briand Liberte",43.579054,5.003037,0,0,OMA:SA:CTP20826,Europe/Paris,,OMA, +OMA:SP:20828,1,"BRIAND AVENIR",43.586657,5.002342,0,0,OMA:SA:CTP20828,Europe/Paris,,OMA, +OMA:SP:20829,1,"Briand Sully",43.58496,5.003152,0,0,OMA:SA:CTP20829,Europe/Paris,,OMA, +OMA:SP:20830,1,"Cabasse",43.58933,5.025675,0,0,OMA:SA:CTP20830,Europe/Paris,,OMA, +OMA:SP:20831,1,"Calade",43.560978,5.026376,0,0,OMA:SA:CTP20831,Europe/Paris,,OMA, +OMA:SP:20832,1,"Camus",43.574739,5.000661,0,0,OMA:SA:CTP20832,Europe/Paris,,OMA, +OMA:SP:20833,1,"Canadel",43.565141,5.025922,0,0,OMA:SA:CTP20833,Europe/Paris,,OMA, +OMA:SP:20834,1,"Caravelle",43.595134,5.006299,0,0,OMA:SA:CTP20834,Europe/Paris,,OMA, +OMA:SP:20835,1,"Caravelle",43.594921,5.006183,0,0,OMA:SA:CTP20834,Europe/Paris,,OMA, +OMA:SP:20836,1,"Collège Carraire",43.582349,5.004829,0,0,OMA:SA:CTP20836,Europe/Paris,,OMA, +OMA:SP:20837,1,"Cial Nord",43.601315,5.003771,0,0,OMA:SA:CTP20837,Europe/Paris,,OMA, +OMA:SP:20838,1,"M. Chalve",43.577356,4.997873,0,0,OMA:SA:CTP20838,Europe/Paris,,OMA, +OMA:SP:20839,1,"M. Chalve",43.577262,4.99803,0,0,OMA:SA:CTP20838,Europe/Paris,,OMA, +OMA:SP:20840,1,"Chantegrive",43.588212,4.994933,0,0,OMA:SA:CTP20840,Europe/Paris,,OMA, +OMA:SP:20841,1,"Chantegrive",43.588508,4.995083,0,0,OMA:SA:CTP20840,Europe/Paris,,OMA, +OMA:SP:20842,1,"Chateau d'Eau",43.573432,5.005763,0,0,OMA:SA:CTP20842,Europe/Paris,,OMA, +OMA:SP:20843,1,"Chirons",43.583742,5.009228,0,0,OMA:SA:CTP20843,Europe/Paris,,OMA, +OMA:SP:20844,1,"Quenouille",43.586698,4.995578,0,0,OMA:SA:CTP20844,Europe/Paris,,OMA, +OMA:SP:20845,1,"Cite Capitaine",43.584297,4.992121,0,0,OMA:SA:CTP20845,Europe/Paris,,OMA, +OMA:SP:20846,1,"Cimetière",43.57521,5.009017,0,0,OMA:SA:CTP20846,Europe/Paris,,OMA, +OMA:SP:20847,1,"Clos de Craponne",43.581946,5.015196,0,0,OMA:SA:CTP20847,Europe/Paris,,OMA, +OMA:SP:20848,1,"Clos de Pierre",43.576138,5.014785,0,0,OMA:SA:CTP20848,Europe/Paris,,OMA, +OMA:SP:20849,1,"La Croix",43.564874,5.021099,0,0,OMA:SA:CTP20849,Europe/Paris,,OMA, +OMA:SP:20850,1,"Cadran Solaire",43.595035,5.009227,0,0,OMA:SA:CTP20850,Europe/Paris,,OMA, +OMA:SP:20851,1,"Cadran Solaire",43.594945,5.009198,0,0,OMA:SA:CTP20850,Europe/Paris,,OMA, +OMA:SP:20852,1,"CTM",43.578343,5.009538,0,0,OMA:SA:CTP20852,Europe/Paris,,OMA, +OMA:SP:20853,1,"CTM",43.578323,5.010476,0,0,OMA:SA:CTP20852,Europe/Paris,,OMA, +OMA:SP:20854,1,"Depot SNCF",43.581671,4.997555,0,0,OMA:SA:CTP20854,Europe/Paris,,OMA, +OMA:SP:20855,1,"EDF",43.581518,5.013976,0,0,OMA:SA:CTP20855,Europe/Paris,,OMA, +OMA:SP:20856,1,"Espagnols",43.582296,5.01739,0,0,OMA:SA:CTP20856,Europe/Paris,,OMA, +OMA:SP:20857,1,"Essors",43.599211,5.002171,0,0,OMA:SA:CTP20857,Europe/Paris,,OMA, +OMA:SP:20858,1,"Etamat",43.586842,4.984904,0,0,OMA:SA:CTP20858,Europe/Paris,,OMA, +OMA:SP:20859,1,"Etamat",43.586761,4.985359,0,0,OMA:SA:CTP20858,Europe/Paris,,OMA, +OMA:SP:20860,1,"Salle des Fêtes",43.594065,4.99786,0,0,OMA:SA:CTP20860,Europe/Paris,,OMA, +OMA:SP:20861,1,"Salle des Fêtes",43.594679,4.998391,0,0,OMA:SA:CTP20860,Europe/Paris,,OMA, +OMA:SP:20862,1,"Fontlongue",43.588251,4.998605,0,0,OMA:SA:CTP20862,Europe/Paris,,OMA, +OMA:SP:20863,1,"Fontlongue",43.588022,4.998964,0,0,OMA:SA:CTP20862,Europe/Paris,,OMA, +OMA:SP:20864,1,"Garouvins",43.572415,5.018631,0,0,OMA:SA:CTP20864,Europe/Paris,,OMA, +OMA:SP:20865,1,"Garouvins",43.572577,5.019123,0,0,OMA:SA:CTP20864,Europe/Paris,,OMA, +OMA:SP:20866,1,"Gendarmerie",43.591693,5.003998,0,0,OMA:SA:CTP20866,Europe/Paris,,OMA, +OMA:SP:20867,1,"Gendarmerie",43.591894,5.003871,0,0,OMA:SA:CTP20866,Europe/Paris,,OMA, +OMA:SP:20868,1,"Francis Turcan Di Lorto",43.41272,5.050035,0,0,OMA:SA:CTP20868,Europe/Paris,,OMA, +OMA:SP:20869,1,"Francis Turcan Di Lorto",43.412709,5.051072,0,0,OMA:SA:CTP20868,Europe/Paris,,OMA, +OMA:SP:20870,1,"Croix Sainte Gare",43.410673,5.019828,0,0,OMA:SA:CTP20870,Europe/Paris,,OMA, +OMA:SP:20871,1,"Croix Sainte Gare",43.410601,5.01976,0,0,OMA:SA:CTP20870,Europe/Paris,,OMA, +OMA:SP:20872,1,"Hotel de police",43.40639,5.046975,0,0,OMA:SA:CTP20872,Europe/Paris,,OMA, +OMA:SP:20873,1,"Jardins de St Jean",43.409722,5.014108,0,0,OMA:SA:CTP20873,Europe/Paris,,OMA, +OMA:SP:20874,1,"Jardins de St Jean",43.409582,5.013284,0,0,OMA:SA:CTP20873,Europe/Paris,,OMA, +OMA:SP:20875,1,"Mairie Annexe",43.410571,5.029577,0,0,OMA:SA:CTP20875,Europe/Paris,,OMA, +OMA:SP:20876,1,"Mairie Annexe",43.410402,5.031027,0,0,OMA:SA:CTP20875,Europe/Paris,,OMA, +OMA:SP:20877,1,"Moulin de France",43.410359,5.042231,0,0,OMA:SA:CTP20877,Europe/Paris,,OMA, +OMA:SP:20878,1,"Moulin de France",43.410274,5.042228,0,0,OMA:SA:CTP20877,Europe/Paris,,OMA, +OMA:SP:20879,1,"Place des Aires",43.407109,5.056433,0,0,OMA:SA:CTP20879,Europe/Paris,,OMA, +OMA:SP:20880,1,"Pauvre Homme",43.410357,5.03232,0,0,OMA:SA:CTP20880,Europe/Paris,,OMA, +OMA:SP:20881,1,"Pauvre Homme",43.410447,5.032751,0,0,OMA:SA:CTP20880,Europe/Paris,,OMA, +OMA:SP:20882,1,"Paul Langevin",43.421492,5.05764,0,0,OMA:SA:CTP20882,Europe/Paris,,OMA, +OMA:SP:20883,1,"Quai des Girondins",43.407531,5.054338,0,0,OMA:SA:CTP20883,Europe/Paris,,OMA, +OMA:SP:20884,1,"Gare SNCF Miramas",43.580384,4.999614,0,0,OMA:SA:CTP20884,Europe/Paris,,OMA, +OMA:SP:20885,1,"Village de Marques",43.593362,4.993894,0,0,OMA:SA:CTP20885,Europe/Paris,,OMA, +OMA:SP:20886,1,"Fontlongue",43.58828,4.998791,0,0,OMA:SA:CTP20862,Europe/Paris,,OMA, +OMA:SP:20889,1,"JC Gresset",43.589356,5.004428,0,0,OMA:SA:CTP20889,Europe/Paris,,OMA, +OMA:SP:20890,1,"Jardin du Lac",43.589913,5.014159,0,0,OMA:SA:CTP20890,Europe/Paris,,OMA, +OMA:SP:20891,1,"Jean Mace",43.582886,5.004217,0,0,OMA:SA:CTP20891,Europe/Paris,,OMA, +OMA:SP:20892,1,"Jean Moulin",43.577382,5.005556,0,0,OMA:SA:CTP20892,Europe/Paris,,OMA, +OMA:SP:20893,1,"Jean Moulin",43.577516,5.005624,0,0,OMA:SA:CTP20892,Europe/Paris,,OMA, +OMA:SP:20894,1,"Jules Ferry",43.587604,4.997571,0,0,OMA:SA:CTP20894,Europe/Paris,,OMA, +OMA:SP:20895,1,"Lycee Cocteau",43.586332,5.009629,0,0,OMA:SA:CTP20895,Europe/Paris,,OMA, +OMA:SP:20896,1,"Lep Alpilles",43.596387,5.000301,0,0,OMA:SA:CTP20896,Europe/Paris,,OMA, +OMA:SP:20897,1,"Les Alpilles",43.595932,5.000009,0,0,OMA:SA:CTP20897,Europe/Paris,,OMA, +OMA:SP:20898,1,"C Cial Sud",43.576057,4.998394,0,0,OMA:SA:CTP20898,Europe/Paris,,OMA, +OMA:SP:20899,1,"C Cial Sud",43.575882,4.998372,0,0,OMA:SA:CTP20898,Europe/Paris,,OMA, +OMA:SP:20900,1,"Stade Meano",43.578755,5.004965,0,0,OMA:SA:CTP20900,Europe/Paris,,OMA, +OMA:SP:20901,1,"Stade Meano",43.578844,5.004994,0,0,OMA:SA:CTP20900,Europe/Paris,,OMA, +OMA:SP:20902,1,"Médiathèque",43.585889,5.006361,0,0,OMA:SA:CTP20902,Europe/Paris,,OMA, +OMA:SP:20903,1,"Médiathèque",43.586085,5.00664,0,0,OMA:SA:CTP20902,Europe/Paris,,OMA, +OMA:SP:20904,1,"Mille-pas",43.584369,5.012903,0,0,OMA:SA:CTP20904,Europe/Paris,,OMA, +OMA:SP:20905,1,"Miramaris",43.594331,5.010852,0,0,OMA:SA:CTP20905,Europe/Paris,,OMA, +OMA:SP:20906,1,"Miramaris",43.594201,5.011069,0,0,OMA:SA:CTP20905,Europe/Paris,,OMA, +OMA:SP:20907,1,"Miroiterie",43.576449,5.014522,0,0,OMA:SA:CTP20907,Europe/Paris,,OMA, +OMA:SP:20908,1,"Les Molières 2",43.590141,5.005467,0,0,OMA:SA:CTP20908,Europe/Paris,,OMA, +OMA:SP:20909,1,"Monteau",43.57367,5.003317,0,0,OMA:SA:CTP20909,Europe/Paris,,OMA, +OMA:SP:20910,1,"Monteau",43.573776,5.003359,0,0,OMA:SA:CTP20909,Europe/Paris,,OMA, +OMA:SP:20911,1,"Mourettes",43.568643,5.01909,0,0,OMA:SA:CTP20911,Europe/Paris,,OMA, +OMA:SP:20912,1,"Olivarelles",43.582117,5.016365,0,0,OMA:SA:CTP20912,Europe/Paris,,OMA, +OMA:SP:20913,1,"Palouquin",43.582748,5.018413,0,0,OMA:SA:CTP20913,Europe/Paris,,OMA, +OMA:SP:20914,1,"Piscine",43.591657,5.002875,0,0,OMA:SA:CTP20914,Europe/Paris,,OMA, +OMA:SP:20915,1,"Piscine",43.591889,5.002906,0,0,OMA:SA:CTP20914,Europe/Paris,,OMA, +OMA:SP:20916,1,"Rosiers",43.58063,5.010736,0,0,OMA:SA:CTP20916,Europe/Paris,,OMA, +OMA:SP:20917,1,"Rousse Molieres",43.592003,5.009271,0,0,OMA:SA:CTP20917,Europe/Paris,,OMA, +OMA:SP:20918,1,"Rousse Molieres",43.59211,5.009313,0,0,OMA:SA:CTP20917,Europe/Paris,,OMA, +OMA:SP:20919,1,"Royaume-Uni/Alpilles",43.598298,5.000659,0,0,OMA:SA:CTP20919,Europe/Paris,,OMA, +OMA:SP:20920,1,"Saladelle",43.575778,5.007585,0,0,OMA:SA:CTP20920,Europe/Paris,,OMA, +OMA:SP:20921,1,"Saladelle",43.575789,5.007535,0,0,OMA:SA:CTP20920,Europe/Paris,,OMA, +OMA:SP:20922,1,"Schweitzer",43.590995,5.007731,0,0,OMA:SA:CTP20922,Europe/Paris,,OMA, +OMA:SP:20923,1,"Seigneurie Carnot",43.56389,5.027646,0,0,OMA:SA:CTP20923,Europe/Paris,,OMA, +OMA:SP:20924,1,"St Exupery",43.589769,5.009484,0,0,OMA:SA:CTP20924,Europe/Paris,,OMA, +OMA:SP:20925,1,"Stade Meano",43.578492,5.005328,0,0,OMA:SA:CTP20900,Europe/Paris,,OMA, +OMA:SP:20927,1,"Terrasses",43.598005,5.009861,0,0,OMA:SA:CTP20927,Europe/Paris,,OMA, +OMA:SP:20928,1,"Terrasses",43.598173,5.009968,0,0,OMA:SA:CTP20927,Europe/Paris,,OMA, +OMA:SP:20929,1,"Emile Zola",43.399539,5.061165,0,0,OMA:SA:CTP20806,Europe/Paris,,OMA, +OMA:SP:20930,1,"Général Leclerc",43.403684,5.057119,0,0,OMA:SA:CTP20809,Europe/Paris,,OMA, +OMA:SP:20931,1,"Théâtre Cocteau",43.587075,5.00754,0,0,OMA:SA:CTP20931,Europe/Paris,,OMA, +OMA:SP:20932,1,"Théâtre Cocteau",43.587152,5.007865,0,0,OMA:SA:CTP20931,Europe/Paris,,OMA, +OMA:SP:20933,1,"Taussanne Cougnil",43.582619,5.01999,0,0,OMA:SA:CTP20933,Europe/Paris,,OMA, +OMA:SP:20934,1,"village",43.563237,5.023171,0,0,OMA:SA:CTP20934,Europe/Paris,,OMA, +OMA:SP:20935,1,"Le Vieux",43.563304,5.02811,0,0,OMA:SA:CTP20935,Europe/Paris,,OMA, +OMA:SP:20936,1,"le Vieux",43.563302,5.028351,0,0,OMA:SA:CTP20936,Europe/Paris,,OMA, +OMA:SP:20937,1,"Les Accacias",43.411143,4.999383,0,0,OMA:SA:CTP20937,Europe/Paris,,OMA, +OMA:SP:20938,1,"Les Accacias",43.411067,4.999385,0,0,OMA:SA:CTP20937,Europe/Paris,,OMA, +OMA:SP:20939,1,"Carrefour",43.41233,4.999836,0,0,OMA:SA:CTP20939,Europe/Paris,,OMA, +OMA:SP:20940,1,"Château d'eau",43.418247,4.99014,0,0,OMA:SA:CTP20940,Europe/Paris,,OMA, +OMA:SP:20941,1,"Château d'Eau",43.418488,4.989642,0,0,OMA:SA:CTP20941,Europe/Paris,,OMA, +OMA:SP:20942,1,"Cimetière",43.413208,4.985549,0,0,OMA:SA:CTP20942,Europe/Paris,,OMA, +OMA:SP:20943,1,"Cimetière",43.413937,4.986036,0,0,OMA:SA:CTP20942,Europe/Paris,,OMA, +OMA:SP:20944,1,"Clément Mille",43.411111,5.001876,0,0,OMA:SA:CTP20944,Europe/Paris,,OMA, +OMA:SP:20945,1,"Les Combattants",43.405502,4.980788,0,0,OMA:SA:CTP20945,Europe/Paris,,OMA, +OMA:SP:20946,1,"Les Combattants",43.405551,4.980696,0,0,OMA:SA:CTP20945,Europe/Paris,,OMA, +OMA:SP:20947,1,"La Draille",43.415213,4.994165,0,0,OMA:SA:CTP20947,Europe/Paris,,OMA, +OMA:SP:20948,1,"Ecole Jean Moulin",43.407629,4.991594,0,0,OMA:SA:CTP20948,Europe/Paris,,OMA, +OMA:SP:20949,1,"Gare SNCF Port de Bouc",43.406563,4.984457,0,0,OMA:SA:CTP20949,Europe/Paris,,OMA, +OMA:SP:20950,1,"Hotel de Ville",43.406431,4.986255,0,0,OMA:SA:CTP20950,Europe/Paris,,OMA, +OMA:SP:20951,1,"Rouget de l'Isle",43.402527,4.9805,0,0,OMA:SA:CTP20951,Europe/Paris,,OMA, +OMA:SP:20952,1,"Rouget de l'Isle",43.402527,4.9805,0,0,OMA:SA:CTP20951,Europe/Paris,,OMA, +OMA:SP:20953,1,"Jean Moulin",43.407566,4.988084,0,0,OMA:SA:CTP20953,Europe/Paris,,OMA, +OMA:SP:20954,1,"Jean Moulin",43.407708,4.988156,0,0,OMA:SA:CTP20953,Europe/Paris,,OMA, +OMA:SP:20955,1,"Langevin",43.410946,4.983286,0,0,OMA:SA:CTP20955,Europe/Paris,,OMA, +OMA:SP:20956,1,"Langevin",43.410979,4.983243,0,0,OMA:SA:CTP20955,Europe/Paris,,OMA, +OMA:SP:20957,1,"Lycée Mongrand",43.408622,4.980654,0,0,OMA:SA:CTP20957,Europe/Paris,,OMA, +OMA:SP:20958,1,"Guy Moquet",43.408441,4.995716,0,0,OMA:SA:CTP20958,Europe/Paris,,OMA, +OMA:SP:20959,1,"Paul Eluard",43.41143,4.99353,0,0,OMA:SA:CTP20959,Europe/Paris,,OMA, +OMA:SP:20960,1,"Paul Eluard",43.411304,4.993784,0,0,OMA:SA:CTP20959,Europe/Paris,,OMA, +OMA:SP:20961,1,"La Poste",43.406472,4.981904,0,0,OMA:SA:CTP20961,Europe/Paris,,OMA, +OMA:SP:20962,1,"La Respelido",43.406366,4.984215,0,0,OMA:SA:CTP20962,Europe/Paris,,OMA, +OMA:SP:20963,1,"Romain Rolland",43.410979,4.98974,0,0,OMA:SA:CTP20963,Europe/Paris,,OMA, +OMA:SP:20964,1,"Romain Rolland",43.411377,4.99043,0,0,OMA:SA:CTP20963,Europe/Paris,,OMA, +OMA:SP:20965,1,"St Jean",43.410735,5.006019,0,0,OMA:SA:CTP20965,Europe/Paris,,OMA, +OMA:SP:20966,1,"St Jean",43.410631,5.005918,0,0,OMA:SA:CTP20965,Europe/Paris,,OMA, +OMA:SP:20967,1,"Lotissement Boucasons",43.517856,4.967018,0,0,OMA:SA:CTP20967,Europe/Paris,,OMA, +OMA:SP:20969,1,"Vauban",43.397818,4.794004,0,0,OM8:SA:CTP500751,Europe/Paris,,OMA, +OMA:SP:20970,1,"Avenue du Port",43.393727,4.798163,0,0,OMA:SA:CTP20970,Europe/Paris,,OMA, +OMA:SP:20971,1,"Avenue du Port",43.393705,4.798054,0,0,OMA:SA:CTP20970,Europe/Paris,,OMA, +OMA:SP:20972,1,"Aragon",43.389378,4.806047,0,0,OMA:SA:CTP20972,Europe/Paris,,OMA, +OMA:SP:20973,1,"Aragon",43.38938,4.806098,0,0,OMA:SA:CTP20972,Europe/Paris,,OMA, +OMA:SP:20974,1,"Benoît Franchon",43.392781,4.806858,0,0,OMA:SA:CTP20974,Europe/Paris,,OMA, +OMA:SP:20975,1,"France Bloch",43.398216,4.797229,0,0,OMA:SA:CTP20975,Europe/Paris,,OMA, +OMA:SP:20976,1,"Carteau",43.387762,4.850019,0,0,OMA:SA:CTP20976,Europe/Paris,,OMA, +OMA:SP:20977,1,"Chopin",43.39004,4.809896,0,0,OMA:SA:CTP20977,Europe/Paris,,OMA, +OMA:SP:20978,1,"Chopin",43.390172,4.809967,0,0,OMA:SA:CTP20977,Europe/Paris,,OMA, +OMA:SP:20979,1,"Cimetière",43.388174,4.836259,0,0,OMA:SA:CTP20979,Europe/Paris,,OMA, +OMA:SP:20980,1,"Centre Médical",43.393294,4.796842,0,0,OMA:SA:CTP20980,Europe/Paris,,OMA, +OMA:SP:20981,1,"Centre Médical",43.393256,4.796797,0,0,OMA:SA:CTP20980,Europe/Paris,,OMA, +OMA:SP:20982,1,"Ambroise Croizat",43.393514,4.80422,0,0,OMA:SA:CTP20982,Europe/Paris,,OMA, +OMA:SP:20983,1,"Ambroise Croizat",43.393487,4.804319,0,0,OMA:SA:CTP20982,Europe/Paris,,OMA, +OMA:SP:20984,1,"Domaine de l'Eyselle",43.430759,4.7603,0,0,OMA:SA:CTP20984,Europe/Paris,,OMA, +OMA:SP:20985,1,"Domaine de l'Eyselle",43.430725,4.760507,0,0,OMA:SA:CTP20984,Europe/Paris,,OMA, +OMA:SP:20986,1,"Douane-La Tour",43.383671,4.806798,0,0,OMA:SA:CTP20986,Europe/Paris,,OMA, +OMA:SP:20987,1,"Douane",43.383474,4.807486,0,0,OMA:SA:CTP20987,Europe/Paris,,OMA, +OMA:SP:20988,1,"Fontaine",43.389367,4.802018,0,0,OMA:SA:CTP20988,Europe/Paris,,OMA, +OMA:SP:20989,1,"Anatole France",43.382678,4.810239,0,0,OMA:SA:CTP20989,Europe/Paris,,OMA, +OMA:SP:20990,1,"Guy Moquet",43.392232,4.799415,0,0,OMA:SA:CTP20990,Europe/Paris,,OMA, +OMA:SP:20991,1,"Guy Moquet",43.392265,4.79951,0,0,OMA:SA:CTP20990,Europe/Paris,,OMA, +OMA:SP:20992,1,"Gustave Vidal",43.394987,4.802807,0,0,OMA:SA:CTP20992,Europe/Paris,,OMA, +OMA:SP:20993,1,"Gustave Vidal",43.395021,4.802912,0,0,OMA:SA:CTP20992,Europe/Paris,,OMA, +OMA:SP:20994,1,"Hôtel de Ville",43.387541,4.80387,0,0,OMA:SA:CTP20994,Europe/Paris,,OMA, +OMA:SP:20995,1,"Hôtel de Ville",43.38754,4.803691,0,0,OMA:SA:CTP20994,Europe/Paris,,OMA, +OMA:SP:20997,1,"Square Léo Lélée",43.396345,4.800826,0,0,OMA:SA:CTP20997,Europe/Paris,,OMA, +OMA:SP:20998,1,"Lycée H Leroy",43.386256,4.80237,0,0,OMA:SA:CTP20998,Europe/Paris,,OMA, +OMA:SP:20999,1,"Square Léo Lelée",43.396372,4.800617,0,0,OMA:SA:CTP20999,Europe/Paris,,OMA, +OMA:SP:21000,1,"République",43.388847,4.807398,0,0,OMA:SA:CTP21000,Europe/Paris,,OMA, +OMA:SP:21001,1,"République",43.388869,4.807327,0,0,OMA:SA:CTP21000,Europe/Paris,,OMA, +OMA:SP:21002,1,"Mallabarge Allende",43.391328,4.810633,0,0,OMA:SA:CTP21002,Europe/Paris,,OMA, +OMA:SP:21003,1,"Mas de Campane",43.439515,4.751246,0,0,OMA:SA:CTP21003,Europe/Paris,,OMA, +OMA:SP:21004,1,"Mas de Campane",43.439577,4.751272,0,0,OMA:SA:CTP21003,Europe/Paris,,OMA, +OMA:SP:21005,1,"Ecole LMichel",43.386196,4.802408,0,0,OMA:SA:CTP21005,Europe/Paris,,OMA, +OMA:SP:21006,1,"Les Mouettes",43.387675,4.80482,0,0,OMA:SA:CTP21006,Europe/Paris,,OMA, +OMA:SP:21007,1,"Les Mouettes",43.387722,4.805126,0,0,OMA:SA:CTP21006,Europe/Paris,,OMA, +OMA:SP:21008,1,"Navy Service",43.385342,4.832572,0,0,OMA:SA:CTP21008,Europe/Paris,,OMA, +OMA:SP:21009,1,"La Tour",43.383871,4.80605,0,0,OMA:SA:CTP21009,Europe/Paris,,OMA, +OMA:SP:21010,1,"Porte de l Asie",43.405224,4.831114,0,0,OMA:SA:CTP21010,Europe/Paris,,OMA, +OMA:SP:21011,1,"Porte de l'Asie",43.405335,4.830976,0,0,OMA:SA:CTP21011,Europe/Paris,,OMA, +OMA:SP:21012,1,"Porte de l Europe",43.410969,4.825981,0,0,OMA:SA:CTP21012,Europe/Paris,,OMA, +OMA:SP:21013,1,"Porte de l'Europe",43.410892,4.82587,0,0,OMA:SA:CTP21013,Europe/Paris,,OMA, +OMA:SP:21014,1,"Paul Eluard",43.397676,4.797966,0,0,OMA:SA:CTP21014,Europe/Paris,,OMA, +OMA:SP:21015,1,"Pierre Gabrielli",43.39472,4.798887,0,0,OMA:SA:CTP21015,Europe/Paris,,OMA, +OMA:SP:21016,1,"Pierre Gabrielli",43.394785,4.798772,0,0,OMA:SA:CTP21015,Europe/Paris,,OMA, +OMA:SP:21017,1,"Pôle Jeunesse",43.393807,4.807436,0,0,OMA:SA:CTP21017,Europe/Paris,,OMA, +OMA:SP:21018,1,"Port Napoléon",43.37754,4.828473,0,0,OMA:SA:CTP21018,Europe/Paris,,OMA, +OMA:SP:21019,1,"P Provence",43.389677,4.801825,0,0,OMA:SA:CTP21019,Europe/Paris,,OMA, +OMA:SP:21020,1,"Elsa Triolet",43.391829,4.80513,0,0,OMA:SA:CTP21020,Europe/Paris,,OMA, +OMA:SP:21021,1,"Elsa Triolet",43.391882,4.805216,0,0,OMA:SA:CTP21020,Europe/Paris,,OMA, +OMA:SP:21022,1,"Rebatun",43.47093,4.768515,0,0,OMA:SA:CTP21022,Europe/Paris,,OMA, +OMA:SP:21023,1,"Rebatun",43.470947,4.768697,0,0,OMA:SA:CTP21022,Europe/Paris,,OMA, +OMA:SP:21025,1,"Les Lauriers Roses",43.379932,4.813237,0,0,OMA:SA:CTP21025,Europe/Paris,,OMA, +OMA:SP:21026,1,"République",43.388939,4.807645,0,0,OMA:SA:CTP21000,Europe/Paris,,OMA, +OMA:SP:21027,1,"République",43.388991,4.807558,0,0,OMA:SA:CTP21000,Europe/Paris,,OMA, +OMA:SP:21028,1,"Sardinerie",43.378955,4.840376,0,0,OMA:SA:CTP21028,Europe/Paris,,OMA, +OMA:SP:21030,1,"Stade le Taberner",43.394024,4.797987,0,0,OM8:SA:CTP500726,Europe/Paris,,OMA, +OMA:SP:21031,1,"Stade le Taberner",43.394049,4.79785,0,0,OM8:SA:CTP500726,Europe/Paris,,OMA, +OMA:SP:21032,1,"Stade Taberner",43.393995,4.79779,0,0,OM8:SA:CTP500726,Europe/Paris,,OMA, +OMA:SP:21033,1,"Victor Sardou",43.397675,4.792909,0,0,OMA:SA:CTP21033,Europe/Paris,,OMA, +OMA:SP:21034,1,"Victor Sardou",43.397602,4.792859,0,0,OMA:SA:CTP21033,Europe/Paris,,OMA, +OMA:SP:21035,1,"Vauban",43.397806,4.794143,0,0,OM8:SA:CTP500751,Europe/Paris,,OMA, +OMA:SP:21036,1,"Vauban",43.397825,4.794199,0,0,OM8:SA:CTP500751,Europe/Paris,,OMA, +OMA:SP:21037,1,"Cimitière St Chamas",43.544723,5.041419,0,0,OMA:SA:CTP21037,Europe/Paris,,OMA, +OMA:SP:21038,1,"Cimitière St Chamas",43.546537,5.041026,0,0,OMA:SA:CTP21037,Europe/Paris,,OMA, +OMA:SP:21039,1,"Joliot Curie",43.548762,5.036732,0,0,OMA:SA:CTP21039,Europe/Paris,,OMA, +OMA:SP:21040,1,"Guéby Nord",43.544885,5.039122,0,0,OMA:SA:CTP21040,Europe/Paris,,OMA, +OMA:SP:21041,1,"Guéby Nord",43.545113,5.038625,0,0,OMA:SA:CTP21040,Europe/Paris,,OMA, +OMA:SP:21042,1,"Guéby Nord",43.544885,5.039122,0,0,OMA:SA:CTP21040,Europe/Paris,,OMA, +OMA:SP:21043,1,"Guéby Sud",43.542597,5.041151,0,0,OMA:SA:CTP21043,Europe/Paris,,OMA, +OMA:SP:21045,1,"Boisgelin",43.556658,5.031945,0,0,OMA:SA:CTP21045,Europe/Paris,,OMA, +OMA:SP:21046,1,"Boisgelin",43.55677,5.032082,0,0,OMA:SA:CTP21045,Europe/Paris,,OMA, +OMA:SP:21047,1,"Centre ville",43.550393,5.034145,0,0,OMA:SA:CTP21047,Europe/Paris,,OMA, +OMA:SP:21048,1,"Gabriel Peri",43.552702,5.034176,0,0,OMA:SA:CTP21048,Europe/Paris,,OMA, +OMA:SP:21049,1,"Gabriel Peri",43.552938,5.03418,0,0,OMA:SA:CTP21048,Europe/Paris,,OMA, +OMA:SP:21050,1,"Joliot Curie",43.548782,5.036705,0,0,OMA:SA:CTP21039,Europe/Paris,,OMA, +OMA:SP:21051,1,"Les Arcades",43.550946,5.03688,0,0,OMA:SA:CTP21051,Europe/Paris,,OMA, +OMA:SP:21052,1,"La Croix",43.544868,5.038937,0,0,OMA:SA:CTP21052,Europe/Paris,,OMA, +OMA:SP:21053,1,"Les Ferrages",43.546772,5.038668,0,0,OMA:SA:CTP21053,Europe/Paris,,OMA, +OMA:SP:21059,1,"Iles d'Or",43.467883,5.00772,0,0,OMA:SA:CTP21059,Europe/Paris,,OMA, +OMA:SP:21060,1,"Jean Sébastien Bach",43.468075,5.00288,0,0,OMA:SA:CTP21060,Europe/Paris,,OMA, +OMA:SP:21061,1,"Lavoisier",43.469424,5.014617,0,0,OMA:SA:CTP21061,Europe/Paris,,OMA, +OMA:SP:21062,1,"Massane Plage",43.468315,5.020119,0,0,OMA:SA:CTP21062,Europe/Paris,,OMA, +OMA:SP:21063,1,"Salle Polyvalente",43.468878,5.011277,0,0,OMA:SA:CTP21063,Europe/Paris,,OMA, +OMA:SP:21064,1,"Vivaldi",43.469254,5.001655,0,0,OMA:SA:CTP21064,Europe/Paris,,OMA, +OMA:SP:21065,1,"Zac des Etangs",43.436735,5.036366,0,0,OMA:SA:CTP21065,Europe/Paris,,OMA, +OMA:SP:21066,1,"Zac des Etangs",43.437598,5.03576,0,0,OMA:SA:CTP21065,Europe/Paris,,OMA, +OMA:SP:21067,1,"Pont de la Gare",43.551501,5.039694,0,0,OMA:SA:CTP21067,Europe/Paris,,OMA, +OMA:SP:21096,1,"SENEYMES 1",27.140959,-3.404569,0,0,SIN:SA:OCE87697540,Europe/Paris,,OMA, +OMA:SP:21097,1,"SENEYMES 2",27.140959,-3.404569,0,0,OMA:SA:CTP21097,Europe/Paris,,OMA, +OMA:SP:21098,1,"PORT - LAURONS",27.140959,-3.404569,0,0,OMA:SA:CTP21098,Europe/Paris,,OMA, +OMA:SP:21099,1,"GARE PONTEAU 1",27.140959,-3.404569,0,0,OMA:SA:CTP21099,Europe/Paris,,OMA, +OMA:SP:21100,1,"GARE PONTEAU 2",27.140959,-3.404569,0,0,OMA:SA:CTP21100,Europe/Paris,,OMA, +OMA:SP:21101,1,"PK MARCHE",27.140959,-3.404569,0,0,OET:SA:CTP30638,Europe/Paris,,OMA, +OMA:SP:21102,1,"PIEDS EAU 1",27.140959,-3.404569,0,0,SIN:SA:OCE87697540,Europe/Paris,,OMA, +OMA:SP:21103,1,"PIEDS EAU 2",27.140959,-3.404569,0,0,OMA:SA:CTP21103,Europe/Paris,,OMA, +OMA:SP:21104,1,"MAISON RETRAITE ISTRES",27.140959,-3.404569,0,0,OMA:SA:CTP21104,Europe/Paris,,OMA, +OMA:SP:21105,1,"MAISON RETRAITE ISTRES2",27.140959,-3.404569,0,0,OMA:SA:CTP21105,Europe/Paris,,OMA, +OMA:SP:21106,1,"CHATEAU D'EAU",43.41295,5.020012,0,0,OMA:SA:CTP21106,Europe/Paris,,OMA, +OMA:SP:21107,1,"ARMAND GUIGUE",43.418794,4.994973,0,0,OMA:SA:CTP21107,Europe/Paris,,OMA, +OMA:SP:21108,1,"ALLEE DES MERLES",43.414994,5.011929,0,0,OMA:SA:CTP21108,Europe/Paris,,OMA, +OMA:SP:21109,1,"CHRISTOFOL",43.408806,4.979574,0,0,OMA:SA:CTP21109,Europe/Paris,,OMA, +OMA:SP:21110,1,"LA BAUMASSE",43.416317,4.973938,0,0,OMA:SA:CTP21110,Europe/Paris,,OMA, +OMA:SP:21112,1,"Chemin de Blanc",43.457396,4.927681,0,0,OMA:SA:CTP20544,Europe/Paris,,OMA, +OMA:SP:21113,1,"Calameau",43.599129,4.93554,0,0,OMA:SA:CTP20649,Europe/Paris,,OMA, +OMA:SP:21115,1,"Quenouille",43.587731,4.993925,0,0,OMA:SA:CTP20844,Europe/Paris,,OMA, +OMA:SP:21116,1,"Chantegrive les rivières",43.589277,4.993957,0,0,OMA:SA:CTP21116,Europe/Paris,,OMA, +OMA:SP:21117,1,"Chantegrive les rivières",43.589278,4.994053,0,0,OMA:SA:CTP21116,Europe/Paris,,OMA, +OMA:SP:21118,1,"Sécurité Social",43.405237,4.982432,0,0,OMA:SA:CTP21118,Europe/Paris,,OMA, +OMA:SP:21119,1,"Manne 2",43.515434,4.971725,0,0,OMA:SA:CTP21119,Europe/Paris,,OMA, +OMA:SP:21120,1,"Quinsanne",43.520346,4.99945,0,0,OMA:SA:CTP20758,Europe/Paris,,OMA, +OMA:SP:21121,1,"ST Jean",43.536228,4.986966,0,0,OMA:SA:CTP20780,Europe/Paris,,OMA, +OMA:SP:21122,1,"Sulauze",43.531803,4.998713,0,0,OMA:SA:CTP20790,Europe/Paris,,OMA, +OMA:SP:21123,1,"Vigne Vieille",43.527395,4.998456,0,0,OMA:SA:CTP20798,Europe/Paris,,OMA, +OMA:SP:21124,1,"Gendarmerie",43.591646,5.004204,0,0,OMA:SA:CTP20866,Europe/Paris,,OMA, +OMA:SP:21125,1,"Source EDF",43.579268,5.013732,0,0,OMA:SA:CTP21125,Europe/Paris,,OMA, +OMA:SP:21126,1,"Jardin du Lac",43.589884,5.013818,0,0,OMA:SA:CTP20890,Europe/Paris,,OMA, +OMP:SP:1,1,"Gare Saint-Roch",43.605016,3.879184,0,0,OMP:SA:S5472,Europe/Paris,,OMP, +OMP:SP:10,1,"Marie Curie",43.61484,3.831305,0,0,OMP:SA:S5548,Europe/Paris,,OMP, +OMP:SP:100,1,"Saint-Roch",43.615239,3.869573,0,0,OMP:SA:S5648,Europe/Paris,,OMP, +OMP:SP:1000,1,"Les Hauts",43.558432,3.794343,0,0,OMP:SA:S5263,Europe/Paris,,OMP, +OMP:SP:10009472,1,"Boulevard des Écoles",43.533969,3.862391,0,0,OMP:SA:S5799,Europe/Paris,,OMP, +OMP:SP:10009482,1,"Stade",43.533369,3.855209,0,0,OMP:SA:S5811,Europe/Paris,,OMP, +OMP:SP:1001,1,"Sigaliès",43.571982,3.814644,0,0,OMP:SA:S5762,Europe/Paris,,OMP, +OMP:SP:1002,1,"Paix",43.555248,3.778417,0,0,OMP:SA:S5265,Europe/Paris,,OMP, +OMP:SP:1003,1,"Mairie",43.570766,3.773467,0,0,OMP:SA:S5773,Europe/Paris,,OMP, +OMP:SP:1004,1,"Barils",43.571893,3.773211,0,0,OMP:SA:S5768,Europe/Paris,,OMP, +OMP:SP:1005,1,"Aires",43.572676,3.772526,0,0,OMP:SA:S5767,Europe/Paris,,OMP, +OMP:SP:1006,1,"Pascaou",43.568025,3.77346,0,0,OMP:SA:S5774,Europe/Paris,,OMP, +OMP:SP:1007,1,"Centre",43.674684,3.983254,0,0,OMP:SA:S5210,Europe/Paris,,OMP, +OMP:SP:1008,1,"Aqueduc",43.678776,3.986085,0,0,OMP:SA:S5209,Europe/Paris,,OMP, +OMP:SP:1009,1,"Collège Les Pins",43.68419,3.990701,0,0,OMP:SA:S5211,Europe/Paris,,OMP, +OMP:SP:101,1,"Saint-Jaumes",43.613778,3.870524,0,0,OMP:SA:S5640,Europe/Paris,,OMP, +OMP:SP:1010,1,"Avenue de Montpellier",43.696888,4.032382,0,0,OMP:SA:S5728,Europe/Paris,,OMP, +OMP:SP:1011,1,"Mairie",43.723545,4.038679,0,0,OMP:SA:S5716,Europe/Paris,,OMP, +OMP:SP:1012,1,"Mairie",43.72902,4.020902,0,0,OMP:SA:S5169,Europe/Paris,,OMP, +OMP:SP:1013,1,"Charles de Gaulle",43.62833,3.897759,0,0,OMP:SA:S5177,Europe/Paris,,OMP, +OMP:SP:1014,1,"Collège Frédéric Bazille",43.634388,3.906527,0,0,OMP:SA:S5184,Europe/Paris,,OMP, +OMP:SP:1015,1,"Clinique du Parc",43.634206,3.891087,0,0,OMP:SA:S5182,Europe/Paris,,OMP, +OMP:SP:1016,1,"Rose de France",43.632287,3.901407,0,0,OMP:SA:S5203,Europe/Paris,,OMP, +OMP:SP:1017,1,"Palais des Sports",43.645162,3.917395,0,0,OMP:SA:S5197,Europe/Paris,,OMP, +OMP:SP:1018,1,"Décurions",43.635583,3.909035,0,0,OMP:SA:S5185,Europe/Paris,,OMP, +OMP:SP:1019,1,"Aqueduc",43.679137,3.98659,0,0,OMP:SA:S5209,Europe/Paris,,OMP, +OMP:SP:102,1,"Cité Mion",43.60046,3.884701,0,0,OMP:SA:S5416,Europe/Paris,,OMP, +OMP:SP:1020,1,"Centre",43.674802,3.982563,0,0,OMP:SA:S5210,Europe/Paris,,OMP, +OMP:SP:1021,1,"Mairie",43.723698,4.038709,0,0,OMP:SA:S5716,Europe/Paris,,OMP, +OMP:SP:1022,1,"Avenue de Montpellier",43.696986,4.032397,0,0,OMP:SA:S5728,Europe/Paris,,OMP, +OMP:SP:1023,1,"Collège Les Pins",43.684287,3.990828,0,0,OMP:SA:S5211,Europe/Paris,,OMP, +OMP:SP:1024,1,"Charles de Gaulle",43.628394,3.897674,0,0,OMP:SA:S5177,Europe/Paris,,OMP, +OMP:SP:1025,1,"Collège Frédéric Bazille",43.634459,3.906578,0,0,OMP:SA:S5184,Europe/Paris,,OMP, +OMP:SP:1026,1,"Castors",43.632847,3.903662,0,0,OMP:SA:S5174,Europe/Paris,,OMP, +OMP:SP:1027,1,"Rose de France",43.632374,3.901558,0,0,OMP:SA:S5203,Europe/Paris,,OMP, +OMP:SP:1028,1,"Palais des Sports",43.645164,3.91721,0,0,OMP:SA:S5197,Europe/Paris,,OMP, +OMP:SP:1029,1,"Décurions",43.635664,3.909037,0,0,OMP:SA:S5185,Europe/Paris,,OMP, +OMP:SP:103,1,"Iris",43.598761,3.885373,0,0,OMP:SA:S5500,Europe/Paris,,OMP, +OMP:SP:1030,1,"Aube Rouge",43.639391,3.924056,0,0,OMP:SA:S5170,Europe/Paris,,OMP, +OMP:SP:1031,1,"La Vialette",43.56863,3.773908,0,0,OMP:SA:S5770,Europe/Paris,,OMP, +OMP:SP:1032,1,"La Gardiole",43.568698,3.770807,0,0,OMP:SA:S5769,Europe/Paris,,OMP, +OMP:SP:1033,1,"Les Combes",43.570697,3.769212,0,0,OMP:SA:S5772,Europe/Paris,,OMP, +OMP:SP:1034,1,"Les Cévennes",43.572685,3.771141,0,0,OMP:SA:S5771,Europe/Paris,,OMP, +OMP:SP:1035,1,"Distillerie",43.585569,3.766902,0,0,OMP:SA:S5695,Europe/Paris,,OMP, +OMP:SP:1036,1,"Lotissement Les Violettes",43.587558,3.765999,0,0,OMP:SA:S5700,Europe/Paris,,OMP, +OMP:SP:1037,1,"Le Temple",43.585511,3.762411,0,0,OMP:SA:S5699,Europe/Paris,,OMP, +OMP:SP:1038,1,"Médiathèque La Gare",43.586145,3.760028,0,0,OMP:SA:S5702,Europe/Paris,,OMP, +OMP:SP:1039,1,"Coopérative Oléicole",43.584657,3.756973,0,0,OMP:SA:S5694,Europe/Paris,,OMP, +OMP:SP:104,1,"Frédéric Fabrège",43.59737,3.886461,0,0,OMP:SA:S5466,Europe/Paris,,OMP, +OMP:SP:1040,1,"Gaston Defferre",43.584225,3.752845,0,0,OMP:SA:S5696,Europe/Paris,,OMP, +OMP:SP:1041,1,"Jean Moulin",43.582639,3.751816,0,0,OMP:SA:S5697,Europe/Paris,,OMP, +OMP:SP:1042,1,"Maison de Retraite",43.581297,3.750658,0,0,OMP:SA:S5701,Europe/Paris,,OMP, +OMP:SP:1043,1,"La Bornière",43.57964,3.753584,0,0,OMP:SA:S5698,Europe/Paris,,OMP, +OMP:SP:1044,1,"Beaulieu",43.560528,3.726658,0,0,OMP:SA:S5230,Europe/Paris,,OMP, +OMP:SP:1045,1,"Stade",43.555933,3.721936,0,0,OMP:SA:S5236,Europe/Paris,,OMP, +OMP:SP:1046,1,"Les Grenaches",43.553181,3.718508,0,0,OMP:SA:S5234,Europe/Paris,,OMP, +OMP:SP:1047,1,"Temple",43.55745,3.716461,0,0,OMP:SA:S5237,Europe/Paris,,OMP, +OMP:SP:1048,1,"Jean Jaurès",43.558377,3.712107,0,0,OMP:SA:S5232,Europe/Paris,,OMP, +OMP:SP:1049,1,"Jean Moulin",43.555224,3.711933,0,0,OMP:SA:S5233,Europe/Paris,,OMP, +OMP:SP:105,1,"Lucullus",43.594707,3.888479,0,0,OMP:SA:S5536,Europe/Paris,,OMP, +OMP:SP:1050,1,"Tournesol",43.553384,3.709602,0,0,OMP:SA:S5229,Europe/Paris,,OMP, +OMP:SP:1051,1,"Mairie",43.550042,3.708076,0,0,OMP:SA:S5226,Europe/Paris,,OMP, +OMP:SP:1052,1,"Tambourin",43.548936,3.704564,0,0,OMP:SA:S5228,Europe/Paris,,OMP, +OMP:SP:1053,1,"La Vierge",43.546415,3.702712,0,0,OMP:SA:S5224,Europe/Paris,,OMP, +OMP:SP:1054,1,"Hauts des Clavoux",43.545012,3.700664,0,0,OMP:SA:S5223,Europe/Paris,,OMP, +OMP:SP:1055,1,"La Regnague",43.608823,3.795938,0,0,OMP:SA:S5738,Europe/Paris,,OMP, +OMP:SP:1056,1,"Stade",43.607589,3.784711,0,0,OMP:SA:S5741,Europe/Paris,,OMP, +OMP:SP:1057,1,"Chanterelles",43.560128,3.708058,0,0,OMP:SA:S5231,Europe/Paris,,OMP, +OMP:SP:1058,1,"Caylus",43.645858,3.898523,0,0,OMP:SA:S5175,Europe/Paris,,OMP, +OMP:SP:1059,1,"Lotissement Les Lilas",43.728052,3.96476,0,0,OMP:SA:S5723,Europe/Paris,,OMP, +OMP:SP:106,1,"Cité de l'Arme",43.593608,3.889228,0,0,OMP:SA:S5414,Europe/Paris,,OMP, +OMP:SP:1060,1,"Stade",43.733457,3.980153,0,0,OMP:SA:S5727,Europe/Paris,,OMP, +OMP:SP:1061,1,"Lotisssement Les Romarins",43.729408,3.969659,0,0,OMP:SA:S5724,Europe/Paris,,OMP, +OMP:SP:1062,1,"Château",43.65535,3.892406,0,0,OMP:SA:S5213,Europe/Paris,,OMP, +OMP:SP:1064,1,"Camp du Soleil",43.749378,3.960582,0,0,OMP:SA:S5348,Europe/Paris,,OMP, +OMP:SP:1065,1,"Les Mazes",43.731532,3.981412,0,0,OMP:SA:S5722,Europe/Paris,,OMP, +OMP:SP:1066,1,"Mas de Bizard",43.726303,3.980604,0,0,OMP:SA:S5725,Europe/Paris,,OMP, +OMP:SP:1067,1,"Les Clavoux",43.543412,3.700638,0,0,OMP:SA:S5225,Europe/Paris,,OMP, +OMP:SP:1068,1,"Hauts des Clavoux",43.544957,3.700712,0,0,OMP:SA:S5223,Europe/Paris,,OMP, +OMP:SP:1069,1,"La Vierge",43.546335,3.70271,0,0,OMP:SA:S5224,Europe/Paris,,OMP, +OMP:SP:107,1,"Garcia Lorca",43.590881,3.890082,0,0,OMP:SA:S5470,Europe/Paris,,OMP, +OMP:SP:1070,1,"Tambourin",43.548997,3.704701,0,0,OMP:SA:S5228,Europe/Paris,,OMP, +OMP:SP:1071,1,"Mairie",43.55013,3.708226,0,0,OMP:SA:S5226,Europe/Paris,,OMP, +OMP:SP:1072,1,"Tournesol",43.553408,3.709862,0,0,OMP:SA:S5229,Europe/Paris,,OMP, +OMP:SP:1073,1,"Temple",43.55745,3.716461,0,0,OMP:SA:S5237,Europe/Paris,,OMP, +OMP:SP:1074,1,"Jean Jaurès",43.558377,3.712107,0,0,OMP:SA:S5232,Europe/Paris,,OMP, +OMP:SP:1075,1,"Jean Moulin",43.555224,3.711933,0,0,OMP:SA:S5233,Europe/Paris,,OMP, +OMP:SP:1076,1,"Les Grenaches",43.553052,3.718023,0,0,OMP:SA:S5234,Europe/Paris,,OMP, +OMP:SP:1077,1,"Stade",43.555993,3.722136,0,0,OMP:SA:S5236,Europe/Paris,,OMP, +OMP:SP:1078,1,"Beaulieu",43.560598,3.727501,0,0,OMP:SA:S5230,Europe/Paris,,OMP, +OMP:SP:1079,1,"La Bornière",43.579546,3.753904,0,0,OMP:SA:S5698,Europe/Paris,,OMP, +OMP:SP:108,1,"Mas Argelliers",43.586518,3.889085,0,0,OMP:SA:S5551,Europe/Paris,,OMP, +OMP:SP:1080,1,"Maison de Retraite",43.581433,3.750575,0,0,OMP:SA:S5701,Europe/Paris,,OMP, +OMP:SP:1081,1,"Jean Moulin",43.582528,3.752061,0,0,OMP:SA:S5697,Europe/Paris,,OMP, +OMP:SP:1082,1,"Gaston Defferre",43.584268,3.753031,0,0,OMP:SA:S5696,Europe/Paris,,OMP, +OMP:SP:1083,1,"Coopérative Oléicole",43.584654,3.757147,0,0,OMP:SA:S5694,Europe/Paris,,OMP, +OMP:SP:1084,1,"Square Tribes",43.58401,3.759703,0,0,OMP:SA:S5704,Europe/Paris,,OMP, +OMP:SP:1085,1,"Le Temple",43.585552,3.762734,0,0,OMP:SA:S5699,Europe/Paris,,OMP, +OMP:SP:1086,1,"Lotissement Les Violettes",43.587626,3.766335,0,0,OMP:SA:S5700,Europe/Paris,,OMP, +OMP:SP:1087,1,"Distillerie",43.585471,3.7668,0,0,OMP:SA:S5695,Europe/Paris,,OMP, +OMP:SP:1088,1,"Les Cévennes",43.572633,3.771004,0,0,OMP:SA:S5771,Europe/Paris,,OMP, +OMP:SP:1089,1,"Les Combes",43.570663,3.769051,0,0,OMP:SA:S5772,Europe/Paris,,OMP, +OMP:SP:109,1,"Saporta",43.5836,3.887559,0,0,OMP:SA:S5655,Europe/Paris,,OMP, +OMP:SP:1090,1,"La Gardiole",43.568754,3.770635,0,0,OMP:SA:S5769,Europe/Paris,,OMP, +OMP:SP:1091,1,"La Vialette",43.568547,3.774029,0,0,OMP:SA:S5770,Europe/Paris,,OMP, +OMP:SP:1092,1,"Stade",43.60736,3.784396,0,0,OMP:SA:S5741,Europe/Paris,,OMP, +OMP:SP:1093,1,"La Regnague",43.608986,3.797155,0,0,OMP:SA:S5738,Europe/Paris,,OMP, +OMP:SP:1094,1,"Chanterelles",43.560128,3.708058,0,0,OMP:SA:S5231,Europe/Paris,,OMP, +OMP:SP:1095,1,"Caylus",43.64674,3.899104,0,0,OMP:SA:S5175,Europe/Paris,,OMP, +OMP:SP:1097,1,"Lotissement Les Lilas",43.728056,3.965095,0,0,OMP:SA:S5723,Europe/Paris,,OMP, +OMP:SP:1098,1,"Stade",43.733448,3.980128,0,0,OMP:SA:S5727,Europe/Paris,,OMP, +OMP:SP:1099,1,"Château",43.655236,3.892192,0,0,OMP:SA:S5213,Europe/Paris,,OMP, +OMP:SP:11,1,"Renaudel",43.61464,3.82817,0,0,OMP:SA:S5622,Europe/Paris,,OMP, +OMP:SP:110,1,"Marché Gare",43.583801,3.886117,0,0,OMP:SA:S5545,Europe/Paris,,OMP, +OMP:SP:1100,1,"Lotisssement Les Romarins",43.72965,3.97031,0,0,OMP:SA:S5724,Europe/Paris,,OMP, +OMP:SP:1101,1,"Route de Teyran",43.733769,3.979133,0,0,OMP:SA:S5726,Europe/Paris,,OMP, +OMP:SP:1102,1,"Les Mazes",43.731523,3.981387,0,0,OMP:SA:S5722,Europe/Paris,,OMP, +OMP:SP:1103,1,"Mas de Bizard",43.726321,3.980592,0,0,OMP:SA:S5725,Europe/Paris,,OMP, +OMP:SP:1104,1,"Camp du Soleil",43.749503,3.960635,0,0,OMP:SA:S5348,Europe/Paris,,OMP, +OMP:SP:1106,1,"Marcel Dassault",43.622146,3.916857,0,0,OMP:SA:S5193,Europe/Paris,,OMP, +OMP:SP:1107,1,"Marcel Dassault",43.622119,3.916906,0,0,OMP:SA:S5193,Europe/Paris,,OMP, +OMP:SP:1108,1,"Le Terral",43.592588,3.828225,0,0,OMP:SA:S5754,Europe/Paris,,OMP, +OMP:SP:1109,1,"La Capoulière",43.586111,3.808912,0,0,OMP:SA:S5343,Europe/Paris,,OMP, +OMP:SP:111,1,"Industrie",43.584753,3.881716,0,0,OMP:SA:S5499,Europe/Paris,,OMP, +OMP:SP:1110,1,"La Croix",43.584947,3.807213,0,0,OMP:SA:S5344,Europe/Paris,,OMP, +OMP:SP:1111,1,"Les Serres",43.585552,3.803716,0,0,OMP:SA:S5345,Europe/Paris,,OMP, +OMP:SP:1112,1,"Mas la Farouch",43.587105,3.802569,0,0,OMP:SA:S5347,Europe/Paris,,OMP, +OMP:SP:1113,1,"Ancienne Gare",43.58921,3.801114,0,0,OMP:SA:S5342,Europe/Paris,,OMP, +OMP:SP:1114,1,"Mas de Lépôt",43.586304,3.79796,0,0,OMP:SA:S5346,Europe/Paris,,OMP, +OMP:SP:1115,1,"Saint-Martin de Vignogoul",43.58562,3.790041,0,0,OMP:SA:S5703,Europe/Paris,,OMP, +OMP:SP:1116,1,"Paul Fajon",43.596351,3.83692,0,0,OMP:SA:S5586,Europe/Paris,,OMP, +OMP:SP:1117,1,"Le Terral",43.592498,3.828247,0,0,OMP:SA:S5754,Europe/Paris,,OMP, +OMP:SP:1118,1,"La Capoulière",43.58632,3.809388,0,0,OMP:SA:S5343,Europe/Paris,,OMP, +OMP:SP:1119,1,"La Croix",43.584971,3.807424,0,0,OMP:SA:S5344,Europe/Paris,,OMP, +OMP:SP:112,1,"Mas Saint-Pierre",43.581761,3.880361,0,0,OMP:SA:S5556,Europe/Paris,,OMP, +OMP:SP:1120,1,"Les Serres",43.585435,3.803701,0,0,OMP:SA:S5345,Europe/Paris,,OMP, +OMP:SP:1121,1,"Mas la Farouch",43.587025,3.802468,0,0,OMP:SA:S5347,Europe/Paris,,OMP, +OMP:SP:1122,1,"Ancienne Gare",43.58914,3.800964,0,0,OMP:SA:S5342,Europe/Paris,,OMP, +OMP:SP:1123,1,"Mas de Lépôt",43.586613,3.798376,0,0,OMP:SA:S5346,Europe/Paris,,OMP, +OMP:SP:1124,1,"Saint-Martin de Vignogoul",43.585696,3.790389,0,0,OMP:SA:S5703,Europe/Paris,,OMP, +OMP:SP:1125,1,"Paul Fajon",43.596296,3.837054,0,0,OMP:SA:S5586,Europe/Paris,,OMP, +OMP:SP:1126,1,"Jean Joubert",43.667282,3.914602,0,0,OMP:SA:S5292,Europe/Paris,,OMP, +OMP:SP:1127,1,"Lucien Lambert",43.656949,3.91236,0,0,OMP:SA:S5295,Europe/Paris,,OMP, +OMP:SP:1128,1,"Jean Joubert",43.667318,3.914566,0,0,OMP:SA:S5292,Europe/Paris,,OMP, +OMP:SP:1129,1,"Lucien Lambert",43.65695,3.912298,0,0,OMP:SA:S5295,Europe/Paris,,OMP, +OMP:SP:113,1,"Occitanie",43.634613,3.848371,0,0,OMP:SA:S5571,Europe/Paris,,OMP, +OMP:SP:1130,1,"Mosson",43.61632,3.819787,0,0,OMP:SA:S5563,Europe/Paris,,OMP, +OMP:SP:1131,1,"Halles de la Paillade",43.62757,3.817506,0,0,OMP:SA:S5489,Europe/Paris,,OMP, +OMP:SP:1132,1,"Saint-Paul",43.630658,3.821088,0,0,OMP:SA:S5646,Europe/Paris,,OMP, +OMP:SP:1133,1,"Hauts de Massane",43.63637,3.822771,0,0,OMP:SA:S5490,Europe/Paris,,OMP, +OMP:SP:1134,1,"Euromédecine",43.638973,3.827691,0,0,OMP:SA:S5453,Europe/Paris,,OMP, +OMP:SP:1135,1,"Malbosc",43.634591,3.833196,0,0,OMP:SA:S5544,Europe/Paris,,OMP, +OMP:SP:1136,1,"Château d'Ô",43.631442,3.843089,0,0,OMP:SA:S5409,Europe/Paris,,OMP, +OMP:SP:1137,1,"Occitanie",43.63463,3.848458,0,0,OMP:SA:S5571,Europe/Paris,,OMP, +OMP:SP:1138,1,"Hôpital Lapeyronie",43.631651,3.852575,0,0,OMP:SA:S5496,Europe/Paris,,OMP, +OMP:SP:1139,1,"Universités Sciences et Lettres",43.629124,3.861568,0,0,OMP:SA:S5665,Europe/Paris,,OMP, +OMP:SP:114,1,"Louis Ravaz",43.619666,3.851391,0,0,OMP:SA:S5534,Europe/Paris,,OMP, +OMP:SP:1140,1,"Saint-Éloi",43.62699,3.865694,0,0,OMP:SA:S5637,Europe/Paris,,OMP, +OMP:SP:1141,1,"Boutonnet",43.622587,3.868088,0,0,OMP:SA:S5393,Europe/Paris,,OMP, +OMP:SP:1142,1,"Stade Philippidès",43.618989,3.869464,0,0,OMP:SA:S5660,Europe/Paris,,OMP, +OMP:SP:1143,1,"Place Albert 1er - Saint-Charles",43.616449,3.874246,0,0,OMP:SA:S5603,Europe/Paris,,OMP, +OMP:SP:1144,1,"Louis Blanc",43.614746,3.878333,0,0,OMP:SA:S5532,Europe/Paris,,OMP, +OMP:SP:1145,1,"Corum",43.614254,3.881957,0,0,OMP:SA:S5431,Europe/Paris,,OMP, +OMP:SP:1146,1,"Comédie",43.608371,3.879682,0,0,OMP:SA:S5426,Europe/Paris,,OMP, +OMP:SP:1147,1,"Gare Saint-Roch",43.605739,3.880156,0,0,OMP:SA:S5472,Europe/Paris,,OMP, +OMP:SP:1148,1,"Du Guesclin",43.607116,3.883249,0,0,OMP:SA:S5441,Europe/Paris,,OMP, +OMP:SP:1149,1,"Antigone",43.608586,3.886666,0,0,OMP:SA:S5378,Europe/Paris,,OMP, +OMP:SP:115,1,"Pierre Viala",43.616586,3.854984,0,0,OMP:SA:S5597,Europe/Paris,,OMP, +OMP:SP:1150,1,"Léon Blum",43.608913,3.890164,0,0,OMP:SA:S5524,Europe/Paris,,OMP, +OMP:SP:1151,1,"Place de l'Europe",43.607187,3.893964,0,0,OMP:SA:S5606,Europe/Paris,,OMP, +OMP:SP:1152,1,"Rives du Lez",43.604071,3.894931,0,0,OMP:SA:S5627,Europe/Paris,,OMP, +OMP:SP:1153,1,"Moularès (Hôtel de Ville)",43.60073,3.895359,0,0,OMP:SA:S5564,Europe/Paris,,OMP, +OMP:SP:1154,1,"Port Marianne",43.601576,3.899625,0,0,OMP:SA:S5614,Europe/Paris,,OMP, +OMP:SP:1155,1,"Mondial 98",43.602617,3.904107,0,0,OMP:SA:S5560,Europe/Paris,,OMP, +OMP:SP:1156,1,"Millénaire",43.602881,3.910114,0,0,OMP:SA:S5559,Europe/Paris,,OMP, +OMP:SP:1157,1,"Odysseum",43.604121,3.920627,0,0,OMP:SA:S5572,Europe/Paris,,OMP, +OMP:SP:1158,1,"Place de France",43.603725,3.915741,0,0,OMP:SA:S5605,Europe/Paris,,OMP, +OMP:SP:1159,1,"Stade de la Mosson",43.621252,3.817379,0,0,OMP:SA:S5659,Europe/Paris,,OMP, +OMP:SP:116,1,"La Gaillarde",43.616283,3.858676,0,0,OMP:SA:S5511,Europe/Paris,,OMP, +OMP:SP:1160,1,"Odysseum",43.604129,3.920676,0,0,OMP:SA:S5572,Europe/Paris,,OMP, +OMP:SP:1161,1,"Millénaire",43.602908,3.910115,0,0,OMP:SA:S5559,Europe/Paris,,OMP, +OMP:SP:1162,1,"Mondial 98",43.602644,3.904108,0,0,OMP:SA:S5560,Europe/Paris,,OMP, +OMP:SP:1163,1,"Port Marianne",43.601565,3.89918,0,0,OMP:SA:S5614,Europe/Paris,,OMP, +OMP:SP:1164,1,"Moularès (Hôtel de Ville)",43.600738,3.895434,0,0,OMP:SA:S5564,Europe/Paris,,OMP, +OMP:SP:1165,1,"Rives du Lez",43.604017,3.894942,0,0,OMP:SA:S5627,Europe/Paris,,OMP, +OMP:SP:1166,1,"Place de l'Europe",43.607304,3.89393,0,0,OMP:SA:S5606,Europe/Paris,,OMP, +OMP:SP:1167,1,"Léon Blum",43.60894,3.890189,0,0,OMP:SA:S5524,Europe/Paris,,OMP, +OMP:SP:1168,1,"Antigone",43.608604,3.886629,0,0,OMP:SA:S5378,Europe/Paris,,OMP, +OMP:SP:1169,1,"Du Guesclin",43.607125,3.883212,0,0,OMP:SA:S5441,Europe/Paris,,OMP, +OMP:SP:117,1,"Apothicaires",43.641638,3.835213,0,0,OMP:SA:S5381,Europe/Paris,,OMP, +OMP:SP:1170,1,"Gare Saint-Roch",43.605766,3.880181,0,0,OMP:SA:S5472,Europe/Paris,,OMP, +OMP:SP:1171,1,"Comédie",43.608361,3.879732,0,0,OMP:SA:S5426,Europe/Paris,,OMP, +OMP:SP:1172,1,"Corum",43.614307,3.88202,0,0,OMP:SA:S5431,Europe/Paris,,OMP, +OMP:SP:1173,1,"Louis Blanc",43.614736,3.878394,0,0,OMP:SA:S5532,Europe/Paris,,OMP, +OMP:SP:1174,1,"Place Albert 1er - Saint-Charles",43.616404,3.874282,0,0,OMP:SA:S5603,Europe/Paris,,OMP, +OMP:SP:1175,1,"Stade Philippidès",43.618989,3.869501,0,0,OMP:SA:S5660,Europe/Paris,,OMP, +OMP:SP:1176,1,"Boutonnet",43.622595,3.868125,0,0,OMP:SA:S5393,Europe/Paris,,OMP, +OMP:SP:1177,1,"Saint-Éloi",43.627007,3.865719,0,0,OMP:SA:S5637,Europe/Paris,,OMP, +OMP:SP:1178,1,"Universités Sciences et Lettres",43.62916,3.861581,0,0,OMP:SA:S5665,Europe/Paris,,OMP, +OMP:SP:1179,1,"Hôpital Lapeyronie",43.631669,3.852601,0,0,OMP:SA:S5496,Europe/Paris,,OMP, +OMP:SP:118,1,"Cheng-Du",43.594075,3.842896,0,0,OMP:SA:S5410,Europe/Paris,,OMP, +OMP:SP:1180,1,"Occitanie",43.634657,3.848484,0,0,OMP:SA:S5571,Europe/Paris,,OMP, +OMP:SP:1181,1,"Château d'Ô",43.631415,3.843064,0,0,OMP:SA:S5409,Europe/Paris,,OMP, +OMP:SP:1182,1,"Malbosc",43.634608,3.833234,0,0,OMP:SA:S5544,Europe/Paris,,OMP, +OMP:SP:1183,1,"Euromédecine",43.639,3.82768,0,0,OMP:SA:S5453,Europe/Paris,,OMP, +OMP:SP:1184,1,"Hauts de Massane",43.636371,3.822722,0,0,OMP:SA:S5490,Europe/Paris,,OMP, +OMP:SP:1185,1,"Saint-Paul",43.630685,3.821064,0,0,OMP:SA:S5646,Europe/Paris,,OMP, +OMP:SP:1186,1,"Halles de la Paillade",43.62757,3.817468,0,0,OMP:SA:S5489,Europe/Paris,,OMP, +OMP:SP:1187,1,"Place de France",43.603752,3.915717,0,0,OMP:SA:S5605,Europe/Paris,,OMP, +OMP:SP:1188,1,"Stade de la Mosson",43.621297,3.81738,0,0,OMP:SA:S5659,Europe/Paris,,OMP, +OMP:SP:1189,1,"Saint-Jean de Védas Centre",43.574804,3.830432,0,0,OMP:SA:S5760,Europe/Paris,,OMP, +OMP:SP:119,1,"Rouget de Lisle",43.594818,3.839848,0,0,OMP:SA:S5631,Europe/Paris,,OMP, +OMP:SP:1190,1,"Saint-Jean le Sec",43.570588,3.837579,0,0,OMP:SA:S5761,Europe/Paris,,OMP, +OMP:SP:1191,1,"La Condamine",43.571601,3.844208,0,0,OMP:SA:S5751,Europe/Paris,,OMP, +OMP:SP:1192,1,"Victoire 2",43.574771,3.849583,0,0,OMP:SA:S5766,Europe/Paris,,OMP, +OMP:SP:1193,1,"Sabines",43.583937,3.86004,0,0,OMP:SA:S5633,Europe/Paris,,OMP, +OMP:SP:1194,1,"Villeneuve d'Angoulême",43.588738,3.865746,0,0,OMP:SA:S5672,Europe/Paris,,OMP, +OMP:SP:1195,1,"Croix d'Argent",43.592368,3.866486,0,0,OMP:SA:S5433,Europe/Paris,,OMP, +OMP:SP:1196,1,"Mas Drevon",43.595467,3.867917,0,0,OMP:SA:S5555,Europe/Paris,,OMP, +OMP:SP:1197,1,"Lemasson",43.59371,3.873275,0,0,OMP:SA:S5523,Europe/Paris,,OMP, +OMP:SP:1198,1,"Saint-Cléophas",43.594991,3.876179,0,0,OMP:SA:S5635,Europe/Paris,,OMP, +OMP:SP:1199,1,"Nouveau Saint-Roch",43.599493,3.875645,0,0,OMP:SA:S5569,Europe/Paris,,OMP, +OMP:SP:12,1,"Gémeaux",43.633244,3.822628,0,0,OMP:SA:S5476,Europe/Paris,,OMP, +OMP:SP:120,1,"Georges Danton",43.599643,3.843278,0,0,OMP:SA:S5478,Europe/Paris,,OMP, +OMP:SP:1200,1,"Rondelet",43.60308,3.876249,0,0,OMP:SA:S5629,Europe/Paris,,OMP, +OMP:SP:1201,1,"Place Carnot",43.603831,3.884112,0,0,OMP:SA:S5604,Europe/Paris,,OMP, +OMP:SP:1202,1,"Voltaire",43.603553,3.889065,0,0,OMP:SA:S5677,Europe/Paris,,OMP, +OMP:SP:1203,1,"Rives du Lez",43.603944,3.893777,0,0,OMP:SA:S5627,Europe/Paris,,OMP, +OMP:SP:1204,1,"Pompignane",43.612279,3.894907,0,0,OMP:SA:S5613,Europe/Paris,,OMP, +OMP:SP:1205,1,"Les Aubes",43.613971,3.88852,0,0,OMP:SA:S5528,Europe/Paris,,OMP, +OMP:SP:1206,1,"Corum",43.6143,3.881847,0,0,OMP:SA:S5431,Europe/Paris,,OMP, +OMP:SP:1207,1,"Beaux-Arts",43.617,3.883553,0,0,OMP:SA:S5387,Europe/Paris,,OMP, +OMP:SP:1208,1,"Jeu de Mail des Abbés",43.62021,3.884098,0,0,OMP:SA:S5509,Europe/Paris,,OMP, +OMP:SP:1209,1,"Aiguelongue",43.626221,3.88311,0,0,OMP:SA:S5368,Europe/Paris,,OMP, +OMP:SP:121,1,"Cité Valette",43.601464,3.851886,0,0,OMP:SA:S5418,Europe/Paris,,OMP, +OMP:SP:1210,1,"Saint-Lazare",43.626619,3.888591,0,0,OMP:SA:S5642,Europe/Paris,,OMP, +OMP:SP:1211,1,"Charles de Gaulle",43.628555,3.897715,0,0,OMP:SA:S5177,Europe/Paris,,OMP, +OMP:SP:1212,1,"Clairval",43.630193,3.902599,0,0,OMP:SA:S5181,Europe/Paris,,OMP, +OMP:SP:1213,1,"La Galine",43.631457,3.909033,0,0,OMP:SA:S5189,Europe/Paris,,OMP, +OMP:SP:1214,1,"Centurions",43.632798,3.915716,0,0,OMP:SA:S5176,Europe/Paris,,OMP, +OMP:SP:1215,1,"Notre-Dame de Sablassou",43.634239,3.922267,0,0,OMP:SA:S5196,Europe/Paris,,OMP, +OMP:SP:1216,1,"Aube Rouge",43.638542,3.924936,0,0,OMP:SA:S5170,Europe/Paris,,OMP, +OMP:SP:1217,1,"Via Domitia",43.646533,3.929962,0,0,OMP:SA:S5818,Europe/Paris,,OMP, +OMP:SP:1218,1,"Georges Pompidou",43.649271,3.921013,0,0,OMP:SA:S5186,Europe/Paris,,OMP, +OMP:SP:1219,1,"Jacou",43.654604,3.912877,0,0,OMP:SA:S5291,Europe/Paris,,OMP, +OMP:SP:122,1,"Les Roses",43.602561,3.854488,0,0,OMP:SA:S5531,Europe/Paris,,OMP, +OMP:SP:1220,1,"Georges Pompidou",43.649263,3.920975,0,0,OMP:SA:S5186,Europe/Paris,,OMP, +OMP:SP:1221,1,"Via Domitia",43.646534,3.9299,0,0,OMP:SA:S5818,Europe/Paris,,OMP, +OMP:SP:1222,1,"Aube Rouge",43.638534,3.924899,0,0,OMP:SA:S5170,Europe/Paris,,OMP, +OMP:SP:1223,1,"Notre-Dame de Sablassou",43.634267,3.922243,0,0,OMP:SA:S5196,Europe/Paris,,OMP, +OMP:SP:1224,1,"Centurions",43.632825,3.915705,0,0,OMP:SA:S5176,Europe/Paris,,OMP, +OMP:SP:1225,1,"La Galine",43.631484,3.909021,0,0,OMP:SA:S5189,Europe/Paris,,OMP, +OMP:SP:1226,1,"Clairval",43.63022,3.902588,0,0,OMP:SA:S5181,Europe/Paris,,OMP, +OMP:SP:1227,1,"Charles de Gaulle",43.628574,3.897679,0,0,OMP:SA:S5177,Europe/Paris,,OMP, +OMP:SP:1228,1,"Saint-Lazare",43.626646,3.888567,0,0,OMP:SA:S5642,Europe/Paris,,OMP, +OMP:SP:1229,1,"Aiguelongue",43.626257,3.883099,0,0,OMP:SA:S5368,Europe/Paris,,OMP, +OMP:SP:123,1,"Chasseurs",43.603297,3.856474,0,0,OMP:SA:S5408,Europe/Paris,,OMP, +OMP:SP:1230,1,"Jeu de Mail des Abbés",43.620211,3.884049,0,0,OMP:SA:S5509,Europe/Paris,,OMP, +OMP:SP:1231,1,"Beaux-Arts",43.617018,3.883517,0,0,OMP:SA:S5387,Europe/Paris,,OMP, +OMP:SP:1232,1,"Corum",43.614264,3.881858,0,0,OMP:SA:S5431,Europe/Paris,,OMP, +OMP:SP:1233,1,"Les Aubes",43.613955,3.888408,0,0,OMP:SA:S5528,Europe/Paris,,OMP, +OMP:SP:1234,1,"Pompignane",43.61245,3.8949,0,0,OMP:SA:S5613,Europe/Paris,,OMP, +OMP:SP:1235,1,"Rives du Lez",43.603989,3.893778,0,0,OMP:SA:S5627,Europe/Paris,,OMP, +OMP:SP:1236,1,"Voltaire",43.60358,3.889091,0,0,OMP:SA:S5677,Europe/Paris,,OMP, +OMP:SP:1237,1,"Place Carnot",43.603831,3.884137,0,0,OMP:SA:S5604,Europe/Paris,,OMP, +OMP:SP:1238,1,"Rondelet",43.603078,3.876373,0,0,OMP:SA:S5629,Europe/Paris,,OMP, +OMP:SP:1239,1,"Nouveau Saint-Roch",43.599548,3.875597,0,0,OMP:SA:S5569,Europe/Paris,,OMP, +OMP:SP:124,1,"Cité Gély",43.604864,3.859485,0,0,OMP:SA:S5415,Europe/Paris,,OMP, +OMP:SP:1240,1,"Saint-Cléophas",43.595009,3.87613,0,0,OMP:SA:S5635,Europe/Paris,,OMP, +OMP:SP:1241,1,"Lemasson",43.593737,3.873301,0,0,OMP:SA:S5523,Europe/Paris,,OMP, +OMP:SP:1242,1,"Mas Drevon",43.595486,3.867881,0,0,OMP:SA:S5555,Europe/Paris,,OMP, +OMP:SP:1243,1,"Croix d'Argent",43.592369,3.866437,0,0,OMP:SA:S5433,Europe/Paris,,OMP, +OMP:SP:1244,1,"Villeneuve d'Angoulême",43.588739,3.865697,0,0,OMP:SA:S5672,Europe/Paris,,OMP, +OMP:SP:1245,1,"Sabines",43.583911,3.859978,0,0,OMP:SA:S5633,Europe/Paris,,OMP, +OMP:SP:1246,1,"Victoire 2",43.574808,3.849535,0,0,OMP:SA:S5766,Europe/Paris,,OMP, +OMP:SP:1247,1,"La Condamine",43.571601,3.844208,0,0,OMP:SA:S5751,Europe/Paris,,OMP, +OMP:SP:1248,1,"Saint-Jean le Sec",43.570623,3.83758,0,0,OMP:SA:S5761,Europe/Paris,,OMP, +OMP:SP:1249,1,"Juvignac",43.617485,3.810142,0,0,OMP:SA:S5311,Europe/Paris,,OMP, +OMP:SP:125,1,"Claret",43.605788,3.862157,0,0,OMP:SA:S5419,Europe/Paris,,OMP, +OMP:SP:1250,1,"Mosson",43.616223,3.819612,0,0,OMP:SA:S5563,Europe/Paris,,OMP, +OMP:SP:1251,1,"Celleneuve",43.615363,3.825912,0,0,OMP:SA:S5401,Europe/Paris,,OMP, +OMP:SP:1252,1,"Pilory",43.619398,3.831883,0,0,OMP:SA:S5598,Europe/Paris,,OMP, +OMP:SP:1253,1,"Hôtel du Département",43.621802,3.834903,0,0,OMP:SA:S5498,Europe/Paris,,OMP, +OMP:SP:1254,1,"Pergola",43.617638,3.839558,0,0,OMP:SA:S5588,Europe/Paris,,OMP, +OMP:SP:1255,1,"Tonnelles",43.613487,3.839387,0,0,OMP:SA:S5662,Europe/Paris,,OMP, +OMP:SP:1256,1,"Jules Guesde",43.611473,3.846485,0,0,OMP:SA:S5510,Europe/Paris,,OMP, +OMP:SP:1257,1,"Astruc",43.61019,3.854678,0,0,OMP:SA:S5383,Europe/Paris,,OMP, +OMP:SP:1258,1,"Les Arceaux",43.609896,3.862192,0,0,OMP:SA:S5527,Europe/Paris,,OMP, +OMP:SP:1259,1,"Plan Cabanes",43.608637,3.867899,0,0,OMP:SA:S5610,Europe/Paris,,OMP, +OMP:SP:126,1,"Jean Mermoz",43.612603,3.889299,0,0,OMP:SA:S5506,Europe/Paris,,OMP, +OMP:SP:1260,1,"Saint-Denis",43.605669,3.873733,0,0,OMP:SA:S5636,Europe/Paris,,OMP, +OMP:SP:1261,1,"Observatoire",43.606447,3.876538,0,0,OMP:SA:S5570,Europe/Paris,,OMP, +OMP:SP:1262,1,"Gare Saint-Roch",43.605351,3.87965,0,0,OMP:SA:S5472,Europe/Paris,,OMP, +OMP:SP:1263,1,"Saint-Martin",43.592273,3.880151,0,0,OMP:SA:S5643,Europe/Paris,,OMP, +OMP:SP:1264,1,"Restanque",43.590417,3.884874,0,0,OMP:SA:S5625,Europe/Paris,,OMP, +OMP:SP:1266,1,"La Rauze",43.593471,3.895693,0,0,OMP:SA:S5514,Europe/Paris,,OMP, +OMP:SP:1267,1,"Georges Frêche - Hôtel de Ville",43.599317,3.894863,0,0,OMP:SA:S5479,Europe/Paris,,OMP, +OMP:SP:1268,1,"Pablo Picasso",43.597882,3.903347,0,0,OMP:SA:S5575,Europe/Paris,,OMP, +OMP:SP:1269,1,"Boirargues",43.582743,3.925537,0,0,OMP:SA:S5326,Europe/Paris,,OMP, +OMP:SP:127,1,"Roger Salengro",43.632765,3.896271,0,0,OMP:SA:S5202,Europe/Paris,,OMP, +OMP:SP:1270,1,"EcoPôle",43.578155,3.934894,0,0,OMP:SA:S5685,Europe/Paris,,OMP, +OMP:SP:1271,1,"Parc Expo",43.572991,3.945469,0,0,OMP:SA:S5687,Europe/Paris,,OMP, +OMP:SP:1272,1,"Pérols Centre",43.565553,3.957177,0,0,OMP:SA:S5688,Europe/Paris,,OMP, +OMP:SP:1273,1,"Cougourlude",43.571357,3.914266,0,0,OMP:SA:S5331,Europe/Paris,,OMP, +OMP:SP:1274,1,"Pérols Étang de l'Or",43.558041,3.963565,0,0,OMP:SA:S5689,Europe/Paris,,OMP, +OMP:SP:1275,1,"Pérols Centre",43.565533,3.957288,0,0,OMP:SA:S5688,Europe/Paris,,OMP, +OMP:SP:1276,1,"Parc Expo",43.572981,3.945543,0,0,OMP:SA:S5687,Europe/Paris,,OMP, +OMP:SP:1277,1,"EcoPôle",43.578163,3.934968,0,0,OMP:SA:S5685,Europe/Paris,,OMP, +OMP:SP:1278,1,"Boirargues",43.582742,3.925587,0,0,OMP:SA:S5326,Europe/Paris,,OMP, +OMP:SP:1279,1,"Pablo Picasso",43.597942,3.903521,0,0,OMP:SA:S5575,Europe/Paris,,OMP, +OMP:SP:128,1,"Mairie de Castelnau",43.633009,3.897441,0,0,OMP:SA:S5192,Europe/Paris,,OMP, +OMP:SP:1280,1,"Georges Frêche - Hôtel de Ville",43.599353,3.894852,0,0,OMP:SA:S5479,Europe/Paris,,OMP, +OMP:SP:1281,1,"La Rauze",43.593514,3.895769,0,0,OMP:SA:S5514,Europe/Paris,,OMP, +OMP:SP:1283,1,"Restanque",43.590434,3.884949,0,0,OMP:SA:S5625,Europe/Paris,,OMP, +OMP:SP:1284,1,"Saint-Martin",43.592263,3.880225,0,0,OMP:SA:S5643,Europe/Paris,,OMP, +OMP:SP:1285,1,"Gare Saint-Roch",43.605243,3.879635,0,0,OMP:SA:S5472,Europe/Paris,,OMP, +OMP:SP:1286,1,"Observatoire",43.606519,3.876527,0,0,OMP:SA:S5570,Europe/Paris,,OMP, +OMP:SP:1287,1,"Saint-Denis",43.605962,3.873333,0,0,OMP:SA:S5636,Europe/Paris,,OMP, +OMP:SP:1288,1,"Plan Cabanes",43.608572,3.868083,0,0,OMP:SA:S5610,Europe/Paris,,OMP, +OMP:SP:1289,1,"Les Arceaux",43.609979,3.861997,0,0,OMP:SA:S5527,Europe/Paris,,OMP, +OMP:SP:129,1,"Castors",43.632826,3.903884,0,0,OMP:SA:S5174,Europe/Paris,,OMP, +OMP:SP:1290,1,"Astruc",43.610241,3.854877,0,0,OMP:SA:S5383,Europe/Paris,,OMP, +OMP:SP:1291,1,"Jules Guesde",43.611507,3.846634,0,0,OMP:SA:S5510,Europe/Paris,,OMP, +OMP:SP:1292,1,"Tonnelles",43.613621,3.839452,0,0,OMP:SA:S5662,Europe/Paris,,OMP, +OMP:SP:1293,1,"Pergola",43.618173,3.839238,0,0,OMP:SA:S5588,Europe/Paris,,OMP, +OMP:SP:1294,1,"Hôtel du Département",43.622024,3.83507,0,0,OMP:SA:S5498,Europe/Paris,,OMP, +OMP:SP:1295,1,"Pilory",43.619574,3.832147,0,0,OMP:SA:S5598,Europe/Paris,,OMP, +OMP:SP:1296,1,"Celleneuve",43.615606,3.825906,0,0,OMP:SA:S5401,Europe/Paris,,OMP, +OMP:SP:1297,1,"Mosson",43.616258,3.819699,0,0,OMP:SA:S5563,Europe/Paris,,OMP, +OMP:SP:1298,1,"Lattes Centre",43.570749,3.905348,0,0,OMP:SA:S5327,Europe/Paris,,OMP, +OMP:SP:1299,1,"Cougourlude",43.571339,3.914241,0,0,OMP:SA:S5331,Europe/Paris,,OMP, +OMP:SP:13,1,"Hauts de Massane",43.636166,3.822593,0,0,OMP:SA:S5490,Europe/Paris,,OMP, +OMP:SP:130,1,"Saint-Exupéry",43.641543,3.923212,0,0,OMP:SA:S5204,Europe/Paris,,OMP, +OMP:SP:1300,1,"Les Garrigues",43.705484,4.006228,0,0,OMP:SA:S5777,Europe/Paris,,OMP, +OMP:SP:1301,1,"Les Mazes",43.709381,4.005375,0,0,OMP:SA:S5778,Europe/Paris,,OMP, +OMP:SP:1302,1,"Mairie",43.712294,4.005411,0,0,OMP:SA:S5779,Europe/Paris,,OMP, +OMP:SP:1303,1,"Coopérative",43.714483,4.002202,0,0,OMP:SA:S5775,Europe/Paris,,OMP, +OMP:SP:1304,1,"Le Ginestet",43.721821,4.006756,0,0,OMP:SA:S5167,Europe/Paris,,OMP, +OMP:SP:1305,1,"Lahntal",43.716317,4.004549,0,0,OMP:SA:S5776,Europe/Paris,,OMP, +OMP:SP:1306,1,"Mairie",43.728936,4.021048,0,0,OMP:SA:S5169,Europe/Paris,,OMP, +OMP:SP:1307,1,"Le Puits",43.725994,4.022387,0,0,OMP:SA:S5168,Europe/Paris,,OMP, +OMP:SP:1308,1,"Les Garrigues",43.705486,4.006091,0,0,OMP:SA:S5777,Europe/Paris,,OMP, +OMP:SP:1309,1,"Les Mazes",43.709641,4.005469,0,0,OMP:SA:S5778,Europe/Paris,,OMP, +OMP:SP:131,1,"Place du Forum",43.644643,3.923992,0,0,OMP:SA:S5201,Europe/Paris,,OMP, +OMP:SP:1310,1,"Mairie",43.712249,4.005372,0,0,OMP:SA:S5779,Europe/Paris,,OMP, +OMP:SP:1311,1,"Coopérative",43.714581,4.00223,0,0,OMP:SA:S5775,Europe/Paris,,OMP, +OMP:SP:1312,1,"Le Ginestet",43.721983,4.00676,0,0,OMP:SA:S5167,Europe/Paris,,OMP, +OMP:SP:1313,1,"Lahntal",43.716141,4.004259,0,0,OMP:SA:S5776,Europe/Paris,,OMP, +OMP:SP:1318,1,"Gare",43.609056,3.788657,0,0,OMP:SA:S5737,Europe/Paris,,OMP, +OMP:SP:1319,1,"Le Saint-Georges",43.610615,3.784293,0,0,OMP:SA:S5740,Europe/Paris,,OMP, +OMP:SP:132,1,"Paul Fajon",43.595117,3.837753,0,0,OMP:SA:S5586,Europe/Paris,,OMP, +OMP:SP:1321,1,"Bel Horizon",43.612001,3.776805,0,0,OMP:SA:S5734,Europe/Paris,,OMP, +OMP:SP:1322,1,"Le Réservoir",43.614591,3.776054,0,0,OMP:SA:S5739,Europe/Paris,,OMP, +OMP:SP:1323,1,"Dame d'Orcas",43.614514,3.780445,0,0,OMP:SA:S5736,Europe/Paris,,OMP, +OMP:SP:1324,1,"Avenue Justin Bec",43.626001,3.768422,0,0,OMP:SA:S5733,Europe/Paris,,OMP, +OMP:SP:1325,1,"Zone Artisanale",43.629272,3.769172,0,0,OMP:SA:S5742,Europe/Paris,,OMP, +OMP:SP:1326,1,"Gare",43.609056,3.788657,0,0,OMP:SA:S5737,Europe/Paris,,OMP, +OMP:SP:1327,1,"Le Saint-Georges",43.610615,3.784293,0,0,OMP:SA:S5740,Europe/Paris,,OMP, +OMP:SP:1328,1,"Dame d'Orcas",43.614514,3.780445,0,0,OMP:SA:S5736,Europe/Paris,,OMP, +OMP:SP:1329,1,"Avenue Justin Bec",43.625269,3.769344,0,0,OMP:SA:S5733,Europe/Paris,,OMP, +OMP:SP:1330,1,"Pierre Doumergue",43.64945,3.794389,0,0,OMP:SA:S5814,Europe/Paris,,OMP, +OMP:SP:1331,1,"Pierre Doumergue",43.649109,3.795,0,0,OMP:SA:S5814,Europe/Paris,,OMP, +OMP:SP:1332,1,"Château",43.655321,3.891266,0,0,OMP:SA:S5213,Europe/Paris,,OMP, +OMP:SP:1333,1,"Mas de Rochet",43.625864,3.906032,0,0,OMP:SA:S5194,Europe/Paris,,OMP, +OMP:SP:1334,1,"Apollo",43.621944,3.90913,0,0,OMP:SA:S5380,Europe/Paris,,OMP, +OMP:SP:1335,1,"Sabines",43.58379,3.860308,0,0,OMP:SA:S5633,Europe/Paris,,OMP, +OMP:SP:1336,1,"Lavandin",43.600315,3.851781,0,0,OMP:SA:S5521,Europe/Paris,,OMP, +OMP:SP:1337,1,"Lattes Centre",43.570503,3.904327,0,0,OMP:SA:S5327,Europe/Paris,,OMP, +OMP:SP:1338,1,"Sauvagine",43.662338,3.936595,0,0,OMP:SA:S5817,Europe/Paris,,OMP, +OMP:SP:1339,1,"Saint-Hubéry",43.573566,3.819742,0,0,OMP:SA:S5759,Europe/Paris,,OMP, +OMP:SP:134,1,"Bagatelle",43.595376,3.844365,0,0,OMP:SA:S5386,Europe/Paris,,OMP, +OMP:SP:1340,1,"La Lauze",43.561762,3.845184,0,0,OMP:SA:S5752,Europe/Paris,,OMP, +OMP:SP:1341,1,"Paul Gauguin",43.65567,3.975536,0,0,OMP:SA:S5792,Europe/Paris,,OMP, +OMP:SP:1342,1,"Saint-Éloi",43.627011,3.866758,0,0,OMP:SA:S5637,Europe/Paris,,OMP, +OMP:SP:1343,1,"Jacou",43.654703,3.91288,0,0,OMP:SA:S5291,Europe/Paris,,OMP, +OMP:SP:1344,1,"Les Baronnes",43.693674,3.872313,0,0,OMP:SA:S5709,Europe/Paris,,OMP, +OMP:SP:1345,1,"Occitanie",43.634623,3.848347,0,0,OMP:SA:S5571,Europe/Paris,,OMP, +OMP:SP:1346,1,"Le Pradas",43.660854,3.791981,0,0,OMP:SA:S5274,Europe/Paris,,OMP, +OMP:SP:1347,1,"La Valsière",43.650091,3.831746,0,0,OMP:SA:S5273,Europe/Paris,,OMP, +OMP:SP:1348,1,"Mosson",43.616677,3.819265,0,0,OMP:SA:S5563,Europe/Paris,,OMP, +OMP:SP:1349,1,"Le Martinet",43.634084,3.803243,0,0,OMP:SA:S5315,Europe/Paris,,OMP, +OMP:SP:135,1,"Collège Marcel Pagnol",43.597425,3.845668,0,0,OMP:SA:S5424,Europe/Paris,,OMP, +OMP:SP:1350,1,"Le Puits",43.725994,4.022387,0,0,OMP:SA:S5168,Europe/Paris,,OMP, +OMP:SP:1351,1,"Saint-Brès",43.664885,4.036731,0,0,OMP:SA:S5719,Europe/Paris,,OMP, +OMP:SP:1352,1,"Méditerranée",43.645757,3.934434,0,0,OMP:SA:S5816,Europe/Paris,,OMP, +OMP:SP:1353,1,"Via Domitia",43.647241,3.930712,0,0,OMP:SA:S5818,Europe/Paris,,OMP, +OMP:SP:1354,1,"Combe Chaude",43.652854,3.934769,0,0,OMP:SA:S5815,Europe/Paris,,OMP, +OMP:SP:1355,1,"Via Domitia",43.647241,3.930712,0,0,OMP:SA:S5818,Europe/Paris,,OMP, +OMP:SP:1356,1,"Sauvagine",43.662338,3.936595,0,0,OMP:SA:S5817,Europe/Paris,,OMP, +OMP:SP:1357,1,"Méditerranée",43.645872,3.934499,0,0,OMP:SA:S5816,Europe/Paris,,OMP, +OMP:SP:1358,1,"Combe Chaude",43.652825,3.934867,0,0,OMP:SA:S5815,Europe/Paris,,OMP, +OMP:SP:1359,1,"Lou Paillas",43.545559,3.774292,0,0,OMP:SA:S5264,Europe/Paris,,OMP, +OMP:SP:136,1,"Sapins",43.637013,3.910213,0,0,OMP:SA:S5205,Europe/Paris,,OMP, +OMP:SP:1360,1,"Aube Rouge",43.639391,3.924056,0,0,OMP:SA:S5170,Europe/Paris,,OMP, +OMP:SP:1361,1,"Les Aires",43.642499,3.89957,0,0,OMP:SA:S5191,Europe/Paris,,OMP, +OMP:SP:1362,1,"Les Clavoux",43.543412,3.700638,0,0,OMP:SA:S5225,Europe/Paris,,OMP, +OMP:SP:1363,1,"Rondelet",43.604089,3.874854,0,0,OMP:SA:S5629,Europe/Paris,,OMP, +OMP:SP:1364,1,"Charles de Gaulle",43.628394,3.897674,0,0,OMP:SA:S5177,Europe/Paris,,OMP, +OMP:SP:1366,1,"Zone Artisanale",43.629272,3.769172,0,0,OMP:SA:S5742,Europe/Paris,,OMP, +OMP:SP:137,1,"Thym",43.637961,3.906253,0,0,OMP:SA:S5207,Europe/Paris,,OMP, +OMP:SP:1377,1,"La Martelle",43.607318,3.826568,0,0,OMP:SA:S5512,Europe/Paris,,OMP, +OMP:SP:138,1,"Chênes",43.639051,3.909192,0,0,OMP:SA:S5179,Europe/Paris,,OMP, +OMP:SP:1381,1,"Anatole France",43.605568,3.876378,0,0,OMP:SA:S5375,Europe/Paris,,OMP, +OMP:SP:139,1,"Mûriers",43.640673,3.911379,0,0,OMP:SA:S5195,Europe/Paris,,OMP, +OMP:SP:14,1,"Raimbaud d'Orange",43.637485,3.820783,0,0,OMP:SA:S5620,Europe/Paris,,OMP, +OMP:SP:140,1,"Sycomores",43.641862,3.910631,0,0,OMP:SA:S5206,Europe/Paris,,OMP, +OMP:SP:1406,1,"Gare Saint-Roch (Pont de Sète)",43.603574,3.879417,0,0,OMP:SA:S5827,Europe/Paris,,OMP, +OMP:SP:1407,1,"Bel Horizon",43.612493,3.776966,0,0,OMP:SA:S5734,Europe/Paris,,OMP, +OMP:SP:1408,1,"Le Réservoir",43.614854,3.776556,0,0,OMP:SA:S5739,Europe/Paris,,OMP, +OMP:SP:1409,1,"Les Alicantes",43.613336,3.785871,0,0,OMP:SA:S5835,Europe/Paris,,OMP, +OMP:SP:141,1,"Place de la Monnaie",43.64415,3.910311,0,0,OMP:SA:S5200,Europe/Paris,,OMP, +OMP:SP:1410,1,"Chemin des Pins",43.60838,3.763056,0,0,OMP:SA:S5829,Europe/Paris,,OMP, +OMP:SP:1411,1,"Les Clauzes",43.606095,3.74328,0,0,OMP:SA:S5833,Europe/Paris,,OMP, +OMP:SP:1412,1,"Bellevue",43.607576,3.741436,0,0,OMP:SA:S5828,Europe/Paris,,OMP, +OMP:SP:1413,1,"Mas de Garenc",43.608546,3.737984,0,0,OMP:SA:S5834,Europe/Paris,,OMP, +OMP:SP:1414,1,"La Rouvière Longue",43.600769,3.734589,0,0,OMP:SA:S5832,Europe/Paris,,OMP, +OMP:SP:1415,1,"Fontaine Romaine",43.606123,3.736279,0,0,OMP:SA:S5831,Europe/Paris,,OMP, +OMP:SP:1416,1,"Clos des Pins",43.602938,3.739256,0,0,OMP:SA:S5830,Europe/Paris,,OMP, +OMP:SP:1417,1,"Les Alicantes",43.613328,3.785784,0,0,OMP:SA:S5835,Europe/Paris,,OMP, +OMP:SP:1418,1,"Chemin des Pins",43.608348,3.763476,0,0,OMP:SA:S5829,Europe/Paris,,OMP, +OMP:SP:1419,1,"Les Clauzes",43.606114,3.743219,0,0,OMP:SA:S5833,Europe/Paris,,OMP, +OMP:SP:142,1,"Chemin de la Monnaie",43.64357,3.910629,0,0,OMP:SA:S5178,Europe/Paris,,OMP, +OMP:SP:1420,1,"Bellevue",43.607521,3.741447,0,0,OMP:SA:S5828,Europe/Paris,,OMP, +OMP:SP:1421,1,"Mas de Garenc",43.608528,3.73802,0,0,OMP:SA:S5834,Europe/Paris,,OMP, +OMP:SP:1422,1,"La Rouvière Longue",43.600769,3.734589,0,0,OMP:SA:S5832,Europe/Paris,,OMP, +OMP:SP:1423,1,"Fontaine Romaine",43.606141,3.736316,0,0,OMP:SA:S5831,Europe/Paris,,OMP, +OMP:SP:1424,1,"Clos des Pins",43.603843,3.739538,0,0,OMP:SA:S5830,Europe/Paris,,OMP, +OMP:SP:1425,1,"Les Jardins",43.609691,3.782859,0,0,OMP:SA:S5836,Europe/Paris,,OMP, +OMP:SP:1426,1,"Les Jardins",43.609691,3.782859,0,0,OMP:SA:S5836,Europe/Paris,,OMP, +OMP:SP:1427,1,"Léon Blum",43.609841,3.890647,0,0,OMP:SA:S5524,Europe/Paris,,OMP, +OMP:SP:143,1,"Buissonnets",43.64551,3.907018,0,0,OMP:SA:S5172,Europe/Paris,,OMP, +OMP:SP:1430,1,"Albert 1er - Cathédrale",43.614775,3.873755,0,0,OMP:SA:S5837,Europe/Paris,,OMP, +OMP:SP:1431,1,"Peyrou - Arc de Triomphe",43.611407,3.872304,0,0,OMP:SA:S5590,Europe/Paris,,OMP, +OMP:SP:1432,1,"Saint-Guilhem - Courreau",43.607971,3.873721,0,0,OMP:SA:S5639,Europe/Paris,,OMP, +OMP:SP:1433,1,"Garcia Lorca",43.591006,3.890778,0,0,OMP:SA:S5470,Europe/Paris,,OMP, +OMP:SP:1434,1,"Garcia Lorca",43.5912,3.891055,0,0,OMP:SA:S5470,Europe/Paris,,OMP, +OMP:SP:1435,1,"Garcia Lorca",43.591163,3.891103,0,0,OMP:SA:S5470,Europe/Paris,,OMP, +OMP:SP:1436,1,"Albert 1er - Cathédrale",43.614803,3.87367,0,0,OMP:SA:S5837,Europe/Paris,,OMP, +OMP:SP:1437,1,"Peyrou - Arc de Triomphe",43.611417,3.872218,0,0,OMP:SA:S5590,Europe/Paris,,OMP, +OMP:SP:1438,1,"Saint-Guilhem - Courreau",43.607944,3.873671,0,0,OMP:SA:S5639,Europe/Paris,,OMP, +OMP:SP:1439,1,"Garcia Lorca",43.590979,3.890814,0,0,OMP:SA:S5470,Europe/Paris,,OMP, +OMP:SP:144,1,"Balestrier",43.64427,3.903295,0,0,OMP:SA:S5171,Europe/Paris,,OMP, +OMP:SP:1440,1,"Le Réservoir",43.614868,3.776853,0,0,OMP:SA:S5739,Europe/Paris,,OMP, +OMP:SP:1441,1,"Montaud Stade",43.751978,3.956253,0,0,OMP:SA:S5839,Europe/Paris,,OMP, +OMP:SP:145,1,"Les Aires",43.642499,3.89957,0,0,OMP:SA:S5191,Europe/Paris,,OMP, +OMP:SP:146,1,"Balestrier",43.644217,3.903244,0,0,OMP:SA:S5171,Europe/Paris,,OMP, +OMP:SP:147,1,"Buissonnets",43.645492,3.907079,0,0,OMP:SA:S5172,Europe/Paris,,OMP, +OMP:SP:148,1,"Chemin de la Monnaie",43.643598,3.910556,0,0,OMP:SA:S5178,Europe/Paris,,OMP, +OMP:SP:149,1,"Place de la Monnaie",43.644286,3.91024,0,0,OMP:SA:S5200,Europe/Paris,,OMP, +OMP:SP:15,1,"Comté de Toulouse",43.636994,3.819272,0,0,OMP:SA:S5428,Europe/Paris,,OMP, +OMP:SP:150,1,"Sycomores",43.641854,3.910569,0,0,OMP:SA:S5206,Europe/Paris,,OMP, +OMP:SP:151,1,"Mûriers",43.640633,3.911662,0,0,OMP:SA:S5195,Europe/Paris,,OMP, +OMP:SP:152,1,"Chênes",43.639027,3.908994,0,0,OMP:SA:S5179,Europe/Paris,,OMP, +OMP:SP:153,1,"Thym",43.637764,3.906174,0,0,OMP:SA:S5207,Europe/Paris,,OMP, +OMP:SP:154,1,"Sapins",43.636913,3.910297,0,0,OMP:SA:S5205,Europe/Paris,,OMP, +OMP:SP:155,1,"Cimetière",43.631991,3.897574,0,0,OMP:SA:S5180,Europe/Paris,,OMP, +OMP:SP:156,1,"Figuerolles",43.60645,3.864278,0,0,OMP:SA:S5458,Europe/Paris,,OMP, +OMP:SP:157,1,"Claret",43.605791,3.861972,0,0,OMP:SA:S5419,Europe/Paris,,OMP, +OMP:SP:158,1,"Cité Gély",43.604664,3.85901,0,0,OMP:SA:S5415,Europe/Paris,,OMP, +OMP:SP:159,1,"Chasseurs",43.603316,3.856363,0,0,OMP:SA:S5408,Europe/Paris,,OMP, +OMP:SP:16,1,"Place d'Italie",43.641789,3.818382,0,0,OMP:SA:S5608,Europe/Paris,,OMP, +OMP:SP:160,1,"Les Roses",43.602389,3.853939,0,0,OMP:SA:S5531,Europe/Paris,,OMP, +OMP:SP:161,1,"Cité Valette",43.601545,3.851888,0,0,OMP:SA:S5418,Europe/Paris,,OMP, +OMP:SP:162,1,"Georges Danton",43.59946,3.842827,0,0,OMP:SA:S5478,Europe/Paris,,OMP, +OMP:SP:163,1,"Rouget de Lisle",43.594474,3.839418,0,0,OMP:SA:S5631,Europe/Paris,,OMP, +OMP:SP:164,1,"Cheng-Du",43.593276,3.843481,0,0,OMP:SA:S5410,Europe/Paris,,OMP, +OMP:SP:165,1,"Collège Marcel Pagnol",43.596973,3.845186,0,0,OMP:SA:S5424,Europe/Paris,,OMP, +OMP:SP:166,1,"Bagatelle",43.595091,3.844184,0,0,OMP:SA:S5386,Europe/Paris,,OMP, +OMP:SP:167,1,"Paul Fajon",43.595438,3.837341,0,0,OMP:SA:S5586,Europe/Paris,,OMP, +OMP:SP:168,1,"Place du Forum",43.644526,3.923988,0,0,OMP:SA:S5201,Europe/Paris,,OMP, +OMP:SP:169,1,"Saint-Exupéry",43.64158,3.923139,0,0,OMP:SA:S5204,Europe/Paris,,OMP, +OMP:SP:17,1,"Jacques Prévert",43.642351,3.814089,0,0,OMP:SA:S5502,Europe/Paris,,OMP, +OMP:SP:170,1,"Castelle",43.586651,3.87217,0,0,OMP:SA:S5399,Europe/Paris,,OMP, +OMP:SP:171,1,"Passerines",43.588446,3.872417,0,0,OMP:SA:S5583,Europe/Paris,,OMP, +OMP:SP:172,1,"Les Pins",43.590948,3.873486,0,0,OMP:SA:S5530,Europe/Paris,,OMP, +OMP:SP:173,1,"Berthelot",43.601847,3.869387,0,0,OMP:SA:S5391,Europe/Paris,,OMP, +OMP:SP:174,1,"Lycée Georges Clemenceau",43.603047,3.871597,0,0,OMP:SA:S5538,Europe/Paris,,OMP, +OMP:SP:175,1,"Fac de Lettres",43.63012,3.869985,0,0,OMP:SA:S5455,Europe/Paris,,OMP, +OMP:SP:176,1,"Vert Bois",43.635303,3.868379,0,0,OMP:SA:S5670,Europe/Paris,,OMP, +OMP:SP:177,1,"CNRS",43.638669,3.865573,0,0,OMP:SA:S5421,Europe/Paris,,OMP, +OMP:SP:178,1,"Montmaur",43.641147,3.86325,0,0,OMP:SA:S5562,Europe/Paris,,OMP, +OMP:SP:179,1,"Cairons",43.643313,3.860733,0,0,OMP:SA:S5396,Europe/Paris,,OMP, +OMP:SP:18,1,"Corse",43.64022,3.810778,0,0,OMP:SA:S5430,Europe/Paris,,OMP, +OMP:SP:180,1,"Garosud (Jeune Parque)",43.581011,3.869286,0,0,OMP:SA:S5474,Europe/Paris,,OMP, +OMP:SP:181,1,"Garosud (Jeune Parque)",43.580626,3.869202,0,0,OMP:SA:S5474,Europe/Paris,,OMP, +OMP:SP:182,1,"Hortus",43.643223,3.860124,0,0,OMP:SA:S5497,Europe/Paris,,OMP, +OMP:SP:183,1,"Nazareth",43.621685,3.880277,0,0,OMP:SA:S5568,Europe/Paris,,OMP, +OMP:SP:184,1,"Aiguelongue",43.626405,3.882175,0,0,OMP:SA:S5368,Europe/Paris,,OMP, +OMP:SP:185,1,"Hippolyte Rech",43.620147,3.865127,0,0,OMP:SA:S5495,Europe/Paris,,OMP, +OMP:SP:186,1,"Charles Flahault",43.618412,3.866417,0,0,OMP:SA:S5407,Europe/Paris,,OMP, +OMP:SP:187,1,"Lavalette",43.637735,3.869336,0,0,OMP:SA:S5520,Europe/Paris,,OMP, +OMP:SP:188,1,"Zoo",43.639964,3.873146,0,0,OMP:SA:S5681,Europe/Paris,,OMP, +OMP:SP:189,1,"Agropolis",43.646619,3.868572,0,0,OMP:SA:S5367,Europe/Paris,,OMP, +OMP:SP:19,1,"Comté de Nice",43.638607,3.811764,0,0,OMP:SA:S5427,Europe/Paris,,OMP, +OMP:SP:190,1,"Lycée Frédéric Bazille",43.645557,3.862254,0,0,OMP:SA:S5537,Europe/Paris,,OMP, +OMP:SP:191,1,"Cairons",43.643025,3.8608,0,0,OMP:SA:S5396,Europe/Paris,,OMP, +OMP:SP:192,1,"Montmaur",43.640426,3.864011,0,0,OMP:SA:S5562,Europe/Paris,,OMP, +OMP:SP:193,1,"CNRS",43.638523,3.865705,0,0,OMP:SA:S5421,Europe/Paris,,OMP, +OMP:SP:194,1,"Vert Bois",43.63422,3.868041,0,0,OMP:SA:S5670,Europe/Paris,,OMP, +OMP:SP:195,1,"Fac de Lettres",43.630433,3.869462,0,0,OMP:SA:S5455,Europe/Paris,,OMP, +OMP:SP:196,1,"Rondelet",43.604089,3.874854,0,0,OMP:SA:S5629,Europe/Paris,,OMP, +OMP:SP:197,1,"Lycée Georges Clemenceau",43.603146,3.871624,0,0,OMP:SA:S5538,Europe/Paris,,OMP, +OMP:SP:198,1,"Berthelot",43.602165,3.869804,0,0,OMP:SA:S5391,Europe/Paris,,OMP, +OMP:SP:199,1,"Castelle",43.586619,3.871947,0,0,OMP:SA:S5399,Europe/Paris,,OMP, +OMP:SP:20,1,"Mas de Bellevue",43.636498,3.812761,0,0,OMP:SA:S5553,Europe/Paris,,OMP, +OMP:SP:200,1,"Hortus",43.642975,3.859821,0,0,OMP:SA:S5497,Europe/Paris,,OMP, +OMP:SP:201,1,"Nazareth",43.62165,3.880264,0,0,OMP:SA:S5568,Europe/Paris,,OMP, +OMP:SP:202,1,"Sainte-Odile",43.622604,3.873187,0,0,OMP:SA:S5651,Europe/Paris,,OMP, +OMP:SP:203,1,"Marie Caizergues",43.621224,3.875426,0,0,OMP:SA:S5547,Europe/Paris,,OMP, +OMP:SP:204,1,"Aiguelongue",43.626774,3.882123,0,0,OMP:SA:S5368,Europe/Paris,,OMP, +OMP:SP:205,1,"Hippolyte Rech",43.619692,3.865548,0,0,OMP:SA:S5495,Europe/Paris,,OMP, +OMP:SP:206,1,"Agropolis",43.646018,3.868469,0,0,OMP:SA:S5367,Europe/Paris,,OMP, +OMP:SP:207,1,"Agropolis",43.646422,3.868492,0,0,OMP:SA:S5367,Europe/Paris,,OMP, +OMP:SP:208,1,"Zoo",43.639884,3.873107,0,0,OMP:SA:S5681,Europe/Paris,,OMP, +OMP:SP:209,1,"Lavalette",43.637558,3.869158,0,0,OMP:SA:S5520,Europe/Paris,,OMP, +OMP:SP:21,1,"Pierre de Coubertin",43.637543,3.814595,0,0,OMP:SA:S5594,Europe/Paris,,OMP, +OMP:SP:210,1,"Pas du Loup",43.600133,3.848127,0,0,OMP:SA:S5582,Europe/Paris,,OMP, +OMP:SP:211,1,"Estanove",43.597731,3.848237,0,0,OMP:SA:S5447,Europe/Paris,,OMP, +OMP:SP:212,1,"Véga",43.595707,3.849581,0,0,OMP:SA:S5669,Europe/Paris,,OMP, +OMP:SP:213,1,"Font Couverte",43.593349,3.851769,0,0,OMP:SA:S5459,Europe/Paris,,OMP, +OMP:SP:214,1,"Le Grand M",43.590944,3.854612,0,0,OMP:SA:S5522,Europe/Paris,,OMP, +OMP:SP:215,1,"Avenue de Toulouse",43.591332,3.857714,0,0,OMP:SA:S5385,Europe/Paris,,OMP, +OMP:SP:216,1,"Ronceray",43.593786,3.860328,0,0,OMP:SA:S5628,Europe/Paris,,OMP, +OMP:SP:217,1,"Guillaume Janvier",43.597645,3.864562,0,0,OMP:SA:S5487,Europe/Paris,,OMP, +OMP:SP:218,1,"Universités Sciences et Lettres",43.629154,3.861395,0,0,OMP:SA:S5665,Europe/Paris,,OMP, +OMP:SP:219,1,"Eugène Bataillon",43.631479,3.860999,0,0,OMP:SA:S5451,Europe/Paris,,OMP, +OMP:SP:22,1,"Halles de la Paillade",43.627469,3.817627,0,0,OMP:SA:S5489,Europe/Paris,,OMP, +OMP:SP:220,1,"Gascogne",43.634324,3.860023,0,0,OMP:SA:S5475,Europe/Paris,,OMP, +OMP:SP:222,1,"École d'Architecture",43.637726,3.859124,0,0,OMP:SA:S5442,Europe/Paris,,OMP, +OMP:SP:223,1,"Maurice Chauvet",43.638644,3.856524,0,0,OMP:SA:S5557,Europe/Paris,,OMP, +OMP:SP:224,1,"Pic Saint-Loup",43.639184,3.854558,0,0,OMP:SA:S5591,Europe/Paris,,OMP, +OMP:SP:225,1,"Plan des 4 Seigneurs",43.640844,3.857957,0,0,OMP:SA:S5611,Europe/Paris,,OMP, +OMP:SP:226,1,"Georges Brassens",43.595698,3.862444,0,0,OMP:SA:S5477,Europe/Paris,,OMP, +OMP:SP:227,1,"Place du 8 Mai",43.599948,3.867048,0,0,OMP:SA:S5609,Europe/Paris,,OMP, +OMP:SP:228,1,"Pic Saint-Loup",43.639124,3.854333,0,0,OMP:SA:S5591,Europe/Paris,,OMP, +OMP:SP:229,1,"Maurice Chauvet",43.638504,3.856842,0,0,OMP:SA:S5557,Europe/Paris,,OMP, +OMP:SP:23,1,"Oxford",43.626937,3.82041,0,0,OMP:SA:S5574,Europe/Paris,,OMP, +OMP:SP:230,1,"École d'Architecture",43.637403,3.859709,0,0,OMP:SA:S5442,Europe/Paris,,OMP, +OMP:SP:231,1,"Gascogne",43.634389,3.859913,0,0,OMP:SA:S5475,Europe/Paris,,OMP, +OMP:SP:232,1,"Eugène Bataillon",43.631713,3.860349,0,0,OMP:SA:S5451,Europe/Paris,,OMP, +OMP:SP:233,1,"Universités Sciences et Lettres",43.629375,3.86103,0,0,OMP:SA:S5665,Europe/Paris,,OMP, +OMP:SP:234,1,"Guillaume Janvier",43.597099,3.863818,0,0,OMP:SA:S5487,Europe/Paris,,OMP, +OMP:SP:235,1,"Ronceray",43.593938,3.860344,0,0,OMP:SA:S5628,Europe/Paris,,OMP, +OMP:SP:236,1,"Avenue de Toulouse",43.591822,3.858086,0,0,OMP:SA:S5385,Europe/Paris,,OMP, +OMP:SP:237,1,"Le Grand M",43.590612,3.855259,0,0,OMP:SA:S5522,Europe/Paris,,OMP, +OMP:SP:238,1,"Font Couverte",43.593585,3.851578,0,0,OMP:SA:S5459,Europe/Paris,,OMP, +OMP:SP:239,1,"Véga",43.59567,3.849679,0,0,OMP:SA:S5669,Europe/Paris,,OMP, +OMP:SP:24,1,"Pierre de Coubertin",43.63774,3.814638,0,0,OMP:SA:S5594,Europe/Paris,,OMP, +OMP:SP:240,1,"Estanove",43.597929,3.848205,0,0,OMP:SA:S5447,Europe/Paris,,OMP, +OMP:SP:241,1,"Pas du Loup",43.600446,3.848853,0,0,OMP:SA:S5582,Europe/Paris,,OMP, +OMP:SP:242,1,"Georges Brassens",43.595877,3.862474,0,0,OMP:SA:S5477,Europe/Paris,,OMP, +OMP:SP:243,1,"Place du 8 Mai",43.599586,3.866519,0,0,OMP:SA:S5609,Europe/Paris,,OMP, +OMP:SP:244,1,"Saint-Priest",43.635155,3.843682,0,0,OMP:SA:S5647,Europe/Paris,,OMP, +OMP:SP:245,1,"Château d'Ô",43.631928,3.842409,0,0,OMP:SA:S5409,Europe/Paris,,OMP, +OMP:SP:246,1,"Pléiade",43.628474,3.845758,0,0,OMP:SA:S5612,Europe/Paris,,OMP, +OMP:SP:247,1,"Font Trouvé",43.626927,3.847722,0,0,OMP:SA:S5460,Europe/Paris,,OMP, +OMP:SP:248,1,"Gardioles",43.625077,3.850829,0,0,OMP:SA:S5471,Europe/Paris,,OMP, +OMP:SP:249,1,"Cervantès",43.62215,3.855083,0,0,OMP:SA:S5403,Europe/Paris,,OMP, +OMP:SP:25,1,"Pierre Cardenal",43.638714,3.81902,0,0,OMP:SA:S5592,Europe/Paris,,OMP, +OMP:SP:250,1,"La Source",43.621037,3.85686,0,0,OMP:SA:S5515,Europe/Paris,,OMP, +OMP:SP:251,1,"Cité Roger",43.620378,3.858327,0,0,OMP:SA:S5417,Europe/Paris,,OMP, +OMP:SP:252,1,"Collège Camille Claudel",43.616397,3.862094,0,0,OMP:SA:S5422,Europe/Paris,,OMP, +OMP:SP:253,1,"Sainte-Thérèse",43.614286,3.865168,0,0,OMP:SA:S5652,Europe/Paris,,OMP, +OMP:SP:254,1,"Paladilhe",43.612046,3.867187,0,0,OMP:SA:S5576,Europe/Paris,,OMP, +OMP:SP:255,1,"Myrtes",43.60111,3.866188,0,0,OMP:SA:S5567,Europe/Paris,,OMP, +OMP:SP:256,1,"Lepic",43.601397,3.863079,0,0,OMP:SA:S5526,Europe/Paris,,OMP, +OMP:SP:257,1,"Gouara",43.603188,3.86231,0,0,OMP:SA:S5483,Europe/Paris,,OMP, +OMP:SP:258,1,"Mas de Merle",43.604508,3.857286,0,0,OMP:SA:S5554,Europe/Paris,,OMP, +OMP:SP:259,1,"Étoile",43.605226,3.854781,0,0,OMP:SA:S5449,Europe/Paris,,OMP, +OMP:SP:26,1,"Carriéra",43.640863,3.818977,0,0,OMP:SA:S5398,Europe/Paris,,OMP, +OMP:SP:260,1,"Figairasse",43.607193,3.850429,0,0,OMP:SA:S5457,Europe/Paris,,OMP, +OMP:SP:261,1,"François Dezeuze",43.60868,3.845669,0,0,OMP:SA:S5463,Europe/Paris,,OMP, +OMP:SP:262,1,"Lycée Jules Ferry",43.6087,3.84103,0,0,OMP:SA:S5540,Europe/Paris,,OMP, +OMP:SP:263,1,"Martellière",43.6067,3.837439,0,0,OMP:SA:S5550,Europe/Paris,,OMP, +OMP:SP:264,1,"Monsieur Teste",43.607385,3.835997,0,0,OMP:SA:S5561,Europe/Paris,,OMP, +OMP:SP:265,1,"Gustave Eiffel",43.609255,3.832743,0,0,OMP:SA:S5488,Europe/Paris,,OMP, +OMP:SP:266,1,"Croix des Rosiers",43.610674,3.830924,0,0,OMP:SA:S5435,Europe/Paris,,OMP, +OMP:SP:267,1,"Grèzes",43.60964,3.827643,0,0,OMP:SA:S5485,Europe/Paris,,OMP, +OMP:SP:268,1,"Hôtel du Département",43.621836,3.83504,0,0,OMP:SA:S5498,Europe/Paris,,OMP, +OMP:SP:269,1,"Lycée Léonard de Vinci",43.625705,3.82435,0,0,OMP:SA:S5541,Europe/Paris,,OMP, +OMP:SP:27,1,"Mas de Bellevue",43.637104,3.812492,0,0,OMP:SA:S5553,Europe/Paris,,OMP, +OMP:SP:270,1,"Jean Bart",43.625592,3.837725,0,0,OMP:SA:S5504,Europe/Paris,,OMP, +OMP:SP:271,1,"Sophie Germain",43.605039,3.835329,0,0,OMP:SA:S5658,Europe/Paris,,OMP, +OMP:SP:272,1,"Ormeaux",43.602023,3.833741,0,0,OMP:SA:S5573,Europe/Paris,,OMP, +OMP:SP:273,1,"Les Bouisses",43.599325,3.835093,0,0,OMP:SA:S5529,Europe/Paris,,OMP, +OMP:SP:274,1,"Les Bouisses",43.59854,3.835332,0,0,OMP:SA:S5529,Europe/Paris,,OMP, +OMP:SP:275,1,"La Martelle",43.607388,3.826694,0,0,OMP:SA:S5512,Europe/Paris,,OMP, +OMP:SP:276,1,"Grèzes",43.609728,3.827769,0,0,OMP:SA:S5485,Europe/Paris,,OMP, +OMP:SP:277,1,"Croix des Rosiers",43.610887,3.830435,0,0,OMP:SA:S5435,Europe/Paris,,OMP, +OMP:SP:278,1,"Gustave Eiffel",43.608778,3.833436,0,0,OMP:SA:S5488,Europe/Paris,,OMP, +OMP:SP:279,1,"Monsieur Teste",43.606976,3.836345,0,0,OMP:SA:S5561,Europe/Paris,,OMP, +OMP:SP:28,1,"Comté de Nice",43.63892,3.811202,0,0,OMP:SA:S5427,Europe/Paris,,OMP, +OMP:SP:280,1,"Martellière",43.607183,3.83828,0,0,OMP:SA:S5550,Europe/Paris,,OMP, +OMP:SP:281,1,"Lycée Jules Ferry",43.608656,3.840967,0,0,OMP:SA:S5540,Europe/Paris,,OMP, +OMP:SP:282,1,"François Dezeuze",43.608596,3.846545,0,0,OMP:SA:S5463,Europe/Paris,,OMP, +OMP:SP:283,1,"Figairasse",43.607048,3.850549,0,0,OMP:SA:S5457,Europe/Paris,,OMP, +OMP:SP:284,1,"Étoile",43.605145,3.854804,0,0,OMP:SA:S5449,Europe/Paris,,OMP, +OMP:SP:285,1,"Mas de Merle",43.604351,3.857616,0,0,OMP:SA:S5554,Europe/Paris,,OMP, +OMP:SP:286,1,"Gouara",43.603038,3.862702,0,0,OMP:SA:S5483,Europe/Paris,,OMP, +OMP:SP:287,1,"Croix du Capitaine",43.602085,3.866573,0,0,OMP:SA:S5436,Europe/Paris,,OMP, +OMP:SP:288,1,"Pitot",43.612091,3.870343,0,0,OMP:SA:S5602,Europe/Paris,,OMP, +OMP:SP:289,1,"Doria",43.612494,3.867928,0,0,OMP:SA:S5440,Europe/Paris,,OMP, +OMP:SP:29,1,"Corse",43.64067,3.811396,0,0,OMP:SA:S5430,Europe/Paris,,OMP, +OMP:SP:290,1,"Sainte-Thérèse",43.614101,3.865534,0,0,OMP:SA:S5652,Europe/Paris,,OMP, +OMP:SP:291,1,"Collège Camille Claudel",43.616485,3.862171,0,0,OMP:SA:S5422,Europe/Paris,,OMP, +OMP:SP:292,1,"Cité Roger",43.620393,3.85855,0,0,OMP:SA:S5417,Europe/Paris,,OMP, +OMP:SP:293,1,"La Source",43.62166,3.856022,0,0,OMP:SA:S5515,Europe/Paris,,OMP, +OMP:SP:294,1,"Cervantès",43.622904,3.854484,0,0,OMP:SA:S5403,Europe/Paris,,OMP, +OMP:SP:295,1,"Gardioles",43.62471,3.851995,0,0,OMP:SA:S5471,Europe/Paris,,OMP, +OMP:SP:296,1,"Mûriers",43.626206,3.849164,0,0,OMP:SA:S5566,Europe/Paris,,OMP, +OMP:SP:297,1,"Font Trouvé",43.627034,3.847824,0,0,OMP:SA:S5460,Europe/Paris,,OMP, +OMP:SP:298,1,"Pléiade",43.628445,3.845881,0,0,OMP:SA:S5612,Europe/Paris,,OMP, +OMP:SP:299,1,"Saint-Priest",43.634465,3.843577,0,0,OMP:SA:S5647,Europe/Paris,,OMP, +OMP:SP:30,1,"Jacques Prévert",43.64226,3.814136,0,0,OMP:SA:S5502,Europe/Paris,,OMP, +OMP:SP:300,1,"Château d'Ô",43.631291,3.842949,0,0,OMP:SA:S5409,Europe/Paris,,OMP, +OMP:SP:301,1,"Lycée Léonard de Vinci",43.626209,3.823633,0,0,OMP:SA:S5541,Europe/Paris,,OMP, +OMP:SP:302,1,"Lycée Jean Monnet",43.624176,3.834804,0,0,OMP:SA:S5539,Europe/Paris,,OMP, +OMP:SP:303,1,"Les Bouisses",43.598629,3.835396,0,0,OMP:SA:S5529,Europe/Paris,,OMP, +OMP:SP:304,1,"Ormeaux",43.603045,3.83331,0,0,OMP:SA:S5573,Europe/Paris,,OMP, +OMP:SP:305,1,"Sophie Germain",43.605073,3.835503,0,0,OMP:SA:S5658,Europe/Paris,,OMP, +OMP:SP:306,1,"Jean Mirailhet",43.596156,3.892105,0,0,OMP:SA:S5507,Europe/Paris,,OMP, +OMP:SP:307,1,"Collège des Aiguerelles",43.598295,3.890926,0,0,OMP:SA:S5423,Europe/Paris,,OMP, +OMP:SP:308,1,"Chambéry",43.599327,3.889124,0,0,OMP:SA:S5405,Europe/Paris,,OMP, +OMP:SP:309,1,"Soleiado",43.600696,3.886464,0,0,OMP:SA:S5657,Europe/Paris,,OMP, +OMP:SP:31,1,"Place d'Italie",43.641861,3.818359,0,0,OMP:SA:S5608,Europe/Paris,,OMP, +OMP:SP:310,1,"Ernest Renan",43.615455,3.885318,0,0,OMP:SA:S5445,Europe/Paris,,OMP, +OMP:SP:311,1,"Pinsons",43.616954,3.886114,0,0,OMP:SA:S5599,Europe/Paris,,OMP, +OMP:SP:312,1,"Estragon",43.61869,3.887967,0,0,OMP:SA:S5448,Europe/Paris,,OMP, +OMP:SP:313,1,"Boulevard des Sports",43.619355,3.88921,0,0,OMP:SA:S5392,Europe/Paris,,OMP, +OMP:SP:314,1,"Palombes",43.619486,3.893867,0,0,OMP:SA:S5578,Europe/Paris,,OMP, +OMP:SP:315,1,"Foyer des Aubes",43.618459,3.894631,0,0,OMP:SA:S5461,Europe/Paris,,OMP, +OMP:SP:316,1,"Garigliano",43.618796,3.897424,0,0,OMP:SA:S5473,Europe/Paris,,OMP, +OMP:SP:317,1,"Salaison",43.623901,3.898813,0,0,OMP:SA:S5653,Europe/Paris,,OMP, +OMP:SP:318,1,"La Pompignane (Les Lacs)",43.625814,3.900809,0,0,OMP:SA:S5190,Europe/Paris,,OMP, +OMP:SP:319,1,"Pioch Pelat",43.626171,3.902192,0,0,OMP:SA:S5198,Europe/Paris,,OMP, +OMP:SP:32,1,"Carriéra",43.640762,3.819197,0,0,OMP:SA:S5398,Europe/Paris,,OMP, +OMP:SP:320,1,"Mas de Rochet",43.625857,3.906515,0,0,OMP:SA:S5194,Europe/Paris,,OMP, +OMP:SP:321,1,"Place Carnot",43.603269,3.8838,0,0,OMP:SA:S5604,Europe/Paris,,OMP, +OMP:SP:322,1,"Henri René",43.603143,3.881941,0,0,OMP:SA:S5494,Europe/Paris,,OMP, +OMP:SP:323,1,"Pioch Pelat",43.626228,3.901983,0,0,OMP:SA:S5198,Europe/Paris,,OMP, +OMP:SP:324,1,"La Pompignane (Les Lacs)",43.625108,3.899898,0,0,OMP:SA:S5190,Europe/Paris,,OMP, +OMP:SP:325,1,"Salaison",43.623822,3.89865,0,0,OMP:SA:S5653,Europe/Paris,,OMP, +OMP:SP:326,1,"Garigliano",43.61861,3.897233,0,0,OMP:SA:S5473,Europe/Paris,,OMP, +OMP:SP:327,1,"Foyer des Aubes",43.6185,3.894879,0,0,OMP:SA:S5461,Europe/Paris,,OMP, +OMP:SP:328,1,"Palombes",43.619735,3.894034,0,0,OMP:SA:S5578,Europe/Paris,,OMP, +OMP:SP:329,1,"Françoise",43.619957,3.891132,0,0,OMP:SA:S5464,Europe/Paris,,OMP, +OMP:SP:33,1,"Pierre Cardenal",43.637962,3.818778,0,0,OMP:SA:S5592,Europe/Paris,,OMP, +OMP:SP:330,1,"Boulevard des Sports",43.619418,3.889237,0,0,OMP:SA:S5392,Europe/Paris,,OMP, +OMP:SP:331,1,"Estragon",43.618594,3.887754,0,0,OMP:SA:S5448,Europe/Paris,,OMP, +OMP:SP:332,1,"Pinsons",43.617194,3.886293,0,0,OMP:SA:S5599,Europe/Paris,,OMP, +OMP:SP:333,1,"Ernest Renan",43.615439,3.885219,0,0,OMP:SA:S5445,Europe/Paris,,OMP, +OMP:SP:334,1,"Hélios",43.600996,3.885606,0,0,OMP:SA:S5491,Europe/Paris,,OMP, +OMP:SP:335,1,"Soleiado",43.60032,3.887011,0,0,OMP:SA:S5657,Europe/Paris,,OMP, +OMP:SP:336,1,"Chambéry",43.598878,3.889767,0,0,OMP:SA:S5405,Europe/Paris,,OMP, +OMP:SP:337,1,"Collège des Aiguerelles",43.597567,3.892144,0,0,OMP:SA:S5423,Europe/Paris,,OMP, +OMP:SP:338,1,"Belvédère",43.617031,3.842449,0,0,OMP:SA:S5389,Europe/Paris,,OMP, +OMP:SP:339,1,"Saint-Clément",43.617741,3.844398,0,0,OMP:SA:S5634,Europe/Paris,,OMP, +OMP:SP:34,1,"Comté de Toulouse",43.636784,3.818846,0,0,OMP:SA:S5428,Europe/Paris,,OMP, +OMP:SP:340,1,"Las Cazes",43.616103,3.847114,0,0,OMP:SA:S5517,Europe/Paris,,OMP, +OMP:SP:341,1,"Espérance",43.614113,3.849982,0,0,OMP:SA:S5446,Europe/Paris,,OMP, +OMP:SP:342,1,"Saint-Gabriel",43.61459,3.852444,0,0,OMP:SA:S5638,Europe/Paris,,OMP, +OMP:SP:343,1,"Las Sorbes",43.615159,3.854884,0,0,OMP:SA:S5519,Europe/Paris,,OMP, +OMP:SP:344,1,"Érables",43.614995,3.856909,0,0,OMP:SA:S5444,Europe/Paris,,OMP, +OMP:SP:345,1,"Louvain",43.613514,3.858689,0,0,OMP:SA:S5535,Europe/Paris,,OMP, +OMP:SP:346,1,"Avenue de l'Agriculture",43.612105,3.861101,0,0,OMP:SA:S5384,Europe/Paris,,OMP, +OMP:SP:347,1,"Glycines",43.611886,3.863829,0,0,OMP:SA:S5481,Europe/Paris,,OMP, +OMP:SP:348,1,"Paul Painlevé",43.611148,3.898539,0,0,OMP:SA:S5587,Europe/Paris,,OMP, +OMP:SP:349,1,"Colverts",43.613769,3.898165,0,0,OMP:SA:S5425,Europe/Paris,,OMP, +OMP:SP:35,1,"Raimbaud d'Orange",43.637414,3.8214,0,0,OMP:SA:S5620,Europe/Paris,,OMP, +OMP:SP:350,1,"Saint-Jean",43.615465,3.897766,0,0,OMP:SA:S5641,Europe/Paris,,OMP, +OMP:SP:351,1,"Marie Durand",43.61832,3.898079,0,0,OMP:SA:S5549,Europe/Paris,,OMP, +OMP:SP:352,1,"André Malraux",43.61941,3.90041,0,0,OMP:SA:S5376,Europe/Paris,,OMP, +OMP:SP:353,1,"Semard",43.619146,3.903076,0,0,OMP:SA:S5656,Europe/Paris,,OMP, +OMP:SP:354,1,"Semard",43.619166,3.903559,0,0,OMP:SA:S5656,Europe/Paris,,OMP, +OMP:SP:355,1,"Louis Lépine",43.614628,3.914595,0,0,OMP:SA:S5533,Europe/Paris,,OMP, +OMP:SP:356,1,"Volta Fizeau",43.613873,3.913312,0,0,OMP:SA:S5676,Europe/Paris,,OMP, +OMP:SP:357,1,"Évariste Galois",43.609269,3.912183,0,0,OMP:SA:S5454,Europe/Paris,,OMP, +OMP:SP:358,1,"Samuel Morse",43.606389,3.913069,0,0,OMP:SA:S5654,Europe/Paris,,OMP, +OMP:SP:359,1,"Georges Méliès",43.606684,3.922962,0,0,OMP:SA:S5480,Europe/Paris,,OMP, +OMP:SP:36,1,"Hauts de Massane",43.636128,3.822778,0,0,OMP:SA:S5490,Europe/Paris,,OMP, +OMP:SP:361,1,"Apollo",43.62189,3.908497,0,0,OMP:SA:S5380,Europe/Paris,,OMP, +OMP:SP:362,1,"Place de France",43.603708,3.915036,0,0,OMP:SA:S5605,Europe/Paris,,OMP, +OMP:SP:364,1,"Saint-Michel",43.606607,3.898613,0,0,OMP:SA:S5645,Europe/Paris,,OMP, +OMP:SP:365,1,"Place de l'Europe",43.608297,3.894292,0,0,OMP:SA:S5606,Europe/Paris,,OMP, +OMP:SP:366,1,"André Malraux",43.619502,3.900264,0,0,OMP:SA:S5376,Europe/Paris,,OMP, +OMP:SP:367,1,"Marie Durand",43.618367,3.897882,0,0,OMP:SA:S5549,Europe/Paris,,OMP, +OMP:SP:368,1,"Saint-Jean",43.61562,3.897659,0,0,OMP:SA:S5641,Europe/Paris,,OMP, +OMP:SP:369,1,"Colverts",43.613707,3.898101,0,0,OMP:SA:S5425,Europe/Paris,,OMP, +OMP:SP:37,1,"Gémeaux",43.631937,3.822223,0,0,OMP:SA:S5476,Europe/Paris,,OMP, +OMP:SP:370,1,"Paul Painlevé",43.610527,3.898571,0,0,OMP:SA:S5587,Europe/Paris,,OMP, +OMP:SP:372,1,"Saint-Michel",43.606607,3.898613,0,0,OMP:SA:S5645,Europe/Paris,,OMP, +OMP:SP:373,1,"Paladilhe",43.612343,3.866502,0,0,OMP:SA:S5576,Europe/Paris,,OMP, +OMP:SP:374,1,"Glycines",43.612003,3.863201,0,0,OMP:SA:S5481,Europe/Paris,,OMP, +OMP:SP:375,1,"Avenue de l'Agriculture",43.612187,3.861004,0,0,OMP:SA:S5384,Europe/Paris,,OMP, +OMP:SP:376,1,"Louvain",43.613321,3.859005,0,0,OMP:SA:S5535,Europe/Paris,,OMP, +OMP:SP:377,1,"Érables",43.614912,3.857105,0,0,OMP:SA:S5444,Europe/Paris,,OMP, +OMP:SP:378,1,"Las Sorbes",43.615273,3.855024,0,0,OMP:SA:S5519,Europe/Paris,,OMP, +OMP:SP:379,1,"Saint-Gabriel",43.614528,3.851774,0,0,OMP:SA:S5638,Europe/Paris,,OMP, +OMP:SP:38,1,"Renaudel",43.614604,3.828194,0,0,OMP:SA:S5622,Europe/Paris,,OMP, +OMP:SP:380,1,"Espérance",43.614365,3.849296,0,0,OMP:SA:S5446,Europe/Paris,,OMP, +OMP:SP:381,1,"Las Cazes",43.616532,3.846643,0,0,OMP:SA:S5517,Europe/Paris,,OMP, +OMP:SP:382,1,"Saint-Clément",43.617722,3.844497,0,0,OMP:SA:S5634,Europe/Paris,,OMP, +OMP:SP:383,1,"Belvédère",43.617263,3.842604,0,0,OMP:SA:S5389,Europe/Paris,,OMP, +OMP:SP:384,1,"Lycée Jean Monnet",43.62428,3.835092,0,0,OMP:SA:S5539,Europe/Paris,,OMP, +OMP:SP:385,1,"Parc Malbosc",43.623402,3.830973,0,0,OMP:SA:S5581,Europe/Paris,,OMP, +OMP:SP:386,1,"Place de l'Europe",43.607472,3.894158,0,0,OMP:SA:S5606,Europe/Paris,,OMP, +OMP:SP:387,1,"Léon Blum",43.60926,3.890408,0,0,OMP:SA:S5524,Europe/Paris,,OMP, +OMP:SP:388,1,"Louis Lépine",43.614706,3.91482,0,0,OMP:SA:S5533,Europe/Paris,,OMP, +OMP:SP:389,1,"Volta Fizeau",43.613794,3.913186,0,0,OMP:SA:S5676,Europe/Paris,,OMP, +OMP:SP:39,1,"Marie Curie",43.614752,3.831155,0,0,OMP:SA:S5548,Europe/Paris,,OMP, +OMP:SP:391,1,"Samuel Morse",43.60703,3.913445,0,0,OMP:SA:S5654,Europe/Paris,,OMP, +OMP:SP:392,1,"Georges Méliès",43.606794,3.922841,0,0,OMP:SA:S5480,Europe/Paris,,OMP, +OMP:SP:393,1,"Place de France",43.603687,3.915233,0,0,OMP:SA:S5605,Europe/Paris,,OMP, +OMP:SP:394,1,"Maurice Chevalier",43.628589,3.887221,0,0,OMP:SA:S5558,Europe/Paris,,OMP, +OMP:SP:395,1,"Roqueturière",43.630348,3.885586,0,0,OMP:SA:S5630,Europe/Paris,,OMP, +OMP:SP:396,1,"Bengalis",43.628587,3.882939,0,0,OMP:SA:S5390,Europe/Paris,,OMP, +OMP:SP:397,1,"Tourterelles",43.625801,3.87852,0,0,OMP:SA:S5664,Europe/Paris,,OMP, +OMP:SP:398,1,"Sainte-Catherine",43.626427,3.876198,0,0,OMP:SA:S5649,Europe/Paris,,OMP, +OMP:SP:399,1,"Major Flandre",43.627099,3.872553,0,0,OMP:SA:S5543,Europe/Paris,,OMP, +OMP:SP:4,1,"Gare Saint-Roch (Pont de Sète)",43.604105,3.878169,0,0,OMP:SA:S5827,Europe/Paris,,OMP, +OMP:SP:40,1,"Petit Bard",43.614571,3.835122,0,0,OMP:SA:S5589,Europe/Paris,,OMP, +OMP:SP:400,1,"Henri Dunant",43.62688,3.86897,0,0,OMP:SA:S5492,Europe/Paris,,OMP, +OMP:SP:401,1,"Fac de Pharmacie",43.623631,3.861619,0,0,OMP:SA:S5456,Europe/Paris,,OMP, +OMP:SP:402,1,"Voie Domitienne",43.622266,3.859615,0,0,OMP:SA:S5675,Europe/Paris,,OMP, +OMP:SP:403,1,"Rièges",43.619732,3.849289,0,0,OMP:SA:S5626,Europe/Paris,,OMP, +OMP:SP:404,1,"Jean Calvin",43.618665,3.845846,0,0,OMP:SA:S5505,Europe/Paris,,OMP, +OMP:SP:405,1,"Celleneuve",43.616038,3.825893,0,0,OMP:SA:S5401,Europe/Paris,,OMP, +OMP:SP:406,1,"Goélands",43.616142,3.903229,0,0,OMP:SA:S5482,Europe/Paris,,OMP, +OMP:SP:407,1,"Guglielmo Marconi",43.611452,3.912318,0,0,OMP:SA:S5486,Europe/Paris,,OMP, +OMP:SP:408,1,"Jean Mirailhet",43.59686,3.892533,0,0,OMP:SA:S5507,Europe/Paris,,OMP, +OMP:SP:409,1,"Tonnelles",43.613108,3.838832,0,0,OMP:SA:S5662,Europe/Paris,,OMP, +OMP:SP:41,1,"Tonnelles",43.613898,3.838259,0,0,OMP:SA:S5662,Europe/Paris,,OMP, +OMP:SP:410,1,"Millénaire",43.603491,3.908325,0,0,OMP:SA:S5559,Europe/Paris,,OMP, +OMP:SP:411,1,"Saint-Éloi",43.626298,3.865663,0,0,OMP:SA:S5637,Europe/Paris,,OMP, +OMP:SP:412,1,"Jasse de Maurin",43.579539,3.862767,0,0,OMP:SA:S5503,Europe/Paris,,OMP, +OMP:SP:413,1,"Vauguières",43.6045,3.906942,0,0,OMP:SA:S5668,Europe/Paris,,OMP, +OMP:SP:414,1,"Parc de la Lironde",43.608641,3.906512,0,0,OMP:SA:S5580,Europe/Paris,,OMP, +OMP:SP:415,1,"Lagoya",43.61219,3.906028,0,0,OMP:SA:S5516,Europe/Paris,,OMP, +OMP:SP:416,1,"Pinville",43.614037,3.904507,0,0,OMP:SA:S5600,Europe/Paris,,OMP, +OMP:SP:417,1,"Semard",43.619605,3.904338,0,0,OMP:SA:S5656,Europe/Paris,,OMP, +OMP:SP:418,1,"La Pompignane (Les Lacs)",43.62513,3.900245,0,0,OMP:SA:S5190,Europe/Paris,,OMP, +OMP:SP:419,1,"Charles de Gaulle",43.628238,3.896655,0,0,OMP:SA:S5177,Europe/Paris,,OMP, +OMP:SP:42,1,"Gambetta",43.607261,3.870522,0,0,OMP:SA:S5469,Europe/Paris,,OMP, +OMP:SP:420,1,"Saint-Lazare",43.627324,3.888957,0,0,OMP:SA:S5642,Europe/Paris,,OMP, +OMP:SP:421,1,"Sabines",43.583672,3.860392,0,0,OMP:SA:S5633,Europe/Paris,,OMP, +OMP:SP:422,1,"Patrice Lumumba",43.578849,3.864542,0,0,OMP:SA:S5585,Europe/Paris,,OMP, +OMP:SP:423,1,"Pastourelles",43.621834,3.901219,0,0,OMP:SA:S5584,Europe/Paris,,OMP, +OMP:SP:424,1,"Mas de Bagnères",43.586833,3.858658,0,0,OMP:SA:S5552,Europe/Paris,,OMP, +OMP:SP:425,1,"Bugarel",43.591511,3.844955,0,0,OMP:SA:S5394,Europe/Paris,,OMP, +OMP:SP:426,1,"Yves du Manoir",43.591433,3.848639,0,0,OMP:SA:S5679,Europe/Paris,,OMP, +OMP:SP:427,1,"Pierre Laroque",43.621528,3.904354,0,0,OMP:SA:S5595,Europe/Paris,,OMP, +OMP:SP:428,1,"Saint-Cléophas",43.596567,3.875356,0,0,OMP:SA:S5635,Europe/Paris,,OMP, +OMP:SP:429,1,"Ettore Bugatti",43.578467,3.86677,0,0,OMP:SA:S5450,Europe/Paris,,OMP, +OMP:SP:43,1,"Saint-Denis",43.606011,3.873062,0,0,OMP:SA:S5636,Europe/Paris,,OMP, +OMP:SP:430,1,"Pierre d'Adhémar",43.622169,3.863919,0,0,OMP:SA:S5593,Europe/Paris,,OMP, +OMP:SP:431,1,"Celleneuve",43.615976,3.825841,0,0,OMP:SA:S5401,Europe/Paris,,OMP, +OMP:SP:432,1,"Jean Calvin",43.618592,3.845955,0,0,OMP:SA:S5505,Europe/Paris,,OMP, +OMP:SP:433,1,"Rièges",43.619579,3.84931,0,0,OMP:SA:S5626,Europe/Paris,,OMP, +OMP:SP:434,1,"Voie Domitienne",43.622676,3.860504,0,0,OMP:SA:S5675,Europe/Paris,,OMP, +OMP:SP:435,1,"Henri Dunant",43.626798,3.869092,0,0,OMP:SA:S5492,Europe/Paris,,OMP, +OMP:SP:436,1,"Major Flandre",43.626808,3.874104,0,0,OMP:SA:S5543,Europe/Paris,,OMP, +OMP:SP:437,1,"Sainte-Catherine",43.626288,3.876503,0,0,OMP:SA:S5649,Europe/Paris,,OMP, +OMP:SP:438,1,"Tourterelles",43.625728,3.878592,0,0,OMP:SA:S5664,Europe/Paris,,OMP, +OMP:SP:439,1,"Bengalis",43.628657,3.883139,0,0,OMP:SA:S5390,Europe/Paris,,OMP, +OMP:SP:44,1,"Anatole France",43.605568,3.876378,0,0,OMP:SA:S5375,Europe/Paris,,OMP, +OMP:SP:440,1,"Roqueturière",43.629849,3.885845,0,0,OMP:SA:S5630,Europe/Paris,,OMP, +OMP:SP:441,1,"Maurice Chevalier",43.628232,3.887645,0,0,OMP:SA:S5558,Europe/Paris,,OMP, +OMP:SP:443,1,"Saint-Éloi",43.626379,3.866939,0,0,OMP:SA:S5637,Europe/Paris,,OMP, +OMP:SP:444,1,"Fac de Pharmacie",43.624632,3.863329,0,0,OMP:SA:S5456,Europe/Paris,,OMP, +OMP:SP:445,1,"Guglielmo Marconi",43.611864,3.912391,0,0,OMP:SA:S5486,Europe/Paris,,OMP, +OMP:SP:446,1,"Goélands",43.616574,3.903179,0,0,OMP:SA:S5482,Europe/Paris,,OMP, +OMP:SP:447,1,"Tonnelles",43.613356,3.839148,0,0,OMP:SA:S5662,Europe/Paris,,OMP, +OMP:SP:448,1,"Ettore Bugatti",43.578532,3.866611,0,0,OMP:SA:S5450,Europe/Paris,,OMP, +OMP:SP:449,1,"Millénaire",43.603209,3.909171,0,0,OMP:SA:S5559,Europe/Paris,,OMP, +OMP:SP:45,1,"Halles de la Paillade",43.62782,3.817586,0,0,OMP:SA:S5489,Europe/Paris,,OMP, +OMP:SP:450,1,"Patrice Lumumba",43.578968,3.864372,0,0,OMP:SA:S5585,Europe/Paris,,OMP, +OMP:SP:451,1,"Sabines",43.583958,3.859843,0,0,OMP:SA:S5633,Europe/Paris,,OMP, +OMP:SP:452,1,"Le Grand M",43.591106,3.854641,0,0,OMP:SA:S5522,Europe/Paris,,OMP, +OMP:SP:453,1,"Saint-Lazare",43.627107,3.889037,0,0,OMP:SA:S5642,Europe/Paris,,OMP, +OMP:SP:454,1,"Charles de Gaulle",43.628077,3.896564,0,0,OMP:SA:S5177,Europe/Paris,,OMP, +OMP:SP:455,1,"Semard",43.619669,3.904229,0,0,OMP:SA:S5656,Europe/Paris,,OMP, +OMP:SP:456,1,"Pinville",43.61384,3.904502,0,0,OMP:SA:S5600,Europe/Paris,,OMP, +OMP:SP:457,1,"Lagoya",43.612128,3.905964,0,0,OMP:SA:S5516,Europe/Paris,,OMP, +OMP:SP:458,1,"Parc de la Lironde",43.608489,3.906483,0,0,OMP:SA:S5580,Europe/Paris,,OMP, +OMP:SP:459,1,"Vauguières",43.604385,3.90684,0,0,OMP:SA:S5668,Europe/Paris,,OMP, +OMP:SP:46,1,"Ambroise Paré",43.638012,3.847694,0,0,OMP:SA:S5374,Europe/Paris,,OMP, +OMP:SP:460,1,"Pastourelles",43.621836,3.900502,0,0,OMP:SA:S5584,Europe/Paris,,OMP, +OMP:SP:461,1,"Mas de Bagnères",43.587528,3.858491,0,0,OMP:SA:S5552,Europe/Paris,,OMP, +OMP:SP:462,1,"Jasse de Maurin",43.579753,3.862884,0,0,OMP:SA:S5503,Europe/Paris,,OMP, +OMP:SP:463,1,"Bugarel",43.591728,3.844838,0,0,OMP:SA:S5394,Europe/Paris,,OMP, +OMP:SP:464,1,"Yves du Manoir",43.591437,3.848305,0,0,OMP:SA:S5679,Europe/Paris,,OMP, +OMP:SP:465,1,"Pierre Laroque",43.621187,3.904295,0,0,OMP:SA:S5595,Europe/Paris,,OMP, +OMP:SP:466,1,"Garosud (Jeune Parque)",43.581005,3.8691,0,0,OMP:SA:S5474,Europe/Paris,,OMP, +OMP:SP:467,1,"Pierre d'Adhémar",43.622113,3.864078,0,0,OMP:SA:S5593,Europe/Paris,,OMP, +OMP:SP:468,1,"Pinville",43.613865,3.905851,0,0,OMP:SA:S5600,Europe/Paris,,OMP, +OMP:SP:469,1,"François Couperin",43.612722,3.902838,0,0,OMP:SA:S5462,Europe/Paris,,OMP, +OMP:SP:47,1,"Route de Ganges",43.642953,3.845349,0,0,OMP:SA:S5632,Europe/Paris,,OMP, +OMP:SP:470,1,"Vieille Poste",43.610587,3.90007,0,0,OMP:SA:S5671,Europe/Paris,,OMP, +OMP:SP:471,1,"Pierre Rouge",43.623064,3.882592,0,0,OMP:SA:S5596,Europe/Paris,,OMP, +OMP:SP:472,1,"Clolus",43.628785,3.8811,0,0,OMP:SA:S5420,Europe/Paris,,OMP, +OMP:SP:473,1,"Alpilles",43.630223,3.879196,0,0,OMP:SA:S5373,Europe/Paris,,OMP, +OMP:SP:474,1,"Chantecler",43.632538,3.878231,0,0,OMP:SA:S5406,Europe/Paris,,OMP, +OMP:SP:475,1,"Pioch de Boutonnet",43.633798,3.87751,0,0,OMP:SA:S5601,Europe/Paris,,OMP, +OMP:SP:476,1,"Moulin de Gasconnet",43.633922,3.874506,0,0,OMP:SA:S5565,Europe/Paris,,OMP, +OMP:SP:477,1,"René Bougnol",43.636443,3.874215,0,0,OMP:SA:S5623,Europe/Paris,,OMP, +OMP:SP:478,1,"Antoine-Laurent de Jussieu",43.637276,3.880117,0,0,OMP:SA:S5379,Europe/Paris,,OMP, +OMP:SP:479,1,"Marie Caizergues",43.621287,3.875428,0,0,OMP:SA:S5547,Europe/Paris,,OMP, +OMP:SP:48,1,"Antennes",43.644744,3.841992,0,0,OMP:SA:S5377,Europe/Paris,,OMP, +OMP:SP:480,1,"Sainte-Odile",43.622769,3.873018,0,0,OMP:SA:S5651,Europe/Paris,,OMP, +OMP:SP:481,1,"Aiguelongue (Jussieu)",43.638412,3.88302,0,0,OMP:SA:S5369,Europe/Paris,,OMP, +OMP:SP:482,1,"Antoine-Laurent de Jussieu",43.637242,3.87998,0,0,OMP:SA:S5379,Europe/Paris,,OMP, +OMP:SP:483,1,"René Bougnol",43.636475,3.873894,0,0,OMP:SA:S5623,Europe/Paris,,OMP, +OMP:SP:484,1,"Moulin de Gasconnet",43.633831,3.874566,0,0,OMP:SA:S5565,Europe/Paris,,OMP, +OMP:SP:485,1,"Pioch de Boutonnet",43.633918,3.877328,0,0,OMP:SA:S5601,Europe/Paris,,OMP, +OMP:SP:486,1,"Chantecler",43.632296,3.878213,0,0,OMP:SA:S5406,Europe/Paris,,OMP, +OMP:SP:487,1,"Alpilles",43.629777,3.879568,0,0,OMP:SA:S5373,Europe/Paris,,OMP, +OMP:SP:488,1,"Clolus",43.628494,3.881278,0,0,OMP:SA:S5420,Europe/Paris,,OMP, +OMP:SP:489,1,"Pierre Rouge",43.622939,3.882551,0,0,OMP:SA:S5596,Europe/Paris,,OMP, +OMP:SP:49,1,"Val d'Aurelle",43.642725,3.835898,0,0,OMP:SA:S5667,Europe/Paris,,OMP, +OMP:SP:490,1,"Vieille Poste",43.610807,3.900336,0,0,OMP:SA:S5671,Europe/Paris,,OMP, +OMP:SP:491,1,"François Couperin",43.612882,3.90356,0,0,OMP:SA:S5462,Europe/Paris,,OMP, +OMP:SP:492,1,"Pinville",43.613949,3.906249,0,0,OMP:SA:S5600,Europe/Paris,,OMP, +OMP:SP:493,1,"Palissade",43.607426,3.869636,0,0,OMP:SA:S5577,Europe/Paris,,OMP, +OMP:SP:494,1,"Maréchal Leclerc",43.594332,3.885191,0,0,OMP:SA:S5546,Europe/Paris,,OMP, +OMP:SP:495,1,"Bellevue",43.596641,3.880875,0,0,OMP:SA:S5388,Europe/Paris,,OMP, +OMP:SP:496,1,"Primevères",43.598187,3.881473,0,0,OMP:SA:S5617,Europe/Paris,,OMP, +OMP:SP:497,1,"Pâquerettes",43.599653,3.881476,0,0,OMP:SA:S5579,Europe/Paris,,OMP, +OMP:SP:498,1,"Porto",43.600386,3.879863,0,0,OMP:SA:S5615,Europe/Paris,,OMP, +OMP:SP:499,1,"Léon Cordès",43.601591,3.882988,0,0,OMP:SA:S5525,Europe/Paris,,OMP, +OMP:SP:5,1,"Peyrou - Arc de Triomphe",43.610748,3.871853,0,0,OMP:SA:S5590,Europe/Paris,,OMP, +OMP:SP:50,1,"Puech Villa",43.640082,3.829391,0,0,OMP:SA:S5619,Europe/Paris,,OMP, +OMP:SP:500,1,"Zénith",43.612077,3.930968,0,0,OMP:SA:S5680,Europe/Paris,,OMP, +OMP:SP:501,1,"Albert Einstein",43.613146,3.937135,0,0,OMP:SA:S5370,Europe/Paris,,OMP, +OMP:SP:502,1,"Cimetière Saint-Étienne",43.615002,3.93564,0,0,OMP:SA:S5411,Europe/Paris,,OMP, +OMP:SP:503,1,"Eurêka",43.618,3.912659,0,0,OMP:SA:S5452,Europe/Paris,,OMP, +OMP:SP:504,1,"Alfred Nobel",43.616418,3.910784,0,0,OMP:SA:S5372,Europe/Paris,,OMP, +OMP:SP:505,1,"TaM",43.581401,3.870323,0,0,OMP:SA:S5661,Europe/Paris,,OMP, +OMP:SP:506,1,"Demeter",43.583027,3.872271,0,0,OMP:SA:S5437,Europe/Paris,,OMP, +OMP:SP:507,1,"Jean Vachet",43.592348,3.884951,0,0,OMP:SA:S5508,Europe/Paris,,OMP, +OMP:SP:508,1,"Grammont",43.614123,3.930654,0,0,OMP:SA:S5484,Europe/Paris,,OMP, +OMP:SP:509,1,"Cimetière Saint-Étienne",43.614895,3.935612,0,0,OMP:SA:S5411,Europe/Paris,,OMP, +OMP:SP:51,1,"Observatoire",43.606439,3.876488,0,0,OMP:SA:S5570,Europe/Paris,,OMP, +OMP:SP:510,1,"Albert Einstein",43.613229,3.937026,0,0,OMP:SA:S5370,Europe/Paris,,OMP, +OMP:SP:511,1,"Zénith",43.612229,3.931084,0,0,OMP:SA:S5680,Europe/Paris,,OMP, +OMP:SP:512,1,"Évariste Galois",43.609026,3.912832,0,0,OMP:SA:S5454,Europe/Paris,,OMP, +OMP:SP:513,1,"Frédéric Peyson",43.602529,3.880205,0,0,OMP:SA:S5467,Europe/Paris,,OMP, +OMP:SP:514,1,"Porto",43.600332,3.879824,0,0,OMP:SA:S5615,Europe/Paris,,OMP, +OMP:SP:515,1,"Pâquerettes",43.599776,3.881009,0,0,OMP:SA:S5579,Europe/Paris,,OMP, +OMP:SP:516,1,"Coquelicots",43.597782,3.88025,0,0,OMP:SA:S5429,Europe/Paris,,OMP, +OMP:SP:517,1,"Centrayrargues",43.596822,3.880744,0,0,OMP:SA:S5402,Europe/Paris,,OMP, +OMP:SP:518,1,"Descartes",43.596684,3.883535,0,0,OMP:SA:S5438,Europe/Paris,,OMP, +OMP:SP:519,1,"Razeteurs",43.595623,3.884125,0,0,OMP:SA:S5621,Europe/Paris,,OMP, +OMP:SP:52,1,"Peyrou - Arc de Triomphe",43.610972,3.871909,0,0,OMP:SA:S5590,Europe/Paris,,OMP, +OMP:SP:520,1,"Catalpas",43.592815,3.883777,0,0,OMP:SA:S5400,Europe/Paris,,OMP, +OMP:SP:521,1,"Alfred Nobel",43.615752,3.90964,0,0,OMP:SA:S5372,Europe/Paris,,OMP, +OMP:SP:522,1,"Eurêka",43.617887,3.912433,0,0,OMP:SA:S5452,Europe/Paris,,OMP, +OMP:SP:523,1,"TaM",43.581414,3.870026,0,0,OMP:SA:S5661,Europe/Paris,,OMP, +OMP:SP:524,1,"Demeter",43.583496,3.872197,0,0,OMP:SA:S5437,Europe/Paris,,OMP, +OMP:SP:525,1,"Saint-Cléophas",43.5947,3.875763,0,0,OMP:SA:S5635,Europe/Paris,,OMP, +OMP:SP:526,1,"Maréchal Leclerc",43.594289,3.885041,0,0,OMP:SA:S5546,Europe/Paris,,OMP, +OMP:SP:527,1,"Jean Vachet",43.592828,3.88536,0,0,OMP:SA:S5508,Europe/Paris,,OMP, +OMP:SP:528,1,"Saint-Éloi",43.627011,3.866758,0,0,OMP:SA:S5637,Europe/Paris,,OMP, +OMP:SP:529,1,"Lycée Frédéric Bazille",43.644901,3.862261,0,0,OMP:SA:S5537,Europe/Paris,,OMP, +OMP:SP:53,1,"Saint-Guilhem - Courreau",43.60881,3.872877,0,0,OMP:SA:S5639,Europe/Paris,,OMP, +OMP:SP:532,1,"Lycée Frédéric Bazille",43.644784,3.862283,0,0,OMP:SA:S5537,Europe/Paris,,OMP, +OMP:SP:533,1,"Campus Agropolis",43.644672,3.869522,0,0,OMP:SA:S5397,Europe/Paris,,OMP, +OMP:SP:534,1,"Campus Agropolis",43.644684,3.868693,0,0,OMP:SA:S5397,Europe/Paris,,OMP, +OMP:SP:535,1,"Saint-Maur",43.621014,3.893871,0,0,OMP:SA:S5644,Europe/Paris,,OMP, +OMP:SP:536,1,"Les Aubes",43.613679,3.888846,0,0,OMP:SA:S5528,Europe/Paris,,OMP, +OMP:SP:537,1,"Françoise",43.619946,3.891281,0,0,OMP:SA:S5464,Europe/Paris,,OMP, +OMP:SP:538,1,"Saint-Maur",43.621038,3.894095,0,0,OMP:SA:S5644,Europe/Paris,,OMP, +OMP:SP:539,1,"Les Aubes",43.613582,3.888732,0,0,OMP:SA:S5528,Europe/Paris,,OMP, +OMP:SP:54,1,"Euromédecine",43.638812,3.827576,0,0,OMP:SA:S5453,Europe/Paris,,OMP, +OMP:SP:540,1,"Craponne",43.606196,3.867611,0,0,OMP:SA:S5432,Europe/Paris,,OMP, +OMP:SP:541,1,"Les Bouisses",43.598504,3.835343,0,0,OMP:SA:S5529,Europe/Paris,,OMP, +OMP:SP:542,1,"Paul Fajon",43.594899,3.837921,0,0,OMP:SA:S5586,Europe/Paris,,OMP, +OMP:SP:543,1,"Figuerolles",43.606403,3.864462,0,0,OMP:SA:S5458,Europe/Paris,,OMP, +OMP:SP:544,1,"Renouvier",43.607122,3.866362,0,0,OMP:SA:S5624,Europe/Paris,,OMP, +OMP:SP:545,1,"Plan Cabanes",43.608169,3.86858,0,0,OMP:SA:S5610,Europe/Paris,,OMP, +OMP:SP:546,1,"Appel du 18 Juin",43.636547,3.830203,0,0,OMP:SA:S5382,Europe/Paris,,OMP, +OMP:SP:547,1,"Frédéric Bazille",43.602714,3.880495,0,0,OMP:SA:S5465,Europe/Paris,,OMP, +OMP:SP:548,1,"Céreirède",43.581217,3.898228,0,0,OMP:SA:S5328,Europe/Paris,,OMP, +OMP:SP:549,1,"Chemin de Lattes",43.5724,3.896281,0,0,OMP:SA:S5329,Europe/Paris,,OMP, +OMP:SP:55,1,"Puech Villa",43.639709,3.829716,0,0,OMP:SA:S5619,Europe/Paris,,OMP, +OMP:SP:550,1,"Oasis Palavasienne",43.555499,3.892569,0,0,OMP:SA:S5340,Europe/Paris,,OMP, +OMP:SP:551,1,"Lavandin",43.600315,3.851781,0,0,OMP:SA:S5521,Europe/Paris,,OMP, +OMP:SP:552,1,"Winston Churchill",43.598963,3.855901,0,0,OMP:SA:S5678,Europe/Paris,,OMP, +OMP:SP:553,1,"Vivaldi",43.596057,3.856071,0,0,OMP:SA:S5674,Europe/Paris,,OMP, +OMP:SP:554,1,"Puccini",43.594944,3.854038,0,0,OMP:SA:S5618,Europe/Paris,,OMP, +OMP:SP:555,1,"Irissou",43.593964,3.852775,0,0,OMP:SA:S5501,Europe/Paris,,OMP, +OMP:SP:556,1,"Gramenet",43.548819,3.894537,0,0,OMP:SA:S5334,Europe/Paris,,OMP, +OMP:SP:557,1,"Oasis Palavasienne",43.555259,3.893613,0,0,OMP:SA:S5340,Europe/Paris,,OMP, +OMP:SP:558,1,"Chemin de Lattes",43.573076,3.896781,0,0,OMP:SA:S5329,Europe/Paris,,OMP, +OMP:SP:559,1,"Céreirède",43.581313,3.898465,0,0,OMP:SA:S5328,Europe/Paris,,OMP, +OMP:SP:56,1,"Val d'Aurelle",43.642817,3.836408,0,0,OMP:SA:S5667,Europe/Paris,,OMP, +OMP:SP:560,1,"Winston Churchill",43.599196,3.855932,0,0,OMP:SA:S5678,Europe/Paris,,OMP, +OMP:SP:561,1,"Vivaldi",43.596243,3.85625,0,0,OMP:SA:S5674,Europe/Paris,,OMP, +OMP:SP:562,1,"Puccini",43.594987,3.854163,0,0,OMP:SA:S5618,Europe/Paris,,OMP, +OMP:SP:563,1,"Irissou",43.594024,3.852938,0,0,OMP:SA:S5501,Europe/Paris,,OMP, +OMP:SP:564,1,"Cimetière Saint-Laurent",43.569755,3.898891,0,0,OMP:SA:S5330,Europe/Paris,,OMP, +OMP:SP:565,1,"Méjean",43.568289,3.900149,0,0,OMP:SA:S5337,Europe/Paris,,OMP, +OMP:SP:566,1,"Mairie",43.568669,3.904351,0,0,OMP:SA:S5335,Europe/Paris,,OMP, +OMP:SP:567,1,"Crédit Agricole",43.558811,3.87659,0,0,OMP:SA:S5332,Europe/Paris,,OMP, +OMP:SP:568,1,"Montpellieret",43.559873,3.877175,0,0,OMP:SA:S5339,Europe/Paris,,OMP, +OMP:SP:569,1,"Montouzères",43.568696,3.885053,0,0,OMP:SA:S5338,Europe/Paris,,OMP, +OMP:SP:57,1,"Antennes",43.644678,3.84225,0,0,OMP:SA:S5377,Europe/Paris,,OMP, +OMP:SP:570,1,"Saint-Pierre",43.572493,3.893526,0,0,OMP:SA:S5341,Europe/Paris,,OMP, +OMP:SP:571,1,"Montpellieret",43.559929,3.877003,0,0,OMP:SA:S5339,Europe/Paris,,OMP, +OMP:SP:572,1,"Entreprises",43.564194,3.879232,0,0,OMP:SA:S5333,Europe/Paris,,OMP, +OMP:SP:573,1,"Place de l'Europe",43.608181,3.894189,0,0,OMP:SA:S5606,Europe/Paris,,OMP, +OMP:SP:574,1,"Lattes Centre",43.570503,3.904327,0,0,OMP:SA:S5327,Europe/Paris,,OMP, +OMP:SP:575,1,"Mairie",43.568476,3.904061,0,0,OMP:SA:S5335,Europe/Paris,,OMP, +OMP:SP:577,1,"Cimetière Saint-Laurent",43.568642,3.899986,0,0,OMP:SA:S5330,Europe/Paris,,OMP, +OMP:SP:578,1,"Entreprises",43.564067,3.879327,0,0,OMP:SA:S5333,Europe/Paris,,OMP, +OMP:SP:579,1,"Montpellieret",43.559873,3.877175,0,0,OMP:SA:S5339,Europe/Paris,,OMP, +OMP:SP:58,1,"Route de Ganges",43.642848,3.845173,0,0,OMP:SA:S5632,Europe/Paris,,OMP, +OMP:SP:580,1,"Montouzères",43.56859,3.884864,0,0,OMP:SA:S5338,Europe/Paris,,OMP, +OMP:SP:581,1,"Saint-Pierre",43.572405,3.893412,0,0,OMP:SA:S5341,Europe/Paris,,OMP, +OMP:SP:582,1,"Montpellieret",43.559929,3.877003,0,0,OMP:SA:S5339,Europe/Paris,,OMP, +OMP:SP:583,1,"Saint-Paul",43.630555,3.821395,0,0,OMP:SA:S5646,Europe/Paris,,OMP, +OMP:SP:584,1,"Uppsala",43.629518,3.82096,0,0,OMP:SA:S5666,Europe/Paris,,OMP, +OMP:SP:585,1,"Oxford",43.627032,3.820697,0,0,OMP:SA:S5574,Europe/Paris,,OMP, +OMP:SP:586,1,"Château du Terral",43.582977,3.830917,0,0,OMP:SA:S5746,Europe/Paris,,OMP, +OMP:SP:587,1,"Allée du Bois",43.582141,3.824391,0,0,OMP:SA:S5743,Europe/Paris,,OMP, +OMP:SP:588,1,"Collège Louis Germain",43.57869,3.823065,0,0,OMP:SA:S5747,Europe/Paris,,OMP, +OMP:SP:59,1,"Saint-Guilhem - Courreau",43.608701,3.872899,0,0,OMP:SA:S5639,Europe/Paris,,OMP, +OMP:SP:590,1,"Tourtourel",43.57585,3.819739,0,0,OMP:SA:S5764,Europe/Paris,,OMP, +OMP:SP:591,1,"Saint-Hubéry",43.573566,3.819742,0,0,OMP:SA:S5759,Europe/Paris,,OMP, +OMP:SP:592,1,"Roudères",43.574889,3.825525,0,0,OMP:SA:S5758,Europe/Paris,,OMP, +OMP:SP:593,1,"Côteaux",43.577554,3.835004,0,0,OMP:SA:S5748,Europe/Paris,,OMP, +OMP:SP:594,1,"Castelnau Zone d'Activités",43.636503,3.927281,0,0,OMP:SA:S5173,Europe/Paris,,OMP, +OMP:SP:596,1,"Arènes",43.642829,3.93663,0,0,OMP:SA:S5239,Europe/Paris,,OMP, +OMP:SP:597,1,"Capri",43.646056,3.938478,0,0,OMP:SA:S5241,Europe/Paris,,OMP, +OMP:SP:598,1,"Chênes",43.645199,3.941747,0,0,OMP:SA:S5242,Europe/Paris,,OMP, +OMP:SP:599,1,"Fernand Rouché",43.647561,3.941306,0,0,OMP:SA:S5244,Europe/Paris,,OMP, +OMP:SP:6,1,"Saint-Denis",43.605037,3.874533,0,0,OMP:SA:S5636,Europe/Paris,,OMP, +OMP:SP:60,1,"Tournezy",43.579145,3.877855,0,0,OMP:SA:S5663,Europe/Paris,,OMP, +OMP:SP:600,1,"Cimetière",43.651165,3.940739,0,0,OMP:SA:S5243,Europe/Paris,,OMP, +OMP:SP:601,1,"Baléares",43.65129,3.943838,0,0,OMP:SA:S5240,Europe/Paris,,OMP, +OMP:SP:602,1,"Arbousiers",43.654652,3.944477,0,0,OMP:SA:S5238,Europe/Paris,,OMP, +OMP:SP:603,1,"Jean Jaurès",43.657237,3.942916,0,0,OMP:SA:S5246,Europe/Paris,,OMP, +OMP:SP:606,1,"Rocailles",43.656826,3.936069,0,0,OMP:SA:S5253,Europe/Paris,,OMP, +OMP:SP:607,1,"Substantion",43.650462,3.939654,0,0,OMP:SA:S5256,Europe/Paris,,OMP, +OMP:SP:608,1,"Saint-Jean le Sec",43.570758,3.837583,0,0,OMP:SA:S5761,Europe/Paris,,OMP, +OMP:SP:609,1,"Saint-Jean de Védas Centre",43.57475,3.830393,0,0,OMP:SA:S5760,Europe/Paris,,OMP, +OMP:SP:61,1,"Mas Saint-Pierre",43.582119,3.879876,0,0,OMP:SA:S5556,Europe/Paris,,OMP, +OMP:SP:610,1,"Louise Michel",43.580923,3.833831,0,0,OMP:SA:S5755,Europe/Paris,,OMP, +OMP:SP:611,1,"Marquerose",43.583424,3.826539,0,0,OMP:SA:S5756,Europe/Paris,,OMP, +OMP:SP:612,1,"Rocailles",43.656913,3.935687,0,0,OMP:SA:S5253,Europe/Paris,,OMP, +OMP:SP:615,1,"Jean Jaurès",43.656618,3.942812,0,0,OMP:SA:S5246,Europe/Paris,,OMP, +OMP:SP:616,1,"Arbousiers",43.653766,3.944774,0,0,OMP:SA:S5238,Europe/Paris,,OMP, +OMP:SP:617,1,"Baléares",43.651328,3.94369,0,0,OMP:SA:S5240,Europe/Paris,,OMP, +OMP:SP:618,1,"Cimetière",43.651194,3.940628,0,0,OMP:SA:S5243,Europe/Paris,,OMP, +OMP:SP:619,1,"Substantion",43.650236,3.939747,0,0,OMP:SA:S5256,Europe/Paris,,OMP, +OMP:SP:62,1,"Industrie",43.584566,3.881649,0,0,OMP:SA:S5499,Europe/Paris,,OMP, +OMP:SP:621,1,"Fernand Rouché",43.64748,3.941304,0,0,OMP:SA:S5244,Europe/Paris,,OMP, +OMP:SP:622,1,"Chênes",43.645122,3.94146,0,0,OMP:SA:S5242,Europe/Paris,,OMP, +OMP:SP:623,1,"Capri",43.646589,3.938939,0,0,OMP:SA:S5241,Europe/Paris,,OMP, +OMP:SP:624,1,"Arènes",43.642985,3.937055,0,0,OMP:SA:S5239,Europe/Paris,,OMP, +OMP:SP:625,1,"Pointes",43.638651,3.932849,0,0,OMP:SA:S5252,Europe/Paris,,OMP, +OMP:SP:626,1,"Castelnau Zone d'Activités",43.636654,3.927409,0,0,OMP:SA:S5173,Europe/Paris,,OMP, +OMP:SP:627,1,"Côteaux",43.577609,3.834919,0,0,OMP:SA:S5748,Europe/Paris,,OMP, +OMP:SP:628,1,"Roudères",43.574937,3.825329,0,0,OMP:SA:S5758,Europe/Paris,,OMP, +OMP:SP:629,1,"Saint-Hubéry",43.573648,3.819694,0,0,OMP:SA:S5759,Europe/Paris,,OMP, +OMP:SP:63,1,"Marché Gare",43.58384,3.885908,0,0,OMP:SA:S5545,Europe/Paris,,OMP, +OMP:SP:630,1,"Tourtourel",43.575689,3.819636,0,0,OMP:SA:S5764,Europe/Paris,,OMP, +OMP:SP:632,1,"Collège Louis Germain",43.578732,3.823251,0,0,OMP:SA:S5747,Europe/Paris,,OMP, +OMP:SP:633,1,"Allée du Bois",43.58213,3.824539,0,0,OMP:SA:S5743,Europe/Paris,,OMP, +OMP:SP:634,1,"Château du Terral",43.58294,3.83104,0,0,OMP:SA:S5746,Europe/Paris,,OMP, +OMP:SP:635,1,"Saint-Jean de Védas Centre",43.574704,3.830454,0,0,OMP:SA:S5760,Europe/Paris,,OMP, +OMP:SP:636,1,"Louise Michel",43.580924,3.833745,0,0,OMP:SA:S5755,Europe/Paris,,OMP, +OMP:SP:637,1,"Marquerose",43.583379,3.82655,0,0,OMP:SA:S5756,Europe/Paris,,OMP, +OMP:SP:638,1,"Saint-Jean le Sec",43.570758,3.83762,0,0,OMP:SA:S5761,Europe/Paris,,OMP, +OMP:SP:639,1,"Le Crès",43.638974,3.934108,0,0,OMP:SA:S5247,Europe/Paris,,OMP, +OMP:SP:64,1,"Saporta",43.584596,3.888316,0,0,OMP:SA:S5655,Europe/Paris,,OMP, +OMP:SP:640,1,"Route de Nîmes",43.641601,3.9425,0,0,OMP:SA:S5254,Europe/Paris,,OMP, +OMP:SP:641,1,"Châtaigniers",43.650933,3.959329,0,0,OMP:SA:S5782,Europe/Paris,,OMP, +OMP:SP:642,1,"Zone Industrielle",43.653536,3.962585,0,0,OMP:SA:S5794,Europe/Paris,,OMP, +OMP:SP:643,1,"Parc Gouneaud",43.654507,3.96499,0,0,OMP:SA:S5790,Europe/Paris,,OMP, +OMP:SP:644,1,"Arènes",43.655138,3.967299,0,0,OMP:SA:S5781,Europe/Paris,,OMP, +OMP:SP:645,1,"Poste",43.657655,3.968485,0,0,OMP:SA:S5793,Europe/Paris,,OMP, +OMP:SP:646,1,"Monnaie",43.660572,3.970017,0,0,OMP:SA:S5789,Europe/Paris,,OMP, +OMP:SP:647,1,"Devèzes",43.662772,3.970179,0,0,OMP:SA:S5783,Europe/Paris,,OMP, +OMP:SP:648,1,"Frédéric Mistral",43.664006,3.974178,0,0,OMP:SA:S5785,Europe/Paris,,OMP, +OMP:SP:649,1,"Parc Vendargues",43.66078,3.975286,0,0,OMP:SA:S5791,Europe/Paris,,OMP, +OMP:SP:65,1,"Mas Argelliers",43.586809,3.889452,0,0,OMP:SA:S5551,Europe/Paris,,OMP, +OMP:SP:650,1,"Gustave Courbet",43.658386,3.976022,0,0,OMP:SA:S5786,Europe/Paris,,OMP, +OMP:SP:651,1,"Paul Gauguin",43.655077,3.975494,0,0,OMP:SA:S5792,Europe/Paris,,OMP, +OMP:SP:652,1,"Albert Dubout",43.662388,3.97475,0,0,OMP:SA:S5780,Europe/Paris,,OMP, +OMP:SP:653,1,"Zone Industrielle Bigos",43.65532,3.949734,0,0,OMP:SA:S5795,Europe/Paris,,OMP, +OMP:SP:654,1,"Zone Industrielle Marbrerie",43.654176,3.954679,0,0,OMP:SA:S5796,Europe/Paris,,OMP, +OMP:SP:655,1,"La Fontaine",43.657901,3.96292,0,0,OMP:SA:S5787,Europe/Paris,,OMP, +OMP:SP:656,1,"Gustave Courbet",43.658466,3.976087,0,0,OMP:SA:S5786,Europe/Paris,,OMP, +OMP:SP:657,1,"Parc Vendargues",43.660652,3.975419,0,0,OMP:SA:S5791,Europe/Paris,,OMP, +OMP:SP:658,1,"Frédéric Mistral",43.664283,3.973727,0,0,OMP:SA:S5785,Europe/Paris,,OMP, +OMP:SP:659,1,"Devèzes",43.662738,3.97003,0,0,OMP:SA:S5783,Europe/Paris,,OMP, +OMP:SP:66,1,"Garcia Lorca",43.591131,3.890224,0,0,OMP:SA:S5470,Europe/Paris,,OMP, +OMP:SP:660,1,"Monnaie",43.660339,3.969961,0,0,OMP:SA:S5789,Europe/Paris,,OMP, +OMP:SP:661,1,"Écoles",43.658696,3.967425,0,0,OMP:SA:S5784,Europe/Paris,,OMP, +OMP:SP:662,1,"Poste",43.657747,3.968327,0,0,OMP:SA:S5793,Europe/Paris,,OMP, +OMP:SP:663,1,"Arènes",43.655227,3.967338,0,0,OMP:SA:S5781,Europe/Paris,,OMP, +OMP:SP:664,1,"Parc Gouneaud",43.654225,3.964041,0,0,OMP:SA:S5790,Europe/Paris,,OMP, +OMP:SP:665,1,"Zone Industrielle",43.653347,3.96201,0,0,OMP:SA:S5794,Europe/Paris,,OMP, +OMP:SP:666,1,"Châtaigniers",43.650166,3.957735,0,0,OMP:SA:S5782,Europe/Paris,,OMP, +OMP:SP:667,1,"Route de Nîmes",43.641785,3.942184,0,0,OMP:SA:S5254,Europe/Paris,,OMP, +OMP:SP:668,1,"Notre-Dame de Sablassou",43.634744,3.923419,0,0,OMP:SA:S5196,Europe/Paris,,OMP, +OMP:SP:669,1,"Notre-Dame de Sablassou",43.633957,3.921887,0,0,OMP:SA:S5196,Europe/Paris,,OMP, +OMP:SP:67,1,"Cité de l'Arme",43.593261,3.889615,0,0,OMP:SA:S5414,Europe/Paris,,OMP, +OMP:SP:670,1,"Albert Dubout",43.662486,3.97479,0,0,OMP:SA:S5780,Europe/Paris,,OMP, +OMP:SP:671,1,"Zone Industrielle Bigos",43.655265,3.949782,0,0,OMP:SA:S5795,Europe/Paris,,OMP, +OMP:SP:672,1,"Zone Industrielle Marbrerie",43.654112,3.954739,0,0,OMP:SA:S5796,Europe/Paris,,OMP, +OMP:SP:673,1,"La Fontaine",43.657773,3.963052,0,0,OMP:SA:S5787,Europe/Paris,,OMP, +OMP:SP:674,1,"Place de la Liberté",43.633159,3.895762,0,0,OMP:SA:S5199,Europe/Paris,,OMP, +OMP:SP:675,1,"Closerie des Guilhems",43.634363,3.895163,0,0,OMP:SA:S5183,Europe/Paris,,OMP, +OMP:SP:676,1,"Jean Jaurès",43.639952,3.89414,0,0,OMP:SA:S5188,Europe/Paris,,OMP, +OMP:SP:677,1,"Pigeonniers",43.653538,3.883937,0,0,OMP:SA:S5221,Europe/Paris,,OMP, +OMP:SP:678,1,"Stade",43.653499,3.88921,0,0,OMP:SA:S5222,Europe/Paris,,OMP, +OMP:SP:679,1,"Château",43.655475,3.891196,0,0,OMP:SA:S5213,Europe/Paris,,OMP, +OMP:SP:68,1,"Lucullus",43.594804,3.88858,0,0,OMP:SA:S5536,Europe/Paris,,OMP, +OMP:SP:680,1,"Église",43.657617,3.889174,0,0,OMP:SA:S5215,Europe/Paris,,OMP, +OMP:SP:681,1,"Cimetière",43.657991,3.892515,0,0,OMP:SA:S5214,Europe/Paris,,OMP, +OMP:SP:682,1,"Moulières",43.659678,3.893341,0,0,OMP:SA:S5219,Europe/Paris,,OMP, +OMP:SP:683,1,"Cap Alpha",43.659621,3.900472,0,0,OMP:SA:S5212,Europe/Paris,,OMP, +OMP:SP:684,1,"De Bocaud",43.659564,3.903789,0,0,OMP:SA:S5287,Europe/Paris,,OMP, +OMP:SP:685,1,"Cimetière Jacou",43.659149,3.909412,0,0,OMP:SA:S5283,Europe/Paris,,OMP, +OMP:SP:686,1,"Chesnaie",43.658864,3.924016,0,0,OMP:SA:S5282,Europe/Paris,,OMP, +OMP:SP:687,1,"Roveraie",43.658372,3.922058,0,0,OMP:SA:S5301,Europe/Paris,,OMP, +OMP:SP:688,1,"Clos des Garrigues",43.657711,3.919315,0,0,OMP:SA:S5284,Europe/Paris,,OMP, +OMP:SP:689,1,"Roland Garros",43.656287,3.917097,0,0,OMP:SA:S5299,Europe/Paris,,OMP, +OMP:SP:69,1,"Frédéric Fabrège",43.597322,3.886657,0,0,OMP:SA:S5466,Europe/Paris,,OMP, +OMP:SP:690,1,"C. Sylvains",43.656225,3.914532,0,0,OMP:SA:S5281,Europe/Paris,,OMP, +OMP:SP:691,1,"Romarin",43.657513,3.913775,0,0,OMP:SA:S5300,Europe/Paris,,OMP, +OMP:SP:692,1,"Thym",43.659152,3.917238,0,0,OMP:SA:S5302,Europe/Paris,,OMP, +OMP:SP:693,1,"Grand Rue",43.659306,3.919038,0,0,OMP:SA:S5289,Europe/Paris,,OMP, +OMP:SP:694,1,"Bel Air",43.659864,3.922062,0,0,OMP:SA:S5279,Europe/Paris,,OMP, +OMP:SP:695,1,"Collège Pierre Mendès France",43.667251,3.912384,0,0,OMP:SA:S5286,Europe/Paris,,OMP, +OMP:SP:696,1,"Jacou",43.654703,3.91288,0,0,OMP:SA:S5291,Europe/Paris,,OMP, +OMP:SP:697,1,"La Draye",43.668885,3.91752,0,0,OMP:SA:S5293,Europe/Paris,,OMP, +OMP:SP:699,1,"Idate",43.651711,3.897209,0,0,OMP:SA:S5187,Europe/Paris,,OMP, +OMP:SP:7,1,"Gambetta",43.606657,3.871916,0,0,OMP:SA:S5469,Europe/Paris,,OMP, +OMP:SP:70,1,"Iris",43.599039,3.885393,0,0,OMP:SA:S5500,Europe/Paris,,OMP, +OMP:SP:700,1,"Écureuil",43.662827,3.909971,0,0,OMP:SA:S5288,Europe/Paris,,OMP, +OMP:SP:701,1,"Parc",43.661312,3.909075,0,0,OMP:SA:S5296,Europe/Paris,,OMP, +OMP:SP:702,1,"Bibliothèque",43.658994,3.911426,0,0,OMP:SA:S5280,Europe/Paris,,OMP, +OMP:SP:703,1,"Piscine",43.660575,3.926292,0,0,OMP:SA:S5297,Europe/Paris,,OMP, +OMP:SP:704,1,"Le Pontil",43.662188,3.924826,0,0,OMP:SA:S5298,Europe/Paris,,OMP, +OMP:SP:705,1,"Lou Pradet",43.662256,3.921992,0,0,OMP:SA:S5294,Europe/Paris,,OMP, +OMP:SP:706,1,"Hélios",43.661466,3.919469,0,0,OMP:SA:S5290,Europe/Paris,,OMP, +OMP:SP:707,1,"Tournesol",43.660396,3.915786,0,0,OMP:SA:S5303,Europe/Paris,,OMP, +OMP:SP:708,1,"Coeur de Ville",43.659437,3.91311,0,0,OMP:SA:S5285,Europe/Paris,,OMP, +OMP:SP:709,1,"Cimetière Jacou",43.65945,3.907922,0,0,OMP:SA:S5283,Europe/Paris,,OMP, +OMP:SP:71,1,"Cité Mion",43.601333,3.884675,0,0,OMP:SA:S5416,Europe/Paris,,OMP, +OMP:SP:710,1,"De Bocaud",43.659672,3.904399,0,0,OMP:SA:S5287,Europe/Paris,,OMP, +OMP:SP:711,1,"Cap Alpha",43.659834,3.900614,0,0,OMP:SA:S5212,Europe/Paris,,OMP, +OMP:SP:712,1,"Moulières",43.65969,3.893168,0,0,OMP:SA:S5219,Europe/Paris,,OMP, +OMP:SP:713,1,"Olivette",43.658593,3.889423,0,0,OMP:SA:S5220,Europe/Paris,,OMP, +OMP:SP:714,1,"Leenhardt",43.656804,3.885053,0,0,OMP:SA:S5217,Europe/Paris,,OMP, +OMP:SP:715,1,"Pigeonniers",43.653723,3.881713,0,0,OMP:SA:S5221,Europe/Paris,,OMP, +OMP:SP:716,1,"Jean Jaurès",43.640026,3.893994,0,0,OMP:SA:S5188,Europe/Paris,,OMP, +OMP:SP:717,1,"Closerie des Guilhems",43.636004,3.894206,0,0,OMP:SA:S5183,Europe/Paris,,OMP, +OMP:SP:718,1,"Place de la Liberté",43.633215,3.895602,0,0,OMP:SA:S5199,Europe/Paris,,OMP, +OMP:SP:719,1,"Collège Pierre Mendès France",43.66719,3.912296,0,0,OMP:SA:S5286,Europe/Paris,,OMP, +OMP:SP:720,1,"Médiathèque Albert Camus",43.655545,3.88128,0,0,OMP:SA:S5218,Europe/Paris,,OMP, +OMP:SP:721,1,"Jacou",43.654694,3.91288,0,0,OMP:SA:S5291,Europe/Paris,,OMP, +OMP:SP:722,1,"La Croisée",43.660138,3.896982,0,0,OMP:SA:S5216,Europe/Paris,,OMP, +OMP:SP:723,1,"Parc",43.661568,3.909392,0,0,OMP:SA:S5296,Europe/Paris,,OMP, +OMP:SP:724,1,"Écureuil",43.663518,3.909433,0,0,OMP:SA:S5288,Europe/Paris,,OMP, +OMP:SP:725,1,"Idate",43.651527,3.897526,0,0,OMP:SA:S5187,Europe/Paris,,OMP, +OMP:SP:726,1,"Vincent Auriol",43.647967,3.864151,0,0,OMP:SA:S5673,Europe/Paris,,OMP, +OMP:SP:727,1,"Bibliothèque",43.65914,3.911306,0,0,OMP:SA:S5280,Europe/Paris,,OMP, +OMP:SP:728,1,"Rapatel",43.651643,3.8642,0,0,OMP:SA:S5366,Europe/Paris,,OMP, +OMP:SP:729,1,"Picheyrou",43.65318,3.860353,0,0,OMP:SA:S5364,Europe/Paris,,OMP, +OMP:SP:73,1,"Saint-Roch",43.615201,3.869721,0,0,OMP:SA:S5648,Europe/Paris,,OMP, +OMP:SP:730,1,"Aqueduc",43.653685,3.857073,0,0,OMP:SA:S5351,Europe/Paris,,OMP, +OMP:SP:731,1,"Mas de Gué",43.657282,3.851857,0,0,OMP:SA:S5362,Europe/Paris,,OMP, +OMP:SP:732,1,"Chemin du Cambas",43.658941,3.850242,0,0,OMP:SA:S5353,Europe/Paris,,OMP, +OMP:SP:733,1,"La Lironde",43.66031,3.848743,0,0,OMP:SA:S5361,Europe/Paris,,OMP, +OMP:SP:734,1,"Fontaine des Chênes",43.662519,3.846981,0,0,OMP:SA:S5359,Europe/Paris,,OMP, +OMP:SP:735,1,"Quatre Chemins",43.665083,3.846256,0,0,OMP:SA:S5365,Europe/Paris,,OMP, +OMP:SP:736,1,"Font du Noyer",43.665883,3.852643,0,0,OMP:SA:S5358,Europe/Paris,,OMP, +OMP:SP:737,1,"Chemin Neuf",43.667077,3.858569,0,0,OMP:SA:S5354,Europe/Paris,,OMP, +OMP:SP:738,1,"La Grand Font",43.668955,3.861208,0,0,OMP:SA:S5360,Europe/Paris,,OMP, +OMP:SP:739,1,"Picadou",43.66919,3.862403,0,0,OMP:SA:S5363,Europe/Paris,,OMP, +OMP:SP:74,1,"La Pile",43.617318,3.86812,0,0,OMP:SA:S5513,Europe/Paris,,OMP, +OMP:SP:740,1,"Distillerie",43.675296,3.867322,0,0,OMP:SA:S5356,Europe/Paris,,OMP, +OMP:SP:741,1,"Baillarguet",43.677717,3.867189,0,0,OMP:SA:S5352,Europe/Paris,,OMP, +OMP:SP:742,1,"Pendances",43.68386,3.863142,0,0,OMP:SA:S5713,Europe/Paris,,OMP, +OMP:SP:743,1,"Pont Vert",43.686707,3.863367,0,0,OMP:SA:S5714,Europe/Paris,,OMP, +OMP:SP:744,1,"Moulin Neuf",43.690335,3.862337,0,0,OMP:SA:S5712,Europe/Paris,,OMP, +OMP:SP:745,1,"Mandarine",43.692935,3.862195,0,0,OMP:SA:S5711,Europe/Paris,,OMP, +OMP:SP:746,1,"Cave Coopérative",43.694444,3.862323,0,0,OMP:SA:S5705,Europe/Paris,,OMP, +OMP:SP:747,1,"Frayssinet",43.695961,3.862475,0,0,OMP:SA:S5708,Europe/Paris,,OMP, +OMP:SP:748,1,"Mairie",43.697257,3.863699,0,0,OMP:SA:S5710,Europe/Paris,,OMP, +OMP:SP:749,1,"Les Baronnes",43.693674,3.872313,0,0,OMP:SA:S5709,Europe/Paris,,OMP, +OMP:SP:75,1,"Maison des Sports",43.618428,3.864648,0,0,OMP:SA:S5542,Europe/Paris,,OMP, +OMP:SP:750,1,"Vincent Auriol",43.650258,3.866787,0,0,OMP:SA:S5673,Europe/Paris,,OMP, +OMP:SP:751,1,"Cirad de Baillarguet",43.683808,3.87699,0,0,OMP:SA:S5355,Europe/Paris,,OMP, +OMP:SP:752,1,"Occitanie",43.634623,3.848347,0,0,OMP:SA:S5571,Europe/Paris,,OMP, +OMP:SP:753,1,"Ducque",43.697192,3.867662,0,0,OMP:SA:S5707,Europe/Paris,,OMP, +OMP:SP:754,1,"Coste Rousse",43.69478,3.870398,0,0,OMP:SA:S5706,Europe/Paris,,OMP, +OMP:SP:755,1,"Font de Salomé",43.676577,3.871519,0,0,OMP:SA:S5357,Europe/Paris,,OMP, +OMP:SP:756,1,"Mairie",43.697305,3.864059,0,0,OMP:SA:S5710,Europe/Paris,,OMP, +OMP:SP:757,1,"Frayssinet",43.696672,3.862469,0,0,OMP:SA:S5708,Europe/Paris,,OMP, +OMP:SP:759,1,"Mandarine",43.693243,3.86208,0,0,OMP:SA:S5711,Europe/Paris,,OMP, +OMP:SP:76,1,"Pous de la Sers",43.619124,3.86187,0,0,OMP:SA:S5616,Europe/Paris,,OMP, +OMP:SP:760,1,"Moulin Neuf",43.690426,3.862252,0,0,OMP:SA:S5712,Europe/Paris,,OMP, +OMP:SP:761,1,"Pont Vert",43.686545,3.863338,0,0,OMP:SA:S5714,Europe/Paris,,OMP, +OMP:SP:762,1,"Pendances",43.684148,3.863137,0,0,OMP:SA:S5713,Europe/Paris,,OMP, +OMP:SP:763,1,"Baillarguet",43.677314,3.867067,0,0,OMP:SA:S5352,Europe/Paris,,OMP, +OMP:SP:764,1,"Distillerie",43.675108,3.867268,0,0,OMP:SA:S5356,Europe/Paris,,OMP, +OMP:SP:765,1,"Picadou",43.669015,3.86137,0,0,OMP:SA:S5363,Europe/Paris,,OMP, +OMP:SP:766,1,"La Grand Font",43.668772,3.860125,0,0,OMP:SA:S5360,Europe/Paris,,OMP, +OMP:SP:767,1,"Chemin Neuf",43.667329,3.858539,0,0,OMP:SA:S5354,Europe/Paris,,OMP, +OMP:SP:768,1,"Font du Noyer",43.665974,3.85262,0,0,OMP:SA:S5358,Europe/Paris,,OMP, +OMP:SP:769,1,"Quatre Chemins",43.66499,3.845832,0,0,OMP:SA:S5365,Europe/Paris,,OMP, +OMP:SP:77,1,"Cinsaults",43.620596,3.856897,0,0,OMP:SA:S5413,Europe/Paris,,OMP, +OMP:SP:770,1,"Fontaine des Chênes",43.661697,3.84733,0,0,OMP:SA:S5359,Europe/Paris,,OMP, +OMP:SP:771,1,"La Lironde",43.659938,3.84898,0,0,OMP:SA:S5361,Europe/Paris,,OMP, +OMP:SP:772,1,"Chemin du Cambas",43.658724,3.85031,0,0,OMP:SA:S5353,Europe/Paris,,OMP, +OMP:SP:773,1,"Mas de Gué",43.657202,3.85178,0,0,OMP:SA:S5362,Europe/Paris,,OMP, +OMP:SP:774,1,"Aqueduc",43.653577,3.857058,0,0,OMP:SA:S5351,Europe/Paris,,OMP, +OMP:SP:775,1,"Picheyrou",43.65309,3.860363,0,0,OMP:SA:S5364,Europe/Paris,,OMP, +OMP:SP:776,1,"Rapatel",43.651434,3.864974,0,0,OMP:SA:S5366,Europe/Paris,,OMP, +OMP:SP:777,1,"Coste Rousse",43.694758,3.87062,0,0,OMP:SA:S5706,Europe/Paris,,OMP, +OMP:SP:778,1,"Ducque",43.697278,3.867937,0,0,OMP:SA:S5707,Europe/Paris,,OMP, +OMP:SP:779,1,"Plan des 4 Seigneurs",43.640811,3.857745,0,0,OMP:SA:S5611,Europe/Paris,,OMP, +OMP:SP:78,1,"Henri Marès",43.620195,3.854103,0,0,OMP:SA:S5493,Europe/Paris,,OMP, +OMP:SP:780,1,"Cirad de Baillarguet",43.683834,3.877016,0,0,OMP:SA:S5355,Europe/Paris,,OMP, +OMP:SP:781,1,"Font de Salomé",43.676642,3.87131,0,0,OMP:SA:S5357,Europe/Paris,,OMP, +OMP:SP:782,1,"Avenue de Rome",43.643241,3.823928,0,0,OMP:SA:S5267,Europe/Paris,,OMP, +OMP:SP:783,1,"Genêts",43.645798,3.809808,0,0,OMP:SA:S5272,Europe/Paris,,OMP, +OMP:SP:784,1,"Le Rio",43.646664,3.806314,0,0,OMP:SA:S5275,Europe/Paris,,OMP, +OMP:SP:785,1,"Garriguettes",43.646483,3.803698,0,0,OMP:SA:S5270,Europe/Paris,,OMP, +OMP:SP:786,1,"Cave Coopérative",43.64722,3.800386,0,0,OMP:SA:S5268,Europe/Paris,,OMP, +OMP:SP:787,1,"Grabels Centre",43.647894,3.797135,0,0,OMP:SA:S5269,Europe/Paris,,OMP, +OMP:SP:788,1,"Source",43.650665,3.790941,0,0,OMP:SA:S5278,Europe/Paris,,OMP, +OMP:SP:789,1,"Les Terrasses",43.654733,3.790587,0,0,OMP:SA:S5276,Europe/Paris,,OMP, +OMP:SP:79,1,"Louis Ravaz",43.620113,3.85222,0,0,OMP:SA:S5534,Europe/Paris,,OMP, +OMP:SP:790,1,"La Valsière",43.650091,3.831746,0,0,OMP:SA:S5273,Europe/Paris,,OMP, +OMP:SP:791,1,"L'Île Bleue",43.648355,3.831836,0,0,OMP:SA:S5277,Europe/Paris,,OMP, +OMP:SP:792,1,"Galéra",43.63659,3.836207,0,0,OMP:SA:S5468,Europe/Paris,,OMP, +OMP:SP:793,1,"Malbosc",43.634619,3.833779,0,0,OMP:SA:S5544,Europe/Paris,,OMP, +OMP:SP:794,1,"Euromédecine",43.639684,3.828292,0,0,OMP:SA:S5453,Europe/Paris,,OMP, +OMP:SP:795,1,"Caducée",43.643561,3.832676,0,0,OMP:SA:S5395,Europe/Paris,,OMP, +OMP:SP:796,1,"Croix de Lavit",43.639486,3.83934,0,0,OMP:SA:S5434,Europe/Paris,,OMP, +OMP:SP:797,1,"Gaston Planté",43.646539,3.831145,0,0,OMP:SA:S5271,Europe/Paris,,OMP, +OMP:SP:798,1,"Le Pradas",43.660854,3.791981,0,0,OMP:SA:S5274,Europe/Paris,,OMP, +OMP:SP:799,1,"Les Terrasses",43.65454,3.79026,0,0,OMP:SA:S5276,Europe/Paris,,OMP, +OMP:SP:8,1,"Tonnelles",43.614054,3.83804,0,0,OMP:SA:S5662,Europe/Paris,,OMP, +OMP:SP:80,1,"Las Rébès",43.620802,3.849243,0,0,OMP:SA:S5518,Europe/Paris,,OMP, +OMP:SP:800,1,"Source",43.650594,3.790865,0,0,OMP:SA:S5278,Europe/Paris,,OMP, +OMP:SP:801,1,"Grabels Centre",43.64736,3.798719,0,0,OMP:SA:S5269,Europe/Paris,,OMP, +OMP:SP:802,1,"Cave Coopérative",43.646719,3.801587,0,0,OMP:SA:S5268,Europe/Paris,,OMP, +OMP:SP:803,1,"Garriguettes",43.646504,3.805468,0,0,OMP:SA:S5270,Europe/Paris,,OMP, +OMP:SP:804,1,"Le Rio",43.646294,3.807741,0,0,OMP:SA:S5275,Europe/Paris,,OMP, +OMP:SP:805,1,"Genêts",43.645654,3.811166,0,0,OMP:SA:S5272,Europe/Paris,,OMP, +OMP:SP:806,1,"Avenue de Rome",43.643142,3.823913,0,0,OMP:SA:S5267,Europe/Paris,,OMP, +OMP:SP:807,1,"Euromédecine",43.638951,3.829288,0,0,OMP:SA:S5453,Europe/Paris,,OMP, +OMP:SP:808,1,"L'Île Bleue",43.648467,3.832198,0,0,OMP:SA:S5277,Europe/Paris,,OMP, +OMP:SP:809,1,"Galéra",43.636508,3.836254,0,0,OMP:SA:S5468,Europe/Paris,,OMP, +OMP:SP:81,1,"Cévennes",43.622102,3.84632,0,0,OMP:SA:S5404,Europe/Paris,,OMP, +OMP:SP:810,1,"Malbosc",43.634603,3.833617,0,0,OMP:SA:S5544,Europe/Paris,,OMP, +OMP:SP:811,1,"Caducée",43.643502,3.833034,0,0,OMP:SA:S5395,Europe/Paris,,OMP, +OMP:SP:812,1,"Croix de Lavit",43.639387,3.839338,0,0,OMP:SA:S5434,Europe/Paris,,OMP, +OMP:SP:813,1,"Gaston Planté",43.646698,3.831397,0,0,OMP:SA:S5271,Europe/Paris,,OMP, +OMP:SP:814,1,"Récantou",43.613077,3.815657,0,0,OMP:SA:S5320,Europe/Paris,,OMP, +OMP:SP:815,1,"La Plaine",43.611708,3.814509,0,0,OMP:SA:S5313,Europe/Paris,,OMP, +OMP:SP:816,1,"Rivière",43.609877,3.815599,0,0,OMP:SA:S5321,Europe/Paris,,OMP, +OMP:SP:817,1,"Églantiers",43.607875,3.812826,0,0,OMP:SA:S5306,Europe/Paris,,OMP, +OMP:SP:818,1,"Luminaire",43.607991,3.810849,0,0,OMP:SA:S5317,Europe/Paris,,OMP, +OMP:SP:819,1,"Marjories",43.609804,3.807828,0,0,OMP:SA:S5318,Europe/Paris,,OMP, +OMP:SP:82,1,"Sainte-Geneviève",43.623236,3.844234,0,0,OMP:SA:S5650,Europe/Paris,,OMP, +OMP:SP:820,1,"Valat de la Fosse",43.610527,3.805558,0,0,OMP:SA:S5324,Europe/Paris,,OMP, +OMP:SP:821,1,"Route de Saint-Georges",43.612816,3.809056,0,0,OMP:SA:S5322,Europe/Paris,,OMP, +OMP:SP:822,1,"Village",43.624786,3.79944,0,0,OMP:SA:S5325,Europe/Paris,,OMP, +OMP:SP:823,1,"Calade",43.62784,3.799642,0,0,OMP:SA:S5305,Europe/Paris,,OMP, +OMP:SP:824,1,"Mélanie",43.630664,3.798204,0,0,OMP:SA:S5319,Europe/Paris,,OMP, +OMP:SP:825,1,"Hauts de Fontcaude",43.632179,3.798491,0,0,OMP:SA:S5309,Europe/Paris,,OMP, +OMP:SP:826,1,"Grand Chêne",43.619975,3.797584,0,0,OMP:SA:S5308,Europe/Paris,,OMP, +OMP:SP:827,1,"Le Martinet",43.634084,3.803243,0,0,OMP:SA:S5315,Europe/Paris,,OMP, +OMP:SP:828,1,"Mosson",43.616129,3.819906,0,0,OMP:SA:S5563,Europe/Paris,,OMP, +OMP:SP:829,1,"Allée de l'Europe",43.613944,3.810112,0,0,OMP:SA:S5304,Europe/Paris,,OMP, +OMP:SP:83,1,"Alco",43.625583,3.840311,0,0,OMP:SA:S5371,Europe/Paris,,OMP, +OMP:SP:830,1,"Hôtel de Ville",43.613956,3.805213,0,0,OMP:SA:S5310,Europe/Paris,,OMP, +OMP:SP:831,1,"Le Labournas",43.61454,3.800588,0,0,OMP:SA:S5314,Europe/Paris,,OMP, +OMP:SP:832,1,"Terres du Sud",43.618541,3.791881,0,0,OMP:SA:S5323,Europe/Paris,,OMP, +OMP:SP:833,1,"Les Thermes",43.621855,3.800095,0,0,OMP:SA:S5316,Europe/Paris,,OMP, +OMP:SP:834,1,"La Bergerie",43.617074,3.796669,0,0,OMP:SA:S5312,Europe/Paris,,OMP, +OMP:SP:835,1,"Fontcaude",43.632117,3.801769,0,0,OMP:SA:S5307,Europe/Paris,,OMP, +OMP:SP:836,1,"Mélanie",43.630763,3.798182,0,0,OMP:SA:S5319,Europe/Paris,,OMP, +OMP:SP:837,1,"Calade",43.62801,3.799708,0,0,OMP:SA:S5305,Europe/Paris,,OMP, +OMP:SP:838,1,"Village",43.624715,3.799401,0,0,OMP:SA:S5325,Europe/Paris,,OMP, +OMP:SP:839,1,"Route de Saint-Georges",43.612767,3.808733,0,0,OMP:SA:S5322,Europe/Paris,,OMP, +OMP:SP:84,1,"Pierre Viala",43.617425,3.85414,0,0,OMP:SA:S5597,Europe/Paris,,OMP, +OMP:SP:840,1,"Valat de la Fosse",43.610683,3.805265,0,0,OMP:SA:S5324,Europe/Paris,,OMP, +OMP:SP:841,1,"Marjories",43.609705,3.807145,0,0,OMP:SA:S5318,Europe/Paris,,OMP, +OMP:SP:842,1,"Luminaire",43.607845,3.811019,0,0,OMP:SA:S5317,Europe/Paris,,OMP, +OMP:SP:843,1,"Églantiers",43.607802,3.812898,0,0,OMP:SA:S5306,Europe/Paris,,OMP, +OMP:SP:844,1,"Rivière",43.60957,3.815715,0,0,OMP:SA:S5321,Europe/Paris,,OMP, +OMP:SP:845,1,"La Plaine",43.611751,3.814633,0,0,OMP:SA:S5313,Europe/Paris,,OMP, +OMP:SP:846,1,"Récantou",43.613002,3.815891,0,0,OMP:SA:S5320,Europe/Paris,,OMP, +OMP:SP:847,1,"Hauts de Fontcaude",43.632172,3.799035,0,0,OMP:SA:S5309,Europe/Paris,,OMP, +OMP:SP:848,1,"Grand Chêne",43.620063,3.797686,0,0,OMP:SA:S5308,Europe/Paris,,OMP, +OMP:SP:849,1,"Fontcaude",43.632358,3.801862,0,0,OMP:SA:S5307,Europe/Paris,,OMP, +OMP:SP:85,1,"Louis Ravaz",43.619711,3.851442,0,0,OMP:SA:S5534,Europe/Paris,,OMP, +OMP:SP:850,1,"Allée de l'Europe",43.613808,3.810146,0,0,OMP:SA:S5304,Europe/Paris,,OMP, +OMP:SP:851,1,"Hôtel de Ville",43.613875,3.805211,0,0,OMP:SA:S5310,Europe/Paris,,OMP, +OMP:SP:852,1,"Le Labournas",43.614422,3.800684,0,0,OMP:SA:S5314,Europe/Paris,,OMP, +OMP:SP:853,1,"Terres du Sud",43.618541,3.791881,0,0,OMP:SA:S5323,Europe/Paris,,OMP, +OMP:SP:854,1,"Les Thermes",43.621856,3.800021,0,0,OMP:SA:S5316,Europe/Paris,,OMP, +OMP:SP:855,1,"La Bergerie",43.616994,3.796617,0,0,OMP:SA:S5312,Europe/Paris,,OMP, +OMP:SP:856,1,"Jasses",43.570616,3.827751,0,0,OMP:SA:S5750,Europe/Paris,,OMP, +OMP:SP:857,1,"La Roque",43.569875,3.835124,0,0,OMP:SA:S5753,Europe/Paris,,OMP, +OMP:SP:858,1,"Centre Commercial",43.570633,3.847248,0,0,OMP:SA:S5745,Europe/Paris,,OMP, +OMP:SP:859,1,"Terre Neuve",43.561038,3.84943,0,0,OMP:SA:S5763,Europe/Paris,,OMP, +OMP:SP:86,1,"Occitanie",43.634358,3.848637,0,0,OMP:SA:S5571,Europe/Paris,,OMP, +OMP:SP:860,1,"La Lauze",43.561762,3.845184,0,0,OMP:SA:S5752,Europe/Paris,,OMP, +OMP:SP:861,1,"Mas de Magret",43.567903,3.828273,0,0,OMP:SA:S5757,Europe/Paris,,OMP, +OMP:SP:862,1,"Val des Garrigues",43.566739,3.826599,0,0,OMP:SA:S5765,Europe/Paris,,OMP, +OMP:SP:863,1,"Cave Coopérative",43.573213,3.827138,0,0,OMP:SA:S5744,Europe/Paris,,OMP, +OMP:SP:864,1,"Terre Neuve",43.560695,3.849482,0,0,OMP:SA:S5763,Europe/Paris,,OMP, +OMP:SP:865,1,"Centre Commercial",43.570503,3.846861,0,0,OMP:SA:S5745,Europe/Paris,,OMP, +OMP:SP:866,1,"La Roque",43.569886,3.834989,0,0,OMP:SA:S5753,Europe/Paris,,OMP, +OMP:SP:867,1,"Jasses",43.570435,3.828463,0,0,OMP:SA:S5750,Europe/Paris,,OMP, +OMP:SP:868,1,"Cave Coopérative",43.573382,3.827266,0,0,OMP:SA:S5744,Europe/Paris,,OMP, +OMP:SP:869,1,"Val des Garrigues",43.566721,3.826573,0,0,OMP:SA:S5765,Europe/Paris,,OMP, +OMP:SP:87,1,"Apothicaires",43.641605,3.83494,0,0,OMP:SA:S5381,Europe/Paris,,OMP, +OMP:SP:870,1,"Mas de Magret",43.567947,3.828299,0,0,OMP:SA:S5757,Europe/Paris,,OMP, +OMP:SP:871,1,"Manse",43.570014,3.87835,0,0,OMP:SA:S5336,Europe/Paris,,OMP, +OMP:SP:872,1,"Entreprises",43.564194,3.879232,0,0,OMP:SA:S5333,Europe/Paris,,OMP, +OMP:SP:873,1,"Les Pins",43.590591,3.873266,0,0,OMP:SA:S5530,Europe/Paris,,OMP, +OMP:SP:874,1,"Passerines",43.588644,3.872409,0,0,OMP:SA:S5583,Europe/Paris,,OMP, +OMP:SP:875,1,"Crédit Agricole",43.55882,3.87659,0,0,OMP:SA:S5332,Europe/Paris,,OMP, +OMP:SP:876,1,"Entreprises",43.564067,3.879327,0,0,OMP:SA:S5333,Europe/Paris,,OMP, +OMP:SP:877,1,"Manse",43.569922,3.878484,0,0,OMP:SA:S5336,Europe/Paris,,OMP, +OMP:SP:878,1,"Lauriers",43.568701,3.945633,0,0,OMP:SA:S5686,Europe/Paris,,OMP, +OMP:SP:879,1,"Croix du Languedoc",43.566617,3.948554,0,0,OMP:SA:S5684,Europe/Paris,,OMP, +OMP:SP:88,1,"La Gaillarde",43.616251,3.857722,0,0,OMP:SA:S5511,Europe/Paris,,OMP, +OMP:SP:880,1,"Pérols Centre - Bazille",43.563051,3.950184,0,0,OMP:SA:S5838,Europe/Paris,,OMP, +OMP:SP:881,1,"Saint-Jean",43.561087,3.95223,0,0,OMP:SA:S5693,Europe/Paris,,OMP, +OMP:SP:882,1,"Pérols Sud",43.559558,3.958293,0,0,OMP:SA:S5690,Europe/Paris,,OMP, +OMP:SP:883,1,"Radel",43.556831,3.963877,0,0,OMP:SA:S5692,Europe/Paris,,OMP, +OMP:SP:884,1,"Bonadona",43.555699,3.965662,0,0,OMP:SA:S5682,Europe/Paris,,OMP, +OMP:SP:885,1,"Cabanes de Pérols",43.552549,3.968279,0,0,OMP:SA:S5683,Europe/Paris,,OMP, +OMP:SP:886,1,"Parc Expo",43.573293,3.944538,0,0,OMP:SA:S5687,Europe/Paris,,OMP, +OMP:SP:887,1,"Plein Sud",43.571156,3.941968,0,0,OMP:SA:S5691,Europe/Paris,,OMP, +OMP:SP:888,1,"Cabanes de Pérols",43.551119,3.96893,0,0,OMP:SA:S5683,Europe/Paris,,OMP, +OMP:SP:889,1,"Bonadona",43.554733,3.966549,0,0,OMP:SA:S5682,Europe/Paris,,OMP, +OMP:SP:89,1,"Château d'Ô",43.631317,3.842999,0,0,OMP:SA:S5409,Europe/Paris,,OMP, +OMP:SP:890,1,"Radel",43.55666,3.964539,0,0,OMP:SA:S5692,Europe/Paris,,OMP, +OMP:SP:891,1,"Pérols Sud",43.559805,3.957991,0,0,OMP:SA:S5690,Europe/Paris,,OMP, +OMP:SP:892,1,"Saint-Jean",43.561016,3.952772,0,0,OMP:SA:S5693,Europe/Paris,,OMP, +OMP:SP:893,1,"Pérols Centre - Bazille",43.562759,3.950435,0,0,OMP:SA:S5838,Europe/Paris,,OMP, +OMP:SP:894,1,"Croix du Languedoc",43.566801,3.948831,0,0,OMP:SA:S5684,Europe/Paris,,OMP, +OMP:SP:895,1,"Lauriers",43.568799,3.945673,0,0,OMP:SA:S5686,Europe/Paris,,OMP, +OMP:SP:896,1,"Parc Expo",43.573369,3.944861,0,0,OMP:SA:S5687,Europe/Paris,,OMP, +OMP:SP:897,1,"Plein Sud",43.571539,3.942807,0,0,OMP:SA:S5691,Europe/Paris,,OMP, +OMP:SP:898,1,"Meyrargues",43.653734,3.969141,0,0,OMP:SA:S5788,Europe/Paris,,OMP, +OMP:SP:899,1,"Biste",43.655629,4.000014,0,0,OMP:SA:S5154,Europe/Paris,,OMP, +OMP:SP:9,1,"Petit Bard",43.614639,3.835433,0,0,OMP:SA:S5589,Europe/Paris,,OMP, +OMP:SP:90,1,"Alco",43.625828,3.839526,0,0,OMP:SA:S5371,Europe/Paris,,OMP, +OMP:SP:900,1,"Treille",43.657244,4.00317,0,0,OMP:SA:S5165,Europe/Paris,,OMP, +OMP:SP:901,1,"Paul Cézanne",43.659974,4.006853,0,0,OMP:SA:S5164,Europe/Paris,,OMP, +OMP:SP:902,1,"Le Grès",43.662501,4.009119,0,0,OMP:SA:S5160,Europe/Paris,,OMP, +OMP:SP:903,1,"Mairie",43.661153,4.01319,0,0,OMP:SA:S5162,Europe/Paris,,OMP, +OMP:SP:904,1,"Le Levant",43.661704,4.01764,0,0,OMP:SA:S5161,Europe/Paris,,OMP, +OMP:SP:905,1,"Fenouillet",43.66359,4.021782,0,0,OMP:SA:S5156,Europe/Paris,,OMP, +OMP:SP:906,1,"Collège Le Bérange",43.667341,4.023392,0,0,OMP:SA:S5155,Europe/Paris,,OMP, +OMP:SP:907,1,"François Perroux",43.653635,4.001033,0,0,OMP:SA:S5157,Europe/Paris,,OMP, +OMP:SP:908,1,"Golf",43.652022,4.004812,0,0,OMP:SA:S5159,Europe/Paris,,OMP, +OMP:SP:909,1,"Sophoras",43.668018,4.026694,0,0,OMP:SA:S5720,Europe/Paris,,OMP, +OMP:SP:91,1,"Sainte-Geneviève",43.623008,3.844488,0,0,OMP:SA:S5650,Europe/Paris,,OMP, +OMP:SP:910,1,"Micocoulier",43.666884,4.029657,0,0,OMP:SA:S5717,Europe/Paris,,OMP, +OMP:SP:911,1,"Olivette",43.665591,4.031836,0,0,OMP:SA:S5718,Europe/Paris,,OMP, +OMP:SP:912,1,"Versant",43.664272,4.036243,0,0,OMP:SA:S5721,Europe/Paris,,OMP, +OMP:SP:913,1,"Saint-Brès",43.664885,4.036731,0,0,OMP:SA:S5719,Europe/Paris,,OMP, +OMP:SP:914,1,"Collège Le Bérange",43.667332,4.023429,0,0,OMP:SA:S5155,Europe/Paris,,OMP, +OMP:SP:915,1,"Fenouillet",43.664675,4.021431,0,0,OMP:SA:S5156,Europe/Paris,,OMP, +OMP:SP:916,1,"Gaston Baissette",43.664581,4.017068,0,0,OMP:SA:S5158,Europe/Paris,,OMP, +OMP:SP:917,1,"Paradis",43.664095,4.014156,0,0,OMP:SA:S5163,Europe/Paris,,OMP, +OMP:SP:918,1,"Mairie",43.66177,4.012775,0,0,OMP:SA:S5162,Europe/Paris,,OMP, +OMP:SP:919,1,"Le Grès",43.662523,4.010048,0,0,OMP:SA:S5160,Europe/Paris,,OMP, +OMP:SP:92,1,"Cévennes",43.622022,3.846219,0,0,OMP:SA:S5404,Europe/Paris,,OMP, +OMP:SP:920,1,"Paul Cézanne",43.659109,4.0058,0,0,OMP:SA:S5164,Europe/Paris,,OMP, +OMP:SP:921,1,"Treille",43.657668,4.003652,0,0,OMP:SA:S5165,Europe/Paris,,OMP, +OMP:SP:922,1,"Biste",43.655825,4.000144,0,0,OMP:SA:S5154,Europe/Paris,,OMP, +OMP:SP:923,1,"Meyrargues",43.653866,3.968141,0,0,OMP:SA:S5788,Europe/Paris,,OMP, +OMP:SP:924,1,"François Perroux",43.653635,4.001033,0,0,OMP:SA:S5157,Europe/Paris,,OMP, +OMP:SP:925,1,"Olivette",43.66548,4.032068,0,0,OMP:SA:S5718,Europe/Paris,,OMP, +OMP:SP:926,1,"Micocoulier",43.666909,4.029794,0,0,OMP:SA:S5717,Europe/Paris,,OMP, +OMP:SP:927,1,"Sophoras",43.668152,4.026723,0,0,OMP:SA:S5720,Europe/Paris,,OMP, +OMP:SP:928,1,"Monteroni d'Arbia",43.660122,3.936322,0,0,OMP:SA:S5250,Europe/Paris,,OMP, +OMP:SP:929,1,"Sienne",43.662271,3.941125,0,0,OMP:SA:S5255,Europe/Paris,,OMP, +OMP:SP:93,1,"Las Rébès",43.620731,3.849204,0,0,OMP:SA:S5518,Europe/Paris,,OMP, +OMP:SP:930,1,"Maumarin",43.661393,3.943986,0,0,OMP:SA:S5249,Europe/Paris,,OMP, +OMP:SP:931,1,"Maumarin",43.661446,3.944025,0,0,OMP:SA:S5249,Europe/Paris,,OMP, +OMP:SP:932,1,"Monteroni d'Arbia",43.660176,3.936311,0,0,OMP:SA:S5250,Europe/Paris,,OMP, +OMP:SP:933,1,"Sienne",43.662291,3.941027,0,0,OMP:SA:S5255,Europe/Paris,,OMP, +OMP:SP:934,1,"Les Mazets",43.699099,4.018532,0,0,OMP:SA:S5729,Europe/Paris,,OMP, +OMP:SP:935,1,"Les Pérouses",43.698168,4.024056,0,0,OMP:SA:S5731,Europe/Paris,,OMP, +OMP:SP:936,1,"Les Mourguettes",43.696901,4.026335,0,0,OMP:SA:S5730,Europe/Paris,,OMP, +OMP:SP:937,1,"Poste",43.69659,4.031307,0,0,OMP:SA:S5732,Europe/Paris,,OMP, +OMP:SP:938,1,"Le Mas",43.721594,4.035807,0,0,OMP:SA:S5715,Europe/Paris,,OMP, +OMP:SP:939,1,"Le Créant",43.727579,4.028571,0,0,OMP:SA:S5166,Europe/Paris,,OMP, +OMP:SP:94,1,"Louis Ravaz",43.620024,3.852155,0,0,OMP:SA:S5534,Europe/Paris,,OMP, +OMP:SP:940,1,"Les Mazets",43.699188,4.018621,0,0,OMP:SA:S5729,Europe/Paris,,OMP, +OMP:SP:941,1,"Les Pérouses",43.698194,4.024143,0,0,OMP:SA:S5731,Europe/Paris,,OMP, +OMP:SP:942,1,"Les Mourguettes",43.696962,4.026449,0,0,OMP:SA:S5730,Europe/Paris,,OMP, +OMP:SP:943,1,"Poste",43.696672,4.031198,0,0,OMP:SA:S5732,Europe/Paris,,OMP, +OMP:SP:944,1,"Le Mas",43.721445,4.035604,0,0,OMP:SA:S5715,Europe/Paris,,OMP, +OMP:SP:945,1,"Le Créant",43.72753,4.028781,0,0,OMP:SA:S5166,Europe/Paris,,OMP, +OMP:SP:946,1,"Arnel",43.538072,3.869087,0,0,OMP:SA:S5797,Europe/Paris,,OMP, +OMP:SP:947,1,"Boulevard des Écoles",43.533969,3.862391,0,0,OMP:SA:S5799,Europe/Paris,,OMP, +OMP:SP:948,1,"Stade",43.533369,3.855209,0,0,OMP:SA:S5811,Europe/Paris,,OMP, +OMP:SP:949,1,"Vignes Vierges",43.532274,3.852549,0,0,OMP:SA:S5813,Europe/Paris,,OMP, +OMP:SP:95,1,"Henri Marès",43.620119,3.854348,0,0,OMP:SA:S5493,Europe/Paris,,OMP, +OMP:SP:950,1,"Domenoves",43.530688,3.854063,0,0,OMP:SA:S5801,Europe/Paris,,OMP, +OMP:SP:951,1,"Tadornes",43.527081,3.861244,0,0,OMP:SA:S5812,Europe/Paris,,OMP, +OMP:SP:952,1,"Olivier de Bohême",43.527252,3.863139,0,0,OMP:SA:S5807,Europe/Paris,,OMP, +OMP:SP:953,1,"Myosotis",43.528673,3.865005,0,0,OMP:SA:S5806,Europe/Paris,,OMP, +OMP:SP:954,1,"Boulevard du Chapitre",43.533337,3.864475,0,0,OMP:SA:S5800,Europe/Paris,,OMP, +OMP:SP:955,1,"Avenue de la Gare",43.537161,3.8572,0,0,OMP:SA:S5798,Europe/Paris,,OMP, +OMP:SP:956,1,"Maison d'Arrêt",43.54631,3.828291,0,0,OMP:SA:S5805,Europe/Paris,,OMP, +OMP:SP:957,1,"Font Majour",43.535142,3.859482,0,0,OMP:SA:S5802,Europe/Paris,,OMP, +OMP:SP:958,1,"Pilou",43.529946,3.865892,0,0,OMP:SA:S5809,Europe/Paris,,OMP, +OMP:SP:959,1,"Les Salins",43.530653,3.858448,0,0,OMP:SA:S5804,Europe/Paris,,OMP, +OMP:SP:96,1,"Cinsaults",43.620523,3.857007,0,0,OMP:SA:S5413,Europe/Paris,,OMP, +OMP:SP:960,1,"Pèlerine",43.526548,3.855041,0,0,OMP:SA:S5808,Europe/Paris,,OMP, +OMP:SP:961,1,"Les Moures",43.52415,3.860042,0,0,OMP:SA:S5803,Europe/Paris,,OMP, +OMP:SP:962,1,"Pont de Villeneuve",43.554625,3.844514,0,0,OMP:SA:S5810,Europe/Paris,,OMP, +OMP:SP:963,1,"Maison d'Arrêt",43.546311,3.828278,0,0,OMP:SA:S5805,Europe/Paris,,OMP, +OMP:SP:964,1,"Avenue de la Gare",43.537027,3.857185,0,0,OMP:SA:S5798,Europe/Paris,,OMP, +OMP:SP:965,1,"Stade",43.533369,3.855209,0,0,OMP:SA:S5811,Europe/Paris,,OMP, +OMP:SP:966,1,"Vignes Vierges",43.532274,3.852549,0,0,OMP:SA:S5813,Europe/Paris,,OMP, +OMP:SP:967,1,"Domenoves",43.530688,3.854063,0,0,OMP:SA:S5801,Europe/Paris,,OMP, +OMP:SP:968,1,"Tadornes",43.527081,3.861244,0,0,OMP:SA:S5812,Europe/Paris,,OMP, +OMP:SP:969,1,"Olivier de Bohême",43.527252,3.863139,0,0,OMP:SA:S5807,Europe/Paris,,OMP, +OMP:SP:97,1,"Pous de la Sers",43.619268,3.861218,0,0,OMP:SA:S5616,Europe/Paris,,OMP, +OMP:SP:970,1,"Myosotis",43.528673,3.865005,0,0,OMP:SA:S5806,Europe/Paris,,OMP, +OMP:SP:971,1,"Boulevard du Chapitre",43.533337,3.864475,0,0,OMP:SA:S5800,Europe/Paris,,OMP, +OMP:SP:972,1,"Arnel",43.538051,3.869272,0,0,OMP:SA:S5797,Europe/Paris,,OMP, +OMP:SP:973,1,"Font Majour",43.534843,3.859647,0,0,OMP:SA:S5802,Europe/Paris,,OMP, +OMP:SP:974,1,"Boulevard des Écoles",43.533517,3.86128,0,0,OMP:SA:S5799,Europe/Paris,,OMP, +OMP:SP:975,1,"Pilou",43.529946,3.865892,0,0,OMP:SA:S5809,Europe/Paris,,OMP, +OMP:SP:976,1,"Les Salins",43.530653,3.858448,0,0,OMP:SA:S5804,Europe/Paris,,OMP, +OMP:SP:977,1,"Pèlerine",43.526548,3.855041,0,0,OMP:SA:S5808,Europe/Paris,,OMP, +OMP:SP:978,1,"Les Moures",43.52415,3.860042,0,0,OMP:SA:S5803,Europe/Paris,,OMP, +OMP:SP:979,1,"Lou Paillas",43.545559,3.774292,0,0,OMP:SA:S5264,Europe/Paris,,OMP, +OMP:SP:98,1,"Maison des Sports",43.618324,3.864373,0,0,OMP:SA:S5542,Europe/Paris,,OMP, +OMP:SP:980,1,"Sigaliès",43.572126,3.814672,0,0,OMP:SA:S5762,Europe/Paris,,OMP, +OMP:SP:981,1,"Les Hauts",43.558558,3.794396,0,0,OMP:SA:S5263,Europe/Paris,,OMP, +OMP:SP:982,1,"Les Cousses",43.557853,3.78994,0,0,OMP:SA:S5261,Europe/Paris,,OMP, +OMP:SP:983,1,"Albinoni",43.558135,3.786375,0,0,OMP:SA:S5257,Europe/Paris,,OMP, +OMP:SP:984,1,"Rouget de Lisle",43.557094,3.78426,0,0,OMP:SA:S5266,Europe/Paris,,OMP, +OMP:SP:985,1,"École La Gardiole",43.557557,3.782517,0,0,OMP:SA:S5258,Europe/Paris,,OMP, +OMP:SP:986,1,"Jeu de Ballon",43.552188,3.776041,0,0,OMP:SA:S5259,Europe/Paris,,OMP, +OMP:SP:987,1,"Les Écoles",43.549484,3.777221,0,0,OMP:SA:S5262,Europe/Paris,,OMP, +OMP:SP:988,1,"Le Hameau",43.547027,3.773427,0,0,OMP:SA:S5260,Europe/Paris,,OMP, +OMP:SP:989,1,"Paix",43.555454,3.779176,0,0,OMP:SA:S5265,Europe/Paris,,OMP, +OMP:SP:99,1,"La Pile",43.617125,3.86783,0,0,OMP:SA:S5513,Europe/Paris,,OMP, +OMP:SP:990,1,"Mairie",43.570755,3.773615,0,0,OMP:SA:S5773,Europe/Paris,,OMP, +OMP:SP:991,1,"Barils",43.571837,3.773358,0,0,OMP:SA:S5768,Europe/Paris,,OMP, +OMP:SP:992,1,"Aires",43.572562,3.772919,0,0,OMP:SA:S5767,Europe/Paris,,OMP, +OMP:SP:993,1,"Pascaou",43.567962,3.773471,0,0,OMP:SA:S5774,Europe/Paris,,OMP, +OMP:SP:994,1,"Les Écoles",43.549487,3.776986,0,0,OMP:SA:S5262,Europe/Paris,,OMP, +OMP:SP:995,1,"Jeu de Ballon",43.55219,3.776535,0,0,OMP:SA:S5259,Europe/Paris,,OMP, +OMP:SP:996,1,"École La Gardiole",43.557246,3.782262,0,0,OMP:SA:S5258,Europe/Paris,,OMP, +OMP:SP:997,1,"Rouget de Lisle",43.556912,3.784391,0,0,OMP:SA:S5266,Europe/Paris,,OMP, +OMP:SP:998,1,"Albinoni",43.558062,3.786435,0,0,OMP:SA:S5257,Europe/Paris,,OMP, +OMP:SP:999,1,"Les Cousses",43.557828,3.789804,0,0,OMP:SA:S5261,Europe/Paris,,OMP, +ONL:SP:102017,1,"ALPE G SERRE STATION",45.023696,5.863116,0,0,ONL:SA:CTP102017,Europe/Paris,,ONL, +ONL:SP:102018,1,"VILLARD DE LANS AGENCE VFD",45.072661,5.552618,0,0,ONL:SA:CTP1385,Europe/Paris,,ONL, +ONL:SP:102019,1,"SAINT MARTIN D'HERES NEYRPIC BELLEDONNE",45.186551,5.757061,0,0,ONL:SA:CTP102019,Europe/Paris,,ONL, +ONL:SP:102020,1,"HUEZ EN OISANS OT PLACE PAGANON",45.090327,6.065081,0,0,ONL:SA:CTP102020,Europe/Paris,,ONL, +ONL:SP:103234,1,"LANS VERCORS OFFICE DU TOURISME",45.129567,5.584335,0,0,ONL:SA:CTP2456,Europe/Paris,,ONL, +ONL:SP:103235,1,"GRENOBLE GARE ROUTIERE",45.192814,5.714548,0,0,ONL:SA:CTP3260,Europe/Paris,,ONL, +ONL:SP:103244,1,"ALPE G SERRE STATION",45.023696,5.863116,0,0,ONL:SA:CTP102017,Europe/Paris,,ONL, +ONL:SP:1034,1,"CLOS BALME CORRENÇON EN VERCORS",45.02066,5.529182,0,0,ONL:SA:CTP1034,Europe/Paris,,ONL, +ONL:SP:1038,1,"CORRENÇON OFFICE DU TOURISME",45.031882,5.527305,0,0,ONL:SA:CTP1038,Europe/Paris,,ONL, +ONL:SP:1040,1,"CORRENÇON OFFICE DU TOURISME",45.031735,5.527145,0,0,ONL:SA:CTP1038,Europe/Paris,,ONL, +ONL:SP:1153,1,"LES 2 ALPES VENOSC AGENCE VFD",45.006299,6.121564,0,0,ONL:SA:CTP1153,Europe/Paris,,ONL, +ONL:SP:1155,1,"LES 2 ALPES VENOSC AGENCE VFD",45.006324,6.12166,0,0,ONL:SA:CTP1153,Europe/Paris,,ONL, +ONL:SP:1161,1,"MONT DE LANS LES 2 ALPES MI-ALPE",45.008506,6.122367,0,0,ONL:SA:CTP1161,Europe/Paris,,ONL, +ONL:SP:1163,1,"MONT DE LANS LES 2 ALPES MI-ALPE",45.008527,6.12227,0,0,ONL:SA:CTP1161,Europe/Paris,,ONL, +ONL:SP:1177,1,"MONT DE LANS LES 2 ALPES LA POSTE",45.013202,6.124658,0,0,ONL:SA:CTP1177,Europe/Paris,,ONL, +ONL:SP:1181,1,"MONT DE LANS LES 2 ALPES LA POSTE",45.013207,6.124759,0,0,ONL:SA:CTP1177,Europe/Paris,,ONL, +ONL:SP:12036,1,"CHAMROUSSE DOMAINE DE L'ARSELLE",45.103185,5.88251,0,0,ONL:SA:CTP12036,Europe/Paris,,ONL, +ONL:SP:12038,1,"CHAMROUSSE DOMAINE DE L'ARSELLE",45.103205,5.882158,0,0,ONL:SA:CTP12036,Europe/Paris,,ONL, +ONL:SP:1344,1,"CLOS BALME CORRENÇON EN VERCORS",45.02066,5.529182,0,0,ONL:SA:CTP1034,Europe/Paris,,ONL, +ONL:SP:1354,1,"AUTRANS LE VILLAGE",45.174871,5.542368,0,0,ONL:SA:CTP1354,Europe/Paris,,ONL, +ONL:SP:1364,1,"MEAUDRE LA PLACE",45.126633,5.527774,0,0,ONL:SA:CTP1364,Europe/Paris,,ONL, +ONL:SP:1375,1,"COTE 2000 SKILIGNE VILLARD DE LANS",45.046282,5.556986,0,0,ONL:SA:CTP1375,Europe/Paris,,ONL, +ONL:SP:1377,1,"COTE 2000 SKILIGNE VILLARD DE LANS",45.046335,5.556917,0,0,ONL:SA:CTP1375,Europe/Paris,,ONL, +ONL:SP:1385,1,"VILLARD DE LANS AGENCE VFD",45.072661,5.552618,0,0,ONL:SA:CTP1385,Europe/Paris,,ONL, +ONL:SP:1395,1,"AUTRANS LE VILLAGE",45.174871,5.542368,0,0,ONL:SA:CTP1354,Europe/Paris,,ONL, +ONL:SP:1399,1,"MEAUDRE LA PLACE",45.126633,5.527774,0,0,ONL:SA:CTP1364,Europe/Paris,,ONL, +ONL:SP:1610,1,"MONT DE LANS BONS",45.035703,6.115536,0,0,ONL:SA:CTP1610,Europe/Paris,,ONL, +ONL:SP:1612,1,"MONT DE LANS BONS",45.035642,6.115481,0,0,ONL:SA:CTP1610,Europe/Paris,,ONL, +ONL:SP:1618,1,"AURIS EN OISANS STATION",45.05564,6.079143,0,0,ONL:SA:CTP1618,Europe/Paris,,ONL, +ONL:SP:1620,1,"AURIS EN OISANS STATION",45.055692,6.079212,0,0,ONL:SA:CTP1618,Europe/Paris,,ONL, +ONL:SP:1638,1,"MONT DE LANS LE VILLAGE",45.036538,6.132014,0,0,ONL:SA:CTP1638,Europe/Paris,,ONL, +ONL:SP:1640,1,"MONT DE LANS LE VILLAGE",45.03657,6.131924,0,0,ONL:SA:CTP1638,Europe/Paris,,ONL, +ONL:SP:1644,1,"MONT DE LANS LES 2 ALPES POINT INFO",45.017056,6.124727,0,0,ONL:SA:CTP1644,Europe/Paris,,ONL, +ONL:SP:1646,1,"MONT DE LANS LES 2 ALPES POINT INFO",45.017035,6.124824,0,0,ONL:SA:CTP1644,Europe/Paris,,ONL, +ONL:SP:2057,1,"CHAMROUSSE ROCHE BERANGER 1750",45.108433,5.875583,0,0,ONL:SA:CTP2057,Europe/Paris,,ONL, +ONL:SP:2059,1,"CHAMROUSSE ROCHE BERANGER 1750",45.108434,5.875563,0,0,ONL:SA:CTP2057,Europe/Paris,,ONL, +ONL:SP:2069,1,"HUEZ EN OISANS LE VILLAGE",45.080806,6.057222,0,0,ONL:SA:CTP2069,Europe/Paris,,ONL, +ONL:SP:2071,1,"HUEZ EN OISANS LE VILLAGE",45.080875,6.057253,0,0,ONL:SA:CTP2069,Europe/Paris,,ONL, +ONL:SP:2110,1,"VILLARD-RECULAS OFFICE DE TOURISME",45.092016,6.030451,0,0,ONL:SA:CTP2110,Europe/Paris,,ONL, +ONL:SP:2112,1,"VILLARD-RECULAS OFFICE DE TOURISME",45.092016,6.030451,0,0,ONL:SA:CTP2110,Europe/Paris,,ONL, +ONL:SP:2121,1,"ALPE D'HUEZ AVENUE DE L'ETENDARD",45.092928,6.068871,0,0,ONL:SA:CTP2121,Europe/Paris,,ONL, +ONL:SP:2122,1,"ALPE D'HUEZ AVENUE DE L'ETENDARD",45.092778,6.06893,0,0,ONL:SA:CTP2121,Europe/Paris,,ONL, +ONL:SP:2124,1,"ALPE D'HUEZ L'ECLOSE",45.088106,6.071679,0,0,ONL:SA:CTP2124,Europe/Paris,,ONL, +ONL:SP:2126,1,"ALPE D'HUEZ L'ECLOSE",45.088108,6.071579,0,0,ONL:SA:CTP2124,Europe/Paris,,ONL, +ONL:SP:2134,1,"ALPE D'HUEZ PARKING LES BERGERS",45.089609,6.076037,0,0,ONL:SA:CTP2134,Europe/Paris,,ONL, +ONL:SP:2136,1,"ALPE D'HUEZ PARKING LES BERGERS",45.089673,6.076082,0,0,ONL:SA:CTP2134,Europe/Paris,,ONL, +ONL:SP:2456,1,"LANS VERCORS OFFICE DU TOURISME",45.129567,5.584335,0,0,ONL:SA:CTP2456,Europe/Paris,,ONL, +ONL:SP:2792,1,"CHAMROUSSE LE RECOIN 1650",45.126302,5.878144,0,0,ONL:SA:CTP2792,Europe/Paris,,ONL, +ONL:SP:2794,1,"CHAMROUSSE LE RECOIN 1650",45.126374,5.878146,0,0,ONL:SA:CTP2792,Europe/Paris,,ONL, +ONL:SP:2844,1,"OZ EN OISANS STATION",45.130452,6.072359,0,0,ONL:SA:CTP2844,Europe/Paris,,ONL, +ONL:SP:2846,1,"OZ EN OISANS STATION",45.130425,6.072453,0,0,ONL:SA:CTP2844,Europe/Paris,,ONL, +ONL:SP:2851,1,"VAUJANY STATION TELEPHERIQUE",45.157578,6.079043,0,0,ONL:SA:CTP2851,Europe/Paris,,ONL, +ONL:SP:2853,1,"VAUJANY STATION TELEPHERIQUE",45.157646,6.079006,0,0,ONL:SA:CTP2851,Europe/Paris,,ONL, +ONL:SP:3260,1,"GRENOBLE GARE ROUTIERE",45.192814,5.714548,0,0,ONL:SA:CTP3260,Europe/Paris,,ONL, +ONL:SP:3767,1,"MEYLAN PLAINE FLEURIE",45.20275,5.761014,0,0,ONL:SA:CTP3767,Europe/Paris,,ONL, +ONL:SP:3769,1,"MEYLAN PLAINE FLEURIE",45.202731,5.761047,0,0,ONL:SA:CTP3767,Europe/Paris,,ONL, +ONL:SP:4918,1,"PRAPOUTEL PATTE D'OIE",45.252859,5.992288,0,0,ONL:SA:CTP4918,Europe/Paris,,ONL, +ONL:SP:4919,1,"PRAPOUTEL PATTE D'OIE",45.252859,5.992288,0,0,ONL:SA:CTP4918,Europe/Paris,,ONL, +OOC:SP:101937,1,"GARE ROUTIERE",45.192814,5.714548,0,0,OOC:SA:S39102,Europe/Paris,,OOC, +OOC:SP:101938,1,"GARE CHAMBERY",45.571335,5.919233,0,0,OOC:SA:S22103,Europe/Paris,,OOC, +OOC:SP:101939,1,"GARE CHAMBERY",45.571264,5.919222,0,0,OOC:SA:S22103,Europe/Paris,,OOC, +OOC:SP:101940,1,"AEROPORT GENEVE",46.231281,6.10977,0,0,OOC:SA:S15626,Europe/Paris,,OOC, +OOC:SP:101941,1,"LE RAFOUR",45.269705,5.892937,0,0,OOC:SA:S22854,Europe/Paris,,OOC, +OOC:SP:101942,1,"LE RAFOUR",45.269649,5.892871,0,0,OOC:SA:S22854,Europe/Paris,,OOC, +OOC:SP:101943,1,"PRESQU'ÎLE",45.205339,5.700359,0,0,OOC:SA:S22436,Europe/Paris,,OOC, +ORX:SP:41194,1,"Gare Part Dieu",45.760136,4.86204,0,0,ORX:SA:S5540,Europe/Paris,2,ORX, +ORX:SP:41195,1,"Vaulx La Soie",45.761,4.922084,0,0,ORX:SA:S5564,Europe/Paris,2,ORX, +ORX:SP:41196,1,"Vaulx La Soie",45.761066,4.922057,0,0,ORX:SA:S5564,Europe/Paris,2,ORX, +ORX:SP:41197,1,"Meyzieu Z.I",45.767772,5.03142,0,0,DGL:SA:S5568,Europe/Paris,2,ORX, +ORX:SP:41198,1,"Meyzieu Z.I",45.76775,5.031597,0,0,DGL:SA:S5568,Europe/Paris,2,ORX, +ORX:SP:41199,1,"Aeroport St Exupery",45.72265,5.076472,0,0,ORX:SA:S33100,Europe/Paris,2,ORX, +ORX:SP:41375,1,"Saint Exupery Repli",45.727055,5.077077,0,0,ORX:SA:S33120,Europe/Paris,0,ORX, +OSX:SP:12011,1,"Aéroport Lyon Sy Exupéry",45.7208,5.077395,0,0,OSX:SA:CTP12011,Europe/Paris,,OSX, +OSX:SP:13423,1,"Gare Routière",45.191519,5.714457,0,0,SIN:SA:OCE87747006,Europe/Paris,,OSX, +OSX:SP:3191,1,"gare routière",45.359559,5.591738,0,0,OSX:SA:CTP3191,Europe/Paris,,OSX, +OSX:SP:3194,1,"Arrêt 1",27.140959,-3.404569,0,0,SIN:SA:OCE87697540,Europe/Paris,,OSX, +OSX:SP:3258,1,"Arrêt 2",27.140959,-3.404569,0,0,OSX:SA:CTP3258,Europe/Paris,,OSX, +OSX:SP:7122,1,"Presqu'île",45.205159,5.700843,0,0,OSX:SA:CTP7122,Europe/Paris,,OSX, +OVO:SP:101928,1,"FONTANIL CORNIL CROIX DE ROCHETTE",45.258133,5.659504,0,0,OVO:SA:CTP4237,Europe/Paris,,OVO, +OVO:SP:101933,1,"FONTANIL CORNIL PALLUEL",45.254693,5.661674,0,0,O38:SA:CTP101822,Europe/Paris,,OVO, +OVO:SP:101934,1,"FONTANIL CORNIL PALLUEL",45.254962,5.661691,0,0,O38:SA:CTP101822,Europe/Paris,,OVO, +OVO:SP:102967,1,"GARE SUD 12",45.363154,5.594549,0,0,OVO:SA:CTP102967,Europe/Paris,,OVO, +OVO:SP:102968,1,"GARE NORD 01",45.365208,5.592816,0,0,OVO:SA:CTP102968,Europe/Paris,,OVO, +OVO:SP:102969,1,"GARE SUD 08",45.363154,5.594549,0,0,OVO:SA:CTP102969,Europe/Paris,,OVO, +OVO:SP:102970,1,"GARE SUD 09",45.363154,5.594549,0,0,OVO:SA:CTP102970,Europe/Paris,,OVO, +OVO:SP:102971,1,"LEPRINCE RINGUET",45.388116,5.574299,0,0,OVO:SA:CTP102971,Europe/Paris,,OVO, +OVO:SP:102973,1,"RELAIS INFO SERVICE",45.314466,5.60505,0,0,OVO:SA:CTP102973,Europe/Paris,,OVO, +OVO:SP:102974,1,"GARE SUD 14",45.363154,5.594549,0,0,OVO:SA:CTP102974,Europe/Paris,,OVO, +OVO:SP:102975,1,"GARE SUD 15",45.363154,5.594549,0,0,OVO:SA:CTP102975,Europe/Paris,,OVO, +OVO:SP:102977,1,"GARE NORD 02",45.365208,5.592816,0,0,OVO:SA:CTP102977,Europe/Paris,,OVO, +OVO:SP:102979,1,"GARE NORD 04",45.365208,5.592816,0,0,OVO:SA:CTP102979,Europe/Paris,,OVO, +OVO:SP:102980,1,"GARE NORD 05",45.365208,5.592816,0,0,OVO:SA:CTP102980,Europe/Paris,,OVO, +OVO:SP:102983,1,"GARE SUD 10",45.363154,5.594549,0,0,OVO:SA:CTP102983,Europe/Paris,,OVO, +OVO:SP:102985,1,"GARE SUD 13",45.363154,5.594549,0,0,OVO:SA:CTP102985,Europe/Paris,,OVO, +OVO:SP:102986,1,"GARE SUD 16",45.363154,5.594549,0,0,OVO:SA:CTP102986,Europe/Paris,,OVO, +OVO:SP:103038,1,"MEDIATHEQUE",45.363008,5.5975,0,0,OVO:SA:CTP14876,Europe/Paris,,OVO, +OVO:SP:103302,1,"LE MOURET",45.366171,5.514584,0,0,OVO:SA:CTP6140,Europe/Paris,,OVO, +OVO:SP:103317,1,"ST J.DE MOIRANS PARABOOT",45.320284,5.601648,0,0,OVO:SA:CTP103317,Europe/Paris,,OVO, +OVO:SP:103318,1,"ST J.DE MOIRANS PARABOOT",45.32137,5.600178,0,0,OVO:SA:CTP103317,Europe/Paris,,OVO, +OVO:SP:103333,1,"DENFERT ROCHEREAU",45.36023,5.595649,0,0,OVO:SA:CTP14891,Europe/Paris,,OVO, +OVO:SP:103340,1,"ZA DU ROULET",45.350082,5.599782,0,0,OVO:SA:CTP103340,Europe/Paris,,OVO, +OVO:SP:103341,1,"ZA DU ROULET",45.350054,5.599304,0,0,OVO:SA:CTP103340,Europe/Paris,,OVO, +OVO:SP:103342,1,"LE PIN VERS ARS",45.449032,5.513329,0,0,OVO:SA:CTP7837,Europe/Paris,,OVO, +OVO:SP:103343,1,"MARTIN CLUZEL",45.433201,5.514266,0,0,OVO:SA:CTP7823,Europe/Paris,,OVO, +OVO:SP:103344,1,"ST BLAISE DU BU ZA LE TALAMUD",45.386438,5.524891,0,0,OVO:SA:CTP7066,Europe/Paris,,OVO, +OVO:SP:103345,1,"COLLEGE PLAN MENU",45.350806,5.603718,0,0,OVO:SA:CTP14411,Europe/Paris,,OVO, +OVO:SP:103346,1,"COLLEGE PLAN MENU",45.350753,5.603667,0,0,OVO:SA:CTP14411,Europe/Paris,,OVO, +OVO:SP:103347,1,"VERDUN",45.37062,5.580233,0,0,OVO:SA:CTP14792,Europe/Paris,,OVO, +OVO:SP:103379,1,"MARTIN CLUZEL",45.433278,5.513914,0,0,OVO:SA:CTP7823,Europe/Paris,,OVO, +OVO:SP:13090,1,"GARE SNCF",45.357982,5.492023,0,0,OVO:SA:CTP13090,Europe/Paris,,OVO, +OVO:SP:13413,1,"LES GORGES",45.445878,5.658155,0,0,OVO:SA:CTP13413,Europe/Paris,,OVO, +OVO:SP:13415,1,"LES GORGES",45.445861,5.658262,0,0,OVO:SA:CTP13413,Europe/Paris,,OVO, +OVO:SP:14364,1,"CAFE PERRIN",45.44516,5.534581,0,0,OVO:SA:CTP14364,Europe/Paris,,OVO, +OVO:SP:14365,1,"CAFE PERRIN",45.445193,5.534458,0,0,OVO:SA:CTP14364,Europe/Paris,,OVO, +OVO:SP:14366,1,"CHANTARET",45.445577,5.556937,0,0,OVO:SA:CTP14366,Europe/Paris,,OVO, +OVO:SP:14367,1,"CHANTARET",45.445645,5.556701,0,0,OVO:SA:CTP14366,Europe/Paris,,OVO, +OVO:SP:14368,1,"BARDONNET",45.44671,5.540382,0,0,OVO:SA:CTP14368,Europe/Paris,,OVO, +OVO:SP:14369,1,"BARDONNET",45.446814,5.540435,0,0,OVO:SA:CTP14368,Europe/Paris,,OVO, +OVO:SP:14370,1,"PETIT BILIEU",45.447582,5.533488,0,0,OVO:SA:CTP14370,Europe/Paris,,OVO, +OVO:SP:14371,1,"PETIT BILIEU",45.447789,5.533687,0,0,OVO:SA:CTP14370,Europe/Paris,,OVO, +OVO:SP:14372,1,"VILLAGE",45.448941,5.548848,0,0,OVO:SA:CTP14372,Europe/Paris,,OVO, +OVO:SP:14373,1,"VILLAGE",45.448911,5.54899,0,0,OVO:SA:CTP14372,Europe/Paris,,OVO, +OVO:SP:14374,1,"LA BUISSE AFIPH",45.330426,5.621006,0,0,OVO:SA:CTP14374,Europe/Paris,,OVO, +OVO:SP:14375,1,"LA BUISSE AFIPH",45.330499,5.620922,0,0,OVO:SA:CTP14374,Europe/Paris,,OVO, +OVO:SP:14376,1,"LA BUISSE LE GAY",45.33148,5.602421,0,0,OVO:SA:CTP14376,Europe/Paris,,OVO, +OVO:SP:14377,1,"LA BUISSE LE GAY",45.331491,5.60209,0,0,OVO:SA:CTP14376,Europe/Paris,,OVO, +OVO:SP:14378,1,"LA BUISSE ECOLES",45.333731,5.619229,0,0,OVO:SA:CTP14378,Europe/Paris,,OVO, +OVO:SP:14379,1,"LA BUISSE ECOLES",45.333706,5.619287,0,0,OVO:SA:CTP14378,Europe/Paris,,OVO, +OVO:SP:14380,1,"LA BUISSE CHEMIN DU GAY",45.331812,5.607576,0,0,OVO:SA:CTP14380,Europe/Paris,,OVO, +OVO:SP:14381,1,"LA BUISSE CHEMIN DU GAY",45.33177,5.607489,0,0,OVO:SA:CTP14380,Europe/Paris,,OVO, +OVO:SP:14382,1,"LA BUISSE GRAND CHAMP",45.34108,5.609107,0,0,OVO:SA:CTP14382,Europe/Paris,,OVO, +OVO:SP:14383,1,"LA BUISSE LE PANSU",45.341784,5.606104,0,0,OVO:SA:CTP14383,Europe/Paris,,OVO, +OVO:SP:14386,1,"PLACE DU MARCHE",45.428515,5.514308,0,0,OVO:SA:CTP14386,Europe/Paris,,OVO, +OVO:SP:14387,1,"PLACE DU MARCHE",45.428938,5.514233,0,0,OVO:SA:CTP14386,Europe/Paris,,OVO, +OVO:SP:14392,1,"PLACE",45.34343,5.527469,0,0,OVO:SA:CTP14392,Europe/Paris,,OVO, +OVO:SP:14393,1,"PLACE",45.343506,5.527441,0,0,OVO:SA:CTP14392,Europe/Paris,,OVO, +OVO:SP:14394,1,"CLERMONT",45.420902,5.540292,0,0,OVO:SA:CTP14394,Europe/Paris,,OVO, +OVO:SP:14395,1,"CLERMONT",45.42123,5.540449,0,0,OVO:SA:CTP14394,Europe/Paris,,OVO, +OVO:SP:14396,1,"GUILLETIERE",45.432045,5.565599,0,0,OVO:SA:CTP14396,Europe/Paris,,OVO, +OVO:SP:14397,1,"GUILLETIERE",45.432208,5.565533,0,0,OVO:SA:CTP14396,Europe/Paris,,OVO, +OVO:SP:14398,1,"GARANGERE",45.415423,5.542097,0,0,OVO:SA:CTP14398,Europe/Paris,,OVO, +OVO:SP:14399,1,"GARANGERE",45.415501,5.542235,0,0,OVO:SA:CTP14398,Europe/Paris,,OVO, +OVO:SP:14400,1,"TOUR CLERMONT",45.421761,5.533435,0,0,OVO:SA:CTP14400,Europe/Paris,,OVO, +OVO:SP:14401,1,"TOUR CLERMONT",45.421805,5.533257,0,0,OVO:SA:CTP14400,Europe/Paris,,OVO, +OVO:SP:14402,1,"BEAUREGARD",45.35856,5.626249,0,0,OVO:SA:CTP14402,Europe/Paris,,OVO, +OVO:SP:14403,1,"BEAUREGARD",45.358587,5.626329,0,0,OVO:SA:CTP14402,Europe/Paris,,OVO, +OVO:SP:14404,1,"MFR DALMASSIERE",45.359211,5.6068,0,0,OVO:SA:CTP14404,Europe/Paris,,OVO, +OVO:SP:14405,1,"MFR DALMASSIERE",45.358932,5.607027,0,0,OVO:SA:CTP14404,Europe/Paris,,OVO, +OVO:SP:14408,1,"CH DE LA GRANDE SURE",45.350736,5.607286,0,0,OVO:SA:CTP14408,Europe/Paris,,OVO, +OVO:SP:14409,1,"NEYROUD",45.349396,5.623067,0,0,OVO:SA:CTP14409,Europe/Paris,,OVO, +OVO:SP:14410,1,"NEYROUD",45.349267,5.623113,0,0,OVO:SA:CTP14409,Europe/Paris,,OVO, +OVO:SP:14411,1,"COLLEGE PLAN MENU",45.351101,5.604019,0,0,OVO:SA:CTP14411,Europe/Paris,,OVO, +OVO:SP:14414,1,"ECOCITE",45.361617,5.604522,0,0,OVO:SA:CTP14414,Europe/Paris,,OVO, +OVO:SP:14415,1,"ECOCITE",45.36135,5.604689,0,0,OVO:SA:CTP14414,Europe/Paris,,OVO, +OVO:SP:14416,1,"ECOLE DU BERARD",45.35229,5.605753,0,0,OVO:SA:CTP245,Europe/Paris,,OVO, +OVO:SP:14417,1,"MAISON DE RETRAITE",45.352227,5.614217,0,0,OVO:SA:CTP14417,Europe/Paris,,OVO, +OVO:SP:14418,1,"MAISON DE RETRAITE",45.352168,5.614153,0,0,OVO:SA:CTP14417,Europe/Paris,,OVO, +OVO:SP:14419,1,"HOPITAL",45.352396,5.611854,0,0,OVO:SA:CTP14419,Europe/Paris,,OVO, +OVO:SP:14424,1,"TIVOLIERE",45.366997,5.618439,0,0,OVO:SA:CTP14424,Europe/Paris,,OVO, +OVO:SP:14425,1,"BARTHELON",45.35642,5.630397,0,0,OVO:SA:CTP14425,Europe/Paris,,OVO, +OVO:SP:14426,1,"BARTHELON",45.356582,5.630503,0,0,OVO:SA:CTP14425,Europe/Paris,,OVO, +OVO:SP:14427,1,"LAVOIR DU NEYROUD",45.347369,5.623083,0,0,OVO:SA:CTP14427,Europe/Paris,,OVO, +OVO:SP:14428,1,"LAVOIR DU NEYROUD",45.347435,5.623109,0,0,OVO:SA:CTP14427,Europe/Paris,,OVO, +OVO:SP:14430,1,"BARRIOZ",45.366133,5.613722,0,0,OVO:SA:CTP14430,Europe/Paris,,OVO, +OVO:SP:14431,1,"LE BRET",45.345493,5.632201,0,0,OVO:SA:CTP14431,Europe/Paris,,OVO, +OVO:SP:14432,1,"LE BRET",45.345239,5.632268,0,0,OVO:SA:CTP14431,Europe/Paris,,OVO, +OVO:SP:14433,1,"MOLLARD",45.360354,5.626001,0,0,OVO:SA:CTP14433,Europe/Paris,,OVO, +OVO:SP:14434,1,"MOLLARD",45.360141,5.62684,0,0,OVO:SA:CTP14433,Europe/Paris,,OVO, +OVO:SP:14435,1,"PILET",45.3646,5.613388,0,0,OVO:SA:CTP14435,Europe/Paris,,OVO, +OVO:SP:14436,1,"PILET",45.364519,5.613402,0,0,OVO:SA:CTP14435,Europe/Paris,,OVO, +OVO:SP:14437,1,"MAIRIE",45.354625,5.612879,0,0,OVO:SA:CTP14437,Europe/Paris,,OVO, +OVO:SP:14440,1,"ORGEOISE",45.354207,5.611752,0,0,OVO:SA:CTP14440,Europe/Paris,,OVO, +OVO:SP:14441,1,"PL DU 19 MARS 1962",45.354155,5.60767,0,0,OVO:SA:CTP14441,Europe/Paris,,OVO, +OVO:SP:14443,1,"ROUTE DE ST JEAN",45.355979,5.610201,0,0,OVO:SA:CTP14443,Europe/Paris,,OVO, +OVO:SP:14446,1,"ROUTE DE LA BUISSE",45.353283,5.608,0,0,OVO:SA:CTP14446,Europe/Paris,,OVO, +OVO:SP:14448,1,"RUE DU 11 NOV 1918",45.352695,5.605604,0,0,OVO:SA:CTP14448,Europe/Paris,,OVO, +OVO:SP:14451,1,"ROUTE DES GORGES",45.367043,5.621029,0,0,OVO:SA:CTP14451,Europe/Paris,,OVO, +OVO:SP:14452,1,"COTE D AINAN",45.44189,5.616565,0,0,OVO:SA:CTP14452,Europe/Paris,,OVO, +OVO:SP:14453,1,"COTE D AINAN",45.442069,5.617042,0,0,OVO:SA:CTP14452,Europe/Paris,,OVO, +OVO:SP:14454,1,"BOUTIERE",45.426568,5.650253,0,0,OVO:SA:CTP14454,Europe/Paris,,OVO, +OVO:SP:14455,1,"BOUTIERE",45.426452,5.650355,0,0,OVO:SA:CTP14454,Europe/Paris,,OVO, +OVO:SP:14456,1,"LAYAT BAS",45.430323,5.641351,0,0,OVO:SA:CTP14456,Europe/Paris,,OVO, +OVO:SP:14457,1,"LAYAT BAS",45.430343,5.640952,0,0,OVO:SA:CTP14456,Europe/Paris,,OVO, +OVO:SP:14460,1,"MERLIETTE",45.438336,5.672794,0,0,OVO:SA:CTP14460,Europe/Paris,,OVO, +OVO:SP:14461,1,"MERLIETTE",45.438508,5.672751,0,0,OVO:SA:CTP14460,Europe/Paris,,OVO, +OVO:SP:14464,1,"REYSSABOT",45.42826,5.648617,0,0,OVO:SA:CTP14464,Europe/Paris,,OVO, +OVO:SP:14465,1,"REYSSABOT",45.42849,5.648376,0,0,OVO:SA:CTP14464,Europe/Paris,,OVO, +OVO:SP:14466,1,"ST SIXTE",45.428882,5.629235,0,0,OVO:SA:CTP14466,Europe/Paris,,OVO, +OVO:SP:14467,1,"ST SIXTE",45.428726,5.630186,0,0,OVO:SA:CTP14466,Europe/Paris,,OVO, +OVO:SP:14468,1,"VILLAGE",45.444717,5.663373,0,0,OVO:SA:CTP248,Europe/Paris,,OVO, +OVO:SP:14469,1,"MIR.lesECHELLES LE VERNEY",45.412865,5.686768,0,0,OVO:SA:CTP14469,Europe/Paris,,OVO, +OVO:SP:14470,1,"MIR.lesECHELLES LE VERNEY",45.412897,5.686742,0,0,OVO:SA:CTP14469,Europe/Paris,,OVO, +OVO:SP:14471,1,"MIR.lesECHELLES LES EMPTAZ",45.421755,5.700766,0,0,OVO:SA:CTP14471,Europe/Paris,,OVO, +OVO:SP:14472,1,"MIR.lesECHELLES LES EMPTAZ",45.421717,5.700794,0,0,OVO:SA:CTP14471,Europe/Paris,,OVO, +OVO:SP:14473,1,"MIR.lesECHELLES ST ROCH",45.413724,5.69173,0,0,OVO:SA:CTP14473,Europe/Paris,,OVO, +OVO:SP:14474,1,"MIR.lesECHELLES ST ROCH",45.413751,5.691668,0,0,OVO:SA:CTP14473,Europe/Paris,,OVO, +OVO:SP:14481,1,"POMPIERS",45.32671,5.570911,0,0,OVO:SA:CTP6226,Europe/Paris,,OVO, +OVO:SP:14484,1,"CAMPALOUD",45.333004,5.541377,0,0,OVO:SA:CTP14484,Europe/Paris,,OVO, +OVO:SP:14485,1,"CAMPALOUD",45.332992,5.541556,0,0,OVO:SA:CTP14484,Europe/Paris,,OVO, +OVO:SP:14491,1,"CHAMPFEUILLET",45.341488,5.561245,0,0,OVO:SA:CTP14491,Europe/Paris,,OVO, +OVO:SP:14492,1,"LES VIOLETTES",45.328332,5.560246,0,0,OVO:SA:CTP14492,Europe/Paris,,OVO, +OVO:SP:14493,1,"LES VIOLETTES",45.328287,5.560477,0,0,OVO:SA:CTP14492,Europe/Paris,,OVO, +OVO:SP:14496,1,"COLLEGE VERGERON",45.321068,5.566201,0,0,OVO:SA:CTP14496,Europe/Paris,,OVO, +OVO:SP:14497,1,"COTE DES FILLES",45.343923,5.557498,0,0,OVO:SA:CTP14497,Europe/Paris,,OVO, +OVO:SP:14498,1,"BOIS DU FOUR",45.343802,5.561065,0,0,OVO:SA:CTP14498,Europe/Paris,,OVO, +OVO:SP:14499,1,"LE PAVILLET",45.345125,5.555417,0,0,OVO:SA:CTP14499,Europe/Paris,,OVO, +OVO:SP:14500,1,"LES BALMES",45.32497,5.550368,0,0,OVO:SA:CTP14500,Europe/Paris,,OVO, +OVO:SP:14501,1,"LES BALMES",45.325392,5.551122,0,0,OVO:SA:CTP14500,Europe/Paris,,OVO, +OVO:SP:14502,1,"CHARTREUX",45.343736,5.563509,0,0,OVO:SA:CTP14502,Europe/Paris,,OVO, +OVO:SP:14503,1,"CHARTREUX",45.343401,5.563041,0,0,OVO:SA:CTP14502,Europe/Paris,,OVO, +OVO:SP:14504,1,"ECHEVINS",45.327806,5.566375,0,0,OVO:SA:CTP14504,Europe/Paris,,OVO, +OVO:SP:14507,1,"LESARDIERE",45.342282,5.550042,0,0,OVO:SA:CTP14507,Europe/Paris,,OVO, +OVO:SP:14508,1,"LYCEE P BEGHIN",45.320673,5.588659,0,0,OVO:SA:CTP14508,Europe/Paris,,OVO, +OVO:SP:14509,1,"LYCEE P BEGHIN",45.320598,5.589512,0,0,OVO:SA:CTP14508,Europe/Paris,,OVO, +OVO:SP:14510,1,"MANGUELY",45.332357,5.544622,0,0,OVO:SA:CTP14510,Europe/Paris,,OVO, +OVO:SP:14511,1,"MANGUELY",45.33225,5.544708,0,0,OVO:SA:CTP14510,Europe/Paris,,OVO, +OVO:SP:14512,1,"MEDIATHEQUE",45.325504,5.564603,0,0,OVO:SA:CTP14512,Europe/Paris,,OVO, +OVO:SP:14513,1,"NOVESPACE POMMARIN",45.321073,5.591792,0,0,OVO:SA:CTP14513,Europe/Paris,,OVO, +OVO:SP:14514,1,"NOVESPACE POMMARIN",45.320962,5.591836,0,0,OVO:SA:CTP14513,Europe/Paris,,OVO, +OVO:SP:14515,1,"PETIT CHAMP FREY",45.327995,5.552712,0,0,OVO:SA:CTP14515,Europe/Paris,,OVO, +OVO:SP:14516,1,"PETIT CHAMP FREY",45.327565,5.553419,0,0,OVO:SA:CTP14515,Europe/Paris,,OVO, +OVO:SP:14517,1,"PETIT CRIEL",45.338166,5.54338,0,0,OVO:SA:CTP14517,Europe/Paris,,OVO, +OVO:SP:14518,1,"PETIT CRIEL",45.338465,5.544537,0,0,OVO:SA:CTP14517,Europe/Paris,,OVO, +OVO:SP:14523,1,"RI D OLON",45.334594,5.539554,0,0,OVO:SA:CTP14523,Europe/Paris,,OVO, +OVO:SP:14524,1,"RI D OLON",45.334558,5.539419,0,0,OVO:SA:CTP14523,Europe/Paris,,OVO, +OVO:SP:14525,1,"DELLORENZI",45.33087,5.546949,0,0,OVO:SA:CTP14525,Europe/Paris,,OVO, +OVO:SP:14526,1,"DELLORENZI",45.330888,5.546982,0,0,OVO:SA:CTP14525,Europe/Paris,,OVO, +OVO:SP:14536,1,"RUE DE LA COSTE",45.324747,5.570009,0,0,OVO:SA:CTP14536,Europe/Paris,,OVO, +OVO:SP:14537,1,"ESPACE JAIL",45.325243,5.566531,0,0,OVO:SA:CTP14537,Europe/Paris,,OVO, +OVO:SP:14538,1,"OUVRIERS PAPETIERS",45.326255,5.56118,0,0,OVO:SA:CTP14538,Europe/Paris,,OVO, +OVO:SP:14539,1,"RUE DU 8 MAI 1945",45.32714,5.562499,0,0,OVO:SA:CTP14539,Europe/Paris,,OVO, +OVO:SP:14540,1,"COSTE GAZ",45.325022,5.571615,0,0,OVO:SA:CTP14540,Europe/Paris,,OVO, +OVO:SP:14541,1,"COSTE GAZ",45.324949,5.571645,0,0,OVO:SA:CTP14540,Europe/Paris,,OVO, +OVO:SP:14542,1,"LOUIS MOYROUD",45.326161,5.558641,0,0,OVO:SA:CTP14542,Europe/Paris,,OVO, +OVO:SP:14543,1,"LOUIS MOYROUD",45.326209,5.558638,0,0,OVO:SA:CTP14542,Europe/Paris,,OVO, +OVO:SP:14544,1,"THALES LCD",45.316461,5.59433,0,0,OVO:SA:CTP14544,Europe/Paris,,OVO, +OVO:SP:14545,1,"THALES LCD",45.316472,5.594401,0,0,OVO:SA:CTP14544,Europe/Paris,,OVO, +OVO:SP:14546,1,"ECOLE",45.485119,5.589927,0,0,OVO:SA:CTP14546,Europe/Paris,,OVO, +OVO:SP:14547,1,"ECOLE",45.484982,5.589954,0,0,OVO:SA:CTP14546,Europe/Paris,,OVO, +OVO:SP:14548,1,"LAC BLEU",45.468909,5.562027,0,0,OVO:SA:CTP14548,Europe/Paris,,OVO, +OVO:SP:14549,1,"LAC BLEU",45.468741,5.56186,0,0,OVO:SA:CTP14548,Europe/Paris,,OVO, +OVO:SP:14553,1,"LE VERNEY",45.456799,5.545437,0,0,OVO:SA:CTP14553,Europe/Paris,,OVO, +OVO:SP:14554,1,"LE VERNEY",45.4563,5.545135,0,0,OVO:SA:CTP14553,Europe/Paris,,OVO, +OVO:SP:14558,1,"LE PIN BREZIN BOURG",45.470622,5.517222,0,0,OVO:SA:CTP14558,Europe/Paris,,OVO, +OVO:SP:14559,1,"LE PIN BREZIN BOURG",45.470564,5.517434,0,0,OVO:SA:CTP14558,Europe/Paris,,OVO, +OVO:SP:14561,1,"LE PIN CARREFOUR BREZIN",45.471347,5.510199,0,0,OVO:SA:CTP14561,Europe/Paris,,OVO, +OVO:SP:14562,1,"LE PIN CENTRE EQUESTRE",45.466464,5.517234,0,0,OVO:SA:CTP14562,Europe/Paris,,OVO, +OVO:SP:14563,1,"LE PIN CENTRE EQUESTRE",45.466479,5.517304,0,0,OVO:SA:CTP14562,Europe/Paris,,OVO, +OVO:SP:14564,1,"LE PIN LA CUAZ",45.467291,5.508663,0,0,OVO:SA:CTP14564,Europe/Paris,,OVO, +OVO:SP:14565,1,"LE PIN LA CUAZ",45.467239,5.508484,0,0,OVO:SA:CTP14564,Europe/Paris,,OVO, +OVO:SP:14568,1,"LE PIN LES ALLEX",45.457971,5.509321,0,0,OVO:SA:CTP14568,Europe/Paris,,OVO, +OVO:SP:14569,1,"LE PIN LES ALLEX",45.457676,5.508977,0,0,OVO:SA:CTP14568,Europe/Paris,,OVO, +OVO:SP:14570,1,"LE PIN PL SAINT CHRISTOPHE",45.457472,5.505168,0,0,OVO:SA:CTP14570,Europe/Paris,,OVO, +OVO:SP:14571,1,"LE PIN PL SAINT CHRISTOPHE",45.456383,5.505406,0,0,OVO:SA:CTP14570,Europe/Paris,,OVO, +OVO:SP:14572,1,"CHEMIN DU MOULIN",45.365593,5.52031,0,0,OVO:SA:CTP14572,Europe/Paris,,OVO, +OVO:SP:14573,1,"CHEMIN DU MOULIN",45.365512,5.521117,0,0,OVO:SA:CTP14572,Europe/Paris,,OVO, +OVO:SP:14574,1,"HALTE FERROVIAIRE",45.369094,5.534663,0,0,OVO:SA:CTP14574,Europe/Paris,,OVO, +OVO:SP:14575,1,"HALTE FERROVIAIRE",45.368993,5.535103,0,0,OVO:SA:CTP14574,Europe/Paris,,OVO, +OVO:SP:14576,1,"LE BAYARD",45.371358,5.526728,0,0,OVO:SA:CTP14576,Europe/Paris,,OVO, +OVO:SP:14577,1,"LE BAYARD",45.371368,5.526546,0,0,OVO:SA:CTP14576,Europe/Paris,,OVO, +OVO:SP:14578,1,"LE BESSEY",45.361324,5.531062,0,0,OVO:SA:CTP14578,Europe/Paris,,OVO, +OVO:SP:14579,1,"LE CARRET",45.360784,5.518425,0,0,OVO:SA:CTP14579,Europe/Paris,,OVO, +OVO:SP:14580,1,"LE CARRET",45.361004,5.518383,0,0,OVO:SA:CTP14579,Europe/Paris,,OVO, +OVO:SP:14581,1,"LE CARRET TRANSFO",45.361037,5.516464,0,0,OVO:SA:CTP14581,Europe/Paris,,OVO, +OVO:SP:14582,1,"LE CARRET TRANSFO",45.360702,5.516668,0,0,OVO:SA:CTP14581,Europe/Paris,,OVO, +OVO:SP:14583,1,"LE GUICHARD",45.372504,5.524563,0,0,OVO:SA:CTP14583,Europe/Paris,,OVO, +OVO:SP:14584,1,"LE GUICHARD",45.372561,5.524677,0,0,OVO:SA:CTP14583,Europe/Paris,,OVO, +OVO:SP:14585,1,"BAS RIVES",45.349281,5.509847,0,0,OVO:SA:CTP6184,Europe/Paris,,OVO, +OVO:SP:14586,1,"CHARTREUSE",45.357818,5.494215,0,0,OVO:SA:CTP14586,Europe/Paris,,OVO, +OVO:SP:14587,1,"CHARTREUSE",45.357961,5.494246,0,0,OVO:SA:CTP14586,Europe/Paris,,OVO, +OVO:SP:14588,1,"COURBATIERE",45.364094,5.491428,0,0,OVO:SA:CTP14588,Europe/Paris,,OVO, +OVO:SP:14589,1,"COURBATIERE",45.363807,5.491338,0,0,OVO:SA:CTP14588,Europe/Paris,,OVO, +OVO:SP:14591,1,"ABATTOIRS",45.348082,5.494567,0,0,OVO:SA:CTP14591,Europe/Paris,,OVO, +OVO:SP:14592,1,"ABATTOIRS",45.34806,5.49486,0,0,OVO:SA:CTP14591,Europe/Paris,,OVO, +OVO:SP:14593,1,"LEVATEL",45.357146,5.497217,0,0,OVO:SA:CTP14593,Europe/Paris,,OVO, +OVO:SP:14594,1,"MAISON DE RETRAITE",45.354327,5.500496,0,0,OVO:SA:CTP14594,Europe/Paris,,OVO, +OVO:SP:14595,1,"PASTIERES",45.367175,5.491305,0,0,OVO:SA:CTP14595,Europe/Paris,,OVO, +OVO:SP:14596,1,"PASTIERES",45.367074,5.492108,0,0,OVO:SA:CTP14595,Europe/Paris,,OVO, +OVO:SP:14597,1,"PASTIERES",45.36707,5.491979,0,0,OVO:SA:CTP14595,Europe/Paris,,OVO, +OVO:SP:14599,1,"PLACE X BROCHIER",45.34929,5.503775,0,0,OVO:SA:CTP14599,Europe/Paris,,OVO, +OVO:SP:14600,1,"PLACE X BROCHIER",45.349271,5.503916,0,0,OVO:SA:CTP14599,Europe/Paris,,OVO, +OVO:SP:14606,1,"SADI CARNOT",45.34882,5.498238,0,0,OVO:SA:CTP14606,Europe/Paris,,OVO, +OVO:SP:14607,1,"SADI CARNOT",45.348818,5.498932,0,0,OVO:SA:CTP14606,Europe/Paris,,OVO, +OVO:SP:14608,1,"ST AUPRE BEC FIN",45.403462,5.668271,0,0,OVO:SA:CTP14608,Europe/Paris,,OVO, +OVO:SP:14609,1,"ST AUPRE BEC FIN",45.403394,5.668352,0,0,OVO:SA:CTP14608,Europe/Paris,,OVO, +OVO:SP:14610,1,"ST AUPRE CHAMPTORAZ",45.402805,5.671108,0,0,OVO:SA:CTP14610,Europe/Paris,,OVO, +OVO:SP:14611,1,"ST AUPRE CHAMPTORAZ",45.402983,5.671105,0,0,OVO:SA:CTP14610,Europe/Paris,,OVO, +OVO:SP:14613,1,"ST AUPRE ROSSETIERE",45.392239,5.650404,0,0,OVO:SA:CTP14613,Europe/Paris,,OVO, +OVO:SP:14614,1,"ST AUPRE ROSSETIERE",45.392273,5.650268,0,0,OVO:SA:CTP14613,Europe/Paris,,OVO, +OVO:SP:14615,1,"ST AUPRE BARREAU",45.403275,5.651542,0,0,OVO:SA:CTP14615,Europe/Paris,,OVO, +OVO:SP:14616,1,"ST AUPRE BARREAU",45.403239,5.651612,0,0,OVO:SA:CTP14615,Europe/Paris,,OVO, +OVO:SP:14617,1,"ST AUPRE CHEVALLIER",45.405865,5.669898,0,0,OVO:SA:CTP14617,Europe/Paris,,OVO, +OVO:SP:14618,1,"ST AUPRE CHEVALLIER",45.40622,5.670066,0,0,OVO:SA:CTP14617,Europe/Paris,,OVO, +OVO:SP:14619,1,"ST AUPRE CHEVILLARD",45.415775,5.655278,0,0,OVO:SA:CTP14619,Europe/Paris,,OVO, +OVO:SP:14620,1,"ST AUPRE CHEVILLARD",45.41566,5.655419,0,0,OVO:SA:CTP14619,Europe/Paris,,OVO, +OVO:SP:14621,1,"ST AUPRE COLOMBIER",45.397323,5.648762,0,0,OVO:SA:CTP14621,Europe/Paris,,OVO, +OVO:SP:14622,1,"ST AUPRE COLOMBIER",45.397565,5.648994,0,0,OVO:SA:CTP14621,Europe/Paris,,OVO, +OVO:SP:14623,1,"ST AUPRE DELPHIN",45.409392,5.655856,0,0,OVO:SA:CTP14623,Europe/Paris,,OVO, +OVO:SP:14624,1,"ST AUPRE DELPHIN",45.409372,5.655907,0,0,OVO:SA:CTP14623,Europe/Paris,,OVO, +OVO:SP:14625,1,"ST AUPRE LE GRAND CHEMIN",45.397628,5.66482,0,0,OVO:SA:CTP14625,Europe/Paris,,OVO, +OVO:SP:14626,1,"ST AUPRE LE GRAND CHEMIN",45.398107,5.664047,0,0,OVO:SA:CTP14625,Europe/Paris,,OVO, +OVO:SP:14627,1,"ST AUPRE GRAND VIVIER",45.412914,5.64894,0,0,OVO:SA:CTP14627,Europe/Paris,,OVO, +OVO:SP:14628,1,"ST AUPRE MARGARON",45.412046,5.658478,0,0,OVO:SA:CTP14628,Europe/Paris,,OVO, +OVO:SP:14629,1,"ST AUPRE MARGARON",45.412387,5.658322,0,0,OVO:SA:CTP14628,Europe/Paris,,OVO, +OVO:SP:14630,1,"ST AUPRE VILLAGE",45.398875,5.670836,0,0,OVO:SA:CTP14630,Europe/Paris,,OVO, +OVO:SP:14631,1,"ST AUPRE VILLAGE",45.399066,5.670689,0,0,OVO:SA:CTP14630,Europe/Paris,,OVO, +OVO:SP:14632,1,"ST AUPRE TURE",45.410709,5.673729,0,0,OVO:SA:CTP14632,Europe/Paris,,OVO, +OVO:SP:14633,1,"ST AUPRE TURE",45.410761,5.673848,0,0,OVO:SA:CTP14632,Europe/Paris,,OVO, +OVO:SP:14635,1,"ST BLAISE DU BU CIMETIERE",45.374643,5.515923,0,0,OVO:SA:CTP14635,Europe/Paris,,OVO, +OVO:SP:14636,1,"ST BLAISE DU BU CIMETIERE",45.374565,5.515957,0,0,OVO:SA:CTP14635,Europe/Paris,,OVO, +OVO:SP:14637,1,"ST BLAISE DU BU DEVEZ",45.372205,5.521572,0,0,OVO:SA:CTP14637,Europe/Paris,,OVO, +OVO:SP:14639,1,"ST BLAISE DU BU PETIT VOYE",45.382245,5.51721,0,0,OVO:SA:CTP14639,Europe/Paris,,OVO, +OVO:SP:14640,1,"ST BLAISE DU BU PETIT VOYE",45.382119,5.517058,0,0,OVO:SA:CTP14639,Europe/Paris,,OVO, +OVO:SP:14643,1,"ST BLAISE DU BU MAIRIE",45.37626,5.516825,0,0,OVO:SA:CTP14643,Europe/Paris,,OVO, +OVO:SP:14644,1,"ST BLAISE DU BU MAIRIE",45.376541,5.517004,0,0,OVO:SA:CTP14643,Europe/Paris,,OVO, +OVO:SP:14645,1,"ST BLAISE DU BU RTE DE LA MURETTE",45.378306,5.520929,0,0,OVO:SA:CTP14645,Europe/Paris,,OVO, +OVO:SP:14646,1,"ST BLAISE DU BU RTE DE LA MURETTE",45.37837,5.520902,0,0,OVO:SA:CTP14645,Europe/Paris,,OVO, +OVO:SP:14647,1,"ST BUEIL LE SATRE",45.470464,5.686171,0,0,OVO:SA:CTP14647,Europe/Paris,,OVO, +OVO:SP:14648,1,"ST BUEIL LE SATRE",45.470411,5.686275,0,0,OVO:SA:CTP14647,Europe/Paris,,OVO, +OVO:SP:14649,1,"ST CASSIEN LE SAPIN",45.36662,5.549138,0,0,OVO:SA:CTP14649,Europe/Paris,,OVO, +OVO:SP:14650,1,"ST CASSIEN LE SAPIN",45.366856,5.54792,0,0,OVO:SA:CTP14649,Europe/Paris,,OVO, +OVO:SP:14651,1,"ST E.DE CROSSEY CARREF GD VIVIER",45.391157,5.647272,0,0,OVO:SA:CTP14651,Europe/Paris,,OVO, +OVO:SP:14654,1,"ST E.DE CROSSEY LE PARIS",45.383246,5.612562,0,0,OVO:SA:CTP14654,Europe/Paris,,OVO, +OVO:SP:14655,1,"ST E.DE CROSSEY LE PARIS",45.383156,5.612935,0,0,OVO:SA:CTP14654,Europe/Paris,,OVO, +OVO:SP:14656,1,"ST E.DE CROSSEY COUCHONNIERE",45.372207,5.650437,0,0,OVO:SA:CTP14656,Europe/Paris,,OVO, +OVO:SP:14657,1,"ST E.DE CROSSEY COUCHONNIERE",45.371846,5.649339,0,0,OVO:SA:CTP14656,Europe/Paris,,OVO, +OVO:SP:14658,1,"ST E.DE CROSSEY GATELIERE",45.389723,5.625963,0,0,OVO:SA:CTP14658,Europe/Paris,,OVO, +OVO:SP:14659,1,"ST E.DE CROSSEY GATELIERE",45.389725,5.625788,0,0,OVO:SA:CTP14658,Europe/Paris,,OVO, +OVO:SP:14660,1,"ST E.DE CROSSEY CHARRAT",45.382374,5.652463,0,0,OVO:SA:CTP14660,Europe/Paris,,OVO, +OVO:SP:14661,1,"ST E.DE CROSSEY CHARRAT",45.382569,5.652633,0,0,OVO:SA:CTP14660,Europe/Paris,,OVO, +OVO:SP:14662,1,"ST E.DE CROSSEY LE PERRIN",45.387008,5.63197,0,0,OVO:SA:CTP14662,Europe/Paris,,OVO, +OVO:SP:14663,1,"ST E.DE CROSSEY LE PERRIN",45.38725,5.631734,0,0,OVO:SA:CTP14662,Europe/Paris,,OVO, +OVO:SP:14664,1,"ST E.DE CROSSEY LE PICARD",45.375756,5.656097,0,0,OVO:SA:CTP14664,Europe/Paris,,OVO, +OVO:SP:14665,1,"ST E.DE CROSSEY LE PICARD",45.375651,5.656127,0,0,OVO:SA:CTP14664,Europe/Paris,,OVO, +OVO:SP:14666,1,"ST E.DE CROSSEY LE VIVIER",45.380599,5.62886,0,0,OVO:SA:CTP14666,Europe/Paris,,OVO, +OVO:SP:14667,1,"ST E.DE CROSSEY LE VIVIER",45.380573,5.628892,0,0,OVO:SA:CTP14666,Europe/Paris,,OVO, +OVO:SP:14668,1,"ST E.DE CROSSEY LES REYNAUDS",45.38377,5.636623,0,0,OVO:SA:CTP14668,Europe/Paris,,OVO, +OVO:SP:14669,1,"ST E.DE CROSSEY LES REYNAUDS",45.384105,5.636228,0,0,OVO:SA:CTP14668,Europe/Paris,,OVO, +OVO:SP:14670,1,"ST E.DE CROSSEY LES ROUX",45.368076,5.645177,0,0,OVO:SA:CTP14670,Europe/Paris,,OVO, +OVO:SP:14671,1,"ST E.DE CROSSEY LES ROUX",45.368496,5.645535,0,0,OVO:SA:CTP14670,Europe/Paris,,OVO, +OVO:SP:14672,1,"ST E.DE CROSSEY LES VACHONNES",45.382873,5.645346,0,0,OVO:SA:CTP14672,Europe/Paris,,OVO, +OVO:SP:14676,1,"ST E.DE CROSSEY POMPIERS",45.379062,5.641939,0,0,OVO:SA:CTP14676,Europe/Paris,,OVO, +OVO:SP:14677,1,"ST E.DE CROSSEY POMPIERS",45.379995,5.642081,0,0,OVO:SA:CTP14676,Europe/Paris,,OVO, +OVO:SP:14678,1,"ST E.DE CROSSEY TOLVON",45.372403,5.619141,0,0,OVO:SA:CTP14678,Europe/Paris,,OVO, +OVO:SP:14679,1,"ST E.DE CROSSEY TOLVON",45.372422,5.619223,0,0,OVO:SA:CTP14678,Europe/Paris,,OVO, +OVO:SP:14680,1,"ST E.DE CROSSEY LES GROS",45.374755,5.614356,0,0,OVO:SA:CTP14680,Europe/Paris,,OVO, +OVO:SP:14681,1,"ST E.DE CROSSEY LES GROS",45.374682,5.614399,0,0,OVO:SA:CTP14680,Europe/Paris,,OVO, +OVO:SP:14682,1,"StG.enVALDAINE BOULONGEAT",45.456958,5.654796,0,0,OVO:SA:CTP14682,Europe/Paris,,OVO, +OVO:SP:14683,1,"StG.enVALDAINE BOULONGEAT",45.456958,5.654708,0,0,OVO:SA:CTP14682,Europe/Paris,,OVO, +OVO:SP:14684,1,"StG.enVALDAINE CONSUOZ ABRIBUS",45.452117,5.61105,0,0,OVO:SA:CTP14684,Europe/Paris,,OVO, +OVO:SP:14685,1,"StG.enVALDAINE CONSUOZ",45.457048,5.619887,0,0,OVO:SA:CTP14685,Europe/Paris,,OVO, +OVO:SP:14686,1,"StG.enVALDAINE CONSUOZ",45.457086,5.619954,0,0,OVO:SA:CTP14685,Europe/Paris,,OVO, +OVO:SP:14687,1,"StG.enVALDAINE LAMBERTIERE",45.451312,5.632686,0,0,OVO:SA:CTP14687,Europe/Paris,,OVO, +OVO:SP:14688,1,"StG.enVALDAINE PLAMPALAIS",45.4574,5.632429,0,0,OVO:SA:CTP14688,Europe/Paris,,OVO, +OVO:SP:14689,1,"StG.enVALDAINE PLAMPALAIS",45.45727,5.632256,0,0,OVO:SA:CTP14688,Europe/Paris,,OVO, +OVO:SP:14690,1,"StG.enVALDAINE LA COMBE",45.455164,5.636245,0,0,OVO:SA:CTP14690,Europe/Paris,,OVO, +OVO:SP:14693,1,"StG.enVALDAINE LAREMBERT",45.454843,5.61802,0,0,OVO:SA:CTP14693,Europe/Paris,,OVO, +OVO:SP:14696,1,"StG.enVALDAINE LE FALQUE",45.482649,5.634075,0,0,OVO:SA:CTP14696,Europe/Paris,,OVO, +OVO:SP:14697,1,"StG.enVALDAINE LE GROSSET",45.473023,5.647759,0,0,OVO:SA:CTP14697,Europe/Paris,,OVO, +OVO:SP:14698,1,"StG.enVALDAINE LE MOLLARD",45.470863,5.63672,0,0,OVO:SA:CTP14698,Europe/Paris,,OVO, +OVO:SP:14701,1,"StG.enVALDAINE LES PERRINS",45.466348,5.638442,0,0,OVO:SA:CTP14701,Europe/Paris,,OVO, +OVO:SP:14702,1,"StG.enVALDAINE CHAFFARDIERE",45.454552,5.637194,0,0,OVO:SA:CTP14702,Europe/Paris,,OVO, +OVO:SP:14703,1,"StG.enVALDAINE HOPITAL",45.459897,5.631928,0,0,OVO:SA:CTP14703,Europe/Paris,,OVO, +OVO:SP:14704,1,"StG.enVALDAINE HOPITAL",45.459886,5.631757,0,0,OVO:SA:CTP14703,Europe/Paris,,OVO, +OVO:SP:14705,1,"ST J.DE MOIRANS TRINCON",45.346233,5.586787,0,0,OVO:SA:CTP14705,Europe/Paris,,OVO, +OVO:SP:14706,1,"ST J.DE MOIRANS TRINCON",45.346624,5.587998,0,0,OVO:SA:CTP14705,Europe/Paris,,OVO, +OVO:SP:14707,1,"ST J.DE MOIRANS COLOMBINIERE",45.33546,5.57118,0,0,OVO:SA:CTP14707,Europe/Paris,,OVO, +OVO:SP:14708,1,"ST J.DE MOIRANS COLOMB AUTOROUTE",45.337747,5.575932,0,0,OVO:SA:CTP14708,Europe/Paris,,OVO, +OVO:SP:14709,1,"ST J.DE MOIRANS COLOMB AUTOROUTE",45.337233,5.575567,0,0,OVO:SA:CTP14708,Europe/Paris,,OVO, +OVO:SP:14710,1,"ST J.DE MOIRANS PATINIERE",45.345434,5.571586,0,0,OVO:SA:CTP14710,Europe/Paris,,OVO, +OVO:SP:14711,1,"ST J.DE MOIRANS PATINIERE",45.345405,5.571295,0,0,OVO:SA:CTP14710,Europe/Paris,,OVO, +OVO:SP:14712,1,"ST J.DE MOIRANS L ARCHAT",45.327805,5.585035,0,0,OVO:SA:CTP14712,Europe/Paris,,OVO, +OVO:SP:14713,1,"ST J.DE MOIRANS L ARCHAT",45.326942,5.585708,0,0,OVO:SA:CTP14712,Europe/Paris,,OVO, +OVO:SP:14716,1,"ST J.DE MOIRANS MAISON POUR TOUS",45.340867,5.579939,0,0,OVO:SA:CTP14716,Europe/Paris,,OVO, +OVO:SP:14717,1,"ST J.DE MOIRANS MAISON POUR TOUS",45.34086,5.58018,0,0,OVO:SA:CTP14716,Europe/Paris,,OVO, +OVO:SP:14718,1,"ST J.DE MOIRANS MARCHE AUX CERISES",45.343188,5.581573,0,0,OVO:SA:CTP14718,Europe/Paris,,OVO, +OVO:SP:14719,1,"ST J.DE MOIRANS MARCHE AUX CERISES",45.343003,5.581612,0,0,OVO:SA:CTP14718,Europe/Paris,,OVO, +OVO:SP:14720,1,"ST J.DE MOIRANS PLACE",45.341725,5.582313,0,0,OVO:SA:CTP14720,Europe/Paris,,OVO, +OVO:SP:14721,1,"ST J.DE MOIRANS ROSSIGNOL",45.319058,5.604076,0,0,OVO:SA:CTP14721,Europe/Paris,,OVO, +OVO:SP:14722,1,"ST J.DE MOIRANS LES TISSEUSES",45.34456,5.574058,0,0,OVO:SA:CTP14722,Europe/Paris,,OVO, +OVO:SP:14723,1,"ST J.DE MOIRANS LES TISSEUSES",45.344678,5.573494,0,0,OVO:SA:CTP14722,Europe/Paris,,OVO, +OVO:SP:14724,1,"ST J.DE RATZ CENTRE PNEUMOLOGIE",45.346713,5.658247,0,0,OVO:SA:CTP14724,Europe/Paris,,OVO, +OVO:SP:14727,1,"ST J.DE RATZ LE PLAN",45.352628,5.643532,0,0,OVO:SA:CTP14727,Europe/Paris,,OVO, +OVO:SP:14728,1,"ST J.DE RATZ LE PLAN",45.352746,5.643583,0,0,OVO:SA:CTP14727,Europe/Paris,,OVO, +OVO:SP:14729,1,"ST J.DE RATZ LE PUITS",45.356322,5.654828,0,0,OVO:SA:CTP14729,Europe/Paris,,OVO, +OVO:SP:14730,1,"ST J.DE RATZ LE PUITS",45.356316,5.654527,0,0,OVO:SA:CTP14729,Europe/Paris,,OVO, +OVO:SP:14731,1,"StN.DE MACHERIN CHATELONNIERE",45.410431,5.602656,0,0,OVO:SA:CTP14731,Europe/Paris,,OVO, +OVO:SP:14732,1,"StN.DE MACHERIN CHATELONNIERE",45.410498,5.602696,0,0,OVO:SA:CTP14731,Europe/Paris,,OVO, +OVO:SP:14733,1,"StN.DE MACHERIN MELISSARD",45.405598,5.602983,0,0,OVO:SA:CTP14733,Europe/Paris,,OVO, +OVO:SP:14734,1,"StN.DE MACHERIN MELISSARD",45.405643,5.603063,0,0,OVO:SA:CTP14733,Europe/Paris,,OVO, +OVO:SP:14735,1,"StN.DE MACHERIN HAUTEFORT",45.405497,5.608662,0,0,OVO:SA:CTP14735,Europe/Paris,,OVO, +OVO:SP:14736,1,"StN.DE MACHERIN LE PILON",45.40027,5.592772,0,0,OVO:SA:CTP14736,Europe/Paris,,OVO, +OVO:SP:14737,1,"StN.DE MACHERIN LE PILON",45.400167,5.592598,0,0,OVO:SA:CTP14736,Europe/Paris,,OVO, +OVO:SP:14738,1,"StN.DE MACHERIN LES PRAIRIES",45.400337,5.602363,0,0,OVO:SA:CTP14738,Europe/Paris,,OVO, +OVO:SP:14739,1,"StN.DE MACHERIN LES PRAIRIES",45.400403,5.602467,0,0,OVO:SA:CTP14738,Europe/Paris,,OVO, +OVO:SP:14740,1,"StN.DE MACHERIN L USINE",45.396258,5.613464,0,0,OVO:SA:CTP14740,Europe/Paris,,OVO, +OVO:SP:14741,1,"StN.DE MACHERIN L USINE",45.395993,5.613561,0,0,OVO:SA:CTP14740,Europe/Paris,,OVO, +OVO:SP:14742,1,"StN.DE MACHERIN MACHERIN",45.40313,5.595952,0,0,OVO:SA:CTP14742,Europe/Paris,,OVO, +OVO:SP:14743,1,"StN.DE MACHERIN MACHERIN",45.403153,5.596086,0,0,OVO:SA:CTP14742,Europe/Paris,,OVO, +OVO:SP:14744,1,"StN.DE MACHERIN PLACE",45.398546,5.607022,0,0,OVO:SA:CTP14744,Europe/Paris,,OVO, +OVO:SP:14747,1,"JARDIN DES ARTS",45.300526,5.487601,0,0,OVO:SA:CTP14747,Europe/Paris,,OVO, +OVO:SP:14750,1,"LE MANGUELY",45.273552,5.508586,0,0,OVO:SA:CTP14750,Europe/Paris,,OVO, +OVO:SP:14751,1,"LE MANGUELY",45.273487,5.508549,0,0,OVO:SA:CTP14750,Europe/Paris,,OVO, +OVO:SP:14752,1,"LE PARADIS",45.296783,5.477519,0,0,OVO:SA:CTP14752,Europe/Paris,,OVO, +OVO:SP:14753,1,"LE PORT",45.287599,5.524797,0,0,OVO:SA:CTP14753,Europe/Paris,,OVO, +OVO:SP:14754,1,"LE PORT",45.287752,5.524884,0,0,OVO:SA:CTP14753,Europe/Paris,,OVO, +OVO:SP:14757,1,"LE VERT",45.263202,5.509235,0,0,OVO:SA:CTP14757,Europe/Paris,,OVO, +OVO:SP:14758,1,"LE VERT",45.263333,5.509337,0,0,OVO:SA:CTP14757,Europe/Paris,,OVO, +OVO:SP:14759,1,"LES MASSONS",45.283855,5.521082,0,0,OVO:SA:CTP14759,Europe/Paris,,OVO, +OVO:SP:14760,1,"LES MASSONS",45.283727,5.521127,0,0,OVO:SA:CTP14759,Europe/Paris,,OVO, +OVO:SP:14761,1,"L ESLINARD",45.301143,5.457501,0,0,OVO:SA:CTP14761,Europe/Paris,,OVO, +OVO:SP:14765,1,"PETIT TIZIN",45.283321,5.485873,0,0,OVO:SA:CTP14765,Europe/Paris,,OVO, +OVO:SP:14766,1,"PETIT TIZIN",45.283391,5.485763,0,0,OVO:SA:CTP14765,Europe/Paris,,OVO, +OVO:SP:14769,1,"ROUTE DE GRENOBLE",45.309519,5.499136,0,0,OVO:SA:CTP14769,Europe/Paris,,OVO, +OVO:SP:14770,1,"ROUTE DE GRENOBLE",45.30978,5.500149,0,0,OVO:SA:CTP14769,Europe/Paris,,OVO, +OVO:SP:14771,1,"ST JEAN DE CHEPY",45.30604,5.510743,0,0,OVO:SA:CTP14771,Europe/Paris,,OVO, +OVO:SP:14772,1,"ST JEAN DE CHEPY",45.306077,5.510674,0,0,OVO:SA:CTP14771,Europe/Paris,,OVO, +OVO:SP:14778,1,"EDOUARD HERRIOT",45.369653,5.589794,0,0,OVO:SA:CTP14778,Europe/Paris,,OVO, +OVO:SP:14779,1,"GEORGES FRIER",45.365132,5.591719,0,0,OVO:SA:CTP14779,Europe/Paris,,OVO, +OVO:SP:14780,1,"GEORGES FRIER",45.365183,5.591643,0,0,OVO:SA:CTP14779,Europe/Paris,,OVO, +OVO:SP:14783,1,"DOCTEUR VALOIS",45.355297,5.593046,0,0,OVO:SA:CTP14783,Europe/Paris,,OVO, +OVO:SP:14784,1,"DOCTEUR VALOIS",45.355568,5.593249,0,0,OVO:SA:CTP14783,Europe/Paris,,OVO, +OVO:SP:14785,1,"AVENUE DE PAVIOT",45.352657,5.592094,0,0,OVO:SA:CTP14785,Europe/Paris,,OVO, +OVO:SP:14786,1,"AVENUE DE PAVIOT",45.352746,5.592361,0,0,OVO:SA:CTP14785,Europe/Paris,,OVO, +OVO:SP:14787,1,"BALTISS",45.357911,5.592475,0,0,OVO:SA:CTP14787,Europe/Paris,,OVO, +OVO:SP:14788,1,"BALTISS",45.358167,5.592389,0,0,OVO:SA:CTP14787,Europe/Paris,,OVO, +OVO:SP:14789,1,"HORTENSIAS",45.362937,5.582817,0,0,OVO:SA:CTP14789,Europe/Paris,,OVO, +OVO:SP:14790,1,"HORTENSIAS",45.363109,5.582703,0,0,OVO:SA:CTP14789,Europe/Paris,,OVO, +OVO:SP:14791,1,"RUE GUIMET",45.363118,5.598856,0,0,OVO:SA:CTP14791,Europe/Paris,,OVO, +OVO:SP:14792,1,"VERDUN",45.371388,5.579646,0,0,OVO:SA:CTP14792,Europe/Paris,,OVO, +OVO:SP:14794,1,"BELVEDERE I",45.371716,5.586265,0,0,OVO:SA:CTP14794,Europe/Paris,,OVO, +OVO:SP:14796,1,"BELVEDERE II",45.372202,5.585858,0,0,OVO:SA:CTP14796,Europe/Paris,,OVO, +OVO:SP:14797,1,"BRUNETIERE",45.36199,5.581248,0,0,OVO:SA:CTP14797,Europe/Paris,,OVO, +OVO:SP:14798,1,"BRUNETIERE",45.362193,5.581323,0,0,OVO:SA:CTP14797,Europe/Paris,,OVO, +OVO:SP:14799,1,"BERIDOT",45.351946,5.573829,0,0,OVO:SA:CTP14799,Europe/Paris,,OVO, +OVO:SP:14800,1,"BERIDOT",45.351902,5.573869,0,0,OVO:SA:CTP14799,Europe/Paris,,OVO, +OVO:SP:14801,1,"CHAMPFEUILLET",45.349817,5.567878,0,0,OVO:SA:CTP14801,Europe/Paris,,OVO, +OVO:SP:14802,1,"CHAMPFEUILLET ZA",45.351425,5.570063,0,0,OVO:SA:CTP14802,Europe/Paris,,OVO, +OVO:SP:14803,1,"CHAMPFEUILLET ZA",45.351422,5.570177,0,0,OVO:SA:CTP14802,Europe/Paris,,OVO, +OVO:SP:14804,1,"CIMETIERE",45.366467,5.582232,0,0,OVO:SA:CTP14804,Europe/Paris,,OVO, +OVO:SP:14805,1,"STENDHAL",45.361826,5.588876,0,0,OVO:SA:CTP14805,Europe/Paris,,OVO, +OVO:SP:14806,1,"CLINIQUE",45.362356,5.58862,0,0,OVO:SA:CTP14806,Europe/Paris,,OVO, +OVO:SP:14807,1,"CLOS BERARD",45.364674,5.579789,0,0,OVO:SA:CTP14807,Europe/Paris,,OVO, +OVO:SP:14808,1,"CLOS BERARD",45.364759,5.579669,0,0,OVO:SA:CTP14807,Europe/Paris,,OVO, +OVO:SP:14809,1,"COLLEGE ST JOSEPH",45.368454,5.586772,0,0,OVO:SA:CTP7091,Europe/Paris,,OVO, +OVO:SP:14810,1,"GEORGE SAND",45.364801,5.583322,0,0,OVO:SA:CTP14810,Europe/Paris,,OVO, +OVO:SP:14811,1,"GEORGE SAND",45.364775,5.583037,0,0,OVO:SA:CTP14810,Europe/Paris,,OVO, +OVO:SP:14814,1,"GENERAL LECLERC",45.366425,5.591165,0,0,OVO:SA:CTP14814,Europe/Paris,,OVO, +OVO:SP:14815,1,"GENERAL LECLERC",45.366203,5.590992,0,0,OVO:SA:CTP14814,Europe/Paris,,OVO, +OVO:SP:14816,1,"BRUNERIE",45.380229,5.580311,0,0,OVO:SA:CTP14816,Europe/Paris,,OVO, +OVO:SP:14817,1,"BRUNERIE",45.379973,5.580518,0,0,OVO:SA:CTP14816,Europe/Paris,,OVO, +OVO:SP:14818,1,"RUE DE CRIEL",45.356307,5.584932,0,0,OVO:SA:CTP14818,Europe/Paris,,OVO, +OVO:SP:14819,1,"RUE DE CRIEL",45.356109,5.584759,0,0,OVO:SA:CTP14818,Europe/Paris,,OVO, +OVO:SP:14820,1,"RUE DES CASTORS",45.354734,5.579758,0,0,OVO:SA:CTP14820,Europe/Paris,,OVO, +OVO:SP:14821,1,"RUE DES CASTORS",45.3547,5.580056,0,0,OVO:SA:CTP14820,Europe/Paris,,OVO, +OVO:SP:14822,1,"RUE DES MARMOTTES",45.353818,5.582411,0,0,OVO:SA:CTP14822,Europe/Paris,,OVO, +OVO:SP:14823,1,"RUE DES MARMOTTES",45.354019,5.582406,0,0,OVO:SA:CTP14822,Europe/Paris,,OVO, +OVO:SP:14826,1,"CROIX MORIN",45.363611,5.576051,0,0,OVO:SA:CTP6249,Europe/Paris,,OVO, +OVO:SP:14827,1,"CROIX ROUSSE",45.347608,5.568327,0,0,OVO:SA:CTP14827,Europe/Paris,,OVO, +OVO:SP:14828,1,"CROIX ROUSSE",45.347676,5.568459,0,0,OVO:SA:CTP14827,Europe/Paris,,OVO, +OVO:SP:14831,1,"EGLISE ST PIERRE",45.370512,5.585474,0,0,OVO:SA:CTP14831,Europe/Paris,,OVO, +OVO:SP:14832,1,"EGLISE ST PIERRE",45.370455,5.585393,0,0,OVO:SA:CTP14831,Europe/Paris,,OVO, +OVO:SP:14834,1,"FBG SERMORENS",45.373893,5.580831,0,0,OVO:SA:CTP14834,Europe/Paris,,OVO, +OVO:SP:14835,1,"GARE NORD 03",45.365208,5.592816,0,0,OVO:SA:CTP14835,Europe/Paris,,OVO, +OVO:SP:14836,1,"GRAND ANGLE",45.36429,5.590283,0,0,OVO:SA:CTP14836,Europe/Paris,,OVO, +OVO:SP:14838,1,"GYMNASE LA GARENNE",45.373773,5.584789,0,0,OVO:SA:CTP14838,Europe/Paris,,OVO, +OVO:SP:14840,1,"MEDECINE",45.368905,5.593617,0,0,OVO:SA:CTP14840,Europe/Paris,,OVO, +OVO:SP:14841,1,"MATERNITE CHIRURGIE",45.368826,5.595206,0,0,OVO:SA:CTP14841,Europe/Paris,,OVO, +OVO:SP:14842,1,"IMPOTS",45.365642,5.586992,0,0,OVO:SA:CTP14842,Europe/Paris,,OVO, +OVO:SP:14843,1,"IMPOTS",45.365646,5.586827,0,0,OVO:SA:CTP14842,Europe/Paris,,OVO, +OVO:SP:14844,1,"FERRONNIERE",45.349882,5.576959,0,0,OVO:SA:CTP14844,Europe/Paris,,OVO, +OVO:SP:14845,1,"FERRONNIERE",45.349904,5.577152,0,0,OVO:SA:CTP14844,Europe/Paris,,OVO, +OVO:SP:14847,1,"LAVOIR DE CRIEL",45.359344,5.586104,0,0,OVO:SA:CTP14847,Europe/Paris,,OVO, +OVO:SP:14848,1,"LAVOIR DE CRIEL",45.359367,5.586178,0,0,OVO:SA:CTP14847,Europe/Paris,,OVO, +OVO:SP:14850,1,"RUE DES GENTIANES",45.371505,5.577047,0,0,OVO:SA:CTP14850,Europe/Paris,,OVO, +OVO:SP:14851,1,"RUE DES GENTIANES",45.371462,5.577278,0,0,OVO:SA:CTP14850,Europe/Paris,,OVO, +OVO:SP:14852,1,"FATON",45.37215,5.577026,0,0,OVO:SA:CTP14852,Europe/Paris,,OVO, +OVO:SP:14853,1,"LE PARVIS",45.361047,5.570553,0,0,OVO:SA:CTP14853,Europe/Paris,,OVO, +OVO:SP:14854,1,"LE PARVIS",45.361182,5.570689,0,0,OVO:SA:CTP14853,Europe/Paris,,OVO, +OVO:SP:14855,1,"LE ROUSSET",45.399384,5.58098,0,0,OVO:SA:CTP14855,Europe/Paris,,OVO, +OVO:SP:14856,1,"LE ROUSSET",45.399431,5.58083,0,0,OVO:SA:CTP14855,Europe/Paris,,OVO, +OVO:SP:14857,1,"BLANCHISSERIES",45.385251,5.575854,0,0,OVO:SA:CTP14857,Europe/Paris,,OVO, +OVO:SP:14858,1,"BLANCHISSERIES",45.385364,5.575859,0,0,OVO:SA:CTP14857,Europe/Paris,,OVO, +OVO:SP:14862,1,"LES ECUREUILS",45.357909,5.582332,0,0,OVO:SA:CTP14862,Europe/Paris,,OVO, +OVO:SP:14863,1,"LES TUILIERES",45.397478,5.572857,0,0,OVO:SA:CTP14863,Europe/Paris,,OVO, +OVO:SP:14865,1,"LOUIS NEEL",45.38313,5.577635,0,0,OVO:SA:CTP14865,Europe/Paris,,OVO, +OVO:SP:14866,1,"LOUIS NEEL",45.38283,5.578519,0,0,OVO:SA:CTP14865,Europe/Paris,,OVO, +OVO:SP:14868,1,"LYCEE MARTELLIERE",45.37852,5.591805,0,0,OVO:SA:CTP14868,Europe/Paris,,OVO, +OVO:SP:14869,1,"BD DU GUILLON",45.363173,5.597452,0,0,OVO:SA:CTP14869,Europe/Paris,,OVO, +OVO:SP:14870,1,"BD DU GUILLON",45.362521,5.600403,0,0,OVO:SA:CTP14869,Europe/Paris,,OVO, +OVO:SP:14872,1,"MAIRIE",45.362537,5.59085,0,0,OVO:SA:CTP14872,Europe/Paris,,OVO, +OVO:SP:14873,1,"MAISON BLANCHE",45.348409,5.580895,0,0,OVO:SA:CTP14873,Europe/Paris,,OVO, +OVO:SP:14874,1,"MAISON BLANCHE",45.348214,5.581459,0,0,OVO:SA:CTP14873,Europe/Paris,,OVO, +OVO:SP:14875,1,"MAISON ROSE",45.368709,5.581962,0,0,OVO:SA:CTP14875,Europe/Paris,,OVO, +OVO:SP:14876,1,"MEDIATHEQUE",45.362726,5.597846,0,0,OVO:SA:CTP14876,Europe/Paris,,OVO, +OVO:SP:14877,1,"MJC",45.366796,5.583733,0,0,OVO:SA:CTP14877,Europe/Paris,,OVO, +OVO:SP:14878,1,"PAVIOT ECOLE",45.3511,5.589305,0,0,OVO:SA:CTP14878,Europe/Paris,,OVO, +OVO:SP:14879,1,"PAVIOT ECOLE",45.351449,5.590035,0,0,OVO:SA:CTP14878,Europe/Paris,,OVO, +OVO:SP:14880,1,"PAVIOT",45.349836,5.586831,0,0,OVO:SA:CTP14880,Europe/Paris,,OVO, +OVO:SP:14891,1,"DENFERT ROCHEREAU",45.36002,5.595011,0,0,OVO:SA:CTP14891,Europe/Paris,,OVO, +OVO:SP:14893,1,"RUE DU COLOMBIER",45.36797,5.589792,0,0,OVO:SA:CTP14893,Europe/Paris,,OVO, +OVO:SP:14894,1,"RUE DU FATON",45.370849,5.579394,0,0,OVO:SA:CTP14894,Europe/Paris,,OVO, +OVO:SP:14895,1,"RUE DU FATON",45.370798,5.579227,0,0,OVO:SA:CTP14894,Europe/Paris,,OVO, +OVO:SP:14898,1,"PAUL BERT",45.368891,5.582437,0,0,OVO:SA:CTP14898,Europe/Paris,,OVO, +OVO:SP:14901,1,"VICTOR HUGO",45.368683,5.584532,0,0,OVO:SA:CTP14901,Europe/Paris,,OVO, +OVO:SP:14902,1,"SNCF",45.364002,5.595796,0,0,OVO:SA:CTP14902,Europe/Paris,,OVO, +OVO:SP:14903,1,"SNCF",45.3642,5.595561,0,0,OVO:SA:CTP14902,Europe/Paris,,OVO, +OVO:SP:14906,1,"AV DU 11 NOVEMBRE",45.288825,5.639737,0,0,OVO:SA:CTP14906,Europe/Paris,,OVO, +OVO:SP:14907,1,"AV DU 11 NOVEMBRE",45.288611,5.640035,0,0,OVO:SA:CTP14906,Europe/Paris,,OVO, +OVO:SP:14908,1,"LA TUILERIE",45.312684,5.622429,0,0,OVO:SA:CTP14908,Europe/Paris,,OVO, +OVO:SP:14909,1,"LA TUILERIE",45.312273,5.622375,0,0,OVO:SA:CTP14908,Europe/Paris,,OVO, +OVO:SP:14910,1,"ALUMINIUM",45.312168,5.609598,0,0,OVO:SA:CTP14910,Europe/Paris,,OVO, +OVO:SP:14911,1,"ALUMINIUM",45.312645,5.608961,0,0,OVO:SA:CTP14910,Europe/Paris,,OVO, +OVO:SP:14912,1,"POMAGALSKI",45.309766,5.614518,0,0,OVO:SA:CTP14912,Europe/Paris,,OVO, +OVO:SP:14913,1,"POMAGALSKI",45.309968,5.614017,0,0,OVO:SA:CTP14912,Europe/Paris,,OVO, +OVO:SP:14914,1,"RADIALL",45.307875,5.617543,0,0,OVO:SA:CTP14914,Europe/Paris,,OVO, +OVO:SP:14915,1,"RADIALL",45.307785,5.617517,0,0,OVO:SA:CTP14914,Europe/Paris,,OVO, +OVO:SP:14916,1,"MAIRIE",45.293012,5.63527,0,0,OVO:SA:CTP14916,Europe/Paris,,OVO, +OVO:SP:14917,1,"MAIRIE",45.293211,5.635957,0,0,OVO:SA:CTP14916,Europe/Paris,,OVO, +OVO:SP:14918,1,"SAMLLOC",45.305452,5.618238,0,0,OVO:SA:CTP14918,Europe/Paris,,OVO, +OVO:SP:14920,1,"PAPETERIE",45.306455,5.614547,0,0,OVO:SA:CTP14920,Europe/Paris,,OVO, +OVO:SP:14922,1,"PLACE",45.319713,5.522632,0,0,OVO:SA:CTP14922,Europe/Paris,,OVO, +OVO:SP:15054,1,"POM. laPLACETTE TENNIS",45.318692,5.664378,0,0,OVO:SA:CTP15054,Europe/Paris,,OVO, +OVO:SP:15075,1,"BERNARDIERE",45.424987,5.513724,0,0,OVO:SA:CTP15075,Europe/Paris,,OVO, +OVO:SP:15076,1,"BERNARDIERE",45.425009,5.513329,0,0,OVO:SA:CTP15075,Europe/Paris,,OVO, +OVO:SP:15077,1,"LES NOYERS",45.356705,5.610072,0,0,OVO:SA:CTP15077,Europe/Paris,,OVO, +OVO:SP:15079,1,"POM. laPLACETTE PALLACHERE",45.317325,5.666039,0,0,OVO:SA:CTP15079,Europe/Paris,,OVO, +OVO:SP:15163,1,"ZA CHARANCIEU",45.529965,5.589365,0,0,OVO:SA:CTP15163,Europe/Paris,,OVO, +OVO:SP:15164,1,"ZA CHARANCIEU",45.530605,5.588923,0,0,OVO:SA:CTP15163,Europe/Paris,,OVO, +OVO:SP:15254,1,"COLLEGE",45.410133,5.556717,0,0,OVO:SA:CTP15254,Europe/Paris,,OVO, +OVO:SP:15255,1,"PALADRU CALATRIN",45.470769,5.546581,0,0,OVO:SA:CTP15255,Europe/Paris,,OVO, +OVO:SP:15256,1,"PALADRU CALATRIN",45.471095,5.547006,0,0,OVO:SA:CTP15255,Europe/Paris,,OVO, +OVO:SP:15433,1,"LA BUISSE RESSOURCERIE",45.318209,5.622002,0,0,OVO:SA:CTP15433,Europe/Paris,,OVO, +OVO:SP:15434,1,"LA BUISSE RESSOURCERIE",45.317912,5.621904,0,0,OVO:SA:CTP15433,Europe/Paris,,OVO, +OVO:SP:15435,1,"StG.enVALDAINE COTAGON",45.474485,5.636369,0,0,OVO:SA:CTP15435,Europe/Paris,,OVO, +OVO:SP:15436,1,"ACACIAS",45.347007,5.575476,0,0,OVO:SA:CTP15436,Europe/Paris,,OVO, +OVO:SP:15462,1,"BOUVIER DIVAT",45.359717,5.629489,0,0,OVO:SA:CTP15462,Europe/Paris,,OVO, +OVO:SP:15463,1,"LES RIVOIRES",45.348851,5.528419,0,0,OVO:SA:CTP6168,Europe/Paris,,OVO, +OVO:SP:15464,1,"ST SULP.RIVOIRE BOURG",45.470379,5.609966,0,0,OVO:SA:CTP8733,Europe/Paris,,OVO, +OVO:SP:15465,1,"StG.enVALDAINE GENDARMERIE",45.45092,5.630481,0,0,OVO:SA:CTP7910,Europe/Paris,,OVO, +OVO:SP:15466,1,"LE PIN CARREFOUR BREZIN",45.471444,5.510977,0,0,OVO:SA:CTP14561,Europe/Paris,,OVO, +OVO:SP:15467,1,"PETIT CRIEL",45.337881,5.542614,0,0,OVO:SA:CTP14517,Europe/Paris,,OVO, +OVO:SP:15468,1,"ST J.DE MOIRANS COLOMBINIERE",45.335488,5.57121,0,0,OVO:SA:CTP14707,Europe/Paris,,OVO, +OVO:SP:15469,1,"MAISON DE RETRAITE",45.354171,5.500561,0,0,OVO:SA:CTP14594,Europe/Paris,,OVO, +OVO:SP:15470,1,"VILLAGE",45.43977,5.595569,0,0,OVO:SA:CTP7858,Europe/Paris,,OVO, +OVO:SP:15471,1,"LES RIVOIRES",45.348846,5.528564,0,0,OVO:SA:CTP6168,Europe/Paris,,OVO, +OVO:SP:15472,1,"BOUVIER DIVAT",45.359621,5.629591,0,0,OVO:SA:CTP15462,Europe/Paris,,OVO, +OVO:SP:15482,1,"LE GUICHARD",45.372576,5.524557,0,0,OVO:SA:CTP14583,Europe/Paris,,OVO, +OVO:SP:15483,1,"LEVATEL",45.357095,5.497156,0,0,OVO:SA:CTP14593,Europe/Paris,,OVO, +OVO:SP:15484,1,"ST BLAISE DU BU PETIT VOYE",45.382056,5.517383,0,0,OVO:SA:CTP14639,Europe/Paris,,OVO, +OVO:SP:15486,1,"L ESLINARD",45.301118,5.457428,0,0,OVO:SA:CTP14761,Europe/Paris,,OVO, +OVO:SP:15489,1,"ACACIAS",45.346914,5.575077,0,0,OVO:SA:CTP15436,Europe/Paris,,OVO, +OVO:SP:15491,1,"CRUZILLE",45.290766,5.484801,0,0,OVO:SA:CTP15491,Europe/Paris,,OVO, +OVO:SP:15747,1,"POM. laPLACETTE VILLAGE",45.318618,5.655433,0,0,OVO:SA:CTP15747,Europe/Paris,,OVO, +OVO:SP:15748,1,"VILLAGE",45.366557,5.526519,0,0,OVO:SA:CTP15748,Europe/Paris,,OVO, +OVO:SP:15749,1,"VILLAGE",45.366417,5.525955,0,0,OVO:SA:CTP15748,Europe/Paris,,OVO, +OVO:SP:15750,1,"ST BLAISE DU BU ZA LE TALAMUD",45.386444,5.525287,0,0,OVO:SA:CTP7066,Europe/Paris,,OVO, +OVO:SP:15765,1,"ECHEVINS",45.327887,5.566241,0,0,OVO:SA:CTP14504,Europe/Paris,,OVO, +OVO:SP:15766,1,"ST E.DE CROSSEY VACHONNES",45.382901,5.64542,0,0,OVO:SA:CTP15766,Europe/Paris,,OVO, +OVO:SP:15767,1,"StG.enVALDAINE LAREMBERT",45.454775,5.617868,0,0,OVO:SA:CTP14693,Europe/Paris,,OVO, +OVO:SP:15768,1,"ST J.DE MOIRANS LES TISSEUSES",45.344425,5.574083,0,0,OVO:SA:CTP14722,Europe/Paris,,OVO, +OVO:SP:15770,1,"PAVIOT",45.34973,5.586899,0,0,OVO:SA:CTP14880,Europe/Paris,,OVO, +OVO:SP:15771,1,"PAPETERIE",45.306735,5.614358,0,0,OVO:SA:CTP14920,Europe/Paris,,OVO, +OVO:SP:15788,1,"LES ECHELLES",45.427533,5.638837,0,0,OVO:SA:CTP15788,Europe/Paris,,OVO, +OVO:SP:15789,1,"LES ECHELLES",45.427521,5.638765,0,0,OVO:SA:CTP15788,Europe/Paris,,OVO, +OVO:SP:15790,1,"VERRONIERE",45.466644,5.557499,0,0,OVO:SA:CTP15790,Europe/Paris,,OVO, +OVO:SP:245,1,"ECOLE DU BERARD",45.351759,5.605218,0,0,OVO:SA:CTP245,Europe/Paris,,OVO, +OVO:SP:248,1,"VILLAGE",45.444748,5.663464,0,0,OVO:SA:CTP248,Europe/Paris,,OVO, +OVO:SP:4237,1,"FONTANIL CORNIL CROIX DE ROCHETTE",45.258191,5.659385,0,0,OVO:SA:CTP4237,Europe/Paris,,OVO, +OVO:SP:4240,1,"FONTANIL CORNIL LEP F. DOLTO",45.250367,5.665036,0,0,OVO:SA:CTP4240,Europe/Paris,,OVO, +OVO:SP:4254,1,"LOGIS NEUF",45.263566,5.656383,0,0,OVO:SA:CTP4254,Europe/Paris,,OVO, +OVO:SP:4255,1,"LOGIS NEUF",45.263296,5.65663,0,0,OVO:SA:CTP4254,Europe/Paris,,OVO, +OVO:SP:5178,1,"FURES",45.307585,5.49461,0,0,OVO:SA:CTP5178,Europe/Paris,,OVO, +OVO:SP:5180,1,"FURES",45.307612,5.49457,0,0,OVO:SA:CTP5178,Europe/Paris,,OVO, +OVO:SP:5184,1,"MICHEL PERRET",45.304926,5.490525,0,0,OVO:SA:CTP5184,Europe/Paris,,OVO, +OVO:SP:5186,1,"MICHEL PERRET",45.304996,5.490642,0,0,OVO:SA:CTP5184,Europe/Paris,,OVO, +OVO:SP:5190,1,"PRESSOIR",45.319579,5.523324,0,0,OVO:SA:CTP5190,Europe/Paris,,OVO, +OVO:SP:5192,1,"PRESSOIR",45.31947,5.522705,0,0,OVO:SA:CTP5190,Europe/Paris,,OVO, +OVO:SP:5194,1,"LE PAVE",45.312313,5.50834,0,0,OVO:SA:CTP5194,Europe/Paris,,OVO, +OVO:SP:5196,1,"LE PAVE",45.312269,5.508053,0,0,OVO:SA:CTP5194,Europe/Paris,,OVO, +OVO:SP:5198,1,"GARE SNCF",45.30084,5.491808,0,0,OVO:SA:CTP5198,Europe/Paris,,OVO, +OVO:SP:5208,1,"ECOLE DESMOULINS",45.298713,5.4852,0,0,OVO:SA:CTP5208,Europe/Paris,,OVO, +OVO:SP:5210,1,"COLLEGE CONDORCET",45.298067,5.486656,0,0,OVO:SA:CTP5210,Europe/Paris,,OVO, +OVO:SP:5212,1,"COLLEGE CONDORCET",45.297909,5.48716,0,0,OVO:SA:CTP5210,Europe/Paris,,OVO, +OVO:SP:5239,1,"SCHNEIDER",45.31898,5.594597,0,0,OVO:SA:CTP5239,Europe/Paris,,OVO, +OVO:SP:5241,1,"THALES",45.314852,5.597324,0,0,OVO:SA:CTP5241,Europe/Paris,,OVO, +OVO:SP:5243,1,"SCHNEIDER",45.319199,5.594206,0,0,OVO:SA:CTP5239,Europe/Paris,,OVO, +OVO:SP:5244,1,"THALES",45.314897,5.5971,0,0,OVO:SA:CTP5241,Europe/Paris,,OVO, +OVO:SP:5247,1,"SEMINAIRE",45.292658,5.631343,0,0,OVO:SA:CTP5247,Europe/Paris,,OVO, +OVO:SP:5249,1,"SEMINAIRE",45.293242,5.630602,0,0,OVO:SA:CTP5247,Europe/Paris,,OVO, +OVO:SP:5251,1,"CHEVALON",45.278167,5.64804,0,0,OVO:SA:CTP5251,Europe/Paris,,OVO, +OVO:SP:5253,1,"CHEVALON",45.278026,5.647958,0,0,OVO:SA:CTP5251,Europe/Paris,,OVO, +OVO:SP:5263,1,"BASCULE",45.268224,5.65381,0,0,OVO:SA:CTP5263,Europe/Paris,,OVO, +OVO:SP:5265,1,"BASCULE",45.268057,5.653823,0,0,OVO:SA:CTP5263,Europe/Paris,,OVO, +OVO:SP:5267,1,"CAFE ADRAIT",45.273605,5.650594,0,0,OVO:SA:CTP5267,Europe/Paris,,OVO, +OVO:SP:5269,1,"CAFE ADRAIT",45.273994,5.650529,0,0,OVO:SA:CTP5267,Europe/Paris,,OVO, +OVO:SP:5271,1,"MALOSSANE",45.309776,5.641156,0,0,OVO:SA:CTP5271,Europe/Paris,,OVO, +OVO:SP:5273,1,"MALOSSANE",45.309898,5.640967,0,0,OVO:SA:CTP5271,Europe/Paris,,OVO, +OVO:SP:5277,1,"GARE SNCF",45.290086,5.632774,0,0,OVO:SA:CTP5277,Europe/Paris,,OVO, +OVO:SP:5279,1,"CHARMINELLES",45.295437,5.637946,0,0,OVO:SA:CTP5279,Europe/Paris,,OVO, +OVO:SP:5281,1,"CHARMINELLES",45.295727,5.63776,0,0,OVO:SA:CTP5279,Europe/Paris,,OVO, +OVO:SP:5285,1,"MONUMENT AUX MORTS",45.30258,5.627021,0,0,OVO:SA:CTP5285,Europe/Paris,,OVO, +OVO:SP:5287,1,"MONUMENT AUX MORTS",45.302627,5.627024,0,0,OVO:SA:CTP5285,Europe/Paris,,OVO, +OVO:SP:5291,1,"L ARCADE",45.29156,5.634493,0,0,OVO:SA:CTP5291,Europe/Paris,,OVO, +OVO:SP:5294,1,"DOCTEUR THEVENET",45.298139,5.636326,0,0,OVO:SA:CTP5294,Europe/Paris,,OVO, +OVO:SP:5297,1,"BANNETTES",45.299082,5.631975,0,0,OVO:SA:CTP5297,Europe/Paris,,OVO, +OVO:SP:5299,1,"BANNETTES",45.299101,5.631841,0,0,OVO:SA:CTP5297,Europe/Paris,,OVO, +OVO:SP:5301,1,"CHASSOLIERE",45.280238,5.64671,0,0,OVO:SA:CTP5301,Europe/Paris,,OVO, +OVO:SP:5303,1,"CHASSOLIERE",45.28036,5.646741,0,0,OVO:SA:CTP5301,Europe/Paris,,OVO, +OVO:SP:5305,1,"VOLOUISE",45.285478,5.643574,0,0,OVO:SA:CTP5305,Europe/Paris,,OVO, +OVO:SP:5307,1,"VOLOUISE",45.284363,5.644421,0,0,OVO:SA:CTP5305,Europe/Paris,,OVO, +OVO:SP:5309,1,"ALLIBERT",45.315432,5.603409,0,0,OVO:SA:CTP5309,Europe/Paris,,OVO, +OVO:SP:5311,1,"ALLIBERT",45.315671,5.602357,0,0,OVO:SA:CTP5309,Europe/Paris,,OVO, +OVO:SP:6109,1,"LES PRAIRIES",45.339147,5.488388,0,0,OVO:SA:CTP6109,Europe/Paris,,OVO, +OVO:SP:6111,1,"LES PRAIRIES",45.339058,5.488264,0,0,OVO:SA:CTP6109,Europe/Paris,,OVO, +OVO:SP:6113,1,"ZA LE PLAN",45.339869,5.492269,0,0,OVO:SA:CTP6113,Europe/Paris,,OVO, +OVO:SP:6115,1,"ZA LE PLAN",45.33983,5.492087,0,0,OVO:SA:CTP6113,Europe/Paris,,OVO, +OVO:SP:6119,1,"MAIRIE",45.34532,5.528551,0,0,OVO:SA:CTP6119,Europe/Paris,,OVO, +OVO:SP:6121,1,"MAIRIE",45.345649,5.528882,0,0,OVO:SA:CTP6119,Europe/Paris,,OVO, +OVO:SP:6125,1,"6 CHEMINS",45.347018,5.524129,0,0,OVO:SA:CTP6125,Europe/Paris,,OVO, +OVO:SP:6127,1,"6 CHEMINS",45.347094,5.52415,0,0,OVO:SA:CTP6125,Europe/Paris,,OVO, +OVO:SP:6130,1,"PONT DE BOIS VERT",45.342176,5.52682,0,0,OVO:SA:CTP6130,Europe/Paris,,OVO, +OVO:SP:6132,1,"PONT DE BOIS VERT",45.342244,5.526986,0,0,OVO:SA:CTP6130,Europe/Paris,,OVO, +OVO:SP:6134,1,"LEZARDIERES PT",45.352215,5.536853,0,0,OVO:SA:CTP6134,Europe/Paris,,OVO, +OVO:SP:6136,1,"LEZARDIERES PT",45.352416,5.537305,0,0,OVO:SA:CTP6134,Europe/Paris,,OVO, +OVO:SP:6138,1,"LE MOURET",45.366104,5.514623,0,0,OVO:SA:CTP6140,Europe/Paris,,OVO, +OVO:SP:6140,1,"LE MOURET",45.36612,5.514407,0,0,OVO:SA:CTP6140,Europe/Paris,,OVO, +OVO:SP:6142,1,"MALADIERE",45.352695,5.49142,0,0,OVO:SA:CTP6142,Europe/Paris,,OVO, +OVO:SP:6144,1,"MALADIERE",45.352565,5.491514,0,0,OVO:SA:CTP6142,Europe/Paris,,OVO, +OVO:SP:6147,1,"LA CROZE",45.337579,5.484105,0,0,OVO:SA:CTP6147,Europe/Paris,,OVO, +OVO:SP:6149,1,"LA CROZE",45.337807,5.484665,0,0,OVO:SA:CTP6147,Europe/Paris,,OVO, +OVO:SP:6154,1,"LIBERATION",45.349855,5.502654,0,0,OVO:SA:CTP6154,Europe/Paris,,OVO, +OVO:SP:6156,1,"LIBERATION",45.349988,5.502704,0,0,OVO:SA:CTP6154,Europe/Paris,,OVO, +OVO:SP:6158,1,"ALLIMAND",45.354121,5.492949,0,0,OVO:SA:CTP6158,Europe/Paris,,OVO, +OVO:SP:6160,1,"ALLIMAND",45.353928,5.49328,0,0,OVO:SA:CTP6158,Europe/Paris,,OVO, +OVO:SP:6168,1,"LES RIVOIRES",45.348689,5.528663,0,0,OVO:SA:CTP6168,Europe/Paris,,OVO, +OVO:SP:6170,1,"LES RIVOIRES",45.348811,5.528647,0,0,OVO:SA:CTP6168,Europe/Paris,,OVO, +OVO:SP:6172,1,"CLOS JUVIN",45.345404,5.494789,0,0,OVO:SA:CTP6172,Europe/Paris,,OVO, +OVO:SP:6174,1,"CLOS JUVIN",45.345514,5.494762,0,0,OVO:SA:CTP6172,Europe/Paris,,OVO, +OVO:SP:6184,1,"BAS RIVES",45.349355,5.509514,0,0,OVO:SA:CTP6184,Europe/Paris,,OVO, +OVO:SP:6187,1,"COLLEGE R DESNOS",45.351156,5.504947,0,0,OVO:SA:CTP6187,Europe/Paris,,OVO, +OVO:SP:6190,1,"BERLIOZ",45.352224,5.495017,0,0,OVO:SA:CTP6190,Europe/Paris,,OVO, +OVO:SP:6192,1,"JEAN JAURES",45.35219,5.495415,0,0,OVO:SA:CTP6193,Europe/Paris,,OVO, +OVO:SP:6193,1,"JEAN JAURES",45.352598,5.495068,0,0,OVO:SA:CTP6193,Europe/Paris,,OVO, +OVO:SP:6198,1,"EGLISE",45.334104,5.483282,0,0,OVO:SA:CTP6198,Europe/Paris,,OVO, +OVO:SP:6200,1,"EGLISE",45.334209,5.483389,0,0,OVO:SA:CTP6198,Europe/Paris,,OVO, +OVO:SP:6202,1,"PLACE CARDINALE",45.331617,5.486269,0,0,OVO:SA:CTP6202,Europe/Paris,,OVO, +OVO:SP:6204,1,"PLACE CARDINALE",45.33169,5.486121,0,0,OVO:SA:CTP6202,Europe/Paris,,OVO, +OVO:SP:6206,1,"CHALET",45.330513,5.557286,0,0,OVO:SA:CTP6206,Europe/Paris,,OVO, +OVO:SP:6208,1,"CHALET",45.330539,5.557353,0,0,OVO:SA:CTP6206,Europe/Paris,,OVO, +OVO:SP:6210,1,"GARE SNCF",45.322339,5.582398,0,0,OVO:SA:CTP6210,Europe/Paris,,OVO, +OVO:SP:6212,1,"GARE SNCF",45.322162,5.582769,0,0,OVO:SA:CTP6210,Europe/Paris,,OVO, +OVO:SP:6216,1,"SAINT JACQUES",45.326861,5.556397,0,0,OVO:SA:CTP6216,Europe/Paris,,OVO, +OVO:SP:6218,1,"SAINT JACQUES",45.326841,5.556296,0,0,OVO:SA:CTP6216,Europe/Paris,,OVO, +OVO:SP:6223,1,"LYCEE BEGHIN",45.320245,5.588687,0,0,OVO:SA:CTP6223,Europe/Paris,,OVO, +OVO:SP:6226,1,"POMPIERS",45.326725,5.571406,0,0,OVO:SA:CTP6226,Europe/Paris,,OVO, +OVO:SP:6229,1,"PARC DE LA GRILLE",45.32608,5.562833,0,0,OVO:SA:CTP6229,Europe/Paris,,OVO, +OVO:SP:6235,1,"ST CASSIEN LE ROYER",45.359267,5.557393,0,0,OVO:SA:CTP6235,Europe/Paris,,OVO, +OVO:SP:6237,1,"ST CASSIEN LE ROYER",45.359556,5.557221,0,0,OVO:SA:CTP6235,Europe/Paris,,OVO, +OVO:SP:6239,1,"ST CASSIEN MALOZA",45.355638,5.549764,0,0,OVO:SA:CTP6239,Europe/Paris,,OVO, +OVO:SP:6241,1,"ST CASSIEN MALOZA",45.355535,5.549755,0,0,OVO:SA:CTP6239,Europe/Paris,,OVO, +OVO:SP:6243,1,"ST CASSIEN EGLISE",45.360005,5.55156,0,0,OVO:SA:CTP6243,Europe/Paris,,OVO, +OVO:SP:6245,1,"ST CASSIEN EGLISE",45.360067,5.55119,0,0,OVO:SA:CTP6243,Europe/Paris,,OVO, +OVO:SP:6249,1,"CROIX MORIN",45.36362,5.575877,0,0,OVO:SA:CTP6249,Europe/Paris,,OVO, +OVO:SP:6251,1,"ST J.DE MOIRANS PLAN MENU RD1075",45.349373,5.595229,0,0,OVO:SA:CTP6251,Europe/Paris,,OVO, +OVO:SP:6253,1,"ST J.DE MOIRANS LA MANCHE",45.349556,5.594572,0,0,OVO:SA:CTP6253,Europe/Paris,,OVO, +OVO:SP:6255,1,"PARKING PLAN MENU",45.353324,5.597517,0,0,OVO:SA:CTP6255,Europe/Paris,,OVO, +OVO:SP:6256,1,"ST J.DE MOIRANS LA MANCHE",45.349692,5.595251,0,0,OVO:SA:CTP6253,Europe/Paris,,OVO, +OVO:SP:6257,1,"ST J.DE MOIRANS PLAN MENU RD1075",45.349551,5.595526,0,0,OVO:SA:CTP6251,Europe/Paris,,OVO, +OVO:SP:6259,1,"EDGAR KOFLER",45.359998,5.600123,0,0,OVO:SA:CTP6259,Europe/Paris,,OVO, +OVO:SP:6261,1,"EDGAR KOFLER",45.359641,5.600309,0,0,OVO:SA:CTP6259,Europe/Paris,,OVO, +OVO:SP:6267,1,"PARKING PLAN MENU",45.353398,5.597722,0,0,OVO:SA:CTP6255,Europe/Paris,,OVO, +OVO:SP:6269,1,"PLACE E BROCHIER",45.355669,5.617296,0,0,OVO:SA:CTP6269,Europe/Paris,,OVO, +OVO:SP:6271,1,"PLACE E BROCHIER",45.355691,5.617435,0,0,OVO:SA:CTP6269,Europe/Paris,,OVO, +OVO:SP:6273,1,"LA BUISSE PLACE",45.335544,5.621057,0,0,OVO:SA:CTP6273,Europe/Paris,,OVO, +OVO:SP:6275,1,"LA BUISSE PLACE",45.335081,5.621237,0,0,OVO:SA:CTP6273,Europe/Paris,,OVO, +OVO:SP:6281,1,"ST J.DE RATZ VILLAGE",45.3502,5.661942,0,0,OVO:SA:CTP6281,Europe/Paris,,OVO, +OVO:SP:6283,1,"ST J.DE RATZ VILLAGE",45.35028,5.662033,0,0,OVO:SA:CTP6281,Europe/Paris,,OVO, +OVO:SP:6285,1,"ST J.DE RATZ LAC",45.350537,5.6572,0,0,OVO:SA:CTP6285,Europe/Paris,,OVO, +OVO:SP:6287,1,"ST J.DE RATZ LAC",45.350534,5.656855,0,0,OVO:SA:CTP6285,Europe/Paris,,OVO, +OVO:SP:6291,1,"POM. laPLACETTE COL DE LA PLACETTE",45.330313,5.658108,0,0,OVO:SA:CTP6291,Europe/Paris,,OVO, +OVO:SP:6293,1,"POM. laPLACETTE COL DE LA PLACETTE",45.330487,5.658305,0,0,OVO:SA:CTP6291,Europe/Paris,,OVO, +OVO:SP:6295,1,"POM. laPLACETTE QUATRE BRAS",45.325947,5.656394,0,0,OVO:SA:CTP6295,Europe/Paris,,OVO, +OVO:SP:6297,1,"POM. laPLACETTE QUATRE BRAS",45.326326,5.656717,0,0,OVO:SA:CTP6295,Europe/Paris,,OVO, +OVO:SP:6299,1,"POM. laPLACETTE LES BARNIERS",45.315427,5.651029,0,0,OVO:SA:CTP6299,Europe/Paris,,OVO, +OVO:SP:6301,1,"POM. laPLACETTE LES BARNIERS",45.315502,5.65098,0,0,OVO:SA:CTP6299,Europe/Paris,,OVO, +OVO:SP:6303,1,"ST J.DE RATZ LE GARREL",45.34964,5.645945,0,0,OVO:SA:CTP6303,Europe/Paris,,OVO, +OVO:SP:6305,1,"ST J.DE RATZ LE GARREL",45.349723,5.645921,0,0,OVO:SA:CTP6303,Europe/Paris,,OVO, +OVO:SP:6309,1,"POM. laPLACETTE RD520 VILLAGE",45.318724,5.652857,0,0,OVO:SA:CTP6309,Europe/Paris,,OVO, +OVO:SP:6311,1,"POM. laPLACETTE RD520 VILLAGE",45.319163,5.65312,0,0,OVO:SA:CTP6309,Europe/Paris,,OVO, +OVO:SP:6313,1,"LA BUISSE LE GAY GIRATOIRE",45.331148,5.612921,0,0,OVO:SA:CTP6313,Europe/Paris,,OVO, +OVO:SP:7017,1,"BOMPERTUIS",45.394922,5.52976,0,0,OVO:SA:CTP7017,Europe/Paris,,OVO, +OVO:SP:7019,1,"BOMPERTUIS",45.394992,5.529859,0,0,OVO:SA:CTP7017,Europe/Paris,,OVO, +OVO:SP:7022,1,"FORGES",45.39865,5.534976,0,0,OVO:SA:CTP7022,Europe/Paris,,OVO, +OVO:SP:7024,1,"FORGES",45.398388,5.534944,0,0,OVO:SA:CTP7022,Europe/Paris,,OVO, +OVO:SP:7026,1,"LA MURETTE LA COURATIERE",45.385214,5.533673,0,0,OVO:SA:CTP7026,Europe/Paris,,OVO, +OVO:SP:7028,1,"LA MURETTE LA COURATIERE",45.385199,5.533525,0,0,OVO:SA:CTP7026,Europe/Paris,,OVO, +OVO:SP:7030,1,"LE RIVIER ECOLE",45.380755,5.494486,0,0,OVO:SA:CTP7030,Europe/Paris,,OVO, +OVO:SP:7032,1,"LE RIVIER ECOLE",45.380774,5.494656,0,0,OVO:SA:CTP7030,Europe/Paris,,OVO, +OVO:SP:7042,1,"BOURG ECOLE",45.367021,5.526264,0,0,OVO:SA:CTP7042,Europe/Paris,,OVO, +OVO:SP:7047,1,"LA MURETTE VILLAGE",45.380162,5.541269,0,0,OVO:SA:CTP7047,Europe/Paris,,OVO, +OVO:SP:7049,1,"LA MURETTE VILLAGE",45.380271,5.541143,0,0,OVO:SA:CTP7047,Europe/Paris,,OVO, +OVO:SP:7053,1,"ST BLAISE DU BU GRAND VOYE",45.374147,5.499529,0,0,OVO:SA:CTP7053,Europe/Paris,,OVO, +OVO:SP:7055,1,"ST BLAISE DU BU ROUTE DU RIVIER",45.374675,5.496818,0,0,OVO:SA:CTP7055,Europe/Paris,,OVO, +OVO:SP:7057,1,"ST BLAISE DU BU GRAND VOYE",45.374117,5.499539,0,0,OVO:SA:CTP7053,Europe/Paris,,OVO, +OVO:SP:7058,1,"ST BLAISE DU BU ROUTE DU RIVIER",45.37451,5.496918,0,0,OVO:SA:CTP7055,Europe/Paris,,OVO, +OVO:SP:7060,1,"ST BLAISE DU BU RAVIGNHOUSE",45.39123,5.521079,0,0,OVO:SA:CTP7060,Europe/Paris,,OVO, +OVO:SP:7062,1,"ST BLAISE DU BU RAVIGNHOUSE",45.391281,5.52111,0,0,OVO:SA:CTP7060,Europe/Paris,,OVO, +OVO:SP:7066,1,"ST BLAISE DU BU ZA LE TALAMUD",45.386346,5.525164,0,0,OVO:SA:CTP7066,Europe/Paris,,OVO, +OVO:SP:7068,1,"ST BLAISE DU BU CHATELARD",45.369221,5.508085,0,0,OVO:SA:CTP7068,Europe/Paris,,OVO, +OVO:SP:7070,1,"ST BLAISE DU BU CHATELARD",45.369017,5.507823,0,0,OVO:SA:CTP7068,Europe/Paris,,OVO, +OVO:SP:7072,1,"PAPETERIE",45.410309,5.531851,0,0,OVO:SA:CTP7072,Europe/Paris,,OVO, +OVO:SP:7074,1,"PAPETERIE",45.409615,5.532075,0,0,OVO:SA:CTP7072,Europe/Paris,,OVO, +OVO:SP:7076,1,"LE GAYET",45.409518,5.560528,0,0,OVO:SA:CTP7076,Europe/Paris,,OVO, +OVO:SP:7078,1,"LE GAYET",45.409634,5.560535,0,0,OVO:SA:CTP7076,Europe/Paris,,OVO, +OVO:SP:7080,1,"LE FAGOT",45.402858,5.56676,0,0,OVO:SA:CTP7080,Europe/Paris,,OVO, +OVO:SP:7082,1,"LE FAGOT",45.403233,5.566543,0,0,OVO:SA:CTP7080,Europe/Paris,,OVO, +OVO:SP:7084,1,"LA MURETTE LE PAYSAN",45.378868,5.54678,0,0,OVO:SA:CTP7084,Europe/Paris,,OVO, +OVO:SP:7086,1,"LA MURETTE LE PAYSAN",45.378775,5.547627,0,0,OVO:SA:CTP7084,Europe/Paris,,OVO, +OVO:SP:7088,1,"CENTRE SOCIAL",45.367895,5.588717,0,0,OVO:SA:CTP7088,Europe/Paris,,OVO, +OVO:SP:7090,1,"CENTRE SOCIAL",45.368151,5.588571,0,0,OVO:SA:CTP7088,Europe/Paris,,OVO, +OVO:SP:7091,1,"COLLEGE ST JOSEPH",45.368354,5.587889,0,0,OVO:SA:CTP7091,Europe/Paris,,OVO, +OVO:SP:7094,1,"L AGNELAS",45.378446,5.564014,0,0,OVO:SA:CTP7094,Europe/Paris,,OVO, +OVO:SP:7096,1,"L AGNELAS",45.378511,5.563736,0,0,OVO:SA:CTP7094,Europe/Paris,,OVO, +OVO:SP:7098,1,"POLE DE VOUISE",45.376108,5.580889,0,0,OVO:SA:CTP7098,Europe/Paris,,OVO, +OVO:SP:7100,1,"POLE DE VOUISE",45.377622,5.581661,0,0,OVO:SA:CTP7098,Europe/Paris,,OVO, +OVO:SP:7102,1,"BRAMERET",45.369858,5.587356,0,0,OVO:SA:CTP7102,Europe/Paris,,OVO, +OVO:SP:7104,1,"GENDARMERIE",45.368965,5.585084,0,0,OVO:SA:CTP7104,Europe/Paris,,OVO, +OVO:SP:7106,1,"ECOLE STE MARIE",45.368346,5.585967,0,0,OVO:SA:CTP7106,Europe/Paris,,OVO, +OVO:SP:7107,1,"GENDARMERIE",45.368837,5.586222,0,0,OVO:SA:CTP7104,Europe/Paris,,OVO, +OVO:SP:7109,1,"LE VERDIN",45.39776,5.569451,0,0,OVO:SA:CTP7109,Europe/Paris,,OVO, +OVO:SP:7111,1,"LE VERDIN",45.39768,5.569365,0,0,OVO:SA:CTP7109,Europe/Paris,,OVO, +OVO:SP:7113,1,"CES LA GARENNE",45.374611,5.588103,0,0,OVO:SA:CTP7113,Europe/Paris,,OVO, +OVO:SP:7117,1,"FRERES TARDY",45.364964,5.593673,0,0,OVO:SA:CTP7117,Europe/Paris,,OVO, +OVO:SP:7121,1,"FRERES TARDY",45.365035,5.593585,0,0,OVO:SA:CTP7117,Europe/Paris,,OVO, +OVO:SP:7125,1,"CROIX BAYARD",45.365954,5.622013,0,0,OVO:SA:CTP7125,Europe/Paris,,OVO, +OVO:SP:7129,1,"CROIX BAYARD",45.365666,5.621823,0,0,OVO:SA:CTP7125,Europe/Paris,,OVO, +OVO:SP:7131,1,"ST E.DE CROSSEY VILLAGE",45.377168,5.645605,0,0,OVO:SA:CTP7131,Europe/Paris,,OVO, +OVO:SP:7133,1,"ST E.DE CROSSEY VILLAGE",45.377914,5.646525,0,0,OVO:SA:CTP7131,Europe/Paris,,OVO, +OVO:SP:7135,1,"ST E.DE CROSSEY ETANG DAUPHIN",45.365317,5.63357,0,0,OVO:SA:CTP7135,Europe/Paris,,OVO, +OVO:SP:7139,1,"ST E.DE CROSSEY ETANG DAUPHIN",45.365572,5.63368,0,0,OVO:SA:CTP7135,Europe/Paris,,OVO, +OVO:SP:7816,1,"GARE",45.424951,5.516689,0,0,OVO:SA:CTP7816,Europe/Paris,,OVO, +OVO:SP:7818,1,"GARE",45.424963,5.516523,0,0,OVO:SA:CTP7816,Europe/Paris,,OVO, +OVO:SP:7823,1,"MARTIN CLUZEL",45.433469,5.513944,0,0,OVO:SA:CTP7823,Europe/Paris,,OVO, +OVO:SP:7825,1,"VIRAGE JANIN",45.429429,5.500054,0,0,OVO:SA:CTP7825,Europe/Paris,,OVO, +OVO:SP:7827,1,"VIRAGE JANIN",45.429346,5.499961,0,0,OVO:SA:CTP7825,Europe/Paris,,OVO, +OVO:SP:7829,1,"GUILLERMET",45.413539,5.530829,0,0,OVO:SA:CTP7829,Europe/Paris,,OVO, +OVO:SP:7831,1,"GUILLERMET",45.413829,5.530683,0,0,OVO:SA:CTP7829,Europe/Paris,,OVO, +OVO:SP:7833,1,"JACQUIN",45.419419,5.519391,0,0,OVO:SA:CTP7833,Europe/Paris,,OVO, +OVO:SP:7835,1,"JACQUIN",45.419555,5.519435,0,0,OVO:SA:CTP7833,Europe/Paris,,OVO, +OVO:SP:7837,1,"LE PIN VERS ARS",45.449171,5.513328,0,0,OVO:SA:CTP7837,Europe/Paris,,OVO, +OVO:SP:7839,1,"LE PIN VERS ARS",45.449117,5.512198,0,0,OVO:SA:CTP7837,Europe/Paris,,OVO, +OVO:SP:7841,1,"LE PIN VERS ARS",45.44877,5.512843,0,0,OVO:SA:CTP7837,Europe/Paris,,OVO, +OVO:SP:7846,1,"OFFICE DE TOURISME",45.43283,5.516494,0,0,OVO:SA:CTP7846,Europe/Paris,,OVO, +OVO:SP:7849,1,"OFFICE DE TOURISME",45.432549,5.516267,0,0,OVO:SA:CTP7846,Europe/Paris,,OVO, +OVO:SP:7851,1,"LES MAURES",45.441932,5.560187,0,0,OVO:SA:CTP7851,Europe/Paris,,OVO, +OVO:SP:7852,1,"LES MAURES",45.441883,5.560096,0,0,OVO:SA:CTP7851,Europe/Paris,,OVO, +OVO:SP:7854,1,"VILLAGE",45.413559,5.556836,0,0,OVO:SA:CTP7854,Europe/Paris,,OVO, +OVO:SP:7856,1,"VILLAGE",45.41315,5.55712,0,0,OVO:SA:CTP7854,Europe/Paris,,OVO, +OVO:SP:7858,1,"VILLAGE",45.439744,5.595461,0,0,OVO:SA:CTP7858,Europe/Paris,,OVO, +OVO:SP:7860,1,"LA SARRA",45.43716,5.583094,0,0,OVO:SA:CTP7860,Europe/Paris,,OVO, +OVO:SP:7862,1,"LA SARRA",45.437185,5.582767,0,0,OVO:SA:CTP7860,Europe/Paris,,OVO, +OVO:SP:7864,1,"L ARSENAL",45.430948,5.567992,0,0,OVO:SA:CTP7864,Europe/Paris,,OVO, +OVO:SP:7866,1,"L ARSENAL",45.430424,5.567432,0,0,OVO:SA:CTP7864,Europe/Paris,,OVO, +OVO:SP:7869,1,"ST SULP.RIVOIRE RIVOIRES",45.459914,5.590281,0,0,OVO:SA:CTP7869,Europe/Paris,,OVO, +OVO:SP:7871,1,"ST SULP.RIVOIRE RIVOIRES",45.459934,5.590361,0,0,OVO:SA:CTP7869,Europe/Paris,,OVO, +OVO:SP:7872,1,"CHAPELLE DE MERLAS",45.452311,5.678054,0,0,OVO:SA:CTP7872,Europe/Paris,,OVO, +OVO:SP:7874,1,"CHAPELLE DE MERLAS",45.452201,5.677865,0,0,OVO:SA:CTP7872,Europe/Paris,,OVO, +OVO:SP:7878,1,"FAGOTIERE",45.449441,5.676388,0,0,OVO:SA:CTP7878,Europe/Paris,,OVO, +OVO:SP:7880,1,"FAGOTIERE",45.449416,5.676245,0,0,OVO:SA:CTP7878,Europe/Paris,,OVO, +OVO:SP:7882,1,"NOUVELIERE",45.433675,5.644594,0,0,OVO:SA:CTP7882,Europe/Paris,,OVO, +OVO:SP:7884,1,"NOUVELIERE",45.433807,5.644742,0,0,OVO:SA:CTP7882,Europe/Paris,,OVO, +OVO:SP:7886,1,"PIVOTIERE",45.440269,5.660234,0,0,OVO:SA:CTP7886,Europe/Paris,,OVO, +OVO:SP:7887,1,"PIVOTIERE",45.439901,5.660091,0,0,OVO:SA:CTP7886,Europe/Paris,,OVO, +OVO:SP:7889,1,"LE BURLET",45.433641,5.65022,0,0,OVO:SA:CTP7889,Europe/Paris,,OVO, +OVO:SP:7890,1,"LE BURLET",45.433511,5.650693,0,0,OVO:SA:CTP7889,Europe/Paris,,OVO, +OVO:SP:7892,1,"StG.enVALDAINE CHOCHE LE PARIS",45.45558,5.648629,0,0,OVO:SA:CTP7892,Europe/Paris,,OVO, +OVO:SP:7893,1,"StG.enVALDAINE CHOCHE LE PARIS",45.45598,5.647608,0,0,OVO:SA:CTP7892,Europe/Paris,,OVO, +OVO:SP:7906,1,"StG.enVALDAINE LES BROSSES",45.454208,5.643863,0,0,OVO:SA:CTP7906,Europe/Paris,,OVO, +OVO:SP:7908,1,"StG.enVALDAINE LES BROSSES",45.454154,5.644215,0,0,OVO:SA:CTP7906,Europe/Paris,,OVO, +OVO:SP:7910,1,"StG.enVALDAINE GENDARMERIE",45.451619,5.630472,0,0,OVO:SA:CTP7910,Europe/Paris,,OVO, +OVO:SP:7912,1,"StG.enVALDAINE GENDARMERIE",45.450763,5.630207,0,0,OVO:SA:CTP7910,Europe/Paris,,OVO, +OVO:SP:7931,1,"MIR.lesECHELLES EGLISE",45.42821,5.707374,0,0,OVO:SA:CTP7931,Europe/Paris,,OVO, +OVO:SP:7933,1,"MIR.lesECHELLES EGLISE",45.428143,5.707264,0,0,OVO:SA:CTP7931,Europe/Paris,,OVO, +OVO:SP:8676,1,"VILLAGE EGLISE",45.489384,5.592799,0,0,OVO:SA:CTP8676,Europe/Paris,,OVO, +OVO:SP:8679,1,"JALAMION",45.498606,5.587948,0,0,OVO:SA:CTP8679,Europe/Paris,,OVO, +OVO:SP:8681,1,"JALAMION",45.498591,5.588031,0,0,OVO:SA:CTP8679,Europe/Paris,,OVO, +OVO:SP:8689,1,"VILLAGE EGLISE",45.489691,5.592877,0,0,OVO:SA:CTP8676,Europe/Paris,,OVO, +OVO:SP:8693,1,"TRANSFO EDF",45.484948,5.577738,0,0,OVO:SA:CTP8693,Europe/Paris,,OVO, +OVO:SP:8695,1,"COURBON",45.479468,5.567827,0,0,OVO:SA:CTP8695,Europe/Paris,,OVO, +OVO:SP:8697,1,"COURBON",45.478954,5.567676,0,0,OVO:SA:CTP8695,Europe/Paris,,OVO, +OVO:SP:8701,1,"TRIPIER",45.473333,5.566176,0,0,OVO:SA:CTP8701,Europe/Paris,,OVO, +OVO:SP:8703,1,"TRIPIER",45.474017,5.566457,0,0,OVO:SA:CTP8701,Europe/Paris,,OVO, +OVO:SP:8708,1,"PALADRU VILLAGE",45.476564,5.554909,0,0,OVO:SA:CTP8708,Europe/Paris,,OVO, +OVO:SP:8710,1,"PALADRU VILLAGE",45.476274,5.554365,0,0,OVO:SA:CTP8708,Europe/Paris,,OVO, +OVO:SP:8714,1,"PALADRU ST P DE PALADRU",45.488567,5.572326,0,0,OVO:SA:CTP8714,Europe/Paris,,OVO, +OVO:SP:8716,1,"PALADRU ST P DE PALADRU",45.488187,5.571819,0,0,OVO:SA:CTP8714,Europe/Paris,,OVO, +OVO:SP:8718,1,"PALADRU STADE",45.48394,5.567596,0,0,OVO:SA:CTP8718,Europe/Paris,,OVO, +OVO:SP:8720,1,"PALADRU STADE",45.483035,5.56707,0,0,OVO:SA:CTP8718,Europe/Paris,,OVO, +OVO:SP:8722,1,"VERONNIERE",45.467022,5.557888,0,0,OVO:SA:CTP8722,Europe/Paris,,OVO, +OVO:SP:8725,1,"PALADRU GARAGE RENAULT",45.480204,5.565073,0,0,OVO:SA:CTP8725,Europe/Paris,,OVO, +OVO:SP:8727,1,"PALADRU GARAGE RENAULT",45.479977,5.564623,0,0,OVO:SA:CTP8725,Europe/Paris,,OVO, +OVO:SP:8729,1,"PALADRU LA TRUITIERE",45.477856,5.559019,0,0,OVO:SA:CTP8729,Europe/Paris,,OVO, +OVO:SP:8731,1,"PALADRU LA TRUITIERE",45.477848,5.559175,0,0,OVO:SA:CTP8729,Europe/Paris,,OVO, +OVO:SP:8733,1,"ST SULP.RIVOIRE BOURG",45.4704,5.609903,0,0,OVO:SA:CTP8733,Europe/Paris,,OVO, +OVO:SP:8735,1,"ST SULP.RIVOIRE BOURG",45.470503,5.60982,0,0,OVO:SA:CTP8733,Europe/Paris,,OVO, +OVO:SP:8736,1,"ST SULP.RIVOIRE LA PLATIERE",45.479686,5.616636,0,0,OVO:SA:CTP8736,Europe/Paris,,OVO, +OVO:SP:8738,1,"ST SULP.RIVOIRE LA PLATIERE",45.479731,5.616617,0,0,OVO:SA:CTP8736,Europe/Paris,,OVO, +OVO:SP:8740,1,"ST SULP.RIVOIRE FERME MOLLARD",45.477273,5.614372,0,0,OVO:SA:CTP8740,Europe/Paris,,OVO, +OVO:SP:8742,1,"ST SULP.RIVOIRE FERME MOLLARD",45.477247,5.614305,0,0,OVO:SA:CTP8740,Europe/Paris,,OVO, +OVO:SP:8744,1,"ST SULP.RIVOIRE CHATEAU D EAU",45.465929,5.615974,0,0,OVO:SA:CTP8744,Europe/Paris,,OVO, +OVO:SP:8746,1,"ST SULP.RIVOIRE CHATEAU D EAU",45.465962,5.615999,0,0,OVO:SA:CTP8744,Europe/Paris,,OVO, +OVO:SP:8748,1,"PALADRU LES TROIX CHENES",45.503608,5.570959,0,0,OVO:SA:CTP8748,Europe/Paris,,OVO, +OVO:SP:8750,1,"PALADRU LES TROIX CHENES",45.503668,5.571041,0,0,OVO:SA:CTP8748,Europe/Paris,,OVO, +OVO:SP:8752,1,"StG.enVALDAINE LE PLATON",45.484952,5.632907,0,0,OVO:SA:CTP8752,Europe/Paris,,OVO, +OVO:SP:8754,1,"PICOUDIERE",45.460555,5.681555,0,0,OVO:SA:CTP8754,Europe/Paris,,OVO, +OVO:SP:8756,1,"PICOUDIERE",45.460674,5.68145,0,0,OVO:SA:CTP8754,Europe/Paris,,OVO, +OVO:SP:8760,1,"StG.enVALDAINE LES HOPITAUX",45.471785,5.63198,0,0,OVO:SA:CTP8760,Europe/Paris,,OVO, +OVO:SP:8762,1,"StG.enVALDAINE LES HOPITAUX",45.471765,5.632056,0,0,OVO:SA:CTP8760,Europe/Paris,,OVO, +OVO:SP:8764,1,"StG.enVALDAINE L ORCIERE",45.478348,5.62291,0,0,OVO:SA:CTP8764,Europe/Paris,,OVO, +OVO:SP:8766,1,"StG.enVALDAINE L ORCIERE",45.478403,5.622916,0,0,OVO:SA:CTP8764,Europe/Paris,,OVO, +OVO:SP:8794,1,"ST BUEIL LA ROCHE",45.475827,5.680971,0,0,OVO:SA:CTP8794,Europe/Paris,,OVO, +OVO:SP:8796,1,"ST BUEIL LA ROCHE",45.475796,5.680946,0,0,OVO:SA:CTP8794,Europe/Paris,,OVO, +OVO:SP:8797,1,"StG.enVALDAINE CHAMPET",45.464983,5.649857,0,0,OVO:SA:CTP8797,Europe/Paris,,OVO, +OVO:SP:8799,1,"StG.enVALDAINE CHAMPET",45.465156,5.650379,0,0,OVO:SA:CTP8797,Europe/Paris,,OVO, +OVO:SP:8805,1,"StG.enVALDAINE LA PALE",45.467225,5.660102,0,0,OVO:SA:CTP8805,Europe/Paris,,OVO, +OVO:SP:8807,1,"StG.enVALDAINE LA PALE",45.467279,5.660602,0,0,OVO:SA:CTP8805,Europe/Paris,,OVO, +OVO:SP:8811,1,"CENTRE",45.488869,5.647898,0,0,OVO:SA:CTP8811,Europe/Paris,,OVO, +OVO:SP:8813,1,"CENTRE",45.489053,5.648118,0,0,OVO:SA:CTP8811,Europe/Paris,,OVO, +OVO:SP:8815,1,"LA SAUGE",45.48202,5.658424,0,0,OVO:SA:CTP8815,Europe/Paris,,OVO, +OVO:SP:8817,1,"LA SAUGE",45.481976,5.658278,0,0,OVO:SA:CTP8815,Europe/Paris,,OVO, +OVO:SP:8823,1,"StG.enVALDAINE LA GLACIERE",45.463538,5.63148,0,0,OVO:SA:CTP8825,Europe/Paris,,OVO, +OVO:SP:8825,1,"StG.enVALDAINE LA GLACIERE",45.463441,5.63195,0,0,OVO:SA:CTP8825,Europe/Paris,,OVO, +OVO:SP:8828,1,"StG.enVALDAINE LA GLACIERE",45.463547,5.631395,0,0,OVO:SA:CTP8825,Europe/Paris,,OVO, +OVO:SP:8833,1,"ST BUEIL RD82",45.480618,5.691068,0,0,OVO:SA:CTP8833,Europe/Paris,,OVO, +OVO:SP:8835,1,"ST BUEIL RD82",45.480443,5.691018,0,0,OVO:SA:CTP8833,Europe/Paris,,OVO, +OVO:SP:8857,1,"EGLISE",45.484476,5.710091,0,0,OVO:SA:CTP8857,Europe/Paris,,OVO, +OVO:SP:9517,1,"BATIE DIVISIN MAIRIE",45.509304,5.596672,0,0,OVO:SA:CTP9517,Europe/Paris,,OVO, +OVO:SP:9518,1,"BATIE DIVISIN MAIRIE",45.509529,5.596748,0,0,OVO:SA:CTP9517,Europe/Paris,,OVO, +OVO:SP:9550,1,"CENTRE",45.525108,5.581395,0,0,OVO:SA:CTP9550,Europe/Paris,,OVO, +OVO:SP:9552,1,"CENTRE",45.525151,5.581268,0,0,OVO:SA:CTP9550,Europe/Paris,,OVO, +OZU:SP:1,1,"Abattoirs",43.718107,7.284812,0,0,OZU:SA:CTP2,Europe/Paris,,OZU, +OZU:SP:10,1,"Aéroport T.2",43.660701,7.205448,0,0,OZU:SA:CTP53286,Europe/Paris,,OZU, +OZU:SP:100,1,"Pierre Sola",43.707063,7.287007,0,0,OZU:SA:CTP100,Europe/Paris,,OZU, +OZU:SP:1000,1,"Panoramic",43.727278,7.257888,0,0,OZU:SA:CTP1001,Europe/Paris,,OZU, +OZU:SP:1001,1,"Panoramic",43.726862,7.257927,0,0,OZU:SA:CTP1001,Europe/Paris,,OZU, +OZU:SP:1004,1,"Papyrus",43.704895,7.29493,0,0,OZU:SA:CTP1005,Europe/Paris,,OZU, +OZU:SP:1005,1,"Papyrus",43.705006,7.294971,0,0,OZU:SA:CTP1005,Europe/Paris,,OZU, +OZU:SP:1006,1,"Paradis",43.705525,7.245643,0,0,OZU:SA:CTP1006,Europe/Paris,,OZU, +OZU:SP:1007,1,"Paradis",43.706264,7.246228,0,0,OZU:SA:CTP1006,Europe/Paris,,OZU, +OZU:SP:1008,1,"Parc à Fourrages",43.726377,7.286314,0,0,OZU:SA:CTP1008,Europe/Paris,,OZU, +OZU:SP:1009,1,"Parc à Fourrages",43.727078,7.285195,0,0,OZU:SA:CTP1008,Europe/Paris,,OZU, +OZU:SP:101,1,"Béarn",43.707846,7.276185,0,0,OZU:SA:CTP101,Europe/Paris,,OZU, +OZU:SP:1010,1,"Parc Boron",43.710129,7.294434,0,0,OZU:SA:CTP1011,Europe/Paris,,OZU, +OZU:SP:1011,1,"Parc Boron",43.709488,7.294606,0,0,OZU:SA:CTP1011,Europe/Paris,,OZU, +OZU:SP:1012,1,"Parc des Miniatures",43.693952,7.230546,0,0,OZU:SA:CTP1013,Europe/Paris,,OZU, +OZU:SP:1013,1,"Parc des Miniatures",43.693936,7.230693,0,0,OZU:SA:CTP1013,Europe/Paris,,OZU, +OZU:SP:1014,1,"Parc Impérial",43.705208,7.250855,0,0,OZU:SA:CTP1015,Europe/Paris,,OZU, +OZU:SP:1015,1,"Parc Impérial",43.704739,7.251647,0,0,OZU:SA:CTP1015,Europe/Paris,,OZU, +OZU:SP:1016,1,"Parc Impérial / Gambetta",43.704085,7.256133,0,0,OZU:SA:CTP1016,Europe/Paris,,OZU, +OZU:SP:1017,1,"Parc Impérial / Gambetta",43.704492,7.256094,0,0,OZU:SA:CTP1016,Europe/Paris,,OZU, +OZU:SP:1018,1,"Parc Impérial Weygand",43.703808,7.250734,0,0,OZU:SA:CTP1018,Europe/Paris,,OZU, +OZU:SP:1019,1,"Parc Louisa",43.696125,7.292425,0,0,OZU:SA:CTP1020,Europe/Paris,,OZU, +OZU:SP:102,1,"Béarn",43.708525,7.275922,0,0,OZU:SA:CTP101,Europe/Paris,,OZU, +OZU:SP:1020,1,"Parc Louisa",43.696123,7.292473,0,0,OZU:SA:CTP1020,Europe/Paris,,OZU, +OZU:SP:1021,1,"Parc Orangini",43.723614,7.271692,0,0,OZU:SA:CTP1022,Europe/Paris,,OZU, +OZU:SP:1022,1,"Parc Orangini",43.723705,7.271662,0,0,OZU:SA:CTP1022,Europe/Paris,,OZU, +OZU:SP:1024,1,"Passerelle Andreis",43.713084,7.282576,0,0,OZU:SA:CTP1024,Europe/Paris,,OZU, +OZU:SP:1025,1,"Passerelle des Abattoirs",43.720608,7.283676,0,0,OZU:SA:CTP1025,Europe/Paris,,OZU, +OZU:SP:1026,1,"Passerelle des Abattoirs",43.719259,7.283447,0,0,OZU:SA:CTP1025,Europe/Paris,,OZU, +OZU:SP:1027,1,"Passy",43.699572,7.25377,0,0,OZU:SA:CTP1027,Europe/Paris,,OZU, +OZU:SP:1028,1,"Hôpital Pasteur / Clinique Saint-François",43.722973,7.281982,0,0,OZU:SA:CTP2694,Europe/Paris,,OZU, +OZU:SP:1029,1,"Hôpital Pasteur",43.723407,7.283112,0,0,OZU:SA:CTP1502,Europe/Paris,,OZU, +OZU:SP:103,1,"Beau Site",43.700482,7.24743,0,0,OZU:SA:CTP103,Europe/Paris,,OZU, +OZU:SP:1030,1,"Hôpital Pasteur",43.723325,7.282348,0,0,OZU:SA:CTP1502,Europe/Paris,,OZU, +OZU:SP:1031,1,"Carabacel",43.703855,7.275008,0,0,OZU:SA:CTP1032,Europe/Paris,,OZU, +OZU:SP:1032,1,"Carabacel",43.703745,7.275259,0,0,OZU:SA:CTP1032,Europe/Paris,,OZU, +OZU:SP:1033,1,"Pastorelli",43.701204,7.270956,0,0,OZU:SA:CTP1033,Europe/Paris,,OZU, +OZU:SP:1034,1,"Piloudrome",43.699482,7.297757,0,0,OZU:SA:CTP1035,Europe/Paris,,OZU, +OZU:SP:1035,1,"Piloudrome",43.699365,7.297783,0,0,OZU:SA:CTP1035,Europe/Paris,,OZU, +OZU:SP:1037,1,"Pessicart Inférieur",43.715442,7.246014,0,0,OZU:SA:CTP1037,Europe/Paris,,OZU, +OZU:SP:1038,1,"Pessicart / Roi Robert",43.715326,7.246004,0,0,OZU:SA:CTP1038,Europe/Paris,,OZU, +OZU:SP:1039,1,"Petit Bosquet",43.730038,7.243708,0,0,OZU:SA:CTP1039,Europe/Paris,,OZU, +OZU:SP:104,1,"Beau Site",43.700438,7.247402,0,0,OZU:SA:CTP103,Europe/Paris,,OZU, +OZU:SP:1040,1,"Petit Bosquet",43.730184,7.243658,0,0,OZU:SA:CTP1039,Europe/Paris,,OZU, +OZU:SP:1041,1,"Petit Pessicart",43.722395,7.239833,0,0,OZU:SA:CTP1041,Europe/Paris,,OZU, +OZU:SP:1042,1,"Petit Pessicart",43.722232,7.239881,0,0,OZU:SA:CTP1041,Europe/Paris,,OZU, +OZU:SP:1043,1,"Petit Pont",43.707448,7.196857,0,0,OZU:SA:CTP1043,Europe/Paris,,OZU, +OZU:SP:1044,1,"Petit Pont",43.706792,7.19688,0,0,OZU:SA:CTP1043,Europe/Paris,,OZU, +OZU:SP:1045,1,"Petit Saint-Pierre",43.724221,7.23234,0,0,OZU:SA:CTP1045,Europe/Paris,,OZU, +OZU:SP:1046,1,"Petit Saint-Pierre",43.724103,7.232343,0,0,OZU:SA:CTP1045,Europe/Paris,,OZU, +OZU:SP:1047,1,"Pietruschi",43.739479,7.276919,0,0,OZU:SA:CTP1047,Europe/Paris,,OZU, +OZU:SP:1048,1,"Pietruschi",43.739184,7.277054,0,0,OZU:SA:CTP1047,Europe/Paris,,OZU, +OZU:SP:1049,1,"Pignata",43.690545,7.214056,0,0,OZU:SA:CTP1049,Europe/Paris,,OZU, +OZU:SP:1050,1,"Pignata",43.690562,7.213884,0,0,OZU:SA:CTP1049,Europe/Paris,,OZU, +OZU:SP:1052,1,"Place de la Lanterne",43.683196,7.217845,0,0,OZU:SA:CTP1052,Europe/Paris,,OZU, +OZU:SP:1053,1,"Place de la Lanterne",43.683245,7.21816,0,0,OZU:SA:CTP1052,Europe/Paris,,OZU, +OZU:SP:1054,1,"Place de l'Ariane",43.738092,7.303692,0,0,OZU:SA:CTP1054,Europe/Paris,,OZU, +OZU:SP:1055,1,"Platane",43.712066,7.24797,0,0,OZU:SA:CTP1056,Europe/Paris,,OZU, +OZU:SP:1056,1,"Platane",43.711896,7.247943,0,0,OZU:SA:CTP1056,Europe/Paris,,OZU, +OZU:SP:1057,1,"Plateau de Rimiez",43.741809,7.274227,0,0,OZU:SA:CTP1058,Europe/Paris,,OZU, +OZU:SP:1058,1,"Plateau de Rimiez",43.74209,7.273978,0,0,OZU:SA:CTP1058,Europe/Paris,,OZU, +OZU:SP:1059,1,"Pléiade",43.688628,7.235748,0,0,OZU:SA:CTP1060,Europe/Paris,,OZU, +OZU:SP:10592,1,"San Miqueu",43.712139,7.331974,0,0,OZU:SA:CTP8203,Europe/Paris,,OZU, +OZU:SP:1060,1,"Pléiade",43.688603,7.235894,0,0,OZU:SA:CTP1060,Europe/Paris,,OZU, +OZU:SP:1061,1,"PN Gambetta",43.710632,7.255929,0,0,OZU:SA:CTP1063,Europe/Paris,,OZU, +OZU:SP:10619,1,"Paros",43.681497,7.185348,0,0,OZU:SA:CTP10619,Europe/Paris,,OZU, +OZU:SP:10620,1,"Rodin",43.679309,7.18695,0,0,OZU:SA:CTP10620,Europe/Paris,,OZU, +OZU:SP:1063,1,"PN Gambetta",43.71039,7.255921,0,0,OZU:SA:CTP1063,Europe/Paris,,OZU, +OZU:SP:1064,1,"PN Gambetta",43.710061,7.255631,0,0,OZU:SA:CTP1063,Europe/Paris,,OZU, +OZU:SP:1065,1,"Pont A.France",43.740606,7.308569,0,0,OZU:SA:CTP1065,Europe/Paris,,OZU, +OZU:SP:1066,1,"Pont Barla",43.703156,7.278739,0,0,OZU:SA:CTP1066,Europe/Paris,,OZU, +OZU:SP:1067,1,"Pont Barla",43.702757,7.278763,0,0,OZU:SA:CTP1066,Europe/Paris,,OZU, +OZU:SP:1068,1,"Pont Barla",43.703492,7.279235,0,0,OZU:SA:CTP1066,Europe/Paris,,OZU, +OZU:SP:1069,1,"Pont Barla",43.703107,7.27837,0,0,OZU:SA:CTP1066,Europe/Paris,,OZU, +OZU:SP:107,1,"Beauregard",43.715689,7.248307,0,0,OZU:SA:CTP107,Europe/Paris,,OZU, +OZU:SP:1070,1,"Pont de l'Ariane / Nice",43.735335,7.301539,0,0,OZU:SA:CTP1511,Europe/Paris,,OZU, +OZU:SP:1071,1,"Pont du Génie",43.738653,7.221693,0,0,OZU:SA:CTP1071,Europe/Paris,,OZU, +OZU:SP:1073,1,"Pont V.Auriol",43.716269,7.283038,0,0,OZU:SA:CTP556,Europe/Paris,,OZU, +OZU:SP:1074,1,"Pont V.Auriol",43.716536,7.282714,0,0,OZU:SA:CTP556,Europe/Paris,,OZU, +OZU:SP:1075,1,"Pontrémoli",43.686432,7.198787,0,0,OZU:SA:CTP1075,Europe/Paris,,OZU, +OZU:SP:1076,1,"Pontrémoli",43.685237,7.198723,0,0,OZU:SA:CTP1075,Europe/Paris,,OZU, +OZU:SP:1077,1,"Porte Est",43.742693,7.302188,0,0,OZU:SA:CTP1077,Europe/Paris,,OZU, +OZU:SP:1078,1,"Porte Est",43.743588,7.302644,0,0,OZU:SA:CTP1077,Europe/Paris,,OZU, +OZU:SP:1079,1,"Porte Nord / Sainte-Marguerite",43.678229,7.211178,0,0,OZU:SA:CTP1079,Europe/Paris,,OZU, +OZU:SP:108,1,"Beauregard",43.715766,7.247817,0,0,OZU:SA:CTP107,Europe/Paris,,OZU, +OZU:SP:1080,1,"Porte Nord / Sainte-Marguerite",43.678022,7.211744,0,0,OZU:SA:CTP1079,Europe/Paris,,OZU, +OZU:SP:1081,1,"Porte Nord",43.746669,7.29885,0,0,OZU:SA:CTP1081,Europe/Paris,,OZU, +OZU:SP:1082,1,"Porte Nord",43.746581,7.298969,0,0,OZU:SA:CTP1081,Europe/Paris,,OZU, +OZU:SP:1083,1,"Porte Ouest",43.749252,7.29832,0,0,OZU:SA:CTP1083,Europe/Paris,,OZU, +OZU:SP:1084,1,"Porte Ouest",43.748897,7.298647,0,0,OZU:SA:CTP1083,Europe/Paris,,OZU, +OZU:SP:1085,1,"Portiques",43.716545,7.22384,0,0,OZU:SA:CTP1085,Europe/Paris,,OZU, +OZU:SP:1086,1,"Portiques",43.716842,7.223647,0,0,OZU:SA:CTP1085,Europe/Paris,,OZU, +OZU:SP:1087,1,"Les Mûriers",43.736652,7.305815,0,0,OZU:SA:CTP1087,Europe/Paris,,OZU, +OZU:SP:1088,1,"Poste de Saint-Roman",43.745593,7.21558,0,0,OZU:SA:CTP1088,Europe/Paris,,OZU, +OZU:SP:1089,1,"Poste Essence",43.725008,7.21609,0,0,OZU:SA:CTP1089,Europe/Paris,,OZU, +OZU:SP:109,1,"Bella Vista",43.732774,7.269307,0,0,OZU:SA:CTP109,Europe/Paris,,OZU, +OZU:SP:1090,1,"Poste Essence",43.724817,7.215949,0,0,OZU:SA:CTP1089,Europe/Paris,,OZU, +OZU:SP:1091,1,"Poste Thiers",43.703267,7.260072,0,0,OZU:SA:CTP1092,Europe/Paris,,OZU, +OZU:SP:1092,1,"Poste Thiers",43.703392,7.260294,0,0,OZU:SA:CTP1092,Europe/Paris,,OZU, +OZU:SP:1093,1,"La Poudrière",43.7232,7.217053,0,0,OZU:SA:CTP623,Europe/Paris,,OZU, +OZU:SP:1094,1,"Pré Catelan",43.721264,7.275239,0,0,OZU:SA:CTP1094,Europe/Paris,,OZU, +OZU:SP:1095,1,"Pré Catelan",43.721024,7.275368,0,0,OZU:SA:CTP1094,Europe/Paris,,OZU, +OZU:SP:1096,1,"Pré Fossati",43.700469,7.29413,0,0,OZU:SA:CTP1096,Europe/Paris,,OZU, +OZU:SP:1097,1,"Pré Fossati",43.700919,7.294318,0,0,OZU:SA:CTP1096,Europe/Paris,,OZU, +OZU:SP:1098,1,"Primavera",43.681333,7.214422,0,0,OZU:SA:CTP1098,Europe/Paris,,OZU, +OZU:SP:1099,1,"Primavera",43.681249,7.214303,0,0,OZU:SA:CTP1098,Europe/Paris,,OZU, +OZU:SP:11,1,"Aéroport / Promenade",43.666458,7.211375,0,0,OZU:SA:CTP50044,Europe/Paris,,OZU, +OZU:SP:110,1,"Bell'azur",43.717353,7.250948,0,0,OZU:SA:CTP110,Europe/Paris,,OZU, +OZU:SP:1101,1,"Primerose / Dauphiné",43.705246,7.250001,0,0,OZU:SA:CTP1567,Europe/Paris,,OZU, +OZU:SP:1102,1,"Les Primevères",43.678506,7.213411,0,0,OZU:SA:CTP818,Europe/Paris,,OZU, +OZU:SP:1103,1,"Prince de Galles",43.717308,7.272313,0,0,OZU:SA:CTP1104,Europe/Paris,,OZU, +OZU:SP:1104,1,"Prince de Galles",43.716896,7.272078,0,0,OZU:SA:CTP1104,Europe/Paris,,OZU, +OZU:SP:1105,1,"Prince de Galles",43.716714,7.274672,0,0,OZU:SA:CTP1104,Europe/Paris,,OZU, +OZU:SP:1106,1,"Prince de Galles",43.716393,7.274605,0,0,OZU:SA:CTP1104,Europe/Paris,,OZU, +OZU:SP:1108,1,"Promenade des Arts",43.700505,7.278722,0,0,OZU:SA:CTP2651,Europe/Paris,,OZU, +OZU:SP:1109,1,"Provinces",43.679274,7.217347,0,0,OZU:SA:CTP1109,Europe/Paris,,OZU, +OZU:SP:111,1,"Belle Niçoise",43.699663,7.223153,0,0,OZU:SA:CTP111,Europe/Paris,,OZU, +OZU:SP:1110,1,"Provinces",43.678879,7.21812,0,0,OZU:SA:CTP1109,Europe/Paris,,OZU, +OZU:SP:1112,1,"Puget",43.717474,7.262741,0,0,OZU:SA:CTP1112,Europe/Paris,,OZU, +OZU:SP:1113,1,"Puget",43.717554,7.262773,0,0,OZU:SA:CTP1112,Europe/Paris,,OZU, +OZU:SP:1114,1,"Raccourci",43.70278,7.219535,0,0,OZU:SA:CTP1114,Europe/Paris,,OZU, +OZU:SP:1115,1,"Raccourci",43.702834,7.219539,0,0,OZU:SA:CTP1114,Europe/Paris,,OZU, +OZU:SP:1116,1,"Raccourci Corniche",43.714415,7.235284,0,0,OZU:SA:CTP1116,Europe/Paris,,OZU, +OZU:SP:1117,1,"Raccourci Corniche",43.713873,7.235337,0,0,OZU:SA:CTP1116,Europe/Paris,,OZU, +OZU:SP:1118,1,"Raccourci N°1",43.695793,7.240398,0,0,OZU:SA:CTP1118,Europe/Paris,,OZU, +OZU:SP:1119,1,"Raccourci N°1",43.695507,7.24015,0,0,OZU:SA:CTP1118,Europe/Paris,,OZU, +OZU:SP:112,1,"Belle Niçoise",43.699942,7.222755,0,0,OZU:SA:CTP111,Europe/Paris,,OZU, +OZU:SP:1120,1,"Raccourci N°5",43.712712,7.220772,0,0,OZU:SA:CTP1120,Europe/Paris,,OZU, +OZU:SP:1121,1,"Raccourci N°5",43.712714,7.220897,0,0,OZU:SA:CTP1120,Europe/Paris,,OZU, +OZU:SP:1122,1,"Auda",43.699703,7.234404,0,0,OZU:SA:CTP1122,Europe/Paris,,OZU, +OZU:SP:1123,1,"Auda",43.699924,7.2341,0,0,OZU:SA:CTP1122,Europe/Paris,,OZU, +OZU:SP:1125,1,"Raimbaldi / Lepante",43.706823,7.267618,0,0,OZU:SA:CTP1125,Europe/Paris,,OZU, +OZU:SP:1126,1,"Raoul Dufy",43.680421,7.215473,0,0,OZU:SA:CTP1126,Europe/Paris,,OZU, +OZU:SP:1127,1,"Raoul Dufy",43.680011,7.215984,0,0,OZU:SA:CTP1126,Europe/Paris,,OZU, +OZU:SP:1128,1,"Ratti",43.709668,7.274941,0,0,OZU:SA:CTP1129,Europe/Paris,,OZU, +OZU:SP:1129,1,"Ratti",43.710623,7.274552,0,0,OZU:SA:CTP1129,Europe/Paris,,OZU, +OZU:SP:113,1,"Belle Rive",43.694248,7.295927,0,0,OZU:SA:CTP114,Europe/Paris,,OZU, +OZU:SP:1130,1,"Relais de la Jeunesse",43.729637,7.271954,0,0,OZU:SA:CTP1130,Europe/Paris,,OZU, +OZU:SP:1131,1,"Relais de la Jeunesse",43.729574,7.271749,0,0,OZU:SA:CTP1130,Europe/Paris,,OZU, +OZU:SP:1132,1,"Résidence",43.688757,7.206358,0,0,OZU:SA:CTP1132,Europe/Paris,,OZU, +OZU:SP:1133,1,"Résidence",43.68861,7.206432,0,0,OZU:SA:CTP1132,Europe/Paris,,OZU, +OZU:SP:1134,1,"Résidence de Bellet",43.697598,7.238133,0,0,OZU:SA:CTP1134,Europe/Paris,,OZU, +OZU:SP:1135,1,"Résidence de Bellet",43.697658,7.238001,0,0,OZU:SA:CTP1134,Europe/Paris,,OZU, +OZU:SP:1136,1,"Résidence de la Costière",43.728319,7.228743,0,0,OZU:SA:CTP1137,Europe/Paris,,OZU, +OZU:SP:1137,1,"Résidence de la Costière",43.728086,7.228736,0,0,OZU:SA:CTP1137,Europe/Paris,,OZU, +OZU:SP:1138,1,"Résidence des Baumettes",43.698125,7.249164,0,0,OZU:SA:CTP1138,Europe/Paris,,OZU, +OZU:SP:1139,1,"Résidence Universitaire",43.693257,7.232546,0,0,OZU:SA:CTP1140,Europe/Paris,,OZU, +OZU:SP:114,1,"Belle Rive",43.694355,7.295899,0,0,OZU:SA:CTP114,Europe/Paris,,OZU, +OZU:SP:1140,1,"Résidence Universitaire",43.692629,7.232902,0,0,OZU:SA:CTP1140,Europe/Paris,,OZU, +OZU:SP:1141,1,"Righi",43.714151,7.250646,0,0,OZU:SA:CTP1141,Europe/Paris,,OZU, +OZU:SP:1142,1,"Righi",43.713869,7.250522,0,0,OZU:SA:CTP1141,Europe/Paris,,OZU, +OZU:SP:1143,1,"Rimiez Les Sources",43.741797,7.277257,0,0,OZU:SA:CTP1143,Europe/Paris,,OZU, +OZU:SP:1144,1,"Rimiez Saint-George",43.733163,7.276781,0,0,OZU:SA:CTP1144,Europe/Paris,,OZU, +OZU:SP:1145,1,"Rimiez Saint-George",43.73328,7.276778,0,0,OZU:SA:CTP1144,Europe/Paris,,OZU, +OZU:SP:1147,1,"Riquier",43.705337,7.29027,0,0,OZU:SA:CTP1149,Europe/Paris,,OZU, +OZU:SP:1148,1,"Riquier",43.704572,7.290464,0,0,OZU:SA:CTP1149,Europe/Paris,,OZU, +OZU:SP:1149,1,"Riquier",43.705686,7.289729,0,0,OZU:SA:CTP1149,Europe/Paris,,OZU, +OZU:SP:115,1,"Bello Sguardo",43.738915,7.272907,0,0,OZU:SA:CTP115,Europe/Paris,,OZU, +OZU:SP:1150,1,"Riquier",43.705419,7.289668,0,0,OZU:SA:CTP1149,Europe/Paris,,OZU, +OZU:SP:1151,1,"Castel",43.708484,7.295637,0,0,OZU:SA:CTP1151,Europe/Paris,,OZU, +OZU:SP:1152,1,"Riquier",43.70517,7.289795,0,0,OZU:SA:CTP1149,Europe/Paris,,OZU, +OZU:SP:1155,1,"Risso / Palais",43.708362,7.283419,0,0,OZU:SA:CTP1155,Europe/Paris,,OZU, +OZU:SP:1156,1,"Rivoli",43.696593,7.259086,0,0,OZU:SA:CTP1156,Europe/Paris,,OZU, +OZU:SP:1157,1,"Rivoli / Joffre",43.697492,7.259325,0,0,OZU:SA:CTP1157,Europe/Paris,,OZU, +OZU:SP:1158,1,"Robini",43.681699,7.198706,0,0,OZU:SA:CTP53359,Europe/Paris,,OZU, +OZU:SP:1159,1,"Roland Garros",43.707463,7.270169,0,0,OZU:SA:CTP1160,Europe/Paris,,OZU, +OZU:SP:116,1,"Bello Sguardo",43.738743,7.273116,0,0,OZU:SA:CTP115,Europe/Paris,,OZU, +OZU:SP:1160,1,"Roland Garros",43.707473,7.270145,0,0,OZU:SA:CTP1160,Europe/Paris,,OZU, +OZU:SP:1161,1,"Rond Point",43.696778,7.232774,0,0,OZU:SA:CTP1161,Europe/Paris,,OZU, +OZU:SP:1162,1,"Rond Point",43.696377,7.233671,0,0,OZU:SA:CTP1161,Europe/Paris,,OZU, +OZU:SP:1163,1,"Rond Point / Cimiez",43.710687,7.271168,0,0,OZU:SA:CTP1163,Europe/Paris,,OZU, +OZU:SP:1164,1,"Rond Point / Cimiez",43.71109,7.271203,0,0,OZU:SA:CTP1163,Europe/Paris,,OZU, +OZU:SP:1167,1,"Roselinde Rancher",43.726263,7.262173,0,0,OZU:SA:CTP1167,Europe/Paris,,OZU, +OZU:SP:1168,1,"Rossini",43.700758,7.257782,0,0,OZU:SA:CTP1168,Europe/Paris,,OZU, +OZU:SP:1169,1,"Route Forestière",43.703721,7.299216,0,0,OZU:SA:CTP1169,Europe/Paris,,OZU, +OZU:SP:117,1,"Bischoffsheim",43.706506,7.291899,0,0,OZU:SA:CTP118,Europe/Paris,,OZU, +OZU:SP:1170,1,"Route Forestière",43.704546,7.299687,0,0,OZU:SA:CTP1169,Europe/Paris,,OZU, +OZU:SP:1171,1,"Route Forestière",43.703543,7.299152,0,0,OZU:SA:CTP1169,Europe/Paris,,OZU, +OZU:SP:1172,1,"Route d'Aspremont",43.748857,7.247381,0,0,OZU:SA:CTP1172,Europe/Paris,,OZU, +OZU:SP:1173,1,"Route d'Aspremont",43.749012,7.247332,0,0,OZU:SA:CTP1172,Europe/Paris,,OZU, +OZU:SP:1174,1,"Ruisseau",43.727597,7.222399,0,0,OZU:SA:CTP1174,Europe/Paris,,OZU, +OZU:SP:1175,1,"Ruisseau",43.727848,7.22201,0,0,OZU:SA:CTP1174,Europe/Paris,,OZU, +OZU:SP:1176,1,"Sabatier",43.708183,7.2309,0,0,OZU:SA:CTP1176,Europe/Paris,,OZU, +OZU:SP:1177,1,"Sabatier",43.712903,7.236073,0,0,OZU:SA:CTP1178,Europe/Paris,,OZU, +OZU:SP:1178,1,"Sabatier",43.712907,7.235974,0,0,OZU:SA:CTP1178,Europe/Paris,,OZU, +OZU:SP:1179,1,"Masséna / Guitry",43.69839,7.270239,0,0,OZU:SA:CTP1179,Europe/Paris,,OZU, +OZU:SP:118,1,"Bischoffsheim",43.706733,7.292067,0,0,OZU:SA:CTP118,Europe/Paris,,OZU, +OZU:SP:1180,1,"Saint-Aignan",43.694664,7.293451,0,0,OZU:SA:CTP1180,Europe/Paris,,OZU, +OZU:SP:1181,1,"Saint-Aignan",43.694881,7.293432,0,0,OZU:SA:CTP1180,Europe/Paris,,OZU, +OZU:SP:1182,1,"Saint-Albert",43.72484,7.296115,0,0,OZU:SA:CTP1183,Europe/Paris,,OZU, +OZU:SP:1183,1,"Saint-Albert",43.724773,7.295985,0,0,OZU:SA:CTP1183,Europe/Paris,,OZU, +OZU:SP:1184,1,"Saint-Isidore",43.711005,7.187837,0,0,OZU:SA:CTP1184,Europe/Paris,,OZU, +OZU:SP:1185,1,"Saint-Joseph",43.734757,7.298445,0,0,OZU:SA:CTP2665,Europe/Paris,,OZU, +OZU:SP:1186,1,"Saint-Lambert",43.710157,7.265001,0,0,OZU:SA:CTP1186,Europe/Paris,,OZU, +OZU:SP:1187,1,"Saint-Louis",43.716931,7.24952,0,0,OZU:SA:CTP1187,Europe/Paris,,OZU, +OZU:SP:1188,1,"Saint-Louis",43.716557,7.249413,0,0,OZU:SA:CTP1187,Europe/Paris,,OZU, +OZU:SP:1189,1,"Saint-Pancrace",43.743577,7.241073,0,0,OZU:SA:CTP1189,Europe/Paris,,OZU, +OZU:SP:119,1,"Biscuiterie",43.707009,7.231978,0,0,OZU:SA:CTP119,Europe/Paris,,OZU, +OZU:SP:1190,1,"Saint-Philippe",43.699244,7.250104,0,0,OZU:SA:CTP1190,Europe/Paris,,OZU, +OZU:SP:1191,1,"Saint-Raphaël",43.72287,7.240905,0,0,OZU:SA:CTP1191,Europe/Paris,,OZU, +OZU:SP:1192,1,"Saint-Raphaël",43.722987,7.240901,0,0,OZU:SA:CTP1191,Europe/Paris,,OZU, +OZU:SP:1194,1,"Sainte-Anne",43.727946,7.295355,0,0,OZU:SA:CTP1194,Europe/Paris,,OZU, +OZU:SP:1195,1,"Sainte-Anne",43.725255,7.295481,0,0,OZU:SA:CTP1195,Europe/Paris,,OZU, +OZU:SP:1196,1,"Sainte-Marguerite",43.677648,7.226626,0,0,OZU:SA:CTP1269,Europe/Paris,,OZU, +OZU:SP:1197,1,"Sainte-Marie",43.731074,7.283678,0,0,OZU:SA:CTP1198,Europe/Paris,,OZU, +OZU:SP:1198,1,"Sainte-Marie",43.731078,7.283592,0,0,OZU:SA:CTP1198,Europe/Paris,,OZU, +OZU:SP:1199,1,"Saint-Pons",43.728898,7.281999,0,0,OZU:SA:CTP1199,Europe/Paris,,OZU, +OZU:SP:12,1,"Albert 1er / Phocéens",43.695329,7.269217,0,0,OZU:SA:CTP12,Europe/Paris,,OZU, +OZU:SP:120,1,"Biscuiterie",43.707387,7.23139,0,0,OZU:SA:CTP119,Europe/Paris,,OZU, +OZU:SP:1201,1,"Salvetti",43.703864,7.294326,0,0,OZU:SA:CTP1202,Europe/Paris,,OZU, +OZU:SP:1202,1,"Salvetti",43.703723,7.294065,0,0,OZU:SA:CTP1202,Europe/Paris,,OZU, +OZU:SP:1203,1,"Sanctuaire",43.743609,7.304044,0,0,OZU:SA:CTP1203,Europe/Paris,,OZU, +OZU:SP:1204,1,"Sanctuaire",43.743566,7.303925,0,0,OZU:SA:CTP1203,Europe/Paris,,OZU, +OZU:SP:1205,1,"Sant'Anna",43.732116,7.256071,0,0,OZU:SA:CTP1205,Europe/Paris,,OZU, +OZU:SP:1206,1,"Sant'Anna",43.731489,7.256589,0,0,OZU:SA:CTP1205,Europe/Paris,,OZU, +OZU:SP:1207,1,"Santoline",43.675313,7.201722,0,0,OZU:SA:CTP54153,Europe/Paris,,OZU, +OZU:SP:1208,1,"Sasserno",43.702442,7.27105,0,0,OZU:SA:CTP1208,Europe/Paris,,OZU, +OZU:SP:121,1,"Blanchisserie",43.70007,7.238246,0,0,OZU:SA:CTP121,Europe/Paris,,OZU, +OZU:SP:1210,1,"Scudéri",43.728578,7.276606,0,0,OZU:SA:CTP1210,Europe/Paris,,OZU, +OZU:SP:1211,1,"Scudéri",43.728766,7.276635,0,0,OZU:SA:CTP1210,Europe/Paris,,OZU, +OZU:SP:1212,1,"Scudéri / Saint-Maur",43.728927,7.27409,0,0,OZU:SA:CTP1213,Europe/Paris,,OZU, +OZU:SP:1213,1,"Scudéri / Saint-Maur",43.729028,7.274248,0,0,OZU:SA:CTP1213,Europe/Paris,,OZU, +OZU:SP:1216,1,"Garibaldi / Promenade des Arts",43.701379,7.278567,0,0,OZU:SA:CTP1216,Europe/Paris,,OZU, +OZU:SP:1217,1,"Séréna Gairaut",43.732716,7.258508,0,0,OZU:SA:CTP1217,Europe/Paris,,OZU, +OZU:SP:1218,1,"Sévillan",43.700617,7.259508,0,0,OZU:SA:CTP1218,Europe/Paris,,OZU, +OZU:SP:1219,1,"Sirius",43.68862,7.226178,0,0,OZU:SA:CTP1219,Europe/Paris,,OZU, +OZU:SP:122,1,"Blanchisserie",43.700211,7.237886,0,0,OZU:SA:CTP121,Europe/Paris,,OZU, +OZU:SP:1220,1,"Sirius",43.688491,7.226242,0,0,OZU:SA:CTP1219,Europe/Paris,,OZU, +OZU:SP:1221,1,"Somora",43.681003,7.22473,0,0,OZU:SA:CTP1221,Europe/Paris,,OZU, +OZU:SP:1222,1,"Somora",43.681355,7.225121,0,0,OZU:SA:CTP1221,Europe/Paris,,OZU, +OZU:SP:1223,1,"Square Daudet",43.707462,7.251993,0,0,OZU:SA:CTP1223,Europe/Paris,,OZU, +OZU:SP:1224,1,"Saint-Aignan / Pilatte",43.692914,7.290495,0,0,OZU:SA:CTP1224,Europe/Paris,,OZU, +OZU:SP:1225,1,"Saint-Antoine-Ginestière",43.708468,7.215627,0,0,OZU:SA:CTP1226,Europe/Paris,,OZU, +OZU:SP:1226,1,"Saint-Antoine-Ginestière",43.708035,7.215629,0,0,OZU:SA:CTP1226,Europe/Paris,,OZU, +OZU:SP:1227,1,"Pont Michel",43.722845,7.292477,0,0,OZU:SA:CTP2528,Europe/Paris,,OZU, +OZU:SP:1229,1,"Saint-Charles / Mont Gros",43.717156,7.297719,0,0,OZU:SA:CTP1231,Europe/Paris,,OZU, +OZU:SP:123,1,"Bleu Rivage",43.694202,7.28787,0,0,OZU:SA:CTP123,Europe/Paris,,OZU, +OZU:SP:1231,1,"Saint-Charles / Mont Gros",43.717207,7.297575,0,0,OZU:SA:CTP1231,Europe/Paris,,OZU, +OZU:SP:1232,1,"Saint-Isidore / Ginestière",43.710851,7.196464,0,0,OZU:SA:CTP1232,Europe/Paris,,OZU, +OZU:SP:1234,1,"Saint-Isidore Eglise",43.710922,7.196086,0,0,OZU:SA:CTP1235,Europe/Paris,,OZU, +OZU:SP:1235,1,"Saint-Isidore Eglise",43.71099,7.196092,0,0,OZU:SA:CTP1235,Europe/Paris,,OZU, +OZU:SP:1237,1,"Saint-Isidore / G.Eiffel",43.708223,7.189425,0,0,OZU:SA:CTP1237,Europe/Paris,,OZU, +OZU:SP:1239,1,"Saint-Maurice",43.720222,7.262135,0,0,OZU:SA:CTP1242,Europe/Paris,,OZU, +OZU:SP:124,1,"Bleu Rivage",43.694158,7.287871,0,0,OZU:SA:CTP123,Europe/Paris,,OZU, +OZU:SP:1240,1,"Saint-Maurice",43.719806,7.262569,0,0,OZU:SA:CTP1242,Europe/Paris,,OZU, +OZU:SP:1241,1,"Saint-Maurice",43.720424,7.263009,0,0,OZU:SA:CTP1242,Europe/Paris,,OZU, +OZU:SP:1242,1,"Saint-Maurice",43.720565,7.261891,0,0,OZU:SA:CTP1242,Europe/Paris,,OZU, +OZU:SP:1243,1,"Saint-Pancrace",43.743612,7.241077,0,0,OZU:SA:CTP1189,Europe/Paris,,OZU, +OZU:SP:1244,1,"Saint-Pierre-de-Féric",43.717374,7.236582,0,0,OZU:SA:CTP1530,Europe/Paris,,OZU, +OZU:SP:1245,1,"Saint-Roman de Bellet",43.743555,7.214624,0,0,OZU:SA:CTP1246,Europe/Paris,,OZU, +OZU:SP:1246,1,"Saint-Roman de Bellet",43.743585,7.214577,0,0,OZU:SA:CTP1246,Europe/Paris,,OZU, +OZU:SP:1247,1,"Saint-Sylvestre",43.725206,7.248371,0,0,OZU:SA:CTP1249,Europe/Paris,,OZU, +OZU:SP:1248,1,"Saint-Sylvestre",43.725175,7.248467,0,0,OZU:SA:CTP1249,Europe/Paris,,OZU, +OZU:SP:1249,1,"Saint-Sylvestre",43.725208,7.24893,0,0,OZU:SA:CTP1249,Europe/Paris,,OZU, +OZU:SP:125,1,"Bleuets",43.715681,7.277785,0,0,OZU:SA:CTP126,Europe/Paris,,OZU, +OZU:SP:1250,1,"Vauban / Université",43.70966,7.287879,0,0,OZU:SA:CTP1250,Europe/Paris,,OZU, +OZU:SP:1251,1,"Saint-Lambert",43.709623,7.264073,0,0,OZU:SA:CTP1186,Europe/Paris,,OZU, +OZU:SP:1252,1,"Saint-Pons",43.728959,7.282043,0,0,OZU:SA:CTP1199,Europe/Paris,,OZU, +OZU:SP:1253,1,"Valrose",43.715767,7.2654,0,0,OZU:SA:CTP1253,Europe/Paris,,OZU, +OZU:SP:1254,1,"Stade de Valrose",43.717934,7.266096,0,0,OZU:SA:CTP1254,Europe/Paris,,OZU, +OZU:SP:1255,1,"Stade du Ray",43.721944,7.260706,0,0,OZU:SA:CTP1256,Europe/Paris,,OZU, +OZU:SP:1256,1,"Stade du Ray",43.721619,7.260529,0,0,OZU:SA:CTP1256,Europe/Paris,,OZU, +OZU:SP:1257,1,"Stade du Ray / Gorbella",43.723363,7.256048,0,0,OZU:SA:CTP1424,Europe/Paris,,OZU, +OZU:SP:1258,1,"Stade du Ray / Musset",43.721917,7.261089,0,0,OZU:SA:CTP1258,Europe/Paris,,OZU, +OZU:SP:1259,1,"Stade Méarelli / M.I.N.Saint-Augustin",43.670839,7.21129,0,0,OZU:SA:CTP1259,Europe/Paris,,OZU, +OZU:SP:126,1,"Bleuets",43.715364,7.278216,0,0,OZU:SA:CTP126,Europe/Paris,,OZU, +OZU:SP:1261,1,"Station J.C. Bermond",43.698331,7.273706,0,0,OZU:SA:CTP1261,Europe/Paris,,OZU, +OZU:SP:1263,1,"Station J.C. Bermond",43.698727,7.273862,0,0,OZU:SA:CTP1261,Europe/Paris,,OZU, +OZU:SP:1265,1,"Sainte-Hélène",43.685057,7.235056,0,0,OZU:SA:CTP1266,Europe/Paris,,OZU, +OZU:SP:1266,1,"Sainte-Hélène",43.685704,7.235695,0,0,OZU:SA:CTP1266,Europe/Paris,,OZU, +OZU:SP:1267,1,"Sainte-Hélène / Promenade",43.684655,7.235791,0,0,OZU:SA:CTP1267,Europe/Paris,,OZU, +OZU:SP:1268,1,"Sainte-Hélène / Promenade",43.684962,7.235743,0,0,OZU:SA:CTP1267,Europe/Paris,,OZU, +OZU:SP:1269,1,"Sainte-Marguerite",43.67745,7.225034,0,0,OZU:SA:CTP1269,Europe/Paris,,OZU, +OZU:SP:127,1,"Bois de Boulogne",43.672404,7.201943,0,0,OZU:SA:CTP50382,Europe/Paris,,OZU, +OZU:SP:1270,1,"Sainte-Rosalie",43.714759,7.274476,0,0,OZU:SA:CTP1270,Europe/Paris,,OZU, +OZU:SP:1271,1,"Sainte-Rosalie",43.714903,7.274489,0,0,OZU:SA:CTP1270,Europe/Paris,,OZU, +OZU:SP:1272,1,"Saint-Honoré",43.692601,7.238894,0,0,OZU:SA:CTP1273,Europe/Paris,,OZU, +OZU:SP:1273,1,"Saint-Honoré",43.692542,7.238815,0,0,OZU:SA:CTP1273,Europe/Paris,,OZU, +OZU:SP:1274,1,"Saint-Pierre-de-Féric",43.71748,7.236628,0,0,OZU:SA:CTP1530,Europe/Paris,,OZU, +OZU:SP:1275,1,"Super Rimiez",43.738444,7.274717,0,0,OZU:SA:CTP1275,Europe/Paris,,OZU, +OZU:SP:1276,1,"Super Rimiez",43.738291,7.274542,0,0,OZU:SA:CTP1275,Europe/Paris,,OZU, +OZU:SP:1277,1,"Palais Nikaïa",43.680873,7.199309,0,0,OZU:SA:CTP1277,Europe/Paris,,OZU, +OZU:SP:128,1,"Bois de Boulogne",43.673032,7.202135,0,0,OZU:SA:CTP50382,Europe/Paris,,OZU, +OZU:SP:1280,1,"Temple",43.733883,7.259205,0,0,OZU:SA:CTP1280,Europe/Paris,,OZU, +OZU:SP:1281,1,"Tende / Vauban",43.711652,7.28553,0,0,OZU:SA:CTP1281,Europe/Paris,,OZU, +OZU:SP:1282,1,"Tende / Gendarmerie",43.712582,7.284084,0,0,OZU:SA:CTP1282,Europe/Paris,,OZU, +OZU:SP:1283,1,"Terra Amata",43.700188,7.288096,0,0,OZU:SA:CTP1284,Europe/Paris,,OZU, +OZU:SP:1284,1,"Terra Amata",43.700844,7.289681,0,0,OZU:SA:CTP1284,Europe/Paris,,OZU, +OZU:SP:1285,1,"Terrasses",43.702524,7.245695,0,0,OZU:SA:CTP1285,Europe/Paris,,OZU, +OZU:SP:1286,1,"Terrasses",43.70236,7.245742,0,0,OZU:SA:CTP1285,Europe/Paris,,OZU, +OZU:SP:1287,1,"Terrasses Impériales",43.70839,7.245406,0,0,OZU:SA:CTP1287,Europe/Paris,,OZU, +OZU:SP:1289,1,"Terrasses Pessicart",43.722777,7.238376,0,0,OZU:SA:CTP1289,Europe/Paris,,OZU, +OZU:SP:129,1,"Santoline",43.675482,7.201364,0,0,OZU:SA:CTP54153,Europe/Paris,,OZU, +OZU:SP:1290,1,"Terrasses Pessicart",43.722653,7.238339,0,0,OZU:SA:CTP1289,Europe/Paris,,OZU, +OZU:SP:1291,1,"Terron",43.701335,7.207421,0,0,OZU:SA:CTP1292,Europe/Paris,,OZU, +OZU:SP:1292,1,"Terron",43.701841,7.207191,0,0,OZU:SA:CTP1292,Europe/Paris,,OZU, +OZU:SP:1293,1,"Théodore de Banville / Lorrain",43.688342,7.294448,0,0,OZU:SA:CTP1293,Europe/Paris,,OZU, +OZU:SP:1294,1,"Théodore de Banville / Lorrain",43.688344,7.294565,0,0,OZU:SA:CTP1293,Europe/Paris,,OZU, +OZU:SP:1295,1,"Institut Claude Pompidou",43.71321,7.259665,0,0,OZU:SA:CTP1295,Europe/Paris,,OZU, +OZU:SP:1296,1,"Thiers / Gambetta",43.702045,7.256217,0,0,OZU:SA:CTP1296,Europe/Paris,,OZU, +OZU:SP:1297,1,"Thiers / Gambetta",43.701901,7.256838,0,0,OZU:SA:CTP1296,Europe/Paris,,OZU, +OZU:SP:1298,1,"Thiers / Gambetta",43.701293,7.256116,0,0,OZU:SA:CTP1296,Europe/Paris,,OZU, +OZU:SP:1299,1,"Thiers / Gambetta",43.701588,7.25598,0,0,OZU:SA:CTP1296,Europe/Paris,,OZU, +OZU:SP:13,1,"Albert 1er / Verdun",43.696126,7.266965,0,0,OZU:SA:CTP13,Europe/Paris,,OZU, +OZU:SP:1300,1,"Toit Zézette",43.731243,7.217244,0,0,OZU:SA:CTP1300,Europe/Paris,,OZU, +OZU:SP:1301,1,"Toit Zézette",43.732045,7.218233,0,0,OZU:SA:CTP1300,Europe/Paris,,OZU, +OZU:SP:1302,1,"Tordo",43.718856,7.282805,0,0,OZU:SA:CTP1302,Europe/Paris,,OZU, +OZU:SP:1303,1,"Tordo",43.720494,7.281654,0,0,OZU:SA:CTP1302,Europe/Paris,,OZU, +OZU:SP:1304,1,"Tordo",43.719852,7.281512,0,0,OZU:SA:CTP1302,Europe/Paris,,OZU, +OZU:SP:1305,1,"Toselli",43.704866,7.270217,0,0,OZU:SA:CTP1305,Europe/Paris,,OZU, +OZU:SP:1308,1,"Tournant Robert",43.681041,7.205115,0,0,OZU:SA:CTP1308,Europe/Paris,,OZU, +OZU:SP:1309,1,"Trésorerie",43.701282,7.275157,0,0,OZU:SA:CTP1309,Europe/Paris,,OZU, +OZU:SP:131,1,"Bois de Cythère",43.706519,7.248162,0,0,OZU:SA:CTP131,Europe/Paris,,OZU, +OZU:SP:1313,1,"Trois Vallées",43.689347,7.228226,0,0,OZU:SA:CTP1313,Europe/Paris,,OZU, +OZU:SP:1314,1,"Tyrsene",43.689275,7.215462,0,0,OZU:SA:CTP1314,Europe/Paris,,OZU, +OZU:SP:1315,1,"Tzaréwitch",43.702401,7.251357,0,0,OZU:SA:CTP1316,Europe/Paris,,OZU, +OZU:SP:1316,1,"Tzaréwitch",43.702459,7.2515,0,0,OZU:SA:CTP1316,Europe/Paris,,OZU, +OZU:SP:1317,1,"Tzaréwitch / Gambetta",43.702667,7.254422,0,0,OZU:SA:CTP1318,Europe/Paris,,OZU, +OZU:SP:1318,1,"Tzaréwitch / Gambetta",43.702685,7.254448,0,0,OZU:SA:CTP1318,Europe/Paris,,OZU, +OZU:SP:1319,1,"Uletta",43.698791,7.227883,0,0,OZU:SA:CTP1319,Europe/Paris,,OZU, +OZU:SP:132,1,"Bois Sacré",43.747928,7.298866,0,0,OZU:SA:CTP132,Europe/Paris,,OZU, +OZU:SP:1320,1,"Uletta",43.698934,7.227696,0,0,OZU:SA:CTP1319,Europe/Paris,,OZU, +OZU:SP:1321,1,"Urbain Bosio",43.699198,7.293759,0,0,OZU:SA:CTP1322,Europe/Paris,,OZU, +OZU:SP:1322,1,"Urbain Bosio",43.698742,7.293856,0,0,OZU:SA:CTP1322,Europe/Paris,,OZU, +OZU:SP:1323,1,"Usine / Canta Galet",43.703275,7.221539,0,0,OZU:SA:CTP1323,Europe/Paris,,OZU, +OZU:SP:1324,1,"Usine / Canta Galet",43.70364,7.221433,0,0,OZU:SA:CTP1323,Europe/Paris,,OZU, +OZU:SP:1325,1,"Val Azur",43.687069,7.229805,0,0,OZU:SA:CTP1326,Europe/Paris,,OZU, +OZU:SP:1326,1,"Val Azur",43.687249,7.229411,0,0,OZU:SA:CTP1326,Europe/Paris,,OZU, +OZU:SP:1327,1,"Val Fleuri",43.716895,7.263796,0,0,OZU:SA:CTP1327,Europe/Paris,,OZU, +OZU:SP:133,1,"Bois Sacré",43.748671,7.296913,0,0,OZU:SA:CTP132,Europe/Paris,,OZU, +OZU:SP:1331,1,"Vallon",43.688454,7.228857,0,0,OZU:SA:CTP1332,Europe/Paris,,OZU, +OZU:SP:1332,1,"Vallon",43.688318,7.228871,0,0,OZU:SA:CTP1332,Europe/Paris,,OZU, +OZU:SP:1333,1,"Vallon 1",43.747661,7.244743,0,0,OZU:SA:CTP1333,Europe/Paris,,OZU, +OZU:SP:1334,1,"Vallon 1",43.747596,7.244775,0,0,OZU:SA:CTP1333,Europe/Paris,,OZU, +OZU:SP:1335,1,"Vallon 2",43.741014,7.258841,0,0,OZU:SA:CTP1335,Europe/Paris,,OZU, +OZU:SP:1336,1,"Vallon 2",43.741039,7.258881,0,0,OZU:SA:CTP1335,Europe/Paris,,OZU, +OZU:SP:1339,1,"Vallon Barla",43.682395,7.231787,0,0,OZU:SA:CTP1563,Europe/Paris,,OZU, +OZU:SP:134,1,"Bon Voyage",43.731515,7.289195,0,0,OZU:SA:CTP135,Europe/Paris,,OZU, +OZU:SP:1340,1,"Vallon de Pessicart",43.717457,7.244685,0,0,OZU:SA:CTP1340,Europe/Paris,,OZU, +OZU:SP:1341,1,"Vallon de Pessicart",43.717455,7.244734,0,0,OZU:SA:CTP1340,Europe/Paris,,OZU, +OZU:SP:1342,1,"Vallon des Fleurs",43.732514,7.271458,0,0,OZU:SA:CTP1342,Europe/Paris,,OZU, +OZU:SP:1343,1,"Vallot",43.715534,7.262635,0,0,OZU:SA:CTP1642,Europe/Paris,,OZU, +OZU:SP:1344,1,"Vallot",43.716079,7.262732,0,0,OZU:SA:CTP1642,Europe/Paris,,OZU, +OZU:SP:1345,1,"Valrose",43.715822,7.265181,0,0,OZU:SA:CTP1253,Europe/Paris,,OZU, +OZU:SP:1346,1,"Verdi",43.69958,7.261728,0,0,OZU:SA:CTP1346,Europe/Paris,,OZU, +OZU:SP:1348,1,"Vernier / Gambetta",43.706626,7.256103,0,0,OZU:SA:CTP1348,Europe/Paris,,OZU, +OZU:SP:1349,1,"Vernier / Gambetta",43.707329,7.256091,0,0,OZU:SA:CTP1348,Europe/Paris,,OZU, +OZU:SP:135,1,"Bon Voyage",43.73174,7.289786,0,0,OZU:SA:CTP135,Europe/Paris,,OZU, +OZU:SP:1350,1,"Vérola",43.710619,7.19282,0,0,OZU:SA:CTP1351,Europe/Paris,,OZU, +OZU:SP:1351,1,"Vérola",43.710749,7.192533,0,0,OZU:SA:CTP1351,Europe/Paris,,OZU, +OZU:SP:1354,1,"Victor Hugo",43.702228,7.268846,0,0,OZU:SA:CTP1354,Europe/Paris,,OZU, +OZU:SP:1355,1,"Victoria",43.719265,7.273239,0,0,OZU:SA:CTP1355,Europe/Paris,,OZU, +OZU:SP:136,1,"Bona",43.733587,7.217384,0,0,OZU:SA:CTP136,Europe/Paris,,OZU, +OZU:SP:1360,1,"Vieux Mas",43.708293,7.243796,0,0,OZU:SA:CTP1360,Europe/Paris,,OZU, +OZU:SP:1361,1,"Vieux Mas",43.708216,7.243702,0,0,OZU:SA:CTP1360,Europe/Paris,,OZU, +OZU:SP:1362,1,"Vigna",43.723284,7.222178,0,0,OZU:SA:CTP1362,Europe/Paris,,OZU, +OZU:SP:1363,1,"Vigna",43.722747,7.222105,0,0,OZU:SA:CTP1362,Europe/Paris,,OZU, +OZU:SP:1364,1,"Villa Arson",43.721959,7.252822,0,0,OZU:SA:CTP1365,Europe/Paris,,OZU, +OZU:SP:1365,1,"Villa Arson",43.722053,7.252756,0,0,OZU:SA:CTP1365,Europe/Paris,,OZU, +OZU:SP:1366,1,"Villa Cyrnos",43.71635,7.250426,0,0,OZU:SA:CTP1366,Europe/Paris,,OZU, +OZU:SP:1367,1,"Villa Louise",43.710804,7.196523,0,0,OZU:SA:CTP1367,Europe/Paris,,OZU, +OZU:SP:1368,1,"Villa Préjane",43.711626,7.228638,0,0,OZU:SA:CTP1368,Europe/Paris,,OZU, +OZU:SP:1369,1,"Villa Préjane",43.711885,7.228512,0,0,OZU:SA:CTP1368,Europe/Paris,,OZU, +OZU:SP:137,1,"Bona",43.733283,7.216936,0,0,OZU:SA:CTP136,Europe/Paris,,OZU, +OZU:SP:1370,1,"Villa Vansy",43.705789,7.249353,0,0,OZU:SA:CTP1370,Europe/Paris,,OZU, +OZU:SP:1371,1,"Villa la côte",43.690968,7.293449,0,0,OZU:SA:CTP1371,Europe/Paris,,OZU, +OZU:SP:1372,1,"Villa la côte",43.69079,7.293757,0,0,OZU:SA:CTP1371,Europe/Paris,,OZU, +OZU:SP:1373,1,"Mont Carmel",43.726623,7.260588,0,0,OZU:SA:CTP1373,Europe/Paris,,OZU, +OZU:SP:1375,1,"Vismara",43.725329,7.263098,0,0,OZU:SA:CTP1376,Europe/Paris,,OZU, +OZU:SP:1376,1,"Vismara",43.725406,7.263287,0,0,OZU:SA:CTP1376,Europe/Paris,,OZU, +OZU:SP:1377,1,"Vittone",43.674339,7.213351,0,0,OZU:SA:CTP1378,Europe/Paris,,OZU, +OZU:SP:1378,1,"Vittone",43.674569,7.212011,0,0,OZU:SA:CTP1378,Europe/Paris,,OZU, +OZU:SP:1379,1,"Voie Romaine",43.721968,7.286837,0,0,OZU:SA:CTP1379,Europe/Paris,,OZU, +OZU:SP:138,1,"La Bornala",43.693891,7.238844,0,0,OZU:SA:CTP138,Europe/Paris,,OZU, +OZU:SP:1380,1,"Wilson",43.700391,7.273578,0,0,OZU:SA:CTP1381,Europe/Paris,,OZU, +OZU:SP:1381,1,"Wilson",43.699891,7.274453,0,0,OZU:SA:CTP1381,Europe/Paris,,OZU, +OZU:SP:1383,1,"Pastorelli",43.70086,7.27177,0,0,OZU:SA:CTP1033,Europe/Paris,,OZU, +OZU:SP:1384,1,"XVe Corps",43.706168,7.281156,0,0,OZU:SA:CTP1384,Europe/Paris,,OZU, +OZU:SP:1385,1,"XVe Corps",43.706715,7.280248,0,0,OZU:SA:CTP1384,Europe/Paris,,OZU, +OZU:SP:139,1,"La Bornala",43.694594,7.237825,0,0,OZU:SA:CTP138,Europe/Paris,,OZU, +OZU:SP:1390,1,"Groupe scolaire / Moretti",43.705014,7.207909,0,0,OZU:SA:CTP1408,Europe/Paris,,OZU, +OZU:SP:1394,1,"Castel Fabron",43.704768,7.199993,0,0,OZU:SA:CTP1394,Europe/Paris,,OZU, +OZU:SP:1395,1,"Castel Fabron",43.704926,7.199871,0,0,OZU:SA:CTP1394,Europe/Paris,,OZU, +OZU:SP:1396,1,"Chemin Saquier",43.749716,7.216009,0,0,OZU:SA:CTP207,Europe/Paris,,OZU, +OZU:SP:1397,1,"La Madrague",43.678099,7.228018,0,0,OZU:SA:CTP1397,Europe/Paris,,OZU, +OZU:SP:1398,1,"Le Florilège",43.710928,7.252615,0,0,OZU:SA:CTP1398,Europe/Paris,,OZU, +OZU:SP:1399,1,"Les Rochers",43.710129,7.295542,0,0,OZU:SA:CTP1399,Europe/Paris,,OZU, +OZU:SP:14,1,"Alberti / Gioffredo",43.699091,7.272857,0,0,OZU:SA:CTP14,Europe/Paris,,OZU, +OZU:SP:140,1,"Bougainvilliers",43.690589,7.235195,0,0,OZU:SA:CTP140,Europe/Paris,,OZU, +OZU:SP:1400,1,"Les Rochers",43.710641,7.295399,0,0,OZU:SA:CTP1399,Europe/Paris,,OZU, +OZU:SP:1401,1,"N.121",43.712558,7.249825,0,0,OZU:SA:CTP1401,Europe/Paris,,OZU, +OZU:SP:1402,1,"Les Teiras",43.716421,7.297444,0,0,OZU:SA:CTP1402,Europe/Paris,,OZU, +OZU:SP:1403,1,"Les Teiras",43.716483,7.297449,0,0,OZU:SA:CTP1402,Europe/Paris,,OZU, +OZU:SP:1404,1,"Villa Verte",43.708856,7.297846,0,0,OZU:SA:CTP1404,Europe/Paris,,OZU, +OZU:SP:1405,1,"Villa Verte",43.708962,7.297781,0,0,OZU:SA:CTP1404,Europe/Paris,,OZU, +OZU:SP:1406,1,"Corniche Bellevue",43.708147,7.243038,0,0,OZU:SA:CTP1406,Europe/Paris,,OZU, +OZU:SP:1407,1,"Garibaldi",43.701558,7.280557,0,0,OZU:SA:CTP2511,Europe/Paris,,OZU, +OZU:SP:1408,1,"Groupe scolaire / Moretti",43.704909,7.207864,0,0,OZU:SA:CTP1408,Europe/Paris,,OZU, +OZU:SP:1409,1,"Larga Vista",43.708424,7.214594,0,0,OZU:SA:CTP1409,Europe/Paris,,OZU, +OZU:SP:141,1,"Bougainvilliers",43.69065,7.235227,0,0,OZU:SA:CTP140,Europe/Paris,,OZU, +OZU:SP:1410,1,"Les Serres",43.719278,7.193322,0,0,OZU:SA:CTP829,Europe/Paris,,OZU, +OZU:SP:1411,1,"Lingostière Gare",43.720535,7.1884,0,0,OZU:SA:CTP1411,Europe/Paris,,OZU, +OZU:SP:1412,1,"L'Ossuaire",43.744605,7.298745,0,0,OZU:SA:CTP1412,Europe/Paris,,OZU, +OZU:SP:1414,1,"Poste de Saint-Roman",43.74585,7.215665,0,0,OZU:SA:CTP1088,Europe/Paris,,OZU, +OZU:SP:1416,1,"La Conque",43.706945,7.240328,0,0,OZU:SA:CTP579,Europe/Paris,,OZU, +OZU:SP:1417,1,"Le Génie / Bellet",43.740269,7.216814,0,0,OZU:SA:CTP1417,Europe/Paris,,OZU, +OZU:SP:1418,1,"L'Epingle",43.703454,7.242474,0,0,OZU:SA:CTP1418,Europe/Paris,,OZU, +OZU:SP:1419,1,"Mencarelli",43.697563,7.237522,0,0,OZU:SA:CTP913,Europe/Paris,,OZU, +OZU:SP:142,1,"Boulangerie / Oliviers",43.722707,7.232558,0,0,OZU:SA:CTP143,Europe/Paris,,OZU, +OZU:SP:1421,1,"Clinique de Cimiez",43.710524,7.272756,0,0,OZU:SA:CTP1544,Europe/Paris,,OZU, +OZU:SP:1422,1,"Borriglione",43.711541,7.260924,0,0,OZU:SA:CTP2504,Europe/Paris,,OZU, +OZU:SP:1423,1,"La Charmeraie / Cimiez",43.709477,7.2728,0,0,OZU:SA:CTP1423,Europe/Paris,,OZU, +OZU:SP:1424,1,"Stade du Ray / Gorbella",43.723374,7.256197,0,0,OZU:SA:CTP1424,Europe/Paris,,OZU, +OZU:SP:1425,1,"Val Fleuri",43.718046,7.264405,0,0,OZU:SA:CTP1327,Europe/Paris,,OZU, +OZU:SP:1426,1,"Cathédrale - Vieille Ville",43.698453,7.276366,0,0,OZU:SA:CTP2506,Europe/Paris,,OZU, +OZU:SP:1427,1,"Cernuschi",43.727646,7.251958,0,0,OZU:SA:CTP1427,Europe/Paris,,OZU, +OZU:SP:143,1,"Boulangerie / Oliviers",43.722262,7.232842,0,0,OZU:SA:CTP143,Europe/Paris,,OZU, +OZU:SP:1431,1,"Chénier",43.723192,7.260007,0,0,OZU:SA:CTP1431,Europe/Paris,,OZU, +OZU:SP:1433,1,"Delille",43.701341,7.276826,0,0,OZU:SA:CTP1433,Europe/Paris,,OZU, +OZU:SP:1434,1,"Deloye / Dubouchage",43.700626,7.269018,0,0,OZU:SA:CTP1434,Europe/Paris,,OZU, +OZU:SP:144,1,"Boulangerie",43.695974,7.234616,0,0,OZU:SA:CTP144,Europe/Paris,,OZU, +OZU:SP:1442,1,"Doyen Lépine",43.715726,7.261783,0,0,OZU:SA:CTP1442,Europe/Paris,,OZU, +OZU:SP:1443,1,"Eglise Jeanne d'Arc",43.713749,7.262643,0,0,OZU:SA:CTP921,Europe/Paris,,OZU, +OZU:SP:1445,1,"Gambetta / Dante",43.696174,7.256207,0,0,OZU:SA:CTP1445,Europe/Paris,,OZU, +OZU:SP:1447,1,"Résidence Monticello",43.70988,7.267733,0,0,OZU:SA:CTP1447,Europe/Paris,,OZU, +OZU:SP:1448,1,"Palais Prince Charles",43.711169,7.268503,0,0,OZU:SA:CTP1449,Europe/Paris,,OZU, +OZU:SP:1449,1,"Palais Prince Charles",43.711263,7.268362,0,0,OZU:SA:CTP1449,Europe/Paris,,OZU, +OZU:SP:145,1,"Boulangerie",43.695734,7.235353,0,0,OZU:SA:CTP144,Europe/Paris,,OZU, +OZU:SP:1450,1,"Avenue Flora",43.712618,7.270863,0,0,OZU:SA:CTP1450,Europe/Paris,,OZU, +OZU:SP:1451,1,"Avenue Flora",43.712777,7.270766,0,0,OZU:SA:CTP1450,Europe/Paris,,OZU, +OZU:SP:1452,1,"Résidence Monticello",43.709705,7.267594,0,0,OZU:SA:CTP1447,Europe/Paris,,OZU, +OZU:SP:1453,1,"Georges V",43.713503,7.270419,0,0,OZU:SA:CTP1453,Europe/Paris,,OZU, +OZU:SP:1454,1,"Georges V",43.713529,7.270272,0,0,OZU:SA:CTP1453,Europe/Paris,,OZU, +OZU:SP:1455,1,"Goiran",43.724848,7.249495,0,0,OZU:SA:CTP1455,Europe/Paris,,OZU, +OZU:SP:1457,1,"Grande Corniche",43.708302,7.292017,0,0,OZU:SA:CTP481,Europe/Paris,,OZU, +OZU:SP:1458,1,"Gutenberg",43.709207,7.255992,0,0,OZU:SA:CTP1458,Europe/Paris,,OZU, +OZU:SP:146,1,"Boutonnerie",43.705822,7.23293,0,0,OZU:SA:CTP146,Europe/Paris,,OZU, +OZU:SP:1460,1,"Henri Dunant",43.725783,7.264789,0,0,OZU:SA:CTP1460,Europe/Paris,,OZU, +OZU:SP:1461,1,"Hôpital Saint-Roch",43.702219,7.275164,0,0,OZU:SA:CTP1461,Europe/Paris,,OZU, +OZU:SP:1462,1,"Hôpital Saint-Roch",43.702081,7.273451,0,0,OZU:SA:CTP1461,Europe/Paris,,OZU, +OZU:SP:1466,1,"La Lauvette",43.743385,7.306901,0,0,OZU:SA:CTP1466,Europe/Paris,,OZU, +OZU:SP:147,1,"Boutonnerie",43.705451,7.232949,0,0,OZU:SA:CTP146,Europe/Paris,,OZU, +OZU:SP:1476,1,"Place Fontaine du Temple",43.726127,7.255839,0,0,OZU:SA:CTP710,Europe/Paris,,OZU, +OZU:SP:148,1,"Boyer",43.702181,7.281716,0,0,OZU:SA:CTP149,Europe/Paris,,OZU, +OZU:SP:1482,1,"Les Séoules la Charmeraie",43.748089,7.206937,0,0,OZU:SA:CTP1482,Europe/Paris,,OZU, +OZU:SP:1485,1,"Madeleine Supérieure",43.72927,7.22223,0,0,OZU:SA:CTP1485,Europe/Paris,,OZU, +OZU:SP:1487,1,"Mendiguren",43.706743,7.277071,0,0,OZU:SA:CTP1487,Europe/Paris,,OZU, +OZU:SP:1488,1,"Les Coccinelles",43.705601,7.27763,0,0,OZU:SA:CTP1489,Europe/Paris,,OZU, +OZU:SP:1489,1,"Les Coccinelles",43.705639,7.277585,0,0,OZU:SA:CTP1489,Europe/Paris,,OZU, +OZU:SP:149,1,"Boyer",43.702606,7.280515,0,0,OZU:SA:CTP149,Europe/Paris,,OZU, +OZU:SP:1490,1,"Mer et Montagne",43.724977,7.2218,0,0,OZU:SA:CTP1491,Europe/Paris,,OZU, +OZU:SP:1491,1,"Mer et Montagne",43.724919,7.221857,0,0,OZU:SA:CTP1491,Europe/Paris,,OZU, +OZU:SP:1492,1,"Michel Ange",43.710914,7.260224,0,0,OZU:SA:CTP1492,Europe/Paris,,OZU, +OZU:SP:1494,1,"Mont Gros",43.717311,7.29433,0,0,OZU:SA:CTP955,Europe/Paris,,OZU, +OZU:SP:1495,1,"Montée de Cimiez",43.706613,7.275967,0,0,OZU:SA:CTP1496,Europe/Paris,,OZU, +OZU:SP:1496,1,"Montée de Cimiez",43.706375,7.276232,0,0,OZU:SA:CTP1496,Europe/Paris,,OZU, +OZU:SP:1497,1,"Normandie / Cimiez",43.707206,7.27361,0,0,OZU:SA:CTP1497,Europe/Paris,,OZU, +OZU:SP:15,1,"Alberti / Hôtel des Postes",43.699981,7.271693,0,0,OZU:SA:CTP15,Europe/Paris,,OZU, +OZU:SP:150,1,"Braco",43.719476,7.223501,0,0,OZU:SA:CTP150,Europe/Paris,,OZU, +OZU:SP:1502,1,"Hôpital Pasteur",43.723507,7.283108,0,0,OZU:SA:CTP1502,Europe/Paris,,OZU, +OZU:SP:1504,1,"Picardie",43.708199,7.274963,0,0,OZU:SA:CTP1504,Europe/Paris,,OZU, +OZU:SP:1505,1,"Pierre Sémard",43.716023,7.289797,0,0,OZU:SA:CTP1505,Europe/Paris,,OZU, +OZU:SP:1506,1,"Pierre Sémard",43.716005,7.289782,0,0,OZU:SA:CTP1505,Europe/Paris,,OZU, +OZU:SP:151,1,"Braco",43.719581,7.223423,0,0,OZU:SA:CTP150,Europe/Paris,,OZU, +OZU:SP:1511,1,"Pont de l'Ariane / Nice",43.735482,7.300719,0,0,OZU:SA:CTP1511,Europe/Paris,,OZU, +OZU:SP:1512,1,"Pont Michel",43.722653,7.292535,0,0,OZU:SA:CTP2528,Europe/Paris,,OZU, +OZU:SP:1513,1,"Pont Michel",43.722834,7.290751,0,0,OZU:SA:CTP2528,Europe/Paris,,OZU, +OZU:SP:1515,1,"Puget / Borriglione",43.718061,7.261301,0,0,OZU:SA:CTP1515,Europe/Paris,,OZU, +OZU:SP:1516,1,"Pylônes",43.740969,7.201779,0,0,OZU:SA:CTP1516,Europe/Paris,,OZU, +OZU:SP:1517,1,"Raccourci du Pilon",43.750517,7.214121,0,0,OZU:SA:CTP1517,Europe/Paris,,OZU, +OZU:SP:1519,1,"Rimiez Saint-George",43.733119,7.276951,0,0,OZU:SA:CTP1144,Europe/Paris,,OZU, +OZU:SP:152,1,"Brin d'Amour",43.71659,7.252085,0,0,OZU:SA:CTP152,Europe/Paris,,OZU, +OZU:SP:1521,1,"Robini",43.681773,7.19906,0,0,OZU:SA:CTP53359,Europe/Paris,,OZU, +OZU:SP:1525,1,"Sainte-Marguerite",43.676943,7.225698,0,0,OZU:SA:CTP1269,Europe/Paris,,OZU, +OZU:SP:1528,1,"Saint-Joseph",43.734914,7.298359,0,0,OZU:SA:CTP2665,Europe/Paris,,OZU, +OZU:SP:153,1,"Brun",43.695069,7.238685,0,0,OZU:SA:CTP153,Europe/Paris,,OZU, +OZU:SP:1530,1,"Saint-Pierre-de-Féric",43.717338,7.23638,0,0,OZU:SA:CTP1530,Europe/Paris,,OZU, +OZU:SP:1531,1,"Square Normandie Niemen",43.704387,7.287817,0,0,OZU:SA:CTP1531,Europe/Paris,,OZU, +OZU:SP:1538,1,"Vallon des Fleurs",43.732654,7.271333,0,0,OZU:SA:CTP1342,Europe/Paris,,OZU, +OZU:SP:154,1,"Brun",43.695203,7.238324,0,0,OZU:SA:CTP153,Europe/Paris,,OZU, +OZU:SP:1542,1,"Le Verseau",43.713065,7.273137,0,0,OZU:SA:CTP1542,Europe/Paris,,OZU, +OZU:SP:1543,1,"Le Verseau",43.713028,7.273159,0,0,OZU:SA:CTP1542,Europe/Paris,,OZU, +OZU:SP:1544,1,"Clinique de Cimiez",43.710417,7.272746,0,0,OZU:SA:CTP1544,Europe/Paris,,OZU, +OZU:SP:1545,1,"Vittone",43.674257,7.212972,0,0,OZU:SA:CTP1378,Europe/Paris,,OZU, +OZU:SP:1546,1,"XVe Corps",43.706826,7.280368,0,0,OZU:SA:CTP1384,Europe/Paris,,OZU, +OZU:SP:1547,1,"La Charmeraie / Cimiez",43.709306,7.272998,0,0,OZU:SA:CTP1423,Europe/Paris,,OZU, +OZU:SP:1548,1,"Cappan",43.752438,7.203516,0,0,OZU:SA:CTP32214,Europe/Paris,,OZU, +OZU:SP:1550,1,"Bois de Cythère",43.706384,7.24815,0,0,OZU:SA:CTP131,Europe/Paris,,OZU, +OZU:SP:1551,1,"Escalier",43.704878,7.248207,0,0,OZU:SA:CTP386,Europe/Paris,,OZU, +OZU:SP:1553,1,"La Colline / Costière",43.710706,7.229862,0,0,OZU:SA:CTP1554,Europe/Paris,,OZU, +OZU:SP:1554,1,"La Colline / Costière",43.711069,7.229223,0,0,OZU:SA:CTP1554,Europe/Paris,,OZU, +OZU:SP:1555,1,"Le Pont / Dauphiné",43.703429,7.249758,0,0,OZU:SA:CTP1555,Europe/Paris,,OZU, +OZU:SP:1556,1,"L'Eglise",43.70878,7.23064,0,0,OZU:SA:CTP1556,Europe/Paris,,OZU, +OZU:SP:1557,1,"Léon Bertrand",43.674981,7.22347,0,0,OZU:SA:CTP1557,Europe/Paris,,OZU, +OZU:SP:1558,1,"Lou Castel",43.706808,7.246945,0,0,OZU:SA:CTP862,Europe/Paris,,OZU, +OZU:SP:1559,1,"Marjolaine",43.704363,7.249205,0,0,OZU:SA:CTP1559,Europe/Paris,,OZU, +OZU:SP:156,1,"Collège Matisse",43.72336,7.2729,0,0,OZU:SA:CTP156,Europe/Paris,,OZU, +OZU:SP:1560,1,"Plan du Var",43.858344,7.197043,0,0,OZU:SA:CTP52966,Europe/Paris,,OZU, +OZU:SP:1563,1,"Vallon Barla",43.682466,7.231804,0,0,OZU:SA:CTP1563,Europe/Paris,,OZU, +OZU:SP:1564,1,"Villa Vansy",43.705696,7.249432,0,0,OZU:SA:CTP1370,Europe/Paris,,OZU, +OZU:SP:1565,1,"Tabacs / Madeleine",43.70189,7.236442,0,0,OZU:SA:CTP1565,Europe/Paris,,OZU, +OZU:SP:1566,1,"Tabacs / Madeleine",43.702383,7.23646,0,0,OZU:SA:CTP1565,Europe/Paris,,OZU, +OZU:SP:1567,1,"Primerose / Dauphiné",43.705491,7.24996,0,0,OZU:SA:CTP1567,Europe/Paris,,OZU, +OZU:SP:1568,1,"Constellations",43.688988,7.226805,0,0,OZU:SA:CTP1568,Europe/Paris,,OZU, +OZU:SP:157,1,"C.G.E",43.706692,7.209269,0,0,OZU:SA:CTP158,Europe/Paris,,OZU, +OZU:SP:1570,1,"Clair Horizon",43.685829,7.225566,0,0,OZU:SA:CTP255,Europe/Paris,,OZU, +OZU:SP:1571,1,"Batterie",43.678784,7.218808,0,0,OZU:SA:CTP94,Europe/Paris,,OZU, +OZU:SP:1572,1,"Jardin",43.704806,7.247195,0,0,OZU:SA:CTP530,Europe/Paris,,OZU, +OZU:SP:158,1,"C.G.E",43.706727,7.209483,0,0,OZU:SA:CTP158,Europe/Paris,,OZU, +OZU:SP:159,1,"CP",43.710484,7.25347,0,0,OZU:SA:CTP159,Europe/Paris,,OZU, +OZU:SP:1590,1,"Aéro Habitat",43.671778,7.210031,0,0,OZU:SA:CTP1590,Europe/Paris,,OZU, +OZU:SP:1591,1,"Auvare",43.712295,7.288616,0,0,OZU:SA:CTP1591,Europe/Paris,,OZU, +OZU:SP:1593,1,"Ecole Prévert",43.739424,7.306082,0,0,OZU:SA:CTP1593,Europe/Paris,,OZU, +OZU:SP:1594,1,"Cyrille Besset",43.716789,7.255814,0,0,OZU:SA:CTP1594,Europe/Paris,,OZU, +OZU:SP:1597,1,"Villa Laurenti",43.722155,7.269119,0,0,OZU:SA:CTP1597,Europe/Paris,,OZU, +OZU:SP:1598,1,"Risso / Palais",43.707801,7.284475,0,0,OZU:SA:CTP1155,Europe/Paris,,OZU, +OZU:SP:1599,1,"Avenue Charpentier",43.717566,7.250394,0,0,OZU:SA:CTP1599,Europe/Paris,,OZU, +OZU:SP:16,1,"Allée Centrale",43.744833,7.300665,0,0,OZU:SA:CTP16,Europe/Paris,,OZU, +OZU:SP:160,1,"CPAM Entrée",43.72012,7.242568,0,0,OZU:SA:CTP160,Europe/Paris,,OZU, +OZU:SP:1601,1,"Defly / Klein",43.701809,7.277624,0,0,OZU:SA:CTP1601,Europe/Paris,,OZU, +OZU:SP:1607,1,"République / Delfino",43.705458,7.284309,0,0,OZU:SA:CTP1607,Europe/Paris,,OZU, +OZU:SP:1612,1,"Libération",43.710123,7.261,0,0,OZU:SA:CTP1612,Europe/Paris,,OZU, +OZU:SP:1613,1,"Libération",43.710599,7.263189,0,0,OZU:SA:CTP1612,Europe/Paris,,OZU, +OZU:SP:1614,1,"Pietruschi",43.738514,7.278116,0,0,OZU:SA:CTP1047,Europe/Paris,,OZU, +OZU:SP:1615,1,"Nazareth",43.709457,7.255654,0,0,OZU:SA:CTP1615,Europe/Paris,,OZU, +OZU:SP:1616,1,"Joseph Garnier",43.71012,7.258702,0,0,OZU:SA:CTP1616,Europe/Paris,,OZU, +OZU:SP:1617,1,"Bagnis",43.735111,7.215341,0,0,OZU:SA:CTP1617,Europe/Paris,,OZU, +OZU:SP:1618,1,"Bagnis",43.734998,7.215456,0,0,OZU:SA:CTP1617,Europe/Paris,,OZU, +OZU:SP:1619,1,"Carlone",43.693749,7.241202,0,0,OZU:SA:CTP176,Europe/Paris,,OZU, +OZU:SP:1623,1,"Belvédère",43.698938,7.204472,0,0,OZU:SA:CTP1623,Europe/Paris,,OZU, +OZU:SP:1624,1,"Belvédère",43.698672,7.204375,0,0,OZU:SA:CTP1623,Europe/Paris,,OZU, +OZU:SP:1625,1,"La Madeleine",43.70853,7.230383,0,0,OZU:SA:CTP1625,Europe/Paris,,OZU, +OZU:SP:1626,1,"La Madeleine",43.708452,7.230327,0,0,OZU:SA:CTP1625,Europe/Paris,,OZU, +OZU:SP:1627,1,"Boulevard Mantega",43.711273,7.250956,0,0,OZU:SA:CTP1627,Europe/Paris,,OZU, +OZU:SP:1628,1,"Emmanuel",43.705359,7.241768,0,0,OZU:SA:CTP1628,Europe/Paris,,OZU, +OZU:SP:1629,1,"Emmanuel",43.705379,7.241692,0,0,OZU:SA:CTP1628,Europe/Paris,,OZU, +OZU:SP:1631,1,"La Gare",43.708591,7.231841,0,0,OZU:SA:CTP1631,Europe/Paris,,OZU, +OZU:SP:1632,1,"La Gare",43.708635,7.231845,0,0,OZU:SA:CTP1631,Europe/Paris,,OZU, +OZU:SP:1633,1,"Ancienne Batterie",43.701859,7.242273,0,0,OZU:SA:CTP1633,Europe/Paris,,OZU, +OZU:SP:1634,1,"Ancienne Batterie",43.702255,7.241488,0,0,OZU:SA:CTP1633,Europe/Paris,,OZU, +OZU:SP:1635,1,"Camin Dei Galofre",43.707683,7.235189,0,0,OZU:SA:CTP1635,Europe/Paris,,OZU, +OZU:SP:1636,1,"Camin Dei Galofre",43.707619,7.235221,0,0,OZU:SA:CTP1635,Europe/Paris,,OZU, +OZU:SP:1637,1,"La Carriere",43.711218,7.233694,0,0,OZU:SA:CTP1637,Europe/Paris,,OZU, +OZU:SP:1638,1,"La Carriere",43.711405,7.233722,0,0,OZU:SA:CTP1637,Europe/Paris,,OZU, +OZU:SP:164,1,"Cagnoli",43.717403,7.253012,0,0,OZU:SA:CTP165,Europe/Paris,,OZU, +OZU:SP:1640,1,"Pastorelli",43.700812,7.271628,0,0,OZU:SA:CTP1033,Europe/Paris,,OZU, +OZU:SP:1641,1,"Le Bretagne",43.731617,7.253769,0,0,OZU:SA:CTP1641,Europe/Paris,,OZU, +OZU:SP:1642,1,"Vallot",43.715752,7.263387,0,0,OZU:SA:CTP1642,Europe/Paris,,OZU, +OZU:SP:165,1,"Cagnoli",43.717444,7.252916,0,0,OZU:SA:CTP165,Europe/Paris,,OZU, +OZU:SP:166,1,"Cal Spagnol",43.695989,7.205561,0,0,OZU:SA:CTP166,Europe/Paris,,OZU, +OZU:SP:167,1,"Cal Spagnol",43.695637,7.205567,0,0,OZU:SA:CTP166,Europe/Paris,,OZU, +OZU:SP:17,1,"Allée Centrale",43.744833,7.300479,0,0,OZU:SA:CTP16,Europe/Paris,,OZU, +OZU:SP:170,1,"Canta Galet",43.719006,7.217587,0,0,OZU:SA:CTP2545,Europe/Paris,,OZU, +OZU:SP:171,1,"Canta Galet",43.719383,7.217831,0,0,OZU:SA:CTP2545,Europe/Paris,,OZU, +OZU:SP:172,1,"Cap Bellet",43.69619,7.239402,0,0,OZU:SA:CTP172,Europe/Paris,,OZU, +OZU:SP:173,1,"Cap Bellet",43.696564,7.239086,0,0,OZU:SA:CTP172,Europe/Paris,,OZU, +OZU:SP:175,1,"Carlone",43.694084,7.24354,0,0,OZU:SA:CTP176,Europe/Paris,,OZU, +OZU:SP:176,1,"Carlone",43.69419,7.243375,0,0,OZU:SA:CTP176,Europe/Paris,,OZU, +OZU:SP:177,1,"Carlone",43.693815,7.242299,0,0,OZU:SA:CTP176,Europe/Paris,,OZU, +OZU:SP:178,1,"Carlone",43.693676,7.242611,0,0,OZU:SA:CTP176,Europe/Paris,,OZU, +OZU:SP:179,1,"Carnot",43.698206,7.287863,0,0,OZU:SA:CTP2588,Europe/Paris,,OZU, +OZU:SP:181,1,"Caroubier",43.714518,7.296893,0,0,OZU:SA:CTP181,Europe/Paris,,OZU, +OZU:SP:182,1,"Caroubier",43.714552,7.296759,0,0,OZU:SA:CTP181,Europe/Paris,,OZU, +OZU:SP:183,1,"Carras / Saint-Augustin",43.680063,7.229985,0,0,OZU:SA:CTP183,Europe/Paris,,OZU, +OZU:SP:188,1,"Carré 13",43.74497,7.29859,0,0,OZU:SA:CTP188,Europe/Paris,,OZU, +OZU:SP:19,1,"Allée des Jardiniers",43.709239,7.19228,0,0,OZU:SA:CTP19,Europe/Paris,,OZU, +OZU:SP:191,1,"Centre Commercial Lingostière",43.7277,7.188875,0,0,OZU:SA:CTP191,Europe/Paris,,OZU, +OZU:SP:193,1,"Cascade de Gairaut",43.738006,7.259425,0,0,OZU:SA:CTP193,Europe/Paris,,OZU, +OZU:SP:194,1,"Cascade de Gairaut",43.738017,7.2596,0,0,OZU:SA:CTP193,Europe/Paris,,OZU, +OZU:SP:195,1,"Castel",43.708499,7.295426,0,0,OZU:SA:CTP1151,Europe/Paris,,OZU, +OZU:SP:196,1,"Caucade",43.677524,7.216813,0,0,OZU:SA:CTP197,Europe/Paris,,OZU, +OZU:SP:197,1,"Caucade",43.677543,7.216975,0,0,OZU:SA:CTP197,Europe/Paris,,OZU, +OZU:SP:198,1,"Caucade / Place Sainte-Marguerite",43.68084,7.207381,0,0,OZU:SA:CTP198,Europe/Paris,,OZU, +OZU:SP:199,1,"Commandant Gérôme",43.724565,7.275327,0,0,OZU:SA:CTP201,Europe/Paris,,OZU, +OZU:SP:2,1,"Abattoirs",43.718898,7.285229,0,0,OZU:SA:CTP2,Europe/Paris,,OZU, +OZU:SP:20,1,"Alphonse Karr",43.700101,7.264318,0,0,OZU:SA:CTP20,Europe/Paris,,OZU, +OZU:SP:200,1,"Commandant Gérôme",43.72468,7.274368,0,0,OZU:SA:CTP201,Europe/Paris,,OZU, +OZU:SP:201,1,"Commandant Gérôme",43.72448,7.275406,0,0,OZU:SA:CTP201,Europe/Paris,,OZU, +OZU:SP:20143,1,"Chemin de l'Espéyre",43.747615,7.388725,0,0,OZU:SA:CTP20143,Europe/Paris,,OZU, +OZU:SP:20144,1,"Sainte-Catherine",43.744836,7.394617,0,0,OZU:SA:CTP20144,Europe/Paris,,OZU, +OZU:SP:20145,1,"Mairie",43.745433,7.399566,0,0,OZU:SA:CTP20454,Europe/Paris,,OZU, +OZU:SP:20146,1,"Saint-Martin",43.768859,7.399799,0,0,OZU:SA:CTP20153,Europe/Paris,,OZU, +OZU:SP:20147,1,"Le Téléphérique",43.779767,7.399067,0,0,OZU:SA:CTP20152,Europe/Paris,,OZU, +OZU:SP:20148,1,"Saint-Pancrace",43.792506,7.400176,0,0,OZU:SA:CTP20151,Europe/Paris,,OZU, +OZU:SP:20149,1,"Village",43.804568,7.403812,0,0,OZU:SA:CTP20149,Europe/Paris,,OZU, +OZU:SP:20150,1,"Sanctuaire",43.752978,7.382654,0,0,OZU:SA:CTP20150,Europe/Paris,,OZU, +OZU:SP:20151,1,"Saint-Pancrace",43.792619,7.400062,0,0,OZU:SA:CTP20151,Europe/Paris,,OZU, +OZU:SP:20152,1,"Le Téléphérique",43.779839,7.399048,0,0,OZU:SA:CTP20152,Europe/Paris,,OZU, +OZU:SP:20153,1,"Saint-Martin",43.768848,7.39986,0,0,OZU:SA:CTP20153,Europe/Paris,,OZU, +OZU:SP:20155,1,"Sainte-Catherine",43.745145,7.394918,0,0,OZU:SA:CTP20144,Europe/Paris,,OZU, +OZU:SP:20156,1,"Chemin de Braousch",43.748667,7.388001,0,0,OZU:SA:CTP20156,Europe/Paris,,OZU, +OZU:SP:20157,1,"Le Rondeau",43.750741,7.382715,0,0,OZU:SA:CTP20157,Europe/Paris,,OZU, +OZU:SP:203,1,"Centre Administratif",43.675686,7.199235,0,0,OZU:SA:CTP203,Europe/Paris,,OZU, +OZU:SP:204,1,"Centre Administratif",43.676266,7.198937,0,0,OZU:SA:CTP203,Europe/Paris,,OZU, +OZU:SP:20454,1,"Mairie",43.745315,7.399579,0,0,OZU:SA:CTP20454,Europe/Paris,,OZU, +OZU:SP:20480,1,"Le Tunnel",43.660132,7.131092,0,0,OZU:SA:CTP20480,Europe/Paris,,OZU, +OZU:SP:20481,1,"La Grange Rimade",43.662812,7.125889,0,0,OZU:SA:CTP20481,Europe/Paris,,OZU, +OZU:SP:20482,1,"Hâmeaux du Soleil",43.668154,7.122167,0,0,OZU:SA:CTP20482,Europe/Paris,,OZU, +OZU:SP:205,1,"Conservatoire National de Région",43.725145,7.273676,0,0,OZU:SA:CTP376,Europe/Paris,,OZU, +OZU:SP:206,1,"Chemin Saint-Pons",43.730246,7.276143,0,0,OZU:SA:CTP206,Europe/Paris,,OZU, +OZU:SP:207,1,"Chemin Saquier",43.749568,7.216283,0,0,OZU:SA:CTP207,Europe/Paris,,OZU, +OZU:SP:208,1,"Chalet des Roses",43.697369,7.240981,0,0,OZU:SA:CTP209,Europe/Paris,,OZU, +OZU:SP:209,1,"Chalet des Roses",43.697261,7.240797,0,0,OZU:SA:CTP209,Europe/Paris,,OZU, +OZU:SP:21,1,"Alsace-Lorraine",43.697959,7.256187,0,0,OZU:SA:CTP21,Europe/Paris,,OZU, +OZU:SP:210,1,"Chambrun",43.722349,7.263871,0,0,OZU:SA:CTP210,Europe/Paris,,OZU, +OZU:SP:211,1,"Chambrun",43.723458,7.261073,0,0,OZU:SA:CTP211,Europe/Paris,,OZU, +OZU:SP:21199,1,"Collège des Baous",43.746355,7.153887,0,0,OZU:SA:CTP21225,Europe/Paris,,OZU, +OZU:SP:212,1,"Charretiers",43.729583,7.229858,0,0,OZU:SA:CTP212,Europe/Paris,,OZU, +OZU:SP:21200,1,"Gattières Mairie",43.759546,7.17577,0,0,OZU:SA:CTP21200,Europe/Paris,,OZU, +OZU:SP:21204,1,"Les Cigales",43.766713,7.193325,0,0,OZU:SA:CTP21232,Europe/Paris,,OZU, +OZU:SP:21205,1,"Maison Pour Tous",43.772516,7.192631,0,0,OZU:SA:CTP53043,Europe/Paris,,OZU, +OZU:SP:21206,1,"Saint Paul",43.77232,7.194617,0,0,OZU:SA:CTP54444,Europe/Paris,,OZU, +OZU:SP:21207,1,"Les Amandiers",43.769881,7.195612,0,0,OZU:SA:CTP50079,Europe/Paris,,OZU, +OZU:SP:21208,1,"Langevin",43.768338,7.197119,0,0,OZU:SA:CTP51303,Europe/Paris,,OZU, +OZU:SP:21209,1,"Stade Tennis",43.766922,7.200023,0,0,OZU:SA:CTP54462,Europe/Paris,,OZU, +OZU:SP:21210,1,"Les Conques",43.76111,7.191345,0,0,OZU:SA:CTP21230,Europe/Paris,,OZU, +OZU:SP:21211,1,"Les Condamines",43.758233,7.188219,0,0,OZU:SA:CTP21229,Europe/Paris,,OZU, +OZU:SP:21218,1,"Domaine de L'Estellan",43.777061,7.178631,0,0,OZU:SA:CTP21218,Europe/Paris,,OZU, +OZU:SP:21223,1,"Gattières Mairie",43.759582,7.175882,0,0,OZU:SA:CTP21200,Europe/Paris,,OZU, +OZU:SP:21224,1,"Les Serres",43.757436,7.177436,0,0,OZU:SA:CTP21224,Europe/Paris,,OZU, +OZU:SP:21225,1,"Collège des Baous",43.74642,7.154048,0,0,OZU:SA:CTP21225,Europe/Paris,,OZU, +OZU:SP:21226,1,"Le Peyron",43.743842,7.146199,0,0,OZU:SA:CTP3067,Europe/Paris,,OZU, +OZU:SP:21227,1,"Font Cailloure",43.749417,7.179135,0,0,OZU:SA:CTP51899,Europe/Paris,,OZU, +OZU:SP:21228,1,"Plans de Gattières",43.753158,7.183091,0,0,OZU:SA:CTP53628,Europe/Paris,,OZU, +OZU:SP:21229,1,"Les Condamines",43.757789,7.18765,0,0,OZU:SA:CTP21229,Europe/Paris,,OZU, +OZU:SP:21230,1,"Les Conques",43.761223,7.191435,0,0,OZU:SA:CTP21230,Europe/Paris,,OZU, +OZU:SP:21231,1,"Stade Tennis",43.766954,7.200282,0,0,OZU:SA:CTP54462,Europe/Paris,,OZU, +OZU:SP:21232,1,"Les Cigales",43.766677,7.193315,0,0,OZU:SA:CTP21232,Europe/Paris,,OZU, +OZU:SP:21233,1,"Maison Pour Tous",43.772436,7.192406,0,0,OZU:SA:CTP53043,Europe/Paris,,OZU, +OZU:SP:21234,1,"Saint Paul",43.772628,7.194772,0,0,OZU:SA:CTP54444,Europe/Paris,,OZU, +OZU:SP:21235,1,"Langevin",43.768907,7.196417,0,0,OZU:SA:CTP51303,Europe/Paris,,OZU, +OZU:SP:21236,1,"Les Oliviers",43.765151,7.177935,0,0,OZU:SA:CTP21236,Europe/Paris,,OZU, +OZU:SP:21238,1,"Chemin des Espéiroures",43.762986,7.174577,0,0,OZU:SA:CTP21504,Europe/Paris,,OZU, +OZU:SP:21239,1,"Chemin du Clot",43.765666,7.176074,0,0,OZU:SA:CTP21503,Europe/Paris,,OZU, +OZU:SP:21257,1,"Pagnol",43.778596,7.187211,0,0,OZU:SA:CTP50907,Europe/Paris,,OZU, +OZU:SP:21258,1,"La Beilouno",43.776367,7.190303,0,0,OZU:SA:CTP50288,Europe/Paris,,OZU, +OZU:SP:21259,1,"L'Aspre",43.774189,7.19088,0,0,OZU:SA:CTP50153,Europe/Paris,,OZU, +OZU:SP:21260,1,"La Médiathèque",43.773673,7.191984,0,0,OZU:SA:CTP21260,Europe/Paris,,OZU, +OZU:SP:21261,1,"RUE 18 / Avenue 1",43.810528,7.186691,0,0,OZU:SA:CTP50009,Europe/Paris,,OZU, +OZU:SP:21262,1,"RUE 1 / Avenue 1",43.77053,7.207179,0,0,OZU:SA:CTP50012,Europe/Paris,,OZU, +OZU:SP:21263,1,"Engéri",43.762723,7.19292,0,0,OZU:SA:CTP51739,Europe/Paris,,OZU, +OZU:SP:21264,1,"Engéri",43.762869,7.193095,0,0,OZU:SA:CTP51739,Europe/Paris,,OZU, +OZU:SP:21265,1,"RUE 18bis / Avenue 1",43.809115,7.188076,0,0,OZU:SA:CTP50008,Europe/Paris,,OZU, +OZU:SP:21266,1,"RUE 17 / Avenue 1",43.807112,7.190388,0,0,OZU:SA:CTP50007,Europe/Paris,,OZU, +OZU:SP:21267,1,"RUE 17bis / Avenue 1",43.805136,7.192664,0,0,OZU:SA:CTP50006,Europe/Paris,,OZU, +OZU:SP:21268,1,"RUE 15 / Avenue 1",43.80224,7.196005,0,0,OZU:SA:CTP50005,Europe/Paris,,OZU, +OZU:SP:21269,1,"RUE 14 / Avenue 1",43.800408,7.198083,0,0,OZU:SA:CTP50004,Europe/Paris,,OZU, +OZU:SP:21270,1,"RUE 14bis / Avenue 1",43.798788,7.199876,0,0,OZU:SA:CTP50003,Europe/Paris,,OZU, +OZU:SP:21271,1,"RUE 13 / Avenue 1",43.795394,7.203654,0,0,OZU:SA:CTP50002,Europe/Paris,,OZU, +OZU:SP:21272,1,"RUE 11 / Avenue 1",43.792762,7.206701,0,0,OZU:SA:CTP50001,Europe/Paris,,OZU, +OZU:SP:21273,1,"RUE 10 / Avenue 1",43.789979,7.209917,0,0,OZU:SA:CTP50000,Europe/Paris,,OZU, +OZU:SP:21274,1,"RUE 9 / Avenue 1",43.787775,7.211862,0,0,OZU:SA:CTP50024,Europe/Paris,,OZU, +OZU:SP:21275,1,"RUE 8 / Avenue 1",43.782632,7.213858,0,0,OZU:SA:CTP54879,Europe/Paris,,OZU, +OZU:SP:21276,1,"RUE 7 / Avenue 1",43.780382,7.213823,0,0,OZU:SA:CTP50023,Europe/Paris,,OZU, +OZU:SP:21277,1,"RUE 5 / Avenue 1",43.776909,7.212756,0,0,OZU:SA:CTP50022,Europe/Paris,,OZU, +OZU:SP:21278,1,"RUE 3 / Avenue 1",43.773639,7.210374,0,0,OZU:SA:CTP50017,Europe/Paris,,OZU, +OZU:SP:21280,1,"L'Aspre",43.773998,7.191145,0,0,OZU:SA:CTP50153,Europe/Paris,,OZU, +OZU:SP:21281,1,"La Beilouno",43.776017,7.190689,0,0,OZU:SA:CTP50288,Europe/Paris,,OZU, +OZU:SP:213,1,"Charretiers",43.729232,7.230051,0,0,OZU:SA:CTP212,Europe/Paris,,OZU, +OZU:SP:21315,1,"Saint Martin Vésubie Gare",44.070517,7.254049,0,0,OZU:SA:CTP54309,Europe/Paris,,OZU, +OZU:SP:21316,1,"Bergaïs",44.028163,7.30949,0,0,OZU:SA:CTP50302,Europe/Paris,,OZU, +OZU:SP:21317,1,"Zone d'Activité",44.068557,7.255187,0,0,OZU:SA:CTP55257,Europe/Paris,,OZU, +OZU:SP:21318,1,"La Menuiserie",44.067124,7.255782,0,0,OZU:SA:CTP21318,Europe/Paris,,OZU, +OZU:SP:21319,1,"Le Puey",44.066216,7.257154,0,0,OZU:SA:CTP53825,Europe/Paris,,OZU, +OZU:SP:21320,1,"Saint-Joseph",44.064359,7.257374,0,0,OZU:SA:CTP54422,Europe/Paris,,OZU, +OZU:SP:21321,1,"Le Touron",44.059969,7.259831,0,0,OZU:SA:CTP54606,Europe/Paris,,OZU, +OZU:SP:21322,1,"Le Cros",44.055593,7.264567,0,0,OZU:SA:CTP51504,Europe/Paris,,OZU, +OZU:SP:21323,1,"Nantellée",44.051492,7.271151,0,0,OZU:SA:CTP21323,Europe/Paris,,OZU, +OZU:SP:21324,1,"Le Villaron",44.049275,7.274549,0,0,OZU:SA:CTP21324,Europe/Paris,,OZU, +OZU:SP:21325,1,"Les Chataigniers",44.045322,7.277318,0,0,OZU:SA:CTP51110,Europe/Paris,,OZU, +OZU:SP:21326,1,"Gare de Berthemont",44.033133,7.300475,0,0,OZU:SA:CTP21326,Europe/Paris,,OZU, +OZU:SP:21328,1,"Corniglion Molinier",44.012547,7.308385,0,0,OZU:SA:CTP51375,Europe/Paris,,OZU, +OZU:SP:21330,1,"Lantosque",43.974148,7.31068,0,0,OZU:SA:CTP21330,Europe/Paris,,OZU, +OZU:SP:21331,1,"Le Suquet",43.941093,7.283549,0,0,OZU:SA:CTP54476,Europe/Paris,,OZU, +OZU:SP:21332,1,"St Jean La Rivière",43.919632,7.265014,0,0,OZU:SA:CTP21332,Europe/Paris,,OZU, +OZU:SP:21333,1,"Cros d'Utelle",43.879767,7.233517,0,0,OZU:SA:CTP51507,Europe/Paris,,OZU, +OZU:SP:21334,1,"Gordolon",43.99912,7.314399,0,0,OZU:SA:CTP52347,Europe/Paris,,OZU, +OZU:SP:21335,1,"La Bollène Gare",43.991195,7.320253,0,0,OZU:SA:CTP50385,Europe/Paris,,OZU, +OZU:SP:21336,1,"Pont du Martinet",43.981513,7.317075,0,0,OZU:SA:CTP53703,Europe/Paris,,OZU, +OZU:SP:21343,1,"La Bolline Lycée",44.070057,7.167949,0,0,OZU:SA:CTP50391,Europe/Paris,,OZU, +OZU:SP:21345,1,"La Bolline Lycée",44.069722,7.168194,0,0,OZU:SA:CTP50391,Europe/Paris,,OZU, +OZU:SP:21394,1,"Pont de Clans",43.976675,7.140319,0,0,OZU:SA:CTP53681,Europe/Paris,,OZU, +OZU:SP:21398,1,"Saint Sauveur sur Tinée",44.083315,7.105326,0,0,OZU:SA:CTP21408,Europe/Paris,,OZU, +OZU:SP:214,1,"Château de l'Anglais",43.688125,7.295594,0,0,OZU:SA:CTP215,Europe/Paris,,OZU, +OZU:SP:21405,1,"Gare",44.054666,7.121573,0,0,OZU:SA:CTP53944,Europe/Paris,,OZU, +OZU:SP:21408,1,"Saint Sauveur sur Tinée",44.082434,7.105927,0,0,OZU:SA:CTP21408,Europe/Paris,,OZU, +OZU:SP:21409,1,"Gare",44.054671,7.120865,0,0,OZU:SA:CTP53944,Europe/Paris,,OZU, +OZU:SP:21413,1,"Pont de Clans",43.976615,7.140055,0,0,OZU:SA:CTP53681,Europe/Paris,,OZU, +OZU:SP:21426,1,"Collège Jean Franco St-Etienne de Tinée",44.2574,6.923746,0,0,OZU:SA:CTP21426,Europe/Paris,,OZU, +OZU:SP:21492,1,"Pont de la Manda",43.766059,7.201681,0,0,OZU:SA:CTP53669,Europe/Paris,,OZU, +OZU:SP:21493,1,"Collet de la Déesse",43.781394,7.180423,0,0,OZU:SA:CTP21501,Europe/Paris,,OZU, +OZU:SP:21494,1,"Village",43.792082,7.185289,0,0,OZU:SA:CTP50922,Europe/Paris,,OZU, +OZU:SP:21495,1,"Saint Sébastien",43.801322,7.181905,0,0,OZU:SA:CTP54183,Europe/Paris,,OZU, +OZU:SP:21496,1,"Le Broc",43.808984,7.168629,0,0,OZU:SA:CTP50447,Europe/Paris,,OZU, +OZU:SP:21497,1,"Bouyon",43.825275,7.122962,0,0,OZU:SA:CTP21497,Europe/Paris,,OZU, +OZU:SP:21498,1,"Le Broc",43.80895,7.168364,0,0,OZU:SA:CTP50447,Europe/Paris,,OZU, +OZU:SP:21499,1,"Saint Sébastien",43.801342,7.181834,0,0,OZU:SA:CTP54183,Europe/Paris,,OZU, +OZU:SP:215,1,"Château de l'Anglais",43.687892,7.295529,0,0,OZU:SA:CTP215,Europe/Paris,,OZU, +OZU:SP:21500,1,"Village",43.792382,7.185259,0,0,OZU:SA:CTP50922,Europe/Paris,,OZU, +OZU:SP:21501,1,"Collet de la Déesse",43.78125,7.180427,0,0,OZU:SA:CTP21501,Europe/Paris,,OZU, +OZU:SP:21502,1,"Domaine de L'Estellan",43.777064,7.178562,0,0,OZU:SA:CTP21218,Europe/Paris,,OZU, +OZU:SP:21503,1,"Chemin du Clot",43.765329,7.176346,0,0,OZU:SA:CTP21503,Europe/Paris,,OZU, +OZU:SP:21504,1,"Chemin des Espéiroures",43.762756,7.174471,0,0,OZU:SA:CTP21504,Europe/Paris,,OZU, +OZU:SP:21505,1,"Gattières Village",43.76039,7.175823,0,0,OZU:SA:CTP21505,Europe/Paris,,OZU, +OZU:SP:21506,1,"Pont de la Manda",43.76579,7.201857,0,0,OZU:SA:CTP53669,Europe/Paris,,OZU, +OZU:SP:21507,1,"Lou Camp",43.786675,7.180152,0,0,OZU:SA:CTP21507,Europe/Paris,,OZU, +OZU:SP:21508,1,"Lou Camp",43.786987,7.180631,0,0,OZU:SA:CTP21507,Europe/Paris,,OZU, +OZU:SP:21510,1,"Les Oliviers",43.765406,7.177848,0,0,OZU:SA:CTP21236,Europe/Paris,,OZU, +OZU:SP:21515,1,"L'Emigra",43.787844,7.202303,0,0,OZU:SA:CTP51735,Europe/Paris,,OZU, +OZU:SP:21516,1,"La Querello",43.783851,7.202351,0,0,OZU:SA:CTP53842,Europe/Paris,,OZU, +OZU:SP:21517,1,"Les Sèlves",43.778207,7.202113,0,0,OZU:SA:CTP54227,Europe/Paris,,OZU, +OZU:SP:21518,1,"Place des Plans Carros",43.774998,7.199771,0,0,OZU:SA:CTP21518,Europe/Paris,,OZU, +OZU:SP:21519,1,"Place des Plans",43.775006,7.199977,0,0,OZU:SA:CTP53645,Europe/Paris,,OZU, +OZU:SP:21520,1,"Les Sèlves",43.777984,7.20207,0,0,OZU:SA:CTP54227,Europe/Paris,,OZU, +OZU:SP:21521,1,"La Querello",43.783652,7.202603,0,0,OZU:SA:CTP53842,Europe/Paris,,OZU, +OZU:SP:21522,1,"L'Emigra",43.787727,7.202282,0,0,OZU:SA:CTP51735,Europe/Paris,,OZU, +OZU:SP:21565,1,"Rue 1",43.770994,7.207106,0,0,OZU:SA:CTP21565,Europe/Paris,,OZU, +OZU:SP:21566,1,"Rue 2",43.77336,7.206383,0,0,OZU:SA:CTP21566,Europe/Paris,,OZU, +OZU:SP:21567,1,"Rue 3",43.774605,7.207901,0,0,OZU:SA:CTP21567,Europe/Paris,,OZU, +OZU:SP:21568,1,"Rue 4",43.776061,7.208543,0,0,OZU:SA:CTP21568,Europe/Paris,,OZU, +OZU:SP:21569,1,"Rue 5",43.77742,7.209573,0,0,OZU:SA:CTP21569,Europe/Paris,,OZU, +OZU:SP:21570,1,"Rue 6",43.778612,7.211067,0,0,OZU:SA:CTP21570,Europe/Paris,,OZU, +OZU:SP:21571,1,"Rue 7",43.780118,7.211817,0,0,OZU:SA:CTP21571,Europe/Paris,,OZU, +OZU:SP:21572,1,"Rue 9",43.786572,7.20982,0,0,OZU:SA:CTP21572,Europe/Paris,,OZU, +OZU:SP:21573,1,"Rue 10",43.789059,7.207514,0,0,OZU:SA:CTP21573,Europe/Paris,,OZU, +OZU:SP:21574,1,"Rue 11",43.79148,7.204747,0,0,OZU:SA:CTP21574,Europe/Paris,,OZU, +OZU:SP:21575,1,"Rue 12",43.794365,7.201502,0,0,OZU:SA:CTP21575,Europe/Paris,,OZU, +OZU:SP:21576,1,"Rue 13",43.796257,7.198924,0,0,OZU:SA:CTP21576,Europe/Paris,,OZU, +OZU:SP:21577,1,"Rue 14",43.798333,7.196768,0,0,OZU:SA:CTP21577,Europe/Paris,,OZU, +OZU:SP:21578,1,"Rue 15",43.800419,7.193239,0,0,OZU:SA:CTP21578,Europe/Paris,,OZU, +OZU:SP:21579,1,"Rue 16",43.802764,7.189835,0,0,OZU:SA:CTP21579,Europe/Paris,,OZU, +OZU:SP:21580,1,"Rue 17",43.805488,7.186699,0,0,OZU:SA:CTP21580,Europe/Paris,,OZU, +OZU:SP:21581,1,"Rue 17bis",43.807504,7.185251,0,0,OZU:SA:CTP21581,Europe/Paris,,OZU, +OZU:SP:21582,1,"17eme Ter",43.808877,7.183201,0,0,OZU:SA:CTP21582,Europe/Paris,,OZU, +OZU:SP:21583,1,"Rue 18bis",43.810417,7.182806,0,0,OZU:SA:CTP54061,Europe/Paris,,OZU, +OZU:SP:21584,1,"La Manda / Z.I.",43.76706,7.203429,0,0,OZU:SA:CTP50796,Europe/Paris,,OZU, +OZU:SP:21585,1,"Z.A. La Manda",43.764074,7.199346,0,0,OZU:SA:CTP50999,Europe/Paris,,OZU, +OZU:SP:21586,1,"Le Castelet",43.770646,7.200218,0,0,OZU:SA:CTP50694,Europe/Paris,,OZU, +OZU:SP:21587,1,"La Teréhentine",43.781112,7.203798,0,0,OZU:SA:CTP50971,Europe/Paris,,OZU, +OZU:SP:21588,1,"Lou Claus",43.789729,7.199427,0,0,OZU:SA:CTP50786,Europe/Paris,,OZU, +OZU:SP:21589,1,"Lei Feirrièro",43.790613,7.203355,0,0,OZU:SA:CTP50777,Europe/Paris,,OZU, +OZU:SP:21590,1,"Les Rosemarines",43.775295,7.198341,0,0,OZU:SA:CTP21590,Europe/Paris,,OZU, +OZU:SP:21591,1,"Ecole Guillonnet",43.778416,7.197241,0,0,OZU:SA:CTP21591,Europe/Paris,,OZU, +OZU:SP:21592,1,"Lou Claus",43.789867,7.199363,0,0,OZU:SA:CTP50786,Europe/Paris,,OZU, +OZU:SP:21593,1,"Les Rosemarines",43.775079,7.198348,0,0,OZU:SA:CTP21590,Europe/Paris,,OZU, +OZU:SP:21594,1,"La Teréhentine",43.781505,7.203868,0,0,OZU:SA:CTP50971,Europe/Paris,,OZU, +OZU:SP:21595,1,"Le Castelet",43.771764,7.199991,0,0,OZU:SA:CTP50694,Europe/Paris,,OZU, +OZU:SP:216,1,"Chateau des Baumettes",43.695037,7.250312,0,0,OZU:SA:CTP216,Europe/Paris,,OZU, +OZU:SP:21619,1,"Juliette Greco",43.774274,7.192878,0,0,OZU:SA:CTP53124,Europe/Paris,,OZU, +OZU:SP:21622,1,"Pont De Cervagne",44.014088,7.306809,0,0,OZU:SA:CTP54015,Europe/Paris,,OZU, +OZU:SP:21627,1,"Le Cougne",44.039594,7.290564,0,0,OZU:SA:CTP54000,Europe/Paris,,OZU, +OZU:SP:21632,1,"Chalet Forneri",44.03104,7.306673,0,0,OZU:SA:CTP53994,Europe/Paris,,OZU, +OZU:SP:21642,1,"Médiathèque",43.773874,7.1927,0,0,OZU:SA:CTP53125,Europe/Paris,,OZU, +OZU:SP:218,1,"Château Sainte-Anne",43.688555,7.231199,0,0,OZU:SA:CTP218,Europe/Paris,,OZU, +OZU:SP:219,1,"Châteauneuf",43.701051,7.251154,0,0,OZU:SA:CTP219,Europe/Paris,,OZU, +OZU:SP:22,1,"Alsace-Lorraine",43.698211,7.256358,0,0,OZU:SA:CTP21,Europe/Paris,,OZU, +OZU:SP:220,1,"Châteauneuf",43.700669,7.251232,0,0,OZU:SA:CTP219,Europe/Paris,,OZU, +OZU:SP:221,1,"Charmettes",43.71964,7.234852,0,0,OZU:SA:CTP221,Europe/Paris,,OZU, +OZU:SP:222,1,"Charmettes",43.719559,7.234857,0,0,OZU:SA:CTP221,Europe/Paris,,OZU, +OZU:SP:224,1,"Chemin de la Tour",43.736194,7.215495,0,0,OZU:SA:CTP224,Europe/Paris,,OZU, +OZU:SP:225,1,"Chemin de la Tour",43.736447,7.215493,0,0,OZU:SA:CTP224,Europe/Paris,,OZU, +OZU:SP:226,1,"Chemin de l'Archet",43.695586,7.22906,0,0,OZU:SA:CTP226,Europe/Paris,,OZU, +OZU:SP:227,1,"Chemin de l'Archet",43.694758,7.228641,0,0,OZU:SA:CTP226,Europe/Paris,,OZU, +OZU:SP:228,1,"Chemin du Fort",43.695623,7.298859,0,0,OZU:SA:CTP229,Europe/Paris,,OZU, +OZU:SP:229,1,"Chemin du Fort",43.695602,7.298907,0,0,OZU:SA:CTP229,Europe/Paris,,OZU, +OZU:SP:23,1,"Amboise",43.67742,7.206644,0,0,OZU:SA:CTP24,Europe/Paris,,OZU, +OZU:SP:230,1,"Chemin Saint-Pons",43.729982,7.276231,0,0,OZU:SA:CTP206,Europe/Paris,,OZU, +OZU:SP:231,1,"Chemin Tordu",43.695065,7.286435,0,0,OZU:SA:CTP231,Europe/Paris,,OZU, +OZU:SP:232,1,"Chemin Tordu",43.694967,7.2866,0,0,OZU:SA:CTP231,Europe/Paris,,OZU, +OZU:SP:233,1,"Chênes Blancs",43.736654,7.297145,0,0,OZU:SA:CTP233,Europe/Paris,,OZU, +OZU:SP:234,1,"Chénier",43.724132,7.260497,0,0,OZU:SA:CTP1431,Europe/Paris,,OZU, +OZU:SP:235,1,"Chevaliers de Malte",43.723608,7.25382,0,0,OZU:SA:CTP235,Europe/Paris,,OZU, +OZU:SP:236,1,"Chevaliers de Malte",43.723871,7.253782,0,0,OZU:SA:CTP235,Europe/Paris,,OZU, +OZU:SP:237,1,"Chez Cane",43.697655,7.209365,0,0,OZU:SA:CTP237,Europe/Paris,,OZU, +OZU:SP:238,1,"Chez Cane",43.697687,7.209441,0,0,OZU:SA:CTP237,Europe/Paris,,OZU, +OZU:SP:239,1,"Chez Olivier",43.734695,7.237502,0,0,OZU:SA:CTP239,Europe/Paris,,OZU, +OZU:SP:24,1,"Amboise",43.677323,7.206705,0,0,OZU:SA:CTP24,Europe/Paris,,OZU, +OZU:SP:240,1,"Chez Olivier",43.734639,7.237558,0,0,OZU:SA:CTP239,Europe/Paris,,OZU, +OZU:SP:241,1,"Cimetière Est",43.743639,7.300774,0,0,OZU:SA:CTP241,Europe/Paris,,OZU, +OZU:SP:242,1,"Cimetière Est",43.743462,7.300546,0,0,OZU:SA:CTP241,Europe/Paris,,OZU, +OZU:SP:243,1,"Cimiez / Hôpital",43.721742,7.272263,0,0,OZU:SA:CTP243,Europe/Paris,,OZU, +OZU:SP:244,1,"Cité Arménienne",43.713737,7.225169,0,0,OZU:SA:CTP244,Europe/Paris,,OZU, +OZU:SP:245,1,"Cité Arménienne",43.713597,7.225095,0,0,OZU:SA:CTP244,Europe/Paris,,OZU, +OZU:SP:246,1,"Maccario / Raybaud",43.72511,7.285881,0,0,OZU:SA:CTP246,Europe/Paris,,OZU, +OZU:SP:247,1,"Maccario / Raybaud",43.72478,7.285194,0,0,OZU:SA:CTP246,Europe/Paris,,OZU, +OZU:SP:248,1,"Cité PLM",43.719739,7.28632,0,0,OZU:SA:CTP249,Europe/Paris,,OZU, +OZU:SP:249,1,"Cité PLM",43.719871,7.286791,0,0,OZU:SA:CTP249,Europe/Paris,,OZU, +OZU:SP:25,1,"Ancien octroi",43.722602,7.289897,0,0,OZU:SA:CTP25,Europe/Paris,,OZU, +OZU:SP:250,1,"Cité Vallon",43.727001,7.26497,0,0,OZU:SA:CTP251,Europe/Paris,,OZU, +OZU:SP:2501,1,"Acropolis",43.704594,7.28231,0,0,OZU:SA:CTP2501,Europe/Paris,,OZU, +OZU:SP:2502,1,"Acropolis",43.704614,7.282274,0,0,OZU:SA:CTP2501,Europe/Paris,,OZU, +OZU:SP:2503,1,"Borriglione",43.711862,7.261771,0,0,OZU:SA:CTP2504,Europe/Paris,,OZU, +OZU:SP:2504,1,"Borriglione",43.711858,7.261858,0,0,OZU:SA:CTP2504,Europe/Paris,,OZU, +OZU:SP:2505,1,"Cathédrale - Vieille Ville",43.698418,7.276548,0,0,OZU:SA:CTP2506,Europe/Paris,,OZU, +OZU:SP:2506,1,"Cathédrale - Vieille Ville",43.698445,7.276525,0,0,OZU:SA:CTP2506,Europe/Paris,,OZU, +OZU:SP:2507,1,"Comte de Falicon",43.72598,7.255715,0,0,OZU:SA:CTP708,Europe/Paris,,OZU, +OZU:SP:2508,1,"Comte de Falicon",43.725988,7.255753,0,0,OZU:SA:CTP708,Europe/Paris,,OZU, +OZU:SP:2509,1,"Gare Thiers",43.705514,7.264922,0,0,OZU:SA:CTP2510,Europe/Paris,,OZU, +OZU:SP:251,1,"Cité Vallon",43.727235,7.265151,0,0,OZU:SA:CTP251,Europe/Paris,,OZU, +OZU:SP:2510,1,"Gare Thiers",43.705497,7.264882,0,0,OZU:SA:CTP2510,Europe/Paris,,OZU, +OZU:SP:2511,1,"Garibaldi",43.701578,7.28052,0,0,OZU:SA:CTP2511,Europe/Paris,,OZU, +OZU:SP:2512,1,"Gorbella",43.717845,7.256974,0,0,OZU:SA:CTP2513,Europe/Paris,,OZU, +OZU:SP:2513,1,"Gorbella",43.717847,7.256924,0,0,OZU:SA:CTP2513,Europe/Paris,,OZU, +OZU:SP:2514,1,"Jean Médecin",43.701686,7.267298,0,0,OZU:SA:CTP2515,Europe/Paris,,OZU, +OZU:SP:2515,1,"Jean Médecin",43.701701,7.267336,0,0,OZU:SA:CTP2515,Europe/Paris,,OZU, +OZU:SP:2516,1,"Henri Sappia",43.730643,7.254193,0,0,OZU:SA:CTP2516,Europe/Paris,,OZU, +OZU:SP:2517,1,"Henri Sappia",43.730435,7.2542,0,0,OZU:SA:CTP2516,Europe/Paris,,OZU, +OZU:SP:2518,1,"Le Ray",43.721525,7.256448,0,0,OZU:SA:CTP2518,Europe/Paris,,OZU, +OZU:SP:2519,1,"Le Ray",43.721518,7.25641,0,0,OZU:SA:CTP2518,Europe/Paris,,OZU, +OZU:SP:252,1,"Clair de Lune",43.700205,7.249553,0,0,OZU:SA:CTP252,Europe/Paris,,OZU, +OZU:SP:2520,1,"Libération",43.709077,7.262611,0,0,OZU:SA:CTP1612,Europe/Paris,,OZU, +OZU:SP:2521,1,"Libération",43.709084,7.262636,0,0,OZU:SA:CTP1612,Europe/Paris,,OZU, +OZU:SP:2522,1,"Masséna",43.698403,7.26937,0,0,OZU:SA:CTP2522,Europe/Paris,,OZU, +OZU:SP:2523,1,"Masséna",43.698419,7.26941,0,0,OZU:SA:CTP2522,Europe/Paris,,OZU, +OZU:SP:2524,1,"Opéra - Vieille Ville",43.697277,7.272935,0,0,OZU:SA:CTP2524,Europe/Paris,,OZU, +OZU:SP:2525,1,"Opéra - Vieille Ville",43.697249,7.272958,0,0,OZU:SA:CTP2524,Europe/Paris,,OZU, +OZU:SP:2526,1,"Palais des Expositions",43.707335,7.283814,0,0,OZU:SA:CTP2527,Europe/Paris,,OZU, +OZU:SP:2527,1,"Palais des Expositions",43.707325,7.283851,0,0,OZU:SA:CTP2527,Europe/Paris,,OZU, +OZU:SP:2528,1,"Pont Michel",43.722909,7.29088,0,0,OZU:SA:CTP2528,Europe/Paris,,OZU, +OZU:SP:2529,1,"Pont Michel",43.722792,7.290672,0,0,OZU:SA:CTP2528,Europe/Paris,,OZU, +OZU:SP:253,1,"Clair de Lune",43.700118,7.249274,0,0,OZU:SA:CTP252,Europe/Paris,,OZU, +OZU:SP:2531,1,"Saint-Charles",43.718466,7.291711,0,0,OZU:SA:CTP2532,Europe/Paris,,OZU, +OZU:SP:2532,1,"Saint-Charles",43.718474,7.291749,0,0,OZU:SA:CTP2532,Europe/Paris,,OZU, +OZU:SP:2533,1,"Saint-Jean-d'Angely Université",43.709549,7.290364,0,0,OZU:SA:CTP2533,Europe/Paris,,OZU, +OZU:SP:2534,1,"Saint-Jean-d'Angely Université",43.709522,7.290349,0,0,OZU:SA:CTP2533,Europe/Paris,,OZU, +OZU:SP:2535,1,"Saint-Roch",43.711726,7.292776,0,0,OZU:SA:CTP2536,Europe/Paris,,OZU, +OZU:SP:2536,1,"Saint-Roch",43.711724,7.292813,0,0,OZU:SA:CTP2536,Europe/Paris,,OZU, +OZU:SP:2537,1,"Terminus Rouret",43.729743,7.254364,0,0,OZU:SA:CTP2537,Europe/Paris,,OZU, +OZU:SP:2538,1,"Valrose Université",43.715502,7.261539,0,0,OZU:SA:CTP2539,Europe/Paris,,OZU, +OZU:SP:2539,1,"Valrose Université",43.715505,7.261491,0,0,OZU:SA:CTP2539,Europe/Paris,,OZU, +OZU:SP:254,1,"Clair Horizon",43.685511,7.225415,0,0,OZU:SA:CTP255,Europe/Paris,,OZU, +OZU:SP:2540,1,"Vauban",43.710008,7.286604,0,0,OZU:SA:CTP2541,Europe/Paris,,OZU, +OZU:SP:2541,1,"Vauban",43.710044,7.28662,0,0,OZU:SA:CTP2541,Europe/Paris,,OZU, +OZU:SP:2542,1,"Virgile Barel",43.71493,7.292831,0,0,OZU:SA:CTP2543,Europe/Paris,,OZU, +OZU:SP:2543,1,"Virgile Barel",43.714931,7.292794,0,0,OZU:SA:CTP2543,Europe/Paris,,OZU, +OZU:SP:2545,1,"Canta Galet",43.719002,7.217588,0,0,OZU:SA:CTP2545,Europe/Paris,,OZU, +OZU:SP:2546,1,"Canta Galet",43.719079,7.217693,0,0,OZU:SA:CTP2545,Europe/Paris,,OZU, +OZU:SP:2547,1,"Les Serres",43.716973,7.196144,0,0,OZU:SA:CTP2547,Europe/Paris,,OZU, +OZU:SP:2548,1,"Les Serres",43.716977,7.196024,0,0,OZU:SA:CTP2547,Europe/Paris,,OZU, +OZU:SP:2549,1,"Vieux Chemin de Crémat",43.712669,7.198721,0,0,OZU:SA:CTP2550,Europe/Paris,,OZU, +OZU:SP:255,1,"Clair Horizon",43.685128,7.225135,0,0,OZU:SA:CTP255,Europe/Paris,,OZU, +OZU:SP:2550,1,"Vieux Chemin de Crémat",43.712816,7.198681,0,0,OZU:SA:CTP2550,Europe/Paris,,OZU, +OZU:SP:2551,1,"Le Toasc",43.716932,7.198383,0,0,OZU:SA:CTP2551,Europe/Paris,,OZU, +OZU:SP:2552,1,"Le Toasc",43.717017,7.198455,0,0,OZU:SA:CTP2551,Europe/Paris,,OZU, +OZU:SP:2553,1,"Tennis Crémat",43.71821,7.203115,0,0,OZU:SA:CTP2553,Europe/Paris,,OZU, +OZU:SP:2554,1,"Tennis Crémat",43.719044,7.205253,0,0,OZU:SA:CTP2553,Europe/Paris,,OZU, +OZU:SP:2555,1,"La Vignette",43.720498,7.208157,0,0,OZU:SA:CTP2556,Europe/Paris,,OZU, +OZU:SP:2556,1,"La Vignette",43.720378,7.20799,0,0,OZU:SA:CTP2556,Europe/Paris,,OZU, +OZU:SP:2557,1,"Château de Crémat",43.723523,7.208628,0,0,OZU:SA:CTP2558,Europe/Paris,,OZU, +OZU:SP:2558,1,"Château de Crémat",43.72348,7.20856,0,0,OZU:SA:CTP2558,Europe/Paris,,OZU, +OZU:SP:2559,1,"Le Four",43.724971,7.208742,0,0,OZU:SA:CTP2559,Europe/Paris,,OZU, +OZU:SP:256,1,"Clair Logis",43.72618,7.258862,0,0,OZU:SA:CTP256,Europe/Paris,,OZU, +OZU:SP:2560,1,"La Raiola",43.729598,7.211009,0,0,OZU:SA:CTP2561,Europe/Paris,,OZU, +OZU:SP:2561,1,"La Raiola",43.729591,7.210944,0,0,OZU:SA:CTP2561,Europe/Paris,,OZU, +OZU:SP:2562,1,"Tramontane",43.731667,7.213604,0,0,OZU:SA:CTP2563,Europe/Paris,,OZU, +OZU:SP:2563,1,"Tramontane",43.731834,7.21329,0,0,OZU:SA:CTP2563,Europe/Paris,,OZU, +OZU:SP:2564,1,"J. Médecin / Pastorelli",43.699971,7.26895,0,0,OZU:SA:CTP912,Europe/Paris,,OZU, +OZU:SP:2566,1,"Les Cigales",43.75071,7.306844,0,0,OZU:SA:CTP2566,Europe/Paris,,OZU, +OZU:SP:2569,1,"Labrador",43.751814,7.307338,0,0,OZU:SA:CTP2569,Europe/Paris,,OZU, +OZU:SP:2570,1,"La Haie",43.748681,7.306493,0,0,OZU:SA:CTP2570,Europe/Paris,,OZU, +OZU:SP:2571,1,"L'Escalier",43.746652,7.308142,0,0,OZU:SA:CTP2571,Europe/Paris,,OZU, +OZU:SP:2572,1,"Complexe Sportif La Lauvette",43.749022,7.301441,0,0,OZU:SA:CTP2572,Europe/Paris,,OZU, +OZU:SP:2573,1,"Chemin de La Lauvette",43.742801,7.308029,0,0,OZU:SA:CTP2573,Europe/Paris,,OZU, +OZU:SP:2574,1,"Chemin de La Lauvette",43.742702,7.307834,0,0,OZU:SA:CTP2573,Europe/Paris,,OZU, +OZU:SP:2575,1,"Stade Hairabedian",43.746585,7.304695,0,0,OZU:SA:CTP2575,Europe/Paris,,OZU, +OZU:SP:2576,1,"Stade Hairabedian",43.746455,7.304559,0,0,OZU:SA:CTP2575,Europe/Paris,,OZU, +OZU:SP:2577,1,"Vauban",43.708631,7.286194,0,0,OZU:SA:CTP2541,Europe/Paris,,OZU, +OZU:SP:2578,1,"Station J.C. Bermond",43.698626,7.273971,0,0,OZU:SA:CTP1261,Europe/Paris,,OZU, +OZU:SP:258,1,"Coecilia",43.695778,7.29572,0,0,OZU:SA:CTP259,Europe/Paris,,OZU, +OZU:SP:2583,1,"Risso / Palais",43.708034,7.284497,0,0,OZU:SA:CTP1155,Europe/Paris,,OZU, +OZU:SP:2588,1,"Carnot",43.698188,7.287861,0,0,OZU:SA:CTP2588,Europe/Paris,,OZU, +OZU:SP:259,1,"Coecilia",43.695976,7.295712,0,0,OZU:SA:CTP259,Europe/Paris,,OZU, +OZU:SP:26,1,"Ancien Octroi",43.722621,7.290074,0,0,OZU:SA:CTP26,Europe/Paris,,OZU, +OZU:SP:260,1,"Col de Bast",43.732855,7.244125,0,0,OZU:SA:CTP260,Europe/Paris,,OZU, +OZU:SP:261,1,"Cal de Spagnol",43.693555,7.210404,0,0,OZU:SA:CTP262,Europe/Paris,,OZU, +OZU:SP:262,1,"Cal de Spagnol",43.693667,7.210501,0,0,OZU:SA:CTP262,Europe/Paris,,OZU, +OZU:SP:263,1,"Col de Villefranche",43.705287,7.300523,0,0,OZU:SA:CTP263,Europe/Paris,,OZU, +OZU:SP:264,1,"Col des 4 Chemins",43.716781,7.312526,0,0,OZU:SA:CTP264,Europe/Paris,,OZU, +OZU:SP:2643,1,"Hôpital Pasteur",43.723284,7.285424,0,0,OZU:SA:CTP1502,Europe/Paris,,OZU, +OZU:SP:2648,1,"Stade de Valrose",43.717858,7.266189,0,0,OZU:SA:CTP1254,Europe/Paris,,OZU, +OZU:SP:2649,1,"Résidence Universitaire Montebello",43.719235,7.267774,0,0,OZU:SA:CTP2649,Europe/Paris,,OZU, +OZU:SP:265,1,"Colette",43.697825,7.230543,0,0,OZU:SA:CTP265,Europe/Paris,,OZU, +OZU:SP:2650,1,"Les Baraques",43.695199,7.192578,0,0,OZU:SA:CTP2650,Europe/Paris,,OZU, +OZU:SP:2651,1,"Promenade des Arts",43.700728,7.278622,0,0,OZU:SA:CTP2651,Europe/Paris,,OZU, +OZU:SP:2652,1,"Les Arboras",43.692399,7.200054,0,0,OZU:SA:CTP2652,Europe/Paris,,OZU, +OZU:SP:2653,1,"Les Arboras",43.692613,7.199712,0,0,OZU:SA:CTP2652,Europe/Paris,,OZU, +OZU:SP:2655,1,"Massenet",43.694978,7.264294,0,0,OZU:SA:CTP2655,Europe/Paris,,OZU, +OZU:SP:2656,1,"Alberti",43.698732,7.272408,0,0,OZU:SA:CTP2656,Europe/Paris,,OZU, +OZU:SP:2658,1,"Centre Commercial / Saint-Isidore",43.710518,7.189659,0,0,OZU:SA:CTP2658,Europe/Paris,,OZU, +OZU:SP:2659,1,"Centre Commercial / Saint-Isidore",43.710391,7.189485,0,0,OZU:SA:CTP2658,Europe/Paris,,OZU, +OZU:SP:266,1,"Colette",43.697446,7.231156,0,0,OZU:SA:CTP265,Europe/Paris,,OZU, +OZU:SP:2662,1,"Parc Impérial Scolaire",43.705279,7.251668,0,0,OZU:SA:CTP2662,Europe/Paris,,OZU, +OZU:SP:2664,1,"Gare SNCF",43.703875,7.261951,0,0,OZU:SA:CTP52390,Europe/Paris,,OZU, +OZU:SP:2665,1,"Saint-Joseph",43.735044,7.296507,0,0,OZU:SA:CTP2665,Europe/Paris,,OZU, +OZU:SP:2666,1,"Trois Vallées",43.690148,7.227016,0,0,OZU:SA:CTP1313,Europe/Paris,,OZU, +OZU:SP:2668,1,"Trachel",43.706196,7.260227,0,0,OZU:SA:CTP2668,Europe/Paris,,OZU, +OZU:SP:2669,1,"Collège Jules Romains",43.678107,7.204877,0,0,OZU:SA:CTP2743,Europe/Paris,,OZU, +OZU:SP:267,1,"Colibri",43.737992,7.237289,0,0,OZU:SA:CTP267,Europe/Paris,,OZU, +OZU:SP:2676,1,"Vauban",43.708778,7.285926,0,0,OZU:SA:CTP2541,Europe/Paris,,OZU, +OZU:SP:268,1,"Colibri",43.73826,7.237548,0,0,OZU:SA:CTP267,Europe/Paris,,OZU, +OZU:SP:269,1,"Collège de l'Archet",43.692604,7.229089,0,0,OZU:SA:CTP269,Europe/Paris,,OZU, +OZU:SP:2694,1,"Hôpital Pasteur / Clinique Saint-François",43.722986,7.282095,0,0,OZU:SA:CTP2694,Europe/Paris,,OZU, +OZU:SP:2697,1,"Promenade des Arts",43.700605,7.27855,0,0,OZU:SA:CTP2651,Europe/Paris,,OZU, +OZU:SP:2698,1,"Max Barel",43.700744,7.286929,0,0,OZU:SA:CTP909,Europe/Paris,,OZU, +OZU:SP:2699,1,"Max Barel",43.700602,7.287412,0,0,OZU:SA:CTP909,Europe/Paris,,OZU, +OZU:SP:27,1,"Ancien Octroi",43.72304,7.289576,0,0,OZU:SA:CTP26,Europe/Paris,,OZU, +OZU:SP:270,1,"Collège de l'Archet",43.692662,7.229603,0,0,OZU:SA:CTP269,Europe/Paris,,OZU, +OZU:SP:2700,1,"Séguran",43.738014,7.305201,0,0,OZU:SA:CTP2700,Europe/Paris,,OZU, +OZU:SP:2701,1,"Eglantines",43.736614,7.302744,0,0,OZU:SA:CTP2701,Europe/Paris,,OZU, +OZU:SP:2703,1,"Malausséna",43.706435,7.263673,0,0,OZU:SA:CTP2703,Europe/Paris,,OZU, +OZU:SP:2705,1,"Mont Alban",43.706719,7.298076,0,0,OZU:SA:CTP64,Europe/Paris,,OZU, +OZU:SP:2708,1,"Gambetta / Buffa",43.696147,7.256602,0,0,OZU:SA:CTP2708,Europe/Paris,,OZU, +OZU:SP:2709,1,"Rosa Bonheur / Promenade",43.691982,7.249168,0,0,OZU:SA:CTP2709,Europe/Paris,,OZU, +OZU:SP:271,1,"Collet Pioum",43.750657,7.245013,0,0,OZU:SA:CTP271,Europe/Paris,,OZU, +OZU:SP:2710,1,"Vallon Barla / Promenade",43.682173,7.232712,0,0,OZU:SA:CTP2710,Europe/Paris,,OZU, +OZU:SP:2711,1,"Carras / Promenade",43.67952,7.230224,0,0,OZU:SA:CTP51490,Europe/Paris,,OZU, +OZU:SP:2713,1,"Grosso CUM / Promenade",43.692348,7.250826,0,0,OZU:SA:CTP52373,Europe/Paris,,OZU, +OZU:SP:2714,1,"Vallon Barla / Promenade",43.682149,7.233056,0,0,OZU:SA:CTP2710,Europe/Paris,,OZU, +OZU:SP:2715,1,"Californie / Promenade",43.671758,7.224843,0,0,OZU:SA:CTP2715,Europe/Paris,,OZU, +OZU:SP:2716,1,"JEAN NATALE",43.78872,7.182622,0,0,OZU:SA:CTP2716,Europe/Paris,,OZU, +OZU:SP:2717,1,"ORATOIRE",43.780251,7.175962,0,0,OZU:SA:CTP2717,Europe/Paris,,OZU, +OZU:SP:2718,1,"FOUR A CHAUX",43.776736,7.175595,0,0,OZU:SA:CTP2718,Europe/Paris,,OZU, +OZU:SP:2719,1,"CLOS DE RIPERT",43.783764,7.174356,0,0,OZU:SA:CTP2719,Europe/Paris,,OZU, +OZU:SP:272,1,"Collet Pioum",43.750458,7.245033,0,0,OZU:SA:CTP271,Europe/Paris,,OZU, +OZU:SP:2720,1,"LE GOURG",43.787008,7.178022,0,0,OZU:SA:CTP2720,Europe/Paris,,OZU, +OZU:SP:2721,1,"SAINT SEBASTIEN LA DILIGENCE",43.800999,7.179581,0,0,OZU:SA:CTP2721,Europe/Paris,,OZU, +OZU:SP:2722,1,"LA GINESTIERE",43.784749,7.184304,0,0,OZU:SA:CTP2722,Europe/Paris,,OZU, +OZU:SP:2723,1,"LE COUGNET",43.783003,7.182129,0,0,OZU:SA:CTP2723,Europe/Paris,,OZU, +OZU:SP:2724,1,"LE COUGNET 2",43.782961,7.182186,0,0,OZU:SA:CTP2724,Europe/Paris,,OZU, +OZU:SP:2725,1,"SAINT JOSEPH",43.789752,7.188583,0,0,OZU:SA:CTP2725,Europe/Paris,,OZU, +OZU:SP:2726,1,"SAINT JOSEPH 2",43.788675,7.189364,0,0,OZU:SA:CTP2726,Europe/Paris,,OZU, +OZU:SP:2727,1,"CHEMIN DE LA DEESSE 1",43.780347,7.186402,0,0,OZU:SA:CTP2727,Europe/Paris,,OZU, +OZU:SP:2728,1,"CHEMIN DE LA DEESSE 2",43.78063,7.186216,0,0,OZU:SA:CTP2728,Europe/Paris,,OZU, +OZU:SP:2729,1,"ECOLE DES PLANS 1",43.779075,7.196969,0,0,OZU:SA:CTP2729,Europe/Paris,,OZU, +OZU:SP:273,1,"Colombo",43.722392,7.279721,0,0,OZU:SA:CTP274,Europe/Paris,,OZU, +OZU:SP:2730,1,"ECOLE DES PLANS 2",43.779088,7.197035,0,0,OZU:SA:CTP2730,Europe/Paris,,OZU, +OZU:SP:2736,1,"La Plaine",43.686803,7.200966,0,0,OZU:SA:CTP2744,Europe/Paris,,OZU, +OZU:SP:2737,1,"Lycée Thierry Maulnier",43.684446,7.198282,0,0,OZU:SA:CTP877,Europe/Paris,,OZU, +OZU:SP:274,1,"Colombo",43.722521,7.279459,0,0,OZU:SA:CTP274,Europe/Paris,,OZU, +OZU:SP:2740,1,"La Vallière / Promenade",43.671624,7.225111,0,0,OZU:SA:CTP52768,Europe/Paris,,OZU, +OZU:SP:2741,1,"Leader",43.670984,7.20866,0,0,OZU:SA:CTP2741,Europe/Paris,,OZU, +OZU:SP:2742,1,"Méridia",43.683251,7.203122,0,0,OZU:SA:CTP2742,Europe/Paris,,OZU, +OZU:SP:2743,1,"Collège Jules Romains",43.679277,7.204722,0,0,OZU:SA:CTP2743,Europe/Paris,,OZU, +OZU:SP:2744,1,"La Plaine",43.685756,7.201124,0,0,OZU:SA:CTP2744,Europe/Paris,,OZU, +OZU:SP:2746,1,"Leader",43.670879,7.208378,0,0,OZU:SA:CTP2741,Europe/Paris,,OZU, +OZU:SP:275,1,"Colonel Gassin",43.723188,7.284186,0,0,OZU:SA:CTP275,Europe/Paris,,OZU, +OZU:SP:279,1,"Comte de Falicon",43.727887,7.255583,0,0,OZU:SA:CTP708,Europe/Paris,,OZU, +OZU:SP:280,1,"Comté de Nice",43.675965,7.206642,0,0,OZU:SA:CTP281,Europe/Paris,,OZU, +OZU:SP:281,1,"Comté de Nice",43.675558,7.206747,0,0,OZU:SA:CTP281,Europe/Paris,,OZU, +OZU:SP:282,1,"Congrès / Promenade",43.694735,7.262897,0,0,OZU:SA:CTP282,Europe/Paris,,OZU, +OZU:SP:283,1,"Congrès / Joffre",43.698306,7.262995,0,0,OZU:SA:CTP283,Europe/Paris,,OZU, +OZU:SP:284,1,"Constellations / IUT",43.687431,7.227168,0,0,OZU:SA:CTP284,Europe/Paris,,OZU, +OZU:SP:286,1,"Constellations",43.68898,7.226767,0,0,OZU:SA:CTP1568,Europe/Paris,,OZU, +OZU:SP:287,1,"Conti",43.733286,7.237616,0,0,OZU:SA:CTP287,Europe/Paris,,OZU, +OZU:SP:288,1,"Conti",43.732623,7.237943,0,0,OZU:SA:CTP287,Europe/Paris,,OZU, +OZU:SP:289,1,"Coquette",43.726908,7.248766,0,0,OZU:SA:CTP289,Europe/Paris,,OZU, +OZU:SP:29,1,"Ansaldi",43.695829,7.242387,0,0,OZU:SA:CTP30,Europe/Paris,,OZU, +OZU:SP:290,1,"Coquette",43.726736,7.248987,0,0,OZU:SA:CTP289,Europe/Paris,,OZU, +OZU:SP:291,1,"Corniche Bellevue",43.708218,7.243069,0,0,OZU:SA:CTP1406,Europe/Paris,,OZU, +OZU:SP:292,1,"Corniche Fleurie",43.682871,7.220459,0,0,OZU:SA:CTP292,Europe/Paris,,OZU, +OZU:SP:293,1,"Corniche Fleurie",43.68256,7.220149,0,0,OZU:SA:CTP292,Europe/Paris,,OZU, +OZU:SP:294,1,"Coromandel",43.725339,7.261298,0,0,OZU:SA:CTP294,Europe/Paris,,OZU, +OZU:SP:296,1,"Costabella",43.678691,7.224271,0,0,OZU:SA:CTP296,Europe/Paris,,OZU, +OZU:SP:297,1,"Costabella",43.678902,7.223806,0,0,OZU:SA:CTP296,Europe/Paris,,OZU, +OZU:SP:298,1,"Courbet",43.731392,7.27572,0,0,OZU:SA:CTP298,Europe/Paris,,OZU, +OZU:SP:299,1,"Courbet",43.731433,7.275624,0,0,OZU:SA:CTP298,Europe/Paris,,OZU, +OZU:SP:3,1,"Abbaye de Roseland",43.693384,7.228374,0,0,OZU:SA:CTP3,Europe/Paris,,OZU, +OZU:SP:30,1,"Ansaldi",43.695304,7.242838,0,0,OZU:SA:CTP30,Europe/Paris,,OZU, +OZU:SP:300,1,"Croix de Berra",43.708158,7.212288,0,0,OZU:SA:CTP300,Europe/Paris,,OZU, +OZU:SP:3002,1,"AFN",43.724823,7.098935,0,0,OZU:SA:CTP3002,Europe/Paris,,OZU, +OZU:SP:30021,1,"La Manda",43.763916,7.204676,0,0,OZU:SA:CTP51296,Europe/Paris,,OZU, +OZU:SP:3003,1,"AFN",43.72465,7.099592,0,0,OZU:SA:CTP3002,Europe/Paris,,OZU, +OZU:SP:3004,1,"Anthony Mars",43.722172,7.114744,0,0,OZU:SA:CTP54977,Europe/Paris,,OZU, +OZU:SP:3005,1,"Anthony Mars",43.722258,7.114826,0,0,OZU:SA:CTP54977,Europe/Paris,,OZU, +OZU:SP:3006,1,"Bagneissore",43.746891,7.14995,0,0,OZU:SA:CTP54266,Europe/Paris,,OZU, +OZU:SP:3007,1,"Bagneissore",43.746856,7.149723,0,0,OZU:SA:CTP54266,Europe/Paris,,OZU, +OZU:SP:3008,1,"Le Baou des Noirs",43.742547,7.144539,0,0,OZU:SA:CTP3008,Europe/Paris,,OZU, +OZU:SP:3009,1,"Le Baou des Noirs",43.742905,7.14457,0,0,OZU:SA:CTP3008,Europe/Paris,,OZU, +OZU:SP:3010,1,"Bel Respiro",43.720818,7.084309,0,0,OZU:SA:CTP3010,Europe/Paris,,OZU, +OZU:SP:3011,1,"Bel Respiro",43.720382,7.084174,0,0,OZU:SA:CTP3010,Europe/Paris,,OZU, +OZU:SP:3012,1,"Bergerie",43.713963,7.087647,0,0,OZU:SA:CTP3012,Europe/Paris,,OZU, +OZU:SP:3013,1,"Bergerie",43.713996,7.087726,0,0,OZU:SA:CTP3012,Europe/Paris,,OZU, +OZU:SP:3014,1,"Bretelle du Collet",43.735832,7.132484,0,0,OZU:SA:CTP3014,Europe/Paris,,OZU, +OZU:SP:3015,1,"Bretelle du Collet",43.735917,7.132378,0,0,OZU:SA:CTP3014,Europe/Paris,,OZU, +OZU:SP:3016,1,"Cadrans Solaires",43.718261,7.118886,0,0,OZU:SA:CTP55002,Europe/Paris,,OZU, +OZU:SP:3018,1,"Centre de Secours",43.724188,7.103328,0,0,OZU:SA:CTP3018,Europe/Paris,,OZU, +OZU:SP:3019,1,"Centre de Secours",43.72413,7.103211,0,0,OZU:SA:CTP3018,Europe/Paris,,OZU, +OZU:SP:3020,1,"Chemin des Colles",43.723462,7.086045,0,0,OZU:SA:CTP3020,Europe/Paris,,OZU, +OZU:SP:3021,1,"Colle Sud",43.72335,7.088381,0,0,OZU:SA:CTP3021,Europe/Paris,,OZU, +OZU:SP:3022,1,"Coq Hardi",43.70543,7.132866,0,0,OZU:SA:CTP3022,Europe/Paris,,OZU, +OZU:SP:3023,1,"Coq Hardi",43.705302,7.132718,0,0,OZU:SA:CTP3022,Europe/Paris,,OZU, +OZU:SP:3024,1,"Domaine de l'Etoile",43.719052,7.165762,0,0,OZU:SA:CTP3024,Europe/Paris,,OZU, +OZU:SP:3025,1,"Domaine de l'Etoile",43.718978,7.165608,0,0,OZU:SA:CTP3024,Europe/Paris,,OZU, +OZU:SP:3026,1,"Emile Hugues",43.710784,7.125669,0,0,OZU:SA:CTP3026,Europe/Paris,,OZU, +OZU:SP:3028,1,"Fongéri",43.743975,7.176784,0,0,OZU:SA:CTP54280,Europe/Paris,,OZU, +OZU:SP:3029,1,"Fongéri",43.743742,7.176553,0,0,OZU:SA:CTP54280,Europe/Paris,,OZU, +OZU:SP:303,1,"Cyrnos",43.715714,7.253711,0,0,OZU:SA:CTP303,Europe/Paris,,OZU, +OZU:SP:3031,1,"Grand Jardin",43.722642,7.112039,0,0,OZU:SA:CTP55017,Europe/Paris,,OZU, +OZU:SP:3033,1,"Baronne",43.720654,7.179109,0,0,OZU:SA:CTP3033,Europe/Paris,,OZU, +OZU:SP:3034,1,"Baronne",43.720614,7.179193,0,0,OZU:SA:CTP3033,Europe/Paris,,OZU, +OZU:SP:3035,1,"Baronne Place",43.719405,7.179227,0,0,OZU:SA:CTP3035,Europe/Paris,,OZU, +OZU:SP:3036,1,"Baronne Place",43.718498,7.179361,0,0,OZU:SA:CTP3035,Europe/Paris,,OZU, +OZU:SP:3037,1,"La Cabergue",43.748231,7.154014,0,0,OZU:SA:CTP54272,Europe/Paris,,OZU, +OZU:SP:3038,1,"La Cabergue",43.748381,7.153505,0,0,OZU:SA:CTP54272,Europe/Paris,,OZU, +OZU:SP:3039,1,"La Cagne",43.744366,7.133762,0,0,OZU:SA:CTP3039,Europe/Paris,,OZU, +OZU:SP:304,1,"Cyrnos",43.714989,7.254021,0,0,OZU:SA:CTP303,Europe/Paris,,OZU, +OZU:SP:3040,1,"La Cagne",43.744276,7.133791,0,0,OZU:SA:CTP3039,Europe/Paris,,OZU, +OZU:SP:3041,1,"La Colette",43.742403,7.139273,0,0,OZU:SA:CTP3041,Europe/Paris,,OZU, +OZU:SP:3042,1,"La Colette",43.742472,7.139327,0,0,OZU:SA:CTP3041,Europe/Paris,,OZU, +OZU:SP:3043,1,"La Fontette",43.725071,7.113919,0,0,OZU:SA:CTP55034,Europe/Paris,,OZU, +OZU:SP:3044,1,"La Fontette",43.724939,7.113672,0,0,OZU:SA:CTP55034,Europe/Paris,,OZU, +OZU:SP:3045,1,"La Fontonne",43.746014,7.147578,0,0,OZU:SA:CTP54282,Europe/Paris,,OZU, +OZU:SP:3046,1,"La Fontonne",43.74558,7.147404,0,0,OZU:SA:CTP54282,Europe/Paris,,OZU, +OZU:SP:3047,1,"IBM",43.731056,7.166396,0,0,OZU:SA:CTP3047,Europe/Paris,,OZU, +OZU:SP:3048,1,"IBM",43.730955,7.166424,0,0,OZU:SA:CTP3047,Europe/Paris,,OZU, +OZU:SP:3049,1,"Stade",43.729405,7.168888,0,0,OZU:SA:CTP3230,Europe/Paris,,OZU, +OZU:SP:305,1,"Daudet",43.707949,7.251762,0,0,OZU:SA:CTP305,Europe/Paris,,OZU, +OZU:SP:3050,1,"Village",43.72212,7.153902,0,0,OZU:SA:CTP3050,Europe/Paris,,OZU, +OZU:SP:3051,1,"Village",43.722644,7.154257,0,0,OZU:SA:CTP3050,Europe/Paris,,OZU, +OZU:SP:3053,1,"La Plus Haute Sine",43.714649,7.0868,0,0,OZU:SA:CTP3053,Europe/Paris,,OZU, +OZU:SP:3054,1,"La Plus Haute Sine",43.714598,7.086933,0,0,OZU:SA:CTP3053,Europe/Paris,,OZU, +OZU:SP:3055,1,"La Pompe",43.717372,7.152943,0,0,OZU:SA:CTP3055,Europe/Paris,,OZU, +OZU:SP:3056,1,"La Pompe",43.717552,7.15194,0,0,OZU:SA:CTP3055,Europe/Paris,,OZU, +OZU:SP:3058,1,"Rocade",43.71798,7.113609,0,0,OZU:SA:CTP55043,Europe/Paris,,OZU, +OZU:SP:3059,1,"L'Ara",43.721472,7.109383,0,0,OZU:SA:CTP3059,Europe/Paris,,OZU, +OZU:SP:306,1,"Daudet",43.707644,7.251748,0,0,OZU:SA:CTP305,Europe/Paris,,OZU, +OZU:SP:3060,1,"Le Brusquet",43.744544,7.146832,0,0,OZU:SA:CTP54270,Europe/Paris,,OZU, +OZU:SP:3061,1,"Le Brusquet",43.744008,7.146327,0,0,OZU:SA:CTP54270,Europe/Paris,,OZU, +OZU:SP:3062,1,"Le Caribou",43.726073,7.117766,0,0,OZU:SA:CTP55031,Europe/Paris,,OZU, +OZU:SP:3063,1,"Le Caribou",43.726173,7.117514,0,0,OZU:SA:CTP55031,Europe/Paris,,OZU, +OZU:SP:3064,1,"Le Marronnier",43.719987,7.148607,0,0,OZU:SA:CTP3064,Europe/Paris,,OZU, +OZU:SP:3065,1,"Le Marronnier",43.720329,7.149815,0,0,OZU:SA:CTP3064,Europe/Paris,,OZU, +OZU:SP:3067,1,"Le Peyron",43.743618,7.145773,0,0,OZU:SA:CTP3067,Europe/Paris,,OZU, +OZU:SP:3068,1,"Le Pont des Colles",43.736306,7.150421,0,0,OZU:SA:CTP3068,Europe/Paris,,OZU, +OZU:SP:3069,1,"Le Pont des Colles",43.736493,7.150462,0,0,OZU:SA:CTP3068,Europe/Paris,,OZU, +OZU:SP:307,1,"Dauphine",43.683991,7.231154,0,0,OZU:SA:CTP308,Europe/Paris,,OZU, +OZU:SP:3070,1,"Le Puits du Renard",43.720848,7.121686,0,0,OZU:SA:CTP3070,Europe/Paris,,OZU, +OZU:SP:3071,1,"Le Puits du Renard",43.721644,7.122187,0,0,OZU:SA:CTP3070,Europe/Paris,,OZU, +OZU:SP:3072,1,"Le Suve",43.727269,7.121654,0,0,OZU:SA:CTP55046,Europe/Paris,,OZU, +OZU:SP:3073,1,"Le Suve",43.727254,7.121813,0,0,OZU:SA:CTP55046,Europe/Paris,,OZU, +OZU:SP:3074,1,"Le Suvéran",43.710953,7.129991,0,0,OZU:SA:CTP3074,Europe/Paris,,OZU, +OZU:SP:3075,1,"Le Suvéran",43.711071,7.129766,0,0,OZU:SA:CTP3074,Europe/Paris,,OZU, +OZU:SP:3076,1,"Le Taude",43.701234,7.131866,0,0,OZU:SA:CTP3076,Europe/Paris,,OZU, +OZU:SP:3077,1,"Le Taude",43.701338,7.131727,0,0,OZU:SA:CTP3076,Europe/Paris,,OZU, +OZU:SP:3078,1,"Les Cayrons",43.707797,7.129875,0,0,OZU:SA:CTP3078,Europe/Paris,,OZU, +OZU:SP:3079,1,"Les Fonts",43.735523,7.129912,0,0,OZU:SA:CTP3079,Europe/Paris,,OZU, +OZU:SP:308,1,"Dauphine",43.68403,7.231083,0,0,OZU:SA:CTP308,Europe/Paris,,OZU, +OZU:SP:3080,1,"Les Fonts",43.735556,7.129579,0,0,OZU:SA:CTP3079,Europe/Paris,,OZU, +OZU:SP:3081,1,"Les Fourches",43.716086,7.123856,0,0,OZU:SA:CTP3081,Europe/Paris,,OZU, +OZU:SP:3082,1,"Les Fourches",43.715591,7.122858,0,0,OZU:SA:CTP3081,Europe/Paris,,OZU, +OZU:SP:3083,1,"Les Mellières",43.716032,7.120424,0,0,OZU:SA:CTP55038,Europe/Paris,,OZU, +OZU:SP:3084,1,"Les Moulins",43.744639,7.134928,0,0,OZU:SA:CTP3170,Europe/Paris,,OZU, +OZU:SP:3085,1,"Les Orangers",43.718905,7.123248,0,0,OZU:SA:CTP3085,Europe/Paris,,OZU, +OZU:SP:3086,1,"Les Orangers",43.71892,7.12351,0,0,OZU:SA:CTP3085,Europe/Paris,,OZU, +OZU:SP:3087,1,"Les Plantiers",43.729667,7.177319,0,0,OZU:SA:CTP52064,Europe/Paris,,OZU, +OZU:SP:3088,1,"Les Plantiers",43.729662,7.177416,0,0,OZU:SA:CTP52064,Europe/Paris,,OZU, +OZU:SP:3089,1,"Les Rombinas",43.706065,7.151652,0,0,OZU:SA:CTP3089,Europe/Paris,,OZU, +OZU:SP:309,1,"De Joly",43.701883,7.293148,0,0,OZU:SA:CTP310,Europe/Paris,,OZU, +OZU:SP:3090,1,"Les Rombinas",43.706241,7.151543,0,0,OZU:SA:CTP3089,Europe/Paris,,OZU, +OZU:SP:3091,1,"Les Seuils",43.709316,7.149208,0,0,OZU:SA:CTP3091,Europe/Paris,,OZU, +OZU:SP:3092,1,"Les Seuils",43.709165,7.14917,0,0,OZU:SA:CTP3091,Europe/Paris,,OZU, +OZU:SP:3093,1,"Les Vacquières",43.732307,7.154877,0,0,OZU:SA:CTP3093,Europe/Paris,,OZU, +OZU:SP:3094,1,"Les Vacquières",43.732339,7.155563,0,0,OZU:SA:CTP3093,Europe/Paris,,OZU, +OZU:SP:3095,1,"Les Vacquières",43.732123,7.154985,0,0,OZU:SA:CTP3093,Europe/Paris,,OZU, +OZU:SP:3096,1,"Les Vergers",43.704761,7.148152,0,0,OZU:SA:CTP3097,Europe/Paris,,OZU, +OZU:SP:3097,1,"Les Vergers",43.704963,7.14807,0,0,OZU:SA:CTP3097,Europe/Paris,,OZU, +OZU:SP:3098,1,"Les Vergers",43.733728,7.12873,0,0,OZU:SA:CTP3098,Europe/Paris,,OZU, +OZU:SP:3099,1,"Les Vergers",43.733682,7.128577,0,0,OZU:SA:CTP3098,Europe/Paris,,OZU, +OZU:SP:310,1,"De Joly",43.702083,7.293302,0,0,OZU:SA:CTP310,Europe/Paris,,OZU, +OZU:SP:3101,1,"Maréchal Foch",43.723263,7.105909,0,0,OZU:SA:CTP3101,Europe/Paris,,OZU, +OZU:SP:3103,1,"Maoupas",43.724007,7.177632,0,0,OZU:SA:CTP52058,Europe/Paris,,OZU, +OZU:SP:3104,1,"Maoupas",43.723518,7.177665,0,0,OZU:SA:CTP52058,Europe/Paris,,OZU, +OZU:SP:3105,1,"Mont Gros",43.726721,7.169468,0,0,OZU:SA:CTP3105,Europe/Paris,,OZU, +OZU:SP:3106,1,"Mont Gros",43.726903,7.169645,0,0,OZU:SA:CTP3105,Europe/Paris,,OZU, +OZU:SP:3107,1,"Nécropole",43.70747,7.096889,0,0,OZU:SA:CTP3107,Europe/Paris,,OZU, +OZU:SP:3108,1,"Notre Dame des Fleurs",43.72252,7.082677,0,0,OZU:SA:CTP3108,Europe/Paris,,OZU, +OZU:SP:3109,1,"Paoutaouchoun",43.720876,7.123698,0,0,OZU:SA:CTP3109,Europe/Paris,,OZU, +OZU:SP:311,1,"Défly",43.701473,7.276117,0,0,OZU:SA:CTP311,Europe/Paris,,OZU, +OZU:SP:3112,1,"Pierre Droite",43.714577,7.119718,0,0,OZU:SA:CTP3112,Europe/Paris,,OZU, +OZU:SP:3115,1,"Plan du Bois",43.731588,7.164367,0,0,OZU:SA:CTP3115,Europe/Paris,,OZU, +OZU:SP:3116,1,"Plan du Bois",43.73235,7.163203,0,0,OZU:SA:CTP3115,Europe/Paris,,OZU, +OZU:SP:3117,1,"Plan Saint-Jeannet",43.740673,7.17772,0,0,OZU:SA:CTP52070,Europe/Paris,,OZU, +OZU:SP:3119,1,"Saint-Jeannet",43.749812,7.144593,0,0,OZU:SA:CTP3120,Europe/Paris,,OZU, +OZU:SP:312,1,"Défly",43.701858,7.276337,0,0,OZU:SA:CTP311,Europe/Paris,,OZU, +OZU:SP:3120,1,"Saint-Jeannet",43.750219,7.144555,0,0,OZU:SA:CTP3120,Europe/Paris,,OZU, +OZU:SP:3121,1,"Sainte-Elisabeth",43.714334,7.12603,0,0,OZU:SA:CTP3121,Europe/Paris,,OZU, +OZU:SP:3122,1,"Sainte-Elisabeth",43.714364,7.12617,0,0,OZU:SA:CTP3121,Europe/Paris,,OZU, +OZU:SP:3125,1,"Saint-Claude",43.730926,7.124284,0,0,OZU:SA:CTP3125,Europe/Paris,,OZU, +OZU:SP:3126,1,"Saint-Claude",43.73093,7.123613,0,0,OZU:SA:CTP3125,Europe/Paris,,OZU, +OZU:SP:3127,1,"Saint-Donat",43.72525,7.094959,0,0,OZU:SA:CTP3127,Europe/Paris,,OZU, +OZU:SP:3128,1,"Saint-Donat",43.725403,7.094314,0,0,OZU:SA:CTP3127,Europe/Paris,,OZU, +OZU:SP:3129,1,"Saint-Estève",43.746491,7.178303,0,0,OZU:SA:CTP54294,Europe/Paris,,OZU, +OZU:SP:313,1,"Delfino / Riquier",43.703037,7.289388,0,0,OZU:SA:CTP313,Europe/Paris,,OZU, +OZU:SP:3130,1,"Sainte-Colombe",43.731968,7.128209,0,0,OZU:SA:CTP3130,Europe/Paris,,OZU, +OZU:SP:3131,1,"Sainte-Colombe",43.731922,7.128056,0,0,OZU:SA:CTP3130,Europe/Paris,,OZU, +OZU:SP:3132,1,"Suvéran",43.714861,7.129762,0,0,OZU:SA:CTP3132,Europe/Paris,,OZU, +OZU:SP:3133,1,"Thomas Garbies",43.725826,7.154006,0,0,OZU:SA:CTP3133,Europe/Paris,,OZU, +OZU:SP:3134,1,"Thomas Garbies",43.725989,7.154181,0,0,OZU:SA:CTP3133,Europe/Paris,,OZU, +OZU:SP:3135,1,"Val d'Azur",43.723106,7.116027,0,0,OZU:SA:CTP55105,Europe/Paris,,OZU, +OZU:SP:3136,1,"Val d'Azur",43.722993,7.116328,0,0,OZU:SA:CTP55105,Europe/Paris,,OZU, +OZU:SP:3137,1,"Vallon des Dames",43.717195,7.084789,0,0,OZU:SA:CTP3137,Europe/Paris,,OZU, +OZU:SP:3138,1,"Vallon des Dames",43.717202,7.084641,0,0,OZU:SA:CTP3137,Europe/Paris,,OZU, +OZU:SP:3139,1,"Venciannes",43.718082,7.126804,0,0,OZU:SA:CTP3139,Europe/Paris,,OZU, +OZU:SP:314,1,"Delfino / Arson",43.703784,7.288596,0,0,OZU:SA:CTP314,Europe/Paris,,OZU, +OZU:SP:3140,1,"Vosgelade",43.717678,7.129005,0,0,OZU:SA:CTP3140,Europe/Paris,,OZU, +OZU:SP:3153,1,"L'Anguille",43.747884,7.164942,0,0,OZU:SA:CTP3153,Europe/Paris,,OZU, +OZU:SP:3154,1,"L'Anguille",43.748114,7.166138,0,0,OZU:SA:CTP3153,Europe/Paris,,OZU, +OZU:SP:3166,1,"Les Cents Chênes",43.745753,7.158259,0,0,OZU:SA:CTP3167,Europe/Paris,,OZU, +OZU:SP:3167,1,"Les Cents Chênes",43.745693,7.15814,0,0,OZU:SA:CTP3167,Europe/Paris,,OZU, +OZU:SP:317,1,"Delphine",43.72378,7.243479,0,0,OZU:SA:CTP318,Europe/Paris,,OZU, +OZU:SP:3170,1,"Les Moulins",43.744818,7.134943,0,0,OZU:SA:CTP3170,Europe/Paris,,OZU, +OZU:SP:3172,1,"Les Prés",43.744334,7.147299,0,0,OZU:SA:CTP3173,Europe/Paris,,OZU, +OZU:SP:3173,1,"Les Prés",43.744257,7.147404,0,0,OZU:SA:CTP3173,Europe/Paris,,OZU, +OZU:SP:318,1,"Delphine",43.723927,7.24302,0,0,OZU:SA:CTP318,Europe/Paris,,OZU, +OZU:SP:3185,1,"L'Epingle",43.712918,7.16883,0,0,OZU:SA:CTP5113,Europe/Paris,,OZU, +OZU:SP:3186,1,"Halte Routière de l'Ara",43.723001,7.107166,0,0,OZU:SA:CTP55021,Europe/Paris,,OZU, +OZU:SP:3187,1,"Route de Cagnes",43.712897,7.129199,0,0,OZU:SA:CTP3187,Europe/Paris,,OZU, +OZU:SP:3189,1,"Val Vert",43.719649,7.125148,0,0,OZU:SA:CTP3189,Europe/Paris,,OZU, +OZU:SP:3191,1,"Plan Saint-Jeannet",43.740684,7.177473,0,0,OZU:SA:CTP52070,Europe/Paris,,OZU, +OZU:SP:3192,1,"Saint-Estève",43.74648,7.17855,0,0,OZU:SA:CTP54294,Europe/Paris,,OZU, +OZU:SP:32037,1,"Peire Long",43.682872,7.144451,0,0,OZU:SA:CTP32037,Europe/Paris,,OZU, +OZU:SP:32038,1,"Le Noyer",43.687246,7.144328,0,0,OZU:SA:CTP32038,Europe/Paris,,OZU, +OZU:SP:32041,1,"Le Bassin Fourrière",43.68917,7.147667,0,0,OZU:SA:CTP32041,Europe/Paris,,OZU, +OZU:SP:32042,1,"Les Narcisses",43.67354,7.151247,0,0,OZU:SA:CTP32042,Europe/Paris,,OZU, +OZU:SP:32043,1,"La Quiétude",43.674583,7.144037,0,0,OZU:SA:CTP32043,Europe/Paris,,OZU, +OZU:SP:32044,1,"Les Caucours",43.676301,7.143887,0,0,OZU:SA:CTP32044,Europe/Paris,,OZU, +OZU:SP:32045,1,"Andalouse",43.678172,7.141698,0,0,OZU:SA:CTP32045,Europe/Paris,,OZU, +OZU:SP:32046,1,"Clémentine",43.682386,7.138989,0,0,OZU:SA:CTP32046,Europe/Paris,,OZU, +OZU:SP:32047,1,"Carré Israélite",43.68377,7.137359,0,0,OZU:SA:CTP32047,Europe/Paris,,OZU, +OZU:SP:32048,1,"Le Pylône Cagnes",43.676575,7.137538,0,0,OZU:SA:CTP32048,Europe/Paris,,OZU, +OZU:SP:32049,1,"Cocagne",43.677199,7.137828,0,0,OZU:SA:CTP32049,Europe/Paris,,OZU, +OZU:SP:32050,1,"Ecole Pain De Sucre",43.674449,7.13866,0,0,OZU:SA:CTP32050,Europe/Paris,,OZU, +OZU:SP:32051,1,"HLM Colombier",43.667251,7.141587,0,0,OZU:SA:CTP32051,Europe/Paris,,OZU, +OZU:SP:32055,1,"La Roue",43.670907,7.128962,0,0,OZU:SA:CTP32055,Europe/Paris,,OZU, +OZU:SP:32065,1,"Les Colombines",43.678054,7.134067,0,0,OZU:SA:CTP32065,Europe/Paris,,OZU, +OZU:SP:32068,1,"Bellevue",43.670224,7.142133,0,0,OZU:SA:CTP32068,Europe/Paris,,OZU, +OZU:SP:32069,1,"Deux Tours",43.67201,7.14054,0,0,OZU:SA:CTP32069,Europe/Paris,,OZU, +OZU:SP:32075,1,"Le Rêve",43.68404,7.168277,0,0,OZU:SA:CTP32075,Europe/Paris,,OZU, +OZU:SP:32076,1,"La Fresque",43.685494,7.170884,0,0,OZU:SA:CTP32076,Europe/Paris,,OZU, +OZU:SP:32077,1,"Le Palmier",43.68769,7.17243,0,0,OZU:SA:CTP32077,Europe/Paris,,OZU, +OZU:SP:32078,1,"Le Bassin",43.689508,7.173729,0,0,OZU:SA:CTP32078,Europe/Paris,,OZU, +OZU:SP:32079,1,"Les Mimosas",43.679934,7.17714,0,0,OZU:SA:CTP32079,Europe/Paris,,OZU, +OZU:SP:32080,1,"Bel Azur",43.677495,7.177643,0,0,OZU:SA:CTP32080,Europe/Paris,,OZU, +OZU:SP:321,1,"Désambrois",43.705127,7.272214,0,0,OZU:SA:CTP322,Europe/Paris,,OZU, +OZU:SP:32133,1,"la-Manda (741-744)",43.760733,7.203382,0,0,OZU:SA:CTP32133,Europe/Paris,,OZU, +OZU:SP:32134,1,"Les Cappan Croisement",43.749081,7.196719,0,0,OZU:SA:CTP32134,Europe/Paris,,OZU, +OZU:SP:32135,1,"Golfan",43.759676,7.210234,0,0,OZU:SA:CTP32135,Europe/Paris,,OZU, +OZU:SP:32136,1,"Les Fréghières",43.764453,7.217511,0,0,OZU:SA:CTP6149,Europe/Paris,,OZU, +OZU:SP:32137,1,"La Charmeraie",43.737943,7.200825,0,0,OZU:SA:CTP32137,Europe/Paris,,OZU, +OZU:SP:32138,1,"Pylônes",43.740958,7.201686,0,0,OZU:SA:CTP1516,Europe/Paris,,OZU, +OZU:SP:32139,1,"Les Séoules",43.748167,7.20715,0,0,OZU:SA:CTP32139,Europe/Paris,,OZU, +OZU:SP:32140,1,"Raccourci Du Pilon",43.750399,7.213984,0,0,OZU:SA:CTP32140,Europe/Paris,,OZU, +OZU:SP:32150,1,"Le Clotet",43.758247,7.21465,0,0,OZU:SA:CTP32150,Europe/Paris,,OZU, +OZU:SP:3217,1,"Colonel Meyère",43.721099,7.115188,0,0,OZU:SA:CTP54996,Europe/Paris,,OZU, +OZU:SP:322,1,"Désambrois",43.704938,7.272408,0,0,OZU:SA:CTP322,Europe/Paris,,OZU, +OZU:SP:32208,1,"Aire Saint-Michel",43.743403,7.262948,0,0,OZU:SA:CTP6001,Europe/Paris,,OZU, +OZU:SP:32209,1,"Denis Semeria",43.715454,7.288955,0,0,OZU:SA:CTP32209,Europe/Paris,,OZU, +OZU:SP:3221,1,"Cadrans Solaires",43.718408,7.118823,0,0,OZU:SA:CTP55002,Europe/Paris,,OZU, +OZU:SP:32210,1,"Gare SNCF",43.704728,7.263271,0,0,OZU:SA:CTP52390,Europe/Paris,,OZU, +OZU:SP:32211,1,"Arcadia",43.683361,7.222568,0,0,OZU:SA:CTP40,Europe/Paris,,OZU, +OZU:SP:32212,1,"Pagnol",43.778685,7.187576,0,0,OZU:SA:CTP50907,Europe/Paris,,OZU, +OZU:SP:32213,1,"Les Coteaux De Bellet",43.7437,7.20342,0,0,OZU:SA:CTP32213,Europe/Paris,,OZU, +OZU:SP:32214,1,"Cappan",43.7525,7.20347,0,0,OZU:SA:CTP32214,Europe/Paris,,OZU, +OZU:SP:32215,1,"Stade Allianz Riviera",43.705224,7.196442,0,0,OZU:SA:CTP32215,Europe/Paris,,OZU, +OZU:SP:32216,1,"La Vigneraie",43.70926,7.233458,0,0,OZU:SA:CTP32216,Europe/Paris,,OZU, +OZU:SP:32217,1,"La Vigneraie",43.708163,7.234169,0,0,OZU:SA:CTP32216,Europe/Paris,,OZU, +OZU:SP:32218,1,"Villa Sainte-Anne",43.709043,7.232482,0,0,OZU:SA:CTP32218,Europe/Paris,,OZU, +OZU:SP:32219,1,"Villa Sainte-Anne",43.709305,7.232751,0,0,OZU:SA:CTP32218,Europe/Paris,,OZU, +OZU:SP:3222,1,"Colonel Meyère",43.721019,7.115355,0,0,OZU:SA:CTP54996,Europe/Paris,,OZU, +OZU:SP:32220,1,"La Grange Rimade",43.662105,7.132356,0,0,OZU:SA:CTP4063,Europe/Paris,,OZU, +OZU:SP:32221,1,"Ecole Mozart",43.6525,7.141921,0,0,OZU:SA:CTP32221,Europe/Paris,,OZU, +OZU:SP:32222,1,"Primevères",43.6599,7.1454,0,0,OZU:SA:CTP32222,Europe/Paris,,OZU, +OZU:SP:32223,1,"Ecole Daudet 1",43.659327,7.147587,0,0,OZU:SA:CTP32223,Europe/Paris,,OZU, +OZU:SP:32224,1,"Ecole Daudet 2",43.659492,7.14693,0,0,OZU:SA:CTP32224,Europe/Paris,,OZU, +OZU:SP:32225,1,"Secours Populaire",43.664592,7.123857,0,0,OZU:SA:CTP32225,Europe/Paris,,OZU, +OZU:SP:32226,1,"Square Bénes",43.670856,7.191676,0,0,OZU:SA:CTP5158,Europe/Paris,,OZU, +OZU:SP:32227,1,"Centre Commercial Terminus",43.658534,7.194492,0,0,OZU:SA:CTP32227,Europe/Paris,,OZU, +OZU:SP:32228,1,"Portion K",43.798643,7.231636,0,0,OZU:SA:CTP32228,Europe/Paris,,OZU, +OZU:SP:32229,1,"N°1255",43.789838,7.219948,0,0,OZU:SA:CTP32229,Europe/Paris,,OZU, +OZU:SP:32230,1,"Le Burguet",43.787321,7.22265,0,0,OZU:SA:CTP32230,Europe/Paris,,OZU, +OZU:SP:32231,1,"Chemin du Cabrier1",43.788614,7.22384,0,0,OZU:SA:CTP32231,Europe/Paris,,OZU, +OZU:SP:32232,1,"Chemin du Cabrier2",43.788783,7.223505,0,0,OZU:SA:CTP32232,Europe/Paris,,OZU, +OZU:SP:32233,1,"Chemin de la Croix",43.787113,7.230258,0,0,OZU:SA:CTP32233,Europe/Paris,,OZU, +OZU:SP:32234,1,"Les Lucioles 85 ( sur Ligne 85)",43.737985,7.31231,0,0,OZU:SA:CTP32234,Europe/Paris,,OZU, +OZU:SP:32235,1,"Daudet",43.687958,7.183762,0,0,OZU:SA:CTP32235,Europe/Paris,,OZU, +OZU:SP:32236,1,"Bella Vista (EZE)",43.726383,7.349259,0,0,OZU:SA:CTP32236,Europe/Paris,,OZU, +OZU:SP:32237,1,"Résidence Costa Plana",43.724738,7.395622,0,0,OZU:SA:CTP8223,Europe/Paris,,OZU, +OZU:SP:32238,1,"Collège St-Blaise (St-Sauveur-sur-Tinée)",44.084274,7.105138,0,0,OZU:SA:CTP32238,Europe/Paris,,OZU, +OZU:SP:32239,1,"Collège Jean Saline (Roquebillière)",44.01235,7.308988,0,0,OZU:SA:CTP32239,Europe/Paris,,OZU, +OZU:SP:32240,1,"Arnauds Supérieur",43.750176,7.289653,0,0,OZU:SA:CTP32240,Europe/Paris,,OZU, +OZU:SP:32241,1,"Pont V. Auriol",43.716299,7.283212,0,0,OZU:SA:CTP32241,Europe/Paris,,OZU, +OZU:SP:32242,1,"Séréna Gairaut",43.73248,7.258504,0,0,OZU:SA:CTP1217,Europe/Paris,,OZU, +OZU:SP:32243,1,"Médiathèque",43.77387,7.193027,0,0,OZU:SA:CTP53125,Europe/Paris,,OZU, +OZU:SP:3230,1,"Stade",43.728698,7.169176,0,0,OZU:SA:CTP3230,Europe/Paris,,OZU, +OZU:SP:3233,1,"Rocade",43.720132,7.112189,0,0,OZU:SA:CTP55043,Europe/Paris,,OZU, +OZU:SP:3234,1,"Hôtel De Ville",43.72217,7.113131,0,0,OZU:SA:CTP55018,Europe/Paris,,OZU, +OZU:SP:3238,1,"Emile Hugues 2",43.710868,7.1258,0,0,OZU:SA:CTP3238,Europe/Paris,,OZU, +OZU:SP:3239,1,"L'Ara",43.72104,7.110082,0,0,OZU:SA:CTP3059,Europe/Paris,,OZU, +OZU:SP:324,1,"Deux Avenues",43.71895,7.252264,0,0,OZU:SA:CTP325,Europe/Paris,,OZU, +OZU:SP:325,1,"Deux Avenues",43.719644,7.251865,0,0,OZU:SA:CTP325,Europe/Paris,,OZU, +OZU:SP:326,1,"Deux Avenues",43.71986,7.251473,0,0,OZU:SA:CTP325,Europe/Paris,,OZU, +OZU:SP:327,1,"Deux Avenues",43.720013,7.251474,0,0,OZU:SA:CTP325,Europe/Paris,,OZU, +OZU:SP:328,1,"Gorbella",43.718808,7.256772,0,0,OZU:SA:CTP2513,Europe/Paris,,OZU, +OZU:SP:329,1,"Deux Corniches",43.710925,7.295,0,0,OZU:SA:CTP330,Europe/Paris,,OZU, +OZU:SP:33,1,"Apogées",43.687033,7.22083,0,0,OZU:SA:CTP33,Europe/Paris,,OZU, +OZU:SP:330,1,"Deux Corniches",43.711248,7.295341,0,0,OZU:SA:CTP330,Europe/Paris,,OZU, +OZU:SP:331,1,"Deux Cyprès",43.685857,7.230322,0,0,OZU:SA:CTP331,Europe/Paris,,OZU, +OZU:SP:332,1,"Deux Cyprès",43.685923,7.230241,0,0,OZU:SA:CTP331,Europe/Paris,,OZU, +OZU:SP:334,1,"Diane",43.72822,7.244669,0,0,OZU:SA:CTP334,Europe/Paris,,OZU, +OZU:SP:335,1,"Diane",43.728613,7.244356,0,0,OZU:SA:CTP334,Europe/Paris,,OZU, +OZU:SP:336,1,"Dillies",43.709666,7.296433,0,0,OZU:SA:CTP337,Europe/Paris,,OZU, +OZU:SP:337,1,"Dillies",43.709576,7.296809,0,0,OZU:SA:CTP337,Europe/Paris,,OZU, +OZU:SP:34,1,"Araucaria Batterie",43.678138,7.220378,0,0,OZU:SA:CTP35,Europe/Paris,,OZU, +OZU:SP:340,1,"Docteur Moriez",43.708613,7.275172,0,0,OZU:SA:CTP341,Europe/Paris,,OZU, +OZU:SP:341,1,"Docteur Moriez",43.708941,7.275077,0,0,OZU:SA:CTP341,Europe/Paris,,OZU, +OZU:SP:342,1,"Docteur Paschetta",43.717294,7.281501,0,0,OZU:SA:CTP343,Europe/Paris,,OZU, +OZU:SP:343,1,"Docteur Paschetta",43.717345,7.28158,0,0,OZU:SA:CTP343,Europe/Paris,,OZU, +OZU:SP:344,1,"Docteur Paschetta",43.71732,7.280944,0,0,OZU:SA:CTP343,Europe/Paris,,OZU, +OZU:SP:345,1,"Docteur Paschetta",43.71731,7.280956,0,0,OZU:SA:CTP343,Europe/Paris,,OZU, +OZU:SP:346,1,"Docteur Roux",43.675778,7.226143,0,0,OZU:SA:CTP346,Europe/Paris,,OZU, +OZU:SP:35,1,"Araucaria Batterie",43.678334,7.219414,0,0,OZU:SA:CTP35,Europe/Paris,,OZU, +OZU:SP:351,1,"Dufy",43.684285,7.215878,0,0,OZU:SA:CTP352,Europe/Paris,,OZU, +OZU:SP:352,1,"Dufy",43.684755,7.215037,0,0,OZU:SA:CTP352,Europe/Paris,,OZU, +OZU:SP:354,1,"Durandy / Canta Galet",43.71471,7.217579,0,0,OZU:SA:CTP354,Europe/Paris,,OZU, +OZU:SP:355,1,"Durandy / Canta Galet",43.714726,7.217655,0,0,OZU:SA:CTP354,Europe/Paris,,OZU, +OZU:SP:359,1,"Ecole Corniche Fleurie",43.686145,7.208579,0,0,OZU:SA:CTP359,Europe/Paris,,OZU, +OZU:SP:36,1,"Arboras",43.693114,7.20601,0,0,OZU:SA:CTP36,Europe/Paris,,OZU, +OZU:SP:360,1,"Ecole Corniche Fleurie",43.686038,7.208744,0,0,OZU:SA:CTP359,Europe/Paris,,OZU, +OZU:SP:361,1,"Ecole des Genêts",43.715098,7.229147,0,0,OZU:SA:CTP362,Europe/Paris,,OZU, +OZU:SP:362,1,"Ecole des Genêts",43.714737,7.228967,0,0,OZU:SA:CTP362,Europe/Paris,,OZU, +OZU:SP:363,1,"Ecole des Oliviers",43.729564,7.253169,0,0,OZU:SA:CTP363,Europe/Paris,,OZU, +OZU:SP:364,1,"Ecole du Righi",43.715843,7.250457,0,0,OZU:SA:CTP365,Europe/Paris,,OZU, +OZU:SP:365,1,"Ecole du Righi",43.715933,7.25029,0,0,OZU:SA:CTP365,Europe/Paris,,OZU, +OZU:SP:366,1,"Ecole Fabron",43.687948,7.21232,0,0,OZU:SA:CTP366,Europe/Paris,,OZU, +OZU:SP:367,1,"Ecole Fabron",43.687411,7.212262,0,0,OZU:SA:CTP366,Europe/Paris,,OZU, +OZU:SP:368,1,"Ecole Rimiez",43.743984,7.270179,0,0,OZU:SA:CTP368,Europe/Paris,,OZU, +OZU:SP:369,1,"Ecole Rimiez",43.744041,7.270097,0,0,OZU:SA:CTP368,Europe/Paris,,OZU, +OZU:SP:37,1,"Arboras",43.692982,7.205911,0,0,OZU:SA:CTP36,Europe/Paris,,OZU, +OZU:SP:370,1,"Ecole Saint-Isidore",43.711396,7.193768,0,0,OZU:SA:CTP370,Europe/Paris,,OZU, +OZU:SP:371,1,"Ecole Saint-Pancrace",43.736588,7.237279,0,0,OZU:SA:CTP372,Europe/Paris,,OZU, +OZU:SP:372,1,"Ecole Saint-Pancrace",43.736476,7.237369,0,0,OZU:SA:CTP372,Europe/Paris,,OZU, +OZU:SP:373,1,"Ecole Saint-Pierre",43.717177,7.235943,0,0,OZU:SA:CTP373,Europe/Paris,,OZU, +OZU:SP:374,1,"Ecole Saint-Pierre",43.717295,7.235731,0,0,OZU:SA:CTP373,Europe/Paris,,OZU, +OZU:SP:375,1,"Eden Park",43.676932,7.222743,0,0,OZU:SA:CTP375,Europe/Paris,,OZU, +OZU:SP:376,1,"Conservatoire National de Région",43.724929,7.273085,0,0,OZU:SA:CTP376,Europe/Paris,,OZU, +OZU:SP:377,1,"Edith Cavell",43.715362,7.271947,0,0,OZU:SA:CTP377,Europe/Paris,,OZU, +OZU:SP:378,1,"Edith Cavell",43.714693,7.271788,0,0,OZU:SA:CTP377,Europe/Paris,,OZU, +OZU:SP:379,1,"Edouard VII",43.718133,7.274943,0,0,OZU:SA:CTP380,Europe/Paris,,OZU, +OZU:SP:38,1,"Arcadia",43.683299,7.223128,0,0,OZU:SA:CTP40,Europe/Paris,,OZU, +OZU:SP:380,1,"Edouard VII",43.717527,7.275014,0,0,OZU:SA:CTP380,Europe/Paris,,OZU, +OZU:SP:381,1,"El Nouzah",43.707073,7.279484,0,0,OZU:SA:CTP381,Europe/Paris,,OZU, +OZU:SP:382,1,"Emmanuel",43.704155,7.24268,0,0,OZU:SA:CTP1628,Europe/Paris,,OZU, +OZU:SP:383,1,"Emmanuel",43.704403,7.242221,0,0,OZU:SA:CTP1628,Europe/Paris,,OZU, +OZU:SP:384,1,"Escale",43.689438,7.236562,0,0,OZU:SA:CTP384,Europe/Paris,,OZU, +OZU:SP:385,1,"Escale",43.689505,7.236667,0,0,OZU:SA:CTP384,Europe/Paris,,OZU, +OZU:SP:386,1,"Escalier",43.705121,7.247793,0,0,OZU:SA:CTP386,Europe/Paris,,OZU, +OZU:SP:387,1,"Escalier / Saint-Pierre",43.714876,7.238428,0,0,OZU:SA:CTP387,Europe/Paris,,OZU, +OZU:SP:388,1,"Escalier / Saint-Pierre",43.714874,7.23849,0,0,OZU:SA:CTP387,Europe/Paris,,OZU, +OZU:SP:389,1,"Maternelle",43.713645,7.23857,0,0,OZU:SA:CTP389,Europe/Paris,,OZU, +OZU:SP:39,1,"Arcadia",43.682673,7.222665,0,0,OZU:SA:CTP40,Europe/Paris,,OZU, +OZU:SP:390,1,"Escaliers",43.726496,7.259821,0,0,OZU:SA:CTP390,Europe/Paris,,OZU, +OZU:SP:392,1,"Escoffier",43.720726,7.293707,0,0,OZU:SA:CTP393,Europe/Paris,,OZU, +OZU:SP:393,1,"Escoffier",43.721242,7.293455,0,0,OZU:SA:CTP393,Europe/Paris,,OZU, +OZU:SP:395,1,"Estienne d'Orves",43.701487,7.253649,0,0,OZU:SA:CTP395,Europe/Paris,,OZU, +OZU:SP:396,1,"Evelins",43.703544,7.244243,0,0,OZU:SA:CTP396,Europe/Paris,,OZU, +OZU:SP:397,1,"Evelins",43.703413,7.244567,0,0,OZU:SA:CTP396,Europe/Paris,,OZU, +OZU:SP:398,1,"Fabron Musée d'Art Naïf",43.687262,7.238646,0,0,OZU:SA:CTP51839,Europe/Paris,,OZU, +OZU:SP:399,1,"Fabron Musée d'Art Naïf",43.686847,7.237084,0,0,OZU:SA:CTP51839,Europe/Paris,,OZU, +OZU:SP:4,1,"Abbaye de Roseland",43.69325,7.22835,0,0,OZU:SA:CTP3,Europe/Paris,,OZU, +OZU:SP:40,1,"Arcadia",43.683132,7.222865,0,0,OZU:SA:CTP40,Europe/Paris,,OZU, +OZU:SP:400,1,"Fabron Musée d'Art Naïf",43.687571,7.238014,0,0,OZU:SA:CTP51839,Europe/Paris,,OZU, +OZU:SP:4001,1,"11 Novembre",43.662163,7.149245,0,0,OZU:SA:CTP4001,Europe/Paris,,OZU, +OZU:SP:4002,1,"4 Chemins",43.699153,7.149938,0,0,OZU:SA:CTP4002,Europe/Paris,,OZU, +OZU:SP:4003,1,"Square du 8 mai",43.660089,7.148499,0,0,OZU:SA:CTP4003,Europe/Paris,,OZU, +OZU:SP:4004,1,"Square du 8 mai",43.658833,7.14858,0,0,OZU:SA:CTP4003,Europe/Paris,,OZU, +OZU:SP:4005,1,"Alphonse Daudet",43.666013,7.175373,0,0,OZU:SA:CTP4005,Europe/Paris,,OZU, +OZU:SP:4006,1,"Alphonse Daudet",43.66594,7.175379,0,0,OZU:SA:CTP4005,Europe/Paris,,OZU, +OZU:SP:4009,1,"Bertéotti",43.656697,7.14618,0,0,OZU:SA:CTP4009,Europe/Paris,,OZU, +OZU:SP:401,1,"Fabron Musée d'Art Naïf",43.686899,7.238529,0,0,OZU:SA:CTP51839,Europe/Paris,,OZU, +OZU:SP:4010,1,"Bonaparte",43.660034,7.149921,0,0,OZU:SA:CTP4010,Europe/Paris,,OZU, +OZU:SP:4011,1,"Camping Val Fleuri",43.687303,7.155795,0,0,OZU:SA:CTP4011,Europe/Paris,,OZU, +OZU:SP:4012,1,"Camping Val Fleuri",43.687148,7.155829,0,0,OZU:SA:CTP4011,Europe/Paris,,OZU, +OZU:SP:4014,1,"Centre des Impôts",43.656269,7.155408,0,0,OZU:SA:CTP4014,Europe/Paris,,OZU, +OZU:SP:4016,1,"Les Bréguières",43.661389,7.158333,0,0,OZU:SA:CTP4016,Europe/Paris,,OZU, +OZU:SP:4017,1,"Collège les Bréguières",43.660912,7.158902,0,0,OZU:SA:CTP4017,Europe/Paris,,OZU, +OZU:SP:4018,1,"Chemin Renoir",43.667195,7.158849,0,0,OZU:SA:CTP4018,Europe/Paris,,OZU, +OZU:SP:402,1,"Faculté de Lettres",43.692163,7.237243,0,0,OZU:SA:CTP403,Europe/Paris,,OZU, +OZU:SP:4021,1,"Cimetière de la Buffe",43.679892,7.136932,0,0,OZU:SA:CTP4021,Europe/Paris,,OZU, +OZU:SP:4022,1,"Cimetière de la Buffe",43.680394,7.136553,0,0,OZU:SA:CTP4021,Europe/Paris,,OZU, +OZU:SP:4023,1,"Clinique Saint-Jean",43.660215,7.136925,0,0,OZU:SA:CTP4023,Europe/Paris,,OZU, +OZU:SP:4024,1,"Collège A.Malraux",43.67215,7.162679,0,0,OZU:SA:CTP4025,Europe/Paris,,OZU, +OZU:SP:4025,1,"Collège A.Malraux",43.672248,7.162375,0,0,OZU:SA:CTP4025,Europe/Paris,,OZU, +OZU:SP:4026,1,"Conservatoire",43.666047,7.153605,0,0,OZU:SA:CTP4027,Europe/Paris,,OZU, +OZU:SP:4027,1,"Conservatoire",43.666214,7.153309,0,0,OZU:SA:CTP4027,Europe/Paris,,OZU, +OZU:SP:4028,1,"Domaine du Loup",43.653038,7.139804,0,0,OZU:SA:CTP4176,Europe/Paris,,OZU, +OZU:SP:4029,1,"Ecole Daudet",43.659134,7.146273,0,0,OZU:SA:CTP4029,Europe/Paris,,OZU, +OZU:SP:403,1,"Faculté de Lettres",43.691935,7.236901,0,0,OZU:SA:CTP403,Europe/Paris,,OZU, +OZU:SP:4030,1,"Ecole Daudet",43.659188,7.145868,0,0,OZU:SA:CTP4029,Europe/Paris,,OZU, +OZU:SP:4031,1,"Fragonard",43.667934,7.159979,0,0,OZU:SA:CTP4031,Europe/Paris,,OZU, +OZU:SP:4033,1,"Gare du Cros",43.659397,7.167256,0,0,OZU:SA:CTP4033,Europe/Paris,,OZU, +OZU:SP:4036,1,"Gare SNCF Cagnes-sur-Mer",43.657953,7.147699,0,0,OZU:SA:CTP4179,Europe/Paris,,OZU, +OZU:SP:4037,1,"Gare SNCF Cagnes-sur-Mer",43.657606,7.147606,0,0,OZU:SA:CTP4179,Europe/Paris,,OZU, +OZU:SP:4039,1,"Grand Large",43.652505,7.154444,0,0,OZU:SA:CTP4039,Europe/Paris,,OZU, +OZU:SP:404,1,"Fanny",43.721618,7.251028,0,0,OZU:SA:CTP404,Europe/Paris,,OZU, +OZU:SP:4041,1,"Gros Buaux",43.670521,7.164156,0,0,OZU:SA:CTP4041,Europe/Paris,,OZU, +OZU:SP:4042,1,"Gros Buaux",43.670358,7.164179,0,0,OZU:SA:CTP4041,Europe/Paris,,OZU, +OZU:SP:4044,1,"Guillaumet",43.687305,7.150649,0,0,OZU:SA:CTP4044,Europe/Paris,,OZU, +OZU:SP:4045,1,"Guillaumet",43.688524,7.15079,0,0,OZU:SA:CTP4044,Europe/Paris,,OZU, +OZU:SP:4046,1,"Guynemer",43.692801,7.150406,0,0,OZU:SA:CTP4046,Europe/Paris,,OZU, +OZU:SP:4047,1,"Guynemer",43.692809,7.150221,0,0,OZU:SA:CTP4046,Europe/Paris,,OZU, +OZU:SP:4048,1,"Hautes Collettes",43.681516,7.152667,0,0,OZU:SA:CTP4048,Europe/Paris,,OZU, +OZU:SP:4049,1,"Hautes Collettes",43.680047,7.153474,0,0,OZU:SA:CTP4048,Europe/Paris,,OZU, +OZU:SP:405,1,"Fanny",43.721872,7.251001,0,0,OZU:SA:CTP404,Europe/Paris,,OZU, +OZU:SP:4050,1,"Hippodrome",43.655147,7.151667,0,0,OZU:SA:CTP4050,Europe/Paris,,OZU, +OZU:SP:4051,1,"Hippodrome",43.655216,7.15135,0,0,OZU:SA:CTP4050,Europe/Paris,,OZU, +OZU:SP:4053,1,"Hôtel de Ville",43.662164,7.148613,0,0,OZU:SA:CTP4053,Europe/Paris,,OZU, +OZU:SP:4054,1,"Hôtel de Ville",43.663262,7.147825,0,0,OZU:SA:CTP4053,Europe/Paris,,OZU, +OZU:SP:4055,1,"Jacinthes",43.662195,7.172664,0,0,OZU:SA:CTP4056,Europe/Paris,,OZU, +OZU:SP:4056,1,"Jacinthes",43.66222,7.172595,0,0,OZU:SA:CTP4056,Europe/Paris,,OZU, +OZU:SP:4057,1,"Jean Pons",43.655856,7.161826,0,0,OZU:SA:CTP4057,Europe/Paris,,OZU, +OZU:SP:4060,1,"La Bégude",43.660105,7.155596,0,0,OZU:SA:CTP4060,Europe/Paris,,OZU, +OZU:SP:4061,1,"La Bégude",43.660157,7.155874,0,0,OZU:SA:CTP4060,Europe/Paris,,OZU, +OZU:SP:4062,1,"La Foux",43.65358,7.151696,0,0,OZU:SA:CTP4062,Europe/Paris,,OZU, +OZU:SP:4063,1,"La Grange Rimade",43.66226,7.132458,0,0,OZU:SA:CTP4063,Europe/Paris,,OZU, +OZU:SP:4064,1,"La Pinède",43.657847,7.159597,0,0,OZU:SA:CTP4064,Europe/Paris,,OZU, +OZU:SP:4065,1,"La Pinède",43.654857,7.159098,0,0,OZU:SA:CTP4065,Europe/Paris,,OZU, +OZU:SP:4066,1,"La Roseraie",43.658899,7.137384,0,0,OZU:SA:CTP4066,Europe/Paris,,OZU, +OZU:SP:4069,1,"La Tonnelle",43.666003,7.14246,0,0,OZU:SA:CTP4070,Europe/Paris,,OZU, +OZU:SP:4070,1,"La Tonnelle",43.665998,7.142783,0,0,OZU:SA:CTP4070,Europe/Paris,,OZU, +OZU:SP:4072,1,"Le Béal",43.665279,7.15447,0,0,OZU:SA:CTP4072,Europe/Paris,,OZU, +OZU:SP:4073,1,"Le Béal",43.665397,7.154468,0,0,OZU:SA:CTP4072,Europe/Paris,,OZU, +OZU:SP:4076,1,"Le Park",43.676358,7.153807,0,0,OZU:SA:CTP4076,Europe/Paris,,OZU, +OZU:SP:4077,1,"Le Park",43.676226,7.153968,0,0,OZU:SA:CTP4076,Europe/Paris,,OZU, +OZU:SP:4078,1,"Le Puits",43.658294,7.142084,0,0,OZU:SA:CTP4078,Europe/Paris,,OZU, +OZU:SP:4080,1,"Le Riou",43.653325,7.136977,0,0,OZU:SA:CTP4080,Europe/Paris,,OZU, +OZU:SP:4081,1,"Le Tiercé",43.651401,7.15207,0,0,OZU:SA:CTP4081,Europe/Paris,,OZU, +OZU:SP:4083,1,"L'Eglise",43.661791,7.150715,0,0,OZU:SA:CTP4084,Europe/Paris,,OZU, +OZU:SP:4084,1,"L'Eglise",43.662052,7.1507,0,0,OZU:SA:CTP4084,Europe/Paris,,OZU, +OZU:SP:4085,1,"Les 4 Chemins / Saint-Paul-de-Vence",43.687092,7.130106,0,0,OZU:SA:CTP4085,Europe/Paris,,OZU, +OZU:SP:4086,1,"Les 4 Chemins / Saint-Paul-de-Vence",43.685683,7.130819,0,0,OZU:SA:CTP4085,Europe/Paris,,OZU, +OZU:SP:4087,1,"Les Bréguières",43.668793,7.161119,0,0,OZU:SA:CTP4087,Europe/Paris,,OZU, +OZU:SP:4088,1,"Les Bréguières",43.66895,7.161641,0,0,OZU:SA:CTP4087,Europe/Paris,,OZU, +OZU:SP:4089,1,"Les Chênes",43.664349,7.171287,0,0,OZU:SA:CTP4089,Europe/Paris,,OZU, +OZU:SP:4090,1,"Les Chênes",43.664227,7.171202,0,0,OZU:SA:CTP4089,Europe/Paris,,OZU, +OZU:SP:4091,1,"Les Collettes",43.671753,7.156941,0,0,OZU:SA:CTP4091,Europe/Paris,,OZU, +OZU:SP:4092,1,"Les Collettes",43.672183,7.156791,0,0,OZU:SA:CTP4091,Europe/Paris,,OZU, +OZU:SP:4093,1,"Les Galets",43.664506,7.145163,0,0,OZU:SA:CTP4093,Europe/Paris,,OZU, +OZU:SP:4094,1,"Les Galets",43.664479,7.14536,0,0,OZU:SA:CTP4093,Europe/Paris,,OZU, +OZU:SP:4095,1,"Les Mûriers",43.657132,7.150991,0,0,OZU:SA:CTP4095,Europe/Paris,,OZU, +OZU:SP:4096,1,"Les Mûriers",43.657334,7.151107,0,0,OZU:SA:CTP4095,Europe/Paris,,OZU, +OZU:SP:4098,1,"Les Oliviers",43.659211,7.164316,0,0,OZU:SA:CTP4098,Europe/Paris,,OZU, +OZU:SP:41,1,"Arénas",43.669685,7.218835,0,0,OZU:SA:CTP42,Europe/Paris,,OZU, +OZU:SP:410,1,"Ferber / Promenade",43.677631,7.228995,0,0,OZU:SA:CTP51492,Europe/Paris,,OZU, +OZU:SP:4100,1,"Les Oliviers",43.659063,7.16341,0,0,OZU:SA:CTP4098,Europe/Paris,,OZU, +OZU:SP:4101,1,"Les Tritons",43.659508,7.169003,0,0,OZU:SA:CTP4101,Europe/Paris,,OZU, +OZU:SP:4102,1,"Les Tritons",43.659577,7.169072,0,0,OZU:SA:CTP4101,Europe/Paris,,OZU, +OZU:SP:4103,1,"Les Tuilières",43.665426,7.155848,0,0,OZU:SA:CTP4104,Europe/Paris,,OZU, +OZU:SP:4104,1,"Les Tuilières",43.66532,7.155193,0,0,OZU:SA:CTP4104,Europe/Paris,,OZU, +OZU:SP:4105,1,"Les Vespins",43.660487,7.175468,0,0,OZU:SA:CTP4105,Europe/Paris,,OZU, +OZU:SP:4106,1,"Les Vespins",43.660493,7.176951,0,0,OZU:SA:CTP4105,Europe/Paris,,OZU, +OZU:SP:4108,1,"Les Violettes",43.659627,7.159311,0,0,OZU:SA:CTP4108,Europe/Paris,,OZU, +OZU:SP:4109,1,"Les Violettes",43.659704,7.16017,0,0,OZU:SA:CTP4108,Europe/Paris,,OZU, +OZU:SP:411,1,"Carras / Promenade",43.679774,7.23078,0,0,OZU:SA:CTP51490,Europe/Paris,,OZU, +OZU:SP:4112,1,"Lycée Renoir",43.670493,7.150445,0,0,OZU:SA:CTP4112,Europe/Paris,,OZU, +OZU:SP:4113,1,"Lycée Renoir",43.670853,7.150662,0,0,OZU:SA:CTP4112,Europe/Paris,,OZU, +OZU:SP:4114,1,"Mairie Annexe",43.669242,7.165629,0,0,OZU:SA:CTP4114,Europe/Paris,,OZU, +OZU:SP:4115,1,"Mairie Annexe",43.66945,7.165356,0,0,OZU:SA:CTP4114,Europe/Paris,,OZU, +OZU:SP:4116,1,"Mas de Montalou",43.682766,7.17893,0,0,OZU:SA:CTP4116,Europe/Paris,,OZU, +OZU:SP:4117,1,"Mauberts",43.688479,7.176624,0,0,OZU:SA:CTP4117,Europe/Paris,,OZU, +OZU:SP:4118,1,"Mermoz",43.684937,7.151467,0,0,OZU:SA:CTP4118,Europe/Paris,,OZU, +OZU:SP:4119,1,"Mermoz",43.684726,7.151561,0,0,OZU:SA:CTP4118,Europe/Paris,,OZU, +OZU:SP:412,1,"Carras / Frémont",43.6785,7.22871,0,0,OZU:SA:CTP412,Europe/Paris,,OZU, +OZU:SP:4120,1,"Mermoz Renoir",43.669074,7.151975,0,0,OZU:SA:CTP4120,Europe/Paris,,OZU, +OZU:SP:4121,1,"Mermoz Renoir",43.66918,7.151835,0,0,OZU:SA:CTP4120,Europe/Paris,,OZU, +OZU:SP:4122,1,"Micocouliers",43.661125,7.163844,0,0,OZU:SA:CTP4122,Europe/Paris,,OZU, +OZU:SP:4123,1,"Micocouliers",43.661138,7.163958,0,0,OZU:SA:CTP4122,Europe/Paris,,OZU, +OZU:SP:4126,1,"Musée Renoir",43.668474,7.156763,0,0,OZU:SA:CTP4126,Europe/Paris,,OZU, +OZU:SP:4127,1,"Musée Renoir",43.668579,7.156622,0,0,OZU:SA:CTP4126,Europe/Paris,,OZU, +OZU:SP:4128,1,"Parc des Sports",43.671022,7.150016,0,0,OZU:SA:CTP4128,Europe/Paris,,OZU, +OZU:SP:4129,1,"Sainte-Anne",43.669328,7.145266,0,0,OZU:SA:CTP4129,Europe/Paris,,OZU, +OZU:SP:413,1,"Ferraudière",43.736018,7.263551,0,0,OZU:SA:CTP413,Europe/Paris,,OZU, +OZU:SP:4130,1,"Petit Castel",43.666792,7.168423,0,0,OZU:SA:CTP4130,Europe/Paris,,OZU, +OZU:SP:4131,1,"Petit Castel",43.666841,7.168137,0,0,OZU:SA:CTP4130,Europe/Paris,,OZU, +OZU:SP:4132,1,"Pichodou",43.695829,7.151171,0,0,OZU:SA:CTP4132,Europe/Paris,,OZU, +OZU:SP:4133,1,"Pichodou",43.695961,7.151244,0,0,OZU:SA:CTP4132,Europe/Paris,,OZU, +OZU:SP:4135,1,"Château Vieux-Bourg",43.667861,7.145657,0,0,OZU:SA:CTP4135,Europe/Paris,,OZU, +OZU:SP:4136,1,"Georges Pompidou",43.66282,7.15492,0,0,OZU:SA:CTP4137,Europe/Paris,,OZU, +OZU:SP:4137,1,"Georges Pompidou",43.663074,7.154271,0,0,OZU:SA:CTP4137,Europe/Paris,,OZU, +OZU:SP:4138,1,"Georges Pompidou",43.662896,7.154827,0,0,OZU:SA:CTP4137,Europe/Paris,,OZU, +OZU:SP:414,1,"Ferraudière",43.735877,7.263478,0,0,OZU:SA:CTP413,Europe/Paris,,OZU, +OZU:SP:4140,1,"Saphir",43.680752,7.156159,0,0,OZU:SA:CTP4140,Europe/Paris,,OZU, +OZU:SP:4141,1,"Saphir",43.680964,7.155933,0,0,OZU:SA:CTP4140,Europe/Paris,,OZU, +OZU:SP:4142,1,"Sécurité Sociale",43.665157,7.170843,0,0,OZU:SA:CTP4142,Europe/Paris,,OZU, +OZU:SP:4143,1,"Sécurité Sociale",43.66509,7.170841,0,0,OZU:SA:CTP4142,Europe/Paris,,OZU, +OZU:SP:4144,1,"Square Bourdet",43.664715,7.151323,0,0,OZU:SA:CTP4146,Europe/Paris,,OZU, +OZU:SP:4145,1,"Square Bourdet",43.665091,7.151229,0,0,OZU:SA:CTP4146,Europe/Paris,,OZU, +OZU:SP:4146,1,"Square Bourdet",43.664862,7.151111,0,0,OZU:SA:CTP4146,Europe/Paris,,OZU, +OZU:SP:4147,1,"Square Bourdet",43.665046,7.151239,0,0,OZU:SA:CTP4146,Europe/Paris,,OZU, +OZU:SP:4148,1,"Bourdet",43.664584,7.150678,0,0,OZU:SA:CTP4238,Europe/Paris,,OZU, +OZU:SP:4149,1,"Square Bourdet",43.664815,7.151156,0,0,OZU:SA:CTP4146,Europe/Paris,,OZU, +OZU:SP:415,1,"Fiorentina",43.677589,7.222353,0,0,OZU:SA:CTP415,Europe/Paris,,OZU, +OZU:SP:4151,1,"Saint-Véran",43.65375,7.143834,0,0,OZU:SA:CTP4151,Europe/Paris,,OZU, +OZU:SP:4152,1,"Saint-Véran",43.654075,7.144618,0,0,OZU:SA:CTP4151,Europe/Paris,,OZU, +OZU:SP:4155,1,"Todos",43.690055,7.156568,0,0,OZU:SA:CTP4155,Europe/Paris,,OZU, +OZU:SP:4156,1,"Val en Sol",43.661903,7.167805,0,0,OZU:SA:CTP4156,Europe/Paris,,OZU, +OZU:SP:4157,1,"Val en Sol",43.662173,7.168783,0,0,OZU:SA:CTP4156,Europe/Paris,,OZU, +OZU:SP:4158,1,"Val Fleuri",43.659925,7.172351,0,0,OZU:SA:CTP4158,Europe/Paris,,OZU, +OZU:SP:4159,1,"Val Fleuri",43.660241,7.172923,0,0,OZU:SA:CTP4158,Europe/Paris,,OZU, +OZU:SP:416,1,"Fiorentina",43.677626,7.222133,0,0,OZU:SA:CTP415,Europe/Paris,,OZU, +OZU:SP:4162,1,"Vieux Cimetière",43.669941,7.144345,0,0,OZU:SA:CTP4162,Europe/Paris,,OZU, +OZU:SP:4163,1,"Vieux Cimetière",43.669886,7.144264,0,0,OZU:SA:CTP4162,Europe/Paris,,OZU, +OZU:SP:417,1,"Fleur de Lys",43.742851,7.251123,0,0,OZU:SA:CTP417,Europe/Paris,,OZU, +OZU:SP:4176,1,"Domaine du Loup",43.653032,7.13961,0,0,OZU:SA:CTP4176,Europe/Paris,,OZU, +OZU:SP:4179,1,"Gare SNCF Cagnes-sur-Mer",43.657895,7.147806,0,0,OZU:SA:CTP4179,Europe/Paris,,OZU, +OZU:SP:418,1,"Fleur de Lys",43.742768,7.251166,0,0,OZU:SA:CTP417,Europe/Paris,,OZU, +OZU:SP:4189,1,"Collet Hubac",43.664399,7.139461,0,0,OZU:SA:CTP4189,Europe/Paris,,OZU, +OZU:SP:419,1,"Floralies",43.691257,7.219429,0,0,OZU:SA:CTP419,Europe/Paris,,OZU, +OZU:SP:4198,1,"Hubac",43.664645,7.141826,0,0,OZU:SA:CTP4198,Europe/Paris,,OZU, +OZU:SP:42,1,"Arénas",43.669504,7.2195,0,0,OZU:SA:CTP42,Europe/Paris,,OZU, +OZU:SP:420,1,"Floralies",43.691166,7.219844,0,0,OZU:SA:CTP419,Europe/Paris,,OZU, +OZU:SP:4206,1,"Le Brecq",43.671215,7.147169,0,0,OZU:SA:CTP4206,Europe/Paris,,OZU, +OZU:SP:4207,1,"Le Colombier",43.671667,7.138026,0,0,OZU:SA:CTP4207,Europe/Paris,,OZU, +OZU:SP:421,1,"Flores",43.714739,7.28165,0,0,OZU:SA:CTP421,Europe/Paris,,OZU, +OZU:SP:4212,1,"Léouve",43.67914,7.132961,0,0,OZU:SA:CTP4212,Europe/Paris,,OZU, +OZU:SP:4216,1,"Les Narcisses",43.678014,7.150807,0,0,OZU:SA:CTP4216,Europe/Paris,,OZU, +OZU:SP:422,1,"Flores",43.714848,7.280234,0,0,OZU:SA:CTP421,Europe/Paris,,OZU, +OZU:SP:4220,1,"Les Tamaris",43.663229,7.1441,0,0,OZU:SA:CTP4220,Europe/Paris,,OZU, +OZU:SP:4229,1,"Puits Fleuri",43.677978,7.131968,0,0,OZU:SA:CTP4229,Europe/Paris,,OZU, +OZU:SP:423,1,"Flores",43.714899,7.280287,0,0,OZU:SA:CTP421,Europe/Paris,,OZU, +OZU:SP:4230,1,"Route de France",43.663091,7.135852,0,0,OZU:SA:CTP4230,Europe/Paris,,OZU, +OZU:SP:4231,1,"Sainte-Colombe",43.6755,7.13624,0,0,OZU:SA:CTP4231,Europe/Paris,,OZU, +OZU:SP:4233,1,"Val de Cagnes",43.698754,7.142084,0,0,OZU:SA:CTP4233,Europe/Paris,,OZU, +OZU:SP:4235,1,"Saint-Pierre",43.657879,7.163929,0,0,OZU:SA:CTP4235,Europe/Paris,,OZU, +OZU:SP:4236,1,"Clinique Saint-Jean",43.660215,7.136937,0,0,OZU:SA:CTP4023,Europe/Paris,,OZU, +OZU:SP:4237,1,"Todos",43.690122,7.156645,0,0,OZU:SA:CTP4155,Europe/Paris,,OZU, +OZU:SP:4238,1,"Bourdet",43.664339,7.149714,0,0,OZU:SA:CTP4238,Europe/Paris,,OZU, +OZU:SP:4239,1,"Jean Feraud",43.667028,7.147886,0,0,OZU:SA:CTP4239,Europe/Paris,,OZU, +OZU:SP:424,1,"Florval",43.684517,7.219522,0,0,OZU:SA:CTP424,Europe/Paris,,OZU, +OZU:SP:4240,1,"Les Salles",43.669952,7.146419,0,0,OZU:SA:CTP4240,Europe/Paris,,OZU, +OZU:SP:4241,1,"Notre-Dame de la Protection",43.66824,7.146037,0,0,OZU:SA:CTP4241,Europe/Paris,,OZU, +OZU:SP:4242,1,"Le Château",43.666728,7.145588,0,0,OZU:SA:CTP4242,Europe/Paris,,OZU, +OZU:SP:4243,1,"Sous-Barri",43.665603,7.146659,0,0,OZU:SA:CTP4243,Europe/Paris,,OZU, +OZU:SP:4244,1,"Mairie",43.663646,7.149015,0,0,OZU:SA:CTP4244,Europe/Paris,,OZU, +OZU:SP:4246,1,"Chemin Renoir",43.667045,7.158912,0,0,OZU:SA:CTP4018,Europe/Paris,,OZU, +OZU:SP:4247,1,"Vallon des Vaux",43.695646,7.158507,0,0,OZU:SA:CTP4247,Europe/Paris,,OZU, +OZU:SP:4248,1,"4 Chemins",43.699042,7.150003,0,0,OZU:SA:CTP4002,Europe/Paris,,OZU, +OZU:SP:425,1,"Florval",43.684232,7.220043,0,0,OZU:SA:CTP424,Europe/Paris,,OZU, +OZU:SP:4253,1,"Les Presses",43.670744,7.131423,0,0,OZU:SA:CTP4253,Europe/Paris,,OZU, +OZU:SP:4254,1,"Les Presses",43.670877,7.131471,0,0,OZU:SA:CTP4253,Europe/Paris,,OZU, +OZU:SP:426,1,"Fontaine",43.735745,7.259441,0,0,OZU:SA:CTP426,Europe/Paris,,OZU, +OZU:SP:4263,1,"Rostand",43.656328,7.141534,0,0,OZU:SA:CTP4263,Europe/Paris,,OZU, +OZU:SP:4266,1,"Impasse De L'Aire",43.664908,7.147666,0,0,OZU:SA:CTP4266,Europe/Paris,,OZU, +OZU:SP:4267,1,"Le Colombier / Verdun",43.667269,7.142423,0,0,OZU:SA:CTP4267,Europe/Paris,,OZU, +OZU:SP:4268,1,"Le Colombier / Verdun",43.667348,7.142266,0,0,OZU:SA:CTP4267,Europe/Paris,,OZU, +OZU:SP:4269,1,"POLYGONE RIVIERA",43.664865,7.127987,0,0,OZU:SA:CTP4269,Europe/Paris,,OZU, +OZU:SP:427,1,"Fontaine",43.735593,7.259229,0,0,OZU:SA:CTP426,Europe/Paris,,OZU, +OZU:SP:4270,1,"Drakkar 1",43.663439,7.130956,0,0,OZU:SA:CTP4270,Europe/Paris,,OZU, +OZU:SP:4271,1,"Drakkar 2",43.664101,7.129912,0,0,OZU:SA:CTP4271,Europe/Paris,,OZU, +OZU:SP:4272,1,"Le Gué",43.669267,7.125878,0,0,OZU:SA:CTP4272,Europe/Paris,,OZU, +OZU:SP:4273,1,"Le Gué",43.666915,7.127301,0,0,OZU:SA:CTP4273,Europe/Paris,,OZU, +OZU:SP:428,1,"Fort Thaon",43.69981,7.295935,0,0,OZU:SA:CTP430,Europe/Paris,,OZU, +OZU:SP:429,1,"Fort Thaon",43.700775,7.296584,0,0,OZU:SA:CTP430,Europe/Paris,,OZU, +OZU:SP:430,1,"Fort Thaon",43.699671,7.295118,0,0,OZU:SA:CTP430,Europe/Paris,,OZU, +OZU:SP:431,1,"Fort Thaon",43.6996,7.295122,0,0,OZU:SA:CTP430,Europe/Paris,,OZU, +OZU:SP:432,1,"Fougères",43.709367,7.219256,0,0,OZU:SA:CTP432,Europe/Paris,,OZU, +OZU:SP:433,1,"Fougères",43.709112,7.219309,0,0,OZU:SA:CTP432,Europe/Paris,,OZU, +OZU:SP:44,1,"Arènes / Musée Matisse",43.720238,7.275001,0,0,OZU:SA:CTP46,Europe/Paris,,OZU, +OZU:SP:440,1,"Franklin",43.699983,7.256225,0,0,OZU:SA:CTP442,Europe/Paris,,OZU, +OZU:SP:441,1,"Franklin",43.70003,7.256181,0,0,OZU:SA:CTP442,Europe/Paris,,OZU, +OZU:SP:442,1,"Franklin",43.699586,7.255433,0,0,OZU:SA:CTP442,Europe/Paris,,OZU, +OZU:SP:443,1,"Frère Marc",43.720685,7.280218,0,0,OZU:SA:CTP444,Europe/Paris,,OZU, +OZU:SP:444,1,"Frère Marc",43.720626,7.280336,0,0,OZU:SA:CTP444,Europe/Paris,,OZU, +OZU:SP:445,1,"Gairautière",43.739915,7.256846,0,0,OZU:SA:CTP445,Europe/Paris,,OZU, +OZU:SP:446,1,"Gairautière",43.739857,7.256368,0,0,OZU:SA:CTP445,Europe/Paris,,OZU, +OZU:SP:447,1,"Ariane / Général Saramito",43.740866,7.308022,0,0,OZU:SA:CTP447,Europe/Paris,,OZU, +OZU:SP:448,1,"Gambetta / Promenade",43.693701,7.255534,0,0,OZU:SA:CTP51968,Europe/Paris,,OZU, +OZU:SP:449,1,"Gambetta / Promenade",43.693844,7.256949,0,0,OZU:SA:CTP51968,Europe/Paris,,OZU, +OZU:SP:45,1,"Arènes / Musée Matisse",43.719832,7.274818,0,0,OZU:SA:CTP46,Europe/Paris,,OZU, +OZU:SP:450,1,"Gambetta / Bottéro",43.696695,7.255444,0,0,OZU:SA:CTP450,Europe/Paris,,OZU, +OZU:SP:455,1,"Gare SNCF Saint-Augustin",43.670165,7.21426,0,0,OZU:SA:CTP460,Europe/Paris,,OZU, +OZU:SP:456,1,"Gare SNCF",43.704617,7.262833,0,0,OZU:SA:CTP52390,Europe/Paris,,OZU, +OZU:SP:457,1,"Gare SNCF",43.704131,7.262045,0,0,OZU:SA:CTP52390,Europe/Paris,,OZU, +OZU:SP:459,1,"Gare SNCF",43.703722,7.261142,0,0,OZU:SA:CTP52390,Europe/Paris,,OZU, +OZU:SP:46,1,"Arènes / Musée Matisse",43.720116,7.274531,0,0,OZU:SA:CTP46,Europe/Paris,,OZU, +OZU:SP:460,1,"Gare SNCF Saint-Augustin",43.67008,7.214947,0,0,OZU:SA:CTP460,Europe/Paris,,OZU, +OZU:SP:463,1,"Garibaldi",43.700594,7.281156,0,0,OZU:SA:CTP2511,Europe/Paris,,OZU, +OZU:SP:464,1,"Garibaldi",43.700551,7.281122,0,0,OZU:SA:CTP2511,Europe/Paris,,OZU, +OZU:SP:466,1,"Garigliano",43.732301,7.286593,0,0,OZU:SA:CTP466,Europe/Paris,,OZU, +OZU:SP:468,1,"Gendarmerie",43.710683,7.282702,0,0,OZU:SA:CTP468,Europe/Paris,,OZU, +OZU:SP:469,1,"Georges Sand",43.723079,7.261699,0,0,OZU:SA:CTP469,Europe/Paris,,OZU, +OZU:SP:471,1,"Géronima",43.692178,7.217361,0,0,OZU:SA:CTP471,Europe/Paris,,OZU, +OZU:SP:472,1,"Giordan",43.684655,7.226831,0,0,OZU:SA:CTP472,Europe/Paris,,OZU, +OZU:SP:473,1,"Giordan",43.684623,7.22694,0,0,OZU:SA:CTP472,Europe/Paris,,OZU, +OZU:SP:474,1,"Goiran",43.723988,7.249818,0,0,OZU:SA:CTP1455,Europe/Paris,,OZU, +OZU:SP:475,1,"Gorbella",43.719145,7.256689,0,0,OZU:SA:CTP2513,Europe/Paris,,OZU, +OZU:SP:476,1,"Grand Palais",43.708158,7.281775,0,0,OZU:SA:CTP477,Europe/Paris,,OZU, +OZU:SP:477,1,"Grand Palais",43.708271,7.280481,0,0,OZU:SA:CTP477,Europe/Paris,,OZU, +OZU:SP:478,1,"Maison de l'Environnement",43.712853,7.255215,0,0,OZU:SA:CTP479,Europe/Paris,,OZU, +OZU:SP:479,1,"Maison de l'Environnement",43.712924,7.255059,0,0,OZU:SA:CTP479,Europe/Paris,,OZU, +OZU:SP:48,1,"Thiers / Médecin",43.705095,7.264203,0,0,OZU:SA:CTP48,Europe/Paris,,OZU, +OZU:SP:480,1,"Grande Corniche",43.708068,7.292793,0,0,OZU:SA:CTP481,Europe/Paris,,OZU, +OZU:SP:481,1,"Grande Corniche",43.707307,7.292127,0,0,OZU:SA:CTP481,Europe/Paris,,OZU, +OZU:SP:482,1,"Gravier",43.724276,7.258747,0,0,OZU:SA:CTP483,Europe/Paris,,OZU, +OZU:SP:483,1,"Gravier",43.724248,7.258558,0,0,OZU:SA:CTP483,Europe/Paris,,OZU, +OZU:SP:484,1,"Grimaldi",43.697595,7.265156,0,0,OZU:SA:CTP484,Europe/Paris,,OZU, +OZU:SP:485,1,"Grinda",43.674487,7.220262,0,0,OZU:SA:CTP485,Europe/Paris,,OZU, +OZU:SP:486,1,"Grinda",43.67447,7.220212,0,0,OZU:SA:CTP485,Europe/Paris,,OZU, +OZU:SP:487,1,"Gros Chênes",43.690663,7.201193,0,0,OZU:SA:CTP487,Europe/Paris,,OZU, +OZU:SP:488,1,"Gros Chênes",43.690352,7.201331,0,0,OZU:SA:CTP487,Europe/Paris,,OZU, +OZU:SP:489,1,"Le Gros Pin",43.727915,7.217531,0,0,OZU:SA:CTP489,Europe/Paris,,OZU, +OZU:SP:491,1,"Grosso CUM",43.694341,7.252362,0,0,OZU:SA:CTP493,Europe/Paris,,OZU, +OZU:SP:492,1,"Grosso CUM / Promenade",43.693085,7.252651,0,0,OZU:SA:CTP52373,Europe/Paris,,OZU, +OZU:SP:493,1,"Grosso CUM",43.69453,7.251573,0,0,OZU:SA:CTP493,Europe/Paris,,OZU, +OZU:SP:494,1,"Grosso CUM / Promenade",43.692769,7.252078,0,0,OZU:SA:CTP52373,Europe/Paris,,OZU, +OZU:SP:495,1,"Guiglia",43.699566,7.257877,0,0,OZU:SA:CTP495,Europe/Paris,,OZU, +OZU:SP:496,1,"Gustave V",43.695042,7.265626,0,0,OZU:SA:CTP496,Europe/Paris,,OZU, +OZU:SP:497,1,"Gustavin / Carnot",43.696674,7.289865,0,0,OZU:SA:CTP498,Europe/Paris,,OZU, +OZU:SP:498,1,"Gustavin / Carnot",43.6967,7.290276,0,0,OZU:SA:CTP498,Europe/Paris,,OZU, +OZU:SP:499,1,"Gustavin / Parc Vigier",43.694705,7.290576,0,0,OZU:SA:CTP499,Europe/Paris,,OZU, +OZU:SP:5,1,"Abbaye de Roseland / Napoléon III",43.688791,7.231356,0,0,OZU:SA:CTP5,Europe/Paris,,OZU, +OZU:SP:500,1,"Gutenberg",43.709071,7.255993,0,0,OZU:SA:CTP1458,Europe/Paris,,OZU, +OZU:SP:50000,1,"RUE 10 / Avenue 1",43.789978,7.209915,0,0,OZU:SA:CTP50000,Europe/Paris,,OZU, +OZU:SP:50001,1,"RUE 11 / Avenue 1",43.792762,7.206701,0,0,OZU:SA:CTP50001,Europe/Paris,,OZU, +OZU:SP:50002,1,"RUE 13 / Avenue 1",43.795393,7.203654,0,0,OZU:SA:CTP50002,Europe/Paris,,OZU, +OZU:SP:50003,1,"RUE 14bis / Avenue 1",43.798787,7.199876,0,0,OZU:SA:CTP50003,Europe/Paris,,OZU, +OZU:SP:50004,1,"RUE 14 / Avenue 1",43.800408,7.198084,0,0,OZU:SA:CTP50004,Europe/Paris,,OZU, +OZU:SP:50005,1,"RUE 15 / Avenue 1",43.802239,7.196005,0,0,OZU:SA:CTP50005,Europe/Paris,,OZU, +OZU:SP:50006,1,"RUE 17bis / Avenue 1",43.805136,7.192664,0,0,OZU:SA:CTP50006,Europe/Paris,,OZU, +OZU:SP:50007,1,"RUE 17 / Avenue 1",43.807111,7.190388,0,0,OZU:SA:CTP50007,Europe/Paris,,OZU, +OZU:SP:50008,1,"RUE 18bis / Avenue 1",43.809115,7.188075,0,0,OZU:SA:CTP50008,Europe/Paris,,OZU, +OZU:SP:50009,1,"RUE 18 / Avenue 1",43.810528,7.186691,0,0,OZU:SA:CTP50009,Europe/Paris,,OZU, +OZU:SP:5001,1,"A.Tzanck",43.661559,7.186542,0,0,OZU:SA:CTP5001,Europe/Paris,,OZU, +OZU:SP:50012,1,"RUE 1 / Avenue 1",43.77053,7.207179,0,0,OZU:SA:CTP50012,Europe/Paris,,OZU, +OZU:SP:50017,1,"RUE 3 / Avenue 1",43.773638,7.210372,0,0,OZU:SA:CTP50017,Europe/Paris,,OZU, +OZU:SP:5002,1,"A.Tzanck",43.661625,7.18508,0,0,OZU:SA:CTP5001,Europe/Paris,,OZU, +OZU:SP:50022,1,"RUE 5 / Avenue 1",43.776908,7.212756,0,0,OZU:SA:CTP50022,Europe/Paris,,OZU, +OZU:SP:50023,1,"RUE 7 / Avenue 1",43.780382,7.213823,0,0,OZU:SA:CTP50023,Europe/Paris,,OZU, +OZU:SP:50024,1,"RUE 9 / Avenue 1",43.787774,7.211861,0,0,OZU:SA:CTP50024,Europe/Paris,,OZU, +OZU:SP:5003,1,"Agriculteurs",43.702957,7.178511,0,0,OZU:SA:CTP52515,Europe/Paris,,OZU, +OZU:SP:5004,1,"Agriculteurs",43.702603,7.178755,0,0,OZU:SA:CTP52515,Europe/Paris,,OZU, +OZU:SP:50044,1,"Aéroport / Promenade",43.666224,7.211367,0,0,OZU:SA:CTP50044,Europe/Paris,,OZU, +OZU:SP:50045,1,"Aéroport / Promenade",43.666458,7.211375,0,0,OZU:SA:CTP50044,Europe/Paris,,OZU, +OZU:SP:50048,1,"Aéroport T.1",43.664962,7.210391,0,0,OZU:SA:CTP50048,Europe/Paris,,OZU, +OZU:SP:5005,1,"Les Pugets / Aicard",43.686213,7.180787,0,0,OZU:SA:CTP5006,Europe/Paris,,OZU, +OZU:SP:5006,1,"Les Pugets / Aicard",43.686461,7.180671,0,0,OZU:SA:CTP5006,Europe/Paris,,OZU, +OZU:SP:5007,1,"Les Pugets / Aicard",43.686206,7.180749,0,0,OZU:SA:CTP5006,Europe/Paris,,OZU, +OZU:SP:50079,1,"Les Amandiers",43.76989,7.195569,0,0,OZU:SA:CTP50079,Europe/Paris,,OZU, +OZU:SP:5008,1,"Arts Graphiques",43.689432,7.185925,0,0,OZU:SA:CTP52521,Europe/Paris,,OZU, +OZU:SP:5009,1,"Arts Graphiques",43.689324,7.185929,0,0,OZU:SA:CTP52521,Europe/Paris,,OZU, +OZU:SP:501,1,"Halte de Gairaut",43.733642,7.261917,0,0,OZU:SA:CTP502,Europe/Paris,,OZU, +OZU:SP:5010,1,"Baronne Digue",43.699084,7.181534,0,0,OZU:SA:CTP5010,Europe/Paris,,OZU, +OZU:SP:5011,1,"Baronne Digue",43.6995,7.181309,0,0,OZU:SA:CTP5010,Europe/Paris,,OZU, +OZU:SP:5012,1,"Basse Corniche des Pugets",43.68864,7.179467,0,0,OZU:SA:CTP5012,Europe/Paris,,OZU, +OZU:SP:5013,1,"Basse Corniche des Pugets",43.688396,7.179298,0,0,OZU:SA:CTP5012,Europe/Paris,,OZU, +OZU:SP:50153,1,"L'Aspre",43.774189,7.19088,0,0,OZU:SA:CTP50153,Europe/Paris,,OZU, +OZU:SP:50154,1,"L'Aspre",43.773998,7.191145,0,0,OZU:SA:CTP50153,Europe/Paris,,OZU, +OZU:SP:5016,1,"Belle Vue",43.670176,7.179138,0,0,OZU:SA:CTP5017,Europe/Paris,,OZU, +OZU:SP:5017,1,"Belle Vue",43.670232,7.178896,0,0,OZU:SA:CTP5017,Europe/Paris,,OZU, +OZU:SP:50177,1,"Auron",44.226792,6.931713,0,0,OZU:SA:CTP50177,Europe/Paris,,OZU, +OZU:SP:5018,1,"Carrossiers",43.697472,7.184351,0,0,OZU:SA:CTP52541,Europe/Paris,,OZU, +OZU:SP:5019,1,"Carrossiers",43.697575,7.18426,0,0,OZU:SA:CTP52541,Europe/Paris,,OZU, +OZU:SP:50193,1,"Bancairon",43.998192,7.137278,0,0,OZU:SA:CTP50193,Europe/Paris,,OZU, +OZU:SP:50194,1,"Bancairon",43.998341,7.137367,0,0,OZU:SA:CTP50193,Europe/Paris,,OZU, +OZU:SP:502,1,"Halte de Gairaut",43.733926,7.261817,0,0,OZU:SA:CTP502,Europe/Paris,,OZU, +OZU:SP:5020,1,"Centre Commercial",43.659205,7.195262,0,0,OZU:SA:CTP5020,Europe/Paris,,OZU, +OZU:SP:5023,1,"Chemin de la Digue",43.699643,7.182947,0,0,OZU:SA:CTP52579,Europe/Paris,,OZU, +OZU:SP:50233,1,"La Bastide",43.765421,7.187974,0,0,OZU:SA:CTP50233,Europe/Paris,,OZU, +OZU:SP:50236,1,"La Bastide",43.765316,7.187902,0,0,OZU:SA:CTP50233,Europe/Paris,,OZU, +OZU:SP:5024,1,"Chemin de la Digue",43.699782,7.182859,0,0,OZU:SA:CTP52579,Europe/Paris,,OZU, +OZU:SP:5025,1,"Cimetière Saint-Marc",43.683048,7.186499,0,0,OZU:SA:CTP5025,Europe/Paris,,OZU, +OZU:SP:5026,1,"Collège Pagnol",43.681731,7.189166,0,0,OZU:SA:CTP52661,Europe/Paris,,OZU, +OZU:SP:5027,1,"Collège Pagnol",43.682108,7.189199,0,0,OZU:SA:CTP52661,Europe/Paris,,OZU, +OZU:SP:5028,1,"Collège Saint-Exupéry",43.665748,7.185312,0,0,OZU:SA:CTP5028,Europe/Paris,,OZU, +OZU:SP:50288,1,"La Beilouno",43.776017,7.190689,0,0,OZU:SA:CTP50288,Europe/Paris,,OZU, +OZU:SP:50289,1,"La Beilouno",43.776427,7.190384,0,0,OZU:SA:CTP50288,Europe/Paris,,OZU, +OZU:SP:5029,1,"Collège Saint-Exupéry",43.666572,7.186623,0,0,OZU:SA:CTP5028,Europe/Paris,,OZU, +OZU:SP:50298,1,"Belvédère Village",44.015268,7.319793,0,0,OZU:SA:CTP50298,Europe/Paris,,OZU, +OZU:SP:503,1,"Hameaux de la Costière",43.722197,7.227087,0,0,OZU:SA:CTP503,Europe/Paris,,OZU, +OZU:SP:5030,1,"Corniche Bellevue",43.670806,7.183944,0,0,OZU:SA:CTP5030,Europe/Paris,,OZU, +OZU:SP:50302,1,"Bergaïs",44.028318,7.309637,0,0,OZU:SA:CTP50302,Europe/Paris,,OZU, +OZU:SP:50303,1,"Bergaïs",44.028163,7.30949,0,0,OZU:SA:CTP50302,Europe/Paris,,OZU, +OZU:SP:50309,1,"Berthemont Les Bains",44.047697,7.309224,0,0,OZU:SA:CTP50309,Europe/Paris,,OZU, +OZU:SP:5031,1,"Corniche Bellevue",43.670989,7.183898,0,0,OZU:SA:CTP5030,Europe/Paris,,OZU, +OZU:SP:5032,1,"Corniche d'Agrimont",43.677642,7.18254,0,0,OZU:SA:CTP5033,Europe/Paris,,OZU, +OZU:SP:5033,1,"Corniche d'Agrimont",43.677704,7.182545,0,0,OZU:SA:CTP5033,Europe/Paris,,OZU, +OZU:SP:50330,1,"La Blache",44.196324,7.006359,0,0,OZU:SA:CTP50330,Europe/Paris,,OZU, +OZU:SP:50331,1,"La Blache",44.196844,7.005977,0,0,OZU:SA:CTP50330,Europe/Paris,,OZU, +OZU:SP:5034,1,"Corniche des Pugets 1.",43.692776,7.178626,0,0,OZU:SA:CTP5034,Europe/Paris,,OZU, +OZU:SP:5035,1,"Corniche des Pugets 1.",43.692917,7.178664,0,0,OZU:SA:CTP5034,Europe/Paris,,OZU, +OZU:SP:5036,1,"Corniche des Pugets 2.",43.702383,7.17464,0,0,OZU:SA:CTP5036,Europe/Paris,,OZU, +OZU:SP:5037,1,"Corniche des Pugets 2.",43.702526,7.174466,0,0,OZU:SA:CTP5036,Europe/Paris,,OZU, +OZU:SP:5038,1,"Corniche des Pugets 3.",43.703948,7.174053,0,0,OZU:SA:CTP5038,Europe/Paris,,OZU, +OZU:SP:50382,1,"Bois de Boulogne",43.67291,7.201889,0,0,OZU:SA:CTP50382,Europe/Paris,,OZU, +OZU:SP:50383,1,"Bois de Boulogne",43.672934,7.20214,0,0,OZU:SA:CTP50382,Europe/Paris,,OZU, +OZU:SP:50384,1,"La Bollène Gare",43.994619,7.318664,0,0,OZU:SA:CTP50384,Europe/Paris,,OZU, +OZU:SP:50385,1,"La Bollène Gare",43.991195,7.320253,0,0,OZU:SA:CTP50385,Europe/Paris,,OZU, +OZU:SP:50386,1,"La Bolinette",44.04172,7.128782,0,0,OZU:SA:CTP50386,Europe/Paris,,OZU, +OZU:SP:50387,1,"La Bolinette",44.042248,7.129078,0,0,OZU:SA:CTP50386,Europe/Paris,,OZU, +OZU:SP:50388,1,"La Bolline",44.075171,7.165963,0,0,OZU:SA:CTP50388,Europe/Paris,,OZU, +OZU:SP:5039,1,"Corniche des Pugets 3.",43.703934,7.173977,0,0,OZU:SA:CTP5038,Europe/Paris,,OZU, +OZU:SP:50390,1,"La Bollène Village",43.989268,7.331022,0,0,OZU:SA:CTP50390,Europe/Paris,,OZU, +OZU:SP:50391,1,"La Bolline Lycée",44.070057,7.167949,0,0,OZU:SA:CTP50391,Europe/Paris,,OZU, +OZU:SP:50392,1,"La Bolline Lycée",44.069722,7.168195,0,0,OZU:SA:CTP50391,Europe/Paris,,OZU, +OZU:SP:504,1,"Hameaux de Saint-Pancrace",43.737071,7.232974,0,0,OZU:SA:CTP505,Europe/Paris,,OZU, +OZU:SP:5040,1,"Corniche des Pugets 4.",43.715089,7.17264,0,0,OZU:SA:CTP5040,Europe/Paris,,OZU, +OZU:SP:5041,1,"Corniche des Pugets 4.",43.715037,7.172575,0,0,OZU:SA:CTP5040,Europe/Paris,,OZU, +OZU:SP:50428,1,"Le Bourguet",44.225179,6.96181,0,0,OZU:SA:CTP50428,Europe/Paris,,OZU, +OZU:SP:50429,1,"Le Bourguet",44.225106,6.961829,0,0,OZU:SA:CTP50428,Europe/Paris,,OZU, +OZU:SP:5043,1,"Coubertin",43.671289,7.192682,0,0,OZU:SA:CTP52568,Europe/Paris,,OZU, +OZU:SP:5044,1,"Coubertin",43.672138,7.191811,0,0,OZU:SA:CTP52568,Europe/Paris,,OZU, +OZU:SP:50447,1,"Le Broc",43.808984,7.16863,0,0,OZU:SA:CTP50447,Europe/Paris,,OZU, +OZU:SP:50448,1,"Le Broc",43.80895,7.168364,0,0,OZU:SA:CTP50447,Europe/Paris,,OZU, +OZU:SP:5045,1,"Daudet",43.687766,7.1837,0,0,OZU:SA:CTP32235,Europe/Paris,,OZU, +OZU:SP:5046,1,"Daudet",43.68705,7.183588,0,0,OZU:SA:CTP32235,Europe/Paris,,OZU, +OZU:SP:5047,1,"Ecole Montaleigne",43.693467,7.175459,0,0,OZU:SA:CTP5047,Europe/Paris,,OZU, +OZU:SP:5048,1,"Ecole Montaleigne",43.693733,7.175332,0,0,OZU:SA:CTP5047,Europe/Paris,,OZU, +OZU:SP:5049,1,"Fahnestock",43.681173,7.179502,0,0,OZU:SA:CTP5049,Europe/Paris,,OZU, +OZU:SP:505,1,"Hameaux de Saint-Pancrace",43.736996,7.232843,0,0,OZU:SA:CTP505,Europe/Paris,,OZU, +OZU:SP:5050,1,"Fahnestock Forêt",43.68525,7.17733,0,0,OZU:SA:CTP5050,Europe/Paris,,OZU, +OZU:SP:5051,1,"Fahnestock Forêt",43.685266,7.177393,0,0,OZU:SA:CTP5050,Europe/Paris,,OZU, +OZU:SP:5052,1,"Forêt des Pugets",43.686859,7.179824,0,0,OZU:SA:CTP5052,Europe/Paris,,OZU, +OZU:SP:5053,1,"Forêt des Pugets",43.686624,7.179655,0,0,OZU:SA:CTP5052,Europe/Paris,,OZU, +OZU:SP:5054,1,"France d'Outre Mer",43.659158,7.191276,0,0,OZU:SA:CTP52590,Europe/Paris,,OZU, +OZU:SP:5059,1,"Giono",43.687374,7.181407,0,0,OZU:SA:CTP5059,Europe/Paris,,OZU, +OZU:SP:506,1,"Haute Bise",43.70839,7.238068,0,0,OZU:SA:CTP506,Europe/Paris,,OZU, +OZU:SP:5060,1,"Gros Buaux",43.676188,7.177602,0,0,OZU:SA:CTP5061,Europe/Paris,,OZU, +OZU:SP:5061,1,"Gros Buaux",43.67654,7.177384,0,0,OZU:SA:CTP5061,Europe/Paris,,OZU, +OZU:SP:5063,1,"Haute Corniche des Pugets",43.707957,7.173835,0,0,OZU:SA:CTP5063,Europe/Paris,,OZU, +OZU:SP:5064,1,"Haute Corniche des Pugets",43.709407,7.172417,0,0,OZU:SA:CTP5063,Europe/Paris,,OZU, +OZU:SP:5065,1,"Hauts des Tuillières",43.673141,7.172652,0,0,OZU:SA:CTP5065,Europe/Paris,,OZU, +OZU:SP:5066,1,"Hauts des Tuillières",43.672959,7.17229,0,0,OZU:SA:CTP5065,Europe/Paris,,OZU, +OZU:SP:5067,1,"Jardins des Tuillières",43.674582,7.174041,0,0,OZU:SA:CTP5068,Europe/Paris,,OZU, +OZU:SP:5068,1,"Jardins des Tuillières",43.674415,7.173953,0,0,OZU:SA:CTP5068,Europe/Paris,,OZU, +OZU:SP:5069,1,"Jean Médecin",43.674155,7.189625,0,0,OZU:SA:CTP5069,Europe/Paris,,OZU, +OZU:SP:50694,1,"Le Castelet",43.770645,7.200218,0,0,OZU:SA:CTP50694,Europe/Paris,,OZU, +OZU:SP:50695,1,"Le Castelet",43.771763,7.199991,0,0,OZU:SA:CTP50694,Europe/Paris,,OZU, +OZU:SP:507,1,"Haute Bise",43.708578,7.237898,0,0,OZU:SA:CTP506,Europe/Paris,,OZU, +OZU:SP:5070,1,"Jean Médecin",43.674017,7.189676,0,0,OZU:SA:CTP5069,Europe/Paris,,OZU, +OZU:SP:50704,1,"Cimetière de Carros",43.776832,7.194806,0,0,OZU:SA:CTP50704,Europe/Paris,,OZU, +OZU:SP:5072,1,"La Belle Etoile",43.659993,7.188122,0,0,OZU:SA:CTP5072,Europe/Paris,,OZU, +OZU:SP:5073,1,"La Belle Etoile",43.659995,7.187477,0,0,OZU:SA:CTP5072,Europe/Paris,,OZU, +OZU:SP:5074,1,"La Croisée",43.704113,7.171398,0,0,OZU:SA:CTP5074,Europe/Paris,,OZU, +OZU:SP:5075,1,"La Croisée",43.7039,7.171529,0,0,OZU:SA:CTP5074,Europe/Paris,,OZU, +OZU:SP:5076,1,"La Passerelle",43.661702,7.194806,0,0,OZU:SA:CTP5076,Europe/Paris,,OZU, +OZU:SP:5077,1,"La Passerelle",43.661888,7.19446,0,0,OZU:SA:CTP5076,Europe/Paris,,OZU, +OZU:SP:50777,1,"Lei Feirrièro",43.790613,7.203356,0,0,OZU:SA:CTP50777,Europe/Paris,,OZU, +OZU:SP:5078,1,"La Provençale",43.667118,7.192686,0,0,OZU:SA:CTP52682,Europe/Paris,,OZU, +OZU:SP:50786,1,"Lou Claus",43.789867,7.199363,0,0,OZU:SA:CTP50786,Europe/Paris,,OZU, +OZU:SP:50787,1,"Lou Claus",43.789729,7.199426,0,0,OZU:SA:CTP50786,Europe/Paris,,OZU, +OZU:SP:5079,1,"La Provençale",43.667312,7.192407,0,0,OZU:SA:CTP52682,Europe/Paris,,OZU, +OZU:SP:50796,1,"La Manda / Z.I.",43.76706,7.203429,0,0,OZU:SA:CTP50796,Europe/Paris,,OZU, +OZU:SP:508,1,"Hauts de Chambrun",43.727608,7.261494,0,0,OZU:SA:CTP508,Europe/Paris,,OZU, +OZU:SP:5080,1,"La Tour",43.705153,7.177743,0,0,OZU:SA:CTP52751,Europe/Paris,,OZU, +OZU:SP:5081,1,"La Tour",43.705066,7.177673,0,0,OZU:SA:CTP52751,Europe/Paris,,OZU, +OZU:SP:5082,1,"Le Castillon",43.687108,7.182526,0,0,OZU:SA:CTP5082,Europe/Paris,,OZU, +OZU:SP:5083,1,"Le Château",43.691341,7.176048,0,0,OZU:SA:CTP5083,Europe/Paris,,OZU, +OZU:SP:5084,1,"Le Château",43.691488,7.17601,0,0,OZU:SA:CTP5083,Europe/Paris,,OZU, +OZU:SP:5085,1,"Le Collet Rouge",43.697818,7.174202,0,0,OZU:SA:CTP5085,Europe/Paris,,OZU, +OZU:SP:5086,1,"Le Collet Rouge",43.698044,7.173998,0,0,OZU:SA:CTP5085,Europe/Paris,,OZU, +OZU:SP:5087,1,"Le Gros Chêne",43.660365,7.182423,0,0,OZU:SA:CTP5087,Europe/Paris,,OZU, +OZU:SP:5088,1,"Les Bastides",43.675277,7.183469,0,0,OZU:SA:CTP5089,Europe/Paris,,OZU, +OZU:SP:5089,1,"Les Bastides",43.67536,7.183425,0,0,OZU:SA:CTP5089,Europe/Paris,,OZU, +OZU:SP:509,1,"Henri Sappia",43.733086,7.249982,0,0,OZU:SA:CTP509,Europe/Paris,,OZU, +OZU:SP:5090,1,"Les Gallinières",43.663612,7.18492,0,0,OZU:SA:CTP5090,Europe/Paris,,OZU, +OZU:SP:50907,1,"Pagnol",43.778595,7.187211,0,0,OZU:SA:CTP50907,Europe/Paris,,OZU, +OZU:SP:5091,1,"Les Gallinières",43.66171,7.182972,0,0,OZU:SA:CTP5091,Europe/Paris,,OZU, +OZU:SP:5092,1,"Les Iscles",43.709769,7.177837,0,0,OZU:SA:CTP52616,Europe/Paris,,OZU, +OZU:SP:50922,1,"Village",43.792381,7.18526,0,0,OZU:SA:CTP50922,Europe/Paris,,OZU, +OZU:SP:50923,1,"Village",43.792083,7.185288,0,0,OZU:SA:CTP50922,Europe/Paris,,OZU, +OZU:SP:5093,1,"Rond Point Ravet",43.667952,7.183329,0,0,OZU:SA:CTP5093,Europe/Paris,,OZU, +OZU:SP:5094,1,"Les Plantiers",43.669193,7.18037,0,0,OZU:SA:CTP5094,Europe/Paris,,OZU, +OZU:SP:5095,1,"Les Plantiers",43.669126,7.181072,0,0,OZU:SA:CTP5094,Europe/Paris,,OZU, +OZU:SP:5096,1,"Les Provençales",43.678884,7.182162,0,0,OZU:SA:CTP5097,Europe/Paris,,OZU, +OZU:SP:5097,1,"Les Provençales",43.678888,7.182249,0,0,OZU:SA:CTP5097,Europe/Paris,,OZU, +OZU:SP:50971,1,"La Teréhentine",43.781505,7.203869,0,0,OZU:SA:CTP50971,Europe/Paris,,OZU, +OZU:SP:50972,1,"La Teréhentine",43.781112,7.203798,0,0,OZU:SA:CTP50971,Europe/Paris,,OZU, +OZU:SP:5098,1,"Les Roses / Saint-Laurent",43.668017,7.184116,0,0,OZU:SA:CTP5098,Europe/Paris,,OZU, +OZU:SP:5099,1,"Les Tines",43.706976,7.171405,0,0,OZU:SA:CTP5099,Europe/Paris,,OZU, +OZU:SP:50999,1,"Z.A. La Manda",43.764074,7.199346,0,0,OZU:SA:CTP50999,Europe/Paris,,OZU, +OZU:SP:510,1,"Henri Sappia",43.733138,7.250012,0,0,OZU:SA:CTP509,Europe/Paris,,OZU, +OZU:SP:5100,1,"Les Tines",43.706493,7.171513,0,0,OZU:SA:CTP5099,Europe/Paris,,OZU, +OZU:SP:5101,1,"Li Maioun",43.680296,7.180582,0,0,OZU:SA:CTP5102,Europe/Paris,,OZU, +OZU:SP:5102,1,"Li Maioun",43.680379,7.180551,0,0,OZU:SA:CTP5102,Europe/Paris,,OZU, +OZU:SP:5103,1,"Libération",43.666423,7.187119,0,0,OZU:SA:CTP5103,Europe/Paris,,OZU, +OZU:SP:5104,1,"Libération",43.6667,7.187576,0,0,OZU:SA:CTP5103,Europe/Paris,,OZU, +OZU:SP:5105,1,"Magnolias",43.663255,7.188463,0,0,OZU:SA:CTP5105,Europe/Paris,,OZU, +OZU:SP:5107,1,"Mas de Montalou",43.683545,7.179418,0,0,OZU:SA:CTP4116,Europe/Paris,,OZU, +OZU:SP:5108,1,"Mauberts",43.688718,7.176706,0,0,OZU:SA:CTP4117,Europe/Paris,,OZU, +OZU:SP:5109,1,"Morgan",43.669017,7.191521,0,0,OZU:SA:CTP52635,Europe/Paris,,OZU, +OZU:SP:511,1,"Hôpital Anglais",43.686851,7.301667,0,0,OZU:SA:CTP511,Europe/Paris,,OZU, +OZU:SP:5110,1,"Morgan",43.668981,7.191741,0,0,OZU:SA:CTP52635,Europe/Paris,,OZU, +OZU:SP:5111,1,"Moyenne Corniche des Pugets",43.696398,7.177781,0,0,OZU:SA:CTP5111,Europe/Paris,,OZU, +OZU:SP:51110,1,"Les Chataigniers",44.045321,7.277318,0,0,OZU:SA:CTP51110,Europe/Paris,,OZU, +OZU:SP:51111,1,"Les Chataigniers",44.045737,7.276682,0,0,OZU:SA:CTP51110,Europe/Paris,,OZU, +OZU:SP:51119,1,"Le Chaudan",43.870908,7.197952,0,0,OZU:SA:CTP51119,Europe/Paris,,OZU, +OZU:SP:5112,1,"Moyenne Corniche des Pugets",43.696765,7.177812,0,0,OZU:SA:CTP5111,Europe/Paris,,OZU, +OZU:SP:51122,1,"Le Chaudan",43.870543,7.198076,0,0,OZU:SA:CTP51119,Europe/Paris,,OZU, +OZU:SP:5113,1,"L'Epingle",43.71295,7.170323,0,0,OZU:SA:CTP5113,Europe/Paris,,OZU, +OZU:SP:5114,1,"Notre Dame",43.677854,7.188452,0,0,OZU:SA:CTP5114,Europe/Paris,,OZU, +OZU:SP:5115,1,"Notre Dame",43.677552,7.188575,0,0,OZU:SA:CTP5114,Europe/Paris,,OZU, +OZU:SP:5116,1,"Ossola Tassigny",43.662848,7.190537,0,0,OZU:SA:CTP5117,Europe/Paris,,OZU, +OZU:SP:5117,1,"Ossola Tassigny",43.662753,7.190652,0,0,OZU:SA:CTP5117,Europe/Paris,,OZU, +OZU:SP:5118,1,"Parc Layet",43.675824,7.190748,0,0,OZU:SA:CTP52618,Europe/Paris,,OZU, +OZU:SP:51189,1,"Chemin de Provence",43.754526,7.178657,0,0,OZU:SA:CTP51189,Europe/Paris,,OZU, +OZU:SP:51190,1,"Chemin de Provence",43.754511,7.178391,0,0,OZU:SA:CTP51189,Europe/Paris,,OZU, +OZU:SP:51197,1,"Le Cialancier",44.208918,6.978217,0,0,OZU:SA:CTP51197,Europe/Paris,,OZU, +OZU:SP:51198,1,"Le Cialancier",44.209159,6.978055,0,0,OZU:SA:CTP51197,Europe/Paris,,OZU, +OZU:SP:512,1,"Hôpital Anglais",43.686911,7.301609,0,0,OZU:SA:CTP511,Europe/Paris,,OZU, +OZU:SP:5120,1,"Pasteur",43.665284,7.193361,0,0,OZU:SA:CTP52664,Europe/Paris,,OZU, +OZU:SP:51208,1,"Les Cigales",43.766677,7.193315,0,0,OZU:SA:CTP21232,Europe/Paris,,OZU, +OZU:SP:5121,1,"Pasteur",43.664764,7.193482,0,0,OZU:SA:CTP52664,Europe/Paris,,OZU, +OZU:SP:5122,1,"Paul Marie",43.672725,7.183957,0,0,OZU:SA:CTP5122,Europe/Paris,,OZU, +OZU:SP:5123,1,"Paul Marie",43.672632,7.184011,0,0,OZU:SA:CTP5122,Europe/Paris,,OZU, +OZU:SP:5124,1,"Pécheurs",43.68441,7.188067,0,0,OZU:SA:CTP52666,Europe/Paris,,OZU, +OZU:SP:5125,1,"Pécheurs",43.684167,7.188269,0,0,OZU:SA:CTP52666,Europe/Paris,,OZU, +OZU:SP:5126,1,"Plateaux Fleuris",43.675222,7.178053,0,0,OZU:SA:CTP5127,Europe/Paris,,OZU, +OZU:SP:51264,1,"LE CLOS MARTEL",43.827865,7.173161,0,0,OZU:SA:CTP51264,Europe/Paris,,OZU, +OZU:SP:51265,1,"LE CLOS MARTEL",43.827862,7.173248,0,0,OZU:SA:CTP51264,Europe/Paris,,OZU, +OZU:SP:5127,1,"Plateaux Fleuris",43.674947,7.178179,0,0,OZU:SA:CTP5127,Europe/Paris,,OZU, +OZU:SP:5128,1,"Pompage",43.694536,7.184759,0,0,OZU:SA:CTP52676,Europe/Paris,,OZU, +OZU:SP:5129,1,"Pompage",43.694398,7.184823,0,0,OZU:SA:CTP52676,Europe/Paris,,OZU, +OZU:SP:51296,1,"La Manda",43.764223,7.205634,0,0,OZU:SA:CTP51296,Europe/Paris,,OZU, +OZU:SP:51297,1,"La Manda",43.763916,7.204862,0,0,OZU:SA:CTP51296,Europe/Paris,,OZU, +OZU:SP:513,1,"Hôpital de l'Archet",43.696805,7.227999,0,0,OZU:SA:CTP646,Europe/Paris,,OZU, +OZU:SP:5130,1,"Pont des Pugets",43.682689,7.186084,0,0,OZU:SA:CTP5130,Europe/Paris,,OZU, +OZU:SP:51303,1,"Langevin",43.768906,7.196417,0,0,OZU:SA:CTP51303,Europe/Paris,,OZU, +OZU:SP:51304,1,"Langevin",43.768386,7.197167,0,0,OZU:SA:CTP51303,Europe/Paris,,OZU, +OZU:SP:5131,1,"Pont des Pugets",43.682579,7.185925,0,0,OZU:SA:CTP5130,Europe/Paris,,OZU, +OZU:SP:5132,1,"Résidence des Cigales",43.671951,7.169848,0,0,OZU:SA:CTP5132,Europe/Paris,,OZU, +OZU:SP:51321,1,"La Colmiane",44.070926,7.22195,0,0,OZU:SA:CTP51321,Europe/Paris,,OZU, +OZU:SP:51322,1,"La Colmiane",44.070853,7.221981,0,0,OZU:SA:CTP51321,Europe/Paris,,OZU, +OZU:SP:5133,1,"Résidence des Cigales",43.671827,7.169812,0,0,OZU:SA:CTP5132,Europe/Paris,,OZU, +OZU:SP:5134,1,"Rives D'Or",43.677946,7.190805,0,0,OZU:SA:CTP52707,Europe/Paris,,OZU, +OZU:SP:51347,1,"Les Condamines",43.757789,7.187649,0,0,OZU:SA:CTP21229,Europe/Paris,,OZU, +OZU:SP:5135,1,"Rives D'Or",43.67807,7.190877,0,0,OZU:SA:CTP52707,Europe/Paris,,OZU, +OZU:SP:51350,1,"Les Condamines",43.758232,7.188219,0,0,OZU:SA:CTP21229,Europe/Paris,,OZU, +OZU:SP:51358,1,"Les Conques",43.761222,7.191434,0,0,OZU:SA:CTP21230,Europe/Paris,,OZU, +OZU:SP:51359,1,"Les Conques",43.761109,7.191345,0,0,OZU:SA:CTP21230,Europe/Paris,,OZU, +OZU:SP:5136,1,"RN7 Les Mouettes",43.660012,7.183286,0,0,OZU:SA:CTP5136,Europe/Paris,,OZU, +OZU:SP:5137,1,"RN7 Les Paluds",43.660657,7.190399,0,0,OZU:SA:CTP52643,Europe/Paris,,OZU, +OZU:SP:51375,1,"Corniglion Molinier",44.012397,7.308319,0,0,OZU:SA:CTP51375,Europe/Paris,,OZU, +OZU:SP:51376,1,"Corniglion Molinier",44.012547,7.308386,0,0,OZU:SA:CTP51375,Europe/Paris,,OZU, +OZU:SP:5138,1,"RN7 Vauban",43.660223,7.180377,0,0,OZU:SA:CTP5138,Europe/Paris,,OZU, +OZU:SP:5140,1,"Rond Point Ravet",43.668628,7.184539,0,0,OZU:SA:CTP5093,Europe/Paris,,OZU, +OZU:SP:51401,1,"La Courbaisse",43.925145,7.185947,0,0,OZU:SA:CTP51401,Europe/Paris,,OZU, +OZU:SP:51404,1,"La Courbaisse",43.92518,7.185761,0,0,OZU:SA:CTP51401,Europe/Paris,,OZU, +OZU:SP:5141,1,"Rond Point Ravet",43.666692,7.184115,0,0,OZU:SA:CTP5093,Europe/Paris,,OZU, +OZU:SP:5142,1,"Rond Point Ravet",43.667877,7.183223,0,0,OZU:SA:CTP5093,Europe/Paris,,OZU, +OZU:SP:5143,1,"Route de Saint-Jeannet",43.711496,7.170411,0,0,OZU:SA:CTP5143,Europe/Paris,,OZU, +OZU:SP:51436,1,"La Manda",43.763924,7.204689,0,0,OZU:SA:CTP51296,Europe/Paris,,OZU, +OZU:SP:5144,1,"Route de Saint-Jeannet",43.711527,7.170326,0,0,OZU:SA:CTP5143,Europe/Paris,,OZU, +OZU:SP:5145,1,"Royal",43.66953,7.179294,0,0,OZU:SA:CTP5145,Europe/Paris,,OZU, +OZU:SP:5146,1,"Royal",43.669877,7.179187,0,0,OZU:SA:CTP5145,Europe/Paris,,OZU, +OZU:SP:5147,1,"Route de la Baronne",43.694386,7.183083,0,0,OZU:SA:CTP5147,Europe/Paris,,OZU, +OZU:SP:5148,1,"Route de la Baronne",43.694326,7.183028,0,0,OZU:SA:CTP5147,Europe/Paris,,OZU, +OZU:SP:5149,1,"Saint-Antoine",43.675983,7.188417,0,0,OZU:SA:CTP5149,Europe/Paris,,OZU, +OZU:SP:51490,1,"Carras / Promenade",43.679774,7.23078,0,0,OZU:SA:CTP51490,Europe/Paris,,OZU, +OZU:SP:51492,1,"Ferber / Promenade",43.677631,7.228995,0,0,OZU:SA:CTP51492,Europe/Paris,,OZU, +OZU:SP:515,1,"Impératrice Eugénie",43.691611,7.234093,0,0,OZU:SA:CTP518,Europe/Paris,,OZU, +OZU:SP:5150,1,"Saint-Antoine",43.67568,7.188552,0,0,OZU:SA:CTP5149,Europe/Paris,,OZU, +OZU:SP:51504,1,"Le Cros",44.055592,7.264567,0,0,OZU:SA:CTP51504,Europe/Paris,,OZU, +OZU:SP:51505,1,"Le Cros",44.055302,7.265002,0,0,OZU:SA:CTP51504,Europe/Paris,,OZU, +OZU:SP:51507,1,"Cros d'Utelle",43.879767,7.233518,0,0,OZU:SA:CTP51507,Europe/Paris,,OZU, +OZU:SP:51508,1,"Cros d'Utelle",43.879518,7.233053,0,0,OZU:SA:CTP51507,Europe/Paris,,OZU, +OZU:SP:51515,1,"Castagniers",43.789962,7.214875,0,0,OZU:SA:CTP51515,Europe/Paris,,OZU, +OZU:SP:51516,1,"Castagniers",43.789896,7.214745,0,0,OZU:SA:CTP51515,Europe/Paris,,OZU, +OZU:SP:5153,1,"Sauvaigo Vespins",43.661437,7.179016,0,0,OZU:SA:CTP5153,Europe/Paris,,OZU, +OZU:SP:51531,1,"LES CASTELLAS",43.821605,7.173067,0,0,OZU:SA:CTP51531,Europe/Paris,,OZU, +OZU:SP:51532,1,"LES CASTELLAS",43.821634,7.17318,0,0,OZU:SA:CTP51531,Europe/Paris,,OZU, +OZU:SP:5154,1,"Sauvaigo Vespins",43.661545,7.179621,0,0,OZU:SA:CTP5153,Europe/Paris,,OZU, +OZU:SP:5155,1,"Sidonie",43.690159,7.183543,0,0,OZU:SA:CTP5155,Europe/Paris,,OZU, +OZU:SP:5156,1,"Sidonie",43.68941,7.183392,0,0,OZU:SA:CTP5155,Europe/Paris,,OZU, +OZU:SP:5158,1,"Square Bénes",43.671296,7.190102,0,0,OZU:SA:CTP5158,Europe/Paris,,OZU, +OZU:SP:5159,1,"Square Bénes",43.671341,7.190501,0,0,OZU:SA:CTP5158,Europe/Paris,,OZU, +OZU:SP:516,1,"Impératrice Eugénie",43.692095,7.234159,0,0,OZU:SA:CTP518,Europe/Paris,,OZU, +OZU:SP:5161,1,"Saint-Laurent-Ragadan",43.66649,7.179396,0,0,OZU:SA:CTP5161,Europe/Paris,,OZU, +OZU:SP:5162,1,"Saint-Laurent-Ragadan",43.666473,7.179556,0,0,OZU:SA:CTP5161,Europe/Paris,,OZU, +OZU:SP:5163,1,"Saint-Marc",43.684356,7.18362,0,0,OZU:SA:CTP5163,Europe/Paris,,OZU, +OZU:SP:5164,1,"Saint-Marc",43.684359,7.182576,0,0,OZU:SA:CTP5163,Europe/Paris,,OZU, +OZU:SP:5165,1,"Saint-Pétronille",43.715124,7.177287,0,0,OZU:SA:CTP52736,Europe/Paris,,OZU, +OZU:SP:51653,1,"Douans",44.230623,6.955776,0,0,OZU:SA:CTP51653,Europe/Paris,,OZU, +OZU:SP:51654,1,"Douans",44.230516,6.955955,0,0,OZU:SA:CTP51653,Europe/Paris,,OZU, +OZU:SP:5166,1,"Saint-Pétronille",43.715422,7.177461,0,0,OZU:SA:CTP52736,Europe/Paris,,OZU, +OZU:SP:5169,1,"Stade des Iscles",43.703078,7.18283,0,0,OZU:SA:CTP5169,Europe/Paris,,OZU, +OZU:SP:517,1,"Impératrice Eugénie",43.691886,7.233607,0,0,OZU:SA:CTP518,Europe/Paris,,OZU, +OZU:SP:5170,1,"Sainte-Geneviève",43.695685,7.174778,0,0,OZU:SA:CTP5170,Europe/Paris,,OZU, +OZU:SP:5171,1,"Sainte-Geneviève",43.695453,7.17492,0,0,OZU:SA:CTP5170,Europe/Paris,,OZU, +OZU:SP:5172,1,"Saint-Joseph",43.680535,7.18983,0,0,OZU:SA:CTP52732,Europe/Paris,,OZU, +OZU:SP:5173,1,"Saint-Joseph",43.680622,7.189757,0,0,OZU:SA:CTP52732,Europe/Paris,,OZU, +OZU:SP:51735,1,"L'Emigra",43.787727,7.202283,0,0,OZU:SA:CTP51735,Europe/Paris,,OZU, +OZU:SP:51736,1,"L'Emigra",43.787844,7.202303,0,0,OZU:SA:CTP51735,Europe/Paris,,OZU, +OZU:SP:51739,1,"Engéri",43.762723,7.19292,0,0,OZU:SA:CTP51739,Europe/Paris,,OZU, +OZU:SP:51740,1,"Engéri",43.762868,7.193094,0,0,OZU:SA:CTP51739,Europe/Paris,,OZU, +OZU:SP:5175,1,"La Tour Carrée",43.701034,7.172775,0,0,OZU:SA:CTP5175,Europe/Paris,,OZU, +OZU:SP:5176,1,"La Tour Carrée",43.700882,7.172949,0,0,OZU:SA:CTP5175,Europe/Paris,,OZU, +OZU:SP:5179,1,"Val Fleuri",43.671227,7.165097,0,0,OZU:SA:CTP5179,Europe/Paris,,OZU, +OZU:SP:518,1,"Impératrice Eugénie",43.691718,7.234126,0,0,OZU:SA:CTP518,Europe/Paris,,OZU, +OZU:SP:5180,1,"Val Fleuri",43.671039,7.164857,0,0,OZU:SA:CTP5179,Europe/Paris,,OZU, +OZU:SP:5181,1,"Val Maïssa",43.712186,7.177943,0,0,OZU:SA:CTP52770,Europe/Paris,,OZU, +OZU:SP:5182,1,"Val Maïssa",43.712138,7.178027,0,0,OZU:SA:CTP52770,Europe/Paris,,OZU, +OZU:SP:51839,1,"Fabron Musée d'Art Naïf",43.686899,7.238528,0,0,OZU:SA:CTP51839,Europe/Paris,,OZU, +OZU:SP:5184,1,"Villa Sirius",43.671852,7.178487,0,0,OZU:SA:CTP5185,Europe/Paris,,OZU, +OZU:SP:51840,1,"Fabron Musée d'Art Naïf",43.687262,7.238646,0,0,OZU:SA:CTP51839,Europe/Paris,,OZU, +OZU:SP:5185,1,"Villa Sirius",43.672127,7.178597,0,0,OZU:SA:CTP5185,Europe/Paris,,OZU, +OZU:SP:51899,1,"Font Cailloure",43.749211,7.178909,0,0,OZU:SA:CTP51899,Europe/Paris,,OZU, +OZU:SP:519,1,"Institut des Hautes Synthèses",43.700696,7.198416,0,0,OZU:SA:CTP520,Europe/Paris,,OZU, +OZU:SP:51900,1,"Font Cailloure",43.749417,7.179135,0,0,OZU:SA:CTP51899,Europe/Paris,,OZU, +OZU:SP:5192,1,"Chapelle",43.668972,7.187695,0,0,OZU:SA:CTP5192,Europe/Paris,,OZU, +OZU:SP:5193,1,"La Calada",43.714026,7.171644,0,0,OZU:SA:CTP5193,Europe/Paris,,OZU, +OZU:SP:51938,1,"Collège Jean Franco",44.2574,6.923746,0,0,OZU:SA:CTP51938,Europe/Paris,,OZU, +OZU:SP:5194,1,"Les Cigales",43.668755,7.18532,0,0,OZU:SA:CTP5194,Europe/Paris,,OZU, +OZU:SP:51950,1,"Les Fauvettes",43.756108,7.170121,0,0,OZU:SA:CTP51950,Europe/Paris,,OZU, +OZU:SP:51951,1,"Les Fauvettes",43.75663,7.171143,0,0,OZU:SA:CTP51950,Europe/Paris,,OZU, +OZU:SP:51956,1,"Les Lentisques",43.755354,7.165503,0,0,OZU:SA:CTP51956,Europe/Paris,,OZU, +OZU:SP:51957,1,"Les Lentisques",43.755441,7.165692,0,0,OZU:SA:CTP51956,Europe/Paris,,OZU, +OZU:SP:51968,1,"Gambetta / Promenade",43.693701,7.255534,0,0,OZU:SA:CTP51968,Europe/Paris,,OZU, +OZU:SP:51969,1,"Gambetta / Promenade",43.693547,7.255546,0,0,OZU:SA:CTP51968,Europe/Paris,,OZU, +OZU:SP:51978,1,"Gare de Berthemont",44.033286,7.300271,0,0,OZU:SA:CTP21326,Europe/Paris,,OZU, +OZU:SP:51979,1,"Gare de Berthemont",44.033133,7.300475,0,0,OZU:SA:CTP21326,Europe/Paris,,OZU, +OZU:SP:52,1,"Thiers / Médecin",43.705052,7.263976,0,0,OZU:SA:CTP48,Europe/Paris,,OZU, +OZU:SP:520,1,"Institut des Hautes Synthèses",43.701156,7.198438,0,0,OZU:SA:CTP520,Europe/Paris,,OZU, +OZU:SP:52022,1,"Gattières",43.759624,7.175632,0,0,OZU:SA:CTP52022,Europe/Paris,,OZU, +OZU:SP:52047,1,"La Baronne",43.720653,7.17911,0,0,OZU:SA:CTP52047,Europe/Paris,,OZU, +OZU:SP:52051,1,"La Baronne Place",43.719405,7.179227,0,0,OZU:SA:CTP52051,Europe/Paris,,OZU, +OZU:SP:52052,1,"La Baronne Place",43.718498,7.179361,0,0,OZU:SA:CTP52051,Europe/Paris,,OZU, +OZU:SP:52058,1,"Maoupas",43.724006,7.177632,0,0,OZU:SA:CTP52058,Europe/Paris,,OZU, +OZU:SP:52059,1,"Maoupas",43.723518,7.177665,0,0,OZU:SA:CTP52058,Europe/Paris,,OZU, +OZU:SP:52064,1,"Les Plantiers",43.729667,7.177319,0,0,OZU:SA:CTP52064,Europe/Paris,,OZU, +OZU:SP:52065,1,"Les Plantiers",43.729662,7.177417,0,0,OZU:SA:CTP52064,Europe/Paris,,OZU, +OZU:SP:52070,1,"Plan Saint-Jeannet",43.740683,7.177473,0,0,OZU:SA:CTP52070,Europe/Paris,,OZU, +OZU:SP:52071,1,"Plan Saint-Jeannet",43.740672,7.17772,0,0,OZU:SA:CTP52070,Europe/Paris,,OZU, +OZU:SP:521,1,"Institution Sourds et Muets",43.701626,7.246238,0,0,OZU:SA:CTP521,Europe/Paris,,OZU, +OZU:SP:5217,1,"Gare",43.662732,7.194123,0,0,OZU:SA:CTP52599,Europe/Paris,,OZU, +OZU:SP:5218,1,"Gare",43.663072,7.193884,0,0,OZU:SA:CTP52599,Europe/Paris,,OZU, +OZU:SP:5219,1,"Gare",43.661724,7.193901,0,0,OZU:SA:CTP52599,Europe/Paris,,OZU, +OZU:SP:522,1,"Institution Sourds et Muets",43.701291,7.246445,0,0,OZU:SA:CTP521,Europe/Paris,,OZU, +OZU:SP:5220,1,"Gare",43.662637,7.195629,0,0,OZU:SA:CTP52599,Europe/Paris,,OZU, +OZU:SP:5221,1,"Gare RN7",43.661639,7.193001,0,0,OZU:SA:CTP5221,Europe/Paris,,OZU, +OZU:SP:5222,1,"Gare RN7",43.661638,7.193014,0,0,OZU:SA:CTP5221,Europe/Paris,,OZU, +OZU:SP:5223,1,"La Calada",43.714103,7.171711,0,0,OZU:SA:CTP5193,Europe/Paris,,OZU, +OZU:SP:5224,1,"Square Bénes",43.671296,7.190523,0,0,OZU:SA:CTP5158,Europe/Paris,,OZU, +OZU:SP:5226,1,"Les Iscles",43.709632,7.177977,0,0,OZU:SA:CTP52616,Europe/Paris,,OZU, +OZU:SP:52300,1,"Gendarmerie",44.078062,7.249959,0,0,OZU:SA:CTP52300,Europe/Paris,,OZU, +OZU:SP:52344,1,"Giratoire De La Manda",43.76637,7.200362,0,0,OZU:SA:CTP52344,Europe/Paris,,OZU, +OZU:SP:52347,1,"Gordolon",43.999332,7.313903,0,0,OZU:SA:CTP52347,Europe/Paris,,OZU, +OZU:SP:52348,1,"Gordolon",43.99912,7.314399,0,0,OZU:SA:CTP52347,Europe/Paris,,OZU, +OZU:SP:52373,1,"Grosso CUM / Promenade",43.692768,7.252078,0,0,OZU:SA:CTP52373,Europe/Paris,,OZU, +OZU:SP:52374,1,"Grosso CUM / Promenade",43.693084,7.252651,0,0,OZU:SA:CTP52373,Europe/Paris,,OZU, +OZU:SP:52390,1,"Gare SNCF",43.704124,7.262009,0,0,OZU:SA:CTP52390,Europe/Paris,,OZU, +OZU:SP:52393,1,"Gare SNCF",43.704617,7.262833,0,0,OZU:SA:CTP52390,Europe/Paris,,OZU, +OZU:SP:52413,1,"La Halte",43.759635,7.183239,0,0,OZU:SA:CTP52413,Europe/Paris,,OZU, +OZU:SP:52414,1,"La Halte",43.759526,7.183268,0,0,OZU:SA:CTP52413,Europe/Paris,,OZU, +OZU:SP:52463,1,"Les Iscles Carros",43.83534,7.173404,0,0,OZU:SA:CTP52463,Europe/Paris,,OZU, +OZU:SP:52464,1,"Les Iscles Carros",43.83645,7.172697,0,0,OZU:SA:CTP52463,Europe/Paris,,OZU, +OZU:SP:52466,1,"2000 Hâmeau",44.188785,7.159997,0,0,OZU:SA:CTP52466,Europe/Paris,,OZU, +OZU:SP:52467,1,"Village",44.185993,7.053258,0,0,OZU:SA:CTP52467,Europe/Paris,,OZU, +OZU:SP:52468,1,"Village",44.185881,7.053764,0,0,OZU:SA:CTP52467,Europe/Paris,,OZU, +OZU:SP:52469,1,"2000 Station",44.186878,7.157887,0,0,OZU:SA:CTP52469,Europe/Paris,,OZU, +OZU:SP:525,1,"J.H.Fabre",43.732322,7.250911,0,0,OZU:SA:CTP525,Europe/Paris,,OZU, +OZU:SP:52515,1,"Agriculteurs",43.702956,7.178512,0,0,OZU:SA:CTP52515,Europe/Paris,,OZU, +OZU:SP:52516,1,"Agriculteurs",43.702603,7.178755,0,0,OZU:SA:CTP52515,Europe/Paris,,OZU, +OZU:SP:52521,1,"Arts Graphiques",43.689431,7.185925,0,0,OZU:SA:CTP52521,Europe/Paris,,OZU, +OZU:SP:52522,1,"Arts Graphiques",43.689323,7.185929,0,0,OZU:SA:CTP52521,Europe/Paris,,OZU, +OZU:SP:52531,1,"Square Bénes",43.671296,7.190102,0,0,OZU:SA:CTP5158,Europe/Paris,,OZU, +OZU:SP:52532,1,"Square Bénes",43.671287,7.19051,0,0,OZU:SA:CTP5158,Europe/Paris,,OZU, +OZU:SP:52541,1,"Carrossiers",43.697472,7.184351,0,0,OZU:SA:CTP52541,Europe/Paris,,OZU, +OZU:SP:52542,1,"Carrossiers",43.697575,7.18426,0,0,OZU:SA:CTP52541,Europe/Paris,,OZU, +OZU:SP:52548,1,"Centre Commercial",43.659204,7.195262,0,0,OZU:SA:CTP5020,Europe/Paris,,OZU, +OZU:SP:52568,1,"Coubertin",43.671288,7.192682,0,0,OZU:SA:CTP52568,Europe/Paris,,OZU, +OZU:SP:52569,1,"Coubertin",43.672138,7.191811,0,0,OZU:SA:CTP52568,Europe/Paris,,OZU, +OZU:SP:52579,1,"Chemin de la Digue",43.699642,7.182947,0,0,OZU:SA:CTP52579,Europe/Paris,,OZU, +OZU:SP:52580,1,"Chemin de la Digue",43.699781,7.182859,0,0,OZU:SA:CTP52579,Europe/Paris,,OZU, +OZU:SP:52590,1,"France d'Outre Mer",43.659158,7.191276,0,0,OZU:SA:CTP52590,Europe/Paris,,OZU, +OZU:SP:52599,1,"Gare",43.663061,7.193804,0,0,OZU:SA:CTP52599,Europe/Paris,,OZU, +OZU:SP:526,1,"J.H.Fabre",43.73223,7.251349,0,0,OZU:SA:CTP525,Europe/Paris,,OZU, +OZU:SP:52600,1,"Gare",43.662731,7.194123,0,0,OZU:SA:CTP52599,Europe/Paris,,OZU, +OZU:SP:52616,1,"Les Iscles",43.709768,7.177837,0,0,OZU:SA:CTP52616,Europe/Paris,,OZU, +OZU:SP:52617,1,"Les Iscles",43.709631,7.177977,0,0,OZU:SA:CTP52616,Europe/Paris,,OZU, +OZU:SP:52618,1,"Parc Layet",43.675824,7.190748,0,0,OZU:SA:CTP52618,Europe/Paris,,OZU, +OZU:SP:52619,1,"Parc Layet",43.675493,7.190893,0,0,OZU:SA:CTP52618,Europe/Paris,,OZU, +OZU:SP:52635,1,"Morgan",43.669017,7.19152,0,0,OZU:SA:CTP52635,Europe/Paris,,OZU, +OZU:SP:52636,1,"Morgan",43.66898,7.191741,0,0,OZU:SA:CTP52635,Europe/Paris,,OZU, +OZU:SP:52638,1,"Gare",43.661638,7.193001,0,0,OZU:SA:CTP52599,Europe/Paris,,OZU, +OZU:SP:52643,1,"RN7 Les Paluds",43.660656,7.190399,0,0,OZU:SA:CTP52643,Europe/Paris,,OZU, +OZU:SP:52654,1,"Lantosque",43.974148,7.310681,0,0,OZU:SA:CTP21330,Europe/Paris,,OZU, +OZU:SP:52655,1,"Lantosque",43.974477,7.311555,0,0,OZU:SA:CTP21330,Europe/Paris,,OZU, +OZU:SP:52661,1,"Collège Pagnol",43.68173,7.189166,0,0,OZU:SA:CTP52661,Europe/Paris,,OZU, +OZU:SP:52662,1,"Collège Pagnol",43.682107,7.189198,0,0,OZU:SA:CTP52661,Europe/Paris,,OZU, +OZU:SP:52664,1,"Pasteur",43.665025,7.193376,0,0,OZU:SA:CTP52664,Europe/Paris,,OZU, +OZU:SP:52665,1,"Pasteur",43.664883,7.193327,0,0,OZU:SA:CTP52664,Europe/Paris,,OZU, +OZU:SP:52666,1,"Pécheurs",43.684409,7.188067,0,0,OZU:SA:CTP52666,Europe/Paris,,OZU, +OZU:SP:52667,1,"Pécheurs",43.684166,7.188269,0,0,OZU:SA:CTP52666,Europe/Paris,,OZU, +OZU:SP:52676,1,"Pompage",43.694536,7.184759,0,0,OZU:SA:CTP52676,Europe/Paris,,OZU, +OZU:SP:52677,1,"Pompage",43.694398,7.184822,0,0,OZU:SA:CTP52676,Europe/Paris,,OZU, +OZU:SP:52682,1,"La Provençale",43.667118,7.192686,0,0,OZU:SA:CTP52682,Europe/Paris,,OZU, +OZU:SP:52683,1,"La Provençale",43.667305,7.192342,0,0,OZU:SA:CTP52682,Europe/Paris,,OZU, +OZU:SP:527,1,"Jean Barès",43.723507,7.250086,0,0,OZU:SA:CTP527,Europe/Paris,,OZU, +OZU:SP:52707,1,"Rives D'Or",43.677946,7.190805,0,0,OZU:SA:CTP52707,Europe/Paris,,OZU, +OZU:SP:52708,1,"Rives D'Or",43.678069,7.190877,0,0,OZU:SA:CTP52707,Europe/Paris,,OZU, +OZU:SP:52732,1,"Saint-Joseph",43.680623,7.189755,0,0,OZU:SA:CTP52732,Europe/Paris,,OZU, +OZU:SP:52733,1,"Saint-Joseph",43.680531,7.189809,0,0,OZU:SA:CTP52732,Europe/Paris,,OZU, +OZU:SP:52736,1,"Saint-Pétronille",43.715124,7.177287,0,0,OZU:SA:CTP52736,Europe/Paris,,OZU, +OZU:SP:52737,1,"Saint-Pétronille",43.715422,7.177461,0,0,OZU:SA:CTP52736,Europe/Paris,,OZU, +OZU:SP:52742,1,"Stade",43.67338,7.191222,0,0,OZU:SA:CTP52742,Europe/Paris,,OZU, +OZU:SP:52743,1,"Stade",43.67386,7.191151,0,0,OZU:SA:CTP52742,Europe/Paris,,OZU, +OZU:SP:52751,1,"La Tour",43.705152,7.177743,0,0,OZU:SA:CTP52751,Europe/Paris,,OZU, +OZU:SP:52752,1,"La Tour",43.705065,7.177673,0,0,OZU:SA:CTP52751,Europe/Paris,,OZU, +OZU:SP:52768,1,"La Vallière / Promenade",43.670789,7.223556,0,0,OZU:SA:CTP52768,Europe/Paris,,OZU, +OZU:SP:52770,1,"Val Maïssa",43.712186,7.177943,0,0,OZU:SA:CTP52770,Europe/Paris,,OZU, +OZU:SP:52771,1,"Val Maïssa",43.712137,7.178026,0,0,OZU:SA:CTP52770,Europe/Paris,,OZU, +OZU:SP:528,1,"Jean Barès",43.722949,7.250474,0,0,OZU:SA:CTP527,Europe/Paris,,OZU, +OZU:SP:52829,1,"LE PUY",43.80892,7.17682,0,0,OZU:SA:CTP52829,Europe/Paris,,OZU, +OZU:SP:52830,1,"LE PUY",43.808902,7.176797,0,0,OZU:SA:CTP52829,Europe/Paris,,OZU, +OZU:SP:52966,1,"Plan du Var",43.858335,7.197158,0,0,OZU:SA:CTP52966,Europe/Paris,,OZU, +OZU:SP:52967,1,"Plan du Var",43.858493,7.196437,0,0,OZU:SA:CTP52966,Europe/Paris,,OZU, +OZU:SP:53,1,"Auberge du Tortéo",43.73914,7.261623,0,0,OZU:SA:CTP53,Europe/Paris,,OZU, +OZU:SP:530,1,"Jardin",43.705152,7.247312,0,0,OZU:SA:CTP530,Europe/Paris,,OZU, +OZU:SP:53014,1,"Gare",44.036097,7.12884,0,0,OZU:SA:CTP53014,Europe/Paris,,OZU, +OZU:SP:53015,1,"Gare",44.036145,7.129595,0,0,OZU:SA:CTP53014,Europe/Paris,,OZU, +OZU:SP:53016,1,"Mairie de Gattières",43.759546,7.17577,0,0,OZU:SA:CTP53016,Europe/Paris,,OZU, +OZU:SP:53017,1,"Mairie de Gattières",43.75957,7.176025,0,0,OZU:SA:CTP53016,Europe/Paris,,OZU, +OZU:SP:53023,1,"Magnan / Promenade",43.690911,7.246568,0,0,OZU:SA:CTP893,Europe/Paris,,OZU, +OZU:SP:53024,1,"Magnan / Promenade",43.690495,7.245018,0,0,OZU:SA:CTP893,Europe/Paris,,OZU, +OZU:SP:53043,1,"Maison Pour Tous",43.772436,7.192406,0,0,OZU:SA:CTP53043,Europe/Paris,,OZU, +OZU:SP:53044,1,"Maison Pour Tous",43.772516,7.192631,0,0,OZU:SA:CTP53043,Europe/Paris,,OZU, +OZU:SP:531,1,"Jardin Botanique",43.684716,7.209512,0,0,OZU:SA:CTP531,Europe/Paris,,OZU, +OZU:SP:53123,1,"La Mediathèque",43.773702,7.191899,0,0,OZU:SA:CTP53123,Europe/Paris,,OZU, +OZU:SP:53124,1,"Juliette Greco",43.774173,7.192441,0,0,OZU:SA:CTP53124,Europe/Paris,,OZU, +OZU:SP:53125,1,"Médiathèque",43.773873,7.192701,0,0,OZU:SA:CTP53125,Europe/Paris,,OZU, +OZU:SP:53126,1,"La Mediathèque",43.77368,7.191987,0,0,OZU:SA:CTP53123,Europe/Paris,,OZU, +OZU:SP:532,1,"Jardin Botanique",43.684692,7.209435,0,0,OZU:SA:CTP531,Europe/Paris,,OZU, +OZU:SP:53280,1,"Nantellée",44.051492,7.271151,0,0,OZU:SA:CTP21323,Europe/Paris,,OZU, +OZU:SP:53281,1,"Nantellée",44.051478,7.271276,0,0,OZU:SA:CTP21323,Europe/Paris,,OZU, +OZU:SP:53286,1,"Aéroport T.2",43.6607,7.205449,0,0,OZU:SA:CTP53286,Europe/Paris,,OZU, +OZU:SP:533,1,"Jardins Fleuris",43.688569,7.222326,0,0,OZU:SA:CTP533,Europe/Paris,,OZU, +OZU:SP:53356,1,"Ferber / Promenade",43.675302,7.227914,0,0,OZU:SA:CTP53356,Europe/Paris,,OZU, +OZU:SP:53359,1,"Robini",43.681698,7.198706,0,0,OZU:SA:CTP53359,Europe/Paris,,OZU, +OZU:SP:53394,1,"Palais Nikaïa",43.680356,7.199324,0,0,OZU:SA:CTP1277,Europe/Paris,,OZU, +OZU:SP:534,1,"Jardins Corniche Fleurie",43.690431,7.206178,0,0,OZU:SA:CTP534,Europe/Paris,,OZU, +OZU:SP:535,1,"Jardins Corniche Fleurie",43.690302,7.206242,0,0,OZU:SA:CTP534,Europe/Paris,,OZU, +OZU:SP:53583,1,"La Pierre de Fresques",43.749324,7.17033,0,0,OZU:SA:CTP53583,Europe/Paris,,OZU, +OZU:SP:53584,1,"La Pierre de Fresques",43.749232,7.170362,0,0,OZU:SA:CTP53583,Europe/Paris,,OZU, +OZU:SP:536,1,"Jardins Fleuris",43.689416,7.222301,0,0,OZU:SA:CTP533,Europe/Paris,,OZU, +OZU:SP:53600,1,"LA PINEE",43.824033,7.176172,0,0,OZU:SA:CTP53600,Europe/Paris,,OZU, +OZU:SP:53601,1,"LA PINEE",43.82402,7.176229,0,0,OZU:SA:CTP53600,Europe/Paris,,OZU, +OZU:SP:53628,1,"Plans de Gattières",43.752937,7.182387,0,0,OZU:SA:CTP53628,Europe/Paris,,OZU, +OZU:SP:53629,1,"Plans de Gattières",43.753157,7.183091,0,0,OZU:SA:CTP53628,Europe/Paris,,OZU, +OZU:SP:53645,1,"Place des Plans",43.774997,7.199772,0,0,OZU:SA:CTP53645,Europe/Paris,,OZU, +OZU:SP:53646,1,"Place des Plans",43.775006,7.199977,0,0,OZU:SA:CTP53645,Europe/Paris,,OZU, +OZU:SP:53669,1,"Pont de la Manda",43.766058,7.201682,0,0,OZU:SA:CTP53669,Europe/Paris,,OZU, +OZU:SP:53670,1,"Pont de la Manda",43.765789,7.201857,0,0,OZU:SA:CTP53669,Europe/Paris,,OZU, +OZU:SP:53681,1,"Pont de Clans",43.976614,7.140055,0,0,OZU:SA:CTP53681,Europe/Paris,,OZU, +OZU:SP:53682,1,"Pont de Clans",43.976675,7.140319,0,0,OZU:SA:CTP53681,Europe/Paris,,OZU, +OZU:SP:537,1,"Jardins Hespérides",43.707536,7.247182,0,0,OZU:SA:CTP538,Europe/Paris,,OZU, +OZU:SP:53703,1,"Pont du Martinet",43.981512,7.317075,0,0,OZU:SA:CTP53703,Europe/Paris,,OZU, +OZU:SP:53704,1,"Pont du Martinet",43.981393,7.317109,0,0,OZU:SA:CTP53703,Europe/Paris,,OZU, +OZU:SP:53705,1,"LA POMETE",43.816319,7.173483,0,0,OZU:SA:CTP53705,Europe/Paris,,OZU, +OZU:SP:53706,1,"LA POMETE",43.81635,7.173427,0,0,OZU:SA:CTP53705,Europe/Paris,,OZU, +OZU:SP:53738,1,"Pont de Paule",44.120204,7.091962,0,0,OZU:SA:CTP53738,Europe/Paris,,OZU, +OZU:SP:53739,1,"Pont de Paule",44.12034,7.092143,0,0,OZU:SA:CTP53738,Europe/Paris,,OZU, +OZU:SP:53791,1,"Le Pré Du Loup",44.21957,6.967501,0,0,OZU:SA:CTP53791,Europe/Paris,,OZU, +OZU:SP:53792,1,"Le Pré Du Loup",44.217974,6.969013,0,0,OZU:SA:CTP53791,Europe/Paris,,OZU, +OZU:SP:538,1,"Jardins Hespérides",43.707633,7.247005,0,0,OZU:SA:CTP538,Europe/Paris,,OZU, +OZU:SP:53825,1,"Le Puey",44.066189,7.257329,0,0,OZU:SA:CTP53825,Europe/Paris,,OZU, +OZU:SP:53826,1,"Le Puey",44.066215,7.257154,0,0,OZU:SA:CTP53825,Europe/Paris,,OZU, +OZU:SP:53842,1,"La Querello",43.783651,7.202603,0,0,OZU:SA:CTP53842,Europe/Paris,,OZU, +OZU:SP:53843,1,"La Querello",43.783851,7.20235,0,0,OZU:SA:CTP53842,Europe/Paris,,OZU, +OZU:SP:539,1,"Jardins Sainte-Marguerite",43.688974,7.201946,0,0,OZU:SA:CTP539,Europe/Paris,,OZU, +OZU:SP:53944,1,"Gare",44.05467,7.120865,0,0,OZU:SA:CTP53944,Europe/Paris,,OZU, +OZU:SP:53994,1,"Chalet Forneri",44.031039,7.306673,0,0,OZU:SA:CTP53994,Europe/Paris,,OZU, +OZU:SP:53995,1,"Chalet Forneri",44.031178,7.306785,0,0,OZU:SA:CTP53994,Europe/Paris,,OZU, +OZU:SP:53996,1,"La Roche",44.069611,7.175759,0,0,OZU:SA:CTP53996,Europe/Paris,,OZU, +OZU:SP:53997,1,"La Roche",44.06967,7.175839,0,0,OZU:SA:CTP53996,Europe/Paris,,OZU, +OZU:SP:54,1,"Auberge du Tortéo",43.739241,7.261594,0,0,OZU:SA:CTP53,Europe/Paris,,OZU, +OZU:SP:540,1,"Jardins Sainte-Marguerite",43.688792,7.20198,0,0,OZU:SA:CTP539,Europe/Paris,,OZU, +OZU:SP:54000,1,"Le Cougne",44.039593,7.290565,0,0,OZU:SA:CTP54000,Europe/Paris,,OZU, +OZU:SP:54001,1,"Le Cougne",44.039666,7.290746,0,0,OZU:SA:CTP54000,Europe/Paris,,OZU, +OZU:SP:54015,1,"Pont De Cervagne",44.014079,7.306996,0,0,OZU:SA:CTP54015,Europe/Paris,,OZU, +OZU:SP:54016,1,"Pont De Cervagne",44.014088,7.306809,0,0,OZU:SA:CTP54015,Europe/Paris,,OZU, +OZU:SP:54020,1,"Roquebillière Vieux Village",44.016225,7.312876,0,0,OZU:SA:CTP54020,Europe/Paris,,OZU, +OZU:SP:54030,1,"La Semeuse",44.04398,7.29828,0,0,OZU:SA:CTP54030,Europe/Paris,,OZU, +OZU:SP:54031,1,"La Semeuse",44.043838,7.298242,0,0,OZU:SA:CTP54030,Europe/Paris,,OZU, +OZU:SP:54046,1,"Roussillon",43.961957,7.153752,0,0,OZU:SA:CTP54046,Europe/Paris,,OZU, +OZU:SP:54047,1,"Roussillon",43.961516,7.154159,0,0,OZU:SA:CTP54046,Europe/Paris,,OZU, +OZU:SP:54061,1,"Rue 18bis",43.810417,7.182806,0,0,OZU:SA:CTP54061,Europe/Paris,,OZU, +OZU:SP:54088,1,"Pont Charles Albert",43.838186,7.19113,0,0,OZU:SA:CTP54088,Europe/Paris,,OZU, +OZU:SP:54089,1,"Pont Charles Albert",43.837946,7.194892,0,0,OZU:SA:CTP54089,Europe/Paris,,OZU, +OZU:SP:541,1,"Jean Lorrain",43.687195,7.295251,0,0,OZU:SA:CTP541,Europe/Paris,,OZU, +OZU:SP:54153,1,"Santoline",43.675313,7.201722,0,0,OZU:SA:CTP54153,Europe/Paris,,OZU, +OZU:SP:54154,1,"Santoline",43.675482,7.201364,0,0,OZU:SA:CTP54153,Europe/Paris,,OZU, +OZU:SP:54183,1,"Saint Sébastien",43.801321,7.181906,0,0,OZU:SA:CTP54183,Europe/Paris,,OZU, +OZU:SP:54184,1,"Saint Sébastien",43.801342,7.181833,0,0,OZU:SA:CTP54183,Europe/Paris,,OZU, +OZU:SP:54195,1,"Chemin des Sausses",43.757197,7.175166,0,0,OZU:SA:CTP54195,Europe/Paris,,OZU, +OZU:SP:54197,1,"Chemin des Sausses",43.757071,7.175189,0,0,OZU:SA:CTP54195,Europe/Paris,,OZU, +OZU:SP:542,1,"Jean Lorrain",43.68726,7.295258,0,0,OZU:SA:CTP541,Europe/Paris,,OZU, +OZU:SP:54227,1,"Les Sèlves",43.777983,7.20207,0,0,OZU:SA:CTP54227,Europe/Paris,,OZU, +OZU:SP:54228,1,"Les Sèlves",43.778206,7.202112,0,0,OZU:SA:CTP54227,Europe/Paris,,OZU, +OZU:SP:54266,1,"Bagneissore",43.74689,7.14995,0,0,OZU:SA:CTP54266,Europe/Paris,,OZU, +OZU:SP:54267,1,"Bagneissore",43.746855,7.149724,0,0,OZU:SA:CTP54266,Europe/Paris,,OZU, +OZU:SP:54270,1,"Le Brusquet",43.744543,7.146832,0,0,OZU:SA:CTP54270,Europe/Paris,,OZU, +OZU:SP:54271,1,"Le Brusquet",43.744007,7.146327,0,0,OZU:SA:CTP54270,Europe/Paris,,OZU, +OZU:SP:54273,1,"La Cabergue",43.748231,7.154014,0,0,OZU:SA:CTP54272,Europe/Paris,,OZU, +OZU:SP:54280,1,"Fongéri",43.743974,7.176784,0,0,OZU:SA:CTP54280,Europe/Paris,,OZU, +OZU:SP:54281,1,"Fongéri",43.743741,7.176553,0,0,OZU:SA:CTP54280,Europe/Paris,,OZU, +OZU:SP:54282,1,"La Fontonne",43.746014,7.147578,0,0,OZU:SA:CTP54282,Europe/Paris,,OZU, +OZU:SP:54283,1,"La Fontonne",43.74558,7.147404,0,0,OZU:SA:CTP54282,Europe/Paris,,OZU, +OZU:SP:54292,1,"St Jean La Rivière",43.919632,7.265014,0,0,OZU:SA:CTP21332,Europe/Paris,,OZU, +OZU:SP:54293,1,"Saint Jean La Rivière",43.9194,7.265557,0,0,OZU:SA:CTP54293,Europe/Paris,,OZU, +OZU:SP:54294,1,"Saint-Estève",43.74648,7.17855,0,0,OZU:SA:CTP54294,Europe/Paris,,OZU, +OZU:SP:54295,1,"Saint-Estève",43.746491,7.178302,0,0,OZU:SA:CTP54294,Europe/Paris,,OZU, +OZU:SP:543,1,"Jeanne Jugan",43.711435,7.280211,0,0,OZU:SA:CTP544,Europe/Paris,,OZU, +OZU:SP:54303,1,"Village",43.821958,7.191896,0,0,OZU:SA:CTP54303,Europe/Paris,,OZU, +OZU:SP:54309,1,"Saint Martin Vésubie Gare",44.070517,7.254049,0,0,OZU:SA:CTP54309,Europe/Paris,,OZU, +OZU:SP:544,1,"Jeanne Jugan",43.711399,7.279834,0,0,OZU:SA:CTP544,Europe/Paris,,OZU, +OZU:SP:54413,1,"Saint Dalmas",44.066397,7.201794,0,0,OZU:SA:CTP54413,Europe/Paris,,OZU, +OZU:SP:54414,1,"Saint Dalmas",44.066687,7.200953,0,0,OZU:SA:CTP54413,Europe/Paris,,OZU, +OZU:SP:54415,1,"Saint Etienne de Tinée",44.255372,6.926139,0,0,OZU:SA:CTP54415,Europe/Paris,,OZU, +OZU:SP:54422,1,"Saint-Joseph",44.064359,7.257374,0,0,OZU:SA:CTP54422,Europe/Paris,,OZU, +OZU:SP:54430,1,"Saint Maur",44.242457,6.937455,0,0,OZU:SA:CTP54430,Europe/Paris,,OZU, +OZU:SP:54431,1,"Saint Maur",44.243057,6.936904,0,0,OZU:SA:CTP54430,Europe/Paris,,OZU, +OZU:SP:54438,1,"Saint Michel",43.753908,7.170533,0,0,OZU:SA:CTP54438,Europe/Paris,,OZU, +OZU:SP:54439,1,"Saint Michel",43.753972,7.17009,0,0,OZU:SA:CTP54438,Europe/Paris,,OZU, +OZU:SP:54444,1,"Saint Paul",43.772628,7.194771,0,0,OZU:SA:CTP54444,Europe/Paris,,OZU, +OZU:SP:54445,1,"Saint Paul",43.772322,7.19456,0,0,OZU:SA:CTP54444,Europe/Paris,,OZU, +OZU:SP:54457,1,"Saint Sauveur sur Tinée",44.082349,7.105696,0,0,OZU:SA:CTP21408,Europe/Paris,,OZU, +OZU:SP:54458,1,"Saint Sauveur sur Tinée",44.083193,7.105331,0,0,OZU:SA:CTP21408,Europe/Paris,,OZU, +OZU:SP:54462,1,"Stade Tennis",43.766915,7.200243,0,0,OZU:SA:CTP54462,Europe/Paris,,OZU, +OZU:SP:54463,1,"Stade Tennis",43.766968,7.200068,0,0,OZU:SA:CTP54462,Europe/Paris,,OZU, +OZU:SP:54470,1,"Super Gattières",43.753907,7.161665,0,0,OZU:SA:CTP54470,Europe/Paris,,OZU, +OZU:SP:54476,1,"Le Suquet",43.941092,7.283548,0,0,OZU:SA:CTP54476,Europe/Paris,,OZU, +OZU:SP:54477,1,"Le Suquet",43.942406,7.282793,0,0,OZU:SA:CTP54476,Europe/Paris,,OZU, +OZU:SP:545,1,"Jeux de Boules",43.724256,7.239309,0,0,OZU:SA:CTP545,Europe/Paris,,OZU, +OZU:SP:546,1,"Jeux de Boules",43.724196,7.239466,0,0,OZU:SA:CTP545,Europe/Paris,,OZU, +OZU:SP:54606,1,"Le Touron",44.060656,7.259375,0,0,OZU:SA:CTP54606,Europe/Paris,,OZU, +OZU:SP:54607,1,"Le Touron",44.059968,7.259832,0,0,OZU:SA:CTP54606,Europe/Paris,,OZU, +OZU:SP:54610,1,"sur Tinée",43.93864,7.164667,0,0,OZU:SA:CTP54610,Europe/Paris,,OZU, +OZU:SP:54611,1,"sur Tinée",43.938559,7.164468,0,0,OZU:SA:CTP54610,Europe/Paris,,OZU, +OZU:SP:547,1,"Joseph Raybaud",43.727639,7.282362,0,0,OZU:SA:CTP547,Europe/Paris,,OZU, +OZU:SP:54754,1,"Gare",44.054666,7.121573,0,0,OZU:SA:CTP53944,Europe/Paris,,OZU, +OZU:SP:54759,1,"LES VALLIERES",43.825004,7.173383,0,0,OZU:SA:CTP54759,Europe/Paris,,OZU, +OZU:SP:54760,1,"LES VALLIERES",43.825399,7.172865,0,0,OZU:SA:CTP54759,Europe/Paris,,OZU, +OZU:SP:548,1,"Joseph Raybaud",43.72766,7.282302,0,0,OZU:SA:CTP547,Europe/Paris,,OZU, +OZU:SP:54864,1,"Le Villaron",44.049275,7.274549,0,0,OZU:SA:CTP21324,Europe/Paris,,OZU, +OZU:SP:54865,1,"Le Villaron",44.049274,7.275179,0,0,OZU:SA:CTP21324,Europe/Paris,,OZU, +OZU:SP:54873,1,"Village",44.072998,7.25219,0,0,OZU:SA:CTP54872,Europe/Paris,,OZU, +OZU:SP:54879,1,"RUE 8 / Avenue 1",43.782632,7.213858,0,0,OZU:SA:CTP54879,Europe/Paris,,OZU, +OZU:SP:549,1,"Jules Romains",43.737513,7.253035,0,0,OZU:SA:CTP549,Europe/Paris,,OZU, +OZU:SP:54977,1,"Anthony Mars",43.722171,7.114744,0,0,OZU:SA:CTP54977,Europe/Paris,,OZU, +OZU:SP:54978,1,"Anthony Mars",43.722258,7.114826,0,0,OZU:SA:CTP54977,Europe/Paris,,OZU, +OZU:SP:54996,1,"Colonel Meyère",43.721019,7.115355,0,0,OZU:SA:CTP54996,Europe/Paris,,OZU, +OZU:SP:54997,1,"Colonel Meyère",43.721098,7.115188,0,0,OZU:SA:CTP54996,Europe/Paris,,OZU, +OZU:SP:55,1,"Auvare",43.712926,7.288783,0,0,OZU:SA:CTP1591,Europe/Paris,,OZU, +OZU:SP:550,1,"Jules Romains",43.737772,7.252884,0,0,OZU:SA:CTP549,Europe/Paris,,OZU, +OZU:SP:55002,1,"Cadrans Solaires",43.71826,7.118886,0,0,OZU:SA:CTP55002,Europe/Paris,,OZU, +OZU:SP:55003,1,"Cadrans Solaires",43.718407,7.118823,0,0,OZU:SA:CTP55002,Europe/Paris,,OZU, +OZU:SP:55017,1,"Grand Jardin",43.722642,7.112039,0,0,OZU:SA:CTP55017,Europe/Paris,,OZU, +OZU:SP:55018,1,"Hôtel De Ville",43.722171,7.11313,0,0,OZU:SA:CTP55018,Europe/Paris,,OZU, +OZU:SP:55021,1,"Halte Routière de l'Ara",43.723001,7.107165,0,0,OZU:SA:CTP55021,Europe/Paris,,OZU, +OZU:SP:55031,1,"Le Caribou",43.726072,7.117766,0,0,OZU:SA:CTP55031,Europe/Paris,,OZU, +OZU:SP:55032,1,"Le Caribou",43.726173,7.117514,0,0,OZU:SA:CTP55031,Europe/Paris,,OZU, +OZU:SP:55034,1,"La Fontette",43.725071,7.113919,0,0,OZU:SA:CTP55034,Europe/Paris,,OZU, +OZU:SP:55035,1,"La Fontette",43.724938,7.113672,0,0,OZU:SA:CTP55034,Europe/Paris,,OZU, +OZU:SP:55038,1,"Les Mellières",43.716031,7.120424,0,0,OZU:SA:CTP55038,Europe/Paris,,OZU, +OZU:SP:55043,1,"Rocade",43.719435,7.112995,0,0,OZU:SA:CTP55043,Europe/Paris,,OZU, +OZU:SP:55046,1,"Le Suve",43.727269,7.121654,0,0,OZU:SA:CTP55046,Europe/Paris,,OZU, +OZU:SP:55073,1,"Le Peyron",43.743505,7.145875,0,0,OZU:SA:CTP3067,Europe/Paris,,OZU, +OZU:SP:55077,1,"Parking Toreille",43.722156,7.116518,0,0,OZU:SA:CTP55076,Europe/Paris,,OZU, +OZU:SP:55078,1,"Place Maréchal Juin",43.722996,7.108307,0,0,OZU:SA:CTP55078,Europe/Paris,,OZU, +OZU:SP:55091,1,"Parking Sainte-Anne",43.713732,7.118528,0,0,OZU:SA:CTP55091,Europe/Paris,,OZU, +OZU:SP:551,1,"Kennedy",43.729333,7.275257,0,0,OZU:SA:CTP551,Europe/Paris,,OZU, +OZU:SP:55105,1,"Val d'Azur",43.723105,7.116027,0,0,OZU:SA:CTP55105,Europe/Paris,,OZU, +OZU:SP:55106,1,"Val d'Azur",43.722993,7.116328,0,0,OZU:SA:CTP55105,Europe/Paris,,OZU, +OZU:SP:552,1,"Kennedy",43.72933,7.275504,0,0,OZU:SA:CTP551,Europe/Paris,,OZU, +OZU:SP:55233,1,"Vauban",43.708747,7.28558,0,0,OZU:SA:CTP2541,Europe/Paris,,OZU, +OZU:SP:55235,1,"Vauban",43.708639,7.286065,0,0,OZU:SA:CTP2541,Europe/Paris,,OZU, +OZU:SP:55236,1,"Vauban",43.708599,7.286151,0,0,OZU:SA:CTP2541,Europe/Paris,,OZU, +OZU:SP:55257,1,"Zone d'Activité",44.068556,7.255187,0,0,OZU:SA:CTP55257,Europe/Paris,,OZU, +OZU:SP:553,1,"La Batterie",43.735526,7.279073,0,0,OZU:SA:CTP554,Europe/Paris,,OZU, +OZU:SP:554,1,"La Batterie",43.735458,7.278967,0,0,OZU:SA:CTP554,Europe/Paris,,OZU, +OZU:SP:555,1,"La Bornala",43.693991,7.238244,0,0,OZU:SA:CTP138,Europe/Paris,,OZU, +OZU:SP:556,1,"Pont V.Auriol",43.715174,7.282769,0,0,OZU:SA:CTP556,Europe/Paris,,OZU, +OZU:SP:557,1,"La Brigue",43.713592,7.28427,0,0,OZU:SA:CTP557,Europe/Paris,,OZU, +OZU:SP:558,1,"La Carita",43.739172,7.274583,0,0,OZU:SA:CTP559,Europe/Paris,,OZU, +OZU:SP:559,1,"La Carita",43.739065,7.274548,0,0,OZU:SA:CTP559,Europe/Paris,,OZU, +OZU:SP:56,1,"Avenue de Champagne",43.726694,7.271115,0,0,OZU:SA:CTP57,Europe/Paris,,OZU, +OZU:SP:560,1,"La Carrière",43.704467,7.197857,0,0,OZU:SA:CTP560,Europe/Paris,,OZU, +OZU:SP:561,1,"La Carrière",43.704445,7.197982,0,0,OZU:SA:CTP560,Europe/Paris,,OZU, +OZU:SP:562,1,"La Chapelle / Sainte-Marguerite",43.686597,7.202878,0,0,OZU:SA:CTP562,Europe/Paris,,OZU, +OZU:SP:563,1,"La Chapelle / Sainte-Marguerite",43.68676,7.202712,0,0,OZU:SA:CTP562,Europe/Paris,,OZU, +OZU:SP:564,1,"La Chapelle",43.720924,7.296842,0,0,OZU:SA:CTP567,Europe/Paris,,OZU, +OZU:SP:565,1,"La Chapelle / Bellet",43.703476,7.227441,0,0,OZU:SA:CTP565,Europe/Paris,,OZU, +OZU:SP:566,1,"La Chapelle / Bellet",43.703368,7.227643,0,0,OZU:SA:CTP565,Europe/Paris,,OZU, +OZU:SP:567,1,"La Chapelle",43.720919,7.296768,0,0,OZU:SA:CTP567,Europe/Paris,,OZU, +OZU:SP:568,1,"La Chaumière",43.730611,7.285328,0,0,OZU:SA:CTP569,Europe/Paris,,OZU, +OZU:SP:569,1,"La Chaumière",43.730482,7.285404,0,0,OZU:SA:CTP569,Europe/Paris,,OZU, +OZU:SP:57,1,"Avenue de Champagne",43.726709,7.271166,0,0,OZU:SA:CTP57,Europe/Paris,,OZU, +OZU:SP:570,1,"Le Paillon",43.735967,7.30445,0,0,OZU:SA:CTP570,Europe/Paris,,OZU, +OZU:SP:571,1,"La Clinique",43.716355,7.228448,0,0,OZU:SA:CTP572,Europe/Paris,,OZU, +OZU:SP:572,1,"La Clinique",43.716241,7.228177,0,0,OZU:SA:CTP572,Europe/Paris,,OZU, +OZU:SP:573,1,"La Clua",43.726937,7.245751,0,0,OZU:SA:CTP573,Europe/Paris,,OZU, +OZU:SP:574,1,"La Clua",43.727123,7.245419,0,0,OZU:SA:CTP573,Europe/Paris,,OZU, +OZU:SP:575,1,"La Colle",43.707236,7.237509,0,0,OZU:SA:CTP575,Europe/Paris,,OZU, +OZU:SP:576,1,"La Colle",43.707664,7.237211,0,0,OZU:SA:CTP575,Europe/Paris,,OZU, +OZU:SP:577,1,"La Colline",43.698433,7.224847,0,0,OZU:SA:CTP577,Europe/Paris,,OZU, +OZU:SP:578,1,"La Colline",43.698476,7.22469,0,0,OZU:SA:CTP577,Europe/Paris,,OZU, +OZU:SP:579,1,"La Conque",43.707281,7.240468,0,0,OZU:SA:CTP579,Europe/Paris,,OZU, +OZU:SP:58,1,"Avenue Germaine",43.692375,7.29594,0,0,OZU:SA:CTP59,Europe/Paris,,OZU, +OZU:SP:580,1,"La Corniche",43.703733,7.241081,0,0,OZU:SA:CTP580,Europe/Paris,,OZU, +OZU:SP:581,1,"La Corniche",43.703707,7.24103,0,0,OZU:SA:CTP580,Europe/Paris,,OZU, +OZU:SP:582,1,"La Costière L",43.712395,7.22997,0,0,OZU:SA:CTP587,Europe/Paris,,OZU, +OZU:SP:583,1,"La Costière",43.726827,7.231682,0,0,OZU:SA:CTP583,Europe/Paris,,OZU, +OZU:SP:584,1,"La Costière",43.726846,7.231659,0,0,OZU:SA:CTP583,Europe/Paris,,OZU, +OZU:SP:585,1,"La Costière B",43.712921,7.23009,0,0,OZU:SA:CTP586,Europe/Paris,,OZU, +OZU:SP:586,1,"La Costière B",43.713028,7.229913,0,0,OZU:SA:CTP586,Europe/Paris,,OZU, +OZU:SP:587,1,"La Costière L",43.71181,7.229771,0,0,OZU:SA:CTP587,Europe/Paris,,OZU, +OZU:SP:588,1,"La Croix",43.704856,7.217032,0,0,OZU:SA:CTP589,Europe/Paris,,OZU, +OZU:SP:589,1,"La Croix",43.70472,7.217046,0,0,OZU:SA:CTP589,Europe/Paris,,OZU, +OZU:SP:59,1,"Avenue Germaine",43.692455,7.295898,0,0,OZU:SA:CTP59,Europe/Paris,,OZU, +OZU:SP:590,1,"La Croix de Gairaut",43.738505,7.255779,0,0,OZU:SA:CTP590,Europe/Paris,,OZU, +OZU:SP:591,1,"La Croix de Gairaut",43.738522,7.255619,0,0,OZU:SA:CTP590,Europe/Paris,,OZU, +OZU:SP:592,1,"La Demeure",43.71559,7.220051,0,0,OZU:SA:CTP592,Europe/Paris,,OZU, +OZU:SP:593,1,"La Demeure",43.715841,7.220072,0,0,OZU:SA:CTP592,Europe/Paris,,OZU, +OZU:SP:595,1,"La Digue",43.677436,7.203777,0,0,OZU:SA:CTP595,Europe/Paris,,OZU, +OZU:SP:596,1,"La Grangette",43.728667,7.26715,0,0,OZU:SA:CTP596,Europe/Paris,,OZU, +OZU:SP:597,1,"La Grangette",43.728769,7.267271,0,0,OZU:SA:CTP596,Europe/Paris,,OZU, +OZU:SP:598,1,"La Guinguette",43.720698,7.222955,0,0,OZU:SA:CTP599,Europe/Paris,,OZU, +OZU:SP:599,1,"La Guinguette",43.720731,7.222876,0,0,OZU:SA:CTP599,Europe/Paris,,OZU, +OZU:SP:6,1,"Acropolis / Barla",43.703323,7.280435,0,0,OZU:SA:CTP6,Europe/Paris,,OZU, +OZU:SP:60,1,"Avenue des Orangers",43.696533,7.251683,0,0,OZU:SA:CTP60,Europe/Paris,,OZU, +OZU:SP:600,1,"La Hune",43.701515,7.231395,0,0,OZU:SA:CTP600,Europe/Paris,,OZU, +OZU:SP:6001,1,"Aire Saint-Michel",43.743483,7.263551,0,0,OZU:SA:CTP6001,Europe/Paris,,OZU, +OZU:SP:6002,1,"Baou Rous",43.846736,7.197522,0,0,OZU:SA:CTP6002,Europe/Paris,,OZU, +OZU:SP:6003,1,"Village",43.784674,7.244245,0,0,OZU:SA:CTP6175,Europe/Paris,,OZU, +OZU:SP:6007,1,"Baou Rous",43.846495,7.197253,0,0,OZU:SA:CTP6002,Europe/Paris,,OZU, +OZU:SP:6009,1,"/ Les Moulins",43.790852,7.214813,0,0,OZU:SA:CTP6009,Europe/Paris,,OZU, +OZU:SP:601,1,"La Hune",43.701573,7.230879,0,0,OZU:SA:CTP600,Europe/Paris,,OZU, +OZU:SP:6010,1,"Village",43.790783,7.23122,0,0,OZU:SA:CTP6010,Europe/Paris,,OZU, +OZU:SP:6011,1,"Chemin de l'Eurier",43.805038,7.234076,0,0,OZU:SA:CTP6011,Europe/Paris,,OZU, +OZU:SP:6012,1,"Chemin de l'Eurier",43.805141,7.233998,0,0,OZU:SA:CTP6011,Europe/Paris,,OZU, +OZU:SP:6015,1,"Colle Germaine",43.756653,7.220568,0,0,OZU:SA:CTP6015,Europe/Paris,,OZU, +OZU:SP:6016,1,"Colle Germaine",43.756677,7.220421,0,0,OZU:SA:CTP6015,Europe/Paris,,OZU, +OZU:SP:6017,1,"Collet du Couvent",43.812425,7.227051,0,0,OZU:SA:CTP6018,Europe/Paris,,OZU, +OZU:SP:6018,1,"Collet du Couvent",43.81207,7.226946,0,0,OZU:SA:CTP6018,Europe/Paris,,OZU, +OZU:SP:6019,1,"La Manda",43.764223,7.205634,0,0,OZU:SA:CTP51296,Europe/Paris,,OZU, +OZU:SP:602,1,"La Lanterne",43.678662,7.227718,0,0,OZU:SA:CTP602,Europe/Paris,,OZU, +OZU:SP:6020,1,"La Manda",43.763916,7.204862,0,0,OZU:SA:CTP51296,Europe/Paris,,OZU, +OZU:SP:6021,1,"Village",43.764336,7.222942,0,0,OZU:SA:CTP6021,Europe/Paris,,OZU, +OZU:SP:6022,1,"Village",43.763545,7.222104,0,0,OZU:SA:CTP6021,Europe/Paris,,OZU, +OZU:SP:6023,1,"Corniche Laugier",43.754295,7.218539,0,0,OZU:SA:CTP6023,Europe/Paris,,OZU, +OZU:SP:6024,1,"Croix de Fer",43.814723,7.226651,0,0,OZU:SA:CTP6025,Europe/Paris,,OZU, +OZU:SP:6025,1,"Croix de Fer",43.814997,7.22675,0,0,OZU:SA:CTP6025,Europe/Paris,,OZU, +OZU:SP:6026,1,"Domaine de l'Aspre",43.76784,7.242073,0,0,OZU:SA:CTP6027,Europe/Paris,,OZU, +OZU:SP:6027,1,"Domaine de l'Aspre",43.767441,7.241926,0,0,OZU:SA:CTP6027,Europe/Paris,,OZU, +OZU:SP:6028,1,"Falicon",43.749714,7.279025,0,0,OZU:SA:CTP6028,Europe/Paris,,OZU, +OZU:SP:6030,1,"Fontaine d'Agneau",43.75411,7.218436,0,0,OZU:SA:CTP6030,Europe/Paris,,OZU, +OZU:SP:6031,1,"Fort Casal Colomars",43.765313,7.22366,0,0,OZU:SA:CTP6032,Europe/Paris,,OZU, +OZU:SP:6032,1,"Fort Casal Colomars",43.765369,7.223603,0,0,OZU:SA:CTP6032,Europe/Paris,,OZU, +OZU:SP:6033,1,"Fort Casal Colomars",43.765628,7.223662,0,0,OZU:SA:CTP6032,Europe/Paris,,OZU, +OZU:SP:6034,1,"Gipasse",43.80953,7.231341,0,0,OZU:SA:CTP6035,Europe/Paris,,OZU, +OZU:SP:6035,1,"Gipasse",43.809356,7.231003,0,0,OZU:SA:CTP6035,Europe/Paris,,OZU, +OZU:SP:6036,1,"Grand Duc",43.765718,7.242187,0,0,OZU:SA:CTP6036,Europe/Paris,,OZU, +OZU:SP:6037,1,"La Bastide",43.749244,7.264436,0,0,OZU:SA:CTP6037,Europe/Paris,,OZU, +OZU:SP:6038,1,"La Bastide",43.749279,7.264463,0,0,OZU:SA:CTP6037,Europe/Paris,,OZU, +OZU:SP:6039,1,"La Bégude",43.765333,7.23558,0,0,OZU:SA:CTP6039,Europe/Paris,,OZU, +OZU:SP:6040,1,"La Bégude",43.765355,7.235486,0,0,OZU:SA:CTP6039,Europe/Paris,,OZU, +OZU:SP:6041,1,"La Chapelle / Saint-Michel",43.752213,7.267276,0,0,OZU:SA:CTP6041,Europe/Paris,,OZU, +OZU:SP:6042,1,"La Chapelle / Saint-Michel",43.752214,7.267426,0,0,OZU:SA:CTP6041,Europe/Paris,,OZU, +OZU:SP:6044,1,"La Parisienne",43.834831,7.193257,0,0,OZU:SA:CTP6044,Europe/Paris,,OZU, +OZU:SP:6045,1,"La Plane",43.803623,7.234104,0,0,OZU:SA:CTP6045,Europe/Paris,,OZU, +OZU:SP:6046,1,"La Plane",43.803773,7.233955,0,0,OZU:SA:CTP6045,Europe/Paris,,OZU, +OZU:SP:6047,1,"La Ronde des Pins",43.744558,7.263309,0,0,OZU:SA:CTP6047,Europe/Paris,,OZU, +OZU:SP:6048,1,"La Ronde des Pins",43.74435,7.263329,0,0,OZU:SA:CTP6047,Europe/Paris,,OZU, +OZU:SP:6049,1,"Le Canet",43.794687,7.233918,0,0,OZU:SA:CTP6049,Europe/Paris,,OZU, +OZU:SP:605,1,"La Madeleine",43.708729,7.229791,0,0,OZU:SA:CTP1625,Europe/Paris,,OZU, +OZU:SP:6050,1,"Le Canet",43.794353,7.233964,0,0,OZU:SA:CTP6049,Europe/Paris,,OZU, +OZU:SP:6052,1,"Le Pilon",43.751285,7.216765,0,0,OZU:SA:CTP6052,Europe/Paris,,OZU, +OZU:SP:6053,1,"Le Pilon",43.751345,7.216923,0,0,OZU:SA:CTP6052,Europe/Paris,,OZU, +OZU:SP:6054,1,"Le Pilon d'Aspremont",43.752486,7.246799,0,0,OZU:SA:CTP6054,Europe/Paris,,OZU, +OZU:SP:6055,1,"Le Pilon d'Aspremont",43.752263,7.246755,0,0,OZU:SA:CTP6054,Europe/Paris,,OZU, +OZU:SP:6056,1,"Le Rigou",43.762405,7.24394,0,0,OZU:SA:CTP6057,Europe/Paris,,OZU, +OZU:SP:6057,1,"Le Rigou",43.762285,7.243991,0,0,OZU:SA:CTP6057,Europe/Paris,,OZU, +OZU:SP:6058,1,"Les Cabanes Blétonnières",43.755872,7.248582,0,0,OZU:SA:CTP6058,Europe/Paris,,OZU, +OZU:SP:6059,1,"Les Cabanes Blétonnières",43.756029,7.248087,0,0,OZU:SA:CTP6058,Europe/Paris,,OZU, +OZU:SP:606,1,"La Madonette",43.728336,7.27163,0,0,OZU:SA:CTP607,Europe/Paris,,OZU, +OZU:SP:6061,1,"Les Ecoles Falicon",43.749174,7.277823,0,0,OZU:SA:CTP6061,Europe/Paris,,OZU, +OZU:SP:6062,1,"Les Fontêtes",43.763873,7.243158,0,0,OZU:SA:CTP6062,Europe/Paris,,OZU, +OZU:SP:6063,1,"Les Serraires",43.759187,7.220301,0,0,OZU:SA:CTP6064,Europe/Paris,,OZU, +OZU:SP:6064,1,"Les Serraires",43.759253,7.220418,0,0,OZU:SA:CTP6064,Europe/Paris,,OZU, +OZU:SP:6066,1,"Les Templiers",43.772994,7.243586,0,0,OZU:SA:CTP6067,Europe/Paris,,OZU, +OZU:SP:6067,1,"Les Templiers",43.773954,7.243282,0,0,OZU:SA:CTP6067,Europe/Paris,,OZU, +OZU:SP:6068,1,"Les Tennis d'Aspremont",43.780482,7.244716,0,0,OZU:SA:CTP6093,Europe/Paris,,OZU, +OZU:SP:607,1,"La Madonette",43.728299,7.27144,0,0,OZU:SA:CTP607,Europe/Paris,,OZU, +OZU:SP:6070,1,"Lou Campoun",43.783209,7.247549,0,0,OZU:SA:CTP6070,Europe/Paris,,OZU, +OZU:SP:6071,1,"Marjole",43.761164,7.245871,0,0,OZU:SA:CTP6071,Europe/Paris,,OZU, +OZU:SP:6072,1,"Monval",43.760003,7.246069,0,0,OZU:SA:CTP6072,Europe/Paris,,OZU, +OZU:SP:6073,1,"Moulin de Saint-Blaise",43.820672,7.241109,0,0,OZU:SA:CTP6073,Europe/Paris,,OZU, +OZU:SP:6074,1,"Moulin de Saint-Blaise",43.820428,7.24013,0,0,OZU:SA:CTP6073,Europe/Paris,,OZU, +OZU:SP:6076,1,"Nécropole",43.771291,7.215102,0,0,OZU:SA:CTP6076,Europe/Paris,,OZU, +OZU:SP:6077,1,"Notre-Dame de la Paix",43.801279,7.233566,0,0,OZU:SA:CTP6077,Europe/Paris,,OZU, +OZU:SP:6078,1,"Notre-Dame de la Paix",43.80123,7.233437,0,0,OZU:SA:CTP6077,Europe/Paris,,OZU, +OZU:SP:6079,1,"Pont Charles Albert",43.838585,7.194728,0,0,OZU:SA:CTP54089,Europe/Paris,,OZU, +OZU:SP:608,1,"La Mairie",43.709152,7.223807,0,0,OZU:SA:CTP608,Europe/Paris,,OZU, +OZU:SP:6080,1,"Pont Charles Albert",43.838187,7.19113,0,0,OZU:SA:CTP54088,Europe/Paris,,OZU, +OZU:SP:6081,1,"Portion",43.795681,7.231082,0,0,OZU:SA:CTP6081,Europe/Paris,,OZU, +OZU:SP:6082,1,"Portion",43.795841,7.231133,0,0,OZU:SA:CTP6081,Europe/Paris,,OZU, +OZU:SP:6085,1,"Saint-André",43.817528,7.232938,0,0,OZU:SA:CTP6085,Europe/Paris,,OZU, +OZU:SP:6086,1,"Saint-André",43.817595,7.233043,0,0,OZU:SA:CTP6085,Europe/Paris,,OZU, +OZU:SP:6087,1,"Saint-Blaise",43.799869,7.204738,0,0,OZU:SA:CTP6087,Europe/Paris,,OZU, +OZU:SP:6088,1,"Saint-Joseph / Les Condamines",43.810797,7.190915,0,0,OZU:SA:CTP6088,Europe/Paris,,OZU, +OZU:SP:609,1,"La Mairie",43.709102,7.223913,0,0,OZU:SA:CTP608,Europe/Paris,,OZU, +OZU:SP:6090,1,"Village",43.820923,7.239525,0,0,OZU:SA:CTP6090,Europe/Paris,,OZU, +OZU:SP:6091,1,"Saint-Martin-du-Var Village",43.821959,7.191896,0,0,OZU:SA:CTP6091,Europe/Paris,,OZU, +OZU:SP:6093,1,"Les Tennis d'Aspremont",43.780341,7.244456,0,0,OZU:SA:CTP6093,Europe/Paris,,OZU, +OZU:SP:6094,1,"Tornéo",43.74798,7.263916,0,0,OZU:SA:CTP6094,Europe/Paris,,OZU, +OZU:SP:6095,1,"Tornéo",43.747689,7.263779,0,0,OZU:SA:CTP6094,Europe/Paris,,OZU, +OZU:SP:6096,1,"Trois Communes",43.799909,7.233572,0,0,OZU:SA:CTP6167,Europe/Paris,,OZU, +OZU:SP:6098,1,"Fougassière",43.763982,7.230382,0,0,OZU:SA:CTP6098,Europe/Paris,,OZU, +OZU:SP:6099,1,"Les Vallières",43.764757,7.226571,0,0,OZU:SA:CTP6099,Europe/Paris,,OZU, +OZU:SP:61,1,"Avenue des Poilus",43.723952,7.266033,0,0,OZU:SA:CTP61,Europe/Paris,,OZU, +OZU:SP:610,1,"La Marbrerie",43.717146,7.218694,0,0,OZU:SA:CTP610,Europe/Paris,,OZU, +OZU:SP:6100,1,"Les Vallières",43.764859,7.22653,0,0,OZU:SA:CTP6099,Europe/Paris,,OZU, +OZU:SP:6101,1,"Village",43.790449,7.231054,0,0,OZU:SA:CTP6010,Europe/Paris,,OZU, +OZU:SP:611,1,"La Marbrerie",43.716864,7.218571,0,0,OZU:SA:CTP610,Europe/Paris,,OZU, +OZU:SP:612,1,"La Massabella",43.700925,7.2215,0,0,OZU:SA:CTP612,Europe/Paris,,OZU, +OZU:SP:613,1,"La Massabella",43.700998,7.221307,0,0,OZU:SA:CTP612,Europe/Paris,,OZU, +OZU:SP:614,1,"La Mouta",43.742507,7.260684,0,0,OZU:SA:CTP614,Europe/Paris,,OZU, +OZU:SP:6144,1,"Corniche Laugier",43.761453,7.218183,0,0,OZU:SA:CTP6144,Europe/Paris,,OZU, +OZU:SP:6149,1,"Les Fréghières",43.765025,7.217201,0,0,OZU:SA:CTP6149,Europe/Paris,,OZU, +OZU:SP:615,1,"La Mouta",43.742519,7.260809,0,0,OZU:SA:CTP614,Europe/Paris,,OZU, +OZU:SP:6152,1,"La Loubière",43.806649,7.230521,0,0,OZU:SA:CTP6152,Europe/Paris,,OZU, +OZU:SP:6153,1,"La Loubière",43.806766,7.230332,0,0,OZU:SA:CTP6152,Europe/Paris,,OZU, +OZU:SP:6154,1,"Hauts de Saint-Michel",43.746296,7.263683,0,0,OZU:SA:CTP6154,Europe/Paris,,OZU, +OZU:SP:6155,1,"Hauts de Saint-Michel",43.746462,7.26361,0,0,OZU:SA:CTP6154,Europe/Paris,,OZU, +OZU:SP:6156,1,"Le Stade Falicon",43.749591,7.276977,0,0,OZU:SA:CTP6156,Europe/Paris,,OZU, +OZU:SP:6157,1,"Le Stade Falicon",43.749974,7.276674,0,0,OZU:SA:CTP6156,Europe/Paris,,OZU, +OZU:SP:6159,1,"Quartier Trinea",43.766559,7.235922,0,0,OZU:SA:CTP6159,Europe/Paris,,OZU, +OZU:SP:616,1,"La Pastorelle",43.68422,7.228284,0,0,OZU:SA:CTP617,Europe/Paris,,OZU, +OZU:SP:6160,1,"Les Romarins",43.769956,7.236487,0,0,OZU:SA:CTP6160,Europe/Paris,,OZU, +OZU:SP:6161,1,"Lou Nidou",43.775845,7.238337,0,0,OZU:SA:CTP6161,Europe/Paris,,OZU, +OZU:SP:6162,1,"Cimetière Sud",43.778024,7.239146,0,0,OZU:SA:CTP6162,Europe/Paris,,OZU, +OZU:SP:6163,1,"Le Clodolio",43.782509,7.240541,0,0,OZU:SA:CTP6163,Europe/Paris,,OZU, +OZU:SP:6164,1,"La Carriere / Apremont",43.781665,7.24365,0,0,OZU:SA:CTP6164,Europe/Paris,,OZU, +OZU:SP:6165,1,"Le Brec",43.792092,7.238742,0,0,OZU:SA:CTP6165,Europe/Paris,,OZU, +OZU:SP:6166,1,"Le Brec",43.791942,7.237661,0,0,OZU:SA:CTP6165,Europe/Paris,,OZU, +OZU:SP:6167,1,"Trois Communes",43.799621,7.233571,0,0,OZU:SA:CTP6167,Europe/Paris,,OZU, +OZU:SP:617,1,"La Pastorelle",43.684091,7.228321,0,0,OZU:SA:CTP617,Europe/Paris,,OZU, +OZU:SP:6173,1,"La Manda",43.763703,7.204993,0,0,OZU:SA:CTP51296,Europe/Paris,,OZU, +OZU:SP:6175,1,"Village",43.784599,7.243307,0,0,OZU:SA:CTP6175,Europe/Paris,,OZU, +OZU:SP:6176,1,"Village",43.784569,7.243168,0,0,OZU:SA:CTP6175,Europe/Paris,,OZU, +OZU:SP:6177,1,"Pont Charles Albert",43.837526,7.19405,0,0,OZU:SA:CTP54089,Europe/Paris,,OZU, +OZU:SP:618,1,"La Pignata",43.718725,7.310037,0,0,OZU:SA:CTP618,Europe/Paris,,OZU, +OZU:SP:619,1,"La Pignata",43.718845,7.309961,0,0,OZU:SA:CTP618,Europe/Paris,,OZU, +OZU:SP:62,1,"Avenue d'Alicante",43.693876,7.289194,0,0,OZU:SA:CTP63,Europe/Paris,,OZU, +OZU:SP:620,1,"La Pinède",43.698714,7.236541,0,0,OZU:SA:CTP620,Europe/Paris,,OZU, +OZU:SP:621,1,"La Pinède",43.698755,7.236643,0,0,OZU:SA:CTP620,Europe/Paris,,OZU, +OZU:SP:623,1,"La Poudrière",43.722533,7.217281,0,0,OZU:SA:CTP623,Europe/Paris,,OZU, +OZU:SP:624,1,"La Redoute",43.744322,7.249263,0,0,OZU:SA:CTP624,Europe/Paris,,OZU, +OZU:SP:625,1,"La Réserve",43.692023,7.291043,0,0,OZU:SA:CTP625,Europe/Paris,,OZU, +OZU:SP:626,1,"La Réserve",43.692062,7.291089,0,0,OZU:SA:CTP625,Europe/Paris,,OZU, +OZU:SP:627,1,"La Sablière",43.725043,7.267011,0,0,OZU:SA:CTP628,Europe/Paris,,OZU, +OZU:SP:628,1,"La Sablière",43.725046,7.266961,0,0,OZU:SA:CTP628,Europe/Paris,,OZU, +OZU:SP:629,1,"La Séréna",43.734433,7.278357,0,0,OZU:SA:CTP630,Europe/Paris,,OZU, +OZU:SP:63,1,"Avenue d'Alicante",43.693889,7.289143,0,0,OZU:SA:CTP63,Europe/Paris,,OZU, +OZU:SP:630,1,"La Séréna",43.734401,7.278266,0,0,OZU:SA:CTP630,Europe/Paris,,OZU, +OZU:SP:631,1,"La Sourelle",43.720268,7.252986,0,0,OZU:SA:CTP632,Europe/Paris,,OZU, +OZU:SP:632,1,"La Sourelle",43.720148,7.253038,0,0,OZU:SA:CTP632,Europe/Paris,,OZU, +OZU:SP:633,1,"La Sousta",43.714322,7.220389,0,0,OZU:SA:CTP633,Europe/Paris,,OZU, +OZU:SP:634,1,"La Sousta",43.715339,7.220216,0,0,OZU:SA:CTP633,Europe/Paris,,OZU, +OZU:SP:635,1,"La Tourelle",43.711681,7.216264,0,0,OZU:SA:CTP635,Europe/Paris,,OZU, +OZU:SP:636,1,"La Tourelle",43.711563,7.216291,0,0,OZU:SA:CTP635,Europe/Paris,,OZU, +OZU:SP:637,1,"La Vallière / Goiran",43.725663,7.249019,0,0,OZU:SA:CTP637,Europe/Paris,,OZU, +OZU:SP:638,1,"La Vallière / Goiran",43.725683,7.248971,0,0,OZU:SA:CTP637,Europe/Paris,,OZU, +OZU:SP:639,1,"La Vallière / Promenade",43.67079,7.223556,0,0,OZU:SA:CTP52768,Europe/Paris,,OZU, +OZU:SP:64,1,"Mont Alban",43.707055,7.297432,0,0,OZU:SA:CTP64,Europe/Paris,,OZU, +OZU:SP:640,1,"L'abadie",43.733222,7.28907,0,0,OZU:SA:CTP640,Europe/Paris,,OZU, +OZU:SP:641,1,"L'Abadie",43.733313,7.288668,0,0,OZU:SA:CTP641,Europe/Paris,,OZU, +OZU:SP:642,1,"Lacassagne",43.723872,7.281017,0,0,OZU:SA:CTP642,Europe/Paris,,OZU, +OZU:SP:643,1,"Lacassagne",43.723469,7.280994,0,0,OZU:SA:CTP642,Europe/Paris,,OZU, +OZU:SP:644,1,"L'Antenne",43.716992,7.219525,0,0,OZU:SA:CTP644,Europe/Paris,,OZU, +OZU:SP:645,1,"L'Antenne",43.717374,7.219446,0,0,OZU:SA:CTP644,Europe/Paris,,OZU, +OZU:SP:646,1,"Hôpital de l'Archet",43.69685,7.228176,0,0,OZU:SA:CTP646,Europe/Paris,,OZU, +OZU:SP:647,1,"L'Archet 1",43.697683,7.226497,0,0,OZU:SA:CTP647,Europe/Paris,,OZU, +OZU:SP:648,1,"L'Archet 2",43.697036,7.227248,0,0,OZU:SA:CTP649,Europe/Paris,,OZU, +OZU:SP:649,1,"L'Archet 2",43.697585,7.226873,0,0,OZU:SA:CTP649,Europe/Paris,,OZU, +OZU:SP:65,1,"Avenue Thérèse",43.722324,7.275469,0,0,OZU:SA:CTP66,Europe/Paris,,OZU, +OZU:SP:650,1,"L'Ariette",43.711613,7.250228,0,0,OZU:SA:CTP650,Europe/Paris,,OZU, +OZU:SP:651,1,"Las Planas / Sappia",43.729802,7.24832,0,0,OZU:SA:CTP651,Europe/Paris,,OZU, +OZU:SP:652,1,"L'Auberge",43.702519,7.298504,0,0,OZU:SA:CTP653,Europe/Paris,,OZU, +OZU:SP:653,1,"L'Auberge",43.702395,7.298481,0,0,OZU:SA:CTP653,Europe/Paris,,OZU, +OZU:SP:654,1,"Lavoir",43.728571,7.283848,0,0,OZU:SA:CTP654,Europe/Paris,,OZU, +OZU:SP:655,1,"Lavoir",43.728473,7.284024,0,0,OZU:SA:CTP654,Europe/Paris,,OZU, +OZU:SP:656,1,"Lazaret",43.696012,7.286417,0,0,OZU:SA:CTP656,Europe/Paris,,OZU, +OZU:SP:66,1,"Avenue Thérèse",43.723107,7.275697,0,0,OZU:SA:CTP66,Europe/Paris,,OZU, +OZU:SP:663,1,"Le Ciel de Nice",43.739741,7.251389,0,0,OZU:SA:CTP663,Europe/Paris,,OZU, +OZU:SP:664,1,"Le Ciel de Nice",43.739262,7.251621,0,0,OZU:SA:CTP663,Europe/Paris,,OZU, +OZU:SP:665,1,"Le Clara",43.727665,7.248161,0,0,OZU:SA:CTP665,Europe/Paris,,OZU, +OZU:SP:666,1,"Le Clara",43.727678,7.248075,0,0,OZU:SA:CTP665,Europe/Paris,,OZU, +OZU:SP:667,1,"Le Clos",43.688985,7.213674,0,0,OZU:SA:CTP667,Europe/Paris,,OZU, +OZU:SP:668,1,"Le Col",43.720887,7.227806,0,0,OZU:SA:CTP668,Europe/Paris,,OZU, +OZU:SP:669,1,"Le Col",43.72068,7.227577,0,0,OZU:SA:CTP668,Europe/Paris,,OZU, +OZU:SP:67,1,"Vauban / Université",43.710257,7.287881,0,0,OZU:SA:CTP1250,Europe/Paris,,OZU, +OZU:SP:670,1,"Le Foyer",43.700028,7.225407,0,0,OZU:SA:CTP670,Europe/Paris,,OZU, +OZU:SP:671,1,"Le Foyer",43.7004,7.224967,0,0,OZU:SA:CTP670,Europe/Paris,,OZU, +OZU:SP:672,1,"Le Génie",43.741887,7.239214,0,0,OZU:SA:CTP672,Europe/Paris,,OZU, +OZU:SP:673,1,"Le Génie",43.741791,7.239144,0,0,OZU:SA:CTP672,Europe/Paris,,OZU, +OZU:SP:674,1,"Le Génie / Bellet",43.740445,7.216904,0,0,OZU:SA:CTP1417,Europe/Paris,,OZU, +OZU:SP:675,1,"Le Gros Pin",43.728094,7.217783,0,0,OZU:SA:CTP489,Europe/Paris,,OZU, +OZU:SP:676,1,"Le Manoir",43.71892,7.246587,0,0,OZU:SA:CTP676,Europe/Paris,,OZU, +OZU:SP:677,1,"Le Manoir",43.71965,7.246775,0,0,OZU:SA:CTP676,Europe/Paris,,OZU, +OZU:SP:678,1,"Le Mas Saint-Pierre",43.713031,7.241982,0,0,OZU:SA:CTP678,Europe/Paris,,OZU, +OZU:SP:679,1,"Le Nid",43.707023,7.199279,0,0,OZU:SA:CTP680,Europe/Paris,,OZU, +OZU:SP:68,1,"Avenue Elisabeth",43.727058,7.275754,0,0,OZU:SA:CTP73,Europe/Paris,,OZU, +OZU:SP:680,1,"Le Nid",43.707009,7.199191,0,0,OZU:SA:CTP680,Europe/Paris,,OZU, +OZU:SP:681,1,"Le Palatin",43.689701,7.208995,0,0,OZU:SA:CTP681,Europe/Paris,,OZU, +OZU:SP:682,1,"Le Palatin",43.689671,7.209054,0,0,OZU:SA:CTP681,Europe/Paris,,OZU, +OZU:SP:683,1,"Le Panorama",43.716526,7.250689,0,0,OZU:SA:CTP683,Europe/Paris,,OZU, +OZU:SP:684,1,"Le Parc",43.723613,7.248146,0,0,OZU:SA:CTP684,Europe/Paris,,OZU, +OZU:SP:685,1,"Le Parc",43.723923,7.248061,0,0,OZU:SA:CTP684,Europe/Paris,,OZU, +OZU:SP:686,1,"Le Perchoir",43.7105,7.24637,0,0,OZU:SA:CTP686,Europe/Paris,,OZU, +OZU:SP:687,1,"Le Perchoir",43.710829,7.24564,0,0,OZU:SA:CTP686,Europe/Paris,,OZU, +OZU:SP:688,1,"Le Piol",43.70978,7.251125,0,0,OZU:SA:CTP688,Europe/Paris,,OZU, +OZU:SP:689,1,"Le Piol / Saint-Pierre",43.708961,7.247727,0,0,OZU:SA:CTP689,Europe/Paris,,OZU, +OZU:SP:69,1,"Avenue des Fleurs",43.698599,7.251215,0,0,OZU:SA:CTP71,Europe/Paris,,OZU, +OZU:SP:690,1,"Le Piol / Saint-Pierre",43.709147,7.247594,0,0,OZU:SA:CTP689,Europe/Paris,,OZU, +OZU:SP:691,1,"Le Piol",43.709808,7.25109,0,0,OZU:SA:CTP688,Europe/Paris,,OZU, +OZU:SP:692,1,"Le Plateau",43.73172,7.231197,0,0,OZU:SA:CTP692,Europe/Paris,,OZU, +OZU:SP:693,1,"Le Plateau",43.73197,7.231256,0,0,OZU:SA:CTP692,Europe/Paris,,OZU, +OZU:SP:694,1,"Le Pont",43.723817,7.227723,0,0,OZU:SA:CTP694,Europe/Paris,,OZU, +OZU:SP:695,1,"Le Pont",43.72407,7.227919,0,0,OZU:SA:CTP694,Europe/Paris,,OZU, +OZU:SP:696,1,"Le Pont / Dauphiné",43.703651,7.249839,0,0,OZU:SA:CTP1555,Europe/Paris,,OZU, +OZU:SP:697,1,"Le Port",43.699198,7.284697,0,0,OZU:SA:CTP697,Europe/Paris,,OZU, +OZU:SP:698,1,"Le Port",43.698721,7.284295,0,0,OZU:SA:CTP697,Europe/Paris,,OZU, +OZU:SP:7,1,"Aéro Habitat",43.671951,7.209797,0,0,OZU:SA:CTP1590,Europe/Paris,,OZU, +OZU:SP:70,1,"Avenue des Fleurs",43.698313,7.251339,0,0,OZU:SA:CTP71,Europe/Paris,,OZU, +OZU:SP:700,1,"Le Port",43.698706,7.28464,0,0,OZU:SA:CTP697,Europe/Paris,,OZU, +OZU:SP:7001,1,"La Barbe",43.806823,7.267635,0,0,OZU:SA:CTP7001,Europe/Paris,,OZU, +OZU:SP:7002,1,"La Barbe",43.806667,7.267684,0,0,OZU:SA:CTP7001,Europe/Paris,,OZU, +OZU:SP:7003,1,"Baccia Donna",43.748299,7.336702,0,0,OZU:SA:CTP7003,Europe/Paris,,OZU, +OZU:SP:7004,1,"Baccia Donna",43.748393,7.336424,0,0,OZU:SA:CTP7003,Europe/Paris,,OZU, +OZU:SP:7005,1,"Balzac",43.753377,7.309177,0,0,OZU:SA:CTP7005,Europe/Paris,,OZU, +OZU:SP:7006,1,"Balzac",43.753548,7.309179,0,0,OZU:SA:CTP7005,Europe/Paris,,OZU, +OZU:SP:7007,1,"Bertagnia",43.746723,7.322635,0,0,OZU:SA:CTP7007,Europe/Paris,,OZU, +OZU:SP:7008,1,"Brocarel",43.801443,7.271247,0,0,OZU:SA:CTP7008,Europe/Paris,,OZU, +OZU:SP:7009,1,"Brocarel",43.801101,7.271641,0,0,OZU:SA:CTP7008,Europe/Paris,,OZU, +OZU:SP:7010,1,"Buono",43.746673,7.31494,0,0,OZU:SA:CTP7010,Europe/Paris,,OZU, +OZU:SP:7012,1,"Camp Bollin",43.750699,7.380513,0,0,OZU:SA:CTP7012,Europe/Paris,,OZU, +OZU:SP:7013,1,"Camp Bollin",43.7505,7.37996,0,0,OZU:SA:CTP7012,Europe/Paris,,OZU, +OZU:SP:7014,1,"Cascade",43.855929,7.196392,0,0,OZU:SA:CTP7014,Europe/Paris,,OZU, +OZU:SP:7015,1,"Cascade",43.855938,7.196978,0,0,OZU:SA:CTP7014,Europe/Paris,,OZU, +OZU:SP:7016,1,"Castel Saint-Pierre",43.749392,7.375502,0,0,OZU:SA:CTP7016,Europe/Paris,,OZU, +OZU:SP:7017,1,"Castel Saint-Pierre",43.749383,7.375514,0,0,OZU:SA:CTP7016,Europe/Paris,,OZU, +OZU:SP:7018,1,"Chemin Pouchol",43.856725,7.231128,0,0,OZU:SA:CTP7018,Europe/Paris,,OZU, +OZU:SP:7019,1,"Chemin Pouchol",43.856707,7.230975,0,0,OZU:SA:CTP7018,Europe/Paris,,OZU, +OZU:SP:7020,1,"Les Chênes Verts B",43.748362,7.321859,0,0,OZU:SA:CTP7111,Europe/Paris,,OZU, +OZU:SP:7021,1,"Chênes Verts Delahaye",43.748839,7.324212,0,0,OZU:SA:CTP7021,Europe/Paris,,OZU, +OZU:SP:7022,1,"Cité du Soleil",43.739206,7.320598,0,0,OZU:SA:CTP7022,Europe/Paris,,OZU, +OZU:SP:7023,1,"Collège de la Bourgada",43.735868,7.311722,0,0,OZU:SA:CTP7023,Europe/Paris,,OZU, +OZU:SP:7024,1,"Collège de la Bourgada",43.735929,7.311752,0,0,OZU:SA:CTP7023,Europe/Paris,,OZU, +OZU:SP:7025,1,"Ecole La Plana",43.755072,7.310133,0,0,OZU:SA:CTP7025,Europe/Paris,,OZU, +OZU:SP:7026,1,"Ecole La Plana",43.755046,7.310281,0,0,OZU:SA:CTP7025,Europe/Paris,,OZU, +OZU:SP:7027,1,"Ecole Saint-Roch",43.859916,7.229322,0,0,OZU:SA:CTP7027,Europe/Paris,,OZU, +OZU:SP:7028,1,"Ecole Saint-Roch",43.85993,7.229199,0,0,OZU:SA:CTP7027,Europe/Paris,,OZU, +OZU:SP:7029,1,"Félix Faure",43.858811,7.230447,0,0,OZU:SA:CTP7029,Europe/Paris,,OZU, +OZU:SP:703,1,"Le Port Arson",43.698779,7.286361,0,0,OZU:SA:CTP703,Europe/Paris,,OZU, +OZU:SP:7031,1,"La Madone",43.850662,7.236379,0,0,OZU:SA:CTP7031,Europe/Paris,,OZU, +OZU:SP:7032,1,"La Madone",43.850676,7.236455,0,0,OZU:SA:CTP7031,Europe/Paris,,OZU, +OZU:SP:7033,1,"Gerles",43.741528,7.313223,0,0,OZU:SA:CTP7033,Europe/Paris,,OZU, +OZU:SP:7035,1,"Hameau de l'Oli",43.732938,7.309429,0,0,OZU:SA:CTP7035,Europe/Paris,,OZU, +OZU:SP:7036,1,"Jeu de Boules",43.858097,7.230311,0,0,OZU:SA:CTP7036,Europe/Paris,,OZU, +OZU:SP:7038,1,"La Clua",43.762676,7.282127,0,0,OZU:SA:CTP7038,Europe/Paris,,OZU, +OZU:SP:7039,1,"La Clua",43.76278,7.282036,0,0,OZU:SA:CTP7038,Europe/Paris,,OZU, +OZU:SP:704,1,"Le Président",43.692802,7.29319,0,0,OZU:SA:CTP705,Europe/Paris,,OZU, +OZU:SP:7040,1,"La Croix",43.734252,7.286638,0,0,OZU:SA:CTP7191,Europe/Paris,,OZU, +OZU:SP:7041,1,"La Fontaine",43.744855,7.29289,0,0,OZU:SA:CTP7042,Europe/Paris,,OZU, +OZU:SP:7042,1,"La Fontaine",43.744627,7.29297,0,0,OZU:SA:CTP7042,Europe/Paris,,OZU, +OZU:SP:7043,1,"La Nuit",43.737494,7.308882,0,0,OZU:SA:CTP7044,Europe/Paris,,OZU, +OZU:SP:7044,1,"La Nuit",43.737595,7.309028,0,0,OZU:SA:CTP7044,Europe/Paris,,OZU, +OZU:SP:7045,1,"La Piscine",43.743224,7.288002,0,0,OZU:SA:CTP7045,Europe/Paris,,OZU, +OZU:SP:7046,1,"La Piscine",43.742787,7.288088,0,0,OZU:SA:CTP7045,Europe/Paris,,OZU, +OZU:SP:7047,1,"La Plage",43.751366,7.310592,0,0,OZU:SA:CTP7047,Europe/Paris,,OZU, +OZU:SP:705,1,"Le Président",43.693382,7.293116,0,0,OZU:SA:CTP705,Europe/Paris,,OZU, +OZU:SP:7050,1,"La Plaine",43.738529,7.292203,0,0,OZU:SA:CTP7050,Europe/Paris,,OZU, +OZU:SP:7051,1,"La Plana Matisse",43.754364,7.313376,0,0,OZU:SA:CTP7051,Europe/Paris,,OZU, +OZU:SP:7052,1,"La Poste",43.791123,7.273145,0,0,OZU:SA:CTP7052,Europe/Paris,,OZU, +OZU:SP:7055,1,"La Trinité",43.741862,7.311637,0,0,OZU:SA:CTP7055,Europe/Paris,,OZU, +OZU:SP:7056,1,"La Trinité",43.742066,7.311903,0,0,OZU:SA:CTP7055,Europe/Paris,,OZU, +OZU:SP:7059,1,"La Vallière ZI",43.747977,7.285099,0,0,OZU:SA:CTP7190,Europe/Paris,,OZU, +OZU:SP:706,1,"Place Fontaine du Temple",43.725617,7.256193,0,0,OZU:SA:CTP710,Europe/Paris,,OZU, +OZU:SP:7060,1,"Langlet",43.751721,7.30974,0,0,OZU:SA:CTP7060,Europe/Paris,,OZU, +OZU:SP:7061,1,"Langlet",43.751964,7.310347,0,0,OZU:SA:CTP7060,Europe/Paris,,OZU, +OZU:SP:7062,1,"Laval",43.823976,7.261409,0,0,OZU:SA:CTP7062,Europe/Paris,,OZU, +OZU:SP:7063,1,"Laval",43.824137,7.261623,0,0,OZU:SA:CTP7062,Europe/Paris,,OZU, +OZU:SP:7064,1,"Laval Centre",43.826819,7.260075,0,0,OZU:SA:CTP7064,Europe/Paris,,OZU, +OZU:SP:7065,1,"Laval Centre",43.826915,7.259761,0,0,OZU:SA:CTP7064,Europe/Paris,,OZU, +OZU:SP:7066,1,"Laval Sud",43.822249,7.263139,0,0,OZU:SA:CTP7066,Europe/Paris,,OZU, +OZU:SP:7067,1,"Laval Sud",43.821305,7.263293,0,0,OZU:SA:CTP7066,Europe/Paris,,OZU, +OZU:SP:7068,1,"Lavelan",43.747898,7.349302,0,0,OZU:SA:CTP7068,Europe/Paris,,OZU, +OZU:SP:7069,1,"Lavelan",43.747897,7.348518,0,0,OZU:SA:CTP7068,Europe/Paris,,OZU, +OZU:SP:707,1,"Place Fontaine du Temple",43.725425,7.256239,0,0,OZU:SA:CTP710,Europe/Paris,,OZU, +OZU:SP:7070,1,"Le Broch",43.742387,7.29311,0,0,OZU:SA:CTP7071,Europe/Paris,,OZU, +OZU:SP:7071,1,"Le Broch",43.742292,7.293226,0,0,OZU:SA:CTP7071,Europe/Paris,,OZU, +OZU:SP:7072,1,"Le Caroubier",43.73625,7.290413,0,0,OZU:SA:CTP7072,Europe/Paris,,OZU, +OZU:SP:7073,1,"Le Caroubier",43.736322,7.290432,0,0,OZU:SA:CTP7072,Europe/Paris,,OZU, +OZU:SP:7074,1,"Le Cercle",43.76622,7.28067,0,0,OZU:SA:CTP7074,Europe/Paris,,OZU, +OZU:SP:7075,1,"Le Cercle",43.766585,7.280722,0,0,OZU:SA:CTP7074,Europe/Paris,,OZU, +OZU:SP:7076,1,"Le Colombier",43.811385,7.265755,0,0,OZU:SA:CTP7076,Europe/Paris,,OZU, +OZU:SP:7077,1,"Le Colombier",43.811336,7.265825,0,0,OZU:SA:CTP7076,Europe/Paris,,OZU, +OZU:SP:7078,1,"Le Frogier",43.788145,7.272917,0,0,OZU:SA:CTP7078,Europe/Paris,,OZU, +OZU:SP:7079,1,"Le Frogier",43.788248,7.273037,0,0,OZU:SA:CTP7078,Europe/Paris,,OZU, +OZU:SP:708,1,"Comte de Falicon",43.72796,7.255352,0,0,OZU:SA:CTP708,Europe/Paris,,OZU, +OZU:SP:7080,1,"Le Masage",43.7373,7.287177,0,0,OZU:SA:CTP7080,Europe/Paris,,OZU, +OZU:SP:7081,1,"Le Masage",43.737752,7.28714,0,0,OZU:SA:CTP7080,Europe/Paris,,OZU, +OZU:SP:7082,1,"Le Panto",43.741227,7.292885,0,0,OZU:SA:CTP7083,Europe/Paris,,OZU, +OZU:SP:7083,1,"Le Panto",43.741117,7.292911,0,0,OZU:SA:CTP7083,Europe/Paris,,OZU, +OZU:SP:7084,1,"Le Pascal",43.779351,7.275559,0,0,OZU:SA:CTP7084,Europe/Paris,,OZU, +OZU:SP:7085,1,"Le Pascal",43.778995,7.275851,0,0,OZU:SA:CTP7084,Europe/Paris,,OZU, +OZU:SP:7086,1,"Le Peloubier",43.840402,7.24546,0,0,OZU:SA:CTP7086,Europe/Paris,,OZU, +OZU:SP:7087,1,"Le Peloubier",43.840286,7.245335,0,0,OZU:SA:CTP7086,Europe/Paris,,OZU, +OZU:SP:7088,1,"Le Plan d'Ariou",43.803253,7.268892,0,0,OZU:SA:CTP7088,Europe/Paris,,OZU, +OZU:SP:7089,1,"Le Plan d'Ariou",43.804552,7.268445,0,0,OZU:SA:CTP7088,Europe/Paris,,OZU, +OZU:SP:709,1,"Place Fontaine du Temple",43.726095,7.255564,0,0,OZU:SA:CTP710,Europe/Paris,,OZU, +OZU:SP:7090,1,"Le Plantier",43.814355,7.265577,0,0,OZU:SA:CTP7090,Europe/Paris,,OZU, +OZU:SP:7091,1,"Le Plantier",43.813606,7.265226,0,0,OZU:SA:CTP7090,Europe/Paris,,OZU, +OZU:SP:7092,1,"Le Reveste",43.835339,7.250825,0,0,OZU:SA:CTP7092,Europe/Paris,,OZU, +OZU:SP:7093,1,"Le Reveste",43.835099,7.250859,0,0,OZU:SA:CTP7092,Europe/Paris,,OZU, +OZU:SP:7095,1,"Le Rondeau",43.750701,7.382415,0,0,OZU:SA:CTP20157,Europe/Paris,,OZU, +OZU:SP:7097,1,"Le Serre",43.748509,7.294935,0,0,OZU:SA:CTP7097,Europe/Paris,,OZU, +OZU:SP:7098,1,"Collège René Cassin",43.786201,7.271491,0,0,OZU:SA:CTP7098,Europe/Paris,,OZU, +OZU:SP:7099,1,"Collège René Cassin",43.78583,7.271745,0,0,OZU:SA:CTP7098,Europe/Paris,,OZU, +OZU:SP:71,1,"Avenue des Fleurs",43.697838,7.253285,0,0,OZU:SA:CTP71,Europe/Paris,,OZU, +OZU:SP:710,1,"Place Fontaine du Temple",43.725208,7.257449,0,0,OZU:SA:CTP710,Europe/Paris,,OZU, +OZU:SP:7100,1,"Le Tunnel",43.862701,7.225553,0,0,OZU:SA:CTP7100,Europe/Paris,,OZU, +OZU:SP:7101,1,"Le Tunnel",43.862519,7.225599,0,0,OZU:SA:CTP7100,Europe/Paris,,OZU, +OZU:SP:7102,1,"Le Verdaou",43.745103,7.293781,0,0,OZU:SA:CTP7102,Europe/Paris,,OZU, +OZU:SP:7103,1,"Le Verdaou",43.745,7.293884,0,0,OZU:SA:CTP7102,Europe/Paris,,OZU, +OZU:SP:7105,1,"L'Eglise",43.744013,7.31421,0,0,OZU:SA:CTP7105,Europe/Paris,,OZU, +OZU:SP:7106,1,"L'Eglise",43.741234,7.287792,0,0,OZU:SA:CTP7106,Europe/Paris,,OZU, +OZU:SP:7107,1,"L'Eglise",43.741138,7.28792,0,0,OZU:SA:CTP7106,Europe/Paris,,OZU, +OZU:SP:7109,1,"Les Chênes Verts",43.748917,7.320578,0,0,OZU:SA:CTP7233,Europe/Paris,,OZU, +OZU:SP:711,1,"Le Rouret",43.730596,7.253618,0,0,OZU:SA:CTP711,Europe/Paris,,OZU, +OZU:SP:7110,1,"Les Chênes Verts",43.74892,7.320516,0,0,OZU:SA:CTP7233,Europe/Paris,,OZU, +OZU:SP:7111,1,"Les Chênes Verts B",43.748361,7.321896,0,0,OZU:SA:CTP7111,Europe/Paris,,OZU, +OZU:SP:7112,1,"Les Cyprès",43.842007,7.244132,0,0,OZU:SA:CTP7112,Europe/Paris,,OZU, +OZU:SP:7113,1,"Les Cyprès",43.8419,7.244124,0,0,OZU:SA:CTP7112,Europe/Paris,,OZU, +OZU:SP:7114,1,"Les Gêmeaux",43.729755,7.301263,0,0,OZU:SA:CTP7115,Europe/Paris,,OZU, +OZU:SP:7115,1,"Les Gêmeaux",43.729724,7.301161,0,0,OZU:SA:CTP7115,Europe/Paris,,OZU, +OZU:SP:7116,1,"Les Glycines",43.734843,7.314242,0,0,OZU:SA:CTP7116,Europe/Paris,,OZU, +OZU:SP:7117,1,"Les Glycines",43.734701,7.314365,0,0,OZU:SA:CTP7116,Europe/Paris,,OZU, +OZU:SP:7118,1,"Les Iris",43.746074,7.324628,0,0,OZU:SA:CTP7118,Europe/Paris,,OZU, +OZU:SP:7119,1,"Les Lilas",43.739512,7.31378,0,0,OZU:SA:CTP7119,Europe/Paris,,OZU, +OZU:SP:712,1,"Le Rouret",43.73131,7.253791,0,0,OZU:SA:CTP711,Europe/Paris,,OZU, +OZU:SP:7120,1,"Les Lucioles (sur Ligne 86)",43.73892,7.312657,0,0,OZU:SA:CTP7120,Europe/Paris,,OZU, +OZU:SP:7121,1,"Les Moulins",43.85311,7.234013,0,0,OZU:SA:CTP7121,Europe/Paris,,OZU, +OZU:SP:7122,1,"Les Moulins",43.852671,7.234187,0,0,OZU:SA:CTP7121,Europe/Paris,,OZU, +OZU:SP:7123,1,"Les Moulins",43.772403,7.280164,0,0,OZU:SA:CTP7123,Europe/Paris,,OZU, +OZU:SP:7124,1,"Les Moulins",43.772498,7.280271,0,0,OZU:SA:CTP7123,Europe/Paris,,OZU, +OZU:SP:7125,1,"Les Pins",43.723562,7.30353,0,0,OZU:SA:CTP7126,Europe/Paris,,OZU, +OZU:SP:7126,1,"Les Pins",43.723512,7.30365,0,0,OZU:SA:CTP7126,Europe/Paris,,OZU, +OZU:SP:7128,1,"L'Oli",43.735384,7.306176,0,0,OZU:SA:CTP7128,Europe/Paris,,OZU, +OZU:SP:7129,1,"L'Oli",43.735394,7.306351,0,0,OZU:SA:CTP7128,Europe/Paris,,OZU, +OZU:SP:713,1,"Le Spagnol",43.696587,7.199469,0,0,OZU:SA:CTP713,Europe/Paris,,OZU, +OZU:SP:7130,1,"Maison de l'Enfance",43.735755,7.316544,0,0,OZU:SA:CTP7130,Europe/Paris,,OZU, +OZU:SP:7131,1,"Maison de l'Enfance",43.735996,7.316975,0,0,OZU:SA:CTP7130,Europe/Paris,,OZU, +OZU:SP:7132,1,"Négron",43.745133,7.322756,0,0,OZU:SA:CTP7132,Europe/Paris,,OZU, +OZU:SP:7133,1,"Négron",43.745098,7.321362,0,0,OZU:SA:CTP7132,Europe/Paris,,OZU, +OZU:SP:7134,1,"Ordalena",43.846355,7.239791,0,0,OZU:SA:CTP7134,Europe/Paris,,OZU, +OZU:SP:7135,1,"Ordalena",43.846317,7.239663,0,0,OZU:SA:CTP7134,Europe/Paris,,OZU, +OZU:SP:7136,1,"Parc Laval",43.825794,7.261045,0,0,OZU:SA:CTP7136,Europe/Paris,,OZU, +OZU:SP:7137,1,"Parc Laval",43.825712,7.260938,0,0,OZU:SA:CTP7136,Europe/Paris,,OZU, +OZU:SP:7138,1,"Parc Mauran",43.789259,7.27375,0,0,OZU:SA:CTP7138,Europe/Paris,,OZU, +OZU:SP:7139,1,"Parc Mauran",43.789274,7.273637,0,0,OZU:SA:CTP7138,Europe/Paris,,OZU, +OZU:SP:714,1,"Le Spagnol",43.696035,7.199719,0,0,OZU:SA:CTP713,Europe/Paris,,OZU, +OZU:SP:7140,1,"Place de Rebat",43.743647,7.31747,0,0,OZU:SA:CTP7140,Europe/Paris,,OZU, +OZU:SP:7141,1,"Place de Rebat",43.743893,7.3182,0,0,OZU:SA:CTP7140,Europe/Paris,,OZU, +OZU:SP:7142,1,"Place Jules Musso",43.739681,7.287495,0,0,OZU:SA:CTP7142,Europe/Paris,,OZU, +OZU:SP:7143,1,"Place Jules Musso",43.739698,7.28772,0,0,OZU:SA:CTP7142,Europe/Paris,,OZU, +OZU:SP:7144,1,"Plan de Couthon",43.818123,7.264893,0,0,OZU:SA:CTP7144,Europe/Paris,,OZU, +OZU:SP:7145,1,"Plan de Couthon",43.81846,7.264452,0,0,OZU:SA:CTP7144,Europe/Paris,,OZU, +OZU:SP:7146,1,"Plan du var",43.860533,7.198953,0,0,OZU:SA:CTP7146,Europe/Paris,,OZU, +OZU:SP:7147,1,"Plan du Var",43.858335,7.197158,0,0,OZU:SA:CTP52966,Europe/Paris,,OZU, +OZU:SP:7148,1,"Pont Anatole France",43.74112,7.310902,0,0,OZU:SA:CTP7148,Europe/Paris,,OZU, +OZU:SP:7149,1,"Pont Césaire Aube",43.736207,7.287442,0,0,OZU:SA:CTP7149,Europe/Paris,,OZU, +OZU:SP:715,1,"Le Vallonet",43.69828,7.199261,0,0,OZU:SA:CTP716,Europe/Paris,,OZU, +OZU:SP:7150,1,"Pont Césaire Aube",43.735936,7.287654,0,0,OZU:SA:CTP7149,Europe/Paris,,OZU, +OZU:SP:7151,1,"Pont de Figour",43.747598,7.331222,0,0,OZU:SA:CTP7151,Europe/Paris,,OZU, +OZU:SP:7152,1,"Pont de Figour",43.7476,7.331174,0,0,OZU:SA:CTP7151,Europe/Paris,,OZU, +OZU:SP:7153,1,"Pont de la Roma",43.743861,7.313974,0,0,OZU:SA:CTP7153,Europe/Paris,,OZU, +OZU:SP:7154,1,"Pont de l'Ariane",43.734096,7.301667,0,0,OZU:SA:CTP7155,Europe/Paris,,OZU, +OZU:SP:7155,1,"Pont de l'Ariane",43.734303,7.302666,0,0,OZU:SA:CTP7155,Europe/Paris,,OZU, +OZU:SP:7156,1,"Pont Liprandi",43.745781,7.287243,0,0,OZU:SA:CTP7156,Europe/Paris,,OZU, +OZU:SP:7157,1,"Pont Liprandi",43.746025,7.287611,0,0,OZU:SA:CTP7156,Europe/Paris,,OZU, +OZU:SP:7158,1,"Pré des Cavaliers",43.849398,7.237427,0,0,OZU:SA:CTP7158,Europe/Paris,,OZU, +OZU:SP:7159,1,"Pré des Cavaliers",43.848798,7.237761,0,0,OZU:SA:CTP7158,Europe/Paris,,OZU, +OZU:SP:716,1,"Le Vallonet",43.698237,7.19938,0,0,OZU:SA:CTP716,Europe/Paris,,OZU, +OZU:SP:7160,1,"Quartier du Château",43.744491,7.288063,0,0,OZU:SA:CTP7160,Europe/Paris,,OZU, +OZU:SP:7161,1,"Riba Roussa",43.733225,7.294337,0,0,OZU:SA:CTP7161,Europe/Paris,,OZU, +OZU:SP:7162,1,"Riba Roussa",43.733196,7.294558,0,0,OZU:SA:CTP7161,Europe/Paris,,OZU, +OZU:SP:7163,1,"Roland",43.7482,7.344918,0,0,OZU:SA:CTP7163,Europe/Paris,,OZU, +OZU:SP:7164,1,"Roland",43.748393,7.344612,0,0,OZU:SA:CTP7163,Europe/Paris,,OZU, +OZU:SP:7165,1,"Rostit",43.736519,7.319108,0,0,OZU:SA:CTP7165,Europe/Paris,,OZU, +OZU:SP:7166,1,"Rostit",43.7368,7.319082,0,0,OZU:SA:CTP7165,Europe/Paris,,OZU, +OZU:SP:7167,1,"Route de Laghet",43.740824,7.311099,0,0,OZU:SA:CTP7167,Europe/Paris,,OZU, +OZU:SP:7168,1,"Route de Laghet",43.741359,7.311581,0,0,OZU:SA:CTP7167,Europe/Paris,,OZU, +OZU:SP:7169,1,"Saint-Antoine",43.793491,7.273604,0,0,OZU:SA:CTP7169,Europe/Paris,,OZU, +OZU:SP:7170,1,"Saint-Aubert",43.730684,7.297718,0,0,OZU:SA:CTP7171,Europe/Paris,,OZU, +OZU:SP:7171,1,"Saint-Aubert",43.730702,7.297707,0,0,OZU:SA:CTP7171,Europe/Paris,,OZU, +OZU:SP:7172,1,"Saint-Martin",43.815337,7.265177,0,0,OZU:SA:CTP7172,Europe/Paris,,OZU, +OZU:SP:7173,1,"Saint-Martin",43.816249,7.265343,0,0,OZU:SA:CTP7172,Europe/Paris,,OZU, +OZU:SP:7174,1,"Sainte-Anne",43.738686,7.309782,0,0,OZU:SA:CTP7175,Europe/Paris,,OZU, +OZU:SP:7175,1,"Sainte-Anne",43.738624,7.309776,0,0,OZU:SA:CTP7175,Europe/Paris,,OZU, +OZU:SP:7176,1,"Sainte-Claire",43.836205,7.247364,0,0,OZU:SA:CTP7184,Europe/Paris,,OZU, +OZU:SP:7178,1,"Sanctuaire",43.753298,7.382533,0,0,OZU:SA:CTP20150,Europe/Paris,,OZU, +OZU:SP:7179,1,"Saint-Antoine",43.793438,7.272567,0,0,OZU:SA:CTP7169,Europe/Paris,,OZU, +OZU:SP:718,1,"Lei Domi",43.719816,7.194796,0,0,OZU:SA:CTP718,Europe/Paris,,OZU, +OZU:SP:7181,1,"Stade de l'Oli",43.733892,7.306518,0,0,OZU:SA:CTP7181,Europe/Paris,,OZU, +OZU:SP:7182,1,"Stalingrad",43.740725,7.313451,0,0,OZU:SA:CTP7182,Europe/Paris,,OZU, +OZU:SP:7183,1,"Saint-André-de-la-Roche",43.748871,7.284245,0,0,OZU:SA:CTP7183,Europe/Paris,,OZU, +OZU:SP:7184,1,"Sainte-Claire",43.836929,7.246281,0,0,OZU:SA:CTP7184,Europe/Paris,,OZU, +OZU:SP:7185,1,"Village",43.787775,7.275879,0,0,OZU:SA:CTP7185,Europe/Paris,,OZU, +OZU:SP:7186,1,"Viaduc de l'Oli",43.732136,7.308278,0,0,OZU:SA:CTP7186,Europe/Paris,,OZU, +OZU:SP:7189,1,"Village",43.86008,7.22633,0,0,OZU:SA:CTP7189,Europe/Paris,,OZU, +OZU:SP:719,1,"L'Ensouleiadou",43.71235,7.251036,0,0,OZU:SA:CTP719,Europe/Paris,,OZU, +OZU:SP:7190,1,"La Vallière ZI",43.748026,7.285017,0,0,OZU:SA:CTP7190,Europe/Paris,,OZU, +OZU:SP:7191,1,"La Croix",43.734367,7.286513,0,0,OZU:SA:CTP7191,Europe/Paris,,OZU, +OZU:SP:7197,1,"Place de Rebat",43.743672,7.317522,0,0,OZU:SA:CTP7140,Europe/Paris,,OZU, +OZU:SP:72,1,"Avenue des Orangers",43.696796,7.251445,0,0,OZU:SA:CTP60,Europe/Paris,,OZU, +OZU:SP:720,1,"Lenval / Promenade",43.689057,7.241792,0,0,OZU:SA:CTP723,Europe/Paris,,OZU, +OZU:SP:7201,1,"Route de Laghet",43.741385,7.31162,0,0,OZU:SA:CTP7167,Europe/Paris,,OZU, +OZU:SP:7202,1,"Beauséjour",43.854594,7.232365,0,0,OZU:SA:CTP7202,Europe/Paris,,OZU, +OZU:SP:7203,1,"Beauséjour",43.854615,7.232214,0,0,OZU:SA:CTP7202,Europe/Paris,,OZU, +OZU:SP:7204,1,"La Colle",43.753182,7.287688,0,0,OZU:SA:CTP7204,Europe/Paris,,OZU, +OZU:SP:7205,1,"La Tuve",43.749883,7.293451,0,0,OZU:SA:CTP7205,Europe/Paris,,OZU, +OZU:SP:7206,1,"La Vierge",43.75406,7.296053,0,0,OZU:SA:CTP7206,Europe/Paris,,OZU, +OZU:SP:7207,1,"Le Mortier",43.751739,7.291874,0,0,OZU:SA:CTP7207,Europe/Paris,,OZU, +OZU:SP:7208,1,"L'Ecole",43.752396,7.295609,0,0,OZU:SA:CTP7208,Europe/Paris,,OZU, +OZU:SP:7209,1,"Les Ardouins",43.753051,7.291529,0,0,OZU:SA:CTP7209,Europe/Paris,,OZU, +OZU:SP:7210,1,"Nartière Supérieure",43.751249,7.290366,0,0,OZU:SA:CTP7210,Europe/Paris,,OZU, +OZU:SP:7211,1,"Ophidie",43.747995,7.289647,0,0,OZU:SA:CTP7211,Europe/Paris,,OZU, +OZU:SP:7213,1,"Staou Inférieur",43.749449,7.295451,0,0,OZU:SA:CTP7213,Europe/Paris,,OZU, +OZU:SP:7214,1,"Deloye",43.754279,7.309554,0,0,OZU:SA:CTP7214,Europe/Paris,,OZU, +OZU:SP:7215,1,"Ecole des Chênes Verts",43.749104,7.322371,0,0,OZU:SA:CTP7215,Europe/Paris,,OZU, +OZU:SP:7216,1,"Ecole des Chênes Verts",43.749069,7.322367,0,0,OZU:SA:CTP7215,Europe/Paris,,OZU, +OZU:SP:7217,1,"Galipette",43.738126,7.319795,0,0,OZU:SA:CTP7218,Europe/Paris,,OZU, +OZU:SP:7218,1,"Galipette",43.738116,7.319831,0,0,OZU:SA:CTP7218,Europe/Paris,,OZU, +OZU:SP:7219,1,"Les Chênes Verts A",43.749684,7.321329,0,0,OZU:SA:CTP7220,Europe/Paris,,OZU, +OZU:SP:7220,1,"Les Chênes Verts A",43.74969,7.321391,0,0,OZU:SA:CTP7220,Europe/Paris,,OZU, +OZU:SP:7221,1,"Vieux ch.de Laghet",43.744141,7.317887,0,0,OZU:SA:CTP7221,Europe/Paris,,OZU, +OZU:SP:7222,1,"Voie Romaine",43.745256,7.319114,0,0,OZU:SA:CTP7222,Europe/Paris,,OZU, +OZU:SP:723,1,"Lenval / Promenade",43.688569,7.241402,0,0,OZU:SA:CTP723,Europe/Paris,,OZU, +OZU:SP:7233,1,"Les Chênes Verts",43.748784,7.320542,0,0,OZU:SA:CTP7233,Europe/Paris,,OZU, +OZU:SP:7238,1,"Nartière Inférieure",43.749296,7.288966,0,0,OZU:SA:CTP7238,Europe/Paris,,OZU, +OZU:SP:724,1,"Lenval Pouponnière",43.708175,7.212724,0,0,OZU:SA:CTP724,Europe/Paris,,OZU, +OZU:SP:725,1,"Lenval Pouponnière",43.708248,7.213313,0,0,OZU:SA:CTP724,Europe/Paris,,OZU, +OZU:SP:7253,1,"G.S. D. Delahaye",43.739144,7.314716,0,0,OZU:SA:CTP7253,Europe/Paris,,OZU, +OZU:SP:7255,1,"Pablo Picasso",43.75424,7.314122,0,0,OZU:SA:CTP7255,Europe/Paris,,OZU, +OZU:SP:7256,1,"La Plaine",43.738488,7.292285,0,0,OZU:SA:CTP7050,Europe/Paris,,OZU, +OZU:SP:726,1,"Léon Bertrand",43.674995,7.22357,0,0,OZU:SA:CTP1557,Europe/Paris,,OZU, +OZU:SP:7262,1,"La Tuve",43.749851,7.293374,0,0,OZU:SA:CTP7205,Europe/Paris,,OZU, +OZU:SP:7267,1,"La Grotte",43.748532,7.285768,0,0,OZU:SA:CTP7267,Europe/Paris,,OZU, +OZU:SP:7268,1,"La Grotte",43.748043,7.286036,0,0,OZU:SA:CTP7267,Europe/Paris,,OZU, +OZU:SP:7269,1,"Pont de la Roma",43.74465,7.314862,0,0,OZU:SA:CTP7153,Europe/Paris,,OZU, +OZU:SP:7271,1,"Stade du Rostit",43.734589,7.319119,0,0,OZU:SA:CTP7271,Europe/Paris,,OZU, +OZU:SP:7272,1,"L'ESPERANCE",43.737302,7.321382,0,0,OZU:SA:CTP7272,Europe/Paris,,OZU, +OZU:SP:7273,1,"Rue Haute",43.737549,7.320639,0,0,OZU:SA:CTP7273,Europe/Paris,,OZU, +OZU:SP:728,1,"Léopold",43.713644,7.271685,0,0,OZU:SA:CTP730,Europe/Paris,,OZU, +OZU:SP:729,1,"Léopold",43.71321,7.271536,0,0,OZU:SA:CTP730,Europe/Paris,,OZU, +OZU:SP:73,1,"Avenue Elisabeth",43.727319,7.275763,0,0,OZU:SA:CTP73,Europe/Paris,,OZU, +OZU:SP:730,1,"Léopold",43.712395,7.274173,0,0,OZU:SA:CTP730,Europe/Paris,,OZU, +OZU:SP:731,1,"Léopold",43.711933,7.274231,0,0,OZU:SA:CTP730,Europe/Paris,,OZU, +OZU:SP:732,1,"L'Epingle",43.703408,7.242295,0,0,OZU:SA:CTP1418,Europe/Paris,,OZU, +OZU:SP:733,1,"Les Palmiers / Saint-Pierre",43.71227,7.239892,0,0,OZU:SA:CTP733,Europe/Paris,,OZU, +OZU:SP:734,1,"Les Arboras",43.691387,7.195748,0,0,OZU:SA:CTP735,Europe/Paris,,OZU, +OZU:SP:735,1,"Les Arboras",43.691251,7.195364,0,0,OZU:SA:CTP735,Europe/Paris,,OZU, +OZU:SP:737,1,"Les Baraques",43.696812,7.190836,0,0,OZU:SA:CTP2650,Europe/Paris,,OZU, +OZU:SP:738,1,"Les Bassins",43.736357,7.279429,0,0,OZU:SA:CTP740,Europe/Paris,,OZU, +OZU:SP:74,1,"Avenue Fracchia",43.71271,7.295878,0,0,OZU:SA:CTP75,Europe/Paris,,OZU, +OZU:SP:740,1,"Les Bassins",43.736778,7.279069,0,0,OZU:SA:CTP740,Europe/Paris,,OZU, +OZU:SP:741,1,"Les Baumettes",43.696035,7.248748,0,0,OZU:SA:CTP741,Europe/Paris,,OZU, +OZU:SP:743,1,"Les Beaumonts",43.746026,7.251409,0,0,OZU:SA:CTP743,Europe/Paris,,OZU, +OZU:SP:744,1,"Les Belles Terres",43.68597,7.214459,0,0,OZU:SA:CTP744,Europe/Paris,,OZU, +OZU:SP:745,1,"Les Belles Terres",43.68588,7.214228,0,0,OZU:SA:CTP744,Europe/Paris,,OZU, +OZU:SP:746,1,"Les Bosquets",43.681726,7.231047,0,0,OZU:SA:CTP747,Europe/Paris,,OZU, +OZU:SP:747,1,"Les Bosquets",43.681555,7.230846,0,0,OZU:SA:CTP747,Europe/Paris,,OZU, +OZU:SP:748,1,"Les Cèdres",43.720516,7.267153,0,0,OZU:SA:CTP748,Europe/Paris,,OZU, +OZU:SP:749,1,"Les Cèdres",43.721088,7.268022,0,0,OZU:SA:CTP748,Europe/Paris,,OZU, +OZU:SP:75,1,"Avenue Fracchia",43.712632,7.296008,0,0,OZU:SA:CTP75,Europe/Paris,,OZU, +OZU:SP:750,1,"Les Cerisiers",43.710443,7.229306,0,0,OZU:SA:CTP750,Europe/Paris,,OZU, +OZU:SP:751,1,"Les Cerisiers",43.710746,7.22881,0,0,OZU:SA:CTP750,Europe/Paris,,OZU, +OZU:SP:752,1,"Les chasseurs",43.730402,7.269972,0,0,OZU:SA:CTP752,Europe/Paris,,OZU, +OZU:SP:753,1,"Les Chasseurs",43.730315,7.269691,0,0,OZU:SA:CTP753,Europe/Paris,,OZU, +OZU:SP:754,1,"Les Chênes",43.719735,7.293895,0,0,OZU:SA:CTP754,Europe/Paris,,OZU, +OZU:SP:756,1,"Les Chênes / Las Planas",43.728154,7.248911,0,0,OZU:SA:CTP756,Europe/Paris,,OZU, +OZU:SP:757,1,"Les Chênes / Las Planas",43.728203,7.248829,0,0,OZU:SA:CTP756,Europe/Paris,,OZU, +OZU:SP:758,1,"Les Cigales",43.740359,7.236747,0,0,OZU:SA:CTP759,Europe/Paris,,OZU, +OZU:SP:759,1,"Les Cigales",43.740428,7.236815,0,0,OZU:SA:CTP759,Europe/Paris,,OZU, +OZU:SP:76,1,"Azura Park",43.69238,7.210713,0,0,OZU:SA:CTP76,Europe/Paris,,OZU, +OZU:SP:760,1,"Les Cliniques",43.702753,7.252344,0,0,OZU:SA:CTP760,Europe/Paris,,OZU, +OZU:SP:761,1,"Les Cliniques",43.702835,7.252537,0,0,OZU:SA:CTP760,Europe/Paris,,OZU, +OZU:SP:762,1,"Les Clos de Cimiez",43.727435,7.273017,0,0,OZU:SA:CTP762,Europe/Paris,,OZU, +OZU:SP:763,1,"Les Clos de Cimiez",43.727732,7.272434,0,0,OZU:SA:CTP762,Europe/Paris,,OZU, +OZU:SP:766,1,"Les Cougourdons",43.736201,7.232502,0,0,OZU:SA:CTP766,Europe/Paris,,OZU, +OZU:SP:767,1,"Les Cougourdons",43.735957,7.232529,0,0,OZU:SA:CTP766,Europe/Paris,,OZU, +OZU:SP:768,1,"Les Crêtes / Carnot",43.691789,7.294467,0,0,OZU:SA:CTP769,Europe/Paris,,OZU, +OZU:SP:769,1,"Les Crêtes / Carnot",43.691982,7.294185,0,0,OZU:SA:CTP769,Europe/Paris,,OZU, +OZU:SP:77,1,"Azura Park",43.692309,7.21067,0,0,OZU:SA:CTP76,Europe/Paris,,OZU, +OZU:SP:770,1,"Les Crêtes / Oliviers",43.739194,7.234237,0,0,OZU:SA:CTP770,Europe/Paris,,OZU, +OZU:SP:771,1,"Les Crêtes / Oliviers",43.73924,7.23439,0,0,OZU:SA:CTP770,Europe/Paris,,OZU, +OZU:SP:772,1,"Les Dahlias",43.7308,7.24935,0,0,OZU:SA:CTP772,Europe/Paris,,OZU, +OZU:SP:773,1,"Les Dahlias",43.730768,7.249261,0,0,OZU:SA:CTP772,Europe/Paris,,OZU, +OZU:SP:774,1,"Les Ecoles",43.725279,7.288267,0,0,OZU:SA:CTP774,Europe/Paris,,OZU, +OZU:SP:775,1,"Les Ecoles",43.725504,7.288101,0,0,OZU:SA:CTP774,Europe/Paris,,OZU, +OZU:SP:776,1,"Les Etoiles",43.703392,7.235093,0,0,OZU:SA:CTP777,Europe/Paris,,OZU, +OZU:SP:777,1,"Les Etoiles",43.703464,7.23469,0,0,OZU:SA:CTP777,Europe/Paris,,OZU, +OZU:SP:778,1,"Les Eucalyptus",43.675602,7.220681,0,0,OZU:SA:CTP779,Europe/Paris,,OZU, +OZU:SP:779,1,"Les Eucalyptus",43.675704,7.220603,0,0,OZU:SA:CTP779,Europe/Paris,,OZU, +OZU:SP:78,1,"Azurelle",43.684652,7.216716,0,0,OZU:SA:CTP78,Europe/Paris,,OZU, +OZU:SP:780,1,"Les Freesias",43.70094,7.203798,0,0,OZU:SA:CTP781,Europe/Paris,,OZU, +OZU:SP:781,1,"Les Freesias",43.700931,7.203799,0,0,OZU:SA:CTP781,Europe/Paris,,OZU, +OZU:SP:782,1,"Les Genêts",43.729996,7.245817,0,0,OZU:SA:CTP783,Europe/Paris,,OZU, +OZU:SP:783,1,"Les Genêts",43.729985,7.246075,0,0,OZU:SA:CTP783,Europe/Paris,,OZU, +OZU:SP:784,1,"Les Géraniums",43.731695,7.238734,0,0,OZU:SA:CTP784,Europe/Paris,,OZU, +OZU:SP:785,1,"Les Géraniums",43.731009,7.238563,0,0,OZU:SA:CTP784,Europe/Paris,,OZU, +OZU:SP:786,1,"Les Glycines",43.724985,7.270855,0,0,OZU:SA:CTP786,Europe/Paris,,OZU, +OZU:SP:787,1,"Les Glycines",43.724862,7.270981,0,0,OZU:SA:CTP786,Europe/Paris,,OZU, +OZU:SP:788,1,"Les Hespérides",43.692067,7.307052,0,0,OZU:SA:CTP788,Europe/Paris,,OZU, +OZU:SP:789,1,"Les Hespérides",43.691621,7.307054,0,0,OZU:SA:CTP788,Europe/Paris,,OZU, +OZU:SP:79,1,"Azurelle",43.68439,7.217116,0,0,OZU:SA:CTP78,Europe/Paris,,OZU, +OZU:SP:790,1,"Les Immeubles",43.698857,7.235386,0,0,OZU:SA:CTP790,Europe/Paris,,OZU, +OZU:SP:791,1,"Les Immeubles",43.698672,7.235693,0,0,OZU:SA:CTP790,Europe/Paris,,OZU, +OZU:SP:792,1,"Les Lilas",43.719347,7.265499,0,0,OZU:SA:CTP792,Europe/Paris,,OZU, +OZU:SP:793,1,"Les Lilas",43.719179,7.265459,0,0,OZU:SA:CTP792,Europe/Paris,,OZU, +OZU:SP:794,1,"Les Liserons",43.705449,7.295295,0,0,OZU:SA:CTP794,Europe/Paris,,OZU, +OZU:SP:795,1,"Les Ménestrels",43.712742,7.279218,0,0,OZU:SA:CTP796,Europe/Paris,,OZU, +OZU:SP:796,1,"Les Ménestrels",43.712914,7.279208,0,0,OZU:SA:CTP796,Europe/Paris,,OZU, +OZU:SP:797,1,"Les Néreïdes",43.686689,7.29512,0,0,OZU:SA:CTP797,Europe/Paris,,OZU, +OZU:SP:798,1,"Les Néreïdes",43.686918,7.294825,0,0,OZU:SA:CTP797,Europe/Paris,,OZU, +OZU:SP:799,1,"Les Noisetiers",43.726049,7.264911,0,0,OZU:SA:CTP799,Europe/Paris,,OZU, +OZU:SP:8,1,"Aéroport / Promenade",43.666224,7.211367,0,0,OZU:SA:CTP50044,Europe/Paris,,OZU, +OZU:SP:80,1,"Balcons Parc Impérial",43.704191,7.24687,0,0,OZU:SA:CTP80,Europe/Paris,,OZU, +OZU:SP:800,1,"Les Œillets",43.731986,7.249813,0,0,OZU:SA:CTP801,Europe/Paris,,OZU, +OZU:SP:8001,1,"Ange Gardien",43.703017,7.324286,0,0,OZU:SA:CTP8001,Europe/Paris,,OZU, +OZU:SP:8002,1,"Ange Gardien",43.703437,7.323124,0,0,OZU:SA:CTP8001,Europe/Paris,,OZU, +OZU:SP:8003,1,"Baie des Fourmis",43.702886,7.329606,0,0,OZU:SA:CTP8003,Europe/Paris,,OZU, +OZU:SP:8004,1,"Baie des Fourmis",43.702957,7.329541,0,0,OZU:SA:CTP8003,Europe/Paris,,OZU, +OZU:SP:8005,1,"Barnessa",43.730568,7.377214,0,0,OZU:SA:CTP8005,Europe/Paris,,OZU, +OZU:SP:8006,1,"Barnessa",43.730513,7.377073,0,0,OZU:SA:CTP8005,Europe/Paris,,OZU, +OZU:SP:8007,1,"Bautugan",43.725488,7.39963,0,0,OZU:SA:CTP8007,Europe/Paris,,OZU, +OZU:SP:8008,1,"Beaverbrook",43.72315,7.397038,0,0,OZU:SA:CTP8008,Europe/Paris,,OZU, +OZU:SP:8009,1,"Bois Joli",43.720714,7.397268,0,0,OZU:SA:CTP8009,Europe/Paris,,OZU, +OZU:SP:801,1,"Les Œillets",43.731706,7.250012,0,0,OZU:SA:CTP801,Europe/Paris,,OZU, +OZU:SP:8010,1,"Cap Roux",43.719387,7.351908,0,0,OZU:SA:CTP8010,Europe/Paris,,OZU, +OZU:SP:8011,1,"Cap Roux",43.719812,7.352442,0,0,OZU:SA:CTP8010,Europe/Paris,,OZU, +OZU:SP:8012,1,"Cauvin",43.703248,7.30672,0,0,OZU:SA:CTP8012,Europe/Paris,,OZU, +OZU:SP:8014,1,"Cercle des Salines",43.728814,7.410161,0,0,OZU:SA:CTP8014,Europe/Paris,,OZU, +OZU:SP:8015,1,"Chemin des Eucalyptus",43.725247,7.398932,0,0,OZU:SA:CTP8015,Europe/Paris,,OZU, +OZU:SP:8016,1,"Chemin des Eucalyptus",43.725339,7.398802,0,0,OZU:SA:CTP8015,Europe/Paris,,OZU, +OZU:SP:8017,1,"Chapelle Saint-Laurent",43.728511,7.380796,0,0,OZU:SA:CTP8017,Europe/Paris,,OZU, +OZU:SP:8018,1,"Chapelle Saint-Laurent",43.728329,7.380643,0,0,OZU:SA:CTP8017,Europe/Paris,,OZU, +OZU:SP:8019,1,"Charles Blanc",43.722894,7.395439,0,0,OZU:SA:CTP8019,Europe/Paris,,OZU, +OZU:SP:802,1,"Les Oliviers",43.712989,7.240538,0,0,OZU:SA:CTP802,Europe/Paris,,OZU, +OZU:SP:8020,1,"Château Balzan",43.729186,7.368781,0,0,OZU:SA:CTP8020,Europe/Paris,,OZU, +OZU:SP:8022,1,"Château de l'Aighetta",43.733275,7.356772,0,0,OZU:SA:CTP8022,Europe/Paris,,OZU, +OZU:SP:8023,1,"Château de l'Aighetta",43.732869,7.355619,0,0,OZU:SA:CTP8022,Europe/Paris,,OZU, +OZU:SP:8024,1,"Chemin Romain",43.725137,7.401537,0,0,OZU:SA:CTP8025,Europe/Paris,,OZU, +OZU:SP:8025,1,"Chemin Romain",43.72528,7.401377,0,0,OZU:SA:CTP8025,Europe/Paris,,OZU, +OZU:SP:8026,1,"Cimetière / Beaulieu",43.704177,7.309262,0,0,OZU:SA:CTP8026,Europe/Paris,,OZU, +OZU:SP:8027,1,"Cimetière de Cap-d'Ail",43.724893,7.402708,0,0,OZU:SA:CTP8027,Europe/Paris,,OZU, +OZU:SP:8028,1,"Col de Villefranche",43.706524,7.301721,0,0,OZU:SA:CTP263,Europe/Paris,,OZU, +OZU:SP:8029,1,"Col de Villefranche",43.706495,7.301583,0,0,OZU:SA:CTP263,Europe/Paris,,OZU, +OZU:SP:803,1,"Les Oliviers",43.712865,7.240477,0,0,OZU:SA:CTP802,Europe/Paris,,OZU, +OZU:SP:8030,1,"Col de Villefranche",43.706268,7.301438,0,0,OZU:SA:CTP263,Europe/Paris,,OZU, +OZU:SP:8031,1,"Col des 4 Chemins",43.716604,7.312882,0,0,OZU:SA:CTP264,Europe/Paris,,OZU, +OZU:SP:8032,1,"Col d'Eze",43.733969,7.346833,0,0,OZU:SA:CTP8032,Europe/Paris,,OZU, +OZU:SP:8033,1,"Col d'Eze",43.733711,7.346984,0,0,OZU:SA:CTP8032,Europe/Paris,,OZU, +OZU:SP:8036,1,"Les Cigognes",43.722153,7.396403,0,0,OZU:SA:CTP8036,Europe/Paris,,OZU, +OZU:SP:8037,1,"Les Cigognes",43.721996,7.396265,0,0,OZU:SA:CTP8036,Europe/Paris,,OZU, +OZU:SP:8038,1,"David",43.716712,7.349947,0,0,OZU:SA:CTP8038,Europe/Paris,,OZU, +OZU:SP:8039,1,"David",43.718397,7.350132,0,0,OZU:SA:CTP8038,Europe/Paris,,OZU, +OZU:SP:804,1,"Les Oliviers / Fabron",43.689587,7.219126,0,0,OZU:SA:CTP804,Europe/Paris,,OZU, +OZU:SP:8043,1,"Edmond's Cap-d'Ail",43.723011,7.39586,0,0,OZU:SA:CTP8043,Europe/Paris,,OZU, +OZU:SP:8044,1,"Escalier du Camping",43.726508,7.409173,0,0,OZU:SA:CTP8044,Europe/Paris,,OZU, +OZU:SP:8045,1,"Escaliers de Verre",43.695697,7.304999,0,0,OZU:SA:CTP8045,Europe/Paris,,OZU, +OZU:SP:8047,1,"Village",43.729911,7.361717,0,0,OZU:SA:CTP8047,Europe/Paris,,OZU, +OZU:SP:8048,1,"Village",43.729931,7.361494,0,0,OZU:SA:CTP8047,Europe/Paris,,OZU, +OZU:SP:8049,1,"Village",43.729956,7.361348,0,0,OZU:SA:CTP8047,Europe/Paris,,OZU, +OZU:SP:805,1,"Les Oliviers / Fabron",43.689544,7.219071,0,0,OZU:SA:CTP804,Europe/Paris,,OZU, +OZU:SP:8050,1,"F.Ferry",43.705541,7.303356,0,0,OZU:SA:CTP8050,Europe/Paris,,OZU, +OZU:SP:8051,1,"F.Ferry",43.705537,7.303065,0,0,OZU:SA:CTP8050,Europe/Paris,,OZU, +OZU:SP:8052,1,"Ferme de May",43.688438,7.332409,0,0,OZU:SA:CTP8052,Europe/Paris,,OZU, +OZU:SP:8053,1,"G.S. Gianton",43.734061,7.352455,0,0,OZU:SA:CTP8053,Europe/Paris,,OZU, +OZU:SP:8054,1,"G.S. Gianton",43.734019,7.351794,0,0,OZU:SA:CTP8053,Europe/Paris,,OZU, +OZU:SP:8055,1,"Gare SNCF Cap d'Ail",43.72078,7.394356,0,0,OZU:SA:CTP8055,Europe/Paris,,OZU, +OZU:SP:8056,1,"Gare SNCF Beaulieu-sur-Mer",43.706285,7.33156,0,0,OZU:SA:CTP8056,Europe/Paris,,OZU, +OZU:SP:8057,1,"Gare SNCF Eze",43.722601,7.356786,0,0,OZU:SA:CTP8057,Europe/Paris,,OZU, +OZU:SP:8058,1,"Gare SNCF Eze",43.722801,7.357338,0,0,OZU:SA:CTP8057,Europe/Paris,,OZU, +OZU:SP:8059,1,"Gianton",43.724141,7.381972,0,0,OZU:SA:CTP8060,Europe/Paris,,OZU, +OZU:SP:806,1,"Les Olympiades",43.685244,7.203311,0,0,OZU:SA:CTP807,Europe/Paris,,OZU, +OZU:SP:8060,1,"Gianton",43.724173,7.381864,0,0,OZU:SA:CTP8060,Europe/Paris,,OZU, +OZU:SP:8061,1,"Guillaume Apollinaire",43.721947,7.398471,0,0,OZU:SA:CTP8061,Europe/Paris,,OZU, +OZU:SP:8062,1,"Hermitage",43.703821,7.306742,0,0,OZU:SA:CTP8062,Europe/Paris,,OZU, +OZU:SP:8063,1,"Horizon",43.710814,7.305398,0,0,OZU:SA:CTP8063,Europe/Paris,,OZU, +OZU:SP:8064,1,"Horizon",43.710827,7.30571,0,0,OZU:SA:CTP8063,Europe/Paris,,OZU, +OZU:SP:8065,1,"Hôtel de Ville",43.72249,7.407486,0,0,OZU:SA:CTP8065,Europe/Paris,,OZU, +OZU:SP:8066,1,"Hôtel de Ville",43.722676,7.40677,0,0,OZU:SA:CTP8065,Europe/Paris,,OZU, +OZU:SP:8067,1,"Hôtel de Ville",43.702562,7.310898,0,0,OZU:SA:CTP8067,Europe/Paris,,OZU, +OZU:SP:8068,1,"Hôtel de Ville",43.702506,7.311104,0,0,OZU:SA:CTP8067,Europe/Paris,,OZU, +OZU:SP:8069,1,"Joffre",43.706259,7.328612,0,0,OZU:SA:CTP8069,Europe/Paris,,OZU, +OZU:SP:807,1,"Les Olympiades",43.684841,7.203318,0,0,OZU:SA:CTP807,Europe/Paris,,OZU, +OZU:SP:8070,1,"Kerylos",43.704867,7.333152,0,0,OZU:SA:CTP8070,Europe/Paris,,OZU, +OZU:SP:8071,1,"La Valléria",43.731319,7.380846,0,0,OZU:SA:CTP8071,Europe/Paris,,OZU, +OZU:SP:8072,1,"La Barmassa",43.70601,7.309741,0,0,OZU:SA:CTP8073,Europe/Paris,,OZU, +OZU:SP:8073,1,"La Barmassa",43.705795,7.310096,0,0,OZU:SA:CTP8073,Europe/Paris,,OZU, +OZU:SP:8074,1,"La Calade",43.720689,7.341876,0,0,OZU:SA:CTP8074,Europe/Paris,,OZU, +OZU:SP:8075,1,"La Calade",43.720841,7.342672,0,0,OZU:SA:CTP8074,Europe/Paris,,OZU, +OZU:SP:8076,1,"La Candellera",43.714549,7.311932,0,0,OZU:SA:CTP8077,Europe/Paris,,OZU, +OZU:SP:8077,1,"La Candellera",43.715188,7.313703,0,0,OZU:SA:CTP8077,Europe/Paris,,OZU, +OZU:SP:8078,1,"La Corne d'Or",43.706856,7.307064,0,0,OZU:SA:CTP8078,Europe/Paris,,OZU, +OZU:SP:8079,1,"La Corne d'Or",43.707338,7.307143,0,0,OZU:SA:CTP8078,Europe/Paris,,OZU, +OZU:SP:8080,1,"La Jeunesse",43.703184,7.307856,0,0,OZU:SA:CTP8080,Europe/Paris,,OZU, +OZU:SP:8081,1,"La Léopolda",43.709864,7.317247,0,0,OZU:SA:CTP8081,Europe/Paris,,OZU, +OZU:SP:8082,1,"La Léopolda",43.709931,7.317154,0,0,OZU:SA:CTP8081,Europe/Paris,,OZU, +OZU:SP:8083,1,"La Pinède",43.70707,7.304153,0,0,OZU:SA:CTP8083,Europe/Paris,,OZU, +OZU:SP:8084,1,"La Pinède",43.706885,7.30426,0,0,OZU:SA:CTP8083,Europe/Paris,,OZU, +OZU:SP:8087,1,"La Poste",43.703439,7.309872,0,0,OZU:SA:CTP8087,Europe/Paris,,OZU, +OZU:SP:8088,1,"La Poste",43.703436,7.309847,0,0,OZU:SA:CTP8087,Europe/Paris,,OZU, +OZU:SP:8089,1,"La Rade",43.696601,7.327533,0,0,OZU:SA:CTP8089,Europe/Paris,,OZU, +OZU:SP:809,1,"Les Oudaias",43.679249,7.210521,0,0,OZU:SA:CTP809,Europe/Paris,,OZU, +OZU:SP:8090,1,"La Rade",43.69681,7.327338,0,0,OZU:SA:CTP8089,Europe/Paris,,OZU, +OZU:SP:8091,1,"La Source",43.721942,7.399563,0,0,OZU:SA:CTP8091,Europe/Paris,,OZU, +OZU:SP:8092,1,"La Valléria",43.731186,7.380772,0,0,OZU:SA:CTP8071,Europe/Paris,,OZU, +OZU:SP:8093,1,"La Vigie",43.709058,7.304201,0,0,OZU:SA:CTP8093,Europe/Paris,,OZU, +OZU:SP:8094,1,"La Vigie",43.70894,7.304229,0,0,OZU:SA:CTP8093,Europe/Paris,,OZU, +OZU:SP:8095,1,"Le Cap / Albert 1er",43.692079,7.32914,0,0,OZU:SA:CTP8132,Europe/Paris,,OZU, +OZU:SP:8096,1,"Le Castellet",43.709663,7.309842,0,0,OZU:SA:CTP8096,Europe/Paris,,OZU, +OZU:SP:8097,1,"Le Castellet",43.710071,7.311939,0,0,OZU:SA:CTP8096,Europe/Paris,,OZU, +OZU:SP:8098,1,"Le Loup Blanc",43.724619,7.40896,0,0,OZU:SA:CTP8098,Europe/Paris,,OZU, +OZU:SP:81,1,"Balcons Parc Impérial",43.703914,7.246994,0,0,OZU:SA:CTP80,Europe/Paris,,OZU, +OZU:SP:810,1,"Les Oudaias",43.678875,7.210625,0,0,OZU:SA:CTP809,Europe/Paris,,OZU, +OZU:SP:8101,1,"L'Eden",43.721805,7.394893,0,0,OZU:SA:CTP8101,Europe/Paris,,OZU, +OZU:SP:8102,1,"L'Eglise",43.721814,7.403532,0,0,OZU:SA:CTP8102,Europe/Paris,,OZU, +OZU:SP:8103,1,"L'Eglise",43.72199,7.404673,0,0,OZU:SA:CTP8102,Europe/Paris,,OZU, +OZU:SP:8106,1,"Léopold II",43.706993,7.312291,0,0,OZU:SA:CTP8106,Europe/Paris,,OZU, +OZU:SP:8107,1,"Léopold II",43.70808,7.312983,0,0,OZU:SA:CTP8106,Europe/Paris,,OZU, +OZU:SP:8108,1,"Les Caroubiers",43.712266,7.32004,0,0,OZU:SA:CTP8108,Europe/Paris,,OZU, +OZU:SP:8109,1,"Les Caroubiers",43.711407,7.319915,0,0,OZU:SA:CTP8108,Europe/Paris,,OZU, +OZU:SP:811,1,"Les Palmiers / Mont Boron",43.703402,7.296545,0,0,OZU:SA:CTP811,Europe/Paris,,OZU, +OZU:SP:8110,1,"Les Cistes",43.726924,7.397622,0,0,OZU:SA:CTP8110,Europe/Paris,,OZU, +OZU:SP:8111,1,"Les Cistes",43.726968,7.397627,0,0,OZU:SA:CTP8110,Europe/Paris,,OZU, +OZU:SP:8113,1,"Les Flots Bleus",43.730368,7.365857,0,0,OZU:SA:CTP8113,Europe/Paris,,OZU, +OZU:SP:8114,1,"Les Flots Bleus",43.730322,7.365665,0,0,OZU:SA:CTP8113,Europe/Paris,,OZU, +OZU:SP:8115,1,"Les Genêts",43.725855,7.400421,0,0,OZU:SA:CTP8115,Europe/Paris,,OZU, +OZU:SP:8119,1,"Les Terrasses",43.723639,7.394288,0,0,OZU:SA:CTP8120,Europe/Paris,,OZU, +OZU:SP:812,1,"Les Palmiers / Mont Boron",43.703269,7.296496,0,0,OZU:SA:CTP811,Europe/Paris,,OZU, +OZU:SP:8120,1,"Les Terrasses",43.723512,7.394191,0,0,OZU:SA:CTP8120,Europe/Paris,,OZU, +OZU:SP:8121,1,"Liberté",43.726606,7.411223,0,0,OZU:SA:CTP8121,Europe/Paris,,OZU, +OZU:SP:8123,1,"Madonne Noire",43.707339,7.316331,0,0,OZU:SA:CTP8123,Europe/Paris,,OZU, +OZU:SP:8124,1,"Mairie",43.691607,7.332796,0,0,OZU:SA:CTP8124,Europe/Paris,,OZU, +OZU:SP:8125,1,"Maison de Retraite",43.704528,7.307667,0,0,OZU:SA:CTP8125,Europe/Paris,,OZU, +OZU:SP:8127,1,"Montée du Rêve",43.703372,7.326665,0,0,OZU:SA:CTP8127,Europe/Paris,,OZU, +OZU:SP:8128,1,"Oasis",43.719984,7.338728,0,0,OZU:SA:CTP8128,Europe/Paris,,OZU, +OZU:SP:8129,1,"Octroi",43.702532,7.308205,0,0,OZU:SA:CTP8129,Europe/Paris,,OZU, +OZU:SP:813,1,"Les Palmiers / Bellet",43.70486,7.225114,0,0,OZU:SA:CTP813,Europe/Paris,,OZU, +OZU:SP:8130,1,"Octroi",43.702207,7.307997,0,0,OZU:SA:CTP8129,Europe/Paris,,OZU, +OZU:SP:8131,1,"Marinoni",43.70949,7.33081,0,0,OZU:SA:CTP8181,Europe/Paris,,OZU, +OZU:SP:8132,1,"Le Cap / Albert 1er",43.692082,7.329043,0,0,OZU:SA:CTP8132,Europe/Paris,,OZU, +OZU:SP:8133,1,"Panorama",43.71274,7.307789,0,0,OZU:SA:CTP8133,Europe/Paris,,OZU, +OZU:SP:8134,1,"Panorama",43.712923,7.308314,0,0,OZU:SA:CTP8133,Europe/Paris,,OZU, +OZU:SP:8135,1,"Parc Rivièra",43.733764,7.348939,0,0,OZU:SA:CTP8135,Europe/Paris,,OZU, +OZU:SP:8136,1,"Parc Rivièra",43.733566,7.348922,0,0,OZU:SA:CTP8135,Europe/Paris,,OZU, +OZU:SP:8137,1,"Passable / Rothschild",43.694064,7.328835,0,0,OZU:SA:CTP8137,Europe/Paris,,OZU, +OZU:SP:8138,1,"Passable / Rothschild",43.693854,7.329012,0,0,OZU:SA:CTP8137,Europe/Paris,,OZU, +OZU:SP:8139,1,"Petite Afrique",43.712901,7.338114,0,0,OZU:SA:CTP8139,Europe/Paris,,OZU, +OZU:SP:814,1,"Les Palmiers / Bellet",43.705024,7.225079,0,0,OZU:SA:CTP813,Europe/Paris,,OZU, +OZU:SP:8140,1,"Place Charles D'Anjou",43.704311,7.309978,0,0,OZU:SA:CTP8140,Europe/Paris,,OZU, +OZU:SP:8141,1,"Plateau de la Justice",43.731878,7.342323,0,0,OZU:SA:CTP8141,Europe/Paris,,OZU, +OZU:SP:8142,1,"Plateau Saint-Michel",43.714954,7.32523,0,0,OZU:SA:CTP8142,Europe/Paris,,OZU, +OZU:SP:8144,1,"Pont Saint-Jean / Grasseuil",43.701438,7.326624,0,0,OZU:SA:CTP8144,Europe/Paris,,OZU, +OZU:SP:8145,1,"Pont Saint-Jean",43.701745,7.325999,0,0,OZU:SA:CTP8145,Europe/Paris,,OZU, +OZU:SP:8147,1,"Port de la Santé",43.702659,7.311543,0,0,OZU:SA:CTP8147,Europe/Paris,,OZU, +OZU:SP:8148,1,"Port de Saint-Jean",43.690107,7.333049,0,0,OZU:SA:CTP8148,Europe/Paris,,OZU, +OZU:SP:8149,1,"Rochambeau",43.695724,7.30685,0,0,OZU:SA:CTP8149,Europe/Paris,,OZU, +OZU:SP:8150,1,"Rose Parc",43.71377,7.30948,0,0,OZU:SA:CTP8151,Europe/Paris,,OZU, +OZU:SP:8151,1,"Rose Parc",43.713725,7.309476,0,0,OZU:SA:CTP8151,Europe/Paris,,OZU, +OZU:SP:8152,1,"Saint-Laurent-d'Eze / RN7",43.731901,7.382052,0,0,OZU:SA:CTP8152,Europe/Paris,,OZU, +OZU:SP:8153,1,"Saint-Michel",43.717344,7.334144,0,0,OZU:SA:CTP8153,Europe/Paris,,OZU, +OZU:SP:8154,1,"Saint-Michel",43.717694,7.334771,0,0,OZU:SA:CTP8153,Europe/Paris,,OZU, +OZU:SP:8155,1,"Saint-Estève",43.69948,7.305468,0,0,OZU:SA:CTP8155,Europe/Paris,,OZU, +OZU:SP:8156,1,"Saint-Estève",43.700138,7.305592,0,0,OZU:SA:CTP8155,Europe/Paris,,OZU, +OZU:SP:8159,1,"Savorani",43.728811,7.410198,0,0,OZU:SA:CTP8159,Europe/Paris,,OZU, +OZU:SP:816,1,"Palais Nikaya",43.680774,7.199049,0,0,OZU:SA:CTP816,Europe/Paris,,OZU, +OZU:SP:8160,1,"Schifanoia",43.705429,7.32072,0,0,OZU:SA:CTP8160,Europe/Paris,,OZU, +OZU:SP:8161,1,"Schifanoia",43.705846,7.319921,0,0,OZU:SA:CTP8160,Europe/Paris,,OZU, +OZU:SP:8162,1,"Settimelli",43.705147,7.307327,0,0,OZU:SA:CTP8162,Europe/Paris,,OZU, +OZU:SP:8163,1,"Soleil d'Or",43.705135,7.305873,0,0,OZU:SA:CTP8163,Europe/Paris,,OZU, +OZU:SP:8164,1,"Saint-Laurent-d'Eze Plage",43.724512,7.37982,0,0,OZU:SA:CTP8164,Europe/Paris,,OZU, +OZU:SP:8165,1,"Saint-Laurent-d'Eze Plage",43.725362,7.380715,0,0,OZU:SA:CTP8164,Europe/Paris,,OZU, +OZU:SP:8167,1,"Val des Costes",43.731061,7.382698,0,0,OZU:SA:CTP8167,Europe/Paris,,OZU, +OZU:SP:8168,1,"Val des Costes",43.731041,7.382548,0,0,OZU:SA:CTP8167,Europe/Paris,,OZU, +OZU:SP:8169,1,"Verseau",43.72541,7.408976,0,0,OZU:SA:CTP8169,Europe/Paris,,OZU, +OZU:SP:817,1,"Les Potiers",43.699621,7.251502,0,0,OZU:SA:CTP817,Europe/Paris,,OZU, +OZU:SP:8170,1,"Villa Alexandra",43.689555,7.330732,0,0,OZU:SA:CTP8170,Europe/Paris,,OZU, +OZU:SP:8172,1,"Gare SNCF Beaulieu-sur-Mer",43.706297,7.331722,0,0,OZU:SA:CTP8056,Europe/Paris,,OZU, +OZU:SP:8175,1,"Petite Afrique",43.713125,7.338121,0,0,OZU:SA:CTP8139,Europe/Paris,,OZU, +OZU:SP:8176,1,"Floralies",43.71027,7.330108,0,0,OZU:SA:CTP8177,Europe/Paris,,OZU, +OZU:SP:8177,1,"Floralies",43.710424,7.330309,0,0,OZU:SA:CTP8177,Europe/Paris,,OZU, +OZU:SP:8178,1,"Gare SNCF Beaulieu-sur-Mer",43.706721,7.331299,0,0,OZU:SA:CTP8056,Europe/Paris,,OZU, +OZU:SP:8179,1,"L'Escafourcha",43.711654,7.332526,0,0,OZU:SA:CTP8180,Europe/Paris,,OZU, +OZU:SP:818,1,"Les Primevères",43.678346,7.213571,0,0,OZU:SA:CTP818,Europe/Paris,,OZU, +OZU:SP:8180,1,"L'Escafourcha",43.711507,7.332589,0,0,OZU:SA:CTP8180,Europe/Paris,,OZU, +OZU:SP:8181,1,"Marinoni",43.709542,7.331063,0,0,OZU:SA:CTP8181,Europe/Paris,,OZU, +OZU:SP:8184,1,"Cap Estel",43.721698,7.378341,0,0,OZU:SA:CTP8185,Europe/Paris,,OZU, +OZU:SP:8185,1,"Cap Estel",43.720599,7.376816,0,0,OZU:SA:CTP8185,Europe/Paris,,OZU, +OZU:SP:8186,1,"Cimetière / Beaulieu",43.708779,7.32572,0,0,OZU:SA:CTP8186,Europe/Paris,,OZU, +OZU:SP:8188,1,"La Murta",43.710445,7.322041,0,0,OZU:SA:CTP8188,Europe/Paris,,OZU, +OZU:SP:819,1,"Les Restanques",43.689916,7.210801,0,0,OZU:SA:CTP819,Europe/Paris,,OZU, +OZU:SP:8190,1,"Les Trois Frères",43.710146,7.325963,0,0,OZU:SA:CTP8190,Europe/Paris,,OZU, +OZU:SP:8191,1,"Place Charles D'Anjou",43.704235,7.309861,0,0,OZU:SA:CTP8140,Europe/Paris,,OZU, +OZU:SP:8194,1,"Plage / Beaulieu",43.708793,7.334412,0,0,OZU:SA:CTP8194,Europe/Paris,,OZU, +OZU:SP:82,1,"Banghi",43.681958,7.213545,0,0,OZU:SA:CTP82,Europe/Paris,,OZU, +OZU:SP:820,1,"Les Restaurants",43.740668,7.237892,0,0,OZU:SA:CTP820,Europe/Paris,,OZU, +OZU:SP:8203,1,"San Miqueu",43.712119,7.332022,0,0,OZU:SA:CTP8203,Europe/Paris,,OZU, +OZU:SP:821,1,"Les Restaurants",43.740678,7.237855,0,0,OZU:SA:CTP820,Europe/Paris,,OZU, +OZU:SP:8215,1,"Octroi / Grande-Bretagne",43.70262,7.308469,0,0,OZU:SA:CTP8215,Europe/Paris,,OZU, +OZU:SP:8216,1,"Octroi / Libération",43.702632,7.308633,0,0,OZU:SA:CTP8216,Europe/Paris,,OZU, +OZU:SP:822,1,"Les Roches",43.687875,7.21873,0,0,OZU:SA:CTP822,Europe/Paris,,OZU, +OZU:SP:8221,1,"Costa Plana",43.726066,7.396573,0,0,OZU:SA:CTP8221,Europe/Paris,,OZU, +OZU:SP:8223,1,"Résidence Costa Plana",43.724698,7.395407,0,0,OZU:SA:CTP8223,Europe/Paris,,OZU, +OZU:SP:8224,1,"Les Trois Frères",43.710251,7.326047,0,0,OZU:SA:CTP8190,Europe/Paris,,OZU, +OZU:SP:8225,1,"La Murta",43.710541,7.322111,0,0,OZU:SA:CTP8188,Europe/Paris,,OZU, +OZU:SP:8226,1,"Olivula",43.716396,7.321904,0,0,OZU:SA:CTP8226,Europe/Paris,,OZU, +OZU:SP:8227,1,"Toscana",43.727276,7.37927,0,0,OZU:SA:CTP8227,Europe/Paris,,OZU, +OZU:SP:8228,1,"Toscana",43.727362,7.379329,0,0,OZU:SA:CTP8227,Europe/Paris,,OZU, +OZU:SP:8229,1,"Lou Clapas",43.728995,7.409941,0,0,OZU:SA:CTP8229,Europe/Paris,,OZU, +OZU:SP:823,1,"Les Ronces",43.72558,7.268485,0,0,OZU:SA:CTP824,Europe/Paris,,OZU, +OZU:SP:8230,1,"Le chevalier",43.726624,7.399384,0,0,OZU:SA:CTP8230,Europe/Paris,,OZU, +OZU:SP:8231,1,"Le chevalier",43.726554,7.39934,0,0,OZU:SA:CTP8230,Europe/Paris,,OZU, +OZU:SP:8232,1,"Les Abeilles",43.726429,7.408196,0,0,OZU:SA:CTP8232,Europe/Paris,,OZU, +OZU:SP:8233,1,"Le Gentilhomme",43.706717,7.313951,0,0,OZU:SA:CTP8233,Europe/Paris,,OZU, +OZU:SP:8234,1,"Port de la Santé",43.702576,7.311318,0,0,OZU:SA:CTP8147,Europe/Paris,,OZU, +OZU:SP:8236,1,"Settimelli",43.70525,7.307033,0,0,OZU:SA:CTP8162,Europe/Paris,,OZU, +OZU:SP:8237,1,"Soleil d'Or",43.705178,7.305669,0,0,OZU:SA:CTP8163,Europe/Paris,,OZU, +OZU:SP:8238,1,"Sacré Cœur",43.702584,7.308889,0,0,OZU:SA:CTP8238,Europe/Paris,,OZU, +OZU:SP:8239,1,"Sacré Cœur",43.702564,7.309098,0,0,OZU:SA:CTP8238,Europe/Paris,,OZU, +OZU:SP:824,1,"Les Ronces",43.72562,7.268762,0,0,OZU:SA:CTP824,Europe/Paris,,OZU, +OZU:SP:8240,1,"Maternelle",43.700413,7.307495,0,0,OZU:SA:CTP8240,Europe/Paris,,OZU, +OZU:SP:8241,1,"Maternelle",43.700515,7.307628,0,0,OZU:SA:CTP8240,Europe/Paris,,OZU, +OZU:SP:8242,1,"Darse-Capitainerie",43.697361,7.306521,0,0,OZU:SA:CTP8242,Europe/Paris,,OZU, +OZU:SP:8243,1,"Darse-Capitainerie",43.697399,7.306661,0,0,OZU:SA:CTP8242,Europe/Paris,,OZU, +OZU:SP:8244,1,"Pont Saint-Jean / Grasseuil",43.701036,7.326525,0,0,OZU:SA:CTP8144,Europe/Paris,,OZU, +OZU:SP:8245,1,"La Corderie",43.699576,7.308467,0,0,OZU:SA:CTP8245,Europe/Paris,,OZU, +OZU:SP:8246,1,"La Corderie",43.699506,7.308573,0,0,OZU:SA:CTP8245,Europe/Paris,,OZU, +OZU:SP:825,1,"Les Roses / Rimiez",43.740224,7.277381,0,0,OZU:SA:CTP826,Europe/Paris,,OZU, +OZU:SP:826,1,"Les Roses / Rimiez",43.740015,7.277412,0,0,OZU:SA:CTP826,Europe/Paris,,OZU, +OZU:SP:827,1,"Les Serres / Pessicart",43.726426,7.237349,0,0,OZU:SA:CTP828,Europe/Paris,,OZU, +OZU:SP:828,1,"Les Serres / Pessicart",43.72679,7.23728,0,0,OZU:SA:CTP828,Europe/Paris,,OZU, +OZU:SP:829,1,"Les Serres",43.718388,7.193073,0,0,OZU:SA:CTP829,Europe/Paris,,OZU, +OZU:SP:83,1,"Banghi",43.681906,7.2141,0,0,OZU:SA:CTP82,Europe/Paris,,OZU, +OZU:SP:830,1,"Les Sagnes",43.666484,7.208201,0,0,OZU:SA:CTP830,Europe/Paris,,OZU, +OZU:SP:831,1,"Les Strelitzias",43.707493,7.206669,0,0,OZU:SA:CTP832,Europe/Paris,,OZU, +OZU:SP:832,1,"Les Strelitzias",43.707422,7.206663,0,0,OZU:SA:CTP832,Europe/Paris,,OZU, +OZU:SP:834,1,"Les Tennis",43.714593,7.276759,0,0,OZU:SA:CTP834,Europe/Paris,,OZU, +OZU:SP:835,1,"Les Tennis",43.714609,7.276785,0,0,OZU:SA:CTP834,Europe/Paris,,OZU, +OZU:SP:836,1,"Les terrasses",43.675282,7.210252,0,0,OZU:SA:CTP836,Europe/Paris,,OZU, +OZU:SP:837,1,"Les Terrasses",43.6753,7.209947,0,0,OZU:SA:CTP837,Europe/Paris,,OZU, +OZU:SP:838,1,"Les Terrasses la Costière",43.717354,7.228844,0,0,OZU:SA:CTP839,Europe/Paris,,OZU, +OZU:SP:839,1,"Les Terrasses la Costière",43.717824,7.228823,0,0,OZU:SA:CTP839,Europe/Paris,,OZU, +OZU:SP:84,1,"Barilli",43.706245,7.217164,0,0,OZU:SA:CTP84,Europe/Paris,,OZU, +OZU:SP:840,1,"Les Treuyes",43.706656,7.224251,0,0,OZU:SA:CTP840,Europe/Paris,,OZU, +OZU:SP:841,1,"Les Treuyes",43.707305,7.22402,0,0,OZU:SA:CTP840,Europe/Paris,,OZU, +OZU:SP:842,1,"L'Escale",43.702084,7.29761,0,0,OZU:SA:CTP842,Europe/Paris,,OZU, +OZU:SP:843,1,"L'Escale",43.702503,7.297881,0,0,OZU:SA:CTP842,Europe/Paris,,OZU, +OZU:SP:844,1,"L'Etoile",43.721983,7.244963,0,0,OZU:SA:CTP844,Europe/Paris,,OZU, +OZU:SP:845,1,"L'Etoile",43.72251,7.244661,0,0,OZU:SA:CTP844,Europe/Paris,,OZU, +OZU:SP:846,1,"L'Ibac",43.743991,7.266068,0,0,OZU:SA:CTP846,Europe/Paris,,OZU, +OZU:SP:847,1,"L'Ibac",43.744001,7.266218,0,0,OZU:SA:CTP846,Europe/Paris,,OZU, +OZU:SP:849,1,"Lingostière Gare",43.720848,7.188018,0,0,OZU:SA:CTP1411,Europe/Paris,,OZU, +OZU:SP:85,1,"Barilli",43.705846,7.216857,0,0,OZU:SA:CTP84,Europe/Paris,,OZU, +OZU:SP:850,1,"Lingostière / Gare CP",43.719903,7.18641,0,0,OZU:SA:CTP850,Europe/Paris,,OZU, +OZU:SP:851,1,"Lino Ventura",43.738446,7.307574,0,0,OZU:SA:CTP851,Europe/Paris,,OZU, +OZU:SP:852,1,"Les Liserons",43.705344,7.29541,0,0,OZU:SA:CTP794,Europe/Paris,,OZU, +OZU:SP:853,1,"L'Obellia",43.728215,7.237813,0,0,OZU:SA:CTP853,Europe/Paris,,OZU, +OZU:SP:854,1,"L'Obellia",43.728229,7.237889,0,0,OZU:SA:CTP853,Europe/Paris,,OZU, +OZU:SP:855,1,"Lombardie",43.74372,7.271622,0,0,OZU:SA:CTP856,Europe/Paris,,OZU, +OZU:SP:856,1,"Lombardie",43.74365,7.271765,0,0,OZU:SA:CTP856,Europe/Paris,,OZU, +OZU:SP:857,1,"Longchamp",43.699377,7.267147,0,0,OZU:SA:CTP857,Europe/Paris,,OZU, +OZU:SP:858,1,"L'Orée",43.682585,7.224978,0,0,OZU:SA:CTP858,Europe/Paris,,OZU, +OZU:SP:859,1,"L'Orée",43.68256,7.224951,0,0,OZU:SA:CTP858,Europe/Paris,,OZU, +OZU:SP:86,1,"Barla / Riquier",43.701819,7.28845,0,0,OZU:SA:CTP86,Europe/Paris,,OZU, +OZU:SP:860,1,"L'Orme",43.721738,7.249574,0,0,OZU:SA:CTP861,Europe/Paris,,OZU, +OZU:SP:861,1,"L'Orme",43.72191,7.249552,0,0,OZU:SA:CTP861,Europe/Paris,,OZU, +OZU:SP:862,1,"Lou Castel",43.706205,7.247142,0,0,OZU:SA:CTP862,Europe/Paris,,OZU, +OZU:SP:863,1,"Lou Castel",43.705894,7.247039,0,0,OZU:SA:CTP862,Europe/Paris,,OZU, +OZU:SP:864,1,"Lou Castel",43.705838,7.247085,0,0,OZU:SA:CTP862,Europe/Paris,,OZU, +OZU:SP:865,1,"Louis Braille",43.718677,7.294187,0,0,OZU:SA:CTP866,Europe/Paris,,OZU, +OZU:SP:866,1,"Louis Braille",43.718835,7.294077,0,0,OZU:SA:CTP866,Europe/Paris,,OZU, +OZU:SP:868,1,"L'Usine",43.734136,7.291958,0,0,OZU:SA:CTP869,Europe/Paris,,OZU, +OZU:SP:869,1,"L'Usine",43.734014,7.292443,0,0,OZU:SA:CTP869,Europe/Paris,,OZU, +OZU:SP:87,1,"Barla",43.701577,7.287225,0,0,OZU:SA:CTP87,Europe/Paris,,OZU, +OZU:SP:870,1,"L'Usine / Terron",43.6905,7.223634,0,0,OZU:SA:CTP871,Europe/Paris,,OZU, +OZU:SP:871,1,"L'Usine / Terron",43.690546,7.223589,0,0,OZU:SA:CTP871,Europe/Paris,,OZU, +OZU:SP:873,1,"Lycée Masséna",43.69949,7.276562,0,0,OZU:SA:CTP873,Europe/Paris,,OZU, +OZU:SP:877,1,"Lycée Thierry Maulnier",43.684482,7.198329,0,0,OZU:SA:CTP877,Europe/Paris,,OZU, +OZU:SP:878,1,"Lympia",43.697124,7.286224,0,0,OZU:SA:CTP879,Europe/Paris,,OZU, +OZU:SP:879,1,"Lympia",43.69694,7.287013,0,0,OZU:SA:CTP879,Europe/Paris,,OZU, +OZU:SP:88,1,"Pont Barla",43.703427,7.279068,0,0,OZU:SA:CTP1066,Europe/Paris,,OZU, +OZU:SP:880,1,"Madeleine",43.716285,7.234564,0,0,OZU:SA:CTP880,Europe/Paris,,OZU, +OZU:SP:881,1,"Madeleine",43.716313,7.234553,0,0,OZU:SA:CTP880,Europe/Paris,,OZU, +OZU:SP:882,1,"Madeleine Supérieure",43.729727,7.222492,0,0,OZU:SA:CTP1485,Europe/Paris,,OZU, +OZU:SP:883,1,"Maeterlinck / Mont Boron",43.688264,7.296507,0,0,OZU:SA:CTP883,Europe/Paris,,OZU, +OZU:SP:884,1,"Maeterlinck / Mont Boron",43.688258,7.296482,0,0,OZU:SA:CTP883,Europe/Paris,,OZU, +OZU:SP:885,1,"Maeterlinck / Baumettes",43.697247,7.248454,0,0,OZU:SA:CTP885,Europe/Paris,,OZU, +OZU:SP:886,1,"Maeterlinck",43.6881,7.295985,0,0,OZU:SA:CTP887,Europe/Paris,,OZU, +OZU:SP:887,1,"Maeterlinck",43.688084,7.296226,0,0,OZU:SA:CTP887,Europe/Paris,,OZU, +OZU:SP:888,1,"Magnan",43.691908,7.244829,0,0,OZU:SA:CTP888,Europe/Paris,,OZU, +OZU:SP:89,1,"Barla / Arson",43.700092,7.286551,0,0,OZU:SA:CTP89,Europe/Paris,,OZU, +OZU:SP:890,1,"Magnan / Promenade",43.690495,7.245018,0,0,OZU:SA:CTP893,Europe/Paris,,OZU, +OZU:SP:892,1,"Magnan / Bellet",43.691209,7.245564,0,0,OZU:SA:CTP892,Europe/Paris,,OZU, +OZU:SP:893,1,"Magnan / Promenade",43.690911,7.246569,0,0,OZU:SA:CTP893,Europe/Paris,,OZU, +OZU:SP:894,1,"Magnolias",43.680761,7.220714,0,0,OZU:SA:CTP895,Europe/Paris,,OZU, +OZU:SP:895,1,"Magnolias",43.680782,7.220654,0,0,OZU:SA:CTP895,Europe/Paris,,OZU, +OZU:SP:896,1,"Maisons Neuves",43.720938,7.285729,0,0,OZU:SA:CTP896,Europe/Paris,,OZU, +OZU:SP:899,1,"Marjolaine",43.704433,7.249646,0,0,OZU:SA:CTP1559,Europe/Paris,,OZU, +OZU:SP:9,1,"Aéroport T.1",43.664963,7.210391,0,0,OZU:SA:CTP50048,Europe/Paris,,OZU, +OZU:SP:90,1,"Barralis",43.71702,7.234838,0,0,OZU:SA:CTP90,Europe/Paris,,OZU, +OZU:SP:900,1,"Marojade",43.741531,7.303056,0,0,OZU:SA:CTP900,Europe/Paris,,OZU, +OZU:SP:901,1,"Marojade",43.741532,7.302885,0,0,OZU:SA:CTP900,Europe/Paris,,OZU, +OZU:SP:902,1,"Martin",43.756153,7.197906,0,0,OZU:SA:CTP902,Europe/Paris,,OZU, +OZU:SP:904,1,"Le Mas Saint-Pierre",43.713507,7.241018,0,0,OZU:SA:CTP678,Europe/Paris,,OZU, +OZU:SP:907,1,"Maternelle",43.713647,7.238732,0,0,OZU:SA:CTP389,Europe/Paris,,OZU, +OZU:SP:908,1,"Maurice Jaubert",43.737102,7.30014,0,0,OZU:SA:CTP908,Europe/Paris,,OZU, +OZU:SP:909,1,"Max Barel",43.699419,7.287347,0,0,OZU:SA:CTP909,Europe/Paris,,OZU, +OZU:SP:91,1,"Barralis",43.716983,7.234872,0,0,OZU:SA:CTP90,Europe/Paris,,OZU, +OZU:SP:911,1,"J. Médecin / Hôtel des Postes",43.698956,7.26968,0,0,OZU:SA:CTP911,Europe/Paris,,OZU, +OZU:SP:912,1,"J. Médecin / Pastorelli",43.700003,7.269051,0,0,OZU:SA:CTP912,Europe/Paris,,OZU, +OZU:SP:913,1,"Mencarelli",43.697596,7.237388,0,0,OZU:SA:CTP913,Europe/Paris,,OZU, +OZU:SP:914,1,"Mendiguren",43.707186,7.27701,0,0,OZU:SA:CTP1487,Europe/Paris,,OZU, +OZU:SP:915,1,"Mendiguren",43.707262,7.276557,0,0,OZU:SA:CTP1487,Europe/Paris,,OZU, +OZU:SP:916,1,"Méridia",43.682651,7.203071,0,0,OZU:SA:CTP2742,Europe/Paris,,OZU, +OZU:SP:919,1,"Congrès / Promenade",43.694601,7.260054,0,0,OZU:SA:CTP282,Europe/Paris,,OZU, +OZU:SP:92,1,"Bassin",43.693815,7.299781,0,0,OZU:SA:CTP92,Europe/Paris,,OZU, +OZU:SP:921,1,"Eglise Jeanne d'Arc",43.712779,7.263582,0,0,OZU:SA:CTP921,Europe/Paris,,OZU, +OZU:SP:923,1,"Michel Ange / Auguste Raynaud",43.711844,7.258802,0,0,OZU:SA:CTP923,Europe/Paris,,OZU, +OZU:SP:924,1,"Michelet",43.714131,7.258615,0,0,OZU:SA:CTP924,Europe/Paris,,OZU, +OZU:SP:925,1,"Michelet",43.714869,7.258431,0,0,OZU:SA:CTP924,Europe/Paris,,OZU, +OZU:SP:926,1,"Milon de Veraillon",43.71514,7.297083,0,0,OZU:SA:CTP926,Europe/Paris,,OZU, +OZU:SP:927,1,"Milon de Veraillon",43.715135,7.296997,0,0,OZU:SA:CTP926,Europe/Paris,,OZU, +OZU:SP:928,1,"Miramar",43.689465,7.296006,0,0,OZU:SA:CTP929,Europe/Paris,,OZU, +OZU:SP:929,1,"Miramar",43.690028,7.295879,0,0,OZU:SA:CTP929,Europe/Paris,,OZU, +OZU:SP:93,1,"Bassin",43.693628,7.299741,0,0,OZU:SA:CTP92,Europe/Paris,,OZU, +OZU:SP:930,1,"Mirandole",43.68307,7.211653,0,0,OZU:SA:CTP930,Europe/Paris,,OZU, +OZU:SP:931,1,"Mirandole",43.682855,7.21181,0,0,OZU:SA:CTP930,Europe/Paris,,OZU, +OZU:SP:932,1,"Mirasol / Pessicart",43.710487,7.250019,0,0,OZU:SA:CTP934,Europe/Paris,,OZU, +OZU:SP:933,1,"Mirasol",43.710483,7.251893,0,0,OZU:SA:CTP933,Europe/Paris,,OZU, +OZU:SP:934,1,"Mirasol / Pessicart",43.710562,7.249566,0,0,OZU:SA:CTP934,Europe/Paris,,OZU, +OZU:SP:935,1,"Mistinguette",43.711831,7.244822,0,0,OZU:SA:CTP935,Europe/Paris,,OZU, +OZU:SP:936,1,"Mistinguette",43.711978,7.24456,0,0,OZU:SA:CTP935,Europe/Paris,,OZU, +OZU:SP:937,1,"Mistral",43.725279,7.252128,0,0,OZU:SA:CTP938,Europe/Paris,,OZU, +OZU:SP:938,1,"Mistral",43.725214,7.252159,0,0,OZU:SA:CTP938,Europe/Paris,,OZU, +OZU:SP:94,1,"Batterie",43.677897,7.218719,0,0,OZU:SA:CTP94,Europe/Paris,,OZU, +OZU:SP:943,1,"Mon Plaisir",43.711513,7.26451,0,0,OZU:SA:CTP943,Europe/Paris,,OZU, +OZU:SP:944,1,"Monastère",43.720886,7.277591,0,0,OZU:SA:CTP945,Europe/Paris,,OZU, +OZU:SP:945,1,"Monastère",43.720814,7.277001,0,0,OZU:SA:CTP945,Europe/Paris,,OZU, +OZU:SP:947,1,"Avenue Mont Alban",43.701662,7.296055,0,0,OZU:SA:CTP947,Europe/Paris,,OZU, +OZU:SP:948,1,"Avenue Mont Alban",43.701295,7.295847,0,0,OZU:SA:CTP947,Europe/Paris,,OZU, +OZU:SP:949,1,"Mont Boron",43.691861,7.300356,0,0,OZU:SA:CTP949,Europe/Paris,,OZU, +OZU:SP:950,1,"Mont Fabron",43.69012,7.2133,0,0,OZU:SA:CTP950,Europe/Paris,,OZU, +OZU:SP:951,1,"Mont Fabron",43.690081,7.213334,0,0,OZU:SA:CTP950,Europe/Paris,,OZU, +OZU:SP:955,1,"Mont Gros",43.717401,7.294336,0,0,OZU:SA:CTP955,Europe/Paris,,OZU, +OZU:SP:956,1,"Mosca",43.69902,7.239348,0,0,OZU:SA:CTP956,Europe/Paris,,OZU, +OZU:SP:957,1,"Mosca",43.698968,7.239094,0,0,OZU:SA:CTP956,Europe/Paris,,OZU, +OZU:SP:958,1,"Moulin",43.710803,7.227102,0,0,OZU:SA:CTP959,Europe/Paris,,OZU, +OZU:SP:959,1,"Moulin",43.710788,7.22705,0,0,OZU:SA:CTP959,Europe/Paris,,OZU, +OZU:SP:96,1,"Batterie / Princesse Grâce",43.687637,7.306206,0,0,OZU:SA:CTP97,Europe/Paris,,OZU, +OZU:SP:960,1,"Moyenne Corniche",43.69863,7.295546,0,0,OZU:SA:CTP962,Europe/Paris,,OZU, +OZU:SP:961,1,"Moyenne Corniche",43.698899,7.29557,0,0,OZU:SA:CTP962,Europe/Paris,,OZU, +OZU:SP:962,1,"Moyenne Corniche",43.698563,7.295254,0,0,OZU:SA:CTP962,Europe/Paris,,OZU, +OZU:SP:963,1,"Moyenne Corniche",43.698491,7.295272,0,0,OZU:SA:CTP962,Europe/Paris,,OZU, +OZU:SP:964,1,"Mozart",43.700374,7.262094,0,0,OZU:SA:CTP964,Europe/Paris,,OZU, +OZU:SP:965,1,"Musée Chagall",43.708763,7.271087,0,0,OZU:SA:CTP965,Europe/Paris,,OZU, +OZU:SP:966,1,"Musée Chagall",43.708861,7.270725,0,0,OZU:SA:CTP965,Europe/Paris,,OZU, +OZU:SP:967,1,"Musée Chéret",43.695106,7.248592,0,0,OZU:SA:CTP967,Europe/Paris,,OZU, +OZU:SP:968,1,"Mutuelle Agricole",43.678941,7.225533,0,0,OZU:SA:CTP968,Europe/Paris,,OZU, +OZU:SP:969,1,"Mutuelle Agricole",43.678916,7.225681,0,0,OZU:SA:CTP968,Europe/Paris,,OZU, +OZU:SP:97,1,"Batterie / Princesse Grâce",43.688451,7.306794,0,0,OZU:SA:CTP97,Europe/Paris,,OZU, +OZU:SP:970,1,"N.54",43.712019,7.251964,0,0,OZU:SA:CTP970,Europe/Paris,,OZU, +OZU:SP:971,1,"N.59",43.693846,7.209126,0,0,OZU:SA:CTP971,Europe/Paris,,OZU, +OZU:SP:972,1,"N.59",43.693905,7.209044,0,0,OZU:SA:CTP971,Europe/Paris,,OZU, +OZU:SP:976,1,"La Plaine",43.686303,7.201866,0,0,OZU:SA:CTP2744,Europe/Paris,,OZU, +OZU:SP:978,1,"Ferber / Promenade",43.675303,7.227914,0,0,OZU:SA:CTP53356,Europe/Paris,,OZU, +OZU:SP:979,1,"Nicola",43.702448,7.231065,0,0,OZU:SA:CTP979,Europe/Paris,,OZU, +OZU:SP:98,1,"Bavastro",43.700962,7.285892,0,0,OZU:SA:CTP99,Europe/Paris,,OZU, +OZU:SP:980,1,"Nicola",43.70184,7.232539,0,0,OZU:SA:CTP979,Europe/Paris,,OZU, +OZU:SP:981,1,"Les Noisetiers",43.725456,7.265456,0,0,OZU:SA:CTP799,Europe/Paris,,OZU, +OZU:SP:982,1,"Les Noisetiers",43.724823,7.264917,0,0,OZU:SA:CTP799,Europe/Paris,,OZU, +OZU:SP:983,1,"Les Noisetiers",43.724888,7.265059,0,0,OZU:SA:CTP799,Europe/Paris,,OZU, +OZU:SP:984,1,"Normandie",43.673975,7.208233,0,0,OZU:SA:CTP985,Europe/Paris,,OZU, +OZU:SP:985,1,"Normandie",43.673391,7.208593,0,0,OZU:SA:CTP985,Europe/Paris,,OZU, +OZU:SP:986,1,"Notre Dame",43.704145,7.267671,0,0,OZU:SA:CTP986,Europe/Paris,,OZU, +OZU:SP:989,1,"Observatoire",43.72091,7.304615,0,0,OZU:SA:CTP989,Europe/Paris,,OZU, +OZU:SP:99,1,"Bavastro",43.701442,7.28424,0,0,OZU:SA:CTP99,Europe/Paris,,OZU, +OZU:SP:990,1,"Observatoire",43.720854,7.304671,0,0,OZU:SA:CTP989,Europe/Paris,,OZU, +OZU:SP:991,1,"Orangeraie",43.674933,7.214966,0,0,OZU:SA:CTP991,Europe/Paris,,OZU, +OZU:SP:992,1,"Orangeraie",43.674982,7.21528,0,0,OZU:SA:CTP991,Europe/Paris,,OZU, +OZU:SP:993,1,"Orangerie",43.703962,7.207496,0,0,OZU:SA:CTP993,Europe/Paris,,OZU, +OZU:SP:994,1,"Orangerie",43.703879,7.207539,0,0,OZU:SA:CTP993,Europe/Paris,,OZU, +OZU:SP:995,1,"PAL",43.712498,7.204352,0,0,OZU:SA:CTP995,Europe/Paris,,OZU, +OZU:SP:996,1,"Palais Nikaïa",43.680369,7.199231,0,0,OZU:SA:CTP1277,Europe/Paris,,OZU, +OZU:SP:998,1,"Panera",43.74322,7.249317,0,0,OZU:SA:CTP998,Europe/Paris,,OZU, +OZU:SP:999,1,"Panera",43.743446,7.249311,0,0,OZU:SA:CTP998,Europe/Paris,,OZU, +SIN:SP:OCECarTER-85010082,1,"Gare de Genève",46.210557,6.143155,-1,0,SIN:SA:OCE85010082,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87003707,1,"Ydes",45.344039,2.436246,-1,0,SIN:SA:OCE87003707,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87024380,1,"Le Puy-Lafayette",45.04355,3.886866,-1,0,SIN:SA:OCE87024380,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87101980,1,"Néris-les-Bains",46.287548,2.661814,-1,0,SIN:SA:OCE87101980,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87101998,1,"Durdat-Larequille",46.250763,2.702033,-1,0,SIN:SA:OCE87101998,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87110171,1,"Landeyrat",45.277543,2.870006,-1,0,SIN:SA:OCE87110171,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87110189,1,"Marcenat",45.304939,2.828226,-1,0,SIN:SA:OCE87110189,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87110197,1,"vely",45.334816,2.759806,-1,0,SIN:SA:OCE87110197,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87110205,1,"St-Amandin",45.343141,2.694491,-1,0,SIN:SA:OCE87110205,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87110213,1,"Vebret",45.339542,2.520261,-1,0,SIN:SA:OCE87110213,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87110221,1,"Antignac (Cantal)",45.341011,2.544783,-1,0,SIN:SA:OCE87110221,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87130823,1,"Les-cabannes-09-Centre",42.784943,1.688417,-1,0,SIN:SA:OCE87130823,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87130849,1,"Mérens-les-Vals-Village",42.656118,1.836418,-1,0,SIN:SA:OCE87130849,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87131961,1,"Gare de Brion-Montréal-La Cluse",46.175782,5.55851,-1,0,SIN:SA:OCE87131961,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87137158,1,"Tarascon-Ariège-Mitter.",42.846536,1.604316,-1,0,SIN:SA:OCE87137158,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87158006,1,"Gouzon-Champ-de-Foire",46.191172,2.239924,-1,0,SIN:SA:OCE87158006,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87176941,1,"Courbassil",42.492763,1.850478,-1,0,SIN:SA:OCE87176941,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87176966,1,"Ruites",42.475399,1.872722,-1,0,SIN:SA:OCE87176966,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87177360,1,"Communay-Stade",45.605858,4.848858,-1,0,SIN:SA:OCE87177360,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87177576,1,"Ternay-Barbières",45.59703,4.799772,-1,0,SIN:SA:OCE87177576,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87208553,1,"Gare de Casino-Lacroix-Laval",45.787828,4.730892,-1,0,SIN:SA:OCE87208553,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87282335,1,"Perrigny-sur-Loire",46.530542,3.846116,-1,0,SIN:SA:OCE87282335,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87318964,1,"Gare de Avignon-TGV",43.921964,4.786154,-1,0,SIN:SA:OCE87318964,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87327601,1,"Montaigut-en-Combraille",46.180364,2.808109,-1,0,SIN:SA:OCE87327601,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87335521,1,"Grenoble-Gare-Routière",45.192674,5.714361,-1,0,SIN:SA:OCE87335521,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87336974,1,"La Voulte-Mairie",44.799371,4.78131,-1,0,SIN:SA:OCE87336974,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87336982,1,"St-Julien-en-St-Alban-C",44.754243,4.697899,-1,0,SIN:SA:OCE87336982,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87336990,1,"Flaviac-Place-René-Cass",44.746371,4.674158,-1,0,SIN:SA:OCE87336990,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87337006,1,"Coux-centre",44.736036,4.623787,-1,0,SIN:SA:OCE87337006,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87337089,1,"Aubenas-Pl.-de-la-Paix",44.618159,4.389208,-1,0,SIN:SA:OCE87337089,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87337097,1,"Lavilledieu-Centre",44.574153,4.455366,-1,0,SIN:SA:OCE87337097,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87361998,1,"St-Pourçain-sur-Sioule",46.309255,3.29126,-1,0,SIN:SA:OCE87361998,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87392829,1,"St-Martin-d'Hères",45.193002,5.768883,-1,0,SIN:SA:OCE87392829,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87395657,1,"Brassac-les-Mines-Ly-Ra",45.413609,3.321389,-1,0,SIN:SA:OCE87395657,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87395665,1,"Issoire-Lycée-Deville",45.539936,3.257986,-1,0,SIN:SA:OCE87395665,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87395673,1,"Issoire-Lycée-Murat",45.550384,3.249926,-1,0,SIN:SA:OCE87395673,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87395749,1,"Thiers-Lycée",45.861885,3.539933,-1,0,SIN:SA:OCE87395749,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87395756,1,"Ambert-Ville",45.550598,3.739655,-1,0,SIN:SA:OCE87395756,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87395822,1,"St-Flour-les-Allées",45.032936,3.088367,-1,0,SIN:SA:OCE87395822,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87395830,1,"Le-Breuil-sur-Couze-Lyc",45.462621,3.281144,-1,0,SIN:SA:OCE87395830,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87395947,1,"Mauriac-Lycée-Cortat",45.213365,2.341224,-1,0,SIN:SA:OCE87395947,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87395962,1,"Ste-Florine-Lycée-C-fav",45.401583,3.321111,-1,0,SIN:SA:OCE87395962,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87405068,1,"Mariol",46.02117,3.495785,-1,0,SIN:SA:OCE87405068,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87405423,1,"Dore-Eglise",45.380994,3.748064,-1,0,SIN:SA:OCE87405423,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87407494,1,"Abrest-les-Dollots",46.088876,3.456898,-1,0,SIN:SA:OCE87407494,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87407502,1,"Arrest-Usine-Mélius",45.396363,3.326382,-1,0,SIN:SA:OCE87407502,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87407536,1,"Bourg-Lastice-Pl.-Poste",45.648355,2.561512,-1,0,SIN:SA:OCE87407536,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87407569,1,"Brioude-Lycée-Lafayette",45.292173,3.382543,-1,0,SIN:SA:OCE87407569,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87407577,1,"Chateldon",45.990857,3.486056,-1,0,SIN:SA:OCE87407577,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87407635,1,"Dunières-Ville",45.217726,4.344214,-1,0,SIN:SA:OCE87407635,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87407650,1,"Feniers",45.324249,2.770679,-1,0,SIN:SA:OCE87407650,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87407668,1,"Fix",45.142776,3.668606,-1,0,SIN:SA:OCE87407668,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87407676,1,"Freyssenet",45.13194,3.736943,-1,0,SIN:SA:OCE87407676,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87407684,1,"Chauprillade-(La)",45.903306,3.518364,-1,0,SIN:SA:OCE87407684,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87407692,1,"La Chomette",45.229465,3.474457,-1,0,SIN:SA:OCE87407692,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87407700,1,"La-Combelle",45.45176,3.316788,-1,0,SIN:SA:OCE87407700,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87407718,1,"La-Croix-St-Bonnet",45.905026,3.518259,-1,0,SIN:SA:OCE87407718,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87407726,1,"La Grave-Carrefour",46.53344,2.619822,-1,0,SIN:SA:OCE87407726,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87407932,1,"Lanthénas",45.102328,3.773801,-1,0,SIN:SA:OCE87407932,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87407940,1,"Le Breuil/Couzes-S.-Fêt",45.472327,3.261949,-1,0,SIN:SA:OCE87407940,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87407965,1,"Le-Puy-en-Velay-Fayolle",45.041662,3.886103,-1,0,SIN:SA:OCE87407965,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87407973,1,"Le Puy-en-Velay-Hermit.",45.05444,3.865832,-1,0,SIN:SA:OCE87407973,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87407981,1,"Le Treuil",45.10869,3.521473,-1,0,SIN:SA:OCE87407981,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87408831,1,"Quatre-Routes-de-Saigne",45.353969,2.463645,-1,0,SIN:SA:OCE87408831,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87408872,1,"Lezoux-Mairie",45.828223,3.379679,-1,0,SIN:SA:OCE87408872,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87408880,1,"Lichemialle",45.257751,4.30038,-1,0,SIN:SA:OCE87408880,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87408906,1,"Meaulne-Place-Centrale",46.598944,2.613285,-1,0,SIN:SA:OCE87408906,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87408948,1,"Roueyre",45.048738,3.080915,-1,0,SIN:SA:OCE87408948,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87408955,1,"Ris-Abris-Bus",46.00393,3.486098,-1,0,SIN:SA:OCE87408955,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87408963,1,"Riom-es-Montagne-Cliniq",45.281652,2.6596,-1,0,SIN:SA:OCE87408963,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87408971,1,"Reugny",46.462006,2.615466,-1,0,SIN:SA:OCE87408971,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87408989,1,"Puy-Guillaume-Ville",45.960311,3.474269,-1,0,SIN:SA:OCE87408989,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87409409,1,"Puy-Guillaume-Laroche",45.964519,3.476369,-1,0,SIN:SA:OCE87409409,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87409417,1,"Pontmort RN9/D17",27.140973,-3.404561,-1,0,SIN:SA:OCE87409417,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87409425,1,"Pontgibaud-Ville",45.832268,2.851228,-1,0,SIN:SA:OCE87409425,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87409433,1,"Pont-du-Château-Croix-B",45.799032,3.244201,-1,0,SIN:SA:OCE87409433,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87409441,1,"Pont-du-Château-Carref.",45.796698,3.305029,-1,0,SIN:SA:OCE87409441,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87409466,1,"Pont-de-Dore-le-Chambon",45.840202,3.505704,-1,0,SIN:SA:OCE87409466,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87409474,1,"Paulhaguet-Monument",45.207471,3.510482,-1,0,SIN:SA:OCE87409474,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87409482,1,"Vieille-Brioude",45.264165,3.404438,-1,0,SIN:SA:OCE87409482,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87409490,1,"Urcay-Hotel-du-Lyon-d'O",46.626818,2.589411,-1,0,SIN:SA:OCE87409490,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87409508,1,"Thiers-Ville-Mairie",45.854975,3.547495,-1,0,SIN:SA:OCE87409508,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87409516,1,"Thiers-le-Moutier",45.849763,3.537646,-1,0,SIN:SA:OCE87409516,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87409524,1,"St-Florine-Place-F-Mitt",45.405458,3.319404,-1,0,SIN:SA:OCE87409524,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87409532,1,"Sainte-Eugenie-de-Ville",45.138328,3.623882,-1,0,SIN:SA:OCE87409532,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87409540,1,"St-Yorre-Nouvel-Hotel",46.066958,3.464877,-1,0,SIN:SA:OCE87409540,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87409557,1,"St-Yorre-Croix-des-Vern",46.054379,3.469374,-1,0,SIN:SA:OCE87409557,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87409664,1,"St-Sauves-Bourg",45.606799,2.687905,-1,0,SIN:SA:OCE87409664,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87409698,1,"St-Eble",45.129718,3.557773,-1,0,SIN:SA:OCE87409698,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87409763,1,"Bois-d'Oingt-Centre",45.921659,4.585274,-1,0,SIN:SA:OCE87409763,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87409771,1,"Letra-Gabodière",45.961434,4.51648,-1,0,SIN:SA:OCE87409771,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87417501,1,"Gare de Lancey",45.234472,5.880933,-1,0,SIN:SA:OCE87417501,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87417808,1,"Ajain",46.207141,1.997206,-1,0,SIN:SA:OCE87417808,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87417840,1,"MONTLUCON LEM",27.140973,-3.404561,-1,0,SIN:SA:OCE87417840,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87420802,1,"Le-Teil-Sablons",44.552703,4.685657,-1,0,SIN:SA:OCE87420802,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87420836,1,"Alba-Ruines-Romaines",44.570303,4.587538,-1,0,SIN:SA:OCE87420836,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87420976,1,"St-Eloy-les-Mines-Lycée",46.159628,2.832829,-1,0,SIN:SA:OCE87420976,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87440701,1,"Coubladour",45.114995,3.743683,-1,0,SIN:SA:OCE87440701,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87453654,1,"Costaros",44.89439,3.849555,-1,0,SIN:SA:OCE87453654,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87453670,1,"Pradelles",44.769705,3.883213,-1,0,SIN:SA:OCE87453670,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87478784,1,"Le-Guidon",46.378786,4.249614,-1,0,SIN:SA:OCE87478784,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87484576,1,"Lamure-Collège",46.052071,4.492879,-1,0,SIN:SA:OCE87484576,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87484584,1,"Poule-Mairie",46.148101,4.443914,-1,0,SIN:SA:OCE87484584,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87497222,1,"Chantenay-Imbert-Bourg",46.733078,3.183144,-1,0,SIN:SA:OCE87497222,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87501023,1,"Pierre-Le-Moutier-Monum",46.791381,3.11839,-1,0,SIN:SA:OCE87501023,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87503524,1,"L'Habitarelle",44.634198,3.675714,-1,0,SIN:SA:OCE87503524,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87534073,1,"Rochefort-Montagne",45.687115,2.805446,-1,0,SIN:SA:OCE87534073,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87534081,1,"Lanobre",45.436974,2.533923,-1,0,SIN:SA:OCE87534081,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87534099,1,"Bort-les-Orgues-Ville",45.399326,2.499248,-1,0,SIN:SA:OCE87534099,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87534107,1,"Tauves",45.560312,2.622102,-1,0,SIN:SA:OCE87534107,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87535096,1,"Aubenas-Gare-Routière",44.612264,4.407595,-1,0,SIN:SA:OCE87535096,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87548438,1,"Chateauneuf-Lamontgie",46.02558,2.896298,-1,0,SIN:SA:OCE87548438,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87556506,1,"Valence-Gare-Routière",44.927051,4.892615,-1,0,SIN:SA:OCE87556506,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87556522,1,"Montélimar-G-Routière",44.559458,4.745225,-1,0,SIN:SA:OCE87556522,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87562421,1,"Gare de Aulnat-Aéroport",45.792149,3.161272,-1,0,SIN:SA:OCE87562421,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87566869,1,"Chatel-Guyon-Tourisme",45.918396,3.074723,-1,0,SIN:SA:OCE87566869,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87566919,1,"Gare de Lentilly-Charpenay",45.816462,4.681294,-1,0,SIN:SA:OCE87566919,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87570374,1,"Moulet-Marcenat",45.880665,2.998998,-1,0,SIN:SA:OCE87570374,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87576009,1,"Gare de Vierzon",47.226516,2.059824,-1,0,SIN:SA:OCE87576009,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87576272,1,"Gare de St-Florent-sur-Cher",46.992115,2.252149,-1,0,SIN:SA:OCE87576272,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87576298,1,"Gare de Châteauneuf-sur-Cher",46.856686,2.310212,-1,0,SIN:SA:OCE87576298,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87576322,1,"Gare de St-Amand-Montrond-Orval",46.726521,2.486062,-1,0,SIN:SA:OCE87576322,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87589390,1,"Allegre-Maison-Retraite",45.201964,3.713789,-1,0,SIN:SA:OCE87589390,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87589499,1,"Condat-Centre-Equestre",45.333813,2.758561,-1,0,SIN:SA:OCE87589499,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87589507,1,"Darsac-Lotissement",45.138847,3.73854,-1,0,SIN:SA:OCE87589507,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87589564,1,"Gannat-Lycée-Eiffel",46.086162,3.197861,-1,0,SIN:SA:OCE87589564,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87589572,1,"Gannat-Lycée-Procule",46.099205,3.190008,-1,0,SIN:SA:OCE87589572,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87589580,1,"Ville-Gozet-Henri-Dunan",46.347913,2.593641,-1,0,SIN:SA:OCE87589580,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87589598,1,"Puy-en-Velay-Hopital",45.0492,3.8772,-1,0,SIN:SA:OCE87589598,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87589606,1,"Ancizes-St-Georges-Bour",45.924675,2.810414,-1,0,SIN:SA:OCE87589606,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87589689,1,"Ancizes-St-Georges-Usin",45.921744,2.810002,-1,0,SIN:SA:OCE87589689,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87589705,1,"Malaguet",45.24676,3.7196,-1,0,SIN:SA:OCE87589705,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87589804,1,"Reugny-Rue-Bascule",46.46278,2.615431,-1,0,SIN:SA:OCE87589804,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87589846,1,"St-Georges-Mons-Ecoles",45.93748,2.840995,-1,0,SIN:SA:OCE87589846,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87590976,1,"Serres-Hte-Loire",45.177195,3.733287,-1,0,SIN:SA:OCE87590976,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87592006,1,"Gare de Limoges-Bénédictins",45.836208,1.267452,-1,0,SIN:SA:OCE87592006,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87594002,1,"Gare de Brive-la-Gaillarde",45.152562,1.528623,-1,0,SIN:SA:OCE87594002,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87594093,1,"Gare de Ussel",45.557326,2.314433,-1,0,SIN:SA:OCE87594093,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87594564,1,"Gare de Les Quatre-Routes",44.99702,1.644498,-1,0,SIN:SA:OCE87594564,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87594572,1,"Gare de St-Denis-près-Martel",44.945792,1.666287,-1,0,SIN:SA:OCE87594572,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87594754,1,"Gare de Puybrun",44.921716,1.784029,-1,0,SIN:SA:OCE87594754,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87594762,1,"Gare de Bretenoux-Biars",44.927568,1.844204,-1,0,SIN:SA:OCE87594762,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87597609,1,"Gare de Guéret",46.174146,1.87917,-1,0,SIN:SA:OCE87597609,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87597724,1,"Gare de Parsac-Gouzon",46.198312,2.174196,-1,0,SIN:SA:OCE87597724,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87598755,1,"Gare de Limoux-Flassian",43.068508,2.218515,-1,0,SIN:SA:OCE87598755,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87609354,1,"Bagnols-Stade",45.513781,2.59691,-1,0,SIN:SA:OCE87609354,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87611483,1,"Gare de Latour-de-Carol-Enveitg",42.458157,1.90584,-1,0,SIN:SA:OCE87611483,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87611491,1,"Porta",42.520349,1.822342,-1,0,SIN:SA:OCE87611491,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87611509,1,"Gare de Porte-Puymorens",42.538759,1.82485,-1,0,SIN:SA:OCE87611509,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87611517,1,"Gare de Andorre-L'Hospitalet",42.588385,1.798515,-1,0,SIN:SA:OCE87611517,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87611533,1,"Gare de Ax-les-Thermes",42.724805,1.833315,-1,0,SIN:SA:OCE87611533,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87611558,1,"Gare de Luzenac-Garanou",42.764444,1.753154,-1,0,SIN:SA:OCE87611558,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87611566,1,"Vèbre-La-Remise",42.773916,1.719166,-1,0,SIN:SA:OCE87611566,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87611582,1,"Ussat-les-Bains-Centre",42.821052,1.621331,-1,0,SIN:SA:OCE87611582,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87611590,1,"Gare de Tarascon-sur-Ariège",42.849453,1.600031,-1,0,SIN:SA:OCE87611590,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87611616,1,"Gare de Foix",42.969299,1.607394,-1,0,SIN:SA:OCE87611616,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87613091,1,"Gare de Figeac",44.603514,2.037077,-1,0,SIN:SA:OCE87613091,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87613604,1,"Gare de Bagnac",44.66528,2.160163,-1,0,SIN:SA:OCE87613604,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87615120,1,"Gare de Couffoulens-Leuc",43.155171,2.316929,-1,0,SIN:SA:OCE87615120,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87615138,1,"Gare de Verzeille",43.130419,2.321219,-1,0,SIN:SA:OCE87615138,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87615146,1,"Gare de Pomas",43.112171,2.288384,-1,0,SIN:SA:OCE87615146,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87615161,1,"Gare de Limoux",43.056475,2.222999,-1,0,SIN:SA:OCE87615161,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87615187,1,"Gare de Alet-les-Bains",42.997211,2.251852,-1,0,SIN:SA:OCE87615187,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87615203,1,"Gare de Couiza-Montazels",42.9426,2.248326,-1,0,SIN:SA:OCE87615203,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87615211,1,"Gare de Esperaza",42.935816,2.21803,-1,0,SIN:SA:OCE87615211,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87615229,1,"Gare de Campagne-sur-Aude",42.916245,2.204272,-1,0,SIN:SA:OCE87615229,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87615260,1,"Gare de Quillan",42.874293,2.181507,-1,0,SIN:SA:OCE87615260,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87615286,1,"Gare de Carcassonne",43.217715,2.351883,-1,0,SIN:SA:OCE87615286,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87630236,1,"St Romain Lachalm",45.265626,4.335242,-1,0,SIN:SA:OCE87630236,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87630244,1,"St-Pal-de-Mons",45.245897,4.273885,-1,0,SIN:SA:OCE87630244,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87630251,1,"St-Didier-en-Velay",45.302305,4.274096,-1,0,SIN:SA:OCE87630251,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87640599,1,"Aimargues-Café-Lyces",43.684402,4.2076,-1,0,SIN:SA:OCE87640599,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87640607,1,"Vauvert-Maison-p/o-Tous",43.695382,4.274963,-1,0,SIN:SA:OCE87640607,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87640615,1,"Beauvoisin-Pl-Fontaine",43.7198,4.323759,-1,0,SIN:SA:OCE87640615,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87640623,1,"St-Cesaire-Mas-Cheylon",44.028879,4.205553,-1,0,SIN:SA:OCE87640623,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87640631,1,"Marvejols-PL-Henri-IV",44.555179,3.290936,-1,0,SIN:SA:OCE87640631,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87640649,1,"Chirac-Ville",44.52286,3.267369,-1,0,SIN:SA:OCE87640649,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87640656,1,"Balsieges-Arrêt-RN88",44.482325,3.456205,-1,0,SIN:SA:OCE87640656,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87640672,1,"Les-Salelles-RN88",44.483435,3.279632,-1,0,SIN:SA:OCE87640672,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87640680,1,"Le-Bruel-RN88",44.481419,3.35815,-1,0,SIN:SA:OCE87640680,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87640698,1,"Le-Monastier-Ville",44.51564,3.255371,-1,0,SIN:SA:OCE87640698,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87640706,1,"Campagne-sur-Aude-Pont",42.915905,2.205422,-1,0,SIN:SA:OCE87640706,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87640714,1,"Couiza-Ste-Anne",42.941446,2.253671,-1,0,SIN:SA:OCE87640714,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87640722,1,"Pomas-Lavoir",43.112046,2.29015,-1,0,SIN:SA:OCE87640722,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87640730,1,"Verzeille-Rte-de-St-Hil",43.127446,2.324605,-1,0,SIN:SA:OCE87640730,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87640748,1,"Leuc-Foyer",43.146142,2.323214,-1,0,SIN:SA:OCE87640748,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87640755,1,"Couffoulens-Leuc-RD104",43.154596,2.318328,-1,0,SIN:SA:OCE87640755,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87641001,1,"Gare de Montluçon-Ville",46.337875,2.596412,-1,0,SIN:SA:OCE87641001,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87641043,1,"Gare de Lapeyrouse(Puy-de-Dôme)",46.226691,2.893278,-1,0,SIN:SA:OCE87641043,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87641092,1,"St-Eloy",46.169528,2.834382,-1,0,SIN:SA:OCE87641092,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87641134,1,"St-Gervais-Mairie",46.030319,2.808175,-1,0,SIN:SA:OCE87641134,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87641167,1,"Les Ancizes-St-Georges",45.925725,2.808888,-1,0,SIN:SA:OCE87641167,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87641183,1,"Manzat",45.962471,2.942202,-1,0,SIN:SA:OCE87641183,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87641241,1,"Eygurande-Merlines",45.645326,2.460978,-1,0,SIN:SA:OCE87641241,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87641274,1,"Laqueuille",45.64695,2.704938,-1,0,SIN:SA:OCE87641274,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87641290,1,"La Miouze-Rochefort",45.763683,2.8275,-1,0,SIN:SA:OCE87641290,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87641357,1,"Gare de Vallon-en-Sully",46.536485,2.610803,-1,0,SIN:SA:OCE87641357,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87641365,1,"Gare de Magnette",46.46415,2.603004,-1,0,SIN:SA:OCE87641365,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87641373,1,"Gare de Les Trillers",46.414413,2.599717,-1,0,SIN:SA:OCE87641373,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87641399,1,"Le Vauriat",45.860325,2.920486,-1,0,SIN:SA:OCE87641399,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87641415,1,"Gare de Commentry",46.295196,2.740011,-1,0,SIN:SA:OCE87641415,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87641423,1,"Gare de Volvic",45.864581,3.003041,-1,0,SIN:SA:OCE87641423,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87641456,1,"St-Sauves",45.608407,2.685736,-1,0,SIN:SA:OCE87641456,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87641464,1,"La Bourboule",45.590452,2.746387,-1,0,SIN:SA:OCE87641464,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87641472,1,"Le-Mont-Dore-Gare",45.579355,2.804801,-1,0,SIN:SA:OCE87641472,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87645002,1,"Gare de Aurillac",44.920986,2.435547,-1,0,SIN:SA:OCE87645002,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87645135,1,"Gare de Laroquebrou",44.964201,2.192841,-1,0,SIN:SA:OCE87645135,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87645168,1,"Gare de Maurs",44.706133,2.199697,-1,0,SIN:SA:OCE87645168,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87645192,1,"Gare de Le Rouget",44.856555,2.235418,-1,0,SIN:SA:OCE87645192,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87645267,1,"Mauriac",45.221784,2.34489,-1,0,SIN:SA:OCE87645267,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87645283,1,"Vendes",45.296779,2.388505,-1,0,SIN:SA:OCE87645283,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87645440,1,"Gare de Vic-sur-Cère",44.975948,2.631437,-1,0,SIN:SA:OCE87645440,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87645473,1,"Gare de Le Lioran",45.09075,2.753267,-1,0,SIN:SA:OCE87645473,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87645481,1,"Gare de Murat (Cantal)",45.109081,2.869588,-1,0,SIN:SA:OCE87645481,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87645507,1,"Gare de Neussargues",45.125386,2.979126,-1,0,SIN:SA:OCE87645507,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87645606,1,"Ste-Anastasie",45.17272,2.968379,-1,0,SIN:SA:OCE87645606,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87645614,1,"Allanche",45.22967,2.931457,-1,0,SIN:SA:OCE87645614,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87645705,1,"Bort-les-Orgues",45.406357,2.502563,-1,0,SIN:SA:OCE87645705,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87666099,1,"Chamelet-Centre.",27.140973,-3.404561,-1,0,SIN:SA:OCE87666099,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87667980,1,"Diou-ville-Allier-(Bus)",46.533349,3.747946,-1,0,SIN:SA:OCE87667980,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87668004,1,"Villeneuve-/-Allier-Cen",46.660109,3.247787,-1,0,SIN:SA:OCE87668004,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87668095,1,"Thiel-Sur-Acolin-Bus",46.526266,3.578794,-1,0,SIN:SA:OCE87668095,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87668111,1,"Montbeugny-Centre",46.528189,3.492704,-1,0,SIN:SA:OCE87668111,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87677096,1,"Changy-Tourny-Monument",46.403334,4.253001,-1,0,SIN:SA:OCE87677096,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87677138,1,"Chauffailles-Gambetta",46.206913,4.336505,-1,0,SIN:SA:OCE87677138,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87680504,1,"Les-Trilliers-PN-Car.",27.140973,-3.404561,-1,0,SIN:SA:OCE87680504,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87680553,1,"Riom_Es_M_la_Poste.",27.140973,-3.404561,-1,0,SIN:SA:OCE87680553,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87680579,1,"Royat-T2C-Beausite.",45.768236,3.061834,-1,0,SIN:SA:OCE87680579,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87680595,1,"St-Gervais-Ch-LPA.",27.140973,-3.404561,-1,0,SIN:SA:OCE87680595,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87680694,1,"Chamalières-park-mun.",27.140973,-3.404561,-1,0,SIN:SA:OCE87680694,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87680702,1,"Clermont-Uni-T2C.",45.77135,3.089131,-1,0,SIN:SA:OCE87680702,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87680710,1,"Durtol-squa-sabourin.",45.795954,3.052385,-1,0,SIN:SA:OCE87680710,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87680728,1,"Fix-St-Geneys-RN102.",27.140973,-3.404561,-1,0,SIN:SA:OCE87680728,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87680736,1,"Lavoute-Arrêt-CG.",27.140973,-3.404561,-1,0,SIN:SA:OCE87680736,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87686600,1,"Puy-Guillaume-Emmaüs",27.140973,-3.404561,-1,0,SIN:SA:OCE87686600,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87686634,1,"La-Sauvanie",27.140973,-3.404561,-1,0,SIN:SA:OCE87686634,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87687400,1,"Coubladour-Rond-Point",27.140973,-3.404561,-1,0,SIN:SA:OCE87687400,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87691279,1,"Theix-Centre",27.140973,-3.404561,-1,0,SIN:SA:OCE87691279,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87691576,1,"La-Cluse-Ville",46.170815,5.576363,-1,0,SIN:SA:OCE87691576,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87693218,1,"Le-Mont-Dore-Centre",45.572562,2.808595,-1,0,SIN:SA:OCE87693218,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87693291,1,"Le-Mont-Dore-Ski",27.140973,-3.404561,-1,0,SIN:SA:OCE87693291,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87694687,1,"Gare de Paray-le-Monial",46.447256,4.113628,-1,0,SIN:SA:OCE87694687,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87694695,1,"Gare de Digoin",46.485196,3.987637,-1,0,SIN:SA:OCE87694695,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87694729,1,"Dyo",46.351716,4.26604,-1,0,SIN:SA:OCE87694729,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87694737,1,"Gare de La Clayette-Baudemont",46.288162,4.298451,-1,0,SIN:SA:OCE87694737,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87694778,1,"Gare de Chauffailles",46.207404,4.345377,-1,0,SIN:SA:OCE87694778,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87694851,1,"Gare de St-Agnan",46.502017,3.879009,-1,0,SIN:SA:OCE87694851,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87694869,1,"Gare de Gilly-sur-Loire",46.536983,3.781787,-1,0,SIN:SA:OCE87694869,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87694885,1,"Charolles",46.435153,4.273414,-1,0,SIN:SA:OCE87694885,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87695957,1,"Aiguebelette-Centre",45.53747,5.812967,-1,0,SIN:SA:OCE87695957,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87695965,1,"Ambronay-Priay-Rd-1075",46.009723,5.340888,-1,0,SIN:SA:OCE87695965,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87695973,1,"Bellignat-Lycée-Arbez-C",46.250586,5.632869,-1,0,SIN:SA:OCE87695973,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87695981,1,"Bellignat-Mairie",46.24243,5.629702,-1,0,SIN:SA:OCE87695973,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87695999,1,"Bourg-En-Bresse-Archive",27.140973,-3.404561,-1,0,SIN:SA:OCE87695999,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87696005,1,"Gare de Nevers",46.987349,3.15087,-1,0,SIN:SA:OCE87696005,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87696013,1,"Bourg-En-Bresse-Gare-Ro",46.200098,5.214981,-1,0,SIN:SA:OCE87696013,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87696054,1,"Ceyzeriat-Mairie",46.17902,5.322054,-1,0,SIN:SA:OCE87695973,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87696153,1,"Hautecourt-Primaire",46.157876,5.420158,-1,0,SIN:SA:OCE87696153,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87696260,1,"Gare de Saincaize",46.931373,3.071971,-1,0,SIN:SA:OCE87696260,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87696294,1,"Gare de St-Pierre-le-Moûtier",46.793271,3.111736,-1,0,SIN:SA:OCE87696294,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87696302,1,"Gare de Chantenay-St-Imbert",46.728304,3.171699,-1,0,SIN:SA:OCE87696302,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87696328,1,"Gare de Moulins-sur-Allier",46.561364,3.338755,-1,0,SIN:SA:OCE87696328,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87696351,1,"Gare de Varennes-sur-Allier",46.315441,3.394161,-1,0,SIN:SA:OCE87696351,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87696385,1,"Les-Abrets-Rue-Italie",45.537169,5.584643,-1,0,SIN:SA:OCE87696385,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87696427,1,"Gare de Dompierre-Sept-Fons",46.526267,3.674899,-1,0,SIN:SA:OCE87696427,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87696443,1,"Moutiers-Lycée",45.482868,6.529379,-1,0,SIN:SA:OCE87695973,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87696500,1,"St-Martin-Du-Mont-Le-Fa",46.095643,5.314407,-1,0,SIN:SA:OCE87696500,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87696658,1,"St-Paul-College",45.594344,6.44251,-1,0,SIN:SA:OCE87696658,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87697003,1,"Albigny-Neuville-Arret",45.875407,4.833204,-1,0,SIN:SA:OCE87697003,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87697011,1,"Anse-(Monument)",45.936973,4.718234,-1,0,SIN:SA:OCE87697011,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87697029,1,"Collonges-F.-Tcl-Gar",45.831344,4.84664,-1,0,SIN:SA:OCE87697029,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87697037,1,"Couzon-Au-Mont-D'or-Arr",45.848951,4.83204,-1,0,SIN:SA:OCE87697037,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87697045,1,"Lyon-Vaise-Gare-Routièr",45.781597,4.805428,-1,0,SIN:SA:OCE87697045,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87697128,1,"Gare de Lyon-Part-Dieu-Gare-Rou",45.760585,4.859435,-1,0,SIN:SA:OCE87697128,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87697136,1,"Lyon-Perrache-Gare-Rout",27.140973,-3.404561,-1,0,SIN:SA:OCE87697136,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87697144,1,"Argentine-La-Combe",45.501996,6.318867,-1,0,SIN:SA:OCE87697144,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87697151,1,"Argentine-Gemelly",45.508123,6.316298,-1,0,SIN:SA:OCE87697151,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87697169,1,"Legny-Ponts-Tarrets",45.906795,4.575537,-1,0,SIN:SA:OCE87697169,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87697177,1,"Chabons-Lep",45.444264,5.430717,-1,0,SIN:SA:OCE87697177,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87697193,1,"Clelles-Mairie",44.827226,5.622607,-1,0,SIN:SA:OCE87697193,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87697466,1,"Grenoble-Eugène-Chavant",27.140973,-3.404561,-1,0,SIN:SA:OCE87697466,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87697474,1,"Grenoble-Victor-Hugo",27.140973,-3.404561,-1,0,SIN:SA:OCE87697466,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87697482,1,"Grenoble-Champollion",27.140973,-3.404561,-1,0,SIN:SA:OCE87697466,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87697508,1,"La-Bridoire-Abris-Bus",45.530786,5.742835,-1,0,SIN:SA:OCE87697508,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87697516,1,"Lus-La-Croix-Haute-1075",44.672095,5.698049,-1,0,SIN:SA:OCE87697516,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87697524,1,"Monestier-Centre",44.916285,5.634476,-1,0,SIN:SA:OCE87697524,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87697532,1,"Pont-Claix-TAG-Marcelli",45.125736,5.698188,-1,0,SIN:SA:OCE87697532,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87697540,1,"Pringy-Gare-Arret-Sibra",45.939056,6.122245,-1,0,SIN:SA:OCE87697540,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87697672,1,"Bourg-en-Bresse-Charité",27.140973,-3.404561,-1,0,SIN:SA:OCE87697672,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87697698,1,"La-Chambre",45.359134,6.299662,-1,0,SIN:SA:OCE87697698,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87697706,1,"Polliat-Mairie",46.249302,5.126,-1,0,SIN:SA:OCE87695973,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87697714,1,"Pontamafrey",45.310951,6.342517,-1,0,SIN:SA:OCE87697714,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87697722,1,"Saint-Étienne-de-Cuines",45.342273,6.291278,-1,0,SIN:SA:OCE87697722,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87697730,1,"Simandre-Suran-Mairie",46.224562,5.415107,-1,0,SIN:SA:OCE87695973,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87698290,1,"Grandris-Centre",46.036918,4.472329,-1,0,SIN:SA:OCE87698290,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87698308,1,"Grésy-S/Aix-Ondea",45.723245,5.918449,-1,0,SIN:SA:OCE87698308,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87698316,1,"Tour-de-Salvagny-Hyppo",45.806348,4.719653,-1,0,SIN:SA:OCE87698316,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87698332,1,"Lyon-St-Paul-Quai-Bondy",45.766488,4.828105,-1,0,SIN:SA:OCE87698332,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87698340,1,"Lyon-St-Paul-la-Feuilée",45.766342,4.829385,-1,0,SIN:SA:OCE87698340,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87698399,1,"Balbigny-Gare-Routière",45.817749,4.187397,-1,0,SIN:SA:OCE87698399,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87698415,1,"Beynost-RD1084-Gare",27.140973,-3.404561,-1,0,SIN:SA:OCE87556506,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87698423,1,"Chamberry-Jacob",45.557789,5.910274,-1,0,SIN:SA:OCE87698423,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87698449,1,"Communay-la-Guicharde",27.140973,-3.404561,-1,0,SIN:SA:OCE87698449,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87698456,1,"Communay-les-Bonnières",27.140973,-3.404561,-1,0,SIN:SA:OCE87698456,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87698464,1,"Communay-les-Brosses",27.140973,-3.404561,-1,0,SIN:SA:OCE87698464,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87698506,1,"Feyzin-TCL-Gare",45.665467,4.853116,-1,0,SIN:SA:OCE87698506,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87698514,1,"Flumet-Office-Tourisme",45.817585,6.513626,-1,0,SIN:SA:OCE87698514,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87698530,1,"Le-Bourget-du-Lac-STAC",45.64449,5.868751,-1,0,SIN:SA:OCE87698530,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87698555,1,"Le-Teil-Centre",44.553058,4.685483,-1,0,SIN:SA:OCE87698555,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87698563,1,"Megève-Autogare",45.862105,6.61768,-1,0,SIN:SA:OCE87698563,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87698571,1,"Miribel-RD1084-Élysée",45.825387,4.956221,-1,0,SIN:SA:OCE87556506,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87698589,1,"Mionnay-la-Poste",45.898906,4.931264,-1,0,SIN:SA:OCE87698589,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87698605,1,"Neulise",45.902665,4.180374,-1,0,SIN:SA:OCE87698605,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87698613,1,"Praz-sur-Arly-O.T.",45.837804,6.570849,-1,0,SIN:SA:OCE87698613,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87698621,1,"Privas-Cours-du-Palais",44.734713,4.600253,-1,0,SIN:SA:OCE87698621,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87698639,1,"Roanne-Gare-Routière",46.041211,4.060763,-1,0,SIN:SA:OCE87698639,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87698654,1,"Saillans-Pont-Algoud",44.695102,5.196761,-1,0,SIN:SA:OCE87697532,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87698662,1,"Saint-Etienne-Chtx-G.Ro",45.4427,4.399856,-1,0,SIN:SA:OCE87556506,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87698720,1,"Sury-le-Comtal-Ville",45.540526,4.187252,-1,0,SIN:SA:OCE87698720,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87698738,1,"Tassin-le-Baraillon",45.764497,4.75862,-1,0,SIN:SA:OCE87698738,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87698746,1,"Ternay-Boucherrates",27.140973,-3.404561,-1,0,SIN:SA:OCE87698746,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87698753,1,"Ternay-Centre",45.605328,4.811209,-1,0,SIN:SA:OCE87698753,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87698761,1,"Ternay-Chassagne-GC",27.140973,-3.404561,-1,0,SIN:SA:OCE87698761,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87698779,1,"Ternay-Chemin-de-gare",27.140973,-3.404561,-1,0,SIN:SA:OCE87698779,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87698787,1,"Ternay-Croix-du-Morze",27.140973,-3.404561,-1,0,SIN:SA:OCE87698787,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87698795,1,"Ugine-Place-Val-d'Arly",45.745953,6.421083,-1,0,SIN:SA:OCE87698795,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87698803,1,"Vienne-Gare-Routière",45.521417,4.874058,-1,0,SIN:SA:OCE87698803,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87699009,1,"La Chapelle-sous-Dun",46.258054,4.295551,-1,0,SIN:SA:OCE87699009,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87700104,1,"Paugnat-Eglise",27.140973,-3.404561,-1,0,SIN:SA:OCE87700104,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87713677,1,"Gare de Seurre",46.99645,5.151248,-1,0,SIN:SA:OCE87713677,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87713701,1,"Gare de Mervans",46.798883,5.179536,-1,0,SIN:SA:OCE87713701,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87713735,1,"Gare de Louhans",46.631126,5.217708,-1,0,SIN:SA:OCE87713735,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87715441,1,"Gare de Morez",46.526327,6.023801,-1,0,SIN:SA:OCE87715441,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87721035,1,"Gare de Amplepuis",45.971001,4.326723,-1,0,SIN:SA:OCE87721035,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87721043,1,"Gare de St-Victor-Thizy",46.002585,4.281147,-1,0,SIN:SA:OCE87721043,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87721050,1,"Gare de Régny",45.987729,4.215111,-1,0,SIN:SA:OCE87721050,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87721159,1,"Gare de Lyon-St-Paul",45.766082,4.826904,-1,0,SIN:SA:OCE87721159,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87721175,1,"Gare de Lyon-Gorge-de-Loup",45.766077,4.804731,-1,0,STE:SA:OCE87721175,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87721282,1,"Gare de St-Germain-au-Mont-d'Or",45.888442,4.804176,-1,0,SIN:SA:OCE87721282,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87721290,1,"Gare de Quincieux",45.906904,4.778574,-1,0,SIN:SA:OCE87721290,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87721332,1,"Gare de Villefranche-sur-Saône",45.984444,4.720814,-1,0,SIN:SA:OCE87721332,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87721340,1,"Gare de St-Georges-de-Reneins",46.062191,4.718887,-1,0,SIN:SA:OCE87721340,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87721357,1,"Gare de Belleville-sur-Saône",46.111942,4.729002,-1,0,SIN:SA:OCE87721357,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87721423,1,"Gare de Lozanne",45.854135,4.68146,-1,0,SIN:SA:OCE87721423,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87721431,1,"Gare de L'Arbresle",45.833249,4.618236,-1,0,SIN:SA:OCE87721431,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87721449,1,"Gare de Dardilly-Le-Jubin",45.813655,4.758482,-1,0,SIN:SA:OCE87721449,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87721456,1,"Gare de St-Romain-de-Popey",45.861532,4.542259,-1,0,SIN:SA:OCE87721456,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87721464,1,"Gare de Pontcharra-St-Forgeux",45.871509,4.492797,-1,0,SIN:SA:OCE87721464,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87721472,1,"Gare de Tarare",45.889788,4.439075,-1,0,SIN:SA:OCE87721472,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87721480,1,"Gare de Dardilly-Les-Mouilles",45.801183,4.756221,-1,0,SIN:SA:OCE87721480,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87721506,1,"Gare de Ecully-la-Demi-Lune",45.76571,4.77952,-1,0,SIN:SA:OCE87721506,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87721514,1,"Gare de Tassin",45.761528,4.758592,-1,0,SIN:SA:OCE87721514,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87721522,1,"Gare de Le Méridien",45.768833,4.748303,-1,0,SIN:SA:OCE87721522,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87721530,1,"Gare de Charbonnières-les-Bains",45.78216,4.735855,-1,0,STE:SA:OCE87721530,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87721548,1,"Gare de La Tour-de-Salvagny",45.800077,4.716151,-1,0,SIN:SA:OCE87721548,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87721555,1,"Gare de Lentilly",45.821682,4.667021,-1,0,SIN:SA:OCE87721555,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87721563,1,"Gare de Fleurieux-sur-Arbresle",45.844749,4.660569,-1,0,SIN:SA:OCE87721563,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87721605,1,"Gare de Sain-Bel",45.811064,4.601252,-1,0,SIN:SA:OCE87721605,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87721738,1,"Gare de Dommartin-Lissieu",45.847855,4.732195,-1,0,SIN:SA:OCE87721738,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87721746,1,"Gare de Civrieux-d'Azergues",45.859195,4.718249,-1,0,SIN:SA:OCE87721746,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87721753,1,"Gare de Chatillon-d'Azergues",45.875254,4.645199,-1,0,SIN:SA:OCE87721753,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87721761,1,"Gare de Chessy (Rhône)",45.885537,4.622497,-1,0,SIN:SA:OCE87721761,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87721779,1,"Le Breuil (Rhône)",45.896771,4.591215,-1,0,SIN:SA:OCE87721779,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87721787,1,"Gare de Bois-d'Oingt-Légny",45.906588,4.57558,-1,0,SIN:SA:OCE87721787,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87721811,1,"Ternand",45.946157,4.536593,-1,0,SIN:SA:OCE87721811,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87721829,1,"Gare de Chamelet",45.981605,4.507096,-1,0,SIN:SA:OCE87721829,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87721845,1,"Chambost-Allières.",46.018686,4.499135,-1,0,SIN:SA:OCE87721845,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87721852,1,"Grandris-Folletière.",46.035952,4.49333,-1,0,SIN:SA:OCE87721852,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87721860,1,"Gare de Lamure-sur-Azergues",46.061095,4.492123,-1,0,SIN:SA:OCE87721860,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87721878,1,"St-Nizier-d'Azergues",46.087032,4.48043,-1,0,SIN:SA:OCE87721878,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87721894,1,"Poule",46.148108,4.456527,-1,0,SIN:SA:OCE87721894,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87722025,1,"Gare de Lyon-Perrache",45.748492,4.825748,-1,0,SIN:SA:OCE87722025,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87722405,1,"Gare de Givors-Ville",45.585368,4.766243,-1,0,SIN:SA:OCE87722405,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87722538,1,"Gare de Feyzin",45.665891,4.853071,-1,0,STE:SA:OCE87722538,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87722546,1,"Gare de Sérézin",45.627175,4.818039,-1,0,SIN:SA:OCE87722546,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87722561,1,"Gare de Chasse-sur-Rhône",45.582394,4.79485,-1,0,SIN:SA:OCE87722561,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87722587,1,"Gare de Vienne",45.521214,4.874305,-1,0,SIN:SA:OCE87722587,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87722652,1,"Gare de St-Clair-les-Roches",45.450387,4.769905,-1,0,SIN:SA:OCE87722652,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87722678,1,"Gare de Le Péage-de-Roussillon",45.371659,4.795408,-1,0,SIN:SA:OCE87722678,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87723197,1,"Gare de Lyon-Part-Dieu",45.760585,4.859435,-1,0,SIN:SA:OCE87723197,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87723320,1,"Gare de Vénissieux",45.705608,4.887955,-1,0,STE:SA:OCE87723320,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87723353,1,"Gare de St-Priest",45.686649,4.934314,-1,0,SIN:SA:OCE87723353,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87723361,1,"St-Pierre-de-Chandieu-R",45.647632,5.011816,-1,0,SIN:SA:OCE87723361,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87723387,1,"Gare de St-Quentin-Fallavier",45.63812,5.099951,-1,0,SIN:SA:OCE87723387,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87723395,1,"Gare de La Verpillière",45.627601,5.150745,-1,0,SIN:SA:OCE87723395,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87723429,1,"Gare de Bourgoin-Jallieu",45.583968,5.273344,-1,0,SIN:SA:OCE87723429,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87723478,1,"Gare de La Tour-du-Pin",45.560225,5.449547,-1,0,SIN:SA:OCE87723478,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87723494,1,"Gare de St-André-le-Gaz",45.544507,5.524286,-1,0,SIN:SA:OCE87723494,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87723536,1,"Gare de St-Maurice-de-Beynost",45.827433,4.977629,-1,0,SIN:SA:OCE87723536,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87723569,1,"Gare de Montluel",45.847763,5.057543,-1,0,SIN:SA:OCE87723569,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87723577,1,"Gare de La Valbonne",45.849261,5.124991,-1,0,SIN:SA:OCE87723577,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87723585,1,"Gare de Meximieux-Pérouges",45.901787,5.193333,-1,0,SIN:SA:OCE87723585,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87723700,1,"Gare de Sathonay-Rillieux",45.82025,4.875267,-1,0,SIN:SA:OCE87723700,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87723718,1,"Gare de Les Echets",45.874622,4.910811,-1,0,SIN:SA:OCE87723718,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87723734,1,"Gare de St-André-de-Corcy",45.92593,4.948782,-1,0,SIN:SA:OCE87723734,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87723742,1,"Gare de St-Marcel-en-Dombes",45.950366,4.977512,-1,0,SIN:SA:OCE87723742,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87723759,1,"Gare de Villars-les-Dombes",46.004255,5.028411,-1,0,SIN:SA:OCE87723759,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87723767,1,"Gare de Marlieux-Chatillon",46.06406,5.073203,-1,0,SIN:SA:OCE87723767,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87723783,1,"Gare de St-Paul-de-Varax",46.100057,5.128181,-1,0,SIN:SA:OCE87723783,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87723791,1,"Gare de Servas-Lent",46.130662,5.168125,-1,0,SIN:SA:OCE87723791,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87725689,1,"Gare de Mâcon-Ville",46.302659,4.825149,-1,0,SIN:SA:OCE87725689,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87725705,1,"Gare de Mâcon-Loché-TGV",46.282898,4.778948,-1,0,SIN:SA:OCE87725705,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87725713,1,"Gare de Crêches-sur-Saône",46.246615,4.783901,-1,0,SIN:SA:OCE87725713,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87725739,1,"Gare de Romanèche-Thorins",46.176382,4.742101,-1,0,SIN:SA:OCE87725739,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87725804,1,"Gare de Pont-de-Veyle",46.267827,4.892948,-1,0,SIN:SA:OCE87725804,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87725812,1,"St-Jean-sur-Veyle",46.260588,4.915644,-1,0,SIN:SA:OCE87725812,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87725820,1,"Gare de Vonnas",46.227197,4.991746,-1,0,SIN:SA:OCE87725820,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87725838,1,"Gare de Mézériat",46.234927,5.046569,-1,0,SIN:SA:OCE87725838,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87726000,1,"Gare de St-Etienne-Châteaucreux",45.443382,4.399996,-1,0,SIN:SA:OCE87726000,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87726158,1,"Gare de St-Etienne-la-Terrasse",45.464852,4.379529,-1,0,SIN:SA:OCE87726158,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87726208,1,"Gare de Veauche St Galmier",45.565928,4.293199,-1,0,SIN:SA:OCE87726208,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87726307,1,"Gare de St-Chamond",45.472522,4.516984,-1,0,SIN:SA:OCE87726307,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87726331,1,"Gare de Rive-de-Gier",45.524337,4.606362,-1,0,SIN:SA:OCE87726331,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87726406,1,"Gare de Andrézieux",45.521762,4.255176,-1,0,SIN:SA:OCE87726406,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87726414,1,"Gare de Bonson",45.522171,4.216222,-1,0,SIN:SA:OCE87726414,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87726422,1,"Gare de Sury-le-Comtal",45.529078,4.182426,-1,0,SIN:SA:OCE87726422,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87726430,1,"Gare de St-Romain-le-Puy",45.554546,4.12077,-1,0,SIN:SA:OCE87726430,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87726448,1,"Gare de Montbrison",45.604466,4.078218,-1,0,SIN:SA:OCE87726448,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87726471,1,"Boën",45.74137,4.005014,-1,0,SIN:SA:OCE87726471,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87726661,1,"St-Didier-la-Séauve",45.296787,4.259113,-1,0,SIN:SA:OCE87726661,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87726687,1,"Dunières-Bascule",45.211274,4.349684,-1,0,SIN:SA:OCE87726687,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87726729,1,"Gare de Firminy",45.391645,4.286429,-1,0,SIN:SA:OCE87726729,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87726760,1,"Gare de Aurec",45.371129,4.198434,-1,0,SIN:SA:OCE87726760,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87726778,1,"Gare de Bas-Monistrol",45.297668,4.139717,-1,0,SIN:SA:OCE87726778,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87726794,1,"Beauzac-Rue-des-Vivats",45.23567,4.094252,-1,0,SIN:SA:OCE87726794,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87726802,1,"Gare de Roanne",46.040211,4.063135,-1,0,SIN:SA:OCE87726802,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87726828,1,"Gare de Le Coteau",46.023935,4.086301,-1,0,SIN:SA:OCE87726828,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87726869,1,"Gare de Balbigny",45.817785,4.187385,-1,0,SIN:SA:OCE87726869,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87726877,1,"Gare de Feurs",45.744084,4.230446,-1,0,SIN:SA:OCE87726877,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87726885,1,"Gare de Montrond-les-Bains",45.644402,4.248833,-1,0,SIN:SA:OCE87726885,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87731653,1,"Néronde",45.79871,3.520632,-1,0,SIN:SA:OCE87731653,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87731695,1,"Job",45.61592,3.745572,-1,0,SIN:SA:OCE87731695,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87731703,1,"La Forie",45.590508,3.762072,-1,0,SIN:SA:OCE87731703,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87731778,1,"Monlet",45.219711,3.714153,-1,0,SIN:SA:OCE87731778,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87731786,1,"Céaux-d'Allègre",45.18083,3.747499,-1,0,SIN:SA:OCE87731786,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87731802,1,"St-George-d'Aurac-Bourg",45.156218,3.540769,-1,0,SIN:SA:OCE87731802,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87732008,1,"Gare de Vichy",46.12697,3.430489,-1,0,SIN:SA:OCE87732008,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87732206,1,"Gare de St-Germain-des-Fossés",46.209103,3.430489,-1,0,SIN:SA:OCE87732206,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87732404,1,"Gare de Gannat",46.097436,3.20488,-1,0,SIN:SA:OCE87732404,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87734004,1,"Gare de Clermont-Ferrand",45.778569,3.100519,-1,0,SIN:SA:OCE87734004,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87734038,1,"Gare de Royat-Chamalières",45.767572,3.061504,-1,0,SIN:SA:OCE87734038,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87734053,1,"Gare de Riom-Châtel-Guyon",45.889842,3.120813,-1,0,SIN:SA:OCE87734053,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87734087,1,"Gare de Pont-du-Château",45.788533,3.238421,-1,0,SIN:SA:OCE87734087,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87734129,1,"Gare de Aigueperse",46.014847,3.197877,-1,0,SIN:SA:OCE87734129,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87734186,1,"Gare de Vic-le-Comte",45.664898,3.207027,-1,0,SIN:SA:OCE87734186,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87734194,1,"Gare de Parent-Coudes-Champeix",45.61442,3.216807,-1,0,SIN:SA:OCE87734194,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87734202,1,"Gare de Issoire",45.543953,3.254071,-1,0,SIN:SA:OCE87734202,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87734228,1,"Gare de Le Breuil-sur-Couze",45.467089,3.262143,-1,0,SIN:SA:OCE87734228,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87734236,1,"Le Saut-du-Loup",45.452751,3.302208,-1,0,SIN:SA:OCE87734236,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87734244,1,"Gare de Brassac-les-Mines",45.4141,3.32993,-1,0,SIN:SA:OCE87734244,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87734251,1,"Gare de Arvant",45.365383,3.310488,-1,0,SIN:SA:OCE87734251,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87734269,1,"Gare de Brioude",45.300657,3.378675,-1,0,SIN:SA:OCE87734269,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87734293,1,"Gare de Paulhaguet",45.21015,3.500395,-1,0,SIN:SA:OCE87734293,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87734301,1,"Gare de St-Georges-d'Aurac",45.160594,3.494704,-1,0,SIN:SA:OCE87734301,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87734319,1,"Gare de Langeac",45.101225,3.490574,-1,0,SIN:SA:OCE87734319,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87734350,1,"Gare de Langogne",44.732607,3.857278,-1,0,SIN:SA:OCE87734350,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87734368,1,"Gare de Luc (Lozère)",44.65409,3.891105,-1,0,SIN:SA:OCE87734368,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87734426,1,"Gare de Vertaizon",45.784569,3.288226,-1,0,SIN:SA:OCE87734426,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87734442,1,"Gare de Lezoux",45.821139,3.385773,-1,0,SIN:SA:OCE87734442,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87734459,1,"Gare de Pont-de-Dore",45.842816,3.490427,-1,0,SIN:SA:OCE87734459,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87734475,1,"Gare de Thiers",45.861087,3.543058,-1,0,SIN:SA:OCE87734475,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87734509,1,"Noirétable",45.815906,3.761031,-1,0,SIN:SA:OCE87734509,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87734525,1,"Courpière",45.757656,3.544056,-1,0,SIN:SA:OCE87734525,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87734533,1,"Giroux",45.695371,3.590237,-1,0,SIN:SA:OCE87734533,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87734541,1,"Olliergues",45.675772,3.637051,-1,0,SIN:SA:OCE87734541,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87734558,1,"Pont-de-David",45.645049,3.668076,-1,0,SIN:SA:OCE87734558,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87734566,1,"Vertolaye",45.642927,3.706008,-1,0,SIN:SA:OCE87734566,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87734574,1,"Ambert",45.549647,3.735071,-1,0,SIN:SA:OCE87734574,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87734582,1,"Marsac-en-Livradois",45.481524,3.726544,-1,0,SIN:SA:OCE87734582,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87734590,1,"Arlanc-Place-Eglise",45.413238,3.724652,-1,0,SIN:SA:OCE87734590,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87734632,1,"La Chaise-Dieu",45.316443,3.696954,-1,0,SIN:SA:OCE87734632,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87734640,1,"Sembadel",45.277965,3.720148,-1,0,SIN:SA:OCE87734640,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87734665,1,"Allègre",45.203328,3.713327,-1,0,SIN:SA:OCE87734665,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87734673,1,"Gare de Darsac",45.142191,3.736667,-1,0,SIN:SA:OCE87734673,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87734681,1,"Borne",45.100197,3.798542,-1,0,SIN:SA:OCE87734681,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87734699,1,"Gare de Le Puy-en-Velay",45.042724,3.892528,-1,0,SIN:SA:OCE87734699,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87734707,1,"Gare de Lavoûte-sur-Loire",45.121295,3.905323,-1,0,SIN:SA:OCE87734707,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87734715,1,"Gare de St-Vincent-le-Château",45.148612,3.918503,-1,0,SIN:SA:OCE87734715,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87734723,1,"Gare de Vorey",45.182877,3.911361,-1,0,SIN:SA:OCE87734723,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87734731,1,"Gare de Chamalières",45.205918,3.99197,-1,0,SIN:SA:OCE87734731,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87734749,1,"Gare de Retournac",45.201312,4.036033,-1,0,SIN:SA:OCE87734749,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87734871,1,"Gare de Massiac-Blesle",45.253703,3.196585,-1,0,SIN:SA:OCE87734871,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87739961,1,"St-Symphorien-des-Bois",46.332735,4.2814,-1,0,SIN:SA:OCE87739961,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87741009,1,"Gare de Chambéry-Chal.-les-Eaux",45.571038,5.9198,-1,0,SIN:SA:OCE87741009,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87741074,1,"Gare de Culoz",45.843258,5.778699,-1,0,SIN:SA:OCE87741074,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87741108,1,"Gare de Vions-Chanaz",45.824386,5.807297,-1,0,SIN:SA:OCE87741108,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87741116,1,"Gare de Chindrieux",45.803459,5.846921,-1,0,SIN:SA:OCE87741116,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87741132,1,"Gare de Aix-les-Bains-le-Revard",45.687862,5.90935,-1,0,SIN:SA:OCE87741132,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87741140,1,"Gare de Viviers-du-Lac",45.648528,5.903319,-1,0,SIN:SA:OCE87741140,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87741181,1,"Gare de Montmélian",45.503065,6.043118,-1,0,SIN:SA:OCE87741181,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87741223,1,"Gare de St-Pierre-d'Albigny",45.557372,6.156358,-1,0,SIN:SA:OCE87741223,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87741231,1,"Gare de Chamousset",45.557515,6.206436,-1,0,SIN:SA:OCE87741231,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87741249,1,"Aiton-Salle-Polyvalente",45.559471,6.259363,-1,0,SIN:SA:OCE87741249,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87741256,1,"Gare de Aiguebelle",45.543666,6.306747,-1,0,SIN:SA:OCE87741256,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87741272,1,"Argentine",45.493258,6.313831,-1,0,SIN:SA:OCE87741272,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87741280,1,"Gare de Epierre-St-Léger",45.456968,6.292469,-1,0,SIN:SA:OCE87741280,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87741298,1,"Les Chavannes-St-Rémy",45.387624,6.276047,-1,0,SIN:SA:OCE87741298,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87741306,1,"Gare de St-Avre-la-Chambre",45.353102,6.302884,-1,0,SIN:SA:OCE87741306,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87741439,1,"Gare de Lépin-le-Lac-la-Bauche",45.541546,5.764963,-1,0,SIN:SA:OCE87741439,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87741447,1,"La Bridoire",45.531044,5.74294,-1,0,SIN:SA:OCE87741447,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87741454,1,"Gare de St-Béron-la-Bridoire",45.503934,5.731895,-1,0,SIN:SA:OCE87741454,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87741462,1,"Domessin-le-Bonnard",45.524942,5.695229,-1,0,SIN:SA:OCE87741462,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87741470,1,"Gare de Pont-de-Beauvoisin",45.524541,5.680665,-1,0,SIN:SA:OCE87741470,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87741496,1,"Gare de Les Abrets-Fitilieu",45.542126,5.575466,-1,0,SIN:SA:OCE87741496,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87741504,1,"Gare de Virieu-le-Grand-Belley",45.848315,5.653637,-1,0,SIN:SA:OCE87741504,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87741611,1,"Gare de Grésy-sur-Isère",45.594439,6.258861,-1,0,SIN:SA:OCE87741611,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87741629,1,"Gare de Frontenex",45.63055,6.314034,-1,0,SIN:SA:OCE87741629,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87741645,1,"Gare de Albertville",45.673184,6.383238,-1,0,SIN:SA:OCE87741645,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87741678,1,"La Bathie",45.629544,6.446135,-1,0,SIN:SA:OCE87741678,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87741686,1,"Cévins-échangeur",45.59503,6.446911,-1,0,SIN:SA:OCE87741686,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87741694,1,"Gare de Notre-Dame-de-Briançon",45.539307,6.468747,-1,0,SIN:SA:OCE87741694,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87741702,1,"Petit-Coeur-la-Léchère",45.520487,6.484088,-1,0,SIN:SA:OCE87741702,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87741710,1,"Aigueblanche-Centre",45.500203,6.511056,-1,0,SIN:SA:OCE87741710,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87741728,1,"Gare de Moûtiers-Salins-Brides",45.486477,6.531382,-1,0,SIN:SA:OCE87741728,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87741769,1,"Gare de Aime-la-Plagne",45.554368,6.648884,-1,0,SIN:SA:OCE87741769,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87741777,1,"Gare de Landry",45.574205,6.733866,-1,0,SIN:SA:OCE87741777,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87741793,1,"Gare de Bourg-St-Maurice",45.618521,6.771481,-1,0,SIN:SA:OCE87741793,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87742007,1,"Gare de Modane",45.193558,6.659178,-1,0,SIN:SA:OCE87742007,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87742320,1,"Gare de St-Jean-de-Maurienne-A.",45.277842,6.354198,-1,0,SIN:SA:OCE87742320,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87742361,1,"Gare de St-Michel-Valloire",45.217247,6.471118,-1,0,SIN:SA:OCE87742361,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87743005,1,"Gare de Bourg-en-Bresse",46.200126,5.214969,-1,0,SIN:SA:OCE87743005,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87743104,1,"La-Vavrette-Tossiat",46.132672,5.28769,-1,0,SIN:SA:OCE87743104,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87743112,1,"Gare de St-Martin-du-Mont",46.095816,5.303041,-1,0,SIN:SA:OCE87743112,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87743120,1,"Gare de Pont-d'Ain",46.054006,5.334332,-1,0,SIN:SA:OCE87743120,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87743146,1,"Gare de Ambronay-Priay",46.011639,5.338266,-1,0,SIN:SA:OCE87743146,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87743328,1,"Gare de Villereversure",46.194155,5.397522,-1,0,SIN:SA:OCE87743328,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87743351,1,"Gare de Nurieux",46.184727,5.527912,-1,0,SIN:SA:OCE87743351,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87743500,1,"Montréal",46.184275,5.577369,-1,0,SIN:SA:OCE87743500,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87743518,1,"Martignat",46.209449,5.610343,-1,0,SIN:SA:OCE87743518,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87743534,1,"Gare de Oyonnax",46.259609,5.653252,-1,0,SIN:SA:OCE87743534,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87743591,1,"Gare de Molinges",46.356961,5.768063,-1,0,SIN:SA:OCE87743591,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87743633,1,"Gare de St-Claude",46.38993,5.860389,-1,0,SIN:SA:OCE87743633,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87743716,1,"Gare de Ambérieu-en-Bugey",45.954008,5.342313,-1,0,SIN:SA:OCE87743716,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87743740,1,"Gare de St-Rambert-en-Bugey",45.947355,5.438595,-1,0,SIN:SA:OCE87743740,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87743757,1,"Gare de Tenay-Hauteville",45.9223,5.50095,-1,0,SIN:SA:OCE87743757,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87745000,1,"Gare de Bellegarde-Gare",46.109704,5.823646,-1,0,SIN:SA:OCE87745000,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87745430,1,"Gare de St-Julien-en-Genevois",46.142063,6.085524,-1,0,SIN:SA:OCE87745430,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87745497,1,"Gare de Annemasse",46.19923,6.236388,-1,0,SIN:SA:OCE87745497,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87745588,1,"Gare de Machilly",46.251269,6.32818,-1,0,SIN:SA:OCE87745588,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87745596,1,"Gare de Bons-en-Chablais",46.270031,6.366161,-1,0,SIN:SA:OCE87745596,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87745620,1,"Gare de Perrignier",46.303286,6.424921,-1,0,SIN:SA:OCE87745620,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87745646,1,"Gare de Thonon-les-Bains",46.36898,6.481557,-1,0,SIN:SA:OCE87745646,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87745679,1,"Gare de Evian-les-Bains",46.397889,6.577472,-1,0,SIN:SA:OCE87745679,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87745927,1,"Genève-Eaux-Vives-Rieu",46.200728,6.16596,-1,0,SIN:SA:OCE87745927,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87746008,1,"Gare de Annecy",45.902059,6.121819,-1,0,SIN:SA:OCE87746008,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87746115,1,"Gare de Albens",45.786133,5.948551,-1,0,SIN:SA:OCE87746115,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87746149,1,"Gare de Rumilly",45.863057,5.947954,-1,0,SIN:SA:OCE87746149,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87746248,1,"Gare de Groisy-Thorens-la-Caill",46.011151,6.175761,-1,0,SIN:SA:OCE87746248,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87746305,1,"Gare de La Roche-sur-Foron",46.067671,6.303735,-1,0,SIN:SA:OCE87746305,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87746339,1,"Gare de Bonneville",46.077714,6.416476,-1,0,SIN:SA:OCE87746339,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87746370,1,"Gare de Cluses (Hte-Savoie)",46.061419,6.582681,-1,0,SIN:SA:OCE87746370,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87746438,1,"Gare de Sallanches-Comb.Megève",45.935669,6.636471,-1,0,SIN:SA:OCE87746438,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87746479,1,"Gare de St-Gervais-L-B-Le-Fayet",45.90647,6.700717,-1,0,SIN:SA:OCE87746479,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87746511,1,"Gare de Reignier",46.125618,6.267536,-1,0,SIN:SA:OCE87746511,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87746719,1,"Gare de Servoz",45.924482,6.763484,-1,0,SIN:SA:OCE87746719,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87746743,1,"Gare de Les Houches",45.893964,6.797387,-1,0,SIN:SA:OCE87746743,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87746750,1,"Gare de Taconnaz",45.89869,6.82423,-1,0,SIN:SA:OCE87746750,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87746768,1,"Gare de Les Bossons",45.906799,6.839171,-1,0,SIN:SA:OCE87746768,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87746776,1,"Gare de Les Pèlerins",45.912763,6.847743,-1,0,SIN:SA:OCE87746776,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87746784,1,"Gare de Chamonix-Mont-Blanc",45.922709,6.874271,-1,0,SIN:SA:OCE87746784,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87746818,1,"Gare de Les Moussoux",45.916717,6.859921,-1,0,SIN:SA:OCE87746818,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87747006,1,"Gare de Grenoble",45.191463,5.71453,-1,0,SIN:SA:OCE87747006,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87747204,1,"Gare de Virieu-sur-Bourbre",45.484772,5.475453,-1,0,SIN:SA:OCE87747204,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87747212,1,"Gare de Chabons",45.438403,5.4281,-1,0,SIN:SA:OCE87747212,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87747220,1,"Gare de Le Grand-Lemps",45.396678,5.423061,-1,0,SIN:SA:OCE87747220,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87747246,1,"Gare de Rives",45.357595,5.491897,-1,0,SIN:SA:OCE87747246,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87747279,1,"Gare de Réaumont-St-Cassien",45.368795,5.534865,-1,0,SIN:SA:OCE87747279,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87747287,1,"Gare de Voiron",45.364004,5.594911,-1,0,SIN:SA:OCE87747287,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87747329,1,"Gare de Moirans",45.322146,5.58196,-1,0,SIN:SA:OCE87747329,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87747402,1,"Gare de Grenoble U.-Gières",45.184903,5.784731,-1,0,SIN:SA:OCE87747402,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87747451,1,"Gare de Brignoud",45.262462,5.901427,-1,0,SIN:SA:OCE87747451,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87747477,1,"Gare de Goncelin",45.34196,5.974107,-1,0,SIN:SA:OCE87747477,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87747493,1,"Gare de Pontcharra-sur-Bréda",45.434038,6.007793,-1,0,SIN:SA:OCE87747493,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87747535,1,"Gare de Jarrie-Vizille",45.085406,5.742256,-1,0,SIN:SA:OCE87747535,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87747568,1,"Gare de St-Georges-de-Commiers",45.043723,5.701176,-1,0,SIN:SA:OCE87747568,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87747576,1,"Gare de Vif",45.047648,5.68541,-1,0,SIN:SA:OCE87747576,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87747592,1,"Gare de Monestier-de-Clermont",44.912024,5.633945,-1,0,SIN:SA:OCE87747592,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87747626,1,"Gare de Clelles-Mens",44.827253,5.605012,-1,0,SIN:SA:OCE87747626,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87747691,1,"Gare de Moirans-Galifette",45.323999,5.564966,-1,0,SIN:SA:OCE87747691,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87751008,1,"Gare de Marseille-St-Charles",43.30273,5.38065,-1,0,SIN:SA:OCE87751008,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87751404,1,"Gare de Aix-en-Provence",43.522868,5.445323,-1,0,SIN:SA:OCE87751404,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87751420,1,"Gare de Gardanne",43.456007,5.463322,-1,0,SIN:SA:OCE87751420,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87751438,1,"Gare de Simiane",43.434724,5.426011,-1,0,SIN:SA:OCE87751438,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87751800,1,"Gare de Septèmes",43.403107,5.370134,-1,0,SIN:SA:OCE87751800,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87751842,1,"Gare de Ste-Marthe-en-Provence",43.339269,5.390401,-1,0,SIN:SA:OCE87751842,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87753004,1,"Gare de Miramas",43.58074,4.999602,-1,0,SIN:SA:OCE87753004,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87753707,1,"Gare de Orgon",43.785912,5.045688,-1,0,SIN:SA:OCE87753707,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87753715,1,"Gare de Sénas",43.740965,5.073336,-1,0,SIN:SA:OCE87753715,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87753731,1,"Gare de Lamanon",43.699991,5.091304,-1,0,SIN:SA:OCE87753731,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87753764,1,"Gare de Salon",43.639064,5.088598,-1,0,SIN:SA:OCE87753764,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87761007,1,"Gare de Valence-Ville",44.92807,4.893295,-1,0,SIN:SA:OCE87761007,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87761106,1,"Gare de St-Rambert-d'Albon",45.297816,4.810625,-1,0,SIN:SA:OCE87761106,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87761130,1,"Gare de St-Vallier-sur-Rhône",45.185682,4.814339,-1,0,SIN:SA:OCE87761130,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87761163,1,"Gare de Tain",45.072181,4.839746,-1,0,SIN:SA:OCE87761163,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87761239,1,"Gare de L'Isle-d'Abeau",45.607621,5.219552,-1,0,SIN:SA:OCE87761239,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87761270,1,"Annonay-Gare-Route",45.243781,4.672743,-1,0,SIN:SA:OCE87761270,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87761460,1,"Tournon-Centre",45.063213,4.83434,-1,0,SIN:SA:OCE87761460,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87761510,1,"Charmes-sur-Rhône-centr",44.862732,4.834795,-1,0,SIN:SA:OCE87761510,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87761650,1,"Gare de Romans-Bourg-de-Péage",45.04886,5.049494,-1,0,SIN:SA:OCE87761650,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87761684,1,"Gare de St-Hilaire-St-Nazaire",45.071316,5.243843,-1,0,SIN:SA:OCE87761684,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87761718,1,"Gare de St-Marcellin",45.150897,5.323582,-1,0,SIN:SA:OCE87761718,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87761726,1,"Gare de Vinay",45.207932,5.410166,-1,0,SIN:SA:OCE87761726,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87761742,1,"Gare de Poliénas",45.255896,5.473763,-1,0,SIN:SA:OCE87761742,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87761759,1,"Gare de Tullins-Fures",45.300932,5.492143,-1,0,SIN:SA:OCE87761759,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87761783,1,"Gare de Crest",44.730187,5.01611,-1,0,SIN:SA:OCE87761783,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87761817,1,"Gare de Saillans",44.694377,5.194175,-1,0,SIN:SA:OCE87761817,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87761841,1,"Gare de Die",44.758213,5.363257,-1,0,SIN:SA:OCE87761841,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87763003,1,"Gare de Gap",44.563695,6.085684,-1,0,SIN:SA:OCE87763003,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87763029,1,"Gare de Valence-TGV",44.99137,4.978941,-1,0,SIN:SA:OCE87763029,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87763250,1,"Gare de Aspres-sur-Buech",44.519393,5.754555,-1,0,SIN:SA:OCE87763250,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87763300,1,"Gare de Veynes-Dévoluy",44.531997,5.815829,-1,0,SIN:SA:OCE87763300,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87763425,1,"Gare de Chorges",44.545705,6.272059,-1,0,SIN:SA:OCE87763425,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87763466,1,"Gare de Embrun",44.566954,6.496732,-1,0,SIN:SA:OCE87763466,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87763508,1,"Gare de Montdauphin-Guillestre",44.674596,6.615614,-1,0,SIN:SA:OCE87763508,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87763557,1,"Gare de L'Argentière-les-Ecrins",44.791,6.556405,-1,0,SIN:SA:OCE87763557,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87763607,1,"Gare de Briançon",44.889807,6.632947,-1,0,SIN:SA:OCE87763607,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87764407,1,"Le-Pouzin-Centre",44.75591,4.748131,-1,0,SIN:SA:OCE87764407,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87764712,1,"St-Jean-Centenier-Ctr",44.589412,4.536456,-1,0,SIN:SA:OCE87764712,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87764720,1,"Villeneuve-de-Berg-Cent",44.554922,4.498138,-1,0,SIN:SA:OCE87764720,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87764753,1,"Aubenas-Boutique-SNCF",44.610787,4.390891,-1,0,SIN:SA:OCE87764753,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87765008,1,"Gare de Avignon-Centre",43.941877,4.805262,-1,0,SIN:SA:OCE87765008,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87765412,1,"Gare de Montfavet",43.932632,4.873974,-1,0,SIN:SA:OCE87765412,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87765420,1,"Gare de Morières-lès-Avignon",43.941462,4.908204,-1,0,SIN:SA:OCE87765420,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87765438,1,"Gare de St-Saturnin-d'Avignon",43.953177,4.935293,-1,0,SIN:SA:OCE87765438,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87765446,1,"Gare de Gadagne",43.929678,4.956832,-1,0,SIN:SA:OCE87765446,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87765453,1,"Gare de Le Thor",43.926526,4.996277,-1,0,SIN:SA:OCE87765453,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87765479,1,"Gare de L'Isle-s-Sorgue - Font",43.917342,5.047601,-1,0,SIN:SA:OCE87765479,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87765503,1,"Gare de Cavaillon",43.834516,5.043653,-1,0,SIN:SA:OCE87765503,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87773002,1,"Gare de Montpellier-Saint-Roch",43.605834,3.88236,-1,0,SIN:SA:OCE87773002,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87773200,1,"Gare de Sète",43.412812,3.696396,-1,0,SIN:SA:OCE87773200,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87773408,1,"Gare de Lunel",43.679515,4.130807,-1,0,SIN:SA:OCE87773408,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87773457,1,"Gare de Baillargues",43.653117,4.006689,-1,0,SIN:SA:OCE87773457,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87773556,1,"Gare de Frontignan",43.444586,3.759015,-1,0,SIN:SA:OCE87773556,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87775007,1,"Gare de Nîmes",43.832293,4.365835,-1,0,SIN:SA:OCE87775007,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87775114,1,"Gare de Vergèze-Codognan",43.739817,4.218844,-1,0,SIN:SA:OCE87775114,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87775148,1,"Gare de Chasserades",44.553968,3.839677,-1,0,SIN:SA:OCE87775148,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87775171,1,"Gare de La Bastide-St-Laurent",44.592579,3.903854,-1,0,SIN:SA:OCE87775171,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87775288,1,"Gare de Alès",44.128126,4.084779,-1,0,SIN:SA:OCE87775288,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87775791,1,"Gare de Générac",43.732975,4.344145,-1,0,SIN:SA:OCE87775791,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87775817,1,"Gare de Vauvert",43.695314,4.270252,-1,0,SIN:SA:OCE87775817,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87775825,1,"Gare de Le Cailar",43.683192,4.234767,-1,0,SIN:SA:OCE87775825,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87775841,1,"Gare de St-Laurent-d'Aigouze",43.638913,4.192702,-1,0,SIN:SA:OCE87775841,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87775858,1,"Gare de Aigues-Mortes",43.571117,4.191107,-1,0,SIN:SA:OCE87775858,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87775866,1,"Gare de Le Grau-du-Roi",43.536582,4.140867,-1,0,SIN:SA:OCE87775866,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87781005,1,"Gare de Béziers",43.336225,3.219218,-1,0,SIN:SA:OCE87781005,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87781104,1,"Gare de Narbonne",43.191033,3.005956,-1,0,SIN:SA:OCE87781104,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87781278,1,"Gare de Agde",43.317574,3.46602,-1,0,SIN:SA:OCE87781278,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87781609,1,"Gare de Bédarieux",43.607632,3.149005,-1,0,SIN:SA:OCE87781609,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87781666,1,"Gare de Magalas",43.467755,3.2295,-1,0,SIN:SA:OCE87781666,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87783001,1,"Gare de Millau",44.10187,3.074898,-1,0,SIN:SA:OCE87783001,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87783159,1,"Talizat",45.114473,3.044493,-1,0,SIN:SA:OCE87783159,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87783167,1,"Andelat",45.058516,3.057667,-1,0,SIN:SA:OCE87783167,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87783175,1,"Gare de St-Flour-Chaudes-Aigues",45.034838,3.106166,-1,0,SIN:SA:OCE87783175,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87783241,1,"Gare de St-Chély-d'Apcher",44.801701,3.270741,-1,0,SIN:SA:OCE87783241,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87783266,1,"Gare de Aumont-Aubrac",44.71814,3.283415,-1,0,SIN:SA:OCE87783266,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87783282,1,"Gare de Marvejols",44.544616,3.281048,-1,0,SIN:SA:OCE87783282,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87783308,1,"Gare de Le Monastier",44.509002,3.252196,-1,0,SIN:SA:OCE87783308,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87783324,1,"Gare de Banassac-la-Canourgue",44.447642,3.19621,-1,0,SIN:SA:OCE87783324,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87783365,1,"Gare de Séverac-D'Aveyron",44.325205,3.057387,-1,0,SIN:SA:OCE87783365,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87783480,1,"St-Affrique",43.956689,2.881909,-1,0,SIN:SA:OCE87783480,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87783530,1,"Gare de Chanac",44.473375,3.344954,-1,0,SIN:SA:OCE87783530,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87783563,1,"Gare de Barjac",44.499357,3.410563,-1,0,SIN:SA:OCE87783563,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87783605,1,"Gare de Mende",44.522332,3.501908,-1,0,SIN:SA:OCE87783605,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87783647,1,"Gare de Bagnols-Chadenet",44.528315,3.628142,-1,0,SIN:SA:OCE87783647,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87783654,1,"Gare de Allenc",44.541673,3.664216,-1,0,SIN:SA:OCE87783654,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87783670,1,"Gare de Belvezet",44.561861,3.751881,-1,0,SIN:SA:OCE87783670,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87481002,1,"Gare de Nantes",47.217505,-1.541925,-1,0,SIN:SA:OCE87481002,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87484006,1,"Gare de Angers-St-Laud",47.464434,-0.556949,-1,0,SIN:SA:OCE87484006,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87487603,1,"Gare de Saumur",47.268972,-0.07143,-1,0,SIN:SA:OCE87487603,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87543017,1,"Gare de Aubrais-(les)",47.926917,1.906085,-1,0,SIN:SA:OCE87543017,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87543165,1,"Gare de Salbris",47.42514,2.047737,-1,0,SIN:SA:OCE87543165,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87547000,1,"Gare de Paris-Austerlitz",48.841652,2.366039,-1,0,SIN:SA:OCE87547000,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87571000,1,"Gare de Tours",47.389814,0.693505,-1,0,SIN:SA:OCE87571000,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87571240,1,"Gare de St-Pierre-des-Corps",47.385732,0.725054,-1,0,SIN:SA:OCE87571240,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87576009,1,"Gare de Vierzon",47.226516,2.059824,-1,0,SIN:SA:OCE87576009,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87576207,1,"Gare de Bourges",47.094094,2.394226,-1,0,SIN:SA:OCE87576207,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87576272,1,"Gare de St-Florent-sur-Cher",46.992115,2.252149,-1,0,SIN:SA:OCE87576272,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87576298,1,"Gare de Châteauneuf-sur-Cher",46.856686,2.310212,-1,0,SIN:SA:OCE87576298,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87576322,1,"Gare de St-Amand-Montrond-Orval",46.726521,2.486062,-1,0,SIN:SA:OCE87576322,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87581009,1,"Gare de Bordeaux-St-Jean",44.82654,-0.556194,-1,0,SIN:SA:OCE87581009,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87586008,1,"Gare de Agen",44.207972,0.620905,-1,0,SIN:SA:OCE87586008,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87586545,1,"Gare de Marmande",44.503067,0.168115,-1,0,SIN:SA:OCE87586545,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87611004,1,"Gare de Toulouse-Matabiau",43.611464,1.453558,-1,0,SIN:SA:OCE87611004,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87611244,1,"Gare de Montauban-Ville-Bourbon",44.014639,1.341974,-1,0,SIN:SA:OCE87611244,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87615286,1,"Gare de Carcassonne",43.217715,2.351883,-1,0,SIN:SA:OCE87615286,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87641001,1,"Gare de Montluçon-Ville",46.337875,2.596412,-1,0,SIN:SA:OCE87641001,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87641357,1,"Gare de Vallon-en-Sully",46.536485,2.610803,-1,0,SIN:SA:OCE87641357,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87686006,1,"Gare de Paris-Gare-de-Lyon",48.844922,2.373462,-1,0,SIN:SA:OCE87686006,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87686667,1,"Gare de Paris-Bercy",48.839211,2.382799,-1,0,SIN:SA:OCE87686667,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87696005,1,"Gare de Nevers",46.987349,3.15087,-1,0,SIN:SA:OCE87696005,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87696260,1,"Gare de Saincaize",46.931373,3.071971,-1,0,SIN:SA:OCE87696260,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87696328,1,"Gare de Moulins-sur-Allier",46.561364,3.338755,-1,0,SIN:SA:OCE87696328,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87721472,1,"Gare de Tarare",45.889788,4.439075,-1,0,SIN:SA:OCE87721472,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87722025,1,"Gare de Lyon-Perrache",45.748492,4.825748,-1,0,SIN:SA:OCE87722025,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87723197,1,"Gare de Lyon-Part-Dieu",45.760585,4.859435,-1,0,SIN:SA:OCE87723197,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87726802,1,"Gare de Roanne",46.040211,4.063135,-1,0,SIN:SA:OCE87726802,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87732008,1,"Gare de Vichy",46.12697,3.430489,-1,0,SIN:SA:OCE87732008,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87732206,1,"Gare de St-Germain-des-Fossés",46.209103,3.430489,-1,0,SIN:SA:OCE87732206,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87734004,1,"Gare de Clermont-Ferrand",45.778569,3.100519,-1,0,SIN:SA:OCE87734004,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87734053,1,"Gare de Riom-Châtel-Guyon",45.889842,3.120813,-1,0,SIN:SA:OCE87734053,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87734202,1,"Gare de Issoire",45.543953,3.254071,-1,0,SIN:SA:OCE87734202,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87734244,1,"Gare de Brassac-les-Mines",45.4141,3.32993,-1,0,SIN:SA:OCE87734244,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87734251,1,"Gare de Arvant",45.365383,3.310488,-1,0,SIN:SA:OCE87734251,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87734269,1,"Gare de Brioude",45.300657,3.378675,-1,0,SIN:SA:OCE87734269,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87734301,1,"Gare de St-Georges-d'Aurac",45.160594,3.494704,-1,0,SIN:SA:OCE87734301,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87734319,1,"Gare de Langeac",45.101225,3.490574,-1,0,SIN:SA:OCE87734319,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87734335,1,"Gare de Monistrol-d'Allier",44.96963,3.649786,-1,0,SIN:SA:OCE87734335,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87734350,1,"Gare de Langogne",44.732607,3.857278,-1,0,SIN:SA:OCE87734350,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87751008,1,"Gare de Marseille-St-Charles",43.30273,5.38065,-1,0,SIN:SA:OCE87751008,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87753657,1,"Gare de Arles",43.684844,4.632019,-1,0,SIN:SA:OCE87753657,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87755009,1,"Gare de Toulon",43.128316,5.929458,-1,0,SIN:SA:OCE87755009,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87755447,1,"Gare de Les Arcs-Draguignan",43.455729,6.482462,-1,0,SIN:SA:OCE87755447,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87756056,1,"Gare de Nice-Ville",43.704711,7.261786,-1,0,SIN:SA:OCE87756056,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87757526,1,"Gare de St-Raphaël-Valescure",43.423606,6.769013,-1,0,SIN:SA:OCE87757526,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87757625,1,"Gare de Cannes",43.553913,7.019725,-1,0,SIN:SA:OCE87757625,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87757674,1,"Gare de Antibes",43.585789,7.119516,-1,0,SIN:SA:OCE87757674,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87773002,1,"Gare de Montpellier-Saint-Roch",43.605834,3.88236,-1,0,SIN:SA:OCE87773002,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87773200,1,"Gare de Sète",43.412812,3.696396,-1,0,SIN:SA:OCE87773200,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87775007,1,"Gare de Nîmes",43.832293,4.365835,-1,0,SIN:SA:OCE87775007,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87775171,1,"Gare de La Bastide-St-Laurent",44.592579,3.903854,-1,0,SIN:SA:OCE87775171,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87775197,1,"Gare de Villefort",44.43944,3.923321,-1,0,SIN:SA:OCE87775197,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87775213,1,"Gare de Génolhac",44.348018,3.951822,-1,0,SIN:SA:OCE87775213,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87775254,1,"Gare de Grand-Combe-la-Pise",44.209949,4.033467,-1,0,SIN:SA:OCE87775254,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87775288,1,"Gare de Alès",44.128126,4.084779,-1,0,SIN:SA:OCE87775288,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87775361,1,"Gare de St-Geniès-de-Malgoirès",43.950539,4.215112,-1,0,SIN:SA:OCE87775361,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87781005,1,"Gare de Béziers",43.336225,3.219218,-1,0,SIN:SA:OCE87781005,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87781104,1,"Gare de Narbonne",43.191033,3.005956,-1,0,SIN:SA:OCE87781104,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87782607,1,"Gare de Clermont-la-Pardieu",45.766954,3.134207,-1,0,SIN:SA:OCE87782607,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-71793150,1,"Gare de Port-Bou",42.424471,3.157848,-1,0,SIN:SA:OCE71793150,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87543017,1,"Gare de Aubrais-(les)",47.926917,1.906085,-1,0,SIN:SA:OCE87543017,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87547000,1,"Gare de Paris-Austerlitz",48.841652,2.366039,-1,0,SIN:SA:OCE87547000,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87594333,1,"Gare de Souillac",44.902337,1.465215,-1,0,SIN:SA:OCE87594333,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87611004,1,"Gare de Toulouse-Matabiau",43.611464,1.453558,-1,0,SIN:SA:OCE87611004,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87611244,1,"Gare de Montauban-Ville-Bourbon",44.014639,1.341974,-1,0,SIN:SA:OCE87611244,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87611343,1,"Gare de Pamiers",43.116175,1.618998,-1,0,SIN:SA:OCE87611343,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87611368,1,"Gare de Saverdun",43.239421,1.570422,-1,0,SIN:SA:OCE87611368,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87611384,1,"Gare de Auterive",43.348835,1.468624,-1,0,SIN:SA:OCE87611384,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87611483,1,"Gare de Latour-de-Carol-Enveitg",42.458157,1.90584,-1,0,SIN:SA:OCE87611483,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87611509,1,"Gare de Porte-Puymorens",42.538759,1.82485,-1,0,SIN:SA:OCE87611509,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87611517,1,"Gare de Andorre-L'Hospitalet",42.588385,1.798515,-1,0,SIN:SA:OCE87611517,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87611525,1,"Gare de Mérens-les-Vals",42.658677,1.83642,-1,0,SIN:SA:OCE87611525,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87611533,1,"Gare de Ax-les-Thermes",42.724805,1.833315,-1,0,SIN:SA:OCE87611533,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87611558,1,"Gare de Luzenac-Garanou",42.764444,1.753154,-1,0,SIN:SA:OCE87611558,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87611574,1,"Gare de Les Cabannes",42.786537,1.68618,-1,0,SIN:SA:OCE87611574,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87611590,1,"Gare de Tarascon-sur-Ariège",42.849453,1.600031,-1,0,SIN:SA:OCE87611590,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87611616,1,"Gare de Foix",42.969299,1.607394,-1,0,SIN:SA:OCE87611616,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87613000,1,"Gare de Cahors",44.44916,1.433238,-1,0,SIN:SA:OCE87613000,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87613141,1,"Gare de Gourdon",44.741898,1.389276,-1,0,SIN:SA:OCE87613141,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87613356,1,"Gare de Caussade (T.-et-G.)",44.162304,1.533453,-1,0,SIN:SA:OCE87613356,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87615039,1,"Gare de Castelnaudary",43.312646,1.950989,-1,0,SIN:SA:OCE87615039,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87615112,1,"Gare de Lézignan-Corbières",43.199971,2.769857,-1,0,SIN:SA:OCE87615112,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87615286,1,"Gare de Carcassonne",43.217715,2.351883,-1,0,SIN:SA:OCE87615286,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87751081,1,"Gare de Marseille-Blancarde",43.296203,5.406552,-1,0,SIN:SA:OCE87751081,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87755009,1,"Gare de Toulon",43.128316,5.929458,-1,0,SIN:SA:OCE87755009,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87755447,1,"Gare de Les Arcs-Draguignan",43.455729,6.482462,-1,0,SIN:SA:OCE87755447,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87756056,1,"Gare de Nice-Ville",43.704711,7.261786,-1,0,SIN:SA:OCE87756056,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87757526,1,"Gare de St-Raphaël-Valescure",43.423606,6.769013,-1,0,SIN:SA:OCE87757526,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87757625,1,"Gare de Cannes",43.553913,7.019725,-1,0,SIN:SA:OCE87757625,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87757674,1,"Gare de Antibes",43.585789,7.119516,-1,0,SIN:SA:OCE87757674,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87761783,1,"Gare de Crest",44.730187,5.01611,-1,0,SIN:SA:OCE87761783,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87761841,1,"Gare de Die",44.758213,5.363257,-1,0,SIN:SA:OCE87761841,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87761874,1,"Gare de Luc-en-Diois",44.613687,5.454617,-1,0,SIN:SA:OCE87761874,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87763003,1,"Gare de Gap",44.563695,6.085684,-1,0,SIN:SA:OCE87763003,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87763300,1,"Gare de Veynes-Dévoluy",44.531997,5.815829,-1,0,SIN:SA:OCE87763300,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87763425,1,"Gare de Chorges",44.545705,6.272059,-1,0,SIN:SA:OCE87763425,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87763466,1,"Gare de Embrun",44.566954,6.496732,-1,0,SIN:SA:OCE87763466,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87763508,1,"Gare de Montdauphin-Guillestre",44.674596,6.615614,-1,0,SIN:SA:OCE87763508,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87763557,1,"Gare de L'Argentière-les-Ecrins",44.791,6.556405,-1,0,SIN:SA:OCE87763557,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87763607,1,"Gare de Briançon",44.889807,6.632947,-1,0,SIN:SA:OCE87763607,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87784009,1,"Gare de Perpignan",42.696075,2.879617,-1,0,SIN:SA:OCE87784009,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87784207,1,"Gare de Elne",42.597369,2.963521,-1,0,SIN:SA:OCE87784207,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87784231,1,"Gare de Argelès-sur-Mer",42.543951,3.0215,-1,0,SIN:SA:OCE87784231,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87784256,1,"Gare de Collioure",42.526892,3.078721,-1,0,SIN:SA:OCE87784256,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87784264,1,"Gare de Port-Vendres",42.513381,3.102386,-1,0,SIN:SA:OCE87784264,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87784298,1,"Gare de Banyuls-sur-Mer",42.482619,3.124411,-1,0,SIN:SA:OCE87784298,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87785006,1,"Gare de Cerbère",42.442764,3.165525,-1,0,SIN:SA:OCE87785006,Europe/Paris,,SIN, +STE:SP:OCECarTER-85010082,1,"Gare de Genève",46.210557,6.143155,-1,0,SIN:SA:OCE85010082,Europe/Paris,,STE, +STE:SP:OCECarTER-87003707,1,"Ydes",45.344039,2.436246,-1,0,SIN:SA:OCE87003707,Europe/Paris,,STE, +STE:SP:OCECarTER-87024380,1,"Le Puy-Lafayette",45.04355,3.886866,-1,0,SIN:SA:OCE87024380,Europe/Paris,,STE, +STE:SP:OCECarTER-87101980,1,"Néris-les-Bains",46.287548,2.661814,-1,0,SIN:SA:OCE87101980,Europe/Paris,,STE, +STE:SP:OCECarTER-87101998,1,"Durdat-Larequille",46.250763,2.702033,-1,0,SIN:SA:OCE87101998,Europe/Paris,,STE, +STE:SP:OCECarTER-87110171,1,"Landeyrat",45.277543,2.870006,-1,0,SIN:SA:OCE87110171,Europe/Paris,,STE, +STE:SP:OCECarTER-87110189,1,"Marcenat",45.304939,2.828226,-1,0,SIN:SA:OCE87110189,Europe/Paris,,STE, +STE:SP:OCECarTER-87110197,1,"vely",45.334816,2.759806,-1,0,SIN:SA:OCE87110197,Europe/Paris,,STE, +STE:SP:OCECarTER-87110205,1,"St-Amandin",45.343141,2.694491,-1,0,SIN:SA:OCE87110205,Europe/Paris,,STE, +STE:SP:OCECarTER-87110213,1,"Vebret",45.339542,2.520261,-1,0,SIN:SA:OCE87110213,Europe/Paris,,STE, +STE:SP:OCECarTER-87110221,1,"Antignac (Cantal)",45.341011,2.544783,-1,0,SIN:SA:OCE87110221,Europe/Paris,,STE, +STE:SP:OCECarTER-87130823,1,"Les-cabannes-09-Centre",42.784943,1.688417,-1,0,SIN:SA:OCE87130823,Europe/Paris,,STE, +STE:SP:OCECarTER-87130849,1,"Mérens-les-Vals-Village",42.656118,1.836418,-1,0,SIN:SA:OCE87130849,Europe/Paris,,STE, +STE:SP:OCECarTER-87131961,1,"Gare de Brion-Montréal-La Cluse",46.175782,5.55851,-1,0,SIN:SA:OCE87131961,Europe/Paris,,STE, +STE:SP:OCECarTER-87137158,1,"Tarascon-Ariège-Mitter.",42.846536,1.604316,-1,0,SIN:SA:OCE87137158,Europe/Paris,,STE, +STE:SP:OCECarTER-87158006,1,"Gouzon-Champ-de-Foire",46.191172,2.239924,-1,0,SIN:SA:OCE87158006,Europe/Paris,,STE, +STE:SP:OCECarTER-87176941,1,"Courbassil",42.492763,1.850478,-1,0,SIN:SA:OCE87176941,Europe/Paris,,STE, +STE:SP:OCECarTER-87176966,1,"Ruites",42.475399,1.872722,-1,0,SIN:SA:OCE87176966,Europe/Paris,,STE, +STE:SP:OCECarTER-87177360,1,"Communay-Stade",45.605858,4.848858,-1,0,SIN:SA:OCE87177360,Europe/Paris,,STE, +STE:SP:OCECarTER-87177576,1,"Ternay-Barbières",45.59703,4.799772,-1,0,SIN:SA:OCE87177576,Europe/Paris,,STE, +STE:SP:OCECarTER-87208553,1,"Gare de Casino-Lacroix-Laval",45.787828,4.730892,-1,0,SIN:SA:OCE87208553,Europe/Paris,,STE, +STE:SP:OCECarTER-87282335,1,"Perrigny-sur-Loire",46.530542,3.846116,-1,0,SIN:SA:OCE87282335,Europe/Paris,,STE, +STE:SP:OCECarTER-87318964,1,"Gare de Avignon-TGV",43.921964,4.786154,-1,0,SIN:SA:OCE87318964,Europe/Paris,,STE, +STE:SP:OCECarTER-87327601,1,"Montaigut-en-Combraille",46.180364,2.808109,-1,0,SIN:SA:OCE87327601,Europe/Paris,,STE, +STE:SP:OCECarTER-87335521,1,"Grenoble-Gare-Routière",45.192674,5.714361,-1,0,STE:SA:OCE87335521,Europe/Paris,,STE, +STE:SP:OCECarTER-87336974,1,"La Voulte-Mairie",44.799371,4.78131,-1,0,SIN:SA:OCE87336974,Europe/Paris,,STE, +STE:SP:OCECarTER-87336982,1,"St-Julien-en-St-Alban-C",44.754243,4.697899,-1,0,SIN:SA:OCE87336982,Europe/Paris,,STE, +STE:SP:OCECarTER-87336990,1,"Flaviac-Place-René-Cass",44.746371,4.674158,-1,0,SIN:SA:OCE87336990,Europe/Paris,,STE, +STE:SP:OCECarTER-87337006,1,"Coux-centre",44.736036,4.623787,-1,0,SIN:SA:OCE87337006,Europe/Paris,,STE, +STE:SP:OCECarTER-87337089,1,"Aubenas-Pl.-de-la-Paix",44.618159,4.389208,-1,0,SIN:SA:OCE87337089,Europe/Paris,,STE, +STE:SP:OCECarTER-87337097,1,"Lavilledieu-Centre",44.574153,4.455366,-1,0,SIN:SA:OCE87337097,Europe/Paris,,STE, +STE:SP:OCECarTER-87361998,1,"St-Pourçain-sur-Sioule",46.309255,3.29126,-1,0,SIN:SA:OCE87361998,Europe/Paris,,STE, +STE:SP:OCECarTER-87392829,1,"St-Martin-d'Hères",45.193002,5.768883,-1,0,SIN:SA:OCE87392829,Europe/Paris,,STE, +STE:SP:OCECarTER-87395657,1,"Brassac-les-Mines-Ly-Ra",45.413609,3.321389,-1,0,SIN:SA:OCE87395657,Europe/Paris,,STE, +STE:SP:OCECarTER-87395665,1,"Issoire-Lycée-Deville",45.539936,3.257986,-1,0,SIN:SA:OCE87395665,Europe/Paris,,STE, +STE:SP:OCECarTER-87395673,1,"Issoire-Lycée-Murat",45.550384,3.249926,-1,0,SIN:SA:OCE87395673,Europe/Paris,,STE, +STE:SP:OCECarTER-87395749,1,"Thiers-Lycée",45.861885,3.539933,-1,0,SIN:SA:OCE87395749,Europe/Paris,,STE, +STE:SP:OCECarTER-87395756,1,"Ambert-Ville",45.550598,3.739655,-1,0,SIN:SA:OCE87395756,Europe/Paris,,STE, +STE:SP:OCECarTER-87395822,1,"St-Flour-les-Allées",45.032936,3.088367,-1,0,SIN:SA:OCE87395822,Europe/Paris,,STE, +STE:SP:OCECarTER-87395830,1,"Le-Breuil-sur-Couze-Lyc",45.462621,3.281144,-1,0,SIN:SA:OCE87395830,Europe/Paris,,STE, +STE:SP:OCECarTER-87395947,1,"Mauriac-Lycée-Cortat",45.213365,2.341224,-1,0,SIN:SA:OCE87395947,Europe/Paris,,STE, +STE:SP:OCECarTER-87395962,1,"Ste-Florine-Lycée-C-fav",45.401583,3.321111,-1,0,SIN:SA:OCE87395962,Europe/Paris,,STE, +STE:SP:OCECarTER-87405068,1,"Mariol",46.02117,3.495785,-1,0,SIN:SA:OCE87405068,Europe/Paris,,STE, +STE:SP:OCECarTER-87405423,1,"Dore-Eglise",45.380994,3.748064,-1,0,SIN:SA:OCE87405423,Europe/Paris,,STE, +STE:SP:OCECarTER-87407494,1,"Abrest-les-Dollots",46.088876,3.456898,-1,0,SIN:SA:OCE87407494,Europe/Paris,,STE, +STE:SP:OCECarTER-87407502,1,"Arrest-Usine-Mélius",45.396363,3.326382,-1,0,SIN:SA:OCE87407502,Europe/Paris,,STE, +STE:SP:OCECarTER-87407536,1,"Bourg-Lastice-Pl.-Poste",45.648355,2.561512,-1,0,SIN:SA:OCE87407536,Europe/Paris,,STE, +STE:SP:OCECarTER-87407569,1,"Brioude-Lycée-Lafayette",45.292173,3.382543,-1,0,SIN:SA:OCE87407569,Europe/Paris,,STE, +STE:SP:OCECarTER-87407577,1,"Chateldon",45.990857,3.486056,-1,0,SIN:SA:OCE87407577,Europe/Paris,,STE, +STE:SP:OCECarTER-87407635,1,"Dunières-Ville",45.217726,4.344214,-1,0,SIN:SA:OCE87407635,Europe/Paris,,STE, +STE:SP:OCECarTER-87407650,1,"Feniers",45.324249,2.770679,-1,0,SIN:SA:OCE87407650,Europe/Paris,,STE, +STE:SP:OCECarTER-87407668,1,"Fix",45.142776,3.668606,-1,0,SIN:SA:OCE87407668,Europe/Paris,,STE, +STE:SP:OCECarTER-87407676,1,"Freyssenet",45.13194,3.736943,-1,0,SIN:SA:OCE87407676,Europe/Paris,,STE, +STE:SP:OCECarTER-87407684,1,"Chauprillade-(La)",45.903306,3.518364,-1,0,SIN:SA:OCE87407684,Europe/Paris,,STE, +STE:SP:OCECarTER-87407692,1,"La Chomette",45.229465,3.474457,-1,0,SIN:SA:OCE87407692,Europe/Paris,,STE, +STE:SP:OCECarTER-87407700,1,"La-Combelle",45.45176,3.316788,-1,0,SIN:SA:OCE87407700,Europe/Paris,,STE, +STE:SP:OCECarTER-87407718,1,"La-Croix-St-Bonnet",45.905026,3.518259,-1,0,SIN:SA:OCE87407718,Europe/Paris,,STE, +STE:SP:OCECarTER-87407726,1,"La Grave-Carrefour",46.53344,2.619822,-1,0,SIN:SA:OCE87407726,Europe/Paris,,STE, +STE:SP:OCECarTER-87407932,1,"Lanthénas",45.102328,3.773801,-1,0,SIN:SA:OCE87407932,Europe/Paris,,STE, +STE:SP:OCECarTER-87407940,1,"Le Breuil/Couzes-S.-Fêt",45.472327,3.261949,-1,0,SIN:SA:OCE87407940,Europe/Paris,,STE, +STE:SP:OCECarTER-87407965,1,"Le-Puy-en-Velay-Fayolle",45.041662,3.886103,-1,0,SIN:SA:OCE87407965,Europe/Paris,,STE, +STE:SP:OCECarTER-87407973,1,"Le Puy-en-Velay-Hermit.",45.05444,3.865832,-1,0,SIN:SA:OCE87407973,Europe/Paris,,STE, +STE:SP:OCECarTER-87407981,1,"Le Treuil",45.10869,3.521473,-1,0,SIN:SA:OCE87407981,Europe/Paris,,STE, +STE:SP:OCECarTER-87408831,1,"Quatre-Routes-de-Saigne",45.353969,2.463645,-1,0,SIN:SA:OCE87408831,Europe/Paris,,STE, +STE:SP:OCECarTER-87408872,1,"Lezoux-Mairie",45.828223,3.379679,-1,0,SIN:SA:OCE87408872,Europe/Paris,,STE, +STE:SP:OCECarTER-87408880,1,"Lichemialle",45.257751,4.30038,-1,0,SIN:SA:OCE87408880,Europe/Paris,,STE, +STE:SP:OCECarTER-87408906,1,"Meaulne-Place-Centrale",46.598944,2.613285,-1,0,SIN:SA:OCE87408906,Europe/Paris,,STE, +STE:SP:OCECarTER-87408948,1,"Roueyre",45.048738,3.080915,-1,0,SIN:SA:OCE87408948,Europe/Paris,,STE, +STE:SP:OCECarTER-87408955,1,"Ris-Abris-Bus",46.00393,3.486098,-1,0,SIN:SA:OCE87408955,Europe/Paris,,STE, +STE:SP:OCECarTER-87408963,1,"Riom-es-Montagne-Cliniq",45.281652,2.6596,-1,0,SIN:SA:OCE87408963,Europe/Paris,,STE, +STE:SP:OCECarTER-87408971,1,"Reugny",46.462006,2.615466,-1,0,SIN:SA:OCE87408971,Europe/Paris,,STE, +STE:SP:OCECarTER-87408989,1,"Puy-Guillaume-Ville",45.960311,3.474269,-1,0,SIN:SA:OCE87408989,Europe/Paris,,STE, +STE:SP:OCECarTER-87409409,1,"Puy-Guillaume-Laroche",45.964519,3.476369,-1,0,SIN:SA:OCE87409409,Europe/Paris,,STE, +STE:SP:OCECarTER-87409417,1,"Pontmort RN9/D17",27.140973,-3.404561,-1,0,SIN:SA:OCE87409417,Europe/Paris,,STE, +STE:SP:OCECarTER-87409425,1,"Pontgibaud-Ville",45.832268,2.851228,-1,0,SIN:SA:OCE87409425,Europe/Paris,,STE, +STE:SP:OCECarTER-87409433,1,"Pont-du-Château-Croix-B",45.799032,3.244201,-1,0,SIN:SA:OCE87409433,Europe/Paris,,STE, +STE:SP:OCECarTER-87409441,1,"Pont-du-Château-Carref.",45.796698,3.305029,-1,0,SIN:SA:OCE87409441,Europe/Paris,,STE, +STE:SP:OCECarTER-87409466,1,"Pont-de-Dore-le-Chambon",45.840202,3.505704,-1,0,SIN:SA:OCE87409466,Europe/Paris,,STE, +STE:SP:OCECarTER-87409474,1,"Paulhaguet-Monument",45.207471,3.510482,-1,0,SIN:SA:OCE87409474,Europe/Paris,,STE, +STE:SP:OCECarTER-87409482,1,"Vieille-Brioude",45.264165,3.404438,-1,0,SIN:SA:OCE87409482,Europe/Paris,,STE, +STE:SP:OCECarTER-87409490,1,"Urcay-Hotel-du-Lyon-d'O",46.626818,2.589411,-1,0,SIN:SA:OCE87409490,Europe/Paris,,STE, +STE:SP:OCECarTER-87409508,1,"Thiers-Ville-Mairie",45.854975,3.547495,-1,0,SIN:SA:OCE87409508,Europe/Paris,,STE, +STE:SP:OCECarTER-87409516,1,"Thiers-le-Moutier",45.849763,3.537646,-1,0,SIN:SA:OCE87409516,Europe/Paris,,STE, +STE:SP:OCECarTER-87409524,1,"St-Florine-Place-F-Mitt",45.405458,3.319404,-1,0,SIN:SA:OCE87409524,Europe/Paris,,STE, +STE:SP:OCECarTER-87409532,1,"Sainte-Eugenie-de-Ville",45.138328,3.623882,-1,0,SIN:SA:OCE87409532,Europe/Paris,,STE, +STE:SP:OCECarTER-87409540,1,"St-Yorre-Nouvel-Hotel",46.066958,3.464877,-1,0,SIN:SA:OCE87409540,Europe/Paris,,STE, +STE:SP:OCECarTER-87409557,1,"St-Yorre-Croix-des-Vern",46.054379,3.469374,-1,0,SIN:SA:OCE87409557,Europe/Paris,,STE, +STE:SP:OCECarTER-87409664,1,"St-Sauves-Bourg",45.606799,2.687905,-1,0,SIN:SA:OCE87409664,Europe/Paris,,STE, +STE:SP:OCECarTER-87409698,1,"St-Eble",45.129718,3.557773,-1,0,SIN:SA:OCE87409698,Europe/Paris,,STE, +STE:SP:OCECarTER-87409763,1,"Bois-d'Oingt-Centre",45.921659,4.585274,-1,0,SIN:SA:OCE87409763,Europe/Paris,,STE, +STE:SP:OCECarTER-87409771,1,"Letra-Gabodière",45.961434,4.51648,-1,0,SIN:SA:OCE87409771,Europe/Paris,,STE, +STE:SP:OCECarTER-87417501,1,"Gare de Lancey",45.234472,5.880933,-1,0,STE:SA:OCE87417501,Europe/Paris,,STE, +STE:SP:OCECarTER-87417808,1,"Ajain",46.207141,1.997206,-1,0,SIN:SA:OCE87417808,Europe/Paris,,STE, +STE:SP:OCECarTER-87417840,1,"MONTLUCON LEM",27.140973,-3.404561,-1,0,SIN:SA:OCE87417840,Europe/Paris,,STE, +STE:SP:OCECarTER-87420802,1,"Le-Teil-Sablons",44.552703,4.685657,-1,0,SIN:SA:OCE87420802,Europe/Paris,,STE, +STE:SP:OCECarTER-87420836,1,"Alba-Ruines-Romaines",44.570303,4.587538,-1,0,SIN:SA:OCE87420836,Europe/Paris,,STE, +STE:SP:OCECarTER-87420976,1,"St-Eloy-les-Mines-Lycée",46.159628,2.832829,-1,0,SIN:SA:OCE87420976,Europe/Paris,,STE, +STE:SP:OCECarTER-87440701,1,"Coubladour",45.114995,3.743683,-1,0,SIN:SA:OCE87440701,Europe/Paris,,STE, +STE:SP:OCECarTER-87453654,1,"Costaros",44.89439,3.849555,-1,0,SIN:SA:OCE87453654,Europe/Paris,,STE, +STE:SP:OCECarTER-87453670,1,"Pradelles",44.769705,3.883213,-1,0,SIN:SA:OCE87453670,Europe/Paris,,STE, +STE:SP:OCECarTER-87478784,1,"Le-Guidon",46.378786,4.249614,-1,0,SIN:SA:OCE87478784,Europe/Paris,,STE, +STE:SP:OCECarTER-87484576,1,"Lamure-Collège",46.052071,4.492879,-1,0,SIN:SA:OCE87484576,Europe/Paris,,STE, +STE:SP:OCECarTER-87484584,1,"Poule-Mairie",46.148101,4.443914,-1,0,STE:SA:OCE87484584,Europe/Paris,,STE, +STE:SP:OCECarTER-87497222,1,"Chantenay-Imbert-Bourg",46.733078,3.183144,-1,0,SIN:SA:OCE87497222,Europe/Paris,,STE, +STE:SP:OCECarTER-87501023,1,"Pierre-Le-Moutier-Monum",46.791381,3.11839,-1,0,SIN:SA:OCE87501023,Europe/Paris,,STE, +STE:SP:OCECarTER-87503524,1,"L'Habitarelle",44.634198,3.675714,-1,0,SIN:SA:OCE87503524,Europe/Paris,,STE, +STE:SP:OCECarTER-87534073,1,"Rochefort-Montagne",45.687115,2.805446,-1,0,SIN:SA:OCE87534073,Europe/Paris,,STE, +STE:SP:OCECarTER-87534081,1,"Lanobre",45.436974,2.533923,-1,0,SIN:SA:OCE87534081,Europe/Paris,,STE, +STE:SP:OCECarTER-87534099,1,"Bort-les-Orgues-Ville",45.399326,2.499248,-1,0,SIN:SA:OCE87534099,Europe/Paris,,STE, +STE:SP:OCECarTER-87534107,1,"Tauves",45.560312,2.622102,-1,0,SIN:SA:OCE87534107,Europe/Paris,,STE, +STE:SP:OCECarTER-87535096,1,"Aubenas-Gare-Routière",44.612264,4.407595,-1,0,SIN:SA:OCE87535096,Europe/Paris,,STE, +STE:SP:OCECarTER-87548438,1,"Chateauneuf-Lamontgie",46.02558,2.896298,-1,0,SIN:SA:OCE87548438,Europe/Paris,,STE, +STE:SP:OCECarTER-87556506,1,"Valence-Gare-Routière",44.927051,4.892615,-1,0,SIN:SA:OCE87556506,Europe/Paris,,STE, +STE:SP:OCECarTER-87556522,1,"Montélimar-G-Routière",44.559458,4.745225,-1,0,SIN:SA:OCE87556522,Europe/Paris,,STE, +STE:SP:OCECarTER-87562421,1,"Gare de Aulnat-Aéroport",45.792149,3.161272,-1,0,SIN:SA:OCE87562421,Europe/Paris,,STE, +STE:SP:OCECarTER-87566869,1,"Chatel-Guyon-Tourisme",45.918396,3.074723,-1,0,SIN:SA:OCE87566869,Europe/Paris,,STE, +STE:SP:OCECarTER-87566919,1,"Gare de Lentilly-Charpenay",45.816462,4.681294,-1,0,SIN:SA:OCE87566919,Europe/Paris,,STE, +STE:SP:OCECarTER-87570374,1,"Moulet-Marcenat",45.880665,2.998998,-1,0,SIN:SA:OCE87570374,Europe/Paris,,STE, +STE:SP:OCECarTER-87576009,1,"Gare de Vierzon",47.226516,2.059824,-1,0,SIN:SA:OCE87576009,Europe/Paris,,STE, +STE:SP:OCECarTER-87576272,1,"Gare de St-Florent-sur-Cher",46.992115,2.252149,-1,0,SIN:SA:OCE87576272,Europe/Paris,,STE, +STE:SP:OCECarTER-87576298,1,"Gare de Châteauneuf-sur-Cher",46.856686,2.310212,-1,0,SIN:SA:OCE87576298,Europe/Paris,,STE, +STE:SP:OCECarTER-87576322,1,"Gare de St-Amand-Montrond-Orval",46.726521,2.486062,-1,0,SIN:SA:OCE87576322,Europe/Paris,,STE, +STE:SP:OCECarTER-87589390,1,"Allegre-Maison-Retraite",45.201964,3.713789,-1,0,SIN:SA:OCE87589390,Europe/Paris,,STE, +STE:SP:OCECarTER-87589499,1,"Condat-Centre-Equestre",45.333813,2.758561,-1,0,SIN:SA:OCE87589499,Europe/Paris,,STE, +STE:SP:OCECarTER-87589507,1,"Darsac-Lotissement",45.138847,3.73854,-1,0,SIN:SA:OCE87589507,Europe/Paris,,STE, +STE:SP:OCECarTER-87589564,1,"Gannat-Lycée-Eiffel",46.086162,3.197861,-1,0,SIN:SA:OCE87589564,Europe/Paris,,STE, +STE:SP:OCECarTER-87589572,1,"Gannat-Lycée-Procule",46.099205,3.190008,-1,0,SIN:SA:OCE87589572,Europe/Paris,,STE, +STE:SP:OCECarTER-87589580,1,"Ville-Gozet-Henri-Dunan",46.347913,2.593641,-1,0,SIN:SA:OCE87589580,Europe/Paris,,STE, +STE:SP:OCECarTER-87589598,1,"Puy-en-Velay-Hopital",45.0492,3.8772,-1,0,SIN:SA:OCE87589598,Europe/Paris,,STE, +STE:SP:OCECarTER-87589606,1,"Ancizes-St-Georges-Bour",45.924675,2.810414,-1,0,SIN:SA:OCE87589606,Europe/Paris,,STE, +STE:SP:OCECarTER-87589689,1,"Ancizes-St-Georges-Usin",45.921744,2.810002,-1,0,SIN:SA:OCE87589689,Europe/Paris,,STE, +STE:SP:OCECarTER-87589705,1,"Malaguet",45.24676,3.7196,-1,0,SIN:SA:OCE87589705,Europe/Paris,,STE, +STE:SP:OCECarTER-87589804,1,"Reugny-Rue-Bascule",46.46278,2.615431,-1,0,SIN:SA:OCE87589804,Europe/Paris,,STE, +STE:SP:OCECarTER-87589846,1,"St-Georges-Mons-Ecoles",45.93748,2.840995,-1,0,SIN:SA:OCE87589846,Europe/Paris,,STE, +STE:SP:OCECarTER-87590976,1,"Serres-Hte-Loire",45.177195,3.733287,-1,0,SIN:SA:OCE87590976,Europe/Paris,,STE, +STE:SP:OCECarTER-87592006,1,"Gare de Limoges-Bénédictins",45.836208,1.267452,-1,0,SIN:SA:OCE87592006,Europe/Paris,,STE, +STE:SP:OCECarTER-87594002,1,"Gare de Brive-la-Gaillarde",45.152562,1.528623,-1,0,SIN:SA:OCE87594002,Europe/Paris,,STE, +STE:SP:OCECarTER-87594093,1,"Gare de Ussel",45.557326,2.314433,-1,0,SIN:SA:OCE87594093,Europe/Paris,,STE, +STE:SP:OCECarTER-87594564,1,"Gare de Les Quatre-Routes",44.99702,1.644498,-1,0,SIN:SA:OCE87594564,Europe/Paris,,STE, +STE:SP:OCECarTER-87594572,1,"Gare de St-Denis-près-Martel",44.945792,1.666287,-1,0,SIN:SA:OCE87594572,Europe/Paris,,STE, +STE:SP:OCECarTER-87594754,1,"Gare de Puybrun",44.921716,1.784029,-1,0,SIN:SA:OCE87594754,Europe/Paris,,STE, +STE:SP:OCECarTER-87594762,1,"Gare de Bretenoux-Biars",44.927568,1.844204,-1,0,SIN:SA:OCE87594762,Europe/Paris,,STE, +STE:SP:OCECarTER-87597609,1,"Gare de Guéret",46.174146,1.87917,-1,0,SIN:SA:OCE87597609,Europe/Paris,,STE, +STE:SP:OCECarTER-87597724,1,"Gare de Parsac-Gouzon",46.198312,2.174196,-1,0,SIN:SA:OCE87597724,Europe/Paris,,STE, +STE:SP:OCECarTER-87598755,1,"Gare de Limoux-Flassian",43.068508,2.218515,-1,0,SIN:SA:OCE87598755,Europe/Paris,,STE, +STE:SP:OCECarTER-87609354,1,"Bagnols-Stade",45.513781,2.59691,-1,0,SIN:SA:OCE87609354,Europe/Paris,,STE, +STE:SP:OCECarTER-87611483,1,"Gare de Latour-de-Carol-Enveitg",42.458157,1.90584,-1,0,SIN:SA:OCE87611483,Europe/Paris,,STE, +STE:SP:OCECarTER-87611491,1,"Porta",42.520349,1.822342,-1,0,SIN:SA:OCE87611491,Europe/Paris,,STE, +STE:SP:OCECarTER-87611509,1,"Gare de Porte-Puymorens",42.538759,1.82485,-1,0,SIN:SA:OCE87611509,Europe/Paris,,STE, +STE:SP:OCECarTER-87611517,1,"Gare de Andorre-L'Hospitalet",42.588385,1.798515,-1,0,SIN:SA:OCE87611517,Europe/Paris,,STE, +STE:SP:OCECarTER-87611533,1,"Gare de Ax-les-Thermes",42.724805,1.833315,-1,0,SIN:SA:OCE87611533,Europe/Paris,,STE, +STE:SP:OCECarTER-87611558,1,"Gare de Luzenac-Garanou",42.764444,1.753154,-1,0,SIN:SA:OCE87611558,Europe/Paris,,STE, +STE:SP:OCECarTER-87611566,1,"Vèbre-La-Remise",42.773916,1.719166,-1,0,SIN:SA:OCE87611566,Europe/Paris,,STE, +STE:SP:OCECarTER-87611582,1,"Ussat-les-Bains-Centre",42.821052,1.621331,-1,0,SIN:SA:OCE87611582,Europe/Paris,,STE, +STE:SP:OCECarTER-87611590,1,"Gare de Tarascon-sur-Ariège",42.849453,1.600031,-1,0,SIN:SA:OCE87611590,Europe/Paris,,STE, +STE:SP:OCECarTER-87611616,1,"Gare de Foix",42.969299,1.607394,-1,0,SIN:SA:OCE87611616,Europe/Paris,,STE, +STE:SP:OCECarTER-87613091,1,"Gare de Figeac",44.603514,2.037077,-1,0,SIN:SA:OCE87613091,Europe/Paris,,STE, +STE:SP:OCECarTER-87613604,1,"Gare de Bagnac",44.66528,2.160163,-1,0,SIN:SA:OCE87613604,Europe/Paris,,STE, +STE:SP:OCECarTER-87615120,1,"Gare de Couffoulens-Leuc",43.155171,2.316929,-1,0,SIN:SA:OCE87615120,Europe/Paris,,STE, +STE:SP:OCECarTER-87615138,1,"Gare de Verzeille",43.130419,2.321219,-1,0,SIN:SA:OCE87615138,Europe/Paris,,STE, +STE:SP:OCECarTER-87615146,1,"Gare de Pomas",43.112171,2.288384,-1,0,SIN:SA:OCE87615146,Europe/Paris,,STE, +STE:SP:OCECarTER-87615161,1,"Gare de Limoux",43.056475,2.222999,-1,0,SIN:SA:OCE87615161,Europe/Paris,,STE, +STE:SP:OCECarTER-87615187,1,"Gare de Alet-les-Bains",42.997211,2.251852,-1,0,SIN:SA:OCE87615187,Europe/Paris,,STE, +STE:SP:OCECarTER-87615203,1,"Gare de Couiza-Montazels",42.9426,2.248326,-1,0,SIN:SA:OCE87615203,Europe/Paris,,STE, +STE:SP:OCECarTER-87615211,1,"Gare de Esperaza",42.935816,2.21803,-1,0,SIN:SA:OCE87615211,Europe/Paris,,STE, +STE:SP:OCECarTER-87615229,1,"Gare de Campagne-sur-Aude",42.916245,2.204272,-1,0,SIN:SA:OCE87615229,Europe/Paris,,STE, +STE:SP:OCECarTER-87615260,1,"Gare de Quillan",42.874293,2.181507,-1,0,SIN:SA:OCE87615260,Europe/Paris,,STE, +STE:SP:OCECarTER-87615286,1,"Gare de Carcassonne",43.217715,2.351883,-1,0,SIN:SA:OCE87615286,Europe/Paris,,STE, +STE:SP:OCECarTER-87630236,1,"St Romain Lachalm",45.265626,4.335242,-1,0,SIN:SA:OCE87630236,Europe/Paris,,STE, +STE:SP:OCECarTER-87630244,1,"St-Pal-de-Mons",45.245897,4.273885,-1,0,SIN:SA:OCE87630244,Europe/Paris,,STE, +STE:SP:OCECarTER-87630251,1,"St-Didier-en-Velay",45.302305,4.274096,-1,0,SIN:SA:OCE87630251,Europe/Paris,,STE, +STE:SP:OCECarTER-87640599,1,"Aimargues-Café-Lyces",43.684402,4.2076,-1,0,SIN:SA:OCE87640599,Europe/Paris,,STE, +STE:SP:OCECarTER-87640607,1,"Vauvert-Maison-p/o-Tous",43.695382,4.274963,-1,0,SIN:SA:OCE87640607,Europe/Paris,,STE, +STE:SP:OCECarTER-87640615,1,"Beauvoisin-Pl-Fontaine",43.7198,4.323759,-1,0,SIN:SA:OCE87640615,Europe/Paris,,STE, +STE:SP:OCECarTER-87640623,1,"St-Cesaire-Mas-Cheylon",44.028879,4.205553,-1,0,SIN:SA:OCE87640623,Europe/Paris,,STE, +STE:SP:OCECarTER-87640631,1,"Marvejols-PL-Henri-IV",44.555179,3.290936,-1,0,SIN:SA:OCE87640631,Europe/Paris,,STE, +STE:SP:OCECarTER-87640649,1,"Chirac-Ville",44.52286,3.267369,-1,0,SIN:SA:OCE87640649,Europe/Paris,,STE, +STE:SP:OCECarTER-87640656,1,"Balsieges-Arrêt-RN88",44.482325,3.456205,-1,0,SIN:SA:OCE87640656,Europe/Paris,,STE, +STE:SP:OCECarTER-87640672,1,"Les-Salelles-RN88",44.483435,3.279632,-1,0,SIN:SA:OCE87640672,Europe/Paris,,STE, +STE:SP:OCECarTER-87640680,1,"Le-Bruel-RN88",44.481419,3.35815,-1,0,SIN:SA:OCE87640680,Europe/Paris,,STE, +STE:SP:OCECarTER-87640698,1,"Le-Monastier-Ville",44.51564,3.255371,-1,0,SIN:SA:OCE87640698,Europe/Paris,,STE, +STE:SP:OCECarTER-87640706,1,"Campagne-sur-Aude-Pont",42.915905,2.205422,-1,0,SIN:SA:OCE87640706,Europe/Paris,,STE, +STE:SP:OCECarTER-87640714,1,"Couiza-Ste-Anne",42.941446,2.253671,-1,0,SIN:SA:OCE87640714,Europe/Paris,,STE, +STE:SP:OCECarTER-87640722,1,"Pomas-Lavoir",43.112046,2.29015,-1,0,SIN:SA:OCE87640722,Europe/Paris,,STE, +STE:SP:OCECarTER-87640730,1,"Verzeille-Rte-de-St-Hil",43.127446,2.324605,-1,0,SIN:SA:OCE87640730,Europe/Paris,,STE, +STE:SP:OCECarTER-87640748,1,"Leuc-Foyer",43.146142,2.323214,-1,0,SIN:SA:OCE87640748,Europe/Paris,,STE, +STE:SP:OCECarTER-87640755,1,"Couffoulens-Leuc-RD104",43.154596,2.318328,-1,0,SIN:SA:OCE87640755,Europe/Paris,,STE, +STE:SP:OCECarTER-87641001,1,"Gare de Montluçon-Ville",46.337875,2.596412,-1,0,SIN:SA:OCE87641001,Europe/Paris,,STE, +STE:SP:OCECarTER-87641043,1,"Gare de Lapeyrouse(Puy-de-Dôme)",46.226691,2.893278,-1,0,SIN:SA:OCE87641043,Europe/Paris,,STE, +STE:SP:OCECarTER-87641092,1,"St-Eloy",46.169528,2.834382,-1,0,SIN:SA:OCE87641092,Europe/Paris,,STE, +STE:SP:OCECarTER-87641134,1,"St-Gervais-Mairie",46.030319,2.808175,-1,0,SIN:SA:OCE87641134,Europe/Paris,,STE, +STE:SP:OCECarTER-87641167,1,"Les Ancizes-St-Georges",45.925725,2.808888,-1,0,SIN:SA:OCE87641167,Europe/Paris,,STE, +STE:SP:OCECarTER-87641183,1,"Manzat",45.962471,2.942202,-1,0,SIN:SA:OCE87641183,Europe/Paris,,STE, +STE:SP:OCECarTER-87641241,1,"Eygurande-Merlines",45.645326,2.460978,-1,0,SIN:SA:OCE87641241,Europe/Paris,,STE, +STE:SP:OCECarTER-87641274,1,"Laqueuille",45.64695,2.704938,-1,0,SIN:SA:OCE87641274,Europe/Paris,,STE, +STE:SP:OCECarTER-87641290,1,"La Miouze-Rochefort",45.763683,2.8275,-1,0,SIN:SA:OCE87641290,Europe/Paris,,STE, +STE:SP:OCECarTER-87641357,1,"Gare de Vallon-en-Sully",46.536485,2.610803,-1,0,SIN:SA:OCE87641357,Europe/Paris,,STE, +STE:SP:OCECarTER-87641365,1,"Gare de Magnette",46.46415,2.603004,-1,0,SIN:SA:OCE87641365,Europe/Paris,,STE, +STE:SP:OCECarTER-87641373,1,"Gare de Les Trillers",46.414413,2.599717,-1,0,SIN:SA:OCE87641373,Europe/Paris,,STE, +STE:SP:OCECarTER-87641399,1,"Le Vauriat",45.860325,2.920486,-1,0,SIN:SA:OCE87641399,Europe/Paris,,STE, +STE:SP:OCECarTER-87641415,1,"Gare de Commentry",46.295196,2.740011,-1,0,SIN:SA:OCE87641415,Europe/Paris,,STE, +STE:SP:OCECarTER-87641423,1,"Gare de Volvic",45.864581,3.003041,-1,0,SIN:SA:OCE87641423,Europe/Paris,,STE, +STE:SP:OCECarTER-87641456,1,"St-Sauves",45.608407,2.685736,-1,0,SIN:SA:OCE87641456,Europe/Paris,,STE, +STE:SP:OCECarTER-87641464,1,"La Bourboule",45.590452,2.746387,-1,0,SIN:SA:OCE87641464,Europe/Paris,,STE, +STE:SP:OCECarTER-87641472,1,"Le-Mont-Dore-Gare",45.579355,2.804801,-1,0,SIN:SA:OCE87641472,Europe/Paris,,STE, +STE:SP:OCECarTER-87645002,1,"Gare de Aurillac",44.920986,2.435547,-1,0,SIN:SA:OCE87645002,Europe/Paris,,STE, +STE:SP:OCECarTER-87645135,1,"Gare de Laroquebrou",44.964201,2.192841,-1,0,SIN:SA:OCE87645135,Europe/Paris,,STE, +STE:SP:OCECarTER-87645168,1,"Gare de Maurs",44.706133,2.199697,-1,0,SIN:SA:OCE87645168,Europe/Paris,,STE, +STE:SP:OCECarTER-87645192,1,"Gare de Le Rouget",44.856555,2.235418,-1,0,SIN:SA:OCE87645192,Europe/Paris,,STE, +STE:SP:OCECarTER-87645267,1,"Mauriac",45.221784,2.34489,-1,0,SIN:SA:OCE87645267,Europe/Paris,,STE, +STE:SP:OCECarTER-87645283,1,"Vendes",45.296779,2.388505,-1,0,SIN:SA:OCE87645283,Europe/Paris,,STE, +STE:SP:OCECarTER-87645440,1,"Gare de Vic-sur-Cère",44.975948,2.631437,-1,0,SIN:SA:OCE87645440,Europe/Paris,,STE, +STE:SP:OCECarTER-87645473,1,"Gare de Le Lioran",45.09075,2.753267,-1,0,SIN:SA:OCE87645473,Europe/Paris,,STE, +STE:SP:OCECarTER-87645481,1,"Gare de Murat (Cantal)",45.109081,2.869588,-1,0,SIN:SA:OCE87645481,Europe/Paris,,STE, +STE:SP:OCECarTER-87645507,1,"Gare de Neussargues",45.125386,2.979126,-1,0,SIN:SA:OCE87645507,Europe/Paris,,STE, +STE:SP:OCECarTER-87645606,1,"Ste-Anastasie",45.17272,2.968379,-1,0,SIN:SA:OCE87645606,Europe/Paris,,STE, +STE:SP:OCECarTER-87645614,1,"Allanche",45.22967,2.931457,-1,0,SIN:SA:OCE87645614,Europe/Paris,,STE, +STE:SP:OCECarTER-87645705,1,"Bort-les-Orgues",45.406357,2.502563,-1,0,SIN:SA:OCE87645705,Europe/Paris,,STE, +STE:SP:OCECarTER-87666099,1,"Chamelet-Centre.",27.140973,-3.404561,-1,0,STE:SA:OCE87666099,Europe/Paris,,STE, +STE:SP:OCECarTER-87667980,1,"Diou-ville-Allier-(Bus)",46.533349,3.747946,-1,0,SIN:SA:OCE87667980,Europe/Paris,,STE, +STE:SP:OCECarTER-87668004,1,"Villeneuve-/-Allier-Cen",46.660109,3.247787,-1,0,SIN:SA:OCE87668004,Europe/Paris,,STE, +STE:SP:OCECarTER-87668095,1,"Thiel-Sur-Acolin-Bus",46.526266,3.578794,-1,0,STE:SA:OCE87668095,Europe/Paris,,STE, +STE:SP:OCECarTER-87668111,1,"Montbeugny-Centre",46.528189,3.492704,-1,0,SIN:SA:OCE87668111,Europe/Paris,,STE, +STE:SP:OCECarTER-87677096,1,"Changy-Tourny-Monument",46.403334,4.253001,-1,0,SIN:SA:OCE87677096,Europe/Paris,,STE, +STE:SP:OCECarTER-87677138,1,"Chauffailles-Gambetta",46.206913,4.336505,-1,0,SIN:SA:OCE87677138,Europe/Paris,,STE, +STE:SP:OCECarTER-87680504,1,"Les-Trilliers-PN-Car.",27.140973,-3.404561,-1,0,STE:SA:OCE87680504,Europe/Paris,,STE, +STE:SP:OCECarTER-87680553,1,"Riom_Es_M_la_Poste.",27.140973,-3.404561,-1,0,STE:SA:OCE87680553,Europe/Paris,,STE, +STE:SP:OCECarTER-87680579,1,"Royat-T2C-Beausite.",45.768236,3.061834,-1,0,SIN:SA:OCE87680579,Europe/Paris,,STE, +STE:SP:OCECarTER-87680595,1,"St-Gervais-Ch-LPA.",27.140973,-3.404561,-1,0,STE:SA:OCE87680595,Europe/Paris,,STE, +STE:SP:OCECarTER-87680694,1,"Chamalières-park-mun.",27.140973,-3.404561,-1,0,SIN:SA:OCE87680694,Europe/Paris,,STE, +STE:SP:OCECarTER-87680702,1,"Clermont-Uni-T2C.",45.77135,3.089131,-1,0,SIN:SA:OCE87680702,Europe/Paris,,STE, +STE:SP:OCECarTER-87680710,1,"Durtol-squa-sabourin.",45.795954,3.052385,-1,0,SIN:SA:OCE87680710,Europe/Paris,,STE, +STE:SP:OCECarTER-87680728,1,"Fix-St-Geneys-RN102.",27.140973,-3.404561,-1,0,STE:SA:OCE87680728,Europe/Paris,,STE, +STE:SP:OCECarTER-87680736,1,"Lavoute-Arrêt-CG.",27.140973,-3.404561,-1,0,STE:SA:OCE87680736,Europe/Paris,,STE, +STE:SP:OCECarTER-87686600,1,"Puy-Guillaume-Emmaüs",27.140973,-3.404561,-1,0,SIN:SA:OCE87686600,Europe/Paris,,STE, +STE:SP:OCECarTER-87686634,1,"La-Sauvanie",27.140973,-3.404561,-1,0,STE:SA:OCE87686634,Europe/Paris,,STE, +STE:SP:OCECarTER-87687400,1,"Coubladour-Rond-Point",27.140973,-3.404561,-1,0,SIN:SA:OCE87687400,Europe/Paris,,STE, +STE:SP:OCECarTER-87691279,1,"Theix-Centre",27.140973,-3.404561,-1,0,STE:SA:OCE87691279,Europe/Paris,,STE, +STE:SP:OCECarTER-87691576,1,"La-Cluse-Ville",46.170815,5.576363,-1,0,STE:SA:OCE87691576,Europe/Paris,,STE, +STE:SP:OCECarTER-87693218,1,"Le-Mont-Dore-Centre",45.572562,2.808595,-1,0,STE:SA:OCE87693218,Europe/Paris,,STE, +STE:SP:OCECarTER-87693291,1,"Le-Mont-Dore-Ski",27.140973,-3.404561,-1,0,STE:SA:OCE87693291,Europe/Paris,,STE, +STE:SP:OCECarTER-87694687,1,"Gare de Paray-le-Monial",46.447256,4.113628,-1,0,SIN:SA:OCE87694687,Europe/Paris,,STE, +STE:SP:OCECarTER-87694695,1,"Gare de Digoin",46.485196,3.987637,-1,0,SIN:SA:OCE87694695,Europe/Paris,,STE, +STE:SP:OCECarTER-87694729,1,"Dyo",46.351716,4.26604,-1,0,SIN:SA:OCE87694729,Europe/Paris,,STE, +STE:SP:OCECarTER-87694737,1,"Gare de La Clayette-Baudemont",46.288162,4.298451,-1,0,SIN:SA:OCE87694737,Europe/Paris,,STE, +STE:SP:OCECarTER-87694778,1,"Gare de Chauffailles",46.207404,4.345377,-1,0,SIN:SA:OCE87694778,Europe/Paris,,STE, +STE:SP:OCECarTER-87694851,1,"Gare de St-Agnan",46.502017,3.879009,-1,0,SIN:SA:OCE87694851,Europe/Paris,,STE, +STE:SP:OCECarTER-87694869,1,"Gare de Gilly-sur-Loire",46.536983,3.781787,-1,0,SIN:SA:OCE87694869,Europe/Paris,,STE, +STE:SP:OCECarTER-87694885,1,"Charolles",46.435153,4.273414,-1,0,SIN:SA:OCE87694885,Europe/Paris,,STE, +STE:SP:OCECarTER-87695957,1,"Aiguebelette-Centre",45.53747,5.812967,-1,0,STE:SA:OCE87695957,Europe/Paris,,STE, +STE:SP:OCECarTER-87695965,1,"Ambronay-Priay-Rd-1075",46.009723,5.340888,-1,0,STE:SA:OCE87695965,Europe/Paris,,STE, +STE:SP:OCECarTER-87695973,1,"Bellignat-Lycée-Arbez-C",46.250586,5.632869,-1,0,SIN:SA:OCE87695973,Europe/Paris,,STE, +STE:SP:OCECarTER-87695981,1,"Bellignat-Mairie",46.24243,5.629702,-1,0,SIN:SA:OCE87695973,Europe/Paris,,STE, +STE:SP:OCECarTER-87695999,1,"Bourg-En-Bresse-Archive",27.140973,-3.404561,-1,0,STE:SA:OCE87695999,Europe/Paris,,STE, +STE:SP:OCECarTER-87696005,1,"Gare de Nevers",46.987349,3.15087,-1,0,SIN:SA:OCE87696005,Europe/Paris,,STE, +STE:SP:OCECarTER-87696013,1,"Bourg-En-Bresse-Gare-Ro",46.200098,5.214981,-1,0,SIN:SA:OCE87556506,Europe/Paris,,STE, +STE:SP:OCECarTER-87696054,1,"Ceyzeriat-Mairie",46.17902,5.322054,-1,0,SIN:SA:OCE87695973,Europe/Paris,,STE, +STE:SP:OCECarTER-87696153,1,"Hautecourt-Primaire",46.157876,5.420158,-1,0,SIN:SA:OCE87696153,Europe/Paris,,STE, +STE:SP:OCECarTER-87696260,1,"Gare de Saincaize",46.931373,3.071971,-1,0,SIN:SA:OCE87696260,Europe/Paris,,STE, +STE:SP:OCECarTER-87696294,1,"Gare de St-Pierre-le-Moûtier",46.793271,3.111736,-1,0,SIN:SA:OCE87696294,Europe/Paris,,STE, +STE:SP:OCECarTER-87696302,1,"Gare de Chantenay-St-Imbert",46.728304,3.171699,-1,0,SIN:SA:OCE87696302,Europe/Paris,,STE, +STE:SP:OCECarTER-87696328,1,"Gare de Moulins-sur-Allier",46.561364,3.338755,-1,0,SIN:SA:OCE87696328,Europe/Paris,,STE, +STE:SP:OCECarTER-87696351,1,"Gare de Varennes-sur-Allier",46.315441,3.394161,-1,0,SIN:SA:OCE87696351,Europe/Paris,,STE, +STE:SP:OCECarTER-87696385,1,"Les-Abrets-Rue-Italie",45.537169,5.584643,-1,0,STE:SA:OCE87696385,Europe/Paris,,STE, +STE:SP:OCECarTER-87696427,1,"Gare de Dompierre-Sept-Fons",46.526267,3.674899,-1,0,SIN:SA:OCE87696427,Europe/Paris,,STE, +STE:SP:OCECarTER-87696443,1,"Moutiers-Lycée",45.482868,6.529379,-1,0,SIN:SA:OCE87695973,Europe/Paris,,STE, +STE:SP:OCECarTER-87696500,1,"St-Martin-Du-Mont-Le-Fa",46.095643,5.314407,-1,0,STE:SA:OCE87696500,Europe/Paris,,STE, +STE:SP:OCECarTER-87696658,1,"St-Paul-College",45.594344,6.44251,-1,0,STE:SA:OCE87696658,Europe/Paris,,STE, +STE:SP:OCECarTER-87697003,1,"Albigny-Neuville-Arret",45.875407,4.833204,-1,0,STE:SA:OCE87697003,Europe/Paris,,STE, +STE:SP:OCECarTER-87697011,1,"Anse-(Monument)",45.936973,4.718234,-1,0,SIN:SA:OCE87697011,Europe/Paris,,STE, +STE:SP:OCECarTER-87697029,1,"Collonges-F.-Tcl-Gar",45.831344,4.84664,-1,0,STE:SA:OCE87697029,Europe/Paris,,STE, +STE:SP:OCECarTER-87697037,1,"Couzon-Au-Mont-D'or-Arr",45.848951,4.83204,-1,0,STE:SA:OCE87697037,Europe/Paris,,STE, +STE:SP:OCECarTER-87697045,1,"Lyon-Vaise-Gare-Routièr",45.781597,4.805428,-1,0,STE:SA:OCE87697045,Europe/Paris,,STE, +STE:SP:OCECarTER-87697128,1,"Gare de Lyon-Part-Dieu-Gare-Rou",45.760585,4.859435,-1,0,STE:SA:OCE87697128,Europe/Paris,,STE, +STE:SP:OCECarTER-87697136,1,"Lyon-Perrache-Gare-Rout",27.140973,-3.404561,-1,0,STE:SA:OCE87697136,Europe/Paris,,STE, +STE:SP:OCECarTER-87697144,1,"Argentine-La-Combe",45.501996,6.318867,-1,0,STE:SA:OCE87697144,Europe/Paris,,STE, +STE:SP:OCECarTER-87697151,1,"Argentine-Gemelly",45.508123,6.316298,-1,0,STE:SA:OCE87697151,Europe/Paris,,STE, +STE:SP:OCECarTER-87697169,1,"Legny-Ponts-Tarrets",45.906795,4.575537,-1,0,SIN:SA:OCE87697169,Europe/Paris,,STE, +STE:SP:OCECarTER-87697177,1,"Chabons-Lep",45.444264,5.430717,-1,0,SIN:SA:OCE87697177,Europe/Paris,,STE, +STE:SP:OCECarTER-87697193,1,"Clelles-Mairie",44.827226,5.622607,-1,0,SIN:SA:OCE87697193,Europe/Paris,,STE, +STE:SP:OCECarTER-87697466,1,"Grenoble-Eugène-Chavant",27.140973,-3.404561,-1,0,SIN:SA:OCE87697466,Europe/Paris,,STE, +STE:SP:OCECarTER-87697474,1,"Grenoble-Victor-Hugo",27.140973,-3.404561,-1,0,SIN:SA:OCE87697466,Europe/Paris,,STE, +STE:SP:OCECarTER-87697482,1,"Grenoble-Champollion",27.140973,-3.404561,-1,0,SIN:SA:OCE87697466,Europe/Paris,,STE, +STE:SP:OCECarTER-87697508,1,"La-Bridoire-Abris-Bus",45.530786,5.742835,-1,0,STE:SA:OCE87697508,Europe/Paris,,STE, +STE:SP:OCECarTER-87697516,1,"Lus-La-Croix-Haute-1075",44.672095,5.698049,-1,0,STE:SA:OCE87697516,Europe/Paris,,STE, +STE:SP:OCECarTER-87697524,1,"Monestier-Centre",44.916285,5.634476,-1,0,STE:SA:OCE87697524,Europe/Paris,,STE, +STE:SP:OCECarTER-87697532,1,"Pont-Claix-TAG-Marcelli",45.125736,5.698188,-1,0,SIN:SA:OCE87697532,Europe/Paris,,STE, +STE:SP:OCECarTER-87697540,1,"Pringy-Gare-Arret-Sibra",45.939056,6.122245,-1,0,SIN:SA:OCE87697540,Europe/Paris,,STE, +STE:SP:OCECarTER-87697672,1,"Bourg-en-Bresse-Charité",27.140973,-3.404561,-1,0,STE:SA:OCE87697672,Europe/Paris,,STE, +STE:SP:OCECarTER-87697698,1,"La-Chambre",45.359134,6.299662,-1,0,STE:SA:OCE87697698,Europe/Paris,,STE, +STE:SP:OCECarTER-87697706,1,"Polliat-Mairie",46.249302,5.126,-1,0,SIN:SA:OCE87695973,Europe/Paris,,STE, +STE:SP:OCECarTER-87697714,1,"Pontamafrey",45.310951,6.342517,-1,0,SIN:SA:OCE87697714,Europe/Paris,,STE, +STE:SP:OCECarTER-87697722,1,"Saint-Étienne-de-Cuines",45.342273,6.291278,-1,0,STE:SA:OCE87697722,Europe/Paris,,STE, +STE:SP:OCECarTER-87697730,1,"Simandre-Suran-Mairie",46.224562,5.415107,-1,0,SIN:SA:OCE87695973,Europe/Paris,,STE, +STE:SP:OCECarTER-87698290,1,"Grandris-Centre",46.036918,4.472329,-1,0,STE:SA:OCE87698290,Europe/Paris,,STE, +STE:SP:OCECarTER-87698308,1,"Grésy-S/Aix-Ondea",45.723245,5.918449,-1,0,SIN:SA:OCE87698308,Europe/Paris,,STE, +STE:SP:OCECarTER-87698316,1,"Tour-de-Salvagny-Hyppo",45.806348,4.719653,-1,0,SIN:SA:OCE87698316,Europe/Paris,,STE, +STE:SP:OCECarTER-87698332,1,"Lyon-St-Paul-Quai-Bondy",45.766488,4.828105,-1,0,STE:SA:OCE87698332,Europe/Paris,,STE, +STE:SP:OCECarTER-87698340,1,"Lyon-St-Paul-la-Feuilée",45.766342,4.829385,-1,0,STE:SA:OCE87698340,Europe/Paris,,STE, +STE:SP:OCECarTER-87698399,1,"Balbigny-Gare-Routière",45.817749,4.187397,-1,0,SIN:SA:OCE87556506,Europe/Paris,,STE, +STE:SP:OCECarTER-87698415,1,"Beynost-RD1084-Gare",27.140973,-3.404561,-1,0,SIN:SA:OCE87556506,Europe/Paris,,STE, +STE:SP:OCECarTER-87698423,1,"Chamberry-Jacob",45.557789,5.910274,-1,0,SIN:SA:OCE87698423,Europe/Paris,,STE, +STE:SP:OCECarTER-87698449,1,"Communay-la-Guicharde",27.140973,-3.404561,-1,0,STE:SA:OCE87698449,Europe/Paris,,STE, +STE:SP:OCECarTER-87698456,1,"Communay-les-Bonnières",27.140973,-3.404561,-1,0,STE:SA:OCE87698456,Europe/Paris,,STE, +STE:SP:OCECarTER-87698464,1,"Communay-les-Brosses",27.140973,-3.404561,-1,0,STE:SA:OCE87698464,Europe/Paris,,STE, +STE:SP:OCECarTER-87698506,1,"Feyzin-TCL-Gare",45.665467,4.853116,-1,0,STE:SA:OCE87698506,Europe/Paris,,STE, +STE:SP:OCECarTER-87698514,1,"Flumet-Office-Tourisme",45.817585,6.513626,-1,0,SIN:SA:OCE87698514,Europe/Paris,,STE, +STE:SP:OCECarTER-87698530,1,"Le-Bourget-du-Lac-STAC",45.64449,5.868751,-1,0,STE:SA:OCE87698530,Europe/Paris,,STE, +STE:SP:OCECarTER-87698555,1,"Le-Teil-Centre",44.553058,4.685483,-1,0,STE:SA:OCE87698555,Europe/Paris,,STE, +STE:SP:OCECarTER-87698563,1,"Megève-Autogare",45.862105,6.61768,-1,0,SIN:SA:OCE87698563,Europe/Paris,,STE, +STE:SP:OCECarTER-87698571,1,"Miribel-RD1084-Élysée",45.825387,4.956221,-1,0,SIN:SA:OCE87556506,Europe/Paris,,STE, +STE:SP:OCECarTER-87698589,1,"Mionnay-la-Poste",45.898906,4.931264,-1,0,SIN:SA:OCE87698589,Europe/Paris,,STE, +STE:SP:OCECarTER-87698605,1,"Neulise",45.902665,4.180374,-1,0,SIN:SA:OCE87698605,Europe/Paris,,STE, +STE:SP:OCECarTER-87698613,1,"Praz-sur-Arly-O.T.",45.837804,6.570849,-1,0,STE:SA:OCE87698613,Europe/Paris,,STE, +STE:SP:OCECarTER-87698621,1,"Privas-Cours-du-Palais",44.734713,4.600253,-1,0,STE:SA:OCE87698621,Europe/Paris,,STE, +STE:SP:OCECarTER-87698639,1,"Roanne-Gare-Routière",46.041211,4.060763,-1,0,SIN:SA:OCE87556506,Europe/Paris,,STE, +STE:SP:OCECarTER-87698654,1,"Saillans-Pont-Algoud",44.695102,5.196761,-1,0,SIN:SA:OCE87697532,Europe/Paris,,STE, +STE:SP:OCECarTER-87698662,1,"Saint-Etienne-Chtx-G.Ro",45.4427,4.399856,-1,0,STE:SA:OCE87698662,Europe/Paris,,STE, +STE:SP:OCECarTER-87698720,1,"Sury-le-Comtal-Ville",45.540526,4.187252,-1,0,STE:SA:OCE87698720,Europe/Paris,,STE, +STE:SP:OCECarTER-87698738,1,"Tassin-le-Baraillon",45.764497,4.75862,-1,0,STE:SA:OCE87698738,Europe/Paris,,STE, +STE:SP:OCECarTER-87698746,1,"Ternay-Boucherrates",27.140973,-3.404561,-1,0,STE:SA:OCE87698746,Europe/Paris,,STE, +STE:SP:OCECarTER-87698753,1,"Ternay-Centre",45.605328,4.811209,-1,0,STE:SA:OCE87698753,Europe/Paris,,STE, +STE:SP:OCECarTER-87698761,1,"Ternay-Chassagne-GC",27.140973,-3.404561,-1,0,STE:SA:OCE87698761,Europe/Paris,,STE, +STE:SP:OCECarTER-87698779,1,"Ternay-Chemin-de-gare",27.140973,-3.404561,-1,0,STE:SA:OCE87698779,Europe/Paris,,STE, +STE:SP:OCECarTER-87698787,1,"Ternay-Croix-du-Morze",27.140973,-3.404561,-1,0,STE:SA:OCE87698787,Europe/Paris,,STE, +STE:SP:OCECarTER-87698795,1,"Ugine-Place-Val-d'Arly",45.745953,6.421083,-1,0,STE:SA:OCE87698795,Europe/Paris,,STE, +STE:SP:OCECarTER-87698803,1,"Vienne-Gare-Routière",45.521417,4.874058,-1,0,STE:SA:OCE87698803,Europe/Paris,,STE, +STE:SP:OCECarTER-87699009,1,"La Chapelle-sous-Dun",46.258054,4.295551,-1,0,SIN:SA:OCE87699009,Europe/Paris,,STE, +STE:SP:OCECarTER-87700104,1,"Paugnat-Eglise",27.140973,-3.404561,-1,0,SIN:SA:OCE87700104,Europe/Paris,,STE, +STE:SP:OCECarTER-87713677,1,"Gare de Seurre",46.99645,5.151248,-1,0,SIN:SA:OCE87713677,Europe/Paris,,STE, +STE:SP:OCECarTER-87713701,1,"Gare de Mervans",46.798883,5.179536,-1,0,SIN:SA:OCE87713701,Europe/Paris,,STE, +STE:SP:OCECarTER-87713735,1,"Gare de Louhans",46.631126,5.217708,-1,0,SIN:SA:OCE87713735,Europe/Paris,,STE, +STE:SP:OCECarTER-87715441,1,"Gare de Morez",46.526327,6.023801,-1,0,SIN:SA:OCE87715441,Europe/Paris,,STE, +STE:SP:OCECarTER-87721035,1,"Gare de Amplepuis",45.971001,4.326723,-1,0,SIN:SA:OCE87721035,Europe/Paris,,STE, +STE:SP:OCECarTER-87721043,1,"Gare de St-Victor-Thizy",46.002585,4.281147,-1,0,SIN:SA:OCE87721043,Europe/Paris,,STE, +STE:SP:OCECarTER-87721050,1,"Gare de Régny",45.987729,4.215111,-1,0,SIN:SA:OCE87721050,Europe/Paris,,STE, +STE:SP:OCECarTER-87721159,1,"Gare de Lyon-St-Paul",45.766082,4.826904,-1,0,STE:SA:OCE87721159,Europe/Paris,,STE, +STE:SP:OCECarTER-87721175,1,"Gare de Lyon-Gorge-de-Loup",45.766077,4.804731,-1,0,STE:SA:OCE87721175,Europe/Paris,,STE, +STE:SP:OCECarTER-87721282,1,"Gare de St-Germain-au-Mont-d'Or",45.888442,4.804176,-1,0,STE:SA:OCE87721282,Europe/Paris,,STE, +STE:SP:OCECarTER-87721290,1,"Gare de Quincieux",45.906904,4.778574,-1,0,STE:SA:OCE87721290,Europe/Paris,,STE, +STE:SP:OCECarTER-87721332,1,"Gare de Villefranche-sur-Saône",45.984444,4.720814,-1,0,SIN:SA:OCE87721332,Europe/Paris,,STE, +STE:SP:OCECarTER-87721340,1,"Gare de St-Georges-de-Reneins",46.062191,4.718887,-1,0,SIN:SA:OCE87721340,Europe/Paris,,STE, +STE:SP:OCECarTER-87721357,1,"Gare de Belleville-sur-Saône",46.111942,4.729002,-1,0,SIN:SA:OCE87721357,Europe/Paris,,STE, +STE:SP:OCECarTER-87721423,1,"Gare de Lozanne",45.854135,4.68146,-1,0,SIN:SA:OCE87721423,Europe/Paris,,STE, +STE:SP:OCECarTER-87721431,1,"Gare de L'Arbresle",45.833249,4.618236,-1,0,SIN:SA:OCE87721431,Europe/Paris,,STE, +STE:SP:OCECarTER-87721449,1,"Gare de Dardilly-Le-Jubin",45.813655,4.758482,-1,0,STE:SA:OCE87721449,Europe/Paris,,STE, +STE:SP:OCECarTER-87721456,1,"Gare de St-Romain-de-Popey",45.861532,4.542259,-1,0,SIN:SA:OCE87721456,Europe/Paris,,STE, +STE:SP:OCECarTER-87721464,1,"Gare de Pontcharra-St-Forgeux",45.871509,4.492797,-1,0,SIN:SA:OCE87721464,Europe/Paris,,STE, +STE:SP:OCECarTER-87721472,1,"Gare de Tarare",45.889788,4.439075,-1,0,SIN:SA:OCE87721472,Europe/Paris,,STE, +STE:SP:OCECarTER-87721480,1,"Gare de Dardilly-Les-Mouilles",45.801183,4.756221,-1,0,SIN:SA:OCE87721480,Europe/Paris,,STE, +STE:SP:OCECarTER-87721506,1,"Gare de Ecully-la-Demi-Lune",45.76571,4.77952,-1,0,SIN:SA:OCE87721506,Europe/Paris,,STE, +STE:SP:OCECarTER-87721514,1,"Gare de Tassin",45.761528,4.758592,-1,0,SIN:SA:OCE87721514,Europe/Paris,,STE, +STE:SP:OCECarTER-87721522,1,"Gare de Le Méridien",45.768833,4.748303,-1,0,SIN:SA:OCE87721522,Europe/Paris,,STE, +STE:SP:OCECarTER-87721530,1,"Gare de Charbonnières-les-Bains",45.78216,4.735855,-1,0,STE:SA:OCE87721530,Europe/Paris,,STE, +STE:SP:OCECarTER-87721548,1,"Gare de La Tour-de-Salvagny",45.800077,4.716151,-1,0,SIN:SA:OCE87721548,Europe/Paris,,STE, +STE:SP:OCECarTER-87721555,1,"Gare de Lentilly",45.821682,4.667021,-1,0,SIN:SA:OCE87721555,Europe/Paris,,STE, +STE:SP:OCECarTER-87721563,1,"Gare de Fleurieux-sur-Arbresle",45.844749,4.660569,-1,0,SIN:SA:OCE87721563,Europe/Paris,,STE, +STE:SP:OCECarTER-87721605,1,"Gare de Sain-Bel",45.811064,4.601252,-1,0,SIN:SA:OCE87721605,Europe/Paris,,STE, +STE:SP:OCECarTER-87721738,1,"Gare de Dommartin-Lissieu",45.847855,4.732195,-1,0,SIN:SA:OCE87721738,Europe/Paris,,STE, +STE:SP:OCECarTER-87721746,1,"Gare de Civrieux-d'Azergues",45.859195,4.718249,-1,0,SIN:SA:OCE87721746,Europe/Paris,,STE, +STE:SP:OCECarTER-87721753,1,"Gare de Chatillon-d'Azergues",45.875254,4.645199,-1,0,SIN:SA:OCE87721753,Europe/Paris,,STE, +STE:SP:OCECarTER-87721761,1,"Gare de Chessy (Rhône)",45.885537,4.622497,-1,0,SIN:SA:OCE87721761,Europe/Paris,,STE, +STE:SP:OCECarTER-87721779,1,"Le Breuil (Rhône)",45.896771,4.591215,-1,0,SIN:SA:OCE87721779,Europe/Paris,,STE, +STE:SP:OCECarTER-87721787,1,"Gare de Bois-d'Oingt-Légny",45.906588,4.57558,-1,0,SIN:SA:OCE87721787,Europe/Paris,,STE, +STE:SP:OCECarTER-87721811,1,"Ternand",45.946157,4.536593,-1,0,SIN:SA:OCE87721811,Europe/Paris,,STE, +STE:SP:OCECarTER-87721829,1,"Gare de Chamelet",45.981605,4.507096,-1,0,SIN:SA:OCE87721829,Europe/Paris,,STE, +STE:SP:OCECarTER-87721845,1,"Chambost-Allières.",46.018686,4.499135,-1,0,SIN:SA:OCE87721845,Europe/Paris,,STE, +STE:SP:OCECarTER-87721852,1,"Grandris-Folletière.",46.035952,4.49333,-1,0,SIN:SA:OCE87721852,Europe/Paris,,STE, +STE:SP:OCECarTER-87721860,1,"Gare de Lamure-sur-Azergues",46.061095,4.492123,-1,0,SIN:SA:OCE87721860,Europe/Paris,,STE, +STE:SP:OCECarTER-87721878,1,"St-Nizier-d'Azergues",46.087032,4.48043,-1,0,SIN:SA:OCE87721878,Europe/Paris,,STE, +STE:SP:OCECarTER-87721894,1,"Poule",46.148108,4.456527,-1,0,STE:SA:OCE87721894,Europe/Paris,,STE, +STE:SP:OCECarTER-87722025,1,"Gare de Lyon-Perrache",45.748492,4.825748,-1,0,SIN:SA:OCE87722025,Europe/Paris,,STE, +STE:SP:OCECarTER-87722405,1,"Gare de Givors-Ville",45.585368,4.766243,-1,0,SIN:SA:OCE87722405,Europe/Paris,,STE, +STE:SP:OCECarTER-87722538,1,"Gare de Feyzin",45.665891,4.853071,-1,0,STE:SA:OCE87722538,Europe/Paris,,STE, +STE:SP:OCECarTER-87722546,1,"Gare de Sérézin",45.627175,4.818039,-1,0,SIN:SA:OCE87722546,Europe/Paris,,STE, +STE:SP:OCECarTER-87722561,1,"Gare de Chasse-sur-Rhône",45.582394,4.79485,-1,0,SIN:SA:OCE87722561,Europe/Paris,,STE, +STE:SP:OCECarTER-87722587,1,"Gare de Vienne",45.521214,4.874305,-1,0,STE:SA:OCE87722587,Europe/Paris,,STE, +STE:SP:OCECarTER-87722652,1,"Gare de St-Clair-les-Roches",45.450387,4.769905,-1,0,SIN:SA:OCE87722652,Europe/Paris,,STE, +STE:SP:OCECarTER-87722678,1,"Gare de Le Péage-de-Roussillon",45.371659,4.795408,-1,0,SIN:SA:OCE87722678,Europe/Paris,,STE, +STE:SP:OCECarTER-87723197,1,"Gare de Lyon-Part-Dieu",45.760585,4.859435,-1,0,SIN:SA:OCE87723197,Europe/Paris,,STE, +STE:SP:OCECarTER-87723320,1,"Gare de Vénissieux",45.705608,4.887955,-1,0,STE:SA:OCE87723320,Europe/Paris,,STE, +STE:SP:OCECarTER-87723353,1,"Gare de St-Priest",45.686649,4.934314,-1,0,SIN:SA:OCE87723353,Europe/Paris,,STE, +STE:SP:OCECarTER-87723361,1,"St-Pierre-de-Chandieu-R",45.647632,5.011816,-1,0,SIN:SA:OCE87723361,Europe/Paris,,STE, +STE:SP:OCECarTER-87723387,1,"Gare de St-Quentin-Fallavier",45.63812,5.099951,-1,0,STE:SA:OCE87723387,Europe/Paris,,STE, +STE:SP:OCECarTER-87723395,1,"Gare de La Verpillière",45.627601,5.150745,-1,0,SIN:SA:OCE87723395,Europe/Paris,,STE, +STE:SP:OCECarTER-87723429,1,"Gare de Bourgoin-Jallieu",45.583968,5.273344,-1,0,SIN:SA:OCE87723429,Europe/Paris,,STE, +STE:SP:OCECarTER-87723478,1,"Gare de La Tour-du-Pin",45.560225,5.449547,-1,0,STE:SA:OCE87723478,Europe/Paris,,STE, +STE:SP:OCECarTER-87723494,1,"Gare de St-André-le-Gaz",45.544507,5.524286,-1,0,SIN:SA:OCE87723494,Europe/Paris,,STE, +STE:SP:OCECarTER-87723536,1,"Gare de St-Maurice-de-Beynost",45.827433,4.977629,-1,0,SIN:SA:OCE87723536,Europe/Paris,,STE, +STE:SP:OCECarTER-87723569,1,"Gare de Montluel",45.847763,5.057543,-1,0,SIN:SA:OCE87723569,Europe/Paris,,STE, +STE:SP:OCECarTER-87723577,1,"Gare de La Valbonne",45.849261,5.124991,-1,0,SIN:SA:OCE87723577,Europe/Paris,,STE, +STE:SP:OCECarTER-87723585,1,"Gare de Meximieux-Pérouges",45.901787,5.193333,-1,0,SIN:SA:OCE87723585,Europe/Paris,,STE, +STE:SP:OCECarTER-87723700,1,"Gare de Sathonay-Rillieux",45.82025,4.875267,-1,0,STE:SA:OCE87723700,Europe/Paris,,STE, +STE:SP:OCECarTER-87723718,1,"Gare de Les Echets",45.874622,4.910811,-1,0,SIN:SA:OCE87723718,Europe/Paris,,STE, +STE:SP:OCECarTER-87723734,1,"Gare de St-André-de-Corcy",45.92593,4.948782,-1,0,SIN:SA:OCE87723734,Europe/Paris,,STE, +STE:SP:OCECarTER-87723742,1,"Gare de St-Marcel-en-Dombes",45.950366,4.977512,-1,0,SIN:SA:OCE87723742,Europe/Paris,,STE, +STE:SP:OCECarTER-87723759,1,"Gare de Villars-les-Dombes",46.004255,5.028411,-1,0,SIN:SA:OCE87723759,Europe/Paris,,STE, +STE:SP:OCECarTER-87723767,1,"Gare de Marlieux-Chatillon",46.06406,5.073203,-1,0,SIN:SA:OCE87723767,Europe/Paris,,STE, +STE:SP:OCECarTER-87723783,1,"Gare de St-Paul-de-Varax",46.100057,5.128181,-1,0,SIN:SA:OCE87723783,Europe/Paris,,STE, +STE:SP:OCECarTER-87723791,1,"Gare de Servas-Lent",46.130662,5.168125,-1,0,SIN:SA:OCE87723791,Europe/Paris,,STE, +STE:SP:OCECarTER-87725689,1,"Gare de Mâcon-Ville",46.302659,4.825149,-1,0,SIN:SA:OCE87725689,Europe/Paris,,STE, +STE:SP:OCECarTER-87725705,1,"Gare de Mâcon-Loché-TGV",46.282898,4.778948,-1,0,SIN:SA:OCE87725705,Europe/Paris,,STE, +STE:SP:OCECarTER-87725713,1,"Gare de Crêches-sur-Saône",46.246615,4.783901,-1,0,SIN:SA:OCE87725713,Europe/Paris,,STE, +STE:SP:OCECarTER-87725739,1,"Gare de Romanèche-Thorins",46.176382,4.742101,-1,0,SIN:SA:OCE87725739,Europe/Paris,,STE, +STE:SP:OCECarTER-87725804,1,"Gare de Pont-de-Veyle",46.267827,4.892948,-1,0,SIN:SA:OCE87725804,Europe/Paris,,STE, +STE:SP:OCECarTER-87725812,1,"St-Jean-sur-Veyle",46.260588,4.915644,-1,0,SIN:SA:OCE87725812,Europe/Paris,,STE, +STE:SP:OCECarTER-87725820,1,"Gare de Vonnas",46.227197,4.991746,-1,0,SIN:SA:OCE87725820,Europe/Paris,,STE, +STE:SP:OCECarTER-87725838,1,"Gare de Mézériat",46.234927,5.046569,-1,0,SIN:SA:OCE87725838,Europe/Paris,,STE, +STE:SP:OCECarTER-87726000,1,"Gare de St-Etienne-Châteaucreux",45.443382,4.399996,-1,0,SIN:SA:OCE87726000,Europe/Paris,,STE, +STE:SP:OCECarTER-87726158,1,"Gare de St-Etienne-la-Terrasse",45.464852,4.379529,-1,0,SIN:SA:OCE87726158,Europe/Paris,,STE, +STE:SP:OCECarTER-87726208,1,"Gare de Veauche St Galmier",45.565928,4.293199,-1,0,SIN:SA:OCE87726208,Europe/Paris,,STE, +STE:SP:OCECarTER-87726307,1,"Gare de St-Chamond",45.472522,4.516984,-1,0,SIN:SA:OCE87726307,Europe/Paris,,STE, +STE:SP:OCECarTER-87726331,1,"Gare de Rive-de-Gier",45.524337,4.606362,-1,0,SIN:SA:OCE87726331,Europe/Paris,,STE, +STE:SP:OCECarTER-87726406,1,"Gare de Andrézieux",45.521762,4.255176,-1,0,SIN:SA:OCE87726406,Europe/Paris,,STE, +STE:SP:OCECarTER-87726414,1,"Gare de Bonson",45.522171,4.216222,-1,0,SIN:SA:OCE87726414,Europe/Paris,,STE, +STE:SP:OCECarTER-87726422,1,"Gare de Sury-le-Comtal",45.529078,4.182426,-1,0,SIN:SA:OCE87726422,Europe/Paris,,STE, +STE:SP:OCECarTER-87726430,1,"Gare de St-Romain-le-Puy",45.554546,4.12077,-1,0,SIN:SA:OCE87726430,Europe/Paris,,STE, +STE:SP:OCECarTER-87726448,1,"Gare de Montbrison",45.604466,4.078218,-1,0,SIN:SA:OCE87726448,Europe/Paris,,STE, +STE:SP:OCECarTER-87726471,1,"Boën",45.74137,4.005014,-1,0,SIN:SA:OCE87726471,Europe/Paris,,STE, +STE:SP:OCECarTER-87726661,1,"St-Didier-la-Séauve",45.296787,4.259113,-1,0,SIN:SA:OCE87726661,Europe/Paris,,STE, +STE:SP:OCECarTER-87726687,1,"Dunières-Bascule",45.211274,4.349684,-1,0,SIN:SA:OCE87726687,Europe/Paris,,STE, +STE:SP:OCECarTER-87726729,1,"Gare de Firminy",45.391645,4.286429,-1,0,SIN:SA:OCE87726729,Europe/Paris,,STE, +STE:SP:OCECarTER-87726760,1,"Gare de Aurec",45.371129,4.198434,-1,0,SIN:SA:OCE87726760,Europe/Paris,,STE, +STE:SP:OCECarTER-87726778,1,"Gare de Bas-Monistrol",45.297668,4.139717,-1,0,SIN:SA:OCE87726778,Europe/Paris,,STE, +STE:SP:OCECarTER-87726794,1,"Beauzac-Rue-des-Vivats",45.23567,4.094252,-1,0,SIN:SA:OCE87726794,Europe/Paris,,STE, +STE:SP:OCECarTER-87726802,1,"Gare de Roanne",46.040211,4.063135,-1,0,SIN:SA:OCE87726802,Europe/Paris,,STE, +STE:SP:OCECarTER-87726828,1,"Gare de Le Coteau",46.023935,4.086301,-1,0,SIN:SA:OCE87726828,Europe/Paris,,STE, +STE:SP:OCECarTER-87726869,1,"Gare de Balbigny",45.817785,4.187385,-1,0,SIN:SA:OCE87726869,Europe/Paris,,STE, +STE:SP:OCECarTER-87726877,1,"Gare de Feurs",45.744084,4.230446,-1,0,SIN:SA:OCE87726877,Europe/Paris,,STE, +STE:SP:OCECarTER-87726885,1,"Gare de Montrond-les-Bains",45.644402,4.248833,-1,0,SIN:SA:OCE87726885,Europe/Paris,,STE, +STE:SP:OCECarTER-87731653,1,"Néronde",45.79871,3.520632,-1,0,SIN:SA:OCE87731653,Europe/Paris,,STE, +STE:SP:OCECarTER-87731695,1,"Job",45.61592,3.745572,-1,0,SIN:SA:OCE87731695,Europe/Paris,,STE, +STE:SP:OCECarTER-87731703,1,"La Forie",45.590508,3.762072,-1,0,SIN:SA:OCE87731703,Europe/Paris,,STE, +STE:SP:OCECarTER-87731778,1,"Monlet",45.219711,3.714153,-1,0,SIN:SA:OCE87731778,Europe/Paris,,STE, +STE:SP:OCECarTER-87731786,1,"Céaux-d'Allègre",45.18083,3.747499,-1,0,SIN:SA:OCE87731786,Europe/Paris,,STE, +STE:SP:OCECarTER-87731802,1,"St-George-d'Aurac-Bourg",45.156218,3.540769,-1,0,SIN:SA:OCE87731802,Europe/Paris,,STE, +STE:SP:OCECarTER-87732008,1,"Gare de Vichy",46.12697,3.430489,-1,0,SIN:SA:OCE87732008,Europe/Paris,,STE, +STE:SP:OCECarTER-87732206,1,"Gare de St-Germain-des-Fossés",46.209103,3.430489,-1,0,SIN:SA:OCE87732206,Europe/Paris,,STE, +STE:SP:OCECarTER-87732404,1,"Gare de Gannat",46.097436,3.20488,-1,0,SIN:SA:OCE87732404,Europe/Paris,,STE, +STE:SP:OCECarTER-87734004,1,"Gare de Clermont-Ferrand",45.778569,3.100519,-1,0,SIN:SA:OCE87734004,Europe/Paris,,STE, +STE:SP:OCECarTER-87734038,1,"Gare de Royat-Chamalières",45.767572,3.061504,-1,0,SIN:SA:OCE87734038,Europe/Paris,,STE, +STE:SP:OCECarTER-87734053,1,"Gare de Riom-Châtel-Guyon",45.889842,3.120813,-1,0,SIN:SA:OCE87734053,Europe/Paris,,STE, +STE:SP:OCECarTER-87734087,1,"Gare de Pont-du-Château",45.788533,3.238421,-1,0,SIN:SA:OCE87734087,Europe/Paris,,STE, +STE:SP:OCECarTER-87734129,1,"Gare de Aigueperse",46.014847,3.197877,-1,0,SIN:SA:OCE87734129,Europe/Paris,,STE, +STE:SP:OCECarTER-87734186,1,"Gare de Vic-le-Comte",45.664898,3.207027,-1,0,SIN:SA:OCE87734186,Europe/Paris,,STE, +STE:SP:OCECarTER-87734194,1,"Gare de Parent-Coudes-Champeix",45.61442,3.216807,-1,0,SIN:SA:OCE87734194,Europe/Paris,,STE, +STE:SP:OCECarTER-87734202,1,"Gare de Issoire",45.543953,3.254071,-1,0,SIN:SA:OCE87734202,Europe/Paris,,STE, +STE:SP:OCECarTER-87734228,1,"Gare de Le Breuil-sur-Couze",45.467089,3.262143,-1,0,SIN:SA:OCE87734228,Europe/Paris,,STE, +STE:SP:OCECarTER-87734236,1,"Le Saut-du-Loup",45.452751,3.302208,-1,0,SIN:SA:OCE87734236,Europe/Paris,,STE, +STE:SP:OCECarTER-87734244,1,"Gare de Brassac-les-Mines",45.4141,3.32993,-1,0,SIN:SA:OCE87734244,Europe/Paris,,STE, +STE:SP:OCECarTER-87734251,1,"Gare de Arvant",45.365383,3.310488,-1,0,SIN:SA:OCE87734251,Europe/Paris,,STE, +STE:SP:OCECarTER-87734269,1,"Gare de Brioude",45.300657,3.378675,-1,0,SIN:SA:OCE87734269,Europe/Paris,,STE, +STE:SP:OCECarTER-87734293,1,"Gare de Paulhaguet",45.21015,3.500395,-1,0,SIN:SA:OCE87734293,Europe/Paris,,STE, +STE:SP:OCECarTER-87734301,1,"Gare de St-Georges-d'Aurac",45.160594,3.494704,-1,0,SIN:SA:OCE87734301,Europe/Paris,,STE, +STE:SP:OCECarTER-87734319,1,"Gare de Langeac",45.101225,3.490574,-1,0,SIN:SA:OCE87734319,Europe/Paris,,STE, +STE:SP:OCECarTER-87734350,1,"Gare de Langogne",44.732607,3.857278,-1,0,SIN:SA:OCE87734350,Europe/Paris,,STE, +STE:SP:OCECarTER-87734368,1,"Gare de Luc (Lozère)",44.65409,3.891105,-1,0,SIN:SA:OCE87734368,Europe/Paris,,STE, +STE:SP:OCECarTER-87734426,1,"Gare de Vertaizon",45.784569,3.288226,-1,0,SIN:SA:OCE87734426,Europe/Paris,,STE, +STE:SP:OCECarTER-87734442,1,"Gare de Lezoux",45.821139,3.385773,-1,0,SIN:SA:OCE87734442,Europe/Paris,,STE, +STE:SP:OCECarTER-87734459,1,"Gare de Pont-de-Dore",45.842816,3.490427,-1,0,SIN:SA:OCE87734459,Europe/Paris,,STE, +STE:SP:OCECarTER-87734475,1,"Gare de Thiers",45.861087,3.543058,-1,0,SIN:SA:OCE87734475,Europe/Paris,,STE, +STE:SP:OCECarTER-87734509,1,"Noirétable",45.815906,3.761031,-1,0,SIN:SA:OCE87734509,Europe/Paris,,STE, +STE:SP:OCECarTER-87734525,1,"Courpière",45.757656,3.544056,-1,0,SIN:SA:OCE87734525,Europe/Paris,,STE, +STE:SP:OCECarTER-87734533,1,"Giroux",45.695371,3.590237,-1,0,SIN:SA:OCE87734533,Europe/Paris,,STE, +STE:SP:OCECarTER-87734541,1,"Olliergues",45.675772,3.637051,-1,0,SIN:SA:OCE87734541,Europe/Paris,,STE, +STE:SP:OCECarTER-87734558,1,"Pont-de-David",45.645049,3.668076,-1,0,SIN:SA:OCE87734558,Europe/Paris,,STE, +STE:SP:OCECarTER-87734566,1,"Vertolaye",45.642927,3.706008,-1,0,SIN:SA:OCE87734566,Europe/Paris,,STE, +STE:SP:OCECarTER-87734574,1,"Ambert",45.549647,3.735071,-1,0,SIN:SA:OCE87734574,Europe/Paris,,STE, +STE:SP:OCECarTER-87734582,1,"Marsac-en-Livradois",45.481524,3.726544,-1,0,SIN:SA:OCE87734582,Europe/Paris,,STE, +STE:SP:OCECarTER-87734590,1,"Arlanc-Place-Eglise",45.413238,3.724652,-1,0,SIN:SA:OCE87734590,Europe/Paris,,STE, +STE:SP:OCECarTER-87734632,1,"La Chaise-Dieu",45.316443,3.696954,-1,0,SIN:SA:OCE87734632,Europe/Paris,,STE, +STE:SP:OCECarTER-87734640,1,"Sembadel",45.277965,3.720148,-1,0,SIN:SA:OCE87734640,Europe/Paris,,STE, +STE:SP:OCECarTER-87734665,1,"Allègre",45.203328,3.713327,-1,0,SIN:SA:OCE87734665,Europe/Paris,,STE, +STE:SP:OCECarTER-87734673,1,"Gare de Darsac",45.142191,3.736667,-1,0,SIN:SA:OCE87734673,Europe/Paris,,STE, +STE:SP:OCECarTER-87734681,1,"Borne",45.100197,3.798542,-1,0,SIN:SA:OCE87734681,Europe/Paris,,STE, +STE:SP:OCECarTER-87734699,1,"Gare de Le Puy-en-Velay",45.042724,3.892528,-1,0,SIN:SA:OCE87734699,Europe/Paris,,STE, +STE:SP:OCECarTER-87734707,1,"Gare de Lavoûte-sur-Loire",45.121295,3.905323,-1,0,SIN:SA:OCE87734707,Europe/Paris,,STE, +STE:SP:OCECarTER-87734715,1,"Gare de St-Vincent-le-Château",45.148612,3.918503,-1,0,SIN:SA:OCE87734715,Europe/Paris,,STE, +STE:SP:OCECarTER-87734723,1,"Gare de Vorey",45.182877,3.911361,-1,0,SIN:SA:OCE87734723,Europe/Paris,,STE, +STE:SP:OCECarTER-87734731,1,"Gare de Chamalières",45.205918,3.99197,-1,0,SIN:SA:OCE87734731,Europe/Paris,,STE, +STE:SP:OCECarTER-87734749,1,"Gare de Retournac",45.201312,4.036033,-1,0,SIN:SA:OCE87734749,Europe/Paris,,STE, +STE:SP:OCECarTER-87734871,1,"Gare de Massiac-Blesle",45.253703,3.196585,-1,0,SIN:SA:OCE87734871,Europe/Paris,,STE, +STE:SP:OCECarTER-87739961,1,"St-Symphorien-des-Bois",46.332735,4.2814,-1,0,SIN:SA:OCE87739961,Europe/Paris,,STE, +STE:SP:OCECarTER-87741009,1,"Gare de Chambéry-Chal.-les-Eaux",45.571038,5.9198,-1,0,STE:SA:OCE87741009,Europe/Paris,,STE, +STE:SP:OCECarTER-87741074,1,"Gare de Culoz",45.843258,5.778699,-1,0,SIN:SA:OCE87741074,Europe/Paris,,STE, +STE:SP:OCECarTER-87741108,1,"Gare de Vions-Chanaz",45.824386,5.807297,-1,0,SIN:SA:OCE87741108,Europe/Paris,,STE, +STE:SP:OCECarTER-87741116,1,"Gare de Chindrieux",45.803459,5.846921,-1,0,SIN:SA:OCE87741116,Europe/Paris,,STE, +STE:SP:OCECarTER-87741132,1,"Gare de Aix-les-Bains-le-Revard",45.687862,5.90935,-1,0,SIN:SA:OCE87741132,Europe/Paris,,STE, +STE:SP:OCECarTER-87741140,1,"Gare de Viviers-du-Lac",45.648528,5.903319,-1,0,SIN:SA:OCE87741140,Europe/Paris,,STE, +STE:SP:OCECarTER-87741181,1,"Gare de Montmélian",45.503065,6.043118,-1,0,SIN:SA:OCE87741181,Europe/Paris,,STE, +STE:SP:OCECarTER-87741223,1,"Gare de St-Pierre-d'Albigny",45.557372,6.156358,-1,0,SIN:SA:OCE87741223,Europe/Paris,,STE, +STE:SP:OCECarTER-87741231,1,"Gare de Chamousset",45.557515,6.206436,-1,0,SIN:SA:OCE87741231,Europe/Paris,,STE, +STE:SP:OCECarTER-87741249,1,"Aiton-Salle-Polyvalente",45.559471,6.259363,-1,0,SIN:SA:OCE87741249,Europe/Paris,,STE, +STE:SP:OCECarTER-87741256,1,"Gare de Aiguebelle",45.543666,6.306747,-1,0,SIN:SA:OCE87741256,Europe/Paris,,STE, +STE:SP:OCECarTER-87741272,1,"Argentine",45.493258,6.313831,-1,0,SIN:SA:OCE87741272,Europe/Paris,,STE, +STE:SP:OCECarTER-87741280,1,"Gare de Epierre-St-Léger",45.456968,6.292469,-1,0,SIN:SA:OCE87741280,Europe/Paris,,STE, +STE:SP:OCECarTER-87741298,1,"Les Chavannes-St-Rémy",45.387624,6.276047,-1,0,SIN:SA:OCE87741298,Europe/Paris,,STE, +STE:SP:OCECarTER-87741306,1,"Gare de St-Avre-la-Chambre",45.353102,6.302884,-1,0,SIN:SA:OCE87741306,Europe/Paris,,STE, +STE:SP:OCECarTER-87741439,1,"Gare de Lépin-le-Lac-la-Bauche",45.541546,5.764963,-1,0,SIN:SA:OCE87741439,Europe/Paris,,STE, +STE:SP:OCECarTER-87741447,1,"La Bridoire",45.531044,5.74294,-1,0,SIN:SA:OCE87741447,Europe/Paris,,STE, +STE:SP:OCECarTER-87741454,1,"Gare de St-Béron-la-Bridoire",45.503934,5.731895,-1,0,SIN:SA:OCE87741454,Europe/Paris,,STE, +STE:SP:OCECarTER-87741462,1,"Domessin-le-Bonnard",45.524942,5.695229,-1,0,SIN:SA:OCE87741462,Europe/Paris,,STE, +STE:SP:OCECarTER-87741470,1,"Gare de Pont-de-Beauvoisin",45.524541,5.680665,-1,0,STE:SA:OCE87741470,Europe/Paris,,STE, +STE:SP:OCECarTER-87741496,1,"Gare de Les Abrets-Fitilieu",45.542126,5.575466,-1,0,SIN:SA:OCE87741496,Europe/Paris,,STE, +STE:SP:OCECarTER-87741504,1,"Gare de Virieu-le-Grand-Belley",45.848315,5.653637,-1,0,SIN:SA:OCE87741504,Europe/Paris,,STE, +STE:SP:OCECarTER-87741611,1,"Gare de Grésy-sur-Isère",45.594439,6.258861,-1,0,SIN:SA:OCE87741611,Europe/Paris,,STE, +STE:SP:OCECarTER-87741629,1,"Gare de Frontenex",45.63055,6.314034,-1,0,SIN:SA:OCE87741629,Europe/Paris,,STE, +STE:SP:OCECarTER-87741645,1,"Gare de Albertville",45.673184,6.383238,-1,0,SIN:SA:OCE87741645,Europe/Paris,,STE, +STE:SP:OCECarTER-87741678,1,"La Bathie",45.629544,6.446135,-1,0,SIN:SA:OCE87741678,Europe/Paris,,STE, +STE:SP:OCECarTER-87741686,1,"Cévins-échangeur",45.59503,6.446911,-1,0,SIN:SA:OCE87741686,Europe/Paris,,STE, +STE:SP:OCECarTER-87741694,1,"Gare de Notre-Dame-de-Briançon",45.539307,6.468747,-1,0,SIN:SA:OCE87741694,Europe/Paris,,STE, +STE:SP:OCECarTER-87741702,1,"Petit-Coeur-la-Léchère",45.520487,6.484088,-1,0,SIN:SA:OCE87741702,Europe/Paris,,STE, +STE:SP:OCECarTER-87741710,1,"Aigueblanche-Centre",45.500203,6.511056,-1,0,SIN:SA:OCE87741710,Europe/Paris,,STE, +STE:SP:OCECarTER-87741728,1,"Gare de Moûtiers-Salins-Brides",45.486477,6.531382,-1,0,SIN:SA:OCE87741728,Europe/Paris,,STE, +STE:SP:OCECarTER-87741769,1,"Gare de Aime-la-Plagne",45.554368,6.648884,-1,0,SIN:SA:OCE87741769,Europe/Paris,,STE, +STE:SP:OCECarTER-87741777,1,"Gare de Landry",45.574205,6.733866,-1,0,SIN:SA:OCE87741777,Europe/Paris,,STE, +STE:SP:OCECarTER-87741793,1,"Gare de Bourg-St-Maurice",45.618521,6.771481,-1,0,SIN:SA:OCE87741793,Europe/Paris,,STE, +STE:SP:OCECarTER-87742007,1,"Gare de Modane",45.193558,6.659178,-1,0,SIN:SA:OCE87742007,Europe/Paris,,STE, +STE:SP:OCECarTER-87742320,1,"Gare de St-Jean-de-Maurienne-A.",45.277842,6.354198,-1,0,SIN:SA:OCE87742320,Europe/Paris,,STE, +STE:SP:OCECarTER-87742361,1,"Gare de St-Michel-Valloire",45.217247,6.471118,-1,0,SIN:SA:OCE87742361,Europe/Paris,,STE, +STE:SP:OCECarTER-87743005,1,"Gare de Bourg-en-Bresse",46.200126,5.214969,-1,0,SIN:SA:OCE87743005,Europe/Paris,,STE, +STE:SP:OCECarTER-87743104,1,"La-Vavrette-Tossiat",46.132672,5.28769,-1,0,SIN:SA:OCE87743104,Europe/Paris,,STE, +STE:SP:OCECarTER-87743112,1,"Gare de St-Martin-du-Mont",46.095816,5.303041,-1,0,SIN:SA:OCE87743112,Europe/Paris,,STE, +STE:SP:OCECarTER-87743120,1,"Gare de Pont-d'Ain",46.054006,5.334332,-1,0,SIN:SA:OCE87743120,Europe/Paris,,STE, +STE:SP:OCECarTER-87743146,1,"Gare de Ambronay-Priay",46.011639,5.338266,-1,0,SIN:SA:OCE87743146,Europe/Paris,,STE, +STE:SP:OCECarTER-87743328,1,"Gare de Villereversure",46.194155,5.397522,-1,0,SIN:SA:OCE87743328,Europe/Paris,,STE, +STE:SP:OCECarTER-87743351,1,"Gare de Nurieux",46.184727,5.527912,-1,0,SIN:SA:OCE87743351,Europe/Paris,,STE, +STE:SP:OCECarTER-87743500,1,"Montréal",46.184275,5.577369,-1,0,SIN:SA:OCE87743500,Europe/Paris,,STE, +STE:SP:OCECarTER-87743518,1,"Martignat",46.209449,5.610343,-1,0,SIN:SA:OCE87743518,Europe/Paris,,STE, +STE:SP:OCECarTER-87743534,1,"Gare de Oyonnax",46.259609,5.653252,-1,0,SIN:SA:OCE87743534,Europe/Paris,,STE, +STE:SP:OCECarTER-87743591,1,"Gare de Molinges",46.356961,5.768063,-1,0,SIN:SA:OCE87743591,Europe/Paris,,STE, +STE:SP:OCECarTER-87743633,1,"Gare de St-Claude",46.38993,5.860389,-1,0,SIN:SA:OCE87743633,Europe/Paris,,STE, +STE:SP:OCECarTER-87743716,1,"Gare de Ambérieu-en-Bugey",45.954008,5.342313,-1,0,SIN:SA:OCE87743716,Europe/Paris,,STE, +STE:SP:OCECarTER-87743740,1,"Gare de St-Rambert-en-Bugey",45.947355,5.438595,-1,0,SIN:SA:OCE87743740,Europe/Paris,,STE, +STE:SP:OCECarTER-87743757,1,"Gare de Tenay-Hauteville",45.9223,5.50095,-1,0,SIN:SA:OCE87743757,Europe/Paris,,STE, +STE:SP:OCECarTER-87745000,1,"Gare de Bellegarde-Gare",46.109704,5.823646,-1,0,SIN:SA:OCE87745000,Europe/Paris,,STE, +STE:SP:OCECarTER-87745430,1,"Gare de St-Julien-en-Genevois",46.142063,6.085524,-1,0,SIN:SA:OCE87745430,Europe/Paris,,STE, +STE:SP:OCECarTER-87745497,1,"Gare de Annemasse",46.19923,6.236388,-1,0,SIN:SA:OCE87745497,Europe/Paris,,STE, +STE:SP:OCECarTER-87745588,1,"Gare de Machilly",46.251269,6.32818,-1,0,SIN:SA:OCE87745588,Europe/Paris,,STE, +STE:SP:OCECarTER-87745596,1,"Gare de Bons-en-Chablais",46.270031,6.366161,-1,0,SIN:SA:OCE87745596,Europe/Paris,,STE, +STE:SP:OCECarTER-87745620,1,"Gare de Perrignier",46.303286,6.424921,-1,0,SIN:SA:OCE87745620,Europe/Paris,,STE, +STE:SP:OCECarTER-87745646,1,"Gare de Thonon-les-Bains",46.36898,6.481557,-1,0,SIN:SA:OCE87745646,Europe/Paris,,STE, +STE:SP:OCECarTER-87745679,1,"Gare de Evian-les-Bains",46.397889,6.577472,-1,0,SIN:SA:OCE87745679,Europe/Paris,,STE, +STE:SP:OCECarTER-87745927,1,"Genève-Eaux-Vives-Rieu",46.200728,6.16596,-1,0,SIN:SA:OCE87745927,Europe/Paris,,STE, +STE:SP:OCECarTER-87746008,1,"Gare de Annecy",45.902059,6.121819,-1,0,SIN:SA:OCE87746008,Europe/Paris,,STE, +STE:SP:OCECarTER-87746115,1,"Gare de Albens",45.786133,5.948551,-1,0,SIN:SA:OCE87746115,Europe/Paris,,STE, +STE:SP:OCECarTER-87746149,1,"Gare de Rumilly",45.863057,5.947954,-1,0,SIN:SA:OCE87746149,Europe/Paris,,STE, +STE:SP:OCECarTER-87746248,1,"Gare de Groisy-Thorens-la-Caill",46.011151,6.175761,-1,0,SIN:SA:OCE87746248,Europe/Paris,,STE, +STE:SP:OCECarTER-87746305,1,"Gare de La Roche-sur-Foron",46.067671,6.303735,-1,0,SIN:SA:OCE87746305,Europe/Paris,,STE, +STE:SP:OCECarTER-87746339,1,"Gare de Bonneville",46.077714,6.416476,-1,0,SIN:SA:OCE87746339,Europe/Paris,,STE, +STE:SP:OCECarTER-87746370,1,"Gare de Cluses (Hte-Savoie)",46.061419,6.582681,-1,0,SIN:SA:OCE87746370,Europe/Paris,,STE, +STE:SP:OCECarTER-87746438,1,"Gare de Sallanches-Comb.Megève",45.935669,6.636471,-1,0,SIN:SA:OCE87746438,Europe/Paris,,STE, +STE:SP:OCECarTER-87746479,1,"Gare de St-Gervais-L-B-Le-Fayet",45.90647,6.700717,-1,0,SIN:SA:OCE87746479,Europe/Paris,,STE, +STE:SP:OCECarTER-87746511,1,"Gare de Reignier",46.125618,6.267536,-1,0,SIN:SA:OCE87746511,Europe/Paris,,STE, +STE:SP:OCECarTER-87746719,1,"Gare de Servoz",45.924482,6.763484,-1,0,SIN:SA:OCE87746719,Europe/Paris,,STE, +STE:SP:OCECarTER-87746743,1,"Gare de Les Houches",45.893964,6.797387,-1,0,SIN:SA:OCE87746743,Europe/Paris,,STE, +STE:SP:OCECarTER-87746750,1,"Gare de Taconnaz",45.89869,6.82423,-1,0,SIN:SA:OCE87746750,Europe/Paris,,STE, +STE:SP:OCECarTER-87746768,1,"Gare de Les Bossons",45.906799,6.839171,-1,0,SIN:SA:OCE87746768,Europe/Paris,,STE, +STE:SP:OCECarTER-87746776,1,"Gare de Les Pèlerins",45.912763,6.847743,-1,0,SIN:SA:OCE87746776,Europe/Paris,,STE, +STE:SP:OCECarTER-87746784,1,"Gare de Chamonix-Mont-Blanc",45.922709,6.874271,-1,0,SIN:SA:OCE87746784,Europe/Paris,,STE, +STE:SP:OCECarTER-87746818,1,"Gare de Les Moussoux",45.916717,6.859921,-1,0,SIN:SA:OCE87746818,Europe/Paris,,STE, +STE:SP:OCECarTER-87747006,1,"Gare de Grenoble",45.191463,5.71453,-1,0,SIN:SA:OCE87747006,Europe/Paris,,STE, +STE:SP:OCECarTER-87747204,1,"Gare de Virieu-sur-Bourbre",45.484772,5.475453,-1,0,SIN:SA:OCE87747204,Europe/Paris,,STE, +STE:SP:OCECarTER-87747212,1,"Gare de Chabons",45.438403,5.4281,-1,0,STE:SA:OCE87747212,Europe/Paris,,STE, +STE:SP:OCECarTER-87747220,1,"Gare de Le Grand-Lemps",45.396678,5.423061,-1,0,STE:SA:OCE87747220,Europe/Paris,,STE, +STE:SP:OCECarTER-87747246,1,"Gare de Rives",45.357595,5.491897,-1,0,STE:SA:OCE87747246,Europe/Paris,,STE, +STE:SP:OCECarTER-87747279,1,"Gare de Réaumont-St-Cassien",45.368795,5.534865,-1,0,SIN:SA:OCE87747279,Europe/Paris,,STE, +STE:SP:OCECarTER-87747287,1,"Gare de Voiron",45.364004,5.594911,-1,0,STE:SA:OCE87747287,Europe/Paris,,STE, +STE:SP:OCECarTER-87747329,1,"Gare de Moirans",45.322146,5.58196,-1,0,SIN:SA:OCE87747329,Europe/Paris,,STE, +STE:SP:OCECarTER-87747402,1,"Gare de Grenoble U.-Gières",45.184903,5.784731,-1,0,STE:SA:OCE87747402,Europe/Paris,,STE, +STE:SP:OCECarTER-87747451,1,"Gare de Brignoud",45.262462,5.901427,-1,0,STE:SA:OCE87747451,Europe/Paris,,STE, +STE:SP:OCECarTER-87747477,1,"Gare de Goncelin",45.34196,5.974107,-1,0,STE:SA:OCE87747477,Europe/Paris,,STE, +STE:SP:OCECarTER-87747493,1,"Gare de Pontcharra-sur-Bréda",45.434038,6.007793,-1,0,SIN:SA:OCE87747493,Europe/Paris,,STE, +STE:SP:OCECarTER-87747535,1,"Gare de Jarrie-Vizille",45.085406,5.742256,-1,0,SIN:SA:OCE87747535,Europe/Paris,,STE, +STE:SP:OCECarTER-87747568,1,"Gare de St-Georges-de-Commiers",45.043723,5.701176,-1,0,SIN:SA:OCE87747568,Europe/Paris,,STE, +STE:SP:OCECarTER-87747576,1,"Gare de Vif",45.047648,5.68541,-1,0,SIN:SA:OCE87747576,Europe/Paris,,STE, +STE:SP:OCECarTER-87747592,1,"Gare de Monestier-de-Clermont",44.912024,5.633945,-1,0,SIN:SA:OCE87747592,Europe/Paris,,STE, +STE:SP:OCECarTER-87747626,1,"Gare de Clelles-Mens",44.827253,5.605012,-1,0,STE:SA:OCE87747626,Europe/Paris,,STE, +STE:SP:OCECarTER-87747691,1,"Gare de Moirans-Galifette",45.323999,5.564966,-1,0,SIN:SA:OCE87747691,Europe/Paris,,STE, +STE:SP:OCECarTER-87751008,1,"Gare de Marseille-St-Charles",43.30273,5.38065,-1,0,STE:SA:OCE87751008,Europe/Paris,,STE, +STE:SP:OCECarTER-87751404,1,"Gare de Aix-en-Provence",43.522868,5.445323,-1,0,STE:SA:OCE87751404,Europe/Paris,,STE, +STE:SP:OCECarTER-87751420,1,"Gare de Gardanne",43.456007,5.463322,-1,0,SIN:SA:OCE87751420,Europe/Paris,,STE, +STE:SP:OCECarTER-87751438,1,"Gare de Simiane",43.434724,5.426011,-1,0,STE:SA:OCE87751438,Europe/Paris,,STE, +STE:SP:OCECarTER-87751800,1,"Gare de Septèmes",43.403107,5.370134,-1,0,SIN:SA:OCE87751800,Europe/Paris,,STE, +STE:SP:OCECarTER-87751842,1,"Gare de Ste-Marthe-en-Provence",43.339269,5.390401,-1,0,SIN:SA:OCE87751842,Europe/Paris,,STE, +STE:SP:OCECarTER-87753004,1,"Gare de Miramas",43.58074,4.999602,-1,0,STE:SA:OCE87753004,Europe/Paris,,STE, +STE:SP:OCECarTER-87753707,1,"Gare de Orgon",43.785912,5.045688,-1,0,SIN:SA:OCE87753707,Europe/Paris,,STE, +STE:SP:OCECarTER-87753715,1,"Gare de Sénas",43.740965,5.073336,-1,0,SIN:SA:OCE87753715,Europe/Paris,,STE, +STE:SP:OCECarTER-87753731,1,"Gare de Lamanon",43.699991,5.091304,-1,0,SIN:SA:OCE87753731,Europe/Paris,,STE, +STE:SP:OCECarTER-87753764,1,"Gare de Salon",43.639064,5.088598,-1,0,STE:SA:OCE87753764,Europe/Paris,,STE, +STE:SP:OCECarTER-87761007,1,"Gare de Valence-Ville",44.92807,4.893295,-1,0,SIN:SA:OCE87761007,Europe/Paris,,STE, +STE:SP:OCECarTER-87761106,1,"Gare de St-Rambert-d'Albon",45.297816,4.810625,-1,0,SIN:SA:OCE87761106,Europe/Paris,,STE, +STE:SP:OCECarTER-87761130,1,"Gare de St-Vallier-sur-Rhône",45.185682,4.814339,-1,0,SIN:SA:OCE87761130,Europe/Paris,,STE, +STE:SP:OCECarTER-87761163,1,"Gare de Tain",45.072181,4.839746,-1,0,SIN:SA:OCE87761163,Europe/Paris,,STE, +STE:SP:OCECarTER-87761239,1,"Gare de L'Isle-d'Abeau",45.607621,5.219552,-1,0,STE:SA:OCE87761239,Europe/Paris,,STE, +STE:SP:OCECarTER-87761270,1,"Annonay-Gare-Route",45.243781,4.672743,-1,0,SIN:SA:OCE87761270,Europe/Paris,,STE, +STE:SP:OCECarTER-87761460,1,"Tournon-Centre",45.063213,4.83434,-1,0,SIN:SA:OCE87761460,Europe/Paris,,STE, +STE:SP:OCECarTER-87761510,1,"Charmes-sur-Rhône-centr",44.862732,4.834795,-1,0,SIN:SA:OCE87761510,Europe/Paris,,STE, +STE:SP:OCECarTER-87761650,1,"Gare de Romans-Bourg-de-Péage",45.04886,5.049494,-1,0,SIN:SA:OCE87761650,Europe/Paris,,STE, +STE:SP:OCECarTER-87761684,1,"Gare de St-Hilaire-St-Nazaire",45.071316,5.243843,-1,0,SIN:SA:OCE87761684,Europe/Paris,,STE, +STE:SP:OCECarTER-87761718,1,"Gare de St-Marcellin",45.150897,5.323582,-1,0,SIN:SA:OCE87761718,Europe/Paris,,STE, +STE:SP:OCECarTER-87761726,1,"Gare de Vinay",45.207932,5.410166,-1,0,SIN:SA:OCE87761726,Europe/Paris,,STE, +STE:SP:OCECarTER-87761742,1,"Gare de Poliénas",45.255896,5.473763,-1,0,SIN:SA:OCE87761742,Europe/Paris,,STE, +STE:SP:OCECarTER-87761759,1,"Gare de Tullins-Fures",45.300932,5.492143,-1,0,STE:SA:OCE87761759,Europe/Paris,,STE, +STE:SP:OCECarTER-87761783,1,"Gare de Crest",44.730187,5.01611,-1,0,SIN:SA:OCE87761783,Europe/Paris,,STE, +STE:SP:OCECarTER-87761817,1,"Gare de Saillans",44.694377,5.194175,-1,0,SIN:SA:OCE87761817,Europe/Paris,,STE, +STE:SP:OCECarTER-87761841,1,"Gare de Die",44.758213,5.363257,-1,0,SIN:SA:OCE87761841,Europe/Paris,,STE, +STE:SP:OCECarTER-87763003,1,"Gare de Gap",44.563695,6.085684,-1,0,SIN:SA:OCE87763003,Europe/Paris,,STE, +STE:SP:OCECarTER-87763029,1,"Gare de Valence-TGV",44.99137,4.978941,-1,0,SIN:SA:OCE87763029,Europe/Paris,,STE, +STE:SP:OCECarTER-87763250,1,"Gare de Aspres-sur-Buech",44.519393,5.754555,-1,0,SIN:SA:OCE87763250,Europe/Paris,,STE, +STE:SP:OCECarTER-87763300,1,"Gare de Veynes-Dévoluy",44.531997,5.815829,-1,0,SIN:SA:OCE87763300,Europe/Paris,,STE, +STE:SP:OCECarTER-87763425,1,"Gare de Chorges",44.545705,6.272059,-1,0,SIN:SA:OCE87763425,Europe/Paris,,STE, +STE:SP:OCECarTER-87763466,1,"Gare de Embrun",44.566954,6.496732,-1,0,SIN:SA:OCE87763466,Europe/Paris,,STE, +STE:SP:OCECarTER-87763508,1,"Gare de Montdauphin-Guillestre",44.674596,6.615614,-1,0,SIN:SA:OCE87763508,Europe/Paris,,STE, +STE:SP:OCECarTER-87763557,1,"Gare de L'Argentière-les-Ecrins",44.791,6.556405,-1,0,SIN:SA:OCE87763557,Europe/Paris,,STE, +STE:SP:OCECarTER-87763607,1,"Gare de Briançon",44.889807,6.632947,-1,0,SIN:SA:OCE87763607,Europe/Paris,,STE, +STE:SP:OCECarTER-87764407,1,"Le-Pouzin-Centre",44.75591,4.748131,-1,0,SIN:SA:OCE87764407,Europe/Paris,,STE, +STE:SP:OCECarTER-87764712,1,"St-Jean-Centenier-Ctr",44.589412,4.536456,-1,0,SIN:SA:OCE87764712,Europe/Paris,,STE, +STE:SP:OCECarTER-87764720,1,"Villeneuve-de-Berg-Cent",44.554922,4.498138,-1,0,SIN:SA:OCE87764720,Europe/Paris,,STE, +STE:SP:OCECarTER-87764753,1,"Aubenas-Boutique-SNCF",44.610787,4.390891,-1,0,SIN:SA:OCE87764753,Europe/Paris,,STE, +STE:SP:OCECarTER-87765008,1,"Gare de Avignon-Centre",43.941877,4.805262,-1,0,SIN:SA:OCE87765008,Europe/Paris,,STE, +STE:SP:OCECarTER-87765412,1,"Gare de Montfavet",43.932632,4.873974,-1,0,SIN:SA:OCE87765412,Europe/Paris,,STE, +STE:SP:OCECarTER-87765420,1,"Gare de Morières-lès-Avignon",43.941462,4.908204,-1,0,SIN:SA:OCE87765420,Europe/Paris,,STE, +STE:SP:OCECarTER-87765438,1,"Gare de St-Saturnin-d'Avignon",43.953177,4.935293,-1,0,SIN:SA:OCE87765438,Europe/Paris,,STE, +STE:SP:OCECarTER-87765446,1,"Gare de Gadagne",43.929678,4.956832,-1,0,SIN:SA:OCE87765446,Europe/Paris,,STE, +STE:SP:OCECarTER-87765453,1,"Gare de Le Thor",43.926526,4.996277,-1,0,SIN:SA:OCE87765453,Europe/Paris,,STE, +STE:SP:OCECarTER-87765479,1,"Gare de L'Isle-s-Sorgue - Font",43.917342,5.047601,-1,0,SIN:SA:OCE87765479,Europe/Paris,,STE, +STE:SP:OCECarTER-87765503,1,"Gare de Cavaillon",43.834516,5.043653,-1,0,SIN:SA:OCE87765503,Europe/Paris,,STE, +STE:SP:OCECarTER-87773002,1,"Gare de Montpellier-Saint-Roch",43.605834,3.88236,-1,0,SIN:SA:OCE87773002,Europe/Paris,,STE, +STE:SP:OCECarTER-87773200,1,"Gare de Sète",43.412812,3.696396,-1,0,SIN:SA:OCE87773200,Europe/Paris,,STE, +STE:SP:OCECarTER-87773408,1,"Gare de Lunel",43.679515,4.130807,-1,0,SIN:SA:OCE87773408,Europe/Paris,,STE, +STE:SP:OCECarTER-87773457,1,"Gare de Baillargues",43.653117,4.006689,-1,0,SIN:SA:OCE87773457,Europe/Paris,,STE, +STE:SP:OCECarTER-87773556,1,"Gare de Frontignan",43.444586,3.759015,-1,0,SIN:SA:OCE87773556,Europe/Paris,,STE, +STE:SP:OCECarTER-87775007,1,"Gare de Nîmes",43.832293,4.365835,-1,0,SIN:SA:OCE87775007,Europe/Paris,,STE, +STE:SP:OCECarTER-87775114,1,"Gare de Vergèze-Codognan",43.739817,4.218844,-1,0,SIN:SA:OCE87775114,Europe/Paris,,STE, +STE:SP:OCECarTER-87775148,1,"Gare de Chasserades",44.553968,3.839677,-1,0,SIN:SA:OCE87775148,Europe/Paris,,STE, +STE:SP:OCECarTER-87775171,1,"Gare de La Bastide-St-Laurent",44.592579,3.903854,-1,0,SIN:SA:OCE87775171,Europe/Paris,,STE, +STE:SP:OCECarTER-87775288,1,"Gare de Alès",44.128126,4.084779,-1,0,SIN:SA:OCE87775288,Europe/Paris,,STE, +STE:SP:OCECarTER-87775791,1,"Gare de Générac",43.732975,4.344145,-1,0,SIN:SA:OCE87775791,Europe/Paris,,STE, +STE:SP:OCECarTER-87775817,1,"Gare de Vauvert",43.695314,4.270252,-1,0,SIN:SA:OCE87775817,Europe/Paris,,STE, +STE:SP:OCECarTER-87775825,1,"Gare de Le Cailar",43.683192,4.234767,-1,0,SIN:SA:OCE87775825,Europe/Paris,,STE, +STE:SP:OCECarTER-87775841,1,"Gare de St-Laurent-d'Aigouze",43.638913,4.192702,-1,0,SIN:SA:OCE87775841,Europe/Paris,,STE, +STE:SP:OCECarTER-87775858,1,"Gare de Aigues-Mortes",43.571117,4.191107,-1,0,SIN:SA:OCE87775858,Europe/Paris,,STE, +STE:SP:OCECarTER-87775866,1,"Gare de Le Grau-du-Roi",43.536582,4.140867,-1,0,SIN:SA:OCE87775866,Europe/Paris,,STE, +STE:SP:OCECarTER-87781005,1,"Gare de Béziers",43.336225,3.219218,-1,0,SIN:SA:OCE87781005,Europe/Paris,,STE, +STE:SP:OCECarTER-87781104,1,"Gare de Narbonne",43.191033,3.005956,-1,0,SIN:SA:OCE87781104,Europe/Paris,,STE, +STE:SP:OCECarTER-87781278,1,"Gare de Agde",43.317574,3.46602,-1,0,SIN:SA:OCE87781278,Europe/Paris,,STE, +STE:SP:OCECarTER-87781609,1,"Gare de Bédarieux",43.607632,3.149005,-1,0,SIN:SA:OCE87781609,Europe/Paris,,STE, +STE:SP:OCECarTER-87781666,1,"Gare de Magalas",43.467755,3.2295,-1,0,SIN:SA:OCE87781666,Europe/Paris,,STE, +STE:SP:OCECarTER-87783001,1,"Gare de Millau",44.10187,3.074898,-1,0,SIN:SA:OCE87783001,Europe/Paris,,STE, +STE:SP:OCECarTER-87783159,1,"Talizat",45.114473,3.044493,-1,0,SIN:SA:OCE87783159,Europe/Paris,,STE, +STE:SP:OCECarTER-87783167,1,"Andelat",45.058516,3.057667,-1,0,SIN:SA:OCE87783167,Europe/Paris,,STE, +STE:SP:OCECarTER-87783175,1,"Gare de St-Flour-Chaudes-Aigues",45.034838,3.106166,-1,0,SIN:SA:OCE87783175,Europe/Paris,,STE, +STE:SP:OCECarTER-87783241,1,"Gare de St-Chély-d'Apcher",44.801701,3.270741,-1,0,SIN:SA:OCE87783241,Europe/Paris,,STE, +STE:SP:OCECarTER-87783266,1,"Gare de Aumont-Aubrac",44.71814,3.283415,-1,0,SIN:SA:OCE87783266,Europe/Paris,,STE, +STE:SP:OCECarTER-87783282,1,"Gare de Marvejols",44.544616,3.281048,-1,0,SIN:SA:OCE87783282,Europe/Paris,,STE, +STE:SP:OCECarTER-87783308,1,"Gare de Le Monastier",44.509002,3.252196,-1,0,SIN:SA:OCE87783308,Europe/Paris,,STE, +STE:SP:OCECarTER-87783324,1,"Gare de Banassac-la-Canourgue",44.447642,3.19621,-1,0,SIN:SA:OCE87783324,Europe/Paris,,STE, +STE:SP:OCECarTER-87783365,1,"Gare de Séverac-D'Aveyron",44.325205,3.057387,-1,0,SIN:SA:OCE87783365,Europe/Paris,,STE, +STE:SP:OCECarTER-87783480,1,"St-Affrique",43.956689,2.881909,-1,0,SIN:SA:OCE87783480,Europe/Paris,,STE, +STE:SP:OCECarTER-87783530,1,"Gare de Chanac",44.473375,3.344954,-1,0,SIN:SA:OCE87783530,Europe/Paris,,STE, +STE:SP:OCECarTER-87783563,1,"Gare de Barjac",44.499357,3.410563,-1,0,SIN:SA:OCE87783563,Europe/Paris,,STE, +STE:SP:OCECarTER-87783605,1,"Gare de Mende",44.522332,3.501908,-1,0,SIN:SA:OCE87783605,Europe/Paris,,STE, +STE:SP:OCECarTER-87783647,1,"Gare de Bagnols-Chadenet",44.528315,3.628142,-1,0,SIN:SA:OCE87783647,Europe/Paris,,STE, +STE:SP:OCECarTER-87783654,1,"Gare de Allenc",44.541673,3.664216,-1,0,SIN:SA:OCE87783654,Europe/Paris,,STE, +STE:SP:OCECarTER-87783670,1,"Gare de Belvezet",44.561861,3.751881,-1,0,SIN:SA:OCE87783670,Europe/Paris,,STE, +STE:SP:OCETrainTER-71793150,1,"Gare de Port-Bou",42.424471,3.157848,-1,0,SIN:SA:OCE71793150,Europe/Paris,,STE, +STE:SP:OCETrainTER-83045013,1,"Gare de Ventimiglia-Stazione",43.79217,7.609683,-1,0,STE:SA:OCE83045013,Europe/Paris,,STE, +STE:SP:OCETrainTER-85010033,1,"Gare de Satigny",46.214251,6.037536,-1,0,STE:SA:OCE85010033,Europe/Paris,,STE, +STE:SP:OCETrainTER-85010066,1,"Gare de Vernier-Meyrin",46.220734,6.093892,-1,0,STE:SA:OCE85010066,Europe/Paris,,STE, +STE:SP:OCETrainTER-85010082,1,"Gare de Genève",46.210557,6.143155,-1,0,SIN:SA:OCE85010082,Europe/Paris,,STE, +STE:SP:OCETrainTER-87111864,1,"Gare de Balsieges-Bourg",44.482274,3.456858,-1,0,STE:SA:OCE87111864,Europe/Paris,,STE, +STE:SP:OCETrainTER-87131961,1,"Gare de Brion-Montréal-La Cluse",46.175782,5.55851,-1,0,SIN:SA:OCE87131961,Europe/Paris,,STE, +STE:SP:OCETrainTER-87184002,1,"Gare de Belfort-Ville",47.632447,6.853924,-1,0,STE:SA:OCE87184002,Europe/Paris,,STE, +STE:SP:OCETrainTER-87184507,1,"Gare de Héricourt",47.573218,6.769411,-1,0,STE:SA:OCE87184507,Europe/Paris,,STE, +STE:SP:OCETrainTER-87184523,1,"Gare de Montbéliard-Ville",47.510544,6.801315,-1,0,STE:SA:OCE87184523,Europe/Paris,,STE, +STE:SP:OCETrainTER-87184572,1,"Gare de L'Isle-sur-le-Doubs",47.44748,6.581431,-1,0,STE:SA:OCE87184572,Europe/Paris,,STE, +STE:SP:OCETrainTER-87184622,1,"Gare de Clerval",47.396604,6.492318,-1,0,STE:SA:OCE87184622,Europe/Paris,,STE, +STE:SP:OCETrainTER-87282624,1,"Gare de Lyon-Jean-Macé",45.745198,4.841515,-1,0,STE:SA:OCE87282624,Europe/Paris,,STE, +STE:SP:OCETrainTER-87318964,1,"Gare de Avignon-TGV",43.921964,4.786154,-1,0,SIN:SA:OCE87318964,Europe/Paris,,STE, +STE:SP:OCETrainTER-87323675,1,"Gare de Montluçon-Rimard",46.335626,2.611261,-1,0,STE:SA:OCE87323675,Europe/Paris,,STE, +STE:SP:OCETrainTER-87396895,1,"Gare de Clermont - La Rotonde",45.768177,3.09126,-1,0,STE:SA:OCE87396895,Europe/Paris,,STE, +STE:SP:OCETrainTER-87401323,1,"Gare de Mouans Sartoux",43.620462,6.974152,-1,0,STE:SA:OCE87401323,Europe/Paris,,STE, +STE:SP:OCETrainTER-87417501,1,"Gare de Lancey",45.234472,5.880933,-1,0,STE:SA:OCE87417501,Europe/Paris,,STE, +STE:SP:OCETrainTER-87420596,1,"Gare de Cenon",44.856768,-0.533602,-1,0,STE:SA:OCE87420596,Europe/Paris,,STE, +STE:SP:OCETrainTER-87439554,1,"Gare de Vitrolles-Aér-Marseille",43.442488,5.237122,-1,0,OET:SA:CTP30897,Europe/Paris,,STE, +STE:SP:OCETrainTER-87462085,1,"Gare de Chamonix-Aiguille-Midi",45.919901,6.866782,-1,0,STE:SA:OCE87462085,Europe/Paris,,STE, +STE:SP:OCETrainTER-87559070,1,"Gare de Nevers-Le-Banlay",47.006817,3.163619,-1,0,STE:SA:OCE87559070,Europe/Paris,,STE, +STE:SP:OCETrainTER-87562421,1,"Gare de Aulnat-Aéroport",45.792149,3.161272,-1,0,SIN:SA:OCE87562421,Europe/Paris,,STE, +STE:SP:OCETrainTER-87565143,1,"Gare de Halte-De-Fontanil",43.764175,7.338556,-1,0,STE:SA:OCE87565143,Europe/Paris,,STE, +STE:SP:OCETrainTER-87571000,1,"Gare de Tours",47.389814,0.693505,-1,0,SIN:SA:OCE87571000,Europe/Paris,,STE, +STE:SP:OCETrainTER-87571240,1,"Gare de St-Pierre-des-Corps",47.385732,0.725054,-1,0,SIN:SA:OCE87571240,Europe/Paris,,STE, +STE:SP:OCETrainTER-87574475,1,"Gare de Bléré-la-Croix",47.337723,0.987737,-1,0,STE:SA:OCE87574475,Europe/Paris,,STE, +STE:SP:OCETrainTER-87574491,1,"Gare de Chenonceaux",47.330651,1.065394,-1,0,STE:SA:OCE87574491,Europe/Paris,,STE, +STE:SP:OCETrainTER-87574855,1,"Gare de Montrichard",47.343576,1.17182,-1,0,STE:SA:OCE87574855,Europe/Paris,,STE, +STE:SP:OCETrainTER-87574897,1,"Gare de St-Aignan-Noyers",47.286728,1.383662,-1,0,STE:SA:OCE87574897,Europe/Paris,,STE, +STE:SP:OCETrainTER-87576009,1,"Gare de Vierzon",47.226516,2.059824,-1,0,SIN:SA:OCE87576009,Europe/Paris,,STE, +STE:SP:OCETrainTER-87576207,1,"Gare de Bourges",47.094094,2.394226,-1,0,SIN:SA:OCE87576207,Europe/Paris,,STE, +STE:SP:OCETrainTER-87576272,1,"Gare de St-Florent-sur-Cher",46.992115,2.252149,-1,0,SIN:SA:OCE87576272,Europe/Paris,,STE, +STE:SP:OCETrainTER-87576280,1,"Gare de Lunery",46.93513,2.275066,-1,0,STE:SA:OCE87576280,Europe/Paris,,STE, +STE:SP:OCETrainTER-87576298,1,"Gare de Châteauneuf-sur-Cher",46.856686,2.310212,-1,0,SIN:SA:OCE87576298,Europe/Paris,,STE, +STE:SP:OCETrainTER-87576306,1,"Gare de Bigny",46.801897,2.368226,-1,0,STE:SA:OCE87576306,Europe/Paris,,STE, +STE:SP:OCETrainTER-87576322,1,"Gare de St-Amand-Montrond-Orval",46.726521,2.486062,-1,0,SIN:SA:OCE87576322,Europe/Paris,,STE, +STE:SP:OCETrainTER-87576348,1,"Gare de Urçay",46.629334,2.58668,-1,0,STE:SA:OCE87576348,Europe/Paris,,STE, +STE:SP:OCETrainTER-87576868,1,"Gare de Selles-sur-Cher",47.281595,1.546144,-1,0,STE:SA:OCE87576868,Europe/Paris,,STE, +STE:SP:OCETrainTER-87576876,1,"Gare de Gièvres",47.27873,1.667812,-1,0,STE:SA:OCE87576876,Europe/Paris,,STE, +STE:SP:OCETrainTER-87576884,1,"Gare de Villefranche-sur-Cher",47.29474,1.768037,-1,0,STE:SA:OCE87576884,Europe/Paris,,STE, +STE:SP:OCETrainTER-87580340,1,"Gare de Arenc-Euroméditerranée",43.313511,5.367922,-1,0,STE:SA:OCE87580340,Europe/Paris,,STE, +STE:SP:OCETrainTER-87581009,1,"Gare de Bordeaux-St-Jean",44.82654,-0.556194,-1,0,SIN:SA:OCE87581009,Europe/Paris,,STE, +STE:SP:OCETrainTER-87584052,1,"Gare de Libourne",44.915884,-0.236368,-1,0,STE:SA:OCE87584052,Europe/Paris,,STE, +STE:SP:OCETrainTER-87584516,1,"Gare de Coutras",45.036654,-0.131429,-1,0,STE:SA:OCE87584516,Europe/Paris,,STE, +STE:SP:OCETrainTER-87590299,1,"Gare de Nice-Pont-Michel",43.722792,7.291653,-1,0,STE:SA:OCE87590299,Europe/Paris,,STE, +STE:SP:OCETrainTER-87592006,1,"Gare de Limoges-Bénédictins",45.836208,1.267452,-1,0,SIN:SA:OCE87592006,Europe/Paris,,STE, +STE:SP:OCETrainTER-87592311,1,"Gare de Ambazac",45.952901,1.406502,-1,0,STE:SA:OCE87592311,Europe/Paris,,STE, +STE:SP:OCETrainTER-87592345,1,"Gare de St-Sulpice-Laurière",46.046867,1.476283,-1,0,STE:SA:OCE87592345,Europe/Paris,,STE, +STE:SP:OCETrainTER-87592725,1,"Gare de Nexon",45.691534,1.178428,-1,0,STE:SA:OCE87592725,Europe/Paris,,STE, +STE:SP:OCETrainTER-87594002,1,"Gare de Brive-la-Gaillarde",45.152562,1.528623,-1,0,SIN:SA:OCE87594002,Europe/Paris,,STE, +STE:SP:OCETrainTER-87594556,1,"Gare de Turenne",45.039829,1.5998,-1,0,STE:SA:OCE87594556,Europe/Paris,,STE, +STE:SP:OCETrainTER-87594564,1,"Gare de Les Quatre-Routes",44.99702,1.644498,-1,0,SIN:SA:OCE87594564,Europe/Paris,,STE, +STE:SP:OCETrainTER-87594572,1,"Gare de St-Denis-près-Martel",44.945792,1.666287,-1,0,SIN:SA:OCE87594572,Europe/Paris,,STE, +STE:SP:OCETrainTER-87594739,1,"Gare de Vayrac",44.950138,1.706288,-1,0,STE:SA:OCE87594739,Europe/Paris,,STE, +STE:SP:OCETrainTER-87594747,1,"Gare de Bétaille",44.942533,1.734529,-1,0,STE:SA:OCE87594747,Europe/Paris,,STE, +STE:SP:OCETrainTER-87594754,1,"Gare de Puybrun",44.921716,1.784029,-1,0,SIN:SA:OCE87594754,Europe/Paris,,STE, +STE:SP:OCETrainTER-87594762,1,"Gare de Bretenoux-Biars",44.927568,1.844204,-1,0,SIN:SA:OCE87594762,Europe/Paris,,STE, +STE:SP:OCETrainTER-87594796,1,"Gare de Laval-de-Cère",44.951291,1.931412,-1,0,STE:SA:OCE87594796,Europe/Paris,,STE, +STE:SP:OCETrainTER-87595009,1,"Gare de Périgueux",45.187164,0.707181,-1,0,STE:SA:OCE87595009,Europe/Paris,,STE, +STE:SP:OCETrainTER-87595124,1,"Gare de Thiviers",45.418954,0.921349,-1,0,STE:SA:OCE87595124,Europe/Paris,,STE, +STE:SP:OCETrainTER-87595298,1,"Gare de Mussidan",45.034374,0.354066,-1,0,STE:SA:OCE87595298,Europe/Paris,,STE, +STE:SP:OCETrainTER-87597609,1,"Gare de Guéret",46.174146,1.87917,-1,0,SIN:SA:OCE87597609,Europe/Paris,,STE, +STE:SP:OCETrainTER-87597625,1,"Gare de Marsac (Creuse)",46.094192,1.585606,-1,0,STE:SA:OCE87597625,Europe/Paris,,STE, +STE:SP:OCETrainTER-87597633,1,"Gare de Vieilleville",46.091135,1.673544,-1,0,STE:SA:OCE87597633,Europe/Paris,,STE, +STE:SP:OCETrainTER-87597674,1,"Gare de Montaigut (Creuse)",46.136792,1.733935,-1,0,STE:SA:OCE87597674,Europe/Paris,,STE, +STE:SP:OCETrainTER-87597708,1,"Gare de Busseau-sur-Creuse",46.123093,2.023102,-1,0,STE:SA:OCE87597708,Europe/Paris,,STE, +STE:SP:OCETrainTER-87597724,1,"Gare de Parsac-Gouzon",46.198312,2.174196,-1,0,SIN:SA:OCE87597724,Europe/Paris,,STE, +STE:SP:OCETrainTER-87597740,1,"Gare de Lavaufranche",46.321408,2.270338,-1,0,STE:SA:OCE87597740,Europe/Paris,,STE, +STE:SP:OCETrainTER-87598755,1,"Gare de Limoux-Flassian",43.068508,2.218515,-1,0,SIN:SA:OCE87598755,Europe/Paris,,STE, +STE:SP:OCETrainTER-87611004,1,"Gare de Toulouse-Matabiau",43.611464,1.453558,-1,0,SIN:SA:OCE87611004,Europe/Paris,,STE, +STE:SP:OCETrainTER-87611301,1,"Gare de St-Agne",43.579262,1.449555,-1,0,STE:SA:OCE87611301,Europe/Paris,,STE, +STE:SP:OCETrainTER-87611327,1,"Gare de Varilhes",43.04149,1.628576,-1,0,STE:SA:OCE87611327,Europe/Paris,,STE, +STE:SP:OCETrainTER-87611343,1,"Gare de Pamiers",43.116175,1.618998,-1,0,SIN:SA:OCE87611343,Europe/Paris,,STE, +STE:SP:OCETrainTER-87611350,1,"Gare de Vernet-d'Ariège",43.189488,1.611697,-1,0,STE:SA:OCE87611350,Europe/Paris,,STE, +STE:SP:OCETrainTER-87611368,1,"Gare de Saverdun",43.239421,1.570422,-1,0,SIN:SA:OCE87611368,Europe/Paris,,STE, +STE:SP:OCETrainTER-87611376,1,"Gare de Cintegabelle",43.305347,1.521085,-1,0,STE:SA:OCE87611376,Europe/Paris,,STE, +STE:SP:OCETrainTER-87611384,1,"Gare de Auterive",43.348835,1.468624,-1,0,SIN:SA:OCE87611384,Europe/Paris,,STE, +STE:SP:OCETrainTER-87611392,1,"Gare de Venerque-le-Vernet",43.433328,1.425869,-1,0,STE:SA:OCE87611392,Europe/Paris,,STE, +STE:SP:OCETrainTER-87611400,1,"Gare de Portet-St-Simon",43.530781,1.405897,-1,0,STE:SA:OCE87611400,Europe/Paris,,STE, +STE:SP:OCETrainTER-87611483,1,"Gare de Latour-de-Carol-Enveitg",42.458157,1.90584,-1,0,SIN:SA:OCE87611483,Europe/Paris,,STE, +STE:SP:OCETrainTER-87611509,1,"Gare de Porte-Puymorens",42.538759,1.82485,-1,0,SIN:SA:OCE87611509,Europe/Paris,,STE, +STE:SP:OCETrainTER-87611517,1,"Gare de Andorre-L'Hospitalet",42.588385,1.798515,-1,0,SIN:SA:OCE87611517,Europe/Paris,,STE, +STE:SP:OCETrainTER-87611525,1,"Gare de Mérens-les-Vals",42.658677,1.83642,-1,0,SIN:SA:OCE87611525,Europe/Paris,,STE, +STE:SP:OCETrainTER-87611533,1,"Gare de Ax-les-Thermes",42.724805,1.833315,-1,0,SIN:SA:OCE87611533,Europe/Paris,,STE, +STE:SP:OCETrainTER-87611558,1,"Gare de Luzenac-Garanou",42.764444,1.753154,-1,0,SIN:SA:OCE87611558,Europe/Paris,,STE, +STE:SP:OCETrainTER-87611574,1,"Gare de Les Cabannes",42.786537,1.68618,-1,0,SIN:SA:OCE87611574,Europe/Paris,,STE, +STE:SP:OCETrainTER-87611590,1,"Gare de Tarascon-sur-Ariège",42.849453,1.600031,-1,0,SIN:SA:OCE87611590,Europe/Paris,,STE, +STE:SP:OCETrainTER-87611616,1,"Gare de Foix",42.969299,1.607394,-1,0,SIN:SA:OCE87611616,Europe/Paris,,STE, +STE:SP:OCETrainTER-87611707,1,"Gare de Escalquens",43.517042,1.542432,-1,0,STE:SA:OCE87611707,Europe/Paris,,STE, +STE:SP:OCETrainTER-87611723,1,"Gare de Baziège",43.453554,1.620687,-1,0,STE:SA:OCE87611723,Europe/Paris,,STE, +STE:SP:OCETrainTER-87612002,1,"Gare de Labège-Innopole",43.547461,1.512958,-1,0,STE:SA:OCE87612002,Europe/Paris,,STE, +STE:SP:OCETrainTER-87612010,1,"Gare de Montaudran",43.573694,1.480239,-1,0,STE:SA:OCE87612010,Europe/Paris,,STE, +STE:SP:OCETrainTER-87612028,1,"Gare de Labège-Village",43.53051,1.533338,-1,0,STE:SA:OCE87612028,Europe/Paris,,STE, +STE:SP:OCETrainTER-87613091,1,"Gare de Figeac",44.603514,2.037077,-1,0,SIN:SA:OCE87613091,Europe/Paris,,STE, +STE:SP:OCETrainTER-87613109,1,"Gare de Capdenac",44.577656,2.078902,-1,0,STE:SA:OCE87613109,Europe/Paris,,STE, +STE:SP:OCETrainTER-87613463,1,"Gare de Najac",44.222483,1.976568,-1,0,STE:SA:OCE87613463,Europe/Paris,,STE, +STE:SP:OCETrainTER-87613471,1,"Gare de Laguépie",44.145489,1.96863,-1,0,STE:SA:OCE87613471,Europe/Paris,,STE, +STE:SP:OCETrainTER-87613489,1,"Gare de Lexos",44.142223,1.884432,-1,0,STE:SA:OCE87613489,Europe/Paris,,STE, +STE:SP:OCETrainTER-87613604,1,"Gare de Bagnac",44.66528,2.160163,-1,0,SIN:SA:OCE87613604,Europe/Paris,,STE, +STE:SP:OCETrainTER-87613802,1,"Gare de Cordes-Vindrac",44.066994,1.899996,-1,0,STE:SA:OCE87613802,Europe/Paris,,STE, +STE:SP:OCETrainTER-87613877,1,"Gare de Salles-Courbatiers",44.475548,2.079019,-1,0,STE:SA:OCE87613877,Europe/Paris,,STE, +STE:SP:OCETrainTER-87613893,1,"Gare de Villefranche-Rouergue",44.347681,2.036583,-1,0,STE:SA:OCE87613893,Europe/Paris,,STE, +STE:SP:OCETrainTER-87615013,1,"Gare de Villefranche-Lauragais",43.398453,1.7145,-1,0,STE:SA:OCE87615013,Europe/Paris,,STE, +STE:SP:OCETrainTER-87615039,1,"Gare de Castelnaudary",43.312646,1.950989,-1,0,SIN:SA:OCE87615039,Europe/Paris,,STE, +STE:SP:OCETrainTER-87615054,1,"Gare de Bram",43.243705,2.119556,-1,0,STE:SA:OCE87615054,Europe/Paris,,STE, +STE:SP:OCETrainTER-87615112,1,"Gare de Lézignan-Corbières",43.199971,2.769857,-1,0,SIN:SA:OCE87615112,Europe/Paris,,STE, +STE:SP:OCETrainTER-87615120,1,"Gare de Couffoulens-Leuc",43.155171,2.316929,-1,0,SIN:SA:OCE87615120,Europe/Paris,,STE, +STE:SP:OCETrainTER-87615138,1,"Gare de Verzeille",43.130419,2.321219,-1,0,SIN:SA:OCE87615138,Europe/Paris,,STE, +STE:SP:OCETrainTER-87615146,1,"Gare de Pomas",43.112171,2.288384,-1,0,SIN:SA:OCE87615146,Europe/Paris,,STE, +STE:SP:OCETrainTER-87615161,1,"Gare de Limoux",43.056475,2.222999,-1,0,SIN:SA:OCE87615161,Europe/Paris,,STE, +STE:SP:OCETrainTER-87615187,1,"Gare de Alet-les-Bains",42.997211,2.251852,-1,0,SIN:SA:OCE87615187,Europe/Paris,,STE, +STE:SP:OCETrainTER-87615203,1,"Gare de Couiza-Montazels",42.9426,2.248326,-1,0,SIN:SA:OCE87615203,Europe/Paris,,STE, +STE:SP:OCETrainTER-87615211,1,"Gare de Esperaza",42.935816,2.21803,-1,0,SIN:SA:OCE87615211,Europe/Paris,,STE, +STE:SP:OCETrainTER-87615229,1,"Gare de Campagne-sur-Aude",42.916245,2.204272,-1,0,SIN:SA:OCE87615229,Europe/Paris,,STE, +STE:SP:OCETrainTER-87615245,1,"Gare de Tessonnières",43.928396,1.93741,-1,0,STE:SA:OCE87615245,Europe/Paris,,STE, +STE:SP:OCETrainTER-87615252,1,"Gare de Gaillac",43.905963,1.894819,-1,0,STE:SA:OCE87615252,Europe/Paris,,STE, +STE:SP:OCETrainTER-87615260,1,"Gare de Quillan",42.874293,2.181507,-1,0,SIN:SA:OCE87615260,Europe/Paris,,STE, +STE:SP:OCETrainTER-87615286,1,"Gare de Carcassonne",43.217715,2.351883,-1,0,SIN:SA:OCE87615286,Europe/Paris,,STE, +STE:SP:OCETrainTER-87615310,1,"Gare de Lisle-sur-Tarn",43.856228,1.807745,-1,0,STE:SA:OCE87615310,Europe/Paris,,STE, +STE:SP:OCETrainTER-87615344,1,"Gare de St-Sulpice (Tarn)",43.775412,1.681037,-1,0,STE:SA:OCE87615344,Europe/Paris,,STE, +STE:SP:OCETrainTER-87616011,1,"Gare de Avignonet",43.363885,1.787767,-1,0,STE:SA:OCE87616011,Europe/Paris,,STE, +STE:SP:OCETrainTER-87618116,1,"Gare de Pins Justaret",43.480772,1.399589,-1,0,STE:SA:OCE87618116,Europe/Paris,,STE, +STE:SP:OCETrainTER-87618207,1,"Gare de Montlaur",43.474894,1.577942,-1,0,STE:SA:OCE87618207,Europe/Paris,,STE, +STE:SP:OCETrainTER-87618215,1,"Gare de Villenouvelle",43.433287,1.660884,-1,0,STE:SA:OCE87618215,Europe/Paris,,STE, +STE:SP:OCETrainTER-87635581,1,"Gare de La-Barasse",43.285295,5.484613,-1,0,STE:SA:OCE87635581,Europe/Paris,,STE, +STE:SP:OCETrainTER-87641001,1,"Gare de Montluçon-Ville",46.337875,2.596412,-1,0,SIN:SA:OCE87641001,Europe/Paris,,STE, +STE:SP:OCETrainTER-87641043,1,"Gare de Lapeyrouse(Puy-de-Dôme)",46.226691,2.893278,-1,0,SIN:SA:OCE87641043,Europe/Paris,,STE, +STE:SP:OCETrainTER-87641050,1,"Gare de Louroux-de-Bouble",46.224072,2.985003,-1,0,STE:SA:OCE87641050,Europe/Paris,,STE, +STE:SP:OCETrainTER-87641068,1,"Gare de Bellenaves",46.199255,3.066611,-1,0,STE:SA:OCE87641068,Europe/Paris,,STE, +STE:SP:OCETrainTER-87641076,1,"Gare de St-Bonnet-de-Rochefort",46.148279,3.139343,-1,0,STE:SA:OCE87641076,Europe/Paris,,STE, +STE:SP:OCETrainTER-87641191,1,"Gare de La Ville-Gozet",46.350058,2.591728,-1,0,STE:SA:OCE87641191,Europe/Paris,,STE, +STE:SP:OCETrainTER-87641217,1,"Gare de Huriel",46.371419,2.476122,-1,0,STE:SA:OCE87641217,Europe/Paris,,STE, +STE:SP:OCETrainTER-87641357,1,"Gare de Vallon-en-Sully",46.536485,2.610803,-1,0,SIN:SA:OCE87641357,Europe/Paris,,STE, +STE:SP:OCETrainTER-87641365,1,"Gare de Magnette",46.46415,2.603004,-1,0,SIN:SA:OCE87641365,Europe/Paris,,STE, +STE:SP:OCETrainTER-87641373,1,"Gare de Les Trillers",46.414413,2.599717,-1,0,SIN:SA:OCE87641373,Europe/Paris,,STE, +STE:SP:OCETrainTER-87641415,1,"Gare de Commentry",46.295196,2.740011,-1,0,SIN:SA:OCE87641415,Europe/Paris,,STE, +STE:SP:OCETrainTER-87641423,1,"Gare de Volvic",45.864581,3.003041,-1,0,SIN:SA:OCE87641423,Europe/Paris,,STE, +STE:SP:OCETrainTER-87641449,1,"Gare de Durtol-Nohanent",45.794745,3.048614,-1,0,STE:SA:OCE87641449,Europe/Paris,,STE, +STE:SP:OCETrainTER-87645002,1,"Gare de Aurillac",44.920986,2.435547,-1,0,SIN:SA:OCE87645002,Europe/Paris,,STE, +STE:SP:OCETrainTER-87645101,1,"Gare de Ytrac",44.91062,2.364315,-1,0,STE:SA:OCE87645101,Europe/Paris,,STE, +STE:SP:OCETrainTER-87645135,1,"Gare de Laroquebrou",44.964201,2.192841,-1,0,SIN:SA:OCE87645135,Europe/Paris,,STE, +STE:SP:OCETrainTER-87645150,1,"Gare de La Capelle-Viescamp",44.920494,2.265382,-1,0,STE:SA:OCE87645150,Europe/Paris,,STE, +STE:SP:OCETrainTER-87645168,1,"Gare de Maurs",44.706133,2.199697,-1,0,SIN:SA:OCE87645168,Europe/Paris,,STE, +STE:SP:OCETrainTER-87645176,1,"Gare de Pers",44.886979,2.240259,-1,0,STE:SA:OCE87645176,Europe/Paris,,STE, +STE:SP:OCETrainTER-87645184,1,"Gare de Boisset (Cantal)",44.785817,2.249439,-1,0,STE:SA:OCE87645184,Europe/Paris,,STE, +STE:SP:OCETrainTER-87645192,1,"Gare de Le Rouget",44.856555,2.235418,-1,0,SIN:SA:OCE87645192,Europe/Paris,,STE, +STE:SP:OCETrainTER-87645440,1,"Gare de Vic-sur-Cère",44.975948,2.631437,-1,0,SIN:SA:OCE87645440,Europe/Paris,,STE, +STE:SP:OCETrainTER-87645473,1,"Gare de Le Lioran",45.09075,2.753267,-1,0,SIN:SA:OCE87645473,Europe/Paris,,STE, +STE:SP:OCETrainTER-87645481,1,"Gare de Murat (Cantal)",45.109081,2.869588,-1,0,SIN:SA:OCE87645481,Europe/Paris,,STE, +STE:SP:OCETrainTER-87645507,1,"Gare de Neussargues",45.125386,2.979126,-1,0,SIN:SA:OCE87645507,Europe/Paris,,STE, +STE:SP:OCETrainTER-87683003,1,"Gare de Sens",48.198038,3.267327,-1,0,STE:SA:OCE87683003,Europe/Paris,,STE, +STE:SP:OCETrainTER-87683201,1,"Gare de Etigny-Véron",48.138262,3.290171,-1,0,STE:SA:OCE87683201,Europe/Paris,,STE, +STE:SP:OCETrainTER-87683219,1,"Gare de Villeneuve-sur-Yonne",48.08494,3.286253,-1,0,STE:SA:OCE87683219,Europe/Paris,,STE, +STE:SP:OCETrainTER-87683227,1,"Gare de St-Julien-du-Sault",48.026953,3.302732,-1,0,STE:SA:OCE87683227,Europe/Paris,,STE, +STE:SP:OCETrainTER-87683243,1,"Gare de Joigny",47.973833,3.392956,-1,0,STE:SA:OCE87683243,Europe/Paris,,STE, +STE:SP:OCETrainTER-87683268,1,"Gare de Laroche-Migennes",47.960853,3.512941,-1,0,STE:SA:OCE87683268,Europe/Paris,,STE, +STE:SP:OCETrainTER-87683318,1,"Gare de St-Florentin-Vergigny",47.980415,3.730949,-1,0,STE:SA:OCE87683318,Europe/Paris,,STE, +STE:SP:OCETrainTER-87686006,1,"Gare de Paris-Gare-de-Lyon",48.844922,2.373462,-1,0,SIN:SA:OCE87686006,Europe/Paris,,STE, +STE:SP:OCETrainTER-87686667,1,"Gare de Paris-Bercy",48.839211,2.382799,-1,0,SIN:SA:OCE87686667,Europe/Paris,,STE, +STE:SP:OCETrainTER-87691600,1,"Gare de Les Perrières",47.005616,3.146543,-1,0,STE:SA:OCE87691600,Europe/Paris,,STE, +STE:SP:OCETrainTER-87694307,1,"Gare de Montchanin",46.759158,4.481462,-1,0,STE:SA:OCE87694307,Europe/Paris,,STE, +STE:SP:OCETrainTER-87694612,1,"Gare de Blanzy",46.693734,4.39101,-1,0,STE:SA:OCE87694612,Europe/Paris,,STE, +STE:SP:OCETrainTER-87694620,1,"Gare de Montceau-les-Mines",46.671068,4.362067,-1,0,STE:SA:OCE87694620,Europe/Paris,,STE, +STE:SP:OCETrainTER-87694638,1,"Gare de Galuzot",46.642025,4.32992,-1,0,STE:SA:OCE87694638,Europe/Paris,,STE, +STE:SP:OCETrainTER-87694646,1,"Gare de Ciry-le-Noble",46.604259,4.299516,-1,0,STE:SA:OCE87694646,Europe/Paris,,STE, +STE:SP:OCETrainTER-87694653,1,"Gare de Génelard",46.581192,4.23795,-1,0,STE:SA:OCE87694653,Europe/Paris,,STE, +STE:SP:OCETrainTER-87694687,1,"Gare de Paray-le-Monial",46.447256,4.113628,-1,0,SIN:SA:OCE87694687,Europe/Paris,,STE, +STE:SP:OCETrainTER-87694695,1,"Gare de Digoin",46.485196,3.987637,-1,0,SIN:SA:OCE87694695,Europe/Paris,,STE, +STE:SP:OCETrainTER-87694737,1,"Gare de La Clayette-Baudemont",46.288162,4.298451,-1,0,SIN:SA:OCE87694737,Europe/Paris,,STE, +STE:SP:OCETrainTER-87694778,1,"Gare de Chauffailles",46.207404,4.345377,-1,0,SIN:SA:OCE87694778,Europe/Paris,,STE, +STE:SP:OCETrainTER-87694851,1,"Gare de St-Agnan",46.502017,3.879009,-1,0,SIN:SA:OCE87694851,Europe/Paris,,STE, +STE:SP:OCETrainTER-87694869,1,"Gare de Gilly-sur-Loire",46.536983,3.781787,-1,0,SIN:SA:OCE87694869,Europe/Paris,,STE, +STE:SP:OCETrainTER-87696005,1,"Gare de Nevers",46.987349,3.15087,-1,0,SIN:SA:OCE87696005,Europe/Paris,,STE, +STE:SP:OCETrainTER-87696260,1,"Gare de Saincaize",46.931373,3.071971,-1,0,SIN:SA:OCE87696260,Europe/Paris,,STE, +STE:SP:OCETrainTER-87696294,1,"Gare de St-Pierre-le-Moûtier",46.793271,3.111736,-1,0,SIN:SA:OCE87696294,Europe/Paris,,STE, +STE:SP:OCETrainTER-87696302,1,"Gare de Chantenay-St-Imbert",46.728304,3.171699,-1,0,SIN:SA:OCE87696302,Europe/Paris,,STE, +STE:SP:OCETrainTER-87696310,1,"Gare de Villeneuve-sur-Allier",46.659305,3.246989,-1,0,STE:SA:OCE87696310,Europe/Paris,,STE, +STE:SP:OCETrainTER-87696328,1,"Gare de Moulins-sur-Allier",46.561364,3.338755,-1,0,SIN:SA:OCE87696328,Europe/Paris,,STE, +STE:SP:OCETrainTER-87696336,1,"Gare de Bessay",46.442932,3.360574,-1,0,STE:SA:OCE87696336,Europe/Paris,,STE, +STE:SP:OCETrainTER-87696351,1,"Gare de Varennes-sur-Allier",46.315441,3.394161,-1,0,SIN:SA:OCE87696351,Europe/Paris,,STE, +STE:SP:OCETrainTER-87696427,1,"Gare de Dompierre-Sept-Fons",46.526267,3.674899,-1,0,SIN:SA:OCE87696427,Europe/Paris,,STE, +STE:SP:OCETrainTER-87696450,1,"Gare de Imphy",46.9334,3.259751,-1,0,STE:SA:OCE87696450,Europe/Paris,,STE, +STE:SP:OCETrainTER-87696468,1,"Gare de Béard",46.865303,3.318114,-1,0,STE:SA:OCE87696468,Europe/Paris,,STE, +STE:SP:OCETrainTER-87696484,1,"Gare de Decize",46.837332,3.467296,-1,0,STE:SA:OCE87696484,Europe/Paris,,STE, +STE:SP:OCETrainTER-87697128,1,"Gare de Lyon-Part-Dieu-Gare-Rou",45.760585,4.859435,-1,0,STE:SA:OCE87697128,Europe/Paris,,STE, +STE:SP:OCETrainTER-87712604,1,"Gare de Ouges",47.255673,5.073252,-1,0,STE:SA:OCE87712604,Europe/Paris,,STE, +STE:SP:OCETrainTER-87712620,1,"Gare de Longecourt-en-Plaine",47.19387,5.134814,-1,0,STE:SA:OCE87712620,Europe/Paris,,STE, +STE:SP:OCETrainTER-87712679,1,"Gare de Chaugey",47.087531,5.255282,-1,0,STE:SA:OCE87712679,Europe/Paris,,STE, +STE:SP:OCETrainTER-87713040,1,"Gare de Dijon-Ville",47.323404,5.02728,-1,0,STE:SA:OCE87713040,Europe/Paris,,STE, +STE:SP:OCETrainTER-87713115,1,"Gare de Les Laumes-Alésia",47.543319,4.462868,-1,0,STE:SA:OCE87713115,Europe/Paris,,STE, +STE:SP:OCETrainTER-87713131,1,"Gare de Montbard",47.61872,4.336152,-1,0,STE:SA:OCE87713131,Europe/Paris,,STE, +STE:SP:OCETrainTER-87713156,1,"Gare de Nuits-sous-Ravières",47.72921,4.211266,-1,0,STE:SA:OCE87713156,Europe/Paris,,STE, +STE:SP:OCETrainTER-87713198,1,"Gare de Tonnerre",47.859603,3.973496,-1,0,STE:SA:OCE87713198,Europe/Paris,,STE, +STE:SP:OCETrainTER-87713529,1,"Gare de Nuits-St-Georges",47.130668,4.956228,-1,0,STE:SA:OCE87713529,Europe/Paris,,STE, +STE:SP:OCETrainTER-87713545,1,"Gare de Beaune",47.023041,4.848723,-1,0,STE:SA:OCE87713545,Europe/Paris,,STE, +STE:SP:OCETrainTER-87713578,1,"Gare de Chagny",46.907429,4.74965,-1,0,STE:SA:OCE87713578,Europe/Paris,,STE, +STE:SP:OCETrainTER-87713628,1,"Gare de Saulon",47.224183,5.104766,-1,0,STE:SA:OCE87713628,Europe/Paris,,STE, +STE:SP:OCETrainTER-87713636,1,"Gare de Aiserey",47.170648,5.158391,-1,0,STE:SA:OCE87713636,Europe/Paris,,STE, +STE:SP:OCETrainTER-87713644,1,"Gare de Brazey-en-Plaine",47.131563,5.212223,-1,0,STE:SA:OCE87713644,Europe/Paris,,STE, +STE:SP:OCETrainTER-87713651,1,"Gare de St-Jean-de-Losne",47.099799,5.244335,-1,0,STE:SA:OCE87713651,Europe/Paris,,STE, +STE:SP:OCETrainTER-87713669,1,"Gare de Pagny (Côte-d'Or)",47.046176,5.200803,-1,0,STE:SA:OCE87713669,Europe/Paris,,STE, +STE:SP:OCETrainTER-87713677,1,"Gare de Seurre",46.99645,5.151248,-1,0,SIN:SA:OCE87713677,Europe/Paris,,STE, +STE:SP:OCETrainTER-87713701,1,"Gare de Mervans",46.798883,5.179536,-1,0,SIN:SA:OCE87713701,Europe/Paris,,STE, +STE:SP:OCETrainTER-87713735,1,"Gare de Louhans",46.631126,5.217708,-1,0,SIN:SA:OCE87713735,Europe/Paris,,STE, +STE:SP:OCETrainTER-87718007,1,"Gare de Besançon-Viotte",47.247038,6.021912,-1,0,STE:SA:OCE87718007,Europe/Paris,,STE, +STE:SP:OCETrainTER-87718155,1,"Gare de Arbois (Jura)",46.912425,5.764767,-1,0,STE:SA:OCE87718155,Europe/Paris,,STE, +STE:SP:OCETrainTER-87718189,1,"Gare de Poligny",46.844169,5.700318,-1,0,STE:SA:OCE87718189,Europe/Paris,,STE, +STE:SP:OCETrainTER-87718213,1,"Gare de Domblans-Voiteur",46.762743,5.597938,-1,0,STE:SA:OCE87718213,Europe/Paris,,STE, +STE:SP:OCETrainTER-87718239,1,"Gare de Lons-le-Saunier",46.668398,5.550877,-1,0,STE:SA:OCE87718239,Europe/Paris,,STE, +STE:SP:OCETrainTER-87718270,1,"Gare de Cousance",46.535157,5.38705,-1,0,STE:SA:OCE87718270,Europe/Paris,,STE, +STE:SP:OCETrainTER-87718296,1,"Gare de St-Amour",46.433678,5.334537,-1,0,STE:SA:OCE87718296,Europe/Paris,,STE, +STE:SP:OCETrainTER-87718460,1,"Gare de Baume-les-Dames",47.353962,6.359671,-1,0,STE:SA:OCE87718460,Europe/Paris,,STE, +STE:SP:OCETrainTER-87718833,1,"Gare de Mouchard",46.976813,5.799724,-1,0,STE:SA:OCE87718833,Europe/Paris,,STE, +STE:SP:OCETrainTER-87718841,1,"Gare de Arc-et-Senans",47.030456,5.776935,-1,0,STE:SA:OCE87718841,Europe/Paris,,STE, +STE:SP:OCETrainTER-87721001,1,"Gare de Lyon-Vaise",45.780142,4.80405,-1,0,STE:SA:OCE87721001,Europe/Paris,,STE, +STE:SP:OCETrainTER-87721035,1,"Gare de Amplepuis",45.971001,4.326723,-1,0,SIN:SA:OCE87721035,Europe/Paris,,STE, +STE:SP:OCETrainTER-87721043,1,"Gare de St-Victor-Thizy",46.002585,4.281147,-1,0,SIN:SA:OCE87721043,Europe/Paris,,STE, +STE:SP:OCETrainTER-87721050,1,"Gare de Régny",45.987729,4.215111,-1,0,SIN:SA:OCE87721050,Europe/Paris,,STE, +STE:SP:OCETrainTER-87721159,1,"Gare de Lyon-St-Paul",45.766082,4.826904,-1,0,STE:SA:OCE87721159,Europe/Paris,,STE, +STE:SP:OCETrainTER-87721175,1,"Gare de Lyon-Gorge-de-Loup",45.766077,4.804731,-1,0,STE:SA:OCE87721175,Europe/Paris,,STE, +STE:SP:OCETrainTER-87721225,1,"Gare de Collonges-Fontaines",45.82911,4.846667,-1,0,STE:SA:OCE87721225,Europe/Paris,,STE, +STE:SP:OCETrainTER-87721241,1,"Gare de Couzon-au-Mont-d'Or",45.848701,4.829517,-1,0,STE:SA:OCE87721241,Europe/Paris,,STE, +STE:SP:OCETrainTER-87721266,1,"Gare de Albigny-Neuville",45.874857,4.832844,-1,0,STE:SA:OCE87721266,Europe/Paris,,STE, +STE:SP:OCETrainTER-87721282,1,"Gare de St-Germain-au-Mont-d'Or",45.888442,4.804176,-1,0,STE:SA:OCE87721282,Europe/Paris,,STE, +STE:SP:OCETrainTER-87721290,1,"Gare de Quincieux",45.906904,4.778574,-1,0,STE:SA:OCE87721290,Europe/Paris,,STE, +STE:SP:OCETrainTER-87721324,1,"Gare de Anse",45.939335,4.719743,-1,0,STE:SA:OCE87721324,Europe/Paris,,STE, +STE:SP:OCETrainTER-87721332,1,"Gare de Villefranche-sur-Saône",45.984444,4.720814,-1,0,SIN:SA:OCE87721332,Europe/Paris,,STE, +STE:SP:OCETrainTER-87721340,1,"Gare de St-Georges-de-Reneins",46.062191,4.718887,-1,0,SIN:SA:OCE87721340,Europe/Paris,,STE, +STE:SP:OCETrainTER-87721357,1,"Gare de Belleville-sur-Saône",46.111942,4.729002,-1,0,SIN:SA:OCE87721357,Europe/Paris,,STE, +STE:SP:OCETrainTER-87721415,1,"Gare de Chazay-Marcilly",45.873258,4.725327,-1,0,STE:SA:OCE87721415,Europe/Paris,,STE, +STE:SP:OCETrainTER-87721423,1,"Gare de Lozanne",45.854135,4.68146,-1,0,SIN:SA:OCE87721423,Europe/Paris,,STE, +STE:SP:OCETrainTER-87721431,1,"Gare de L'Arbresle",45.833249,4.618236,-1,0,SIN:SA:OCE87721431,Europe/Paris,,STE, +STE:SP:OCETrainTER-87721456,1,"Gare de St-Romain-de-Popey",45.861532,4.542259,-1,0,SIN:SA:OCE87721456,Europe/Paris,,STE, +STE:SP:OCETrainTER-87721464,1,"Gare de Pontcharra-St-Forgeux",45.871509,4.492797,-1,0,SIN:SA:OCE87721464,Europe/Paris,,STE, +STE:SP:OCETrainTER-87721472,1,"Gare de Tarare",45.889788,4.439075,-1,0,SIN:SA:OCE87721472,Europe/Paris,,STE, +STE:SP:OCETrainTER-87721506,1,"Gare de Ecully-la-Demi-Lune",45.76571,4.77952,-1,0,SIN:SA:OCE87721506,Europe/Paris,,STE, +STE:SP:OCETrainTER-87721753,1,"Gare de Chatillon-d'Azergues",45.875254,4.645199,-1,0,SIN:SA:OCE87721753,Europe/Paris,,STE, +STE:SP:OCETrainTER-87721761,1,"Gare de Chessy (Rhône)",45.885537,4.622497,-1,0,SIN:SA:OCE87721761,Europe/Paris,,STE, +STE:SP:OCETrainTER-87721787,1,"Gare de Bois-d'Oingt-Légny",45.906588,4.57558,-1,0,SIN:SA:OCE87721787,Europe/Paris,,STE, +STE:SP:OCETrainTER-87721829,1,"Gare de Chamelet",45.981605,4.507096,-1,0,SIN:SA:OCE87721829,Europe/Paris,,STE, +STE:SP:OCETrainTER-87721860,1,"Gare de Lamure-sur-Azergues",46.061095,4.492123,-1,0,SIN:SA:OCE87721860,Europe/Paris,,STE, +STE:SP:OCETrainTER-87722025,1,"Gare de Lyon-Perrache",45.748492,4.825748,-1,0,SIN:SA:OCE87722025,Europe/Paris,,STE, +STE:SP:OCETrainTER-87722207,1,"Gare de Oullins",45.717214,4.813129,-1,0,STE:SA:OCE87722207,Europe/Paris,,STE, +STE:SP:OCETrainTER-87722231,1,"Gare de Pierre-Bénite",45.706906,4.824986,-1,0,STE:SA:OCE87722231,Europe/Paris,,STE, +STE:SP:OCETrainTER-87722264,1,"Gare de Vernaison",45.645643,4.813276,-1,0,STE:SA:OCE87722264,Europe/Paris,,STE, +STE:SP:OCETrainTER-87722298,1,"Gare de Grigny-Le Sablon",45.607253,4.796137,-1,0,STE:SA:OCE87722298,Europe/Paris,,STE, +STE:SP:OCETrainTER-87722405,1,"Gare de Givors-Ville",45.585368,4.766243,-1,0,SIN:SA:OCE87722405,Europe/Paris,,STE, +STE:SP:OCETrainTER-87722439,1,"Gare de Givors-Canal",45.5957,4.772493,-1,0,STE:SA:OCE87722439,Europe/Paris,,STE, +STE:SP:OCETrainTER-87722538,1,"Gare de Feyzin",45.665891,4.853071,-1,0,STE:SA:OCE87722538,Europe/Paris,,STE, +STE:SP:OCETrainTER-87722546,1,"Gare de Sérézin",45.627175,4.818039,-1,0,SIN:SA:OCE87722546,Europe/Paris,,STE, +STE:SP:OCETrainTER-87722561,1,"Gare de Chasse-sur-Rhône",45.582394,4.79485,-1,0,SIN:SA:OCE87722561,Europe/Paris,,STE, +STE:SP:OCETrainTER-87722579,1,"Gare de Estressin",45.540271,4.868264,-1,0,STE:SA:OCE87722579,Europe/Paris,,STE, +STE:SP:OCETrainTER-87722587,1,"Gare de Vienne",45.521214,4.874305,-1,0,STE:SA:OCE87722587,Europe/Paris,,STE, +STE:SP:OCETrainTER-87722652,1,"Gare de St-Clair-les-Roches",45.450387,4.769905,-1,0,SIN:SA:OCE87722652,Europe/Paris,,STE, +STE:SP:OCETrainTER-87722678,1,"Gare de Le Péage-de-Roussillon",45.371659,4.795408,-1,0,SIN:SA:OCE87722678,Europe/Paris,,STE, +STE:SP:OCETrainTER-87722702,1,"Gare de Francheville",45.734489,4.768983,-1,0,STE:SA:OCE87722702,Europe/Paris,,STE, +STE:SP:OCETrainTER-87722710,1,"Gare de Chaponost",45.698194,4.764143,-1,0,STE:SA:OCE87722710,Europe/Paris,,STE, +STE:SP:OCETrainTER-87722728,1,"Gare de Brignais",45.673811,4.763723,-1,0,STE:SA:OCE87722728,Europe/Paris,,STE, +STE:SP:OCETrainTER-87722744,1,"Gare de Alai",45.751954,4.771761,-1,0,DGL:SA:S5762,Europe/Paris,,STE, +STE:SP:OCETrainTER-87723197,1,"Gare de Lyon-Part-Dieu",45.760585,4.859435,-1,0,SIN:SA:OCE87723197,Europe/Paris,,STE, +STE:SP:OCETrainTER-87723320,1,"Gare de Vénissieux",45.705608,4.887955,-1,0,STE:SA:OCE87723320,Europe/Paris,,STE, +STE:SP:OCETrainTER-87723353,1,"Gare de St-Priest",45.686649,4.934314,-1,0,SIN:SA:OCE87723353,Europe/Paris,,STE, +STE:SP:OCETrainTER-87723387,1,"Gare de St-Quentin-Fallavier",45.63812,5.099951,-1,0,STE:SA:OCE87723387,Europe/Paris,,STE, +STE:SP:OCETrainTER-87723395,1,"Gare de La Verpillière",45.627601,5.150745,-1,0,SIN:SA:OCE87723395,Europe/Paris,,STE, +STE:SP:OCETrainTER-87723429,1,"Gare de Bourgoin-Jallieu",45.583968,5.273344,-1,0,SIN:SA:OCE87723429,Europe/Paris,,STE, +STE:SP:OCETrainTER-87723452,1,"Gare de Cessieu",45.56124,5.375639,-1,0,STE:SA:OCE87723452,Europe/Paris,,STE, +STE:SP:OCETrainTER-87723478,1,"Gare de La Tour-du-Pin",45.560225,5.449547,-1,0,STE:SA:OCE87723478,Europe/Paris,,STE, +STE:SP:OCETrainTER-87723494,1,"Gare de St-André-le-Gaz",45.544507,5.524286,-1,0,SIN:SA:OCE87723494,Europe/Paris,,STE, +STE:SP:OCETrainTER-87723502,1,"Gare de Crépieux-la-Pape",45.803921,4.892737,-1,0,STE:SA:OCE87723502,Europe/Paris,,STE, +STE:SP:OCETrainTER-87723528,1,"Gare de Miribel",45.822065,4.953913,-1,0,STE:SA:OCE87723528,Europe/Paris,,STE, +STE:SP:OCETrainTER-87723536,1,"Gare de St-Maurice-de-Beynost",45.827433,4.977629,-1,0,SIN:SA:OCE87723536,Europe/Paris,,STE, +STE:SP:OCETrainTER-87723544,1,"Gare de Beynost",45.833897,5.006941,-1,0,STE:SA:OCE87723544,Europe/Paris,,STE, +STE:SP:OCETrainTER-87723569,1,"Gare de Montluel",45.847763,5.057543,-1,0,SIN:SA:OCE87723569,Europe/Paris,,STE, +STE:SP:OCETrainTER-87723577,1,"Gare de La Valbonne",45.849261,5.124991,-1,0,SIN:SA:OCE87723577,Europe/Paris,,STE, +STE:SP:OCETrainTER-87723585,1,"Gare de Meximieux-Pérouges",45.901787,5.193333,-1,0,SIN:SA:OCE87723585,Europe/Paris,,STE, +STE:SP:OCETrainTER-87723700,1,"Gare de Sathonay-Rillieux",45.82025,4.875267,-1,0,STE:SA:OCE87723700,Europe/Paris,,STE, +STE:SP:OCETrainTER-87723718,1,"Gare de Les Echets",45.874622,4.910811,-1,0,SIN:SA:OCE87723718,Europe/Paris,,STE, +STE:SP:OCETrainTER-87723726,1,"Gare de Mionnay",45.896772,4.919585,-1,0,STE:SA:OCE87723726,Europe/Paris,,STE, +STE:SP:OCETrainTER-87723734,1,"Gare de St-André-de-Corcy",45.92593,4.948782,-1,0,SIN:SA:OCE87723734,Europe/Paris,,STE, +STE:SP:OCETrainTER-87723742,1,"Gare de St-Marcel-en-Dombes",45.950366,4.977512,-1,0,SIN:SA:OCE87723742,Europe/Paris,,STE, +STE:SP:OCETrainTER-87723759,1,"Gare de Villars-les-Dombes",46.004255,5.028411,-1,0,SIN:SA:OCE87723759,Europe/Paris,,STE, +STE:SP:OCETrainTER-87723767,1,"Gare de Marlieux-Chatillon",46.06406,5.073203,-1,0,SIN:SA:OCE87723767,Europe/Paris,,STE, +STE:SP:OCETrainTER-87723783,1,"Gare de St-Paul-de-Varax",46.100057,5.128181,-1,0,SIN:SA:OCE87723783,Europe/Paris,,STE, +STE:SP:OCETrainTER-87723791,1,"Gare de Servas-Lent",46.130662,5.168125,-1,0,SIN:SA:OCE87723791,Europe/Paris,,STE, +STE:SP:OCETrainTER-87725002,1,"Gare de Chalon-sur-Saône",46.78157,4.843489,-1,0,STE:SA:OCE87725002,Europe/Paris,,STE, +STE:SP:OCETrainTER-87725622,1,"Gare de Tournus",46.566719,4.906522,-1,0,STE:SA:OCE87725622,Europe/Paris,,STE, +STE:SP:OCETrainTER-87725689,1,"Gare de Mâcon-Ville",46.302659,4.825149,-1,0,SIN:SA:OCE87725689,Europe/Paris,,STE, +STE:SP:OCETrainTER-87725713,1,"Gare de Crêches-sur-Saône",46.246615,4.783901,-1,0,SIN:SA:OCE87725713,Europe/Paris,,STE, +STE:SP:OCETrainTER-87725721,1,"Gare de Pontanevaux",46.213025,4.772877,-1,0,STE:SA:OCE87725721,Europe/Paris,,STE, +STE:SP:OCETrainTER-87725739,1,"Gare de Romanèche-Thorins",46.176382,4.742101,-1,0,SIN:SA:OCE87725739,Europe/Paris,,STE, +STE:SP:OCETrainTER-87725804,1,"Gare de Pont-de-Veyle",46.267827,4.892948,-1,0,SIN:SA:OCE87725804,Europe/Paris,,STE, +STE:SP:OCETrainTER-87725820,1,"Gare de Vonnas",46.227197,4.991746,-1,0,SIN:SA:OCE87725820,Europe/Paris,,STE, +STE:SP:OCETrainTER-87725838,1,"Gare de Mézériat",46.234927,5.046569,-1,0,SIN:SA:OCE87725838,Europe/Paris,,STE, +STE:SP:OCETrainTER-87725846,1,"Gare de Polliat",46.244737,5.123833,-1,0,STE:SA:OCE87725846,Europe/Paris,,STE, +STE:SP:OCETrainTER-87725895,1,"Gare de Echirolles",45.152717,5.719912,-1,0,STE:SA:OCE87725895,Europe/Paris,,STE, +STE:SP:OCETrainTER-87726000,1,"Gare de St-Etienne-Châteaucreux",45.443382,4.399996,-1,0,SIN:SA:OCE87726000,Europe/Paris,,STE, +STE:SP:OCETrainTER-87726158,1,"Gare de St-Etienne-la-Terrasse",45.464852,4.379529,-1,0,SIN:SA:OCE87726158,Europe/Paris,,STE, +STE:SP:OCETrainTER-87726174,1,"Gare de St-Etienne-le-Clapier",45.437101,4.378402,-1,0,STE:SA:OCE87726174,Europe/Paris,,STE, +STE:SP:OCETrainTER-87726190,1,"Gare de St-Etienne-Bellevue",45.417203,4.392657,-1,0,STE:SA:OCE87726190,Europe/Paris,,STE, +STE:SP:OCETrainTER-87726208,1,"Gare de Veauche St Galmier",45.565928,4.293199,-1,0,SIN:SA:OCE87726208,Europe/Paris,,STE, +STE:SP:OCETrainTER-87726216,1,"Gare de Bouthéon",45.524704,4.277618,-1,0,STE:SA:OCE87726216,Europe/Paris,,STE, +STE:SP:OCETrainTER-87726232,1,"Gare de La Fouillouse",45.497927,4.31691,-1,0,STE:SA:OCE87726232,Europe/Paris,,STE, +STE:SP:OCETrainTER-87726307,1,"Gare de St-Chamond",45.472522,4.516984,-1,0,SIN:SA:OCE87726307,Europe/Paris,,STE, +STE:SP:OCETrainTER-87726331,1,"Gare de Rive-de-Gier",45.524337,4.606362,-1,0,SIN:SA:OCE87726331,Europe/Paris,,STE, +STE:SP:OCETrainTER-87726406,1,"Gare de Andrézieux",45.521762,4.255176,-1,0,SIN:SA:OCE87726406,Europe/Paris,,STE, +STE:SP:OCETrainTER-87726414,1,"Gare de Bonson",45.522171,4.216222,-1,0,SIN:SA:OCE87726414,Europe/Paris,,STE, +STE:SP:OCETrainTER-87726422,1,"Gare de Sury-le-Comtal",45.529078,4.182426,-1,0,SIN:SA:OCE87726422,Europe/Paris,,STE, +STE:SP:OCETrainTER-87726430,1,"Gare de St-Romain-le-Puy",45.554546,4.12077,-1,0,SIN:SA:OCE87726430,Europe/Paris,,STE, +STE:SP:OCETrainTER-87726448,1,"Gare de Montbrison",45.604466,4.078218,-1,0,SIN:SA:OCE87726448,Europe/Paris,,STE, +STE:SP:OCETrainTER-87726703,1,"Gare de La Ricamarie",45.403344,4.3582,-1,0,STE:SA:OCE87726703,Europe/Paris,,STE, +STE:SP:OCETrainTER-87726711,1,"Gare de Le Chambon-Feugerolles",45.394773,4.322366,-1,0,STE:SA:OCE87726711,Europe/Paris,,STE, +STE:SP:OCETrainTER-87726729,1,"Gare de Firminy",45.391645,4.286429,-1,0,SIN:SA:OCE87726729,Europe/Paris,,STE, +STE:SP:OCETrainTER-87726737,1,"Gare de Fraisse-Unieux",45.395202,4.26092,-1,0,STE:SA:OCE87726737,Europe/Paris,,STE, +STE:SP:OCETrainTER-87726760,1,"Gare de Aurec",45.371129,4.198434,-1,0,SIN:SA:OCE87726760,Europe/Paris,,STE, +STE:SP:OCETrainTER-87726778,1,"Gare de Bas-Monistrol",45.297668,4.139717,-1,0,SIN:SA:OCE87726778,Europe/Paris,,STE, +STE:SP:OCETrainTER-87726786,1,"Gare de Pont-de-Lignon",45.260283,4.137955,-1,0,STE:SA:OCE87726786,Europe/Paris,,STE, +STE:SP:OCETrainTER-87726802,1,"Gare de Roanne",46.040211,4.063135,-1,0,SIN:SA:OCE87726802,Europe/Paris,,STE, +STE:SP:OCETrainTER-87726828,1,"Gare de Le Coteau",46.023935,4.086301,-1,0,SIN:SA:OCE87726828,Europe/Paris,,STE, +STE:SP:OCETrainTER-87726851,1,"Gare de St-Jodard",45.885645,4.125281,-1,0,STE:SA:OCE87726851,Europe/Paris,,STE, +STE:SP:OCETrainTER-87726869,1,"Gare de Balbigny",45.817785,4.187385,-1,0,SIN:SA:OCE87726869,Europe/Paris,,STE, +STE:SP:OCETrainTER-87726877,1,"Gare de Feurs",45.744084,4.230446,-1,0,SIN:SA:OCE87726877,Europe/Paris,,STE, +STE:SP:OCETrainTER-87726885,1,"Gare de Montrond-les-Bains",45.644402,4.248833,-1,0,SIN:SA:OCE87726885,Europe/Paris,,STE, +STE:SP:OCETrainTER-87726901,1,"Gare de St-Etienne-Carnot",45.446818,4.385384,-1,0,STE:SA:OCE87726901,Europe/Paris,,STE, +STE:SP:OCETrainTER-87728501,1,"Gare de St Fons",45.70576,4.852555,-1,0,STE:SA:OCE87728501,Europe/Paris,,STE, +STE:SP:OCETrainTER-87731828,1,"Gare de Lachaud-Curmilhac",45.122874,3.610398,-1,0,STE:SA:OCE87731828,Europe/Paris,,STE, +STE:SP:OCETrainTER-87731885,1,"Gare de Alleyras",44.918949,3.67355,-1,0,STE:SA:OCE87731885,Europe/Paris,,STE, +STE:SP:OCETrainTER-87732008,1,"Gare de Vichy",46.12697,3.430489,-1,0,SIN:SA:OCE87732008,Europe/Paris,,STE, +STE:SP:OCETrainTER-87732206,1,"Gare de St-Germain-des-Fossés",46.209103,3.430489,-1,0,SIN:SA:OCE87732206,Europe/Paris,,STE, +STE:SP:OCETrainTER-87732404,1,"Gare de Gannat",46.097436,3.20488,-1,0,SIN:SA:OCE87732404,Europe/Paris,,STE, +STE:SP:OCETrainTER-87734004,1,"Gare de Clermont-Ferrand",45.778569,3.100519,-1,0,SIN:SA:OCE87734004,Europe/Paris,,STE, +STE:SP:OCETrainTER-87734038,1,"Gare de Royat-Chamalières",45.767572,3.061504,-1,0,SIN:SA:OCE87734038,Europe/Paris,,STE, +STE:SP:OCETrainTER-87734046,1,"Gare de Gerzat",45.833317,3.143098,-1,0,STE:SA:OCE87734046,Europe/Paris,,STE, +STE:SP:OCETrainTER-87734053,1,"Gare de Riom-Châtel-Guyon",45.889842,3.120813,-1,0,SIN:SA:OCE87734053,Europe/Paris,,STE, +STE:SP:OCETrainTER-87734087,1,"Gare de Pont-du-Château",45.788533,3.238421,-1,0,SIN:SA:OCE87734087,Europe/Paris,,STE, +STE:SP:OCETrainTER-87734103,1,"Gare de Pontmort",45.939487,3.160301,-1,0,STE:SA:OCE87734103,Europe/Paris,,STE, +STE:SP:OCETrainTER-87734111,1,"Gare de Aubiat",45.983806,3.160515,-1,0,STE:SA:OCE87734111,Europe/Paris,,STE, +STE:SP:OCETrainTER-87734129,1,"Gare de Aigueperse",46.014847,3.197877,-1,0,SIN:SA:OCE87734129,Europe/Paris,,STE, +STE:SP:OCETrainTER-87734152,1,"Gare de Sarliève-Cournon",45.7387,3.168053,-1,0,STE:SA:OCE87734152,Europe/Paris,,STE, +STE:SP:OCETrainTER-87734160,1,"Gare de Le Cendre-Orcet",45.723817,3.188689,-1,0,STE:SA:OCE87734160,Europe/Paris,,STE, +STE:SP:OCETrainTER-87734178,1,"Gare de Les Martres-de-Veyre",45.688172,3.193299,-1,0,STE:SA:OCE87734178,Europe/Paris,,STE, +STE:SP:OCETrainTER-87734186,1,"Gare de Vic-le-Comte",45.664898,3.207027,-1,0,SIN:SA:OCE87734186,Europe/Paris,,STE, +STE:SP:OCETrainTER-87734194,1,"Gare de Parent-Coudes-Champeix",45.61442,3.216807,-1,0,SIN:SA:OCE87734194,Europe/Paris,,STE, +STE:SP:OCETrainTER-87734202,1,"Gare de Issoire",45.543953,3.254071,-1,0,SIN:SA:OCE87734202,Europe/Paris,,STE, +STE:SP:OCETrainTER-87734228,1,"Gare de Le Breuil-sur-Couze",45.467089,3.262143,-1,0,SIN:SA:OCE87734228,Europe/Paris,,STE, +STE:SP:OCETrainTER-87734244,1,"Gare de Brassac-les-Mines",45.4141,3.32993,-1,0,SIN:SA:OCE87734244,Europe/Paris,,STE, +STE:SP:OCETrainTER-87734251,1,"Gare de Arvant",45.365383,3.310488,-1,0,SIN:SA:OCE87734251,Europe/Paris,,STE, +STE:SP:OCETrainTER-87734269,1,"Gare de Brioude",45.300657,3.378675,-1,0,SIN:SA:OCE87734269,Europe/Paris,,STE, +STE:SP:OCETrainTER-87734293,1,"Gare de Paulhaguet",45.21015,3.500395,-1,0,SIN:SA:OCE87734293,Europe/Paris,,STE, +STE:SP:OCETrainTER-87734301,1,"Gare de St-Georges-d'Aurac",45.160594,3.494704,-1,0,SIN:SA:OCE87734301,Europe/Paris,,STE, +STE:SP:OCETrainTER-87734319,1,"Gare de Langeac",45.101225,3.490574,-1,0,SIN:SA:OCE87734319,Europe/Paris,,STE, +STE:SP:OCETrainTER-87734335,1,"Gare de Monistrol-d'Allier",44.96963,3.649786,-1,0,SIN:SA:OCE87734335,Europe/Paris,,STE, +STE:SP:OCETrainTER-87734343,1,"Gare de Chapeauroux",44.838075,3.741826,-1,0,STE:SA:OCE87734343,Europe/Paris,,STE, +STE:SP:OCETrainTER-87734350,1,"Gare de Langogne",44.732607,3.857278,-1,0,SIN:SA:OCE87734350,Europe/Paris,,STE, +STE:SP:OCETrainTER-87734368,1,"Gare de Luc (Lozère)",44.65409,3.891105,-1,0,SIN:SA:OCE87734368,Europe/Paris,,STE, +STE:SP:OCETrainTER-87734426,1,"Gare de Vertaizon",45.784569,3.288226,-1,0,SIN:SA:OCE87734426,Europe/Paris,,STE, +STE:SP:OCETrainTER-87734442,1,"Gare de Lezoux",45.821139,3.385773,-1,0,SIN:SA:OCE87734442,Europe/Paris,,STE, +STE:SP:OCETrainTER-87734459,1,"Gare de Pont-de-Dore",45.842816,3.490427,-1,0,SIN:SA:OCE87734459,Europe/Paris,,STE, +STE:SP:OCETrainTER-87734475,1,"Gare de Thiers",45.861087,3.543058,-1,0,SIN:SA:OCE87734475,Europe/Paris,,STE, +STE:SP:OCETrainTER-87734673,1,"Gare de Darsac",45.142191,3.736667,-1,0,SIN:SA:OCE87734673,Europe/Paris,,STE, +STE:SP:OCETrainTER-87734699,1,"Gare de Le Puy-en-Velay",45.042724,3.892528,-1,0,SIN:SA:OCE87734699,Europe/Paris,,STE, +STE:SP:OCETrainTER-87734707,1,"Gare de Lavoûte-sur-Loire",45.121295,3.905323,-1,0,SIN:SA:OCE87734707,Europe/Paris,,STE, +STE:SP:OCETrainTER-87734715,1,"Gare de St-Vincent-le-Château",45.148612,3.918503,-1,0,SIN:SA:OCE87734715,Europe/Paris,,STE, +STE:SP:OCETrainTER-87734723,1,"Gare de Vorey",45.182877,3.911361,-1,0,SIN:SA:OCE87734723,Europe/Paris,,STE, +STE:SP:OCETrainTER-87734731,1,"Gare de Chamalières",45.205918,3.99197,-1,0,SIN:SA:OCE87734731,Europe/Paris,,STE, +STE:SP:OCETrainTER-87734749,1,"Gare de Retournac",45.201312,4.036033,-1,0,SIN:SA:OCE87734749,Europe/Paris,,STE, +STE:SP:OCETrainTER-87734871,1,"Gare de Massiac-Blesle",45.253703,3.196585,-1,0,SIN:SA:OCE87734871,Europe/Paris,,STE, +STE:SP:OCETrainTER-87741009,1,"Gare de Chambéry-Chal.-les-Eaux",45.571038,5.9198,-1,0,STE:SA:OCE87741009,Europe/Paris,,STE, +STE:SP:OCETrainTER-87741074,1,"Gare de Culoz",45.843258,5.778699,-1,0,SIN:SA:OCE87741074,Europe/Paris,,STE, +STE:SP:OCETrainTER-87741108,1,"Gare de Vions-Chanaz",45.824386,5.807297,-1,0,SIN:SA:OCE87741108,Europe/Paris,,STE, +STE:SP:OCETrainTER-87741116,1,"Gare de Chindrieux",45.803459,5.846921,-1,0,SIN:SA:OCE87741116,Europe/Paris,,STE, +STE:SP:OCETrainTER-87741132,1,"Gare de Aix-les-Bains-le-Revard",45.687862,5.90935,-1,0,SIN:SA:OCE87741132,Europe/Paris,,STE, +STE:SP:OCETrainTER-87741140,1,"Gare de Viviers-du-Lac",45.648528,5.903319,-1,0,SIN:SA:OCE87741140,Europe/Paris,,STE, +STE:SP:OCETrainTER-87741181,1,"Gare de Montmélian",45.503065,6.043118,-1,0,SIN:SA:OCE87741181,Europe/Paris,,STE, +STE:SP:OCETrainTER-87741223,1,"Gare de St-Pierre-d'Albigny",45.557372,6.156358,-1,0,SIN:SA:OCE87741223,Europe/Paris,,STE, +STE:SP:OCETrainTER-87741231,1,"Gare de Chamousset",45.557515,6.206436,-1,0,SIN:SA:OCE87741231,Europe/Paris,,STE, +STE:SP:OCETrainTER-87741256,1,"Gare de Aiguebelle",45.543666,6.306747,-1,0,SIN:SA:OCE87741256,Europe/Paris,,STE, +STE:SP:OCETrainTER-87741280,1,"Gare de Epierre-St-Léger",45.456968,6.292469,-1,0,SIN:SA:OCE87741280,Europe/Paris,,STE, +STE:SP:OCETrainTER-87741306,1,"Gare de St-Avre-la-Chambre",45.353102,6.302884,-1,0,SIN:SA:OCE87741306,Europe/Paris,,STE, +STE:SP:OCETrainTER-87741421,1,"Gare de Aiguebelette-le-Lac",45.536304,5.813111,-1,0,STE:SA:OCE87741421,Europe/Paris,,STE, +STE:SP:OCETrainTER-87741439,1,"Gare de Lépin-le-Lac-la-Bauche",45.541546,5.764963,-1,0,SIN:SA:OCE87741439,Europe/Paris,,STE, +STE:SP:OCETrainTER-87741454,1,"Gare de St-Béron-la-Bridoire",45.503934,5.731895,-1,0,SIN:SA:OCE87741454,Europe/Paris,,STE, +STE:SP:OCETrainTER-87741470,1,"Gare de Pont-de-Beauvoisin",45.524541,5.680665,-1,0,STE:SA:OCE87741470,Europe/Paris,,STE, +STE:SP:OCETrainTER-87741496,1,"Gare de Les Abrets-Fitilieu",45.542126,5.575466,-1,0,SIN:SA:OCE87741496,Europe/Paris,,STE, +STE:SP:OCETrainTER-87741504,1,"Gare de Virieu-le-Grand-Belley",45.848315,5.653637,-1,0,SIN:SA:OCE87741504,Europe/Paris,,STE, +STE:SP:OCETrainTER-87741611,1,"Gare de Grésy-sur-Isère",45.594439,6.258861,-1,0,SIN:SA:OCE87741611,Europe/Paris,,STE, +STE:SP:OCETrainTER-87741629,1,"Gare de Frontenex",45.63055,6.314034,-1,0,SIN:SA:OCE87741629,Europe/Paris,,STE, +STE:SP:OCETrainTER-87741645,1,"Gare de Albertville",45.673184,6.383238,-1,0,SIN:SA:OCE87741645,Europe/Paris,,STE, +STE:SP:OCETrainTER-87741694,1,"Gare de Notre-Dame-de-Briançon",45.539307,6.468747,-1,0,SIN:SA:OCE87741694,Europe/Paris,,STE, +STE:SP:OCETrainTER-87741728,1,"Gare de Moûtiers-Salins-Brides",45.486477,6.531382,-1,0,SIN:SA:OCE87741728,Europe/Paris,,STE, +STE:SP:OCETrainTER-87741769,1,"Gare de Aime-la-Plagne",45.554368,6.648884,-1,0,SIN:SA:OCE87741769,Europe/Paris,,STE, +STE:SP:OCETrainTER-87741777,1,"Gare de Landry",45.574205,6.733866,-1,0,SIN:SA:OCE87741777,Europe/Paris,,STE, +STE:SP:OCETrainTER-87741793,1,"Gare de Bourg-St-Maurice",45.618521,6.771481,-1,0,SIN:SA:OCE87741793,Europe/Paris,,STE, +STE:SP:OCETrainTER-87742007,1,"Gare de Modane",45.193558,6.659178,-1,0,SIN:SA:OCE87742007,Europe/Paris,,STE, +STE:SP:OCETrainTER-87742320,1,"Gare de St-Jean-de-Maurienne-A.",45.277842,6.354198,-1,0,SIN:SA:OCE87742320,Europe/Paris,,STE, +STE:SP:OCETrainTER-87742361,1,"Gare de St-Michel-Valloire",45.217247,6.471118,-1,0,SIN:SA:OCE87742361,Europe/Paris,,STE, +STE:SP:OCETrainTER-87743005,1,"Gare de Bourg-en-Bresse",46.200126,5.214969,-1,0,SIN:SA:OCE87743005,Europe/Paris,,STE, +STE:SP:OCETrainTER-87743112,1,"Gare de St-Martin-du-Mont",46.095816,5.303041,-1,0,SIN:SA:OCE87743112,Europe/Paris,,STE, +STE:SP:OCETrainTER-87743120,1,"Gare de Pont-d'Ain",46.054006,5.334332,-1,0,SIN:SA:OCE87743120,Europe/Paris,,STE, +STE:SP:OCETrainTER-87743146,1,"Gare de Ambronay-Priay",46.011639,5.338266,-1,0,SIN:SA:OCE87743146,Europe/Paris,,STE, +STE:SP:OCETrainTER-87743302,1,"Gare de Ceyzériat",46.183336,5.325673,-1,0,STE:SA:OCE87743302,Europe/Paris,,STE, +STE:SP:OCETrainTER-87743328,1,"Gare de Villereversure",46.194155,5.397522,-1,0,SIN:SA:OCE87743328,Europe/Paris,,STE, +STE:SP:OCETrainTER-87743336,1,"Gare de Simandre-sur-Suran",46.220324,5.420952,-1,0,STE:SA:OCE87743336,Europe/Paris,,STE, +STE:SP:OCETrainTER-87743344,1,"Gare de Cize-Bolozon",46.213642,5.453868,-1,0,STE:SA:OCE87743344,Europe/Paris,,STE, +STE:SP:OCETrainTER-87743351,1,"Gare de Nurieux",46.184727,5.527912,-1,0,SIN:SA:OCE87743351,Europe/Paris,,STE, +STE:SP:OCETrainTER-87743526,1,"Gare de Bellignat",46.238626,5.630446,-1,0,STE:SA:OCE87743526,Europe/Paris,,STE, +STE:SP:OCETrainTER-87743534,1,"Gare de Oyonnax",46.259609,5.653252,-1,0,SIN:SA:OCE87743534,Europe/Paris,,STE, +STE:SP:OCETrainTER-87743591,1,"Gare de Molinges",46.356961,5.768063,-1,0,SIN:SA:OCE87743591,Europe/Paris,,STE, +STE:SP:OCETrainTER-87743633,1,"Gare de St-Claude",46.38993,5.860389,-1,0,SIN:SA:OCE87743633,Europe/Paris,,STE, +STE:SP:OCETrainTER-87743716,1,"Gare de Ambérieu-en-Bugey",45.954008,5.342313,-1,0,SIN:SA:OCE87743716,Europe/Paris,,STE, +STE:SP:OCETrainTER-87743740,1,"Gare de St-Rambert-en-Bugey",45.947355,5.438595,-1,0,SIN:SA:OCE87743740,Europe/Paris,,STE, +STE:SP:OCETrainTER-87743757,1,"Gare de Tenay-Hauteville",45.9223,5.50095,-1,0,SIN:SA:OCE87743757,Europe/Paris,,STE, +STE:SP:OCETrainTER-87745000,1,"Gare de Bellegarde-Gare",46.109704,5.823646,-1,0,SIN:SA:OCE87745000,Europe/Paris,,STE, +STE:SP:OCETrainTER-87745380,1,"Gare de Pougny-Chancy",46.144673,5.961358,-1,0,STE:SA:OCE87745380,Europe/Paris,,STE, +STE:SP:OCETrainTER-87745414,1,"Gare de Valleiry",46.109345,5.967392,-1,0,STE:SA:OCE87745414,Europe/Paris,,STE, +STE:SP:OCETrainTER-87745430,1,"Gare de St-Julien-en-Genevois",46.142063,6.085524,-1,0,SIN:SA:OCE87745430,Europe/Paris,,STE, +STE:SP:OCETrainTER-87745497,1,"Gare de Annemasse",46.19923,6.236388,-1,0,SIN:SA:OCE87745497,Europe/Paris,,STE, +STE:SP:OCETrainTER-87745588,1,"Gare de Machilly",46.251269,6.32818,-1,0,SIN:SA:OCE87745588,Europe/Paris,,STE, +STE:SP:OCETrainTER-87745596,1,"Gare de Bons-en-Chablais",46.270031,6.366161,-1,0,SIN:SA:OCE87745596,Europe/Paris,,STE, +STE:SP:OCETrainTER-87745620,1,"Gare de Perrignier",46.303286,6.424921,-1,0,SIN:SA:OCE87745620,Europe/Paris,,STE, +STE:SP:OCETrainTER-87745646,1,"Gare de Thonon-les-Bains",46.36898,6.481557,-1,0,SIN:SA:OCE87745646,Europe/Paris,,STE, +STE:SP:OCETrainTER-87745679,1,"Gare de Evian-les-Bains",46.397889,6.577472,-1,0,SIN:SA:OCE87745679,Europe/Paris,,STE, +STE:SP:OCETrainTER-87745828,1,"Gare de Seyssel-Corbonod",45.963063,5.831488,-1,0,STE:SA:OCE87745828,Europe/Paris,,STE, +STE:SP:OCETrainTER-87746008,1,"Gare de Annecy",45.902059,6.121819,-1,0,SIN:SA:OCE87746008,Europe/Paris,,STE, +STE:SP:OCETrainTER-87746107,1,"Gare de Grésy-sur-Aix",45.724505,5.922131,-1,0,STE:SA:OCE87746107,Europe/Paris,,STE, +STE:SP:OCETrainTER-87746115,1,"Gare de Albens",45.786133,5.948551,-1,0,SIN:SA:OCE87746115,Europe/Paris,,STE, +STE:SP:OCETrainTER-87746149,1,"Gare de Rumilly",45.863057,5.947954,-1,0,SIN:SA:OCE87746149,Europe/Paris,,STE, +STE:SP:OCETrainTER-87746206,1,"Gare de Pringy",45.939486,6.123372,-1,0,STE:SA:OCE87746206,Europe/Paris,,STE, +STE:SP:OCETrainTER-87746248,1,"Gare de Groisy-Thorens-la-Caill",46.011151,6.175761,-1,0,SIN:SA:OCE87746248,Europe/Paris,,STE, +STE:SP:OCETrainTER-87746305,1,"Gare de La Roche-sur-Foron",46.067671,6.303735,-1,0,SIN:SA:OCE87746305,Europe/Paris,,STE, +STE:SP:OCETrainTER-87746313,1,"Gare de St-Pierre-en-Faucigny",46.05934,6.375778,-1,0,STE:SA:OCE87746313,Europe/Paris,,STE, +STE:SP:OCETrainTER-87746339,1,"Gare de Bonneville",46.077714,6.416476,-1,0,SIN:SA:OCE87746339,Europe/Paris,,STE, +STE:SP:OCETrainTER-87746347,1,"Gare de Marignier",46.08879,6.507812,-1,0,STE:SA:OCE87746347,Europe/Paris,,STE, +STE:SP:OCETrainTER-87746370,1,"Gare de Cluses (Hte-Savoie)",46.061419,6.582681,-1,0,SIN:SA:OCE87746370,Europe/Paris,,STE, +STE:SP:OCETrainTER-87746412,1,"Gare de Magland",46.016926,6.621531,-1,0,STE:SA:OCE87746412,Europe/Paris,,STE, +STE:SP:OCETrainTER-87746438,1,"Gare de Sallanches-Comb.Megève",45.935669,6.636471,-1,0,SIN:SA:OCE87746438,Europe/Paris,,STE, +STE:SP:OCETrainTER-87746479,1,"Gare de St-Gervais-L-B-Le-Fayet",45.90647,6.700717,-1,0,SIN:SA:OCE87746479,Europe/Paris,,STE, +STE:SP:OCETrainTER-87746511,1,"Gare de Reignier",46.125618,6.267536,-1,0,SIN:SA:OCE87746511,Europe/Paris,,STE, +STE:SP:OCETrainTER-87746701,1,"Gare de Chedde",45.926309,6.719793,-1,0,STE:SA:OCE87746701,Europe/Paris,,STE, +STE:SP:OCETrainTER-87746719,1,"Gare de Servoz",45.924482,6.763484,-1,0,SIN:SA:OCE87746719,Europe/Paris,,STE, +STE:SP:OCETrainTER-87746727,1,"Gare de Vaudagne",45.90902,6.772588,-1,0,STE:SA:OCE87746727,Europe/Paris,,STE, +STE:SP:OCETrainTER-87746735,1,"Gare de Viaduc-Ste-Marie",45.897095,6.784993,-1,0,STE:SA:OCE87746735,Europe/Paris,,STE, +STE:SP:OCETrainTER-87746743,1,"Gare de Les Houches",45.893964,6.797387,-1,0,SIN:SA:OCE87746743,Europe/Paris,,STE, +STE:SP:OCETrainTER-87746750,1,"Gare de Taconnaz",45.89869,6.82423,-1,0,SIN:SA:OCE87746750,Europe/Paris,,STE, +STE:SP:OCETrainTER-87746768,1,"Gare de Les Bossons",45.906799,6.839171,-1,0,SIN:SA:OCE87746768,Europe/Paris,,STE, +STE:SP:OCETrainTER-87746776,1,"Gare de Les Pèlerins",45.912763,6.847743,-1,0,SIN:SA:OCE87746776,Europe/Paris,,STE, +STE:SP:OCETrainTER-87746784,1,"Gare de Chamonix-Mont-Blanc",45.922709,6.874271,-1,0,SIN:SA:OCE87746784,Europe/Paris,,STE, +STE:SP:OCETrainTER-87746818,1,"Gare de Les Moussoux",45.916717,6.859921,-1,0,SIN:SA:OCE87746818,Europe/Paris,,STE, +STE:SP:OCETrainTER-87746826,1,"Gare de Les Praz-de-Chamonix",45.939793,6.888603,-1,0,STE:SA:OCE87746826,Europe/Paris,,STE, +STE:SP:OCETrainTER-87746834,1,"Gare de Les Tines",45.950551,6.899135,-1,0,STE:SA:OCE87746834,Europe/Paris,,STE, +STE:SP:OCETrainTER-87746842,1,"Gare de Lajoux",45.964979,6.910236,-1,0,STE:SA:OCE87746842,Europe/Paris,,STE, +STE:SP:OCETrainTER-87746859,1,"Gare de Argentière (Hte-Savoie)",45.982009,6.926719,-1,0,STE:SA:OCE87746859,Europe/Paris,,STE, +STE:SP:OCETrainTER-87746867,1,"Gare de Montroc-le-Planet",45.996451,6.934551,-1,0,STE:SA:OCE87746867,Europe/Paris,,STE, +STE:SP:OCETrainTER-87746875,1,"Gare de Vallorcine",46.032673,6.93299,-1,0,STE:SA:OCE87746875,Europe/Paris,,STE, +STE:SP:OCETrainTER-87746883,1,"Gare de Le Buet",46.019163,6.920368,-1,0,STE:SA:OCE87746883,Europe/Paris,,STE, +STE:SP:OCETrainTER-87747006,1,"Gare de Grenoble",45.191463,5.71453,-1,0,SIN:SA:OCE87747006,Europe/Paris,,STE, +STE:SP:OCETrainTER-87747204,1,"Gare de Virieu-sur-Bourbre",45.484772,5.475453,-1,0,SIN:SA:OCE87747204,Europe/Paris,,STE, +STE:SP:OCETrainTER-87747212,1,"Gare de Chabons",45.438403,5.4281,-1,0,STE:SA:OCE87747212,Europe/Paris,,STE, +STE:SP:OCETrainTER-87747220,1,"Gare de Le Grand-Lemps",45.396678,5.423061,-1,0,STE:SA:OCE87747220,Europe/Paris,,STE, +STE:SP:OCETrainTER-87747246,1,"Gare de Rives",45.357595,5.491897,-1,0,STE:SA:OCE87747246,Europe/Paris,,STE, +STE:SP:OCETrainTER-87747279,1,"Gare de Réaumont-St-Cassien",45.368795,5.534865,-1,0,SIN:SA:OCE87747279,Europe/Paris,,STE, +STE:SP:OCETrainTER-87747287,1,"Gare de Voiron",45.364004,5.594911,-1,0,STE:SA:OCE87747287,Europe/Paris,,STE, +STE:SP:OCETrainTER-87747329,1,"Gare de Moirans",45.322146,5.58196,-1,0,SIN:SA:OCE87747329,Europe/Paris,,STE, +STE:SP:OCETrainTER-87747337,1,"Gare de Voreppe",45.290384,5.632118,-1,0,STE:SA:OCE87747337,Europe/Paris,,STE, +STE:SP:OCETrainTER-87747352,1,"Gare de St-Egrève-St-Robert",45.235693,5.671191,-1,0,STE:SA:OCE87747352,Europe/Paris,,STE, +STE:SP:OCETrainTER-87747402,1,"Gare de Grenoble U.-Gières",45.184903,5.784731,-1,0,STE:SA:OCE87747402,Europe/Paris,,STE, +STE:SP:OCETrainTER-87747451,1,"Gare de Brignoud",45.262462,5.901427,-1,0,STE:SA:OCE87747451,Europe/Paris,,STE, +STE:SP:OCETrainTER-87747477,1,"Gare de Goncelin",45.34196,5.974107,-1,0,STE:SA:OCE87747477,Europe/Paris,,STE, +STE:SP:OCETrainTER-87747493,1,"Gare de Pontcharra-sur-Bréda",45.434038,6.007793,-1,0,SIN:SA:OCE87747493,Europe/Paris,,STE, +STE:SP:OCETrainTER-87747519,1,"Gare de Pont-de-Claix",45.125173,5.699833,-1,0,STE:SA:OCE87747519,Europe/Paris,,STE, +STE:SP:OCETrainTER-87747535,1,"Gare de Jarrie-Vizille",45.085406,5.742256,-1,0,SIN:SA:OCE87747535,Europe/Paris,,STE, +STE:SP:OCETrainTER-87747568,1,"Gare de St-Georges-de-Commiers",45.043723,5.701176,-1,0,SIN:SA:OCE87747568,Europe/Paris,,STE, +STE:SP:OCETrainTER-87747576,1,"Gare de Vif",45.047648,5.68541,-1,0,SIN:SA:OCE87747576,Europe/Paris,,STE, +STE:SP:OCETrainTER-87747592,1,"Gare de Monestier-de-Clermont",44.912024,5.633945,-1,0,SIN:SA:OCE87747592,Europe/Paris,,STE, +STE:SP:OCETrainTER-87747626,1,"Gare de Clelles-Mens",44.827253,5.605012,-1,0,STE:SA:OCE87747626,Europe/Paris,,STE, +STE:SP:OCETrainTER-87747667,1,"Gare de Lus-la-Croix-Haute",44.671027,5.697367,-1,0,STE:SA:OCE87747667,Europe/Paris,,STE, +STE:SP:OCETrainTER-87747691,1,"Gare de Moirans-Galifette",45.323999,5.564966,-1,0,SIN:SA:OCE87747691,Europe/Paris,,STE, +STE:SP:OCETrainTER-87751008,1,"Gare de Marseille-St-Charles",43.30273,5.38065,-1,0,STE:SA:OCE87751008,Europe/Paris,,STE, +STE:SP:OCETrainTER-87751081,1,"Gare de Marseille-Blancarde",43.296203,5.406552,-1,0,STE:SA:OCE87751081,Europe/Paris,,STE, +STE:SP:OCETrainTER-87751206,1,"Gare de Sisteron",44.1902,5.946568,-1,0,STE:SA:OCE87751206,Europe/Paris,,STE, +STE:SP:OCETrainTER-87751230,1,"Gare de Château-Arnoux-St-Auban",44.061544,5.997307,-1,0,STE:SA:OCE87751230,Europe/Paris,,STE, +STE:SP:OCETrainTER-87751271,1,"Gare de La Brillanne-Oraison",43.924809,5.892255,-1,0,STE:SA:OCE87751271,Europe/Paris,,STE, +STE:SP:OCETrainTER-87751321,1,"Gare de Manosque-Gréoux",43.823415,5.794083,-1,0,STE:SA:OCE87751321,Europe/Paris,,STE, +STE:SP:OCETrainTER-87751362,1,"Gare de Pertuis",43.684579,5.503673,-1,0,STE:SA:OCE87751362,Europe/Paris,,STE, +STE:SP:OCETrainTER-87751370,1,"Gare de Meyrargues",43.644023,5.539562,-1,0,STE:SA:OCE87751370,Europe/Paris,,STE, +STE:SP:OCETrainTER-87751404,1,"Gare de Aix-en-Provence",43.522868,5.445323,-1,0,STE:SA:OCE87751404,Europe/Paris,,STE, +STE:SP:OCETrainTER-87751420,1,"Gare de Gardanne",43.456007,5.463322,-1,0,SIN:SA:OCE87751420,Europe/Paris,,STE, +STE:SP:OCETrainTER-87751438,1,"Gare de Simiane",43.434724,5.426011,-1,0,STE:SA:OCE87751438,Europe/Paris,,STE, +STE:SP:OCETrainTER-87751529,1,"Gare de L'Ariane-la-Trinité",43.734384,7.30245,-1,0,OZU:SA:CTP7155,Europe/Paris,,STE, +STE:SP:OCETrainTER-87751602,1,"Gare de L'Estaque",43.363625,5.321331,-1,0,STE:SA:OCE87751602,Europe/Paris,,STE, +STE:SP:OCETrainTER-87751636,1,"Gare de Séon-St-Henry",43.362416,5.339916,-1,0,STE:SA:OCE87751636,Europe/Paris,,STE, +STE:SP:OCETrainTER-87751701,1,"Gare de St-Marcel",43.28818,5.467118,-1,0,STE:SA:OCE87751701,Europe/Paris,,STE, +STE:SP:OCETrainTER-87751719,1,"Gare de La Pomme",43.290477,5.441256,-1,0,STE:SA:OCE87751719,Europe/Paris,,STE, +STE:SP:OCETrainTER-87751743,1,"Gare de La Penne-sur-Huveaune",43.284665,5.515512,-1,0,STE:SA:OCE87751743,Europe/Paris,,STE, +STE:SP:OCETrainTER-87751750,1,"Gare de Aubagne",43.296008,5.566448,-1,0,STE:SA:OCE87751750,Europe/Paris,,STE, +STE:SP:OCETrainTER-87751776,1,"Gare de Cassis",43.234034,5.553076,-1,0,STE:SA:OCE87751776,Europe/Paris,,STE, +STE:SP:OCETrainTER-87751784,1,"Gare de La Ciotat",43.19958,5.632668,-1,0,STE:SA:OCE87751784,Europe/Paris,,STE, +STE:SP:OCETrainTER-87751800,1,"Gare de Septèmes",43.403107,5.370134,-1,0,SIN:SA:OCE87751800,Europe/Paris,,STE, +STE:SP:OCETrainTER-87751826,1,"Gare de Saint-Antoine",43.369416,5.358095,-1,0,STE:SA:OCE87751826,Europe/Paris,,STE, +STE:SP:OCETrainTER-87751842,1,"Gare de Ste-Marthe-en-Provence",43.339269,5.390401,-1,0,SIN:SA:OCE87751842,Europe/Paris,,STE, +STE:SP:OCETrainTER-87753004,1,"Gare de Miramas",43.58074,4.999602,-1,0,STE:SA:OCE87753004,Europe/Paris,,STE, +STE:SP:OCETrainTER-87753202,1,"Gare de St-Chamas",43.551134,5.040248,-1,0,OMA:SA:CTP21067,Europe/Paris,,STE, +STE:SP:OCETrainTER-87753251,1,"Gare de Rognac",43.48662,5.230664,-1,0,OET:SA:CTP30361,Europe/Paris,,STE, +STE:SP:OCETrainTER-87753285,1,"Gare de Pas-des-Lanciers",43.409619,5.253824,-1,0,OET:SA:CTP30277,Europe/Paris,,STE, +STE:SP:OCETrainTER-87753418,1,"Gare de Istres",43.515376,4.980434,-1,0,STE:SA:OCE87753418,Europe/Paris,,STE, +STE:SP:OCETrainTER-87753426,1,"Gare de Rassuen",43.496627,4.973095,-1,0,STE:SA:OCE87753426,Europe/Paris,,STE, +STE:SP:OCETrainTER-87753442,1,"Gare de Fos-sur-Mer",43.428063,4.974578,-1,0,STE:SA:OCE87753442,Europe/Paris,,STE, +STE:SP:OCETrainTER-87753459,1,"Gare de Port-de-Bouc",43.407145,4.984603,-1,0,STE:SA:OCE87753459,Europe/Paris,,STE, +STE:SP:OCETrainTER-87753491,1,"Gare de Croix-Sainte",43.409101,5.019683,-1,0,STE:SA:OCE87753491,Europe/Paris,,STE, +STE:SP:OCETrainTER-87753509,1,"Gare de Martigues",43.392882,5.025755,-1,0,STE:SA:OCE87753509,Europe/Paris,,STE, +STE:SP:OCETrainTER-87753541,1,"Gare de La Couronne",43.339846,5.051725,-1,0,STE:SA:OCE87753541,Europe/Paris,,STE, +STE:SP:OCETrainTER-87753558,1,"Gare de Sausset-les-Pins",43.332858,5.109988,-1,0,STE:SA:OCE87753558,Europe/Paris,,STE, +STE:SP:OCETrainTER-87753566,1,"Gare de Carry-le-Rouet",43.336597,5.15369,-1,0,STE:SA:OCE87753566,Europe/Paris,,STE, +STE:SP:OCETrainTER-87753574,1,"Gare de La Redonne-Ensuès",43.334469,5.197562,-1,0,STE:SA:OCE87753574,Europe/Paris,,STE, +STE:SP:OCETrainTER-87753582,1,"Gare de Niolon",43.340195,5.256909,-1,0,STE:SA:OCE87753582,Europe/Paris,,STE, +STE:SP:OCETrainTER-87753657,1,"Gare de Arles",43.684844,4.632019,-1,0,SIN:SA:OCE87753657,Europe/Paris,,STE, +STE:SP:OCETrainTER-87753681,1,"Gare de St-Martin-de-Crau",43.622371,4.800275,-1,0,OM8:SA:CTP500563,Europe/Paris,,STE, +STE:SP:OCETrainTER-87753707,1,"Gare de Orgon",43.785912,5.045688,-1,0,SIN:SA:OCE87753707,Europe/Paris,,STE, +STE:SP:OCETrainTER-87753715,1,"Gare de Sénas",43.740965,5.073336,-1,0,SIN:SA:OCE87753715,Europe/Paris,,STE, +STE:SP:OCETrainTER-87753731,1,"Gare de Lamanon",43.699991,5.091304,-1,0,SIN:SA:OCE87753731,Europe/Paris,,STE, +STE:SP:OCETrainTER-87753764,1,"Gare de Salon",43.639064,5.088598,-1,0,STE:SA:OCE87753764,Europe/Paris,,STE, +STE:SP:OCETrainTER-87755009,1,"Gare de Toulon",43.128316,5.929458,-1,0,SIN:SA:OCE87755009,Europe/Paris,,STE, +STE:SP:OCETrainTER-87755215,1,"Gare de St-Cyr-les-Lecq.la-Cad.",43.185475,5.703802,-1,0,STE:SA:OCE87755215,Europe/Paris,,STE, +STE:SP:OCETrainTER-87755223,1,"Gare de Bandol",43.140333,5.750133,-1,0,STE:SA:OCE87755223,Europe/Paris,,STE, +STE:SP:OCETrainTER-87755231,1,"Gare de Ollioules-Sanary-S-Mer",43.122545,5.825034,-1,0,STE:SA:OCE87755231,Europe/Paris,,STE, +STE:SP:OCETrainTER-87755264,1,"Gare de La Seyne-Six-Fours",43.116968,5.876943,-1,0,STE:SA:OCE87755264,Europe/Paris,,STE, +STE:SP:OCETrainTER-87755306,1,"Gare de La Garde",43.118753,6.009977,-1,0,STE:SA:OCE87755306,Europe/Paris,,STE, +STE:SP:OCETrainTER-87755314,1,"Gare de La Pauline-Hyères",43.136247,6.03508,-1,0,STE:SA:OCE87755314,Europe/Paris,,STE, +STE:SP:OCETrainTER-87755330,1,"Gare de Solliès-Pont",43.190801,6.046249,-1,0,STE:SA:OCE87755330,Europe/Paris,,STE, +STE:SP:OCETrainTER-87755355,1,"Gare de Cuers-Pierrefeu",43.237723,6.08603,-1,0,STE:SA:OCE87755355,Europe/Paris,,STE, +STE:SP:OCETrainTER-87755363,1,"Gare de Puget-Ville",43.28315,6.138302,-1,0,STE:SA:OCE87755363,Europe/Paris,,STE, +STE:SP:OCETrainTER-87755371,1,"Gare de Carnoules",43.297533,6.186157,-1,0,STE:SA:OCE87755371,Europe/Paris,,STE, +STE:SP:OCETrainTER-87755389,1,"Gare de Pignans",43.298562,6.224817,-1,0,STE:SA:OCE87755389,Europe/Paris,,STE, +STE:SP:OCETrainTER-87755397,1,"Gare de Gonfaron",43.317212,6.281666,-1,0,STE:SA:OCE87755397,Europe/Paris,,STE, +STE:SP:OCETrainTER-87755405,1,"Gare de Le Luc-et-le-Cannet",43.390301,6.343011,-1,0,STE:SA:OCE87755405,Europe/Paris,,STE, +STE:SP:OCETrainTER-87755421,1,"Gare de Vidauban",43.430901,6.433704,-1,0,STE:SA:OCE87755421,Europe/Paris,,STE, +STE:SP:OCETrainTER-87755447,1,"Gare de Les Arcs-Draguignan",43.455729,6.482462,-1,0,SIN:SA:OCE87755447,Europe/Paris,,STE, +STE:SP:OCETrainTER-87755611,1,"Gare de La Crau",43.145155,6.068241,-1,0,STE:SA:OCE87755611,Europe/Paris,,STE, +STE:SP:OCETrainTER-87755629,1,"Gare de Hyères",43.108861,6.124199,-1,0,STE:SA:OCE87755629,Europe/Paris,,STE, +STE:SP:OCETrainTER-87756056,1,"Gare de Nice-Ville",43.704711,7.261786,-1,0,STE:SA:OCE87756056,Europe/Paris,,STE, +STE:SP:OCETrainTER-87756254,1,"Gare de Nice-St-Augustin",43.671043,7.21694,-1,0,STE:SA:OCE87756254,Europe/Paris,,STE, +STE:SP:OCETrainTER-87756304,1,"Gare de Villeneuve-Loubet-Plage",43.629985,7.134318,-1,0,STE:SA:OCE87756304,Europe/Paris,,STE, +STE:SP:OCETrainTER-87756320,1,"Gare de Cagnes-sur-Mer",43.65769,7.148161,-1,0,STE:SA:OCE87756320,Europe/Paris,,STE, +STE:SP:OCETrainTER-87756338,1,"Gare de Cros-de-Cagnes",43.660466,7.167112,-1,0,STE:SA:OCE87756338,Europe/Paris,,STE, +STE:SP:OCETrainTER-87756346,1,"Gare de St-Laurent-du-Var",43.662446,7.194471,-1,0,STE:SA:OCE87756346,Europe/Paris,,STE, +STE:SP:OCETrainTER-87756353,1,"Gare de Nice-Riquier",43.705702,7.290389,-1,0,STE:SA:OCE87756353,Europe/Paris,,STE, +STE:SP:OCETrainTER-87756361,1,"Gare de Villefranche-sur-Mer",43.707009,7.314303,-1,0,STE:SA:OCE87756361,Europe/Paris,,STE, +STE:SP:OCETrainTER-87756379,1,"Gare de Beaulieu-sur-Mer",43.706673,7.331569,-1,0,STE:SA:OCE87756379,Europe/Paris,,STE, +STE:SP:OCETrainTER-87756387,1,"Gare de Eze",43.722331,7.356986,-1,0,OZU:SA:CTP8057,Europe/Paris,,STE, +STE:SP:OCETrainTER-87756395,1,"Gare de Cap-d'Ail",43.720596,7.394439,-1,0,OZU:SA:CTP8055,Europe/Paris,,STE, +STE:SP:OCETrainTER-87756403,1,"Gare de Monaco-Monte-Carlo",43.738483,7.41967,-1,0,STE:SA:OCE87756403,Europe/Paris,,STE, +STE:SP:OCETrainTER-87756460,1,"Gare de Cap-Martin-Roquebrune",43.760723,7.457538,-1,0,STE:SA:OCE87756460,Europe/Paris,,STE, +STE:SP:OCETrainTER-87756478,1,"Gare de Carnolès",43.761986,7.481441,-1,0,STE:SA:OCE87756478,Europe/Paris,,STE, +STE:SP:OCETrainTER-87756486,1,"Gare de Menton",43.7744,7.493169,-1,0,STE:SA:OCE87756486,Europe/Paris,,STE, +STE:SP:OCETrainTER-87756494,1,"Gare de Menton-Garavan",43.785151,7.517272,-1,0,STE:SA:OCE87756494,Europe/Paris,,STE, +STE:SP:OCETrainTER-87756767,1,"Gare de La Trinité-Victor",43.742719,7.311786,-1,0,STE:SA:OCE87756767,Europe/Paris,,STE, +STE:SP:OCETrainTER-87756775,1,"Gare de Drap-Cantaron",43.759869,7.317076,-1,0,STE:SA:OCE87756775,Europe/Paris,,STE, +STE:SP:OCETrainTER-87756783,1,"Gare de Peillon-Ste-Thècle",43.767855,7.366858,-1,0,STE:SA:OCE87756783,Europe/Paris,,STE, +STE:SP:OCETrainTER-87756791,1,"Gare de Peille",43.791915,7.379805,-1,0,STE:SA:OCE87756791,Europe/Paris,,STE, +STE:SP:OCETrainTER-87756809,1,"Gare de L'Escarène",43.839703,7.351813,-1,0,STE:SA:OCE87756809,Europe/Paris,,STE, +STE:SP:OCETrainTER-87756817,1,"Gare de Touet-de-l'Escarène",43.847039,7.364373,-1,0,STE:SA:OCE87756817,Europe/Paris,,STE, +STE:SP:OCETrainTER-87756825,1,"Gare de Sospel",43.876577,7.45379,-1,0,STE:SA:OCE87756825,Europe/Paris,,STE, +STE:SP:OCETrainTER-87756833,1,"Gare de Breil-sur-Roya",43.943867,7.516296,-1,0,STE:SA:OCE87756833,Europe/Paris,,STE, +STE:SP:OCETrainTER-87757500,1,"Gare de Fréjus",43.432024,6.732934,-1,0,STE:SA:OCE87757500,Europe/Paris,,STE, +STE:SP:OCETrainTER-87757526,1,"Gare de St-Raphaël-Valescure",43.423606,6.769013,-1,0,SIN:SA:OCE87757526,Europe/Paris,,STE, +STE:SP:OCETrainTER-87757534,1,"Gare de Boulouris-sur-Mer",43.41634,6.807839,-1,0,STE:SA:OCE87757534,Europe/Paris,,STE, +STE:SP:OCETrainTER-87757542,1,"Gare de Le Dramont",43.417718,6.844313,-1,0,STE:SA:OCE87757542,Europe/Paris,,STE, +STE:SP:OCETrainTER-87757559,1,"Gare de Agay",43.431611,6.856696,-1,0,STE:SA:OCE87757559,Europe/Paris,,STE, +STE:SP:OCETrainTER-87757567,1,"Gare de Anthéor-Cap-Roux",43.434966,6.892228,-1,0,STE:SA:OCE87757567,Europe/Paris,,STE, +STE:SP:OCETrainTER-87757575,1,"Gare de Le Trayas",43.474586,6.924433,-1,0,STE:SA:OCE87757575,Europe/Paris,,STE, +STE:SP:OCETrainTER-87757583,1,"Gare de Théoule-sur-Mer",43.513447,6.936967,-1,0,STE:SA:OCE87757583,Europe/Paris,,STE, +STE:SP:OCETrainTER-87757591,1,"Gare de Mandelieu-la-Napoule",43.523885,6.941321,-1,0,STE:SA:OCE87757591,Europe/Paris,,STE, +STE:SP:OCETrainTER-87757617,1,"Gare de Cannes-la-Bocca",43.54881,6.986579,-1,0,STE:SA:OCE87757617,Europe/Paris,,STE, +STE:SP:OCETrainTER-87757625,1,"Gare de Cannes",43.553913,7.019725,-1,0,SIN:SA:OCE87757625,Europe/Paris,,STE, +STE:SP:OCETrainTER-87757641,1,"Gare de Golfe-Juan-Vallauris",43.566517,7.073633,-1,0,STE:SA:OCE87757641,Europe/Paris,,STE, +STE:SP:OCETrainTER-87757666,1,"Gare de Juan-les-Pins",43.570908,7.111508,-1,0,STE:SA:OCE87757666,Europe/Paris,,STE, +STE:SP:OCETrainTER-87757674,1,"Gare de Antibes",43.585789,7.119516,-1,0,SIN:SA:OCE87757674,Europe/Paris,,STE, +STE:SP:OCETrainTER-87757690,1,"Gare de Biot",43.610902,7.126244,-1,0,STE:SA:OCE87757690,Europe/Paris,,STE, +STE:SP:OCETrainTER-87757724,1,"Gare de Grasse",43.653328,6.925562,-1,0,STE:SA:OCE87757724,Europe/Paris,,STE, +STE:SP:OCETrainTER-87757732,1,"Gare de Ranguin",43.569258,6.969151,-1,0,STE:SA:OCE87757732,Europe/Paris,,STE, +STE:SP:OCETrainTER-87757740,1,"Gare de Frayère (la)",43.558125,6.971986,-1,0,STE:SA:OCE87757740,Europe/Paris,,STE, +STE:SP:OCETrainTER-87757757,1,"Gare de Bosquet (le)",43.551575,6.981518,-1,0,STE:SA:OCE87757757,Europe/Paris,,STE, +STE:SP:OCETrainTER-87759290,1,"Gare de Picon-Busserine.",43.331158,5.393258,-1,0,STE:SA:OCE87759290,Europe/Paris,,STE, +STE:SP:OCETrainTER-87759316,1,"Gare de St-Joseph-Le-Castellas.",43.352333,5.37462,-1,0,STE:SA:OCE87759316,Europe/Paris,,STE, +STE:SP:OCETrainTER-87761007,1,"Gare de Valence-Ville",44.92807,4.893295,-1,0,SIN:SA:OCE87761007,Europe/Paris,,STE, +STE:SP:OCETrainTER-87761106,1,"Gare de St-Rambert-d'Albon",45.297816,4.810625,-1,0,SIN:SA:OCE87761106,Europe/Paris,,STE, +STE:SP:OCETrainTER-87761130,1,"Gare de St-Vallier-sur-Rhône",45.185682,4.814339,-1,0,SIN:SA:OCE87761130,Europe/Paris,,STE, +STE:SP:OCETrainTER-87761163,1,"Gare de Tain",45.072181,4.839746,-1,0,SIN:SA:OCE87761163,Europe/Paris,,STE, +STE:SP:OCETrainTER-87761239,1,"Gare de L'Isle-d'Abeau",45.607621,5.219552,-1,0,STE:SA:OCE87761239,Europe/Paris,,STE, +STE:SP:OCETrainTER-87761247,1,"Gare de Livron",44.779597,4.830567,-1,0,STE:SA:OCE87761247,Europe/Paris,,STE, +STE:SP:OCETrainTER-87761262,1,"Gare de Loriol",44.754494,4.817237,-1,0,STE:SA:OCE87761262,Europe/Paris,,STE, +STE:SP:OCETrainTER-87761650,1,"Gare de Romans-Bourg-de-Péage",45.04886,5.049494,-1,0,SIN:SA:OCE87761650,Europe/Paris,,STE, +STE:SP:OCETrainTER-87761684,1,"Gare de St-Hilaire-St-Nazaire",45.071316,5.243843,-1,0,SIN:SA:OCE87761684,Europe/Paris,,STE, +STE:SP:OCETrainTER-87761718,1,"Gare de St-Marcellin",45.150897,5.323582,-1,0,SIN:SA:OCE87761718,Europe/Paris,,STE, +STE:SP:OCETrainTER-87761726,1,"Gare de Vinay",45.207932,5.410166,-1,0,SIN:SA:OCE87761726,Europe/Paris,,STE, +STE:SP:OCETrainTER-87761742,1,"Gare de Poliénas",45.255896,5.473763,-1,0,SIN:SA:OCE87761742,Europe/Paris,,STE, +STE:SP:OCETrainTER-87761759,1,"Gare de Tullins-Fures",45.300932,5.492143,-1,0,STE:SA:OCE87761759,Europe/Paris,,STE, +STE:SP:OCETrainTER-87761783,1,"Gare de Crest",44.730187,5.01611,-1,0,SIN:SA:OCE87761783,Europe/Paris,,STE, +STE:SP:OCETrainTER-87761817,1,"Gare de Saillans",44.694377,5.194175,-1,0,SIN:SA:OCE87761817,Europe/Paris,,STE, +STE:SP:OCETrainTER-87761841,1,"Gare de Die",44.758213,5.363257,-1,0,SIN:SA:OCE87761841,Europe/Paris,,STE, +STE:SP:OCETrainTER-87761874,1,"Gare de Luc-en-Diois",44.613687,5.454617,-1,0,SIN:SA:OCE87761874,Europe/Paris,,STE, +STE:SP:OCETrainTER-87763003,1,"Gare de Gap",44.563695,6.085684,-1,0,SIN:SA:OCE87763003,Europe/Paris,,STE, +STE:SP:OCETrainTER-87763029,1,"Gare de Valence-TGV",44.99137,4.978941,-1,0,SIN:SA:OCE87763029,Europe/Paris,,STE, +STE:SP:OCETrainTER-87763250,1,"Gare de Aspres-sur-Buech",44.519393,5.754555,-1,0,SIN:SA:OCE87763250,Europe/Paris,,STE, +STE:SP:OCETrainTER-87763300,1,"Gare de Veynes-Dévoluy",44.531997,5.815829,-1,0,SIN:SA:OCE87763300,Europe/Paris,,STE, +STE:SP:OCETrainTER-87763425,1,"Gare de Chorges",44.545705,6.272059,-1,0,SIN:SA:OCE87763425,Europe/Paris,,STE, +STE:SP:OCETrainTER-87763466,1,"Gare de Embrun",44.566954,6.496732,-1,0,SIN:SA:OCE87763466,Europe/Paris,,STE, +STE:SP:OCETrainTER-87763508,1,"Gare de Montdauphin-Guillestre",44.674596,6.615614,-1,0,SIN:SA:OCE87763508,Europe/Paris,,STE, +STE:SP:OCETrainTER-87763557,1,"Gare de L'Argentière-les-Ecrins",44.791,6.556405,-1,0,SIN:SA:OCE87763557,Europe/Paris,,STE, +STE:SP:OCETrainTER-87763607,1,"Gare de Briançon",44.889807,6.632947,-1,0,SIN:SA:OCE87763607,Europe/Paris,,STE, +STE:SP:OCETrainTER-87763722,1,"Gare de Serres",44.424647,5.718457,-1,0,STE:SA:OCE87763722,Europe/Paris,,STE, +STE:SP:OCETrainTER-87763755,1,"Gare de Laragne",44.316484,5.818934,-1,0,STE:SA:OCE87763755,Europe/Paris,,STE, +STE:SP:OCETrainTER-87764001,1,"Gare de Montélimar",44.559,4.74479,-1,0,STE:SA:OCE87764001,Europe/Paris,,STE, +STE:SP:OCETrainTER-87764290,1,"Gare de Donzère",44.442629,4.705126,-1,0,STE:SA:OCE87764290,Europe/Paris,,STE, +STE:SP:OCETrainTER-87764308,1,"Gare de Pierrelatte",44.374572,4.703759,-1,0,STE:SA:OCE87764308,Europe/Paris,,STE, +STE:SP:OCETrainTER-87764357,1,"Gare de Bollène-la-Croisière",44.271536,4.707954,-1,0,STE:SA:OCE87764357,Europe/Paris,,STE, +STE:SP:OCETrainTER-87765008,1,"Gare de Avignon-Centre",43.941877,4.805262,-1,0,SIN:SA:OCE87765008,Europe/Paris,,STE, +STE:SP:OCETrainTER-87765107,1,"Gare de Orange",44.137305,4.819495,-1,0,STE:SA:OCE87765107,Europe/Paris,,STE, +STE:SP:OCETrainTER-87765180,1,"Gare de Courthézon",44.089995,4.888176,-1,0,STE:SA:OCE87765180,Europe/Paris,,STE, +STE:SP:OCETrainTER-87765198,1,"Gare de Bédarrides",44.040764,4.893118,-1,0,STE:SA:OCE87765198,Europe/Paris,,STE, +STE:SP:OCETrainTER-87765206,1,"Gare de Sorgues-Chât.du-Pape",44.005417,4.87561,-1,0,STE:SA:OCE87765206,Europe/Paris,,STE, +STE:SP:OCETrainTER-87765354,1,"Gare de Tarascon-sur-Rhône",43.801122,4.657245,-1,0,OM8:SA:CTP500614,Europe/Paris,,STE, +STE:SP:OCETrainTER-87765412,1,"Gare de Montfavet",43.932632,4.873974,-1,0,SIN:SA:OCE87765412,Europe/Paris,,STE, +STE:SP:OCETrainTER-87765420,1,"Gare de Morières-lès-Avignon",43.941462,4.908204,-1,0,SIN:SA:OCE87765420,Europe/Paris,,STE, +STE:SP:OCETrainTER-87765438,1,"Gare de St-Saturnin-d'Avignon",43.953177,4.935293,-1,0,SIN:SA:OCE87765438,Europe/Paris,,STE, +STE:SP:OCETrainTER-87765446,1,"Gare de Gadagne",43.929678,4.956832,-1,0,SIN:SA:OCE87765446,Europe/Paris,,STE, +STE:SP:OCETrainTER-87765453,1,"Gare de Le Thor",43.926526,4.996277,-1,0,SIN:SA:OCE87765453,Europe/Paris,,STE, +STE:SP:OCETrainTER-87765479,1,"Gare de L'Isle-s-Sorgue - Font",43.917342,5.047601,-1,0,SIN:SA:OCE87765479,Europe/Paris,,STE, +STE:SP:OCETrainTER-87765503,1,"Gare de Cavaillon",43.834516,5.043653,-1,0,SIN:SA:OCE87765503,Europe/Paris,,STE, +STE:SP:OCETrainTER-87765735,1,"Gare de Carpentras",44.048779,5.045007,-1,0,STE:SA:OCE87765735,Europe/Paris,,STE, +STE:SP:OCETrainTER-87765818,1,"Gare de Monteux",44.037143,4.994408,-1,0,STE:SA:OCE87765818,Europe/Paris,,STE, +STE:SP:OCETrainTER-87765826,1,"Gare de Entraigues-S-La-Sorgue",44.005051,4.921381,-1,0,STE:SA:OCE87765826,Europe/Paris,,STE, +STE:SP:OCETrainTER-87773002,1,"Gare de Montpellier-Saint-Roch",43.605834,3.88236,-1,0,SIN:SA:OCE87773002,Europe/Paris,,STE, +STE:SP:OCETrainTER-87773200,1,"Gare de Sète",43.412812,3.696396,-1,0,SIN:SA:OCE87773200,Europe/Paris,,STE, +STE:SP:OCETrainTER-87773408,1,"Gare de Lunel",43.679515,4.130807,-1,0,SIN:SA:OCE87773408,Europe/Paris,,STE, +STE:SP:OCETrainTER-87773424,1,"Gare de Lunel-Viel",43.680939,4.093303,-1,0,STE:SA:OCE87773424,Europe/Paris,,STE, +STE:SP:OCETrainTER-87773432,1,"Gare de Valergues-Lansargues",43.672597,4.060222,-1,0,STE:SA:OCE87773432,Europe/Paris,,STE, +STE:SP:OCETrainTER-87773457,1,"Gare de Baillargues",43.653117,4.006689,-1,0,SIN:SA:OCE87773457,Europe/Paris,,STE, +STE:SP:OCETrainTER-87773465,1,"Gare de St-Aunès",43.635414,3.963109,-1,0,STE:SA:OCE87773465,Europe/Paris,,STE, +STE:SP:OCETrainTER-87773515,1,"Gare de Villeneuve-les-Maguel.",43.543451,3.849706,-1,0,STE:SA:OCE87773515,Europe/Paris,,STE, +STE:SP:OCETrainTER-87773531,1,"Gare de Vic-Mireval",43.500968,3.799585,-1,0,STE:SA:OCE87773531,Europe/Paris,,STE, +STE:SP:OCETrainTER-87773556,1,"Gare de Frontignan",43.444586,3.759015,-1,0,SIN:SA:OCE87773556,Europe/Paris,,STE, +STE:SP:OCETrainTER-87775007,1,"Gare de Nîmes",43.832293,4.365835,-1,0,SIN:SA:OCE87775007,Europe/Paris,,STE, +STE:SP:OCETrainTER-87775023,1,"Gare de Beaucaire",43.802161,4.647316,-1,0,STE:SA:OCE87775023,Europe/Paris,,STE, +STE:SP:OCETrainTER-87775064,1,"Gare de Manduel-Redessan",43.826462,4.478871,-1,0,STE:SA:OCE87775064,Europe/Paris,,STE, +STE:SP:OCETrainTER-87775072,1,"Gare de St-Césaire",43.813298,4.327669,-1,0,STE:SA:OCE87775072,Europe/Paris,,STE, +STE:SP:OCETrainTER-87775098,1,"Gare de Milhaud",43.788425,4.303066,-1,0,STE:SA:OCE87775098,Europe/Paris,,STE, +STE:SP:OCETrainTER-87775106,1,"Gare de Uchaud",43.758053,4.267369,-1,0,STE:SA:OCE87775106,Europe/Paris,,STE, +STE:SP:OCETrainTER-87775114,1,"Gare de Vergèze-Codognan",43.739817,4.218844,-1,0,SIN:SA:OCE87775114,Europe/Paris,,STE, +STE:SP:OCETrainTER-87775130,1,"Gare de Gallargues",43.71601,4.17104,-1,0,STE:SA:OCE87775130,Europe/Paris,,STE, +STE:SP:OCETrainTER-87775148,1,"Gare de Chasserades",44.553968,3.839677,-1,0,SIN:SA:OCE87775148,Europe/Paris,,STE, +STE:SP:OCETrainTER-87775171,1,"Gare de La Bastide-St-Laurent",44.592579,3.903854,-1,0,SIN:SA:OCE87775171,Europe/Paris,,STE, +STE:SP:OCETrainTER-87775197,1,"Gare de Villefort",44.43944,3.923321,-1,0,SIN:SA:OCE87775197,Europe/Paris,,STE, +STE:SP:OCETrainTER-87775213,1,"Gare de Génolhac",44.348018,3.951822,-1,0,SIN:SA:OCE87775213,Europe/Paris,,STE, +STE:SP:OCETrainTER-87775221,1,"Gare de Chamborigaud",44.300445,3.979253,-1,0,STE:SA:OCE87775221,Europe/Paris,,STE, +STE:SP:OCETrainTER-87775239,1,"Gare de Ste-Cécile-d'Andorge",44.255125,3.975671,-1,0,STE:SA:OCE87775239,Europe/Paris,,STE, +STE:SP:OCETrainTER-87775247,1,"Gare de La Levade",44.228296,4.01069,-1,0,STE:SA:OCE87775247,Europe/Paris,,STE, +STE:SP:OCETrainTER-87775254,1,"Gare de Grand-Combe-la-Pise",44.209949,4.033467,-1,0,SIN:SA:OCE87775254,Europe/Paris,,STE, +STE:SP:OCETrainTER-87775288,1,"Gare de Alès",44.128126,4.084779,-1,0,SIN:SA:OCE87775288,Europe/Paris,,STE, +STE:SP:OCETrainTER-87775346,1,"Gare de Boucoiran",43.992358,4.187634,-1,0,STE:SA:OCE87775346,Europe/Paris,,STE, +STE:SP:OCETrainTER-87775353,1,"Gare de Nozières-Brignon",43.975833,4.207393,-1,0,STE:SA:OCE87775353,Europe/Paris,,STE, +STE:SP:OCETrainTER-87775361,1,"Gare de St-Geniès-de-Malgoirès",43.950539,4.215112,-1,0,SIN:SA:OCE87775361,Europe/Paris,,STE, +STE:SP:OCETrainTER-87775379,1,"Gare de Fons-St-Mamert",43.907287,4.20663,-1,0,STE:SA:OCE87775379,Europe/Paris,,STE, +STE:SP:OCETrainTER-87775791,1,"Gare de Générac",43.732975,4.344145,-1,0,SIN:SA:OCE87775791,Europe/Paris,,STE, +STE:SP:OCETrainTER-87775809,1,"Gare de Beauvoisin",43.724939,4.322041,-1,0,STE:SA:OCE87775809,Europe/Paris,,STE, +STE:SP:OCETrainTER-87775817,1,"Gare de Vauvert",43.695314,4.270252,-1,0,SIN:SA:OCE87775817,Europe/Paris,,STE, +STE:SP:OCETrainTER-87775825,1,"Gare de Le Cailar",43.683192,4.234767,-1,0,SIN:SA:OCE87775825,Europe/Paris,,STE, +STE:SP:OCETrainTER-87775833,1,"Gare de Aimargues",43.678565,4.208202,-1,0,STE:SA:OCE87775833,Europe/Paris,,STE, +STE:SP:OCETrainTER-87775841,1,"Gare de St-Laurent-d'Aigouze",43.638913,4.192702,-1,0,SIN:SA:OCE87775841,Europe/Paris,,STE, +STE:SP:OCETrainTER-87775858,1,"Gare de Aigues-Mortes",43.571117,4.191107,-1,0,SIN:SA:OCE87775858,Europe/Paris,,STE, +STE:SP:OCETrainTER-87775866,1,"Gare de Le Grau-du-Roi",43.536582,4.140867,-1,0,SIN:SA:OCE87775866,Europe/Paris,,STE, +STE:SP:OCETrainTER-87781005,1,"Gare de Béziers",43.336225,3.219218,-1,0,SIN:SA:OCE87781005,Europe/Paris,,STE, +STE:SP:OCETrainTER-87781062,1,"Gare de Port-la-Nouvelle",43.020864,3.038805,-1,0,STE:SA:OCE87781062,Europe/Paris,,STE, +STE:SP:OCETrainTER-87781088,1,"Gare de Leucate-la-Franqui",42.932842,3.012747,-1,0,STE:SA:OCE87781088,Europe/Paris,,STE, +STE:SP:OCETrainTER-87781104,1,"Gare de Narbonne",43.191033,3.005956,-1,0,SIN:SA:OCE87781104,Europe/Paris,,STE, +STE:SP:OCETrainTER-87781161,1,"Gare de Coursan",43.233712,3.050866,-1,0,STE:SA:OCE87781161,Europe/Paris,,STE, +STE:SP:OCETrainTER-87781260,1,"Gare de Vias",43.315815,3.425592,-1,0,STE:SA:OCE87781260,Europe/Paris,,STE, +STE:SP:OCETrainTER-87781278,1,"Gare de Agde",43.317574,3.46602,-1,0,SIN:SA:OCE87781278,Europe/Paris,,STE, +STE:SP:OCETrainTER-87781294,1,"Gare de Marseillan-Plage",43.318277,3.535637,-1,0,STE:SA:OCE87781294,Europe/Paris,,STE, +STE:SP:OCETrainTER-87781534,1,"Gare de Montpaon",43.868025,3.10933,-1,0,STE:SA:OCE87781534,Europe/Paris,,STE, +STE:SP:OCETrainTER-87781542,1,"Gare de Ceilhes-Roqueredonde",43.812131,3.155299,-1,0,STE:SA:OCE87781542,Europe/Paris,,STE, +STE:SP:OCETrainTER-87781559,1,"Gare de Les Cabrils",43.778965,3.186163,-1,0,STE:SA:OCE87781559,Europe/Paris,,STE, +STE:SP:OCETrainTER-87781575,1,"Gare de Lunas",43.710023,3.194443,-1,0,STE:SA:OCE87781575,Europe/Paris,,STE, +STE:SP:OCETrainTER-87781583,1,"Gare de Le Bousquet-d'Orb",43.691547,3.168385,-1,0,STE:SA:OCE87781583,Europe/Paris,,STE, +STE:SP:OCETrainTER-87781609,1,"Gare de Bédarieux",43.607632,3.149005,-1,0,SIN:SA:OCE87781609,Europe/Paris,,STE, +STE:SP:OCETrainTER-87781666,1,"Gare de Magalas",43.467755,3.2295,-1,0,SIN:SA:OCE87781666,Europe/Paris,,STE, +STE:SP:OCETrainTER-87782607,1,"Gare de Clermont-la-Pardieu",45.766954,3.134207,-1,0,SIN:SA:OCE87782607,Europe/Paris,,STE, +STE:SP:OCETrainTER-87783001,1,"Gare de Millau",44.10187,3.074898,-1,0,SIN:SA:OCE87783001,Europe/Paris,,STE, +STE:SP:OCETrainTER-87783241,1,"Gare de St-Chély-d'Apcher",44.801701,3.270741,-1,0,SIN:SA:OCE87783241,Europe/Paris,,STE, +STE:SP:OCETrainTER-87783266,1,"Gare de Aumont-Aubrac",44.71814,3.283415,-1,0,SIN:SA:OCE87783266,Europe/Paris,,STE, +STE:SP:OCETrainTER-87783282,1,"Gare de Marvejols",44.544616,3.281048,-1,0,SIN:SA:OCE87783282,Europe/Paris,,STE, +STE:SP:OCETrainTER-87783290,1,"Gare de Chirac",44.52449,3.263838,-1,0,STE:SA:OCE87783290,Europe/Paris,,STE, +STE:SP:OCETrainTER-87783308,1,"Gare de Le Monastier",44.509002,3.252196,-1,0,SIN:SA:OCE87783308,Europe/Paris,,STE, +STE:SP:OCETrainTER-87783324,1,"Gare de Banassac-la-Canourgue",44.447642,3.19621,-1,0,SIN:SA:OCE87783324,Europe/Paris,,STE, +STE:SP:OCETrainTER-87783340,1,"Gare de Campagnac-St-Geniez",44.422134,3.06613,-1,0,STE:SA:OCE87783340,Europe/Paris,,STE, +STE:SP:OCETrainTER-87783365,1,"Gare de Séverac-D'Aveyron",44.325205,3.057387,-1,0,SIN:SA:OCE87783365,Europe/Paris,,STE, +STE:SP:OCETrainTER-87783423,1,"Gare de St-Georges-de-Luzençon",44.066024,2.983914,-1,0,STE:SA:OCE87783423,Europe/Paris,,STE, +STE:SP:OCETrainTER-87783431,1,"Gare de St-Rome-de-Cernon",44.014575,2.967617,-1,0,STE:SA:OCE87783431,Europe/Paris,,STE, +STE:SP:OCETrainTER-87783456,1,"Gare de Tournemire-Roquefort",43.969983,3.01658,-1,0,STE:SA:OCE87783456,Europe/Paris,,STE, +STE:SP:OCETrainTER-87783514,1,"Gare de Les Salelles",44.483093,3.279614,-1,0,STE:SA:OCE87783514,Europe/Paris,,STE, +STE:SP:OCETrainTER-87783530,1,"Gare de Chanac",44.473375,3.344954,-1,0,SIN:SA:OCE87783530,Europe/Paris,,STE, +STE:SP:OCETrainTER-87783548,1,"Gare de Le Bruel",44.481068,3.358169,-1,0,STE:SA:OCE87783548,Europe/Paris,,STE, +STE:SP:OCETrainTER-87783563,1,"Gare de Barjac",44.499357,3.410563,-1,0,SIN:SA:OCE87783563,Europe/Paris,,STE, +STE:SP:OCETrainTER-87783605,1,"Gare de Mende",44.522332,3.501908,-1,0,SIN:SA:OCE87783605,Europe/Paris,,STE, +STE:SP:OCETrainTER-87783647,1,"Gare de Bagnols-Chadenet",44.528315,3.628142,-1,0,SIN:SA:OCE87783647,Europe/Paris,,STE, +STE:SP:OCETrainTER-87783654,1,"Gare de Allenc",44.541673,3.664216,-1,0,SIN:SA:OCE87783654,Europe/Paris,,STE, +STE:SP:OCETrainTER-87783670,1,"Gare de Belvezet",44.561861,3.751881,-1,0,SIN:SA:OCE87783670,Europe/Paris,,STE, +STE:SP:OCETrainTER-87784009,1,"Gare de Perpignan",42.696075,2.879617,-1,0,SIN:SA:OCE87784009,Europe/Paris,,STE, +STE:SP:OCETrainTER-87784157,1,"Gare de Salses",42.835761,2.917553,-1,0,STE:SA:OCE87784157,Europe/Paris,,STE, +STE:SP:OCETrainTER-87784173,1,"Gare de Rivesaltes",42.76616,2.867815,-1,0,STE:SA:OCE87784173,Europe/Paris,,STE, +STE:SP:OCETrainTER-87784207,1,"Gare de Elne",42.597369,2.963521,-1,0,SIN:SA:OCE87784207,Europe/Paris,,STE, +STE:SP:OCETrainTER-87784231,1,"Gare de Argelès-sur-Mer",42.543951,3.0215,-1,0,SIN:SA:OCE87784231,Europe/Paris,,STE, +STE:SP:OCETrainTER-87784256,1,"Gare de Collioure",42.526892,3.078721,-1,0,SIN:SA:OCE87784256,Europe/Paris,,STE, +STE:SP:OCETrainTER-87784264,1,"Gare de Port-Vendres",42.513381,3.102386,-1,0,SIN:SA:OCE87784264,Europe/Paris,,STE, +STE:SP:OCETrainTER-87784298,1,"Gare de Banyuls-sur-Mer",42.482619,3.124411,-1,0,SIN:SA:OCE87784298,Europe/Paris,,STE, +STE:SP:OCETrainTER-87784512,1,"Gare de Le Soler",42.679556,2.800384,-1,0,STE:SA:OCE87784512,Europe/Paris,,STE, +STE:SP:OCETrainTER-87784520,1,"Gare de St-Féliu-d'Avall",42.67642,2.741318,-1,0,STE:SA:OCE87784520,Europe/Paris,,STE, +STE:SP:OCETrainTER-87784546,1,"Gare de Millas",42.688241,2.695483,-1,0,STE:SA:OCE87784546,Europe/Paris,,STE, +STE:SP:OCETrainTER-87784561,1,"Gare de Ille-sur-Têt",42.668483,2.624646,-1,0,STE:SA:OCE87784561,Europe/Paris,,STE, +STE:SP:OCETrainTER-87784611,1,"Gare de Vinça",42.64819,2.527605,-1,0,STE:SA:OCE87784611,Europe/Paris,,STE, +STE:SP:OCETrainTER-87784629,1,"Gare de Marquixanes",42.642958,2.485744,-1,0,STE:SA:OCE87784629,Europe/Paris,,STE, +STE:SP:OCETrainTER-87784637,1,"Gare de Prades-Molitg-les-Bains",42.617034,2.429361,-1,0,STE:SA:OCE87784637,Europe/Paris,,STE, +STE:SP:OCETrainTER-87784660,1,"Gare de Ria",42.603931,2.39268,-1,0,STE:SA:OCE87784660,Europe/Paris,,STE, +STE:SP:OCETrainTER-87784686,1,"Gare de Villefranche-Vernet-l.B",42.591468,2.370015,-1,0,STE:SA:OCE87784686,Europe/Paris,,STE, +STE:SP:OCETrainTER-87784702,1,"Gare de Serdinya",42.567048,2.32339,-1,0,STE:SA:OCE87784702,Europe/Paris,,STE, +STE:SP:OCETrainTER-87784710,1,"Gare de Joncet",42.561757,2.311354,-1,0,STE:SA:OCE87784710,Europe/Paris,,STE, +STE:SP:OCETrainTER-87784728,1,"Gare de Olette-Canaveilles-l.B.",42.554664,2.272553,-1,0,STE:SA:OCE87784728,Europe/Paris,,STE, +STE:SP:OCETrainTER-87784736,1,"Gare de Nyers",42.542267,2.262999,-1,0,STE:SA:OCE87784736,Europe/Paris,,STE, +STE:SP:OCETrainTER-87784744,1,"Gare de Thuès-les-Bains",42.529838,2.24909,-1,0,STE:SA:OCE87784744,Europe/Paris,,STE, +STE:SP:OCETrainTER-87784751,1,"Gare de Thuès-Carança",42.523606,2.22861,-1,0,STE:SA:OCE87784751,Europe/Paris,,STE, +STE:SP:OCETrainTER-87784769,1,"Gare de Fontpédrouse-St-Thomas",42.513871,2.190106,-1,0,STE:SA:OCE87784769,Europe/Paris,,STE, +STE:SP:OCETrainTER-87784777,1,"Gare de Sauto",42.5065,2.161085,-1,0,STE:SA:OCE87784777,Europe/Paris,,STE, +STE:SP:OCETrainTER-87784785,1,"Gare de Planès",42.501807,2.137062,-1,0,STE:SA:OCE87784785,Europe/Paris,,STE, +STE:SP:OCETrainTER-87784793,1,"Gare de Mont-Louis-la-Cabanasse",42.501977,2.114419,-1,0,STE:SA:OCE87784793,Europe/Paris,,STE, +STE:SP:OCETrainTER-87784801,1,"Gare de Bolquère-Eyne",42.497513,2.089077,-1,0,STE:SA:OCE87784801,Europe/Paris,,STE, +STE:SP:OCETrainTER-87784819,1,"Gare de Font-Romeu-Odeillo-Via",42.491307,2.039496,-1,0,STE:SA:OCE87784819,Europe/Paris,,STE, +STE:SP:OCETrainTER-87784827,1,"Gare de Estavar",42.463001,2.01922,-1,0,STE:SA:OCE87784827,Europe/Paris,,STE, +STE:SP:OCETrainTER-87784835,1,"Gare de Saillagouse",42.456796,2.031088,-1,0,STE:SA:OCE87784835,Europe/Paris,,STE, +STE:SP:OCETrainTER-87784843,1,"Gare de Err",42.443375,2.02831,-1,0,STE:SA:OCE87784843,Europe/Paris,,STE, +STE:SP:OCETrainTER-87784850,1,"Gare de Ste-Léocadie",42.441546,2.011168,-1,0,STE:SA:OCE87784850,Europe/Paris,,STE, +STE:SP:OCETrainTER-87784868,1,"Gare de Osséja",42.420133,1.97782,-1,0,STE:SA:OCE87784868,Europe/Paris,,STE, +STE:SP:OCETrainTER-87784876,1,"Gare de Bourg-Madame",42.43209,1.949313,-1,0,STE:SA:OCE87784876,Europe/Paris,,STE, +STE:SP:OCETrainTER-87784884,1,"Gare de Ur-les-Escaldes",42.456802,1.940746,-1,0,STE:SA:OCE87784884,Europe/Paris,,STE, +STE:SP:OCETrainTER-87784892,1,"Gare de Béna-Fanes",42.457981,1.918003,-1,0,STE:SA:OCE87784892,Europe/Paris,,STE, +STE:SP:OCETrainTER-87785006,1,"Gare de Cerbère",42.442764,3.165525,-1,0,SIN:SA:OCE87785006,Europe/Paris,,STE, diff --git a/flatisfy/data_files/stops_fr-sw.txt b/flatisfy/data_files/stops_fr-sw.txt new file mode 100644 index 0000000..5496133 --- /dev/null +++ b/flatisfy/data_files/stops_fr-sw.txt @@ -0,0 +1,18344 @@ +stop_id,visible,stop_name,stop_lat,stop_lon,zone_id,location_type,parent_station,stop_timezone,equipment_id,contributor_id,geometry_id +AEC:SA:00001,1,"Eglise",43.229617,0.940138,,1,,Europe/Paris,,AEC, +AEC:SA:00003,1,"Anan",43.356576,0.814151,,1,,Europe/Paris,,AEC, +AEC:SA:00006,1,"Brissan",42.977774,0.660975,,1,,Europe/Paris,,AEC, +AEC:SA:00008,1,"Pisciculture",42.828639,0.601287,,1,,Europe/Paris,,AEC, +AEC:SA:00010,1,"Village",42.826179,0.599901,,1,,Europe/Paris,,AEC, +AEC:SA:00012,1,"Ardiège",43.06963,0.643494,,1,,Europe/Paris,,AEC, +AEC:SA:00014,1,"Les Arpents",43.072856,0.647668,,1,,Europe/Paris,,AEC, +AEC:SA:00016,1,"Mairie",43.068751,0.643212,,1,,Europe/Paris,,AEC, +AEC:SA:00018,1,"Village",42.970739,0.723696,,1,,Europe/Paris,,AEC, +AEC:SA:00020,1,"Ecoles",42.891871,0.703067,,1,,Europe/Paris,,AEC, +AEC:SA:00022,1,"L'escalère",43.135461,0.919367,,1,,Europe/Paris,,AEC, +AEC:SA:00023,1,"Collège",43.021841,0.793898,,1,,Europe/Paris,,AEC, +AEC:SA:00025,1,"Fontanière",43.020828,0.796201,,1,,Europe/Paris,,AEC, +AEC:SA:00031,1,"Mairie",43.015047,0.803451,,1,,Europe/Paris,,AEC, +AEC:SA:00033,1,"Cadène",43.661029,1.431484,,1,,Europe/Paris,,AEC, +AEC:SA:00035,1,"Lacourtensourt",43.671505,1.426998,,1,,Europe/Paris,,AEC, +AEC:SA:00038,1,"Mairie",43.667808,1.429229,,1,,Europe/Paris,,AEC, +AEC:SA:00041,1,"Payen",43.673164,1.42601,,1,,Europe/Paris,,AEC, +AEC:SA:00048,1,"Place",43.191214,0.820456,,1,,Europe/Paris,,AEC, +AEC:SA:00050,1,"En Ramière",43.525931,1.833558,,1,,Europe/Paris,,AEC, +AEC:SA:00052,1,"La Rouquette",43.52335,1.804351,,1,,Europe/Paris,,AEC, +AEC:SA:00054,1,"Vendinelle",43.525466,1.826053,,1,,Europe/Paris,,AEC, +AEC:SA:00055,1,"Poste",43.216037,0.883217,,1,,Europe/Paris,,AEC, +AEC:SA:00058,1,"Castelvert",43.546159,1.698495,,1,,Europe/Paris,,AEC, +AEC:SA:00060,1,"Rue des écoles",43.08355,0.594306,,1,,Europe/Paris,,AEC, +AEC:SA:00062,1,"Rue des Serres",43.092636,0.585185,,1,,Europe/Paris,,AEC, +AEC:SA:00064,1,"Beauregard",43.670258,1.33742,,1,,Europe/Paris,,AEC, +AEC:SA:00066,1,"Cague l'Oule",43.676747,1.322056,,1,,Europe/Paris,,AEC, +AEC:SA:00068,1,"Chalets",43.665751,1.340967,,1,,Europe/Paris,,AEC, +AEC:SA:00074,1,"Grésine",43.696296,1.319801,,1,,Europe/Paris,,AEC, +AEC:SA:00076,1,"Lac",43.680375,1.315679,,1,,Europe/Paris,,AEC, +AEC:SA:00080,1,"Periac",43.671604,1.322625,,1,,Europe/Paris,,AEC, +AEC:SA:00086,1,"République",43.683629,1.320228,,1,,Europe/Paris,,AEC, +AEC:SA:00088,1,"Cimetière",43.355851,1.478171,,1,,Europe/Paris,,AEC, +AEC:SA:00091,1,"Gare SNCF",43.349196,1.468769,,1,,Europe/Paris,,AEC, +AEC:SA:00093,1,"Gendarmerie",43.346489,1.473424,,1,,Europe/Paris,,AEC, +AEC:SA:00095,1,"Hirondelles",43.350589,1.467554,,1,,Europe/Paris,,AEC, +AEC:SA:00097,1,"Le Bouet",43.334956,1.484381,,1,,Europe/Paris,,AEC, +AEC:SA:00099,1,"Pelletant",43.352143,1.47716,,1,,Europe/Paris,,AEC, +AEC:SA:00101,1,"Grand chemin",43.528069,1.48976,,1,,Europe/Paris,,AEC, +AEC:SA:00103,1,"Lycée agricole",43.53446,1.484781,,1,,Europe/Paris,,AEC, +AEC:SA:00105,1,"Moulin Armand",43.531089,1.487351,,1,,Europe/Paris,,AEC, +AEC:SA:00107,1,"Crouzet",43.536533,1.557902,,1,,Europe/Paris,,AEC, +AEC:SA:00109,1,"Le Broc",43.531974,1.574011,,1,,Europe/Paris,,AEC, +AEC:SA:00112,1,"Les bourrasses",43.369451,1.774781,,1,,Europe/Paris,,AEC, +AEC:SA:00114,1,"Mairie",43.36636,1.784269,,1,,Europe/Paris,,AEC, +AEC:SA:00115,1,"Monplaisir",43.373649,1.762979,,1,,Europe/Paris,,AEC, +AEC:SA:00117,1,"St-Brice",43.379893,1.747308,,1,,Europe/Paris,,AEC, +AEC:SA:00119,1,"Collège",43.436778,1.59831,,1,,Europe/Paris,,AEC, +AEC:SA:00120,1,"Ticaille",43.447501,1.597024,,1,,Europe/Paris,,AEC, +AEC:SA:00125,1,"Passage à niveau",42.897818,0.625539,,1,,Europe/Paris,,AEC, +AEC:SA:00127,1,"Cimetière",42.976396,0.625489,,1,,Europe/Paris,,AEC, +AEC:SA:00129,1,"Bernadous",42.806374,0.596847,,1,,Europe/Paris,,AEC, +AEC:SA:00130,1,"Eglise",42.791295,0.59132,,1,,Europe/Paris,,AEC, +AEC:SA:00131,1,"Gare",42.797454,0.596431,,1,,Europe/Paris,,AEC, +AEC:SA:00134,1,"Gramont",43.628673,1.482513,,1,,Europe/Paris,,AEC, +AEC:SA:00135,1,"Lasbordes",43.594376,1.497565,,1,,Europe/Paris,,AEC, +AEC:SA:00137,1,"Montels",43.586446,1.52187,,1,,Europe/Paris,,AEC, +AEC:SA:00139,1,"Nollet",43.589957,1.512592,,1,,Europe/Paris,,AEC, +AEC:SA:00141,1,"Ribaute",43.588975,1.516006,,1,,Europe/Paris,,AEC, +AEC:SA:00143,1,"St Anne",43.593426,1.50425,,1,,Europe/Paris,,AEC, +AEC:SA:00145,1,"Gendarmerie",43.032905,0.621448,,1,,Europe/Paris,,AEC, +AEC:SA:00147,1,"Bellevue",43.443117,1.643697,,1,,Europe/Paris,,AEC, +AEC:SA:00149,1,"Ecoles",43.453831,1.613121,,1,,Europe/Paris,,AEC, +AEC:SA:00151,1,"Engoudes",43.451045,1.610863,,1,,Europe/Paris,,AEC, +AEC:SA:00155,1,"Grande Rue",43.454689,1.617155,,1,,Europe/Paris,,AEC, +AEC:SA:00157,1,"Las Puntos",43.44985,1.60886,,1,,Europe/Paris,,AEC, +AEC:SA:00159,1,"Le Rivel",43.460994,1.598757,,1,,Europe/Paris,,AEC, +AEC:SA:00161,1,"Le Visenq",43.451715,1.626183,,1,,Europe/Paris,,AEC, +AEC:SA:00163,1,"Poste",43.454964,1.613763,,1,,Europe/Paris,,AEC, +AEC:SA:00165,1,"Pradettes",43.457611,1.605914,,1,,Europe/Paris,,AEC, +AEC:SA:00167,1,"Eglise",43.107791,0.868551,,1,,Europe/Paris,,AEC, +AEC:SA:00169,1,"Le Baron",43.110544,0.866611,,1,,Europe/Paris,,AEC, +AEC:SA:00171,1,"Aujoulets",43.404356,1.369283,,1,,Europe/Paris,,AEC, +AEC:SA:00173,1,"Château de Beaumont",43.38242,1.345596,,1,,Europe/Paris,,AEC, +AEC:SA:00176,1,"Escloupère",43.389203,1.350375,,1,,Europe/Paris,,AEC, +AEC:SA:00178,1,"La Trivalle",43.398796,1.362495,,1,,Europe/Paris,,AEC, +AEC:SA:00181,1,"Pellepoix",43.393743,1.356538,,1,,Europe/Paris,,AEC, +AEC:SA:00183,1,"Vignolles",43.384769,1.347786,,1,,Europe/Paris,,AEC, +AEC:SA:00185,1,"Mairie",43.646146,1.554353,,1,,Europe/Paris,,AEC, +AEC:SA:00187,1,"Labarraque",43.352138,1.741079,,1,,Europe/Paris,,AEC, +AEC:SA:00189,1,"Château d'eau",43.467988,1.773525,,1,,Europe/Paris,,AEC, +AEC:SA:00192,1,"Nizac",43.469835,1.780509,,1,,Europe/Paris,,AEC, +AEC:SA:00194,1,"Barricou",43.662722,1.372791,,1,,Europe/Paris,,AEC, +AEC:SA:00196,1,"Carrière",43.65793,1.375893,,1,,Europe/Paris,,AEC, +AEC:SA:00198,1,"Centre Commercial",43.670041,1.367631,,1,,Europe/Paris,,AEC, +AEC:SA:00201,1,"Maille",43.511058,1.568808,,1,,Europe/Paris,,AEC, +AEC:SA:00203,1,"Mairie",43.507694,1.56901,,1,,Europe/Paris,,AEC, +AEC:SA:00205,1,"Paradis",43.505475,1.567585,,1,,Europe/Paris,,AEC, +AEC:SA:00207,1,"Baque",43.394953,1.189977,,1,,Europe/Paris,,AEC, +AEC:SA:00209,1,"Canalette",43.399155,1.191138,,1,,Europe/Paris,,AEC, +AEC:SA:00211,1,"Cap Debat",43.387009,1.186594,,1,,Europe/Paris,,AEC, +AEC:SA:00213,1,"Cap Debat 2",43.391134,1.188198,,1,,Europe/Paris,,AEC, +AEC:SA:00215,1,"Centre",43.378915,1.177442,,1,,Europe/Paris,,AEC, +AEC:SA:00216,1,"Chemin du Prat",43.36993,1.168443,,1,,Europe/Paris,,AEC, +AEC:SA:00218,1,"Cité des Jardins",43.371341,1.170046,,1,,Europe/Paris,,AEC, +AEC:SA:00220,1,"Coume",43.384709,1.184806,,1,,Europe/Paris,,AEC, +AEC:SA:00222,1,"Mairie",43.379475,1.176675,,1,,Europe/Paris,,AEC, +AEC:SA:00224,1,"BERTREN Nord",43.003242,0.61453,,1,,Europe/Paris,,AEC, +AEC:SA:00226,1,"BERTREN Sud",42.994934,0.621493,,1,,Europe/Paris,,AEC, +AEC:SA:00228,1,"Centre",42.999217,0.618098,,1,,Europe/Paris,,AEC, +AEC:SA:00231,1,"Barrèses",43.809515,1.569776,,1,,Europe/Paris,,AEC, +AEC:SA:00234,1,"C.Pitchou",43.797814,1.611801,,1,,Europe/Paris,,AEC, +AEC:SA:00236,1,"Esplanade",43.799949,1.607396,,1,,Europe/Paris,,AEC, +AEC:SA:00237,1,"Le Triangle",43.8084,1.568699,,1,,Europe/Paris,,AEC, +AEC:SA:00239,1,"Les Friques",43.795149,1.578548,,1,,Europe/Paris,,AEC, +AEC:SA:00241,1,"Mazade",43.801044,1.601842,,1,,Europe/Paris,,AEC, +AEC:SA:00243,1,"Plaisance",43.801002,1.591787,,1,,Europe/Paris,,AEC, +AEC:SA:00245,1,"Taillefer",43.800475,1.583014,,1,,Europe/Paris,,AEC, +AEC:SA:00247,1,"Aéroconstellation",43.66303,1.363107,,1,,Europe/Paris,,AEC, +AEC:SA:00249,1,"Aéroport René Rey",43.63612,1.375357,,1,,Europe/Paris,,AEC, +AEC:SA:00250,1,"Aéroport Toulouse Blagnac",43.631738,1.375112,,1,,Europe/Paris,,AEC, +AEC:SA:00253,1,"Buxtéhude",43.648899,1.382357,,1,,Europe/Paris,,AEC, +AEC:SA:00254,1,"Dewoitine",43.627117,1.384577,,1,,Europe/Paris,,AEC, +AEC:SA:00256,1,"F.Mitterrand",43.65501,1.37786,,1,,Europe/Paris,,AEC, +AEC:SA:00258,1,"Lagardère",43.654094,1.360895,,1,,Europe/Paris,,AEC, +AEC:SA:00260,1,"M. Dassault",43.641338,1.368993,,1,,Europe/Paris,,AEC, +AEC:SA:00263,1,"Place Alain Savary (Lycée)",43.654647,1.374583,,1,,Europe/Paris,,AEC, +AEC:SA:00265,1,"Route de Cornebarrieu",43.645496,1.365591,,1,,Europe/Paris,,AEC, +AEC:SA:00267,1,"Cité Bellevue",43.259513,0.651479,,1,,Europe/Paris,,AEC, +AEC:SA:00269,1,"La Tuilerie",43.260185,0.66713,,1,,Europe/Paris,,AEC, +AEC:SA:00271,1,"Mairie",43.25962,0.642821,,1,,Europe/Paris,,AEC, +AEC:SA:00273,1,"Ecole",43.839902,1.54097,,1,,Europe/Paris,,AEC, +AEC:SA:00275,1,"Vernhes",43.840514,1.526992,,1,,Europe/Paris,,AEC, +AEC:SA:00276,1,"Guignerou",43.548806,1.149913,,1,,Europe/Paris,,AEC, +AEC:SA:00277,1,"La Goutte",43.545942,1.153421,,1,,Europe/Paris,,AEC, +AEC:SA:00280,1,"Tourneris",43.546373,1.170569,,1,,Europe/Paris,,AEC, +AEC:SA:00281,1,"Village",43.546449,1.14899,,1,,Europe/Paris,,AEC, +AEC:SA:00283,1,"RD 75a / Ecole",43.110683,0.634867,,1,,Europe/Paris,,AEC, +AEC:SA:00285,1,"Betinats",43.814087,1.421101,,1,,Europe/Paris,,AEC, +AEC:SA:00287,1,"Brugues",43.793079,1.414405,,1,,Europe/Paris,,AEC, +AEC:SA:00291,1,"Fombertier",43.783335,1.408616,,1,,Europe/Paris,,AEC, +AEC:SA:00294,1,"La Nauze",43.78341,1.422949,,1,,Europe/Paris,,AEC, +AEC:SA:00296,1,"La Tuilerie",43.781977,1.408354,,1,,Europe/Paris,,AEC, +AEC:SA:00298,1,"Le Mas de Coppelia",43.782363,1.411949,,1,,Europe/Paris,,AEC, +AEC:SA:00300,1,"Les Aynats",43.783424,1.429929,,1,,Europe/Paris,,AEC, +AEC:SA:00302,1,"Les Gourgues",43.798703,1.412417,,1,,Europe/Paris,,AEC, +AEC:SA:00305,1,"Mairie",43.781674,1.405281,,1,,Europe/Paris,,AEC, +AEC:SA:00306,1,"Mougnet",43.787661,1.411638,,1,,Europe/Paris,,AEC, +AEC:SA:00308,1,"Praynets",43.796585,1.406544,,1,,Europe/Paris,,AEC, +AEC:SA:00312,1,"Vieux stade",43.777895,1.405737,,1,,Europe/Paris,,AEC, +AEC:SA:00313,1,"Collège",43.291169,0.648259,,1,,Europe/Paris,,AEC, +AEC:SA:00315,1,"HLM",43.286191,0.65011,,1,,Europe/Paris,,AEC, +AEC:SA:00318,1,"Nizors",43.268843,0.652034,,1,,Europe/Paris,,AEC, +AEC:SA:00319,1,"Eglise",43.602808,1.712327,,1,,Europe/Paris,,AEC, +AEC:SA:00323,1,"Mairie",43.599844,1.712908,,1,,Europe/Paris,,AEC, +AEC:SA:00327,1,"Barrail",43.174604,0.96707,,1,,Europe/Paris,,AEC, +AEC:SA:00329,1,"Estarac",43.163136,0.95993,,1,,Europe/Paris,,AEC, +AEC:SA:00331,1,"Lalanne",43.176604,0.968415,,1,,Europe/Paris,,AEC, +AEC:SA:00333,1,"Sansonnet",43.167812,0.963026,,1,,Europe/Paris,,AEC, +AEC:SA:00334,1,"Ecole",43.482066,1.070167,,1,,Europe/Paris,,AEC, +AEC:SA:00336,1,"Mairie-Eglise",43.482879,1.070583,,1,,Europe/Paris,,AEC, +AEC:SA:00338,1,"Pourcet",43.489344,1.086299,,1,,Europe/Paris,,AEC, +AEC:SA:00340,1,"Le Bouet",43.707108,1.198213,,1,,Europe/Paris,,AEC, +AEC:SA:00341,1,"Village",43.764356,1.033638,,1,,Europe/Paris,,AEC, +AEC:SA:00343,1,"Ecoles",43.723341,1.40957,,1,,Europe/Paris,,AEC, +AEC:SA:00345,1,"Gamouna",43.721543,1.407298,,1,,Europe/Paris,,AEC, +AEC:SA:00347,1,"La Côte",43.732468,1.41513,,1,,Europe/Paris,,AEC, +AEC:SA:00349,1,"Mairie",43.726982,1.411674,,1,,Europe/Paris,,AEC, +AEC:SA:00352,1,"Al Cros",43.779132,1.626214,,1,,Europe/Paris,,AEC, +AEC:SA:00354,1,"Cimetière",43.782066,1.628972,,1,,Europe/Paris,,AEC, +AEC:SA:00357,1,"Les Luquets",43.758369,1.616461,,1,,Europe/Paris,,AEC, +AEC:SA:00359,1,"Parro",43.776433,1.634026,,1,,Europe/Paris,,AEC, +AEC:SA:00361,1,"Pigeron",43.772333,1.626623,,1,,Europe/Paris,,AEC, +AEC:SA:00363,1,"Sayers",43.752413,1.609309,,1,,Europe/Paris,,AEC, +AEC:SA:00365,1,"Eglise",43.034205,0.74005,,1,,Europe/Paris,,AEC, +AEC:SA:00366,1,"Village",43.793014,1.034357,,1,,Europe/Paris,,AEC, +AEC:SA:00368,1,"Cadeillan",43.420632,0.852649,,1,,Europe/Paris,,AEC, +AEC:SA:00370,1,"En Bernadas",43.433274,0.846486,,1,,Europe/Paris,,AEC, +AEC:SA:00372,1,"Collège",43.72853,1.050387,,1,,Europe/Paris,,AEC, +AEC:SA:00374,1,"La Halle",43.728995,1.048589,,1,,Europe/Paris,,AEC, +AEC:SA:00375,1,"Souleilla des Moulins",43.321355,1.711296,,1,,Europe/Paris,,AEC, +AEC:SA:00377,1,"Canelles",43.285553,1.632268,,1,,Europe/Paris,,AEC, +AEC:SA:00378,1,"Fortanier",43.289364,1.601654,,1,,Europe/Paris,,AEC, +AEC:SA:00380,1,"Gilis",43.290843,1.58768,,1,,Europe/Paris,,AEC, +AEC:SA:00382,1,"Mairie",43.284331,1.635525,,1,,Europe/Paris,,AEC, +AEC:SA:00384,1,"Maison de retraite",43.287108,1.62579,,1,,Europe/Paris,,AEC, +AEC:SA:00386,1,"la Huguerie",43.465423,1.181155,,1,,Europe/Paris,,AEC, +AEC:SA:00388,1,"Les Galiers",43.450674,1.191687,,1,,Europe/Paris,,AEC, +AEC:SA:00390,1,"11-nov-18",43.47466,1.180809,,1,,Europe/Paris,,AEC, +AEC:SA:00393,1,"Le Pont",43.341155,1.258272,,1,,Europe/Paris,,AEC, +AEC:SA:00397,1,"Coopérative",43.525397,1.770649,,1,,Europe/Paris,,AEC, +AEC:SA:00398,1,"Cours Alsace Lorraine",43.5311,1.755808,,1,,Europe/Paris,,AEC, +AEC:SA:00399,1,"Briquetterie",43.534768,1.746916,,1,,Europe/Paris,,AEC, +AEC:SA:00401,1,"Le Colombier",43.535961,1.741916,,1,,Europe/Paris,,AEC, +AEC:SA:00403,1,"Mairie",43.529411,1.760874,,1,,Europe/Paris,,AEC, +AEC:SA:00405,1,"Château d'eau",43.305163,1.224169,,1,,Europe/Paris,,AEC, +AEC:SA:00407,1,"Avenue de Toulouse",43.300691,1.224903,,1,,Europe/Paris,,AEC, +AEC:SA:00409,1,"Collège",43.306822,1.229325,,1,,Europe/Paris,,AEC, +AEC:SA:00412,1,"Jardin Public",43.29591,1.225144,,1,,Europe/Paris,,AEC, +AEC:SA:00414,1,"La Barre",43.296304,1.217828,,1,,Europe/Paris,,AEC, +AEC:SA:00416,1,"La Guinguette",43.304938,1.227651,,1,,Europe/Paris,,AEC, +AEC:SA:00418,1,"La Terrasse",43.28882,1.20584,,1,,Europe/Paris,,AEC, +AEC:SA:00420,1,"Ecoles",43.520647,1.495735,,1,,Europe/Paris,,AEC, +AEC:SA:00422,1,"Eglise",43.516745,1.498112,,1,,Europe/Paris,,AEC, +AEC:SA:00427,1,"Péries",43.512854,1.500521,,1,,Europe/Paris,,AEC, +AEC:SA:00429,1,"Peupliers",43.52336,1.494395,,1,,Europe/Paris,,AEC, +AEC:SA:00431,1,"Camilong",43.695931,1.450552,,1,,Europe/Paris,,AEC, +AEC:SA:00433,1,"Clotilde",43.692042,1.450686,,1,,Europe/Paris,,AEC, +AEC:SA:00435,1,"Grazidou",43.686228,1.45084,,1,,Europe/Paris,,AEC, +AEC:SA:00437,1,"La Grange",43.699641,1.429833,,1,,Europe/Paris,,AEC, +AEC:SA:00439,1,"Pont-Viel",43.691688,1.427103,,1,,Europe/Paris,,AEC, +AEC:SA:00441,1,"Mairie",43.6773,1.532914,,1,,Europe/Paris,,AEC, +AEC:SA:00443,1,"Rouergue",43.675623,1.528358,,1,,Europe/Paris,,AEC, +AEC:SA:00445,1,"Route d'Albi",43.679713,1.538338,,1,,Europe/Paris,,AEC, +AEC:SA:00447,1,"Avenue de Toulouse",43.771358,1.358537,,1,,Europe/Paris,,AEC, +AEC:SA:00449,1,"Bordeneuve",43.788418,1.346859,,1,,Europe/Paris,,AEC, +AEC:SA:00451,1,"Boulbènes",43.786323,1.353293,,1,,Europe/Paris,,AEC, +AEC:SA:00456,1,"Embalens",43.795625,1.335143,,1,,Europe/Paris,,AEC, +AEC:SA:00458,1,"Eurocentre Nord",43.769143,1.360938,,1,,Europe/Paris,,AEC, +AEC:SA:00459,1,"Gare",43.786295,1.342201,,1,,Europe/Paris,,AEC, +AEC:SA:00464,1,"L'Ourmède",43.780563,1.36019,,1,,Europe/Paris,,AEC, +AEC:SA:00466,1,"Mairie",43.783778,1.357262,,1,,Europe/Paris,,AEC, +AEC:SA:00468,1,"Péradère",43.775396,1.359068,,1,,Europe/Paris,,AEC, +AEC:SA:00470,1,"Route d'Ondes - Gare",43.788109,1.343126,,1,,Europe/Paris,,AEC, +AEC:SA:00472,1,"Apas",43.130612,0.918475,,1,,Europe/Paris,,AEC, +AEC:SA:00474,1,"En Hourquet",43.718882,1.062651,,1,,Europe/Paris,,AEC, +AEC:SA:00476,1,"Village",43.714069,1.0851,,1,,Europe/Paris,,AEC, +AEC:SA:00478,1,"Village",43.299417,1.470169,,1,,Europe/Paris,,AEC, +AEC:SA:00479,1,"Les Escoumes",42.984802,0.7305,,1,,Europe/Paris,,AEC, +AEC:SA:00481,1,"Pont",42.984701,0.731064,,1,,Europe/Paris,,AEC, +AEC:SA:00483,1,"Village",42.867706,0.607164,,1,,Europe/Paris,,AEC, +AEC:SA:00486,1,"Collbato",43.203224,1.08592,,1,,Europe/Paris,,AEC, +AEC:SA:00488,1,"Jean Jaurès",43.205378,1.08398,,1,,Europe/Paris,,AEC, +AEC:SA:00490,1,"Labrioulette",43.209823,1.092232,,1,,Europe/Paris,,AEC, +AEC:SA:00495,1,"La Corvette",43.7505,1.424078,,1,,Europe/Paris,,AEC, +AEC:SA:00499,1,"Mesturel",43.74004,1.427865,,1,,Europe/Paris,,AEC, +AEC:SA:00501,1,"Mairie",43.750166,1.432297,,1,,Europe/Paris,,AEC, +AEC:SA:00503,1,"Route de Labastide",43.748076,1.432915,,1,,Europe/Paris,,AEC, +AEC:SA:00505,1,"Trillou",43.761631,1.441898,,1,,Europe/Paris,,AEC, +AEC:SA:00507,1,"19-mars-62",43.748959,1.429604,,1,,Europe/Paris,,AEC, +AEC:SA:00510,1,"Saspis",42.932794,0.656422,,1,,Europe/Paris,,AEC, +AEC:SA:00513,1,"Village",42.937381,0.652077,,1,,Europe/Paris,,AEC, +AEC:SA:00514,1,"Centre",43.259913,0.736452,,1,,Europe/Paris,,AEC, +AEC:SA:00516,1,"Castéra",42.852911,0.602894,,1,,Europe/Paris,,AEC, +AEC:SA:00519,1,"Comminges",43.062413,0.636537,,1,,Europe/Paris,,AEC, +AEC:SA:00521,1,"Las Verdures",43.055469,0.634757,,1,,Europe/Paris,,AEC, +AEC:SA:00525,1,"Cité Douanes",42.914579,0.645838,,1,,Europe/Paris,,AEC, +AEC:SA:00527,1,"Gendarmerie",42.921766,0.640446,,1,,Europe/Paris,,AEC, +AEC:SA:00532,1,"Guilhem",43.318974,1.502518,,1,,Europe/Paris,,AEC, +AEC:SA:00535,1,"Le Port",43.308043,1.553689,,1,,Europe/Paris,,AEC, +AEC:SA:00537,1,"Les Baccarets",43.312495,1.511116,,1,,Europe/Paris,,AEC, +AEC:SA:00538,1,"Les Plaines",43.321952,1.499012,,1,,Europe/Paris,,AEC, +AEC:SA:00540,1,"Les Salvaignous",43.327486,1.49264,,1,,Europe/Paris,,AEC, +AEC:SA:00542,1,"Mairie",43.313821,1.532628,,1,,Europe/Paris,,AEC, +AEC:SA:00544,1,"Picarrou",43.293629,1.572294,,1,,Europe/Paris,,AEC, +AEC:SA:00547,1,"4 Chemins",43.309325,1.536203,,1,,Europe/Paris,,AEC, +AEC:SA:00549,1,"Clarac",43.098637,0.626577,,1,,Europe/Paris,,AEC, +AEC:SA:00551,1,"Gare Centre",43.604496,1.334873,,1,,Europe/Paris,,AEC, +AEC:SA:00560,1,"La Buette",43.650535,1.340718,,1,,Europe/Paris,,AEC, +AEC:SA:00562,1,"La Pendule",43.658446,1.324401,,1,,Europe/Paris,,AEC, +AEC:SA:00564,1,"Latécoère",43.650487,1.333576,,1,,Europe/Paris,,AEC, +AEC:SA:00565,1,"Les Cèdres",43.659304,1.311718,,1,,Europe/Paris,,AEC, +AEC:SA:00567,1,"RD1 Mourlas",43.652684,1.327917,,1,,Europe/Paris,,AEC, +AEC:SA:00569,1,"Pont",43.203535,1.088666,,1,,Europe/Paris,,AEC, +AEC:SA:00571,1,"Village",43.200837,1.088934,,1,,Europe/Paris,,AEC, +AEC:SA:00573,1,"Babonneau",43.683584,1.274903,,1,,Europe/Paris,,AEC, +AEC:SA:00575,1,"Chemin des Châteaux",43.693188,1.268352,,1,,Europe/Paris,,AEC, +AEC:SA:00577,1,"Saint-Roch",43.68768,1.272713,,1,,Europe/Paris,,AEC, +AEC:SA:00579,1,"Stade",43.692362,1.25885,,1,,Europe/Paris,,AEC, +AEC:SA:00581,1,"Amandiers",43.484124,1.527926,,1,,Europe/Paris,,AEC, +AEC:SA:00582,1,"Le Moulin",43.479904,1.526294,,1,,Europe/Paris,,AEC, +AEC:SA:00586,1,"Les Violettes",43.486907,1.53117,,1,,Europe/Paris,,AEC, +AEC:SA:00588,1,"Mairie",43.473331,1.551165,,1,,Europe/Paris,,AEC, +AEC:SA:00590,1,"Beaupuy",43.599566,1.626054,,1,,Europe/Paris,,AEC, +AEC:SA:00592,1,"Hameau de Lafage",43.578911,1.599811,,1,,Europe/Paris,,AEC, +AEC:SA:00594,1,"Lafage",43.577392,1.602936,,1,,Europe/Paris,,AEC, +AEC:SA:00600,1,"Mairie",43.754841,1.099772,,1,,Europe/Paris,,AEC, +AEC:SA:00604,1,"La Croix Blanche 2",43.424166,1.360801,,1,,Europe/Paris,,AEC, +AEC:SA:00605,1,"La Croix Rouge",43.430828,1.349574,,1,,Europe/Paris,,AEC, +AEC:SA:00607,1,"La Guinguette",43.433233,1.378743,,1,,Europe/Paris,,AEC, +AEC:SA:00609,1,"La Source",43.412445,1.372382,,1,,Europe/Paris,,AEC, +AEC:SA:00611,1,"Moulin d'Augé",43.420662,1.373678,,1,,Europe/Paris,,AEC, +AEC:SA:00614,1,"Plaine du Pitou",43.428332,1.354117,,1,,Europe/Paris,,AEC, +AEC:SA:00616,1,"Route de Muret",43.426468,1.357388,,1,,Europe/Paris,,AEC, +AEC:SA:00617,1,"Mairie-Ecole",43.530409,1.087745,,1,,Europe/Paris,,AEC, +AEC:SA:00619,1,"Thermes",43.049252,0.741742,,1,,Europe/Paris,,AEC, +AEC:SA:00621,1,"Borde Haute",43.513762,1.55626,,1,,Europe/Paris,,AEC, +AEC:SA:00624,1,"La Bruyère",43.512048,1.560118,,1,,Europe/Paris,,AEC, +AEC:SA:00625,1,"La Cousquille",43.518106,1.5465,,1,,Europe/Paris,,AEC, +AEC:SA:00626,1,"La Tour",43.510699,1.56369,,1,,Europe/Paris,,AEC, +AEC:SA:00628,1,"Lauragais",43.515778,1.552313,,1,,Europe/Paris,,AEC, +AEC:SA:00630,1,"Troubadours",43.525912,1.539739,,1,,Europe/Paris,,AEC, +AEC:SA:00632,1,"Las Bordes",43.281938,0.733141,,1,,Europe/Paris,,AEC, +AEC:SA:00634,1,"Lane",42.95164,0.637514,,1,,Europe/Paris,,AEC, +AEC:SA:00636,1,"Mairie",42.946902,0.641187,,1,,Europe/Paris,,AEC, +AEC:SA:00638,1,"Pont de Chaum",42.938455,0.645051,,1,,Europe/Paris,,AEC, +AEC:SA:00640,1,"Géry",42.926049,0.676831,,1,,Europe/Paris,,AEC, +AEC:SA:00647,1,"Mazurié",43.683805,1.40666,,1,,Europe/Paris,,AEC, +AEC:SA:00648,1,"Plaine",43.671403,1.410591,,1,,Europe/Paris,,AEC, +AEC:SA:00649,1,"Saint Gobain",43.677696,1.408609,,1,,Europe/Paris,,AEC, +AEC:SA:00651,1,"Eglise",43.084698,0.898012,,1,,Europe/Paris,,AEC, +AEC:SA:00653,1,"Les Mourères",43.095948,0.914939,,1,,Europe/Paris,,AEC, +AEC:SA:00655,1,"Moussard",43.586971,1.579517,,1,,Europe/Paris,,AEC, +AEC:SA:00656,1,"Les Pins",43.675276,1.424449,,1,,Europe/Paris,,AEC, +AEC:SA:00658,1,"Raude-Lauzette",43.678495,1.422734,,1,,Europe/Paris,,AEC, +AEC:SA:00660,1,"Banayre",43.543112,1.217068,,1,,Europe/Paris,,AEC, +AEC:SA:00662,1,"Bénech",43.533323,1.226306,,1,,Europe/Paris,,AEC, +AEC:SA:00665,1,"Cantegraille",43.529454,1.215345,,1,,Europe/Paris,,AEC, +AEC:SA:00667,1,"Eole",43.535869,1.226218,,1,,Europe/Paris,,AEC, +AEC:SA:00669,1,"Cimetière",43.539946,1.235956,,1,,Europe/Paris,,AEC, +AEC:SA:00672,1,"11 Novembre 1918",43.53593,1.229782,,1,,Europe/Paris,,AEC, +AEC:SA:00675,1,"Parking Lycée C. Royer",43.52861,1.208426,,1,,Europe/Paris,,AEC, +AEC:SA:00677,1,"Petit Quinquin",43.540442,1.222805,,1,,Europe/Paris,,AEC, +AEC:SA:00679,1,"Pyrénées",43.538139,1.224279,,1,,Europe/Paris,,AEC, +AEC:SA:00683,1,"Berdoulet Ouest",43.564355,1.21351,,1,,Europe/Paris,,AEC, +AEC:SA:00686,1,"Bordeneuve",43.565689,1.195738,,1,,Europe/Paris,,AEC, +AEC:SA:00688,1,"Genets 1",43.568117,1.200107,,1,,Europe/Paris,,AEC, +AEC:SA:00689,1,"La bourdette",43.563508,1.206362,,1,,Europe/Paris,,AEC, +AEC:SA:00692,1,"Lalanne",43.544965,1.190586,,1,,Europe/Paris,,AEC, +AEC:SA:00695,1,"Lascrabères",43.554661,1.191917,,1,,Europe/Paris,,AEC, +AEC:SA:00697,1,"Mairie",43.552862,1.191227,,1,,Europe/Paris,,AEC, +AEC:SA:00699,1,"Pascau",43.569144,1.233015,,1,,Europe/Paris,,AEC, +AEC:SA:00701,1,"08-mai-45",43.557704,1.192927,,1,,Europe/Paris,,AEC, +AEC:SA:00703,1,"Mairie",42.872112,0.73617,,1,,Europe/Paris,,AEC, +AEC:SA:00705,1,"Borde Haute",43.507439,1.606304,,1,,Europe/Paris,,AEC, +AEC:SA:00707,1,"Centre",43.503104,1.614778,,1,,Europe/Paris,,AEC, +AEC:SA:00709,1,"Cimetière Saint-Pierre",43.499252,1.622086,,1,,Europe/Paris,,AEC, +AEC:SA:00711,1,"La Douce",43.490895,1.642448,,1,,Europe/Paris,,AEC, +AEC:SA:00713,1,"Le Paradis",43.504429,1.612502,,1,,Europe/Paris,,AEC, +AEC:SA:00715,1,"Tiffaut",43.494616,1.632967,,1,,Europe/Paris,,AEC, +AEC:SA:00717,1,"Le Moulin",43.581727,1.751372,,1,,Europe/Paris,,AEC, +AEC:SA:00719,1,"Monument aux morts",42.952013,0.648416,,1,,Europe/Paris,,AEC, +AEC:SA:00721,1,"Campardon",42.965043,0.660098,,1,,Europe/Paris,,AEC, +AEC:SA:00723,1,"Gendarmerie",43.832713,1.391605,,1,,Europe/Paris,,AEC, +AEC:SA:00725,1,"Les 4 chemins",43.822788,1.396829,,1,,Europe/Paris,,AEC, +AEC:SA:00727,1,"Lycée",43.834462,1.40079,,1,,Europe/Paris,,AEC, +AEC:SA:00729,1,"Mairie",43.840225,1.3889,,1,,Europe/Paris,,AEC, +AEC:SA:00730,1,"Parking Lycée",43.834796,1.402261,,1,,Europe/Paris,,AEC, +AEC:SA:00732,1,"Poste",43.83875,1.392294,,1,,Europe/Paris,,AEC, +AEC:SA:00734,1,"St Roch",43.838316,1.388611,,1,,Europe/Paris,,AEC, +AEC:SA:00737,1,"Mairie",43.254047,1.470978,,1,,Europe/Paris,,AEC, +AEC:SA:00739,1,"RN125",42.990133,0.625058,,1,,Europe/Paris,,AEC, +AEC:SA:00741,1,"La Vierge",43.39196,1.684603,,1,,Europe/Paris,,AEC, +AEC:SA:00743,1,"Laval",43.399428,1.676202,,1,,Europe/Paris,,AEC, +AEC:SA:00751,1,"Poids Public",43.390563,1.684717,,1,,Europe/Paris,,AEC, +AEC:SA:00753,1,"Eglise",43.756343,1.467008,,1,,Europe/Paris,,AEC, +AEC:SA:00755,1,"Les Bordes",43.76494,1.455855,,1,,Europe/Paris,,AEC, +AEC:SA:00757,1,"Moussiagues",43.748777,1.470384,,1,,Europe/Paris,,AEC, +AEC:SA:00759,1,"Cité",43.703664,1.560683,,1,,Europe/Paris,,AEC, +AEC:SA:00761,1,"Eglise",43.711642,1.560748,,1,,Europe/Paris,,AEC, +AEC:SA:00763,1,"Montvert",43.695045,1.552772,,1,,Europe/Paris,,AEC, +AEC:SA:00766,1,"Mairie",43.61028,1.641953,,1,,Europe/Paris,,AEC, +AEC:SA:00770,1,"Mairie",43.735181,1.591071,,1,,Europe/Paris,,AEC, +AEC:SA:00772,1,"Mairie",42.9996,0.672591,,1,,Europe/Paris,,AEC, +AEC:SA:00774,1,"Labesse",43.232934,1.156787,,1,,Europe/Paris,,AEC, +AEC:SA:00776,1,"Lavoir",43.216652,1.131491,,1,,Europe/Paris,,AEC, +AEC:SA:00777,1,"Le Plan d'Eau",43.208617,1.120196,,1,,Europe/Paris,,AEC, +AEC:SA:00778,1,"Calvaire",43.305103,1.690809,,1,,Europe/Paris,,AEC, +AEC:SA:00780,1,"Antian",43.072416,0.585296,,1,,Europe/Paris,,AEC, +AEC:SA:00785,1,"Lycée",43.077083,0.584369,,1,,Europe/Paris,,AEC, +AEC:SA:00787,1,"Mairie",43.077783,0.577144,,1,,Europe/Paris,,AEC, +AEC:SA:00789,1,"Poste",43.081165,0.574473,,1,,Europe/Paris,,AEC, +AEC:SA:00791,1,"Eglise",43.681631,1.584172,,1,,Europe/Paris,,AEC, +AEC:SA:00793,1,"Giratoire RD7",43.321081,1.123704,,1,,Europe/Paris,,AEC, +AEC:SA:00794,1,"Mairie",43.322077,1.112322,,1,,Europe/Paris,,AEC, +AEC:SA:00796,1,"Pilot",43.322227,1.124383,,1,,Europe/Paris,,AEC, +AEC:SA:00799,1,"Garenne",43.716458,1.432536,,1,,Europe/Paris,,AEC, +AEC:SA:00800,1,"Le Barry",43.71332,1.430884,,1,,Europe/Paris,,AEC, +AEC:SA:00802,1,"Poste",43.722118,1.431332,,1,,Europe/Paris,,AEC, +AEC:SA:00804,1,"Rabet",43.315893,1.455286,,1,,Europe/Paris,,AEC, +AEC:SA:00807,1,"Bagnols",43.769079,1.333212,,1,,Europe/Paris,,AEC, +AEC:SA:00809,1,"Bains Romains",43.763091,1.33102,,1,,Europe/Paris,,AEC, +AEC:SA:00815,1,"Mairie",43.769853,1.29517,,1,,Europe/Paris,,AEC, +AEC:SA:00817,1,"Maison de Retraite",43.770339,1.290708,,1,,Europe/Paris,,AEC, +AEC:SA:00819,1,"Mélican",43.765817,1.297341,,1,,Europe/Paris,,AEC, +AEC:SA:00820,1,"Picalou",43.755893,1.213219,,1,,Europe/Paris,,AEC, +AEC:SA:00822,1,"Proxima",43.75628,1.302197,,1,,Europe/Paris,,AEC, +AEC:SA:00823,1,"Quai de Garonne",43.771633,1.296748,,1,,Europe/Paris,,AEC, +AEC:SA:00825,1,"Rouanel",43.760256,1.331021,,1,,Europe/Paris,,AEC, +AEC:SA:00827,1,"Saint-Caprais",43.758339,1.331772,,1,,Europe/Paris,,AEC, +AEC:SA:00829,1,"Saint-Sulpice",43.760127,1.300031,,1,,Europe/Paris,,AEC, +AEC:SA:00832,1,"Baget",43.401049,1.449946,,1,,Europe/Paris,,AEC, +AEC:SA:00834,1,"Gaillard-Tournié",43.39051,1.457223,,1,,Europe/Paris,,AEC, +AEC:SA:00837,1,"Mazérat",43.394696,1.454365,,1,,Europe/Paris,,AEC, +AEC:SA:00838,1,"Poste",43.404225,1.44876,,1,,Europe/Paris,,AEC, +AEC:SA:00840,1,"La Halle",43.827345,1.296662,,1,,Europe/Paris,,AEC, +AEC:SA:00842,1,"Artigueplan",42.884948,0.616485,,1,,Europe/Paris,,AEC, +AEC:SA:00844,1,"Eglise",43.015521,0.753582,,1,,Europe/Paris,,AEC, +AEC:SA:00846,1,"Eglise",42.978228,0.759916,,1,,Europe/Paris,,AEC, +AEC:SA:00849,1,"La Rouyasse",43.80586,1.545896,,1,,Europe/Paris,,AEC, +AEC:SA:00851,1,"Les 5 Chemins",43.815372,1.538233,,1,,Europe/Paris,,AEC, +AEC:SA:00853,1,"Mairie",43.81156,1.543869,,1,,Europe/Paris,,AEC, +AEC:SA:00861,1,"L'Apothicaire",43.569163,1.242815,,1,,Europe/Paris,,AEC, +AEC:SA:00863,1,"Le Grand Bois 3",43.574361,1.253704,,1,,Europe/Paris,,AEC, +AEC:SA:00870,1,"Mairie",43.577514,1.272332,,1,,Europe/Paris,,AEC, +AEC:SA:00872,1,"Stade",43.576603,1.261081,,1,,Europe/Paris,,AEC, +AEC:SA:00874,1,"Taure",43.582961,1.276627,,1,,Europe/Paris,,AEC, +AEC:SA:00876,1,"Centre",43.081008,0.670524,,1,,Europe/Paris,,AEC, +AEC:SA:00882,1,"Souc",43.084051,0.681038,,1,,Europe/Paris,,AEC, +AEC:SA:00884,1,"Cailhabat",43.461359,1.397144,,1,,Europe/Paris,,AEC, +AEC:SA:00886,1,"Croix du Mitrac",43.450571,1.401064,,1,,Europe/Paris,,AEC, +AEC:SA:00888,1,"Eglise",43.452185,1.399038,,1,,Europe/Paris,,AEC, +AEC:SA:00889,1,"La Riverotte",43.457055,1.416096,,1,,Europe/Paris,,AEC, +AEC:SA:00891,1,"La Ruque",43.467776,1.397727,,1,,Europe/Paris,,AEC, +AEC:SA:00893,1,"Le Canton",43.454135,1.394534,,1,,Europe/Paris,,AEC, +AEC:SA:00895,1,"Ponchou",43.457205,1.395811,,1,,Europe/Paris,,AEC, +AEC:SA:00897,1,"Prouzet",43.444521,1.384278,,1,,Europe/Paris,,AEC, +AEC:SA:00899,1,"Ritou",43.445266,1.398611,,1,,Europe/Paris,,AEC, +AEC:SA:00901,1,"Le Pas du Merle",43.484318,1.659802,,1,,Europe/Paris,,AEC, +AEC:SA:00903,1,"Mairie",43.482085,1.665926,,1,,Europe/Paris,,AEC, +AEC:SA:00905,1,"Oiseaux",43.482977,1.66345,,1,,Europe/Paris,,AEC, +AEC:SA:00907,1,"Bidot",43.356032,1.088778,,1,,Europe/Paris,,AEC, +AEC:SA:00908,1,"Eglise",43.348741,1.121932,,1,,Europe/Paris,,AEC, +AEC:SA:00910,1,"Le Moulin",43.361838,1.116641,,1,,Europe/Paris,,AEC, +AEC:SA:00912,1,"Cité",43.734883,1.476515,,1,,Europe/Paris,,AEC, +AEC:SA:00915,1,"Eglise",43.739313,1.471227,,1,,Europe/Paris,,AEC, +AEC:SA:00917,1,"Le Not",43.737017,1.476085,,1,,Europe/Paris,,AEC, +AEC:SA:00919,1,"L'Enclos",43.736724,1.468506,,1,,Europe/Paris,,AEC, +AEC:SA:00920,1,"Maurel",43.735175,1.459598,,1,,Europe/Paris,,AEC, +AEC:SA:00922,1,"Route de Gargas",43.741098,1.469222,,1,,Europe/Paris,,AEC, +AEC:SA:00924,1,"Banque",43.462833,1.247323,,1,,Europe/Paris,,AEC, +AEC:SA:00926,1,"La Carrère",43.466276,1.250288,,1,,Europe/Paris,,AEC, +AEC:SA:00928,1,"Mairie",43.460372,1.245201,,1,,Europe/Paris,,AEC, +AEC:SA:00930,1,"Marcus",43.45499,1.240884,,1,,Europe/Paris,,AEC, +AEC:SA:00933,1,"Chantecaille",43.528177,1.537679,,1,,Europe/Paris,,AEC, +AEC:SA:00935,1,"Chêne Vert",43.540386,1.523619,,1,,Europe/Paris,,AEC, +AEC:SA:00937,1,"La Grande Borde",43.554569,1.506062,,1,,Europe/Paris,,AEC, +AEC:SA:00939,1,"Lalande (Innopole)",43.548722,1.513285,,1,,Europe/Paris,,AEC, +AEC:SA:00941,1,"Payssière",43.533739,1.532212,,1,,Europe/Paris,,AEC, +AEC:SA:00943,1,"Eglise",43.038416,0.592406,,1,,Europe/Paris,,AEC, +AEC:SA:00945,1,"Moulin",43.036047,0.592993,,1,,Europe/Paris,,AEC, +AEC:SA:00947,1,"Poste",43.041744,0.592347,,1,,Europe/Paris,,AEC, +AEC:SA:00953,1,"Mairie",43.299854,1.16358,,1,,Europe/Paris,,AEC, +AEC:SA:00955,1,"Notre Dame",43.301823,1.167367,,1,,Europe/Paris,,AEC, +AEC:SA:00956,1,"Village",43.345142,1.713741,,1,,Europe/Paris,,AEC, +AEC:SA:00958,1,"Balsa",43.404033,1.394496,,1,,Europe/Paris,,AEC, +AEC:SA:00960,1,"Cimetière",43.409815,1.390893,,1,,Europe/Paris,,AEC, +AEC:SA:00962,1,"Puntis",43.437154,1.378506,,1,,Europe/Paris,,AEC, +AEC:SA:00964,1,"Ravelins",43.413198,1.388365,,1,,Europe/Paris,,AEC, +AEC:SA:00966,1,"Berny",43.345015,1.430109,,1,,Europe/Paris,,AEC, +AEC:SA:00968,1,"Château Lamothe",43.499042,1.24661,,1,,Europe/Paris,,AEC, +AEC:SA:00970,1,"Ecoles",43.484124,1.243156,,1,,Europe/Paris,,AEC, +AEC:SA:00972,1,"Fougarouse",43.492638,1.245651,,1,,Europe/Paris,,AEC, +AEC:SA:00974,1,"Le Petit Pierre",43.488878,1.246497,,1,,Europe/Paris,,AEC, +AEC:SA:00976,1,"Moundas",43.47738,1.259398,,1,,Europe/Paris,,AEC, +AEC:SA:00978,1,"Rue de la paix",43.48337,1.244031,,1,,Europe/Paris,,AEC, +AEC:SA:00980,1,"Centre Commercial",43.561321,1.654986,,1,,Europe/Paris,,AEC, +AEC:SA:00983,1,"La Couronne",43.561165,1.660034,,1,,Europe/Paris,,AEC, +AEC:SA:00985,1,"Les Avignous",43.555388,1.673444,,1,,Europe/Paris,,AEC, +AEC:SA:00987,1,"Les Perrots",43.562726,1.646872,,1,,Europe/Paris,,AEC, +AEC:SA:00989,1,"La Hitte",43.745716,1.03401,,1,,Europe/Paris,,AEC, +AEC:SA:00991,1,"Pradaut",43.740386,1.02535,,1,,Europe/Paris,,AEC, +AEC:SA:00993,1,"Bragnères",43.757946,1.21917,,1,,Europe/Paris,,AEC, +AEC:SA:00995,1,"Cantegril",43.747673,1.220155,,1,,Europe/Paris,,AEC, +AEC:SA:00997,1,"D87",43.749021,1.249525,,1,,Europe/Paris,,AEC, +AEC:SA:00999,1,"Ecole",43.738728,1.231168,,1,,Europe/Paris,,AEC, +AEC:SA:01000,1,"Gaussens",43.726727,1.200108,,1,,Europe/Paris,,AEC, +AEC:SA:01002,1,"Le Grand Bigné",43.734194,1.216538,,1,,Europe/Paris,,AEC, +AEC:SA:01004,1,"Les Erables",43.740079,1.231548,,1,,Europe/Paris,,AEC, +AEC:SA:01006,1,"Mairie-Ecoles",43.639915,1.166133,,1,,Europe/Paris,,AEC, +AEC:SA:01008,1,"Stade",43.168155,0.787247,,1,,Europe/Paris,,AEC, +AEC:SA:01010,1,"Anciens Fossés",43.742376,1.180382,,1,,Europe/Paris,,AEC, +AEC:SA:01012,1,"Ecole",43.743587,1.181108,,1,,Europe/Paris,,AEC, +AEC:SA:01013,1,"Fond du Drac",43.752749,1.200637,,1,,Europe/Paris,,AEC, +AEC:SA:01015,1,"Galembrun",43.757415,1.140928,,1,,Europe/Paris,,AEC, +AEC:SA:01022,1,"Nobles",43.670725,1.445338,,1,,Europe/Paris,,AEC, +AEC:SA:01024,1,"Pesquies",43.660021,1.448588,,1,,Europe/Paris,,AEC, +AEC:SA:01026,1,"Clinique",43.647711,1.571774,,1,,Europe/Paris,,AEC, +AEC:SA:01028,1,"Grousset",43.646465,1.597439,,1,,Europe/Paris,,AEC, +AEC:SA:01030,1,"Lamothe",43.644902,1.604122,,1,,Europe/Paris,,AEC, +AEC:SA:01033,1,"St Jean",43.647376,1.586692,,1,,Europe/Paris,,AEC, +AEC:SA:01035,1,"Centre église",43.255629,1.118743,,1,,Europe/Paris,,AEC, +AEC:SA:01037,1,"Château d'eau",43.252962,1.124288,,1,,Europe/Paris,,AEC, +AEC:SA:01039,1,"Douat",43.249372,1.13522,,1,,Europe/Paris,,AEC, +AEC:SA:01041,1,"Tachoire",43.256594,1.11654,,1,,Europe/Paris,,AEC, +AEC:SA:01044,1,"Mairie",43.834241,1.5559,,1,,Europe/Paris,,AEC, +AEC:SA:01047,1,"Halle",43.794497,1.162216,,1,,Europe/Paris,,AEC, +AEC:SA:01048,1,"Le Padouenc",43.791799,1.159151,,1,,Europe/Paris,,AEC, +AEC:SA:01050,1,"Chople",43.504891,1.870717,,1,,Europe/Paris,,AEC, +AEC:SA:01052,1,"La Bartelle",43.514075,1.858445,,1,,Europe/Paris,,AEC, +AEC:SA:01054,1,"Les BarthesGare",43.508479,1.865334,,1,,Europe/Paris,,AEC, +AEC:SA:01055,1,"Eglise",43.567653,1.824685,,1,,Europe/Paris,,AEC, +AEC:SA:01057,1,"Maynadel",43.580955,1.801152,,1,,Europe/Paris,,AEC, +AEC:SA:01059,1,"La Mandre",43.403359,1.292984,,1,,Europe/Paris,,AEC, +AEC:SA:01061,1,"Luxembourg",43.397709,1.290869,,1,,Europe/Paris,,AEC, +AEC:SA:01063,1,"Benque",43.273225,1.069618,,1,,Europe/Paris,,AEC, +AEC:SA:01069,1,"En Guinot",43.7222,1.099893,,1,,Europe/Paris,,AEC, +AEC:SA:01071,1,"Les Vignes de L'Ourme",43.721594,1.098785,,1,,Europe/Paris,,AEC, +AEC:SA:01073,1,"Le Pont de Lège",42.875607,0.613305,,1,,Europe/Paris,,AEC, +AEC:SA:01074,1,"Berdoulet Est",43.567432,1.225978,,1,,Europe/Paris,,AEC, +AEC:SA:01079,1,"La Futière",43.568341,1.230439,,1,,Europe/Paris,,AEC, +AEC:SA:01082,1,"Avenue des Pyrénées",43.599984,1.233185,,1,,Europe/Paris,,AEC, +AEC:SA:01088,1,"Beauté",43.714039,1.377009,,1,,Europe/Paris,,AEC, +AEC:SA:01090,1,"Beldou",43.709456,1.381573,,1,,Europe/Paris,,AEC, +AEC:SA:01092,1,"Les vitarelles",43.710156,1.39128,,1,,Europe/Paris,,AEC, +AEC:SA:01093,1,"Peyrailles",43.71619,1.375483,,1,,Europe/Paris,,AEC, +AEC:SA:01095,1,"Triage",43.705822,1.393659,,1,,Europe/Paris,,AEC, +AEC:SA:01097,1,"Centre",43.067399,0.759314,,1,,Europe/Paris,,AEC, +AEC:SA:01099,1,"Village",43.068668,0.758207,,1,,Europe/Paris,,AEC, +AEC:SA:01101,1,"Place",43.122878,0.914964,,1,,Europe/Paris,,AEC, +AEC:SA:01103,1,"Village",43.1217,0.910855,,1,,Europe/Paris,,AEC, +AEC:SA:01105,1,"Lacassagne",43.661088,1.186539,,1,,Europe/Paris,,AEC, +AEC:SA:01107,1,"Place du Moulin",43.666947,1.19234,,1,,Europe/Paris,,AEC, +AEC:SA:01109,1,"Place du Padouenc",43.665571,1.192798,,1,,Europe/Paris,,AEC, +AEC:SA:01111,1,"Halle",43.275379,1.347946,,1,,Europe/Paris,,AEC, +AEC:SA:01113,1,"Camin",43.434776,1.224461,,1,,Europe/Paris,,AEC, +AEC:SA:01115,1,"Cimetière",43.429868,1.220966,,1,,Europe/Paris,,AEC, +AEC:SA:01117,1,"Désert",43.413979,1.205129,,1,,Europe/Paris,,AEC, +AEC:SA:01119,1,"Place de l'Eglise",43.430012,1.222763,,1,,Europe/Paris,,AEC, +AEC:SA:01121,1,"Puymulens",43.423518,1.212776,,1,,Europe/Paris,,AEC, +AEC:SA:01123,1,"Lieoux",43.152068,0.770542,,1,,Europe/Paris,,AEC, +AEC:SA:01125,1,"En Jannot",43.373509,0.827875,,1,,Europe/Paris,,AEC, +AEC:SA:01127,1,"La Bourdette",43.388916,0.836922,,1,,Europe/Paris,,AEC, +AEC:SA:01129,1,"Mairie",43.3815,0.836744,,1,,Europe/Paris,,AEC, +AEC:SA:01131,1,"Pyrénées",43.381059,0.833235,,1,,Europe/Paris,,AEC, +AEC:SA:01133,1,"Ramounat",43.386306,0.834995,,1,,Europe/Paris,,AEC, +AEC:SA:01134,1,"Centre",43.269167,1.512479,,1,,Europe/Paris,,AEC, +AEC:SA:01136,1,"Mairie-route de Samatan",43.475857,0.912031,,1,,Europe/Paris,,AEC, +AEC:SA:01138,1,"Poste",43.475223,0.913517,,1,,Europe/Paris,,AEC, +AEC:SA:01139,1,"Stade / Gendarmerie",43.474486,0.916404,,1,,Europe/Paris,,AEC, +AEC:SA:01140,1,"Garros",43.353486,1.236491,,1,,Europe/Paris,,AEC, +AEC:SA:01142,1,"Mairie",43.355836,1.235766,,1,,Europe/Paris,,AEC, +AEC:SA:01144,1,"Pas-Bastere",43.341457,1.206215,,1,,Europe/Paris,,AEC, +AEC:SA:01146,1,"En Pinel",43.581246,1.776522,,1,,Europe/Paris,,AEC, +AEC:SA:01151,1,"Belle Hôtesse",43.659954,1.488746,,1,,Europe/Paris,,AEC, +AEC:SA:01155,1,"Fontanelles",43.656783,1.470303,,1,,Europe/Paris,,AEC, +AEC:SA:01158,1,"Grive",43.658377,1.484289,,1,,Europe/Paris,,AEC, +AEC:SA:01160,1,"Saint-Caprais",43.656728,1.479876,,1,,Europe/Paris,,AEC, +AEC:SA:01161,1,"Truffaut",43.638164,1.500632,,1,,Europe/Paris,,AEC, +AEC:SA:01163,1,"Le Château",43.009484,0.620768,,1,,Europe/Paris,,AEC, +AEC:SA:01165,1,"Luscan",43.011382,0.615218,,1,,Europe/Paris,,AEC, +AEC:SA:01167,1,"Village",43.015407,0.621474,,1,,Europe/Paris,,AEC, +AEC:SA:01169,1,"Village",43.006381,0.687445,,1,,Europe/Paris,,AEC, +AEC:SA:01171,1,"Eglise",43.158787,0.953143,,1,,Europe/Paris,,AEC, +AEC:SA:01173,1,"Village",43.155094,0.951859,,1,,Europe/Paris,,AEC, +AEC:SA:01176,1,"Avenue du Couserans",43.08056,0.953136,,1,,Europe/Paris,,AEC, +AEC:SA:01177,1,"Avenue Tolosane",43.087321,0.951298,,1,,Europe/Paris,,AEC, +AEC:SA:01179,1,"Scierie",43.090022,0.950086,,1,,Europe/Paris,,AEC, +AEC:SA:01180,1,"La Gare",42.915326,0.650924,,1,,Europe/Paris,,AEC, +AEC:SA:01182,1,"Mairie",42.913595,0.658693,,1,,Europe/Paris,,AEC, +AEC:SA:01184,1,"Cazarré",43.304898,1.097094,,1,,Europe/Paris,,AEC, +AEC:SA:01186,1,"Clares Basses",43.308489,1.108617,,1,,Europe/Paris,,AEC, +AEC:SA:01188,1,"Auribail",43.328359,1.246824,,1,,Europe/Paris,,AEC, +AEC:SA:01190,1,"Cimetière",43.316466,1.240464,,1,,Europe/Paris,,AEC, +AEC:SA:01192,1,"Pradas",43.313186,1.236493,,1,,Europe/Paris,,AEC, +AEC:SA:01194,1,"Avenue de Palaminy",43.19731,1.030969,,1,,Europe/Paris,,AEC, +AEC:SA:01198,1,"La Rivière",43.182696,0.973193,,1,,Europe/Paris,,AEC, +AEC:SA:01200,1,"Pyrénées",43.198732,1.009801,,1,,Europe/Paris,,AEC, +AEC:SA:01202,1,"Rue de la faïencerie",43.197819,1.018343,,1,,Europe/Paris,,AEC, +AEC:SA:01204,1,"La Tuilerie",43.231578,1.375937,,1,,Europe/Paris,,AEC, +AEC:SA:01206,1,"Salle des Fêtes",43.190714,1.034172,,1,,Europe/Paris,,AEC, +AEC:SA:01208,1,"En Carron",43.468264,1.796187,,1,,Europe/Paris,,AEC, +AEC:SA:01210,1,"Le Lengard",43.469103,1.789257,,1,,Europe/Paris,,AEC, +AEC:SA:01212,1,"L'Orme",43.327233,1.441136,,1,,Europe/Paris,,AEC, +AEC:SA:01213,1,"Bachus",43.545704,1.704079,,1,,Europe/Paris,,AEC, +AEC:SA:01215,1,"Couge",43.538101,1.733968,,1,,Europe/Paris,,AEC, +AEC:SA:01217,1,"En Bosc",43.542577,1.716087,,1,,Europe/Paris,,AEC, +AEC:SA:01219,1,"En Bramelle",43.545116,1.706319,,1,,Europe/Paris,,AEC, +AEC:SA:01221,1,"Le Rouget",43.366019,1.330572,,1,,Europe/Paris,,AEC, +AEC:SA:01222,1,"Pont",43.378367,1.289307,,1,,Europe/Paris,,AEC, +AEC:SA:01223,1,"Place",43.250135,1.677047,,1,,Europe/Paris,,AEC, +AEC:SA:01224,1,"Frontière",42.866928,0.747637,,1,,Europe/Paris,,AEC, +AEC:SA:01226,1,"Montlezun",43.676696,1.190758,,1,,Europe/Paris,,AEC, +AEC:SA:01228,1,"Cazassus",43.717465,1.305339,,1,,Europe/Paris,,AEC, +AEC:SA:01230,1,"Cèdres",43.712745,1.308402,,1,,Europe/Paris,,AEC, +AEC:SA:01232,1,"La Côte rouge",43.732951,1.305972,,1,,Europe/Paris,,AEC, +AEC:SA:01234,1,"La Peyre",43.738954,1.312332,,1,,Europe/Paris,,AEC, +AEC:SA:01238,1,"Mairie",43.721718,1.29773,,1,,Europe/Paris,,AEC, +AEC:SA:01240,1,"Pangoussié",43.724449,1.297514,,1,,Europe/Paris,,AEC, +AEC:SA:01242,1,"Pedauco",43.719854,1.330204,,1,,Europe/Paris,,AEC, +AEC:SA:01243,1,"Poulidas",43.732182,1.31926,,1,,Europe/Paris,,AEC, +AEC:SA:01246,1,"Mairie",42.988206,0.806399,,1,,Europe/Paris,,AEC, +AEC:SA:01249,1,"Place de l'Eglise",43.092959,0.743054,,1,,Europe/Paris,,AEC, +AEC:SA:01250,1,"Rond Point du Pin",43.094593,0.747163,,1,,Europe/Paris,,AEC, +AEC:SA:01252,1,"Burguerolles",43.392684,1.412007,,1,,Europe/Paris,,AEC, +AEC:SA:01254,1,"Parc du Château",43.371553,1.417716,,1,,Europe/Paris,,AEC, +AEC:SA:01256,1,"Pyrénées",43.367828,1.419017,,1,,Europe/Paris,,AEC, +AEC:SA:01258,1,"Place République",43.813098,1.572404,,1,,Europe/Paris,,AEC, +AEC:SA:01260,1,"Route de Layrac",43.815571,1.568513,,1,,Europe/Paris,,AEC, +AEC:SA:01262,1,"Centre",42.977533,0.706835,,1,,Europe/Paris,,AEC, +AEC:SA:01266,1,"Croix d'Alliez",43.66152,1.305693,,1,,Europe/Paris,,AEC, +AEC:SA:01268,1,"Larroque",43.665358,1.297513,,1,,Europe/Paris,,AEC, +AEC:SA:01271,1,"Les Laques",43.615595,1.590864,,1,,Europe/Paris,,AEC, +AEC:SA:01273,1,"Avenue de Toulouse",43.691622,1.231141,,1,,Europe/Paris,,AEC, +AEC:SA:01277,1,"Maurous",43.68816,1.241433,,1,,Europe/Paris,,AEC, +AEC:SA:01279,1,"Notre Dame d'Alet",43.690489,1.243634,,1,,Europe/Paris,,AEC, +AEC:SA:01281,1,"Place de la salle des Fêtes",43.692982,1.229957,,1,,Europe/Paris,,AEC, +AEC:SA:01283,1,"Bordeneuve",43.719178,1.579114,,1,,Europe/Paris,,AEC, +AEC:SA:01284,1,"Chemin vert",43.720637,1.591828,,1,,Europe/Paris,,AEC, +AEC:SA:01287,1,"La Conseillère",43.721898,1.585108,,1,,Europe/Paris,,AEC, +AEC:SA:01288,1,"La Valade - Château",43.709602,1.575028,,1,,Europe/Paris,,AEC, +AEC:SA:01289,1,"La Valade - Club House",43.709536,1.580585,,1,,Europe/Paris,,AEC, +AEC:SA:01290,1,"La Valade - Lac",43.708741,1.571899,,1,,Europe/Paris,,AEC, +AEC:SA:01292,1,"La Grange Brulée",43.346247,1.323984,,1,,Europe/Paris,,AEC, +AEC:SA:01294,1,"Le Luquet",43.362285,1.328896,,1,,Europe/Paris,,AEC, +AEC:SA:01297,1,"La Vierge",43.31072,0.768041,,1,,Europe/Paris,,AEC, +AEC:SA:01299,1,"Milor",43.302965,0.758613,,1,,Europe/Paris,,AEC, +AEC:SA:01301,1,"Cimetière",43.712944,1.476635,,1,,Europe/Paris,,AEC, +AEC:SA:01303,1,"Eglise",43.715977,1.479789,,1,,Europe/Paris,,AEC, +AEC:SA:01305,1,"Le Tucol",43.727307,1.481779,,1,,Europe/Paris,,AEC, +AEC:SA:01307,1,"Tucol",43.721637,1.481326,,1,,Europe/Paris,,AEC, +AEC:SA:01309,1,"Cassejus",43.370596,1.71782,,1,,Europe/Paris,,AEC, +AEC:SA:01311,1,"Le Châtelet",43.361203,1.725391,,1,,Europe/Paris,,AEC, +AEC:SA:01313,1,"La Filandière",43.47176,1.950191,,1,,Europe/Paris,,AEC, +AEC:SA:01315,1,"Le Tapissier",43.476226,1.929175,,1,,Europe/Paris,,AEC, +AEC:SA:01317,1,"Mauran",43.48156,1.915787,,1,,Europe/Paris,,AEC, +AEC:SA:01319,1,"Village",43.47851,1.92327,,1,,Europe/Paris,,AEC, +AEC:SA:01321,1,"Le Pont",43.092735,0.841075,,1,,Europe/Paris,,AEC, +AEC:SA:01323,1,"Les Artigues",43.09289,0.862442,,1,,Europe/Paris,,AEC, +AEC:SA:01325,1,"Chemin de Guittaut",43.322764,0.783083,,1,,Europe/Paris,,AEC, +AEC:SA:01327,1,"En Serny",43.424061,1.626728,,1,,Europe/Paris,,AEC, +AEC:SA:01329,1,"Monument",43.417879,1.629409,,1,,Europe/Paris,,AEC, +AEC:SA:01331,1,"Négra",43.41686,1.639607,,1,,Europe/Paris,,AEC, +AEC:SA:01334,1,"Esplanade du Nord",43.208574,1.232427,,1,,Europe/Paris,,AEC, +AEC:SA:01336,1,"Gendarmerie",43.214755,1.222481,,1,,Europe/Paris,,AEC, +AEC:SA:01338,1,"Loubère",43.211061,1.227842,,1,,Europe/Paris,,AEC, +AEC:SA:01339,1,"Place Brindejonc",43.205243,1.228269,,1,,Europe/Paris,,AEC, +AEC:SA:01342,1,"La Cave",43.425055,1.680657,,1,,Europe/Paris,,AEC, +AEC:SA:01344,1,"Saint-Jean",43.415629,1.695039,,1,,Europe/Paris,,AEC, +AEC:SA:01346,1,"Cimetière",43.254415,0.731434,,1,,Europe/Paris,,AEC, +AEC:SA:01348,1,"Aimé Ramond",43.338281,1.633678,,1,,Europe/Paris,,AEC, +AEC:SA:01349,1,"Roquefoulet",43.353627,1.654487,,1,,Europe/Paris,,AEC, +AEC:SA:01351,1,"Bruxelles",43.465017,1.565604,,1,,Europe/Paris,,AEC, +AEC:SA:01353,1,"Gendarmerie",43.456385,1.580614,,1,,Europe/Paris,,AEC, +AEC:SA:01355,1,"L'Ecluse",43.462072,1.570942,,1,,Europe/Paris,,AEC, +AEC:SA:01358,1,"Chêne vert",43.757358,1.516711,,1,,Europe/Paris,,AEC, +AEC:SA:01360,1,"Eglise",43.770247,1.533224,,1,,Europe/Paris,,AEC, +AEC:SA:01362,1,"Malpas",43.782408,1.55612,,1,,Europe/Paris,,AEC, +AEC:SA:01366,1,"Saint-Sernin",43.767999,1.544755,,1,,Europe/Paris,,AEC, +AEC:SA:01368,1,"Varennes",43.76728,1.529999,,1,,Europe/Paris,,AEC, +AEC:SA:01370,1,"Les Canavères",43.478235,1.576893,,1,,Europe/Paris,,AEC, +AEC:SA:01372,1,"Village",43.488997,1.568826,,1,,Europe/Paris,,AEC, +AEC:SA:01374,1,"Camp d'Armas",43.22129,0.895572,,1,,Europe/Paris,,AEC, +AEC:SA:01376,1,"Notre Dame St Bernard",43.227857,0.910368,,1,,Europe/Paris,,AEC, +AEC:SA:01378,1,"Bel Souleil",43.644951,1.544573,,1,,Europe/Paris,,AEC, +AEC:SA:01380,1,"Borde Haute",43.643297,1.530262,,1,,Europe/Paris,,AEC, +AEC:SA:01381,1,"Brunel",43.64318,1.505164,,1,,Europe/Paris,,AEC, +AEC:SA:01383,1,"Collège",43.644041,1.536341,,1,,Europe/Paris,,AEC, +AEC:SA:01385,1,"Logis Vieux",43.64332,1.521132,,1,,Europe/Paris,,AEC, +AEC:SA:01387,1,"Mairie",43.642948,1.525161,,1,,Europe/Paris,,AEC, +AEC:SA:01389,1,"Terlon",43.644124,1.513818,,1,,Europe/Paris,,AEC, +AEC:SA:01390,1,"Boulevard de Lassus",43.085283,0.566396,,1,,Europe/Paris,,AEC, +AEC:SA:01392,1,"RD 817",43.085837,0.573751,,1,,Europe/Paris,,AEC, +AEC:SA:01394,1,"Mairie",43.111911,0.93346,,1,,Europe/Paris,,AEC, +AEC:SA:01396,1,"Mairie",42.814615,0.597897,,1,,Europe/Paris,,AEC, +AEC:SA:01398,1,"Bellefontaine",43.44331,1.315234,,1,,Europe/Paris,,AEC, +AEC:SA:01400,1,"De Lattre de Tassigny",43.46456,1.326179,,1,,Europe/Paris,,AEC, +AEC:SA:01402,1,"Debat-Ponsan",43.445883,1.317024,,1,,Europe/Paris,,AEC, +AEC:SA:01407,1,"Gare SNCF",43.465137,1.324637,,1,,Europe/Paris,,AEC, +AEC:SA:01409,1,"Gendarmerie",43.451968,1.320544,,1,,Europe/Paris,,AEC, +AEC:SA:01411,1,"Genevoix",43.46668,1.311364,,1,,Europe/Paris,,AEC, +AEC:SA:01413,1,"La Petite Maymie",43.434758,1.344452,,1,,Europe/Paris,,AEC, +AEC:SA:01417,1,"Les Vivans",43.442773,1.339049,,1,,Europe/Paris,,AEC, +AEC:SA:01419,1,"Lycée P. Aragon",43.454829,1.331156,,1,,Europe/Paris,,AEC, +AEC:SA:01421,1,"Mermoz Gare SNCF",43.463427,1.325441,,1,,Europe/Paris,,AEC, +AEC:SA:01423,1,"Mozart",43.448936,1.318663,,1,,Europe/Paris,,AEC, +AEC:SA:01425,1,"Niel",43.460484,1.324503,,1,,Europe/Paris,,AEC, +AEC:SA:01427,1,"Peyramont",43.464554,1.316011,,1,,Europe/Paris,,AEC, +AEC:SA:01429,1,"Pyrénées",43.456409,1.323392,,1,,Europe/Paris,,AEC, +AEC:SA:01432,1,"Séro",43.462237,1.324751,,1,,Europe/Paris,,AEC, +AEC:SA:01434,1,"Vernhole",43.449116,1.33636,,1,,Europe/Paris,,AEC, +AEC:SA:01436,1,"Vincent Auriol",43.470171,1.329644,,1,,Europe/Paris,,AEC, +AEC:SA:01437,1,"CAT",43.374438,1.623513,,1,,Europe/Paris,,AEC, +AEC:SA:01439,1,"Centre",43.357128,1.623478,,1,,Europe/Paris,,AEC, +AEC:SA:01441,1,"Collège",43.351277,1.624927,,1,,Europe/Paris,,AEC, +AEC:SA:01442,1,"_Maison de Retraite",43.359001,1.635819,,1,,Europe/Paris,,AEC, +AEC:SA:01445,1,"Route de St Léon",43.359616,1.624003,,1,,Europe/Paris,,AEC, +AEC:SA:01447,1,"Le Mona",43.496886,0.966636,,1,,Europe/Paris,,AEC, +AEC:SA:01449,1,"Centre Commercial",43.346833,1.264184,,1,,Europe/Paris,,AEC, +AEC:SA:01451,1,"Le Gaillard du Port",43.369962,1.277989,,1,,Europe/Paris,,AEC, +AEC:SA:01453,1,"Noyers",43.361488,1.275278,,1,,Europe/Paris,,AEC, +AEC:SA:01455,1,"Piscine",43.353171,1.2736,,1,,Europe/Paris,,AEC, +AEC:SA:01457,1,"Place Pardailhan",43.356527,1.274278,,1,,Europe/Paris,,AEC, +AEC:SA:01458,1,"Sainte Marie",43.358638,1.274886,,1,,Europe/Paris,,AEC, +AEC:SA:01460,1,"Centre",43.522357,1.588392,,1,,Europe/Paris,,AEC, +AEC:SA:01461,1,"LEPA Parking",43.780043,1.319996,,1,,Europe/Paris,,AEC, +AEC:SA:01463,1,"Lycée Agricole",43.782422,1.316172,,1,,Europe/Paris,,AEC, +AEC:SA:01465,1,"Mairie",43.780347,1.308219,,1,,Europe/Paris,,AEC, +AEC:SA:01467,1,"Rue de Montréjeau",42.972728,0.647228,,1,,Europe/Paris,,AEC, +AEC:SA:01469,1,"Centre",43.202483,1.069222,,1,,Europe/Paris,,AEC, +AEC:SA:01475,1,"Clos Maynal",43.759366,1.550522,,1,,Europe/Paris,,AEC, +AEC:SA:01478,1,"Ducharme",43.499757,1.514599,,1,,Europe/Paris,,AEC, +AEC:SA:01480,1,"Le Merlet",43.503581,1.510357,,1,,Europe/Paris,,AEC, +AEC:SA:01484,1,"Mairie",43.703158,1.466815,,1,,Europe/Paris,,AEC, +AEC:SA:01486,1,"Turtelle",43.702911,1.459377,,1,,Europe/Paris,,AEC, +AEC:SA:01488,1,"Mairie",43.738429,1.11667,,1,,Europe/Paris,,AEC, +AEC:SA:01490,1,"Cap d'Oustau",43.316155,1.182541,,1,,Europe/Paris,,AEC, +AEC:SA:01492,1,"Les Lacs",43.327313,1.171341,,1,,Europe/Paris,,AEC, +AEC:SA:01494,1,"Mairie",43.32158,1.177003,,1,,Europe/Paris,,AEC, +AEC:SA:01506,1,"La Ginestière",43.629275,1.541263,,1,,Europe/Paris,,AEC, +AEC:SA:01509,1,"Coquelicots",43.481788,1.400102,,1,,Europe/Paris,,AEC, +AEC:SA:01512,1,"Justarette",43.483295,1.401477,,1,,Europe/Paris,,AEC, +AEC:SA:01513,1,"La Cépette",43.476282,1.397789,,1,,Europe/Paris,,AEC, +AEC:SA:01517,1,"Birazel",43.53973,1.283153,,1,,Europe/Paris,,AEC, +AEC:SA:01519,1,"Blériot",43.554229,1.295863,,1,,Europe/Paris,,AEC, +AEC:SA:01521,1,"Charlas",43.564418,1.317979,,1,,Europe/Paris,,AEC, +AEC:SA:01523,1,"Fronton",43.556586,1.274924,,1,,Europe/Paris,,AEC, +AEC:SA:01525,1,"Les Mésanges",43.560379,1.301786,,1,,Europe/Paris,,AEC, +AEC:SA:01527,1,"Monestié",43.562976,1.291446,,1,,Europe/Paris,,AEC, +AEC:SA:01529,1,"Parc de Campagne",43.562997,1.312086,,1,,Europe/Paris,,AEC, +AEC:SA:01531,1,"Pierre Loti",43.568085,1.308798,,1,,Europe/Paris,,AEC, +AEC:SA:01533,1,"Pilon",43.536178,1.279293,,1,,Europe/Paris,,AEC, +AEC:SA:01535,1,"Plaisance Accueil",43.564781,1.297237,,1,,Europe/Paris,,AEC, +AEC:SA:01543,1,"Eglise",43.086524,0.811694,,1,,Europe/Paris,,AEC, +AEC:SA:01546,1,"La Rouère II",43.094418,0.792634,,1,,Europe/Paris,,AEC, +AEC:SA:01547,1,"Rouère",43.091127,0.799269,,1,,Europe/Paris,,AEC, +AEC:SA:01549,1,"Granouillet",43.490457,1.526321,,1,,Europe/Paris,,AEC, +AEC:SA:01551,1,"Lespitalet",43.496643,1.518375,,1,,Europe/Paris,,AEC, +AEC:SA:01553,1,"Rodoloze",43.494689,1.520622,,1,,Europe/Paris,,AEC, +AEC:SA:01555,1,"Mairie",43.817527,1.311022,,1,,Europe/Paris,,AEC, +AEC:SA:01557,1,"Mairie",43.109471,0.600454,,1,,Europe/Paris,,AEC, +AEC:SA:01559,1,"Taillebourg",43.096215,0.614259,,1,,Europe/Paris,,AEC, +AEC:SA:01561,1,"Centre Commercial",43.530669,1.403856,,1,,Europe/Paris,,AEC, +AEC:SA:01563,1,"Bois Communal",43.44003,1.173354,,1,,Europe/Paris,,AEC, +AEC:SA:01565,1,"Commanderie",43.416624,1.171765,,1,,Europe/Paris,,AEC, +AEC:SA:01567,1,"Nagut",43.44448,1.180806,,1,,Europe/Paris,,AEC, +AEC:SA:01569,1,"La Chapelle",43.342991,1.040526,,1,,Europe/Paris,,AEC, +AEC:SA:01571,1,"La Hagette",43.347725,1.059739,,1,,Europe/Paris,,AEC, +AEC:SA:01573,1,"Mairie",43.342956,1.037195,,1,,Europe/Paris,,AEC, +AEC:SA:01575,1,"La Cave",43.340056,1.431624,,1,,Europe/Paris,,AEC, +AEC:SA:01577,1,"Mairie",43.748612,1.061397,,1,,Europe/Paris,,AEC, +AEC:SA:01579,1,"Ginestière",43.587085,1.540035,,1,,Europe/Paris,,AEC, +AEC:SA:01581,1,"Lauragais",43.586647,1.533964,,1,,Europe/Paris,,AEC, +AEC:SA:01583,1,"Mairie",43.585547,1.528943,,1,,Europe/Paris,,AEC, +AEC:SA:01585,1,"Pyrénées",43.585665,1.525461,,1,,Europe/Paris,,AEC, +AEC:SA:01587,1,"Boulevard F. Mitterrand",43.553992,1.474109,,1,,Europe/Paris,,AEC, +AEC:SA:01589,1,"Deux Ormeaux",43.540767,1.478996,,1,,Europe/Paris,,AEC, +AEC:SA:01591,1,"Parc St-Agne",43.55241,1.468977,,1,,Europe/Paris,,AEC, +AEC:SA:01593,1,"Pastourelles",43.543526,1.477101,,1,,Europe/Paris,,AEC, +AEC:SA:01595,1,"Ramonville Sud",43.53653,1.482541,,1,,Europe/Paris,,AEC, +AEC:SA:01597,1,"Tirane",43.376083,1.711973,,1,,Europe/Paris,,AEC, +AEC:SA:01599,1,"Beausejour",43.452981,1.986244,,1,,Europe/Paris,,AEC, +AEC:SA:01600,1,"Claude Nougaro",43.461505,2.004659,,1,,Europe/Paris,,AEC, +AEC:SA:01603,1,"Gambetta",43.457807,2.006864,,1,,Europe/Paris,,AEC, +AEC:SA:01605,1,"Gendarmerie",43.461315,1.997991,,1,,Europe/Paris,,AEC, +AEC:SA:01607,1,"La Landelle Basse",43.464521,1.989473,,1,,Europe/Paris,,AEC, +AEC:SA:01609,1,"La Poterie",43.455295,1.996969,,1,,Europe/Paris,,AEC, +AEC:SA:01611,1,"Lemmarsou",43.445877,1.948287,,1,,Europe/Paris,,AEC, +AEC:SA:01612,1,"LEP",43.450566,2.011296,,1,,Europe/Paris,,AEC, +AEC:SA:01613,1,"Lycée V. Auriol",43.456517,2.011126,,1,,Europe/Paris,,AEC, +AEC:SA:01616,1,"Saint Jean",43.447555,1.961998,,1,,Europe/Paris,,AEC, +AEC:SA:01617,1,"Saint-Ferréol",43.44109,2.023918,,1,,Europe/Paris,,AEC, +AEC:SA:01619,1,"Dupac",43.07872,0.761979,,1,,Europe/Paris,,AEC, +AEC:SA:01621,1,"Giratoire Vidal",43.412829,1.124551,,1,,Europe/Paris,,AEC, +AEC:SA:01622,1,"Le Foirail",43.413306,1.117389,,1,,Europe/Paris,,AEC, +AEC:SA:01626,1,"Campagne",43.260305,1.193255,,1,,Europe/Paris,,AEC, +AEC:SA:01632,1,"Maison de Retraite",43.253484,1.200303,,1,,Europe/Paris,,AEC, +AEC:SA:01636,1,"Stade",43.258001,1.194808,,1,,Europe/Paris,,AEC, +AEC:SA:01637,1,"Centre Commercial",43.515261,1.375128,,1,,Europe/Paris,,AEC, +AEC:SA:01638,1,"Ecole - Mairie",43.466212,1.063992,,1,,Europe/Paris,,AEC, +AEC:SA:01639,1,"Ecole-Mairie",43.466232,1.064092,,1,,Europe/Paris,,AEC, +AEC:SA:01641,1,"Mairie",43.466946,1.063785,,1,,Europe/Paris,,AEC, +AEC:SA:01642,1,"Les Cantoux",43.538337,1.163751,,1,,Europe/Paris,,AEC, +AEC:SA:01644,1,"Mairie",43.528369,1.146005,,1,,Europe/Paris,,AEC, +AEC:SA:01646,1,"Acacias",43.695291,1.410227,,1,,Europe/Paris,,AEC, +AEC:SA:01653,1,"Mairie",43.693112,1.412667,,1,,Europe/Paris,,AEC, +AEC:SA:01655,1,"Mariel",43.681728,1.420963,,1,,Europe/Paris,,AEC, +AEC:SA:01657,1,"Musiciens",43.683715,1.419372,,1,,Europe/Paris,,AEC, +AEC:SA:01659,1,"Prairie",43.70064,1.407577,,1,,Europe/Paris,,AEC, +AEC:SA:01661,1,"Violettes",43.686838,1.417484,,1,,Europe/Paris,,AEC, +AEC:SA:01669,1,"Mairie",42.915224,0.69197,,1,,Europe/Paris,,AEC, +AEC:SA:01671,1,"Pont",42.915567,0.69147,,1,,Europe/Paris,,AEC, +AEC:SA:01673,1,"Ecole",43.030157,0.573976,,1,,Europe/Paris,,AEC, +AEC:SA:01675,1,"Village",43.782039,1.19472,,1,,Europe/Paris,,AEC, +AEC:SA:01677,1,"Lanauze",43.462314,1.212005,,1,,Europe/Paris,,AEC, +AEC:SA:01679,1,"Mairie",43.465908,1.215978,,1,,Europe/Paris,,AEC, +AEC:SA:01681,1,"Bernadou",43.491256,1.133653,,1,,Europe/Paris,,AEC, +AEC:SA:01683,1,"Fauré",43.501257,1.162318,,1,,Europe/Paris,,AEC, +AEC:SA:01686,1,"Le Colomé",43.495231,1.152599,,1,,Europe/Paris,,AEC, +AEC:SA:01688,1,"Mairie",43.492442,1.144329,,1,,Europe/Paris,,AEC, +AEC:SA:01690,1,"Rigail",43.490783,1.128558,,1,,Europe/Paris,,AEC, +AEC:SA:01692,1,"Le Château",43.280438,1.136801,,1,,Europe/Paris,,AEC, +AEC:SA:01694,1,"Mairie",43.279698,1.139163,,1,,Europe/Paris,,AEC, +AEC:SA:01696,1,"Le Château",43.194172,0.854699,,1,,Europe/Paris,,AEC, +AEC:SA:01698,1,"Séglan",43.192528,0.849924,,1,,Europe/Paris,,AEC, +AEC:SA:01700,1,"Cadenac",43.448849,1.916032,,1,,Europe/Paris,,AEC, +AEC:SA:01702,1,"Quartier St Roch",43.450164,1.883457,,1,,Europe/Paris,,AEC, +AEC:SA:01704,1,"Voie Férrée",43.447656,1.929776,,1,,Europe/Paris,,AEC, +AEC:SA:01706,1,"Ancienne halle",43.109565,0.723243,,1,,Europe/Paris,,AEC, +AEC:SA:01708,1,"Bosc",43.102918,0.72646,,1,,Europe/Paris,,AEC, +AEC:SA:01709,1,"Château Rinaud",43.118097,0.729028,,1,,Europe/Paris,,AEC, +AEC:SA:01711,1,"Collège Leclerc",43.108702,0.727255,,1,,Europe/Paris,,AEC, +AEC:SA:01714,1,"Jardin Public",43.106651,0.720352,,1,,Europe/Paris,,AEC, +AEC:SA:01716,1,"La Serre de Cazaux",43.139205,0.734358,,1,,Europe/Paris,,AEC, +AEC:SA:01718,1,"La Serre de Nérous",43.131367,0.706021,,1,,Europe/Paris,,AEC, +AEC:SA:01720,1,"Lavoisier",43.10783,0.715919,,1,,Europe/Paris,,AEC, +AEC:SA:01722,1,"Lycée agricole",43.117082,0.730251,,1,,Europe/Paris,,AEC, +AEC:SA:01724,1,"Lycée Bagatelle",43.112202,0.744736,,1,,Europe/Paris,,AEC, +AEC:SA:01725,1,"Maréchal Joffre",43.109132,0.709568,,1,,Europe/Paris,,AEC, +AEC:SA:01726,1,"Renaissance",43.109385,0.725367,,1,,Europe/Paris,,AEC, +AEC:SA:01728,1,"Route de Saint Marcet",43.145022,0.739547,,1,,Europe/Paris,,AEC, +AEC:SA:01730,1,"Stade Ribet",43.118057,0.727302,,1,,Europe/Paris,,AEC, +AEC:SA:01732,1,"Centre",43.683042,1.485277,,1,,Europe/Paris,,AEC, +AEC:SA:01734,1,"Le Bois",43.472776,1.734025,,1,,Europe/Paris,,AEC, +AEC:SA:01736,1,"Peyrecave",43.474072,1.72667,,1,,Europe/Paris,,AEC, +AEC:SA:01738,1,"Calvaire",43.157106,0.694298,,1,,Europe/Paris,,AEC, +AEC:SA:01740,1,"Charlary",43.666613,1.507859,,1,,Europe/Paris,,AEC, +AEC:SA:01743,1,"Mairie",43.664832,1.504416,,1,,Europe/Paris,,AEC, +AEC:SA:01744,1,"Mirabelles",43.660973,1.491723,,1,,Europe/Paris,,AEC, +AEC:SA:01745,1,"Sidobre",43.662113,1.495386,,1,,Europe/Paris,,AEC, +AEC:SA:01747,1,"Clair Matin",43.664025,1.501136,,1,,Europe/Paris,,AEC, +AEC:SA:01749,1,"Centre",43.740217,1.371595,,1,,Europe/Paris,,AEC, +AEC:SA:01750,1,"Chemin de Gagnac",43.730788,1.363972,,1,,Europe/Paris,,AEC, +AEC:SA:01753,1,"Ecluse",43.739313,1.368208,,1,,Europe/Paris,,AEC, +AEC:SA:01755,1,"Fabas",43.737094,1.36634,,1,,Europe/Paris,,AEC, +AEC:SA:01757,1,"Gendarmerie",43.744638,1.368393,,1,,Europe/Paris,,AEC, +AEC:SA:01763,1,"Le Poutou",43.750403,1.357732,,1,,Europe/Paris,,AEC, +AEC:SA:01765,1,"Les Berges du Canal",43.744167,1.364792,,1,,Europe/Paris,,AEC, +AEC:SA:01767,1,"Novital",43.723238,1.382535,,1,,Europe/Paris,,AEC, +AEC:SA:01771,1,"En Pégéni",43.501287,1.87928,,1,,Europe/Paris,,AEC, +AEC:SA:01772,1,"La Bascule",43.490709,1.898668,,1,,Europe/Paris,,AEC, +AEC:SA:01774,1,"Saint Paul",43.494406,1.89647,,1,,Europe/Paris,,AEC, +AEC:SA:01776,1,"Trénet",43.489238,1.905677,,1,,Europe/Paris,,AEC, +AEC:SA:01778,1,"Village",43.244223,1.153233,,1,,Europe/Paris,,AEC, +AEC:SA:01780,1,"Saint-Patatin",43.216918,0.748907,,1,,Europe/Paris,,AEC, +AEC:SA:01782,1,"Bourouillas",43.331578,0.794495,,1,,Europe/Paris,,AEC, +AEC:SA:01785,1,"Marigny",43.696144,1.478971,,1,,Europe/Paris,,AEC, +AEC:SA:01787,1,"Alouettes",43.503038,1.175921,,1,,Europe/Paris,,AEC, +AEC:SA:01789,1,"Barcelone",43.507397,1.170323,,1,,Europe/Paris,,AEC, +AEC:SA:01791,1,"Boulodrome",43.515316,1.176399,,1,,Europe/Paris,,AEC, +AEC:SA:01793,1,"Eglise",43.513982,1.177881,,1,,Europe/Paris,,AEC, +AEC:SA:01794,1,"Holentis",43.505319,1.169185,,1,,Europe/Paris,,AEC, +AEC:SA:01796,1,"La Bigorre",43.506037,1.175862,,1,,Europe/Paris,,AEC, +AEC:SA:01798,1,"Maison de retraite",43.518631,1.184819,,1,,Europe/Paris,,AEC, +AEC:SA:01799,1,"Moulin de la Jalousie",43.520468,1.189772,,1,,Europe/Paris,,AEC, +AEC:SA:01801,1,"Pyrénées",43.510525,1.172845,,1,,Europe/Paris,,AEC, +AEC:SA:01803,1,"Sourdeval",43.508451,1.177213,,1,,Europe/Paris,,AEC, +AEC:SA:01805,1,"En Lance",43.651059,1.625634,,1,,Europe/Paris,,AEC, +AEC:SA:01807,1,"Escalone",43.650788,1.633524,,1,,Europe/Paris,,AEC, +AEC:SA:01809,1,"Le Crac",43.643974,1.612482,,1,,Europe/Paris,,AEC, +AEC:SA:01811,1,"Prat-Bediaou",43.19826,0.732817,,1,,Europe/Paris,,AEC, +AEC:SA:01813,1,"Syndicat d'Initiative",43.142227,0.928612,,1,,Europe/Paris,,AEC, +AEC:SA:01815,1,"Centre",43.324466,1.755859,,1,,Europe/Paris,,AEC, +AEC:SA:01817,1,"Champs Pinsons",43.56272,1.518507,,1,,Europe/Paris,,AEC, +AEC:SA:01819,1,"Clinique",43.543642,1.541178,,1,,Europe/Paris,,AEC, +AEC:SA:01821,1,"Gameville",43.549052,1.536012,,1,,Europe/Paris,,AEC, +AEC:SA:01823,1,"Lycée",43.539844,1.547479,,1,,Europe/Paris,,AEC, +AEC:SA:01825,1,"Poste",43.554337,1.5323,,1,,Europe/Paris,,AEC, +AEC:SA:01827,1,"La Boère",43.701603,1.214536,,1,,Europe/Paris,,AEC, +AEC:SA:01829,1,"Le Château",43.695938,1.223998,,1,,Europe/Paris,,AEC, +AEC:SA:01831,1,"Mairie",42.983726,0.670611,,1,,Europe/Paris,,AEC, +AEC:SA:01832,1,"Rebirechioulet",43.264273,0.712281,,1,,Europe/Paris,,AEC, +AEC:SA:01836,1,"Collège",43.564439,1.639562,,1,,Europe/Paris,,AEC, +AEC:SA:01837,1,"Le Pigeonnier",43.574217,1.610794,,1,,Europe/Paris,,AEC, +AEC:SA:01839,1,"Mairie",43.569014,1.62688,,1,,Europe/Paris,,AEC, +AEC:SA:01841,1,"Mairie II",43.57109,1.621391,,1,,Europe/Paris,,AEC, +AEC:SA:01843,1,"Montplaisir",43.567711,1.632113,,1,,Europe/Paris,,AEC, +AEC:SA:01845,1,"St Quirc",43.275961,1.50241,,1,,Europe/Paris,,AEC, +AEC:SA:01846,1,"La Gravette",43.422034,1.684477,,1,,Europe/Paris,,AEC, +AEC:SA:01848,1,"Foyer Rural",43.805598,1.327546,,1,,Europe/Paris,,AEC, +AEC:SA:01850,1,"La Serfailhère",43.804256,1.325262,,1,,Europe/Paris,,AEC, +AEC:SA:01852,1,"Maury II",43.800592,1.330247,,1,,Europe/Paris,,AEC, +AEC:SA:01854,1,"La Mule",43.748589,1.407143,,1,,Europe/Paris,,AEC, +AEC:SA:01856,1,"La Rivière",43.754707,1.406724,,1,,Europe/Paris,,AEC, +AEC:SA:01857,1,"Mairie",43.749761,1.400611,,1,,Europe/Paris,,AEC, +AEC:SA:01864,1,"Victor Hugo",43.325485,1.322251,,1,,Europe/Paris,,AEC, +AEC:SA:01865,1,"Sabatause",43.335265,1.321784,,1,,Europe/Paris,,AEC, +AEC:SA:01867,1,"Mairie",43.514745,1.083113,,1,,Europe/Paris,,AEC, +AEC:SA:01869,1,"Paguères de la Chutère",43.526455,1.104939,,1,,Europe/Paris,,AEC, +AEC:SA:01870,1,"Ecole",43.236542,1.384466,,1,,Europe/Paris,,AEC, +AEC:SA:01874,1,"Casino",43.100211,0.957334,,1,,Europe/Paris,,AEC, +AEC:SA:01875,1,"Place Compans",43.102349,0.958809,,1,,Europe/Paris,,AEC, +AEC:SA:01880,1,"Barthéry",43.279031,1.179841,,1,,Europe/Paris,,AEC, +AEC:SA:01882,1,"Mairie",43.276386,1.176787,,1,,Europe/Paris,,AEC, +AEC:SA:01883,1,"Place Marengo",43.293665,1.787008,,1,,Europe/Paris,,AEC, +AEC:SA:01885,1,"Route de Toulouse",43.295306,1.782525,,1,,Europe/Paris,,AEC, +AEC:SA:01887,1,"Calvaire",43.237978,0.739283,,1,,Europe/Paris,,AEC, +AEC:SA:01889,1,"Canard Gourmand",43.487168,0.935124,,1,,Europe/Paris,,AEC, +AEC:SA:01890,1,"Centre",43.491307,0.929509,,1,,Europe/Paris,,AEC, +AEC:SA:01891,1,"LEP",43.493863,0.930082,,1,,Europe/Paris,,AEC, +AEC:SA:01893,1,"Les Lacs",43.48876,0.92729,,1,,Europe/Paris,,AEC, +AEC:SA:01895,1,"Place du Marché",43.490514,0.931392,,1,,Europe/Paris,,AEC, +AEC:SA:01897,1,"Mairie",43.587277,1.722302,,1,,Europe/Paris,,AEC, +AEC:SA:01898,1,"Bruncan",43.033138,0.668668,,1,,Europe/Paris,,AEC, +AEC:SA:01903,1,"Garnière",43.038307,0.665838,,1,,Europe/Paris,,AEC, +AEC:SA:01904,1,"Loô",43.054438,0.679659,,1,,Europe/Paris,,AEC, +AEC:SA:01906,1,"Loô Goutillette",43.057145,0.675941,,1,,Europe/Paris,,AEC, +AEC:SA:01910,1,"Champs de Mars",43.237333,1.573902,,1,,Europe/Paris,,AEC, +AEC:SA:01912,1,"Village",43.490317,1.011558,,1,,Europe/Paris,,AEC, +AEC:SA:01914,1,"Centre",43.692643,1.354582,,1,,Europe/Paris,,AEC, +AEC:SA:01916,1,"Ferral Bayes",43.697324,1.349387,,1,,Europe/Paris,,AEC, +AEC:SA:01918,1,"Golf",43.685302,1.36058,,1,,Europe/Paris,,AEC, +AEC:SA:01920,1,"L'Aussonnelle",43.691231,1.356613,,1,,Europe/Paris,,AEC, +AEC:SA:01922,1,"Les Tricheries",43.680958,1.362416,,1,,Europe/Paris,,AEC, +AEC:SA:01924,1,"Centre",42.984924,0.788748,,1,,Europe/Paris,,AEC, +AEC:SA:01926,1,"Place",43.366962,1.665766,,1,,Europe/Paris,,AEC, +AEC:SA:01928,1,"RN 125",42.966511,0.629682,,1,,Europe/Paris,,AEC, +AEC:SA:01930,1,"Mairie",43.047188,0.778366,,1,,Europe/Paris,,AEC, +AEC:SA:01931,1,"Les Pépils",43.711478,1.167223,,1,,Europe/Paris,,AEC, +AEC:SA:01932,1,"Mairie-Eglise",43.711272,1.16113,,1,,Europe/Paris,,AEC, +AEC:SA:01938,1,"Achiary",43.600969,1.47416,,1,,Europe/Paris,,AEC, +AEC:SA:01939,1,"Airbus/la crabe",43.611383,1.370236,,1,,Europe/Paris,,AEC, +AEC:SA:01941,1,"Aqueduc (Caousou)",43.601534,1.458567,,1,,Europe/Paris,,AEC, +AEC:SA:01942,1,"Arènes",43.593352,1.418835,,1,,Europe/Paris,,AEC, +AEC:SA:01946,1,"Atlanta",43.642418,1.467522,,1,,Europe/Paris,,AEC, +AEC:SA:01948,1,"Barcelone Leclerc",43.607008,1.430472,,1,,Europe/Paris,,AEC, +AEC:SA:01950,1,"Barrau (Ste Marie des Ch)",43.589872,1.470462,,1,,Europe/Paris,,AEC, +AEC:SA:01952,1,"Barrière Croix Daurade",43.625091,1.458531,,1,,Europe/Paris,,AEC, +AEC:SA:01954,1,"Barrière de Paris",43.62614,1.434097,,1,,Europe/Paris,,AEC, +AEC:SA:01957,1,"Basso Cambo",43.570237,1.392099,,1,,Europe/Paris,,AEC, +AEC:SA:01960,1,"Bellevue Parking Lycée",43.562258,1.460293,,1,,Europe/Paris,,AEC, +AEC:SA:01961,1,"Borderouge",43.641384,1.452864,,1,,Europe/Paris,,AEC, +AEC:SA:01964,1,"Cartoucherie",43.600637,1.413348,,1,,Europe/Paris,,AEC, +AEC:SA:01966,1,"Charlas",43.630189,1.432436,,1,,Europe/Paris,,AEC, +AEC:SA:01968,1,"Chaussée",43.593342,1.442497,,1,,Europe/Paris,,AEC, +AEC:SA:01970,1,"Chouvel",43.567235,1.507486,,1,,Europe/Paris,,AEC, +AEC:SA:01972,1,"Cité de l'Hers",43.596062,1.484481,,1,,Europe/Paris,,AEC, +AEC:SA:01974,1,"Cite Madrid",43.613956,1.411406,,1,,Europe/Paris,,AEC, +AEC:SA:01976,1,"Clinique Languedoc",43.577459,1.4857,,1,,Europe/Paris,,AEC, +AEC:SA:01978,1,"Collège Vernant",43.594642,1.488491,,1,,Europe/Paris,,AEC, +AEC:SA:01980,1,"Colombette",43.605815,1.456294,,1,,Europe/Paris,,AEC, +AEC:SA:01981,1,"Compans Caffarelli",43.611468,1.437906,,1,,Europe/Paris,,AEC, +AEC:SA:01984,1,"Conseil Régional",43.588147,1.439519,,1,,Europe/Paris,,AEC, +AEC:SA:01986,1,"Courrèges",43.583954,1.469646,,1,,Europe/Paris,,AEC, +AEC:SA:01987,1,"Eglise minimes",43.618758,1.437041,,1,,Europe/Paris,,AEC, +AEC:SA:01992,1,"Esquirol",43.600299,1.444563,,1,,Europe/Paris,,AEC, +AEC:SA:01996,1,"François Verdier ( Rue de Metz )",43.600617,1.451268,,1,,Europe/Paris,,AEC, +AEC:SA:02000,1,"Vitarelles",43.587428,1.39416,,1,,Europe/Paris,,AEC, +AEC:SA:02001,1,"Gare Routière",43.612939,1.452511,,1,,Europe/Paris,,AEC, +AEC:SA:02005,1,"Gers",43.584956,1.476626,,1,,Europe/Paris,,AEC, +AEC:SA:02007,1,"Gironis",43.563738,1.425214,,1,,Europe/Paris,,AEC, +AEC:SA:02009,1,"Etats-Unis Fondeyre",43.646244,1.426242,,1,,Europe/Paris,,AEC, +AEC:SA:02011,1,"Jardin des Plantes",43.592899,1.453317,,1,,Europe/Paris,,AEC, +AEC:SA:02012,1,"Guilhemery",43.601744,1.456428,,1,,Europe/Paris,,AEC, +AEC:SA:02014,1,"Guillaumet ( Lycée Hessel )",43.616518,1.473239,,1,,Europe/Paris,,AEC, +AEC:SA:02017,1,"Héraclès",43.608526,1.428558,,1,,Europe/Paris,,AEC, +AEC:SA:02019,1,"Hippodrome",43.593803,1.408285,,1,,Europe/Paris,,AEC, +AEC:SA:02021,1,"Hôpital Purpan",43.607607,1.397795,,1,,Europe/Paris,,AEC, +AEC:SA:02023,1,"Jean Jaures",43.605387,1.448903,,1,,Europe/Paris,,AEC, +AEC:SA:02026,1,"Jeanne d'Arc",43.60906,1.446156,,1,,Europe/Paris,,AEC, +AEC:SA:02028,1,"Jules Ferry",43.632521,1.431643,,1,,Europe/Paris,,AEC, +AEC:SA:02030,1,"Jules Julien (école)",43.575781,1.45543,,1,,Europe/Paris,,AEC, +AEC:SA:02032,1,"Lafilaire ( St Joseph )",43.596408,1.473349,,1,,Europe/Paris,,AEC, +AEC:SA:02034,1,"Lalande",43.643538,1.433304,,1,,Europe/Paris,,AEC, +AEC:SA:02035,1,"Langlade",43.570346,1.424262,,1,,Europe/Paris,,AEC, +AEC:SA:02037,1,"Lapin",43.65224,1.432617,,1,,Europe/Paris,,AEC, +AEC:SA:02039,1,"Larrieu",43.547598,1.419664,,1,,Europe/Paris,,AEC, +AEC:SA:02041,1,"Limayrac",43.594347,1.473241,,1,,Europe/Paris,,AEC, +AEC:SA:02043,1,"Lycee Raymond Naves",43.636668,1.464237,,1,,Europe/Paris,,AEC, +AEC:SA:02045,1,"Lycée Toulouse Lautrec",43.62668,1.443797,,1,,Europe/Paris,,AEC, +AEC:SA:02047,1,"Marchant",43.559496,1.424657,,1,,Europe/Paris,,AEC, +AEC:SA:02048,1,"Marengo Station",43.610705,1.455387,,1,,Europe/Paris,,AEC, +AEC:SA:02049,1,"Matabiau Gare SNCF",43.611138,1.452595,,1,,Europe/Paris,,AEC, +AEC:SA:02051,1,"Mesple",43.570403,1.3868,,1,,Europe/Paris,,AEC, +AEC:SA:02054,1,"Montaudran",43.570813,1.499107,,1,,Europe/Paris,,AEC, +AEC:SA:02055,1,"Monument aux morts",43.60067,1.452257,,1,,Europe/Paris,,AEC, +AEC:SA:02057,1,"Netwiller",43.642362,1.465467,,1,,Europe/Paris,,AEC, +AEC:SA:02058,1,"Parking Lycée T Lautrec",43.626032,1.441556,,1,,Europe/Paris,,AEC, +AEC:SA:02060,1,"Passerelle",43.615283,1.442784,,1,,Europe/Paris,,AEC, +AEC:SA:02062,1,"Patte d'Oie",43.596608,1.423551,,1,,Europe/Paris,,AEC, +AEC:SA:02064,1,"Pérignon",43.600669,1.464363,,1,,Europe/Paris,,AEC, +AEC:SA:02066,1,"Pont de la vache",43.638893,1.433457,,1,,Europe/Paris,,AEC, +AEC:SA:02067,1,"Pont des Minimes",43.616318,1.437858,,1,,Europe/Paris,,AEC, +AEC:SA:02070,1,"Pont Matabiau",43.614253,1.449722,,1,,Europe/Paris,,AEC, +AEC:SA:02072,1,"Pont rocade",43.592101,1.400211,,1,,Europe/Paris,,AEC, +AEC:SA:02076,1,"Raynal",43.614531,1.451585,,1,,Europe/Paris,,AEC, +AEC:SA:02078,1,"Riche",43.648127,1.433069,,1,,Europe/Paris,,AEC, +AEC:SA:02080,1,"Riquet",43.609051,1.454748,,1,,Europe/Paris,,AEC, +AEC:SA:02082,1,"Rond Point Langlade",43.566809,1.424964,,1,,Europe/Paris,,AEC, +AEC:SA:02084,1,"Clinique Pasteur",43.595317,1.417276,,1,,Europe/Paris,,AEC, +AEC:SA:02087,1,"Route de Launaguet",43.626742,1.437302,,1,,Europe/Paris,,AEC, +AEC:SA:02089,1,"Route d'Espagne",43.552788,1.421954,,1,,Europe/Paris,,AEC, +AEC:SA:02091,1,"Saouzelong",43.579548,1.459483,,1,,Europe/Paris,,AEC, +AEC:SA:02093,1,"Clôtasses",43.556519,1.465386,,1,,Europe/Paris,,AEC, +AEC:SA:02095,1,"Silos",43.55654,1.424139,,1,,Europe/Paris,,AEC, +AEC:SA:02097,1,"St Cyprien République",43.59775,1.429774,,1,,Europe/Paris,,AEC, +AEC:SA:02101,1,"Tahiti",43.58002,1.48071,,1,,Europe/Paris,,AEC, +AEC:SA:02103,1,"Tilleuls",43.600577,1.467522,,1,,Europe/Paris,,AEC, +AEC:SA:02105,1,"Crampel (all.Demoiselles)",43.588269,1.459049,,1,,Europe/Paris,,AEC, +AEC:SA:02106,1,"Université P Sabatier Métro",43.560164,1.462873,,1,,Europe/Paris,,AEC, +AEC:SA:02107,1,"Van Dyck (Lycée Vitry)",43.642311,1.438964,,1,,Europe/Paris,,AEC, +AEC:SA:02109,1,"Vandel",43.578529,1.378707,,1,,Europe/Paris,,AEC, +AEC:SA:02115,1,"Cabanon",43.57759,1.35051,,1,,Europe/Paris,,AEC, +AEC:SA:02117,1,"Cascade",43.574975,1.345205,,1,,Europe/Paris,,AEC, +AEC:SA:02119,1,"Centre Commercial",43.588103,1.35375,,1,,Europe/Paris,,AEC, +AEC:SA:02122,1,"Collège",43.577437,1.326792,,1,,Europe/Paris,,AEC, +AEC:SA:02124,1,"Les chênes",43.584963,1.344731,,1,,Europe/Paris,,AEC, +AEC:SA:02129,1,"Mirabeau",43.574633,1.319566,,1,,Europe/Paris,,AEC, +AEC:SA:02135,1,"Petit Marquis",43.570319,1.335529,,1,,Europe/Paris,,AEC, +AEC:SA:02140,1,"Prat",43.579023,1.358716,,1,,Europe/Paris,,AEC, +AEC:SA:02142,1,"Baracou",43.470887,1.741407,,1,,Europe/Paris,,AEC, +AEC:SA:02144,1,"Craucudette",43.469996,1.747943,,1,,Europe/Paris,,AEC, +AEC:SA:02146,1,"Caroulet",43.78166,1.465137,,1,,Europe/Paris,,AEC, +AEC:SA:02148,1,"Mairie",43.778564,1.478761,,1,,Europe/Paris,,AEC, +AEC:SA:02149,1,"Saraillou",43.784958,1.469912,,1,,Europe/Paris,,AEC, +AEC:SA:02153,1,"Mairie",43.032954,0.583223,,1,,Europe/Paris,,AEC, +AEC:SA:02155,1,"Place Auriol",43.096311,0.706059,,1,,Europe/Paris,,AEC, +AEC:SA:02157,1,"Salle des Fêtes",43.095505,0.702165,,1,,Europe/Paris,,AEC, +AEC:SA:02159,1,"La Tuilerie",43.594084,1.667917,,1,,Europe/Paris,,AEC, +AEC:SA:02161,1,"Montplaisir",43.592561,1.643341,,1,,Europe/Paris,,AEC, +AEC:SA:02163,1,"En Blanc",43.480195,1.690567,,1,,Europe/Paris,,AEC, +AEC:SA:02165,1,"En Galinat",43.479299,1.696367,,1,,Europe/Paris,,AEC, +AEC:SA:02166,1,"Saint Ferréol",43.434534,2.018524,,1,,Europe/Paris,,AEC, +AEC:SA:02167,1,"Le Callègues",43.461037,1.837377,,1,,Europe/Paris,,AEC, +AEC:SA:02169,1,"Mazières",43.461557,1.834221,,1,,Europe/Paris,,AEC, +AEC:SA:02171,1,"Saint-Sauveur",43.459582,1.850454,,1,,Europe/Paris,,AEC, +AEC:SA:02173,1,"Les 4 coins",43.58149,1.766312,,1,,Europe/Paris,,AEC, +AEC:SA:02175,1,"La Plage",43.432254,1.438102,,1,,Europe/Paris,,AEC, +AEC:SA:02177,1,"La Trinité",43.421026,1.441143,,1,,Europe/Paris,,AEC, +AEC:SA:02179,1,"Square du 11 nov",43.432391,1.443381,,1,,Europe/Paris,,AEC, +AEC:SA:02181,1,"Trinité",43.425791,1.442644,,1,,Europe/Paris,,AEC, +AEC:SA:02183,1,"08-mai-45",43.429004,1.444014,,1,,Europe/Paris,,AEC, +AEC:SA:02184,1,"Collège J. Gay",43.659452,1.664426,,1,,Europe/Paris,,AEC, +AEC:SA:02186,1,"En Pastor",43.654843,1.658884,,1,,Europe/Paris,,AEC, +AEC:SA:02188,1,"Gendarmerie",43.653833,1.651052,,1,,Europe/Paris,,AEC, +AEC:SA:02190,1,"Mairie",43.656709,1.661646,,1,,Europe/Paris,,AEC, +AEC:SA:02192,1,"Montplaisir",43.652912,1.642521,,1,,Europe/Paris,,AEC, +AEC:SA:02194,1,"Bacquié",43.433537,1.433469,,1,,Europe/Paris,,AEC, +AEC:SA:02196,1,"Le Moulin",43.441646,1.423347,,1,,Europe/Paris,,AEC, +AEC:SA:02198,1,"Platanes",43.437806,1.426208,,1,,Europe/Paris,,AEC, +AEC:SA:02200,1,"En Selve",43.408053,1.655779,,1,,Europe/Paris,,AEC, +AEC:SA:02202,1,"Aygouse",43.75834,1.499949,,1,,Europe/Paris,,AEC, +AEC:SA:02203,1,"Buffevent",43.757406,1.50518,,1,,Europe/Paris,,AEC, +AEC:SA:02205,1,"En Gani",43.748843,1.489487,,1,,Europe/Paris,,AEC, +AEC:SA:02207,1,"La Corne",43.738601,1.492528,,1,,Europe/Paris,,AEC, +AEC:SA:02209,1,"Mairie",43.753566,1.491676,,1,,Europe/Paris,,AEC, +AEC:SA:02211,1,"Vigne Barrade",43.756952,1.493664,,1,,Europe/Paris,,AEC, +AEC:SA:02213,1,"Coopérative",43.838393,1.445866,,1,,Europe/Paris,,AEC, +AEC:SA:02215,1,"Le Moulin",43.829973,1.423237,,1,,Europe/Paris,,AEC, +AEC:SA:02218,1,"Negrette",43.832744,1.436025,,1,,Europe/Paris,,AEC, +AEC:SA:02219,1,"Poste",43.830641,1.432583,,1,,Europe/Paris,,AEC, +AEC:SA:02223,1,"Gare",43.398649,1.714851,,1,,Europe/Paris,,AEC, +AEC:SA:02225,1,"La Plaine",43.405381,1.709516,,1,,Europe/Paris,,AEC, +AEC:SA:02226,1,"La Fontasse",43.398461,1.71745,,1,,Europe/Paris,,AEC, +AEC:SA:02228,1,"Montplaisir",43.390912,1.725443,,1,,Europe/Paris,,AEC, +AEC:SA:02229,1,"Office du Tourisme",43.399974,1.714347,,1,,Europe/Paris,,AEC, +AEC:SA:02231,1,"Parc des Sports",43.403009,1.712061,,1,,Europe/Paris,,AEC, +AEC:SA:02233,1,"Plaisance",43.38793,1.729123,,1,,Europe/Paris,,AEC, +AEC:SA:02235,1,"Salazar",43.409032,1.706608,,1,,Europe/Paris,,AEC, +AEC:SA:02237,1,"Tertres haut",43.414276,1.699138,,1,,Europe/Paris,,AEC, +AEC:SA:02238,1,"Voltaire",43.396182,1.719988,,1,,Europe/Paris,,AEC, +AEC:SA:02239,1,"Zone industrielle",43.400256,1.701571,,1,,Europe/Paris,,AEC, +AEC:SA:02244,1,"Mairie",43.828543,1.509603,,1,,Europe/Paris,,AEC, +AEC:SA:02245,1,"Navidals",43.833502,1.479354,,1,,Europe/Paris,,AEC, +AEC:SA:02252,1,"Avenue Churcill",43.865423,1.49896,,1,,Europe/Paris,,AEC, +AEC:SA:02254,1,"Avenue Kennedy",43.859821,1.483632,,1,,Europe/Paris,,AEC, +AEC:SA:02256,1,"Avenue Leclerc",43.859066,1.501741,,1,,Europe/Paris,,AEC, +AEC:SA:02258,1,"Blessou",43.847309,1.461396,,1,,Europe/Paris,,AEC, +AEC:SA:02260,1,"Churchill",43.862009,1.502512,,1,,Europe/Paris,,AEC, +AEC:SA:02262,1,"En Tourettes",43.812004,1.461767,,1,,Europe/Paris,,AEC, +AEC:SA:02264,1,"La Bordasse",43.828166,1.473916,,1,,Europe/Paris,,AEC, +AEC:SA:02266,1,"Leclerc",43.860985,1.502928,,1,,Europe/Paris,,AEC, +AEC:SA:02268,1,"Magnanac",43.859139,1.482188,,1,,Europe/Paris,,AEC, +AEC:SA:02271,1,"Pechnauquié",43.847111,1.494326,,1,,Europe/Paris,,AEC, +AEC:SA:02272,1,"Place Saint-Jean",43.866199,1.503498,,1,,Europe/Paris,,AEC, +AEC:SA:02273,1,"Raygades",43.824799,1.471109,,1,,Europe/Paris,,AEC, +AEC:SA:02274,1,"Victor Hugo",43.864692,1.493556,,1,,Europe/Paris,,AEC, +AEC:SA:02276,1,"Seilhan",43.117408,0.665481,,1,,Europe/Paris,,AEC, +AEC:SA:02278,1,"Cantelose",43.782694,1.44964,,1,,Europe/Paris,,AEC, +AEC:SA:02280,1,"Clos Mignon",43.796197,1.452947,,1,,Europe/Paris,,AEC, +AEC:SA:02282,1,"Croustets",43.7793,1.447302,,1,,Europe/Paris,,AEC, +AEC:SA:02284,1,"Eurocentre",43.765028,1.375191,,1,,Europe/Paris,,AEC, +AEC:SA:02286,1,"Eurocentre Sud",43.765161,1.37256,,1,,Europe/Paris,,AEC, +AEC:SA:02288,1,"Galenne",43.766632,1.416558,,1,,Europe/Paris,,AEC, +AEC:SA:02290,1,"Galois",43.776562,1.443734,,1,,Europe/Paris,,AEC, +AEC:SA:02292,1,"Grisou",43.778763,1.431148,,1,,Europe/Paris,,AEC, +AEC:SA:02293,1,"Lambrie",43.766933,1.417091,,1,,Europe/Paris,,AEC, +AEC:SA:02296,1,"Mairie",43.769819,1.428755,,1,,Europe/Paris,,AEC, +AEC:SA:02298,1,"Masseribault",43.762078,1.406267,,1,,Europe/Paris,,AEC, +AEC:SA:02300,1,"Montplaisir",43.782083,1.43538,,1,,Europe/Paris,,AEC, +AEC:SA:02301,1,"Pédaoucou",43.771797,1.439236,,1,,Europe/Paris,,AEC, +AEC:SA:02305,1,"La Samarante",43.429367,1.6753,,1,,Europe/Paris,,AEC, +AEC:SA:02307,1,"Le Puntou",43.434175,1.665243,,1,,Europe/Paris,,AEC, +AEC:SA:02308,1,"Roquefort",43.438487,1.653172,,1,,Europe/Paris,,AEC, +AEC:SA:02309,1,"Vieille Halle",43.435656,1.661285,,1,,Europe/Paris,,AEC, +AEC:SA:02323,1,"La Bordasse",43.341476,1.163566,,1,,Europe/Paris,,AEC, +AEC:SA:02324,1,"Gare SNCF",43.179659,0.972641,,1,,Europe/Paris,,AEC, +AEC:SA:02327,1,"Métro",43.555878,1.477306,,1,,Europe/Paris,,AEC, +AEC:SA:02329,1,"Aneto",43.609139,1.363102,,1,,Europe/Paris,,AEC, +AEC:SA:02331,1,"Lemire",43.596739,1.40308,,1,,Europe/Paris,,AEC, +AEC:SA:02333,1,"Salle des fêtes",43.492498,1.146555,,1,,Europe/Paris,,AEC, +AEC:SA:06215,1,"R République/Village",43.400836,1.560656,,1,,Europe/Paris,,AEC, +AEC:SA:08743,1,"Poney Club",43.68795,1.570407,,1,,Europe/Paris,,AEC, +AEC:SA:08744,1,"Place du Paty",43.283694,1.06666,,1,,Europe/Paris,,AEC, +AEC:SA:08745,1,"Route de Daux",43.673051,1.28331,,1,,Europe/Paris,,AEC, +AEC:SA:08746,1,"Pont",43.311432,1.532803,,1,,Europe/Paris,,AEC, +AEC:SA:12384,1,"Village",43.16961,0.676065,,1,,Europe/Paris,,AEC, +AEC:SA:12385,1,"Salles des Fêtes",43.756496,1.555,,1,,Europe/Paris,,AEC, +AEC:SA:13368,1,"Falcou",43.350368,1.473354,,1,,Europe/Paris,,AEC, +AEC:SA:14614,1,"Nougaret",43.326232,1.191507,,1,,Europe/Paris,,AEC, +AEC:SA:14617,1,"Muna",42.899661,0.632682,,1,,Europe/Paris,,AEC, +AEC:SA:14620,1,"Lycée",43.398225,1.72571,,1,,Europe/Paris,,AEC, +AEC:SA:14672,1,"Ecoles",43.689153,1.415451,,1,,Europe/Paris,,AEC, +AEC:SA:14698,1,"Château",43.737796,1.021277,,1,,Europe/Paris,,AEC, +AEC:SA:14700,1,"Faculté de Pharmacie",43.567516,1.464196,,1,,Europe/Paris,,AEC, +AEC:SA:14702,1,"Lafaurie",43.574538,1.490546,,1,,Europe/Paris,,AEC, +AEC:SA:14703,1,"CNES-IAS",43.56269,1.48096,,1,,Europe/Paris,,AEC, +AEC:SA:14735,1,"Place du relais",43.637512,1.390427,,1,,Europe/Paris,,AEC, +AEC:SA:14736,1,"Pl.Massenet",43.08099,0.67203,,1,,Europe/Paris,,AEC, +AEC:SA:14790,1,"Bourdou",43.676955,1.280021,,1,,Europe/Paris,,AEC, +AEC:SA:14834,1,"Village",43.613735,1.63168,,1,,Europe/Paris,,AEC, +AEC:SA:14881,1,"L'Auriol",43.585849,1.586117,,1,,Europe/Paris,,AEC, +AEC:SA:14883,1,"RD 27",43.264908,1.521139,,1,,Europe/Paris,,AEC, +AEC:SA:14884,1,"RD 27",43.25607,1.539453,,1,,Europe/Paris,,AEC, +AEC:SA:15245,1,"Halte Routière",42.80986,0.709405,,1,,Europe/Paris,,AEC, +AEC:SA:15267,1,"Cimetière",43.46582,1.323732,,1,,Europe/Paris,,AEC, +AEC:SA:15276,1,"Gare",43.020972,0.61004,,1,,Europe/Paris,,AEC, +AEC:SA:15278,1,"Collège",43.705229,1.463207,,1,,Europe/Paris,,AEC, +AEC:SA:15288,1,"A320",43.609422,1.357744,,1,,Europe/Paris,,AEC, +AEC:SA:15290,1,"Passerelle Airbus",43.609059,1.367191,,1,,Europe/Paris,,AEC, +AEC:SA:15292,1,"Crabe",43.610514,1.371985,,1,,Europe/Paris,,AEC, +AEC:SA:15294,1,"Ctre Cial Purpan Sud",43.608149,1.393376,,1,,Europe/Paris,,AEC, +AEC:SA:15312,1,"Douzans",43.468241,1.328382,,1,,Europe/Paris,,AEC, +OBO:SA:11N95,1,"11 Novembre",44.89488,-0.501162,,1,,Europe/Paris,,OBO, +OBO:SA:14JU45,1,"14 Juillet",44.822601,-0.593441,,1,,Europe/Paris,,OBO, +OBO:SA:14JUI,1,"14 Juillet",44.847797,-0.602155,,1,,Europe/Paris,,OBO, +OBO:SA:14JUIL,1,"14 Juillet",44.807699,-0.547551,,1,,Europe/Paris,,OBO, +OBO:SA:19MA91,1,"19 Mars 1962",45.012373,-0.535702,,1,,Europe/Paris,,OBO, +OBO:SA:3CARDI,1,"Les 3 Cardinaux",44.88677,-0.54949,,1,,Europe/Paris,,OBO, +OBO:SA:3TOUR,1,"Les 3 Tours",44.78729,-0.604958,,1,,Europe/Paris,,OBO, +OBO:SA:4CASTE,1,"Quatre Castéra",44.80601,-0.539348,,1,,Europe/Paris,,OBO, +OBO:SA:4CHEM,1,"Quatre Chemins",44.832703,-0.648684,,1,,Europe/Paris,,OBO, +OBO:SA:4PAVI,1,"4 Pavillons",44.865438,-0.514792,,1,,Europe/Paris,,OBO, +OBO:SA:4SAISO,1,"Les 4 Saisons",44.869146,-0.475889,,1,,Europe/Paris,,OBO, +OBO:SA:5CHEMI,1,"5 Chemins",44.860814,-0.696057,,1,,Europe/Paris,,OBO, +OBO:SA:8MA90,1,"Mairie de Bassens",44.899881,-0.515854,,1,,Europe/Paris,,OBO, +OBO:SA:8Mai37,1,"8 Mai",44.907557,-0.646585,,1,,Europe/Paris,,OBO, +OBO:SA:8Mai4,1,"8 Mai 1945",44.867258,-0.603334,,1,,Europe/Paris,,OBO, +OBO:SA:8Mai45,1,"8 Mai 1945",44.8519,-0.511157,,1,,Europe/Paris,,OBO, +OBO:SA:ABATT,1,"Anciens Abattoirs",44.817204,-0.605308,,1,,Europe/Paris,,OBO, +OBO:SA:ABOETI,1,"Avenue de la Boétie",44.909679,-0.67178,,1,,Europe/Paris,,OBO, +OBO:SA:ABORDE,1,"Avenue de Bordeaux",44.887095,-0.507376,,1,,Europe/Paris,,OBO, +OBO:SA:ABR35,1,"Aristide Briand",44.825866,-0.63757,,1,,Europe/Paris,,OBO, +OBO:SA:ABR48,1,"Aristide Briand",44.824594,-0.624,,1,,Europe/Paris,,OBO, +OBO:SA:ACAC73,1,"Acacias",44.835674,-0.68596,,1,,Europe/Paris,,OBO, +OBO:SA:ACACI,1,"Acacias",44.885249,-0.529078,,1,,Europe/Paris,,OBO, +OBO:SA:ACAMUS,1,"Collège Albert Camus",44.882505,-0.645768,,1,,Europe/Paris,,OBO, +OBO:SA:ACANEJ,1,"Châtaigneraie",44.793475,-0.647573,,1,,Europe/Paris,,OBO, +OBO:SA:ACAPE,1,"Avenue de Capeyron",44.867287,-0.710191,,1,,Europe/Paris,,OBO, +OBO:SA:ACESAI,1,"Aimé Césaire",44.878048,-0.6641,,1,,Europe/Paris,,OBO, +OBO:SA:ACIERI,1,"Stade Nautique",44.802583,-0.643841,,1,,Europe/Paris,,OBO, +OBO:SA:ACURE,1,"Allée de Curé",44.911385,-0.685015,,1,,Europe/Paris,,OBO, +OBO:SA:AEROD,1,"Aéroport (arrêt de Descente)",44.831466,-0.701485,,1,,Europe/Paris,,OBO, +OBO:SA:AEROG,1,"Mérignac Aéroport",44.830474,-0.701254,,1,,Europe/Paris,,OBO, +OBO:SA:AEYSIN,1,"Avenue d'Eysines",44.859885,-0.612758,,1,,Europe/Paris,,OBO, +OBO:SA:AFPA,1,"AFPA Pessac",44.790172,-0.649877,,1,,Europe/Paris,,OBO, +OBO:SA:AFR21,1,"Anatole France",44.766474,-0.580118,,1,,Europe/Paris,,OBO, +OBO:SA:AFRAN,1,"Anatole France",44.846269,-0.535762,,1,,Europe/Paris,,OBO, +OBO:SA:AGRIE,1,"Agrières",44.910998,-0.681189,,1,,Europe/Paris,,OBO, +OBO:SA:AIA,1,"AIA",44.827125,-0.538229,,1,,Europe/Paris,,OBO, +OBO:SA:AIGLON,1,"L'Aiglon",44.865196,-0.670213,,1,,Europe/Paris,,OBO, +OBO:SA:AIREL,1,"Les Airelles",44.766306,-0.595744,,1,,Europe/Paris,,OBO, +OBO:SA:ALAFON,1,"Ecole Arnaud Lafon",44.828416,-0.667289,,1,,Europe/Paris,,OBO, +OBO:SA:ALBRE,1,"Albret",44.832778,-0.580001,,1,,Europe/Paris,,OBO, +OBO:SA:ALFONS,1,"Alfonséa",44.825978,-0.527405,,1,,Europe/Paris,,OBO, +OBO:SA:ALIENO,1,"Collège Aliénor d'Aquitaine",44.846153,-0.780183,,1,,Europe/Paris,,OBO, +OBO:SA:ALL22,1,"Allende",44.800602,-0.557647,,1,,Europe/Paris,,OBO, +OBO:SA:ALLAR,1,"Allard",44.877785,-0.591493,,1,,Europe/Paris,,OBO, +OBO:SA:ALLE40,1,"Allende",44.788996,-0.587077,,1,,Europe/Paris,,OBO, +OBO:SA:ALLEN,1,"Allende",44.867389,-0.522201,,1,,Europe/Paris,,OBO, +OBO:SA:ALOHA,1,"Aloha",44.915718,-0.680351,,1,,Europe/Paris,,OBO, +OBO:SA:AMBAR,1,"Ambarès Eglise",44.924425,-0.484169,,1,,Europe/Paris,,OBO, +OBO:SA:AMBCEN,1,"Ambarès Centre",44.926748,-0.486673,,1,,Europe/Paris,,OBO, +OBO:SA:AMITIE,1,"Rue de l'Amitié",44.86321,-0.5103,,1,,Europe/Paris,,OBO, +OBO:SA:AMPERE,1,"Ampère",44.862409,-0.584673,,1,,Europe/Paris,,OBO, +OBO:SA:ANATOF,1,"Anatole France",44.836025,-0.624035,,1,,Europe/Paris,,OBO, +OBO:SA:ANDER,1,"Le Trinquet",44.80163,-0.663452,,1,,Europe/Paris,,OBO, +OBO:SA:ANDRIA,1,"La Renney",44.911869,-0.624992,,1,,Europe/Paris,,OBO, +OBO:SA:ANFRAN,1,"Anatole France",44.870206,-0.612155,,1,,Europe/Paris,,OBO, +OBO:SA:ANORD,1,"Allée du Nord",44.914149,-0.742119,,1,,Europe/Paris,,OBO, +OBO:SA:ANSOC,1,"Beutre Antenne Sociale",44.815871,-0.700894,,1,,Europe/Paris,,OBO, +OBO:SA:ANSPOR,1,"Antennes Sportives",44.897839,-0.571493,,1,,Europe/Paris,,OBO, +OBO:SA:ANTIL,1,"Esplanade des Antilles",44.79283,-0.623407,,1,,Europe/Paris,,OBO, +OBO:SA:ANTOUN,1,"Antoune",44.862932,-0.654445,,1,,Europe/Paris,,OBO, +OBO:SA:APARIS,1,"Avenue de Paris",44.871585,-0.51192,,1,,Europe/Paris,,OBO, +OBO:SA:APINS,1,"Allées des Pins",44.836345,-0.601787,,1,,Europe/Paris,,OBO, +OBO:SA:AQUA,1,"Espace Aquatique",44.894035,-0.750529,,1,,Europe/Paris,,OBO, +OBO:SA:AQUIT,1,"Ausone",44.878862,-0.60498,,1,,Europe/Paris,,OBO, +OBO:SA:ARAG45,1,"Arago (Médiathèque)",44.79774,-0.645034,,1,,Europe/Paris,,OBO, +OBO:SA:ARBOUD,1,"Carrière de Bos",44.945406,-0.613664,,1,,Europe/Paris,,OBO, +OBO:SA:ARCHES,1,"Arches de l'Estey",44.792587,-0.534927,,1,,Europe/Paris,,OBO, +OBO:SA:ARCHEV,1,"L'Archevêque",44.880804,-0.507671,,1,,Europe/Paris,,OBO, +OBO:SA:ARCHI,1,"Ecole d'Architecture",44.792773,-0.605259,,1,,Europe/Paris,,OBO, +OBO:SA:ARCIEL,1,"Arc-en-Ciel",44.876042,-0.585493,,1,,Europe/Paris,,OBO, +OBO:SA:ARCINS,1,"Rives d'arcins",44.791344,-0.531375,,1,,Europe/Paris,,OBO, +OBO:SA:ARIANE,1,"Ariane",44.862488,-0.699241,,1,,Europe/Paris,,OBO, +OBO:SA:ARICAR,1,"André Ricard",44.859603,-0.539731,,1,,Europe/Paris,,OBO, +OBO:SA:ARIST,1,"Aristide Briand",44.857904,-0.524318,,1,,Europe/Paris,,OBO, +OBO:SA:ARMED,1,"Archimède",44.785738,-0.643707,,1,,Europe/Paris,,OBO, +OBO:SA:ARSON,1,"Arsonval",44.779636,-0.658633,,1,,Europe/Paris,,OBO, +OBO:SA:ARTFON,1,"Fontderode",44.862347,-0.476317,,1,,Europe/Paris,,OBO, +OBO:SA:ASCOT,1,"Les Pelouses d'Ascott",44.822561,-0.495457,,1,,Europe/Paris,,OBO, +OBO:SA:ASOULA,1,"Avenue de Soulac",44.90894,-0.667939,,1,,Europe/Paris,,OBO, +OBO:SA:ASSED,1,"Carsat",44.895515,-0.553061,,1,,Europe/Paris,,OBO, +OBO:SA:ASTADE,1,"Avenue du Stade",44.909791,-0.69231,,1,,Europe/Paris,,OBO, +OBO:SA:ATELI,1,"Ateliers municipaux",44.880885,-0.531821,,1,,Europe/Paris,,OBO, +OBO:SA:AUCHAN,1,"Centre Commercial du Lac",44.88196,-0.564461,,1,,Europe/Paris,,OBO, +OBO:SA:AUNIV,1,"Avenue de l'Université",44.801246,-0.59467,,1,,Europe/Paris,,OBO, +OBO:SA:AURIA,1,"Auriac",44.814746,-0.552896,,1,,Europe/Paris,,OBO, +OBO:SA:AURIO,1,"Auriol",44.762333,-0.581657,,1,,Europe/Paris,,OBO, +OBO:SA:AURIOL,1,"Auriol",44.840765,-0.684786,,1,,Europe/Paris,,OBO, +OBO:SA:AUSO34,1,"Ausone",44.801151,-0.616994,,1,,Europe/Paris,,OBO, +OBO:SA:AUSO95,1,"Ausone",44.896054,-0.50949,,1,,Europe/Paris,,OBO, +OBO:SA:AUSON,1,"Les Méridiennes",44.872456,-0.599644,,1,,Europe/Paris,,OBO, +OBO:SA:AVAUSO,1,"Avenue Ausone",44.870273,-0.592463,,1,,Europe/Paris,,OBO, +OBO:SA:AVEURO,1,"Avenue de l'Europe",44.877834,-0.614421,,1,,Europe/Paris,,OBO, +OBO:SA:AVGTA,1,"Avenue Gambetta",44.818588,-0.629203,,1,,Europe/Paris,,OBO, +OBO:SA:AVIAU,1,"Rue d'Aviau",44.850117,-0.576825,,1,,Europe/Paris,,OBO, +OBO:SA:AVIEIL,1,"Allée Vieille",44.878784,-0.736375,,1,,Europe/Paris,,OBO, +OBO:SA:AVTAI,1,"Avenue du Taillan",44.872295,-0.633488,,1,,Europe/Paris,,OBO, +OBO:SA:AVTAI2,1,"19 Mars 1962",44.876618,-0.642793,,1,,Europe/Paris,,OBO, +OBO:SA:AVTAI3,1,"Sirtema",44.883435,-0.655132,,1,,Europe/Paris,,OBO, +OBO:SA:BA106,1,"BA 106",44.81525,-0.7099,,1,,Europe/Paris,,OBO, +OBO:SA:BACCHU,1,"Bacchus",44.886134,-0.596547,,1,,Europe/Paris,,OBO, +OBO:SA:BAGAT,1,"Bagatelle",44.808575,-0.573857,,1,,Europe/Paris,,OBO, +OBO:SA:BALGUE,1,"Balguerie",44.891084,-0.603312,,1,,Europe/Paris,,OBO, +OBO:SA:BALLET,1,"Ballet",44.941792,-0.542029,,1,,Europe/Paris,,OBO, +OBO:SA:BALOUE,1,"Les Bois de l'Alouette",44.797375,-0.688903,,1,,Europe/Paris,,OBO, +OBO:SA:BANLI,1,"Banlin",44.865722,-0.538616,,1,,Europe/Paris,,OBO, +OBO:SA:BAOUR,1,"Libre Service de Gros",44.890656,-0.54817,,1,,Europe/Paris,,OBO, +OBO:SA:BARAIL,1,"Baraille",44.955997,-0.513168,,1,,Europe/Paris,,OBO, +OBO:SA:BARANQ,1,"La Baranquine",44.89879,-0.531927,,1,,Europe/Paris,,OBO, +OBO:SA:BARDAN,1,"Bardanac",44.796354,-0.60959,,1,,Europe/Paris,,OBO, +OBO:SA:BARE,1,"Barre",44.931555,-0.480673,,1,,Europe/Paris,,OBO, +OBO:SA:BARES,1,"Barrière d'Arès",44.836168,-0.598702,,1,,Europe/Paris,,OBO, +OBO:SA:BAROR,1,"Barrière d'Ornano",44.831393,-0.598025,,1,,Europe/Paris,,OBO, +OBO:SA:BAROT,1,"Barot",44.959313,-0.504611,,1,,Europe/Paris,,OBO, +OBO:SA:BARRE,1,"Barrès",44.887304,-0.546796,,1,,Europe/Paris,,OBO, +OBO:SA:BARTHS,1,"Barthès",44.768905,-0.602571,,1,,Europe/Paris,,OBO, +OBO:SA:BASFLO,1,"Bassins à Flot",44.862954,-0.556981,,1,,Europe/Paris,,OBO, +OBO:SA:BATAN,1,"Stade Batany",44.84262,-0.607071,,1,,Europe/Paris,,OBO, +OBO:SA:BAUDO,1,"Baudon",44.883362,-0.629527,,1,,Europe/Paris,,OBO, +OBO:SA:BAUGE,1,"Ferme de Baugé",44.773966,-0.583258,,1,,Europe/Paris,,OBO, +OBO:SA:BAZIN,1,"Bazin",44.826643,-0.652178,,1,,Europe/Paris,,OBO, +OBO:SA:BBEGL,1,"Barrière de Bègles",44.813562,-0.564305,,1,,Europe/Paris,,OBO, +OBO:SA:BCHENA,1,"La Chênaie",44.919672,-0.515287,,1,,Europe/Paris,,OBO, +OBO:SA:BEAU95,1,"Beauval",44.905772,-0.503142,,1,,Europe/Paris,,OBO, +OBO:SA:BEAUJE,1,"Beaujet",44.946803,-0.511354,,1,,Europe/Paris,,OBO, +OBO:SA:BEAUSE,1,"Beauséjour",44.800165,-0.685303,,1,,Europe/Paris,,OBO, +OBO:SA:BEAUSO,1,"Beausoleil",44.757652,-0.625105,,1,,Europe/Paris,,OBO, +OBO:SA:BEAUT,1,"Beautiran",44.821724,-0.57135,,1,,Europe/Paris,,OBO, +OBO:SA:BEAUVA,1,"Beauvais",44.949795,-0.487752,,1,,Europe/Paris,,OBO, +OBO:SA:BECASS,1,"Allée des Bécasses",44.931731,-0.759967,,1,,Europe/Paris,,OBO, +OBO:SA:BECH92,1,"Béchade",45.023092,-0.545256,,1,,Europe/Paris,,OBO, +OBO:SA:BECHA,1,"Bechade",44.868025,-0.670706,,1,,Europe/Paris,,OBO, +OBO:SA:BEDAT,1,"Bedat",44.84663,-0.649697,,1,,Europe/Paris,,OBO, +OBO:SA:BELAI,1,"Bel Air",44.839747,-0.607457,,1,,Europe/Paris,,OBO, +OBO:SA:BELAIR,1,"Belair",44.941919,-0.630375,,1,,Europe/Paris,,OBO, +OBO:SA:BELFO,1,"Belfort",44.894544,-0.768107,,1,,Europe/Paris,,OBO, +OBO:SA:BELL48,1,"Belleville",44.833506,-0.583138,,1,,Europe/Paris,,OBO, +OBO:SA:BELLEV,1,"Bellevue",44.791433,-0.650719,,1,,Europe/Paris,,OBO, +OBO:SA:BELLOC,1,"Belloc",44.917892,-0.506328,,1,,Europe/Paris,,OBO, +OBO:SA:BELLON,1,"Bellonte",44.828579,-0.68968,,1,,Europe/Paris,,OBO, +OBO:SA:BELOR,1,"Bel-Orme",44.847438,-0.595442,,1,,Europe/Paris,,OBO, +OBO:SA:BELVUE,1,"Bellevue",44.845592,-0.72633,,1,,Europe/Paris,,OBO, +OBO:SA:BENEDI,1,"Bénédigues",44.799136,-0.583427,,1,,Europe/Paris,,OBO, +OBO:SA:BERAL,1,"Béraldi",44.831837,-0.520028,,1,,Europe/Paris,,OBO, +OBO:SA:BERGLA,1,"Berges du Lac",44.879571,-0.573315,,1,,Europe/Paris,,OBO, +OBO:SA:BERIVE,1,"Belle Rive",44.960825,-0.533991,,1,,Europe/Paris,,OBO, +OBO:SA:BERLE3,1,"Les Aulnes",44.865905,-0.679302,,1,,Europe/Paris,,OBO, +OBO:SA:BERLI,1,"Berlioz",44.838102,-0.509718,,1,,Europe/Paris,,OBO, +OBO:SA:BERLIN,1,"Berlincan",44.882245,-0.687999,,1,,Europe/Paris,,OBO, +OBO:SA:BERLIO,1,"Berlioz",44.824522,-0.628269,,1,,Europe/Paris,,OBO, +OBO:SA:BERLIQ,1,"Berliquet",44.815032,-0.498154,,1,,Europe/Paris,,OBO, +OBO:SA:BERNAT,1,"Bernatet",44.934587,-0.511477,,1,,Europe/Paris,,OBO, +OBO:SA:BERNED,1,"Bernède",44.878309,-0.678005,,1,,Europe/Paris,,OBO, +OBO:SA:BERSO,1,"Bersol",44.775519,-0.6427,,1,,Europe/Paris,,OBO, +OBO:SA:BERT,1,"Docteur Bert",44.856335,-0.628894,,1,,Europe/Paris,,OBO, +OBO:SA:BERT01,1,"Berthelot",44.8562,-0.571092,,1,,Europe/Paris,,OBO, +OBO:SA:BERTHE,1,"Berthelot",44.864746,-0.578746,,1,,Europe/Paris,,OBO, +OBO:SA:BERTI,1,"Bertin",44.815967,-0.565673,,1,,Europe/Paris,,OBO, +OBO:SA:BETNO,1,"Betnoms",44.858612,-0.681776,,1,,Europe/Paris,,OBO, +OBO:SA:BETOI,1,"Mélac",44.823,-0.500239,,1,,Europe/Paris,,OBO, +OBO:SA:BETOIL,1,"La Belle Etoile",44.825071,-0.476086,,1,,Europe/Paris,,OBO, +OBO:SA:BFLOT,1,"La Cité du Vin",44.860597,-0.554176,,1,,Europe/Paris,,OBO, +OBO:SA:BGOTH,1,"Bertrand de Goth",44.819123,-0.576408,,1,,Europe/Paris,,OBO, +OBO:SA:BHALIV,1,"Boulevard du haut Livrac",44.798305,-0.674517,,1,,Europe/Paris,,OBO, +OBO:SA:BIB02,1,"Bibliothèque",44.805221,-0.542941,,1,,Europe/Paris,,OBO, +OBO:SA:BIBLAN,1,"Biblanque",44.879361,-0.646825,,1,,Europe/Paris,,OBO, +OBO:SA:BIBLIO,1,"Bibliothèque",44.83507,-0.586329,,1,,Europe/Paris,,OBO, +OBO:SA:BICHOU,1,"Le Bichou",44.918006,-0.743626,,1,,Europe/Paris,,OBO, +OBO:SA:BIGEAU,1,"Bigeau",44.95542,-0.61061,,1,,Europe/Paris,,OBO, +OBO:SA:BILLA,1,"Billaudel (rue Malbec)",44.824872,-0.563566,,1,,Europe/Paris,,OBO, +OBO:SA:BILLAU,1,"Billaudel",44.820704,-0.561155,,1,,Europe/Paris,,OBO, +OBO:SA:BIRHA,1,"Bir Hakeim",44.831711,-0.625327,,1,,Europe/Paris,,OBO, +OBO:SA:BISSY,1,"Stade Cruchon",44.818656,-0.648943,,1,,Europe/Paris,,OBO, +OBO:SA:BJUDA,1,"Barrière Judaïque",44.840121,-0.599644,,1,,Europe/Paris,,OBO, +OBO:SA:BLAN80,1,"Blancherie",44.848418,-0.499835,,1,,Europe/Paris,,OBO, +OBO:SA:BLANC2,1,"Blanc",44.881169,-0.640477,,1,,Europe/Paris,,OBO, +OBO:SA:BLANCH,1,"Blanchet",44.943553,-0.469648,,1,,Europe/Paris,,OBO, +OBO:SA:BLANKI,1,"Blanqui",44.841393,-0.54201,,1,,Europe/Paris,,OBO, +OBO:SA:BLANQI,1,"Blanqui",44.876071,-0.548316,,1,,Europe/Paris,,OBO, +OBO:SA:BLANQU,1,"Chanzy",44.865973,-0.590547,,1,,Europe/Paris,,OBO, +OBO:SA:BLAYAI,1,"Blayais",44.768295,-0.719346,,1,,Europe/Paris,,OBO, +OBO:SA:BLEUE,1,"Bleuets",44.85682,-0.63663,,1,,Europe/Paris,,OBO, +OBO:SA:BMEDO,1,"Barrière du Médoc",44.853605,-0.5942,,1,,Europe/Paris,,OBO, +OBO:SA:BMONT,1,"Bois de Mont",44.898572,-0.706827,,1,,Europe/Paris,,OBO, +OBO:SA:BOBET,1,"Bobet",44.782715,-0.593592,,1,,Europe/Paris,,OBO, +OBO:SA:BOETIE,1,"La Boétie",44.903244,-0.701327,,1,,Europe/Paris,,OBO, +OBO:SA:BOIRO,1,"Boiron",44.787653,-0.67781,,1,,Europe/Paris,,OBO, +OBO:SA:BOISVE,1,"Bois Vert",44.927645,-0.503132,,1,,Europe/Paris,,OBO, +OBO:SA:BOLIVA,1,"Bolivar",44.876228,-0.55054,,1,,Europe/Paris,,OBO, +OBO:SA:BONAI,1,"Chemin Bon Air",44.824292,-0.650246,,1,,Europe/Paris,,OBO, +OBO:SA:BONCO,1,"Boncour",44.81302,-0.664879,,1,,Europe/Paris,,OBO, +OBO:SA:BONNA,1,"Bonnardel",44.769552,-0.578865,,1,,Europe/Paris,,OBO, +OBO:SA:BONNET,1,"Bonnet",45.015757,-0.532983,,1,,Europe/Paris,,OBO, +OBO:SA:BONTE,1,"Bontemps",44.806862,-0.576824,,1,,Europe/Paris,,OBO, +OBO:SA:BOUDE,1,"Caserne Boudet",44.827671,-0.586046,,1,,Europe/Paris,,OBO, +OBO:SA:BOUR32,1,"Bourbon",44.840075,-0.520551,,1,,Europe/Paris,,OBO, +OBO:SA:BOURAN,1,"Bourranville",44.839338,-0.630221,,1,,Europe/Paris,,OBO, +OBO:SA:BOURGO,1,"Colonel Bourgoin",44.841597,-0.763096,,1,,Europe/Paris,,OBO, +OBO:SA:BOUSQE,1,"La Bousquette",45.00134,-0.504149,,1,,Europe/Paris,,OBO, +OBO:SA:BOUSQU,1,"Le Bousquet",44.960407,-0.533679,,1,,Europe/Paris,,OBO, +OBO:SA:BOUTA,1,"Les Aubiers",44.873991,-0.575584,,1,,Europe/Paris,,OBO, +OBO:SA:BOUTAU,1,"Boutaut",44.868277,-0.576994,,1,,Europe/Paris,,OBO, +OBO:SA:BOUTH,1,"Bouthier",44.852001,-0.557192,,1,,Europe/Paris,,OBO, +OBO:SA:BOYAU,1,"La Boyauderie",44.894507,-0.669271,,1,,Europe/Paris,,OBO, +OBO:SA:BPARC,1,"Bout du Parc",44.95193,-0.50776,,1,,Europe/Paris,,OBO, +OBO:SA:BPDOR,1,"Pomme d'Or",44.913613,-0.517818,,1,,Europe/Paris,,OBO, +OBO:SA:BPESS,1,"Barrière de Pessac",44.825313,-0.588538,,1,,Europe/Paris,,OBO, +OBO:SA:BPESS2,1,"Barrière de Pessac (Bd George V)",44.825936,-0.590089,,1,,Europe/Paris,,OBO, +OBO:SA:BPLAGE,1,"Bègles Plage",44.801927,-0.538224,,1,,Europe/Paris,,OBO, +OBO:SA:BRASCA,1,"Brascassat",44.813745,-0.554751,,1,,Europe/Paris,,OBO, +OBO:SA:BRAZZ,1,"Quai de Brazza",44.855655,-0.550195,,1,,Europe/Paris,,OBO, +OBO:SA:BRCENT,1,"Bruges Centre",44.882714,-0.61097,,1,,Europe/Paris,,OBO, +OBO:SA:BREILL,1,"Breillan",44.918331,-0.6632,,1,,Europe/Paris,,OBO, +OBO:SA:BREL66,1,"Jacques Brel",44.878047,-0.500238,,1,,Europe/Paris,,OBO, +OBO:SA:BREMON,1,"Brémontier",44.816058,-0.63406,,1,,Europe/Paris,,OBO, +OBO:SA:BRETA,1,"Bretagne",44.795053,-0.682409,,1,,Europe/Paris,,OBO, +OBO:SA:BRETEI,1,"Breteil",44.880225,-0.647674,,1,,Europe/Paris,,OBO, +OBO:SA:BRGARD,1,"Beauregard",45.00874,-0.522678,,1,,Europe/Paris,,OBO, +OBO:SA:BRIAN,1,"Lormont Bas (A. Briand)",44.877137,-0.534481,,1,,Europe/Paris,,OBO, +OBO:SA:BRICAU,1,"Bricaud",44.895429,-0.565323,,1,,Europe/Paris,,OBO, +OBO:SA:BRIGN,1,"Brignon",44.775456,-0.575053,,1,,Europe/Paris,,OBO, +OBO:SA:BRION,1,"Brion",44.876496,-0.603059,,1,,Europe/Paris,,OBO, +OBO:SA:BRISSO,1,"Brisson",44.94521,-0.539244,,1,,Europe/Paris,,OBO, +OBO:SA:BROUST,1,"Broustey",44.937331,-0.501765,,1,,Europe/Paris,,OBO, +OBO:SA:BRUCA,1,"Bruca",44.774612,-0.579858,,1,,Europe/Paris,,OBO, +OBO:SA:BRUN,1,"Brun",44.817477,-0.572252,,1,,Europe/Paris,,OBO, +OBO:SA:BRUN10,1,"Saint Bruno - Hôtel de Région",44.837861,-0.58949,,1,,Europe/Paris,,OBO, +OBO:SA:BRUNEL,1,"Les Brunelles",44.770097,-0.600825,,1,,Europe/Paris,,OBO, +OBO:SA:BRUTA,1,"Brutails",44.884423,-0.523448,,1,,Europe/Paris,,OBO, +OBO:SA:BRUYE,1,"Clos des Bruyères",44.815376,-0.691263,,1,,Europe/Paris,,OBO, +OBO:SA:BSMED,1,"Barrière Saint Médard",44.848697,-0.597474,,1,,Europe/Paris,,OBO, +OBO:SA:BTOUL2,1,"Barrière de Toulouse",44.815429,-0.572451,,1,,Europe/Paris,,OBO, +OBO:SA:BTRAVA,1,"Bourse du Travail",44.832147,-0.5786,,1,,Europe/Paris,,OBO, +OBO:SA:BURCK,1,"Le Burck",44.814417,-0.634904,,1,,Europe/Paris,,OBO, +OBO:SA:BVERN,1,"Brienne Vernet",44.823324,-0.543371,,1,,Europe/Paris,,OBO, +OBO:SA:BXPLAG,1,"Bordeaux Plage",44.877277,-0.579469,,1,,Europe/Paris,,OBO, +OBO:SA:BZFRET,1,"Zone de Fret",44.894548,-0.604048,,1,,Europe/Paris,,OBO, +OBO:SA:CABAN,1,"Cabannes",44.820334,-0.519833,,1,,Europe/Paris,,OBO, +OBO:SA:CABOS,1,"Cap de Bos",44.792655,-0.681207,,1,,Europe/Paris,,OBO, +OBO:SA:CADMI,1,"Centre Administratif",44.866809,-0.596062,,1,,Europe/Paris,,OBO, +OBO:SA:CADMN,1,"Cité administrative",44.841509,-0.600383,,1,,Europe/Paris,,OBO, +OBO:SA:CAF,1,"Caisse des Dépôts",44.89115,-0.56119,,1,,Europe/Paris,,OBO, +OBO:SA:CAILAU,1,"Cailleau",44.903873,-0.518377,,1,,Europe/Paris,,OBO, +OBO:SA:CAIRON,1,"Cité Cairon",44.818833,-0.578973,,1,,Europe/Paris,,OBO, +OBO:SA:CALIXT,1,"Calixte Camelle",44.863517,-0.581899,,1,,Europe/Paris,,OBO, +OBO:SA:CALM62,1,"Calmette",44.851815,-0.517239,,1,,Europe/Paris,,OBO, +OBO:SA:CALM92,1,"Calmette",44.892981,-0.513615,,1,,Europe/Paris,,OBO, +OBO:SA:CAMINT,1,"Camping International",44.898522,-0.579119,,1,,Europe/Paris,,OBO, +OBO:SA:CAMPA,1,"Camparian",44.772194,-0.577142,,1,,Europe/Paris,,OBO, +OBO:SA:CAMPAN,1,"Les Campanules",44.767646,-0.60151,,1,,Europe/Paris,,OBO, +OBO:SA:CAMPAR,1,"Camparian",44.849432,-0.524445,,1,,Europe/Paris,,OBO, +OBO:SA:CAMPBX,1,"Camping International",44.897941,-0.583311,,1,,Europe/Paris,,OBO, +OBO:SA:CAMPEY,1,"Campeyraut",44.826354,-0.597056,,1,,Europe/Paris,,OBO, +OBO:SA:CAMPIN,1,"La Campanie",44.920825,-0.502205,,1,,Europe/Paris,,OBO, +OBO:SA:CAMPN,1,"Campana",44.818741,-0.625338,,1,,Europe/Paris,,OBO, +OBO:SA:CANDAU,1,"Candau",44.809368,-0.609312,,1,,Europe/Paris,,OBO, +OBO:SA:CANT77,1,"Canteret",44.907033,-0.6326,,1,,Europe/Paris,,OBO, +OBO:SA:CAPDE,1,"Capdeville",44.844285,-0.586753,,1,,Europe/Paris,,OBO, +OBO:SA:CAPE76,1,"Capelle",44.864079,-0.616823,,1,,Europe/Paris,,OBO, +OBO:SA:CAPEL,1,"Capelle",44.817047,-0.548584,,1,,Europe/Paris,,OBO, +OBO:SA:CAPELA,1,"Capella",44.87276,-0.687971,,1,,Europe/Paris,,OBO, +OBO:SA:CAPEYR,1,"Capeyron",44.851516,-0.645003,,1,,Europe/Paris,,OBO, +OBO:SA:CAPSCQ,1,"Capdeboscq",44.891955,-0.514127,,1,,Europe/Paris,,OBO, +OBO:SA:CAPUC,1,"Capucins",44.829461,-0.568059,,1,,Europe/Paris,,OBO, +OBO:SA:CARBOU,1,"Carbouney",44.913152,-0.488707,,1,,Europe/Paris,,OBO, +OBO:SA:CARDIN,1,"Cardinal",44.804306,-0.62579,,1,,Europe/Paris,,OBO, +OBO:SA:CARN21,1,"Les Iris",44.758982,-0.582854,,1,,Europe/Paris,,OBO, +OBO:SA:CARN58,1,"Carnot",44.957957,-0.602554,,1,,Europe/Paris,,OBO, +OBO:SA:CARNOT,1,"Carnot",44.85204,-0.594698,,1,,Europe/Paris,,OBO, +OBO:SA:CARR03,1,"Carriet",44.882898,-0.522509,,1,,Europe/Paris,,OBO, +OBO:SA:CARROS,1,"Carros",44.819709,-0.580453,,1,,Europe/Paris,,OBO, +OBO:SA:CART46,1,"Carnot",44.795889,-0.672571,,1,,Europe/Paris,,OBO, +OBO:SA:CARTO,1,"Carton",44.856882,-0.631312,,1,,Europe/Paris,,OBO, +OBO:SA:CARTON,1,"Carton",44.859599,-0.632147,,1,,Europe/Paris,,OBO, +OBO:SA:CASALS,1,"Pablo Casals",44.846847,-0.66691,,1,,Europe/Paris,,OBO, +OBO:SA:CASCAD,1,"La Cascade",44.870427,-0.502234,,1,,Europe/Paris,,OBO, +OBO:SA:CASERN,1,"Caserne Nansouty",44.820261,-0.569073,,1,,Europe/Paris,,OBO, +OBO:SA:CASS,1,"Cassin",44.833349,-0.696099,,1,,Europe/Paris,,OBO, +OBO:SA:CASSAG,1,"Cassagne",44.853325,-0.516815,,1,,Europe/Paris,,OBO, +OBO:SA:CAST92,1,"Castéra",44.909346,-0.514856,,1,,Europe/Paris,,OBO, +OBO:SA:CASTAI,1,"Castaing",44.795605,-0.667806,,1,,Europe/Paris,,OBO, +OBO:SA:CASTE,1,"Castés",44.840119,-0.516912,,1,,Europe/Paris,,OBO, +OBO:SA:CASTE2,1,"Castelneau",44.926002,-0.545821,,1,,Europe/Paris,,OBO, +OBO:SA:CASTEL,1,"Castelneau",44.842647,-0.669359,,1,,Europe/Paris,,OBO, +OBO:SA:CASTI,1,"Castillon",44.85999,-0.59247,,1,,Europe/Paris,,OBO, +OBO:SA:CAT,1,"C.A.T",44.927763,-0.515084,,1,,Europe/Paris,,OBO, +OBO:SA:CAUDE,1,"Rue de Caudéran",44.846503,-0.597574,,1,,Europe/Paris,,OBO, +OBO:SA:CAUMO,1,"Côte de Caumont",44.844072,-0.525248,,1,,Europe/Paris,,OBO, +OBO:SA:CAUSS,1,"Caussade",44.846509,-0.516179,,1,,Europe/Paris,,OBO, +OBO:SA:CAYAC,1,"Prieuré de Cayac",44.766673,-0.618374,,1,,Europe/Paris,,OBO, +OBO:SA:CAYBO,1,"Caychac Bourg",44.929627,-0.634711,,1,,Europe/Paris,,OBO, +OBO:SA:CAYEGL,1,"Caychac Eglise",44.930439,-0.637035,,1,,Europe/Paris,,OBO, +OBO:SA:CAYRIV,1,"Caychac La Rivière",44.930466,-0.621437,,1,,Europe/Paris,,OBO, +OBO:SA:CAZAL,1,"Cazalet",44.799292,-0.671334,,1,,Europe/Paris,,OBO, +OBO:SA:CAZANO,1,"Cazanove",44.82093,-0.694186,,1,,Europe/Paris,,OBO, +OBO:SA:CBLAN,1,"Croix Blanche",44.84361,-0.589243,,1,,Europe/Paris,,OBO, +OBO:SA:CBLANC,1,"Carbon Blanc Centre",44.893768,-0.500839,,1,,Europe/Paris,,OBO, +OBO:SA:CBLANM,1,"La Mouline",44.913333,-0.492834,,1,,Europe/Paris,,OBO, +OBO:SA:CBLEUS,1,"Chardons Bleus",44.835727,-0.640033,,1,,Europe/Paris,,OBO, +OBO:SA:CCAMUS,1,"Collège Albert Camus",44.885583,-0.643838,,1,,Europe/Paris,,OBO, +OBO:SA:CCBLAN,1,"Collège de Carbon-Blanc",44.909921,-0.5016,,1,,Europe/Paris,,OBO, +OBO:SA:CCHAMB,1,"Collège Chambéry",44.756328,-0.584664,,1,,Europe/Paris,,OBO, +OBO:SA:CCO02,1,"Rives d'Arcins",44.794861,-0.534988,,1,,Europe/Paris,,OBO, +OBO:SA:CCO31,1,"Centre Commercial du Lac",44.881532,-0.567679,,1,,Europe/Paris,,OBO, +OBO:SA:CCO38,1,"Reinson",44.877229,-0.567798,,1,,Europe/Paris,,OBO, +OBO:SA:CCOME,1,"Bouliac Centre Commercial",44.817546,-0.528173,,1,,Europe/Paris,,OBO, +OBO:SA:CEBEAU,1,"Beausite",44.852901,-0.527564,,1,,Europe/Paris,,OBO, +OBO:SA:CEDRE,1,"Cèdres",44.829897,-0.516544,,1,,Europe/Paris,,OBO, +OBO:SA:CENTR,1,"Centre commercial",44.867715,-0.519592,,1,,Europe/Paris,,OBO, +OBO:SA:CERISI,1,"Cerisiers",44.854806,-0.774759,,1,,Europe/Paris,,OBO, +OBO:SA:CETE,1,"Cerema",44.886673,-0.741005,,1,,Europe/Paris,,OBO, +OBO:SA:CEZANN,1,"Escarraguel (rue Cézanne)",45.008921,-0.528769,,1,,Europe/Paris,,OBO, +OBO:SA:CEZOLA,1,"Collège Emile Zola",44.869336,-0.672841,,1,,Europe/Paris,,OBO, +OBO:SA:CFESSE,1,"Courtefesse",44.949648,-0.511869,,1,,Europe/Paris,,OBO, +OBO:SA:CFMAUR,1,"Collège F. Mauriac",44.896182,-0.709985,,1,,Europe/Paris,,OBO, +OBO:SA:CFOIN,1,"Chemin du Foin",44.920005,-0.716845,,1,,Europe/Paris,,OBO, +OBO:SA:CGAJA,1,"Château Gajac",44.887175,-0.697902,,1,,Europe/Paris,,OBO, +OBO:SA:CGAMB,1,"Cours Gambetta",44.843303,-0.532268,,1,,Europe/Paris,,OBO, +OBO:SA:CGAZIN,1,"Cestas Gazinet",44.771956,-0.702209,,1,,Europe/Paris,,OBO, +OBO:SA:CGODAR,1,"Camille Godard",44.855053,-0.574688,,1,,Europe/Paris,,OBO, +OBO:SA:CGRIC,1,"Cante-Gric",44.910642,-0.687311,,1,,Europe/Paris,,OBO, +OBO:SA:CHABRI,1,"Chateaubriand",44.900599,-0.732433,,1,,Europe/Paris,,OBO, +OBO:SA:CHAIGN,1,"Cité Chaigneau",44.857693,-0.590473,,1,,Europe/Paris,,OBO, +OBO:SA:CHAMBR,1,"Allée de la Chambre",44.934351,-0.757935,,1,,Europe/Paris,,OBO, +OBO:SA:CHANT,1,"Chantiers de la Garonne",44.859725,-0.543376,,1,,Europe/Paris,,OBO, +OBO:SA:CHANTE,1,"Cité Chantecrit",44.864214,-0.564322,,1,,Europe/Paris,,OBO, +OBO:SA:CHAPEL,1,"La Gare de la Chapelle",45.006233,-0.548813,,1,,Europe/Paris,,OBO, +OBO:SA:CHAPOM,1,"Château Pomerol",44.891202,-0.516292,,1,,Europe/Paris,,OBO, +OBO:SA:CHARCO,1,"Charcot",44.920098,-0.618902,,1,,Europe/Paris,,OBO, +OBO:SA:CHAT03,1,"Châtaigniers",44.911611,-0.7192,,1,,Europe/Paris,,OBO, +OBO:SA:CHATAI,1,"Antoune",44.795915,-0.64858,,1,,Europe/Paris,,OBO, +OBO:SA:CHAUME,1,"Place Ozanam",44.849544,-0.613289,,1,,Europe/Paris,,OBO, +OBO:SA:CHAZEA,1,"Chazeau",44.897054,-0.742133,,1,,Europe/Paris,,OBO, +OBO:SA:CHDEAU,1,"Centre des Impôts",44.854225,-0.656209,,1,,Europe/Paris,,OBO, +OBO:SA:CHENAI,1,"La Chênaie",44.849794,-0.781005,,1,,Europe/Paris,,OBO, +OBO:SA:CHENE2,1,"Les Chênes",44.778535,-0.697353,,1,,Europe/Paris,,OBO, +OBO:SA:CHERIO,1,"Herriot (Centre Commercial)",44.884153,-0.690945,,1,,Europe/Paris,,OBO, +OBO:SA:CHEVA,1,"Chevalier",44.84215,-0.593685,,1,,Europe/Paris,,OBO, +OBO:SA:CHEVIE,1,"Chemin de la Vie",44.943678,-0.490543,,1,,Europe/Paris,,OBO, +OBO:SA:CHEVRE,1,"Chevreuils",44.873865,-0.492671,,1,,Europe/Paris,,OBO, +OBO:SA:CHIQUE,1,"Le Chiquet",44.803836,-0.620452,,1,,Europe/Paris,,OBO, +OBO:SA:CHOLET,1,"Cholet",44.941706,-0.528585,,1,,Europe/Paris,,OBO, +OBO:SA:CHOPIN,1,"Chopin",44.757608,-0.572375,,1,,Europe/Paris,,OBO, +OBO:SA:CHOUIN,1,"Chouiney",44.778916,-0.593741,,1,,Europe/Paris,,OBO, +OBO:SA:CHPERR,1,"Charles Perrault",44.864696,-0.497917,,1,,Europe/Paris,,OBO, +OBO:SA:CHROUQ,1,"Château Rouquey",44.82806,-0.670838,,1,,Europe/Paris,,OBO, +OBO:SA:CHROY,1,"Chemin du Roy",44.899356,-0.727962,,1,,Europe/Paris,,OBO, +OBO:SA:CHRPE2,1,"Hôpital Pellegrin (entrée Est)",44.828635,-0.602724,,1,,Europe/Paris,,OBO, +OBO:SA:CHSOUR,1,"Chemin du Sourd",44.888028,-0.51117,,1,,Europe/Paris,,OBO, +OBO:SA:CHURCH,1,"Churchill",44.833764,-0.627587,,1,,Europe/Paris,,OBO, +OBO:SA:CHUT,1,"Avenue du Chut",44.84877,-0.662525,,1,,Europe/Paris,,OBO, +OBO:SA:CIBAIR,1,"Cité Bel Air",44.92285,-0.501444,,1,,Europe/Paris,,OBO, +OBO:SA:CICERO,1,"Cicéron",44.805148,-0.661308,,1,,Europe/Paris,,OBO, +OBO:SA:CIGAL,1,"Cigales",44.916006,-0.71351,,1,,Europe/Paris,,OBO, +OBO:SA:CIGALE,1,"Cigales",44.85663,-0.490901,,1,,Europe/Paris,,OBO, +OBO:SA:CIM47,1,"Cimetière",44.810811,-0.625307,,1,,Europe/Paris,,OBO, +OBO:SA:CIM75,1,"Cimetière Intercommunal",44.81508,-0.680107,,1,,Europe/Paris,,OBO, +OBO:SA:CIMAMB,1,"Cimetière d'Ambès",45.013628,-0.534504,,1,,Europe/Paris,,OBO, +OBO:SA:CIME67,1,"Cimetière Intercommunal",44.867523,-0.490565,,1,,Europe/Paris,,OBO, +OBO:SA:CIMEYS,1,"Cimetière d’Eysines",44.884932,-0.656639,,1,,Europe/Paris,,OBO, +OBO:SA:CIMGRA,1,"Cimetière de Gradignan",44.779136,-0.609446,,1,,Europe/Paris,,OBO, +OBO:SA:CIMLOR,1,"Cimetière de Lormont",44.878158,-0.520938,,1,,Europe/Paris,,OBO, +OBO:SA:CIMSME,1,"Cimetière de Saint Médard",44.895446,-0.726288,,1,,Europe/Paris,,OBO, +OBO:SA:CITVIN,1,"La cité du Vin",44.861603,-0.548766,,1,,Europe/Paris,,OBO, +OBO:SA:CLANIS,1,"Clanis",44.935623,-0.514765,,1,,Europe/Paris,,OBO, +OBO:SA:CLAP29,1,"Collège Lapierre",44.873903,-0.524366,,1,,Europe/Paris,,OBO, +OBO:SA:CLARI,1,"Clarines",44.819779,-0.665877,,1,,Europe/Paris,,OBO, +OBO:SA:CLAUDE,1,"Claudeville",44.873891,-0.577833,,1,,Europe/Paris,,OBO, +OBO:SA:CLAVEA,1,"Claveau",44.878428,-0.543843,,1,,Europe/Paris,,OBO, +OBO:SA:CLCED,1,"Les Fauvettes",44.825015,-0.663147,,1,,Europe/Paris,,OBO, +OBO:SA:CLECOT,1,"Cardinal Lecot",44.911968,-0.6488,,1,,Europe/Paris,,OBO, +OBO:SA:CLEM32,1,"Clemenceau",44.851232,-0.508886,,1,,Europe/Paris,,OBO, +OBO:SA:CLEM52,1,"Clemenceau",44.876011,-0.677062,,1,,Europe/Paris,,OBO, +OBO:SA:CLEM54,1,"Clemenceau",44.864684,-0.621076,,1,,Europe/Paris,,OBO, +OBO:SA:CLEM88,1,"Clemenceau",44.781164,-0.559852,,1,,Europe/Paris,,OBO, +OBO:SA:CLEM92,1,"Clemenceau",44.91214,-0.512672,,1,,Europe/Paris,,OBO, +OBO:SA:CLEMEN,1,"Clémentel",44.916673,-0.518803,,1,,Europe/Paris,,OBO, +OBO:SA:CLLORM,1,"Clairière de Lormont",44.881057,-0.495375,,1,,Europe/Paris,,OBO, +OBO:SA:CLONG,1,"Chemin Long",44.829099,-0.663674,,1,,Europe/Paris,,OBO, +OBO:SA:CLPRIE,1,"Clos du Prieuré",44.922299,-0.483542,,1,,Europe/Paris,,OBO, +OBO:SA:CLUBPI,1,"Le Club des Pins",44.902071,-0.737686,,1,,Europe/Paris,,OBO, +OBO:SA:CMASSE,1,"Collège Claude Massé",44.928947,-0.482566,,1,,Europe/Paris,,OBO, +OBO:SA:CMERIA,1,"Centre Commercial Mériadeck",44.838713,-0.582938,,1,,Europe/Paris,,OBO, +OBO:SA:CMERIG,1,"René Coty",44.840481,-0.65361,,1,,Europe/Paris,,OBO, +OBO:SA:CMOLIE,1,"Commandant Mollière",44.89077,-0.608807,,1,,Europe/Paris,,OBO, +OBO:SA:CMONJ,1,"Croix de Monjous",44.776791,-0.5937,,1,,Europe/Paris,,OBO, +OBO:SA:CMUTUA,1,"Clinique Mutualiste",44.805251,-0.609687,,1,,Europe/Paris,,OBO, +OBO:SA:CNANS,1,"Caserne Nansouty",44.818714,-0.566164,,1,,Europe/Paris,,OBO, +OBO:SA:CNARI,1,"Canaris",44.790887,-0.69047,,1,,Europe/Paris,,OBO, +OBO:SA:CNAUTI,1,"Centre Nautique",44.891751,-0.589388,,1,,Europe/Paris,,OBO, +OBO:SA:CNORD,1,"Cimetière Nord",44.875898,-0.590578,,1,,Europe/Paris,,OBO, +OBO:SA:COAUSO,1,"Collège Ausone",44.871381,-0.595284,,1,,Europe/Paris,,OBO, +OBO:SA:COCT66,1,"Jean Cocteau",44.875969,-0.502384,,1,,Europe/Paris,,OBO, +OBO:SA:COIN,1,"Coin",44.76343,-0.556281,,1,,Europe/Paris,,OBO, +OBO:SA:COJEAN,1,"Courréjean",44.774075,-0.528652,,1,,Europe/Paris,,OBO, +OBO:SA:COLBLQ,1,"Collège de Blanquefort",44.906731,-0.628471,,1,,Europe/Paris,,OBO, +OBO:SA:COLETT,1,"Colette",44.83479,-0.636292,,1,,Europe/Paris,,OBO, +OBO:SA:COLHAS,1,"Collège d'Hastignan",44.893785,-0.745389,,1,,Europe/Paris,,OBO, +OBO:SA:COLVER,1,"Colverts",44.941817,-0.596098,,1,,Europe/Paris,,OBO, +OBO:SA:COM13,1,"Combes",44.830668,-0.613785,,1,,Europe/Paris,,OBO, +OBO:SA:COMACO,1,"Collège Manon Cormier",44.89995,-0.507844,,1,,Europe/Paris,,OBO, +OBO:SA:COMB46,1,"Combelongue",44.77686,-0.701222,,1,,Europe/Paris,,OBO, +OBO:SA:COMB76,1,"Combes",44.867969,-0.598076,,1,,Europe/Paris,,OBO, +OBO:SA:COMBE,1,"Combes",44.833412,-0.540468,,1,,Europe/Paris,,OBO, +OBO:SA:CONOES,1,"Collège Noès",44.812364,-0.637056,,1,,Europe/Paris,,OBO, +OBO:SA:CORNAN,1,"Cours d'Ornano",44.832736,-0.613538,,1,,Europe/Paris,,OBO, +OBO:SA:CORNEI,1,"Corneille",44.804168,-0.622726,,1,,Europe/Paris,,OBO, +OBO:SA:CORNI,1,"Cornier",44.843221,-0.513293,,1,,Europe/Paris,,OBO, +OBO:SA:COSEC,1,"COSEC",44.884152,-0.704619,,1,,Europe/Paris,,OBO, +OBO:SA:COSTED,1,"Costedoat",44.831022,-0.578148,,1,,Europe/Paris,,OBO, +OBO:SA:COTEA,1,"Avenue du Coteau",44.814183,-0.501627,,1,,Europe/Paris,,OBO, +OBO:SA:COTEAU,1,"Les Coteaux",44.911149,-0.517207,,1,,Europe/Paris,,OBO, +OBO:SA:COUAIL,1,"Docteur Couaillac",45.010588,-0.534592,,1,,Europe/Paris,,OBO, +OBO:SA:COUBER,1,"Coubertin",44.86217,-0.645005,,1,,Europe/Paris,,OBO, +OBO:SA:COUHIN,1,"Rameau",44.759604,-0.573078,,1,,Europe/Paris,,OBO, +OBO:SA:COUQUE,1,"Couqueou",44.883691,-0.667493,,1,,Europe/Paris,,OBO, +OBO:SA:COURCE,1,"Le Bocage",44.779359,-0.532906,,1,,Europe/Paris,,OBO, +OBO:SA:COURTE,1,"Courteault",44.835222,-0.608048,,1,,Europe/Paris,,OBO, +OBO:SA:COUTEN,1,"Coutenceau",44.914901,-0.517119,,1,,Europe/Paris,,OBO, +OBO:SA:CPALU,1,"Clos Palu",44.950903,-0.467457,,1,,Europe/Paris,,OBO, +OBO:SA:CPANUL,1,"Les Campanules",44.917838,-0.722794,,1,,Europe/Paris,,OBO, +OBO:SA:CPEGY,1,"Charles Péguy",44.807074,-0.657325,,1,,Europe/Paris,,OBO, +OBO:SA:CPERRE,1,"Charles Perrens",44.823537,-0.600295,,1,,Europe/Paris,,OBO, +OBO:SA:CPHAUT,1,"Cap de Haut",44.8858,-0.636677,,1,,Europe/Paris,,OBO, +OBO:SA:CPHOTO,1,"Cité Photonique",44.786102,-0.631813,,1,,Europe/Paris,,OBO, +OBO:SA:CPIETR,1,"Chemin de Piétru",45.004442,-0.551139,,1,,Europe/Paris,,OBO, +OBO:SA:CPINS,1,"Moussard",44.85696,-0.657053,,1,,Europe/Paris,,OBO, +OBO:SA:CPONTA,1,"Château Pontac",44.775548,-0.564943,,1,,Europe/Paris,,OBO, +OBO:SA:CRABET,1,"Crabette",44.787039,-0.635101,,1,,Europe/Paris,,OBO, +OBO:SA:CRACOV,1,"Cracovie",44.870977,-0.57626,,1,,Europe/Paris,,OBO, +OBO:SA:CREBAD,1,"Crébadin",44.948432,-0.616512,,1,,Europe/Paris,,OBO, +OBO:SA:CREPS,1,"CREPS",44.798982,-0.598613,,1,,Europe/Paris,,OBO, +OBO:SA:CRISTO,1,"Monte-Cristo",44.825095,-0.533491,,1,,Europe/Paris,,OBO, +OBO:SA:CROIZA,1,"Stade Musard",44.807608,-0.551356,,1,,Europe/Paris,,OBO, +OBO:SA:CROUST,1,"Croustet",44.837157,-0.646142,,1,,Europe/Paris,,OBO, +OBO:SA:CROVIE,1,"Croix Vieille",44.912551,-0.728789,,1,,Europe/Paris,,OBO, +OBO:SA:CRUCH,1,"Cruchet",44.89335,-0.552841,,1,,Europe/Paris,,OBO, +OBO:SA:CSNCF,1,"Cité SNCF",44.819496,-0.544016,,1,,Europe/Paris,,OBO, +OBO:SA:CSPIER,1,"Clos Saint Pierre",44.925694,-0.48263,,1,,Europe/Paris,,OBO, +OBO:SA:CSUZO,1,"Chemin de Suzon",44.811563,-0.582352,,1,,Europe/Paris,,OBO, +OBO:SA:CTHOUA,1,"Château de Thouars",44.787564,-0.590688,,1,,Europe/Paris,,OBO, +OBO:SA:CURI10,1,"Curie",44.83653,-0.53328,,1,,Europe/Paris,,OBO, +OBO:SA:CURI21,1,"Pierre Curie",44.761727,-0.570556,,1,,Europe/Paris,,OBO, +OBO:SA:CURI62,1,"Curie",44.862138,-0.53173,,1,,Europe/Paris,,OBO, +OBO:SA:CURI92,1,"Joliot Curie",44.895239,-0.513743,,1,,Europe/Paris,,OBO, +OBO:SA:CURIE,1,"Curie",44.806803,-0.629632,,1,,Europe/Paris,,OBO, +OBO:SA:CVERNE,1,"Carle Vernet",44.821011,-0.550601,,1,,Europe/Paris,,OBO, +OBO:SA:CVERTE,1,"Cage Verte",44.859036,-0.629253,,1,,Europe/Paris,,OBO, +OBO:SA:CVIGNE,1,"Chemin des Vignes",44.921925,-0.726519,,1,,Europe/Paris,,OBO, +OBO:SA:DAGUI,1,"Daguin",44.812899,-0.561471,,1,,Europe/Paris,,OBO, +OBO:SA:DAGUIN,1,"Lycée Daguin",44.837054,-0.64892,,1,,Europe/Paris,,OBO, +OBO:SA:DALON,1,"Dalon",44.773067,-0.538039,,1,,Europe/Paris,,OBO, +OBO:SA:DAMIEN,1,"Domaine d'Amanieu",44.822672,-0.486214,,1,,Europe/Paris,,OBO, +OBO:SA:DANDI,1,"Dandicolle",44.830882,-0.587233,,1,,Europe/Paris,,OBO, +OBO:SA:DARWIN,1,"Darwin",44.859904,-0.726228,,1,,Europe/Paris,,OBO, +OBO:SA:DASAU,1,"Dassault",44.846696,-0.691029,,1,,Europe/Paris,,OBO, +OBO:SA:DASSA2,1,"Dassault",44.882882,-0.571929,,1,,Europe/Paris,,OBO, +OBO:SA:DASSAU,1,"Dassault",44.783829,-0.652272,,1,,Europe/Paris,,OBO, +OBO:SA:DAUPH,1,"Dauphine",44.851915,-0.611586,,1,,Europe/Paris,,OBO, +OBO:SA:DAUPHI,1,"Dauphiné",44.786021,-0.692486,,1,,Europe/Paris,,OBO, +OBO:SA:DBLAN,1,"Dame Blanche",44.907883,-0.658719,,1,,Europe/Paris,,OBO, +OBO:SA:DEHES,1,"Dehès",44.888346,-0.680717,,1,,Europe/Paris,,OBO, +OBO:SA:DEHEZ,1,"Frankton",44.907231,-0.621832,,1,,Europe/Paris,,OBO, +OBO:SA:DELAC,1,"Delacroix",44.837998,-0.521402,,1,,Europe/Paris,,OBO, +OBO:SA:DELACR,1,"Delacroix",45.009637,-0.530809,,1,,Europe/Paris,,OBO, +OBO:SA:DELATA,1,"De Lattre De Tassigny",44.774733,-0.705138,,1,,Europe/Paris,,OBO, +OBO:SA:DELATR,1,"Delattre",44.890023,-0.607123,,1,,Europe/Paris,,OBO, +OBO:SA:DELAU,1,"Gabriel Delaunay",44.84536,-0.592947,,1,,Europe/Paris,,OBO, +OBO:SA:DELAYE,1,"Hôpital Suburbain",44.867028,-0.618293,,1,,Europe/Paris,,OBO, +OBO:SA:DEMOS,1,"Demosthène",44.826686,-0.661002,,1,,Europe/Paris,,OBO, +OBO:SA:DENIS,1,"St Denis",44.945614,-0.490734,,1,,Europe/Paris,,OBO, +OBO:SA:DERBY,1,"Le Derby",44.875464,-0.638954,,1,,Europe/Paris,,OBO, +OBO:SA:DESBAT,1,"Desbats",44.803756,-0.618218,,1,,Europe/Paris,,OBO, +OBO:SA:DESC47,1,"Descartes",44.805599,-0.656659,,1,,Europe/Paris,,OBO, +OBO:SA:DESCH,1,"Quai Deschamps",44.838998,-0.559656,,1,,Europe/Paris,,OBO, +OBO:SA:DESCLA,1,"Desclaux",44.857884,-0.495009,,1,,Europe/Paris,,OBO, +OBO:SA:DESMAI,1,"Desmaison",44.869203,-0.609619,,1,,Europe/Paris,,OBO, +OBO:SA:DEVEAU,1,"Deveaux",44.847279,-0.623038,,1,,Europe/Paris,,OBO, +OBO:SA:DFERIE,1,"Docteur Férié",44.900685,-0.711164,,1,,Europe/Paris,,OBO, +OBO:SA:DFRANC,1,"Douanes Françaises",44.893495,-0.609819,,1,,Europe/Paris,,OBO, +OBO:SA:DHOSTE,1,"Domaine d'Hostein",44.927581,-0.478777,,1,,Europe/Paris,,OBO, +OBO:SA:DIANE,1,"Diane",44.871809,-0.495268,,1,,Europe/Paris,,OBO, +OBO:SA:DIESE,1,"Diesel",44.836839,-0.686986,,1,,Europe/Paris,,OBO, +OBO:SA:DMOULE,1,"Domaine de Moulerin",44.915972,-0.509462,,1,,Europe/Paris,,OBO, +OBO:SA:DOMANO,1,"Domaine du Manoir",44.880678,-0.497962,,1,,Europe/Paris,,OBO, +OBO:SA:DOMGAY,1,"Domaine du Gay",44.852419,-0.487536,,1,,Europe/Paris,,OBO, +OBO:SA:DOMIO,1,"Domion",44.855996,-0.625645,,1,,Europe/Paris,,OBO, +OBO:SA:DONNET,1,"Donnet",44.822133,-0.562962,,1,,Europe/Paris,,OBO, +OBO:SA:DOPARC,1,"Domaine du Parc",44.775956,-0.55224,,1,,Europe/Paris,,OBO, +OBO:SA:DOPINS,1,"Domaine du Pinsan",44.868786,-0.650884,,1,,Europe/Paris,,OBO, +OBO:SA:DORA2,1,"Le Dorat 2",44.798904,-0.546951,,1,,Europe/Paris,,OBO, +OBO:SA:DORA3,1,"Gare de Bègles",44.798086,-0.551944,,1,,Europe/Paris,,OBO, +OBO:SA:DORGE,1,"Dorgelès",44.843262,-0.543432,,1,,Europe/Paris,,OBO, +OBO:SA:DOTEZ,1,"Dotézac",44.807743,-0.55658,,1,,Europe/Paris,,OBO, +OBO:SA:DOUAFR,1,"Douanes",44.894784,-0.527244,,1,,Europe/Paris,,OBO, +OBO:SA:DOURO,1,"Dourout",44.808773,-0.582928,,1,,Europe/Paris,,OBO, +OBO:SA:DROLET,1,"Facultés Droit et Lettres",44.798378,-0.619651,,1,,Europe/Paris,,OBO, +OBO:SA:DUBED,1,"Dubedout",44.846975,-0.511862,,1,,Europe/Paris,,OBO, +OBO:SA:DUBELL,1,"Du Bellay",44.873376,-0.514003,,1,,Europe/Paris,,OBO, +OBO:SA:DUBOUR,1,"Dubourdieu",44.821126,-0.578018,,1,,Europe/Paris,,OBO, +OBO:SA:DUCASS,1,"Ducasse",44.88294,-0.593446,,1,,Europe/Paris,,OBO, +OBO:SA:DUCOUR,1,"Ducourneau",44.86864,-0.591833,,1,,Europe/Paris,,OBO, +OBO:SA:DUCROS,1,"Ducros",44.781641,-0.565058,,1,,Europe/Paris,,OBO, +OBO:SA:DUFRES,1,"Dufresne",44.989439,-0.541684,,1,,Europe/Paris,,OBO, +OBO:SA:DUHAM,1,"Duhamel",44.792881,-0.562208,,1,,Europe/Paris,,OBO, +OBO:SA:DUMA77,1,"Dumas",44.932528,-0.636695,,1,,Europe/Paris,,OBO, +OBO:SA:DUMON,1,"Dumont",44.883377,-0.647923,,1,,Europe/Paris,,OBO, +OBO:SA:DUPAS,1,"Dupas",44.828492,-0.540033,,1,,Europe/Paris,,OBO, +OBO:SA:DUPEY,1,"Quai Dupeyron",44.872126,-0.537448,,1,,Europe/Paris,,OBO, +OBO:SA:DUPLAN,1,"Duplantier",44.814647,-0.580644,,1,,Europe/Paris,,OBO, +OBO:SA:DURCY,1,"Durcy",44.799462,-0.544151,,1,,Europe/Paris,,OBO, +OBO:SA:DURDEA,1,"Durandeau",44.957836,-0.512865,,1,,Europe/Paris,,OBO, +OBO:SA:DUTER,1,"Dutertre",44.840866,-0.592703,,1,,Europe/Paris,,OBO, +OBO:SA:DVINCE,1,"Docteur Vincent",44.876155,-0.559586,,1,,Europe/Paris,,OBO, +OBO:SA:E2MER,1,"Entre-Deux-Mers",44.845314,-0.532781,,1,,Europe/Paris,,OBO, +OBO:SA:ECHOP,1,"Les Echoppes",44.810544,-0.620523,,1,,Europe/Paris,,OBO, +OBO:SA:ECMOUL,1,"Echangeur du Moulinat",44.869713,-0.498969,,1,,Europe/Paris,,OBO, +OBO:SA:ECO36,1,"Rue des Ecoles",44.880351,-0.591587,,1,,Europe/Paris,,OBO, +OBO:SA:ECO57,1,"Emile Combes",44.868536,-0.597124,,1,,Europe/Paris,,OBO, +OBO:SA:ECOLES,1,"Les Ecoles",44.842319,-0.779747,,1,,Europe/Paris,,OBO, +OBO:SA:ECOMB,1,"Emile Combes",44.846905,-0.533502,,1,,Europe/Paris,,OBO, +OBO:SA:ECOPAR,1,"Ecoparc",44.926671,-0.620925,,1,,Europe/Paris,,OBO, +OBO:SA:ECORB,1,"Corbiac",44.874106,-0.702504,,1,,Europe/Paris,,OBO, +OBO:SA:ECUS,1,"Rue des Ecus",44.870175,-0.597869,,1,,Europe/Paris,,OBO, +OBO:SA:EDIS45,1,"Edison",44.820792,-0.595592,,1,,Europe/Paris,,OBO, +OBO:SA:EDISO,1,"Edison",44.776398,-0.653525,,1,,Europe/Paris,,OBO, +OBO:SA:EDVAI,1,"Nougueys",44.829326,-0.528559,,1,,Europe/Paris,,OBO, +OBO:SA:EFAURE,1,"Lycée Elie Faure",44.870435,-0.517228,,1,,Europe/Paris,,OBO, +OBO:SA:EFMITT,1,"Esplanade F. Mitterrand",44.874069,-0.515593,,1,,Europe/Paris,,OBO, +OBO:SA:EGAUGU,1,"Eglise Saint-Augustin",44.832644,-0.610973,,1,,Europe/Paris,,OBO, +OBO:SA:EGBEGL,1,"Eglise de Bègles",44.8014,-0.544431,,1,,Europe/Paris,,OBO, +OBO:SA:EGCAU,1,"Eglise de Caudéran",44.852246,-0.614572,,1,,Europe/Paris,,OBO, +OBO:SA:EGFLO,1,"Eglise de Floirac",44.835593,-0.521771,,1,,Europe/Paris,,OBO, +OBO:SA:EGGRA,1,"Eglise de Gradignan",44.772446,-0.614375,,1,,Europe/Paris,,OBO, +OBO:SA:EGHAIL,1,"Eglise du Haillan",44.873519,-0.678261,,1,,Europe/Paris,,OBO, +OBO:SA:EGLI58,1,"Place de l'Eglise",44.948726,-0.605667,,1,,Europe/Paris,,OBO, +OBO:SA:EGROMA,1,"Eglise Romane",44.857826,-0.495993,,1,,Europe/Paris,,OBO, +OBO:SA:EGSME,1,"Eglise de St Médard",44.895471,-0.718421,,1,,Europe/Paris,,OBO, +OBO:SA:EIFFE,1,"Eiffel",44.786213,-0.638989,,1,,Europe/Paris,,OBO, +OBO:SA:EJCORD,1,"Ecole Jean Cordier",44.814684,-0.620967,,1,,Europe/Paris,,OBO, +OBO:SA:EMARTI,1,"Eglise St Martin",44.771381,-0.54202,,1,,Europe/Paris,,OBO, +OBO:SA:EMETT,1,"Centre Emetteur",44.818167,-0.503186,,1,,Europe/Paris,,OBO, +OBO:SA:EMICH,1,"Edouard Michel",44.768773,-0.616865,,1,,Europe/Paris,,OBO, +OBO:SA:EMIGR,1,"Migron",44.864429,-0.631775,,1,,Europe/Paris,,OBO, +OBO:SA:ENGHI,1,"Enghien",44.845766,-0.576054,,1,,Europe/Paris,,OBO, +OBO:SA:ENSER,1,"Enseirb",44.80629,-0.607399,,1,,Europe/Paris,,OBO, +OBO:SA:EPARG,1,"Epargne",44.794015,-0.567589,,1,,Europe/Paris,,OBO, +OBO:SA:EPERNA,1,"Epernay",44.831765,-0.615945,,1,,Europe/Paris,,OBO, +OBO:SA:EPIS66,1,"Epis",44.873048,-0.502278,,1,,Europe/Paris,,OBO, +OBO:SA:ERMIT,1,"L'Ermitage",44.77345,-0.620879,,1,,Europe/Paris,,OBO, +OBO:SA:ERMITA,1,"Ermitage",44.865321,-0.597615,,1,,Europe/Paris,,OBO, +OBO:SA:ESCAR,1,"Les Escarrets",44.900529,-0.72201,,1,,Europe/Paris,,OBO, +OBO:SA:ESPAGN,1,"Espagnet",44.945815,-0.53668,,1,,Europe/Paris,,OBO, +OBO:SA:ETANG,1,"Etangs",44.831801,-0.53744,,1,,Europe/Paris,,OBO, +OBO:SA:ETCHEN,1,"Etchénique",44.839285,-0.611426,,1,,Europe/Paris,,OBO, +OBO:SA:EURO93,1,"Europe",44.924681,-0.497105,,1,,Europe/Paris,,OBO, +OBO:SA:EUROF,1,"Eurofac",44.787688,-0.610989,,1,,Europe/Paris,,OBO, +OBO:SA:EUROP,1,"Place de l'Europe",44.859274,-0.581611,,1,,Europe/Paris,,OBO, +OBO:SA:EUROPA,1,"Europarc",44.781043,-0.655466,,1,,Europe/Paris,,OBO, +OBO:SA:EUSTA,1,"André Eustache",44.811994,-0.640368,,1,,Europe/Paris,,OBO, +OBO:SA:EVA83,1,"E. Vaillant",44.817954,-0.603862,,1,,Europe/Paris,,OBO, +OBO:SA:EXPOSI,1,"Parc des Expositions",44.895123,-0.566411,,1,,Europe/Paris,,OBO, +OBO:SA:EXUP91,1,"Frachon",45.0134,-0.536447,,1,,Europe/Paris,,OBO, +OBO:SA:EYQUEM,1,"Collège Les Eyquems",44.827896,-0.645623,,1,,Europe/Paris,,OBO, +OBO:SA:EYSINB,1,"Eysines Bourg",44.889309,-0.647979,,1,,Europe/Paris,,OBO, +OBO:SA:FAISAN,1,"Faisan Doré",44.918763,-0.713959,,1,,Europe/Paris,,OBO, +OBO:SA:FANNIN,1,"Fanning Lafontaine",44.808289,-0.613263,,1,,Europe/Paris,,OBO, +OBO:SA:FAULAT,1,"Faulat",44.919774,-0.481305,,1,,Europe/Paris,,OBO, +OBO:SA:FAUR47,1,"Fauré",44.816754,-0.618435,,1,,Europe/Paris,,OBO, +OBO:SA:FAUVE2,1,"Fauvettes",44.860256,-0.497969,,1,,Europe/Paris,,OBO, +OBO:SA:FAUVET,1,"Fauvettes",44.7913,-0.700667,,1,,Europe/Paris,,OBO, +OBO:SA:FAVAR,1,"Farvarque",44.803819,-0.57182,,1,,Europe/Paris,,OBO, +OBO:SA:FAYZEA,1,"Fayzeau",44.824277,-0.480153,,1,,Europe/Paris,,OBO, +OBO:SA:FCHAUX,1,"Four à Chaux",44.917854,-0.666841,,1,,Europe/Paris,,OBO, +OBO:SA:FELLO,1,"Fellonneau",44.811368,-0.563798,,1,,Europe/Paris,,OBO, +OBO:SA:FENELO,1,"Fénelon",44.90964,-0.516053,,1,,Europe/Paris,,OBO, +OBO:SA:FERRY,1,"Jules Ferry",44.844682,-0.531842,,1,,Europe/Paris,,OBO, +OBO:SA:FERRY2,1,"Ferry",44.841616,-0.602924,,1,,Europe/Paris,,OBO, +OBO:SA:FEYDI,1,"Parc de Feydit",44.869661,-0.703079,,1,,Europe/Paris,,OBO, +OBO:SA:FEYDI2,1,"Feydit",44.879991,-0.704661,,1,,Europe/Paris,,OBO, +OBO:SA:FFERR,1,"Francisco Ferrer",44.825084,-0.612855,,1,,Europe/Paris,,OBO, +OBO:SA:FINAN,1,"Les Finances",44.764975,-0.553197,,1,,Europe/Paris,,OBO, +OBO:SA:FLAJAR,1,"Fort Lajard",45.017349,-0.577143,,1,,Europe/Paris,,OBO, +OBO:SA:FLANDR,1,"Flandres",44.793441,-0.687404,,1,,Europe/Paris,,OBO, +OBO:SA:FLEUR,1,"Gare de Bruges",44.885402,-0.609108,,1,,Europe/Paris,,OBO, +OBO:SA:FLEUR2,1,"Fleuranceau",44.885865,-0.611629,,1,,Europe/Paris,,OBO, +OBO:SA:FLIBE,1,"Floirac Libération",44.838945,-0.531281,,1,,Europe/Paris,,OBO, +OBO:SA:FLPAR,1,"Parc Municipal",44.830508,-0.526803,,1,,Europe/Paris,,OBO, +OBO:SA:FLUMI,1,"Frères Lumière",44.796479,-0.532723,,1,,Europe/Paris,,OBO, +OBO:SA:FLUMIE,1,"Frères Lumière",44.890871,-0.637893,,1,,Europe/Paris,,OBO, +OBO:SA:FLUVI,1,"Port Garonne",44.797558,-0.530241,,1,,Europe/Paris,,OBO, +OBO:SA:FMITTE,1,"Espace François Mitterrand",44.947614,-0.604097,,1,,Europe/Paris,,OBO, +OBO:SA:FOCH46,1,"Maréchal Foch",44.801763,-0.653574,,1,,Europe/Paris,,OBO, +OBO:SA:FOIN,1,"Foin",44.927747,-0.679218,,1,,Europe/Paris,,OBO, +OBO:SA:FONC72,1,"Foncastel",44.83621,-0.641913,,1,,Europe/Paris,,OBO, +OBO:SA:FONDIN,1,"Fontaudin",44.850396,-0.493282,,1,,Europe/Paris,,OBO, +OBO:SA:FONFR,1,"Fonfrède",44.825276,-0.572583,,1,,Europe/Paris,,OBO, +OBO:SA:FONGRA,1,"Fongravey",44.914548,-0.630309,,1,,Europe/Paris,,OBO, +OBO:SA:FONT49,1,"MSF",44.826919,-0.678596,,1,,Europe/Paris,,OBO, +OBO:SA:FONTAI,1,"La Fontaine",44.912805,-0.493879,,1,,Europe/Paris,,OBO, +OBO:SA:FORDSU,1,"Ford",44.91103,-0.607587,,1,,Europe/Paris,,OBO, +OBO:SA:FOREST,1,"Forestier",44.805011,-0.637973,,1,,Europe/Paris,,OBO, +OBO:SA:FORET,1,"Libération",44.856177,-0.644698,,1,,Europe/Paris,,OBO, +OBO:SA:FORET2,1,"La Forêt",44.862638,-0.649135,,1,,Europe/Paris,,OBO, +OBO:SA:FORGE,1,"La Forge",44.801887,-0.645423,,1,,Europe/Paris,,OBO, +OBO:SA:FOUGN,1,"Fougnet",44.772603,-0.71221,,1,,Europe/Paris,,OBO, +OBO:SA:FOURAT,1,"Le Fourat",45.018355,-0.535508,,1,,Europe/Paris,,OBO, +OBO:SA:FOURNE,1,"Fourney",44.821999,-0.490541,,1,,Europe/Paris,,OBO, +OBO:SA:FOYE93,1,"Foyer Municipal",44.891717,-0.502847,,1,,Europe/Paris,,OBO, +OBO:SA:FPORT,1,"Frères Portmann",44.860529,-0.576462,,1,,Europe/Paris,,OBO, +OBO:SA:FRAGO,1,"Fragonard",44.857096,-0.633632,,1,,Europe/Paris,,OBO, +OBO:SA:FRANCE,1,"France-Les Castors",44.793862,-0.670363,,1,,Europe/Paris,,OBO, +OBO:SA:FRANKL,1,"Franklin",44.798951,-0.586922,,1,,Europe/Paris,,OBO, +OBO:SA:FRAT08,1,"Fraternité",44.838705,-0.543759,,1,,Europe/Paris,,OBO, +OBO:SA:FRAT47,1,"Fraternité",44.818396,-0.615477,,1,,Europe/Paris,,OBO, +OBO:SA:FRMIT,1,"François Mitterrand",44.828018,-0.613798,,1,,Europe/Paris,,OBO, +OBO:SA:FROBIN,1,"Tassigny",44.847711,-0.65901,,1,,Europe/Paris,,OBO, +OBO:SA:FRONTO,1,"Le Fronton",44.946281,-0.489443,,1,,Europe/Paris,,OBO, +OBO:SA:FSOURD,1,"François de Sourdis",44.829904,-0.587772,,1,,Europe/Paris,,OBO, +OBO:SA:FUTAIE,1,"Futaies",44.908797,-0.495645,,1,,Europe/Paris,,OBO, +OBO:SA:FXAVIE,1,"François Xavier",44.775403,-0.589101,,1,,Europe/Paris,,OBO, +OBO:SA:GADRET,1,"Gadret",44.887801,-0.703389,,1,,Europe/Paris,,OBO, +OBO:SA:GAFAUR,1,"Gabriel Fauré",44.852086,-0.634798,,1,,Europe/Paris,,OBO, +OBO:SA:GALGO,1,"Galgon",44.775169,-0.538532,,1,,Europe/Paris,,OBO, +OBO:SA:GALI41,1,"Maréchal Gallieni",44.818098,-0.60194,,1,,Europe/Paris,,OBO, +OBO:SA:GALI95,1,"Maréchal Gallieni",44.897628,-0.508872,,1,,Europe/Paris,,OBO, +OBO:SA:GALIAS,1,"La Galliasse",44.991822,-0.486108,,1,,Europe/Paris,,OBO, +OBO:SA:GALIEN,1,"Maréchal Gallieni",44.8308,-0.617352,,1,,Europe/Paris,,OBO, +OBO:SA:GALIPS,1,"Galips",44.921833,-0.74654,,1,,Europe/Paris,,OBO, +OBO:SA:GALUS,1,"Le Galus",44.846207,-0.677935,,1,,Europe/Paris,,OBO, +OBO:SA:GAM37,1,"Lycée St-Michel",44.910749,-0.637489,,1,,Europe/Paris,,OBO, +OBO:SA:GAMBOU,1,"Gambetta",44.865848,-0.601653,,1,,Europe/Paris,,OBO, +OBO:SA:GAMBT1,1,"Gambetta",44.841232,-0.580129,,1,,Europe/Paris,,OBO, +OBO:SA:GAREOR,1,"Gare d'Orléans",44.842007,-0.562931,,1,,Europe/Paris,,OBO, +OBO:SA:GARO93,1,"Les Garouilles",44.958431,-0.500158,,1,,Europe/Paris,,OBO, +OBO:SA:GARPAR,1,"Gare de Parempuyre",44.944222,-0.618626,,1,,Europe/Paris,,OBO, +OBO:SA:GASQU,1,"Gasquet",44.885726,-0.678859,,1,,Europe/Paris,,OBO, +OBO:SA:GASSI,1,"Centre Tour de Gassies",44.883539,-0.625627,,1,,Europe/Paris,,OBO, +OBO:SA:GASTEB,1,"Gasteboy",44.887827,-0.643572,,1,,Europe/Paris,,OBO, +OBO:SA:GAUSS,1,"Gaussen",44.857701,-0.569135,,1,,Europe/Paris,,OBO, +OBO:SA:GAUSSE,1,"Gaussens",44.879332,-0.61228,,1,,Europe/Paris,,OBO, +OBO:SA:GAYLU,1,"Gay Lussac",44.849985,-0.497443,,1,,Europe/Paris,,OBO, +OBO:SA:GAZBX,1,"Peyronneaud",44.883631,-0.550299,,1,,Europe/Paris,,OBO, +OBO:SA:GBARTS,1,"Galerie des Beaux Arts",44.838946,-0.581712,,1,,Europe/Paris,,OBO, +OBO:SA:GBASSE,1,"Gare de Bassens",44.901221,-0.524618,,1,,Europe/Paris,,OBO, +OBO:SA:GBEGLE,1,"Gare de Bègles",44.798428,-0.557592,,1,,Europe/Paris,,OBO, +OBO:SA:GBLANQ,1,"Gare de Blanquefort",44.915944,-0.627171,,1,,Europe/Paris,,OBO, +OBO:SA:GDARNA,1,"Grand Darnal",44.88409,-0.601088,,1,,Europe/Paris,,OBO, +OBO:SA:GDCAIL,1,"Le Grand Caillou",44.882971,-0.636519,,1,,Europe/Paris,,OBO, +OBO:SA:GEFORM,1,"Gestform",44.855378,-0.676844,,1,,Europe/Paris,,OBO, +OBO:SA:GELES,1,"Gelès",44.889833,-0.74283,,1,,Europe/Paris,,OBO, +OBO:SA:GELEST,1,"Gelès",44.914515,-0.665894,,1,,Europe/Paris,,OBO, +OBO:SA:GENDAR,1,"St Exupéry",45.011508,-0.539249,,1,,Europe/Paris,,OBO, +OBO:SA:GENE88,1,"Genêts",44.850489,-0.777282,,1,,Europe/Paris,,OBO, +OBO:SA:GENETS,1,"Genêts",44.927713,-0.757128,,1,,Europe/Paris,,OBO, +OBO:SA:GEORGV,1,"Boulevard George V",44.825112,-0.58861,,1,,Europe/Paris,,OBO, +OBO:SA:GEPHIL,1,"Collège Gérard Philippe",44.799561,-0.623999,,1,,Europe/Paris,,OBO, +OBO:SA:GEREYM,1,"Gereyme",44.983001,-0.537543,,1,,Europe/Paris,,OBO, +OBO:SA:GERMI,1,"Germignan",44.907724,-0.696473,,1,,Europe/Paris,,OBO, +OBO:SA:GESTFO,1,"Berles",44.859451,-0.685139,,1,,Europe/Paris,,OBO, +OBO:SA:GGA36,1,"Général de Gaulle",44.874693,-0.619111,,1,,Europe/Paris,,OBO, +OBO:SA:GGAU37,1,"Général De Gaulle",44.908902,-0.638689,,1,,Europe/Paris,,OBO, +OBO:SA:GICFO,1,"Centre de Formation du Lac",44.877882,-0.575388,,1,,Europe/Paris,,OBO, +OBO:SA:GILAMO,1,"Gilamon",44.911481,-0.645255,,1,,Europe/Paris,,OBO, +OBO:SA:GIRARD,1,"Girard",44.837532,-0.781908,,1,,Europe/Paris,,OBO, +OBO:SA:GLACIE,1,"La Glacière",44.837303,-0.619405,,1,,Europe/Paris,,OBO, +OBO:SA:GLAENA,1,"Glaena",44.895687,-0.752453,,1,,Europe/Paris,,OBO, +OBO:SA:GLAND,1,"Grande Lande",44.776246,-0.636357,,1,,Europe/Paris,,OBO, +OBO:SA:GLECLE,1,"Parc Bordelais",44.854606,-0.599221,,1,,Europe/Paris,,OBO, +OBO:SA:GLOUIS,1,"Le Grand Louis",44.860912,-0.642141,,1,,Europe/Paris,,OBO, +OBO:SA:GMAURI,1,"Hôpital Pellegrin",44.830907,-0.604655,,1,,Europe/Paris,,OBO, +OBO:SA:GMELIE,1,"Lycée Vaclav Havel",44.787398,-0.567505,,1,,Europe/Paris,,OBO, +OBO:SA:GNOIRE,1,"Grange Noire",44.848729,-0.679202,,1,,Europe/Paris,,OBO, +OBO:SA:GODARD,1,"Godard",44.85293,-0.588103,,1,,Europe/Paris,,OBO, +OBO:SA:GOILLO,1,"Goillot",44.841925,-0.663237,,1,,Europe/Paris,,OBO, +OBO:SA:GOLFBX,1,"Golf de Bordeaux",44.906635,-0.580068,,1,,Europe/Paris,,OBO, +OBO:SA:GOUJO,1,"Goujon",44.871274,-0.707812,,1,,Europe/Paris,,OBO, +OBO:SA:GOUR34,1,"Gouraud (av Vigneau)",44.840872,-0.667026,,1,,Europe/Paris,,OBO, +OBO:SA:GOURAU,1,"Gouraud",44.84168,-0.665749,,1,,Europe/Paris,,OBO, +OBO:SA:GOYA,1,"Goya",44.853436,-0.50889,,1,,Europe/Paris,,OBO, +OBO:SA:GPHILL,1,"Gérard Philipe",44.874328,-0.504278,,1,,Europe/Paris,,OBO, +OBO:SA:GPORT,1,"Parc d'Activité du Grand Port",44.813549,-0.540311,,1,,Europe/Paris,,OBO, +OBO:SA:GRANDJ,1,"Avenue de Grandjean",44.94293,-0.510433,,1,,Europe/Paris,,OBO, +OBO:SA:GRANE,1,"Granet",44.769799,-0.641248,,1,,Europe/Paris,,OBO, +OBO:SA:GRANGE,1,"Grangeneuve",44.804416,-0.63675,,1,,Europe/Paris,,OBO, +OBO:SA:GRAPPE,1,"La Grappe d'Or",44.83362,-0.617939,,1,,Europe/Paris,,OBO, +OBO:SA:GRAV02,1,"Les Gravières",44.781685,-0.540354,,1,,Europe/Paris,,OBO, +OBO:SA:GRAVAM,1,"La Grave d'Ambarès",44.930147,-0.473956,,1,,Europe/Paris,,OBO, +OBO:SA:GROUTE,1,"Gare Routière",44.896729,-0.72191,,1,,Europe/Paris,,OBO, +OBO:SA:GUEIFF,1,"Gustave Eiffel",44.853656,-0.669766,,1,,Europe/Paris,,OBO, +OBO:SA:GUESDE,1,"Guesde",44.858442,-0.537282,,1,,Europe/Paris,,OBO, +OBO:SA:GUILBA,1,"Guilbaud",44.821721,-0.607352,,1,,Europe/Paris,,OBO, +OBO:SA:GUTEN,1,"Gutenberg",44.78765,-0.645866,,1,,Europe/Paris,,OBO, +OBO:SA:GUYNE,1,"Guynemer",44.863966,-0.660665,,1,,Europe/Paris,,OBO, +OBO:SA:GUYNEM,1,"Guynemer",44.923454,-0.616188,,1,,Europe/Paris,,OBO, +OBO:SA:GUYON,1,"Guyon",44.851147,-0.528619,,1,,Europe/Paris,,OBO, +OBO:SA:GUYON2,1,"Guyon",44.898768,-0.500758,,1,,Europe/Paris,,OBO, +OBO:SA:GVENEU,1,"Grand Veneur",44.869899,-0.497823,,1,,Europe/Paris,,OBO, +OBO:SA:HAICEN,1,"Le Haillan Centre",44.873813,-0.677545,,1,,Europe/Paris,,OBO, +OBO:SA:HALCOT,1,"Halte TER Coty",44.9289,-0.494476,,1,,Europe/Paris,,OBO, +OBO:SA:HALGOR,1,"Halte TER La Gorp",44.928203,-0.497433,,1,,Europe/Paris,,OBO, +OBO:SA:HAMALO,1,"Hameaux de l'Alouette",44.784076,-0.690656,,1,,Europe/Paris,,OBO, +OBO:SA:HAMCHA,1,"Hameau du Château",44.94268,-0.602847,,1,,Europe/Paris,,OBO, +OBO:SA:HANG69,1,"Les Hangars (Médoc)",44.855354,-0.562663,,1,,Europe/Paris,,OBO, +OBO:SA:HANGAR,1,"Les Hangars",44.857591,-0.559371,,1,,Europe/Paris,,OBO, +OBO:SA:HARMON,1,"Centre M. Pagnol",44.811714,-0.586192,,1,,Europe/Paris,,OBO, +OBO:SA:HASTIB,1,"Hastignan Bourg",44.89764,-0.745082,,1,,Europe/Paris,,OBO, +OBO:SA:HAUTEF,1,"Hautefort",44.870307,-0.513025,,1,,Europe/Paris,,OBO, +OBO:SA:HAYRO,1,"Le Haillan Rostand (av. Mermoz)",44.859347,-0.666256,,1,,Europe/Paris,,OBO, +OBO:SA:HBARB,1,"Henri Barbusse",44.856215,-0.642179,,1,,Europe/Paris,,OBO, +OBO:SA:HBLEUS,1,"Horizons Bleus",44.88843,-0.637291,,1,,Europe/Paris,,OBO, +OBO:SA:HCANTE,1,"Cimbats",44.903219,-0.639785,,1,,Europe/Paris,,OBO, +OBO:SA:HERMIT,1,"Hermitage",44.844672,-0.602917,,1,,Europe/Paris,,OBO, +OBO:SA:HESTIG,1,"Hestigeac",44.843497,-0.737561,,1,,Europe/Paris,,OBO, +OBO:SA:HGUIT,1,"Hauts de Guitres",44.830596,-0.520913,,1,,Europe/Paris,,OBO, +OBO:SA:HILDE,1,"Clos de Hilde",44.799659,-0.530651,,1,,Europe/Paris,,OBO, +OBO:SA:HILSZ,1,"Hilsz",44.900275,-0.704542,,1,,Europe/Paris,,OBO, +OBO:SA:HIPP54,1,"Hippodrome",44.872058,-0.631762,,1,,Europe/Paris,,OBO, +OBO:SA:HIPPIQ,1,"Centre Hippique",44.893502,-0.763351,,1,,Europe/Paris,,OBO, +OBO:SA:HIPPOD,1,"Hippodrome",44.876902,-0.622416,,1,,Europe/Paris,,OBO, +OBO:SA:HLEVQ,1,"Hopital Haut Leveque",44.78724,-0.654882,,1,,Europe/Paris,,OBO, +OBO:SA:HLEVQU,1,"Clavé",44.790834,-0.656464,,1,,Europe/Paris,,OBO, +OBO:SA:HLIVRA,1,"Haut Livrac",44.800882,-0.675695,,1,,Europe/Paris,,OBO, +OBO:SA:HOCHE,1,"Hoche",44.844424,-0.605561,,1,,Europe/Paris,,OBO, +OBO:SA:HONTA,1,"La Hontan",44.766897,-0.549189,,1,,Europe/Paris,,OBO, +OBO:SA:HORTE,1,"Hortense",44.849309,-0.562033,,1,,Europe/Paris,,OBO, +OBO:SA:HORTIC,1,"Ecole d'Horticulture",44.872256,-0.663868,,1,,Europe/Paris,,OBO, +OBO:SA:HOTA,1,"Hontane",44.915334,-0.677383,,1,,Europe/Paris,,OBO, +OBO:SA:HOURCA,1,"Hourcade",44.78158,-0.547167,,1,,Europe/Paris,,OBO, +OBO:SA:HPOSTE,1,"Mérignac Centre",44.841292,-0.650319,,1,,Europe/Paris,,OBO, +OBO:SA:HREGIO,1,"St Bruno - Hôtel de Région",44.838515,-0.589893,,1,,Europe/Paris,,OBO, +OBO:SA:HUTTE,1,"La Hutte",44.884817,-0.60618,,1,,Europe/Paris,,OBO, +OBO:SA:ILEFRA,1,"Ile de France",44.845864,-0.496819,,1,,Europe/Paris,,OBO, +OBO:SA:IMA,1,"IMA",44.841686,-0.717969,,1,,Europe/Paris,,OBO, +OBO:SA:IMHOTE,1,"Imhotep",44.892057,-0.556354,,1,,Europe/Paris,,OBO, +OBO:SA:INRA,1,"INRA",44.786438,-0.578824,,1,,Europe/Paris,,OBO, +OBO:SA:INRIA,1,"INRIA",44.808932,-0.60027,,1,,Europe/Paris,,OBO, +OBO:SA:IRSA,1,"IRSA",44.822302,-0.665054,,1,,Europe/Paris,,OBO, +OBO:SA:ISSART,1,"Issartier",44.846708,-0.719936,,1,,Europe/Paris,,OBO, +OBO:SA:JACQ78,1,"Jacques",44.912948,-0.65383,,1,,Europe/Paris,,OBO, +OBO:SA:JACQET,1,"Jacquet",44.824315,-0.610571,,1,,Europe/Paris,,OBO, +OBO:SA:JACQU,1,"La Jacquotte",44.82061,-0.531508,,1,,Europe/Paris,,OBO, +OBO:SA:JACQUI,1,"Colonel Jacqui",44.811521,-0.63376,,1,,Europe/Paris,,OBO, +OBO:SA:JALL25,1,"Jallère",44.895694,-0.550447,,1,,Europe/Paris,,OBO, +OBO:SA:JALLES,1,"Les Jalles",44.895315,-0.638961,,1,,Europe/Paris,,OBO, +OBO:SA:JAMBES,1,"Jambes",44.929466,-0.508962,,1,,Europe/Paris,,OBO, +OBO:SA:JAMOIS,1,"Jamois",44.991474,-0.543324,,1,,Europe/Paris,,OBO, +OBO:SA:JARD,1,"Stade du Jard",44.846622,-0.63856,,1,,Europe/Paris,,OBO, +OBO:SA:JAUBE,1,"Jaubert",44.807478,-0.626782,,1,,Europe/Paris,,OBO, +OBO:SA:JBLAN,1,"Jean Blanc",44.85433,-0.644413,,1,,Europe/Paris,,OBO, +OBO:SA:JBOIS,1,"Joli Bois",44.915774,-0.722064,,1,,Europe/Paris,,OBO, +OBO:SA:JBOTA,1,"Jardin Botanique",44.842731,-0.556079,,1,,Europe/Paris,,OBO, +OBO:SA:JCBEAU,1,"Bourdieu",44.895749,-0.514574,,1,,Europe/Paris,,OBO, +OBO:SA:JDARC,1,"Jeanne d'Arc",44.803166,-0.545283,,1,,Europe/Paris,,OBO, +OBO:SA:JEADAR,1,"Jeanne d'Arc",44.823775,-0.592104,,1,,Europe/Paris,,OBO, +OBO:SA:JEANHA,1,"Jean Hameau",44.86824,-0.570306,,1,,Europe/Paris,,OBO, +OBO:SA:JEUNES,1,"Jeunesse",44.849876,-0.637859,,1,,Europe/Paris,,OBO, +OBO:SA:JFER95,1,"Jules Ferry",44.909841,-0.499128,,1,,Europe/Paris,,OBO, +OBO:SA:JJA06,1,"Jean Jaurès",44.837634,-0.53708,,1,,Europe/Paris,,OBO, +OBO:SA:JJA45,1,"Avenue Jean Jaurès",44.809203,-0.623235,,1,,Europe/Paris,,OBO, +OBO:SA:JJAU30,1,"Jean Jaurès (rue de la Morandière)",44.871464,-0.678671,,1,,Europe/Paris,,OBO, +OBO:SA:JJAU62,1,"Jean Jaurès",44.857627,-0.532441,,1,,Europe/Paris,,OBO, +OBO:SA:JJAU90,1,"Jean Jaurès",44.896692,-0.517372,,1,,Europe/Paris,,OBO, +OBO:SA:JJBOS,1,"Curie",44.812471,-0.557658,,1,,Europe/Paris,,OBO, +OBO:SA:JMACE,1,"Jean Macé",44.841839,-0.659849,,1,,Europe/Paris,,OBO, +OBO:SA:JMOU37,1,"Jean Moulin",44.912456,-0.636262,,1,,Europe/Paris,,OBO, +OBO:SA:JMOU91,1,"Jean Moulin",45.007225,-0.530244,,1,,Europe/Paris,,OBO, +OBO:SA:JOCUR,1,"Joliot Curie",44.841192,-0.651845,,1,,Europe/Paris,,OBO, +OBO:SA:JOFFR,1,"Maréchal Joffre",44.853171,-0.532003,,1,,Europe/Paris,,OBO, +OBO:SA:JOFFRE,1,"Maréchal Joffre",44.791591,-0.566999,,1,,Europe/Paris,,OBO, +OBO:SA:JONC,1,"Jonc",44.957591,-0.612737,,1,,Europe/Paris,,OBO, +OBO:SA:JONQUI,1,"Jonquilles",44.85594,-0.486639,,1,,Europe/Paris,,OBO, +OBO:SA:JOUH20,1,"Jouhaux",44.801557,-0.570834,,1,,Europe/Paris,,OBO, +OBO:SA:JOURDA,1,"Jourdane",44.947996,-0.537243,,1,,Europe/Paris,,OBO, +OBO:SA:JOURN,1,"Berges du Lac",44.879055,-0.568345,,1,,Europe/Paris,,OBO, +OBO:SA:JOUSSA,1,"Jossomme",44.897034,-0.748871,,1,,Europe/Paris,,OBO, +OBO:SA:JPAUME,1,"Jeu de Paume",44.842263,-0.599526,,1,,Europe/Paris,,OBO, +OBO:SA:JPRAT,1,"Jean Prat",44.932553,-0.502687,,1,,Europe/Paris,,OBO, +OBO:SA:JPUB90,1,"Jardin Public",44.899705,-0.517261,,1,,Europe/Paris,,OBO, +OBO:SA:JSIMO,1,"Jules Simon",44.775749,-0.577014,,1,,Europe/Paris,,OBO, +OBO:SA:JUDE,1,"Jude",44.866342,-0.637608,,1,,Europe/Paris,,OBO, +OBO:SA:JULIEN,1,"Julien",44.865458,-0.714474,,1,,Europe/Paris,,OBO, +OBO:SA:JURNU,1,"Journu Auber",44.859437,-0.569106,,1,,Europe/Paris,,OBO, +OBO:SA:JVILAR,1,"Jean Villar",44.88825,-0.616455,,1,,Europe/Paris,,OBO, +OBO:SA:KAOLAC,1,"Kaolack",44.817855,-0.665853,,1,,Europe/Paris,,OBO, +OBO:SA:KASTL,1,"Lycée Kastler",44.801226,-0.597112,,1,,Europe/Paris,,OBO, +OBO:SA:KENE63,1,"Kennedy",44.867463,-0.507321,,1,,Europe/Paris,,OBO, +OBO:SA:KENNE,1,"Kennedy",44.834357,-0.670648,,1,,Europe/Paris,,OBO, +OBO:SA:KERGO,1,"Kergomard",44.82346,-0.572575,,1,,Europe/Paris,,OBO, +OBO:SA:KIESE,1,"Kieser",44.842713,-0.594114,,1,,Europe/Paris,,OBO, +OBO:SA:KYRIE,1,"Kyrié",44.823441,-0.570656,,1,,Europe/Paris,,OBO, +OBO:SA:LABAR2,1,"Grattequina",44.943991,-0.560633,,1,,Europe/Paris,,OBO, +OBO:SA:LABARD,1,"Labarde",44.880691,-0.551342,,1,,Europe/Paris,,OBO, +OBO:SA:LABLAN,1,"La Blanche",44.945054,-0.511067,,1,,Europe/Paris,,OBO, +OBO:SA:LABOT,1,"Labottière",44.852577,-0.590095,,1,,Europe/Paris,,OBO, +OBO:SA:LABOUR,1,"Labourets",44.918469,-0.517444,,1,,Europe/Paris,,OBO, +OBO:SA:LACHA,1,"Lachassaigne",44.842627,-0.59008,,1,,Europe/Paris,,OBO, +OBO:SA:LACHEN,1,"Lachenal",45.00547,-0.530292,,1,,Europe/Paris,,OBO, +OBO:SA:LACONE,1,"Lacone",45.000696,-0.500126,,1,,Europe/Paris,,OBO, +OBO:SA:LAFA8,1,"Laffargue",44.832658,-0.528648,,1,,Europe/Paris,,OBO, +OBO:SA:LAFERM,1,"La Ferme",44.872304,-0.481522,,1,,Europe/Paris,,OBO, +OBO:SA:LAFIT,1,"Lafitte",44.799269,-0.58491,,1,,Europe/Paris,,OBO, +OBO:SA:LAFO40,1,"Résidence Coppélia",44.804731,-0.582657,,1,,Europe/Paris,,OBO, +OBO:SA:LAFO46,1,"Lafont",44.869857,-0.599059,,1,,Europe/Paris,,OBO, +OBO:SA:LAFONT,1,"Lafontaine",44.826844,-0.567535,,1,,Europe/Paris,,OBO, +OBO:SA:LAGEN,1,"La Générale",44.763678,-0.561458,,1,,Europe/Paris,,OBO, +OBO:SA:LAGLA,1,"Brossolette",44.834303,-0.622125,,1,,Europe/Paris,,OBO, +OBO:SA:LAGORP,1,"La Gorp",44.929676,-0.495742,,1,,Europe/Paris,,OBO, +OBO:SA:LAGRAV,1,"La Gravière",44.883896,-0.676552,,1,,Europe/Paris,,OBO, +OBO:SA:LAGUN,1,"Le Lagunet",44.883469,-0.659047,,1,,Europe/Paris,,OBO, +OBO:SA:LAJAR,1,"Lajarte",44.825267,-0.569904,,1,,Europe/Paris,,OBO, +OBO:SA:LAJAU,1,"Lajaunie",44.856632,-0.548369,,1,,Europe/Paris,,OBO, +OBO:SA:LAKANA,1,"Lakanal",44.864818,-0.614894,,1,,Europe/Paris,,OBO, +OBO:SA:LALA93,1,"La Lande",44.906448,-0.495391,,1,,Europe/Paris,,OBO, +OBO:SA:LALAN,1,"Lalanne",44.768903,-0.563782,,1,,Europe/Paris,,OBO, +OBO:SA:LALAND,1,"La Lande",44.866535,-0.498323,,1,,Europe/Paris,,OBO, +OBO:SA:LAMA40,1,"Les Harmonies",44.810891,-0.584873,,1,,Europe/Paris,,OBO, +OBO:SA:LAMA90,1,"Lamartine",44.903862,-0.512806,,1,,Europe/Paris,,OBO, +OBO:SA:LAMOTT,1,"La Motte",44.943694,-0.531674,,1,,Europe/Paris,,OBO, +OBO:SA:LANCON,1,"Alcide Lançon",44.910915,-0.641216,,1,,Europe/Paris,,OBO, +OBO:SA:LANDEG,1,"Vassivey",44.95249,-0.609533,,1,,Europe/Paris,,OBO, +OBO:SA:LANDGR,1,"Landegrand",44.960192,-0.625009,,1,,Europe/Paris,,OBO, +OBO:SA:LANDIR,1,"Landiras",44.830107,-0.584834,,1,,Europe/Paris,,OBO, +OBO:SA:LANDOT,1,"La Landotte",44.912504,-0.677787,,1,,Europe/Paris,,OBO, +OBO:SA:LANET,1,"Lanet",44.871301,-0.597732,,1,,Europe/Paris,,OBO, +OBO:SA:LANGE2,1,"Lange",44.781696,-0.607908,,1,,Europe/Paris,,OBO, +OBO:SA:LANGEV,1,"Langevin",44.782533,-0.648394,,1,,Europe/Paris,,OBO, +OBO:SA:LANGVN,1,"Langevin",44.85135,-0.660469,,1,,Europe/Paris,,OBO, +OBO:SA:LANNES,1,"Lannes (Collège Manon Cormier)",44.900136,-0.506378,,1,,Europe/Paris,,OBO, +OBO:SA:LAPAIL,1,"La Paillère",44.79563,-0.604993,,1,,Europe/Paris,,OBO, +OBO:SA:LAPLAC,1,"Laplace",44.856618,-0.668499,,1,,Europe/Paris,,OBO, +OBO:SA:LAPRAI,1,"La Prairie",44.867252,-0.497309,,1,,Europe/Paris,,OBO, +OBO:SA:LAROQ,1,"Laroque",44.874302,-0.570692,,1,,Europe/Paris,,OBO, +OBO:SA:LAROUI,1,"Larouillat",44.806999,-0.639178,,1,,Europe/Paris,,OBO, +OBO:SA:LARTIG,1,"Lartigue",44.840439,-0.596704,,1,,Europe/Paris,,OBO, +OBO:SA:LATASS,1,"De Lattre de Tassigny",44.904906,-0.625842,,1,,Europe/Paris,,OBO, +OBO:SA:LATECO,1,"Latécoère",44.866928,-0.573524,,1,,Europe/Paris,,OBO, +OBO:SA:LATRE,1,"La Tresne",44.840798,-0.550307,,1,,Europe/Paris,,OBO, +OBO:SA:LATULE,1,"Latule",44.870415,-0.565153,,1,,Europe/Paris,,OBO, +OBO:SA:LAUBA,1,"Lauba",44.895675,-0.731021,,1,,Europe/Paris,,OBO, +OBO:SA:LAVER,1,"Lavergne",44.876817,-0.520892,,1,,Europe/Paris,,OBO, +OBO:SA:LAVGNO,1,"Lavignolle",44.883227,-0.566107,,1,,Europe/Paris,,OBO, +OBO:SA:LAVIG,1,"Lavigne",44.847265,-0.563366,,1,,Europe/Paris,,OBO, +OBO:SA:LAVOIR,1,"Lavoir",44.914413,-0.514602,,1,,Europe/Paris,,OBO, +OBO:SA:LBATU,1,"Labatut",44.835328,-0.632818,,1,,Europe/Paris,,OBO, +OBO:SA:LBERT,1,"Liberté",44.807741,-0.553402,,1,,Europe/Paris,,OBO, +OBO:SA:LBLAN,1,"Louis Blanc",44.864288,-0.594716,,1,,Europe/Paris,,OBO, +OBO:SA:LBLU16,1,"Léon Blum",44.852555,-0.641922,,1,,Europe/Paris,,OBO, +OBO:SA:LBLU21,1,"Collège Pont de la Maye",44.78094,-0.568639,,1,,Europe/Paris,,OBO, +OBO:SA:LBROW,1,"Lewis Brown",44.863246,-0.561061,,1,,Europe/Paris,,OBO, +OBO:SA:LBRUN,1,"Grand-Lebrun",44.850664,-0.606368,,1,,Europe/Paris,,OBO, +OBO:SA:LCHAR,1,"La Chartreuse",44.837348,-0.593922,,1,,Europe/Paris,,OBO, +OBO:SA:LEBEC,1,"Le B.E.C",44.793061,-0.61772,,1,,Europe/Paris,,OBO, +OBO:SA:LEBLUM,1,"Léon Blum",44.868266,-0.60364,,1,,Europe/Paris,,OBO, +OBO:SA:LELAC,1,"CAF",44.890129,-0.557601,,1,,Europe/Paris,,OBO, +OBO:SA:LENINE,1,"Lénine",44.796167,-0.557838,,1,,Europe/Paris,,OBO, +OBO:SA:LENOI,1,"Collège L. Lenoir",44.84052,-0.553102,,1,,Europe/Paris,,OBO, +OBO:SA:LEPON,1,"Le Pont",44.834983,-0.625589,,1,,Europe/Paris,,OBO, +OBO:SA:LEPOUJ,1,"Le Poujeau",44.808991,-0.629007,,1,,Europe/Paris,,OBO, +OBO:SA:LERAB,1,"Les Erables",44.812954,-0.622901,,1,,Europe/Paris,,OBO, +OBO:SA:LESAS,1,"Les As",44.809424,-0.658326,,1,,Europe/Paris,,OBO, +OBO:SA:LESECU,1,"Les Ecus",44.869583,-0.605543,,1,,Europe/Paris,,OBO, +OBO:SA:LESNAT,1,"Les Naturelles",44.852388,-0.482649,,1,,Europe/Paris,,OBO, +OBO:SA:LESPI1,1,"Les Pins (arrêt de descente)",44.856107,-0.659139,,1,,Europe/Paris,,OBO, +OBO:SA:LESPIA,1,"Lespiault",44.82659,-0.591309,,1,,Europe/Paris,,OBO, +OBO:SA:LEST93,1,"Du Roy",44.953307,-0.512155,,1,,Europe/Paris,,OBO, +OBO:SA:LESTA,1,"Lestage",44.777076,-0.620367,,1,,Europe/Paris,,OBO, +OBO:SA:LESTAG,1,"Lestage",44.874442,-0.696188,,1,,Europe/Paris,,OBO, +OBO:SA:LESTO,1,"Lestonnat",44.852273,-0.618956,,1,,Europe/Paris,,OBO, +OBO:SA:LESTRI,1,"Domaine de Lestrille",44.875353,-0.493207,,1,,Europe/Paris,,OBO, +OBO:SA:LEYBAR,1,"Leybardie",44.861257,-0.562683,,1,,Europe/Paris,,OBO, +OBO:SA:LEYGUE,1,"Leygues",44.831884,-0.613964,,1,,Europe/Paris,,OBO, +OBO:SA:LEYRA,1,"Clos de Leyran",44.77855,-0.539612,,1,,Europe/Paris,,OBO, +OBO:SA:LEYSO,1,"Croix de Leysotte",44.806703,-0.573067,,1,,Europe/Paris,,OBO, +OBO:SA:LFAUR,1,"Lucien Faure",44.865854,-0.561385,,1,,Europe/Paris,,OBO, +OBO:SA:LFONT,1,"La Fontaine",44.811692,-0.664171,,1,,Europe/Paris,,OBO, +OBO:SA:LGRAV,1,"Lycée des Graves",44.760938,-0.622186,,1,,Europe/Paris,,OBO, +OBO:SA:LGRAV2,1,"La Grave",44.822042,-0.69165,,1,,Europe/Paris,,OBO, +OBO:SA:LHOTEL,1,"Lycée Hôtelier",44.79571,-0.592373,,1,,Europe/Paris,,OBO, +OBO:SA:LIB55,1,"Mairie du Taillan Médoc",44.904618,-0.669026,,1,,Europe/Paris,,OBO, +OBO:SA:LIBE52,1,"Libération",44.881169,-0.652559,,1,,Europe/Paris,,OBO, +OBO:SA:LIBE76,1,"Libération",44.865587,-0.605939,,1,,Europe/Paris,,OBO, +OBO:SA:LIBE90,1,"Liberté",44.905632,-0.508276,,1,,Europe/Paris,,OBO, +OBO:SA:LIBE92,1,"Liberté",44.939696,-0.492205,,1,,Europe/Paris,,OBO, +OBO:SA:LIEGE,1,"Lièges",44.846744,-0.629617,,1,,Europe/Paris,,OBO, +OBO:SA:LIGNAC,1,"Lignac",44.933885,-0.50915,,1,,Europe/Paris,,OBO, +OBO:SA:LINDB,1,"Lindbergh",44.834886,-0.691155,,1,,Europe/Paris,,OBO, +OBO:SA:LISS91,1,"Lissandre",44.868938,-0.537538,,1,,Europe/Paris,,OBO, +OBO:SA:LISVIG,1,"Lisière du Vignoble",44.957432,-0.599848,,1,,Europe/Paris,,OBO, +OBO:SA:LIVRAN,1,"Livran",44.829744,-0.589927,,1,,Europe/Paris,,OBO, +OBO:SA:LJMONN,1,"Lycée Jean Monnet",44.916049,-0.634679,,1,,Europe/Paris,,OBO, +OBO:SA:LMAR93,1,"Lamartine",44.903639,-0.496598,,1,,Europe/Paris,,OBO, +OBO:SA:LMARTI,1,"Lamartine",44.886029,-0.693757,,1,,Europe/Paris,,OBO, +OBO:SA:LMAYNE,1,"Le Mayne",45.021785,-0.575807,,1,,Europe/Paris,,OBO, +OBO:SA:LOGEY,1,"Logey",44.836216,-0.66745,,1,,Europe/Paris,,OBO, +OBO:SA:LOGNA,1,"Lognac",44.838297,-0.611603,,1,,Europe/Paris,,OBO, +OBO:SA:LOMIE,1,"Louis Mie",44.831703,-0.58315,,1,,Europe/Paris,,OBO, +OBO:SA:LONGC,1,"Longchamps",44.850235,-0.58114,,1,,Europe/Paris,,OBO, +OBO:SA:LOPES,1,"Place Lopès",44.845903,-0.612797,,1,,Europe/Paris,,OBO, +OBO:SA:LORBAS,1,"Lormont Bas",44.878132,-0.534651,,1,,Europe/Paris,,OBO, +OBO:SA:LORENZ,1,"Mairie de Gradignan",44.770819,-0.608842,,1,,Europe/Paris,,OBO, +OBO:SA:LORVIL,1,"Lormont Village",44.881607,-0.497228,,1,,Europe/Paris,,OBO, +OBO:SA:LOULI,1,"Lou Licot",44.757424,-0.736368,,1,,Europe/Paris,,OBO, +OBO:SA:LOUPIA,1,"Loupiac",44.843218,-0.800681,,1,,Europe/Paris,,OBO, +OBO:SA:LPLATA,1,"Lot. Les Platanes",44.8123,-0.644896,,1,,Europe/Paris,,OBO, +OBO:SA:LRTIGU,1,"Parc Peyandreau",44.83325,-0.664882,,1,,Europe/Paris,,OBO, +OBO:SA:LSM,1,"Lycée Sud Médoc",44.905344,-0.714554,,1,,Europe/Paris,,OBO, +OBO:SA:LSMBM,1,"Lycée Sud Médoc (Bois de Mont)",44.904805,-0.71183,,1,,Europe/Paris,,OBO, +OBO:SA:LSMED,1,"Lycée sud Médoc",44.906197,-0.715207,,1,,Europe/Paris,,OBO, +OBO:SA:LSMSM,1,"Lycée Sud Médoc",44.903371,-0.711989,,1,,Europe/Paris,,OBO, +OBO:SA:LUCASS,1,"Lucassot",44.824868,-0.684053,,1,,Europe/Paris,,OBO, +OBO:SA:LUCAT,1,"Domaine de Lucatet",44.821352,-0.665714,,1,,Europe/Paris,,OBO, +OBO:SA:LUGAT,1,"Lugat",44.951709,-0.615372,,1,,Europe/Paris,,OBO, +OBO:SA:LUXEM,1,"Luxembourg",44.908781,-0.643884,,1,,Europe/Paris,,OBO, +OBO:SA:LUZE,1,"Luze",44.855267,-0.577981,,1,,Europe/Paris,,OBO, +OBO:SA:LVENTU,1,"Lino Ventura",44.801814,-0.681966,,1,,Europe/Paris,,OBO, +OBO:SA:LVLOUI,1,"Lycée Victor Louis",44.802926,-0.593309,,1,,Europe/Paris,,OBO, +OBO:SA:LYAUTE,1,"Lyautey",44.793367,-0.631643,,1,,Europe/Paris,,OBO, +OBO:SA:LYCAGR,1,"Château Dillon",44.919335,-0.634818,,1,,Europe/Paris,,OBO, +OBO:SA:LYCBAT,1,"Lycée du Bâtiment",44.911562,-0.619269,,1,,Europe/Paris,,OBO, +OBO:SA:LYPACL,1,"Lycée Pape Clément",44.808695,-0.649416,,1,,Europe/Paris,,OBO, +OBO:SA:LYPEGU,1,"Lycée Charles Peguy",44.8893,-0.627084,,1,,Europe/Paris,,OBO, +OBO:SA:LYPLAI,1,"Lycée de la Plaine",44.875778,-0.664611,,1,,Europe/Paris,,OBO, +OBO:SA:MACED,1,"Macédo",44.800242,-0.668773,,1,,Europe/Paris,,OBO, +OBO:SA:MACHAD,1,"Machadey",44.922681,-0.670805,,1,,Europe/Paris,,OBO, +OBO:SA:MACOR,1,"Collège Manon Cormier",44.901354,-0.510468,,1,,Europe/Paris,,OBO, +OBO:SA:MADEL,1,"La Madeleine",44.774415,-0.637207,,1,,Europe/Paris,,OBO, +OBO:SA:MADRA,1,"Madran",44.96777,-0.533972,,1,,Europe/Paris,,OBO, +OBO:SA:MADRAN,1,"Madran",44.805009,-0.657336,,1,,Europe/Paris,,OBO, +OBO:SA:MAESTE,1,"Mayne d'Estève",44.92519,-0.753222,,1,,Europe/Paris,,OBO, +OBO:SA:MAGEN,1,"Magendie",44.882124,-0.526029,,1,,Europe/Paris,,OBO, +OBO:SA:MAGON,1,"Magonty",44.793883,-0.701983,,1,,Europe/Paris,,OBO, +OBO:SA:MAHEL,1,"Mahéla",44.822656,-0.60505,,1,,Europe/Paris,,OBO, +OBO:SA:MAI36,1,"8 Mai 1945",44.865206,-0.638434,,1,,Europe/Paris,,OBO, +OBO:SA:MAI81,1,"10 Mai 1981",45.007744,-0.52496,,1,,Europe/Paris,,OBO, +OBO:SA:MAILOR,1,"Mairie de Lormont",44.880024,-0.524461,,1,,Europe/Paris,,OBO, +OBO:SA:MAIMFD,1,"Mairie de St Louis de Montferrand",44.953524,-0.534451,,1,,Europe/Paris,,OBO, +OBO:SA:MALAGE,1,"Malagène",44.907116,-0.635859,,1,,Europe/Paris,,OBO, +OBO:SA:MALART,1,"Malartic",44.771171,-0.599049,,1,,Europe/Paris,,OBO, +OBO:SA:MALBE,1,"Malbec",44.823589,-0.565891,,1,,Europe/Paris,,OBO, +OBO:SA:MALBEC,1,"Malbec",44.827929,-0.560974,,1,,Europe/Paris,,OBO, +OBO:SA:MALBRE,1,"Malbrède",44.982998,-0.48166,,1,,Europe/Paris,,OBO, +OBO:SA:MALLA,1,"Mallarmé",44.856023,-0.523807,,1,,Europe/Paris,,OBO, +OBO:SA:MALLET,1,"RPA Villa Nova",44.785044,-0.566305,,1,,Europe/Paris,,OBO, +OBO:SA:MALRA,1,"Malraux",44.88462,-0.59863,,1,,Europe/Paris,,OBO, +OBO:SA:MALTER,1,"Malterre",44.89622,-0.777794,,1,,Europe/Paris,,OBO, +OBO:SA:MAMBAR,1,"Mairie d'Ambarès",44.926833,-0.489996,,1,,Europe/Paris,,OBO, +OBO:SA:MANAG,1,"Ecole de Management",44.796553,-0.602521,,1,,Europe/Paris,,OBO, +OBO:SA:MANDES,1,"Pierre Mendès France",44.829606,-0.640351,,1,,Europe/Paris,,OBO, +OBO:SA:MANDR2,1,"Mandron",44.853948,-0.581415,,1,,Europe/Paris,,OBO, +OBO:SA:MANDRO,1,"Mandron",44.859147,-0.589559,,1,,Europe/Paris,,OBO, +OBO:SA:MANEG,1,"Manège",44.83912,-0.587626,,1,,Europe/Paris,,OBO, +OBO:SA:MANSE,1,"Mansencal",44.78242,-0.576667,,1,,Europe/Paris,,OBO, +OBO:SA:MAR57,1,"Martyrs de la Résistance",44.880717,-0.611266,,1,,Europe/Paris,,OBO, +OBO:SA:MARAN,1,"Place Maran",44.875654,-0.552709,,1,,Europe/Paris,,OBO, +OBO:SA:MARCHE,1,"Marchegay",44.840813,-0.755784,,1,,Europe/Paris,,OBO, +OBO:SA:MARCTR,1,"Martignas Centre",44.841009,-0.775364,,1,,Europe/Paris,,OBO, +OBO:SA:MARGAU,1,"Margaux",44.846481,-0.792242,,1,,Europe/Paris,,OBO, +OBO:SA:MARION,1,"Marionneau",44.841176,-0.587035,,1,,Europe/Paris,,OBO, +OBO:SA:MARLEC,1,"Maréchal Leclerc",44.842275,-0.769147,,1,,Europe/Paris,,OBO, +OBO:SA:MARN46,1,"Marne",44.788617,-0.675804,,1,,Europe/Paris,,OBO, +OBO:SA:MARQUI,1,"Le Marquis",45.000485,-0.553962,,1,,Europe/Paris,,OBO, +OBO:SA:MARRO,1,"Marronniers",44.843907,-0.679868,,1,,Europe/Paris,,OBO, +OBO:SA:MARTI2,1,"Martin",44.856323,-0.638885,,1,,Europe/Paris,,OBO, +OBO:SA:MARTIG,1,"Mairie d'Artigues",44.859865,-0.492205,,1,,Europe/Paris,,OBO, +OBO:SA:MARTIN,1,"Martinique",44.854418,-0.572423,,1,,Europe/Paris,,OBO, +OBO:SA:MARTO,1,"Martouret",44.836573,-0.511636,,1,,Europe/Paris,,OBO, +OBO:SA:MARTY,1,"Martyrs de la résistance",44.841991,-0.584402,,1,,Europe/Paris,,OBO, +OBO:SA:MARTYR,1,"Martyrs de la Résistance",44.807691,-0.559748,,1,,Europe/Paris,,OBO, +OBO:SA:MARYS,1,"Gare de Bruges",44.887642,-0.612422,,1,,Europe/Paris,,OBO, +OBO:SA:MATHIE,1,"Mathieu",44.894572,-0.607733,,1,,Europe/Paris,,OBO, +OBO:SA:MATHYA,1,"Mathyadeux",44.919589,-0.678042,,1,,Europe/Paris,,OBO, +OBO:SA:MATTE,1,"Mattéoti",44.831077,-0.544494,,1,,Europe/Paris,,OBO, +OBO:SA:MAUBIN,1,"Mairie de St Aubin",44.912807,-0.723573,,1,,Europe/Paris,,OBO, +OBO:SA:MAUGU,1,"Collège A. Mauguin",44.772843,-0.596775,,1,,Europe/Paris,,OBO, +OBO:SA:MAUR,1,"St Maur",44.851913,-0.578574,,1,,Europe/Paris,,OBO, +OBO:SA:MAURI,1,"Maurian",44.919181,-0.627945,,1,,Europe/Paris,,OBO, +OBO:SA:MAURIA,1,"Maurian",44.830749,-0.620857,,1,,Europe/Paris,,OBO, +OBO:SA:MAZEA,1,"Mazeau",44.870819,-0.710089,,1,,Europe/Paris,,OBO, +OBO:SA:MBARAI,1,"Clinique du Sport",44.817504,-0.682304,,1,,Europe/Paris,,OBO, +OBO:SA:MBEGL,1,"Mairie de Bègles",44.808547,-0.542581,,1,,Europe/Paris,,OBO, +OBO:SA:MBLANQ,1,"Mairie de Blanquefort",44.908446,-0.63018,,1,,Europe/Paris,,OBO, +OBO:SA:MBOUSC,1,"Mairie du Bouscat",44.865543,-0.599454,,1,,Europe/Paris,,OBO, +OBO:SA:MBRIE,1,"Marché de Brienne",44.825753,-0.54776,,1,,Europe/Paris,,OBO, +OBO:SA:MCABLA,1,"Mairie de Carbon Blanc",44.895315,-0.504372,,1,,Europe/Paris,,OBO, +OBO:SA:MCARTY,1,"Mac Carthy",44.838558,-0.621544,,1,,Europe/Paris,,OBO, +OBO:SA:MCAZEA,1,"Moulin de Cazeaux",44.780263,-0.593068,,1,,Europe/Paris,,OBO, +OBO:SA:MCENO,1,"Mairie de Cenon",44.856021,-0.53222,,1,,Europe/Paris,,OBO, +OBO:SA:MCONVA,1,"Maison de Convalescence",44.882291,-0.521476,,1,,Europe/Paris,,OBO, +OBO:SA:MCRIT,1,"République",44.826841,-0.53343,,1,,Europe/Paris,,OBO, +OBO:SA:MDORMO,1,"Marx Dormoy",44.839363,-0.635936,,1,,Europe/Paris,,OBO, +OBO:SA:MECGR,1,"Domaine de La Plantation",44.789528,-0.535469,,1,,Europe/Paris,,OBO, +OBO:SA:MEDIA,1,"Médiathèque",44.807062,-0.589161,,1,,Europe/Paris,,OBO, +OBO:SA:MEDOQ,1,"La Médoquine",44.819254,-0.598545,,1,,Europe/Paris,,OBO, +OBO:SA:MEFRA,1,"Mendès France",44.840178,-0.639656,,1,,Europe/Paris,,OBO, +OBO:SA:MEIGNA,1,"Résidence Meignan",44.903283,-0.509302,,1,,Europe/Paris,,OBO, +OBO:SA:MENESP,1,"Menespey",44.881259,-0.670991,,1,,Europe/Paris,,OBO, +OBO:SA:MENFRA,1,"Mendès France",44.79881,-0.541838,,1,,Europe/Paris,,OBO, +OBO:SA:MENHIR,1,"Les Menhirs",44.81132,-0.650302,,1,,Europe/Paris,,OBO, +OBO:SA:MERL93,1,"Merle",44.959122,-0.507112,,1,,Europe/Paris,,OBO, +OBO:SA:MERLE,1,"Merle",44.796098,-0.694218,,1,,Europe/Paris,,OBO, +OBO:SA:MERM03,1,"Mermoz",44.865554,-0.665927,,1,,Europe/Paris,,OBO, +OBO:SA:MERSOL,1,"Mérignac Soleil",44.830545,-0.658186,,1,,Europe/Paris,,OBO, +OBO:SA:MESANG,1,"Mésanges",44.784333,-0.608559,,1,,Europe/Paris,,OBO, +OBO:SA:MESQUI,1,"Mesquita",44.894216,-0.506059,,1,,Europe/Paris,,OBO, +OBO:SA:MESSA,1,"Centre de Voile",44.878877,-0.582252,,1,,Europe/Paris,,OBO, +OBO:SA:METAIE,1,"Métairie",44.896893,-0.740632,,1,,Europe/Paris,,OBO, +OBO:SA:METEO,1,"Météo France",44.831684,-0.693886,,1,,Europe/Paris,,OBO, +OBO:SA:MEUNI,1,"Meunier",44.828721,-0.563266,,1,,Europe/Paris,,OBO, +OBO:SA:MEUNIR,1,"Meunier",44.899991,-0.520356,,1,,Europe/Paris,,OBO, +OBO:SA:MEYRA,1,"Meyraud",44.797328,-0.665583,,1,,Europe/Paris,,OBO, +OBO:SA:MFLOI,1,"Mairie de Floirac",44.831358,-0.527578,,1,,Europe/Paris,,OBO, +OBO:SA:MFOC94,1,"Maréchal Foch",44.93218,-0.473657,,1,,Europe/Paris,,OBO, +OBO:SA:MFOCH,1,"Maréchal Foch",44.769411,-0.544148,,1,,Europe/Paris,,OBO, +OBO:SA:MFOCH2,1,"Maréchal Foch",44.855172,-0.533985,,1,,Europe/Paris,,OBO, +OBO:SA:MFRA94,1,"Mendès France",44.925673,-0.485591,,1,,Europe/Paris,,OBO, +OBO:SA:MFRAN,1,"Mendès France",44.843004,-0.510759,,1,,Europe/Paris,,OBO, +OBO:SA:MFRANC,1,"Mendès France",44.879859,-0.512482,,1,,Europe/Paris,,OBO, +OBO:SA:MGAJA,1,"Moulin de Gajac",44.889621,-0.706058,,1,,Europe/Paris,,OBO, +OBO:SA:MGUA,1,"Moulin du Gua",44.933734,-0.507395,,1,,Europe/Paris,,OBO, +OBO:SA:MHAILL,1,"Mairie du Haillan",44.872108,-0.677192,,1,,Europe/Paris,,OBO, +OBO:SA:MHELET,1,"Michelet",44.821589,-0.620115,,1,,Europe/Paris,,OBO, +OBO:SA:MICHEL,1,"Gambetta Mériadeck",44.840098,-0.581355,,1,,Europe/Paris,,OBO, +OBO:SA:MICKAE,1,"Mickaëlis",44.936677,-0.480851,,1,,Europe/Paris,,OBO, +OBO:SA:MIGNO,1,"Mignonne",44.775332,-0.595739,,1,,Europe/Paris,,OBO, +OBO:SA:MILAN,1,"Zone de Fret (Milan)",44.893913,-0.604444,,1,,Europe/Paris,,OBO, +OBO:SA:MIMOS,1,"Mimosas",44.884651,-0.525935,,1,,Europe/Paris,,OBO, +OBO:SA:MINGOT,1,"Clairière de Mingot",44.873619,-0.70507,,1,,Europe/Paris,,OBO, +OBO:SA:MIRAIL,1,"Mirail",44.861536,-0.490814,,1,,Europe/Paris,,OBO, +OBO:SA:MIREMB,1,"Mirambeau",45.02506,-0.566884,,1,,Europe/Paris,,OBO, +OBO:SA:MITT92,1,"Mitterrand",44.889397,-0.510094,,1,,Europe/Paris,,OBO, +OBO:SA:MITTE,1,"Mitterrand",44.834032,-0.519982,,1,,Europe/Paris,,OBO, +OBO:SA:MJOFF,1,"Maréchal Joffre",44.821782,-0.62908,,1,,Europe/Paris,,OBO, +OBO:SA:MJOFFR,1,"Maréchal Joffre",44.899448,-0.514026,,1,,Europe/Paris,,OBO, +OBO:SA:MJUI80,1,"Maréchal Juin",44.774213,-0.59828,,1,,Europe/Paris,,OBO, +OBO:SA:MLIBE,1,"Martyrs de la Libération",44.835632,-0.681542,,1,,Europe/Paris,,OBO, +OBO:SA:MLINEA,1,"Moulineau",44.87085,-0.661545,,1,,Europe/Paris,,OBO, +OBO:SA:MMQUIE,1,"Montaigne - Montesquieu",44.796431,-0.614006,,1,,Europe/Paris,,OBO, +OBO:SA:MNEUV,1,"Maison Neuve",44.773324,-0.63434,,1,,Europe/Paris,,OBO, +OBO:SA:MOCAUP,1,"Moulin de Caupian",44.882797,-0.739666,,1,,Europe/Paris,,OBO, +OBO:SA:MOLIER,1,"Molière",44.904493,-0.69997,,1,,Europe/Paris,,OBO, +OBO:SA:MON32,1,"Montaigne",44.870957,-0.515543,,1,,Europe/Paris,,OBO, +OBO:SA:MONBA,1,"Monbalon 2",44.803523,-0.666861,,1,,Europe/Paris,,OBO, +OBO:SA:MONDES,1,"Place Mondésir",44.838536,-0.617249,,1,,Europe/Paris,,OBO, +OBO:SA:MONDIO,1,"Mondion",44.999192,-0.493941,,1,,Europe/Paris,,OBO, +OBO:SA:MONGE,1,"Monge",44.776423,-0.657665,,1,,Europe/Paris,,OBO, +OBO:SA:MONNE,1,"Monnet",44.772684,-0.582753,,1,,Europe/Paris,,OBO, +OBO:SA:MONRAB,1,"Monrabeau",44.838694,-0.624555,,1,,Europe/Paris,,OBO, +OBO:SA:MONRE,1,"Côte de Monrepos",44.84457,-0.521618,,1,,Europe/Paris,,OBO, +OBO:SA:MONT37,1,"Montesquieu",44.907513,-0.640095,,1,,Europe/Paris,,OBO, +OBO:SA:MONT91,1,"Herzog",45.011078,-0.532641,,1,,Europe/Paris,,OBO, +OBO:SA:MONTAI,1,"Montaigne",44.916901,-0.642823,,1,,Europe/Paris,,OBO, +OBO:SA:MONTAL,1,"Montalieu",44.879616,-0.660558,,1,,Europe/Paris,,OBO, +OBO:SA:MONTE,1,"Montesquieu",44.846248,-0.63305,,1,,Europe/Paris,,OBO, +OBO:SA:MONTEI,1,"Le Monteil",44.802376,-0.646581,,1,,Europe/Paris,,OBO, +OBO:SA:MONTF,1,"Montfort",44.769028,-0.595583,,1,,Europe/Paris,,OBO, +OBO:SA:MONTH,1,"Montherlant",44.794543,-0.580818,,1,,Europe/Paris,,OBO, +OBO:SA:MONTOY,1,"Montoya",44.947584,-0.592595,,1,,Europe/Paris,,OBO, +OBO:SA:MONTSO,1,"Montsouris",44.907184,-0.516635,,1,,Europe/Paris,,OBO, +OBO:SA:MORAN,1,"La Morandière",44.859467,-0.677606,,1,,Europe/Paris,,OBO, +OBO:SA:MORAND,1,"La Morandière (av de Magudas)",44.858126,-0.678355,,1,,Europe/Paris,,OBO, +OBO:SA:MORTON,1,"Cora Morton",44.934729,-0.634846,,1,,Europe/Paris,,OBO, +OBO:SA:MOSCO,1,"Place Moscou",44.844452,-0.609588,,1,,Europe/Paris,,OBO, +OBO:SA:MOULER,1,"Stade de Moulerens",44.780166,-0.631012,,1,,Europe/Paris,,OBO, +OBO:SA:MOULI,1,"Grands Moulins",44.853973,-0.553466,,1,,Europe/Paris,,OBO, +OBO:SA:MOULIN,1,"Mouline",44.913253,-0.492791,,1,,Europe/Paris,,OBO, +OBO:SA:MOULIS,1,"Moulis",44.845524,-0.796491,,1,,Europe/Paris,,OBO, +OBO:SA:MOUNE,1,"La Moune",44.864425,-0.47701,,1,,Europe/Paris,,OBO, +OBO:SA:MOUNIC,1,"Mounic",44.924563,-0.731313,,1,,Europe/Paris,,OBO, +OBO:SA:MOZ45,1,"Mozart",44.812078,-0.61645,,1,,Europe/Paris,,OBO, +OBO:SA:MOZAR,1,"Place Mozart",44.814661,-0.601194,,1,,Europe/Paris,,OBO, +OBO:SA:MOZART,1,"Mozart",44.768635,-0.62024,,1,,Europe/Paris,,OBO, +OBO:SA:MROUG,1,"Moulin Rouge",44.839776,-0.603122,,1,,Europe/Paris,,OBO, +OBO:SA:MRRON,1,"Marronniers",44.861689,-0.589956,,1,,Europe/Paris,,OBO, +OBO:SA:MSAUBI,1,"Eglise de Saint Aubin",44.911913,-0.724858,,1,,Europe/Paris,,OBO, +OBO:SA:MSMED,1,"Mairie de Saint Médard",44.896189,-0.71786,,1,,Europe/Paris,,OBO, +OBO:SA:MTAIGN,1,"Montaigne",44.817826,-0.632231,,1,,Europe/Paris,,OBO, +OBO:SA:MTYRS,1,"Martyrs",44.843901,-0.774457,,1,,Europe/Paris,,OBO, +OBO:SA:MURAT,1,"Murat",44.847445,-0.626641,,1,,Europe/Paris,,OBO, +OBO:SA:MUSCAD,1,"Domaine de Muscadet",44.916566,-0.508928,,1,,Europe/Paris,,OBO, +OBO:SA:MVENT,1,"Moulin à Vent",44.885744,-0.63867,,1,,Europe/Paris,,OBO, +OBO:SA:MVINCE,1,"Mairie de Saint Vincent",44.956979,-0.468842,,1,,Europe/Paris,,OBO, +OBO:SA:N21582,1,"Euromédoc",44.908151,-0.724672,,1,,Europe/Paris,,OBO, +OBO:SA:NANSOU,1,"Nansouty",44.819757,-0.572227,,1,,Europe/Paris,,OBO, +OBO:SA:NAOUD,1,"La Naoude",44.960426,-0.619648,,1,,Europe/Paris,,OBO, +OBO:SA:NAUPLI,1,"Nauplie",44.844258,-0.791471,,1,,Europe/Paris,,OBO, +OBO:SA:NAVAR,1,"Navarre",44.829805,-0.581224,,1,,Europe/Paris,,OBO, +OBO:SA:NCIMET,1,"Bois Gramond",44.872672,-0.644933,,1,,Europe/Paris,,OBO, +OBO:SA:NCOLI,1,"Nungesser et Coli",44.841477,-0.655918,,1,,Europe/Paris,,OBO, +OBO:SA:NENUPH,1,"Nénuphars",44.85335,-0.482456,,1,,Europe/Paris,,OBO, +OBO:SA:NICOLA,1,"Saint Nicolas",44.827077,-0.57247,,1,,Europe/Paris,,OBO, +OBO:SA:NIGES,1,"Nigès",44.841157,-0.759044,,1,,Europe/Paris,,OBO, +OBO:SA:NOLIQU,1,"Noliquet",45.003632,-0.512486,,1,,Europe/Paris,,OBO, +OBO:SA:NOUAU,1,"Nouaux",44.855152,-0.530638,,1,,Europe/Paris,,OBO, +OBO:SA:NOUTA,1,"Noutary",44.816051,-0.542412,,1,,Europe/Paris,,OBO, +OBO:SA:NOUZA,1,"Nouzarède",44.809537,-0.562441,,1,,Europe/Paris,,OBO, +OBO:SA:NPENA,1,"Nancel Pénard",44.809147,-0.632765,,1,,Europe/Paris,,OBO, +OBO:SA:NUMA,1,"Quai Numa Sensine",44.875233,-0.535825,,1,,Europe/Paris,,OBO, +OBO:SA:NUNGES,1,"Nungesser",44.925106,-0.61972,,1,,Europe/Paris,,OBO, +OBO:SA:NUYENS,1,"Nuyens",44.845906,-0.56473,,1,,Europe/Paris,,OBO, +OBO:SA:OAURIA,1,"Oscar Auriac",44.818108,-0.700528,,1,,Europe/Paris,,OBO, +OBO:SA:OREEBS,1,"Orée du Bois",44.78876,-0.695874,,1,,Europe/Paris,,OBO, +OBO:SA:ORION,1,"Orion",44.874027,-0.692149,,1,,Europe/Paris,,OBO, +OBO:SA:ORMES,1,"Bois des Ormes",44.910374,-0.677172,,1,,Europe/Paris,,OBO, +OBO:SA:ORNON,1,"Stade Ornon",44.773364,-0.639231,,1,,Europe/Paris,,OBO, +OBO:SA:ORPHE,1,"Orphelins",44.796837,-0.568383,,1,,Europe/Paris,,OBO, +OBO:SA:P11NO,1,"Place du 11 Novembre",44.828756,-0.648377,,1,,Europe/Paris,,OBO, +OBO:SA:P2VIL,1,"Place des 2 Villes",44.864267,-0.519471,,1,,Europe/Paris,,OBO, +OBO:SA:PACARI,1,"Pacaris",44.797045,-0.580085,,1,,Europe/Paris,,OBO, +OBO:SA:PAGNE,1,"Pagneau",44.814132,-0.700197,,1,,Europe/Paris,,OBO, +OBO:SA:PAGNOL,1,"Pagnol",44.780905,-0.555565,,1,,Europe/Paris,,OBO, +OBO:SA:PAIX,1,"La Paix",44.838939,-0.535857,,1,,Europe/Paris,,OBO, +OBO:SA:PALISS,1,"Volta",44.853758,-0.676611,,1,,Europe/Paris,,OBO, +OBO:SA:PALOMB,1,"Palombes",44.864455,-0.532985,,1,,Europe/Paris,,OBO, +OBO:SA:PALUD,1,"Ste Croix",44.830713,-0.559314,,1,,Europe/Paris,,OBO, +OBO:SA:PALUDA,1,"Paludate",44.82751,-0.551284,,1,,Europe/Paris,,OBO, +OBO:SA:PANERU,1,"Pablo Neruda",44.947788,-0.596221,,1,,Europe/Paris,,OBO, +OBO:SA:PAPECL,1,"Pape Clément (Place Sellier)",44.805181,-0.653777,,1,,Europe/Paris,,OBO, +OBO:SA:PAPIN,1,"Denis Papin",44.790997,-0.534201,,1,,Europe/Paris,,OBO, +OBO:SA:PARABE,1,"Parabelle",44.941703,-0.485706,,1,,Europe/Paris,,OBO, +OBO:SA:PARGAU,1,"La Pargaud",44.907785,-0.668948,,1,,Europe/Paris,,OBO, +OBO:SA:PARKS,1,"Rosa Parks",44.841421,-0.530674,,1,,Europe/Paris,,OBO, +OBO:SA:PARNO,1,"Mairie de Talence",44.808758,-0.587256,,1,,Europe/Paris,,OBO, +OBO:SA:PAST90,1,"Pasteur",44.901183,-0.512873,,1,,Europe/Paris,,OBO, +OBO:SA:PASTEU,1,"Pasteur",44.845813,-0.598588,,1,,Europe/Paris,,OBO, +OBO:SA:PATOUR,1,"Pas de la Tourte",44.919938,-0.734031,,1,,Europe/Paris,,OBO, +OBO:SA:PAUGE,1,"Pauge",44.757592,-0.576099,,1,,Europe/Paris,,OBO, +OBO:SA:PBERN,1,"Prof. Bernard",44.771015,-0.615257,,1,,Europe/Paris,,OBO, +OBO:SA:PBORD,1,"Parc Bordelais",44.850928,-0.60036,,1,,Europe/Paris,,OBO, +OBO:SA:PBOULI,1,"Pont de Bouliac",44.820975,-0.512984,,1,,Europe/Paris,,OBO, +OBO:SA:PBOURG,1,"Porte de bourgogne",44.836585,-0.566184,,1,,Europe/Paris,,OBO, +OBO:SA:PBRO62,1,"Brossolette",44.862913,-0.513278,,1,,Europe/Paris,,OBO, +OBO:SA:PCAILL,1,"Parc d'échange du Caillou",44.860218,-0.634702,,1,,Europe/Paris,,OBO, +OBO:SA:PCAPEY,1,"Frères Robinson",44.849821,-0.656531,,1,,Europe/Paris,,OBO, +OBO:SA:PCARD,1,"Piscine Galin",44.847275,-0.541545,,1,,Europe/Paris,,OBO, +OBO:SA:PCAUDE,1,"Pont de Cauderès",44.817802,-0.577679,,1,,Europe/Paris,,OBO, +OBO:SA:PCENTR,1,"Pessac Centre",44.806041,-0.632194,,1,,Europe/Paris,,OBO, +OBO:SA:PCIEL,1,"Plein Ciel",44.849569,-0.64406,,1,,Europe/Paris,,OBO, +OBO:SA:PCURI,1,"Pierre Curie",44.853257,-0.49856,,1,,Europe/Paris,,OBO, +OBO:SA:PDLCOT,1,"Pas de la Côte",44.780937,-0.536264,,1,,Europe/Paris,,OBO, +OBO:SA:PECHEU,1,"Barrière St Augustin",44.834023,-0.598763,,1,,Europe/Paris,,OBO, +OBO:SA:PEGU74,1,"Péguy",44.913952,-0.512062,,1,,Europe/Paris,,OBO, +OBO:SA:PELET,1,"Pelet",44.938389,-0.509387,,1,,Europe/Paris,,OBO, +OBO:SA:PELLE,1,"Pelleport",44.821353,-0.565806,,1,,Europe/Paris,,OBO, +OBO:SA:PELLEG,1,"Bordeaux Carreire",44.826703,-0.60089,,1,,Europe/Paris,,OBO, +OBO:SA:PELUS,1,"Domaine de Pelus",44.83077,-0.684789,,1,,Europe/Paris,,OBO, +OBO:SA:PEPI77,1,"Pépinières",44.91091,-0.6233,,1,,Europe/Paris,,OBO, +OBO:SA:PERES,1,"Pérès",44.859809,-0.608438,,1,,Europe/Paris,,OBO, +OBO:SA:PERICO,1,"Pericot",44.902732,-0.74482,,1,,Europe/Paris,,OBO, +OBO:SA:PERIN,1,"Périnot",44.851234,-0.630934,,1,,Europe/Paris,,OBO, +OBO:SA:PERRI,1,"Perrin",44.841396,-0.669303,,1,,Europe/Paris,,OBO, +OBO:SA:PERRIN,1,"Perrin",44.780139,-0.651174,,1,,Europe/Paris,,OBO, +OBO:SA:PESCAR,1,"Escarraguel",45.008923,-0.528985,,1,,Europe/Paris,,OBO, +OBO:SA:PESPA,1,"Parc d'Espagne",44.797193,-0.683669,,1,,Europe/Paris,,OBO, +OBO:SA:PETAN,1,"Pelletan",44.812118,-0.600557,,1,,Europe/Paris,,OBO, +OBO:SA:PETOIL,1,"Parc de l'Etoile",44.822899,-0.497599,,1,,Europe/Paris,,OBO, +OBO:SA:PEUPLI,1,"Les Peupliers",44.786437,-0.571873,,1,,Europe/Paris,,OBO, +OBO:SA:PEXO55,1,"Pexotto",44.901018,-0.669285,,1,,Europe/Paris,,OBO, +OBO:SA:PEYBOI,1,"Peybois",44.939955,-0.632837,,1,,Europe/Paris,,OBO, +OBO:SA:PEYCHA,1,"Peychaud",44.951589,-0.492896,,1,,Europe/Paris,,OBO, +OBO:SA:PEYDA,1,"Peydavant",44.801784,-0.585305,,1,,Europe/Paris,,OBO, +OBO:SA:PEYRO,1,"Peyronnet",44.828157,-0.560741,,1,,Europe/Paris,,OBO, +OBO:SA:PEYROU,1,"Parc du Peyrou",44.866441,-0.484554,,1,,Europe/Paris,,OBO, +OBO:SA:PFLOR,1,"Place Florale",44.868861,-0.636092,,1,,Europe/Paris,,OBO, +OBO:SA:PFRAN,1,"Pins Francs",44.866623,-0.623501,,1,,Europe/Paris,,OBO, +OBO:SA:PFRANC,1,"Pins-Francs",44.857931,-0.623722,,1,,Europe/Paris,,OBO, +OBO:SA:PGAIL,1,"Pont du Gail",44.880066,-0.607732,,1,,Europe/Paris,,OBO, +OBO:SA:PGALI,1,"Palais Gallien",44.848083,-0.583308,,1,,Europe/Paris,,OBO, +OBO:SA:PGALL,1,"Prince de Galles",44.767939,-0.632834,,1,,Europe/Paris,,OBO, +OBO:SA:PGAZIN,1,"Petit Gazinet",44.779731,-0.694603,,1,,Europe/Paris,,OBO, +OBO:SA:PGPARC,1,"Piscine Grand Parc",44.857417,-0.579761,,1,,Europe/Paris,,OBO, +OBO:SA:PGUIT,1,"Pont du Guit",44.823784,-0.558432,,1,,Europe/Paris,,OBO, +OBO:SA:PHARE,1,"Avenue du Phare",44.850038,-0.693244,,1,,Europe/Paris,,OBO, +OBO:SA:PHBRIO,1,"Parc Haut Brion",44.812808,-0.613826,,1,,Europe/Paris,,OBO, +OBO:SA:PHENIX,1,"Phénix Haut Brion",44.808073,-0.615888,,1,,Europe/Paris,,OBO, +OBO:SA:PICAR,1,"Picard",44.854984,-0.571655,,1,,Europe/Paris,,OBO, +OBO:SA:PICARD,1,"Picardie",44.789722,-0.687571,,1,,Europe/Paris,,OBO, +OBO:SA:PICVER,1,"Pic Vert",44.91252,-0.71359,,1,,Europe/Paris,,OBO, +OBO:SA:PIER1E,1,"Boulevard Pierre 1er",44.859463,-0.589256,,1,,Europe/Paris,,OBO, +OBO:SA:PINDUS,1,"Parc Industriel",44.780173,-0.648488,,1,,Europe/Paris,,OBO, +OBO:SA:PINEL,1,"Pinel",44.824887,-0.521479,,1,,Europe/Paris,,OBO, +OBO:SA:PISCIN,1,"Piscine Tissot",44.87898,-0.547609,,1,,Europe/Paris,,OBO, +OBO:SA:PJALL,1,"Parc des Jalles",44.911467,-0.580592,,1,,Europe/Paris,,OBO, +OBO:SA:PJOURD,1,"Les Prés de Jourdanne",44.944493,-0.533748,,1,,Europe/Paris,,OBO, +OBO:SA:PJUDAI,1,"Piscine Judaïque",44.840891,-0.590817,,1,,Europe/Paris,,OBO, +OBO:SA:PLACAN,1,"Anita Conti",44.932738,-0.620448,,1,,Europe/Paris,,OBO, +OBO:SA:PLACS,1,"Parc des Lacs",44.921206,-0.615212,,1,,Europe/Paris,,OBO, +OBO:SA:PLAIS2,1,"Plaisance",44.816464,-0.686611,,1,,Europe/Paris,,OBO, +OBO:SA:PLAISA,1,"Plaisance",44.864333,-0.506556,,1,,Europe/Paris,,OBO, +OBO:SA:PLATE,1,"Plateaux",44.828358,-0.523426,,1,,Europe/Paris,,OBO, +OBO:SA:PLATEA,1,"Les Plateaux",44.840448,-0.507775,,1,,Europe/Paris,,OBO, +OBO:SA:PLAUNA,1,"Lycée Václav Havel",44.787441,-0.566541,,1,,Europe/Paris,,OBO, +OBO:SA:PLOPES,1,"Port Lopès",45.025526,-0.575938,,1,,Europe/Paris,,OBO, +OBO:SA:PLUC,1,"Primevères",44.766037,-0.638746,,1,,Europe/Paris,,OBO, +OBO:SA:PMAJOL,1,"Parc de Majolan",44.899299,-0.639917,,1,,Europe/Paris,,OBO, +OBO:SA:PMANDA,1,"Parc de Mandavit",44.768148,-0.611568,,1,,Europe/Paris,,OBO, +OBO:SA:PMARAI,1,"Le Petit Marais",44.964131,-0.482214,,1,,Europe/Paris,,OBO, +OBO:SA:PMARCE,1,"Parc Marceau",44.857829,-0.591572,,1,,Europe/Paris,,OBO, +OBO:SA:PMAYE,1,"Pont de la Maye",44.78273,-0.566095,,1,,Europe/Paris,,OBO, +OBO:SA:PMAYN,1,"Place du Mayne",44.873434,-0.683002,,1,,Europe/Paris,,OBO, +OBO:SA:PMEIGN,1,"Place Meignan",44.902293,-0.506846,,1,,Europe/Paris,,OBO, +OBO:SA:PMONTA,1,"Paul Montagne",44.806784,-0.642867,,1,,Europe/Paris,,OBO, +OBO:SA:PNERUD,1,"Collège Pablo Neruda",44.794286,-0.562373,,1,,Europe/Paris,,OBO, +OBO:SA:PNIV48,1,"Passage à Niveau",44.821998,-0.624421,,1,,Europe/Paris,,OBO, +OBO:SA:PNIVEA,1,"La Vache",44.872083,-0.591394,,1,,Europe/Paris,,OBO, +OBO:SA:PNOLE,1,"Paulin de Nole",44.95466,-0.497675,,1,,Europe/Paris,,OBO, +OBO:SA:POINC,1,"Poincaré",44.861923,-0.593006,,1,,Europe/Paris,,OBO, +OBO:SA:POIRSO,1,"Poirson",44.857435,-0.586472,,1,,Europe/Paris,,OBO, +OBO:SA:POLGE,1,"Pôle Universitaire de Gestion",44.84446,-0.557956,,1,,Europe/Paris,,OBO, +OBO:SA:POLICE,1,"Hôtel de Police",44.833778,-0.588368,,1,,Europe/Paris,,OBO, +OBO:SA:PONTET,1,"Pontet",44.935527,-0.484332,,1,,Europe/Paris,,OBO, +OBO:SA:PORIEN,1,"Pont de l'Orient",44.805249,-0.648686,,1,,Europe/Paris,,OBO, +OBO:SA:POTEAU,1,"Le Poteau",44.865443,-0.473727,,1,,Europe/Paris,,OBO, +OBO:SA:POTPEY,1,"Pont de Peyre",44.971177,-0.479707,,1,,Europe/Paris,,OBO, +OBO:SA:POUDR,1,"Poudrière",44.78271,-0.688105,,1,,Europe/Paris,,OBO, +OBO:SA:POUMEY,1,"Poumey",44.766033,-0.617416,,1,,Europe/Paris,,OBO, +OBO:SA:POUQUE,1,"Pouqueyras",44.863228,-0.481421,,1,,Europe/Paris,,OBO, +OBO:SA:PPUYRE,1,"Libération",44.948954,-0.604748,,1,,Europe/Paris,,OBO, +OBO:SA:PRADA,1,"Pradas",44.82679,-0.658527,,1,,Europe/Paris,,OBO, +OBO:SA:PRAI42,1,"La Prairie",44.779547,-0.612048,,1,,Europe/Paris,,OBO, +OBO:SA:PRAIRI,1,"Allée de la Prairie",44.848409,-0.643839,,1,,Europe/Paris,,OBO, +OBO:SA:PRECEI,1,"Préceinte",44.867256,-0.584736,,1,,Europe/Paris,,OBO, +OBO:SA:PREFE,1,"Préfecture",44.836559,-0.587386,,1,,Europe/Paris,,OBO, +OBO:SA:PREPUB,1,"République",44.894982,-0.713913,,1,,Europe/Paris,,OBO, +OBO:SA:PRESS,1,"Pressensé",44.856439,-0.60245,,1,,Europe/Paris,,OBO, +OBO:SA:PRINTE,1,"Le Printemps",44.951457,-0.606223,,1,,Europe/Paris,,OBO, +OBO:SA:PRIVA,1,"Privat",44.824899,-0.598869,,1,,Europe/Paris,,OBO, +OBO:SA:PRIVIE,1,"Parc Rivière",44.853594,-0.587633,,1,,Europe/Paris,,OBO, +OBO:SA:PROCE,1,"Procession",44.814957,-0.695066,,1,,Europe/Paris,,OBO, +OBO:SA:PROUST,1,"Proust",44.897688,-0.719659,,1,,Europe/Paris,,OBO, +OBO:SA:PROV80,1,"Provinces",44.846308,-0.492571,,1,,Europe/Paris,,OBO, +OBO:SA:PROVIN,1,"Provinces",44.849885,-0.495195,,1,,Europe/Paris,,OBO, +OBO:SA:PSJEA,1,"Pont Saint-Jean",44.830166,-0.55643,,1,,Europe/Paris,,OBO, +OBO:SA:PSJEAN,1,"Pont Saint Jean",44.834432,-0.550411,,1,,Europe/Paris,,OBO, +OBO:SA:PSOURR,1,"Parc Sourreil",44.79184,-0.582044,,1,,Europe/Paris,,OBO, +OBO:SA:PTHOUA,1,"Piscine de Thouars",44.790523,-0.591288,,1,,Europe/Paris,,OBO, +OBO:SA:PTOCTO,1,"Les Prés de Toctoucau",44.759335,-0.73289,,1,,Europe/Paris,,OBO, +OBO:SA:PTPEYR,1,"Petit Peyronnet",44.931358,-0.546014,,1,,Europe/Paris,,OBO, +OBO:SA:PTWIL,1,"Président Wilson",44.839305,-0.633285,,1,,Europe/Paris,,OBO, +OBO:SA:PUYO,1,"Puyo",44.898301,-0.74647,,1,,Europe/Paris,,OBO, +OBO:SA:PVICTO,1,"Victoire (A. Briand)",44.831101,-0.573866,,1,,Europe/Paris,,OBO, +OBO:SA:PVIGE,1,"Pont du Vigean",44.882539,-0.621056,,1,,Europe/Paris,,OBO, +OBO:SA:PXOTTO,1,"Peixotto",44.806531,-0.591786,,1,,Europe/Paris,,OBO, +OBO:SA:PYREN,1,"Pyrénées",44.763048,-0.559748,,1,,Europe/Paris,,OBO, +OBO:SA:PYRENE,1,"Pyrénées",44.845284,-0.775411,,1,,Europe/Paris,,OBO, +OBO:SA:PYTHA,1,"Pythagore",44.831333,-0.680728,,1,,Europe/Paris,,OBO, +OBO:SA:QBRIE,1,"Quai de Brienne",44.820601,-0.542003,,1,,Europe/Paris,,OBO, +OBO:SA:QFRANC,1,"Quai Français",44.890067,-0.529616,,1,,Europe/Paris,,OBO, +OBO:SA:QUIN69,1,"Quinconces (Jean Jaurès)",44.843068,-0.569155,,1,,Europe/Paris,,OBO, +OBO:SA:QUINSU,1,"Quinsus",44.952214,-0.497815,,1,,Europe/Paris,,OBO, +OBO:SA:QUIOR,1,"Quinconces Orléans",44.843853,-0.573905,,1,,Europe/Paris,,OBO, +OBO:SA:QVIAL,1,"Quai de Vial (Everite)",44.920172,-0.544374,,1,,Europe/Paris,,OBO, +OBO:SA:RACI40,1,"Racine",44.793174,-0.584433,,1,,Europe/Paris,,OBO, +OBO:SA:RACIN,1,"Racine",44.861819,-0.615493,,1,,Europe/Paris,,OBO, +OBO:SA:RACINE,1,"Racine",44.904878,-0.501051,,1,,Europe/Paris,,OBO, +OBO:SA:RADIO,1,"Radio",44.785182,-0.682888,,1,,Europe/Paris,,OBO, +OBO:SA:RALLO,1,"Roger Allo",44.844259,-0.589373,,1,,Europe/Paris,,OBO, +OBO:SA:RAMADE,1,"La Ramade",44.877909,-0.510731,,1,,Europe/Paris,,OBO, +OBO:SA:RAMOND,1,"Ramond",44.893185,-0.743929,,1,,Europe/Paris,,OBO, +OBO:SA:RAVEL,1,"Ravel",44.851878,-0.634124,,1,,Europe/Paris,,OBO, +OBO:SA:RAYET,1,"Collège G. Rayet",44.842046,-0.515464,,1,,Europe/Paris,,OBO, +OBO:SA:RBEAU,1,"Résidence Beausite",44.830126,-0.648098,,1,,Europe/Paris,,OBO, +OBO:SA:RBEGLE,1,"Rue de Bègles",44.822415,-0.565709,,1,,Europe/Paris,,OBO, +OBO:SA:RBLEUE,1,"La Route Bleue",44.821105,-0.501324,,1,,Europe/Paris,,OBO, +OBO:SA:RBORDE,1,"Rue de Bordeaux",44.942846,-0.607312,,1,,Europe/Paris,,OBO, +OBO:SA:RCANE,1,"Route de Canéjan",44.780549,-0.615035,,1,,Europe/Paris,,OBO, +OBO:SA:RCHANT,1,"Résidence Chanteclerc",44.866586,-0.669061,,1,,Europe/Paris,,OBO, +OBO:SA:RCHAT,1,"Résidence Le Château",44.77979,-0.573134,,1,,Europe/Paris,,OBO, +OBO:SA:RCORB,1,"Route de Corbiac",44.891951,-0.70942,,1,,Europe/Paris,,OBO, +OBO:SA:RCOT93,1,"René Coty",44.926685,-0.492105,,1,,Europe/Paris,,OBO, +OBO:SA:RCOT94,1,"René Coty (Pasteur)",44.927594,-0.49187,,1,,Europe/Paris,,OBO, +OBO:SA:RCRESP,1,"Résidence Crespy",44.805855,-0.586502,,1,,Europe/Paris,,OBO, +OBO:SA:RCUJAC,1,"Route de Cujac",44.919994,-0.724152,,1,,Europe/Paris,,OBO, +OBO:SA:RDBEGL,1,"Rue de Bègles",44.817795,-0.564054,,1,,Europe/Paris,,OBO, +OBO:SA:RDOMA,1,"Résidences du Domaine",44.849665,-0.623382,,1,,Europe/Paris,,OBO, +OBO:SA:RDPESS,1,"Route de Pessac",44.772232,-0.621459,,1,,Europe/Paris,,OBO, +OBO:SA:RDPOIN,1,"Rond-Point",44.805328,-0.616155,,1,,Europe/Paris,,OBO, +OBO:SA:REBED,1,"Rébédech",44.832931,-0.523035,,1,,Europe/Paris,,OBO, +OBO:SA:REDON,1,"Redon",44.917396,-0.662987,,1,,Europe/Paris,,OBO, +OBO:SA:REDUI,1,"Rue du Réduit",44.883424,-0.597571,,1,,Europe/Paris,,OBO, +OBO:SA:REINE,1,"Hameau de la Reine",44.781626,-0.619597,,1,,Europe/Paris,,OBO, +OBO:SA:RENARX,1,"Les Renardeaux",44.849034,-0.665089,,1,,Europe/Paris,,OBO, +OBO:SA:RENAUD,1,"Renaudel",44.868982,-0.615574,,1,,Europe/Paris,,OBO, +OBO:SA:REOLE,1,"Rue de la Réole",44.821829,-0.56935,,1,,Europe/Paris,,OBO, +OBO:SA:REPU48,1,"République",44.834741,-0.580899,,1,,Europe/Paris,,OBO, +OBO:SA:REPU58,1,"République",44.908843,-0.631417,,1,,Europe/Paris,,OBO, +OBO:SA:RESIST,1,"Résistance",44.792873,-0.705233,,1,,Europe/Paris,,OBO, +OBO:SA:RGARO,1,"Roland Garros",44.829505,-0.687182,,1,,Europe/Paris,,OBO, +OBO:SA:RGARR,1,"Roland Garros",44.861291,-0.626718,,1,,Europe/Paris,,OBO, +OBO:SA:RGRAVE,1,"Rue des Graves",44.881861,-0.659576,,1,,Europe/Paris,,OBO, +OBO:SA:RICH99,1,"Richelieu",44.908571,-0.534947,,1,,Europe/Paris,,OBO, +OBO:SA:RICHA,1,"Richaud",44.889244,-0.563282,,1,,Europe/Paris,,OBO, +OBO:SA:RICHE,1,"Rue Richelieu",44.845894,-0.617505,,1,,Europe/Paris,,OBO, +OBO:SA:RIGAI,1,"Rigaillou",44.757647,-0.582617,,1,,Europe/Paris,,OBO, +OBO:SA:RIGAL,1,"Rigal",44.868104,-0.580113,,1,,Europe/Paris,,OBO, +OBO:SA:RIVES,1,"Rives",44.83577,-0.554226,,1,,Europe/Paris,,OBO, +OBO:SA:RIVIER,1,"Rivière",44.85713,-0.588942,,1,,Europe/Paris,,OBO, +OBO:SA:RJAURE,1,"Jean Jaurès (av. République)",44.872044,-0.678982,,1,,Europe/Paris,,OBO, +OBO:SA:RLACAN,1,"Route de Lacanau",44.903729,-0.744937,,1,,Europe/Paris,,OBO, +OBO:SA:RMACAU,1,"Rue de Macau",44.954243,-0.606752,,1,,Europe/Paris,,OBO, +OBO:SA:RMANAU,1,"Manaud",44.876239,-0.581741,,1,,Europe/Paris,,OBO, +OBO:SA:RMANO,1,"Rue du Manoir",44.886568,-0.519742,,1,,Europe/Paris,,OBO, +OBO:SA:RMEDO,1,"Route du Médoc",44.874025,-0.616957,,1,,Europe/Paris,,OBO, +OBO:SA:RMEDOC,1,"Rue du Médoc",44.877705,-0.680747,,1,,Europe/Paris,,OBO, +OBO:SA:RMEDOK,1,"Libération",44.87041,-0.613797,,1,,Europe/Paris,,OBO, +OBO:SA:ROBINS,1,"Bosquets",44.853971,-0.651473,,1,,Europe/Paris,,OBO, +OBO:SA:ROCAZ,1,"Docteur Rocaz",44.822914,-0.610709,,1,,Europe/Paris,,OBO, +OBO:SA:ROCHE,1,"Rochefort",44.776107,-0.61127,,1,,Europe/Paris,,OBO, +OBO:SA:ROCQUE,1,"Rocquevielle",44.848,-0.707187,,1,,Europe/Paris,,OBO, +OBO:SA:RONSA,1,"Ronsard",44.802627,-0.641546,,1,,Europe/Paris,,OBO, +OBO:SA:ROOSEV,1,"Boulevard Roosevelt",44.815797,-0.574329,,1,,Europe/Paris,,OBO, +OBO:SA:ROSABO,1,"Collège Rosa Bonheur",44.874883,-0.590382,,1,,Europe/Paris,,OBO, +OBO:SA:ROSERA,1,"La Roseraie",44.897169,-0.521383,,1,,Europe/Paris,,OBO, +OBO:SA:ROSTA,1,"Rostand",44.841101,-0.64339,,1,,Europe/Paris,,OBO, +OBO:SA:ROUS71,1,"Rousseau",44.895704,-0.723179,,1,,Europe/Paris,,OBO, +OBO:SA:ROUSS,1,"Rousseau",44.835141,-0.530058,,1,,Europe/Paris,,OBO, +OBO:SA:ROUX,1,"Roux",44.87463,-0.698115,,1,,Europe/Paris,,OBO, +OBO:SA:ROUZIC,1,"Le Rouzic",44.842278,-0.549831,,1,,Europe/Paris,,OBO, +OBO:SA:RPABER,1,"R.P.A La Bérengère",44.865241,-0.612006,,1,,Europe/Paris,,OBO, +OBO:SA:RPAGA,1,"RPA Gambetta",44.842301,-0.538951,,1,,Europe/Paris,,OBO, +OBO:SA:RPAIX,1,"Rue de la Paix",44.763938,-0.56501,,1,,Europe/Paris,,OBO, +OBO:SA:RPAIX2,1,"Rue de la Paix",44.850842,-0.522633,,1,,Europe/Paris,,OBO, +OBO:SA:RPAMVI,1,"R.P.A Mieux Vivre",44.868276,-0.589839,,1,,Europe/Paris,,OBO, +OBO:SA:RPARIS,1,"Rue de Paris",44.82357,-0.619622,,1,,Europe/Paris,,OBO, +OBO:SA:RPAUIL,1,"Route de Pauillac",44.884178,-0.634327,,1,,Europe/Paris,,OBO, +OBO:SA:RPESS,1,"Cotor Laburthe",44.78187,-0.624117,,1,,Europe/Paris,,OBO, +OBO:SA:RPFEL,1,"Rond Point Marie Fel",44.888681,-0.560324,,1,,Europe/Paris,,OBO, +OBO:SA:RPICOT,1,"Route de Picot",44.917647,-0.735014,,1,,Europe/Paris,,OBO, +OBO:SA:RPIQU,1,"Hôpital Robert Picqué",44.799477,-0.569791,,1,,Europe/Paris,,OBO, +OBO:SA:RROSTA,1,"Résidence Rostand",44.862165,-0.669336,,1,,Europe/Paris,,OBO, +OBO:SA:RSTADE,1,"Rue du Stade",44.875396,-0.679436,,1,,Europe/Paris,,OBO, +OBO:SA:RSTAN,1,"Rue du Stand",44.819603,-0.612465,,1,,Europe/Paris,,OBO, +OBO:SA:RTIVOL,1,"Tivoli",44.856172,-0.59068,,1,,Europe/Paris,,OBO, +OBO:SA:RUBEN,1,"Rubens",44.852261,-0.513821,,1,,Europe/Paris,,OBO, +OBO:SA:RUET,1,"Ruet",44.870309,-0.674635,,1,,Europe/Paris,,OBO, +OBO:SA:RUGARE,1,"Rue de la Gare",44.946257,-0.609962,,1,,Europe/Paris,,OBO, +OBO:SA:RULACA,1,"Rue de Lacanau",44.848014,-0.616941,,1,,Europe/Paris,,OBO, +OBO:SA:RUNION,1,"Rue de l'Union",44.850284,-0.519633,,1,,Europe/Paris,,OBO, +OBO:SA:RUSSE,1,"Russel",44.828664,-0.518474,,1,,Europe/Paris,,OBO, +OBO:SA:RVEGLI,1,"Rue de la Vieille Eglise",44.946095,-0.595503,,1,,Europe/Paris,,OBO, +OBO:SA:SABAR,1,"Sabarots",44.845743,-0.560546,,1,,Europe/Paris,,OBO, +OBO:SA:SABARG,1,"Sabarèges",44.928765,-0.506488,,1,,Europe/Paris,,OBO, +OBO:SA:SABLIE,1,"La Sablière",44.885555,-0.675456,,1,,Europe/Paris,,OBO, +OBO:SA:SAGET,1,"Saget",44.828498,-0.557008,,1,,Europe/Paris,,OBO, +OBO:SA:SALEN,1,"Salengro",44.807146,-0.560017,,1,,Europe/Paris,,OBO, +OBO:SA:SALI2,1,"Salinières",44.835876,-0.567494,,1,,Europe/Paris,,OBO, +OBO:SA:SALIN,1,"Porte de Bourgogne",44.835956,-0.566968,,1,,Europe/Paris,,OBO, +OBO:SA:SALLG,1,"Sallegourde",44.770026,-0.545755,,1,,Europe/Paris,,OBO, +OBO:SA:SANDRE,1,"Hôpital Saint André",44.834391,-0.578331,,1,,Europe/Paris,,OBO, +OBO:SA:SANG34,1,"La Belle Rose",44.811636,-0.552376,,1,,Europe/Paris,,OBO, +OBO:SA:SAPINE,1,"Sapinettes",44.843843,-0.786597,,1,,Europe/Paris,,OBO, +OBO:SA:SARCIG,1,"Sarcignan",44.77835,-0.573074,,1,,Europe/Paris,,OBO, +OBO:SA:SARGET,1,"Sarget",44.808569,-0.608679,,1,,Europe/Paris,,OBO, +OBO:SA:SATIE,1,"Satie",44.841939,-0.509223,,1,,Europe/Paris,,OBO, +OBO:SA:SAUBIN,1,"Saint Aubin Cimetière",44.912807,-0.732839,,1,,Europe/Paris,,OBO, +OBO:SA:SAUGUS,1,"Saint-Augustin",44.83213,-0.609591,,1,,Europe/Paris,,OBO, +OBO:SA:SAUT82,1,"Sauternes",44.841237,-0.797323,,1,,Europe/Paris,,OBO, +OBO:SA:SAUTER,1,"Sauternes",44.856311,-0.488728,,1,,Europe/Paris,,OBO, +OBO:SA:SAUVIN,1,"Sauvin",44.944788,-0.48862,,1,,Europe/Paris,,OBO, +OBO:SA:SBEAUV,1,"Simone de Beauvoir",44.865609,-0.635507,,1,,Europe/Paris,,OBO, +OBO:SA:SBERNA,1,"Ste Bernadette",44.823092,-0.624454,,1,,Europe/Paris,,OBO, +OBO:SA:SBREIL,1,"Lycée Agricole",44.917794,-0.634686,,1,,Europe/Paris,,OBO, +OBO:SA:SCARNO,1,"Sadi Carnot",44.863847,-0.590379,,1,,Europe/Paris,,OBO, +OBO:SA:SCHW02,1,"Schweitzer",44.773994,-0.532417,,1,,Europe/Paris,,OBO, +OBO:SA:SCHWE,1,"Schweitzer",44.861549,-0.523324,,1,,Europe/Paris,,OBO, +OBO:SA:SCOMBE,1,"Square Emile Combes",44.836865,-0.607407,,1,,Europe/Paris,,OBO, +OBO:SA:SCRIST,1,"Ste Christine",44.880474,-0.685423,,1,,Europe/Paris,,OBO, +OBO:SA:SDAUGE,1,"Stade Daugère",44.884803,-0.592557,,1,,Europe/Paris,,OBO, +OBO:SA:SDENIS,1,"Saint Denis",44.954037,-0.496869,,1,,Europe/Paris,,OBO, +OBO:SA:SEBAT,1,"Sembat",44.815775,-0.609085,,1,,Europe/Paris,,OBO, +OBO:SA:SECOUR,1,"Centre de secours",44.905307,-0.50388,,1,,Europe/Paris,,OBO, +OBO:SA:SEGUI,1,"Seguineau",44.835017,-0.609897,,1,,Europe/Paris,,OBO, +OBO:SA:SEGUR,1,"Ségur",44.82465,-0.581636,,1,,Europe/Paris,,OBO, +OBO:SA:SEMBA,1,"Sembat",44.833359,-0.549609,,1,,Europe/Paris,,OBO, +OBO:SA:SERPE,1,"Serpent",44.791642,-0.633126,,1,,Europe/Paris,,OBO, +OBO:SA:SERRES,1,"De Serres",44.890467,-0.654007,,1,,Europe/Paris,,OBO, +OBO:SA:SEURI,1,"Saint Seurin",44.842995,-0.586366,,1,,Europe/Paris,,OBO, +OBO:SA:SEVENE,1,"Sévène",44.805107,-0.580371,,1,,Europe/Paris,,OBO, +OBO:SA:SHUBE,1,"St Hubert",44.791791,-0.672208,,1,,Europe/Paris,,OBO, +OBO:SA:SIEYES,1,"Sieyès",44.860865,-0.72377,,1,,Europe/Paris,,OBO, +OBO:SA:SKATI,1,"Le Skating",44.785414,-0.57856,,1,,Europe/Paris,,OBO, +OBO:SA:SLOUIS,1,"Cours St Louis",44.859664,-0.568487,,1,,Europe/Paris,,OBO, +OBO:SA:SMART,1,"Médoc (Place Saint Martial)",44.859056,-0.5658,,1,,Europe/Paris,,OBO, +OBO:SA:SMUNIC,1,"Forum des Associations",44.884662,-0.620775,,1,,Europe/Paris,,OBO, +OBO:SA:SNPE,1,"La Poudrerie",44.871417,-0.734174,,1,,Europe/Paris,,OBO, +OBO:SA:SOCR52,1,"Socrate",44.882049,-0.678694,,1,,Europe/Paris,,OBO, +OBO:SA:SOCRA,1,"Socrate",44.809125,-0.662485,,1,,Europe/Paris,,OBO, +OBO:SA:SOLAR,1,"Solarium",44.781663,-0.628653,,1,,Europe/Paris,,OBO, +OBO:SA:SOLE88,1,"Chalets du Soleil",44.848222,-0.788115,,1,,Europe/Paris,,OBO, +OBO:SA:SOMMB,1,"Somme",44.90627,-0.517161,,1,,Europe/Paris,,OBO, +OBO:SA:SOORS,1,"Soors",44.772317,-0.564371,,1,,Europe/Paris,,OBO, +OBO:SA:SOUBI,1,"Soubiras",44.863256,-0.618424,,1,,Europe/Paris,,OBO, +OBO:SA:SOURD,1,"Sourdis",44.884102,-0.521216,,1,,Europe/Paris,,OBO, +OBO:SA:SOUSA,1,"Sousa Mendès",44.864972,-0.571435,,1,,Europe/Paris,,OBO, +OBO:SA:SOVI,1,"Jules Verne",44.776765,-0.530181,,1,,Europe/Paris,,OBO, +OBO:SA:SPAUL,1,"St Paulin",44.805465,-0.559018,,1,,Europe/Paris,,OBO, +OBO:SA:SQMON,1,"Square Monrepos",44.842666,-0.536561,,1,,Europe/Paris,,OBO, +OBO:SA:SQPREV,1,"Square Prévert",44.912278,-0.517969,,1,,Europe/Paris,,OBO, +OBO:SA:SROMAI,1,"Saint Romain",44.849214,-0.527775,,1,,Europe/Paris,,OBO, +OBO:SA:SSAENS,1,"Saint Saëns",44.853211,-0.63416,,1,,Europe/Paris,,OBO, +OBO:SA:STAD55,1,"Stade Municipal",44.916493,-0.68389,,1,,Europe/Paris,,OBO, +OBO:SA:STAD67,1,"Stade",44.871671,-0.477009,,1,,Europe/Paris,,OBO, +OBO:SA:STADE,1,"Stade MATMUT Atlantique",44.894535,-0.565646,,1,,Europe/Paris,,OBO, +OBO:SA:STAL69,1,"Stalingrad (Parlier)",44.84153,-0.563471,,1,,Europe/Paris,,OBO, +OBO:SA:STALBE,1,"St Albe",44.771049,-0.627323,,1,,Europe/Paris,,OBO, +OBO:SA:STAMA,1,"Saint Amand",44.855555,-0.615089,,1,,Europe/Paris,,OBO, +OBO:SA:STAUGU,1,"Eglise Saint Augustin",44.832138,-0.611131,,1,,Europe/Paris,,OBO, +OBO:SA:STBREI,1,"Stade Breillan",44.916673,-0.649354,,1,,Europe/Paris,,OBO, +OBO:SA:STCPBO,1,"Stade Cap de Bos",44.788466,-0.682515,,1,,Europe/Paris,,OBO, +OBO:SA:STEHEL,1,"Stade Stéhélin",44.857281,-0.620617,,1,,Europe/Paris,,OBO, +OBO:SA:STEHL,1,"Stade Stéhélin",44.854053,-0.622728,,1,,Europe/Paris,,OBO, +OBO:SA:STELL,1,"Les Stellaires",44.766598,-0.598678,,1,,Europe/Paris,,OBO, +OBO:SA:STJACQ,1,"St Jacques",44.839892,-0.798948,,1,,Europe/Paris,,OBO, +OBO:SA:STJEAN,1,"Gare Saint Jean",44.825443,-0.556992,,1,,Europe/Paris,,OBO, +OBO:SA:STLOUI,1,"St Louis",44.862674,-0.567082,,1,,Europe/Paris,,OBO, +OBO:SA:STMAR,1,"Ste Marie",44.803154,-0.645524,,1,,Europe/Paris,,OBO, +OBO:SA:STMERI,1,"Olympiades",44.847995,-0.651357,,1,,Europe/Paris,,OBO, +OBO:SA:STMUNI,1,"Service Technique Municipal",44.901644,-0.496854,,1,,Europe/Paris,,OBO, +OBO:SA:STRAS,1,"Strasbourg",44.828685,-0.583388,,1,,Europe/Paris,,OBO, +OBO:SA:STREL,1,"Strélitzias",44.856393,-0.651707,,1,,Europe/Paris,,OBO, +OBO:SA:STSEVE,1,"Saint Sever",44.936631,-0.493093,,1,,Europe/Paris,,OBO, +OBO:SA:STSUZO,1,"Stade Suzon",44.812079,-0.577682,,1,,Europe/Paris,,OBO, +OBO:SA:STVIPA,1,"Saint Vincent de Paul",44.953996,-0.468137,,1,,Europe/Paris,,OBO, +OBO:SA:SURIN,1,"Surin",44.93936,-0.472161,,1,,Europe/Paris,,OBO, +OBO:SA:SYBILL,1,"Sybille",44.918187,-0.518384,,1,,Europe/Paris,,OBO, +OBO:SA:TABERN,1,"Abel Gance",44.878583,-0.500221,,1,,Europe/Paris,,OBO, +OBO:SA:TAFFA,1,"Taffanel",44.811595,-0.573834,,1,,Europe/Paris,,OBO, +OBO:SA:TANAIS,1,"Tanaïs",44.928737,-0.675464,,1,,Europe/Paris,,OBO, +OBO:SA:TANDO,1,"Tandonnet",44.817031,-0.54657,,1,,Europe/Paris,,OBO, +OBO:SA:TARIS,1,"Taris",44.852815,-0.493008,,1,,Europe/Paris,,OBO, +OBO:SA:TARREY,1,"Tarrey",44.950901,-0.490841,,1,,Europe/Paris,,OBO, +OBO:SA:TARTIF,1,"Tartifume",44.79145,-0.709632,,1,,Europe/Paris,,OBO, +OBO:SA:TASGNY,1,"Tassigny",44.855717,-0.613864,,1,,Europe/Paris,,OBO, +OBO:SA:TASS92,1,"Tassigny",45.010498,-0.526213,,1,,Europe/Paris,,OBO, +OBO:SA:TASSIG,1,"De Lattre de Tassigny",44.773281,-0.545429,,1,,Europe/Paris,,OBO, +OBO:SA:TATRY,1,"Galerie Tatry",44.863667,-0.573196,,1,,Europe/Paris,,OBO, +OBO:SA:TAUZIN,1,"Tauzin",44.821203,-0.601937,,1,,Europe/Paris,,OBO, +OBO:SA:TBEAUD,1,"Beaudésert",44.845046,-0.684529,,1,,Europe/Paris,,OBO, +OBO:SA:TBGA,1,"Berges de Garonne",44.88701,-0.541697,,1,,Europe/Paris,,OBO, +OBO:SA:TBORD2,1,"Terres de Borde",44.822122,-0.554319,,1,,Europe/Paris,,OBO, +OBO:SA:TCANTI,1,"Cantinolle",44.892383,-0.664396,,1,,Europe/Paris,,OBO, +OBO:SA:TCAYCH,1,"Caychac",44.933695,-0.634081,,1,,Europe/Paris,,OBO, +OBO:SA:TCHAMB,1,"Piscine Chambéry",44.754866,-0.585842,,1,,Europe/Paris,,OBO, +OBO:SA:TCIME,1,"Taillan Cimetière",44.910045,-0.675152,,1,,Europe/Paris,,OBO, +OBO:SA:TECHEN,1,"Techeney",44.87374,-0.486605,,1,,Europe/Paris,,OBO, +OBO:SA:TEMPL,1,"Les Templiers",44.881628,-0.628515,,1,,Europe/Paris,,OBO, +OBO:SA:TEMPLI,1,"Templiers",44.928258,-0.477157,,1,,Europe/Paris,,OBO, +OBO:SA:TENOT,1,"Tenot",44.818845,-0.576644,,1,,Europe/Paris,,OBO, +OBO:SA:TERRAS,1,"Terrasson",44.916499,-0.493056,,1,,Europe/Paris,,OBO, +OBO:SA:TERRE,1,"Terrefort",44.765492,-0.562092,,1,,Europe/Paris,,OBO, +OBO:SA:TERRFO,1,"Terrefort",44.924121,-0.634824,,1,,Europe/Paris,,OBO, +OBO:SA:TERTRE,1,"Tertre",44.907786,-0.503128,,1,,Europe/Paris,,OBO, +OBO:SA:TESOL,1,"Tournesol",44.82002,-0.696215,,1,,Europe/Paris,,OBO, +OBO:SA:TESPA,1,"Les 5 chemins",44.861303,-0.694905,,1,,Europe/Paris,,OBO, +OBO:SA:TFRANK,1,"Frankton Terminus",44.907239,-0.621738,,1,,Europe/Paris,,OBO, +OBO:SA:TGASSI,1,"Tour de Gassies",44.881122,-0.628691,,1,,Europe/Paris,,OBO, +OBO:SA:TGBL84,1,"Gare de Blanquefort",44.917848,-0.624072,,1,,Europe/Paris,,OBO, +OBO:SA:THAILL,1,"Parc Ste Christine",44.886766,-0.681044,,1,,Europe/Paris,,OBO, +OBO:SA:THALES,1,"Thales",44.848738,-0.700615,,1,,Europe/Paris,,OBO, +OBO:SA:THORE,1,"Thorez Goélands",44.803885,-0.558273,,1,,Europe/Paris,,OBO, +OBO:SA:THOUAR,1,"Thouars",44.785375,-0.586188,,1,,Europe/Paris,,OBO, +OBO:SA:THOUAS,1,"Le Dôme",44.792275,-0.591463,,1,,Europe/Paris,,OBO, +OBO:SA:TILLAC,1,"Le Tillac",44.919488,-0.493997,,1,,Europe/Paris,,OBO, +OBO:SA:TILLE,1,"Tillet",44.821697,-0.572469,,1,,Europe/Paris,,OBO, +OBO:SA:TILLED,1,"Tillède",45.024401,-0.552259,,1,,Europe/Paris,,OBO, +OBO:SA:TILLEU,1,"Tilleuls",44.86372,-0.657139,,1,,Europe/Paris,,OBO, +OBO:SA:TILLON,1,"Tillon",44.776703,-0.543823,,1,,Europe/Paris,,OBO, +OBO:SA:TIRIS,1,"Iris",44.86851,-0.522069,,1,,Europe/Paris,,OBO, +OBO:SA:TISSAC,1,"Issac",44.896993,-0.781175,,1,,Europe/Paris,,OBO, +OBO:SA:TLPLAT,1,"Le Plateau",44.885204,-0.647104,,1,,Europe/Paris,,OBO, +OBO:SA:TMARTI,1,"Les Pins",44.84471,-0.795252,,1,,Europe/Paris,,OBO, +OBO:SA:TOCTOU,1,"Toctoucau",44.755654,-0.740222,,1,,Europe/Paris,,OBO, +OBO:SA:TONDU,1,"Pelouse de Douet",44.827938,-0.61143,,1,,Europe/Paris,,OBO, +OBO:SA:TOQCUI,1,"La Toque Cuivrée",44.87423,-0.489081,,1,,Europe/Paris,,OBO, +OBO:SA:TOURN,1,"Tourny",44.845401,-0.577943,,1,,Europe/Paris,,OBO, +OBO:SA:TOURVI,1,"Tourville",44.872896,-0.559322,,1,,Europe/Paris,,OBO, +OBO:SA:TOUTAU,1,"Toutaud",44.893851,-0.516592,,1,,Europe/Paris,,OBO, +OBO:SA:TPASS,1,"Temps Passé",44.851369,-0.586217,,1,,Europe/Paris,,OBO, +OBO:SA:TPEIXO,1,"Peixotto (station Tram)",44.806866,-0.593124,,1,,Europe/Paris,,OBO, +OBO:SA:TPINSO,1,"Pinsoles",44.935194,-0.7586,,1,,Europe/Paris,,OBO, +OBO:SA:TRARI,1,"Boulevard Trarieux",44.841624,-0.546344,,1,,Europe/Paris,,OBO, +OBO:SA:TREBO,1,"Trébod",44.85885,-0.584934,,1,,Europe/Paris,,OBO, +OBO:SA:TREUI,1,"Treuils",44.82529,-0.583855,,1,,Europe/Paris,,OBO, +OBO:SA:TREUIL,1,"Treuil",44.93599,-0.488402,,1,,Europe/Paris,,OBO, +OBO:SA:TRIANO,1,"Trianon",44.852155,-0.638444,,1,,Europe/Paris,,OBO, +OBO:SA:TRIDON,1,"Tridons",44.849829,-0.62072,,1,,Europe/Paris,,OBO, +OBO:SA:TRINIT,1,"Trinité",44.86028,-0.579177,,1,,Europe/Paris,,OBO, +OBO:SA:TRISTA,1,"Tristan",44.898005,-0.710315,,1,,Europe/Paris,,OBO, +OBO:SA:TRIVAU,1,"Triviaux",44.891989,-0.507651,,1,,Europe/Paris,,OBO, +OBO:SA:TROMAI,1,"Romainville",44.789521,-0.714631,,1,,Europe/Paris,,OBO, +OBO:SA:TRONQ,1,"Tronquet",44.915557,-0.745125,,1,,Europe/Paris,,OBO, +OBO:SA:TROU88,1,"Terre Rouge",44.850175,-0.773916,,1,,Europe/Paris,,OBO, +OBO:SA:TROUBA,1,"Troubadis",45.020381,-0.538273,,1,,Europe/Paris,,OBO, +OBO:SA:TROUGE,1,"Terre Rouge",44.913806,-0.686752,,1,,Europe/Paris,,OBO, +OBO:SA:TRUC,1,"Avenue du Truc",44.843854,-0.645462,,1,,Europe/Paris,,OBO, +OBO:SA:TRUFF,1,"Truffaut",44.856173,-0.647961,,1,,Europe/Paris,,OBO, +OBO:SA:TSOUGE,1,"Souge",44.855669,-0.784486,,1,,Europe/Paris,,OBO, +OBO:SA:TSULKY,1,"Le Sulky Terminus",44.87367,-0.629597,,1,,Europe/Paris,,OBO, +OBO:SA:TUJEA,1,"Tujean",44.921412,-0.626148,,1,,Europe/Paris,,OBO, +OBO:SA:TULIPE,1,"Les Tulipes",44.78987,-0.634657,,1,,Europe/Paris,,OBO, +OBO:SA:TUREN,1,"Turenne",44.879938,-0.679455,,1,,Europe/Paris,,OBO, +OBO:SA:TUREN2,1,"Turenne",44.845265,-0.585447,,1,,Europe/Paris,,OBO, +OBO:SA:TVILLE,1,"Villepreux",44.912818,-0.737781,,1,,Europe/Paris,,OBO, +OBO:SA:TYFAUT,1,"Tout y Faut",44.864561,-0.489469,,1,,Europe/Paris,,OBO, +OBO:SA:UCBB,1,"U.C.B.B",44.91708,-0.542999,,1,,Europe/Paris,,OBO, +OBO:SA:UNIVE1,1,"Peixotto (côté Université)",44.808334,-0.591496,,1,,Europe/Paris,,OBO, +OBO:SA:UNIVER,1,"Peixotto (côté Mairie)",44.808338,-0.591357,,1,,Europe/Paris,,OBO, +OBO:SA:URSSAF,1,"URSSAF",44.875506,-0.579464,,1,,Europe/Paris,,OBO, +OBO:SA:VALERY,1,"Martignas Centre",44.839407,-0.777917,,1,,Europe/Paris,,OBO, +OBO:SA:VALLO,1,"Vallon",44.821077,-0.625147,,1,,Europe/Paris,,OBO, +OBO:SA:VANGLA,1,"Vignau Anglade (Clos Favol)",44.895409,-0.507376,,1,,Europe/Paris,,OBO, +OBO:SA:VANGOG,1,"Van Gogh",44.910537,-0.714252,,1,,Europe/Paris,,OBO, +OBO:SA:VASSIV,1,"Parc des Oliviers",44.950836,-0.599951,,1,,Europe/Paris,,OBO, +OBO:SA:VAUCOU,1,"Vaucouleurs",44.813784,-0.56687,,1,,Europe/Paris,,OBO, +OBO:SA:VBOIS,1,"Villabois",44.885146,-0.588237,,1,,Europe/Paris,,OBO, +OBO:SA:VBOURG,1,"Villenave Bourg",44.771211,-0.543932,,1,,Europe/Paris,,OBO, +OBO:SA:VCABOS,1,"Village Cap de Bos",44.786646,-0.679915,,1,,Europe/Paris,,OBO, +OBO:SA:VCERIL,1,"Village de Cerillan",44.894435,-0.758303,,1,,Europe/Paris,,OBO, +OBO:SA:VCURE,1,"Vieille Cure",44.853603,-0.527069,,1,,Europe/Paris,,OBO, +OBO:SA:VELOD,1,"Vélodrome",44.858283,-0.605489,,1,,Europe/Paris,,OBO, +OBO:SA:VELODR,1,"Vélodrome",44.853466,-0.610317,,1,,Europe/Paris,,OBO, +OBO:SA:VENDAN,1,"Vendangeurs",44.867185,-0.478074,,1,,Europe/Paris,,OBO, +OBO:SA:VERCOR,1,"Vercors",44.855652,-0.657082,,1,,Europe/Paris,,OBO, +OBO:SA:VERD88,1,"Verdun",44.843109,-0.785933,,1,,Europe/Paris,,OBO, +OBO:SA:VERDOT,1,"Verdot",44.863155,-0.484167,,1,,Europe/Paris,,OBO, +OBO:SA:VERDUN,1,"Verdun",44.860568,-0.612124,,1,,Europe/Paris,,OBO, +OBO:SA:VERGER,1,"Vergers",44.914513,-0.493446,,1,,Europe/Paris,,OBO, +OBO:SA:VERGN,1,"Vergne",44.895408,-0.561898,,1,,Europe/Paris,,OBO, +OBO:SA:VERGNE,1,"Vergne",44.822958,-0.481819,,1,,Europe/Paris,,OBO, +OBO:SA:VERLAI,1,"Verlaine",44.872614,-0.60864,,1,,Europe/Paris,,OBO, +OBO:SA:VERSA,1,"Versant",44.832345,-0.51438,,1,,Europe/Paris,,OBO, +OBO:SA:VERTC,1,"Verts Coteaux",44.834647,-0.51282,,1,,Europe/Paris,,OBO, +OBO:SA:VERTE,1,"Verte",44.83665,-0.605974,,1,,Europe/Paris,,OBO, +OBO:SA:VETTI,1,"Vettiner",44.815997,-0.503544,,1,,Europe/Paris,,OBO, +OBO:SA:VGOGH,1,"Van Gogh",44.875977,-0.609731,,1,,Europe/Paris,,OBO, +OBO:SA:VHAVEL,1,"Lycée Václav Havel",44.786049,-0.564053,,1,,Europe/Paris,,OBO, +OBO:SA:VHUG08,1,"Victor Hugo",44.850734,-0.533097,,1,,Europe/Paris,,OBO, +OBO:SA:VHUG71,1,"Victor Hugo",44.895828,-0.735063,,1,,Europe/Paris,,OBO, +OBO:SA:VHUG93,1,"Victor Hugo",44.89753,-0.497695,,1,,Europe/Paris,,OBO, +OBO:SA:VHUMFD,1,"St Louis de Montferrand (Victor Hugo)",44.956295,-0.533889,,1,,Europe/Paris,,OBO, +OBO:SA:VIALL,1,"Vialle",44.817463,-0.506788,,1,,Europe/Paris,,OBO, +OBO:SA:VICTOM,1,"Victoire (Marne)",44.830569,-0.571514,,1,,Europe/Paris,,OBO, +OBO:SA:VICTOS,1,"Victoire (Somme)",44.829776,-0.572338,,1,,Europe/Paris,,OBO, +OBO:SA:VIEEGL,1,"Lot. de la Vieille Eglise",44.944591,-0.59434,,1,,Europe/Paris,,OBO, +OBO:SA:VIGEAN,1,"Le Vigean (Centre Commercial)",44.882912,-0.631292,,1,,Europe/Paris,,OBO, +OBO:SA:VIGN64,1,"La Vigne",44.863696,-0.486602,,1,,Europe/Paris,,OBO, +OBO:SA:VIGNAL,1,"Vignalot",44.860724,-0.728501,,1,,Europe/Paris,,OBO, +OBO:SA:VIGNE,1,"Vigneau",44.830756,-0.663972,,1,,Europe/Paris,,OBO, +OBO:SA:VILLA,1,"Villa",44.957384,-0.605354,,1,,Europe/Paris,,OBO, +OBO:SA:VILLA1,1,"Village 1",44.807929,-0.603681,,1,,Europe/Paris,,OBO, +OBO:SA:VILLA2,1,"Village 2",44.803051,-0.612603,,1,,Europe/Paris,,OBO, +OBO:SA:VILLA4,1,"Village 4",44.791722,-0.622683,,1,,Europe/Paris,,OBO, +OBO:SA:VILLA5,1,"Village 5",44.793085,-0.613652,,1,,Europe/Paris,,OBO, +OBO:SA:VILLA6,1,"Village 6 IUT",44.791439,-0.613002,,1,,Europe/Paris,,OBO, +OBO:SA:VILLEM,1,"Le Télégraphe",44.78415,-0.606434,,1,,Europe/Paris,,OBO, +OBO:SA:VILLEN,1,"Villeneuve",44.798596,-0.681571,,1,,Europe/Paris,,OBO, +OBO:SA:VILLO,1,"Villon",44.859713,-0.523823,,1,,Europe/Paris,,OBO, +OBO:SA:VINCE,1,"Professeur Vincent",44.885819,-0.52121,,1,,Europe/Paris,,OBO, +OBO:SA:VINCE5,1,"Vincent",44.845412,-0.544005,,1,,Europe/Paris,,OBO, +OBO:SA:VIOLET,1,"Violettes",44.860599,-0.637521,,1,,Europe/Paris,,OBO, +OBO:SA:VIREC,1,"Virecourt",44.854395,-0.49979,,1,,Europe/Paris,,OBO, +OBO:SA:VIRGI,1,"Virginia",44.850262,-0.625809,,1,,Europe/Paris,,OBO, +OBO:SA:VISSAC,1,"Village d'Issac",44.895691,-0.773098,,1,,Europe/Paris,,OBO, +OBO:SA:VIVALD,1,"Vivaldi",44.935384,-0.50078,,1,,Europe/Paris,,OBO, +OBO:SA:VMAGUD,1,"Village de Magudas",44.864473,-0.728528,,1,,Europe/Paris,,OBO, +OBO:SA:VOLTA,1,"Voltaire",44.818427,-0.546025,,1,,Europe/Paris,,OBO, +OBO:SA:WANGER,1,"Stade Wangermez",44.777918,-0.554566,,1,,Europe/Paris,,OBO, +OBO:SA:WILSO,1,"Collège Victor Louis",44.79901,-0.59109,,1,,Europe/Paris,,OBO, +OBO:SA:XAINTR,1,"Xaintrailles",44.828061,-0.593028,,1,,Europe/Paris,,OBO, +OBO:SA:XARNOZ,1,"Xavier Arnozan",44.800398,-0.658454,,1,,Europe/Paris,,OBO, +OBO:SA:YVBRIC,1,"Yvan Bric",44.947965,-0.600224,,1,,Europe/Paris,,OBO, +OBO:SA:ZAARTI,1,"Z.A Artigues",44.86844,-0.494931,,1,,Europe/Paris,,OBO, +OBO:SA:ZAAUG,1,"Z.A. d'Auguste",44.764993,-0.724137,,1,,Europe/Paris,,OBO, +OBO:SA:ZAMAGE,1,"ZA Magellan",44.778527,-0.663971,,1,,Europe/Paris,,OBO, +OBO:SA:ZAVIG,1,"Z.A Haut-Vigneau",44.771754,-0.631379,,1,,Europe/Paris,,OBO, +OBO:SA:ZCATRO,1,"Toussaint Catros",44.855586,-0.69444,,1,,Europe/Paris,,OBO, +OBO:SA:ZICEST,1,"Z.I. de Cestas",44.762452,-0.727986,,1,,Europe/Paris,,OBO, +OBO:SA:ZIPHAR,1,"Z.I. du Phare",44.849993,-0.671803,,1,,Europe/Paris,,OBO, +OBO:SA:ZOLA82,1,"Zola",44.905309,-0.724889,,1,,Europe/Paris,,OBO, +OBO:SA:ZOLA95,1,"Emile Zola",44.903714,-0.504516,,1,,Europe/Paris,,OBO, +OBX:SA:40JOU,1,"Quarante Journaux",44.883089,-0.570402,,1,,Europe/Paris,,OBX, +OBX:SA:4CHEM,1,"Quatre Chemins",44.832602,-0.644903,,1,,Europe/Paris,,OBX, +OBX:SA:ACHAR,1,"Rue Achard",44.866626,-0.548691,,1,,Europe/Paris,,OBX, +OBX:SA:ARLAC,1,"Fontaine d'Arlac",44.826645,-0.62562,,1,,Europe/Paris,,OBX, +OBX:SA:ARTME,1,"Arts & Métiers",44.805991,-0.602316,,1,,Europe/Paris,,OBX, +OBX:SA:AUBI1C,1,"Les Aubiers",44.87399,-0.574202,,1,,Europe/Paris,,OBX, +OBX:SA:AUGUS,1,"Saint-Augustin",44.828801,-0.610245,,1,,Europe/Paris,,OBX, +OBX:SA:BELCI,1,"Belcier",44.822543,-0.552161,,1,,Europe/Paris,,OBX, +OBX:SA:BERGO,1,"Bergonié",44.825025,-0.578247,,1,,Europe/Paris,,OBX, +OBX:SA:BERLAC,1,"Berges du Lac",44.879016,-0.570808,,1,,Europe/Paris,,OBX, +OBX:SA:BETHA,1,"Béthanie",44.806,-0.598006,,1,,Europe/Paris,,OBX, +OBX:SA:BFLEU,1,"Bois Fleuri",44.87602,-0.519308,,1,,Europe/Paris,,OBX, +OBX:SA:BGENE,1,"Barrière Saint Genès",44.821172,-0.582851,,1,,Europe/Paris,,OBX, +OBX:SA:BORDE,1,"François Bordes",44.803499,-0.606745,,1,,Europe/Paris,,OBX, +OBX:SA:BOUGN,1,"Bougnard",44.794082,-0.634037,,1,,Europe/Paris,,OBX, +OBX:SA:BOURS,1,"Place de la Bourse",44.841551,-0.569667,,1,,Europe/Paris,,OBX, +OBX:SA:BRANRG,1,"Brandenburg",44.874473,-0.545682,,1,,Europe/Paris,,OBX, +OBX:SA:BRGA,1,"Porte de Bourgogne",44.837217,-0.566281,,1,,Europe/Paris,,OBX, +OBX:SA:BROSE,1,"La Belle Rose",44.811131,-0.551262,,1,,Europe/Paris,,OBX, +OBX:SA:BRUGAR,1,"Gare de Bruges",44.887551,-0.609817,,1,,Europe/Paris,,OBX, +OBX:SA:BRUNO,1,"St Bruno - Hôtel de Région",44.83745,-0.589248,,1,,Europe/Paris,,OBX, +OBX:SA:BRUSUD,1,"Ausone",44.879246,-0.602735,,1,,Europe/Paris,,OBX, +OBX:SA:BUTTI,1,"Buttinière",44.864059,-0.524869,,1,,Europe/Paris,,OBX, +OBX:SA:CALAIS,1,"Calais - Centujean",44.802892,-0.55202,,1,,Europe/Paris,,OBX, +OBX:SA:CAPC,1,"CAPC Musée d'Art Contemporain",44.849101,-0.570463,,1,,Europe/Paris,,OBX, +OBX:SA:CARNO,1,"Carnot - Mairie de Cenon",44.85776,-0.531537,,1,,Europe/Paris,,OBX, +OBX:SA:CARRI,1,"Carriet",44.882192,-0.523879,,1,,Europe/Paris,,OBX, +OBX:SA:CATHE,1,"Sainte Catherine",44.837622,-0.573305,,1,,Europe/Paris,,OBX, +OBX:SA:CBLANQ,1,"Frankton",44.907258,-0.619082,,1,,Europe/Paris,,OBX, +OBX:SA:CDELM,1,"Stade Chaban Delmas",44.831422,-0.598508,,1,,Europe/Paris,,OBX, +OBX:SA:CENOG,1,"Cenon Gare",44.855968,-0.534155,,1,,Europe/Paris,,OBX, +OBX:SA:CHART,1,"Chartrons",44.852807,-0.567608,,1,,Europe/Paris,,OBX, +OBX:SA:CHATA,1,"Chataigneraie",44.793019,-0.64662,,1,,Europe/Paris,,OBX, +OBX:SA:CLAVE,1,"Claveau",44.877867,-0.543812,,1,,Europe/Paris,,OBX, +OBX:SA:CMETIE,1,"Cap Métiers",44.789235,-0.651652,,1,,Europe/Paris,,OBX, +OBX:SA:CPELL,1,"Pelletan",44.858676,-0.519722,,1,,Europe/Paris,,OBX, +OBX:SA:CRACOT,1,"Cracovie",44.871023,-0.576231,,1,,Europe/Paris,,OBX, +OBX:SA:CROIX,1,"Sainte Croix",44.831841,-0.55943,,1,,Europe/Paris,,OBX, +OBX:SA:DORGAT,1,"Gare de Bègles",44.798207,-0.551951,,1,,Europe/Paris,,OBX, +OBX:SA:DOYEN,1,"Doyen Brus",44.800273,-0.609639,,1,,Europe/Paris,,OBX, +OBX:SA:DRAVE,1,"Floirac Dravemont",44.845898,-0.510414,,1,,Europe/Paris,,OBX, +OBX:SA:ECOUN,1,"Emile Counord",44.858651,-0.57491,,1,,Europe/Paris,,OBX, +OBX:SA:FLO12B,1,"La Cité du Vin",44.860733,-0.553159,,1,,Europe/Paris,,OBX, +OBX:SA:FORUM,1,"Forum",44.811956,-0.590962,,1,,Europe/Paris,,OBX, +OBX:SA:FRMIT,1,"François Mitterrand",44.827157,-0.614224,,1,,Europe/Paris,,OBX, +OBX:SA:FRROBI,1,"Frères Robinson",44.85003,-0.65593,,1,,Europe/Paris,,OBX, +OBX:SA:GABLAN,1,"Gare de Blanquefort",44.91679,-0.623611,,1,,Europe/Paris,,OBX, +OBX:SA:GALIN,1,"Galin",44.849767,-0.54435,,1,,Europe/Paris,,OBX, +OBX:SA:GAMBT,1,"Gambetta - madd",44.840586,-0.578377,,1,,Europe/Paris,,OBX, +OBX:SA:GARON,1,"Berges de la Garonne",44.885582,-0.541535,,1,,Europe/Paris,,OBX, +OBX:SA:GAVIN,1,"Gaviniès",44.833097,-0.593124,,1,,Europe/Paris,,OBX, +OBX:SA:GODAR,1,"Camille Godard",44.854672,-0.574486,,1,,Europe/Paris,,OBX, +OBX:SA:GPARC,1,"Grand Parc",44.862264,-0.575343,,1,,Europe/Paris,,OBX, +OBX:SA:GRAVI,1,"Gravières",44.872774,-0.520201,,1,,Europe/Paris,,OBX, +OBX:SA:HANGA,1,"Les Hangars",44.85796,-0.558825,,1,,Europe/Paris,,OBX, +OBX:SA:HAVEL,1,"Vaclav Havel",44.786628,-0.566228,,1,,Europe/Paris,,OBX, +OBX:SA:HDVA,1,"Hôtel de Ville",44.837317,-0.577162,,1,,Europe/Paris,,OBX, +OBX:SA:HOPIT,1,"Hôpital Pellegrin",44.830189,-0.604571,,1,,Europe/Paris,,OBX, +OBX:SA:HTLEV,1,"Hôpital Haut-Lévêque",44.787701,-0.655406,,1,,Europe/Paris,,OBX, +OBX:SA:HVILL,1,"Mairie de Lormont",44.879847,-0.523516,,1,,Europe/Paris,,OBX, +OBX:SA:IRIS,1,"Iris",44.868536,-0.522691,,1,,Europe/Paris,,OBX, +OBX:SA:JARDI,1,"Jardin Botanique",44.842997,-0.555387,,1,,Europe/Paris,,OBX, +OBX:SA:JAURE,1,"Jean Jaurès",44.853784,-0.537793,,1,,Europe/Paris,,OBX, +OBX:SA:JPUBL,1,"Jardin Public",44.848205,-0.575341,,1,,Europe/Paris,,OBX, +OBX:SA:JZAY,1,"Jean Zay",44.854111,-0.513177,,1,,Europe/Paris,,OBX, +OBX:SA:LAURI,1,"Lauriers",44.879106,-0.517892,,1,,Europe/Paris,,OBX, +OBX:SA:LESPIN,1,"Les Pins",44.856905,-0.659812,,1,,Europe/Paris,,OBX, +OBX:SA:LGARDE,1,"La Gardette - Bassens - Carbon-Blanc",44.887668,-0.517313,,1,,Europe/Paris,,OBX, +OBX:SA:LYCEE,1,"Lycées de Mérignac",44.834974,-0.647457,,1,,Europe/Paris,,OBX, +OBX:SA:MAREG,1,"Cenon Marègue",44.850741,-0.508899,,1,,Europe/Paris,,OBX, +OBX:SA:MEDOC,1,"Cours du Médoc",44.855876,-0.563241,,1,,Europe/Paris,,OBX, +OBX:SA:MENDE,1,"Pierre Mendès France",44.830158,-0.639849,,1,,Europe/Paris,,OBX, +OBX:SA:MERIA,1,"Mériadeck",44.838137,-0.584282,,1,,Europe/Paris,,OBX, +OBX:SA:MONTA,1,"Montaigne-Montesquieu",44.796786,-0.617365,,1,,Europe/Paris,,OBX, +OBX:SA:MONTES,1,"Camponac Médiathèque",44.800321,-0.634776,,1,,Europe/Paris,,OBX, +OBX:SA:MORLE,1,"La Morlette",44.854993,-0.518186,,1,,Europe/Paris,,OBX, +OBX:SA:MUSARD,1,"Musard",44.807985,-0.551544,,1,,Europe/Paris,,OBX, +OBX:SA:MUSEE,1,"Musée d'aquitaine",44.835511,-0.575337,,1,,Europe/Paris,,OBX, +OBX:SA:NEUVE,1,"Terres Neuves",44.815307,-0.550874,,1,,Europe/Paris,,OBX, +OBX:SA:NICOL,1,"Saint-Nicolas",44.828975,-0.573996,,1,,Europe/Paris,,OBX, +OBX:SA:NYORK,1,"New York",44.871018,-0.547333,,1,,Europe/Paris,,OBX, +OBX:SA:PALAI,1,"Place du Palais",44.837913,-0.569302,,1,,Europe/Paris,,OBX, +OBX:SA:PALMER,1,"Palmer",44.862226,-0.519729,,1,,Europe/Paris,,OBX, +OBX:SA:PCONGR,1,"Palais des congrès",44.889276,-0.567182,,1,,Europe/Paris,,OBX, +OBX:SA:PDOUM,1,"Paul Doumer",44.851931,-0.574102,,1,,Europe/Paris,,OBX, +OBX:SA:PEIXOT,1,"Peixotto",44.807242,-0.592635,,1,,Europe/Paris,,OBX, +OBX:SA:PESGAR,1,"Gare Pessac Alouette",44.793139,-0.657753,,1,,Europe/Paris,,OBX, +OBX:SA:PESSA,1,"Pessac Centre",44.804292,-0.632546,,1,,Europe/Paris,,OBX, +OBX:SA:PEYCHO,1,"Peychotte",44.826588,-0.619918,,1,,Europe/Paris,,OBX, +OBX:SA:PGALA,1,"Pin Galant",44.844259,-0.651373,,1,,Europe/Paris,,OBX, +OBX:SA:PJUST,1,"Palais de Justice",44.836276,-0.58151,,1,,Europe/Paris,,OBX, +OBX:SA:PMUSS,1,"Parc de Mussonville",44.793955,-0.559625,,1,,Europe/Paris,,OBX, +OBX:SA:POLIC,1,"Hôtel de Police",44.834903,-0.588832,,1,,Europe/Paris,,OBX, +OBX:SA:QUIN_B,1,"Quinconces",44.844469,-0.573792,,1,,Europe/Paris,,OBX, +OBX:SA:RAVESI,1,"Place Ravezies",44.867097,-0.575835,,1,,Europe/Paris,,OBX, +OBX:SA:ROUST,1,"Roustaing",44.816945,-0.585665,,1,,Europe/Paris,,OBX, +OBX:SA:SAIGE,1,"Saige",44.793987,-0.628538,,1,,Europe/Paris,,OBX, +OBX:SA:SJEAN,1,"Gare Saint Jean",44.825917,-0.556826,,1,,Europe/Paris,,OBX, +OBX:SA:SMICH,1,"Saint Michel",44.834476,-0.563384,,1,,Europe/Paris,,OBX, +OBX:SA:STALIT,1,"Stalingrad",44.840316,-0.55972,,1,,Europe/Paris,,OBX, +OBX:SA:TALOU,1,"France Alouette",44.798618,-0.663104,,1,,Europe/Paris,,OBX, +OBX:SA:TAUZI,1,"Tauzia",44.829062,-0.558544,,1,,Europe/Paris,,OBX, +OBX:SA:TBENE,1,"Thiers-Benauge",44.845793,-0.550826,,1,,Europe/Paris,,OBX, +OBX:SA:TEXPO,1,"Parc des Expositions",44.893304,-0.565815,,1,,Europe/Paris,,OBX, +OBX:SA:THEAT,1,"Grand Théâtre",44.842051,-0.575297,,1,,Europe/Paris,,OBX, +OBX:SA:TMAGUD,1,"Le Haillan Rostand",44.858517,-0.668319,,1,,Europe/Paris,,OBX, +OBX:SA:TMERI,1,"Mérignac Centre",44.841446,-0.646832,,1,,Europe/Paris,,OBX, +OBX:SA:UNITE,1,"Unitec",44.796279,-0.62156,,1,,Europe/Paris,,OBX, +OBX:SA:UTRILL,1,"Hotel de Ville Mérignac",44.844171,-0.658272,,1,,Europe/Paris,,OBX, +OBX:SA:VACHE,1,"La Vache",44.872208,-0.590762,,1,,Europe/Paris,,OBX, +OBX:SA:VERNT,1,"Carle Vernet",44.819858,-0.550446,,1,,Europe/Paris,,OBX, +OBX:SA:VICTO,1,"Victoire",44.831173,-0.573047,,1,,Europe/Paris,,OBX, +OBX:SA:VIGNY,1,"Alfred de Vigny",44.83023,-0.633958,,1,,Europe/Paris,,OBX, +OGP:SA:10002,1,"Le Planty",46.596604,0.351506,,1,,Europe/Paris,,OGP, +OGP:SA:10003,1,"Salle des Sports",46.603976,0.361381,,1,,Europe/Paris,,OGP, +OGP:SA:10004,1,"Vincenderie",46.59437,0.340818,,1,,Europe/Paris,,OGP, +OGP:SA:10006,1,"Buxerolles Bourg",46.612312,0.361677,,1,,Europe/Paris,,OGP, +OGP:SA:10008,1,"Blériot",46.578626,0.316716,,1,,Europe/Paris,,OGP, +OGP:SA:10009,1,"La Chaume",46.595753,0.334647,,1,,Europe/Paris,,OGP, +OGP:SA:10010,1,"Demi-Lune",46.599641,0.324254,,1,,Europe/Paris,,OGP, +OGP:SA:10011,1,"Notre Dame",46.584087,0.344275,,1,,Europe/Paris,,OGP, +OGP:SA:10012,1,"Porte de Paris",46.590464,0.338906,,1,,Europe/Paris,,OGP, +OGP:SA:10013,1,"Le Porteau",46.6018,0.339377,,1,,Europe/Paris,,OGP, +OGP:SA:10014,1,"Jardin des Plantes",46.588803,0.347514,,1,,Europe/Paris,,OGP, +OGP:SA:10015,1,"Bel Air",46.593127,0.328437,,1,,Europe/Paris,,OGP, +OGP:SA:10016,1,"Salvert",46.598072,0.33343,,1,,Europe/Paris,,OGP, +OGP:SA:10017,1,"Croix Blanche",46.597429,0.331337,,1,,Europe/Paris,,OGP, +OGP:SA:10018,1,"Olivier de Serres",46.596555,0.329043,,1,,Europe/Paris,,OGP, +OGP:SA:10019,1,"Avenue de Nantes",46.596977,0.327053,,1,,Europe/Paris,,OGP, +OGP:SA:10020,1,"T.A.P.",46.583004,0.338598,,1,,Europe/Paris,,OGP, +OGP:SA:10022,1,"La Chaussée",46.588128,0.34013,,1,,Europe/Paris,,OGP, +OGP:SA:10023,1,"Abbé Frémont",46.590272,0.341254,,1,,Europe/Paris,,OGP, +OGP:SA:10024,1,"Voie Malraux",46.585117,0.346674,,1,,Europe/Paris,,OGP, +OGP:SA:10025,1,"Henri Oudin",46.581252,0.341963,,1,,Europe/Paris,,OGP, +OGP:SA:10026,1,"La Roche",46.584605,0.33194,,1,,Europe/Paris,,OGP, +OGP:SA:10027,1,"Corbeille Fleurie",46.585022,0.330371,,1,,Europe/Paris,,OGP, +OGP:SA:10028,1,"Condorcet",46.588822,0.329969,,1,,Europe/Paris,,OGP, +OGP:SA:10029,1,"Grange St-Pierre",46.598532,0.334857,,1,,Europe/Paris,,OGP, +OGP:SA:10030,1,"La Sablière",46.60109,0.33598,,1,,Europe/Paris,,OGP, +OGP:SA:10031,1,"L'Etoile",46.603814,0.340422,,1,,Europe/Paris,,OGP, +OGP:SA:10032,1,"AFT Le Carreau",46.607902,0.343117,,1,,Europe/Paris,,OGP, +OGP:SA:10036,1,"Cordeliers",46.582385,0.343044,,1,,Europe/Paris,,OGP, +OGP:SA:10037,1,"Mozart",46.592178,0.347499,,1,,Europe/Paris,,OGP, +OGP:SA:10038,1,"Pont le Nain",46.591574,0.340295,,1,,Europe/Paris,,OGP, +OGP:SA:10039,1,"Europe",46.591266,0.351974,,1,,Europe/Paris,,OGP, +OGP:SA:10040,1,"Le Mail",46.589674,0.357005,,1,,Europe/Paris,,OGP, +OGP:SA:10041,1,"Marbourg",46.589163,0.360688,,1,,Europe/Paris,,OGP, +OGP:SA:10042,1,"Rondy",46.586822,0.36533,,1,,Europe/Paris,,OGP, +OGP:SA:10043,1,"Touffenet",46.581949,0.368107,,1,,Europe/Paris,,OGP, +OGP:SA:10044,1,"Jean Moulin",46.581426,0.372502,,1,,Europe/Paris,,OGP, +OGP:SA:10045,1,"Parc Expo",46.580574,0.377006,,1,,Europe/Paris,,OGP, +OGP:SA:10046,1,"Northampton",46.579684,0.379139,,1,,Europe/Paris,,OGP, +OGP:SA:10047,1,"Bois Dousset",46.577239,0.378408,,1,,Europe/Paris,,OGP, +OGP:SA:10048,1,"Beaulieu",46.576433,0.376579,,1,,Europe/Paris,,OGP, +OGP:SA:10049,1,"Lavoisier",46.576224,0.373342,,1,,Europe/Paris,,OGP, +OGP:SA:10050,1,"La Fayette",46.575439,0.370427,,1,,Europe/Paris,,OGP, +OGP:SA:10051,1,"Stade",46.572666,0.370633,,1,,Europe/Paris,,OGP, +OGP:SA:10052,1,"Patinoire",46.569609,0.369472,,1,,Europe/Paris,,OGP, +OGP:SA:10053,1,"Camille Guérin",46.567548,0.366544,,1,,Europe/Paris,,OGP, +OGP:SA:10054,1,"Les Landes",46.566497,0.363329,,1,,Europe/Paris,,OGP, +OGP:SA:10055,1,"Paul Verlaine",46.567203,0.359153,,1,,Europe/Paris,,OGP, +OGP:SA:10056,1,"Pontreau",46.568184,0.355369,,1,,Europe/Paris,,OGP, +OGP:SA:10057,1,"Grand Maison",46.566248,0.352153,,1,,Europe/Paris,,OGP, +OGP:SA:10058,1,"St-Cyprien",46.565561,0.349266,,1,,Europe/Paris,,OGP, +OGP:SA:10059,1,"Molière",46.566624,0.345635,,1,,Europe/Paris,,OGP, +OGP:SA:10060,1,"Clos Gaultier",46.566328,0.342998,,1,,Europe/Paris,,OGP, +OGP:SA:10061,1,"Les Sables",46.56545,0.340807,,1,,Europe/Paris,,OGP, +OGP:SA:10062,1,"Rhin-Danube",46.56776,0.340838,,1,,Europe/Paris,,OGP, +OGP:SA:10063,1,"Fief de Grimoire",46.569605,0.340631,,1,,Europe/Paris,,OGP, +OGP:SA:10064,1,"Les Cours",46.572659,0.339025,,1,,Europe/Paris,,OGP, +OGP:SA:10065,1,"Pont St-Cyprien",46.574306,0.34532,,1,,Europe/Paris,,OGP, +OGP:SA:10066,1,"Paul Blet",46.576585,0.343706,,1,,Europe/Paris,,OGP, +OGP:SA:10067,1,"Blossac",46.576206,0.33614,,1,,Europe/Paris,,OGP, +OGP:SA:10072,1,"Porte Madeleine",46.573274,0.328438,,1,,Europe/Paris,,OGP, +OGP:SA:10074,1,"Verdun",46.582985,0.336285,,1,,Europe/Paris,,OGP, +OGP:SA:10075,1,"A. Briand",46.581411,0.335807,,1,,Europe/Paris,,OGP, +OGP:SA:10076,1,"Quatre Vents",46.611496,0.359939,,1,,Europe/Paris,,OGP, +OGP:SA:10077,1,"Vaudouzil",46.580335,0.365699,,1,,Europe/Paris,,OGP, +OGP:SA:10078,1,"Abel Tassin",46.596252,0.341804,,1,,Europe/Paris,,OGP, +OGP:SA:10079,1,"Lessart",46.599197,0.343267,,1,,Europe/Paris,,OGP, +OGP:SA:10080,1,"Acacias",46.600186,0.344822,,1,,Europe/Paris,,OGP, +OGP:SA:10081,1,"Parc Valvert",46.601176,0.34842,,1,,Europe/Paris,,OGP, +OGP:SA:10083,1,"Amandiers",46.599916,0.350262,,1,,Europe/Paris,,OGP, +OGP:SA:10084,1,"Buxerolles Mairie",46.598391,0.35219,,1,,Europe/Paris,,OGP, +OGP:SA:10086,1,"Charles de Gaulle",46.599195,0.357581,,1,,Europe/Paris,,OGP, +OGP:SA:10087,1,"Voie Romaine",46.602652,0.358015,,1,,Europe/Paris,,OGP, +OGP:SA:10088,1,"La Coulée",46.606927,0.360193,,1,,Europe/Paris,,OGP, +OGP:SA:10089,1,"Terrageaux",46.608119,0.362116,,1,,Europe/Paris,,OGP, +OGP:SA:10093,1,"Nimègue",46.591564,0.362022,,1,,Europe/Paris,,OGP, +OGP:SA:10095,1,"La Pépinière",46.593186,0.363118,,1,,Europe/Paris,,OGP, +OGP:SA:10096,1,"France 3",46.593061,0.358257,,1,,Europe/Paris,,OGP, +OGP:SA:10099,1,"Place Lepetit",46.58353,0.341525,,1,,Europe/Paris,,OGP, +OGP:SA:10100,1,"Tamaris",46.57766,0.315784,,1,,Europe/Paris,,OGP, +OGP:SA:10104,1,"Biard Centre",46.576248,0.307524,,1,,Europe/Paris,,OGP, +OGP:SA:10107,1,"Collège Rabelais",46.57793,0.317972,,1,,Europe/Paris,,OGP, +OGP:SA:10108,1,"Montmidi",46.578217,0.319513,,1,,Europe/Paris,,OGP, +OGP:SA:10110,1,"Maquis",46.577421,0.322525,,1,,Europe/Paris,,OGP, +OGP:SA:10111,1,"Soleil Levant",46.578455,0.328517,,1,,Europe/Paris,,OGP, +OGP:SA:10112,1,"Pont Achard",46.578489,0.331618,,1,,Europe/Paris,,OGP, +OGP:SA:10113,1,"Cité U",46.56909,0.382727,,1,,Europe/Paris,,OGP, +OGP:SA:10114,1,"Champlain",46.567977,0.389117,,1,,Europe/Paris,,OGP, +OGP:SA:10115,1,"Iassy",46.570599,0.390766,,1,,Europe/Paris,,OGP, +OGP:SA:10117,1,"Mariéville",46.573849,0.391532,,1,,Europe/Paris,,OGP, +OGP:SA:10118,1,"Montpensier",46.574094,0.389201,,1,,Europe/Paris,,OGP, +OGP:SA:10119,1,"Iaroslav",46.573538,0.38672,,1,,Europe/Paris,,OGP, +OGP:SA:10120,1,"Centre Culturel",46.575278,0.383989,,1,,Europe/Paris,,OGP, +OGP:SA:10121,1,"Vayres",46.575776,0.380785,,1,,Europe/Paris,,OGP, +OGP:SA:10123,1,"La Souche",46.572082,0.32659,,1,,Europe/Paris,,OGP, +OGP:SA:10124,1,"Jeunes Sourds",46.569093,0.32223,,1,,Europe/Paris,,OGP, +OGP:SA:10125,1,"Torchaise",46.567909,0.320511,,1,,Europe/Paris,,OGP, +OGP:SA:10126,1,"Trois Bourdons",46.563883,0.317561,,1,,Europe/Paris,,OGP, +OGP:SA:10127,1,"Serge Rouault",46.561061,0.31444,,1,,Europe/Paris,,OGP, +OGP:SA:10128,1,"Saint-Gervais",46.558516,0.31153,,1,,Europe/Paris,,OGP, +OGP:SA:10129,1,"Aulnes",46.556854,0.309591,,1,,Europe/Paris,,OGP, +OGP:SA:10131,1,"Renaudot",46.55014,0.32119,,1,,Europe/Paris,,OGP, +OGP:SA:10132,1,"Rue des Bruyères",46.54861,0.320181,,1,,Europe/Paris,,OGP, +OGP:SA:10133,1,"Fief Clairet",46.547603,0.317553,,1,,Europe/Paris,,OGP, +OGP:SA:10134,1,"Chantejeau",46.546309,0.312197,,1,,Europe/Paris,,OGP, +OGP:SA:10135,1,"Lycée du Bois d'Amour",46.551778,0.309181,,1,,Europe/Paris,,OGP, +OGP:SA:10136,1,"Foyer Soleil",46.573653,0.378025,,1,,Europe/Paris,,OGP, +OGP:SA:10137,1,"Jean le Bon",46.572923,0.380485,,1,,Europe/Paris,,OGP, +OGP:SA:10139,1,"Pétonnet Hulin 2",46.582175,0.339839,,1,,Europe/Paris,,OGP, +OGP:SA:10144,1,"St Eloi",46.589673,0.374476,,1,,Europe/Paris,,OGP, +OGP:SA:10145,1,"Croix St-Eloi",46.589662,0.371589,,1,,Europe/Paris,,OGP, +OGP:SA:10148,1,"Alienor d'Aquitaine",46.588197,0.365165,,1,,Europe/Paris,,OGP, +OGP:SA:10150,1,"Montbernage",46.583246,0.361831,,1,,Europe/Paris,,OGP, +OGP:SA:10151,1,"Père de la Croix",46.581577,0.359174,,1,,Europe/Paris,,OGP, +OGP:SA:10152,1,"Gendarmerie",46.577337,0.35729,,1,,Europe/Paris,,OGP, +OGP:SA:10153,1,"Aboville",46.579391,0.355511,,1,,Europe/Paris,,OGP, +OGP:SA:10154,1,"Coligny",46.577342,0.352468,,1,,Europe/Paris,,OGP, +OGP:SA:10155,1,"Pont Neuf",46.57822,0.350336,,1,,Europe/Paris,,OGP, +OGP:SA:10156,1,"Baptistère St-Jean",46.579602,0.348752,,1,,Europe/Paris,,OGP, +OGP:SA:10157,1,"Rue St-Benoit",46.560555,0.318449,,1,,Europe/Paris,,OGP, +OGP:SA:10158,1,"Rue de Parigny",46.558592,0.318703,,1,,Europe/Paris,,OGP, +OGP:SA:10159,1,"St-Martin",46.554984,0.319194,,1,,Europe/Paris,,OGP, +OGP:SA:10160,1,"Sécatol",46.553156,0.319931,,1,,Europe/Paris,,OGP, +OGP:SA:10161,1,"Les Essarts",46.553091,0.322024,,1,,Europe/Paris,,OGP, +OGP:SA:10162,1,"Magnac",46.55433,0.325828,,1,,Europe/Paris,,OGP, +OGP:SA:10163,1,"Ermitage",46.55534,0.329794,,1,,Europe/Paris,,OGP, +OGP:SA:10164,1,"Rue du Clain",46.555861,0.331407,,1,,Europe/Paris,,OGP, +OGP:SA:10165,1,"Rue des Peupliers",46.557563,0.332562,,1,,Europe/Paris,,OGP, +OGP:SA:10166,1,"La Varenne",46.558556,0.332056,,1,,Europe/Paris,,OGP, +OGP:SA:10170,1,"Hoche",46.587338,0.374669,,1,,Europe/Paris,,OGP, +OGP:SA:10171,1,"Route de Paris",46.596274,0.336713,,1,,Europe/Paris,,OGP, +OGP:SA:10172,1,"Moulin Apparent",46.606049,0.345083,,1,,Europe/Paris,,OGP, +OGP:SA:10173,1,"Maison Formation",46.612081,0.348679,,1,,Europe/Paris,,OGP, +OGP:SA:10174,1,"Pont Autoroute",46.618251,0.351229,,1,,Europe/Paris,,OGP, +OGP:SA:10176,1,"Grand Pont",46.637002,0.358,,1,,Europe/Paris,,OGP, +OGP:SA:10178,1,"Rond-Point Charlemagne",46.646173,0.368082,,1,,Europe/Paris,,OGP, +OGP:SA:10179,1,"Maraudeau",46.648251,0.372524,,1,,Europe/Paris,,OGP, +OGP:SA:10180,1,"Mairie Chasseneuil",46.650938,0.375337,,1,,Europe/Paris,,OGP, +OGP:SA:10181,1,"Leclanché",46.653215,0.377014,,1,,Europe/Paris,,OGP, +OGP:SA:10182,1,"Ecluzelles",46.656421,0.379312,,1,,Europe/Paris,,OGP, +OGP:SA:10183,1,"Rue de Vert",46.658206,0.381719,,1,,Europe/Paris,,OGP, +OGP:SA:10184,1,"Beausoleil",46.652836,0.369624,,1,,Europe/Paris,,OGP, +OGP:SA:10185,1,"Les Temps Modernes",46.655969,0.369815,,1,,Europe/Paris,,OGP, +OGP:SA:10186,1,"Europe",46.658571,0.371299,,1,,Europe/Paris,,OGP, +OGP:SA:10187,1,"Université",46.660933,0.359866,,1,,Europe/Paris,,OGP, +OGP:SA:10188,1,"Téléport 4",46.669465,0.361146,,1,,Europe/Paris,,OGP, +OGP:SA:10189,1,"Futuroscope LPI",46.673008,0.36475,,1,,Europe/Paris,,OGP, +OGP:SA:10190,1,"Les Portes du Futur",46.645085,0.361538,,1,,Europe/Paris,,OGP, +OGP:SA:10191,1,"Lanaja",46.645812,0.363942,,1,,Europe/Paris,,OGP, +OGP:SA:10192,1,"Rue du Commerce",46.648766,0.36338,,1,,Europe/Paris,,OGP, +OGP:SA:10193,1,"Les Glycines",46.652727,0.367441,,1,,Europe/Paris,,OGP, +OGP:SA:10194,1,"Centre Equestre",46.565745,0.394892,,1,,Europe/Paris,,OGP, +OGP:SA:10196,1,"Rosiers",46.570679,0.37598,,1,,Europe/Paris,,OGP, +OGP:SA:10198,1,"Pierre Levée",46.572854,0.365999,,1,,Europe/Paris,,OGP, +OGP:SA:10199,1,"Petit Tour",46.572727,0.362543,,1,,Europe/Paris,,OGP, +OGP:SA:10200,1,"Confort Moderne",46.572456,0.359262,,1,,Europe/Paris,,OGP, +OGP:SA:10201,1,"Châtonnerie",46.573855,0.356257,,1,,Europe/Paris,,OGP, +OGP:SA:10202,1,"La Croix",46.575209,0.354688,,1,,Europe/Paris,,OGP, +OGP:SA:10203,1,"Pasteur",46.576839,0.35261,,1,,Europe/Paris,,OGP, +OGP:SA:10204,1,"Breuil Mingot",46.589944,0.405193,,1,,Europe/Paris,,OGP, +OGP:SA:10205,1,"Bois Jallais",46.587534,0.398409,,1,,Europe/Paris,,OGP, +OGP:SA:10206,1,"Route de Bonnes",46.585616,0.395044,,1,,Europe/Paris,,OGP, +OGP:SA:10207,1,"Petit Breuil",46.585048,0.386519,,1,,Europe/Paris,,OGP, +OGP:SA:10208,1,"DDASS",46.575832,0.368658,,1,,Europe/Paris,,OGP, +OGP:SA:10209,1,"Catroux",46.575106,0.36644,,1,,Europe/Paris,,OGP, +OGP:SA:10210,1,"Cité Maître",46.575773,0.364512,,1,,Europe/Paris,,OGP, +OGP:SA:10211,1,"Dolmen",46.57874,0.36808,,1,,Europe/Paris,,OGP, +OGP:SA:10212,1,"Brunettes",46.581119,0.365063,,1,,Europe/Paris,,OGP, +OGP:SA:10216,1,"Pont Joubert",46.580051,0.352788,,1,,Europe/Paris,,OGP, +OGP:SA:10217,1,"Milétrie Beauchant",46.55548,0.386568,,1,,Europe/Paris,,OGP, +OGP:SA:10218,1,"Milétrie Rond-Point",46.557621,0.389285,,1,,Europe/Paris,,OGP, +OGP:SA:10219,1,"Tour Jean Bernard",46.560851,0.386276,,1,,Europe/Paris,,OGP, +OGP:SA:10220,1,"Faculté Médecine",46.56274,0.380745,,1,,Europe/Paris,,OGP, +OGP:SA:10221,1,"Petits Champs",46.56422,0.380897,,1,,Europe/Paris,,OGP, +OGP:SA:10222,1,"Aubépines",46.565747,0.378367,,1,,Europe/Paris,,OGP, +OGP:SA:10223,1,"Gymnase",46.567039,0.376266,,1,,Europe/Paris,,OGP, +OGP:SA:10224,1,"Bosquets",46.56851,0.373898,,1,,Europe/Paris,,OGP, +OGP:SA:10225,1,"Château d'eau",46.566151,0.317442,,1,,Europe/Paris,,OGP, +OGP:SA:10226,1,"Bellejouanne",46.567045,0.312433,,1,,Europe/Paris,,OGP, +OGP:SA:10227,1,"Auberge de Jeunesse",46.565627,0.312616,,1,,Europe/Paris,,OGP, +OGP:SA:10228,1,"Blaise Pascal",46.563453,0.311626,,1,,Europe/Paris,,OGP, +OGP:SA:10229,1,"Prés Mignons",46.562402,0.308921,,1,,Europe/Paris,,OGP, +OGP:SA:10230,1,"Pierre Loti",46.563068,0.307402,,1,,Europe/Paris,,OGP, +OGP:SA:10232,1,"Bois de Sapin",46.568447,0.3108,,1,,Europe/Paris,,OGP, +OGP:SA:10233,1,"Guillaume Poulle",46.569515,0.312385,,1,,Europe/Paris,,OGP, +OGP:SA:10234,1,"Petit Ruisseau",46.569842,0.314759,,1,,Europe/Paris,,OGP, +OGP:SA:10235,1,"Petites Vallées",46.569186,0.317666,,1,,Europe/Paris,,OGP, +OGP:SA:10236,1,"Avenue du Parc",46.576813,0.313317,,1,,Europe/Paris,,OGP, +OGP:SA:10238,1,"Langevin",46.578969,0.323709,,1,,Europe/Paris,,OGP, +OGP:SA:10239,1,"Montgorges",46.581414,0.325524,,1,,Europe/Paris,,OGP, +OGP:SA:10240,1,"Colonel Biraud",46.583469,0.325546,,1,,Europe/Paris,,OGP, +OGP:SA:10241,1,"Capitaine Bes",46.586643,0.326221,,1,,Europe/Paris,,OGP, +OGP:SA:10242,1,"Cité Bel Air",46.589934,0.325085,,1,,Europe/Paris,,OGP, +OGP:SA:10244,1,"Frères Morane",46.590694,0.322845,,1,,Europe/Paris,,OGP, +OGP:SA:10245,1,"La Blaiserie",46.592232,0.321085,,1,,Europe/Paris,,OGP, +OGP:SA:10246,1,"Dieudonné Costes",46.5949,0.327213,,1,,Europe/Paris,,OGP, +OGP:SA:10248,1,"Les Lonjoies",46.559136,0.343416,,1,,Europe/Paris,,OGP, +OGP:SA:10249,1,"Cybellerie",46.555451,0.342144,,1,,Europe/Paris,,OGP, +OGP:SA:10250,1,"Irma Jouenne",46.553364,0.34191,,1,,Europe/Paris,,OGP, +OGP:SA:10251,1,"St-Benoît Bourg",46.549676,0.342126,,1,,Europe/Paris,,OGP, +OGP:SA:10252,1,"Bergeottes",46.547078,0.344466,,1,,Europe/Paris,,OGP, +OGP:SA:10254,1,"Charmilles",46.54998,0.348385,,1,,Europe/Paris,,OGP, +OGP:SA:10255,1,"Les Buis",46.551486,0.347947,,1,,Europe/Paris,,OGP, +OGP:SA:10256,1,"Saint-Benoit",46.552586,0.352281,,1,,Europe/Paris,,OGP, +OGP:SA:10257,1,"France Bloch Serazin",46.571308,0.387774,,1,,Europe/Paris,,OGP, +OGP:SA:10258,1,"Breuil l'Abbesse",46.562995,0.40867,,1,,Europe/Paris,,OGP, +OGP:SA:10259,1,"Buxerolles Rond-Point",46.611928,0.367134,,1,,Europe/Paris,,OGP, +OGP:SA:10261,1,"Les Bizais",46.598325,0.364197,,1,,Europe/Paris,,OGP, +OGP:SA:10262,1,"Marat",46.586283,0.379292,,1,,Europe/Paris,,OGP, +OGP:SA:10263,1,"St-Jacques de Compostelle",46.585221,0.381682,,1,,Europe/Paris,,OGP, +OGP:SA:10264,1,"Rue Milétrie",46.560424,0.377239,,1,,Europe/Paris,,OGP, +OGP:SA:10265,1,"La Rochefoucauld",46.56175,0.372734,,1,,Europe/Paris,,OGP, +OGP:SA:10266,1,"Gibauderie",46.561936,0.369486,,1,,Europe/Paris,,OGP, +OGP:SA:10267,1,"Providence",46.56355,0.367233,,1,,Europe/Paris,,OGP, +OGP:SA:10268,1,"Grand Large",46.563428,0.363836,,1,,Europe/Paris,,OGP, +OGP:SA:10269,1,"Beaupré",46.563129,0.360983,,1,,Europe/Paris,,OGP, +OGP:SA:10270,1,"Rocfer",46.563242,0.356962,,1,,Europe/Paris,,OGP, +OGP:SA:10271,1,"Rapiettes",46.5659,0.356631,,1,,Europe/Paris,,OGP, +OGP:SA:10272,1,"Ronsard",46.56979,0.350642,,1,,Europe/Paris,,OGP, +OGP:SA:10273,1,"Marie Curie",46.570151,0.348128,,1,,Europe/Paris,,OGP, +OGP:SA:10274,1,"Sablette",46.568128,0.343276,,1,,Europe/Paris,,OGP, +OGP:SA:10275,1,"Jean Gabin",46.554223,0.317273,,1,,Europe/Paris,,OGP, +OGP:SA:10276,1,"Descartes",46.566264,0.386931,,1,,Europe/Paris,,OGP, +OGP:SA:10277,1,"Pôle Technologique",46.5642,0.382779,,1,,Europe/Paris,,OGP, +OGP:SA:10278,1,"Jules Verne",46.596561,0.355925,,1,,Europe/Paris,,OGP, +OGP:SA:10280,1,"Vallée des Touches",46.560566,0.427777,,1,,Europe/Paris,,OGP, +OGP:SA:10281,1,"Oriollères",46.558088,0.426256,,1,,Europe/Paris,,OGP, +OGP:SA:10282,1,"Pinaudières",46.555149,0.424503,,1,,Europe/Paris,,OGP, +OGP:SA:10283,1,"Sainte Jeanne",46.55054,0.419566,,1,,Europe/Paris,,OGP, +OGP:SA:10284,1,"Eglise Mignaloux",46.544132,0.414539,,1,,Europe/Paris,,OGP, +OGP:SA:10285,1,"Bois Joli",46.548229,0.4048,,1,,Europe/Paris,,OGP, +OGP:SA:10286,1,"Les Davitaires",46.546161,0.406323,,1,,Europe/Paris,,OGP, +OGP:SA:10287,1,"Chemin de Beaubaton",46.54447,0.407408,,1,,Europe/Paris,,OGP, +OGP:SA:10288,1,"La Dinière",46.599902,0.373532,,1,,Europe/Paris,,OGP, +OGP:SA:10289,1,"Tilleuls",46.603036,0.37691,,1,,Europe/Paris,,OGP, +OGP:SA:10291,1,"Vallée de Lion",46.618349,0.393921,,1,,Europe/Paris,,OGP, +OGP:SA:10292,1,"La Germonière",46.618009,0.398384,,1,,Europe/Paris,,OGP, +OGP:SA:10293,1,"Barillon",46.618117,0.404451,,1,,Europe/Paris,,OGP, +OGP:SA:10294,1,"Bourbias 2",46.619531,0.408751,,1,,Europe/Paris,,OGP, +OGP:SA:10295,1,"La Gravière",46.617885,0.418864,,1,,Europe/Paris,,OGP, +OGP:SA:10297,1,"Mairie Montamisé",46.621072,0.421929,,1,,Europe/Paris,,OGP, +OGP:SA:10299,1,"Rue du Quéroir",46.62201,0.42755,,1,,Europe/Paris,,OGP, +OGP:SA:10301,1,"Tronc",46.622798,0.446986,,1,,Europe/Paris,,OGP, +OGP:SA:10302,1,"Montamisé-Charassé",46.627594,0.461838,,1,,Europe/Paris,,OGP, +OGP:SA:10303,1,"Les Rocs",46.587682,0.33323,,1,,Europe/Paris,,OGP, +OGP:SA:10304,1,"Louis Vierne",46.589924,0.333349,,1,,Europe/Paris,,OGP, +OGP:SA:10305,1,"Chaumont",46.557929,0.307172,,1,,Europe/Paris,,OGP, +OGP:SA:10309,1,"Haut Ensoulesse",46.638961,0.401197,,1,,Europe/Paris,,OGP, +OGP:SA:10310,1,"Bas Ensoulesse",46.637807,0.397225,,1,,Europe/Paris,,OGP, +OGP:SA:10311,1,"Ensoulesse",46.63477,0.398837,,1,,Europe/Paris,,OGP, +OGP:SA:10312,1,"L'Abbaye",46.633199,0.400977,,1,,Europe/Paris,,OGP, +OGP:SA:10313,1,"Sarzec",46.623517,0.40861,,1,,Europe/Paris,,OGP, +OGP:SA:10314,1,"La Richardière",46.619981,0.402246,,1,,Europe/Paris,,OGP, +OGP:SA:10315,1,"Chiron Ferré",46.607116,0.405976,,1,,Europe/Paris,,OGP, +OGP:SA:10316,1,"Petit Nieul",46.611758,0.40332,,1,,Europe/Paris,,OGP, +OGP:SA:10317,1,"Mervant",46.595919,0.404859,,1,,Europe/Paris,,OGP, +OGP:SA:10335,1,"Beauvoir",46.609585,0.263153,,1,,Europe/Paris,,OGP, +OGP:SA:10340,1,"Rabelais",46.56992,0.379218,,1,,Europe/Paris,,OGP, +OGP:SA:10341,1,"Le Parc",46.542987,0.411596,,1,,Europe/Paris,,OGP, +OGP:SA:10344,1,"Mairie Mignaloux",46.541652,0.414708,,1,,Europe/Paris,,OGP, +OGP:SA:10345,1,"Les Chênes",46.543342,0.409804,,1,,Europe/Paris,,OGP, +OGP:SA:10346,1,"Rue des Joncs",46.560258,0.310666,,1,,Europe/Paris,,OGP, +OGP:SA:10347,1,"Le Relais",46.639484,0.358958,,1,,Europe/Paris,,OGP, +OGP:SA:10348,1,"Fontaine-Les Vignes",46.537839,0.27709,,1,,Europe/Paris,,OGP, +OGP:SA:10349,1,"Chaumont",46.537311,0.272357,,1,,Europe/Paris,,OGP, +OGP:SA:10350,1,"Clos Bonnet",46.608924,0.266734,,1,,Europe/Paris,,OGP, +OGP:SA:10351,1,"Jacques Yves Cousteau",46.605348,0.275881,,1,,Europe/Paris,,OGP, +OGP:SA:10352,1,"Vouneuil-CREPS",46.580967,0.262963,,1,,Europe/Paris,,OGP, +OGP:SA:10353,1,"Malakoff",46.526724,0.26533,,1,,Europe/Paris,,OGP, +OGP:SA:10354,1,"Les Feuillants",46.526918,0.270965,,1,,Europe/Paris,,OGP, +OGP:SA:10355,1,"Chanteloup",46.585355,0.272484,,1,,Europe/Paris,,OGP, +OGP:SA:10356,1,"Migné Limbre",46.624217,0.272189,,1,,Europe/Paris,,OGP, +OGP:SA:10357,1,"Ecole de Limbre",46.625267,0.280716,,1,,Europe/Paris,,OGP, +OGP:SA:10359,1,"Les Douves",46.637044,0.405217,,1,,Europe/Paris,,OGP, +OGP:SA:10361,1,"Mairie Vouneuil",46.572674,0.273231,,1,,Europe/Paris,,OGP, +OGP:SA:10362,1,"Val de Boivre",46.568864,0.272638,,1,,Europe/Paris,,OGP, +OGP:SA:10363,1,"La Gouraudière",46.567739,0.273276,,1,,Europe/Paris,,OGP, +OGP:SA:10364,1,"La Grand Vallée",46.562743,0.278849,,1,,Europe/Paris,,OGP, +OGP:SA:10365,1,"La Gannerie",46.560779,0.284819,,1,,Europe/Paris,,OGP, +OGP:SA:10366,1,"La Nougeraie",46.56144,0.294522,,1,,Europe/Paris,,OGP, +OGP:SA:10367,1,"Pré Oté",46.558557,0.288789,,1,,Europe/Paris,,OGP, +OGP:SA:10371,1,"Palais Congrès",46.660381,0.365388,,1,,Europe/Paris,,OGP, +OGP:SA:10372,1,"1ère Avenue",46.658236,0.363654,,1,,Europe/Paris,,OGP, +OGP:SA:10373,1,"Parc de Loisirs",46.665428,0.358151,,1,,Europe/Paris,,OGP, +OGP:SA:10375,1,"Nelson Mandela",46.588519,0.371305,,1,,Europe/Paris,,OGP, +OGP:SA:10376,1,"Anatole France",46.577097,0.347398,,1,,Europe/Paris,,OGP, +OGP:SA:10377,1,"Téléport 2",46.662836,0.358379,,1,,Europe/Paris,,OGP, +OGP:SA:10378,1,"Av. Paix",46.58827,0.335453,,1,,Europe/Paris,,OGP, +OGP:SA:10379,1,"Les Roitelets",46.57304,0.271207,,1,,Europe/Paris,,OGP, +OGP:SA:10380,1,"Vouneuil Boivre",46.577197,0.272475,,1,,Europe/Paris,,OGP, +OGP:SA:10381,1,"Deux Mazais",46.569544,0.298457,,1,,Europe/Paris,,OGP, +OGP:SA:10382,1,"Jupiter",46.537552,0.268415,,1,,Europe/Paris,,OGP, +OGP:SA:10383,1,"Rue du stade",46.532603,0.26431,,1,,Europe/Paris,,OGP, +OGP:SA:10384,1,"Baudry",46.534101,0.260892,,1,,Europe/Paris,,OGP, +OGP:SA:10385,1,"Liberté",46.534187,0.259472,,1,,Europe/Paris,,OGP, +OGP:SA:10386,1,"Les Lilas",46.530775,0.262443,,1,,Europe/Paris,,OGP, +OGP:SA:10387,1,"Fontaine Aquitaine",46.530399,0.279027,,1,,Europe/Paris,,OGP, +OGP:SA:10388,1,"Tamaris",46.607066,0.271802,,1,,Europe/Paris,,OGP, +OGP:SA:10389,1,"Le Petit Bois",46.603298,0.28284,,1,,Europe/Paris,,OGP, +OGP:SA:10390,1,"La Cadoue Larnay",46.59868,0.302563,,1,,Europe/Paris,,OGP, +OGP:SA:10391,1,"Rue du Moulin",46.630363,0.279656,,1,,Europe/Paris,,OGP, +OGP:SA:10392,1,"Les Boisses",46.624029,0.270936,,1,,Europe/Paris,,OGP, +OGP:SA:10393,1,"Moulinet",46.617173,0.280564,,1,,Europe/Paris,,OGP, +OGP:SA:10394,1,"Les Tailles",46.612391,0.279874,,1,,Europe/Paris,,OGP, +OGP:SA:10395,1,"Rue du Temps Perdu",46.628884,0.334446,,1,,Europe/Paris,,OGP, +OGP:SA:10396,1,"Lavaud",46.629099,0.331855,,1,,Europe/Paris,,OGP, +OGP:SA:10397,1,"Pont Chardonchamp",46.632154,0.332944,,1,,Europe/Paris,,OGP, +OGP:SA:10398,1,"Nanteuil",46.633958,0.329908,,1,,Europe/Paris,,OGP, +OGP:SA:10399,1,"Migné Rochereaux",46.632707,0.323895,,1,,Europe/Paris,,OGP, +OGP:SA:10400,1,"Opales",46.631176,0.322716,,1,,Europe/Paris,,OGP, +OGP:SA:10401,1,"Tourmaline",46.628766,0.318153,,1,,Europe/Paris,,OGP, +OGP:SA:10402,1,"Rue du Centre",46.626832,0.31097,,1,,Europe/Paris,,OGP, +OGP:SA:10403,1,"République",46.62655,0.306519,,1,,Europe/Paris,,OGP, +OGP:SA:10404,1,"La Garenne",46.623191,0.309032,,1,,Europe/Paris,,OGP, +OGP:SA:10405,1,"Stade Auxances",46.619411,0.311821,,1,,Europe/Paris,,OGP, +OGP:SA:10408,1,"La Bugellerie",46.603245,0.323228,,1,,Europe/Paris,,OGP, +OGP:SA:10409,1,"Cussec",46.593752,0.405524,,1,,Europe/Paris,,OGP, +OGP:SA:10410,1,"La Hune",46.557483,0.343632,,1,,Europe/Paris,,OGP, +OGP:SA:10413,1,"Les Rataudes",46.562413,0.306583,,1,,Europe/Paris,,OGP, +OGP:SA:10415,1,"Actiparc Tardiverie",46.601591,0.305188,,1,,Europe/Paris,,OGP, +OGP:SA:10417,1,"Merles Noirs",46.568213,0.301155,,1,,Europe/Paris,,OGP, +OGP:SA:10422,1,"Pourettes",46.621284,0.275697,,1,,Europe/Paris,,OGP, +OGP:SA:10423,1,"Grotte des Druides",46.586636,0.335185,,1,,Europe/Paris,,OGP, +OGP:SA:10428,1,"Chardonchamp",46.626463,0.340897,,1,,Europe/Paris,,OGP, +OGP:SA:10434,1,"Maison des Etudiants",46.5681,0.38687,,1,,Europe/Paris,,OGP, +OGP:SA:10435,1,"Milétrie Laborit",46.554147,0.394656,,1,,Europe/Paris,,OGP, +OGP:SA:10436,1,"Curé Jacquet",46.560581,0.408641,,1,,Europe/Paris,,OGP, +OGP:SA:10437,1,"Sainte Croix",46.558154,0.402259,,1,,Europe/Paris,,OGP, +OGP:SA:10438,1,"Sachères",46.552059,0.409757,,1,,Europe/Paris,,OGP, +OGP:SA:10439,1,"Mignaloux Aquitaine",46.537207,0.415683,,1,,Europe/Paris,,OGP, +OGP:SA:10440,1,"Le Mars",46.533656,0.41638,,1,,Europe/Paris,,OGP, +OGP:SA:10441,1,"La Rouartinière",46.531001,0.417537,,1,,Europe/Paris,,OGP, +OGP:SA:10442,1,"Gros Puits",46.528407,0.418352,,1,,Europe/Paris,,OGP, +OGP:SA:10444,1,"Mignaloux Gare",46.526037,0.411204,,1,,Europe/Paris,,OGP, +OGP:SA:10450,1,"Les Roches de Vert",46.661826,0.381154,,1,,Europe/Paris,,OGP, +OGP:SA:10451,1,"Vercors",46.52803,0.273709,,1,,Europe/Paris,,OGP, +OGP:SA:10453,1,"Milétrie Claudel",46.554639,0.388801,,1,,Europe/Paris,,OGP, +OGP:SA:10454,1,"Av. Temps Modernes",46.662918,0.372765,,1,,Europe/Paris,,OGP, +OGP:SA:10455,1,"Gare du Futuroscope",46.669308,0.377276,,1,,Europe/Paris,,OGP, +OGP:SA:10456,1,"Parc Futuroscope",46.666149,0.368439,,1,,Europe/Paris,,OGP, +OGP:SA:10457,1,"Couronneries",46.594102,0.367676,,1,,Europe/Paris,,OGP, +OGP:SA:10458,1,"Châlons",46.583059,0.38117,,1,,Europe/Paris,,OGP, +OGP:SA:10459,1,"Frères Lumière",46.609722,0.364809,,1,,Europe/Paris,,OGP, +OGP:SA:10460,1,"Botte Molle",46.569431,0.343128,,1,,Europe/Paris,,OGP, +OGP:SA:10462,1,"Le Cherpe",46.54626,0.347496,,1,,Europe/Paris,,OGP, +OGP:SA:10463,1,"François Mitterrand",46.597921,0.367791,,1,,Europe/Paris,,OGP, +OGP:SA:10465,1,"Place Mozart",46.599599,0.354167,,1,,Europe/Paris,,OGP, +OGP:SA:10467,1,"Acadie",46.56999,0.352095,,1,,Europe/Paris,,OGP, +OGP:SA:10468,1,"Av. de l'Europe",46.659866,0.370419,,1,,Europe/Paris,,OGP, +OGP:SA:10469,1,"Alfred de Vigny",46.598741,0.361504,,1,,Europe/Paris,,OGP, +OGP:SA:10471,1,"Pôle Formation Santé",46.556457,0.384548,,1,,Europe/Paris,,OGP, +OGP:SA:10472,1,"Pinel",46.55488,0.390925,,1,,Europe/Paris,,OGP, +OGP:SA:10475,1,"Les Bleuets",46.548187,0.326541,,1,,Europe/Paris,,OGP, +OGP:SA:10476,1,"Coquelicots",46.549576,0.327165,,1,,Europe/Paris,,OGP, +OGP:SA:10477,1,"Hauts de la Chaume",46.55025,0.32909,,1,,Europe/Paris,,OGP, +OGP:SA:10480,1,"Mairie Fontaine",46.534475,0.266545,,1,,Europe/Paris,,OGP, +OGP:SA:10481,1,"Le Grand Mazais",46.566516,0.296746,,1,,Europe/Paris,,OGP, +OGP:SA:10482,1,"Les Castors",46.594886,0.353837,,1,,Europe/Paris,,OGP, +OGP:SA:10483,1,"Mérigotte",46.560944,0.342977,,1,,Europe/Paris,,OGP, +OGP:SA:10484,1,"Les 3 Barreaux",46.621968,0.432191,,1,,Europe/Paris,,OGP, +OGP:SA:10486,1,"Centre Commercial",46.666813,0.369579,,1,,Europe/Paris,,OGP, +OGP:SA:10487,1,"Rond-Point",46.667043,0.376158,,1,,Europe/Paris,,OGP, +OGP:SA:10488,1,"Foyer Edith Augustin",46.592647,0.322247,,1,,Europe/Paris,,OGP, +OGP:SA:10491,1,"La Berlanderie",46.545511,0.289,,1,,Europe/Paris,,OGP, +OGP:SA:10492,1,"Croutelle les Hauts",46.543162,0.289163,,1,,Europe/Paris,,OGP, +OGP:SA:10494,1,"Petit Bonneveau",46.578153,0.338967,,1,,Europe/Paris,,OGP, +OGP:SA:10498,1,"Milétrie Patis",46.55568,0.394727,,1,,Europe/Paris,,OGP, +OGP:SA:10501,1,"Gustave Eiffel",46.659169,0.360952,,1,,Europe/Paris,,OGP, +OGP:SA:10504,1,"Chandon",46.649161,0.369596,,1,,Europe/Paris,,OGP, +OGP:SA:10518,1,"Margouillet",46.565502,0.401875,,1,,Europe/Paris,,OGP, +OGP:SA:10521,1,"Bailly",46.591588,0.384368,,1,,Europe/Paris,,OGP, +OGP:SA:10523,1,"Martigny",46.658624,0.338276,,1,,Europe/Paris,,OGP, +OGP:SA:10524,1,"Philambins",46.640987,0.355192,,1,,Europe/Paris,,OGP, +OGP:SA:10525,1,"Preuilly",46.64046,0.35515,,1,,Europe/Paris,,OGP, +OGP:SA:10526,1,"Fontaine",46.64682,0.382619,,1,,Europe/Paris,,OGP, +OGP:SA:10527,1,"Rue de la Barre",46.611215,0.355704,,1,,Europe/Paris,,OGP, +OGP:SA:10528,1,"Berges du Clain",46.61351,0.357198,,1,,Europe/Paris,,OGP, +OGP:SA:10529,1,"Clotet",46.617613,0.359144,,1,,Europe/Paris,,OGP, +OGP:SA:10530,1,"Route de Clotet",46.620655,0.361047,,1,,Europe/Paris,,OGP, +OGP:SA:10531,1,"Laiterie",46.623344,0.362764,,1,,Europe/Paris,,OGP, +OGP:SA:10532,1,"Bonnillet",46.630794,0.369215,,1,,Europe/Paris,,OGP, +OGP:SA:10533,1,"L'Etang",46.644512,0.380537,,1,,Europe/Paris,,OGP, +OGP:SA:10536,1,"Route de Béruges",46.536812,0.257663,,1,,Europe/Paris,,OGP, +OGP:SA:10537,1,"La Bruère",46.538406,0.25418,,1,,Europe/Paris,,OGP, +OGP:SA:10538,1,"La Devinalière",46.544343,0.249911,,1,,Europe/Paris,,OGP, +OGP:SA:10539,1,"Grange Neuve",46.543992,0.258252,,1,,Europe/Paris,,OGP, +OGP:SA:10540,1,"Rte de Poitiers - Rouerie",46.543401,0.281356,,1,,Europe/Paris,,OGP, +OGP:SA:10541,1,"Route de la Vallée",46.533939,0.269855,,1,,Europe/Paris,,OGP, +OGP:SA:10542,1,"L'Audemont",46.532576,0.280682,,1,,Europe/Paris,,OGP, +OGP:SA:10545,1,"Place d'Ivoy",46.535469,0.286222,,1,,Europe/Paris,,OGP, +OGP:SA:10546,1,"Grand Rue",46.538419,0.288626,,1,,Europe/Paris,,OGP, +OGP:SA:10547,1,"La Belletière",46.621555,0.315665,,1,,Europe/Paris,,OGP, +OGP:SA:10548,1,"Dr Mesmain",46.631098,0.302919,,1,,Europe/Paris,,OGP, +OGP:SA:10549,1,"Guille Belette",46.635789,0.310223,,1,,Europe/Paris,,OGP, +OGP:SA:10550,1,"Les Vignes",46.632411,0.320111,,1,,Europe/Paris,,OGP, +OGP:SA:10551,1,"Les Coudres",46.625014,0.304366,,1,,Europe/Paris,,OGP, +OGP:SA:10552,1,"Les Groges",46.557727,0.360309,,1,,Europe/Paris,,OGP, +OGP:SA:10553,1,"Berlonnière",46.555496,0.370935,,1,,Europe/Paris,,OGP, +OGP:SA:10554,1,"Le Portail",46.54271,0.382388,,1,,Europe/Paris,,OGP, +OGP:SA:10555,1,"Flée",46.541005,0.373406,,1,,Europe/Paris,,OGP, +OGP:SA:10556,1,"La Cadoullière",46.538295,0.363625,,1,,Europe/Paris,,OGP, +OGP:SA:10557,1,"La Cossonnière",46.540936,0.354911,,1,,Europe/Paris,,OGP, +OGP:SA:10558,1,"Mauroc",46.543808,0.345465,,1,,Europe/Paris,,OGP, +OGP:SA:10559,1,"Les Grottes",46.549647,0.34049,,1,,Europe/Paris,,OGP, +OGP:SA:10560,1,"Passelourdain",46.5495,0.341055,,1,,Europe/Paris,,OGP, +OGP:SA:10561,1,"Champs de Pierre",46.557622,0.349424,,1,,Europe/Paris,,OGP, +OGP:SA:10562,1,"Général De Gaulle",46.558855,0.354223,,1,,Europe/Paris,,OGP, +OGP:SA:10563,1,"Rue d'Artimon",46.562664,0.356115,,1,,Europe/Paris,,OGP, +OGP:SA:10564,1,"Champ Berland",46.612415,0.41258,,1,,Europe/Paris,,OGP, +OGP:SA:10565,1,"Les Bruères",46.553952,0.440748,,1,,Europe/Paris,,OGP, +OGP:SA:10566,1,"Grands Bois",46.552104,0.438885,,1,,Europe/Paris,,OGP, +OGP:SA:10567,1,"Chemin Porchaire",46.550658,0.435322,,1,,Europe/Paris,,OGP, +OGP:SA:10568,1,"Collége des Moreaux",46.548611,0.432614,,1,,Europe/Paris,,OGP, +OGP:SA:10569,1,"Le Golf",46.532308,0.424504,,1,,Europe/Paris,,OGP, +OGP:SA:10573,1,"L'Aumône",46.575442,0.186069,,1,,Europe/Paris,,OGP, +OGP:SA:10574,1,"Bourgversé",46.562193,0.200763,,1,,Europe/Paris,,OGP, +OGP:SA:10575,1,"Le Champ de la Plaine",46.549818,0.197364,,1,,Europe/Paris,,OGP, +OGP:SA:10576,1,"Boussais",46.576883,0.225447,,1,,Europe/Paris,,OGP, +OGP:SA:10577,1,"Passerelle Accès SNCF",46.582679,0.335182,,1,,Europe/Paris,,OGP, +OGP:SA:10578,1,"Montamisé Fousserettes",46.625858,0.434472,,1,,Europe/Paris,,OGP, +OGP:SA:10579,1,"Poitiers Sud",46.552951,0.301723,,1,,Europe/Paris,,OGP, +OGP:SA:10580,1,"Fraternité",46.587836,0.381242,,1,,Europe/Paris,,OGP, +OGP:SA:10581,1,"Kyoto",46.589771,0.383039,,1,,Europe/Paris,,OGP, +OGP:SA:10582,1,"Saint-Just",46.592173,0.382779,,1,,Europe/Paris,,OGP, +OGP:SA:10588,1,"Rte de Poitiers - Rocade",46.555731,0.303191,,1,,Europe/Paris,,OGP, +OGP:SA:10590,1,"Les Frênes",46.644764,0.357111,,1,,Europe/Paris,,OGP, +OGP:SA:10591,1,"Les Hêtres",46.64258,0.35608,,1,,Europe/Paris,,OGP, +OGP:SA:10592,1,"Rue des Chaumes",46.538926,0.269166,,1,,Europe/Paris,,OGP, +OGP:SA:10593,1,"Briquetterie",46.582685,0.187282,,1,,Europe/Paris,,OGP, +OGP:SA:10594,1,"Béruges Stade",46.569021,0.197865,,1,,Europe/Paris,,OGP, +OGP:SA:10596,1,"Mairie Béruges",46.567515,0.206563,,1,,Europe/Paris,,OGP, +OGP:SA:10597,1,"Route de Sanxay",46.549298,0.20924,,1,,Europe/Paris,,OGP, +OGP:SA:10598,1,"Le Lac",46.553147,0.218396,,1,,Europe/Paris,,OGP, +OGP:SA:10599,1,"La Bourdilière",46.572378,0.216172,,1,,Europe/Paris,,OGP, +OGP:SA:10603,1,"Saint-Laurent",46.584045,0.180448,,1,,Europe/Paris,,OGP, +OGP:SA:10604,1,"Rue du Bois d'Amour",46.555341,0.309882,,1,,Europe/Paris,,OGP, +OGP:SA:10605,1,"Simone Gault",46.623429,0.429611,,1,,Europe/Paris,,OGP, +OGP:SA:10606,1,"Le Bas Village",46.659328,0.340637,,1,,Europe/Paris,,OGP, +OGP:SA:10619,1,"Route de Savigny",46.545721,0.429263,,1,,Europe/Paris,,OGP, +OGP:SA:10624,1,"Chemin des 3 Thuets",46.546197,0.246492,,1,,Europe/Paris,,OGP, +OGP:SA:10625,1,"Le Poizac",46.545226,0.24423,,1,,Europe/Paris,,OGP, +OGP:SA:10626,1,"Les Champs Blancs",46.547157,0.244679,,1,,Europe/Paris,,OGP, +OGP:SA:10646,1,"Paul Brault",46.635289,0.318431,,1,,Europe/Paris,,OGP, +OGP:SA:10647,1,"Les Fougères",46.634175,0.319891,,1,,Europe/Paris,,OGP, +OGP:SA:10649,1,"Martouret",46.631309,0.300738,,1,,Europe/Paris,,OGP, +OGP:SA:10650,1,"Demarçay",46.635736,0.334198,,1,,Europe/Paris,,OGP, +OGP:SA:10651,1,"Moulin Neuf",46.641881,0.338521,,1,,Europe/Paris,,OGP, +OGP:SA:10652,1,"Le Pontrau",46.642673,0.343335,,1,,Europe/Paris,,OGP, +OGP:SA:10653,1,"Le Square",46.55293,0.349699,,1,,Europe/Paris,,OGP, +OGP:SA:10654,1,"Petit Saint-Benoît",46.552549,0.349834,,1,,Europe/Paris,,OGP, +OGP:SA:10655,1,"Puy-Joubert",46.552625,0.349609,,1,,Europe/Paris,,OGP, +OGP:SA:10656,1,"Fontarnaud",46.553058,0.349855,,1,,Europe/Paris,,OGP, +OGP:SA:10668,1,"Porte d'Auxance",46.614143,0.315801,,1,,Europe/Paris,,OGP, +OGP:SA:10669,1,"Bigotterie",46.580821,0.189376,,1,,Europe/Paris,,OGP, +OGP:SA:10670,1,"Rte de la Vallée(le Parc)",46.530001,0.267227,,1,,Europe/Paris,,OGP, +OGP:SA:10677,1,"Tassigny",46.58461,0.351421,,1,,Europe/Paris,,OGP, +OGP:SA:10681,1,"Pétonnet Hulin 4",46.583041,0.341131,,1,,Europe/Paris,,OGP, +OGP:SA:10682,1,"Pôle Boncenne",46.583472,0.340639,,1,,Europe/Paris,,OGP, +OGP:SA:10685,1,"Gare Pont Achard",46.581272,0.333174,,1,,Europe/Paris,,OGP, +OGP:SA:10686,1,"Isaac",46.603257,0.343194,,1,,Europe/Paris,,OGP, +OGP:SA:10696,1,"Ecossais",46.581507,0.337013,,1,,Europe/Paris,,OGP, +OGP:SA:10697,1,"Charletterie",46.589822,0.368981,,1,,Europe/Paris,,OGP, +OGP:SA:10702,1,"Vélodrome",46.593616,0.366307,,1,,Europe/Paris,,OGP, +OGP:SA:10703,1,"Carnot",46.578434,0.337776,,1,,Europe/Paris,,OGP, +OGP:SA:10704,1,"Magenta",46.577987,0.339104,,1,,Europe/Paris,,OGP, +OGP:SA:10705,1,"Victor Hugo",46.58044,0.339059,,1,,Europe/Paris,,OGP, +OGP:SA:10707,1,"Longères",46.611375,0.399434,,1,,Europe/Paris,,OGP, +OGP:SA:10712,1,"Rte de Gencay",46.568187,0.357712,,1,,Europe/Paris,,OGP, +OGP:SA:10713,1,"Victor Schoelcher",46.56068,0.371891,,1,,Europe/Paris,,OGP, +OGP:SA:10719,1,"Bonne Nouvelle",46.559392,0.375075,,1,,Europe/Paris,,OGP, +OGP:SA:10722,1,"Louis Braille",46.55418,0.314695,,1,,Europe/Paris,,OGP, +OGP:SA:10726,1,"Brassaise",46.521931,0.306542,,1,,Europe/Paris,,OGP, +OGP:SA:10727,1,"Deux Croix",46.525653,0.321258,,1,,Europe/Paris,,OGP, +OGP:SA:10728,1,"Imprimerie",46.520234,0.31873,,1,,Europe/Paris,,OGP, +OGP:SA:10729,1,"Bois Renard",46.520663,0.322487,,1,,Europe/Paris,,OGP, +OGP:SA:10730,1,"Champ Rouge",46.520559,0.325364,,1,,Europe/Paris,,OGP, +OGP:SA:10731,1,"Givray",46.521432,0.330483,,1,,Europe/Paris,,OGP, +OGP:SA:10732,1,"Jardin Sonning",46.518524,0.330911,,1,,Europe/Paris,,OGP, +OGP:SA:10733,1,"Ligugé Gare",46.519639,0.332731,,1,,Europe/Paris,,OGP, +OGP:SA:10737,1,"Recteur Pineau",46.571533,0.372197,,1,,Europe/Paris,,OGP, +OGP:SA:10738,1,"Jacques Coeur",46.570946,0.369955,,1,,Europe/Paris,,OGP, +OGP:SA:10739,1,"Pétonnet Hulin 3",46.582535,0.340515,,1,,Europe/Paris,,OGP, +OGP:SA:10744,1,"Vieux Moulin",46.552894,0.334049,,1,,Europe/Paris,,OGP, +OGP:SA:10745,1,"Pétonnet Hulin 1",46.582068,0.338787,,1,,Europe/Paris,,OGP, +OGP:SA:10746,1,"Gachères",46.516128,0.30141,,1,,Europe/Paris,,OGP, +OGP:SA:10747,1,"Challerie",46.51443,0.297025,,1,,Europe/Paris,,OGP, +OGP:SA:10748,1,"Cimeau",46.514027,0.288481,,1,,Europe/Paris,,OGP, +OGP:SA:10749,1,"Mirande",46.514864,0.283636,,1,,Europe/Paris,,OGP, +OGP:SA:10750,1,"Moulin de la Reinière",46.516415,0.278092,,1,,Europe/Paris,,OGP, +OGP:SA:10751,1,"Virolet",46.51996,0.28027,,1,,Europe/Paris,,OGP, +OGP:SA:10752,1,"Noyer au Roy",46.525315,0.329596,,1,,Europe/Paris,,OGP, +OGP:SA:10753,1,"Chêne Vert",46.523285,0.327701,,1,,Europe/Paris,,OGP, +OGP:SA:10754,1,"Moscovici",46.522339,0.321905,,1,,Europe/Paris,,OGP, +OGP:SA:10755,1,"Maurice Garçon",46.518806,0.324789,,1,,Europe/Paris,,OGP, +OGP:SA:10756,1,"Tisserands",46.518258,0.321745,,1,,Europe/Paris,,OGP, +OGP:SA:10757,1,"Chillou",46.519893,0.318703,,1,,Europe/Paris,,OGP, +OGP:SA:10760,1,"Gare Léon Blum",46.58459,0.335415,,1,,Europe/Paris,,OGP, +OGP:SA:10761,1,"Multipôle",46.590291,0.38021,,1,,Europe/Paris,,OGP, +OGP:SA:10762,1,"Bajon",46.578696,0.351632,,1,,Europe/Paris,,OGP, +OGP:SA:10764,1,"Les Glières",46.59987,0.325387,,1,,Europe/Paris,,OGP, +OGP:SA:10765,1,"Condorcet (Rue de Quinçay)",46.588799,0.329114,,1,,Europe/Paris,,OGP, +OGP:SA:10767,1,"Place du 19 mars",46.621098,0.312229,,1,,Europe/Paris,,OGP, +OGP:SA:10771,1,"Tiers-Etat",46.593895,0.379576,,1,,Europe/Paris,,OGP, +OGP:SA:10773,1,"Biard Gymnase",46.576258,0.304461,,1,,Europe/Paris,,OGP, +OGP:SA:10776,1,"Marché de Gros",46.607564,0.33988,,1,,Europe/Paris,,OGP, +OGP:SA:10778,1,"République 1",46.611095,0.345819,,1,,Europe/Paris,,OGP, +OGP:SA:10779,1,"Cormiers",46.561412,0.289279,,1,,Europe/Paris,,OGP, +OGP:SA:10781,1,"Sainte-Loubette",46.627543,0.337933,,1,,Europe/Paris,,OGP, +OGP:SA:10786,1,"Montgolfier",46.665294,0.373992,,1,,Europe/Paris,,OGP, +OGP:SA:10787,1,"La Coutelière",46.605589,0.404932,,1,,Europe/Paris,,OGP, +OGP:SA:10790,1,"Vouneuil Nougeraie",46.56189,0.295787,,1,,Europe/Paris,,OGP, +OGP:SA:10792,1,"Route de Poitiers",46.537488,0.266579,,1,,Europe/Paris,,OGP, +OGP:SA:10794,1,"Grands Philambins",46.649542,0.358353,,1,,Europe/Paris,,OGP, +OGP:SA:10795,1,"Shenzhen",46.654938,0.362217,,1,,Europe/Paris,,OGP, +OGP:SA:10797,1,"Emile Duclaux",46.574632,0.346349,,1,,Europe/Paris,,OGP, +OGP:SA:10798,1,"Berlioz",46.599099,0.356768,,1,,Europe/Paris,,OGP, +OGP:SA:10799,1,"Beaubaton",46.544641,0.408534,,1,,Europe/Paris,,OGP, +OGP:SA:10800,1,"Bernier",46.612743,0.362427,,1,,Europe/Paris,,OGP, +OGP:SA:10801,1,"Maria Pia",46.553603,0.296934,,1,,Europe/Paris,,OGP, +OGP:SA:10802,1,"La Saulaie",46.551162,0.294955,,1,,Europe/Paris,,OGP, +OGP:SA:10803,1,"Aqueduc",46.555171,0.332343,,1,,Europe/Paris,,OGP, +OGP:SA:10805,1,"Thomas Edison",46.669808,0.365198,,1,,Europe/Paris,,OGP, +OGP:SA:10806,1,"Léonard de Vinci",46.668949,0.362177,,1,,Europe/Paris,,OGP, +OGP:SA:10807,1,"Jean Monnet",46.668524,0.359716,,1,,Europe/Paris,,OGP, +OGP:SA:10809,1,"Galeries Sud",46.550375,0.295749,,1,,Europe/Paris,,OGP, +OGP:SA:10810,1,"Campus",46.568249,0.388332,,1,,Europe/Paris,,OGP, +OGP:SA:10811,1,"Centre Hospitalier",46.558639,0.389919,,1,,Europe/Paris,,OGP, +OGP:SA:10812,1,"Boutinière",46.56243,0.300207,,1,,Europe/Paris,,OGP, +OGP:SA:10813,1,"Héliport",46.561999,0.381068,,1,,Europe/Paris,,OGP, +OGP:SA:10814,1,"Lycée Camille Guérin",46.567999,0.36527,,1,,Europe/Paris,,OGP, +OGP:SA:10815,1,"Le Lavoir",46.584782,0.271159,,1,,Europe/Paris,,OGP, +OGP:SA:10816,1,"Bijou",46.622062,0.427183,,1,,Europe/Paris,,OGP, +OGP:SA:10817,1,"Bourbias",46.617889,0.407874,,1,,Europe/Paris,,OGP, +OTL:SA:1970324837184593,1,"Ecole Croix-Rouge",43.6052,1.38705,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184596,1,"Capelles",43.6015,1.38482,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184597,1,"Ecole Vétérinaire",43.5991,1.38386,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184598,1,"ZI Prat Gimont",43.6269,1.4861,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184612,1,"Aéroport",43.6312,1.37468,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184617,1,"Saint Agne Gare SNCF",43.5802,1.44936,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184625,1,"Clinique des Cèdres",43.659,1.31217,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184626,1,"Les Ambrits",43.6531,1.319,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184627,1,"Mairie Cornebarrieu",43.6492,1.32634,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184635,1,"Chaussas",43.6284,1.42847,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184636,1,"Pont des Minimes",43.6156,1.43734,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184637,1,"Riquet",43.6093,1.45427,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184638,1,"Corraze",43.5813,1.48539,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184661,1,"Servanty Airbus",43.6255,1.39336,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184663,1,"Ancely",43.618,1.39708,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184667,1,"Mairie Blagnac",43.6352,1.39655,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184670,1,"Grand Noble",43.6448,1.37745,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184674,1,"Gonin",43.5739,1.48349,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184675,1,"Place Dupuy",43.5998,1.45437,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184677,1,"Pelletier Purpan",43.607,1.39589,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184685,1,"Portet Gare SNCF",43.5271,1.38868,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184690,1,"Centre Commercial L'Union",43.6568,1.4795,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184715,1,"Parc Saint Agne",43.5527,1.46893,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184716,1,"Théogone",43.551,1.4878,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184717,1,"Mairie Saint-Orens",43.552,1.53409,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184718,1,"Gare des Capelles",43.5973,1.38326,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184752,1,"Colomiers Gare SNCF",43.6042,1.33458,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184772,1,"Saint Cyprien - République",43.5978,1.43079,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184792,1,"Palais de Justice",43.5929,1.44446,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184793,1,"CHR Rangueil",43.5587,1.45346,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184794,1,"Ducuing",43.5628,1.46027,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184809,1,"Bagatelle",43.5801,1.41232,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184814,1,"Capitole",43.6045,1.44557,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184827,1,"Patte d'Oie",43.5964,1.42325,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184847,1,"Auguste Gratian",43.669,1.41097,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184867,1,"Barrière de Lombez",43.5953,1.41945,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184868,1,"Roquemaurel",43.595,1.41524,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184870,1,"Av. de Lombez",43.5944,1.41258,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184871,1,"Hippodrome",43.5936,1.40772,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184872,1,"Brombach",43.5929,1.40394,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184873,1,"Pont Rocade",43.5922,1.40007,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184874,1,"Teynier",43.5927,1.39594,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184875,1,"Tissié",43.5933,1.39344,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184876,1,"Cimetière Cornebarrieu",43.6409,1.33082,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184877,1,"Buette",43.6504,1.34128,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184879,1,"Eglise Lardenne",43.591,1.38376,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184880,1,"Mondonville Foyer Rural",43.6702,1.28885,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184881,1,"Catala",43.5904,1.38032,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184882,1,"Poutier",43.5913,1.37777,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184883,1,"Salinié",43.5932,1.37995,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184884,1,"République",43.6834,1.31994,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184886,1,"Ecole Police et Cadastre",43.5949,1.38209,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184889,1,"Saint-Exupéry",43.5885,1.35944,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184892,1,"Esquirol",43.6002,1.44507,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184893,1,"Ecole Récébédou",43.5388,1.40842,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184895,1,"Eisenhower",43.5582,1.4015,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184896,1,"Place Bouillière",43.5667,1.39396,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184897,1,"Pont Neuf",43.5996,1.44096,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184899,1,"Salengro",43.5415,1.41115,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184900,1,"Cité Scolaire Rive Gauche",43.5843,1.39941,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184901,1,"Mesplé",43.5702,1.38652,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184902,1,"Centre Commercial Beauzelle",43.6701,1.36922,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184903,1,"Annonciation",43.6793,1.36731,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184905,1,"Le Lac Reynerie",43.5674,1.40408,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184906,1,"Cité du Parc",43.5685,1.40794,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184907,1,"Kiev",43.5705,1.40862,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184908,1,"Babinet",43.5725,1.40733,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184909,1,"Lully",43.6189,1.40815,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184910,1,"Achiary",43.6009,1.47416,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184913,1,"Rixens",43.6269,1.45333,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184915,1,"Arsenal",43.6056,1.43366,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184916,1,"Ponts Jumeaux",43.61,1.42074,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184917,1,"Atlanta",43.6428,1.46763,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184918,1,"L'Union Somport",43.6551,1.48218,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184919,1,"Montcalm",43.6534,1.48456,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184920,1,"Bayonne",43.6498,1.47177,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184921,1,"Caunes",43.6404,1.46951,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184922,1,"Ohnet",43.6386,1.47126,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184923,1,"Vasseur",43.6357,1.47301,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184924,1,"Cambard",43.6294,1.47637,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184929,1,"L'Union Malbou",43.6613,1.48362,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184932,1,"Jeanne d'Arc",43.6089,1.44586,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184934,1,"Théodore de Banville",43.6406,1.4663,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184935,1,"Saint-Jean Clinique de L'Union",43.6507,1.50966,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184936,1,"Saint-Jean Lestang",43.6708,1.50042,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184939,1,"Rouffiac-Tolosan",43.6728,1.52662,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184940,1,"Saint-Geniès",43.6837,1.48583,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184941,1,"Lapeyrouse",43.695,1.51617,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184947,1,"Grand Rond",43.5955,1.45324,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184950,1,"Conseil Régional",43.5886,1.44003,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184951,1,"Lardenne Barigoude",43.5899,1.37373,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184954,1,"Colombette",43.6059,1.45648,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184955,1,"Guilhemery",43.6027,1.45683,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184956,1,"Pont Matabiau",43.6138,1.45051,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184957,1,"Amat Massot",43.6257,1.43901,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184958,1,"Trois Cocus",43.6384,1.44412,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184959,1,"Les Sables",43.655,1.44586,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184970,1,"Lumière",43.6594,1.45124,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184975,1,"Mairie Launaguet",43.6739,1.45583,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184976,1,"Pechbonnieu Mairie",43.7032,1.46686,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184977,1,"Marigny",43.6961,1.479,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184978,1,"Montberon",43.7181,1.48196,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184981,1,"Lapin",43.6519,1.43257,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184982,1,"Mairie Aucamville",43.6681,1.42911,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184983,1,"Mairie Castelginest",43.6935,1.42882,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184984,1,"Gratentour Gravette",43.7154,1.4203,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184985,1,"Castelginest Buffebiau",43.6855,1.44628,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184987,1,"Bruguières",43.7218,1.41129,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184988,1,"Fenouillet Croix",43.6845,1.38193,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184989,1,"République",43.6978,1.37433,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184990,1,"Lespinasse Viguerie",43.714,1.39154,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184991,1,"Beauté",43.7101,1.37006,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184992,1,"Place Georges Brassens",43.6486,1.37559,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837184995,1,"Cours Dillon",43.5986,1.43676,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185002,1,"Jolimont",43.6154,1.4637,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185007,1,"Fontaine Lestang",43.5875,1.41827,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185008,1,"Mermoz",43.5834,1.41539,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185009,1,"Mirail-Université",43.5745,1.40191,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185010,1,"Reynerie",43.571,1.40198,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185011,1,"Bellefontaine",43.5659,1.3992,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185012,1,"Université Paul Sabatier",43.5606,1.46318,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185015,1,"Portet H. Boucher",43.5147,1.38767,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185016,1,"Espace Garonne",43.6993,1.37194,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185017,1,"Carmes",43.5982,1.44554,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185018,1,"Mairie La Salvetat",43.5781,1.27267,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185029,1,"Héraclès",43.6081,1.42867,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185045,1,"A. Bernard",43.6116,1.43875,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185046,1,"Barrière de Paris",43.6265,1.43369,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185047,1,"Fenouillet Centre Commercial",43.6871,1.40385,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185060,1,"Plaisance Accueil",43.5648,1.29737,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185061,1,"Plaisance Monestié",43.5631,1.29101,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185065,1,"Taure",43.5833,1.27811,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185068,1,"Brax le Château",43.6169,1.24076,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185071,1,"Stade",43.6151,1.276,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185072,1,"Basilique",43.6178,1.2833,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185074,1,"Lycée International",43.6128,1.30825,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185077,1,"Niel",43.4614,1.32441,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185078,1,"Muret Lycée",43.4543,1.33017,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185081,1,"Roquettes Eglise",43.4997,1.36492,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185082,1,"Roques Acacias",43.5017,1.36162,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185085,1,"Pinsaguel Tilleuls",43.4998,1.39493,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185088,1,"Rond-Point Langlade",43.5668,1.42501,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185091,1,"Eglise Escalquens",43.5177,1.56137,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185123,1,"Centre Commercial Portet - Entrée 1",43.532,1.4054,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185136,1,"Salle Gascogne",43.6101,1.32857,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185141,1,"Mairie Ramonville",43.5456,1.47506,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185142,1,"Grand Chemin",43.5279,1.49,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185143,1,"Mairie Castanet",43.5168,1.49807,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185144,1,"Le Merlet",43.5042,1.5099,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185145,1,"Rodoloze",43.4951,1.52042,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185147,1,"Mairie Donneville",43.4741,1.5502,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185149,1,"Ourmets",43.4418,1.59902,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185158,1,"Gare SNCF Montrabé",43.6446,1.52447,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185192,1,"Mairie Saint-Jean",43.6654,1.50476,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185193,1,"Castelmaurou Mairie",43.6781,1.53225,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185229,1,"Croix de Pierre",43.5849,1.42774,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185233,1,"Les Chênes",43.5847,1.34468,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185244,1,"Hôpital Purpan",43.6074,1.39769,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185251,1,"Cantal",43.6113,1.33723,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185261,1,"En Sigal",43.6053,1.32647,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185278,1,"Saint-Orens Eglise",43.5523,1.54183,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185279,1,"Saint-Orens Lycée",43.5409,1.54796,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185292,1,"Montaudran Gare SNCF",43.5722,1.47872,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185293,1,"Labège Innopole Gare SNCF",43.5479,1.5137,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185294,1,"Gare de Labège",43.5316,1.53321,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185295,1,"Gare SNCF Escalquens",43.5179,1.54204,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185296,1,"Les Canavères",43.4818,1.57213,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185306,1,"Ecole Baziège",43.4536,1.61304,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185309,1,"Village Montlaur",43.4888,1.56915,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185312,1,"Trois Fours",43.5868,1.4616,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185314,1,"Escalquens La Caprice",43.5315,1.55221,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185315,1,"Montaudran - La Rivière",43.5712,1.49847,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185316,1,"Labège Couder",43.5423,1.53255,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185348,1,"Récollets Daste",43.5839,1.44288,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185353,1,"Amouroux",43.6299,1.46651,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185355,1,"Pouvourville",43.5468,1.45313,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185356,1,"Gleyze-Vieille",43.5469,1.46593,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185357,1,"Faculté de Pharmacie",43.5678,1.46446,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185358,1,"Leclerc",43.6093,1.43189,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185359,1,"Complexe Agricole",43.5343,1.48471,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185360,1,"Auzeville Eglise",43.5263,1.48653,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185361,1,"Les Genêts",43.5232,1.50341,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185362,1,"Cité de l'Hers",43.5963,1.4842,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185363,1,"Entiore",43.5797,1.51055,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185364,1,"Lauragais",43.5867,1.53422,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185365,1,"Mairie Flourens",43.5946,1.5619,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185366,1,"Eglise Drémil",43.5968,1.60208,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185367,1,"Eglise Balma",43.6099,1.49802,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185368,1,"Balma Lasbordes",43.5963,1.506,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185369,1,"Saliège",43.6061,1.49224,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185370,1,"Balma La Coste",43.6191,1.51667,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185373,1,"Lespinet Struxiano",43.5782,1.46842,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185374,1,"Ramonville Port Sud",43.5431,1.49025,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185375,1,"Mairie Cugnaux",43.5375,1.34474,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185376,1,"Rossignols",43.5206,1.33785,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185377,1,"Seysses Gay",43.4949,1.30662,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185378,1,"Résistance",43.5436,1.3438,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185379,1,"Espace Pagnol",43.5286,1.33089,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185382,1,"Place de l'Indépendance",43.5965,1.48911,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185484,1,"René Valmy",43.559,1.39837,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185485,1,"Perpignan",43.5563,1.40096,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185486,1,"Thibaud",43.555,1.40356,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185487,1,"Sirven",43.5526,1.40339,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185488,1,"Labouche",43.5506,1.40155,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185491,1,"Mayer",43.5435,1.39451,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185492,1,"Saudrune",43.5416,1.39086,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185493,1,"ZI de Courties",43.5353,1.38772,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185494,1,"Courties",43.5324,1.38641,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185495,1,"ZI Bois Vert N°1",43.5318,1.38263,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185496,1,"ZI Bois Vert N°2",43.5303,1.38079,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185497,1,"ZI Bois Vert N°3",43.5289,1.37957,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185499,1,"Cerisiers",43.5276,1.37725,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185501,1,"Quart",43.5241,1.38445,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185502,1,"Palarin",43.5249,1.38746,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185503,1,"Roussimort",43.5548,1.39922,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185504,1,"Vouet",43.5527,1.3967,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185505,1,"Alcatel",43.55,1.39291,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185506,1,"Candie",43.5477,1.39005,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185507,1,"1er RTP",43.5451,1.38554,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185516,1,"Claire Fontaine",43.5401,1.4098,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185517,1,"Palanques",43.535,1.40445,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185518,1,"Stade",43.5287,1.40693,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185519,1,"Occitanie",43.5252,1.40872,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185520,1,"Commerce",43.524,1.40716,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185521,1,"Bosquets",43.5232,1.4051,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185522,1,"Eglise de Portet",43.5224,1.4078,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185523,1,"Crouzettes",43.5211,1.40565,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185524,1,"Désiré",43.5219,1.40398,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185525,1,"Poste de Portet",43.5206,1.40191,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185526,1,"Bd de l'Europe",43.5304,1.404,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185527,1,"Mairie Portet",43.5206,1.40027,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185528,1,"Ateliers Municipaux",43.5209,1.39795,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185529,1,"Gauguin",43.5192,1.39632,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185530,1,"Clémenceau",43.5159,1.39348,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185532,1,"Lot. Impérial",43.5136,1.38994,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185541,1,"François Verdier",43.6008,1.45189,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185542,1,"Quartier Général",43.5976,1.45202,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185543,1,"Fer à Cheval",43.5928,1.43433,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185545,1,"Barrière de Muret",43.579,1.42347,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185546,1,"Vincent Auriol",43.4703,1.3303,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185565,1,"Pérignon",43.6006,1.4642,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185566,1,"Crampel",43.5881,1.45925,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185568,1,"Crouzet",43.5371,1.5594,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185569,1,"Centre",43.5214,1.58948,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185570,1,"La Douce",43.4907,1.64311,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185571,1,"Mairie Labastide Beauvoir",43.4821,1.66636,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185572,1,"En Blanc",43.4804,1.69025,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185575,1,"Montauriol",43.5867,1.57902,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185596,1,"Parc de Campagne",43.5622,1.31296,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185602,1,"Guillaumet",43.6163,1.47318,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185603,1,"Roseraie",43.6196,1.46949,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185896,1,"Doumergue",43.6212,1.46923,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185897,1,"Place Bet",43.6234,1.46737,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185898,1,"Michoun",43.6244,1.4661,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185899,1,"Eglise Saint-André",43.6262,1.46755,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185900,1,"Hyères",43.628,1.47001,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185901,1,"Victor Cousin",43.6301,1.47275,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185903,1,"Nicol",43.633,1.47001,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185904,1,"Avranches",43.6343,1.46709,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185905,1,"Colonel Rémy",43.6353,1.4649,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185906,1,"Cabarette",43.635,1.4615,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185907,1,"Petit Castelet",43.6336,1.45834,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185911,1,"Pl de l'Armée d'Afrique",43.6238,1.45444,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185912,1,"Teinturiers",43.5954,1.43253,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185913,1,"Delpy",43.5934,1.43087,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185914,1,"Cugnaux",43.5956,1.43143,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185915,1,"Sainte-Lucie",43.5939,1.42958,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185916,1,"Rodin",43.5923,1.42707,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185917,1,"Valats",43.5912,1.42502,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185918,1,"Déodat de Séverac",43.5895,1.42204,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185919,1,"Gamelin",43.5888,1.42132,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185926,1,"Guyenne",43.5771,1.41016,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185927,1,"Ile de France",43.5762,1.41194,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185928,1,"Bigorre",43.5748,1.41103,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185929,1,"Chemin Papus",43.5741,1.41231,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185933,1,"Jardin Royal",43.5948,1.44955,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185934,1,"Saint-Georges",43.6032,1.45127,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185935,1,"Victor Hugo",43.6073,1.44705,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185936,1,"Concorde",43.6107,1.44293,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185937,1,"Amidonniers",43.6063,1.4282,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185938,1,"Les Abattoirs",43.601,1.42849,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185939,1,"Sainte-Catherine",43.5906,1.44537,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185940,1,"Notre Dame",43.5892,1.44598,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185941,1,"St-Michel - Marcel Langer",43.5861,1.44704,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185942,1,"Récollets",43.5839,1.44817,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185943,1,"Av. de Rangueil",43.5775,1.45053,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185944,1,"Delmas",43.576,1.45113,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185945,1,"Jules Julien",43.5737,1.45206,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185946,1,"Pouset",43.5706,1.4547,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185947,1,"Caubère",43.5682,1.45727,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185948,1,"IUT",43.5664,1.4588,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185949,1,"Ducuing Ponsan",43.5611,1.45804,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185950,1,"Vallon",43.5593,1.45708,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185951,1,"Ateliers Métro",43.5743,1.38619,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185952,1,"Gélis",43.5752,1.3846,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185953,1,"Magre",43.5762,1.38322,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185954,1,"Fleming",43.579,1.38073,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185955,1,"Météo",43.5776,1.3774,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185956,1,"Odeillo",43.5802,1.38341,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185957,1,"Bordeblanche",43.5814,1.38656,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185958,1,"Pradettes",43.5815,1.3891,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185959,1,"Passerieu",43.5797,1.39185,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185960,1,"Ecole D'Architecture",43.5801,1.39553,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185961,1,"ENAC",43.5646,1.47822,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185962,1,"ISAE Campus SUPAERO",43.5665,1.47559,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185963,1,"CREPS ONERA",43.5698,1.47336,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185964,1,"Latécoère",43.5737,1.47421,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185965,1,"Aérodrome",43.5755,1.47212,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185966,1,"Herbettes",43.5765,1.47031,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185967,1,"Fontainebleau",43.5803,1.46624,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185968,1,"Place de Lespinet",43.5823,1.46439,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185969,1,"Marine",43.5827,1.46273,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185970,1,"Fages",43.5841,1.46286,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185971,1,"Demouilles",43.5891,1.45689,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185972,1,"Frizac",43.5906,1.45367,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185974,1,"Minimes - Claude Nougaro",43.6205,1.43574,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185975,1,"Baqué",43.6234,1.43443,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185976,1,"Charlas",43.6297,1.43267,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185977,1,"Jules Ferry",43.6325,1.43175,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185978,1,"Bastiat",43.6344,1.43107,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185979,1,"Dulong",43.6362,1.43044,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185980,1,"Halles du Sud-Ouest",43.6387,1.42963,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185981,1,"Glacière",43.6462,1.42606,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185982,1,"Lycée Déodat de Séverac",43.5869,1.42568,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185983,1,"Roc",43.582,1.42579,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185984,1,"Orbesson",43.5767,1.42171,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185985,1,"Bernadette",43.5746,1.42006,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185986,1,"Touraine",43.5727,1.41854,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185987,1,"Bordelongue",43.571,1.41701,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185988,1,"Cité des Combattants",43.5681,1.41308,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185990,1,"Place des Glières",43.5648,1.40994,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185992,1,"Cheverry",43.5622,1.40677,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185993,1,"Rimont",43.56,1.40409,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185996,1,"Camus",43.5619,1.39493,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185997,1,"Pergaud",43.5641,1.39556,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837185999,1,"Pech",43.5896,1.41435,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186000,1,"Corneille",43.5887,1.41214,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186001,1,"Collège George Sand",43.5876,1.40926,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186002,1,"Cépière Rocade",43.5866,1.40655,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186003,1,"Ecole Espagnole",43.5769,1.39499,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186004,1,"Douanes",43.5744,1.39713,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186006,1,"Chardonnet",43.6061,1.4012,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186008,1,"Casselardit",43.6039,1.40649,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186009,1,"Charleville",43.6025,1.40961,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186011,1,"Cartoucherie",43.6013,1.41154,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186012,1,"Barrière de Bayonne",43.5978,1.41987,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186013,1,"Roguet",43.5971,1.42665,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186014,1,"Magné",43.5966,1.43613,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186015,1,"Olivier Hôp. La Grave",43.5984,1.43403,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186016,1,"Fonquerne",43.6275,1.42537,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186017,1,"Rateau",43.6253,1.42706,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186018,1,"Brieux",43.6268,1.43006,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186019,1,"Silvio Trentin",43.6244,1.42882,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186020,1,"Jacquard",43.6224,1.4278,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186021,1,"Grand Verger",43.6196,1.42916,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186022,1,"Pescadoure",43.6187,1.42739,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186023,1,"Matisse",43.6178,1.42384,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186024,1,"Tricou",43.6162,1.4241,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186025,1,"Gounod",43.614,1.42566,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186026,1,"Passerelle Haedens",43.6135,1.43105,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186027,1,"Canal du Midi",43.6151,1.43379,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186028,1,"Bachelier",43.6068,1.45213,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186029,1,"Aqueduc",43.6016,1.45826,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186030,1,"Tilleuls",43.6007,1.46718,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186031,1,"Deltour",43.6009,1.47143,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186032,1,"Av. Raymond Naves",43.5986,1.4727,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186033,1,"Lafilaire",43.5962,1.47329,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186034,1,"Limayrac",43.5942,1.47305,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186035,1,"Balansa",43.5933,1.47391,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186036,1,"Jacinthes",43.5926,1.47605,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186037,1,"Baroux",43.5918,1.4783,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186038,1,"Firmis",43.589,1.47895,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186039,1,"Pugens",43.5877,1.4801,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186040,1,"Mont Ventoux",43.5866,1.48224,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186041,1,"Allègre",43.5851,1.48511,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186042,1,"Ledormeur",43.5833,1.48811,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186046,1,"Route de Blagnac",43.6187,1.40728,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186047,1,"Soleil d'Or",43.6163,1.40907,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186049,1,"Fourmi",43.6121,1.41363,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186051,1,"Suisse",43.6114,1.4193,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186052,1,"Canal de Brienne",43.6086,1.4242,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186054,1,"Barcelone Leclerc",43.607,1.43067,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186055,1,"Mascard",43.5996,1.4787,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186056,1,"Aubisque",43.5974,1.48176,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186057,1,"Collège JP Vernant",43.5946,1.48755,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186058,1,"Providence",43.6054,1.45827,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186059,1,"Savignac",43.6062,1.46261,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186060,1,"Assalit",43.607,1.46603,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186061,1,"Monié",43.6073,1.46922,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186062,1,"Crêtes",43.6072,1.47179,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186063,1,"Coquille",43.6065,1.47343,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186064,1,"Gloire",43.6054,1.47637,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186065,1,"Navarre",43.605,1.47981,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186066,1,"Château de l'Hers",43.6029,1.48029,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186067,1,"Fontanelles",43.601,1.48321,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186068,1,"Carcassonne",43.5998,1.48423,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186069,1,"Rougenet",43.5978,1.48482,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186070,1,"Ivoire",43.5958,1.48696,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186071,1,"Cité de l'Espace",43.5869,1.491,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186073,1,"Place Bila",43.6271,1.459,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186074,1,"Cazals",43.6292,1.46094,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186076,1,"Vidailhan",43.6268,1.48987,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186079,1,"Place Schuman",43.6096,1.44921,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186080,1,"Périssé",43.5977,1.45864,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186081,1,"Lanfant",43.5963,1.4622,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186082,1,"Belle Paule",43.5949,1.46432,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186083,1,"Leygue",43.5936,1.46618,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186084,1,"Beau Soleil",43.5924,1.46736,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186085,1,"Barrau",43.5905,1.46988,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186086,1,"Glaïeuls",43.5891,1.47174,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186087,1,"Langevin",43.5865,1.47473,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186088,1,"Gers - Lartet",43.5844,1.47745,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186090,1,"Aude",43.5828,1.48228,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186091,1,"Garin",43.5797,1.48435,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186092,1,"Tahiti",43.58,1.48087,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186094,1,"Bréguet",43.5771,1.4794,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186095,1,"Lavidalie",43.5755,1.48072,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186096,1,"Sciences Sociales",43.607,1.4346,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186098,1,"Duméril",43.5906,1.45238,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186099,1,"Busca",43.5888,1.45124,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186100,1,"Rachou",43.5866,1.45276,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186101,1,"Place Henry Russell",43.5853,1.45365,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186110,1,"Dugay Trouin",43.5727,1.46059,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186111,1,"INSA",43.5737,1.46483,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186113,1,"Roubichou",43.6285,1.46359,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186114,1,"Sainte-Augustine",43.6274,1.46121,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186115,1,"Barrière de Croix-Daurade",43.6253,1.45876,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186117,1,"Hauts de Bonnefoy",43.6213,1.45788,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186118,1,"Eglise Bonnefoy",43.6193,1.45678,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186120,1,"Arago",43.6174,1.45468,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186121,1,"Raynal",43.6149,1.45172,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186122,1,"Place Roquelaine",43.612,1.44816,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186128,1,"Lebas",43.577,1.44162,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186130,1,"Empalot",43.5802,1.44177,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186132,1,"Mouettes",43.5772,1.43983,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186133,1,"Jaffary",43.631,1.46221,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186134,1,"Croix-Daurade",43.634,1.46338,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186135,1,"Lycée Raymond Naves",43.6366,1.46433,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186136,1,"Luchet",43.6386,1.46532,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186137,1,"Val d'Aran",43.6495,1.47419,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186138,1,"Bidart",43.65,1.47686,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186139,1,"Ronceveaux",43.6514,1.47961,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186140,1,"Biarritz",43.6522,1.4836,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186141,1,"Hortensias",43.6582,1.47727,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186142,1,"Cèdres",43.6591,1.47786,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186143,1,"Côte de Cornaudric",43.6616,1.47603,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186144,1,"Jasmin",43.663,1.47439,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186145,1,"Tourterelles",43.6639,1.47378,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186146,1,"Geai",43.667,1.47442,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186147,1,"Pitchounelle",43.6673,1.47677,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186148,1,"Agout",43.6664,1.47999,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186149,1,"Séoune",43.6657,1.48312,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186150,1,"Condor",43.6641,1.48435,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186151,1,"Bd des Minimes",43.615,1.44888,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186152,1,"Raisin",43.6154,1.4458,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186153,1,"Passerelle",43.6152,1.44247,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186154,1,"Anges",43.6222,1.43699,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186155,1,"Mazades",43.6239,1.43692,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186160,1,"Pierre Curie",43.6244,1.44361,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186161,1,"Negreneys",43.6238,1.44487,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186164,1,"Pradet",43.6283,1.4479,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186165,1,"Loubiague",43.632,1.44385,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186166,1,"Renan",43.6339,1.44375,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186167,1,"Voivenel",43.6353,1.44378,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186169,1,"Chamois",43.6394,1.44441,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186171,1,"Cerisiers",43.6422,1.44445,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186175,1,"Vignes",43.6453,1.45308,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186176,1,"Fénelon",43.6472,1.45328,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186177,1,"Grand Selve",43.6501,1.45238,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186178,1,"Froideterre",43.6523,1.44855,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186179,1,"Boudou",43.6526,1.44563,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186181,1,"Sablettes",43.6559,1.45182,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186182,1,"Chemin d'Encourse",43.6544,1.45338,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186183,1,"Lilas",43.6532,1.47087,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186184,1,"Mimosas",43.6559,1.47099,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186185,1,"Roses",43.6567,1.47314,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186186,1,"Myosotis",43.6582,1.47648,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186187,1,"Grive",43.6585,1.48433,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186188,1,"Vents d'Autan",43.6586,1.48768,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186189,1,"Monts du Forez",43.6576,1.48958,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186190,1,"Piscine",43.6555,1.49144,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186191,1,"Aspin",43.654,1.49183,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186192,1,"Vence",43.6522,1.49627,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186193,1,"Vallauris",43.651,1.5001,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186194,1,"Saint-Tropez",43.65,1.50246,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186195,1,"Calicéo",43.6493,1.50435,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186196,1,"Desnos",43.5629,1.39154,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186197,1,"Ourliac",43.5614,1.39159,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186198,1,"Lestang",43.5604,1.3939,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186199,1,"Berdoulat",43.5104,1.38863,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186200,1,"Commune",43.5024,1.39207,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186201,1,"Cazaulon",43.5007,1.39329,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186202,1,"Lachambre",43.4989,1.39383,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186203,1,"Griffon",43.5595,1.50139,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186204,1,"Malassang",43.4968,1.39315,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186205,1,"Môles",43.4919,1.39406,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186206,1,"Passage à Niveau",43.4906,1.39501,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186207,1,"Beaucru",43.4914,1.3819,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186208,1,"Av. de Roquettes",43.4919,1.37999,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186209,1,"Ecole Roquettes",43.4943,1.3764,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186210,1,"Cimetière Roquettes",43.4966,1.37092,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186211,1,"Le Lac",43.4941,1.36697,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186212,1,"Echez",43.4957,1.36488,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186213,1,"Lèze",43.4968,1.36328,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186214,1,"Château Sud",43.4979,1.3628,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186215,1,"Penent",43.5763,1.42401,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186216,1,"Gallieni",43.5732,1.42425,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186217,1,"Langlade",43.5708,1.4244,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186218,1,"Gironis",43.5637,1.42531,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186219,1,"Marchant",43.5594,1.42474,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186221,1,"Route d'Espagne",43.5532,1.42239,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186222,1,"Larrieu",43.5473,1.41935,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186223,1,"Clairfont",43.5441,1.41699,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186224,1,"Frênes",43.5411,1.41266,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186225,1,"Centre Commercial Portet - Entrée 5",43.5364,1.4067,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186226,1,"Saliège",43.5339,1.41024,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186227,1,"Boulodrome",43.5322,1.41197,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186228,1,"Collège de Portet",43.5303,1.41012,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186229,1,"Piscine",43.5281,1.4093,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186230,1,"Pont Rocade",43.5121,1.38294,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186231,1,"Colombier",43.5108,1.37922,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186234,1,"Tilleuls",43.507,1.3709,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186235,1,"V. Auriol",43.5039,1.36607,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186239,1,"Saint Anne",43.5934,1.50426,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186274,1,"Charbonnière",43.5773,1.443,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186275,1,"Herriot",43.5745,1.44675,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186276,1,"Palmiers",43.5734,1.44907,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186277,1,"Bon Voisin",43.5702,1.45048,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186278,1,"Coteaux",43.5682,1.4518,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186280,1,"Ponsan Bellevue",43.5635,1.45533,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186281,1,"Bourdette",43.5549,1.45684,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186282,1,"Larrey",43.553,1.45687,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186283,1,"Narrade",43.5515,1.45729,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186284,1,"Pastel",43.5498,1.45742,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186285,1,"Eglise Pouvourville",43.5485,1.45456,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186286,1,"Estérel",43.544,1.45626,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186287,1,"Aéropostale",43.5424,1.45877,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186288,1,"Salas",43.5418,1.46145,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186289,1,"Ecole Gleyze-Vieille",43.5445,1.46382,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186290,1,"Fac Dentaire",43.5647,1.46234,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186293,1,"Clotasses",43.5552,1.46738,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186294,1,"Eglise Ramonville",43.5512,1.46951,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186295,1,"Lapeyrade",43.5501,1.47063,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186296,1,"Poste de Ramonville",43.5479,1.47234,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186297,1,"Pastourelles",43.5435,1.47731,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186298,1,"Deux Ormeaux",43.5409,1.47884,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186299,1,"Monument",43.538,1.47496,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186300,1,"Suisse",43.5368,1.4731,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186301,1,"Tourterelles",43.5354,1.47319,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186302,1,"Coteaux",43.5314,1.47761,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186303,1,"Mairie Auzeville",43.5298,1.47967,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186304,1,"Prat",43.5284,1.48184,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186305,1,"Mayrine",43.5264,1.48407,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186306,1,"Talabot Sud",43.5633,1.38652,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186307,1,"Charpy",43.5605,1.38372,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186308,1,"Eglise Saint-Simon",43.5574,1.38051,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186309,1,"Françoise Dolto",43.5556,1.37816,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186310,1,"Villenouvelle",43.5532,1.37594,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186311,1,"Bayès",43.556,1.37186,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186312,1,"Coin Fermé",43.5576,1.36866,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186314,1,"Glassière",43.5557,1.36317,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186315,1,"Troubadours",43.5542,1.3601,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186316,1,"Bourdettes",43.5526,1.35535,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186317,1,"Bachecame Petit Jean",43.5462,1.35077,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186318,1,"Somme",43.5449,1.34775,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186319,1,"De Gaulle",43.5418,1.34163,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186320,1,"Pré Vicinal",43.5401,1.34056,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186321,1,"Vivier",43.5379,1.3399,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186322,1,"Béarn",43.5369,1.33777,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186323,1,"Rubens",43.5351,1.33888,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186324,1,"Vieux Moulin",43.5338,1.34129,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186325,1,"Bizet",43.5315,1.33968,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186326,1,"Tamaris",43.5298,1.33816,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186327,1,"Pyrénées",43.5276,1.33627,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186328,1,"Roses",43.5276,1.33401,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186329,1,"Roussillon",43.525,1.3299,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186330,1,"Languedoc",43.5235,1.33212,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186331,1,"Montségur",43.52,1.32956,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186332,1,"Surcouf",43.5182,1.32817,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186333,1,"Croix",43.5166,1.32618,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186334,1,"Berdeil",43.5149,1.32402,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186335,1,"Vierge",43.5138,1.3225,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186336,1,"Maison de Retraite",43.5145,1.31992,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186337,1,"Tennis Club Frouzins",43.5156,1.31714,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186338,1,"Mounède",43.5719,1.38304,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186339,1,"De Croutte",43.5686,1.37797,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186340,1,"Angély",43.5671,1.37532,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186341,1,"Guilhermy",43.568,1.37082,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186342,1,"Reguelongue",43.5628,1.37182,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186343,1,"Licard",43.5603,1.36866,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186344,1,"Petit Barry",43.5445,1.35003,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186345,1,"Lilas",43.5414,1.34695,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186346,1,"Stade",43.5391,1.34586,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186347,1,"Cugnala",43.5348,1.34675,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186351,1,"Méroc",43.5266,1.3462,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186352,1,"Mairie Villeneuve Tolosane",43.5248,1.34417,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186353,1,"Eglise Villeneuve",43.5226,1.34158,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186354,1,"Saint-Laurent",43.519,1.33584,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186355,1,"Le Parc",43.5171,1.33383,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186356,1,"Méditerranée",43.5144,1.33064,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186357,1,"Bel Air",43.5128,1.32923,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186358,1,"Chêne Vert",43.5103,1.3269,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186359,1,"Pyrénées",43.5081,1.32528,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186360,1,"Jean Jaurès",43.5063,1.32345,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186362,1,"Vitarelles",43.5036,1.32093,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186363,1,"Victor Hugo",43.5,1.31804,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186364,1,"Bergeaud",43.4975,1.31527,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186365,1,"Mairie Seysses",43.4988,1.31094,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186366,1,"Cazeneuve",43.4964,1.30855,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186373,1,"Cadène",43.6539,1.42333,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186374,1,"Rupé",43.6574,1.42025,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186375,1,"Salvador Allende",43.659,1.41874,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186376,1,"Marie Curie",43.6621,1.41604,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186377,1,"Plaine",43.6733,1.40968,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186378,1,"Saint-Gobain",43.6765,1.40869,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186379,1,"Mazurié",43.6836,1.40644,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186384,1,"Tournelle",43.6831,1.39927,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186385,1,"Clos",43.6812,1.39825,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186386,1,"Languedoc",43.6797,1.39636,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186387,1,"Rey",43.6779,1.39546,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186388,1,"Pourrenque",43.6763,1.39639,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186389,1,"Jean Jaurès",43.6776,1.39333,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186390,1,"Mairie Fenouillet",43.6788,1.3911,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186391,1,"Billières",43.6796,1.38923,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186392,1,"Gourgues",43.6804,1.38624,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186393,1,"Eglise Fenouillet",43.6827,1.38418,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186394,1,"Montplaisir",43.6891,1.37632,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186395,1,"Château",43.6929,1.37435,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186396,1,"Gagnac Acacias",43.6949,1.37385,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186397,1,"Vieux Moulin",43.7001,1.37668,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186398,1,"Voie Romaine",43.7027,1.37976,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186400,1,"Eglise Gagnac",43.7019,1.36941,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186401,1,"Hire",43.7036,1.36811,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186402,1,"Albefeuille",43.7092,1.36669,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186403,1,"Turret",43.7069,1.37531,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186404,1,"Amandiers",43.703,1.37812,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186405,1,"Moulin",43.7051,1.3825,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186406,1,"Oustalet",43.7065,1.38473,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186407,1,"Saint-Jean",43.7079,1.38385,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186411,1,"Pader",43.6365,1.43297,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186412,1,"Pont de la Vache",43.6389,1.43336,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186413,1,"Riché Lalande",43.6478,1.43303,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186414,1,"Roubiéchou",43.6547,1.43225,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186415,1,"Lapparou",43.6574,1.43189,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186416,1,"Gaussen",43.661,1.43153,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186417,1,"Salvy",43.6639,1.43068,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186418,1,"Eglise Aucamville",43.6661,1.42998,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186419,1,"Favasse",43.6715,1.42712,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186420,1,"Payen",43.6732,1.42605,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186421,1,"Aucamville Collège",43.6754,1.42461,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186423,1,"Mariel",43.6819,1.42119,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186424,1,"Musiciens",43.6839,1.41967,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186425,1,"Violettes",43.6871,1.41732,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186426,1,"Ecole Saint-Alban",43.6891,1.416,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186428,1,"Prairie",43.7005,1.40772,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186429,1,"Peyronnette",43.6851,1.42136,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186430,1,"Jules Verne",43.6871,1.42243,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186431,1,"Sables",43.6931,1.41723,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186432,1,"Egalité",43.6923,1.42001,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186433,1,"Tilleuls",43.6908,1.42242,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186434,1,"Centre Commercial Saint-Alban",43.6891,1.42287,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186435,1,"Pont Vieil",43.6918,1.42718,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186436,1,"Pradelle",43.694,1.43221,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186437,1,"Tour Totier",43.6939,1.43557,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186439,1,"Ecole Castelginest",43.6891,1.43979,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186440,1,"Millet",43.6873,1.44158,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186441,1,"Moissons",43.6865,1.44419,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186442,1,"Bertrand",43.6958,1.43065,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186443,1,"Barthe",43.6973,1.43174,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186444,1,"Saint-Pierre",43.7001,1.43167,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186446,1,"Barry",43.7134,1.43102,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186447,1,"Garenne",43.7156,1.43333,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186448,1,"Vignemale",43.7185,1.43294,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186449,1,"Pic du Midi",43.7193,1.4353,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186450,1,"Acacias",43.7205,1.4383,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186451,1,"Maurys",43.7231,1.43552,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186452,1,"Mairie Gratentour",43.7223,1.43216,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186453,1,"Vieille Côte",43.7189,1.42788,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186454,1,"Champ del Rey",43.7177,1.42394,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186457,1,"Pont Rouge",43.7149,1.40483,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186458,1,"Gamouna",43.7214,1.40739,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186459,1,"Ecole Bruguières",43.7235,1.40958,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186460,1,"Bruguières Mairie",43.7274,1.41264,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186461,1,"Hortensias",43.7255,1.4155,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186462,1,"Bruguet",43.7222,1.41535,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186466,1,"Rigal",43.6426,1.43911,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186467,1,"Baron",43.6454,1.43924,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186468,1,"Rispet",43.6487,1.43891,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186469,1,"Croix Bénite",43.6542,1.43766,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186470,1,"Turlu",43.6577,1.43873,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186471,1,"Chemin des Izards",43.6609,1.4391,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186474,1,"Fourquets",43.6719,1.45007,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186475,1,"Gendarmerie",43.6724,1.45236,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186476,1,"Chalets",43.6765,1.45614,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186477,1,"Mirabelles",43.6787,1.45433,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186478,1,"Renée Aspe",43.6805,1.45293,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186479,1,"Rond-point Chalets",43.6823,1.45122,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186481,1,"Clotildes",43.6927,1.45066,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186482,1,"Peyrandrieu",43.696,1.45079,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186483,1,"Turtelle",43.7026,1.45925,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186484,1,"Bellevue",43.703,1.46159,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186485,1,"Panchaud",43.7022,1.46452,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186486,1,"Mimosas",43.7007,1.47062,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186487,1,"Bonnecarrère",43.6995,1.47253,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186488,1,"Pins",43.6979,1.47518,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186489,1,"Puntous",43.6969,1.47689,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186491,1,"Roche",43.709,1.47137,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186492,1,"Cimetière Montberon",43.713,1.47675,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186493,1,"Fontaine",43.7147,1.47835,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186494,1,"Eglise Montberon",43.716,1.48006,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186495,1,"Chaumière",43.5385,1.48073,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186496,1,"Moulin Armand",43.5307,1.48755,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186498,1,"Peupliers",43.5232,1.49445,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186499,1,"Ecole Castanet",43.5199,1.49629,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186501,1,"Peries",43.5127,1.50138,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186502,1,"Blum",43.5139,1.50446,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186503,1,"Castanet République",43.517,1.50235,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186504,1,"Verte Prairie",43.5183,1.50466,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186505,1,"Artaud",43.5207,1.50545,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186513,1,"Montagne",43.59,1.36981,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186514,1,"Pont du Touch",43.59,1.36651,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186515,1,"Briqueterie",43.5891,1.3621,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186516,1,"Centre Commercial Tournefeuille",43.588,1.35365,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186517,1,"Alphonse Daudet",43.5878,1.35094,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186518,1,"Montjoie",43.5862,1.34736,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186519,1,"Montel",43.5851,1.3428,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186520,1,"Languedoc",43.5861,1.34112,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186523,1,"Rouergue",43.5838,1.33308,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186524,1,"Ile de France",43.5838,1.32984,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186525,1,"Camargue",43.5842,1.32663,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186526,1,"Touraine",43.5877,1.32203,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186527,1,"Pagnol",43.5899,1.31964,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186528,1,"Casteret",43.5942,1.40174,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186531,1,"Grande-Bretagne",43.6019,1.4037,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186533,1,"Flambère",43.6085,1.39038,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186534,1,"Bisson",43.6083,1.38286,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186536,1,"Bertier",43.6084,1.37787,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186537,1,"Bouriette",43.6087,1.37389,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186538,1,"Terce Airbus",43.6069,1.36402,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186539,1,"Fontaine",43.6094,1.35366,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186541,1,"Naurouze",43.6093,1.34464,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186549,1,"Champagne",43.6168,1.33068,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186553,1,"14ème Régiment d'Infanterie",43.6138,1.33134,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186554,1,"Val d'Aran",43.6115,1.33002,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186557,1,"Ossau",43.6056,1.3338,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186558,1,"Blanquette",43.6058,1.3312,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186560,1,"De Musset",43.5878,1.35599,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186561,1,"Castell",43.5873,1.35462,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186562,1,"Cimetière Tournefeuille",43.5863,1.35257,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186563,1,"Cité du Parc",43.5855,1.3503,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186564,1,"Résistance",43.5846,1.34776,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186565,1,"Eglise Tournefeuille",43.5837,1.34594,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186566,1,"Résidence d'Oc",43.5797,1.34256,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186567,1,"Touch",43.5784,1.34307,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186568,1,"Tilleuls",43.5782,1.34096,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186569,1,"Amandier",43.5797,1.3388,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186570,1,"Catalpas",43.5787,1.33511,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186571,1,"Noisetiers",43.5775,1.33118,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186572,1,"Gaston Doumergue",43.5834,1.34109,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186573,1,"Adour",43.5812,1.33563,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186574,1,"Route de Tarbes",43.5796,1.33183,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186575,1,"Mirabeau",43.575,1.31971,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186576,1,"Bernadet",43.5718,1.3121,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186577,1,"Loti",43.5684,1.30905,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186578,1,"Estujats",43.5671,1.30702,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186579,1,"Pécheurs",43.5663,1.30319,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186580,1,"Juncasse",43.5658,1.30036,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186581,1,"Capelles",43.5634,1.29572,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186582,1,"Fauvettes",43.5613,1.29253,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186583,1,"Casse",43.5606,1.29081,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186584,1,"Rouch",43.5616,1.28902,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186585,1,"Fontaines",43.6,1.42021,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186586,1,"Bourrassol",43.6019,1.42022,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186587,1,"Wagner",43.604,1.41989,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186588,1,"Décamps",43.6046,1.41782,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186589,1,"Capoul",43.6065,1.4143,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186590,1,"Biarritz",43.6079,1.4107,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186595,1,"Murillo",43.6046,1.40719,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186596,1,"Foyer Toulousain",43.6066,1.40824,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186597,1,"Ducis",43.6096,1.40597,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186598,1,"Gériatrie",43.6131,1.40195,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186599,1,"Cauterets",43.6155,1.39947,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186600,1,"Charolais",43.6174,1.39828,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186606,1,"Les Tourelles",43.591,1.39779,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186607,1,"Fronde",43.5847,1.3947,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186608,1,"Châtaigniers",43.5864,1.3907,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186609,1,"Molette",43.5856,1.38745,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186610,1,"Villèle",43.5851,1.38489,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186611,1,"Mazaygues",43.5844,1.38153,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186612,1,"Corneillan",43.5832,1.37749,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186613,1,"Ardennes",43.5827,1.37382,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186615,1,"Ramelet Moundi",43.5799,1.36277,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186616,1,"Prat",43.579,1.35864,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186618,1,"Cascade",43.5752,1.34586,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186619,1,"Sources",43.5737,1.34275,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186620,1,"Bois Joli",43.5721,1.33947,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186621,1,"Petit Marquis",43.5703,1.33574,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186622,1,"Marquisat",43.5695,1.33313,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186623,1,"Brunet Faure",43.5677,1.32859,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186624,1,"Pont",43.5664,1.32476,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186625,1,"Charlas",43.5644,1.31811,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186626,1,"Jules Verne",43.5583,1.31019,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186627,1,"Jonquilles",43.5617,1.30491,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186628,1,"Montaigne",43.5626,1.30218,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186629,1,"Maison de Retraite",43.5637,1.29938,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186631,1,"Alouettes",43.5528,1.47085,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186632,1,"Violettes",43.5537,1.47473,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186633,1,"Cigognes",43.5514,1.4758,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186634,1,"Pompidou",43.5491,1.47735,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186635,1,"Marnac",43.5458,1.47838,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186636,1,"Ormes",43.5417,1.48372,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186637,1,"Jacques Prévert",43.542,1.48688,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186641,1,"Soeurs",43.6309,1.39733,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186642,1,"Croix Blanche",43.6334,1.3973,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186646,1,"Patinoire-Barradels",43.6404,1.38235,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186652,1,"Place du Relais",43.6372,1.39019,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186653,1,"Pasteur-Mairie de Blagnac",43.6341,1.3913,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186655,1,"Gauguin",43.6413,1.38788,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186657,1,"Stade Andromède",43.6554,1.38147,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186660,1,"Marquette",43.6672,1.37725,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186661,1,"Erables",43.6673,1.37505,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186662,1,"Beau Soleil",43.6702,1.37342,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186663,1,"Noisetiers",43.6701,1.37092,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186664,1,"Tricheries",43.6814,1.36635,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186665,1,"Satre",43.6841,1.36474,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186666,1,"Rond-point du Golf",43.6862,1.36055,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186671,1,"Dinetard",43.6139,1.4761,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186672,1,"Soupetard",43.6123,1.47732,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186673,1,"Surcouf",43.6105,1.47886,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186674,1,"Solidarité",43.6085,1.48052,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186675,1,"Soumet",43.6069,1.48211,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186677,1,"Stade",43.6083,1.48779,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186678,1,"Aérostiers",43.6095,1.48986,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186680,1,"Edgar Quinet",43.6096,1.49315,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186681,1,"Caraïbes",43.6098,1.49544,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186682,1,"Provence",43.6099,1.50057,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186683,1,"Roussillon",43.6111,1.50396,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186684,1,"Ecole Saint-Exupéry",43.6126,1.50615,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186685,1,"Lac Saint-Clair",43.6141,1.50866,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186686,1,"Carrel",43.6157,1.50793,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186687,1,"Pins",43.6163,1.5037,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186688,1,"Château d'eau",43.6188,1.50475,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186689,1,"Paradoux",43.6211,1.50884,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186690,1,"Sironis",43.6211,1.51232,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186691,1,"Panorama",43.6202,1.51481,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186692,1,"Route de Mons",43.6098,1.50368,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186693,1,"Max Linder",43.6091,1.5072,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186694,1,"Bernadotte",43.6085,1.51109,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186695,1,"Aussire",43.6073,1.51428,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186696,1,"Le Grand Bois",43.6049,1.51155,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186698,1,"Cimetière Balma",43.6001,1.5071,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186699,1,"La Tour",43.6091,1.50274,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186700,1,"Jeux Floraux",43.6078,1.5022,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186701,1,"Mairie Balma",43.6055,1.50218,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186702,1,"Mallarmé",43.6034,1.50465,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186703,1,"Jasmin",43.603,1.50404,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186704,1,"Rimbaud",43.6022,1.50067,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186705,1,"Lagarde",43.6013,1.49727,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186706,1,"Clos Fleuri",43.5984,1.50057,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186707,1,"Clos Saint-Martin",43.5973,1.50278,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186708,1,"Ecole Balma",43.5978,1.50554,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186709,1,"Gauguin",43.596,1.5064,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186710,1,"Cézanne",43.5952,1.50531,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186718,1,"Madeleine",43.5987,1.54744,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186719,1,"La Lie",43.5942,1.55786,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186720,1,"Digue",43.5944,1.55941,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186721,1,"Aufréry",43.612,1.52705,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186733,1,"Cerbère",43.6483,1.47357,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186734,1,"La Palme",43.6464,1.47541,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186735,1,"La Franqui",43.6465,1.47857,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186736,1,"Orthez",43.6482,1.48093,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186737,1,"Saint-Jean Pied de Port",43.6487,1.48488,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186739,1,"Mandelieu",43.6486,1.49209,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186740,1,"Grasse",43.6495,1.49638,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186741,1,"Menton",43.6516,1.49762,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186742,1,"Dancelle",43.6536,1.49924,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186743,1,"Bessayre",43.6537,1.50127,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186744,1,"Açores",43.654,1.50356,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186745,1,"Renée Aspe",43.6538,1.507,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186746,1,"Flotis",43.6541,1.51054,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186747,1,"Imbertis",43.6592,1.51526,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186748,1,"Stade",43.6614,1.51255,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186749,1,"Blanqui",43.6636,1.50953,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186751,1,"Belle Hôtesse",43.66,1.48904,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186752,1,"Mirabelles",43.661,1.49202,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186753,1,"Coteaux",43.6621,1.49528,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186755,1,"Eglise Saint-Jean",43.6671,1.50269,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186756,1,"Ecole Saint-Jean",43.669,1.49941,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186757,1,"Tamaris",43.6698,1.4973,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186758,1,"Charmes",43.6711,1.49788,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186759,1,"Montrabé",43.6664,1.50727,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186760,1,"Charlary",43.6681,1.51141,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186761,1,"Clos du Loup",43.6699,1.51571,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186762,1,"Viste",43.6695,1.51701,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186763,1,"Moulin",43.6682,1.52015,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186764,1,"Château",43.6689,1.52664,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186766,1,"Rouergue",43.6757,1.52847,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186767,1,"Pissebaque",43.6764,1.53988,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186768,1,"Cammas",43.6755,1.54436,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186769,1,"Rebel",43.6775,1.54287,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186771,1,"Truffaut",43.6799,1.53783,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186772,1,"Stade",43.6805,1.53343,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186774,1,"Violette",43.66,1.47037,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186775,1,"Azalées",43.6643,1.47179,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186776,1,"Cornaudric",43.6656,1.47281,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186777,1,"Victor Hugo",43.6765,1.47782,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186778,1,"Bordettes",43.6796,1.47741,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186779,1,"Mottes",43.6816,1.48037,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186780,1,"Massebiau",43.6825,1.48346,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186781,1,"Frosines",43.6861,1.48707,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186786,1,"Le Fossat",43.6887,1.50394,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186788,1,"Domaniaux",43.6927,1.50916,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186789,1,"Barranquet",43.6925,1.51234,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186790,1,"Cimetière Lapeyrouse",43.6908,1.5155,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186791,1,"Heredia",43.6124,1.46736,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186792,1,"Jean Chaubet",43.6038,1.47488,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186794,1,"Nollet",43.5905,1.51121,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186796,1,"Montels",43.5868,1.5209,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186797,1,"Ribaute",43.5887,1.51585,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186798,1,"Pyrénées",43.5857,1.52532,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186800,1,"Fonsegrives Centre",43.5855,1.52898,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186808,1,"Chêne Vert",43.5883,1.58268,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186810,1,"ZI Drémil",43.5948,1.59249,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186812,1,"Dufour",43.5856,1.4659,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186814,1,"Buissonnets",43.5827,1.47307,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186816,1,"Six Avril",43.5814,1.47624,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186817,1,"Clinique Languedoc",43.5777,1.48571,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186818,1,"Ormeau",43.5791,1.48313,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186820,1,"Bajac",43.5757,1.48863,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186821,1,"Lafaurie",43.574,1.49146,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186822,1,"Route de Revel",43.5688,1.50382,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186823,1,"Cayras",43.5692,1.51306,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186824,1,"Catala",43.5694,1.51686,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186825,1,"Gymnase",43.5682,1.52068,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186826,1,"Saint-Orens Centre Commercial",43.5652,1.51923,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186827,1,"Champs Pinsons",43.5632,1.51851,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186828,1,"Marqueille",43.5624,1.5209,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186829,1,"Cammas",43.5621,1.5244,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186830,1,"Vallon",43.5612,1.52727,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186831,1,"Partanaïs",43.5604,1.52998,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186832,1,"Coustou",43.5597,1.53458,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186833,1,"Querqueille",43.5582,1.53873,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186834,1,"Carabènes",43.557,1.54291,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186835,1,"Place du Souvenir",43.5536,1.54284,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186836,1,"Fondargent",43.5616,1.51846,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186837,1,"Galapagos",43.5601,1.51807,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186838,1,"Iles",43.5581,1.51908,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186839,1,"Saphirs",43.5558,1.52066,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186840,1,"Chênaie",43.5539,1.52417,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186841,1,"Beauvoir",43.5555,1.52635,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186842,1,"Sicard",43.5582,1.52731,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186844,1,"Labouilhe",43.5481,1.53677,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186845,1,"Mûriers",43.5496,1.53841,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186846,1,"Clinique",43.5434,1.54163,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186847,1,"Orée du Bois",43.5421,1.5439,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186849,1,"Poste de Saint-Orens",43.5546,1.53201,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186852,1,"Malepère",43.5674,1.50608,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186853,1,"Monso",43.5593,1.50301,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186854,1,"Grande Borde",43.5544,1.50636,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186855,1,"Planck",43.5516,1.50992,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186857,1,"Tolosane",43.5458,1.51047,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186858,1,"Rostand",43.5434,1.51202,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186859,1,"Village d'Entreprise",43.5422,1.51173,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186860,1,"De Gennes",43.5409,1.51248,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186861,1,"Campus de Bissy",43.5385,1.51556,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186862,1,"Périgord",43.5352,1.52008,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186865,1,"Occitanie",43.5295,1.53107,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186867,1,"Brassens",43.5344,1.53674,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186868,1,"Fontaine du Laurier",43.5364,1.53476,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186869,1,"Tricou",43.5384,1.53188,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186870,1,"Canteloup",43.5413,1.53183,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186871,1,"Armentières",43.5718,1.48665,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186872,1,"Payssat",43.5707,1.48765,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186874,1,"Rodier",43.5666,1.48959,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186875,1,"Villet",43.5644,1.4907,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186876,1,"Cosmonautes",43.5636,1.49643,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186878,1,"DR PMU",43.547,1.50468,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186879,1,"Commerce",43.5499,1.50214,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186880,1,"High Tech Innopole",43.5461,1.50551,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186881,1,"Centre Commercial Labège",43.5492,1.50609,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186882,1,"Labourgade",43.5462,1.51634,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186883,1,"Route de Labège",43.5428,1.52049,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186884,1,"Chêne Vert",43.5411,1.52242,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186885,1,"Guiraudie-Aufève",43.5389,1.52515,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186886,1,"Route de Castanet",43.5372,1.52739,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186887,1,"Beau Séjour",43.5346,1.53094,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186888,1,"Payssière",43.5328,1.53317,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186889,1,"Chantecaille",43.528,1.53799,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186890,1,"Troubadours",43.5261,1.53976,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186891,1,"Cousquille",43.5182,1.54616,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186892,1,"En Poutet",43.5175,1.54846,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186893,1,"Lauragais",43.5159,1.55218,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186894,1,"Borde Haute",43.514,1.55605,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186895,1,"Centre Commercial Escalquens",43.5146,1.55847,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186896,1,"Pastel",43.516,1.55972,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186898,1,"La Place",43.5238,1.56306,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186900,1,"Lesperous",43.5297,1.55408,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186901,1,"Quai de Tounis",43.5973,1.44026,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186902,1,"Garonnette",43.5953,1.44061,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186903,1,"Chaussée",43.5934,1.44246,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186904,1,"Daste",43.5815,1.43847,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186905,1,"Empalot Sud",43.5774,1.43726,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186907,1,"Ecole Jules Julien",43.5758,1.45551,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186908,1,"Libellules",43.5743,1.45772,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186910,1,"Hôpital des Enfants",43.6111,1.40388,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186911,1,"La Ramée",43.5684,1.36552,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186912,1,"LAAS",43.5641,1.4743,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186913,1,"Occitanie",43.5437,1.47898,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186919,1,"Corail",43.5528,1.52379,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186920,1,"Vestales",43.551,1.51972,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186922,1,"Bouloc",43.5858,1.46315,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186923,1,"Soupetard Salonique",43.6094,1.47065,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186926,1,"Coubertin",43.7208,1.41244,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186928,1,"Marcaissonne",43.5671,1.50912,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186929,1,"Marly",43.6264,1.39852,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837186930,1,"Monastère",43.6295,1.39759,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837187524,1,"ZI Montredon",43.6382,1.50039,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837187526,1,"Logis Vieux",43.6435,1.52082,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837187576,1,"Antibes",43.6479,1.48974,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837187577,1,"AFPA",43.5587,1.49789,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837187578,1,"Château Madron",43.5588,1.50237,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837187579,1,"INP",43.5561,1.5035,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837187580,1,"Arts",43.5535,1.50431,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837187581,1,"Carmin",43.5514,1.50176,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837187855,1,"Le Broc",43.531,1.57751,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837187857,1,"Cimetière Fourquevaux",43.4982,1.62434,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837187923,1,"Las Puntos",43.4485,1.60666,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837188002,1,"Bruxelles",43.4633,1.56875,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837188005,1,"Esplanade",43.4591,1.57443,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837188008,1,"Ducharme",43.4996,1.51499,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837188009,1,"L'Espitalet",43.497,1.51804,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837188010,1,"Ticaille",43.4468,1.59783,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837188026,1,"Ayguesvives Collège",43.4365,1.599,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837188317,1,"Roussillon",43.5676,1.28064,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837188318,1,"Château d'eau",43.5762,1.2761,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837188320,1,"Bourdies",43.5727,1.28426,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837188429,1,"Larzac",43.5932,1.32378,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837188855,1,"Tuilerie",43.6163,1.29009,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837188856,1,"Château Cru",43.6128,1.26823,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837189277,1,"Mapad",43.6164,1.49517,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837189278,1,"Le Carral",43.6184,1.49586,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837189303,1,"Centre Commercial Blagnac",43.6477,1.3695,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837189307,1,"De Gaulle",43.643,1.38671,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837189326,1,"Bûches",43.6359,1.39398,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837189337,1,"Doret",43.6344,1.37668,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837189346,1,"Bordebasse",43.6377,1.37177,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837189357,1,"Petit Train",43.5769,1.31939,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837189360,1,"Longchamp",43.5925,1.32128,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837189394,1,"La Vimona",43.5286,1.34988,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837189395,1,"Lycée Matisse",43.531,1.35536,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837189397,1,"Goubard",43.5336,1.35928,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837189398,1,"Route de Portet",43.5355,1.36422,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837189431,1,"Jean Moulin",43.521,1.51075,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837189434,1,"INRA",43.5249,1.50031,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837189451,1,"Charles de Gaulle",43.4689,1.32388,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837189470,1,"Route de Cornebarrieu",43.6208,1.33575,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837189471,1,"Latécoère",43.6506,1.33345,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837189473,1,"Saint-Jean",43.6496,1.323,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837189475,1,"Croix d'Alliez",43.6616,1.30565,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837189484,1,"Périac",43.6717,1.32271,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837189489,1,"Vignes",43.6912,1.32483,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837189829,1,"Colomiers Airbus",43.6148,1.3532,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837189844,1,"Estérel",43.5953,1.32626,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837189845,1,"Cabirol",43.5968,1.32767,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837189846,1,"Tuileries",43.6014,1.33224,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837189860,1,"Piquemil",43.6123,1.31948,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837189866,1,"Stade Bendichou",43.618,1.32574,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190290,1,"Seysses Maison d'Arrêt",43.4891,1.32336,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190327,1,"Le Pin",43.4899,1.49946,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190328,1,"Mairie Lauzerville",43.5565,1.56449,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190329,1,"Mairie Auzielle",43.5418,1.56635,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190331,1,"Mairie Pechabou",43.5028,1.50904,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190339,1,"Place du Château",43.491,1.51682,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190340,1,"Le Moulin",43.4795,1.52597,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190341,1,"Eglise Corronsac",43.4746,1.49485,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190345,1,"La Chauge",43.6156,1.24991,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190346,1,"Eglise Lauzerville",43.5548,1.56677,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190347,1,"La Tuilerie",43.5522,1.56693,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190348,1,"Complexe sportif Nambours",43.547,1.56594,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190352,1,"Eglise Mondonville",43.6716,1.2865,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190353,1,"Centre Commercial Aussonne",43.6858,1.32198,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190359,1,"Dewoitine",43.6474,1.33584,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190360,1,"Centre de Détention",43.4825,1.32071,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190361,1,"Aussonne Agassines",43.6956,1.32652,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190363,1,"Eglise Pechabou",43.501,1.50952,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190364,1,"Lader",43.4947,1.50021,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190365,1,"Rodoloze d'en Haut",43.4843,1.51025,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190366,1,"Mairie Pompertuzat",43.4883,1.51287,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190367,1,"Lot Canelles",43.4849,1.52531,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190368,1,"L'Enclos du Château",43.4792,1.52528,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190369,1,"La Serre Beauregard",43.4767,1.50033,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190370,1,"La Place",43.4727,1.4914,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190371,1,"La Tour",43.462,1.50712,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190372,1,"Centre Village",43.4571,1.52132,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190375,1,"Mairie Belberaud",43.5073,1.56891,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190376,1,"Paradis",43.5048,1.56716,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190391,1,"Place de la Liberté",43.5067,1.61726,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190392,1,"La Vierge",43.5052,1.61976,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190393,1,"Tiffaut",43.4925,1.63852,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190395,1,"Ecole les Varennes",43.4773,1.68816,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190396,1,"Pradettes",43.4558,1.60971,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190397,1,"Bicinis",43.5076,1.60616,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190398,1,"Le Rivel",43.4586,1.60394,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190400,1,"Colomiers Ramassiers Gare SNCF",43.6019,1.35275,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190401,1,"Ecole Roques",43.5112,1.37554,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190402,1,"Bois",43.5103,1.37316,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190403,1,"Banque Populaire",43.6277,1.49126,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190454,1,"Saint-Caprais",43.6475,1.47079,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190455,1,"Glycines",43.6937,1.48309,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190456,1,"8 mai 1945",43.7068,1.46633,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190457,1,"Moureau",43.7109,1.46294,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190458,1,"Keller",43.7126,1.45912,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190459,1,"Le Grand",43.7161,1.45153,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190460,1,"Galaup",43.7191,1.44378,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190461,1,"Bois",43.7307,1.4181,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190462,1,"Les Palanques",43.729,1.42055,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190463,1,"Hespérides",43.7273,1.42478,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190510,1,"Palombe Colombe",43.689,1.40941,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190511,1,"Bergeron",43.699,1.40642,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190512,1,"Rempart",43.7015,1.40463,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190513,1,"Sémart",43.6991,1.4033,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190514,1,"Terroir 1",43.7005,1.40221,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190515,1,"Terroir 2",43.7031,1.40116,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190516,1,"ZI Petit Paradis",43.7132,1.39654,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190517,1,"Industrie",43.7169,1.39307,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190518,1,"Bénélux",43.7207,1.39233,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190519,1,"Capdejouan",43.7212,1.39505,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190520,1,"ZI Euro Nord",43.7245,1.39741,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190521,1,"Fonbeauzard Mairie",43.6797,1.42675,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190525,1,"Vendanges",43.6798,1.43144,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190526,1,"Mermoz",43.6815,1.43515,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190530,1,"Mireille",43.6347,1.52088,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190531,1,"Mont Pin",43.6388,1.52166,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190532,1,"Vignobles",43.6403,1.52084,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190533,1,"Belle Fontaine",43.6416,1.51788,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190534,1,"Pastel",43.6432,1.51448,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190535,1,"La Rivière",43.6456,1.52646,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190536,1,"Montrabé Stade",43.6476,1.52807,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190537,1,"Mistral",43.6487,1.53255,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190538,1,"La Fount",43.6201,1.50324,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190539,1,"Boëly",43.6171,1.52055,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190540,1,"Lancefoc",43.6027,1.5462,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190541,1,"Lac",43.5961,1.56396,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190542,1,"Coupette",43.5949,1.56993,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190543,1,"Lasserre",43.593,1.57339,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190544,1,"En Batut",43.5916,1.57659,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190546,1,"Drémil Stade",43.601,1.60538,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190557,1,"Mairie Lapeyrouse",43.6923,1.51692,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190558,1,"Cabanis",43.6914,1.50641,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190559,1,"Barbe d'Or",43.6868,1.50619,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190560,1,"Quatre Coins",43.685,1.51223,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190561,1,"Gymnase",43.6691,1.50472,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190562,1,"Jean Moulin",43.6668,1.49818,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190563,1,"Estaquebiau",43.6649,1.49323,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190564,1,"Darasse",43.5914,1.48029,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190565,1,"Bois de Limayrac",43.5903,1.48318,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190566,1,"Julien",43.5902,1.48983,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190567,1,"Couzinet",43.5836,1.493,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190568,1,"Moulinais",43.5809,1.49465,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190570,1,"Négogousses",43.5929,1.41058,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190571,1,"La Plaine",43.5788,1.49625,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190573,1,"Ecole Sablettes",43.6552,1.44832,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190574,1,"Faïence",43.6572,1.45471,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190579,1,"Bousquet",43.5445,1.51841,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190581,1,"Arènes Al Pechiou",43.6142,1.48913,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190582,1,"Benech",43.6161,1.50606,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190584,1,"Belaval",43.6972,1.48258,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190585,1,"Les Capitelles",43.6917,1.44189,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190586,1,"Graves",43.6929,1.43918,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190590,1,"Sausse",43.6512,1.51442,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190594,1,"Plana",43.606,1.48155,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190597,1,"Ratalens",43.6494,1.51047,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190598,1,"Platanes",43.6663,1.52409,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190600,1,"Vignes",43.6949,1.43852,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190607,1,"Doumergue",43.6217,1.50042,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190608,1,"Giratoire Truffaut",43.6341,1.50082,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190609,1,"Le Chapitre",43.633,1.50786,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190610,1,"Pasteur",43.6535,1.51192,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190611,1,"Granaillet",43.4908,1.52597,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190612,1,"La Tour",43.5109,1.56484,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190613,1,"Carrière",43.5109,1.5701,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190614,1,"D59",43.6477,1.50557,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190616,1,"Fournier Airbus",43.6074,1.36646,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190617,1,"Jardinerie",43.607,1.36954,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190618,1,"Caulet",43.6066,1.35373,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190628,1,"Aéroconstellation",43.6631,1.36291,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190645,1,"Fonsegrives Collège",43.5795,1.5386,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190653,1,"Montbrun Lauragais Roumieu",43.4439,1.51552,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190658,1,"Claverie",43.4468,1.51665,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190659,1,"Lanes",43.4548,1.52116,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190660,1,"Mairie Odars",43.5235,1.58888,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190661,1,"Bel Horizon",43.5273,1.58839,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190670,1,"Aussonnelle",43.691,1.35702,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837190671,1,"Aérodrome",43.5945,1.49744,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837337482,1,"Collège Bétance",43.4523,1.32857,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837337484,1,"Gaston Bonheur",43.4565,1.32961,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837337510,1,"ZI La Piche",43.4905,1.31542,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837337519,1,"Base Aérienne",43.538,1.36957,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837337522,1,"Pompidou",43.5333,1.34873,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837337526,1,"Centre Commercial Cugnaux",43.5309,1.35072,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837337536,1,"Europe",43.4679,1.3312,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837337540,1,"Del Pujol",43.4652,1.33189,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837337548,1,"Firmin Magne",43.4641,1.33031,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837337550,1,"Collège Montrabé",43.6424,1.53823,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837337556,1,"Louradou",43.6727,1.50992,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837337560,1,"Chemin Castelviel",43.6777,1.51241,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837343215,1,"Cimetière Villeneuve",43.5247,1.36924,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837343218,1,"Gatasses",43.5238,1.36626,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837343221,1,"Bourrouil",43.5232,1.36314,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837343224,1,"Collège",43.523,1.35837,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837343227,1,"Rossignolis",43.5235,1.35448,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837343230,1,"Vanniers",43.5229,1.35051,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837343233,1,"Jean Marais",43.5222,1.34695,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837343236,1,"Boulodrome",43.5217,1.34283,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837348372,1,"Rond-point de l'Espace",43.5465,1.38797,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837363849,1,"Ingine",43.5265,1.56413,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837363857,1,"ZA Jean Mermoz",43.646,1.34988,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837363861,1,"Berlioz",43.6556,1.31896,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837384878,1,"De Pisan",43.6298,1.44828,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837384881,1,"Kahn Klein",43.631,1.44514,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837407138,1,"IUT Rangueil",43.5694,1.46535,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837408402,1,"Stadium Ouest",43.5845,1.43168,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837431396,1,"Nasque",43.5979,1.3212,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837431402,1,"Puymorens",43.5818,1.28101,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837431405,1,"Mûriers",43.5795,1.28535,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837431420,1,"Belbèze",43.6546,1.50136,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837431423,1,"Fauré",43.657,1.5025,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837431428,1,"Lespinasse Mairie",43.7113,1.39269,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837448244,1,"Hôpital Larrey",43.5523,1.4536,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837481601,1,"Rond-point Périgord",43.5331,1.52288,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837482764,1,"L'écrin",43.5512,1.51607,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837482768,1,"Av. de Toulouse",43.5605,1.52302,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837501985,1,"Le Brix",43.6227,1.46265,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837501987,1,"Louin",43.629,1.44993,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837501989,1,"Maourine",43.631,1.44956,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837501993,1,"Lanusse",43.6357,1.45285,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837501995,1,"Monloup",43.6372,1.4528,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837501999,1,"Chemin de Borderouge",43.643,1.45678,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837502001,1,"Ebelot",43.6431,1.4614,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837509689,1,"Ségla",43.633,1.45069,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837509717,1,"Campardon",43.6219,1.46558,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837530150,1,"Négrier",43.6655,1.49593,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837560348,1,"Netwiller",43.6424,1.46585,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837584494,1,"Labourdette",43.721,1.43922,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837636060,1,"Mitterrand",43.5876,1.33756,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837636063,1,"Gymnase",43.5857,1.33481,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837636067,1,"Vandel",43.5788,1.37843,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837636070,1,"Phidias",43.5809,1.37418,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837636074,1,"Grynfogel",43.5798,1.36792,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837636086,1,"Picasso",43.5917,1.31834,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837636097,1,"Hall Comminges",43.6092,1.33088,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837648456,1,"Piscine Saint-Orens",43.5334,1.55354,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837648460,1,"Parc du Canal",43.5535,1.48489,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837648738,1,"Champs Magnétiques",43.5663,1.46841,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837653403,1,"Max Planck",43.5496,1.51492,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837653558,1,"Montségur",43.5993,1.60429,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837771101,1,"Carènes",43.624,1.48414,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837774688,1,"Verdaï",43.5262,1.36972,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837774691,1,"Pradié",43.5276,1.37168,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837788963,1,"La Bisto",43.6683,1.51473,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837798186,1,"Ecureuil",43.4884,1.49844,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837799030,1,"Poumirol",43.5007,1.5164,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837799032,1,"Raisin",43.5057,1.51498,,1,,Europe/Paris,,OTL, +OTL:SA:1970324837822856,1,"Sapins",43.5771,1.32853,,1,,Europe/Paris,,OTL, +OTL:SA:1970324838111155,1,"Joliot Curie",43.5511,1.48427,,1,,Europe/Paris,,OTL, +OTL:SA:1970324838111157,1,"Hermès",43.5497,1.4863,,1,,Europe/Paris,,OTL, +OTL:SA:1970324838172226,1,"Jean Petit",43.6051,1.36165,,1,,Europe/Paris,,OTL, +OTL:SA:1970324838200625,1,"Collège Labitrie",43.5788,1.32486,,1,,Europe/Paris,,OTL, +OTL:SA:1970324838200627,1,"Bordeneuve",43.578,1.32195,,1,,Europe/Paris,,OTL, +OTL:SA:1970324838270002,1,"Marie Curie",43.4939,1.31189,,1,,Europe/Paris,,OTL, +OTL:SA:1970324838318933,1,"Sarah Bernhardt",43.6515,1.43823,,1,,Europe/Paris,,OTL, +OTL:SA:1970324838318946,1,"Stadium Est",43.5842,1.43723,,1,,Europe/Paris,,OTL, +OTL:SA:1970324838318954,1,"Rangueil",43.5746,1.46221,,1,,Europe/Paris,,OTL, +OTL:SA:1970324838318967,1,"Claude Bernard",43.6367,1.44093,,1,,Europe/Paris,,OTL, +OTL:SA:1970324838318971,1,"Boulbonne",43.6006,1.44774,,1,,Europe/Paris,,OTL, +OTL:SA:1970324838318979,1,"Salin-Parlement",43.5945,1.44427,,1,,Europe/Paris,,OTL, +OTL:SA:1970324838318991,1,"Pujibet",43.6351,1.4554,,1,,Europe/Paris,,OTL, +OTL:SA:1970324838319014,1,"Aristote",43.5839,1.45626,,1,,Europe/Paris,,OTL, +OTL:SA:1970324838319020,1,"Provence",43.582,1.45767,,1,,Europe/Paris,,OTL, +OTL:SA:1970324838319024,1,"Saouzelong",43.5795,1.45937,,1,,Europe/Paris,,OTL, +OTL:SA:1970324838319032,1,"Pastourelles",43.5768,1.45568,,1,,Europe/Paris,,OTL, +OTL:SA:1970324838319080,1,"La Vache",43.6336,1.43509,,1,,Europe/Paris,,OTL, +OTL:SA:1970324838348797,1,"Lécrivain",43.5738,1.48889,,1,,Europe/Paris,,OTL, +OTL:SA:1970324838348807,1,"Passerelle Saint-Sauveur",43.5942,1.45713,,1,,Europe/Paris,,OTL, +OTL:SA:1970324838348810,1,"Archives Départementales",43.5904,1.46054,,1,,Europe/Paris,,OTL, +OTL:SA:1970324838348813,1,"Collège André Malraux",43.5491,1.47951,,1,,Europe/Paris,,OTL, +OTL:SA:1970324838348816,1,"8 mai 1945",43.5407,1.48175,,1,,Europe/Paris,,OTL, +OTL:SA:1970324838348831,1,"Monturon",43.6166,1.31045,,1,,Europe/Paris,,OTL, +OTL:SA:1970324838348834,1,"Colomiers Lycée International",43.6173,1.30876,,1,,Europe/Paris,,OTL, +OTL:SA:1970324838479691,1,"Cordeau",43.626,1.44471,,1,,Europe/Paris,,OTL, +OTL:SA:1970324838479709,1,"Sainte-Hélène",43.6235,1.45886,,1,,Europe/Paris,,OTL, +OTL:SA:1970324838482008,1,"Centre Commercial Castanet",43.5213,1.51298,,1,,Europe/Paris,,OTL, +OTL:SA:1970324838547367,1,"Chopin",43.6439,1.45887,,1,,Europe/Paris,,OTL, +OTL:SA:1970324838561162,1,"Centre Commercial",43.683,1.44723,,1,,Europe/Paris,,OTL, +OTL:SA:1970324838561165,1,"Esparcette",43.6841,1.44103,,1,,Europe/Paris,,OTL, +OTL:SA:1970324838561171,1,"Tournefeuille Lycée",43.5764,1.31431,,1,,Europe/Paris,,OTL, +OTL:SA:1970324838561174,1,"Castanet-Tolosan",43.5085,1.50693,,1,,Europe/Paris,,OTL, +OTL:SA:1970324838742292,1,"Platanes",43.5864,1.43942,,1,,Europe/Paris,,OTL, +OTL:SA:1970324838773902,1,"Monplaisir",43.5831,1.53396,,1,,Europe/Paris,,OTL, +OTL:SA:1970324838833289,1,"Terroir 3",43.7063,1.39967,,1,,Europe/Paris,,OTL, +OTL:SA:1970324838833582,1,"CNES",43.5563,1.48144,,1,,Europe/Paris,,OTL, +OTL:SA:1970324838834149,1,"Adonis",43.6305,1.42365,,1,,Europe/Paris,,OTL, +OTL:SA:1970324838834151,1,"Pont de Ginestou",43.633,1.42291,,1,,Europe/Paris,,OTL, +OTL:SA:1970324838834153,1,"Laurencin",43.6354,1.41809,,1,,Europe/Paris,,OTL, +OTL:SA:1970324838834155,1,"Eberhardt",43.6401,1.41549,,1,,Europe/Paris,,OTL, +OTL:SA:1970324838834157,1,"ZI La Glacière",43.6431,1.41631,,1,,Europe/Paris,,OTL, +OTL:SA:1970324838869897,1,"Montjoie",43.5387,1.46022,,1,,Europe/Paris,,OTL, +OTL:SA:1970324838869899,1,"Coustet",43.55,1.46719,,1,,Europe/Paris,,OTL, +OTL:SA:1970324838870378,1,"Porte de Virebent",43.6595,1.45396,,1,,Europe/Paris,,OTL, +OTL:SA:1970324838935581,1,"Tournesols",43.5838,1.51317,,1,,Europe/Paris,,OTL, +OTL:SA:1970324838936285,1,"Domaine",43.5762,1.34794,,1,,Europe/Paris,,OTL, +OTL:SA:1970324839002683,1,"Frouzins JP Sabatier",43.5252,1.3205,,1,,Europe/Paris,,OTL, +OTL:SA:1970324839056419,1,"Salas Montjoie",43.5401,1.46257,,1,,Europe/Paris,,OTL, +OTL:SA:1970324839056430,1,"Communauté Religieuse",43.6114,1.53138,,1,,Europe/Paris,,OTL, +OTL:SA:1970324839056456,1,"Vignalis",43.602,1.5444,,1,,Europe/Paris,,OTL, +OTL:SA:1970324839056505,1,"René Rey",43.6363,1.37552,,1,,Europe/Paris,,OTL, +OTL:SA:1970324839163923,1,"Tocqueville",43.6476,1.45631,,1,,Europe/Paris,,OTL, +OTL:SA:1970324839163925,1,"Ayral",43.6441,1.46179,,1,,Europe/Paris,,OTL, +OTL:SA:1970324839163927,1,"Maupassant",43.6443,1.46485,,1,,Europe/Paris,,OTL, +OTL:SA:1970324839163929,1,"Paléficat",43.6476,1.46522,,1,,Europe/Paris,,OTL, +OTL:SA:1970324839163931,1,"Champs de l'Hers",43.6505,1.46556,,1,,Europe/Paris,,OTL, +OTL:SA:1970324839163933,1,"Virebent",43.6534,1.46342,,1,,Europe/Paris,,OTL, +OTL:SA:1970324839163935,1,"Château",43.6507,1.46103,,1,,Europe/Paris,,OTL, +OTL:SA:1970324839163938,1,"Furet",43.6538,1.45972,,1,,Europe/Paris,,OTL, +OTL:SA:1970324839163940,1,"Félibres",43.6489,1.46329,,1,,Europe/Paris,,OTL, +OTL:SA:1970324839164058,1,"Elvire",43.5787,1.44662,,1,,Europe/Paris,,OTL, +OTL:SA:1970324839164060,1,"Miracles",43.5754,1.44942,,1,,Europe/Paris,,OTL, +OTL:SA:1970324839164062,1,"Tolstoï",43.5749,1.44323,,1,,Europe/Paris,,OTL, +OTL:SA:1970324839164064,1,"Bart",43.5712,1.44479,,1,,Europe/Paris,,OTL, +OTL:SA:1970324839164066,1,"Piscine Pech David",43.5659,1.44722,,1,,Europe/Paris,,OTL, +OTL:SA:1970324839164068,1,"Pech David",43.5613,1.44763,,1,,Europe/Paris,,OTL, +OTL:SA:1970324839218382,1,"Beauzelle - Aéroscopia",43.6603,1.36951,,1,,Europe/Paris,,OTL, +OTL:SA:1970324839218385,1,"Zénith",43.5948,1.40933,,1,,Europe/Paris,,OTL, +OTL:SA:1970324839218391,1,"Purpan",43.6091,1.40203,,1,,Europe/Paris,,OTL, +OTL:SA:1970324839218398,1,"Arènes Romaines",43.6138,1.39761,,1,,Europe/Paris,,OTL, +OTL:SA:1970324839218403,1,"Guyenne-Berry",43.631,1.39167,,1,,Europe/Paris,,OTL, +OTL:SA:1970324839218410,1,"Odyssud-Ritouret",43.6363,1.38524,,1,,Europe/Paris,,OTL, +OTL:SA:1970324839271191,1,"Cyprié",43.6098,1.51426,,1,,Europe/Paris,,OTL, +OTL:SA:1970324839329342,1,"Cinéma Occitane",43.5396,1.51256,,1,,Europe/Paris,,OTL, +OTL:SA:1970324839361574,1,"Oncopole",43.5548,1.43117,,1,,Europe/Paris,,OTL, +OTL:SA:1970324839397427,1,"Gutemberg",43.7212,1.39702,,1,,Europe/Paris,,OTL, +OTL:SA:1970324839397429,1,"Electronique",43.7189,1.39577,,1,,Europe/Paris,,OTL, +OTL:SA:1970324839467430,1,"Bd F. Mitterrand",43.5542,1.4749,,1,,Europe/Paris,,OTL, +OTL:SA:1970324839509696,1,"Chêne Vert",43.6966,1.37336,,1,,Europe/Paris,,OTL, +OTL:SA:1970324839578894,1,"Hubert Curien",43.5578,1.42701,,1,,Europe/Paris,,OTL, +OTL:SA:1970324839582108,1,"Painlevé",43.5224,1.32201,,1,,Europe/Paris,,OTL, +OTL:SA:1970324839582112,1,"Collège Picasso",43.5202,1.32034,,1,,Europe/Paris,,OTL, +OTL:SA:1970324839582116,1,"F. Mitterrand",43.5245,1.32283,,1,,Europe/Paris,,OTL, +OTL:SA:1970324839582125,1,"Landes",43.573,1.41653,,1,,Europe/Paris,,OTL, +OTL:SA:1970324839600836,1,"Courtois de Viçose",43.5698,1.4228,,1,,Europe/Paris,,OTL, +OTL:SA:1970324839637228,1,"Chemin des Martyrs",43.5705,1.41984,,1,,Europe/Paris,,OTL, +OTL:SA:1970324839642991,1,"Camille Soula",43.5824,1.43638,,1,,Europe/Paris,,OTL, +OTL:SA:1970324839684302,1,"J. B Dumas",43.6222,1.42599,,1,,Europe/Paris,,OTL, +OTL:SA:1970324839811784,1,"Les Vitarelles",43.7098,1.39126,,1,,Europe/Paris,,OTL, +OTL:SA:1970324839872880,1,"Saint-Pierre",43.5837,1.33668,,1,,Europe/Paris,,OTL, +OTL:SA:1970324839872886,1,"Aneto",43.6092,1.363,,1,,Europe/Paris,,OTL, +OTL:SA:1970324839872892,1,"Page",43.6033,1.35028,,1,,Europe/Paris,,OTL, +OTL:SA:1970324839872895,1,"Esplanade des Ramassiers",43.5988,1.35307,,1,,Europe/Paris,,OTL, +OTL:SA:1970324839872898,1,"Maillol",43.5966,1.34965,,1,,Europe/Paris,,OTL, +OTL:SA:1970324839872901,1,"Gabriel Fauré",43.594,1.34765,,1,,Europe/Paris,,OTL, +OTL:SA:1970324839872904,1,"Vercors",43.5902,1.34709,,1,,Europe/Paris,,OTL, +OTL:SA:1970324839872907,1,"Clément Ader",43.5875,1.34689,,1,,Europe/Paris,,OTL, +OTL:SA:1970324839872910,1,"Provence",43.5853,1.33959,,1,,Europe/Paris,,OTL, +OTL:SA:1970324839872913,1,"Périgord",43.5823,1.33321,,1,,Europe/Paris,,OTL, +OTL:SA:1970324839872916,1,"Alpilles",43.5804,1.32907,,1,,Europe/Paris,,OTL, +OTL:SA:1970324839872922,1,"Lilas",43.5109,1.55522,,1,,Europe/Paris,,OTL, +OTL:SA:1970324839872925,1,"A. Perdiguier",43.5131,1.55679,,1,,Europe/Paris,,OTL, +OTL:SA:1970324839881714,1,"Seel",43.5972,1.45667,,1,,Europe/Paris,,OTL, +OTL:SA:1970324839914121,1,"Joseph Hubert",43.6249,1.49163,,1,,Europe/Paris,,OTL, +OTL:SA:1970324839924872,1,"Place des Marots",43.6002,1.32305,,1,,Europe/Paris,,OTL, +OTL:SA:1970324839924874,1,"Esquillette",43.602,1.32521,,1,,Europe/Paris,,OTL, +OTL:SA:1970324839925814,1,"Max Fischl",43.6058,1.35928,,1,,Europe/Paris,,OTL, +OTL:SA:1970324839928071,1,"Buxtehude",43.6493,1.38224,,1,,Europe/Paris,,OTL, +OTL:SA:1970324839932625,1,"Paquerettes",43.5512,1.47287,,1,,Europe/Paris,,OTL, +OTL:SA:1970324839934074,1,"Jean Zay",43.6414,1.44674,,1,,Europe/Paris,,OTL, +OTL:SA:1970324839976619,1,"Collège Mermoz",43.646,1.38093,,1,,Europe/Paris,,OTL, +OTL:SA:1970324839976622,1,"Collège Rosa Parks",43.6436,1.43347,,1,,Europe/Paris,,OTL, +OTL:SA:1970324839978789,1,"Tonneliers",43.6458,1.38473,,1,,Europe/Paris,,OTL, +OTL:SA:1970324839978792,1,"Pont du Béarnais",43.612,1.42502,,1,,Europe/Paris,,OTL, +OTL:SA:1970324839978794,1,"ZAC Ponts Jumeaux",43.6119,1.4222,,1,,Europe/Paris,,OTL, +OTL:SA:1970324839978946,1,"Marcel Dassault",43.6419,1.36857,,1,,Europe/Paris,,OTL, +OTL:SA:1970324839978949,1,"Air France Industries",43.6455,1.36416,,1,,Europe/Paris,,OTL, +OTL:SA:1970324839978952,1,"Béteille",43.6524,1.36215,,1,,Europe/Paris,,OTL, +OTL:SA:1970324839978955,1,"Lagardère",43.6544,1.361,,1,,Europe/Paris,,OTL, +OTL:SA:1970324839978958,1,"Avenir",43.7081,1.38233,,1,,Europe/Paris,,OTL, +OTL:SA:1970324839979773,1,"Grillons",43.6613,1.37918,,1,,Europe/Paris,,OTL, +OTL:SA:1970324839979779,1,"Hirondelles",43.6623,1.37691,,1,,Europe/Paris,,OTL, +OTL:SA:1970324839979782,1,"Camélias",43.6659,1.3813,,1,,Europe/Paris,,OTL, +OTL:SA:1970324839979785,1,"Juncassa",43.669,1.36639,,1,,Europe/Paris,,OTL, +OTL:SA:1970324839979788,1,"Les Jardins du Panariol",43.6788,1.32304,,1,,Europe/Paris,,OTL, +OTL:SA:1970324839979939,1,"Savary",43.6513,1.37345,,1,,Europe/Paris,,OTL, +OTL:SA:1970324839983243,1,"Bruyère",43.4889,1.39731,,1,,Europe/Paris,,OTL, +OTL:SA:1970324840001193,1,"Joseph Strauss",43.6453,1.36546,,1,,Europe/Paris,,OTL, +OTL:SA:1970324840034504,1,"Coccinelles",43.6588,1.38105,,1,,Europe/Paris,,OTL, +OTL:SA:1970324840034506,1,"Cigognes",43.6641,1.37858,,1,,Europe/Paris,,OTL, +OTL:SA:1970324840225490,1,"Pélude",43.5711,1.46311,,1,,Europe/Paris,,OTL, +OTL:SA:1970324840227660,1,"Chaumière",43.6139,1.46608,,1,,Europe/Paris,,OTL, +OTL:SA:1970324840232143,1,"Sicard Alaman",43.5813,1.48952,,1,,Europe/Paris,,OTL, +OTL:SA:1970324840232146,1,"Capdenier",43.5789,1.4908,,1,,Europe/Paris,,OTL, +OTL:SA:1970324840232149,1,"Parc de Montaudran",43.5762,1.48975,,1,,Europe/Paris,,OTL, +OTL:SA:1970324840238292,1,"Cap Sicié",43.5983,1.31846,,1,,Europe/Paris,,OTL, +OTL:SA:1970324840238295,1,"Giratoire Pluton",43.5962,1.3011,,1,,Europe/Paris,,OTL, +OTL:SA:1970324840238298,1,"Centre de tri postal",43.5923,1.29992,,1,,Europe/Paris,,OTL, +OTL:SA:1970324840238301,1,"A. Perdiguier",43.5837,1.28921,,1,,Europe/Paris,,OTL, +OTL:SA:1970324840238304,1,"Italiens",43.5803,1.27307,,1,,Europe/Paris,,OTL, +OTL:SA:1970324840238309,1,"Béarn",43.567,1.2908,,1,,Europe/Paris,,OTL, +OTL:SA:1970324840248128,1,"Côteaux",43.5852,1.53269,,1,,Europe/Paris,,OTL, +OTL:SA:1970324840312211,1,"Rue du 14 juillet",43.5906,1.41478,,1,,Europe/Paris,,OTL, +OTL:SA:1970324840377831,1,"Varennes En Clavié",43.4746,1.68677,,1,,Europe/Paris,,OTL, +OTL:SA:1970324840384338,1,"Maison Commune",43.5575,1.43026,,1,,Europe/Paris,,OTL, +OTL:SA:1970324840530364,1,"Lalande",43.5488,1.51325,,1,,Europe/Paris,,OTL, +OTL:SA:1970324840530366,1,"Saint-Jean François Mitterrand",43.6651,1.50656,,1,,Europe/Paris,,OTL, +OTL:SA:1970324840530367,1,"Saint-Loup",43.6966,1.47932,,1,,Europe/Paris,,OTL, +OTL:SA:1970324840530368,1,"Cité Amouroux",43.6299,1.46882,,1,,Europe/Paris,,OTL, +OTL:SA:1970324840530370,1,"Cale",43.5811,1.46472,,1,,Europe/Paris,,OTL, +OTL:SA:1970324840530371,1,"Iliade",43.5962,1.48531,,1,,Europe/Paris,,OTL, +OTL:SA:1970324840530372,1,"Belloc Cité",43.6064,1.47439,,1,,Europe/Paris,,OTL, +OTL:SA:1970324840530374,1,"Harkis",43.668,1.50223,,1,,Europe/Paris,,OTL, +OTL:SA:1970324840530375,1,"Halles",43.5156,1.49877,,1,,Europe/Paris,,OTL, +OTL:SA:1970324840530376,1,"Bernières",43.557,1.52803,,1,,Europe/Paris,,OTL, +OTL:SA:1970324840530379,1,"Pins",43.5398,1.54751,,1,,Europe/Paris,,OTL, +OTL:SA:1970324840530380,1,"Gare routière",43.6135,1.45235,,1,,Europe/Paris,,OTL, +OTL:SA:1970324840530397,1,"Gymnase de l'Hers",43.5916,1.48978,,1,,Europe/Paris,,OTL, +OTL:SA:1970324840530398,1,"Borde Haute",43.6442,1.53158,,1,,Europe/Paris,,OTL, +OTL:SA:1970324840530399,1,"Bel Souleil",43.6449,1.54458,,1,,Europe/Paris,,OTL, +OTL:SA:1970324840530402,1,"Sers",43.6884,1.40581,,1,,Europe/Paris,,OTL, +OTL:SA:1970324840530403,1,"Damoysel",43.5488,1.39927,,1,,Europe/Paris,,OTL, +OTL:SA:1970324840530404,1,"Champollion",43.545,1.39611,,1,,Europe/Paris,,OTL, +OTL:SA:1970324840530405,1,"Château de Soule",43.535,1.47082,,1,,Europe/Paris,,OTL, +OTL:SA:1970324840530406,1,"Avenue Muret Marcel Cavaillé",43.5893,1.43178,,1,,Europe/Paris,,OTL, +OTL:SA:1970324840530407,1,"Ile du Ramier",43.5922,1.44043,,1,,Europe/Paris,,OTL, +OTL:SA:1970324840530409,1,"Nadot",43.6243,1.38667,,1,,Europe/Paris,,OTL, +OTL:SA:1970324840530410,1,"Daurat",43.6289,1.37934,,1,,Europe/Paris,,OTL, +OTL:SA:1970324840530414,1,"Maison de Retraite",43.5185,1.18461,,1,,Europe/Paris,,OTL, +OTL:SA:1970324840530416,1,"Piscine",43.513,1.17216,,1,,Europe/Paris,,OTL, +OTL:SA:1970324840530420,1,"Gafelaze",43.6878,1.41622,,1,,Europe/Paris,,OTL, +OTL:SA:1970324840530421,1,"Salvador Allende",43.6885,1.40833,,1,,Europe/Paris,,OTL, +OTL:SA:1970324840530422,1,"Etienne Hales",43.626,1.49453,,1,,Europe/Paris,,OTL, +OTL:SA:1970324840530423,1,"Meunier",43.7375,1.38011,,1,,Europe/Paris,,OTL, +OTL:SA:1970324840530424,1,"Ladoux",43.7403,1.3736,,1,,Europe/Paris,,OTL, +OTL:SA:1970324840530425,1,"Saint-Jory Centre",43.7406,1.37135,,1,,Europe/Paris,,OTL, +OTL:SA:1970324840530426,1,"Ecole du Lac",43.7435,1.37306,,1,,Europe/Paris,,OTL, +OTL:SA:1970324840530427,1,"La Plaine Tucol",43.7465,1.3703,,1,,Europe/Paris,,OTL, +OTL:SA:1970324840530428,1,"Berges du Canal",43.7417,1.36706,,1,,Europe/Paris,,OTL, +OTL:SA:1970324840530429,1,"Fabas",43.7372,1.36652,,1,,Europe/Paris,,OTL, +OTL:SA:1970324840530431,1,"Brunière",43.5953,1.44325,,1,,Europe/Paris,,OTL, +OTL:SA:1970324840530432,1,"Féral",43.596,1.44643,,1,,Europe/Paris,,OTL, +OTL:SA:1970324840530433,1,"Trois Banquets",43.5998,1.44809,,1,,Europe/Paris,,OTL, +OTL:SA:1970324840530434,1,"Saint Sernin",43.6088,1.44186,,1,,Europe/Paris,,OTL, +OTL:SA:1970324840530435,1,"Embarthe",43.608,1.43832,,1,,Europe/Paris,,OTL, +OTL:SA:1970324840530436,1,"Quai Saint-Pierre",43.6036,1.43525,,1,,Europe/Paris,,OTL, +OTL:SA:1970324840530438,1,"Quai de la Daurade",43.6001,1.44018,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131941890,1,"Braves",43.6008,1.41939,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131941893,1,"Dufaur de Pibrac",43.6017,1.41596,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131941895,1,"Eylau",43.6199,1.44107,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131941899,1,"Guynemer",43.6183,1.44088,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131941902,1,"Olympe de Gouges",43.6442,1.44474,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131941905,1,"Negreneys Canal",43.6162,1.44067,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131941909,1,"Puget",43.6232,1.44238,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131941912,1,"Souffron",43.6022,1.41363,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131941913,1,"Talazac",43.6028,1.41125,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131941919,1,"Saguens",43.5267,1.37732,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131941936,1,"Bellegarde",43.6077,1.4455,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131941937,1,"Rémusat",43.6052,1.4438,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131941941,1,"Colette",43.6705,1.49533,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131941942,1,"Centre Aéré",43.5927,1.38887,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131941944,1,"Jaufré Rudel",43.6118,1.39232,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131941945,1,"Carlos Gardel",43.615,1.3944,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131941946,1,"Centre Commercial Purpan Est",43.6089,1.39729,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131941947,1,"Canto Laouzetto",43.5512,1.37889,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131941948,1,"Carovis",43.5494,1.38326,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131941949,1,"Tibaous",43.5509,1.38601,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942029,1,"Lardenne",43.5901,1.37768,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942038,1,"Fauvettes",43.6221,1.44192,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942046,1,"Forgues",43.4986,1.30943,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942057,1,"Renery",43.7175,1.44773,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942061,1,"Mairie Pinsaguel",43.5072,1.39054,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942063,1,"La Terrasse",43.5818,1.48709,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942064,1,"Naturopole",43.5589,1.47339,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942065,1,"Sports Universitaires",43.5614,1.47094,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942066,1,"Giordano Bruno",43.5646,1.46872,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942067,1,"Clément Ader",43.564,1.4905,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942068,1,"Marcel Dassault",43.5734,1.49343,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942069,1,"Santos Dumont",43.5711,1.49213,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942070,1,"Védrines",43.5688,1.49088,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942071,1,"Sophie Scholl",43.5458,1.53859,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942072,1,"Centre Commercial Autan",43.5307,1.53531,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942074,1,"Saint Louis du Sénégal",43.5656,1.49992,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942075,1,"Ramonville Sud",43.5375,1.482,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942076,1,"Turenne",43.5998,1.41557,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942077,1,"Lalande",43.5569,1.52932,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942078,1,"Laure Delerot",43.5655,1.51243,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942080,1,"Moulin",43.555,1.53068,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942081,1,"Altigone",43.5538,1.52928,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942082,1,"Bellières",43.5535,1.52655,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942085,1,"Tilleuls",43.5633,1.5174,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942087,1,"Belberaud La Balme",43.5059,1.55576,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942088,1,"Chemin de Malepère",43.5613,1.50235,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942093,1,"Raymond Grimaud",43.6402,1.37006,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942094,1,"Pépinière Basso Cambo",43.5668,1.38628,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942095,1,"Talabot Nord",43.5645,1.3882,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942096,1,"Avionique",43.565,1.38459,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942097,1,"Boudeville",43.5481,1.3944,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942098,1,"Pierre Mounicq",43.6214,1.40581,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942100,1,"Beaupuy Mairie",43.6464,1.55661,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942104,1,"De Lattre de Tassigny",43.465,1.32644,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942110,1,"Clinique Pasteur",43.5954,1.41738,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942116,1,"Porte de Caillibens",43.6077,1.46669,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942117,1,"Porte du Milieu",43.6103,1.46482,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942118,1,"Accueil Cimetière",43.64,1.32908,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942119,1,"Crématorium",43.6395,1.32776,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942120,1,"Secteur G",43.6347,1.32817,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942121,1,"Secteur F",43.6345,1.32996,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942122,1,"Secteurs D et E",43.6356,1.331,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942123,1,"Secteurs B et C",43.6379,1.33055,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942124,1,"Secteur A",43.64,1.33089,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942126,1,"Pont Ducuing",43.5635,1.46116,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942127,1,"Tucaut",43.5597,1.36025,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942128,1,"Cugnaux Henry Gladi",43.5455,1.35121,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942129,1,"Molinier",43.584,1.39226,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942130,1,"Bibliothèque",43.5827,1.39026,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942131,1,"Sauzat",43.5189,1.55333,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942132,1,"Bastié",43.5176,1.55786,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942135,1,"Liffard",43.5648,1.37339,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942136,1,"Pyrénées",43.513,1.38727,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942138,1,"Ecarts",43.5605,1.35727,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942139,1,"Canal",43.5607,1.35242,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942140,1,"Bordenoire",43.5608,1.34759,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942141,1,"Passerive",43.5654,1.33717,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942148,1,"Pasteur",43.5718,1.33236,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942149,1,"Cèdres",43.5756,1.32832,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942150,1,"Général Leclerc",43.5778,1.32728,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942151,1,"La Ramée Sud",43.5627,1.34024,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942154,1,"IUC",43.5552,1.42669,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942156,1,"Louis Renault",43.6291,1.48773,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942157,1,"Collège Jean Rostand",43.6045,1.5073,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942158,1,"Mairie Roques",43.5085,1.37534,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942159,1,"Centre Commercial Roques",43.5114,1.36939,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942160,1,"Terris",43.5662,1.28469,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942161,1,"Zoo Plaisance",43.5622,1.26473,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942162,1,"Moundran",43.5485,1.24158,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942163,1,"Magne",43.5432,1.23822,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942164,1,"Cimetière Fonsorbes",43.5392,1.23481,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942165,1,"11 Novembre 1918",43.5357,1.22965,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942166,1,"Benech",43.5335,1.22658,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942167,1,"Lycée Fonsorbes",43.5278,1.20932,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942169,1,"Dasque",43.5538,1.45167,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942170,1,"Dugua",43.5568,1.45619,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942198,1,"Prologue",43.5481,1.50765,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942202,1,"Aubrac",43.6136,1.34185,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942203,1,"Pelvoux",43.6114,1.3456,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942204,1,"Serres",43.6123,1.35229,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942207,1,"José Cabanis",43.6226,1.49519,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942208,1,"Carnot",43.662,1.44566,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942209,1,"Las Clotos",43.6641,1.44383,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942210,1,"Condorcet",43.6604,1.44783,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942213,1,"Port Saint-Etienne",43.5999,1.45669,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942215,1,"Moulis",43.6661,1.44065,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942223,1,"Launaguet Nobles",43.6705,1.44541,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942228,1,"Collège Saint-Jean",43.6616,1.50402,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942272,1,"Bicentenaire",43.6205,1.49641,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942301,1,"Diane",43.5583,1.36607,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942309,1,"Père Brottier",43.4715,1.32394,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942319,1,"Bois de Saget",43.6631,1.49806,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942320,1,"Ferro Lébres",43.5824,1.37111,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942323,1,"Raudelauzette",43.6785,1.42293,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942324,1,"Bascule - Seycheron",43.6087,1.34075,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942325,1,"Médiathèque Pavillon Blanc",43.6086,1.33561,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942326,1,"Gers",43.6085,1.32646,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942327,1,"Morbihan",43.6173,1.31909,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942328,1,"Oratoire",43.6096,1.34961,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942329,1,"Saint Lys Rossignols",43.5151,1.16195,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942330,1,"Fourcaudis",43.6221,1.32109,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942331,1,"Saint Jean",43.6231,1.32905,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942332,1,"Collège Léon Blum",43.6156,1.32584,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942333,1,"Ampère",43.6124,1.30644,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942334,1,"Aquitaine",43.6143,1.32432,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942335,1,"Brocéliande",43.6201,1.31546,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942336,1,"Perget",43.6095,1.30928,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942337,1,"Forez",43.6226,1.32573,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942338,1,"Bel Air",43.6146,1.32886,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942339,1,"Armorique",43.6192,1.31981,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942340,1,"Garroussal",43.624,1.333,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942341,1,"Sevennes",43.6051,1.32212,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942342,1,"Vendée",43.6183,1.30352,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942343,1,"Noirmoutier",43.6206,1.31019,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942344,1,"Côte D'Or",43.616,1.34024,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942345,1,"Baronnies",43.6048,1.31887,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942346,1,"Pornic",43.6156,1.30297,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942347,1,"Loudet",43.6097,1.30591,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942348,1,"Tucol",43.6051,1.32395,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942349,1,"Marcadau",43.6058,1.31614,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942351,1,"Capoul",43.5952,1.34362,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942352,1,"Oisans",43.6021,1.3353,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942353,1,"Mont Blanc",43.6025,1.33886,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942354,1,"Lucie Aubrac",43.5973,1.34938,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942355,1,"Armurier",43.6009,1.33945,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942356,1,"Luchonnais",43.5952,1.3391,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942357,1,"Georges Brassens",43.5976,1.34566,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942358,1,"Clinique Des Pyrénées",43.5981,1.33972,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942359,1,"Saint Julien",43.5098,1.17899,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942360,1,"Eglise St Lys",43.514,1.178,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942361,1,"Barrat",43.5077,1.17519,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942362,1,"Portes du Gers",43.5297,1.21096,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942363,1,"8 mai 1945",43.5097,1.17354,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942364,1,"11 novembre 1918",43.5697,1.28735,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942365,1,"Vitarelles",43.588,1.39471,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942366,1,"Verdale",43.6634,1.49031,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942367,1,"Sept Deniers - Salvador Dali",43.6264,1.41071,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942368,1,"Chemin de Roques",43.6239,1.40941,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942369,1,"Nougaro",43.6218,1.40819,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942371,1,"Pont de Rupé",43.6565,1.4113,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942372,1,"Picarel",43.6503,1.41348,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942373,1,"Pôle",43.6456,1.41942,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942374,1,"Ginestous - Chênes",43.6591,1.40955,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942375,1,"Moulin",43.6185,1.33673,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942376,1,"Couderc",43.6149,1.33781,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942377,1,"F. Pons",43.613,1.33768,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942378,1,"Rostand",43.6436,1.4556,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942379,1,"Za Triasis",43.6589,1.4548,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942380,1,"Barcelone",43.6068,1.43004,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942381,1,"Fontaine Lestang",43.5863,1.42013,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942383,1,"Fieux",43.5829,1.41875,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942384,1,"Camélias",43.559,1.30693,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942385,1,"Chemin du Carrelet",43.51,1.50365,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942386,1,"Peyrette",43.581,1.28976,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942387,1,"Bigorre",43.6065,1.32029,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942388,1,"Route de Pechbonnieu",43.6957,1.44501,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942389,1,"Ramondou",43.6938,1.44305,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942390,1,"Bastards",43.5529,1.24863,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942391,1,"Jardins de la Marcaissonne",43.5696,1.50845,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942393,1,"Faculté de Médecine",43.5611,1.45691,,1,,Europe/Paris,,OTL, +OTL:SA:1970329131942394,1,"Secteur I",43.6368,1.32745,,1,,Europe/Paris,,OTL, +OYN:SA:CTP109,1,"ST-SULPICE-DE-ROYAN - Fontbedeau",45.688651,-0.996356,,1,,Europe/Paris,,OYN, +OYN:SA:CTP1240,1,"ROYAN - Lavoisier",45.631859,-0.987084,,1,,Europe/Paris,,OYN, +OYN:SA:CTP1243,1,"CORME-ECLUSE - Traverserie",45.610469,-0.885904,,1,,Europe/Paris,,OYN, +OYN:SA:CTP1246,1,"ROYAN - Gare",45.626059,-1.018698,,1,,Europe/Paris,,OYN, +OYN:SA:CTP1247,1,"ROYAN - Gare arrivée",45.626059,-1.018698,,1,,Europe/Paris,,OYN, +OYN:SA:CTP1250,1,"ROYAN - Ampère",45.631089,-0.999828,,1,,Europe/Paris,,OYN, +OYN:SA:CTP1254,1,"VAUX-SUR-MER - Plain",45.645867,-1.050113,,1,,Europe/Paris,,OYN, +OYN:SA:CTP1258,1,"ROYAN - Québec",45.634707,-1.023029,,1,,Europe/Paris,,OYN, +OYN:SA:CTP1260,1,"ROYAN - Espadon",45.638685,-1.04011,,1,,Europe/Paris,,OYN, +OYN:SA:CTP1262,1,"MORTAGNE-SUR-GIRONDE - Petit Village",45.501405,-0.776859,,1,,Europe/Paris,,OYN, +OYN:SA:CTP1263,1,"MORTAGNE-SUR-GIRONDE - petit village",45.501448,-0.77713,,1,,Europe/Paris,,OYN, +OYN:SA:CTP1264,1,"EPARGNES - Doublet",45.544944,-0.818664,,1,,Europe/Paris,,OYN, +OYN:SA:CTP1267,1,"ARVERT - Halle",45.742152,-1.122389,,1,,Europe/Paris,,OYN, +OYN:SA:CTP1272,1,"COZES - Bas Prézelle",45.551296,-0.824472,,1,,Europe/Paris,,OYN, +OYN:SA:CTP130,1,"LES MATHES - Palmyre OT",45.689993,-1.176769,,1,,Europe/Paris,,OYN, +OYN:SA:CTP131,1,"MORTAGNE-SUR-GIRONDE - OT",45.480944,-0.78941,,1,,Europe/Paris,,OYN, +OYN:SA:CTP139,1,"LA TREMBLADE - Eglise",45.76926,-1.142153,,1,,Europe/Paris,,OYN, +OYN:SA:CTP140,1,"TALMONT-SUR-GIRONDE - Place",45.53588,-0.904435,,1,,Europe/Paris,,OYN, +OYN:SA:CTP146,1,"MORTAGNE-SUR-GIRONDE - Charbonnière",45.503987,-0.77824,,1,,Europe/Paris,,OYN, +OYN:SA:CTP15,1,"ARCES - Ecole",45.555081,-0.861597,,1,,Europe/Paris,,OYN, +OYN:SA:CTP151,1,"LES MATHES - Eglise",45.717024,-1.146049,,1,,Europe/Paris,,OYN, +OYN:SA:CTP155,1,"ARVERT - Dirée",45.751023,-1.15366,,1,,Europe/Paris,,OYN, +OYN:SA:CTP159,1,"ARVERT - Moulin",45.742376,-1.132251,,1,,Europe/Paris,,OYN, +OYN:SA:CTP161,1,"ETAULES - Ile",45.715897,-1.10773,,1,,Europe/Paris,,OYN, +OYN:SA:CTP162,1,"ST-PALAIS-SUR-MER - Palud",45.652818,-1.096128,,1,,Europe/Paris,,OYN, +OYN:SA:CTP163,1,"ETAULES - OT",45.733732,-1.101235,,1,,Europe/Paris,,OYN, +OYN:SA:CTP166,1,"ST-PALAIS-SUR-MER - Vallet",45.644708,-1.091024,,1,,Europe/Paris,,OYN, +OYN:SA:CTP167,1,"ST-PALAIS-SUR-MER - Stade",45.652073,-1.079825,,1,,Europe/Paris,,OYN, +OYN:SA:CTP171,1,"CHAILLEVETTE - Brandes",45.714844,-1.066707,,1,,Europe/Paris,,OYN, +OYN:SA:CTP172,1,"BREUILLET - Prades",45.697783,-1.064384,,1,,Europe/Paris,,OYN, +OYN:SA:CTP173,1,"VAUX-SUR-MER - Narcisses",45.657164,-1.060761,,1,,Europe/Paris,,OYN, +OYN:SA:CTP174,1,"VAUX-SUR-MER - Stade",45.641139,-1.059616,,1,,Europe/Paris,,OYN, +OYN:SA:CTP175,1,"VAUX-SUR-MER - Val Lumière",45.646939,-1.052457,,1,,Europe/Paris,,OYN, +OYN:SA:CTP176,1,"ROYAN - Perche",45.634242,-1.036179,,1,,Europe/Paris,,OYN, +OYN:SA:CTP178,1,"MORNAC-SUR-SEUDRE - Poste",45.708013,-1.027769,,1,,Europe/Paris,,OYN, +OYN:SA:CTP179,1,"ST-SULPICE-DE-ROYAN - Breuille",45.678095,-1.003258,,1,,Europe/Paris,,OYN, +OYN:SA:CTP180,1,"ST-GEORGES-DE-DIDONNE - Commerces",45.613458,-0.990871,,1,,Europe/Paris,,OYN, +OYN:SA:CTP181,1,"ST-SULPICE-DE-ROYAN - Crèche",45.681978,-0.990679,,1,,Europe/Paris,,OYN, +OYN:SA:CTP183,1,"L'EGUILLE - Fêtes",45.70455,-0.97904,,1,,Europe/Paris,,OYN, +OYN:SA:CTP184,1,"ST-GEORGES-DE-DIDONNE - Boube",45.62222,-0.96578,,1,,Europe/Paris,,OYN, +OYN:SA:CTP185,1,"SAUJON - Richelieu",45.676076,-0.925332,,1,,Europe/Paris,,OYN, +OYN:SA:CTP186,1,"SEMUSSAC - Valade",45.611007,-0.921055,,1,,Europe/Paris,,OYN, +OYN:SA:CTP187,1,"SEMUSSAC - Z.A.",45.60379,-0.912211,,1,,Europe/Paris,,OYN, +OYN:SA:CTP188,1,"ARCES - Brézillas",45.56921,-0.894965,,1,,Europe/Paris,,OYN, +OYN:SA:CTP189,1,"BARZAN - Bourg",45.526535,-0.854973,,1,,Europe/Paris,,OYN, +OYN:SA:CTP190,1,"COZES - Nazareth",45.580608,-0.8362,,1,,Europe/Paris,,OYN, +OYN:SA:CTP191,1,"EPARGNES - Eglise",45.541423,-0.803333,,1,,Europe/Paris,,OYN, +OYN:SA:CTP196,1,"ROYAN - Zola",45.61736,-1.010925,,1,,Europe/Paris,,OYN, +OYN:SA:CTP198,1,"ROYAN - Oasis",45.62319,-1.017116,,1,,Europe/Paris,,OYN, +OYN:SA:CTP200,1,"ROYAN - Trésor Public",45.627554,-1.017915,,1,,Europe/Paris,,OYN, +OYN:SA:CTP202,1,"ROYAN - Pôle Emploi",45.63319,-1.019489,,1,,Europe/Paris,,OYN, +OYN:SA:CTP203,1,"ROYAN - Pitorie",45.637063,-1.022265,,1,,Europe/Paris,,OYN, +OYN:SA:CTP204,1,"ROYAN - CARA",45.636844,-1.025918,,1,,Europe/Paris,,OYN, +OYN:SA:CTP205,1,"ROYAN - Tulipe",45.633372,-1.027979,,1,,Europe/Paris,,OYN, +OYN:SA:CTP206,1,"ROYAN - Chevalier",45.633287,-1.029843,,1,,Europe/Paris,,OYN, +OYN:SA:CTP212,1,"ROYAN - Fief",45.633243,-1.033385,,1,,Europe/Paris,,OYN, +OYN:SA:CTP213,1,"ROYAN - Rossignol",45.636417,-1.03055,,1,,Europe/Paris,,OYN, +OYN:SA:CTP214,1,"ROYAN - Belette",45.637646,-1.033273,,1,,Europe/Paris,,OYN, +OYN:SA:CTP215,1,"ROYAN - Impôts",45.637009,-1.029898,,1,,Europe/Paris,,OYN, +OYN:SA:CTP216,1,"ROYAN - Hedde",45.635009,-1.028798,,1,,Europe/Paris,,OYN, +OYN:SA:CTP22,1,"BREUILLET - Montils",45.682459,-1.037666,,1,,Europe/Paris,,OYN, +OYN:SA:CTP221,1,"ROYAN - Pôle Emploi",45.633076,-1.019576,,1,,Europe/Paris,,OYN, +OYN:SA:CTP222,1,"ROYAN - Carel",45.628884,-1.016438,,1,,Europe/Paris,,OYN, +OYN:SA:CTP2243,1,"LE CHAY - Combe à Mercier",45.65686,-0.91257,,1,,Europe/Paris,,OYN, +OYN:SA:CTP2248,1,"CORME-ECLUSE - Briagne",45.6436,-0.874594,,1,,Europe/Paris,,OYN, +OYN:SA:CTP2249,1,"CORME-ECLUSE - Grenouille",45.650011,-0.887741,,1,,Europe/Paris,,OYN, +OYN:SA:CTP225,1,"ROYAN - Marché Parc",45.618792,-1.012805,,1,,Europe/Paris,,OYN, +OYN:SA:CTP2250,1,"CORME-ECLUSE - Nauzelet",45.628119,-0.866589,,1,,Europe/Paris,,OYN, +OYN:SA:CTP2252,1,"CORME-ECLUSE - Mairie",45.631343,-0.855827,,1,,Europe/Paris,,OYN, +OYN:SA:CTP226,1,"ROYAN - Orangerie",45.616058,-1.005372,,1,,Europe/Paris,,OYN, +OYN:SA:CTP2260,1,"L'EGUILLE - Métairies",45.692216,-0.971887,,1,,Europe/Paris,,OYN, +OYN:SA:CTP227,1,"ROYAN - Aliénor",45.61611,-1.002193,,1,,Europe/Paris,,OYN, +OYN:SA:CTP228,1,"ROYAN - Squash",45.619169,-1.000916,,1,,Europe/Paris,,OYN, +OYN:SA:CTP2282,1,"MEDIS - Petit Toussaugé",45.628843,-0.946149,,1,,Europe/Paris,,OYN, +OYN:SA:CTP2284,1,"MEDIS - Poste",45.645982,-0.963708,,1,,Europe/Paris,,OYN, +OYN:SA:CTP231,1,"ROYAN - Yeuse",45.626548,-1.007778,,1,,Europe/Paris,,OYN, +OYN:SA:CTP2313,1,"SABLONCEAUX - Coupé-Gorge",45.698109,-0.894779,,1,,Europe/Paris,,OYN, +OYN:SA:CTP2316,1,"SABLONCEAUX - Vinaigrière",45.717461,-0.86875,,1,,Europe/Paris,,OYN, +OYN:SA:CTP2318,1,"SABLONCEAUX - Mairie",45.718947,-0.888287,,1,,Europe/Paris,,OYN, +OYN:SA:CTP2322,1,"SABLONCEAUX - Frogers",45.683066,-0.897779,,1,,Europe/Paris,,OYN, +OYN:SA:CTP2327,1,"SAUJON - Collège André Albert",45.677017,-0.927309,,1,,Europe/Paris,,OYN, +OYN:SA:CTP2328,1,"SAUJON - Ecole Jeanne d'Arc",45.673169,-0.929689,,1,,Europe/Paris,,OYN, +OYN:SA:CTP2331,1,"SAUJON - Primeveres",45.663368,-0.919886,,1,,Europe/Paris,,OYN, +OYN:SA:CTP2336,1,"SAINT-ROMAIN-DE-BENET - Camp de César",45.682814,-0.884964,,1,,Europe/Paris,,OYN, +OYN:SA:CTP2338,1,"SAINT-ROMAIN-DE-BENET - Ecole",45.690099,-0.847267,,1,,Europe/Paris,,OYN, +OYN:SA:CTP2339,1,"SAINT-ROMAIN-DE-BENET - Fief des Perrières",45.686573,-0.883644,,1,,Europe/Paris,,OYN, +OYN:SA:CTP2340,1,"SAINT-ROMAIN-DE-BENET - Griffarin",45.684672,-0.866621,,1,,Europe/Paris,,OYN, +OYN:SA:CTP2341,1,"SAINT-ROMAIN-DE-BENET - Vivier",45.674564,-0.853389,,1,,Europe/Paris,,OYN, +OYN:SA:CTP2342,1,"SAINT-ROMAIN-DE-BENET - Maisonneuve",45.676916,-0.863055,,1,,Europe/Paris,,OYN, +OYN:SA:CTP2345,1,"SAINT-ROMAIN-DE-BENET - Sauvajou",45.679417,-0.869624,,1,,Europe/Paris,,OYN, +OYN:SA:CTP2348,1,"SAINT-ROMAIN-DE-BENET - Vouillac le Haut",45.701163,-0.876545,,1,,Europe/Paris,,OYN, +OYN:SA:CTP235,1,"ROYAN - Briand",45.624668,-1.029513,,1,,Europe/Paris,,OYN, +OYN:SA:CTP2383,1,"SABLONCEAUX - Chez Chailloux",45.689698,-0.891765,,1,,Europe/Paris,,OYN, +OYN:SA:CTP2385,1,"SABLONCEAUX - Chez Maulin",45.724061,-0.869043,,1,,Europe/Paris,,OYN, +OYN:SA:CTP2394,1,"SABLONCEAUX - Brandet",45.694524,-0.891008,,1,,Europe/Paris,,OYN, +OYN:SA:CTP24,1,"CHAILLEVETTE - Château d'Eau",45.727944,-1.074401,,1,,Europe/Paris,,OYN, +OYN:SA:CTP2402,1,"SABLONCEAUX - Le Pont",45.709577,-0.888678,,1,,Europe/Paris,,OYN, +OYN:SA:CTP2407,1,"SABLONCEAUX - Saint André",45.718877,-0.888213,,1,,Europe/Paris,,OYN, +OYN:SA:CTP2409,1,"SABLONCEAUX - Toulon",45.685133,-0.89157,,1,,Europe/Paris,,OYN, +OYN:SA:CTP241,1,"ROYAN - Gatebourse",45.628093,-1.04201,,1,,Europe/Paris,,OYN, +OYN:SA:CTP242,1,"ROYAN - Baillet",45.630213,-1.038164,,1,,Europe/Paris,,OYN, +OYN:SA:CTP2424,1,"SAINT-ROMAIN-DE-BENET - Malleville",45.712285,-0.853547,,1,,Europe/Paris,,OYN, +OYN:SA:CTP2430,1,"SAINT-ROMAIN-DE-BENET - Villeneuve",45.690877,-0.826866,,1,,Europe/Paris,,OYN, +OYN:SA:CTP245,1,"ROYAN - Mairie",45.623431,-1.042995,,1,,Europe/Paris,,OYN, +OYN:SA:CTP2459,1,"MEDIS - Chez Dias",45.649998,-0.979834,,1,,Europe/Paris,,OYN, +OYN:SA:CTP247,1,"ROYAN - Hélios",45.623881,-1.037262,,1,,Europe/Paris,,OYN, +OYN:SA:CTP249,1,"ROYAN - Notre-Dame",45.623921,-1.031958,,1,,Europe/Paris,,OYN, +OYN:SA:CTP250,1,"ROYAN - de Gaulle",45.624429,-1.028381,,1,,Europe/Paris,,OYN, +OYN:SA:CTP251,1,"ROYAN - Poste",45.624916,-1.024771,,1,,Europe/Paris,,OYN, +OYN:SA:CTP252,1,"ROYAN - Europe",45.624941,-1.021826,,1,,Europe/Paris,,OYN, +OYN:SA:CTP254,1,"ROYAN - Billois",45.627946,-1.009388,,1,,Europe/Paris,,OYN, +OYN:SA:CTP2558,1,"SEMUSSAC - Rivière",45.606609,-0.944337,,1,,Europe/Paris,,OYN, +OYN:SA:CTP256,1,"ROYAN - Joliot Curie",45.623449,-1.002934,,1,,Europe/Paris,,OYN, +OYN:SA:CTP2560,1,"COZES - Groix",45.58524,-0.846209,,1,,Europe/Paris,,OYN, +OYN:SA:CTP2564,1,"ROYAN - Branly",45.631622,-0.995603,,1,,Europe/Paris,,OYN, +OYN:SA:CTP2566,1,"ROYAN - Danube",45.624539,-1.003107,,1,,Europe/Paris,,OYN, +OYN:SA:CTP2568,1,"BOUTENAC-TOUVENT - Mairie",45.505007,-0.757474,,1,,Europe/Paris,,OYN, +OYN:SA:CTP2578,1,"SAUJON - Hopiteau",45.677198,-0.949183,,1,,Europe/Paris,,OYN, +OYN:SA:CTP2580,1,"SAUJON - Peudrit",45.672692,-0.9382,,1,,Europe/Paris,,OYN, +OYN:SA:CTP2583,1,"SAUJON - Ribérou",45.675104,-0.932097,,1,,Europe/Paris,,OYN, +OYN:SA:CTP2586,1,"SAUJON - Guynemer",45.678492,-0.924457,,1,,Europe/Paris,,OYN, +OYN:SA:CTP2588,1,"SAUJON - Salicorne",45.681919,-0.932299,,1,,Europe/Paris,,OYN, +OYN:SA:CTP2591,1,"SAUJON - Piscine",45.681665,-0.939008,,1,,Europe/Paris,,OYN, +OYN:SA:CTP2593,1,"SAUJON - Croix Bourdon",45.680227,-0.916103,,1,,Europe/Paris,,OYN, +OYN:SA:CTP2595,1,"SAUJON - Sauzes",45.678163,-0.909617,,1,,Europe/Paris,,OYN, +OYN:SA:CTP2598,1,"SAUJON - Justice",45.674595,-0.916412,,1,,Europe/Paris,,OYN, +OYN:SA:CTP260,1,"ST-SULPICE-DE-ROYAN - Jaffe",45.65771,-1.021796,,1,,Europe/Paris,,OYN, +OYN:SA:CTP2601,1,"SAUJON - Thermes",45.675605,-0.923275,,1,,Europe/Paris,,OYN, +OYN:SA:CTP2604,1,"SAUJON - Jean Jaurès",45.672414,-0.924742,,1,,Europe/Paris,,OYN, +OYN:SA:CTP2606,1,"ST-SULPICE-DE-ROYAN - Centre",45.672598,-1.010725,,1,,Europe/Paris,,OYN, +OYN:SA:CTP2608,1,"ARVERT - Fournillier",45.751749,-1.12774,,1,,Europe/Paris,,OYN, +OYN:SA:CTP2611,1,"ROYAN - Gaboriau",45.628564,-1.010548,,1,,Europe/Paris,,OYN, +OYN:SA:CTP2614,1,"ST-SULPICE-DE-ROYAN - Eiffel",45.664625,-1.012341,,1,,Europe/Paris,,OYN, +OYN:SA:CTP2616,1,"ROYAN - Gare quai B",45.626059,-1.018698,,1,,Europe/Paris,,OYN, +OYN:SA:CTP2622,1,"ROYAN - Gare quai A B",45.626059,-1.018698,,1,,Europe/Paris,,OYN, +OYN:SA:CTP2623,1,"ROYAN - Gare quai A",45.626059,-1.018698,,1,,Europe/Paris,,OYN, +OYN:SA:CTP2624,1,"ROYAN - Gare quai C",45.626059,-1.018698,,1,,Europe/Paris,,OYN, +OYN:SA:CTP2627,1,"ROYAN - Gare quai D",45.626059,-1.018698,,1,,Europe/Paris,,OYN, +OYN:SA:CTP2633,1,"MESCHERS-SUR-GIRONDE - Commerces",45.559235,-0.956497,,1,,Europe/Paris,,OYN, +OYN:SA:CTP2635,1,"BOURCEFRANC - Lycee de la mer",45.846776,-1.156793,,1,,Europe/Paris,,OYN, +OYN:SA:CTP2637,1,"ARVERT - Cabouci",45.73917,-1.12946,,1,,Europe/Paris,,OYN, +OYN:SA:CTP2640,1,"MEDIS - Aerodrome",45.633809,-0.975856,,1,,Europe/Paris,,OYN, +OYN:SA:CTP2643,1,"ARVERT - Amouroux",45.74776,-1.122825,,1,,Europe/Paris,,OYN, +OYN:SA:CTP2649,1,"SAUJON - Lt Salicorne",45.684723,-0.935911,,1,,Europe/Paris,,OYN, +OYN:SA:CTP265,1,"ROYAN - Aigle",45.62355,-1.012634,,1,,Europe/Paris,,OYN, +OYN:SA:CTP2650,1,"SAUJON - La Roue",45.679422,-0.906152,,1,,Europe/Paris,,OYN, +OYN:SA:CTP266,1,"ROYAN - Aquitaine",45.623236,-1.009854,,1,,Europe/Paris,,OYN, +OYN:SA:CTP270,1,"ROYAN - Ste Marie",45.629181,-0.994508,,1,,Europe/Paris,,OYN, +OYN:SA:CTP271,1,"ROYAN - Robinière",45.627738,-0.996742,,1,,Europe/Paris,,OYN, +OYN:SA:CTP272,1,"ROYAN - Faupigné",45.623594,-1.003951,,1,,Europe/Paris,,OYN, +OYN:SA:CTP275,1,"ROYAN - Reutin",45.635729,-1.0269,,1,,Europe/Paris,,OYN, +OYN:SA:CTP276,1,"ROYAN - Coquelicots",45.641722,-1.02487,,1,,Europe/Paris,,OYN, +OYN:SA:CTP277,1,"ROYAN - Cerisiers",45.648643,-1.024525,,1,,Europe/Paris,,OYN, +OYN:SA:CTP278,1,"ROYAN - Clinique",45.653876,-1.023215,,1,,Europe/Paris,,OYN, +OYN:SA:CTP281,1,"ST-SULPICE-DE-ROYAN - Commerces",45.66797,-1.012002,,1,,Europe/Paris,,OYN, +OYN:SA:CTP282,1,"ST-GEORGES-DE-DIDONNE - Parasols",45.615531,-0.98964,,1,,Europe/Paris,,OYN, +OYN:SA:CTP285,1,"ST-GEORGES-DE-DIDONNE - Margite",45.60935,-0.984665,,1,,Europe/Paris,,OYN, +OYN:SA:CTP286,1,"ST-GEORGES-DE-DIDONNE - Camus",45.605178,-0.98736,,1,,Europe/Paris,,OYN, +OYN:SA:CTP287,1,"ST-GEORGES-DE-DIDONNE - Lavigne",45.605813,-0.990988,,1,,Europe/Paris,,OYN, +OYN:SA:CTP288,1,"ST-GEORGES-DE-DIDONNE - Mairie",45.603212,-0.993441,,1,,Europe/Paris,,OYN, +OYN:SA:CTP289,1,"ST-GEORGES-DE-DIDONNE - Créa",45.599826,-0.994854,,1,,Europe/Paris,,OYN, +OYN:SA:CTP29,1,"COZES - Collège",45.577686,-0.840942,,1,,Europe/Paris,,OYN, +OYN:SA:CTP290,1,"ST-GEORGES-DE-DIDONNE - Plage",45.601221,-0.998382,,1,,Europe/Paris,,OYN, +OYN:SA:CTP291,1,"ST-GEORGES-DE-DIDONNE - Polyclinique",45.603284,-1.003181,,1,,Europe/Paris,,OYN, +OYN:SA:CTP292,1,"ST-GEORGES-DE-DIDONNE - Plume",45.606253,-1.005928,,1,,Europe/Paris,,OYN, +OYN:SA:CTP293,1,"ST-GEORGES-DE-DIDONNE - Vallières",45.609026,-1.00856,,1,,Europe/Paris,,OYN, +OYN:SA:CTP294,1,"ROYAN - Lido",45.614366,-1.01133,,1,,Europe/Paris,,OYN, +OYN:SA:CTP295,1,"ROYAN - Paradou",45.617719,-1.014875,,1,,Europe/Paris,,OYN, +OYN:SA:CTP296,1,"ROYAN - Foch",45.623373,-1.022525,,1,,Europe/Paris,,OYN, +OYN:SA:CTP299,1,"ROYAN - Bac",45.61967,-1.031768,,1,,Europe/Paris,,OYN, +OYN:SA:CTP300,1,"ROYAN - Foncillon",45.620527,-1.035475,,1,,Europe/Paris,,OYN, +OYN:SA:CTP301,1,"ROYAN - Océan",45.622055,-1.039472,,1,,Europe/Paris,,OYN, +OYN:SA:CTP302,1,"ROYAN - Pigeonnier",45.624494,-1.045756,,1,,Europe/Paris,,OYN, +OYN:SA:CTP303,1,"ROYAN - Etoiles",45.625307,-1.048463,,1,,Europe/Paris,,OYN, +OYN:SA:CTP304,1,"ROYAN - Pontaillac",45.627891,-1.05251,,1,,Europe/Paris,,OYN, +OYN:SA:CTP305,1,"VAUX-SUR-MER - Porte Océane",45.62952,-1.054189,,1,,Europe/Paris,,OYN, +OYN:SA:CTP306,1,"VAUX-SUR-MER - Pasteur",45.631899,-1.05694,,1,,Europe/Paris,,OYN, +OYN:SA:CTP307,1,"VAUX-SUR-MER - Hôpital",45.635075,-1.059763,,1,,Europe/Paris,,OYN, +OYN:SA:CTP309,1,"VAUX-SUR-MER - Courtot",45.645098,-1.060125,,1,,Europe/Paris,,OYN, +OYN:SA:CTP310,1,"VAUX-SUR-MER - Mairie",45.646462,-1.062682,,1,,Europe/Paris,,OYN, +OYN:SA:CTP311,1,"VAUX-SUR-MER - Chantaco",45.648945,-1.065213,,1,,Europe/Paris,,OYN, +OYN:SA:CTP312,1,"ST-PALAIS-SUR-MER - Courlay",45.65299,-1.077819,,1,,Europe/Paris,,OYN, +OYN:SA:CTP313,1,"ST-PALAIS-SUR-MER - Commerces",45.651606,-1.084212,,1,,Europe/Paris,,OYN, +OYN:SA:CTP315,1,"ST-PALAIS-SUR-MER - Mouillères",45.647156,-1.098539,,1,,Europe/Paris,,OYN, +OYN:SA:CTP319,1,"ST-PALAIS-SUR-MER - Courlay",45.652909,-1.077865,,1,,Europe/Paris,,OYN, +OYN:SA:CTP333,1,"ROYAN - Gambetta",45.621568,-1.031053,,1,,Europe/Paris,,OYN, +OYN:SA:CTP351,1,"ROYAN - Violette",45.627299,-1.0291,,1,,Europe/Paris,,OYN, +OYN:SA:CTP352,1,"ROYAN - Font Cherves",45.627243,-1.030055,,1,,Europe/Paris,,OYN, +OYN:SA:CTP353,1,"ROYAN - Marché",45.628968,-1.032126,,1,,Europe/Paris,,OYN, +OYN:SA:CTP354,1,"ROYAN - Thibaudeau",45.631024,-1.032157,,1,,Europe/Paris,,OYN, +OYN:SA:CTP355,1,"ROYAN - Maine Arnaud",45.64224,-1.030987,,1,,Europe/Paris,,OYN, +OYN:SA:CTP356,1,"ROYAN - Pâquerettes",45.644003,-1.031794,,1,,Europe/Paris,,OYN, +OYN:SA:CTP357,1,"ROYAN - Chatelard",45.650853,-1.03004,,1,,Europe/Paris,,OYN, +OYN:SA:CTP359,1,"ROYAN - Cendrilles",45.64901,-1.039733,,1,,Europe/Paris,,OYN, +OYN:SA:CTP363,1,"VAUX-SUR-MER - Reine",45.645799,-1.054927,,1,,Europe/Paris,,OYN, +OYN:SA:CTP365,1,"VAUX-SUR-MER - Grosse Pierre",45.64203,-1.059973,,1,,Europe/Paris,,OYN, +OYN:SA:CTP366,1,"VAUX-SUR-MER - Chauchamp",45.647809,-1.060328,,1,,Europe/Paris,,OYN, +OYN:SA:CTP369,1,"VAUX-SUR-MER - Carrelet",45.649084,-1.046504,,1,,Europe/Paris,,OYN, +OYN:SA:CTP371,1,"ROYAN - Treille",45.64818,-1.034126,,1,,Europe/Paris,,OYN, +OYN:SA:CTP377,1,"ROYAN - Loti",45.62678,-1.031593,,1,,Europe/Paris,,OYN, +OYN:SA:CTP379,1,"ROYAN - Mission loc",45.630439,-1.03029,,1,,Europe/Paris,,OYN, +OYN:SA:CTP380,1,"ROYAN - St-Pierre",45.630178,-1.026722,,1,,Europe/Paris,,OYN, +OYN:SA:CTP381,1,"ROYAN - Cimetière",45.629235,-1.024291,,1,,Europe/Paris,,OYN, +OYN:SA:CTP382,1,"ROYAN - Royan 2",45.630463,-0.99185,,1,,Europe/Paris,,OYN, +OYN:SA:CTP383,1,"ARCES - Repos",45.55582,-0.86258,,1,,Europe/Paris,,OYN, +OYN:SA:CTP385,1,"ARCES - Chassagne",45.569273,-0.867246,,1,,Europe/Paris,,OYN, +OYN:SA:CTP390,1,"ARCES - Liboulas",45.560594,-0.878073,,1,,Europe/Paris,,OYN, +OYN:SA:CTP394,1,"ARCES - Mairie",45.553127,-0.860177,,1,,Europe/Paris,,OYN, +OYN:SA:CTP395,1,"ARCES - Moutard",45.56392,-0.871108,,1,,Europe/Paris,,OYN, +OYN:SA:CTP399,1,"ARVERT - Avallon",45.743325,-1.108996,,1,,Europe/Paris,,OYN, +OYN:SA:CTP403,1,"ARVERT - Etrade",45.752873,-1.138239,,1,,Europe/Paris,,OYN, +OYN:SA:CTP405,1,"ARVERT - Fouilloux",45.745971,-1.131739,,1,,Europe/Paris,,OYN, +OYN:SA:CTP407,1,"ARVERT - Geay",45.745937,-1.142657,,1,,Europe/Paris,,OYN, +OYN:SA:CTP410,1,"ARVERT - Graveau",45.745044,-1.138824,,1,,Europe/Paris,,OYN, +OYN:SA:CTP412,1,"ARVERT - Ht Fouilloux",45.748452,-1.133649,,1,,Europe/Paris,,OYN, +OYN:SA:CTP413,1,"ARVERT - Bataille",45.737578,-1.109066,,1,,Europe/Paris,,OYN, +OYN:SA:CTP415,1,"ARVERT - Tonnelles",45.756376,-1.126023,,1,,Europe/Paris,,OYN, +OYN:SA:CTP418,1,"BARZAN - Brissonnerie",45.52509,-0.870764,,1,,Europe/Paris,,OYN, +OYN:SA:CTP420,1,"BARZAN - Garnier",45.520929,-0.861739,,1,,Europe/Paris,,OYN, +OYN:SA:CTP422,1,"BARZAN - Maison Neuve",45.540448,-0.858958,,1,,Europe/Paris,,OYN, +OYN:SA:CTP424,1,"BARZAN - Plage",45.528454,-0.881842,,1,,Europe/Paris,,OYN, +OYN:SA:CTP426,1,"BARZAN - Providence",45.520408,-0.856184,,1,,Europe/Paris,,OYN, +OYN:SA:CTP430,1,"MORTAGNE-SUR-GIRONDE - Moulin Lande",45.498614,-0.770692,,1,,Europe/Paris,,OYN, +OYN:SA:CTP435,1,"BREUILLET - Billeau",45.692218,-1.069812,,1,,Europe/Paris,,OYN, +OYN:SA:CTP436,1,"BREUILLET - Coulonges",45.713642,-1.049939,,1,,Europe/Paris,,OYN, +OYN:SA:CTP438,1,"BREUILLET - Garage",45.695843,-1.051172,,1,,Europe/Paris,,OYN, +OYN:SA:CTP440,1,"BREUILLET - Grallet",45.688395,-1.069411,,1,,Europe/Paris,,OYN, +OYN:SA:CTP442,1,"BREUILLET - Lt Simandière",45.688278,-1.057035,,1,,Europe/Paris,,OYN, +OYN:SA:CTP444,1,"BREUILLET - Magarin",45.698135,-1.051933,,1,,Europe/Paris,,OYN, +OYN:SA:CTP447,1,"BREUILLET - Marché",45.691709,-1.053467,,1,,Europe/Paris,,OYN, +OYN:SA:CTP448,1,"BREUILLET - Taupignac",45.674752,-1.0566,,1,,Europe/Paris,,OYN, +OYN:SA:CTP451,1,"CHAILLEVETTE - Cabane",45.721798,-1.078776,,1,,Europe/Paris,,OYN, +OYN:SA:CTP452,1,"CHAILLEVETTE - Chatressac",45.737061,-1.059784,,1,,Europe/Paris,,OYN, +OYN:SA:CTP454,1,"CHAILLEVETTE - Eglise",45.730119,-1.059325,,1,,Europe/Paris,,OYN, +OYN:SA:CTP456,1,"CHAILLEVETTE - Jadeau",45.723076,-1.063757,,1,,Europe/Paris,,OYN, +OYN:SA:CTP458,1,"CHAILLEVETTE - Poterie",45.721139,-1.056285,,1,,Europe/Paris,,OYN, +OYN:SA:CTP46,1,"MESCHERS-SUR-GIRONDE - Longée",45.557339,-0.950594,,1,,Europe/Paris,,OYN, +OYN:SA:CTP461,1,"CHAILLEVETTE - Sablière",45.719157,-1.060195,,1,,Europe/Paris,,OYN, +OYN:SA:CTP463,1,"CHAILLEVETTE - Temple",45.729688,-1.072103,,1,,Europe/Paris,,OYN, +OYN:SA:CTP465,1,"CHAILLEVETTE - Verdun",45.73378,-1.066335,,1,,Europe/Paris,,OYN, +OYN:SA:CTP466,1,"CHENAC-ST-SEURIN-D'UZET - Bourg",45.516581,-0.826025,,1,,Europe/Paris,,OYN, +OYN:SA:CTP468,1,"CHENAC-ST-SEURIN-D'UZET - Echailler",45.494796,-0.81762,,1,,Europe/Paris,,OYN, +OYN:SA:CTP47,1,"MORTAGNE-SUR-GIRONDE - Gambetta",45.483316,-0.784915,,1,,Europe/Paris,,OYN, +OYN:SA:CTP471,1,"CHENAC-ST-SEURIN-D'UZET - Echaillerabri",45.493481,-0.811083,,1,,Europe/Paris,,OYN, +OYN:SA:CTP474,1,"CHENAC-ST-SEURIN-D'UZET - Loiseau",45.518491,-0.792407,,1,,Europe/Paris,,OYN, +OYN:SA:CTP476,1,"BARZAN - Monards",45.516129,-0.854216,,1,,Europe/Paris,,OYN, +OYN:SA:CTP478,1,"CHENAC-ST-SEURIN-D'UZET - Parpillons",45.521586,-0.79365,,1,,Europe/Paris,,OYN, +OYN:SA:CTP479,1,"CHENAC-ST-SEURIN-D'UZET - Rambaud",45.495234,-0.801258,,1,,Europe/Paris,,OYN, +OYN:SA:CTP481,1,"CHENAC-ST-SEURIN-D'UZET - StSeurin Port",45.502089,-0.834129,,1,,Europe/Paris,,OYN, +OYN:SA:CTP489,1,"COZES - Barre",45.560601,-0.810934,,1,,Europe/Paris,,OYN, +OYN:SA:CTP490,1,"COZES - Commerces",45.584585,-0.835405,,1,,Europe/Paris,,OYN, +OYN:SA:CTP492,1,"COZES - Conteneuil",45.576548,-0.856283,,1,,Europe/Paris,,OYN, +OYN:SA:CTP495,1,"COZES - Fief Neuf",45.579098,-0.842243,,1,,Europe/Paris,,OYN, +OYN:SA:CTP497,1,"COZES - Garde",45.576504,-0.81692,,1,,Europe/Paris,,OYN, +OYN:SA:CTP499,1,"COZES - Gorce",45.56414,-0.804427,,1,,Europe/Paris,,OYN, +OYN:SA:CTP501,1,"COZES - Javrezac",45.562629,-0.830637,,1,,Europe/Paris,,OYN, +OYN:SA:CTP502,1,"COZES - Maréchaux",45.579435,-0.816248,,1,,Europe/Paris,,OYN, +OYN:SA:CTP504,1,"COZES - Petite Gorce",45.564733,-0.804466,,1,,Europe/Paris,,OYN, +OYN:SA:CTP506,1,"COZES - Primaire",45.581006,-0.83071,,1,,Europe/Paris,,OYN, +OYN:SA:CTP508,1,"EPARGNES - Bastille",45.546098,-0.786113,,1,,Europe/Paris,,OYN, +OYN:SA:CTP512,1,"EPARGNES - Boileau",45.538852,-0.783936,,1,,Europe/Paris,,OYN, +OYN:SA:CTP514,1,"EPARGNES - Centre",45.541696,-0.803668,,1,,Europe/Paris,,OYN, +OYN:SA:CTP52,1,"ROYAN - Atlantique",45.633511,-1.018685,,1,,Europe/Paris,,OYN, +OYN:SA:CTP520,1,"EPARGNES - Loriaux",45.541504,-0.781205,,1,,Europe/Paris,,OYN, +OYN:SA:CTP522,1,"EPARGNES - Providence",45.53352,-0.805556,,1,,Europe/Paris,,OYN, +OYN:SA:CTP524,1,"EPARGNES - Soulignac",45.552249,-0.798102,,1,,Europe/Paris,,OYN, +OYN:SA:CTP526,1,"ETAULES - Cimetière",45.729289,-1.093426,,1,,Europe/Paris,,OYN, +OYN:SA:CTP529,1,"ETAULES - Eglise",45.731531,-1.098137,,1,,Europe/Paris,,OYN, +OYN:SA:CTP53,1,"ROYAN - Cordouan",45.622014,-1.004096,,1,,Europe/Paris,,OYN, +OYN:SA:CTP532,1,"ETAULES - Passe",45.709639,-1.113522,,1,,Europe/Paris,,OYN, +OYN:SA:CTP534,1,"ETAULES - Pirouette",45.721778,-1.104912,,1,,Europe/Paris,,OYN, +OYN:SA:CTP539,1,"GREZAC - Brunets",45.601063,-0.824904,,1,,Europe/Paris,,OYN, +OYN:SA:CTP54,1,"ROYAN - Dunant",45.639699,-1.049465,,1,,Europe/Paris,,OYN, +OYN:SA:CTP546,1,"GREZAC - Mairie",45.60333,-0.840513,,1,,Europe/Paris,,OYN, +OYN:SA:CTP549,1,"GREZAC - Roche",45.600484,-0.807195,,1,,Europe/Paris,,OYN, +OYN:SA:CTP551,1,"GREZAC - Roquilleau",45.59329,-0.798742,,1,,Europe/Paris,,OYN, +OYN:SA:CTP554,1,"GREZAC - Soulard",45.588598,-0.796795,,1,,Europe/Paris,,OYN, +OYN:SA:CTP558,1,"LA TREMBLADE - Collège",45.777899,-1.145919,,1,,Europe/Paris,,OYN, +OYN:SA:CTP560,1,"LA TREMBLADE - Foyer",45.776042,-1.146293,,1,,Europe/Paris,,OYN, +OYN:SA:CTP563,1,"LA TREMBLADE - Petit Pont",45.76157,-1.141674,,1,,Europe/Paris,,OYN, +OYN:SA:CTP565,1,"LA TREMBLADE - Riveaux",45.782554,-1.155983,,1,,Europe/Paris,,OYN, +OYN:SA:CTP567,1,"LA TREMBLADE - Ronce Camping",45.788798,-1.158806,,1,,Europe/Paris,,OYN, +OYN:SA:CTP568,1,"LA TREMBLADE - Ronce Casino",45.795744,-1.16261,,1,,Europe/Paris,,OYN, +OYN:SA:CTP570,1,"LE CHAY - Mairie",45.64031,-0.897809,,1,,Europe/Paris,,OYN, +OYN:SA:CTP571,1,"LE CHAY - Morgard",45.663253,-0.909673,,1,,Europe/Paris,,OYN, +OYN:SA:CTP573,1,"LE CHAY - Riolet",45.659318,-0.9017,,1,,Europe/Paris,,OYN, +OYN:SA:CTP576,1,"SAUJON - Métairies",45.689254,-0.966511,,1,,Europe/Paris,,OYN, +OYN:SA:CTP578,1,"L'EGUILLE - Pte Eguille",45.701088,-0.97635,,1,,Europe/Paris,,OYN, +OYN:SA:CTP580,1,"L'EGUILLE - Port",45.708519,-0.976566,,1,,Europe/Paris,,OYN, +OYN:SA:CTP582,1,"LES MATHES - Campings",45.713724,-1.159456,,1,,Europe/Paris,,OYN, +OYN:SA:CTP584,1,"LES MATHES - Cimetière",45.714274,-1.136542,,1,,Europe/Paris,,OYN, +OYN:SA:CTP595,1,"LES MATHES - Néré",45.72378,-1.143774,,1,,Europe/Paris,,OYN, +OYN:SA:CTP597,1,"LES MATHES - Hippodrome",45.699302,-1.171862,,1,,Europe/Paris,,OYN, +OYN:SA:CTP598,1,"LES MATHES - Palmyre Zoo",45.685489,-1.166517,,1,,Europe/Paris,,OYN, +OYN:SA:CTP600,1,"LES MATHES - Résinerie",45.709036,-1.164181,,1,,Europe/Paris,,OYN, +OYN:SA:CTP602,1,"LES MATHES - Valdotains",45.716079,-1.152483,,1,,Europe/Paris,,OYN, +OYN:SA:CTP607,1,"MARENNES - Place",45.820956,-1.108532,,1,,Europe/Paris,,OYN, +OYN:SA:CTP609,1,"MEDIS - Brandes",45.62526,-0.965114,,1,,Europe/Paris,,OYN, +OYN:SA:CTP612,1,"MEDIS - Centre",45.643662,-0.964561,,1,,Europe/Paris,,OYN, +OYN:SA:CTP613,1,"MEDIS - Dias",45.652164,-0.975825,,1,,Europe/Paris,,OYN, +OYN:SA:CTP617,1,"MEDIS - Musson",45.622331,-0.936222,,1,,Europe/Paris,,OYN, +OYN:SA:CTP619,1,"MEDIS - Toussaugé",45.630694,-0.947628,,1,,Europe/Paris,,OYN, +OYN:SA:CTP621,1,"MESCHERS-SUR-GIRONDE - Arnèche",45.57047,-0.97221,,1,,Europe/Paris,,OYN, +OYN:SA:CTP622,1,"MESCHERS-SUR-GIRONDE - Berceau",45.585368,-0.956066,,1,,Europe/Paris,,OYN, +OYN:SA:CTP624,1,"MESCHERS-SUR-GIRONDE - Birat",45.570869,-0.960817,,1,,Europe/Paris,,OYN, +OYN:SA:CTP627,1,"MESCHERS-SUR-GIRONDE - Chantier",45.585259,-0.942593,,1,,Europe/Paris,,OYN, +OYN:SA:CTP628,1,"MESCHERS-SUR-GIRONDE - Cimetière",45.561585,-0.958301,,1,,Europe/Paris,,OYN, +OYN:SA:CTP631,1,"MESCHERS-SUR-GIRONDE - Beloire",45.572887,-0.935723,,1,,Europe/Paris,,OYN, +OYN:SA:CTP633,1,"MESCHERS-SUR-GIRONDE - Jasmins",45.56784,-0.94988,,1,,Europe/Paris,,OYN, +OYN:SA:CTP635,1,"MESCHERS-SUR-GIRONDE - Journaux",45.57591,-0.938221,,1,,Europe/Paris,,OYN, +OYN:SA:CTP638,1,"MESCHERS-SUR-GIRONDE - Lys",45.575147,-0.960681,,1,,Europe/Paris,,OYN, +OYN:SA:CTP64,1,"SEMUSSAC - Bourg",45.600484,-0.912946,,1,,Europe/Paris,,OYN, +OYN:SA:CTP640,1,"MESCHERS-SUR-GIRONDE - Ombrage",45.575174,-0.977047,,1,,Europe/Paris,,OYN, +OYN:SA:CTP641,1,"MESCHERS-SUR-GIRONDE - Pompiers",45.564177,-0.953392,,1,,Europe/Paris,,OYN, +OYN:SA:CTP643,1,"MESCHERS-SUR-GIRONDE - Ribes",45.562042,-0.946805,,1,,Europe/Paris,,OYN, +OYN:SA:CTP644,1,"MESCHERS-SUR-GIRONDE - Foret",45.565597,-0.962444,,1,,Europe/Paris,,OYN, +OYN:SA:CTP647,1,"MESCHERS-SUR-GIRONDE - Suzac",45.57742,-0.983666,,1,,Europe/Paris,,OYN, +OYN:SA:CTP650,1,"MESCHERS-SUR-GIRONDE - Vergnes",45.564982,-0.969558,,1,,Europe/Paris,,OYN, +OYN:SA:CTP653,1,"MORNAC-SUR-SEUDRE - Agnoux",45.699977,-1.012237,,1,,Europe/Paris,,OYN, +OYN:SA:CTP656,1,"MORNAC-SUR-SEUDRE - Coquetterie",45.709462,-1.035704,,1,,Europe/Paris,,OYN, +OYN:SA:CTP660,1,"MORNAC-SUR-SEUDRE - Plordonnier",45.703481,-1.020543,,1,,Europe/Paris,,OYN, +OYN:SA:CTP662,1,"ST-SULPICE-DE-ROYAN - Sauvages",45.696041,-1.006297,,1,,Europe/Paris,,OYN, +OYN:SA:CTP666,1,"MORTAGNE-SUR-GIRONDE - Salle",45.509637,-0.789584,,1,,Europe/Paris,,OYN, +OYN:SA:CTP675,1,"ROYAN - Eglise Parc",45.616938,-1.009535,,1,,Europe/Paris,,OYN, +OYN:SA:CTP676,1,"ROYAN - Eglise Parc",45.616841,-1.009454,,1,,Europe/Paris,,OYN, +OYN:SA:CTP681,1,"ROYAN - Marne",45.625143,-1.004738,,1,,Europe/Paris,,OYN, +OYN:SA:CTP684,1,"ROYAN - Regazzoni",45.635433,-1.03659,,1,,Europe/Paris,,OYN, +OYN:SA:CTP686,1,"ROYAN - Roche",45.652082,-1.04282,,1,,Europe/Paris,,OYN, +OYN:SA:CTP688,1,"ROYAN - Stade",45.620652,-1.00798,,1,,Europe/Paris,,OYN, +OYN:SA:CTP689,1,"ROYAN - Ste-Marie",45.629217,-0.99723,,1,,Europe/Paris,,OYN, +OYN:SA:CTP690,1,"ROYAN - Terrier",45.640993,-1.044271,,1,,Europe/Paris,,OYN, +OYN:SA:CTP7,1,"COZES - Gare",45.586239,-0.83268,,1,,Europe/Paris,,OYN, +OYN:SA:CTP70,1,"ST-PALAIS-SUR-MER - Maine Gaudin",45.65316,-1.102449,,1,,Europe/Paris,,OYN, +OYN:SA:CTP702,1,"SAUJON - Breuil",45.686724,-0.953592,,1,,Europe/Paris,,OYN, +OYN:SA:CTP703,1,"SAUJON - Chemin Vert",45.670434,-0.942661,,1,,Europe/Paris,,OYN, +OYN:SA:CTP708,1,"SAUJON - Gare",45.667119,-0.929711,,1,,Europe/Paris,,OYN, +OYN:SA:CTP71,1,"ST-PALAIS-SUR-MER - Myosotis",45.654221,-1.066944,,1,,Europe/Paris,,OYN, +OYN:SA:CTP711,1,"SAUJON - Mairie",45.671547,-0.926873,,1,,Europe/Paris,,OYN, +OYN:SA:CTP714,1,"SAUJON - Berlan",45.667821,-0.920584,,1,,Europe/Paris,,OYN, +OYN:SA:CTP716,1,"SAUJON - Brûlot",45.674221,-0.943527,,1,,Europe/Paris,,OYN, +OYN:SA:CTP720,1,"SEMUSSAC - Bardecille",45.575573,-0.892965,,1,,Europe/Paris,,OYN, +OYN:SA:CTP724,1,"SEMUSSAC - Lignou",45.596785,-0.908727,,1,,Europe/Paris,,OYN, +OYN:SA:CTP726,1,"SEMUSSAC - Trignac",45.614843,-0.919683,,1,,Europe/Paris,,OYN, +OYN:SA:CTP728,1,"ST-AUGUSTIN - Bourg",45.687843,-1.111698,,1,,Europe/Paris,,OYN, +OYN:SA:CTP730,1,"ST-AUGUSTIN - Breuils",45.672238,-1.086039,,1,,Europe/Paris,,OYN, +OYN:SA:CTP734,1,"ST-AUGUSTIN - Lafont",45.669019,-1.083394,,1,,Europe/Paris,,OYN, +OYN:SA:CTP736,1,"ST-AUGUSTIN - Mairie",45.677808,-1.099695,,1,,Europe/Paris,,OYN, +OYN:SA:CTP738,1,"ST-AUGUSTIN - Temple",45.675714,-1.095248,,1,,Europe/Paris,,OYN, +OYN:SA:CTP739,1,"ST-AUGUSTIN - Yeuse",45.68345,-1.107148,,1,,Europe/Paris,,OYN, +OYN:SA:CTP742,1,"ST-GEORGES-DE-DIDONNE - Didonne",45.603614,-0.98677,,1,,Europe/Paris,,OYN, +OYN:SA:CTP746,1,"ST-GEORGES-DE-DIDONNE - Brandes",45.605526,-0.971443,,1,,Europe/Paris,,OYN, +OYN:SA:CTP748,1,"ST-GEORGES-DE-DIDONNE - Châta",45.600403,-0.984124,,1,,Europe/Paris,,OYN, +OYN:SA:CTP75,1,"ST-SULPICE-DE-ROYAN - Aubat",45.667027,-0.984913,,1,,Europe/Paris,,OYN, +OYN:SA:CTP751,1,"ST-GEORGES-DE-DIDONNE - Oeillet",45.584991,-0.985563,,1,,Europe/Paris,,OYN, +OYN:SA:CTP754,1,"ST-GEORGES-DE-DIDONNE - Oliviers",45.589366,-0.98683,,1,,Europe/Paris,,OYN, +OYN:SA:CTP756,1,"ST-GEORGES-DE-DIDONNE - Parc Estuaire",45.579656,-0.986022,,1,,Europe/Paris,,OYN, +OYN:SA:CTP758,1,"ST-GEORGES-DE-DIDONNE - Perrasses",45.606793,-0.986321,,1,,Europe/Paris,,OYN, +OYN:SA:CTP762,1,"ST-GEORGES-DE-DIDONNE - Rte de Médis",45.606187,-0.976689,,1,,Europe/Paris,,OYN, +OYN:SA:CTP764,1,"ST-GEORGES-DE-DIDONNE - Tourtet",45.608016,-0.993232,,1,,Europe/Paris,,OYN, +OYN:SA:CTP769,1,"ST-PALAIS-SUR-MER - Auture",45.647465,-1.109948,,1,,Europe/Paris,,OYN, +OYN:SA:CTP770,1,"ST-PALAIS-SUR-MER - Bernezac",45.650278,-1.069507,,1,,Europe/Paris,,OYN, +OYN:SA:CTP771,1,"ST-PALAIS-SUR-MER - Châtenet",45.66308,-1.071885,,1,,Europe/Paris,,OYN, +OYN:SA:CTP772,1,"ST-PALAIS-SUR-MER - Clématites",45.65762,-1.07672,,1,,Europe/Paris,,OYN, +OYN:SA:CTP774,1,"ST-PALAIS-SUR-MER - Clocher",45.641607,-1.085694,,1,,Europe/Paris,,OYN, +OYN:SA:CTP779,1,"ST-PALAIS-SUR-MER - Gois",45.664051,-1.072366,,1,,Europe/Paris,,OYN, +OYN:SA:CTP781,1,"ST-PALAIS-SUR-MER - Grande Côte",45.652074,-1.121654,,1,,Europe/Paris,,OYN, +OYN:SA:CTP784,1,"ST-PALAIS-SUR-MER - Bertrand",45.654344,-1.072529,,1,,Europe/Paris,,OYN, +OYN:SA:CTP787,1,"ST-PALAIS-SUR-MER - Nauzan",45.639361,-1.078754,,1,,Europe/Paris,,OYN, +OYN:SA:CTP788,1,"ST-PALAIS-SUR-MER - Peupliers",45.645329,-1.074583,,1,,Europe/Paris,,OYN, +OYN:SA:CTP791,1,"ST-PALAIS-SUR-MER - Pin",45.655951,-1.070506,,1,,Europe/Paris,,OYN, +OYN:SA:CTP792,1,"ST-PALAIS-SUR-MER - Guerets",45.65262,-1.062804,,1,,Europe/Paris,,OYN, +OYN:SA:CTP793,1,"VAUX-SUR-MER - Guerets",45.652594,-1.062691,,1,,Europe/Paris,,OYN, +OYN:SA:CTP795,1,"ST-PALAIS-SUR-MER - Terre Nègre",45.64691,-1.105494,,1,,Europe/Paris,,OYN, +OYN:SA:CTP800,1,"ST-SULPICE-DE-ROYAN - Ardiller",45.669108,-1.018879,,1,,Europe/Paris,,OYN, +OYN:SA:CTP802,1,"ST-SULPICE-DE-ROYAN - Boissirand",45.662491,-1.042978,,1,,Europe/Paris,,OYN, +OYN:SA:CTP804,1,"ST-SULPICE-DE-ROYAN - Capucines",45.667462,-1.015624,,1,,Europe/Paris,,OYN, +OYN:SA:CTP806,1,"ST-SULPICE-DE-ROYAN - Champagnole",45.668515,-1.04062,,1,,Europe/Paris,,OYN, +OYN:SA:CTP809,1,"ST-SULPICE-DE-ROYAN - Grolier",45.685086,-0.992355,,1,,Europe/Paris,,OYN, +OYN:SA:CTP812,1,"ST-SULPICE-DE-ROYAN - Lande",45.670546,-1.023822,,1,,Europe/Paris,,OYN, +OYN:SA:CTP813,1,"ST-SULPICE-DE-ROYAN - Maries",45.665755,-0.9922,,1,,Europe/Paris,,OYN, +OYN:SA:CTP816,1,"ST-SULPICE-DE-ROYAN - Messe",45.671837,-1.014609,,1,,Europe/Paris,,OYN, +OYN:SA:CTP818,1,"ST-SULPICE-DE-ROYAN - Métairies",45.692179,-1.001819,,1,,Europe/Paris,,OYN, +OYN:SA:CTP820,1,"ST-SULPICE-DE-ROYAN - Petit Aubat",45.67407,-0.981265,,1,,Europe/Paris,,OYN, +OYN:SA:CTP822,1,"ST-SULPICE-DE-ROYAN - Rigaleau",45.662888,-1.026288,,1,,Europe/Paris,,OYN, +OYN:SA:CTP824,1,"TALMONT-SUR-GIRONDE - Caillaud",45.533446,-0.90157,,1,,Europe/Paris,,OYN, +OYN:SA:CTP826,1,"THAIMS - Bourg",45.622183,-0.787616,,1,,Europe/Paris,,OYN, +OYN:SA:CTP827,1,"THAIMS - Pierre",45.620065,-0.795416,,1,,Europe/Paris,,OYN, +OYN:SA:CTP829,1,"GREZAC - Roc",45.609337,-0.805569,,1,,Europe/Paris,,OYN, +OYN:SA:CTP834,1,"VAUX-SUR-MER - Chantemerle",45.651262,-1.043533,,1,,Europe/Paris,,OYN, +OYN:SA:CTP835,1,"VAUX-SUR-MER - Conseil",45.634637,-1.06734,,1,,Europe/Paris,,OYN, +OYN:SA:CTP837,1,"VAUX-SUR-MER - Côte Beauté",45.629927,-1.060275,,1,,Europe/Paris,,OYN, +OYN:SA:CTP84,1,"LA TREMBLADE - Sablière",45.771839,-1.146109,,1,,Europe/Paris,,OYN, +OYN:SA:CTP840,1,"VAUX-SUR-MER - Fées",45.637162,-1.071281,,1,,Europe/Paris,,OYN, +OYN:SA:CTP845,1,"VAUX-SUR-MER - Source",45.643588,-1.050773,,1,,Europe/Paris,,OYN, +OYN:SA:CTP847,1,"VAUX-SUR-MER - St-Sordelin",45.632236,-1.063948,,1,,Europe/Paris,,OYN, +OYN:SA:CTP849,1,"MEDIS - Piaudrie",45.632666,-0.953342,,1,,Europe/Paris,,OYN, +OYN:SA:CTP851,1,"LE CHAY - Grande Gorce",45.645632,-0.902044,,1,,Europe/Paris,,OYN, +OYN:SA:CTP86,1,"ST-PALAIS-SUR-MER - Narcisses",45.657187,-1.060859,,1,,Europe/Paris,,OYN, +SIN:SA:OCE71793150,1,"Gare de Port-Bou",42.424471,3.157848,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87003707,1,"Ydes",45.344039,2.436246,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87110171,1,"Landeyrat",45.277543,2.870006,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87110189,1,"Marcenat",45.304939,2.828226,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87110197,1,"Condat",45.334816,2.759806,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87110205,1,"St-Amandin",45.343141,2.694491,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87110213,1,"Vebret",45.339542,2.520261,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87110221,1,"Antignac (Cantal)",45.341011,2.544783,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87130807,1,"Foix-Centre",42.964038,1.607974,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87130823,1,"Les-cabannes-09-Centre",42.784943,1.688417,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87130831,1,"Pamiers-Centre",43.116012,1.610783,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87130849,1,"Mérens-les-Vals-Village",42.656118,1.836418,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87130880,1,"Vernet-Ariège-Abri-Bus",43.184272,1.609749,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87130898,1,"Varilhes-Centre",43.044978,1.627614,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87137158,1,"Tarascon-Ariège-Mitter.",42.846536,1.604316,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87138776,1,"Place de la Liberté",44.353685,2.038845,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87138800,1,"Villefranche-Rouerg-Far",44.375359,2.036386,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87139071,1,"Le-Bruel-Bel-Air",44.433872,2.176453,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87139089,1,"Albias-Abri-Bus",44.09051,1.447144,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87139105,1,"Réalville-Place",44.113294,1.480708,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87146522,1,"Decazeville-Place-Wilso",44.560029,2.250874,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87146597,1,"Maleville-Barbet",44.404942,2.089365,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87152413,1,"Maussac Pl de la Poste",45.471312,2.140154,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87157016,1,"Montbazens",27.140973,-3.404561,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87157024,1,"Lanuéjouls",44.424792,2.160366,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87158006,1,"Gouzon-Champ-de-Foire",46.191172,2.239924,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87165472,1,"Assier-Ville",44.67555,1.876936,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87165498,1,"Cambes-Village",44.614695,1.941021,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87165506,1,"Figeac-Lycée-Champollio",44.607996,2.02819,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87165514,1,"Ceint-d'Eau-Village",44.593435,1.986319,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87165522,1,"Gramat-Ville",44.779987,1.726126,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87165530,1,"L'Hôpital-Village",44.750217,1.726451,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87165548,1,"Bourg (le)",44.709843,1.903179,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87165613,1,"Livernon-Gendarmerie",44.64734,1.842647,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87165621,1,"Rudelle-Mairie",44.721337,1.880875,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87165654,1,"Thémines",44.740865,1.822009,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87165738,1,"Labruguière-Abri-Bus",43.539193,2.264472,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87165803,1,"Lavaur-Centre",43.700281,1.820566,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87165845,1,"Mazamet-Gare-Routière",43.491002,2.37637,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87165852,1,"Montastruc-Conseill-N88",43.72296,1.586772,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87165944,1,"St-Paul-Cap-Joux-Centre",43.648518,1.976097,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87170068,1,"Anos-31",42.897364,0.625133,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87170357,1,"Bagiry",42.97584,0.625277,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87170555,1,"Bertren-Abri",42.998808,0.617581,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87170571,1,"Bertren-Nord",43.003106,0.613804,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87170696,1,"Bertren-Sud",42.994531,0.620903,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87170761,1,"Cazaux-Layrisse",42.868775,0.607281,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87170787,1,"Chaum-Pont",42.937917,0.644683,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87170795,1,"Cierp",42.914637,0.63951,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87170811,1,"Gaud",42.914303,0.647954,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87170878,1,"Estenos",42.946528,0.640921,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87173377,1,"Gouaux-de-Luchon",42.946528,0.640921,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87173468,1,"Loures-Barousse",43.024256,0.60422,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87173500,1,"Luscan-Pont",43.015174,0.621122,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87173542,1,"Moustajon",42.814447,0.597215,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87173633,1,"Salechan-Emb",42.957983,0.633489,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87173823,1,"Pratviel-la-Ferme",42.84415,0.603402,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87173906,1,"Siradan",42.965883,0.629169,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87176115,1,"Bordes-Pn-147",43.198013,0.222663,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87176131,1,"Bordes-Larrimaret",43.200259,0.221278,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87176222,1,"Lannemezan-Hôtel-Pyréné",43.124777,0.380747,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87176297,1,"Lhez",43.200586,0.196042,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87176305,1,"Mascaras-D5-N117",43.195202,0.174928,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87176313,1,"Péré",43.136932,0.310727,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87176891,1,"Tournay-N117/D28",43.183871,0.240808,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87176909,1,"Tournay-Centre",43.184163,0.245649,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87176925,1,"Tournay-Village-Retrait",43.184846,0.243364,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87176941,1,"Courbassil",42.492763,1.850478,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87176966,1,"Ruites",42.475399,1.872722,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87176974,1,"Gourdan-Polignan-Lycée",43.073697,0.584934,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87176990,1,"Lanespède",43.167313,0.266166,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87201541,1,"Châteauroux Gare Rout.",46.809648,1.698686,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87201582,1,"St-Gaultier-Gendarmerie",46.634292,1.418469,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87201608,1,"Le-Blanc-Pl-du-Bateau",46.630748,1.063564,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87202440,1,"St-Savin",46.565795,0.863838,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87202465,1,"Chauvigny",46.569697,0.644031,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87202481,1,"Poitiers-Gare-Routière",46.582767,0.334016,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87324095,1,"Gare de Futuroscope",46.66985,0.377202,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87333005,1,"Pouzauges (centre)",46.780272,-0.839449,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87344440,1,"Ste Gemme",46.90166,-0.287785,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87344598,1,"St-Angel",45.503939,2.23159,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87361980,1,"Rosiers-d'Egletons",45.376396,2.0081,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87395947,1,"Mauriac-Lycée-Cortat",45.213365,2.341224,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87407536,1,"Bourg-Lastice-Pl.-Poste",45.648355,2.561512,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87407650,1,"Feniers",45.324249,2.770679,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87408831,1,"Quatre-Routes-de-Saigne",45.353969,2.463645,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87408963,1,"Riom-es-Montagne-Cliniq",45.281652,2.6596,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87417808,1,"Ajain",46.207141,1.997206,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87417865,1,"Eyrein",45.341918,1.932557,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87417881,1,"Maussac-le-Poteau",45.468321,2.143208,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87417907,1,"Ussel-Place-Henri-Queui",45.549722,2.307317,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87439943,1,"Capens-la-Girouette",43.342765,1.254002,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87439968,1,"Capvern-le-Laca",43.123364,0.296212,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87439976,1,"Capvern-Mairie",43.102237,0.31575,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87439992,1,"Decazeville-Lycée-Polyv",44.567549,2.252221,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87440016,1,"Fouillade (la)",27.140973,-3.404561,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87440099,1,"Le-Rouziet-ParcAventure",42.938321,0.645222,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87440107,1,"Loupiac-Café",44.539791,2.025471,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87440313,1,"Rémy-12 (st)",44.399046,2.040022,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87440339,1,"Tarbes-Gare-Routière",43.23038,0.079515,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87440362,1,"Aubin-Cerons-Croist",44.542686,2.246034,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87445890,1,"CAPVERN LES BAINS",43.120855,0.308422,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87450064,1,"Meymac-Bourg",27.140973,-3.404561,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87455006,1,"Montgaillard (Ariège)",42.933608,1.634166,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87481002,1,"Gare de Nantes",47.217505,-1.541925,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87485003,1,"Gare de La Rochelle-Ville",46.152701,-1.1453,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87485110,1,"Gare de Chatelaillon-Plage",46.078564,-1.091209,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87485144,1,"Gare de Rochefort",45.947416,-0.963788,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87485250,1,"Gare de Mauzé",46.199688,-0.673597,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87485268,1,"Gare de Prin-Deyrançon",46.21901,-0.636465,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87485300,1,"Gare de Niort",46.319345,-0.454391,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87485326,1,"Gare de Fors",46.234539,-0.406926,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87485334,1,"Gare de Marigny (Deux-Sèvres)",46.199027,-0.428631,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87485342,1,"Gare de Beauvoir-sur-Niort",46.176702,-0.469165,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87485359,1,"Gare de Prissé-la-Charrière",46.152755,-0.493673,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87486019,1,"Gare de La Roche-sur-Yon",46.672025,-1.43568,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87486258,1,"Gare de Luçon",46.46372,-1.167445,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87486332,1,"Gare de Chantonnay",46.690119,-1.054358,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87487009,1,"Gare de Thouars",46.985249,-0.210513,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87487173,1,"Parthenay",46.648205,-0.240706,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87487231,1,"Noirterre",46.869564,-0.396173,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87487249,1,"Gare de Bressuire",46.837167,-0.496485,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87487280,1,"Gare de Cerizay",46.817312,-0.667487,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87487298,1,"St-Mesmin-le-Vieux",46.790413,-0.732186,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87487603,1,"Gare de Saumur",47.268972,-0.07143,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87487611,1,"Brion-près-Thouet",47.04872,-0.18491,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87487637,1,"Gare de Montreuil-Bellay",47.125325,-0.148041,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87489088,1,"Chiché",46.796383,-0.358058,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87491001,1,"Gare de Saintes",45.747843,-0.617576,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87491100,1,"Gare de Pons",45.578088,-0.539001,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87491142,1,"Gare de Jonzac",45.438714,-0.442003,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87491183,1,"Gare de Montendre",45.280596,-0.396059,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87491209,1,"Gare de St-Mariens-St-Yzan",45.139081,-0.391685,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87491241,1,"Gare de St-André-de-Cubzac",44.991175,-0.440483,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87491357,1,"Gare de St-Jean-d'Angély",45.940883,-0.509803,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87491779,1,"Barbezieux",45.473054,-0.151673,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87491803,1,"Gare de Royan",45.625515,-1.017198,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87491811,1,"Gare de Saujon",45.667047,-0.930584,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87517953,1,"Le Baladou",44.920852,1.555894,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87519009,1,"Ayron",46.659721,0.078881,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87534073,1,"Rochefort-Montagne",45.687115,2.805446,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87534081,1,"Lanobre",45.436974,2.533923,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87534099,1,"Bort-les-Orgues-Ville",45.399326,2.499248,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87534107,1,"Tauves",45.560312,2.622102,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87543017,1,"Gare de Aubrais-(les)",47.926917,1.906085,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87547000,1,"Gare de Paris-Austerlitz",48.841652,2.366039,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87571240,1,"Gare de St-Pierre-des-Corps",47.385732,0.725054,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87571687,1,"Gare de Chinon",47.163053,0.252044,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87571703,1,"La Roche-Clermault",47.140127,0.194878,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87571711,1,"Beuxes",47.094612,0.176771,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87571729,1,"Basses-Sammarçolles",47.035547,0.122767,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87575001,1,"Gare de Poitiers",46.582183,0.333084,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87575084,1,"Loudun",47.016026,0.083345,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87575100,1,"Arçay",46.971648,0.011179,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87575142,1,"Gare de Chatellerault",46.818565,0.549218,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87575175,1,"Gare de Naintré-les-Barres",46.759517,0.496071,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87575183,1,"Gare de La Tricherie",46.728667,0.440467,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87575209,1,"Pas-de-Jeu",46.975275,-0.041957,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87575217,1,"Gare de Jaunay-Clan",46.682305,0.38189,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87575480,1,"Gare de Montmorillon",46.417332,0.873756,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87575571,1,"Chalandray",46.664462,-0.002988,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87575589,1,"La Ferrière-en-Parthe.",46.663372,-0.073082,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87575597,1,"La Peyratte",46.657874,-0.160099,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87575845,1,"Gare de Lussac-les-Châteaux",46.405141,0.718701,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87576009,1,"Gare de Vierzon",47.226516,2.059824,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87577395,1,"Vouillé",46.646601,0.170493,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87581009,1,"Gare de Bordeaux-St-Jean",44.82654,-0.556194,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87581793,1,"Gare de Alouette-France",44.793502,-0.659614,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87582403,1,"Gare de Gazinet-Cestas",44.772233,-0.699428,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87582445,1,"Gare de Marcheprime",44.69057,-0.853801,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87582536,1,"Gare de Ychoux",44.329249,-0.946197,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87582551,1,"Gare de Labouheyre",44.210577,-0.920996,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87582601,1,"Gare de Le Teich",44.632437,-1.025566,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87582619,1,"Gare de Gujan-Mestras",44.640514,-1.069084,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87582635,1,"Gare de La Hume",44.639905,-1.116065,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87582643,1,"Gare de La Teste",44.636959,-1.142979,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87582668,1,"Gare de Arcachon",44.658917,-1.165368,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87583005,1,"Gare de Angoulême",45.653935,0.164528,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87583203,1,"Gare de Ruelle",45.676224,0.221243,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87583427,1,"Gare de La Rochefoucauld",45.740192,0.389586,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87583443,1,"Gare de Chasseneuil-s-Bonnieure",45.823441,0.452062,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87583468,1,"Gare de Roumazières-Loubert",45.889361,0.578823,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87583674,1,"Gare de Montmoreau",45.398299,0.138001,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87583690,1,"Gare de Chalais",45.270675,0.04338,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87584052,1,"Gare de Libourne",44.915884,-0.236368,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87584268,1,"Gare de Bergerac",44.856801,0.490352,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87584425,1,"Gare de Couze",44.836633,0.702884,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87584441,1,"Gare de Lalinde",44.83951,0.742756,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87584466,1,"Gare de Mauzac",44.855886,0.78982,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87584474,1,"Gare de Trémolat",44.862322,0.830423,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87584508,1,"Gare de St-Denis-de-Pile",44.978579,-0.198026,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87584516,1,"Gare de Coutras",45.036654,-0.131429,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87584532,1,"Gare de Les Eglisottes",45.094265,-0.043533,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87584540,1,"Gare de St-Aigulin-la-Roche-Cha",45.157374,-0.01927,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87586008,1,"Gare de Agen",44.207972,0.620905,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87586438,1,"Gare de Penne (Lot-et-Garonne)",44.379828,0.803151,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87586453,1,"Gare de Monsempron-Libos",44.486396,0.941459,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87586495,1,"Gare de Sauveterre-la-Lémance",44.589363,1.01168,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87586545,1,"Gare de Marmande",44.503067,0.168115,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87587931,1,"Aubin-LEP",44.529552,2.24163,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87589499,1,"Condat-Centre-Equestre",45.333813,2.758561,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87592006,1,"Gare de Limoges-Bénédictins",45.836208,1.267452,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87592022,1,"Gare de Limoges-Montjovis",45.838396,1.251627,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87592378,1,"Gare de La Souterraine",46.23975,1.492234,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87592410,1,"Gare de Nieul",45.927436,1.172244,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87592444,1,"Gare de Nantiat",46.005697,1.15644,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87592485,1,"Gare de Bellac",46.125225,1.0461,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87592543,1,"Gare de Le Dorat",46.211108,1.079244,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87592667,1,"Gare de Aixe-sur-Vienne",45.796582,1.14574,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87592683,1,"Gare de St-Victurnien",45.876778,1.009728,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87592691,1,"Gare de St-Brice-sur-Vienne",45.878238,0.952428,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87592709,1,"Gare de St-Junien",45.881438,0.90049,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87592717,1,"Gare de Saillat-Chassenon",45.86951,0.811922,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87592873,1,"Gare de Chabanais",45.872554,0.716818,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87594002,1,"Gare de Brive-la-Gaillarde",45.152562,1.528623,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87594093,1,"Gare de Ussel",45.557326,2.314433,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87594119,1,"Gare de Corrèze",45.329337,1.880385,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87594135,1,"Gare de Montaignac-St-Hippolyte",45.354592,1.979534,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87594168,1,"Gare de Egletons",45.402315,2.065144,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87594200,1,"Gare de Uzerche",45.440621,1.570228,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87594275,1,"Gare de Meymac",45.530241,2.16388,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87594333,1,"Gare de Souillac",44.902337,1.465215,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87594382,1,"Gare de Condat-le-Lardin",45.126716,1.226651,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87594408,1,"Gare de Terrasson",45.13568,1.300509,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87594465,1,"Gare de Aubazine-St-Hilaire",45.181764,1.641725,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87594481,1,"Gare de Cornil",45.215275,1.697409,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87594499,1,"Gare de Tulle",45.258708,1.756432,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87594564,1,"Gare de Les Quatre-Routes",44.99702,1.644498,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87594572,1,"Gare de St-Denis-près-Martel",44.945792,1.666287,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87594705,1,"Le Pigeon",44.906052,1.534115,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87594713,1,"Martel",44.937672,1.613827,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87594754,1,"Gare de Puybrun",44.921716,1.784029,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87594762,1,"Gare de Bretenoux-Biars",44.927568,1.844204,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87595009,1,"Gare de Périgueux",45.187164,0.707181,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87595124,1,"Gare de Thiviers",45.418954,0.921349,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87595249,1,"Gare de St-Astier",45.139011,0.522819,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87595298,1,"Gare de Mussidan",45.034374,0.354066,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87595322,1,"Gare de Montpon-Ménestérol",45.006279,0.159339,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87595512,1,"Gare de Niversac",45.138187,0.808127,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87595579,1,"Gare de Thenon",45.160074,1.068623,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87595736,1,"Gare de Les Eyzies",44.941268,1.008275,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87595744,1,"Gare de Le Bugue",44.905774,0.942864,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87595751,1,"Gare de Le Buisson",44.847225,0.908183,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87595769,1,"Gare de Siorac-en-Périgord",44.819792,0.984227,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87595777,1,"Gare de St-Cyprien (24)",44.863325,1.043723,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87595827,1,"Gare de Sarlat",44.876656,1.222056,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87595876,1,"Gare de Belvès",44.777364,1.012014,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87595892,1,"Gare de Villefranche-Périgord",44.626975,1.049208,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87597005,1,"Gare de Châteauroux",46.809823,1.699457,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87597062,1,"Gare de Issoudun",46.947849,1.984921,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87597120,1,"Gare de Argenton-sur-Creuse",46.592225,1.51823,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87597609,1,"Gare de Guéret",46.174146,1.87917,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87597724,1,"Gare de Parsac-Gouzon",46.198312,2.174196,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87609354,1,"Bagnols-Stade",45.513781,2.59691,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87609602,1,"Aubin-Place-Monteils",44.528106,2.243782,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87609610,1,"Souillac-Renaissance",44.898632,1.475638,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87609628,1,"Martel-M.-Retraite",44.938022,1.615089,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87609636,1,"Réalville-Abri-Bus",44.119529,1.484707,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87609701,1,"Tarbes-Place-de-Verdun",43.233428,0.073187,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87611004,1,"Gare de Toulouse-Matabiau",43.611464,1.453558,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87611038,1,"Gare de Muret",43.464784,1.324162,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87611046,1,"Gare de Fauga",43.404343,1.28289,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87611053,1,"Gare de Longages-Noé",43.356207,1.251987,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87611061,1,"Gare de Carbonne",43.298197,1.212506,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87611079,1,"Gare de Cazères-sur-Garonne",43.212901,1.082767,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87611087,1,"Gare de Martres-Tolosane",43.198551,1.010304,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87611095,1,"Gare de Boussens",43.179327,0.972745,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87611103,1,"Gare de St-Martory",43.138404,0.933628,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87611137,1,"Gare de St-Gaudens",43.104956,0.729263,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87611152,1,"Gare de Montréjeau-Gourdan-Pol.",43.078057,0.573536,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87611160,1,"Labroq.-St-Bert.-de-Com",43.038185,0.593817,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87611178,1,"Loures-Barbazan",43.02113,0.610449,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87611194,1,"Marignac-St-Béat",42.915549,0.651756,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87611210,1,"Lège",42.87718,0.610889,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87611228,1,"Cier-de-Luchon",42.852642,0.602415,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87611236,1,"Luchon",42.797278,0.596609,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87611244,1,"Gare de Montauban-Ville-Bourbon",44.014639,1.341974,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87611327,1,"Gare de Varilhes",43.04149,1.628576,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87611343,1,"Gare de Pamiers",43.116175,1.618998,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87611350,1,"Gare de Vernet-d'Ariège",43.189488,1.611697,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87611368,1,"Gare de Saverdun",43.239421,1.570422,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87611376,1,"Gare de Cintegabelle",43.305347,1.521085,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87611384,1,"Gare de Auterive",43.348835,1.468624,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87611392,1,"Gare de Venerque-le-Vernet",43.433328,1.425869,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87611400,1,"Gare de Portet-St-Simon",43.530781,1.405897,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87611483,1,"Gare de Latour-de-Carol-Enveitg",42.458157,1.90584,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87611491,1,"Porta",42.520349,1.822342,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87611509,1,"Gare de Porte-Puymorens",42.538759,1.82485,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87611517,1,"Gare de Andorre-L'Hospitalet",42.588385,1.798515,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87611525,1,"Gare de Mérens-les-Vals",42.658677,1.83642,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87611533,1,"Gare de Ax-les-Thermes",42.724805,1.833315,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87611558,1,"Gare de Luzenac-Garanou",42.764444,1.753154,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87611566,1,"Vèbre-La-Remise",42.773916,1.719166,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87611574,1,"Gare de Les Cabannes",42.786537,1.68618,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87611582,1,"Ussat-les-Bains-Centre",42.821052,1.621331,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87611590,1,"Gare de Tarascon-sur-Ariège",42.849453,1.600031,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87611608,1,"St-Paul-St-Antoine",42.919386,1.640719,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87611616,1,"Gare de Foix",42.969299,1.607394,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87611624,1,"Gare de St-Jean-de-Verges",43.012344,1.608147,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87611715,1,"Antignac (Hte-Garonne)",42.826082,0.599465,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87611848,1,"Gare de Montrabé",43.645113,1.524062,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87611863,1,"Gare de Valence-d'Agen",44.111846,0.891791,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87611889,1,"Gare de Moissac",44.102144,1.07749,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87611897,1,"Gare de Castelsarrasin",44.040283,1.114178,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87611970,1,"PONT DE GURAN",42.88512,0.616895,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87612358,1,"Seilhan-Le-Bazert",43.060663,0.590723,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87613000,1,"Gare de Cahors",44.44916,1.433238,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87613018,1,"Capens",43.337142,1.259612,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87613042,1,"Gare de Rocamadour-Padirac",44.817911,1.657445,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87613059,1,"Gare de Gramat",44.77349,1.722371,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87613075,1,"Gare de Assier",44.674593,1.869747,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87613091,1,"Gare de Figeac",44.603514,2.037077,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87613109,1,"Gare de Capdenac",44.577656,2.078902,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87613141,1,"Gare de Gourdon",44.741898,1.389276,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87613224,1,"Gare de Aubin",44.527356,2.239559,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87613232,1,"Gare de Cransac",44.523063,2.270767,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87613257,1,"Gare de St-Christophe",44.464687,2.407487,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87613331,1,"Montpezat",44.268105,1.504628,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87613356,1,"Gare de Caussade (T.-et-G.)",44.162304,1.533453,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87613422,1,"Gare de Rodez",44.362652,2.580253,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87613471,1,"Gare de Laguépie",44.145489,1.96863,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87613604,1,"Gare de Bagnac",44.66528,2.160163,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87613661,1,"Gare de Viviez-Decazeville",44.55704,2.218024,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87613679,1,"Decazeville-Centre",44.563672,2.240842,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87613885,1,"Villeneuve-d'Aveyron",44.428447,2.065619,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87613893,1,"Gare de Villefranche-Rouergue",44.347681,2.036583,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87615005,1,"Gare de Albi-Ville",43.922036,2.138635,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87615039,1,"Gare de Castelnaudary",43.312646,1.950989,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87615112,1,"Gare de Lézignan-Corbières",43.199971,2.769857,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87615195,1,"Gare de Albi-Madeleine.",43.937899,2.141168,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87615245,1,"Gare de Tessonnières",43.928396,1.93741,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87615286,1,"Gare de Carcassonne",43.217715,2.351883,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87615310,1,"Gare de Lisle-sur-Tarn",43.856228,1.807745,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87615328,1,"Gare de Rabastens-Couffouleux",43.819489,1.730763,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87615344,1,"Gare de St-Sulpice (Tarn)",43.775412,1.681037,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87615369,1,"Gare de Montastruc-la-Conseil.",43.715998,1.597894,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87615377,1,"Gare de Gragnague",43.695795,1.567568,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87615419,1,"Gare de Marssac-sur-Tarn",43.915095,2.026759,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87615468,1,"Gare de Castres",43.597754,2.229263,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87615476,1,"Gare de Lavaur",43.703391,1.81303,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87615492,1,"Gare de Vielmur-sur-Agout",43.624101,2.089438,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87615542,1,"Gare de Mazamet",43.497545,2.374424,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87615625,1,"Gare de Carmaux",44.049004,2.152389,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87615674,1,"Gare de Tanus",44.100299,2.314931,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87615732,1,"Gare de Naucelle",44.18567,2.363256,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87615757,1,"Gare de Baraqueville-Carce.Pey.",44.270382,2.427506,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87615773,1,"Gare de Luc-Primaube",44.291389,2.554483,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87618116,1,"Gare de Pins Justaret",43.480772,1.399589,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87618348,1,"Mercus-Garrabet-Centre",42.877096,1.627208,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87618702,1,"Galié",42.989795,0.625365,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87618710,1,"Saléchan-Siradan",42.962994,0.631689,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87620195,1,"St-Sulpice-sur-Lèze",43.329798,1.322298,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87633958,1,"Lourdes-Lycée-d'-Arrouz",43.091985,-0.049631,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87640649,1,"Chirac-Ville",44.52286,3.267369,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87640698,1,"Le-Monastier-Ville",44.51564,3.255371,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87641001,1,"Gare de Montluçon-Ville",46.337875,2.596412,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87641241,1,"Eygurande-Merlines",45.645326,2.460978,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87641274,1,"Laqueuille",45.64695,2.704938,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87645002,1,"Gare de Aurillac",44.920986,2.435547,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87645135,1,"Gare de Laroquebrou",44.964201,2.192841,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87645168,1,"Gare de Maurs",44.706133,2.199697,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87645192,1,"Gare de Le Rouget",44.856555,2.235418,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87645267,1,"Mauriac",45.221784,2.34489,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87645283,1,"Vendes",45.296779,2.388505,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87645507,1,"Gare de Neussargues",45.125386,2.979126,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87645606,1,"Ste-Anastasie",45.17272,2.968379,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87645614,1,"Allanche",45.22967,2.931457,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87645705,1,"Bort-les-Orgues",45.406357,2.502563,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87661116,1,"Noe-College",43.347101,1.249056,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87661132,1,"Rocamadour-Centre",27.140973,-3.404561,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87671008,1,"Gare de Tarbes",43.239803,0.069407,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87671016,1,"Gare de Mont-de-Marsan",43.885223,-0.505091,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87671123,1,"Gare de Lannemezan",43.114308,0.38769,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87671156,1,"Gare de Capvern",43.103057,0.32974,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87671164,1,"Ozon-Lanespède",43.170809,0.255467,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87671172,1,"Gare de Tournay (Htes-Pyrénées)",43.183502,0.238967,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87671180,1,"Bordes-Lhez",43.197943,0.225503,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87671339,1,"Gare de Lourdes",43.100429,-0.042192,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87671479,1,"Gare de Arengosse",44.006926,-0.808738,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87671487,1,"Gare de Ygos",43.978221,-0.736139,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87671495,1,"Gare de St-Martin-d'Oney",43.929892,-0.651486,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87672006,1,"Gare de Pau",43.291667,-0.36965,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87672139,1,"Gare de Coarraze-Nay",43.181832,-0.241756,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87672253,1,"Gare de Orthez",43.484099,-0.767625,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87673004,1,"Gare de Bayonne",43.496759,-1.470398,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87673095,1,"Gare de Boucau",43.523368,-1.490435,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87673103,1,"Gare de Morcenx",44.033673,-0.908481,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87673202,1,"Gare de Dax",43.720667,-1.050324,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87673269,1,"Gare de St-Geours-de-Maremne",43.6712,-1.241307,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87673277,1,"Gare de St-Vincent-de-Tyrosse",43.657808,-1.306385,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87673285,1,"Gare de Bénesse-Maremne",43.627647,-1.369912,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87673293,1,"Gare de Labenne",43.587104,-1.428925,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87673319,1,"Gare de Ondres",43.568858,-1.457162,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87673400,1,"Gare de Biarritz",43.459377,-1.546011,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87673459,1,"Gare de Guéthary",43.425428,-1.609927,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87677005,1,"Gare de Hendaye",43.352995,-1.781868,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87677104,1,"Gare de Les Deux-Jumeaux (64)",43.370038,-1.764419,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87677120,1,"Gare de St-Jean-de-Luz-Ciboure",43.385845,-1.661162,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87691279,1,"Theix-Centre",27.140973,-3.404561,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87693390,1,"Egletons-ville",27.140973,-3.404561,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87693630,1,"Limoges-CIEL",27.140973,-3.404561,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87695015,1,"Luchon-Richelieu",27.140973,-3.404561,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87695031,1,"Muna-Burgalays",27.140973,-3.404561,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87702951,1,"Gaillac-Gare-Routier",27.140973,-3.404561,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87726802,1,"Gare de Roanne",46.040211,4.063135,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87734004,1,"Gare de Clermont-Ferrand",45.778569,3.100519,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87734871,1,"Gare de Massiac-Blesle",45.253703,3.196585,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87751008,1,"Gare de Marseille-St-Charles",43.30273,5.38065,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87753657,1,"Gare de Arles",43.684844,4.632019,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87755009,1,"Gare de Toulon",43.128316,5.929458,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87755447,1,"Gare de Les Arcs-Draguignan",43.455729,6.482462,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87756056,1,"Gare de Nice-Ville",43.704711,7.261786,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87757526,1,"Gare de St-Raphaël-Valescure",43.423606,6.769013,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87757625,1,"Gare de Cannes",43.553913,7.019725,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87757674,1,"Gare de Antibes",43.585789,7.119516,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87773002,1,"Gare de Montpellier-Saint-Roch",43.605834,3.88236,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87773200,1,"Gare de Sète",43.412812,3.696396,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87775007,1,"Gare de Nîmes",43.832293,4.365835,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87781005,1,"Gare de Béziers",43.336225,3.219218,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87781104,1,"Gare de Narbonne",43.191033,3.005956,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87783001,1,"Gare de Millau",44.10187,3.074898,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87783175,1,"Gare de St-Flour-Chaudes-Aigues",45.034838,3.106166,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87783241,1,"Gare de St-Chély-d'Apcher",44.801701,3.270741,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87783266,1,"Gare de Aumont-Aubrac",44.71814,3.283415,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87783282,1,"Gare de Marvejols",44.544616,3.281048,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87783308,1,"Gare de Le Monastier",44.509002,3.252196,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87783324,1,"Gare de Banassac-la-Canourgue",44.447642,3.19621,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87783365,1,"Gare de Séverac-D'Aveyron",44.325205,3.057387,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87783423,1,"Gare de St-Georges-de-Luzençon",44.066024,2.983914,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87783431,1,"Gare de St-Rome-de-Cernon",44.014575,2.967617,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87783480,1,"St-Affrique",43.956689,2.881909,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87783761,1,"Gare de Laissac",44.374905,2.822384,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87784009,1,"Gare de Perpignan",42.696075,2.879617,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87784207,1,"Gare de Elne",42.597369,2.963521,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87784231,1,"Gare de Argelès-sur-Mer",42.543951,3.0215,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87784256,1,"Gare de Collioure",42.526892,3.078721,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87784264,1,"Gare de Port-Vendres",42.513381,3.102386,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87784298,1,"Gare de Banyuls-sur-Mer",42.482619,3.124411,,1,,Europe/Paris,,SIN, +SIN:SA:OCE87785006,1,"Gare de Cerbère",42.442764,3.165525,,1,,Europe/Paris,,SIN, +STE:SA:OCE87278259,1,"Gare de Mérignac-Arlac",44.826772,-0.62616,,1,,Europe/Paris,,STE, +STE:SA:OCE87328021,1,"Gare de Les Cauquillous",43.734311,1.754566,,1,,Europe/Paris,,STE, +STE:SA:OCE87353573,1,"Gare de Le Toec",43.595502,1.40133,,1,,Europe/Paris,,STE, +STE:SA:OCE87353581,1,"Gare de Les Ramassiers",43.602362,1.352904,,1,,Europe/Paris,,STE, +STE:SA:OCE87353599,1,"Gare de St-Martin-du-Touch",43.599786,1.37134,,1,,Europe/Paris,,STE, +STE:SA:OCE87420596,1,"Gare de Cenon",44.856768,-0.533602,,1,,Europe/Paris,,STE, +STE:SA:OCE87437798,1,"Gare de La-Rochelle-Pt-Dauphine",46.167608,-1.151929,,1,,Europe/Paris,,STE, +STE:SA:OCE87437806,1,"Gare de Aytre.-Plage",46.127572,-1.128414,,1,,Europe/Paris,,STE, +STE:SA:OCE87446179,1,"Gare de Saint-Cyprien-Arènes",43.593744,1.416459,,1,,Europe/Paris,,STE, +STE:SA:OCE87484006,1,"Gare de Angers-St-Laud",47.464434,-0.556949,,1,,Europe/Paris,,STE, +STE:SA:OCE87485102,1,"Gare de Angoulins-sur-Mer",46.107752,-1.115426,,1,,Europe/Paris,,STE, +STE:SA:OCE87485136,1,"Gare de St-Laurent-Fouras",45.99248,-1.026994,,1,,Europe/Paris,,STE, +STE:SA:OCE87485151,1,"Gare de Tonnay-Charente",45.943378,-0.897833,,1,,Europe/Paris,,STE, +STE:SA:OCE87485185,1,"Gare de La-Jarrie",46.120623,-1.023685,,1,,Europe/Paris,,STE, +STE:SA:OCE87485193,1,"Gare de Aigrefeuille-le-Thou",46.093489,-0.951268,,1,,Europe/Paris,,STE, +STE:SA:OCE87485227,1,"Gare de Surgères",46.113416,-0.762133,,1,,Europe/Paris,,STE, +STE:SA:OCE87485474,1,"Gare de La Crèche",46.360423,-0.296278,,1,,Europe/Paris,,STE, +STE:SA:OCE87485490,1,"Gare de St-Maixent (Deux-Sèvr.)",46.406308,-0.201306,,1,,Europe/Paris,,STE, +STE:SA:OCE87485508,1,"Gare de La Mothe-St-Héray",46.380923,-0.129873,,1,,Europe/Paris,,STE, +STE:SA:OCE87485524,1,"Gare de Pamproux",46.399808,-0.051976,,1,,Europe/Paris,,STE, +STE:SA:OCE87485532,1,"Gare de Rouillé",46.418799,0.041859,,1,,Europe/Paris,,STE, +STE:SA:OCE87485540,1,"Gare de Lusignan",46.435002,0.115756,,1,,Europe/Paris,,STE, +STE:SA:OCE87486308,1,"Gare de La Chaize-le-Vicomte",46.676832,-1.283399,,1,,Europe/Paris,,STE, +STE:SA:OCE87486316,1,"Gare de Fougeré",46.665367,-1.231964,,1,,Europe/Paris,,STE, +STE:SA:OCE87486324,1,"Gare de Bournezeau",46.651484,-1.178474,,1,,Europe/Paris,,STE, +STE:SA:OCE87487314,1,"Gare de Pouzauges",46.752408,-0.814623,,1,,Europe/Paris,,STE, +STE:SA:OCE87487843,1,"Gare de La Bohalle",47.434177,-0.400197,,1,,Europe/Paris,,STE, +STE:SA:OCE87487876,1,"Gare de Les Rosiers-sur-Loire",47.361852,-0.219611,,1,,Europe/Paris,,STE, +STE:SA:OCE87487884,1,"Gare de La Menitré",47.397369,-0.275869,,1,,Europe/Paris,,STE, +STE:SA:OCE87487892,1,"Gare de St-Mathurin",47.412078,-0.318063,,1,,Europe/Paris,,STE, +STE:SA:OCE87491019,1,"Gare de Bords",45.89454,-0.798522,,1,,Europe/Paris,,STE, +STE:SA:OCE87491035,1,"Gare de St-Savinien/Charente",45.875842,-0.677909,,1,,Europe/Paris,,STE, +STE:SA:OCE87491043,1,"Gare de Taillebourg",45.830784,-0.645014,,1,,Europe/Paris,,STE, +STE:SA:OCE87491076,1,"Gare de Beillant",45.700996,-0.526858,,1,,Europe/Paris,,STE, +STE:SA:OCE87491134,1,"Gare de Clion-sur-Seugne",45.478494,-0.502109,,1,,Europe/Paris,,STE, +STE:SA:OCE87491159,1,"Gare de Fontaines-Ozillac",45.387558,-0.383967,,1,,Europe/Paris,,STE, +STE:SA:OCE87491191,1,"Gare de Bussac",45.211558,-0.368047,,1,,Europe/Paris,,STE, +STE:SA:OCE87491217,1,"Gare de Cavignac",45.104923,-0.38213,,1,,Europe/Paris,,STE, +STE:SA:OCE87491225,1,"Gare de Gauriaguet",45.053486,-0.399998,,1,,Europe/Paris,,STE, +STE:SA:OCE87491233,1,"Gare de Aubie-St-Antoine",45.015095,-0.419748,,1,,Europe/Paris,,STE, +STE:SA:OCE87491258,1,"Gare de Villeneuve-la-Comtesse",46.098728,-0.513069,,1,,Europe/Paris,,STE, +STE:SA:OCE87491266,1,"Gare de Cubzac-les-Ponts",44.972889,-0.459315,,1,,Europe/Paris,,STE, +STE:SA:OCE87491274,1,"Gare de La Grave-d'Ambarès-G-i",44.935655,-0.477014,,1,,Europe/Paris,,STE, +STE:SA:OCE87491282,1,"Gare de Ste-Eulalie-Carbon-Blan",44.897868,-0.494053,,1,,Europe/Paris,,STE, +STE:SA:OCE87491290,1,"Gare de Loulay",46.043507,-0.50188,,1,,Europe/Paris,,STE, +STE:SA:OCE87491324,1,"Gare de St-Hilaire-Brizambourg",45.849901,-0.534935,,1,,Europe/Paris,,STE, +STE:SA:OCE87491449,1,"Gare de Cognac",45.684455,-0.326164,,1,,Europe/Paris,,STE, +STE:SA:OCE87491472,1,"Gare de Jarnac-Charente",45.67129,-0.177924,,1,,Europe/Paris,,STE, +STE:SA:OCE87491506,1,"Gare de Châteauneuf/Charente",45.599971,-0.050207,,1,,Europe/Paris,,STE, +STE:SA:OCE87497461,1,"Gare de Gallieni-Cancéropôle",43.573338,1.419297,,1,,Europe/Paris,,STE, +STE:SA:OCE87543009,1,"Gare de Orléans",47.908153,1.904753,,1,,Europe/Paris,,STE, +STE:SA:OCE87543116,1,"Gare de St-Cyr-en-Val-La-Source",47.819197,1.947569,,1,,Europe/Paris,,STE, +STE:SA:OCE87543124,1,"Gare de La Ferté-St-Aubin",47.720968,1.932337,,1,,Europe/Paris,,STE, +STE:SA:OCE87543140,1,"Gare de Lamotte-Beuvron",47.59397,2.022591,,1,,Europe/Paris,,STE, +STE:SA:OCE87543157,1,"Gare de Nouan-le-Fuzelier",47.534058,2.033265,,1,,Europe/Paris,,STE, +STE:SA:OCE87543165,1,"Gare de Salbris",47.42514,2.047737,,1,,Europe/Paris,,STE, +STE:SA:OCE87543199,1,"Gare de Theillay",47.314356,2.044474,,1,,Europe/Paris,,STE, +STE:SA:OCE87551945,1,"Toulouse-Argoulets",27.140973,-3.404561,,1,,Europe/Paris,,STE, +STE:SA:OCE87571000,1,"Gare de Tours",47.389814,0.693505,,1,,Europe/Paris,,STE, +STE:SA:OCE87571794,1,"Gare de Port-Boulet",47.248527,0.154869,,1,,Europe/Paris,,STE, +STE:SA:OCE87571828,1,"Gare de Langeais",47.323944,0.410325,,1,,Europe/Paris,,STE, +STE:SA:OCE87571836,1,"Gare de Cinq-Mars",47.344792,0.460078,,1,,Europe/Paris,,STE, +STE:SA:OCE87571844,1,"Gare de Savonnières",47.360481,0.543798,,1,,Europe/Paris,,STE, +STE:SA:OCE87575035,1,"Gare de Monts (Indre-et-Loire)",47.281999,0.654734,,1,,Europe/Paris,,STE, +STE:SA:OCE87575043,1,"Gare de Villeperdue",47.202059,0.633534,,1,,Europe/Paris,,STE, +STE:SA:OCE87575050,1,"Gare de Ste-Maure-Noyant",47.111113,0.577006,,1,,Europe/Paris,,STE, +STE:SA:OCE87575068,1,"Gare de Maillé",47.052959,0.583006,,1,,Europe/Paris,,STE, +STE:SA:OCE87575076,1,"Gare de Port-de-Piles",47.010147,0.598559,,1,,Europe/Paris,,STE, +STE:SA:OCE87575118,1,"Gare de Les Ormes-sur-Vienne",46.97078,0.608165,,1,,Europe/Paris,,STE, +STE:SA:OCE87575126,1,"Gare de Dangé",46.93781,0.608778,,1,,Europe/Paris,,STE, +STE:SA:OCE87575134,1,"Gare de Ingrandes-sur-Vienne",46.874825,0.569515,,1,,Europe/Paris,,STE, +STE:SA:OCE87575167,1,"Gare de Nerpuy",46.783509,0.525449,,1,,Europe/Paris,,STE, +STE:SA:OCE87575191,1,"Gare de Dissay (Vienne)",46.703732,0.421131,,1,,Europe/Paris,,STE, +STE:SA:OCE87575225,1,"Gare de Chasseneuil (Vienne)",46.651794,0.372811,,1,,Europe/Paris,,STE, +STE:SA:OCE87575274,1,"Gare de Ligugé",46.520564,0.333184,,1,,Europe/Paris,,STE, +STE:SA:OCE87575290,1,"Gare de Vivonne",46.426789,0.26511,,1,,Europe/Paris,,STE, +STE:SA:OCE87575332,1,"Gare de Anché-Voulon",46.349637,0.250203,,1,,Europe/Paris,,STE, +STE:SA:OCE87575357,1,"Gare de Epanvilliers",46.226881,0.235903,,1,,Europe/Paris,,STE, +STE:SA:OCE87575365,1,"Gare de St-Saviol",46.147154,0.217889,,1,,Europe/Paris,,STE, +STE:SA:OCE87575498,1,"Gare de Lathus",46.338735,0.964163,,1,,Europe/Paris,,STE, +STE:SA:OCE87575704,1,"Gare de Mignaloux-Nouaillé",46.526203,0.41173,,1,,Europe/Paris,,STE, +STE:SA:OCE87577403,1,"Gare de Iteuil (Centre)",46.484213,0.316845,,1,,Europe/Paris,,STE, +STE:SA:OCE87581181,1,"Gare de Ludon",44.97438,-0.61166,,1,,Europe/Paris,,STE, +STE:SA:OCE87581199,1,"Gare de Macau",45.004154,-0.619846,,1,,Europe/Paris,,STE, +STE:SA:OCE87581215,1,"Gare de Margaux",45.035952,-0.685392,,1,,Europe/Paris,,STE, +STE:SA:OCE87581231,1,"Gare de Moulis-Listrac",45.084075,-0.744602,,1,,Europe/Paris,,STE, +STE:SA:OCE87581256,1,"Gare de Pauillac",45.203744,-0.754974,,1,,Europe/Paris,,STE, +STE:SA:OCE87581314,1,"Gare de Lesparre",45.303635,-0.945307,,1,,Europe/Paris,,STE, +STE:SA:OCE87581371,1,"Gare de Soulac-sur-Mer",45.508209,-1.117752,,1,,Europe/Paris,,STE, +STE:SA:OCE87581389,1,"Gare de Le-Verdon",45.54921,-1.065132,,1,,Europe/Paris,,STE, +STE:SA:OCE87581538,1,"Gare de Caudéran-Mérignac",44.842734,-0.627702,,1,,Europe/Paris,,STE, +STE:SA:OCE87581710,1,"Gare de Parempuyre",44.943928,-0.61948,,1,,Europe/Paris,,STE, +STE:SA:OCE87581728,1,"Gare de Blanquefort",44.917534,-0.623922,,1,,Europe/Paris,,STE, +STE:SA:OCE87581736,1,"Gare de Bruges",44.886438,-0.609359,,1,,Europe/Paris,,STE, +STE:SA:OCE87581751,1,"Gare de Pessac",44.804597,-0.631749,,1,,Europe/Paris,,STE, +STE:SA:OCE87581801,1,"Gare de Bègles",44.799777,-0.555341,,1,,Europe/Paris,,STE, +STE:SA:OCE87581835,1,"Gare de Villenave-d'Ornon",44.768707,-0.547456,,1,,Europe/Paris,,STE, +STE:SA:OCE87581850,1,"Gare de Bassens",44.901272,-0.522277,,1,,Europe/Paris,,STE, +STE:SA:OCE87582478,1,"Gare de Biganos-Facture",44.637482,-0.96602,,1,,Europe/Paris,,STE, +STE:SA:OCE87582684,1,"Gare de Cadaujac",44.752079,-0.537669,,1,,Europe/Paris,,STE, +STE:SA:OCE87582692,1,"Gare de St-Médard-d'Eyrans",44.715709,-0.504386,,1,,Europe/Paris,,STE, +STE:SA:OCE87582700,1,"Gare de Beautiran",44.701038,-0.450177,,1,,Europe/Paris,,STE, +STE:SA:OCE87582718,1,"Gare de Portets",44.692834,-0.425394,,1,,Europe/Paris,,STE, +STE:SA:OCE87582726,1,"Gare de Arbanats",44.674302,-0.395548,,1,,Europe/Paris,,STE, +STE:SA:OCE87582734,1,"Gare de Podensac",44.649011,-0.358829,,1,,Europe/Paris,,STE, +STE:SA:OCE87582742,1,"Gare de Cérons",44.632151,-0.340602,,1,,Europe/Paris,,STE, +STE:SA:OCE87582759,1,"Gare de Barsac",44.604077,-0.320508,,1,,Europe/Paris,,STE, +STE:SA:OCE87582767,1,"Gare de Preignac",44.578339,-0.301903,,1,,Europe/Paris,,STE, +STE:SA:OCE87582775,1,"Gare de Langon",44.555442,-0.25561,,1,,Europe/Paris,,STE, +STE:SA:OCE87582825,1,"Gare de St-Macaire",44.568493,-0.227097,,1,,Europe/Paris,,STE, +STE:SA:OCE87582833,1,"Gare de St-Pierre-d'Aurillac",44.575138,-0.18762,,1,,Europe/Paris,,STE, +STE:SA:OCE87582841,1,"Gare de Caudrot",44.580093,-0.145101,,1,,Europe/Paris,,STE, +STE:SA:OCE87582858,1,"Gare de Gironde",44.583338,-0.092466,,1,,Europe/Paris,,STE, +STE:SA:OCE87582866,1,"Gare de La Réole",44.579755,-0.030725,,1,,Europe/Paris,,STE, +STE:SA:OCE87582882,1,"Gare de Lamothe-Landerron",44.562911,0.045231,,1,,Europe/Paris,,STE, +STE:SA:OCE87583823,1,"Gare de Luxé",45.887216,0.109152,,1,,Europe/Paris,,STE, +STE:SA:OCE87583849,1,"Gare de Ruffec (Charente)",46.030526,0.190127,,1,,Europe/Paris,,STE, +STE:SA:OCE87584102,1,"Gare de St-Emilion",44.881287,-0.159245,,1,,Europe/Paris,,STE, +STE:SA:OCE87584136,1,"Gare de Castillon",44.857158,-0.040657,,1,,Europe/Paris,,STE, +STE:SA:OCE87584151,1,"Gare de Lamothe-Montravel",44.853863,0.021547,,1,,Europe/Paris,,STE, +STE:SA:OCE87584177,1,"Gare de Velines",44.852,0.103684,,1,,Europe/Paris,,STE, +STE:SA:OCE87584193,1,"Gare de Ste-Foy-la-Grande",44.83686,0.221327,,1,,Europe/Paris,,STE, +STE:SA:OCE87584201,1,"Gare de St-Antoine-de-Breuilh",44.846734,0.151718,,1,,Europe/Paris,,STE, +STE:SA:OCE87584235,1,"Gare de Gardonne",44.834747,0.331823,,1,,Europe/Paris,,STE, +STE:SA:OCE87584243,1,"Gare de Lamonzie-St-Martin",44.843813,0.380795,,1,,Europe/Paris,,STE, +STE:SA:OCE87584607,1,"Gare de St-Médard-de-Guizières",45.015523,-0.048899,,1,,Europe/Paris,,STE, +STE:SA:OCE87584615,1,"Gare de St-Seurin-sur-l'Isle",45.011459,-0.001899,,1,,Europe/Paris,,STE, +STE:SA:OCE87584714,1,"Gare de Vayres",44.901383,-0.323921,,1,,Europe/Paris,,STE, +STE:SA:OCE87584722,1,"Gare de St-Sulpice-Izon",44.914172,-0.392218,,1,,Europe/Paris,,STE, +STE:SA:OCE87584730,1,"Gare de St-Loubès",44.922262,-0.433164,,1,,Europe/Paris,,STE, +STE:SA:OCE87584755,1,"Gare de La Gorp",44.928699,-0.496669,,1,,Europe/Paris,,STE, +STE:SA:OCE87586107,1,"Gare de Port-Ste-Marie",44.250364,0.39031,,1,,Europe/Paris,,STE, +STE:SA:OCE87586404,1,"Gare de Pont-du-Casse",44.232763,0.675916,,1,,Europe/Paris,,STE, +STE:SA:OCE87586412,1,"Gare de Laroque",44.287437,0.749783,,1,,Europe/Paris,,STE, +STE:SA:OCE87586446,1,"Gare de Trentels-Ladignac",44.443065,0.884881,,1,,Europe/Paris,,STE, +STE:SA:OCE87586479,1,"Gare de Ste-Bazeille",44.532304,0.093206,,1,,Europe/Paris,,STE, +STE:SA:OCE87586651,1,"Gare de Tonneins",44.392805,0.314129,,1,,Europe/Paris,,STE, +STE:SA:OCE87586693,1,"Gare de Aiguillon (Lot et Gar)",44.298723,0.335174,,1,,Europe/Paris,,STE, +STE:SA:OCE87592048,1,"Gare de Les Bardys",45.904628,1.377447,,1,,Europe/Paris,,STE, +STE:SA:OCE87592055,1,"Gare de St-Priest-Taurion",45.887151,1.400467,,1,,Europe/Paris,,STE, +STE:SA:OCE87592063,1,"Gare de Brignac",45.864054,1.44014,,1,,Europe/Paris,,STE, +STE:SA:OCE87592071,1,"Gare de St-Léonard-de-Noblat-S",45.832087,1.481733,,1,,Europe/Paris,,STE, +STE:SA:OCE87592097,1,"Gare de St-Denis-des-Murs",45.788959,1.551364,,1,,Europe/Paris,,STE, +STE:SA:OCE87592105,1,"Gare de Châteauneuf-Bujaleuf",45.759265,1.645195,,1,,Europe/Paris,,STE, +STE:SA:OCE87592121,1,"Gare de Eymoutiers-Vassiviere",45.739716,1.741256,,1,,Europe/Paris,,STE, +STE:SA:OCE87592147,1,"Gare de Lacelle-Corrèze",45.641324,1.826406,,1,,Europe/Paris,,STE, +STE:SA:OCE87592162,1,"Gare de Bugeat",45.600587,1.924495,,1,,Europe/Paris,,STE, +STE:SA:OCE87592170,1,"Gare de Perols",45.584892,1.977811,,1,,Europe/Paris,,STE, +STE:SA:OCE87592246,1,"Gare de Solignac-le-Vigen",45.756076,1.285553,,1,,Europe/Paris,,STE, +STE:SA:OCE87592253,1,"Gare de Pierre-Buffière",45.699459,1.347227,,1,,Europe/Paris,,STE, +STE:SA:OCE87592279,1,"Gare de Magnac-Vicq",45.628841,1.443774,,1,,Europe/Paris,,STE, +STE:SA:OCE87592287,1,"Gare de St-Germain-les-Belles",45.609861,1.479937,,1,,Europe/Paris,,STE, +STE:SA:OCE87592295,1,"Gare de La-Porcherie-Gare",45.574035,1.53832,,1,,Europe/Paris,,STE, +STE:SA:OCE87592311,1,"Gare de Ambazac",45.952901,1.406502,,1,,Europe/Paris,,STE, +STE:SA:OCE87592337,1,"Gare de La Jonchère",45.994286,1.479859,,1,,Europe/Paris,,STE, +STE:SA:OCE87592345,1,"Gare de St-Sulpice-Laurière",46.046867,1.476283,,1,,Europe/Paris,,STE, +STE:SA:OCE87592352,1,"Gare de Bersac",46.083843,1.432048,,1,,Europe/Paris,,STE, +STE:SA:OCE87592360,1,"Gare de Fromental",46.171357,1.432475,,1,,Europe/Paris,,STE, +STE:SA:OCE87592428,1,"Gare de Peyrilhac-St-Jouvent",45.959744,1.17019,,1,,Europe/Paris,,STE, +STE:SA:OCE87592493,1,"Gare de St-Sébastien",46.386035,1.54652,,1,,Europe/Paris,,STE, +STE:SA:OCE87592501,1,"Gare de La Coquille",45.540713,0.974425,,1,,Europe/Paris,,STE, +STE:SA:OCE87592634,1,"Gare de L'Aiguille",45.778319,1.205081,,1,,Europe/Paris,,STE, +STE:SA:OCE87592725,1,"Gare de Nexon",45.691534,1.178428,,1,,Europe/Paris,,STE, +STE:SA:OCE87592733,1,"Gare de Lafarge",45.633854,1.130917,,1,,Europe/Paris,,STE, +STE:SA:OCE87592741,1,"Gare de Bussière-Galant",45.607582,1.026154,,1,,Europe/Paris,,STE, +STE:SA:OCE87592808,1,"Gare de La Meyze",45.621338,1.212189,,1,,Europe/Paris,,STE, +STE:SA:OCE87592824,1,"Gare de St-Yrieix-la-Perche",45.519241,1.205501,,1,,Europe/Paris,,STE, +STE:SA:OCE87592840,1,"Gare de Coussac-Bonneval",45.507726,1.310995,,1,,Europe/Paris,,STE, +STE:SA:OCE87594085,1,"Gare de Jassonneix",45.543524,2.139615,,1,,Europe/Paris,,STE, +STE:SA:OCE87594218,1,"Gare de Vigeois",45.382884,1.515123,,1,,Europe/Paris,,STE, +STE:SA:OCE87594234,1,"Gare de Allassac",45.258966,1.473229,,1,,Europe/Paris,,STE, +STE:SA:OCE87594325,1,"Gare de Gignac-Cressensac (Lot)",45.01474,1.483241,,1,,Europe/Paris,,STE, +STE:SA:OCE87594416,1,"Gare de La Rivière-de-Mansac",45.139709,1.365069,,1,,Europe/Paris,,STE, +STE:SA:OCE87594424,1,"Gare de Larche",45.132112,1.416216,,1,,Europe/Paris,,STE, +STE:SA:OCE87594556,1,"Gare de Turenne",45.039829,1.5998,,1,,Europe/Paris,,STE, +STE:SA:OCE87594606,1,"Gare de Varetz",45.191065,1.447351,,1,,Europe/Paris,,STE, +STE:SA:OCE87594614,1,"Gare de Le Burg",45.216228,1.42965,,1,,Europe/Paris,,STE, +STE:SA:OCE87594622,1,"Gare de St-Aulaire",45.249921,1.398456,,1,,Europe/Paris,,STE, +STE:SA:OCE87594630,1,"Gare de Objat",45.264737,1.406882,,1,,Europe/Paris,,STE, +STE:SA:OCE87594655,1,"Gare de Vignols-St-Solve",45.313088,1.397744,,1,,Europe/Paris,,STE, +STE:SA:OCE87594663,1,"Gare de Pompadour",45.395218,1.38708,,1,,Europe/Paris,,STE, +STE:SA:OCE87594671,1,"Gare de Lubersac",45.444546,1.388981,,1,,Europe/Paris,,STE, +STE:SA:OCE87594739,1,"Gare de Vayrac",44.950138,1.706288,,1,,Europe/Paris,,STE, +STE:SA:OCE87594747,1,"Gare de Bétaille",44.942533,1.734529,,1,,Europe/Paris,,STE, +STE:SA:OCE87594796,1,"Gare de Laval-de-Cère",44.951291,1.931412,,1,,Europe/Paris,,STE, +STE:SA:OCE87594820,1,"Gare de Masseret",45.536108,1.541353,,1,,Europe/Paris,,STE, +STE:SA:OCE87595132,1,"Gare de Négrondes",45.34598,0.861356,,1,,Europe/Paris,,STE, +STE:SA:OCE87595157,1,"Gare de Agonac",45.286682,0.748588,,1,,Europe/Paris,,STE, +STE:SA:OCE87595165,1,"Gare de Château-l'Evêque",45.244706,0.68845,,1,,Europe/Paris,,STE, +STE:SA:OCE87595223,1,"Gare de Razac",45.165894,0.599211,,1,,Europe/Paris,,STE, +STE:SA:OCE87595264,1,"Gare de St-Léon-de-L'Isle",45.123134,0.49197,,1,,Europe/Paris,,STE, +STE:SA:OCE87595272,1,"Gare de Neuvic (Dordogne)",45.099948,0.445021,,1,,Europe/Paris,,STE, +STE:SA:OCE87595504,1,"Gare de Périgueux-St-Georges",45.178398,0.733657,,1,,Europe/Paris,,STE, +STE:SA:OCE87595520,1,"Gare de St-Pierre-de-Chignac",45.123389,0.856738,,1,,Europe/Paris,,STE, +STE:SA:OCE87595538,1,"Gare de Milhac-d'Auberoche",45.129028,0.917886,,1,,Europe/Paris,,STE, +STE:SA:OCE87595553,1,"Gare de Limeyrat",45.156202,0.977859,,1,,Europe/Paris,,STE, +STE:SA:OCE87595595,1,"Gare de La Bachellerie",45.151121,1.160089,,1,,Europe/Paris,,STE, +STE:SA:OCE87595702,1,"Gare de Les Versannes",45.088658,0.857216,,1,,Europe/Paris,,STE, +STE:SA:OCE87595728,1,"Gare de Mauzens-Miremont",44.977416,0.95693,,1,,Europe/Paris,,STE, +STE:SA:OCE87597039,1,"Gare de Reuilly (Indre)",47.086015,2.047182,,1,,Europe/Paris,,STE, +STE:SA:OCE87597054,1,"Gare de Ste-Lizaigne",47.00264,2.030076,,1,,Europe/Paris,,STE, +STE:SA:OCE87597070,1,"Gare de Neuvy-Pailloux",46.882688,1.862808,,1,,Europe/Paris,,STE, +STE:SA:OCE87597096,1,"Gare de Luant",46.73505,1.589621,,1,,Europe/Paris,,STE, +STE:SA:OCE87597104,1,"Gare de Lothiers",46.694718,1.562837,,1,,Europe/Paris,,STE, +STE:SA:OCE87597112,1,"Gare de Chabenet",46.626439,1.507853,,1,,Europe/Paris,,STE, +STE:SA:OCE87597153,1,"Gare de Eguzon",46.440492,1.552365,,1,,Europe/Paris,,STE, +STE:SA:OCE87597625,1,"Gare de Marsac (Creuse)",46.094192,1.585606,,1,,Europe/Paris,,STE, +STE:SA:OCE87597633,1,"Gare de Vieilleville",46.091135,1.673544,,1,,Europe/Paris,,STE, +STE:SA:OCE87597674,1,"Gare de Montaigut (Creuse)",46.136792,1.733935,,1,,Europe/Paris,,STE, +STE:SA:OCE87597708,1,"Gare de Busseau-sur-Creuse",46.123093,2.023102,,1,,Europe/Paris,,STE, +STE:SA:OCE87597740,1,"Gare de Lavaufranche",46.321408,2.270338,,1,,Europe/Paris,,STE, +STE:SA:OCE87597781,1,"Gare de Lavaveix-les-Mines",46.078902,2.0892,,1,,Europe/Paris,,STE, +STE:SA:OCE87597823,1,"Gare de Aubusson",45.960933,2.16048,,1,,Europe/Paris,,STE, +STE:SA:OCE87597849,1,"Gare de Felletin-Gare",45.886507,2.169454,,1,,Europe/Paris,,STE, +STE:SA:OCE87611301,1,"Gare de St-Agne",43.579262,1.449555,,1,,Europe/Paris,,STE, +STE:SA:OCE87611434,1,"Gare de Lacourtensourt",43.663845,1.414126,,1,,Europe/Paris,,STE, +STE:SA:OCE87611459,1,"Gare de Lavilledieu",44.035262,1.214894,,1,,Europe/Paris,,STE, +STE:SA:OCE87611467,1,"Gare de Colomiers",43.603774,1.333448,,1,,Europe/Paris,,STE, +STE:SA:OCE87611657,1,"Gare de St-Jory",43.738021,1.371576,,1,,Europe/Paris,,STE, +STE:SA:OCE87611665,1,"Gare de Castelnau-d'Estrétefond",43.786171,1.341921,,1,,Europe/Paris,,STE, +STE:SA:OCE87611673,1,"Gare de Grisolles",43.827801,1.303157,,1,,Europe/Paris,,STE, +STE:SA:OCE87611681,1,"Gare de Dieupentale",43.865525,1.276152,,1,,Europe/Paris,,STE, +STE:SA:OCE87611699,1,"Gare de Montbartier",43.92393,1.264462,,1,,Europe/Paris,,STE, +STE:SA:OCE87611707,1,"Gare de Escalquens",43.517042,1.542432,,1,,Europe/Paris,,STE, +STE:SA:OCE87611723,1,"Gare de Baziège",43.453554,1.620687,,1,,Europe/Paris,,STE, +STE:SA:OCE87611749,1,"Gare de Auch",43.647108,0.596133,,1,,Europe/Paris,,STE, +STE:SA:OCE87611764,1,"Gare de Aubiet",43.649977,0.789054,,1,,Europe/Paris,,STE, +STE:SA:OCE87611772,1,"Gare de Gimont-Cahuzac",43.633182,0.867584,,1,,Europe/Paris,,STE, +STE:SA:OCE87611806,1,"Gare de L'Isle-Jourdain (Gers)",43.617327,1.089681,,1,,Europe/Paris,,STE, +STE:SA:OCE87611814,1,"Gare de Mérenvielle",43.636631,1.150772,,1,,Europe/Paris,,STE, +STE:SA:OCE87611822,1,"Gare de Brax-Léguevin",43.614587,1.237302,,1,,Europe/Paris,,STE, +STE:SA:OCE87611830,1,"Gare de Pibrac",43.621315,1.289375,,1,,Europe/Paris,,STE, +STE:SA:OCE87611855,1,"Gare de Lamagistère",44.126711,0.825467,,1,,Europe/Paris,,STE, +STE:SA:OCE87611921,1,"Gare de Colomiers-Lycée-Interna",43.616427,1.313925,,1,,Europe/Paris,,STE, +STE:SA:OCE87611939,1,"Gare de Lardenne",43.596528,1.383986,,1,,Europe/Paris,,STE, +STE:SA:OCE87612002,1,"Gare de Labège-Innopole",43.547461,1.512958,,1,,Europe/Paris,,STE, +STE:SA:OCE87612010,1,"Gare de Montaudran",43.573694,1.480239,,1,,Europe/Paris,,STE, +STE:SA:OCE87612028,1,"Gare de Labège-Village",43.53051,1.533338,,1,,Europe/Paris,,STE, +STE:SA:OCE87613174,1,"Gare de Dégagnac",44.653353,1.340041,,1,,Europe/Paris,,STE, +STE:SA:OCE87613323,1,"Gare de Lalbenque-Fontanes",44.332731,1.511304,,1,,Europe/Paris,,STE, +STE:SA:OCE87613398,1,"Gare de Albias",44.091975,1.444875,,1,,Europe/Paris,,STE, +STE:SA:OCE87613463,1,"Gare de Najac",44.222483,1.976568,,1,,Europe/Paris,,STE, +STE:SA:OCE87613489,1,"Gare de Lexos",44.142223,1.884432,,1,,Europe/Paris,,STE, +STE:SA:OCE87613802,1,"Gare de Cordes-Vindrac",44.066994,1.899996,,1,,Europe/Paris,,STE, +STE:SA:OCE87613877,1,"Gare de Salles-Courbatiers",44.475548,2.079019,,1,,Europe/Paris,,STE, +STE:SA:OCE87615013,1,"Gare de Villefranche-Lauragais",43.398453,1.7145,,1,,Europe/Paris,,STE, +STE:SA:OCE87615054,1,"Gare de Bram",43.243705,2.119556,,1,,Europe/Paris,,STE, +STE:SA:OCE87615252,1,"Gare de Gaillac",43.905963,1.894819,,1,,Europe/Paris,,STE, +STE:SA:OCE87615351,1,"Gare de Roqueserière-Buzet",43.750644,1.61824,,1,,Europe/Paris,,STE, +STE:SA:OCE87615484,1,"Gare de Damiatte-St-Paul",43.656097,1.974142,,1,,Europe/Paris,,STE, +STE:SA:OCE87615526,1,"Gare de Labruguière",43.542586,2.259229,,1,,Europe/Paris,,STE, +STE:SA:OCE87616011,1,"Gare de Avignonet",43.363885,1.787767,,1,,Europe/Paris,,STE, +STE:SA:OCE87618207,1,"Gare de Montlaur",43.474894,1.577942,,1,,Europe/Paris,,STE, +STE:SA:OCE87618215,1,"Gare de Villenouvelle",43.433287,1.660884,,1,,Europe/Paris,,STE, +STE:SA:OCE87641217,1,"Gare de Huriel",46.371419,2.476122,,1,,Europe/Paris,,STE, +STE:SA:OCE87645101,1,"Gare de Ytrac",44.91062,2.364315,,1,,Europe/Paris,,STE, +STE:SA:OCE87645150,1,"Gare de La Capelle-Viescamp",44.920494,2.265382,,1,,Europe/Paris,,STE, +STE:SA:OCE87645176,1,"Gare de Pers",44.886979,2.240259,,1,,Europe/Paris,,STE, +STE:SA:OCE87645184,1,"Gare de Boisset (Cantal)",44.785817,2.249439,,1,,Europe/Paris,,STE, +STE:SA:OCE87645440,1,"Gare de Vic-sur-Cère",44.975948,2.631437,,1,,Europe/Paris,,STE, +STE:SA:OCE87645473,1,"Gare de Le Lioran",45.09075,2.753267,,1,,Europe/Paris,,STE, +STE:SA:OCE87645481,1,"Gare de Murat (Cantal)",45.109081,2.869588,,1,,Europe/Paris,,STE, +STE:SA:OCE87671313,1,"Gare de Ossun",43.183316,-0.021608,,1,,Europe/Paris,,STE, +STE:SA:OCE87671362,1,"Gare de St-Pé (Htes-Pyrénées)",43.101551,-0.161971,,1,,Europe/Paris,,STE, +STE:SA:OCE87672113,1,"Gare de Montaut-Bétharram",43.127051,-0.198398,,1,,Europe/Paris,,STE, +STE:SA:OCE87672162,1,"Gare de Assat",43.254631,-0.295222,,1,,Europe/Paris,,STE, +STE:SA:OCE87672212,1,"Gare de Artix",43.393198,-0.570124,,1,,Europe/Paris,,STE, +STE:SA:OCE87672279,1,"Gare de Puyoô",43.524479,-0.91086,,1,,Europe/Paris,,STE, +STE:SA:OCE87672337,1,"Gare de Peyrehorade",43.54677,-1.115791,,1,,Europe/Paris,,STE, +STE:SA:OCE87672386,1,"Gare de Urt",43.499249,-1.300459,,1,,Europe/Paris,,STE, +STE:SA:OCE87672600,1,"Gare de Croix-du-Prince",43.285611,-0.379148,,1,,Europe/Paris,,STE, +STE:SA:OCE87672618,1,"Gare de Gan",43.234296,-0.391403,,1,,Europe/Paris,,STE, +STE:SA:OCE87672634,1,"Gare de Buzy-en-Béarn",43.148166,-0.45583,,1,,Europe/Paris,,STE, +STE:SA:OCE87672709,1,"Gare de Ogeu-les-Bains",43.15388,-0.507644,,1,,Europe/Paris,,STE, +STE:SA:OCE87672725,1,"Gare de Oloron-Ste-Marie",43.195012,-0.612267,,1,,Europe/Paris,,STE, +STE:SA:OCE87672741,1,"Gare de Lurbe-St-Christau",43.120518,-0.605233,,1,,Europe/Paris,,STE, +STE:SA:OCE87672766,1,"Gare de Sarrance",43.05111,-0.601113,,1,,Europe/Paris,,STE, +STE:SA:OCE87672774,1,"Gare de Bedous",43.000551,-0.601121,,1,,Europe/Paris,,STE, +STE:SA:OCE87673251,1,"Gare de Saubusse-les-Bains",43.660191,-1.190237,,1,,Europe/Paris,,STE, +STE:SA:OCE87673616,1,"Gare de Villefranque (Pyr.-Atl)",43.431468,-1.456277,,1,,Europe/Paris,,STE, +STE:SA:OCE87673624,1,"Gare de Ustaritz",43.404722,-1.449063,,1,,Europe/Paris,,STE, +STE:SA:OCE87673632,1,"Gare de Jatxou",43.391445,-1.444645,,1,,Europe/Paris,,STE, +STE:SA:OCE87673640,1,"Gare de Halsou-Larressore",43.378219,-1.428231,,1,,Europe/Paris,,STE, +STE:SA:OCE87673657,1,"Gare de Cambo-les-Bains",43.365543,-1.396706,,1,,Europe/Paris,,STE, +STE:SA:OCE87673665,1,"Gare de Itxassou",43.324127,-1.395624,,1,,Europe/Paris,,STE, +STE:SA:OCE87673673,1,"Gare de Louhossoa",43.305719,-1.362375,,1,,Europe/Paris,,STE, +STE:SA:OCE87673699,1,"Gare de Bidarray-Pont-Noblia",43.268097,-1.345141,,1,,Europe/Paris,,STE, +STE:SA:OCE87673707,1,"Gare de Ossès-St-Mart-d'Arrossa",43.23515,-1.30499,,1,,Europe/Paris,,STE, +STE:SA:OCE87673723,1,"Gare de St-Jean-Pied-de-Port",43.168081,-1.238836,,1,,Europe/Paris,,STE, +STE:SA:OCE87691949,1,"Gare de Bidos",43.178965,-0.606959,,1,,Europe/Paris,,STE, +STE:SA:OCE87693630,1,"Limoges-CIEL",27.140973,-3.404561,,1,,Europe/Paris,,STE, +STE:SA:OCE87734202,1,"Gare de Issoire",45.543953,3.254071,,1,,Europe/Paris,,STE, +STE:SA:OCE87734244,1,"Gare de Brassac-les-Mines",45.4141,3.32993,,1,,Europe/Paris,,STE, +STE:SA:OCE87734251,1,"Gare de Arvant",45.365383,3.310488,,1,,Europe/Paris,,STE, +STE:SA:OCE87765008,1,"Gare de Avignon-Centre",43.941877,4.805262,,1,,Europe/Paris,,STE, +STE:SA:OCE87765354,1,"Gare de Tarascon-sur-Rhône",43.801122,4.657245,,1,,Europe/Paris,,STE, +STE:SA:OCE87773408,1,"Gare de Lunel",43.679515,4.130807,,1,,Europe/Paris,,STE, +STE:SA:OCE87773424,1,"Gare de Lunel-Viel",43.680939,4.093303,,1,,Europe/Paris,,STE, +STE:SA:OCE87773432,1,"Gare de Valergues-Lansargues",43.672597,4.060222,,1,,Europe/Paris,,STE, +STE:SA:OCE87773457,1,"Gare de Baillargues",43.653117,4.006689,,1,,Europe/Paris,,STE, +STE:SA:OCE87773465,1,"Gare de St-Aunès",43.635414,3.963109,,1,,Europe/Paris,,STE, +STE:SA:OCE87773515,1,"Gare de Villeneuve-les-Maguel.",43.543451,3.849706,,1,,Europe/Paris,,STE, +STE:SA:OCE87773531,1,"Gare de Vic-Mireval",43.500968,3.799585,,1,,Europe/Paris,,STE, +STE:SA:OCE87773556,1,"Gare de Frontignan",43.444586,3.759015,,1,,Europe/Paris,,STE, +STE:SA:OCE87775023,1,"Gare de Beaucaire",43.802161,4.647316,,1,,Europe/Paris,,STE, +STE:SA:OCE87775064,1,"Gare de Manduel-Redessan",43.826462,4.478871,,1,,Europe/Paris,,STE, +STE:SA:OCE87775114,1,"Gare de Vergèze-Codognan",43.739817,4.218844,,1,,Europe/Paris,,STE, +STE:SA:OCE87781161,1,"Gare de Coursan",43.233712,3.050866,,1,,Europe/Paris,,STE, +STE:SA:OCE87781260,1,"Gare de Vias",43.315815,3.425592,,1,,Europe/Paris,,STE, +STE:SA:OCE87781278,1,"Gare de Agde",43.317574,3.46602,,1,,Europe/Paris,,STE, +STE:SA:OCE87781294,1,"Gare de Marseillan-Plage",43.318277,3.535637,,1,,Europe/Paris,,STE, +STE:SA:OCE87781534,1,"Gare de Montpaon",43.868025,3.10933,,1,,Europe/Paris,,STE, +STE:SA:OCE87781542,1,"Gare de Ceilhes-Roqueredonde",43.812131,3.155299,,1,,Europe/Paris,,STE, +STE:SA:OCE87781559,1,"Gare de Les Cabrils",43.778965,3.186163,,1,,Europe/Paris,,STE, +STE:SA:OCE87781575,1,"Gare de Lunas",43.710023,3.194443,,1,,Europe/Paris,,STE, +STE:SA:OCE87781583,1,"Gare de Le Bousquet-d'Orb",43.691547,3.168385,,1,,Europe/Paris,,STE, +STE:SA:OCE87781609,1,"Gare de Bédarieux",43.607632,3.149005,,1,,Europe/Paris,,STE, +STE:SA:OCE87781666,1,"Gare de Magalas",43.467755,3.2295,,1,,Europe/Paris,,STE, +STE:SA:OCE87782607,1,"Gare de Clermont-la-Pardieu",45.766954,3.134207,,1,,Europe/Paris,,STE, +STE:SA:OCE87783290,1,"Gare de Chirac",44.52449,3.263838,,1,,Europe/Paris,,STE, +STE:SA:OCE87783340,1,"Gare de Campagnac-St-Geniez",44.422134,3.06613,,1,,Europe/Paris,,STE, +STE:SA:OCE87783456,1,"Gare de Tournemire-Roquefort",43.969983,3.01658,,1,,Europe/Paris,,STE, +AEC:SP:00001,1,"Eglise",43.229617,0.940138,-1,0,AEC:SA:00001,Europe/Paris,0,AEC, +AEC:SP:00002,1,"Anan",43.356576,0.814151,-1,0,AEC:SA:00003,Europe/Paris,0,AEC, +AEC:SP:00003,1,"Anan",43.35627,0.814805,-1,0,AEC:SA:00003,Europe/Paris,0,AEC, +AEC:SP:00005,1,"Brissan",42.977774,0.660975,-1,0,AEC:SA:00006,Europe/Paris,0,AEC, +AEC:SP:00006,1,"Brissan",42.977788,0.661331,-1,0,AEC:SA:00006,Europe/Paris,2,AEC, +AEC:SP:00007,1,"Pisciculture",42.828639,0.601287,-1,0,AEC:SA:00008,Europe/Paris,2,AEC, +AEC:SP:00008,1,"Pisciculture",42.828984,0.601182,-1,0,AEC:SA:00008,Europe/Paris,2,AEC, +AEC:SP:00009,1,"Village",42.826179,0.599901,-1,0,AEC:SA:00010,Europe/Paris,0,AEC, +AEC:SP:00010,1,"Village",42.826237,0.600496,-1,0,AEC:SA:00010,Europe/Paris,0,AEC, +AEC:SP:00011,1,"Ardiège",43.06963,0.643494,-1,0,AEC:SA:00012,Europe/Paris,0,AEC, +AEC:SP:00012,1,"Ardiège",43.069397,0.643006,-1,0,AEC:SA:00012,Europe/Paris,0,AEC, +AEC:SP:00013,1,"Les Arpents",43.072856,0.647668,-1,0,AEC:SA:00014,Europe/Paris,0,AEC, +AEC:SP:00014,1,"Les Arpents",43.072643,0.647608,-1,0,AEC:SA:00014,Europe/Paris,0,AEC, +AEC:SP:00015,1,"Mairie",43.068751,0.643212,-1,0,AEC:SA:00016,Europe/Paris,0,AEC, +AEC:SP:00016,1,"Mairie",43.068795,0.643614,-1,0,AEC:SA:00016,Europe/Paris,0,AEC, +AEC:SP:00017,1,"Village",42.970739,0.723696,-1,0,AEC:SA:00018,Europe/Paris,0,AEC, +AEC:SP:00018,1,"Village",42.970642,0.723957,-1,0,AEC:SA:00018,Europe/Paris,0,AEC, +AEC:SP:00019,1,"Ecoles",42.891871,0.703067,-1,0,AEC:SA:00020,Europe/Paris,0,AEC, +AEC:SP:00020,1,"Ecoles",42.891965,0.703302,-1,0,AEC:SA:00020,Europe/Paris,0,AEC, +AEC:SP:00021,1,"L'Escalère",43.135461,0.919367,-1,0,AEC:SA:00022,Europe/Paris,0,AEC, +AEC:SP:00022,1,"L'escalère",43.135304,0.91904,-1,0,AEC:SA:00022,Europe/Paris,0,AEC, +AEC:SP:00023,1,"Collège",43.021841,0.793898,-1,0,AEC:SA:00023,Europe/Paris,0,AEC, +AEC:SP:00024,1,"Fontagnères",43.020828,0.796201,-1,0,AEC:SA:00025,Europe/Paris,2,AEC, +AEC:SP:00025,1,"Fontanière",43.021062,0.796347,-1,0,AEC:SA:00025,Europe/Paris,2,AEC, +AEC:SP:00030,1,"Mairie",43.015047,0.803451,-1,0,AEC:SA:00031,Europe/Paris,0,AEC, +AEC:SP:00031,1,"Mairie",43.015058,0.803702,-1,0,AEC:SA:00031,Europe/Paris,0,AEC, +AEC:SP:00032,1,"Cadène",43.661029,1.431484,-1,0,AEC:SA:00033,Europe/Paris,2,AEC, +AEC:SP:00033,1,"Cadène",43.661281,1.431601,-1,0,AEC:SA:00033,Europe/Paris,2,AEC, +AEC:SP:00034,1,"Lacourtensourt",43.671505,1.426998,-1,0,AEC:SA:00035,Europe/Paris,0,AEC, +AEC:SP:00035,1,"Lacourtensourt",43.67169,1.427061,-1,0,AEC:SA:00035,Europe/Paris,0,AEC, +AEC:SP:00036,1,"Les Pins",43.675276,1.424449,-1,0,AEC:SA:00656,Europe/Paris,2,AEC, +AEC:SP:00037,1,"Mairie",43.667808,1.429229,-1,0,AEC:SA:00038,Europe/Paris,2,AEC, +AEC:SP:00038,1,"Mairie",43.668615,1.429057,-1,0,AEC:SA:00038,Europe/Paris,2,AEC, +AEC:SP:00039,1,"Mazurié",43.683805,1.40666,-1,0,AEC:SA:00647,Europe/Paris,0,AEC, +AEC:SP:00040,1,"Payen",43.673164,1.42601,-1,0,AEC:SA:00041,Europe/Paris,0,AEC, +AEC:SP:00041,1,"Payen",43.673385,1.426015,-1,0,AEC:SA:00041,Europe/Paris,0,AEC, +AEC:SP:00042,1,"Plaine",43.671403,1.410591,-1,0,AEC:SA:00648,Europe/Paris,0,AEC, +AEC:SP:00043,1,"Raude-Lauzette",43.678495,1.422734,-1,0,AEC:SA:00658,Europe/Paris,0,AEC, +AEC:SP:00044,1,"Saint Gobain",43.677696,1.408609,-1,0,AEC:SA:00649,Europe/Paris,0,AEC, +AEC:SP:00047,1,"Place",43.191214,0.820456,-1,0,AEC:SA:00048,Europe/Paris,0,AEC, +AEC:SP:00048,1,"Place",43.190962,0.821125,-1,0,AEC:SA:00048,Europe/Paris,0,AEC, +AEC:SP:00049,1,"En Ramière",43.525931,1.833558,-1,0,AEC:SA:00050,Europe/Paris,0,AEC, +AEC:SP:00050,1,"En Ramière",43.525946,1.833908,-1,0,AEC:SA:00050,Europe/Paris,0,AEC, +AEC:SP:00051,1,"La Rouquette",43.52335,1.804351,-1,0,AEC:SA:00052,Europe/Paris,0,AEC, +AEC:SP:00052,1,"La Rouquette",43.523196,1.804132,-1,0,AEC:SA:00052,Europe/Paris,0,AEC, +AEC:SP:00053,1,"Vendinelle",43.525466,1.826053,-1,0,AEC:SA:00054,Europe/Paris,0,AEC, +AEC:SP:00054,1,"Vendinelle",43.525416,1.826206,-1,0,AEC:SA:00054,Europe/Paris,0,AEC, +AEC:SP:00055,1,"Poste",43.216037,0.883217,-1,0,AEC:SA:00055,Europe/Paris,0,AEC, +AEC:SP:00056,1,"Bachus",43.545704,1.704079,-1,0,AEC:SA:01213,Europe/Paris,0,AEC, +AEC:SP:00057,1,"Castelvert",43.546159,1.698495,-1,0,AEC:SA:00058,Europe/Paris,0,AEC, +AEC:SP:00058,1,"Castelvert",43.546053,1.698723,-1,0,AEC:SA:00058,Europe/Paris,0,AEC, +AEC:SP:00059,1,"Rue des écoles",43.08355,0.594306,-1,0,AEC:SA:00060,Europe/Paris,0,AEC, +AEC:SP:00060,1,"Rue des écoles",43.083699,0.594115,-1,0,AEC:SA:00060,Europe/Paris,0,AEC, +AEC:SP:00061,1,"Rue des Serres",43.092636,0.585185,-1,0,AEC:SA:00062,Europe/Paris,0,AEC, +AEC:SP:00062,1,"Rue des Serres",43.093355,0.585663,-1,0,AEC:SA:00062,Europe/Paris,0,AEC, +AEC:SP:00063,1,"Beauregard",43.670258,1.33742,-1,0,AEC:SA:00064,Europe/Paris,0,AEC, +AEC:SP:00064,1,"Beauregard",43.670247,1.33822,-1,0,AEC:SA:00064,Europe/Paris,0,AEC, +AEC:SP:00065,1,"Cague l'Oule",43.676747,1.322056,-1,0,AEC:SA:00066,Europe/Paris,0,AEC, +AEC:SP:00066,1,"Cague l'Oule",43.676495,1.322373,-1,0,AEC:SA:00066,Europe/Paris,0,AEC, +AEC:SP:00067,1,"Chalets",43.665751,1.340967,-1,0,AEC:SA:00068,Europe/Paris,0,AEC, +AEC:SP:00068,1,"Chalets",43.664748,1.340369,-1,0,AEC:SA:00068,Europe/Paris,0,AEC, +AEC:SP:00073,1,"Grésine",43.696296,1.319801,-1,0,AEC:SA:00074,Europe/Paris,0,AEC, +AEC:SP:00074,1,"Grésine",43.69613,1.320017,-1,0,AEC:SA:00074,Europe/Paris,0,AEC, +AEC:SP:00075,1,"Lac",43.680375,1.315679,-1,0,AEC:SA:00076,Europe/Paris,0,AEC, +AEC:SP:00076,1,"Lac",43.680409,1.315425,-1,0,AEC:SA:00076,Europe/Paris,0,AEC, +AEC:SP:00079,1,"Periac",43.671604,1.322625,-1,0,AEC:SA:00080,Europe/Paris,0,AEC, +AEC:SP:00080,1,"Periac",43.671437,1.322852,-1,0,AEC:SA:00080,Europe/Paris,0,AEC, +AEC:SP:00085,1,"République",43.683629,1.320228,-1,0,AEC:SA:00086,Europe/Paris,0,AEC, +AEC:SP:00086,1,"République",43.683705,1.320525,-1,0,AEC:SA:00086,Europe/Paris,0,AEC, +AEC:SP:00087,1,"Cimetière",43.355851,1.478171,-1,0,AEC:SA:00088,Europe/Paris,0,AEC, +AEC:SP:00088,1,"Cimetière",43.355977,1.47816,-1,0,AEC:SA:00088,Europe/Paris,0,AEC, +AEC:SP:00089,1,"Eglise",43.350368,1.473354,-1,0,AEC:SA:13368,Europe/Paris,0,AEC, +AEC:SP:00091,1,"Gare SNCF",43.349196,1.468769,-1,0,AEC:SA:00091,Europe/Paris,0,AEC, +AEC:SP:00092,1,"Gendarmerie",43.346489,1.473424,-1,0,AEC:SA:00093,Europe/Paris,0,AEC, +AEC:SP:00093,1,"Gendarmerie",43.346648,1.473575,-1,0,AEC:SA:00093,Europe/Paris,2,AEC, +AEC:SP:00094,1,"Hirondelles",43.350589,1.467554,-1,0,AEC:SA:00095,Europe/Paris,0,AEC, +AEC:SP:00095,1,"Hirondelles",43.350537,1.467682,-1,0,AEC:SA:00095,Europe/Paris,0,AEC, +AEC:SP:00096,1,"Le Bouet",43.334956,1.484381,-1,0,AEC:SA:00097,Europe/Paris,0,AEC, +AEC:SP:00097,1,"Le Bouet",43.335389,1.484189,-1,0,AEC:SA:00097,Europe/Paris,2,AEC, +AEC:SP:00098,1,"Pelletant",43.352143,1.47716,-1,0,AEC:SA:00099,Europe/Paris,0,AEC, +AEC:SP:00099,1,"Pelletant",43.352313,1.477324,-1,0,AEC:SA:00099,Europe/Paris,0,AEC, +AEC:SP:00100,1,"Grand chemin",43.528069,1.48976,-1,0,AEC:SA:00101,Europe/Paris,2,AEC, +AEC:SP:00101,1,"Grand chemin",43.528138,1.489991,-1,0,AEC:SA:00101,Europe/Paris,2,AEC, +AEC:SP:00102,1,"Lycée agricole",43.53446,1.484781,-1,0,AEC:SA:00103,Europe/Paris,2,AEC, +AEC:SP:00103,1,"Lycée agricole",43.534284,1.48465,-1,0,AEC:SA:00103,Europe/Paris,2,AEC, +AEC:SP:00104,1,"Moulin Armand",43.531089,1.487351,-1,0,AEC:SA:00105,Europe/Paris,2,AEC, +AEC:SP:00105,1,"Moulin Armand",43.530987,1.487202,-1,0,AEC:SA:00105,Europe/Paris,2,AEC, +AEC:SP:00106,1,"Crouzet",43.536533,1.557902,-1,0,AEC:SA:00107,Europe/Paris,2,AEC, +AEC:SP:00107,1,"Crouzet",43.536405,1.557747,-1,0,AEC:SA:00107,Europe/Paris,2,AEC, +AEC:SP:00108,1,"Le Broc",43.531974,1.574011,-1,0,AEC:SA:00109,Europe/Paris,0,AEC, +AEC:SP:00109,1,"Le Broc",43.53199,1.574323,-1,0,AEC:SA:00109,Europe/Paris,0,AEC, +AEC:SP:00110,1,"En Naudet",43.373649,1.762979,-1,0,AEC:SA:00115,Europe/Paris,0,AEC, +AEC:SP:00111,1,"Les bourrasses",43.369451,1.774781,-1,0,AEC:SA:00112,Europe/Paris,2,AEC, +AEC:SP:00112,1,"Les bourrasses",43.369347,1.77465,-1,0,AEC:SA:00112,Europe/Paris,2,AEC, +AEC:SP:00113,1,"Mairie",43.36636,1.784269,-1,0,AEC:SA:00114,Europe/Paris,2,AEC, +AEC:SP:00114,1,"Mairie",43.36669,1.783906,-1,0,AEC:SA:00114,Europe/Paris,2,AEC, +AEC:SP:00115,1,"Monplaisir",43.375747,1.758235,-1,0,AEC:SA:00115,Europe/Paris,0,AEC, +AEC:SP:00116,1,"St Brice",43.379893,1.747308,-1,0,AEC:SA:00117,Europe/Paris,0,AEC, +AEC:SP:00117,1,"St-Brice",43.380387,1.747024,-1,0,AEC:SA:00117,Europe/Paris,0,AEC, +AEC:SP:00118,1,"Collège",43.436778,1.59831,-1,0,AEC:SA:00119,Europe/Paris,0,AEC, +AEC:SP:00119,1,"Collège",43.436811,1.59853,-1,0,AEC:SA:00119,Europe/Paris,2,AEC, +AEC:SP:00120,1,"Ticaille",43.448566,1.594789,-1,0,AEC:SA:00120,Europe/Paris,2,AEC, +AEC:SP:00121,1,"Ticaille",43.447501,1.597024,-1,0,AEC:SA:00120,Europe/Paris,2,AEC, +AEC:SP:00122,1,"Ticaille",43.446759,1.598165,-1,0,AEC:SA:00120,Europe/Paris,2,AEC, +AEC:SP:00123,1,"Ticaille",43.447188,1.59745,-1,0,AEC:SA:00120,Europe/Paris,2,AEC, +AEC:SP:00124,1,"Passage à niveau",42.897818,0.625539,-1,0,AEC:SA:00125,Europe/Paris,0,AEC, +AEC:SP:00125,1,"Passage à niveau",42.897953,0.624908,-1,0,AEC:SA:00125,Europe/Paris,0,AEC, +AEC:SP:00126,1,"Cimetière",42.976396,0.625489,-1,0,AEC:SA:00127,Europe/Paris,0,AEC, +AEC:SP:00127,1,"Cimetière",42.976351,0.626099,-1,0,AEC:SA:00127,Europe/Paris,0,AEC, +AEC:SP:00128,1,"Bernadous",42.806374,0.596847,-1,0,AEC:SA:00129,Europe/Paris,0,AEC, +AEC:SP:00129,1,"Bernadous",42.807089,0.596906,-1,0,AEC:SA:00129,Europe/Paris,0,AEC, +AEC:SP:00130,1,"Eglise",42.791295,0.59132,-1,0,AEC:SA:00130,Europe/Paris,0,AEC, +AEC:SP:00131,1,"Gare",42.797454,0.596431,-1,0,AEC:SA:00131,Europe/Paris,0,AEC, +AEC:SP:00133,1,"Aérodrome Lasbordes",43.594376,1.497565,-1,0,AEC:SA:00135,Europe/Paris,0,AEC, +AEC:SP:00134,1,"Gramont",43.628673,1.482513,-1,0,AEC:SA:00134,Europe/Paris,2,AEC, +AEC:SP:00135,1,"Lasbordes",43.59461,1.497434,-1,0,AEC:SA:00135,Europe/Paris,0,AEC, +AEC:SP:00136,1,"Montels",43.586446,1.52187,-1,0,AEC:SA:00137,Europe/Paris,2,AEC, +AEC:SP:00137,1,"Montels",43.587334,1.520052,-1,0,AEC:SA:00137,Europe/Paris,2,AEC, +AEC:SP:00138,1,"Nollet",43.589957,1.512592,-1,0,AEC:SA:00139,Europe/Paris,2,AEC, +AEC:SP:00139,1,"Nollet",43.591192,1.510272,-1,0,AEC:SA:00139,Europe/Paris,2,AEC, +AEC:SP:00140,1,"Ribaute",43.588975,1.516006,-1,0,AEC:SA:00141,Europe/Paris,2,AEC, +AEC:SP:00141,1,"Ribaute",43.588769,1.515756,-1,0,AEC:SA:00141,Europe/Paris,2,AEC, +AEC:SP:00142,1,"St Anne",43.593426,1.50425,-1,0,AEC:SA:00143,Europe/Paris,2,AEC, +AEC:SP:00143,1,"St Anne",43.593203,1.504358,-1,0,AEC:SA:00143,Europe/Paris,2,AEC, +AEC:SP:00144,1,"Gendarmerie",43.032905,0.621448,-1,0,AEC:SA:00145,Europe/Paris,0,AEC, +AEC:SP:00145,1,"Gendarmerie",43.033532,0.621852,-1,0,AEC:SA:00145,Europe/Paris,0,AEC, +AEC:SP:00146,1,"Bellevue",43.443117,1.643697,-1,0,AEC:SA:00147,Europe/Paris,0,AEC, +AEC:SP:00147,1,"Bellevue",43.443199,1.643937,-1,0,AEC:SA:00147,Europe/Paris,0,AEC, +AEC:SP:00148,1,"Ecoles",43.453831,1.613121,-1,0,AEC:SA:00149,Europe/Paris,0,AEC, +AEC:SP:00149,1,"Ecoles",43.453999,1.613417,-1,0,AEC:SA:00149,Europe/Paris,0,AEC, +AEC:SP:00150,1,"Engoudes",43.451045,1.610863,-1,0,AEC:SA:00151,Europe/Paris,0,AEC, +AEC:SP:00151,1,"Engoudes",43.451051,1.611147,-1,0,AEC:SA:00151,Europe/Paris,0,AEC, +AEC:SP:00152,1,"Gare SNCF",43.453632,1.621027,-1,0,STE:SA:OCE87611723,Europe/Paris,0,AEC, +AEC:SP:00153,1,"Gare SNCF",43.453844,1.621217,-1,0,STE:SA:OCE87611723,Europe/Paris,0,AEC, +AEC:SP:00154,1,"Grand Rue",43.454689,1.617155,-1,0,AEC:SA:00155,Europe/Paris,0,AEC, +AEC:SP:00155,1,"Grande Rue",43.454885,1.616599,-1,0,AEC:SA:00155,Europe/Paris,0,AEC, +AEC:SP:00156,1,"Las Puntos",43.44985,1.60886,-1,0,AEC:SA:00157,Europe/Paris,0,AEC, +AEC:SP:00157,1,"Las Puntos",43.449783,1.608436,-1,0,AEC:SA:00157,Europe/Paris,0,AEC, +AEC:SP:00158,1,"Le Rivel",43.460994,1.598757,-1,0,AEC:SA:00159,Europe/Paris,0,AEC, +AEC:SP:00159,1,"Le Rivel",43.461237,1.598521,-1,0,AEC:SA:00159,Europe/Paris,0,AEC, +AEC:SP:00160,1,"Le Visenq",43.451715,1.626183,-1,0,AEC:SA:00161,Europe/Paris,0,AEC, +AEC:SP:00161,1,"Le Visenq",43.451863,1.626402,-1,0,AEC:SA:00161,Europe/Paris,0,AEC, +AEC:SP:00162,1,"Poste",43.454964,1.613763,-1,0,AEC:SA:00163,Europe/Paris,0,AEC, +AEC:SP:00163,1,"Poste",43.455038,1.614017,-1,0,AEC:SA:00163,Europe/Paris,0,AEC, +AEC:SP:00164,1,"Pradettes",43.457611,1.605914,-1,0,AEC:SA:00165,Europe/Paris,0,AEC, +AEC:SP:00165,1,"Pradettes",43.457713,1.605971,-1,0,AEC:SA:00165,Europe/Paris,0,AEC, +AEC:SP:00166,1,"Eglise",43.107791,0.868551,-1,0,AEC:SA:00167,Europe/Paris,0,AEC, +AEC:SP:00167,1,"Eglise",43.107814,0.868291,-1,0,AEC:SA:00167,Europe/Paris,0,AEC, +AEC:SP:00168,1,"Le Baron",43.110544,0.866611,-1,0,AEC:SA:00169,Europe/Paris,0,AEC, +AEC:SP:00169,1,"Le Baron",43.110229,0.866503,-1,0,AEC:SA:00169,Europe/Paris,0,AEC, +AEC:SP:00170,1,"Anjoulet",43.404356,1.369283,-1,0,AEC:SA:00171,Europe/Paris,0,AEC, +AEC:SP:00171,1,"Aujoulets",43.403954,1.368575,-1,0,AEC:SA:00171,Europe/Paris,0,AEC, +AEC:SP:00172,1,"Château de Beaumont",43.38242,1.345596,-1,0,AEC:SA:00173,Europe/Paris,0,AEC, +AEC:SP:00173,1,"Château de Beaumont",43.382382,1.345831,-1,0,AEC:SA:00173,Europe/Paris,0,AEC, +AEC:SP:00175,1,"Escloupère",43.389203,1.350375,-1,0,AEC:SA:00176,Europe/Paris,0,AEC, +AEC:SP:00176,1,"Escloupère",43.389514,1.350915,-1,0,AEC:SA:00176,Europe/Paris,0,AEC, +AEC:SP:00177,1,"La Trivalle",43.398796,1.362495,-1,0,AEC:SA:00178,Europe/Paris,0,AEC, +AEC:SP:00178,1,"La Trivalle",43.398864,1.362804,-1,0,AEC:SA:00178,Europe/Paris,0,AEC, +AEC:SP:00179,1,"Le Rouget",43.366019,1.330572,-1,0,AEC:SA:01221,Europe/Paris,0,AEC, +AEC:SP:00180,1,"Pellepoix",43.393743,1.356538,-1,0,AEC:SA:00181,Europe/Paris,0,AEC, +AEC:SP:00181,1,"Pellepoix",43.394008,1.357217,-1,0,AEC:SA:00181,Europe/Paris,0,AEC, +AEC:SP:00182,1,"Vignoles",43.384769,1.347786,-1,0,AEC:SA:00183,Europe/Paris,0,AEC, +AEC:SP:00183,1,"Vignolles",43.38548,1.347732,-1,0,AEC:SA:00183,Europe/Paris,0,AEC, +AEC:SP:00184,1,"Mairie",43.646146,1.554353,-1,0,AEC:SA:00185,Europe/Paris,0,AEC, +AEC:SP:00185,1,"Mairie",43.646101,1.555466,-1,0,AEC:SA:00185,Europe/Paris,0,AEC, +AEC:SP:00186,1,"Labarraque",43.352138,1.741079,-1,0,AEC:SA:00187,Europe/Paris,0,AEC, +AEC:SP:00187,1,"Labarraque",43.352312,1.740996,-1,0,AEC:SA:00187,Europe/Paris,0,AEC, +AEC:SP:00188,1,"Château d'eau",43.467988,1.773525,-1,0,AEC:SA:00189,Europe/Paris,0,AEC, +AEC:SP:00189,1,"Château d'eau",43.468318,1.774288,-1,0,AEC:SA:00189,Europe/Paris,0,AEC, +AEC:SP:00191,1,"Nizac",43.469835,1.780509,-1,0,AEC:SA:00192,Europe/Paris,0,AEC, +AEC:SP:00192,1,"Nizac",43.469993,1.779441,-1,0,AEC:SA:00192,Europe/Paris,0,AEC, +AEC:SP:00193,1,"Barricou",43.662722,1.372791,-1,0,AEC:SA:00194,Europe/Paris,0,AEC, +AEC:SP:00194,1,"Barricou",43.663353,1.37277,-1,0,AEC:SA:00194,Europe/Paris,0,AEC, +AEC:SP:00195,1,"Carrière",43.65793,1.375893,-1,0,AEC:SA:00196,Europe/Paris,0,AEC, +AEC:SP:00196,1,"Carrière",43.658356,1.376272,-1,0,AEC:SA:00196,Europe/Paris,0,AEC, +AEC:SP:00197,1,"Centre Commercial",43.670041,1.367631,-1,0,AEC:SA:00198,Europe/Paris,0,AEC, +AEC:SP:00198,1,"Centre Commercial",43.669608,1.36833,-1,0,AEC:SA:00198,Europe/Paris,0,AEC, +AEC:SP:00199,1,"Carrière",43.511058,1.568808,-1,0,AEC:SA:00201,Europe/Paris,0,AEC, +AEC:SP:00200,1,"La Tour",43.510699,1.56369,-1,0,AEC:SA:00626,Europe/Paris,0,AEC, +AEC:SP:00201,1,"Maille",43.51075,1.567036,-1,0,AEC:SA:00201,Europe/Paris,0,AEC, +AEC:SP:00202,1,"Mairie",43.507694,1.56901,-1,0,AEC:SA:00203,Europe/Paris,0,AEC, +AEC:SP:00203,1,"Mairie",43.508162,1.569355,-1,0,AEC:SA:00203,Europe/Paris,0,AEC, +AEC:SP:00204,1,"Paradis",43.505475,1.567585,-1,0,AEC:SA:00205,Europe/Paris,0,AEC, +AEC:SP:00205,1,"Paradis",43.505226,1.56754,-1,0,AEC:SA:00205,Europe/Paris,2,AEC, +AEC:SP:00206,1,"Baque",43.394953,1.189977,-1,0,AEC:SA:00207,Europe/Paris,0,AEC, +AEC:SP:00207,1,"Baque",43.394802,1.189686,-1,0,AEC:SA:00207,Europe/Paris,0,AEC, +AEC:SP:00208,1,"Canalette",43.399155,1.191138,-1,0,AEC:SA:00209,Europe/Paris,0,AEC, +AEC:SP:00209,1,"Canalette",43.399152,1.19136,-1,0,AEC:SA:00209,Europe/Paris,0,AEC, +AEC:SP:00210,1,"Cap Debat",43.387009,1.186594,-1,0,AEC:SA:00211,Europe/Paris,0,AEC, +AEC:SP:00211,1,"Cap Debat",43.386543,1.186751,-1,0,AEC:SA:00211,Europe/Paris,0,AEC, +AEC:SP:00212,1,"Cap Debat 2",43.391134,1.188198,-1,0,AEC:SA:00213,Europe/Paris,0,AEC, +AEC:SP:00213,1,"Cap Debat 2",43.39086,1.188385,-1,0,AEC:SA:00213,Europe/Paris,0,AEC, +AEC:SP:00214,1,"Centre",43.378915,1.177442,-1,0,AEC:SA:00215,Europe/Paris,0,AEC, +AEC:SP:00215,1,"Centre",43.378843,1.177577,-1,0,AEC:SA:00215,Europe/Paris,0,AEC, +AEC:SP:00216,1,"Chemin du Prat",43.36993,1.168443,-1,0,AEC:SA:00216,Europe/Paris,0,AEC, +AEC:SP:00217,1,"Cité des Jardins",43.371341,1.170046,-1,0,AEC:SA:00218,Europe/Paris,0,AEC, +AEC:SP:00218,1,"Cité des Jardins",43.37123,1.169789,-1,0,AEC:SA:00218,Europe/Paris,0,AEC, +AEC:SP:00219,1,"Coume",43.384709,1.184806,-1,0,AEC:SA:00220,Europe/Paris,0,AEC, +AEC:SP:00220,1,"Coume",43.385213,1.185652,-1,0,AEC:SA:00220,Europe/Paris,0,AEC, +AEC:SP:00221,1,"Mairie",43.379475,1.176675,-1,0,AEC:SA:00222,Europe/Paris,2,AEC, +AEC:SP:00222,1,"Mairie",43.379713,1.176761,-1,0,AEC:SA:00222,Europe/Paris,2,AEC, +AEC:SP:00223,1,"BERTREN Nord",43.003242,0.61453,-1,0,AEC:SA:00224,Europe/Paris,0,AEC, +AEC:SP:00224,1,"BERTREN Nord",43.00316,0.614294,-1,0,AEC:SA:00224,Europe/Paris,0,AEC, +AEC:SP:00225,1,"BERTREN Sud",42.994934,0.621493,-1,0,AEC:SA:00226,Europe/Paris,0,AEC, +AEC:SP:00226,1,"BERTREN Sud",42.994836,0.621243,-1,0,AEC:SA:00226,Europe/Paris,0,AEC, +AEC:SP:00227,1,"Centre",42.999217,0.618098,-1,0,AEC:SA:00228,Europe/Paris,0,AEC, +AEC:SP:00228,1,"Centre",42.999147,0.6179,-1,0,AEC:SA:00228,Europe/Paris,0,AEC, +AEC:SP:00229,1,"Barrèses",43.809515,1.569776,-1,0,AEC:SA:00231,Europe/Paris,2,AEC, +AEC:SP:00230,1,"Barrèses",43.809107,1.569094,-1,0,AEC:SA:00231,Europe/Paris,2,AEC, +AEC:SP:00231,1,"Barrèses",43.809063,1.570052,-1,0,AEC:SA:00231,Europe/Paris,2,AEC, +AEC:SP:00233,1,"C.Pitchou",43.797814,1.611801,-1,0,AEC:SA:00234,Europe/Paris,2,AEC, +AEC:SP:00234,1,"C.Pitchou",43.798076,1.611952,-1,0,AEC:SA:00234,Europe/Paris,2,AEC, +AEC:SP:00235,1,"Esplanade",43.799949,1.607396,-1,0,AEC:SA:00236,Europe/Paris,2,AEC, +AEC:SP:00236,1,"Esplanade",43.800097,1.6075,-1,0,AEC:SA:00236,Europe/Paris,2,AEC, +AEC:SP:00237,1,"Le Triangle",43.8084,1.568699,-1,0,AEC:SA:00237,Europe/Paris,2,AEC, +AEC:SP:00238,1,"Les Friques",43.795149,1.578548,-1,0,AEC:SA:00239,Europe/Paris,0,AEC, +AEC:SP:00239,1,"Les Friques",43.795008,1.578606,-1,0,AEC:SA:00239,Europe/Paris,0,AEC, +AEC:SP:00240,1,"Mazade",43.801044,1.601842,-1,0,AEC:SA:00241,Europe/Paris,0,AEC, +AEC:SP:00241,1,"Mazade",43.80096,1.602036,-1,0,AEC:SA:00241,Europe/Paris,0,AEC, +AEC:SP:00242,1,"Plaisance",43.801002,1.591787,-1,0,AEC:SA:00243,Europe/Paris,2,AEC, +AEC:SP:00243,1,"Plaisance",43.801157,1.591911,-1,0,AEC:SA:00243,Europe/Paris,2,AEC, +AEC:SP:00244,1,"Taillefer",43.800475,1.583014,-1,0,AEC:SA:00245,Europe/Paris,0,AEC, +AEC:SP:00245,1,"Taillefer",43.800872,1.582204,-1,0,AEC:SA:00245,Europe/Paris,0,AEC, +AEC:SP:00246,1,"Aéroconstellation",43.66303,1.363107,-1,0,AEC:SA:00247,Europe/Paris,2,AEC, +AEC:SP:00247,1,"Aéroconstellation",43.662845,1.362799,-1,0,AEC:SA:00247,Europe/Paris,2,AEC, +AEC:SP:00248,1,"Aéroport René Rey",43.63612,1.375357,-1,0,AEC:SA:00249,Europe/Paris,2,AEC, +AEC:SP:00249,1,"Aéroport René Rey",43.636462,1.375688,-1,0,AEC:SA:00249,Europe/Paris,2,AEC, +AEC:SP:00250,1,"Aéroport Toulouse Blagnac",43.631738,1.375112,-1,0,AEC:SA:00250,Europe/Paris,2,AEC, +AEC:SP:00251,1,"Bellonte",43.627117,1.384577,-1,0,AEC:SA:00254,Europe/Paris,0,AEC, +AEC:SP:00252,1,"Buxtéhude",43.648899,1.382357,-1,0,AEC:SA:00253,Europe/Paris,2,AEC, +AEC:SP:00253,1,"Buxtéhude",43.649802,1.382088,-1,0,AEC:SA:00253,Europe/Paris,2,AEC, +AEC:SP:00254,1,"Dewoitine",43.625238,1.382826,-1,0,AEC:SA:00254,Europe/Paris,0,AEC, +AEC:SP:00255,1,"F.Mitterrand",43.65501,1.37786,-1,0,AEC:SA:00256,Europe/Paris,2,AEC, +AEC:SP:00256,1,"F.Mitterrand",43.655843,1.37817,-1,0,AEC:SA:00256,Europe/Paris,2,AEC, +AEC:SP:00257,1,"Lagardère",43.654094,1.360895,-1,0,AEC:SA:00258,Europe/Paris,0,AEC, +AEC:SP:00258,1,"Lagardère",43.65456,1.3611,-1,0,AEC:SA:00258,Europe/Paris,0,AEC, +AEC:SP:00259,1,"M. Dassault",43.641338,1.368993,-1,0,AEC:SA:00260,Europe/Paris,2,AEC, +AEC:SP:00260,1,"M. Dassault",43.642261,1.368033,-1,0,AEC:SA:00260,Europe/Paris,2,AEC, +AEC:SP:00263,1,"Place Alain Savary (Lycée)",43.654647,1.374583,-1,0,AEC:SA:00263,Europe/Paris,2,AEC, +AEC:SP:00264,1,"Route de Cornebarrieu",43.645496,1.365591,-1,0,AEC:SA:00265,Europe/Paris,2,AEC, +AEC:SP:00265,1,"Route de Cornebarrieu",43.64519,1.365506,-1,0,AEC:SA:00265,Europe/Paris,2,AEC, +AEC:SP:00266,1,"Cité",43.259513,0.651479,-1,0,AEC:SA:00267,Europe/Paris,0,AEC, +AEC:SP:00267,1,"Cité Bellevue",43.259658,0.651803,-1,0,AEC:SA:00267,Europe/Paris,0,AEC, +AEC:SP:00268,1,"La Tuilerie",43.260185,0.66713,-1,0,AEC:SA:00269,Europe/Paris,0,AEC, +AEC:SP:00269,1,"La Tuilerie",43.260421,0.667195,-1,0,AEC:SA:00269,Europe/Paris,0,AEC, +AEC:SP:00270,1,"Mairie",43.25962,0.642821,-1,0,AEC:SA:00271,Europe/Paris,0,AEC, +AEC:SP:00271,1,"Mairie",43.259677,0.643136,-1,0,AEC:SA:00271,Europe/Paris,0,AEC, +AEC:SP:00272,1,"Ecole",43.839902,1.54097,-1,0,AEC:SA:00273,Europe/Paris,0,AEC, +AEC:SP:00273,1,"Ecole",43.840276,1.54012,-1,0,AEC:SA:00273,Europe/Paris,0,AEC, +AEC:SP:00274,1,"Vernhes",43.840514,1.526992,-1,0,AEC:SA:00275,Europe/Paris,0,AEC, +AEC:SP:00275,1,"Vernhes",43.840617,1.527065,-1,0,AEC:SA:00275,Europe/Paris,0,AEC, +AEC:SP:00276,1,"Guignerou",43.548806,1.149913,-1,0,AEC:SA:00276,Europe/Paris,0,AEC, +AEC:SP:00277,1,"La Goutte",43.545942,1.153421,-1,0,AEC:SA:00277,Europe/Paris,0,AEC, +AEC:SP:00278,1,"Les Cantoux",43.538337,1.163751,-1,0,AEC:SA:01642,Europe/Paris,0,AEC, +AEC:SP:00279,1,"Tourneris",43.546373,1.170569,-1,0,AEC:SA:00280,Europe/Paris,0,AEC, +AEC:SP:00280,1,"Tourneris",43.54619,1.170198,-1,0,AEC:SA:00280,Europe/Paris,0,AEC, +AEC:SP:00281,1,"Village",43.546449,1.14899,-1,0,AEC:SA:00281,Europe/Paris,2,AEC, +AEC:SP:00282,1,"RD 75a / Ecole",43.110683,0.634867,-1,0,AEC:SA:00283,Europe/Paris,0,AEC, +AEC:SP:00283,1,"RD 75a / Ecole",43.111024,0.63505,-1,0,AEC:SA:00283,Europe/Paris,0,AEC, +AEC:SP:00284,1,"Betinats",43.814087,1.421101,-1,0,AEC:SA:00285,Europe/Paris,0,AEC, +AEC:SP:00285,1,"Betinats",43.813779,1.421142,-1,0,AEC:SA:00285,Europe/Paris,0,AEC, +AEC:SP:00286,1,"Brugues",43.793079,1.414405,-1,0,AEC:SA:00287,Europe/Paris,0,AEC, +AEC:SP:00287,1,"Brugues",43.793081,1.414541,-1,0,AEC:SA:00287,Europe/Paris,0,AEC, +AEC:SP:00290,1,"Fombernier",43.783335,1.408616,-1,0,AEC:SA:00291,Europe/Paris,0,AEC, +AEC:SP:00291,1,"Fombertier",43.782986,1.408632,-1,0,AEC:SA:00291,Europe/Paris,0,AEC, +AEC:SP:00292,1,"Fompigasse",43.787661,1.411638,-1,0,AEC:SA:00306,Europe/Paris,0,AEC, +AEC:SP:00293,1,"La Nauze",43.78341,1.422949,-1,0,AEC:SA:00294,Europe/Paris,2,AEC, +AEC:SP:00294,1,"La Nauze",43.783266,1.423429,-1,0,AEC:SA:00294,Europe/Paris,2,AEC, +AEC:SP:00295,1,"La Tuilerie",43.781977,1.408354,-1,0,AEC:SA:00296,Europe/Paris,0,AEC, +AEC:SP:00296,1,"La Tuilerie",43.782154,1.408366,-1,0,AEC:SA:00296,Europe/Paris,0,AEC, +AEC:SP:00297,1,"Le Mas de Coppelia",43.782363,1.411949,-1,0,AEC:SA:00298,Europe/Paris,0,AEC, +AEC:SP:00298,1,"Le Mas de Coppelia",43.78256,1.412074,-1,0,AEC:SA:00298,Europe/Paris,0,AEC, +AEC:SP:00299,1,"Les Aynats",43.783424,1.429929,-1,0,AEC:SA:00300,Europe/Paris,2,AEC, +AEC:SP:00300,1,"Les Aynats",43.783229,1.430068,-1,0,AEC:SA:00300,Europe/Paris,2,AEC, +AEC:SP:00301,1,"Les Gourgues",43.798703,1.412417,-1,0,AEC:SA:00302,Europe/Paris,2,AEC, +AEC:SP:00302,1,"Les Gourgues",43.798823,1.412793,-1,0,AEC:SA:00302,Europe/Paris,2,AEC, +AEC:SP:00304,1,"Mairie",43.781674,1.405281,-1,0,AEC:SA:00305,Europe/Paris,0,AEC, +AEC:SP:00305,1,"Mairie",43.780914,1.405549,-1,0,AEC:SA:00305,Europe/Paris,0,AEC, +AEC:SP:00306,1,"Mougnet",43.78928,1.411768,-1,0,AEC:SA:00306,Europe/Paris,0,AEC, +AEC:SP:00307,1,"Praynets",43.796585,1.406544,-1,0,AEC:SA:00308,Europe/Paris,0,AEC, +AEC:SP:00308,1,"Praynets",43.79619,1.406754,-1,0,AEC:SA:00308,Europe/Paris,2,AEC, +AEC:SP:00311,1,"Vieux Stade",43.777895,1.405737,-1,0,AEC:SA:00312,Europe/Paris,0,AEC, +AEC:SP:00312,1,"Vieux stade",43.778066,1.40582,-1,0,AEC:SA:00312,Europe/Paris,0,AEC, +AEC:SP:00313,1,"Collège",43.291169,0.648259,-1,0,AEC:SA:00313,Europe/Paris,0,AEC, +AEC:SP:00314,1,"HLM",43.286191,0.65011,-1,0,AEC:SA:00315,Europe/Paris,0,AEC, +AEC:SP:00315,1,"HLM",43.286411,0.65027,-1,0,AEC:SA:00315,Europe/Paris,0,AEC, +AEC:SP:00317,1,"Nizors",43.268843,0.652034,-1,0,AEC:SA:00318,Europe/Paris,0,AEC, +AEC:SP:00318,1,"Nizors",43.268808,0.652471,-1,0,AEC:SA:00318,Europe/Paris,0,AEC, +AEC:SP:00319,1,"Eglise",43.602808,1.712327,-1,0,AEC:SA:00319,Europe/Paris,0,AEC, +AEC:SP:00322,1,"Mairie",43.599844,1.712908,-1,0,AEC:SA:00323,Europe/Paris,0,AEC, +AEC:SP:00323,1,"Mairie",43.599762,1.713018,-1,0,AEC:SA:00323,Europe/Paris,0,AEC, +AEC:SP:00326,1,"Barrail",43.174604,0.96707,-1,0,AEC:SA:00327,Europe/Paris,0,AEC, +AEC:SP:00327,1,"Barrail",43.174729,0.967458,-1,0,AEC:SA:00327,Europe/Paris,0,AEC, +AEC:SP:00328,1,"Estarac",43.163136,0.95993,-1,0,AEC:SA:00329,Europe/Paris,0,AEC, +AEC:SP:00329,1,"Estarac",43.163437,0.960462,-1,0,AEC:SA:00329,Europe/Paris,0,AEC, +AEC:SP:00330,1,"Lalanne",43.176604,0.968415,-1,0,AEC:SA:00331,Europe/Paris,0,AEC, +AEC:SP:00331,1,"Lalanne",43.177243,0.969126,-1,0,AEC:SA:00331,Europe/Paris,0,AEC, +AEC:SP:00332,1,"Sansonnet",43.167812,0.963026,-1,0,AEC:SA:00333,Europe/Paris,0,AEC, +AEC:SP:00333,1,"Sansonnet",43.167917,0.963213,-1,0,AEC:SA:00333,Europe/Paris,0,AEC, +AEC:SP:00334,1,"Ecole",43.482066,1.070167,-1,0,AEC:SA:00334,Europe/Paris,2,AEC, +AEC:SP:00335,1,"Mairie-Eglise",43.482879,1.070583,-1,0,AEC:SA:00336,Europe/Paris,2,AEC, +AEC:SP:00336,1,"Mairie-Eglise",43.48281,1.070753,-1,0,AEC:SA:00336,Europe/Paris,2,AEC, +AEC:SP:00337,1,"Pourcet",43.489344,1.086299,-1,0,AEC:SA:00338,Europe/Paris,0,AEC, +AEC:SP:00338,1,"Pourcet",43.489162,1.086174,-1,0,AEC:SA:00338,Europe/Paris,0,AEC, +AEC:SP:00339,1,"Le Bouet",43.707108,1.198213,-1,0,AEC:SA:00340,Europe/Paris,2,AEC, +AEC:SP:00340,1,"Le Bouet",43.706861,1.198378,-1,0,AEC:SA:00340,Europe/Paris,2,AEC, +AEC:SP:00341,1,"Village",43.764356,1.033638,-1,0,AEC:SA:00341,Europe/Paris,0,AEC, +AEC:SP:00342,1,"Ecole",43.723341,1.40957,-1,0,AEC:SA:00343,Europe/Paris,0,AEC, +AEC:SP:00343,1,"Ecoles",43.72376,1.40961,-1,0,AEC:SA:00343,Europe/Paris,0,AEC, +AEC:SP:00344,1,"Gamouna",43.721543,1.407298,-1,0,AEC:SA:00345,Europe/Paris,0,AEC, +AEC:SP:00345,1,"Gamouna",43.72132,1.407436,-1,0,AEC:SA:00345,Europe/Paris,0,AEC, +AEC:SP:00346,1,"La Côte",43.732468,1.41513,-1,0,AEC:SA:00347,Europe/Paris,0,AEC, +AEC:SP:00347,1,"La Côte",43.73257,1.415439,-1,0,AEC:SA:00347,Europe/Paris,0,AEC, +AEC:SP:00348,1,"Mairie",43.726982,1.411674,-1,0,AEC:SA:00349,Europe/Paris,0,AEC, +AEC:SP:00349,1,"Mairie",43.727157,1.411781,-1,0,AEC:SA:00349,Europe/Paris,0,AEC, +AEC:SP:00351,1,"Al Cros",43.779132,1.626214,-1,0,AEC:SA:00352,Europe/Paris,2,AEC, +AEC:SP:00352,1,"Al Cros",43.778783,1.626492,-1,0,AEC:SA:00352,Europe/Paris,2,AEC, +AEC:SP:00353,1,"Cimetière",43.782066,1.628972,-1,0,AEC:SA:00354,Europe/Paris,0,AEC, +AEC:SP:00354,1,"Cimetière",43.782373,1.628903,-1,0,AEC:SA:00354,Europe/Paris,2,AEC, +AEC:SP:00356,1,"Les Luquets",43.758369,1.616461,-1,0,AEC:SA:00357,Europe/Paris,0,AEC, +AEC:SP:00357,1,"Les Luquets",43.758164,1.616645,-1,0,AEC:SA:00357,Europe/Paris,0,AEC, +AEC:SP:00358,1,"Parro",43.776433,1.634026,-1,0,AEC:SA:00359,Europe/Paris,0,AEC, +AEC:SP:00359,1,"Parro",43.776278,1.634162,-1,0,AEC:SA:00359,Europe/Paris,0,AEC, +AEC:SP:00360,1,"Pigeron",43.772333,1.626623,-1,0,AEC:SA:00361,Europe/Paris,2,AEC, +AEC:SP:00361,1,"Pigeron",43.772466,1.626893,-1,0,AEC:SA:00361,Europe/Paris,2,AEC, +AEC:SP:00362,1,"Sayers",43.752413,1.609309,-1,0,AEC:SA:00363,Europe/Paris,0,AEC, +AEC:SP:00363,1,"Sayers",43.752378,1.609789,-1,0,AEC:SA:00363,Europe/Paris,0,AEC, +AEC:SP:00364,1,"Eglise",43.034205,0.74005,-1,0,AEC:SA:00365,Europe/Paris,0,AEC, +AEC:SP:00365,1,"Eglise",43.034443,0.740301,-1,0,AEC:SA:00365,Europe/Paris,0,AEC, +AEC:SP:00366,1,"Village",43.793014,1.034357,-1,0,AEC:SA:00366,Europe/Paris,0,AEC, +AEC:SP:00367,1,"Cadeillan",43.420632,0.852649,-1,0,AEC:SA:00368,Europe/Paris,0,AEC, +AEC:SP:00368,1,"Cadeillan",43.421302,0.851031,-1,0,AEC:SA:00368,Europe/Paris,0,AEC, +AEC:SP:00369,1,"En Bernadas",43.433274,0.846486,-1,0,AEC:SA:00370,Europe/Paris,0,AEC, +AEC:SP:00370,1,"En Bernadas",43.433905,0.845194,-1,0,AEC:SA:00370,Europe/Paris,0,AEC, +AEC:SP:00371,1,"Collège",43.72853,1.050387,-1,0,AEC:SA:00372,Europe/Paris,0,AEC, +AEC:SP:00372,1,"Collège",43.728608,1.050811,-1,0,AEC:SA:00372,Europe/Paris,0,AEC, +AEC:SP:00373,1,"La Halle",43.728995,1.048589,-1,0,AEC:SA:00374,Europe/Paris,0,AEC, +AEC:SP:00374,1,"La Halle",43.729122,1.048762,-1,0,AEC:SA:00374,Europe/Paris,0,AEC, +AEC:SP:00375,1,"Souleilla des Moulins",43.321355,1.711296,-1,0,AEC:SA:00375,Europe/Paris,0,AEC, +AEC:SP:00376,1,"Canelles",43.285553,1.632268,-1,0,AEC:SA:00377,Europe/Paris,0,AEC, +AEC:SP:00377,1,"Canelles",43.285615,1.632607,-1,0,AEC:SA:00377,Europe/Paris,0,AEC, +AEC:SP:00378,1,"Fortanier",43.289364,1.601654,-1,0,AEC:SA:00378,Europe/Paris,2,AEC, +AEC:SP:00379,1,"Gilis",43.290843,1.58768,-1,0,AEC:SA:00380,Europe/Paris,0,AEC, +AEC:SP:00380,1,"Gilis",43.291012,1.587749,-1,0,AEC:SA:00380,Europe/Paris,0,AEC, +AEC:SP:00381,1,"Mairie",43.284331,1.635525,-1,0,AEC:SA:00382,Europe/Paris,0,AEC, +AEC:SP:00382,1,"Mairie",43.28447,1.635588,-1,0,AEC:SA:00382,Europe/Paris,0,AEC, +AEC:SP:00383,1,"Maison de retraite",43.287108,1.62579,-1,0,AEC:SA:00384,Europe/Paris,0,AEC, +AEC:SP:00384,1,"Maison de retraite",43.28733,1.625922,-1,0,AEC:SA:00384,Europe/Paris,0,AEC, +AEC:SP:00385,1,"la Huguerie",43.465423,1.181155,-1,0,AEC:SA:00386,Europe/Paris,0,AEC, +AEC:SP:00386,1,"la Huguerie",43.4656,1.181349,-1,0,AEC:SA:00386,Europe/Paris,0,AEC, +AEC:SP:00387,1,"Les Galiers",43.450674,1.191687,-1,0,AEC:SA:00388,Europe/Paris,0,AEC, +AEC:SP:00388,1,"Les Galiers",43.450904,1.192326,-1,0,AEC:SA:00388,Europe/Paris,0,AEC, +AEC:SP:00389,1,"11-nov-18",43.47466,1.180809,-1,0,AEC:SA:00390,Europe/Paris,0,AEC, +AEC:SP:00390,1,"11-nov-18",43.474698,1.180539,-1,0,AEC:SA:00390,Europe/Paris,0,AEC, +AEC:SP:00391,1,"RD 27",43.25607,1.539453,-1,0,AEC:SA:14884,Europe/Paris,0,AEC, +AEC:SP:00392,1,"Le Pont",43.341155,1.258272,-1,0,AEC:SA:00393,Europe/Paris,0,AEC, +AEC:SP:00393,1,"Le Pont",43.341372,1.259007,-1,0,AEC:SA:00393,Europe/Paris,0,AEC, +AEC:SP:00394,1,"Briquetterie",43.534768,1.746916,-1,0,AEC:SA:00399,Europe/Paris,0,AEC, +AEC:SP:00395,1,"Cimetière",43.5311,1.755808,-1,0,AEC:SA:00398,Europe/Paris,2,AEC, +AEC:SP:00396,1,"Coopérative",43.525397,1.770649,-1,0,AEC:SA:00397,Europe/Paris,0,AEC, +AEC:SP:00397,1,"Coopérative",43.525381,1.771002,-1,0,AEC:SA:00397,Europe/Paris,0,AEC, +AEC:SP:00398,1,"Cours Alsace Lorraine",43.530794,1.756541,-1,0,AEC:SA:00398,Europe/Paris,2,AEC, +AEC:SP:00399,1,"Briquetterie",43.534689,1.746754,-1,0,AEC:SA:00399,Europe/Paris,0,AEC, +AEC:SP:00400,1,"Le Colombier",43.535961,1.741916,-1,0,AEC:SA:00401,Europe/Paris,0,AEC, +AEC:SP:00401,1,"Le Colombier",43.536228,1.74133,-1,0,AEC:SA:00401,Europe/Paris,0,AEC, +AEC:SP:00402,1,"Mairie",43.529411,1.760874,-1,0,AEC:SA:00403,Europe/Paris,0,AEC, +AEC:SP:00403,1,"Mairie",43.529521,1.760889,-1,0,AEC:SA:00403,Europe/Paris,0,AEC, +AEC:SP:00404,1,"Château d'eau",43.305163,1.224169,-1,0,AEC:SA:00405,Europe/Paris,2,AEC, +AEC:SP:00405,1,"Château d'eau",43.305234,1.224314,-1,0,AEC:SA:00405,Europe/Paris,2,AEC, +AEC:SP:00406,1,"Avenue de Toulouse",43.300691,1.224903,-1,0,AEC:SA:00407,Europe/Paris,2,AEC, +AEC:SP:00407,1,"Avenue de Toulouse",43.300574,1.224796,-1,0,AEC:SA:00407,Europe/Paris,2,AEC, +AEC:SP:00408,1,"Collège",43.306822,1.229325,-1,0,AEC:SA:00409,Europe/Paris,0,AEC, +AEC:SP:00409,1,"Collège",43.306829,1.229581,-1,0,AEC:SA:00409,Europe/Paris,0,AEC, +AEC:SP:00410,1,"Gare SNCF",43.298194,1.212695,-1,0,SIN:SA:OCE87611061,Europe/Paris,0,AEC, +AEC:SP:00411,1,"Jardin Public",43.29591,1.225144,-1,0,AEC:SA:00412,Europe/Paris,0,AEC, +AEC:SP:00412,1,"Jardin Public",43.295784,1.226097,-1,0,AEC:SA:00412,Europe/Paris,0,AEC, +AEC:SP:00413,1,"La Barre",43.296304,1.217828,-1,0,AEC:SA:00414,Europe/Paris,2,AEC, +AEC:SP:00414,1,"La Barre",43.296121,1.21773,-1,0,AEC:SA:00414,Europe/Paris,2,AEC, +AEC:SP:00415,1,"La Guinguette",43.304938,1.227651,-1,0,AEC:SA:00416,Europe/Paris,2,AEC, +AEC:SP:00416,1,"La Guinguette",43.304756,1.227797,-1,0,AEC:SA:00416,Europe/Paris,2,AEC, +AEC:SP:00417,1,"La Terrasse",43.28882,1.20584,-1,0,AEC:SA:00418,Europe/Paris,2,AEC, +AEC:SP:00418,1,"La Terrasse",43.289161,1.206028,-1,0,AEC:SA:00418,Europe/Paris,2,AEC, +AEC:SP:00419,1,"Ecoles",43.520647,1.495735,-1,0,AEC:SA:00420,Europe/Paris,0,AEC, +AEC:SP:00420,1,"Ecoles",43.519116,1.496961,-1,0,AEC:SA:00420,Europe/Paris,2,AEC, +AEC:SP:00421,1,"Eglise",43.516745,1.498112,-1,0,AEC:SA:00422,Europe/Paris,2,AEC, +AEC:SP:00422,1,"Eglise",43.516899,1.498181,-1,0,AEC:SA:00422,Europe/Paris,2,AEC, +AEC:SP:00426,1,"Péries",43.512854,1.500521,-1,0,AEC:SA:00427,Europe/Paris,0,AEC, +AEC:SP:00427,1,"Péries",43.513069,1.500679,-1,0,AEC:SA:00427,Europe/Paris,0,AEC, +AEC:SP:00428,1,"Peupliers",43.52336,1.494395,-1,0,AEC:SA:00429,Europe/Paris,2,AEC, +AEC:SP:00429,1,"Peupliers",43.523158,1.494283,-1,0,AEC:SA:00429,Europe/Paris,2,AEC, +AEC:SP:00430,1,"Camilong",43.695931,1.450552,-1,0,AEC:SA:00431,Europe/Paris,0,AEC, +AEC:SP:00431,1,"Camilong",43.695849,1.451104,-1,0,AEC:SA:00431,Europe/Paris,0,AEC, +AEC:SP:00432,1,"Clothilde",43.692042,1.450686,-1,0,AEC:SA:00433,Europe/Paris,0,AEC, +AEC:SP:00433,1,"Clotilde",43.692525,1.450898,-1,0,AEC:SA:00433,Europe/Paris,0,AEC, +AEC:SP:00434,1,"Grazidou",43.686228,1.45084,-1,0,AEC:SA:00435,Europe/Paris,0,AEC, +AEC:SP:00435,1,"Grazidou",43.686467,1.451287,-1,0,AEC:SA:00435,Europe/Paris,0,AEC, +AEC:SP:00436,1,"La Grange",43.699641,1.429833,-1,0,AEC:SA:00437,Europe/Paris,0,AEC, +AEC:SP:00437,1,"La Grange",43.699693,1.430029,-1,0,AEC:SA:00437,Europe/Paris,2,AEC, +AEC:SP:00438,1,"Pont Vieil",43.691688,1.427103,-1,0,AEC:SA:00439,Europe/Paris,0,AEC, +AEC:SP:00439,1,"Pont-Viel",43.692229,1.427349,-1,0,AEC:SA:00439,Europe/Paris,0,AEC, +AEC:SP:00440,1,"Mairie",43.6773,1.532914,-1,0,AEC:SA:00441,Europe/Paris,2,AEC, +AEC:SP:00441,1,"Mairie",43.677499,1.532653,-1,0,AEC:SA:00441,Europe/Paris,2,AEC, +AEC:SP:00442,1,"Rouergue",43.675623,1.528358,-1,0,AEC:SA:00443,Europe/Paris,0,AEC, +AEC:SP:00443,1,"Rouergue",43.675578,1.528621,-1,0,AEC:SA:00443,Europe/Paris,2,AEC, +AEC:SP:00444,1,"Route d'Albi",43.679713,1.538338,-1,0,AEC:SA:00445,Europe/Paris,0,AEC, +AEC:SP:00445,1,"Route d'Albi",43.679662,1.538738,-1,0,AEC:SA:00445,Europe/Paris,0,AEC, +AEC:SP:00446,1,"Avenue de Toulouse",43.771358,1.358537,-1,0,AEC:SA:00447,Europe/Paris,0,AEC, +AEC:SP:00447,1,"Avenue de Toulouse",43.771687,1.358518,-1,0,AEC:SA:00447,Europe/Paris,0,AEC, +AEC:SP:00448,1,"Bordeneuve",43.788418,1.346859,-1,0,AEC:SA:00449,Europe/Paris,0,AEC, +AEC:SP:00449,1,"Bordeneuve",43.788549,1.346741,-1,0,AEC:SA:00449,Europe/Paris,0,AEC, +AEC:SP:00450,1,"Boulbènes",43.786323,1.353293,-1,0,AEC:SA:00451,Europe/Paris,0,AEC, +AEC:SP:00451,1,"Boulbènes",43.786239,1.353221,-1,0,AEC:SA:00451,Europe/Paris,0,AEC, +AEC:SP:00455,1,"Embalens",43.795625,1.335143,-1,0,AEC:SA:00456,Europe/Paris,0,AEC, +AEC:SP:00456,1,"Embalens",43.795571,1.335622,-1,0,AEC:SA:00456,Europe/Paris,0,AEC, +AEC:SP:00457,1,"Eurocentre Nord",43.769143,1.360938,-1,0,AEC:SA:00458,Europe/Paris,2,AEC, +AEC:SP:00458,1,"Eurocentre Nord",43.769819,1.360192,-1,0,AEC:SA:00458,Europe/Paris,2,AEC, +AEC:SP:00459,1,"Gare",43.786295,1.342201,-1,0,AEC:SA:00459,Europe/Paris,2,AEC, +AEC:SP:00463,1,"L'Ourmède",43.780563,1.36019,-1,0,AEC:SA:00464,Europe/Paris,0,AEC, +AEC:SP:00464,1,"L'Ourmède",43.780505,1.360022,-1,0,AEC:SA:00464,Europe/Paris,0,AEC, +AEC:SP:00465,1,"Mairie",43.783778,1.357262,-1,0,AEC:SA:00466,Europe/Paris,0,AEC, +AEC:SP:00466,1,"Mairie",43.784026,1.357187,-1,0,AEC:SA:00466,Europe/Paris,0,AEC, +AEC:SP:00467,1,"Péradère",43.775396,1.359068,-1,0,AEC:SA:00468,Europe/Paris,0,AEC, +AEC:SP:00468,1,"Péradère",43.777188,1.359607,-1,0,AEC:SA:00468,Europe/Paris,0,AEC, +AEC:SP:00469,1,"Route d'Ondes - Gare",43.788109,1.343126,-1,0,AEC:SA:00470,Europe/Paris,2,AEC, +AEC:SP:00470,1,"Route d'Ondes - Gare",43.788206,1.343059,-1,0,AEC:SA:00470,Europe/Paris,2,AEC, +AEC:SP:00471,1,"Apas",43.130612,0.918475,-1,0,AEC:SA:00472,Europe/Paris,0,AEC, +AEC:SP:00472,1,"Apas",43.13059,0.918937,-1,0,AEC:SA:00472,Europe/Paris,0,AEC, +AEC:SP:00473,1,"En Hourquet",43.718882,1.062651,-1,0,AEC:SA:00474,Europe/Paris,0,AEC, +AEC:SP:00474,1,"En Hourquet",43.718974,1.062805,-1,0,AEC:SA:00474,Europe/Paris,0,AEC, +AEC:SP:00475,1,"Village",43.714069,1.0851,-1,0,AEC:SA:00476,Europe/Paris,0,AEC, +AEC:SP:00476,1,"Village",43.714168,1.085087,-1,0,AEC:SA:00476,Europe/Paris,0,AEC, +AEC:SP:00477,1,"Village",43.299417,1.470169,-1,0,AEC:SA:00478,Europe/Paris,0,AEC, +AEC:SP:00478,1,"Village",43.29925,1.470275,-1,0,AEC:SA:00478,Europe/Paris,0,AEC, +AEC:SP:00479,1,"Les Escoumes",42.984802,0.7305,-1,0,AEC:SA:00479,Europe/Paris,0,AEC, +AEC:SP:00480,1,"Pont",42.984701,0.731064,-1,0,AEC:SA:00481,Europe/Paris,0,AEC, +AEC:SP:00481,1,"Pont",42.984567,0.73115,-1,0,AEC:SA:00481,Europe/Paris,0,AEC, +AEC:SP:00482,1,"Eglise",42.867706,0.607164,-1,0,AEC:SA:00483,Europe/Paris,0,AEC, +AEC:SP:00483,1,"Village",42.867295,0.607216,-1,0,AEC:SA:00483,Europe/Paris,0,AEC, +AEC:SP:00484,1,"Village",42.869225,0.608062,-1,0,AEC:SA:00483,Europe/Paris,0,AEC, +AEC:SP:00485,1,"Village",42.869023,0.608392,-1,0,AEC:SA:00483,Europe/Paris,0,AEC, +AEC:SP:00486,1,"Collbato",43.203224,1.08592,-1,0,AEC:SA:00486,Europe/Paris,0,AEC, +AEC:SP:00487,1,"Jean Jaurès",43.205378,1.08398,-1,0,AEC:SA:00488,Europe/Paris,0,AEC, +AEC:SP:00488,1,"Jean Jaurès",43.20507,1.084324,-1,0,AEC:SA:00488,Europe/Paris,0,AEC, +AEC:SP:00489,1,"Labrioulette",43.209823,1.092232,-1,0,AEC:SA:00490,Europe/Paris,2,AEC, +AEC:SP:00490,1,"Labrioulette",43.209147,1.091273,-1,0,AEC:SA:00490,Europe/Paris,2,AEC, +AEC:SP:00493,1,"Mairie",43.750166,1.432297,-1,0,AEC:SA:00501,Europe/Paris,0,AEC, +AEC:SP:00494,1,"La Corvette",43.7505,1.424078,-1,0,AEC:SA:00495,Europe/Paris,2,AEC, +AEC:SP:00495,1,"La Corvette",43.750378,1.423971,-1,0,AEC:SA:00495,Europe/Paris,2,AEC, +AEC:SP:00498,1,"Mesturel",43.74004,1.427865,-1,0,AEC:SA:00499,Europe/Paris,0,AEC, +AEC:SP:00499,1,"Mesturel",43.737931,1.42848,-1,0,AEC:SA:00499,Europe/Paris,0,AEC, +AEC:SP:00500,1,"Pédaucou",43.771797,1.439236,-1,0,AEC:SA:02301,Europe/Paris,0,AEC, +AEC:SP:00501,1,"Mairie",43.750364,1.432121,-1,0,AEC:SA:00501,Europe/Paris,0,AEC, +AEC:SP:00502,1,"Route de Labastide",43.748076,1.432915,-1,0,AEC:SA:00503,Europe/Paris,0,AEC, +AEC:SP:00503,1,"Route de Labastide",43.748225,1.433008,-1,0,AEC:SA:00503,Europe/Paris,0,AEC, +AEC:SP:00504,1,"Trillou",43.761631,1.441898,-1,0,AEC:SA:00505,Europe/Paris,0,AEC, +AEC:SP:00505,1,"Trillou",43.761832,1.442325,-1,0,AEC:SA:00505,Europe/Paris,0,AEC, +AEC:SP:00506,1,"19-mars-62",43.748959,1.429604,-1,0,AEC:SA:00507,Europe/Paris,2,AEC, +AEC:SP:00507,1,"19-mars-62",43.749653,1.428006,-1,0,AEC:SA:00507,Europe/Paris,2,AEC, +AEC:SP:00508,1,"Saspis",42.932623,0.656217,-1,0,AEC:SA:00510,Europe/Paris,0,AEC, +AEC:SP:00509,1,"Saspis",42.932794,0.656422,-1,0,AEC:SA:00510,Europe/Paris,0,AEC, +AEC:SP:00510,1,"Saspis",42.930891,0.658126,-1,0,AEC:SA:00510,Europe/Paris,0,AEC, +AEC:SP:00511,1,"Saspis",42.931058,0.658512,-1,0,AEC:SA:00510,Europe/Paris,0,AEC, +AEC:SP:00512,1,"Village",42.937381,0.652077,-1,0,AEC:SA:00513,Europe/Paris,0,AEC, +AEC:SP:00513,1,"Village",42.937424,0.652452,-1,0,AEC:SA:00513,Europe/Paris,0,AEC, +AEC:SP:00514,1,"Centre",43.259913,0.736452,-1,0,AEC:SA:00514,Europe/Paris,0,AEC, +AEC:SP:00515,1,"Castera",42.852911,0.602894,-1,0,AEC:SA:00516,Europe/Paris,2,AEC, +AEC:SP:00516,1,"Castéra",42.853258,0.603716,-1,0,AEC:SA:00516,Europe/Paris,2,AEC, +AEC:SP:00517,1,"Pratviel",42.844414,0.603584,-1,0,SIN:SA:OCE87173823,Europe/Paris,2,AEC, +AEC:SP:00518,1,"Comminges",43.062413,0.636537,-1,0,AEC:SA:00519,Europe/Paris,0,AEC, +AEC:SP:00519,1,"Comminges",43.062279,0.636508,-1,0,AEC:SA:00519,Europe/Paris,0,AEC, +AEC:SP:00520,1,"Las Verdures",43.055469,0.634757,-1,0,AEC:SA:00521,Europe/Paris,0,AEC, +AEC:SP:00521,1,"Las Verdures",43.055272,0.634967,-1,0,AEC:SA:00521,Europe/Paris,0,AEC, +AEC:SP:00522,1,"Centre",42.914476,0.639247,-1,0,SIN:SA:OCE87170795,Europe/Paris,2,AEC, +AEC:SP:00523,1,"Centre",42.91449,0.639545,-1,0,SIN:SA:OCE87170795,Europe/Paris,2,AEC, +AEC:SP:00524,1,"Cité Douanes",42.914579,0.645838,-1,0,AEC:SA:00525,Europe/Paris,0,AEC, +AEC:SP:00525,1,"Cité Douanes",42.914663,0.646395,-1,0,AEC:SA:00525,Europe/Paris,2,AEC, +AEC:SP:00526,1,"Gendarmerie",42.921766,0.640446,-1,0,AEC:SA:00527,Europe/Paris,0,AEC, +AEC:SP:00527,1,"Gendarmerie",42.921408,0.640872,-1,0,AEC:SA:00527,Europe/Paris,0,AEC, +AEC:SP:00528,1,"Muna",42.899661,0.632682,-1,0,AEC:SA:14617,Europe/Paris,2,AEC, +AEC:SP:00531,1,"Guilhem",43.318974,1.502518,-1,0,AEC:SA:00532,Europe/Paris,0,AEC, +AEC:SP:00532,1,"Guilhem",43.318945,1.502869,-1,0,AEC:SA:00532,Europe/Paris,0,AEC, +AEC:SP:00533,1,"La Plaine",43.321952,1.499012,-1,0,AEC:SA:00538,Europe/Paris,0,AEC, +AEC:SP:00534,1,"Le Port",43.308043,1.553689,-1,0,AEC:SA:00535,Europe/Paris,0,AEC, +AEC:SP:00535,1,"Le Port",43.307952,1.554218,-1,0,AEC:SA:00535,Europe/Paris,0,AEC, +AEC:SP:00536,1,"Les Baccarets",43.312495,1.511116,-1,0,AEC:SA:00537,Europe/Paris,0,AEC, +AEC:SP:00537,1,"Les Baccarets",43.312662,1.511182,-1,0,AEC:SA:00537,Europe/Paris,0,AEC, +AEC:SP:00538,1,"Les Plaines",43.321832,1.498885,-1,0,AEC:SA:00538,Europe/Paris,0,AEC, +AEC:SP:00539,1,"Les Salvaignous",43.327486,1.49264,-1,0,AEC:SA:00540,Europe/Paris,2,AEC, +AEC:SP:00540,1,"Les Salvaignous",43.327418,1.492939,-1,0,AEC:SA:00540,Europe/Paris,2,AEC, +AEC:SP:00541,1,"Mairie",43.313821,1.532628,-1,0,AEC:SA:00542,Europe/Paris,0,AEC, +AEC:SP:00542,1,"Mairie",43.313751,1.532764,-1,0,AEC:SA:00542,Europe/Paris,0,AEC, +AEC:SP:00543,1,"Picarrou",43.293629,1.572294,-1,0,AEC:SA:00544,Europe/Paris,0,AEC, +AEC:SP:00544,1,"Picarrou",43.293767,1.57236,-1,0,AEC:SA:00544,Europe/Paris,0,AEC, +AEC:SP:00545,1,"Pont",43.311432,1.532803,-1,0,AEC:SA:08746,Europe/Paris,0,AEC, +AEC:SP:00546,1,"4 Chemins",43.309325,1.536203,-1,0,AEC:SA:00547,Europe/Paris,0,AEC, +AEC:SP:00547,1,"4 Chemins",43.309209,1.536252,-1,0,AEC:SA:00547,Europe/Paris,0,AEC, +AEC:SP:00548,1,"Clarac",43.098637,0.626577,-1,0,AEC:SA:00549,Europe/Paris,0,AEC, +AEC:SP:00549,1,"Clarac",43.098543,0.626897,-1,0,AEC:SA:00549,Europe/Paris,0,AEC, +AEC:SP:00550,1,"La Riverotte",43.457055,1.416096,-1,0,AEC:SA:00889,Europe/Paris,0,AEC, +AEC:SP:00551,1,"Gare Centre",43.604496,1.334873,-1,0,AEC:SA:00551,Europe/Paris,2,AEC, +AEC:SP:00558,1,"Clinique des Cèdres",43.659304,1.311718,-1,0,AEC:SA:00565,Europe/Paris,0,AEC, +AEC:SP:00559,1,"La Buette",43.650535,1.340718,-1,0,AEC:SA:00560,Europe/Paris,0,AEC, +AEC:SP:00560,1,"La Buette",43.65024,1.341817,-1,0,AEC:SA:00560,Europe/Paris,0,AEC, +AEC:SP:00561,1,"La Pendule",43.658446,1.324401,-1,0,AEC:SA:00562,Europe/Paris,0,AEC, +AEC:SP:00562,1,"La Pendule",43.658463,1.324642,-1,0,AEC:SA:00562,Europe/Paris,0,AEC, +AEC:SP:00563,1,"Latecoère",43.650487,1.333576,-1,0,AEC:SA:00564,Europe/Paris,0,AEC, +AEC:SP:00564,1,"Latécoère",43.65067,1.333575,-1,0,AEC:SA:00564,Europe/Paris,0,AEC, +AEC:SP:00565,1,"Les Cèdres",43.658622,1.312636,-1,0,AEC:SA:00565,Europe/Paris,0,AEC, +AEC:SP:00566,1,"Mourlas",43.652684,1.327917,-1,0,AEC:SA:00567,Europe/Paris,0,AEC, +AEC:SP:00567,1,"RD1 Mourlas",43.652952,1.327754,-1,0,AEC:SA:00567,Europe/Paris,0,AEC, +AEC:SP:00568,1,"Pont",43.203535,1.088666,-1,0,AEC:SA:00569,Europe/Paris,0,AEC, +AEC:SP:00569,1,"Pont",43.203514,1.088907,-1,0,AEC:SA:00569,Europe/Paris,0,AEC, +AEC:SP:00570,1,"Village",43.200837,1.088934,-1,0,AEC:SA:00571,Europe/Paris,0,AEC, +AEC:SP:00571,1,"Village",43.200559,1.089147,-1,0,AEC:SA:00571,Europe/Paris,0,AEC, +AEC:SP:00572,1,"Babonneau",43.683584,1.274903,-1,0,AEC:SA:00573,Europe/Paris,2,AEC, +AEC:SP:00573,1,"Babonneau",43.683773,1.275113,-1,0,AEC:SA:00573,Europe/Paris,2,AEC, +AEC:SP:00574,1,"Chemin des Châteaux",43.693188,1.268352,-1,0,AEC:SA:00575,Europe/Paris,0,AEC, +AEC:SP:00575,1,"Chemin des Châteaux",43.693241,1.268618,-1,0,AEC:SA:00575,Europe/Paris,0,AEC, +AEC:SP:00576,1,"Saint Roch",43.68768,1.272713,-1,0,AEC:SA:00577,Europe/Paris,0,AEC, +AEC:SP:00577,1,"Saint-Roch",43.687626,1.272877,-1,0,AEC:SA:00577,Europe/Paris,0,AEC, +AEC:SP:00578,1,"Stade",43.692362,1.25885,-1,0,AEC:SA:00579,Europe/Paris,2,AEC, +AEC:SP:00579,1,"Stade",43.692228,1.258917,-1,0,AEC:SA:00579,Europe/Paris,2,AEC, +AEC:SP:00580,1,"Amandiers",43.484124,1.527926,-1,0,AEC:SA:00581,Europe/Paris,0,AEC, +AEC:SP:00581,1,"Amandiers",43.483973,1.528223,-1,0,AEC:SA:00581,Europe/Paris,0,AEC, +AEC:SP:00582,1,"Le Moulin",43.479904,1.526294,-1,0,AEC:SA:00582,Europe/Paris,2,AEC, +AEC:SP:00585,1,"Les Violettes",43.486907,1.53117,-1,0,AEC:SA:00586,Europe/Paris,0,AEC, +AEC:SP:00586,1,"Les Violettes",43.486837,1.531705,-1,0,AEC:SA:00586,Europe/Paris,0,AEC, +AEC:SP:00587,1,"Mairie",43.473331,1.551165,-1,0,AEC:SA:00588,Europe/Paris,0,AEC, +AEC:SP:00588,1,"Mairie",43.472116,1.552596,-1,0,AEC:SA:00588,Europe/Paris,0,AEC, +AEC:SP:00589,1,"Beaupuy",43.599566,1.626054,-1,0,AEC:SA:00590,Europe/Paris,0,AEC, +AEC:SP:00590,1,"Beaupuy",43.599215,1.626414,-1,0,AEC:SA:00590,Europe/Paris,0,AEC, +AEC:SP:00591,1,"Hameau de Lafage",43.578911,1.599811,-1,0,AEC:SA:00592,Europe/Paris,0,AEC, +AEC:SP:00592,1,"Hameau de Lafage",43.579042,1.600044,-1,0,AEC:SA:00592,Europe/Paris,0,AEC, +AEC:SP:00593,1,"Lafage",43.577392,1.602936,-1,0,AEC:SA:00594,Europe/Paris,0,AEC, +AEC:SP:00594,1,"Lafage",43.577369,1.603337,-1,0,AEC:SA:00594,Europe/Paris,0,AEC, +AEC:SP:00595,1,"L'Auriol",43.585849,1.586117,-1,0,AEC:SA:14881,Europe/Paris,2,AEC, +AEC:SP:00596,1,"Le Pigeonnier",43.574217,1.610794,-1,0,AEC:SA:01837,Europe/Paris,0,AEC, +AEC:SP:00599,1,"Mairie",43.754841,1.099772,-1,0,AEC:SA:00600,Europe/Paris,0,AEC, +AEC:SP:00600,1,"Mairie",43.754769,1.099875,-1,0,AEC:SA:00600,Europe/Paris,0,AEC, +AEC:SP:00601,1,"Bertoulots",43.430828,1.349574,-1,0,AEC:SA:00605,Europe/Paris,2,AEC, +AEC:SP:00602,1,"Flurial",43.437154,1.378506,-1,0,AEC:SA:00962,Europe/Paris,0,AEC, +AEC:SP:00603,1,"La Croix Blanche II",43.424166,1.360801,-1,0,AEC:SA:00604,Europe/Paris,0,AEC, +AEC:SP:00604,1,"La Croix Blanche 2",43.424098,1.360654,-1,0,AEC:SA:00604,Europe/Paris,0,AEC, +AEC:SP:00605,1,"La Croix Rouge",43.43052,1.34985,-1,0,AEC:SA:00605,Europe/Paris,2,AEC, +AEC:SP:00606,1,"La Guinguette",43.433233,1.378743,-1,0,AEC:SA:00607,Europe/Paris,0,AEC, +AEC:SP:00607,1,"La Guinguette",43.433668,1.378887,-1,0,AEC:SA:00607,Europe/Paris,0,AEC, +AEC:SP:00608,1,"La Source",43.412445,1.372382,-1,0,AEC:SA:00609,Europe/Paris,0,AEC, +AEC:SP:00609,1,"La Source",43.411597,1.372283,-1,0,AEC:SA:00609,Europe/Paris,0,AEC, +AEC:SP:00610,1,"Le Moulin d'Augé",43.420662,1.373678,-1,0,AEC:SA:00611,Europe/Paris,0,AEC, +AEC:SP:00611,1,"Moulin d'Augé",43.420838,1.37351,-1,0,AEC:SA:00611,Europe/Paris,0,AEC, +AEC:SP:00612,1,"Moulin d'Augé",43.420826,1.374785,-1,0,AEC:SA:00611,Europe/Paris,0,AEC, +AEC:SP:00613,1,"Plaine du Pitou",43.428332,1.354117,-1,0,AEC:SA:00614,Europe/Paris,2,AEC, +AEC:SP:00614,1,"Plaine du Pitou",43.428096,1.354902,-1,0,AEC:SA:00614,Europe/Paris,2,AEC, +AEC:SP:00615,1,"Route de Muret",43.426468,1.357388,-1,0,AEC:SA:00616,Europe/Paris,2,AEC, +AEC:SP:00616,1,"Route de Muret",43.42589,1.358062,-1,0,AEC:SA:00616,Europe/Paris,2,AEC, +AEC:SP:00617,1,"Mairie-Ecole",43.530409,1.087745,-1,0,AEC:SA:00617,Europe/Paris,2,AEC, +AEC:SP:00618,1,"Thermes",43.049252,0.741742,-1,0,AEC:SA:00619,Europe/Paris,0,AEC, +AEC:SP:00619,1,"Thermes",43.049408,0.742035,-1,0,AEC:SA:00619,Europe/Paris,0,AEC, +AEC:SP:00620,1,"Borde Haute",43.513762,1.55626,-1,0,AEC:SA:00621,Europe/Paris,0,AEC, +AEC:SP:00621,1,"Borde Haute",43.514209,1.555696,-1,0,AEC:SA:00621,Europe/Paris,0,AEC, +AEC:SP:00622,1,"Cousquille",43.518106,1.5465,-1,0,AEC:SA:00625,Europe/Paris,0,AEC, +AEC:SP:00623,1,"La Bruyère",43.512048,1.560118,-1,0,AEC:SA:00624,Europe/Paris,0,AEC, +AEC:SP:00624,1,"La Bruyère",43.511984,1.560521,-1,0,AEC:SA:00624,Europe/Paris,0,AEC, +AEC:SP:00625,1,"La Cousquille",43.518391,1.545911,-1,0,AEC:SA:00625,Europe/Paris,0,AEC, +AEC:SP:00626,1,"La Tour",43.510828,1.56403,-1,0,AEC:SA:00626,Europe/Paris,0,AEC, +AEC:SP:00627,1,"Lauragais",43.515778,1.552313,-1,0,AEC:SA:00628,Europe/Paris,0,AEC, +AEC:SP:00628,1,"Lauragais",43.515966,1.552162,-1,0,AEC:SA:00628,Europe/Paris,0,AEC, +AEC:SP:00629,1,"Troubadours",43.525912,1.539739,-1,0,AEC:SA:00630,Europe/Paris,2,AEC, +AEC:SP:00630,1,"Troubadours",43.526304,1.539787,-1,0,AEC:SA:00630,Europe/Paris,2,AEC, +AEC:SP:00631,1,"Las Bordes",43.281938,0.733141,-1,0,AEC:SA:00632,Europe/Paris,2,AEC, +AEC:SP:00632,1,"Las Bordes",43.281062,0.733016,-1,0,AEC:SA:00632,Europe/Paris,2,AEC, +AEC:SP:00633,1,"Lane",42.95164,0.637514,-1,0,AEC:SA:00634,Europe/Paris,2,AEC, +AEC:SP:00634,1,"Lane",42.951557,0.637932,-1,0,AEC:SA:00634,Europe/Paris,2,AEC, +AEC:SP:00635,1,"Mairie",42.946902,0.641187,-1,0,AEC:SA:00636,Europe/Paris,0,AEC, +AEC:SP:00636,1,"Mairie",42.946873,0.641513,-1,0,AEC:SA:00636,Europe/Paris,0,AEC, +AEC:SP:00637,1,"Pont de Chaum",42.938455,0.645051,-1,0,AEC:SA:00638,Europe/Paris,2,AEC, +AEC:SP:00638,1,"Pont de Chaum",42.938631,0.64541,-1,0,AEC:SA:00638,Europe/Paris,2,AEC, +AEC:SP:00639,1,"Géry",42.926049,0.676831,-1,0,AEC:SA:00640,Europe/Paris,0,AEC, +AEC:SP:00640,1,"Géry",42.926355,0.677671,-1,0,AEC:SA:00640,Europe/Paris,0,AEC, +AEC:SP:00647,1,"Mazurié",43.68361,1.406348,-1,0,AEC:SA:00647,Europe/Paris,0,AEC, +AEC:SP:00648,1,"Plaine",43.671371,1.409798,-1,0,AEC:SA:00648,Europe/Paris,0,AEC, +AEC:SP:00649,1,"Saint Gobain",43.676405,1.408049,-1,0,AEC:SA:00649,Europe/Paris,0,AEC, +AEC:SP:00650,1,"Eglise",43.084698,0.898012,-1,0,AEC:SA:00651,Europe/Paris,2,AEC, +AEC:SP:00651,1,"Eglise",43.084126,0.897109,-1,0,AEC:SA:00651,Europe/Paris,2,AEC, +AEC:SP:00652,1,"Les Mourères",43.095948,0.914939,-1,0,AEC:SA:00653,Europe/Paris,0,AEC, +AEC:SP:00653,1,"Les Mourères",43.095942,0.914605,-1,0,AEC:SA:00653,Europe/Paris,0,AEC, +AEC:SP:00654,1,"Moussard",43.586971,1.579517,-1,0,AEC:SA:00655,Europe/Paris,0,AEC, +AEC:SP:00655,1,"Moussard",43.586931,1.578948,-1,0,AEC:SA:00655,Europe/Paris,2,AEC, +AEC:SP:00656,1,"Les Pins",43.675608,1.424753,-1,0,AEC:SA:00656,Europe/Paris,2,AEC, +AEC:SP:00658,1,"Raude-Lauzette",43.678455,1.423123,-1,0,AEC:SA:00658,Europe/Paris,0,AEC, +AEC:SP:00659,1,"Banayre",43.543112,1.217068,-1,0,AEC:SA:00660,Europe/Paris,0,AEC, +AEC:SP:00660,1,"Banayre",43.54315,1.216412,-1,0,AEC:SA:00660,Europe/Paris,0,AEC, +AEC:SP:00661,1,"Benech",43.533323,1.226306,-1,0,AEC:SA:00662,Europe/Paris,2,AEC, +AEC:SP:00662,1,"Bénech",43.533554,1.226541,-1,0,AEC:SA:00662,Europe/Paris,2,AEC, +AEC:SP:00664,1,"Cantegraille",43.529454,1.215345,-1,0,AEC:SA:00665,Europe/Paris,0,AEC, +AEC:SP:00665,1,"Cantegraille",43.529246,1.2152,-1,0,AEC:SA:00665,Europe/Paris,2,AEC, +AEC:SP:00666,1,"Eole",43.535869,1.226218,-1,0,AEC:SA:00667,Europe/Paris,0,AEC, +AEC:SP:00667,1,"Eole",43.535707,1.225986,-1,0,AEC:SA:00667,Europe/Paris,0,AEC, +AEC:SP:00668,1,"Cimetière",43.539946,1.235956,-1,0,AEC:SA:00669,Europe/Paris,0,AEC, +AEC:SP:00669,1,"Cimetière",43.539417,1.235421,-1,0,AEC:SA:00669,Europe/Paris,0,AEC, +AEC:SP:00671,1,"11 Novembre 1918",43.53593,1.229782,-1,0,AEC:SA:00672,Europe/Paris,0,AEC, +AEC:SP:00672,1,"11 Novembre 1918",43.535561,1.229628,-1,0,AEC:SA:00672,Europe/Paris,2,AEC, +AEC:SP:00675,1,"Parking Lycée C. Royer",43.52861,1.208426,-1,0,AEC:SA:00675,Europe/Paris,2,AEC, +AEC:SP:00676,1,"Petit Quinquin",43.540442,1.222805,-1,0,AEC:SA:00677,Europe/Paris,0,AEC, +AEC:SP:00677,1,"Petit Quinquin",43.540283,1.22263,-1,0,AEC:SA:00677,Europe/Paris,0,AEC, +AEC:SP:00678,1,"Pyrénées",43.538139,1.224279,-1,0,AEC:SA:00679,Europe/Paris,0,AEC, +AEC:SP:00679,1,"Pyrénées",43.538298,1.223954,-1,0,AEC:SA:00679,Europe/Paris,0,AEC, +AEC:SP:00681,1,"Berdoulet Est",43.567432,1.225978,-1,0,AEC:SA:01074,Europe/Paris,0,AEC, +AEC:SP:00682,1,"Berdoulet Ouest",43.564355,1.21351,-1,0,AEC:SA:00683,Europe/Paris,0,AEC, +AEC:SP:00683,1,"Berdoulet Ouest",43.564309,1.21376,-1,0,AEC:SA:00683,Europe/Paris,0,AEC, +AEC:SP:00684,1,"Bessières",43.563508,1.206362,-1,0,AEC:SA:00689,Europe/Paris,0,AEC, +AEC:SP:00685,1,"Bordeneuve",43.565689,1.195738,-1,0,AEC:SA:00686,Europe/Paris,0,AEC, +AEC:SP:00686,1,"Bordeneuve",43.565569,1.196391,-1,0,AEC:SA:00686,Europe/Paris,0,AEC, +AEC:SP:00687,1,"Genets 1",43.568117,1.200107,-1,0,AEC:SA:00688,Europe/Paris,2,AEC, +AEC:SP:00688,1,"Genets 1",43.568097,1.20061,-1,0,AEC:SA:00688,Europe/Paris,2,AEC, +AEC:SP:00689,1,"La bourdette",43.563626,1.206363,-1,0,AEC:SA:00689,Europe/Paris,0,AEC, +AEC:SP:00690,1,"La Futière",43.568341,1.230439,-1,0,AEC:SA:01079,Europe/Paris,0,AEC, +AEC:SP:00691,1,"Lalanne",43.544965,1.190586,-1,0,AEC:SA:00692,Europe/Paris,0,AEC, +AEC:SP:00692,1,"Lalanne",43.545259,1.19005,-1,0,AEC:SA:00692,Europe/Paris,0,AEC, +AEC:SP:00693,1,"L'Apothicaire",43.569163,1.242815,-1,0,AEC:SA:00861,Europe/Paris,0,AEC, +AEC:SP:00694,1,"Las Crabères",43.554661,1.191917,-1,0,AEC:SA:00695,Europe/Paris,0,AEC, +AEC:SP:00695,1,"Lascrabères",43.554563,1.191667,-1,0,AEC:SA:00695,Europe/Paris,0,AEC, +AEC:SP:00696,1,"Mairie",43.552862,1.191227,-1,0,AEC:SA:00697,Europe/Paris,2,AEC, +AEC:SP:00697,1,"Mairie",43.552785,1.191364,-1,0,AEC:SA:00697,Europe/Paris,2,AEC, +AEC:SP:00698,1,"Pascau",43.569144,1.233015,-1,0,AEC:SA:00699,Europe/Paris,0,AEC, +AEC:SP:00699,1,"Pascau",43.569231,1.232971,-1,0,AEC:SA:00699,Europe/Paris,0,AEC, +AEC:SP:00700,1,"08-mai-45",43.557704,1.192927,-1,0,AEC:SA:00701,Europe/Paris,0,AEC, +AEC:SP:00701,1,"08-mai-45",43.557652,1.193168,-1,0,AEC:SA:00701,Europe/Paris,0,AEC, +AEC:SP:00702,1,"Mairie",42.872112,0.73617,-1,0,AEC:SA:00703,Europe/Paris,0,AEC, +AEC:SP:00703,1,"Mairie",42.872362,0.736625,-1,0,AEC:SA:00703,Europe/Paris,0,AEC, +AEC:SP:00704,1,"Borde Haute",43.507439,1.606304,-1,0,AEC:SA:00705,Europe/Paris,0,AEC, +AEC:SP:00705,1,"Borde Haute",43.50764,1.606233,-1,0,AEC:SA:00705,Europe/Paris,0,AEC, +AEC:SP:00706,1,"Centre",43.503104,1.614778,-1,0,AEC:SA:00707,Europe/Paris,0,AEC, +AEC:SP:00707,1,"Centre",43.503217,1.614851,-1,0,AEC:SA:00707,Europe/Paris,0,AEC, +AEC:SP:00708,1,"Cimetière Saint Pierre",43.499252,1.622086,-1,0,AEC:SA:00709,Europe/Paris,0,AEC, +AEC:SP:00709,1,"Cimetière Saint-Pierre",43.499175,1.621942,-1,0,AEC:SA:00709,Europe/Paris,0,AEC, +AEC:SP:00710,1,"La Douce",43.490895,1.642448,-1,0,AEC:SA:00711,Europe/Paris,0,AEC, +AEC:SP:00711,1,"La Douce",43.491075,1.642357,-1,0,AEC:SA:00711,Europe/Paris,0,AEC, +AEC:SP:00712,1,"Bicinis",43.504429,1.612502,-1,0,AEC:SA:00713,Europe/Paris,2,AEC, +AEC:SP:00713,1,"Le Paradis",43.504227,1.612592,-1,0,AEC:SA:00713,Europe/Paris,2,AEC, +AEC:SP:00714,1,"Tiffaut",43.494616,1.632967,-1,0,AEC:SA:00715,Europe/Paris,0,AEC, +AEC:SP:00715,1,"Tiffaut",43.494893,1.632561,-1,0,AEC:SA:00715,Europe/Paris,0,AEC, +AEC:SP:00716,1,"Le Moulin",43.581727,1.751372,-1,0,AEC:SA:00717,Europe/Paris,0,AEC, +AEC:SP:00717,1,"Le Moulin",43.581604,1.751408,-1,0,AEC:SA:00717,Europe/Paris,0,AEC, +AEC:SP:00718,1,"Monument aux morts",42.952013,0.648416,-1,0,AEC:SA:00719,Europe/Paris,0,AEC, +AEC:SP:00719,1,"Monument aux morts",42.951924,0.648755,-1,0,AEC:SA:00719,Europe/Paris,0,AEC, +AEC:SP:00720,1,"Campardon",42.965043,0.660098,-1,0,AEC:SA:00721,Europe/Paris,2,AEC, +AEC:SP:00721,1,"Campardon",42.965095,0.660589,-1,0,AEC:SA:00721,Europe/Paris,2,AEC, +AEC:SP:00722,1,"Gendarmerie",43.832713,1.391605,-1,0,AEC:SA:00723,Europe/Paris,0,AEC, +AEC:SP:00723,1,"Gendarmerie",43.832908,1.391643,-1,0,AEC:SA:00723,Europe/Paris,0,AEC, +AEC:SP:00724,1,"Les 4 chemins",43.822788,1.396829,-1,0,AEC:SA:00725,Europe/Paris,0,AEC, +AEC:SP:00725,1,"Les 4 chemins",43.823251,1.396714,-1,0,AEC:SA:00725,Europe/Paris,0,AEC, +AEC:SP:00726,1,"Lycée",43.834462,1.40079,-1,0,AEC:SA:00727,Europe/Paris,0,AEC, +AEC:SP:00727,1,"Lycée",43.8344,1.402186,-1,0,AEC:SA:00727,Europe/Paris,0,AEC, +AEC:SP:00728,1,"Mairie",43.840225,1.3889,-1,0,AEC:SA:00729,Europe/Paris,0,AEC, +AEC:SP:00729,1,"Mairie",43.840024,1.389092,-1,0,AEC:SA:00729,Europe/Paris,2,AEC, +AEC:SP:00730,1,"Parking Lycée",43.834796,1.402261,-1,0,AEC:SA:00730,Europe/Paris,2,AEC, +AEC:SP:00731,1,"Poste",43.83875,1.392294,-1,0,AEC:SA:00732,Europe/Paris,0,AEC, +AEC:SP:00732,1,"Poste",43.838823,1.392446,-1,0,AEC:SA:00732,Europe/Paris,0,AEC, +AEC:SP:00733,1,"St Roch",43.838316,1.388611,-1,0,AEC:SA:00734,Europe/Paris,0,AEC, +AEC:SP:00734,1,"St Roch",43.838367,1.388743,-1,0,AEC:SA:00734,Europe/Paris,0,AEC, +AEC:SP:00737,1,"Mairie",43.254047,1.470978,-1,0,AEC:SA:00737,Europe/Paris,2,AEC, +AEC:SP:00738,1,"RN125",42.990133,0.625058,-1,0,AEC:SA:00739,Europe/Paris,0,AEC, +AEC:SP:00739,1,"RN125",42.990071,0.624865,-1,0,AEC:SA:00739,Europe/Paris,0,AEC, +AEC:SP:00740,1,"La Vierge",43.39196,1.684603,-1,0,AEC:SA:00741,Europe/Paris,0,AEC, +AEC:SP:00741,1,"La Vierge",43.391827,1.684704,-1,0,AEC:SA:00741,Europe/Paris,0,AEC, +AEC:SP:00742,1,"Laval",43.399428,1.676202,-1,0,AEC:SA:00743,Europe/Paris,0,AEC, +AEC:SP:00743,1,"Laval",43.39925,1.676738,-1,0,AEC:SA:00743,Europe/Paris,0,AEC, +AEC:SP:00750,1,"Poids Public",43.390563,1.684717,-1,0,AEC:SA:00751,Europe/Paris,0,AEC, +AEC:SP:00751,1,"Poids Public",43.390676,1.684596,-1,0,AEC:SA:00751,Europe/Paris,0,AEC, +AEC:SP:00752,1,"Eglise",43.756343,1.467008,-1,0,AEC:SA:00753,Europe/Paris,0,AEC, +AEC:SP:00753,1,"Eglise",43.756223,1.467069,-1,0,AEC:SA:00753,Europe/Paris,0,AEC, +AEC:SP:00754,1,"Les Bordes",43.76494,1.455855,-1,0,AEC:SA:00755,Europe/Paris,2,AEC, +AEC:SP:00755,1,"Les Bordes",43.764611,1.456348,-1,0,AEC:SA:00755,Europe/Paris,2,AEC, +AEC:SP:00756,1,"Moussiagues",43.748777,1.470384,-1,0,AEC:SA:00757,Europe/Paris,0,AEC, +AEC:SP:00757,1,"Moussiagues",43.74891,1.470371,-1,0,AEC:SA:00757,Europe/Paris,0,AEC, +AEC:SP:00758,1,"Cité",43.703664,1.560683,-1,0,AEC:SA:00759,Europe/Paris,2,AEC, +AEC:SP:00759,1,"Cité",43.703998,1.560978,-1,0,AEC:SA:00759,Europe/Paris,2,AEC, +AEC:SP:00760,1,"Eglise",43.711642,1.560748,-1,0,AEC:SA:00761,Europe/Paris,2,AEC, +AEC:SP:00761,1,"Eglise",43.711559,1.560927,-1,0,AEC:SA:00761,Europe/Paris,2,AEC, +AEC:SP:00762,1,"Montvert",43.695045,1.552772,-1,0,AEC:SA:00763,Europe/Paris,0,AEC, +AEC:SP:00763,1,"Montvert",43.694911,1.553153,-1,0,AEC:SA:00763,Europe/Paris,0,AEC, +AEC:SP:00766,1,"Mairie",43.61028,1.641953,-1,0,AEC:SA:00766,Europe/Paris,0,AEC, +AEC:SP:00767,1,"Village",43.613735,1.63168,-1,0,AEC:SA:14834,Europe/Paris,0,AEC, +AEC:SP:00769,1,"Mairie",43.735181,1.591071,-1,0,AEC:SA:00770,Europe/Paris,2,AEC, +AEC:SP:00770,1,"Mairie",43.735098,1.591136,-1,0,AEC:SA:00770,Europe/Paris,2,AEC, +AEC:SP:00771,1,"Mairie",42.9996,0.672591,-1,0,AEC:SA:00772,Europe/Paris,0,AEC, +AEC:SP:00772,1,"Mairie",42.999657,0.672904,-1,0,AEC:SA:00772,Europe/Paris,0,AEC, +AEC:SP:00773,1,"Labesse",43.232934,1.156787,-1,0,AEC:SA:00774,Europe/Paris,0,AEC, +AEC:SP:00774,1,"Labesse",43.232898,1.156915,-1,0,AEC:SA:00774,Europe/Paris,0,AEC, +AEC:SP:00775,1,"Lavoir",43.216652,1.131491,-1,0,AEC:SA:00776,Europe/Paris,0,AEC, +AEC:SP:00776,1,"Lavoir",43.21679,1.131387,-1,0,AEC:SA:00776,Europe/Paris,0,AEC, +AEC:SP:00777,1,"Le Plan d'Eau",43.208617,1.120196,-1,0,AEC:SA:00777,Europe/Paris,0,AEC, +AEC:SP:00778,1,"Calvaire",43.305103,1.690809,-1,0,AEC:SA:00778,Europe/Paris,0,AEC, +AEC:SP:00779,1,"Antian",43.072416,0.585296,-1,0,AEC:SA:00780,Europe/Paris,0,AEC, +AEC:SP:00780,1,"Antian",43.072519,0.58584,-1,0,AEC:SA:00780,Europe/Paris,0,AEC, +AEC:SP:00781,1,"Croix du Bazert",43.060172,0.591272,-1,0,SIN:SA:OCE87612358,Europe/Paris,2,AEC, +AEC:SP:00782,1,"Croix du Bazert",43.060487,0.591077,-1,0,SIN:SA:OCE87612358,Europe/Paris,2,AEC, +AEC:SP:00783,1,"Gare",43.078258,0.573735,-1,0,SIN:SA:OCE87611152,Europe/Paris,0,AEC, +AEC:SP:00784,1,"Lycée",43.077083,0.584369,-1,0,AEC:SA:00785,Europe/Paris,0,AEC, +AEC:SP:00785,1,"Lycée",43.076334,0.584329,-1,0,AEC:SA:00785,Europe/Paris,0,AEC, +AEC:SP:00786,1,"Mairie",43.077783,0.577144,-1,0,AEC:SA:00787,Europe/Paris,0,AEC, +AEC:SP:00787,1,"Mairie",43.077505,0.576999,-1,0,AEC:SA:00787,Europe/Paris,0,AEC, +AEC:SP:00788,1,"Poste",43.081165,0.574473,-1,0,AEC:SA:00789,Europe/Paris,2,AEC, +AEC:SP:00789,1,"Poste",43.081006,0.575111,-1,0,AEC:SA:00789,Europe/Paris,2,AEC, +AEC:SP:00790,1,"Eglise",43.681631,1.584172,-1,0,AEC:SA:00791,Europe/Paris,2,AEC, +AEC:SP:00791,1,"Eglise",43.681741,1.584373,-1,0,AEC:SA:00791,Europe/Paris,2,AEC, +AEC:SP:00792,1,"Giratoire RD7",43.321081,1.123704,-1,0,AEC:SA:00793,Europe/Paris,0,AEC, +AEC:SP:00793,1,"Giratoire RD7",43.321531,1.12388,-1,0,AEC:SA:00793,Europe/Paris,0,AEC, +AEC:SP:00794,1,"Mairie",43.322077,1.112322,-1,0,AEC:SA:00794,Europe/Paris,0,AEC, +AEC:SP:00795,1,"Pilot",43.322227,1.124383,-1,0,AEC:SA:00796,Europe/Paris,0,AEC, +AEC:SP:00796,1,"Pilot",43.322074,1.124519,-1,0,AEC:SA:00796,Europe/Paris,0,AEC, +AEC:SP:00797,1,"Barry",43.71332,1.430884,-1,0,AEC:SA:00800,Europe/Paris,0,AEC, +AEC:SP:00798,1,"Garenne",43.716458,1.432536,-1,0,AEC:SA:00799,Europe/Paris,0,AEC, +AEC:SP:00799,1,"Garenne",43.716241,1.432842,-1,0,AEC:SA:00799,Europe/Paris,0,AEC, +AEC:SP:00800,1,"Le Barry",43.713509,1.431256,-1,0,AEC:SA:00800,Europe/Paris,0,AEC, +AEC:SP:00801,1,"Poste",43.722118,1.431332,-1,0,AEC:SA:00802,Europe/Paris,0,AEC, +AEC:SP:00802,1,"Poste",43.722163,1.431576,-1,0,AEC:SA:00802,Europe/Paris,0,AEC, +AEC:SP:00803,1,"Rabet",43.315893,1.455286,-1,0,AEC:SA:00804,Europe/Paris,2,AEC, +AEC:SP:00804,1,"Rabet",43.316223,1.455041,-1,0,AEC:SA:00804,Europe/Paris,2,AEC, +AEC:SP:00806,1,"Bagnols",43.769079,1.333212,-1,0,AEC:SA:00807,Europe/Paris,0,AEC, +AEC:SP:00807,1,"Bagnols",43.769443,1.334074,-1,0,AEC:SA:00807,Europe/Paris,0,AEC, +AEC:SP:00808,1,"Bains Romains",43.763091,1.33102,-1,0,AEC:SA:00809,Europe/Paris,0,AEC, +AEC:SP:00809,1,"Bains Romains",43.762992,1.331136,-1,0,AEC:SA:00809,Europe/Paris,0,AEC, +AEC:SP:00814,1,"Mairie",43.769853,1.29517,-1,0,AEC:SA:00815,Europe/Paris,0,AEC, +AEC:SP:00815,1,"Mairie",43.768759,1.295556,-1,0,AEC:SA:00815,Europe/Paris,0,AEC, +AEC:SP:00816,1,"Maison de Retraite",43.770339,1.290708,-1,0,AEC:SA:00817,Europe/Paris,2,AEC, +AEC:SP:00817,1,"Maison de Retraite",43.77026,1.290473,-1,0,AEC:SA:00817,Europe/Paris,2,AEC, +AEC:SP:00818,1,"Mélican",43.765817,1.297341,-1,0,AEC:SA:00819,Europe/Paris,2,AEC, +AEC:SP:00819,1,"Mélican",43.765989,1.297934,-1,0,AEC:SA:00819,Europe/Paris,2,AEC, +AEC:SP:00820,1,"Picalou",43.755893,1.213219,-1,0,AEC:SA:00820,Europe/Paris,2,AEC, +AEC:SP:00821,1,"Proxima",43.75628,1.302197,-1,0,AEC:SA:00822,Europe/Paris,0,AEC, +AEC:SP:00822,1,"Proxima",43.755654,1.302783,-1,0,AEC:SA:00822,Europe/Paris,0,AEC, +AEC:SP:00823,1,"Quai de Garonne",43.771633,1.296748,-1,0,AEC:SA:00823,Europe/Paris,2,AEC, +AEC:SP:00824,1,"Rouanel",43.760256,1.331021,-1,0,AEC:SA:00825,Europe/Paris,0,AEC, +AEC:SP:00825,1,"Rouanel",43.760257,1.331154,-1,0,AEC:SA:00825,Europe/Paris,0,AEC, +AEC:SP:00826,1,"Saint-Caprais",43.758339,1.331772,-1,0,AEC:SA:00827,Europe/Paris,0,AEC, +AEC:SP:00827,1,"Saint-Caprais",43.758495,1.331868,-1,0,AEC:SA:00827,Europe/Paris,0,AEC, +AEC:SP:00828,1,"Saint-Sulpice",43.760127,1.300031,-1,0,AEC:SA:00829,Europe/Paris,0,AEC, +AEC:SP:00829,1,"Saint-Sulpice",43.760933,1.300166,-1,0,AEC:SA:00829,Europe/Paris,0,AEC, +AEC:SP:00831,1,"Baget",43.401049,1.449946,-1,0,AEC:SA:00832,Europe/Paris,0,AEC, +AEC:SP:00832,1,"Baget",43.401007,1.450138,-1,0,AEC:SA:00832,Europe/Paris,0,AEC, +AEC:SP:00833,1,"Gaillard-Tournié",43.39051,1.457223,-1,0,AEC:SA:00834,Europe/Paris,0,AEC, +AEC:SP:00834,1,"Gaillard-Tournié",43.390937,1.457168,-1,0,AEC:SA:00834,Europe/Paris,0,AEC, +AEC:SP:00835,1,"Mairie",43.404225,1.44876,-1,0,AEC:SA:00838,Europe/Paris,0,AEC, +AEC:SP:00836,1,"Mazérat",43.394696,1.454365,-1,0,AEC:SA:00837,Europe/Paris,0,AEC, +AEC:SP:00837,1,"Mazérat",43.394502,1.454283,-1,0,AEC:SA:00837,Europe/Paris,0,AEC, +AEC:SP:00838,1,"Poste",43.405399,1.447087,-1,0,AEC:SA:00838,Europe/Paris,0,AEC, +AEC:SP:00839,1,"La Halle",43.827345,1.296662,-1,0,AEC:SA:00840,Europe/Paris,0,AEC, +AEC:SP:00840,1,"La Halle",43.826816,1.297463,-1,0,AEC:SA:00840,Europe/Paris,0,AEC, +AEC:SP:00841,1,"Artigueplan",42.884948,0.616485,-1,0,AEC:SA:00842,Europe/Paris,2,AEC, +AEC:SP:00842,1,"Artigueplan",42.884856,0.616915,-1,0,AEC:SA:00842,Europe/Paris,2,AEC, +AEC:SP:00843,1,"Eglise",43.015521,0.753582,-1,0,AEC:SA:00844,Europe/Paris,0,AEC, +AEC:SP:00844,1,"Eglise",43.015689,0.753931,-1,0,AEC:SA:00844,Europe/Paris,0,AEC, +AEC:SP:00845,1,"Eglise",42.978228,0.759916,-1,0,AEC:SA:00846,Europe/Paris,0,AEC, +AEC:SP:00846,1,"Eglise",42.978425,0.75982,-1,0,AEC:SA:00846,Europe/Paris,0,AEC, +AEC:SP:00848,1,"La Rouyasse",43.80586,1.545896,-1,0,AEC:SA:00849,Europe/Paris,0,AEC, +AEC:SP:00849,1,"La Rouyasse",43.806129,1.545962,-1,0,AEC:SA:00849,Europe/Paris,0,AEC, +AEC:SP:00850,1,"Les 5 Chemins",43.815372,1.538233,-1,0,AEC:SA:00851,Europe/Paris,2,AEC, +AEC:SP:00851,1,"Les 5 Chemins",43.815427,1.53828,-1,0,AEC:SA:00851,Europe/Paris,2,AEC, +AEC:SP:00852,1,"Mairie",43.81156,1.543869,-1,0,AEC:SA:00853,Europe/Paris,0,AEC, +AEC:SP:00853,1,"Mairie",43.811204,1.545011,-1,0,AEC:SA:00853,Europe/Paris,0,AEC, +AEC:SP:00856,1,"Grand Bois 3",43.574361,1.253704,-1,0,AEC:SA:00863,Europe/Paris,0,AEC, +AEC:SP:00861,1,"L'Apothicaire",43.569348,1.241466,-1,0,AEC:SA:00861,Europe/Paris,0,AEC, +AEC:SP:00862,1,"Le Grand Bois 3",43.575674,1.255978,-1,0,AEC:SA:00863,Europe/Paris,0,AEC, +AEC:SP:00863,1,"Le Grand Bois 3",43.574267,1.25393,-1,0,AEC:SA:00863,Europe/Paris,0,AEC, +AEC:SP:00864,1,"Le Grand Bois 3",43.575564,1.256558,-1,0,AEC:SA:00863,Europe/Paris,0,AEC, +AEC:SP:00869,1,"Mairie",43.577514,1.272332,-1,0,AEC:SA:00870,Europe/Paris,0,AEC, +AEC:SP:00871,1,"Stade",43.576603,1.261081,-1,0,AEC:SA:00872,Europe/Paris,0,AEC, +AEC:SP:00872,1,"Stade",43.576443,1.261387,-1,0,AEC:SA:00872,Europe/Paris,0,AEC, +AEC:SP:00873,1,"Taure",43.582961,1.276627,-1,0,AEC:SA:00874,Europe/Paris,0,AEC, +AEC:SP:00874,1,"Taure",43.582982,1.277125,-1,0,AEC:SA:00874,Europe/Paris,0,AEC, +AEC:SP:00875,1,"Centre",43.081008,0.670524,-1,0,AEC:SA:00876,Europe/Paris,2,AEC, +AEC:SP:00876,1,"Centre",43.080775,0.670595,-1,0,AEC:SA:00876,Europe/Paris,2,AEC, +AEC:SP:00877,1,"Pl.Massenet",43.08099,0.67203,-1,0,AEC:SA:14736,Europe/Paris,0,AEC, +AEC:SP:00881,1,"Souc",43.084051,0.681038,-1,0,AEC:SA:00882,Europe/Paris,0,AEC, +AEC:SP:00882,1,"Souc",43.08374,0.681046,-1,0,AEC:SA:00882,Europe/Paris,0,AEC, +AEC:SP:00883,1,"Cailhabat",43.461359,1.397144,-1,0,AEC:SA:00884,Europe/Paris,2,AEC, +AEC:SP:00884,1,"Cailhabat",43.461282,1.397231,-1,0,AEC:SA:00884,Europe/Paris,2,AEC, +AEC:SP:00885,1,"Croix du Mitrac",43.450571,1.401064,-1,0,AEC:SA:00886,Europe/Paris,0,AEC, +AEC:SP:00886,1,"Croix du Mitrac",43.450434,1.401176,-1,0,AEC:SA:00886,Europe/Paris,0,AEC, +AEC:SP:00887,1,"Eglise",43.452185,1.399038,-1,0,AEC:SA:00888,Europe/Paris,0,AEC, +AEC:SP:00888,1,"Eglise",43.452151,1.399287,-1,0,AEC:SA:00888,Europe/Paris,0,AEC, +AEC:SP:00889,1,"La Riverotte",43.456919,1.415744,-1,0,AEC:SA:00889,Europe/Paris,0,AEC, +AEC:SP:00890,1,"La Ruque",43.467776,1.397727,-1,0,AEC:SA:00891,Europe/Paris,0,AEC, +AEC:SP:00891,1,"La Ruque",43.468415,1.39795,-1,0,AEC:SA:00891,Europe/Paris,0,AEC, +AEC:SP:00892,1,"Le Canton",43.454135,1.394534,-1,0,AEC:SA:00893,Europe/Paris,2,AEC, +AEC:SP:00893,1,"Le Canton",43.454583,1.39463,-1,0,AEC:SA:00893,Europe/Paris,2,AEC, +AEC:SP:00894,1,"Ponchou",43.457205,1.395811,-1,0,AEC:SA:00895,Europe/Paris,2,AEC, +AEC:SP:00895,1,"Ponchou",43.45682,1.395842,-1,0,AEC:SA:00895,Europe/Paris,2,AEC, +AEC:SP:00896,1,"Prouzet",43.444521,1.384278,-1,0,AEC:SA:00897,Europe/Paris,0,AEC, +AEC:SP:00897,1,"Prouzet",43.444971,1.384861,-1,0,AEC:SA:00897,Europe/Paris,0,AEC, +AEC:SP:00898,1,"Ritou",43.445266,1.398611,-1,0,AEC:SA:00899,Europe/Paris,0,AEC, +AEC:SP:00899,1,"Ritou",43.445509,1.399335,-1,0,AEC:SA:00899,Europe/Paris,0,AEC, +AEC:SP:00900,1,"Le Pas du Merle",43.484318,1.659802,-1,0,AEC:SA:00901,Europe/Paris,0,AEC, +AEC:SP:00901,1,"Le Pas du Merle",43.48421,1.660504,-1,0,AEC:SA:00901,Europe/Paris,0,AEC, +AEC:SP:00902,1,"Mairie",43.482085,1.665926,-1,0,AEC:SA:00903,Europe/Paris,0,AEC, +AEC:SP:00903,1,"Mairie",43.482065,1.666296,-1,0,AEC:SA:00903,Europe/Paris,0,AEC, +AEC:SP:00904,1,"Oiseaux",43.482977,1.66345,-1,0,AEC:SA:00905,Europe/Paris,0,AEC, +AEC:SP:00905,1,"Oiseaux",43.483273,1.662963,-1,0,AEC:SA:00905,Europe/Paris,0,AEC, +AEC:SP:00906,1,"Bidot",43.356032,1.088778,-1,0,AEC:SA:00907,Europe/Paris,0,AEC, +AEC:SP:00907,1,"Bidot",43.355646,1.087992,-1,0,AEC:SA:00907,Europe/Paris,0,AEC, +AEC:SP:00908,1,"Eglise",43.348741,1.121932,-1,0,AEC:SA:00908,Europe/Paris,0,AEC, +AEC:SP:00909,1,"Le Moulin",43.361838,1.116641,-1,0,AEC:SA:00910,Europe/Paris,0,AEC, +AEC:SP:00910,1,"Le Moulin",43.36178,1.116947,-1,0,AEC:SA:00910,Europe/Paris,0,AEC, +AEC:SP:00911,1,"Cité",43.734883,1.476515,-1,0,AEC:SA:00912,Europe/Paris,0,AEC, +AEC:SP:00912,1,"Cité",43.734815,1.476647,-1,0,AEC:SA:00912,Europe/Paris,0,AEC, +AEC:SP:00913,1,"Delphy",43.735175,1.459598,-1,0,AEC:SA:00920,Europe/Paris,0,AEC, +AEC:SP:00914,1,"Eglise",43.739313,1.471227,-1,0,AEC:SA:00915,Europe/Paris,0,AEC, +AEC:SP:00915,1,"Eglise",43.739311,1.471325,-1,0,AEC:SA:00915,Europe/Paris,0,AEC, +AEC:SP:00916,1,"Le Not",43.737017,1.476085,-1,0,AEC:SA:00917,Europe/Paris,0,AEC, +AEC:SP:00917,1,"Le Not",43.737153,1.476215,-1,0,AEC:SA:00917,Europe/Paris,0,AEC, +AEC:SP:00918,1,"L'Enclos",43.736724,1.468506,-1,0,AEC:SA:00919,Europe/Paris,0,AEC, +AEC:SP:00919,1,"L'Enclos",43.736853,1.468224,-1,0,AEC:SA:00919,Europe/Paris,0,AEC, +AEC:SP:00920,1,"Maurel",43.734866,1.457927,-1,0,AEC:SA:00920,Europe/Paris,0,AEC, +AEC:SP:00921,1,"Route de Gargas",43.741098,1.469222,-1,0,AEC:SA:00922,Europe/Paris,0,AEC, +AEC:SP:00922,1,"Route de Gargas",43.741079,1.469394,-1,0,AEC:SA:00922,Europe/Paris,0,AEC, +AEC:SP:00923,1,"Banque",43.462833,1.247323,-1,0,AEC:SA:00924,Europe/Paris,0,AEC, +AEC:SP:00924,1,"Banque",43.462646,1.247386,-1,0,AEC:SA:00924,Europe/Paris,0,AEC, +AEC:SP:00925,1,"La Carrère",43.466276,1.250288,-1,0,AEC:SA:00926,Europe/Paris,0,AEC, +AEC:SP:00926,1,"La Carrère",43.466387,1.250611,-1,0,AEC:SA:00926,Europe/Paris,0,AEC, +AEC:SP:00927,1,"Mairie",43.460372,1.245201,-1,0,AEC:SA:00928,Europe/Paris,0,AEC, +AEC:SP:00928,1,"Mairie",43.460559,1.245507,-1,0,AEC:SA:00928,Europe/Paris,0,AEC, +AEC:SP:00929,1,"Marcus",43.45499,1.240884,-1,0,AEC:SA:00930,Europe/Paris,0,AEC, +AEC:SP:00930,1,"Marcus",43.455387,1.241832,-1,0,AEC:SA:00930,Europe/Paris,0,AEC, +AEC:SP:00931,1,"RD 27",43.264908,1.521139,-1,0,AEC:SA:14883,Europe/Paris,0,AEC, +AEC:SP:00932,1,"Chantecaille",43.528177,1.537679,-1,0,AEC:SA:00933,Europe/Paris,0,AEC, +AEC:SP:00933,1,"Chantecaille",43.52834,1.537785,-1,0,AEC:SA:00933,Europe/Paris,0,AEC, +AEC:SP:00934,1,"Chemin Vert",43.540386,1.523619,-1,0,AEC:SA:00935,Europe/Paris,2,AEC, +AEC:SP:00935,1,"Chêne Vert",43.540274,1.523349,-1,0,AEC:SA:00935,Europe/Paris,2,AEC, +AEC:SP:00936,1,"La Grande Borde",43.554569,1.506062,-1,0,AEC:SA:00937,Europe/Paris,2,AEC, +AEC:SP:00937,1,"La Grande Borde",43.554168,1.506912,-1,0,AEC:SA:00937,Europe/Paris,2,AEC, +AEC:SP:00938,1,"Lalande (Innopole)",43.548722,1.513285,-1,0,AEC:SA:00939,Europe/Paris,2,AEC, +AEC:SP:00939,1,"Lalande (Innopole)",43.548997,1.513118,-1,0,AEC:SA:00939,Europe/Paris,2,AEC, +AEC:SP:00940,1,"Payssière",43.533739,1.532212,-1,0,AEC:SA:00941,Europe/Paris,2,AEC, +AEC:SP:00941,1,"Payssière",43.533196,1.532941,-1,0,AEC:SA:00941,Europe/Paris,2,AEC, +AEC:SP:00942,1,"Eglise",43.038416,0.592406,-1,0,AEC:SA:00943,Europe/Paris,0,AEC, +AEC:SP:00943,1,"Eglise",43.038831,0.592899,-1,0,AEC:SA:00943,Europe/Paris,0,AEC, +AEC:SP:00944,1,"Moulin",43.036047,0.592993,-1,0,AEC:SA:00945,Europe/Paris,0,AEC, +AEC:SP:00945,1,"Moulin",43.035686,0.593433,-1,0,AEC:SA:00945,Europe/Paris,0,AEC, +AEC:SP:00946,1,"Poste",43.041744,0.592347,-1,0,AEC:SA:00947,Europe/Paris,0,AEC, +AEC:SP:00947,1,"Poste",43.042039,0.592612,-1,0,AEC:SA:00947,Europe/Paris,2,AEC, +AEC:SP:00952,1,"Mairie",43.299854,1.16358,-1,0,AEC:SA:00953,Europe/Paris,0,AEC, +AEC:SP:00953,1,"Mairie",43.299356,1.162822,-1,0,AEC:SA:00953,Europe/Paris,0,AEC, +AEC:SP:00954,1,"Notre Dame",43.301823,1.167367,-1,0,AEC:SA:00955,Europe/Paris,0,AEC, +AEC:SP:00955,1,"Notre Dame",43.301829,1.167843,-1,0,AEC:SA:00955,Europe/Paris,0,AEC, +AEC:SP:00956,1,"Village",43.345142,1.713741,-1,0,AEC:SA:00956,Europe/Paris,2,AEC, +AEC:SP:00957,1,"Balsa",43.404033,1.394496,-1,0,AEC:SA:00958,Europe/Paris,0,AEC, +AEC:SP:00958,1,"Balsa",43.403668,1.395075,-1,0,AEC:SA:00958,Europe/Paris,0,AEC, +AEC:SP:00959,1,"Cimetière",43.409815,1.390893,-1,0,AEC:SA:00960,Europe/Paris,0,AEC, +AEC:SP:00960,1,"Cimetière",43.408998,1.391663,-1,0,AEC:SA:00960,Europe/Paris,0,AEC, +AEC:SP:00961,1,"Moulin d'Augé",43.420749,1.374976,-1,0,AEC:SA:00611,Europe/Paris,0,AEC, +AEC:SP:00962,1,"Puntis",43.438869,1.379803,-1,0,AEC:SA:00962,Europe/Paris,0,AEC, +AEC:SP:00963,1,"Ravelins",43.413198,1.388365,-1,0,AEC:SA:00964,Europe/Paris,2,AEC, +AEC:SP:00964,1,"Ravelins",43.412977,1.388603,-1,0,AEC:SA:00964,Europe/Paris,2,AEC, +AEC:SP:00965,1,"Berny",43.345015,1.430109,-1,0,AEC:SA:00966,Europe/Paris,2,AEC, +AEC:SP:00966,1,"Berny",43.345354,1.430111,-1,0,AEC:SA:00966,Europe/Paris,2,AEC, +AEC:SP:00967,1,"Château Lamothe",43.499042,1.24661,-1,0,AEC:SA:00968,Europe/Paris,0,AEC, +AEC:SP:00968,1,"Château Lamothe",43.499139,1.246766,-1,0,AEC:SA:00968,Europe/Paris,0,AEC, +AEC:SP:00969,1,"Ecoles",43.484124,1.243156,-1,0,AEC:SA:00970,Europe/Paris,0,AEC, +AEC:SP:00970,1,"Ecoles",43.483352,1.2429,-1,0,AEC:SA:00970,Europe/Paris,0,AEC, +AEC:SP:00971,1,"Fougarouse",43.492638,1.245651,-1,0,AEC:SA:00972,Europe/Paris,0,AEC, +AEC:SP:00972,1,"Fougarouse",43.492614,1.245827,-1,0,AEC:SA:00972,Europe/Paris,0,AEC, +AEC:SP:00973,1,"Le Petit Pierre",43.488878,1.246497,-1,0,AEC:SA:00974,Europe/Paris,0,AEC, +AEC:SP:00974,1,"Le Petit Pierre",43.488719,1.246634,-1,0,AEC:SA:00974,Europe/Paris,0,AEC, +AEC:SP:00975,1,"Moundas",43.47738,1.259398,-1,0,AEC:SA:00976,Europe/Paris,0,AEC, +AEC:SP:00976,1,"Moundas",43.477261,1.257917,-1,0,AEC:SA:00976,Europe/Paris,0,AEC, +AEC:SP:00977,1,"Rue de la paix",43.48337,1.244031,-1,0,AEC:SA:00978,Europe/Paris,2,AEC, +AEC:SP:00978,1,"Rue de la paix",43.483424,1.243768,-1,0,AEC:SA:00978,Europe/Paris,2,AEC, +AEC:SP:00979,1,"Centre Commercial",43.561321,1.654986,-1,0,AEC:SA:00980,Europe/Paris,0,AEC, +AEC:SP:00980,1,"Centre Commercial",43.5613,1.655429,-1,0,AEC:SA:00980,Europe/Paris,0,AEC, +AEC:SP:00981,1,"Collège",43.564439,1.639562,-1,0,AEC:SA:01836,Europe/Paris,0,AEC, +AEC:SP:00982,1,"La Couronne",43.561165,1.660034,-1,0,AEC:SA:00983,Europe/Paris,0,AEC, +AEC:SP:00983,1,"La Couronne",43.5614,1.659911,-1,0,AEC:SA:00983,Europe/Paris,0,AEC, +AEC:SP:00984,1,"Les Avignous",43.555388,1.673444,-1,0,AEC:SA:00985,Europe/Paris,0,AEC, +AEC:SP:00985,1,"Les Avignous",43.555547,1.673497,-1,0,AEC:SA:00985,Europe/Paris,0,AEC, +AEC:SP:00986,1,"Les Perrots",43.562726,1.646872,-1,0,AEC:SA:00987,Europe/Paris,0,AEC, +AEC:SP:00987,1,"Les Perrots",43.562776,1.64767,-1,0,AEC:SA:00987,Europe/Paris,0,AEC, +AEC:SP:00988,1,"La Hitte",43.745716,1.03401,-1,0,AEC:SA:00989,Europe/Paris,2,AEC, +AEC:SP:00989,1,"La Hitte",43.745482,1.034308,-1,0,AEC:SA:00989,Europe/Paris,2,AEC, +AEC:SP:00990,1,"Pradaut",43.740386,1.02535,-1,0,AEC:SA:00991,Europe/Paris,0,AEC, +AEC:SP:00991,1,"Pradaut",43.740314,1.025808,-1,0,AEC:SA:00991,Europe/Paris,0,AEC, +AEC:SP:00992,1,"Bragnères",43.757946,1.21917,-1,0,AEC:SA:00993,Europe/Paris,0,AEC, +AEC:SP:00993,1,"Bragnères",43.757976,1.219367,-1,0,AEC:SA:00993,Europe/Paris,0,AEC, +AEC:SP:00994,1,"Cantegril",43.747673,1.220155,-1,0,AEC:SA:00995,Europe/Paris,0,AEC, +AEC:SP:00995,1,"Cantegril",43.748128,1.220242,-1,0,AEC:SA:00995,Europe/Paris,0,AEC, +AEC:SP:00996,1,"D87",43.749021,1.249525,-1,0,AEC:SA:00997,Europe/Paris,0,AEC, +AEC:SP:00997,1,"D87",43.748745,1.249669,-1,0,AEC:SA:00997,Europe/Paris,0,AEC, +AEC:SP:00998,1,"Ecole",43.738728,1.231168,-1,0,AEC:SA:00999,Europe/Paris,0,AEC, +AEC:SP:00999,1,"Ecole",43.738631,1.231403,-1,0,AEC:SA:00999,Europe/Paris,0,AEC, +AEC:SP:01000,1,"Gaussens",43.726727,1.200108,-1,0,AEC:SA:01000,Europe/Paris,2,AEC, +AEC:SP:01001,1,"Le Grand Bigné",43.734194,1.216538,-1,0,AEC:SA:01002,Europe/Paris,2,AEC, +AEC:SP:01002,1,"Le Grand Bigné",43.734366,1.216528,-1,0,AEC:SA:01002,Europe/Paris,2,AEC, +AEC:SP:01003,1,"Les Erables",43.740079,1.231548,-1,0,AEC:SA:01004,Europe/Paris,2,AEC, +AEC:SP:01004,1,"Les Erables",43.740411,1.231366,-1,0,AEC:SA:01004,Europe/Paris,2,AEC, +AEC:SP:01005,1,"Mairie-Ecoles",43.639915,1.166133,-1,0,AEC:SA:01006,Europe/Paris,0,AEC, +AEC:SP:01006,1,"Mairie-Ecoles",43.639915,1.166367,-1,0,AEC:SA:01006,Europe/Paris,0,AEC, +AEC:SP:01007,1,"Stade",43.168155,0.787247,-1,0,AEC:SA:01008,Europe/Paris,2,AEC, +AEC:SP:01008,1,"Stade",43.167922,0.787722,-1,0,AEC:SA:01008,Europe/Paris,2,AEC, +AEC:SP:01009,1,"Anciens Fossés",43.742376,1.180382,-1,0,AEC:SA:01010,Europe/Paris,0,AEC, +AEC:SP:01010,1,"Anciens Fossés",43.742411,1.180178,-1,0,AEC:SA:01010,Europe/Paris,0,AEC, +AEC:SP:01011,1,"Château",43.743587,1.181108,-1,0,AEC:SA:01012,Europe/Paris,0,AEC, +AEC:SP:01012,1,"Ecole",43.742997,1.183921,-1,0,AEC:SA:01012,Europe/Paris,0,AEC, +AEC:SP:01013,1,"Fond du Drac",43.752749,1.200637,-1,0,AEC:SA:01013,Europe/Paris,2,AEC, +AEC:SP:01014,1,"Galembrun",43.757415,1.140928,-1,0,AEC:SA:01015,Europe/Paris,0,AEC, +AEC:SP:01015,1,"Galembrun",43.757617,1.140714,-1,0,AEC:SA:01015,Europe/Paris,0,AEC, +AEC:SP:01018,1,"La Halle",43.743272,1.18107,-1,0,AEC:SA:01012,Europe/Paris,0,AEC, +AEC:SP:01021,1,"Nobles",43.670725,1.445338,-1,0,AEC:SA:01022,Europe/Paris,0,AEC, +AEC:SP:01022,1,"Nobles",43.670801,1.445575,-1,0,AEC:SA:01022,Europe/Paris,0,AEC, +AEC:SP:01023,1,"Pesquies",43.660021,1.448588,-1,0,AEC:SA:01024,Europe/Paris,0,AEC, +AEC:SP:01024,1,"Pesquies",43.66062,1.447206,-1,0,AEC:SA:01024,Europe/Paris,0,AEC, +AEC:SP:01025,1,"Clinique",43.647711,1.571774,-1,0,AEC:SA:01026,Europe/Paris,2,AEC, +AEC:SP:01026,1,"Clinique",43.647589,1.572497,-1,0,AEC:SA:01026,Europe/Paris,2,AEC, +AEC:SP:01027,1,"Grousset",43.646465,1.597439,-1,0,AEC:SA:01028,Europe/Paris,0,AEC, +AEC:SP:01028,1,"Grousset",43.646442,1.598605,-1,0,AEC:SA:01028,Europe/Paris,0,AEC, +AEC:SP:01029,1,"Lamothe",43.644902,1.604122,-1,0,AEC:SA:01030,Europe/Paris,0,AEC, +AEC:SP:01030,1,"Lamothe",43.644572,1.604253,-1,0,AEC:SA:01030,Europe/Paris,0,AEC, +AEC:SP:01031,1,"Les Laques",43.615595,1.590864,-1,0,AEC:SA:01271,Europe/Paris,0,AEC, +AEC:SP:01032,1,"St Jean",43.647376,1.586692,-1,0,AEC:SA:01033,Europe/Paris,0,AEC, +AEC:SP:01033,1,"St Jean",43.64765,1.586199,-1,0,AEC:SA:01033,Europe/Paris,0,AEC, +AEC:SP:01034,1,"Centre église",43.255629,1.118743,-1,0,AEC:SA:01035,Europe/Paris,0,AEC, +AEC:SP:01035,1,"Centre église",43.255879,1.118573,-1,0,AEC:SA:01035,Europe/Paris,0,AEC, +AEC:SP:01036,1,"Château d'eau",43.252962,1.124288,-1,0,AEC:SA:01037,Europe/Paris,0,AEC, +AEC:SP:01037,1,"Château d'eau",43.252992,1.124647,-1,0,AEC:SA:01037,Europe/Paris,0,AEC, +AEC:SP:01038,1,"Douat",43.249372,1.13522,-1,0,AEC:SA:01039,Europe/Paris,0,AEC, +AEC:SP:01039,1,"Douat",43.249205,1.135423,-1,0,AEC:SA:01039,Europe/Paris,0,AEC, +AEC:SP:01040,1,"Tachoire",43.256594,1.11654,-1,0,AEC:SA:01041,Europe/Paris,0,AEC, +AEC:SP:01041,1,"Tachoire",43.256666,1.11675,-1,0,AEC:SA:01041,Europe/Paris,0,AEC, +AEC:SP:01043,1,"Mairie",43.834241,1.5559,-1,0,AEC:SA:01044,Europe/Paris,0,AEC, +AEC:SP:01044,1,"Mairie",43.834105,1.555895,-1,0,AEC:SA:01044,Europe/Paris,0,AEC, +AEC:SP:01046,1,"Halle",43.794497,1.162216,-1,0,AEC:SA:01047,Europe/Paris,0,AEC, +AEC:SP:01047,1,"Halle",43.794616,1.162222,-1,0,AEC:SA:01047,Europe/Paris,0,AEC, +AEC:SP:01048,1,"Le Padouenc",43.791799,1.159151,-1,0,AEC:SA:01048,Europe/Paris,0,AEC, +AEC:SP:01049,1,"Chople",43.504891,1.870717,-1,0,AEC:SA:01050,Europe/Paris,0,AEC, +AEC:SP:01050,1,"Chople",43.50502,1.870756,-1,0,AEC:SA:01050,Europe/Paris,0,AEC, +AEC:SP:01051,1,"La Bartelle",43.514075,1.858445,-1,0,AEC:SA:01052,Europe/Paris,2,AEC, +AEC:SP:01052,1,"La Bartelle",43.514428,1.858433,-1,0,AEC:SA:01052,Europe/Paris,2,AEC, +AEC:SP:01053,1,"Las Barthes",43.508479,1.865334,-1,0,AEC:SA:01054,Europe/Paris,0,AEC, +AEC:SP:01054,1,"Les BarthesGare",43.508341,1.865342,-1,0,AEC:SA:01054,Europe/Paris,0,AEC, +AEC:SP:01055,1,"Eglise",43.567653,1.824685,-1,0,AEC:SA:01055,Europe/Paris,0,AEC, +AEC:SP:01056,1,"Maynadel",43.580955,1.801152,-1,0,AEC:SA:01057,Europe/Paris,0,AEC, +AEC:SP:01057,1,"Maynadel",43.580838,1.801355,-1,0,AEC:SA:01057,Europe/Paris,0,AEC, +AEC:SP:01058,1,"La Mandre",43.403359,1.292984,-1,0,AEC:SA:01059,Europe/Paris,0,AEC, +AEC:SP:01059,1,"La Mandre",43.402706,1.292842,-1,0,AEC:SA:01059,Europe/Paris,0,AEC, +AEC:SP:01060,1,"Luxembourg",43.397709,1.290869,-1,0,AEC:SA:01061,Europe/Paris,0,AEC, +AEC:SP:01061,1,"Luxembourg",43.397819,1.291359,-1,0,AEC:SA:01061,Europe/Paris,0,AEC, +AEC:SP:01062,1,"Benque",43.273225,1.069618,-1,0,AEC:SA:01063,Europe/Paris,0,AEC, +AEC:SP:01063,1,"Benque",43.272971,1.069206,-1,0,AEC:SA:01063,Europe/Paris,0,AEC, +AEC:SP:01068,1,"En Guinot",43.7222,1.099893,-1,0,AEC:SA:01069,Europe/Paris,0,AEC, +AEC:SP:01069,1,"En Guinot",43.722168,1.099949,-1,0,AEC:SA:01069,Europe/Paris,0,AEC, +AEC:SP:01070,1,"Les Vignes de L'Ourme",43.721594,1.098785,-1,0,AEC:SA:01071,Europe/Paris,0,AEC, +AEC:SP:01071,1,"Les Vignes de L'Ourme",43.721199,1.098947,-1,0,AEC:SA:01071,Europe/Paris,0,AEC, +AEC:SP:01072,1,"Le Pont de Lège",42.875607,0.613305,-1,0,AEC:SA:01073,Europe/Paris,2,AEC, +AEC:SP:01073,1,"Le Pont de Lège",42.875691,0.613004,-1,0,AEC:SA:01073,Europe/Paris,2,AEC, +AEC:SP:01074,1,"Berdoulet Est",43.567505,1.225965,-1,0,AEC:SA:01074,Europe/Paris,0,AEC, +AEC:SP:01079,1,"La Futière",43.567862,1.229244,-1,0,AEC:SA:01079,Europe/Paris,0,AEC, +AEC:SP:01080,1,"Moulin de la Jalousie",43.520468,1.189772,-1,0,AEC:SA:01799,Europe/Paris,2,AEC, +AEC:SP:01081,1,"Place de la Liberté",43.599984,1.233185,-1,0,AEC:SA:01082,Europe/Paris,0,AEC, +AEC:SP:01082,1,"Avenue des Pyrénées",43.59937,1.234289,-1,0,AEC:SA:01082,Europe/Paris,2,AEC, +AEC:SP:01088,1,"Beauté",43.714039,1.377009,-1,0,AEC:SA:01088,Europe/Paris,0,AEC, +AEC:SP:01089,1,"Beldou",43.709456,1.381573,-1,0,AEC:SA:01090,Europe/Paris,2,AEC, +AEC:SP:01090,1,"Beldou",43.709249,1.381891,-1,0,AEC:SA:01090,Europe/Paris,2,AEC, +AEC:SP:01091,1,"Les Vitarelles",43.710156,1.39128,-1,0,AEC:SA:01092,Europe/Paris,0,AEC, +AEC:SP:01092,1,"Les vitarelles",43.709456,1.391364,-1,0,AEC:SA:01092,Europe/Paris,0,AEC, +AEC:SP:01093,1,"Peyrailles",43.71619,1.375483,-1,0,AEC:SA:01093,Europe/Paris,0,AEC, +AEC:SP:01094,1,"Triage",43.705822,1.393659,-1,0,AEC:SA:01095,Europe/Paris,0,AEC, +AEC:SP:01095,1,"Triage",43.705246,1.394454,-1,0,AEC:SA:01095,Europe/Paris,0,AEC, +AEC:SP:01096,1,"Centre",43.067399,0.759314,-1,0,AEC:SA:01097,Europe/Paris,0,AEC, +AEC:SP:01097,1,"Centre",43.067499,0.759622,-1,0,AEC:SA:01097,Europe/Paris,0,AEC, +AEC:SP:01098,1,"Village",43.068668,0.758207,-1,0,AEC:SA:01099,Europe/Paris,0,AEC, +AEC:SP:01099,1,"Village",43.068415,0.758558,-1,0,AEC:SA:01099,Europe/Paris,0,AEC, +AEC:SP:01100,1,"Place",43.122878,0.914964,-1,0,AEC:SA:01101,Europe/Paris,0,AEC, +AEC:SP:01101,1,"Place",43.12284,0.91516,-1,0,AEC:SA:01101,Europe/Paris,0,AEC, +AEC:SP:01102,1,"Village",43.1217,0.910855,-1,0,AEC:SA:01103,Europe/Paris,0,AEC, +AEC:SP:01103,1,"Village",43.121431,0.911008,-1,0,AEC:SA:01103,Europe/Paris,0,AEC, +AEC:SP:01104,1,"Lacassagne",43.661088,1.186539,-1,0,AEC:SA:01105,Europe/Paris,0,AEC, +AEC:SP:01105,1,"Lacassagne",43.661263,1.187312,-1,0,AEC:SA:01105,Europe/Paris,0,AEC, +AEC:SP:01106,1,"Place du Moulin",43.666947,1.19234,-1,0,AEC:SA:01107,Europe/Paris,0,AEC, +AEC:SP:01107,1,"Place du Moulin",43.667204,1.192362,-1,0,AEC:SA:01107,Europe/Paris,2,AEC, +AEC:SP:01108,1,"Place du Padouenc",43.665571,1.192798,-1,0,AEC:SA:01109,Europe/Paris,2,AEC, +AEC:SP:01109,1,"Place du Padouenc",43.665366,1.192815,-1,0,AEC:SA:01109,Europe/Paris,2,AEC, +AEC:SP:01110,1,"Halle",43.275379,1.347946,-1,0,AEC:SA:01111,Europe/Paris,0,AEC, +AEC:SP:01111,1,"Halle",43.275411,1.347681,-1,0,AEC:SA:01111,Europe/Paris,0,AEC, +AEC:SP:01112,1,"Camin",43.434776,1.224461,-1,0,AEC:SA:01113,Europe/Paris,0,AEC, +AEC:SP:01113,1,"Camin",43.434748,1.224608,-1,0,AEC:SA:01113,Europe/Paris,0,AEC, +AEC:SP:01114,1,"Cimetière",43.429868,1.220966,-1,0,AEC:SA:01115,Europe/Paris,0,AEC, +AEC:SP:01115,1,"Cimetière",43.42975,1.220951,-1,0,AEC:SA:01115,Europe/Paris,0,AEC, +AEC:SP:01116,1,"Désert",43.413979,1.205129,-1,0,AEC:SA:01117,Europe/Paris,0,AEC, +AEC:SP:01117,1,"Désert",43.413859,1.205318,-1,0,AEC:SA:01117,Europe/Paris,0,AEC, +AEC:SP:01118,1,"Eglise",43.430012,1.222763,-1,0,AEC:SA:01119,Europe/Paris,0,AEC, +AEC:SP:01119,1,"Place de l'Eglise",43.429931,1.22284,-1,0,AEC:SA:01119,Europe/Paris,0,AEC, +AEC:SP:01120,1,"Puymelé",43.423518,1.212776,-1,0,AEC:SA:01121,Europe/Paris,0,AEC, +AEC:SP:01121,1,"Puymulens",43.423692,1.213282,-1,0,AEC:SA:01121,Europe/Paris,0,AEC, +AEC:SP:01122,1,"Lieoux",43.152068,0.770542,-1,0,AEC:SA:01123,Europe/Paris,0,AEC, +AEC:SP:01123,1,"Lieoux",43.152502,0.770862,-1,0,AEC:SA:01123,Europe/Paris,0,AEC, +AEC:SP:01124,1,"En Jannot",43.373509,0.827875,-1,0,AEC:SA:01125,Europe/Paris,0,AEC, +AEC:SP:01125,1,"En Jannot",43.373334,0.827712,-1,0,AEC:SA:01125,Europe/Paris,0,AEC, +AEC:SP:01126,1,"La Bourdette",43.388916,0.836922,-1,0,AEC:SA:01127,Europe/Paris,0,AEC, +AEC:SP:01127,1,"La Bourdette",43.389476,0.837773,-1,0,AEC:SA:01127,Europe/Paris,0,AEC, +AEC:SP:01128,1,"Mairie",43.3815,0.836744,-1,0,AEC:SA:01129,Europe/Paris,0,AEC, +AEC:SP:01129,1,"Mairie",43.381473,0.837579,-1,0,AEC:SA:01129,Europe/Paris,0,AEC, +AEC:SP:01130,1,"Pyrénées",43.381059,0.833235,-1,0,AEC:SA:01131,Europe/Paris,0,AEC, +AEC:SP:01131,1,"Pyrénées",43.38072,0.833821,-1,0,AEC:SA:01131,Europe/Paris,0,AEC, +AEC:SP:01132,1,"Ramounat",43.386306,0.834995,-1,0,AEC:SA:01133,Europe/Paris,0,AEC, +AEC:SP:01133,1,"Ramounat",43.38623,0.835483,-1,0,AEC:SA:01133,Europe/Paris,0,AEC, +AEC:SP:01134,1,"Centre",43.269167,1.512479,-1,0,AEC:SA:01134,Europe/Paris,0,AEC, +AEC:SP:01135,1,"Mairie-route de Samatan",43.475857,0.912031,-1,0,AEC:SA:01136,Europe/Paris,0,AEC, +AEC:SP:01136,1,"Mairie-route de Samatan",43.475924,0.911784,-1,0,AEC:SA:01136,Europe/Paris,0,AEC, +AEC:SP:01137,1,"Poste",43.475223,0.913517,-1,0,AEC:SA:01138,Europe/Paris,0,AEC, +AEC:SP:01138,1,"Poste",43.474928,0.913401,-1,0,AEC:SA:01138,Europe/Paris,0,AEC, +AEC:SP:01139,1,"Stade / Gendarmerie",43.474486,0.916404,-1,0,AEC:SA:01139,Europe/Paris,0,AEC, +AEC:SP:01140,1,"Garros",43.353486,1.236491,-1,0,AEC:SA:01140,Europe/Paris,2,AEC, +AEC:SP:01141,1,"Mairie",43.355836,1.235766,-1,0,AEC:SA:01142,Europe/Paris,2,AEC, +AEC:SP:01142,1,"Mairie",43.355578,1.23549,-1,0,AEC:SA:01142,Europe/Paris,2,AEC, +AEC:SP:01143,1,"Pas-Bastere",43.341457,1.206215,-1,0,AEC:SA:01144,Europe/Paris,0,AEC, +AEC:SP:01144,1,"Pas-Bastere",43.341399,1.206381,-1,0,AEC:SA:01144,Europe/Paris,0,AEC, +AEC:SP:01145,1,"En Pinel",43.581246,1.776522,-1,0,AEC:SA:01146,Europe/Paris,0,AEC, +AEC:SP:01146,1,"En Pinel",43.581345,1.776532,-1,0,AEC:SA:01146,Europe/Paris,0,AEC, +AEC:SP:01147,1,"Eglise",43.024422,0.604817,-1,0,SIN:SA:OCE87173468,Europe/Paris,0,AEC, +AEC:SP:01148,1,"Eglise",43.02433,0.604659,-1,0,SIN:SA:OCE87173468,Europe/Paris,0,AEC, +AEC:SP:01149,1,"Eglise",43.024255,0.604412,-1,0,SIN:SA:OCE87173468,Europe/Paris,0,AEC, +AEC:SP:01150,1,"Belle Hôtesse",43.659954,1.488746,-1,0,AEC:SA:01151,Europe/Paris,0,AEC, +AEC:SP:01151,1,"Belle Hôtesse",43.659991,1.489176,-1,0,AEC:SA:01151,Europe/Paris,0,AEC, +AEC:SP:01152,1,"Brunel",43.64318,1.505164,-1,0,AEC:SA:01381,Europe/Paris,0,AEC, +AEC:SP:01153,1,"Centre Commercial",43.656728,1.479876,-1,0,AEC:SA:01160,Europe/Paris,0,AEC, +AEC:SP:01154,1,"Fontanelles",43.656783,1.470303,-1,0,AEC:SA:01155,Europe/Paris,0,AEC, +AEC:SP:01155,1,"Fontanelles",43.656325,1.470688,-1,0,AEC:SA:01155,Europe/Paris,2,AEC, +AEC:SP:01156,1,"Giratoire Truffaut",43.638164,1.500632,-1,0,AEC:SA:01161,Europe/Paris,0,AEC, +AEC:SP:01157,1,"Grive",43.658377,1.484289,-1,0,AEC:SA:01158,Europe/Paris,0,AEC, +AEC:SP:01158,1,"Grive",43.658544,1.484297,-1,0,AEC:SA:01158,Europe/Paris,0,AEC, +AEC:SP:01159,1,"Mirabelles",43.660973,1.491723,-1,0,AEC:SA:01744,Europe/Paris,0,AEC, +AEC:SP:01160,1,"Saint-Caprais",43.656585,1.479288,-1,0,AEC:SA:01160,Europe/Paris,0,AEC, +AEC:SP:01161,1,"Truffaut",43.638272,1.500381,-1,0,AEC:SA:01161,Europe/Paris,0,AEC, +AEC:SP:01162,1,"Le Château",43.009484,0.620768,-1,0,AEC:SA:01163,Europe/Paris,2,AEC, +AEC:SP:01163,1,"Le Château",43.009396,0.620956,-1,0,AEC:SA:01163,Europe/Paris,2,AEC, +AEC:SP:01164,1,"Luscan",43.011382,0.615218,-1,0,AEC:SA:01165,Europe/Paris,0,AEC, +AEC:SP:01165,1,"Luscan",43.011391,0.615505,-1,0,AEC:SA:01165,Europe/Paris,0,AEC, +AEC:SP:01166,1,"Village",43.015407,0.621474,-1,0,AEC:SA:01167,Europe/Paris,0,AEC, +AEC:SP:01167,1,"Village",43.015519,0.621821,-1,0,AEC:SA:01167,Europe/Paris,0,AEC, +AEC:SP:01168,1,"Village",43.006381,0.687445,-1,0,AEC:SA:01169,Europe/Paris,0,AEC, +AEC:SP:01169,1,"Village",43.006273,0.687642,-1,0,AEC:SA:01169,Europe/Paris,0,AEC, +AEC:SP:01170,1,"Eglise",43.158787,0.953143,-1,0,AEC:SA:01171,Europe/Paris,0,AEC, +AEC:SP:01171,1,"Eglise",43.158661,0.953338,-1,0,AEC:SA:01171,Europe/Paris,0,AEC, +AEC:SP:01172,1,"Village",43.155094,0.951859,-1,0,AEC:SA:01173,Europe/Paris,0,AEC, +AEC:SP:01173,1,"Village",43.154939,0.952039,-1,0,AEC:SA:01173,Europe/Paris,0,AEC, +AEC:SP:01174,1,"Avenue de Toulouse",43.087321,0.951298,-1,0,AEC:SA:01177,Europe/Paris,0,AEC, +AEC:SP:01175,1,"Avenue du Couserans",43.08056,0.953136,-1,0,AEC:SA:01176,Europe/Paris,2,AEC, +AEC:SP:01176,1,"Avenue du Couserans",43.080584,0.953569,-1,0,AEC:SA:01176,Europe/Paris,2,AEC, +AEC:SP:01177,1,"Avenue Tolosane",43.087337,0.951032,-1,0,AEC:SA:01177,Europe/Paris,0,AEC, +AEC:SP:01178,1,"Scierie",43.090022,0.950086,-1,0,AEC:SA:01179,Europe/Paris,0,AEC, +AEC:SP:01179,1,"Scierie",43.090546,0.950652,-1,0,AEC:SA:01179,Europe/Paris,0,AEC, +AEC:SP:01180,1,"La Gare",42.915326,0.650924,-1,0,AEC:SA:01180,Europe/Paris,0,AEC, +AEC:SP:01181,1,"Mairie",42.913595,0.658693,-1,0,AEC:SA:01182,Europe/Paris,0,AEC, +AEC:SP:01182,1,"Mairie",42.913258,0.658143,-1,0,AEC:SA:01182,Europe/Paris,2,AEC, +AEC:SP:01183,1,"Cazarré",43.304898,1.097094,-1,0,AEC:SA:01184,Europe/Paris,2,AEC, +AEC:SP:01184,1,"Cazarré",43.304507,1.097126,-1,0,AEC:SA:01184,Europe/Paris,2,AEC, +AEC:SP:01185,1,"Clares Basse",43.308489,1.108617,-1,0,AEC:SA:01186,Europe/Paris,0,AEC, +AEC:SP:01186,1,"Clares Basses",43.307991,1.107515,-1,0,AEC:SA:01186,Europe/Paris,0,AEC, +AEC:SP:01187,1,"Auribail",43.328359,1.246824,-1,0,AEC:SA:01188,Europe/Paris,0,AEC, +AEC:SP:01188,1,"Auribail",43.328402,1.247205,-1,0,AEC:SA:01188,Europe/Paris,0,AEC, +AEC:SP:01189,1,"Cimetière",43.316466,1.240464,-1,0,AEC:SA:01190,Europe/Paris,2,AEC, +AEC:SP:01190,1,"Cimetière",43.317443,1.241364,-1,0,AEC:SA:01190,Europe/Paris,2,AEC, +AEC:SP:01191,1,"Le Pradas",43.313186,1.236493,-1,0,AEC:SA:01192,Europe/Paris,0,AEC, +AEC:SP:01192,1,"Pradas",43.312901,1.236431,-1,0,AEC:SA:01192,Europe/Paris,0,AEC, +AEC:SP:01193,1,"Avenue de Palaminy",43.19731,1.030969,-1,0,AEC:SA:01194,Europe/Paris,0,AEC, +AEC:SP:01194,1,"Avenue de Palaminy",43.197181,1.031037,-1,0,AEC:SA:01194,Europe/Paris,0,AEC, +AEC:SP:01197,1,"La Rivière",43.182696,0.973193,-1,0,AEC:SA:01198,Europe/Paris,0,AEC, +AEC:SP:01198,1,"La Rivière",43.182774,0.973657,-1,0,AEC:SA:01198,Europe/Paris,0,AEC, +AEC:SP:01199,1,"Pyrénées",43.198732,1.009801,-1,0,AEC:SA:01200,Europe/Paris,2,AEC, +AEC:SP:01200,1,"Pyrénées",43.198875,1.009853,-1,0,AEC:SA:01200,Europe/Paris,2,AEC, +AEC:SP:01201,1,"Rue de la faïencerie",43.197819,1.018343,-1,0,AEC:SA:01202,Europe/Paris,0,AEC, +AEC:SP:01203,1,"La Tuilerie",43.231578,1.375937,-1,0,AEC:SA:01204,Europe/Paris,2,AEC, +AEC:SP:01204,1,"La Tuilerie",43.231493,1.376058,-1,0,AEC:SA:01204,Europe/Paris,2,AEC, +AEC:SP:01205,1,"Salle des Fêtes",43.190714,1.034172,-1,0,AEC:SA:01206,Europe/Paris,0,AEC, +AEC:SP:01206,1,"Salle des Fêtes",43.190797,1.034371,-1,0,AEC:SA:01206,Europe/Paris,0,AEC, +AEC:SP:01207,1,"En Carron",43.468264,1.796187,-1,0,AEC:SA:01208,Europe/Paris,0,AEC, +AEC:SP:01208,1,"En Carron",43.468319,1.796066,-1,0,AEC:SA:01208,Europe/Paris,0,AEC, +AEC:SP:01209,1,"Le Lengard",43.469103,1.789257,-1,0,AEC:SA:01210,Europe/Paris,0,AEC, +AEC:SP:01210,1,"Le Lengard",43.46923,1.789273,-1,0,AEC:SA:01210,Europe/Paris,0,AEC, +AEC:SP:01211,1,"L'Orme",43.327233,1.441136,-1,0,AEC:SA:01212,Europe/Paris,0,AEC, +AEC:SP:01212,1,"L'Orme",43.327369,1.441334,-1,0,AEC:SA:01212,Europe/Paris,0,AEC, +AEC:SP:01213,1,"Bachus",43.545805,1.704122,-1,0,AEC:SA:01213,Europe/Paris,0,AEC, +AEC:SP:01214,1,"Couge",43.538101,1.733968,-1,0,AEC:SA:01215,Europe/Paris,0,AEC, +AEC:SP:01215,1,"Couge",43.537651,1.735265,-1,0,AEC:SA:01215,Europe/Paris,0,AEC, +AEC:SP:01216,1,"En Bosc",43.542577,1.716087,-1,0,AEC:SA:01217,Europe/Paris,0,AEC, +AEC:SP:01217,1,"En Bosc",43.542577,1.716548,-1,0,AEC:SA:01217,Europe/Paris,0,AEC, +AEC:SP:01218,1,"En Bramelle",43.545116,1.706319,-1,0,AEC:SA:01219,Europe/Paris,0,AEC, +AEC:SP:01219,1,"En Bramelle",43.54521,1.706412,-1,0,AEC:SA:01219,Europe/Paris,0,AEC, +AEC:SP:01220,1,"Le Pont",43.378367,1.289307,-1,0,AEC:SA:01222,Europe/Paris,0,AEC, +AEC:SP:01221,1,"Le Rouget",43.366185,1.330491,-1,0,AEC:SA:01221,Europe/Paris,0,AEC, +AEC:SP:01222,1,"Pont",43.378416,1.289711,-1,0,AEC:SA:01222,Europe/Paris,0,AEC, +AEC:SP:01223,1,"Place",43.250135,1.677047,-1,0,AEC:SA:01223,Europe/Paris,0,AEC, +AEC:SP:01224,1,"Frontière",42.866928,0.747637,-1,0,AEC:SA:01224,Europe/Paris,0,AEC, +AEC:SP:01225,1,"Montlezun",43.676696,1.190758,-1,0,AEC:SA:01226,Europe/Paris,0,AEC, +AEC:SP:01226,1,"Montlezun",43.676578,1.190869,-1,0,AEC:SA:01226,Europe/Paris,0,AEC, +AEC:SP:01227,1,"Cazassus",43.717465,1.305339,-1,0,AEC:SA:01228,Europe/Paris,0,AEC, +AEC:SP:01228,1,"Cazassus",43.71725,1.305661,-1,0,AEC:SA:01228,Europe/Paris,0,AEC, +AEC:SP:01229,1,"Cèdres",43.712745,1.308402,-1,0,AEC:SA:01230,Europe/Paris,0,AEC, +AEC:SP:01230,1,"Cèdres",43.713748,1.308178,-1,0,AEC:SA:01230,Europe/Paris,0,AEC, +AEC:SP:01231,1,"La Côte rouge",43.732951,1.305972,-1,0,AEC:SA:01232,Europe/Paris,0,AEC, +AEC:SP:01232,1,"La Côte rouge",43.732906,1.306166,-1,0,AEC:SA:01232,Europe/Paris,0,AEC, +AEC:SP:01233,1,"La Peyre",43.738954,1.312332,-1,0,AEC:SA:01234,Europe/Paris,0,AEC, +AEC:SP:01234,1,"La Peyre",43.738843,1.312506,-1,0,AEC:SA:01234,Europe/Paris,0,AEC, +AEC:SP:01237,1,"Mairie",43.721718,1.29773,-1,0,AEC:SA:01238,Europe/Paris,2,AEC, +AEC:SP:01238,1,"Mairie",43.721469,1.297791,-1,0,AEC:SA:01238,Europe/Paris,2,AEC, +AEC:SP:01239,1,"Pangoussié",43.724449,1.297514,-1,0,AEC:SA:01240,Europe/Paris,0,AEC, +AEC:SP:01240,1,"Pangoussié",43.724604,1.297751,-1,0,AEC:SA:01240,Europe/Paris,0,AEC, +AEC:SP:01241,1,"Pedauco",43.719854,1.330204,-1,0,AEC:SA:01242,Europe/Paris,0,AEC, +AEC:SP:01242,1,"Pedauco",43.719455,1.331047,-1,0,AEC:SA:01242,Europe/Paris,0,AEC, +AEC:SP:01244,1,"Poulidas",43.732182,1.31926,-1,0,AEC:SA:01243,Europe/Paris,0,AEC, +AEC:SP:01245,1,"Mairie",42.988206,0.806399,-1,0,AEC:SA:01246,Europe/Paris,0,AEC, +AEC:SP:01246,1,"Mairie",42.988185,0.806575,-1,0,AEC:SA:01246,Europe/Paris,0,AEC, +AEC:SP:01247,1,"Eglise",43.092959,0.743054,-1,0,AEC:SA:01249,Europe/Paris,2,AEC, +AEC:SP:01248,1,"Place de la Bascule",43.094593,0.747163,-1,0,AEC:SA:01250,Europe/Paris,2,AEC, +AEC:SP:01249,1,"Place de l'Eglise",43.09315,0.74272,-1,0,AEC:SA:01249,Europe/Paris,2,AEC, +AEC:SP:01250,1,"Rond Point du Pin",43.094475,0.747301,-1,0,AEC:SA:01250,Europe/Paris,2,AEC, +AEC:SP:01251,1,"Burguerolles",43.392684,1.412007,-1,0,AEC:SA:01252,Europe/Paris,0,AEC, +AEC:SP:01252,1,"Burguerolles",43.393546,1.41263,-1,0,AEC:SA:01252,Europe/Paris,0,AEC, +AEC:SP:01253,1,"Parc du Château",43.371553,1.417716,-1,0,AEC:SA:01254,Europe/Paris,0,AEC, +AEC:SP:01254,1,"Parc du Château",43.37174,1.417826,-1,0,AEC:SA:01254,Europe/Paris,0,AEC, +AEC:SP:01255,1,"Pyrénées",43.367828,1.419017,-1,0,AEC:SA:01256,Europe/Paris,0,AEC, +AEC:SP:01256,1,"Pyrénées",43.368006,1.419109,-1,0,AEC:SA:01256,Europe/Paris,0,AEC, +AEC:SP:01257,1,"Place de la République",43.813098,1.572404,-1,0,AEC:SA:01258,Europe/Paris,0,AEC, +AEC:SP:01258,1,"Place République",43.813028,1.572217,-1,0,AEC:SA:01258,Europe/Paris,0,AEC, +AEC:SP:01259,1,"Route de Layrac",43.815571,1.568513,-1,0,AEC:SA:01260,Europe/Paris,0,AEC, +AEC:SP:01260,1,"Route de Layrac",43.815639,1.568622,-1,0,AEC:SA:01260,Europe/Paris,0,AEC, +AEC:SP:01261,1,"Centre",42.977533,0.706835,-1,0,AEC:SA:01262,Europe/Paris,0,AEC, +AEC:SP:01262,1,"Centre",42.977599,0.706949,-1,0,AEC:SA:01262,Europe/Paris,0,AEC, +AEC:SP:01265,1,"Croix d'Alliez",43.66152,1.305693,-1,0,AEC:SA:01266,Europe/Paris,2,AEC, +AEC:SP:01266,1,"Croix d'Alliez",43.661654,1.305681,-1,0,AEC:SA:01266,Europe/Paris,2,AEC, +AEC:SP:01267,1,"Laroque",43.665358,1.297513,-1,0,AEC:SA:01268,Europe/Paris,0,AEC, +AEC:SP:01268,1,"Larroque",43.665793,1.297125,-1,0,AEC:SA:01268,Europe/Paris,0,AEC, +AEC:SP:01269,1,"Route de Daux",43.673051,1.28331,-1,0,AEC:SA:08745,Europe/Paris,2,AEC, +AEC:SP:01271,1,"Les Laques",43.615522,1.590785,-1,0,AEC:SA:01271,Europe/Paris,0,AEC, +AEC:SP:01272,1,"Avenue de Toulouse",43.691622,1.231141,-1,0,AEC:SA:01273,Europe/Paris,0,AEC, +AEC:SP:01273,1,"Avenue de Toulouse",43.691667,1.231209,-1,0,AEC:SA:01273,Europe/Paris,0,AEC, +AEC:SP:01276,1,"Maurous",43.68816,1.241433,-1,0,AEC:SA:01277,Europe/Paris,0,AEC, +AEC:SP:01277,1,"Maurous",43.688069,1.242277,-1,0,AEC:SA:01277,Europe/Paris,0,AEC, +AEC:SP:01278,1,"Notre Dame d'Alet",43.690489,1.243634,-1,0,AEC:SA:01279,Europe/Paris,0,AEC, +AEC:SP:01279,1,"Notre Dame d'Alet",43.690517,1.243403,-1,0,AEC:SA:01279,Europe/Paris,0,AEC, +AEC:SP:01280,1,"Place de la salle des Fêtes",43.692982,1.229957,-1,0,AEC:SA:01281,Europe/Paris,0,AEC, +AEC:SP:01281,1,"Place de la salle des Fêtes",43.693126,1.229977,-1,0,AEC:SA:01281,Europe/Paris,0,AEC, +AEC:SP:01282,1,"Bordeneuve",43.719178,1.579114,-1,0,AEC:SA:01283,Europe/Paris,0,AEC, +AEC:SP:01283,1,"Bordeneuve",43.718825,1.579029,-1,0,AEC:SA:01283,Europe/Paris,0,AEC, +AEC:SP:01284,1,"Chemin vert",43.720637,1.591828,-1,0,AEC:SA:01284,Europe/Paris,0,AEC, +AEC:SP:01285,1,"Gare SNCF",43.715988,1.59782,-1,0,SIN:SA:OCE87615369,Europe/Paris,0,AEC, +AEC:SP:01286,1,"La Conseillère",43.721898,1.585108,-1,0,AEC:SA:01287,Europe/Paris,2,AEC, +AEC:SP:01287,1,"La Conseillère",43.722193,1.585916,-1,0,AEC:SA:01287,Europe/Paris,2,AEC, +AEC:SP:01288,1,"La Valade - Château",43.709602,1.575028,-1,0,AEC:SA:01288,Europe/Paris,0,AEC, +AEC:SP:01289,1,"La Valade - Club House",43.709536,1.580585,-1,0,AEC:SA:01289,Europe/Paris,0,AEC, +AEC:SP:01290,1,"La Valade - Lac",43.708741,1.571899,-1,0,AEC:SA:01290,Europe/Paris,0,AEC, +AEC:SP:01291,1,"La Grange Brulée",43.346247,1.323984,-1,0,AEC:SA:01292,Europe/Paris,0,AEC, +AEC:SP:01292,1,"La Grange Brulée",43.34627,1.324227,-1,0,AEC:SA:01292,Europe/Paris,0,AEC, +AEC:SP:01293,1,"Le Luguet",43.362285,1.328896,-1,0,AEC:SA:01294,Europe/Paris,0,AEC, +AEC:SP:01294,1,"Le Luquet",43.362774,1.329165,-1,0,AEC:SA:01294,Europe/Paris,0,AEC, +AEC:SP:01295,1,"Sabatause",43.335265,1.321784,-1,0,AEC:SA:01865,Europe/Paris,0,AEC, +AEC:SP:01296,1,"La Vierge",43.31072,0.768041,-1,0,AEC:SA:01297,Europe/Paris,2,AEC, +AEC:SP:01297,1,"La Vierge",43.310209,0.767965,-1,0,AEC:SA:01297,Europe/Paris,2,AEC, +AEC:SP:01298,1,"Milor",43.302965,0.758613,-1,0,AEC:SA:01299,Europe/Paris,2,AEC, +AEC:SP:01299,1,"Milor",43.303391,0.759537,-1,0,AEC:SA:01299,Europe/Paris,2,AEC, +AEC:SP:01300,1,"Cimetière",43.712944,1.476635,-1,0,AEC:SA:01301,Europe/Paris,0,AEC, +AEC:SP:01301,1,"Cimetière",43.712936,1.476864,-1,0,AEC:SA:01301,Europe/Paris,0,AEC, +AEC:SP:01302,1,"Eglise",43.715977,1.479789,-1,0,AEC:SA:01303,Europe/Paris,0,AEC, +AEC:SP:01303,1,"Eglise",43.715925,1.480291,-1,0,AEC:SA:01303,Europe/Paris,0,AEC, +AEC:SP:01304,1,"Le Tucol",43.727307,1.481779,-1,0,AEC:SA:01305,Europe/Paris,0,AEC, +AEC:SP:01305,1,"Le Tucol",43.727246,1.482088,-1,0,AEC:SA:01305,Europe/Paris,0,AEC, +AEC:SP:01306,1,"Tucol",43.721637,1.481326,-1,0,AEC:SA:01307,Europe/Paris,0,AEC, +AEC:SP:01307,1,"Tucol",43.721769,1.48146,-1,0,AEC:SA:01307,Europe/Paris,0,AEC, +AEC:SP:01308,1,"Cassejus",43.370596,1.71782,-1,0,AEC:SA:01309,Europe/Paris,0,AEC, +AEC:SP:01309,1,"Cassejus",43.370443,1.717843,-1,0,AEC:SA:01309,Europe/Paris,0,AEC, +AEC:SP:01310,1,"Le Châtelet",43.361203,1.725391,-1,0,AEC:SA:01311,Europe/Paris,0,AEC, +AEC:SP:01311,1,"Le Châtelet",43.361378,1.725261,-1,0,AEC:SA:01311,Europe/Paris,0,AEC, +AEC:SP:01312,1,"La Filandière",43.47176,1.950191,-1,0,AEC:SA:01313,Europe/Paris,0,AEC, +AEC:SP:01313,1,"La Filandière",43.47177,1.950559,-1,0,AEC:SA:01313,Europe/Paris,0,AEC, +AEC:SP:01314,1,"Le Tapissier",43.476226,1.929175,-1,0,AEC:SA:01315,Europe/Paris,0,AEC, +AEC:SP:01315,1,"Le Tapissier",43.476441,1.928959,-1,0,AEC:SA:01315,Europe/Paris,0,AEC, +AEC:SP:01316,1,"Mauran",43.48156,1.915787,-1,0,AEC:SA:01317,Europe/Paris,0,AEC, +AEC:SP:01317,1,"Mauran",43.480732,1.91691,-1,0,AEC:SA:01317,Europe/Paris,0,AEC, +AEC:SP:01318,1,"Village",43.47851,1.92327,-1,0,AEC:SA:01319,Europe/Paris,0,AEC, +AEC:SP:01319,1,"Village",43.478468,1.923738,-1,0,AEC:SA:01319,Europe/Paris,0,AEC, +AEC:SP:01320,1,"Le Pont",43.092735,0.841075,-1,0,AEC:SA:01321,Europe/Paris,0,AEC, +AEC:SP:01321,1,"Le Pont",43.092547,0.842231,-1,0,AEC:SA:01321,Europe/Paris,0,AEC, +AEC:SP:01322,1,"Les Artigues",43.09289,0.862442,-1,0,AEC:SA:01323,Europe/Paris,0,AEC, +AEC:SP:01323,1,"Les Artigues",43.092682,0.862479,-1,0,AEC:SA:01323,Europe/Paris,0,AEC, +AEC:SP:01324,1,"Chemin de Guittaud",43.322764,0.783083,-1,0,AEC:SA:01325,Europe/Paris,0,AEC, +AEC:SP:01325,1,"Chemin de Guittaut",43.323022,0.783754,-1,0,AEC:SA:01325,Europe/Paris,0,AEC, +AEC:SP:01326,1,"En Serny",43.424061,1.626728,-1,0,AEC:SA:01327,Europe/Paris,2,AEC, +AEC:SP:01327,1,"En Serny",43.424093,1.626861,-1,0,AEC:SA:01327,Europe/Paris,2,AEC, +AEC:SP:01328,1,"Monument",43.417879,1.629409,-1,0,AEC:SA:01329,Europe/Paris,0,AEC, +AEC:SP:01329,1,"Monument",43.417711,1.629547,-1,0,AEC:SA:01329,Europe/Paris,0,AEC, +AEC:SP:01330,1,"Négra",43.41686,1.639607,-1,0,AEC:SA:01331,Europe/Paris,0,AEC, +AEC:SP:01331,1,"Négra",43.416777,1.639732,-1,0,AEC:SA:01331,Europe/Paris,0,AEC, +AEC:SP:01332,1,"Brin de Jonc",43.205243,1.228269,-1,0,AEC:SA:01339,Europe/Paris,0,AEC, +AEC:SP:01333,1,"Esplanade du Nord",43.208574,1.232427,-1,0,AEC:SA:01334,Europe/Paris,0,AEC, +AEC:SP:01334,1,"Esplanade du Nord",43.209232,1.231672,-1,0,AEC:SA:01334,Europe/Paris,0,AEC, +AEC:SP:01335,1,"Gendarmerie",43.214755,1.222481,-1,0,AEC:SA:01336,Europe/Paris,0,AEC, +AEC:SP:01336,1,"Gendarmerie",43.215217,1.222253,-1,0,AEC:SA:01336,Europe/Paris,0,AEC, +AEC:SP:01337,1,"Loubère",43.211061,1.227842,-1,0,AEC:SA:01338,Europe/Paris,2,AEC, +AEC:SP:01338,1,"Loubère",43.211125,1.227945,-1,0,AEC:SA:01338,Europe/Paris,2,AEC, +AEC:SP:01339,1,"Place Brindejonc",43.205342,1.228528,-1,0,AEC:SA:01339,Europe/Paris,0,AEC, +AEC:SP:01340,1,"Borde Basse",43.415629,1.695039,-1,0,AEC:SA:01344,Europe/Paris,0,AEC, +AEC:SP:01341,1,"La Cave",43.425055,1.680657,-1,0,AEC:SA:01342,Europe/Paris,0,AEC, +AEC:SP:01342,1,"La Cave",43.425828,1.680106,-1,0,AEC:SA:01342,Europe/Paris,0,AEC, +AEC:SP:01343,1,"La Gravette",43.422034,1.684477,-1,0,AEC:SA:01846,Europe/Paris,2,AEC, +AEC:SP:01344,1,"Saint-Jean",43.41764,1.691413,-1,0,AEC:SA:01344,Europe/Paris,2,AEC, +AEC:SP:01345,1,"Cimetière",43.254415,0.731434,-1,0,AEC:SA:01346,Europe/Paris,0,AEC, +AEC:SP:01346,1,"Cimetière",43.255138,0.731659,-1,0,AEC:SA:01346,Europe/Paris,0,AEC, +AEC:SP:01347,1,"Aimé Ramond",43.338281,1.633678,-1,0,AEC:SA:01348,Europe/Paris,0,AEC, +AEC:SP:01348,1,"Aimé Ramond",43.338396,1.633879,-1,0,AEC:SA:01348,Europe/Paris,0,AEC, +AEC:SP:01349,1,"Roquefoulet",43.353627,1.654487,-1,0,AEC:SA:01349,Europe/Paris,0,AEC, +AEC:SP:01350,1,"Bruxelles",43.465017,1.565604,-1,0,AEC:SA:01351,Europe/Paris,0,AEC, +AEC:SP:01351,1,"Bruxelles",43.465297,1.565477,-1,0,AEC:SA:01351,Europe/Paris,0,AEC, +AEC:SP:01352,1,"Gendarmerie",43.456385,1.580614,-1,0,AEC:SA:01353,Europe/Paris,0,AEC, +AEC:SP:01353,1,"Gendarmerie",43.456421,1.580873,-1,0,AEC:SA:01353,Europe/Paris,0,AEC, +AEC:SP:01354,1,"L'Ecluse",43.462072,1.570942,-1,0,AEC:SA:01355,Europe/Paris,0,AEC, +AEC:SP:01355,1,"L'Ecluse",43.461746,1.57118,-1,0,AEC:SA:01355,Europe/Paris,0,AEC, +AEC:SP:01356,1,"Buffevent",43.757406,1.50518,-1,0,AEC:SA:02203,Europe/Paris,0,AEC, +AEC:SP:01357,1,"Chêne vert",43.757358,1.516711,-1,0,AEC:SA:01358,Europe/Paris,0,AEC, +AEC:SP:01358,1,"Chêne vert",43.757313,1.516999,-1,0,AEC:SA:01358,Europe/Paris,0,AEC, +AEC:SP:01359,1,"Eglise",43.770247,1.533224,-1,0,AEC:SA:01360,Europe/Paris,2,AEC, +AEC:SP:01360,1,"Eglise",43.769974,1.533101,-1,0,AEC:SA:01360,Europe/Paris,2,AEC, +AEC:SP:01361,1,"Malpas",43.782408,1.55612,-1,0,AEC:SA:01362,Europe/Paris,0,AEC, +AEC:SP:01362,1,"Malpas",43.783043,1.555824,-1,0,AEC:SA:01362,Europe/Paris,0,AEC, +AEC:SP:01365,1,"Saint-Sernin",43.767999,1.544755,-1,0,AEC:SA:01366,Europe/Paris,0,AEC, +AEC:SP:01366,1,"Saint-Sernin",43.76783,1.544675,-1,0,AEC:SA:01366,Europe/Paris,0,AEC, +AEC:SP:01367,1,"Varennes",43.76728,1.529999,-1,0,AEC:SA:01368,Europe/Paris,2,AEC, +AEC:SP:01368,1,"Varennes",43.767626,1.530283,-1,0,AEC:SA:01368,Europe/Paris,2,AEC, +AEC:SP:01369,1,"Les Canavères",43.478235,1.576893,-1,0,AEC:SA:01370,Europe/Paris,0,AEC, +AEC:SP:01370,1,"Les Canavères",43.478206,1.576699,-1,0,AEC:SA:01370,Europe/Paris,0,AEC, +AEC:SP:01371,1,"Village",43.488997,1.568826,-1,0,AEC:SA:01372,Europe/Paris,0,AEC, +AEC:SP:01372,1,"Village",43.488512,1.569281,-1,0,AEC:SA:01372,Europe/Paris,0,AEC, +AEC:SP:01373,1,"Camp d'Armas",43.22129,0.895572,-1,0,AEC:SA:01374,Europe/Paris,0,AEC, +AEC:SP:01374,1,"Camp d'Armas",43.221253,0.896098,-1,0,AEC:SA:01374,Europe/Paris,0,AEC, +AEC:SP:01375,1,"Notre Dame St Bernard",43.227857,0.910368,-1,0,AEC:SA:01376,Europe/Paris,0,AEC, +AEC:SP:01376,1,"Notre Dame St Bernard",43.227645,0.91081,-1,0,AEC:SA:01376,Europe/Paris,0,AEC, +AEC:SP:01377,1,"Bel Souleil",43.644951,1.544573,-1,0,AEC:SA:01378,Europe/Paris,0,AEC, +AEC:SP:01378,1,"Bel Souleil",43.644802,1.544648,-1,0,AEC:SA:01378,Europe/Paris,0,AEC, +AEC:SP:01379,1,"Borde Haute",43.643297,1.530262,-1,0,AEC:SA:01380,Europe/Paris,0,AEC, +AEC:SP:01380,1,"Borde Haute",43.643065,1.530346,-1,0,AEC:SA:01380,Europe/Paris,0,AEC, +AEC:SP:01381,1,"Brunel",43.643081,1.505446,-1,0,AEC:SA:01381,Europe/Paris,0,AEC, +AEC:SP:01382,1,"Collège",43.644041,1.536341,-1,0,AEC:SA:01383,Europe/Paris,0,AEC, +AEC:SP:01383,1,"Collège",43.643972,1.537599,-1,0,AEC:SA:01383,Europe/Paris,0,AEC, +AEC:SP:01384,1,"Logis Vieux",43.64332,1.521132,-1,0,AEC:SA:01385,Europe/Paris,0,AEC, +AEC:SP:01385,1,"Logis Vieux",43.643566,1.520647,-1,0,AEC:SA:01385,Europe/Paris,0,AEC, +AEC:SP:01386,1,"Mairie",43.642948,1.525161,-1,0,AEC:SA:01387,Europe/Paris,0,AEC, +AEC:SP:01387,1,"Mairie",43.642729,1.526207,-1,0,AEC:SA:01387,Europe/Paris,0,AEC, +AEC:SP:01388,1,"Terlon",43.644124,1.513818,-1,0,AEC:SA:01389,Europe/Paris,0,AEC, +AEC:SP:01389,1,"Terlon",43.644307,1.513892,-1,0,AEC:SA:01389,Europe/Paris,0,AEC, +AEC:SP:01390,1,"Boulevard de Lassus",43.085283,0.566396,-1,0,AEC:SA:01390,Europe/Paris,0,AEC, +AEC:SP:01391,1,"RD 817",43.085837,0.573751,-1,0,AEC:SA:01392,Europe/Paris,0,AEC, +AEC:SP:01392,1,"RD 817",43.085993,0.573411,-1,0,AEC:SA:01392,Europe/Paris,0,AEC, +AEC:SP:01393,1,"Mairie",43.111911,0.93346,-1,0,AEC:SA:01394,Europe/Paris,2,AEC, +AEC:SP:01394,1,"Mairie",43.111751,0.933792,-1,0,AEC:SA:01394,Europe/Paris,2,AEC, +AEC:SP:01395,1,"Les Myrtilles",42.814615,0.597897,-1,0,AEC:SA:01396,Europe/Paris,0,AEC, +AEC:SP:01396,1,"Mairie",42.815076,0.597331,-1,0,AEC:SA:01396,Europe/Paris,0,AEC, +AEC:SP:01397,1,"Bellefontaine",43.44331,1.315234,-1,0,AEC:SA:01398,Europe/Paris,0,AEC, +AEC:SP:01398,1,"Bellefontaine",43.441576,1.314377,-1,0,AEC:SA:01398,Europe/Paris,0,AEC, +AEC:SP:01399,1,"De Lattre de Tassigny",43.46456,1.326179,-1,0,AEC:SA:01400,Europe/Paris,0,AEC, +AEC:SP:01400,1,"De Lattre de Tassigny",43.465444,1.326833,-1,0,AEC:SA:01400,Europe/Paris,2,AEC, +AEC:SP:01401,1,"Debat Ponsan",43.445883,1.317024,-1,0,AEC:SA:01402,Europe/Paris,0,AEC, +AEC:SP:01402,1,"Debat-Ponsan",43.446022,1.316798,-1,0,AEC:SA:01402,Europe/Paris,0,AEC, +AEC:SP:01407,1,"Gare SNCF",43.465137,1.324637,-1,0,AEC:SA:01407,Europe/Paris,2,AEC, +AEC:SP:01408,1,"Gendarmerie",43.451968,1.320544,-1,0,AEC:SA:01409,Europe/Paris,2,AEC, +AEC:SP:01409,1,"Gendarmerie",43.451372,1.320462,-1,0,AEC:SA:01409,Europe/Paris,2,AEC, +AEC:SP:01410,1,"Genevoix",43.46668,1.311364,-1,0,AEC:SA:01411,Europe/Paris,0,AEC, +AEC:SP:01411,1,"Genevoix",43.466804,1.311131,-1,0,AEC:SA:01411,Europe/Paris,2,AEC, +AEC:SP:01412,1,"La Petite Maymie",43.434758,1.344452,-1,0,AEC:SA:01413,Europe/Paris,0,AEC, +AEC:SP:01413,1,"La Petite Maymie",43.434811,1.344622,-1,0,AEC:SA:01413,Europe/Paris,0,AEC, +AEC:SP:01416,1,"Les Vivans",43.442773,1.339049,-1,0,AEC:SA:01417,Europe/Paris,0,AEC, +AEC:SP:01417,1,"Les Vivans",43.443557,1.338997,-1,0,AEC:SA:01417,Europe/Paris,2,AEC, +AEC:SP:01418,1,"Lycée P. Aragon",43.454829,1.331156,-1,0,AEC:SA:01419,Europe/Paris,2,AEC, +AEC:SP:01419,1,"Lycée P. Aragon",43.4546,1.331752,-1,0,AEC:SA:01419,Europe/Paris,2,AEC, +AEC:SP:01420,1,"Mermoz Gare SNCF",43.463427,1.325441,-1,0,AEC:SA:01421,Europe/Paris,2,AEC, +AEC:SP:01421,1,"Mermoz Gare SNCF",43.463488,1.325638,-1,0,AEC:SA:01421,Europe/Paris,2,AEC, +AEC:SP:01422,1,"Mozart",43.448936,1.318663,-1,0,AEC:SA:01423,Europe/Paris,2,AEC, +AEC:SP:01423,1,"Mozart",43.448825,1.318802,-1,0,AEC:SA:01423,Europe/Paris,2,AEC, +AEC:SP:01424,1,"Niel",43.460484,1.324503,-1,0,AEC:SA:01425,Europe/Paris,2,AEC, +AEC:SP:01425,1,"Niel",43.460694,1.324949,-1,0,AEC:SA:01425,Europe/Paris,2,AEC, +AEC:SP:01426,1,"Peyramont",43.464554,1.316011,-1,0,AEC:SA:01427,Europe/Paris,0,AEC, +AEC:SP:01428,1,"Pyrénées",43.456409,1.323392,-1,0,AEC:SA:01429,Europe/Paris,2,AEC, +AEC:SP:01429,1,"Pyrénées",43.456471,1.323623,-1,0,AEC:SA:01429,Europe/Paris,2,AEC, +AEC:SP:01432,1,"Séro",43.462237,1.324751,-1,0,AEC:SA:01432,Europe/Paris,2,AEC, +AEC:SP:01433,1,"Vergnole",43.449116,1.33636,-1,0,AEC:SA:01434,Europe/Paris,0,AEC, +AEC:SP:01434,1,"Vernhole",43.448785,1.336347,-1,0,AEC:SA:01434,Europe/Paris,0,AEC, +AEC:SP:01435,1,"Vincent Auriol",43.470171,1.329644,-1,0,AEC:SA:01436,Europe/Paris,0,AEC, +AEC:SP:01436,1,"Vincent Auriol",43.470031,1.32998,-1,0,AEC:SA:01436,Europe/Paris,0,AEC, +AEC:SP:01437,1,"CAT",43.374438,1.623513,-1,0,AEC:SA:01437,Europe/Paris,0,AEC, +AEC:SP:01438,1,"Centre",43.357128,1.623478,-1,0,AEC:SA:01439,Europe/Paris,2,AEC, +AEC:SP:01439,1,"Centre",43.358592,1.623619,-1,0,AEC:SA:01439,Europe/Paris,2,AEC, +AEC:SP:01440,1,"Collège",43.351277,1.624927,-1,0,AEC:SA:01441,Europe/Paris,0,AEC, +AEC:SP:01441,1,"Collège",43.351546,1.625177,-1,0,AEC:SA:01441,Europe/Paris,0,AEC, +AEC:SP:01443,1,"Maison de Retraite",43.359001,1.635819,-1,0,AEC:SA:01442,Europe/Paris,0,AEC, +AEC:SP:01444,1,"Route de St Léon",43.359616,1.624003,-1,0,AEC:SA:01445,Europe/Paris,0,AEC, +AEC:SP:01445,1,"Route de St Léon",43.359569,1.623812,-1,0,AEC:SA:01445,Europe/Paris,0,AEC, +AEC:SP:01446,1,"Le Mona",43.496886,0.966636,-1,0,AEC:SA:01447,Europe/Paris,0,AEC, +AEC:SP:01447,1,"Le Mona",43.496515,0.966874,-1,0,AEC:SA:01447,Europe/Paris,0,AEC, +AEC:SP:01448,1,"Centre Commercial",43.346833,1.264184,-1,0,AEC:SA:01449,Europe/Paris,2,AEC, +AEC:SP:01449,1,"Centre Commercial",43.346637,1.26376,-1,0,AEC:SA:01449,Europe/Paris,2,AEC, +AEC:SP:01450,1,"Le Gaillard du Port",43.369962,1.277989,-1,0,AEC:SA:01451,Europe/Paris,0,AEC, +AEC:SP:01451,1,"Le Gaillard du Port",43.370214,1.277532,-1,0,AEC:SA:01451,Europe/Paris,0,AEC, +AEC:SP:01452,1,"Noyers",43.361488,1.275278,-1,0,AEC:SA:01453,Europe/Paris,0,AEC, +AEC:SP:01453,1,"Noyers",43.361811,1.275526,-1,0,AEC:SA:01453,Europe/Paris,0,AEC, +AEC:SP:01454,1,"Piscine",43.353171,1.2736,-1,0,AEC:SA:01455,Europe/Paris,2,AEC, +AEC:SP:01455,1,"Piscine",43.353089,1.273711,-1,0,AEC:SA:01455,Europe/Paris,2,AEC, +AEC:SP:01456,1,"Place Pardailhan",43.356527,1.274278,-1,0,AEC:SA:01457,Europe/Paris,0,AEC, +AEC:SP:01457,1,"Place Pardailhan",43.357195,1.274617,-1,0,AEC:SA:01457,Europe/Paris,0,AEC, +AEC:SP:01458,1,"Sainte Marie",43.358638,1.274886,-1,0,AEC:SA:01458,Europe/Paris,0,AEC, +AEC:SP:01459,1,"Centre",43.522357,1.588392,-1,0,AEC:SA:01460,Europe/Paris,0,AEC, +AEC:SP:01460,1,"Centre",43.522314,1.588676,-1,0,AEC:SA:01460,Europe/Paris,0,AEC, +AEC:SP:01461,1,"LEPA Parking",43.780043,1.319996,-1,0,AEC:SA:01461,Europe/Paris,0,AEC, +AEC:SP:01462,1,"Lycée Agricole",43.782422,1.316172,-1,0,AEC:SA:01463,Europe/Paris,0,AEC, +AEC:SP:01463,1,"Lycée Agricole",43.7825,1.316896,-1,0,AEC:SA:01463,Europe/Paris,0,AEC, +AEC:SP:01464,1,"Mairie",43.780347,1.308219,-1,0,AEC:SA:01465,Europe/Paris,0,AEC, +AEC:SP:01465,1,"Mairie",43.78063,1.308079,-1,0,AEC:SA:01465,Europe/Paris,0,AEC, +AEC:SP:01466,1,"Rue de Montréjeau",42.972728,0.647228,-1,0,AEC:SA:01467,Europe/Paris,0,AEC, +AEC:SP:01467,1,"Rue de Montréjeau",42.972773,0.646881,-1,0,AEC:SA:01467,Europe/Paris,0,AEC, +AEC:SP:01468,1,"Centre",43.202483,1.069222,-1,0,AEC:SA:01469,Europe/Paris,0,AEC, +AEC:SP:01469,1,"Centre",43.202324,1.069128,-1,0,AEC:SA:01469,Europe/Paris,0,AEC, +AEC:SP:01474,1,"Clos Maynal",43.759366,1.550522,-1,0,AEC:SA:01475,Europe/Paris,0,AEC, +AEC:SP:01475,1,"Clos Maynal",43.759852,1.550355,-1,0,AEC:SA:01475,Europe/Paris,0,AEC, +AEC:SP:01476,1,"Salles des Fêtes",43.756496,1.555,-1,0,AEC:SA:12385,Europe/Paris,2,AEC, +AEC:SP:01477,1,"Ducharme",43.499757,1.514599,-1,0,AEC:SA:01478,Europe/Paris,0,AEC, +AEC:SP:01478,1,"Ducharme",43.499314,1.515392,-1,0,AEC:SA:01478,Europe/Paris,0,AEC, +AEC:SP:01479,1,"Le Merlet",43.503581,1.510357,-1,0,AEC:SA:01480,Europe/Paris,2,AEC, +AEC:SP:01480,1,"Le Merlet",43.503615,1.510638,-1,0,AEC:SA:01480,Europe/Paris,2,AEC, +AEC:SP:01483,1,"Mairie",43.703158,1.466815,-1,0,AEC:SA:01484,Europe/Paris,0,AEC, +AEC:SP:01484,1,"Mairie",43.703318,1.466882,-1,0,AEC:SA:01484,Europe/Paris,2,AEC, +AEC:SP:01485,1,"Turtelle",43.702911,1.459377,-1,0,AEC:SA:01486,Europe/Paris,0,AEC, +AEC:SP:01486,1,"Turtelle",43.702598,1.459703,-1,0,AEC:SA:01486,Europe/Paris,0,AEC, +AEC:SP:01487,1,"Mairie",43.738429,1.11667,-1,0,AEC:SA:01488,Europe/Paris,0,AEC, +AEC:SP:01488,1,"Mairie",43.738286,1.117003,-1,0,AEC:SA:01488,Europe/Paris,0,AEC, +AEC:SP:01489,1,"Cap d'Oustau",43.316155,1.182541,-1,0,AEC:SA:01490,Europe/Paris,0,AEC, +AEC:SP:01490,1,"Cap d'Oustau",43.316674,1.181944,-1,0,AEC:SA:01490,Europe/Paris,0,AEC, +AEC:SP:01491,1,"Les Lacs",43.327313,1.171341,-1,0,AEC:SA:01492,Europe/Paris,0,AEC, +AEC:SP:01492,1,"Les Lacs",43.327189,1.170931,-1,0,AEC:SA:01492,Europe/Paris,0,AEC, +AEC:SP:01493,1,"Mairie",43.32158,1.177003,-1,0,AEC:SA:01494,Europe/Paris,0,AEC, +AEC:SP:01494,1,"Mairie",43.321891,1.176931,-1,0,AEC:SA:01494,Europe/Paris,0,AEC, +AEC:SP:01505,1,"La Ginestière",43.629275,1.541263,-1,0,AEC:SA:01506,Europe/Paris,0,AEC, +AEC:SP:01506,1,"La Ginestière",43.629138,1.541156,-1,0,AEC:SA:01506,Europe/Paris,0,AEC, +AEC:SP:01507,1,"Bourassol",43.476282,1.397789,-1,0,AEC:SA:01513,Europe/Paris,2,AEC, +AEC:SP:01508,1,"Coquelicots",43.481788,1.400102,-1,0,AEC:SA:01509,Europe/Paris,0,AEC, +AEC:SP:01509,1,"Coquelicots",43.483464,1.400416,-1,0,AEC:SA:01509,Europe/Paris,0,AEC, +AEC:SP:01511,1,"Justarette",43.483295,1.401477,-1,0,AEC:SA:01512,Europe/Paris,0,AEC, +AEC:SP:01512,1,"Justarette",43.484747,1.400694,-1,0,AEC:SA:01512,Europe/Paris,0,AEC, +AEC:SP:01513,1,"La Cépette",43.476437,1.398173,-1,0,AEC:SA:01513,Europe/Paris,2,AEC, +AEC:SP:01516,1,"Birazel",43.53973,1.283153,-1,0,AEC:SA:01517,Europe/Paris,0,AEC, +AEC:SP:01517,1,"Birazel",43.53998,1.283751,-1,0,AEC:SA:01517,Europe/Paris,0,AEC, +AEC:SP:01518,1,"Blériot",43.554229,1.295863,-1,0,AEC:SA:01519,Europe/Paris,0,AEC, +AEC:SP:01519,1,"Blériot",43.554321,1.295388,-1,0,AEC:SA:01519,Europe/Paris,0,AEC, +AEC:SP:01520,1,"Charlas",43.564418,1.317979,-1,0,AEC:SA:01521,Europe/Paris,2,AEC, +AEC:SP:01521,1,"Charlas",43.564361,1.318337,-1,0,AEC:SA:01521,Europe/Paris,2,AEC, +AEC:SP:01522,1,"Fronton",43.556586,1.274924,-1,0,AEC:SA:01523,Europe/Paris,0,AEC, +AEC:SP:01523,1,"Fronton",43.556811,1.274972,-1,0,AEC:SA:01523,Europe/Paris,0,AEC, +AEC:SP:01524,1,"Les Mésanges",43.560379,1.301786,-1,0,AEC:SA:01525,Europe/Paris,0,AEC, +AEC:SP:01525,1,"Les Mésanges",43.560575,1.301627,-1,0,AEC:SA:01525,Europe/Paris,0,AEC, +AEC:SP:01526,1,"Monestié",43.562976,1.291446,-1,0,AEC:SA:01527,Europe/Paris,0,AEC, +AEC:SP:01527,1,"Monestié",43.563298,1.291592,-1,0,AEC:SA:01527,Europe/Paris,0,AEC, +AEC:SP:01528,1,"Parc de Campagne",43.562997,1.312086,-1,0,AEC:SA:01529,Europe/Paris,0,AEC, +AEC:SP:01529,1,"Parc de Campagne",43.562744,1.312263,-1,0,AEC:SA:01529,Europe/Paris,0,AEC, +AEC:SP:01530,1,"Pierre Loti",43.568085,1.308798,-1,0,AEC:SA:01531,Europe/Paris,0,AEC, +AEC:SP:01531,1,"Pierre Loti",43.568802,1.309363,-1,0,AEC:SA:01531,Europe/Paris,0,AEC, +AEC:SP:01532,1,"Pilon",43.536178,1.279293,-1,0,AEC:SA:01533,Europe/Paris,0,AEC, +AEC:SP:01533,1,"Pilon",43.536052,1.279288,-1,0,AEC:SA:01533,Europe/Paris,0,AEC, +AEC:SP:01534,1,"Plaisance Accueil",43.564781,1.297237,-1,0,AEC:SA:01535,Europe/Paris,0,AEC, +AEC:SP:01535,1,"Plaisance Accueil",43.564668,1.297349,-1,0,AEC:SA:01535,Europe/Paris,2,AEC, +AEC:SP:01542,1,"Eglise",43.086524,0.811694,-1,0,AEC:SA:01543,Europe/Paris,0,AEC, +AEC:SP:01543,1,"Eglise",43.086496,0.81218,-1,0,AEC:SA:01543,Europe/Paris,0,AEC, +AEC:SP:01544,1,"La Rouère",43.091127,0.799269,-1,0,AEC:SA:01547,Europe/Paris,0,AEC, +AEC:SP:01545,1,"La Rouère",43.094418,0.792634,-1,0,AEC:SA:01546,Europe/Paris,0,AEC, +AEC:SP:01546,1,"La Rouère II",43.094259,0.792381,-1,0,AEC:SA:01546,Europe/Paris,0,AEC, +AEC:SP:01547,1,"Rouère",43.091577,0.799778,-1,0,AEC:SA:01547,Europe/Paris,0,AEC, +AEC:SP:01548,1,"Granaillet",43.490457,1.526321,-1,0,AEC:SA:01549,Europe/Paris,0,AEC, +AEC:SP:01549,1,"Granouillet",43.490866,1.525981,-1,0,AEC:SA:01549,Europe/Paris,0,AEC, +AEC:SP:01550,1,"L'Espitalet",43.496643,1.518375,-1,0,AEC:SA:01551,Europe/Paris,0,AEC, +AEC:SP:01551,1,"Lespitalet",43.497011,1.518169,-1,0,AEC:SA:01551,Europe/Paris,0,AEC, +AEC:SP:01552,1,"Rodoloze",43.494689,1.520622,-1,0,AEC:SA:01553,Europe/Paris,0,AEC, +AEC:SP:01553,1,"Rodoloze",43.49473,1.520934,-1,0,AEC:SA:01553,Europe/Paris,0,AEC, +AEC:SP:01554,1,"Mairie",43.817527,1.311022,-1,0,AEC:SA:01555,Europe/Paris,0,AEC, +AEC:SP:01555,1,"Mairie",43.817138,1.311141,-1,0,AEC:SA:01555,Europe/Paris,0,AEC, +AEC:SP:01556,1,"Mairie",43.109471,0.600454,-1,0,AEC:SA:01557,Europe/Paris,0,AEC, +AEC:SP:01557,1,"Mairie",43.109583,0.600884,-1,0,AEC:SA:01557,Europe/Paris,0,AEC, +AEC:SP:01558,1,"Taillebourg",43.096215,0.614259,-1,0,AEC:SA:01559,Europe/Paris,0,AEC, +AEC:SP:01559,1,"Taillebourg",43.096289,0.613543,-1,0,AEC:SA:01559,Europe/Paris,0,AEC, +AEC:SP:01560,1,"Centre Commercial",43.530669,1.403856,-1,0,AEC:SA:01561,Europe/Paris,0,AEC, +AEC:SP:01561,1,"Centre Commercial",43.530802,1.405633,-1,0,AEC:SA:01561,Europe/Paris,0,AEC, +AEC:SP:01562,1,"Bois Communal",43.44003,1.173354,-1,0,AEC:SA:01563,Europe/Paris,0,AEC, +AEC:SP:01563,1,"Bois Communal",43.439926,1.172826,-1,0,AEC:SA:01563,Europe/Paris,0,AEC, +AEC:SP:01564,1,"Commanderie",43.416624,1.171765,-1,0,AEC:SA:01565,Europe/Paris,0,AEC, +AEC:SP:01565,1,"Commanderie",43.416834,1.171699,-1,0,AEC:SA:01565,Europe/Paris,0,AEC, +AEC:SP:01566,1,"Nagut",43.44448,1.180806,-1,0,AEC:SA:01567,Europe/Paris,0,AEC, +AEC:SP:01567,1,"Nagut",43.444669,1.181378,-1,0,AEC:SA:01567,Europe/Paris,0,AEC, +AEC:SP:01568,1,"La Chapelle",43.342991,1.040526,-1,0,AEC:SA:01569,Europe/Paris,0,AEC, +AEC:SP:01569,1,"La Chapelle",43.343124,1.040937,-1,0,AEC:SA:01569,Europe/Paris,0,AEC, +AEC:SP:01570,1,"La Hagette",43.347725,1.059739,-1,0,AEC:SA:01571,Europe/Paris,0,AEC, +AEC:SP:01571,1,"La Hagette",43.347769,1.059298,-1,0,AEC:SA:01571,Europe/Paris,0,AEC, +AEC:SP:01572,1,"Mairie",43.342956,1.037195,-1,0,AEC:SA:01573,Europe/Paris,0,AEC, +AEC:SP:01573,1,"Mairie",43.343085,1.037273,-1,0,AEC:SA:01573,Europe/Paris,0,AEC, +AEC:SP:01574,1,"La Cave",43.340056,1.431624,-1,0,AEC:SA:01575,Europe/Paris,2,AEC, +AEC:SP:01575,1,"La Cave",43.339705,1.43203,-1,0,AEC:SA:01575,Europe/Paris,2,AEC, +AEC:SP:01576,1,"Mairie",43.748612,1.061397,-1,0,AEC:SA:01577,Europe/Paris,0,AEC, +AEC:SP:01577,1,"Mairie",43.74874,1.061405,-1,0,AEC:SA:01577,Europe/Paris,0,AEC, +AEC:SP:01578,1,"Ginestière",43.587085,1.540035,-1,0,AEC:SA:01579,Europe/Paris,0,AEC, +AEC:SP:01579,1,"Ginestière",43.587316,1.539138,-1,0,AEC:SA:01579,Europe/Paris,0,AEC, +AEC:SP:01580,1,"Lauragais",43.586647,1.533964,-1,0,AEC:SA:01581,Europe/Paris,0,AEC, +AEC:SP:01581,1,"Lauragais",43.586596,1.534269,-1,0,AEC:SA:01581,Europe/Paris,0,AEC, +AEC:SP:01582,1,"Mairie",43.585547,1.528943,-1,0,AEC:SA:01583,Europe/Paris,0,AEC, +AEC:SP:01583,1,"Mairie",43.585393,1.529013,-1,0,AEC:SA:01583,Europe/Paris,0,AEC, +AEC:SP:01584,1,"Pyrénées",43.585665,1.525461,-1,0,AEC:SA:01585,Europe/Paris,0,AEC, +AEC:SP:01585,1,"Pyrénées",43.585837,1.525543,-1,0,AEC:SA:01585,Europe/Paris,0,AEC, +AEC:SP:01586,1,"Boulevard F. Mitterrand",43.553992,1.474109,-1,0,AEC:SA:01587,Europe/Paris,2,AEC, +AEC:SP:01587,1,"Boulevard F. Mitterrand",43.554403,1.475613,-1,0,AEC:SA:01587,Europe/Paris,2,AEC, +AEC:SP:01588,1,"Deux Ormeaux",43.540767,1.478996,-1,0,AEC:SA:01589,Europe/Paris,0,AEC, +AEC:SP:01589,1,"Deux Ormeaux",43.540831,1.47874,-1,0,AEC:SA:01589,Europe/Paris,0,AEC, +AEC:SP:01590,1,"Parc St-Agne",43.55241,1.468977,-1,0,AEC:SA:01591,Europe/Paris,0,AEC, +AEC:SP:01591,1,"Parc St-Agne",43.552623,1.46917,-1,0,AEC:SA:01591,Europe/Paris,0,AEC, +AEC:SP:01592,1,"Pastourelles",43.543526,1.477101,-1,0,AEC:SA:01593,Europe/Paris,0,AEC, +AEC:SP:01593,1,"Pastourelles",43.543615,1.477378,-1,0,AEC:SA:01593,Europe/Paris,0,AEC, +AEC:SP:01594,1,"Ramonville Sud",43.53653,1.482541,-1,0,AEC:SA:01595,Europe/Paris,2,AEC, +AEC:SP:01595,1,"Ramonville Sud",43.53685,1.482537,-1,0,AEC:SA:01595,Europe/Paris,2,AEC, +AEC:SP:01596,1,"Tirane",43.376083,1.711973,-1,0,AEC:SA:01597,Europe/Paris,0,AEC, +AEC:SP:01597,1,"Tirane",43.375857,1.712471,-1,0,AEC:SA:01597,Europe/Paris,0,AEC, +AEC:SP:01598,1,"Beausejour",43.452981,1.986244,-1,0,AEC:SA:01599,Europe/Paris,0,AEC, +AEC:SP:01599,1,"Beausejour",43.452843,1.986249,-1,0,AEC:SA:01599,Europe/Paris,0,AEC, +AEC:SP:01600,1,"Claude Nougaro",43.461505,2.004659,-1,0,AEC:SA:01600,Europe/Paris,2,AEC, +AEC:SP:01603,1,"Gambetta",43.457807,2.006864,-1,0,AEC:SA:01603,Europe/Paris,0,AEC, +AEC:SP:01604,1,"Gendarmerie",43.461315,1.997991,-1,0,AEC:SA:01605,Europe/Paris,0,AEC, +AEC:SP:01605,1,"Gendarmerie",43.461525,1.997996,-1,0,AEC:SA:01605,Europe/Paris,0,AEC, +AEC:SP:01606,1,"La Landelle Basse",43.464521,1.989473,-1,0,AEC:SA:01607,Europe/Paris,0,AEC, +AEC:SP:01607,1,"La Landelle Basse",43.464681,1.989361,-1,0,AEC:SA:01607,Europe/Paris,0,AEC, +AEC:SP:01608,1,"La Poterie",43.455295,1.996969,-1,0,AEC:SA:01609,Europe/Paris,2,AEC, +AEC:SP:01609,1,"La Poterie",43.455218,1.997112,-1,0,AEC:SA:01609,Europe/Paris,2,AEC, +AEC:SP:01610,1,"Lemmarsou",43.445877,1.948287,-1,0,AEC:SA:01611,Europe/Paris,0,AEC, +AEC:SP:01611,1,"Lemmarsou",43.445753,1.948511,-1,0,AEC:SA:01611,Europe/Paris,0,AEC, +AEC:SP:01612,1,"LEP",43.450566,2.011296,-1,0,AEC:SA:01612,Europe/Paris,0,AEC, +AEC:SP:01613,1,"Lycée V. Auriol",43.456517,2.011126,-1,0,AEC:SA:01613,Europe/Paris,2,AEC, +AEC:SP:01614,1,"Saint Ferréol",43.44109,2.023918,-1,0,AEC:SA:01617,Europe/Paris,0,AEC, +AEC:SP:01615,1,"Saint Jean",43.447555,1.961998,-1,0,AEC:SA:01616,Europe/Paris,0,AEC, +AEC:SP:01616,1,"Saint Jean",43.447691,1.961994,-1,0,AEC:SA:01616,Europe/Paris,0,AEC, +AEC:SP:01617,1,"Saint-Ferréol",43.440888,2.023687,-1,0,AEC:SA:01617,Europe/Paris,0,AEC, +AEC:SP:01618,1,"Dupac",43.07872,0.761979,-1,0,AEC:SA:01619,Europe/Paris,0,AEC, +AEC:SP:01619,1,"Dupac",43.078638,0.76255,-1,0,AEC:SA:01619,Europe/Paris,0,AEC, +AEC:SP:01620,1,"Giratoire Vidal",43.412829,1.124551,-1,0,AEC:SA:01621,Europe/Paris,0,AEC, +AEC:SP:01621,1,"Giratoire Vidal",43.41271,1.124852,-1,0,AEC:SA:01621,Europe/Paris,0,AEC, +AEC:SP:01622,1,"Le Foirail",43.413306,1.117389,-1,0,AEC:SA:01622,Europe/Paris,2,AEC, +AEC:SP:01625,1,"Campagne",43.260305,1.193255,-1,0,AEC:SA:01626,Europe/Paris,2,AEC, +AEC:SP:01626,1,"Campagne",43.260288,1.193503,-1,0,AEC:SA:01626,Europe/Paris,2,AEC, +AEC:SP:01631,1,"Maison de Retraite",43.253484,1.200303,-1,0,AEC:SA:01632,Europe/Paris,0,AEC, +AEC:SP:01632,1,"Maison de Retraite",43.25363,1.200339,-1,0,AEC:SA:01632,Europe/Paris,0,AEC, +AEC:SP:01635,1,"Stade",43.258001,1.194808,-1,0,AEC:SA:01636,Europe/Paris,0,AEC, +AEC:SP:01636,1,"Stade",43.25806,1.194987,-1,0,AEC:SA:01636,Europe/Paris,0,AEC, +AEC:SP:01637,1,"Centre Commercial",43.515261,1.375128,-1,0,AEC:SA:01637,Europe/Paris,0,AEC, +AEC:SP:01638,1,"Ecole - Mairie",43.466212,1.063992,-1,0,AEC:SA:01638,Europe/Paris,0,AEC, +AEC:SP:01639,1,"Ecole-Mairie",43.466232,1.064092,-1,0,AEC:SA:01639,Europe/Paris,0,AEC, +AEC:SP:01640,1,"Mairie",43.466946,1.063785,-1,0,AEC:SA:01641,Europe/Paris,0,AEC, +AEC:SP:01641,1,"Mairie",43.467095,1.063769,-1,0,AEC:SA:01641,Europe/Paris,0,AEC, +AEC:SP:01642,1,"Les Cantoux",43.538189,1.163769,-1,0,AEC:SA:01642,Europe/Paris,0,AEC, +AEC:SP:01643,1,"Mairie",43.528369,1.146005,-1,0,AEC:SA:01644,Europe/Paris,0,AEC, +AEC:SP:01644,1,"Mairie",43.528204,1.146233,-1,0,AEC:SA:01644,Europe/Paris,0,AEC, +AEC:SP:01645,1,"Acacias",43.695291,1.410227,-1,0,AEC:SA:01646,Europe/Paris,0,AEC, +AEC:SP:01646,1,"Acacias",43.695377,1.410866,-1,0,AEC:SA:01646,Europe/Paris,0,AEC, +AEC:SP:01650,1,"Ecoles",43.689153,1.415451,-1,0,AEC:SA:14672,Europe/Paris,0,AEC, +AEC:SP:01652,1,"Mairie",43.693112,1.412667,-1,0,AEC:SA:01653,Europe/Paris,0,AEC, +AEC:SP:01653,1,"Mairie",43.693213,1.413224,-1,0,AEC:SA:01653,Europe/Paris,0,AEC, +AEC:SP:01654,1,"Mariel",43.681728,1.420963,-1,0,AEC:SA:01655,Europe/Paris,0,AEC, +AEC:SP:01655,1,"Mariel",43.68214,1.421195,-1,0,AEC:SA:01655,Europe/Paris,0,AEC, +AEC:SP:01656,1,"Musiciens",43.683715,1.419372,-1,0,AEC:SA:01657,Europe/Paris,0,AEC, +AEC:SP:01657,1,"Musiciens",43.684049,1.419875,-1,0,AEC:SA:01657,Europe/Paris,0,AEC, +AEC:SP:01658,1,"Prairie",43.70064,1.407577,-1,0,AEC:SA:01659,Europe/Paris,0,AEC, +AEC:SP:01659,1,"Prairie",43.70111,1.407617,-1,0,AEC:SA:01659,Europe/Paris,0,AEC, +AEC:SP:01660,1,"Violettes",43.686838,1.417484,-1,0,AEC:SA:01661,Europe/Paris,0,AEC, +AEC:SP:01661,1,"Violettes",43.687738,1.417332,-1,0,AEC:SA:01661,Europe/Paris,0,AEC, +AEC:SP:01668,1,"Mairie",42.915224,0.69197,-1,0,AEC:SA:01669,Europe/Paris,0,AEC, +AEC:SP:01669,1,"Mairie",42.915259,0.69215,-1,0,AEC:SA:01669,Europe/Paris,0,AEC, +AEC:SP:01670,1,"Pont",42.915567,0.69147,-1,0,AEC:SA:01671,Europe/Paris,0,AEC, +AEC:SP:01671,1,"Pont",42.915368,0.691612,-1,0,AEC:SA:01671,Europe/Paris,0,AEC, +AEC:SP:01672,1,"Ecole",43.030157,0.573976,-1,0,AEC:SA:01673,Europe/Paris,0,AEC, +AEC:SP:01673,1,"Ecole",43.029495,0.573614,-1,0,AEC:SA:01673,Europe/Paris,0,AEC, +AEC:SP:01674,1,"Village",43.782039,1.19472,-1,0,AEC:SA:01675,Europe/Paris,0,AEC, +AEC:SP:01675,1,"Village",43.781779,1.195213,-1,0,AEC:SA:01675,Europe/Paris,0,AEC, +AEC:SP:01676,1,"Lanauze",43.462314,1.212005,-1,0,AEC:SA:01677,Europe/Paris,0,AEC, +AEC:SP:01677,1,"Lanauze",43.461809,1.211463,-1,0,AEC:SA:01677,Europe/Paris,0,AEC, +AEC:SP:01678,1,"Mairie",43.465908,1.215978,-1,0,AEC:SA:01679,Europe/Paris,0,AEC, +AEC:SP:01679,1,"Mairie",43.465957,1.216124,-1,0,AEC:SA:01679,Europe/Paris,0,AEC, +AEC:SP:01680,1,"Bernadou",43.491256,1.133653,-1,0,AEC:SA:01681,Europe/Paris,0,AEC, +AEC:SP:01681,1,"Bernadou",43.491136,1.133615,-1,0,AEC:SA:01681,Europe/Paris,0,AEC, +AEC:SP:01682,1,"Fauré",43.501257,1.162318,-1,0,AEC:SA:01683,Europe/Paris,0,AEC, +AEC:SP:01683,1,"Fauré",43.501093,1.162343,-1,0,AEC:SA:01683,Europe/Paris,0,AEC, +AEC:SP:01684,1,"Holentis",43.505319,1.169185,-1,0,AEC:SA:01794,Europe/Paris,2,AEC, +AEC:SP:01685,1,"Le Colomé",43.495231,1.152599,-1,0,AEC:SA:01686,Europe/Paris,0,AEC, +AEC:SP:01686,1,"Le Colomé",43.495341,1.153231,-1,0,AEC:SA:01686,Europe/Paris,0,AEC, +AEC:SP:01687,1,"Mairie",43.492442,1.144329,-1,0,AEC:SA:01688,Europe/Paris,0,AEC, +AEC:SP:01688,1,"Mairie",43.492388,1.144574,-1,0,AEC:SA:01688,Europe/Paris,2,AEC, +AEC:SP:01689,1,"Rigail",43.490783,1.128558,-1,0,AEC:SA:01690,Europe/Paris,0,AEC, +AEC:SP:01690,1,"Rigail",43.490595,1.128162,-1,0,AEC:SA:01690,Europe/Paris,0,AEC, +AEC:SP:01691,1,"Le Château",43.280438,1.136801,-1,0,AEC:SA:01692,Europe/Paris,0,AEC, +AEC:SP:01692,1,"Le Château",43.28016,1.136786,-1,0,AEC:SA:01692,Europe/Paris,0,AEC, +AEC:SP:01693,1,"Mairie",43.279698,1.139163,-1,0,AEC:SA:01694,Europe/Paris,0,AEC, +AEC:SP:01694,1,"Mairie",43.279873,1.138681,-1,0,AEC:SA:01694,Europe/Paris,0,AEC, +AEC:SP:01695,1,"Le Château",43.194172,0.854699,-1,0,AEC:SA:01696,Europe/Paris,0,AEC, +AEC:SP:01696,1,"Le Château",43.193962,0.854881,-1,0,AEC:SA:01696,Europe/Paris,0,AEC, +AEC:SP:01697,1,"Seglan",43.192528,0.849924,-1,0,AEC:SA:01698,Europe/Paris,0,AEC, +AEC:SP:01698,1,"Séglan",43.192363,0.849986,-1,0,AEC:SA:01698,Europe/Paris,0,AEC, +AEC:SP:01699,1,"Cadenac",43.448849,1.916032,-1,0,AEC:SA:01700,Europe/Paris,0,AEC, +AEC:SP:01700,1,"Cadenac",43.44892,1.916901,-1,0,AEC:SA:01700,Europe/Paris,0,AEC, +AEC:SP:01701,1,"Quartier St Roch",43.450164,1.883457,-1,0,AEC:SA:01702,Europe/Paris,0,AEC, +AEC:SP:01702,1,"Quartier St Roch",43.450218,1.883666,-1,0,AEC:SA:01702,Europe/Paris,0,AEC, +AEC:SP:01703,1,"Voie Férrée",43.447656,1.929776,-1,0,AEC:SA:01704,Europe/Paris,0,AEC, +AEC:SP:01704,1,"Voie Férrée",43.447524,1.929885,-1,0,AEC:SA:01704,Europe/Paris,0,AEC, +AEC:SP:01705,1,"Ancienne halle",43.109565,0.723243,-1,0,AEC:SA:01706,Europe/Paris,0,AEC, +AEC:SP:01706,1,"Ancienne halle",43.109577,0.723521,-1,0,AEC:SA:01706,Europe/Paris,0,AEC, +AEC:SP:01707,1,"Bosc",43.102918,0.72646,-1,0,AEC:SA:01708,Europe/Paris,0,AEC, +AEC:SP:01708,1,"Bosc",43.104222,0.726711,-1,0,AEC:SA:01708,Europe/Paris,0,AEC, +AEC:SP:01709,1,"Château Rinaud",43.118097,0.729028,-1,0,AEC:SA:01709,Europe/Paris,0,AEC, +AEC:SP:01710,1,"Collège Leclerc",43.108702,0.727255,-1,0,AEC:SA:01711,Europe/Paris,0,AEC, +AEC:SP:01711,1,"Collège Leclerc",43.109068,0.727715,-1,0,AEC:SA:01711,Europe/Paris,0,AEC, +AEC:SP:01712,1,"Gare SNCF",43.105106,0.729261,-1,0,SIN:SA:OCE87611137,Europe/Paris,2,AEC, +AEC:SP:01713,1,"Jardin Public",43.106651,0.720352,-1,0,AEC:SA:01714,Europe/Paris,2,AEC, +AEC:SP:01714,1,"Jardin Public",43.106457,0.72091,-1,0,AEC:SA:01714,Europe/Paris,2,AEC, +AEC:SP:01715,1,"La Serre de Cazaux",43.139205,0.734358,-1,0,AEC:SA:01716,Europe/Paris,0,AEC, +AEC:SP:01716,1,"La Serre de Cazaux",43.139216,0.734981,-1,0,AEC:SA:01716,Europe/Paris,2,AEC, +AEC:SP:01717,1,"La Serre de Nérous",43.131367,0.706021,-1,0,AEC:SA:01718,Europe/Paris,0,AEC, +AEC:SP:01718,1,"La Serre de Nérous",43.13146,0.706534,-1,0,AEC:SA:01718,Europe/Paris,0,AEC, +AEC:SP:01719,1,"Lavoisier",43.10783,0.715919,-1,0,AEC:SA:01720,Europe/Paris,0,AEC, +AEC:SP:01720,1,"Lavoisier",43.108136,0.715448,-1,0,AEC:SA:01720,Europe/Paris,0,AEC, +AEC:SP:01721,1,"Lycée agricole",43.117082,0.730251,-1,0,AEC:SA:01722,Europe/Paris,0,AEC, +AEC:SP:01722,1,"Lycée agricole",43.117098,0.729996,-1,0,AEC:SA:01722,Europe/Paris,0,AEC, +AEC:SP:01723,1,"Lycée Bagatelle",43.112202,0.744736,-1,0,AEC:SA:01724,Europe/Paris,2,AEC, +AEC:SP:01724,1,"Lycée Bagatelle",43.11219,0.745792,-1,0,AEC:SA:01724,Europe/Paris,2,AEC, +AEC:SP:01725,1,"Maréchal Joffre",43.109132,0.709568,-1,0,AEC:SA:01725,Europe/Paris,0,AEC, +AEC:SP:01726,1,"Renaissance",43.109385,0.725367,-1,0,AEC:SA:01726,Europe/Paris,0,AEC, +AEC:SP:01727,1,"Route de Saint Marcet",43.145022,0.739547,-1,0,AEC:SA:01728,Europe/Paris,0,AEC, +AEC:SP:01728,1,"Route de Saint Marcet",43.145216,0.740347,-1,0,AEC:SA:01728,Europe/Paris,0,AEC, +AEC:SP:01729,1,"Stade Ribet",43.118057,0.727302,-1,0,AEC:SA:01730,Europe/Paris,2,AEC, +AEC:SP:01730,1,"Stade Ribet",43.117643,0.726949,-1,0,AEC:SA:01730,Europe/Paris,2,AEC, +AEC:SP:01731,1,"Centre",43.683042,1.485277,-1,0,AEC:SA:01732,Europe/Paris,0,AEC, +AEC:SP:01732,1,"Centre",43.683303,1.485672,-1,0,AEC:SA:01732,Europe/Paris,0,AEC, +AEC:SP:01733,1,"Le Bois",43.472776,1.734025,-1,0,AEC:SA:01734,Europe/Paris,0,AEC, +AEC:SP:01734,1,"Le Bois",43.472798,1.73447,-1,0,AEC:SA:01734,Europe/Paris,0,AEC, +AEC:SP:01735,1,"Peyrecave",43.474072,1.72667,-1,0,AEC:SA:01736,Europe/Paris,0,AEC, +AEC:SP:01736,1,"Peyrecave",43.473963,1.726279,-1,0,AEC:SA:01736,Europe/Paris,0,AEC, +AEC:SP:01737,1,"Calvaire",43.157106,0.694298,-1,0,AEC:SA:01738,Europe/Paris,0,AEC, +AEC:SP:01738,1,"Calvaire",43.157051,0.695099,-1,0,AEC:SA:01738,Europe/Paris,0,AEC, +AEC:SP:01739,1,"Charlary",43.666613,1.507859,-1,0,AEC:SA:01740,Europe/Paris,0,AEC, +AEC:SP:01740,1,"Charlary",43.66674,1.507567,-1,0,AEC:SA:01740,Europe/Paris,0,AEC, +AEC:SP:01741,1,"Coteaux",43.662113,1.495386,-1,0,AEC:SA:01745,Europe/Paris,0,AEC, +AEC:SP:01742,1,"Mairie",43.664832,1.504416,-1,0,AEC:SA:01743,Europe/Paris,0,AEC, +AEC:SP:01743,1,"Mairie",43.665112,1.505225,-1,0,AEC:SA:01743,Europe/Paris,0,AEC, +AEC:SP:01744,1,"Mirabelles",43.660914,1.491851,-1,0,AEC:SA:01744,Europe/Paris,0,AEC, +AEC:SP:01745,1,"Sidobre",43.662131,1.495137,-1,0,AEC:SA:01745,Europe/Paris,0,AEC, +AEC:SP:01746,1,"Victor Hugo",43.664025,1.501136,-1,0,AEC:SA:01747,Europe/Paris,0,AEC, +AEC:SP:01747,1,"Clair Matin",43.663859,1.501719,-1,0,AEC:SA:01747,Europe/Paris,0,AEC, +AEC:SP:01748,1,"Centre",43.740217,1.371595,-1,0,AEC:SA:01749,Europe/Paris,0,AEC, +AEC:SP:01749,1,"Centre",43.741204,1.371188,-1,0,AEC:SA:01749,Europe/Paris,0,AEC, +AEC:SP:01750,1,"Chemin de Gagnac",43.730788,1.363972,-1,0,AEC:SA:01750,Europe/Paris,0,AEC, +AEC:SP:01752,1,"Ecluse",43.739313,1.368208,-1,0,AEC:SA:01753,Europe/Paris,0,AEC, +AEC:SP:01753,1,"Ecluse",43.739721,1.368725,-1,0,AEC:SA:01753,Europe/Paris,0,AEC, +AEC:SP:01754,1,"Fabas",43.737094,1.36634,-1,0,AEC:SA:01755,Europe/Paris,0,AEC, +AEC:SP:01755,1,"Fabas",43.737213,1.366203,-1,0,AEC:SA:01755,Europe/Paris,0,AEC, +AEC:SP:01756,1,"Gendarmerie",43.744638,1.368393,-1,0,AEC:SA:01757,Europe/Paris,0,AEC, +AEC:SP:01757,1,"Gendarmerie",43.744845,1.368395,-1,0,AEC:SA:01757,Europe/Paris,0,AEC, +AEC:SP:01762,1,"Le Poutou",43.750403,1.357732,-1,0,AEC:SA:01763,Europe/Paris,2,AEC, +AEC:SP:01763,1,"Le Poutou",43.750397,1.357589,-1,0,AEC:SA:01763,Europe/Paris,2,AEC, +AEC:SP:01764,1,"Les Berges du Canal",43.744167,1.364792,-1,0,AEC:SA:01765,Europe/Paris,0,AEC, +AEC:SP:01765,1,"Les Berges du Canal",43.744488,1.365086,-1,0,AEC:SA:01765,Europe/Paris,0,AEC, +AEC:SP:01766,1,"Novital",43.723238,1.382535,-1,0,AEC:SA:01767,Europe/Paris,0,AEC, +AEC:SP:01767,1,"Novital",43.723549,1.382596,-1,0,AEC:SA:01767,Europe/Paris,0,AEC, +AEC:SP:01770,1,"En Pégéni",43.501287,1.87928,-1,0,AEC:SA:01771,Europe/Paris,0,AEC, +AEC:SP:01771,1,"En Pégéni",43.501349,1.879501,-1,0,AEC:SA:01771,Europe/Paris,0,AEC, +AEC:SP:01772,1,"La Bascule",43.490709,1.898668,-1,0,AEC:SA:01772,Europe/Paris,2,AEC, +AEC:SP:01773,1,"Saint Paul",43.494406,1.89647,-1,0,AEC:SA:01774,Europe/Paris,0,AEC, +AEC:SP:01774,1,"Saint Paul",43.494501,1.896664,-1,0,AEC:SA:01774,Europe/Paris,0,AEC, +AEC:SP:01775,1,"Trenet",43.489238,1.905677,-1,0,AEC:SA:01776,Europe/Paris,0,AEC, +AEC:SP:01776,1,"Trénet",43.489382,1.905208,-1,0,AEC:SA:01776,Europe/Paris,0,AEC, +AEC:SP:01777,1,"Village",43.244223,1.153233,-1,0,AEC:SA:01778,Europe/Paris,0,AEC, +AEC:SP:01778,1,"Village",43.244238,1.153382,-1,0,AEC:SA:01778,Europe/Paris,0,AEC, +AEC:SP:01779,1,"Saint Patatin",43.216918,0.748907,-1,0,AEC:SA:01780,Europe/Paris,0,AEC, +AEC:SP:01780,1,"Saint-Patatin",43.21727,0.749077,-1,0,AEC:SA:01780,Europe/Paris,0,AEC, +AEC:SP:01781,1,"Bourillas",43.331578,0.794495,-1,0,AEC:SA:01782,Europe/Paris,0,AEC, +AEC:SP:01782,1,"Bourouillas",43.331354,0.79348,-1,0,AEC:SA:01782,Europe/Paris,0,AEC, +AEC:SP:01783,1,"Village",43.400836,1.560656,-1,0,AEC:SA:06215,Europe/Paris,2,AEC, +AEC:SP:01784,1,"Marigny",43.696144,1.478971,-1,0,AEC:SA:01785,Europe/Paris,0,AEC, +AEC:SP:01785,1,"Marigny",43.695968,1.479071,-1,0,AEC:SA:01785,Europe/Paris,0,AEC, +AEC:SP:01786,1,"Alouettes",43.503038,1.175921,-1,0,AEC:SA:01787,Europe/Paris,0,AEC, +AEC:SP:01787,1,"Alouettes",43.504416,1.17732,-1,0,AEC:SA:01787,Europe/Paris,2,AEC, +AEC:SP:01788,1,"Barcelone",43.507397,1.170323,-1,0,AEC:SA:01789,Europe/Paris,0,AEC, +AEC:SP:01789,1,"Barcelone",43.507502,1.170542,-1,0,AEC:SA:01789,Europe/Paris,0,AEC, +AEC:SP:01790,1,"Boulodrome",43.515316,1.176399,-1,0,AEC:SA:01791,Europe/Paris,2,AEC, +AEC:SP:01791,1,"Boulodrome",43.514919,1.175788,-1,0,AEC:SA:01791,Europe/Paris,2,AEC, +AEC:SP:01792,1,"Eglise",43.513982,1.177881,-1,0,AEC:SA:01793,Europe/Paris,0,AEC, +AEC:SP:01793,1,"Eglise",43.514014,1.178101,-1,0,AEC:SA:01793,Europe/Paris,0,AEC, +AEC:SP:01794,1,"Holentis",43.505278,1.168744,-1,0,AEC:SA:01794,Europe/Paris,2,AEC, +AEC:SP:01795,1,"La Bigorre",43.506037,1.175862,-1,0,AEC:SA:01796,Europe/Paris,0,AEC, +AEC:SP:01796,1,"La Bigorre",43.506035,1.175703,-1,0,AEC:SA:01796,Europe/Paris,2,AEC, +AEC:SP:01797,1,"Maison de Retraite",43.518631,1.184819,-1,0,AEC:SA:01798,Europe/Paris,0,AEC, +AEC:SP:01798,1,"Maison de retraite",43.518414,1.18466,-1,0,AEC:SA:01798,Europe/Paris,0,AEC, +AEC:SP:01799,1,"Moulin de la Jalousie",43.520017,1.189182,-1,0,AEC:SA:01799,Europe/Paris,2,AEC, +AEC:SP:01800,1,"Pyrénées",43.510525,1.172845,-1,0,AEC:SA:01801,Europe/Paris,0,AEC, +AEC:SP:01801,1,"Pyrénées",43.510496,1.172954,-1,0,AEC:SA:01801,Europe/Paris,0,AEC, +AEC:SP:01802,1,"Sourdeval",43.508451,1.177213,-1,0,AEC:SA:01803,Europe/Paris,0,AEC, +AEC:SP:01803,1,"Sourdeval",43.508499,1.177092,-1,0,AEC:SA:01803,Europe/Paris,0,AEC, +AEC:SP:01804,1,"En Lance",43.651059,1.625634,-1,0,AEC:SA:01805,Europe/Paris,0,AEC, +AEC:SP:01805,1,"En Lance",43.650811,1.625385,-1,0,AEC:SA:01805,Europe/Paris,0,AEC, +AEC:SP:01806,1,"Escalone",43.650788,1.633524,-1,0,AEC:SA:01807,Europe/Paris,2,AEC, +AEC:SP:01807,1,"Escalone",43.650633,1.633277,-1,0,AEC:SA:01807,Europe/Paris,2,AEC, +AEC:SP:01808,1,"Le Crac",43.643974,1.612482,-1,0,AEC:SA:01809,Europe/Paris,2,AEC, +AEC:SP:01809,1,"Le Crac",43.643811,1.613109,-1,0,AEC:SA:01809,Europe/Paris,2,AEC, +AEC:SP:01810,1,"Prat Bédiaou",43.19826,0.732817,-1,0,AEC:SA:01811,Europe/Paris,0,AEC, +AEC:SP:01811,1,"Prat-Bediaou",43.199154,0.732963,-1,0,AEC:SA:01811,Europe/Paris,0,AEC, +AEC:SP:01812,1,"Syndicat d'Initiative",43.142227,0.928612,-1,0,AEC:SA:01813,Europe/Paris,0,AEC, +AEC:SP:01813,1,"Syndicat d'Initiative",43.142097,0.92873,-1,0,AEC:SA:01813,Europe/Paris,0,AEC, +AEC:SP:01814,1,"Centre",43.324466,1.755859,-1,0,AEC:SA:01815,Europe/Paris,0,AEC, +AEC:SP:01815,1,"Centre",43.324331,1.755632,-1,0,AEC:SA:01815,Europe/Paris,0,AEC, +AEC:SP:01816,1,"Champs Pinsons",43.56272,1.518507,-1,0,AEC:SA:01817,Europe/Paris,0,AEC, +AEC:SP:01817,1,"Champs Pinsons",43.562882,1.518631,-1,0,AEC:SA:01817,Europe/Paris,2,AEC, +AEC:SP:01818,1,"Clinique",43.543642,1.541178,-1,0,AEC:SA:01819,Europe/Paris,0,AEC, +AEC:SP:01819,1,"Clinique",43.543823,1.541208,-1,0,AEC:SA:01819,Europe/Paris,0,AEC, +AEC:SP:01820,1,"Gameville",43.549052,1.536012,-1,0,AEC:SA:01821,Europe/Paris,0,AEC, +AEC:SP:01821,1,"Gameville",43.549506,1.535944,-1,0,AEC:SA:01821,Europe/Paris,0,AEC, +AEC:SP:01822,1,"Lycée",43.539844,1.547479,-1,0,AEC:SA:01823,Europe/Paris,0,AEC, +AEC:SP:01823,1,"Lycée",43.539842,1.548126,-1,0,AEC:SA:01823,Europe/Paris,0,AEC, +AEC:SP:01824,1,"Poste",43.554337,1.5323,-1,0,AEC:SA:01825,Europe/Paris,2,AEC, +AEC:SP:01825,1,"Poste",43.554437,1.53241,-1,0,AEC:SA:01825,Europe/Paris,2,AEC, +AEC:SP:01826,1,"La Boère",43.701603,1.214536,-1,0,AEC:SA:01827,Europe/Paris,2,AEC, +AEC:SP:01827,1,"La Boère",43.701071,1.214945,-1,0,AEC:SA:01827,Europe/Paris,2,AEC, +AEC:SP:01828,1,"Le Château",43.695938,1.223998,-1,0,AEC:SA:01829,Europe/Paris,0,AEC, +AEC:SP:01829,1,"Le Château",43.696073,1.224193,-1,0,AEC:SA:01829,Europe/Paris,0,AEC, +AEC:SP:01830,1,"Mairie",42.983726,0.670611,-1,0,AEC:SA:01831,Europe/Paris,0,AEC, +AEC:SP:01831,1,"Mairie",42.983568,0.670731,-1,0,AEC:SA:01831,Europe/Paris,0,AEC, +AEC:SP:01832,1,"Rebirechioulet",43.264522,0.712062,-1,0,AEC:SA:01832,Europe/Paris,0,AEC, +AEC:SP:01833,1,"Rebirechioulet",43.264273,0.712281,-1,0,AEC:SA:01832,Europe/Paris,0,AEC, +AEC:SP:01834,1,"Rebirechioulet",43.26485,0.713179,-1,0,AEC:SA:01832,Europe/Paris,0,AEC, +AEC:SP:01835,1,"Rebirechioulet",43.264951,0.712788,-1,0,AEC:SA:01832,Europe/Paris,0,AEC, +AEC:SP:01836,1,"Collège",43.56401,1.640648,-1,0,AEC:SA:01836,Europe/Paris,0,AEC, +AEC:SP:01837,1,"Le Pigeonnier",43.573895,1.611364,-1,0,AEC:SA:01837,Europe/Paris,0,AEC, +AEC:SP:01838,1,"Mairie",43.569014,1.62688,-1,0,AEC:SA:01839,Europe/Paris,0,AEC, +AEC:SP:01839,1,"Mairie",43.569154,1.626789,-1,0,AEC:SA:01839,Europe/Paris,0,AEC, +AEC:SP:01840,1,"Mairie II",43.57109,1.621391,-1,0,AEC:SA:01841,Europe/Paris,0,AEC, +AEC:SP:01841,1,"Mairie II",43.571319,1.621222,-1,0,AEC:SA:01841,Europe/Paris,0,AEC, +AEC:SP:01843,1,"Montplaisir",43.567711,1.632113,-1,0,AEC:SA:01843,Europe/Paris,0,AEC, +AEC:SP:01844,1,"Centre",43.275961,1.50241,-1,0,AEC:SA:01845,Europe/Paris,0,AEC, +AEC:SP:01845,1,"St Quirc",43.276145,1.502356,-1,0,AEC:SA:01845,Europe/Paris,0,AEC, +AEC:SP:01846,1,"La Gravette",43.422045,1.684148,-1,0,AEC:SA:01846,Europe/Paris,2,AEC, +AEC:SP:01847,1,"Foyer Rural",43.805598,1.327546,-1,0,AEC:SA:01848,Europe/Paris,0,AEC, +AEC:SP:01848,1,"Foyer Rural",43.805643,1.327684,-1,0,AEC:SA:01848,Europe/Paris,0,AEC, +AEC:SP:01849,1,"La Serfaihère",43.804256,1.325262,-1,0,AEC:SA:01850,Europe/Paris,0,AEC, +AEC:SP:01850,1,"La Serfailhère",43.804351,1.324717,-1,0,AEC:SA:01850,Europe/Paris,0,AEC, +AEC:SP:01851,1,"Maury II",43.800592,1.330247,-1,0,AEC:SA:01852,Europe/Paris,0,AEC, +AEC:SP:01852,1,"Maury II",43.799638,1.331233,-1,0,AEC:SA:01852,Europe/Paris,0,AEC, +AEC:SP:01853,1,"La Mule",43.748589,1.407143,-1,0,AEC:SA:01854,Europe/Paris,2,AEC, +AEC:SP:01854,1,"La Mule",43.74854,1.407319,-1,0,AEC:SA:01854,Europe/Paris,2,AEC, +AEC:SP:01855,1,"La Rivière",43.754707,1.406724,-1,0,AEC:SA:01856,Europe/Paris,2,AEC, +AEC:SP:01856,1,"La Rivière",43.75518,1.406804,-1,0,AEC:SA:01856,Europe/Paris,2,AEC, +AEC:SP:01857,1,"Mairie",43.749761,1.400611,-1,0,AEC:SA:01857,Europe/Paris,0,AEC, +AEC:SP:01859,1,"Gambetta",43.329737,1.322126,-1,0,SIN:SA:OCE87620195,Europe/Paris,0,AEC, +AEC:SP:01860,1,"Gambetta",43.329812,1.32226,-1,0,SIN:SA:OCE87620195,Europe/Paris,0,AEC, +AEC:SP:01861,1,"Le Château",43.325485,1.322251,-1,0,AEC:SA:01864,Europe/Paris,0,AEC, +AEC:SP:01864,1,"Victor Hugo",43.327079,1.322394,-1,0,AEC:SA:01864,Europe/Paris,0,AEC, +AEC:SP:01865,1,"Sabatause",43.335397,1.322071,-1,0,AEC:SA:01865,Europe/Paris,0,AEC, +AEC:SP:01866,1,"Mairie",43.514745,1.083113,-1,0,AEC:SA:01867,Europe/Paris,0,AEC, +AEC:SP:01867,1,"Mairie",43.514604,1.083455,-1,0,AEC:SA:01867,Europe/Paris,0,AEC, +AEC:SP:01868,1,"Paguères de la Chutère",43.526455,1.104939,-1,0,AEC:SA:01869,Europe/Paris,0,AEC, +AEC:SP:01869,1,"Paguères de la Chutère",43.526372,1.105285,-1,0,AEC:SA:01869,Europe/Paris,0,AEC, +AEC:SP:01870,1,"Ecole",43.236542,1.384466,-1,0,AEC:SA:01870,Europe/Paris,0,AEC, +AEC:SP:01871,1,"RN 125",42.958089,0.63361,-1,0,SIN:SA:OCE87173633,Europe/Paris,0,AEC, +AEC:SP:01872,1,"RN 125",42.957822,0.63349,-1,0,SIN:SA:OCE87173633,Europe/Paris,0,AEC, +AEC:SP:01873,1,"Casino",43.100211,0.957334,-1,0,AEC:SA:01874,Europe/Paris,0,AEC, +AEC:SP:01874,1,"Casino",43.100262,0.9576,-1,0,AEC:SA:01874,Europe/Paris,0,AEC, +AEC:SP:01875,1,"Place Compans",43.102349,0.958809,-1,0,AEC:SA:01875,Europe/Paris,0,AEC, +AEC:SP:01878,1,"Pratviel",42.844487,0.604035,-1,0,SIN:SA:OCE87173823,Europe/Paris,2,AEC, +AEC:SP:01879,1,"Barthéry",43.279031,1.179841,-1,0,AEC:SA:01880,Europe/Paris,0,AEC, +AEC:SP:01880,1,"Barthéry",43.278832,1.179907,-1,0,AEC:SA:01880,Europe/Paris,0,AEC, +AEC:SP:01881,1,"Mairie",43.276386,1.176787,-1,0,AEC:SA:01882,Europe/Paris,0,AEC, +AEC:SP:01882,1,"Mairie",43.276331,1.17697,-1,0,AEC:SA:01882,Europe/Paris,0,AEC, +AEC:SP:01883,1,"Place Marengo",43.293665,1.787008,-1,0,AEC:SA:01883,Europe/Paris,0,AEC, +AEC:SP:01884,1,"Route de Toulouse",43.295306,1.782525,-1,0,AEC:SA:01885,Europe/Paris,0,AEC, +AEC:SP:01885,1,"Route de Toulouse",43.295211,1.782389,-1,0,AEC:SA:01885,Europe/Paris,0,AEC, +AEC:SP:01886,1,"Calvaire",43.237978,0.739283,-1,0,AEC:SA:01887,Europe/Paris,0,AEC, +AEC:SP:01887,1,"Calvaire",43.238123,0.739997,-1,0,AEC:SA:01887,Europe/Paris,0,AEC, +AEC:SP:01888,1,"Canard Gourmand",43.487168,0.935124,-1,0,AEC:SA:01889,Europe/Paris,0,AEC, +AEC:SP:01889,1,"Canard Gourmand",43.488003,0.935051,-1,0,AEC:SA:01889,Europe/Paris,0,AEC, +AEC:SP:01890,1,"Centre",43.491307,0.929509,-1,0,AEC:SA:01890,Europe/Paris,0,AEC, +AEC:SP:01891,1,"LEP",43.493863,0.930082,-1,0,AEC:SA:01891,Europe/Paris,2,AEC, +AEC:SP:01892,1,"Les Lacs",43.48876,0.92729,-1,0,AEC:SA:01893,Europe/Paris,0,AEC, +AEC:SP:01893,1,"Les Lacs",43.489057,0.926724,-1,0,AEC:SA:01893,Europe/Paris,0,AEC, +AEC:SP:01894,1,"Place du Marché",43.490514,0.931392,-1,0,AEC:SA:01895,Europe/Paris,2,AEC, +AEC:SP:01895,1,"Place du Marché",43.490308,0.931112,-1,0,AEC:SA:01895,Europe/Paris,2,AEC, +AEC:SP:01896,1,"Mairie",43.587277,1.722302,-1,0,AEC:SA:01897,Europe/Paris,0,AEC, +AEC:SP:01897,1,"Mairie",43.587294,1.722547,-1,0,AEC:SA:01897,Europe/Paris,0,AEC, +AEC:SP:01900,1,"Bruncan",43.033341,0.668114,-1,0,AEC:SA:01898,Europe/Paris,0,AEC, +AEC:SP:01901,1,"Bruncan",43.033138,0.668668,-1,0,AEC:SA:01898,Europe/Paris,0,AEC, +AEC:SP:01902,1,"Garnère",43.038307,0.665838,-1,0,AEC:SA:01903,Europe/Paris,0,AEC, +AEC:SP:01903,1,"Garnière",43.038417,0.666237,-1,0,AEC:SA:01903,Europe/Paris,0,AEC, +AEC:SP:01904,1,"Loô",43.054438,0.679659,-1,0,AEC:SA:01904,Europe/Paris,0,AEC, +AEC:SP:01905,1,"Loô Goutillette",43.057145,0.675941,-1,0,AEC:SA:01906,Europe/Paris,0,AEC, +AEC:SP:01906,1,"Loô Goutillette",43.056746,0.675778,-1,0,AEC:SA:01906,Europe/Paris,0,AEC, +AEC:SP:01909,1,"Champs de Mars",43.237333,1.573902,-1,0,AEC:SA:01910,Europe/Paris,0,AEC, +AEC:SP:01910,1,"Champs de Mars",43.237496,1.574128,-1,0,AEC:SA:01910,Europe/Paris,0,AEC, +AEC:SP:01911,1,"Village",43.490317,1.011558,-1,0,AEC:SA:01912,Europe/Paris,0,AEC, +AEC:SP:01912,1,"Village",43.490168,1.011153,-1,0,AEC:SA:01912,Europe/Paris,0,AEC, +AEC:SP:01913,1,"Centre",43.692643,1.354582,-1,0,AEC:SA:01914,Europe/Paris,0,AEC, +AEC:SP:01914,1,"Centre",43.692731,1.354709,-1,0,AEC:SA:01914,Europe/Paris,0,AEC, +AEC:SP:01915,1,"Ferral Bayes",43.697324,1.349387,-1,0,AEC:SA:01916,Europe/Paris,0,AEC, +AEC:SP:01916,1,"Ferral Bayes",43.697708,1.349448,-1,0,AEC:SA:01916,Europe/Paris,0,AEC, +AEC:SP:01917,1,"Golf",43.685302,1.36058,-1,0,AEC:SA:01918,Europe/Paris,0,AEC, +AEC:SP:01918,1,"Golf",43.6853,1.360897,-1,0,AEC:SA:01918,Europe/Paris,0,AEC, +AEC:SP:01919,1,"L'Aussonnelle",43.691231,1.356613,-1,0,AEC:SA:01920,Europe/Paris,0,AEC, +AEC:SP:01920,1,"L'Aussonnelle",43.691047,1.356412,-1,0,AEC:SA:01920,Europe/Paris,2,AEC, +AEC:SP:01921,1,"Les Tricheries",43.680958,1.362416,-1,0,AEC:SA:01922,Europe/Paris,2,AEC, +AEC:SP:01922,1,"Les Tricheries",43.680561,1.362966,-1,0,AEC:SA:01922,Europe/Paris,2,AEC, +AEC:SP:01923,1,"Centre",42.984924,0.788748,-1,0,AEC:SA:01924,Europe/Paris,0,AEC, +AEC:SP:01924,1,"Centre",42.984782,0.788642,-1,0,AEC:SA:01924,Europe/Paris,0,AEC, +AEC:SP:01925,1,"La Grave",43.366962,1.665766,-1,0,AEC:SA:01926,Europe/Paris,0,AEC, +AEC:SP:01926,1,"Place",43.363436,1.670602,-1,0,AEC:SA:01926,Europe/Paris,0,AEC, +AEC:SP:01927,1,"RN 125",42.966511,0.629682,-1,0,AEC:SA:01928,Europe/Paris,0,AEC, +AEC:SP:01928,1,"RN 125",42.966547,0.629459,-1,0,AEC:SA:01928,Europe/Paris,0,AEC, +AEC:SP:01929,1,"Mairie",43.047188,0.778366,-1,0,AEC:SA:01930,Europe/Paris,0,AEC, +AEC:SP:01930,1,"Mairie",43.047674,0.778477,-1,0,AEC:SA:01930,Europe/Paris,0,AEC, +AEC:SP:01931,1,"Les Pépils",43.711478,1.167223,-1,0,AEC:SA:01931,Europe/Paris,0,AEC, +AEC:SP:01932,1,"Mairie-Eglise",43.711272,1.16113,-1,0,AEC:SA:01932,Europe/Paris,0,AEC, +AEC:SP:01935,1,"A. Bernard",43.611468,1.437906,-1,0,AEC:SA:01981,Europe/Paris,2,AEC, +AEC:SP:01937,1,"Achiary",43.600969,1.47416,-1,0,AEC:SA:01938,Europe/Paris,2,AEC, +AEC:SP:01938,1,"Achiary",43.600818,1.473958,-1,0,AEC:SA:01938,Europe/Paris,2,AEC, +AEC:SP:01939,1,"Airbus/la crabe",43.611383,1.370236,-1,0,AEC:SA:01939,Europe/Paris,2,AEC, +AEC:SP:01940,1,"Aqueduc (Caousou)",43.601534,1.458567,-1,0,AEC:SA:01941,Europe/Paris,2,AEC, +AEC:SP:01941,1,"Aqueduc (Caousou)",43.601692,1.457783,-1,0,AEC:SA:01941,Europe/Paris,2,AEC, +AEC:SP:01942,1,"Arènes",43.593352,1.418835,-1,0,AEC:SA:01942,Europe/Paris,2,AEC, +AEC:SP:01945,1,"Atlanta",43.642418,1.467522,-1,0,AEC:SA:01946,Europe/Paris,2,AEC, +AEC:SP:01946,1,"Atlanta",43.6433,1.467758,-1,0,AEC:SA:01946,Europe/Paris,2,AEC, +AEC:SP:01947,1,"Barcelone Leclerc",43.607008,1.430472,-1,0,AEC:SA:01948,Europe/Paris,2,AEC, +AEC:SP:01948,1,"Barcelone Leclerc",43.606989,1.431019,-1,0,AEC:SA:01948,Europe/Paris,2,AEC, +AEC:SP:01949,1,"Barrau (Ste Marie des Ch)",43.589872,1.470462,-1,0,AEC:SA:01950,Europe/Paris,2,AEC, +AEC:SP:01950,1,"Barrau (Ste Marie des Ch)",43.590361,1.470234,-1,0,AEC:SA:01950,Europe/Paris,2,AEC, +AEC:SP:01951,1,"Barrière Croix Daurade",43.625091,1.458531,-1,0,AEC:SA:01952,Europe/Paris,2,AEC, +AEC:SP:01952,1,"Barrière Croix Daurade",43.625371,1.458917,-1,0,AEC:SA:01952,Europe/Paris,2,AEC, +AEC:SP:01953,1,"Barrière de Paris",43.62614,1.434097,-1,0,AEC:SA:01954,Europe/Paris,2,AEC, +AEC:SP:01954,1,"Barrière de Paris",43.626097,1.433805,-1,0,AEC:SA:01954,Europe/Paris,2,AEC, +AEC:SP:01955,1,"Barrière de Paris",43.62671,1.434522,-1,0,AEC:SA:01954,Europe/Paris,2,AEC, +AEC:SP:01956,1,"Barrière de Paris",43.626913,1.434438,-1,0,AEC:SA:01954,Europe/Paris,2,AEC, +AEC:SP:01957,1,"Basso Cambo",43.570237,1.392099,-1,0,AEC:SA:01957,Europe/Paris,2,AEC, +AEC:SP:01959,1,"Bellevue",43.560164,1.462873,-1,0,AEC:SA:02106,Europe/Paris,2,AEC, +AEC:SP:01960,1,"Bellevue Parking Lycée",43.562258,1.460293,-1,0,AEC:SA:01960,Europe/Paris,2,AEC, +AEC:SP:01961,1,"Borderouge",43.641384,1.452864,-1,0,AEC:SA:01961,Europe/Paris,2,AEC, +AEC:SP:01963,1,"Cartoucherie",43.600637,1.413348,-1,0,AEC:SA:01964,Europe/Paris,2,AEC, +AEC:SP:01964,1,"Cartoucherie",43.600907,1.413477,-1,0,AEC:SA:01964,Europe/Paris,2,AEC, +AEC:SP:01965,1,"Charlas",43.630189,1.432436,-1,0,AEC:SA:01966,Europe/Paris,2,AEC, +AEC:SP:01966,1,"Charlas",43.629244,1.432965,-1,0,AEC:SA:01966,Europe/Paris,2,AEC, +AEC:SP:01967,1,"Chaussée",43.593342,1.442497,-1,0,AEC:SA:01968,Europe/Paris,2,AEC, +AEC:SP:01968,1,"Chaussée",43.593634,1.442321,-1,0,AEC:SA:01968,Europe/Paris,2,AEC, +AEC:SP:01969,1,"Chouvel",43.567235,1.507486,-1,0,AEC:SA:01970,Europe/Paris,2,AEC, +AEC:SP:01970,1,"Chouvel",43.567477,1.506454,-1,0,AEC:SA:01970,Europe/Paris,2,AEC, +AEC:SP:01971,1,"Cité de l'Hers",43.596062,1.484481,-1,0,AEC:SA:01972,Europe/Paris,2,AEC, +AEC:SP:01972,1,"Cité de l'Hers",43.596467,1.484027,-1,0,AEC:SA:01972,Europe/Paris,2,AEC, +AEC:SP:01973,1,"Cite Madrid",43.613956,1.411406,-1,0,AEC:SA:01974,Europe/Paris,2,AEC, +AEC:SP:01974,1,"Cite Madrid",43.614128,1.411599,-1,0,AEC:SA:01974,Europe/Paris,2,AEC, +AEC:SP:01975,1,"Clinique Languedoc",43.577459,1.4857,-1,0,AEC:SA:01976,Europe/Paris,2,AEC, +AEC:SP:01976,1,"Clinique Languedoc",43.577744,1.485799,-1,0,AEC:SA:01976,Europe/Paris,2,AEC, +AEC:SP:01977,1,"Gymnase de L'Hers",43.594642,1.488491,-1,0,AEC:SA:01978,Europe/Paris,0,AEC, +AEC:SP:01978,1,"Collège Vernant",43.595403,1.487025,-1,0,AEC:SA:01978,Europe/Paris,2,AEC, +AEC:SP:01979,1,"Colombette",43.605815,1.456294,-1,0,AEC:SA:01980,Europe/Paris,2,AEC, +AEC:SP:01980,1,"Colombette",43.606137,1.456573,-1,0,AEC:SA:01980,Europe/Paris,2,AEC, +AEC:SP:01981,1,"Compans Caffarelli",43.610482,1.435547,-1,0,AEC:SA:01981,Europe/Paris,2,AEC, +AEC:SP:01983,1,"Conseil Régional",43.588147,1.439519,-1,0,AEC:SA:01984,Europe/Paris,2,AEC, +AEC:SP:01984,1,"Conseil Régional",43.589107,1.440601,-1,0,AEC:SA:01984,Europe/Paris,2,AEC, +AEC:SP:01985,1,"Courrèges",43.583954,1.469646,-1,0,AEC:SA:01986,Europe/Paris,2,AEC, +AEC:SP:01986,1,"Courrèges",43.584288,1.469279,-1,0,AEC:SA:01986,Europe/Paris,2,AEC, +AEC:SP:01987,1,"Eglise minimes",43.618111,1.436471,-1,0,AEC:SA:01987,Europe/Paris,2,AEC, +AEC:SP:01988,1,"Eglise minimes",43.618516,1.436669,-1,0,AEC:SA:01987,Europe/Paris,2,AEC, +AEC:SP:01991,1,"Esquirol",43.600299,1.444563,-1,0,AEC:SA:01992,Europe/Paris,2,AEC, +AEC:SP:01992,1,"Esquirol",43.600514,1.444351,-1,0,AEC:SA:01992,Europe/Paris,2,AEC, +AEC:SP:01993,1,"Eglise Minimes (Av.F.Estèbe)",43.618758,1.437041,-1,0,AEC:SA:01987,Europe/Paris,0,AEC, +AEC:SP:01994,1,"François Verdier",43.60067,1.452257,-1,0,AEC:SA:02055,Europe/Paris,2,AEC, +AEC:SP:01995,1,"François Verdier ( Rue de Metz )",43.600617,1.451268,-1,0,AEC:SA:01996,Europe/Paris,2,AEC, +AEC:SP:01996,1,"François Verdier ( Rue de Metz )",43.600468,1.451169,-1,0,AEC:SA:01996,Europe/Paris,2,AEC, +AEC:SP:01999,1,"Vitarelles",43.587428,1.39416,-1,0,AEC:SA:02000,Europe/Paris,2,AEC, +AEC:SP:02000,1,"Vitarelles",43.588626,1.395218,-1,0,AEC:SA:02000,Europe/Paris,2,AEC, +AEC:SP:02001,1,"Gare Routière",43.612939,1.452511,-1,0,AEC:SA:02001,Europe/Paris,2,AEC, +AEC:SP:02004,1,"Gers",43.584956,1.476626,-1,0,AEC:SA:02005,Europe/Paris,2,AEC, +AEC:SP:02005,1,"Gers",43.584695,1.476691,-1,0,AEC:SA:02005,Europe/Paris,2,AEC, +AEC:SP:02006,1,"Gironis",43.563738,1.425214,-1,0,AEC:SA:02007,Europe/Paris,2,AEC, +AEC:SP:02007,1,"Gironis",43.563766,1.42546,-1,0,AEC:SA:02007,Europe/Paris,2,AEC, +AEC:SP:02008,1,"Glacière",43.646244,1.426242,-1,0,AEC:SA:02009,Europe/Paris,2,AEC, +AEC:SP:02009,1,"Etats-Unis Fondeyre",43.64337,1.427758,-1,0,AEC:SA:02009,Europe/Paris,2,AEC, +AEC:SP:02010,1,"Jardin des Plantes",43.592899,1.453317,-1,0,AEC:SA:02011,Europe/Paris,2,AEC, +AEC:SP:02011,1,"Jardin des Plantes",43.592564,1.452598,-1,0,AEC:SA:02011,Europe/Paris,2,AEC, +AEC:SP:02012,1,"Guilhemery",43.601744,1.456428,-1,0,AEC:SA:02012,Europe/Paris,2,AEC, +AEC:SP:02013,1,"Guillaumet ( Lycée Hessel )",43.616518,1.473239,-1,0,AEC:SA:02014,Europe/Paris,2,AEC, +AEC:SP:02014,1,"Guillaumet ( Lycée Hessel )",43.616395,1.472934,-1,0,AEC:SA:02014,Europe/Paris,2,AEC, +AEC:SP:02015,1,"Gutenberg",43.616318,1.437858,-1,0,AEC:SA:02067,Europe/Paris,0,AEC, +AEC:SP:02016,1,"Héraclès",43.608526,1.428558,-1,0,AEC:SA:02017,Europe/Paris,2,AEC, +AEC:SP:02017,1,"Héraclès",43.608665,1.429658,-1,0,AEC:SA:02017,Europe/Paris,2,AEC, +AEC:SP:02018,1,"Hippodrome",43.593803,1.408285,-1,0,AEC:SA:02019,Europe/Paris,2,AEC, +AEC:SP:02019,1,"Hippodrome",43.593417,1.407136,-1,0,AEC:SA:02019,Europe/Paris,2,AEC, +AEC:SP:02020,1,"Hôpital Purpan",43.607607,1.397795,-1,0,AEC:SA:02021,Europe/Paris,2,AEC, +AEC:SP:02021,1,"Hôpital Purpan",43.607741,1.398048,-1,0,AEC:SA:02021,Europe/Paris,2,AEC, +AEC:SP:02022,1,"Jean Jaures",43.605387,1.448903,-1,0,AEC:SA:02023,Europe/Paris,2,AEC, +AEC:SP:02023,1,"Jean Jaures",43.606167,1.448373,-1,0,AEC:SA:02023,Europe/Paris,2,AEC, +AEC:SP:02024,1,"Jeanne d'Arc",43.60906,1.446156,-1,0,AEC:SA:02026,Europe/Paris,2,AEC, +AEC:SP:02027,1,"Jules Ferry",43.632521,1.431643,-1,0,AEC:SA:02028,Europe/Paris,2,AEC, +AEC:SP:02028,1,"Jules Ferry",43.632385,1.431902,-1,0,AEC:SA:02028,Europe/Paris,2,AEC, +AEC:SP:02029,1,"Jules Julien (école)",43.575781,1.45543,-1,0,AEC:SA:02030,Europe/Paris,2,AEC, +AEC:SP:02030,1,"Jules Julien (école)",43.57588,1.455557,-1,0,AEC:SA:02030,Europe/Paris,2,AEC, +AEC:SP:02031,1,"Lafilaire ( St Joseph )",43.596408,1.473349,-1,0,AEC:SA:02032,Europe/Paris,2,AEC, +AEC:SP:02032,1,"Lafilaire ( St Joseph )",43.595984,1.473198,-1,0,AEC:SA:02032,Europe/Paris,2,AEC, +AEC:SP:02033,1,"Lalande",43.643538,1.433304,-1,0,AEC:SA:02034,Europe/Paris,2,AEC, +AEC:SP:02034,1,"Lalande",43.64362,1.433595,-1,0,AEC:SA:02034,Europe/Paris,2,AEC, +AEC:SP:02035,1,"Langlade",43.570346,1.424262,-1,0,AEC:SA:02035,Europe/Paris,2,AEC, +AEC:SP:02036,1,"Lapin",43.65224,1.432617,-1,0,AEC:SA:02037,Europe/Paris,2,AEC, +AEC:SP:02037,1,"Lapin",43.651302,1.432483,-1,0,AEC:SA:02037,Europe/Paris,2,AEC, +AEC:SP:02038,1,"Larrieu",43.547598,1.419664,-1,0,AEC:SA:02039,Europe/Paris,2,AEC, +AEC:SP:02039,1,"Larrieu",43.546934,1.418906,-1,0,AEC:SA:02039,Europe/Paris,2,AEC, +AEC:SP:02040,1,"Limayrac",43.594347,1.473241,-1,0,AEC:SA:02041,Europe/Paris,2,AEC, +AEC:SP:02041,1,"Limayrac",43.594129,1.472855,-1,0,AEC:SA:02041,Europe/Paris,2,AEC, +AEC:SP:02042,1,"Lycee Raymond Naves",43.636668,1.464237,-1,0,AEC:SA:02043,Europe/Paris,0,AEC, +AEC:SP:02043,1,"Lycee Raymond Naves",43.636583,1.464489,-1,0,AEC:SA:02043,Europe/Paris,0,AEC, +AEC:SP:02045,1,"Lycée Toulouse Lautrec",43.62668,1.443797,-1,0,AEC:SA:02045,Europe/Paris,2,AEC, +AEC:SP:02046,1,"Marchant",43.559496,1.424657,-1,0,AEC:SA:02047,Europe/Paris,2,AEC, +AEC:SP:02047,1,"Marchant",43.559504,1.424855,-1,0,AEC:SA:02047,Europe/Paris,2,AEC, +AEC:SP:02048,1,"Marengo Station",43.610705,1.455387,-1,0,AEC:SA:02048,Europe/Paris,2,AEC, +AEC:SP:02049,1,"Matabiau Gare SNCF",43.611138,1.452595,-1,0,AEC:SA:02049,Europe/Paris,2,AEC, +AEC:SP:02050,1,"Mesple",43.570403,1.3868,-1,0,AEC:SA:02051,Europe/Paris,2,AEC, +AEC:SP:02051,1,"Mesple",43.5702,1.386748,-1,0,AEC:SA:02051,Europe/Paris,2,AEC, +AEC:SP:02052,1,"Montaudran",43.570813,1.499107,-1,0,AEC:SA:02054,Europe/Paris,2,AEC, +AEC:SP:02053,1,"Montaudran",43.570711,1.498379,-1,0,AEC:SA:02054,Europe/Paris,2,AEC, +AEC:SP:02054,1,"Montaudran",43.571637,1.498011,-1,0,AEC:SA:02054,Europe/Paris,2,AEC, +AEC:SP:02055,1,"Monument aux morts",43.599185,1.45176,-1,0,AEC:SA:02055,Europe/Paris,2,AEC, +AEC:SP:02056,1,"Netwiller",43.642362,1.465467,-1,0,AEC:SA:02057,Europe/Paris,2,AEC, +AEC:SP:02057,1,"Netwiller",43.642447,1.465983,-1,0,AEC:SA:02057,Europe/Paris,2,AEC, +AEC:SP:02058,1,"Parking Lycée T Lautrec",43.626032,1.441556,-1,0,AEC:SA:02058,Europe/Paris,2,AEC, +AEC:SP:02059,1,"Passerelle",43.615283,1.442784,-1,0,AEC:SA:02060,Europe/Paris,2,AEC, +AEC:SP:02060,1,"Passerelle",43.615112,1.442225,-1,0,AEC:SA:02060,Europe/Paris,2,AEC, +AEC:SP:02061,1,"Patte d'Oie",43.596608,1.423551,-1,0,AEC:SA:02062,Europe/Paris,2,AEC, +AEC:SP:02062,1,"Patte d'Oie",43.596483,1.423854,-1,0,AEC:SA:02062,Europe/Paris,2,AEC, +AEC:SP:02063,1,"Pérignon",43.600669,1.464363,-1,0,AEC:SA:02064,Europe/Paris,2,AEC, +AEC:SP:02064,1,"Pérignon",43.600516,1.464399,-1,0,AEC:SA:02064,Europe/Paris,2,AEC, +AEC:SP:02065,1,"Pont de la vache",43.638893,1.433457,-1,0,AEC:SA:02066,Europe/Paris,2,AEC, +AEC:SP:02066,1,"Pont de la vache",43.638864,1.433247,-1,0,AEC:SA:02066,Europe/Paris,2,AEC, +AEC:SP:02067,1,"Pont des Minimes",43.616019,1.437738,-1,0,AEC:SA:02067,Europe/Paris,2,AEC, +AEC:SP:02068,1,"Pont des Minimes",43.615449,1.43757,-1,0,AEC:SA:02067,Europe/Paris,2,AEC, +AEC:SP:02069,1,"Pont des Minimes",43.615416,1.437367,-1,0,AEC:SA:02067,Europe/Paris,2,AEC, +AEC:SP:02070,1,"Pont Matabiau",43.614253,1.449722,-1,0,AEC:SA:02070,Europe/Paris,2,AEC, +AEC:SP:02071,1,"Pont rocade",43.592101,1.400211,-1,0,AEC:SA:02072,Europe/Paris,2,AEC, +AEC:SP:02072,1,"Pont rocade",43.592326,1.400085,-1,0,AEC:SA:02072,Europe/Paris,2,AEC, +AEC:SP:02075,1,"Raynal",43.614531,1.451585,-1,0,AEC:SA:02076,Europe/Paris,2,AEC, +AEC:SP:02076,1,"Raynal",43.615169,1.45196,-1,0,AEC:SA:02076,Europe/Paris,2,AEC, +AEC:SP:02077,1,"Riche",43.648127,1.433069,-1,0,AEC:SA:02078,Europe/Paris,2,AEC, +AEC:SP:02078,1,"Riche",43.648506,1.432784,-1,0,AEC:SA:02078,Europe/Paris,2,AEC, +AEC:SP:02079,1,"Rigal (Lycée Vitry)",43.642311,1.438964,-1,0,AEC:SA:02107,Europe/Paris,0,AEC, +AEC:SP:02080,1,"Riquet",43.609051,1.454748,-1,0,AEC:SA:02080,Europe/Paris,2,AEC, +AEC:SP:02081,1,"Rond Point Langlade",43.566809,1.424964,-1,0,AEC:SA:02082,Europe/Paris,2,AEC, +AEC:SP:02082,1,"Rond Point Langlade",43.566789,1.425226,-1,0,AEC:SA:02082,Europe/Paris,2,AEC, +AEC:SP:02083,1,"Clinique Pasteur",43.595317,1.417276,-1,0,AEC:SA:02084,Europe/Paris,2,AEC, +AEC:SP:02084,1,"Clinique Pasteur",43.595431,1.417377,-1,0,AEC:SA:02084,Europe/Paris,2,AEC, +AEC:SP:02087,1,"Route de Launaguet",43.626742,1.437302,-1,0,AEC:SA:02087,Europe/Paris,0,AEC, +AEC:SP:02088,1,"Route d'Espagne",43.552788,1.421954,-1,0,AEC:SA:02089,Europe/Paris,2,AEC, +AEC:SP:02089,1,"Route d'Espagne",43.552705,1.42242,-1,0,AEC:SA:02089,Europe/Paris,2,AEC, +AEC:SP:02090,1,"Saouzelong",43.579548,1.459483,-1,0,AEC:SA:02091,Europe/Paris,2,AEC, +AEC:SP:02091,1,"Saouzelong",43.579368,1.459501,-1,0,AEC:SA:02091,Europe/Paris,2,AEC, +AEC:SP:02092,1,"Clôtasses",43.556519,1.465386,-1,0,AEC:SA:02093,Europe/Paris,2,AEC, +AEC:SP:02093,1,"Clôtasses",43.555876,1.466461,-1,0,AEC:SA:02093,Europe/Paris,2,AEC, +AEC:SP:02094,1,"Silos",43.55654,1.424139,-1,0,AEC:SA:02095,Europe/Paris,2,AEC, +AEC:SP:02095,1,"Silos",43.556549,1.423989,-1,0,AEC:SA:02095,Europe/Paris,2,AEC, +AEC:SP:02096,1,"St Cyprien République",43.59775,1.429774,-1,0,AEC:SA:02097,Europe/Paris,2,AEC, +AEC:SP:02097,1,"St Cyprien République",43.5987,1.430352,-1,0,AEC:SA:02097,Europe/Paris,2,AEC, +AEC:SP:02100,1,"Tahiti",43.58002,1.48071,-1,0,AEC:SA:02101,Europe/Paris,2,AEC, +AEC:SP:02101,1,"Tahiti",43.579379,1.481953,-1,0,AEC:SA:02101,Europe/Paris,2,AEC, +AEC:SP:02102,1,"Tilleuls",43.600577,1.467522,-1,0,AEC:SA:02103,Europe/Paris,2,AEC, +AEC:SP:02103,1,"Tilleuls",43.600754,1.466823,-1,0,AEC:SA:02103,Europe/Paris,2,AEC, +AEC:SP:02104,1,"Crampel (all.Demoiselles)",43.588269,1.459049,-1,0,AEC:SA:02105,Europe/Paris,2,AEC, +AEC:SP:02105,1,"Crampel (all.Demoiselles)",43.588006,1.459277,-1,0,AEC:SA:02105,Europe/Paris,2,AEC, +AEC:SP:02106,1,"Université P Sabatier Métro",43.560724,1.463769,-1,0,AEC:SA:02106,Europe/Paris,2,AEC, +AEC:SP:02107,1,"Van Dyck (Lycée Vitry)",43.640305,1.439429,-1,0,AEC:SA:02107,Europe/Paris,0,AEC, +AEC:SP:02108,1,"Vandel",43.578529,1.378707,-1,0,AEC:SA:02109,Europe/Paris,2,AEC, +AEC:SP:02109,1,"Vandel",43.578442,1.378513,-1,0,AEC:SA:02109,Europe/Paris,2,AEC, +AEC:SP:02114,1,"Cabanon",43.57759,1.35051,-1,0,AEC:SA:02115,Europe/Paris,0,AEC, +AEC:SP:02115,1,"Cabanon",43.577576,1.351303,-1,0,AEC:SA:02115,Europe/Paris,0,AEC, +AEC:SP:02116,1,"Cascade",43.574975,1.345205,-1,0,AEC:SA:02117,Europe/Paris,0,AEC, +AEC:SP:02117,1,"Cascade",43.575371,1.346506,-1,0,AEC:SA:02117,Europe/Paris,0,AEC, +AEC:SP:02118,1,"Centre Commercial",43.588103,1.35375,-1,0,AEC:SA:02119,Europe/Paris,0,AEC, +AEC:SP:02119,1,"Centre Commercial",43.587899,1.353771,-1,0,AEC:SA:02119,Europe/Paris,2,AEC, +AEC:SP:02121,1,"Collège",43.577437,1.326792,-1,0,AEC:SA:02122,Europe/Paris,0,AEC, +AEC:SP:02122,1,"Collège",43.578072,1.327682,-1,0,AEC:SA:02122,Europe/Paris,2,AEC, +AEC:SP:02123,1,"Les chênes",43.584963,1.344731,-1,0,AEC:SA:02124,Europe/Paris,2,AEC, +AEC:SP:02124,1,"Les chênes",43.584586,1.344429,-1,0,AEC:SA:02124,Europe/Paris,2,AEC, +AEC:SP:02128,1,"Mirabeau",43.574633,1.319566,-1,0,AEC:SA:02129,Europe/Paris,2,AEC, +AEC:SP:02129,1,"Mirabeau",43.575343,1.320852,-1,0,AEC:SA:02129,Europe/Paris,2,AEC, +AEC:SP:02134,1,"Petit Marquis",43.570319,1.335529,-1,0,AEC:SA:02135,Europe/Paris,2,AEC, +AEC:SP:02135,1,"Petit Marquis",43.570337,1.33592,-1,0,AEC:SA:02135,Europe/Paris,2,AEC, +AEC:SP:02139,1,"Prat",43.579023,1.358716,-1,0,AEC:SA:02140,Europe/Paris,2,AEC, +AEC:SP:02140,1,"Prat",43.579096,1.358464,-1,0,AEC:SA:02140,Europe/Paris,2,AEC, +AEC:SP:02141,1,"Baracou",43.470887,1.741407,-1,0,AEC:SA:02142,Europe/Paris,0,AEC, +AEC:SP:02142,1,"Baracou",43.470973,1.741666,-1,0,AEC:SA:02142,Europe/Paris,0,AEC, +AEC:SP:02143,1,"Craboudette",43.469996,1.747943,-1,0,AEC:SA:02144,Europe/Paris,0,AEC, +AEC:SP:02144,1,"Craucudette",43.469893,1.747846,-1,0,AEC:SA:02144,Europe/Paris,0,AEC, +AEC:SP:02145,1,"Caroulet",43.78166,1.465137,-1,0,AEC:SA:02146,Europe/Paris,0,AEC, +AEC:SP:02146,1,"Caroulet",43.781504,1.464976,-1,0,AEC:SA:02146,Europe/Paris,0,AEC, +AEC:SP:02147,1,"Mairie",43.778564,1.478761,-1,0,AEC:SA:02148,Europe/Paris,2,AEC, +AEC:SP:02148,1,"Mairie",43.778443,1.478318,-1,0,AEC:SA:02148,Europe/Paris,2,AEC, +AEC:SP:02149,1,"Saraillou",43.785023,1.469724,-1,0,AEC:SA:02149,Europe/Paris,0,AEC, +AEC:SP:02150,1,"Saraillou",43.785121,1.469534,-1,0,AEC:SA:02149,Europe/Paris,0,AEC, +AEC:SP:02151,1,"Saraillou",43.784958,1.469912,-1,0,AEC:SA:02149,Europe/Paris,0,AEC, +AEC:SP:02152,1,"Mairie",43.032954,0.583223,-1,0,AEC:SA:02153,Europe/Paris,0,AEC, +AEC:SP:02153,1,"Mairie",43.033211,0.5833,-1,0,AEC:SA:02153,Europe/Paris,0,AEC, +AEC:SP:02154,1,"Place Auriol",43.096311,0.706059,-1,0,AEC:SA:02155,Europe/Paris,0,AEC, +AEC:SP:02155,1,"Place Auriol",43.096092,0.706026,-1,0,AEC:SA:02155,Europe/Paris,0,AEC, +AEC:SP:02156,1,"Salle des Fêtes",43.095505,0.702165,-1,0,AEC:SA:02157,Europe/Paris,2,AEC, +AEC:SP:02157,1,"Salle des Fêtes",43.095457,0.701899,-1,0,AEC:SA:02157,Europe/Paris,2,AEC, +AEC:SP:02158,1,"La Tuilerie",43.594084,1.667917,-1,0,AEC:SA:02159,Europe/Paris,0,AEC, +AEC:SP:02159,1,"La Tuilerie",43.594217,1.668314,-1,0,AEC:SA:02159,Europe/Paris,0,AEC, +AEC:SP:02160,1,"Montplaisir",43.592561,1.643341,-1,0,AEC:SA:02161,Europe/Paris,0,AEC, +AEC:SP:02161,1,"Montplaisir",43.59283,1.643224,-1,0,AEC:SA:02161,Europe/Paris,0,AEC, +AEC:SP:02162,1,"En Blanc",43.480195,1.690567,-1,0,AEC:SA:02163,Europe/Paris,0,AEC, +AEC:SP:02163,1,"En Blanc",43.480337,1.690529,-1,0,AEC:SA:02163,Europe/Paris,0,AEC, +AEC:SP:02164,1,"En Galinat",43.479299,1.696367,-1,0,AEC:SA:02165,Europe/Paris,0,AEC, +AEC:SP:02165,1,"En Galinat",43.479454,1.696135,-1,0,AEC:SA:02165,Europe/Paris,0,AEC, +AEC:SP:02166,1,"Saint Ferréol",43.434534,2.018524,-1,0,AEC:SA:02166,Europe/Paris,0,AEC, +AEC:SP:02167,1,"Le Callègues",43.461037,1.837377,-1,0,AEC:SA:02167,Europe/Paris,0,AEC, +AEC:SP:02168,1,"Mazières",43.461557,1.834221,-1,0,AEC:SA:02169,Europe/Paris,0,AEC, +AEC:SP:02169,1,"Mazières",43.461258,1.835134,-1,0,AEC:SA:02169,Europe/Paris,0,AEC, +AEC:SP:02170,1,"Saint-Sauveur",43.459582,1.850454,-1,0,AEC:SA:02171,Europe/Paris,0,AEC, +AEC:SP:02171,1,"Saint-Sauveur",43.460146,1.848455,-1,0,AEC:SA:02171,Europe/Paris,0,AEC, +AEC:SP:02172,1,"Les 4 coins",43.58149,1.766312,-1,0,AEC:SA:02173,Europe/Paris,0,AEC, +AEC:SP:02173,1,"Les 4 coins",43.581347,1.766929,-1,0,AEC:SA:02173,Europe/Paris,0,AEC, +AEC:SP:02174,1,"La Plage",43.432254,1.438102,-1,0,AEC:SA:02175,Europe/Paris,0,AEC, +AEC:SP:02175,1,"La Plage",43.432594,1.437965,-1,0,AEC:SA:02175,Europe/Paris,0,AEC, +AEC:SP:02176,1,"La Trinité",43.421026,1.441143,-1,0,AEC:SA:02177,Europe/Paris,0,AEC, +AEC:SP:02177,1,"La Trinité",43.421019,1.441356,-1,0,AEC:SA:02177,Europe/Paris,0,AEC, +AEC:SP:02178,1,"Square du 11 nov",43.432391,1.443381,-1,0,AEC:SA:02179,Europe/Paris,0,AEC, +AEC:SP:02179,1,"Square du 11 nov",43.432541,1.443537,-1,0,AEC:SA:02179,Europe/Paris,0,AEC, +AEC:SP:02180,1,"Trinité",43.425791,1.442644,-1,0,AEC:SA:02181,Europe/Paris,0,AEC, +AEC:SP:02181,1,"Trinité",43.425725,1.442728,-1,0,AEC:SA:02181,Europe/Paris,0,AEC, +AEC:SP:02182,1,"08-mai-45",43.429004,1.444014,-1,0,AEC:SA:02183,Europe/Paris,0,AEC, +AEC:SP:02183,1,"08-mai-45",43.429256,1.444119,-1,0,AEC:SA:02183,Europe/Paris,2,AEC, +AEC:SP:02184,1,"Collège J. Gay",43.659452,1.664426,-1,0,AEC:SA:02184,Europe/Paris,0,AEC, +AEC:SP:02185,1,"En Pastor",43.654843,1.658884,-1,0,AEC:SA:02186,Europe/Paris,0,AEC, +AEC:SP:02186,1,"En Pastor",43.654795,1.65924,-1,0,AEC:SA:02186,Europe/Paris,0,AEC, +AEC:SP:02187,1,"Gendarmerie",43.653833,1.651052,-1,0,AEC:SA:02188,Europe/Paris,0,AEC, +AEC:SP:02188,1,"Gendarmerie",43.653576,1.651436,-1,0,AEC:SA:02188,Europe/Paris,0,AEC, +AEC:SP:02189,1,"Mairie",43.656709,1.661646,-1,0,AEC:SA:02190,Europe/Paris,0,AEC, +AEC:SP:02190,1,"Mairie",43.656758,1.662017,-1,0,AEC:SA:02190,Europe/Paris,0,AEC, +AEC:SP:02191,1,"Montplaisir",43.652912,1.642521,-1,0,AEC:SA:02192,Europe/Paris,0,AEC, +AEC:SP:02192,1,"Montplaisir",43.652806,1.643024,-1,0,AEC:SA:02192,Europe/Paris,0,AEC, +AEC:SP:02193,1,"Bacquié",43.433537,1.433469,-1,0,AEC:SA:02194,Europe/Paris,2,AEC, +AEC:SP:02194,1,"Bacquié",43.433372,1.433513,-1,0,AEC:SA:02194,Europe/Paris,2,AEC, +AEC:SP:02195,1,"Le Moulin",43.441646,1.423347,-1,0,AEC:SA:02196,Europe/Paris,2,AEC, +AEC:SP:02196,1,"Le Moulin",43.441684,1.423549,-1,0,AEC:SA:02196,Europe/Paris,2,AEC, +AEC:SP:02197,1,"Les Platanes",43.437806,1.426208,-1,0,AEC:SA:02198,Europe/Paris,0,AEC, +AEC:SP:02198,1,"Platanes",43.43727,1.426311,-1,0,AEC:SA:02198,Europe/Paris,0,AEC, +AEC:SP:02199,1,"En Selve",43.408053,1.655779,-1,0,AEC:SA:02200,Europe/Paris,2,AEC, +AEC:SP:02200,1,"En Selve",43.408115,1.655976,-1,0,AEC:SA:02200,Europe/Paris,2,AEC, +AEC:SP:02201,1,"Aygouse",43.75834,1.499949,-1,0,AEC:SA:02202,Europe/Paris,0,AEC, +AEC:SP:02202,1,"Aygouse",43.758465,1.499894,-1,0,AEC:SA:02202,Europe/Paris,0,AEC, +AEC:SP:02203,1,"Buffevent",43.75726,1.505124,-1,0,AEC:SA:02203,Europe/Paris,0,AEC, +AEC:SP:02204,1,"En Gani",43.748843,1.489487,-1,0,AEC:SA:02205,Europe/Paris,2,AEC, +AEC:SP:02205,1,"En Gani",43.749265,1.489337,-1,0,AEC:SA:02205,Europe/Paris,2,AEC, +AEC:SP:02206,1,"La Corne",43.738601,1.492528,-1,0,AEC:SA:02207,Europe/Paris,2,AEC, +AEC:SP:02207,1,"La Corne",43.738695,1.49278,-1,0,AEC:SA:02207,Europe/Paris,2,AEC, +AEC:SP:02208,1,"Mairie",43.753566,1.491676,-1,0,AEC:SA:02209,Europe/Paris,0,AEC, +AEC:SP:02209,1,"Mairie",43.753325,1.491668,-1,0,AEC:SA:02209,Europe/Paris,0,AEC, +AEC:SP:02210,1,"Vigne Barade",43.756952,1.493664,-1,0,AEC:SA:02211,Europe/Paris,0,AEC, +AEC:SP:02211,1,"Vigne Barrade",43.757207,1.493863,-1,0,AEC:SA:02211,Europe/Paris,0,AEC, +AEC:SP:02212,1,"Cooperative",43.838393,1.445866,-1,0,AEC:SA:02213,Europe/Paris,0,AEC, +AEC:SP:02213,1,"Coopérative",43.838212,1.44569,-1,0,AEC:SA:02213,Europe/Paris,0,AEC, +AEC:SP:02214,1,"Le Moulin",43.829973,1.423237,-1,0,AEC:SA:02215,Europe/Paris,0,AEC, +AEC:SP:02215,1,"Le Moulin",43.829778,1.423193,-1,0,AEC:SA:02215,Europe/Paris,0,AEC, +AEC:SP:02216,1,"Mairie",43.830641,1.432583,-1,0,AEC:SA:02219,Europe/Paris,0,AEC, +AEC:SP:02217,1,"Negrette",43.832744,1.436025,-1,0,AEC:SA:02218,Europe/Paris,0,AEC, +AEC:SP:02218,1,"Negrette",43.83301,1.436681,-1,0,AEC:SA:02218,Europe/Paris,2,AEC, +AEC:SP:02219,1,"Poste",43.829711,1.431604,-1,0,AEC:SA:02219,Europe/Paris,0,AEC, +AEC:SP:02221,1,"CPAM",43.399974,1.714347,-1,0,AEC:SA:02229,Europe/Paris,2,AEC, +AEC:SP:02222,1,"Eglise",43.398461,1.71745,-1,0,AEC:SA:02226,Europe/Paris,0,AEC, +AEC:SP:02223,1,"Gare",43.398649,1.714851,-1,0,AEC:SA:02223,Europe/Paris,0,AEC, +AEC:SP:02224,1,"La Plaine",43.405381,1.709516,-1,0,AEC:SA:02225,Europe/Paris,0,AEC, +AEC:SP:02225,1,"La Plaine",43.40562,1.709637,-1,0,AEC:SA:02225,Europe/Paris,0,AEC, +AEC:SP:02226,1,"La Fontasse",43.39746,1.717053,-1,0,AEC:SA:02226,Europe/Paris,0,AEC, +AEC:SP:02227,1,"Montplaisir",43.390912,1.725443,-1,0,AEC:SA:02228,Europe/Paris,0,AEC, +AEC:SP:02228,1,"Montplaisir",43.391072,1.725642,-1,0,AEC:SA:02228,Europe/Paris,0,AEC, +AEC:SP:02229,1,"Office du Tourisme",43.400218,1.715336,-1,0,AEC:SA:02229,Europe/Paris,2,AEC, +AEC:SP:02230,1,"Parc des Sports",43.403009,1.712061,-1,0,AEC:SA:02231,Europe/Paris,0,AEC, +AEC:SP:02231,1,"Parc des Sports",43.403304,1.711985,-1,0,AEC:SA:02231,Europe/Paris,0,AEC, +AEC:SP:02232,1,"Plaisance",43.38793,1.729123,-1,0,AEC:SA:02233,Europe/Paris,0,AEC, +AEC:SP:02233,1,"Plaisance",43.387569,1.729275,-1,0,AEC:SA:02233,Europe/Paris,0,AEC, +AEC:SP:02234,1,"République",43.396182,1.719988,-1,0,AEC:SA:02238,Europe/Paris,0,AEC, +AEC:SP:02235,1,"Salazar",43.409032,1.706608,-1,0,AEC:SA:02235,Europe/Paris,0,AEC, +AEC:SP:02236,1,"Tertres haut",43.414276,1.699138,-1,0,AEC:SA:02237,Europe/Paris,0,AEC, +AEC:SP:02237,1,"Tertres haut",43.414466,1.699275,-1,0,AEC:SA:02237,Europe/Paris,0,AEC, +AEC:SP:02238,1,"Voltaire",43.396543,1.71811,-1,0,AEC:SA:02238,Europe/Paris,0,AEC, +AEC:SP:02239,1,"Zone industrielle",43.400256,1.701571,-1,0,AEC:SA:02239,Europe/Paris,0,AEC, +AEC:SP:02240,1,"En Tourettes",43.812004,1.461767,-1,0,AEC:SA:02262,Europe/Paris,0,AEC, +AEC:SP:02243,1,"Mairie",43.828543,1.509603,-1,0,AEC:SA:02244,Europe/Paris,0,AEC, +AEC:SP:02244,1,"Mairie",43.828841,1.509686,-1,0,AEC:SA:02244,Europe/Paris,0,AEC, +AEC:SP:02245,1,"Navidals",43.833575,1.47958,-1,0,AEC:SA:02245,Europe/Paris,0,AEC, +AEC:SP:02246,1,"Navidals",43.833679,1.480484,-1,0,AEC:SA:02245,Europe/Paris,0,AEC, +AEC:SP:02247,1,"Raygades",43.824799,1.471109,-1,0,AEC:SA:02273,Europe/Paris,0,AEC, +AEC:SP:02250,1,"Avenue Churchill",43.865423,1.49896,-1,0,AEC:SA:02252,Europe/Paris,0,AEC, +AEC:SP:02252,1,"Avenue Churcill",43.865452,1.499203,-1,0,AEC:SA:02252,Europe/Paris,0,AEC, +AEC:SP:02253,1,"Avenue Kennedy",43.859821,1.483632,-1,0,AEC:SA:02254,Europe/Paris,2,AEC, +AEC:SP:02254,1,"Avenue Kennedy",43.859747,1.483768,-1,0,AEC:SA:02254,Europe/Paris,2,AEC, +AEC:SP:02255,1,"Avenue Leclerc",43.859066,1.501741,-1,0,AEC:SA:02256,Europe/Paris,0,AEC, +AEC:SP:02256,1,"Avenue Leclerc",43.859338,1.502043,-1,0,AEC:SA:02256,Europe/Paris,0,AEC, +AEC:SP:02257,1,"Blessou",43.847309,1.461396,-1,0,AEC:SA:02258,Europe/Paris,0,AEC, +AEC:SP:02258,1,"Blessou",43.847544,1.462126,-1,0,AEC:SA:02258,Europe/Paris,0,AEC, +AEC:SP:02259,1,"Churchill",43.862009,1.502512,-1,0,AEC:SA:02260,Europe/Paris,2,AEC, +AEC:SP:02260,1,"Churchill",43.861893,1.502841,-1,0,AEC:SA:02260,Europe/Paris,2,AEC, +AEC:SP:02261,1,"Cité Verte",43.864692,1.493556,-1,0,AEC:SA:02274,Europe/Paris,0,AEC, +AEC:SP:02262,1,"En Tourettes",43.812096,1.461592,-1,0,AEC:SA:02262,Europe/Paris,0,AEC, +AEC:SP:02263,1,"La Bordasse",43.828166,1.473916,-1,0,AEC:SA:02264,Europe/Paris,0,AEC, +AEC:SP:02264,1,"La Bordasse",43.828346,1.473856,-1,0,AEC:SA:02264,Europe/Paris,0,AEC, +AEC:SP:02265,1,"Leclerc",43.860985,1.502928,-1,0,AEC:SA:02266,Europe/Paris,0,AEC, +AEC:SP:02266,1,"Leclerc",43.860737,1.502985,-1,0,AEC:SA:02266,Europe/Paris,0,AEC, +AEC:SP:02267,1,"Magnanac",43.859139,1.482188,-1,0,AEC:SA:02268,Europe/Paris,2,AEC, +AEC:SP:02268,1,"Magnanac",43.859136,1.482399,-1,0,AEC:SA:02268,Europe/Paris,2,AEC, +AEC:SP:02269,1,"Navidals",43.833502,1.479354,-1,0,AEC:SA:02245,Europe/Paris,0,AEC, +AEC:SP:02270,1,"Pechnauquié",43.847111,1.494326,-1,0,AEC:SA:02271,Europe/Paris,0,AEC, +AEC:SP:02271,1,"Pechnauquié",43.847236,1.494661,-1,0,AEC:SA:02271,Europe/Paris,0,AEC, +AEC:SP:02272,1,"Place Saint-Jean",43.866199,1.503498,-1,0,AEC:SA:02272,Europe/Paris,0,AEC, +AEC:SP:02273,1,"Raygades",43.824983,1.471038,-1,0,AEC:SA:02273,Europe/Paris,0,AEC, +AEC:SP:02274,1,"Victor Hugo",43.864812,1.493585,-1,0,AEC:SA:02274,Europe/Paris,0,AEC, +AEC:SP:02275,1,"Comminges-RN",43.117408,0.665481,-1,0,AEC:SA:02276,Europe/Paris,2,AEC, +AEC:SP:02276,1,"Seilhan",43.11751,0.666331,-1,0,AEC:SA:02276,Europe/Paris,2,AEC, +AEC:SP:02277,1,"Cantalause",43.782694,1.44964,-1,0,AEC:SA:02278,Europe/Paris,0,AEC, +AEC:SP:02278,1,"Cantelose",43.782795,1.449511,-1,0,AEC:SA:02278,Europe/Paris,0,AEC, +AEC:SP:02279,1,"Clos Mignon",43.796197,1.452947,-1,0,AEC:SA:02280,Europe/Paris,0,AEC, +AEC:SP:02280,1,"Clos Mignon",43.796809,1.453425,-1,0,AEC:SA:02280,Europe/Paris,2,AEC, +AEC:SP:02281,1,"Croustets",43.7793,1.447302,-1,0,AEC:SA:02282,Europe/Paris,2,AEC, +AEC:SP:02282,1,"Croustets",43.779519,1.447757,-1,0,AEC:SA:02282,Europe/Paris,2,AEC, +AEC:SP:02283,1,"Eurocentre",43.765028,1.375191,-1,0,AEC:SA:02284,Europe/Paris,2,AEC, +AEC:SP:02284,1,"Eurocentre",43.765266,1.375546,-1,0,AEC:SA:02284,Europe/Paris,2,AEC, +AEC:SP:02285,1,"Eurocentre Sud",43.765161,1.37256,-1,0,AEC:SA:02286,Europe/Paris,2,AEC, +AEC:SP:02286,1,"Eurocentre Sud",43.764585,1.373486,-1,0,AEC:SA:02286,Europe/Paris,2,AEC, +AEC:SP:02289,1,"Galois",43.776562,1.443734,-1,0,AEC:SA:02290,Europe/Paris,0,AEC, +AEC:SP:02290,1,"Galois",43.776515,1.444022,-1,0,AEC:SA:02290,Europe/Paris,0,AEC, +AEC:SP:02291,1,"Grisou",43.778763,1.431148,-1,0,AEC:SA:02292,Europe/Paris,2,AEC, +AEC:SP:02292,1,"Grisou",43.778765,1.430988,-1,0,AEC:SA:02292,Europe/Paris,2,AEC, +AEC:SP:02293,1,"Lambrie",43.766632,1.416558,-1,0,AEC:SA:02288,Europe/Paris,0,AEC, +AEC:SP:02294,1,"Lambrie",43.766933,1.417091,-1,0,AEC:SA:02293,Europe/Paris,0,AEC, +AEC:SP:02295,1,"Mairie",43.769819,1.428755,-1,0,AEC:SA:02296,Europe/Paris,2,AEC, +AEC:SP:02296,1,"Mairie",43.769681,1.428611,-1,0,AEC:SA:02296,Europe/Paris,2,AEC, +AEC:SP:02297,1,"Masseribault",43.762078,1.406267,-1,0,AEC:SA:02298,Europe/Paris,0,AEC, +AEC:SP:02298,1,"Masseribault",43.762164,1.406465,-1,0,AEC:SA:02298,Europe/Paris,0,AEC, +AEC:SP:02299,1,"Montplaisir",43.782083,1.43538,-1,0,AEC:SA:02300,Europe/Paris,0,AEC, +AEC:SP:02300,1,"Montplaisir",43.781933,1.435385,-1,0,AEC:SA:02300,Europe/Paris,0,AEC, +AEC:SP:02301,1,"Pédaoucou",43.771752,1.43906,-1,0,AEC:SA:02301,Europe/Paris,0,AEC, +AEC:SP:02302,1,"Bigot",43.438487,1.653172,-1,0,AEC:SA:02308,Europe/Paris,0,AEC, +AEC:SP:02303,1,"La Bascule",43.435656,1.661285,-1,0,AEC:SA:02309,Europe/Paris,0,AEC, +AEC:SP:02304,1,"La Samarante",43.429367,1.6753,-1,0,AEC:SA:02305,Europe/Paris,0,AEC, +AEC:SP:02305,1,"La Samarante",43.428674,1.6759,-1,0,AEC:SA:02305,Europe/Paris,0,AEC, +AEC:SP:02306,1,"Le Puntou",43.434175,1.665243,-1,0,AEC:SA:02307,Europe/Paris,0,AEC, +AEC:SP:02307,1,"Le Puntou",43.433022,1.66771,-1,0,AEC:SA:02307,Europe/Paris,0,AEC, +AEC:SP:02308,1,"Roquefort",43.438857,1.652746,-1,0,AEC:SA:02308,Europe/Paris,0,AEC, +AEC:SP:02309,1,"Vieille Halle",43.434907,1.662685,-1,0,AEC:SA:02309,Europe/Paris,0,AEC, +AEC:SP:02322,1,"La Bordasse",43.341476,1.163566,-1,0,AEC:SA:02323,Europe/Paris,2,AEC, +AEC:SP:02323,1,"La Bordasse",43.341548,1.163746,-1,0,AEC:SA:02323,Europe/Paris,2,AEC, +AEC:SP:02324,1,"Gare SNCF",43.179659,0.972641,-1,0,AEC:SA:02324,Europe/Paris,2,AEC, +AEC:SP:02327,1,"Métro",43.555878,1.477306,-1,0,AEC:SA:02327,Europe/Paris,2,AEC, +AEC:SP:02328,1,"Aneto",43.609139,1.363102,-1,0,AEC:SA:02329,Europe/Paris,0,AEC, +AEC:SP:02329,1,"Aneto",43.609252,1.363096,-1,0,AEC:SA:02329,Europe/Paris,0,AEC, +AEC:SP:02330,1,"Lemire",43.596739,1.40308,-1,0,AEC:SA:02331,Europe/Paris,2,AEC, +AEC:SP:02331,1,"Lemire",43.597682,1.403813,-1,0,AEC:SA:02331,Europe/Paris,2,AEC, +AEC:SP:02332,1,"Salle des fêtes",43.492498,1.146555,-1,0,AEC:SA:02333,Europe/Paris,2,AEC, +AEC:SP:02333,1,"Salle des fêtes",43.492591,1.146792,-1,0,AEC:SA:02333,Europe/Paris,2,AEC, +AEC:SP:08742,1,"Poney Club",43.68795,1.570407,-1,0,AEC:SA:08743,Europe/Paris,2,AEC, +AEC:SP:08743,1,"Poney Club",43.688284,1.569877,-1,0,AEC:SA:08743,Europe/Paris,2,AEC, +AEC:SP:08744,1,"Place du Paty",43.283694,1.06666,-1,0,AEC:SA:08744,Europe/Paris,2,AEC, +AEC:SP:08745,1,"Route de Daux",43.672968,1.283141,-1,0,AEC:SA:08745,Europe/Paris,2,AEC, +AEC:SP:08746,1,"Pont",43.31118,1.53287,-1,0,AEC:SA:08746,Europe/Paris,0,AEC, +AEC:SP:12383,1,"Village",43.16961,0.676065,-1,0,AEC:SA:12384,Europe/Paris,0,AEC, +AEC:SP:12384,1,"Village",43.169501,0.676652,-1,0,AEC:SA:12384,Europe/Paris,0,AEC, +AEC:SP:12385,1,"Salles des Fêtes",43.756357,1.554801,-1,0,AEC:SA:12385,Europe/Paris,2,AEC, +AEC:SP:13368,1,"Falcou",43.354227,1.468487,-1,0,AEC:SA:13368,Europe/Paris,0,AEC, +AEC:SP:13538,1,"Patte d'Oie",43.596296,1.422097,-1,0,AEC:SA:02062,Europe/Paris,2,AEC, +AEC:SP:14602,1,"Bourdou",43.676955,1.280021,-1,0,AEC:SA:14790,Europe/Paris,0,AEC, +AEC:SP:14613,1,"Nougaret",43.326232,1.191507,-1,0,AEC:SA:14614,Europe/Paris,0,AEC, +AEC:SP:14614,1,"Nougaret",43.325944,1.190994,-1,0,AEC:SA:14614,Europe/Paris,0,AEC, +AEC:SP:14617,1,"Muna",42.899265,0.632507,-1,0,AEC:SA:14617,Europe/Paris,2,AEC, +AEC:SP:14620,1,"Lycée",43.398225,1.72571,-1,0,AEC:SA:14620,Europe/Paris,2,AEC, +AEC:SP:14672,1,"Ecoles",43.689485,1.415874,-1,0,AEC:SA:14672,Europe/Paris,0,AEC, +AEC:SP:14698,1,"Château",43.737796,1.021277,-1,0,AEC:SA:14698,Europe/Paris,0,AEC, +AEC:SP:14700,1,"Faculté de Pharmacie",43.567516,1.464196,-1,0,AEC:SA:14700,Europe/Paris,0,AEC, +AEC:SP:14701,1,"Lafaurie",43.574538,1.490546,-1,0,AEC:SA:14702,Europe/Paris,0,AEC, +AEC:SP:14702,1,"Lafaurie",43.573693,1.491459,-1,0,AEC:SA:14702,Europe/Paris,0,AEC, +AEC:SP:14703,1,"CNES-IAS",43.56269,1.48096,-1,0,AEC:SA:14703,Europe/Paris,0,AEC, +AEC:SP:14734,1,"Place du relais",43.637512,1.390427,-1,0,AEC:SA:14735,Europe/Paris,0,AEC, +AEC:SP:14735,1,"Place du relais",43.637626,1.39051,-1,0,AEC:SA:14735,Europe/Paris,0,AEC, +AEC:SP:14736,1,"Pl.Massenet",43.080841,0.671345,-1,0,AEC:SA:14736,Europe/Paris,0,AEC, +AEC:SP:14790,1,"Bourdou",43.676672,1.280024,-1,0,AEC:SA:14790,Europe/Paris,0,AEC, +AEC:SP:14834,1,"Village",43.613776,1.631881,-1,0,AEC:SA:14834,Europe/Paris,0,AEC, +AEC:SP:14839,1,"Montplaisir",43.567579,1.632881,-1,0,AEC:SA:01843,Europe/Paris,0,AEC, +AEC:SP:14881,1,"L'Auriol",43.586254,1.585577,-1,0,AEC:SA:14881,Europe/Paris,2,AEC, +AEC:SP:15245,1,"Halte Routière",42.80986,0.709405,-1,0,AEC:SA:15245,Europe/Paris,0,AEC, +AEC:SP:15267,1,"Cimetière",43.46582,1.323732,-1,0,AEC:SA:15267,Europe/Paris,0,AEC, +AEC:SP:15275,1,"Gare",43.020972,0.61004,-1,0,AEC:SA:15276,Europe/Paris,0,AEC, +AEC:SP:15276,1,"Gare",43.020885,0.609881,-1,0,AEC:SA:15276,Europe/Paris,0,AEC, +AEC:SP:15277,1,"Collège",43.705229,1.463207,-1,0,AEC:SA:15278,Europe/Paris,0,AEC, +AEC:SP:15278,1,"Collège",43.705274,1.462989,-1,0,AEC:SA:15278,Europe/Paris,0,AEC, +AEC:SP:15281,1,"Lacourtensourt Gare SNCF",43.664165,1.414444,-1,0,STE:SA:OCE87611434,Europe/Paris,0,AEC, +AEC:SP:15282,1,"Lacourtensourt Gare SNCF",43.663769,1.414369,-1,0,STE:SA:OCE87611434,Europe/Paris,0,AEC, +AEC:SP:15287,1,"A320",43.609422,1.357744,-1,0,AEC:SA:15288,Europe/Paris,0,AEC, +AEC:SP:15288,1,"A320",43.609338,1.358189,-1,0,AEC:SA:15288,Europe/Paris,0,AEC, +AEC:SP:15289,1,"Passerelle Airbus",43.609059,1.367191,-1,0,AEC:SA:15290,Europe/Paris,0,AEC, +AEC:SP:15290,1,"Passerelle Airbus",43.609206,1.366747,-1,0,AEC:SA:15290,Europe/Paris,0,AEC, +AEC:SP:15291,1,"Crabe",43.610514,1.371985,-1,0,AEC:SA:15292,Europe/Paris,0,AEC, +AEC:SP:15292,1,"Crabe",43.610409,1.372219,-1,0,AEC:SA:15292,Europe/Paris,0,AEC, +AEC:SP:15293,1,"Ctre Cial Purpan Sud",43.608149,1.393376,-1,0,AEC:SA:15294,Europe/Paris,0,AEC, +AEC:SP:15294,1,"Ctre Cial Purpan Sud",43.607977,1.393321,-1,0,AEC:SA:15294,Europe/Paris,0,AEC, +AEC:SP:15311,1,"Douzans",43.468241,1.328382,-1,0,AEC:SA:15312,Europe/Paris,0,AEC, +AEC:SP:15312,1,"Douzans",43.468229,1.328603,-1,0,AEC:SA:15312,Europe/Paris,0,AEC, +OBO:SP:1,1,"Granet",44.769703,-0.641292,33192,0,OBO:SA:GRANE,Europe/Paris,,OBO, +OBO:SP:10,1,"Mairie du Taillan Médoc",44.904876,-0.668992,33519,0,OBO:SA:LIB55,Europe/Paris,,OBO, +OBO:SP:100,1,"Berthelot",44.864538,-0.579455,33063,0,OBO:SA:BERTHE,Europe/Paris,,OBO, +OBO:SP:1000,1,"Malterre",44.89622,-0.777661,33449,0,OBO:SA:MALTER,Europe/Paris,,OBO, +OBO:SP:1002,1,"Petit Gazinet",44.779732,-0.694698,33318,0,OBO:SA:PGAZIN,Europe/Paris,,OBO, +OBO:SP:1005,1,"Liberté",44.807739,-0.553174,33039,0,OBO:SA:LBERT,Europe/Paris,,OBO, +OBO:SP:1006,1,"Beauséjour",44.8011,-0.684482,33318,0,OBO:SA:BEAUSE,Europe/Paris,,OBO, +OBO:SP:1007,1,"Boncour",44.813009,-0.664802,33318,0,OBO:SA:BONCO,Europe/Paris,,OBO, +OBO:SP:1008,1,"U.C.B.B",44.917019,-0.542925,33032,0,OBO:SA:UCBB,Europe/Paris,,OBO, +OBO:SP:1009,1,"Jonquilles",44.85589,-0.486497,33013,0,OBO:SA:JONQUI,Europe/Paris,,OBO, +OBO:SP:1010,1,"Picardie",44.789668,-0.687289,33318,0,OBO:SA:PICARD,Europe/Paris,,OBO, +OBO:SP:1011,1,"Rue de la Paix",44.850787,-0.522515,33119,0,OBO:SA:RPAIX2,Europe/Paris,,OBO, +OBO:SP:1012,1,"Bernède",44.878365,-0.678084,33200,0,OBO:SA:BERNED,Europe/Paris,,OBO, +OBO:SP:1013,1,"Ramond",44.892847,-0.743931,33449,0,OBO:SA:RAMOND,Europe/Paris,,OBO, +OBO:SP:1014,1,"Tillet",44.821826,-0.572528,33063,0,OBO:SA:TILLE,Europe/Paris,,OBO, +OBO:SP:1015,1,"Oscar Auriac",44.818067,-0.700576,33281,0,OBO:SA:OAURIA,Europe/Paris,,OBO, +OBO:SP:1017,1,"Ballet",44.941077,-0.542542,33434,0,OBO:SA:BALLET,Europe/Paris,,OBO, +OBO:SP:1020,1,"Monge",44.776762,-0.657921,33318,0,OBO:SA:MONGE,Europe/Paris,,OBO, +OBO:SP:1021,1,"Lisière du Vignoble",44.957432,-0.599848,33312,0,OBO:SA:LISVIG,Europe/Paris,,OBO, +OBO:SP:1022,1,"Pacaris",44.797146,-0.580186,33522,0,OBO:SA:PACARI,Europe/Paris,,OBO, +OBO:SP:1023,1,"Rives",44.835775,-0.554062,33063,0,OBO:SA:RIVES,Europe/Paris,,OBO, +OBO:SP:1026,1,"La Boyauderie",44.894711,-0.669215,33162,0,OBO:SA:BOYAU,Europe/Paris,,OBO, +OBO:SP:1027,1,"Pierre Mendès France",44.829586,-0.640388,33281,0,OBO:SA:MANDES,Europe/Paris,,OBO, +OBO:SP:1028,1,"Frères Robinson",44.849848,-0.656539,33281,0,OBO:SA:PCAPEY,Europe/Paris,,OBO, +OBO:SP:1029,1,"Peychaud",44.951545,-0.492855,33003,0,OBO:SA:PEYCHA,Europe/Paris,,OBO, +OBO:SP:103,1,"Rond-Point",44.80518,-0.616715,33318,0,OBO:SA:RDPOIN,Europe/Paris,,OBO, +OBO:SP:1031,1,"Ballet",44.942506,-0.541516,33434,0,OBO:SA:BALLET,Europe/Paris,,OBO, +OBO:SP:1032,1,"Olympiades",44.848182,-0.651553,33281,0,OBO:SA:STMERI,Europe/Paris,,OBO, +OBO:SP:1034,1,"INRA",44.787314,-0.580724,33550,0,OBO:SA:INRA,Europe/Paris,,OBO, +OBO:SP:1035,1,"Pradas",44.826809,-0.658775,33281,0,OBO:SA:PRADA,Europe/Paris,,OBO, +OBO:SP:1036,1,"Le Galus",44.846076,-0.677932,33281,0,OBO:SA:GALUS,Europe/Paris,,OBO, +OBO:SP:1040,1,"Ronsard",44.802654,-0.64182,33318,0,OBO:SA:RONSA,Europe/Paris,,OBO, +OBO:SP:1041,1,"Maison Neuve",44.773379,-0.63447,33192,0,OBO:SA:MNEUV,Europe/Paris,,OBO, +OBO:SP:1042,1,"Lièges",44.846714,-0.629577,33063,0,OBO:SA:LIEGE,Europe/Paris,,OBO, +OBO:SP:1046,1,"Cante-Gric",44.910628,-0.687456,33519,0,OBO:SA:CGRIC,Europe/Paris,,OBO, +OBO:SP:1048,1,"8 Mai 1945",44.851974,-0.511504,33119,0,OBO:SA:8Mai45,Europe/Paris,,OBO, +OBO:SP:1049,1,"Parc de l'Etoile",44.822951,-0.497381,33065,0,OBO:SA:PETOIL,Europe/Paris,,OBO, +OBO:SP:1051,1,"Collège Emile Zola",44.869314,-0.672687,33200,0,OBO:SA:CEZOLA,Europe/Paris,,OBO, +OBO:SP:1052,1,"Le Poteau",44.865483,-0.473736,33013,0,OBO:SA:POTEAU,Europe/Paris,,OBO, +OBO:SP:1054,1,"Jambes",44.929633,-0.509251,33003,0,OBO:SA:JAMBES,Europe/Paris,,OBO, +OBO:SP:1056,1,"Carnot",44.95755,-0.602039,33312,0,OBO:SA:CARN58,Europe/Paris,,OBO, +OBO:SP:1059,1,"Bechade",44.868211,-0.670638,33200,0,OBO:SA:BECHA,Europe/Paris,,OBO, +OBO:SP:106,1,"La Grave d'Ambarès",44.929974,-0.474028,33003,0,OBO:SA:GRAVAM,Europe/Paris,,OBO, +OBO:SP:1060,1,"Combes",44.833656,-0.540882,33167,0,OBO:SA:COMBE,Europe/Paris,,OBO, +OBO:SP:1061,1,"Beutre Antenne Sociale",44.81535,-0.700954,33281,0,OBO:SA:ANSOC,Europe/Paris,,OBO, +OBO:SP:1065,1,"Vélodrome",44.852977,-0.609431,33063,0,OBO:SA:VELODR,Europe/Paris,,OBO, +OBO:SP:1067,1,"Louis Mie",44.831703,-0.58315,33063,0,OBO:SA:LOMIE,Europe/Paris,,OBO, +OBO:SP:1069,1,"Route de Pessac",44.772197,-0.621299,33192,0,OBO:SA:RDPESS,Europe/Paris,,OBO, +OBO:SP:1073,1,"Vieille Cure",44.853554,-0.52706,33119,0,OBO:SA:VCURE,Europe/Paris,,OBO, +OBO:SP:1076,1,"Rivière",44.85713,-0.588942,33063,0,OBO:SA:RIVIER,Europe/Paris,,OBO, +OBO:SP:1077,1,"14 Juillet",44.82263,-0.593373,33522,0,OBO:SA:14JU45,Europe/Paris,,OBO, +OBO:SP:1078,1,"Rue Richelieu",44.845439,-0.616724,33063,0,OBO:SA:RICHE,Europe/Paris,,OBO, +OBO:SP:108,1,"Combelongue",44.776801,-0.70125,33122,0,OBO:SA:COMB46,Europe/Paris,,OBO, +OBO:SP:1080,1,"Landiras",44.830107,-0.584834,33063,0,OBO:SA:LANDIR,Europe/Paris,,OBO, +OBO:SP:1085,1,"Verdot",44.863244,-0.484217,33013,0,OBO:SA:VERDOT,Europe/Paris,,OBO, +OBO:SP:1086,1,"Demosthène",44.82667,-0.660805,33281,0,OBO:SA:DEMOS,Europe/Paris,,OBO, +OBO:SP:1087,1,"Lugat",44.951737,-0.615348,33312,0,OBO:SA:LUGAT,Europe/Paris,,OBO, +OBO:SP:1088,1,"Le Marquis",45.000503,-0.553963,33004,0,OBO:SA:MARQUI,Europe/Paris,,OBO, +OBO:SP:1089,1,"Jourdane",44.948438,-0.536941,33434,0,OBO:SA:JOURDA,Europe/Paris,,OBO, +OBO:SP:109,1,"France-Les Castors",44.793959,-0.669888,33318,0,OBO:SA:FRANCE,Europe/Paris,,OBO, +OBO:SP:1090,1,"Herzog",45.011042,-0.532638,33004,0,OBO:SA:MONT91,Europe/Paris,,OBO, +OBO:SP:1091,1,"Plein Ciel",44.849295,-0.644023,33281,0,OBO:SA:PCIEL,Europe/Paris,,OBO, +OBO:SP:1092,1,"Jean Moulin",44.912496,-0.636284,33056,0,OBO:SA:JMOU37,Europe/Paris,,OBO, +OBO:SP:1093,1,"Anita Conti",44.932696,-0.620515,33056,0,OBO:SA:PLACAN,Europe/Paris,,OBO, +OBO:SP:1094,1,"Barrière St Augustin",44.83432,-0.598896,33063,0,OBO:SA:PECHEU,Europe/Paris,,OBO, +OBO:SP:1095,1,"Quai Français",44.890023,-0.529721,33032,0,OBO:SA:QFRANC,Europe/Paris,,OBO, +OBO:SP:1099,1,"Malbec",44.823239,-0.565843,33063,0,OBO:SA:MALBE,Europe/Paris,,OBO, +OBO:SP:110,1,"Picardie",44.789722,-0.687571,33318,0,OBO:SA:PICARD,Europe/Paris,,OBO, +OBO:SP:1102,1,"Kyrié",44.823452,-0.570707,33063,0,OBO:SA:KYRIE,Europe/Paris,,OBO, +OBO:SP:1103,1,"Rue de l'Union",44.850316,-0.520028,33119,0,OBO:SA:RUNION,Europe/Paris,,OBO, +OBO:SP:1104,1,"Route de Lacanau",44.903729,-0.744937,33449,0,OBO:SA:RLACAN,Europe/Paris,,OBO, +OBO:SP:1105,1,"Madran",44.967937,-0.53397,33434,0,OBO:SA:MADRA,Europe/Paris,,OBO, +OBO:SP:1106,1,"L'Aiglon",44.865148,-0.670045,33200,0,OBO:SA:AIGLON,Europe/Paris,,OBO, +OBO:SP:1107,1,"Jean Cocteau",44.875991,-0.502398,33249,0,OBO:SA:COCT66,Europe/Paris,,OBO, +OBO:SP:1108,1,"La Lande",44.906586,-0.49533,33096,0,OBO:SA:LALA93,Europe/Paris,,OBO, +OBO:SP:1109,1,"Ducourneau",44.868548,-0.591751,33069,0,OBO:SA:DUCOUR,Europe/Paris,,OBO, +OBO:SP:111,1,"Coin",44.763281,-0.556563,33550,0,OBO:SA:COIN,Europe/Paris,,OBO, +OBO:SP:1110,1,"Ramond",44.893524,-0.743926,33449,0,OBO:SA:RAMOND,Europe/Paris,,OBO, +OBO:SP:1111,1,"Francisco Ferrer",44.825154,-0.61305,33063,0,OBO:SA:FFERR,Europe/Paris,,OBO, +OBO:SP:1113,1,"Collège Victor Louis",44.79901,-0.59109,33522,0,OBO:SA:WILSO,Europe/Paris,,OBO, +OBO:SP:1116,1,"R.P.A La Bérengère",44.865199,-0.611915,33069,0,OBO:SA:RPABER,Europe/Paris,,OBO, +OBO:SP:1117,1,"Gérard Philipe",44.874132,-0.503904,33249,0,OBO:SA:GPHILL,Europe/Paris,,OBO, +OBO:SP:1118,1,"Castelneau",44.842647,-0.669359,33281,0,OBO:SA:CASTEL,Europe/Paris,,OBO, +OBO:SP:112,1,"Cerema",44.886488,-0.74139,33449,0,OBO:SA:CETE,Europe/Paris,,OBO, +OBO:SP:1120,1,"Le Printemps",44.951437,-0.606279,33312,0,OBO:SA:PRINTE,Europe/Paris,,OBO, +OBO:SP:1121,1,"St Exupéry",45.011516,-0.539288,33004,0,OBO:SA:GENDAR,Europe/Paris,,OBO, +OBO:SP:1122,1,"Le Skating",44.785936,-0.578738,33550,0,OBO:SA:SKATI,Europe/Paris,,OBO, +OBO:SP:1123,1,"Perrin",44.780076,-0.651151,33318,0,OBO:SA:PERRIN,Europe/Paris,,OBO, +OBO:SP:1124,1,"L'Aiglon",44.865245,-0.670381,33200,0,OBO:SA:AIGLON,Europe/Paris,,OBO, +OBO:SP:1127,1,"Lavergne",44.876831,-0.520867,33249,0,OBO:SA:LAVER,Europe/Paris,,OBO, +OBO:SP:1129,1,"Dufresne",44.989412,-0.541688,33004,0,OBO:SA:DUFRES,Europe/Paris,,OBO, +OBO:SP:1130,1,"Proust",44.897446,-0.719205,33449,0,OBO:SA:PROUST,Europe/Paris,,OBO, +OBO:SP:1131,1,"France Alouette",44.799604,-0.662446,33318,0,OBX:SA:TALOU,Europe/Paris,,OBO, +OBO:SP:1133,1,"Molière",44.904613,-0.699743,33519,0,OBO:SA:MOLIER,Europe/Paris,,OBO, +OBO:SP:1135,1,"Les Finances",44.76502,-0.552916,33550,0,OBO:SA:FINAN,Europe/Paris,,OBO, +OBO:SP:1136,1,"Fraternité",44.818308,-0.615699,33318,0,OBO:SA:FRAT47,Europe/Paris,,OBO, +OBO:SP:1137,1,"Dehès",44.888346,-0.680717,33200,0,OBO:SA:DEHES,Europe/Paris,,OBO, +OBO:SP:1138,1,"Cardinal",44.803579,-0.625701,33318,0,OBO:SA:CARDIN,Europe/Paris,,OBO, +OBO:SP:114,1,"Berlioz",44.824522,-0.628269,33281,0,OBO:SA:BERLIO,Europe/Paris,,OBO, +OBO:SP:1140,1,"Sembat",44.815921,-0.608758,33522,0,OBO:SA:SEBAT,Europe/Paris,,OBO, +OBO:SP:1141,1,"Rue de la Paix",44.763957,-0.564967,33550,0,OBO:SA:RPAIX,Europe/Paris,,OBO, +OBO:SP:1142,1,"Tartifume",44.791317,-0.709978,33318,0,OBO:SA:TARTIF,Europe/Paris,,OBO, +OBO:SP:1144,1,"Chantiers de la Garonne",44.859773,-0.543151,33063,0,OBO:SA:CHANT,Europe/Paris,,OBO, +OBO:SP:1145,1,"Les 5 Chemins",44.861152,-0.694571,33200,0,OBO:SA:TESPA,Europe/Paris,,OBO, +OBO:SP:1146,1,"Grands Moulins",44.854091,-0.553131,33063,0,OBO:SA:MOULI,Europe/Paris,,OBO, +OBO:SP:1147,1,"Nouzarède",44.809319,-0.562352,33039,0,OBO:SA:NOUZA,Europe/Paris,,OBO, +OBO:SP:1149,1,"Proust",44.89793,-0.720112,33449,0,OBO:SA:PROUST,Europe/Paris,,OBO, +OBO:SP:115,1,"Lycée Elie Faure",44.87016,-0.517509,33249,0,OBO:SA:EFAURE,Europe/Paris,,OBO, +OBO:SP:1150,1,"Le Poujeau",44.80911,-0.629084,33318,0,OBO:SA:LEPOUJ,Europe/Paris,,OBO, +OBO:SP:1153,1,"Pape Clément (Place Sellier)",44.805204,-0.654165,33318,0,OBO:SA:PAPECL,Europe/Paris,,OBO, +OBO:SP:1155,1,"Socrate",44.882029,-0.678768,33200,0,OBO:SA:SOCR52,Europe/Paris,,OBO, +OBO:SP:1156,1,"Chouiney",44.778916,-0.593741,33192,0,OBO:SA:CHOUIN,Europe/Paris,,OBO, +OBO:SP:1157,1,"La Pargaud",44.907491,-0.668986,33519,0,OBO:SA:PARGAU,Europe/Paris,,OBO, +OBO:SP:1158,1,"Privat",44.825269,-0.598417,33063,0,OBO:SA:PRIVA,Europe/Paris,,OBO, +OBO:SP:116,1,"Maurian",44.830749,-0.620857,33063,0,OBO:SA:MAURIA,Europe/Paris,,OBO, +OBO:SP:1160,1,"Lucassot",44.824778,-0.684453,33281,0,OBO:SA:LUCASS,Europe/Paris,,OBO, +OBO:SP:1162,1,"Docteur Férié",44.900823,-0.711224,33449,0,OBO:SA:DFERIE,Europe/Paris,,OBO, +OBO:SP:1163,1,"Clinique du Sport",44.817388,-0.682816,33281,0,OBO:SA:MBARAI,Europe/Paris,,OBO, +OBO:SP:1164,1,"Hortense",44.849352,-0.56208,33063,0,OBO:SA:HORTE,Europe/Paris,,OBO, +OBO:SP:1165,1,"Joliot Curie",44.841156,-0.651159,33281,0,OBO:SA:JOCUR,Europe/Paris,,OBO, +OBO:SP:1166,1,"Jardin Public",44.899743,-0.517373,33032,0,OBO:SA:JPUB90,Europe/Paris,,OBO, +OBO:SP:1169,1,"Mattéoti",44.83159,-0.544045,33063,0,OBO:SA:MATTE,Europe/Paris,,OBO, +OBO:SP:1170,1,"Courteault",44.835222,-0.608048,33063,0,OBO:SA:COURTE,Europe/Paris,,OBO, +OBO:SP:1171,1,"La Madeleine",44.774415,-0.637207,33192,0,OBO:SA:MADEL,Europe/Paris,,OBO, +OBO:SP:1172,1,"Terres Neuves (station Tram)",44.815724,-0.550944,33063,0,OBX:SA:NEUVE,Europe/Paris,,OBO, +OBO:SP:1176,1,"Libération",44.85622,-0.644751,33281,0,OBO:SA:FORET,Europe/Paris,,OBO, +OBO:SP:1177,1,"Cigales",44.856596,-0.491001,33013,0,OBO:SA:CIGALE,Europe/Paris,,OBO, +OBO:SP:118,1,"Village 5",44.793016,-0.613565,33192,0,OBO:SA:VILLA5,Europe/Paris,,OBO, +OBO:SP:1180,1,"Rameau",44.759878,-0.572981,33550,0,OBO:SA:COUHIN,Europe/Paris,,OBO, +OBO:SP:1181,1,"Magonty",44.7938,-0.702319,33318,0,OBO:SA:MAGON,Europe/Paris,,OBO, +OBO:SP:1182,1,"Mazeau",44.870783,-0.710099,33449,0,OBO:SA:MAZEA,Europe/Paris,,OBO, +OBO:SP:1183,1,"Jean Jaurès",44.837404,-0.536951,33167,0,OBO:SA:JJA06,Europe/Paris,,OBO, +OBO:SP:1187,1,"Fontaudin",44.850699,-0.492522,33013,0,OBO:SA:FONDIN,Europe/Paris,,OBO, +OBO:SP:1189,1,"Cazanove",44.820827,-0.694565,33281,0,OBO:SA:CAZANO,Europe/Paris,,OBO, +OBO:SP:1190,1,"Rue de la Gare",44.946238,-0.610133,33312,0,OBO:SA:RUGARE,Europe/Paris,,OBO, +OBO:SP:1191,1,"Castés",44.84013,-0.516982,33167,0,OBO:SA:CASTE,Europe/Paris,,OBO, +OBO:SP:1192,1,"André Ricard",44.859656,-0.53976,33063,0,OBO:SA:ARICAR,Europe/Paris,,OBO, +OBO:SP:1194,1,"Hopital Haut Leveque",44.787353,-0.654889,33318,0,OBO:SA:HLEVQ,Europe/Paris,,OBO, +OBO:SP:1195,1,"Jules Ferry",44.844934,-0.532282,33119,0,OBO:SA:FERRY,Europe/Paris,,OBO, +OBO:SP:1197,1,"Meyraud",44.797317,-0.665652,33318,0,OBO:SA:MEYRA,Europe/Paris,,OBO, +OBO:SP:120,1,"Les Coteaux",44.911159,-0.517176,33032,0,OBO:SA:COTEAU,Europe/Paris,,OBO, +OBO:SP:1200,1,"Rousseau",44.835128,-0.530032,33167,0,OBO:SA:ROUSS,Europe/Paris,,OBO, +OBO:SP:1204,1,"Fourney",44.82201,-0.490332,33065,0,OBO:SA:FOURNE,Europe/Paris,,OBO, +OBO:SP:1205,1,"Vincent",44.845181,-0.544016,33063,0,OBO:SA:VINCE5,Europe/Paris,,OBO, +OBO:SP:1206,1,"Leygues",44.831884,-0.613964,33063,0,OBO:SA:LEYGUE,Europe/Paris,,OBO, +OBO:SP:1207,1,"Bardanac",44.796106,-0.609169,33318,0,OBO:SA:BARDAN,Europe/Paris,,OBO, +OBO:SP:1209,1,"La Grave",44.822046,-0.691517,33281,0,OBO:SA:LGRAV2,Europe/Paris,,OBO, +OBO:SP:121,1,"Le Mayne",45.021846,-0.57588,33004,0,OBO:SA:LMAYNE,Europe/Paris,,OBO, +OBO:SP:1210,1,"Luze",44.8553,-0.577776,33063,0,OBO:SA:LUZE,Europe/Paris,,OBO, +OBO:SP:1211,1,"Jamois",44.991362,-0.543273,33004,0,OBO:SA:JAMOIS,Europe/Paris,,OBO, +OBO:SP:1212,1,"Labatut",44.835383,-0.632936,33281,0,OBO:SA:LBATU,Europe/Paris,,OBO, +OBO:SP:1215,1,"Hippodrome",44.872363,-0.632364,33162,0,OBO:SA:HIPP54,Europe/Paris,,OBO, +OBO:SP:1216,1,"Desbats",44.803635,-0.61792,33318,0,OBO:SA:DESBAT,Europe/Paris,,OBO, +OBO:SP:1219,1,"Carsat",44.895714,-0.553054,33063,0,OBO:SA:ASSED,Europe/Paris,,OBO, +OBO:SP:122,1,"Sadi Carnot",44.863546,-0.590353,33069,0,OBO:SA:SCARNO,Europe/Paris,,OBO, +OBO:SP:1220,1,"Montherlant",44.796492,-0.581436,33522,0,OBO:SA:MONTH,Europe/Paris,,OBO, +OBO:SP:1222,1,"Belleville",44.833506,-0.583138,33063,0,OBO:SA:BELL48,Europe/Paris,,OBO, +OBO:SP:1223,1,"Joliot Curie",44.841228,-0.652532,33281,0,OBO:SA:JOCUR,Europe/Paris,,OBO, +OBO:SP:1224,1,"Bertin",44.816051,-0.565729,33063,0,OBO:SA:BERTI,Europe/Paris,,OBO, +OBO:SP:1225,1,"Les Erables",44.812887,-0.62301,33318,0,OBO:SA:LERAB,Europe/Paris,,OBO, +OBO:SP:1226,1,"Les 5 Chemins",44.861454,-0.695238,33200,0,OBO:SA:TESPA,Europe/Paris,,OBO, +OBO:SP:1227,1,"Colette",44.834871,-0.636171,33281,0,OBO:SA:COLETT,Europe/Paris,,OBO, +OBO:SP:1231,1,"Rue de Bègles",44.821369,-0.565142,33063,0,OBO:SA:RBEGLE,Europe/Paris,,OBO, +OBO:SP:1233,1,"Simone de Beauvoir",44.865742,-0.635852,33162,0,OBO:SA:SBEAUV,Europe/Paris,,OBO, +OBO:SP:1234,1,"Rostand",44.841235,-0.64412,33281,0,OBO:SA:ROSTA,Europe/Paris,,OBO, +OBO:SP:1235,1,"Michelet",44.821589,-0.620115,33281,0,OBO:SA:MHELET,Europe/Paris,,OBO, +OBO:SP:1237,1,"Hauts de Guitres",44.830428,-0.520807,33167,0,OBO:SA:HGUIT,Europe/Paris,,OBO, +OBO:SP:1238,1,"Meyraud",44.797339,-0.665514,33318,0,OBO:SA:MEYRA,Europe/Paris,,OBO, +OBO:SP:124,1,"Epernay",44.831765,-0.615945,33063,0,OBO:SA:EPERNA,Europe/Paris,,OBO, +OBO:SP:1240,1,"Caserne Nansouty",44.820261,-0.569073,33063,0,OBO:SA:CASERN,Europe/Paris,,OBO, +OBO:SP:1241,1,"Auriac",44.814764,-0.552758,33063,0,OBO:SA:AURIA,Europe/Paris,,OBO, +OBO:SP:1247,1,"Quarante Journaux (côté Ginko)",44.883246,-0.570583,33063,0,OBX:SA:40JOU,Europe/Paris,,OBO, +OBO:SP:125,1,"Fauvettes",44.859919,-0.497948,33013,0,OBO:SA:FAUVE2,Europe/Paris,,OBO, +OBO:SP:1252,1,"Edison",44.82033,-0.596214,33063,0,OBO:SA:EDIS45,Europe/Paris,,OBO, +OBO:SP:1253,1,"Monrabeau",44.838651,-0.62423,33281,0,OBO:SA:MONRAB,Europe/Paris,,OBO, +OBO:SP:1254,1,"Bardanac",44.796602,-0.610011,33318,0,OBO:SA:BARDAN,Europe/Paris,,OBO, +OBO:SP:1255,1,"Lavergne",44.876802,-0.520916,33249,0,OBO:SA:LAVER,Europe/Paris,,OBO, +OBO:SP:1258,1,"Europarc",44.781074,-0.655329,33318,0,OBO:SA:EUROPA,Europe/Paris,,OBO, +OBO:SP:1259,1,"Lartigue",44.841925,-0.595355,33063,0,OBO:SA:LARTIG,Europe/Paris,,OBO, +OBO:SP:126,1,"Pins Francs",44.866389,-0.623233,33063,0,OBO:SA:PFRAN,Europe/Paris,,OBO, +OBO:SP:1260,1,"Quai de Brienne (côté BMW)",44.820746,-0.541854,33063,0,OBO:SA:QBRIE,Europe/Paris,,OBO, +OBO:SP:1261,1,"Allende",44.800663,-0.557714,33039,0,OBO:SA:ALL22,Europe/Paris,,OBO, +OBO:SP:1263,1,"Dauphine",44.852097,-0.612098,33063,0,OBO:SA:DAUPH,Europe/Paris,,OBO, +OBO:SP:1266,1,"Jeanne d'Arc",44.823729,-0.592278,33063,0,OBO:SA:JEADAR,Europe/Paris,,OBO, +OBO:SP:1268,1,"Tillède",45.024415,-0.552253,33004,0,OBO:SA:TILLED,Europe/Paris,,OBO, +OBO:SP:1269,1,"Fort Lajard",45.017345,-0.577118,33004,0,OBO:SA:FLAJAR,Europe/Paris,,OBO, +OBO:SP:127,1,"Victor Hugo",44.897705,-0.497731,33096,0,OBO:SA:VHUG93,Europe/Paris,,OBO, +OBO:SP:1270,1,"Radio",44.785073,-0.683166,33318,0,OBO:SA:RADIO,Europe/Paris,,OBO, +OBO:SP:1271,1,"Chopin",44.757531,-0.572263,33550,0,OBO:SA:CHOPIN,Europe/Paris,,OBO, +OBO:SP:1275,1,"Daguin",44.812927,-0.56115,33063,0,OBO:SA:DAGUI,Europe/Paris,,OBO, +OBO:SP:1278,1,"Germignan",44.907915,-0.696131,33519,0,OBO:SA:GERMI,Europe/Paris,,OBO, +OBO:SP:128,1,"Rue de Bègles",44.82346,-0.566275,33063,0,OBO:SA:RBEGLE,Europe/Paris,,OBO, +OBO:SP:1280,1,"Sarget",44.808569,-0.608679,33318,0,OBO:SA:SARGET,Europe/Paris,,OBO, +OBO:SP:1281,1,"Bouliac Centre Commercial (Gabarre)",44.817342,-0.528471,33065,0,OBO:SA:CCOME,Europe/Paris,,OBO, +OBO:SP:1283,1,"Socrate",44.88207,-0.678619,33200,0,OBO:SA:SOCR52,Europe/Paris,,OBO, +OBO:SP:1284,1,"Ruet",44.870164,-0.674251,33200,0,OBO:SA:RUET,Europe/Paris,,OBO, +OBO:SP:1285,1,"Les As",44.809268,-0.658291,33318,0,OBO:SA:LESAS,Europe/Paris,,OBO, +OBO:SP:1288,1,"Brun",44.817663,-0.5722,33063,0,OBO:SA:BRUN,Europe/Paris,,OBO, +OBO:SP:1289,1,"Charles Péguy",44.806735,-0.657214,33318,0,OBO:SA:CPEGY,Europe/Paris,,OBO, +OBO:SP:1290,1,"Cité Chaigneau",44.857693,-0.590473,33063,0,OBO:SA:CHAIGN,Europe/Paris,,OBO, +OBO:SP:1291,1,"14 Juillet",44.807653,-0.547712,33039,0,OBO:SA:14JUIL,Europe/Paris,,OBO, +OBO:SP:1293,1,"Les As",44.809581,-0.658362,33318,0,OBO:SA:LESAS,Europe/Paris,,OBO, +OBO:SP:1294,1,"Goillot",44.841938,-0.663536,33281,0,OBO:SA:GOILLO,Europe/Paris,,OBO, +OBO:SP:1297,1,"Z.A. d'Auguste",44.765188,-0.723941,33318,0,OBO:SA:ZAAUG,Europe/Paris,,OBO, +OBO:SP:1298,1,"Parc d'Espagne",44.797406,-0.683886,33318,0,OBO:SA:PESPA,Europe/Paris,,OBO, +OBO:SP:1299,1,"Blayais",44.768304,-0.719213,33122,0,OBO:SA:BLAYAI,Europe/Paris,,OBO, +OBO:SP:13,1,"Chateaubriand",44.900524,-0.732244,33449,0,OBO:SA:CHABRI,Europe/Paris,,OBO, +OBO:SP:130,1,"Maison de Convalescence",44.882291,-0.521476,33249,0,OBO:SA:MCONVA,Europe/Paris,,OBO, +OBO:SP:1301,1,"Combelongue",44.77692,-0.701195,33318,0,OBO:SA:COMB46,Europe/Paris,,OBO, +OBO:SP:1303,1,"Pont de Peyre",44.97118,-0.479732,33487,0,OBO:SA:POTPEY,Europe/Paris,,OBO, +OBO:SP:1304,1,"Fraternité",44.838477,-0.543985,33167,0,OBO:SA:FRAT08,Europe/Paris,,OBO, +OBO:SP:1305,1,"Lamartine",44.903643,-0.49663,33096,0,OBO:SA:LMAR93,Europe/Paris,,OBO, +OBO:SP:1306,1,"La Morlette",44.854849,-0.518057,33119,0,OBX:SA:MORLE,Europe/Paris,,OBO, +OBO:SP:1309,1,"Jaubert",44.807523,-0.626627,33318,0,OBO:SA:JAUBE,Europe/Paris,,OBO, +OBO:SP:1310,1,"Le Pont",44.834983,-0.625589,33281,0,OBO:SA:LEPON,Europe/Paris,,OBO, +OBO:SP:1313,1,"Boiron",44.787646,-0.67788,33318,0,OBO:SA:BOIRO,Europe/Paris,,OBO, +OBO:SP:1316,1,"St Hubert",44.791762,-0.672263,33318,0,OBO:SA:SHUBE,Europe/Paris,,OBO, +OBO:SP:1317,1,"La Forêt",44.862534,-0.648735,33281,0,OBO:SA:FORET2,Europe/Paris,,OBO, +OBO:SP:1318,1,"Stade de Moulerens",44.780035,-0.631294,33192,0,OBO:SA:MOULER,Europe/Paris,,OBO, +OBO:SP:1319,1,"Abel Gance",44.878549,-0.500175,33249,0,OBO:SA:TABERN,Europe/Paris,,OBO, +OBO:SP:1320,1,"Gérard Philipe",44.874523,-0.504651,33249,0,OBO:SA:GPHILL,Europe/Paris,,OBO, +OBO:SP:1321,1,"Procession",44.814889,-0.695606,33281,0,OBO:SA:PROCE,Europe/Paris,,OBO, +OBO:SP:1323,1,"Barrière d'Arès",44.836055,-0.599045,33063,0,OBO:SA:BARES,Europe/Paris,,OBO, +OBO:SP:1325,1,"Vélodrome",44.858323,-0.605517,33069,0,OBO:SA:VELOD,Europe/Paris,,OBO, +OBO:SP:1330,1,"Marronniers",44.843869,-0.679802,33281,0,OBO:SA:MARRO,Europe/Paris,,OBO, +OBO:SP:1331,1,"Quai de Vial (Everite)",44.920064,-0.544361,33032,0,OBO:SA:QVIAL,Europe/Paris,,OBO, +OBO:SP:1332,1,"Dutertre",44.840736,-0.592822,33063,0,OBO:SA:DUTER,Europe/Paris,,OBO, +OBO:SP:1337,1,"Rébédech",44.83293,-0.522902,33167,0,OBO:SA:REBED,Europe/Paris,,OBO, +OBO:SP:1338,1,"Anatole France",44.766291,-0.580081,33550,0,OBO:SA:AFR21,Europe/Paris,,OBO, +OBO:SP:1339,1,"Ronsard",44.8026,-0.641273,33318,0,OBO:SA:RONSA,Europe/Paris,,OBO, +OBO:SP:1341,1,"Parc d'Espagne",44.796979,-0.683453,33318,0,OBO:SA:PESPA,Europe/Paris,,OBO, +OBO:SP:1344,1,"Cigales",44.856665,-0.490802,33013,0,OBO:SA:CIGALE,Europe/Paris,,OBO, +OBO:SP:1345,1,"Bibliothèque",44.834648,-0.585732,33063,0,OBO:SA:BIBLIO,Europe/Paris,,OBO, +OBO:SP:1346,1,"Malbrède",44.983059,-0.481728,33487,0,OBO:SA:MALBRE,Europe/Paris,,OBO, +OBO:SP:1348,1,"Primevères",44.765996,-0.639458,33192,0,OBO:SA:PLUC,Europe/Paris,,OBO, +OBO:SP:1349,1,"Marne",44.788585,-0.675929,33318,0,OBO:SA:MARN46,Europe/Paris,,OBO, +OBO:SP:135,1,"Avenue Gambetta",44.818588,-0.629203,33281,0,OBO:SA:AVGTA,Europe/Paris,,OBO, +OBO:SP:1350,1,"Prieuré de Cayac",44.766786,-0.618356,33192,0,OBO:SA:CAYAC,Europe/Paris,,OBO, +OBO:SP:1351,1,"Square Monrepos",44.84269,-0.536524,33119,0,OBO:SA:SQMON,Europe/Paris,,OBO, +OBO:SP:1352,1,"Le Galus",44.846337,-0.677937,33281,0,OBO:SA:GALUS,Europe/Paris,,OBO, +OBO:SP:1353,1,"Baraille",44.956104,-0.513194,33003,0,OBO:SA:BARAIL,Europe/Paris,,OBO, +OBO:SP:1354,1,"Berlioz",44.83814,-0.509511,33167,0,OBO:SA:BERLI,Europe/Paris,,OBO, +OBO:SP:1355,1,"Berlincan",44.8819,-0.687545,33449,0,OBO:SA:BERLIN,Europe/Paris,,OBO, +OBO:SP:1357,1,"Jean Jaurès",44.896725,-0.517349,33032,0,OBO:SA:JJAU90,Europe/Paris,,OBO, +OBO:SP:1358,1,"Mozart",44.811937,-0.61677,33318,0,OBO:SA:MOZ45,Europe/Paris,,OBO, +OBO:SP:1361,1,"Place Mozart",44.814677,-0.601259,33522,0,OBO:SA:MOZAR,Europe/Paris,,OBO, +OBO:SP:1364,1,"La Tresne",44.840843,-0.549746,33063,0,OBO:SA:LATRE,Europe/Paris,,OBO, +OBO:SP:1366,1,"Campana",44.818922,-0.625312,33281,0,OBO:SA:CAMPN,Europe/Paris,,OBO, +OBO:SP:1367,1,"Le Trinquet",44.801358,-0.663383,33318,0,OBO:SA:ANDER,Europe/Paris,,OBO, +OBO:SP:137,1,"Campeyraut",44.826445,-0.59691,33063,0,OBO:SA:CAMPEY,Europe/Paris,,OBO, +OBO:SP:1370,1,"La Jacquotte",44.820174,-0.531535,33167,0,OBO:SA:JACQU,Europe/Paris,,OBO, +OBO:SP:1373,1,"Frères Lumière",44.796484,-0.532856,33039,0,OBO:SA:FLUMI,Europe/Paris,,OBO, +OBO:SP:1376,1,"Cimetière d'Ambès",45.013591,-0.534413,33004,0,OBO:SA:CIMAMB,Europe/Paris,,OBO, +OBO:SP:1378,1,"Le Poteau",44.865402,-0.473718,33013,0,OBO:SA:POTEAU,Europe/Paris,,OBO, +OBO:SP:1379,1,"Latule",44.870478,-0.565144,33063,0,OBO:SA:LATULE,Europe/Paris,,OBO, +OBO:SP:1381,1,"Lièges",44.846774,-0.629657,33063,0,OBO:SA:LIEGE,Europe/Paris,,OBO, +OBO:SP:1387,1,"Salengro",44.806975,-0.559874,33039,0,OBO:SA:SALEN,Europe/Paris,,OBO, +OBO:SP:1389,1,"Domaine de Moulerin",44.915972,-0.509462,33032,0,OBO:SA:DMOULE,Europe/Paris,,OBO, +OBO:SP:139,1,"André Eustache",44.81206,-0.640544,33318,0,OBO:SA:EUSTA,Europe/Paris,,OBO, +OBO:SP:1390,1,"Edison",44.821253,-0.594969,33063,0,OBO:SA:EDIS45,Europe/Paris,,OBO, +OBO:SP:1391,1,"Béchade",45.023098,-0.545218,33004,0,OBO:SA:BECH92,Europe/Paris,,OBO, +OBO:SP:1396,1,"Pasteur",44.901155,-0.512922,33032,0,OBO:SA:PAST90,Europe/Paris,,OBO, +OBO:SP:1398,1,"La Moune",44.864312,-0.47744,33013,0,OBO:SA:MOUNE,Europe/Paris,,OBO, +OBO:SP:14,1,"Ste Christine",44.88028,-0.685284,33200,0,OBO:SA:SCRIST,Europe/Paris,,OBO, +OBO:SP:140,1,"Delacroix",44.838296,-0.521389,33167,0,OBO:SA:DELAC,Europe/Paris,,OBO, +OBO:SP:1400,1,"Bolivar",44.876228,-0.55054,33063,0,OBO:SA:BOLIVA,Europe/Paris,,OBO, +OBO:SP:1403,1,"Magendie",44.88193,-0.526042,33249,0,OBO:SA:MAGEN,Europe/Paris,,OBO, +OBO:SP:1404,1,"Sabarots",44.846106,-0.560176,33063,0,OBO:SA:SABAR,Europe/Paris,,OBO, +OBO:SP:1406,1,"Victor Hugo",44.897356,-0.497659,33096,0,OBO:SA:VHUG93,Europe/Paris,,OBO, +OBO:SP:1407,1,"Aloha",44.915724,-0.680307,33519,0,OBO:SA:ALOHA,Europe/Paris,,OBO, +OBO:SP:1408,1,"Imhotep",44.892047,-0.556119,33063,0,OBO:SA:IMHOTE,Europe/Paris,,OBO, +OBO:SP:1409,1,"Clos des Bruyères",44.815416,-0.690892,33281,0,OBO:SA:BRUYE,Europe/Paris,,OBO, +OBO:SP:141,1,"Virginia",44.850319,-0.625971,33063,0,OBO:SA:VIRGI,Europe/Paris,,OBO, +OBO:SP:1410,1,"Marionneau",44.841176,-0.587035,33063,0,OBO:SA:MARION,Europe/Paris,,OBO, +OBO:SP:1411,1,"Cerema",44.886812,-0.741424,33449,0,OBO:SA:CETE,Europe/Paris,,OBO, +OBO:SP:1415,1,"U.C.B.B",44.91714,-0.543072,33032,0,OBO:SA:UCBB,Europe/Paris,,OBO, +OBO:SP:1418,1,"Cèdres",44.829757,-0.516687,33167,0,OBO:SA:CEDRE,Europe/Paris,,OBO, +OBO:SP:1419,1,"Lugat",44.951682,-0.615395,33312,0,OBO:SA:LUGAT,Europe/Paris,,OBO, +OBO:SP:1420,1,"Capelle",44.817324,-0.547956,33063,0,OBO:SA:CAPEL,Europe/Paris,,OBO, +OBO:SP:1422,1,"Curie",44.812464,-0.557309,33063,0,OBO:SA:JJBOS,Europe/Paris,,OBO, +OBO:SP:1423,1,"Pauge",44.757632,-0.576671,33550,0,OBO:SA:PAUGE,Europe/Paris,,OBO, +OBO:SP:1427,1,"Meunier",44.899999,-0.520394,33032,0,OBO:SA:MEUNIR,Europe/Paris,,OBO, +OBO:SP:1428,1,"19 Mars 1962",45.012517,-0.535565,33004,0,OBO:SA:19MA91,Europe/Paris,,OBO, +OBO:SP:1430,1,"Cabannes",44.820431,-0.51975,33167,0,OBO:SA:CABAN,Europe/Paris,,OBO, +OBO:SP:1436,1,"Jacquet",44.824381,-0.610505,33063,0,OBO:SA:JACQET,Europe/Paris,,OBO, +OBO:SP:1437,1,"Emile Combes",44.846539,-0.533372,33119,0,OBO:SA:ECOMB,Europe/Paris,,OBO, +OBO:SP:1439,1,"Bourbon",44.840042,-0.5206,33167,0,OBO:SA:BOUR32,Europe/Paris,,OBO, +OBO:SP:144,1,"Avenue du Coteau (vers Berliquet)",44.814308,-0.501654,33065,0,OBO:SA:COTEA,Europe/Paris,,OBO, +OBO:SP:1440,1,"CAF",44.890485,-0.557604,33063,0,OBO:SA:LELAC,Europe/Paris,,OBO, +OBO:SP:1442,1,"Pont du Guit",44.823784,-0.558432,33063,0,OBO:SA:PGUIT,Europe/Paris,,OBO, +OBO:SP:1443,1,"Bonnet (rue St Exupéry)",45.015584,-0.532938,33004,0,OBO:SA:BONNET,Europe/Paris,,OBO, +OBO:SP:1447,1,"Lyautey",44.79324,-0.631806,33318,0,OBO:SA:LYAUTE,Europe/Paris,,OBO, +OBO:SP:1448,1,"Lakanal",44.864785,-0.614942,33069,0,OBO:SA:LAKANA,Europe/Paris,,OBO, +OBO:SP:1449,1,"Gouraud (av Yser)",44.841709,-0.665839,33281,0,OBO:SA:GOURAU,Europe/Paris,,OBO, +OBO:SP:145,1,"Murat",44.847404,-0.626391,33063,0,OBO:SA:MURAT,Europe/Paris,,OBO, +OBO:SP:1450,1,"Caussade",44.846511,-0.516103,33167,0,OBO:SA:CAUSS,Europe/Paris,,OBO, +OBO:SP:1451,1,"Quai de Brazza",44.855524,-0.550345,33063,0,OBO:SA:BRAZZ,Europe/Paris,,OBO, +OBO:SP:1452,1,"Clos de Hilde",44.799501,-0.530654,33039,0,OBO:SA:HILDE,Europe/Paris,,OBO, +OBO:SP:1453,1,"Meunier",44.828652,-0.563147,33063,0,OBO:SA:MEUNI,Europe/Paris,,OBO, +OBO:SP:1456,1,"Mendès France",44.840529,-0.640629,33281,0,OBO:SA:MEFRA,Europe/Paris,,OBO, +OBO:SP:1457,1,"La Motte",44.943885,-0.532187,33434,0,OBO:SA:LAMOTT,Europe/Paris,,OBO, +OBO:SP:1459,1,"Castillon",44.860169,-0.592494,33069,0,OBO:SA:CASTI,Europe/Paris,,OBO, +OBO:SP:146,1,"Mac Carthy",44.838584,-0.621578,33063,0,OBO:SA:MCARTY,Europe/Paris,,OBO, +OBO:SP:1460,1,"La Motte",44.943503,-0.53116,33434,0,OBO:SA:LAMOTT,Europe/Paris,,OBO, +OBO:SP:1461,1,"Avenue Ausone",44.8705,-0.592433,33075,0,OBO:SA:AVAUSO,Europe/Paris,,OBO, +OBO:SP:1464,1,"Côte de Monrepos",44.844263,-0.521928,33167,0,OBO:SA:MONRE,Europe/Paris,,OBO, +OBO:SP:1465,1,"Saint Romain",44.849181,-0.527685,33119,0,OBO:SA:SROMAI,Europe/Paris,,OBO, +OBO:SP:1466,1,"Vallon",44.82119,-0.625154,33281,0,OBO:SA:VALLO,Europe/Paris,,OBO, +OBO:SP:1467,1,"Hontane",44.915388,-0.677634,33519,0,OBO:SA:HOTA,Europe/Paris,,OBO, +OBO:SP:1470,1,"Bazin",44.826603,-0.65191,33281,0,OBO:SA:BAZIN,Europe/Paris,,OBO, +OBO:SP:1474,1,"Charles Perrault",44.864353,-0.497933,33013,0,OBO:SA:CHPERR,Europe/Paris,,OBO, +OBO:SP:1475,1,"Jean Hameau",44.868345,-0.569838,33063,0,OBO:SA:JEANHA,Europe/Paris,,OBO, +OBO:SP:1476,1,"Ausone",44.878746,-0.60494,33075,0,OBO:SA:AQUIT,Europe/Paris,,OBO, +OBO:SP:1478,1,"Aloha",44.915712,-0.680395,33519,0,OBO:SA:ALOHA,Europe/Paris,,OBO, +OBO:SP:1479,1,"Cruchet",44.893179,-0.552856,33063,0,OBO:SA:CRUCH,Europe/Paris,,OBO, +OBO:SP:148,1,"Chateaubriand",44.900673,-0.732621,33449,0,OBO:SA:CHABRI,Europe/Paris,,OBO, +OBO:SP:1480,1,"Tout y Faut",44.864538,-0.489492,33013,0,OBO:SA:TYFAUT,Europe/Paris,,OBO, +OBO:SP:1481,1,"La Landotte",44.912408,-0.677819,33519,0,OBO:SA:LANDOT,Europe/Paris,,OBO, +OBO:SP:1484,1,"Belfort",44.89449,-0.767577,33449,0,OBO:SA:BELFO,Europe/Paris,,OBO, +OBO:SP:1485,1,"Bazin",44.826684,-0.652447,33281,0,OBO:SA:BAZIN,Europe/Paris,,OBO, +OBO:SP:1486,1,"Parc Industriel",44.780195,-0.648641,33318,0,OBO:SA:PINDUS,Europe/Paris,,OBO, +OBO:SP:1489,1,"Mairie du Taillan Médoc",44.90436,-0.66906,33519,0,OBO:SA:LIB55,Europe/Paris,,OBO, +OBO:SP:149,1,"Pasteur",44.845745,-0.598716,33063,0,OBO:SA:PASTEU,Europe/Paris,,OBO, +OBO:SP:1492,1,"Lestage",44.874527,-0.696745,33449,0,OBO:SA:LESTAG,Europe/Paris,,OBO, +OBO:SP:1495,1,"Tillède",45.024387,-0.552264,33004,0,OBO:SA:TILLED,Europe/Paris,,OBO, +OBO:SP:1497,1,"Descartes",44.805599,-0.656659,33318,0,OBO:SA:DESC47,Europe/Paris,,OBO, +OBO:SP:1498,1,"Le Fourat",45.018332,-0.535513,33004,0,OBO:SA:FOURAT,Europe/Paris,,OBO, +OBO:SP:1499,1,"Carnot",44.79575,-0.67241,33318,0,OBO:SA:CART46,Europe/Paris,,OBO, +OBO:SP:150,1,"Gare d'Orléans",44.841588,-0.562512,33063,0,OBO:SA:GAREOR,Europe/Paris,,OBO, +OBO:SP:1501,1,"Jean Moulin",44.912416,-0.63624,33056,0,OBO:SA:JMOU37,Europe/Paris,,OBO, +OBO:SP:1503,1,"Gare de Blanquefort (av du 11 Novembre)",44.916171,-0.627249,33056,0,OBO:SA:GBLANQ,Europe/Paris,,OBO, +OBO:SP:1505,1,"Sauternes",44.85636,-0.488756,33013,0,OBO:SA:SAUTER,Europe/Paris,,OBO, +OBO:SP:1506,1,"Montaigne - Montesquieu",44.796437,-0.613975,33318,0,OBO:SA:MMQUIE,Europe/Paris,,OBO, +OBO:SP:1508,1,"Saint Bruno - Hôtel de Région",44.83824,-0.588925,33063,0,OBO:SA:BRUN10,Europe/Paris,,OBO, +OBO:SP:1509,1,"Clinique du Sport",44.81762,-0.681793,33281,0,OBO:SA:MBARAI,Europe/Paris,,OBO, +OBO:SP:151,1,"Lycée Sud Médoc",44.903403,-0.711953,33449,0,OBO:SA:LSMSM,Europe/Paris,,OBO, +OBO:SP:1511,1,"Sybille",44.918241,-0.518369,33032,0,OBO:SA:SYBILL,Europe/Paris,,OBO, +OBO:SP:1512,1,"Quai Numa Sensine",44.87531,-0.53583,33249,0,OBO:SA:NUMA,Europe/Paris,,OBO, +OBO:SP:1513,1,"Bouthier",44.851771,-0.557482,33063,0,OBO:SA:BOUTH,Europe/Paris,,OBO, +OBO:SP:1514,1,"Europe",44.924681,-0.497105,33003,0,OBO:SA:EURO93,Europe/Paris,,OBO, +OBO:SP:1516,1,"Lignac",44.933873,-0.509123,33003,0,OBO:SA:LIGNAC,Europe/Paris,,OBO, +OBO:SP:1518,1,"Merle",44.959162,-0.506823,33003,0,OBO:SA:MERL93,Europe/Paris,,OBO, +OBO:SP:152,1,"Rond-Point",44.805477,-0.615595,33318,0,OBO:SA:RDPOIN,Europe/Paris,,OBO, +OBO:SP:1520,1,"Peyronneaud",44.883688,-0.55034,33063,0,OBO:SA:GAZBX,Europe/Paris,,OBO, +OBO:SP:1522,1,"Archimède",44.785681,-0.642695,33318,0,OBO:SA:ARMED,Europe/Paris,,OBO, +OBO:SP:1523,1,"La Galliasse",44.99173,-0.486014,33487,0,OBO:SA:GALIAS,Europe/Paris,,OBO, +OBO:SP:1524,1,"Cimetière d'Ambès",45.013666,-0.534596,33004,0,OBO:SA:CIMAMB,Europe/Paris,,OBO, +OBO:SP:1527,1,"Bois Fleuri",44.876275,-0.51736,33249,0,OBX:SA:BFLEU,Europe/Paris,,OBO, +OBO:SP:1529,1,"Macédo",44.80034,-0.668799,33318,0,OBO:SA:MACED,Europe/Paris,,OBO, +OBO:SP:1530,1,"Liberté",44.939686,-0.49223,33003,0,OBO:SA:LIBE92,Europe/Paris,,OBO, +OBO:SP:1531,1,"Z.A Haut-Vigneau",44.771905,-0.631579,33192,0,OBO:SA:ZAVIG,Europe/Paris,,OBO, +OBO:SP:1533,1,"Barrès",44.887558,-0.546845,33063,0,OBO:SA:BARRE,Europe/Paris,,OBO, +OBO:SP:1537,1,"Capeyron",44.851549,-0.644828,33281,0,OBO:SA:CAPEYR,Europe/Paris,,OBO, +OBO:SP:1538,1,"Nougueys",44.829306,-0.528614,33167,0,OBO:SA:EDVAI,Europe/Paris,,OBO, +OBO:SP:154,1,"Rubens",44.852191,-0.513494,33119,0,OBO:SA:RUBEN,Europe/Paris,,OBO, +OBO:SP:1542,1,"Mairie de St Louis de Montferrand",44.953319,-0.534533,33434,0,OBO:SA:MAIMFD,Europe/Paris,,OBO, +OBO:SP:1544,1,"Route de Canéjan",44.780618,-0.615122,33192,0,OBO:SA:RCANE,Europe/Paris,,OBO, +OBO:SP:1546,1,"Kennedy (vers Rocade)",44.867419,-0.507021,33249,0,OBO:SA:KENE63,Europe/Paris,,OBO, +OBO:SP:1549,1,"Virecourt",44.854364,-0.499769,33013,0,OBO:SA:VIREC,Europe/Paris,,OBO, +OBO:SP:155,1,"Parc Industriel",44.780151,-0.648334,33318,0,OBO:SA:PINDUS,Europe/Paris,,OBO, +OBO:SP:1550,1,"Centre Hippique",44.893418,-0.763029,33449,0,OBO:SA:HIPPIQ,Europe/Paris,,OBO, +OBO:SP:1551,1,"Le Télégraphe",44.784213,-0.606305,33192,0,OBO:SA:VILLEM,Europe/Paris,,OBO, +OBO:SP:1552,1,"Hameau du Château",44.942677,-0.602644,33312,0,OBO:SA:HAMCHA,Europe/Paris,,OBO, +OBO:SP:1553,1,"Château Dillon",44.919138,-0.634647,33056,0,OBO:SA:LYCAGR,Europe/Paris,,OBO, +OBO:SP:1555,1,"Domaine de Muscadet",44.916566,-0.508928,33032,0,OBO:SA:MUSCAD,Europe/Paris,,OBO, +OBO:SP:1559,1,"Avenue du Stade",44.90982,-0.692527,33519,0,OBO:SA:ASTADE,Europe/Paris,,OBO, +OBO:SP:1562,1,"Cenon Marègue",44.847978,-0.507922,33119,0,OBX:SA:MAREG,Europe/Paris,,OBO, +OBO:SP:1564,1,"Port Garonne",44.797676,-0.530235,33039,0,OBO:SA:FLUVI,Europe/Paris,,OBO, +OBO:SP:1567,1,"Centre Emetteur",44.818051,-0.50328,33065,0,OBO:SA:EMETT,Europe/Paris,,OBO, +OBO:SP:1568,1,"Colonel Jacqui",44.811413,-0.633627,33318,0,OBO:SA:JACQUI,Europe/Paris,,OBO, +OBO:SP:1569,1,"Nancel Pénard",44.809787,-0.632901,33318,0,OBO:SA:NPENA,Europe/Paris,,OBO, +OBO:SP:157,1,"Clemenceau",44.864318,-0.620679,33063,0,OBO:SA:CLEM54,Europe/Paris,,OBO, +OBO:SP:1570,1,"Cailleau",44.903261,-0.518405,33032,0,OBO:SA:CAILAU,Europe/Paris,,OBO, +OBO:SP:1571,1,"Malbrède",44.982937,-0.481593,33487,0,OBO:SA:MALBRE,Europe/Paris,,OBO, +OBO:SP:1574,1,"Gutenberg",44.787609,-0.645756,33318,0,OBO:SA:GUTEN,Europe/Paris,,OBO, +OBO:SP:1578,1,"Mathieu",44.894572,-0.607733,33075,0,OBO:SA:MATHIE,Europe/Paris,,OBO, +OBO:SP:1580,1,"Le Burck",44.814333,-0.635006,33281,0,OBO:SA:BURCK,Europe/Paris,,OBO, +OBO:SP:1581,1,"Barrès",44.887277,-0.547436,33063,0,OBO:SA:BARRE,Europe/Paris,,OBO, +OBO:SP:1582,1,"Allende",44.86712,-0.521589,33249,0,OBO:SA:ALLEN,Europe/Paris,,OBO, +OBO:SP:1583,1,"Maréchal Joffre",44.821782,-0.62908,33281,0,OBO:SA:MJOFF,Europe/Paris,,OBO, +OBO:SP:1585,1,"Lamartine",44.903676,-0.51242,33032,0,OBO:SA:LAMA90,Europe/Paris,,OBO, +OBO:SP:1586,1,"Somme",44.906092,-0.517226,33032,0,OBO:SA:SOMMB,Europe/Paris,,OBO, +OBO:SP:1588,1,"Cimbats",44.903149,-0.639888,33056,0,OBO:SA:HCANTE,Europe/Paris,,OBO, +OBO:SP:1589,1,"Place Florale",44.868839,-0.635939,33162,0,OBO:SA:PFLOR,Europe/Paris,,OBO, +OBO:SP:159,1,"Mendès France",44.839827,-0.638683,33281,0,OBO:SA:MEFRA,Europe/Paris,,OBO, +OBO:SP:1590,1,"Pericot",44.902217,-0.744861,33449,0,OBO:SA:PERICO,Europe/Paris,,OBO, +OBO:SP:1591,1,"Village 4",44.791715,-0.622784,33318,0,OBO:SA:VILLA4,Europe/Paris,,OBO, +OBO:SP:1592,1,"Terrefort",44.923947,-0.634781,33056,0,OBO:SA:TERRFO,Europe/Paris,,OBO, +OBO:SP:1594,1,"Cité Cairon",44.818833,-0.578973,33063,0,OBO:SA:CAIRON,Europe/Paris,,OBO, +OBO:SP:1595,1,"Barrière d'Ornano",44.832074,-0.598398,33063,0,OBO:SA:BAROR,Europe/Paris,,OBO, +OBO:SP:16,1,"La Morandière (av de Magudas)",44.858065,-0.678173,33281,0,OBO:SA:MORAND,Europe/Paris,,OBO, +OBO:SP:1601,1,"Floirac Dravemont (av Allende)",44.845975,-0.510558,33167,0,OBX:SA:DRAVE,Europe/Paris,,OBO, +OBO:SP:1606,1,"Bourse du Travail",44.832254,-0.578917,33063,0,OBO:SA:BTRAVA,Europe/Paris,,OBO, +OBO:SP:1610,1,"Barrière Judaïque",44.84014,-0.600359,33063,0,OBO:SA:BJUDA,Europe/Paris,,OBO, +OBO:SP:1611,1,"Village 2",44.803074,-0.612453,33318,0,OBO:SA:VILLA2,Europe/Paris,,OBO, +OBO:SP:1613,1,"Nungesser et Coli",44.841523,-0.655908,33281,0,OBO:SA:NCOLI,Europe/Paris,,OBO, +OBO:SP:1614,1,"Lycée Victor Louis",44.802911,-0.593365,33522,0,OBO:SA:LVLOUI,Europe/Paris,,OBO, +OBO:SP:1615,1,"Rochefort",44.775945,-0.611405,33192,0,OBO:SA:ROCHE,Europe/Paris,,OBO, +OBO:SP:1616,1,"Beausoleil",44.757652,-0.625105,33192,0,OBO:SA:BEAUSO,Europe/Paris,,OBO, +OBO:SP:1617,1,"Le Télégraphe",44.784087,-0.606562,33192,0,OBO:SA:VILLEM,Europe/Paris,,OBO, +OBO:SP:1618,1,"Eglise de Gradignan",44.772276,-0.614459,33192,0,OBO:SA:EGGRA,Europe/Paris,,OBO, +OBO:SP:1619,1,"Stade Ornon",44.773316,-0.639413,33192,0,OBO:SA:ORNON,Europe/Paris,,OBO, +OBO:SP:162,1,"Rostand",44.840967,-0.642659,33281,0,OBO:SA:ROSTA,Europe/Paris,,OBO, +OBO:SP:1621,1,"Cimetière de Gradignan",44.778995,-0.609614,33192,0,OBO:SA:CIMGRA,Europe/Paris,,OBO, +OBO:SP:1623,1,"Pierre Curie",44.853239,-0.498584,33013,0,OBO:SA:PCURI,Europe/Paris,,OBO, +OBO:SP:1628,1,"Allée de Curé",44.911238,-0.6843,33519,0,OBO:SA:ACURE,Europe/Paris,,OBO, +OBO:SP:1629,1,"Résidences du Domaine",44.849622,-0.623316,33063,0,OBO:SA:RDOMA,Europe/Paris,,OBO, +OBO:SP:163,1,"Versant",44.832484,-0.514236,33167,0,OBO:SA:VERSA,Europe/Paris,,OBO, +OBO:SP:1630,1,"Pont de Bouliac",44.820883,-0.512624,33065,0,OBO:SA:PBOULI,Europe/Paris,,OBO, +OBO:SP:1631,1,"Le B.E.C",44.792976,-0.618094,33318,0,OBO:SA:LEBEC,Europe/Paris,,OBO, +OBO:SP:1632,1,"Henri Barbusse",44.856215,-0.642179,33281,0,OBO:SA:HBARB,Europe/Paris,,OBO, +OBO:SP:1633,1,"Lycée Kastler",44.801012,-0.596876,33522,0,OBO:SA:KASTL,Europe/Paris,,OBO, +OBO:SP:1634,1,"Lycée Victor Louis",44.802941,-0.593253,33522,0,OBO:SA:LVLOUI,Europe/Paris,,OBO, +OBO:SP:1637,1,"Forum (côté Esplanade)",44.811358,-0.591056,33522,0,OBX:SA:FORUM,Europe/Paris,,OBO, +OBO:SP:164,1,"Port Lopès",45.025498,-0.575834,33004,0,OBO:SA:PLOPES,Europe/Paris,,OBO, +OBO:SP:1640,1,"Truffaut",44.856142,-0.647673,33281,0,OBO:SA:TRUFF,Europe/Paris,,OBO, +OBO:SP:1641,1,"Acacias",44.885202,-0.528872,33249,0,OBO:SA:ACACI,Europe/Paris,,OBO, +OBO:SP:1643,1,"Village 5",44.793155,-0.613739,33192,0,OBO:SA:VILLA5,Europe/Paris,,OBO, +OBO:SP:1647,1,"Hôpital Robert Picqué",44.799874,-0.56993,33039,0,OBO:SA:RPIQU,Europe/Paris,,OBO, +OBO:SP:1648,1,"Lycée des Graves",44.761463,-0.622112,33192,0,OBO:SA:LGRAV,Europe/Paris,,OBO, +OBO:SP:165,1,"Mahéla",44.822649,-0.60529,33063,0,OBO:SA:MAHEL,Europe/Paris,,OBO, +OBO:SP:1653,1,"Labottière",44.852577,-0.590095,33063,0,OBO:SA:LABOT,Europe/Paris,,OBO, +OBO:SP:1654,1,"Pérès",44.859799,-0.608349,33069,0,OBO:SA:PERES,Europe/Paris,,OBO, +OBO:SP:1656,1,"Lycée Kastler",44.801439,-0.597347,33522,0,OBO:SA:KASTL,Europe/Paris,,OBO, +OBO:SP:1660,1,"Jeanne d'Arc",44.803424,-0.544977,33039,0,OBO:SA:JDARC,Europe/Paris,,OBO, +OBO:SP:1661,1,"Solarium",44.781935,-0.628051,33192,0,OBO:SA:SOLAR,Europe/Paris,,OBO, +OBO:SP:1663,1,"Mérignac Centre",44.841457,-0.64696,33281,0,OBX:SA:TMERI,Europe/Paris,,OBO, +OBO:SP:1665,1,"Ecole d'Architecture",44.793276,-0.605038,33522,0,OBO:SA:ARCHI,Europe/Paris,,OBO, +OBO:SP:1666,1,"Collège G. Rayet",44.841819,-0.515441,33167,0,OBO:SA:RAYET,Europe/Paris,,OBO, +OBO:SP:1667,1,"Maison Neuve",44.77327,-0.63421,33192,0,OBO:SA:MNEUV,Europe/Paris,,OBO, +OBO:SP:1668,1,"Stade de Moulerens",44.780297,-0.630729,33192,0,OBO:SA:MOULER,Europe/Paris,,OBO, +OBO:SP:1669,1,"Cotor Laburthe",44.781899,-0.624189,33192,0,OBO:SA:RPESS,Europe/Paris,,OBO, +OBO:SP:167,1,"Europarc",44.781011,-0.655603,33318,0,OBO:SA:EUROPA,Europe/Paris,,OBO, +OBO:SP:1670,1,"Hameau de la Reine",44.781556,-0.618953,33192,0,OBO:SA:REINE,Europe/Paris,,OBO, +OBO:SP:1671,1,"Avenue de l'Université",44.801292,-0.594654,33522,0,OBO:SA:AUNIV,Europe/Paris,,OBO, +OBO:SP:1672,1,"Résidence Meignan",44.903232,-0.509349,33032,0,OBO:SA:MEIGNA,Europe/Paris,,OBO, +OBO:SP:1675,1,"Noliquet",45.003613,-0.512517,33004,0,OBO:SA:NOLIQU,Europe/Paris,,OBO, +OBO:SP:1676,1,"La Roseraie",44.897172,-0.521422,33032,0,OBO:SA:ROSERA,Europe/Paris,,OBO, +OBO:SP:1677,1,"19 Mars 1962",45.012229,-0.535839,33004,0,OBO:SA:19MA91,Europe/Paris,,OBO, +OBO:SP:1679,1,"Troubadis",45.02039,-0.538261,33004,0,OBO:SA:TROUBA,Europe/Paris,,OBO, +OBO:SP:168,1,"Boulevard Trarieux",44.841614,-0.546223,33063,0,OBO:SA:TRARI,Europe/Paris,,OBO, +OBO:SP:1682,1,"Lacone",45.000701,-0.500241,33004,0,OBO:SA:LACONE,Europe/Paris,,OBO, +OBO:SP:1683,1,"Mirambeau",45.025051,-0.567011,33004,0,OBO:SA:MIREMB,Europe/Paris,,OBO, +OBO:SP:1684,1,"Beauregard",45.009206,-0.523476,33004,0,OBO:SA:BRGARD,Europe/Paris,,OBO, +OBO:SP:1686,1,"Emile Combes",44.868285,-0.597082,33069,0,OBO:SA:ECO57,Europe/Paris,,OBO, +OBO:SP:1687,1,"Clarines",44.820051,-0.665831,33281,0,OBO:SA:CLARI,Europe/Paris,,OBO, +OBO:SP:169,1,"Villa",44.957413,-0.605153,33312,0,OBO:SA:VILLA,Europe/Paris,,OBO, +OBO:SP:1691,1,"Chemin Bon Air",44.824262,-0.6502,33281,0,OBO:SA:BONAI,Europe/Paris,,OBO, +OBO:SP:1692,1,"Tourny",44.845482,-0.577872,33063,0,OBO:SA:TOURN,Europe/Paris,,OBO, +OBO:SP:1693,1,"Vassivey",44.952519,-0.609611,33312,0,OBO:SA:LANDEG,Europe/Paris,,OBO, +OBO:SP:1694,1,"Terrefort",44.924295,-0.634867,33056,0,OBO:SA:TERRFO,Europe/Paris,,OBO, +OBO:SP:1695,1,"Acacias",44.835698,-0.685917,33281,0,OBO:SA:ACAC73,Europe/Paris,,OBO, +OBO:SP:1696,1,"Lindbergh",44.83507,-0.690182,33281,0,OBO:SA:LINDB,Europe/Paris,,OBO, +OBO:SP:1697,1,"Martyrs de la Libération",44.83573,-0.682258,33281,0,OBO:SA:MLIBE,Europe/Paris,,OBO, +OBO:SP:1698,1,"Bois Vert",44.927748,-0.50331,33003,0,OBO:SA:BOISVE,Europe/Paris,,OBO, +OBO:SP:1699,1,"Jean Macé",44.841905,-0.659885,33281,0,OBO:SA:JMACE,Europe/Paris,,OBO, +OBO:SP:17,1,"Gambetta",44.841092,-0.580139,33063,0,OBO:SA:GAMBT1,Europe/Paris,,OBO, +OBO:SP:170,1,"Voltaire",44.818512,-0.545777,33063,0,OBO:SA:VOLTA,Europe/Paris,,OBO, +OBO:SP:1700,1,"Bourranville",44.839311,-0.630226,33281,0,OBO:SA:BOURAN,Europe/Paris,,OBO, +OBO:SP:1701,1,"Beaujet",44.946798,-0.511379,33003,0,OBO:SA:BEAUJE,Europe/Paris,,OBO, +OBO:SP:1702,1,"Château Rouquey",44.828105,-0.67193,33281,0,OBO:SA:CHROUQ,Europe/Paris,,OBO, +OBO:SP:1703,1,"Allée Vieille",44.878653,-0.736379,33449,0,OBO:SA:AVIEIL,Europe/Paris,,OBO, +OBO:SP:1705,1,"Enghien",44.845766,-0.576054,33063,0,OBO:SA:ENGHI,Europe/Paris,,OBO, +OBO:SP:1706,1,"La Chênaie",44.919672,-0.515287,33032,0,OBO:SA:BCHENA,Europe/Paris,,OBO, +OBO:SP:1708,1,"Caychac Bourg",44.929533,-0.635118,33056,0,OBO:SA:CAYBO,Europe/Paris,,OBO, +OBO:SP:1710,1,"Pomme d'Or",44.91354,-0.517972,33032,0,OBO:SA:BPDOR,Europe/Paris,,OBO, +OBO:SP:1711,1,"Chemin Bon Air",44.824322,-0.650292,33281,0,OBO:SA:BONAI,Europe/Paris,,OBO, +OBO:SP:1713,1,"Maréchal Foch",44.801629,-0.654059,33318,0,OBO:SA:FOCH46,Europe/Paris,,OBO, +OBO:SP:1715,1,"Hôpital Pellegrin (entrée Est)",44.829447,-0.602991,33063,0,OBO:SA:CHRPE2,Europe/Paris,,OBO, +OBO:SP:1716,1,"Nuyens",44.846049,-0.564746,33063,0,OBO:SA:NUYENS,Europe/Paris,,OBO, +OBO:SP:1717,1,"Place Meignan",44.902277,-0.506221,33032,0,OBO:SA:PMEIGN,Europe/Paris,,OBO, +OBO:SP:1718,1,"Floirac Libération",44.839025,-0.531898,33167,0,OBO:SA:FLIBE,Europe/Paris,,OBO, +OBO:SP:1719,1,"Les Plateaux",44.840146,-0.507661,33167,0,OBO:SA:PLATEA,Europe/Paris,,OBO, +OBO:SP:1720,1,"Emile Combes",44.868787,-0.597165,33069,0,OBO:SA:ECO57,Europe/Paris,,OBO, +OBO:SP:1721,1,"République",44.826856,-0.533374,33167,0,OBO:SA:MCRIT,Europe/Paris,,OBO, +OBO:SP:1722,1,"Professeur Vincent",44.8858,-0.521101,33249,0,OBO:SA:VINCE,Europe/Paris,,OBO, +OBO:SP:1723,1,"La Morlette",44.855357,-0.518785,33119,0,OBX:SA:MORLE,Europe/Paris,,OBO, +OBO:SP:1724,1,"Lavoir",44.91445,-0.514846,33032,0,OBO:SA:LAVOIR,Europe/Paris,,OBO, +OBO:SP:1726,1,"André Ricard",44.85955,-0.539703,33063,0,OBO:SA:ARICAR,Europe/Paris,,OBO, +OBO:SP:1731,1,"Lot. de la Vieille Eglise",44.944464,-0.594218,33312,0,OBO:SA:VIEEGL,Europe/Paris,,OBO, +OBO:SP:1732,1,"La Galliasse",44.991913,-0.486203,33487,0,OBO:SA:GALIAS,Europe/Paris,,OBO, +OBO:SP:1735,1,"Jeanne d'Arc",44.802908,-0.54559,33039,0,OBO:SA:JDARC,Europe/Paris,,OBO, +OBO:SP:1736,1,"Rue de Macau",44.954242,-0.606777,33312,0,OBO:SA:RMACAU,Europe/Paris,,OBO, +OBO:SP:174,1,"Route de Canéjan",44.78048,-0.614948,33192,0,OBO:SA:RCANE,Europe/Paris,,OBO, +OBO:SP:1741,1,"St Louis de Montferrand (Victor Hugo)",44.956258,-0.533919,33434,0,OBO:SA:VHUMFD,Europe/Paris,,OBO, +OBO:SP:1742,1,"La Lande",44.866418,-0.498176,33013,0,OBO:SA:LALAND,Europe/Paris,,OBO, +OBO:SP:1743,1,"Eglise Romane",44.857802,-0.495903,33013,0,OBO:SA:EGROMA,Europe/Paris,,OBO, +OBO:SP:1745,1,"Chemin Long",44.829125,-0.663713,33281,0,OBO:SA:CLONG,Europe/Paris,,OBO, +OBO:SP:1747,1,"Mérignac Soleil (Porte 4)",44.830213,-0.659136,33281,0,OBO:SA:MERSOL,Europe/Paris,,OBO, +OBO:SP:1749,1,"Barrière d'Ornano",44.830711,-0.597652,33063,0,OBO:SA:BAROR,Europe/Paris,,OBO, +OBO:SP:175,1,"La Sablière",44.885724,-0.67579,33200,0,OBO:SA:SABLIE,Europe/Paris,,OBO, +OBO:SP:1751,1,"Le Petit Marais",44.964189,-0.482231,33487,0,OBO:SA:PMARAI,Europe/Paris,,OBO, +OBO:SP:1754,1,"Libération",44.87041,-0.613797,33069,0,OBO:SA:RMEDOK,Europe/Paris,,OBO, +OBO:SP:1755,1,"La Renney",44.912395,-0.625305,33056,0,OBO:SA:ANDRIA,Europe/Paris,,OBO, +OBO:SP:1756,1,"Barrière Saint Médard",44.848633,-0.597229,33063,0,OBO:SA:BSMED,Europe/Paris,,OBO, +OBO:SP:1757,1,"Barrière de Pessac (Bd George V)",44.825936,-0.590089,33063,0,OBO:SA:BPESS2,Europe/Paris,,OBO, +OBO:SP:1758,1,"Barrière St Augustin",44.833725,-0.59863,33063,0,OBO:SA:PECHEU,Europe/Paris,,OBO, +OBO:SP:176,1,"Rue de Macau",44.954244,-0.606726,33312,0,OBO:SA:RMACAU,Europe/Paris,,OBO, +OBO:SP:1760,1,"Stade Stéhélin",44.857017,-0.620132,33063,0,OBO:SA:STEHEL,Europe/Paris,,OBO, +OBO:SP:1761,1,"Violettes",44.860497,-0.63721,33063,0,OBO:SA:VIOLET,Europe/Paris,,OBO, +OBO:SP:1763,1,"Château Dillon",44.919532,-0.634989,33056,0,OBO:SA:LYCAGR,Europe/Paris,,OBO, +OBO:SP:1764,1,"Hippodrome",44.876248,-0.621601,33069,0,OBO:SA:HIPPOD,Europe/Paris,,OBO, +OBO:SP:1767,1,"Village 2",44.803029,-0.612753,33318,0,OBO:SA:VILLA2,Europe/Paris,,OBO, +OBO:SP:1768,1,"Ausone",44.801284,-0.617047,33318,0,OBO:SA:AUSO34,Europe/Paris,,OBO, +OBO:SP:1769,1,"Tour de Gassies",44.881199,-0.628677,33075,0,OBO:SA:TGASSI,Europe/Paris,,OBO, +OBO:SP:177,1,"Côte de Monrepos",44.844877,-0.521308,33167,0,OBO:SA:MONRE,Europe/Paris,,OBO, +OBO:SP:1770,1,"Charles Perrens",44.823808,-0.599843,33063,0,OBO:SA:CPERRE,Europe/Paris,,OBO, +OBO:SP:1771,1,"Boulevard George V",44.827591,-0.591841,33063,0,OBO:SA:GEORGV,Europe/Paris,,OBO, +OBO:SP:1772,1,"Pablo Neruda",44.947788,-0.596221,33312,0,OBO:SA:PANERU,Europe/Paris,,OBO, +OBO:SP:1773,1,"Rue de Bordeaux",44.942907,-0.60724,33312,0,OBO:SA:RBORDE,Europe/Paris,,OBO, +OBO:SP:1774,1,"Mickaëlis",44.936627,-0.480861,33003,0,OBO:SA:MICKAE,Europe/Paris,,OBO, +OBO:SP:1775,1,"Chemin du Roy",44.899253,-0.727682,33449,0,OBO:SA:CHROY,Europe/Paris,,OBO, +OBO:SP:1776,1,"Mickaëlis",44.936727,-0.480842,33003,0,OBO:SA:MICKAE,Europe/Paris,,OBO, +OBO:SP:1777,1,"Mairie du Haillan",44.872114,-0.677155,33200,0,OBO:SA:MHAILL,Europe/Paris,,OBO, +OBO:SP:1778,1,"Sauternes",44.856263,-0.488699,33013,0,OBO:SA:SAUTER,Europe/Paris,,OBO, +OBO:SP:1779,1,"Village de Magudas",44.864065,-0.728742,33449,0,OBO:SA:VMAGUD,Europe/Paris,,OBO, +OBO:SP:1780,1,"Julien",44.865446,-0.714157,33449,0,OBO:SA:JULIEN,Europe/Paris,,OBO, +OBO:SP:1781,1,"Ecole Arnaud Lafon",44.828383,-0.667591,33281,0,OBO:SA:ALAFON,Europe/Paris,,OBO, +OBO:SP:1784,1,"Ducourneau",44.868732,-0.591915,33069,0,OBO:SA:DUCOUR,Europe/Paris,,OBO, +OBO:SP:1785,1,"Carbon Blanc Centre",44.893899,-0.500689,33096,0,OBO:SA:CBLANC,Europe/Paris,,OBO, +OBO:SP:1786,1,"Renaudel",44.86881,-0.615873,33069,0,OBO:SA:RENAUD,Europe/Paris,,OBO, +OBO:SP:1788,1,"Mairie de Blanquefort",44.909009,-0.63073,33056,0,OBO:SA:MBLANQ,Europe/Paris,,OBO, +OBO:SP:179,1,"Laffargue",44.833229,-0.529102,33167,0,OBO:SA:LAFA8,Europe/Paris,,OBO, +OBO:SP:1790,1,"Avenue de Bordeaux",44.887199,-0.507066,33249,0,OBO:SA:ABORDE,Europe/Paris,,OBO, +OBO:SP:1792,1,"Roger Allo",44.844209,-0.589383,33063,0,OBO:SA:RALLO,Europe/Paris,,OBO, +OBO:SP:1795,1,"Ecole Arnaud Lafon",44.828448,-0.666987,33281,0,OBO:SA:ALAFON,Europe/Paris,,OBO, +OBO:SP:1796,1,"Provinces",44.849885,-0.495195,33013,0,OBO:SA:PROVIN,Europe/Paris,,OBO, +OBO:SP:1799,1,"Vialle",44.817605,-0.506266,33065,0,OBO:SA:VIALL,Europe/Paris,,OBO, +OBO:SP:18,1,"Franklin",44.79899,-0.587253,33522,0,OBO:SA:FRANKL,Europe/Paris,,OBO, +OBO:SP:180,1,"France-Les Castors",44.794151,-0.670609,33318,0,OBO:SA:FRANCE,Europe/Paris,,OBO, +OBO:SP:1800,1,"Dupas",44.828619,-0.540564,33063,0,OBO:SA:DUPAS,Europe/Paris,,OBO, +OBO:SP:1801,1,"Stade Chaban Delmas",44.829622,-0.595935,33063,0,OBX:SA:CDELM,Europe/Paris,,OBO, +OBO:SP:1802,1,"St Louis de Montferrand (Victor Hugo)",44.956332,-0.53386,33434,0,OBO:SA:VHUMFD,Europe/Paris,,OBO, +OBO:SP:1803,1,"Palais Gallien",44.848083,-0.583308,33063,0,OBO:SA:PGALI,Europe/Paris,,OBO, +OBO:SP:1804,1,"Xaintrailles",44.827637,-0.592946,33063,0,OBO:SA:XAINTR,Europe/Paris,,OBO, +OBO:SP:1805,1,"Quai Dupeyron",44.871848,-0.537551,33249,0,OBO:SA:DUPEY,Europe/Paris,,OBO, +OBO:SP:1807,1,"Mattéoti",44.831096,-0.545128,33063,0,OBO:SA:MATTE,Europe/Paris,,OBO, +OBO:SP:1808,1,"Grand-Lebrun",44.850832,-0.607215,33063,0,OBO:SA:LBRUN,Europe/Paris,,OBO, +OBO:SP:1809,1,"Lormont Bas (A. Briand)",44.877037,-0.534506,33249,0,OBO:SA:BRIAN,Europe/Paris,,OBO, +OBO:SP:181,1,"Puyo",44.898261,-0.746449,33449,0,OBO:SA:PUYO,Europe/Paris,,OBO, +OBO:SP:1811,1,"Sembat",44.833338,-0.549411,33063,0,OBO:SA:SEMBA,Europe/Paris,,OBO, +OBO:SP:1815,1,"Les 3 Tours",44.78661,-0.604927,33192,0,OBO:SA:3TOUR,Europe/Paris,,OBO, +OBO:SP:1818,1,"Collège Claude Massé",44.928711,-0.482716,33003,0,OBO:SA:CMASSE,Europe/Paris,,OBO, +OBO:SP:182,1,"Mahéla",44.822664,-0.60481,33063,0,OBO:SA:MAHEL,Europe/Paris,,OBO, +OBO:SP:1820,1,"René Coty",44.926685,-0.492105,33003,0,OBO:SA:RCOT93,Europe/Paris,,OBO, +OBO:SP:1821,1,"Mairie d'Ambarès",44.926981,-0.490157,33003,0,OBO:SA:MAMBAR,Europe/Paris,,OBO, +OBO:SP:1822,1,"Ausone",44.801017,-0.616941,33318,0,OBO:SA:AUSO34,Europe/Paris,,OBO, +OBO:SP:1823,1,"Sabarèges",44.928867,-0.506958,33003,0,OBO:SA:SABARG,Europe/Paris,,OBO, +OBO:SP:1825,1,"Charles Perrault",44.865039,-0.4979,33013,0,OBO:SA:CHPERR,Europe/Paris,,OBO, +OBO:SP:1826,1,"La Lande",44.866652,-0.49847,33013,0,OBO:SA:LALAND,Europe/Paris,,OBO, +OBO:SP:1827,1,"Eglise Romane",44.857851,-0.496084,33013,0,OBO:SA:EGROMA,Europe/Paris,,OBO, +OBO:SP:1828,1,"Quai de Vial (Everite)",44.92028,-0.544387,33032,0,OBO:SA:QVIAL,Europe/Paris,,OBO, +OBO:SP:1829,1,"Croix Blanche",44.84361,-0.589243,33063,0,OBO:SA:CBLAN,Europe/Paris,,OBO, +OBO:SP:1830,1,"Fauvettes",44.860593,-0.49799,33013,0,OBO:SA:FAUVE2,Europe/Paris,,OBO, +OBO:SP:1831,1,"Collège Claude Massé",44.928341,-0.482998,33003,0,OBO:SA:CMASSE,Europe/Paris,,OBO, +OBO:SP:1833,1,"Rue de Bordeaux",44.942785,-0.607385,33312,0,OBO:SA:RBORDE,Europe/Paris,,OBO, +OBO:SP:1834,1,"Place de l'Eglise",44.948859,-0.605732,33312,0,OBO:SA:EGLI58,Europe/Paris,,OBO, +OBO:SP:1837,1,"Jean Prat",44.932305,-0.503125,33003,0,OBO:SA:JPRAT,Europe/Paris,,OBO, +OBO:SP:1838,1,"La Baranquine",44.898677,-0.531926,33032,0,OBO:SA:BARANQ,Europe/Paris,,OBO, +OBO:SP:184,1,"Les Chênes",44.778535,-0.697353,33318,0,OBO:SA:CHENE2,Europe/Paris,,OBO, +OBO:SP:1840,1,"Du Roy",44.953334,-0.512144,33003,0,OBO:SA:LEST93,Europe/Paris,,OBO, +OBO:SP:1841,1,"Tournesol",44.819848,-0.696641,33281,0,OBO:SA:TESOL,Europe/Paris,,OBO, +OBO:SP:1844,1,"Versant",44.832205,-0.514523,33167,0,OBO:SA:VERSA,Europe/Paris,,OBO, +OBO:SP:1845,1,"Rue de la Vieille Eglise",44.945871,-0.595577,33312,0,OBO:SA:RVEGLI,Europe/Paris,,OBO, +OBO:SP:1846,1,"Mairie d'Artigues",44.859998,-0.492011,33013,0,OBO:SA:MARTIG,Europe/Paris,,OBO, +OBO:SP:1848,1,"Baraille",44.95589,-0.513142,33003,0,OBO:SA:BARAIL,Europe/Paris,,OBO, +OBO:SP:1849,1,"Ausone",44.896318,-0.509424,33096,0,OBO:SA:AUSO95,Europe/Paris,,OBO, +OBO:SP:185,1,"Tillet",44.821568,-0.572411,33063,0,OBO:SA:TILLE,Europe/Paris,,OBO, +OBO:SP:1850,1,"Maréchal Juin",44.774352,-0.597751,33192,0,OBO:SA:MJUI80,Europe/Paris,,OBO, +OBO:SP:1851,1,"Paulin de Nole",44.954479,-0.496998,33003,0,OBO:SA:PNOLE,Europe/Paris,,OBO, +OBO:SP:1853,1,"Ambarès Eglise",44.924554,-0.484221,33003,0,OBO:SA:AMBAR,Europe/Paris,,OBO, +OBO:SP:1859,1,"Mairie de Bassens",44.899428,-0.515654,33032,0,OBO:SA:8MA90,Europe/Paris,,OBO, +OBO:SP:186,1,"Hortense",44.849265,-0.561985,33063,0,OBO:SA:HORTE,Europe/Paris,,OBO, +OBO:SP:1860,1,"Clairière de Lormont",44.881117,-0.495315,33249,0,OBO:SA:CLLORM,Europe/Paris,,OBO, +OBO:SP:1862,1,"Le Fronton",44.946836,-0.489274,33003,0,OBO:SA:FRONTO,Europe/Paris,,OBO, +OBO:SP:1866,1,"Moussard",44.856997,-0.657043,33281,0,OBO:SA:CPINS,Europe/Paris,,OBO, +OBO:SP:1867,1,"Merle",44.959081,-0.507402,33003,0,OBO:SA:MERL93,Europe/Paris,,OBO, +OBO:SP:1868,1,"La Vache",44.872762,-0.591045,33075,0,OBO:SA:PNIVEA,Europe/Paris,,OBO, +OBO:SP:187,1,"E. Vaillant",44.818019,-0.603828,33318,0,OBO:SA:EVA83,Europe/Paris,,OBO, +OBO:SP:1870,1,"Templiers",44.928217,-0.47718,33003,0,OBO:SA:TEMPLI,Europe/Paris,,OBO, +OBO:SP:1872,1,"Monnet",44.772727,-0.582832,33550,0,OBO:SA:MONNE,Europe/Paris,,OBO, +OBO:SP:1873,1,"Pierre Curie",44.761818,-0.570663,33550,0,OBO:SA:CURI21,Europe/Paris,,OBO, +OBO:SP:1874,1,"Monnet",44.772642,-0.582674,33550,0,OBO:SA:MONNE,Europe/Paris,,OBO, +OBO:SP:1875,1,"Martyrs de la Résistance",44.880771,-0.611422,33075,0,OBO:SA:MAR57,Europe/Paris,,OBO, +OBO:SP:1878,1,"Louis Blanc",44.864179,-0.594741,33069,0,OBO:SA:LBLAN,Europe/Paris,,OBO, +OBO:SP:1881,1,"Mélac",44.823219,-0.500031,33065,0,OBO:SA:BETOI,Europe/Paris,,OBO, +OBO:SP:1882,1,"Le Petit Marais",44.964073,-0.482198,33487,0,OBO:SA:PMARAI,Europe/Paris,,OBO, +OBO:SP:1884,1,"La Prairie",44.867262,-0.498013,33013,0,OBO:SA:LAPRAI,Europe/Paris,,OBO, +OBO:SP:1885,1,"Castelneau",44.926109,-0.545859,33434,0,OBO:SA:CASTE2,Europe/Paris,,OBO, +OBO:SP:1888,1,"Docteur Couaillac",45.010619,-0.534607,33004,0,OBO:SA:COUAIL,Europe/Paris,,OBO, +OBO:SP:1889,1,"Fort Lajard",45.017352,-0.577169,33004,0,OBO:SA:FLAJAR,Europe/Paris,,OBO, +OBO:SP:189,1,"Victor Hugo",44.85063,-0.533135,33119,0,OBO:SA:VHUG08,Europe/Paris,,OBO, +OBO:SP:1891,1,"Jourdane",44.947554,-0.537545,33434,0,OBO:SA:JOURDA,Europe/Paris,,OBO, +OBO:SP:1896,1,"Les Prés de Jourdanne",44.944674,-0.534292,33434,0,OBO:SA:PJOURD,Europe/Paris,,OBO, +OBO:SP:1898,1,"Beauvais",44.949958,-0.487705,33003,0,OBO:SA:BEAUVA,Europe/Paris,,OBO, +OBO:SP:190,1,"Rue du Stand",44.819721,-0.612156,33318,0,OBO:SA:RSTAN,Europe/Paris,,OBO, +OBO:SP:1906,1,"Les Prés de Jourdanne",44.944312,-0.533204,33434,0,OBO:SA:PJOURD,Europe/Paris,,OBO, +OBO:SP:1907,1,"Mairie de Bassens",44.900335,-0.516053,33032,0,OBO:SA:8MA90,Europe/Paris,,OBO, +OBO:SP:1908,1,"Péguy",44.913952,-0.512062,33032,0,OBO:SA:PEGU74,Europe/Paris,,OBO, +OBO:SP:1909,1,"Le Fourat",45.018378,-0.535503,33004,0,OBO:SA:FOURAT,Europe/Paris,,OBO, +OBO:SP:191,1,"Pont de Bouliac",44.821067,-0.513345,33065,0,OBO:SA:PBOULI,Europe/Paris,,OBO, +OBO:SP:1910,1,"Labourets",44.918469,-0.517444,33032,0,OBO:SA:LABOUR,Europe/Paris,,OBO, +OBO:SP:1912,1,"Troubadis",45.020371,-0.538285,33004,0,OBO:SA:TROUBA,Europe/Paris,,OBO, +OBO:SP:1913,1,"Le Bousquet",44.960213,-0.533686,33434,0,OBO:SA:BOUSQU,Europe/Paris,,OBO, +OBO:SP:1914,1,"La Gare de la Chapelle",45.006161,-0.548948,33004,0,OBO:SA:CHAPEL,Europe/Paris,,OBO, +OBO:SP:1915,1,"La Bousquette",45.001311,-0.504064,33004,0,OBO:SA:BOUSQE,Europe/Paris,,OBO, +OBO:SP:1917,1,"Lycée Sud Médoc",44.903338,-0.712025,33449,0,OBO:SA:LSMSM,Europe/Paris,,OBO, +OBO:SP:1920,1,"Beaujet",44.946808,-0.511329,33003,0,OBO:SA:BEAUJE,Europe/Paris,,OBO, +OBO:SP:1922,1,"Bois Fleuri",44.87648,-0.518285,33249,0,OBX:SA:BFLEU,Europe/Paris,,OBO, +OBO:SP:1923,1,"Richelieu",44.908565,-0.534997,33032,0,OBO:SA:RICH99,Europe/Paris,,OBO, +OBO:SP:1925,1,"Libération",44.865648,-0.605861,33069,0,OBO:SA:LIBE76,Europe/Paris,,OBO, +OBO:SP:1926,1,"Les Garouilles",44.958469,-0.500217,33003,0,OBO:SA:GARO93,Europe/Paris,,OBO, +OBO:SP:1929,1,"St Bruno - Hôtel de Région",44.838515,-0.589893,33063,0,OBO:SA:HREGIO,Europe/Paris,,OBO, +OBO:SP:1930,1,"Jamois",44.991585,-0.543375,33004,0,OBO:SA:JAMOIS,Europe/Paris,,OBO, +OBO:SP:1932,1,"Résidence Meignan",44.903335,-0.509254,33032,0,OBO:SA:MEIGNA,Europe/Paris,,OBO, +OBO:SP:1933,1,"De Lattre de Tassigny",44.904926,-0.625786,33056,0,OBO:SA:LATASS,Europe/Paris,,OBO, +OBO:SP:1934,1,"4 Pavillons (vers Rocade)",44.86527,-0.515124,33119,0,OBO:SA:4PAVI,Europe/Paris,,OBO, +OBO:SP:1936,1,"Avenue de Grandjean",44.942752,-0.5102,33003,0,OBO:SA:GRANDJ,Europe/Paris,,OBO, +OBO:SP:1937,1,"La Gare de la Chapelle",45.006305,-0.548678,33004,0,OBO:SA:CHAPEL,Europe/Paris,,OBO, +OBO:SP:1939,1,"Avenue de Soulac",44.908898,-0.667848,33519,0,OBO:SA:ASOULA,Europe/Paris,,OBO, +OBO:SP:194,1,"Seguineau",44.835017,-0.609897,33063,0,OBO:SA:SEGUI,Europe/Paris,,OBO, +OBO:SP:1943,1,"Saint Seurin",44.843609,-0.58676,33063,0,OBO:SA:SEURI,Europe/Paris,,OBO, +OBO:SP:1944,1,"Stade Stéhélin",44.857545,-0.621103,33063,0,OBO:SA:STEHEL,Europe/Paris,,OBO, +OBO:SP:1945,1,"Avenue de Grandjean",44.943107,-0.510666,33003,0,OBO:SA:GRANDJ,Europe/Paris,,OBO, +OBO:SP:1949,1,"Delattre",44.890023,-0.607123,33075,0,OBO:SA:DELATR,Europe/Paris,,OBO, +OBO:SP:1954,1,"Vignau Anglade (Clos Favol)",44.895368,-0.50726,33096,0,OBO:SA:VANGLA,Europe/Paris,,OBO, +OBO:SP:1956,1,"Vassivey",44.952461,-0.609455,33312,0,OBO:SA:LANDEG,Europe/Paris,,OBO, +OBO:SP:1957,1,"Ste Bernadette",44.823061,-0.624427,33281,0,OBO:SA:SBERNA,Europe/Paris,,OBO, +OBO:SP:1958,1,"Bonnet",45.015544,-0.533075,33004,0,OBO:SA:BONNET,Europe/Paris,,OBO, +OBO:SP:1959,1,"Mandron",44.859686,-0.589055,33063,0,OBO:SA:MANDRO,Europe/Paris,,OBO, +OBO:SP:1961,1,"Montoya",44.947302,-0.593156,33312,0,OBO:SA:MONTOY,Europe/Paris,,OBO, +OBO:SP:1963,1,"Rue des Ecus",44.870339,-0.597949,33069,0,OBO:SA:ECUS,Europe/Paris,,OBO, +OBO:SP:1964,1,"Berges du Lac",44.879158,-0.568219,33063,0,OBO:SA:JOURN,Europe/Paris,,OBO, +OBO:SP:1965,1,"Journu Auber",44.859437,-0.569106,33063,0,OBO:SA:JURNU,Europe/Paris,,OBO, +OBO:SP:1967,1,"Louis Blanc",44.864397,-0.594691,33069,0,OBO:SA:LBLAN,Europe/Paris,,OBO, +OBO:SP:1969,1,"La Fontaine",44.811516,-0.66416,33318,0,OBO:SA:LFONT,Europe/Paris,,OBO, +OBO:SP:1971,1,"Paul Doumer",44.851982,-0.573624,33063,0,OBX:SA:PDOUM,Europe/Paris,,OBO, +OBO:SP:1973,1,"Allard",44.877822,-0.591457,33075,0,OBO:SA:ALLAR,Europe/Paris,,OBO, +OBO:SP:1974,1,"Grangeneuve",44.804499,-0.636686,33318,0,OBO:SA:GRANGE,Europe/Paris,,OBO, +OBO:SP:1975,1,"Rue des Ecoles",44.880049,-0.59146,33075,0,OBO:SA:ECO36,Europe/Paris,,OBO, +OBO:SP:1976,1,"Château Pomerol",44.891258,-0.516359,33032,0,OBO:SA:CHAPOM,Europe/Paris,,OBO, +OBO:SP:1977,1,"Rue de la Gare",44.946276,-0.609792,33312,0,OBO:SA:RUGARE,Europe/Paris,,OBO, +OBO:SP:1978,1,"Avenue du Truc",44.843756,-0.645564,33281,0,OBO:SA:TRUC,Europe/Paris,,OBO, +OBO:SP:1979,1,"Rue de la Vieille Eglise",44.946318,-0.595428,33312,0,OBO:SA:RVEGLI,Europe/Paris,,OBO, +OBO:SP:198,1,"Montesquieu",44.9082,-0.638947,33056,0,OBO:SA:MONT37,Europe/Paris,,OBO, +OBO:SP:1981,1,"Domaine de Pelus",44.830692,-0.684955,33281,0,OBO:SA:PELUS,Europe/Paris,,OBO, +OBO:SP:1983,1,"Tarrey",44.950898,-0.490784,33003,0,OBO:SA:TARREY,Europe/Paris,,OBO, +OBO:SP:1984,1,"La Blanche",44.944924,-0.511059,33003,0,OBO:SA:LABLAN,Europe/Paris,,OBO, +OBO:SP:1987,1,"Maréchal Gallieni",44.897616,-0.508846,33096,0,OBO:SA:GALI95,Europe/Paris,,OBO, +OBO:SP:1988,1,"Peychaud",44.951633,-0.492936,33003,0,OBO:SA:PEYCHA,Europe/Paris,,OBO, +OBO:SP:199,1,"Livran",44.829744,-0.589927,33063,0,OBO:SA:LIVRAN,Europe/Paris,,OBO, +OBO:SP:1994,1,"Yvan Bric",44.948096,-0.600365,33312,0,OBO:SA:YVBRIC,Europe/Paris,,OBO, +OBO:SP:1995,1,"Vergers",44.914514,-0.493414,33096,0,OBO:SA:VERGER,Europe/Paris,,OBO, +OBO:SP:1996,1,"Moulin du Gua",44.93372,-0.507401,33003,0,OBO:SA:MGUA,Europe/Paris,,OBO, +OBO:SP:1997,1,"Colette",44.83471,-0.636414,33281,0,OBO:SA:COLETT,Europe/Paris,,OBO, +OBO:SP:1998,1,"Mairie de Blanquefort",44.907883,-0.62963,33056,0,OBO:SA:MBLANQ,Europe/Paris,,OBO, +OBO:SP:2,1,"Brignon",44.775474,-0.575073,33550,0,OBO:SA:BRIGN,Europe/Paris,,OBO, +OBO:SP:2000,1,"Pierre Curie",44.853276,-0.498535,33013,0,OBO:SA:PCURI,Europe/Paris,,OBO, +OBO:SP:2002,1,"Du Roy",44.95328,-0.512166,33003,0,OBO:SA:LEST93,Europe/Paris,,OBO, +OBO:SP:2004,1,"Libération",44.865526,-0.606017,33069,0,OBO:SA:LIBE76,Europe/Paris,,OBO, +OBO:SP:2006,1,"Ambarès Centre",44.926654,-0.486229,33003,0,OBO:SA:AMBCEN,Europe/Paris,,OBO, +OBO:SP:2009,1,"Liberté",44.939706,-0.49218,33003,0,OBO:SA:LIBE92,Europe/Paris,,OBO, +OBO:SP:201,1,"Pont Saint-Jean",44.834477,-0.55156,33063,0,OBO:SA:PSJEAN,Europe/Paris,,OBO, +OBO:SP:2010,1,"République",44.908843,-0.631417,33056,0,OBO:SA:REPU58,Europe/Paris,,OBO, +OBO:SP:2011,1,"La Bousquette",45.001369,-0.504233,33004,0,OBO:SA:BOUSQE,Europe/Paris,,OBO, +OBO:SP:2012,1,"Collège de Blanquefort",44.906335,-0.627907,33056,0,OBO:SA:COLBLQ,Europe/Paris,,OBO, +OBO:SP:2013,1,"Barre",44.931873,-0.480451,33003,0,OBO:SA:BARE,Europe/Paris,,OBO, +OBO:SP:2017,1,"Barot",44.959282,-0.504749,33003,0,OBO:SA:BAROT,Europe/Paris,,OBO, +OBO:SP:2019,1,"Europe",44.924926,-0.496753,33003,0,OBO:SA:EURO93,Europe/Paris,,OBO, +OBO:SP:2020,1,"Docteur Férié",44.900547,-0.711104,33449,0,OBO:SA:DFERIE,Europe/Paris,,OBO, +OBO:SP:2021,1,"Avenue de Soulac",44.908982,-0.668031,33519,0,OBO:SA:ASOULA,Europe/Paris,,OBO, +OBO:SP:2024,1,"Lauba",44.895648,-0.730892,33449,0,OBO:SA:LAUBA,Europe/Paris,,OBO, +OBO:SP:2028,1,"Futaies",44.908333,-0.49535,33096,0,OBO:SA:FUTAIE,Europe/Paris,,OBO, +OBO:SP:2029,1,"Les Garouilles",44.958392,-0.500098,33003,0,OBO:SA:GARO93,Europe/Paris,,OBO, +OBO:SP:2031,1,"Les Echoppes",44.810504,-0.620654,33318,0,OBO:SA:ECHOP,Europe/Paris,,OBO, +OBO:SP:2032,1,"Cimetière de Saint Médard",44.895474,-0.726417,33449,0,OBO:SA:CIMSME,Europe/Paris,,OBO, +OBO:SP:2033,1,"8 Mai",44.907679,-0.646562,33056,0,OBO:SA:8Mai37,Europe/Paris,,OBO, +OBO:SP:2034,1,"Commandant Mollière",44.89077,-0.608807,33075,0,OBO:SA:CMOLIE,Europe/Paris,,OBO, +OBO:SP:2036,1,"Rousseau",44.895689,-0.723489,33449,0,OBO:SA:ROUS71,Europe/Paris,,OBO, +OBO:SP:2038,1,"Durandeau",44.957799,-0.512894,33003,0,OBO:SA:DURDEA,Europe/Paris,,OBO, +OBO:SP:204,1,"Rue des Ecus",44.870011,-0.597789,33069,0,OBO:SA:ECUS,Europe/Paris,,OBO, +OBO:SP:2042,1,"Courtefesse",44.949838,-0.511849,33003,0,OBO:SA:CFESSE,Europe/Paris,,OBO, +OBO:SP:2046,1,"Maréchal Joffre",44.853381,-0.531914,33119,0,OBO:SA:JOFFR,Europe/Paris,,OBO, +OBO:SP:2047,1,"Boulevard Pierre 1er",44.858946,-0.589058,33063,0,OBO:SA:PIER1E,Europe/Paris,,OBO, +OBO:SP:2048,1,"Emile Combes",44.84727,-0.533633,33119,0,OBO:SA:ECOMB,Europe/Paris,,OBO, +OBO:SP:2050,1,"Rue de l'Amitié",44.863311,-0.509805,33119,0,OBO:SA:AMITIE,Europe/Paris,,OBO, +OBO:SP:2053,1,"Général de Gaulle",44.908902,-0.638689,33056,0,OBO:SA:GGAU37,Europe/Paris,,OBO, +OBO:SP:2056,1,"Le Tillac",44.919087,-0.493585,33003,0,OBO:SA:TILLAC,Europe/Paris,,OBO, +OBO:SP:2059,1,"Toutaud",44.893942,-0.516718,33032,0,OBO:SA:TOUTAU,Europe/Paris,,OBO, +OBO:SP:206,1,"Germignan",44.907532,-0.696816,33519,0,OBO:SA:GERMI,Europe/Paris,,OBO, +OBO:SP:2060,1,"Boulevard Pierre 1er",44.859979,-0.589454,33069,0,OBO:SA:PIER1E,Europe/Paris,,OBO, +OBO:SP:2064,1,"Dame Blanche",44.907932,-0.658881,33519,0,OBO:SA:DBLAN,Europe/Paris,,OBO, +OBO:SP:2066,1,"La Roseraie",44.897166,-0.521345,33032,0,OBO:SA:ROSERA,Europe/Paris,,OBO, +OBO:SP:2068,1,"Les Renardeaux",44.849134,-0.665881,33281,0,OBO:SA:RENARX,Europe/Paris,,OBO, +OBO:SP:2070,1,"Marronniers",44.861737,-0.589997,33069,0,OBO:SA:MRRON,Europe/Paris,,OBO, +OBO:SP:2071,1,"Terrasson",44.916329,-0.493007,33096,0,OBO:SA:TERRAS,Europe/Paris,,OBO, +OBO:SP:2072,1,"Courtefesse",44.949458,-0.511889,33003,0,OBO:SA:CFESSE,Europe/Paris,,OBO, +OBO:SP:2074,1,"Blanqui",44.8416,-0.541852,33167,0,OBO:SA:BLANKI,Europe/Paris,,OBO, +OBO:SP:2076,1,"Somme",44.906448,-0.517096,33032,0,OBO:SA:SOMMB,Europe/Paris,,OBO, +OBO:SP:2077,1,"Poirson",44.857426,-0.587035,33063,0,OBO:SA:POIRSO,Europe/Paris,,OBO, +OBO:SP:2078,1,"Quai Français",44.890111,-0.529511,33032,0,OBO:SA:QFRANC,Europe/Paris,,OBO, +OBO:SP:2079,1,"Meunier",44.899983,-0.520317,33032,0,OBO:SA:MEUNIR,Europe/Paris,,OBO, +OBO:SP:208,1,"Leybardie",44.861257,-0.562683,33063,0,OBO:SA:LEYBAR,Europe/Paris,,OBO, +OBO:SP:2080,1,"Collège Manon Cormier",44.901633,-0.510048,33032,0,OBO:SA:MACOR,Europe/Paris,,OBO, +OBO:SP:2081,1,"Frachon",45.013306,-0.536555,33004,0,OBO:SA:EXUP91,Europe/Paris,,OBO, +OBO:SP:209,1,"Berthelot",44.864953,-0.578037,33063,0,OBO:SA:BERTHE,Europe/Paris,,OBO, +OBO:SP:2090,1,"Richelieu",44.908578,-0.534896,33032,0,OBO:SA:RICH99,Europe/Paris,,OBO, +OBO:SP:2093,1,"St Exupéry",45.0115,-0.539211,33004,0,OBO:SA:GENDAR,Europe/Paris,,OBO, +OBO:SP:2095,1,"Moulin Rouge",44.839943,-0.602829,33063,0,OBO:SA:MROUG,Europe/Paris,,OBO, +OBO:SP:2097,1,"Tout y Faut",44.864584,-0.489445,33013,0,OBO:SA:TYFAUT,Europe/Paris,,OBO, +OBO:SP:2098,1,"Caychac Eglise",44.930618,-0.637218,33056,0,OBO:SA:CAYEGL,Europe/Paris,,OBO, +OBO:SP:2099,1,"La Gorp",44.929724,-0.495783,33003,0,OBO:SA:LAGORP,Europe/Paris,,OBO, +OBO:SP:21,1,"Churchill",44.833764,-0.627587,33281,0,OBO:SA:CHURCH,Europe/Paris,,OBO, +OBO:SP:2103,1,"Barot",44.959345,-0.504473,33003,0,OBO:SA:BAROT,Europe/Paris,,OBO, +OBO:SP:2104,1,"Clarines",44.819507,-0.665922,33281,0,OBO:SA:CLARI,Europe/Paris,,OBO, +OBO:SP:2105,1,"Cimetière Intercommunal",44.81508,-0.680107,33281,0,OBO:SA:CIM75,Europe/Paris,,OBO, +OBO:SP:2107,1,"Blanqui",44.841185,-0.542168,33167,0,OBO:SA:BLANKI,Europe/Paris,,OBO, +OBO:SP:211,1,"Turenne",44.879883,-0.679325,33200,0,OBO:SA:TUREN,Europe/Paris,,OBO, +OBO:SP:2113,1,"Sybille",44.918132,-0.5184,33032,0,OBO:SA:SYBILL,Europe/Paris,,OBO, +OBO:SP:2114,1,"La Paix",44.838929,-0.535489,33167,0,OBO:SA:PAIX,Europe/Paris,,OBO, +OBO:SP:2118,1,"Noliquet",45.003651,-0.512456,33004,0,OBO:SA:NOLIQU,Europe/Paris,,OBO, +OBO:SP:212,1,"Lajaunie",44.856743,-0.548294,33063,0,OBO:SA:LAJAU,Europe/Paris,,OBO, +OBO:SP:2121,1,"Dandicolle",44.831635,-0.587477,33063,0,OBO:SA:DANDI,Europe/Paris,,OBO, +OBO:SP:2123,1,"La Baranquine",44.898902,-0.531928,33032,0,OBO:SA:BARANQ,Europe/Paris,,OBO, +OBO:SP:2126,1,"Marronniers",44.861641,-0.589915,33069,0,OBO:SA:MRRON,Europe/Paris,,OBO, +OBO:SP:2127,1,"Castelneau",44.925895,-0.545782,33434,0,OBO:SA:CASTE2,Europe/Paris,,OBO, +OBO:SP:2128,1,"Bernatet",44.934594,-0.511389,33003,0,OBO:SA:BERNAT,Europe/Paris,,OBO, +OBO:SP:2129,1,"Chemin de la Vie",44.944072,-0.490346,33003,0,OBO:SA:CHEVIE,Europe/Paris,,OBO, +OBO:SP:213,1,"Les Escarrets",44.900741,-0.722024,33449,0,OBO:SA:ESCAR,Europe/Paris,,OBO, +OBO:SP:2130,1,"Caychac Eglise",44.93026,-0.636852,33056,0,OBO:SA:CAYEGL,Europe/Paris,,OBO, +OBO:SP:2131,1,"Cailleau",44.903613,-0.51811,33032,0,OBO:SA:CAILAU,Europe/Paris,,OBO, +OBO:SP:2133,1,"Le Printemps",44.951477,-0.606167,33312,0,OBO:SA:PRINTE,Europe/Paris,,OBO, +OBO:SP:2134,1,"Jean Jaurès",44.89666,-0.517395,33032,0,OBO:SA:JJAU90,Europe/Paris,,OBO, +OBO:SP:2136,1,"Liberté",44.905619,-0.508256,33032,0,OBO:SA:LIBE90,Europe/Paris,,OBO, +OBO:SP:2137,1,"Virecourt",44.854426,-0.499811,33013,0,OBO:SA:VIREC,Europe/Paris,,OBO, +OBO:SP:2139,1,"Sadi Carnot",44.864148,-0.590405,33069,0,OBO:SA:SCARNO,Europe/Paris,,OBO, +OBO:SP:214,1,"Verdun",44.860548,-0.612186,33069,0,OBO:SA:VERDUN,Europe/Paris,,OBO, +OBO:SP:2140,1,"Dufresne",44.989466,-0.541679,33004,0,OBO:SA:DUFRES,Europe/Paris,,OBO, +OBO:SP:2142,1,"Collège Manon Cormier",44.899983,-0.507789,33096,0,OBO:SA:COMACO,Europe/Paris,,OBO, +OBO:SP:2143,1,"Maréchal Foch",44.932066,-0.473701,33003,0,OBO:SA:MFOC94,Europe/Paris,,OBO, +OBO:SP:2144,1,"Clos Saint Pierre",44.925725,-0.482505,33003,0,OBO:SA:CSPIER,Europe/Paris,,OBO, +OBO:SP:2145,1,"Barre",44.931237,-0.480894,33003,0,OBO:SA:BARE,Europe/Paris,,OBO, +OBO:SP:2146,1,"Ambarès Centre",44.926842,-0.487116,33003,0,OBO:SA:AMBCEN,Europe/Paris,,OBO, +OBO:SP:2147,1,"Domaine d'Hostein",44.927496,-0.478898,33003,0,OBO:SA:DHOSTE,Europe/Paris,,OBO, +OBO:SP:2148,1,"Maréchal Foch",44.932294,-0.473614,33003,0,OBO:SA:MFOC94,Europe/Paris,,OBO, +OBO:SP:2150,1,"Domaine d'Hostein",44.927666,-0.478655,33003,0,OBO:SA:DHOSTE,Europe/Paris,,OBO, +OBO:SP:2151,1,"La Grave d'Ambarès",44.930321,-0.473885,33003,0,OBO:SA:GRAVAM,Europe/Paris,,OBO, +OBO:SP:2154,1,"Dame Blanche",44.907835,-0.658557,33519,0,OBO:SA:DBLAN,Europe/Paris,,OBO, +OBO:SP:2156,1,"Beauvais",44.949631,-0.487798,33003,0,OBO:SA:BEAUVA,Europe/Paris,,OBO, +OBO:SP:2157,1,"Maréchal Joffre",44.899216,-0.514652,33032,0,OBO:SA:MJOFFR,Europe/Paris,,OBO, +OBO:SP:2158,1,"Chemin de la Vie",44.943284,-0.490741,33003,0,OBO:SA:CHEVIE,Europe/Paris,,OBO, +OBO:SP:2159,1,"Frères Lumière",44.891136,-0.637916,33162,0,OBO:SA:FLUMIE,Europe/Paris,,OBO, +OBO:SP:2160,1,"Pont de Peyre",44.971173,-0.479681,33487,0,OBO:SA:POTPEY,Europe/Paris,,OBO, +OBO:SP:2161,1,"Gare d'Orléans",44.842426,-0.56335,33063,0,OBO:SA:GAREOR,Europe/Paris,,OBO, +OBO:SP:2164,1,"Fonfrède",44.825057,-0.572645,33063,0,OBO:SA:FONFR,Europe/Paris,,OBO, +OBO:SP:2166,1,"Beauval",44.905508,-0.503202,33032,0,OBO:SA:BEAU95,Europe/Paris,,OBO, +OBO:SP:2167,1,"Tourville",44.872894,-0.559239,33063,0,OBO:SA:TOURVI,Europe/Paris,,OBO, +OBO:SP:2168,1,"Bourdieu",44.895821,-0.51487,33096,0,OBO:SA:JCBEAU,Europe/Paris,,OBO, +OBO:SP:2169,1,"Foyer Municipal",44.89165,-0.502831,33096,0,OBO:SA:FOYE93,Europe/Paris,,OBO, +OBO:SP:2170,1,"Faulat",44.919928,-0.481435,33003,0,OBO:SA:FAULAT,Europe/Paris,,OBO, +OBO:SP:2171,1,"Maréchal Gallieni",44.897641,-0.508898,33032,0,OBO:SA:GALI95,Europe/Paris,,OBO, +OBO:SP:2172,1,"Ausone",44.895791,-0.509556,33096,0,OBO:SA:AUSO95,Europe/Paris,,OBO, +OBO:SP:2173,1,"Terrasson",44.916668,-0.493105,33003,0,OBO:SA:TERRAS,Europe/Paris,,OBO, +OBO:SP:2175,1,"La Lande",44.906311,-0.495452,33096,0,OBO:SA:LALA93,Europe/Paris,,OBO, +OBO:SP:2177,1,"Collège Manon Cormier",44.901075,-0.510888,33032,0,OBO:SA:MACOR,Europe/Paris,,OBO, +OBO:SP:2178,1,"Collège Gérard Philippe",44.799621,-0.624104,33318,0,OBO:SA:GEPHIL,Europe/Paris,,OBO, +OBO:SP:2179,1,"Emile Zola",44.90369,-0.504572,33032,0,OBO:SA:ZOLA95,Europe/Paris,,OBO, +OBO:SP:218,1,"Lestonnat",44.85241,-0.619644,33063,0,OBO:SA:LESTO,Europe/Paris,,OBO, +OBO:SP:2180,1,"Futaies",44.909261,-0.495941,33096,0,OBO:SA:FUTAIE,Europe/Paris,,OBO, +OBO:SP:2181,1,"Collège Manon Cormier",44.899917,-0.507899,33096,0,OBO:SA:COMACO,Europe/Paris,,OBO, +OBO:SP:2183,1,"Maréchal Joffre",44.89968,-0.5134,33032,0,OBO:SA:MJOFFR,Europe/Paris,,OBO, +OBO:SP:2184,1,"Mendès France",44.842719,-0.510342,33167,0,OBO:SA:MFRAN,Europe/Paris,,OBO, +OBO:SP:2185,1,"Bouliac Centre Commercial (Gabarre)",44.817749,-0.527876,33167,0,OBO:SA:CCOME,Europe/Paris,,OBO, +OBO:SP:2186,1,"Mimosas",44.884584,-0.525626,33249,0,OBO:SA:MIMOS,Europe/Paris,,OBO, +OBO:SP:219,1,"Hopital Haut Leveque",44.787128,-0.654875,33318,0,OBO:SA:HLEVQ,Europe/Paris,,OBO, +OBO:SP:2190,1,"Les Pelouses d'Ascott",44.82278,-0.495635,33065,0,OBO:SA:ASCOT,Europe/Paris,,OBO, +OBO:SP:2191,1,"Maréchal Joffre",44.852961,-0.532091,33119,0,OBO:SA:JOFFR,Europe/Paris,,OBO, +OBO:SP:2194,1,"Ateliers Municipaux",44.880882,-0.531795,33249,0,OBO:SA:ATELI,Europe/Paris,,OBO, +OBO:SP:2195,1,"Quai Dupeyron",44.872405,-0.537345,33249,0,OBO:SA:DUPEY,Europe/Paris,,OBO, +OBO:SP:2196,1,"Lormont Bas (A. Briand)",44.877237,-0.534455,33249,0,OBO:SA:BRIAN,Europe/Paris,,OBO, +OBO:SP:2198,1,"Dorgelès",44.843155,-0.543419,33063,0,OBO:SA:DORGE,Europe/Paris,,OBO, +OBO:SP:2199,1,"Fourney",44.821988,-0.490749,33065,0,OBO:SA:FOURNE,Europe/Paris,,OBO, +OBO:SP:2201,1,"Templiers",44.9283,-0.477134,33003,0,OBO:SA:TEMPLI,Europe/Paris,,OBO, +OBO:SP:2205,1,"Pont du Gail",44.880196,-0.608038,33075,0,OBO:SA:PGAIL,Europe/Paris,,OBO, +OBO:SP:2207,1,"Fleuranceau",44.885834,-0.611481,33075,0,OBO:SA:FLEUR2,Europe/Paris,,OBO, +OBO:SP:2208,1,"Centre Administratif",44.866876,-0.596067,33069,0,OBO:SA:CADMI,Europe/Paris,,OBO, +OBO:SP:2209,1,"Martyrs de la Résistance",44.880664,-0.61111,33075,0,OBO:SA:MAR57,Europe/Paris,,OBO, +OBO:SP:221,1,"Gabriel Delaunay",44.845327,-0.593001,33063,0,OBO:SA:DELAU,Europe/Paris,,OBO, +OBO:SP:2210,1,"Fleuranceau",44.885897,-0.611777,33075,0,OBO:SA:FLEUR2,Europe/Paris,,OBO, +OBO:SP:2211,1,"Pont du Gail",44.879936,-0.607425,33075,0,OBO:SA:PGAIL,Europe/Paris,,OBO, +OBO:SP:2212,1,"Centre Administratif",44.866741,-0.596058,33069,0,OBO:SA:CADMI,Europe/Paris,,OBO, +OBO:SP:2213,1,"Gare de Bruges",44.887585,-0.612241,33075,0,OBO:SA:MARYS,Europe/Paris,,OBO, +OBO:SP:2215,1,"Castillon",44.85981,-0.592446,33069,0,OBO:SA:CASTI,Europe/Paris,,OBO, +OBO:SP:2216,1,"Poincaré",44.861989,-0.593067,33069,0,OBO:SA:POINC,Europe/Paris,,OBO, +OBO:SP:2218,1,"Carrière de Bos",44.945468,-0.613294,33312,0,OBO:SA:ARBOUD,Europe/Paris,,OBO, +OBO:SP:222,1,"Lucassot",44.824958,-0.683654,33281,0,OBO:SA:LUCASS,Europe/Paris,,OBO, +OBO:SP:2221,1,"Lot. de la Vieille Eglise",44.944718,-0.594463,33312,0,OBO:SA:VIEEGL,Europe/Paris,,OBO, +OBO:SP:2222,1,"Carrière de Bos",44.945345,-0.614035,33312,0,OBO:SA:ARBOUD,Europe/Paris,,OBO, +OBO:SP:2223,1,"Liberté",44.905645,-0.508295,33032,0,OBO:SA:LIBE90,Europe/Paris,,OBO, +OBO:SP:2227,1,"Lormont Village",44.881585,-0.497068,33249,0,OBO:SA:LORVIL,Europe/Paris,,OBO, +OBO:SP:2229,1,"Le Tillac",44.91989,-0.494409,33003,0,OBO:SA:TILLAC,Europe/Paris,,OBO, +OBO:SP:2230,1,"Vergers",44.914512,-0.493478,33096,0,OBO:SA:VERGER,Europe/Paris,,OBO, +OBO:SP:2231,1,"Mesquita",44.893992,-0.506286,33096,0,OBO:SA:MESQUI,Europe/Paris,,OBO, +OBO:SP:2233,1,"Echangeur du Moulinat",44.869596,-0.498856,33013,0,OBO:SA:ECMOUL,Europe/Paris,,OBO, +OBO:SP:2235,1,"Jean Jaurès",44.837864,-0.537208,33167,0,OBO:SA:JJA06,Europe/Paris,,OBO, +OBO:SP:2238,1,"Vaucouleurs",44.813967,-0.567483,33063,0,OBO:SA:VAUCOU,Europe/Paris,,OBO, +OBO:SP:2239,1,"Beaudésert",44.845019,-0.684248,33281,0,OBO:SA:TBEAUD,Europe/Paris,,OBO, +OBO:SP:2240,1,"Foyer Municipal",44.891784,-0.502864,33096,0,OBO:SA:FOYE93,Europe/Paris,,OBO, +OBO:SP:2241,1,"Mairie de Floirac",44.830895,-0.52741,33167,0,OBO:SA:MFLOI,Europe/Paris,,OBO, +OBO:SP:2242,1,"Vettiner (côté arceaux vélo)",44.816417,-0.503646,33065,0,OBO:SA:VETTI,Europe/Paris,,OBO, +OBO:SP:2245,1,"Avenue de Bordeaux",44.886991,-0.507687,33096,0,OBO:SA:ABORDE,Europe/Paris,,OBO, +OBO:SP:2246,1,"Les Pelouses d'Ascott",44.822341,-0.495279,33065,0,OBO:SA:ASCOT,Europe/Paris,,OBO, +OBO:SP:2247,1,"Salinières",44.835876,-0.567494,33063,0,OBO:SA:SALI2,Europe/Paris,,OBO, +OBO:SP:2248,1,"Mairie d'Ambarès",44.926685,-0.489834,33003,0,OBO:SA:MAMBAR,Europe/Paris,,OBO, +OBO:SP:2249,1,"Bois Vert",44.927542,-0.502955,33003,0,OBO:SA:BOISVE,Europe/Paris,,OBO, +OBO:SP:225,1,"Soors",44.772025,-0.564353,33550,0,OBO:SA:SOORS,Europe/Paris,,OBO, +OBO:SP:2251,1,"Mendès France",44.925966,-0.486022,33003,0,OBO:SA:MFRA94,Europe/Paris,,OBO, +OBO:SP:2252,1,"Boulevard Trarieux",44.841633,-0.546465,33063,0,OBO:SA:TRARI,Europe/Paris,,OBO, +OBO:SP:2253,1,"Carbon Blanc Centre",44.893637,-0.500989,33096,0,OBO:SA:CBLANC,Europe/Paris,,OBO, +OBO:SP:2254,1,"La Gorp",44.929628,-0.495701,33003,0,OBO:SA:LAGORP,Europe/Paris,,OBO, +OBO:SP:2255,1,"Martyrs de la Libération",44.835534,-0.680827,33281,0,OBO:SA:MLIBE,Europe/Paris,,OBO, +OBO:SP:2256,1,"Clos du Prieuré",44.923049,-0.483912,33003,0,OBO:SA:CLPRIE,Europe/Paris,,OBO, +OBO:SP:2259,1,"Lindbergh",44.835106,-0.689919,33281,0,OBO:SA:LINDB,Europe/Paris,,OBO, +OBO:SP:226,1,"Grand Veneur",44.869899,-0.497823,33013,0,OBO:SA:GVENEU,Europe/Paris,,OBO, +OBO:SP:2265,1,"Sabarèges",44.928662,-0.506019,33003,0,OBO:SA:SABARG,Europe/Paris,,OBO, +OBO:SP:2267,1,"Acacias",44.83565,-0.686002,33281,0,OBO:SA:ACAC73,Europe/Paris,,OBO, +OBO:SP:2268,1,"Floirac Libération",44.838972,-0.531578,33167,0,OBO:SA:FLIBE,Europe/Paris,,OBO, +OBO:SP:227,1,"Farvarque",44.804044,-0.571967,33550,0,OBO:SA:FAVAR,Europe/Paris,,OBO, +OBO:SP:2270,1,"Ambarès Eglise",44.924296,-0.484116,33003,0,OBO:SA:AMBAR,Europe/Paris,,OBO, +OBO:SP:2271,1,"Mélac",44.822782,-0.500447,33065,0,OBO:SA:BETOI,Europe/Paris,,OBO, +OBO:SP:2273,1,"Mérignac Centre (Médiathèque)",44.841752,-0.648132,33281,0,OBX:SA:TMERI,Europe/Paris,,OBO, +OBO:SP:2275,1,"Faulat",44.91962,-0.481175,33003,0,OBO:SA:FAULAT,Europe/Paris,,OBO, +OBO:SP:2278,1,"Martin",44.856326,-0.638524,33281,0,OBO:SA:MARTI2,Europe/Paris,,OBO, +OBO:SP:2279,1,"Laffargue",44.832086,-0.528194,33167,0,OBO:SA:LAFA8,Europe/Paris,,OBO, +OBO:SP:228,1,"Les Plateaux",44.840751,-0.507888,33167,0,OBO:SA:PLATEA,Europe/Paris,,OBO, +OBO:SP:2280,1,"Terres Neuves (station Tram)",44.815496,-0.551588,33063,0,OBX:SA:NEUVE,Europe/Paris,,OBO, +OBO:SP:2282,1,"Caserne Nansouty",44.818695,-0.566201,33063,0,OBO:SA:CNANS,Europe/Paris,,OBO, +OBO:SP:2285,1,"Berliquet",44.815032,-0.498154,33065,0,OBO:SA:BERLIQ,Europe/Paris,,OBO, +OBO:SP:2286,1,"Allée de la Prairie",44.848733,-0.64386,33281,0,OBO:SA:PRAIRI,Europe/Paris,,OBO, +OBO:SP:2288,1,"Jambes",44.9293,-0.508672,33003,0,OBO:SA:JAMBES,Europe/Paris,,OBO, +OBO:SP:2290,1,"Ausone",44.878978,-0.605019,33075,0,OBO:SA:AQUIT,Europe/Paris,,OBO, +OBO:SP:2291,1,"Sembat",44.833379,-0.549807,33063,0,OBO:SA:SEMBA,Europe/Paris,,OBO, +OBO:SP:2292,1,"République",44.826826,-0.533486,33167,0,OBO:SA:MCRIT,Europe/Paris,,OBO, +OBO:SP:2294,1,"Capelle",44.81677,-0.549213,33063,0,OBO:SA:CAPEL,Europe/Paris,,OBO, +OBO:SP:2295,1,"Centre Commercial (4 Pavillons)",44.867622,-0.519669,33249,0,OBO:SA:CENTR,Europe/Paris,,OBO, +OBO:SP:2296,1,"Esplanade F. Mitterrand",44.873959,-0.515643,33249,0,OBO:SA:EFMITT,Europe/Paris,,OBO, +OBO:SP:2297,1,"Noutary",44.816107,-0.542612,33039,0,OBO:SA:NOUTA,Europe/Paris,,OBO, +OBO:SP:2298,1,"Mitterrand",44.834006,-0.519677,33167,0,OBO:SA:MITTE,Europe/Paris,,OBO, +OBO:SP:2299,1,"Mitterrand",44.834059,-0.520288,33167,0,OBO:SA:MITTE,Europe/Paris,,OBO, +OBO:SP:231,1,"Bagatelle",44.808542,-0.573912,33522,0,OBO:SA:BAGAT,Europe/Paris,,OBO, +OBO:SP:2324,1,"Carros",44.819751,-0.580412,33063,0,OBO:SA:CARROS,Europe/Paris,,OBO, +OBO:SP:2326,1,"Stade Chaban Delmas",44.830404,-0.596834,33063,0,OBX:SA:CDELM,Europe/Paris,,OBO, +OBO:SP:2327,1,"Barrière d'Arès",44.835864,-0.598818,33063,0,OBO:SA:BARES,Europe/Paris,,OBO, +OBO:SP:2328,1,"Barrière Judaïque (Cité Administrative)",44.840682,-0.599228,33063,0,OBO:SA:BJUDA,Europe/Paris,,OBO, +OBO:SP:2329,1,"Carnot",44.85204,-0.594698,33063,0,OBO:SA:CARNOT,Europe/Paris,,OBO, +OBO:SP:2330,1,"Barrière du Médoc (bd Pierre 1er)",44.854496,-0.592892,33063,0,OBO:SA:BMEDO,Europe/Paris,,OBO, +OBO:SP:2331,1,"Calixte Camelle",44.863335,-0.58209,33063,0,OBO:SA:CALIXT,Europe/Paris,,OBO, +OBO:SP:2333,1,"Médoc (Place Saint Martial)",44.859056,-0.5658,33063,0,OBO:SA:SMART,Europe/Paris,,OBO, +OBO:SP:2334,1,"Place Ravezies",44.866432,-0.574367,33063,0,OBX:SA:RAVESI,Europe/Paris,,OBO, +OBO:SP:2336,1,"Place Ravezies",44.865568,-0.576872,33063,0,OBX:SA:RAVESI,Europe/Paris,,OBO, +OBO:SP:2337,1,"Grand Parc",44.861505,-0.587131,33063,0,OBX:SA:GPARC,Europe/Paris,,OBO, +OBO:SP:2338,1,"Tivoli",44.856383,-0.591694,33063,0,OBO:SA:RTIVOL,Europe/Paris,,OBO, +OBO:SP:2339,1,"Barrière du Médoc",44.852579,-0.594479,33063,0,OBO:SA:BMEDO,Europe/Paris,,OBO, +OBO:SP:2340,1,"Barrière Saint Médard",44.849005,-0.597139,33063,0,OBO:SA:BSMED,Europe/Paris,,OBO, +OBO:SP:2341,1,"Barrière Judaïque",44.839542,-0.599345,33063,0,OBO:SA:BJUDA,Europe/Paris,,OBO, +OBO:SP:2342,1,"Jeu de Paume (Cité Administrative)",44.841581,-0.599577,33063,0,OBO:SA:JPAUME,Europe/Paris,,OBO, +OBO:SP:2343,1,"Barrière de Pessac",44.824623,-0.588333,33063,0,OBO:SA:BPESS,Europe/Paris,,OBO, +OBO:SP:2344,1,"Boulevard George V",44.823672,-0.586804,33063,0,OBO:SA:GEORGV,Europe/Paris,,OBO, +OBO:SP:2346,1,"Carros",44.819667,-0.580495,33063,0,OBO:SA:CARROS,Europe/Paris,,OBO, +OBO:SP:2347,1,"Pont de Cauderès",44.817802,-0.577679,33063,0,OBO:SA:PCAUDE,Europe/Paris,,OBO, +OBO:SP:2348,1,"Boulevard Roosevelt",44.815908,-0.574659,33063,0,OBO:SA:ROOSEV,Europe/Paris,,OBO, +OBO:SP:2349,1,"Barrière de Toulouse",44.815429,-0.572451,33063,0,OBO:SA:BTOUL2,Europe/Paris,,OBO, +OBO:SP:235,1,"Dumont",44.883786,-0.647924,33162,0,OBO:SA:DUMON,Europe/Paris,,OBO, +OBO:SP:2350,1,"Jean Hameau",44.868134,-0.570775,33063,0,OBO:SA:JEANHA,Europe/Paris,,OBO, +OBO:SP:236,1,"Parc de Majolan",44.899399,-0.639898,33056,0,OBO:SA:PMAJOL,Europe/Paris,,OBO, +OBO:SP:2364,1,"Aristide Briand",44.857915,-0.524255,33119,0,OBO:SA:ARIST,Europe/Paris,,OBO, +OBO:SP:2375,1,"Entre-Deux-Mers",44.845165,-0.532677,33119,0,OBO:SA:E2MER,Europe/Paris,,OBO, +OBO:SP:2376,1,"Calmette",44.851803,-0.517182,33119,0,OBO:SA:CALM62,Europe/Paris,,OBO, +OBO:SP:2378,1,"Calmette",44.851827,-0.517297,33119,0,OBO:SA:CALM62,Europe/Paris,,OBO, +OBO:SP:238,1,"Pagneau",44.814136,-0.700076,33281,0,OBO:SA:PAGNE,Europe/Paris,,OBO, +OBO:SP:2381,1,"Eglise de Floirac",44.835597,-0.521803,33167,0,OBO:SA:EGFLO,Europe/Paris,,OBO, +OBO:SP:2383,1,"Eglise de Floirac",44.83559,-0.521739,33167,0,OBO:SA:EGFLO,Europe/Paris,,OBO, +OBO:SP:2385,1,"Entre-Deux-Mers",44.845464,-0.532886,33119,0,OBO:SA:E2MER,Europe/Paris,,OBO, +OBO:SP:2386,1,"Anatole France",44.846398,-0.535833,33119,0,OBO:SA:AFRAN,Europe/Paris,,OBO, +OBO:SP:239,1,"Collège Lapierre",44.874026,-0.524354,33249,0,OBO:SA:CLAP29,Europe/Paris,,OBO, +OBO:SP:2397,1,"Saint Nicolas",44.826665,-0.572545,33063,0,OBO:SA:NICOLA,Europe/Paris,,OBO, +OBO:SP:2398,1,"Kergomard",44.823364,-0.572613,33063,0,OBO:SA:KERGO,Europe/Paris,,OBO, +OBO:SP:240,1,"Durcy",44.799494,-0.544134,33039,0,OBO:SA:DURCY,Europe/Paris,,OBO, +OBO:SP:2400,1,"Boulevard Roosevelt",44.815686,-0.573999,33063,0,OBO:SA:ROOSEV,Europe/Paris,,OBO, +OBO:SP:2403,1,"Fonfrède",44.825494,-0.572521,33063,0,OBO:SA:FONFR,Europe/Paris,,OBO, +OBO:SP:2404,1,"Saint Nicolas",44.82749,-0.572395,33063,0,OBO:SA:NICOLA,Europe/Paris,,OBO, +OBO:SP:2411,1,"Martyrs de la Résistance",44.841991,-0.584402,33063,0,OBO:SA:MARTY,Europe/Paris,,OBO, +OBO:SP:2412,1,"Gabriel Delaunay",44.845393,-0.592892,33063,0,OBO:SA:DELAU,Europe/Paris,,OBO, +OBO:SP:2413,1,"Résidences du Domaine",44.849708,-0.623448,33063,0,OBO:SA:RDOMA,Europe/Paris,,OBO, +OBO:SP:2416,1,"Virginia",44.850204,-0.625647,33063,0,OBO:SA:VIRGI,Europe/Paris,,OBO, +OBO:SP:2417,1,"Place Lopès",44.845866,-0.61304,33063,0,OBO:SA:LOPES,Europe/Paris,,OBO, +OBO:SP:2418,1,"Place Moscou",44.844298,-0.609696,33063,0,OBO:SA:MOSCO,Europe/Paris,,OBO, +OBO:SP:2419,1,"Stade Batany",44.842909,-0.606402,33063,0,OBO:SA:BATAN,Europe/Paris,,OBO, +OBO:SP:242,1,"Domion",44.855861,-0.626,33063,0,OBO:SA:DOMIO,Europe/Paris,,OBO, +OBO:SP:2420,1,"Cité administrative",44.841509,-0.600383,33063,0,OBO:SA:CADMN,Europe/Paris,,OBO, +OBO:SP:2422,1,"Saint Seurin",44.842382,-0.585972,33063,0,OBO:SA:SEURI,Europe/Paris,,OBO, +OBO:SP:2425,1,"Stade du Jard",44.84686,-0.637771,33281,0,OBO:SA:JARD,Europe/Paris,,OBO, +OBO:SP:2426,1,"Montesquieu",44.846191,-0.632863,33281,0,OBO:SA:MONTE,Europe/Paris,,OBO, +OBO:SP:243,1,"Turenne",44.879992,-0.679585,33200,0,OBO:SA:TUREN,Europe/Paris,,OBO, +OBO:SP:2430,1,"Archimède",44.785271,-0.644225,33318,0,OBO:SA:ARMED,Europe/Paris,,OBO, +OBO:SP:2431,1,"Langevin",44.78242,-0.648418,33318,0,OBO:SA:LANGEV,Europe/Paris,,OBO, +OBO:SP:2432,1,"Place Mozart",44.814645,-0.60113,33522,0,OBO:SA:MOZAR,Europe/Paris,,OBO, +OBO:SP:2434,1,"La Médoquine",44.819364,-0.598204,33522,0,OBO:SA:MEDOQ,Europe/Paris,,OBO, +OBO:SP:2436,1,"Meunier",44.828789,-0.563384,33063,0,OBO:SA:MEUNI,Europe/Paris,,OBO, +OBO:SP:244,1,"Quai Numa Sensine",44.875157,-0.53582,33249,0,OBO:SA:NUMA,Europe/Paris,,OBO, +OBO:SP:2442,1,"Paul Doumer",44.851876,-0.573833,33063,0,OBX:SA:PDOUM,Europe/Paris,,OBO, +OBO:SP:2443,1,"Jardin Public",44.848021,-0.576298,33063,0,OBX:SA:JPUBL,Europe/Paris,,OBO, +OBO:SP:2444,1,"Gambetta",44.840862,-0.581137,33063,0,OBO:SA:GAMBT1,Europe/Paris,,OBO, +OBO:SP:2446,1,"Cité Chantecrit",44.864202,-0.564429,33063,0,OBO:SA:CHANTE,Europe/Paris,,OBO, +OBO:SP:2447,1,"Rue du Stade",44.875337,-0.679445,33200,0,OBO:SA:RSTADE,Europe/Paris,,OBO, +OBO:SP:2448,1,"Clinique Mutualiste",44.805237,-0.609984,33318,0,OBO:SA:CMUTUA,Europe/Paris,,OBO, +OBO:SP:2449,1,"Facultés Droit et Lettres",44.79852,-0.619717,33318,0,OBO:SA:DROLET,Europe/Paris,,OBO, +OBO:SP:245,1,"Route de Pessac",44.772267,-0.621619,33192,0,OBO:SA:RDPESS,Europe/Paris,,OBO, +OBO:SP:2451,1,"Clinique Mutualiste",44.805265,-0.609391,33318,0,OBO:SA:CMUTUA,Europe/Paris,,OBO, +OBO:SP:2452,1,"Rue du Médoc (av Pasteur)",44.877532,-0.680375,33200,0,OBO:SA:RMEDOC,Europe/Paris,,OBO, +OBO:SP:2453,1,"Bel Air",44.839611,-0.607216,33063,0,OBO:SA:BELAI,Europe/Paris,,OBO, +OBO:SP:2454,1,"Etchénique",44.839285,-0.611426,33063,0,OBO:SA:ETCHEN,Europe/Paris,,OBO, +OBO:SP:2455,1,"Bourranville",44.839365,-0.630217,33281,0,OBO:SA:BOURAN,Europe/Paris,,OBO, +OBO:SP:2456,1,"Mérignac Centre (Médiathèque)",44.841776,-0.648209,33281,0,OBX:SA:TMERI,Europe/Paris,,OBO, +OBO:SP:246,1,"Domion",44.855777,-0.626096,33063,0,OBO:SA:DOMIO,Europe/Paris,,OBO, +OBO:SP:2461,1,"Marronniers",44.843946,-0.679934,33281,0,OBO:SA:MARRO,Europe/Paris,,OBO, +OBO:SP:2466,1,"Marx Dormoy",44.839335,-0.63608,33281,0,OBO:SA:MDORMO,Europe/Paris,,OBO, +OBO:SP:2467,1,"Place Mondésir",44.838223,-0.615246,33281,0,OBO:SA:MONDES,Europe/Paris,,OBO, +OBO:SP:2468,1,"Allée des Pins",44.836345,-0.601787,33063,0,OBO:SA:APINS,Europe/Paris,,OBO, +OBO:SP:2469,1,"Barrière d'Arès",44.836586,-0.598243,33063,0,OBO:SA:BARES,Europe/Paris,,OBO, +OBO:SP:247,1,"Lacone",45.000691,-0.500011,33004,0,OBO:SA:LACONE,Europe/Paris,,OBO, +OBO:SP:2470,1,"La Chartreuse",44.837348,-0.593922,33063,0,OBO:SA:LCHAR,Europe/Paris,,OBO, +OBO:SP:2472,1,"Gouraud (av Yser)",44.841651,-0.665658,33281,0,OBO:SA:GOURAU,Europe/Paris,,OBO, +OBO:SP:2473,1,"Jean Macé",44.841772,-0.659813,33281,0,OBO:SA:JMACE,Europe/Paris,,OBO, +OBO:SP:2474,1,"Nungesser et Coli",44.841432,-0.655927,33281,0,OBO:SA:NCOLI,Europe/Paris,,OBO, +OBO:SP:2478,1,"Monbalon 2",44.803553,-0.667046,33318,0,OBO:SA:MONBA,Europe/Paris,,OBO, +OBO:SP:2480,1,"Schweitzer",44.773994,-0.532417,33550,0,OBO:SA:SCHW02,Europe/Paris,,OBO, +OBO:SP:2481,1,"Lamartine",44.885633,-0.693179,33449,0,OBO:SA:LMARTI,Europe/Paris,,OBO, +OBO:SP:2482,1,"Stade Municipal",44.916581,-0.684334,33519,0,OBO:SA:STAD55,Europe/Paris,,OBO, +OBO:SP:2484,1,"Bénédigues",44.799129,-0.583503,33522,0,OBO:SA:BENEDI,Europe/Paris,,OBO, +OBO:SP:2485,1,"Epargne",44.794134,-0.567667,33550,0,OBO:SA:EPARG,Europe/Paris,,OBO, +OBO:SP:2487,1,"Sarcignan",44.778279,-0.573316,33550,0,OBO:SA:SARCIG,Europe/Paris,,OBO, +OBO:SP:2488,1,"Brossolette",44.862924,-0.513203,33119,0,OBO:SA:PBRO62,Europe/Paris,,OBO, +OBO:SP:2489,1,"Place de l'Europe",44.859196,-0.582459,33063,0,OBO:SA:EUROP,Europe/Paris,,OBO, +OBO:SP:249,1,"Brémontier",44.816201,-0.634101,33281,0,OBO:SA:BREMON,Europe/Paris,,OBO, +OBO:SP:2491,1,"Château Pontac (devant Centre Cial)",44.775601,-0.564681,33550,0,OBO:SA:CPONTA,Europe/Paris,,OBO, +OBO:SP:2493,1,"Camparian",44.849617,-0.524152,33119,0,OBO:SA:CAMPAR,Europe/Paris,,OBO, +OBO:SP:2494,1,"Sarcignan",44.778421,-0.572831,33550,0,OBO:SA:SARCIG,Europe/Paris,,OBO, +OBO:SP:2497,1,"La Poudrerie",44.871669,-0.734457,33449,0,OBO:SA:SNPE,Europe/Paris,,OBO, +OBO:SP:2499,1,"Lycée Daguin",44.836984,-0.649228,33281,0,OBO:SA:DAGUIN,Europe/Paris,,OBO, +OBO:SP:250,1,"Gelès",44.889676,-0.74282,33449,0,OBO:SA:GELES,Europe/Paris,,OBO, +OBO:SP:2500,1,"Pexotto",44.900949,-0.669458,33519,0,OBO:SA:PEXO55,Europe/Paris,,OBO, +OBO:SP:2501,1,"Clairière de Mingot",44.873431,-0.705559,33449,0,OBO:SA:MINGOT,Europe/Paris,,OBO, +OBO:SP:2503,1,"Centre Hippique",44.893586,-0.763674,33449,0,OBO:SA:HIPPIQ,Europe/Paris,,OBO, +OBO:SP:2508,1,"L'Archevêque",44.879674,-0.505936,33249,0,OBO:SA:ARCHEV,Europe/Paris,,OBO, +OBO:SP:2510,1,"Hauts de Guitres",44.830764,-0.521018,33167,0,OBO:SA:HGUIT,Europe/Paris,,OBO, +OBO:SP:2511,1,"Place Florale",44.868883,-0.636246,33162,0,OBO:SA:PFLOR,Europe/Paris,,OBO, +OBO:SP:2512,1,"Stade du Jard",44.847017,-0.638199,33281,0,OBO:SA:JARD,Europe/Paris,,OBO, +OBO:SP:2513,1,"Bibliothèque",44.804724,-0.543489,33039,0,OBO:SA:BIB02,Europe/Paris,,OBO, +OBO:SP:2514,1,"Châtaigneraie",44.793629,-0.647665,33318,0,OBO:SA:ACANEJ,Europe/Paris,,OBO, +OBO:SP:2515,1,"Gay Lussac",44.8497,-0.497337,33013,0,OBO:SA:GAYLU,Europe/Paris,,OBO, +OBO:SP:2516,1,"La Moune",44.864538,-0.47658,33013,0,OBO:SA:MOUNE,Europe/Paris,,OBO, +OBO:SP:2517,1,"Le Grand Louis",44.861132,-0.641205,33162,0,OBO:SA:GLOUIS,Europe/Paris,,OBO, +OBO:SP:252,1,"Clavé",44.790797,-0.65648,33318,0,OBO:SA:HLEVQU,Europe/Paris,,OBO, +OBO:SP:2522,1,"Herzog",45.011114,-0.532643,33004,0,OBO:SA:MONT91,Europe/Paris,,OBO, +OBO:SP:2524,1,"Colonel Jacqui",44.81163,-0.633894,33318,0,OBO:SA:JACQUI,Europe/Paris,,OBO, +OBO:SP:2528,1,"Village 1",44.807851,-0.603606,33522,0,OBO:SA:VILLA1,Europe/Paris,,OBO, +OBO:SP:2532,1,"Mimosas",44.884717,-0.526243,33249,0,OBO:SA:MIMOS,Europe/Paris,,OBO, +OBO:SP:2533,1,"Brossolette",44.862902,-0.513353,33119,0,OBO:SA:PBRO62,Europe/Paris,,OBO, +OBO:SP:2537,1,"Clos de Hilde",44.799816,-0.530648,33039,0,OBO:SA:HILDE,Europe/Paris,,OBO, +OBO:SP:254,1,"Lespiault",44.82659,-0.591309,33063,0,OBO:SA:LESPIA,Europe/Paris,,OBO, +OBO:SP:2542,1,"Sourdis",44.884057,-0.521207,33249,0,OBO:SA:SOURD,Europe/Paris,,OBO, +OBO:SP:2544,1,"Château Pomerol",44.891145,-0.516225,33096,0,OBO:SA:CHAPOM,Europe/Paris,,OBO, +OBO:SP:2546,1,"Hippodrome",44.871754,-0.631159,33162,0,OBO:SA:HIPP54,Europe/Paris,,OBO, +OBO:SP:2547,1,"La Route Bleue",44.821005,-0.501349,33065,0,OBO:SA:RBLEUE,Europe/Paris,,OBO, +OBO:SP:2548,1,"Clos du Prieuré",44.921549,-0.483172,33003,0,OBO:SA:CLPRIE,Europe/Paris,,OBO, +OBO:SP:2549,1,"14 Juillet",44.807744,-0.547389,33039,0,OBO:SA:14JUIL,Europe/Paris,,OBO, +OBO:SP:2550,1,"Place Maran",44.875156,-0.554199,33063,0,OBO:SA:MARAN,Europe/Paris,,OBO, +OBO:SP:2552,1,"Sourdis",44.884147,-0.521225,33249,0,OBO:SA:SOURD,Europe/Paris,,OBO, +OBO:SP:2554,1,"Avenue du Stade",44.909762,-0.692092,33519,0,OBO:SA:ASTADE,Europe/Paris,,OBO, +OBO:SP:2558,1,"Frachon",45.013493,-0.536338,33004,0,OBO:SA:EXUP91,Europe/Paris,,OBO, +OBO:SP:2559,1,"Lino Ventura",44.801875,-0.681482,33318,0,OBO:SA:LVENTU,Europe/Paris,,OBO, +OBO:SP:2560,1,"Frankton",44.907058,-0.621764,33056,0,OBO:SA:DEHEZ,Europe/Paris,,OBO, +OBO:SP:2561,1,"La Renney",44.911343,-0.624679,33056,0,OBO:SA:ANDRIA,Europe/Paris,,OBO, +OBO:SP:2562,1,"Saint Bruno - Hôtel de Région",44.837482,-0.590055,33063,0,OBO:SA:BRUN10,Europe/Paris,,OBO, +OBO:SP:2563,1,"Brisson",44.945202,-0.539224,33434,0,OBO:SA:BRISSO,Europe/Paris,,OBO, +OBO:SP:2565,1,"Brisson",44.945219,-0.539264,33434,0,OBO:SA:BRISSO,Europe/Paris,,OBO, +OBO:SP:2567,1,"Lino Ventura",44.801753,-0.682449,33318,0,OBO:SA:LVENTU,Europe/Paris,,OBO, +OBO:SP:2570,1,"Hippodrome",44.877556,-0.623232,33075,0,OBO:SA:HIPPOD,Europe/Paris,,OBO, +OBO:SP:2572,1,"La Hontan",44.76671,-0.549695,33550,0,OBO:SA:HONTA,Europe/Paris,,OBO, +OBO:SP:2573,1,"René Coty (Pasteur)",44.927594,-0.49187,33003,0,OBO:SA:RCOT94,Europe/Paris,,OBO, +OBO:SP:2576,1,"Allée de Curé",44.911271,-0.685481,33519,0,OBO:SA:ACURE,Europe/Paris,,OBO, +OBO:SP:2577,1,"Beutre Antenne Sociale",44.816391,-0.700833,33281,0,OBO:SA:ANSOC,Europe/Paris,,OBO, +OBO:SP:2579,1,"Résidence Chanteclerc",44.866296,-0.667484,33200,0,OBO:SA:RCHANT,Europe/Paris,,OBO, +OBO:SP:258,1,"Montaigne",44.817838,-0.632573,33281,0,OBO:SA:MTAIGN,Europe/Paris,,OBO, +OBO:SP:2583,1,"Les Gravières",44.781635,-0.540376,33550,0,OBO:SA:GRAV02,Europe/Paris,,OBO, +OBO:SP:2584,1,"Agrières",44.910964,-0.681123,33519,0,OBO:SA:AGRIE,Europe/Paris,,OBO, +OBO:SP:2586,1,"Route du Médoc",44.874102,-0.616937,33075,0,OBO:SA:RMEDO,Europe/Paris,,OBO, +OBO:SP:2589,1,"Moulin du Gua",44.933747,-0.50739,33003,0,OBO:SA:MGUA,Europe/Paris,,OBO, +OBO:SP:259,1,"Jacquet",44.82425,-0.610636,33063,0,OBO:SA:JACQET,Europe/Paris,,OBO, +OBO:SP:2590,1,"Cimbats",44.90329,-0.639681,33056,0,OBO:SA:HCANTE,Europe/Paris,,OBO, +OBO:SP:2591,1,"Tandonnet",44.817016,-0.546594,33039,0,OBO:SA:TANDO,Europe/Paris,,OBO, +OBO:SP:2592,1,"Mairie de Bègles",44.808927,-0.54226,33039,0,OBO:SA:MBEGL,Europe/Paris,,OBO, +OBO:SP:2593,1,"Cimetière Nord",44.876364,-0.590844,33075,0,OBO:SA:CNORD,Europe/Paris,,OBO, +OBO:SP:2594,1,"Strélitzias",44.856346,-0.651615,33281,0,OBO:SA:STREL,Europe/Paris,,OBO, +OBO:SP:2596,1,"Résidence Chanteclerc",44.866586,-0.669061,33200,0,OBO:SA:RCHANT,Europe/Paris,,OBO, +OBO:SP:2599,1,"Mairie de Cenon",44.855905,-0.532175,33119,0,OBO:SA:MCENO,Europe/Paris,,OBO, +OBO:SP:26,1,"Monbalon 2",44.803493,-0.666675,33318,0,OBO:SA:MONBA,Europe/Paris,,OBO, +OBO:SP:260,1,"Martouret",44.836492,-0.511764,33167,0,OBO:SA:MARTO,Europe/Paris,,OBO, +OBO:SP:2600,1,"Bois des Ormes",44.91044,-0.67736,33519,0,OBO:SA:ORMES,Europe/Paris,,OBO, +OBO:SP:2601,1,"Bruges Centre",44.882837,-0.610807,33075,0,OBO:SA:BRCENT,Europe/Paris,,OBO, +OBO:SP:2602,1,"Eglise Saint Augustin",44.832138,-0.611131,33063,0,OBO:SA:STAUGU,Europe/Paris,,OBO, +OBO:SP:2606,1,"Parc d'Activité du Grand Port",44.813318,-0.540486,33039,0,OBO:SA:GPORT,Europe/Paris,,OBO, +OBO:SP:2607,1,"Collège Lapierre",44.873781,-0.524377,33249,0,OBO:SA:CLAP29,Europe/Paris,,OBO, +OBO:SP:2609,1,"Port Garonne",44.797441,-0.530246,33039,0,OBO:SA:FLUVI,Europe/Paris,,OBO, +OBO:SP:261,1,"Ateliers Municipaux",44.880889,-0.531846,33249,0,OBO:SA:ATELI,Europe/Paris,,OBO, +OBO:SP:2610,1,"Marché de Brienne",44.825703,-0.547751,33063,0,OBO:SA:MBRIE,Europe/Paris,,OBO, +OBO:SP:2611,1,"Quatre Castéra",44.80602,-0.539317,33039,0,OBO:SA:4CASTE,Europe/Paris,,OBO, +OBO:SP:2614,1,"Collège G.Rayet",44.842107,-0.515459,33167,0,OBO:SA:RAYET,Europe/Paris,,OBO, +OBO:SP:2615,1,"Châtaigneraie",44.79332,-0.647481,33318,0,OBO:SA:ACANEJ,Europe/Paris,,OBO, +OBO:SP:262,1,"Docteur Rocaz",44.823164,-0.610782,33063,0,OBO:SA:ROCAZ,Europe/Paris,,OBO, +OBO:SP:2628,1,"Le Dôme",44.792184,-0.591476,33522,0,OBO:SA:THOUAS,Europe/Paris,,OBO, +OBO:SP:2629,1,"Bruges Centre",44.882592,-0.611133,33075,0,OBO:SA:BRCENT,Europe/Paris,,OBO, +OBO:SP:2630,1,"Collège Les Eyquems",44.827916,-0.645675,33281,0,OBO:SA:EYQUEM,Europe/Paris,,OBO, +OBO:SP:2631,1,"Mérignac Centre Terminus",44.841292,-0.650319,33281,0,OBO:SA:HPOSTE,Europe/Paris,,OBO, +OBO:SP:2633,1,"Avenue de l'Université",44.801201,-0.594686,33522,0,OBO:SA:AUNIV,Europe/Paris,,OBO, +OBO:SP:2635,1,"URSSAF",44.875687,-0.579444,33075,0,OBO:SA:URSSAF,Europe/Paris,,OBO, +OBO:SP:2639,1,"Avenue du Taillan",44.872223,-0.63361,33162,0,OBO:SA:AVTAI,Europe/Paris,,OBO, +OBO:SP:2640,1,"Migron",44.864382,-0.631962,33162,0,OBO:SA:EMIGR,Europe/Paris,,OBO, +OBO:SP:2641,1,"Croustet",44.837176,-0.64639,33281,0,OBO:SA:CROUST,Europe/Paris,,OBO, +OBO:SP:2642,1,"Barrière du Médoc",44.853239,-0.592203,33063,0,OBO:SA:BMEDO,Europe/Paris,,OBO, +OBO:SP:2643,1,"Temps Passé",44.851369,-0.586217,33063,0,OBO:SA:TPASS,Europe/Paris,,OBO, +OBO:SP:2645,1,"Les Méridiennes",44.872393,-0.599652,33069,0,OBO:SA:AUSON,Europe/Paris,,OBO, +OBO:SP:2648,1,"Montoya",44.947747,-0.593045,33312,0,OBO:SA:MONTOY,Europe/Paris,,OBO, +OBO:SP:2649,1,"Caychac Bourg",44.930091,-0.634849,33056,0,OBO:SA:CAYBO,Europe/Paris,,OBO, +OBO:SP:2650,1,"Caychac Bourg",44.929722,-0.634305,33056,0,OBO:SA:CAYBO,Europe/Paris,,OBO, +OBO:SP:2651,1,"Lycée Jean Monnet",44.915773,-0.634733,33056,0,OBO:SA:LJMONN,Europe/Paris,,OBO, +OBO:SP:2655,1,"Gare de Blanquefort (av du 11 Novembre)",44.915717,-0.627093,33056,0,OBO:SA:GBLANQ,Europe/Paris,,OBO, +OBO:SP:2656,1,"Mendès France",44.92538,-0.485161,33003,0,OBO:SA:MFRA94,Europe/Paris,,OBO, +OBO:SP:2657,1,"Collège de Blanquefort",44.907127,-0.629036,33056,0,OBO:SA:COLBLQ,Europe/Paris,,OBO, +OBO:SP:266,1,"Brignon",44.775439,-0.575033,33550,0,OBO:SA:BRIGN,Europe/Paris,,OBO, +OBO:SP:2660,1,"Mairie de Carbon Blanc",44.895335,-0.504303,33096,0,OBO:SA:MCABLA,Europe/Paris,,OBO, +OBO:SP:2661,1,"C.A.T",44.927763,-0.515084,33003,0,OBO:SA:CAT,Europe/Paris,,OBO, +OBO:SP:267,1,"Mirail",44.861405,-0.490831,33013,0,OBO:SA:MIRAIL,Europe/Paris,,OBO, +OBO:SP:2670,1,"France-Les Castors",44.793476,-0.670591,33318,0,OBO:SA:FRANCE,Europe/Paris,,OBO, +OBO:SP:2671,1,"Boiron",44.78766,-0.677741,33318,0,OBO:SA:BOIRO,Europe/Paris,,OBO, +OBO:SP:2672,1,"Eglise de Bègles (av Jeanne d'Arc)",44.801299,-0.544324,33039,0,OBO:SA:EGBEGL,Europe/Paris,,OBO, +OBO:SP:2674,1,"Allard",44.877748,-0.591528,33075,0,OBO:SA:ALLAR,Europe/Paris,,OBO, +OBO:SP:2678,1,"Douanes Françaises",44.893495,-0.609819,33075,0,OBO:SA:DFRANC,Europe/Paris,,OBO, +OBO:SP:2679,1,"Zone de Fret (Milan)",44.893913,-0.604444,33075,0,OBO:SA:MILAN,Europe/Paris,,OBO, +OBO:SP:268,1,"Cornier",44.843202,-0.51302,33167,0,OBO:SA:CORNI,Europe/Paris,,OBO, +OBO:SP:2681,1,"Lignac",44.933898,-0.509176,33003,0,OBO:SA:LIGNAC,Europe/Paris,,OBO, +OBO:SP:2682,1,"Foncastel",44.836327,-0.642054,33281,0,OBO:SA:FONC72,Europe/Paris,,OBO, +OBO:SP:2683,1,"Port Lopès",45.025554,-0.576041,33004,0,OBO:SA:PLOPES,Europe/Paris,,OBO, +OBO:SP:2684,1,"Eglise Saint Augustin",44.832834,-0.611087,33063,0,OBO:SA:EGAUGU,Europe/Paris,,OBO, +OBO:SP:2685,1,"Mansencal",44.782898,-0.576824,33550,0,OBO:SA:MANSE,Europe/Paris,,OBO, +OBO:SP:2686,1,"Guilbaud",44.821753,-0.607044,33063,0,OBO:SA:GUILBA,Europe/Paris,,OBO, +OBO:SP:2688,1,"Guilbaud",44.821688,-0.60766,33063,0,OBO:SA:GUILBA,Europe/Paris,,OBO, +OBO:SP:2689,1,"Barrière de Toulouse",44.814024,-0.572982,33063,0,OBO:SA:BTOUL2,Europe/Paris,,OBO, +OBO:SP:2690,1,"Croix de Leysotte",44.806488,-0.573021,33522,0,OBO:SA:LEYSO,Europe/Paris,,OBO, +OBO:SP:2691,1,"Hôpital Robert Picqué",44.799081,-0.569652,33550,0,OBO:SA:RPIQU,Europe/Paris,,OBO, +OBO:SP:2692,1,"Maréchal Joffre",44.791692,-0.567081,33550,0,OBO:SA:JOFFRE,Europe/Paris,,OBO, +OBO:SP:2693,1,"RPA Villa Nova (vers Rocade)",44.784812,-0.566354,33550,0,OBO:SA:MALLET,Europe/Paris,,OBO, +OBO:SP:2697,1,"De Lattre de Tassigny",44.773311,-0.54533,33550,0,OBO:SA:TASSIG,Europe/Paris,,OBO, +OBO:SP:2698,1,"Clos de Leyran",44.77846,-0.539619,33550,0,OBO:SA:LEYRA,Europe/Paris,,OBO, +OBO:SP:2699,1,"Sallegourde",44.770026,-0.545755,33550,0,OBO:SA:SALLG,Europe/Paris,,OBO, +OBO:SP:2700,1,"De Lattre de Tassigny",44.773313,-0.545267,33550,0,OBO:SA:TASSIG,Europe/Paris,,OBO, +OBO:SP:2703,1,"Résidence Le Château",44.779719,-0.572838,33550,0,OBO:SA:RCHAT,Europe/Paris,,OBO, +OBO:SP:2704,1,"Pexotto",44.901087,-0.669112,33519,0,OBO:SA:PEXO55,Europe/Paris,,OBO, +OBO:SP:2708,1,"Pyrénées",44.763168,-0.559819,33550,0,OBO:SA:PYREN,Europe/Paris,,OBO, +OBO:SP:2709,1,"Soors",44.77261,-0.56439,33550,0,OBO:SA:SOORS,Europe/Paris,,OBO, +OBO:SP:271,1,"Rigal",44.868332,-0.580597,33069,0,OBO:SA:RIGAL,Europe/Paris,,OBO, +OBO:SP:2710,1,"Terrefort",44.765537,-0.562095,33550,0,OBO:SA:TERRE,Europe/Paris,,OBO, +OBO:SP:2711,1,"Château Pontac (vers Rocade)",44.775494,-0.565206,33550,0,OBO:SA:CPONTA,Europe/Paris,,OBO, +OBO:SP:2712,1,"Pont de la Maye Poste (vers Bordeaux)",44.782849,-0.566039,33550,0,OBO:SA:PMAYE,Europe/Paris,,OBO, +OBO:SP:2713,1,"RPA Villa Nova (vers Bordeaux)",44.785275,-0.566256,33039,0,OBO:SA:MALLET,Europe/Paris,,OBO, +OBO:SP:2715,1,"Maréchal Joffre",44.79149,-0.566917,33039,0,OBO:SA:JOFFRE,Europe/Paris,,OBO, +OBO:SP:2716,1,"Farvarque",44.803594,-0.571673,33039,0,OBO:SA:FAVAR,Europe/Paris,,OBO, +OBO:SP:2717,1,"Croix de Leysotte",44.806918,-0.573112,33039,0,OBO:SA:LEYSO,Europe/Paris,,OBO, +OBO:SP:2718,1,"Bagatelle",44.808608,-0.573802,33039,0,OBO:SA:BAGAT,Europe/Paris,,OBO, +OBO:SP:2720,1,"Pyrénées",44.762929,-0.559678,33550,0,OBO:SA:PYREN,Europe/Paris,,OBO, +OBO:SP:2726,1,"Bonnardel",44.769355,-0.578973,33550,0,OBO:SA:BONNA,Europe/Paris,,OBO, +OBO:SP:2727,1,"Camparian",44.772319,-0.577036,33550,0,OBO:SA:CAMPA,Europe/Paris,,OBO, +OBO:SP:2728,1,"Collège Pont de la Maye",44.780651,-0.569076,33550,0,OBO:SA:LBLU21,Europe/Paris,,OBO, +OBO:SP:2729,1,"Résidence Le Château",44.779862,-0.573429,33550,0,OBO:SA:RCHAT,Europe/Paris,,OBO, +OBO:SP:273,1,"La Landotte",44.912599,-0.677755,33519,0,OBO:SA:LANDOT,Europe/Paris,,OBO, +OBO:SP:2731,1,"Les Menhirs",44.811169,-0.650387,33318,0,OBO:SA:MENHIR,Europe/Paris,,OBO, +OBO:SP:2732,1,"Collège Noès",44.81219,-0.637691,33318,0,OBO:SA:CONOES,Europe/Paris,,OBO, +OBO:SP:2733,1,"La Fontaine",44.811867,-0.664183,33318,0,OBO:SA:LFONT,Europe/Paris,,OBO, +OBO:SP:2734,1,"Poudrière",44.782684,-0.688071,33318,0,OBO:SA:POUDR,Europe/Paris,,OBO, +OBO:SP:2735,1,"Pont de l'Orient",44.804897,-0.648992,33318,0,OBO:SA:PORIEN,Europe/Paris,,OBO, +OBO:SP:2736,1,"Pape Clément (Place Sellier)",44.805157,-0.653389,33318,0,OBO:SA:PAPECL,Europe/Paris,,OBO, +OBO:SP:2737,1,"Pont de l'Orient",44.805605,-0.64857,33318,0,OBO:SA:PORIEN,Europe/Paris,,OBO, +OBO:SP:2738,1,"Cimetière",44.810822,-0.625257,33318,0,OBO:SA:CIM47,Europe/Paris,,OBO, +OBO:SP:2739,1,"Ecole Jean Cordier",44.814966,-0.620612,33318,0,OBO:SA:EJCORD,Europe/Paris,,OBO, +OBO:SP:274,1,"Petit Peyronnet",44.931114,-0.546049,33434,0,OBO:SA:PTPEYR,Europe/Paris,,OBO, +OBO:SP:2740,1,"Barrière de Pessac",44.825567,-0.588672,33063,0,OBO:SA:BPESS,Europe/Paris,,OBO, +OBO:SP:2741,1,"Caserne Boudet",44.82766,-0.585539,33063,0,OBO:SA:BOUDE,Europe/Paris,,OBO, +OBO:SP:2742,1,"Strasbourg",44.828822,-0.583042,33063,0,OBO:SA:STRAS,Europe/Paris,,OBO, +OBO:SP:2743,1,"Navarre",44.830032,-0.580738,33063,0,OBO:SA:NAVAR,Europe/Paris,,OBO, +OBO:SP:2744,1,"Costedoat",44.831305,-0.578172,33063,0,OBO:SA:COSTED,Europe/Paris,,OBO, +OBO:SP:2751,1,"Caserne Boudet",44.82726,-0.586476,33063,0,OBO:SA:BOUDE,Europe/Paris,,OBO, +OBO:SP:2752,1,"Barrière de Pessac",44.825749,-0.588608,33063,0,OBO:SA:BPESS,Europe/Paris,,OBO, +OBO:SP:2753,1,"Campeyraut",44.826264,-0.597202,33063,0,OBO:SA:CAMPEY,Europe/Paris,,OBO, +OBO:SP:2754,1,"Charles Perrens",44.823265,-0.600746,33063,0,OBO:SA:CPERRE,Europe/Paris,,OBO, +OBO:SP:2755,1,"Ecole Jean Cordier",44.814402,-0.621323,33318,0,OBO:SA:EJCORD,Europe/Paris,,OBO, +OBO:SP:2756,1,"Cimetière",44.810801,-0.625357,33318,0,OBO:SA:CIM47,Europe/Paris,,OBO, +OBO:SP:2757,1,"Pont de l'Orient",44.805729,-0.648362,33318,0,OBO:SA:PORIEN,Europe/Paris,,OBO, +OBO:SP:2759,1,"Les Bois de l'Alouette",44.797457,-0.688876,33318,0,OBO:SA:BALOUE,Europe/Paris,,OBO, +OBO:SP:276,1,"Béraldi",44.831824,-0.519996,33167,0,OBO:SA:BERAL,Europe/Paris,,OBO, +OBO:SP:2761,1,"Avenue Jean Jaurès",44.809375,-0.622936,33318,0,OBO:SA:JJA45,Europe/Paris,,OBO, +OBO:SP:2762,1,"Jaubert",44.807432,-0.626938,33318,0,OBO:SA:JAUBE,Europe/Paris,,OBO, +OBO:SP:2763,1,"Pessac Centre",44.806047,-0.631811,33318,0,OBO:SA:PCENTR,Europe/Paris,,OBO, +OBO:SP:2764,1,"Le Monteil (Cité Le Corbusier)",44.802408,-0.646577,33318,0,OBO:SA:MONTEI,Europe/Paris,,OBO, +OBO:SP:2765,1,"Xavier Arnozan",44.80031,-0.659074,33318,0,OBO:SA:XARNOZ,Europe/Paris,,OBO, +OBO:SP:2766,1,"Castaing",44.795416,-0.668085,33318,0,OBO:SA:CASTAI,Europe/Paris,,OBO, +OBO:SP:2767,1,"Village Cap de Bos",44.786562,-0.680137,33318,0,OBO:SA:VCABOS,Europe/Paris,,OBO, +OBO:SP:2768,1,"Poudrière",44.782736,-0.688138,33318,0,OBO:SA:POUDR,Europe/Paris,,OBO, +OBO:SP:2769,1,"De Lattre de Tassigny (vers Gazinet)",44.774671,-0.705096,33122,0,OBO:SA:DELATA,Europe/Paris,,OBO, +OBO:SP:2770,1,"Cestas Gazinet",44.771956,-0.702209,33122,0,OBO:SA:CGAZIN,Europe/Paris,,OBO, +OBO:SP:2771,1,"De Lattre de Tassigny (vers Rte d'Arcachon)",44.774795,-0.70518,33122,0,OBO:SA:DELATA,Europe/Paris,,OBO, +OBO:SP:2772,1,"Les Prés de Toctoucau",44.759741,-0.732347,33318,0,OBO:SA:PTOCTO,Europe/Paris,,OBO, +OBO:SP:2774,1,"Bellevue",44.791474,-0.650981,33318,0,OBO:SA:BELLEV,Europe/Paris,,OBO, +OBO:SP:2775,1,"Les Prés de Toctoucau",44.758929,-0.733432,33122,0,OBO:SA:PTOCTO,Europe/Paris,,OBO, +OBO:SP:2776,1,"Z.A d'Auguste",44.764797,-0.724333,33122,0,OBO:SA:ZAAUG,Europe/Paris,,OBO, +OBO:SP:2777,1,"Fougnet",44.772628,-0.712009,33122,0,OBO:SA:FOUGN,Europe/Paris,,OBO, +OBO:SP:2778,1,"Petit Gazinet",44.77973,-0.694508,33122,0,OBO:SA:PGAZIN,Europe/Paris,,OBO, +OBO:SP:2779,1,"Village Cap de Bos",44.78673,-0.679693,33318,0,OBO:SA:VCABOS,Europe/Paris,,OBO, +OBO:SP:2780,1,"Marne",44.788648,-0.67568,33318,0,OBO:SA:MARN46,Europe/Paris,,OBO, +OBO:SP:2781,1,"St Hubert",44.79182,-0.672153,33318,0,OBO:SA:SHUBE,Europe/Paris,,OBO, +OBO:SP:2782,1,"Castaing",44.795795,-0.667527,33318,0,OBO:SA:CASTAI,Europe/Paris,,OBO, +OBO:SP:2783,1,"France Alouette",44.798698,-0.663666,33318,0,OBX:SA:TALOU,Europe/Paris,,OBO, +OBO:SP:2784,1,"Xavier Arnozan",44.800486,-0.657833,33318,0,OBO:SA:XARNOZ,Europe/Paris,,OBO, +OBO:SP:2785,1,"Maréchal Foch",44.801896,-0.653089,33318,0,OBO:SA:FOCH46,Europe/Paris,,OBO, +OBO:SP:2786,1,"Le Monteil (Cité Le Corbusier)",44.802344,-0.646586,33318,0,OBO:SA:MONTEI,Europe/Paris,,OBO, +OBO:SP:2787,1,"Grangeneuve",44.804333,-0.636815,33318,0,OBO:SA:GRANGE,Europe/Paris,,OBO, +OBO:SP:2788,1,"Pessac Centre",44.806175,-0.630655,33318,0,OBO:SA:PCENTR,Europe/Paris,,OBO, +OBO:SP:2789,1,"Avenue Jean Jaurès",44.809031,-0.623534,33318,0,OBO:SA:JJA45,Europe/Paris,,OBO, +OBO:SP:279,1,"Manège",44.83912,-0.587626,33063,0,OBO:SA:MANEG,Europe/Paris,,OBO, +OBO:SP:2790,1,"Les Echoppes",44.810584,-0.620393,33318,0,OBO:SA:ECHOP,Europe/Paris,,OBO, +OBO:SP:2791,1,"Parc Haut Brion",44.812808,-0.613826,33318,0,OBO:SA:PHBRIO,Europe/Paris,,OBO, +OBO:SP:2792,1,"Anciens Abattoirs",44.817204,-0.605308,33522,0,OBO:SA:ABATT,Europe/Paris,,OBO, +OBO:SP:2796,1,"Antoune",44.795878,-0.648634,33318,0,OBO:SA:CHATAI,Europe/Paris,,OBO, +OBO:SP:2797,1,"Antoune",44.795953,-0.648525,33318,0,OBO:SA:CHATAI,Europe/Paris,,OBO, +OBO:SP:2798,1,"Charles Péguy",44.807412,-0.657435,33318,0,OBO:SA:CPEGY,Europe/Paris,,OBO, +OBO:SP:2799,1,"Le Trinquet",44.802724,-0.664308,33318,0,OBO:SA:ANDER,Europe/Paris,,OBO, +OBO:SP:2800,1,"Le Trinquet",44.802684,-0.664419,33318,0,OBO:SA:ANDER,Europe/Paris,,OBO, +OBO:SP:2802,1,"Fanning Lafontaine",44.808302,-0.61327,33318,0,OBO:SA:FANNIN,Europe/Paris,,OBO, +OBO:SP:2804,1,"Corneille",44.804182,-0.622424,33318,0,OBO:SA:CORNEI,Europe/Paris,,OBO, +OBO:SP:2807,1,"Les Tulipes",44.789372,-0.63515,33318,0,OBO:SA:TULIPE,Europe/Paris,,OBO, +OBO:SP:2808,1,"Arago (Médiathèque)",44.797777,-0.644605,33318,0,OBO:SA:ARAG45,Europe/Paris,,OBO, +OBO:SP:2809,1,"Fauvettes",44.791027,-0.700339,33318,0,OBO:SA:FAUVET,Europe/Paris,,OBO, +OBO:SP:281,1,"Fauré",44.8166,-0.61859,33318,0,OBO:SA:FAUR47,Europe/Paris,,OBO, +OBO:SP:2810,1,"Orée du Bois",44.788872,-0.696312,33318,0,OBO:SA:OREEBS,Europe/Paris,,OBO, +OBO:SP:2811,1,"Fauvettes",44.791573,-0.700995,33318,0,OBO:SA:FAUVET,Europe/Paris,,OBO, +OBO:SP:2812,1,"AFPA Pessac",44.790237,-0.649951,33318,0,OBO:SA:AFPA,Europe/Paris,,OBO, +OBO:SP:2813,1,"Magonty",44.79308,-0.703082,33318,0,OBO:SA:MAGON,Europe/Paris,,OBO, +OBO:SP:2814,1,"Archimède",44.786263,-0.6442,33318,0,OBO:SA:ARMED,Europe/Paris,,OBO, +OBO:SP:2815,1,"Madran",44.805046,-0.657307,33318,0,OBO:SA:MADRAN,Europe/Paris,,OBO, +OBO:SP:2816,1,"La Forge (Cité Le Corbusier)",44.801826,-0.645349,33318,0,OBO:SA:FORGE,Europe/Paris,,OBO, +OBO:SP:2817,1,"Boulevard du Haut Livrac",44.798016,-0.673381,33318,0,OBO:SA:BHALIV,Europe/Paris,,OBO, +OBO:SP:2818,1,"Orée du Bois",44.788649,-0.695436,33318,0,OBO:SA:OREEBS,Europe/Paris,,OBO, +OBO:SP:2819,1,"Dauphiné",44.786461,-0.692939,33318,0,OBO:SA:DAUPHI,Europe/Paris,,OBO, +OBO:SP:2820,1,"Blayais",44.768286,-0.719478,33318,0,OBO:SA:BLAYAI,Europe/Paris,,OBO, +OBO:SP:2821,1,"Stade Cap de Bos",44.788466,-0.682515,33318,0,OBO:SA:STCPBO,Europe/Paris,,OBO, +OBO:SP:2823,1,"Yvan Bric",44.947835,-0.600082,33312,0,OBO:SA:YVBRIC,Europe/Paris,,OBO, +OBO:SP:2824,1,"Boulevard du Haut Livrac",44.798037,-0.673294,33318,0,OBO:SA:BHALIV,Europe/Paris,,OBO, +OBO:SP:2825,1,"La Forge (Cité Le Corbusier)",44.801947,-0.645496,33318,0,OBO:SA:FORGE,Europe/Paris,,OBO, +OBO:SP:2826,1,"Arago (Médiathèque)",44.797703,-0.645462,33318,0,OBO:SA:ARAG45,Europe/Paris,,OBO, +OBO:SP:2827,1,"Macédo",44.800144,-0.668748,33318,0,OBO:SA:MACED,Europe/Paris,,OBO, +OBO:SP:2829,1,"Carsat",44.895317,-0.553067,33063,0,OBO:SA:ASSED,Europe/Paris,,OBO, +OBO:SP:283,1,"Tartifume",44.791584,-0.709287,33318,0,OBO:SA:TARTIF,Europe/Paris,,OBO, +OBO:SP:2830,1,"Jeanne d'Arc",44.823821,-0.591929,33063,0,OBO:SA:JEADAR,Europe/Paris,,OBO, +OBO:SP:2833,1,"Centre Commercial du Lac",44.88162,-0.567614,33063,0,OBO:SA:CCO31,Europe/Paris,,OBO, +OBO:SP:2836,1,"Centre Commercial (4 Pavillons)",44.867807,-0.519515,33249,0,OBO:SA:CENTR,Europe/Paris,,OBO, +OBO:SP:2838,1,"Libre Service de Gros",44.890681,-0.548374,33063,0,OBO:SA:BAOUR,Europe/Paris,,OBO, +OBO:SP:284,1,"Pérès",44.85982,-0.608527,33063,0,OBO:SA:PERES,Europe/Paris,,OBO, +OBO:SP:2840,1,"Eiffel",44.786209,-0.638692,33318,0,OBO:SA:EIFFE,Europe/Paris,,OBO, +OBO:SP:2843,1,"Corneille",44.804153,-0.623029,33318,0,OBO:SA:CORNEI,Europe/Paris,,OBO, +OBO:SP:2844,1,"Le Chiquet",44.803781,-0.620613,33318,0,OBO:SA:CHIQUE,Europe/Paris,,OBO, +OBO:SP:2845,1,"Phénix Haut Brion",44.808073,-0.615888,33318,0,OBO:SA:PHENIX,Europe/Paris,,OBO, +OBO:SP:2846,1,"Fanning Lafontaine",44.808276,-0.613256,33318,0,OBO:SA:FANNIN,Europe/Paris,,OBO, +OBO:SP:2847,1,"La Médoquine",44.819144,-0.598886,33063,0,OBO:SA:MEDOQ,Europe/Paris,,OBO, +OBO:SP:2848,1,"Gare Routière (av du Gal de Gaulle)",44.896822,-0.721954,33449,0,OBO:SA:GROUTE,Europe/Paris,,OBO, +OBO:SP:2849,1,"Bersol",44.776141,-0.643405,33192,0,OBO:SA:BERSO,Europe/Paris,,OBO, +OBO:SP:285,1,"Les Iris",44.758827,-0.58292,33550,0,OBO:SA:CARN21,Europe/Paris,,OBO, +OBO:SP:2850,1,"Bretagne",44.795037,-0.68249,33318,0,OBO:SA:BRETA,Europe/Paris,,OBO, +OBO:SP:2851,1,"Bellevue",44.791392,-0.650457,33318,0,OBO:SA:BELLEV,Europe/Paris,,OBO, +OBO:SP:2852,1,"Cap de Bos (côté Centre Commercial)",44.792655,-0.681207,33318,0,OBO:SA:CABOS,Europe/Paris,,OBO, +OBO:SP:2853,1,"Lot. Les Platanes",44.812328,-0.644727,33318,0,OBO:SA:LPLATA,Europe/Paris,,OBO, +OBO:SP:2854,1,"André Eustache",44.811928,-0.640193,33318,0,OBO:SA:EUSTA,Europe/Paris,,OBO, +OBO:SP:2855,1,"Lot. Les Platanes",44.812272,-0.645065,33318,0,OBO:SA:LPLATA,Europe/Paris,,OBO, +OBO:SP:2856,1,"Les Menhirs",44.811472,-0.650217,33318,0,OBO:SA:MENHIR,Europe/Paris,,OBO, +OBO:SP:286,1,"Docteur Bert",44.856289,-0.628904,33063,0,OBO:SA:BERT,Europe/Paris,,OBO, +OBO:SP:2865,1,"Monge",44.776085,-0.657409,33318,0,OBO:SA:MONGE,Europe/Paris,,OBO, +OBO:SP:2868,1,"Ecole d'Architecture",44.79227,-0.60548,33192,0,OBO:SA:ARCHI,Europe/Paris,,OBO, +OBO:SP:2869,1,"Escarraguel (rue Cézanne)",45.008923,-0.528985,33004,0,OBO:SA:PESCAR,Europe/Paris,,OBO, +OBO:SP:2871,1,"France Alouette",44.798266,-0.663119,33318,0,OBX:SA:TALOU,Europe/Paris,,OBO, +OBO:SP:2873,1,"Gare de Pessac Alouette",44.793376,-0.657547,33318,0,OBX:SA:PESGAR,Europe/Paris,,OBO, +OBO:SP:2875,1,"Gare de Pessac Alouette",44.793185,-0.657598,33318,0,OBX:SA:PESGAR,Europe/Paris,,OBO, +OBO:SP:2877,1,"Résistance",44.792708,-0.705842,33318,0,OBO:SA:RESIST,Europe/Paris,,OBO, +OBO:SP:2879,1,"Les Bois de l'Alouette",44.797293,-0.688929,33318,0,OBO:SA:BALOUE,Europe/Paris,,OBO, +OBO:SP:288,1,"Vergne",44.89562,-0.562178,33063,0,OBO:SA:VERGN,Europe/Paris,,OBO, +OBO:SP:2880,1,"Serpent",44.791797,-0.632928,33318,0,OBO:SA:SERPE,Europe/Paris,,OBO, +OBO:SP:2881,1,"France Alouette",44.797908,-0.662779,33318,0,OBX:SA:TALOU,Europe/Paris,,OBO, +OBO:SP:2882,1,"Lyautey",44.793494,-0.631481,33318,0,OBO:SA:LYAUTE,Europe/Paris,,OBO, +OBO:SP:2883,1,"Résistance",44.793038,-0.704623,33318,0,OBO:SA:RESIST,Europe/Paris,,OBO, +OBO:SP:2884,1,"Le Trinquet",44.801903,-0.66352,33318,0,OBO:SA:ANDER,Europe/Paris,,OBO, +OBO:SP:2885,1,"Pauge",44.757552,-0.575527,33550,0,OBO:SA:PAUGE,Europe/Paris,,OBO, +OBO:SP:2886,1,"Rameau",44.759331,-0.573174,33550,0,OBO:SA:COUHIN,Europe/Paris,,OBO, +OBO:SP:2888,1,"Villenave Bourg",44.771211,-0.543932,33550,0,OBO:SA:VBOURG,Europe/Paris,,OBO, +OBO:SP:2894,1,"Croix de Monjous",44.776785,-0.593883,33192,0,OBO:SA:CMONJ,Europe/Paris,,OBO, +OBO:SP:2895,1,"Maréchal Gallieni",44.81818,-0.601901,33063,0,OBO:SA:GALI41,Europe/Paris,,OBO, +OBO:SP:2897,1,"Auriol",44.762373,-0.581678,33550,0,OBO:SA:AURIO,Europe/Paris,,OBO, +OBO:SP:2899,1,"Rigaillou",44.757662,-0.582706,33550,0,OBO:SA:RIGAI,Europe/Paris,,OBO, +OBO:SP:290,1,"Durandeau",44.957873,-0.512835,33003,0,OBO:SA:DURDEA,Europe/Paris,,OBO, +OBO:SP:2900,1,"Les Escarrets",44.900318,-0.721996,33449,0,OBO:SA:ESCAR,Europe/Paris,,OBO, +OBO:SP:2901,1,"Les Finances",44.76493,-0.553479,33550,0,OBO:SA:FINAN,Europe/Paris,,OBO, +OBO:SP:2902,1,"Escarraguel (Pl Escarraguel)",45.008989,-0.528316,33004,0,OBO:SA:PESCAR,Europe/Paris,,OBO, +OBO:SP:2904,1,"Calixte Camelle",44.863699,-0.581708,33063,0,OBO:SA:CALIXT,Europe/Paris,,OBO, +OBO:SP:2905,1,"Bénédigues",44.799143,-0.583352,33522,0,OBO:SA:BENEDI,Europe/Paris,,OBO, +OBO:SP:2906,1,"Pins-Francs",44.858438,-0.624101,33063,0,OBO:SA:PFRANC,Europe/Paris,,OBO, +OBO:SP:2907,1,"Le Haillan Centre",44.873831,-0.677559,33200,0,OBO:SA:HAICEN,Europe/Paris,,OBO, +OBO:SP:2908,1,"Cage Verte",44.859136,-0.629506,33063,0,OBO:SA:CVERTE,Europe/Paris,,OBO, +OBO:SP:291,1,"Cazanove",44.821033,-0.693806,33281,0,OBO:SA:CAZANO,Europe/Paris,,OBO, +OBO:SP:2910,1,"8 Mai 1945",44.864854,-0.638456,33162,0,OBO:SA:MAI36,Europe/Paris,,OBO, +OBO:SP:2912,1,"Hontane",44.915279,-0.677132,33519,0,OBO:SA:HOTA,Europe/Paris,,OBO, +OBO:SP:292,1,"Etangs",44.831708,-0.537251,33167,0,OBO:SA:ETANG,Europe/Paris,,OBO, +OBO:SP:2920,1,"Desmaison",44.869219,-0.609398,33069,0,OBO:SA:DESMAI,Europe/Paris,,OBO, +OBO:SP:2921,1,"Desmaison",44.869187,-0.609839,33069,0,OBO:SA:DESMAI,Europe/Paris,,OBO, +OBO:SP:2924,1,"Anatole France",44.870066,-0.61162,33069,0,OBO:SA:ANFRAN,Europe/Paris,,OBO, +OBO:SP:2925,1,"Anatole France",44.870347,-0.61269,33069,0,OBO:SA:ANFRAN,Europe/Paris,,OBO, +OBO:SP:2926,1,"Hôpital Suburbain",44.867028,-0.618293,33069,0,OBO:SA:DELAYE,Europe/Paris,,OBO, +OBO:SP:2929,1,"Général de Gaulle",44.874735,-0.619082,33075,0,OBO:SA:GGA36,Europe/Paris,,OBO, +OBO:SP:293,1,"Radio",44.78529,-0.68261,33318,0,OBO:SA:RADIO,Europe/Paris,,OBO, +OBO:SP:2930,1,"Général de Gaulle",44.874652,-0.61914,33069,0,OBO:SA:GGA36,Europe/Paris,,OBO, +OBO:SP:2931,1,"Tour de Gassies",44.881045,-0.628705,33162,0,OBO:SA:TGASSI,Europe/Paris,,OBO, +OBO:SP:2935,1,"Collège Albert Camus (av de Picot)",44.882345,-0.645409,33162,0,OBO:SA:ACAMUS,Europe/Paris,,OBO, +OBO:SP:294,1,"Le Dôme",44.792365,-0.59145,33522,0,OBO:SA:THOUAS,Europe/Paris,,OBO, +OBO:SP:2940,1,"La Boyauderie",44.894302,-0.669328,33200,0,OBO:SA:BOYAU,Europe/Paris,,OBO, +OBO:SP:2942,1,"Avenue de la Boétie",44.909638,-0.67165,33519,0,OBO:SA:ABOETI,Europe/Paris,,OBO, +OBO:SP:2943,1,"Taillan Cimetière",44.910166,-0.6753,33519,0,OBO:SA:TCIME,Europe/Paris,,OBO, +OBO:SP:2944,1,"Bois des Ormes",44.910308,-0.676983,33519,0,OBO:SA:ORMES,Europe/Paris,,OBO, +OBO:SP:2945,1,"Aéroport Terminus",44.830422,-0.701175,33281,0,OBO:SA:AEROG,Europe/Paris,,OBO, +OBO:SP:2946,1,"Molière",44.904373,-0.700197,33519,0,OBO:SA:MOLIER,Europe/Paris,,OBO, +OBO:SP:2947,1,"La Boétie",44.903013,-0.700969,33519,0,OBO:SA:BOETIE,Europe/Paris,,OBO, +OBO:SP:2948,1,"Le Burck",44.814502,-0.634801,33281,0,OBO:SA:BURCK,Europe/Paris,,OBO, +OBO:SP:2949,1,"Mairie de Saint Médard",44.896498,-0.717912,33449,0,OBO:SA:MSMED,Europe/Paris,,OBO, +OBO:SP:2950,1,"Libération",44.880795,-0.651723,33162,0,OBO:SA:LIBE52,Europe/Paris,,OBO, +OBO:SP:2951,1,"Sirtema Terminus",44.883452,-0.655078,33162,0,OBO:SA:AVTAI3,Europe/Paris,,OBO, +OBO:SP:2952,1,"Sirtema",44.882942,-0.654956,33162,0,OBO:SA:AVTAI3,Europe/Paris,,OBO, +OBO:SP:2953,1,"Cimetière d’Eysines",44.884716,-0.656086,33162,0,OBO:SA:CIMEYS,Europe/Paris,,OBO, +OBO:SP:2954,1,"Le Vigean (Centre Commercial)",44.882825,-0.631051,33162,0,OBO:SA:VIGEAN,Europe/Paris,,OBO, +OBO:SP:2955,1,"Le Vigean (Centre Commercial)",44.882999,-0.631532,33162,0,OBO:SA:VIGEAN,Europe/Paris,,OBO, +OBO:SP:2956,1,"Route de Pauillac",44.884458,-0.634872,33162,0,OBO:SA:RPAUIL,Europe/Paris,,OBO, +OBO:SP:2957,1,"Route de Pauillac",44.883898,-0.633783,33162,0,OBO:SA:RPAUIL,Europe/Paris,,OBO, +OBO:SP:2958,1,"Cap de Haut",44.886235,-0.636749,33162,0,OBO:SA:CPHAUT,Europe/Paris,,OBO, +OBO:SP:2959,1,"Cap de Haut",44.885365,-0.636604,33162,0,OBO:SA:CPHAUT,Europe/Paris,,OBO, +OBO:SP:296,1,"Pagneau",44.814128,-0.700317,33281,0,OBO:SA:PAGNE,Europe/Paris,,OBO, +OBO:SP:2960,1,"Horizons Bleus",44.888219,-0.637271,33162,0,OBO:SA:HBLEUS,Europe/Paris,,OBO, +OBO:SP:2961,1,"Horizons Bleus",44.888641,-0.637311,33162,0,OBO:SA:HBLEUS,Europe/Paris,,OBO, +OBO:SP:2962,1,"Frères Lumière",44.890605,-0.637869,33162,0,OBO:SA:FLUMIE,Europe/Paris,,OBO, +OBO:SP:2963,1,"Les Jalles",44.895651,-0.639021,33056,0,OBO:SA:JALLES,Europe/Paris,,OBO, +OBO:SP:2964,1,"Parc de Majolan",44.899199,-0.639936,33056,0,OBO:SA:PMAJOL,Europe/Paris,,OBO, +OBO:SP:2965,1,"Pericot",44.903247,-0.744778,33449,0,OBO:SA:PERICO,Europe/Paris,,OBO, +OBO:SP:2966,1,"Montesquieu",44.906852,-0.639634,33056,0,OBO:SA:MONT37,Europe/Paris,,OBO, +OBO:SP:2967,1,"Lycée St-Michel",44.91069,-0.637498,33056,0,OBO:SA:GAM37,Europe/Paris,,OBO, +OBO:SP:297,1,"Lewis Brown",44.863246,-0.561061,33063,0,OBO:SA:LBROW,Europe/Paris,,OBO, +OBO:SP:2972,1,"Rue de Caudéran",44.846503,-0.597574,33063,0,OBO:SA:CAUDE,Europe/Paris,,OBO, +OBO:SP:2973,1,"Barrière Saint Médard",44.848453,-0.598054,33063,0,OBO:SA:BSMED,Europe/Paris,,OBO, +OBO:SP:2974,1,"14 Juillet",44.847797,-0.602155,33063,0,OBO:SA:14JUI,Europe/Paris,,OBO, +OBO:SP:2975,1,"Grand-Lebrun",44.851036,-0.606772,33063,0,OBO:SA:LBRUN,Europe/Paris,,OBO, +OBO:SP:2976,1,"Grand-Lebrun",44.850125,-0.605117,33063,0,OBO:SA:LBRUN,Europe/Paris,,OBO, +OBO:SP:2977,1,"Saint Amand",44.85532,-0.614409,33063,0,OBO:SA:STAMA,Europe/Paris,,OBO, +OBO:SP:2978,1,"Pins-Francs",44.858072,-0.622899,33063,0,OBO:SA:PFRANC,Europe/Paris,,OBO, +OBO:SP:2979,1,"Parc d'échange du Caillou",44.860309,-0.634968,33063,0,OBO:SA:PCAILL,Europe/Paris,,OBO, +OBO:SP:2980,1,"Parc d'échange du Caillou",44.860128,-0.634436,33063,0,OBO:SA:PCAILL,Europe/Paris,,OBO, +OBO:SP:2982,1,"Le Grand Louis",44.861106,-0.64171,33281,0,OBO:SA:GLOUIS,Europe/Paris,,OBO, +OBO:SP:2983,1,"8 Mai 1945",44.865559,-0.638413,33162,0,OBO:SA:MAI36,Europe/Paris,,OBO, +OBO:SP:2987,1,"Coubertin",44.862339,-0.645326,33162,0,OBO:SA:COUBER,Europe/Paris,,OBO, +OBO:SP:2988,1,"Coubertin",44.862,-0.644683,33281,0,OBO:SA:COUBER,Europe/Paris,,OBO, +OBO:SP:2989,1,"Antoune",44.86293,-0.654768,33162,0,OBO:SA:ANTOUN,Europe/Paris,,OBO, +OBO:SP:299,1,"Place Mondésir",44.838547,-0.616926,33063,0,OBO:SA:MONDES,Europe/Paris,,OBO, +OBO:SP:2990,1,"Tilleuls",44.863602,-0.65817,33162,0,OBO:SA:TILLEU,Europe/Paris,,OBO, +OBO:SP:2991,1,"Guynemer",44.863876,-0.66052,33162,0,OBO:SA:GUYNE,Europe/Paris,,OBO, +OBO:SP:2993,1,"La Poudrerie",44.871166,-0.733891,33449,0,OBO:SA:SNPE,Europe/Paris,,OBO, +OBO:SP:2994,1,"Résidence Rostand",44.862274,-0.669451,33200,0,OBO:SA:RROSTA,Europe/Paris,,OBO, +OBO:SP:2995,1,"Résidence Rostand",44.862056,-0.669222,33200,0,OBO:SA:RROSTA,Europe/Paris,,OBO, +OBO:SP:2997,1,"Maréchal Foch",44.855151,-0.533787,33119,0,OBO:SA:MFOCH2,Europe/Paris,,OBO, +OBO:SP:2998,1,"Collège Emile Zola",44.869358,-0.672994,33200,0,OBO:SA:CEZOLA,Europe/Paris,,OBO, +OBO:SP:2999,1,"Le Haillan Centre",44.873796,-0.677531,33200,0,OBO:SA:HAICEN,Europe/Paris,,OBO, +OBO:SP:30,1,"Bobet",44.783007,-0.593231,33192,0,OBO:SA:BOBET,Europe/Paris,,OBO, +OBO:SP:300,1,"Hôpital Pellegrin (Grand Maurian)",44.83102,-0.605068,33063,0,OBO:SA:GMAURI,Europe/Paris,,OBO, +OBO:SP:3000,1,"Clemenceau",44.876171,-0.677129,33200,0,OBO:SA:CLEM52,Europe/Paris,,OBO, +OBO:SP:3001,1,"La Sablière",44.885385,-0.675121,33200,0,OBO:SA:SABLIE,Europe/Paris,,OBO, +OBO:SP:3002,1,"Parc Ste Christine",44.886766,-0.681044,33200,0,OBO:SA:THAILL,Europe/Paris,,OBO, +OBO:SP:3003,1,"Palais des Congrès",44.889516,-0.566722,33063,0,OBX:SA:PCONGR,Europe/Paris,,OBO, +OBO:SP:3004,1,"Centre Commercial du Lac",44.881444,-0.567743,33063,0,OBO:SA:CCO31,Europe/Paris,,OBO, +OBO:SP:3005,1,"Berges du Lac",44.878951,-0.568472,33063,0,OBO:SA:JOURN,Europe/Paris,,OBO, +OBO:SP:3006,1,"Les Aubiers",44.87413,-0.57435,33063,0,OBO:SA:BOUTA,Europe/Paris,,OBO, +OBO:SP:3007,1,"Place Ravezies (côté Parc Relais)",44.866552,-0.575971,33069,0,OBX:SA:RAVESI,Europe/Paris,,OBO, +OBO:SP:3015,1,"Cimetière de Lormont",44.878246,-0.520855,33249,0,OBO:SA:CIMLOR,Europe/Paris,,OBO, +OBO:SP:3017,1,"Maréchal Foch",44.855192,-0.534182,33119,0,OBO:SA:MFOCH2,Europe/Paris,,OBO, +OBO:SP:3025,1,"Parc Bordelais",44.849596,-0.6017,33063,0,OBO:SA:PBORD,Europe/Paris,,OBO, +OBO:SP:3026,1,"Cage Verte",44.858936,-0.628999,33063,0,OBO:SA:CVERTE,Europe/Paris,,OBO, +OBO:SP:3027,1,"Résidence Chanteclerc",44.867004,-0.668417,33200,0,OBO:SA:RCHANT,Europe/Paris,,OBO, +OBO:SP:3028,1,"Enseirb",44.806384,-0.607399,33318,0,OBO:SA:ENSER,Europe/Paris,,OBO, +OBO:SP:3029,1,"Enseirb",44.806195,-0.607399,33318,0,OBO:SA:ENSER,Europe/Paris,,OBO, +OBO:SP:303,1,"Rue de la Paix",44.850897,-0.52275,33119,0,OBO:SA:RPAIX2,Europe/Paris,,OBO, +OBO:SP:3030,1,"Rue du Stade",44.875454,-0.679427,33200,0,OBO:SA:RSTADE,Europe/Paris,,OBO, +OBO:SP:3031,1,"Rue du Médoc (av Pasteur)",44.877877,-0.68112,33200,0,OBO:SA:RMEDOC,Europe/Paris,,OBO, +OBO:SP:3032,1,"Herriot (Centre Commercial)",44.883983,-0.690763,33449,0,OBO:SA:CHERIO,Europe/Paris,,OBO, +OBO:SP:3033,1,"Herriot (Centre Commercial)",44.884323,-0.691128,33449,0,OBO:SA:CHERIO,Europe/Paris,,OBO, +OBO:SP:3034,1,"Lamartine",44.886424,-0.694334,33449,0,OBO:SA:LMARTI,Europe/Paris,,OBO, +OBO:SP:3035,1,"Château Gajac",44.88713,-0.697753,33449,0,OBO:SA:CGAJA,Europe/Paris,,OBO, +OBO:SP:3036,1,"Château Gajac",44.88722,-0.698051,33449,0,OBO:SA:CGAJA,Europe/Paris,,OBO, +OBO:SP:3037,1,"Gadret",44.888161,-0.702259,33449,0,OBO:SA:GADRET,Europe/Paris,,OBO, +OBO:SP:3038,1,"Gadret",44.888243,-0.702771,33449,0,OBO:SA:GADRET,Europe/Paris,,OBO, +OBO:SP:3039,1,"Moulin de Gajac",44.88943,-0.70583,33449,0,OBO:SA:MGAJA,Europe/Paris,,OBO, +OBO:SP:3040,1,"Moulin de Gajac",44.889811,-0.706286,33449,0,OBO:SA:MGAJA,Europe/Paris,,OBO, +OBO:SP:3041,1,"Route de Corbiac",44.891915,-0.709417,33449,0,OBO:SA:RCORB,Europe/Paris,,OBO, +OBO:SP:3042,1,"Route de Corbiac",44.891987,-0.709422,33449,0,OBO:SA:RCORB,Europe/Paris,,OBO, +OBO:SP:3043,1,"République",44.894931,-0.713573,33449,0,OBO:SA:PREPUB,Europe/Paris,,OBO, +OBO:SP:3044,1,"République",44.895034,-0.714252,33449,0,OBO:SA:PREPUB,Europe/Paris,,OBO, +OBO:SP:3045,1,"Eglise de St Médard",44.895455,-0.718376,33449,0,OBO:SA:EGSME,Europe/Paris,,OBO, +OBO:SP:3046,1,"Eglise de St Médard",44.895488,-0.718467,33449,0,OBO:SA:EGSME,Europe/Paris,,OBO, +OBO:SP:3047,1,"Le Club des Pins",44.902235,-0.738192,33449,0,OBO:SA:CLUBPI,Europe/Paris,,OBO, +OBO:SP:3048,1,"Le Club des Pins",44.901908,-0.737181,33449,0,OBO:SA:CLUBPI,Europe/Paris,,OBO, +OBO:SP:3049,1,"Collège d'Hastignan (devant le Collège)",44.893766,-0.745286,33449,0,OBO:SA:COLHAS,Europe/Paris,,OBO, +OBO:SP:305,1,"Delacroix",45.00991,-0.530814,33004,0,OBO:SA:DELACR,Europe/Paris,,OBO, +OBO:SP:3050,1,"Collège d'Hastignan (face au Collège)",44.893804,-0.745492,33449,0,OBO:SA:COLHAS,Europe/Paris,,OBO, +OBO:SP:3051,1,"Espace Aquatique (devant la Piscine)",44.893995,-0.75026,33449,0,OBO:SA:AQUA,Europe/Paris,,OBO, +OBO:SP:3052,1,"Espace Aquatique (face à la Piscine)",44.894076,-0.750798,33449,0,OBO:SA:AQUA,Europe/Paris,,OBO, +OBO:SP:3053,1,"Village de Cerillan",44.894542,-0.757791,33449,0,OBO:SA:VCERIL,Europe/Paris,,OBO, +OBO:SP:3054,1,"Village de Cerillan",44.894327,-0.758816,33449,0,OBO:SA:VCERIL,Europe/Paris,,OBO, +OBO:SP:3056,1,"Village d'Issac",44.895606,-0.772674,33449,0,OBO:SA:VISSAC,Europe/Paris,,OBO, +OBO:SP:3057,1,"Village d'Issac",44.895775,-0.773522,33449,0,OBO:SA:VISSAC,Europe/Paris,,OBO, +OBO:SP:3058,1,"Malterre",44.89622,-0.777927,33449,0,OBO:SA:MALTER,Europe/Paris,,OBO, +OBO:SP:3059,1,"Mairie de Saint Médard",44.89588,-0.717808,33449,0,OBO:SA:MSMED,Europe/Paris,,OBO, +OBO:SP:3061,1,"Gadret",44.88751,-0.704219,33449,0,OBO:SA:GADRET,Europe/Paris,,OBO, +OBO:SP:3062,1,"Gadret",44.88729,-0.704306,33449,0,OBO:SA:GADRET,Europe/Paris,,OBO, +OBO:SP:3063,1,"Issac",44.896993,-0.781175,33449,0,OBO:SA:TISSAC,Europe/Paris,,OBO, +OBO:SP:3066,1,"Eglise de Saint Aubin",44.911913,-0.724858,33376,0,OBO:SA:MSAUBI,Europe/Paris,,OBO, +OBO:SP:3068,1,"Joli Bois",44.915793,-0.722033,33376,0,OBO:SA:JBOIS,Europe/Paris,,OBO, +OBO:SP:3069,1,"Résidence Coppélia",44.804681,-0.582654,33522,0,OBO:SA:LAFO40,Europe/Paris,,OBO, +OBO:SP:3071,1,"Route de Picot",44.918418,-0.734602,33376,0,OBO:SA:RPICOT,Europe/Paris,,OBO, +OBO:SP:3073,1,"Saint Aubin Cimetière",44.912875,-0.733243,33376,0,OBO:SA:SAUBIN,Europe/Paris,,OBO, +OBO:SP:3074,1,"Place du Mayne",44.873252,-0.682528,33200,0,OBO:SA:PMAYN,Europe/Paris,,OBO, +OBO:SP:3075,1,"Allée du Nord",44.914318,-0.742587,33376,0,OBO:SA:ANORD,Europe/Paris,,OBO, +OBO:SP:3076,1,"Mayne d'Estève",44.925053,-0.753023,33376,0,OBO:SA:MAESTE,Europe/Paris,,OBO, +OBO:SP:3077,1,"Pinsoles",44.935194,-0.7586,33376,0,OBO:SA:TPINSO,Europe/Paris,,OBO, +OBO:SP:3078,1,"Place du Mayne",44.873617,-0.683477,33200,0,OBO:SA:PMAYN,Europe/Paris,,OBO, +OBO:SP:3079,1,"Le Bichou",44.917855,-0.744079,33376,0,OBO:SA:BICHOU,Europe/Paris,,OBO, +OBO:SP:3080,1,"Allée du Nord",44.91398,-0.741651,33376,0,OBO:SA:ANORD,Europe/Paris,,OBO, +OBO:SP:3081,1,"Jean Jaurès (av. République)",44.871873,-0.678445,33200,0,OBO:SA:RJAURE,Europe/Paris,,OBO, +OBO:SP:3082,1,"Mayne d'Estève",44.925328,-0.753422,33376,0,OBO:SA:MAESTE,Europe/Paris,,OBO, +OBO:SP:3083,1,"Jean Jaurès (av. République)",44.872216,-0.679519,33200,0,OBO:SA:RJAURE,Europe/Paris,,OBO, +OBO:SP:3085,1,"Allée des Bécasses",44.931898,-0.759838,33376,0,OBO:SA:BECASS,Europe/Paris,,OBO, +OBO:SP:3086,1,"Le Bichou",44.918156,-0.743173,33376,0,OBO:SA:BICHOU,Europe/Paris,,OBO, +OBO:SP:3087,1,"Allée des Bécasses",44.931565,-0.760095,33376,0,OBO:SA:BECASS,Europe/Paris,,OBO, +OBO:SP:3088,1,"Clairière de Mingot",44.873806,-0.704582,33449,0,OBO:SA:MINGOT,Europe/Paris,,OBO, +OBO:SP:3089,1,"Goujon",44.871306,-0.707662,33449,0,OBO:SA:GOUJO,Europe/Paris,,OBO, +OBO:SP:309,1,"Mozart",44.812219,-0.61613,33318,0,OBO:SA:MOZ45,Europe/Paris,,OBO, +OBO:SP:3090,1,"Avenue de Capeyron",44.867293,-0.71016,33449,0,OBO:SA:ACAPE,Europe/Paris,,OBO, +OBO:SP:3091,1,"Avenue de Capeyron",44.867282,-0.710222,33449,0,OBO:SA:ACAPE,Europe/Paris,,OBO, +OBO:SP:3092,1,"Village de Magudas",44.864881,-0.728314,33449,0,OBO:SA:VMAGUD,Europe/Paris,,OBO, +OBO:SP:3094,1,"Allée Vieille",44.878915,-0.736371,33449,0,OBO:SA:AVIEIL,Europe/Paris,,OBO, +OBO:SP:3095,1,"Moulin de Caupian",44.882555,-0.739606,33449,0,OBO:SA:MOCAUP,Europe/Paris,,OBO, +OBO:SP:3097,1,"Capeyron",44.851516,-0.645003,33281,0,OBO:SA:CAPEYR,Europe/Paris,,OBO, +OBO:SP:3098,1,"Tandonnet",44.817045,-0.546546,33039,0,OBO:SA:TANDO,Europe/Paris,,OBO, +OBO:SP:31,1,"Gare Routière (av du Gal de Gaulle)",44.896636,-0.721865,33449,0,OBO:SA:GROUTE,Europe/Paris,,OBO, +OBO:SP:310,1,"Berthelot",44.8562,-0.571092,33063,0,OBO:SA:BERT01,Europe/Paris,,OBO, +OBO:SP:3101,1,"Lafitte",44.799274,-0.584879,33522,0,OBO:SA:LAFIT,Europe/Paris,,OBO, +OBO:SP:3104,1,"Collège Les Eyquems",44.827875,-0.645571,33281,0,OBO:SA:EYQUEM,Europe/Paris,,OBO, +OBO:SP:3107,1,"Résidence Beausite",44.83019,-0.648077,33281,0,OBO:SA:RBEAU,Europe/Paris,,OBO, +OBO:SP:3108,1,"Résidence Beausite",44.830062,-0.64812,33281,0,OBO:SA:RBEAU,Europe/Paris,,OBO, +OBO:SP:3111,1,"Avenue du Truc",44.843952,-0.645361,33281,0,OBO:SA:TRUC,Europe/Paris,,OBO, +OBO:SP:3112,1,"Allée de la Prairie",44.848085,-0.643818,33281,0,OBO:SA:PRAIRI,Europe/Paris,,OBO, +OBO:SP:3113,1,"Jean Blanc",44.85425,-0.644383,33281,0,OBO:SA:JBLAN,Europe/Paris,,OBO, +OBO:SP:3114,1,"Jean Blanc",44.85441,-0.644444,33281,0,OBO:SA:JBLAN,Europe/Paris,,OBO, +OBO:SP:3115,1,"Résidence Coppélia",44.80478,-0.582661,33522,0,OBO:SA:LAFO40,Europe/Paris,,OBO, +OBO:SP:3116,1,"Avenue de l'Europe",44.877458,-0.614884,33075,0,OBO:SA:AVEURO,Europe/Paris,,OBO, +OBO:SP:3117,1,"Avenue de l'Europe",44.87821,-0.613957,33075,0,OBO:SA:AVEURO,Europe/Paris,,OBO, +OBO:SP:3118,1,"Rue du Réduit",44.883401,-0.597582,33075,0,OBO:SA:REDUI,Europe/Paris,,OBO, +OBO:SP:3119,1,"Ducasse",44.883258,-0.593656,33075,0,OBO:SA:DUCASS,Europe/Paris,,OBO, +OBO:SP:312,1,"La Morandière (av de Magudas)",44.858188,-0.678536,33200,0,OBO:SA:MORAND,Europe/Paris,,OBO, +OBO:SP:3120,1,"Ducasse",44.882623,-0.593235,33075,0,OBO:SA:DUCASS,Europe/Paris,,OBO, +OBO:SP:3121,1,"Rue des Ecoles",44.880653,-0.591714,33075,0,OBO:SA:ECO36,Europe/Paris,,OBO, +OBO:SP:3122,1,"Cimetière Nord (devant le Cimetière)",44.875558,-0.590678,33075,0,OBO:SA:CNORD,Europe/Paris,,OBO, +OBO:SP:3123,1,"Lafitte",44.799263,-0.584942,33522,0,OBO:SA:LAFIT,Europe/Paris,,OBO, +OBO:SP:3124,1,"URSSAF",44.875325,-0.579484,33075,0,OBO:SA:URSSAF,Europe/Paris,,OBO, +OBO:SP:3125,1,"Claudeville",44.873894,-0.578303,33075,0,OBO:SA:CLAUDE,Europe/Paris,,OBO, +OBO:SP:3130,1,"Eglise Saint Augustin",44.832453,-0.61086,33063,0,OBO:SA:EGAUGU,Europe/Paris,,OBO, +OBO:SP:3131,1,"La Grappe d'Or",44.83362,-0.617939,33281,0,OBO:SA:GRAPPE,Europe/Paris,,OBO, +OBO:SP:3133,1,"Bir Hakeim",44.831711,-0.625327,33063,0,OBO:SA:BIRHA,Europe/Paris,,OBO, +OBO:SP:3134,1,"Maréchal Gallieni",44.8308,-0.617352,33063,0,OBO:SA:GALIEN,Europe/Paris,,OBO, +OBO:SP:3137,1,"Curie",44.812478,-0.558007,33063,0,OBO:SA:JJBOS,Europe/Paris,,OBO, +OBO:SP:3138,1,"Daguin",44.81287,-0.561792,33063,0,OBO:SA:DAGUI,Europe/Paris,,OBO, +OBO:SP:3139,1,"Barrière de Bègles",44.813263,-0.563032,33063,0,OBO:SA:BBEGL,Europe/Paris,,OBO, +OBO:SP:3140,1,"Vaucouleurs",44.813601,-0.566257,33063,0,OBO:SA:VAUCOU,Europe/Paris,,OBO, +OBO:SP:3141,1,"Barrière de Toulouse (Bd Albert 1er)",44.814546,-0.571901,33063,0,OBO:SA:BTOUL2,Europe/Paris,,OBO, +OBO:SP:3143,1,"Cardinal",44.805317,-0.626016,33318,0,OBO:SA:CARDIN,Europe/Paris,,OBO, +OBO:SP:3144,1,"Socrate",44.809196,-0.66292,33318,0,OBO:SA:SOCRA,Europe/Paris,,OBO, +OBO:SP:3146,1,"Collège Noès",44.812538,-0.636422,33318,0,OBO:SA:CONOES,Europe/Paris,,OBO, +OBO:SP:3149,1,"Vendangeurs",44.867185,-0.478074,33013,0,OBO:SA:VENDAN,Europe/Paris,,OBO, +OBO:SP:315,1,"Place de l'Eglise",44.948593,-0.605601,33312,0,OBO:SA:EGLI58,Europe/Paris,,OBO, +OBO:SP:3152,1,"Grand Parc",44.861181,-0.585463,33063,0,OBX:SA:GPARC,Europe/Paris,,OBO, +OBO:SP:3153,1,"Trébod",44.858853,-0.584985,33063,0,OBO:SA:TREBO,Europe/Paris,,OBO, +OBO:SP:3158,1,"Eglise de Caudéran",44.852364,-0.615536,33063,0,OBO:SA:EGCAU,Europe/Paris,,OBO, +OBO:SP:3159,1,"Stade Stéhélin",44.854205,-0.622915,33063,0,OBO:SA:STEHL,Europe/Paris,,OBO, +OBO:SP:316,1,"François de Sourdis",44.829233,-0.58707,33063,0,OBO:SA:FSOURD,Europe/Paris,,OBO, +OBO:SP:3160,1,"Docteur Bert",44.85638,-0.628884,33063,0,OBO:SA:BERT,Europe/Paris,,OBO, +OBO:SP:3161,1,"Martin",44.85632,-0.639246,33281,0,OBO:SA:MARTI2,Europe/Paris,,OBO, +OBO:SP:3162,1,"Henri Barbusse",44.856332,-0.642731,33281,0,OBO:SA:HBARB,Europe/Paris,,OBO, +OBO:SP:3163,1,"Henri Barbusse",44.856265,-0.642283,33281,0,OBO:SA:HBARB,Europe/Paris,,OBO, +OBO:SP:3164,1,"Strélitzias",44.856439,-0.651798,33281,0,OBO:SA:STREL,Europe/Paris,,OBO, +OBO:SP:3167,1,"Carton",44.856785,-0.631103,33063,0,OBO:SA:CARTO,Europe/Paris,,OBO, +OBO:SP:3168,1,"Stade Stéhélin",44.853902,-0.622541,33063,0,OBO:SA:STEHL,Europe/Paris,,OBO, +OBO:SP:3169,1,"Eglise de Caudéran",44.852193,-0.613865,33063,0,OBO:SA:EGCAU,Europe/Paris,,OBO, +OBO:SP:317,1,"Collège L. Lenoir",44.84055,-0.552426,33063,0,OBO:SA:LENOI,Europe/Paris,,OBO, +OBO:SP:3170,1,"Dauphine",44.851734,-0.611074,33063,0,OBO:SA:DAUPH,Europe/Paris,,OBO, +OBO:SP:3173,1,"Camille Godard",44.855088,-0.574278,33063,0,OBO:SA:CGODAR,Europe/Paris,,OBO, +OBO:SP:3177,1,"Camille Godard",44.855017,-0.575097,33063,0,OBO:SA:CGODAR,Europe/Paris,,OBO, +OBO:SP:3179,1,"Ségur",44.82465,-0.581636,33063,0,OBO:SA:SEGUR,Europe/Paris,,OBO, +OBO:SP:318,1,"Billaudel (rue Malbec)",44.824872,-0.563566,33063,0,OBO:SA:BILLA,Europe/Paris,,OBO, +OBO:SP:3182,1,"Lafontaine",44.826612,-0.569413,33063,0,OBO:SA:LAFONT,Europe/Paris,,OBO, +OBO:SP:3183,1,"Fellonneau",44.811468,-0.563931,33039,0,OBO:SA:FELLO,Europe/Paris,,OBO, +OBO:SP:3184,1,"Thorez Goélands",44.803682,-0.558272,33039,0,OBO:SA:THORE,Europe/Paris,,OBO, +OBO:SP:3187,1,"Collège Pablo Neruda",44.794184,-0.562455,33039,0,OBO:SA:PNERUD,Europe/Paris,,OBO, +OBO:SP:3188,1,"Thorez Goélands",44.804088,-0.558273,33039,0,OBO:SA:THORE,Europe/Paris,,OBO, +OBO:SP:3189,1,"Salengro",44.807317,-0.560161,33039,0,OBO:SA:SALEN,Europe/Paris,,OBO, +OBO:SP:319,1,"Capucins",44.829726,-0.567598,33063,0,OBO:SA:CAPUC,Europe/Paris,,OBO, +OBO:SP:3190,1,"Kyrié",44.823429,-0.570604,33063,0,OBO:SA:KYRIE,Europe/Paris,,OBO, +OBO:SP:3191,1,"Capucins",44.829055,-0.56829,33063,0,OBO:SA:CAPUC,Europe/Paris,,OBO, +OBO:SP:3193,1,"Duhamel",44.792938,-0.562262,33039,0,OBO:SA:DUHAM,Europe/Paris,,OBO, +OBO:SP:3194,1,"Gare de Bègles",44.798108,-0.551958,33039,0,OBO:SA:DORA3,Europe/Paris,,OBO, +OBO:SP:3196,1,"Martyrs de la Résistance",44.807715,-0.559541,33039,0,OBO:SA:MARTYR,Europe/Paris,,OBO, +OBO:SP:3197,1,"Liberté",44.807743,-0.55363,33039,0,OBO:SA:LBERT,Europe/Paris,,OBO, +OBO:SP:3198,1,"Stade Musard",44.807601,-0.551026,33039,0,OBO:SA:CROIZA,Europe/Paris,,OBO, +OBO:SP:3199,1,"Eglise de Bègles (av Jeanne d'Arc)",44.8015,-0.544539,33039,0,OBO:SA:EGBEGL,Europe/Paris,,OBO, +OBO:SP:32,1,"Château Rouquey",44.828015,-0.669745,33281,0,OBO:SA:CHROUQ,Europe/Paris,,OBO, +OBO:SP:320,1,"Serpent",44.791487,-0.633325,33318,0,OBO:SA:SERPE,Europe/Paris,,OBO, +OBO:SP:3200,1,"Mairie de Bègles",44.808606,-0.543,33039,0,OBO:SA:MBEGL,Europe/Paris,,OBO, +OBO:SP:3201,1,"Le Dorat 2",44.798889,-0.54726,33039,0,OBO:SA:DORA2,Europe/Paris,,OBO, +OBO:SP:3202,1,"Parc de Mussonville",44.79389,-0.559829,33039,0,OBX:SA:PMUSS,Europe/Paris,,OBO, +OBO:SP:3203,1,"Gare de Bègles",44.798064,-0.551929,33039,0,OBO:SA:DORA3,Europe/Paris,,OBO, +OBO:SP:3204,1,"Martyrs de la Résistance",44.807666,-0.559955,33039,0,OBO:SA:MARTYR,Europe/Paris,,OBO, +OBO:SP:3205,1,"Pelleport",44.821926,-0.565773,33063,0,OBO:SA:PELLE,Europe/Paris,,OBO, +OBO:SP:3206,1,"Capucins",44.829259,-0.5681,33063,0,OBO:SA:CAPUC,Europe/Paris,,OBO, +OBO:SP:3207,1,"François de Sourdis",44.830576,-0.588473,33063,0,OBO:SA:FSOURD,Europe/Paris,,OBO, +OBO:SP:321,1,"Roux",44.874703,-0.698506,33449,0,OBO:SA:ROUX,Europe/Paris,,OBO, +OBO:SP:3211,1,"Passage à niveau",44.821998,-0.624421,33281,0,OBO:SA:PNIV48,Europe/Paris,,OBO, +OBO:SP:3212,1,"Avenue Gambetta",44.817931,-0.628616,33281,0,OBO:SA:AVGTA,Europe/Paris,,OBO, +OBO:SP:3213,1,"Avenue Gambetta",44.817931,-0.629161,33281,0,OBO:SA:AVGTA,Europe/Paris,,OBO, +OBO:SP:3214,1,"Brémontier",44.815916,-0.634019,33281,0,OBO:SA:BREMON,Europe/Paris,,OBO, +OBO:SP:3215,1,"Aristide Briand",44.824267,-0.624492,33281,0,OBO:SA:ABR48,Europe/Paris,,OBO, +OBO:SP:3216,1,"Galerie des Beaux Arts",44.838788,-0.581715,33063,0,OBO:SA:GBARTS,Europe/Paris,,OBO, +OBO:SP:3217,1,"Pont de Cauderès",44.816789,-0.576386,33522,0,OBO:SA:PCAUDE,Europe/Paris,,OBO, +OBO:SP:3218,1,"Pont de Cauderès",44.816667,-0.576556,33522,0,OBO:SA:PCAUDE,Europe/Paris,,OBO, +OBO:SP:3219,1,"Duplantier",44.814668,-0.58067,33522,0,OBO:SA:DUPLAN,Europe/Paris,,OBO, +OBO:SP:322,1,"Privat",44.824528,-0.59932,33063,0,OBO:SA:PRIVA,Europe/Paris,,OBO, +OBO:SP:3220,1,"Chemin de Suzon",44.811793,-0.582361,33522,0,OBO:SA:CSUZO,Europe/Paris,,OBO, +OBO:SP:3223,1,"Montherlant",44.796856,-0.581345,33522,0,OBO:SA:MONTH,Europe/Paris,,OBO, +OBO:SP:3224,1,"Piscine de Thouars",44.790587,-0.59126,33522,0,OBO:SA:PTHOUA,Europe/Paris,,OBO, +OBO:SP:3225,1,"Piscine de Thouars",44.790459,-0.591315,33522,0,OBO:SA:PTHOUA,Europe/Paris,,OBO, +OBO:SP:3226,1,"Château de Thouars",44.787659,-0.590656,33522,0,OBO:SA:CTHOUA,Europe/Paris,,OBO, +OBO:SP:3227,1,"Château de Thouars",44.787468,-0.590719,33522,0,OBO:SA:CTHOUA,Europe/Paris,,OBO, +OBO:SP:3228,1,"Croix de Monjous",44.776797,-0.593517,33192,0,OBO:SA:CMONJ,Europe/Paris,,OBO, +OBO:SP:3229,1,"Mignonne",44.77534,-0.595638,33192,0,OBO:SA:MIGNO,Europe/Paris,,OBO, +OBO:SP:323,1,"Sévène",44.805197,-0.58037,33522,0,OBO:SA:SEVENE,Europe/Paris,,OBO, +OBO:SP:3230,1,"Collège A. Mauguin",44.773159,-0.596751,33192,0,OBO:SA:MAUGU,Europe/Paris,,OBO, +OBO:SP:3231,1,"Collège A. Mauguin",44.772526,-0.596799,33192,0,OBO:SA:MAUGU,Europe/Paris,,OBO, +OBO:SP:3232,1,"Montfort",44.769192,-0.595675,33192,0,OBO:SA:MONTF,Europe/Paris,,OBO, +OBO:SP:3233,1,"Les Airelles",44.766148,-0.596164,33192,0,OBO:SA:AIREL,Europe/Paris,,OBO, +OBO:SP:3234,1,"Les Stellaires",44.766405,-0.598533,33192,0,OBO:SA:STELL,Europe/Paris,,OBO, +OBO:SP:3235,1,"Les Stellaires",44.766792,-0.598824,33192,0,OBO:SA:STELL,Europe/Paris,,OBO, +OBO:SP:3236,1,"Les Campanules",44.767595,-0.601291,33192,0,OBO:SA:CAMPAN,Europe/Paris,,OBO, +OBO:SP:3237,1,"Les Campanules",44.767698,-0.601728,33192,0,OBO:SA:CAMPAN,Europe/Paris,,OBO, +OBO:SP:3238,1,"Barthès",44.76887,-0.602815,33192,0,OBO:SA:BARTHS,Europe/Paris,,OBO, +OBO:SP:3239,1,"Les Brunelles",44.769952,-0.600848,33192,0,OBO:SA:BRUNEL,Europe/Paris,,OBO, +OBO:SP:3240,1,"Les Brunelles",44.770242,-0.600803,33192,0,OBO:SA:BRUNEL,Europe/Paris,,OBO, +OBO:SP:3241,1,"Moulin de Cazeaux",44.780263,-0.593068,33192,0,OBO:SA:MCAZEA,Europe/Paris,,OBO, +OBO:SP:3242,1,"Collège Ausone",44.871412,-0.59542,33069,0,OBO:SA:COAUSO,Europe/Paris,,OBO, +OBO:SP:3243,1,"Facultés Droit et Lettres",44.798236,-0.619585,33318,0,OBO:SA:DROLET,Europe/Paris,,OBO, +OBO:SP:3244,1,"Peyronneaud",44.883573,-0.550257,33063,0,OBO:SA:GAZBX,Europe/Paris,,OBO, +OBO:SP:3247,1,"Stade Ornon",44.773665,-0.638664,33192,0,OBO:SA:ORNON,Europe/Paris,,OBO, +OBO:SP:325,1,"Le Haillan Rostand (av de Magudas)",44.858476,-0.669013,33200,0,OBX:SA:TMAGUD,Europe/Paris,,OBO, +OBO:SP:3250,1,"Gaussen",44.857281,-0.568335,33063,0,OBO:SA:GAUSS,Europe/Paris,,OBO, +OBO:SP:3251,1,"Village 6 IUT (côté Resto U)",44.791537,-0.613052,33192,0,OBO:SA:VILLA6,Europe/Paris,,OBO, +OBO:SP:3252,1,"Nancel Pénard",44.808508,-0.632628,33318,0,OBO:SA:NPENA,Europe/Paris,,OBO, +OBO:SP:3253,1,"Jardin Public",44.898797,-0.517377,33032,0,OBO:SA:JPUB90,Europe/Paris,,OBO, +OBO:SP:3257,1,"Imhotep",44.892068,-0.556589,33063,0,OBO:SA:IMHOTE,Europe/Paris,,OBO, +OBO:SP:3259,1,"Le Mayne",45.021725,-0.575733,33004,0,OBO:SA:LMAYNE,Europe/Paris,,OBO, +OBO:SP:326,1,"AFPA Pessac",44.790107,-0.649803,33318,0,OBO:SA:AFPA,Europe/Paris,,OBO, +OBO:SP:3260,1,"Saint Sever",44.936631,-0.493093,33003,0,OBO:SA:STSEVE,Europe/Paris,,OBO, +OBO:SP:3264,1,"Labarde",44.881532,-0.551243,33063,0,OBO:SA:LABARD,Europe/Paris,,OBO, +OBO:SP:3265,1,"Frankton",44.907405,-0.621901,33056,0,OBO:SA:DEHEZ,Europe/Paris,,OBO, +OBO:SP:3269,1,"Préfecture",44.83701,-0.587111,33063,0,OBO:SA:PREFE,Europe/Paris,,OBO, +OBO:SP:327,1,"Les Jalles",44.894979,-0.638901,33162,0,OBO:SA:JALLES,Europe/Paris,,OBO, +OBO:SP:3270,1,"Gare Routière",44.896961,-0.721862,33449,0,OBO:SA:GROUTE,Europe/Paris,,OBO, +OBO:SP:3271,1,"Nénuphars",44.853481,-0.482572,33013,0,OBO:SA:NENUPH,Europe/Paris,,OBO, +OBO:SP:3272,1,"Rousseau",44.895719,-0.72287,33449,0,OBO:SA:ROUS71,Europe/Paris,,OBO, +OBO:SP:3273,1,"Dorgelès",44.84337,-0.543446,33063,0,OBO:SA:DORGE,Europe/Paris,,OBO, +OBO:SP:3274,1,"La Route Bleue",44.821205,-0.501299,33065,0,OBO:SA:RBLEUE,Europe/Paris,,OBO, +OBO:SP:3276,1,"Z.A Haut-Vigneau",44.771603,-0.63118,33192,0,OBO:SA:ZAVIG,Europe/Paris,,OBO, +OBO:SP:3277,1,"Claudeville",44.873889,-0.577364,33075,0,OBO:SA:CLAUDE,Europe/Paris,,OBO, +OBO:SP:3278,1,"Gambetta",44.841372,-0.580119,33063,0,OBO:SA:GAMBT1,Europe/Paris,,OBO, +OBO:SP:328,1,"Mermoz",44.865245,-0.665476,33200,0,OBO:SA:MERM03,Europe/Paris,,OBO, +OBO:SP:3280,1,"Marché de Brienne (côté Anciens Abattoirs)",44.825802,-0.54777,33063,0,OBO:SA:MBRIE,Europe/Paris,,OBO, +OBO:SP:3281,1,"Parc d'Activité du Grand Port",44.81378,-0.540136,33039,0,OBO:SA:GPORT,Europe/Paris,,OBO, +OBO:SP:3283,1,"Collège G. Rayet",44.842214,-0.515492,33167,0,OBO:SA:RAYET,Europe/Paris,,OBO, +OBO:SP:3285,1,"Nénuphars",44.853218,-0.48234,33013,0,OBO:SA:NENUPH,Europe/Paris,,OBO, +OBO:SP:3289,1,"Mairie de Bègles",44.808021,-0.542406,33039,0,OBO:SA:MBEGL,Europe/Paris,,OBO, +OBO:SP:3294,1,"Village 1",44.808008,-0.603756,33522,0,OBO:SA:VILLA1,Europe/Paris,,OBO, +OBO:SP:3295,1,"Palombes",44.864626,-0.533142,33249,0,OBO:SA:PALOMB,Europe/Paris,,OBO, +OBO:SP:3296,1,"Docteur Couaillac",45.010557,-0.534577,33004,0,OBO:SA:COUAIL,Europe/Paris,,OBO, +OBO:SP:3297,1,"Avenue de la Boétie (vers Cimetière du Taillan)",44.909719,-0.671909,33519,0,OBO:SA:ABOETI,Europe/Paris,,OBO, +OBO:SP:3298,1,"Professeur Vincent",44.885838,-0.521319,33249,0,OBO:SA:VINCE,Europe/Paris,,OBO, +OBO:SP:330,1,"Tournesol",44.820192,-0.69579,33281,0,OBO:SA:TESOL,Europe/Paris,,OBO, +OBO:SP:3300,1,"Brutails",44.884323,-0.523632,33249,0,OBO:SA:BRUTA,Europe/Paris,,OBO, +OBO:SP:3302,1,"Taillan Cimetière",44.909923,-0.675005,33519,0,OBO:SA:TCIME,Europe/Paris,,OBO, +OBO:SP:3303,1,"Mairie de Lormont",44.879932,-0.524814,33249,0,OBO:SA:MAILOR,Europe/Paris,,OBO, +OBO:SP:3305,1,"Capelle",44.816584,-0.548555,33039,0,OBO:SA:CAPEL,Europe/Paris,,OBO, +OBO:SP:3307,1,"Libération",44.857088,-0.643579,33281,0,OBO:SA:FORET,Europe/Paris,,OBO, +OBO:SP:3309,1,"Banlin",44.865656,-0.538694,33063,0,OBO:SA:BANLI,Europe/Paris,,OBO, +OBO:SP:331,1,"Le B.E.C",44.793145,-0.617345,33318,0,OBO:SA:LEBEC,Europe/Paris,,OBO, +OBO:SP:3310,1,"Boulevard George V",44.824074,-0.587184,33063,0,OBO:SA:GEORGV,Europe/Paris,,OBO, +OBO:SP:3312,1,"Mermoz",44.865864,-0.666378,33200,0,OBO:SA:MERM03,Europe/Paris,,OBO, +OBO:SP:3313,1,"Vignau Anglade (Clos Favol)",44.89545,-0.507493,33096,0,OBO:SA:VANGLA,Europe/Paris,,OBO, +OBO:SP:3314,1,"Banlin",44.865787,-0.538537,33063,0,OBO:SA:BANLI,Europe/Paris,,OBO, +OBO:SP:3315,1,"Croustet",44.837138,-0.645894,33281,0,OBO:SA:CROUST,Europe/Paris,,OBO, +OBO:SP:3317,1,"Place Lopès",44.846003,-0.612973,33063,0,OBO:SA:LOPES,Europe/Paris,,OBO, +OBO:SP:3318,1,"Foncastel",44.836093,-0.641773,33281,0,OBO:SA:FONC72,Europe/Paris,,OBO, +OBO:SP:3319,1,"Le Grand Louis",44.861518,-0.641788,33162,0,OBO:SA:GLOUIS,Europe/Paris,,OBO, +OBO:SP:332,1,"Berlioz",44.838064,-0.509924,33167,0,OBO:SA:BERLI,Europe/Paris,,OBO, +OBO:SP:3322,1,"Stade Musard",44.807616,-0.551685,33039,0,OBO:SA:CROIZA,Europe/Paris,,OBO, +OBO:SP:3323,1,"Village 6 IUT (côté IUT)",44.791342,-0.612951,33192,0,OBO:SA:VILLA6,Europe/Paris,,OBO, +OBO:SP:3324,1,"Mairie du Haillan",44.872102,-0.67723,33200,0,OBO:SA:MHAILL,Europe/Paris,,OBO, +OBO:SP:3325,1,"Libération",44.856776,-0.643761,33281,0,OBO:SA:FORET,Europe/Paris,,OBO, +OBO:SP:3326,1,"L'Archevêque",44.879858,-0.505517,33249,0,OBO:SA:ARCHEV,Europe/Paris,,OBO, +OBO:SP:3327,1,"Rubens",44.852332,-0.514149,33119,0,OBO:SA:RUBEN,Europe/Paris,,OBO, +OBO:SP:3329,1,"Lavigne",44.847122,-0.563066,33063,0,OBO:SA:LAVIG,Europe/Paris,,OBO, +OBO:SP:333,1,"Cité SNCF",44.819528,-0.543853,33063,0,OBO:SA:CSNCF,Europe/Paris,,OBO, +OBO:SP:3330,1,"Bourdieu",44.895677,-0.514278,33096,0,OBO:SA:JCBEAU,Europe/Paris,,OBO, +OBO:SP:3331,1,"Corbiac",44.874045,-0.703102,33449,0,OBO:SA:ECORB,Europe/Paris,,OBO, +OBO:SP:3334,1,"Labarde",44.880185,-0.551931,33063,0,OBO:SA:LABARD,Europe/Paris,,OBO, +OBO:SP:3336,1,"Avenue du Taillan",44.872366,-0.633366,33162,0,OBO:SA:AVTAI,Europe/Paris,,OBO, +OBO:SP:3338,1,"Toctoucau",44.755654,-0.740222,33318,0,OBO:SA:TOCTOU,Europe/Paris,,OBO, +OBO:SP:334,1,"Les Ecus",44.869632,-0.605572,33069,0,OBO:SA:LESECU,Europe/Paris,,OBO, +OBO:SP:3341,1,"Piscine Chambéry",44.754866,-0.585842,33550,0,OBO:SA:TCHAMB,Europe/Paris,,OBO, +OBO:SP:3342,1,"Malartic (côté Eau Bourde)",44.771126,-0.599683,33192,0,OBO:SA:MALART,Europe/Paris,,OBO, +OBO:SP:3346,1,"Corbiac",44.874166,-0.701906,33449,0,OBO:SA:ECORB,Europe/Paris,,OBO, +OBO:SP:3347,1,"Lycées de Mérignac",44.834991,-0.647351,33281,0,OBX:SA:LYCEE,Europe/Paris,,OBO, +OBO:SP:3348,1,"Lavigne",44.847409,-0.563667,33063,0,OBO:SA:LAVIG,Europe/Paris,,OBO, +OBO:SP:3350,1,"La Hontan",44.767085,-0.548682,33550,0,OBO:SA:HONTA,Europe/Paris,,OBO, +OBO:SP:3351,1,"Le Skating",44.784893,-0.578381,33550,0,OBO:SA:SKATI,Europe/Paris,,OBO, +OBO:SP:3352,1,"Orphelins",44.79735,-0.568554,33039,0,OBO:SA:ORPHE,Europe/Paris,,OBO, +OBO:SP:3354,1,"Orphelins",44.796324,-0.568211,33550,0,OBO:SA:ORPHE,Europe/Paris,,OBO, +OBO:SP:3355,1,"Parc de Mussonville",44.793615,-0.559976,33039,0,OBX:SA:PMUSS,Europe/Paris,,OBO, +OBO:SP:3356,1,"Cimetière de Saint Médard",44.895419,-0.72616,33449,0,OBO:SA:CIMSME,Europe/Paris,,OBO, +OBO:SP:3357,1,"Lestage",44.874357,-0.695631,33449,0,OBO:SA:LESTAG,Europe/Paris,,OBO, +OBO:SP:3358,1,"De Lattre de Tassigny",44.904886,-0.625898,33056,0,OBO:SA:LATASS,Europe/Paris,,OBO, +OBO:SP:3369,1,"Gare de Bègles",44.798241,-0.557662,33039,0,OBO:SA:GBEGLE,Europe/Paris,,OBO, +OBO:SP:337,1,"Chanzy",44.865799,-0.59065,33069,0,OBO:SA:BLANQU,Europe/Paris,,OBO, +OBO:SP:3370,1,"Allende",44.800541,-0.55758,33039,0,OBO:SA:ALL22,Europe/Paris,,OBO, +OBO:SP:339,1,"Z.I. de Cestas",44.762289,-0.728152,33122,0,OBO:SA:ZICEST,Europe/Paris,,OBO, +OBO:SP:3397,1,"Lycée Agricole",44.917826,-0.634803,33056,0,OBO:SA:SBREIL,Europe/Paris,,OBO, +OBO:SP:3398,1,"Lycée Agricole",44.917762,-0.63457,33056,0,OBO:SA:SBREIL,Europe/Paris,,OBO, +OBO:SP:34,1,"Place des 2 Villes (vers Buttinière)",44.864356,-0.519502,33249,0,OBO:SA:P2VIL,Europe/Paris,,OBO, +OBO:SP:3401,1,"Montaigne",44.916917,-0.643027,33056,0,OBO:SA:MONTAI,Europe/Paris,,OBO, +OBO:SP:3402,1,"Montaigne",44.916885,-0.642619,33056,0,OBO:SA:MONTAI,Europe/Paris,,OBO, +OBO:SP:3403,1,"Montesquieu",44.907513,-0.640095,33056,0,OBO:SA:MONT37,Europe/Paris,,OBO, +OBO:SP:3408,1,"Jacques",44.91291,-0.653878,33056,0,OBO:SA:JACQ78,Europe/Paris,,OBO, +OBO:SP:3409,1,"Jacques",44.912985,-0.653781,33056,0,OBO:SA:JACQ78,Europe/Paris,,OBO, +OBO:SP:341,1,"Stade Municipal",44.916404,-0.683447,33519,0,OBO:SA:STAD55,Europe/Paris,,OBO, +OBO:SP:3410,1,"Stade Breillan",44.916706,-0.649445,33056,0,OBO:SA:STBREI,Europe/Paris,,OBO, +OBO:SP:3411,1,"Stade Breillan",44.91664,-0.649263,33056,0,OBO:SA:STBREI,Europe/Paris,,OBO, +OBO:SP:3415,1,"Libération",44.948954,-0.604748,33312,0,OBO:SA:PPUYRE,Europe/Paris,,OBO, +OBO:SP:3416,1,"Ford",44.911,-0.607813,33056,0,OBO:SA:FORDSU,Europe/Paris,,OBO, +OBO:SP:3419,1,"Ford",44.91106,-0.60736,33056,0,OBO:SA:FORDSU,Europe/Paris,,OBO, +OBO:SP:342,1,"Verdun",44.860588,-0.612062,33063,0,OBO:SA:VERDUN,Europe/Paris,,OBO, +OBO:SP:3420,1,"Lycée du Bâtiment",44.911109,-0.619426,33056,0,OBO:SA:LYCBAT,Europe/Paris,,OBO, +OBO:SP:3421,1,"Lycée du Bâtiment",44.91128,-0.618587,33056,0,OBO:SA:LYCBAT,Europe/Paris,,OBO, +OBO:SP:3432,1,"Mairie de St Louis de Montferrand",44.953729,-0.534369,33434,0,OBO:SA:MAIMFD,Europe/Paris,,OBO, +OBO:SP:3435,1,"Flandres",44.793393,-0.687483,33318,0,OBO:SA:FLANDR,Europe/Paris,,OBO, +OBO:SP:3436,1,"Canaris",44.790897,-0.690446,33318,0,OBO:SA:CNARI,Europe/Paris,,OBO, +OBO:SP:3439,1,"Eurofac",44.788178,-0.611571,33192,0,OBO:SA:EUROF,Europe/Paris,,OBO, +OBO:SP:344,1,"Pradas",44.826771,-0.658278,33281,0,OBO:SA:PRADA,Europe/Paris,,OBO, +OBO:SP:3440,1,"Eurofac",44.787198,-0.610407,33192,0,OBO:SA:EUROF,Europe/Paris,,OBO, +OBO:SP:3443,1,"Lormont Bas",44.878132,-0.534651,33249,0,OBO:SA:LORBAS,Europe/Paris,,OBO, +OBO:SP:345,1,"Ste Christine",44.880668,-0.685563,33200,0,OBO:SA:SCRIST,Europe/Paris,,OBO, +OBO:SP:3453,1,"Mallarmé",44.855961,-0.523625,33119,0,OBO:SA:MALLA,Europe/Paris,,OBO, +OBO:SP:3454,1,"Mallarmé",44.856085,-0.523988,33119,0,OBO:SA:MALLA,Europe/Paris,,OBO, +OBO:SP:3455,1,"Aristide Briand",44.857893,-0.52438,33119,0,OBO:SA:ARIST,Europe/Paris,,OBO, +OBO:SP:3456,1,"Villon",44.859711,-0.523886,33119,0,OBO:SA:VILLO,Europe/Paris,,OBO, +OBO:SP:3457,1,"Schweitzer",44.861723,-0.523252,33119,0,OBO:SA:SCHWE,Europe/Paris,,OBO, +OBO:SP:3458,1,"Schweitzer",44.861376,-0.523395,33119,0,OBO:SA:SCHWE,Europe/Paris,,OBO, +OBO:SP:346,1,"Météo France",44.831684,-0.693886,33281,0,OBO:SA:METEO,Europe/Paris,,OBO, +OBO:SP:3465,1,"Cassagne",44.853328,-0.516834,33119,0,OBO:SA:CASSAG,Europe/Paris,,OBO, +OBO:SP:3466,1,"Cassagne",44.853321,-0.516795,33119,0,OBO:SA:CASSAG,Europe/Paris,,OBO, +OBO:SP:347,1,"Vialle",44.81732,-0.507311,33065,0,OBO:SA:VIALL,Europe/Paris,,OBO, +OBO:SP:3479,1,"Pont de la Maye (vers Rocade)",44.780657,-0.566102,33550,0,OBO:SA:PMAYE,Europe/Paris,,OBO, +OBO:SP:349,1,"Truffaut",44.856205,-0.648248,33281,0,OBO:SA:TRUFF,Europe/Paris,,OBO, +OBO:SP:3500,1,"Bel-Orme",44.847438,-0.595442,33063,0,OBO:SA:BELOR,Europe/Paris,,OBO, +OBO:SP:3501,1,"Victoire (Somme)",44.829836,-0.572303,33063,0,OBO:SA:VICTOS,Europe/Paris,,OBO, +OBO:SP:3508,1,"Pelletan",44.8123,-0.600638,33522,0,OBO:SA:PETAN,Europe/Paris,,OBO, +OBO:SP:3509,1,"Pelletan",44.811936,-0.600475,33522,0,OBO:SA:PETAN,Europe/Paris,,OBO, +OBO:SP:3510,1,"Mairie de Lormont",44.880263,-0.523745,33249,0,OBO:SA:MAILOR,Europe/Paris,,OBO, +OBO:SP:3521,1,"Prince de Galles",44.767706,-0.633218,33192,0,OBO:SA:PGALL,Europe/Paris,,OBO, +OBO:SP:3522,1,"Prince de Galles",44.768173,-0.632451,33192,0,OBO:SA:PGALL,Europe/Paris,,OBO, +OBO:SP:3526,1,"Bordeaux Carreire",44.826703,-0.60089,33063,0,OBO:SA:PELLEG,Europe/Paris,,OBO, +OBO:SP:3527,1,"Bordeaux Carreire",44.826477,-0.600635,33063,0,OBO:SA:PELLEG,Europe/Paris,,OBO, +OBO:SP:3529,1,"Maréchal Gallieni",44.818016,-0.601979,33063,0,OBO:SA:GALI41,Europe/Paris,,OBO, +OBO:SP:353,1,"Le Poujeau",44.808872,-0.62893,33318,0,OBO:SA:LEPOUJ,Europe/Paris,,OBO, +OBO:SP:3530,1,"Hôpital Saint André",44.834391,-0.578331,33063,0,OBO:SA:SANDRE,Europe/Paris,,OBO, +OBO:SP:354,1,"Chevalier",44.84215,-0.593685,33063,0,OBO:SA:CHEVA,Europe/Paris,,OBO, +OBO:SP:3540,1,"Porte de Bourgogne (crs V. Hugo)",44.835956,-0.566968,33063,0,OBO:SA:SALIN,Europe/Paris,,OBO, +OBO:SP:3542,1,"Ste Catherine",44.834944,-0.571526,33063,0,OBX:SA:CATHE,Europe/Paris,,OBO, +OBO:SP:3545,1,"Stalingrad (arrêt de Descente)",44.840385,-0.560117,33063,0,OBX:SA:STALIT,Europe/Paris,,OBO, +OBO:SP:3546,1,"Victoire (Somme)",44.829717,-0.572372,33063,0,OBO:SA:VICTOS,Europe/Paris,,OBO, +OBO:SP:3547,1,"République",44.834072,-0.580134,33063,0,OBO:SA:REPU48,Europe/Paris,,OBO, +OBO:SP:3548,1,"République",44.833881,-0.580186,33063,0,OBO:SA:REPU48,Europe/Paris,,OBO, +OBO:SP:3549,1,"Victoire (A. Briand)",44.831193,-0.574087,33063,0,OBO:SA:PVICTO,Europe/Paris,,OBO, +OBO:SP:355,1,"Terre Rouge",44.913846,-0.686627,33519,0,OBO:SA:TROUGE,Europe/Paris,,OBO, +OBO:SP:3550,1,"Victoire (Marne)",44.830467,-0.571191,33063,0,OBO:SA:VICTOM,Europe/Paris,,OBO, +OBO:SP:3551,1,"Peixotto (côté Mairie)",44.808338,-0.591357,33522,0,OBO:SA:UNIVER,Europe/Paris,,OBO, +OBO:SP:3552,1,"Place des 2 Villes (vers Rocade)",44.864178,-0.51944,33119,0,OBO:SA:P2VIL,Europe/Paris,,OBO, +OBO:SP:3553,1,"Esplanade des Antilles",44.79313,-0.623319,33318,0,OBO:SA:ANTIL,Europe/Paris,,OBO, +OBO:SP:3554,1,"Esplanade des Antilles",44.79253,-0.623495,33318,0,OBO:SA:ANTIL,Europe/Paris,,OBO, +OBO:SP:3559,1,"Jardin Public",44.846759,-0.576839,33063,0,OBX:SA:JPUBL,Europe/Paris,,OBO, +OBO:SP:356,1,"Mignonne",44.775324,-0.59584,33192,0,OBO:SA:MIGNO,Europe/Paris,,OBO, +OBO:SP:3561,1,"Mairie de Floirac",44.831821,-0.527747,33167,0,OBO:SA:MFLOI,Europe/Paris,,OBO, +OBO:SP:3568,1,"Caserne Boudet",44.828092,-0.586124,33063,0,OBO:SA:BOUDE,Europe/Paris,,OBO, +OBO:SP:3577,1,"Arts & Métiers",44.805738,-0.600382,33522,0,OBX:SA:ARTME,Europe/Paris,,OBO, +OBO:SP:3578,1,"Arts & Métiers",44.804675,-0.600643,33522,0,OBX:SA:ARTME,Europe/Paris,,OBO, +OBO:SP:358,1,"Lamartine",44.904048,-0.513192,33032,0,OBO:SA:LAMA90,Europe/Paris,,OBO, +OBO:SP:3581,1,"Domaine de Lucatet (côté Parc Mérisud)",44.821185,-0.665867,33281,0,OBO:SA:LUCAT,Europe/Paris,,OBO, +OBO:SP:3583,1,"Hôtel de Police",44.833896,-0.588369,33063,0,OBO:SA:POLICE,Europe/Paris,,OBO, +OBO:SP:3585,1,"Ste Croix",44.830713,-0.559314,33063,0,OBO:SA:PALUD,Europe/Paris,,OBO, +OBO:SP:36,1,"Russel",44.828613,-0.518389,33167,0,OBO:SA:RUSSE,Europe/Paris,,OBO, +OBO:SP:360,1,"Lajarte",44.825051,-0.570049,33063,0,OBO:SA:LAJAR,Europe/Paris,,OBO, +OBO:SP:3605,1,"Stalingrad (arrêt de Montée)",44.839951,-0.559862,33063,0,OBX:SA:STALIT,Europe/Paris,,OBO, +OBO:SP:3606,1,"Buttinière",44.864182,-0.524978,33249,0,OBX:SA:BUTTI,Europe/Paris,,OBO, +OBO:SP:3608,1,"La Tresne",44.840753,-0.550868,33063,0,OBO:SA:LATRE,Europe/Paris,,OBO, +OBO:SP:3609,1,"Collège L. Lenoir",44.840489,-0.553778,33063,0,OBO:SA:LENOI,Europe/Paris,,OBO, +OBO:SP:361,1,"Franklin",44.798912,-0.58659,33522,0,OBO:SA:FRANKL,Europe/Paris,,OBO, +OBO:SP:3611,1,"Dubedout",44.846974,-0.511457,33167,0,OBO:SA:DUBED,Europe/Paris,,OBO, +OBO:SP:3612,1,"Dubedout",44.846975,-0.512268,33119,0,OBO:SA:DUBED,Europe/Paris,,OBO, +OBO:SP:3620,1,"Plateaux",44.828283,-0.52337,33167,0,OBO:SA:PLATE,Europe/Paris,,OBO, +OBO:SP:3621,1,"Plateaux",44.828433,-0.523481,33167,0,OBO:SA:PLATE,Europe/Paris,,OBO, +OBO:SP:3622,1,"Pinel",44.824139,-0.52135,33167,0,OBO:SA:PINEL,Europe/Paris,,OBO, +OBO:SP:3623,1,"Pinel",44.825636,-0.521609,33167,0,OBO:SA:PINEL,Europe/Paris,,OBO, +OBO:SP:3624,1,"Beausite",44.853032,-0.527319,33119,0,OBO:SA:CEBEAU,Europe/Paris,,OBO, +OBO:SP:3625,1,"Beausite",44.852936,-0.527477,33119,0,OBO:SA:CEBEAU,Europe/Paris,,OBO, +OBO:SP:3626,1,"Jean Jaurès",44.857574,-0.532406,33119,0,OBO:SA:JJAU62,Europe/Paris,,OBO, +OBO:SP:3627,1,"Jean Jaurès",44.85768,-0.532476,33119,0,OBO:SA:JJAU62,Europe/Paris,,OBO, +OBO:SP:363,1,"Chardons Bleus",44.835622,-0.63964,33281,0,OBO:SA:CBLEUS,Europe/Paris,,OBO, +OBO:SP:3631,1,"La Vigne",44.863802,-0.486811,33013,0,OBO:SA:VIGN64,Europe/Paris,,OBO, +OBO:SP:3632,1,"La Vigne",44.86359,-0.486392,33013,0,OBO:SA:VIGN64,Europe/Paris,,OBO, +OBO:SP:3634,1,"Buttinière",44.864245,-0.524703,33249,0,OBX:SA:BUTTI,Europe/Paris,,OBO, +OBO:SP:3636,1,"Domaine de Lestrille",44.875353,-0.493207,33013,0,OBO:SA:LESTRI,Europe/Paris,,OBO, +OBO:SP:3638,1,"La Ferme",44.872304,-0.481522,33013,0,OBO:SA:LAFERM,Europe/Paris,,OBO, +OBO:SP:364,1,"Périnot",44.851178,-0.630588,33063,0,OBO:SA:PERIN,Europe/Paris,,OBO, +OBO:SP:3647,1,"Pôle d'Echanges Quinconces",44.844628,-0.573903,33063,0,OBX:SA:QUIN_B,Europe/Paris,,OBO, +OBO:SP:3648,1,"Pôle d'Echanges Quinconces",44.843853,-0.573905,33063,0,OBO:SA:QUIOR,Europe/Paris,,OBO, +OBO:SP:3649,1,"Centre de Formation du Lac",44.877962,-0.575139,33063,0,OBO:SA:GICFO,Europe/Paris,,OBO, +OBO:SP:3650,1,"Centre de Formation du Lac",44.877802,-0.575636,33063,0,OBO:SA:GICFO,Europe/Paris,,OBO, +OBO:SP:3652,1,"Caisse des Dépôts",44.891362,-0.561185,33063,0,OBO:SA:CAF,Europe/Paris,,OBO, +OBO:SP:3653,1,"Caisse des Dépôts",44.890938,-0.561196,33063,0,OBO:SA:CAF,Europe/Paris,,OBO, +OBO:SP:3654,1,"Vergne",44.895196,-0.561618,33063,0,OBO:SA:VERGN,Europe/Paris,,OBO, +OBO:SP:3656,1,"Clémentel",44.916687,-0.519058,33032,0,OBO:SA:CLEMEN,Europe/Paris,,OBO, +OBO:SP:3657,1,"Clémentel",44.916658,-0.518548,33032,0,OBO:SA:CLEMEN,Europe/Paris,,OBO, +OBO:SP:3658,1,"Coutenceau",44.915093,-0.517042,33032,0,OBO:SA:COUTEN,Europe/Paris,,OBO, +OBO:SP:3659,1,"Coutenceau",44.914709,-0.517196,33032,0,OBO:SA:COUTEN,Europe/Paris,,OBO, +OBO:SP:3661,1,"Les Coteaux",44.911139,-0.517238,33032,0,OBO:SA:COTEAU,Europe/Paris,,OBO, +OBO:SP:3662,1,"La Fontaine",44.912805,-0.493879,33096,0,OBO:SA:FONTAI,Europe/Paris,,OBO, +OBO:SP:3663,1,"Jules Ferry",44.909897,-0.499214,33096,0,OBO:SA:JFER95,Europe/Paris,,OBO, +OBO:SP:3664,1,"Jules Ferry",44.909785,-0.499043,33096,0,OBO:SA:JFER95,Europe/Paris,,OBO, +OBO:SP:3665,1,"Futaies",44.909118,-0.496477,33096,0,OBO:SA:FUTAIE,Europe/Paris,,OBO, +OBO:SP:3666,1,"Collège de Carbon-Blanc",44.909932,-0.501817,33096,0,OBO:SA:CCBLAN,Europe/Paris,,OBO, +OBO:SP:3667,1,"Collège de Carbon-Blanc",44.90991,-0.501384,33096,0,OBO:SA:CCBLAN,Europe/Paris,,OBO, +OBO:SP:3668,1,"Tertre",44.907735,-0.503188,33032,0,OBO:SA:TERTRE,Europe/Paris,,OBO, +OBO:SP:3669,1,"Tertre",44.907838,-0.503068,33096,0,OBO:SA:TERTRE,Europe/Paris,,OBO, +OBO:SP:367,1,"Fragonard",44.857137,-0.633026,33063,0,OBO:SA:FRAGO,Europe/Paris,,OBO, +OBO:SP:3670,1,"Beauval",44.906035,-0.503082,33096,0,OBO:SA:BEAU95,Europe/Paris,,OBO, +OBO:SP:3671,1,"Triviaux",44.891964,-0.507719,33096,0,OBO:SA:TRIVAU,Europe/Paris,,OBO, +OBO:SP:3672,1,"Triviaux",44.892014,-0.507582,33096,0,OBO:SA:TRIVAU,Europe/Paris,,OBO, +OBO:SP:3673,1,"Mitterrand",44.889355,-0.510155,33096,0,OBO:SA:MITT92,Europe/Paris,,OBO, +OBO:SP:3674,1,"Mitterrand",44.88944,-0.510033,33096,0,OBO:SA:MITT92,Europe/Paris,,OBO, +OBO:SP:3675,1,"Chemin du Sourd",44.888246,-0.511036,33096,0,OBO:SA:CHSOUR,Europe/Paris,,OBO, +OBO:SP:3678,1,"Breteil",44.880442,-0.64739,33162,0,OBO:SA:BRETEI,Europe/Paris,,OBO, +OBO:SP:3679,1,"Cimetière d’Eysines",44.885148,-0.657192,33162,0,OBO:SA:CIMEYS,Europe/Paris,,OBO, +OBO:SP:368,1,"Plein Ciel",44.849843,-0.644097,33281,0,OBO:SA:PCIEL,Europe/Paris,,OBO, +OBO:SP:3680,1,"Lycée Charles Peguy",44.8893,-0.627084,33162,0,OBO:SA:LYPEGU,Europe/Paris,,OBO, +OBO:SP:369,1,"Léon Blum",44.86819,-0.603616,33069,0,OBO:SA:LEBLUM,Europe/Paris,,OBO, +OBO:SP:370,1,"Pont de la Maye Poste (vers Rocade)",44.782611,-0.566151,33550,0,OBO:SA:PMAYE,Europe/Paris,,OBO, +OBO:SP:371,1,"Peixotto",44.806531,-0.591786,33522,0,OBO:SA:PXOTTO,Europe/Paris,,OBO, +OBO:SP:372,1,"Tilleuls",44.863385,-0.657636,33162,0,OBO:SA:TILLEU,Europe/Paris,,OBO, +OBO:SP:373,1,"Lou Licot",44.757503,-0.736158,33122,0,OBO:SA:LOULI,Europe/Paris,,OBO, +OBO:SP:374,1,"Brossolette",44.834303,-0.622125,33281,0,OBO:SA:LAGLA,Europe/Paris,,OBO, +OBO:SP:375,1,"Bleuets",44.856711,-0.637231,33063,0,OBO:SA:BLEUE,Europe/Paris,,OBO, +OBO:SP:376,1,"Ruet",44.870454,-0.675018,33200,0,OBO:SA:RUET,Europe/Paris,,OBO, +OBO:SP:3779,1,"Pont du Vigean",44.88252,-0.621093,33075,0,OBO:SA:PVIGE,Europe/Paris,,OBO, +OBO:SP:378,1,"Les Aubiers",44.873991,-0.575584,33063,0,OBO:SA:BOUTA,Europe/Paris,,OBO, +OBO:SP:3780,1,"Pont du Vigean",44.882558,-0.621019,33075,0,OBO:SA:PVIGE,Europe/Paris,,OBO, +OBO:SP:3781,1,"Centre Tour de Gassies",44.883668,-0.625667,33075,0,OBO:SA:GASSI,Europe/Paris,,OBO, +OBO:SP:3786,1,"Dupas",44.828082,-0.539872,33063,0,OBO:SA:DUPAS,Europe/Paris,,OBO, +OBO:SP:3788,1,"Quai Deschamps",44.839152,-0.559773,33063,0,OBO:SA:DESCH,Europe/Paris,,OBO, +OBO:SP:379,1,"Vergne",44.822994,-0.481694,33065,0,OBO:SA:VERGNE,Europe/Paris,,OBO, +OBO:SP:3791,1,"Capelle",44.86417,-0.616639,33069,0,OBO:SA:CAPE76,Europe/Paris,,OBO, +OBO:SP:3792,1,"Allende",44.788714,-0.58704,33522,0,OBO:SA:ALLE40,Europe/Paris,,OBO, +OBO:SP:3793,1,"Allende",44.789279,-0.587114,33522,0,OBO:SA:ALLE40,Europe/Paris,,OBO, +OBO:SP:3794,1,"Thouars",44.785356,-0.586079,33550,0,OBO:SA:THOUAR,Europe/Paris,,OBO, +OBO:SP:3797,1,"Peixotto",44.806098,-0.592075,33522,0,OBO:SA:PXOTTO,Europe/Paris,,OBO, +OBO:SP:38,1,"Grands Moulins",44.853854,-0.5538,33063,0,OBO:SA:MOULI,Europe/Paris,,OBO, +OBO:SP:380,1,"Abel Gance",44.878618,-0.500268,33249,0,OBO:SA:TABERN,Europe/Paris,,OBO, +OBO:SP:3801,1,"Victoire (A. Briand)",44.831009,-0.573645,33063,0,OBO:SA:PVICTO,Europe/Paris,,OBO, +OBO:SP:3802,1,"Victoire (Pasteur)",44.831337,-0.57326,33063,0,OBX:SA:VICTO,Europe/Paris,,OBO, +OBO:SP:3803,1,"Unitec",44.796564,-0.621679,33318,0,OBX:SA:UNITE,Europe/Paris,,OBO, +OBO:SP:3807,1,"Lestage",44.777047,-0.620422,33192,0,OBO:SA:LESTA,Europe/Paris,,OBO, +OBO:SP:3808,1,"Lestage",44.777105,-0.620311,33192,0,OBO:SA:LESTA,Europe/Paris,,OBO, +OBO:SP:3809,1,"L'Ermitage",44.773487,-0.620977,33192,0,OBO:SA:ERMIT,Europe/Paris,,OBO, +OBO:SP:381,1,"Goujon",44.871242,-0.707962,33449,0,OBO:SA:GOUJO,Europe/Paris,,OBO, +OBO:SP:3810,1,"L'Ermitage",44.773412,-0.620782,33192,0,OBO:SA:ERMIT,Europe/Paris,,OBO, +OBO:SP:3819,1,"Peixotto (station Tram)",44.806866,-0.593124,33522,0,OBO:SA:TPEIXO,Europe/Paris,,OBO, +OBO:SP:382,1,"Parc Bordelais",44.854718,-0.599393,33069,0,OBO:SA:GLECLE,Europe/Paris,,OBO, +OBO:SP:3820,1,"Domaine de la Plantation",44.789458,-0.535553,33039,0,OBO:SA:MECGR,Europe/Paris,,OBO, +OBO:SP:3821,1,"Domaine de la Plantation",44.789599,-0.535385,33039,0,OBO:SA:MECGR,Europe/Paris,,OBO, +OBO:SP:3823,1,"Palais de Justice",44.836233,-0.581286,33063,0,OBX:SA:PJUST,Europe/Paris,,OBO, +OBO:SP:3825,1,"Porte de Bourgogne (Pl Bir Hakeim)",44.836585,-0.566184,33063,0,OBO:SA:PBOURG,Europe/Paris,,OBO, +OBO:SP:3826,1,"Musée d'Aquitaine",44.835026,-0.574293,33063,0,OBX:SA:MUSEE,Europe/Paris,,OBO, +OBO:SP:3827,1,"Eglise de Saint Aubin",44.911871,-0.723955,33376,0,OBO:SA:MSAUBI,Europe/Paris,,OBO, +OBO:SP:3828,1,"Van Gogh",44.910485,-0.714185,33376,0,OBO:SA:VANGOG,Europe/Paris,,OBO, +OBO:SP:3829,1,"Pic Vert",44.912613,-0.713628,33376,0,OBO:SA:PICVER,Europe/Paris,,OBO, +OBO:SP:383,1,"Béchade",45.023086,-0.545294,33004,0,OBO:SA:BECH92,Europe/Paris,,OBO, +OBO:SP:3835,1,"Eglise de Saint Aubin",44.911569,-0.724341,33376,0,OBO:SA:MSAUBI,Europe/Paris,,OBO, +OBO:SP:385,1,"Léon Blum",44.868342,-0.603664,33069,0,OBO:SA:LEBLUM,Europe/Paris,,OBO, +OBO:SP:3857,1,"Schweitzer",44.774038,-0.533305,33550,0,OBO:SA:SCHW02,Europe/Paris,,OBO, +OBO:SP:3858,1,"Palais de Justice",44.836872,-0.58106,33063,0,OBX:SA:PJUST,Europe/Paris,,OBO, +OBO:SP:3859,1,"Gabriel Fauré",44.85171,-0.635792,33063,0,OBO:SA:GAFAUR,Europe/Paris,,OBO, +OBO:SP:386,1,"Vieille Cure",44.853652,-0.527079,33119,0,OBO:SA:VCURE,Europe/Paris,,OBO, +OBO:SP:3860,1,"Trianon",44.852249,-0.63888,33281,0,OBO:SA:TRIANO,Europe/Paris,,OBO, +OBO:SP:3861,1,"Léon Blum",44.852593,-0.642146,33281,0,OBO:SA:LBLU16,Europe/Paris,,OBO, +OBO:SP:3862,1,"Léon Blum",44.852517,-0.641698,33281,0,OBO:SA:LBLU16,Europe/Paris,,OBO, +OBO:SP:3863,1,"Trianon",44.852061,-0.638007,33281,0,OBO:SA:TRIANO,Europe/Paris,,OBO, +OBO:SP:3864,1,"Gabriel Fauré",44.851517,-0.63455,33281,0,OBO:SA:GAFAUR,Europe/Paris,,OBO, +OBO:SP:3866,1,"Bougnard (station Tram)",44.794183,-0.633841,33318,0,OBX:SA:BOUGN,Europe/Paris,,OBO, +OBO:SP:3868,1,"Unitec",44.796645,-0.621393,33318,0,OBX:SA:UNITE,Europe/Paris,,OBO, +OBO:SP:3869,1,"Barrière du Médoc (av d'Eysines)",44.853351,-0.594871,33069,0,OBO:SA:BMEDO,Europe/Paris,,OBO, +OBO:SP:387,1,"Quai de Brazza",44.855785,-0.550045,33063,0,OBO:SA:BRAZZ,Europe/Paris,,OBO, +OBO:SP:3877,1,"Victoire (Pasteur)",44.831317,-0.573335,33063,0,OBX:SA:VICTO,Europe/Paris,,OBO, +OBO:SP:3878,1,"Collège Victor Louis",44.798243,-0.591952,33522,0,OBO:SA:WILSO,Europe/Paris,,OBO, +OBO:SP:3879,1,"Collège Victor Louis",44.79899,-0.592544,33522,0,OBO:SA:WILSO,Europe/Paris,,OBO, +OBO:SP:388,1,"Chopin",44.757686,-0.572488,33550,0,OBO:SA:CHOPIN,Europe/Paris,,OBO, +OBO:SP:3880,1,"Lycée Hôtelier",44.795922,-0.592386,33522,0,OBO:SA:LHOTEL,Europe/Paris,,OBO, +OBO:SP:3881,1,"Lycée Hôtelier",44.795499,-0.592359,33522,0,OBO:SA:LHOTEL,Europe/Paris,,OBO, +OBO:SP:3882,1,"Thouars",44.785394,-0.586297,33550,0,OBO:SA:THOUAR,Europe/Paris,,OBO, +OBO:SP:3883,1,"INRA",44.785513,-0.576471,33550,0,OBO:SA:INRA,Europe/Paris,,OBO, +OBO:SP:3884,1,"Jules Simon",44.775979,-0.576738,33550,0,OBO:SA:JSIMO,Europe/Paris,,OBO, +OBO:SP:3885,1,"Jules Simon",44.775519,-0.577291,33550,0,OBO:SA:JSIMO,Europe/Paris,,OBO, +OBO:SP:3888,1,"Nuyens",44.845762,-0.564715,33063,0,OBO:SA:NUYENS,Europe/Paris,,OBO, +OBO:SP:3889,1,"Belle Rive",44.960825,-0.533991,33434,0,OBO:SA:BERIVE,Europe/Paris,,OBO, +OBO:SP:3890,1,"Service Technique Municipal",44.901435,-0.496898,33096,0,OBO:SA:STMUNI,Europe/Paris,,OBO, +OBO:SP:3891,1,"Service Technique Municipal",44.901853,-0.49681,33096,0,OBO:SA:STMUNI,Europe/Paris,,OBO, +OBO:SP:3894,1,"Castéra",44.909088,-0.51541,33032,0,OBO:SA:CAST92,Europe/Paris,,OBO, +OBO:SP:3895,1,"Castéra",44.90989,-0.51456,33032,0,OBO:SA:CAST92,Europe/Paris,,OBO, +OBO:SP:3896,1,"Clemenceau",44.912288,-0.512541,33032,0,OBO:SA:CLEM92,Europe/Paris,,OBO, +OBO:SP:3897,1,"Clemenceau",44.911991,-0.512802,33032,0,OBO:SA:CLEM92,Europe/Paris,,OBO, +OBO:SP:3898,1,"Péguy",44.913619,-0.511483,33032,0,OBO:SA:PEGU74,Europe/Paris,,OBO, +OBO:SP:3899,1,"Péguy",44.914143,-0.511161,33032,0,OBO:SA:PEGU74,Europe/Paris,,OBO, +OBO:SP:39,1,"Fraternité",44.818485,-0.615255,33318,0,OBO:SA:FRAT47,Europe/Paris,,OBO, +OBO:SP:390,1,"Primevères",44.766079,-0.638034,33192,0,OBO:SA:PLUC,Europe/Paris,,OBO, +OBO:SP:3900,1,"Belloc",44.917913,-0.506222,33003,0,OBO:SA:BELLOC,Europe/Paris,,OBO, +OBO:SP:3901,1,"Cité Bel Air",44.922851,-0.501393,33003,0,OBO:SA:CIBAIR,Europe/Paris,,OBO, +OBO:SP:3902,1,"Cité Bel Air",44.922848,-0.501494,33003,0,OBO:SA:CIBAIR,Europe/Paris,,OBO, +OBO:SP:391,1,"Costedoat",44.830739,-0.578123,33063,0,OBO:SA:COSTED,Europe/Paris,,OBO, +OBO:SP:3911,1,"Clanis",44.935658,-0.514805,33003,0,OBO:SA:CLANIS,Europe/Paris,,OBO, +OBO:SP:3912,1,"Clanis",44.935588,-0.514725,33003,0,OBO:SA:CLANIS,Europe/Paris,,OBO, +OBO:SP:3913,1,"Espagnet",44.945948,-0.537038,33434,0,OBO:SA:ESPAGN,Europe/Paris,,OBO, +OBO:SP:3914,1,"Espagnet",44.945682,-0.536323,33434,0,OBO:SA:ESPAGN,Europe/Paris,,OBO, +OBO:SP:3917,1,"Treuil",44.936025,-0.488589,33003,0,OBO:SA:TREUIL,Europe/Paris,,OBO, +OBO:SP:3918,1,"Treuil",44.935955,-0.488216,33003,0,OBO:SA:TREUIL,Europe/Paris,,OBO, +OBO:SP:3919,1,"Saint Sever",44.936677,-0.493362,33003,0,OBO:SA:STSEVE,Europe/Paris,,OBO, +OBO:SP:392,1,"Rue Richelieu",44.845968,-0.61819,33063,0,OBO:SA:RICHE,Europe/Paris,,OBO, +OBO:SP:3921,1,"Saint Denis",44.954117,-0.497039,33003,0,OBO:SA:SDENIS,Europe/Paris,,OBO, +OBO:SP:3922,1,"Saint Denis",44.953957,-0.496699,33003,0,OBO:SA:SDENIS,Europe/Paris,,OBO, +OBO:SP:3923,1,"Du Roy",44.95311,-0.511826,33003,0,OBO:SA:LEST93,Europe/Paris,,OBO, +OBO:SP:3925,1,"Vivaldi",44.935362,-0.500766,33003,0,OBO:SA:VIVALD,Europe/Paris,,OBO, +OBO:SP:3926,1,"Vivaldi",44.935406,-0.500794,33003,0,OBO:SA:VIVALD,Europe/Paris,,OBO, +OBO:SP:3927,1,"Broustey",44.937342,-0.501727,33003,0,OBO:SA:BROUST,Europe/Paris,,OBO, +OBO:SP:3928,1,"Broustey",44.937321,-0.501802,33003,0,OBO:SA:BROUST,Europe/Paris,,OBO, +OBO:SP:3929,1,"Pelet",44.938448,-0.50979,33003,0,OBO:SA:PELET,Europe/Paris,,OBO, +OBO:SP:3930,1,"Pelet",44.938329,-0.508984,33003,0,OBO:SA:PELET,Europe/Paris,,OBO, +OBO:SP:3939,1,"Surin",44.939617,-0.472012,33487,0,OBO:SA:SURIN,Europe/Paris,,OBO, +OBO:SP:394,1,"Donnet",44.822133,-0.562962,33063,0,OBO:SA:DONNET,Europe/Paris,,OBO, +OBO:SP:3940,1,"Surin",44.939103,-0.47231,33003,0,OBO:SA:SURIN,Europe/Paris,,OBO, +OBO:SP:3941,1,"Clos Palu",44.95091,-0.467381,33487,0,OBO:SA:CPALU,Europe/Paris,,OBO, +OBO:SP:3942,1,"Clos Palu",44.950896,-0.467533,33487,0,OBO:SA:CPALU,Europe/Paris,,OBO, +OBO:SP:3943,1,"Saint Vincent de Paul",44.95352,-0.468076,33487,0,OBO:SA:STVIPA,Europe/Paris,,OBO, +OBO:SP:3945,1,"Gare de Parempuyre",44.944189,-0.618808,33312,0,OBO:SA:GARPAR,Europe/Paris,,OBO, +OBO:SP:3946,1,"Gare de Parempuyre",44.944255,-0.618444,33312,0,OBO:SA:GARPAR,Europe/Paris,,OBO, +OBO:SP:3947,1,"Peybois",44.939916,-0.632898,33056,0,OBO:SA:PEYBOI,Europe/Paris,,OBO, +OBO:SP:3948,1,"Peybois",44.939993,-0.632776,33056,0,OBO:SA:PEYBOI,Europe/Paris,,OBO, +OBO:SP:3949,1,"Cora Morton",44.934779,-0.634823,33056,0,OBO:SA:MORTON,Europe/Paris,,OBO, +OBO:SP:3950,1,"Cora Morton",44.934678,-0.634868,33056,0,OBO:SA:MORTON,Europe/Paris,,OBO, +OBO:SP:3951,1,"Dumas",44.932256,-0.636728,33056,0,OBO:SA:DUMA77,Europe/Paris,,OBO, +OBO:SP:3952,1,"Dumas",44.932799,-0.636662,33056,0,OBO:SA:DUMA77,Europe/Paris,,OBO, +OBO:SP:3953,1,"Gilamon",44.911717,-0.645467,33056,0,OBO:SA:GILAMO,Europe/Paris,,OBO, +OBO:SP:3954,1,"Gilamon",44.911631,-0.645347,33056,0,OBO:SA:GILAMO,Europe/Paris,,OBO, +OBO:SP:3959,1,"Malagène",44.907083,-0.635628,33056,0,OBO:SA:MALAGE,Europe/Paris,,OBO, +OBO:SP:396,1,"Avenue du Coteau (vers Pl Vettiner)",44.814058,-0.5016,33065,0,OBO:SA:COTEA,Europe/Paris,,OBO, +OBO:SP:3960,1,"Malagène",44.907149,-0.636089,33056,0,OBO:SA:MALAGE,Europe/Paris,,OBO, +OBO:SP:3961,1,"Lycée du Bâtiment (entrée)",44.912296,-0.619794,33056,0,OBO:SA:LYCBAT,Europe/Paris,,OBO, +OBO:SP:3967,1,"Parc des Oliviers",44.950848,-0.599996,33312,0,OBO:SA:VASSIV,Europe/Paris,,OBO, +OBO:SP:3968,1,"Montesquieu",44.907386,-0.638476,33056,0,OBO:SA:MONT37,Europe/Paris,,OBO, +OBO:SP:3969,1,"Berles",44.859506,-0.685263,33200,0,OBO:SA:GESTFO,Europe/Paris,,OBO, +OBO:SP:3970,1,"Berles",44.859397,-0.685015,33200,0,OBO:SA:GESTFO,Europe/Paris,,OBO, +OBO:SP:3975,1,"Bois de Mont",44.898494,-0.706999,33449,0,OBO:SA:BMONT,Europe/Paris,,OBO, +OBO:SP:3976,1,"Bois de Mont",44.89865,-0.706654,33449,0,OBO:SA:BMONT,Europe/Paris,,OBO, +OBO:SP:3977,1,"Collège F. Mauriac",44.896488,-0.70958,33449,0,OBO:SA:CFMAUR,Europe/Paris,,OBO, +OBO:SP:3978,1,"Collège F. Mauriac",44.896476,-0.70996,33449,0,OBO:SA:CFMAUR,Europe/Paris,,OBO, +OBO:SP:3979,1,"République (Boétie)",44.895169,-0.713449,33449,0,OBO:SA:PREPUB,Europe/Paris,,OBO, +OBO:SP:398,1,"Jude",44.86638,-0.637541,33162,0,OBO:SA:JUDE,Europe/Paris,,OBO, +OBO:SP:3980,1,"Dassault",44.88286,-0.571915,33063,0,OBO:SA:DASSA2,Europe/Paris,,OBO, +OBO:SP:3981,1,"Dassault",44.882905,-0.571943,33063,0,OBO:SA:DASSA2,Europe/Paris,,OBO, +OBO:SP:3984,1,"Mermoz",44.865799,-0.664245,33162,0,OBO:SA:MERM03,Europe/Paris,,OBO, +OBO:SP:3985,1,"Mermoz",44.865559,-0.664432,33162,0,OBO:SA:MERM03,Europe/Paris,,OBO, +OBO:SP:3986,1,"Moulineau",44.870993,-0.66144,33162,0,OBO:SA:MLINEA,Europe/Paris,,OBO, +OBO:SP:3987,1,"Moulineau",44.870707,-0.66165,33200,0,OBO:SA:MLINEA,Europe/Paris,,OBO, +OBO:SP:3988,1,"Ecole d'horticulture",44.87243,-0.664044,33162,0,OBO:SA:HORTIC,Europe/Paris,,OBO, +OBO:SP:3989,1,"Ecole d'horticulture",44.872081,-0.663692,33162,0,OBO:SA:HORTIC,Europe/Paris,,OBO, +OBO:SP:399,1,"Simone de Beauvoir",44.865476,-0.635163,33162,0,OBO:SA:SBEAUV,Europe/Paris,,OBO, +OBO:SP:3990,1,"Lycée de la Plaine",44.875928,-0.664564,33162,0,OBO:SA:LYPLAI,Europe/Paris,,OBO, +OBO:SP:3991,1,"Lycée de la Plaine",44.875628,-0.664658,33162,0,OBO:SA:LYPLAI,Europe/Paris,,OBO, +OBO:SP:400,1,"Hôpital Pellegrin (Grand Maurian)",44.830794,-0.604243,33063,0,OBO:SA:GMAURI,Europe/Paris,,OBO, +OBO:SP:4002,1,"Le Lagunet",44.883456,-0.659059,33162,0,OBO:SA:LAGUN,Europe/Paris,,OBO, +OBO:SP:4003,1,"Le Lagunet",44.883483,-0.659036,33162,0,OBO:SA:LAGUN,Europe/Paris,,OBO, +OBO:SP:4004,1,"Montalieu",44.879272,-0.661005,33162,0,OBO:SA:MONTAL,Europe/Paris,,OBO, +OBO:SP:4005,1,"Galin Terminus",44.849091,-0.544339,33063,0,OBX:SA:GALIN,Europe/Paris,,OBO, +OBO:SP:4008,1,"Peixotto (station Tram)",44.807074,-0.592555,33522,0,OBO:SA:PXOTTO,Europe/Paris,,OBO, +OBO:SP:4009,1,"La Boétie",44.903638,-0.700884,33519,0,OBO:SA:BOETIE,Europe/Paris,,OBO, +OBO:SP:401,1,"Chevreuils",44.873865,-0.492671,33013,0,OBO:SA:CHEVRE,Europe/Paris,,OBO, +OBO:SP:4010,1,"Malraux",44.884497,-0.598819,33075,0,OBO:SA:MALRA,Europe/Paris,,OBO, +OBO:SP:4011,1,"Malraux",44.884743,-0.598442,33075,0,OBO:SA:MALRA,Europe/Paris,,OBO, +OBO:SP:4014,1,"Glaena",44.895876,-0.752199,33449,0,OBO:SA:GLAENA,Europe/Paris,,OBO, +OBO:SP:4015,1,"Glaena",44.895498,-0.752706,33449,0,OBO:SA:GLAENA,Europe/Paris,,OBO, +OBO:SP:4016,1,"Jossomme",44.897126,-0.748542,33449,0,OBO:SA:JOUSSA,Europe/Paris,,OBO, +OBO:SP:4017,1,"Jossomme",44.896942,-0.749201,33449,0,OBO:SA:JOUSSA,Europe/Paris,,OBO, +OBO:SP:402,1,"St Paulin",44.805319,-0.558933,33039,0,OBO:SA:SPAUL,Europe/Paris,,OBO, +OBO:SP:4020,1,"Combes",44.867937,-0.598099,33069,0,OBO:SA:COMB76,Europe/Paris,,OBO, +OBO:SP:4021,1,"Combes",44.868001,-0.598053,33069,0,OBO:SA:COMB76,Europe/Paris,,OBO, +OBO:SP:4024,1,"Bacchus",44.885978,-0.596772,33075,0,OBO:SA:BACCHU,Europe/Paris,,OBO, +OBO:SP:4025,1,"Bacchus",44.88629,-0.596322,33075,0,OBO:SA:BACCHU,Europe/Paris,,OBO, +OBO:SP:4026,1,"Lycée Agricole",44.917857,-0.632762,33056,0,OBO:SA:SBREIL,Europe/Paris,,OBO, +OBO:SP:4027,1,"Lycée Agricole",44.917671,-0.633473,33056,0,OBO:SA:SBREIL,Europe/Paris,,OBO, +OBO:SP:4029,1,"Canteret",44.907117,-0.632383,33056,0,OBO:SA:CANT77,Europe/Paris,,OBO, +OBO:SP:403,1,"Jules Ferry",44.84443,-0.531402,33119,0,OBO:SA:FERRY,Europe/Paris,,OBO, +OBO:SP:4030,1,"Canteret",44.906949,-0.632817,33056,0,OBO:SA:CANT77,Europe/Paris,,OBO, +OBO:SP:4031,1,"Palais de Justice",44.836618,-0.581107,33063,0,OBX:SA:PJUST,Europe/Paris,,OBO, +OBO:SP:4034,1,"Pont Saint Jean",44.834388,-0.549262,33063,0,OBO:SA:PSJEAN,Europe/Paris,,OBO, +OBO:SP:4035,1,"Curie",44.862288,-0.531537,33119,0,OBO:SA:CURI62,Europe/Paris,,OBO, +OBO:SP:4036,1,"Curie",44.861988,-0.531924,33119,0,OBO:SA:CURI62,Europe/Paris,,OBO, +OBO:SP:4037,1,"Mairie de Cenon",44.856137,-0.532265,33119,0,OBO:SA:MCENO,Europe/Paris,,OBO, +OBO:SP:4039,1,"Lauriers (station Tram)",44.878911,-0.518083,33249,0,OBX:SA:LAURI,Europe/Paris,,OBO, +OBO:SP:404,1,"Lalanne",44.768881,-0.563749,33550,0,OBO:SA:LALAN,Europe/Paris,,OBO, +OBO:SP:4040,1,"Lauriers",44.879485,-0.517611,33249,0,OBX:SA:LAURI,Europe/Paris,,OBO, +OBO:SP:4041,1,"Parc du Peyrou",44.866441,-0.484554,33013,0,OBO:SA:PEYROU,Europe/Paris,,OBO, +OBO:SP:4042,1,"Cimetière Intercommunal",44.867523,-0.490565,33013,0,OBO:SA:CIME67,Europe/Paris,,OBO, +OBO:SP:4043,1,"Stade Ornon",44.773111,-0.639615,33192,0,OBO:SA:ORNON,Europe/Paris,,OBO, +OBO:SP:4044,1,"Cimetière de Gradignan",44.779276,-0.609278,33192,0,OBO:SA:CIMGRA,Europe/Paris,,OBO, +OBO:SP:4045,1,"Bougnard Terminus",44.79371,-0.635621,33318,0,OBX:SA:BOUGN,Europe/Paris,,OBO, +OBO:SP:4046,1,"Unitec (station Tram)",44.796494,-0.621599,33318,0,OBX:SA:UNITE,Europe/Paris,,OBO, +OBO:SP:4050,1,"Gare de Bruges (av Charles de Gaulle)",44.886085,-0.610699,33075,0,OBO:SA:FLEUR,Europe/Paris,,OBO, +OBO:SP:4055,1,"Lissandre",44.86867,-0.537743,33249,0,OBO:SA:LISS91,Europe/Paris,,OBO, +OBO:SP:4057,1,"Barrière Saint Genès",44.820936,-0.582235,33063,0,OBX:SA:BGENE,Europe/Paris,,OBO, +OBO:SP:406,1,"Pasteur",44.901212,-0.512824,33032,0,OBO:SA:PAST90,Europe/Paris,,OBO, +OBO:SP:4060,1,"Les 3 Cardinaux",44.88681,-0.549384,33063,0,OBO:SA:3CARDI,Europe/Paris,,OBO, +OBO:SP:4061,1,"Les 3 Cardinaux",44.886731,-0.549595,33063,0,OBO:SA:3CARDI,Europe/Paris,,OBO, +OBO:SP:4065,1,"Saige",44.794126,-0.62923,33318,0,OBX:SA:SAIGE,Europe/Paris,,OBO, +OBO:SP:407,1,"Côte de Caumont",44.843966,-0.524747,33167,0,OBO:SA:CAUMO,Europe/Paris,,OBO, +OBO:SP:4074,1,"La Prairie",44.779537,-0.612079,33192,0,OBO:SA:PRAI42,Europe/Paris,,OBO, +OBO:SP:4075,1,"La Prairie",44.779557,-0.612017,33192,0,OBO:SA:PRAI42,Europe/Paris,,OBO, +OBO:SP:408,1,"Lafontaine",44.827113,-0.567571,33063,0,OBO:SA:LAFONT,Europe/Paris,,OBO, +OBO:SP:4084,1,"Pont de la Maye",44.780608,-0.565935,33550,0,OBO:SA:PMAYE,Europe/Paris,,OBO, +OBO:SP:4094,1,"Fontderode",44.862347,-0.476317,33013,0,OBO:SA:ARTFON,Europe/Paris,,OBO, +OBO:SP:410,1,"Edison",44.776508,-0.653324,33318,0,OBO:SA:EDISO,Europe/Paris,,OBO, +OBO:SP:4105,1,"Mésanges",44.784419,-0.608824,33192,0,OBO:SA:MESANG,Europe/Paris,,OBO, +OBO:SP:4106,1,"Mésanges",44.784247,-0.608294,33192,0,OBO:SA:MESANG,Europe/Paris,,OBO, +OBO:SP:411,1,"Berlincan",44.882591,-0.688453,33449,0,OBO:SA:BERLIN,Europe/Paris,,OBO, +OBO:SP:4110,1,"Forum (côté Cinéma)",44.811136,-0.591245,33522,0,OBX:SA:FORUM,Europe/Paris,,OBO, +OBO:SP:4112,1,"Peixotto (côté Université)",44.808334,-0.591496,33522,0,OBO:SA:UNIVE1,Europe/Paris,,OBO, +OBO:SP:4114,1,"Lycée Sud Médoc (Bois de Mont)",44.904805,-0.71183,33519,0,OBO:SA:LSMBM,Europe/Paris,,OBO, +OBO:SP:412,1,"Kergomard",44.823556,-0.572537,33063,0,OBO:SA:KERGO,Europe/Paris,,OBO, +OBO:SP:4124,1,"Jardin Botanique",44.84297,-0.556215,33063,0,OBO:SA:JBOTA,Europe/Paris,,OBO, +OBO:SP:4128,1,"Antennes Sportives",44.89788,-0.571781,33063,0,OBO:SA:ANSPOR,Europe/Paris,,OBO, +OBO:SP:4129,1,"Antennes Sportives",44.897799,-0.571205,33063,0,OBO:SA:ANSPOR,Europe/Paris,,OBO, +OBO:SP:4137,1,"Parc de Mandavit",44.768172,-0.611525,33192,0,OBO:SA:PMANDA,Europe/Paris,,OBO, +OBO:SP:4138,1,"Parc de Mandavit",44.768124,-0.611611,33192,0,OBO:SA:PMANDA,Europe/Paris,,OBO, +OBO:SP:4141,1,"Guynemer",44.923437,-0.616428,33056,0,OBO:SA:GUYNEM,Europe/Paris,,OBO, +OBO:SP:4142,1,"Guynemer",44.923471,-0.615948,33056,0,OBO:SA:GUYNEM,Europe/Paris,,OBO, +OBO:SP:415,1,"Malbec",44.823939,-0.565938,33063,0,OBO:SA:MALBE,Europe/Paris,,OBO, +OBO:SP:4154,1,"Barrière Saint Genès",44.821431,-0.583343,33063,0,OBX:SA:BGENE,Europe/Paris,,OBO, +OBO:SP:4155,1,"Victoire (Marne)",44.830671,-0.571837,33063,0,OBO:SA:VICTOM,Europe/Paris,,OBO, +OBO:SP:4156,1,"Piscine Galin",44.846619,-0.541041,33063,0,OBO:SA:PCARD,Europe/Paris,,OBO, +OBO:SP:417,1,"Clemenceau",44.875851,-0.676994,33200,0,OBO:SA:CLEM52,Europe/Paris,,OBO, +OBO:SP:4177,1,"Jacques Brel",44.877909,-0.500452,33249,0,OBO:SA:BREL66,Europe/Paris,,OBO, +OBO:SP:4178,1,"Jacques Brel",44.878184,-0.500025,33249,0,OBO:SA:BREL66,Europe/Paris,,OBO, +OBO:SP:418,1,"Les Ecus",44.869535,-0.605515,33069,0,OBO:SA:LESECU,Europe/Paris,,OBO, +OBO:SP:419,1,"Edison",44.776287,-0.653727,33318,0,OBO:SA:EDISO,Europe/Paris,,OBO, +OBO:SP:420,1,"Malbec",44.827929,-0.560974,33063,0,OBO:SA:MALBEC,Europe/Paris,,OBO, +OBO:SP:421,1,"Brun",44.817291,-0.572303,33063,0,OBO:SA:BRUN,Europe/Paris,,OBO, +OBO:SP:4215,1,"Collège F. Mauriac",44.895875,-0.710389,33449,0,OBO:SA:CFMAUR,Europe/Paris,,OBO, +OBO:SP:4216,1,"Zola",44.90553,-0.724891,33376,0,OBO:SA:ZOLA82,Europe/Paris,,OBO, +OBO:SP:4217,1,"Zola",44.905088,-0.724887,33376,0,OBO:SA:ZOLA82,Europe/Paris,,OBO, +OBO:SP:422,1,"Mendès France",44.843288,-0.511176,33167,0,OBO:SA:MFRAN,Europe/Paris,,OBO, +OBO:SP:4220,1,"Euromédoc",44.907834,-0.724714,33376,0,OBO:SA:N21582,Europe/Paris,,OBO, +OBO:SP:4223,1,"Capelle",44.863987,-0.617007,33069,0,OBO:SA:CAPE76,Europe/Paris,,OBO, +OBO:SP:4224,1,"Lycée Sud Médoc",44.905344,-0.714554,33376,0,OBO:SA:LSM,Europe/Paris,,OBO, +OBO:SP:423,1,"Esplanade F. Mitterrand",44.874179,-0.515542,33249,0,OBO:SA:EFMITT,Europe/Paris,,OBO, +OBO:SP:424,1,"Anatole France",44.846141,-0.53569,33119,0,OBO:SA:AFRAN,Europe/Paris,,OBO, +OBO:SP:425,1,"Curie",44.806803,-0.629632,33318,0,OBO:SA:CURIE,Europe/Paris,,OBO, +OBO:SP:427,1,"Satie",44.842243,-0.509438,33167,0,OBO:SA:SATIE,Europe/Paris,,OBO, +OBO:SP:4274,1,"Charcot",44.920077,-0.619142,33056,0,OBO:SA:CHARCO,Europe/Paris,,OBO, +OBO:SP:4275,1,"Charcot",44.92012,-0.618663,33056,0,OBO:SA:CHARCO,Europe/Paris,,OBO, +OBO:SP:428,1,"Strasbourg",44.828548,-0.583734,33063,0,OBO:SA:STRAS,Europe/Paris,,OBO, +OBO:SP:43,1,"Balguerie",44.891084,-0.603312,33075,0,OBO:SA:BALGUE,Europe/Paris,,OBO, +OBO:SP:430,1,"Le Marquis",45.000467,-0.553961,33004,0,OBO:SA:MARQUI,Europe/Paris,,OBO, +OBO:SP:431,1,"Tarrey",44.950904,-0.490898,33003,0,OBO:SA:TARREY,Europe/Paris,,OBO, +OBO:SP:433,1,"Frères Robinson",44.849794,-0.656523,33281,0,OBO:SA:PCAPEY,Europe/Paris,,OBO, +OBO:SP:4334,1,"rue des Graves",44.881788,-0.659597,33162,0,OBO:SA:RGRAVE,Europe/Paris,,OBO, +OBO:SP:4335,1,"rue des Graves",44.881934,-0.659556,33162,0,OBO:SA:RGRAVE,Europe/Paris,,OBO, +OBO:SP:436,1,"Sévène",44.805017,-0.580372,33522,0,OBO:SA:SEVENE,Europe/Paris,,OBO, +OBO:SP:4396,1,"Place de l'Europe",44.858885,-0.581198,33063,0,OBO:SA:EUROP,Europe/Paris,,OBO, +OBO:SP:44,1,"Les Airelles",44.766464,-0.595324,33192,0,OBO:SA:AIREL,Europe/Paris,,OBO, +OBO:SP:440,1,"Chanzy",44.866148,-0.590444,33069,0,OBO:SA:BLANQU,Europe/Paris,,OBO, +OBO:SP:4429,1,"Blanqui",44.876402,-0.548206,33063,0,OBO:SA:BLANQI,Europe/Paris,,OBO, +OBO:SP:4430,1,"Piscine Tissot",44.879337,-0.547454,33063,0,OBO:SA:PISCIN,Europe/Paris,,OBO, +OBO:SP:444,1,"Satie",44.841635,-0.509008,33167,0,OBO:SA:SATIE,Europe/Paris,,OBO, +OBO:SP:445,1,"Bouthier",44.852231,-0.556903,33063,0,OBO:SA:BOUTH,Europe/Paris,,OBO, +OBO:SP:446,1,"Montaigne - Montesquieu",44.796425,-0.614038,33318,0,OBO:SA:MMQUIE,Europe/Paris,,OBO, +OBO:SP:4474,1,"Aristide Briand",44.825344,-0.637276,33281,0,OBO:SA:ABR35,Europe/Paris,,OBO, +OBO:SP:4475,1,"Aristide Briand",44.826389,-0.637863,33281,0,OBO:SA:ABR35,Europe/Paris,,OBO, +OBO:SP:449,1,"Brion",44.876589,-0.603091,33075,0,OBO:SA:BRION,Europe/Paris,,OBO, +OBO:SP:450,1,"Rives d'Arcins",44.794791,-0.535053,33039,0,OBO:SA:CCO02,Europe/Paris,,OBO, +OBO:SP:451,1,"CREPS",44.798949,-0.598529,33522,0,OBO:SA:CREPS,Europe/Paris,,OBO, +OBO:SP:4514,1,"Fraternité",44.838933,-0.543533,33167,0,OBO:SA:FRAT08,Europe/Paris,,OBO, +OBO:SP:452,1,"Eiffel",44.786217,-0.639287,33318,0,OBO:SA:EIFFE,Europe/Paris,,OBO, +OBO:SP:4534,1,"Eglise St Martin",44.771381,-0.54202,33550,0,OBO:SA:EMARTI,Europe/Paris,,OBO, +OBO:SP:455,1,"Navarre",44.829578,-0.58171,33063,0,OBO:SA:NAVAR,Europe/Paris,,OBO, +OBO:SP:457,1,"Lestonnat",44.852358,-0.619033,33063,0,OBO:SA:LESTO,Europe/Paris,,OBO, +OBO:SP:4574,1,"Luze",44.855451,-0.577849,33063,0,OBO:SA:LUZE,Europe/Paris,,OBO, +OBO:SP:4575,1,"Préfecture",44.836108,-0.587662,33063,0,OBO:SA:PREFE,Europe/Paris,,OBO, +OBO:SP:458,1,"Le Chiquet",44.803891,-0.620291,33318,0,OBO:SA:CHIQUE,Europe/Paris,,OBO, +OBO:SP:459,1,"Martinique",44.854418,-0.572423,33063,0,OBO:SA:MARTIN,Europe/Paris,,OBO, +OBO:SP:460,1,"Plaisance",44.816436,-0.68678,33281,0,OBO:SA:PLAIS2,Europe/Paris,,OBO, +OBO:SP:461,1,"Cenon Marègue",44.848343,-0.507501,33119,0,OBX:SA:MAREG,Europe/Paris,,OBO, +OBO:SP:4610,1,"Parc Municipal",44.830508,-0.526803,33167,0,OBO:SA:FLPAR,Europe/Paris,,OBO, +OBO:SP:4611,1,"Parc Municipal",44.830476,-0.526953,33167,0,OBO:SA:FLPAR,Europe/Paris,,OBO, +OBO:SP:462,1,"Eglise du Haillan",44.873519,-0.678261,33200,0,OBO:SA:EGHAIL,Europe/Paris,,OBO, +OBO:SP:463,1,"Campana",44.81856,-0.625364,33281,0,OBO:SA:CAMPN,Europe/Paris,,OBO, +OBO:SP:464,1,"Quatre Castéra",44.806,-0.539379,33039,0,OBO:SA:4CASTE,Europe/Paris,,OBO, +OBO:SP:465,1,"Mairie d'Artigues",44.859733,-0.4924,33013,0,OBO:SA:MARTIG,Europe/Paris,,OBO, +OBO:SP:4651,1,"Malartic",44.771067,-0.59954,33192,0,OBO:SA:MALART,Europe/Paris,,OBO, +OBO:SP:467,1,"Cassin",44.833349,-0.696099,33281,0,OBO:SA:CASS,Europe/Paris,,OBO, +OBO:SP:468,1,"Cotor Laburthe",44.781841,-0.624046,33192,0,OBO:SA:RPESS,Europe/Paris,,OBO, +OBO:SP:4680,1,"Buttinière",44.86416,-0.524812,33249,0,OBX:SA:BUTTI,Europe/Paris,,OBO, +OBO:SP:469,1,"Cruchet",44.893522,-0.552827,33063,0,OBO:SA:CRUCH,Europe/Paris,,OBO, +OBO:SP:47,1,"Mirambeau",45.025068,-0.566758,33004,0,OBO:SA:MIREMB,Europe/Paris,,OBO, +OBO:SP:470,1,"La Blanche",44.945185,-0.511075,33003,0,OBO:SA:LABLAN,Europe/Paris,,OBO, +OBO:SP:4700,1,"Richaud",44.889273,-0.562789,33063,0,OBO:SA:RICHA,Europe/Paris,,OBO, +OBO:SP:471,1,"Taffanel",44.811371,-0.573927,33063,0,OBO:SA:TAFFA,Europe/Paris,,OBO, +OBO:SP:472,1,"Maréchal Foch",44.769411,-0.544148,33550,0,OBO:SA:MFOCH,Europe/Paris,,OBO, +OBO:SP:473,1,"Techeney",44.87374,-0.486605,33013,0,OBO:SA:TECHEN,Europe/Paris,,OBO, +OBO:SP:4730,1,"Clairière de Lormont",44.880996,-0.495434,33249,0,OBO:SA:CLLORM,Europe/Paris,,OBO, +OBO:SP:4731,1,"Lormont Village",44.881629,-0.497388,33249,0,OBO:SA:LORVIL,Europe/Paris,,OBO, +OBO:SP:4732,1,"Domaine du Manoir",44.880556,-0.49798,33249,0,OBO:SA:DOMANO,Europe/Paris,,OBO, +OBO:SP:4733,1,"Domaine du Manoir",44.8808,-0.497945,33249,0,OBO:SA:DOMANO,Europe/Paris,,OBO, +OBO:SP:4734,1,"La Cascade",44.870391,-0.501947,33013,0,OBO:SA:CASCAD,Europe/Paris,,OBO, +OBO:SP:4735,1,"La Cascade",44.870463,-0.502522,33013,0,OBO:SA:CASCAD,Europe/Paris,,OBO, +OBO:SP:4736,1,"Buttinière",44.864212,-0.524029,33249,0,OBX:SA:BUTTI,Europe/Paris,,OBO, +OBO:SP:474,1,"Z.I de Cestas",44.762615,-0.727819,33318,0,OBO:SA:ZICEST,Europe/Paris,,OBO, +OBO:SP:4740,1,"La Toque cuivrée",44.87423,-0.489081,33013,0,OBO:SA:TOQCUI,Europe/Paris,,OBO, +OBO:SP:4741,1,"Stade",44.871671,-0.477009,33013,0,OBO:SA:STAD67,Europe/Paris,,OBO, +OBO:SP:4742,1,"Z.A Artigues",44.86844,-0.494931,33013,0,OBO:SA:ZAARTI,Europe/Paris,,OBO, +OBO:SP:475,1,"Ecole de Management",44.796562,-0.602642,33522,0,OBO:SA:MANAG,Europe/Paris,,OBO, +OBO:SP:4750,1,"Lissandre",44.869205,-0.537333,33249,0,OBO:SA:LISS91,Europe/Paris,,OBO, +OBO:SP:476,1,"Rue du Stand",44.819485,-0.612774,33318,0,OBO:SA:RSTAN,Europe/Paris,,OBO, +OBO:SP:477,1,"MSF",44.826953,-0.678681,33281,0,OBO:SA:FONT49,Europe/Paris,,OBO, +OBO:SP:4770,1,"Hameaux de l'Alouette",44.784348,-0.690876,33318,0,OBO:SA:HAMALO,Europe/Paris,,OBO, +OBO:SP:4771,1,"Hameaux de l'Alouette",44.783804,-0.690435,33318,0,OBO:SA:HAMALO,Europe/Paris,,OBO, +OBO:SP:4772,1,"Dauphiné",44.78558,-0.692033,33318,0,OBO:SA:DAUPHI,Europe/Paris,,OBO, +OBO:SP:4790,1,"Auriol",44.762293,-0.581635,33550,0,OBO:SA:AURIO,Europe/Paris,,OBO, +OBO:SP:480,1,"Sembat",44.815629,-0.609411,33318,0,OBO:SA:SEBAT,Europe/Paris,,OBO, +OBO:SP:4800,1,"Richaud",44.889215,-0.563774,33063,0,OBO:SA:RICHA,Europe/Paris,,OBO, +OBO:SP:483,1,"Acacias",44.885297,-0.529284,33249,0,OBO:SA:ACACI,Europe/Paris,,OBO, +OBO:SP:4831,1,"Mesquita",44.894439,-0.505832,33096,0,OBO:SA:MESQUI,Europe/Paris,,OBO, +OBO:SP:4834,1,"Cholet",44.941728,-0.528599,33003,0,OBO:SA:CHOLET,Europe/Paris,,OBO, +OBO:SP:4835,1,"Cholet",44.941684,-0.528571,33434,0,OBO:SA:CHOLET,Europe/Paris,,OBO, +OBO:SP:4836,1,"Quinsus",44.952465,-0.497697,33003,0,OBO:SA:QUINSU,Europe/Paris,,OBO, +OBO:SP:4850,1,"Saint Vincent de Paul",44.954471,-0.468198,33487,0,OBO:SA:STVIPA,Europe/Paris,,OBO, +OBO:SP:4860,1,"Gambetta Mériadeck",44.840098,-0.581355,33063,0,OBO:SA:MICHEL,Europe/Paris,,OBO, +OBO:SP:4861,1,"Saint-Augustin",44.832119,-0.609496,33063,0,OBO:SA:SAUGUS,Europe/Paris,,OBO, +OBO:SP:4862,1,"Saint-Augustin",44.83214,-0.609687,33063,0,OBO:SA:SAUGUS,Europe/Paris,,OBO, +OBO:SP:487,1,"Palombes",44.864284,-0.532829,33249,0,OBO:SA:PALOMB,Europe/Paris,,OBO, +OBO:SP:488,1,"Prof. Bernard",44.770848,-0.615417,33192,0,OBO:SA:PBERN,Europe/Paris,,OBO, +OBO:SP:4880,1,"4 Pavillons (vers Buttinière)",44.865606,-0.51446,33249,0,OBO:SA:4PAVI,Europe/Paris,,OBO, +OBO:SP:49,1,"Chemin de Suzon",44.811334,-0.582344,33522,0,OBO:SA:CSUZO,Europe/Paris,,OBO, +OBO:SP:490,1,"Boncour",44.813031,-0.664955,33318,0,OBO:SA:BONCO,Europe/Paris,,OBO, +OBO:SP:4911,1,"Mattéoti",44.830545,-0.544308,33063,0,OBO:SA:MATTE,Europe/Paris,,OBO, +OBO:SP:494,1,"Jean Prat",44.932457,-0.503452,33003,0,OBO:SA:JPRAT,Europe/Paris,,OBO, +OBO:SP:4940,1,"Pépinières",44.910947,-0.62355,33056,0,OBO:SA:PEPI77,Europe/Paris,,OBO, +OBO:SP:4941,1,"Pépinières",44.910874,-0.623051,33056,0,OBO:SA:PEPI77,Europe/Paris,,OBO, +OBO:SP:495,1,"Montherlant",44.794766,-0.580744,33550,0,OBO:SA:MONTH,Europe/Paris,,OBO, +OBO:SP:4950,1,"Lycée Sud Médoc",44.906197,-0.715207,33376,0,OBO:SA:LSMED,Europe/Paris,,OBO, +OBO:SP:4970,1,"Epis",44.87317,-0.502133,33013,0,OBO:SA:EPIS66,Europe/Paris,,OBO, +OBO:SP:4971,1,"Epis",44.872926,-0.502422,33013,0,OBO:SA:EPIS66,Europe/Paris,,OBO, +OBO:SP:5,1,"Verts Coteaux",44.834906,-0.512627,33167,0,OBO:SA:VERTC,Europe/Paris,,OBO, +OBO:SP:50,1,"Clavé",44.79087,-0.656447,33318,0,OBO:SA:HLEVQU,Europe/Paris,,OBO, +OBO:SP:5010,1,"Manaud",44.876246,-0.581964,33075,0,OBO:SA:RMANAU,Europe/Paris,,OBO, +OBO:SP:5011,1,"Manaud",44.876233,-0.581519,33075,0,OBO:SA:RMANAU,Europe/Paris,,OBO, +OBO:SP:502,1,"Hameau de la Reine",44.781695,-0.62024,33192,0,OBO:SA:REINE,Europe/Paris,,OBO, +OBO:SP:503,1,"Parc Sourreil",44.792132,-0.581943,33550,0,OBO:SA:PSOURR,Europe/Paris,,OBO, +OBO:SP:504,1,"Cèdres",44.830037,-0.516401,33167,0,OBO:SA:CEDRE,Europe/Paris,,OBO, +OBO:SP:505,1,"Tivoli",44.856172,-0.59068,33063,0,OBO:SA:RTIVOL,Europe/Paris,,OBO, +OBO:SP:5070,1,"Parc Haut Brion",44.813503,-0.612705,33318,0,OBO:SA:PHBRIO,Europe/Paris,,OBO, +OBO:SP:508,1,"Métairie",44.896828,-0.740012,33449,0,OBO:SA:METAIE,Europe/Paris,,OBO, +OBO:SP:5090,1,"RPA Gambetta",44.842279,-0.539234,33119,0,OBO:SA:RPAGA,Europe/Paris,,OBO, +OBO:SP:5091,1,"RPA Gambetta",44.842324,-0.538667,33167,0,OBO:SA:RPAGA,Europe/Paris,,OBO, +OBO:SP:51,1,"Martouret",44.836653,-0.511508,33167,0,OBO:SA:MARTO,Europe/Paris,,OBO, +OBO:SP:510,1,"Petit Peyronnet",44.931603,-0.545978,33434,0,OBO:SA:PTPEYR,Europe/Paris,,OBO, +OBO:SP:513,1,"La Paix",44.83895,-0.536225,33167,0,OBO:SA:PAIX,Europe/Paris,,OBO, +OBO:SP:514,1,"Carnot",44.796028,-0.672732,33318,0,OBO:SA:CART46,Europe/Paris,,OBO, +OBO:SP:5141,1,"Chemin du Sourd",44.888036,-0.511682,33096,0,OBO:SA:CHSOUR,Europe/Paris,,OBO, +OBO:SP:515,1,"Rue du Réduit",44.883447,-0.59756,33075,0,OBO:SA:REDUI,Europe/Paris,,OBO, +OBO:SP:516,1,"Tourville",44.872898,-0.559404,33063,0,OBO:SA:TOURVI,Europe/Paris,,OBO, +OBO:SP:518,1,"La Générale",44.763689,-0.561256,33550,0,OBO:SA:LAGEN,Europe/Paris,,OBO, +OBO:SP:5185,1,"Allée de la Chambre",44.934814,-0.75756,33376,0,OBO:SA:CHAMBR,Europe/Paris,,OBO, +OBO:SP:5186,1,"Allée de la Chambre",44.933888,-0.75831,33376,0,OBO:SA:CHAMBR,Europe/Paris,,OBO, +OBO:SP:5187,1,"Genêts",44.927924,-0.757415,33376,0,OBO:SA:GENETS,Europe/Paris,,OBO, +OBO:SP:5188,1,"Genêts",44.927502,-0.756841,33376,0,OBO:SA:GENETS,Europe/Paris,,OBO, +OBO:SP:5189,1,"Galips",44.921864,-0.746555,33376,0,OBO:SA:GALIPS,Europe/Paris,,OBO, +OBO:SP:5190,1,"Galips",44.921802,-0.746525,33376,0,OBO:SA:GALIPS,Europe/Paris,,OBO, +OBO:SP:5191,1,"Mathyadeux",44.919598,-0.678164,33519,0,OBO:SA:MATHYA,Europe/Paris,,OBO, +OBO:SP:5192,1,"Four à Chaux",44.917896,-0.66666,33519,0,OBO:SA:FCHAUX,Europe/Paris,,OBO, +OBO:SP:5193,1,"Gelès",44.914421,-0.666014,33519,0,OBO:SA:GELEST,Europe/Paris,,OBO, +OBO:SP:5195,1,"Tanaïs",44.928737,-0.675464,33519,0,OBO:SA:TANAIS,Europe/Paris,,OBO, +OBO:SP:5196,1,"Machadey",44.922681,-0.670805,33519,0,OBO:SA:MACHAD,Europe/Paris,,OBO, +OBO:SP:5198,1,"Lycée Jean Monnet",44.916143,-0.634731,33056,0,OBO:SA:LJMONN,Europe/Paris,,OBO, +OBO:SP:52,1,"Roux",44.874558,-0.697723,33449,0,OBO:SA:ROUX,Europe/Paris,,OBO, +OBO:SP:520,1,"Cimetière Nord (av Périé)",44.875772,-0.59021,33075,0,OBO:SA:CNORD,Europe/Paris,,OBO, +OBO:SP:5205,1,"Jean Zay",44.854202,-0.514304,33119,0,OBX:SA:JZAY,Europe/Paris,,OBO, +OBO:SP:5206,1,"Jean Zay",44.854118,-0.514096,33119,0,OBX:SA:JZAY,Europe/Paris,,OBO, +OBO:SP:5207,1,"Goya",44.85347,-0.508949,33119,0,OBO:SA:GOYA,Europe/Paris,,OBO, +OBO:SP:5208,1,"Goya",44.853402,-0.508831,33119,0,OBO:SA:GOYA,Europe/Paris,,OBO, +OBO:SP:5210,1,"Pôle Universitaire de Gestion",44.844282,-0.557767,33063,0,OBO:SA:POLGE,Europe/Paris,,OBO, +OBO:SP:5211,1,"Pôle Universitaire de Gestion",44.844639,-0.558145,33063,0,OBO:SA:POLGE,Europe/Paris,,OBO, +OBO:SP:522,1,"Collège Gérard Philippe",44.799501,-0.623894,33318,0,OBO:SA:GEPHIL,Europe/Paris,,OBO, +OBO:SP:5220,1,"Floirac Dravemont",44.846017,-0.510092,33167,0,OBX:SA:DRAVE,Europe/Paris,,OBO, +OBO:SP:5221,1,"Clemenceau",44.851329,-0.508828,33119,0,OBO:SA:CLEM32,Europe/Paris,,OBO, +OBO:SP:5222,1,"Clemenceau",44.851136,-0.508943,33119,0,OBO:SA:CLEM32,Europe/Paris,,OBO, +OBO:SP:5225,1,"Mérignac Centre",44.841401,-0.646728,33281,0,OBX:SA:TMERI,Europe/Paris,,OBO, +OBO:SP:5226,1,"Floirac Dravemont",44.846022,-0.510219,33167,0,OBX:SA:DRAVE,Europe/Paris,,OBO, +OBO:SP:524,1,"Beauséjour",44.799731,-0.684988,33318,0,OBO:SA:BEAUSE,Europe/Paris,,OBO, +OBO:SP:525,1,"Verts Coteaux",44.834389,-0.513013,33167,0,OBO:SA:VERTC,Europe/Paris,,OBO, +OBO:SP:526,1,"Racine",44.792859,-0.584824,33522,0,OBO:SA:RACI40,Europe/Paris,,OBO, +OBO:SP:5263,1,"Pont de l'Orient",44.804767,-0.648819,33318,0,OBO:SA:PORIEN,Europe/Paris,,OBO, +OBO:SP:5271,1,"Parc Peyandreau",44.83325,-0.664882,33281,0,OBO:SA:LRTIGU,Europe/Paris,,OBO, +OBO:SP:5273,1,"Kennedy",44.834447,-0.670913,33281,0,OBO:SA:KENNE,Europe/Paris,,OBO, +OBO:SP:5274,1,"Kennedy",44.834267,-0.670382,33281,0,OBO:SA:KENNE,Europe/Paris,,OBO, +OBO:SP:5275,1,"Gare de Parempuyre",44.945095,-0.616988,33312,0,OBO:SA:GARPAR,Europe/Paris,,OBO, +OBO:SP:5276,1,"Gare de Parempuyre",44.944789,-0.616156,33312,0,OBO:SA:GARPAR,Europe/Paris,,OBO, +OBO:SP:5277,1,"Grattequina",44.944014,-0.560622,33063,0,OBO:SA:LABAR2,Europe/Paris,,OBO, +OBO:SP:5278,1,"Grattequina",44.943968,-0.560644,33063,0,OBO:SA:LABAR2,Europe/Paris,,OBO, +OBO:SP:5279,1,"Dassault",44.783797,-0.652836,33318,0,OBO:SA:DASSAU,Europe/Paris,,OBO, +OBO:SP:5280,1,"Cazalet (Bd du Haut Livrac)",44.798842,-0.672119,33318,0,OBO:SA:CAZAL,Europe/Paris,,OBO, +OBO:SP:5281,1,"Cazalet",44.799241,-0.670145,33318,0,OBO:SA:CAZAL,Europe/Paris,,OBO, +OBO:SP:5283,1,"Fontaine d'Arlac",44.826074,-0.625457,33281,0,OBX:SA:ARLAC,Europe/Paris,,OBO, +OBO:SP:5284,1,"Peychotte",44.826165,-0.619371,33281,0,OBX:SA:PEYCHO,Europe/Paris,,OBO, +OBO:SP:5285,1,"Pessac Centre (Trendel)",44.806057,-0.633432,33318,0,OBO:SA:PCENTR,Europe/Paris,,OBO, +OBO:SP:5286,1,"Pessac Centre (Trendel)",44.805886,-0.632877,33318,0,OBO:SA:PCENTR,Europe/Paris,,OBO, +OBO:SP:5288,1,"Flandres",44.793488,-0.687325,33318,0,OBO:SA:FLANDR,Europe/Paris,,OBO, +OBO:SP:5289,1,"Canaris",44.790877,-0.690495,33318,0,OBO:SA:CNARI,Europe/Paris,,OBO, +OBO:SP:529,1,"Gasquet",44.886003,-0.678788,33200,0,OBO:SA:GASQU,Europe/Paris,,OBO, +OBO:SP:5290,1,"Cap de Bos",44.793257,-0.681259,33318,0,OBO:SA:CABOS,Europe/Paris,,OBO, +OBO:SP:5291,1,"Ste Marie",44.803156,-0.645474,33318,0,OBO:SA:STMAR,Europe/Paris,,OBO, +OBO:SP:5292,1,"Ste Marie",44.803153,-0.645575,33318,0,OBO:SA:STMAR,Europe/Paris,,OBO, +OBO:SP:5293,1,"Pessac Centre (station Tram)",44.804364,-0.632563,33318,0,STE:SA:OCE87581751,Europe/Paris,,OBO, +OBO:SP:5294,1,"Pessac Centre (station Tram)",44.804804,-0.631515,33318,0,STE:SA:OCE87581751,Europe/Paris,,OBO, +OBO:SP:5297,1,"Pessac Centre (station Tram)",44.804543,-0.6326,33318,0,STE:SA:OCE87581751,Europe/Paris,,OBO, +OBO:SP:5298,1,"Lycée Pape Clément",44.809091,-0.649429,33318,0,OBO:SA:LYPACL,Europe/Paris,,OBO, +OBO:SP:5299,1,"Lycée Pape Clément",44.808299,-0.649403,33318,0,OBO:SA:LYPACL,Europe/Paris,,OBO, +OBO:SP:53,1,"Breteil",44.880008,-0.647957,33162,0,OBO:SA:BRETEI,Europe/Paris,,OBO, +OBO:SP:5300,1,"Domaine de Lucatet",44.82152,-0.66556,33281,0,OBO:SA:LUCAT,Europe/Paris,,OBO, +OBO:SP:5301,1,"Les Fauvettes",44.82465,-0.663029,33281,0,OBO:SA:CLCED,Europe/Paris,,OBO, +OBO:SP:5302,1,"Les Fauvettes",44.825381,-0.663266,33281,0,OBO:SA:CLCED,Europe/Paris,,OBO, +OBO:SP:5303,1,"Place du 11 Novembre",44.82847,-0.648573,33281,0,OBO:SA:P11NO,Europe/Paris,,OBO, +OBO:SP:5304,1,"Stade Cruchon",44.818814,-0.648959,33281,0,OBO:SA:BISSY,Europe/Paris,,OBO, +OBO:SP:5305,1,"Stade Cruchon",44.818499,-0.648926,33281,0,OBO:SA:BISSY,Europe/Paris,,OBO, +OBO:SP:5309,1,"Volta",44.853787,-0.676702,33281,0,OBO:SA:PALISS,Europe/Paris,,OBO, +OBO:SP:531,1,"Saint Romain",44.849247,-0.527866,33119,0,OBO:SA:SROMAI,Europe/Paris,,OBO, +OBO:SP:5310,1,"Volta",44.85373,-0.676521,33281,0,OBO:SA:PALISS,Europe/Paris,,OBO, +OBO:SP:5313,1,"19 Mars 1962",44.876543,-0.642877,33162,0,OBO:SA:AVTAI2,Europe/Paris,,OBO, +OBO:SP:5316,1,"Moussard",44.856924,-0.657063,33281,0,OBO:SA:CPINS,Europe/Paris,,OBO, +OBO:SP:5319,1,"Parc de Feydit",44.869801,-0.703075,33449,0,OBO:SA:FEYDI,Europe/Paris,,OBO, +OBO:SP:532,1,"Labatut",44.835273,-0.632701,33281,0,OBO:SA:LBATU,Europe/Paris,,OBO, +OBO:SP:5320,1,"Parc de Feydit",44.869521,-0.703082,33449,0,OBO:SA:FEYDI,Europe/Paris,,OBO, +OBO:SP:5321,1,"Corbiac",44.873507,-0.703561,33449,0,OBO:SA:ECORB,Europe/Paris,,OBO, +OBO:SP:5322,1,"Corbiac",44.872617,-0.703489,33449,0,OBO:SA:ECORB,Europe/Paris,,OBO, +OBO:SP:5323,1,"Feydit",44.880142,-0.704607,33449,0,OBO:SA:FEYDI2,Europe/Paris,,OBO, +OBO:SP:5324,1,"Feydit",44.879841,-0.704714,33449,0,OBO:SA:FEYDI2,Europe/Paris,,OBO, +OBO:SP:5325,1,"Croix Vieille",44.912561,-0.729176,33376,0,OBO:SA:CROVIE,Europe/Paris,,OBO, +OBO:SP:5326,1,"Croix Vieille",44.912542,-0.728401,33376,0,OBO:SA:CROVIE,Europe/Paris,,OBO, +OBO:SP:5327,1,"Vignalot",44.860755,-0.728534,33449,0,OBO:SA:VIGNAL,Europe/Paris,,OBO, +OBO:SP:5328,1,"Vignalot",44.860694,-0.728467,33449,0,OBO:SA:VIGNAL,Europe/Paris,,OBO, +OBO:SP:5329,1,"Darwin",44.859974,-0.726543,33449,0,OBO:SA:DARWIN,Europe/Paris,,OBO, +OBO:SP:533,1,"Procession",44.815024,-0.694525,33281,0,OBO:SA:PROCE,Europe/Paris,,OBO, +OBO:SP:5330,1,"Darwin",44.859833,-0.725913,33449,0,OBO:SA:DARWIN,Europe/Paris,,OBO, +OBO:SP:5331,1,"Sieyès",44.86101,-0.723634,33449,0,OBO:SA:SIEYES,Europe/Paris,,OBO, +OBO:SP:5332,1,"Sieyès",44.860721,-0.723906,33449,0,OBO:SA:SIEYES,Europe/Paris,,OBO, +OBO:SP:5334,1,"République (Boétie)",44.895234,-0.712858,33449,0,OBO:SA:PREPUB,Europe/Paris,,OBO, +OBO:SP:534,1,"Peyronnet (côté Poste)",44.827974,-0.560154,33063,0,OBO:SA:PEYRO,Europe/Paris,,OBO, +OBO:SP:535,1,"Paulin de Nole",44.954842,-0.498353,33003,0,OBO:SA:PNOLE,Europe/Paris,,OBO, +OBO:SP:5350,1,"IMA",44.841686,-0.717969,33281,0,OBO:SA:IMA,Europe/Paris,,OBO, +OBO:SP:5355,1,"Marronniers",44.844657,-0.681577,33281,0,OBO:SA:MARRO,Europe/Paris,,OBO, +OBO:SP:5356,1,"Marronniers",44.844776,-0.681255,33281,0,OBO:SA:MARRO,Europe/Paris,,OBO, +OBO:SP:5357,1,"Diesel",44.836614,-0.687104,33281,0,OBO:SA:DIESE,Europe/Paris,,OBO, +OBO:SP:5358,1,"Diesel",44.837064,-0.686868,33281,0,OBO:SA:DIESE,Europe/Paris,,OBO, +OBO:SP:5359,1,"Domaine de Pelus",44.830847,-0.684623,33281,0,OBO:SA:PELUS,Europe/Paris,,OBO, +OBO:SP:5360,1,"Pythagore",44.831371,-0.680782,33281,0,OBO:SA:PYTHA,Europe/Paris,,OBO, +OBO:SP:5361,1,"Pythagore",44.831294,-0.680675,33281,0,OBO:SA:PYTHA,Europe/Paris,,OBO, +OBO:SP:5363,1,"Stade Batany",44.842336,-0.607404,33063,0,OBO:SA:BATAN,Europe/Paris,,OBO, +OBO:SP:5374,1,"La Mouline",44.913333,-0.492834,33096,0,OBO:SA:CBLANM,Europe/Paris,,OBO, +OBO:SP:5375,1,"Combes",44.830509,-0.613838,33063,0,OBO:SA:COM13,Europe/Paris,,OBO, +OBO:SP:5376,1,"Combes",44.830828,-0.613732,33063,0,OBO:SA:COM13,Europe/Paris,,OBO, +OBO:SP:5377,1,"François Mitterrand",44.827994,-0.613853,33281,0,OBO:SA:FRMIT,Europe/Paris,,OBO, +OBO:SP:5378,1,"François Mitterrand",44.828043,-0.613742,33281,0,OBO:SA:FRMIT,Europe/Paris,,OBO, +OBO:SP:538,1,"Barthès",44.76894,-0.602326,33192,0,OBO:SA:BARTHS,Europe/Paris,,OBO, +OBO:SP:5380,1,"Moulin Rouge",44.839608,-0.603415,33063,0,OBO:SA:MROUG,Europe/Paris,,OBO, +OBO:SP:539,1,"Fougnet",44.772579,-0.712411,33318,0,OBO:SA:FOUGN,Europe/Paris,,OBO, +OBO:SP:5390,1,"Mendès France",44.879899,-0.512504,33249,0,OBO:SA:MFRANC,Europe/Paris,,OBO, +OBO:SP:5391,1,"Mendès France",44.879819,-0.512461,33249,0,OBO:SA:MFRANC,Europe/Paris,,OBO, +OBO:SP:5407,1,"Piscine Grand Parc",44.857663,-0.579967,33063,0,OBO:SA:PGPARC,Europe/Paris,,OBO, +OBO:SP:5408,1,"Piscine Grand Parc",44.857171,-0.579555,33063,0,OBO:SA:PGPARC,Europe/Paris,,OBO, +OBO:SP:541,1,"Frères Lumière",44.796474,-0.53259,33039,0,OBO:SA:FLUMI,Europe/Paris,,OBO, +OBO:SP:5417,1,"Hôpital Pellegrin",44.82998,-0.603507,33063,0,OBO:SA:GMAURI,Europe/Paris,,OBO, +OBO:SP:5418,1,"Blanchet",44.943707,-0.469473,33487,0,OBO:SA:BLANCH,Europe/Paris,,OBO, +OBO:SP:5419,1,"Blanchet",44.943399,-0.469822,33487,0,OBO:SA:BLANCH,Europe/Paris,,OBO, +OBO:SP:542,1,"Noutary",44.815994,-0.542212,33039,0,OBO:SA:NOUTA,Europe/Paris,,OBO, +OBO:SP:5424,1,"Bel Air",44.839876,-0.607651,33063,0,OBO:SA:BELAI,Europe/Paris,,OBO, +OBO:SP:5447,1,"Les Aubiers (station Tram)",44.873798,-0.574849,33063,0,OBO:SA:BOUTA,Europe/Paris,,OBO, +OBO:SP:5448,1,"Villabois (côté ZAC Vergers du Tasta)",44.885146,-0.588237,33075,0,OBO:SA:VBOIS,Europe/Paris,,OBO, +OBO:SP:5449,1,"Villabois",44.885181,-0.58687,33075,0,OBO:SA:VBOIS,Europe/Paris,,OBO, +OBO:SP:545,1,"Puyo",44.89834,-0.746492,33449,0,OBO:SA:PUYO,Europe/Paris,,OBO, +OBO:SP:5452,1,"Ecoparc",44.926671,-0.620925,33056,0,OBO:SA:ECOPAR,Europe/Paris,,OBO, +OBO:SP:5455,1,"Montalieu",44.87996,-0.660111,33162,0,OBO:SA:MONTAL,Europe/Paris,,OBO, +OBO:SP:5457,1,"Cimetière de Lormont",44.87807,-0.521021,33249,0,OBO:SA:CIMLOR,Europe/Paris,,OBO, +OBO:SP:5458,1,"Reinson",44.87726,-0.568098,33063,0,OBO:SA:CCO38,Europe/Paris,,OBO, +OBO:SP:5459,1,"Reinson",44.877198,-0.567498,33063,0,OBO:SA:CCO38,Europe/Paris,,OBO, +OBO:SP:546,1,"Antoune",44.862933,-0.654122,33162,0,OBO:SA:ANTOUN,Europe/Paris,,OBO, +OBO:SP:5460,1,"Laroque",44.874257,-0.57067,33063,0,OBO:SA:LAROQ,Europe/Paris,,OBO, +OBO:SP:5467,1,"Espace François Mitterrand",44.947632,-0.604092,33312,0,OBO:SA:FMITTE,Europe/Paris,,OBO, +OBO:SP:5468,1,"Espace François Mitterrand",44.947596,-0.604103,33312,0,OBO:SA:FMITTE,Europe/Paris,,OBO, +OBO:SP:5469,1,"Lycée St-Michel",44.910807,-0.63748,33056,0,OBO:SA:GAM37,Europe/Paris,,OBO, +OBO:SP:547,1,"Cours d'Ornano",44.832736,-0.613538,33281,0,OBO:SA:CORNAN,Europe/Paris,,OBO, +OBO:SP:5470,1,"Les Aubiers (station Tram)",44.873709,-0.57483,33063,0,OBO:SA:BOUTA,Europe/Paris,,OBO, +OBO:SP:5471,1,"Parc des Lacs",44.921243,-0.615158,33056,0,OBO:SA:PLACS,Europe/Paris,,OBO, +OBO:SP:5472,1,"Parc des Lacs",44.921168,-0.615267,33056,0,OBO:SA:PLACS,Europe/Paris,,OBO, +OBO:SP:5473,1,"Nungesser",44.925124,-0.619696,33056,0,OBO:SA:NUNGES,Europe/Paris,,OBO, +OBO:SP:5474,1,"Nungesser",44.925087,-0.619745,33056,0,OBO:SA:NUNGES,Europe/Paris,,OBO, +OBO:SP:5475,1,"Parc des Oliviers",44.950824,-0.599906,33312,0,OBO:SA:VASSIV,Europe/Paris,,OBO, +OBO:SP:5476,1,"CAF",44.889773,-0.557597,33063,0,OBO:SA:LELAC,Europe/Paris,,OBO, +OBO:SP:5479,1,"Zone de Fret",44.894487,-0.603987,33075,0,OBO:SA:BZFRET,Europe/Paris,,OBO, +OBO:SP:548,1,"Parc de l'Etoile",44.822847,-0.497817,33065,0,OBO:SA:PETOIL,Europe/Paris,,OBO, +OBO:SP:5480,1,"Reinson",44.876543,-0.56937,33063,0,OBO:SA:CCO38,Europe/Paris,,OBO, +OBO:SP:5481,1,"Reinson",44.876484,-0.569531,33063,0,OBO:SA:CCO38,Europe/Paris,,OBO, +OBO:SP:5485,1,"Alcide Lançon",44.910953,-0.641282,33056,0,OBO:SA:LANCON,Europe/Paris,,OBO, +OBO:SP:5486,1,"Alcide Lançon",44.910876,-0.641151,33056,0,OBO:SA:LANCON,Europe/Paris,,OBO, +OBO:SP:5487,1,"Latécoère",44.866928,-0.573524,33063,0,OBO:SA:LATECO,Europe/Paris,,OBO, +OBO:SP:5489,1,"Capdeboscq",44.89197,-0.514096,33096,0,OBO:SA:CAPSCQ,Europe/Paris,,OBO, +OBO:SP:549,1,"Tivoli",44.85615,-0.591629,33063,0,OBO:SA:RTIVOL,Europe/Paris,,OBO, +OBO:SP:5490,1,"Capdeboscq",44.891941,-0.514158,33096,0,OBO:SA:CAPSCQ,Europe/Paris,,OBO, +OBO:SP:5491,1,"Calmette",44.893185,-0.513577,33096,0,OBO:SA:CALM92,Europe/Paris,,OBO, +OBO:SP:5492,1,"Calmette",44.892777,-0.513652,33096,0,OBO:SA:CALM92,Europe/Paris,,OBO, +OBO:SP:5493,1,"Joliot Curie",44.895272,-0.513707,33096,0,OBO:SA:CURI92,Europe/Paris,,OBO, +OBO:SP:5494,1,"Joliot Curie",44.895206,-0.513779,33096,0,OBO:SA:CURI92,Europe/Paris,,OBO, +OBO:SP:5495,1,"La Gardette (Bassens - Carbon Blanc)",44.887794,-0.5176,33249,0,OBX:SA:LGARDE,Europe/Paris,,OBO, +OBO:SP:550,1,"Lauba",44.895702,-0.731149,33449,0,OBO:SA:LAUBA,Europe/Paris,,OBO, +OBO:SP:5503,1,"Jardin Public",44.900574,-0.517032,33032,0,OBO:SA:JPUB90,Europe/Paris,,OBO, +OBO:SP:5504,1,"La Gardette (Bassens - Carbon Blanc)",44.888003,-0.517562,33249,0,OBX:SA:LGARDE,Europe/Paris,,OBO, +OBO:SP:5506,1,"Carbouney",44.913181,-0.488778,33096,0,OBO:SA:CARBOU,Europe/Paris,,OBO, +OBO:SP:5507,1,"Carbouney",44.913123,-0.488635,33096,0,OBO:SA:CARBOU,Europe/Paris,,OBO, +OBO:SP:5509,1,"La Mouline",44.913253,-0.492791,33096,0,OBO:SA:MOULIN,Europe/Paris,,OBO, +OBO:SP:551,1,"Arsonval",44.779681,-0.658491,33318,0,OBO:SA:ARSON,Europe/Paris,,OBO, +OBO:SP:5511,1,"La Gardette (Bassens - Carbon Blanc)",44.887895,-0.517568,33249,0,OBX:SA:LGARDE,Europe/Paris,,OBO, +OBO:SP:5513,1,"11 Novembre",44.894849,-0.501128,33096,0,OBO:SA:11N95,Europe/Paris,,OBO, +OBO:SP:5514,1,"11 Novembre",44.89491,-0.501196,33096,0,OBO:SA:11N95,Europe/Paris,,OBO, +OBO:SP:5515,1,"Guyon",44.898721,-0.50066,33096,0,OBO:SA:GUYON2,Europe/Paris,,OBO, +OBO:SP:5516,1,"Guyon",44.898814,-0.500856,33096,0,OBO:SA:GUYON2,Europe/Paris,,OBO, +OBO:SP:5517,1,"Lannes (Collège Manon Cormier)",44.90014,-0.506518,33096,0,OBO:SA:LANNES,Europe/Paris,,OBO, +OBO:SP:5518,1,"Lannes (Collège Manon Cormier)",44.900131,-0.506239,33096,0,OBO:SA:LANNES,Europe/Paris,,OBO, +OBO:SP:5519,1,"Centre de Voile",44.878904,-0.582247,33075,0,OBO:SA:MESSA,Europe/Paris,,OBO, +OBO:SP:5520,1,"Centre de Voile",44.87885,-0.582257,33075,0,OBO:SA:MESSA,Europe/Paris,,OBO, +OBO:SP:5521,1,"Carriet",44.882926,-0.52248,33249,0,OBO:SA:CARR03,Europe/Paris,,OBO, +OBO:SP:5522,1,"Carriet",44.88287,-0.522539,33249,0,OBO:SA:CARR03,Europe/Paris,,OBO, +OBO:SP:5523,1,"Magendie",44.881829,-0.52468,33249,0,OBO:SA:MAGEN,Europe/Paris,,OBO, +OBO:SP:5524,1,"Stade Nautique",44.802613,-0.643906,33318,0,OBO:SA:ACIERI,Europe/Paris,,OBO, +OBO:SP:5525,1,"Stade Nautique",44.802554,-0.643776,33318,0,OBO:SA:ACIERI,Europe/Paris,,OBO, +OBO:SP:5526,1,"BA 106",44.81525,-0.7099,33281,0,OBO:SA:BA106,Europe/Paris,,OBO, +OBO:SP:553,1,"Jean Cocteau",44.875947,-0.50237,33249,0,OBO:SA:COCT66,Europe/Paris,,OBO, +OBO:SP:5536,1,"Tauzin",44.821105,-0.602051,33063,0,OBO:SA:TAUZIN,Europe/Paris,,OBO, +OBO:SP:5537,1,"Tauzin",44.821301,-0.601823,33063,0,OBO:SA:TAUZIN,Europe/Paris,,OBO, +OBO:SP:554,1,"Victor Hugo",44.895859,-0.735078,33449,0,OBO:SA:VHUG71,Europe/Paris,,OBO, +OBO:SP:5542,1,"St Louis",44.864071,-0.567386,33063,0,OBO:SA:STLOUI,Europe/Paris,,OBO, +OBO:SP:555,1,"Lange",44.78179,-0.607933,33192,0,OBO:SA:LANGE2,Europe/Paris,,OBO, +OBO:SP:5550,1,"Mounic",44.924644,-0.731452,33376,0,OBO:SA:MOUNIC,Europe/Paris,,OBO, +OBO:SP:5553,1,"Tronquet",44.915576,-0.745107,33376,0,OBO:SA:TRONQ,Europe/Paris,,OBO, +OBO:SP:5554,1,"Tronquet",44.915539,-0.745142,33376,0,OBO:SA:TRONQ,Europe/Paris,,OBO, +OBO:SP:5557,1,"Terres Neuves (station Tram)",44.815137,-0.549856,33039,0,OBX:SA:NEUVE,Europe/Paris,,OBO, +OBO:SP:5558,1,"Brascassat",44.813972,-0.554429,33063,0,OBO:SA:BRASCA,Europe/Paris,,OBO, +OBO:SP:5559,1,"Brascassat",44.813518,-0.555072,33063,0,OBO:SA:BRASCA,Europe/Paris,,OBO, +OBO:SP:556,1,"Madran",44.804972,-0.657365,33318,0,OBO:SA:MADRAN,Europe/Paris,,OBO, +OBO:SP:5560,1,"Jardin Botanique",44.843495,-0.556704,33063,0,OBO:SA:JBOTA,Europe/Paris,,OBO, +OBO:SP:5562,1,"Echangeur du Moulinat",44.869592,-0.497854,33013,0,OBO:SA:ECMOUL,Europe/Paris,,OBO, +OBO:SP:5563,1,"Buttinière",44.864245,-0.524703,33249,0,OBX:SA:BUTTI,Europe/Paris,,OBO, +OBO:SP:557,1,"Rébédech",44.832931,-0.523168,33167,0,OBO:SA:REBED,Europe/Paris,,OBO, +OBO:SP:5574,1,"Cicéron",44.805053,-0.661194,33318,0,OBO:SA:CICERO,Europe/Paris,,OBO, +OBO:SP:5575,1,"Cicéron",44.805244,-0.661421,33318,0,OBO:SA:CICERO,Europe/Paris,,OBO, +OBO:SP:5593,1,"Colverts",44.941783,-0.596013,33312,0,OBO:SA:COLVER,Europe/Paris,,OBO, +OBO:SP:5594,1,"Colverts",44.94185,-0.596182,33312,0,OBO:SA:COLVER,Europe/Paris,,OBO, +OBO:SP:5599,1,"Collège Chambéry",44.756672,-0.584338,33550,0,OBO:SA:CCHAMB,Europe/Paris,,OBO, +OBO:SP:560,1,"Côte de Caumont",44.844177,-0.525749,33167,0,OBO:SA:CAUMO,Europe/Paris,,OBO, +OBO:SP:5600,1,"Collège Chambéry",44.755984,-0.58499,33550,0,OBO:SA:CCHAMB,Europe/Paris,,OBO, +OBO:SP:5602,1,"Barrès",44.887077,-0.546105,33063,0,OBO:SA:BARRE,Europe/Paris,,OBO, +OBO:SP:5603,1,"Claveau",44.878568,-0.543602,33063,0,OBO:SA:CLAVEA,Europe/Paris,,OBO, +OBO:SP:5606,1,"Camping International",44.89833,-0.579075,33063,0,OBO:SA:CAMINT,Europe/Paris,,OBO, +OBO:SP:5607,1,"Camping International",44.898715,-0.579163,33063,0,OBO:SA:CAMINT,Europe/Paris,,OBO, +OBO:SP:5608,1,"Blanqui",44.875682,-0.547312,33063,0,OBO:SA:BLANQI,Europe/Paris,,OBO, +OBO:SP:5609,1,"Blanqui",44.876128,-0.549431,33063,0,OBO:SA:BLANQI,Europe/Paris,,OBO, +OBO:SP:561,1,"Racine",44.861733,-0.615392,33063,0,OBO:SA:RACIN,Europe/Paris,,OBO, +OBO:SP:5610,1,"Brandenburg",44.874275,-0.545651,33063,0,OBX:SA:BRANRG,Europe/Paris,,OBO, +OBO:SP:5612,1,"Bolivar",44.876132,-0.55184,33063,0,OBO:SA:BOLIVA,Europe/Paris,,OBO, +OBO:SP:5613,1,"Labarde",44.880355,-0.550852,33063,0,OBO:SA:LABARD,Europe/Paris,,OBO, +OBO:SP:5614,1,"Piscine Tissot",44.878624,-0.547764,33063,0,OBO:SA:PISCIN,Europe/Paris,,OBO, +OBO:SP:5617,1,"Gare Saint Jean (arrêt de Descente)",44.824873,-0.55707,33063,0,OBO:SA:STJEAN,Europe/Paris,,OBO, +OBO:SP:5619,1,"Gare Saint Jean (arrêt de Montée)",44.826014,-0.556914,33063,0,OBO:SA:STJEAN,Europe/Paris,,OBO, +OBO:SP:562,1,"CREPS",44.799016,-0.598698,33522,0,OBO:SA:CREPS,Europe/Paris,,OBO, +OBO:SP:5621,1,"Galerie des Beaux Arts",44.839104,-0.581709,33063,0,OBO:SA:GBARTS,Europe/Paris,,OBO, +OBO:SP:5622,1,"Vigneau",44.830269,-0.662623,33281,0,OBO:SA:VIGNE,Europe/Paris,,OBO, +OBO:SP:5623,1,"Vigneau",44.831244,-0.665321,33281,0,OBO:SA:VIGNE,Europe/Paris,,OBO, +OBO:SP:5624,1,"Lycée Daguin",44.837126,-0.649009,33281,0,OBO:SA:DAGUIN,Europe/Paris,,OBO, +OBO:SP:5625,1,"Saint Aubin Cimetière",44.91274,-0.732435,33376,0,OBO:SA:SAUBIN,Europe/Paris,,OBO, +OBO:SP:5626,1,"Villepreux",44.912792,-0.737855,33376,0,OBO:SA:TVILLE,Europe/Paris,,OBO, +OBO:SP:5627,1,"Gare de Bègles",44.798615,-0.557521,33039,0,OBO:SA:GBEGLE,Europe/Paris,,OBO, +OBO:SP:5628,1,"Caychac",44.933695,-0.634081,33056,0,OBO:SA:TCAYCH,Europe/Paris,,OBO, +OBO:SP:5629,1,"La Paillère",44.795709,-0.605321,33318,0,OBO:SA:LAPAIL,Europe/Paris,,OBO, +OBO:SP:563,1,"La Gravière",44.883907,-0.676483,33200,0,OBO:SA:LAGRAV,Europe/Paris,,OBO, +OBO:SP:5633,1,"Dourout",44.808773,-0.582928,33522,0,OBO:SA:DOURO,Europe/Paris,,OBO, +OBO:SP:5636,1,"8 Mai 1945",44.867174,-0.603563,33069,0,OBO:SA:8Mai4,Europe/Paris,,OBO, +OBO:SP:5638,1,"8 Mai 1945",44.867342,-0.603105,33069,0,OBO:SA:8Mai4,Europe/Paris,,OBO, +OBO:SP:5641,1,"Place Meignan",44.902329,-0.50772,33032,0,OBO:SA:PMEIGN,Europe/Paris,,OBO, +OBO:SP:5643,1,"Place Meignan",44.902254,-0.507525,33032,0,OBO:SA:PMEIGN,Europe/Paris,,OBO, +OBO:SP:5644,1,"René Coty",44.926562,-0.492605,33003,0,OBO:SA:RCOT93,Europe/Paris,,OBO, +OBO:SP:5645,1,"Pontet",44.935524,-0.484434,33003,0,OBO:SA:PONTET,Europe/Paris,,OBO, +OBO:SP:5646,1,"Pontet",44.93553,-0.484231,33003,0,OBO:SA:PONTET,Europe/Paris,,OBO, +OBO:SP:5647,1,"Sauvin",44.945095,-0.489331,33003,0,OBO:SA:SAUVIN,Europe/Paris,,OBO, +OBO:SP:5648,1,"Sauvin",44.944481,-0.487909,33003,0,OBO:SA:SAUVIN,Europe/Paris,,OBO, +OBO:SP:5649,1,"Parabelle (arrêt de Descente)",44.941703,-0.485706,33003,0,OBO:SA:PARABE,Europe/Paris,,OBO, +OBO:SP:565,1,"Place Moscou",44.844302,-0.60957,33063,0,OBO:SA:MOSCO,Europe/Paris,,OBO, +OBO:SP:5650,1,"Parabelle",44.941866,-0.485666,33003,0,OBO:SA:PARABE,Europe/Paris,,OBO, +OBO:SP:5651,1,"Les Iris",44.759137,-0.582788,33550,0,OBO:SA:CARN21,Europe/Paris,,OBO, +OBO:SP:5653,1,"Stade Cap de Bos",44.788398,-0.68265,33318,0,OBO:SA:STCPBO,Europe/Paris,,OBO, +OBO:SP:5659,1,"Dassault",44.783979,-0.652784,33318,0,OBO:SA:DASSAU,Europe/Paris,,OBO, +OBO:SP:566,1,"Mirail",44.861667,-0.490797,33013,0,OBO:SA:MIRAIL,Europe/Paris,,OBO, +OBO:SP:5661,1,"Musée d'Aquitaine",44.834939,-0.574211,33063,0,OBX:SA:MUSEE,Europe/Paris,,OBO, +OBO:SP:5664,1,"Gustave Eiffel",44.853893,-0.669423,33281,0,OBO:SA:GUEIFF,Europe/Paris,,OBO, +OBO:SP:5665,1,"Gustave Eiffel",44.853855,-0.669471,33281,0,OBO:SA:GUEIFF,Europe/Paris,,OBO, +OBO:SP:5666,1,"Grande Lande",44.776557,-0.635941,33192,0,OBO:SA:GLAND,Europe/Paris,,OBO, +OBO:SP:567,1,"Sabarots",44.845967,-0.559736,33063,0,OBO:SA:SABAR,Europe/Paris,,OBO, +OBO:SP:5673,1,"Laplace",44.856635,-0.668525,33281,0,OBO:SA:LAPLAC,Europe/Paris,,OBO, +OBO:SP:5674,1,"Laplace",44.856601,-0.668472,33281,0,OBO:SA:LAPLAC,Europe/Paris,,OBO, +OBO:SP:5675,1,"Logey",44.835544,-0.667464,33281,0,OBO:SA:LOGEY,Europe/Paris,,OBO, +OBO:SP:5676,1,"Logey",44.836888,-0.667437,33281,0,OBO:SA:LOGEY,Europe/Paris,,OBO, +OBO:SP:5677,1,"Mérignac Soleil",44.831208,-0.656288,33281,0,OBO:SA:MERSOL,Europe/Paris,,OBO, +OBO:SP:5678,1,"Quatre chemins",44.832189,-0.648131,33281,0,OBO:SA:4CHEM,Europe/Paris,,OBO, +OBO:SP:5679,1,"Quatre chemins",44.833216,-0.649237,33281,0,OBO:SA:4CHEM,Europe/Paris,,OBO, +OBO:SP:5680,1,"INRA",44.7853,-0.577217,33550,0,OBO:SA:INRA,Europe/Paris,,OBO, +OBO:SP:5681,1,"Les Peupliers",44.78643,-0.571797,33550,0,OBO:SA:PEUPLI,Europe/Paris,,OBO, +OBO:SP:5682,1,"Les Peupliers",44.786443,-0.571949,33550,0,OBO:SA:PEUPLI,Europe/Paris,,OBO, +OBO:SP:5683,1,"Lycée Vaclav Havel",44.78743,-0.56733,33550,0,OBO:SA:GMELIE,Europe/Paris,,OBO, +OBO:SP:5684,1,"Lycée Vaclav Havel",44.787365,-0.56768,33550,0,OBO:SA:GMELIE,Europe/Paris,,OBO, +OBO:SP:5685,1,"Mendès France",44.798748,-0.541821,33039,0,OBO:SA:MENFRA,Europe/Paris,,OBO, +OBO:SP:5686,1,"Mendès France",44.798873,-0.541854,33039,0,OBO:SA:MENFRA,Europe/Paris,,OBO, +OBO:SP:5687,1,"Denis Papin",44.791035,-0.534425,33039,0,OBO:SA:PAPIN,Europe/Paris,,OBO, +OBO:SP:5688,1,"Denis Papin",44.790959,-0.533977,33039,0,OBO:SA:PAPIN,Europe/Paris,,OBO, +OBO:SP:5689,1,"Rives d'Arcins (rue Denis Papin)",44.791311,-0.531721,33039,0,OBO:SA:ARCINS,Europe/Paris,,OBO, +OBO:SP:5690,1,"Lycée Daguin",44.837052,-0.648523,33281,0,OBO:SA:DAGUIN,Europe/Paris,,OBO, +OBO:SP:5694,1,"François Xavier",44.775373,-0.589061,33192,0,OBO:SA:FXAVIE,Europe/Paris,,OBO, +OBO:SP:5695,1,"François Xavier",44.775433,-0.589141,33192,0,OBO:SA:FXAVIE,Europe/Paris,,OBO, +OBO:SP:5698,1,"Mairie de Gradignan",44.770874,-0.608802,33192,0,OBO:SA:LORENZ,Europe/Paris,,OBO, +OBO:SP:5699,1,"Mairie de Gradignan",44.770763,-0.608883,33192,0,OBO:SA:LORENZ,Europe/Paris,,OBO, +OBO:SP:570,1,"Victor Hugo",44.895797,-0.735049,33449,0,OBO:SA:VHUG71,Europe/Paris,,OBO, +OBO:SP:5701,1,"Poumey",44.766025,-0.617371,33192,0,OBO:SA:POUMEY,Europe/Paris,,OBO, +OBO:SP:5702,1,"Poumey",44.76604,-0.617461,33192,0,OBO:SA:POUMEY,Europe/Paris,,OBO, +OBO:SP:5703,1,"Candau",44.809368,-0.609312,33318,0,OBO:SA:CANDAU,Europe/Paris,,OBO, +OBO:SP:5704,1,"Boulevard du Haut Livrac",44.798668,-0.677095,33318,0,OBO:SA:BHALIV,Europe/Paris,,OBO, +OBO:SP:5705,1,"Bruca",44.774527,-0.580112,33550,0,OBO:SA:BRUCA,Europe/Paris,,OBO, +OBO:SP:5706,1,"Boulevard du Haut Livrac",44.7985,-0.674299,33318,0,OBO:SA:BHALIV,Europe/Paris,,OBO, +OBO:SP:5707,1,"Villeneuve",44.79859,-0.681634,33318,0,OBO:SA:VILLEN,Europe/Paris,,OBO, +OBO:SP:5708,1,"Villeneuve",44.798603,-0.681508,33318,0,OBO:SA:VILLEN,Europe/Paris,,OBO, +OBO:SP:571,1,"Edouard Michel",44.76858,-0.616979,33192,0,OBO:SA:EMICH,Europe/Paris,,OBO, +OBO:SP:5713,1,"Bruca",44.774697,-0.579604,33550,0,OBO:SA:BRUCA,Europe/Paris,,OBO, +OBO:SP:5714,1,"Courréjean",44.77399,-0.528887,33550,0,OBO:SA:COJEAN,Europe/Paris,,OBO, +OBO:SP:5715,1,"Courréjean",44.774306,-0.528843,33550,0,OBO:SA:COJEAN,Europe/Paris,,OBO, +OBO:SP:5718,1,"Jonc",44.957728,-0.612955,33312,0,OBO:SA:JONC,Europe/Paris,,OBO, +OBO:SP:5719,1,"Jonc",44.957453,-0.612518,33312,0,OBO:SA:JONC,Europe/Paris,,OBO, +OBO:SP:572,1,"Castés",44.840107,-0.516842,33167,0,OBO:SA:CASTE,Europe/Paris,,OBO, +OBO:SP:5720,1,"Bigeau",44.955319,-0.610515,33312,0,OBO:SA:BIGEAU,Europe/Paris,,OBO, +OBO:SP:5721,1,"Bigeau",44.95552,-0.610705,33312,0,OBO:SA:BIGEAU,Europe/Paris,,OBO, +OBO:SP:5726,1,"Ducros (vers Courréjean)",44.781625,-0.565126,33550,0,OBO:SA:DUCROS,Europe/Paris,,OBO, +OBO:SP:5727,1,"Ducros (vers Lycée V. Havel)",44.781657,-0.564989,33550,0,OBO:SA:DUCROS,Europe/Paris,,OBO, +OBO:SP:5728,1,"Clemenceau (vers Lycée V. Havel)",44.781195,-0.560012,33550,0,OBO:SA:CLEM88,Europe/Paris,,OBO, +OBO:SP:5729,1,"Clemenceau (vers Courréjean)",44.781133,-0.559692,33550,0,OBO:SA:CLEM88,Europe/Paris,,OBO, +OBO:SP:573,1,"Chemin du Roy",44.89946,-0.728242,33449,0,OBO:SA:CHROY,Europe/Paris,,OBO, +OBO:SP:5730,1,"Pagnol",44.780905,-0.555565,33550,0,OBO:SA:PAGNOL,Europe/Paris,,OBO, +OBO:SP:5733,1,"Hourcade",44.78158,-0.547167,33550,0,OBO:SA:HOURCA,Europe/Paris,,OBO, +OBO:SP:5734,1,"Galin",44.849144,-0.544114,33063,0,OBX:SA:GALIN,Europe/Paris,,OBO, +OBO:SP:5735,1,"Lycée Václav Havel (station Tram)",44.786603,-0.566442,33039,0,OBO:SA:PLAUNA,Europe/Paris,,OBO, +OBO:SP:5736,1,"Cité Chantecrit",44.864227,-0.564215,33063,0,OBO:SA:CHANTE,Europe/Paris,,OBO, +OBO:SP:5737,1,"St Louis",44.86397,-0.567418,33063,0,OBO:SA:STLOUI,Europe/Paris,,OBO, +OBO:SP:574,1,"Quarante Journaux (côté Parc Entreprises)",44.883307,-0.570346,33063,0,OBX:SA:40JOU,Europe/Paris,,OBO, +OBO:SP:5740,1,"Docteur Vincent",44.876034,-0.559413,33063,0,OBO:SA:DVINCE,Europe/Paris,,OBO, +OBO:SP:5741,1,"Docteur Vincent",44.876275,-0.559758,33063,0,OBO:SA:DVINCE,Europe/Paris,,OBO, +OBO:SP:5742,1,"Bouliac Centre Commercial",44.816395,-0.528791,33065,0,OBO:SA:CCOME,Europe/Paris,,OBO, +OBO:SP:5743,1,"Rond Point Marie Fel",44.888594,-0.560362,33063,0,OBO:SA:RPFEL,Europe/Paris,,OBO, +OBO:SP:5744,1,"Rond Point Marie Fel",44.888768,-0.560285,33063,0,OBO:SA:RPFEL,Europe/Paris,,OBO, +OBO:SP:5745,1,"Piscine Galin",44.84793,-0.542048,33063,0,OBO:SA:PCARD,Europe/Paris,,OBO, +OBO:SP:5746,1,"Racine",44.904889,-0.501121,33096,0,OBO:SA:RACINE,Europe/Paris,,OBO, +OBO:SP:5747,1,"Douanes",44.89481,-0.527131,33032,0,OBO:SA:DOUAFR,Europe/Paris,,OBO, +OBO:SP:575,1,"Duplantier",44.814625,-0.580617,33522,0,OBO:SA:DUPLAN,Europe/Paris,,OBO, +OBO:SP:5754,1,"5 Chemins",44.860814,-0.696057,33200,0,OBO:SA:5CHEMI,Europe/Paris,,OBO, +OBO:SP:5755,1,"Toussaint Catros",44.855953,-0.694508,33200,0,OBO:SA:ZCATRO,Europe/Paris,,OBO, +OBO:SP:5756,1,"Toussaint Catros",44.855219,-0.694371,33200,0,OBO:SA:ZCATRO,Europe/Paris,,OBO, +OBO:SP:5757,1,"Racine",44.904866,-0.50098,33096,0,OBO:SA:RACINE,Europe/Paris,,OBO, +OBO:SP:5758,1,"Dassault",44.846637,-0.690892,33281,0,OBO:SA:DASAU,Europe/Paris,,OBO, +OBO:SP:5759,1,"Dassault",44.846754,-0.691166,33281,0,OBO:SA:DASAU,Europe/Paris,,OBO, +OBO:SP:576,1,"MSF",44.826886,-0.678512,33281,0,OBO:SA:FONT49,Europe/Paris,,OBO, +OBO:SP:5760,1,"Beaudésert",44.845073,-0.684809,33281,0,OBO:SA:TBEAUD,Europe/Paris,,OBO, +OBO:SP:5761,1,"Centre de Secours",44.905325,-0.503875,33032,0,OBO:SA:SECOUR,Europe/Paris,,OBO, +OBO:SP:5762,1,"Centre de Secours",44.905289,-0.503885,33032,0,OBO:SA:SECOUR,Europe/Paris,,OBO, +OBO:SP:5763,1,"Grange Noire",44.848609,-0.679277,33281,0,OBO:SA:GNOIRE,Europe/Paris,,OBO, +OBO:SP:5764,1,"Grange Noire",44.848849,-0.679128,33281,0,OBO:SA:GNOIRE,Europe/Paris,,OBO, +OBO:SP:5765,1,"Z.I. du Phare",44.849993,-0.671803,33281,0,OBO:SA:ZIPHAR,Europe/Paris,,OBO, +OBO:SP:5766,1,"Mairie de Saint Vincent",44.956752,-0.468771,33487,0,OBO:SA:MVINCE,Europe/Paris,,OBO, +OBO:SP:5767,1,"Mairie de Saint Vincent",44.957207,-0.468913,33487,0,OBO:SA:MVINCE,Europe/Paris,,OBO, +OBO:SP:5769,1,"Gare Saint Jean (sous la Halle)",44.826029,-0.556991,33063,0,OBO:SA:STJEAN,Europe/Paris,,OBO, +OBO:SP:577,1,"Romainville",44.789521,-0.714631,33318,0,OBO:SA:TROMAI,Europe/Paris,,OBO, +OBO:SP:5770,1,"Gare Saint Jean (rue St Vincent de Paul)",44.826454,-0.557524,33063,0,OBO:SA:STJEAN,Europe/Paris,,OBO, +OBO:SP:5773,1,"Clos Saint Pierre",44.925663,-0.482755,33003,0,OBO:SA:CSPIER,Europe/Paris,,OBO, +OBO:SP:5776,1,"Castéra",44.90906,-0.514597,33032,0,OBO:SA:CAST92,Europe/Paris,,OBO, +OBO:SP:5777,1,"Cailleau",44.904396,-0.518134,33032,0,OBO:SA:CAILAU,Europe/Paris,,OBO, +OBO:SP:5778,1,"Cailleau",44.90422,-0.518859,33032,0,OBO:SA:CAILAU,Europe/Paris,,OBO, +OBO:SP:5779,1,"Gare de Bassens",44.901762,-0.524462,33032,0,OBO:SA:GBASSE,Europe/Paris,,OBO, +OBO:SP:578,1,"Poirson",44.857444,-0.585908,33063,0,OBO:SA:POIRSO,Europe/Paris,,OBO, +OBO:SP:5780,1,"Gare de Bassens",44.90068,-0.524774,33032,0,OBO:SA:GBASSE,Europe/Paris,,OBO, +OBO:SP:5783,1,"Jeunesse",44.849567,-0.637934,33281,0,OBO:SA:JEUNES,Europe/Paris,,OBO, +OBO:SP:5784,1,"Jeunesse",44.850185,-0.637784,33281,0,OBO:SA:JEUNES,Europe/Paris,,OBO, +OBO:SP:5785,1,"Douanes",44.894758,-0.527356,33032,0,OBO:SA:DOUAFR,Europe/Paris,,OBO, +OBO:SP:5786,1,"Capeyron",44.852974,-0.646986,33281,0,OBO:SA:CAPEYR,Europe/Paris,,OBO, +OBO:SP:5787,1,"Capeyron",44.85276,-0.646377,33281,0,OBO:SA:CAPEYR,Europe/Paris,,OBO, +OBO:SP:5788,1,"Bosquets",44.853923,-0.65076,33281,0,OBO:SA:ROBINS,Europe/Paris,,OBO, +OBO:SP:5789,1,"Bosquets",44.85402,-0.652186,33281,0,OBO:SA:ROBINS,Europe/Paris,,OBO, +OBO:SP:5792,1,"Barrière de Bègles",44.813954,-0.564798,33063,0,OBO:SA:BBEGL,Europe/Paris,,OBO, +OBO:SP:5793,1,"Rue de Bègles",44.817611,-0.564296,33063,0,OBO:SA:RDBEGL,Europe/Paris,,OBO, +OBO:SP:5794,1,"Rue de Bègles",44.817978,-0.563813,33063,0,OBO:SA:RDBEGL,Europe/Paris,,OBO, +OBO:SP:5795,1,"Billaudel",44.820576,-0.561229,33063,0,OBO:SA:BILLAU,Europe/Paris,,OBO, +OBO:SP:5796,1,"Billaudel",44.820833,-0.561081,33063,0,OBO:SA:BILLAU,Europe/Paris,,OBO, +OBO:SP:5797,1,"Curie",44.836584,-0.533543,33167,0,OBO:SA:CURI10,Europe/Paris,,OBO, +OBO:SP:5798,1,"Curie",44.836475,-0.533017,33167,0,OBO:SA:CURI10,Europe/Paris,,OBO, +OBO:SP:5799,1,"Cenon Gare",44.856404,-0.53379,33119,0,OBX:SA:CENOG,Europe/Paris,,OBO, +OBO:SP:580,1,"Rue de l'Amitié",44.863109,-0.510794,33119,0,OBO:SA:AMITIE,Europe/Paris,,OBO, +OBO:SP:5800,1,"Cenon Gare",44.856079,-0.533807,33119,0,OBX:SA:CENOG,Europe/Paris,,OBO, +OBO:SP:5801,1,"Stalingrad",44.839487,-0.558882,33063,0,OBX:SA:STALIT,Europe/Paris,,OBO, +OBO:SP:5802,1,"Stalingrad",44.839904,-0.557401,33063,0,OBX:SA:STALIT,Europe/Paris,,OBO, +OBO:SP:5805,1,"Rives d'Arcins",44.791378,-0.531029,33039,0,OBO:SA:ARCINS,Europe/Paris,,OBO, +OBO:SP:5807,1,"Paul Montagne",44.806755,-0.642377,33318,0,OBO:SA:PMONTA,Europe/Paris,,OBO, +OBO:SP:5808,1,"Paul Montagne",44.806813,-0.643356,33318,0,OBO:SA:PMONTA,Europe/Paris,,OBO, +OBO:SP:5809,1,"Larouillat",44.807057,-0.639207,33318,0,OBO:SA:LAROUI,Europe/Paris,,OBO, +OBO:SP:581,1,"Latule",44.870352,-0.565162,33063,0,OBO:SA:LATULE,Europe/Paris,,OBO, +OBO:SP:5810,1,"Larouillat",44.806942,-0.639149,33318,0,OBO:SA:LAROUI,Europe/Paris,,OBO, +OBO:SP:5811,1,"Forestier",44.804853,-0.638532,33318,0,OBO:SA:FOREST,Europe/Paris,,OBO, +OBO:SP:5812,1,"Forestier",44.805169,-0.637413,33318,0,OBO:SA:FOREST,Europe/Paris,,OBO, +OBO:SP:5813,1,"Ste Bernadette",44.823123,-0.624481,33281,0,OBO:SA:SBERNA,Europe/Paris,,OBO, +OBO:SP:5814,1,"Aristide Briand",44.824921,-0.623508,33281,0,OBO:SA:ABR48,Europe/Paris,,OBO, +OBO:SP:5815,1,"Peychotte",44.826454,-0.619048,33281,0,OBX:SA:PEYCHO,Europe/Paris,,OBO, +OBO:SP:582,1,"Libre Service de Gros",44.890631,-0.547965,33063,0,OBO:SA:BAOUR,Europe/Paris,,OBO, +OBO:SP:583,1,"Mansencal",44.781943,-0.57651,33550,0,OBO:SA:MANSE,Europe/Paris,,OBO, +OBO:SP:5832,1,"Bois Fleuri",44.876036,-0.519208,33249,0,OBX:SA:BFLEU,Europe/Paris,,OBO, +OBO:SP:5833,1,"Bois Fleuri",44.876021,-0.51941,33249,0,OBX:SA:BFLEU,Europe/Paris,,OBO, +OBO:SP:5834,1,"Gravières",44.872306,-0.521471,33249,0,OBX:SA:GRAVI,Europe/Paris,,OBO, +OBO:SP:5835,1,"Gravières",44.872359,-0.521487,33249,0,OBX:SA:GRAVI,Europe/Paris,,OBO, +OBO:SP:5836,1,"Lauriers Terminus",44.87836,-0.518403,33249,0,OBX:SA:LAURI,Europe/Paris,,OBO, +OBO:SP:5837,1,"Fontaine d'Arlac",44.826114,-0.625599,33281,0,OBX:SA:ARLAC,Europe/Paris,,OBO, +OBO:SP:5838,1,"Pouqueyras",44.863251,-0.481391,33013,0,OBO:SA:POUQUE,Europe/Paris,,OBO, +OBO:SP:5839,1,"Pouqueyras",44.863204,-0.481452,33013,0,OBO:SA:POUQUE,Europe/Paris,,OBO, +OBO:SP:584,1,"Albret",44.832778,-0.580001,33063,0,OBO:SA:ALBRE,Europe/Paris,,OBO, +OBO:SP:5840,1,"Brienne Vernet",44.823451,-0.543493,33063,0,OBO:SA:BVERN,Europe/Paris,,OBO, +OBO:SP:5841,1,"Brienne Vernet",44.823198,-0.543249,33063,0,OBO:SA:BVERN,Europe/Paris,,OBO, +OBO:SP:5842,1,"Quai de Brienne",44.820457,-0.542152,33063,0,OBO:SA:QBRIE,Europe/Paris,,OBO, +OBO:SP:585,1,"Jude",44.866304,-0.637675,33162,0,OBO:SA:JUDE,Europe/Paris,,OBO, +OBO:SP:5852,1,"Plaisance",44.864277,-0.506622,33119,0,OBO:SA:PLAISA,Europe/Paris,,OBO, +OBO:SP:5853,1,"Plaisance",44.86439,-0.506489,33119,0,OBO:SA:PLAISA,Europe/Paris,,OBO, +OBO:SP:5858,1,"Mairie de Lormont",44.879878,-0.524823,33249,0,OBO:SA:MAILOR,Europe/Paris,,OBO, +OBO:SP:586,1,"Cornier",44.843239,-0.513567,33167,0,OBO:SA:CORNI,Europe/Paris,,OBO, +OBO:SP:5876,1,"Collège Pablo Neruda",44.794388,-0.562291,33039,0,OBO:SA:PNERUD,Europe/Paris,,OBO, +OBO:SP:5877,1,"Desbats",44.803877,-0.618517,33318,0,OBO:SA:DESBAT,Europe/Paris,,OBO, +OBO:SP:5878,1,"Cardinal",44.804198,-0.624957,33318,0,OBO:SA:CARDIN,Europe/Paris,,OBO, +OBO:SP:5879,1,"Collège Ausone",44.871349,-0.595149,33069,0,OBO:SA:COAUSO,Europe/Paris,,OBO, +OBO:SP:588,1,"La Hutte",44.884833,-0.606244,33075,0,OBO:SA:HUTTE,Europe/Paris,,OBO, +OBO:SP:5880,1,"Lanet",44.871318,-0.597771,33069,0,OBO:SA:LANET,Europe/Paris,,OBO, +OBO:SP:5881,1,"Lanet",44.871285,-0.597693,33069,0,OBO:SA:LANET,Europe/Paris,,OBO, +OBO:SP:5882,1,"Cardinal Lecot",44.911934,-0.648741,33056,0,OBO:SA:CLECOT,Europe/Paris,,OBO, +OBO:SP:5883,1,"Cardinal Lecot",44.912002,-0.648859,33056,0,OBO:SA:CLECOT,Europe/Paris,,OBO, +OBO:SP:5884,1,"Avenue d'Eysines",44.859734,-0.612843,33063,0,OBO:SA:AEYSIN,Europe/Paris,,OBO, +OBO:SP:5885,1,"Avenue d'Eysines",44.860037,-0.612672,33063,0,OBO:SA:AEYSIN,Europe/Paris,,OBO, +OBO:SP:5886,1,"Tassigny",44.854824,-0.614149,33063,0,OBO:SA:TASGNY,Europe/Paris,,OBO, +OBO:SP:5887,1,"Tassigny",44.856609,-0.61358,33063,0,OBO:SA:TASGNY,Europe/Paris,,OBO, +OBO:SP:5888,1,"Eglise de Caudéran",44.851502,-0.614315,33063,0,OBO:SA:EGCAU,Europe/Paris,,OBO, +OBO:SP:5889,1,"Eglise de Caudéran",44.852927,-0.614571,33063,0,OBO:SA:EGCAU,Europe/Paris,,OBO, +OBO:SP:589,1,"Rue de Paris",44.82357,-0.619622,33281,0,OBO:SA:RPARIS,Europe/Paris,,OBO, +OBO:SP:5890,1,"Rue de Lacanau",44.847999,-0.617003,33063,0,OBO:SA:RULACA,Europe/Paris,,OBO, +OBO:SP:5891,1,"Rue de Lacanau",44.84803,-0.616879,33063,0,OBO:SA:RULACA,Europe/Paris,,OBO, +OBO:SP:5893,1,"Parc de Mussonville",44.794437,-0.559927,33039,0,OBX:SA:PMUSS,Europe/Paris,,OBO, +OBO:SP:5897,1,"Peydavant",44.801601,-0.585116,33522,0,OBO:SA:PEYDA,Europe/Paris,,OBO, +OBO:SP:5898,1,"Peydavant",44.801967,-0.585494,33522,0,OBO:SA:PEYDA,Europe/Paris,,OBO, +OBO:SP:5899,1,"Résidence Crespy",44.805802,-0.58646,33522,0,OBO:SA:RCRESP,Europe/Paris,,OBO, +OBO:SP:59,1,"Granet",44.769895,-0.641204,33192,0,OBO:SA:GRANE,Europe/Paris,,OBO, +OBO:SP:590,1,"Village 4",44.79173,-0.622583,33318,0,OBO:SA:VILLA4,Europe/Paris,,OBO, +OBO:SP:5900,1,"Résidence Crespy",44.805908,-0.586543,33522,0,OBO:SA:RCRESP,Europe/Paris,,OBO, +OBO:SP:5901,1,"Bontemps",44.806824,-0.576879,33522,0,OBO:SA:BONTE,Europe/Paris,,OBO, +OBO:SP:5902,1,"Bontemps",44.806899,-0.57677,33522,0,OBO:SA:BONTE,Europe/Paris,,OBO, +OBO:SP:5903,1,"Pelouse de Douet",44.827938,-0.61143,33063,0,OBO:SA:TONDU,Europe/Paris,,OBO, +OBO:SP:5904,1,"Docteur Rocaz",44.822664,-0.610635,33063,0,OBO:SA:ROCAZ,Europe/Paris,,OBO, +OBO:SP:5905,1,"Ferry",44.841616,-0.602924,33063,0,OBO:SA:FERRY2,Europe/Paris,,OBO, +OBO:SP:5906,1,"Hermitage",44.844672,-0.602917,33063,0,OBO:SA:HERMIT,Europe/Paris,,OBO, +OBO:SP:5907,1,"Hoche",44.844424,-0.605561,33063,0,OBO:SA:HOCHE,Europe/Paris,,OBO, +OBO:SP:5908,1,"Place Moscou",44.844755,-0.609497,33063,0,OBO:SA:MOSCO,Europe/Paris,,OBO, +OBO:SP:5909,1,"Place Lopès",44.845842,-0.61238,33063,0,OBO:SA:LOPES,Europe/Paris,,OBO, +OBO:SP:591,1,"Roger Allo",44.844309,-0.589364,33063,0,OBO:SA:RALLO,Europe/Paris,,OBO, +OBO:SP:5910,1,"Place Ozanam",44.849544,-0.613289,33063,0,OBO:SA:CHAUME,Europe/Paris,,OBO, +OBO:SP:5912,1,"Ravel",44.851829,-0.634114,33063,0,OBO:SA:RAVEL,Europe/Paris,,OBO, +OBO:SP:5913,1,"Saint Saëns",44.852831,-0.633774,33063,0,OBO:SA:SSAENS,Europe/Paris,,OBO, +OBO:SP:5916,1,"Pins-Francs",44.857282,-0.624166,33063,0,OBO:SA:PFRANC,Europe/Paris,,OBO, +OBO:SP:5917,1,"Fragonard",44.856845,-0.633666,33063,0,OBO:SA:FRAGO,Europe/Paris,,OBO, +OBO:SP:5918,1,"Saint Saëns",44.85359,-0.634545,33063,0,OBO:SA:SSAENS,Europe/Paris,,OBO, +OBO:SP:5919,1,"Ravel",44.851927,-0.634133,33063,0,OBO:SA:RAVEL,Europe/Paris,,OBO, +OBO:SP:592,1,"Victor Hugo",44.850839,-0.533059,33119,0,OBO:SA:VHUG08,Europe/Paris,,OBO, +OBO:SP:5921,1,"Lestonnat",44.852052,-0.61819,33063,0,OBO:SA:LESTO,Europe/Paris,,OBO, +OBO:SP:5922,1,"Stade Batany",44.842615,-0.607409,33063,0,OBO:SA:BATAN,Europe/Paris,,OBO, +OBO:SP:5923,1,"Bel Air",44.839755,-0.607504,33063,0,OBO:SA:BELAI,Europe/Paris,,OBO, +OBO:SP:5926,1,"Alfonséa",44.825972,-0.52748,33167,0,OBO:SA:ALFONS,Europe/Paris,,OBO, +OBO:SP:5927,1,"Alfonséa",44.825985,-0.527329,33167,0,OBO:SA:ALFONS,Europe/Paris,,OBO, +OBO:SP:5928,1,"Bouliac Centre Commercial",44.816078,-0.528556,33065,0,OBO:SA:CCOME,Europe/Paris,,OBO, +OBO:SP:5931,1,"Golf de Bordeaux",44.907029,-0.580151,33063,0,OBO:SA:GOLFBX,Europe/Paris,,OBO, +OBO:SP:5932,1,"Golf de Bordeaux",44.906241,-0.579986,33063,0,OBO:SA:GOLFBX,Europe/Paris,,OBO, +OBO:SP:5935,1,"Barrière de Toulouse (Bd Albert 1er)",44.814704,-0.572025,33063,0,OBO:SA:BTOUL2,Europe/Paris,,OBO, +OBO:SP:5936,1,"Jean Villar",44.888327,-0.61684,33075,0,OBO:SA:JVILAR,Europe/Paris,,OBO, +OBO:SP:5937,1,"Jean Villar",44.888172,-0.616069,33075,0,OBO:SA:JVILAR,Europe/Paris,,OBO, +OBO:SP:5938,1,"Centre Tour de Gassies",44.883409,-0.625587,33075,0,OBO:SA:GASSI,Europe/Paris,,OBO, +OBO:SP:5939,1,"Gare de Blanquefort",44.91798,-0.62403,33056,0,OBO:SA:TGBL84,Europe/Paris,,OBO, +OBO:SP:594,1,"Montaigne",44.817815,-0.631888,33281,0,OBO:SA:MTAIGN,Europe/Paris,,OBO, +OBO:SP:5940,1,"Domaine d'Amanieu",44.822683,-0.486145,33065,0,OBO:SA:DAMIEN,Europe/Paris,,OBO, +OBO:SP:5941,1,"Domaine d'Amanieu",44.82266,-0.486283,33065,0,OBO:SA:DAMIEN,Europe/Paris,,OBO, +OBO:SP:5942,1,"Forum des Associations",44.885053,-0.6208,33075,0,OBO:SA:SMUNIC,Europe/Paris,,OBO, +OBO:SP:5943,1,"Forum des Associations",44.88427,-0.620749,33075,0,OBO:SA:SMUNIC,Europe/Paris,,OBO, +OBO:SP:5944,1,"Préceinte",44.867271,-0.584965,33069,0,OBO:SA:PRECEI,Europe/Paris,,OBO, +OBO:SP:5945,1,"Préceinte",44.867241,-0.584507,33069,0,OBO:SA:PRECEI,Europe/Paris,,OBO, +OBO:SP:5946,1,"Parc Rivière",44.853512,-0.587938,33063,0,OBO:SA:PRIVIE,Europe/Paris,,OBO, +OBO:SP:5948,1,"Domaine du Pinsan",44.868745,-0.650875,33162,0,OBO:SA:DOPINS,Europe/Paris,,OBO, +OBO:SP:5949,1,"Domaine du Pinsan",44.868826,-0.650893,33162,0,OBO:SA:DOPINS,Europe/Paris,,OBO, +OBO:SP:5950,1,"Bois Gramond",44.872508,-0.644986,33162,0,OBO:SA:NCIMET,Europe/Paris,,OBO, +OBO:SP:5951,1,"Bois Gramond",44.872836,-0.64488,33162,0,OBO:SA:NCIMET,Europe/Paris,,OBO, +OBO:SP:5955,1,"Galerie Tatry",44.863414,-0.572933,33063,0,OBO:SA:TATRY,Europe/Paris,,OBO, +OBO:SP:5956,1,"Galerie Tatry",44.86392,-0.573459,33063,0,OBO:SA:TATRY,Europe/Paris,,OBO, +OBO:SP:5957,1,"Frères Portmann",44.860493,-0.576612,33063,0,OBO:SA:FPORT,Europe/Paris,,OBO, +OBO:SP:5958,1,"Frères Portmann",44.860566,-0.576312,33063,0,OBO:SA:FPORT,Europe/Paris,,OBO, +OBO:SP:5959,1,"Trinité",44.860359,-0.579644,33063,0,OBO:SA:TRINIT,Europe/Paris,,OBO, +OBO:SP:5960,1,"Trinité",44.8602,-0.578709,33063,0,OBO:SA:TRINIT,Europe/Paris,,OBO, +OBO:SP:5961,1,"Place de l'Europe",44.859742,-0.581176,33063,0,OBO:SA:EUROP,Europe/Paris,,OBO, +OBO:SP:5965,1,"Mairie du Bouscat",44.866085,-0.598766,33069,0,OBO:SA:MBOUSC,Europe/Paris,,OBO, +OBO:SP:5966,1,"Mairie du Bouscat",44.86613,-0.598769,33069,0,OBO:SA:MBOUSC,Europe/Paris,,OBO, +OBO:SP:5967,1,"Lafont",44.869931,-0.59914,33069,0,OBO:SA:LAFO46,Europe/Paris,,OBO, +OBO:SP:5968,1,"Lafont",44.869783,-0.598978,33069,0,OBO:SA:LAFO46,Europe/Paris,,OBO, +OBO:SP:5973,1,"Maurian",44.919298,-0.627832,33056,0,OBO:SA:MAURI,Europe/Paris,,OBO, +OBO:SP:5974,1,"Maurian",44.919065,-0.628058,33056,0,OBO:SA:MAURI,Europe/Paris,,OBO, +OBO:SP:5975,1,"Caychac La Rivière",44.930747,-0.620859,33056,0,OBO:SA:CAYRIV,Europe/Paris,,OBO, +OBO:SP:5976,1,"Caychac La Rivière",44.93007,-0.621145,33056,0,OBO:SA:CAYRIV,Europe/Paris,,OBO, +OBO:SP:5978,1,"Allée de Curé",44.911647,-0.685265,33519,0,OBO:SA:ACURE,Europe/Paris,,OBO, +OBO:SP:598,1,"Soubiras",44.863011,-0.61792,33063,0,OBO:SA:SOUBI,Europe/Paris,,OBO, +OBO:SP:5981,1,"Lénine",44.79626,-0.558169,33039,0,OBO:SA:LENINE,Europe/Paris,,OBO, +OBO:SP:5982,1,"Lénine",44.79611,-0.558324,33039,0,OBO:SA:LENINE,Europe/Paris,,OBO, +OBO:SP:5984,1,"Montaigne",44.87102,-0.515674,33249,0,OBO:SA:MON32,Europe/Paris,,OBO, +OBO:SP:5985,1,"Montaigne",44.870893,-0.515413,33249,0,OBO:SA:MON32,Europe/Paris,,OBO, +OBO:SP:5986,1,"Avenue de Paris",44.871479,-0.511989,33249,0,OBO:SA:APARIS,Europe/Paris,,OBO, +OBO:SP:5987,1,"Avenue de Paris",44.871691,-0.51185,33249,0,OBO:SA:APARIS,Europe/Paris,,OBO, +OBO:SP:5988,1,"La Ramade",44.878436,-0.510891,33249,0,OBO:SA:RAMADE,Europe/Paris,,OBO, +OBO:SP:5989,1,"La Ramade",44.877382,-0.510572,33249,0,OBO:SA:RAMADE,Europe/Paris,,OBO, +OBO:SP:5990,1,"L'Archevêque",44.882234,-0.509037,33249,0,OBO:SA:ARCHEV,Europe/Paris,,OBO, +OBO:SP:5991,1,"L'Archevêque",44.88145,-0.510192,33249,0,OBO:SA:ARCHEV,Europe/Paris,,OBO, +OBO:SP:5992,1,"Tenot",44.818845,-0.576644,33063,0,OBO:SA:TENOT,Europe/Paris,,OBO, +OBO:SP:5993,1,"Dubourdieu",44.821126,-0.578018,33063,0,OBO:SA:DUBOUR,Europe/Paris,,OBO, +OBO:SP:5994,1,"Bergonié",44.824473,-0.578737,33063,0,OBX:SA:BERGO,Europe/Paris,,OBO, +OBO:SP:5995,1,"Treuils",44.82529,-0.583855,33063,0,OBO:SA:TREUI,Europe/Paris,,OBO, +OBO:SP:601,1,"Mac Carthy",44.838532,-0.621511,33281,0,OBO:SA:MCARTY,Europe/Paris,,OBO, +OBO:SP:604,1,"Mandron",44.858607,-0.590063,33063,0,OBO:SA:MANDRO,Europe/Paris,,OBO, +OBO:SP:605,1,"Gelès",44.889991,-0.742841,33449,0,OBO:SA:GELES,Europe/Paris,,OBO, +OBO:SP:606,1,"Chantiers de la Garonne",44.859678,-0.543601,33063,0,OBO:SA:CHANT,Europe/Paris,,OBO, +OBO:SP:608,1,"Pelleport",44.820779,-0.565839,33063,0,OBO:SA:PELLE,Europe/Paris,,OBO, +OBO:SP:609,1,"Merle",44.796274,-0.693533,33318,0,OBO:SA:MERLE,Europe/Paris,,OBO, +OBO:SP:61,1,"Bernède",44.878253,-0.677925,33200,0,OBO:SA:BERNED,Europe/Paris,,OBO, +OBO:SP:610,1,"Coin",44.763579,-0.556,33550,0,OBO:SA:COIN,Europe/Paris,,OBO, +OBO:SP:611,1,"Cabannes",44.820237,-0.519915,33167,0,OBO:SA:CABAN,Europe/Paris,,OBO, +OBO:SP:613,1,"Terrefort",44.765447,-0.562089,33550,0,OBO:SA:TERRE,Europe/Paris,,OBO, +OBO:SP:617,1,"Avenue Ausone",44.870047,-0.592493,33069,0,OBO:SA:AVAUSO,Europe/Paris,,OBO, +OBO:SP:618,1,"Desclaux",44.857876,-0.494983,33013,0,OBO:SA:DESCLA,Europe/Paris,,OBO, +OBO:SP:620,1,"Xaintrailles",44.828307,-0.592558,33063,0,OBO:SA:XAINTR,Europe/Paris,,OBO, +OBO:SP:621,1,"Vettiner",44.815997,-0.503544,33065,0,OBO:SA:VETTI,Europe/Paris,,OBO, +OBO:SP:622,1,"Lafontaine",44.826575,-0.567499,33063,0,OBO:SA:LAFONT,Europe/Paris,,OBO, +OBO:SP:623,1,"Métairie",44.896958,-0.741251,33449,0,OBO:SA:METAIE,Europe/Paris,,OBO, +OBO:SP:624,1,"Caserne Nansouty",44.818733,-0.566127,33063,0,OBO:SA:CNANS,Europe/Paris,,OBO, +OBO:SP:626,1,"Les 3 Tours",44.787969,-0.604989,33192,0,OBO:SA:3TOUR,Europe/Paris,,OBO, +OBO:SP:629,1,"Le Dorat 2",44.798918,-0.546642,33039,0,OBO:SA:DORA2,Europe/Paris,,OBO, +OBO:SP:631,1,"Rives",44.835765,-0.554391,33063,0,OBO:SA:RIVES,Europe/Paris,,OBO, +OBO:SP:632,1,"COSEC",44.883988,-0.704684,33449,0,OBO:SA:COSEC,Europe/Paris,,OBO, +OBO:SP:6326,1,"Maréchal Juin",44.774074,-0.598809,33192,0,OBO:SA:MJUI80,Europe/Paris,,OBO, +OBO:SP:6327,1,"Mozart",44.768573,-0.62023,33192,0,OBO:SA:MOZART,Europe/Paris,,OBO, +OBO:SP:6328,1,"Mozart",44.768698,-0.620251,33192,0,OBO:SA:MOZART,Europe/Paris,,OBO, +OBO:SP:6329,1,"Gabriel Fauré",44.853029,-0.634053,33063,0,OBO:SA:GAFAUR,Europe/Paris,,OBO, +OBO:SP:633,1,"Haut Livrac",44.800866,-0.675783,33318,0,OBO:SA:HLIVRA,Europe/Paris,,OBO, +OBO:SP:6330,1,"Floirac Dravemont",44.845862,-0.510133,33167,0,OBX:SA:DRAVE,Europe/Paris,,OBO, +OBO:SP:6331,1,"Chemin du Sourd",44.887803,-0.510793,33096,0,OBO:SA:CHSOUR,Europe/Paris,,OBO, +OBO:SP:6332,1,"Bout du Parc",44.951959,-0.508035,33003,0,OBO:SA:BPARC,Europe/Paris,,OBO, +OBO:SP:6333,1,"Bout du Parc",44.951967,-0.508086,33003,0,OBO:SA:BPARC,Europe/Paris,,OBO, +OBO:SP:6334,1,"Jean Prat",44.932791,-0.502001,33003,0,OBO:SA:JPRAT,Europe/Paris,,OBO, +OBO:SP:6335,1,"Jean Prat",44.932659,-0.502171,33003,0,OBO:SA:JPRAT,Europe/Paris,,OBO, +OBO:SP:6338,1,"Collège Claude Massé",44.929181,-0.482365,33003,0,OBO:SA:CMASSE,Europe/Paris,,OBO, +OBO:SP:6339,1,"Collège Claude Massé",44.929556,-0.482185,33003,0,OBO:SA:CMASSE,Europe/Paris,,OBO, +OBO:SP:634,1,"Pasteur",44.84588,-0.598459,33063,0,OBO:SA:PASTEU,Europe/Paris,,OBO, +OBO:SP:6344,1,"Les Templiers",44.881628,-0.628515,33075,0,OBO:SA:TEMPL,Europe/Paris,,OBO, +OBO:SP:6345,1,"Grand Darnal",44.884259,-0.601441,33075,0,OBO:SA:GDARNA,Europe/Paris,,OBO, +OBO:SP:6346,1,"Grand Darnal",44.883921,-0.600734,33075,0,OBO:SA:GDARNA,Europe/Paris,,OBO, +OBO:SP:6349,1,"Baudon",44.883362,-0.629527,33162,0,OBO:SA:BAUDO,Europe/Paris,,OBO, +OBO:SP:6351,1,"R.P.A Mieux Vivre",44.868344,-0.589685,33069,0,OBO:SA:RPAMVI,Europe/Paris,,OBO, +OBO:SP:6352,1,"R.P.A Mieux Vivre",44.868208,-0.589993,33069,0,OBO:SA:RPAMVI,Europe/Paris,,OBO, +OBO:SP:6353,1,"Rigal",44.867876,-0.57963,33069,0,OBO:SA:RIGAL,Europe/Paris,,OBO, +OBO:SP:6354,1,"Boutaut",44.867975,-0.576569,33069,0,OBO:SA:BOUTAU,Europe/Paris,,OBO, +OBO:SP:636,1,"Murat",44.847486,-0.62689,33063,0,OBO:SA:MURAT,Europe/Paris,,OBO, +OBO:SP:6365,1,"Tujean",44.921433,-0.626207,33056,0,OBO:SA:TUJEA,Europe/Paris,,OBO, +OBO:SP:6366,1,"Tujean",44.921392,-0.62609,33056,0,OBO:SA:TUJEA,Europe/Paris,,OBO, +OBO:SP:637,1,"Grand Parc",44.861421,-0.586961,33063,0,OBX:SA:GPARC,Europe/Paris,,OBO, +OBO:SP:6375,1,"AIA",44.82736,-0.538497,33063,0,OBO:SA:AIA,Europe/Paris,,OBO, +OBO:SP:6376,1,"Luxembourg",44.909021,-0.643858,33056,0,OBO:SA:LUXEM,Europe/Paris,,OBO, +OBO:SP:6377,1,"Luxembourg",44.908866,-0.643899,33056,0,OBO:SA:LUXEM,Europe/Paris,,OBO, +OBO:SP:6378,1,"Gilamon",44.911451,-0.645056,33056,0,OBO:SA:GILAMO,Europe/Paris,,OBO, +OBO:SP:6379,1,"Gilamon",44.911124,-0.645149,33056,0,OBO:SA:GILAMO,Europe/Paris,,OBO, +OBO:SP:638,1,"Domaine du Gay",44.852431,-0.4876,33013,0,OBO:SA:DOMGAY,Europe/Paris,,OBO, +OBO:SP:6380,1,"Tilleuls",44.864173,-0.655609,33162,0,OBO:SA:TILLEU,Europe/Paris,,OBO, +OBO:SP:639,1,"Bonnardel",44.769749,-0.578758,33550,0,OBO:SA:BONNA,Europe/Paris,,OBO, +OBO:SP:6393,1,"AIA",44.82689,-0.537961,33063,0,OBO:SA:AIA,Europe/Paris,,OBO, +OBO:SP:6396,1,"Mathyadeux",44.919579,-0.677921,33519,0,OBO:SA:MATHYA,Europe/Paris,,OBO, +OBO:SP:6397,1,"Four à Chaux",44.917812,-0.667023,33519,0,OBO:SA:FCHAUX,Europe/Paris,,OBO, +OBO:SP:6398,1,"Gelès",44.914609,-0.665773,33519,0,OBO:SA:GELEST,Europe/Paris,,OBO, +OBO:SP:6399,1,"Parc des Jalles",44.911513,-0.580564,33056,0,OBO:SA:PJALL,Europe/Paris,,OBO, +OBO:SP:64,1,"Durcy",44.79943,-0.544168,33039,0,OBO:SA:DURCY,Europe/Paris,,OBO, +OBO:SP:6400,1,"Parc des Jalles",44.911421,-0.580621,33056,0,OBO:SA:PJALL,Europe/Paris,,OBO, +OBO:SP:6402,1,"Galin",44.848936,-0.543848,33063,0,OBX:SA:GALIN,Europe/Paris,,OBO, +OBO:SP:6403,1,"Place Florale Terminus",44.868834,-0.636369,33162,0,OBO:SA:PFLOR,Europe/Paris,,OBO, +OBO:SP:6404,1,"Aéroport (arrêt de Descente)",44.831466,-0.701485,33281,0,OBO:SA:AEROD,Europe/Paris,,OBO, +OBO:SP:6408,1,"René Coty",44.840959,-0.653604,33281,0,OBO:SA:CMERIG,Europe/Paris,,OBO, +OBO:SP:641,1,"Jeu de Paume",44.842945,-0.599474,33063,0,OBO:SA:JPAUME,Europe/Paris,,OBO, +OBO:SP:6411,1,"Bechade",44.867637,-0.670537,33200,0,OBO:SA:BECHA,Europe/Paris,,OBO, +OBO:SP:6421,1,"Sousa Mendès",44.865036,-0.571553,33063,0,OBO:SA:SOUSA,Europe/Paris,,OBO, +OBO:SP:6422,1,"Sousa Mendès",44.864908,-0.571317,33063,0,OBO:SA:SOUSA,Europe/Paris,,OBO, +OBO:SP:6423,1,"Du Bellay",44.873433,-0.51433,33249,0,OBO:SA:DUBELL,Europe/Paris,,OBO, +OBO:SP:6424,1,"Du Bellay",44.873319,-0.513676,33249,0,OBO:SA:DUBELL,Europe/Paris,,OBO, +OBO:SP:6425,1,"Hautefort",44.870345,-0.513084,33249,0,OBO:SA:HAUTEF,Europe/Paris,,OBO, +OBO:SP:6426,1,"Hautefort",44.870268,-0.512965,33249,0,OBO:SA:HAUTEF,Europe/Paris,,OBO, +OBO:SP:6429,1,"Etangs",44.831894,-0.53763,33167,0,OBO:SA:ETANG,Europe/Paris,,OBO, +OBO:SP:643,1,"Anatole France",44.766658,-0.580155,33550,0,OBO:SA:AFR21,Europe/Paris,,OBO, +OBO:SP:6431,1,"Montsouris",44.907202,-0.516611,33032,0,OBO:SA:MONTSO,Europe/Paris,,OBO, +OBO:SP:6432,1,"Montsouris",44.907165,-0.516659,33032,0,OBO:SA:MONTSO,Europe/Paris,,OBO, +OBO:SP:6434,1,"Montoya",44.947704,-0.591583,33312,0,OBO:SA:MONTOY,Europe/Paris,,OBO, +OBO:SP:6435,1,"Tassigny",44.847885,-0.659224,33281,0,OBO:SA:FROBIN,Europe/Paris,,OBO, +OBO:SP:6436,1,"Tassigny",44.847538,-0.658796,33281,0,OBO:SA:FROBIN,Europe/Paris,,OBO, +OBO:SP:6437,1,"Avenue du Chut",44.849067,-0.662443,33281,0,OBO:SA:CHUT,Europe/Paris,,OBO, +OBO:SP:6438,1,"Centre des Impôts",44.854217,-0.656317,33281,0,OBO:SA:CHDEAU,Europe/Paris,,OBO, +OBO:SP:6439,1,"Centre des Impôts",44.854234,-0.656102,33281,0,OBO:SA:CHDEAU,Europe/Paris,,OBO, +OBO:SP:644,1,"Lognac",44.838297,-0.611603,33063,0,OBO:SA:LOGNA,Europe/Paris,,OBO, +OBO:SP:6442,1,"Bègles Plage",44.801857,-0.538169,33039,0,OBO:SA:BPLAGE,Europe/Paris,,OBO, +OBO:SP:6443,1,"Bègles Plage",44.801997,-0.538279,33039,0,OBO:SA:BPLAGE,Europe/Paris,,OBO, +OBO:SP:6447,1,"Gambetta",44.842161,-0.5797,33063,0,OBO:SA:GAMBT1,Europe/Paris,,OBO, +OBO:SP:6449,1,"Camping International",44.897913,-0.581953,33075,0,OBO:SA:CAMPBX,Europe/Paris,,OBO, +OBO:SP:645,1,"La Générale",44.763667,-0.56166,33550,0,OBO:SA:LAGEN,Europe/Paris,,OBO, +OBO:SP:6450,1,"La Belle Rose",44.811597,-0.552329,33039,0,OBO:SA:SANG34,Europe/Paris,,OBO, +OBO:SP:6451,1,"La Belle Rose",44.811675,-0.552423,33039,0,OBO:SA:SANG34,Europe/Paris,,OBO, +OBO:SP:6452,1,"Mérignac Soleil",44.830824,-0.65701,33281,0,OBO:SA:MERSOL,Europe/Paris,,OBO, +OBO:SP:6454,1,"Cazalet (av de Beutre)",44.799792,-0.671738,33318,0,OBO:SA:CAZAL,Europe/Paris,,OBO, +OBO:SP:6455,1,"Rue du Manoir",44.886607,-0.519795,33249,0,OBO:SA:RMANO,Europe/Paris,,OBO, +OBO:SP:6456,1,"Rue du Manoir",44.88653,-0.519689,33249,0,OBO:SA:RMANO,Europe/Paris,,OBO, +OBO:SP:646,1,"Place Meignan",44.902313,-0.505919,33096,0,OBO:SA:PMEIGN,Europe/Paris,,OBO, +OBO:SP:6461,1,"La Glacière",44.837303,-0.619405,33281,0,OBO:SA:GLACIE,Europe/Paris,,OBO, +OBO:SP:6463,1,"Cours St Louis",44.860395,-0.569306,33063,0,OBO:SA:SLOUIS,Europe/Paris,,OBO, +OBO:SP:6464,1,"Cours St Louis",44.858933,-0.567668,33063,0,OBO:SA:SLOUIS,Europe/Paris,,OBO, +OBO:SP:6465,1,"Cours du Médoc",44.855764,-0.563082,33063,0,OBX:SA:MEDOC,Europe/Paris,,OBO, +OBO:SP:6466,1,"Cours du Médoc",44.855889,-0.563952,33063,0,OBX:SA:MEDOC,Europe/Paris,,OBO, +OBO:SP:6467,1,"Anatole France",44.836025,-0.624035,33281,0,OBO:SA:ANATOF,Europe/Paris,,OBO, +OBO:SP:6469,1,"Migron",44.864475,-0.631588,33162,0,OBO:SA:EMIGR,Europe/Paris,,OBO, +OBO:SP:647,1,"Xaintrailles",44.828238,-0.59358,33063,0,OBO:SA:XAINTR,Europe/Paris,,OBO, +OBO:SP:6472,1,"Roland Garros",44.861326,-0.626733,33063,0,OBO:SA:RGARR,Europe/Paris,,OBO, +OBO:SP:6473,1,"Roland Garros",44.861255,-0.626703,33063,0,OBO:SA:RGARR,Europe/Paris,,OBO, +OBO:SP:6482,1,"Breillan",44.918327,-0.663454,33519,0,OBO:SA:BREILL,Europe/Paris,,OBO, +OBO:SP:6483,1,"Breillan",44.918335,-0.662947,33519,0,OBO:SA:BREILL,Europe/Paris,,OBO, +OBO:SP:649,1,"Lycée des Graves (Parking Lycée)",44.760413,-0.62226,33192,0,OBO:SA:LGRAV,Europe/Paris,,OBO, +OBO:SP:6491,1,"Echangeur du Moulinat",44.869951,-0.500196,33013,0,OBO:SA:ECMOUL,Europe/Paris,,OBO, +OBO:SP:65,1,"Perrin",44.780201,-0.651198,33318,0,OBO:SA:PERRIN,Europe/Paris,,OBO, +OBO:SP:650,1,"Les Chênes",44.778541,-0.697189,33122,0,OBO:SA:CHENE2,Europe/Paris,,OBO, +OBO:SP:6505,1,"Les Harmonies",44.810891,-0.584873,33522,0,OBO:SA:LAMA40,Europe/Paris,,OBO, +OBO:SP:651,1,"Cours Gambetta",44.843251,-0.532493,33167,0,OBO:SA:CGAMB,Europe/Paris,,OBO, +OBO:SP:652,1,"8 Mai1945",44.851825,-0.51081,33119,0,OBO:SA:8Mai45,Europe/Paris,,OBO, +OBO:SP:654,1,"Dotézac",44.807722,-0.556515,33039,0,OBO:SA:DOTEZ,Europe/Paris,,OBO, +OBO:SP:655,1,"Rue de la Réole",44.821829,-0.56935,33063,0,OBO:SA:REOLE,Europe/Paris,,OBO, +OBO:SP:656,1,"Francisco Ferrer",44.825013,-0.612661,33063,0,OBO:SA:FFERR,Europe/Paris,,OBO, +OBO:SP:6561,1,"Belair",44.941947,-0.630352,33056,0,OBO:SA:BELAIR,Europe/Paris,,OBO, +OBO:SP:6562,1,"Belair",44.941891,-0.630399,33056,0,OBO:SA:BELAIR,Europe/Paris,,OBO, +OBO:SP:657,1,"Périnot",44.85129,-0.631279,33063,0,OBO:SA:PERIN,Europe/Paris,,OBO, +OBO:SP:6571,1,"Ariane",44.862527,-0.699275,33200,0,OBO:SA:ARIANE,Europe/Paris,,OBO, +OBO:SP:6572,1,"Ariane",44.862449,-0.699207,33200,0,OBO:SA:ARIANE,Europe/Paris,,OBO, +OBO:SP:6601,1,"République",44.894931,-0.713573,33449,0,OBO:SA:PREPUB,Europe/Paris,,OBO, +OBO:SP:661,1,"Gereyme",44.98343,-0.537653,33434,0,OBO:SA:GEREYM,Europe/Paris,,OBO, +OBO:SP:663,1,"Barrière de Bègles",44.814006,-0.564877,33063,0,OBO:SA:BBEGL,Europe/Paris,,OBO, +OBO:SP:6641,1,"Arc-en-Ciel",44.876047,-0.585589,33075,0,OBO:SA:ARCIEL,Europe/Paris,,OBO, +OBO:SP:6642,1,"Arc-en-Ciel",44.876036,-0.585398,33075,0,OBO:SA:ARCIEL,Europe/Paris,,OBO, +OBO:SP:6651,1,"Hastignan Bourg",44.89766,-0.745293,33449,0,OBO:SA:HASTIB,Europe/Paris,,OBO, +OBO:SP:6652,1,"Hastignan Bourg",44.89762,-0.744871,33449,0,OBO:SA:HASTIB,Europe/Paris,,OBO, +OBO:SP:6653,1,"Hilsz",44.900282,-0.704492,33449,0,OBO:SA:HILSZ,Europe/Paris,,OBO, +OBO:SP:6654,1,"Hilsz",44.900269,-0.704593,33449,0,OBO:SA:HILSZ,Europe/Paris,,OBO, +OBO:SP:6655,1,"Aimé Césaire",44.878003,-0.66423,33162,0,OBO:SA:ACESAI,Europe/Paris,,OBO, +OBO:SP:6656,1,"Aimé Césaire",44.878093,-0.66397,33162,0,OBO:SA:ACESAI,Europe/Paris,,OBO, +OBO:SP:666,1,"Auriac",44.814728,-0.553034,33063,0,OBO:SA:AURIA,Europe/Paris,,OBO, +OBO:SP:6661,1,"Lycée Václav Havel",44.786049,-0.564053,33039,0,OBO:SA:VHAVEL,Europe/Paris,,OBO, +OBO:SP:667,1,"Le Haillan Rostand (av de Magudas)",44.858338,-0.668003,33281,0,OBX:SA:TMAGUD,Europe/Paris,,OBO, +OBO:SP:6671,1,"ZA Magellan",44.778527,-0.663971,33318,0,OBO:SA:ZAMAGE,Europe/Paris,,OBO, +OBO:SP:6672,1,"Domion",44.85635,-0.62484,33063,0,OBO:SA:DOMIO,Europe/Paris,,OBO, +OBO:SP:668,1,"Mondion",44.999319,-0.494336,33487,0,OBO:SA:MONDIO,Europe/Paris,,OBO, +OBO:SP:6682,1,"Gestform",44.855312,-0.676916,33281,0,OBO:SA:GEFORM,Europe/Paris,,OBO, +OBO:SP:6685,1,"Place Ravezies",44.867012,-0.575684,33063,0,OBX:SA:RAVESI,Europe/Paris,,OBO, +OBO:SP:669,1,"Russel",44.828715,-0.51856,33167,0,OBO:SA:RUSSE,Europe/Paris,,OBO, +OBO:SP:6694,1,"René Coty",44.840891,-0.653726,33281,0,OBO:SA:CMERIG,Europe/Paris,,OBO, +OBO:SP:670,1,"Beauséjour",44.799665,-0.686439,33318,0,OBO:SA:BEAUSE,Europe/Paris,,OBO, +OBO:SP:6701,1,"Gambetta",44.842046,-0.579896,33063,0,OBO:SA:GAMBT1,Europe/Paris,,OBO, +OBO:SP:671,1,"Domaine du Gay",44.852408,-0.487471,33013,0,OBO:SA:DOMGAY,Europe/Paris,,OBO, +OBO:SP:673,1,"Pressensé",44.856225,-0.602125,33063,0,OBO:SA:PRESS,Europe/Paris,,OBO, +OBO:SP:6731,1,"Paludate",44.827447,-0.55128,33063,0,OBO:SA:PALUDA,Europe/Paris,,OBO, +OBO:SP:6732,1,"Paludate",44.827573,-0.551288,33063,0,OBO:SA:PALUDA,Europe/Paris,,OBO, +OBO:SP:6741,1,"Terres de Borde (rue d'Armagnac)",44.822181,-0.554455,33063,0,OBO:SA:TBORD2,Europe/Paris,,OBO, +OBO:SP:6742,1,"Carle Vernet",44.820963,-0.550567,33063,0,OBO:SA:CVERNE,Europe/Paris,,OBO, +OBO:SP:6743,1,"Carle Vernet",44.82106,-0.550636,33063,0,OBO:SA:CVERNE,Europe/Paris,,OBO, +OBO:SP:675,1,"Lafontaine",44.827447,-0.568947,33063,0,OBO:SA:LAFONT,Europe/Paris,,OBO, +OBO:SP:6751,1,"INRIA",44.808753,-0.600246,33522,0,OBO:SA:INRIA,Europe/Paris,,OBO, +OBO:SP:6752,1,"INRIA",44.809112,-0.600294,33522,0,OBO:SA:INRIA,Europe/Paris,,OBO, +OBO:SP:676,1,"Guyon",44.851117,-0.528579,33119,0,OBO:SA:GUYON,Europe/Paris,,OBO, +OBO:SP:677,1,"R.P.A La Bérengère",44.865283,-0.612098,33069,0,OBO:SA:RPABER,Europe/Paris,,OBO, +OBO:SP:679,1,"Lajarte",44.825484,-0.56976,33063,0,OBO:SA:LAJAR,Europe/Paris,,OBO, +OBO:SP:68,1,"Nouaux",44.855053,-0.530068,33119,0,OBO:SA:NOUAU,Europe/Paris,,OBO, +OBO:SP:680,1,"La Campanie",44.920697,-0.502261,33003,0,OBO:SA:CAMPIN,Europe/Paris,,OBO, +OBO:SP:6801,1,"Berges du Lac",44.879561,-0.57334,33063,0,OBO:SA:BERGLA,Europe/Paris,,OBO, +OBO:SP:6802,1,"Berges du Lac",44.879581,-0.573291,33063,0,OBO:SA:BERGLA,Europe/Paris,,OBO, +OBO:SP:681,1,"Hôpital Pellegrin (entrée Est)",44.828635,-0.602724,33063,0,OBO:SA:CHRPE2,Europe/Paris,,OBO, +OBO:SP:682,1,"Montesquieu",44.846305,-0.633237,33063,0,OBO:SA:MONTE,Europe/Paris,,OBO, +OBO:SP:6825,1,"La Cité du Vin",44.860663,-0.554219,33063,0,OBO:SA:BFLOT,Europe/Paris,,OBO, +OBO:SP:6827,1,"La Cité du Vin",44.86053,-0.554134,33063,0,OBO:SA:BFLOT,Europe/Paris,,OBO, +OBO:SP:6832,1,"Place Ravezies (côté Parc Relais)",44.867155,-0.575984,33063,0,OBX:SA:RAVESI,Europe/Paris,,OBO, +OBO:SP:6835,1,"La Cité du Vin",44.85933,-0.555591,33063,0,OBO:SA:BFLOT,Europe/Paris,,OBO, +OBO:SP:6836,1,"La Cité du Vin",44.859298,-0.555463,33063,0,OBO:SA:BFLOT,Europe/Paris,,OBO, +OBO:SP:6837,1,"Les Hangars",44.857622,-0.559386,33063,0,OBO:SA:HANGAR,Europe/Paris,,OBO, +OBO:SP:6838,1,"Les Hangars",44.85756,-0.559357,33063,0,OBO:SA:HANGAR,Europe/Paris,,OBO, +OBO:SP:684,1,"Lalanne",44.768924,-0.563815,33550,0,OBO:SA:LALAN,Europe/Paris,,OBO, +OBO:SP:6851,1,"Guesde (rue L. Blanc)",44.858645,-0.536706,33119,0,OBO:SA:GUESDE,Europe/Paris,,OBO, +OBO:SP:6852,1,"Guesde (rue J. Guesde)",44.858239,-0.537859,33119,0,OBO:SA:GUESDE,Europe/Paris,,OBO, +OBO:SP:6854,1,"Cenon Gare",44.856609,-0.534132,33119,0,OBX:SA:CENOG,Europe/Paris,,OBO, +OBO:SP:686,1,"Vélodrome",44.858243,-0.605461,33063,0,OBO:SA:VELOD,Europe/Paris,,OBO, +OBO:SP:687,1,"La Forêt",44.862638,-0.649135,33162,0,OBO:SA:FORET2,Europe/Paris,,OBO, +OBO:SP:688,1,"Président Wilson",44.839339,-0.63323,33281,0,OBO:SA:PTWIL,Europe/Paris,,OBO, +OBO:SP:689,1,"Montherlant",44.79432,-0.580892,33550,0,OBO:SA:MONTH,Europe/Paris,,OBO, +OBO:SP:69,1,"Poincaré",44.861858,-0.592945,33069,0,OBO:SA:POINC,Europe/Paris,,OBO, +OBO:SP:690,1,"Les Erables",44.81302,-0.622791,33318,0,OBO:SA:LERAB,Europe/Paris,,OBO, +OBO:SP:6901,1,"Les Hangars (Médoc)",44.855354,-0.562663,33063,0,OBO:SA:HANG69,Europe/Paris,,OBO, +OBO:SP:6902,1,"Quinconces (Jean Jaurès)",44.843068,-0.569155,33063,0,OBO:SA:QUIN69,Europe/Paris,,OBO, +OBO:SP:6903,1,"Stalingrad (Parlier)",44.84153,-0.563471,33063,0,OBO:SA:STAL69,Europe/Paris,,OBO, +OBO:SP:691,1,"Parc Bordelais",44.854495,-0.599049,33063,0,OBO:SA:GLECLE,Europe/Paris,,OBO, +OBO:SP:6911,1,"Rocquevielle",44.848038,-0.707253,33281,0,OBO:SA:ROCQUE,Europe/Paris,,OBO, +OBO:SP:6912,1,"Rocquevielle",44.847962,-0.707121,33281,0,OBO:SA:ROCQUE,Europe/Paris,,OBO, +OBO:SP:6913,1,"Bellevue",44.845619,-0.726452,33281,0,OBO:SA:BELVUE,Europe/Paris,,OBO, +OBO:SP:6914,1,"Bellevue",44.845564,-0.726208,33281,0,OBO:SA:BELVUE,Europe/Paris,,OBO, +OBO:SP:6915,1,"Hestigeac",44.843551,-0.737565,33281,0,OBO:SA:HESTIG,Europe/Paris,,OBO, +OBO:SP:6916,1,"Hestigeac",44.843443,-0.737558,33281,0,OBO:SA:HESTIG,Europe/Paris,,OBO, +OBO:SP:692,1,"Jouhaux",44.801506,-0.570755,33039,0,OBO:SA:JOUH20,Europe/Paris,,OBO, +OBO:SP:6921,1,"Marchegay",44.840909,-0.756253,33273,0,OBO:SA:MARCHE,Europe/Paris,,OBO, +OBO:SP:6922,1,"Marchegay",44.840716,-0.755315,33273,0,OBO:SA:MARCHE,Europe/Paris,,OBO, +OBO:SP:6923,1,"Colonel Bourgoin",44.841726,-0.763795,33273,0,OBO:SA:BOURGO,Europe/Paris,,OBO, +OBO:SP:6924,1,"Colonel Bourgoin",44.841467,-0.762397,33273,0,OBO:SA:BOURGO,Europe/Paris,,OBO, +OBO:SP:6925,1,"Maréchal Leclerc",44.842381,-0.769464,33273,0,OBO:SA:MARLEC,Europe/Paris,,OBO, +OBO:SP:6926,1,"Maréchal Leclerc",44.842168,-0.768829,33273,0,OBO:SA:MARLEC,Europe/Paris,,OBO, +OBO:SP:6927,1,"Martignas Centre",44.841029,-0.77529,33273,0,OBO:SA:MARCTR,Europe/Paris,,OBO, +OBO:SP:6928,1,"Martyrs",44.84385,-0.774517,33273,0,OBO:SA:MTYRS,Europe/Paris,,OBO, +OBO:SP:6929,1,"Martyrs",44.843953,-0.774397,33273,0,OBO:SA:MTYRS,Europe/Paris,,OBO, +OBO:SP:693,1,"E. Vaillant",44.81789,-0.603896,33522,0,OBO:SA:EVA83,Europe/Paris,,OBO, +OBO:SP:6930,1,"Pyrénées",44.845244,-0.775396,33273,0,OBO:SA:PYRENE,Europe/Paris,,OBO, +OBO:SP:6931,1,"Pyrénées",44.845324,-0.775427,33273,0,OBO:SA:PYRENE,Europe/Paris,,OBO, +OBO:SP:6932,1,"Collège Aliénor d'Aquitaine",44.846042,-0.780556,33273,0,OBO:SA:ALIENO,Europe/Paris,,OBO, +OBO:SP:6933,1,"Collège Aliénor d'Aquitaine",44.846265,-0.77981,33273,0,OBO:SA:ALIENO,Europe/Paris,,OBO, +OBO:SP:6934,1,"Sapinettes",44.843808,-0.786588,33273,0,OBO:SA:SAPINE,Europe/Paris,,OBO, +OBO:SP:6935,1,"Sapinettes",44.843879,-0.786605,33273,0,OBO:SA:SAPINE,Europe/Paris,,OBO, +OBO:SP:6936,1,"Nauplie",44.844104,-0.79084,33273,0,OBO:SA:NAUPLI,Europe/Paris,,OBO, +OBO:SP:6937,1,"Nauplie",44.844413,-0.792102,33273,0,OBO:SA:NAUPLI,Europe/Paris,,OBO, +OBO:SP:6938,1,"Moulis",44.845529,-0.796359,33273,0,OBO:SA:MOULIS,Europe/Paris,,OBO, +OBO:SP:6939,1,"Moulis",44.84552,-0.796624,33273,0,OBO:SA:MOULIS,Europe/Paris,,OBO, +OBO:SP:694,1,"Square Emile Combes",44.836865,-0.607407,33063,0,OBO:SA:SCOMBE,Europe/Paris,,OBO, +OBO:SP:6940,1,"Loupiac",44.843226,-0.800701,33273,0,OBO:SA:LOUPIA,Europe/Paris,,OBO, +OBO:SP:6941,1,"Loupiac",44.843209,-0.800662,33273,0,OBO:SA:LOUPIA,Europe/Paris,,OBO, +OBO:SP:6942,1,"Les Pins",44.844552,-0.795393,33273,0,OBO:SA:TMARTI,Europe/Paris,,OBO, +OBO:SP:695,1,"Cité SNCF",44.819464,-0.544179,33063,0,OBO:SA:CSNCF,Europe/Paris,,OBO, +OBO:SP:696,1,"Lachassaigne",44.842627,-0.59008,33063,0,OBO:SA:LACHA,Europe/Paris,,OBO, +OBO:SP:6961,1,"Arches de l'Estey",44.792643,-0.53488,33039,0,OBO:SA:ARCHES,Europe/Paris,,OBO, +OBO:SP:6962,1,"Arches de l'Estey",44.792532,-0.534975,33039,0,OBO:SA:ARCHES,Europe/Paris,,OBO, +OBO:SP:6963,1,"Terres de Borde (rue d'Armagnac)",44.822064,-0.554182,33063,0,OBO:SA:TBORD2,Europe/Paris,,OBO, +OBO:SP:6971,1,"Carnot",44.958364,-0.603069,33312,0,OBO:SA:CARN58,Europe/Paris,,OBO, +OBO:SP:6976,1,"Le Sulky Terminus",44.87367,-0.629597,33069,0,OBO:SA:TSULKY,Europe/Paris,,OBO, +OBO:SP:698,1,"Saget",44.828498,-0.557008,33063,0,OBO:SA:SAGET,Europe/Paris,,OBO, +OBO:SP:6981,1,"Mérignac Soleil (Porte 1)",44.831471,-0.655963,33281,0,OBO:SA:MERSOL,Europe/Paris,,OBO, +OBO:SP:6982,1,"Avenue Ausone",44.870462,-0.593039,33069,0,OBO:SA:AVAUSO,Europe/Paris,,OBO, +OBO:SP:6983,1,"Place Ozanam",44.849672,-0.614615,33063,0,OBO:SA:CHAUME,Europe/Paris,,OBO, +OBO:SP:6984,1,"Place Ozanam",44.84966,-0.614412,33063,0,OBO:SA:CHAUME,Europe/Paris,,OBO, +OBO:SP:6993,1,"Provinces",44.846965,-0.492619,33013,0,OBO:SA:PROV80,Europe/Paris,,OBO, +OBO:SP:6994,1,"Provinces",44.845652,-0.492524,33013,0,OBO:SA:PROV80,Europe/Paris,,OBO, +OBO:SP:7,1,"Bertin",44.815884,-0.565617,33063,0,OBO:SA:BERTI,Europe/Paris,,OBO, +OBO:SP:700,1,"Anita Conti",44.932781,-0.620381,33056,0,OBO:SA:PLACAN,Europe/Paris,,OBO, +OBO:SP:7002,1,"Pas de la Côte",44.7811,-0.536521,33550,0,OBO:SA:PDLCOT,Europe/Paris,,OBO, +OBO:SP:7003,1,"Pas de la Côte",44.780774,-0.536007,33550,0,OBO:SA:PDLCOT,Europe/Paris,,OBO, +OBO:SP:7004,1,"Martignas Centre",44.840988,-0.775439,33273,0,OBO:SA:MARCTR,Europe/Paris,,OBO, +OBO:SP:7009,1,"Dalon",44.773067,-0.538039,33550,0,OBO:SA:DALON,Europe/Paris,,OBO, +OBO:SP:7010,1,"De Lattre de Tassigny",44.773219,-0.545691,33550,0,OBO:SA:TASSIG,Europe/Paris,,OBO, +OBO:SP:7011,1,"Domaine du Parc",44.775956,-0.55224,33550,0,OBO:SA:DOPARC,Europe/Paris,,OBO, +OBO:SP:7012,1,"Stade Wangermez",44.777918,-0.554566,33550,0,OBO:SA:WANGER,Europe/Paris,,OBO, +OBO:SP:7013,1,"La Morandière (rue de La Morandière)",44.859607,-0.67759,33200,0,OBO:SA:MORAN,Europe/Paris,,OBO, +OBO:SP:7014,1,"La Morandière (rue de La Morandière)",44.859327,-0.677622,33200,0,OBO:SA:MORAN,Europe/Paris,,OBO, +OBO:SP:7015,1,"Les Aulnes",44.86584,-0.679342,33200,0,OBO:SA:BERLE3,Europe/Paris,,OBO, +OBO:SP:7016,1,"Les Aulnes",44.865969,-0.679262,33200,0,OBO:SA:BERLE3,Europe/Paris,,OBO, +OBO:SP:7017,1,"Jean Jaurès (rue de la Morandière)",44.871594,-0.678693,33200,0,OBO:SA:JJAU30,Europe/Paris,,OBO, +OBO:SP:7018,1,"Jean Jaurès (rue de la Morandière)",44.871334,-0.67865,33200,0,OBO:SA:JJAU30,Europe/Paris,,OBO, +OBO:SP:702,1,"Lajaunie",44.856522,-0.548445,33063,0,OBO:SA:LAJAU,Europe/Paris,,OBO, +OBO:SP:703,1,"Gutenberg",44.787691,-0.645976,33318,0,OBO:SA:GUTEN,Europe/Paris,,OBO, +OBO:SP:7032,1,"Auriol",44.840805,-0.684681,33281,0,OBO:SA:AURIOL,Europe/Paris,,OBO, +OBO:SP:7033,1,"Auriol",44.840726,-0.684891,33281,0,OBO:SA:AURIOL,Europe/Paris,,OBO, +OBO:SP:7051,1,"Bellonte",44.828579,-0.68968,33281,0,OBO:SA:BELLON,Europe/Paris,,OBO, +OBO:SP:707,1,"Beautiran",44.821949,-0.571207,33063,0,OBO:SA:BEAUT,Europe/Paris,,OBO, +OBO:SP:708,1,"Olympiades",44.847808,-0.651161,33281,0,OBO:SA:STMERI,Europe/Paris,,OBO, +OBO:SP:7081,1,"Lénine",44.795967,-0.557733,33039,0,OBO:SA:LENINE,Europe/Paris,,OBO, +OBO:SP:709,1,"Moulin de Caupian",44.883038,-0.739727,33449,0,OBO:SA:MOCAUP,Europe/Paris,,OBO, +OBO:SP:7092,1,"Foin",44.927747,-0.679218,33519,0,OBO:SA:FOIN,Europe/Paris,,OBO, +OBO:SP:71,1,"Verdot",44.863067,-0.484117,33013,0,OBO:SA:VERDOT,Europe/Paris,,OBO, +OBO:SP:711,1,"Dupas",44.828774,-0.539662,33063,0,OBO:SA:DUPAS,Europe/Paris,,OBO, +OBO:SP:7112,1,"Parc de Mussonville",44.79457,-0.560277,33039,0,OBX:SA:PMUSS,Europe/Paris,,OBO, +OBO:SP:7113,1,"Lénine",44.796329,-0.557123,33039,0,OBO:SA:LENINE,Europe/Paris,,OBO, +OBO:SP:712,1,"Nougueys",44.829346,-0.528503,33167,0,OBO:SA:EDVAI,Europe/Paris,,OBO, +OBO:SP:713,1,"Gaussen",44.858121,-0.569935,33063,0,OBO:SA:GAUSS,Europe/Paris,,OBO, +OBO:SP:714,1,"Le Fronton",44.945726,-0.489611,33003,0,OBO:SA:FRONTO,Europe/Paris,,OBO, +OBO:SP:715,1,"Bertrand de Goth",44.819123,-0.576408,33063,0,OBO:SA:BGOTH,Europe/Paris,,OBO, +OBO:SP:7151,1,"Van Gogh",44.910589,-0.714318,33376,0,OBO:SA:VANGOG,Europe/Paris,,OBO, +OBO:SP:7152,1,"Châtaigniers",44.911593,-0.719078,33376,0,OBO:SA:CHAT03,Europe/Paris,,OBO, +OBO:SP:7153,1,"Châtaigniers",44.911629,-0.719322,33376,0,OBO:SA:CHAT03,Europe/Paris,,OBO, +OBO:SP:716,1,"Gare de Bruges",44.885362,-0.608269,33075,0,OBO:SA:FLEUR,Europe/Paris,,OBO, +OBO:SP:717,1,"Crébadin",44.948354,-0.616552,33312,0,OBO:SA:CREBAD,Europe/Paris,,OBO, +OBO:SP:72,1,"Violettes",44.860702,-0.637832,33162,0,OBO:SA:VIOLET,Europe/Paris,,OBO, +OBO:SP:720,1,"Chardons Bleus",44.835831,-0.640426,33281,0,OBO:SA:CBLEUS,Europe/Paris,,OBO, +OBO:SP:721,1,"Fellonneau",44.811269,-0.563665,33039,0,OBO:SA:FELLO,Europe/Paris,,OBO, +OBO:SP:7211,1,"Parc des Expositions Porte D",44.895131,-0.566179,33063,0,OBO:SA:EXPOSI,Europe/Paris,,OBO, +OBO:SP:722,1,"Verte",44.83665,-0.605974,33063,0,OBO:SA:VERTE,Europe/Paris,,OBO, +OBO:SP:7221,1,"Souge",44.855669,-0.784486,33273,0,OBO:SA:TSOUGE,Europe/Paris,,OBO, +OBO:SP:7222,1,"Cerisiers",44.854596,-0.774732,33273,0,OBO:SA:CERISI,Europe/Paris,,OBO, +OBO:SP:7223,1,"Cerisiers",44.855017,-0.774786,33273,0,OBO:SA:CERISI,Europe/Paris,,OBO, +OBO:SP:7224,1,"Terre Rouge",44.850187,-0.773967,33273,0,OBO:SA:TROU88,Europe/Paris,,OBO, +OBO:SP:7225,1,"Terre Rouge",44.850163,-0.773864,33273,0,OBO:SA:TROU88,Europe/Paris,,OBO, +OBO:SP:7226,1,"Genêts",44.850478,-0.777332,33273,0,OBO:SA:GENE88,Europe/Paris,,OBO, +OBO:SP:7227,1,"Genêts",44.850499,-0.777232,33273,0,OBO:SA:GENE88,Europe/Paris,,OBO, +OBO:SP:7228,1,"La Chênaie",44.849802,-0.781024,33273,0,OBO:SA:CHENAI,Europe/Paris,,OBO, +OBO:SP:7229,1,"La Chênaie",44.849786,-0.780985,33273,0,OBO:SA:CHENAI,Europe/Paris,,OBO, +OBO:SP:723,1,"Lycée Jean Monnet",44.916229,-0.634572,33056,0,OBO:SA:LJMONN,Europe/Paris,,OBO, +OBO:SP:7230,1,"Chalets du Soleil",44.848252,-0.788167,33273,0,OBO:SA:SOLE88,Europe/Paris,,OBO, +OBO:SP:7231,1,"Chalets du Soleil",44.848192,-0.788062,33273,0,OBO:SA:SOLE88,Europe/Paris,,OBO, +OBO:SP:7232,1,"Margaux",44.846395,-0.792375,33273,0,OBO:SA:MARGAU,Europe/Paris,,OBO, +OBO:SP:7233,1,"Margaux",44.846567,-0.792108,33273,0,OBO:SA:MARGAU,Europe/Paris,,OBO, +OBO:SP:7234,1,"Verdun",44.843205,-0.786281,33273,0,OBO:SA:VERD88,Europe/Paris,,OBO, +OBO:SP:7235,1,"Verdun",44.843013,-0.785584,33273,0,OBO:SA:VERD88,Europe/Paris,,OBO, +OBO:SP:7236,1,"Les Ecoles",44.842334,-0.780382,33273,0,OBO:SA:ECOLES,Europe/Paris,,OBO, +OBO:SP:7237,1,"Les Ecoles",44.842305,-0.779113,33273,0,OBO:SA:ECOLES,Europe/Paris,,OBO, +OBO:SP:7238,1,"Martignas Centre",44.839416,-0.77793,33273,0,OBO:SA:VALERY,Europe/Paris,,OBO, +OBO:SP:7239,1,"Martignas Centre",44.839399,-0.777904,33273,0,OBO:SA:VALERY,Europe/Paris,,OBO, +OBO:SP:7240,1,"Girard",44.837558,-0.781935,33273,0,OBO:SA:GIRARD,Europe/Paris,,OBO, +OBO:SP:7241,1,"Girard",44.837506,-0.781881,33273,0,OBO:SA:GIRARD,Europe/Paris,,OBO, +OBO:SP:7242,1,"St Jacques",44.839887,-0.79898,33273,0,OBO:SA:STJACQ,Europe/Paris,,OBO, +OBO:SP:7243,1,"St Jacques",44.839898,-0.798917,33273,0,OBO:SA:STJACQ,Europe/Paris,,OBO, +OBO:SP:7244,1,"Sauternes",44.841288,-0.797263,33273,0,OBO:SA:SAUT82,Europe/Paris,,OBO, +OBO:SP:7245,1,"Sauternes",44.841185,-0.797383,33273,0,OBO:SA:SAUT82,Europe/Paris,,OBO, +OBO:SP:7246,1,"Les Pins",44.844868,-0.79511,33273,0,OBO:SA:TMARTI,Europe/Paris,,OBO, +OBO:SP:725,1,"Président Wilson",44.839272,-0.63334,33281,0,OBO:SA:PTWIL,Europe/Paris,,OBO, +OBO:SP:726,1,"Mondion",44.999064,-0.493546,33487,0,OBO:SA:MONDIO,Europe/Paris,,OBO, +OBO:SP:7261,1,"Redon",44.917424,-0.662938,33519,0,OBO:SA:REDON,Europe/Paris,,OBO, +OBO:SP:7262,1,"Redon",44.917367,-0.663036,33519,0,OBO:SA:REDON,Europe/Paris,,OBO, +OBO:SP:7264,1,"Cracovie",44.871035,-0.57613,33063,0,OBO:SA:CRACOV,Europe/Paris,,OBO, +OBO:SP:7265,1,"Cracovie",44.870919,-0.576389,33063,0,OBO:SA:CRACOV,Europe/Paris,,OBO, +OBO:SP:7271,1,"Vercors",44.855652,-0.657082,33281,0,OBO:SA:VERCOR,Europe/Paris,,OBO, +OBO:SP:7272,1,"Les Pins",44.855385,-0.658636,33281,0,OBX:SA:LESPIN,Europe/Paris,,OBO, +OBO:SP:7281,1,"Iris",44.86851,-0.522069,33249,0,OBO:SA:TIRIS,Europe/Paris,,OBO, +OBO:SP:7282,1,"Parc des Expositions Porte D",44.895121,-0.56647,33063,0,OBO:SA:EXPOSI,Europe/Paris,,OBO, +OBO:SP:7283,1,"Gouraud (av Vigneau)",44.840931,-0.667017,33281,0,OBO:SA:GOUR34,Europe/Paris,,OBO, +OBO:SP:7284,1,"Gouraud (av Vigneau)",44.840813,-0.667035,33281,0,OBO:SA:GOUR34,Europe/Paris,,OBO, +OBO:SP:7285,1,"Pablo Casals",44.846874,-0.666886,33281,0,OBO:SA:CASALS,Europe/Paris,,OBO, +OBO:SP:7286,1,"Pablo Casals",44.846819,-0.666933,33281,0,OBO:SA:CASALS,Europe/Paris,,OBO, +OBO:SP:7287,1,"Frères Robinson",44.850476,-0.655515,33281,0,OBO:SA:PCAPEY,Europe/Paris,,OBO, +OBO:SP:7288,1,"Frères Robinson",44.851209,-0.655437,33281,0,OBO:SA:PCAPEY,Europe/Paris,,OBO, +OBO:SP:729,1,"Voltaire",44.818342,-0.546273,33063,0,OBO:SA:VOLTA,Europe/Paris,,OBO, +OBO:SP:7291,1,"Deveaux (rue Deveaux)",44.848016,-0.62282,33063,0,OBO:SA:DEVEAU,Europe/Paris,,OBO, +OBO:SP:7292,1,"Stade Daugère",44.884736,-0.592559,33075,0,OBO:SA:SDAUGE,Europe/Paris,,OBO, +OBO:SP:7293,1,"Stade Daugère",44.884871,-0.592555,33075,0,OBO:SA:SDAUGE,Europe/Paris,,OBO, +OBO:SP:730,1,"Place Mondésir",44.838526,-0.617571,33281,0,OBO:SA:MONDES,Europe/Paris,,OBO, +OBO:SP:7302,1,"Les Pins (av Magudas)",44.857298,-0.659647,33281,0,OBX:SA:LESPIN,Europe/Paris,,OBO, +OBO:SP:7303,1,"Les Pins (av Magudas)",44.857408,-0.65987,33281,0,OBX:SA:LESPIN,Europe/Paris,,OBO, +OBO:SP:731,1,"Plaisance",44.816492,-0.686442,33281,0,OBO:SA:PLAIS2,Europe/Paris,,OBO, +OBO:SP:732,1,"Montfort",44.768865,-0.59549,33192,0,OBO:SA:MONTF,Europe/Paris,,OBO, +OBO:SP:7321,1,"Le Haillan Rostand (av. Mermoz)",44.859,-0.666246,33162,0,OBO:SA:HAYRO,Europe/Paris,,OBO, +OBO:SP:7322,1,"Le Haillan Rostand (av. Mermoz)",44.859693,-0.666266,33200,0,OBO:SA:HAYRO,Europe/Paris,,OBO, +OBO:SP:733,1,"St Paulin",44.805611,-0.559104,33039,0,OBO:SA:SPAUL,Europe/Paris,,OBO, +OBO:SP:7338,1,"Bricaud",44.895429,-0.565323,33063,0,OBO:SA:BRICAU,Europe/Paris,,OBO, +OBO:SP:7347,1,"Lucien Faure",44.865851,-0.561898,33063,0,OBO:SA:LFAUR,Europe/Paris,,OBO, +OBO:SP:7348,1,"Lucien Faure",44.865857,-0.560871,33063,0,OBO:SA:LFAUR,Europe/Paris,,OBO, +OBO:SP:7349,1,"Le Haillan Rostand",44.858468,-0.668442,33200,0,OBX:SA:TMAGUD,Europe/Paris,,OBO, +OBO:SP:735,1,"Piscine Judaïque",44.840891,-0.590817,33063,0,OBO:SA:PJUDAI,Europe/Paris,,OBO, +OBO:SP:737,1,"Camparian",44.849247,-0.524737,33119,0,OBO:SA:CAMPAR,Europe/Paris,,OBO, +OBO:SP:739,1,"Bechade",44.868227,-0.670943,33200,0,OBO:SA:BECHA,Europe/Paris,,OBO, +OBO:SP:74,1,"Rigaillou",44.757632,-0.582527,33550,0,OBO:SA:RIGAI,Europe/Paris,,OBO, +OBO:SP:7403,1,"Les Pins (arrêt de descente)",44.856107,-0.659139,33281,0,OBO:SA:LESPI1,Europe/Paris,,OBO, +OBO:SP:741,1,"Gay Lussac",44.85027,-0.49755,33013,0,OBO:SA:GAYLU,Europe/Paris,,OBO, +OBO:SP:7411,1,"Cicéron",44.806055,-0.661145,33318,0,OBO:SA:CICERO,Europe/Paris,,OBO, +OBO:SP:7412,1,"Socrate",44.808492,-0.662418,33318,0,OBO:SA:SOCRA,Europe/Paris,,OBO, +OBO:SP:742,1,"Beautiran",44.821498,-0.571494,33063,0,OBO:SA:BEAUT,Europe/Paris,,OBO, +OBO:SP:744,1,"Cante-Gric",44.910656,-0.687166,33519,0,OBO:SA:CGRIC,Europe/Paris,,OBO, +OBO:SP:7441,1,"Lavignolle",44.883227,-0.566107,33063,0,OBO:SA:LAVGNO,Europe/Paris,,OBO, +OBO:SP:7451,1,"Centre Commercial du Lac",44.881969,-0.564303,33063,0,OBO:SA:AUCHAN,Europe/Paris,,OBO, +OBO:SP:7452,1,"Centre Commercial du Lac",44.88195,-0.564618,33063,0,OBO:SA:AUCHAN,Europe/Paris,,OBO, +OBO:SP:7453,1,"Rue Richelieu",44.845895,-0.618211,33063,0,OBO:SA:RICHE,Europe/Paris,,OBO, +OBO:SP:7461,1,"République",44.835029,-0.579245,33063,0,OBO:SA:REPU48,Europe/Paris,,OBO, +OBO:SP:7462,1,"République (arrêt de Montée)",44.83508,-0.580161,33063,0,OBO:SA:REPU48,Europe/Paris,,OBO, +OBO:SP:748,1,"Béraldi",44.831849,-0.520061,33167,0,OBO:SA:BERAL,Europe/Paris,,OBO, +OBO:SP:749,1,"Gare de Bruges",44.885442,-0.609947,33075,0,OBO:SA:FLEUR,Europe/Paris,,OBO, +OBO:SP:7492,1,"Langevin",44.851299,-0.660371,33281,0,OBO:SA:LANGVN,Europe/Paris,,OBO, +OBO:SP:7493,1,"Chemin des Vignes",44.921845,-0.726482,33376,0,OBO:SA:CVIGNE,Europe/Paris,,OBO, +OBO:SP:7494,1,"Chemin du Foin",44.920024,-0.716821,33376,0,OBO:SA:CFOIN,Europe/Paris,,OBO, +OBO:SP:7495,1,"Moulin à Vent",44.885565,-0.638493,33162,0,OBO:SA:MVENT,Europe/Paris,,OBO, +OBO:SP:7496,1,"Route de Cujac",44.919893,-0.723955,33376,0,OBO:SA:RCUJAC,Europe/Paris,,OBO, +OBO:SP:7497,1,"Collège Albert Camus (rue du Moulin à Vent)",44.885685,-0.644168,33162,0,OBO:SA:CCAMUS,Europe/Paris,,OBO, +OBO:SP:7498,1,"Gambetta Mériadeck",44.839561,-0.583183,33063,0,OBO:SA:MICHEL,Europe/Paris,,OBO, +OBO:SP:7499,1,"Le Plateau",44.885331,-0.646985,33162,0,OBO:SA:TLPLAT,Europe/Paris,,OBO, +OBO:SP:75,1,"Square Prévert",44.912278,-0.517969,33032,0,OBO:SA:SQPREV,Europe/Paris,,OBO, +OBO:SP:7500,1,"Gambetta Mériadeck",44.84105,-0.583392,33063,0,OBO:SA:MICHEL,Europe/Paris,,OBO, +OBO:SP:7501,1,"Langevin",44.8514,-0.660568,33281,0,OBO:SA:LANGVN,Europe/Paris,,OBO, +OBO:SP:7502,1,"Chemin des Vignes",44.922005,-0.726557,33376,0,OBO:SA:CVIGNE,Europe/Paris,,OBO, +OBO:SP:7503,1,"Chemin du Foin",44.919986,-0.716869,33376,0,OBO:SA:CFOIN,Europe/Paris,,OBO, +OBO:SP:7504,1,"Les Campanules",44.917788,-0.72247,33376,0,OBO:SA:CPANUL,Europe/Paris,,OBO, +OBO:SP:7505,1,"Cantinolle",44.892383,-0.664396,33162,0,OBO:SA:TCANTI,Europe/Paris,,OBO, +OBO:SP:7506,1,"Bedat",44.846612,-0.649715,33281,0,OBO:SA:BEDAT,Europe/Paris,,OBO, +OBO:SP:7507,1,"Route de Cujac",44.920096,-0.724349,33376,0,OBO:SA:RCUJAC,Europe/Paris,,OBO, +OBO:SP:7508,1,"Les Campanules",44.917648,-0.72236,33376,0,OBO:SA:CPANUL,Europe/Paris,,OBO, +OBO:SP:7509,1,"Dumont",44.883048,-0.647902,33162,0,OBO:SA:DUMON,Europe/Paris,,OBO, +OBO:SP:7511,1,"De Serres",44.890429,-0.653935,33162,0,OBO:SA:SERRES,Europe/Paris,,OBO, +OBO:SP:7512,1,"Bedat",44.846649,-0.649679,33281,0,OBO:SA:BEDAT,Europe/Paris,,OBO, +OBO:SP:7513,1,"Mairie de St Aubin",44.912775,-0.723863,33376,0,OBO:SA:MAUBIN,Europe/Paris,,OBO, +OBO:SP:7514,1,"Villepreux",44.912859,-0.737999,33376,0,OBO:SA:TVILLE,Europe/Paris,,OBO, +OBO:SP:7515,1,"Le Plateau",44.88498,-0.647254,33162,0,OBO:SA:TLPLAT,Europe/Paris,,OBO, +OBO:SP:7516,1,"Pas de la Tourte",44.92029,-0.733864,33376,0,OBO:SA:PATOUR,Europe/Paris,,OBO, +OBO:SP:7517,1,"Gasteboy",44.887578,-0.643074,33162,0,OBO:SA:GASTEB,Europe/Paris,,OBO, +OBO:SP:7518,1,"Faisan Doré",44.918785,-0.713973,33376,0,OBO:SA:FAISAN,Europe/Paris,,OBO, +OBO:SP:7519,1,"Gasteboy",44.888077,-0.64407,33162,0,OBO:SA:GASTEB,Europe/Paris,,OBO, +OBO:SP:7520,1,"Mounic",44.924482,-0.731174,33376,0,OBO:SA:MOUNIC,Europe/Paris,,OBO, +OBO:SP:7521,1,"Faisan Doré",44.918741,-0.713945,33376,0,OBO:SA:FAISAN,Europe/Paris,,OBO, +OBO:SP:7522,1,"Moulin à Vent",44.885923,-0.638846,33162,0,OBO:SA:MVENT,Europe/Paris,,OBO, +OBO:SP:7523,1,"Mairie de St Aubin",44.91284,-0.723284,33376,0,OBO:SA:MAUBIN,Europe/Paris,,OBO, +OBO:SP:7524,1,"Pic Vert",44.912426,-0.713552,33376,0,OBO:SA:PICVER,Europe/Paris,,OBO, +OBO:SP:7526,1,"Collège Albert Camus (rue du Moulin à Vent)",44.885481,-0.643508,33162,0,OBO:SA:CCAMUS,Europe/Paris,,OBO, +OBO:SP:7528,1,"Pas de la Tourte",44.919585,-0.734198,33376,0,OBO:SA:PATOUR,Europe/Paris,,OBO, +OBO:SP:7529,1,"De Serres",44.890506,-0.65408,33162,0,OBO:SA:SERRES,Europe/Paris,,OBO, +OBO:SP:753,1,"Tillon",44.776735,-0.543964,33550,0,OBO:SA:TILLON,Europe/Paris,,OBO, +OBO:SP:7530,1,"Eysines Bourg",44.889465,-0.648458,33162,0,OBO:SA:EYSINB,Europe/Paris,,OBO, +OBO:SP:7531,1,"Eysines Bourg",44.889154,-0.6475,33162,0,OBO:SA:EYSINB,Europe/Paris,,OBO, +OBO:SP:754,1,"Nouzarède",44.809755,-0.562531,33039,0,OBO:SA:NOUZA,Europe/Paris,,OBO, +OBO:SP:7541,1,"Le Rouzic",44.842246,-0.549848,33063,0,OBO:SA:ROUZIC,Europe/Paris,,OBO, +OBO:SP:7542,1,"Le Rouzic",44.84231,-0.549814,33063,0,OBO:SA:ROUZIC,Europe/Paris,,OBO, +OBO:SP:7543,1,"Ile de France",44.845849,-0.496844,33013,0,OBO:SA:ILEFRA,Europe/Paris,,OBO, +OBO:SP:7544,1,"Ile de France",44.845878,-0.496795,33013,0,OBO:SA:ILEFRA,Europe/Paris,,OBO, +OBO:SP:7545,1,"Taris",44.852051,-0.49253,33013,0,OBO:SA:TARIS,Europe/Paris,,OBO, +OBO:SP:7546,1,"Taris",44.85358,-0.493486,33013,0,OBO:SA:TARIS,Europe/Paris,,OBO, +OBO:SP:7547,1,"Tout y Faut",44.865893,-0.490527,33013,0,OBO:SA:TYFAUT,Europe/Paris,,OBO, +OBO:SP:7548,1,"Tout y Faut",44.866217,-0.491118,33013,0,OBO:SA:TYFAUT,Europe/Paris,,OBO, +OBO:SP:7549,1,"Les Naturelles",44.852405,-0.482682,33013,0,OBO:SA:LESNAT,Europe/Paris,,OBO, +OBO:SP:755,1,"Fragonard",44.857305,-0.634203,33063,0,OBO:SA:FRAGO,Europe/Paris,,OBO, +OBO:SP:7550,1,"Les Naturelles",44.852371,-0.482617,33013,0,OBO:SA:LESNAT,Europe/Paris,,OBO, +OBO:SP:7552,1,"Blancherie",44.848448,-0.49959,33013,0,OBO:SA:BLAN80,Europe/Paris,,OBO, +OBO:SP:7553,1,"Blancherie",44.848388,-0.50008,33013,0,OBO:SA:BLAN80,Europe/Paris,,OBO, +OBO:SP:7554,1,"La Prairie",44.867243,-0.496605,33013,0,OBO:SA:LAPRAI,Europe/Paris,,OBO, +OBO:SP:7555,1,"Floirac Dravemont",44.846017,-0.510092,33167,0,OBX:SA:DRAVE,Europe/Paris,,OBO, +OBO:SP:756,1,"Bibliothèque",44.805168,-0.543125,33039,0,OBO:SA:BIB02,Europe/Paris,,OBO, +OBO:SP:7561,1,"Villepreux",44.912804,-0.737488,33376,0,OBO:SA:TVILLE,Europe/Paris,,OBO, +OBO:SP:7562,1,"Cigales",44.915953,-0.713494,33376,0,OBO:SA:CIGAL,Europe/Paris,,OBO, +OBO:SP:7563,1,"Cigales",44.91606,-0.713527,33376,0,OBO:SA:CIGAL,Europe/Paris,,OBO, +OBO:SP:7564,1,"Europe",44.925264,-0.498601,33003,0,OBO:SA:EURO93,Europe/Paris,,OBO, +OBO:SP:7565,1,"Europe",44.9247,-0.497931,33003,0,OBO:SA:EURO93,Europe/Paris,,OBO, +OBO:SP:7566,1,"Halte TER La Gorp",44.928295,-0.497369,33003,0,OBO:SA:HALGOR,Europe/Paris,,OBO, +OBO:SP:7567,1,"Halte TER La Gorp",44.928111,-0.497497,33003,0,OBO:SA:HALGOR,Europe/Paris,,OBO, +OBO:SP:7568,1,"Halte TER Coty",44.9289,-0.494476,33003,0,OBO:SA:HALCOT,Europe/Paris,,OBO, +OBO:SP:7569,1,"Delacroix",45.009982,-0.530818,33004,0,OBO:SA:DELACR,Europe/Paris,,OBO, +OBO:SP:7570,1,"Escarraguel (rue Cézanne)",45.008921,-0.528769,33004,0,OBO:SA:CEZANN,Europe/Paris,,OBO, +OBO:SP:7571,1,"Buttinière",44.86421,-0.524397,33249,0,OBX:SA:BUTTI,Europe/Paris,,OBO, +OBO:SP:7572,1,"République",44.835016,-0.579346,33063,0,OBO:SA:REPU48,Europe/Paris,,OBO, +OBO:SP:7573,1,"Camping International (face à l'Entrée)",44.897941,-0.583311,33075,0,OBO:SA:CAMPBX,Europe/Paris,,OBO, +OBO:SP:758,1,"Tristan",44.898426,-0.710393,33449,0,OBO:SA:TRISTA,Europe/Paris,,OBO, +OBO:SP:7589,1,"Lycée V Havel (arrêt de Descente)",44.786049,-0.564053,33039,0,OBO:SA:VHAVEL,Europe/Paris,,OBO, +OBO:SP:7591,1,"Tassigny",45.010498,-0.526213,33004,0,OBO:SA:TASS92,Europe/Paris,,OBO, +OBO:SP:7592,1,"Lachenal",45.003825,-0.527749,33004,0,OBO:SA:LACHEN,Europe/Paris,,OBO, +OBO:SP:7593,1,"10 Mai 1981",45.007744,-0.52496,33004,0,OBO:SA:MAI81,Europe/Paris,,OBO, +OBO:SP:7594,1,"Jean Moulin",45.007188,-0.530261,33004,0,OBO:SA:JMOU91,Europe/Paris,,OBO, +OBO:SP:76,1,"La Jacquotte",44.820839,-0.531856,33167,0,OBO:SA:JACQU,Europe/Paris,,OBO, +OBO:SP:760,1,"Laroque",44.874346,-0.570714,33063,0,OBO:SA:LAROQ,Europe/Paris,,OBO, +OBO:SP:7601,1,"Jules Verne",44.776549,-0.530022,33550,0,OBO:SA:SOVI,Europe/Paris,,OBO, +OBO:SP:7602,1,"Jules Verne",44.77698,-0.53034,33550,0,OBO:SA:SOVI,Europe/Paris,,OBO, +OBO:SP:7603,1,"Le Bocage",44.779558,-0.533159,33550,0,OBO:SA:COURCE,Europe/Paris,,OBO, +OBO:SP:7604,1,"Le Bocage",44.77916,-0.532653,33550,0,OBO:SA:COURCE,Europe/Paris,,OBO, +OBO:SP:7611,1,"Issartier",44.846734,-0.72009,33281,0,OBO:SA:ISSART,Europe/Paris,,OBO, +OBO:SP:7612,1,"Issartier",44.846681,-0.719782,33281,0,OBO:SA:ISSART,Europe/Paris,,OBO, +OBO:SP:7613,1,"Rosa Parks",44.841207,-0.530718,33167,0,OBO:SA:PARKS,Europe/Paris,,OBO, +OBO:SP:7614,1,"Rosa Parks",44.841634,-0.530631,33167,0,OBO:SA:PARKS,Europe/Paris,,OBO, +OBO:SP:7621,1,"Berges de Garonne",44.88703,-0.541348,33063,0,OBO:SA:TBGA,Europe/Paris,,OBO, +OBO:SP:7622,1,"Berges de Garonne",44.887261,-0.541185,33063,0,OBO:SA:TBGA,Europe/Paris,,OBO, +OBO:SP:7623,1,"Parc des Expositions Porte D",44.895118,-0.566584,33063,0,OBO:SA:EXPOSI,Europe/Paris,,OBO, +OBO:SP:763,1,"Roland Garros",44.829507,-0.687246,33281,0,OBO:SA:RGARO,Europe/Paris,,OBO, +OBO:SP:7631,1,"Chemin de Piétru",45.004442,-0.551139,33004,0,OBO:SA:CPIETR,Europe/Paris,,OBO, +OBO:SP:7651,1,"Jallère",44.895832,-0.550488,33063,0,OBO:SA:JALL25,Europe/Paris,,OBO, +OBO:SP:7652,1,"Jallère",44.895555,-0.550407,33063,0,OBO:SA:JALL25,Europe/Paris,,OBO, +OBO:SP:7661,1,"Collège Rosa Bonheur",44.874883,-0.590382,33075,0,OBO:SA:ROSABO,Europe/Paris,,OBO, +OBO:SP:767,1,"Les Méridiennes",44.872519,-0.599635,33069,0,OBO:SA:AUSON,Europe/Paris,,OBO, +OBO:SP:7671,1,"La Gardette (Bassens - Carbon Blanc)",44.888783,-0.516825,33249,0,OBX:SA:LGARDE,Europe/Paris,,OBO, +OBO:SP:7672,1,"Centre Commercial Mériadeck",44.838713,-0.582938,33063,0,OBO:SA:CMERIA,Europe/Paris,,OBO, +OBO:SP:769,1,"Deveaux",44.847184,-0.622348,33063,0,OBO:SA:DEVEAU,Europe/Paris,,OBO, +OBO:SP:77,1,"Turenne",44.845265,-0.585447,33063,0,OBO:SA:TUREN2,Europe/Paris,,OBO, +OBO:SP:7701,1,"Mairie de Talence",44.808727,-0.587141,33522,0,OBO:SA:PARNO,Europe/Paris,,OBO, +OBO:SP:771,1,"Epargne",44.793895,-0.567512,33039,0,OBO:SA:EPARG,Europe/Paris,,OBO, +OBO:SP:772,1,"Haut Livrac",44.800899,-0.675608,33318,0,OBO:SA:HLIVRA,Europe/Paris,,OBO, +OBO:SP:7725,1,"Rue d'Aviau",44.850034,-0.576477,33063,0,OBO:SA:AVIAU,Europe/Paris,,OBO, +OBO:SP:7726,1,"St Maur",44.851913,-0.578574,33063,0,OBO:SA:MAUR,Europe/Paris,,OBO, +OBO:SP:7727,1,"Mandron",44.853948,-0.581415,33063,0,OBO:SA:MANDR2,Europe/Paris,,OBO, +OBO:SP:7728,1,"Barrière du Médoc (rue Johnston)",44.853013,-0.591377,33063,0,OBO:SA:BMEDO,Europe/Paris,,OBO, +OBO:SP:7729,1,"Rue d'Aviau",44.850818,-0.578428,33063,0,OBO:SA:AVIAU,Europe/Paris,,OBO, +OBO:SP:773,1,"Lartigue",44.840439,-0.596704,33063,0,OBO:SA:LARTIG,Europe/Paris,,OBO, +OBO:SP:7730,1,"Paul Doumer",44.851562,-0.574915,33063,0,OBX:SA:PDOUM,Europe/Paris,,OBO, +OBO:SP:7731,1,"Tourny",44.844294,-0.578392,33063,0,OBO:SA:TOURN,Europe/Paris,,OBO, +OBO:SP:7742,1,"Kaolack",44.817969,-0.665822,33281,0,OBO:SA:KAOLAC,Europe/Paris,,OBO, +OBO:SP:7743,1,"Kaolack",44.817742,-0.665883,33281,0,OBO:SA:KAOLAC,Europe/Paris,,OBO, +OBO:SP:775,1,"14 Juillet",44.822572,-0.593508,33063,0,OBO:SA:14JU45,Europe/Paris,,OBO, +OBO:SP:7751,1,"Nigès",44.841233,-0.759467,33273,0,OBO:SA:NIGES,Europe/Paris,,OBO, +OBO:SP:7752,1,"Nigès",44.841082,-0.758621,33273,0,OBO:SA:NIGES,Europe/Paris,,OBO, +OBO:SP:776,1,"Bobet",44.782424,-0.593953,33192,0,OBO:SA:BOBET,Europe/Paris,,OBO, +OBO:SP:7771,1,"La Jacquotte",44.820817,-0.531133,33167,0,OBO:SA:JACQU,Europe/Paris,,OBO, +OBO:SP:7772,1,"La Cité du Vin",44.861603,-0.548766,33063,0,OBO:SA:CITVIN,Europe/Paris,,OBO, +OBO:SP:778,1,"Marx Dormoy",44.83939,-0.635792,33281,0,OBO:SA:MDORMO,Europe/Paris,,OBO, +OBO:SP:7781,1,"Stade MATMUT Atlantique",44.894535,-0.565646,33063,0,OBO:SA:STADE,Europe/Paris,,OBO, +OBO:SP:7791,1,"Stade Suzon",44.812074,-0.577568,33522,0,OBO:SA:STSUZO,Europe/Paris,,OBO, +OBO:SP:7792,1,"Stade Suzon",44.812084,-0.577796,33522,0,OBO:SA:STSUZO,Europe/Paris,,OBO, +OBO:SP:7793,1,"Forum",44.813092,-0.591243,33522,0,OBX:SA:FORUM,Europe/Paris,,OBO, +OBO:SP:7794,1,"Centre M. Pagnol",44.811714,-0.586192,33522,0,OBO:SA:HARMON,Europe/Paris,,OBO, +OBO:SP:7796,1,"Centre Nautique",44.891825,-0.589323,33075,0,OBO:SA:CNAUTI,Europe/Paris,,OBO, +OBO:SP:7797,1,"Centre Nautique",44.891677,-0.589453,33075,0,OBO:SA:CNAUTI,Europe/Paris,,OBO, +OBO:SP:7798,1,"Beausite",44.852904,-0.527082,33119,0,OBO:SA:CEBEAU,Europe/Paris,,OBO, +OBO:SP:78,1,"Orion",44.874125,-0.692574,33449,0,OBO:SA:ORION,Europe/Paris,,OBO, +OBO:SP:7801,1,"Médiathèque (côté Château Margaut)",44.807073,-0.589238,33522,0,OBO:SA:MEDIA,Europe/Paris,,OBO, +OBO:SP:7802,1,"Médiathèque",44.807051,-0.589085,33522,0,OBO:SA:MEDIA,Europe/Paris,,OBO, +OBO:SP:781,1,"Solarium",44.781391,-0.629256,33192,0,OBO:SA:SOLAR,Europe/Paris,,OBO, +OBO:SP:7811,1,"Thales",44.848871,-0.700124,33281,0,OBO:SA:THALES,Europe/Paris,,OBO, +OBO:SP:7812,1,"Thales",44.848604,-0.701107,33281,0,OBO:SA:THALES,Europe/Paris,,OBO, +OBO:SP:7813,1,"Avenue du Phare",44.85007,-0.693373,33281,0,OBO:SA:PHARE,Europe/Paris,,OBO, +OBO:SP:7814,1,"Avenue du Phare",44.850006,-0.693116,33281,0,OBO:SA:PHARE,Europe/Paris,,OBO, +OBO:SP:782,1,"Belloc",44.91787,-0.506435,33003,0,OBO:SA:BELLOC,Europe/Paris,,OBO, +OBO:SP:7821,1,"Palais de Justice Terminus",44.835933,-0.583052,33063,0,OBX:SA:PJUST,Europe/Paris,,OBO, +OBO:SP:7831,1,"St Albe",44.770998,-0.627358,33192,0,OBO:SA:STALBE,Europe/Paris,,OBO, +OBO:SP:7832,1,"St Albe",44.7711,-0.627288,33192,0,OBO:SA:STALBE,Europe/Paris,,OBO, +OBO:SP:7833,1,"Claveau",44.878193,-0.543756,33063,0,OBO:SA:CLAVEA,Europe/Paris,,OBO, +OBO:SP:7834,1,"Berges de la Garonne",44.885568,-0.54142,33063,0,OBX:SA:GARON,Europe/Paris,,OBO, +OBO:SP:7835,1,"Berges de la Garonne",44.885344,-0.541673,33063,0,OBX:SA:GARON,Europe/Paris,,OBO, +OBO:SP:785,1,"République",44.834741,-0.580899,33063,0,OBO:SA:REPU48,Europe/Paris,,OBO, +OBO:SP:7851,1,"Pacaris",44.796109,-0.579905,33522,0,OBO:SA:PACARI,Europe/Paris,,OBO, +OBO:SP:786,1,"Brutails",44.884523,-0.523264,33249,0,OBO:SA:BRUTA,Europe/Paris,,OBO, +OBO:SP:7861,1,"Bassins à Flot",44.862641,-0.556625,33063,0,OBO:SA:BASFLO,Europe/Paris,,OBO, +OBO:SP:7862,1,"Bassins à Flot",44.863267,-0.557336,33063,0,OBO:SA:BASFLO,Europe/Paris,,OBO, +OBO:SP:7871,1,"Collège Emile Zola",44.871426,-0.673713,33200,0,OBO:SA:CEZOLA,Europe/Paris,,OBO, +OBO:SP:7872,1,"Gare de Bruges",44.887951,-0.612061,33075,0,OBO:SA:MARYS,Europe/Paris,,OBO, +OBO:SP:7873,1,"Gare de Bruges",44.887936,-0.611984,33075,0,OBO:SA:MARYS,Europe/Paris,,OBO, +OBO:SP:7874,1,"Frankton Terminus",44.907239,-0.621738,33056,0,OBO:SA:TFRANK,Europe/Paris,,OBO, +OBO:SP:7875,1,"Gare de Blanquefort",44.917716,-0.624114,33056,0,OBO:SA:TGBL84,Europe/Paris,,OBO, +OBO:SP:7876,1,"Bernède",44.878432,-0.675794,33200,0,OBO:SA:BERNED,Europe/Paris,,OBO, +OBO:SP:7877,1,"Bernède",44.878465,-0.675619,33200,0,OBO:SA:BERNED,Europe/Paris,,OBO, +OBO:SP:7878,1,"Menespey",44.881246,-0.671123,33200,0,OBO:SA:MENESP,Europe/Paris,,OBO, +OBO:SP:7879,1,"Menespey",44.881272,-0.670859,33200,0,OBO:SA:MENESP,Europe/Paris,,OBO, +OBO:SP:788,1,"Toutaud",44.893761,-0.516465,33032,0,OBO:SA:TOUTAU,Europe/Paris,,OBO, +OBO:SP:7881,1,"Couqueou",44.883679,-0.667593,33162,0,OBO:SA:COUQUE,Europe/Paris,,OBO, +OBO:SP:7882,1,"Couqueou",44.883703,-0.667392,33162,0,OBO:SA:COUQUE,Europe/Paris,,OBO, +OBO:SP:7883,1,"Cantinolle",44.89253,-0.664837,33162,0,OBO:SA:TCANTI,Europe/Paris,,OBO, +OBO:SP:7884,1,"Caychac La Rivière",44.930582,-0.622307,33056,0,OBO:SA:CAYRIV,Europe/Paris,,OBO, +OBO:SP:7885,1,"Fongravey",44.914583,-0.630064,33056,0,OBO:SA:FONGRA,Europe/Paris,,OBO, +OBO:SP:7886,1,"Fongravey",44.914513,-0.630554,33056,0,OBO:SA:FONGRA,Europe/Paris,,OBO, +OBO:SP:7887,1,"La Naoude",44.960452,-0.619237,33312,0,OBO:SA:NAOUD,Europe/Paris,,OBO, +OBO:SP:7888,1,"La Naoude",44.960399,-0.620058,33312,0,OBO:SA:NAOUD,Europe/Paris,,OBO, +OBO:SP:7889,1,"Landegrand",44.960172,-0.62535,33312,0,OBO:SA:LANDGR,Europe/Paris,,OBO, +OBO:SP:7890,1,"Landegrand",44.960212,-0.624667,33312,0,OBO:SA:LANDGR,Europe/Paris,,OBO, +OBO:SP:7891,1,"Landegrand",44.960837,-0.62679,33312,0,OBO:SA:LANDGR,Europe/Paris,,OBO, +OBO:SP:79,1,"Capella",44.872779,-0.687808,33200,0,OBO:SA:CAPELA,Europe/Paris,,OBO, +OBO:SP:7901,1,"Parc des Expositions",44.893494,-0.565504,33063,0,OBO:SA:EXPOSI,Europe/Paris,,OBO, +OBO:SP:791,1,"Goillot",44.841913,-0.662939,33281,0,OBO:SA:GOILLO,Europe/Paris,,OBO, +OBO:SP:7911,1,"Trébod",44.858337,-0.584204,33063,0,OBO:SA:TREBO,Europe/Paris,,OBO, +OBO:SP:7921,1,"Eglise de Gradignan",44.771896,-0.611739,33192,0,OBO:SA:EGGRA,Europe/Paris,,OBO, +OBO:SP:7922,1,"Quinsus",44.951962,-0.497932,33003,0,OBO:SA:QUINSU,Europe/Paris,,OBO, +OBO:SP:7923,1,"St Denis",44.945773,-0.490985,33003,0,OBO:SA:DENIS,Europe/Paris,,OBO, +OBO:SP:7924,1,"St Denis",44.945455,-0.490483,33003,0,OBO:SA:DENIS,Europe/Paris,,OBO, +OBO:SP:7925,1,"Parc Marceau",44.857829,-0.591572,33069,0,OBO:SA:PMARCE,Europe/Paris,,OBO, +OBO:SP:793,1,"Bibliothèque",44.835106,-0.585761,33063,0,OBO:SA:BIBLIO,Europe/Paris,,OBO, +OBO:SP:7931,1,"Pôle d'Echanges Quinconces",44.843934,-0.573061,33063,0,OBO:SA:QUIOR,Europe/Paris,,OBO, +OBO:SP:7932,1,"Biblanque",44.879446,-0.646958,33162,0,OBO:SA:BIBLAN,Europe/Paris,,OBO, +OBO:SP:7933,1,"19 Mars 1962",44.87748,-0.643154,33162,0,OBO:SA:AVTAI2,Europe/Paris,,OBO, +OBO:SP:7934,1,"19 Mars 1962",44.878181,-0.641589,33162,0,OBO:SA:AVTAI2,Europe/Paris,,OBO, +OBO:SP:7935,1,"19 Mars 1962",44.876684,-0.641593,33162,0,OBO:SA:AVTAI2,Europe/Paris,,OBO, +OBO:SP:7936,1,"Le Derby",44.875608,-0.639229,33162,0,OBO:SA:DERBY,Europe/Paris,,OBO, +OBO:SP:7937,1,"Le Derby",44.87532,-0.638678,33162,0,OBO:SA:DERBY,Europe/Paris,,OBO, +OBO:SP:7938,1,"Le Grand Caillou",44.882938,-0.6367,33162,0,OBO:SA:GDCAIL,Europe/Paris,,OBO, +OBO:SP:7939,1,"Le Grand Caillou",44.883004,-0.636337,33162,0,OBO:SA:GDCAIL,Europe/Paris,,OBO, +OBO:SP:794,1,"Belfort",44.894598,-0.768637,33449,0,OBO:SA:BELFO,Europe/Paris,,OBO, +OBO:SP:7940,1,"Sirtema",44.883911,-0.655362,33162,0,OBO:SA:AVTAI3,Europe/Paris,,OBO, +OBO:SP:7941,1,"Blanc",44.88133,-0.640386,33162,0,OBO:SA:BLANC2,Europe/Paris,,OBO, +OBO:SP:7942,1,"Blanc",44.881008,-0.640568,33162,0,OBO:SA:BLANC2,Europe/Paris,,OBO, +OBO:SP:795,1,"Barrière de Bègles",44.813026,-0.564511,33039,0,OBO:SA:BBEGL,Europe/Paris,,OBO, +OBO:SP:7951,1,"Barrière du Médoc (av d'Eysines)",44.853253,-0.594548,33063,0,OBO:SA:BMEDO,Europe/Paris,,OBO, +OBO:SP:7961,1,"Verlaine",44.872703,-0.608684,33075,0,OBO:SA:VERLAI,Europe/Paris,,OBO, +OBO:SP:7962,1,"Verlaine",44.872526,-0.608597,33075,0,OBO:SA:VERLAI,Europe/Paris,,OBO, +OBO:SP:7963,1,"Van Gogh",44.875862,-0.609673,33075,0,OBO:SA:VGOGH,Europe/Paris,,OBO, +OBO:SP:7964,1,"Van Gogh",44.876092,-0.609789,33075,0,OBO:SA:VGOGH,Europe/Paris,,OBO, +OBO:SP:7965,1,"Gaussens",44.879841,-0.612287,33075,0,OBO:SA:GAUSSE,Europe/Paris,,OBO, +OBO:SP:7966,1,"Gaussens",44.878823,-0.612272,33075,0,OBO:SA:GAUSSE,Europe/Paris,,OBO, +OBO:SP:798,1,"Lakanal",44.864851,-0.614845,33069,0,OBO:SA:LAKANA,Europe/Paris,,OBO, +OBO:SP:7981,1,"Nansouty",44.819064,-0.572365,33063,0,OBO:SA:NANSOU,Europe/Paris,,OBO, +OBO:SP:7982,1,"Nansouty",44.81894,-0.572294,33063,0,OBO:SA:NANSOU,Europe/Paris,,OBO, +OBO:SP:799,1,"Kieser",44.842713,-0.594114,33063,0,OBO:SA:KIESE,Europe/Paris,,OBO, +OBO:SP:7991,1,"Gambetta",44.865848,-0.601653,33069,0,OBO:SA:GAMBOU,Europe/Paris,,OBO, +OBO:SP:7992,1,"Ermitage",44.865321,-0.597615,33069,0,OBO:SA:ERMITA,Europe/Paris,,OBO, +OBO:SP:7993,1,"Louis Blanc",44.864139,-0.596246,33069,0,OBO:SA:LBLAN,Europe/Paris,,OBO, +OBO:SP:7994,1,"Ermitage",44.865321,-0.597615,33069,0,OBO:SA:ERMITA,Europe/Paris,,OBO, +OBO:SP:8,1,"Chemin Long",44.829073,-0.663634,33281,0,OBO:SA:CLONG,Europe/Paris,,OBO, +OBO:SP:80,1,"Pierre Curie",44.761636,-0.570449,33550,0,OBO:SA:CURI21,Europe/Paris,,OBO, +OBO:SP:8001,1,"Fayzeau",44.823864,-0.479519,33065,0,OBO:SA:FAYZEA,Europe/Paris,,OBO, +OBO:SP:8002,1,"Fayzeau",44.823597,-0.480288,33065,0,OBO:SA:FAYZEA,Europe/Paris,,OBO, +OBO:SP:8003,1,"La Belle Etoile",44.825071,-0.476086,33065,0,OBO:SA:BETOIL,Europe/Paris,,OBO, +OBO:SP:8011,1,"Galgon",44.774916,-0.537991,33550,0,OBO:SA:GALGO,Europe/Paris,,OBO, +OBO:SP:804,1,"Langevin",44.782647,-0.64837,33318,0,OBO:SA:LANGEV,Europe/Paris,,OBO, +OBO:SP:8041,1,"Monte-Cristo",44.825182,-0.533598,33167,0,OBO:SA:CRISTO,Europe/Paris,,OBO, +OBO:SP:8042,1,"Monte-Cristo",44.825009,-0.533384,33167,0,OBO:SA:CRISTO,Europe/Paris,,OBO, +OBO:SP:805,1,"Allende",44.867658,-0.522814,33249,0,OBO:SA:ALLEN,Europe/Paris,,OBO, +OBO:SP:8051,1,"Ferme de Baugé",44.773972,-0.583354,33550,0,OBO:SA:BAUGE,Europe/Paris,,OBO, +OBO:SP:8052,1,"Ferme de Baugé",44.77396,-0.583163,33550,0,OBO:SA:BAUGE,Europe/Paris,,OBO, +OBO:SP:8053,1,"Centre M. Pagnol",44.81204,-0.58615,33522,0,OBO:SA:HARMON,Europe/Paris,,OBO, +OBO:SP:806,1,"Palais des Congrès",44.889226,-0.567059,33063,0,OBX:SA:PCONGR,Europe/Paris,,OBO, +OBO:SP:8061,1,"Bordeaux Plage",44.877333,-0.57984,33075,0,OBO:SA:BXPLAG,Europe/Paris,,OBO, +OBO:SP:8062,1,"Bordeaux Plage",44.877221,-0.579098,33075,0,OBO:SA:BXPLAG,Europe/Paris,,OBO, +OBO:SP:8063,1,"IRSA",44.822379,-0.664932,33281,0,OBO:SA:IRSA,Europe/Paris,,OBO, +OBO:SP:8064,1,"IRSA",44.822226,-0.665175,33281,0,OBO:SA:IRSA,Europe/Paris,,OBO, +OBO:SP:8065,1,"Cité Photonique",44.786102,-0.631813,33318,0,OBO:SA:CPHOTO,Europe/Paris,,OBO, +OBO:SP:8066,1,"Crabette",44.787039,-0.635101,33318,0,OBO:SA:CRABET,Europe/Paris,,OBO, +OBO:SP:8067,1,"Louis Mie",44.832171,-0.583458,33063,0,OBO:SA:LOMIE,Europe/Paris,,OBO, +OBO:SP:807,1,"Agrières",44.911032,-0.681255,33519,0,OBO:SA:AGRIE,Europe/Paris,,OBO, +OBO:SP:8071,1,"Tridons",44.84984,-0.620796,33063,0,OBO:SA:TRIDON,Europe/Paris,,OBO, +OBO:SP:8072,1,"Tridons",44.849818,-0.620643,33063,0,OBO:SA:TRIDON,Europe/Paris,,OBO, +OBO:SP:808,1,"Socrate",44.809054,-0.66205,33318,0,OBO:SA:SOCRA,Europe/Paris,,OBO, +OBO:SP:8081,1,"Palais de Justice",44.8362,-0.58122,33063,0,OBX:SA:PJUST,Europe/Paris,,OBO, +OBO:SP:809,1,"Demosthène",44.826702,-0.661199,33281,0,OBO:SA:DEMOS,Europe/Paris,,OBO, +OBO:SP:810,1,"Dotézac",44.807763,-0.556645,33039,0,OBO:SA:DOTEZ,Europe/Paris,,OBO, +OBO:SP:8101,1,"Mairie de Talence",44.808788,-0.587371,33522,0,OBO:SA:PARNO,Europe/Paris,,OBO, +OBO:SP:811,1,"Hameau du Château",44.942682,-0.603051,33312,0,OBO:SA:HAMCHA,Europe/Paris,,OBO, +OBO:SP:8111,1,"Biblanque",44.879275,-0.646693,33162,0,OBO:SA:BIBLAN,Europe/Paris,,OBO, +OBO:SP:8121,1,"La Gravière",44.883885,-0.676621,33200,0,OBO:SA:LAGRAV,Europe/Paris,,OBO, +OBO:SP:813,1,"Renaudel",44.869154,-0.615275,33069,0,OBO:SA:RENAUD,Europe/Paris,,OBO, +OBO:SP:814,1,"Vallon",44.820965,-0.62514,33281,0,OBO:SA:VALLO,Europe/Paris,,OBO, +OBO:SP:815,1,"Fauré",44.816908,-0.618281,33318,0,OBO:SA:FAUR47,Europe/Paris,,OBO, +OBO:SP:816,1,"Magonty",44.793966,-0.701647,33318,0,OBO:SA:MAGON,Europe/Paris,,OBO, +OBO:SP:817,1,"Rue de la Paix",44.763918,-0.565053,33550,0,OBO:SA:RPAIX,Europe/Paris,,OBO, +OBO:SP:819,1,"La Hutte",44.884801,-0.606115,33075,0,OBO:SA:HUTTE,Europe/Paris,,OBO, +OBO:SP:820,1,"Fontaudin",44.850092,-0.494042,33013,0,OBO:SA:FONDIN,Europe/Paris,,OBO, +OBO:SP:821,1,"Bleuets",44.85693,-0.636029,33063,0,OBO:SA:BLEUE,Europe/Paris,,OBO, +OBO:SP:823,1,"Bourse du Travail",44.83204,-0.578282,33063,0,OBO:SA:BTRAVA,Europe/Paris,,OBO, +OBO:SP:824,1,"Les 4 Saisons",44.869146,-0.475889,33013,0,OBO:SA:4SAISO,Europe/Paris,,OBO, +OBO:SP:827,1,"Route du Médoc",44.873947,-0.616978,33075,0,OBO:SA:RMEDO,Europe/Paris,,OBO, +OBO:SP:828,1,"Madran",44.967603,-0.533974,33434,0,OBO:SA:MADRA,Europe/Paris,,OBO, +OBO:SP:830,1,"Lycées de Mérignac",44.834856,-0.647595,33281,0,OBX:SA:LYCEE,Europe/Paris,,OBO, +OBO:SP:833,1,"Le Grand Louis",44.860717,-0.642572,33281,0,OBO:SA:GLOUIS,Europe/Paris,,OBO, +OBO:SP:835,1,"Boutaut",44.868578,-0.577419,33069,0,OBO:SA:BOUTAU,Europe/Paris,,OBO, +OBO:SP:836,1,"Avenue du Chut",44.84845,-0.661756,33281,0,OBO:SA:CHUT,Europe/Paris,,OBO, +OBO:SP:837,1,"Longchamps",44.850235,-0.58114,33063,0,OBO:SA:LONGC,Europe/Paris,,OBO, +OBO:SP:841,1,"Ecole de Management",44.796543,-0.6024,33522,0,OBO:SA:MANAG,Europe/Paris,,OBO, +OBO:SP:843,1,"Diane",44.871809,-0.495268,33013,0,OBO:SA:DIANE,Europe/Paris,,OBO, +OBO:SP:846,1,"Lange",44.781602,-0.607883,33192,0,OBO:SA:LANGE2,Europe/Paris,,OBO, +OBO:SP:847,1,"La Vache",44.872083,-0.591394,33075,0,OBO:SA:PNIVEA,Europe/Paris,,OBO, +OBO:SP:848,1,"La Pargaud",44.908079,-0.66891,33519,0,OBO:SA:PARGAU,Europe/Paris,,OBO, +OBO:SP:849,1,"Libération",44.856134,-0.644644,33281,0,OBO:SA:FORET,Europe/Paris,,OBO, +OBO:SP:850,1,"Nansouty",44.819435,-0.57287,33063,0,OBO:SA:NANSOU,Europe/Paris,,OBO, +OBO:SP:852,1,"Combes",44.833168,-0.540053,33167,0,OBO:SA:COMBE,Europe/Paris,,OBO, +OBO:SP:855,1,"Rives d'Arcins",44.794931,-0.534923,33039,0,OBO:SA:CCO02,Europe/Paris,,OBO, +OBO:SP:856,1,"Dutertre",44.840996,-0.592585,33063,0,OBO:SA:DUTER,Europe/Paris,,OBO, +OBO:SP:857,1,"Tillon",44.776672,-0.543682,33550,0,OBO:SA:TILLON,Europe/Paris,,OBO, +OBO:SP:859,1,"Villon",44.859715,-0.52376,33119,0,OBO:SA:VILLO,Europe/Paris,,OBO, +OBO:SP:861,1,"Bourbon",44.840108,-0.520502,33167,0,OBO:SA:BOUR32,Europe/Paris,,OBO, +OBO:SP:862,1,"Taffanel",44.811819,-0.57374,33063,0,OBO:SA:TAFFA,Europe/Paris,,OBO, +OBO:SP:865,1,"Pierre Mendès France",44.829625,-0.640315,33281,0,OBO:SA:MANDES,Europe/Paris,,OBO, +OBO:SP:868,1,"Cours Gambetta",44.843355,-0.532044,33119,0,OBO:SA:CGAMB,Europe/Paris,,OBO, +OBO:SP:869,1,"Parc Sourreil",44.791549,-0.582146,33550,0,OBO:SA:PSOURR,Europe/Paris,,OBO, +OBO:SP:870,1,"Soubiras",44.863501,-0.618928,33069,0,OBO:SA:SOUBI,Europe/Paris,,OBO, +OBO:SP:873,1,"Carton",44.859599,-0.632147,33063,0,OBO:SA:CARTON,Europe/Paris,,OBO, +OBO:SP:874,1,"Jonquilles",44.855989,-0.486782,33013,0,OBO:SA:JONQUI,Europe/Paris,,OBO, +OBO:SP:875,1,"Racine",44.861906,-0.615593,33069,0,OBO:SA:RACIN,Europe/Paris,,OBO, +OBO:SP:876,1,"Caussade",44.846507,-0.516254,33167,0,OBO:SA:CAUSS,Europe/Paris,,OBO, +OBO:SP:877,1,"Mairie de Bègles",44.808635,-0.54266,33039,0,OBO:SA:MBEGL,Europe/Paris,,OBO, +OBO:SP:88,1,"Lou Licot",44.757345,-0.736578,33318,0,OBO:SA:LOULI,Europe/Paris,,OBO, +OBO:SP:880,1,"Fénelon",44.909455,-0.515763,33032,0,OBO:SA:FENELO,Europe/Paris,,OBO, +OBO:SP:881,1,"Jouhaux",44.801609,-0.570914,33550,0,OBO:SA:JOUH20,Europe/Paris,,OBO, +OBO:SP:883,1,"La Campanie",44.920953,-0.50215,33003,0,OBO:SA:CAMPIN,Europe/Paris,,OBO, +OBO:SP:884,1,"Lavoir",44.914376,-0.514359,33032,0,OBO:SA:LAVOIR,Europe/Paris,,OBO, +OBO:SP:885,1,"Rue de l'Union",44.850251,-0.519238,33119,0,OBO:SA:RUNION,Europe/Paris,,OBO, +OBO:SP:886,1,"Capucins",44.829804,-0.568249,33063,0,OBO:SA:CAPUC,Europe/Paris,,OBO, +OBO:SP:887,1,"Collège Pont de la Maye",44.781229,-0.568201,33550,0,OBO:SA:LBLU21,Europe/Paris,,OBO, +OBO:SP:89,1,"Capdeville",44.844285,-0.586753,33063,0,OBO:SA:CAPDE,Europe/Paris,,OBO, +OBO:SP:892,1,"La Boétie",44.902851,-0.70177,33519,0,OBO:SA:BOETIE,Europe/Paris,,OBO, +OBO:SP:893,1,"Oscar Auriac",44.818189,-0.700432,33281,0,OBO:SA:OAURIA,Europe/Paris,,OBO, +OBO:SP:894,1,"Betnoms",44.858744,-0.682159,33200,0,OBO:SA:BETNO,Europe/Paris,,OBO, +OBO:SP:897,1,"Julien",44.86547,-0.714792,33449,0,OBO:SA:JULIEN,Europe/Paris,,OBO, +OBO:SP:898,1,"Pressensé",44.856654,-0.602774,33069,0,OBO:SA:PRESS,Europe/Paris,,OBO, +OBO:SP:899,1,"Place Maran",44.875654,-0.552709,33063,0,OBO:SA:MARAN,Europe/Paris,,OBO, +OBO:SP:9,1,"Clos des Bruyères",44.815337,-0.691634,33281,0,OBO:SA:BRUYE,Europe/Paris,,OBO, +OBO:SP:90,1,"Monrabeau",44.838738,-0.624881,33063,0,OBO:SA:MONRAB,Europe/Paris,,OBO, +OBO:SP:903,1,"Le Bousquet",44.960601,-0.533672,33434,0,OBO:SA:BOUSQU,Europe/Paris,,OBO, +OBO:SP:904,1,"Kennedy (vers Buttinière)",44.867508,-0.507622,33249,0,OBO:SA:KENE63,Europe/Paris,,OBO, +OBO:SP:905,1,"Delacroix",44.8377,-0.521415,33167,0,OBO:SA:DELAC,Europe/Paris,,OBO, +OBO:SP:907,1,"Galgon (che de Leyran)",44.775098,-0.538762,33550,0,OBO:SA:GALGO,Europe/Paris,,OBO, +OBO:SP:909,1,"Fénelon",44.909824,-0.516344,33032,0,OBO:SA:FENELO,Europe/Paris,,OBO, +OBO:SP:911,1,"Arsonval",44.779591,-0.658776,33318,0,OBO:SA:ARSON,Europe/Paris,,OBO, +OBO:SP:912,1,"Pins Francs",44.866858,-0.62377,33069,0,OBO:SA:PFRAN,Europe/Paris,,OBO, +OBO:SP:913,1,"Clemenceau",44.865049,-0.621474,33069,0,OBO:SA:CLEM54,Europe/Paris,,OBO, +OBO:SP:914,1,"Gereyme",44.982572,-0.537433,33434,0,OBO:SA:GEREYM,Europe/Paris,,OBO, +OBO:SP:915,1,"Piscine Judaïque",44.840774,-0.590265,33063,0,OBO:SA:PJUDAI,Europe/Paris,,OBO, +OBO:SP:916,1,"Rochefort",44.776269,-0.611135,33192,0,OBO:SA:ROCHE,Europe/Paris,,OBO, +OBO:SP:917,1,"Picard",44.854774,-0.572003,33063,0,OBO:SA:PICAR,Europe/Paris,,OBO, +OBO:SP:918,1,"Avenue du Chut",44.848793,-0.663375,33281,0,OBO:SA:CHUT,Europe/Paris,,OBO, +OBO:SP:919,1,"Vélodrome",44.853956,-0.611204,33063,0,OBO:SA:VELODR,Europe/Paris,,OBO, +OBO:SP:92,1,"Peyronnet (côté Pl Meunier)",44.828341,-0.561329,33063,0,OBO:SA:PEYRO,Europe/Paris,,OBO, +OBO:SP:920,1,"Les Tulipes",44.790369,-0.634164,33318,0,OBO:SA:TULIPE,Europe/Paris,,OBO, +OBO:SP:923,1,"Desclaux",44.857893,-0.495035,33013,0,OBO:SA:DESCLA,Europe/Paris,,OBO, +OBO:SP:925,1,"Merle",44.795922,-0.694902,33318,0,OBO:SA:MERLE,Europe/Paris,,OBO, +OBO:SP:928,1,"Place du 11 Novembre",44.829042,-0.64818,33281,0,OBO:SA:P11NO,Europe/Paris,,OBO, +OBO:SP:929,1,"Villa",44.957355,-0.605556,33312,0,OBO:SA:VILLA,Europe/Paris,,OBO, +OBO:SP:93,1,"La Paillère",44.79555,-0.604665,33318,0,OBO:SA:LAPAIL,Europe/Paris,,OBO, +OBO:SP:932,1,"Vergne",44.822923,-0.481943,33065,0,OBO:SA:VERGNE,Europe/Paris,,OBO, +OBO:SP:933,1,"Les Renardeaux",44.849034,-0.665089,33281,0,OBO:SA:RENARX,Europe/Paris,,OBO, +OBO:SP:936,1,"Brion",44.876402,-0.603028,33075,0,OBO:SA:BRION,Europe/Paris,,OBO, +OBO:SP:937,1,"Mairie de Carbon Blanc",44.895294,-0.50444,33096,0,OBO:SA:MCABLA,Europe/Paris,,OBO, +OBO:SP:938,1,"Duhamel",44.792824,-0.562154,33039,0,OBO:SA:DUHAM,Europe/Paris,,OBO, +OBO:SP:94,1,"Godard",44.85293,-0.588103,33063,0,OBO:SA:GODARD,Europe/Paris,,OBO, +OBO:SP:940,1,"Grande Lande",44.775935,-0.636774,33192,0,OBO:SA:GLAND,Europe/Paris,,OBO, +OBO:SP:941,1,"Square Monrepos",44.842642,-0.536597,33167,0,OBO:SA:SQMON,Europe/Paris,,OBO, +OBO:SP:943,1,"Emile Zola",44.903738,-0.504461,33096,0,OBO:SA:ZOLA95,Europe/Paris,,OBO, +OBO:SP:947,1,"Perrin",44.841396,-0.669303,33281,0,OBO:SA:PERRI,Europe/Paris,,OBO, +OBO:SP:948,1,"Deveaux (rue Pasteur)",44.847373,-0.623729,33063,0,OBO:SA:DEVEAU,Europe/Paris,,OBO, +OBO:SP:949,1,"Libération",44.881542,-0.653394,33162,0,OBO:SA:LIBE52,Europe/Paris,,OBO, +OBO:SP:95,1,"Racine",44.793488,-0.584042,33522,0,OBO:SA:RACI40,Europe/Paris,,OBO, +OBO:SP:950,1,"Lamartine",44.903636,-0.496566,33096,0,OBO:SA:LMAR93,Europe/Paris,,OBO, +OBO:SP:951,1,"Picard",44.855193,-0.571307,33063,0,OBO:SA:PICAR,Europe/Paris,,OBO, +OBO:SP:952,1,"8 Mai",44.907435,-0.646609,33056,0,OBO:SA:8Mai37,Europe/Paris,,OBO, +OBO:SP:953,1,"Bersol",44.774898,-0.641996,33192,0,OBO:SA:BERSO,Europe/Paris,,OBO, +OBO:SP:954,1,"Bretagne",44.79507,-0.682327,33318,0,OBO:SA:BRETA,Europe/Paris,,OBO, +OBO:SP:955,1,"Pomme d'Or",44.913685,-0.517664,33032,0,OBO:SA:BPDOR,Europe/Paris,,OBO, +OBO:SP:956,1,"Pont Saint-Jean",44.830166,-0.55643,33063,0,OBO:SA:PSJEA,Europe/Paris,,OBO, +OBO:SP:957,1,"Rousseau",44.835153,-0.530084,33167,0,OBO:SA:ROUSS,Europe/Paris,,OBO, +OBO:SP:958,1,"St Louis",44.862674,-0.567082,33063,0,OBO:SA:STLOUI,Europe/Paris,,OBO, +OBO:SP:96,1,"INRA",44.787624,-0.580883,33550,0,OBO:SA:INRA,Europe/Paris,,OBO, +OBO:SP:960,1,"Joli Bois",44.915755,-0.722094,33376,0,OBO:SA:JBOIS,Europe/Paris,,OBO, +OBO:SP:961,1,"Tristan",44.897584,-0.710236,33449,0,OBO:SA:TRISTA,Europe/Paris,,OBO, +OBO:SP:962,1,"Vincent",44.845642,-0.543994,33063,0,OBO:SA:VINCE5,Europe/Paris,,OBO, +OBO:SP:965,1,"Capella",44.872741,-0.688135,33200,0,OBO:SA:CAPELA,Europe/Paris,,OBO, +OBO:SP:966,1,"Camparian",44.772069,-0.577248,33550,0,OBO:SA:CAMPA,Europe/Paris,,OBO, +OBO:SP:968,1,"Nouaux",44.855251,-0.531208,33119,0,OBO:SA:NOUAU,Europe/Paris,,OBO, +OBO:SP:969,1,"La Grave",44.822038,-0.691783,33281,0,OBO:SA:LGRAV2,Europe/Paris,,OBO, +OBO:SP:972,1,"Crébadin",44.94851,-0.616473,33312,0,OBO:SA:CREBAD,Europe/Paris,,OBO, +OBO:SP:973,1,"Lycée Elie Faure",44.87071,-0.516947,33249,0,OBO:SA:EFAURE,Europe/Paris,,OBO, +OBO:SP:974,1,"Lycée Václav Havel (station Tram)",44.787301,-0.566587,33550,0,OBO:SA:PLAUNA,Europe/Paris,,OBO, +OBO:SP:975,1,"Chazeau",44.897054,-0.742133,33449,0,OBO:SA:CHAZEA,Europe/Paris,,OBO, +OBO:SP:977,1,"Centre Emetteur",44.818282,-0.503092,33065,0,OBO:SA:EMETT,Europe/Paris,,OBO, +OBO:SP:978,1,"COSEC",44.884317,-0.704554,33449,0,OBO:SA:COSEC,Europe/Paris,,OBO, +OBO:SP:979,1,"Bernatet",44.93458,-0.511566,33003,0,OBO:SA:BERNAT,Europe/Paris,,OBO, +OBO:SP:981,1,"Guynemer",44.864056,-0.66081,33162,0,OBO:SA:GUYNE,Europe/Paris,,OBO, +OBO:SP:982,1,"Mazeau",44.870856,-0.710078,33449,0,OBO:SA:MAZEA,Europe/Paris,,OBO, +OBO:SP:983,1,"Ampère",44.86226,-0.585266,33063,0,OBO:SA:AMPERE,Europe/Paris,,OBO, +OBO:SP:984,1,"Betnoms",44.85848,-0.681394,33200,0,OBO:SA:BETNO,Europe/Paris,,OBO, +OBO:SP:985,1,"Terre Rouge",44.913766,-0.686876,33519,0,OBO:SA:TROUGE,Europe/Paris,,OBO, +OBO:SP:987,1,"Guyon",44.851178,-0.528659,33119,0,OBO:SA:GUYON,Europe/Paris,,OBO, +OBO:SP:988,1,"Saint-Amand",44.85579,-0.61577,33063,0,OBO:SA:STAMA,Europe/Paris,,OBO, +OBO:SP:989,1,"Orion",44.873928,-0.691724,33449,0,OBO:SA:ORION,Europe/Paris,,OBO, +OBO:SP:992,1,"Roland Garros",44.829502,-0.687119,33281,0,OBO:SA:RGARO,Europe/Paris,,OBO, +OBO:SP:995,1,"Gasquet",44.885449,-0.678929,33200,0,OBO:SA:GASQU,Europe/Paris,,OBO, +OBO:SP:996,1,"Euromédoc",44.908468,-0.724629,33376,0,OBO:SA:N21582,Europe/Paris,,OBO, +OBO:SP:997,1,"Carton",44.856979,-0.631521,33063,0,OBO:SA:CARTO,Europe/Paris,,OBO, +OBO:SP:998,1,"Ampère",44.862559,-0.584081,33063,0,OBO:SA:AMPERE,Europe/Paris,,OBO, +OBO:SP:999,1,"Gare de Bruges",44.887699,-0.612603,33075,0,OBO:SA:MARYS,Europe/Paris,,OBO, +OBX:SP:3684,1,"Lauriers",44.879107,-0.517867,33249,0,OBX:SA:LAURI,Europe/Paris,,OBX, +OBX:SP:3685,1,"Bois Fleuri",44.875987,-0.519344,33249,0,OBX:SA:BFLEU,Europe/Paris,,OBX, +OBX:SP:3686,1,"Bois Fleuri",44.876052,-0.519272,33249,0,OBX:SA:BFLEU,Europe/Paris,,OBX, +OBX:SP:3687,1,"Gravières",44.872741,-0.520231,33249,0,OBX:SA:GRAVI,Europe/Paris,,OBX, +OBX:SP:3688,1,"Gravières",44.872806,-0.520171,33249,0,OBX:SA:GRAVI,Europe/Paris,,OBX, +OBX:SP:3689,1,"Iris",44.868525,-0.522729,33249,0,OBX:SA:IRIS,Europe/Paris,,OBX, +OBX:SP:3690,1,"Iris",44.868546,-0.522654,33249,0,OBX:SA:IRIS,Europe/Paris,,OBX, +OBX:SP:3691,1,"Buttinière",44.864102,-0.524948,33249,0,OBX:SA:BUTTI,Europe/Paris,,OBX, +OBX:SP:3692,1,"Buttinière",44.864059,-0.524869,33249,0,OBX:SA:BUTTI,Europe/Paris,,OBX, +OBX:SP:3693,1,"La Morlette",44.854963,-0.518153,33119,0,OBX:SA:MORLE,Europe/Paris,,OBX, +OBX:SP:3694,1,"Pelletan",44.858707,-0.519718,33119,0,OBX:SA:CPELL,Europe/Paris,,OBX, +OBX:SP:3695,1,"Pelletan",44.858644,-0.519726,33119,0,OBX:SA:CPELL,Europe/Paris,,OBX, +OBX:SP:3696,1,"Palmer",44.862241,-0.519699,33119,0,OBX:SA:PALMER,Europe/Paris,,OBX, +OBX:SP:3697,1,"Palmer",44.862212,-0.51976,33119,0,OBX:SA:PALMER,Europe/Paris,,OBX, +OBX:SP:3698,1,"Carnot - Mairie de Cenon",44.857754,-0.531581,33119,0,OBX:SA:CARNO,Europe/Paris,,OBX, +OBX:SP:3699,1,"Carnot - Mairie de Cenon",44.857765,-0.531493,33119,0,OBX:SA:CARNO,Europe/Paris,,OBX, +OBX:SP:3702,1,"Jean Jaurès",44.853787,-0.537857,33119,0,OBX:SA:JAURE,Europe/Paris,,OBX, +OBX:SP:3703,1,"Jean Jaurès",44.853782,-0.53773,33119,0,OBX:SA:JAURE,Europe/Paris,,OBX, +OBX:SP:3704,1,"Galin",44.849757,-0.544394,33063,0,OBX:SA:GALIN,Europe/Paris,,OBX, +OBX:SP:3705,1,"Galin",44.849777,-0.544306,33063,0,OBX:SA:GALIN,Europe/Paris,,OBX, +OBX:SP:3706,1,"Thiers-Benauge",44.845782,-0.55087,33063,0,OBX:SA:TBENE,Europe/Paris,,OBX, +OBX:SP:3707,1,"Thiers-Benauge",44.845803,-0.550782,33063,0,OBX:SA:TBENE,Europe/Paris,,OBX, +OBX:SP:3708,1,"Jardin Botanique",44.842987,-0.55543,33063,0,OBX:SA:JARDI,Europe/Paris,,OBX, +OBX:SP:3709,1,"Jardin Botanique",44.843007,-0.555343,33063,0,OBX:SA:JARDI,Europe/Paris,,OBX, +OBX:SP:3710,1,"Stalingrad",44.840314,-0.559783,33063,0,OBX:SA:STALIT,Europe/Paris,,OBX, +OBX:SP:3711,1,"Stalingrad",44.840316,-0.55972,33063,0,OBX:SA:STALIT,Europe/Paris,,OBX, +OBX:SP:3712,1,"Porte de Bourgogne",44.837248,-0.56629,33063,0,OBX:SA:BRGA,Europe/Paris,,OBX, +OBX:SP:3713,1,"Porte de Bourgogne",44.837186,-0.566273,33063,0,OBX:SA:BRGA,Europe/Paris,,OBX, +OBX:SP:3714,1,"Place du Palais",44.837925,-0.569347,33063,0,OBX:SA:PALAI,Europe/Paris,,OBX, +OBX:SP:3715,1,"Place du Palais",44.837901,-0.569257,33063,0,OBX:SA:PALAI,Europe/Paris,,OBX, +OBX:SP:3716,1,"Sainte Catherine",44.837635,-0.573332,33063,0,OBX:SA:CATHE,Europe/Paris,,OBX, +OBX:SP:3717,1,"Sainte Catherine",44.837609,-0.573279,33063,0,OBX:SA:CATHE,Europe/Paris,,OBX, +OBX:SP:3718,1,"Hôtel de Ville",44.83733,-0.577188,33063,0,OBX:SA:HDVA,Europe/Paris,,OBX, +OBX:SP:3719,1,"Hôtel de Ville",44.837305,-0.577136,33063,0,OBX:SA:HDVA,Europe/Paris,,OBX, +OBX:SP:3720,1,"Palais de Justice",44.836299,-0.581492,33063,0,OBX:SA:PJUST,Europe/Paris,,OBX, +OBX:SP:3721,1,"Palais de Justice",44.836253,-0.581527,33063,0,OBX:SA:PJUST,Europe/Paris,,OBX, +OBX:SP:3722,1,"Mériadeck",44.838163,-0.584322,33063,0,OBX:SA:MERIA,Europe/Paris,,OBX, +OBX:SP:3723,1,"Mériadeck",44.838112,-0.584243,33063,0,OBX:SA:MERIA,Europe/Paris,,OBX, +OBX:SP:3724,1,"Bougnard",44.794093,-0.634114,33318,0,OBX:SA:BOUGN,Europe/Paris,,OBX, +OBX:SP:3725,1,"Saige",44.793971,-0.628486,33318,0,OBX:SA:SAIGE,Europe/Paris,,OBX, +OBX:SP:3726,1,"Saige",44.794003,-0.62859,33318,0,OBX:SA:SAIGE,Europe/Paris,,OBX, +OBX:SP:3727,1,"Unitec",44.79628,-0.621522,33318,0,OBX:SA:UNITE,Europe/Paris,,OBX, +OBX:SP:3728,1,"Unitec",44.796278,-0.621598,33318,0,OBX:SA:UNITE,Europe/Paris,,OBX, +OBX:SP:3729,1,"Montaigne - Montesquieu",44.796786,-0.617365,33318,0,OBX:SA:MONTA,Europe/Paris,,OBX, +OBX:SP:3730,1,"Montaigne - Montesquieu",44.796801,-0.617454,33318,0,OBX:SA:MONTA,Europe/Paris,,OBX, +OBX:SP:3733,1,"Doyen Brus",44.800274,-0.609614,33318,0,OBX:SA:DOYEN,Europe/Paris,,OBX, +OBX:SP:3734,1,"Doyen Brus",44.800272,-0.609665,33318,0,OBX:SA:DOYEN,Europe/Paris,,OBX, +OBX:SP:3735,1,"François Bordes",44.803504,-0.60672,33318,0,OBX:SA:BORDE,Europe/Paris,,OBX, +OBX:SP:3736,1,"François Bordes",44.803494,-0.60677,33318,0,OBX:SA:BORDE,Europe/Paris,,OBX, +OBX:SP:3737,1,"Arts & Métiers",44.805983,-0.602284,33522,0,OBX:SA:ARTME,Europe/Paris,,OBX, +OBX:SP:3738,1,"Arts & Métiers",44.805999,-0.602348,33522,0,OBX:SA:ARTME,Europe/Paris,,OBX, +OBX:SP:3739,1,"Béthanie",44.805987,-0.598005,33522,0,OBX:SA:BETHA,Europe/Paris,,OBX, +OBX:SP:3740,1,"Béthanie",44.806014,-0.598007,33522,0,OBX:SA:BETHA,Europe/Paris,,OBX, +OBX:SP:3741,1,"Peixotto",44.807244,-0.592591,33522,0,OBX:SA:PEIXOT,Europe/Paris,,OBX, +OBX:SP:3742,1,"Peixotto",44.807241,-0.59268,33522,0,OBX:SA:PEIXOT,Europe/Paris,,OBX, +OBX:SP:3743,1,"Forum",44.811948,-0.590942,33522,0,OBX:SA:FORUM,Europe/Paris,,OBX, +OBX:SP:3744,1,"Forum",44.811965,-0.590981,33522,0,OBX:SA:FORUM,Europe/Paris,,OBX, +OBX:SP:3745,1,"Roustaing",44.816941,-0.585639,33522,0,OBX:SA:ROUST,Europe/Paris,,OBX, +OBX:SP:3746,1,"Roustaing",44.816948,-0.585691,33522,0,OBX:SA:ROUST,Europe/Paris,,OBX, +OBX:SP:3747,1,"Barrière Saint-Genès",44.820771,-0.583136,33063,0,OBX:SA:BGENE,Europe/Paris,,OBX, +OBX:SP:3748,1,"Barrière Saint-Genès",44.821574,-0.582567,33063,0,OBX:SA:BGENE,Europe/Paris,,OBX, +OBX:SP:3749,1,"Bergonié",44.825031,-0.578216,33063,0,OBX:SA:BERGO,Europe/Paris,,OBX, +OBX:SP:3750,1,"Bergonié",44.82502,-0.578278,33063,0,OBX:SA:BERGO,Europe/Paris,,OBX, +OBX:SP:3751,1,"Saint-Nicolas",44.828989,-0.573959,33063,0,OBX:SA:NICOL,Europe/Paris,,OBX, +OBX:SP:3752,1,"Saint-Nicolas",44.82896,-0.574033,33063,0,OBX:SA:NICOL,Europe/Paris,,OBX, +OBX:SP:3753,1,"Victoire",44.831154,-0.573059,33063,0,OBX:SA:VICTO,Europe/Paris,,OBX, +OBX:SP:3754,1,"Victoire",44.831191,-0.573036,33063,0,OBX:SA:VICTO,Europe/Paris,,OBX, +OBX:SP:3755,1,"Musée d'Aquitaine",44.835543,-0.575326,33063,0,OBX:SA:MUSEE,Europe/Paris,,OBX, +OBX:SP:3756,1,"Musée d'Aquitaine",44.835479,-0.575348,33063,0,OBX:SA:MUSEE,Europe/Paris,,OBX, +OBX:SP:3757,1,"Hôtel de Ville",44.837672,-0.576361,33063,0,OBX:SA:HDVA,Europe/Paris,,OBX, +OBX:SP:3758,1,"Hôtel de Ville",44.837644,-0.576398,33063,0,OBX:SA:HDVA,Europe/Paris,,OBX, +OBX:SP:3759,1,"Gambetta - madd",44.841056,-0.578464,33063,0,OBX:SA:GAMBT,Europe/Paris,,OBX, +OBX:SP:3760,1,"Gambetta - madd",44.840115,-0.57829,33063,0,OBX:SA:GAMBT,Europe/Paris,,OBX, +OBX:SP:3761,1,"Grand Théâtre",44.842033,-0.575271,33063,0,OBX:SA:THEAT,Europe/Paris,,OBX, +OBX:SP:3762,1,"Grand Théâtre",44.842068,-0.575324,33063,0,OBX:SA:THEAT,Europe/Paris,,OBX, +OBX:SP:3763,1,"Quinconces",44.844469,-0.573792,33063,0,OBX:SA:QUIN_B,Europe/Paris,,OBX, +OBX:SP:3764,1,"Quinconces",44.844493,-0.573882,33063,0,OBX:SA:QUIN_B,Europe/Paris,,OBX, +OBX:SP:3765,1,"Gare Saint-Jean",44.825918,-0.556807,33063,0,OBX:SA:SJEAN,Europe/Paris,,OBX, +OBX:SP:3766,1,"Tauzia",44.829088,-0.558553,33063,0,OBX:SA:TAUZI,Europe/Paris,,OBX, +OBX:SP:3767,1,"Tauzia",44.829035,-0.558536,33063,0,OBX:SA:TAUZI,Europe/Paris,,OBX, +OBX:SP:3768,1,"Sainte-Croix",44.831872,-0.559438,33063,0,OBX:SA:CROIX,Europe/Paris,,OBX, +OBX:SP:3769,1,"Sainte-Croix",44.831809,-0.559422,33063,0,OBX:SA:CROIX,Europe/Paris,,OBX, +OBX:SP:3770,1,"Saint-Michel",44.834494,-0.563379,33063,0,OBX:SA:SMICH,Europe/Paris,,OBX, +OBX:SP:3771,1,"Saint-Michel",44.834458,-0.563389,33063,0,OBX:SA:SMICH,Europe/Paris,,OBX, +OBX:SP:3772,1,"Porte de Bourgogne",44.837191,-0.5664,33063,0,OBX:SA:BRGA,Europe/Paris,,OBX, +OBX:SP:3773,1,"Porte de Bourgogne",44.837137,-0.566384,33063,0,OBX:SA:BRGA,Europe/Paris,,OBX, +OBX:SP:3774,1,"Place de la Bourse",44.841583,-0.569656,33063,0,OBX:SA:BOURS,Europe/Paris,,OBX, +OBX:SP:3775,1,"Place de la Bourse",44.84152,-0.569677,33063,0,OBX:SA:BOURS,Europe/Paris,,OBX, +OBX:SP:3776,1,"Quinconces",44.844027,-0.573827,33063,0,OBX:SA:QUIN_B,Europe/Paris,,OBX, +OBX:SP:4579,1,"St Bruno - Hôtel de Région",44.837461,-0.589306,33063,0,OBX:SA:BRUNO,Europe/Paris,,OBX, +OBX:SP:4580,1,"St Bruno - Hôtel de Région",44.837438,-0.589191,33063,0,OBX:SA:BRUNO,Europe/Paris,,OBX, +OBX:SP:4581,1,"Hôtel de Police",44.83488,-0.58885,33063,0,OBX:SA:POLIC,Europe/Paris,,OBX, +OBX:SP:4582,1,"Hôtel de Police",44.834927,-0.588815,33063,0,OBX:SA:POLIC,Europe/Paris,,OBX, +OBX:SP:4583,1,"Gaviniès",44.833101,-0.593156,33063,0,OBX:SA:GAVIN,Europe/Paris,,OBX, +OBX:SP:4584,1,"Gaviniès",44.833094,-0.593093,33063,0,OBX:SA:GAVIN,Europe/Paris,,OBX, +OBX:SP:4585,1,"Stade Chaban Delmas",44.831604,-0.597899,33063,0,OBX:SA:CDELM,Europe/Paris,,OBX, +OBX:SP:4586,1,"Stade Chaban Delmas",44.83124,-0.599117,33063,0,OBX:SA:CDELM,Europe/Paris,,OBX, +OBX:SP:4587,1,"Hôpital Pellegrin",44.830189,-0.604571,33063,0,OBX:SA:HOPIT,Europe/Paris,,OBX, +OBX:SP:4588,1,"Hôpital Pellegrin",44.830161,-0.604595,33063,0,OBX:SA:HOPIT,Europe/Paris,,OBX, +OBX:SP:4589,1,"Saint-Augustin",44.828804,-0.610283,33063,0,OBX:SA:AUGUS,Europe/Paris,,OBX, +OBX:SP:4590,1,"Saint-Augustin",44.828798,-0.610207,33063,0,OBX:SA:AUGUS,Europe/Paris,,OBX, +OBX:SP:5130,1,"Cenon Gare",44.855972,-0.53432,33119,0,OBX:SA:CENOG,Europe/Paris,,OBX, +OBX:SP:5131,1,"Cenon Gare",44.855968,-0.534155,33119,0,OBX:SA:CENOG,Europe/Paris,,OBX, +OBX:SP:5212,1,"La Morlette",44.855024,-0.51822,33119,0,OBX:SA:MORLE,Europe/Paris,,OBX, +OBX:SP:5213,1,"Jean zay",44.854086,-0.513118,33119,0,OBX:SA:JZAY,Europe/Paris,,OBX, +OBX:SP:5214,1,"Jean Zay",44.854136,-0.513235,33119,0,OBX:SA:JZAY,Europe/Paris,,OBX, +OBX:SP:5215,1,"La Marègue",44.850778,-0.50887,33119,0,OBX:SA:MAREG,Europe/Paris,,OBX, +OBX:SP:5216,1,"La Marègue",44.850704,-0.508928,33119,0,OBX:SA:MAREG,Europe/Paris,,OBX, +OBX:SP:5217,1,"Floirac Dravemont",44.845898,-0.510414,33167,0,OBX:SA:DRAVE,Europe/Paris,,OBX, +OBX:SP:5228,1,"François Mitterrand",44.827151,-0.614267,33281,0,OBX:SA:FRMIT,Europe/Paris,,OBX, +OBX:SP:5229,1,"François Mitterrand",44.827163,-0.61418,33281,0,OBX:SA:FRMIT,Europe/Paris,,OBX, +OBX:SP:5230,1,"Peychotte",44.826605,-0.619957,33281,0,OBX:SA:PEYCHO,Europe/Paris,,OBX, +OBX:SP:5231,1,"Peychotte",44.826572,-0.619879,33281,0,OBX:SA:PEYCHO,Europe/Paris,,OBX, +OBX:SP:5232,1,"Fontaine d'Arlac",44.826671,-0.62566,33281,0,OBX:SA:ARLAC,Europe/Paris,,OBX, +OBX:SP:5233,1,"Fontaine d'Arlac",44.82662,-0.625581,33281,0,OBX:SA:ARLAC,Europe/Paris,,OBX, +OBX:SP:5234,1,"Alfred de Vigny",44.830238,-0.633996,33281,0,OBX:SA:VIGNY,Europe/Paris,,OBX, +OBX:SP:5235,1,"Alfred de Vigny",44.830222,-0.633919,33281,0,OBX:SA:VIGNY,Europe/Paris,,OBX, +OBX:SP:5236,1,"Pierre Mendès France",44.830181,-0.639831,33281,0,OBX:SA:MENDE,Europe/Paris,,OBX, +OBX:SP:5237,1,"Pierre Mendès France",44.830135,-0.639866,33281,0,OBX:SA:MENDE,Europe/Paris,,OBX, +OBX:SP:5238,1,"Quatre Chemins",44.832618,-0.644942,33281,0,OBX:SA:4CHEM,Europe/Paris,,OBX, +OBX:SP:5239,1,"Quatre Chemins",44.832585,-0.644864,33281,0,OBX:SA:4CHEM,Europe/Paris,,OBX, +OBX:SP:5240,1,"Lycées de Mérignac",44.834997,-0.647427,33281,0,OBX:SA:LYCEE,Europe/Paris,,OBX, +OBX:SP:5241,1,"Lycées de Mérignac",44.83495,-0.647487,33281,0,OBX:SA:LYCEE,Europe/Paris,,OBX, +OBX:SP:5242,1,"Mérignac Centre",44.841462,-0.646796,33281,0,OBX:SA:TMERI,Europe/Paris,,OBX, +OBX:SP:5243,1,"Mérignac Centre",44.841413,-0.646906,33281,0,OBX:SA:TMERI,Europe/Paris,,OBX, +OBX:SP:5244,1,"Bougnard",44.794071,-0.633961,33318,0,OBX:SA:BOUGN,Europe/Paris,,OBX, +OBX:SP:5245,1,"Camponac Médiathèque",44.800289,-0.634793,33318,0,OBX:SA:MONTES,Europe/Paris,,OBX, +OBX:SP:5246,1,"Camponac Médiathèque",44.800353,-0.63476,33318,0,OBX:SA:MONTES,Europe/Paris,,OBX, +OBX:SP:5247,1,"Pessac Centre",44.804292,-0.632546,33318,0,OBX:SA:PESSA,Europe/Paris,,OBX, +OBX:SP:5252,1,"CAPC Musée d'Art Contemporain",44.849073,-0.5705,33063,0,OBX:SA:CAPC,Europe/Paris,,OBX, +OBX:SP:5253,1,"CAPC Musée d'Art Contemporain",44.849129,-0.570427,33063,0,OBX:SA:CAPC,Europe/Paris,,OBX, +OBX:SP:5254,1,"Chartrons",44.852787,-0.567657,33063,0,OBX:SA:CHART,Europe/Paris,,OBX, +OBX:SP:5255,1,"Chartrons",44.852826,-0.567558,33063,0,OBX:SA:CHART,Europe/Paris,,OBX, +OBX:SP:5256,1,"Cours du Médoc",44.855866,-0.563291,33063,0,OBX:SA:MEDOC,Europe/Paris,,OBX, +OBX:SP:5257,1,"Cours du Médoc",44.855887,-0.563191,33063,0,OBX:SA:MEDOC,Europe/Paris,,OBX, +OBX:SP:5258,1,"Les Hangars",44.857954,-0.558875,33063,0,OBX:SA:HANGA,Europe/Paris,,OBX, +OBX:SP:5259,1,"Les Hangars",44.857966,-0.558774,33063,0,OBX:SA:HANGA,Europe/Paris,,OBX, +OBX:SP:5260,1,"La Cité du Vin",44.86073,-0.553247,33063,0,OBX:SA:FLO12B,Europe/Paris,,OBX, +OBX:SP:5261,1,"La Cité du Vin",44.860733,-0.553159,33063,0,OBX:SA:FLO12B,Europe/Paris,,OBX, +OBX:SP:5394,1,"Jardin Public",44.848223,-0.575323,33063,0,OBX:SA:JPUBL,Europe/Paris,,OBX, +OBX:SP:5395,1,"Jardin Public",44.848186,-0.575359,33063,0,OBX:SA:JPUBL,Europe/Paris,,OBX, +OBX:SP:5396,1,"Paul Doumer",44.851967,-0.574092,33063,0,OBX:SA:PDOUM,Europe/Paris,,OBX, +OBX:SP:5397,1,"Paul Doumer",44.851894,-0.574113,33063,0,OBX:SA:PDOUM,Europe/Paris,,OBX, +OBX:SP:5398,1,"Camille Godard",44.854704,-0.574469,33063,0,OBX:SA:GODAR,Europe/Paris,,OBX, +OBX:SP:5399,1,"Camille Godard",44.85464,-0.574503,33063,0,OBX:SA:GODAR,Europe/Paris,,OBX, +OBX:SP:5400,1,"Emile Counord",44.858674,-0.574887,33063,0,OBX:SA:ECOUN,Europe/Paris,,OBX, +OBX:SP:5401,1,"Emile Counord",44.858627,-0.574934,33063,0,OBX:SA:ECOUN,Europe/Paris,,OBX, +OBX:SP:5402,1,"Grand Parc",44.862329,-0.575297,33063,0,OBX:SA:GPARC,Europe/Paris,,OBX, +OBX:SP:5403,1,"Grand Parc",44.862264,-0.575343,33063,0,OBX:SA:GPARC,Europe/Paris,,OBX, +OBX:SP:5404,1,"Quinconces",44.844012,-0.573712,33063,0,OBX:SA:QUIN_B,Europe/Paris,,OBX, +OBX:SP:5412,1,"Place Ravezies - le Bouscat",44.867125,-0.575818,33063,0,OBX:SA:RAVESI,Europe/Paris,,OBX, +OBX:SP:5413,1,"Place Ravezies - le Bouscat",44.86707,-0.575852,33063,0,OBX:SA:RAVESI,Europe/Paris,,OBX, +OBX:SP:5414,1,"Les Aubiers",44.87399,-0.574202,33063,0,OBX:SA:AUBI1C,Europe/Paris,,OBX, +OBX:SP:5415,1,"Les Aubiers",44.874013,-0.57433,33063,0,OBX:SA:AUBI1C,Europe/Paris,,OBX, +OBX:SP:5433,1,"Gare Saint-Jean",44.825917,-0.556845,33063,0,OBX:SA:SJEAN,Europe/Paris,,OBX, +OBX:SP:5434,1,"Belcier",44.822553,-0.552136,33063,0,OBX:SA:BELCI,Europe/Paris,,OBX, +OBX:SP:5435,1,"Belcier",44.822533,-0.552185,33063,0,OBX:SA:BELCI,Europe/Paris,,OBX, +OBX:SP:5436,1,"Carle Vernet",44.819858,-0.550446,33063,0,OBX:SA:VERNT,Europe/Paris,,OBX, +OBX:SP:5437,1,"Carle Vernet",44.819851,-0.550395,33063,0,OBX:SA:VERNT,Europe/Paris,,OBX, +OBX:SP:5438,1,"Terres Neuves",44.815276,-0.550865,33039,0,OBX:SA:NEUVE,Europe/Paris,,OBX, +OBX:SP:5439,1,"Terres Neuves",44.815338,-0.550882,33039,0,OBX:SA:NEUVE,Europe/Paris,,OBX, +OBX:SP:5441,1,"Mairie de Lormont",44.879864,-0.523542,33249,0,OBX:SA:HVILL,Europe/Paris,,OBX, +OBX:SP:5442,1,"Mairie de Lormont",44.87983,-0.523489,33249,0,OBX:SA:HVILL,Europe/Paris,,OBX, +OBX:SP:5443,1,"Carriet",44.882187,-0.523916,33249,0,OBX:SA:CARRI,Europe/Paris,,OBX, +OBX:SP:5444,1,"Carriet",44.882198,-0.523841,33249,0,OBX:SA:CARRI,Europe/Paris,,OBX, +OBX:SP:5488,1,"Lauriers",44.879105,-0.517917,33249,0,OBX:SA:LAURI,Europe/Paris,,OBX, +OBX:SP:5528,1,"rue Achard",44.866663,-0.548655,33063,0,OBX:SA:ACHAR,Europe/Paris,,OBX, +OBX:SP:5529,1,"rue Achard",44.866589,-0.548726,33063,0,OBX:SA:ACHAR,Europe/Paris,,OBX, +OBX:SP:5530,1,"New York",44.870941,-0.547329,33063,0,OBX:SA:NYORK,Europe/Paris,,OBX, +OBX:SP:5531,1,"New York",44.871094,-0.547338,33063,0,OBX:SA:NYORK,Europe/Paris,,OBX, +OBX:SP:5532,1,"Brandenburg",44.874483,-0.545651,33063,0,OBX:SA:BRANRG,Europe/Paris,,OBX, +OBX:SP:5533,1,"Brandenburg",44.874463,-0.545713,33063,0,OBX:SA:BRANRG,Europe/Paris,,OBX, +OBX:SP:5534,1,"Claveau",44.877867,-0.543812,33063,0,OBX:SA:CLAVE,Europe/Paris,,OBX, +OBX:SP:5535,1,"Claveau",44.877847,-0.543861,33063,0,OBX:SA:CLAVE,Europe/Paris,,OBX, +OBX:SP:7091,1,"La Gardette - Bassens - Carbon-Blanc",44.887668,-0.517313,33249,0,OBX:SA:LGARDE,Europe/Paris,,OBX, +OBX:SP:7131,1,"Berges du Lac",44.879067,-0.570773,33063,0,OBX:SA:BERLAC,Europe/Paris,,OBX, +OBX:SP:7132,1,"Berges du Lac",44.878965,-0.570843,33063,0,OBX:SA:BERLAC,Europe/Paris,,OBX, +OBX:SP:7172,1,"Berges de la Garonne",44.885582,-0.541535,33063,0,OBX:SA:GARON,Europe/Paris,,OBX, +OBX:SP:7323,1,"Quarante Journaux",44.883114,-0.57046,33063,0,OBX:SA:40JOU,Europe/Paris,,OBX, +OBX:SP:7324,1,"Quarante Journaux",44.883064,-0.570343,33063,0,OBX:SA:40JOU,Europe/Paris,,OBX, +OBX:SP:7325,1,"Palais des congrès",44.889296,-0.567126,33063,0,OBX:SA:PCONGR,Europe/Paris,,OBX, +OBX:SP:7326,1,"Palais des Congrès",44.889257,-0.567238,33063,0,OBX:SA:PCONGR,Europe/Paris,,OBX, +OBX:SP:7327,1,"Parc des Expositions",44.89334,-0.565799,33063,0,OBX:SA:TEXPO,Europe/Paris,,OBX, +OBX:SP:7328,1,"Parc des Expositions",44.893267,-0.565832,33063,0,OBX:SA:TEXPO,Europe/Paris,,OBX, +OBX:SP:7329,1,"Pin Galant",44.844259,-0.651373,33281,0,OBX:SA:PGALA,Europe/Paris,,OBX, +OBX:SP:7330,1,"Pin Galant",44.844197,-0.651319,33281,0,OBX:SA:PGALA,Europe/Paris,,OBX, +OBX:SP:7331,1,"Hotel de Ville Mérignac",44.844201,-0.658325,33281,0,OBX:SA:UTRILL,Europe/Paris,,OBX, +OBX:SP:7332,1,"Hotel de Ville Mérignac",44.844141,-0.658219,33281,0,OBX:SA:UTRILL,Europe/Paris,,OBX, +OBX:SP:7333,1,"Frères Robinson",44.850058,-0.655894,33281,0,OBX:SA:FRROBI,Europe/Paris,,OBX, +OBX:SP:7334,1,"Frères Robinson",44.850002,-0.655966,33281,0,OBX:SA:FRROBI,Europe/Paris,,OBX, +OBX:SP:7335,1,"Les Pins",44.85695,-0.659827,33281,0,OBX:SA:LESPIN,Europe/Paris,,OBX, +OBX:SP:7336,1,"Les Pins",44.856861,-0.659796,33281,0,OBX:SA:LESPIN,Europe/Paris,,OBX, +OBX:SP:7337,1,"Le Haillan Rostand",44.858517,-0.668319,33200,0,OBX:SA:TMAGUD,Europe/Paris,,OBX, +OBX:SP:7343,1,"Cracovie",44.871023,-0.576231,33063,0,OBX:SA:CRACOT,Europe/Paris,,OBX, +OBX:SP:7344,1,"Cracovie",44.870932,-0.576263,33063,0,OBX:SA:CRACOT,Europe/Paris,,OBX, +OBX:SP:7346,1,"Quinconces Fleuve",44.844496,-0.570715,33063,0,OBX:SA:QUIN_B,Europe/Paris,,OBX, +OBX:SP:7351,1,"Carle Vernet",44.819911,-0.550475,33063,0,OBX:SA:VERNT,Europe/Paris,,OBX, +OBX:SP:7391,1,"La Belle Rose",44.811116,-0.551286,33039,0,OBX:SA:BROSE,Europe/Paris,,OBX, +OBX:SP:7392,1,"La Belle Rose",44.811145,-0.551237,33039,0,OBX:SA:BROSE,Europe/Paris,,OBX, +OBX:SP:7393,1,"Musard",44.807953,-0.551555,33039,0,OBX:SA:MUSARD,Europe/Paris,,OBX, +OBX:SP:7394,1,"Musard",44.808017,-0.551533,33039,0,OBX:SA:MUSARD,Europe/Paris,,OBX, +OBX:SP:7395,1,"Calais - Centujean",44.802873,-0.552044,33039,0,OBX:SA:CALAIS,Europe/Paris,,OBX, +OBX:SP:7396,1,"Calais - Centujean",44.80291,-0.551995,33039,0,OBX:SA:CALAIS,Europe/Paris,,OBX, +OBX:SP:7397,1,"Gare de bègles",44.798207,-0.551951,33039,0,OBX:SA:DORGAT,Europe/Paris,,OBX, +OBX:SP:7398,1,"Gare de bègles",44.798211,-0.551838,33039,0,OBX:SA:DORGAT,Europe/Paris,,OBX, +OBX:SP:7399,1,"Parc de Mussonville",44.793941,-0.559655,33039,0,OBX:SA:PMUSS,Europe/Paris,,OBX, +OBX:SP:7400,1,"Parc de Mussonville",44.79397,-0.559594,33039,0,OBX:SA:PMUSS,Europe/Paris,,OBX, +OBX:SP:7402,1,"Vaclav Havel",44.786628,-0.566228,33039,0,OBX:SA:HAVEL,Europe/Paris,,OBX, +OBX:SP:7431,1,"Chataigneraie",44.79303,-0.64669,33318,0,OBX:SA:CHATA,Europe/Paris,,OBX, +OBX:SP:7432,1,"Chataigneraie",44.793008,-0.646549,33318,0,OBX:SA:CHATA,Europe/Paris,,OBX, +OBX:SP:7433,1,"Cap Métiers",44.789216,-0.651695,33318,0,OBX:SA:CMETIE,Europe/Paris,,OBX, +OBX:SP:7434,1,"Cap Métiers",44.789254,-0.651609,33318,0,OBX:SA:CMETIE,Europe/Paris,,OBX, +OBX:SP:7435,1,"Hôpital Haut-Lévêque",44.787741,-0.655408,33318,0,OBX:SA:HTLEV,Europe/Paris,,OBX, +OBX:SP:7436,1,"Hôpital Haut-Lévêque",44.78766,-0.655403,33318,0,OBX:SA:HTLEV,Europe/Paris,,OBX, +OBX:SP:7437,1,"Gare Pessac Alouette",44.793171,-0.657736,33318,0,OBX:SA:PESGAR,Europe/Paris,,OBX, +OBX:SP:7438,1,"Gare Pessac Alouette",44.793107,-0.65777,33318,0,OBX:SA:PESGAR,Europe/Paris,,OBX, +OBX:SP:7440,1,"France Alouette",44.798618,-0.663104,33318,0,OBX:SA:TALOU,Europe/Paris,,OBX, +OBX:SP:7463,1,"Montaigne-Montesquieu",44.796873,-0.617433,33318,0,OBX:SA:MONTA,Europe/Paris,,OBX, +OBX:SP:7711,1,"La Vache",44.872331,-0.590992,33075,0,OBX:SA:VACHE,Europe/Paris,,OBX, +OBX:SP:7712,1,"La Vache",44.872084,-0.590532,33075,0,OBX:SA:VACHE,Europe/Paris,,OBX, +OBX:SP:7713,1,"Ausone",44.879296,-0.603011,33075,0,OBX:SA:BRUSUD,Europe/Paris,,OBX, +OBX:SP:7714,1,"Ausone",44.879196,-0.602459,33075,0,OBX:SA:BRUSUD,Europe/Paris,,OBX, +OBX:SP:7715,1,"Gare de Bruges",44.887752,-0.609868,33075,0,OBX:SA:BRUGAR,Europe/Paris,,OBX, +OBX:SP:7716,1,"Gare de Bruges",44.88735,-0.609766,33075,0,OBX:SA:BRUGAR,Europe/Paris,,OBX, +OBX:SP:7717,1,"Frankton",44.907459,-0.619127,33056,0,OBX:SA:CBLANQ,Europe/Paris,,OBX, +OBX:SP:7718,1,"Frankton",44.907057,-0.619037,33056,0,OBX:SA:CBLANQ,Europe/Paris,,OBX, +OBX:SP:7719,1,"Gare de Blanquefort",44.916796,-0.623573,33056,0,OBX:SA:GABLAN,Europe/Paris,,OBX, +OGP:SP:20001,1,"Gare Grand Cerf",46.58256,0.334293,0,0,SIN:SA:OCE87202481,Europe/Paris,,OGP, +OGP:SP:20002,1,"Gare Grand Cerf",46.582619,0.334135,0,0,SIN:SA:OCE87202481,Europe/Paris,,OGP, +OGP:SP:20003,1,"Le Planty",46.596637,0.351511,0,0,OGP:SA:10002,Europe/Paris,,OGP, +OGP:SP:20004,1,"Le Planty",46.596572,0.351501,0,0,OGP:SA:10002,Europe/Paris,,OGP, +OGP:SP:20005,1,"Salle des Sports",46.603782,0.361397,0,0,OGP:SA:10003,Europe/Paris,,OGP, +OGP:SP:20006,1,"Salle des Sports",46.604171,0.361366,0,0,OGP:SA:10003,Europe/Paris,,OGP, +OGP:SP:20007,1,"Vincenderie",46.594645,0.341007,0,0,OGP:SA:10004,Europe/Paris,,OGP, +OGP:SP:20008,1,"Vincenderie",46.594096,0.340629,0,0,OGP:SA:10004,Europe/Paris,,OGP, +OGP:SP:20011,1,"Salvert",46.598072,0.33343,0,0,OGP:SA:10016,Europe/Paris,,OGP, +OGP:SP:20012,1,"Buxerolles Bourg",46.612312,0.361677,0,0,OGP:SA:10006,Europe/Paris,,OGP, +OGP:SP:20013,1,"Pont le Nain",46.591918,0.340343,0,0,OGP:SA:10038,Europe/Paris,,OGP, +OGP:SP:20015,1,"La Chaume",46.5959,0.334542,0,0,OGP:SA:10009,Europe/Paris,,OGP, +OGP:SP:20016,1,"La Chaume",46.595607,0.334753,0,0,OGP:SA:10009,Europe/Paris,,OGP, +OGP:SP:20017,1,"Demi-Lune",46.599716,0.324396,0,0,OGP:SA:10010,Europe/Paris,,OGP, +OGP:SP:20018,1,"Demi-Lune",46.599567,0.324112,0,0,OGP:SA:10010,Europe/Paris,,OGP, +OGP:SP:20020,1,"Pont le Nain",46.591231,0.340247,0,0,OGP:SA:10038,Europe/Paris,,OGP, +OGP:SP:20021,1,"Porte de Paris",46.59122,0.338639,0,0,OGP:SA:10012,Europe/Paris,,OGP, +OGP:SP:20022,1,"Porte de Paris",46.590679,0.339181,0,0,OGP:SA:10012,Europe/Paris,,OGP, +OGP:SP:20023,1,"Le Porteau",46.601802,0.339324,0,0,OGP:SA:10013,Europe/Paris,,OGP, +OGP:SP:20024,1,"Le Porteau",46.601798,0.33943,0,0,OGP:SA:10013,Europe/Paris,,OGP, +OGP:SP:20025,1,"Jardin des Plantes",46.588844,0.347316,0,0,OGP:SA:10014,Europe/Paris,,OGP, +OGP:SP:20026,1,"Rue du Commerce",46.649459,0.363667,0,0,OGP:SA:10192,Europe/Paris,,OGP, +OGP:SP:20027,1,"Bel Air",46.593173,0.328454,0,0,OGP:SA:10015,Europe/Paris,,OGP, +OGP:SP:20028,1,"Bel Air",46.593082,0.328421,0,0,OGP:SA:10015,Europe/Paris,,OGP, +OGP:SP:20029,1,"Croix Blanche",46.597805,0.33194,0,0,OGP:SA:10017,Europe/Paris,,OGP, +OGP:SP:20030,1,"Croix Blanche",46.597053,0.330735,0,0,OGP:SA:10017,Europe/Paris,,OGP, +OGP:SP:20031,1,"Olivier de Serres",46.596595,0.3289,0,0,OGP:SA:10018,Europe/Paris,,OGP, +OGP:SP:20032,1,"Olivier de Serres",46.596516,0.329187,0,0,OGP:SA:10018,Europe/Paris,,OGP, +OGP:SP:20033,1,"Avenue de Nantes",46.596569,0.327282,0,0,OGP:SA:10019,Europe/Paris,,OGP, +OGP:SP:20034,1,"Avenue de Nantes",46.597385,0.326824,0,0,OGP:SA:10019,Europe/Paris,,OGP, +OGP:SP:20035,1,"T.A.P.",46.583004,0.338598,0,0,OGP:SA:10020,Europe/Paris,,OGP, +OGP:SP:20039,1,"La Chaussée",46.588149,0.340227,0,0,OGP:SA:10022,Europe/Paris,,OGP, +OGP:SP:20040,1,"La Chaussée",46.588107,0.340034,0,0,OGP:SA:10022,Europe/Paris,,OGP, +OGP:SP:20041,1,"Abbé Frémont",46.590206,0.341108,0,0,OGP:SA:10023,Europe/Paris,,OGP, +OGP:SP:20042,1,"Mozart",46.592132,0.347704,0,0,OGP:SA:10037,Europe/Paris,,OGP, +OGP:SP:20043,1,"Voie Malraux",46.585087,0.346519,0,0,OGP:SA:10024,Europe/Paris,,OGP, +OGP:SP:20044,1,"Mozart",46.592224,0.347295,0,0,OGP:SA:10037,Europe/Paris,,OGP, +OGP:SP:20045,1,"Henri Oudin",46.581252,0.341963,0,0,OGP:SA:10025,Europe/Paris,,OGP, +OGP:SP:20046,1,"Europe",46.591236,0.351826,0,0,OGP:SA:10039,Europe/Paris,,OGP, +OGP:SP:20047,1,"La Roche",46.584769,0.332017,0,0,OGP:SA:10026,Europe/Paris,,OGP, +OGP:SP:20048,1,"La Roche",46.584442,0.331863,0,0,OGP:SA:10026,Europe/Paris,,OGP, +OGP:SP:20049,1,"Corbeille Fleurie",46.584774,0.330344,0,0,OGP:SA:10027,Europe/Paris,,OGP, +OGP:SP:20050,1,"Corbeille Fleurie",46.58527,0.330398,0,0,OGP:SA:10027,Europe/Paris,,OGP, +OGP:SP:20051,1,"Condorcet",46.589087,0.329936,0,0,OGP:SA:10028,Europe/Paris,,OGP, +OGP:SP:20052,1,"Condorcet",46.588557,0.330002,0,0,OGP:SA:10028,Europe/Paris,,OGP, +OGP:SP:20053,1,"Grange St-Pierre",46.598731,0.335031,0,0,OGP:SA:10029,Europe/Paris,,OGP, +OGP:SP:20054,1,"Grange St-Pierre",46.598354,0.335023,0,0,OGP:SA:10029,Europe/Paris,,OGP, +OGP:SP:20055,1,"La Sablière",46.601157,0.336009,0,0,OGP:SA:10030,Europe/Paris,,OGP, +OGP:SP:20056,1,"La Sablière",46.601024,0.335951,0,0,OGP:SA:10030,Europe/Paris,,OGP, +OGP:SP:20057,1,"L'Etoile",46.603672,0.340253,0,0,OGP:SA:10031,Europe/Paris,,OGP, +OGP:SP:20058,1,"L'Etoile",46.603957,0.340592,0,0,OGP:SA:10031,Europe/Paris,,OGP, +OGP:SP:20059,1,"AFT Le Carreau",46.607804,0.343044,0,0,OGP:SA:10032,Europe/Paris,,OGP, +OGP:SP:20060,1,"AFT Le Carreau",46.608001,0.343191,0,0,OGP:SA:10032,Europe/Paris,,OGP, +OGP:SP:20067,1,"Cordeliers",46.582385,0.343044,0,0,OGP:SA:10036,Europe/Paris,,OGP, +OGP:SP:20068,1,"Europe",46.591296,0.352123,0,0,OGP:SA:10039,Europe/Paris,,OGP, +OGP:SP:20069,1,"Le Mail",46.589522,0.357646,0,0,OGP:SA:10040,Europe/Paris,,OGP, +OGP:SP:20070,1,"Le Mail",46.589827,0.356364,0,0,OGP:SA:10040,Europe/Paris,,OGP, +OGP:SP:20071,1,"Marbourg",46.589066,0.3607,0,0,OGP:SA:10041,Europe/Paris,,OGP, +OGP:SP:20072,1,"Marbourg",46.58926,0.360677,0,0,OGP:SA:10041,Europe/Paris,,OGP, +OGP:SP:20073,1,"Rondy",46.5867,0.36531,0,0,OGP:SA:10042,Europe/Paris,,OGP, +OGP:SP:20074,1,"Rondy",46.586945,0.36535,0,0,OGP:SA:10042,Europe/Paris,,OGP, +OGP:SP:20075,1,"Touffenet",46.581566,0.367962,0,0,OGP:SA:10043,Europe/Paris,,OGP, +OGP:SP:20076,1,"Touffenet",46.581775,0.368201,0,0,OGP:SA:10043,Europe/Paris,,OGP, +OGP:SP:20077,1,"Jean Moulin",46.58144,0.372306,0,0,OGP:SA:10044,Europe/Paris,,OGP, +OGP:SP:20078,1,"Jean Moulin",46.581412,0.372699,0,0,OGP:SA:10044,Europe/Paris,,OGP, +OGP:SP:20079,1,"Parc Expo",46.580471,0.377267,0,0,OGP:SA:10045,Europe/Paris,,OGP, +OGP:SP:20080,1,"Parc Expo",46.580677,0.376746,0,0,OGP:SA:10045,Europe/Paris,,OGP, +OGP:SP:20081,1,"Northampton",46.579726,0.379052,0,0,OGP:SA:10046,Europe/Paris,,OGP, +OGP:SP:20082,1,"Northampton",46.579642,0.379226,0,0,OGP:SA:10046,Europe/Paris,,OGP, +OGP:SP:20083,1,"Bois Dousset",46.577305,0.378255,0,0,OGP:SA:10047,Europe/Paris,,OGP, +OGP:SP:20084,1,"Bois Dousset",46.577174,0.378562,0,0,OGP:SA:10047,Europe/Paris,,OGP, +OGP:SP:20085,1,"Beaulieu",46.576363,0.376433,0,0,OGP:SA:10048,Europe/Paris,,OGP, +OGP:SP:20086,1,"Beaulieu",46.576503,0.376726,0,0,OGP:SA:10048,Europe/Paris,,OGP, +OGP:SP:20087,1,"Lavoisier",46.576286,0.373836,0,0,OGP:SA:10049,Europe/Paris,,OGP, +OGP:SP:20088,1,"Lavoisier",46.576149,0.372981,0,0,OGP:SA:10049,Europe/Paris,,OGP, +OGP:SP:20089,1,"La Fayette",46.575439,0.370427,0,0,OGP:SA:10050,Europe/Paris,,OGP, +OGP:SP:20091,1,"Stade",46.572693,0.370456,0,0,OGP:SA:10051,Europe/Paris,,OGP, +OGP:SP:20092,1,"Stade",46.572639,0.370811,0,0,OGP:SA:10051,Europe/Paris,,OGP, +OGP:SP:20093,1,"Patinoire",46.56946,0.369209,0,0,OGP:SA:10052,Europe/Paris,,OGP, +OGP:SP:20094,1,"Patinoire",46.569758,0.369736,0,0,OGP:SA:10052,Europe/Paris,,OGP, +OGP:SP:20095,1,"Camille Guérin",46.567599,0.366404,0,0,OGP:SA:10053,Europe/Paris,,OGP, +OGP:SP:20096,1,"Camille Guérin",46.567497,0.366684,0,0,OGP:SA:10053,Europe/Paris,,OGP, +OGP:SP:20097,1,"Les Landes",46.566546,0.362601,0,0,OGP:SA:10054,Europe/Paris,,OGP, +OGP:SP:20098,1,"Les Landes",46.566448,0.364057,0,0,OGP:SA:10054,Europe/Paris,,OGP, +OGP:SP:20099,1,"Paul Verlaine",46.567238,0.35925,0,0,OGP:SA:10055,Europe/Paris,,OGP, +OGP:SP:20100,1,"Paul Verlaine",46.567168,0.359057,0,0,OGP:SA:10055,Europe/Paris,,OGP, +OGP:SP:20101,1,"Pontreau",46.568085,0.355773,0,0,OGP:SA:10056,Europe/Paris,,OGP, +OGP:SP:20102,1,"Pontreau",46.568283,0.354966,0,0,OGP:SA:10056,Europe/Paris,,OGP, +OGP:SP:20103,1,"Grand Maison",46.566054,0.351731,0,0,OGP:SA:10057,Europe/Paris,,OGP, +OGP:SP:20104,1,"Grand Maison",46.566443,0.352575,0,0,OGP:SA:10057,Europe/Paris,,OGP, +OGP:SP:20105,1,"St-Cyprien",46.565685,0.349777,0,0,OGP:SA:10058,Europe/Paris,,OGP, +OGP:SP:20106,1,"St-Cyprien",46.565437,0.348756,0,0,OGP:SA:10058,Europe/Paris,,OGP, +OGP:SP:20107,1,"Molière",46.566769,0.345283,0,0,OGP:SA:10059,Europe/Paris,,OGP, +OGP:SP:20108,1,"Molière",46.566479,0.345988,0,0,OGP:SA:10059,Europe/Paris,,OGP, +OGP:SP:20109,1,"Clos Gaultier",46.566319,0.342953,0,0,OGP:SA:10060,Europe/Paris,,OGP, +OGP:SP:20110,1,"Clos Gaultier",46.566338,0.343044,0,0,OGP:SA:10060,Europe/Paris,,OGP, +OGP:SP:20111,1,"Les Sables",46.565505,0.340498,0,0,OGP:SA:10061,Europe/Paris,,OGP, +OGP:SP:20112,1,"Les Sables",46.565395,0.341117,0,0,OGP:SA:10061,Europe/Paris,,OGP, +OGP:SP:20113,1,"Rhin-Danube",46.56781,0.340868,0,0,OGP:SA:10062,Europe/Paris,,OGP, +OGP:SP:20114,1,"Rhin-Danube",46.567711,0.340808,0,0,OGP:SA:10062,Europe/Paris,,OGP, +OGP:SP:20115,1,"Fief de Grimoire",46.569518,0.340772,0,0,OGP:SA:10063,Europe/Paris,,OGP, +OGP:SP:20116,1,"Fief de Grimoire",46.569692,0.34049,0,0,OGP:SA:10063,Europe/Paris,,OGP, +OGP:SP:20117,1,"Les Cours",46.572614,0.339042,0,0,OGP:SA:10064,Europe/Paris,,OGP, +OGP:SP:20118,1,"Les Cours",46.572704,0.339009,0,0,OGP:SA:10064,Europe/Paris,,OGP, +OGP:SP:20119,1,"Pont St-Cyprien",46.574314,0.345451,0,0,OGP:SA:10065,Europe/Paris,,OGP, +OGP:SP:20120,1,"Pont St-Cyprien",46.574299,0.345189,0,0,OGP:SA:10065,Europe/Paris,,OGP, +OGP:SP:20121,1,"Paul Blet",46.57661,0.343038,0,0,OGP:SA:10066,Europe/Paris,,OGP, +OGP:SP:20122,1,"Paul Blet",46.57656,0.344374,0,0,OGP:SA:10066,Europe/Paris,,OGP, +OGP:SP:20124,1,"Blossac",46.576157,0.335901,0,0,OGP:SA:10067,Europe/Paris,,OGP, +OGP:SP:20125,1,"Iassy",46.570521,0.390496,0,0,OGP:SA:10115,Europe/Paris,,OGP, +OGP:SP:20129,1,"Iassy",46.570678,0.391037,0,0,OGP:SA:10115,Europe/Paris,,OGP, +OGP:SP:20133,1,"Porte Madeleine",46.573425,0.328587,0,0,OGP:SA:10072,Europe/Paris,,OGP, +OGP:SP:20137,1,"Verdun",46.582985,0.336285,0,0,OGP:SA:10074,Europe/Paris,,OGP, +OGP:SP:20139,1,"A. Briand",46.581398,0.335789,0,0,OGP:SA:10075,Europe/Paris,,OGP, +OGP:SP:20141,1,"Vaudouzil",46.580621,0.365727,0,0,OGP:SA:10077,Europe/Paris,,OGP, +OGP:SP:20142,1,"Quatre Vents",46.611496,0.359939,0,0,OGP:SA:10076,Europe/Paris,,OGP, +OGP:SP:20143,1,"Vaudouzil",46.58005,0.365671,0,0,OGP:SA:10077,Europe/Paris,,OGP, +OGP:SP:20144,1,"Abel Tassin",46.596085,0.341774,0,0,OGP:SA:10078,Europe/Paris,,OGP, +OGP:SP:20145,1,"Abel Tassin",46.59642,0.341835,0,0,OGP:SA:10078,Europe/Paris,,OGP, +OGP:SP:20146,1,"Lessart",46.599071,0.343104,0,0,OGP:SA:10079,Europe/Paris,,OGP, +OGP:SP:20147,1,"Lessart",46.599491,0.343698,0,0,OGP:SA:10079,Europe/Paris,,OGP, +OGP:SP:20148,1,"Acacias",46.600009,0.344733,0,0,OGP:SA:10080,Europe/Paris,,OGP, +OGP:SP:20149,1,"Acacias",46.600364,0.344911,0,0,OGP:SA:10080,Europe/Paris,,OGP, +OGP:SP:20150,1,"Parc Valvert",46.601131,0.348441,0,0,OGP:SA:10081,Europe/Paris,,OGP, +OGP:SP:20151,1,"Parc Valvert",46.601222,0.348399,0,0,OGP:SA:10081,Europe/Paris,,OGP, +OGP:SP:20154,1,"Amandiers",46.599479,0.350652,0,0,OGP:SA:10083,Europe/Paris,,OGP, +OGP:SP:20155,1,"Amandiers",46.600216,0.349663,0,0,OGP:SA:10083,Europe/Paris,,OGP, +OGP:SP:20156,1,"Buxerolles Mairie",46.598351,0.35208,0,0,OGP:SA:10084,Europe/Paris,,OGP, +OGP:SP:20157,1,"Buxerolles Mairie",46.598495,0.352298,0,0,OGP:SA:10084,Europe/Paris,,OGP, +OGP:SP:20160,1,"Charles de Gaulle",46.599232,0.35741,0,0,OGP:SA:10086,Europe/Paris,,OGP, +OGP:SP:20161,1,"Charles de Gaulle",46.599159,0.357752,0,0,OGP:SA:10086,Europe/Paris,,OGP, +OGP:SP:20162,1,"Voie Romaine",46.602673,0.35808,0,0,OGP:SA:10087,Europe/Paris,,OGP, +OGP:SP:20163,1,"Voie Romaine",46.602631,0.357951,0,0,OGP:SA:10087,Europe/Paris,,OGP, +OGP:SP:20164,1,"La Coulée",46.607028,0.360273,0,0,OGP:SA:10088,Europe/Paris,,OGP, +OGP:SP:20165,1,"La Coulée",46.606827,0.360113,0,0,OGP:SA:10088,Europe/Paris,,OGP, +OGP:SP:20166,1,"Terrageaux",46.608142,0.362115,0,0,OGP:SA:10089,Europe/Paris,,OGP, +OGP:SP:20167,1,"Terrageaux",46.608097,0.362117,0,0,OGP:SA:10089,Europe/Paris,,OGP, +OGP:SP:20176,1,"Nimègue",46.591869,0.362341,0,0,OGP:SA:10093,Europe/Paris,,OGP, +OGP:SP:20179,1,"La Pépinière",46.593158,0.363167,0,0,OGP:SA:10095,Europe/Paris,,OGP, +OGP:SP:20181,1,"France 3",46.593234,0.359491,0,0,OGP:SA:10096,Europe/Paris,,OGP, +OGP:SP:20186,1,"Avenue du Parc",46.576836,0.313342,0,0,OGP:SA:10236,Europe/Paris,,OGP, +OGP:SP:20187,1,"Notre Dame",46.584006,0.34448,0,0,OGP:SA:10011,Europe/Paris,,OGP, +OGP:SP:20188,1,"Place Lepetit",46.58353,0.341525,0,0,OGP:SA:10099,Europe/Paris,,OGP, +OGP:SP:20189,1,"Voie Malraux",46.585147,0.34683,0,0,OGP:SA:10024,Europe/Paris,,OGP, +OGP:SP:20193,1,"Biard Centre",46.576241,0.307649,0,0,OGP:SA:10104,Europe/Paris,,OGP, +OGP:SP:20194,1,"Grange St-Pierre",46.598511,0.334519,0,0,OGP:SA:10029,Europe/Paris,,OGP, +OGP:SP:20196,1,"Blériot",46.578636,0.316703,0,0,OGP:SA:10008,Europe/Paris,,OGP, +OGP:SP:20198,1,"Trois Bourdons",46.563225,0.317686,0,0,OGP:SA:10126,Europe/Paris,,OGP, +OGP:SP:20199,1,"Collège Rabelais",46.577927,0.317966,0,0,OGP:SA:10107,Europe/Paris,,OGP, +OGP:SP:20201,1,"Montmidi",46.578301,0.320118,0,0,OGP:SA:10108,Europe/Paris,,OGP, +OGP:SP:20202,1,"Montmidi",46.578324,0.319973,0,0,OGP:SA:10108,Europe/Paris,,OGP, +OGP:SP:20204,1,"Blériot",46.578617,0.31673,0,0,OGP:SA:10008,Europe/Paris,,OGP, +OGP:SP:20205,1,"Maquis",46.577255,0.322768,0,0,OGP:SA:10110,Europe/Paris,,OGP, +OGP:SP:20206,1,"Maquis",46.577587,0.322282,0,0,OGP:SA:10110,Europe/Paris,,OGP, +OGP:SP:20207,1,"Soleil Levant",46.578406,0.328539,0,0,OGP:SA:10111,Europe/Paris,,OGP, +OGP:SP:20208,1,"Soleil Levant",46.578505,0.328496,0,0,OGP:SA:10111,Europe/Paris,,OGP, +OGP:SP:20209,1,"Pont Achard",46.578186,0.331359,0,0,OGP:SA:10112,Europe/Paris,,OGP, +OGP:SP:20210,1,"Pont Achard",46.578792,0.331878,0,0,OGP:SA:10112,Europe/Paris,,OGP, +OGP:SP:20211,1,"Mariéville",46.573886,0.391498,0,0,OGP:SA:10117,Europe/Paris,,OGP, +OGP:SP:20212,1,"Mariéville",46.573813,0.391566,0,0,OGP:SA:10117,Europe/Paris,,OGP, +OGP:SP:20213,1,"Montpensier",46.574074,0.38911,0,0,OGP:SA:10118,Europe/Paris,,OGP, +OGP:SP:20214,1,"Montpensier",46.574115,0.389292,0,0,OGP:SA:10118,Europe/Paris,,OGP, +OGP:SP:20215,1,"Iaroslav",46.573624,0.386324,0,0,OGP:SA:10119,Europe/Paris,,OGP, +OGP:SP:20216,1,"Iaroslav",46.573452,0.387116,0,0,OGP:SA:10119,Europe/Paris,,OGP, +OGP:SP:20217,1,"Centre Culturel",46.575549,0.383813,0,0,OGP:SA:10120,Europe/Paris,,OGP, +OGP:SP:20218,1,"Langevin",46.578978,0.323689,0,0,OGP:SA:10238,Europe/Paris,,OGP, +OGP:SP:20219,1,"Vayres",46.57582,0.38107,0,0,OGP:SA:10121,Europe/Paris,,OGP, +OGP:SP:20220,1,"Langevin",46.57896,0.32373,0,0,OGP:SA:10238,Europe/Paris,,OGP, +OGP:SP:20222,1,"Montgorges",46.58166,0.32544,0,0,OGP:SA:10239,Europe/Paris,,OGP, +OGP:SP:20223,1,"La Souche",46.57222,0.326701,0,0,OGP:SA:10123,Europe/Paris,,OGP, +OGP:SP:20224,1,"La Souche",46.571944,0.326479,0,0,OGP:SA:10123,Europe/Paris,,OGP, +OGP:SP:20225,1,"Jeunes Sourds",46.568992,0.321987,0,0,OGP:SA:10124,Europe/Paris,,OGP, +OGP:SP:20226,1,"Jeunes Sourds",46.569195,0.322473,0,0,OGP:SA:10124,Europe/Paris,,OGP, +OGP:SP:20227,1,"Torchaise",46.56794,0.320483,0,0,OGP:SA:10125,Europe/Paris,,OGP, +OGP:SP:20228,1,"Torchaise",46.567878,0.320539,0,0,OGP:SA:10125,Europe/Paris,,OGP, +OGP:SP:20229,1,"Trois Bourdons",46.563716,0.317074,0,0,OGP:SA:10126,Europe/Paris,,OGP, +OGP:SP:20230,1,"Trois Bourdons",46.564709,0.317925,0,0,OGP:SA:10126,Europe/Paris,,OGP, +OGP:SP:20231,1,"Serge Rouault",46.561306,0.314657,0,0,OGP:SA:10127,Europe/Paris,,OGP, +OGP:SP:20232,1,"Serge Rouault",46.560817,0.314224,0,0,OGP:SA:10127,Europe/Paris,,OGP, +OGP:SP:20233,1,"Saint-Gervais",46.558501,0.311414,0,0,OGP:SA:10128,Europe/Paris,,OGP, +OGP:SP:20234,1,"Saint-Gervais",46.558532,0.311647,0,0,OGP:SA:10128,Europe/Paris,,OGP, +OGP:SP:20235,1,"Aulnes",46.556786,0.309427,0,0,OGP:SA:10129,Europe/Paris,,OGP, +OGP:SP:20236,1,"Aulnes",46.556922,0.309755,0,0,OGP:SA:10129,Europe/Paris,,OGP, +OGP:SP:20239,1,"Renaudot",46.550198,0.321135,0,0,OGP:SA:10131,Europe/Paris,,OGP, +OGP:SP:20240,1,"Renaudot",46.550083,0.321245,0,0,OGP:SA:10131,Europe/Paris,,OGP, +OGP:SP:20241,1,"Rue des Bruyères",46.548622,0.320128,0,0,OGP:SA:10132,Europe/Paris,,OGP, +OGP:SP:20242,1,"Rue des Bruyères",46.548599,0.320234,0,0,OGP:SA:10132,Europe/Paris,,OGP, +OGP:SP:20243,1,"Fief Clairet",46.547665,0.317616,0,0,OGP:SA:10133,Europe/Paris,,OGP, +OGP:SP:20244,1,"Fief Clairet",46.547542,0.317491,0,0,OGP:SA:10133,Europe/Paris,,OGP, +OGP:SP:20246,1,"Chantejeau",46.546309,0.312197,0,0,OGP:SA:10134,Europe/Paris,,OGP, +OGP:SP:20247,1,"Lycée du Bois d'Amour",46.551388,0.308956,0,0,OGP:SA:10135,Europe/Paris,,OGP, +OGP:SP:20248,1,"Lycée du Bois d'Amour",46.552567,0.30963,0,0,OGP:SA:10135,Europe/Paris,,OGP, +OGP:SP:20249,1,"Foyer Soleil",46.573535,0.378188,0,0,OGP:SA:10136,Europe/Paris,,OGP, +OGP:SP:20250,1,"Montgorges",46.581169,0.325608,0,0,OGP:SA:10239,Europe/Paris,,OGP, +OGP:SP:20251,1,"Colonel Biraud",46.58348,0.325506,0,0,OGP:SA:10240,Europe/Paris,,OGP, +OGP:SP:20252,1,"Jean le Bon",46.572879,0.380572,0,0,OGP:SA:10137,Europe/Paris,,OGP, +OGP:SP:20253,1,"Colonel Biraud",46.583458,0.325587,0,0,OGP:SA:10240,Europe/Paris,,OGP, +OGP:SP:20255,1,"Capitaine Bes",46.586697,0.326199,0,0,OGP:SA:10241,Europe/Paris,,OGP, +OGP:SP:20258,1,"Hoche",46.587083,0.374703,0,0,OGP:SA:10170,Europe/Paris,,OGP, +OGP:SP:20265,1,"St Eloi",46.58966,0.374458,0,0,OGP:SA:10144,Europe/Paris,,OGP, +OGP:SP:20266,1,"St Eloi",46.589686,0.374495,0,0,OGP:SA:10144,Europe/Paris,,OGP, +OGP:SP:20267,1,"Croix St-Eloi",46.589869,0.371796,0,0,OGP:SA:10145,Europe/Paris,,OGP, +OGP:SP:20268,1,"Croix St-Eloi",46.589455,0.371383,0,0,OGP:SA:10145,Europe/Paris,,OGP, +OGP:SP:20273,1,"Alienor d'Aquitaine",46.588191,0.365068,0,0,OGP:SA:10148,Europe/Paris,,OGP, +OGP:SP:20274,1,"Alienor d'Aquitaine",46.588203,0.365263,0,0,OGP:SA:10148,Europe/Paris,,OGP, +OGP:SP:20277,1,"Montbernage",46.583305,0.361881,0,0,OGP:SA:10150,Europe/Paris,,OGP, +OGP:SP:20278,1,"Montbernage",46.583187,0.361781,0,0,OGP:SA:10150,Europe/Paris,,OGP, +OGP:SP:20279,1,"Père de la Croix",46.581611,0.35914,0,0,OGP:SA:10151,Europe/Paris,,OGP, +OGP:SP:20280,1,"Père de la Croix",46.581543,0.359209,0,0,OGP:SA:10151,Europe/Paris,,OGP, +OGP:SP:20281,1,"Gendarmerie",46.577351,0.357061,0,0,OGP:SA:10152,Europe/Paris,,OGP, +OGP:SP:20282,1,"Gendarmerie",46.577323,0.35752,0,0,OGP:SA:10152,Europe/Paris,,OGP, +OGP:SP:20283,1,"Aboville",46.579487,0.355547,0,0,OGP:SA:10153,Europe/Paris,,OGP, +OGP:SP:20284,1,"Aboville",46.579295,0.355476,0,0,OGP:SA:10153,Europe/Paris,,OGP, +OGP:SP:20285,1,"Coligny",46.577393,0.352289,0,0,OGP:SA:10154,Europe/Paris,,OGP, +OGP:SP:20286,1,"Coligny",46.577292,0.352648,0,0,OGP:SA:10154,Europe/Paris,,OGP, +OGP:SP:20287,1,"Capitaine Bes",46.58659,0.326243,0,0,OGP:SA:10241,Europe/Paris,,OGP, +OGP:SP:20288,1,"Pont Neuf",46.57851,0.35042,0,0,OGP:SA:10155,Europe/Paris,,OGP, +OGP:SP:20289,1,"Baptistère St-Jean",46.57981,0.348252,0,0,OGP:SA:10156,Europe/Paris,,OGP, +OGP:SP:20290,1,"Baptistère St-Jean",46.579394,0.349252,0,0,OGP:SA:10156,Europe/Paris,,OGP, +OGP:SP:20291,1,"Rue St-Benoit",46.560513,0.318446,0,0,OGP:SA:10157,Europe/Paris,,OGP, +OGP:SP:20293,1,"Rue de Parigny",46.557755,0.318751,0,0,OGP:SA:10158,Europe/Paris,,OGP, +OGP:SP:20294,1,"Rue de Parigny",46.559429,0.318655,0,0,OGP:SA:10158,Europe/Paris,,OGP, +OGP:SP:20295,1,"St-Martin",46.554915,0.319191,0,0,OGP:SA:10159,Europe/Paris,,OGP, +OGP:SP:20296,1,"St-Martin",46.555053,0.319197,0,0,OGP:SA:10159,Europe/Paris,,OGP, +OGP:SP:20297,1,"Sécatol",46.553055,0.319989,0,0,OGP:SA:10160,Europe/Paris,,OGP, +OGP:SP:20298,1,"Sécatol",46.553257,0.319873,0,0,OGP:SA:10160,Europe/Paris,,OGP, +OGP:SP:20299,1,"Les Essarts",46.553142,0.322257,0,0,OGP:SA:10161,Europe/Paris,,OGP, +OGP:SP:20300,1,"Les Essarts",46.55304,0.321792,0,0,OGP:SA:10161,Europe/Paris,,OGP, +OGP:SP:20301,1,"Magnac",46.554088,0.325292,0,0,OGP:SA:10162,Europe/Paris,,OGP, +OGP:SP:20302,1,"Magnac",46.554572,0.326365,0,0,OGP:SA:10162,Europe/Paris,,OGP, +OGP:SP:20303,1,"Ermitage",46.555416,0.330137,0,0,OGP:SA:10163,Europe/Paris,,OGP, +OGP:SP:20304,1,"Ermitage",46.555264,0.329452,0,0,OGP:SA:10163,Europe/Paris,,OGP, +OGP:SP:20305,1,"Rue du Clain",46.555861,0.331407,0,0,OGP:SA:10164,Europe/Paris,,OGP, +OGP:SP:20307,1,"Rue des Peupliers",46.557563,0.332562,0,0,OGP:SA:10165,Europe/Paris,,OGP, +OGP:SP:20308,1,"Cité Bel Air",46.589793,0.325392,0,0,OGP:SA:10242,Europe/Paris,,OGP, +OGP:SP:20310,1,"La Varenne",46.558556,0.332056,0,0,OGP:SA:10166,Europe/Paris,,OGP, +OGP:SP:20311,1,"Cité Bel Air",46.590076,0.324778,0,0,OGP:SA:10242,Europe/Paris,,OGP, +OGP:SP:20315,1,"Frères Morane",46.590569,0.323054,0,0,OGP:SA:10244,Europe/Paris,,OGP, +OGP:SP:20317,1,"Route de Paris",46.59592,0.336594,0,0,OGP:SA:10171,Europe/Paris,,OGP, +OGP:SP:20318,1,"Route de Paris",46.596629,0.336832,0,0,OGP:SA:10171,Europe/Paris,,OGP, +OGP:SP:20319,1,"Moulin Apparent",46.60609,0.345075,0,0,OGP:SA:10172,Europe/Paris,,OGP, +OGP:SP:20320,1,"Moulin Apparent",46.606009,0.345092,0,0,OGP:SA:10172,Europe/Paris,,OGP, +OGP:SP:20321,1,"Maison Formation",46.611977,0.348607,0,0,OGP:SA:10173,Europe/Paris,,OGP, +OGP:SP:20322,1,"Maison Formation",46.612186,0.348752,0,0,OGP:SA:10173,Europe/Paris,,OGP, +OGP:SP:20323,1,"Pont Autoroute",46.618113,0.351078,0,0,OGP:SA:10174,Europe/Paris,,OGP, +OGP:SP:20324,1,"Pont Autoroute",46.618389,0.35138,0,0,OGP:SA:10174,Europe/Paris,,OGP, +OGP:SP:20327,1,"Grand Pont",46.635685,0.357509,0,0,OGP:SA:10176,Europe/Paris,,OGP, +OGP:SP:20328,1,"Grand Pont",46.63832,0.358491,0,0,OGP:SA:10176,Europe/Paris,,OGP, +OGP:SP:20329,1,"Palais Congrès",46.660454,0.365476,0,0,OGP:SA:10371,Europe/Paris,,OGP, +OGP:SP:20330,1,"Palais Congrès",46.660308,0.3653,0,0,OGP:SA:10371,Europe/Paris,,OGP, +OGP:SP:20331,1,"Rond-Point Charlemagne",46.646332,0.368273,0,0,OGP:SA:10178,Europe/Paris,,OGP, +OGP:SP:20332,1,"Rond-Point Charlemagne",46.645865,0.367674,0,0,OGP:SA:10178,Europe/Paris,,OGP, +OGP:SP:20333,1,"Maraudeau",46.648128,0.372406,0,0,OGP:SA:10179,Europe/Paris,,OGP, +OGP:SP:20334,1,"Maraudeau",46.648375,0.372643,0,0,OGP:SA:10179,Europe/Paris,,OGP, +OGP:SP:20335,1,"Mairie Chasseneuil",46.650784,0.375024,0,0,OGP:SA:10180,Europe/Paris,,OGP, +OGP:SP:20336,1,"Mairie Chasseneuil",46.651093,0.375651,0,0,OGP:SA:10180,Europe/Paris,,OGP, +OGP:SP:20337,1,"Leclanché",46.653576,0.37735,0,0,OGP:SA:10181,Europe/Paris,,OGP, +OGP:SP:20338,1,"Leclanché",46.652855,0.376678,0,0,OGP:SA:10181,Europe/Paris,,OGP, +OGP:SP:20339,1,"Ecluzelles",46.65641,0.378377,0,0,OGP:SA:10182,Europe/Paris,,OGP, +OGP:SP:20340,1,"Ecluzelles",46.656432,0.380247,0,0,OGP:SA:10182,Europe/Paris,,OGP, +OGP:SP:20341,1,"Rue de Vert",46.65816,0.381682,0,0,OGP:SA:10183,Europe/Paris,,OGP, +OGP:SP:20342,1,"Rue de Vert",46.658253,0.381757,0,0,OGP:SA:10183,Europe/Paris,,OGP, +OGP:SP:20345,1,"Les Temps Modernes",46.656013,0.369813,0,0,OGP:SA:10185,Europe/Paris,,OGP, +OGP:SP:20346,1,"Les Temps Modernes",46.655926,0.369817,0,0,OGP:SA:10185,Europe/Paris,,OGP, +OGP:SP:20347,1,"Europe",46.658417,0.371176,0,0,OGP:SA:10186,Europe/Paris,,OGP, +OGP:SP:20348,1,"Europe",46.658726,0.371423,0,0,OGP:SA:10186,Europe/Paris,,OGP, +OGP:SP:20349,1,"Université",46.660949,0.359879,0,0,OGP:SA:10187,Europe/Paris,,OGP, +OGP:SP:20350,1,"Université",46.660918,0.359854,0,0,OGP:SA:10187,Europe/Paris,,OGP, +OGP:SP:20351,1,"Téléport 4",46.669463,0.361061,0,0,OGP:SA:10188,Europe/Paris,,OGP, +OGP:SP:20352,1,"Téléport 4",46.669468,0.361231,0,0,OGP:SA:10188,Europe/Paris,,OGP, +OGP:SP:20354,1,"Futuroscope LPI",46.673008,0.36475,0,0,OGP:SA:10189,Europe/Paris,,OGP, +OGP:SP:20355,1,"Les Portes du Futur",46.645511,0.361597,0,0,OGP:SA:10190,Europe/Paris,,OGP, +OGP:SP:20356,1,"Les Portes du Futur",46.64466,0.36148,0,0,OGP:SA:10190,Europe/Paris,,OGP, +OGP:SP:20357,1,"Lanaja",46.645705,0.364163,0,0,OGP:SA:10191,Europe/Paris,,OGP, +OGP:SP:20358,1,"Lanaja",46.645919,0.363721,0,0,OGP:SA:10191,Europe/Paris,,OGP, +OGP:SP:20361,1,"Les Glycines",46.652718,0.367422,0,0,OGP:SA:10193,Europe/Paris,,OGP, +OGP:SP:20362,1,"Les Glycines",46.652737,0.36746,0,0,OGP:SA:10193,Europe/Paris,,OGP, +OGP:SP:20363,1,"Rue du Commerce",46.648074,0.363093,0,0,OGP:SA:10192,Europe/Paris,,OGP, +OGP:SP:20381,1,"Touffenet",46.582541,0.367784,0,0,OGP:SA:10043,Europe/Paris,,OGP, +OGP:SP:20382,1,"Touffenet",46.581916,0.368481,0,0,OGP:SA:10043,Europe/Paris,,OGP, +OGP:SP:20383,1,"Champlain",46.567884,0.389112,0,0,OGP:SA:10114,Europe/Paris,,OGP, +OGP:SP:20387,1,"Cité U",46.569186,0.382226,0,0,OGP:SA:10113,Europe/Paris,,OGP, +OGP:SP:20388,1,"Cité U",46.568995,0.383228,0,0,OGP:SA:10113,Europe/Paris,,OGP, +OGP:SP:20396,1,"Porte de Paris",46.590263,0.338895,0,0,OGP:SA:10012,Europe/Paris,,OGP, +OGP:SP:20397,1,"Porte de Paris",46.589694,0.338911,0,0,OGP:SA:10012,Europe/Paris,,OGP, +OGP:SP:20399,1,"Frères Morane",46.59082,0.322637,0,0,OGP:SA:10244,Europe/Paris,,OGP, +OGP:SP:20401,1,"Centre Equestre",46.565745,0.394892,0,0,OGP:SA:10194,Europe/Paris,,OGP, +OGP:SP:20402,1,"1ère Avenue",46.658192,0.36369,0,0,OGP:SA:10372,Europe/Paris,,OGP, +OGP:SP:20403,1,"Rosiers",46.570548,0.376385,0,0,OGP:SA:10196,Europe/Paris,,OGP, +OGP:SP:20404,1,"Rosiers",46.570811,0.375576,0,0,OGP:SA:10196,Europe/Paris,,OGP, +OGP:SP:20405,1,"Stade",46.572288,0.369338,0,0,OGP:SA:10051,Europe/Paris,,OGP, +OGP:SP:20406,1,"Pierre Levée",46.572837,0.366242,0,0,OGP:SA:10198,Europe/Paris,,OGP, +OGP:SP:20407,1,"Pierre Levée",46.572871,0.365756,0,0,OGP:SA:10198,Europe/Paris,,OGP, +OGP:SP:20408,1,"Petit Tour",46.572735,0.363308,0,0,OGP:SA:10199,Europe/Paris,,OGP, +OGP:SP:20409,1,"Petit Tour",46.572719,0.361779,0,0,OGP:SA:10199,Europe/Paris,,OGP, +OGP:SP:20410,1,"Confort Moderne",46.572636,0.360059,0,0,OGP:SA:10200,Europe/Paris,,OGP, +OGP:SP:20411,1,"Confort Moderne",46.572715,0.358945,0,0,OGP:SA:10200,Europe/Paris,,OGP, +OGP:SP:20412,1,"Châtonnerie",46.573791,0.356345,0,0,OGP:SA:10201,Europe/Paris,,OGP, +OGP:SP:20413,1,"Châtonnerie",46.57392,0.356169,0,0,OGP:SA:10201,Europe/Paris,,OGP, +OGP:SP:20414,1,"La Croix",46.575043,0.354781,0,0,OGP:SA:10202,Europe/Paris,,OGP, +OGP:SP:20415,1,"La Croix",46.575375,0.354596,0,0,OGP:SA:10202,Europe/Paris,,OGP, +OGP:SP:20416,1,"Pasteur",46.576962,0.352428,0,0,OGP:SA:10203,Europe/Paris,,OGP, +OGP:SP:20417,1,"Pasteur",46.576717,0.352793,0,0,OGP:SA:10203,Europe/Paris,,OGP, +OGP:SP:20420,1,"Breuil Mingot",46.589928,0.40522,0,0,OGP:SA:10204,Europe/Paris,,OGP, +OGP:SP:20421,1,"Breuil Mingot",46.589961,0.405166,0,0,OGP:SA:10204,Europe/Paris,,OGP, +OGP:SP:20422,1,"Bois Jallais",46.58749,0.398241,0,0,OGP:SA:10205,Europe/Paris,,OGP, +OGP:SP:20423,1,"Bois Jallais",46.587578,0.398577,0,0,OGP:SA:10205,Europe/Paris,,OGP, +OGP:SP:20424,1,"Route de Bonnes",46.585625,0.395011,0,0,OGP:SA:10206,Europe/Paris,,OGP, +OGP:SP:20425,1,"Route de Bonnes",46.585608,0.395077,0,0,OGP:SA:10206,Europe/Paris,,OGP, +OGP:SP:20426,1,"Petit Breuil",46.585079,0.386492,0,0,OGP:SA:10207,Europe/Paris,,OGP, +OGP:SP:20427,1,"Petit Breuil",46.585017,0.386546,0,0,OGP:SA:10207,Europe/Paris,,OGP, +OGP:SP:20428,1,"DDASS",46.575794,0.36853,0,0,OGP:SA:10208,Europe/Paris,,OGP, +OGP:SP:20429,1,"DDASS",46.57587,0.368786,0,0,OGP:SA:10208,Europe/Paris,,OGP, +OGP:SP:20430,1,"Catroux",46.575127,0.366524,0,0,OGP:SA:10209,Europe/Paris,,OGP, +OGP:SP:20431,1,"Catroux",46.575085,0.366356,0,0,OGP:SA:10209,Europe/Paris,,OGP, +OGP:SP:20432,1,"Cité Maître",46.57571,0.36447,0,0,OGP:SA:10210,Europe/Paris,,OGP, +OGP:SP:20433,1,"Cité Maître",46.575836,0.364555,0,0,OGP:SA:10210,Europe/Paris,,OGP, +OGP:SP:20434,1,"Dolmen",46.579033,0.36802,0,0,OGP:SA:10211,Europe/Paris,,OGP, +OGP:SP:20435,1,"Dolmen",46.578448,0.36814,0,0,OGP:SA:10211,Europe/Paris,,OGP, +OGP:SP:20436,1,"Brunettes",46.581077,0.365138,0,0,OGP:SA:10212,Europe/Paris,,OGP, +OGP:SP:20437,1,"Brunettes",46.581161,0.364989,0,0,OGP:SA:10212,Europe/Paris,,OGP, +OGP:SP:20444,1,"Pont Joubert",46.580131,0.352758,0,0,OGP:SA:10216,Europe/Paris,,OGP, +OGP:SP:20445,1,"Pont Joubert",46.579971,0.352818,0,0,OGP:SA:10216,Europe/Paris,,OGP, +OGP:SP:20446,1,"Milétrie Beauchant",46.555377,0.386599,0,0,OGP:SA:10217,Europe/Paris,,OGP, +OGP:SP:20447,1,"1ère Avenue",46.658281,0.363619,0,0,OGP:SA:10372,Europe/Paris,,OGP, +OGP:SP:20448,1,"Milétrie Rond-Point",46.557583,0.389195,0,0,OGP:SA:10218,Europe/Paris,,OGP, +OGP:SP:20449,1,"Milétrie Rond-Point",46.557659,0.389375,0,0,OGP:SA:10218,Europe/Paris,,OGP, +OGP:SP:20451,1,"Tour Jean Bernard",46.56055,0.386741,0,0,OGP:SA:10219,Europe/Paris,,OGP, +OGP:SP:20453,1,"Faculté Médecine",46.562995,0.381269,0,0,OGP:SA:10220,Europe/Paris,,OGP, +OGP:SP:20454,1,"Petits Champs",46.564312,0.380579,0,0,OGP:SA:10221,Europe/Paris,,OGP, +OGP:SP:20455,1,"Petits Champs",46.564129,0.381215,0,0,OGP:SA:10221,Europe/Paris,,OGP, +OGP:SP:20456,1,"Aubépines",46.565868,0.378049,0,0,OGP:SA:10222,Europe/Paris,,OGP, +OGP:SP:20457,1,"Aubépines",46.565627,0.378686,0,0,OGP:SA:10222,Europe/Paris,,OGP, +OGP:SP:20458,1,"Gymnase",46.5668,0.3765,0,0,OGP:SA:10223,Europe/Paris,,OGP, +OGP:SP:20459,1,"Gymnase",46.567279,0.376033,0,0,OGP:SA:10223,Europe/Paris,,OGP, +OGP:SP:20460,1,"Bosquets",46.568457,0.373887,0,0,OGP:SA:10224,Europe/Paris,,OGP, +OGP:SP:20461,1,"Bosquets",46.568564,0.37391,0,0,OGP:SA:10224,Europe/Paris,,OGP, +OGP:SP:20462,1,"Château d'eau",46.566184,0.317448,0,0,OGP:SA:10225,Europe/Paris,,OGP, +OGP:SP:20463,1,"Bellejouanne",46.567045,0.312433,0,0,OGP:SA:10226,Europe/Paris,,OGP, +OGP:SP:20465,1,"Auberge de Jeunesse",46.565627,0.312616,0,0,OGP:SA:10227,Europe/Paris,,OGP, +OGP:SP:20466,1,"Blaise Pascal",46.563377,0.311446,0,0,OGP:SA:10228,Europe/Paris,,OGP, +OGP:SP:20467,1,"Blaise Pascal",46.56353,0.311806,0,0,OGP:SA:10228,Europe/Paris,,OGP, +OGP:SP:20468,1,"Prés Mignons",46.562347,0.308676,0,0,OGP:SA:10229,Europe/Paris,,OGP, +OGP:SP:20469,1,"Prés Mignons",46.562457,0.309167,0,0,OGP:SA:10229,Europe/Paris,,OGP, +OGP:SP:20470,1,"Parc de Loisirs",46.665737,0.358206,0,0,OGP:SA:10373,Europe/Paris,,OGP, +OGP:SP:20471,1,"Pierre Loti",46.563068,0.307402,0,0,OGP:SA:10230,Europe/Paris,,OGP, +OGP:SP:20473,1,"Bois de Sapin",46.568447,0.3108,0,0,OGP:SA:10232,Europe/Paris,,OGP, +OGP:SP:20474,1,"Guillaume Poulle",46.569515,0.312385,0,0,OGP:SA:10233,Europe/Paris,,OGP, +OGP:SP:20475,1,"Petit Ruisseau",46.569842,0.314759,0,0,OGP:SA:10234,Europe/Paris,,OGP, +OGP:SP:20476,1,"Petites Vallées",46.569186,0.317666,0,0,OGP:SA:10235,Europe/Paris,,OGP, +OGP:SP:20479,1,"La Blaiserie",46.59212,0.320888,0,0,OGP:SA:10245,Europe/Paris,,OGP, +OGP:SP:20480,1,"La Blaiserie",46.592345,0.321282,0,0,OGP:SA:10245,Europe/Paris,,OGP, +OGP:SP:20481,1,"Dieudonné Costes",46.594948,0.327322,0,0,OGP:SA:10246,Europe/Paris,,OGP, +OGP:SP:20482,1,"Dieudonné Costes",46.594852,0.327104,0,0,OGP:SA:10246,Europe/Paris,,OGP, +OGP:SP:20483,1,"Tamaris",46.57766,0.315771,0,0,OGP:SA:10100,Europe/Paris,,OGP, +OGP:SP:20484,1,"Collège Rabelais",46.577933,0.317979,0,0,OGP:SA:10107,Europe/Paris,,OGP, +OGP:SP:20485,1,"Montmidi",46.578316,0.319985,0,0,OGP:SA:10108,Europe/Paris,,OGP, +OGP:SP:20486,1,"Montmidi",46.577927,0.317979,0,0,OGP:SA:10108,Europe/Paris,,OGP, +OGP:SP:20487,1,"Tamaris",46.57766,0.315798,0,0,OGP:SA:10100,Europe/Paris,,OGP, +OGP:SP:20493,1,"Les Lonjoies",46.559108,0.343505,0,0,OGP:SA:10248,Europe/Paris,,OGP, +OGP:SP:20494,1,"Les Lonjoies",46.559165,0.343328,0,0,OGP:SA:10248,Europe/Paris,,OGP, +OGP:SP:20495,1,"Cybellerie",46.555514,0.342096,0,0,OGP:SA:10249,Europe/Paris,,OGP, +OGP:SP:20496,1,"Cybellerie",46.555388,0.342193,0,0,OGP:SA:10249,Europe/Paris,,OGP, +OGP:SP:20497,1,"Irma Jouenne",46.553069,0.341901,0,0,OGP:SA:10250,Europe/Paris,,OGP, +OGP:SP:20498,1,"St-Benoît Bourg",46.549453,0.34183,0,0,OGP:SA:10251,Europe/Paris,,OGP, +OGP:SP:20499,1,"St-Benoît Bourg",46.5499,0.342422,0,0,OGP:SA:10251,Europe/Paris,,OGP, +OGP:SP:20500,1,"Bergeottes",46.54703,0.344573,0,0,OGP:SA:10252,Europe/Paris,,OGP, +OGP:SP:20501,1,"Bergeottes",46.547127,0.344359,0,0,OGP:SA:10252,Europe/Paris,,OGP, +OGP:SP:20504,1,"Charmilles",46.549995,0.348424,0,0,OGP:SA:10254,Europe/Paris,,OGP, +OGP:SP:20505,1,"Charmilles",46.549965,0.348347,0,0,OGP:SA:10254,Europe/Paris,,OGP, +OGP:SP:20506,1,"Les Buis",46.551506,0.347619,0,0,OGP:SA:10255,Europe/Paris,,OGP, +OGP:SP:20507,1,"Les Buis",46.551467,0.348275,0,0,OGP:SA:10255,Europe/Paris,,OGP, +OGP:SP:20508,1,"Saint-Benoit",46.552596,0.352333,0,0,OGP:SA:10256,Europe/Paris,,OGP, +OGP:SP:20509,1,"Saint-Benoit",46.552577,0.352229,0,0,OGP:SA:10256,Europe/Paris,,OGP, +OGP:SP:20510,1,"France Bloch Serazin",46.571308,0.387774,0,0,OGP:SA:10257,Europe/Paris,,OGP, +OGP:SP:20511,1,"Parc de Loisirs",46.66512,0.358096,0,0,OGP:SA:10373,Europe/Paris,,OGP, +OGP:SP:20512,1,"Breuil l'Abbesse",46.562877,0.408609,0,0,OGP:SA:10258,Europe/Paris,,OGP, +OGP:SP:20513,1,"Breuil l'Abbesse",46.563113,0.408731,0,0,OGP:SA:10258,Europe/Paris,,OGP, +OGP:SP:20514,1,"Buxerolles Rond-Point",46.611854,0.367622,0,0,OGP:SA:10259,Europe/Paris,,OGP, +OGP:SP:20515,1,"Rabelais",46.569957,0.379184,0,0,OGP:SA:10340,Europe/Paris,,OGP, +OGP:SP:20518,1,"Les Bizais",46.598323,0.364132,0,0,OGP:SA:10261,Europe/Paris,,OGP, +OGP:SP:20519,1,"Les Bizais",46.598328,0.364263,0,0,OGP:SA:10261,Europe/Paris,,OGP, +OGP:SP:20520,1,"Marat",46.586075,0.379622,0,0,OGP:SA:10262,Europe/Paris,,OGP, +OGP:SP:20521,1,"Marat",46.586491,0.378962,0,0,OGP:SA:10262,Europe/Paris,,OGP, +OGP:SP:20522,1,"St-Jacques de Compostelle",46.585147,0.381614,0,0,OGP:SA:10263,Europe/Paris,,OGP, +OGP:SP:20523,1,"St-Jacques de Compostelle",46.585296,0.381751,0,0,OGP:SA:10263,Europe/Paris,,OGP, +OGP:SP:20524,1,"Rue Milétrie",46.560394,0.37707,0,0,OGP:SA:10264,Europe/Paris,,OGP, +OGP:SP:20525,1,"Rue Milétrie",46.560454,0.377408,0,0,OGP:SA:10264,Europe/Paris,,OGP, +OGP:SP:20526,1,"La Rochefoucauld",46.561638,0.373941,0,0,OGP:SA:10265,Europe/Paris,,OGP, +OGP:SP:20527,1,"La Rochefoucauld",46.561863,0.371528,0,0,OGP:SA:10265,Europe/Paris,,OGP, +OGP:SP:20528,1,"Gibauderie",46.561934,0.36963,0,0,OGP:SA:10266,Europe/Paris,,OGP, +OGP:SP:20529,1,"Gibauderie",46.561939,0.369342,0,0,OGP:SA:10266,Europe/Paris,,OGP, +OGP:SP:20530,1,"Providence",46.56356,0.36741,0,0,OGP:SA:10267,Europe/Paris,,OGP, +OGP:SP:20531,1,"Providence",46.563541,0.367057,0,0,OGP:SA:10267,Europe/Paris,,OGP, +OGP:SP:20532,1,"Grand Large",46.563377,0.363381,0,0,OGP:SA:10268,Europe/Paris,,OGP, +OGP:SP:20533,1,"Grand Large",46.563479,0.364292,0,0,OGP:SA:10268,Europe/Paris,,OGP, +OGP:SP:20534,1,"Beaupré",46.563167,0.360505,0,0,OGP:SA:10269,Europe/Paris,,OGP, +OGP:SP:20535,1,"Beaupré",46.563091,0.361462,0,0,OGP:SA:10269,Europe/Paris,,OGP, +OGP:SP:20536,1,"Rocfer",46.563273,0.356922,0,0,OGP:SA:10270,Europe/Paris,,OGP, +OGP:SP:20537,1,"Rocfer",46.563212,0.357003,0,0,OGP:SA:10270,Europe/Paris,,OGP, +OGP:SP:20538,1,"Rapiettes",46.566177,0.35635,0,0,OGP:SA:10271,Europe/Paris,,OGP, +OGP:SP:20539,1,"Rapiettes",46.565623,0.356912,0,0,OGP:SA:10271,Europe/Paris,,OGP, +OGP:SP:20540,1,"Ronsard",46.570019,0.350559,0,0,OGP:SA:10272,Europe/Paris,,OGP, +OGP:SP:20541,1,"Ronsard",46.569561,0.350725,0,0,OGP:SA:10272,Europe/Paris,,OGP, +OGP:SP:20542,1,"Marie Curie",46.570109,0.347889,0,0,OGP:SA:10273,Europe/Paris,,OGP, +OGP:SP:20543,1,"Marie Curie",46.570194,0.348368,0,0,OGP:SA:10273,Europe/Paris,,OGP, +OGP:SP:20544,1,"Sablette",46.568145,0.343243,0,0,OGP:SA:10274,Europe/Paris,,OGP, +OGP:SP:20545,1,"Sablette",46.568111,0.34331,0,0,OGP:SA:10274,Europe/Paris,,OGP, +OGP:SP:20546,1,"Jean Gabin",46.554146,0.317375,0,0,OGP:SA:10275,Europe/Paris,,OGP, +OGP:SP:20547,1,"Jean Gabin",46.554301,0.317172,0,0,OGP:SA:10275,Europe/Paris,,OGP, +OGP:SP:20548,1,"Nimègue",46.591259,0.361704,0,0,OGP:SA:10093,Europe/Paris,,OGP, +OGP:SP:20549,1,"Descartes",46.56636,0.386973,0,0,OGP:SA:10276,Europe/Paris,,OGP, +OGP:SP:20550,1,"Descartes",46.566169,0.38689,0,0,OGP:SA:10276,Europe/Paris,,OGP, +OGP:SP:20551,1,"Pôle Technologique",46.564227,0.382778,0,0,OGP:SA:10277,Europe/Paris,,OGP, +OGP:SP:20552,1,"Pôle Technologique",46.564174,0.38278,0,0,OGP:SA:10277,Europe/Paris,,OGP, +OGP:SP:20553,1,"Faculté Médecine",46.562485,0.380222,0,0,OGP:SA:10220,Europe/Paris,,OGP, +OGP:SP:20554,1,"Haut Ensoulesse",46.638885,0.401295,0,0,OGP:SA:10309,Europe/Paris,,OGP, +OGP:SP:20557,1,"La Pépinière",46.593215,0.36307,0,0,OGP:SA:10095,Europe/Paris,,OGP, +OGP:SP:20558,1,"Jules Verne",46.59671,0.355976,0,0,OGP:SA:10278,Europe/Paris,,OGP, +OGP:SP:20561,1,"Vallée des Touches",46.560634,0.427788,0,0,OGP:SA:10280,Europe/Paris,,OGP, +OGP:SP:20562,1,"Vallée des Touches",46.560498,0.427767,0,0,OGP:SA:10280,Europe/Paris,,OGP, +OGP:SP:20563,1,"Oriollères",46.558129,0.426265,0,0,OGP:SA:10281,Europe/Paris,,OGP, +OGP:SP:20564,1,"Oriollères",46.558047,0.426248,0,0,OGP:SA:10281,Europe/Paris,,OGP, +OGP:SP:20565,1,"Pinaudières",46.555055,0.424429,0,0,OGP:SA:10282,Europe/Paris,,OGP, +OGP:SP:20566,1,"Pinaudières",46.555244,0.424578,0,0,OGP:SA:10282,Europe/Paris,,OGP, +OGP:SP:20567,1,"Sainte Jeanne",46.550482,0.41943,0,0,OGP:SA:10283,Europe/Paris,,OGP, +OGP:SP:20568,1,"Sainte Jeanne",46.550598,0.419702,0,0,OGP:SA:10283,Europe/Paris,,OGP, +OGP:SP:20569,1,"Eglise Mignaloux",46.544063,0.414457,0,0,OGP:SA:10284,Europe/Paris,,OGP, +OGP:SP:20570,1,"Eglise Mignaloux",46.544201,0.414621,0,0,OGP:SA:10284,Europe/Paris,,OGP, +OGP:SP:20571,1,"Bois Joli",46.548248,0.404729,0,0,OGP:SA:10285,Europe/Paris,,OGP, +OGP:SP:20572,1,"Bois Joli",46.548211,0.404872,0,0,OGP:SA:10285,Europe/Paris,,OGP, +OGP:SP:20573,1,"Les Davitaires",46.54614,0.406357,0,0,OGP:SA:10286,Europe/Paris,,OGP, +OGP:SP:20574,1,"Les Davitaires",46.546182,0.406289,0,0,OGP:SA:10286,Europe/Paris,,OGP, +OGP:SP:20577,1,"La Dinière",46.599594,0.373207,0,0,OGP:SA:10288,Europe/Paris,,OGP, +OGP:SP:20578,1,"La Dinière",46.600211,0.373858,0,0,OGP:SA:10288,Europe/Paris,,OGP, +OGP:SP:20579,1,"Tilleuls",46.603198,0.377099,0,0,OGP:SA:10289,Europe/Paris,,OGP, +OGP:SP:20580,1,"Tilleuls",46.602874,0.376722,0,0,OGP:SA:10289,Europe/Paris,,OGP, +OGP:SP:20583,1,"Vallée de Lion",46.618366,0.393849,0,0,OGP:SA:10291,Europe/Paris,,OGP, +OGP:SP:20584,1,"Vallée de Lion",46.618332,0.393994,0,0,OGP:SA:10291,Europe/Paris,,OGP, +OGP:SP:20585,1,"La Germonière",46.618023,0.398573,0,0,OGP:SA:10292,Europe/Paris,,OGP, +OGP:SP:20586,1,"La Germonière",46.617995,0.398195,0,0,OGP:SA:10292,Europe/Paris,,OGP, +OGP:SP:20587,1,"Barillon",46.618133,0.40432,0,0,OGP:SA:10293,Europe/Paris,,OGP, +OGP:SP:20588,1,"Barillon",46.618102,0.404583,0,0,OGP:SA:10293,Europe/Paris,,OGP, +OGP:SP:20589,1,"Bourbias 2",46.619652,0.408903,0,0,OGP:SA:10294,Europe/Paris,,OGP, +OGP:SP:20590,1,"Bourbias 2",46.61941,0.4086,0,0,OGP:SA:10294,Europe/Paris,,OGP, +OGP:SP:20591,1,"La Gravière",46.617916,0.418986,0,0,OGP:SA:10295,Europe/Paris,,OGP, +OGP:SP:20592,1,"La Gravière",46.617854,0.418742,0,0,OGP:SA:10295,Europe/Paris,,OGP, +OGP:SP:20595,1,"Mairie Montamisé",46.621062,0.42191,0,0,OGP:SA:10297,Europe/Paris,,OGP, +OGP:SP:20596,1,"Mairie Montamisé",46.621082,0.421949,0,0,OGP:SA:10297,Europe/Paris,,OGP, +OGP:SP:20599,1,"Rue du Quéroir",46.622016,0.427522,0,0,OGP:SA:10299,Europe/Paris,,OGP, +OGP:SP:20600,1,"Rue du Quéroir",46.622005,0.427578,0,0,OGP:SA:10299,Europe/Paris,,OGP, +OGP:SP:20603,1,"Tronc",46.622753,0.446713,0,0,OGP:SA:10301,Europe/Paris,,OGP, +OGP:SP:20604,1,"Tronc",46.622844,0.447259,0,0,OGP:SA:10301,Europe/Paris,,OGP, +OGP:SP:20605,1,"Montamisé-Charassé",46.627594,0.461838,0,0,OGP:SA:10302,Europe/Paris,,OGP, +OGP:SP:20608,1,"Les Rocs",46.587682,0.33323,0,0,OGP:SA:10303,Europe/Paris,,OGP, +OGP:SP:20610,1,"Louis Vierne",46.589924,0.333349,0,0,OGP:SA:10304,Europe/Paris,,OGP, +OGP:SP:20611,1,"Chaumont",46.557944,0.307124,0,0,OGP:SA:10305,Europe/Paris,,OGP, +OGP:SP:20612,1,"Chaumont",46.557915,0.307221,0,0,OGP:SA:10305,Europe/Paris,,OGP, +OGP:SP:20614,1,"Rue des Joncs",46.560229,0.310609,0,0,OGP:SA:10346,Europe/Paris,,OGP, +OGP:SP:20617,1,"Bas Ensoulesse",46.637726,0.397139,0,0,OGP:SA:10310,Europe/Paris,,OGP, +OGP:SP:20620,1,"Ensoulesse",46.634706,0.398876,0,0,OGP:SA:10311,Europe/Paris,,OGP, +OGP:SP:20622,1,"L'Abbaye",46.633231,0.40093,0,0,OGP:SA:10312,Europe/Paris,,OGP, +OGP:SP:20624,1,"Sarzec",46.623592,0.408608,0,0,OGP:SA:10313,Europe/Paris,,OGP, +OGP:SP:20626,1,"La Richardière",46.62001,0.402254,0,0,OGP:SA:10314,Europe/Paris,,OGP, +OGP:SP:20628,1,"Chiron Ferré",46.607123,0.405916,0,0,OGP:SA:10315,Europe/Paris,,OGP, +OGP:SP:20629,1,"Chiron Ferré",46.607109,0.406036,0,0,OGP:SA:10315,Europe/Paris,,OGP, +OGP:SP:20630,1,"Petit Nieul",46.611727,0.403359,0,0,OGP:SA:10316,Europe/Paris,,OGP, +OGP:SP:20631,1,"Petit Nieul",46.611789,0.403281,0,0,OGP:SA:10316,Europe/Paris,,OGP, +OGP:SP:20632,1,"Mervant",46.595852,0.404808,0,0,OGP:SA:10317,Europe/Paris,,OGP, +OGP:SP:20633,1,"Mervant",46.595986,0.404911,0,0,OGP:SA:10317,Europe/Paris,,OGP, +OGP:SP:20645,1,"Beauvoir",46.609582,0.263095,0,0,OGP:SA:10335,Europe/Paris,,OGP, +OGP:SP:20651,1,"Rabelais",46.569884,0.379253,0,0,OGP:SA:10340,Europe/Paris,,OGP, +OGP:SP:20652,1,"Le Parc",46.542973,0.411519,0,0,OGP:SA:10341,Europe/Paris,,OGP, +OGP:SP:20653,1,"Le Parc",46.543002,0.411673,0,0,OGP:SA:10341,Europe/Paris,,OGP, +OGP:SP:20656,1,"Mairie Mignaloux",46.541603,0.414704,0,0,OGP:SA:10344,Europe/Paris,,OGP, +OGP:SP:20657,1,"Mairie Mignaloux",46.541702,0.414712,0,0,OGP:SA:10344,Europe/Paris,,OGP, +OGP:SP:20658,1,"Les Chênes",46.543278,0.409899,0,0,OGP:SA:10345,Europe/Paris,,OGP, +OGP:SP:20659,1,"Les Chênes",46.543407,0.40971,0,0,OGP:SA:10345,Europe/Paris,,OGP, +OGP:SP:20661,1,"Rue des Joncs",46.560287,0.310724,0,0,OGP:SA:10346,Europe/Paris,,OGP, +OGP:SP:20664,1,"Le Relais",46.639484,0.358958,0,0,OGP:SA:10347,Europe/Paris,,OGP, +OGP:SP:20665,1,"Fontaine-Les Vignes",46.537708,0.276888,0,0,OGP:SA:10348,Europe/Paris,,OGP, +OGP:SP:20666,1,"Fontaine-Les Vignes",46.53797,0.277293,0,0,OGP:SA:10348,Europe/Paris,,OGP, +OGP:SP:20667,1,"Chaumont",46.537281,0.272457,0,0,OGP:SA:10349,Europe/Paris,,OGP, +OGP:SP:20668,1,"Chaumont",46.537342,0.272257,0,0,OGP:SA:10349,Europe/Paris,,OGP, +OGP:SP:20669,1,"Clos Bonnet",46.608854,0.266869,0,0,OGP:SA:10350,Europe/Paris,,OGP, +OGP:SP:20670,1,"Jacques Yves Cousteau",46.605305,0.275884,0,0,OGP:SA:10351,Europe/Paris,,OGP, +OGP:SP:20671,1,"Vouneuil-CREPS",46.580967,0.262963,0,0,OGP:SA:10352,Europe/Paris,,OGP, +OGP:SP:20673,1,"Migné Limbre",46.624217,0.272189,0,0,OGP:SA:10356,Europe/Paris,,OGP, +OGP:SP:20674,1,"Blossac",46.576256,0.33638,0,0,OGP:SA:10067,Europe/Paris,,OGP, +OGP:SP:20675,1,"Malakoff",46.52671,0.265193,0,0,OGP:SA:10353,Europe/Paris,,OGP, +OGP:SP:20676,1,"Malakoff",46.526738,0.265467,0,0,OGP:SA:10353,Europe/Paris,,OGP, +OGP:SP:20677,1,"Les Feuillants",46.526946,0.271002,0,0,OGP:SA:10354,Europe/Paris,,OGP, +OGP:SP:20678,1,"Les Feuillants",46.52689,0.270928,0,0,OGP:SA:10354,Europe/Paris,,OGP, +OGP:SP:20679,1,"Ecole de Limbre",46.625267,0.280716,0,0,OGP:SA:10357,Europe/Paris,,OGP, +OGP:SP:20681,1,"Beauvoir",46.609588,0.263212,0,0,OGP:SA:10335,Europe/Paris,,OGP, +OGP:SP:20685,1,"Les Douves",46.637059,0.405335,0,0,OGP:SA:10359,Europe/Paris,,OGP, +OGP:SP:20690,1,"Mairie Vouneuil",46.572608,0.273222,0,0,OGP:SA:10361,Europe/Paris,,OGP, +OGP:SP:20691,1,"Mairie Vouneuil",46.572741,0.273241,0,0,OGP:SA:10361,Europe/Paris,,OGP, +OGP:SP:20692,1,"Val de Boivre",46.568809,0.272589,0,0,OGP:SA:10362,Europe/Paris,,OGP, +OGP:SP:20693,1,"Val de Boivre",46.568919,0.272687,0,0,OGP:SA:10362,Europe/Paris,,OGP, +OGP:SP:20694,1,"La Gouraudière",46.567692,0.273311,0,0,OGP:SA:10363,Europe/Paris,,OGP, +OGP:SP:20695,1,"La Gouraudière",46.567787,0.273241,0,0,OGP:SA:10363,Europe/Paris,,OGP, +OGP:SP:20696,1,"La Grand Vallée",46.56293,0.278552,0,0,OGP:SA:10364,Europe/Paris,,OGP, +OGP:SP:20697,1,"La Grand Vallée",46.562556,0.279146,0,0,OGP:SA:10364,Europe/Paris,,OGP, +OGP:SP:20698,1,"La Gannerie",46.560718,0.284737,0,0,OGP:SA:10365,Europe/Paris,,OGP, +OGP:SP:20699,1,"La Gannerie",46.560841,0.284901,0,0,OGP:SA:10365,Europe/Paris,,OGP, +OGP:SP:20702,1,"Pré Oté",46.558453,0.288729,0,0,OGP:SA:10367,Europe/Paris,,OGP, +OGP:SP:20703,1,"Pré Oté",46.558661,0.288849,0,0,OGP:SA:10367,Europe/Paris,,OGP, +OGP:SP:20704,1,"Nelson Mandela",46.588298,0.371609,0,0,OGP:SA:10375,Europe/Paris,,OGP, +OGP:SP:20705,1,"Nelson Mandela",46.58874,0.371001,0,0,OGP:SA:10375,Europe/Paris,,OGP, +OGP:SP:20706,1,"Anatole France",46.577134,0.347382,0,0,OGP:SA:10376,Europe/Paris,,OGP, +OGP:SP:20710,1,"Téléport 2",46.662857,0.358306,0,0,OGP:SA:10377,Europe/Paris,,OGP, +OGP:SP:20711,1,"Téléport 2",46.662815,0.358453,0,0,OGP:SA:10377,Europe/Paris,,OGP, +OGP:SP:20712,1,"Av. Paix",46.58827,0.335453,0,0,OGP:SA:10378,Europe/Paris,,OGP, +OGP:SP:20716,1,"Les Roitelets",46.573073,0.270834,0,0,OGP:SA:10379,Europe/Paris,,OGP, +OGP:SP:20717,1,"Les Roitelets",46.573008,0.271581,0,0,OGP:SA:10379,Europe/Paris,,OGP, +OGP:SP:20718,1,"Vouneuil Boivre",46.577266,0.272453,0,0,OGP:SA:10380,Europe/Paris,,OGP, +OGP:SP:20719,1,"Vouneuil Boivre",46.577128,0.272498,0,0,OGP:SA:10380,Europe/Paris,,OGP, +OGP:SP:20720,1,"Deux Mazais",46.569603,0.29848,0,0,OGP:SA:10381,Europe/Paris,,OGP, +OGP:SP:20721,1,"Deux Mazais",46.569485,0.298435,0,0,OGP:SA:10381,Europe/Paris,,OGP, +OGP:SP:20722,1,"Jupiter",46.537543,0.268396,0,0,OGP:SA:10382,Europe/Paris,,OGP, +OGP:SP:20723,1,"Jupiter",46.537562,0.268434,0,0,OGP:SA:10382,Europe/Paris,,OGP, +OGP:SP:20724,1,"Rue du stade",46.532916,0.264751,0,0,OGP:SA:10383,Europe/Paris,,OGP, +OGP:SP:20725,1,"Rue du stade",46.532291,0.263869,0,0,OGP:SA:10383,Europe/Paris,,OGP, +OGP:SP:20726,1,"Baudry",46.534142,0.261046,0,0,OGP:SA:10384,Europe/Paris,,OGP, +OGP:SP:20727,1,"Baudry",46.534061,0.260738,0,0,OGP:SA:10384,Europe/Paris,,OGP, +OGP:SP:20728,1,"Liberté",46.534235,0.259411,0,0,OGP:SA:10385,Europe/Paris,,OGP, +OGP:SP:20729,1,"Liberté",46.53414,0.259533,0,0,OGP:SA:10385,Europe/Paris,,OGP, +OGP:SP:20730,1,"Les Lilas",46.530796,0.262415,0,0,OGP:SA:10386,Europe/Paris,,OGP, +OGP:SP:20731,1,"Les Lilas",46.530754,0.262471,0,0,OGP:SA:10386,Europe/Paris,,OGP, +OGP:SP:20732,1,"Fontaine Aquitaine",46.530414,0.278976,0,0,OGP:SA:10387,Europe/Paris,,OGP, +OGP:SP:20733,1,"Fontaine Aquitaine",46.530385,0.279079,0,0,OGP:SA:10387,Europe/Paris,,OGP, +OGP:SP:20734,1,"Clos Bonnet",46.608994,0.2666,0,0,OGP:SA:10350,Europe/Paris,,OGP, +OGP:SP:20735,1,"Tamaris",46.607103,0.271807,0,0,OGP:SA:10388,Europe/Paris,,OGP, +OGP:SP:20736,1,"Tamaris",46.60703,0.271797,0,0,OGP:SA:10388,Europe/Paris,,OGP, +OGP:SP:20737,1,"Jacques Yves Cousteau",46.605392,0.275878,0,0,OGP:SA:10351,Europe/Paris,,OGP, +OGP:SP:20738,1,"Le Petit Bois",46.603085,0.283314,0,0,OGP:SA:10389,Europe/Paris,,OGP, +OGP:SP:20739,1,"Le Petit Bois",46.603512,0.282366,0,0,OGP:SA:10389,Europe/Paris,,OGP, +OGP:SP:20740,1,"La Cadoue Larnay",46.598717,0.302978,0,0,OGP:SA:10390,Europe/Paris,,OGP, +OGP:SP:20741,1,"La Cadoue Larnay",46.598643,0.302149,0,0,OGP:SA:10390,Europe/Paris,,OGP, +OGP:SP:20746,1,"Rue du Moulin",46.630093,0.279781,0,0,OGP:SA:10391,Europe/Paris,,OGP, +OGP:SP:20747,1,"Les Boisses",46.624029,0.270936,0,0,OGP:SA:10392,Europe/Paris,,OGP, +OGP:SP:20748,1,"Moulinet",46.617171,0.280492,0,0,OGP:SA:10393,Europe/Paris,,OGP, +OGP:SP:20749,1,"Moulinet",46.617176,0.280637,0,0,OGP:SA:10393,Europe/Paris,,OGP, +OGP:SP:20750,1,"Les Tailles",46.612377,0.279826,0,0,OGP:SA:10394,Europe/Paris,,OGP, +OGP:SP:20751,1,"Les Tailles",46.612406,0.279922,0,0,OGP:SA:10394,Europe/Paris,,OGP, +OGP:SP:20752,1,"Rue du Temps Perdu",46.628734,0.334025,0,0,OGP:SA:10395,Europe/Paris,,OGP, +OGP:SP:20753,1,"Rue du Temps Perdu",46.629035,0.334867,0,0,OGP:SA:10395,Europe/Paris,,OGP, +OGP:SP:20754,1,"Lavaud",46.629136,0.331957,0,0,OGP:SA:10396,Europe/Paris,,OGP, +OGP:SP:20755,1,"Lavaud",46.629063,0.331753,0,0,OGP:SA:10396,Europe/Paris,,OGP, +OGP:SP:20756,1,"Pont Chardonchamp",46.631779,0.332946,0,0,OGP:SA:10397,Europe/Paris,,OGP, +OGP:SP:20757,1,"Pont Chardonchamp",46.63253,0.332942,0,0,OGP:SA:10397,Europe/Paris,,OGP, +OGP:SP:20758,1,"Nanteuil",46.634002,0.330019,0,0,OGP:SA:10398,Europe/Paris,,OGP, +OGP:SP:20759,1,"Nanteuil",46.633915,0.329797,0,0,OGP:SA:10398,Europe/Paris,,OGP, +OGP:SP:20760,1,"Migné Rochereaux",46.632747,0.32377,0,0,OGP:SA:10399,Europe/Paris,,OGP, +OGP:SP:20761,1,"Migné Rochereaux",46.632668,0.324021,0,0,OGP:SA:10399,Europe/Paris,,OGP, +OGP:SP:20764,1,"Tourmaline",46.628872,0.31824,0,0,OGP:SA:10401,Europe/Paris,,OGP, +OGP:SP:20765,1,"Tourmaline",46.628661,0.318066,0,0,OGP:SA:10401,Europe/Paris,,OGP, +OGP:SP:20766,1,"Rue du Centre",46.626862,0.31074,0,0,OGP:SA:10402,Europe/Paris,,OGP, +OGP:SP:20767,1,"Rue du Centre",46.626803,0.311201,0,0,OGP:SA:10402,Europe/Paris,,OGP, +OGP:SP:20768,1,"République",46.626541,0.306493,0,0,OGP:SA:10403,Europe/Paris,,OGP, +OGP:SP:20769,1,"République",46.626559,0.306545,0,0,OGP:SA:10403,Europe/Paris,,OGP, +OGP:SP:20770,1,"La Garenne",46.623142,0.309028,0,0,OGP:SA:10404,Europe/Paris,,OGP, +OGP:SP:20771,1,"La Garenne",46.623241,0.309037,0,0,OGP:SA:10404,Europe/Paris,,OGP, +OGP:SP:20772,1,"Stade Auxances",46.61937,0.311777,0,0,OGP:SA:10405,Europe/Paris,,OGP, +OGP:SP:20773,1,"Stade Auxances",46.619453,0.311865,0,0,OGP:SA:10405,Europe/Paris,,OGP, +OGP:SP:20778,1,"La Bugellerie",46.602955,0.323334,0,0,OGP:SA:10408,Europe/Paris,,OGP, +OGP:SP:20779,1,"La Bugellerie",46.603535,0.323122,0,0,OGP:SA:10408,Europe/Paris,,OGP, +OGP:SP:20782,1,"Cussec",46.593792,0.405474,0,0,OGP:SA:10409,Europe/Paris,,OGP, +OGP:SP:20783,1,"Cussec",46.593713,0.405575,0,0,OGP:SA:10409,Europe/Paris,,OGP, +OGP:SP:20784,1,"La Hune",46.557589,0.34377,0,0,OGP:SA:10410,Europe/Paris,,OGP, +OGP:SP:20785,1,"La Hune",46.557377,0.343494,0,0,OGP:SA:10410,Europe/Paris,,OGP, +OGP:SP:20790,1,"La Richardière",46.619953,0.402239,0,0,OGP:SA:10314,Europe/Paris,,OGP, +OGP:SP:20791,1,"Sarzec",46.623443,0.408613,0,0,OGP:SA:10313,Europe/Paris,,OGP, +OGP:SP:20792,1,"L'Abbaye",46.633167,0.401025,0,0,OGP:SA:10312,Europe/Paris,,OGP, +OGP:SP:20793,1,"Ensoulesse",46.634835,0.398799,0,0,OGP:SA:10311,Europe/Paris,,OGP, +OGP:SP:20794,1,"Bas Ensoulesse",46.637889,0.397311,0,0,OGP:SA:10310,Europe/Paris,,OGP, +OGP:SP:20795,1,"Haut Ensoulesse",46.639038,0.4011,0,0,OGP:SA:10309,Europe/Paris,,OGP, +OGP:SP:20796,1,"Les Douves",46.63703,0.4051,0,0,OGP:SA:10359,Europe/Paris,,OGP, +OGP:SP:20797,1,"Les Rataudes",46.562491,0.306474,0,0,OGP:SA:10413,Europe/Paris,,OGP, +OGP:SP:20798,1,"Les Rataudes",46.562336,0.306692,0,0,OGP:SA:10413,Europe/Paris,,OGP, +OGP:SP:20802,1,"Actiparc Tardiverie",46.601497,0.305211,0,0,OGP:SA:10415,Europe/Paris,,OGP, +OGP:SP:20803,1,"Actiparc Tardiverie",46.601686,0.305165,0,0,OGP:SA:10415,Europe/Paris,,OGP, +OGP:SP:20805,1,"Merles Noirs",46.568274,0.30108,0,0,OGP:SA:10417,Europe/Paris,,OGP, +OGP:SP:20806,1,"Merles Noirs",46.568153,0.301231,0,0,OGP:SA:10417,Europe/Paris,,OGP, +OGP:SP:20809,1,"Champlain",46.568142,0.389218,0,0,OGP:SA:10114,Europe/Paris,,OGP, +OGP:SP:20817,1,"Pourettes",46.621284,0.275697,0,0,OGP:SA:10422,Europe/Paris,,OGP, +OGP:SP:20818,1,"Grotte des Druides",46.586665,0.335148,0,0,OGP:SA:10423,Europe/Paris,,OGP, +OGP:SP:20819,1,"Grotte des Druides",46.586607,0.335222,0,0,OGP:SA:10423,Europe/Paris,,OGP, +OGP:SP:20825,1,"Chardonchamp",46.626956,0.339446,0,0,OGP:SA:10428,Europe/Paris,,OGP, +OGP:SP:20826,1,"Chardonchamp",46.62597,0.342349,0,0,OGP:SA:10428,Europe/Paris,,OGP, +OGP:SP:20837,1,"Maison des Etudiants",46.568075,0.386888,0,0,OGP:SA:10434,Europe/Paris,,OGP, +OGP:SP:20838,1,"Maison des Etudiants",46.568125,0.386853,0,0,OGP:SA:10434,Europe/Paris,,OGP, +OGP:SP:20839,1,"Milétrie Laborit",46.554305,0.39523,0,0,OGP:SA:10435,Europe/Paris,,OGP, +OGP:SP:20840,1,"Milétrie Laborit",46.553989,0.394083,0,0,OGP:SA:10435,Europe/Paris,,OGP, +OGP:SP:20841,1,"Curé Jacquet",46.560654,0.408758,0,0,OGP:SA:10436,Europe/Paris,,OGP, +OGP:SP:20842,1,"Curé Jacquet",46.560509,0.408525,0,0,OGP:SA:10436,Europe/Paris,,OGP, +OGP:SP:20843,1,"Sainte Croix",46.5582,0.402085,0,0,OGP:SA:10437,Europe/Paris,,OGP, +OGP:SP:20844,1,"Sainte Croix",46.558109,0.402434,0,0,OGP:SA:10437,Europe/Paris,,OGP, +OGP:SP:20845,1,"Sachères",46.552002,0.409897,0,0,OGP:SA:10438,Europe/Paris,,OGP, +OGP:SP:20846,1,"Sachères",46.552117,0.409617,0,0,OGP:SA:10438,Europe/Paris,,OGP, +OGP:SP:20847,1,"Mignaloux Aquitaine",46.537055,0.415665,0,0,OGP:SA:10439,Europe/Paris,,OGP, +OGP:SP:20848,1,"Mignaloux Aquitaine",46.53736,0.415702,0,0,OGP:SA:10439,Europe/Paris,,OGP, +OGP:SP:20849,1,"Le Mars",46.533603,0.416389,0,0,OGP:SA:10440,Europe/Paris,,OGP, +OGP:SP:20850,1,"Le Mars",46.533709,0.416372,0,0,OGP:SA:10440,Europe/Paris,,OGP, +OGP:SP:20851,1,"La Rouartinière",46.530845,0.417578,0,0,OGP:SA:10441,Europe/Paris,,OGP, +OGP:SP:20852,1,"La Rouartinière",46.531157,0.417497,0,0,OGP:SA:10441,Europe/Paris,,OGP, +OGP:SP:20853,1,"Gros Puits",46.528365,0.418296,0,0,OGP:SA:10442,Europe/Paris,,OGP, +OGP:SP:20854,1,"Gros Puits",46.528449,0.418408,0,0,OGP:SA:10442,Europe/Paris,,OGP, +OGP:SP:20857,1,"Mignaloux Gare",46.526037,0.411204,0,0,OGP:SA:10444,Europe/Paris,,OGP, +OGP:SP:20865,1,"Les Roches de Vert",46.661816,0.381118,0,0,OGP:SA:10450,Europe/Paris,,OGP, +OGP:SP:20866,1,"Les Roches de Vert",46.661836,0.381191,0,0,OGP:SA:10450,Europe/Paris,,OGP, +OGP:SP:20867,1,"Vercors",46.528072,0.273596,0,0,OGP:SA:10451,Europe/Paris,,OGP, +OGP:SP:20868,1,"Vercors",46.527988,0.273822,0,0,OGP:SA:10451,Europe/Paris,,OGP, +OGP:SP:20871,1,"Milétrie Claudel",46.554645,0.388892,0,0,OGP:SA:10453,Europe/Paris,,OGP, +OGP:SP:20872,1,"Milétrie Claudel",46.554634,0.38871,0,0,OGP:SA:10453,Europe/Paris,,OGP, +OGP:SP:20873,1,"Av. Temps Modernes",46.662914,0.372688,0,0,OGP:SA:10454,Europe/Paris,,OGP, +OGP:SP:20874,1,"Av. Temps Modernes",46.662922,0.372842,0,0,OGP:SA:10454,Europe/Paris,,OGP, +OGP:SP:20875,1,"Gare du Futuroscope",46.669308,0.377276,0,0,OGP:SA:10455,Europe/Paris,,OGP, +OGP:SP:20877,1,"Parc Futuroscope",46.666213,0.368352,0,0,OGP:SA:10456,Europe/Paris,,OGP, +OGP:SP:20878,1,"Parc Futuroscope",46.666086,0.368526,0,0,OGP:SA:10456,Europe/Paris,,OGP, +OGP:SP:20881,1,"Châlons",46.583064,0.381114,0,0,OGP:SA:10458,Europe/Paris,,OGP, +OGP:SP:20882,1,"Châlons",46.583055,0.381226,0,0,OGP:SA:10458,Europe/Paris,,OGP, +OGP:SP:20883,1,"Frères Lumière",46.609791,0.364871,0,0,OGP:SA:10459,Europe/Paris,,OGP, +OGP:SP:20884,1,"Frères Lumière",46.609653,0.364748,0,0,OGP:SA:10459,Europe/Paris,,OGP, +OGP:SP:20885,1,"Buxerolles Rond-Point",46.612003,0.366647,0,0,OGP:SA:10259,Europe/Paris,,OGP, +OGP:SP:20886,1,"Biard Centre",46.576256,0.3074,0,0,OGP:SA:10104,Europe/Paris,,OGP, +OGP:SP:20889,1,"Jardin des Plantes",46.588763,0.347712,0,0,OGP:SA:10014,Europe/Paris,,OGP, +OGP:SP:20890,1,"Abbé Frémont",46.590339,0.341401,0,0,OGP:SA:10023,Europe/Paris,,OGP, +OGP:SP:20896,1,"Botte Molle",46.56942,0.343102,0,0,OGP:SA:10460,Europe/Paris,,OGP, +OGP:SP:20897,1,"Botte Molle",46.569442,0.343154,0,0,OGP:SA:10460,Europe/Paris,,OGP, +OGP:SP:20900,1,"Le Cherpe",46.546332,0.347115,0,0,OGP:SA:10462,Europe/Paris,,OGP, +OGP:SP:20901,1,"Le Cherpe",46.546188,0.347878,0,0,OGP:SA:10462,Europe/Paris,,OGP, +OGP:SP:20902,1,"Anatole France",46.577061,0.347414,0,0,OGP:SA:10376,Europe/Paris,,OGP, +OGP:SP:20904,1,"Milétrie Beauchant",46.555584,0.386537,0,0,OGP:SA:10217,Europe/Paris,,OGP, +OGP:SP:20905,1,"France 3",46.592888,0.357024,0,0,OGP:SA:10096,Europe/Paris,,OGP, +OGP:SP:20906,1,"François Mitterrand",46.597805,0.368196,0,0,OGP:SA:10463,Europe/Paris,,OGP, +OGP:SP:20907,1,"François Mitterrand",46.598038,0.367387,0,0,OGP:SA:10463,Europe/Paris,,OGP, +OGP:SP:20911,1,"Place Mozart",46.599246,0.354598,0,0,OGP:SA:10465,Europe/Paris,,OGP, +OGP:SP:20912,1,"Place Mozart",46.5998,0.35397,0,0,OGP:SA:10465,Europe/Paris,,OGP, +OGP:SP:20915,1,"Jules Verne",46.596412,0.355874,0,0,OGP:SA:10278,Europe/Paris,,OGP, +OGP:SP:20916,1,"Acadie",46.570019,0.352127,0,0,OGP:SA:10467,Europe/Paris,,OGP, +OGP:SP:20917,1,"Acadie",46.569961,0.352063,0,0,OGP:SA:10467,Europe/Paris,,OGP, +OGP:SP:20918,1,"Av. de l'Europe",46.659798,0.370586,0,0,OGP:SA:10468,Europe/Paris,,OGP, +OGP:SP:20919,1,"Av. de l'Europe",46.659934,0.370252,0,0,OGP:SA:10468,Europe/Paris,,OGP, +OGP:SP:20920,1,"Alfred de Vigny",46.598731,0.361485,0,0,OGP:SA:10469,Europe/Paris,,OGP, +OGP:SP:20921,1,"Alfred de Vigny",46.598751,0.361524,0,0,OGP:SA:10469,Europe/Paris,,OGP, +OGP:SP:20925,1,"Couronneries",46.594115,0.367644,0,0,OGP:SA:10457,Europe/Paris,,OGP, +OGP:SP:20926,1,"Couronneries",46.59409,0.367709,0,0,OGP:SA:10457,Europe/Paris,,OGP, +OGP:SP:20927,1,"Pôle Formation Santé",46.556457,0.384548,0,0,OGP:SA:10471,Europe/Paris,,OGP, +OGP:SP:20930,1,"Pinel",46.554951,0.390851,0,0,OGP:SA:10472,Europe/Paris,,OGP, +OGP:SP:20931,1,"Pinel",46.55481,0.391,0,0,OGP:SA:10472,Europe/Paris,,OGP, +OGP:SP:20932,1,"Buxerolles Mairie",46.598328,0.352194,0,0,OGP:SA:10084,Europe/Paris,,OGP, +OGP:SP:20938,1,"Les Bleuets",46.548194,0.326483,0,0,OGP:SA:10475,Europe/Paris,,OGP, +OGP:SP:20939,1,"Les Bleuets",46.54818,0.3266,0,0,OGP:SA:10475,Europe/Paris,,OGP, +OGP:SP:20940,1,"Coquelicots",46.549571,0.327133,0,0,OGP:SA:10476,Europe/Paris,,OGP, +OGP:SP:20941,1,"Coquelicots",46.549582,0.327197,0,0,OGP:SA:10476,Europe/Paris,,OGP, +OGP:SP:20942,1,"Hauts de la Chaume",46.550311,0.32882,0,0,OGP:SA:10477,Europe/Paris,,OGP, +OGP:SP:20943,1,"Hauts de la Chaume",46.55019,0.329361,0,0,OGP:SA:10477,Europe/Paris,,OGP, +OGP:SP:20944,1,"Grand Maison",46.567138,0.352605,0,0,OGP:SA:10057,Europe/Paris,,OGP, +OGP:SP:20945,1,"Grand Maison",46.567005,0.352795,0,0,OGP:SA:10057,Europe/Paris,,OGP, +OGP:SP:20949,1,"Mairie Fontaine",46.534461,0.266513,0,0,OGP:SA:10480,Europe/Paris,,OGP, +OGP:SP:20950,1,"Mairie Fontaine",46.534489,0.266577,0,0,OGP:SA:10480,Europe/Paris,,OGP, +OGP:SP:20951,1,"Le Grand Mazais",46.566535,0.296765,0,0,OGP:SA:10481,Europe/Paris,,OGP, +OGP:SP:20952,1,"Le Grand Mazais",46.566498,0.296727,0,0,OGP:SA:10481,Europe/Paris,,OGP, +OGP:SP:20953,1,"Les Castors",46.594856,0.353702,0,0,OGP:SA:10482,Europe/Paris,,OGP, +OGP:SP:20954,1,"Les Castors",46.594917,0.353972,0,0,OGP:SA:10482,Europe/Paris,,OGP, +OGP:SP:20955,1,"Hoche",46.587594,0.374636,0,0,OGP:SA:10170,Europe/Paris,,OGP, +OGP:SP:20959,1,"Pont Neuf",46.57793,0.350252,0,0,OGP:SA:10155,Europe/Paris,,OGP, +OGP:SP:20960,1,"Opales",46.631176,0.322716,0,0,OGP:SA:10400,Europe/Paris,,OGP, +OGP:SP:20961,1,"Mérigotte",46.560841,0.342932,0,0,OGP:SA:10483,Europe/Paris,,OGP, +OGP:SP:20962,1,"Mérigotte",46.561047,0.343023,0,0,OGP:SA:10483,Europe/Paris,,OGP, +OGP:SP:20963,1,"Les 3 Barreaux",46.621952,0.432225,0,0,OGP:SA:10484,Europe/Paris,,OGP, +OGP:SP:20964,1,"Les 3 Barreaux",46.621985,0.432157,0,0,OGP:SA:10484,Europe/Paris,,OGP, +OGP:SP:20968,1,"Place Mozart",46.599753,0.353934,0,0,OGP:SA:10465,Europe/Paris,,OGP, +OGP:SP:20969,1,"Centre Commercial",46.666736,0.369896,0,0,OGP:SA:10486,Europe/Paris,,OGP, +OGP:SP:20970,1,"Centre Commercial",46.66689,0.369263,0,0,OGP:SA:10486,Europe/Paris,,OGP, +OGP:SP:20971,1,"Rond-Point",46.667236,0.375892,0,0,OGP:SA:10487,Europe/Paris,,OGP, +OGP:SP:20972,1,"Rond-Point",46.666888,0.376066,0,0,OGP:SA:10487,Europe/Paris,,OGP, +OGP:SP:20976,1,"Foyer Edith Augustin",46.592647,0.322247,0,0,OGP:SA:10488,Europe/Paris,,OGP, +OGP:SP:20982,1,"Beausoleil",46.652931,0.36941,0,0,OGP:SA:10184,Europe/Paris,,OGP, +OGP:SP:20983,1,"Beausoleil",46.652742,0.369838,0,0,OGP:SA:10184,Europe/Paris,,OGP, +OGP:SP:20984,1,"La Berlanderie",46.545501,0.28902,0,0,OGP:SA:10491,Europe/Paris,,OGP, +OGP:SP:20985,1,"La Berlanderie",46.545521,0.28898,0,0,OGP:SA:10491,Europe/Paris,,OGP, +OGP:SP:20986,1,"Croutelle les Hauts",46.543208,0.289187,0,0,OGP:SA:10492,Europe/Paris,,OGP, +OGP:SP:20988,1,"Porte Madeleine",46.573123,0.32829,0,0,OGP:SA:10072,Europe/Paris,,OGP, +OGP:SP:20991,1,"Petit Bonneveau",46.578153,0.338967,0,0,OGP:SA:10494,Europe/Paris,,OGP, +OGP:SP:20998,1,"Milétrie Patis",46.555635,0.39473,0,0,OGP:SA:10498,Europe/Paris,,OGP, +OGP:SP:21003,1,"Gustave Eiffel",46.659126,0.361014,0,0,OGP:SA:10501,Europe/Paris,,OGP, +OGP:SP:21004,1,"Gustave Eiffel",46.659213,0.360891,0,0,OGP:SA:10501,Europe/Paris,,OGP, +OGP:SP:21009,1,"Chandon",46.649298,0.369719,0,0,OGP:SA:10504,Europe/Paris,,OGP, +OGP:SP:21012,1,"Milétrie Patis",46.555726,0.394724,0,0,OGP:SA:10498,Europe/Paris,,OGP, +OGP:SP:21031,1,"Margouillet",46.565567,0.401893,0,0,OGP:SA:10518,Europe/Paris,,OGP, +OGP:SP:21032,1,"Margouillet",46.565438,0.401857,0,0,OGP:SA:10518,Europe/Paris,,OGP, +OGP:SP:21036,1,"Bailly",46.591515,0.384326,0,0,OGP:SA:10521,Europe/Paris,,OGP, +OGP:SP:21037,1,"Bailly",46.591662,0.384411,0,0,OGP:SA:10521,Europe/Paris,,OGP, +OGP:SP:21040,1,"Martigny",46.658535,0.338156,0,0,OGP:SA:10523,Europe/Paris,,OGP, +OGP:SP:21041,1,"Martigny",46.658714,0.338397,0,0,OGP:SA:10523,Europe/Paris,,OGP, +OGP:SP:21043,1,"Philambins",46.640987,0.355192,0,0,OGP:SA:10524,Europe/Paris,,OGP, +OGP:SP:21044,1,"Preuilly",46.640523,0.354982,0,0,OGP:SA:10525,Europe/Paris,,OGP, +OGP:SP:21045,1,"Preuilly",46.640397,0.355318,0,0,OGP:SA:10525,Europe/Paris,,OGP, +OGP:SP:21046,1,"Fontaine",46.647128,0.382626,0,0,OGP:SA:10526,Europe/Paris,,OGP, +OGP:SP:21047,1,"Fontaine",46.646512,0.382612,0,0,OGP:SA:10526,Europe/Paris,,OGP, +OGP:SP:21048,1,"Rue de la Barre",46.610981,0.35553,0,0,OGP:SA:10527,Europe/Paris,,OGP, +OGP:SP:21049,1,"Rue de la Barre",46.611449,0.355878,0,0,OGP:SA:10527,Europe/Paris,,OGP, +OGP:SP:21050,1,"Berges du Clain",46.613438,0.357152,0,0,OGP:SA:10528,Europe/Paris,,OGP, +OGP:SP:21051,1,"Berges du Clain",46.613582,0.357244,0,0,OGP:SA:10528,Europe/Paris,,OGP, +OGP:SP:21052,1,"Clotet",46.617688,0.3592,0,0,OGP:SA:10529,Europe/Paris,,OGP, +OGP:SP:21053,1,"Clotet",46.617539,0.359088,0,0,OGP:SA:10529,Europe/Paris,,OGP, +OGP:SP:21054,1,"Route de Clotet",46.620812,0.361161,0,0,OGP:SA:10530,Europe/Paris,,OGP, +OGP:SP:21055,1,"Route de Clotet",46.620499,0.360933,0,0,OGP:SA:10530,Europe/Paris,,OGP, +OGP:SP:21056,1,"Laiterie",46.623634,0.362929,0,0,OGP:SA:10531,Europe/Paris,,OGP, +OGP:SP:21057,1,"Laiterie",46.623054,0.362599,0,0,OGP:SA:10531,Europe/Paris,,OGP, +OGP:SP:21058,1,"Bonnillet",46.631345,0.369234,0,0,OGP:SA:10532,Europe/Paris,,OGP, +OGP:SP:21059,1,"Bonnillet",46.630243,0.369196,0,0,OGP:SA:10532,Europe/Paris,,OGP, +OGP:SP:21060,1,"L'Etang",46.644514,0.380493,0,0,OGP:SA:10533,Europe/Paris,,OGP, +OGP:SP:21061,1,"L'Etang",46.644511,0.380581,0,0,OGP:SA:10533,Europe/Paris,,OGP, +OGP:SP:21062,1,"Chandon",46.649025,0.369474,0,0,OGP:SA:10504,Europe/Paris,,OGP, +OGP:SP:21063,1,"Rond-Point Charlemagne",46.646323,0.3683,0,0,OGP:SA:10178,Europe/Paris,,OGP, +OGP:SP:21068,1,"Route de Béruges",46.536647,0.257514,0,0,OGP:SA:10536,Europe/Paris,,OGP, +OGP:SP:21069,1,"Route de Béruges",46.536977,0.257813,0,0,OGP:SA:10536,Europe/Paris,,OGP, +OGP:SP:21070,1,"La Bruère",46.538359,0.253912,0,0,OGP:SA:10537,Europe/Paris,,OGP, +OGP:SP:21071,1,"La Bruère",46.538454,0.254448,0,0,OGP:SA:10537,Europe/Paris,,OGP, +OGP:SP:21072,1,"La Devinalière",46.544358,0.249986,0,0,OGP:SA:10538,Europe/Paris,,OGP, +OGP:SP:21073,1,"La Devinalière",46.544328,0.249836,0,0,OGP:SA:10538,Europe/Paris,,OGP, +OGP:SP:21074,1,"Grange Neuve",46.543821,0.25824,0,0,OGP:SA:10539,Europe/Paris,,OGP, +OGP:SP:21075,1,"Grange Neuve",46.544164,0.258265,0,0,OGP:SA:10539,Europe/Paris,,OGP, +OGP:SP:21076,1,"Rte de Poitiers - Rouerie",46.543522,0.281494,0,0,OGP:SA:10540,Europe/Paris,,OGP, +OGP:SP:21077,1,"Rte de Poitiers - Rouerie",46.543281,0.281218,0,0,OGP:SA:10540,Europe/Paris,,OGP, +OGP:SP:21078,1,"Route de la Vallée",46.533918,0.269807,0,0,OGP:SA:10541,Europe/Paris,,OGP, +OGP:SP:21079,1,"Route de la Vallée",46.53396,0.269903,0,0,OGP:SA:10541,Europe/Paris,,OGP, +OGP:SP:21080,1,"L'Audemont",46.532575,0.280631,0,0,OGP:SA:10542,Europe/Paris,,OGP, +OGP:SP:21081,1,"L'Audemont",46.532578,0.280733,0,0,OGP:SA:10542,Europe/Paris,,OGP, +OGP:SP:21087,1,"Place d'Ivoy",46.535659,0.286633,0,0,OGP:SA:10545,Europe/Paris,,OGP, +OGP:SP:21088,1,"Place d'Ivoy",46.535279,0.285812,0,0,OGP:SA:10545,Europe/Paris,,OGP, +OGP:SP:21089,1,"Grand Rue",46.538392,0.288553,0,0,OGP:SA:10546,Europe/Paris,,OGP, +OGP:SP:21090,1,"Grand Rue",46.538446,0.2887,0,0,OGP:SA:10546,Europe/Paris,,OGP, +OGP:SP:21091,1,"La Belletière",46.621434,0.315481,0,0,OGP:SA:10547,Europe/Paris,,OGP, +OGP:SP:21092,1,"La Belletière",46.621676,0.31585,0,0,OGP:SA:10547,Europe/Paris,,OGP, +OGP:SP:21093,1,"Dr Mesmain",46.631062,0.302908,0,0,OGP:SA:10548,Europe/Paris,,OGP, +OGP:SP:21094,1,"Dr Mesmain",46.631134,0.302931,0,0,OGP:SA:10548,Europe/Paris,,OGP, +OGP:SP:21095,1,"Guille Belette",46.635894,0.310549,0,0,OGP:SA:10549,Europe/Paris,,OGP, +OGP:SP:21096,1,"Guille Belette",46.635685,0.309898,0,0,OGP:SA:10549,Europe/Paris,,OGP, +OGP:SP:21097,1,"Les Vignes",46.632438,0.320103,0,0,OGP:SA:10550,Europe/Paris,,OGP, +OGP:SP:21098,1,"Les Vignes",46.632384,0.32012,0,0,OGP:SA:10550,Europe/Paris,,OGP, +OGP:SP:21099,1,"Les Coudres",46.625014,0.304366,0,0,OGP:SA:10551,Europe/Paris,,OGP, +OGP:SP:21101,1,"Les Groges",46.55769,0.360254,0,0,OGP:SA:10552,Europe/Paris,,OGP, +OGP:SP:21102,1,"Les Groges",46.557765,0.360364,0,0,OGP:SA:10552,Europe/Paris,,OGP, +OGP:SP:21103,1,"Berlonnière",46.555459,0.370896,0,0,OGP:SA:10553,Europe/Paris,,OGP, +OGP:SP:21104,1,"Berlonnière",46.555534,0.370974,0,0,OGP:SA:10553,Europe/Paris,,OGP, +OGP:SP:21105,1,"Le Portail",46.54272,0.382332,0,0,OGP:SA:10554,Europe/Paris,,OGP, +OGP:SP:21106,1,"Le Portail",46.542701,0.382444,0,0,OGP:SA:10554,Europe/Paris,,OGP, +OGP:SP:21107,1,"Flée",46.540976,0.373313,0,0,OGP:SA:10555,Europe/Paris,,OGP, +OGP:SP:21108,1,"Flée",46.541035,0.373499,0,0,OGP:SA:10555,Europe/Paris,,OGP, +OGP:SP:21109,1,"La Cadoullière",46.538325,0.36359,0,0,OGP:SA:10556,Europe/Paris,,OGP, +OGP:SP:21110,1,"La Cadoullière",46.538266,0.363661,0,0,OGP:SA:10556,Europe/Paris,,OGP, +OGP:SP:21111,1,"La Cossonnière",46.540962,0.354864,0,0,OGP:SA:10557,Europe/Paris,,OGP, +OGP:SP:21112,1,"La Cossonnière",46.540911,0.354959,0,0,OGP:SA:10557,Europe/Paris,,OGP, +OGP:SP:21113,1,"Mauroc",46.543832,0.345507,0,0,OGP:SA:10558,Europe/Paris,,OGP, +OGP:SP:21114,1,"Mauroc",46.543785,0.345424,0,0,OGP:SA:10558,Europe/Paris,,OGP, +OGP:SP:21115,1,"Les Grottes",46.549638,0.340378,0,0,OGP:SA:10559,Europe/Paris,,OGP, +OGP:SP:21116,1,"Les Grottes",46.549657,0.340602,0,0,OGP:SA:10559,Europe/Paris,,OGP, +OGP:SP:21117,1,"Passelourdain",46.54946,0.340946,0,0,OGP:SA:10560,Europe/Paris,,OGP, +OGP:SP:21118,1,"Passelourdain",46.54954,0.341164,0,0,OGP:SA:10560,Europe/Paris,,OGP, +OGP:SP:21119,1,"Champs de Pierre",46.557625,0.349476,0,0,OGP:SA:10561,Europe/Paris,,OGP, +OGP:SP:21120,1,"Champs de Pierre",46.55762,0.349372,0,0,OGP:SA:10561,Europe/Paris,,OGP, +OGP:SP:21121,1,"Général De Gaulle",46.558903,0.354482,0,0,OGP:SA:10562,Europe/Paris,,OGP, +OGP:SP:21122,1,"Général De Gaulle",46.558807,0.353964,0,0,OGP:SA:10562,Europe/Paris,,OGP, +OGP:SP:21123,1,"Rue d'Artimon",46.562725,0.356165,0,0,OGP:SA:10563,Europe/Paris,,OGP, +OGP:SP:21124,1,"Rue d'Artimon",46.562603,0.356065,0,0,OGP:SA:10563,Europe/Paris,,OGP, +OGP:SP:21125,1,"Champ Berland",46.61256,0.412756,0,0,OGP:SA:10564,Europe/Paris,,OGP, +OGP:SP:21126,1,"Champ Berland",46.61227,0.412405,0,0,OGP:SA:10564,Europe/Paris,,OGP, +OGP:SP:21127,1,"Les Bruères",46.554009,0.440757,0,0,OGP:SA:10565,Europe/Paris,,OGP, +OGP:SP:21128,1,"Les Bruères",46.553896,0.44074,0,0,OGP:SA:10565,Europe/Paris,,OGP, +OGP:SP:21129,1,"Grands Bois",46.552155,0.43895,0,0,OGP:SA:10566,Europe/Paris,,OGP, +OGP:SP:21130,1,"Grands Bois",46.552053,0.438821,0,0,OGP:SA:10566,Europe/Paris,,OGP, +OGP:SP:21131,1,"Chemin Porchaire",46.550561,0.435113,0,0,OGP:SA:10567,Europe/Paris,,OGP, +OGP:SP:21132,1,"Chemin Porchaire",46.550755,0.435531,0,0,OGP:SA:10567,Europe/Paris,,OGP, +OGP:SP:21133,1,"Collége des Moreaux",46.548789,0.432769,0,0,OGP:SA:10568,Europe/Paris,,OGP, +OGP:SP:21134,1,"Collége des Moreaux",46.548433,0.43246,0,0,OGP:SA:10568,Europe/Paris,,OGP, +OGP:SP:21135,1,"Le Golf",46.532238,0.424424,0,0,OGP:SA:10569,Europe/Paris,,OGP, +OGP:SP:21136,1,"Le Golf",46.532378,0.424584,0,0,OGP:SA:10569,Europe/Paris,,OGP, +OGP:SP:21143,1,"L'Aumône",46.575431,0.186037,0,0,OGP:SA:10573,Europe/Paris,,OGP, +OGP:SP:21144,1,"L'Aumône",46.575454,0.186101,0,0,OGP:SA:10573,Europe/Paris,,OGP, +OGP:SP:21145,1,"Bourgversé",46.562766,0.201016,0,0,OGP:SA:10574,Europe/Paris,,OGP, +OGP:SP:21146,1,"Bourgversé",46.561621,0.200511,0,0,OGP:SA:10574,Europe/Paris,,OGP, +OGP:SP:21147,1,"Le Champ de la Plaine",46.550389,0.197069,0,0,OGP:SA:10575,Europe/Paris,,OGP, +OGP:SP:21148,1,"Le Champ de la Plaine",46.549247,0.197659,0,0,OGP:SA:10575,Europe/Paris,,OGP, +OGP:SP:21149,1,"Boussais",46.576866,0.225448,0,0,OGP:SA:10576,Europe/Paris,,OGP, +OGP:SP:21150,1,"Boussais",46.5769,0.225447,0,0,OGP:SA:10576,Europe/Paris,,OGP, +OGP:SP:21151,1,"Passerelle Accès SNCF",46.582661,0.335164,0,0,OGP:SA:10577,Europe/Paris,,OGP, +OGP:SP:21152,1,"Montamisé Fousserettes",46.625858,0.434472,0,0,OGP:SA:10578,Europe/Paris,,OGP, +OGP:SP:21153,1,"Poitiers Sud",46.553043,0.301588,0,0,OGP:SA:10579,Europe/Paris,,OGP, +OGP:SP:21154,1,"Poitiers Sud",46.55286,0.301858,0,0,OGP:SA:10579,Europe/Paris,,OGP, +OGP:SP:21155,1,"Fraternité",46.587794,0.381199,0,0,OGP:SA:10580,Europe/Paris,,OGP, +OGP:SP:21156,1,"Fraternité",46.587879,0.381286,0,0,OGP:SA:10580,Europe/Paris,,OGP, +OGP:SP:21157,1,"Kyoto",46.589764,0.382896,0,0,OGP:SA:10581,Europe/Paris,,OGP, +OGP:SP:21158,1,"Kyoto",46.589779,0.383182,0,0,OGP:SA:10581,Europe/Paris,,OGP, +OGP:SP:21159,1,"Saint-Just",46.592112,0.382796,0,0,OGP:SA:10582,Europe/Paris,,OGP, +OGP:SP:21160,1,"Saint-Just",46.592235,0.382763,0,0,OGP:SA:10582,Europe/Paris,,OGP, +OGP:SP:21163,1,"Croutelle les Hauts",46.543117,0.28914,0,0,OGP:SA:10492,Europe/Paris,,OGP, +OGP:SP:21172,1,"Rte de Poitiers - Rocade",46.555754,0.303263,0,0,OGP:SA:10588,Europe/Paris,,OGP, +OGP:SP:21173,1,"Rte de Poitiers - Rocade",46.555709,0.30312,0,0,OGP:SA:10588,Europe/Paris,,OGP, +OGP:SP:21177,1,"Les Frênes",46.644764,0.357111,0,0,OGP:SA:10590,Europe/Paris,,OGP, +OGP:SP:21179,1,"Les Hêtres",46.64258,0.35608,0,0,OGP:SA:10591,Europe/Paris,,OGP, +OGP:SP:21180,1,"Rue des Chaumes",46.538704,0.269135,0,0,OGP:SA:10592,Europe/Paris,,OGP, +OGP:SP:21181,1,"Rue des Chaumes",46.539149,0.269197,0,0,OGP:SA:10592,Europe/Paris,,OGP, +OGP:SP:21182,1,"Briquetterie",46.582799,0.187402,0,0,OGP:SA:10593,Europe/Paris,,OGP, +OGP:SP:21183,1,"Briquetterie",46.582571,0.187163,0,0,OGP:SA:10593,Europe/Paris,,OGP, +OGP:SP:21184,1,"Béruges Stade",46.569135,0.197854,0,0,OGP:SA:10594,Europe/Paris,,OGP, +OGP:SP:21185,1,"Béruges Stade",46.568908,0.197877,0,0,OGP:SA:10594,Europe/Paris,,OGP, +OGP:SP:21188,1,"Mairie Béruges",46.567492,0.206525,0,0,OGP:SA:10596,Europe/Paris,,OGP, +OGP:SP:21189,1,"Mairie Béruges",46.567538,0.206602,0,0,OGP:SA:10596,Europe/Paris,,OGP, +OGP:SP:21190,1,"Route de Sanxay",46.54927,0.209133,0,0,OGP:SA:10597,Europe/Paris,,OGP, +OGP:SP:21191,1,"Route de Sanxay",46.549326,0.209347,0,0,OGP:SA:10597,Europe/Paris,,OGP, +OGP:SP:21192,1,"Le Lac",46.553212,0.218358,0,0,OGP:SA:10598,Europe/Paris,,OGP, +OGP:SP:21193,1,"Le Lac",46.553083,0.218435,0,0,OGP:SA:10598,Europe/Paris,,OGP, +OGP:SP:21194,1,"La Bourdilière",46.572387,0.216217,0,0,OGP:SA:10599,Europe/Paris,,OGP, +OGP:SP:21195,1,"La Bourdilière",46.572369,0.216127,0,0,OGP:SA:10599,Europe/Paris,,OGP, +OGP:SP:21202,1,"Saint-Laurent",46.584023,0.180489,0,0,OGP:SA:10603,Europe/Paris,,OGP, +OGP:SP:21203,1,"Saint-Laurent",46.584068,0.180408,0,0,OGP:SA:10603,Europe/Paris,,OGP, +OGP:SP:21204,1,"Rue du Bois d'Amour",46.555239,0.309943,0,0,OGP:SA:10604,Europe/Paris,,OGP, +OGP:SP:21205,1,"Rue du Bois d'Amour",46.555444,0.309821,0,0,OGP:SA:10604,Europe/Paris,,OGP, +OGP:SP:21207,1,"Simone Gault",46.623404,0.429553,0,0,OGP:SA:10605,Europe/Paris,,OGP, +OGP:SP:21208,1,"Simone Gault",46.623454,0.429669,0,0,OGP:SA:10605,Europe/Paris,,OGP, +OGP:SP:21209,1,"Le Bas Village",46.659305,0.340658,0,0,OGP:SA:10606,Europe/Paris,,OGP, +OGP:SP:21210,1,"Le Bas Village",46.659351,0.340617,0,0,OGP:SA:10606,Europe/Paris,,OGP, +OGP:SP:21211,1,"Lycée du Bois d'Amour",46.55138,0.308958,0,0,OGP:SA:10135,Europe/Paris,,OGP, +OGP:SP:21223,1,"Rue du Moulin",46.630634,0.279532,0,0,OGP:SA:10391,Europe/Paris,,OGP, +OGP:SP:21247,1,"Route de Savigny",46.545555,0.42903,0,0,OGP:SA:10619,Europe/Paris,,OGP, +OGP:SP:21248,1,"Route de Savigny",46.545887,0.429497,0,0,OGP:SA:10619,Europe/Paris,,OGP, +OGP:SP:21257,1,"Chemin des 3 Thuets",46.546294,0.246333,0,0,OGP:SA:10624,Europe/Paris,,OGP, +OGP:SP:21258,1,"Chemin des 3 Thuets",46.546101,0.246652,0,0,OGP:SA:10624,Europe/Paris,,OGP, +OGP:SP:21259,1,"Le Poizac",46.54518,0.24447,0,0,OGP:SA:10625,Europe/Paris,,OGP, +OGP:SP:21260,1,"Le Poizac",46.545273,0.24399,0,0,OGP:SA:10625,Europe/Paris,,OGP, +OGP:SP:21261,1,"Les Champs Blancs",46.54719,0.244978,0,0,OGP:SA:10626,Europe/Paris,,OGP, +OGP:SP:21262,1,"Les Champs Blancs",46.547125,0.24438,0,0,OGP:SA:10626,Europe/Paris,,OGP, +OGP:SP:21302,1,"Paul Brault",46.6353,0.318367,0,0,OGP:SA:10646,Europe/Paris,,OGP, +OGP:SP:21303,1,"Paul Brault",46.635278,0.318496,0,0,OGP:SA:10646,Europe/Paris,,OGP, +OGP:SP:21304,1,"Les Fougères",46.633951,0.319929,0,0,OGP:SA:10647,Europe/Paris,,OGP, +OGP:SP:21305,1,"Les Fougères",46.634399,0.319854,0,0,OGP:SA:10647,Europe/Paris,,OGP, +OGP:SP:21309,1,"Martouret",46.631309,0.300738,0,0,OGP:SA:10649,Europe/Paris,,OGP, +OGP:SP:21310,1,"Demarçay",46.635337,0.333577,0,0,OGP:SA:10650,Europe/Paris,,OGP, +OGP:SP:21311,1,"Demarçay",46.636135,0.33482,0,0,OGP:SA:10650,Europe/Paris,,OGP, +OGP:SP:21312,1,"Moulin Neuf",46.641894,0.3385,0,0,OGP:SA:10651,Europe/Paris,,OGP, +OGP:SP:21313,1,"Moulin Neuf",46.641868,0.338542,0,0,OGP:SA:10651,Europe/Paris,,OGP, +OGP:SP:21314,1,"Le Pontrau",46.642665,0.343343,0,0,OGP:SA:10652,Europe/Paris,,OGP, +OGP:SP:21315,1,"Le Pontrau",46.642681,0.343328,0,0,OGP:SA:10652,Europe/Paris,,OGP, +OGP:SP:21316,1,"Le Square",46.552345,0.349538,0,0,OGP:SA:10653,Europe/Paris,,OGP, +OGP:SP:21317,1,"Le Square",46.553516,0.34986,0,0,OGP:SA:10653,Europe/Paris,,OGP, +OGP:SP:21318,1,"Petit Saint-Benoît",46.552708,0.34965,0,0,OGP:SA:10654,Europe/Paris,,OGP, +OGP:SP:21319,1,"Petit Saint-Benoît",46.552391,0.350019,0,0,OGP:SA:10654,Europe/Paris,,OGP, +OGP:SP:21320,1,"Puy-Joubert",46.553097,0.349775,0,0,OGP:SA:10655,Europe/Paris,,OGP, +OGP:SP:21321,1,"Puy-Joubert",46.552154,0.349443,0,0,OGP:SA:10655,Europe/Paris,,OGP, +OGP:SP:21322,1,"Fontarnaud",46.553024,0.349727,0,0,OGP:SA:10656,Europe/Paris,,OGP, +OGP:SP:21323,1,"Fontarnaud",46.553092,0.349984,0,0,OGP:SA:10656,Europe/Paris,,OGP, +OGP:SP:21344,1,"Porte d'Auxance",46.613995,0.315796,0,0,OGP:SA:10668,Europe/Paris,,OGP, +OGP:SP:21345,1,"Porte d'Auxance",46.614291,0.315807,0,0,OGP:SA:10668,Europe/Paris,,OGP, +OGP:SP:21346,1,"Bigotterie",46.580843,0.1893,0,0,OGP:SA:10669,Europe/Paris,,OGP, +OGP:SP:21347,1,"Bigotterie",46.5808,0.189452,0,0,OGP:SA:10669,Europe/Paris,,OGP, +OGP:SP:21348,1,"Rte de la Vallée(le Parc)",46.53,0.267183,0,0,OGP:SA:10670,Europe/Paris,,OGP, +OGP:SP:21349,1,"Rte de la Vallée(le Parc)",46.530002,0.267272,0,0,OGP:SA:10670,Europe/Paris,,OGP, +OGP:SP:21350,1,"Rue St-Benoit",46.560597,0.318452,0,0,OGP:SA:10157,Europe/Paris,,OGP, +OGP:SP:21355,1,"Passerelle Accès SNCF",46.582698,0.335201,0,0,OGP:SA:10577,Europe/Paris,,OGP, +OGP:SP:21366,1,"Confort Moderne",46.572017,0.358783,0,0,OGP:SA:10200,Europe/Paris,,OGP, +OGP:SP:21367,1,"Notre Dame",46.584169,0.344071,0,0,OGP:SA:10011,Europe/Paris,,OGP, +OGP:SP:21368,1,"Isaac",46.603233,0.343084,0,0,OGP:SA:10686,Europe/Paris,,OGP, +OGP:SP:21370,1,"Tassigny",46.584763,0.351223,0,0,OGP:SA:10677,Europe/Paris,,OGP, +OGP:SP:21371,1,"Tassigny",46.584457,0.351619,0,0,OGP:SA:10677,Europe/Paris,,OGP, +OGP:SP:21381,1,"Jean le Bon",46.572968,0.380398,0,0,OGP:SA:10137,Europe/Paris,,OGP, +OGP:SP:21382,1,"Foyer Soleil",46.573771,0.377863,0,0,OGP:SA:10136,Europe/Paris,,OGP, +OGP:SP:21383,1,"Pétonnet Hulin 4",46.583041,0.341131,0,0,OGP:SA:10681,Europe/Paris,,OGP, +OGP:SP:21384,1,"Pôle Boncenne",46.583472,0.340639,0,0,OGP:SA:10682,Europe/Paris,,OGP, +OGP:SP:21390,1,"Pétonnet Hulin 2",46.582175,0.339839,0,0,OGP:SA:10139,Europe/Paris,,OGP, +OGP:SP:21392,1,"Gare Pont Achard",46.581448,0.333407,0,0,OGP:SA:10685,Europe/Paris,,OGP, +OGP:SP:21393,1,"Gare Pont Achard",46.581096,0.332942,0,0,OGP:SA:10685,Europe/Paris,,OGP, +OGP:SP:21394,1,"Isaac",46.603282,0.343305,0,0,OGP:SA:10686,Europe/Paris,,OGP, +OGP:SP:21414,1,"Ecossais",46.581229,0.336384,0,0,OGP:SA:10696,Europe/Paris,,OGP, +OGP:SP:21416,1,"Charletterie",46.589686,0.369008,0,0,OGP:SA:10697,Europe/Paris,,OGP, +OGP:SP:21417,1,"Charletterie",46.589958,0.368954,0,0,OGP:SA:10697,Europe/Paris,,OGP, +OGP:SP:21418,1,"Stade",46.572136,0.369686,0,0,OGP:SA:10051,Europe/Paris,,OGP, +OGP:SP:21423,1,"Vélodrome",46.593581,0.366387,0,0,OGP:SA:10702,Europe/Paris,,OGP, +OGP:SP:21424,1,"Vélodrome",46.593651,0.366227,0,0,OGP:SA:10702,Europe/Paris,,OGP, +OGP:SP:21425,1,"Carnot",46.578434,0.337776,0,0,OGP:SA:10703,Europe/Paris,,OGP, +OGP:SP:21426,1,"Magenta",46.577987,0.339104,0,0,OGP:SA:10704,Europe/Paris,,OGP, +OGP:SP:21427,1,"Victor Hugo",46.580429,0.33909,0,0,OGP:SA:10705,Europe/Paris,,OGP, +OGP:SP:21428,1,"Victor Hugo",46.580452,0.339029,0,0,OGP:SA:10705,Europe/Paris,,OGP, +OGP:SP:21430,1,"Longères",46.611389,0.399374,0,0,OGP:SA:10707,Europe/Paris,,OGP, +OGP:SP:21431,1,"Longères",46.611361,0.399494,0,0,OGP:SA:10707,Europe/Paris,,OGP, +OGP:SP:21438,1,"Rte de Gencay",46.568325,0.357723,0,0,OGP:SA:10712,Europe/Paris,,OGP, +OGP:SP:21439,1,"Rte de Gencay",46.56805,0.357702,0,0,OGP:SA:10712,Europe/Paris,,OGP, +OGP:SP:21440,1,"Victor Schoelcher",46.560707,0.37191,0,0,OGP:SA:10713,Europe/Paris,,OGP, +OGP:SP:21441,1,"Victor Schoelcher",46.560653,0.371873,0,0,OGP:SA:10713,Europe/Paris,,OGP, +OGP:SP:21443,1,"Bonne Nouvelle",46.559429,0.37508,0,0,OGP:SA:10719,Europe/Paris,,OGP, +OGP:SP:21450,1,"Bonne Nouvelle",46.559356,0.37507,0,0,OGP:SA:10719,Europe/Paris,,OGP, +OGP:SP:21455,1,"Louis Braille",46.554146,0.314802,0,0,OGP:SA:10722,Europe/Paris,,OGP, +OGP:SP:21456,1,"Louis Braille",46.554214,0.314589,0,0,OGP:SA:10722,Europe/Paris,,OGP, +OGP:SP:21460,1,"Ecossais",46.581786,0.337643,0,0,OGP:SA:10696,Europe/Paris,,OGP, +OGP:SP:21466,1,"Brassaise",46.521869,0.30651,0,0,OGP:SA:10726,Europe/Paris,,OGP, +OGP:SP:21467,1,"Brassaise",46.521993,0.306574,0,0,OGP:SA:10726,Europe/Paris,,OGP, +OGP:SP:21468,1,"Deux Croix",46.525494,0.321149,0,0,OGP:SA:10727,Europe/Paris,,OGP, +OGP:SP:21469,1,"Deux Croix",46.525813,0.321367,0,0,OGP:SA:10727,Europe/Paris,,OGP, +OGP:SP:21470,1,"Imprimerie",46.52024,0.318836,0,0,OGP:SA:10728,Europe/Paris,,OGP, +OGP:SP:21471,1,"Imprimerie",46.520229,0.318624,0,0,OGP:SA:10728,Europe/Paris,,OGP, +OGP:SP:21472,1,"Bois Renard",46.520721,0.322545,0,0,OGP:SA:10729,Europe/Paris,,OGP, +OGP:SP:21473,1,"Bois Renard",46.520605,0.322429,0,0,OGP:SA:10729,Europe/Paris,,OGP, +OGP:SP:21474,1,"Champ Rouge",46.520553,0.325268,0,0,OGP:SA:10730,Europe/Paris,,OGP, +OGP:SP:21475,1,"Champ Rouge",46.520566,0.325461,0,0,OGP:SA:10730,Europe/Paris,,OGP, +OGP:SP:21476,1,"Givray",46.521236,0.330612,0,0,OGP:SA:10731,Europe/Paris,,OGP, +OGP:SP:21477,1,"Givray",46.521419,0.330048,0,0,OGP:SA:10731,Europe/Paris,,OGP, +OGP:SP:21478,1,"Jardin Sonning",46.518524,0.330911,0,0,OGP:SA:10732,Europe/Paris,,OGP, +OGP:SP:21480,1,"Ligugé Gare",46.519626,0.332753,0,0,OGP:SA:10733,Europe/Paris,,OGP, +OGP:SP:21481,1,"Ligugé Gare",46.519652,0.33271,0,0,OGP:SA:10733,Europe/Paris,,OGP, +OGP:SP:21483,1,"A. Briand",46.581425,0.335826,0,0,OGP:SA:10075,Europe/Paris,,OGP, +OGP:SP:21487,1,"Recteur Pineau",46.571533,0.372197,0,0,OGP:SA:10737,Europe/Paris,,OGP, +OGP:SP:21488,1,"Jacques Coeur",46.570295,0.370929,0,0,OGP:SA:10738,Europe/Paris,,OGP, +OGP:SP:21490,1,"Pétonnet Hulin 3",46.582535,0.340515,0,0,OGP:SA:10739,Europe/Paris,,OGP, +OGP:SP:21499,1,"Vieux Moulin",46.553032,0.33416,0,0,OGP:SA:10744,Europe/Paris,,OGP, +OGP:SP:21500,1,"Vieux Moulin",46.552756,0.333938,0,0,OGP:SA:10744,Europe/Paris,,OGP, +OGP:SP:21501,1,"Pétonnet Hulin 1",46.582042,0.338814,0,0,OGP:SA:10745,Europe/Paris,,OGP, +OGP:SP:21502,1,"Pétonnet Hulin 1",46.582095,0.33876,0,0,OGP:SA:10745,Europe/Paris,,OGP, +OGP:SP:21503,1,"Gachères",46.516083,0.301204,0,0,OGP:SA:10746,Europe/Paris,,OGP, +OGP:SP:21504,1,"Gachères",46.516174,0.301617,0,0,OGP:SA:10746,Europe/Paris,,OGP, +OGP:SP:21505,1,"Challerie",46.514454,0.296893,0,0,OGP:SA:10747,Europe/Paris,,OGP, +OGP:SP:21506,1,"Challerie",46.514406,0.297157,0,0,OGP:SA:10747,Europe/Paris,,OGP, +OGP:SP:21507,1,"Cimeau",46.514051,0.28837,0,0,OGP:SA:10748,Europe/Paris,,OGP, +OGP:SP:21508,1,"Cimeau",46.514004,0.288592,0,0,OGP:SA:10748,Europe/Paris,,OGP, +OGP:SP:21509,1,"Mirande",46.514901,0.283528,0,0,OGP:SA:10749,Europe/Paris,,OGP, +OGP:SP:21510,1,"Mirande",46.514828,0.283745,0,0,OGP:SA:10749,Europe/Paris,,OGP, +OGP:SP:21511,1,"Moulin de la Reinière",46.516387,0.278131,0,0,OGP:SA:10750,Europe/Paris,,OGP, +OGP:SP:21512,1,"Moulin de la Reinière",46.516443,0.278054,0,0,OGP:SA:10750,Europe/Paris,,OGP, +OGP:SP:21513,1,"Virolet",46.519911,0.280401,0,0,OGP:SA:10751,Europe/Paris,,OGP, +OGP:SP:21514,1,"Virolet",46.520009,0.28014,0,0,OGP:SA:10751,Europe/Paris,,OGP, +OGP:SP:21515,1,"Noyer au Roy",46.525322,0.32951,0,0,OGP:SA:10752,Europe/Paris,,OGP, +OGP:SP:21516,1,"Noyer au Roy",46.525309,0.329683,0,0,OGP:SA:10752,Europe/Paris,,OGP, +OGP:SP:21517,1,"Chêne Vert",46.523265,0.327772,0,0,OGP:SA:10753,Europe/Paris,,OGP, +OGP:SP:21518,1,"Chêne Vert",46.523305,0.327631,0,0,OGP:SA:10753,Europe/Paris,,OGP, +OGP:SP:21519,1,"Moscovici",46.522323,0.321813,0,0,OGP:SA:10754,Europe/Paris,,OGP, +OGP:SP:21520,1,"Moscovici",46.522356,0.321998,0,0,OGP:SA:10754,Europe/Paris,,OGP, +OGP:SP:21521,1,"Maurice Garçon",46.518768,0.324755,0,0,OGP:SA:10755,Europe/Paris,,OGP, +OGP:SP:21522,1,"Maurice Garçon",46.518844,0.324824,0,0,OGP:SA:10755,Europe/Paris,,OGP, +OGP:SP:21523,1,"Tisserands",46.518292,0.321593,0,0,OGP:SA:10756,Europe/Paris,,OGP, +OGP:SP:21524,1,"Tisserands",46.518225,0.321898,0,0,OGP:SA:10756,Europe/Paris,,OGP, +OGP:SP:21525,1,"Chillou",46.51993,0.31872,0,0,OGP:SA:10757,Europe/Paris,,OGP, +OGP:SP:21526,1,"Chillou",46.519857,0.318686,0,0,OGP:SA:10757,Europe/Paris,,OGP, +OGP:SP:21530,1,"Gare Léon Blum",46.584541,0.33549,0,0,OGP:SA:10760,Europe/Paris,,OGP, +OGP:SP:21531,1,"Gare Léon Blum",46.58464,0.335341,0,0,OGP:SA:10760,Europe/Paris,,OGP, +OGP:SP:21535,1,"Multipôle",46.590297,0.380242,0,0,OGP:SA:10761,Europe/Paris,,OGP, +OGP:SP:21536,1,"Multipôle",46.590285,0.380178,0,0,OGP:SA:10761,Europe/Paris,,OGP, +OGP:SP:21537,1,"Bajon",46.578701,0.351613,0,0,OGP:SA:10762,Europe/Paris,,OGP, +OGP:SP:21540,1,"Lavoisier",46.576172,0.3729,0,0,OGP:SA:10049,Europe/Paris,,OGP, +OGP:SP:21541,1,"Lavoisier",46.576289,0.373653,0,0,OGP:SA:10049,Europe/Paris,,OGP, +OGP:SP:21542,1,"Les Glières",46.599857,0.325342,0,0,OGP:SA:10764,Europe/Paris,,OGP, +OGP:SP:21543,1,"Les Glières",46.599884,0.325432,0,0,OGP:SA:10764,Europe/Paris,,OGP, +OGP:SP:21544,1,"Condorcet (Rue de Quinçay)",46.588799,0.329114,0,0,OGP:SA:10765,Europe/Paris,,OGP, +OGP:SP:21548,1,"Givray",46.521641,0.330789,0,0,OGP:SA:10731,Europe/Paris,,OGP, +OGP:SP:21549,1,"Place du 19 mars",46.621149,0.312452,0,0,OGP:SA:10767,Europe/Paris,,OGP, +OGP:SP:21550,1,"Place du 19 mars",46.621048,0.312006,0,0,OGP:SA:10767,Europe/Paris,,OGP, +OGP:SP:21553,1,"Lessart",46.599029,0.343,0,0,OGP:SA:10079,Europe/Paris,,OGP, +OGP:SP:21556,1,"Château d'eau",46.566119,0.317437,0,0,OGP:SA:10225,Europe/Paris,,OGP, +OGP:SP:21557,1,"Tour Jean Bernard",46.561152,0.385811,0,0,OGP:SA:10219,Europe/Paris,,OGP, +OGP:SP:21560,1,"Vayres",46.575732,0.3805,0,0,OGP:SA:10121,Europe/Paris,,OGP, +OGP:SP:21561,1,"Centre Culturel",46.575007,0.384166,0,0,OGP:SA:10120,Europe/Paris,,OGP, +OGP:SP:21566,1,"Tiers-Etat",46.593929,0.379558,0,0,OGP:SA:10771,Europe/Paris,,OGP, +OGP:SP:21567,1,"Tiers-Etat",46.593862,0.379595,0,0,OGP:SA:10771,Europe/Paris,,OGP, +OGP:SP:21570,1,"Jacques Coeur",46.571598,0.368981,0,0,OGP:SA:10738,Europe/Paris,,OGP, +OGP:SP:21573,1,"Biard Gymnase",46.576241,0.304541,0,0,OGP:SA:10773,Europe/Paris,,OGP, +OGP:SP:21576,1,"Sainte-Loubette",46.627425,0.338123,0,0,OGP:SA:10781,Europe/Paris,,OGP, +OGP:SP:21577,1,"Sainte-Loubette",46.627661,0.337743,0,0,OGP:SA:10781,Europe/Paris,,OGP, +OGP:SP:21589,1,"Montgolfier",46.665328,0.373875,0,0,OGP:SA:10786,Europe/Paris,,OGP, +OGP:SP:21590,1,"Montgolfier",46.665261,0.374109,0,0,OGP:SA:10786,Europe/Paris,,OGP, +OGP:SP:21591,1,"La Coutelière",46.605589,0.404932,0,0,OGP:SA:10787,Europe/Paris,,OGP, +OGP:SP:21592,1,"Biard Gymnase",46.576275,0.304381,0,0,OGP:SA:10773,Europe/Paris,,OGP, +OGP:SP:21593,1,"Marché de Gros",46.607616,0.339799,0,0,OGP:SA:10776,Europe/Paris,,OGP, +OGP:SP:21594,1,"Marché de Gros",46.607512,0.339961,0,0,OGP:SA:10776,Europe/Paris,,OGP, +OGP:SP:21595,1,"République 1",46.610801,0.345409,0,0,OGP:SA:10778,Europe/Paris,,OGP, +OGP:SP:21596,1,"République 1",46.611389,0.346229,0,0,OGP:SA:10778,Europe/Paris,,OGP, +OGP:SP:21597,1,"Chemin de Beaubaton",46.544502,0.407382,0,0,OGP:SA:10287,Europe/Paris,,OGP, +OGP:SP:21598,1,"Chemin de Beaubaton",46.544438,0.407434,0,0,OGP:SA:10287,Europe/Paris,,OGP, +OGP:SP:21601,1,"Cormiers",46.561385,0.2893,0,0,OGP:SA:10779,Europe/Paris,,OGP, +OGP:SP:21602,1,"Cormiers",46.561439,0.289258,0,0,OGP:SA:10779,Europe/Paris,,OGP, +OGP:SP:21607,1,"Avenue du Parc",46.57679,0.313292,0,0,OGP:SA:10236,Europe/Paris,,OGP, +OGP:SP:21608,1,"La Nougeraie",46.561427,0.294536,0,0,OGP:SA:10366,Europe/Paris,,OGP, +OGP:SP:21609,1,"La Nougeraie",46.561453,0.294509,0,0,OGP:SA:10366,Europe/Paris,,OGP, +OGP:SP:21610,1,"Rond-Point",46.667006,0.376518,0,0,OGP:SA:10487,Europe/Paris,,OGP, +OGP:SP:21611,1,"Vouneuil Nougeraie",46.561866,0.295769,0,0,OGP:SA:10790,Europe/Paris,,OGP, +OGP:SP:21612,1,"Vouneuil Nougeraie",46.561915,0.295806,0,0,OGP:SA:10790,Europe/Paris,,OGP, +OGP:SP:21613,1,"Chanteloup",46.585369,0.27189,0,0,OGP:SA:10355,Europe/Paris,,OGP, +OGP:SP:21614,1,"Chanteloup",46.585341,0.273079,0,0,OGP:SA:10355,Europe/Paris,,OGP, +OGP:SP:21616,1,"Bajon",46.578691,0.351652,0,0,OGP:SA:10762,Europe/Paris,,OGP, +OGP:SP:21618,1,"Route de Poitiers",46.537488,0.266579,0,0,OGP:SA:10792,Europe/Paris,,OGP, +OGP:SP:21622,1,"Grands Philambins",46.649487,0.358287,0,0,OGP:SA:10794,Europe/Paris,,OGP, +OGP:SP:21623,1,"Grands Philambins",46.649597,0.35842,0,0,OGP:SA:10794,Europe/Paris,,OGP, +OGP:SP:21624,1,"Shenzhen",46.655295,0.362377,0,0,OGP:SA:10795,Europe/Paris,,OGP, +OGP:SP:21625,1,"Shenzhen",46.654581,0.362057,0,0,OGP:SA:10795,Europe/Paris,,OGP, +OGP:SP:21628,1,"Emile Duclaux",46.575015,0.34616,0,0,OGP:SA:10797,Europe/Paris,,OGP, +OGP:SP:21629,1,"Emile Duclaux",46.574249,0.346538,0,0,OGP:SA:10797,Europe/Paris,,OGP, +OGP:SP:21630,1,"Berlioz",46.599063,0.356725,0,0,OGP:SA:10798,Europe/Paris,,OGP, +OGP:SP:21631,1,"Berlioz",46.599136,0.356812,0,0,OGP:SA:10798,Europe/Paris,,OGP, +OGP:SP:21632,1,"Beaubaton",46.544586,0.408478,0,0,OGP:SA:10799,Europe/Paris,,OGP, +OGP:SP:21633,1,"Beaubaton",46.544696,0.40859,0,0,OGP:SA:10799,Europe/Paris,,OGP, +OGP:SP:21634,1,"Bernier",46.612743,0.362427,0,0,OGP:SA:10800,Europe/Paris,,OGP, +OGP:SP:21635,1,"Maria Pia",46.553671,0.296933,0,0,OGP:SA:10801,Europe/Paris,,OGP, +OGP:SP:21636,1,"Maria Pia",46.553536,0.296935,0,0,OGP:SA:10801,Europe/Paris,,OGP, +OGP:SP:21637,1,"La Saulaie",46.551144,0.294877,0,0,OGP:SA:10802,Europe/Paris,,OGP, +OGP:SP:21638,1,"La Saulaie",46.55118,0.295034,0,0,OGP:SA:10802,Europe/Paris,,OGP, +OGP:SP:21639,1,"Aqueduc",46.555171,0.332343,0,0,OGP:SA:10803,Europe/Paris,,OGP, +OGP:SP:21642,1,"Thomas Edison",46.669808,0.365198,0,0,OGP:SA:10805,Europe/Paris,,OGP, +OGP:SP:21644,1,"Léonard de Vinci",46.668979,0.362128,0,0,OGP:SA:10806,Europe/Paris,,OGP, +OGP:SP:21645,1,"Léonard de Vinci",46.66892,0.362227,0,0,OGP:SA:10806,Europe/Paris,,OGP, +OGP:SP:21646,1,"Jean Monnet",46.668551,0.359661,0,0,OGP:SA:10807,Europe/Paris,,OGP, +OGP:SP:21647,1,"Jean Monnet",46.668497,0.359771,0,0,OGP:SA:10807,Europe/Paris,,OGP, +OGP:SP:21649,1,"Amandiers",46.600053,0.350472,0,0,OGP:SA:10083,Europe/Paris,,OGP, +OGP:SP:21650,1,"Irma Jouenne",46.55366,0.34192,0,0,OGP:SA:10250,Europe/Paris,,OGP, +OGP:SP:21652,1,"Galeries Sud",46.550362,0.295792,0,0,OGP:SA:10809,Europe/Paris,,OGP, +OGP:SP:21653,1,"Galeries Sud",46.550389,0.295706,0,0,OGP:SA:10809,Europe/Paris,,OGP, +OGP:SP:21654,1,"Campus",46.568244,0.388241,0,0,OGP:SA:10810,Europe/Paris,,OGP, +OGP:SP:21655,1,"Campus",46.568255,0.388423,0,0,OGP:SA:10810,Europe/Paris,,OGP, +OGP:SP:21656,1,"Centre Hospitalier",46.558832,0.389542,0,0,OGP:SA:10811,Europe/Paris,,OGP, +OGP:SP:21657,1,"Centre Hospitalier",46.558447,0.390297,0,0,OGP:SA:10811,Europe/Paris,,OGP, +OGP:SP:21658,1,"Boutinière",46.562475,0.300198,0,0,OGP:SA:10812,Europe/Paris,,OGP, +OGP:SP:21659,1,"Boutinière",46.562385,0.300217,0,0,OGP:SA:10812,Europe/Paris,,OGP, +OGP:SP:21660,1,"Héliport",46.561999,0.381068,0,0,OGP:SA:10813,Europe/Paris,,OGP, +OGP:SP:21661,1,"Lycée Camille Guérin",46.568043,0.365223,0,0,OGP:SA:10814,Europe/Paris,,OGP, +OGP:SP:21662,1,"Lycée Camille Guérin",46.567956,0.365317,0,0,OGP:SA:10814,Europe/Paris,,OGP, +OGP:SP:21663,1,"Le Lavoir",46.585075,0.271264,0,0,OGP:SA:10815,Europe/Paris,,OGP, +OGP:SP:21664,1,"Le Lavoir",46.58449,0.271054,0,0,OGP:SA:10815,Europe/Paris,,OGP, +OGP:SP:21665,1,"Bijou",46.622225,0.426767,0,0,OGP:SA:10816,Europe/Paris,,OGP, +OGP:SP:21666,1,"Bijou",46.621899,0.427599,0,0,OGP:SA:10816,Europe/Paris,,OGP, +OGP:SP:21667,1,"Bourbias",46.618082,0.40771,0,0,OGP:SA:10817,Europe/Paris,,OGP, +OGP:SP:21668,1,"Bourbias",46.617696,0.408038,0,0,OGP:SA:10817,Europe/Paris,,OGP, +OTL:SP:3377699720880573,1,"Ecole Croix-Rouge",43.6052,1.38701,0,0,OTL:SA:1970324837184593,Europe/Paris,0,OTL, +OTL:SP:3377699720880577,1,"Matabiau Gare SNCF",43.611,1.45316,0,0,AEC:SA:02049,Europe/Paris,2,OTL, +OTL:SP:3377699720880578,1,"Matabiau Gare SNCF",43.6112,1.45259,0,0,AEC:SA:02049,Europe/Paris,2,OTL, +OTL:SP:3377699720880579,1,"Marengo-SNCF",43.6101,1.45556,0,0,AEC:SA:02048,Europe/Paris,2,OTL, +OTL:SP:3377699720880580,1,"Marengo-SNCF",43.6101,1.45556,0,0,AEC:SA:02048,Europe/Paris,2,OTL, +OTL:SP:3377699720880581,1,"Marengo-SNCF",43.6108,1.45541,0,0,AEC:SA:02048,Europe/Paris,2,OTL, +OTL:SP:3377699720880582,1,"Marengo-SNCF",43.6109,1.45547,0,0,AEC:SA:02048,Europe/Paris,2,OTL, +OTL:SP:3377699720880593,1,"Capelles",43.6016,1.3849,0,0,OTL:SA:1970324837184596,Europe/Paris,0,OTL, +OTL:SP:3377699720880594,1,"Capelles",43.6013,1.38474,0,0,OTL:SA:1970324837184596,Europe/Paris,0,OTL, +OTL:SP:3377699720880595,1,"Ecole Vétérinaire",43.5993,1.38396,0,0,OTL:SA:1970324837184597,Europe/Paris,2,OTL, +OTL:SP:3377699720880596,1,"Ecole Vétérinaire",43.5988,1.38375,0,0,OTL:SA:1970324837184597,Europe/Paris,0,OTL, +OTL:SP:3377699720880597,1,"ZI Prat Gimont",43.6269,1.48585,0,0,OTL:SA:1970324837184598,Europe/Paris,2,OTL, +OTL:SP:3377699720880598,1,"ZI Prat Gimont",43.6269,1.48635,0,0,OTL:SA:1970324837184598,Europe/Paris,0,OTL, +OTL:SP:3377699720880634,1,"Aéroport",43.6309,1.3745,0,0,OTL:SA:1970324837184612,Europe/Paris,2,OTL, +OTL:SP:3377699720880648,1,"Saint Agne-SNCF",43.5807,1.44921,0,0,OTL:SA:1970324837184617,Europe/Paris,2,OTL, +OTL:SP:3377699720880649,1,"Saint Agne-SNCF",43.5801,1.44951,0,0,OTL:SA:1970324837184617,Europe/Paris,2,OTL, +OTL:SP:3377699720880657,1,"Clinique des Cèdres",43.6594,1.3114,0,0,OTL:SA:1970324837184625,Europe/Paris,2,OTL, +OTL:SP:3377699720880658,1,"Les Ambrits",43.6532,1.31897,0,0,OTL:SA:1970324837184626,Europe/Paris,2,OTL, +OTL:SP:3377699720880659,1,"Mairie Cornebarrieu",43.6492,1.32635,0,0,OTL:SA:1970324837184627,Europe/Paris,0,OTL, +OTL:SP:3377699720880668,1,"Chaussas",43.6284,1.42847,0,0,OTL:SA:1970324837184635,Europe/Paris,2,OTL, +OTL:SP:3377699720880669,1,"Pont des Minimes",43.6154,1.4374,0,0,OTL:SA:1970324837184636,Europe/Paris,2,OTL, +OTL:SP:3377699720880670,1,"Pont des Minimes",43.6153,1.43754,0,0,OTL:SA:1970324837184636,Europe/Paris,2,OTL, +OTL:SP:3377699720880671,1,"Pont des Minimes",43.616,1.43788,0,0,OTL:SA:1970324837184636,Europe/Paris,2,OTL, +OTL:SP:3377699720880672,1,"Pont des Minimes",43.6157,1.43679,0,0,OTL:SA:1970324837184636,Europe/Paris,2,OTL, +OTL:SP:3377699720880674,1,"Riquet",43.609,1.45487,0,0,OTL:SA:1970324837184637,Europe/Paris,2,OTL, +OTL:SP:3377699720880677,1,"Riquet",43.6096,1.45366,0,0,OTL:SA:1970324837184637,Europe/Paris,2,OTL, +OTL:SP:3377699720880679,1,"Corraze",43.5814,1.48533,0,0,OTL:SA:1970324837184638,Europe/Paris,2,OTL, +OTL:SP:3377699720880680,1,"Corraze",43.5813,1.48544,0,0,OTL:SA:1970324837184638,Europe/Paris,2,OTL, +OTL:SP:3377699720880710,1,"Ancely",43.6185,1.39738,0,0,OTL:SA:1970324837184663,Europe/Paris,2,OTL, +OTL:SP:3377699720880711,1,"Ancely",43.6185,1.39737,0,0,OTL:SA:1970324837184663,Europe/Paris,2,OTL, +OTL:SP:3377699720880713,1,"Ancely",43.6181,1.39703,0,0,OTL:SA:1970324837184663,Europe/Paris,2,OTL, +OTL:SP:3377699720880719,1,"Mairie Blagnac",43.6354,1.39618,0,0,OTL:SA:1970324837184667,Europe/Paris,0,OTL, +OTL:SP:3377699720880720,1,"Mairie Blagnac",43.635,1.39691,0,0,OTL:SA:1970324837184667,Europe/Paris,2,OTL, +OTL:SP:3377699720880733,1,"Gonin",43.5739,1.48303,0,0,OTL:SA:1970324837184674,Europe/Paris,2,OTL, +OTL:SP:3377699720880734,1,"Place Dupuy",43.6003,1.45418,0,0,OTL:SA:1970324837184675,Europe/Paris,2,OTL, +OTL:SP:3377699720880735,1,"Place Dupuy",43.5994,1.45457,0,0,OTL:SA:1970324837184675,Europe/Paris,2,OTL, +OTL:SP:3377699720880752,1,"Portet Gare SNCF",43.5272,1.38877,0,0,OTL:SA:1970324837184685,Europe/Paris,2,OTL, +OTL:SP:3377699720880757,1,"Ctre Cial L'Union",43.6571,1.47906,0,0,OTL:SA:1970324837184690,Europe/Paris,2,OTL, +OTL:SP:3377699720880758,1,"Ctre Cial L'Union",43.6566,1.47932,0,0,OTL:SA:1970324837184690,Europe/Paris,0,OTL, +OTL:SP:3377699720880759,1,"Ctre Cial L'Union",43.6565,1.47985,0,0,OTL:SA:1970324837184690,Europe/Paris,0,OTL, +OTL:SP:3377699720880761,1,"Ctre Cial L'Union",43.6569,1.47994,0,0,OTL:SA:1970324837184690,Europe/Paris,0,OTL, +OTL:SP:3377699720880799,1,"Arènes",43.5938,1.41854,0,0,AEC:SA:01942,Europe/Paris,2,OTL, +OTL:SP:3377699720880801,1,"Arènes",43.5937,1.41859,0,0,AEC:SA:01942,Europe/Paris,2,OTL, +OTL:SP:3377699720880802,1,"Arènes",43.5937,1.41813,0,0,AEC:SA:01942,Europe/Paris,2,OTL, +OTL:SP:3377699720880805,1,"Arènes",43.5937,1.41864,0,0,AEC:SA:01942,Europe/Paris,2,OTL, +OTL:SP:3377699720880806,1,"Arènes",43.5938,1.41829,0,0,AEC:SA:01942,Europe/Paris,2,OTL, +OTL:SP:3377699720880808,1,"Arènes",43.5932,1.41934,0,0,AEC:SA:01942,Europe/Paris,2,OTL, +OTL:SP:3377699720880809,1,"Arènes",43.5932,1.41934,0,0,AEC:SA:01942,Europe/Paris,2,OTL, +OTL:SP:3377699720880810,1,"Parc St Agne",43.5525,1.46903,0,0,OTL:SA:1970324837184715,Europe/Paris,2,OTL, +OTL:SP:3377699720880811,1,"Parc St Agne",43.5529,1.46882,0,0,OTL:SA:1970324837184715,Europe/Paris,2,OTL, +OTL:SP:3377699720880812,1,"Théogone",43.551,1.4878,0,0,OTL:SA:1970324837184716,Europe/Paris,0,OTL, +OTL:SP:3377699720880813,1,"Mairie St-Orens",43.552,1.53405,0,0,OTL:SA:1970324837184717,Europe/Paris,0,OTL, +OTL:SP:3377699720880814,1,"Mairie St-Orens",43.5519,1.53412,0,0,OTL:SA:1970324837184717,Europe/Paris,2,OTL, +OTL:SP:3377699720880815,1,"Gare des Capelles",43.5975,1.3833,0,0,OTL:SA:1970324837184718,Europe/Paris,0,OTL, +OTL:SP:3377699720880816,1,"Gare des Capelles",43.5972,1.38322,0,0,OTL:SA:1970324837184718,Europe/Paris,0,OTL, +OTL:SP:3377699720880906,1,"St Cyprien - République",43.5977,1.43171,0,0,OTL:SA:1970324837184772,Europe/Paris,2,OTL, +OTL:SP:3377699720880907,1,"St Cyprien - République",43.5977,1.43171,0,0,OTL:SA:1970324837184772,Europe/Paris,2,OTL, +OTL:SP:3377699720880908,1,"St Cyprien - République",43.5986,1.43027,0,0,OTL:SA:1970324837184772,Europe/Paris,2,OTL, +OTL:SP:3377699720880909,1,"St Cyprien - République",43.5975,1.43093,0,0,OTL:SA:1970324837184772,Europe/Paris,2,OTL, +OTL:SP:3377699720880910,1,"St Cyprien - République",43.598,1.43149,0,0,OTL:SA:1970324837184772,Europe/Paris,2,OTL, +OTL:SP:3377699720880911,1,"St Cyprien - République",43.5977,1.42983,0,0,OTL:SA:1970324837184772,Europe/Paris,2,OTL, +OTL:SP:3377699720880912,1,"St Cyprien - République",43.5979,1.43175,0,0,OTL:SA:1970324837184772,Europe/Paris,2,OTL, +OTL:SP:3377699720880914,1,"St Cyprien - République",43.5971,1.43122,0,0,OTL:SA:1970324837184772,Europe/Paris,2,OTL, +OTL:SP:3377699720880940,1,"Palais de Justice",43.5932,1.44495,0,0,OTL:SA:1970324837184792,Europe/Paris,2,OTL, +OTL:SP:3377699720880942,1,"CHR Rangueil",43.5586,1.45329,0,0,OTL:SA:1970324837184793,Europe/Paris,2,OTL, +OTL:SP:3377699720880945,1,"Pont Ducuing",43.5631,1.46104,0,0,OTL:SA:1970329131942126,Europe/Paris,2,OTL, +OTL:SP:3377699720880947,1,"Pont Ducuing",43.5639,1.46128,0,0,OTL:SA:1970329131942126,Europe/Paris,2,OTL, +OTL:SP:3377699720880948,1,"Ducuing",43.5629,1.46029,0,0,OTL:SA:1970324837184794,Europe/Paris,2,OTL, +OTL:SP:3377699720880949,1,"Ducuing",43.5628,1.46024,0,0,OTL:SA:1970324837184794,Europe/Paris,2,OTL, +OTL:SP:3377699720880976,1,"Basso Cambo",43.5701,1.39227,0,0,AEC:SA:01957,Europe/Paris,2,OTL, +OTL:SP:3377699720880977,1,"Basso Cambo",43.5701,1.39227,0,0,AEC:SA:01957,Europe/Paris,2,OTL, +OTL:SP:3377699720880978,1,"Basso Cambo",43.5703,1.3921,0,0,AEC:SA:01957,Europe/Paris,2,OTL, +OTL:SP:3377699720880979,1,"Basso Cambo",43.5704,1.39244,0,0,AEC:SA:01957,Europe/Paris,2,OTL, +OTL:SP:3377699720880980,1,"Basso Cambo",43.5706,1.3921,0,0,AEC:SA:01957,Europe/Paris,2,OTL, +OTL:SP:3377699720880981,1,"Basso Cambo",43.57,1.39245,0,0,AEC:SA:01957,Europe/Paris,2,OTL, +OTL:SP:3377699720880983,1,"Basso Cambo",43.57,1.39211,0,0,AEC:SA:01957,Europe/Paris,2,OTL, +OTL:SP:3377699720880984,1,"Basso Cambo",43.5693,1.39215,0,0,AEC:SA:01957,Europe/Paris,2,OTL, +OTL:SP:3377699720880985,1,"Bagatelle",43.5799,1.41239,0,0,OTL:SA:1970324837184809,Europe/Paris,2,OTL, +OTL:SP:3377699720880986,1,"Bagatelle",43.5799,1.41239,0,0,OTL:SA:1970324837184809,Europe/Paris,2,OTL, +OTL:SP:3377699720880989,1,"Bagatelle",43.5797,1.41181,0,0,OTL:SA:1970324837184809,Europe/Paris,2,OTL, +OTL:SP:3377699720880990,1,"Jean Jaurès",43.6056,1.44856,0,0,AEC:SA:02023,Europe/Paris,2,OTL, +OTL:SP:3377699720880991,1,"Jean Jaurès",43.6056,1.44856,0,0,AEC:SA:02023,Europe/Paris,2,OTL, +OTL:SP:3377699720880994,1,"Jean Jaurès",43.606,1.44847,0,0,AEC:SA:02023,Europe/Paris,2,OTL, +OTL:SP:3377699720881006,1,"Capitole",43.6045,1.44557,0,0,OTL:SA:1970324837184814,Europe/Paris,2,OTL, +OTL:SP:3377699720881007,1,"Capitole",43.6045,1.44557,0,0,OTL:SA:1970324837184814,Europe/Paris,2,OTL, +OTL:SP:3377699720881048,1,"Patte d'Oie",43.5965,1.42382,0,0,OTL:SA:1970324837184827,Europe/Paris,2,OTL, +OTL:SP:3377699720881051,1,"Patte d'Oie",43.5961,1.42321,0,0,OTL:SA:1970324837184827,Europe/Paris,2,OTL, +OTL:SP:3377699720881052,1,"Patte d'Oie",43.5961,1.42321,0,0,OTL:SA:1970324837184827,Europe/Paris,2,OTL, +OTL:SP:3377699720881100,1,"Auguste Gratian",43.6696,1.41079,0,0,OTL:SA:1970324837184847,Europe/Paris,0,OTL, +OTL:SP:3377699720881101,1,"Auguste Gratian",43.6685,1.41114,0,0,OTL:SA:1970324837184847,Europe/Paris,0,OTL, +OTL:SP:3377699720881127,1,"Barrière de Lombez",43.5952,1.41939,0,0,OTL:SA:1970324837184867,Europe/Paris,2,OTL, +OTL:SP:3377699720881129,1,"Roquemaurel",43.595,1.41524,0,0,OTL:SA:1970324837184868,Europe/Paris,2,OTL, +OTL:SP:3377699720881133,1,"Av. de Lombez",43.5944,1.41198,0,0,OTL:SA:1970324837184870,Europe/Paris,2,OTL, +OTL:SP:3377699720881134,1,"Av. de Lombez",43.5945,1.41317,0,0,OTL:SA:1970324837184870,Europe/Paris,0,OTL, +OTL:SP:3377699720881135,1,"Hippodrome",43.5935,1.40714,0,0,OTL:SA:1970324837184871,Europe/Paris,2,OTL, +OTL:SP:3377699720881136,1,"Hippodrome",43.5937,1.40831,0,0,OTL:SA:1970324837184871,Europe/Paris,2,OTL, +OTL:SP:3377699720881137,1,"Brombach",43.593,1.40385,0,0,OTL:SA:1970324837184872,Europe/Paris,2,OTL, +OTL:SP:3377699720881138,1,"Brombach",43.5929,1.40404,0,0,OTL:SA:1970324837184872,Europe/Paris,2,OTL, +OTL:SP:3377699720881139,1,"Pont Rocade",43.5921,1.40016,0,0,OTL:SA:1970324837184873,Europe/Paris,2,OTL, +OTL:SP:3377699720881140,1,"Pont Rocade",43.5922,1.39999,0,0,OTL:SA:1970324837184873,Europe/Paris,2,OTL, +OTL:SP:3377699720881141,1,"Teynier",43.5926,1.39612,0,0,OTL:SA:1970324837184874,Europe/Paris,2,OTL, +OTL:SP:3377699720881142,1,"Teynier",43.5928,1.39575,0,0,OTL:SA:1970324837184874,Europe/Paris,2,OTL, +OTL:SP:3377699720881143,1,"Tissié",43.5932,1.39395,0,0,OTL:SA:1970324837184875,Europe/Paris,2,OTL, +OTL:SP:3377699720881144,1,"Tissié",43.5935,1.39294,0,0,OTL:SA:1970324837184875,Europe/Paris,2,OTL, +OTL:SP:3377699720881145,1,"Cimetière Cornebarrieu",43.6406,1.33109,0,0,OTL:SA:1970324837184876,Europe/Paris,2,OTL, +OTL:SP:3377699720881146,1,"Buette",43.6502,1.34169,0,0,OTL:SA:1970324837184877,Europe/Paris,0,OTL, +OTL:SP:3377699720881147,1,"Centre Aéré",43.5925,1.38806,0,0,OTL:SA:1970329131941942,Europe/Paris,2,OTL, +OTL:SP:3377699720881148,1,"Centre Aéré",43.593,1.38967,0,0,OTL:SA:1970329131941942,Europe/Paris,2,OTL, +OTL:SP:3377699720881149,1,"Eglise Lardenne",43.5909,1.3832,0,0,OTL:SA:1970324837184879,Europe/Paris,2,OTL, +OTL:SP:3377699720881150,1,"Eglise Lardenne",43.5911,1.38433,0,0,OTL:SA:1970324837184879,Europe/Paris,0,OTL, +OTL:SP:3377699720881152,1,"Catala",43.5904,1.38038,0,0,OTL:SA:1970324837184881,Europe/Paris,0,OTL, +OTL:SP:3377699720881153,1,"Catala",43.5904,1.38027,0,0,OTL:SA:1970324837184881,Europe/Paris,0,OTL, +OTL:SP:3377699720881154,1,"Poutier",43.5913,1.3778,0,0,OTL:SA:1970324837184882,Europe/Paris,0,OTL, +OTL:SP:3377699720881155,1,"Poutier",43.5914,1.37773,0,0,OTL:SA:1970324837184882,Europe/Paris,2,OTL, +OTL:SP:3377699720881156,1,"Salinié",43.5931,1.37979,0,0,OTL:SA:1970324837184883,Europe/Paris,0,OTL, +OTL:SP:3377699720881157,1,"Salinié",43.5933,1.38011,0,0,OTL:SA:1970324837184883,Europe/Paris,0,OTL, +OTL:SP:3377699720881159,1,"République",43.6836,1.32005,0,0,OTL:SA:1970324837184884,Europe/Paris,2,OTL, +OTL:SP:3377699720881163,1,"Ecole Police et Cadastre",43.5953,1.38244,0,0,OTL:SA:1970324837184886,Europe/Paris,2,OTL, +OTL:SP:3377699720881164,1,"Ecole Police et Cadastre",43.5945,1.38174,0,0,OTL:SA:1970324837184886,Europe/Paris,0,OTL, +OTL:SP:3377699720881167,1,"St-Exupéry",43.5886,1.35935,0,0,OTL:SA:1970324837184889,Europe/Paris,2,OTL, +OTL:SP:3377699720881168,1,"St-Exupéry",43.5885,1.35954,0,0,OTL:SA:1970324837184889,Europe/Paris,0,OTL, +OTL:SP:3377699720881171,1,"Esquirol",43.6004,1.44402,0,0,OTL:SA:1970324837184892,Europe/Paris,2,OTL, +OTL:SP:3377699720881172,1,"Esquirol",43.6004,1.44402,0,0,OTL:SA:1970324837184892,Europe/Paris,2,OTL, +OTL:SP:3377699720881173,1,"Esquirol",43.6005,1.44393,0,0,OTL:SA:1970324837184892,Europe/Paris,2,OTL, +OTL:SP:3377699720881174,1,"Esquirol",43.6004,1.4447,0,0,OTL:SA:1970324837184892,Europe/Paris,2,OTL, +OTL:SP:3377699720881180,1,"Ecole Récébédou",43.5389,1.40857,0,0,OTL:SA:1970324837184893,Europe/Paris,0,OTL, +OTL:SP:3377699720881181,1,"Ecole Récébédou",43.5387,1.40828,0,0,OTL:SA:1970324837184893,Europe/Paris,2,OTL, +OTL:SP:3377699720881185,1,"Eisenhower",43.5583,1.40144,0,0,OTL:SA:1970324837184895,Europe/Paris,2,OTL, +OTL:SP:3377699720881186,1,"Eisenhower",43.5581,1.40156,0,0,OTL:SA:1970324837184895,Europe/Paris,2,OTL, +OTL:SP:3377699720881187,1,"Place Bouillière",43.5659,1.39497,0,0,OTL:SA:1970324837184896,Europe/Paris,2,OTL, +OTL:SP:3377699720881188,1,"Place Bouillière",43.5668,1.3938,0,0,OTL:SA:1970324837184896,Europe/Paris,0,OTL, +OTL:SP:3377699720881189,1,"Place Bouillière",43.5657,1.39449,0,0,OTL:SA:1970324837184896,Europe/Paris,2,OTL, +OTL:SP:3377699720881190,1,"Place Bouillière",43.5676,1.39295,0,0,OTL:SA:1970324837184896,Europe/Paris,2,OTL, +OTL:SP:3377699720881191,1,"Pont Neuf",43.5993,1.44043,0,0,OTL:SA:1970324837184897,Europe/Paris,2,OTL, +OTL:SP:3377699720881193,1,"Pont Neuf",43.5999,1.4415,0,0,OTL:SA:1970324837184897,Europe/Paris,2,OTL, +OTL:SP:3377699720881194,1,"Pont Neuf",43.5997,1.44091,0,0,OTL:SA:1970324837184897,Europe/Paris,2,OTL, +OTL:SP:3377699720881197,1,"Salengro",43.5415,1.41109,0,0,OTL:SA:1970324837184899,Europe/Paris,0,OTL, +OTL:SP:3377699720881198,1,"Salengro",43.5415,1.41122,0,0,OTL:SA:1970324837184899,Europe/Paris,2,OTL, +OTL:SP:3377699720881199,1,"Cité Scolaire Rive Gauche",43.5842,1.39971,0,0,OTL:SA:1970324837184900,Europe/Paris,2,OTL, +OTL:SP:3377699720881200,1,"Cité Scolaire Rive Gauche",43.5844,1.40005,0,0,OTL:SA:1970324837184900,Europe/Paris,2,OTL, +OTL:SP:3377699720881201,1,"Cité Scolaire Rive Gauche",43.5844,1.4002,0,0,OTL:SA:1970324837184900,Europe/Paris,2,OTL, +OTL:SP:3377699720881204,1,"Mesplé",43.5701,1.38658,0,0,OTL:SA:1970324837184901,Europe/Paris,2,OTL, +OTL:SP:3377699720881205,1,"Mesplé",43.5703,1.38646,0,0,OTL:SA:1970324837184901,Europe/Paris,2,OTL, +OTL:SP:3377699720881208,1,"Ctre Cial Beauzelle",43.67,1.36932,0,0,OTL:SA:1970324837184902,Europe/Paris,2,OTL, +OTL:SP:3377699720881209,1,"Annonciation",43.6793,1.36731,0,0,OTL:SA:1970324837184903,Europe/Paris,2,OTL, +OTL:SP:3377699720881212,1,"Le Lac Reynerie",43.5673,1.40486,0,0,OTL:SA:1970324837184905,Europe/Paris,2,OTL, +OTL:SP:3377699720881213,1,"Le Lac Reynerie",43.5676,1.4033,0,0,OTL:SA:1970324837184905,Europe/Paris,2,OTL, +OTL:SP:3377699720881214,1,"Cité du Parc",43.5686,1.40804,0,0,OTL:SA:1970324837184906,Europe/Paris,2,OTL, +OTL:SP:3377699720881215,1,"Cité du Parc",43.5684,1.40784,0,0,OTL:SA:1970324837184906,Europe/Paris,2,OTL, +OTL:SP:3377699720881216,1,"Kiev",43.5704,1.40853,0,0,OTL:SA:1970324837184907,Europe/Paris,2,OTL, +OTL:SP:3377699720881217,1,"Kiev",43.5706,1.40871,0,0,OTL:SA:1970324837184907,Europe/Paris,2,OTL, +OTL:SP:3377699720881218,1,"Babinet",43.5724,1.40736,0,0,OTL:SA:1970324837184908,Europe/Paris,2,OTL, +OTL:SP:3377699720881219,1,"Babinet",43.5726,1.40731,0,0,OTL:SA:1970324837184908,Europe/Paris,2,OTL, +OTL:SP:3377699720881223,1,"Achiary",43.601,1.47419,0,0,OTL:SA:1970324837184910,Europe/Paris,2,OTL, +OTL:SP:3377699720881224,1,"Achiary",43.6008,1.47413,0,0,OTL:SA:1970324837184910,Europe/Paris,2,OTL, +OTL:SP:3377699720881228,1,"Rixens",43.6272,1.45307,0,0,OTL:SA:1970324837184913,Europe/Paris,2,OTL, +OTL:SP:3377699720881229,1,"Rixens",43.6267,1.45359,0,0,OTL:SA:1970324837184913,Europe/Paris,2,OTL, +OTL:SP:3377699720881231,1,"Arsenal",43.6056,1.43366,0,0,OTL:SA:1970324837184915,Europe/Paris,2,OTL, +OTL:SP:3377699720881232,1,"Ponts Jumeaux",43.6098,1.42023,0,0,OTL:SA:1970324837184916,Europe/Paris,2,OTL, +OTL:SP:3377699720881233,1,"Ponts Jumeaux",43.6101,1.42124,0,0,OTL:SA:1970324837184916,Europe/Paris,2,OTL, +OTL:SP:3377699720881234,1,"Atlanta",43.6424,1.46744,0,0,OTL:SA:1970324837184917,Europe/Paris,2,OTL, +OTL:SP:3377699720881235,1,"Atlanta",43.6433,1.46783,0,0,OTL:SA:1970324837184917,Europe/Paris,2,OTL, +OTL:SP:3377699720881236,1,"L'Union Somport",43.6553,1.4819,0,0,OTL:SA:1970324837184918,Europe/Paris,0,OTL, +OTL:SP:3377699720881237,1,"L'Union Somport",43.655,1.48246,0,0,OTL:SA:1970324837184918,Europe/Paris,0,OTL, +OTL:SP:3377699720881238,1,"Montcalm",43.6535,1.48441,0,0,OTL:SA:1970324837184919,Europe/Paris,2,OTL, +OTL:SP:3377699720881239,1,"Montcalm",43.6533,1.48471,0,0,OTL:SA:1970324837184919,Europe/Paris,2,OTL, +OTL:SP:3377699720881240,1,"Bayonne",43.6504,1.47161,0,0,OTL:SA:1970324837184920,Europe/Paris,2,OTL, +OTL:SP:3377699720881241,1,"Bayonne",43.6492,1.47125,0,0,OTL:SA:1970324837184920,Europe/Paris,2,OTL, +OTL:SP:3377699720881242,1,"Bayonne",43.6503,1.47231,0,0,OTL:SA:1970324837184920,Europe/Paris,0,OTL, +OTL:SP:3377699720881244,1,"Caunes",43.6405,1.46937,0,0,OTL:SA:1970324837184921,Europe/Paris,2,OTL, +OTL:SP:3377699720881245,1,"Caunes",43.6403,1.46965,0,0,OTL:SA:1970324837184921,Europe/Paris,2,OTL, +OTL:SP:3377699720881246,1,"Ohnet",43.6384,1.47152,0,0,OTL:SA:1970324837184922,Europe/Paris,2,OTL, +OTL:SP:3377699720881247,1,"Ohnet",43.6389,1.471,0,0,OTL:SA:1970324837184922,Europe/Paris,2,OTL, +OTL:SP:3377699720881248,1,"Vasseur",43.6363,1.47279,0,0,OTL:SA:1970324837184923,Europe/Paris,2,OTL, +OTL:SP:3377699720881249,1,"Vasseur",43.6351,1.47323,0,0,OTL:SA:1970324837184923,Europe/Paris,2,OTL, +OTL:SP:3377699720881250,1,"Cambard",43.6294,1.47642,0,0,OTL:SA:1970324837184924,Europe/Paris,2,OTL, +OTL:SP:3377699720881251,1,"Cambard",43.6293,1.47632,0,0,OTL:SA:1970324837184924,Europe/Paris,2,OTL, +OTL:SP:3377699720881260,1,"L'Union Malbou",43.6615,1.48366,0,0,OTL:SA:1970324837184929,Europe/Paris,2,OTL, +OTL:SP:3377699720881264,1,"Jeanne d'Arc",43.6093,1.44639,0,0,OTL:SA:1970324837184932,Europe/Paris,0,OTL, +OTL:SP:3377699720881265,1,"Jeanne d'Arc",43.6089,1.44613,0,0,OTL:SA:1970324837184932,Europe/Paris,0,OTL, +OTL:SP:3377699720881266,1,"Jeanne d'Arc",43.609,1.44624,0,0,OTL:SA:1970324837184932,Europe/Paris,0,OTL, +OTL:SP:3377699720881267,1,"Jeanne d'Arc",43.6093,1.4466,0,0,OTL:SA:1970324837184932,Europe/Paris,0,OTL, +OTL:SP:3377699720881268,1,"Jeanne d'Arc",43.6092,1.44513,0,0,OTL:SA:1970324837184932,Europe/Paris,2,OTL, +OTL:SP:3377699720881269,1,"Jeanne d'Arc",43.6096,1.44656,0,0,OTL:SA:1970324837184932,Europe/Paris,0,OTL, +OTL:SP:3377699720881270,1,"Jeanne d'Arc",43.6092,1.44587,0,0,OTL:SA:1970324837184932,Europe/Paris,2,OTL, +OTL:SP:3377699720881271,1,"Jeanne d'Arc",43.609,1.44631,0,0,OTL:SA:1970324837184932,Europe/Paris,0,OTL, +OTL:SP:3377699720881272,1,"Jeanne d'Arc",43.6091,1.44643,0,0,OTL:SA:1970324837184932,Europe/Paris,0,OTL, +OTL:SP:3377699720881273,1,"Jeanne d'Arc",43.6089,1.44511,0,0,OTL:SA:1970324837184932,Europe/Paris,2,OTL, +OTL:SP:3377699720881281,1,"Théodore de Banville",43.6404,1.46608,0,0,OTL:SA:1970324837184934,Europe/Paris,0,OTL, +OTL:SP:3377699720881282,1,"Théodore de Banville",43.6408,1.46652,0,0,OTL:SA:1970324837184934,Europe/Paris,2,OTL, +OTL:SP:3377699720881283,1,"St-Jean Clinique de L'Union",43.6507,1.50966,0,0,OTL:SA:1970324837184935,Europe/Paris,2,OTL, +OTL:SP:3377699720881284,1,"St-Jean Lestang",43.6708,1.50042,0,0,OTL:SA:1970324837184936,Europe/Paris,0,OTL, +OTL:SP:3377699720881289,1,"St-Geniès",43.6843,1.48628,0,0,OTL:SA:1970324837184940,Europe/Paris,2,OTL, +OTL:SP:3377699720881290,1,"St-Geniès",43.6831,1.48538,0,0,OTL:SA:1970324837184940,Europe/Paris,2,OTL, +OTL:SP:3377699720881291,1,"Lapeyrouse",43.695,1.51617,0,0,OTL:SA:1970324837184941,Europe/Paris,2,OTL, +OTL:SP:3377699720881298,1,"Grand Rond",43.5964,1.45401,0,0,OTL:SA:1970324837184947,Europe/Paris,0,OTL, +OTL:SP:3377699720881299,1,"Grand Rond",43.5945,1.45245,0,0,OTL:SA:1970324837184947,Europe/Paris,2,OTL, +OTL:SP:3377699720881301,1,"Grand Rond",43.5955,1.45404,0,0,OTL:SA:1970324837184947,Europe/Paris,2,OTL, +OTL:SP:3377699720881304,1,"Conseil Régional",43.5891,1.4406,0,0,OTL:SA:1970324837184950,Europe/Paris,2,OTL, +OTL:SP:3377699720881305,1,"Conseil Régional",43.5881,1.43946,0,0,OTL:SA:1970324837184950,Europe/Paris,2,OTL, +OTL:SP:3377699720881306,1,"Lardenne Barigoude",43.5899,1.37437,0,0,OTL:SA:1970324837184951,Europe/Paris,2,OTL, +OTL:SP:3377699720881307,1,"Lardenne Barigoude",43.5899,1.37309,0,0,OTL:SA:1970324837184951,Europe/Paris,2,OTL, +OTL:SP:3377699720881319,1,"Colombette",43.6058,1.45623,0,0,OTL:SA:1970324837184954,Europe/Paris,2,OTL, +OTL:SP:3377699720881320,1,"Colombette",43.606,1.45673,0,0,OTL:SA:1970324837184954,Europe/Paris,0,OTL, +OTL:SP:3377699720881321,1,"Guilhemery",43.6019,1.45646,0,0,OTL:SA:1970324837184955,Europe/Paris,2,OTL, +OTL:SP:3377699720881323,1,"Guilhemery",43.6036,1.45721,0,0,OTL:SA:1970324837184955,Europe/Paris,2,OTL, +OTL:SP:3377699720881324,1,"Pont Matabiau",43.6135,1.45029,0,0,OTL:SA:1970324837184956,Europe/Paris,2,OTL, +OTL:SP:3377699720881327,1,"Pont Matabiau",43.6138,1.45137,0,0,OTL:SA:1970324837184956,Europe/Paris,2,OTL, +OTL:SP:3377699720881328,1,"Pont Matabiau",43.6142,1.44966,0,0,OTL:SA:1970324837184956,Europe/Paris,2,OTL, +OTL:SP:3377699720881329,1,"Pont Matabiau",43.6135,1.44999,0,0,OTL:SA:1970324837184956,Europe/Paris,2,OTL, +OTL:SP:3377699720881330,1,"Amat Massot",43.6256,1.43937,0,0,OTL:SA:1970324837184957,Europe/Paris,0,OTL, +OTL:SP:3377699720881331,1,"Trois Cocus",43.639,1.44418,0,0,OTL:SA:1970324837184958,Europe/Paris,2,OTL, +OTL:SP:3377699720881332,1,"Trois Cocus",43.6379,1.44418,0,0,OTL:SA:1970324837184958,Europe/Paris,2,OTL, +OTL:SP:3377699720881334,1,"Les Sables",43.6542,1.44539,0,0,OTL:SA:1970324837184959,Europe/Paris,0,OTL, +OTL:SP:3377699720881335,1,"Les Sables",43.6559,1.44632,0,0,OTL:SA:1970324837184959,Europe/Paris,0,OTL, +OTL:SP:3377699720881349,1,"Lumière",43.6594,1.45143,0,0,OTL:SA:1970324837184970,Europe/Paris,2,OTL, +OTL:SP:3377699720881350,1,"Lumière",43.6594,1.45104,0,0,OTL:SA:1970324837184970,Europe/Paris,2,OTL, +OTL:SP:3377699720881352,1,"Van Dyck",43.64,1.43932,0,0,AEC:SA:02107,Europe/Paris,0,OTL, +OTL:SP:3377699720881353,1,"Van Dyck",43.6406,1.44036,0,0,AEC:SA:02107,Europe/Paris,2,OTL, +OTL:SP:3377699720881356,1,"Eglise Minimes",43.6187,1.437,0,0,AEC:SA:01987,Europe/Paris,0,OTL, +OTL:SP:3377699720881357,1,"Eglise Minimes",43.6181,1.43652,0,0,AEC:SA:01987,Europe/Paris,2,OTL, +OTL:SP:3377699720881358,1,"Eglise Minimes",43.6181,1.43667,0,0,AEC:SA:01987,Europe/Paris,2,OTL, +OTL:SP:3377699720881359,1,"Mairie Launaguet",43.6739,1.45572,0,0,OTL:SA:1970324837184975,Europe/Paris,0,OTL, +OTL:SP:3377699720881360,1,"Mairie Launaguet",43.6739,1.45593,0,0,OTL:SA:1970324837184975,Europe/Paris,2,OTL, +OTL:SP:3377699720881361,1,"Pechbonnieu Mairie",43.7032,1.46681,0,0,OTL:SA:1970324837184976,Europe/Paris,2,OTL, +OTL:SP:3377699720881362,1,"Pechbonnieu Mairie",43.7031,1.46692,0,0,OTL:SA:1970324837184976,Europe/Paris,2,OTL, +OTL:SP:3377699720881364,1,"St-Loup",43.6966,1.47932,0,0,OTL:SA:1970324840530367,Europe/Paris,2,OTL, +OTL:SP:3377699720881367,1,"Montberon",43.7181,1.48196,0,0,OTL:SA:1970324837184978,Europe/Paris,2,OTL, +OTL:SP:3377699720881369,1,"Lycée Toulouse-Lautrec",43.6267,1.44342,0,0,AEC:SA:02045,Europe/Paris,2,OTL, +OTL:SP:3377699720881370,1,"Collège Rosa Parks",43.6436,1.43352,0,0,OTL:SA:1970324839976622,Europe/Paris,0,OTL, +OTL:SP:3377699720881371,1,"Collège Rosa Parks",43.6435,1.43341,0,0,OTL:SA:1970324839976622,Europe/Paris,2,OTL, +OTL:SP:3377699720881372,1,"Lapin",43.6525,1.43257,0,0,OTL:SA:1970324837184981,Europe/Paris,2,OTL, +OTL:SP:3377699720881373,1,"Lapin",43.6512,1.43257,0,0,OTL:SA:1970324837184981,Europe/Paris,2,OTL, +OTL:SP:3377699720881374,1,"Mairie Aucamville",43.6686,1.42884,0,0,OTL:SA:1970324837184982,Europe/Paris,2,OTL, +OTL:SP:3377699720881375,1,"Mairie Aucamville",43.6676,1.42938,0,0,OTL:SA:1970324837184982,Europe/Paris,2,OTL, +OTL:SP:3377699720881377,1,"Mairie Castelginest",43.6932,1.42955,0,0,OTL:SA:1970324837184983,Europe/Paris,2,OTL, +OTL:SP:3377699720881378,1,"Mairie Castelginest",43.6932,1.42934,0,0,OTL:SA:1970324837184983,Europe/Paris,2,OTL, +OTL:SP:3377699720881380,1,"Gratentour Gravette",43.7154,1.4203,0,0,OTL:SA:1970324837184984,Europe/Paris,2,OTL, +OTL:SP:3377699720881381,1,"Castelginest Buffebiau",43.6855,1.44628,0,0,OTL:SA:1970324837184985,Europe/Paris,2,OTL, +OTL:SP:3377699720881382,1,"Mairie St-Alban",43.6928,1.41419,0,0,AEC:SA:01653,Europe/Paris,0,OTL, +OTL:SP:3377699720881383,1,"Mairie St-Alban",43.6931,1.41296,0,0,AEC:SA:01653,Europe/Paris,0,OTL, +OTL:SP:3377699720881384,1,"Mairie St-Alban",43.6927,1.41385,0,0,AEC:SA:01653,Europe/Paris,0,OTL, +OTL:SP:3377699720881385,1,"Mairie St-Alban",43.6936,1.41248,0,0,AEC:SA:01653,Europe/Paris,2,OTL, +OTL:SP:3377699720881386,1,"Bruguières",43.7218,1.41129,0,0,OTL:SA:1970324837184987,Europe/Paris,2,OTL, +OTL:SP:3377699720881387,1,"Fenouillet Croix",43.6849,1.38166,0,0,OTL:SA:1970324837184988,Europe/Paris,2,OTL, +OTL:SP:3377699720881388,1,"Fenouillet Croix",43.6841,1.3822,0,0,OTL:SA:1970324837184988,Europe/Paris,2,OTL, +OTL:SP:3377699720881389,1,"République",43.6979,1.3744,0,0,OTL:SA:1970324837184989,Europe/Paris,0,OTL, +OTL:SP:3377699720881390,1,"République",43.6978,1.37427,0,0,OTL:SA:1970324837184989,Europe/Paris,0,OTL, +OTL:SP:3377699720881391,1,"Lespinasse Viguerie",43.714,1.39154,0,0,OTL:SA:1970324837184990,Europe/Paris,0,OTL, +OTL:SP:3377699720881394,1,"Beauté",43.7101,1.37005,0,0,OTL:SA:1970324837184991,Europe/Paris,2,OTL, +OTL:SP:3377699720881395,1,"Beauté",43.7101,1.37007,0,0,OTL:SA:1970324837184991,Europe/Paris,0,OTL, +OTL:SP:3377699720881402,1,"Cours Dillon",43.5986,1.43669,0,0,OTL:SA:1970324837184995,Europe/Paris,2,OTL, +OTL:SP:3377699720881404,1,"Cours Dillon",43.5988,1.43749,0,0,OTL:SA:1970324837184995,Europe/Paris,2,OTL, +OTL:SP:3377699720881406,1,"Cours Dillon",43.5989,1.43739,0,0,OTL:SA:1970324837184995,Europe/Paris,2,OTL, +OTL:SP:3377699720881407,1,"Cours Dillon",43.5988,1.43603,0,0,OTL:SA:1970324837184995,Europe/Paris,2,OTL, +OTL:SP:3377699720881408,1,"Cours Dillon",43.5983,1.43726,0,0,OTL:SA:1970324837184995,Europe/Paris,2,OTL, +OTL:SP:3377699720881415,1,"Jolimont",43.6154,1.46421,0,0,OTL:SA:1970324837185002,Europe/Paris,2,OTL, +OTL:SP:3377699720881419,1,"Jolimont",43.6153,1.4632,0,0,OTL:SA:1970324837185002,Europe/Paris,2,OTL, +OTL:SP:3377699720881420,1,"Jolimont",43.6153,1.4632,0,0,OTL:SA:1970324837185002,Europe/Paris,2,OTL, +OTL:SP:3377699720881425,1,"Fontaine Lestang",43.5875,1.41827,0,0,OTL:SA:1970324837185007,Europe/Paris,2,OTL, +OTL:SP:3377699720881426,1,"Fontaine Lestang",43.5875,1.41827,0,0,OTL:SA:1970324837185007,Europe/Paris,2,OTL, +OTL:SP:3377699720881433,1,"Mermoz",43.5834,1.41549,0,0,OTL:SA:1970324837185008,Europe/Paris,2,OTL, +OTL:SP:3377699720881434,1,"Mermoz",43.5834,1.41549,0,0,OTL:SA:1970324837185008,Europe/Paris,2,OTL, +OTL:SP:3377699720881435,1,"Mirail-Université",43.5744,1.402,0,0,OTL:SA:1970324837185009,Europe/Paris,2,OTL, +OTL:SP:3377699720881436,1,"Mirail-Université",43.5743,1.40169,0,0,OTL:SA:1970324837185009,Europe/Paris,2,OTL, +OTL:SP:3377699720881438,1,"Mirail-Université",43.5747,1.40213,0,0,OTL:SA:1970324837185009,Europe/Paris,2,OTL, +OTL:SP:3377699720881439,1,"Mirail-Université",43.5747,1.40213,0,0,OTL:SA:1970324837185009,Europe/Paris,2,OTL, +OTL:SP:3377699720881440,1,"Reynerie",43.571,1.40198,0,0,OTL:SA:1970324837185010,Europe/Paris,2,OTL, +OTL:SP:3377699720881441,1,"Reynerie",43.571,1.40198,0,0,OTL:SA:1970324837185010,Europe/Paris,2,OTL, +OTL:SP:3377699720881443,1,"Bellefontaine",43.5657,1.39907,0,0,OTL:SA:1970324837185011,Europe/Paris,0,OTL, +OTL:SP:3377699720881444,1,"Bellefontaine",43.5657,1.39958,0,0,OTL:SA:1970324837185011,Europe/Paris,0,OTL, +OTL:SP:3377699720881445,1,"Bellefontaine",43.5662,1.39883,0,0,OTL:SA:1970324837185011,Europe/Paris,2,OTL, +OTL:SP:3377699720881446,1,"Bellefontaine",43.5662,1.39883,0,0,OTL:SA:1970324837185011,Europe/Paris,2,OTL, +OTL:SP:3377699720881450,1,"Université Paul Sabatier",43.5604,1.46341,0,0,OTL:SA:1970324837185012,Europe/Paris,2,OTL, +OTL:SP:3377699720881451,1,"Université Paul Sabatier",43.5612,1.46269,0,0,OTL:SA:1970324837185012,Europe/Paris,2,OTL, +OTL:SP:3377699720881452,1,"Université Paul Sabatier",43.5605,1.46352,0,0,OTL:SA:1970324837185012,Europe/Paris,2,OTL, +OTL:SP:3377699720881456,1,"Portet H. Boucher",43.5147,1.38768,0,0,OTL:SA:1970324837185015,Europe/Paris,2,OTL, +OTL:SP:3377699720881460,1,"Espace Garonne",43.6994,1.37176,0,0,OTL:SA:1970324837185016,Europe/Paris,2,OTL, +OTL:SP:3377699720881461,1,"Espace Garonne",43.6991,1.37211,0,0,OTL:SA:1970324837185016,Europe/Paris,2,OTL, +OTL:SP:3377699720881463,1,"Carmes",43.5984,1.44557,0,0,OTL:SA:1970324837185017,Europe/Paris,2,OTL, +OTL:SP:3377699720881464,1,"Carmes",43.5985,1.44565,0,0,OTL:SA:1970324837185017,Europe/Paris,2,OTL, +OTL:SP:3377699720881465,1,"Mairie La Salvetat",43.578,1.2726,0,0,OTL:SA:1970324837185018,Europe/Paris,2,OTL, +OTL:SP:3377699720881488,1,"Héraclès",43.6077,1.42782,0,0,OTL:SA:1970324837185029,Europe/Paris,2,OTL, +OTL:SP:3377699720881489,1,"Héraclès",43.6086,1.42952,0,0,OTL:SA:1970324837185029,Europe/Paris,2,OTL, +OTL:SP:3377699720881506,1,"A. Bernard",43.6115,1.43943,0,0,OTL:SA:1970324837185045,Europe/Paris,2,OTL, +OTL:SP:3377699720881507,1,"A. Bernard",43.6114,1.43807,0,0,OTL:SA:1970324837185045,Europe/Paris,2,OTL, +OTL:SP:3377699720881508,1,"A. Bernard",43.6117,1.43908,0,0,OTL:SA:1970324837185045,Europe/Paris,2,OTL, +OTL:SP:3377699720881510,1,"Barrière de Paris",43.6269,1.43437,0,0,OTL:SA:1970324837185046,Europe/Paris,2,OTL, +OTL:SP:3377699720881511,1,"Barrière de Paris",43.6261,1.43395,0,0,OTL:SA:1970324837185046,Europe/Paris,2,OTL, +OTL:SP:3377699720881512,1,"Barrière de Paris",43.6261,1.43394,0,0,OTL:SA:1970324837185046,Europe/Paris,2,OTL, +OTL:SP:3377699720881513,1,"Fenouillet Ctre Cial",43.6871,1.40394,0,0,OTL:SA:1970324837185047,Europe/Paris,2,OTL, +OTL:SP:3377699720881514,1,"Fenouillet Ctre Cial",43.6872,1.40375,0,0,OTL:SA:1970324837185047,Europe/Paris,2,OTL, +OTL:SP:3377699720881531,1,"Plaisance Accueil",43.5647,1.29738,0,0,OTL:SA:1970324837185060,Europe/Paris,2,OTL, +OTL:SP:3377699720881532,1,"Plaisance Accueil",43.5648,1.29736,0,0,OTL:SA:1970324837185060,Europe/Paris,2,OTL, +OTL:SP:3377699720881533,1,"Plaisance Monestié",43.5629,1.29036,0,0,OTL:SA:1970324837185061,Europe/Paris,2,OTL, +OTL:SP:3377699720881538,1,"Taure",43.5833,1.27828,0,0,OTL:SA:1970324837185065,Europe/Paris,2,OTL, +OTL:SP:3377699720881545,1,"Stade",43.6152,1.27598,0,0,OTL:SA:1970324837185071,Europe/Paris,0,OTL, +OTL:SP:3377699720881546,1,"Basilique",43.6179,1.28327,0,0,OTL:SA:1970324837185072,Europe/Paris,0,OTL, +OTL:SP:3377699720881548,1,"Lycée International",43.613,1.30828,0,0,OTL:SA:1970324837185074,Europe/Paris,2,OTL, +OTL:SP:3377699720881549,1,"Bascule - Seycheron",43.6087,1.34068,0,0,OTL:SA:1970329131942324,Europe/Paris,2,OTL, +OTL:SP:3377699720881550,1,"Bascule - Seycheron",43.6087,1.34081,0,0,OTL:SA:1970329131942324,Europe/Paris,2,OTL, +OTL:SP:3377699720881554,1,"Niel",43.4616,1.32448,0,0,OTL:SA:1970324837185077,Europe/Paris,0,OTL, +OTL:SP:3377699720881555,1,"Muret Lycée",43.4543,1.33017,0,0,OTL:SA:1970324837185078,Europe/Paris,2,OTL, +OTL:SP:3377699720881562,1,"Roquettes Eglise",43.4997,1.36492,0,0,OTL:SA:1970324837185081,Europe/Paris,0,OTL, +OTL:SP:3377699720881563,1,"Roques Acacias",43.5017,1.36162,0,0,OTL:SA:1970324837185082,Europe/Paris,2,OTL, +OTL:SP:3377699720881565,1,"Pyrénées",43.513,1.38748,0,0,OTL:SA:1970329131942136,Europe/Paris,2,OTL, +OTL:SP:3377699720881566,1,"Mairie Pinsaguel",43.5074,1.39049,0,0,OTL:SA:1970329131942061,Europe/Paris,2,OTL, +OTL:SP:3377699720881567,1,"Mairie Pinsaguel",43.5071,1.39059,0,0,OTL:SA:1970329131942061,Europe/Paris,0,OTL, +OTL:SP:3377699720881568,1,"Pinsaguel Tilleuls",43.4998,1.39493,0,0,OTL:SA:1970324837185085,Europe/Paris,0,OTL, +OTL:SP:3377699720881576,1,"Eglise Escalquens",43.5175,1.56111,0,0,OTL:SA:1970324837185091,Europe/Paris,0,OTL, +OTL:SP:3377699720881577,1,"Eglise Escalquens",43.5179,1.56164,0,0,OTL:SA:1970324837185091,Europe/Paris,2,OTL, +OTL:SP:3377699720881619,1,"Ctre Cial Portet - Entrée 1",43.5321,1.40562,0,0,OTL:SA:1970324837185123,Europe/Paris,2,OTL, +OTL:SP:3377699720881620,1,"Ctre Cial Portet - Entrée 1",43.5318,1.40518,0,0,OTL:SA:1970324837185123,Europe/Paris,2,OTL, +OTL:SP:3377699720881633,1,"Salle Gascogne",43.6096,1.3277,0,0,OTL:SA:1970324837185136,Europe/Paris,2,OTL, +OTL:SP:3377699720881634,1,"Val D'Aran",43.6117,1.33032,0,0,OTL:SA:1970324837186554,Europe/Paris,2,OTL, +OTL:SP:3377699720881635,1,"Val D'Aran",43.6113,1.32973,0,0,OTL:SA:1970324837186554,Europe/Paris,2,OTL, +OTL:SP:3377699720881641,1,"Mairie Ramonville",43.5454,1.47521,0,0,OTL:SA:1970324837185141,Europe/Paris,2,OTL, +OTL:SP:3377699720881642,1,"Mairie Ramonville",43.5458,1.47491,0,0,OTL:SA:1970324837185141,Europe/Paris,2,OTL, +OTL:SP:3377699720881643,1,"Grand Chemin",43.5279,1.49003,0,0,OTL:SA:1970324837185142,Europe/Paris,2,OTL, +OTL:SP:3377699720881644,1,"Grand Chemin",43.5279,1.48998,0,0,OTL:SA:1970324837185142,Europe/Paris,2,OTL, +OTL:SP:3377699720881645,1,"Halles",43.5156,1.49877,0,0,OTL:SA:1970324840530375,Europe/Paris,2,OTL, +OTL:SP:3377699720881646,1,"Le Merlet",43.504,1.50967,0,0,OTL:SA:1970324837185144,Europe/Paris,2,OTL, +OTL:SP:3377699720881647,1,"Le Merlet",43.5044,1.51012,0,0,OTL:SA:1970324837185144,Europe/Paris,0,OTL, +OTL:SP:3377699720881648,1,"Rodoloze",43.4951,1.52031,0,0,OTL:SA:1970324837185145,Europe/Paris,2,OTL, +OTL:SP:3377699720881649,1,"Rodoloze",43.4951,1.52053,0,0,OTL:SA:1970324837185145,Europe/Paris,2,OTL, +OTL:SP:3377699720881651,1,"Les Violettes",43.4866,1.53144,0,0,AEC:SA:00586,Europe/Paris,0,OTL, +OTL:SP:3377699720881652,1,"Mairie Donneville",43.474,1.55006,0,0,OTL:SA:1970324837185147,Europe/Paris,0,OTL, +OTL:SP:3377699720881654,1,"Ourmets",43.4419,1.59884,0,0,OTL:SA:1970324837185149,Europe/Paris,0,OTL, +OTL:SP:3377699720881732,1,"Mairie St-Jean",43.6652,1.50446,0,0,OTL:SA:1970324837185192,Europe/Paris,0,OTL, +OTL:SP:3377699720881733,1,"Mairie St-Jean",43.6653,1.50524,0,0,OTL:SA:1970324837185192,Europe/Paris,2,OTL, +OTL:SP:3377699720881734,1,"Mairie St-Jean",43.6657,1.50428,0,0,OTL:SA:1970324837185192,Europe/Paris,0,OTL, +OTL:SP:3377699720881735,1,"St-Jean F. Mitterrand",43.6649,1.50614,0,0,OTL:SA:1970324840530366,Europe/Paris,2,OTL, +OTL:SP:3377699720881737,1,"Castelmaurou Mairie",43.6786,1.53193,0,0,OTL:SA:1970324837185193,Europe/Paris,0,OTL, +OTL:SP:3377699720881773,1,"Croix de Pierre",43.5845,1.42782,0,0,OTL:SA:1970324837185229,Europe/Paris,2,OTL, +OTL:SP:3377699720881774,1,"Croix de Pierre",43.5857,1.42763,0,0,OTL:SA:1970324837185229,Europe/Paris,2,OTL, +OTL:SP:3377699720881776,1,"Croix de Pierre",43.5856,1.42778,0,0,OTL:SA:1970324837185229,Europe/Paris,2,OTL, +OTL:SP:3377699720881780,1,"Les Chênes",43.5849,1.34478,0,0,OTL:SA:1970324837185233,Europe/Paris,2,OTL, +OTL:SP:3377699720881781,1,"Les Chênes",43.5845,1.34458,0,0,OTL:SA:1970324837185233,Europe/Paris,2,OTL, +OTL:SP:3377699720881797,1,"Hôpital Purpan",43.6072,1.39698,0,0,OTL:SA:1970324837185244,Europe/Paris,2,OTL, +OTL:SP:3377699720881798,1,"Hôpital Purpan",43.6075,1.39841,0,0,OTL:SA:1970324837185244,Europe/Paris,2,OTL, +OTL:SP:3377699720881799,1,"Hôpital Purpan",43.6076,1.39785,0,0,OTL:SA:1970324837185244,Europe/Paris,2,OTL, +OTL:SP:3377699720881807,1,"Cantal",43.6113,1.33723,0,0,OTL:SA:1970324837185251,Europe/Paris,0,OTL, +OTL:SP:3377699720881817,1,"En Sigal",43.6052,1.32643,0,0,OTL:SA:1970324837185261,Europe/Paris,2,OTL, +OTL:SP:3377699720881818,1,"En Sigal",43.6053,1.32651,0,0,OTL:SA:1970324837185261,Europe/Paris,2,OTL, +OTL:SP:3377699720881825,1,"Morbihan",43.6173,1.31906,0,0,OTL:SA:1970329131942327,Europe/Paris,2,OTL, +OTL:SP:3377699720881837,1,"St-Orens Eglise",43.5522,1.54171,0,0,OTL:SA:1970324837185278,Europe/Paris,2,OTL, +OTL:SP:3377699720881838,1,"St-Orens Lycée",43.5405,1.54823,0,0,OTL:SA:1970324837185279,Europe/Paris,2,OTL, +OTL:SP:3377699720881840,1,"Pins",43.5398,1.54751,0,0,OTL:SA:1970324840530379,Europe/Paris,2,OTL, +OTL:SP:3377699720881855,1,"Labège Innopole Gare SNCF",43.5479,1.51376,0,0,OTL:SA:1970324837185293,Europe/Paris,2,OTL, +OTL:SP:3377699720881856,1,"Labège Innopole Gare SNCF",43.5481,1.51364,0,0,OTL:SA:1970324837185293,Europe/Paris,2,OTL, +OTL:SP:3377699720881862,1,"Lalande",43.5489,1.51325,0,0,OTL:SA:1970324840530364,Europe/Paris,2,OTL, +OTL:SP:3377699720881863,1,"Lalande",43.5488,1.51325,0,0,OTL:SA:1970324840530364,Europe/Paris,2,OTL, +OTL:SP:3377699720881868,1,"Gare SNCF Escalquens",43.5179,1.54204,0,0,OTL:SA:1970324837185295,Europe/Paris,0,OTL, +OTL:SP:3377699720881873,1,"Les Canavères",43.4817,1.57201,0,0,OTL:SA:1970324837185296,Europe/Paris,2,OTL, +OTL:SP:3377699720881874,1,"Les Canavères",43.4819,1.57225,0,0,OTL:SA:1970324837185296,Europe/Paris,2,OTL, +OTL:SP:3377699720881875,1,"Gare SNCF Baziège",43.4535,1.62103,0,0,STE:SA:OCE87611723,Europe/Paris,0,OTL, +OTL:SP:3377699720881903,1,"Ecole Baziège",43.4537,1.61295,0,0,OTL:SA:1970324837185306,Europe/Paris,2,OTL, +OTL:SP:3377699720881906,1,"Village Montlaur",43.4886,1.56924,0,0,OTL:SA:1970324837185309,Europe/Paris,2,OTL, +OTL:SP:3377699720881907,1,"Village Montlaur",43.489,1.56907,0,0,OTL:SA:1970324837185309,Europe/Paris,2,OTL, +OTL:SP:3377699720881911,1,"Trois Fours",43.5875,1.46147,0,0,OTL:SA:1970324837185312,Europe/Paris,2,OTL, +OTL:SP:3377699720881912,1,"Trois Fours",43.5872,1.46192,0,0,OTL:SA:1970324837185312,Europe/Paris,2,OTL, +OTL:SP:3377699720881916,1,"Escalquens La Caprice",43.5315,1.55221,0,0,OTL:SA:1970324837185314,Europe/Paris,2,OTL, +OTL:SP:3377699720881918,1,"Montaudran-La Rivière",43.5716,1.4977,0,0,OTL:SA:1970324837185315,Europe/Paris,2,OTL, +OTL:SP:3377699720881919,1,"Montaudran-La Rivière",43.5708,1.49923,0,0,OTL:SA:1970324837185315,Europe/Paris,2,OTL, +OTL:SP:3377699720881920,1,"Labège Couder",43.5423,1.53255,0,0,OTL:SA:1970324837185316,Europe/Paris,0,OTL, +OTL:SP:3377699720881977,1,"Récollets Daste",43.5837,1.44314,0,0,OTL:SA:1970324837185348,Europe/Paris,2,OTL, +OTL:SP:3377699720881979,1,"Récollets Daste",43.5842,1.44316,0,0,OTL:SA:1970324837185348,Europe/Paris,2,OTL, +OTL:SP:3377699720881987,1,"Amouroux",43.6299,1.46651,0,0,OTL:SA:1970324837185353,Europe/Paris,2,OTL, +OTL:SP:3377699720881988,1,"Cité Amouroux",43.6299,1.46882,0,0,OTL:SA:1970324840530368,Europe/Paris,2,OTL, +OTL:SP:3377699720881991,1,"Pouvourville",43.5468,1.45314,0,0,OTL:SA:1970324837185355,Europe/Paris,2,OTL, +OTL:SP:3377699720881992,1,"Pouvourville",43.5468,1.45312,0,0,OTL:SA:1970324837185355,Europe/Paris,2,OTL, +OTL:SP:3377699720881993,1,"Gleyze-Vieille",43.547,1.46618,0,0,OTL:SA:1970324837185356,Europe/Paris,0,OTL, +OTL:SP:3377699720881997,1,"Faculté de Pharmacie",43.568,1.46428,0,0,OTL:SA:1970324837185357,Europe/Paris,2,OTL, +OTL:SP:3377699720881998,1,"Faculté de Pharmacie",43.5674,1.46424,0,0,OTL:SA:1970324837185357,Europe/Paris,2,OTL, +OTL:SP:3377699720881999,1,"Leclerc",43.6093,1.43235,0,0,OTL:SA:1970324837185358,Europe/Paris,2,OTL, +OTL:SP:3377699720882001,1,"Leclerc",43.6092,1.43213,0,0,OTL:SA:1970324837185358,Europe/Paris,2,OTL, +OTL:SP:3377699720882004,1,"Leclerc",43.6094,1.43143,0,0,OTL:SA:1970324837185358,Europe/Paris,2,OTL, +OTL:SP:3377699720882005,1,"Complexe Agricole",43.5343,1.48473,0,0,OTL:SA:1970324837185359,Europe/Paris,2,OTL, +OTL:SP:3377699720882006,1,"Complexe Agricole",43.5343,1.4847,0,0,OTL:SA:1970324837185359,Europe/Paris,2,OTL, +OTL:SP:3377699720882007,1,"Auzeville Eglise",43.5263,1.48653,0,0,OTL:SA:1970324837185360,Europe/Paris,0,OTL, +OTL:SP:3377699720882008,1,"Les Genêts",43.523,1.50354,0,0,OTL:SA:1970324837185361,Europe/Paris,2,OTL, +OTL:SP:3377699720882009,1,"Les Genêts",43.5234,1.50329,0,0,OTL:SA:1970324837185361,Europe/Paris,2,OTL, +OTL:SP:3377699720882012,1,"Cité de l'Hers",43.5961,1.48452,0,0,OTL:SA:1970324837185362,Europe/Paris,2,OTL, +OTL:SP:3377699720882013,1,"Iliade",43.5962,1.48529,0,0,OTL:SA:1970324840530371,Europe/Paris,2,OTL, +OTL:SP:3377699720882014,1,"Iliade",43.5961,1.48533,0,0,OTL:SA:1970324840530371,Europe/Paris,2,OTL, +OTL:SP:3377699720882015,1,"Entiore",43.5798,1.51061,0,0,OTL:SA:1970324837185363,Europe/Paris,2,OTL, +OTL:SP:3377699720882016,1,"Lauragais",43.5866,1.53391,0,0,OTL:SA:1970324837185364,Europe/Paris,2,OTL, +OTL:SP:3377699720882019,1,"Mairie Flourens",43.5946,1.56186,0,0,OTL:SA:1970324837185365,Europe/Paris,2,OTL, +OTL:SP:3377699720882020,1,"Eglise Drémil",43.5969,1.60205,0,0,OTL:SA:1970324837185366,Europe/Paris,2,OTL, +OTL:SP:3377699720882021,1,"Eglise Balma",43.6098,1.49812,0,0,OTL:SA:1970324837185367,Europe/Paris,2,OTL, +OTL:SP:3377699720882022,1,"Eglise Balma",43.6099,1.49793,0,0,OTL:SA:1970324837185367,Europe/Paris,2,OTL, +OTL:SP:3377699720882025,1,"Balma Lasbordes",43.5965,1.50588,0,0,OTL:SA:1970324837185368,Europe/Paris,2,OTL, +OTL:SP:3377699720882026,1,"Saliège",43.6061,1.4922,0,0,OTL:SA:1970324837185369,Europe/Paris,2,OTL, +OTL:SP:3377699720882027,1,"Saliège",43.6061,1.49228,0,0,OTL:SA:1970324837185369,Europe/Paris,2,OTL, +OTL:SP:3377699720882028,1,"Balma La Coste",43.619,1.51686,0,0,OTL:SA:1970324837185370,Europe/Paris,2,OTL, +OTL:SP:3377699720882032,1,"Ramonville Port Sud",43.5431,1.49025,0,0,OTL:SA:1970324837185374,Europe/Paris,0,OTL, +OTL:SP:3377699720882033,1,"Mairie Cugnaux",43.5373,1.34464,0,0,OTL:SA:1970324837185375,Europe/Paris,0,OTL, +OTL:SP:3377699720882034,1,"Mairie Cugnaux",43.5376,1.34484,0,0,OTL:SA:1970324837185375,Europe/Paris,2,OTL, +OTL:SP:3377699720882035,1,"Rossignols",43.5204,1.33754,0,0,OTL:SA:1970324837185376,Europe/Paris,2,OTL, +OTL:SP:3377699720882036,1,"Rossignols",43.5207,1.33817,0,0,OTL:SA:1970324837185376,Europe/Paris,0,OTL, +OTL:SP:3377699720882038,1,"Résistance",43.5436,1.34386,0,0,OTL:SA:1970324837185378,Europe/Paris,2,OTL, +OTL:SP:3377699720882039,1,"Résistance",43.5436,1.34373,0,0,OTL:SA:1970324837185378,Europe/Paris,2,OTL, +OTL:SP:3377699720882040,1,"Espace Pagnol",43.5286,1.33095,0,0,OTL:SA:1970324837185379,Europe/Paris,2,OTL, +OTL:SP:3377699720882041,1,"Espace Pagnol",43.5286,1.33083,0,0,OTL:SA:1970324837185379,Europe/Paris,2,OTL, +OTL:SP:3377699720882042,1,"Tennis Club Frouzins",43.5158,1.31715,0,0,OTL:SA:1970324837186337,Europe/Paris,2,OTL, +OTL:SP:3377699720882043,1,"Etats-Unis Fondeyre",43.6434,1.42773,0,0,AEC:SA:02009,Europe/Paris,2,OTL, +OTL:SP:3377699720882044,1,"Etats-Unis Fondeyre",43.6433,1.42778,0,0,AEC:SA:02009,Europe/Paris,0,OTL, +OTL:SP:3377699720882046,1,"Place de l'Indépendance",43.5965,1.48911,0,0,OTL:SA:1970324837185382,Europe/Paris,0,OTL, +OTL:SP:3377699720882172,1,"René Valmy",43.5592,1.39777,0,0,OTL:SA:1970324837185484,Europe/Paris,2,OTL, +OTL:SP:3377699720882173,1,"René Valmy",43.5588,1.39896,0,0,OTL:SA:1970324837185484,Europe/Paris,2,OTL, +OTL:SP:3377699720882174,1,"Perpignan",43.5559,1.40104,0,0,OTL:SA:1970324837185485,Europe/Paris,2,OTL, +OTL:SP:3377699720882175,1,"Perpignan",43.5566,1.40088,0,0,OTL:SA:1970324837185485,Europe/Paris,0,OTL, +OTL:SP:3377699720882176,1,"Thibaud",43.5549,1.40363,0,0,OTL:SA:1970324837185486,Europe/Paris,2,OTL, +OTL:SP:3377699720882177,1,"Thibaud",43.5551,1.40349,0,0,OTL:SA:1970324837185486,Europe/Paris,2,OTL, +OTL:SP:3377699720882178,1,"Sirven",43.5529,1.40372,0,0,OTL:SA:1970324837185487,Europe/Paris,0,OTL, +OTL:SP:3377699720882179,1,"Sirven",43.5523,1.40306,0,0,OTL:SA:1970324837185487,Europe/Paris,0,OTL, +OTL:SP:3377699720882180,1,"Labouche",43.551,1.4019,0,0,OTL:SA:1970324837185488,Europe/Paris,0,OTL, +OTL:SP:3377699720882181,1,"Labouche",43.5502,1.40121,0,0,OTL:SA:1970324837185488,Europe/Paris,0,OTL, +OTL:SP:3377699720882186,1,"Mayer",43.5436,1.39452,0,0,OTL:SA:1970324837185491,Europe/Paris,2,OTL, +OTL:SP:3377699720882187,1,"Mayer",43.5435,1.3945,0,0,OTL:SA:1970324837185491,Europe/Paris,0,OTL, +OTL:SP:3377699720882188,1,"Saudrune",43.5416,1.39081,0,0,OTL:SA:1970324837185492,Europe/Paris,0,OTL, +OTL:SP:3377699720882189,1,"Saudrune",43.5416,1.39092,0,0,OTL:SA:1970324837185492,Europe/Paris,0,OTL, +OTL:SP:3377699720882190,1,"ZI de Courties",43.535,1.38762,0,0,OTL:SA:1970324837185493,Europe/Paris,0,OTL, +OTL:SP:3377699720882191,1,"ZI de Courties",43.5356,1.38783,0,0,OTL:SA:1970324837185493,Europe/Paris,0,OTL, +OTL:SP:3377699720882193,1,"Courties",43.5324,1.3864,0,0,OTL:SA:1970324837185494,Europe/Paris,0,OTL, +OTL:SP:3377699720882194,1,"Courties",43.5324,1.38641,0,0,OTL:SA:1970324837185494,Europe/Paris,2,OTL, +OTL:SP:3377699720882196,1,"ZI Bois Vert N°1",43.5318,1.38263,0,0,OTL:SA:1970324837185495,Europe/Paris,2,OTL, +OTL:SP:3377699720882197,1,"ZI Bois Vert N°1",43.5317,1.38263,0,0,OTL:SA:1970324837185495,Europe/Paris,0,OTL, +OTL:SP:3377699720882198,1,"ZI Bois Vert N°2",43.5303,1.38075,0,0,OTL:SA:1970324837185496,Europe/Paris,2,OTL, +OTL:SP:3377699720882199,1,"ZI Bois Vert N°2",43.5302,1.38082,0,0,OTL:SA:1970324837185496,Europe/Paris,0,OTL, +OTL:SP:3377699720882200,1,"ZI Bois Vert N°3",43.5289,1.37958,0,0,OTL:SA:1970324837185497,Europe/Paris,0,OTL, +OTL:SP:3377699720882201,1,"ZI Bois Vert N°3",43.529,1.37957,0,0,OTL:SA:1970324837185497,Europe/Paris,2,OTL, +OTL:SP:3377699720882208,1,"Palarin",43.5252,1.38735,0,0,OTL:SA:1970324837185502,Europe/Paris,0,OTL, +OTL:SP:3377699720882209,1,"Roussimort",43.5543,1.39867,0,0,OTL:SA:1970324837185503,Europe/Paris,0,OTL, +OTL:SP:3377699720882210,1,"Roussimort",43.5554,1.39977,0,0,OTL:SA:1970324837185503,Europe/Paris,0,OTL, +OTL:SP:3377699720882211,1,"Vouet",43.5526,1.3965,0,0,OTL:SA:1970324837185504,Europe/Paris,0,OTL, +OTL:SP:3377699720882212,1,"Vouet",43.5528,1.39691,0,0,OTL:SA:1970324837185504,Europe/Paris,0,OTL, +OTL:SP:3377699720882213,1,"Alcatel",43.5501,1.39304,0,0,OTL:SA:1970324837185505,Europe/Paris,0,OTL, +OTL:SP:3377699720882214,1,"Alcatel",43.5499,1.39277,0,0,OTL:SA:1970324837185505,Europe/Paris,0,OTL, +OTL:SP:3377699720882215,1,"Candie",43.5476,1.38984,0,0,OTL:SA:1970324837185506,Europe/Paris,2,OTL, +OTL:SP:3377699720882216,1,"Candie",43.5478,1.39025,0,0,OTL:SA:1970324837185506,Europe/Paris,0,OTL, +OTL:SP:3377699720882217,1,"1er RTP",43.545,1.38509,0,0,OTL:SA:1970324837185507,Europe/Paris,0,OTL, +OTL:SP:3377699720882218,1,"1er RTP",43.5453,1.38599,0,0,OTL:SA:1970324837185507,Europe/Paris,2,OTL, +OTL:SP:3377699720882234,1,"Claire Fontaine",43.5402,1.40991,0,0,OTL:SA:1970324837185516,Europe/Paris,2,OTL, +OTL:SP:3377699720882235,1,"Claire Fontaine",43.5401,1.40969,0,0,OTL:SA:1970324837185516,Europe/Paris,0,OTL, +OTL:SP:3377699720882236,1,"Palanques",43.535,1.40442,0,0,OTL:SA:1970324837185517,Europe/Paris,2,OTL, +OTL:SP:3377699720882237,1,"Palanques",43.5351,1.40448,0,0,OTL:SA:1970324837185517,Europe/Paris,2,OTL, +OTL:SP:3377699720882238,1,"Stade",43.5287,1.40699,0,0,OTL:SA:1970324837185518,Europe/Paris,0,OTL, +OTL:SP:3377699720882239,1,"Stade",43.5287,1.40686,0,0,OTL:SA:1970324837185518,Europe/Paris,2,OTL, +OTL:SP:3377699720882240,1,"Occitanie",43.5251,1.40865,0,0,OTL:SA:1970324837185519,Europe/Paris,0,OTL, +OTL:SP:3377699720882241,1,"Occitanie",43.5254,1.4088,0,0,OTL:SA:1970324837185519,Europe/Paris,0,OTL, +OTL:SP:3377699720882242,1,"Commerce",43.524,1.40723,0,0,OTL:SA:1970324837185520,Europe/Paris,0,OTL, +OTL:SP:3377699720882243,1,"Commerce",43.524,1.4071,0,0,OTL:SA:1970324837185520,Europe/Paris,0,OTL, +OTL:SP:3377699720882244,1,"Bosquets",43.5232,1.4051,0,0,OTL:SA:1970324837185521,Europe/Paris,0,OTL, +OTL:SP:3377699720882245,1,"Eglise de Portet",43.5224,1.4078,0,0,OTL:SA:1970324837185522,Europe/Paris,0,OTL, +OTL:SP:3377699720882246,1,"Crouzettes",43.5211,1.40565,0,0,OTL:SA:1970324837185523,Europe/Paris,0,OTL, +OTL:SP:3377699720882247,1,"Désiré",43.5219,1.40391,0,0,OTL:SA:1970324837185524,Europe/Paris,2,OTL, +OTL:SP:3377699720882248,1,"Désiré",43.5219,1.40405,0,0,OTL:SA:1970324837185524,Europe/Paris,2,OTL, +OTL:SP:3377699720882249,1,"Poste de Portet",43.5206,1.402,0,0,OTL:SA:1970324837185525,Europe/Paris,0,OTL, +OTL:SP:3377699720882250,1,"Poste de Portet",43.5206,1.40183,0,0,OTL:SA:1970324837185525,Europe/Paris,0,OTL, +OTL:SP:3377699720882251,1,"Bd de l'Europe",43.5303,1.40411,0,0,OTL:SA:1970324837185526,Europe/Paris,0,OTL, +OTL:SP:3377699720882252,1,"Mairie Portet",43.5204,1.40027,0,0,OTL:SA:1970324837185527,Europe/Paris,2,OTL, +OTL:SP:3377699720882253,1,"Mairie Portet",43.5206,1.40005,0,0,OTL:SA:1970324837185527,Europe/Paris,2,OTL, +OTL:SP:3377699720882254,1,"Ateliers Municipaux",43.5209,1.39775,0,0,OTL:SA:1970324837185528,Europe/Paris,2,OTL, +OTL:SP:3377699720882255,1,"Ateliers Municipaux",43.5209,1.39815,0,0,OTL:SA:1970324837185528,Europe/Paris,0,OTL, +OTL:SP:3377699720882256,1,"Gauguin",43.5191,1.39627,0,0,OTL:SA:1970324837185529,Europe/Paris,0,OTL, +OTL:SP:3377699720882257,1,"Gauguin",43.5192,1.39638,0,0,OTL:SA:1970324837185529,Europe/Paris,0,OTL, +OTL:SP:3377699720882258,1,"Clémenceau",43.5161,1.39373,0,0,OTL:SA:1970324837185530,Europe/Paris,2,OTL, +OTL:SP:3377699720882259,1,"Clémenceau",43.5157,1.39324,0,0,OTL:SA:1970324837185530,Europe/Paris,2,OTL, +OTL:SP:3377699720882262,1,"Lot. Impérial",43.5136,1.39005,0,0,OTL:SA:1970324837185532,Europe/Paris,2,OTL, +OTL:SP:3377699720882263,1,"Lot. Impérial",43.5137,1.38983,0,0,OTL:SA:1970324837185532,Europe/Paris,2,OTL, +OTL:SP:3377699720882275,1,"François Verdier",43.6006,1.45112,0,0,OTL:SA:1970324837185541,Europe/Paris,2,OTL, +OTL:SP:3377699720882277,1,"François Verdier",43.6004,1.45122,0,0,OTL:SA:1970324837185541,Europe/Paris,2,OTL, +OTL:SP:3377699720882278,1,"François Verdier",43.6011,1.45202,0,0,OTL:SA:1970324837185541,Europe/Paris,2,OTL, +OTL:SP:3377699720882283,1,"Quartier Général",43.5976,1.45202,0,0,OTL:SA:1970324837185542,Europe/Paris,2,OTL, +OTL:SP:3377699720882287,1,"Fer à Cheval",43.5939,1.43375,0,0,OTL:SA:1970324837185543,Europe/Paris,2,OTL, +OTL:SP:3377699720882288,1,"Fer à Cheval",43.5938,1.43371,0,0,OTL:SA:1970324837185543,Europe/Paris,2,OTL, +OTL:SP:3377699720882289,1,"Douzans",43.4682,1.32854,0,0,AEC:SA:15312,Europe/Paris,2,OTL, +OTL:SP:3377699720882290,1,"Barrière de Muret",43.5786,1.42308,0,0,OTL:SA:1970324837185545,Europe/Paris,2,OTL, +OTL:SP:3377699720882291,1,"Barrière de Muret",43.5795,1.42366,0,0,OTL:SA:1970324837185545,Europe/Paris,2,OTL, +OTL:SP:3377699720882292,1,"Barrière de Muret",43.5784,1.42386,0,0,OTL:SA:1970324837185545,Europe/Paris,2,OTL, +OTL:SP:3377699720882293,1,"Barrière de Muret",43.5787,1.42361,0,0,OTL:SA:1970324837185545,Europe/Paris,2,OTL, +OTL:SP:3377699720882294,1,"Vincent Auriol",43.4701,1.32994,0,0,OTL:SA:1970324837185546,Europe/Paris,2,OTL, +OTL:SP:3377699720882313,1,"Pérignon",43.6006,1.46413,0,0,OTL:SA:1970324837185565,Europe/Paris,2,OTL, +OTL:SP:3377699720882314,1,"Pérignon",43.6006,1.46428,0,0,OTL:SA:1970324837185565,Europe/Paris,2,OTL, +OTL:SP:3377699720882315,1,"Crampel",43.5879,1.45955,0,0,OTL:SA:1970324837185566,Europe/Paris,2,OTL, +OTL:SP:3377699720882316,1,"Crampel",43.5883,1.45895,0,0,OTL:SA:1970324837185566,Europe/Paris,2,OTL, +OTL:SP:3377699720882317,1,"Courrège",43.5844,1.46914,0,0,AEC:SA:01986,Europe/Paris,2,OTL, +OTL:SP:3377699720882318,1,"Courrège",43.5839,1.46953,0,0,AEC:SA:01986,Europe/Paris,2,OTL, +OTL:SP:3377699720882320,1,"Crouzet",43.537,1.55959,0,0,OTL:SA:1970324837185568,Europe/Paris,0,OTL, +OTL:SP:3377699720882321,1,"Crouzet",43.5373,1.55921,0,0,OTL:SA:1970324837185568,Europe/Paris,0,OTL, +OTL:SP:3377699720882322,1,"Centre",43.5214,1.58936,0,0,OTL:SA:1970324837185569,Europe/Paris,2,OTL, +OTL:SP:3377699720882323,1,"Centre",43.5215,1.5896,0,0,OTL:SA:1970324837185569,Europe/Paris,2,OTL, +OTL:SP:3377699720882324,1,"La Douce",43.4909,1.64322,0,0,OTL:SA:1970324837185570,Europe/Paris,0,OTL, +OTL:SP:3377699720882325,1,"La Douce",43.4905,1.643,0,0,OTL:SA:1970324837185570,Europe/Paris,0,OTL, +OTL:SP:3377699720882326,1,"Mairie Labastide Beauvoir",43.4823,1.66646,0,0,OTL:SA:1970324837185571,Europe/Paris,2,OTL, +OTL:SP:3377699720882327,1,"En Blanc",43.4806,1.69047,0,0,OTL:SA:1970324837185572,Europe/Paris,0,OTL, +OTL:SP:3377699720882331,1,"Montauriol",43.5864,1.5783,0,0,OTL:SA:1970324837185575,Europe/Paris,2,OTL, +OTL:SP:3377699720882360,1,"Guillaumet",43.6162,1.4732,0,0,OTL:SA:1970324837185602,Europe/Paris,2,OTL, +OTL:SP:3377699720882361,1,"Guillaumet",43.6164,1.47317,0,0,OTL:SA:1970324837185602,Europe/Paris,2,OTL, +OTL:SP:3377699720882363,1,"Roseraie",43.6194,1.46936,0,0,OTL:SA:1970324837185603,Europe/Paris,2,OTL, +OTL:SP:3377699720882365,1,"Roseraie",43.6194,1.46944,0,0,OTL:SA:1970324837185603,Europe/Paris,2,OTL, +OTL:SP:3377699720882377,1,"Balma-Gramont",43.6288,1.48281,0,0,AEC:SA:00134,Europe/Paris,2,OTL, +OTL:SP:3377699720882378,1,"Balma-Gramont",43.6288,1.48281,0,0,AEC:SA:00134,Europe/Paris,2,OTL, +OTL:SP:3377699720882382,1,"Balma-Gramont",43.6286,1.4821,0,0,AEC:SA:00134,Europe/Paris,2,OTL, +OTL:SP:3377699720882383,1,"Balma-Gramont",43.6285,1.4823,0,0,AEC:SA:00134,Europe/Paris,2,OTL, +OTL:SP:3377699720882384,1,"Balma-Gramont",43.6284,1.48212,0,0,AEC:SA:00134,Europe/Paris,2,OTL, +OTL:SP:3377699720882386,1,"Balma-Gramont",43.6281,1.48211,0,0,AEC:SA:00134,Europe/Paris,2,OTL, +OTL:SP:3377699720882387,1,"Balma-Gramont",43.6282,1.48239,0,0,AEC:SA:00134,Europe/Paris,2,OTL, +OTL:SP:3377699720882722,1,"Doumergue",43.6212,1.46921,0,0,OTL:SA:1970324837185896,Europe/Paris,2,OTL, +OTL:SP:3377699720882723,1,"Doumergue",43.6211,1.46926,0,0,OTL:SA:1970324837185896,Europe/Paris,2,OTL, +OTL:SP:3377699720882724,1,"Place Bet",43.6233,1.46747,0,0,OTL:SA:1970324837185897,Europe/Paris,2,OTL, +OTL:SP:3377699720882725,1,"Place Bet",43.6234,1.46728,0,0,OTL:SA:1970324837185897,Europe/Paris,2,OTL, +OTL:SP:3377699720882726,1,"Michoun",43.6244,1.46607,0,0,OTL:SA:1970324837185898,Europe/Paris,2,OTL, +OTL:SP:3377699720882727,1,"Michoun",43.6243,1.46613,0,0,OTL:SA:1970324837185898,Europe/Paris,2,OTL, +OTL:SP:3377699720882728,1,"Eglise St-André",43.6262,1.46751,0,0,OTL:SA:1970324837185899,Europe/Paris,2,OTL, +OTL:SP:3377699720882729,1,"Eglise St-André",43.6262,1.4676,0,0,OTL:SA:1970324837185899,Europe/Paris,2,OTL, +OTL:SP:3377699720882730,1,"Hyères",43.6279,1.47039,0,0,OTL:SA:1970324837185900,Europe/Paris,2,OTL, +OTL:SP:3377699720882731,1,"Hyères",43.628,1.46964,0,0,OTL:SA:1970324837185900,Europe/Paris,2,OTL, +OTL:SP:3377699720882732,1,"Victor Cousin",43.6301,1.47275,0,0,OTL:SA:1970324837185901,Europe/Paris,2,OTL, +OTL:SP:3377699720882734,1,"Nicol",43.6332,1.46981,0,0,OTL:SA:1970324837185903,Europe/Paris,2,OTL, +OTL:SP:3377699720882735,1,"Nicol",43.6328,1.47021,0,0,OTL:SA:1970324837185903,Europe/Paris,2,OTL, +OTL:SP:3377699720882736,1,"Avranches",43.6343,1.46723,0,0,OTL:SA:1970324837185904,Europe/Paris,2,OTL, +OTL:SP:3377699720882737,1,"Avranches",43.6344,1.46695,0,0,OTL:SA:1970324837185904,Europe/Paris,2,OTL, +OTL:SP:3377699720882738,1,"Colonel Rémy",43.6352,1.465,0,0,OTL:SA:1970324837185905,Europe/Paris,2,OTL, +OTL:SP:3377699720882739,1,"Colonel Rémy",43.6353,1.46481,0,0,OTL:SA:1970324837185905,Europe/Paris,0,OTL, +OTL:SP:3377699720882740,1,"Cabarette",43.635,1.46142,0,0,OTL:SA:1970324837185906,Europe/Paris,0,OTL, +OTL:SP:3377699720882741,1,"Cabarette",43.6351,1.46158,0,0,OTL:SA:1970324837185906,Europe/Paris,0,OTL, +OTL:SP:3377699720882742,1,"Petit Castelet",43.6338,1.45871,0,0,OTL:SA:1970324837185907,Europe/Paris,2,OTL, +OTL:SP:3377699720882743,1,"Petit Castelet",43.6335,1.45797,0,0,OTL:SA:1970324837185907,Europe/Paris,0,OTL, +OTL:SP:3377699720882749,1,"Pl de l'Armée d'Afrique",43.6243,1.45465,0,0,OTL:SA:1970324837185911,Europe/Paris,2,OTL, +OTL:SP:3377699720882750,1,"Teinturiers",43.5956,1.43278,0,0,OTL:SA:1970324837185912,Europe/Paris,2,OTL, +OTL:SP:3377699720882751,1,"Teinturiers",43.5951,1.43229,0,0,OTL:SA:1970324837185912,Europe/Paris,2,OTL, +OTL:SP:3377699720882752,1,"Delpy",43.5934,1.43087,0,0,OTL:SA:1970324837185913,Europe/Paris,2,OTL, +OTL:SP:3377699720882753,1,"Cugnaux",43.5956,1.43143,0,0,OTL:SA:1970324837185914,Europe/Paris,0,OTL, +OTL:SP:3377699720882754,1,"Ste-Lucie",43.5939,1.42958,0,0,OTL:SA:1970324837185915,Europe/Paris,2,OTL, +OTL:SP:3377699720882755,1,"Rodin",43.5925,1.42744,0,0,OTL:SA:1970324837185916,Europe/Paris,2,OTL, +OTL:SP:3377699720882756,1,"Rodin",43.5921,1.4267,0,0,OTL:SA:1970324837185916,Europe/Paris,0,OTL, +OTL:SP:3377699720882757,1,"Valats",43.5911,1.4249,0,0,OTL:SA:1970324837185917,Europe/Paris,0,OTL, +OTL:SP:3377699720882758,1,"Valats",43.5912,1.42514,0,0,OTL:SA:1970324837185917,Europe/Paris,2,OTL, +OTL:SP:3377699720882759,1,"Déodat de Séverac",43.5891,1.4224,0,0,OTL:SA:1970324837185918,Europe/Paris,2,OTL, +OTL:SP:3377699720882760,1,"Déodat de Séverac",43.5898,1.4213,0,0,OTL:SA:1970324837185918,Europe/Paris,2,OTL, +OTL:SP:3377699720882761,1,"Déodat de Séverac",43.5898,1.42253,0,0,OTL:SA:1970324837185918,Europe/Paris,2,OTL, +OTL:SP:3377699720882762,1,"Déodat de Séverac",43.59,1.42277,0,0,OTL:SA:1970324837185918,Europe/Paris,2,OTL, +OTL:SP:3377699720882763,1,"Gamelin",43.5888,1.42123,0,0,OTL:SA:1970324837185919,Europe/Paris,0,OTL, +OTL:SP:3377699720882764,1,"Gamelin",43.5889,1.42142,0,0,OTL:SA:1970324837185919,Europe/Paris,2,OTL, +OTL:SP:3377699720882777,1,"Guyenne",43.5772,1.40984,0,0,OTL:SA:1970324837185926,Europe/Paris,2,OTL, +OTL:SP:3377699720882778,1,"Guyenne",43.577,1.41047,0,0,OTL:SA:1970324837185926,Europe/Paris,2,OTL, +OTL:SP:3377699720882779,1,"Ile de France",43.576,1.41165,0,0,OTL:SA:1970324837185927,Europe/Paris,2,OTL, +OTL:SP:3377699720882780,1,"Ile de France",43.5764,1.41223,0,0,OTL:SA:1970324837185927,Europe/Paris,2,OTL, +OTL:SP:3377699720882781,1,"Bigorre",43.5748,1.41107,0,0,OTL:SA:1970324837185928,Europe/Paris,2,OTL, +OTL:SP:3377699720882782,1,"Ch. Papus",43.5742,1.41195,0,0,OTL:SA:1970324837185929,Europe/Paris,2,OTL, +OTL:SP:3377699720882785,1,"Ile du Ramier",43.5923,1.44044,0,0,OTL:SA:1970324840530407,Europe/Paris,2,OTL, +OTL:SP:3377699720882786,1,"Ile du Ramier",43.5922,1.44035,0,0,OTL:SA:1970324840530407,Europe/Paris,2,OTL, +OTL:SP:3377699720882787,1,"Jardin Royal",43.5948,1.44961,0,0,OTL:SA:1970324837185933,Europe/Paris,2,OTL, +OTL:SP:3377699720882788,1,"Jardin Royal",43.5948,1.4495,0,0,OTL:SA:1970324837185933,Europe/Paris,2,OTL, +OTL:SP:3377699720882791,1,"St-Georges",43.6031,1.45126,0,0,OTL:SA:1970324837185934,Europe/Paris,2,OTL, +OTL:SP:3377699720882792,1,"St-Georges",43.6032,1.45129,0,0,OTL:SA:1970324837185934,Europe/Paris,2,OTL, +OTL:SP:3377699720882793,1,"Victor Hugo",43.6073,1.44697,0,0,OTL:SA:1970324837185935,Europe/Paris,2,OTL, +OTL:SP:3377699720882794,1,"Victor Hugo",43.6073,1.44713,0,0,OTL:SA:1970324837185935,Europe/Paris,2,OTL, +OTL:SP:3377699720882796,1,"Concorde",43.611,1.44216,0,0,OTL:SA:1970324837185936,Europe/Paris,2,OTL, +OTL:SP:3377699720882797,1,"Concorde",43.6104,1.4437,0,0,OTL:SA:1970324837185936,Europe/Paris,2,OTL, +OTL:SP:3377699720882798,1,"Amidonniers",43.6061,1.42818,0,0,OTL:SA:1970324837185937,Europe/Paris,2,OTL, +OTL:SP:3377699720882799,1,"Amidonniers",43.6066,1.42821,0,0,OTL:SA:1970324837185937,Europe/Paris,2,OTL, +OTL:SP:3377699720882800,1,"Les Abattoirs",43.6009,1.42851,0,0,OTL:SA:1970324837185938,Europe/Paris,2,OTL, +OTL:SP:3377699720882801,1,"Ste-Catherine",43.5906,1.44537,0,0,OTL:SA:1970324837185939,Europe/Paris,2,OTL, +OTL:SP:3377699720882803,1,"Notre Dame",43.5892,1.44598,0,0,OTL:SA:1970324837185940,Europe/Paris,2,OTL, +OTL:SP:3377699720882804,1,"Notre Dame",43.5892,1.44598,0,0,OTL:SA:1970324837185940,Europe/Paris,2,OTL, +OTL:SP:3377699720882805,1,"St-Michel - Marcel Langer",43.5857,1.4474,0,0,OTL:SA:1970324837185941,Europe/Paris,2,OTL, +OTL:SP:3377699720882808,1,"Récollets",43.5838,1.44806,0,0,OTL:SA:1970324837185942,Europe/Paris,2,OTL, +OTL:SP:3377699720882809,1,"Récollets",43.5839,1.44828,0,0,OTL:SA:1970324837185942,Europe/Paris,2,OTL, +OTL:SP:3377699720882810,1,"Av. de Rangueil",43.5772,1.4506,0,0,OTL:SA:1970324837185943,Europe/Paris,2,OTL, +OTL:SP:3377699720882811,1,"Av. de Rangueil",43.5777,1.45047,0,0,OTL:SA:1970324837185943,Europe/Paris,2,OTL, +OTL:SP:3377699720882813,1,"Delmas",43.576,1.4511,0,0,OTL:SA:1970324837185944,Europe/Paris,2,OTL, +OTL:SP:3377699720882814,1,"Delmas",43.576,1.45116,0,0,OTL:SA:1970324837185944,Europe/Paris,2,OTL, +OTL:SP:3377699720882815,1,"Jules Julien",43.5741,1.45196,0,0,OTL:SA:1970324837185945,Europe/Paris,2,OTL, +OTL:SP:3377699720882816,1,"Jules Julien",43.5733,1.45217,0,0,OTL:SA:1970324837185945,Europe/Paris,2,OTL, +OTL:SP:3377699720882817,1,"Pouset",43.5705,1.45476,0,0,OTL:SA:1970324837185946,Europe/Paris,2,OTL, +OTL:SP:3377699720882818,1,"Pouset",43.5708,1.45464,0,0,OTL:SA:1970324837185946,Europe/Paris,2,OTL, +OTL:SP:3377699720882820,1,"Caubère",43.5682,1.45719,0,0,OTL:SA:1970324837185947,Europe/Paris,2,OTL, +OTL:SP:3377699720882821,1,"Caubère",43.5682,1.45734,0,0,OTL:SA:1970324837185947,Europe/Paris,2,OTL, +OTL:SP:3377699720882822,1,"IUT",43.5666,1.45864,0,0,OTL:SA:1970324837185948,Europe/Paris,2,OTL, +OTL:SP:3377699720882824,1,"IUT",43.5661,1.45897,0,0,OTL:SA:1970324837185948,Europe/Paris,2,OTL, +OTL:SP:3377699720882827,1,"Ducuing Ponsan",43.5611,1.458,0,0,OTL:SA:1970324837185949,Europe/Paris,2,OTL, +OTL:SP:3377699720882828,1,"Ducuing Ponsan",43.5611,1.45808,0,0,OTL:SA:1970324837185949,Europe/Paris,2,OTL, +OTL:SP:3377699720882829,1,"Vallon",43.5592,1.45691,0,0,OTL:SA:1970324837185950,Europe/Paris,2,OTL, +OTL:SP:3377699720882830,1,"Vallon",43.5595,1.45724,0,0,OTL:SA:1970324837185950,Europe/Paris,2,OTL, +OTL:SP:3377699720882831,1,"Ateliers Métro",43.5742,1.38624,0,0,OTL:SA:1970324837185951,Europe/Paris,2,OTL, +OTL:SP:3377699720882834,1,"Ateliers Métro",43.5744,1.38615,0,0,OTL:SA:1970324837185951,Europe/Paris,2,OTL, +OTL:SP:3377699720882835,1,"Gélis",43.5752,1.38463,0,0,OTL:SA:1970324837185952,Europe/Paris,2,OTL, +OTL:SP:3377699720882836,1,"Gélis",43.5752,1.38458,0,0,OTL:SA:1970324837185952,Europe/Paris,2,OTL, +OTL:SP:3377699720882837,1,"Magre",43.5758,1.38342,0,0,OTL:SA:1970324837185953,Europe/Paris,2,OTL, +OTL:SP:3377699720882838,1,"Magre",43.5765,1.38302,0,0,OTL:SA:1970324837185953,Europe/Paris,2,OTL, +OTL:SP:3377699720882839,1,"Fleming",43.579,1.38056,0,0,OTL:SA:1970324837185954,Europe/Paris,2,OTL, +OTL:SP:3377699720882840,1,"Fleming",43.5791,1.3809,0,0,OTL:SA:1970324837185954,Europe/Paris,2,OTL, +OTL:SP:3377699720882841,1,"Météo",43.5776,1.3774,0,0,OTL:SA:1970324837185955,Europe/Paris,2,OTL, +OTL:SP:3377699720882842,1,"Odeillo",43.5801,1.38288,0,0,OTL:SA:1970324837185956,Europe/Paris,2,OTL, +OTL:SP:3377699720882843,1,"Odeillo",43.5803,1.38394,0,0,OTL:SA:1970324837185956,Europe/Paris,2,OTL, +OTL:SP:3377699720882844,1,"Bordeblanche",43.5814,1.38642,0,0,OTL:SA:1970324837185957,Europe/Paris,2,OTL, +OTL:SP:3377699720882845,1,"Bordeblanche",43.5814,1.3867,0,0,OTL:SA:1970324837185957,Europe/Paris,2,OTL, +OTL:SP:3377699720882846,1,"Pradettes",43.5812,1.38969,0,0,OTL:SA:1970324837185958,Europe/Paris,2,OTL, +OTL:SP:3377699720882847,1,"Pradettes",43.5817,1.38851,0,0,OTL:SA:1970324837185958,Europe/Paris,2,OTL, +OTL:SP:3377699720882848,1,"Passerieu",43.5799,1.39173,0,0,OTL:SA:1970324837185959,Europe/Paris,2,OTL, +OTL:SP:3377699720882849,1,"Passerieu",43.5796,1.39196,0,0,OTL:SA:1970324837185959,Europe/Paris,2,OTL, +OTL:SP:3377699720882850,1,"Ecole D'Architecture",43.58,1.39535,0,0,OTL:SA:1970324837185960,Europe/Paris,2,OTL, +OTL:SP:3377699720882851,1,"Ecole D'Architecture",43.5801,1.39571,0,0,OTL:SA:1970324837185960,Europe/Paris,2,OTL, +OTL:SP:3377699720882854,1,"ISAE Campus SUPAERO",43.5664,1.47555,0,0,OTL:SA:1970324837185962,Europe/Paris,2,OTL, +OTL:SP:3377699720882855,1,"ISAE Campus SUPAERO",43.5665,1.47563,0,0,OTL:SA:1970324837185962,Europe/Paris,2,OTL, +OTL:SP:3377699720882856,1,"CREPS ONERA",43.5701,1.47369,0,0,OTL:SA:1970324837185963,Europe/Paris,2,OTL, +OTL:SP:3377699720882857,1,"CREPS ONERA",43.5696,1.47302,0,0,OTL:SA:1970324837185963,Europe/Paris,2,OTL, +OTL:SP:3377699720882858,1,"Latécoère",43.5736,1.47431,0,0,OTL:SA:1970324837185964,Europe/Paris,2,OTL, +OTL:SP:3377699720882859,1,"Latécoère",43.5738,1.47412,0,0,OTL:SA:1970324837185964,Europe/Paris,0,OTL, +OTL:SP:3377699720882860,1,"Aérodrome",43.5754,1.47205,0,0,OTL:SA:1970324837185965,Europe/Paris,2,OTL, +OTL:SP:3377699720882861,1,"Aérodrome",43.5755,1.47219,0,0,OTL:SA:1970324837185965,Europe/Paris,2,OTL, +OTL:SP:3377699720882864,1,"Fontainebleau",43.5801,1.46642,0,0,OTL:SA:1970324837185967,Europe/Paris,2,OTL, +OTL:SP:3377699720882865,1,"Fontainebleau",43.5804,1.46606,0,0,OTL:SA:1970324837185967,Europe/Paris,2,OTL, +OTL:SP:3377699720882866,1,"Cale",43.5811,1.46472,0,0,OTL:SA:1970324840530370,Europe/Paris,2,OTL, +OTL:SP:3377699720882867,1,"Place de Lespinet",43.5823,1.46439,0,0,OTL:SA:1970324837185968,Europe/Paris,2,OTL, +OTL:SP:3377699720882868,1,"Marine",43.5827,1.46273,0,0,OTL:SA:1970324837185969,Europe/Paris,2,OTL, +OTL:SP:3377699720882869,1,"Fages",43.5845,1.46189,0,0,OTL:SA:1970324837185970,Europe/Paris,2,OTL, +OTL:SP:3377699720882870,1,"Fages",43.5838,1.46384,0,0,OTL:SA:1970324837185970,Europe/Paris,2,OTL, +OTL:SP:3377699720882871,1,"Demouilles",43.5893,1.45665,0,0,OTL:SA:1970324837185971,Europe/Paris,2,OTL, +OTL:SP:3377699720882872,1,"Demouilles",43.5889,1.45713,0,0,OTL:SA:1970324837185971,Europe/Paris,2,OTL, +OTL:SP:3377699720882873,1,"Frizac",43.5908,1.45354,0,0,OTL:SA:1970324837185972,Europe/Paris,2,OTL, +OTL:SP:3377699720882874,1,"Frizac",43.5905,1.4538,0,0,OTL:SA:1970324837185972,Europe/Paris,2,OTL, +OTL:SP:3377699720882875,1,"Jardin des Plantes",43.5928,1.4532,0,0,AEC:SA:02011,Europe/Paris,2,OTL, +OTL:SP:3377699720882876,1,"Jardin des Plantes",43.5925,1.45265,0,0,AEC:SA:02011,Europe/Paris,2,OTL, +OTL:SP:3377699720882877,1,"Minimes - Claude Nougaro",43.6204,1.43564,0,0,OTL:SA:1970324837185974,Europe/Paris,2,OTL, +OTL:SP:3377699720882878,1,"Minimes - Claude Nougaro",43.6204,1.43583,0,0,OTL:SA:1970324837185974,Europe/Paris,2,OTL, +OTL:SP:3377699720882880,1,"Baqué",43.6236,1.43441,0,0,OTL:SA:1970324837185975,Europe/Paris,2,OTL, +OTL:SP:3377699720882881,1,"Baqué",43.6233,1.43446,0,0,OTL:SA:1970324837185975,Europe/Paris,0,OTL, +OTL:SP:3377699720882883,1,"Charlas",43.6292,1.43284,0,0,OTL:SA:1970324837185976,Europe/Paris,2,OTL, +OTL:SP:3377699720882884,1,"Charlas",43.6302,1.43249,0,0,OTL:SA:1970324837185976,Europe/Paris,2,OTL, +OTL:SP:3377699720882885,1,"Jules Ferry",43.6326,1.43166,0,0,OTL:SA:1970324837185977,Europe/Paris,2,OTL, +OTL:SP:3377699720882886,1,"Jules Ferry",43.6324,1.43184,0,0,OTL:SA:1970324837185977,Europe/Paris,2,OTL, +OTL:SP:3377699720882887,1,"Bastiat",43.6348,1.43087,0,0,OTL:SA:1970324837185978,Europe/Paris,2,OTL, +OTL:SP:3377699720882888,1,"Bastiat",43.634,1.43128,0,0,OTL:SA:1970324837185978,Europe/Paris,2,OTL, +OTL:SP:3377699720882889,1,"Dulong",43.636,1.43053,0,0,OTL:SA:1970324837185979,Europe/Paris,2,OTL, +OTL:SP:3377699720882890,1,"Dulong",43.6364,1.43035,0,0,OTL:SA:1970324837185979,Europe/Paris,2,OTL, +OTL:SP:3377699720882891,1,"Halles du Sud-Ouest",43.6383,1.42975,0,0,OTL:SA:1970324837185980,Europe/Paris,2,OTL, +OTL:SP:3377699720882892,1,"Halles du Sud-Ouest",43.639,1.4295,0,0,OTL:SA:1970324837185980,Europe/Paris,2,OTL, +OTL:SP:3377699720882893,1,"Glacière",43.6462,1.42606,0,0,OTL:SA:1970324837185981,Europe/Paris,2,OTL, +OTL:SP:3377699720882896,1,"Lycée Déodat de Séverac",43.5869,1.42566,0,0,OTL:SA:1970324837185982,Europe/Paris,2,OTL, +OTL:SP:3377699720882897,1,"Lycée Déodat de Séverac",43.5869,1.42569,0,0,OTL:SA:1970324837185982,Europe/Paris,2,OTL, +OTL:SP:3377699720882898,1,"Roc",43.5819,1.4258,0,0,OTL:SA:1970324837185983,Europe/Paris,2,OTL, +OTL:SP:3377699720882899,1,"Roc",43.582,1.42577,0,0,OTL:SA:1970324837185983,Europe/Paris,2,OTL, +OTL:SP:3377699720882900,1,"Orbesson",43.5769,1.42179,0,0,OTL:SA:1970324837185984,Europe/Paris,2,OTL, +OTL:SP:3377699720882901,1,"Orbesson",43.5765,1.42163,0,0,OTL:SA:1970324837185984,Europe/Paris,0,OTL, +OTL:SP:3377699720882902,1,"Bernadette",43.5744,1.41976,0,0,OTL:SA:1970324837185985,Europe/Paris,2,OTL, +OTL:SP:3377699720882903,1,"Bernadette",43.5749,1.42035,0,0,OTL:SA:1970324837185985,Europe/Paris,2,OTL, +OTL:SP:3377699720882904,1,"Touraine",43.5722,1.41823,0,0,OTL:SA:1970324837185986,Europe/Paris,0,OTL, +OTL:SP:3377699720882905,1,"Touraine",43.5732,1.41886,0,0,OTL:SA:1970324837185986,Europe/Paris,0,OTL, +OTL:SP:3377699720882906,1,"Bordelongue",43.5709,1.41678,0,0,OTL:SA:1970324837185987,Europe/Paris,2,OTL, +OTL:SP:3377699720882907,1,"Bordelongue",43.5711,1.41724,0,0,OTL:SA:1970324837185987,Europe/Paris,2,OTL, +OTL:SP:3377699720882908,1,"Cité des Combattants",43.5677,1.41247,0,0,OTL:SA:1970324837185988,Europe/Paris,2,OTL, +OTL:SP:3377699720882909,1,"Cité des Combattants",43.5684,1.41369,0,0,OTL:SA:1970324837185988,Europe/Paris,2,OTL, +OTL:SP:3377699720882911,1,"Place des Glières",43.5646,1.40961,0,0,OTL:SA:1970324837185990,Europe/Paris,2,OTL, +OTL:SP:3377699720882912,1,"Place des Glières",43.5651,1.41027,0,0,OTL:SA:1970324837185990,Europe/Paris,2,OTL, +OTL:SP:3377699720882914,1,"Cheverry",43.5619,1.4064,0,0,OTL:SA:1970324837185992,Europe/Paris,2,OTL, +OTL:SP:3377699720882915,1,"Cheverry",43.5625,1.40714,0,0,OTL:SA:1970324837185992,Europe/Paris,2,OTL, +OTL:SP:3377699720882916,1,"Rimont",43.5599,1.40389,0,0,OTL:SA:1970324837185993,Europe/Paris,2,OTL, +OTL:SP:3377699720882917,1,"Rimont",43.5602,1.40428,0,0,OTL:SA:1970324837185993,Europe/Paris,2,OTL, +OTL:SP:3377699720882922,1,"Camus",43.562,1.39492,0,0,OTL:SA:1970324837185996,Europe/Paris,2,OTL, +OTL:SP:3377699720882923,1,"Camus",43.5617,1.39494,0,0,OTL:SA:1970324837185996,Europe/Paris,2,OTL, +OTL:SP:3377699720882924,1,"Pergaud",43.5641,1.39555,0,0,OTL:SA:1970324837185997,Europe/Paris,2,OTL, +OTL:SP:3377699720882925,1,"Pergaud",43.5642,1.39558,0,0,OTL:SA:1970324837185997,Europe/Paris,2,OTL, +OTL:SP:3377699720882928,1,"Pech",43.5896,1.41435,0,0,OTL:SA:1970324837185999,Europe/Paris,2,OTL, +OTL:SP:3377699720882929,1,"Corneille",43.5889,1.41273,0,0,OTL:SA:1970324837186000,Europe/Paris,2,OTL, +OTL:SP:3377699720882930,1,"Corneille",43.5885,1.41156,0,0,OTL:SA:1970324837186000,Europe/Paris,2,OTL, +OTL:SP:3377699720882931,1,"Collège George Sand",43.5879,1.41012,0,0,OTL:SA:1970324837186001,Europe/Paris,2,OTL, +OTL:SP:3377699720882932,1,"Collège George Sand",43.5872,1.40839,0,0,OTL:SA:1970324837186001,Europe/Paris,2,OTL, +OTL:SP:3377699720882933,1,"Cépière Rocade",43.5865,1.40644,0,0,OTL:SA:1970324837186002,Europe/Paris,2,OTL, +OTL:SP:3377699720882934,1,"Cépière Rocade",43.5867,1.40666,0,0,OTL:SA:1970324837186002,Europe/Paris,2,OTL, +OTL:SP:3377699720882935,1,"Ecole Espagnole",43.5769,1.39493,0,0,OTL:SA:1970324837186003,Europe/Paris,2,OTL, +OTL:SP:3377699720882936,1,"Ecole Espagnole",43.5769,1.39504,0,0,OTL:SA:1970324837186003,Europe/Paris,2,OTL, +OTL:SP:3377699720882937,1,"Douanes",43.5746,1.39716,0,0,OTL:SA:1970324837186004,Europe/Paris,2,OTL, +OTL:SP:3377699720882938,1,"Douanes",43.5743,1.39709,0,0,OTL:SA:1970324837186004,Europe/Paris,2,OTL, +OTL:SP:3377699720882941,1,"Chardonnet",43.6062,1.40133,0,0,OTL:SA:1970324837186006,Europe/Paris,2,OTL, +OTL:SP:3377699720882942,1,"Chardonnet",43.6061,1.40107,0,0,OTL:SA:1970324837186006,Europe/Paris,2,OTL, +OTL:SP:3377699720882944,1,"Casselardit",43.603,1.40839,0,0,OTL:SA:1970324837186008,Europe/Paris,2,OTL, +OTL:SP:3377699720882945,1,"Casselardit",43.6042,1.40578,0,0,OTL:SA:1970324837186008,Europe/Paris,2,OTL, +OTL:SP:3377699720882947,1,"Charleville",43.6025,1.40961,0,0,OTL:SA:1970324837186009,Europe/Paris,2,OTL, +OTL:SP:3377699720882948,1,"Cartoucherie",43.6018,1.4112,0,0,OTL:SA:1970324837186011,Europe/Paris,2,OTL, +OTL:SP:3377699720882949,1,"Cartoucherie",43.6014,1.41188,0,0,OTL:SA:1970324837186011,Europe/Paris,2,OTL, +OTL:SP:3377699720882950,1,"Turenne",43.5999,1.41558,0,0,OTL:SA:1970329131942076,Europe/Paris,0,OTL, +OTL:SP:3377699720882951,1,"Turenne",43.5997,1.41556,0,0,OTL:SA:1970329131942076,Europe/Paris,2,OTL, +OTL:SP:3377699720882953,1,"Barrière de Bayonne",43.5982,1.41881,0,0,OTL:SA:1970324837186012,Europe/Paris,2,OTL, +OTL:SP:3377699720882954,1,"Barrière de Bayonne",43.5977,1.42035,0,0,OTL:SA:1970324837186012,Europe/Paris,2,OTL, +OTL:SP:3377699720882955,1,"Barrière de Bayonne",43.5973,1.42093,0,0,OTL:SA:1970324837186012,Europe/Paris,2,OTL, +OTL:SP:3377699720882956,1,"Roguet",43.597,1.42613,0,0,OTL:SA:1970324837186013,Europe/Paris,2,OTL, +OTL:SP:3377699720882957,1,"Roguet",43.5972,1.42716,0,0,OTL:SA:1970324837186013,Europe/Paris,2,OTL, +OTL:SP:3377699720882958,1,"Magné",43.5966,1.43613,0,0,OTL:SA:1970324837186014,Europe/Paris,2,OTL, +OTL:SP:3377699720882959,1,"Olivier Hôp. La Grave",43.5984,1.43403,0,0,OTL:SA:1970324837186015,Europe/Paris,2,OTL, +OTL:SP:3377699720882960,1,"Fonquerne",43.6275,1.42537,0,0,OTL:SA:1970324837186016,Europe/Paris,2,OTL, +OTL:SP:3377699720882961,1,"Rateau",43.6253,1.42706,0,0,OTL:SA:1970324837186017,Europe/Paris,0,OTL, +OTL:SP:3377699720882962,1,"Brieux",43.6268,1.43006,0,0,OTL:SA:1970324837186018,Europe/Paris,0,OTL, +OTL:SP:3377699720882963,1,"Silvio Trentin",43.6244,1.42906,0,0,OTL:SA:1970324837186019,Europe/Paris,0,OTL, +OTL:SP:3377699720882965,1,"Jacquard",43.6224,1.4278,0,0,OTL:SA:1970324837186020,Europe/Paris,2,OTL, +OTL:SP:3377699720882966,1,"Grand Verger",43.62,1.42892,0,0,OTL:SA:1970324837186021,Europe/Paris,2,OTL, +OTL:SP:3377699720882967,1,"Grand Verger",43.6192,1.42941,0,0,OTL:SA:1970324837186021,Europe/Paris,2,OTL, +OTL:SP:3377699720882968,1,"Pescadoure",43.6187,1.42743,0,0,OTL:SA:1970324837186022,Europe/Paris,2,OTL, +OTL:SP:3377699720882969,1,"Pescadoure",43.6187,1.42735,0,0,OTL:SA:1970324837186022,Europe/Paris,2,OTL, +OTL:SP:3377699720882970,1,"Matisse",43.6178,1.42388,0,0,OTL:SA:1970324837186023,Europe/Paris,2,OTL, +OTL:SP:3377699720882971,1,"Matisse",43.6178,1.4238,0,0,OTL:SA:1970324837186023,Europe/Paris,2,OTL, +OTL:SP:3377699720882972,1,"Tricou",43.6167,1.42398,0,0,OTL:SA:1970324837186024,Europe/Paris,2,OTL, +OTL:SP:3377699720882973,1,"Tricou",43.6157,1.42421,0,0,OTL:SA:1970324837186024,Europe/Paris,2,OTL, +OTL:SP:3377699720882974,1,"Gounod",43.6139,1.42481,0,0,OTL:SA:1970324837186025,Europe/Paris,2,OTL, +OTL:SP:3377699720882975,1,"Gounod",43.614,1.42651,0,0,OTL:SA:1970324837186025,Europe/Paris,2,OTL, +OTL:SP:3377699720882976,1,"Passerelle Haedens",43.6136,1.43059,0,0,OTL:SA:1970324837186026,Europe/Paris,2,OTL, +OTL:SP:3377699720882977,1,"Passerelle Haedens",43.6134,1.43152,0,0,OTL:SA:1970324837186026,Europe/Paris,0,OTL, +OTL:SP:3377699720882978,1,"Canal du Midi",43.6149,1.43282,0,0,OTL:SA:1970324837186027,Europe/Paris,2,OTL, +OTL:SP:3377699720882979,1,"Bachelier",43.6079,1.45165,0,0,OTL:SA:1970324837186028,Europe/Paris,2,OTL, +OTL:SP:3377699720882980,1,"Bachelier",43.6078,1.45183,0,0,OTL:SA:1970324837186028,Europe/Paris,2,OTL, +OTL:SP:3377699720882981,1,"Aqueduc",43.6016,1.4586,0,0,OTL:SA:1970324837186029,Europe/Paris,2,OTL, +OTL:SP:3377699720882982,1,"Aqueduc",43.6016,1.45792,0,0,OTL:SA:1970324837186029,Europe/Paris,2,OTL, +OTL:SP:3377699720882983,1,"Tilleuls",43.6007,1.46686,0,0,OTL:SA:1970324837186030,Europe/Paris,2,OTL, +OTL:SP:3377699720882984,1,"Tilleuls",43.6006,1.46749,0,0,OTL:SA:1970324837186030,Europe/Paris,2,OTL, +OTL:SP:3377699720882985,1,"Deltour",43.6009,1.47172,0,0,OTL:SA:1970324837186031,Europe/Paris,2,OTL, +OTL:SP:3377699720882986,1,"Deltour",43.6008,1.47115,0,0,OTL:SA:1970324837186031,Europe/Paris,2,OTL, +OTL:SP:3377699720882987,1,"Av. Raymond Naves",43.5982,1.47277,0,0,OTL:SA:1970324837186032,Europe/Paris,2,OTL, +OTL:SP:3377699720882988,1,"Av. Raymond Naves",43.599,1.47262,0,0,OTL:SA:1970324837186032,Europe/Paris,2,OTL, +OTL:SP:3377699720882989,1,"Lafilaire",43.5964,1.47321,0,0,OTL:SA:1970324837186033,Europe/Paris,2,OTL, +OTL:SP:3377699720882990,1,"Lafilaire",43.5959,1.47336,0,0,OTL:SA:1970324837186033,Europe/Paris,2,OTL, +OTL:SP:3377699720882991,1,"Limayrac",43.5941,1.47295,0,0,OTL:SA:1970324837186034,Europe/Paris,2,OTL, +OTL:SP:3377699720882992,1,"Limayrac",43.5944,1.47315,0,0,OTL:SA:1970324837186034,Europe/Paris,2,OTL, +OTL:SP:3377699720882993,1,"Balansa",43.5932,1.47431,0,0,OTL:SA:1970324837186035,Europe/Paris,2,OTL, +OTL:SP:3377699720882994,1,"Balansa",43.5934,1.47351,0,0,OTL:SA:1970324837186035,Europe/Paris,2,OTL, +OTL:SP:3377699720882995,1,"Jacinthes",43.5926,1.47611,0,0,OTL:SA:1970324837186036,Europe/Paris,2,OTL, +OTL:SP:3377699720882996,1,"Jacinthes",43.5925,1.476,0,0,OTL:SA:1970324837186036,Europe/Paris,2,OTL, +OTL:SP:3377699720882997,1,"Baroux",43.5919,1.47811,0,0,OTL:SA:1970324837186037,Europe/Paris,0,OTL, +OTL:SP:3377699720882998,1,"Baroux",43.5918,1.4785,0,0,OTL:SA:1970324837186037,Europe/Paris,2,OTL, +OTL:SP:3377699720882999,1,"Firmis",43.5891,1.47895,0,0,OTL:SA:1970324837186038,Europe/Paris,0,OTL, +OTL:SP:3377699720883000,1,"Firmis",43.589,1.47895,0,0,OTL:SA:1970324837186038,Europe/Paris,0,OTL, +OTL:SP:3377699720883001,1,"Pugens",43.5877,1.4801,0,0,OTL:SA:1970324837186039,Europe/Paris,2,OTL, +OTL:SP:3377699720883002,1,"Mont Ventoux",43.5863,1.48262,0,0,OTL:SA:1970324837186040,Europe/Paris,2,OTL, +OTL:SP:3377699720883003,1,"Mont Ventoux",43.5869,1.48186,0,0,OTL:SA:1970324837186040,Europe/Paris,2,OTL, +OTL:SP:3377699720883004,1,"Allègre",43.5846,1.486,0,0,OTL:SA:1970324837186041,Europe/Paris,2,OTL, +OTL:SP:3377699720883005,1,"Allègre",43.5856,1.48423,0,0,OTL:SA:1970324837186041,Europe/Paris,2,OTL, +OTL:SP:3377699720883006,1,"Ledormeur",43.583,1.48824,0,0,OTL:SA:1970324837186042,Europe/Paris,2,OTL, +OTL:SP:3377699720883007,1,"Ledormeur",43.5835,1.48798,0,0,OTL:SA:1970324837186042,Europe/Paris,0,OTL, +OTL:SP:3377699720883013,1,"Route de Blagnac",43.6189,1.40721,0,0,OTL:SA:1970324837186046,Europe/Paris,2,OTL, +OTL:SP:3377699720883014,1,"Soleil d'Or",43.6163,1.40909,0,0,OTL:SA:1970324837186047,Europe/Paris,2,OTL, +OTL:SP:3377699720883015,1,"Soleil d'Or",43.6162,1.40904,0,0,OTL:SA:1970324837186047,Europe/Paris,2,OTL, +OTL:SP:3377699720883016,1,"Cité Madrid",43.614,1.41135,0,0,AEC:SA:01974,Europe/Paris,2,OTL, +OTL:SP:3377699720883017,1,"Cité Madrid",43.6144,1.41099,0,0,AEC:SA:01974,Europe/Paris,2,OTL, +OTL:SP:3377699720883018,1,"Fourmi",43.6124,1.4131,0,0,OTL:SA:1970324837186049,Europe/Paris,2,OTL, +OTL:SP:3377699720883019,1,"Fourmi",43.6117,1.41417,0,0,OTL:SA:1970324837186049,Europe/Paris,2,OTL, +OTL:SP:3377699720883021,1,"Suisse",43.6114,1.4193,0,0,OTL:SA:1970324837186051,Europe/Paris,2,OTL, +OTL:SP:3377699720883022,1,"Canal de Brienne",43.609,1.42389,0,0,OTL:SA:1970324837186052,Europe/Paris,2,OTL, +OTL:SP:3377699720883024,1,"Barcelone Leclerc",43.607,1.43069,0,0,OTL:SA:1970324837186054,Europe/Paris,2,OTL, +OTL:SP:3377699720883025,1,"Barcelone Leclerc",43.607,1.43064,0,0,OTL:SA:1970324837186054,Europe/Paris,2,OTL, +OTL:SP:3377699720883026,1,"Mascard",43.5993,1.47932,0,0,OTL:SA:1970324837186055,Europe/Paris,2,OTL, +OTL:SP:3377699720883027,1,"Mascard",43.5999,1.47808,0,0,OTL:SA:1970324837186055,Europe/Paris,2,OTL, +OTL:SP:3377699720883028,1,"Aubisque",43.5976,1.48161,0,0,OTL:SA:1970324837186056,Europe/Paris,2,OTL, +OTL:SP:3377699720883029,1,"Aubisque",43.5972,1.48192,0,0,OTL:SA:1970324837186056,Europe/Paris,2,OTL, +OTL:SP:3377699720883033,1,"Providence",43.6054,1.45817,0,0,OTL:SA:1970324837186058,Europe/Paris,2,OTL, +OTL:SP:3377699720883034,1,"Providence",43.6053,1.45838,0,0,OTL:SA:1970324837186058,Europe/Paris,2,OTL, +OTL:SP:3377699720883035,1,"Savignac",43.6062,1.46243,0,0,OTL:SA:1970324837186059,Europe/Paris,2,OTL, +OTL:SP:3377699720883036,1,"Savignac",43.6062,1.46279,0,0,OTL:SA:1970324837186059,Europe/Paris,0,OTL, +OTL:SP:3377699720883037,1,"Assalit",43.6071,1.46652,0,0,OTL:SA:1970324837186060,Europe/Paris,2,OTL, +OTL:SP:3377699720883038,1,"Assalit",43.6068,1.46555,0,0,OTL:SA:1970324837186060,Europe/Paris,0,OTL, +OTL:SP:3377699720883039,1,"Monié",43.6074,1.46845,0,0,OTL:SA:1970324837186061,Europe/Paris,2,OTL, +OTL:SP:3377699720883040,1,"Monié",43.6073,1.46999,0,0,OTL:SA:1970324837186061,Europe/Paris,0,OTL, +OTL:SP:3377699720883041,1,"Crêtes",43.6074,1.47132,0,0,OTL:SA:1970324837186062,Europe/Paris,2,OTL, +OTL:SP:3377699720883042,1,"Crêtes",43.607,1.47226,0,0,OTL:SA:1970324837186062,Europe/Paris,2,OTL, +OTL:SP:3377699720883045,1,"Coquille",43.607,1.47322,0,0,OTL:SA:1970324837186063,Europe/Paris,2,OTL, +OTL:SP:3377699720883046,1,"Coquille",43.6063,1.47333,0,0,OTL:SA:1970324837186063,Europe/Paris,2,OTL, +OTL:SP:3377699720883049,1,"Navarre",43.6049,1.48023,0,0,OTL:SA:1970324837186065,Europe/Paris,0,OTL, +OTL:SP:3377699720883050,1,"Navarre",43.6047,1.48026,0,0,OTL:SA:1970324837186065,Europe/Paris,0,OTL, +OTL:SP:3377699720883051,1,"Château de l'Hers",43.6028,1.48033,0,0,OTL:SA:1970324837186066,Europe/Paris,2,OTL, +OTL:SP:3377699720883052,1,"Château de l'Hers",43.6029,1.48025,0,0,OTL:SA:1970324837186066,Europe/Paris,0,OTL, +OTL:SP:3377699720883053,1,"Fontanelles",43.6012,1.48289,0,0,OTL:SA:1970324837186067,Europe/Paris,2,OTL, +OTL:SP:3377699720883054,1,"Fontanelles",43.6008,1.48352,0,0,OTL:SA:1970324837186067,Europe/Paris,2,OTL, +OTL:SP:3377699720883055,1,"Carcassonne",43.5997,1.4842,0,0,OTL:SA:1970324837186068,Europe/Paris,2,OTL, +OTL:SP:3377699720883056,1,"Carcassonne",43.6,1.48426,0,0,OTL:SA:1970324837186068,Europe/Paris,2,OTL, +OTL:SP:3377699720883057,1,"Rougenet",43.5977,1.4849,0,0,OTL:SA:1970324837186069,Europe/Paris,2,OTL, +OTL:SP:3377699720883058,1,"Rougenet",43.598,1.48475,0,0,OTL:SA:1970324837186069,Europe/Paris,2,OTL, +OTL:SP:3377699720883059,1,"Ivoire",43.5959,1.48694,0,0,OTL:SA:1970324837186070,Europe/Paris,2,OTL, +OTL:SP:3377699720883061,1,"Ivoire",43.5958,1.48698,0,0,OTL:SA:1970324837186070,Europe/Paris,2,OTL, +OTL:SP:3377699720883065,1,"Place Bila",43.6271,1.459,0,0,OTL:SA:1970324837186073,Europe/Paris,2,OTL, +OTL:SP:3377699720883067,1,"Cazals",43.6294,1.46114,0,0,OTL:SA:1970324837186074,Europe/Paris,2,OTL, +OTL:SP:3377699720883068,1,"Cazals",43.6289,1.46075,0,0,OTL:SA:1970324837186074,Europe/Paris,2,OTL, +OTL:SP:3377699720883076,1,"Place Schuman",43.6096,1.44921,0,0,OTL:SA:1970324837186079,Europe/Paris,2,OTL, +OTL:SP:3377699720883077,1,"Périssé",43.5977,1.45841,0,0,OTL:SA:1970324837186080,Europe/Paris,2,OTL, +OTL:SP:3377699720883078,1,"Périssé",43.5977,1.45888,0,0,OTL:SA:1970324837186080,Europe/Paris,2,OTL, +OTL:SP:3377699720883079,1,"Lanfant",43.5961,1.46243,0,0,OTL:SA:1970324837186081,Europe/Paris,2,OTL, +OTL:SP:3377699720883080,1,"Lanfant",43.5965,1.46198,0,0,OTL:SA:1970324837186081,Europe/Paris,2,OTL, +OTL:SP:3377699720883081,1,"Belle Paule",43.5949,1.46423,0,0,OTL:SA:1970324837186082,Europe/Paris,2,OTL, +OTL:SP:3377699720883082,1,"Belle Paule",43.5949,1.46441,0,0,OTL:SA:1970324837186082,Europe/Paris,2,OTL, +OTL:SP:3377699720883083,1,"Leygue",43.5935,1.46634,0,0,OTL:SA:1970324837186083,Europe/Paris,2,OTL, +OTL:SP:3377699720883084,1,"Leygue",43.5937,1.46601,0,0,OTL:SA:1970324837186083,Europe/Paris,2,OTL, +OTL:SP:3377699720883085,1,"Beau Soleil",43.5924,1.46741,0,0,OTL:SA:1970324837186084,Europe/Paris,2,OTL, +OTL:SP:3377699720883086,1,"Beau Soleil",43.5923,1.46731,0,0,OTL:SA:1970324837186084,Europe/Paris,2,OTL, +OTL:SP:3377699720883088,1,"Barrau",43.5902,1.47,0,0,OTL:SA:1970324837186085,Europe/Paris,2,OTL, +OTL:SP:3377699720883089,1,"Barrau",43.5909,1.46977,0,0,OTL:SA:1970324837186085,Europe/Paris,2,OTL, +OTL:SP:3377699720883090,1,"Glaïeuls",43.5887,1.47199,0,0,OTL:SA:1970324837186086,Europe/Paris,2,OTL, +OTL:SP:3377699720883091,1,"Glaïeuls",43.5895,1.47148,0,0,OTL:SA:1970324837186086,Europe/Paris,2,OTL, +OTL:SP:3377699720883092,1,"Langevin",43.5861,1.47489,0,0,OTL:SA:1970324837186087,Europe/Paris,2,OTL, +OTL:SP:3377699720883093,1,"Langevin",43.5869,1.47458,0,0,OTL:SA:1970324837186087,Europe/Paris,2,OTL, +OTL:SP:3377699720883094,1,"Gers - Lartet",43.5842,1.47735,0,0,OTL:SA:1970324837186088,Europe/Paris,2,OTL, +OTL:SP:3377699720883095,1,"Gers - Lartet",43.5845,1.47754,0,0,OTL:SA:1970324837186088,Europe/Paris,2,OTL, +OTL:SP:3377699720883098,1,"Aude",43.5826,1.48265,0,0,OTL:SA:1970324837186090,Europe/Paris,2,OTL, +OTL:SP:3377699720883099,1,"Aude",43.5831,1.4819,0,0,OTL:SA:1970324837186090,Europe/Paris,2,OTL, +OTL:SP:3377699720883100,1,"Garin",43.5797,1.48432,0,0,OTL:SA:1970324837186091,Europe/Paris,2,OTL, +OTL:SP:3377699720883101,1,"Garin",43.5798,1.48439,0,0,OTL:SA:1970324837186091,Europe/Paris,2,OTL, +OTL:SP:3377699720883102,1,"Tahiti",43.58,1.48147,0,0,OTL:SA:1970324837186092,Europe/Paris,2,OTL, +OTL:SP:3377699720883103,1,"Tahiti",43.58,1.48027,0,0,OTL:SA:1970324837186092,Europe/Paris,2,OTL, +OTL:SP:3377699720883105,1,"Tahiti",43.58,1.48141,0,0,OTL:SA:1970324837186092,Europe/Paris,2,OTL, +OTL:SP:3377699720883108,1,"Bréguet",43.5769,1.47915,0,0,OTL:SA:1970324837186094,Europe/Paris,2,OTL, +OTL:SP:3377699720883109,1,"Bréguet",43.5774,1.47964,0,0,OTL:SA:1970324837186094,Europe/Paris,2,OTL, +OTL:SP:3377699720883110,1,"Lavidalie",43.5756,1.48068,0,0,OTL:SA:1970324837186095,Europe/Paris,2,OTL, +OTL:SP:3377699720883111,1,"Lavidalie",43.5753,1.48076,0,0,OTL:SA:1970324837186095,Europe/Paris,2,OTL, +OTL:SP:3377699720883112,1,"Sciences Sociales",43.607,1.4346,0,0,OTL:SA:1970324837186096,Europe/Paris,2,OTL, +OTL:SP:3377699720883114,1,"Duméril",43.5908,1.45239,0,0,OTL:SA:1970324837186098,Europe/Paris,2,OTL, +OTL:SP:3377699720883115,1,"Duméril",43.5905,1.45236,0,0,OTL:SA:1970324837186098,Europe/Paris,2,OTL, +OTL:SP:3377699720883116,1,"Busca",43.5886,1.45112,0,0,OTL:SA:1970324837186099,Europe/Paris,2,OTL, +OTL:SP:3377699720883117,1,"Busca",43.5891,1.45137,0,0,OTL:SA:1970324837186099,Europe/Paris,2,OTL, +OTL:SP:3377699720883118,1,"Rachou",43.5868,1.45343,0,0,OTL:SA:1970324837186100,Europe/Paris,2,OTL, +OTL:SP:3377699720883119,1,"Rachou",43.5864,1.45208,0,0,OTL:SA:1970324837186100,Europe/Paris,2,OTL, +OTL:SP:3377699720883120,1,"Place Henry Russell",43.5853,1.45306,0,0,OTL:SA:1970324837186101,Europe/Paris,2,OTL, +OTL:SP:3377699720883121,1,"Place Henry Russell",43.5854,1.45425,0,0,OTL:SA:1970324837186101,Europe/Paris,0,OTL, +OTL:SP:3377699720883138,1,"Dugay Trouin",43.5728,1.46031,0,0,OTL:SA:1970324837186110,Europe/Paris,2,OTL, +OTL:SP:3377699720883139,1,"Dugay Trouin",43.5725,1.46086,0,0,OTL:SA:1970324837186110,Europe/Paris,2,OTL, +OTL:SP:3377699720883143,1,"Roubichou",43.6284,1.46334,0,0,OTL:SA:1970324837186113,Europe/Paris,2,OTL, +OTL:SP:3377699720883144,1,"Roubichou",43.6286,1.46384,0,0,OTL:SA:1970324837186113,Europe/Paris,0,OTL, +OTL:SP:3377699720883145,1,"Ste-Augustine",43.6275,1.46143,0,0,OTL:SA:1970324837186114,Europe/Paris,2,OTL, +OTL:SP:3377699720883146,1,"Ste-Augustine",43.6273,1.461,0,0,OTL:SA:1970324837186114,Europe/Paris,2,OTL, +OTL:SP:3377699720883147,1,"Barrière de Croix-Daurade",43.6255,1.4589,0,0,OTL:SA:1970324837186115,Europe/Paris,0,OTL, +OTL:SP:3377699720883148,1,"Barrière de Croix-Daurade",43.625,1.45862,0,0,OTL:SA:1970324837186115,Europe/Paris,2,OTL, +OTL:SP:3377699720883150,1,"Ste-Hélène",43.6239,1.45901,0,0,OTL:SA:1970324838479709,Europe/Paris,2,OTL, +OTL:SP:3377699720883151,1,"Hauts de Bonnefoy",43.6211,1.45783,0,0,OTL:SA:1970324837186117,Europe/Paris,2,OTL, +OTL:SP:3377699720883152,1,"Hauts de Bonnefoy",43.6216,1.45802,0,0,OTL:SA:1970324837186117,Europe/Paris,2,OTL, +OTL:SP:3377699720883154,1,"Eglise Bonnefoy",43.619,1.45656,0,0,OTL:SA:1970324837186118,Europe/Paris,2,OTL, +OTL:SP:3377699720883155,1,"Eglise Bonnefoy",43.6195,1.45701,0,0,OTL:SA:1970324837186118,Europe/Paris,2,OTL, +OTL:SP:3377699720883158,1,"Arago",43.6174,1.45478,0,0,OTL:SA:1970324837186120,Europe/Paris,2,OTL, +OTL:SP:3377699720883159,1,"Arago",43.6173,1.45458,0,0,OTL:SA:1970324837186120,Europe/Paris,2,OTL, +OTL:SP:3377699720883160,1,"Raynal",43.6146,1.45152,0,0,OTL:SA:1970324837186121,Europe/Paris,0,OTL, +OTL:SP:3377699720883161,1,"Raynal",43.6151,1.45193,0,0,OTL:SA:1970324837186121,Europe/Paris,2,OTL, +OTL:SP:3377699720883162,1,"Place Roquelaine",43.6122,1.44819,0,0,OTL:SA:1970324837186122,Europe/Paris,2,OTL, +OTL:SP:3377699720883163,1,"Place Roquelaine",43.6119,1.44813,0,0,OTL:SA:1970324837186122,Europe/Paris,2,OTL, +OTL:SP:3377699720883174,1,"Lebas",43.5769,1.44182,0,0,OTL:SA:1970324837186128,Europe/Paris,2,OTL, +OTL:SP:3377699720883178,1,"Mouettes",43.5771,1.43974,0,0,OTL:SA:1970324837186132,Europe/Paris,0,OTL, +OTL:SP:3377699720883179,1,"Mouettes",43.5772,1.43992,0,0,OTL:SA:1970324837186132,Europe/Paris,2,OTL, +OTL:SP:3377699720883180,1,"Jaffary",43.6309,1.46217,0,0,OTL:SA:1970324837186133,Europe/Paris,0,OTL, +OTL:SP:3377699720883181,1,"Jaffary",43.631,1.46225,0,0,OTL:SA:1970324837186133,Europe/Paris,2,OTL, +OTL:SP:3377699720883182,1,"Croix-Daurade",43.6342,1.46345,0,0,OTL:SA:1970324837186134,Europe/Paris,2,OTL, +OTL:SP:3377699720883183,1,"Croix-Daurade",43.6338,1.46331,0,0,OTL:SA:1970324837186134,Europe/Paris,0,OTL, +OTL:SP:3377699720883184,1,"Lycée Raymond Naves",43.6366,1.46425,0,0,OTL:SA:1970324837186135,Europe/Paris,2,OTL, +OTL:SP:3377699720883185,1,"Lycée Raymond Naves",43.6366,1.46442,0,0,OTL:SA:1970324837186135,Europe/Paris,2,OTL, +OTL:SP:3377699720883186,1,"Luchet",43.6388,1.46544,0,0,OTL:SA:1970324837186136,Europe/Paris,0,OTL, +OTL:SP:3377699720883187,1,"Luchet",43.6384,1.46521,0,0,OTL:SA:1970324837186136,Europe/Paris,0,OTL, +OTL:SP:3377699720883188,1,"Val d'Aran",43.6495,1.47393,0,0,OTL:SA:1970324837186137,Europe/Paris,0,OTL, +OTL:SP:3377699720883189,1,"Val d'Aran",43.6496,1.47445,0,0,OTL:SA:1970324837186137,Europe/Paris,2,OTL, +OTL:SP:3377699720883190,1,"Bidart",43.65,1.47693,0,0,OTL:SA:1970324837186138,Europe/Paris,2,OTL, +OTL:SP:3377699720883191,1,"Bidart",43.65,1.47679,0,0,OTL:SA:1970324837186138,Europe/Paris,0,OTL, +OTL:SP:3377699720883192,1,"Ronceveaux",43.6514,1.47962,0,0,OTL:SA:1970324837186139,Europe/Paris,2,OTL, +OTL:SP:3377699720883193,1,"Ronceveaux",43.6514,1.4796,0,0,OTL:SA:1970324837186139,Europe/Paris,2,OTL, +OTL:SP:3377699720883194,1,"Biarritz",43.6522,1.48362,0,0,OTL:SA:1970324837186140,Europe/Paris,0,OTL, +OTL:SP:3377699720883195,1,"Biarritz",43.6523,1.48358,0,0,OTL:SA:1970324837186140,Europe/Paris,2,OTL, +OTL:SP:3377699720883196,1,"Hortensias",43.6583,1.47725,0,0,OTL:SA:1970324837186141,Europe/Paris,2,OTL, +OTL:SP:3377699720883197,1,"Hortensias",43.6582,1.4773,0,0,OTL:SA:1970324837186141,Europe/Paris,2,OTL, +OTL:SP:3377699720883198,1,"Cèdres",43.659,1.47791,0,0,OTL:SA:1970324837186142,Europe/Paris,0,OTL, +OTL:SP:3377699720883199,1,"Cèdres",43.6591,1.47781,0,0,OTL:SA:1970324837186142,Europe/Paris,2,OTL, +OTL:SP:3377699720883200,1,"Côte de Cornaudric",43.6616,1.47603,0,0,OTL:SA:1970324837186143,Europe/Paris,2,OTL, +OTL:SP:3377699720883201,1,"Côte de Cornaudric",43.6616,1.47602,0,0,OTL:SA:1970324837186143,Europe/Paris,0,OTL, +OTL:SP:3377699720883202,1,"Jasmin",43.6626,1.47442,0,0,OTL:SA:1970324837186144,Europe/Paris,2,OTL, +OTL:SP:3377699720883203,1,"Jasmin",43.6633,1.47436,0,0,OTL:SA:1970324837186144,Europe/Paris,2,OTL, +OTL:SP:3377699720883204,1,"Tourterelles",43.6639,1.47376,0,0,OTL:SA:1970324837186145,Europe/Paris,2,OTL, +OTL:SP:3377699720883205,1,"Tourterelles",43.6638,1.47381,0,0,OTL:SA:1970324837186145,Europe/Paris,2,OTL, +OTL:SP:3377699720883206,1,"Geai",43.6669,1.47452,0,0,OTL:SA:1970324837186146,Europe/Paris,2,OTL, +OTL:SP:3377699720883207,1,"Geai",43.667,1.47433,0,0,OTL:SA:1970324837186146,Europe/Paris,0,OTL, +OTL:SP:3377699720883208,1,"Pitchounelle",43.6673,1.47683,0,0,OTL:SA:1970324837186147,Europe/Paris,0,OTL, +OTL:SP:3377699720883209,1,"Pitchounelle",43.6673,1.47672,0,0,OTL:SA:1970324837186147,Europe/Paris,0,OTL, +OTL:SP:3377699720883210,1,"Agout",43.6664,1.48018,0,0,OTL:SA:1970324837186148,Europe/Paris,0,OTL, +OTL:SP:3377699720883211,1,"Agout",43.6665,1.47979,0,0,OTL:SA:1970324837186148,Europe/Paris,0,OTL, +OTL:SP:3377699720883212,1,"Séoune",43.6657,1.48302,0,0,OTL:SA:1970324837186149,Europe/Paris,0,OTL, +OTL:SP:3377699720883213,1,"Séoune",43.6656,1.48323,0,0,OTL:SA:1970324837186149,Europe/Paris,0,OTL, +OTL:SP:3377699720883214,1,"Condor",43.6641,1.48433,0,0,OTL:SA:1970324837186150,Europe/Paris,0,OTL, +OTL:SP:3377699720883215,1,"Condor",43.664,1.48437,0,0,OTL:SA:1970324837186150,Europe/Paris,0,OTL, +OTL:SP:3377699720883216,1,"Bd des Minimes",43.615,1.44888,0,0,OTL:SA:1970324837186151,Europe/Paris,2,OTL, +OTL:SP:3377699720883217,1,"Raisin",43.6153,1.44575,0,0,OTL:SA:1970324837186152,Europe/Paris,0,OTL, +OTL:SP:3377699720883218,1,"Raisin",43.6155,1.44584,0,0,OTL:SA:1970324837186152,Europe/Paris,2,OTL, +OTL:SP:3377699720883219,1,"Passerelle",43.6154,1.44261,0,0,OTL:SA:1970324837186153,Europe/Paris,2,OTL, +OTL:SP:3377699720883220,1,"Passerelle",43.615,1.44233,0,0,OTL:SA:1970324837186153,Europe/Paris,2,OTL, +OTL:SP:3377699720883221,1,"Anges",43.6222,1.43699,0,0,OTL:SA:1970324837186154,Europe/Paris,0,OTL, +OTL:SP:3377699720883222,1,"Mazades",43.6239,1.43692,0,0,OTL:SA:1970324837186155,Europe/Paris,0,OTL, +OTL:SP:3377699720883227,1,"Pierre Curie",43.6244,1.44361,0,0,OTL:SA:1970324837186160,Europe/Paris,0,OTL, +OTL:SP:3377699720883228,1,"Negreneys",43.6238,1.44487,0,0,OTL:SA:1970324837186161,Europe/Paris,0,OTL, +OTL:SP:3377699720883230,1,"Cordeau",43.626,1.44471,0,0,OTL:SA:1970324838479691,Europe/Paris,2,OTL, +OTL:SP:3377699720883232,1,"Pradet",43.6282,1.44758,0,0,OTL:SA:1970324837186164,Europe/Paris,2,OTL, +OTL:SP:3377699720883233,1,"Pradet",43.6284,1.44822,0,0,OTL:SA:1970324837186164,Europe/Paris,2,OTL, +OTL:SP:3377699720883234,1,"Loubiague",43.6323,1.44384,0,0,OTL:SA:1970324837186165,Europe/Paris,2,OTL, +OTL:SP:3377699720883235,1,"Loubiague",43.6317,1.44386,0,0,OTL:SA:1970324837186165,Europe/Paris,0,OTL, +OTL:SP:3377699720883236,1,"Renan",43.6337,1.44375,0,0,OTL:SA:1970324837186166,Europe/Paris,2,OTL, +OTL:SP:3377699720883237,1,"Renan",43.634,1.44375,0,0,OTL:SA:1970324837186166,Europe/Paris,2,OTL, +OTL:SP:3377699720883238,1,"Voivenel",43.6353,1.4437,0,0,OTL:SA:1970324837186167,Europe/Paris,2,OTL, +OTL:SP:3377699720883239,1,"Voivenel",43.6354,1.44386,0,0,OTL:SA:1970324837186167,Europe/Paris,2,OTL, +OTL:SP:3377699720883241,1,"Chamois",43.6394,1.44441,0,0,OTL:SA:1970324837186169,Europe/Paris,2,OTL, +OTL:SP:3377699720883246,1,"Cerisiers",43.6422,1.44449,0,0,OTL:SA:1970324837186171,Europe/Paris,0,OTL, +OTL:SP:3377699720883253,1,"Vignes",43.6453,1.45307,0,0,OTL:SA:1970324837186175,Europe/Paris,0,OTL, +OTL:SP:3377699720883254,1,"Vignes",43.6453,1.4531,0,0,OTL:SA:1970324837186175,Europe/Paris,0,OTL, +OTL:SP:3377699720883255,1,"Fénelon",43.6471,1.45334,0,0,OTL:SA:1970324837186176,Europe/Paris,0,OTL, +OTL:SP:3377699720883256,1,"Fénelon",43.6473,1.45323,0,0,OTL:SA:1970324837186176,Europe/Paris,0,OTL, +OTL:SP:3377699720883257,1,"Grand Selve",43.6503,1.45207,0,0,OTL:SA:1970324837186177,Europe/Paris,2,OTL, +OTL:SP:3377699720883258,1,"Grand Selve",43.6499,1.45269,0,0,OTL:SA:1970324837186177,Europe/Paris,0,OTL, +OTL:SP:3377699720883259,1,"Froideterre",43.6524,1.44849,0,0,OTL:SA:1970324837186178,Europe/Paris,0,OTL, +OTL:SP:3377699720883260,1,"Froideterre",43.6522,1.44862,0,0,OTL:SA:1970324837186178,Europe/Paris,0,OTL, +OTL:SP:3377699720883261,1,"Boudou",43.6527,1.44559,0,0,OTL:SA:1970324837186179,Europe/Paris,0,OTL, +OTL:SP:3377699720883262,1,"Boudou",43.6526,1.44567,0,0,OTL:SA:1970324837186179,Europe/Paris,0,OTL, +OTL:SP:3377699720883265,1,"Sablettes",43.6559,1.45172,0,0,OTL:SA:1970324837186181,Europe/Paris,2,OTL, +OTL:SP:3377699720883266,1,"Ch. d'Encourse",43.6543,1.45351,0,0,OTL:SA:1970324837186182,Europe/Paris,0,OTL, +OTL:SP:3377699720883267,1,"Lilas",43.6532,1.47091,0,0,OTL:SA:1970324837186183,Europe/Paris,0,OTL, +OTL:SP:3377699720883268,1,"Lilas",43.6532,1.47083,0,0,OTL:SA:1970324837186183,Europe/Paris,0,OTL, +OTL:SP:3377699720883269,1,"Mimosas",43.6559,1.471,0,0,OTL:SA:1970324837186184,Europe/Paris,0,OTL, +OTL:SP:3377699720883270,1,"Mimosas",43.656,1.47099,0,0,OTL:SA:1970324837186184,Europe/Paris,2,OTL, +OTL:SP:3377699720883271,1,"Roses",43.6568,1.47318,0,0,OTL:SA:1970324837186185,Europe/Paris,2,OTL, +OTL:SP:3377699720883272,1,"Roses",43.6566,1.47309,0,0,OTL:SA:1970324837186185,Europe/Paris,0,OTL, +OTL:SP:3377699720883273,1,"Myosotis",43.658,1.47631,0,0,OTL:SA:1970324837186186,Europe/Paris,0,OTL, +OTL:SP:3377699720883274,1,"Myosotis",43.6583,1.47664,0,0,OTL:SA:1970324837186186,Europe/Paris,0,OTL, +OTL:SP:3377699720883275,1,"Grive",43.6584,1.48433,0,0,OTL:SA:1970324837186187,Europe/Paris,0,OTL, +OTL:SP:3377699720883276,1,"Grive",43.6586,1.48433,0,0,OTL:SA:1970324837186187,Europe/Paris,0,OTL, +OTL:SP:3377699720883277,1,"Vents d'Autan",43.6586,1.48767,0,0,OTL:SA:1970324837186188,Europe/Paris,2,OTL, +OTL:SP:3377699720883278,1,"Vents d'Autan",43.6586,1.48769,0,0,OTL:SA:1970324837186188,Europe/Paris,2,OTL, +OTL:SP:3377699720883279,1,"Monts du Forez",43.6578,1.4893,0,0,OTL:SA:1970324837186189,Europe/Paris,2,OTL, +OTL:SP:3377699720883280,1,"Monts du Forez",43.6574,1.48987,0,0,OTL:SA:1970324837186189,Europe/Paris,2,OTL, +OTL:SP:3377699720883281,1,"Piscine",43.6553,1.49157,0,0,OTL:SA:1970324837186190,Europe/Paris,2,OTL, +OTL:SP:3377699720883282,1,"Piscine",43.6557,1.49131,0,0,OTL:SA:1970324837186190,Europe/Paris,2,OTL, +OTL:SP:3377699720883283,1,"Aspin",43.6537,1.49222,0,0,OTL:SA:1970324837186191,Europe/Paris,2,OTL, +OTL:SP:3377699720883284,1,"Aspin",43.6542,1.49145,0,0,OTL:SA:1970324837186191,Europe/Paris,2,OTL, +OTL:SP:3377699720883285,1,"Vence",43.6522,1.49621,0,0,OTL:SA:1970324837186192,Europe/Paris,0,OTL, +OTL:SP:3377699720883286,1,"Vence",43.6522,1.49634,0,0,OTL:SA:1970324837186192,Europe/Paris,0,OTL, +OTL:SP:3377699720883287,1,"Vallauris",43.651,1.50019,0,0,OTL:SA:1970324837186193,Europe/Paris,2,OTL, +OTL:SP:3377699720883288,1,"Vallauris",43.6511,1.50001,0,0,OTL:SA:1970324837186193,Europe/Paris,2,OTL, +OTL:SP:3377699720883289,1,"St-Tropez",43.6499,1.50266,0,0,OTL:SA:1970324837186194,Europe/Paris,2,OTL, +OTL:SP:3377699720883290,1,"St-Tropez",43.6502,1.50225,0,0,OTL:SA:1970324837186194,Europe/Paris,2,OTL, +OTL:SP:3377699720883291,1,"Calicéo",43.6492,1.50458,0,0,OTL:SA:1970324837186195,Europe/Paris,0,OTL, +OTL:SP:3377699720883292,1,"Calicéo",43.6494,1.50412,0,0,OTL:SA:1970324837186195,Europe/Paris,2,OTL, +OTL:SP:3377699720883293,1,"Desnos",43.5629,1.39173,0,0,OTL:SA:1970324837186196,Europe/Paris,2,OTL, +OTL:SP:3377699720883294,1,"Desnos",43.5628,1.39135,0,0,OTL:SA:1970324837186196,Europe/Paris,2,OTL, +OTL:SP:3377699720883295,1,"Ourliac",43.5614,1.39196,0,0,OTL:SA:1970324837186197,Europe/Paris,2,OTL, +OTL:SP:3377699720883296,1,"Ourliac",43.5614,1.39121,0,0,OTL:SA:1970324837186197,Europe/Paris,0,OTL, +OTL:SP:3377699720883298,1,"Lestang",43.5604,1.3939,0,0,OTL:SA:1970324837186198,Europe/Paris,2,OTL, +OTL:SP:3377699720883299,1,"Berdoulat",43.51,1.38869,0,0,OTL:SA:1970324837186199,Europe/Paris,2,OTL, +OTL:SP:3377699720883300,1,"Berdoulat",43.5108,1.38858,0,0,OTL:SA:1970324837186199,Europe/Paris,2,OTL, +OTL:SP:3377699720883301,1,"Commune",43.5025,1.39205,0,0,OTL:SA:1970324837186200,Europe/Paris,0,OTL, +OTL:SP:3377699720883302,1,"Commune",43.5024,1.39209,0,0,OTL:SA:1970324837186200,Europe/Paris,0,OTL, +OTL:SP:3377699720883303,1,"Cazaulon",43.5009,1.39318,0,0,OTL:SA:1970324837186201,Europe/Paris,0,OTL, +OTL:SP:3377699720883304,1,"Cazaulon",43.5004,1.39339,0,0,OTL:SA:1970324837186201,Europe/Paris,2,OTL, +OTL:SP:3377699720883305,1,"Lachambre",43.499,1.39383,0,0,OTL:SA:1970324837186202,Europe/Paris,0,OTL, +OTL:SP:3377699720883306,1,"Lachambre",43.4989,1.39382,0,0,OTL:SA:1970324837186202,Europe/Paris,0,OTL, +OTL:SP:3377699720883307,1,"Griffon",43.5596,1.50161,0,0,OTL:SA:1970324837186203,Europe/Paris,0,OTL, +OTL:SP:3377699720883308,1,"Griffon",43.5595,1.50117,0,0,OTL:SA:1970324837186203,Europe/Paris,2,OTL, +OTL:SP:3377699720883309,1,"Malassang",43.4968,1.39315,0,0,OTL:SA:1970324837186204,Europe/Paris,0,OTL, +OTL:SP:3377699720883310,1,"Môles",43.4919,1.39403,0,0,OTL:SA:1970324837186205,Europe/Paris,0,OTL, +OTL:SP:3377699720883311,1,"Môles",43.4919,1.3941,0,0,OTL:SA:1970324837186205,Europe/Paris,0,OTL, +OTL:SP:3377699720883312,1,"Passage à Niveau",43.4907,1.39484,0,0,OTL:SA:1970324837186206,Europe/Paris,0,OTL, +OTL:SP:3377699720883313,1,"Passage à Niveau",43.4906,1.39519,0,0,OTL:SA:1970324837186206,Europe/Paris,0,OTL, +OTL:SP:3377699720883314,1,"Beaucru",43.4915,1.38149,0,0,OTL:SA:1970324837186207,Europe/Paris,0,OTL, +OTL:SP:3377699720883315,1,"Beaucru",43.4912,1.38232,0,0,OTL:SA:1970324837186207,Europe/Paris,2,OTL, +OTL:SP:3377699720883316,1,"Av. de Roquettes",43.4919,1.38001,0,0,OTL:SA:1970324837186208,Europe/Paris,2,OTL, +OTL:SP:3377699720883317,1,"Av. de Roquettes",43.492,1.37997,0,0,OTL:SA:1970324837186208,Europe/Paris,2,OTL, +OTL:SP:3377699720883318,1,"Ecole Roquettes",43.4943,1.37643,0,0,OTL:SA:1970324837186209,Europe/Paris,2,OTL, +OTL:SP:3377699720883319,1,"Ecole Roquettes",43.4943,1.37637,0,0,OTL:SA:1970324837186209,Europe/Paris,0,OTL, +OTL:SP:3377699720883320,1,"Cimetière Roquettes",43.4967,1.37081,0,0,OTL:SA:1970324837186210,Europe/Paris,2,OTL, +OTL:SP:3377699720883321,1,"Cimetière Roquettes",43.4966,1.37102,0,0,OTL:SA:1970324837186210,Europe/Paris,2,OTL, +OTL:SP:3377699720883322,1,"Le Lac",43.4941,1.36698,0,0,OTL:SA:1970324837186211,Europe/Paris,2,OTL, +OTL:SP:3377699720883323,1,"Le Lac",43.4941,1.36696,0,0,OTL:SA:1970324837186211,Europe/Paris,0,OTL, +OTL:SP:3377699720883324,1,"Echez",43.4957,1.36486,0,0,OTL:SA:1970324837186212,Europe/Paris,0,OTL, +OTL:SP:3377699720883325,1,"Echez",43.4957,1.36489,0,0,OTL:SA:1970324837186212,Europe/Paris,0,OTL, +OTL:SP:3377699720883326,1,"Lèze",43.4968,1.3633,0,0,OTL:SA:1970324837186213,Europe/Paris,0,OTL, +OTL:SP:3377699720883327,1,"Lèze",43.4968,1.36326,0,0,OTL:SA:1970324837186213,Europe/Paris,0,OTL, +OTL:SP:3377699720883328,1,"Château Sud",43.4979,1.36276,0,0,OTL:SA:1970324837186214,Europe/Paris,0,OTL, +OTL:SP:3377699720883329,1,"Château Sud",43.4979,1.36284,0,0,OTL:SA:1970324837186214,Europe/Paris,2,OTL, +OTL:SP:3377699720883330,1,"Penent",43.5766,1.42382,0,0,OTL:SA:1970324837186215,Europe/Paris,2,OTL, +OTL:SP:3377699720883331,1,"Penent",43.576,1.4242,0,0,OTL:SA:1970324837186215,Europe/Paris,2,OTL, +OTL:SP:3377699720883332,1,"Gallieni",43.5734,1.42427,0,0,OTL:SA:1970324837186216,Europe/Paris,2,OTL, +OTL:SP:3377699720883333,1,"Gallieni",43.5729,1.42424,0,0,OTL:SA:1970324837186216,Europe/Paris,2,OTL, +OTL:SP:3377699720883334,1,"Langlade",43.5702,1.42439,0,0,OTL:SA:1970324837186217,Europe/Paris,2,OTL, +OTL:SP:3377699720883335,1,"Langlade",43.5714,1.42441,0,0,OTL:SA:1970324837186217,Europe/Paris,2,OTL, +OTL:SP:3377699720883336,1,"Gironis",43.5638,1.42527,0,0,OTL:SA:1970324837186218,Europe/Paris,2,OTL, +OTL:SP:3377699720883337,1,"Gironis",43.5637,1.42535,0,0,OTL:SA:1970324837186218,Europe/Paris,2,OTL, +OTL:SP:3377699720883338,1,"Marchant",43.5594,1.42474,0,0,OTL:SA:1970324837186219,Europe/Paris,2,OTL, +OTL:SP:3377699720883339,1,"Marchant",43.5594,1.42474,0,0,OTL:SA:1970324837186219,Europe/Paris,2,OTL, +OTL:SP:3377699720883342,1,"Route d'Espagne",43.5533,1.42254,0,0,OTL:SA:1970324837186221,Europe/Paris,0,OTL, +OTL:SP:3377699720883343,1,"Route d'Espagne",43.5531,1.42224,0,0,OTL:SA:1970324837186221,Europe/Paris,0,OTL, +OTL:SP:3377699720883344,1,"Larrieu",43.5476,1.41964,0,0,OTL:SA:1970324837186222,Europe/Paris,0,OTL, +OTL:SP:3377699720883345,1,"Larrieu",43.5469,1.41907,0,0,OTL:SA:1970324837186222,Europe/Paris,0,OTL, +OTL:SP:3377699720883347,1,"Clairfont",43.5441,1.41699,0,0,OTL:SA:1970324837186223,Europe/Paris,0,OTL, +OTL:SP:3377699720883348,1,"Frênes",43.541,1.41263,0,0,OTL:SA:1970324837186224,Europe/Paris,2,OTL, +OTL:SP:3377699720883349,1,"Frênes",43.5412,1.4127,0,0,OTL:SA:1970324837186224,Europe/Paris,2,OTL, +OTL:SP:3377699720883350,1,"Ctre Cial Portet - Entrée 5",43.5358,1.40752,0,0,OTL:SA:1970324837186225,Europe/Paris,2,OTL, +OTL:SP:3377699720883351,1,"Ctre Cial Portet - Entrée 5",43.5369,1.40656,0,0,OTL:SA:1970324837186225,Europe/Paris,2,OTL, +OTL:SP:3377699720883352,1,"Saliège",43.5341,1.41008,0,0,OTL:SA:1970324837186226,Europe/Paris,0,OTL, +OTL:SP:3377699720883353,1,"Saliège",43.5338,1.41039,0,0,OTL:SA:1970324837186226,Europe/Paris,0,OTL, +OTL:SP:3377699720883354,1,"Boulodrome",43.5321,1.41199,0,0,OTL:SA:1970324837186227,Europe/Paris,2,OTL, +OTL:SP:3377699720883355,1,"Boulodrome",43.5323,1.41195,0,0,OTL:SA:1970324837186227,Europe/Paris,2,OTL, +OTL:SP:3377699720883356,1,"Collège de Portet",43.5304,1.40978,0,0,OTL:SA:1970324837186228,Europe/Paris,2,OTL, +OTL:SP:3377699720883357,1,"Collège de Portet",43.5303,1.41046,0,0,OTL:SA:1970324837186228,Europe/Paris,2,OTL, +OTL:SP:3377699720883358,1,"Piscine",43.528,1.40924,0,0,OTL:SA:1970324837186229,Europe/Paris,0,OTL, +OTL:SP:3377699720883359,1,"Piscine",43.5282,1.40935,0,0,OTL:SA:1970324837186229,Europe/Paris,0,OTL, +OTL:SP:3377699720883360,1,"Pont Rocade",43.5121,1.38331,0,0,OTL:SA:1970324837186230,Europe/Paris,2,OTL, +OTL:SP:3377699720883361,1,"Pont Rocade",43.512,1.38257,0,0,OTL:SA:1970324837186230,Europe/Paris,2,OTL, +OTL:SP:3377699720883362,1,"Colombier",43.5107,1.37911,0,0,OTL:SA:1970324837186231,Europe/Paris,2,OTL, +OTL:SP:3377699720883363,1,"Colombier",43.5109,1.37934,0,0,OTL:SA:1970324837186231,Europe/Paris,2,OTL, +OTL:SP:3377699720883368,1,"Tilleuls",43.5071,1.36976,0,0,OTL:SA:1970324837186234,Europe/Paris,2,OTL, +OTL:SP:3377699720883369,1,"V. Auriol",43.5039,1.36595,0,0,OTL:SA:1970324837186235,Europe/Paris,2,OTL, +OTL:SP:3377699720883370,1,"V. Auriol",43.504,1.3662,0,0,OTL:SA:1970324837186235,Europe/Paris,0,OTL, +OTL:SP:3377699720883374,1,"St Anne",43.5934,1.50431,0,0,OTL:SA:1970324837186239,Europe/Paris,2,OTL, +OTL:SP:3377699720883375,1,"St Anne",43.5933,1.50421,0,0,OTL:SA:1970324837186239,Europe/Paris,2,OTL, +OTL:SP:3377699720883434,1,"Charbonnière",43.5775,1.44312,0,0,OTL:SA:1970324837186274,Europe/Paris,0,OTL, +OTL:SP:3377699720883435,1,"Charbonnière",43.5771,1.44289,0,0,OTL:SA:1970324837186274,Europe/Paris,2,OTL, +OTL:SP:3377699720883436,1,"Herriot",43.5746,1.44661,0,0,OTL:SA:1970324837186275,Europe/Paris,2,OTL, +OTL:SP:3377699720883437,1,"Herriot",43.5744,1.44689,0,0,OTL:SA:1970324837186275,Europe/Paris,2,OTL, +OTL:SP:3377699720883438,1,"Palmiers",43.5737,1.44873,0,0,OTL:SA:1970324837186276,Europe/Paris,2,OTL, +OTL:SP:3377699720883439,1,"Palmiers",43.5732,1.4494,0,0,OTL:SA:1970324837186276,Europe/Paris,2,OTL, +OTL:SP:3377699720883440,1,"Bon Voisin",43.5701,1.45048,0,0,OTL:SA:1970324837186277,Europe/Paris,2,OTL, +OTL:SP:3377699720883441,1,"Bon Voisin",43.5702,1.45048,0,0,OTL:SA:1970324837186277,Europe/Paris,2,OTL, +OTL:SP:3377699720883442,1,"Coteaux",43.5682,1.45184,0,0,OTL:SA:1970324837186278,Europe/Paris,2,OTL, +OTL:SP:3377699720883443,1,"Coteaux",43.5682,1.45175,0,0,OTL:SA:1970324837186278,Europe/Paris,2,OTL, +OTL:SP:3377699720883446,1,"Ponsan Bellevue",43.5634,1.45541,0,0,OTL:SA:1970324837186280,Europe/Paris,2,OTL, +OTL:SP:3377699720883447,1,"Ponsan Bellevue",43.5636,1.45524,0,0,OTL:SA:1970324837186280,Europe/Paris,2,OTL, +OTL:SP:3377699720883448,1,"Bourdette",43.5552,1.45704,0,0,OTL:SA:1970324837186281,Europe/Paris,2,OTL, +OTL:SP:3377699720883449,1,"Bourdette",43.5546,1.45665,0,0,OTL:SA:1970324837186281,Europe/Paris,2,OTL, +OTL:SP:3377699720883450,1,"Larrey",43.5533,1.4568,0,0,OTL:SA:1970324837186282,Europe/Paris,2,OTL, +OTL:SP:3377699720883451,1,"Larrey",43.5526,1.45693,0,0,OTL:SA:1970324837186282,Europe/Paris,2,OTL, +OTL:SP:3377699720883452,1,"Narrade",43.5514,1.45728,0,0,OTL:SA:1970324837186283,Europe/Paris,2,OTL, +OTL:SP:3377699720883453,1,"Narrade",43.5517,1.4573,0,0,OTL:SA:1970324837186283,Europe/Paris,2,OTL, +OTL:SP:3377699720883454,1,"Pastel",43.5499,1.45744,0,0,OTL:SA:1970324837186284,Europe/Paris,2,OTL, +OTL:SP:3377699720883455,1,"Pastel",43.5497,1.45739,0,0,OTL:SA:1970324837186284,Europe/Paris,2,OTL, +OTL:SP:3377699720883456,1,"Eglise Pouvourville",43.5484,1.45436,0,0,OTL:SA:1970324837186285,Europe/Paris,2,OTL, +OTL:SP:3377699720883457,1,"Eglise Pouvourville",43.5485,1.45475,0,0,OTL:SA:1970324837186285,Europe/Paris,2,OTL, +OTL:SP:3377699720883458,1,"Estérel",43.5439,1.45636,0,0,OTL:SA:1970324837186286,Europe/Paris,0,OTL, +OTL:SP:3377699720883459,1,"Estérel",43.5441,1.45616,0,0,OTL:SA:1970324837186286,Europe/Paris,0,OTL, +OTL:SP:3377699720883460,1,"Aéropostale",43.5421,1.45928,0,0,OTL:SA:1970324837186287,Europe/Paris,0,OTL, +OTL:SP:3377699720883461,1,"Aéropostale",43.5427,1.45827,0,0,OTL:SA:1970324837186287,Europe/Paris,2,OTL, +OTL:SP:3377699720883462,1,"Salas",43.5417,1.46151,0,0,OTL:SA:1970324837186288,Europe/Paris,2,OTL, +OTL:SP:3377699720883463,1,"Salas",43.5418,1.46139,0,0,OTL:SA:1970324837186288,Europe/Paris,2,OTL, +OTL:SP:3377699720883464,1,"Ecole Gleyze-Vieille",43.5445,1.46389,0,0,OTL:SA:1970324837186289,Europe/Paris,2,OTL, +OTL:SP:3377699720883465,1,"Ecole Gleyze-Vieille",43.5445,1.46376,0,0,OTL:SA:1970324837186289,Europe/Paris,2,OTL, +OTL:SP:3377699720883466,1,"Fac Dentaire",43.5649,1.46239,0,0,OTL:SA:1970324837186290,Europe/Paris,2,OTL, +OTL:SP:3377699720883467,1,"Fac Dentaire",43.5646,1.46229,0,0,OTL:SA:1970324837186290,Europe/Paris,2,OTL, +OTL:SP:3377699720883468,1,"Hôpital Larrey",43.5523,1.4536,0,0,OTL:SA:1970324837448244,Europe/Paris,2,OTL, +OTL:SP:3377699720883471,1,"Clotasses",43.5558,1.46647,0,0,OTL:SA:1970324837186293,Europe/Paris,2,OTL, +OTL:SP:3377699720883472,1,"Clotasses",43.5546,1.46728,0,0,OTL:SA:1970324837186293,Europe/Paris,2,OTL, +OTL:SP:3377699720883473,1,"Eglise Ramonville",43.5511,1.46963,0,0,OTL:SA:1970324837186294,Europe/Paris,2,OTL, +OTL:SP:3377699720883474,1,"Lapeyrade",43.5496,1.471,0,0,OTL:SA:1970324837186295,Europe/Paris,2,OTL, +OTL:SP:3377699720883475,1,"Lapeyrade",43.5507,1.47025,0,0,OTL:SA:1970324837186295,Europe/Paris,2,OTL, +OTL:SP:3377699720883476,1,"Poste de Ramonville",43.5481,1.47215,0,0,OTL:SA:1970324837186296,Europe/Paris,2,OTL, +OTL:SP:3377699720883477,1,"Poste de Ramonville",43.5477,1.47253,0,0,OTL:SA:1970324837186296,Europe/Paris,2,OTL, +OTL:SP:3377699720883478,1,"Pastourelles",43.5437,1.47723,0,0,OTL:SA:1970324837186297,Europe/Paris,2,OTL, +OTL:SP:3377699720883479,1,"Pastourelles",43.5433,1.4774,0,0,OTL:SA:1970324837186297,Europe/Paris,2,OTL, +OTL:SP:3377699720883481,1,"Deux Ormeaux",43.5409,1.47878,0,0,OTL:SA:1970324837186298,Europe/Paris,2,OTL, +OTL:SP:3377699720883482,1,"Deux Ormeaux",43.5409,1.4789,0,0,OTL:SA:1970324837186298,Europe/Paris,2,OTL, +OTL:SP:3377699720883483,1,"Monument",43.538,1.47492,0,0,OTL:SA:1970324837186299,Europe/Paris,2,OTL, +OTL:SP:3377699720883484,1,"Monument",43.5381,1.475,0,0,OTL:SA:1970324837186299,Europe/Paris,0,OTL, +OTL:SP:3377699720883485,1,"Suisse",43.5367,1.47294,0,0,OTL:SA:1970324837186300,Europe/Paris,0,OTL, +OTL:SP:3377699720883486,1,"Suisse",43.5369,1.47326,0,0,OTL:SA:1970324837186300,Europe/Paris,2,OTL, +OTL:SP:3377699720883487,1,"Tourterelles",43.5354,1.47312,0,0,OTL:SA:1970324837186301,Europe/Paris,2,OTL, +OTL:SP:3377699720883488,1,"Tourterelles",43.5353,1.47327,0,0,OTL:SA:1970324837186301,Europe/Paris,2,OTL, +OTL:SP:3377699720883489,1,"Coteaux",43.5313,1.47772,0,0,OTL:SA:1970324837186302,Europe/Paris,0,OTL, +OTL:SP:3377699720883490,1,"Coteaux",43.5314,1.47749,0,0,OTL:SA:1970324837186302,Europe/Paris,2,OTL, +OTL:SP:3377699720883491,1,"Mairie Auzeville",43.5301,1.47934,0,0,OTL:SA:1970324837186303,Europe/Paris,0,OTL, +OTL:SP:3377699720883492,1,"Mairie Auzeville",43.5296,1.48001,0,0,OTL:SA:1970324837186303,Europe/Paris,2,OTL, +OTL:SP:3377699720883493,1,"Prat",43.5282,1.48192,0,0,OTL:SA:1970324837186304,Europe/Paris,2,OTL, +OTL:SP:3377699720883494,1,"Prat",43.5285,1.48177,0,0,OTL:SA:1970324837186304,Europe/Paris,2,OTL, +OTL:SP:3377699720883495,1,"Mayrine",43.5264,1.48399,0,0,OTL:SA:1970324837186305,Europe/Paris,2,OTL, +OTL:SP:3377699720883496,1,"Mayrine",43.5263,1.48416,0,0,OTL:SA:1970324837186305,Europe/Paris,0,OTL, +OTL:SP:3377699720883497,1,"Talabot Sud",43.5634,1.3866,0,0,OTL:SA:1970324837186306,Europe/Paris,2,OTL, +OTL:SP:3377699720883498,1,"Talabot Sud",43.5633,1.38643,0,0,OTL:SA:1970324837186306,Europe/Paris,0,OTL, +OTL:SP:3377699720883499,1,"Charpy",43.5605,1.38365,0,0,OTL:SA:1970324837186307,Europe/Paris,0,OTL, +OTL:SP:3377699720883500,1,"Charpy",43.5606,1.38378,0,0,OTL:SA:1970324837186307,Europe/Paris,0,OTL, +OTL:SP:3377699720883501,1,"Eglise St-Simon",43.5572,1.38018,0,0,OTL:SA:1970324837186308,Europe/Paris,0,OTL, +OTL:SP:3377699720883502,1,"Eglise St-Simon",43.5577,1.38084,0,0,OTL:SA:1970324837186308,Europe/Paris,0,OTL, +OTL:SP:3377699720883503,1,"Françoise Dolto",43.5556,1.37808,0,0,OTL:SA:1970324837186309,Europe/Paris,0,OTL, +OTL:SP:3377699720883504,1,"Françoise Dolto",43.5557,1.37824,0,0,OTL:SA:1970324837186309,Europe/Paris,0,OTL, +OTL:SP:3377699720883505,1,"Villenouvelle",43.5536,1.37556,0,0,OTL:SA:1970324837186310,Europe/Paris,0,OTL, +OTL:SP:3377699720883506,1,"Villenouvelle",43.5537,1.37574,0,0,OTL:SA:1970324837186310,Europe/Paris,2,OTL, +OTL:SP:3377699720883507,1,"Bayès",43.5561,1.3712,0,0,OTL:SA:1970324837186311,Europe/Paris,2,OTL, +OTL:SP:3377699720883508,1,"Bayès",43.5559,1.37251,0,0,OTL:SA:1970324837186311,Europe/Paris,2,OTL, +OTL:SP:3377699720883509,1,"Coin Fermé",43.5575,1.36867,0,0,OTL:SA:1970324837186312,Europe/Paris,0,OTL, +OTL:SP:3377699720883510,1,"Coin Fermé",43.5576,1.36865,0,0,OTL:SA:1970324837186312,Europe/Paris,0,OTL, +OTL:SP:3377699720883513,1,"Glassière",43.5556,1.36295,0,0,OTL:SA:1970324837186314,Europe/Paris,2,OTL, +OTL:SP:3377699720883514,1,"Glassière",43.5558,1.3634,0,0,OTL:SA:1970324837186314,Europe/Paris,2,OTL, +OTL:SP:3377699720883515,1,"Troubadours",43.5542,1.3603,0,0,OTL:SA:1970324837186315,Europe/Paris,2,OTL, +OTL:SP:3377699720883516,1,"Troubadours",43.5542,1.3599,0,0,OTL:SA:1970324837186315,Europe/Paris,2,OTL, +OTL:SP:3377699720883517,1,"Bourdettes",43.5527,1.35543,0,0,OTL:SA:1970324837186316,Europe/Paris,2,OTL, +OTL:SP:3377699720883518,1,"Bourdettes",43.5526,1.35527,0,0,OTL:SA:1970324837186316,Europe/Paris,2,OTL, +OTL:SP:3377699720883519,1,"Bachecame Petit Jean",43.5461,1.35076,0,0,OTL:SA:1970324837186317,Europe/Paris,2,OTL, +OTL:SP:3377699720883520,1,"Bachecame Petit Jean",43.5462,1.35078,0,0,OTL:SA:1970324837186317,Europe/Paris,2,OTL, +OTL:SP:3377699720883521,1,"Somme",43.5449,1.3479,0,0,OTL:SA:1970324837186318,Europe/Paris,2,OTL, +OTL:SP:3377699720883522,1,"Somme",43.5449,1.3476,0,0,OTL:SA:1970324837186318,Europe/Paris,2,OTL, +OTL:SP:3377699720883523,1,"De Gaulle",43.5418,1.34167,0,0,OTL:SA:1970324837186319,Europe/Paris,2,OTL, +OTL:SP:3377699720883524,1,"De Gaulle",43.5418,1.34159,0,0,OTL:SA:1970324837186319,Europe/Paris,2,OTL, +OTL:SP:3377699720883525,1,"Pré Vicinal",43.54,1.34045,0,0,OTL:SA:1970324837186320,Europe/Paris,2,OTL, +OTL:SP:3377699720883526,1,"Pré Vicinal",43.5401,1.34067,0,0,OTL:SA:1970324837186320,Europe/Paris,2,OTL, +OTL:SP:3377699720883527,1,"Vivier",43.538,1.34011,0,0,OTL:SA:1970324837186321,Europe/Paris,2,OTL, +OTL:SP:3377699720883528,1,"Vivier",43.5378,1.33968,0,0,OTL:SA:1970324837186321,Europe/Paris,2,OTL, +OTL:SP:3377699720883529,1,"Béarn",43.5368,1.3377,0,0,OTL:SA:1970324837186322,Europe/Paris,2,OTL, +OTL:SP:3377699720883530,1,"Béarn",43.537,1.33783,0,0,OTL:SA:1970324837186322,Europe/Paris,2,OTL, +OTL:SP:3377699720883531,1,"Rubens",43.5351,1.33883,0,0,OTL:SA:1970324837186323,Europe/Paris,2,OTL, +OTL:SP:3377699720883532,1,"Rubens",43.5351,1.33894,0,0,OTL:SA:1970324837186323,Europe/Paris,2,OTL, +OTL:SP:3377699720883533,1,"Vieux Moulin",43.5338,1.3414,0,0,OTL:SA:1970324837186324,Europe/Paris,2,OTL, +OTL:SP:3377699720883534,1,"Vieux Moulin",43.5338,1.34118,0,0,OTL:SA:1970324837186324,Europe/Paris,0,OTL, +OTL:SP:3377699720883535,1,"Bizet",43.5317,1.33989,0,0,OTL:SA:1970324837186325,Europe/Paris,2,OTL, +OTL:SP:3377699720883536,1,"Bizet",43.5313,1.33946,0,0,OTL:SA:1970324837186325,Europe/Paris,2,OTL, +OTL:SP:3377699720883537,1,"Tamaris",43.5298,1.33823,0,0,OTL:SA:1970324837186326,Europe/Paris,2,OTL, +OTL:SP:3377699720883538,1,"Tamaris",43.5298,1.33808,0,0,OTL:SA:1970324837186326,Europe/Paris,2,OTL, +OTL:SP:3377699720883539,1,"Pyrénées",43.5276,1.33619,0,0,OTL:SA:1970324837186327,Europe/Paris,0,OTL, +OTL:SP:3377699720883540,1,"Pyrénées",43.5276,1.33634,0,0,OTL:SA:1970324837186327,Europe/Paris,2,OTL, +OTL:SP:3377699720883541,1,"Roses",43.5277,1.33396,0,0,OTL:SA:1970324837186328,Europe/Paris,0,OTL, +OTL:SP:3377699720883542,1,"Roses",43.5276,1.33407,0,0,OTL:SA:1970324837186328,Europe/Paris,0,OTL, +OTL:SP:3377699720883543,1,"Roussillon",43.525,1.32993,0,0,OTL:SA:1970324837186329,Europe/Paris,2,OTL, +OTL:SP:3377699720883544,1,"Roussillon",43.525,1.32988,0,0,OTL:SA:1970324837186329,Europe/Paris,2,OTL, +OTL:SP:3377699720883545,1,"Languedoc",43.5235,1.33208,0,0,OTL:SA:1970324837186330,Europe/Paris,0,OTL, +OTL:SP:3377699720883546,1,"Languedoc",43.5235,1.33216,0,0,OTL:SA:1970324837186330,Europe/Paris,0,OTL, +OTL:SP:3377699720883547,1,"Montségur",43.5199,1.32951,0,0,OTL:SA:1970324837186331,Europe/Paris,2,OTL, +OTL:SP:3377699720883548,1,"Montségur",43.5201,1.32961,0,0,OTL:SA:1970324837186331,Europe/Paris,2,OTL, +OTL:SP:3377699720883549,1,"Surcouf",43.5179,1.32789,0,0,OTL:SA:1970324837186332,Europe/Paris,2,OTL, +OTL:SP:3377699720883550,1,"Surcouf",43.5186,1.32845,0,0,OTL:SA:1970324837186332,Europe/Paris,2,OTL, +OTL:SP:3377699720883551,1,"Croix",43.5166,1.32613,0,0,OTL:SA:1970324837186333,Europe/Paris,2,OTL, +OTL:SP:3377699720883552,1,"Croix",43.5166,1.32623,0,0,OTL:SA:1970324837186333,Europe/Paris,2,OTL, +OTL:SP:3377699720883553,1,"Berdeil",43.5149,1.32404,0,0,OTL:SA:1970324837186334,Europe/Paris,0,OTL, +OTL:SP:3377699720883554,1,"Berdeil",43.5149,1.32399,0,0,OTL:SA:1970324837186334,Europe/Paris,0,OTL, +OTL:SP:3377699720883555,1,"Vierge",43.5139,1.32244,0,0,OTL:SA:1970324837186335,Europe/Paris,0,OTL, +OTL:SP:3377699720883556,1,"Vierge",43.5138,1.32257,0,0,OTL:SA:1970324837186335,Europe/Paris,0,OTL, +OTL:SP:3377699720883557,1,"Maison de Retraite",43.5145,1.31977,0,0,OTL:SA:1970324837186336,Europe/Paris,2,OTL, +OTL:SP:3377699720883558,1,"Maison de Retraite",43.5144,1.32006,0,0,OTL:SA:1970324837186336,Europe/Paris,2,OTL, +OTL:SP:3377699720883559,1,"Tennis Club Frouzins",43.5154,1.31713,0,0,OTL:SA:1970324837186337,Europe/Paris,2,OTL, +OTL:SP:3377699720883560,1,"Mounède",43.572,1.38302,0,0,OTL:SA:1970324837186338,Europe/Paris,2,OTL, +OTL:SP:3377699720883561,1,"Mounède",43.5719,1.38306,0,0,OTL:SA:1970324837186338,Europe/Paris,2,OTL, +OTL:SP:3377699720883562,1,"De Croutte",43.5686,1.37806,0,0,OTL:SA:1970324837186339,Europe/Paris,2,OTL, +OTL:SP:3377699720883563,1,"De Croutte",43.5685,1.37788,0,0,OTL:SA:1970324837186339,Europe/Paris,2,OTL, +OTL:SP:3377699720883564,1,"Angély",43.567,1.37522,0,0,OTL:SA:1970324837186340,Europe/Paris,0,OTL, +OTL:SP:3377699720883565,1,"Angély",43.5672,1.37542,0,0,OTL:SA:1970324837186340,Europe/Paris,0,OTL, +OTL:SP:3377699720883566,1,"Liffard",43.5647,1.37339,0,0,OTL:SA:1970329131942135,Europe/Paris,0,OTL, +OTL:SP:3377699720883567,1,"Liffard",43.5649,1.37339,0,0,OTL:SA:1970329131942135,Europe/Paris,0,OTL, +OTL:SP:3377699720883568,1,"Reguelongue",43.5629,1.37204,0,0,OTL:SA:1970324837186342,Europe/Paris,0,OTL, +OTL:SP:3377699720883569,1,"Reguelongue",43.5627,1.37161,0,0,OTL:SA:1970324837186342,Europe/Paris,0,OTL, +OTL:SP:3377699720883570,1,"Licard",43.5602,1.36844,0,0,OTL:SA:1970324837186343,Europe/Paris,2,OTL, +OTL:SP:3377699720883571,1,"Licard",43.5605,1.36889,0,0,OTL:SA:1970324837186343,Europe/Paris,0,OTL, +OTL:SP:3377699720883572,1,"Petit Barry",43.5446,1.35009,0,0,OTL:SA:1970324837186344,Europe/Paris,2,OTL, +OTL:SP:3377699720883573,1,"Petit Barry",43.5445,1.34997,0,0,OTL:SA:1970324837186344,Europe/Paris,0,OTL, +OTL:SP:3377699720883574,1,"Lilas",43.5413,1.34695,0,0,OTL:SA:1970324837186345,Europe/Paris,2,OTL, +OTL:SP:3377699720883575,1,"Lilas",43.5414,1.34695,0,0,OTL:SA:1970324837186345,Europe/Paris,2,OTL, +OTL:SP:3377699720883576,1,"Stade",43.5394,1.34607,0,0,OTL:SA:1970324837186346,Europe/Paris,2,OTL, +OTL:SP:3377699720883577,1,"Stade",43.5388,1.34565,0,0,OTL:SA:1970324837186346,Europe/Paris,2,OTL, +OTL:SP:3377699720883578,1,"Cugnala",43.535,1.34659,0,0,OTL:SA:1970324837186347,Europe/Paris,2,OTL, +OTL:SP:3377699720883579,1,"Cugnala",43.5347,1.3469,0,0,OTL:SA:1970324837186347,Europe/Paris,2,OTL, +OTL:SP:3377699720883584,1,"Forgues",43.4986,1.30943,0,0,OTL:SA:1970329131942046,Europe/Paris,2,OTL, +OTL:SP:3377699720883586,1,"Méroc",43.5268,1.34656,0,0,OTL:SA:1970324837186351,Europe/Paris,2,OTL, +OTL:SP:3377699720883587,1,"Méroc",43.5264,1.34585,0,0,OTL:SA:1970324837186351,Europe/Paris,2,OTL, +OTL:SP:3377699720883588,1,"Mairie Villeneuve Tolosane",43.5248,1.34407,0,0,OTL:SA:1970324837186352,Europe/Paris,0,OTL, +OTL:SP:3377699720883589,1,"Mairie Villeneuve Tolosane",43.5248,1.34427,0,0,OTL:SA:1970324837186352,Europe/Paris,2,OTL, +OTL:SP:3377699720883590,1,"Eglise Villeneuve",43.5226,1.34144,0,0,OTL:SA:1970324837186353,Europe/Paris,2,OTL, +OTL:SP:3377699720883591,1,"Eglise Villeneuve",43.5226,1.34172,0,0,OTL:SA:1970324837186353,Europe/Paris,2,OTL, +OTL:SP:3377699720883592,1,"St-Laurent",43.5192,1.33609,0,0,OTL:SA:1970324837186354,Europe/Paris,2,OTL, +OTL:SP:3377699720883593,1,"St-Laurent",43.5188,1.33559,0,0,OTL:SA:1970324837186354,Europe/Paris,2,OTL, +OTL:SP:3377699720883594,1,"Le Parc",43.517,1.33366,0,0,OTL:SA:1970324837186355,Europe/Paris,2,OTL, +OTL:SP:3377699720883595,1,"Le Parc",43.5171,1.33401,0,0,OTL:SA:1970324837186355,Europe/Paris,2,OTL, +OTL:SP:3377699720883596,1,"Méditerranée",43.5145,1.33087,0,0,OTL:SA:1970324837186356,Europe/Paris,2,OTL, +OTL:SP:3377699720883597,1,"Méditerranée",43.5143,1.33042,0,0,OTL:SA:1970324837186356,Europe/Paris,2,OTL, +OTL:SP:3377699720883598,1,"Bel Air",43.5126,1.32913,0,0,OTL:SA:1970324837186357,Europe/Paris,2,OTL, +OTL:SP:3377699720883599,1,"Bel Air",43.513,1.32932,0,0,OTL:SA:1970324837186357,Europe/Paris,2,OTL, +OTL:SP:3377699720883600,1,"Chêne Vert",43.5101,1.32673,0,0,OTL:SA:1970324837186358,Europe/Paris,2,OTL, +OTL:SP:3377699720883601,1,"Chêne Vert",43.5104,1.32706,0,0,OTL:SA:1970324837186358,Europe/Paris,2,OTL, +OTL:SP:3377699720883602,1,"Pyrénées",43.508,1.3253,0,0,OTL:SA:1970324837186359,Europe/Paris,2,OTL, +OTL:SP:3377699720883603,1,"Pyrénées",43.5081,1.32526,0,0,OTL:SA:1970324837186359,Europe/Paris,2,OTL, +OTL:SP:3377699720883604,1,"Jean Jaurès",43.5065,1.32382,0,0,OTL:SA:1970324837186360,Europe/Paris,0,OTL, +OTL:SP:3377699720883605,1,"Jean Jaurès",43.506,1.32309,0,0,OTL:SA:1970324837186360,Europe/Paris,0,OTL, +OTL:SP:3377699720883608,1,"Vitarelles",43.5035,1.3208,0,0,OTL:SA:1970324837186362,Europe/Paris,2,OTL, +OTL:SP:3377699720883609,1,"Vitarelles",43.5037,1.32107,0,0,OTL:SA:1970324837186362,Europe/Paris,2,OTL, +OTL:SP:3377699720883610,1,"Victor Hugo",43.5002,1.31809,0,0,OTL:SA:1970324837186363,Europe/Paris,2,OTL, +OTL:SP:3377699720883611,1,"Victor Hugo",43.4999,1.31798,0,0,OTL:SA:1970324837186363,Europe/Paris,2,OTL, +OTL:SP:3377699720883612,1,"Bergeaud",43.4973,1.31511,0,0,OTL:SA:1970324837186364,Europe/Paris,2,OTL, +OTL:SP:3377699720883613,1,"Bergeaud",43.4977,1.31543,0,0,OTL:SA:1970324837186364,Europe/Paris,2,OTL, +OTL:SP:3377699720883615,1,"Mairie Seysses",43.4988,1.31094,0,0,OTL:SA:1970324837186365,Europe/Paris,0,OTL, +OTL:SP:3377699720883616,1,"Cazeneuve",43.4964,1.30855,0,0,OTL:SA:1970324837186366,Europe/Paris,2,OTL, +OTL:SP:3377699720883630,1,"Cadène",43.6542,1.42313,0,0,OTL:SA:1970324837186373,Europe/Paris,0,OTL, +OTL:SP:3377699720883631,1,"Cadène",43.6537,1.42353,0,0,OTL:SA:1970324837186373,Europe/Paris,0,OTL, +OTL:SP:3377699720883632,1,"Rupé",43.6574,1.42019,0,0,OTL:SA:1970324837186374,Europe/Paris,0,OTL, +OTL:SP:3377699720883633,1,"Rupé",43.6574,1.42031,0,0,OTL:SA:1970324837186374,Europe/Paris,0,OTL, +OTL:SP:3377699720883634,1,"Salvador Allende",43.6586,1.41909,0,0,OTL:SA:1970324837186375,Europe/Paris,0,OTL, +OTL:SP:3377699720883635,1,"Salvador Allende",43.6595,1.41838,0,0,OTL:SA:1970324837186375,Europe/Paris,0,OTL, +OTL:SP:3377699720883636,1,"Marie Curie",43.6623,1.41584,0,0,OTL:SA:1970324837186376,Europe/Paris,0,OTL, +OTL:SP:3377699720883637,1,"Marie Curie",43.6619,1.41624,0,0,OTL:SA:1970324837186376,Europe/Paris,0,OTL, +OTL:SP:3377699720883641,1,"Plaine",43.6733,1.40971,0,0,OTL:SA:1970324837186377,Europe/Paris,0,OTL, +OTL:SP:3377699720883642,1,"Plaine",43.6733,1.40964,0,0,OTL:SA:1970324837186377,Europe/Paris,0,OTL, +OTL:SP:3377699720883643,1,"St-Gobain",43.6764,1.40862,0,0,OTL:SA:1970324837186378,Europe/Paris,2,OTL, +OTL:SP:3377699720883644,1,"St-Gobain",43.6767,1.40877,0,0,OTL:SA:1970324837186378,Europe/Paris,0,OTL, +OTL:SP:3377699720883645,1,"Mazurié",43.6839,1.40638,0,0,OTL:SA:1970324837186379,Europe/Paris,0,OTL, +OTL:SP:3377699720883646,1,"Mazurié",43.6834,1.4065,0,0,OTL:SA:1970324837186379,Europe/Paris,0,OTL, +OTL:SP:3377699720883647,1,"Sers",43.6885,1.4058,0,0,OTL:SA:1970324840530402,Europe/Paris,2,OTL, +OTL:SP:3377699720883655,1,"Tournelle",43.683,1.3992,0,0,OTL:SA:1970324837186384,Europe/Paris,0,OTL, +OTL:SP:3377699720883656,1,"Tournelle",43.6831,1.39933,0,0,OTL:SA:1970324837186384,Europe/Paris,2,OTL, +OTL:SP:3377699720883657,1,"Clos",43.6812,1.39828,0,0,OTL:SA:1970324837186385,Europe/Paris,2,OTL, +OTL:SP:3377699720883658,1,"Clos",43.6812,1.39823,0,0,OTL:SA:1970324837186385,Europe/Paris,2,OTL, +OTL:SP:3377699720883659,1,"Languedoc",43.6797,1.39662,0,0,OTL:SA:1970324837186386,Europe/Paris,2,OTL, +OTL:SP:3377699720883660,1,"Languedoc",43.6796,1.3961,0,0,OTL:SA:1970324837186386,Europe/Paris,2,OTL, +OTL:SP:3377699720883661,1,"Rey",43.6773,1.39647,0,0,OTL:SA:1970324837186387,Europe/Paris,0,OTL, +OTL:SP:3377699720883662,1,"Rey",43.6784,1.39446,0,0,OTL:SA:1970324837186387,Europe/Paris,2,OTL, +OTL:SP:3377699720883663,1,"Pourrenque",43.6763,1.39639,0,0,OTL:SA:1970324837186388,Europe/Paris,2,OTL, +OTL:SP:3377699720883665,1,"Jean Jaurès",43.6772,1.39375,0,0,OTL:SA:1970324837186389,Europe/Paris,2,OTL, +OTL:SP:3377699720883666,1,"Jean Jaurès",43.678,1.39292,0,0,OTL:SA:1970324837186389,Europe/Paris,0,OTL, +OTL:SP:3377699720883667,1,"Mairie Fenouillet",43.6788,1.39105,0,0,OTL:SA:1970324837186390,Europe/Paris,2,OTL, +OTL:SP:3377699720883668,1,"Mairie Fenouillet",43.6787,1.39115,0,0,OTL:SA:1970324837186390,Europe/Paris,2,OTL, +OTL:SP:3377699720883669,1,"Billières",43.6796,1.38924,0,0,OTL:SA:1970324837186391,Europe/Paris,0,OTL, +OTL:SP:3377699720883670,1,"Billières",43.6797,1.38922,0,0,OTL:SA:1970324837186391,Europe/Paris,0,OTL, +OTL:SP:3377699720883671,1,"Gourgues",43.6804,1.38594,0,0,OTL:SA:1970324837186392,Europe/Paris,2,OTL, +OTL:SP:3377699720883672,1,"Gourgues",43.6804,1.38654,0,0,OTL:SA:1970324837186392,Europe/Paris,0,OTL, +OTL:SP:3377699720883673,1,"Eglise Fenouillet",43.6832,1.38357,0,0,OTL:SA:1970324837186393,Europe/Paris,2,OTL, +OTL:SP:3377699720883674,1,"Eglise Fenouillet",43.6822,1.3848,0,0,OTL:SA:1970324837186393,Europe/Paris,0,OTL, +OTL:SP:3377699720883675,1,"Montplaisir",43.689,1.37642,0,0,OTL:SA:1970324837186394,Europe/Paris,2,OTL, +OTL:SP:3377699720883676,1,"Montplaisir",43.6892,1.37622,0,0,OTL:SA:1970324837186394,Europe/Paris,0,OTL, +OTL:SP:3377699720883677,1,"Château",43.6934,1.3742,0,0,OTL:SA:1970324837186395,Europe/Paris,0,OTL, +OTL:SP:3377699720883678,1,"Château",43.6924,1.3745,0,0,OTL:SA:1970324837186395,Europe/Paris,2,OTL, +OTL:SP:3377699720883679,1,"Gagnac Acacias",43.6945,1.37401,0,0,OTL:SA:1970324837186396,Europe/Paris,0,OTL, +OTL:SP:3377699720883680,1,"Gagnac Acacias",43.6953,1.37369,0,0,OTL:SA:1970324837186396,Europe/Paris,2,OTL, +OTL:SP:3377699720883681,1,"Vieux Moulin",43.7001,1.37674,0,0,OTL:SA:1970324837186397,Europe/Paris,2,OTL, +OTL:SP:3377699720883682,1,"Vieux Moulin",43.7001,1.37662,0,0,OTL:SA:1970324837186397,Europe/Paris,2,OTL, +OTL:SP:3377699720883683,1,"Voie Romaine",43.7028,1.37982,0,0,OTL:SA:1970324837186398,Europe/Paris,2,OTL, +OTL:SP:3377699720883684,1,"Voie Romaine",43.7025,1.37971,0,0,OTL:SA:1970324837186398,Europe/Paris,0,OTL, +OTL:SP:3377699720883686,1,"Eglise Gagnac",43.7021,1.36872,0,0,OTL:SA:1970324837186400,Europe/Paris,0,OTL, +OTL:SP:3377699720883687,1,"Eglise Gagnac",43.7018,1.36902,0,0,OTL:SA:1970324837186400,Europe/Paris,0,OTL, +OTL:SP:3377699720883688,1,"Hire",43.7036,1.36815,0,0,OTL:SA:1970324837186401,Europe/Paris,0,OTL, +OTL:SP:3377699720883689,1,"Hire",43.7037,1.36808,0,0,OTL:SA:1970324837186401,Europe/Paris,0,OTL, +OTL:SP:3377699720883690,1,"Albefeuille",43.7092,1.3667,0,0,OTL:SA:1970324837186402,Europe/Paris,0,OTL, +OTL:SP:3377699720883691,1,"Albefeuille",43.7092,1.36667,0,0,OTL:SA:1970324837186402,Europe/Paris,2,OTL, +OTL:SP:3377699720883692,1,"Turret",43.7069,1.37528,0,0,OTL:SA:1970324837186403,Europe/Paris,2,OTL, +OTL:SP:3377699720883693,1,"Turret",43.7069,1.37535,0,0,OTL:SA:1970324837186403,Europe/Paris,2,OTL, +OTL:SP:3377699720883694,1,"Amandiers",43.7031,1.37808,0,0,OTL:SA:1970324837186404,Europe/Paris,0,OTL, +OTL:SP:3377699720883695,1,"Amandiers",43.703,1.37815,0,0,OTL:SA:1970324837186404,Europe/Paris,0,OTL, +OTL:SP:3377699720883696,1,"Moulin",43.7052,1.38269,0,0,OTL:SA:1970324837186405,Europe/Paris,2,OTL, +OTL:SP:3377699720883697,1,"Moulin",43.7049,1.38231,0,0,OTL:SA:1970324837186405,Europe/Paris,2,OTL, +OTL:SP:3377699720883698,1,"Oustalet",43.7066,1.38477,0,0,OTL:SA:1970324837186406,Europe/Paris,2,OTL, +OTL:SP:3377699720883699,1,"Oustalet",43.7064,1.38469,0,0,OTL:SA:1970324837186406,Europe/Paris,2,OTL, +OTL:SP:3377699720883700,1,"St-Jean",43.7079,1.38308,0,0,OTL:SA:1970324837186407,Europe/Paris,0,OTL, +OTL:SP:3377699720883701,1,"St-Jean",43.708,1.38463,0,0,OTL:SA:1970324837186407,Europe/Paris,2,OTL, +OTL:SP:3377699720883706,1,"Pader",43.6371,1.43331,0,0,OTL:SA:1970324837186411,Europe/Paris,2,OTL, +OTL:SP:3377699720883707,1,"Pader",43.6359,1.43322,0,0,OTL:SA:1970324837186411,Europe/Paris,2,OTL, +OTL:SP:3377699720883708,1,"Pont de la Vache",43.6389,1.43334,0,0,OTL:SA:1970324837186412,Europe/Paris,0,OTL, +OTL:SP:3377699720883709,1,"Pont de la Vache",43.6388,1.43338,0,0,OTL:SA:1970324837186412,Europe/Paris,2,OTL, +OTL:SP:3377699720883710,1,"Riché Lalande",43.6475,1.43302,0,0,OTL:SA:1970324837186413,Europe/Paris,2,OTL, +OTL:SP:3377699720883711,1,"Riché Lalande",43.648,1.43305,0,0,OTL:SA:1970324837186413,Europe/Paris,2,OTL, +OTL:SP:3377699720883712,1,"Roubiéchou",43.6553,1.43222,0,0,OTL:SA:1970324837186414,Europe/Paris,2,OTL, +OTL:SP:3377699720883713,1,"Roubiéchou",43.6541,1.43229,0,0,OTL:SA:1970324837186414,Europe/Paris,2,OTL, +OTL:SP:3377699720883714,1,"Lapparou",43.6571,1.432,0,0,OTL:SA:1970324837186415,Europe/Paris,2,OTL, +OTL:SP:3377699720883715,1,"Lapparou",43.6576,1.43178,0,0,OTL:SA:1970324837186415,Europe/Paris,2,OTL, +OTL:SP:3377699720883716,1,"Gaussen",43.661,1.43153,0,0,OTL:SA:1970324837186416,Europe/Paris,2,OTL, +OTL:SP:3377699720883717,1,"Gaussen",43.661,1.43152,0,0,OTL:SA:1970324837186416,Europe/Paris,2,OTL, +OTL:SP:3377699720883718,1,"Salvy",43.6637,1.43078,0,0,OTL:SA:1970324837186417,Europe/Paris,2,OTL, +OTL:SP:3377699720883719,1,"Salvy",43.6641,1.43057,0,0,OTL:SA:1970324837186417,Europe/Paris,2,OTL, +OTL:SP:3377699720883720,1,"Eglise Aucamville",43.666,1.42999,0,0,OTL:SA:1970324837186418,Europe/Paris,0,OTL, +OTL:SP:3377699720883721,1,"Eglise Aucamville",43.6662,1.42996,0,0,OTL:SA:1970324837186418,Europe/Paris,2,OTL, +OTL:SP:3377699720883722,1,"Favasse",43.6716,1.427,0,0,OTL:SA:1970324837186419,Europe/Paris,0,OTL, +OTL:SP:3377699720883723,1,"Favasse",43.6713,1.42723,0,0,OTL:SA:1970324837186419,Europe/Paris,2,OTL, +OTL:SP:3377699720883724,1,"Payen",43.6731,1.42613,0,0,OTL:SA:1970324837186420,Europe/Paris,2,OTL, +OTL:SP:3377699720883725,1,"Payen",43.6733,1.42597,0,0,OTL:SA:1970324837186420,Europe/Paris,0,OTL, +OTL:SP:3377699720883726,1,"Aucamville Collège",43.6753,1.42472,0,0,OTL:SA:1970324837186421,Europe/Paris,2,OTL, +OTL:SP:3377699720883727,1,"Aucamville Collège",43.6755,1.4246,0,0,OTL:SA:1970324837186421,Europe/Paris,2,OTL, +OTL:SP:3377699720883728,1,"Raudelauzette",43.6785,1.42288,0,0,OTL:SA:1970329131942323,Europe/Paris,2,OTL, +OTL:SP:3377699720883729,1,"Raudelauzette",43.6784,1.42297,0,0,OTL:SA:1970329131942323,Europe/Paris,2,OTL, +OTL:SP:3377699720883730,1,"Mariel",43.6821,1.42112,0,0,OTL:SA:1970324837186423,Europe/Paris,2,OTL, +OTL:SP:3377699720883731,1,"Mariel",43.6817,1.42126,0,0,OTL:SA:1970324837186423,Europe/Paris,2,OTL, +OTL:SP:3377699720883732,1,"Musiciens",43.6837,1.41976,0,0,OTL:SA:1970324837186424,Europe/Paris,2,OTL, +OTL:SP:3377699720883733,1,"Musiciens",43.684,1.41957,0,0,OTL:SA:1970324837186424,Europe/Paris,0,OTL, +OTL:SP:3377699720883734,1,"Violettes",43.6868,1.41753,0,0,OTL:SA:1970324837186425,Europe/Paris,2,OTL, +OTL:SP:3377699720883735,1,"Violettes",43.6874,1.4171,0,0,OTL:SA:1970324837186425,Europe/Paris,2,OTL, +OTL:SP:3377699720883736,1,"Ecole St-Alban",43.6887,1.41615,0,0,OTL:SA:1970324837186426,Europe/Paris,2,OTL, +OTL:SP:3377699720883737,1,"Ecole St-Alban",43.6895,1.41584,0,0,OTL:SA:1970324837186426,Europe/Paris,2,OTL, +OTL:SP:3377699720883738,1,"Acacias",43.6951,1.41073,0,0,AEC:SA:01646,Europe/Paris,2,OTL, +OTL:SP:3377699720883739,1,"Acacias",43.6953,1.41058,0,0,AEC:SA:01646,Europe/Paris,0,OTL, +OTL:SP:3377699720883740,1,"Prairie",43.7005,1.40767,0,0,OTL:SA:1970324837186428,Europe/Paris,0,OTL, +OTL:SP:3377699720883741,1,"Prairie",43.7005,1.40777,0,0,OTL:SA:1970324837186428,Europe/Paris,0,OTL, +OTL:SP:3377699720883742,1,"Peyronnette",43.685,1.42134,0,0,OTL:SA:1970324837186429,Europe/Paris,2,OTL, +OTL:SP:3377699720883743,1,"Peyronnette",43.6851,1.42139,0,0,OTL:SA:1970324837186429,Europe/Paris,2,OTL, +OTL:SP:3377699720883744,1,"Jules Verne",43.687,1.42239,0,0,OTL:SA:1970324837186430,Europe/Paris,2,OTL, +OTL:SP:3377699720883745,1,"Jules Verne",43.6872,1.42248,0,0,OTL:SA:1970324837186430,Europe/Paris,2,OTL, +OTL:SP:3377699720883746,1,"Sables",43.693,1.41733,0,0,OTL:SA:1970324837186431,Europe/Paris,0,OTL, +OTL:SP:3377699720883747,1,"Sables",43.6932,1.41713,0,0,OTL:SA:1970324837186431,Europe/Paris,0,OTL, +OTL:SP:3377699720883748,1,"Egalité",43.6924,1.4201,0,0,OTL:SA:1970324837186432,Europe/Paris,2,OTL, +OTL:SP:3377699720883749,1,"Egalité",43.6923,1.41992,0,0,OTL:SA:1970324837186432,Europe/Paris,2,OTL, +OTL:SP:3377699720883750,1,"Tilleuls",43.691,1.42233,0,0,OTL:SA:1970324837186433,Europe/Paris,0,OTL, +OTL:SP:3377699720883751,1,"Tilleuls",43.6905,1.4225,0,0,OTL:SA:1970324837186433,Europe/Paris,0,OTL, +OTL:SP:3377699720883752,1,"Ctre Cial St-Alban",43.6892,1.42291,0,0,OTL:SA:1970324837186434,Europe/Paris,0,OTL, +OTL:SP:3377699720883753,1,"Ctre Cial St-Alban",43.6891,1.42284,0,0,OTL:SA:1970324837186434,Europe/Paris,0,OTL, +OTL:SP:3377699720883754,1,"Pont Vieil",43.692,1.4273,0,0,OTL:SA:1970324837186435,Europe/Paris,2,OTL, +OTL:SP:3377699720883755,1,"Pont Vieil",43.6916,1.42707,0,0,OTL:SA:1970324837186435,Europe/Paris,2,OTL, +OTL:SP:3377699720883756,1,"Pradelle",43.6938,1.43215,0,0,OTL:SA:1970324837186436,Europe/Paris,0,OTL, +OTL:SP:3377699720883757,1,"Pradelle",43.6939,1.43203,0,0,OTL:SA:1970324837186436,Europe/Paris,0,OTL, +OTL:SP:3377699720883758,1,"Tour Totier",43.6938,1.43533,0,0,OTL:SA:1970324837186437,Europe/Paris,2,OTL, +OTL:SP:3377699720883759,1,"Tour Totier",43.694,1.4358,0,0,OTL:SA:1970324837186437,Europe/Paris,0,OTL, +OTL:SP:3377699720883762,1,"Ecole Castelginest",43.6892,1.43982,0,0,OTL:SA:1970324837186439,Europe/Paris,2,OTL, +OTL:SP:3377699720883763,1,"Ecole Castelginest",43.6891,1.43976,0,0,OTL:SA:1970324837186439,Europe/Paris,2,OTL, +OTL:SP:3377699720883764,1,"Millet",43.6873,1.44161,0,0,OTL:SA:1970324837186440,Europe/Paris,2,OTL, +OTL:SP:3377699720883765,1,"Millet",43.6873,1.44156,0,0,OTL:SA:1970324837186440,Europe/Paris,2,OTL, +OTL:SP:3377699720883766,1,"Moissons",43.6866,1.44416,0,0,OTL:SA:1970324837186441,Europe/Paris,2,OTL, +OTL:SP:3377699720883767,1,"Moissons",43.6865,1.44422,0,0,OTL:SA:1970324837186441,Europe/Paris,2,OTL, +OTL:SP:3377699720883768,1,"Bertrand",43.6955,1.43049,0,0,OTL:SA:1970324837186442,Europe/Paris,0,OTL, +OTL:SP:3377699720883769,1,"Bertrand",43.696,1.43082,0,0,OTL:SA:1970324837186442,Europe/Paris,2,OTL, +OTL:SP:3377699720883770,1,"Barthe",43.6971,1.43165,0,0,OTL:SA:1970324837186443,Europe/Paris,0,OTL, +OTL:SP:3377699720883771,1,"Barthe",43.6974,1.43182,0,0,OTL:SA:1970324837186443,Europe/Paris,2,OTL, +OTL:SP:3377699720883772,1,"St-Pierre",43.7001,1.43173,0,0,OTL:SA:1970324837186444,Europe/Paris,0,OTL, +OTL:SP:3377699720883773,1,"St-Pierre",43.7001,1.4316,0,0,OTL:SA:1970324837186444,Europe/Paris,0,OTL, +OTL:SP:3377699720883776,1,"Barry",43.7134,1.43099,0,0,OTL:SA:1970324837186446,Europe/Paris,0,OTL, +OTL:SP:3377699720883777,1,"Barry",43.7133,1.43106,0,0,OTL:SA:1970324837186446,Europe/Paris,0,OTL, +OTL:SP:3377699720883778,1,"Garenne",43.7155,1.43333,0,0,OTL:SA:1970324837186447,Europe/Paris,2,OTL, +OTL:SP:3377699720883779,1,"Garenne",43.7156,1.43333,0,0,OTL:SA:1970324837186447,Europe/Paris,2,OTL, +OTL:SP:3377699720883780,1,"Vignemale",43.7185,1.43294,0,0,OTL:SA:1970324837186448,Europe/Paris,2,OTL, +OTL:SP:3377699720883781,1,"Vignemale",43.7184,1.43294,0,0,OTL:SA:1970324837186448,Europe/Paris,0,OTL, +OTL:SP:3377699720883782,1,"Pic du Midi",43.7193,1.43539,0,0,OTL:SA:1970324837186449,Europe/Paris,2,OTL, +OTL:SP:3377699720883783,1,"Pic du Midi",43.7194,1.43522,0,0,OTL:SA:1970324837186449,Europe/Paris,0,OTL, +OTL:SP:3377699720883784,1,"Acacias",43.7204,1.4382,0,0,OTL:SA:1970324837186450,Europe/Paris,0,OTL, +OTL:SP:3377699720883785,1,"Acacias",43.7205,1.43839,0,0,OTL:SA:1970324837186450,Europe/Paris,2,OTL, +OTL:SP:3377699720883786,1,"Maurys",43.7226,1.43647,0,0,OTL:SA:1970324837186451,Europe/Paris,0,OTL, +OTL:SP:3377699720883787,1,"Maurys",43.7236,1.43458,0,0,OTL:SA:1970324837186451,Europe/Paris,2,OTL, +OTL:SP:3377699720883788,1,"Mairie Gratentour",43.7223,1.4319,0,0,OTL:SA:1970324837186452,Europe/Paris,0,OTL, +OTL:SP:3377699720883789,1,"Mairie Gratentour",43.7223,1.43242,0,0,OTL:SA:1970324837186452,Europe/Paris,2,OTL, +OTL:SP:3377699720883790,1,"Vieille Côte",43.7189,1.42798,0,0,OTL:SA:1970324837186453,Europe/Paris,2,OTL, +OTL:SP:3377699720883791,1,"Vieille Côte",43.7189,1.42777,0,0,OTL:SA:1970324837186453,Europe/Paris,2,OTL, +OTL:SP:3377699720883792,1,"Champ del Rey",43.7176,1.42369,0,0,OTL:SA:1970324837186454,Europe/Paris,2,OTL, +OTL:SP:3377699720883793,1,"Champ del Rey",43.7179,1.42418,0,0,OTL:SA:1970324837186454,Europe/Paris,2,OTL, +OTL:SP:3377699720883798,1,"Pont Rouge",43.715,1.40496,0,0,OTL:SA:1970324837186457,Europe/Paris,0,OTL, +OTL:SP:3377699720883799,1,"Pont Rouge",43.7147,1.4047,0,0,OTL:SA:1970324837186457,Europe/Paris,0,OTL, +OTL:SP:3377699720883800,1,"Gamouna",43.7214,1.40739,0,0,OTL:SA:1970324837186458,Europe/Paris,2,OTL, +OTL:SP:3377699720883801,1,"Gamouna",43.7213,1.40738,0,0,OTL:SA:1970324837186458,Europe/Paris,2,OTL, +OTL:SP:3377699720883802,1,"Ecole Bruguières",43.7233,1.40949,0,0,OTL:SA:1970324837186459,Europe/Paris,0,OTL, +OTL:SP:3377699720883803,1,"Ecole Bruguières",43.7236,1.40966,0,0,OTL:SA:1970324837186459,Europe/Paris,0,OTL, +OTL:SP:3377699720883804,1,"Bruguières Mairie",43.727,1.41175,0,0,OTL:SA:1970324837186460,Europe/Paris,2,OTL, +OTL:SP:3377699720883805,1,"Bruguières Mairie",43.7271,1.41175,0,0,OTL:SA:1970324837186460,Europe/Paris,0,OTL, +OTL:SP:3377699720883806,1,"Hortensias",43.7255,1.41553,0,0,OTL:SA:1970324837186461,Europe/Paris,0,OTL, +OTL:SP:3377699720883807,1,"Hortensias",43.7254,1.41547,0,0,OTL:SA:1970324837186461,Europe/Paris,2,OTL, +OTL:SP:3377699720883808,1,"Bruguet",43.7223,1.41545,0,0,OTL:SA:1970324837186462,Europe/Paris,0,OTL, +OTL:SP:3377699720883809,1,"Bruguet",43.7222,1.41525,0,0,OTL:SA:1970324837186462,Europe/Paris,2,OTL, +OTL:SP:3377699720883816,1,"Rigal",43.6427,1.43917,0,0,OTL:SA:1970324837186466,Europe/Paris,0,OTL, +OTL:SP:3377699720883817,1,"Rigal",43.6425,1.43905,0,0,OTL:SA:1970324837186466,Europe/Paris,2,OTL, +OTL:SP:3377699720883818,1,"Baron",43.6455,1.43928,0,0,OTL:SA:1970324837186467,Europe/Paris,0,OTL, +OTL:SP:3377699720883819,1,"Baron",43.6453,1.4392,0,0,OTL:SA:1970324837186467,Europe/Paris,0,OTL, +OTL:SP:3377699720883820,1,"Rispet",43.6484,1.4389,0,0,OTL:SA:1970324837186468,Europe/Paris,2,OTL, +OTL:SP:3377699720883821,1,"Rispet",43.6489,1.43892,0,0,OTL:SA:1970324837186468,Europe/Paris,2,OTL, +OTL:SP:3377699720883822,1,"Croix Bénite",43.654,1.43766,0,0,OTL:SA:1970324837186469,Europe/Paris,2,OTL, +OTL:SP:3377699720883823,1,"Croix Bénite",43.6543,1.43767,0,0,OTL:SA:1970324837186469,Europe/Paris,2,OTL, +OTL:SP:3377699720883824,1,"Turlu",43.6578,1.43895,0,0,OTL:SA:1970324837186470,Europe/Paris,0,OTL, +OTL:SP:3377699720883825,1,"Turlu",43.6575,1.43851,0,0,OTL:SA:1970324837186470,Europe/Paris,0,OTL, +OTL:SP:3377699720883826,1,"Ch. des Izards",43.6612,1.43922,0,0,OTL:SA:1970324837186471,Europe/Paris,2,OTL, +OTL:SP:3377699720883827,1,"Ch. des Izards",43.6606,1.43899,0,0,OTL:SA:1970324837186471,Europe/Paris,2,OTL, +OTL:SP:3377699720883828,1,"Moulis",43.6664,1.44023,0,0,OTL:SA:1970329131942215,Europe/Paris,2,OTL, +OTL:SP:3377699720883829,1,"Moulis",43.6657,1.44014,0,0,OTL:SA:1970329131942215,Europe/Paris,2,OTL, +OTL:SP:3377699720883830,1,"Launaguet Nobles",43.6707,1.44533,0,0,OTL:SA:1970329131942223,Europe/Paris,2,OTL, +OTL:SP:3377699720883831,1,"Launaguet Nobles",43.6701,1.44531,0,0,OTL:SA:1970329131942223,Europe/Paris,2,OTL, +OTL:SP:3377699720883832,1,"Fourquets",43.6719,1.44971,0,0,OTL:SA:1970324837186474,Europe/Paris,2,OTL, +OTL:SP:3377699720883833,1,"Fourquets",43.6719,1.45043,0,0,OTL:SA:1970324837186474,Europe/Paris,0,OTL, +OTL:SP:3377699720883834,1,"Gendarmerie",43.6724,1.45234,0,0,OTL:SA:1970324837186475,Europe/Paris,2,OTL, +OTL:SP:3377699720883835,1,"Gendarmerie",43.6724,1.45238,0,0,OTL:SA:1970324837186475,Europe/Paris,2,OTL, +OTL:SP:3377699720883836,1,"Chalets",43.6761,1.45626,0,0,OTL:SA:1970324837186476,Europe/Paris,2,OTL, +OTL:SP:3377699720883837,1,"Chalets",43.6769,1.45603,0,0,OTL:SA:1970324837186476,Europe/Paris,2,OTL, +OTL:SP:3377699720883838,1,"Mirabelles",43.6787,1.45428,0,0,OTL:SA:1970324837186477,Europe/Paris,2,OTL, +OTL:SP:3377699720883839,1,"Mirabelles",43.6787,1.45439,0,0,OTL:SA:1970324837186477,Europe/Paris,0,OTL, +OTL:SP:3377699720883840,1,"Renée Aspe",43.6802,1.45316,0,0,OTL:SA:1970324837186478,Europe/Paris,0,OTL, +OTL:SP:3377699720883841,1,"Renée Aspe",43.6809,1.45269,0,0,OTL:SA:1970324837186478,Europe/Paris,0,OTL, +OTL:SP:3377699720883842,1,"Rond-point Chalets",43.6824,1.45128,0,0,OTL:SA:1970324837186479,Europe/Paris,0,OTL, +OTL:SP:3377699720883843,1,"Rond-point Chalets",43.6823,1.45116,0,0,OTL:SA:1970324837186479,Europe/Paris,0,OTL, +OTL:SP:3377699720883844,1,"Grazidou",43.6864,1.451,0,0,AEC:SA:00435,Europe/Paris,2,OTL, +OTL:SP:3377699720883845,1,"Grazidou",43.6866,1.45107,0,0,AEC:SA:00435,Europe/Paris,2,OTL, +OTL:SP:3377699720883846,1,"Clotildes",43.6926,1.45063,0,0,OTL:SA:1970324837186481,Europe/Paris,2,OTL, +OTL:SP:3377699720883847,1,"Clotildes",43.6928,1.45069,0,0,OTL:SA:1970324837186481,Europe/Paris,2,OTL, +OTL:SP:3377699720883848,1,"Peyrandrieu",43.696,1.45086,0,0,OTL:SA:1970324837186482,Europe/Paris,2,OTL, +OTL:SP:3377699720883849,1,"Peyrandrieu",43.696,1.45072,0,0,OTL:SA:1970324837186482,Europe/Paris,2,OTL, +OTL:SP:3377699720883850,1,"Turtelle",43.7027,1.45919,0,0,OTL:SA:1970324837186483,Europe/Paris,0,OTL, +OTL:SP:3377699720883851,1,"Turtelle",43.7026,1.45931,0,0,OTL:SA:1970324837186483,Europe/Paris,0,OTL, +OTL:SP:3377699720883852,1,"Bellevue",43.7029,1.46151,0,0,OTL:SA:1970324837186484,Europe/Paris,0,OTL, +OTL:SP:3377699720883853,1,"Bellevue",43.703,1.46168,0,0,OTL:SA:1970324837186484,Europe/Paris,0,OTL, +OTL:SP:3377699720883854,1,"Panchaud",43.7021,1.46468,0,0,OTL:SA:1970324837186485,Europe/Paris,0,OTL, +OTL:SP:3377699720883855,1,"Panchaud",43.7023,1.46436,0,0,OTL:SA:1970324837186485,Europe/Paris,2,OTL, +OTL:SP:3377699720883856,1,"Mimosas",43.701,1.47025,0,0,OTL:SA:1970324837186486,Europe/Paris,2,OTL, +OTL:SP:3377699720883857,1,"Mimosas",43.7003,1.471,0,0,OTL:SA:1970324837186486,Europe/Paris,2,OTL, +OTL:SP:3377699720883858,1,"Bonnecarrère",43.6994,1.47256,0,0,OTL:SA:1970324837186487,Europe/Paris,2,OTL, +OTL:SP:3377699720883859,1,"Bonnecarrère",43.6996,1.4725,0,0,OTL:SA:1970324837186487,Europe/Paris,2,OTL, +OTL:SP:3377699720883860,1,"Pins",43.6981,1.47505,0,0,OTL:SA:1970324837186488,Europe/Paris,2,OTL, +OTL:SP:3377699720883861,1,"Pins",43.6977,1.47532,0,0,OTL:SA:1970324837186488,Europe/Paris,2,OTL, +OTL:SP:3377699720883862,1,"Puntous",43.6968,1.47683,0,0,OTL:SA:1970324837186489,Europe/Paris,2,OTL, +OTL:SP:3377699720883863,1,"Puntous",43.6969,1.47696,0,0,OTL:SA:1970324837186489,Europe/Paris,2,OTL, +OTL:SP:3377699720883866,1,"Roche",43.7092,1.47171,0,0,OTL:SA:1970324837186491,Europe/Paris,2,OTL, +OTL:SP:3377699720883867,1,"Roche",43.7088,1.47103,0,0,OTL:SA:1970324837186491,Europe/Paris,2,OTL, +OTL:SP:3377699720883868,1,"Cimetière Montberon",43.7129,1.47668,0,0,OTL:SA:1970324837186492,Europe/Paris,2,OTL, +OTL:SP:3377699720883869,1,"Cimetière Montberon",43.713,1.47681,0,0,OTL:SA:1970324837186492,Europe/Paris,0,OTL, +OTL:SP:3377699720883870,1,"Fontaine",43.7148,1.47854,0,0,OTL:SA:1970324837186493,Europe/Paris,2,OTL, +OTL:SP:3377699720883871,1,"Fontaine",43.7145,1.47816,0,0,OTL:SA:1970324837186493,Europe/Paris,0,OTL, +OTL:SP:3377699720883872,1,"Eglise Montberon",43.716,1.48012,0,0,OTL:SA:1970324837186494,Europe/Paris,0,OTL, +OTL:SP:3377699720883873,1,"Eglise Montberon",43.716,1.48001,0,0,OTL:SA:1970324837186494,Europe/Paris,0,OTL, +OTL:SP:3377699720883874,1,"Chaumière",43.5384,1.48073,0,0,OTL:SA:1970324837186495,Europe/Paris,2,OTL, +OTL:SP:3377699720883875,1,"Chaumière",43.5385,1.48073,0,0,OTL:SA:1970324837186495,Europe/Paris,2,OTL, +OTL:SP:3377699720883876,1,"Moulin Armand",43.5307,1.48757,0,0,OTL:SA:1970324837186496,Europe/Paris,2,OTL, +OTL:SP:3377699720883877,1,"Moulin Armand",43.5307,1.48754,0,0,OTL:SA:1970324837186496,Europe/Paris,2,OTL, +OTL:SP:3377699720883880,1,"Peupliers",43.5232,1.49445,0,0,OTL:SA:1970324837186498,Europe/Paris,2,OTL, +OTL:SP:3377699720883881,1,"Peupliers",43.5232,1.49446,0,0,OTL:SA:1970324837186498,Europe/Paris,2,OTL, +OTL:SP:3377699720883883,1,"Ecole Castanet",43.5207,1.49572,0,0,OTL:SA:1970324837186499,Europe/Paris,2,OTL, +OTL:SP:3377699720883884,1,"Ecole Castanet",43.5191,1.49685,0,0,OTL:SA:1970324837186499,Europe/Paris,2,OTL, +OTL:SP:3377699720883885,1,"Mairie Castanet",43.5167,1.49806,0,0,OTL:SA:1970324837185143,Europe/Paris,2,OTL, +OTL:SP:3377699720883886,1,"Mairie Castanet",43.5169,1.49808,0,0,OTL:SA:1970324837185143,Europe/Paris,2,OTL, +OTL:SP:3377699720883889,1,"Peries",43.5125,1.50114,0,0,OTL:SA:1970324837186501,Europe/Paris,2,OTL, +OTL:SP:3377699720883890,1,"Blum",43.5137,1.50439,0,0,OTL:SA:1970324837186502,Europe/Paris,2,OTL, +OTL:SP:3377699720883891,1,"Blum",43.514,1.50452,0,0,OTL:SA:1970324837186502,Europe/Paris,2,OTL, +OTL:SP:3377699720883892,1,"Castanet République",43.5172,1.50235,0,0,OTL:SA:1970324837186503,Europe/Paris,2,OTL, +OTL:SP:3377699720883893,1,"Castanet République",43.5168,1.50235,0,0,OTL:SA:1970324837186503,Europe/Paris,2,OTL, +OTL:SP:3377699720883894,1,"Verte Prairie",43.5184,1.50474,0,0,OTL:SA:1970324837186504,Europe/Paris,2,OTL, +OTL:SP:3377699720883895,1,"Verte Prairie",43.5183,1.50457,0,0,OTL:SA:1970324837186504,Europe/Paris,2,OTL, +OTL:SP:3377699720883896,1,"Artaud",43.5204,1.50572,0,0,OTL:SA:1970324837186505,Europe/Paris,2,OTL, +OTL:SP:3377699720883897,1,"Artaud",43.5211,1.50519,0,0,OTL:SA:1970324837186505,Europe/Paris,2,OTL, +OTL:SP:3377699720883906,1,"Montagné",43.5901,1.3687,0,0,OTL:SA:1970324837186513,Europe/Paris,0,OTL, +OTL:SP:3377699720883907,1,"Montagné",43.5899,1.37091,0,0,OTL:SA:1970324837186513,Europe/Paris,0,OTL, +OTL:SP:3377699720883908,1,"Pont du Touch",43.5902,1.36735,0,0,OTL:SA:1970324837186514,Europe/Paris,2,OTL, +OTL:SP:3377699720883909,1,"Pont du Touch",43.5898,1.36567,0,0,OTL:SA:1970324837186514,Europe/Paris,0,OTL, +OTL:SP:3377699720883910,1,"Briqueterie",43.5892,1.36237,0,0,OTL:SA:1970324837186515,Europe/Paris,0,OTL, +OTL:SP:3377699720883911,1,"Briqueterie",43.5891,1.36184,0,0,OTL:SA:1970324837186515,Europe/Paris,0,OTL, +OTL:SP:3377699720883912,1,"Ctre Cial Tournefeuille",43.588,1.35365,0,0,OTL:SA:1970324837186516,Europe/Paris,2,OTL, +OTL:SP:3377699720883914,1,"Alphonse Daudet",43.5878,1.35112,0,0,OTL:SA:1970324837186517,Europe/Paris,2,OTL, +OTL:SP:3377699720883915,1,"Alphonse Daudet",43.5878,1.35077,0,0,OTL:SA:1970324837186517,Europe/Paris,0,OTL, +OTL:SP:3377699720883916,1,"Montjoie",43.5863,1.34741,0,0,OTL:SA:1970324837186518,Europe/Paris,2,OTL, +OTL:SP:3377699720883917,1,"Montjoie",43.5861,1.34731,0,0,OTL:SA:1970324837186518,Europe/Paris,2,OTL, +OTL:SP:3377699720883918,1,"Montel",43.5853,1.34259,0,0,OTL:SA:1970324837186519,Europe/Paris,2,OTL, +OTL:SP:3377699720883919,1,"Montel",43.585,1.34302,0,0,OTL:SA:1970324837186519,Europe/Paris,0,OTL, +OTL:SP:3377699720883926,1,"Rouergue",43.5838,1.3329,0,0,OTL:SA:1970324837186523,Europe/Paris,2,OTL, +OTL:SP:3377699720883927,1,"Rouergue",43.5838,1.33327,0,0,OTL:SA:1970324837186523,Europe/Paris,2,OTL, +OTL:SP:3377699720883928,1,"Ile de France",43.5839,1.3295,0,0,OTL:SA:1970324837186524,Europe/Paris,2,OTL, +OTL:SP:3377699720883929,1,"Ile de France",43.5838,1.33018,0,0,OTL:SA:1970324837186524,Europe/Paris,2,OTL, +OTL:SP:3377699720883930,1,"Camargue",43.5842,1.32648,0,0,OTL:SA:1970324837186525,Europe/Paris,2,OTL, +OTL:SP:3377699720883931,1,"Camargue",43.5841,1.32678,0,0,OTL:SA:1970324837186525,Europe/Paris,2,OTL, +OTL:SP:3377699720883932,1,"Touraine",43.5877,1.32201,0,0,OTL:SA:1970324837186526,Europe/Paris,2,OTL, +OTL:SP:3377699720883933,1,"Touraine",43.5877,1.32206,0,0,OTL:SA:1970324837186526,Europe/Paris,2,OTL, +OTL:SP:3377699720883936,1,"Pagnol",43.59,1.31957,0,0,OTL:SA:1970324837186527,Europe/Paris,2,OTL, +OTL:SP:3377699720883938,1,"Casteret",43.5942,1.4018,0,0,OTL:SA:1970324837186528,Europe/Paris,2,OTL, +OTL:SP:3377699720883939,1,"Casteret",43.5941,1.40169,0,0,OTL:SA:1970324837186528,Europe/Paris,2,OTL, +OTL:SP:3377699720883942,1,"Lemire",43.5977,1.40376,0,0,AEC:SA:02331,Europe/Paris,2,OTL, +OTL:SP:3377699720883943,1,"Lemire",43.5976,1.40362,0,0,AEC:SA:02331,Europe/Paris,2,OTL, +OTL:SP:3377699720883946,1,"Grande-Bretagne",43.6019,1.40375,0,0,OTL:SA:1970324837186531,Europe/Paris,2,OTL, +OTL:SP:3377699720883947,1,"Grande-Bretagne",43.6019,1.40365,0,0,OTL:SA:1970324837186531,Europe/Paris,2,OTL, +OTL:SP:3377699720883950,1,"Ctre Cial Purpan Sud",43.6081,1.39337,0,0,AEC:SA:15294,Europe/Paris,2,OTL, +OTL:SP:3377699720883951,1,"Ctre Cial Purpan Sud",43.608,1.39325,0,0,AEC:SA:15294,Europe/Paris,2,OTL, +OTL:SP:3377699720883952,1,"Flambère",43.6084,1.38978,0,0,OTL:SA:1970324837186533,Europe/Paris,2,OTL, +OTL:SP:3377699720883953,1,"Flambère",43.6084,1.39099,0,0,OTL:SA:1970324837186533,Europe/Paris,2,OTL, +OTL:SP:3377699720883955,1,"Bisson",43.6083,1.3823,0,0,OTL:SA:1970324837186534,Europe/Paris,2,OTL, +OTL:SP:3377699720883956,1,"Bisson",43.6083,1.38342,0,0,OTL:SA:1970324837186534,Europe/Paris,2,OTL, +OTL:SP:3377699720883958,1,"Bertier",43.6085,1.37779,0,0,OTL:SA:1970324837186536,Europe/Paris,2,OTL, +OTL:SP:3377699720883959,1,"Bertier",43.6084,1.37795,0,0,OTL:SA:1970324837186536,Europe/Paris,2,OTL, +OTL:SP:3377699720883960,1,"Bouriette",43.6087,1.37401,0,0,OTL:SA:1970324837186537,Europe/Paris,2,OTL, +OTL:SP:3377699720883961,1,"Bouriette",43.6087,1.37376,0,0,OTL:SA:1970324837186537,Europe/Paris,2,OTL, +OTL:SP:3377699720883962,1,"Terce Airbus",43.6068,1.36391,0,0,OTL:SA:1970324837186538,Europe/Paris,2,OTL, +OTL:SP:3377699720883963,1,"Terce Airbus",43.6069,1.36412,0,0,OTL:SA:1970324837186538,Europe/Paris,2,OTL, +OTL:SP:3377699720883966,1,"Oratoire",43.61,1.34938,0,0,OTL:SA:1970329131942328,Europe/Paris,2,OTL, +OTL:SP:3377699720883967,1,"Oratoire",43.6099,1.34914,0,0,OTL:SA:1970329131942328,Europe/Paris,0,OTL, +OTL:SP:3377699720883968,1,"Naurouze",43.6091,1.34422,0,0,OTL:SA:1970324837186541,Europe/Paris,2,OTL, +OTL:SP:3377699720883969,1,"Naurouze",43.6094,1.34506,0,0,OTL:SA:1970324837186541,Europe/Paris,2,OTL, +OTL:SP:3377699720883980,1,"Champagne",43.6168,1.33083,0,0,OTL:SA:1970324837186549,Europe/Paris,2,OTL, +OTL:SP:3377699720883984,1,"14ème Rgt d'Infanterie",43.6137,1.33121,0,0,OTL:SA:1970324837186553,Europe/Paris,2,OTL, +OTL:SP:3377699720883985,1,"14ème Rgt d'Infanterie",43.6139,1.33146,0,0,OTL:SA:1970324837186553,Europe/Paris,2,OTL, +OTL:SP:3377699720883990,1,"Ossau",43.6055,1.33384,0,0,OTL:SA:1970324837186557,Europe/Paris,2,OTL, +OTL:SP:3377699720883991,1,"Ossau",43.6057,1.33376,0,0,OTL:SA:1970324837186557,Europe/Paris,0,OTL, +OTL:SP:3377699720883992,1,"Blanquette",43.6062,1.33108,0,0,OTL:SA:1970324837186558,Europe/Paris,2,OTL, +OTL:SP:3377699720883993,1,"Blanquette",43.6054,1.33132,0,0,OTL:SA:1970324837186558,Europe/Paris,2,OTL, +OTL:SP:3377699720883994,1,"Gers",43.6084,1.32654,0,0,OTL:SA:1970329131942326,Europe/Paris,2,OTL, +OTL:SP:3377699720883995,1,"Gers",43.6086,1.32637,0,0,OTL:SA:1970329131942326,Europe/Paris,2,OTL, +OTL:SP:3377699720883996,1,"De Musset",43.5878,1.35599,0,0,OTL:SA:1970324837186560,Europe/Paris,0,OTL, +OTL:SP:3377699720883997,1,"Castell",43.5873,1.35462,0,0,OTL:SA:1970324837186561,Europe/Paris,2,OTL, +OTL:SP:3377699720883998,1,"Cimetière Tournefeuille",43.5864,1.35275,0,0,OTL:SA:1970324837186562,Europe/Paris,2,OTL, +OTL:SP:3377699720883999,1,"Cimetière Tournefeuille",43.5862,1.35239,0,0,OTL:SA:1970324837186562,Europe/Paris,2,OTL, +OTL:SP:3377699720884000,1,"Cité du Parc",43.5855,1.3502,0,0,OTL:SA:1970324837186563,Europe/Paris,0,OTL, +OTL:SP:3377699720884001,1,"Cité du Parc",43.5856,1.35039,0,0,OTL:SA:1970324837186563,Europe/Paris,2,OTL, +OTL:SP:3377699720884002,1,"Résistance",43.5845,1.34756,0,0,OTL:SA:1970324837186564,Europe/Paris,0,OTL, +OTL:SP:3377699720884003,1,"Résistance",43.5847,1.34797,0,0,OTL:SA:1970324837186564,Europe/Paris,2,OTL, +OTL:SP:3377699720884004,1,"Eglise Tournefeuille",43.5837,1.34603,0,0,OTL:SA:1970324837186565,Europe/Paris,0,OTL, +OTL:SP:3377699720884005,1,"Eglise Tournefeuille",43.5837,1.34585,0,0,OTL:SA:1970324837186565,Europe/Paris,0,OTL, +OTL:SP:3377699720884006,1,"Résidence d'Oc",43.5798,1.34236,0,0,OTL:SA:1970324837186566,Europe/Paris,2,OTL, +OTL:SP:3377699720884007,1,"Résidence d'Oc",43.5796,1.34275,0,0,OTL:SA:1970324837186566,Europe/Paris,2,OTL, +OTL:SP:3377699720884008,1,"Touch",43.5784,1.34302,0,0,OTL:SA:1970324837186567,Europe/Paris,0,OTL, +OTL:SP:3377699720884009,1,"Touch",43.5785,1.34312,0,0,OTL:SA:1970324837186567,Europe/Paris,2,OTL, +OTL:SP:3377699720884010,1,"Tilleuls",43.578,1.34147,0,0,OTL:SA:1970324837186568,Europe/Paris,0,OTL, +OTL:SP:3377699720884011,1,"Tilleuls",43.5785,1.34046,0,0,OTL:SA:1970324837186568,Europe/Paris,0,OTL, +OTL:SP:3377699720884012,1,"Amandier",43.5797,1.33881,0,0,OTL:SA:1970324837186569,Europe/Paris,0,OTL, +OTL:SP:3377699720884013,1,"Amandier",43.5797,1.33879,0,0,OTL:SA:1970324837186569,Europe/Paris,0,OTL, +OTL:SP:3377699720884014,1,"Catalpas",43.5787,1.3351,0,0,OTL:SA:1970324837186570,Europe/Paris,2,OTL, +OTL:SP:3377699720884015,1,"Catalpas",43.5787,1.33511,0,0,OTL:SA:1970324837186570,Europe/Paris,2,OTL, +OTL:SP:3377699720884016,1,"Noisetiers",43.5776,1.33147,0,0,OTL:SA:1970324837186571,Europe/Paris,2,OTL, +OTL:SP:3377699720884017,1,"Noisetiers",43.5774,1.33088,0,0,OTL:SA:1970324837186571,Europe/Paris,2,OTL, +OTL:SP:3377699720884018,1,"Gaston Doumergue",43.5837,1.3417,0,0,OTL:SA:1970324837186572,Europe/Paris,0,OTL, +OTL:SP:3377699720884019,1,"Gaston Doumergue",43.5831,1.34049,0,0,OTL:SA:1970324837186572,Europe/Paris,0,OTL, +OTL:SP:3377699720884020,1,"Adour",43.5811,1.33543,0,0,OTL:SA:1970324837186573,Europe/Paris,2,OTL, +OTL:SP:3377699720884021,1,"Adour",43.5813,1.33582,0,0,OTL:SA:1970324837186573,Europe/Paris,2,OTL, +OTL:SP:3377699720884024,1,"Route de Tarbes",43.5797,1.332,0,0,OTL:SA:1970324837186574,Europe/Paris,2,OTL, +OTL:SP:3377699720884025,1,"Route de Tarbes",43.5796,1.33166,0,0,OTL:SA:1970324837186574,Europe/Paris,0,OTL, +OTL:SP:3377699720884026,1,"Mirabeau",43.5746,1.31936,0,0,OTL:SA:1970324837186575,Europe/Paris,0,OTL, +OTL:SP:3377699720884029,1,"Bernadet",43.5718,1.3121,0,0,OTL:SA:1970324837186576,Europe/Paris,0,OTL, +OTL:SP:3377699720884030,1,"Loti",43.5687,1.30927,0,0,OTL:SA:1970324837186577,Europe/Paris,0,OTL, +OTL:SP:3377699720884031,1,"Loti",43.5681,1.30883,0,0,OTL:SA:1970324837186577,Europe/Paris,2,OTL, +OTL:SP:3377699720884032,1,"Estujats",43.5672,1.30746,0,0,OTL:SA:1970324837186578,Europe/Paris,0,OTL, +OTL:SP:3377699720884033,1,"Estujats",43.567,1.30658,0,0,OTL:SA:1970324837186578,Europe/Paris,2,OTL, +OTL:SP:3377699720884034,1,"Pécheurs",43.5663,1.30293,0,0,OTL:SA:1970324837186579,Europe/Paris,2,OTL, +OTL:SP:3377699720884035,1,"Pécheurs",43.5662,1.30345,0,0,OTL:SA:1970324837186579,Europe/Paris,0,OTL, +OTL:SP:3377699720884036,1,"Juncasse",43.5657,1.30032,0,0,OTL:SA:1970324837186580,Europe/Paris,2,OTL, +OTL:SP:3377699720884037,1,"Juncasse",43.5658,1.30041,0,0,OTL:SA:1970324837186580,Europe/Paris,0,OTL, +OTL:SP:3377699720884038,1,"Capelles",43.5634,1.2958,0,0,OTL:SA:1970324837186581,Europe/Paris,2,OTL, +OTL:SP:3377699720884039,1,"Capelles",43.5634,1.29564,0,0,OTL:SA:1970324837186581,Europe/Paris,2,OTL, +OTL:SP:3377699720884040,1,"Fauvettes",43.5612,1.29233,0,0,OTL:SA:1970324837186582,Europe/Paris,2,OTL, +OTL:SP:3377699720884041,1,"Fauvettes",43.5615,1.29273,0,0,OTL:SA:1970324837186582,Europe/Paris,0,OTL, +OTL:SP:3377699720884042,1,"Casse",43.5606,1.29081,0,0,OTL:SA:1970324837186583,Europe/Paris,2,OTL, +OTL:SP:3377699720884043,1,"Rouch",43.5616,1.28902,0,0,OTL:SA:1970324837186584,Europe/Paris,2,OTL, +OTL:SP:3377699720884044,1,"Fontaines",43.5998,1.42032,0,0,OTL:SA:1970324837186585,Europe/Paris,2,OTL, +OTL:SP:3377699720884045,1,"Fontaines",43.6002,1.4201,0,0,OTL:SA:1970324837186585,Europe/Paris,2,OTL, +OTL:SP:3377699720884046,1,"Bourrassol",43.6019,1.42022,0,0,OTL:SA:1970324837186586,Europe/Paris,2,OTL, +OTL:SP:3377699720884047,1,"Wagner",43.604,1.41989,0,0,OTL:SA:1970324837186587,Europe/Paris,2,OTL, +OTL:SP:3377699720884048,1,"Décamps",43.6046,1.41782,0,0,OTL:SA:1970324837186588,Europe/Paris,2,OTL, +OTL:SP:3377699720884049,1,"Capoul",43.6065,1.4143,0,0,OTL:SA:1970324837186589,Europe/Paris,2,OTL, +OTL:SP:3377699720884050,1,"Biarritz",43.6079,1.4107,0,0,OTL:SA:1970324837186590,Europe/Paris,2,OTL, +OTL:SP:3377699720884055,1,"Murillo",43.6046,1.40719,0,0,OTL:SA:1970324837186595,Europe/Paris,2,OTL, +OTL:SP:3377699720884056,1,"Foyer Toulousain",43.6065,1.40795,0,0,OTL:SA:1970324837186596,Europe/Paris,2,OTL, +OTL:SP:3377699720884057,1,"Foyer Toulousain",43.6068,1.40853,0,0,OTL:SA:1970324837186596,Europe/Paris,0,OTL, +OTL:SP:3377699720884058,1,"Ducis",43.6098,1.40576,0,0,OTL:SA:1970324837186597,Europe/Paris,2,OTL, +OTL:SP:3377699720884059,1,"Ducis",43.6095,1.40618,0,0,OTL:SA:1970324837186597,Europe/Paris,0,OTL, +OTL:SP:3377699720884060,1,"Gériatrie",43.613,1.40205,0,0,OTL:SA:1970324837186598,Europe/Paris,2,OTL, +OTL:SP:3377699720884061,1,"Gériatrie",43.6131,1.40185,0,0,OTL:SA:1970324837186598,Europe/Paris,2,OTL, +OTL:SP:3377699720884062,1,"Cauterets",43.6156,1.39941,0,0,OTL:SA:1970324837186599,Europe/Paris,2,OTL, +OTL:SP:3377699720884063,1,"Cauterets",43.6154,1.39953,0,0,OTL:SA:1970324837186599,Europe/Paris,0,OTL, +OTL:SP:3377699720884064,1,"Charolais",43.6174,1.39837,0,0,OTL:SA:1970324837186600,Europe/Paris,2,OTL, +OTL:SP:3377699720884065,1,"Charolais",43.6175,1.39819,0,0,OTL:SA:1970324837186600,Europe/Paris,2,OTL, +OTL:SP:3377699720884076,1,"Les Tourelles",43.5912,1.39806,0,0,OTL:SA:1970324837186606,Europe/Paris,2,OTL, +OTL:SP:3377699720884077,1,"Les Tourelles",43.5908,1.39751,0,0,OTL:SA:1970324837186606,Europe/Paris,2,OTL, +OTL:SP:3377699720884078,1,"Vitarelles",43.5874,1.39413,0,0,OTL:SA:1970329131942365,Europe/Paris,2,OTL, +OTL:SP:3377699720884079,1,"Vitarelles",43.5886,1.3953,0,0,OTL:SA:1970329131942365,Europe/Paris,2,OTL, +OTL:SP:3377699720884080,1,"Châtaigniers",43.5864,1.39099,0,0,OTL:SA:1970324837186608,Europe/Paris,2,OTL, +OTL:SP:3377699720884081,1,"Châtaigniers",43.5863,1.3904,0,0,OTL:SA:1970324837186608,Europe/Paris,2,OTL, +OTL:SP:3377699720884082,1,"Molette",43.5855,1.38747,0,0,OTL:SA:1970324837186609,Europe/Paris,2,OTL, +OTL:SP:3377699720884083,1,"Molette",43.5857,1.38742,0,0,OTL:SA:1970324837186609,Europe/Paris,2,OTL, +OTL:SP:3377699720884084,1,"Villèle",43.5851,1.38517,0,0,OTL:SA:1970324837186610,Europe/Paris,2,OTL, +OTL:SP:3377699720884085,1,"Villèle",43.5851,1.38461,0,0,OTL:SA:1970324837186610,Europe/Paris,0,OTL, +OTL:SP:3377699720884086,1,"Mazaygues",43.5844,1.38196,0,0,OTL:SA:1970324837186611,Europe/Paris,2,OTL, +OTL:SP:3377699720884087,1,"Mazaygues",43.5843,1.3811,0,0,OTL:SA:1970324837186611,Europe/Paris,2,OTL, +OTL:SP:3377699720884088,1,"Corneillan",43.5832,1.37795,0,0,OTL:SA:1970324837186612,Europe/Paris,0,OTL, +OTL:SP:3377699720884089,1,"Corneillan",43.5832,1.37703,0,0,OTL:SA:1970324837186612,Europe/Paris,2,OTL, +OTL:SP:3377699720884090,1,"Ardennes",43.5827,1.37404,0,0,OTL:SA:1970324837186613,Europe/Paris,2,OTL, +OTL:SP:3377699720884091,1,"Ardennes",43.5827,1.37361,0,0,OTL:SA:1970324837186613,Europe/Paris,2,OTL, +OTL:SP:3377699720884092,1,"Ferro Lèbres",43.5824,1.37121,0,0,OTL:SA:1970329131942320,Europe/Paris,0,OTL, +OTL:SP:3377699720884093,1,"Ferro Lèbres",43.5824,1.371,0,0,OTL:SA:1970329131942320,Europe/Paris,0,OTL, +OTL:SP:3377699720884094,1,"Ramelet Moundi",43.5798,1.36294,0,0,OTL:SA:1970324837186615,Europe/Paris,2,OTL, +OTL:SP:3377699720884095,1,"Ramelet Moundi",43.5801,1.36261,0,0,OTL:SA:1970324837186615,Europe/Paris,2,OTL, +OTL:SP:3377699720884096,1,"Prat",43.579,1.35859,0,0,OTL:SA:1970324837186616,Europe/Paris,0,OTL, +OTL:SP:3377699720884097,1,"Prat",43.579,1.35869,0,0,OTL:SA:1970324837186616,Europe/Paris,0,OTL, +OTL:SP:3377699720884098,1,"Cabanon",43.5777,1.35128,0,0,AEC:SA:02115,Europe/Paris,0,OTL, +OTL:SP:3377699720884099,1,"Cabanon",43.5775,1.35065,0,0,AEC:SA:02115,Europe/Paris,2,OTL, +OTL:SP:3377699720884100,1,"Cascade",43.5754,1.34641,0,0,OTL:SA:1970324837186618,Europe/Paris,0,OTL, +OTL:SP:3377699720884101,1,"Cascade",43.575,1.3453,0,0,OTL:SA:1970324837186618,Europe/Paris,0,OTL, +OTL:SP:3377699720884102,1,"Sources",43.5738,1.34311,0,0,OTL:SA:1970324837186619,Europe/Paris,2,OTL, +OTL:SP:3377699720884103,1,"Sources",43.5736,1.3424,0,0,OTL:SA:1970324837186619,Europe/Paris,0,OTL, +OTL:SP:3377699720884104,1,"Bois Joli",43.5722,1.33983,0,0,OTL:SA:1970324837186620,Europe/Paris,0,OTL, +OTL:SP:3377699720884105,1,"Bois Joli",43.5721,1.33912,0,0,OTL:SA:1970324837186620,Europe/Paris,0,OTL, +OTL:SP:3377699720884106,1,"Petit Marquis",43.5704,1.33568,0,0,OTL:SA:1970324837186621,Europe/Paris,2,OTL, +OTL:SP:3377699720884107,1,"Petit Marquis",43.5703,1.3358,0,0,OTL:SA:1970324837186621,Europe/Paris,0,OTL, +OTL:SP:3377699720884108,1,"Marquisat",43.5692,1.33262,0,0,OTL:SA:1970324837186622,Europe/Paris,2,OTL, +OTL:SP:3377699720884109,1,"Marquisat",43.5689,1.33233,0,0,OTL:SA:1970324837186622,Europe/Paris,0,OTL, +OTL:SP:3377699720884112,1,"Brunet Faure",43.5676,1.3285,0,0,OTL:SA:1970324837186623,Europe/Paris,2,OTL, +OTL:SP:3377699720884113,1,"Brunet Faure",43.5678,1.32868,0,0,OTL:SA:1970324837186623,Europe/Paris,2,OTL, +OTL:SP:3377699720884114,1,"Pont",43.5666,1.32516,0,0,OTL:SA:1970324837186624,Europe/Paris,2,OTL, +OTL:SP:3377699720884115,1,"Pont",43.5662,1.32437,0,0,OTL:SA:1970324837186624,Europe/Paris,2,OTL, +OTL:SP:3377699720884116,1,"Charlas",43.5644,1.31802,0,0,OTL:SA:1970324837186625,Europe/Paris,2,OTL, +OTL:SP:3377699720884117,1,"Charlas",43.5644,1.31821,0,0,OTL:SA:1970324837186625,Europe/Paris,2,OTL, +OTL:SP:3377699720884121,1,"Jonquilles",43.5616,1.30486,0,0,OTL:SA:1970324837186627,Europe/Paris,2,OTL, +OTL:SP:3377699720884122,1,"Montaigne",43.5627,1.30211,0,0,OTL:SA:1970324837186628,Europe/Paris,0,OTL, +OTL:SP:3377699720884123,1,"Montaigne",43.5626,1.30226,0,0,OTL:SA:1970324837186628,Europe/Paris,2,OTL, +OTL:SP:3377699720884124,1,"Maison de Retraite",43.5636,1.29943,0,0,OTL:SA:1970324837186629,Europe/Paris,0,OTL, +OTL:SP:3377699720884125,1,"Maison de Retraite",43.5637,1.29933,0,0,OTL:SA:1970324837186629,Europe/Paris,2,OTL, +OTL:SP:3377699720884129,1,"Alouettes",43.5528,1.47085,0,0,OTL:SA:1970324837186631,Europe/Paris,0,OTL, +OTL:SP:3377699720884131,1,"Violettes",43.5537,1.47473,0,0,OTL:SA:1970324837186632,Europe/Paris,2,OTL, +OTL:SP:3377699720884132,1,"Cigognes",43.5513,1.47587,0,0,OTL:SA:1970324837186633,Europe/Paris,2,OTL, +OTL:SP:3377699720884133,1,"Cigognes",43.5515,1.47573,0,0,OTL:SA:1970324837186633,Europe/Paris,2,OTL, +OTL:SP:3377699720884134,1,"Pompidou",43.5488,1.47756,0,0,OTL:SA:1970324837186634,Europe/Paris,2,OTL, +OTL:SP:3377699720884135,1,"Pompidou",43.5493,1.47715,0,0,OTL:SA:1970324837186634,Europe/Paris,2,OTL, +OTL:SP:3377699720884136,1,"Marnac",43.5456,1.47837,0,0,OTL:SA:1970324837186635,Europe/Paris,2,OTL, +OTL:SP:3377699720884137,1,"Marnac",43.5459,1.47839,0,0,OTL:SA:1970324837186635,Europe/Paris,2,OTL, +OTL:SP:3377699720884138,1,"Ormes",43.5417,1.4837,0,0,OTL:SA:1970324837186636,Europe/Paris,2,OTL, +OTL:SP:3377699720884139,1,"Ormes",43.5416,1.48375,0,0,OTL:SA:1970324837186636,Europe/Paris,2,OTL, +OTL:SP:3377699720884140,1,"Jacques Prévert",43.542,1.48681,0,0,OTL:SA:1970324837186637,Europe/Paris,2,OTL, +OTL:SP:3377699720884141,1,"Jacques Prévert",43.5419,1.48696,0,0,OTL:SA:1970324837186637,Europe/Paris,2,OTL, +OTL:SP:3377699720884147,1,"Soeurs",43.631,1.39728,0,0,OTL:SA:1970324837186641,Europe/Paris,2,OTL, +OTL:SP:3377699720884148,1,"Soeurs",43.6308,1.39737,0,0,OTL:SA:1970324837186641,Europe/Paris,2,OTL, +OTL:SP:3377699720884149,1,"Croix Blanche",43.6334,1.39739,0,0,OTL:SA:1970324837186642,Europe/Paris,2,OTL, +OTL:SP:3377699720884150,1,"Croix Blanche",43.6335,1.39721,0,0,OTL:SA:1970324837186642,Europe/Paris,2,OTL, +OTL:SP:3377699720884175,1,"Gauguin",43.6412,1.38796,0,0,OTL:SA:1970324837186655,Europe/Paris,2,OTL, +OTL:SP:3377699720884176,1,"Gauguin",43.6413,1.38781,0,0,OTL:SA:1970324837186655,Europe/Paris,2,OTL, +OTL:SP:3377699720884179,1,"Stade Andromède",43.6553,1.38109,0,0,OTL:SA:1970324837186657,Europe/Paris,2,OTL, +OTL:SP:3377699720884180,1,"Stade Andromède",43.6554,1.38185,0,0,OTL:SA:1970324837186657,Europe/Paris,2,OTL, +OTL:SP:3377699720884181,1,"Coccinelles",43.6586,1.38123,0,0,OTL:SA:1970324840034504,Europe/Paris,2,OTL, +OTL:SP:3377699720884182,1,"Coccinelles",43.6591,1.38087,0,0,OTL:SA:1970324840034504,Europe/Paris,2,OTL, +OTL:SP:3377699720884183,1,"Cigognes",43.664,1.37828,0,0,OTL:SA:1970324840034506,Europe/Paris,2,OTL, +OTL:SP:3377699720884184,1,"Cigognes",43.6641,1.37888,0,0,OTL:SA:1970324840034506,Europe/Paris,2,OTL, +OTL:SP:3377699720884185,1,"Marquette",43.6672,1.37713,0,0,OTL:SA:1970324837186660,Europe/Paris,2,OTL, +OTL:SP:3377699720884186,1,"Marquette",43.6671,1.37736,0,0,OTL:SA:1970324837186660,Europe/Paris,2,OTL, +OTL:SP:3377699720884187,1,"Erables",43.6672,1.37525,0,0,OTL:SA:1970324837186661,Europe/Paris,2,OTL, +OTL:SP:3377699720884188,1,"Erables",43.6673,1.37485,0,0,OTL:SA:1970324837186661,Europe/Paris,0,OTL, +OTL:SP:3377699720884189,1,"Beau Soleil",43.6702,1.37409,0,0,OTL:SA:1970324837186662,Europe/Paris,2,OTL, +OTL:SP:3377699720884190,1,"Beau Soleil",43.6703,1.37275,0,0,OTL:SA:1970324837186662,Europe/Paris,2,OTL, +OTL:SP:3377699720884191,1,"Noisetiers",43.6701,1.37074,0,0,OTL:SA:1970324837186663,Europe/Paris,2,OTL, +OTL:SP:3377699720884192,1,"Noisetiers",43.6701,1.3711,0,0,OTL:SA:1970324837186663,Europe/Paris,2,OTL, +OTL:SP:3377699720884193,1,"Tricheries",43.6812,1.36653,0,0,OTL:SA:1970324837186664,Europe/Paris,2,OTL, +OTL:SP:3377699720884194,1,"Tricheries",43.6812,1.36649,0,0,OTL:SA:1970324837186664,Europe/Paris,0,OTL, +OTL:SP:3377699720884195,1,"Satre",43.6843,1.36465,0,0,OTL:SA:1970324837186665,Europe/Paris,2,OTL, +OTL:SP:3377699720884196,1,"Satre",43.6839,1.36484,0,0,OTL:SA:1970324837186665,Europe/Paris,0,OTL, +OTL:SP:3377699720884197,1,"Rond-point du Golf",43.686,1.36095,0,0,OTL:SA:1970324837186666,Europe/Paris,2,OTL, +OTL:SP:3377699720884205,1,"Dinetard",43.6137,1.47631,0,0,OTL:SA:1970324837186671,Europe/Paris,2,OTL, +OTL:SP:3377699720884206,1,"Dinetard",43.6141,1.4759,0,0,OTL:SA:1970324837186671,Europe/Paris,2,OTL, +OTL:SP:3377699720884207,1,"Soupetard",43.6124,1.47739,0,0,OTL:SA:1970324837186672,Europe/Paris,2,OTL, +OTL:SP:3377699720884208,1,"Soupetard",43.6122,1.47725,0,0,OTL:SA:1970324837186672,Europe/Paris,2,OTL, +OTL:SP:3377699720884209,1,"Surcouf",43.6107,1.47872,0,0,OTL:SA:1970324837186673,Europe/Paris,2,OTL, +OTL:SP:3377699720884210,1,"Surcouf",43.6104,1.47901,0,0,OTL:SA:1970324837186673,Europe/Paris,2,OTL, +OTL:SP:3377699720884211,1,"Solidarité",43.6087,1.48031,0,0,OTL:SA:1970324837186674,Europe/Paris,2,OTL, +OTL:SP:3377699720884212,1,"Solidarité",43.6082,1.48074,0,0,OTL:SA:1970324837186674,Europe/Paris,2,OTL, +OTL:SP:3377699720884213,1,"Soumet",43.6068,1.48217,0,0,OTL:SA:1970324837186675,Europe/Paris,2,OTL, +OTL:SP:3377699720884214,1,"Soumet",43.607,1.48205,0,0,OTL:SA:1970324837186675,Europe/Paris,2,OTL, +OTL:SP:3377699720884219,1,"Aérostiers",43.6098,1.49001,0,0,OTL:SA:1970324837186678,Europe/Paris,2,OTL, +OTL:SP:3377699720884222,1,"Edgar Quinet",43.6096,1.49315,0,0,OTL:SA:1970324837186680,Europe/Paris,2,OTL, +OTL:SP:3377699720884224,1,"Caraïbes",43.6099,1.4959,0,0,OTL:SA:1970324837186681,Europe/Paris,2,OTL, +OTL:SP:3377699720884225,1,"Caraïbes",43.6098,1.49499,0,0,OTL:SA:1970324837186681,Europe/Paris,2,OTL, +OTL:SP:3377699720884227,1,"Provence",43.6099,1.50057,0,0,OTL:SA:1970324837186682,Europe/Paris,2,OTL, +OTL:SP:3377699720884228,1,"Roussillon",43.611,1.504,0,0,OTL:SA:1970324837186683,Europe/Paris,0,OTL, +OTL:SP:3377699720884229,1,"Roussillon",43.6112,1.50391,0,0,OTL:SA:1970324837186683,Europe/Paris,0,OTL, +OTL:SP:3377699720884230,1,"Ecole St-Exupéry",43.6125,1.50601,0,0,OTL:SA:1970324837186684,Europe/Paris,0,OTL, +OTL:SP:3377699720884231,1,"Ecole St-Exupéry",43.6126,1.50629,0,0,OTL:SA:1970324837186684,Europe/Paris,2,OTL, +OTL:SP:3377699720884232,1,"Lac St-Clair",43.6143,1.50879,0,0,OTL:SA:1970324837186685,Europe/Paris,0,OTL, +OTL:SP:3377699720884233,1,"Lac St-Clair",43.614,1.50853,0,0,OTL:SA:1970324837186685,Europe/Paris,0,OTL, +OTL:SP:3377699720884234,1,"Carrel",43.6157,1.50799,0,0,OTL:SA:1970324837186686,Europe/Paris,0,OTL, +OTL:SP:3377699720884235,1,"Carrel",43.6157,1.50788,0,0,OTL:SA:1970324837186686,Europe/Paris,2,OTL, +OTL:SP:3377699720884236,1,"Pins",43.6163,1.50374,0,0,OTL:SA:1970324837186687,Europe/Paris,2,OTL, +OTL:SP:3377699720884237,1,"Pins",43.6164,1.50366,0,0,OTL:SA:1970324837186687,Europe/Paris,2,OTL, +OTL:SP:3377699720884238,1,"Château d'eau",43.6191,1.50474,0,0,OTL:SA:1970324837186688,Europe/Paris,2,OTL, +OTL:SP:3377699720884239,1,"Château d'eau",43.6186,1.50476,0,0,OTL:SA:1970324837186688,Europe/Paris,0,OTL, +OTL:SP:3377699720884240,1,"Paradoux",43.6211,1.50927,0,0,OTL:SA:1970324837186689,Europe/Paris,0,OTL, +OTL:SP:3377699720884241,1,"Paradoux",43.6211,1.50842,0,0,OTL:SA:1970324837186689,Europe/Paris,2,OTL, +OTL:SP:3377699720884242,1,"Sironis",43.6211,1.51248,0,0,OTL:SA:1970324837186690,Europe/Paris,0,OTL, +OTL:SP:3377699720884243,1,"Sironis",43.6211,1.51217,0,0,OTL:SA:1970324837186690,Europe/Paris,0,OTL, +OTL:SP:3377699720884244,1,"Panorama",43.6203,1.51462,0,0,OTL:SA:1970324837186691,Europe/Paris,2,OTL, +OTL:SP:3377699720884245,1,"Panorama",43.6201,1.515,0,0,OTL:SA:1970324837186691,Europe/Paris,0,OTL, +OTL:SP:3377699720884246,1,"Route de Mons",43.6098,1.50356,0,0,OTL:SA:1970324837186692,Europe/Paris,2,OTL, +OTL:SP:3377699720884247,1,"Route de Mons",43.6098,1.50379,0,0,OTL:SA:1970324837186692,Europe/Paris,2,OTL, +OTL:SP:3377699720884248,1,"Max Linder",43.6091,1.50697,0,0,OTL:SA:1970324837186693,Europe/Paris,2,OTL, +OTL:SP:3377699720884249,1,"Max Linder",43.609,1.50743,0,0,OTL:SA:1970324837186693,Europe/Paris,2,OTL, +OTL:SP:3377699720884250,1,"Bernadotte",43.6085,1.51106,0,0,OTL:SA:1970324837186694,Europe/Paris,2,OTL, +OTL:SP:3377699720884251,1,"Bernadotte",43.6085,1.51111,0,0,OTL:SA:1970324837186694,Europe/Paris,2,OTL, +OTL:SP:3377699720884252,1,"Aussire",43.6072,1.51416,0,0,OTL:SA:1970324837186695,Europe/Paris,2,OTL, +OTL:SP:3377699720884253,1,"Aussire",43.6074,1.51441,0,0,OTL:SA:1970324837186695,Europe/Paris,2,OTL, +OTL:SP:3377699720884254,1,"Le Grand Bois",43.6047,1.5114,0,0,OTL:SA:1970324837186696,Europe/Paris,2,OTL, +OTL:SP:3377699720884255,1,"Le Grand Bois",43.6052,1.51171,0,0,OTL:SA:1970324837186696,Europe/Paris,2,OTL, +OTL:SP:3377699720884258,1,"Cimetière Balma",43.6003,1.50721,0,0,OTL:SA:1970324837186698,Europe/Paris,2,OTL, +OTL:SP:3377699720884259,1,"Cimetière Balma",43.6,1.50699,0,0,OTL:SA:1970324837186698,Europe/Paris,2,OTL, +OTL:SP:3377699720884260,1,"La Tour",43.6092,1.50285,0,0,OTL:SA:1970324837186699,Europe/Paris,2,OTL, +OTL:SP:3377699720884262,1,"Jeux Floraux",43.6077,1.50212,0,0,OTL:SA:1970324837186700,Europe/Paris,2,OTL, +OTL:SP:3377699720884263,1,"Jeux Floraux",43.6079,1.50229,0,0,OTL:SA:1970324837186700,Europe/Paris,2,OTL, +OTL:SP:3377699720884264,1,"Mairie Balma",43.6055,1.50241,0,0,OTL:SA:1970324837186701,Europe/Paris,2,OTL, +OTL:SP:3377699720884265,1,"Mairie Balma",43.6055,1.50194,0,0,OTL:SA:1970324837186701,Europe/Paris,2,OTL, +OTL:SP:3377699720884266,1,"Mallarmé",43.6031,1.50501,0,0,OTL:SA:1970324837186702,Europe/Paris,2,OTL, +OTL:SP:3377699720884267,1,"Jasmin",43.6029,1.50393,0,0,OTL:SA:1970324837186703,Europe/Paris,2,OTL, +OTL:SP:3377699720884268,1,"Jasmin",43.6031,1.50415,0,0,OTL:SA:1970324837186703,Europe/Paris,2,OTL, +OTL:SP:3377699720884269,1,"Rimbaud",43.6021,1.50046,0,0,OTL:SA:1970324837186704,Europe/Paris,2,OTL, +OTL:SP:3377699720884270,1,"Rimbaud",43.6022,1.50088,0,0,OTL:SA:1970324837186704,Europe/Paris,2,OTL, +OTL:SP:3377699720884271,1,"Lagarde",43.6014,1.49797,0,0,OTL:SA:1970324837186705,Europe/Paris,2,OTL, +OTL:SP:3377699720884272,1,"Lagarde",43.6013,1.49765,0,0,OTL:SA:1970324837186705,Europe/Paris,2,OTL, +OTL:SP:3377699720884273,1,"Clos Fleuri",43.5983,1.50072,0,0,OTL:SA:1970324837186706,Europe/Paris,2,OTL, +OTL:SP:3377699720884274,1,"Clos Fleuri",43.5985,1.50041,0,0,OTL:SA:1970324837186706,Europe/Paris,2,OTL, +OTL:SP:3377699720884275,1,"Clos St-Martin",43.5974,1.50264,0,0,OTL:SA:1970324837186707,Europe/Paris,2,OTL, +OTL:SP:3377699720884276,1,"Clos St-Martin",43.5972,1.50293,0,0,OTL:SA:1970324837186707,Europe/Paris,2,OTL, +OTL:SP:3377699720884277,1,"Ecole Balma",43.5976,1.50564,0,0,OTL:SA:1970324837186708,Europe/Paris,2,OTL, +OTL:SP:3377699720884278,1,"Ecole Balma",43.5979,1.50544,0,0,OTL:SA:1970324837186708,Europe/Paris,2,OTL, +OTL:SP:3377699720884279,1,"Gauguin",43.596,1.5064,0,0,OTL:SA:1970324837186709,Europe/Paris,2,OTL, +OTL:SP:3377699720884281,1,"Cézanne",43.5952,1.50531,0,0,OTL:SA:1970324837186710,Europe/Paris,2,OTL, +OTL:SP:3377699720884296,1,"Madeleine",43.5986,1.54757,0,0,OTL:SA:1970324837186718,Europe/Paris,0,OTL, +OTL:SP:3377699720884297,1,"Madeleine",43.5988,1.54732,0,0,OTL:SA:1970324837186718,Europe/Paris,0,OTL, +OTL:SP:3377699720884299,1,"La Lie",43.5942,1.55798,0,0,OTL:SA:1970324837186719,Europe/Paris,2,OTL, +OTL:SP:3377699720884300,1,"Digue",43.5944,1.55944,0,0,OTL:SA:1970324837186720,Europe/Paris,2,OTL, +OTL:SP:3377699720884301,1,"Digue",43.5944,1.55938,0,0,OTL:SA:1970324837186720,Europe/Paris,2,OTL, +OTL:SP:3377699720884302,1,"Aufréry",43.612,1.52708,0,0,OTL:SA:1970324837186721,Europe/Paris,0,OTL, +OTL:SP:3377699720884303,1,"Aufréry",43.612,1.52702,0,0,OTL:SA:1970324837186721,Europe/Paris,2,OTL, +OTL:SP:3377699720884322,1,"Cerbère",43.6483,1.47357,0,0,OTL:SA:1970324837186733,Europe/Paris,0,OTL, +OTL:SP:3377699720884323,1,"Cerbère",43.6484,1.47356,0,0,OTL:SA:1970324837186733,Europe/Paris,0,OTL, +OTL:SP:3377699720884324,1,"La Palme",43.6464,1.47547,0,0,OTL:SA:1970324837186734,Europe/Paris,0,OTL, +OTL:SP:3377699720884325,1,"La Palme",43.6464,1.47535,0,0,OTL:SA:1970324837186734,Europe/Paris,0,OTL, +OTL:SP:3377699720884326,1,"La Franqui",43.6466,1.47856,0,0,OTL:SA:1970324837186735,Europe/Paris,0,OTL, +OTL:SP:3377699720884327,1,"La Franqui",43.6463,1.47857,0,0,OTL:SA:1970324837186735,Europe/Paris,0,OTL, +OTL:SP:3377699720884328,1,"Orthez",43.6483,1.48091,0,0,OTL:SA:1970324837186736,Europe/Paris,0,OTL, +OTL:SP:3377699720884329,1,"Orthez",43.6482,1.48094,0,0,OTL:SA:1970324837186736,Europe/Paris,0,OTL, +OTL:SP:3377699720884330,1,"St-Jean Pied de Port",43.6486,1.48499,0,0,OTL:SA:1970324837186737,Europe/Paris,0,OTL, +OTL:SP:3377699720884331,1,"St-Jean Pied de Port",43.6487,1.48476,0,0,OTL:SA:1970324837186737,Europe/Paris,2,OTL, +OTL:SP:3377699720884333,1,"Mandelieu",43.6486,1.493,0,0,OTL:SA:1970324837186739,Europe/Paris,0,OTL, +OTL:SP:3377699720884334,1,"Mandelieu",43.6485,1.49119,0,0,OTL:SA:1970324837186739,Europe/Paris,0,OTL, +OTL:SP:3377699720884335,1,"Grasse",43.6495,1.49642,0,0,OTL:SA:1970324837186740,Europe/Paris,0,OTL, +OTL:SP:3377699720884336,1,"Grasse",43.6495,1.49635,0,0,OTL:SA:1970324837186740,Europe/Paris,0,OTL, +OTL:SP:3377699720884337,1,"Menton",43.6516,1.49761,0,0,OTL:SA:1970324837186741,Europe/Paris,2,OTL, +OTL:SP:3377699720884338,1,"Menton",43.6516,1.49763,0,0,OTL:SA:1970324837186741,Europe/Paris,2,OTL, +OTL:SP:3377699720884339,1,"Dancelle",43.6536,1.49924,0,0,OTL:SA:1970324837186742,Europe/Paris,2,OTL, +OTL:SP:3377699720884340,1,"Bessayre",43.6537,1.50124,0,0,OTL:SA:1970324837186743,Europe/Paris,2,OTL, +OTL:SP:3377699720884341,1,"Bessayre",43.6537,1.5013,0,0,OTL:SA:1970324837186743,Europe/Paris,0,OTL, +OTL:SP:3377699720884342,1,"Açores",43.654,1.50336,0,0,OTL:SA:1970324837186744,Europe/Paris,0,OTL, +OTL:SP:3377699720884343,1,"Açores",43.6539,1.50377,0,0,OTL:SA:1970324837186744,Europe/Paris,2,OTL, +OTL:SP:3377699720884344,1,"Renée Aspe",43.6538,1.50679,0,0,OTL:SA:1970324837186745,Europe/Paris,2,OTL, +OTL:SP:3377699720884345,1,"Renée Aspe",43.6538,1.50721,0,0,OTL:SA:1970324837186745,Europe/Paris,2,OTL, +OTL:SP:3377699720884346,1,"Flotis",43.6541,1.51055,0,0,OTL:SA:1970324837186746,Europe/Paris,0,OTL, +OTL:SP:3377699720884347,1,"Flotis",43.6541,1.51053,0,0,OTL:SA:1970324837186746,Europe/Paris,0,OTL, +OTL:SP:3377699720884348,1,"Imbertis",43.6594,1.51501,0,0,OTL:SA:1970324837186747,Europe/Paris,2,OTL, +OTL:SP:3377699720884349,1,"Imbertis",43.6589,1.51551,0,0,OTL:SA:1970324837186747,Europe/Paris,2,OTL, +OTL:SP:3377699720884350,1,"Stade",43.6613,1.51258,0,0,OTL:SA:1970324837186748,Europe/Paris,0,OTL, +OTL:SP:3377699720884351,1,"Stade",43.6615,1.51252,0,0,OTL:SA:1970324837186748,Europe/Paris,0,OTL, +OTL:SP:3377699720884352,1,"Blanqui",43.6638,1.50931,0,0,OTL:SA:1970324837186749,Europe/Paris,2,OTL, +OTL:SP:3377699720884353,1,"Blanqui",43.6633,1.50975,0,0,OTL:SA:1970324837186749,Europe/Paris,2,OTL, +OTL:SP:3377699720884354,1,"Belle Hôtesse",43.66,1.48922,0,0,OTL:SA:1970324837186751,Europe/Paris,0,OTL, +OTL:SP:3377699720884355,1,"Belle Hôtesse",43.66,1.48886,0,0,OTL:SA:1970324837186751,Europe/Paris,0,OTL, +OTL:SP:3377699720884356,1,"Mirabelles",43.661,1.49216,0,0,OTL:SA:1970324837186752,Europe/Paris,0,OTL, +OTL:SP:3377699720884357,1,"Mirabelles",43.661,1.49187,0,0,OTL:SA:1970324837186752,Europe/Paris,0,OTL, +OTL:SP:3377699720884358,1,"Coteaux",43.6621,1.49534,0,0,OTL:SA:1970324837186753,Europe/Paris,0,OTL, +OTL:SP:3377699720884359,1,"Coteaux",43.6622,1.49522,0,0,OTL:SA:1970324837186753,Europe/Paris,0,OTL, +OTL:SP:3377699720884360,1,"Clair Matin",43.664,1.50186,0,0,AEC:SA:01747,Europe/Paris,2,OTL, +OTL:SP:3377699720884361,1,"Clair Matin",43.6638,1.50095,0,0,AEC:SA:01747,Europe/Paris,2,OTL, +OTL:SP:3377699720884362,1,"Eglise St-Jean",43.6669,1.50278,0,0,OTL:SA:1970324837186755,Europe/Paris,0,OTL, +OTL:SP:3377699720884363,1,"Eglise St-Jean",43.6672,1.5026,0,0,OTL:SA:1970324837186755,Europe/Paris,0,OTL, +OTL:SP:3377699720884364,1,"Ecole St-Jean",43.669,1.49927,0,0,OTL:SA:1970324837186756,Europe/Paris,0,OTL, +OTL:SP:3377699720884365,1,"Ecole St-Jean",43.669,1.49956,0,0,OTL:SA:1970324837186756,Europe/Paris,0,OTL, +OTL:SP:3377699720884366,1,"Tamaris",43.6698,1.4973,0,0,OTL:SA:1970324837186757,Europe/Paris,0,OTL, +OTL:SP:3377699720884367,1,"Charmes",43.6711,1.49788,0,0,OTL:SA:1970324837186758,Europe/Paris,0,OTL, +OTL:SP:3377699720884368,1,"Montrabé",43.6667,1.50777,0,0,OTL:SA:1970324837186759,Europe/Paris,0,OTL, +OTL:SP:3377699720884369,1,"Montrabé",43.6662,1.50677,0,0,OTL:SA:1970324837186759,Europe/Paris,0,OTL, +OTL:SP:3377699720884370,1,"Charlary",43.6681,1.51164,0,0,OTL:SA:1970324837186760,Europe/Paris,2,OTL, +OTL:SP:3377699720884371,1,"Charlary",43.668,1.51118,0,0,OTL:SA:1970324837186760,Europe/Paris,2,OTL, +OTL:SP:3377699720884372,1,"Clos du Loup",43.6699,1.51571,0,0,OTL:SA:1970324837186761,Europe/Paris,0,OTL, +OTL:SP:3377699720884375,1,"Viste",43.6693,1.51741,0,0,OTL:SA:1970324837186762,Europe/Paris,0,OTL, +OTL:SP:3377699720884376,1,"Viste",43.6694,1.51733,0,0,OTL:SA:1970324837186762,Europe/Paris,0,OTL, +OTL:SP:3377699720884377,1,"Moulin",43.6683,1.52016,0,0,OTL:SA:1970324837186763,Europe/Paris,0,OTL, +OTL:SP:3377699720884378,1,"Moulin",43.6681,1.52014,0,0,OTL:SA:1970324837186763,Europe/Paris,0,OTL, +OTL:SP:3377699720884379,1,"Château",43.669,1.5266,0,0,OTL:SA:1970324837186764,Europe/Paris,0,OTL, +OTL:SP:3377699720884380,1,"Château",43.6689,1.52668,0,0,OTL:SA:1970324837186764,Europe/Paris,2,OTL, +OTL:SP:3377699720884383,1,"Rouergue",43.6757,1.52855,0,0,OTL:SA:1970324837186766,Europe/Paris,0,OTL, +OTL:SP:3377699720884384,1,"Rouergue",43.6757,1.52838,0,0,OTL:SA:1970324837186766,Europe/Paris,0,OTL, +OTL:SP:3377699720884385,1,"Pissebaque",43.6764,1.53988,0,0,OTL:SA:1970324837186767,Europe/Paris,0,OTL, +OTL:SP:3377699720884386,1,"Cammas",43.6755,1.54436,0,0,OTL:SA:1970324837186768,Europe/Paris,0,OTL, +OTL:SP:3377699720884387,1,"Rebel",43.6775,1.54287,0,0,OTL:SA:1970324837186769,Europe/Paris,0,OTL, +OTL:SP:3377699720884388,1,"Route d'Albi",43.6796,1.53909,0,0,AEC:SA:00445,Europe/Paris,0,OTL, +OTL:SP:3377699720884389,1,"Truffaut",43.6799,1.53783,0,0,OTL:SA:1970324837186771,Europe/Paris,0,OTL, +OTL:SP:3377699720884390,1,"Stade",43.6805,1.53343,0,0,OTL:SA:1970324837186772,Europe/Paris,2,OTL, +OTL:SP:3377699720884395,1,"Azalées",43.6641,1.4716,0,0,OTL:SA:1970324837186775,Europe/Paris,2,OTL, +OTL:SP:3377699720884396,1,"Azalées",43.6644,1.47198,0,0,OTL:SA:1970324837186775,Europe/Paris,2,OTL, +OTL:SP:3377699720884397,1,"Cornaudric",43.6658,1.47296,0,0,OTL:SA:1970324837186776,Europe/Paris,0,OTL, +OTL:SP:3377699720884398,1,"Cornaudric",43.6654,1.47266,0,0,OTL:SA:1970324837186776,Europe/Paris,0,OTL, +OTL:SP:3377699720884399,1,"Victor Hugo",43.6766,1.47758,0,0,OTL:SA:1970324837186777,Europe/Paris,2,OTL, +OTL:SP:3377699720884400,1,"Victor Hugo",43.6764,1.47807,0,0,OTL:SA:1970324837186777,Europe/Paris,2,OTL, +OTL:SP:3377699720884401,1,"Bordettes",43.68,1.47781,0,0,OTL:SA:1970324837186778,Europe/Paris,2,OTL, +OTL:SP:3377699720884402,1,"Bordettes",43.6791,1.47701,0,0,OTL:SA:1970324837186778,Europe/Paris,2,OTL, +OTL:SP:3377699720884403,1,"Mottes",43.6816,1.48053,0,0,OTL:SA:1970324837186779,Europe/Paris,0,OTL, +OTL:SP:3377699720884404,1,"Mottes",43.6815,1.48022,0,0,OTL:SA:1970324837186779,Europe/Paris,0,OTL, +OTL:SP:3377699720884405,1,"Massebiau",43.6826,1.48459,0,0,OTL:SA:1970324837186780,Europe/Paris,0,OTL, +OTL:SP:3377699720884406,1,"Massebiau",43.6824,1.48234,0,0,OTL:SA:1970324837186780,Europe/Paris,0,OTL, +OTL:SP:3377699720884409,1,"Frosines",43.6863,1.48717,0,0,OTL:SA:1970324837186781,Europe/Paris,2,OTL, +OTL:SP:3377699720884410,1,"Frosines",43.686,1.48698,0,0,OTL:SA:1970324837186781,Europe/Paris,2,OTL, +OTL:SP:3377699720884419,1,"Le Fossat",43.6886,1.50386,0,0,OTL:SA:1970324837186786,Europe/Paris,2,OTL, +OTL:SP:3377699720884420,1,"Le Fossat",43.6888,1.50402,0,0,OTL:SA:1970324837186786,Europe/Paris,2,OTL, +OTL:SP:3377699720884423,1,"Domaniaux",43.6928,1.50917,0,0,OTL:SA:1970324837186788,Europe/Paris,2,OTL, +OTL:SP:3377699720884424,1,"Domaniaux",43.6927,1.50914,0,0,OTL:SA:1970324837186788,Europe/Paris,2,OTL, +OTL:SP:3377699720884425,1,"Barranquet",43.6925,1.5123,0,0,OTL:SA:1970324837186789,Europe/Paris,2,OTL, +OTL:SP:3377699720884426,1,"Barranquet",43.6924,1.51237,0,0,OTL:SA:1970324837186789,Europe/Paris,2,OTL, +OTL:SP:3377699720884427,1,"Cimetière Lapeyrouse",43.6909,1.51551,0,0,OTL:SA:1970324837186790,Europe/Paris,2,OTL, +OTL:SP:3377699720884428,1,"Cimetière Lapeyrouse",43.6908,1.51549,0,0,OTL:SA:1970324837186790,Europe/Paris,2,OTL, +OTL:SP:3377699720884429,1,"Heredia",43.6123,1.46746,0,0,OTL:SA:1970324837186791,Europe/Paris,2,OTL, +OTL:SP:3377699720884430,1,"Heredia",43.6124,1.46725,0,0,OTL:SA:1970324837186791,Europe/Paris,2,OTL, +OTL:SP:3377699720884431,1,"Jean Chaubet",43.6038,1.47478,0,0,OTL:SA:1970324837186792,Europe/Paris,2,OTL, +OTL:SP:3377699720884432,1,"Jean Chaubet",43.6038,1.47498,0,0,OTL:SA:1970324837186792,Europe/Paris,2,OTL, +OTL:SP:3377699720884434,1,"Nollet",43.5901,1.51223,0,0,OTL:SA:1970324837186794,Europe/Paris,2,OTL, +OTL:SP:3377699720884435,1,"Nollet",43.591,1.51019,0,0,OTL:SA:1970324837186794,Europe/Paris,2,OTL, +OTL:SP:3377699720884440,1,"Tournesols",43.5838,1.51323,0,0,OTL:SA:1970324838935581,Europe/Paris,2,OTL, +OTL:SP:3377699720884441,1,"Tournesols",43.5838,1.51311,0,0,OTL:SA:1970324838935581,Europe/Paris,2,OTL, +OTL:SP:3377699720884442,1,"Pyrénées",43.5857,1.52503,0,0,OTL:SA:1970324837186798,Europe/Paris,2,OTL, +OTL:SP:3377699720884443,1,"Pyrénées",43.5857,1.5256,0,0,OTL:SA:1970324837186798,Europe/Paris,0,OTL, +OTL:SP:3377699720884444,1,"Fonsegrives Centre",43.5854,1.52908,0,0,OTL:SA:1970324837186800,Europe/Paris,2,OTL, +OTL:SP:3377699720884447,1,"Fonsegrives Ginestière",43.5872,1.53914,0,0,AEC:SA:01579,Europe/Paris,2,OTL, +OTL:SP:3377699720884459,1,"Chêne Vert",43.5883,1.58289,0,0,OTL:SA:1970324837186808,Europe/Paris,0,OTL, +OTL:SP:3377699720884460,1,"Chêne Vert",43.5883,1.58247,0,0,OTL:SA:1970324837186808,Europe/Paris,0,OTL, +OTL:SP:3377699720884463,1,"ZI Drémil",43.5946,1.59235,0,0,OTL:SA:1970324837186810,Europe/Paris,2,OTL, +OTL:SP:3377699720884464,1,"ZI Drémil",43.5949,1.59262,0,0,OTL:SA:1970324837186810,Europe/Paris,2,OTL, +OTL:SP:3377699720884466,1,"Dufour",43.5858,1.4658,0,0,OTL:SA:1970324837186812,Europe/Paris,2,OTL, +OTL:SP:3377699720884467,1,"Dufour",43.5854,1.46599,0,0,OTL:SA:1970324837186812,Europe/Paris,2,OTL, +OTL:SP:3377699720884470,1,"Buissonnets",43.5828,1.47313,0,0,OTL:SA:1970324837186814,Europe/Paris,2,OTL, +OTL:SP:3377699720884473,1,"Six Avril",43.5813,1.47605,0,0,OTL:SA:1970324837186816,Europe/Paris,2,OTL, +OTL:SP:3377699720884474,1,"Six Avril",43.5815,1.47643,0,0,OTL:SA:1970324837186816,Europe/Paris,2,OTL, +OTL:SP:3377699720884475,1,"Clinique Languedoc",43.5778,1.48583,0,0,OTL:SA:1970324837186817,Europe/Paris,2,OTL, +OTL:SP:3377699720884476,1,"Clinique Languedoc",43.5776,1.4856,0,0,OTL:SA:1970324837186817,Europe/Paris,2,OTL, +OTL:SP:3377699720884477,1,"Ormeau",43.5794,1.48287,0,0,OTL:SA:1970324837186818,Europe/Paris,2,OTL, +OTL:SP:3377699720884479,1,"Bajac",43.5754,1.48871,0,0,OTL:SA:1970324837186820,Europe/Paris,2,OTL, +OTL:SP:3377699720884480,1,"Bajac",43.576,1.48855,0,0,OTL:SA:1970324837186820,Europe/Paris,2,OTL, +OTL:SP:3377699720884481,1,"Lafaurie",43.574,1.49145,0,0,OTL:SA:1970324837186821,Europe/Paris,2,OTL, +OTL:SP:3377699720884482,1,"Lafaurie",43.574,1.49147,0,0,OTL:SA:1970324837186821,Europe/Paris,2,OTL, +OTL:SP:3377699720884483,1,"Route de Revel",43.5691,1.50362,0,0,OTL:SA:1970324837186822,Europe/Paris,2,OTL, +OTL:SP:3377699720884484,1,"Route de Revel",43.5686,1.50402,0,0,OTL:SA:1970324837186822,Europe/Paris,2,OTL, +OTL:SP:3377699720884485,1,"Cayras",43.5693,1.51342,0,0,OTL:SA:1970324837186823,Europe/Paris,0,OTL, +OTL:SP:3377699720884486,1,"Cayras",43.569,1.5127,0,0,OTL:SA:1970324837186823,Europe/Paris,2,OTL, +OTL:SP:3377699720884487,1,"Catala",43.5694,1.51697,0,0,OTL:SA:1970324837186824,Europe/Paris,2,OTL, +OTL:SP:3377699720884488,1,"Catala",43.5694,1.51675,0,0,OTL:SA:1970324837186824,Europe/Paris,2,OTL, +OTL:SP:3377699720884489,1,"Gymnase",43.5682,1.52069,0,0,OTL:SA:1970324837186825,Europe/Paris,2,OTL, +OTL:SP:3377699720884490,1,"Gymnase",43.5681,1.52067,0,0,OTL:SA:1970324837186825,Europe/Paris,2,OTL, +OTL:SP:3377699720884491,1,"St-Orens Ctre Cial",43.5651,1.51935,0,0,OTL:SA:1970324837186826,Europe/Paris,2,OTL, +OTL:SP:3377699720884492,1,"St-Orens Ctre Cial",43.5658,1.51949,0,0,OTL:SA:1970324837186826,Europe/Paris,0,OTL, +OTL:SP:3377699720884493,1,"Champs Pinsons",43.5634,1.51837,0,0,OTL:SA:1970324837186827,Europe/Paris,2,OTL, +OTL:SP:3377699720884494,1,"Champs Pinsons",43.5638,1.51851,0,0,OTL:SA:1970324837186827,Europe/Paris,0,OTL, +OTL:SP:3377699720884497,1,"Marqueille",43.5624,1.52053,0,0,OTL:SA:1970324837186828,Europe/Paris,2,OTL, +OTL:SP:3377699720884498,1,"Marqueille",43.5623,1.52127,0,0,OTL:SA:1970324837186828,Europe/Paris,0,OTL, +OTL:SP:3377699720884499,1,"Cammas",43.5622,1.5244,0,0,OTL:SA:1970324837186829,Europe/Paris,2,OTL, +OTL:SP:3377699720884500,1,"Cammas",43.562,1.5244,0,0,OTL:SA:1970324837186829,Europe/Paris,2,OTL, +OTL:SP:3377699720884501,1,"Vallon",43.5612,1.52738,0,0,OTL:SA:1970324837186830,Europe/Paris,2,OTL, +OTL:SP:3377699720884502,1,"Vallon",43.5612,1.52716,0,0,OTL:SA:1970324837186830,Europe/Paris,2,OTL, +OTL:SP:3377699720884503,1,"Partanaïs",43.5604,1.53004,0,0,OTL:SA:1970324837186831,Europe/Paris,2,OTL, +OTL:SP:3377699720884504,1,"Partanaïs",43.5605,1.52993,0,0,OTL:SA:1970324837186831,Europe/Paris,2,OTL, +OTL:SP:3377699720884505,1,"Coustou",43.5595,1.53476,0,0,OTL:SA:1970324837186832,Europe/Paris,2,OTL, +OTL:SP:3377699720884506,1,"Coustou",43.5599,1.53441,0,0,OTL:SA:1970324837186832,Europe/Paris,0,OTL, +OTL:SP:3377699720884507,1,"Querqueille",43.5582,1.53867,0,0,OTL:SA:1970324837186833,Europe/Paris,2,OTL, +OTL:SP:3377699720884508,1,"Querqueille",43.5582,1.53878,0,0,OTL:SA:1970324837186833,Europe/Paris,2,OTL, +OTL:SP:3377699720884509,1,"Carabènes",43.5571,1.54235,0,0,OTL:SA:1970324837186834,Europe/Paris,2,OTL, +OTL:SP:3377699720884510,1,"Carabènes",43.5568,1.54347,0,0,OTL:SA:1970324837186834,Europe/Paris,2,OTL, +OTL:SP:3377699720884511,1,"Place du Souvenir",43.5536,1.54286,0,0,OTL:SA:1970324837186835,Europe/Paris,0,OTL, +OTL:SP:3377699720884513,1,"Fondargent",43.5615,1.51839,0,0,OTL:SA:1970324837186836,Europe/Paris,2,OTL, +OTL:SP:3377699720884514,1,"Fondargent",43.5617,1.51854,0,0,OTL:SA:1970324837186836,Europe/Paris,2,OTL, +OTL:SP:3377699720884515,1,"Galapagos",43.5601,1.51798,0,0,OTL:SA:1970324837186837,Europe/Paris,2,OTL, +OTL:SP:3377699720884516,1,"Galapagos",43.56,1.51815,0,0,OTL:SA:1970324837186837,Europe/Paris,2,OTL, +OTL:SP:3377699720884517,1,"Iles",43.558,1.51908,0,0,OTL:SA:1970324837186838,Europe/Paris,2,OTL, +OTL:SP:3377699720884518,1,"Iles",43.5581,1.51908,0,0,OTL:SA:1970324837186838,Europe/Paris,2,OTL, +OTL:SP:3377699720884519,1,"Saphirs",43.5558,1.52064,0,0,OTL:SA:1970324837186839,Europe/Paris,2,OTL, +OTL:SP:3377699720884520,1,"Saphirs",43.5557,1.52067,0,0,OTL:SA:1970324837186839,Europe/Paris,2,OTL, +OTL:SP:3377699720884521,1,"Chênaie",43.5539,1.52416,0,0,OTL:SA:1970324837186840,Europe/Paris,2,OTL, +OTL:SP:3377699720884522,1,"Chênaie",43.554,1.52417,0,0,OTL:SA:1970324837186840,Europe/Paris,2,OTL, +OTL:SP:3377699720884523,1,"Beauvoir",43.5556,1.52636,0,0,OTL:SA:1970324837186841,Europe/Paris,0,OTL, +OTL:SP:3377699720884524,1,"Beauvoir",43.5554,1.52634,0,0,OTL:SA:1970324837186841,Europe/Paris,2,OTL, +OTL:SP:3377699720884525,1,"Bernières",43.557,1.52803,0,0,OTL:SA:1970324840530376,Europe/Paris,0,OTL, +OTL:SP:3377699720884526,1,"Bernières",43.5569,1.52804,0,0,OTL:SA:1970324840530376,Europe/Paris,0,OTL, +OTL:SP:3377699720884527,1,"Gameville",43.5496,1.53579,0,0,AEC:SA:01821,Europe/Paris,2,OTL, +OTL:SP:3377699720884528,1,"Gameville",43.5497,1.53559,0,0,AEC:SA:01821,Europe/Paris,2,OTL, +OTL:SP:3377699720884531,1,"Mûriers",43.5496,1.53833,0,0,OTL:SA:1970324837186845,Europe/Paris,2,OTL, +OTL:SP:3377699720884532,1,"Mûriers",43.5496,1.53848,0,0,OTL:SA:1970324837186845,Europe/Paris,2,OTL, +OTL:SP:3377699720884533,1,"Clinique",43.5435,1.54148,0,0,OTL:SA:1970324837186846,Europe/Paris,2,OTL, +OTL:SP:3377699720884534,1,"Clinique",43.5432,1.54177,0,0,OTL:SA:1970324837186846,Europe/Paris,2,OTL, +OTL:SP:3377699720884535,1,"Orée du Bois",43.5416,1.54459,0,0,OTL:SA:1970324837186847,Europe/Paris,2,OTL, +OTL:SP:3377699720884536,1,"Orée du Bois",43.5425,1.54322,0,0,OTL:SA:1970324837186847,Europe/Paris,2,OTL, +OTL:SP:3377699720884537,1,"Poste de St-Orens",43.5545,1.53219,0,0,OTL:SA:1970324837186849,Europe/Paris,2,OTL, +OTL:SP:3377699720884538,1,"Poste de St-Orens",43.5546,1.53184,0,0,OTL:SA:1970324837186849,Europe/Paris,2,OTL, +OTL:SP:3377699720884543,1,"Ch. de Malepère",43.5617,1.50233,0,0,OTL:SA:1970329131942088,Europe/Paris,0,OTL, +OTL:SP:3377699720884544,1,"Ch. de Malepère",43.561,1.50237,0,0,OTL:SA:1970329131942088,Europe/Paris,2,OTL, +OTL:SP:3377699720884545,1,"Monso",43.5593,1.50301,0,0,OTL:SA:1970324837186853,Europe/Paris,2,OTL, +OTL:SP:3377699720884546,1,"Grande Borde",43.5546,1.50621,0,0,OTL:SA:1970324837186854,Europe/Paris,2,OTL, +OTL:SP:3377699720884547,1,"Grande Borde",43.5543,1.50652,0,0,OTL:SA:1970324837186854,Europe/Paris,2,OTL, +OTL:SP:3377699720884548,1,"Planck",43.5511,1.51035,0,0,OTL:SA:1970324837186855,Europe/Paris,2,OTL, +OTL:SP:3377699720884549,1,"Planck",43.552,1.50949,0,0,OTL:SA:1970324837186855,Europe/Paris,2,OTL, +OTL:SP:3377699720884550,1,"Tolosane",43.5466,1.51083,0,0,OTL:SA:1970324837186857,Europe/Paris,2,OTL, +OTL:SP:3377699720884551,1,"Tolosane",43.5465,1.51058,0,0,OTL:SA:1970324837186857,Europe/Paris,2,OTL, +OTL:SP:3377699720884552,1,"Rostand",43.5432,1.51217,0,0,OTL:SA:1970324837186858,Europe/Paris,2,OTL, +OTL:SP:3377699720884553,1,"Rostand",43.5436,1.51188,0,0,OTL:SA:1970324837186858,Europe/Paris,0,OTL, +OTL:SP:3377699720884554,1,"Village d'Entreprise",43.5421,1.51176,0,0,OTL:SA:1970324837186859,Europe/Paris,2,OTL, +OTL:SP:3377699720884555,1,"Village d'Entreprise",43.5422,1.5117,0,0,OTL:SA:1970324837186859,Europe/Paris,2,OTL, +OTL:SP:3377699720884556,1,"De Gennes",43.5409,1.51241,0,0,OTL:SA:1970324837186860,Europe/Paris,0,OTL, +OTL:SP:3377699720884557,1,"De Gennes",43.541,1.51256,0,0,OTL:SA:1970324837186860,Europe/Paris,2,OTL, +OTL:SP:3377699720884558,1,"Campus de Bissy",43.538,1.51648,0,0,OTL:SA:1970324837186861,Europe/Paris,2,OTL, +OTL:SP:3377699720884559,1,"Campus de Bissy",43.539,1.51465,0,0,OTL:SA:1970324837186861,Europe/Paris,2,OTL, +OTL:SP:3377699720884560,1,"Périgord",43.5353,1.52002,0,0,OTL:SA:1970324837186862,Europe/Paris,2,OTL, +OTL:SP:3377699720884561,1,"Périgord",43.5352,1.52015,0,0,OTL:SA:1970324837186862,Europe/Paris,2,OTL, +OTL:SP:3377699720884565,1,"Occitanie",43.5295,1.53112,0,0,OTL:SA:1970324837186865,Europe/Paris,0,OTL, +OTL:SP:3377699720884566,1,"Occitanie",43.5295,1.53103,0,0,OTL:SA:1970324837186865,Europe/Paris,0,OTL, +OTL:SP:3377699720884569,1,"Brassens",43.5345,1.53661,0,0,OTL:SA:1970324837186867,Europe/Paris,0,OTL, +OTL:SP:3377699720884570,1,"Brassens",43.5343,1.53688,0,0,OTL:SA:1970324837186867,Europe/Paris,0,OTL, +OTL:SP:3377699720884571,1,"Fontaine du Laurier",43.5366,1.53443,0,0,OTL:SA:1970324837186868,Europe/Paris,2,OTL, +OTL:SP:3377699720884572,1,"Fontaine du Laurier",43.5361,1.53509,0,0,OTL:SA:1970324837186868,Europe/Paris,2,OTL, +OTL:SP:3377699720884573,1,"Tricou",43.5384,1.53202,0,0,OTL:SA:1970324837186869,Europe/Paris,2,OTL, +OTL:SP:3377699720884574,1,"Tricou",43.5385,1.53174,0,0,OTL:SA:1970324837186869,Europe/Paris,0,OTL, +OTL:SP:3377699720884575,1,"Canteloup",43.5413,1.53185,0,0,OTL:SA:1970324837186870,Europe/Paris,0,OTL, +OTL:SP:3377699720884576,1,"Canteloup",43.5414,1.53181,0,0,OTL:SA:1970324837186870,Europe/Paris,0,OTL, +OTL:SP:3377699720884577,1,"Armentières",43.5717,1.48675,0,0,OTL:SA:1970324837186871,Europe/Paris,2,OTL, +OTL:SP:3377699720884578,1,"Armentières",43.5718,1.48655,0,0,OTL:SA:1970324837186871,Europe/Paris,2,OTL, +OTL:SP:3377699720884579,1,"Payssat",43.5705,1.48794,0,0,OTL:SA:1970324837186872,Europe/Paris,0,OTL, +OTL:SP:3377699720884580,1,"Payssat",43.5709,1.48735,0,0,OTL:SA:1970324837186872,Europe/Paris,2,OTL, +OTL:SP:3377699720884583,1,"Rodier",43.5669,1.48985,0,0,OTL:SA:1970324837186874,Europe/Paris,0,OTL, +OTL:SP:3377699720884584,1,"Rodier",43.5662,1.48934,0,0,OTL:SA:1970324837186874,Europe/Paris,0,OTL, +OTL:SP:3377699720884585,1,"Villet",43.5646,1.49057,0,0,OTL:SA:1970324837186875,Europe/Paris,2,OTL, +OTL:SP:3377699720884586,1,"Villet",43.5643,1.49083,0,0,OTL:SA:1970324837186875,Europe/Paris,2,OTL, +OTL:SP:3377699720884590,1,"DR PMU",43.5469,1.50451,0,0,OTL:SA:1970324837186878,Europe/Paris,2,OTL, +OTL:SP:3377699720884591,1,"DR PMU",43.5471,1.50484,0,0,OTL:SA:1970324837186878,Europe/Paris,2,OTL, +OTL:SP:3377699720884592,1,"Commerce",43.5499,1.50248,0,0,OTL:SA:1970324837186879,Europe/Paris,2,OTL, +OTL:SP:3377699720884593,1,"Commerce",43.5499,1.5018,0,0,OTL:SA:1970324837186879,Europe/Paris,0,OTL, +OTL:SP:3377699720884595,1,"High Tech Innopole",43.5461,1.5054,0,0,OTL:SA:1970324837186880,Europe/Paris,0,OTL, +OTL:SP:3377699720884596,1,"High Tech Innopole",43.5462,1.50561,0,0,OTL:SA:1970324837186880,Europe/Paris,0,OTL, +OTL:SP:3377699720884598,1,"Ctre Cial Labège",43.5495,1.50598,0,0,OTL:SA:1970324837186881,Europe/Paris,2,OTL, +OTL:SP:3377699720884601,1,"Labourgade",43.5461,1.51636,0,0,OTL:SA:1970324837186882,Europe/Paris,2,OTL, +OTL:SP:3377699720884602,1,"Labourgade",43.5462,1.51633,0,0,OTL:SA:1970324837186882,Europe/Paris,2,OTL, +OTL:SP:3377699720884603,1,"Route de Labège",43.5428,1.52053,0,0,OTL:SA:1970324837186883,Europe/Paris,2,OTL, +OTL:SP:3377699720884604,1,"Route de Labège",43.5428,1.52045,0,0,OTL:SA:1970324837186883,Europe/Paris,2,OTL, +OTL:SP:3377699720884605,1,"Chêne Vert",43.5412,1.52245,0,0,OTL:SA:1970324837186884,Europe/Paris,2,OTL, +OTL:SP:3377699720884606,1,"Chêne Vert",43.541,1.52239,0,0,OTL:SA:1970324837186884,Europe/Paris,2,OTL, +OTL:SP:3377699720884607,1,"Guiraudie-Aufève",43.5387,1.52538,0,0,OTL:SA:1970324837186885,Europe/Paris,0,OTL, +OTL:SP:3377699720884608,1,"Guiraudie-Aufève",43.5391,1.52493,0,0,OTL:SA:1970324837186885,Europe/Paris,0,OTL, +OTL:SP:3377699720884609,1,"Route de Castanet",43.5372,1.52735,0,0,OTL:SA:1970324837186886,Europe/Paris,0,OTL, +OTL:SP:3377699720884610,1,"Route de Castanet",43.5372,1.52744,0,0,OTL:SA:1970324837186886,Europe/Paris,0,OTL, +OTL:SP:3377699720884611,1,"Beau Séjour",43.5345,1.53108,0,0,OTL:SA:1970324837186887,Europe/Paris,2,OTL, +OTL:SP:3377699720884612,1,"Beau Séjour",43.5347,1.5308,0,0,OTL:SA:1970324837186887,Europe/Paris,0,OTL, +OTL:SP:3377699720884613,1,"Payssière",43.5325,1.53352,0,0,OTL:SA:1970324837186888,Europe/Paris,2,OTL, +OTL:SP:3377699720884614,1,"Payssière",43.5332,1.53282,0,0,OTL:SA:1970324837186888,Europe/Paris,2,OTL, +OTL:SP:3377699720884615,1,"Chante Caille",43.5281,1.53771,0,0,OTL:SA:1970324837186889,Europe/Paris,0,OTL, +OTL:SP:3377699720884616,1,"Chante Caille",43.528,1.53827,0,0,OTL:SA:1970324837186889,Europe/Paris,0,OTL, +OTL:SP:3377699720884617,1,"Troubadours",43.5263,1.5397,0,0,OTL:SA:1970324837186890,Europe/Paris,2,OTL, +OTL:SP:3377699720884618,1,"Troubadours",43.5259,1.53983,0,0,OTL:SA:1970324837186890,Europe/Paris,2,OTL, +OTL:SP:3377699720884619,1,"Cousquille",43.5181,1.54636,0,0,OTL:SA:1970324837186891,Europe/Paris,0,OTL, +OTL:SP:3377699720884620,1,"Cousquille",43.5183,1.54596,0,0,OTL:SA:1970324837186891,Europe/Paris,0,OTL, +OTL:SP:3377699720884621,1,"En Poutet",43.5174,1.54853,0,0,OTL:SA:1970324837186892,Europe/Paris,2,OTL, +OTL:SP:3377699720884622,1,"En Poutet",43.5176,1.5484,0,0,OTL:SA:1970324837186892,Europe/Paris,0,OTL, +OTL:SP:3377699720884623,1,"Lauragais",43.5158,1.55229,0,0,OTL:SA:1970324837186893,Europe/Paris,2,OTL, +OTL:SP:3377699720884624,1,"Lauragais",43.5159,1.55207,0,0,OTL:SA:1970324837186893,Europe/Paris,2,OTL, +OTL:SP:3377699720884625,1,"Borde Haute",43.5137,1.55638,0,0,OTL:SA:1970324837186894,Europe/Paris,2,OTL, +OTL:SP:3377699720884626,1,"Borde Haute",43.5142,1.55571,0,0,OTL:SA:1970324837186894,Europe/Paris,2,OTL, +OTL:SP:3377699720884627,1,"Ctre Cial Escalquens",43.5147,1.55853,0,0,OTL:SA:1970324837186895,Europe/Paris,0,OTL, +OTL:SP:3377699720884628,1,"Ctre Cial Escalquens",43.5146,1.55841,0,0,OTL:SA:1970324837186895,Europe/Paris,2,OTL, +OTL:SP:3377699720884629,1,"Pastel",43.516,1.55971,0,0,OTL:SA:1970324837186896,Europe/Paris,2,OTL, +OTL:SP:3377699720884630,1,"Pastel",43.516,1.55974,0,0,OTL:SA:1970324837186896,Europe/Paris,0,OTL, +OTL:SP:3377699720884632,1,"La Place",43.524,1.56328,0,0,OTL:SA:1970324837186898,Europe/Paris,2,OTL, +OTL:SP:3377699720884633,1,"La Place",43.5236,1.56283,0,0,OTL:SA:1970324837186898,Europe/Paris,2,OTL, +OTL:SP:3377699720884638,1,"Lesperous",43.5298,1.55384,0,0,OTL:SA:1970324837186900,Europe/Paris,0,OTL, +OTL:SP:3377699720884639,1,"Lesperous",43.5296,1.55431,0,0,OTL:SA:1970324837186900,Europe/Paris,0,OTL, +OTL:SP:3377699720884640,1,"Quai de Tounis",43.5973,1.44025,0,0,OTL:SA:1970324837186901,Europe/Paris,2,OTL, +OTL:SP:3377699720884641,1,"Quai de Tounis",43.5973,1.44028,0,0,OTL:SA:1970324837186901,Europe/Paris,2,OTL, +OTL:SP:3377699720884642,1,"Garonnette",43.5955,1.44049,0,0,OTL:SA:1970324837186902,Europe/Paris,2,OTL, +OTL:SP:3377699720884643,1,"Garonnette",43.5952,1.44074,0,0,OTL:SA:1970324837186902,Europe/Paris,2,OTL, +OTL:SP:3377699720884644,1,"Chaussée",43.5933,1.44271,0,0,OTL:SA:1970324837186903,Europe/Paris,2,OTL, +OTL:SP:3377699720884645,1,"Chaussée",43.5935,1.44221,0,0,OTL:SA:1970324837186903,Europe/Paris,2,OTL, +OTL:SP:3377699720884646,1,"Daste",43.5819,1.43885,0,0,OTL:SA:1970324837186904,Europe/Paris,2,OTL, +OTL:SP:3377699720884647,1,"Daste",43.5811,1.43809,0,0,OTL:SA:1970324837186904,Europe/Paris,2,OTL, +OTL:SP:3377699720884648,1,"Empalot Sud",43.5774,1.43752,0,0,OTL:SA:1970324837186905,Europe/Paris,2,OTL, +OTL:SP:3377699720884649,1,"Empalot Sud",43.5775,1.437,0,0,OTL:SA:1970324837186905,Europe/Paris,2,OTL, +OTL:SP:3377699720884654,1,"Ecole Jules Julien",43.5761,1.45542,0,0,OTL:SA:1970324837186907,Europe/Paris,2,OTL, +OTL:SP:3377699720884655,1,"Ecole Jules Julien",43.5756,1.45561,0,0,OTL:SA:1970324837186907,Europe/Paris,2,OTL, +OTL:SP:3377699720884656,1,"Libellules",43.5744,1.45743,0,0,OTL:SA:1970324837186908,Europe/Paris,2,OTL, +OTL:SP:3377699720884657,1,"Libellules",43.5743,1.458,0,0,OTL:SA:1970324837186908,Europe/Paris,2,OTL, +OTL:SP:3377699720884659,1,"Hôpital des Enfants",43.6114,1.40341,0,0,OTL:SA:1970324837186910,Europe/Paris,2,OTL, +OTL:SP:3377699720884660,1,"Hôpital des Enfants",43.6109,1.40436,0,0,OTL:SA:1970324837186910,Europe/Paris,0,OTL, +OTL:SP:3377699720884665,1,"Occitanie",43.5436,1.47895,0,0,OTL:SA:1970324837186913,Europe/Paris,0,OTL, +OTL:SP:3377699720884666,1,"Occitanie",43.5437,1.47902,0,0,OTL:SA:1970324837186913,Europe/Paris,0,OTL, +OTL:SP:3377699720884673,1,"Corail",43.5527,1.52356,0,0,OTL:SA:1970324837186919,Europe/Paris,2,OTL, +OTL:SP:3377699720884674,1,"Corail",43.5529,1.52403,0,0,OTL:SA:1970324837186919,Europe/Paris,2,OTL, +OTL:SP:3377699720884675,1,"Vestales",43.5511,1.51946,0,0,OTL:SA:1970324837186920,Europe/Paris,0,OTL, +OTL:SP:3377699720884676,1,"Vestales",43.5509,1.51998,0,0,OTL:SA:1970324837186920,Europe/Paris,2,OTL, +OTL:SP:3377699720884678,1,"Bouloc",43.5858,1.46315,0,0,OTL:SA:1970324837186922,Europe/Paris,2,OTL, +OTL:SP:3377699720884679,1,"Soupetard Salonique",43.6094,1.47053,0,0,OTL:SA:1970324837186923,Europe/Paris,2,OTL, +OTL:SP:3377699720884680,1,"Soupetard Salonique",43.6094,1.47077,0,0,OTL:SA:1970324837186923,Europe/Paris,2,OTL, +OTL:SP:3377699720884683,1,"Malepère",43.5679,1.50603,0,0,OTL:SA:1970324837186852,Europe/Paris,2,OTL, +OTL:SP:3377699720884684,1,"Malepère",43.5675,1.50611,0,0,OTL:SA:1970324837186852,Europe/Paris,2,OTL, +OTL:SP:3377699720884685,1,"Coubertin",43.7208,1.41244,0,0,OTL:SA:1970324837186926,Europe/Paris,2,OTL, +OTL:SP:3377699720884687,1,"Marcaissonne",43.5671,1.50903,0,0,OTL:SA:1970324837186928,Europe/Paris,0,OTL, +OTL:SP:3377699720884688,1,"Marcaissonne",43.5671,1.5092,0,0,OTL:SA:1970324837186928,Europe/Paris,0,OTL, +OTL:SP:3377699720884689,1,"Marly",43.6264,1.39856,0,0,OTL:SA:1970324837186929,Europe/Paris,2,OTL, +OTL:SP:3377699720884690,1,"Marly",43.6263,1.39849,0,0,OTL:SA:1970324837186929,Europe/Paris,2,OTL, +OTL:SP:3377699720884691,1,"Monastère",43.6295,1.39759,0,0,OTL:SA:1970324837186930,Europe/Paris,2,OTL, +OTL:SP:3377699720885291,1,"ZI Montredon",43.6382,1.50056,0,0,OTL:SA:1970324837187524,Europe/Paris,0,OTL, +OTL:SP:3377699720885293,1,"Logis Vieux",43.6434,1.52107,0,0,OTL:SA:1970324837187526,Europe/Paris,0,OTL, +OTL:SP:3377699720885345,1,"Antibes",43.6479,1.48971,0,0,OTL:SA:1970324837187576,Europe/Paris,0,OTL, +OTL:SP:3377699720885346,1,"Antibes",43.6479,1.48977,0,0,OTL:SA:1970324837187576,Europe/Paris,0,OTL, +OTL:SP:3377699720885347,1,"AFPA",43.5588,1.4983,0,0,OTL:SA:1970324837187577,Europe/Paris,0,OTL, +OTL:SP:3377699720885348,1,"AFPA",43.5586,1.49748,0,0,OTL:SA:1970324837187577,Europe/Paris,2,OTL, +OTL:SP:3377699720885349,1,"Château Madron",43.5588,1.5023,0,0,OTL:SA:1970324837187578,Europe/Paris,0,OTL, +OTL:SP:3377699720885350,1,"Château Madron",43.5589,1.50244,0,0,OTL:SA:1970324837187578,Europe/Paris,0,OTL, +OTL:SP:3377699720885351,1,"INP",43.556,1.5036,0,0,OTL:SA:1970324837187579,Europe/Paris,2,OTL, +OTL:SP:3377699720885352,1,"INP",43.5561,1.5034,0,0,OTL:SA:1970324837187579,Europe/Paris,0,OTL, +OTL:SP:3377699720885353,1,"Arts",43.5536,1.50432,0,0,OTL:SA:1970324837187580,Europe/Paris,2,OTL, +OTL:SP:3377699720885354,1,"Arts",43.5535,1.50431,0,0,OTL:SA:1970324837187580,Europe/Paris,2,OTL, +OTL:SP:3377699720885355,1,"Carmin",43.5513,1.50153,0,0,OTL:SA:1970324837187581,Europe/Paris,2,OTL, +OTL:SP:3377699720885356,1,"Carmin",43.5515,1.50199,0,0,OTL:SA:1970324837187581,Europe/Paris,0,OTL, +OTL:SP:3377699720885633,1,"Le Broc",43.5312,1.57769,0,0,OTL:SA:1970324837187855,Europe/Paris,0,OTL, +OTL:SP:3377699720885634,1,"Le Broc",43.5308,1.57732,0,0,OTL:SA:1970324837187855,Europe/Paris,0,OTL, +OTL:SP:3377699720885637,1,"Cimetière Fourquevaux",43.4981,1.62424,0,0,OTL:SA:1970324837187857,Europe/Paris,2,OTL, +OTL:SP:3377699720885706,1,"Las Puntos",43.4486,1.60637,0,0,OTL:SA:1970324837187923,Europe/Paris,2,OTL, +OTL:SP:3377699720885755,1,"Grande Rue",43.455,1.61697,0,0,AEC:SA:00155,Europe/Paris,0,OTL, +OTL:SP:3377699720885792,1,"Bruxelles",43.4632,1.56861,0,0,OTL:SA:1970324837188002,Europe/Paris,0,OTL, +OTL:SP:3377699720885795,1,"Esplanade",43.4591,1.57443,0,0,OTL:SA:1970324837188005,Europe/Paris,0,OTL, +OTL:SP:3377699720885796,1,"Gendarmerie",43.456,1.58097,0,0,AEC:SA:01353,Europe/Paris,0,OTL, +OTL:SP:3377699720885798,1,"Ducharme",43.4997,1.51459,0,0,OTL:SA:1970324837188008,Europe/Paris,0,OTL, +OTL:SP:3377699720885799,1,"L'Espitalet",43.4969,1.51795,0,0,OTL:SA:1970324837188009,Europe/Paris,2,OTL, +OTL:SP:3377699720885800,1,"Ticaille",43.4468,1.59788,0,0,OTL:SA:1970324837188010,Europe/Paris,2,OTL, +OTL:SP:3377699720885816,1,"Ayguesvives Collège",43.4366,1.5991,0,0,OTL:SA:1970324837188026,Europe/Paris,2,OTL, +OTL:SP:3377699720886126,1,"Château d'eau",43.5763,1.27575,0,0,OTL:SA:1970324837188318,Europe/Paris,2,OTL, +OTL:SP:3377699720886237,1,"Larzac",43.5932,1.32346,0,0,OTL:SA:1970324837188429,Europe/Paris,0,OTL, +OTL:SP:3377699720886670,1,"Tuilerie",43.6165,1.29011,0,0,OTL:SA:1970324837188855,Europe/Paris,2,OTL, +OTL:SP:3377699720886671,1,"Château Cru",43.6129,1.26819,0,0,OTL:SA:1970324837188856,Europe/Paris,0,OTL, +OTL:SP:3377699720887122,1,"Mapad",43.6166,1.49531,0,0,OTL:SA:1970324837189277,Europe/Paris,2,OTL, +OTL:SP:3377699720887123,1,"Mapad",43.6162,1.49503,0,0,OTL:SA:1970324837189277,Europe/Paris,2,OTL, +OTL:SP:3377699720887124,1,"Le Carral",43.6187,1.49602,0,0,OTL:SA:1970324837189278,Europe/Paris,2,OTL, +OTL:SP:3377699720887125,1,"Le Carral",43.618,1.49571,0,0,OTL:SA:1970324837189278,Europe/Paris,0,OTL, +OTL:SP:3377699720887126,1,"Bicentenaire",43.6202,1.49636,0,0,OTL:SA:1970329131942272,Europe/Paris,0,OTL, +OTL:SP:3377699720887154,1,"De Gaulle",43.643,1.3867,0,0,OTL:SA:1970324837189307,Europe/Paris,2,OTL, +OTL:SP:3377699720887173,1,"Bûches",43.6358,1.3943,0,0,OTL:SA:1970324837189326,Europe/Paris,2,OTL, +OTL:SP:3377699720887184,1,"Doret",43.6344,1.3767,0,0,OTL:SA:1970324837189337,Europe/Paris,2,OTL, +OTL:SP:3377699720887204,1,"Petit Train",43.577,1.31937,0,0,OTL:SA:1970324837189357,Europe/Paris,0,OTL, +OTL:SP:3377699720887207,1,"Longchamp",43.5925,1.32135,0,0,OTL:SA:1970324837189360,Europe/Paris,0,OTL, +OTL:SP:3377699720887245,1,"Lycée Matisse",43.5309,1.35516,0,0,OTL:SA:1970324837189395,Europe/Paris,2,OTL, +OTL:SP:3377699720887247,1,"Goubard",43.5336,1.35923,0,0,OTL:SA:1970324837189397,Europe/Paris,0,OTL, +OTL:SP:3377699720887248,1,"Route de Portet",43.5353,1.36362,0,0,OTL:SA:1970324837189398,Europe/Paris,0,OTL, +OTL:SP:3377699720887282,1,"Jean Moulin",43.521,1.51072,0,0,OTL:SA:1970324837189431,Europe/Paris,0,OTL, +OTL:SP:3377699720887283,1,"Jean Moulin",43.5209,1.51077,0,0,OTL:SA:1970324837189431,Europe/Paris,0,OTL, +OTL:SP:3377699720887286,1,"INRA",43.5249,1.50035,0,0,OTL:SA:1970324837189434,Europe/Paris,2,OTL, +OTL:SP:3377699720887321,1,"Route de Cornebarrieu",43.6209,1.33583,0,0,OTL:SA:1970324837189470,Europe/Paris,2,OTL, +OTL:SP:3377699720887322,1,"Latécoère",43.6507,1.33348,0,0,OTL:SA:1970324837189471,Europe/Paris,2,OTL, +OTL:SP:3377699720887324,1,"St-Jean",43.6497,1.32307,0,0,OTL:SA:1970324837189473,Europe/Paris,2,OTL, +OTL:SP:3377699720887326,1,"Croix d'Alliez",43.6617,1.30556,0,0,OTL:SA:1970324837189475,Europe/Paris,2,OTL, +OTL:SP:3377699720887327,1,"Larroque",43.6657,1.29712,0,0,AEC:SA:01268,Europe/Paris,2,OTL, +OTL:SP:3377699720887336,1,"Périac",43.6719,1.32273,0,0,OTL:SA:1970324837189484,Europe/Paris,2,OTL, +OTL:SP:3377699720887338,1,"Cague L'Oule",43.6763,1.32231,0,0,AEC:SA:00066,Europe/Paris,2,OTL, +OTL:SP:3377699720887342,1,"Vignes",43.6908,1.32466,0,0,OTL:SA:1970324837189489,Europe/Paris,2,OTL, +OTL:SP:3377699720887343,1,"Vignes",43.6915,1.325,0,0,OTL:SA:1970324837189489,Europe/Paris,2,OTL, +OTL:SP:3377699720887704,1,"Estérel",43.5952,1.32617,0,0,OTL:SA:1970324837189844,Europe/Paris,2,OTL, +OTL:SP:3377699720887705,1,"Cabirol",43.597,1.32787,0,0,OTL:SA:1970324837189845,Europe/Paris,2,OTL, +OTL:SP:3377699720887706,1,"Tuileries",43.6012,1.33192,0,0,OTL:SA:1970324837189846,Europe/Paris,2,OTL, +OTL:SP:3377699720887720,1,"Piquemil",43.6124,1.31937,0,0,OTL:SA:1970324837189860,Europe/Paris,2,OTL, +OTL:SP:3377699720887726,1,"Stade Bendichou",43.6181,1.32571,0,0,OTL:SA:1970324837189866,Europe/Paris,2,OTL, +OTL:SP:3377699720888270,1,"Ecureuil",43.4884,1.49844,0,0,OTL:SA:1970324837798186,Europe/Paris,0,OTL, +OTL:SP:3377699720888272,1,"Mairie Lauzerville",43.5565,1.56449,0,0,OTL:SA:1970324837190328,Europe/Paris,0,OTL, +OTL:SP:3377699720888273,1,"Mairie Auzielle",43.5418,1.56668,0,0,OTL:SA:1970324837190329,Europe/Paris,2,OTL, +OTL:SP:3377699720888274,1,"Mairie Auzielle",43.5419,1.56603,0,0,OTL:SA:1970324837190329,Europe/Paris,2,OTL, +OTL:SP:3377699720888277,1,"Mairie Pechabou",43.5028,1.50861,0,0,OTL:SA:1970324837190331,Europe/Paris,2,OTL, +OTL:SP:3377699720888278,1,"Mairie Pechabou",43.5029,1.50946,0,0,OTL:SA:1970324837190331,Europe/Paris,0,OTL, +OTL:SP:3377699720888288,1,"Place du Château",43.491,1.51682,0,0,OTL:SA:1970324837190339,Europe/Paris,2,OTL, +OTL:SP:3377699720888289,1,"Le Moulin",43.4795,1.52597,0,0,OTL:SA:1970324837190340,Europe/Paris,2,OTL, +OTL:SP:3377699720888290,1,"Eglise Corronsac",43.4746,1.49485,0,0,OTL:SA:1970324837190341,Europe/Paris,2,OTL, +OTL:SP:3377699720888294,1,"La Chauge",43.6157,1.24983,0,0,OTL:SA:1970324837190345,Europe/Paris,0,OTL, +OTL:SP:3377699720888295,1,"Eglise Lauzerville",43.555,1.56661,0,0,OTL:SA:1970324837190346,Europe/Paris,0,OTL, +OTL:SP:3377699720888296,1,"Eglise Lauzerville",43.5547,1.56693,0,0,OTL:SA:1970324837190346,Europe/Paris,0,OTL, +OTL:SP:3377699720888297,1,"La Tuilerie",43.5531,1.56761,0,0,OTL:SA:1970324837190347,Europe/Paris,2,OTL, +OTL:SP:3377699720888298,1,"La Tuilerie",43.5513,1.56626,0,0,OTL:SA:1970324837190347,Europe/Paris,2,OTL, +OTL:SP:3377699720888299,1,"Complexe sportif Nambours",43.5468,1.56615,0,0,OTL:SA:1970324837190348,Europe/Paris,2,OTL, +OTL:SP:3377699720888300,1,"Complexe sportif Nambours",43.5471,1.56573,0,0,OTL:SA:1970324837190348,Europe/Paris,2,OTL, +OTL:SP:3377699720888305,1,"Ctre Cial Aussonne",43.6859,1.32197,0,0,OTL:SA:1970324837190353,Europe/Paris,2,OTL, +OTL:SP:3377699720888312,1,"Dewoitine",43.6474,1.33589,0,0,OTL:SA:1970324837190359,Europe/Paris,2,OTL, +OTL:SP:3377699720888313,1,"Centre de Détention",43.4821,1.32085,0,0,OTL:SA:1970324837190360,Europe/Paris,0,OTL, +OTL:SP:3377699720888314,1,"Aussonne Agassines",43.6956,1.32652,0,0,OTL:SA:1970324837190361,Europe/Paris,0,OTL, +OTL:SP:3377699720888316,1,"Eglise Pechabou",43.501,1.50952,0,0,OTL:SA:1970324837190363,Europe/Paris,0,OTL, +OTL:SP:3377699720888317,1,"Lader",43.4947,1.50021,0,0,OTL:SA:1970324837190364,Europe/Paris,2,OTL, +OTL:SP:3377699720888318,1,"Rodoloze d'en Haut",43.4843,1.51025,0,0,OTL:SA:1970324837190365,Europe/Paris,0,OTL, +OTL:SP:3377699720888319,1,"Mairie Pompertuzat",43.4883,1.51287,0,0,OTL:SA:1970324837190366,Europe/Paris,2,OTL, +OTL:SP:3377699720888320,1,"Lot Canelles",43.4849,1.52531,0,0,OTL:SA:1970324837190367,Europe/Paris,0,OTL, +OTL:SP:3377699720888322,1,"L'Enclos du Château",43.4792,1.52528,0,0,OTL:SA:1970324837190368,Europe/Paris,2,OTL, +OTL:SP:3377699720888323,1,"La Serre Beauregard",43.4766,1.50048,0,0,OTL:SA:1970324837190369,Europe/Paris,2,OTL, +OTL:SP:3377699720888324,1,"La Serre Beauregard",43.4768,1.50019,0,0,OTL:SA:1970324837190369,Europe/Paris,2,OTL, +OTL:SP:3377699720888325,1,"La Place",43.4727,1.4914,0,0,OTL:SA:1970324837190370,Europe/Paris,0,OTL, +OTL:SP:3377699720888326,1,"La Tour",43.462,1.50695,0,0,OTL:SA:1970324837190371,Europe/Paris,0,OTL, +OTL:SP:3377699720888327,1,"La Tour",43.4621,1.50729,0,0,OTL:SA:1970324837190371,Europe/Paris,0,OTL, +OTL:SP:3377699720888331,1,"Mairie Belberaud",43.5074,1.56874,0,0,OTL:SA:1970324837190375,Europe/Paris,0,OTL, +OTL:SP:3377699720888332,1,"Paradis",43.5048,1.56701,0,0,OTL:SA:1970324837190376,Europe/Paris,0,OTL, +OTL:SP:3377699720888347,1,"Place de la Liberté",43.5069,1.61725,0,0,OTL:SA:1970324837190391,Europe/Paris,2,OTL, +OTL:SP:3377699720888348,1,"La Vierge",43.5049,1.61974,0,0,OTL:SA:1970324837190392,Europe/Paris,0,OTL, +OTL:SP:3377699720888349,1,"La Vierge",43.5055,1.61979,0,0,OTL:SA:1970324837190392,Europe/Paris,0,OTL, +OTL:SP:3377699720888350,1,"Tiffaut",43.4927,1.63878,0,0,OTL:SA:1970324837190393,Europe/Paris,2,OTL, +OTL:SP:3377699720888351,1,"Tiffaut",43.4922,1.63826,0,0,OTL:SA:1970324837190393,Europe/Paris,2,OTL, +OTL:SP:3377699720888352,1,"Le Pas du Merle",43.4844,1.66068,0,0,AEC:SA:00901,Europe/Paris,2,OTL, +OTL:SP:3377699720888353,1,"Le Pas du Merle",43.4839,1.66037,0,0,AEC:SA:00901,Europe/Paris,2,OTL, +OTL:SP:3377699720888354,1,"Ecole les Varennes",43.4772,1.68782,0,0,OTL:SA:1970324837190395,Europe/Paris,0,OTL, +OTL:SP:3377699720888355,1,"Pradettes",43.4557,1.60962,0,0,OTL:SA:1970324837190396,Europe/Paris,0,OTL, +OTL:SP:3377699720888356,1,"Pradettes",43.4559,1.6098,0,0,OTL:SA:1970324837190396,Europe/Paris,2,OTL, +OTL:SP:3377699720888357,1,"Bicinis",43.5078,1.60641,0,0,OTL:SA:1970324837190397,Europe/Paris,0,OTL, +OTL:SP:3377699720888358,1,"Le Rivel",43.4585,1.60385,0,0,OTL:SA:1970324837190398,Europe/Paris,0,OTL, +OTL:SP:3377699720888363,1,"Ecole Roques",43.5115,1.37509,0,0,OTL:SA:1970324837190401,Europe/Paris,2,OTL, +OTL:SP:3377699720888364,1,"Bois",43.5104,1.37313,0,0,OTL:SA:1970324837190402,Europe/Paris,2,OTL, +OTL:SP:3377699720888365,1,"Banque Populaire",43.6277,1.49134,0,0,OTL:SA:1970324837190403,Europe/Paris,0,OTL, +OTL:SP:3377699720888417,1,"Argoulets",43.6244,1.4774,0,0,STE:SA:OCE87551945,Europe/Paris,2,OTL, +OTL:SP:3377699720888418,1,"Argoulets",43.6249,1.47692,0,0,STE:SA:OCE87551945,Europe/Paris,2,OTL, +OTL:SP:3377699720888419,1,"Argoulets",43.6246,1.47719,0,0,STE:SA:OCE87551945,Europe/Paris,2,OTL, +OTL:SP:3377699720888420,1,"Argoulets",43.6248,1.47696,0,0,STE:SA:OCE87551945,Europe/Paris,2,OTL, +OTL:SP:3377699720888422,1,"St-Caprais",43.6475,1.47079,0,0,OTL:SA:1970324837190454,Europe/Paris,2,OTL, +OTL:SP:3377699720888423,1,"Glycines",43.6935,1.48329,0,0,OTL:SA:1970324837190455,Europe/Paris,0,OTL, +OTL:SP:3377699720888424,1,"8 mai 1945",43.7069,1.46655,0,0,OTL:SA:1970324837190456,Europe/Paris,2,OTL, +OTL:SP:3377699720888425,1,"Moureau",43.7108,1.46291,0,0,OTL:SA:1970324837190457,Europe/Paris,0,OTL, +OTL:SP:3377699720888426,1,"Keller",43.7126,1.459,0,0,OTL:SA:1970324837190458,Europe/Paris,0,OTL, +OTL:SP:3377699720888427,1,"Le Grand",43.7161,1.45171,0,0,OTL:SA:1970324837190459,Europe/Paris,0,OTL, +OTL:SP:3377699720888428,1,"Galaup",43.7191,1.44377,0,0,OTL:SA:1970324837190460,Europe/Paris,0,OTL, +OTL:SP:3377699720888429,1,"Bois",43.7308,1.41821,0,0,OTL:SA:1970324837190461,Europe/Paris,0,OTL, +OTL:SP:3377699720888430,1,"Les Palanques",43.7292,1.42021,0,0,OTL:SA:1970324837190462,Europe/Paris,0,OTL, +OTL:SP:3377699720888431,1,"Hespérides",43.7274,1.42468,0,0,OTL:SA:1970324837190463,Europe/Paris,0,OTL, +OTL:SP:3377699720888478,1,"Palombe Colombe",43.6891,1.40961,0,0,OTL:SA:1970324837190510,Europe/Paris,2,OTL, +OTL:SP:3377699720888479,1,"Bergeron",43.699,1.40652,0,0,OTL:SA:1970324837190511,Europe/Paris,2,OTL, +OTL:SP:3377699720888480,1,"Rempart",43.7015,1.40463,0,0,OTL:SA:1970324837190512,Europe/Paris,0,OTL, +OTL:SP:3377699720888481,1,"Sémart",43.6991,1.4033,0,0,OTL:SA:1970324837190513,Europe/Paris,0,OTL, +OTL:SP:3377699720888482,1,"Terroir 1",43.7004,1.40226,0,0,OTL:SA:1970324837190514,Europe/Paris,0,OTL, +OTL:SP:3377699720888483,1,"Terroir 2",43.7032,1.40125,0,0,OTL:SA:1970324837190515,Europe/Paris,0,OTL, +OTL:SP:3377699720888484,1,"ZI Petit Paradis",43.7134,1.39678,0,0,OTL:SA:1970324837190516,Europe/Paris,0,OTL, +OTL:SP:3377699720888485,1,"Industrie",43.7169,1.39338,0,0,OTL:SA:1970324837190517,Europe/Paris,0,OTL, +OTL:SP:3377699720888486,1,"Bénélux",43.7207,1.39233,0,0,OTL:SA:1970324837190518,Europe/Paris,2,OTL, +OTL:SP:3377699720888487,1,"Capdejouan",43.7211,1.39504,0,0,OTL:SA:1970324837190519,Europe/Paris,0,OTL, +OTL:SP:3377699720888488,1,"ZI Euro Nord",43.7245,1.39741,0,0,OTL:SA:1970324837190520,Europe/Paris,0,OTL, +OTL:SP:3377699720888489,1,"Fonbeauzard Mairie",43.6797,1.42623,0,0,OTL:SA:1970324837190521,Europe/Paris,0,OTL, +OTL:SP:3377699720888493,1,"Vendanges",43.6798,1.43138,0,0,OTL:SA:1970324837190525,Europe/Paris,0,OTL, +OTL:SP:3377699720888494,1,"Mermoz",43.6814,1.43501,0,0,OTL:SA:1970324837190526,Europe/Paris,2,OTL, +OTL:SP:3377699720888498,1,"Mireille",43.6347,1.52096,0,0,OTL:SA:1970324837190530,Europe/Paris,2,OTL, +OTL:SP:3377699720888499,1,"Mont Pin",43.6389,1.52175,0,0,OTL:SA:1970324837190531,Europe/Paris,2,OTL, +OTL:SP:3377699720888500,1,"Vignobles",43.6404,1.52078,0,0,OTL:SA:1970324837190532,Europe/Paris,0,OTL, +OTL:SP:3377699720888501,1,"Belle Fontaine",43.6416,1.51795,0,0,OTL:SA:1970324837190533,Europe/Paris,0,OTL, +OTL:SP:3377699720888502,1,"Pastel",43.6433,1.51434,0,0,OTL:SA:1970324837190534,Europe/Paris,2,OTL, +OTL:SP:3377699720888503,1,"La Rivière",43.6454,1.52643,0,0,OTL:SA:1970324837190535,Europe/Paris,0,OTL, +OTL:SP:3377699720888504,1,"Montrabé Stade",43.6477,1.5282,0,0,OTL:SA:1970324837190536,Europe/Paris,2,OTL, +OTL:SP:3377699720888505,1,"Mistral",43.6486,1.53212,0,0,OTL:SA:1970324837190537,Europe/Paris,2,OTL, +OTL:SP:3377699720888506,1,"La Fount",43.62,1.50339,0,0,OTL:SA:1970324837190538,Europe/Paris,0,OTL, +OTL:SP:3377699720888507,1,"Boëly",43.617,1.52071,0,0,OTL:SA:1970324837190539,Europe/Paris,2,OTL, +OTL:SP:3377699720888508,1,"Lancefoc",43.6026,1.54614,0,0,OTL:SA:1970324837190540,Europe/Paris,0,OTL, +OTL:SP:3377699720888509,1,"Lac",43.5961,1.564,0,0,OTL:SA:1970324837190541,Europe/Paris,0,OTL, +OTL:SP:3377699720888510,1,"Coupette",43.5949,1.56997,0,0,OTL:SA:1970324837190542,Europe/Paris,0,OTL, +OTL:SP:3377699720888511,1,"Lasserre",43.593,1.57343,0,0,OTL:SA:1970324837190543,Europe/Paris,0,OTL, +OTL:SP:3377699720888512,1,"En Batut",43.5916,1.57665,0,0,OTL:SA:1970324837190544,Europe/Paris,0,OTL, +OTL:SP:3377699720888514,1,"Drémil Stade",43.6008,1.60527,0,0,OTL:SA:1970324837190546,Europe/Paris,0,OTL, +OTL:SP:3377699720888525,1,"Mairie Lapeyrouse",43.6921,1.51697,0,0,OTL:SA:1970324837190557,Europe/Paris,2,OTL, +OTL:SP:3377699720888526,1,"Cabanis",43.6914,1.50642,0,0,OTL:SA:1970324837190558,Europe/Paris,2,OTL, +OTL:SP:3377699720888527,1,"Barbe d'Or",43.6869,1.50603,0,0,OTL:SA:1970324837190559,Europe/Paris,0,OTL, +OTL:SP:3377699720888528,1,"Quatre Coins",43.6851,1.51231,0,0,OTL:SA:1970324837190560,Europe/Paris,2,OTL, +OTL:SP:3377699720888529,1,"Gymnase",43.6691,1.50468,0,0,OTL:SA:1970324837190561,Europe/Paris,0,OTL, +OTL:SP:3377699720888530,1,"Jean Moulin",43.6668,1.49843,0,0,OTL:SA:1970324837190562,Europe/Paris,0,OTL, +OTL:SP:3377699720888531,1,"Estaquebiau",43.6649,1.49333,0,0,OTL:SA:1970324837190563,Europe/Paris,0,OTL, +OTL:SP:3377699720888532,1,"Darasse",43.5912,1.48039,0,0,OTL:SA:1970324837190564,Europe/Paris,2,OTL, +OTL:SP:3377699720888533,1,"Bois de Limayrac",43.5904,1.48306,0,0,OTL:SA:1970324837190565,Europe/Paris,2,OTL, +OTL:SP:3377699720888534,1,"Julien",43.5902,1.49,0,0,OTL:SA:1970324837190566,Europe/Paris,2,OTL, +OTL:SP:3377699720888535,1,"Couzinet",43.5834,1.49299,0,0,OTL:SA:1970324837190567,Europe/Paris,2,OTL, +OTL:SP:3377699720888536,1,"Moulinais",43.5809,1.49461,0,0,OTL:SA:1970324837190568,Europe/Paris,0,OTL, +OTL:SP:3377699720888538,1,"Les Abattoirs",43.6012,1.42847,0,0,OTL:SA:1970324837185938,Europe/Paris,2,OTL, +OTL:SP:3377699720888539,1,"Sablettes",43.6559,1.45192,0,0,OTL:SA:1970324837186181,Europe/Paris,2,OTL, +OTL:SP:3377699720888540,1,"Ch. d'Encourse",43.6545,1.45325,0,0,OTL:SA:1970324837186182,Europe/Paris,2,OTL, +OTL:SP:3377699720888542,1,"Lespinet Struxiano",43.578,1.46852,0,0,OTL:SA:1970324837185373,Europe/Paris,2,OTL, +OTL:SP:3377699720888543,1,"Banque Populaire",43.6276,1.49117,0,0,OTL:SA:1970324837190403,Europe/Paris,0,OTL, +OTL:SP:3377699720888544,1,"Mairie Lapeyrouse",43.6925,1.51686,0,0,OTL:SA:1970324837190557,Europe/Paris,2,OTL, +OTL:SP:3377699720888548,1,"Quatre Coins",43.685,1.51216,0,0,OTL:SA:1970324837190560,Europe/Paris,2,OTL, +OTL:SP:3377699720888549,1,"Cité de l'Espace",43.5868,1.49096,0,0,OTL:SA:1970324837186071,Europe/Paris,2,OTL, +OTL:SP:3377699720888552,1,"Tilleuls",43.5068,1.37205,0,0,OTL:SA:1970324837186234,Europe/Paris,2,OTL, +OTL:SP:3377699720888557,1,"Mairie Flourens",43.5945,1.56195,0,0,OTL:SA:1970324837185365,Europe/Paris,0,OTL, +OTL:SP:3377699720888558,1,"Eglise Drémil",43.5968,1.60211,0,0,OTL:SA:1970324837185366,Europe/Paris,0,OTL, +OTL:SP:3377699720888560,1,"Aérostiers",43.6099,1.48994,0,0,OTL:SA:1970324837186678,Europe/Paris,2,OTL, +OTL:SP:3377699720888561,1,"Gare SNCF Montrabé",43.6445,1.52459,0,0,OTL:SA:1970324837185158,Europe/Paris,2,OTL, +OTL:SP:3377699720888562,1,"Harkis",43.668,1.50217,0,0,OTL:SA:1970324840530374,Europe/Paris,2,OTL, +OTL:SP:3377699720888565,1,"Négogousses",43.5929,1.41051,0,0,OTL:SA:1970324837190570,Europe/Paris,2,OTL, +OTL:SP:3377699720888566,1,"Négogousses",43.5928,1.41065,0,0,OTL:SA:1970324837190570,Europe/Paris,2,OTL, +OTL:SP:3377699720888567,1,"La Plaine",43.5788,1.49647,0,0,OTL:SA:1970324837190571,Europe/Paris,2,OTL, +OTL:SP:3377699720888569,1,"Ecole Sablettes",43.6552,1.44836,0,0,OTL:SA:1970324837190573,Europe/Paris,0,OTL, +OTL:SP:3377699720888570,1,"Ecole Sablettes",43.6553,1.44829,0,0,OTL:SA:1970324837190573,Europe/Paris,0,OTL, +OTL:SP:3377699720888571,1,"Faïence",43.6576,1.45479,0,0,OTL:SA:1970324837190574,Europe/Paris,0,OTL, +OTL:SP:3377699720888572,1,"Faïence",43.6568,1.45464,0,0,OTL:SA:1970324837190574,Europe/Paris,0,OTL, +OTL:SP:3377699720888578,1,"Bousquet",43.5448,1.51799,0,0,OTL:SA:1970324837190579,Europe/Paris,2,OTL, +OTL:SP:3377699720888579,1,"Bousquet",43.5441,1.51884,0,0,OTL:SA:1970324837190579,Europe/Paris,2,OTL, +OTL:SP:3377699720888582,1,"Benech",43.616,1.50587,0,0,OTL:SA:1970324837190582,Europe/Paris,0,OTL, +OTL:SP:3377699720888585,1,"Belaval",43.6972,1.48258,0,0,OTL:SA:1970324837190584,Europe/Paris,2,OTL, +OTL:SP:3377699720888586,1,"Les Capitelles",43.6916,1.44202,0,0,OTL:SA:1970324837190585,Europe/Paris,2,OTL, +OTL:SP:3377699720888587,1,"Graves",43.6929,1.43936,0,0,OTL:SA:1970324837190586,Europe/Paris,0,OTL, +OTL:SP:3377699720888593,1,"Rouffiac-Tolosan",43.6727,1.52668,0,0,OTL:SA:1970324837184939,Europe/Paris,0,OTL, +OTL:SP:3377699720888595,1,"Sausse",43.6511,1.51447,0,0,OTL:SA:1970324837190590,Europe/Paris,0,OTL, +OTL:SP:3377699720888599,1,"Argoulets",43.6244,1.47677,0,0,STE:SA:OCE87551945,Europe/Paris,2,OTL, +OTL:SP:3377699720888600,1,"Argoulets",43.6244,1.47677,0,0,STE:SA:OCE87551945,Europe/Paris,2,OTL, +OTL:SP:3377699720888602,1,"Cité de l'Espace",43.587,1.49105,0,0,OTL:SA:1970324837186071,Europe/Paris,2,OTL, +OTL:SP:3377699720888606,1,"Plana",43.6061,1.48166,0,0,OTL:SA:1970324837190594,Europe/Paris,2,OTL, +OTL:SP:3377699720888607,1,"Plana",43.6059,1.48145,0,0,OTL:SA:1970324837190594,Europe/Paris,2,OTL, +OTL:SP:3377699720888610,1,"ZI Montredon",43.6382,1.50021,0,0,OTL:SA:1970324837187524,Europe/Paris,0,OTL, +OTL:SP:3377699720888614,1,"Graves",43.693,1.43899,0,0,OTL:SA:1970324837190586,Europe/Paris,0,OTL, +OTL:SP:3377699720888616,1,"Sausse",43.6513,1.51437,0,0,OTL:SA:1970324837190590,Europe/Paris,0,OTL, +OTL:SP:3377699720888617,1,"Benech",43.6161,1.50625,0,0,OTL:SA:1970324837190582,Europe/Paris,0,OTL, +OTL:SP:3377699720888619,1,"Croix d'Alliez",43.6615,1.30574,0,0,OTL:SA:1970324837189475,Europe/Paris,2,OTL, +OTL:SP:3377699720888620,1,"Buette",43.6505,1.34087,0,0,OTL:SA:1970324837184877,Europe/Paris,0,OTL, +OTL:SP:3377699720888621,1,"Larroque",43.6655,1.29748,0,0,AEC:SA:01268,Europe/Paris,2,OTL, +OTL:SP:3377699720888623,1,"Dewoitine",43.6474,1.3358,0,0,OTL:SA:1970324837190359,Europe/Paris,2,OTL, +OTL:SP:3377699720888624,1,"Latécoère",43.6506,1.33343,0,0,OTL:SA:1970324837189471,Europe/Paris,0,OTL, +OTL:SP:3377699720888625,1,"Mairie Cornebarrieu",43.6492,1.32634,0,0,OTL:SA:1970324837184627,Europe/Paris,0,OTL, +OTL:SP:3377699720888626,1,"St-Jean",43.6495,1.32293,0,0,OTL:SA:1970324837189473,Europe/Paris,0,OTL, +OTL:SP:3377699720888628,1,"Clinique des Cèdres",43.6586,1.31293,0,0,OTL:SA:1970324837184625,Europe/Paris,2,OTL, +OTL:SP:3377699720888629,1,"Eglise Mondonville",43.6716,1.28636,0,0,OTL:SA:1970324837190352,Europe/Paris,0,OTL, +OTL:SP:3377699720888641,1,"Glycines",43.6939,1.48288,0,0,OTL:SA:1970324837190455,Europe/Paris,0,OTL, +OTL:SP:3377699720888642,1,"Gymnase",43.6692,1.50476,0,0,OTL:SA:1970324837190561,Europe/Paris,0,OTL, +OTL:SP:3377699720888643,1,"Moureau",43.7109,1.46297,0,0,OTL:SA:1970324837190457,Europe/Paris,2,OTL, +OTL:SP:3377699720888644,1,"Keller",43.7126,1.45924,0,0,OTL:SA:1970324837190458,Europe/Paris,0,OTL, +OTL:SP:3377699720888648,1,"Rouffiac-Tolosan",43.6729,1.52656,0,0,OTL:SA:1970324837184939,Europe/Paris,0,OTL, +OTL:SP:3377699720888649,1,"Boëly",43.6171,1.52039,0,0,OTL:SA:1970324837190539,Europe/Paris,2,OTL, +OTL:SP:3377699720888650,1,"La Fount",43.6202,1.50309,0,0,OTL:SA:1970324837190538,Europe/Paris,0,OTL, +OTL:SP:3377699720888651,1,"Lasserre",43.5931,1.57335,0,0,OTL:SA:1970324837190543,Europe/Paris,0,OTL, +OTL:SP:3377699720888652,1,"En Batut",43.5916,1.57653,0,0,OTL:SA:1970324837190544,Europe/Paris,0,OTL, +OTL:SP:3377699720888653,1,"Coupette",43.5949,1.5699,0,0,OTL:SA:1970324837190542,Europe/Paris,0,OTL, +OTL:SP:3377699720888654,1,"Lac",43.5961,1.56393,0,0,OTL:SA:1970324837190541,Europe/Paris,0,OTL, +OTL:SP:3377699720888655,1,"Lancefoc",43.6027,1.54626,0,0,OTL:SA:1970324837190540,Europe/Paris,0,OTL, +OTL:SP:3377699720888656,1,"Moulinais",43.5809,1.49468,0,0,OTL:SA:1970324837190568,Europe/Paris,2,OTL, +OTL:SP:3377699720888657,1,"Couzinet",43.5837,1.49301,0,0,OTL:SA:1970324837190567,Europe/Paris,2,OTL, +OTL:SP:3377699720888658,1,"Julien",43.5902,1.48966,0,0,OTL:SA:1970324837190566,Europe/Paris,2,OTL, +OTL:SP:3377699720888659,1,"Bois de Limayrac",43.5903,1.48331,0,0,OTL:SA:1970324837190565,Europe/Paris,2,OTL, +OTL:SP:3377699720888660,1,"Darasse",43.5917,1.48019,0,0,OTL:SA:1970324837190564,Europe/Paris,2,OTL, +OTL:SP:3377699720888661,1,"Barbe d'Or",43.6868,1.50636,0,0,OTL:SA:1970324837190559,Europe/Paris,2,OTL, +OTL:SP:3377699720888662,1,"Mireille",43.6347,1.52079,0,0,OTL:SA:1970324837190530,Europe/Paris,0,OTL, +OTL:SP:3377699720888663,1,"Gare SNCF Montrabé",43.6446,1.52435,0,0,OTL:SA:1970324837185158,Europe/Paris,2,OTL, +OTL:SP:3377699720888665,1,"Mondonville Foyer Rural",43.6702,1.28884,0,0,OTL:SA:1970324837184880,Europe/Paris,0,OTL, +OTL:SP:3377699720888666,1,"Mont Pin",43.6387,1.52158,0,0,OTL:SA:1970324837190531,Europe/Paris,0,OTL, +OTL:SP:3377699720888667,1,"Vignobles",43.6402,1.52091,0,0,OTL:SA:1970324837190532,Europe/Paris,2,OTL, +OTL:SP:3377699720888668,1,"Belle Fontaine",43.6416,1.51781,0,0,OTL:SA:1970324837190533,Europe/Paris,0,OTL, +OTL:SP:3377699720888669,1,"Pastel",43.6431,1.51463,0,0,OTL:SA:1970324837190534,Europe/Paris,0,OTL, +OTL:SP:3377699720888670,1,"Logis Vieux",43.6435,1.52058,0,0,OTL:SA:1970324837187526,Europe/Paris,0,OTL, +OTL:SP:3377699720888671,1,"La Rivière",43.6458,1.52648,0,0,OTL:SA:1970324837190535,Europe/Paris,0,OTL, +OTL:SP:3377699720888675,1,"8 mai 1945",43.7067,1.46611,0,0,OTL:SA:1970324837190456,Europe/Paris,2,OTL, +OTL:SP:3377699720888676,1,"Le Grand",43.7162,1.45134,0,0,OTL:SA:1970324837190459,Europe/Paris,0,OTL, +OTL:SP:3377699720888677,1,"Galaup",43.7191,1.4438,0,0,OTL:SA:1970324837190460,Europe/Paris,2,OTL, +OTL:SP:3377699720888678,1,"Hespérides",43.7271,1.42489,0,0,OTL:SA:1970324837190463,Europe/Paris,2,OTL, +OTL:SP:3377699720888679,1,"Les Palanques",43.7289,1.4209,0,0,OTL:SA:1970324837190462,Europe/Paris,2,OTL, +OTL:SP:3377699720888680,1,"Bois",43.7307,1.41799,0,0,OTL:SA:1970324837190461,Europe/Paris,2,OTL, +OTL:SP:3377699720888682,1,"Estaquebiau",43.6648,1.49313,0,0,OTL:SA:1970324837190563,Europe/Paris,0,OTL, +OTL:SP:3377699720888683,1,"Jean Moulin",43.6668,1.49794,0,0,OTL:SA:1970324837190562,Europe/Paris,0,OTL, +OTL:SP:3377699720888684,1,"Harkis",43.6681,1.50229,0,0,OTL:SA:1970324840530374,Europe/Paris,2,OTL, +OTL:SP:3377699720888685,1,"Cabanis",43.6914,1.50639,0,0,OTL:SA:1970324837190558,Europe/Paris,2,OTL, +OTL:SP:3377699720888687,1,"Ratalens",43.6495,1.5108,0,0,OTL:SA:1970324837190597,Europe/Paris,2,OTL, +OTL:SP:3377699720888688,1,"Ratalens",43.6494,1.51014,0,0,OTL:SA:1970324837190597,Europe/Paris,2,OTL, +OTL:SP:3377699720888689,1,"Platanes",43.6664,1.52461,0,0,OTL:SA:1970324837190598,Europe/Paris,2,OTL, +OTL:SP:3377699720888690,1,"Platanes",43.6663,1.52356,0,0,OTL:SA:1970324837190598,Europe/Paris,2,OTL, +OTL:SP:3377699720888695,1,"Roseraie",43.6197,1.46962,0,0,OTL:SA:1970324837185603,Europe/Paris,2,OTL, +OTL:SP:3377699720888696,1,"Roseraie",43.6197,1.46962,0,0,OTL:SA:1970324837185603,Europe/Paris,2,OTL, +OTL:SP:3377699720888699,1,"Vignes",43.6948,1.43868,0,0,OTL:SA:1970324837190600,Europe/Paris,2,OTL, +OTL:SP:3377699720888700,1,"Vignes",43.695,1.43836,0,0,OTL:SA:1970324837190600,Europe/Paris,2,OTL, +OTL:SP:3377699720888701,1,"Les Capitelles",43.6918,1.44176,0,0,OTL:SA:1970324837190585,Europe/Paris,0,OTL, +OTL:SP:3377699720888717,1,"Doumergue",43.6215,1.50058,0,0,OTL:SA:1970324837190607,Europe/Paris,0,OTL, +OTL:SP:3377699720888718,1,"Doumergue",43.6218,1.50027,0,0,OTL:SA:1970324837190607,Europe/Paris,0,OTL, +OTL:SP:3377699720888719,1,"Giratoire Truffaut",43.6343,1.50046,0,0,OTL:SA:1970324837190608,Europe/Paris,0,OTL, +OTL:SP:3377699720888720,1,"Giratoire Truffaut",43.6339,1.50119,0,0,OTL:SA:1970324837190608,Europe/Paris,2,OTL, +OTL:SP:3377699720888721,1,"Le Chapitre",43.633,1.50801,0,0,OTL:SA:1970324837190609,Europe/Paris,0,OTL, +OTL:SP:3377699720888722,1,"Le Chapitre",43.633,1.5077,0,0,OTL:SA:1970324837190609,Europe/Paris,0,OTL, +OTL:SP:3377699720888723,1,"Pasteur",43.6534,1.512,0,0,OTL:SA:1970324837190610,Europe/Paris,0,OTL, +OTL:SP:3377699720888724,1,"Pasteur",43.6536,1.51185,0,0,OTL:SA:1970324837190610,Europe/Paris,0,OTL, +OTL:SP:3377699720888725,1,"Granaillet",43.491,1.52597,0,0,OTL:SA:1970324837190611,Europe/Paris,0,OTL, +OTL:SP:3377699720888726,1,"Granaillet",43.4907,1.52598,0,0,OTL:SA:1970324837190611,Europe/Paris,0,OTL, +OTL:SP:3377699720888730,1,"Gendarmerie",43.4564,1.58135,0,0,AEC:SA:01353,Europe/Paris,2,OTL, +OTL:SP:3377699720888731,1,"Ourmets",43.4417,1.5992,0,0,OTL:SA:1970324837185149,Europe/Paris,0,OTL, +OTL:SP:3377699720888732,1,"Ayguesvives Collège",43.4364,1.5989,0,0,OTL:SA:1970324837188026,Europe/Paris,2,OTL, +OTL:SP:3377699720888733,1,"La Tour",43.5108,1.56487,0,0,OTL:SA:1970324837190612,Europe/Paris,2,OTL, +OTL:SP:3377699720888734,1,"La Tour",43.511,1.56481,0,0,OTL:SA:1970324837190612,Europe/Paris,0,OTL, +OTL:SP:3377699720888735,1,"Carrière",43.5108,1.57007,0,0,OTL:SA:1970324837190613,Europe/Paris,2,OTL, +OTL:SP:3377699720888736,1,"Carrière",43.511,1.57013,0,0,OTL:SA:1970324837190613,Europe/Paris,0,OTL, +OTL:SP:3377699720888737,1,"D59",43.6477,1.50567,0,0,OTL:SA:1970324837190614,Europe/Paris,0,OTL, +OTL:SP:3377699720888738,1,"D59",43.6477,1.50547,0,0,OTL:SA:1970324837190614,Europe/Paris,0,OTL, +OTL:SP:3377699720888739,1,"En Blanc",43.4801,1.69003,0,0,OTL:SA:1970324837185572,Europe/Paris,0,OTL, +OTL:SP:3377699720888740,1,"Mairie Labastide Beauvoir",43.4819,1.66626,0,0,OTL:SA:1970324837185571,Europe/Paris,2,OTL, +OTL:SP:3377699720888741,1,"Cimetière Fourquevaux",43.4984,1.62445,0,0,OTL:SA:1970324837187857,Europe/Paris,2,OTL, +OTL:SP:3377699720888742,1,"Place de la Liberté",43.5065,1.61727,0,0,OTL:SA:1970324837190391,Europe/Paris,2,OTL, +OTL:SP:3377699720888743,1,"Bicinis",43.5074,1.60591,0,0,OTL:SA:1970324837190397,Europe/Paris,0,OTL, +OTL:SP:3377699720888754,1,"Fournier Airbus",43.6075,1.36615,0,0,OTL:SA:1970324837190616,Europe/Paris,2,OTL, +OTL:SP:3377699720888755,1,"Fournier Airbus",43.6073,1.36677,0,0,OTL:SA:1970324837190616,Europe/Paris,2,OTL, +OTL:SP:3377699720888756,1,"Jardinerie",43.6071,1.36942,0,0,OTL:SA:1970324837190617,Europe/Paris,2,OTL, +OTL:SP:3377699720888757,1,"Jardinerie",43.607,1.36965,0,0,OTL:SA:1970324837190617,Europe/Paris,2,OTL, +OTL:SP:3377699720888762,1,"Caulet",43.6065,1.3547,0,0,OTL:SA:1970324837190618,Europe/Paris,2,OTL, +OTL:SP:3377699720888763,1,"Caulet",43.6063,1.35463,0,0,OTL:SA:1970324837190618,Europe/Paris,2,OTL, +OTL:SP:3377699720888764,1,"Tahiti",43.5799,1.48049,0,0,OTL:SA:1970324837186092,Europe/Paris,2,OTL, +OTL:SP:3377699720888765,1,"Balma-Gramont",43.6287,1.48235,0,0,AEC:SA:00134,Europe/Paris,2,OTL, +OTL:SP:3377699720888782,1,"Drémil Stade",43.6012,1.60549,0,0,OTL:SA:1970324837190546,Europe/Paris,0,OTL, +OTL:SP:3377699720888783,1,"Seysses Maison d'Arrêt",43.4891,1.32336,0,0,OTL:SA:1970324837190290,Europe/Paris,0,OTL, +OTL:SP:3377699720888813,1,"Cours Dillon",43.5985,1.43733,0,0,OTL:SA:1970324837184995,Europe/Paris,2,OTL, +OTL:SP:3377699720888814,1,"Salin-Parlement",43.5945,1.44432,0,0,OTL:SA:1970324838318979,Europe/Paris,2,OTL, +OTL:SP:3377699720888815,1,"Route de Cornebarrieu",43.6207,1.33567,0,0,OTL:SA:1970324837189470,Europe/Paris,0,OTL, +OTL:SP:3377699720888917,1,"Lauragais",43.5867,1.53453,0,0,OTL:SA:1970324837185364,Europe/Paris,2,OTL, +OTL:SP:3377699720888920,1,"Fonsegrives Collège",43.5796,1.53856,0,0,OTL:SA:1970324837190645,Europe/Paris,2,OTL, +OTL:SP:3377699720888950,1,"Montbrun Lauragais Roumieu",43.4439,1.51552,0,0,OTL:SA:1970324837190653,Europe/Paris,0,OTL, +OTL:SP:3377699720888959,1,"Claverie",43.4468,1.51665,0,0,OTL:SA:1970324837190658,Europe/Paris,0,OTL, +OTL:SP:3377699720888960,1,"Lanes",43.4548,1.52116,0,0,OTL:SA:1970324837190659,Europe/Paris,2,OTL, +OTL:SP:3377699720888964,1,"Le Rivel",43.4587,1.60403,0,0,OTL:SA:1970324837190398,Europe/Paris,0,OTL, +OTL:SP:3377699720888965,1,"Ecole Baziège",43.4534,1.61314,0,0,OTL:SA:1970324837185306,Europe/Paris,2,OTL, +OTL:SP:3377699720888966,1,"Las Puntos",43.4483,1.60696,0,0,OTL:SA:1970324837187923,Europe/Paris,2,OTL, +OTL:SP:3377699720888968,1,"Ducharme",43.4994,1.51539,0,0,OTL:SA:1970324837188008,Europe/Paris,0,OTL, +OTL:SP:3377699720888969,1,"L'Espitalet",43.4971,1.51813,0,0,OTL:SA:1970324837188009,Europe/Paris,2,OTL, +OTL:SP:3377699720888970,1,"Les Violettes",43.4869,1.53177,0,0,AEC:SA:00586,Europe/Paris,0,OTL, +OTL:SP:3377699720888971,1,"Mairie Donneville",43.4742,1.55034,0,0,OTL:SA:1970324837185147,Europe/Paris,0,OTL, +OTL:SP:3377699720888972,1,"Bruxelles",43.4635,1.56889,0,0,OTL:SA:1970324837188002,Europe/Paris,0,OTL, +OTL:SP:3377699720888973,1,"Mairie Odars",43.5234,1.58903,0,0,OTL:SA:1970324837190660,Europe/Paris,0,OTL, +OTL:SP:3377699720888974,1,"Bel Horizon",43.5273,1.58839,0,0,OTL:SA:1970324837190661,Europe/Paris,2,OTL, +OTL:SP:3377699720888999,1,"Aussonnelle",43.6912,1.35652,0,0,OTL:SA:1970324837190670,Europe/Paris,2,OTL, +OTL:SP:3377699720889000,1,"Aussonnelle",43.6906,1.3572,0,0,OTL:SA:1970324837190670,Europe/Paris,2,OTL, +OTL:SP:3377699720889004,1,"Aérodrome",43.5945,1.49751,0,0,OTL:SA:1970324837190671,Europe/Paris,2,OTL, +OTL:SP:3377699720889023,1,"Collège Labitrie",43.5788,1.32522,0,0,OTL:SA:1970324838200625,Europe/Paris,0,OTL, +OTL:SP:3377699720889026,1,"Rond-point du Golf",43.6864,1.36015,0,0,OTL:SA:1970324837186666,Europe/Paris,0,OTL, +OTL:SP:3377699720890757,1,"Niel",43.4611,1.32434,0,0,OTL:SA:1970324837185077,Europe/Paris,0,OTL, +OTL:SP:3377699720890760,1,"Séro",43.4627,1.32505,0,0,AEC:SA:01432,Europe/Paris,2,OTL, +OTL:SP:3377699720890761,1,"Séro",43.4622,1.32476,0,0,AEC:SA:01432,Europe/Paris,2,OTL, +OTL:SP:3377699720890763,1,"Collège Bétance",43.4523,1.32857,0,0,OTL:SA:1970324837337482,Europe/Paris,2,OTL, +OTL:SP:3377699720890765,1,"Gaston Bonheur",43.4563,1.32974,0,0,OTL:SA:1970324837337484,Europe/Paris,2,OTL, +OTL:SP:3377699720890766,1,"Gaston Bonheur",43.4567,1.32948,0,0,OTL:SA:1970324837337484,Europe/Paris,2,OTL, +OTL:SP:3377699720890769,1,"De Lattre de Tassigny",43.4645,1.32614,0,0,OTL:SA:1970329131942104,Europe/Paris,0,OTL, +OTL:SP:3377699720890770,1,"De Lattre de Tassigny",43.4654,1.32674,0,0,OTL:SA:1970329131942104,Europe/Paris,2,OTL, +OTL:SP:3377699720890789,1,"Centre de Détention",43.4829,1.32057,0,0,OTL:SA:1970324837190360,Europe/Paris,0,OTL, +OTL:SP:3377699720890791,1,"ZI La Piche",43.4904,1.31551,0,0,OTL:SA:1970324837337510,Europe/Paris,2,OTL, +OTL:SP:3377699720890792,1,"ZI La Piche",43.4906,1.31532,0,0,OTL:SA:1970324837337510,Europe/Paris,2,OTL, +OTL:SP:3377699720890793,1,"Lycée Matisse",43.531,1.35555,0,0,OTL:SA:1970324837189395,Europe/Paris,2,OTL, +OTL:SP:3377699720890795,1,"Goubard",43.5335,1.35933,0,0,OTL:SA:1970324837189397,Europe/Paris,0,OTL, +OTL:SP:3377699720890797,1,"Route de Portet",43.5357,1.36483,0,0,OTL:SA:1970324837189398,Europe/Paris,0,OTL, +OTL:SP:3377699720890800,1,"Base Aérienne",43.5377,1.36905,0,0,OTL:SA:1970324837337519,Europe/Paris,0,OTL, +OTL:SP:3377699720890801,1,"Base Aérienne",43.5382,1.37008,0,0,OTL:SA:1970324837337519,Europe/Paris,0,OTL, +OTL:SP:3377699720890807,1,"Ctre Cial Cugnaux",43.5309,1.35064,0,0,OTL:SA:1970324837337526,Europe/Paris,0,OTL, +OTL:SP:3377699720890809,1,"Charles de Gaulle",43.4688,1.32383,0,0,OTL:SA:1970324837189451,Europe/Paris,2,OTL, +OTL:SP:3377699720890810,1,"Charles de Gaulle",43.469,1.32393,0,0,OTL:SA:1970324837189451,Europe/Paris,2,OTL, +OTL:SP:3377699720890811,1,"Douzans",43.4682,1.32843,0,0,AEC:SA:15312,Europe/Paris,2,OTL, +OTL:SP:3377699720890814,1,"Vincent Auriol",43.4706,1.33065,0,0,OTL:SA:1970324837185546,Europe/Paris,2,OTL, +OTL:SP:3377699720890817,1,"Europe",43.4679,1.3312,0,0,OTL:SA:1970324837337536,Europe/Paris,2,OTL, +OTL:SP:3377699720890821,1,"Del Pujol",43.4652,1.33189,0,0,OTL:SA:1970324837337540,Europe/Paris,2,OTL, +OTL:SP:3377699720890829,1,"Firmin Magne",43.4641,1.33031,0,0,OTL:SA:1970324837337548,Europe/Paris,2,OTL, +OTL:SP:3377699720890831,1,"Collège Montrabé",43.6424,1.53825,0,0,OTL:SA:1970324837337550,Europe/Paris,0,OTL, +OTL:SP:3377699720890833,1,"Collège Montrabé",43.6425,1.53822,0,0,OTL:SA:1970324837337550,Europe/Paris,0,OTL, +OTL:SP:3377699720890835,1,"Collège Pechbonnieu",43.7053,1.46313,0,0,AEC:SA:15278,Europe/Paris,2,OTL, +OTL:SP:3377699720890837,1,"Louradou",43.6725,1.5096,0,0,OTL:SA:1970324837337556,Europe/Paris,0,OTL, +OTL:SP:3377699720890838,1,"Louradou",43.6729,1.51023,0,0,OTL:SA:1970324837337556,Europe/Paris,0,OTL, +OTL:SP:3377699720890841,1,"Ch. Castelviel",43.6776,1.51244,0,0,OTL:SA:1970324837337560,Europe/Paris,2,OTL, +OTL:SP:3377699720890843,1,"Ch. Castelviel",43.6779,1.51239,0,0,OTL:SA:1970324837337560,Europe/Paris,2,OTL, +OTL:SP:3377699720896496,1,"Cimetière Villeneuve",43.5248,1.3693,0,0,OTL:SA:1970324837343215,Europe/Paris,2,OTL, +OTL:SP:3377699720896497,1,"Cimetière Villeneuve",43.5246,1.36919,0,0,OTL:SA:1970324837343215,Europe/Paris,2,OTL, +OTL:SP:3377699720896499,1,"Gatasses",43.5238,1.36637,0,0,OTL:SA:1970324837343218,Europe/Paris,2,OTL, +OTL:SP:3377699720896500,1,"Gatasses",43.5238,1.36614,0,0,OTL:SA:1970324837343218,Europe/Paris,2,OTL, +OTL:SP:3377699720896502,1,"Bourrouil",43.5231,1.36329,0,0,OTL:SA:1970324837343221,Europe/Paris,2,OTL, +OTL:SP:3377699720896503,1,"Bourrouil",43.5232,1.36299,0,0,OTL:SA:1970324837343221,Europe/Paris,2,OTL, +OTL:SP:3377699720896505,1,"Collège",43.5229,1.35839,0,0,OTL:SA:1970324837343224,Europe/Paris,2,OTL, +OTL:SP:3377699720896506,1,"Collège",43.5231,1.35836,0,0,OTL:SA:1970324837343224,Europe/Paris,2,OTL, +OTL:SP:3377699720896508,1,"Rossignolis",43.5234,1.35461,0,0,OTL:SA:1970324837343227,Europe/Paris,2,OTL, +OTL:SP:3377699720896509,1,"Rossignolis",43.5235,1.35436,0,0,OTL:SA:1970324837343227,Europe/Paris,2,OTL, +OTL:SP:3377699720896511,1,"Vanniers",43.5229,1.35105,0,0,OTL:SA:1970324837343230,Europe/Paris,0,OTL, +OTL:SP:3377699720896512,1,"Vanniers",43.5229,1.34997,0,0,OTL:SA:1970324837343230,Europe/Paris,2,OTL, +OTL:SP:3377699720896514,1,"Jean Marais",43.5222,1.34729,0,0,OTL:SA:1970324837343233,Europe/Paris,2,OTL, +OTL:SP:3377699720896515,1,"Jean Marais",43.5221,1.3466,0,0,OTL:SA:1970324837343233,Europe/Paris,2,OTL, +OTL:SP:3377699720896517,1,"Boulodrome",43.5216,1.3429,0,0,OTL:SA:1970324837343236,Europe/Paris,2,OTL, +OTL:SP:3377699720896518,1,"Boulodrome",43.5218,1.34277,0,0,OTL:SA:1970324837343236,Europe/Paris,2,OTL, +OTL:SP:3377699720896520,1,"La Vimona",43.5287,1.34994,0,0,OTL:SA:1970324837189394,Europe/Paris,2,OTL, +OTL:SP:3377699720896521,1,"La Vimona",43.5285,1.34982,0,0,OTL:SA:1970324837189394,Europe/Paris,2,OTL, +OTL:SP:3377699720901653,1,"Rond-point de l'Espace",43.5465,1.3878,0,0,OTL:SA:1970324837348372,Europe/Paris,2,OTL, +OTL:SP:3377699720901654,1,"Rond-point de l'Espace",43.5466,1.38814,0,0,OTL:SA:1970324837348372,Europe/Paris,2,OTL, +OTL:SP:3377699720917130,1,"Ingine",43.5266,1.5641,0,0,OTL:SA:1970324837363849,Europe/Paris,2,OTL, +OTL:SP:3377699720917131,1,"Ingine",43.5264,1.56415,0,0,OTL:SA:1970324837363849,Europe/Paris,2,OTL, +OTL:SP:3377699720917134,1,"Pompidou",43.5332,1.34881,0,0,OTL:SA:1970324837337522,Europe/Paris,2,OTL, +OTL:SP:3377699720917135,1,"Pompidou",43.5334,1.34864,0,0,OTL:SA:1970324837337522,Europe/Paris,2,OTL, +OTL:SP:3377699720917136,1,"Ctre Cial Cugnaux",43.5308,1.3508,0,0,OTL:SA:1970324837337526,Europe/Paris,2,OTL, +OTL:SP:3377699720917138,1,"ZA Jean Mermoz",43.6461,1.3496,0,0,OTL:SA:1970324837363857,Europe/Paris,0,OTL, +OTL:SP:3377699720917139,1,"ZA Jean Mermoz",43.6458,1.35016,0,0,OTL:SA:1970324837363857,Europe/Paris,0,OTL, +OTL:SP:3377699720917142,1,"Berlioz",43.6556,1.31898,0,0,OTL:SA:1970324837363861,Europe/Paris,2,OTL, +OTL:SP:3377699720938159,1,"De Pisan",43.6299,1.44831,0,0,OTL:SA:1970324837384878,Europe/Paris,2,OTL, +OTL:SP:3377699720938160,1,"De Pisan",43.6298,1.44825,0,0,OTL:SA:1970324837384878,Europe/Paris,2,OTL, +OTL:SP:3377699720938162,1,"Kahn Klein",43.6311,1.44504,0,0,OTL:SA:1970324837384881,Europe/Paris,2,OTL, +OTL:SP:3377699720938163,1,"Kahn Klein",43.631,1.44525,0,0,OTL:SA:1970324837384881,Europe/Paris,2,OTL, +OTL:SP:3377699720947355,1,"Collège St-Jean",43.6617,1.50397,0,0,OTL:SA:1970329131942228,Europe/Paris,0,OTL, +OTL:SP:3377699720960419,1,"IUT Rangueil",43.5695,1.46528,0,0,OTL:SA:1970324837407138,Europe/Paris,2,OTL, +OTL:SP:3377699720960420,1,"IUT Rangueil",43.5693,1.46541,0,0,OTL:SA:1970324837407138,Europe/Paris,2,OTL, +OTL:SP:3377699720984659,1,"Colomiers Gare SNCF",43.6043,1.3345,0,0,OTL:SA:1970324837184752,Europe/Paris,2,OTL, +OTL:SP:3377699720984664,1,"Mairie La Salvetat",43.5783,1.27274,0,0,OTL:SA:1970324837185018,Europe/Paris,2,OTL, +OTL:SP:3377699720984683,1,"Puymorens",43.5816,1.28126,0,0,OTL:SA:1970324837431402,Europe/Paris,2,OTL, +OTL:SP:3377699720984684,1,"Puymorens",43.582,1.28075,0,0,OTL:SA:1970324837431402,Europe/Paris,2,OTL, +OTL:SP:3377699720984686,1,"Mûriers",43.5795,1.28579,0,0,OTL:SA:1970324837431405,Europe/Paris,2,OTL, +OTL:SP:3377699720984687,1,"Mûriers",43.5795,1.28491,0,0,OTL:SA:1970324837431405,Europe/Paris,2,OTL, +OTL:SP:3377699720984693,1,"Bourdies",43.5729,1.28419,0,0,OTL:SA:1970324837188320,Europe/Paris,2,OTL, +OTL:SP:3377699720984694,1,"Bourdies",43.5726,1.28432,0,0,OTL:SA:1970324837188320,Europe/Paris,0,OTL, +OTL:SP:3377699720984696,1,"Château d'eau",43.576,1.27645,0,0,OTL:SA:1970324837188318,Europe/Paris,2,OTL, +OTL:SP:3377699720984701,1,"Belbèze",43.6546,1.50141,0,0,OTL:SA:1970324837431420,Europe/Paris,0,OTL, +OTL:SP:3377699720984702,1,"Belbèze",43.6545,1.50132,0,0,OTL:SA:1970324837431420,Europe/Paris,0,OTL, +OTL:SP:3377699720984704,1,"Fauré",43.6568,1.50246,0,0,OTL:SA:1970324837431423,Europe/Paris,0,OTL, +OTL:SP:3377699720984705,1,"Fauré",43.6572,1.50255,0,0,OTL:SA:1970324837431423,Europe/Paris,0,OTL, +OTL:SP:3377699720984709,1,"Lespinasse Mairie",43.7119,1.39186,0,0,OTL:SA:1970324837431428,Europe/Paris,2,OTL, +OTL:SP:3377699720984710,1,"Lespinasse Mairie",43.7113,1.39186,0,0,OTL:SA:1970324837431428,Europe/Paris,0,OTL, +OTL:SP:3377699721034355,1,"Lycée International",43.6127,1.30821,0,0,OTL:SA:1970324837185074,Europe/Paris,2,OTL, +OTL:SP:3377699721034882,1,"Rond-point Périgord",43.5331,1.52293,0,0,OTL:SA:1970324837481601,Europe/Paris,2,OTL, +OTL:SP:3377699721034883,1,"Rond-point Périgord",43.5331,1.52284,0,0,OTL:SA:1970324837481601,Europe/Paris,2,OTL, +OTL:SP:3377699721036045,1,"L'écrin",43.5513,1.51612,0,0,OTL:SA:1970324837482764,Europe/Paris,0,OTL, +OTL:SP:3377699721036049,1,"Av. de Toulouse",43.5604,1.52314,0,0,OTL:SA:1970324837482768,Europe/Paris,2,OTL, +OTL:SP:3377699721051777,1,"Bois",43.5103,1.37319,0,0,OTL:SA:1970324837190402,Europe/Paris,2,OTL, +OTL:SP:3377699721051778,1,"Ecole Roques",43.5109,1.37599,0,0,OTL:SA:1970324837190401,Europe/Paris,0,OTL, +OTL:SP:3377699721055266,1,"Le Brix",43.6229,1.46235,0,0,OTL:SA:1970324837501985,Europe/Paris,2,OTL, +OTL:SP:3377699721055268,1,"Louin",43.6291,1.44971,0,0,OTL:SA:1970324837501987,Europe/Paris,2,OTL, +OTL:SP:3377699721055270,1,"Maourine",43.6312,1.44955,0,0,OTL:SA:1970324837501989,Europe/Paris,2,OTL, +OTL:SP:3377699721055274,1,"Lanusse",43.6356,1.45286,0,0,OTL:SA:1970324837501993,Europe/Paris,2,OTL, +OTL:SP:3377699721055276,1,"Monloup",43.6369,1.45279,0,0,OTL:SA:1970324837501995,Europe/Paris,2,OTL, +OTL:SP:3377699721055280,1,"Ch. de Borderouge",43.643,1.45665,0,0,OTL:SA:1970324837501999,Europe/Paris,2,OTL, +OTL:SP:3377699721055282,1,"Ebelot",43.6431,1.46062,0,0,OTL:SA:1970324837502001,Europe/Paris,2,OTL, +OTL:SP:3377699721057377,1,"Lully",43.6187,1.40811,0,0,OTL:SA:1970324837184909,Europe/Paris,2,OTL, +OTL:SP:3377699721062951,1,"Roseraie",43.6198,1.46949,0,0,OTL:SA:1970324837185603,Europe/Paris,2,OTL, +OTL:SP:3377699721062955,1,"Pl de l'Armée d'Afrique",43.6234,1.45423,0,0,OTL:SA:1970324837185911,Europe/Paris,2,OTL, +OTL:SP:3377699721062956,1,"Le Brix",43.6226,1.46295,0,0,OTL:SA:1970324837501985,Europe/Paris,2,OTL, +OTL:SP:3377699721062958,1,"Louin",43.6288,1.45015,0,0,OTL:SA:1970324837501987,Europe/Paris,2,OTL, +OTL:SP:3377699721062960,1,"Maourine",43.6308,1.44956,0,0,OTL:SA:1970324837501989,Europe/Paris,2,OTL, +OTL:SP:3377699721062963,1,"Campardon",43.622,1.46542,0,0,OTL:SA:1970324837509717,Europe/Paris,2,OTL, +OTL:SP:3377699721062965,1,"Campardon",43.6219,1.46574,0,0,OTL:SA:1970324837509717,Europe/Paris,2,OTL, +OTL:SP:3377699721062970,1,"Ségla",43.6332,1.45087,0,0,OTL:SA:1970324837509689,Europe/Paris,2,OTL, +OTL:SP:3377699721062971,1,"Ségla",43.6329,1.45052,0,0,OTL:SA:1970324837509689,Europe/Paris,2,OTL, +OTL:SP:3377699721062973,1,"Lanusse",43.6357,1.45284,0,0,OTL:SA:1970324837501993,Europe/Paris,2,OTL, +OTL:SP:3377699721062974,1,"Monloup",43.6375,1.45281,0,0,OTL:SA:1970324837501995,Europe/Paris,2,OTL, +OTL:SP:3377699721062978,1,"Ch. de Borderouge",43.6431,1.45692,0,0,OTL:SA:1970324837501999,Europe/Paris,2,OTL, +OTL:SP:3377699721083429,1,"Viste",43.6698,1.5166,0,0,OTL:SA:1970324837186762,Europe/Paris,2,OTL, +OTL:SP:3377699721083431,1,"Négrier",43.6653,1.49575,0,0,OTL:SA:1970324837530150,Europe/Paris,0,OTL, +OTL:SP:3377699721083432,1,"Négrier",43.6657,1.49611,0,0,OTL:SA:1970324837530150,Europe/Paris,2,OTL, +OTL:SP:3377699721093205,1,"Taure",43.5833,1.27794,0,0,OTL:SA:1970324837185065,Europe/Paris,2,OTL, +OTL:SP:3377699721101056,1,"Amat Massot",43.6259,1.43865,0,0,OTL:SA:1970324837184957,Europe/Paris,2,OTL, +OTL:SP:3377699721101063,1,"Entiore",43.5797,1.51049,0,0,OTL:SA:1970324837185363,Europe/Paris,2,OTL, +OTL:SP:3377699721107720,1,"Aérodrome",43.5946,1.49731,0,0,OTL:SA:1970324837190671,Europe/Paris,2,OTL, +OTL:SP:3377699721137775,1,"Labourdette",43.7212,1.43884,0,0,OTL:SA:1970324837584494,Europe/Paris,0,OTL, +OTL:SP:3377699721137776,1,"Labourdette",43.7208,1.43959,0,0,OTL:SA:1970324837584494,Europe/Paris,2,OTL, +OTL:SP:3377699721158291,1,"Colomiers Gare SNCF",43.6041,1.33462,0,0,OTL:SA:1970324837184752,Europe/Paris,2,OTL, +OTL:SP:3377699721186815,1,"Languedoc",43.5862,1.34105,0,0,OTL:SA:1970324837186520,Europe/Paris,0,OTL, +OTL:SP:3377699721186816,1,"Languedoc",43.586,1.34118,0,0,OTL:SA:1970324837186520,Europe/Paris,0,OTL, +OTL:SP:3377699721189341,1,"Mitterrand",43.5877,1.33764,0,0,OTL:SA:1970324837636060,Europe/Paris,2,OTL, +OTL:SP:3377699721189342,1,"Mitterrand",43.5875,1.33749,0,0,OTL:SA:1970324837636060,Europe/Paris,2,OTL, +OTL:SP:3377699721189344,1,"Gymnase",43.5851,1.33405,0,0,OTL:SA:1970324837636063,Europe/Paris,2,OTL, +OTL:SP:3377699721189345,1,"Gymnase",43.5863,1.33557,0,0,OTL:SA:1970324837636063,Europe/Paris,2,OTL, +OTL:SP:3377699721189348,1,"Vandel",43.5787,1.37857,0,0,OTL:SA:1970324837636067,Europe/Paris,2,OTL, +OTL:SP:3377699721189349,1,"Vandel",43.5789,1.37828,0,0,OTL:SA:1970324837636067,Europe/Paris,2,OTL, +OTL:SP:3377699721189351,1,"Phidias",43.5809,1.37396,0,0,OTL:SA:1970324837636070,Europe/Paris,0,OTL, +OTL:SP:3377699721189352,1,"Phidias",43.5809,1.37439,0,0,OTL:SA:1970324837636070,Europe/Paris,0,OTL, +OTL:SP:3377699721189355,1,"Grynfogel",43.5798,1.36781,0,0,OTL:SA:1970324837636074,Europe/Paris,2,OTL, +OTL:SP:3377699721189356,1,"Grynfogel",43.5798,1.36803,0,0,OTL:SA:1970324837636074,Europe/Paris,2,OTL, +OTL:SP:3377699721189359,1,"Pagnol",43.5899,1.31972,0,0,OTL:SA:1970324837186527,Europe/Paris,0,OTL, +OTL:SP:3377699721189362,1,"Tuileries",43.6016,1.33256,0,0,OTL:SA:1970324837189846,Europe/Paris,0,OTL, +OTL:SP:3377699721189367,1,"Picasso",43.5917,1.31841,0,0,OTL:SA:1970324837636086,Europe/Paris,0,OTL, +OTL:SP:3377699721189368,1,"Picasso",43.5917,1.31826,0,0,OTL:SA:1970324837636086,Europe/Paris,0,OTL, +OTL:SP:3377699721189371,1,"Longchamp",43.5925,1.32121,0,0,OTL:SA:1970324837189360,Europe/Paris,2,OTL, +OTL:SP:3377699721189373,1,"Estérel",43.5954,1.32635,0,0,OTL:SA:1970324837189844,Europe/Paris,0,OTL, +OTL:SP:3377699721189374,1,"Cabirol",43.5967,1.32748,0,0,OTL:SA:1970324837189845,Europe/Paris,2,OTL, +OTL:SP:3377699721189378,1,"Hall Comminges",43.6093,1.33082,0,0,OTL:SA:1970324837636097,Europe/Paris,2,OTL, +OTL:SP:3377699721189379,1,"Hall Comminges",43.6091,1.33095,0,0,OTL:SA:1970324837636097,Europe/Paris,0,OTL, +OTL:SP:3377699721189384,1,"Larzac",43.5932,1.3241,0,0,OTL:SA:1970324837188429,Europe/Paris,0,OTL, +OTL:SP:3377699721189386,1,"Colomiers Airbus",43.6148,1.3532,0,0,OTL:SA:1970324837189829,Europe/Paris,2,OTL, +OTL:SP:3377699721201737,1,"Piscine St-Orens",43.5336,1.55391,0,0,OTL:SA:1970324837648456,Europe/Paris,2,OTL, +OTL:SP:3377699721201741,1,"Parc du Canal",43.5533,1.48507,0,0,OTL:SA:1970324837648460,Europe/Paris,0,OTL, +OTL:SP:3377699721201757,1,"Piscine St-Orens",43.5331,1.55317,0,0,OTL:SA:1970324837648456,Europe/Paris,0,OTL, +OTL:SP:3377699721202019,1,"Champs Magnétiques",43.5665,1.46825,0,0,OTL:SA:1970324837648738,Europe/Paris,0,OTL, +OTL:SP:3377699721202026,1,"Champs Magnétiques",43.5661,1.46857,0,0,OTL:SA:1970324837648738,Europe/Paris,2,OTL, +OTL:SP:3377699721206684,1,"Max Planck",43.5496,1.51484,0,0,OTL:SA:1970324837653403,Europe/Paris,2,OTL, +OTL:SP:3377699721206686,1,"Max Planck",43.5496,1.515,0,0,OTL:SA:1970324837653403,Europe/Paris,2,OTL, +OTL:SP:3377699721206839,1,"Montségur",43.5995,1.6045,0,0,OTL:SA:1970324837653558,Europe/Paris,0,OTL, +OTL:SP:3377699721228205,1,"Quart",43.5241,1.38445,0,0,OTL:SA:1970324837185501,Europe/Paris,0,OTL, +OTL:SP:3377699721228206,1,"Cerisiers",43.5276,1.37725,0,0,OTL:SA:1970324837185499,Europe/Paris,2,OTL, +OTL:SP:3377699721228208,1,"Palarin",43.5247,1.38757,0,0,OTL:SA:1970324837185502,Europe/Paris,2,OTL, +OTL:SP:3377699721228212,1,"Collège Pechbonnieu",43.7053,1.463,0,0,AEC:SA:15278,Europe/Paris,2,OTL, +OTL:SP:3377699721324382,1,"Carènes",43.6239,1.48419,0,0,OTL:SA:1970324837771101,Europe/Paris,0,OTL, +OTL:SP:3377699721324384,1,"Carènes",43.6241,1.4841,0,0,OTL:SA:1970324837771101,Europe/Paris,2,OTL, +OTL:SP:3377699721324388,1,"Arènes Al Pechiou",43.6142,1.4891,0,0,OTL:SA:1970324837190581,Europe/Paris,2,OTL, +OTL:SP:3377699721324389,1,"Arènes Al Pechiou",43.6141,1.48917,0,0,OTL:SA:1970324837190581,Europe/Paris,2,OTL, +OTL:SP:3377699721327969,1,"Verdaï",43.5263,1.36979,0,0,OTL:SA:1970324837774688,Europe/Paris,2,OTL, +OTL:SP:3377699721327970,1,"Verdaï",43.5262,1.36964,0,0,OTL:SA:1970324837774688,Europe/Paris,0,OTL, +OTL:SP:3377699721327972,1,"Pradié",43.5274,1.37154,0,0,OTL:SA:1970324837774691,Europe/Paris,2,OTL, +OTL:SP:3377699721327973,1,"Pradié",43.5278,1.37182,0,0,OTL:SA:1970324837774691,Europe/Paris,2,OTL, +OTL:SP:3377699721342244,1,"La Bisto",43.6683,1.51473,0,0,OTL:SA:1970324837788963,Europe/Paris,0,OTL, +OTL:SP:3377699721343366,1,"Montségur",43.5991,1.60408,0,0,OTL:SA:1970324837653558,Europe/Paris,0,OTL, +OTL:SP:3377699721352311,1,"Poumirol",43.5007,1.5164,0,0,OTL:SA:1970324837799030,Europe/Paris,2,OTL, +OTL:SP:3377699721352313,1,"Raisin",43.5057,1.51498,0,0,OTL:SA:1970324837799032,Europe/Paris,2,OTL, +OTL:SP:3377699721376134,1,"Lardenne",43.5901,1.37777,0,0,OTL:SA:1970329131942029,Europe/Paris,2,OTL, +OTL:SP:3377699721376135,1,"Lardenne",43.59,1.37759,0,0,OTL:SA:1970329131942029,Europe/Paris,2,OTL, +OTL:SP:3377699721664436,1,"Joliot Curie",43.5511,1.48427,0,0,OTL:SA:1970324838111155,Europe/Paris,2,OTL, +OTL:SP:3377699721664438,1,"Hermès",43.5497,1.4863,0,0,OTL:SA:1970324838111157,Europe/Paris,2,OTL, +OTL:SP:3377699721676079,1,"Les Ambrits",43.653,1.31903,0,0,OTL:SA:1970324837184626,Europe/Paris,2,OTL, +OTL:SP:3377699721676080,1,"Berlioz",43.6555,1.31894,0,0,OTL:SA:1970324837363861,Europe/Paris,2,OTL, +OTL:SP:3377699721725507,1,"Jean Petit",43.6052,1.36192,0,0,OTL:SA:1970324838172226,Europe/Paris,2,OTL, +OTL:SP:3377699721725508,1,"Jean Petit",43.6049,1.36137,0,0,OTL:SA:1970324838172226,Europe/Paris,2,OTL, +OTL:SP:3377699721753904,1,"Mirabeau",43.5753,1.32005,0,0,OTL:SA:1970324837186575,Europe/Paris,2,OTL, +OTL:SP:3377699721753906,1,"Collège Labitrie",43.5788,1.3245,0,0,OTL:SA:1970324838200625,Europe/Paris,2,OTL, +OTL:SP:3377699721753908,1,"Bordeneuve",43.5779,1.32188,0,0,OTL:SA:1970324838200627,Europe/Paris,0,OTL, +OTL:SP:3377699721753909,1,"Bordeneuve",43.578,1.32201,0,0,OTL:SA:1970324838200627,Europe/Paris,2,OTL, +OTL:SP:3377699721753910,1,"Petit Train",43.5769,1.31941,0,0,OTL:SA:1970324837189357,Europe/Paris,0,OTL, +OTL:SP:3377699721823283,1,"Marie Curie",43.494,1.31168,0,0,OTL:SA:1970324838270002,Europe/Paris,2,OTL, +OTL:SP:3377699721823284,1,"Marie Curie",43.4938,1.31211,0,0,OTL:SA:1970324838270002,Europe/Paris,2,OTL, +OTL:SP:3377699721872145,1,"Barrière de Lombez",43.5955,1.41951,0,0,OTL:SA:1970324837184867,Europe/Paris,2,OTL, +OTL:SP:3377699721872147,1,"Barrière de Paris",43.6265,1.43285,0,0,OTL:SA:1970324837185046,Europe/Paris,2,OTL, +OTL:SP:3377699721872148,1,"Barrière de Paris",43.6266,1.43288,0,0,OTL:SA:1970324837185046,Europe/Paris,2,OTL, +OTL:SP:3377699721872152,1,"Empalot",43.5801,1.44203,0,0,OTL:SA:1970324837186130,Europe/Paris,2,OTL, +OTL:SP:3377699721872154,1,"Empalot",43.5799,1.44212,0,0,OTL:SA:1970324837186130,Europe/Paris,2,OTL, +OTL:SP:3377699721872155,1,"Empalot",43.5799,1.44212,0,0,OTL:SA:1970324837186130,Europe/Paris,2,OTL, +OTL:SP:3377699721872160,1,"Trois Cocus",43.6386,1.44413,0,0,OTL:SA:1970324837184958,Europe/Paris,2,OTL, +OTL:SP:3377699721872162,1,"Trois Cocus",43.6379,1.44405,0,0,OTL:SA:1970324837184958,Europe/Paris,2,OTL, +OTL:SP:3377699721872163,1,"Trois Cocus",43.6379,1.44405,0,0,OTL:SA:1970324837184958,Europe/Paris,2,OTL, +OTL:SP:3377699721872165,1,"Cours Dillon",43.5987,1.43732,0,0,OTL:SA:1970324837184995,Europe/Paris,2,OTL, +OTL:SP:3377699721872214,1,"Sarah Bernhardt",43.6518,1.43818,0,0,OTL:SA:1970324838318933,Europe/Paris,2,OTL, +OTL:SP:3377699721872215,1,"Sarah Bernhardt",43.6512,1.43827,0,0,OTL:SA:1970324838318933,Europe/Paris,2,OTL, +OTL:SP:3377699721872216,1,"Stadium Ouest",43.5844,1.43132,0,0,OTL:SA:1970324837408402,Europe/Paris,2,OTL, +OTL:SP:3377699721872217,1,"Stadium Ouest",43.5845,1.43203,0,0,OTL:SA:1970324837408402,Europe/Paris,2,OTL, +OTL:SP:3377699721872227,1,"Stadium Est",43.5842,1.43684,0,0,OTL:SA:1970324838318946,Europe/Paris,2,OTL, +OTL:SP:3377699721872233,1,"Stadium Est",43.5842,1.43761,0,0,OTL:SA:1970324838318946,Europe/Paris,2,OTL, +OTL:SP:3377699721872235,1,"Rangueil",43.5744,1.46259,0,0,OTL:SA:1970324838318954,Europe/Paris,2,OTL, +OTL:SP:3377699721872236,1,"Rangueil",43.5748,1.46183,0,0,OTL:SA:1970324838318954,Europe/Paris,2,OTL, +OTL:SP:3377699721872237,1,"Rangueil",43.5748,1.46183,0,0,OTL:SA:1970324838318954,Europe/Paris,2,OTL, +OTL:SP:3377699721872248,1,"Claude Bernard",43.6367,1.44093,0,0,OTL:SA:1970324838318967,Europe/Paris,0,OTL, +OTL:SP:3377699721872252,1,"Boulbonne",43.6006,1.44749,0,0,OTL:SA:1970324838318971,Europe/Paris,2,OTL, +OTL:SP:3377699721872253,1,"Boulbonne",43.6006,1.44799,0,0,OTL:SA:1970324838318971,Europe/Paris,2,OTL, +OTL:SP:3377699721872256,1,"Université Paul Sabatier",43.5601,1.46356,0,0,OTL:SA:1970324837185012,Europe/Paris,2,OTL, +OTL:SP:3377699721872257,1,"Université Paul Sabatier",43.5611,1.4632,0,0,OTL:SA:1970324837185012,Europe/Paris,2,OTL, +OTL:SP:3377699721872258,1,"Université Paul Sabatier",43.5611,1.4632,0,0,OTL:SA:1970324837185012,Europe/Paris,2,OTL, +OTL:SP:3377699721872260,1,"Salin-Parlement",43.5946,1.44421,0,0,OTL:SA:1970324838318979,Europe/Paris,2,OTL, +OTL:SP:3377699721872265,1,"Palais de Justice",43.5926,1.44404,0,0,OTL:SA:1970324837184792,Europe/Paris,2,OTL, +OTL:SP:3377699721872266,1,"Palais de Justice",43.5926,1.44404,0,0,OTL:SA:1970324837184792,Europe/Paris,2,OTL, +OTL:SP:3377699721872269,1,"Silvio Trentin",43.6243,1.42859,0,0,OTL:SA:1970324837186019,Europe/Paris,2,OTL, +OTL:SP:3377699721872272,1,"Pujibet",43.635,1.45543,0,0,OTL:SA:1970324838318991,Europe/Paris,2,OTL, +OTL:SP:3377699721872273,1,"Pujibet",43.6351,1.45537,0,0,OTL:SA:1970324838318991,Europe/Paris,2,OTL, +OTL:SP:3377699721872295,1,"Aristote",43.5837,1.45646,0,0,OTL:SA:1970324838319014,Europe/Paris,2,OTL, +OTL:SP:3377699721872297,1,"Aristote",43.5841,1.45606,0,0,OTL:SA:1970324838319014,Europe/Paris,0,OTL, +OTL:SP:3377699721872301,1,"Provence",43.5817,1.45767,0,0,OTL:SA:1970324838319020,Europe/Paris,2,OTL, +OTL:SP:3377699721872303,1,"Provence",43.5823,1.45768,0,0,OTL:SA:1970324838319020,Europe/Paris,2,OTL, +OTL:SP:3377699721872305,1,"Saouzelong",43.5795,1.45917,0,0,OTL:SA:1970324838319024,Europe/Paris,2,OTL, +OTL:SP:3377699721872306,1,"Saouzelong",43.5795,1.45917,0,0,OTL:SA:1970324838319024,Europe/Paris,2,OTL, +OTL:SP:3377699721872309,1,"Saouzelong",43.5795,1.45957,0,0,OTL:SA:1970324838319024,Europe/Paris,2,OTL, +OTL:SP:3377699721872310,1,"Saouzelong",43.5795,1.45951,0,0,OTL:SA:1970324838319024,Europe/Paris,2,OTL, +OTL:SP:3377699721872313,1,"Pastourelles",43.577,1.45587,0,0,OTL:SA:1970324838319032,Europe/Paris,2,OTL, +OTL:SP:3377699721872314,1,"Pastourelles",43.5767,1.45549,0,0,OTL:SA:1970324838319032,Europe/Paris,2,OTL, +OTL:SP:3377699721872317,1,"Pyrénées",43.5129,1.38707,0,0,OTL:SA:1970329131942136,Europe/Paris,2,OTL, +OTL:SP:3377699721872346,1,"Colomiers Gare SNCF",43.6044,1.33472,0,0,OTL:SA:1970324837184752,Europe/Paris,2,OTL, +OTL:SP:3377699721872350,1,"Borderouge",43.6414,1.45259,0,0,AEC:SA:01961,Europe/Paris,2,OTL, +OTL:SP:3377699721872351,1,"Borderouge",43.6415,1.4524,0,0,AEC:SA:01961,Europe/Paris,2,OTL, +OTL:SP:3377699721872353,1,"Borderouge",43.6418,1.45285,0,0,AEC:SA:01961,Europe/Paris,2,OTL, +OTL:SP:3377699721872354,1,"Borderouge",43.6417,1.45258,0,0,AEC:SA:01961,Europe/Paris,2,OTL, +OTL:SP:3377699721872358,1,"Borderouge",43.6408,1.45263,0,0,AEC:SA:01961,Europe/Paris,2,OTL, +OTL:SP:3377699721872359,1,"Borderouge",43.6408,1.45263,0,0,AEC:SA:01961,Europe/Paris,2,OTL, +OTL:SP:3377699721872361,1,"La Vache",43.6336,1.43495,0,0,OTL:SA:1970324838319080,Europe/Paris,2,OTL, +OTL:SP:3377699721872362,1,"La Vache",43.6336,1.43495,0,0,OTL:SA:1970324838319080,Europe/Paris,2,OTL, +OTL:SP:3377699721872366,1,"La Vache",43.6337,1.43518,0,0,OTL:SA:1970324838319080,Europe/Paris,2,OTL, +OTL:SP:3377699721872369,1,"Lycée Toulouse-Lautrec",43.6268,1.44383,0,0,AEC:SA:02045,Europe/Paris,2,OTL, +OTL:SP:3377699721881199,1,"Jean Jaurès",43.606,1.44914,0,0,AEC:SA:02023,Europe/Paris,2,OTL, +OTL:SP:3377699721881200,1,"Jean Jaurès",43.606,1.44914,0,0,AEC:SA:02023,Europe/Paris,2,OTL, +OTL:SP:3377699721902047,1,"Jean Jaurès",43.605,1.44919,0,0,AEC:SA:02023,Europe/Paris,2,OTL, +OTL:SP:3377699721902049,1,"Université Paul Sabatier",43.56,1.46367,0,0,OTL:SA:1970324837185012,Europe/Paris,2,OTL, +OTL:SP:3377699721902050,1,"Université Paul Sabatier",43.5603,1.46357,0,0,OTL:SA:1970324837185012,Europe/Paris,2,OTL, +OTL:SP:3377699721902052,1,"Coquille",43.606,1.47364,0,0,OTL:SA:1970324837186063,Europe/Paris,2,OTL, +OTL:SP:3377699721902053,1,"Trois Fours",43.5861,1.46128,0,0,OTL:SA:1970324837185312,Europe/Paris,2,OTL, +OTL:SP:3377699721902056,1,"Tolosane",43.5458,1.5101,0,0,OTL:SA:1970324837186857,Europe/Paris,2,OTL, +OTL:SP:3377699721902060,1,"Borderouge",43.6414,1.45235,0,0,AEC:SA:01961,Europe/Paris,2,OTL, +OTL:SP:3377699721902062,1,"Borderouge",43.6418,1.45292,0,0,AEC:SA:01961,Europe/Paris,2,OTL, +OTL:SP:3377699721902063,1,"Compans-Caffarelli",43.6107,1.43548,0,0,AEC:SA:01981,Europe/Paris,2,OTL, +OTL:SP:3377699721902064,1,"Compans-Caffarelli",43.6099,1.43488,0,0,AEC:SA:01981,Europe/Paris,2,OTL, +OTL:SP:3377699721902065,1,"Compans-Caffarelli",43.6106,1.43566,0,0,AEC:SA:01981,Europe/Paris,2,OTL, +OTL:SP:3377699721902066,1,"Compans - Caffarelli",43.6109,1.43555,0,0,AEC:SA:01981,Europe/Paris,2,OTL, +OTL:SP:3377699721902067,1,"Compans - Caffarelli",43.6109,1.43555,0,0,AEC:SA:01981,Europe/Paris,2,OTL, +OTL:SP:3377699721902068,1,"Empalot",43.5805,1.44165,0,0,OTL:SA:1970324837186130,Europe/Paris,2,OTL, +OTL:SP:3377699721902069,1,"Lebas",43.5771,1.44143,0,0,OTL:SA:1970324837186128,Europe/Paris,2,OTL, +OTL:SP:3377699721902071,1,"Palais de Justice",43.5928,1.44408,0,0,OTL:SA:1970324837184792,Europe/Paris,2,OTL, +OTL:SP:3377699721902072,1,"Ebelot",43.643,1.46219,0,0,OTL:SA:1970324837502001,Europe/Paris,2,OTL, +OTL:SP:3377699721902073,1,"Champagne",43.6168,1.33054,0,0,OTL:SA:1970324837186549,Europe/Paris,2,OTL, +OTL:SP:3377699721902078,1,"Lécrivain",43.5738,1.48884,0,0,OTL:SA:1970324838348797,Europe/Paris,0,OTL, +OTL:SP:3377699721902079,1,"Lécrivain",43.5738,1.48893,0,0,OTL:SA:1970324838348797,Europe/Paris,0,OTL, +OTL:SP:3377699721902081,1,"Ramonville",43.5558,1.47653,0,0,AEC:SA:02327,Europe/Paris,2,OTL, +OTL:SP:3377699721902082,1,"Ramonville",43.5558,1.47653,0,0,AEC:SA:02327,Europe/Paris,2,OTL, +OTL:SP:3377699721902084,1,"Ramonville",43.556,1.47714,0,0,AEC:SA:02327,Europe/Paris,2,OTL, +OTL:SP:3377699721902088,1,"Passerelle St-Sauveur",43.5942,1.45707,0,0,OTL:SA:1970324838348807,Europe/Paris,2,OTL, +OTL:SP:3377699721902089,1,"Passerelle St-Sauveur",43.5942,1.4572,0,0,OTL:SA:1970324838348807,Europe/Paris,2,OTL, +OTL:SP:3377699721902091,1,"Archives Départementales",43.5906,1.46044,0,0,OTL:SA:1970324838348810,Europe/Paris,2,OTL, +OTL:SP:3377699721902092,1,"Archives Départementales",43.5903,1.46065,0,0,OTL:SA:1970324838348810,Europe/Paris,2,OTL, +OTL:SP:3377699721902094,1,"Collège André Malraux",43.5491,1.47952,0,0,OTL:SA:1970324838348813,Europe/Paris,2,OTL, +OTL:SP:3377699721902095,1,"Collège André Malraux",43.5491,1.4795,0,0,OTL:SA:1970324838348813,Europe/Paris,2,OTL, +OTL:SP:3377699721902097,1,"8 mai 1945",43.5407,1.48175,0,0,OTL:SA:1970324838348816,Europe/Paris,2,OTL, +OTL:SP:3377699721902098,1,"8 mai 1945",43.5407,1.48176,0,0,OTL:SA:1970324838348816,Europe/Paris,2,OTL, +OTL:SP:3377699721902099,1,"Ramonville Sud",43.5375,1.48199,0,0,OTL:SA:1970329131942075,Europe/Paris,2,OTL, +OTL:SP:3377699721902100,1,"Ramonville Sud",43.5375,1.48202,0,0,OTL:SA:1970329131942075,Europe/Paris,2,OTL, +OTL:SP:3377699721902101,1,"François Verdier",43.6009,1.45175,0,0,OTL:SA:1970324837185541,Europe/Paris,2,OTL, +OTL:SP:3377699721902102,1,"François Verdier",43.6005,1.45213,0,0,OTL:SA:1970324837185541,Europe/Paris,2,OTL, +OTL:SP:3377699721902103,1,"François Verdier",43.6007,1.45267,0,0,OTL:SA:1970324837185541,Europe/Paris,2,OTL, +OTL:SP:3377699721902104,1,"François Verdier",43.6007,1.45267,0,0,OTL:SA:1970324837185541,Europe/Paris,2,OTL, +OTL:SP:3377699721902106,1,"Morbihan",43.6172,1.31913,0,0,OTL:SA:1970329131942327,Europe/Paris,2,OTL, +OTL:SP:3377699721902108,1,"Stade Bendichou",43.6179,1.32578,0,0,OTL:SA:1970324837189866,Europe/Paris,2,OTL, +OTL:SP:3377699721902109,1,"Médiathèque Pavillon Blanc",43.609,1.33605,0,0,OTL:SA:1970329131942325,Europe/Paris,0,OTL, +OTL:SP:3377699721902112,1,"Monturon",43.6167,1.31042,0,0,OTL:SA:1970324838348831,Europe/Paris,2,OTL, +OTL:SP:3377699721902113,1,"Monturon",43.6166,1.31047,0,0,OTL:SA:1970324838348831,Europe/Paris,2,OTL, +OTL:SP:3377699721902115,1,"Colomiers Lycée International",43.617,1.30878,0,0,OTL:SA:1970324838348834,Europe/Paris,2,OTL, +OTL:SP:3377699721902122,1,"Port St-Etienne",43.5999,1.45669,0,0,OTL:SA:1970329131942213,Europe/Paris,2,OTL, +OTL:SP:3377699722011024,1,"Barrière de Paris",43.6269,1.43425,0,0,OTL:SA:1970324837185046,Europe/Paris,2,OTL, +OTL:SP:3377699722011025,1,"Barrière de Paris",43.6269,1.43425,0,0,OTL:SA:1970324837185046,Europe/Paris,2,OTL, +OTL:SP:3377699722011029,1,"Minimes - Cl. Nougaro",43.6206,1.43584,0,0,OTL:SA:1970324837185974,Europe/Paris,2,OTL, +OTL:SP:3377699722011031,1,"Minimes - Cl. Nougaro",43.6206,1.43584,0,0,OTL:SA:1970324837185974,Europe/Paris,2,OTL, +OTL:SP:3377699722011033,1,"Canal du Midi",43.6154,1.43363,0,0,OTL:SA:1970324837186027,Europe/Paris,2,OTL, +OTL:SP:3377699722011034,1,"Canal du Midi",43.6154,1.43363,0,0,OTL:SA:1970324837186027,Europe/Paris,2,OTL, +OTL:SP:3377699722011039,1,"Jeanne d'Arc",43.6092,1.44577,0,0,OTL:SA:1970324837184932,Europe/Paris,2,OTL, +OTL:SP:3377699722011040,1,"Jeanne d'Arc",43.6092,1.44577,0,0,OTL:SA:1970324837184932,Europe/Paris,2,OTL, +OTL:SP:3377699722011093,1,"Carmes",43.5979,1.44543,0,0,OTL:SA:1970324837185017,Europe/Paris,2,OTL, +OTL:SP:3377699722011094,1,"Carmes",43.5979,1.44543,0,0,OTL:SA:1970324837185017,Europe/Paris,2,OTL, +OTL:SP:3377699722011097,1,"St Michel - Marcel Langer",43.5862,1.44668,0,0,OTL:SA:1970324837185941,Europe/Paris,2,OTL, +OTL:SP:3377699722011098,1,"St Michel - Marcel Langer",43.5862,1.44668,0,0,OTL:SA:1970324837185941,Europe/Paris,2,OTL, +OTL:SP:3377699722011100,1,"Saint Agne-SNCF",43.58,1.44984,0,0,OTL:SA:1970324837184617,Europe/Paris,2,OTL, +OTL:SP:3377699722011101,1,"Saint Agne-SNCF",43.58,1.44984,0,0,OTL:SA:1970324837184617,Europe/Paris,2,OTL, +OTL:SP:3377699722011102,1,"Faculté de Pharmacie",43.5681,1.46469,0,0,OTL:SA:1970324837185357,Europe/Paris,2,OTL, +OTL:SP:3377699722011103,1,"Faculté de Pharmacie",43.5681,1.46469,0,0,OTL:SA:1970324837185357,Europe/Paris,2,OTL, +OTL:SP:3377699722035289,1,"Ctre Cial Castanet",43.5213,1.5129,0,0,OTL:SA:1970324838482008,Europe/Paris,2,OTL, +OTL:SP:3377699722051850,1,"Ramonville",43.5558,1.47742,0,0,AEC:SA:02327,Europe/Paris,2,OTL, +OTL:SP:3377699722083342,1,"Canal du Midi",43.6152,1.43477,0,0,OTL:SA:1970324837186027,Europe/Paris,2,OTL, +OTL:SP:3377699722083345,1,"Université Paul Sabatier",43.5606,1.46334,0,0,OTL:SA:1970324837185012,Europe/Paris,2,OTL, +OTL:SP:3377699722114435,1,"Empalot",43.5799,1.44143,0,0,OTL:SA:1970324837186130,Europe/Paris,2,OTL, +OTL:SP:3377699722114443,1,"Ctre Cial",43.683,1.44704,0,0,OTL:SA:1970324838561162,Europe/Paris,0,OTL, +OTL:SP:3377699722114444,1,"Ctre Cial",43.683,1.44742,0,0,OTL:SA:1970324838561162,Europe/Paris,0,OTL, +OTL:SP:3377699722114446,1,"Esparcette",43.6841,1.44093,0,0,OTL:SA:1970324838561165,Europe/Paris,0,OTL, +OTL:SP:3377699722114447,1,"Esparcette",43.684,1.44113,0,0,OTL:SA:1970324838561165,Europe/Paris,0,OTL, +OTL:SP:3377699722114448,1,"Mermoz",43.6816,1.43529,0,0,OTL:SA:1970324837190526,Europe/Paris,2,OTL, +OTL:SP:3377699722114449,1,"Vendanges",43.6798,1.43149,0,0,OTL:SA:1970324837190525,Europe/Paris,0,OTL, +OTL:SP:3377699722114450,1,"Fonbeauzard Mairie",43.6797,1.42727,0,0,OTL:SA:1970324837190521,Europe/Paris,0,OTL, +OTL:SP:3377699722114453,1,"Tournefeuille Lycée",43.5764,1.31431,0,0,OTL:SA:1970324838561171,Europe/Paris,2,OTL, +OTL:SP:3377699722114455,1,"Castanet-Tolosan",43.5084,1.50721,0,0,OTL:SA:1970324838561174,Europe/Paris,2,OTL, +OTL:SP:3377699722193944,1,"Ctre Cial Labège",43.5489,1.5062,0,0,OTL:SA:1970324837186881,Europe/Paris,2,OTL, +OTL:SP:3377699722193950,1,"Prologue",43.5481,1.50765,0,0,OTL:SA:1970329131942198,Europe/Paris,2,OTL, +OTL:SP:3377699722238884,1,"L'écrin",43.5512,1.51603,0,0,OTL:SA:1970324837482764,Europe/Paris,0,OTL, +OTL:SP:3377699722238891,1,"Tolosane",43.5451,1.51043,0,0,OTL:SA:1970324837186857,Europe/Paris,2,OTL, +OTL:SP:3377699722238896,1,"Av. de Toulouse",43.5606,1.52289,0,0,OTL:SA:1970324837482768,Europe/Paris,0,OTL, +OTL:SP:3377699722238902,1,"Ch. des Martyrs",43.5705,1.41991,0,0,OTL:SA:1970324839637228,Europe/Paris,0,OTL, +OTL:SP:3377699722271729,1,"Peries",43.5125,1.5011,0,0,OTL:SA:1970324837186501,Europe/Paris,2,OTL, +OTL:SP:3377699722271730,1,"INRA",43.525,1.50028,0,0,OTL:SA:1970324837189434,Europe/Paris,2,OTL, +OTL:SP:3377699722271732,1,"Castanet-Tolosan",43.5084,1.50666,0,0,OTL:SA:1970324838561174,Europe/Paris,2,OTL, +OTL:SP:3377699722295573,1,"Platanes",43.586,1.43939,0,0,OTL:SA:1970324838742292,Europe/Paris,2,OTL, +OTL:SP:3377699722295574,1,"Platanes",43.5868,1.43945,0,0,OTL:SA:1970324838742292,Europe/Paris,0,OTL, +OTL:SP:3377699722306726,1,"Ribaute",43.5886,1.51589,0,0,OTL:SA:1970324837186797,Europe/Paris,2,OTL, +OTL:SP:3377699722306727,1,"Ribaute",43.5888,1.51581,0,0,OTL:SA:1970324837186797,Europe/Paris,2,OTL, +OTL:SP:3377699722306728,1,"Montels",43.5863,1.52201,0,0,OTL:SA:1970324837186796,Europe/Paris,2,OTL, +OTL:SP:3377699722306729,1,"Montels",43.5873,1.5198,0,0,OTL:SA:1970324837186796,Europe/Paris,2,OTL, +OTL:SP:3377699722321520,1,"Sicard",43.5581,1.5273,0,0,OTL:SA:1970324837186842,Europe/Paris,2,OTL, +OTL:SP:3377699722321521,1,"Sicard",43.5582,1.52733,0,0,OTL:SA:1970324837186842,Europe/Paris,2,OTL, +OTL:SP:3377699722327179,1,"Balma-Gramont",43.6282,1.48211,0,0,AEC:SA:00134,Europe/Paris,2,OTL, +OTL:SP:3377699722327183,1,"Monplaisir",43.583,1.53411,0,0,OTL:SA:1970324838773902,Europe/Paris,0,OTL, +OTL:SP:3377699722327184,1,"Monplaisir",43.5833,1.53382,0,0,OTL:SA:1970324838773902,Europe/Paris,2,OTL, +OTL:SP:3377699722338142,1,"Netwiller",43.6424,1.46574,0,0,OTL:SA:1970324837560348,Europe/Paris,2,OTL, +OTL:SP:3377699722338143,1,"Netwiller",43.6423,1.46597,0,0,OTL:SA:1970324837560348,Europe/Paris,2,OTL, +OTL:SP:3377699722338144,1,"Lagarde",43.6011,1.49666,0,0,OTL:SA:1970324837186705,Europe/Paris,2,OTL, +OTL:SP:3377699722338145,1,"Lagarde",43.6012,1.49657,0,0,OTL:SA:1970324837186705,Europe/Paris,2,OTL, +OTL:SP:3377699722338148,1,"Fonsegrives Centre",43.5855,1.52888,0,0,OTL:SA:1970324837186800,Europe/Paris,2,OTL, +OTL:SP:3377699722354887,1,"Bûches",43.6361,1.39366,0,0,OTL:SA:1970324837189326,Europe/Paris,0,OTL, +OTL:SP:3377699722354891,1,"De Gaulle",43.6429,1.38673,0,0,OTL:SA:1970324837189307,Europe/Paris,2,OTL, +OTL:SP:3377699722386565,1,"La Vache",43.6336,1.43541,0,0,OTL:SA:1970324838319080,Europe/Paris,2,OTL, +OTL:SP:3377699722386570,1,"Terroir 3",43.7064,1.39963,0,0,OTL:SA:1970324838833289,Europe/Paris,0,OTL, +OTL:SP:3377699722386814,1,"Université Paul Sabatier",43.5602,1.46341,0,0,OTL:SA:1970324837185012,Europe/Paris,2,OTL, +OTL:SP:3377699722386833,1,"Ramonville",43.5559,1.4777,0,0,AEC:SA:02327,Europe/Paris,2,OTL, +OTL:SP:3377699722386836,1,"Ramonville",43.5558,1.47776,0,0,AEC:SA:02327,Europe/Paris,2,OTL, +OTL:SP:3377699722387430,1,"Adonis",43.6309,1.42368,0,0,OTL:SA:1970324838834149,Europe/Paris,0,OTL, +OTL:SP:3377699722387432,1,"Pont de Ginestous",43.633,1.4233,0,0,OTL:SA:1970324838834151,Europe/Paris,2,OTL, +OTL:SP:3377699722387434,1,"Laurencin",43.6354,1.41804,0,0,OTL:SA:1970324838834153,Europe/Paris,2,OTL, +OTL:SP:3377699722387436,1,"Eberhardt",43.6403,1.41537,0,0,OTL:SA:1970324838834155,Europe/Paris,2,OTL, +OTL:SP:3377699722387438,1,"ZI La Glacière",43.643,1.41658,0,0,OTL:SA:1970324838834157,Europe/Paris,2,OTL, +OTL:SP:3377699722387440,1,"Pôle",43.6457,1.41956,0,0,OTL:SA:1970329131942373,Europe/Paris,2,OTL, +OTL:SP:3377699722387592,1,"Université Paul Sabatier",43.5605,1.46284,0,0,OTL:SA:1970324837185012,Europe/Paris,2,OTL, +OTL:SP:3377699722423178,1,"Montjoie",43.5387,1.46022,0,0,OTL:SA:1970324838869897,Europe/Paris,2,OTL, +OTL:SP:3377699722423180,1,"Coustet",43.5499,1.4674,0,0,OTL:SA:1970324838869899,Europe/Paris,2,OTL, +OTL:SP:3377699722423185,1,"Ramonville",43.5561,1.47798,0,0,AEC:SA:02327,Europe/Paris,2,OTL, +OTL:SP:3377699722423655,1,"Palais de Justice",43.5923,1.44453,0,0,OTL:SA:1970324837184792,Europe/Paris,2,OTL, +OTL:SP:3377699722423659,1,"Porte de Virebent",43.6595,1.45395,0,0,OTL:SA:1970324838870378,Europe/Paris,2,OTL, +OTL:SP:3377699722423660,1,"Porte de Virebent",43.6594,1.45397,0,0,OTL:SA:1970324838870378,Europe/Paris,2,OTL, +OTL:SP:3377699722489566,1,"Domaine",43.5762,1.34794,0,0,OTL:SA:1970324838936285,Europe/Paris,2,OTL, +OTL:SP:3377699722500907,1,"Pader",43.6364,1.43261,0,0,OTL:SA:1970324837186411,Europe/Paris,2,OTL, +OTL:SP:3377699722555964,1,"Frouzins JP Sabatier",43.5252,1.3205,0,0,OTL:SA:1970324839002683,Europe/Paris,2,OTL, +OTL:SP:3377699722591445,1,"INSA",43.5737,1.4647,0,0,OTL:SA:1970324837186111,Europe/Paris,2,OTL, +OTL:SP:3377699722591446,1,"INSA",43.5737,1.46496,0,0,OTL:SA:1970324837186111,Europe/Paris,2,OTL, +OTL:SP:3377699722599634,1,"Lespinet Struxiano",43.5784,1.46832,0,0,OTL:SA:1970324837185373,Europe/Paris,2,OTL, +OTL:SP:3377699722609694,1,"Gleyze-Vieille",43.5468,1.46549,0,0,OTL:SA:1970324837185356,Europe/Paris,2,OTL, +OTL:SP:3377699722609695,1,"Gleyze-Vieille",43.547,1.46637,0,0,OTL:SA:1970324837185356,Europe/Paris,0,OTL, +OTL:SP:3377699722609696,1,"Eglise Ramonville",43.5513,1.46939,0,0,OTL:SA:1970324837186294,Europe/Paris,2,OTL, +OTL:SP:3377699722609700,1,"Salas Montjoie",43.54,1.46272,0,0,OTL:SA:1970324839056419,Europe/Paris,0,OTL, +OTL:SP:3377699722609711,1,"Communauté Religieuse",43.6114,1.53146,0,0,OTL:SA:1970324839056430,Europe/Paris,2,OTL, +OTL:SP:3377699722609712,1,"Communauté Religieuse",43.6114,1.5313,0,0,OTL:SA:1970324839056430,Europe/Paris,2,OTL, +OTL:SP:3377699722609737,1,"Vignalis",43.6019,1.54428,0,0,OTL:SA:1970324839056456,Europe/Paris,0,OTL, +OTL:SP:3377699722609739,1,"Ecole les Varennes",43.4773,1.6885,0,0,OTL:SA:1970324837190395,Europe/Paris,0,OTL, +OTL:SP:3377699722609740,1,"Mairie Odars",43.5236,1.58872,0,0,OTL:SA:1970324837190660,Europe/Paris,0,OTL, +OTL:SP:3377699722609747,1,"Labège Innopole Gare SNCF",43.5478,1.51366,0,0,OTL:SA:1970324837185293,Europe/Paris,2,OTL, +OTL:SP:3377699722609751,1,"CNES",43.5563,1.48144,0,0,OTL:SA:1970324838833582,Europe/Paris,2,OTL, +OTL:SP:3377699722609752,1,"Palombe Colombe",43.6889,1.40922,0,0,OTL:SA:1970324837190510,Europe/Paris,2,OTL, +OTL:SP:3377699722609753,1,"Bergeron",43.6991,1.40632,0,0,OTL:SA:1970324837190511,Europe/Paris,2,OTL, +OTL:SP:3377699722609754,1,"Terroir 1",43.7005,1.40216,0,0,OTL:SA:1970324837190514,Europe/Paris,0,OTL, +OTL:SP:3377699722609755,1,"Terroir 2",43.7031,1.40108,0,0,OTL:SA:1970324837190515,Europe/Paris,0,OTL, +OTL:SP:3377699722609756,1,"ZI Petit Paradis",43.7131,1.3963,0,0,OTL:SA:1970324837190516,Europe/Paris,0,OTL, +OTL:SP:3377699722609757,1,"Industrie",43.7169,1.39276,0,0,OTL:SA:1970324837190517,Europe/Paris,0,OTL, +OTL:SP:3377699722609759,1,"Capdejouan",43.7213,1.39505,0,0,OTL:SA:1970324837190519,Europe/Paris,2,OTL, +OTL:SP:3377699722609764,1,"Ticaille",43.4467,1.59778,0,0,OTL:SA:1970324837188010,Europe/Paris,2,OTL, +OTL:SP:3377699722609765,1,"Paradis",43.5047,1.5673,0,0,OTL:SA:1970324837190376,Europe/Paris,2,OTL, +OTL:SP:3377699722609766,1,"Mairie Belberaud",43.5073,1.56908,0,0,OTL:SA:1970324837190375,Europe/Paris,2,OTL, +OTL:SP:3377699722609767,1,"Le Pin",43.4899,1.49946,0,0,OTL:SA:1970324837190327,Europe/Paris,0,OTL, +OTL:SP:3377699722609768,1,"Centre Village",43.457,1.52113,0,0,OTL:SA:1970324837190372,Europe/Paris,0,OTL, +OTL:SP:3377699722609771,1,"Doret",43.6344,1.37666,0,0,OTL:SA:1970324837189337,Europe/Paris,2,OTL, +OTL:SP:3377699722609786,1,"René Rey",43.6364,1.37551,0,0,OTL:SA:1970324839056505,Europe/Paris,2,OTL, +OTL:SP:3377699722609787,1,"René Rey",43.6362,1.37553,0,0,OTL:SA:1970324839056505,Europe/Paris,2,OTL, +OTL:SP:3377699722670124,1,"République",43.6836,1.32052,0,0,OTL:SA:1970324837184884,Europe/Paris,2,OTL, +OTL:SP:3377699722717204,1,"Florence Arthaud",43.645,1.45603,0,0,OTL:SA:1970324839163923,Europe/Paris,0,OTL, +OTL:SP:3377699722717206,1,"Ayral",43.644,1.46188,0,0,OTL:SA:1970324839163925,Europe/Paris,2,OTL, +OTL:SP:3377699722717208,1,"Maupassant",43.6444,1.46506,0,0,OTL:SA:1970324839163927,Europe/Paris,2,OTL, +OTL:SP:3377699722717210,1,"Paléficat",43.6478,1.46544,0,0,OTL:SA:1970324839163929,Europe/Paris,2,OTL, +OTL:SP:3377699722717212,1,"Champs de l'Hers",43.6505,1.46556,0,0,OTL:SA:1970324839163931,Europe/Paris,0,OTL, +OTL:SP:3377699722717216,1,"Château",43.6507,1.46103,0,0,OTL:SA:1970324839163935,Europe/Paris,0,OTL, +OTL:SP:3377699722717219,1,"Furet",43.6534,1.46066,0,0,OTL:SA:1970324839163938,Europe/Paris,0,OTL, +OTL:SP:3377699722717221,1,"Félibres",43.6489,1.46329,0,0,OTL:SA:1970324839163940,Europe/Paris,0,OTL, +OTL:SP:3377699722717339,1,"Elvire",43.5787,1.44638,0,0,OTL:SA:1970324839164058,Europe/Paris,2,OTL, +OTL:SP:3377699722717341,1,"Miracles",43.5754,1.44917,0,0,OTL:SA:1970324839164060,Europe/Paris,2,OTL, +OTL:SP:3377699722717343,1,"Tolstoï",43.5746,1.44316,0,0,OTL:SA:1970324839164062,Europe/Paris,2,OTL, +OTL:SP:3377699722717345,1,"Bart",43.5711,1.44481,0,0,OTL:SA:1970324839164064,Europe/Paris,2,OTL, +OTL:SP:3377699722717347,1,"Piscine Pech David",43.5657,1.44717,0,0,OTL:SA:1970324839164066,Europe/Paris,2,OTL, +OTL:SP:3377699722717349,1,"Pech David",43.5612,1.44764,0,0,OTL:SA:1970324839164068,Europe/Paris,2,OTL, +OTL:SP:3377699722724032,1,"Piquemil",43.6123,1.3196,0,0,OTL:SA:1970324837189860,Europe/Paris,0,OTL, +OTL:SP:3377699722724033,1,"Tuilerie",43.6162,1.29006,0,0,OTL:SA:1970324837188855,Europe/Paris,0,OTL, +OTL:SP:3377699722724034,1,"Basilique",43.6177,1.28334,0,0,OTL:SA:1970324837185072,Europe/Paris,0,OTL, +OTL:SP:3377699722724035,1,"Stade",43.6151,1.27602,0,0,OTL:SA:1970324837185071,Europe/Paris,2,OTL, +OTL:SP:3377699722724036,1,"Château Cru",43.6127,1.26828,0,0,OTL:SA:1970324837188856,Europe/Paris,0,OTL, +OTL:SP:3377699722724037,1,"La Chauge",43.6155,1.25,0,0,OTL:SA:1970324837190345,Europe/Paris,0,OTL, +OTL:SP:3377699722724038,1,"Brax le Château",43.6169,1.24076,0,0,OTL:SA:1970324837185068,Europe/Paris,0,OTL, +OTL:SP:3377699722770341,1,"Arènes",43.5929,1.41793,0,0,AEC:SA:01942,Europe/Paris,2,OTL, +OTL:SP:3377699722770344,1,"Ancely",43.6183,1.3969,0,0,OTL:SA:1970324837184663,Europe/Paris,2,OTL, +OTL:SP:3377699722770345,1,"Ancely",43.6183,1.39685,0,0,OTL:SA:1970324837184663,Europe/Paris,2,OTL, +OTL:SP:3377699722770347,1,"Servanty Airbus",43.6255,1.3934,0,0,OTL:SA:1970324837184661,Europe/Paris,2,OTL, +OTL:SP:3377699722770348,1,"Servanty Airbus",43.6256,1.39333,0,0,OTL:SA:1970324837184661,Europe/Paris,2,OTL, +OTL:SP:3377699722770349,1,"Casselardit",43.6032,1.40776,0,0,OTL:SA:1970324837186008,Europe/Paris,2,OTL, +OTL:SP:3377699722770350,1,"Casselardit",43.6032,1.40765,0,0,OTL:SA:1970324837186008,Europe/Paris,2,OTL, +OTL:SP:3377699722770352,1,"Andromède-Lycée",43.6548,1.37365,0,0,AEC:SA:00263,Europe/Paris,2,OTL, +OTL:SP:3377699722770353,1,"Andromède-Lycée",43.6549,1.37347,0,0,AEC:SA:00263,Europe/Paris,2,OTL, +OTL:SP:3377699722770354,1,"Grand Noble",43.6448,1.37751,0,0,OTL:SA:1970324837184670,Europe/Paris,2,OTL, +OTL:SP:3377699722770355,1,"Grand Noble",43.6448,1.37739,0,0,OTL:SA:1970324837184670,Europe/Paris,2,OTL, +OTL:SP:3377699722770356,1,"Place Georges Brassens",43.6486,1.3756,0,0,OTL:SA:1970324837184992,Europe/Paris,2,OTL, +OTL:SP:3377699722770357,1,"Place Georges Brassens",43.6486,1.37558,0,0,OTL:SA:1970324837184992,Europe/Paris,2,OTL, +OTL:SP:3377699722770358,1,"Patinoire-Barradels",43.6408,1.38194,0,0,OTL:SA:1970324837186646,Europe/Paris,2,OTL, +OTL:SP:3377699722770359,1,"Patinoire-Barradels",43.6401,1.38276,0,0,OTL:SA:1970324837186646,Europe/Paris,2,OTL, +OTL:SP:3377699722771660,1,"Aéroconstellation",43.6634,1.36262,0,0,OTL:SA:1970324837190628,Europe/Paris,2,OTL, +OTL:SP:3377699722771663,1,"Beauzelle - Aéroscopia",43.6603,1.36957,0,0,OTL:SA:1970324839218382,Europe/Paris,2,OTL, +OTL:SP:3377699722771664,1,"Beauzelle - Aéroscopia",43.6603,1.36944,0,0,OTL:SA:1970324839218382,Europe/Paris,2,OTL, +OTL:SP:3377699722771666,1,"Zénith",43.5948,1.40929,0,0,OTL:SA:1970324839218385,Europe/Paris,2,OTL, +OTL:SP:3377699722771668,1,"Zénith",43.5948,1.40937,0,0,OTL:SA:1970324839218385,Europe/Paris,2,OTL, +OTL:SP:3377699722771669,1,"Cartoucherie",43.6008,1.41139,0,0,OTL:SA:1970324837186011,Europe/Paris,2,OTL, +OTL:SP:3377699722771670,1,"Cartoucherie",43.6009,1.41138,0,0,OTL:SA:1970324837186011,Europe/Paris,2,OTL, +OTL:SP:3377699722771672,1,"Purpan",43.6091,1.40211,0,0,OTL:SA:1970324839218391,Europe/Paris,2,OTL, +OTL:SP:3377699722771673,1,"Purpan",43.6091,1.40195,0,0,OTL:SA:1970324839218391,Europe/Paris,2,OTL, +OTL:SP:3377699722771679,1,"Arènes Romaines",43.6141,1.39822,0,0,OTL:SA:1970324839218398,Europe/Paris,2,OTL, +OTL:SP:3377699722771680,1,"Arènes Romaines",43.6141,1.39813,0,0,OTL:SA:1970324839218398,Europe/Paris,2,OTL, +OTL:SP:3377699722771681,1,"Pasteur-Mairie de Blagnac",43.6341,1.3913,0,0,OTL:SA:1970324837186653,Europe/Paris,2,OTL, +OTL:SP:3377699722771682,1,"Pasteur-Mairie de Blagnac",43.6347,1.39117,0,0,OTL:SA:1970324837186653,Europe/Paris,2,OTL, +OTL:SP:3377699722771684,1,"Guyenne-Berry",43.631,1.3917,0,0,OTL:SA:1970324839218403,Europe/Paris,2,OTL, +OTL:SP:3377699722771685,1,"Guyenne-Berry",43.631,1.39167,0,0,OTL:SA:1970324839218403,Europe/Paris,2,OTL, +OTL:SP:3377699722771687,1,"Place du Relais",43.6368,1.38994,0,0,OTL:SA:1970324837186652,Europe/Paris,2,OTL, +OTL:SP:3377699722771689,1,"Place du Relais",43.6367,1.38991,0,0,OTL:SA:1970324837186652,Europe/Paris,2,OTL, +OTL:SP:3377699722771691,1,"Odyssud-Ritouret",43.6363,1.38524,0,0,OTL:SA:1970324839218410,Europe/Paris,2,OTL, +OTL:SP:3377699722771693,1,"Odyssud-Ritouret",43.6363,1.38517,0,0,OTL:SA:1970324839218410,Europe/Paris,2,OTL, +OTL:SP:3377699722824472,1,"Cyprié",43.6098,1.51426,0,0,OTL:SA:1970324839271191,Europe/Paris,2,OTL, +OTL:SP:3377699722824495,1,"Terroir 3",43.7061,1.3997,0,0,OTL:SA:1970324838833289,Europe/Paris,0,OTL, +OTL:SP:3377699722882616,1,"Ramonville",43.5558,1.47722,0,0,AEC:SA:02327,Europe/Paris,2,OTL, +OTL:SP:3377699722882618,1,"Gare de Labège",43.5314,1.53305,0,0,OTL:SA:1970324837185294,Europe/Paris,0,OTL, +OTL:SP:3377699722882619,1,"Gare de Labège",43.5317,1.53337,0,0,OTL:SA:1970324837185294,Europe/Paris,0,OTL, +OTL:SP:3377699722882620,1,"Escalquens La Caprice",43.5316,1.55221,0,0,OTL:SA:1970324837185314,Europe/Paris,2,OTL, +OTL:SP:3377699722882623,1,"Cinéma Occitane",43.5396,1.51261,0,0,OTL:SA:1970324839329342,Europe/Paris,2,OTL, +OTL:SP:3377699722882624,1,"Cinéma Occitane",43.5397,1.5125,0,0,OTL:SA:1970324839329342,Europe/Paris,2,OTL, +OTL:SP:3377699722882625,1,"Castanet-Tolosan",43.5085,1.50689,0,0,OTL:SA:1970324838561174,Europe/Paris,2,OTL, +OTL:SP:3377699722883949,1,"Vignalis",43.6021,1.54451,0,0,OTL:SA:1970324839056456,Europe/Paris,2,OTL, +OTL:SP:3377699722914784,1,"Barrière de Paris",43.6267,1.43453,0,0,OTL:SA:1970324837185046,Europe/Paris,2,OTL, +OTL:SP:3377699722914812,1,"Borderouge",43.6414,1.45223,0,0,AEC:SA:01961,Europe/Paris,2,OTL, +OTL:SP:3377699722914816,1,"Coustet",43.55,1.46699,0,0,OTL:SA:1970324838869899,Europe/Paris,2,OTL, +OTL:SP:3377699722914817,1,"Salas Montjoie",43.5402,1.46242,0,0,OTL:SA:1970324839056419,Europe/Paris,0,OTL, +OTL:SP:3377699722914818,1,"Adonis",43.6301,1.42362,0,0,OTL:SA:1970324838834149,Europe/Paris,2,OTL, +OTL:SP:3377699722914819,1,"Pont de Ginestous",43.633,1.42252,0,0,OTL:SA:1970324838834151,Europe/Paris,0,OTL, +OTL:SP:3377699722914820,1,"Laurencin",43.6354,1.41814,0,0,OTL:SA:1970324838834153,Europe/Paris,2,OTL, +OTL:SP:3377699722914821,1,"Eberhardt",43.64,1.41561,0,0,OTL:SA:1970324838834155,Europe/Paris,2,OTL, +OTL:SP:3377699722914822,1,"ZI La Glacière",43.6431,1.41603,0,0,OTL:SA:1970324838834157,Europe/Paris,2,OTL, +OTL:SP:3377699722914829,1,"Ayral",43.6442,1.46169,0,0,OTL:SA:1970324839163925,Europe/Paris,2,OTL, +OTL:SP:3377699722914830,1,"Maupassant",43.6443,1.46465,0,0,OTL:SA:1970324839163927,Europe/Paris,2,OTL, +OTL:SP:3377699722914833,1,"Paléficat",43.6473,1.465,0,0,OTL:SA:1970324839163929,Europe/Paris,2,OTL, +OTL:SP:3377699722914835,1,"Saint Agne Gare SNCF",43.5798,1.44889,0,0,OTL:SA:1970324837184617,Europe/Paris,2,OTL, +OTL:SP:3377699722914836,1,"Elvire",43.5788,1.44687,0,0,OTL:SA:1970324839164058,Europe/Paris,2,OTL, +OTL:SP:3377699722914837,1,"Miracles",43.5754,1.44966,0,0,OTL:SA:1970324839164060,Europe/Paris,2,OTL, +OTL:SP:3377699722914838,1,"Tolstoï",43.5751,1.44329,0,0,OTL:SA:1970324839164062,Europe/Paris,2,OTL, +OTL:SP:3377699722914841,1,"Bart",43.5714,1.44477,0,0,OTL:SA:1970324839164064,Europe/Paris,2,OTL, +OTL:SP:3377699722914842,1,"Piscine Pech David",43.566,1.44726,0,0,OTL:SA:1970324839164066,Europe/Paris,2,OTL, +OTL:SP:3377699722914852,1,"Chopin",43.6439,1.45887,0,0,OTL:SA:1970324838547367,Europe/Paris,2,OTL, +OTL:SP:3377699722914855,1,"Belberaud La Balme",43.5066,1.55417,0,0,OTL:SA:1970329131942087,Europe/Paris,0,OTL, +OTL:SP:3377699722946653,1,"La Vache",43.6338,1.43518,0,0,OTL:SA:1970324838319080,Europe/Paris,2,OTL, +OTL:SP:3377699722950708,1,"Gutemberg",43.7212,1.39702,0,0,OTL:SA:1970324839397427,Europe/Paris,2,OTL, +OTL:SP:3377699722950710,1,"Electronique",43.7192,1.3958,0,0,OTL:SA:1970324839397429,Europe/Paris,0,OTL, +OTL:SP:3377699723020707,1,"Castelmaurou Mairie",43.6775,1.53304,0,0,OTL:SA:1970324837185193,Europe/Paris,2,OTL, +OTL:SP:3377699723020711,1,"Bd F. Mitterrand",43.5543,1.47576,0,0,OTL:SA:1970324839467430,Europe/Paris,2,OTL, +OTL:SP:3377699723020712,1,"Bd F. Mitterrand",43.5541,1.47403,0,0,OTL:SA:1970324839467430,Europe/Paris,2,OTL, +OTL:SP:3377699723062977,1,"Chêne Vert",43.6969,1.37354,0,0,OTL:SA:1970324839509696,Europe/Paris,2,OTL, +OTL:SP:3377699723062978,1,"Chêne Vert",43.6963,1.37317,0,0,OTL:SA:1970324839509696,Europe/Paris,2,OTL, +OTL:SP:3377699723132164,1,"Ch. Papus",43.574,1.41266,0,0,OTL:SA:1970324837185929,Europe/Paris,2,OTL, +OTL:SP:3377699723132175,1,"Hubert Curien",43.5578,1.42701,0,0,OTL:SA:1970324839578894,Europe/Paris,2,OTL, +OTL:SP:3377699723132177,1,"Hubert Curien",43.5578,1.42701,0,0,OTL:SA:1970324839578894,Europe/Paris,2,OTL, +OTL:SP:3377699723135370,1,"Jeanne d'Arc",43.6082,1.44626,0,0,OTL:SA:1970324837184932,Europe/Paris,2,OTL, +OTL:SP:3377699723135387,1,"Oncopole",43.5542,1.43238,0,0,OTL:SA:1970324839361574,Europe/Paris,2,OTL, +OTL:SP:3377699723135389,1,"Painlevé",43.5226,1.32222,0,0,OTL:SA:1970324839582108,Europe/Paris,2,OTL, +OTL:SP:3377699723135390,1,"Painlevé",43.5221,1.32179,0,0,OTL:SA:1970324839582108,Europe/Paris,2,OTL, +OTL:SP:3377699723135393,1,"Collège Picasso",43.5202,1.32039,0,0,OTL:SA:1970324839582112,Europe/Paris,2,OTL, +OTL:SP:3377699723135394,1,"Collège Picasso",43.5202,1.32029,0,0,OTL:SA:1970324839582112,Europe/Paris,2,OTL, +OTL:SP:3377699723135397,1,"F. Mitterrand",43.5244,1.32307,0,0,OTL:SA:1970324839582116,Europe/Paris,2,OTL, +OTL:SP:3377699723135399,1,"F. Mitterrand",43.5246,1.3226,0,0,OTL:SA:1970324839582116,Europe/Paris,2,OTL, +OTL:SP:3377699723135401,1,"Bigorre",43.5748,1.41099,0,0,OTL:SA:1970324837185928,Europe/Paris,2,OTL, +OTL:SP:3377699723135406,1,"Landes",43.5729,1.41694,0,0,OTL:SA:1970324839582125,Europe/Paris,2,OTL, +OTL:SP:3377699723135408,1,"Landes",43.5731,1.41612,0,0,OTL:SA:1970324839582125,Europe/Paris,2,OTL, +OTL:SP:3377699723154117,1,"Courtois de Viçose",43.5698,1.42287,0,0,OTL:SA:1970324839600836,Europe/Paris,2,OTL, +OTL:SP:3377699723154118,1,"Courtois de Viçose",43.5698,1.42274,0,0,OTL:SA:1970324839600836,Europe/Paris,2,OTL, +OTL:SP:3377699723190509,1,"Ch. des Martyrs",43.5705,1.41978,0,0,OTL:SA:1970324839637228,Europe/Paris,2,OTL, +OTL:SP:3377699723198517,1,"Compans-Caffarelli",43.6106,1.43506,0,0,AEC:SA:01981,Europe/Paris,2,OTL, +OTL:SP:3377699723198518,1,"Compans-Caffarelli",43.6105,1.43523,0,0,AEC:SA:01981,Europe/Paris,2,OTL, +OTL:SP:3377699723203176,1,"Gare routière",43.6135,1.45235,0,0,OTL:SA:1970324840530380,Europe/Paris,2,OTL, +OTL:SP:3377699723237583,1,"J. B Dumas",43.6222,1.42599,0,0,OTL:SA:1970324839684302,Europe/Paris,2,OTL, +OTL:SP:3377699723243447,1,"Basso Cambo",43.5702,1.39245,0,0,AEC:SA:01957,Europe/Paris,2,OTL, +OTL:SP:3377699723248671,1,"Andromède-Lycée",43.6545,1.37528,0,0,AEC:SA:00263,Europe/Paris,2,OTL, +OTL:SP:3377699723269553,1,"Basso Cambo",43.5694,1.39246,0,0,AEC:SA:01957,Europe/Paris,2,OTL, +OTL:SP:3377699723269554,1,"Cerisiers",43.6422,1.44442,0,0,OTL:SA:1970324837186171,Europe/Paris,0,OTL, +OTL:SP:3377699723269570,1,"St-Orens Eglise",43.5524,1.54195,0,0,OTL:SA:1970324837185278,Europe/Paris,2,OTL, +OTL:SP:3377699723269579,1,"Cague L'Oule",43.6768,1.32203,0,0,AEC:SA:00066,Europe/Paris,2,OTL, +OTL:SP:3377699723269585,1,"Collège St-Jean",43.6616,1.50408,0,0,OTL:SA:1970329131942228,Europe/Paris,2,OTL, +OTL:SP:3377699723287199,1,"Marigny",43.6962,1.47888,0,0,OTL:SA:1970324837184977,Europe/Paris,0,OTL, +OTL:SP:3377699723287200,1,"Marigny",43.696,1.47912,0,0,OTL:SA:1970324837184977,Europe/Paris,0,OTL, +OTL:SP:3377699723290555,1,"St-Orens Lycée",43.5414,1.54801,0,0,OTL:SA:1970324837185279,Europe/Paris,2,OTL, +OTL:SP:3377699723367811,1,"Centre Village",43.4571,1.52151,0,0,OTL:SA:1970324837190372,Europe/Paris,0,OTL, +OTL:SP:3377699723420933,1,"Crabe",43.6106,1.37201,0,0,AEC:SA:15292,Europe/Paris,2,OTL, +OTL:SP:3377699723420934,1,"Crabe",43.6107,1.37222,0,0,AEC:SA:15292,Europe/Paris,2,OTL, +OTL:SP:3377699723420935,1,"Caulet",43.6066,1.35277,0,0,OTL:SA:1970324837190618,Europe/Paris,2,OTL, +OTL:SP:3377699723420936,1,"Caulet",43.6068,1.35321,0,0,OTL:SA:1970324837190618,Europe/Paris,2,OTL, +OTL:SP:3377699723420937,1,"Compans-Caffarelli",43.6096,1.43485,0,0,AEC:SA:01981,Europe/Paris,2,OTL, +OTL:SP:3377699723420938,1,"Colomiers Ramassiers Gare SNCF",43.6018,1.35286,0,0,OTL:SA:1970324837190400,Europe/Paris,0,OTL, +OTL:SP:3377699723420939,1,"Colomiers Ramassiers Gare SNCF",43.6019,1.35225,0,0,OTL:SA:1970324837190400,Europe/Paris,2,OTL, +OTL:SP:3377699723420943,1,"Fontaine",43.6094,1.35345,0,0,OTL:SA:1970324837186539,Europe/Paris,0,OTL, +OTL:SP:3377699723420944,1,"Fontaine",43.6094,1.35387,0,0,OTL:SA:1970324837186539,Europe/Paris,0,OTL, +OTL:SP:3377699723426161,1,"St-Pierre",43.5837,1.33616,0,0,OTL:SA:1970324839872880,Europe/Paris,2,OTL, +OTL:SP:3377699723426162,1,"St-Pierre",43.5837,1.33719,0,0,OTL:SA:1970324839872880,Europe/Paris,0,OTL, +OTL:SP:3377699723426164,1,"Passerelle Airbus",43.6091,1.36678,0,0,AEC:SA:15290,Europe/Paris,2,OTL, +OTL:SP:3377699723426165,1,"Passerelle Airbus",43.6092,1.36722,0,0,AEC:SA:15290,Europe/Paris,2,OTL, +OTL:SP:3377699723426167,1,"Aneto",43.6092,1.36277,0,0,OTL:SA:1970324839872886,Europe/Paris,2,OTL, +OTL:SP:3377699723426168,1,"Aneto",43.6092,1.36324,0,0,OTL:SA:1970324839872886,Europe/Paris,0,OTL, +OTL:SP:3377699723426170,1,"A320",43.6094,1.35772,0,0,AEC:SA:15288,Europe/Paris,2,OTL, +OTL:SP:3377699723426171,1,"A320",43.6094,1.35825,0,0,AEC:SA:15288,Europe/Paris,2,OTL, +OTL:SP:3377699723426173,1,"Page",43.6033,1.35024,0,0,OTL:SA:1970324839872892,Europe/Paris,2,OTL, +OTL:SP:3377699723426174,1,"Page",43.6033,1.35033,0,0,OTL:SA:1970324839872892,Europe/Paris,2,OTL, +OTL:SP:3377699723426176,1,"Esplanade des Ramassiers",43.5987,1.35288,0,0,OTL:SA:1970324839872895,Europe/Paris,2,OTL, +OTL:SP:3377699723426177,1,"Esplanade des Ramassiers",43.5989,1.35326,0,0,OTL:SA:1970324839872895,Europe/Paris,2,OTL, +OTL:SP:3377699723426179,1,"Maillol",43.5965,1.34947,0,0,OTL:SA:1970324839872898,Europe/Paris,2,OTL, +OTL:SP:3377699723426180,1,"Maillol",43.5968,1.34983,0,0,OTL:SA:1970324839872898,Europe/Paris,0,OTL, +OTL:SP:3377699723426182,1,"Gabriel Fauré",43.5938,1.34754,0,0,OTL:SA:1970324839872901,Europe/Paris,2,OTL, +OTL:SP:3377699723426183,1,"Gabriel Fauré",43.5942,1.34776,0,0,OTL:SA:1970324839872901,Europe/Paris,2,OTL, +OTL:SP:3377699723426185,1,"Vercors",43.5898,1.34695,0,0,OTL:SA:1970324839872904,Europe/Paris,2,OTL, +OTL:SP:3377699723426186,1,"Vercors",43.5905,1.34722,0,0,OTL:SA:1970324839872904,Europe/Paris,0,OTL, +OTL:SP:3377699723426188,1,"Clément Ader",43.5873,1.34678,0,0,OTL:SA:1970324839872907,Europe/Paris,0,OTL, +OTL:SP:3377699723426189,1,"Clément Ader",43.5876,1.347,0,0,OTL:SA:1970324839872907,Europe/Paris,2,OTL, +OTL:SP:3377699723426192,1,"Provence",43.5853,1.33959,0,0,OTL:SA:1970324839872910,Europe/Paris,2,OTL, +OTL:SP:3377699723426194,1,"Périgord",43.5821,1.3328,0,0,OTL:SA:1970324839872913,Europe/Paris,2,OTL, +OTL:SP:3377699723426195,1,"Périgord",43.5825,1.33361,0,0,OTL:SA:1970324839872913,Europe/Paris,2,OTL, +OTL:SP:3377699723426197,1,"Alpilles",43.5802,1.32866,0,0,OTL:SA:1970324839872916,Europe/Paris,2,OTL, +OTL:SP:3377699723426198,1,"Alpilles",43.5806,1.32949,0,0,OTL:SA:1970324839872916,Europe/Paris,0,OTL, +OTL:SP:3377699723426203,1,"Lilas",43.5108,1.55523,0,0,OTL:SA:1970324839872922,Europe/Paris,2,OTL, +OTL:SP:3377699723426204,1,"Lilas",43.511,1.55522,0,0,OTL:SA:1970324839872922,Europe/Paris,2,OTL, +OTL:SP:3377699723426206,1,"A. Perdiguier",43.5131,1.5568,0,0,OTL:SA:1970324839872925,Europe/Paris,2,OTL, +OTL:SP:3377699723426207,1,"A. Perdiguier",43.5131,1.55679,0,0,OTL:SA:1970324839872925,Europe/Paris,2,OTL, +OTL:SP:3377699723434996,1,"Seel",43.597,1.45668,0,0,OTL:SA:1970324839881714,Europe/Paris,2,OTL, +OTL:SP:3377699723435001,1,"Seel",43.5975,1.45666,0,0,OTL:SA:1970324839881714,Europe/Paris,2,OTL, +OTL:SP:3377699723478058,1,"Arènes",43.5928,1.41792,0,0,AEC:SA:01942,Europe/Paris,2,OTL, +OTL:SP:3377699723479095,1,"Max Fischl",43.6058,1.35925,0,0,OTL:SA:1970324839925814,Europe/Paris,2,OTL, +OTL:SP:3377699723479096,1,"Max Fischl",43.6057,1.35932,0,0,OTL:SA:1970324839925814,Europe/Paris,2,OTL, +OTL:SP:3377699723485906,1,"Paquerettes",43.5512,1.47287,0,0,OTL:SA:1970324839932625,Europe/Paris,0,OTL, +OTL:SP:3377699723492614,1,"St-Michel - Marcel Langer",43.5864,1.44701,0,0,OTL:SA:1970324837185941,Europe/Paris,2,OTL, +OTL:SP:3377699723531280,1,"La Vache",43.6335,1.43478,0,0,OTL:SA:1970324838319080,Europe/Paris,2,OTL, +OTL:SP:3377699723531282,1,"Ecole Croix-Rouge",43.6051,1.38708,0,0,OTL:SA:1970324837184593,Europe/Paris,2,OTL, +OTL:SP:3377699723531846,1,"Buxtehude",43.6498,1.38201,0,0,OTL:SA:1970324839928071,Europe/Paris,2,OTL, +OTL:SP:3377699723531847,1,"Buxtehude",43.6489,1.38247,0,0,OTL:SA:1970324839928071,Europe/Paris,2,OTL, +OTL:SP:3377699723531850,1,"Place du Relais",43.6376,1.39047,0,0,OTL:SA:1970324837186652,Europe/Paris,2,OTL, +OTL:SP:3377699723531851,1,"Place du Relais",43.6375,1.39046,0,0,OTL:SA:1970324837186652,Europe/Paris,2,OTL, +OTL:SP:3377699723532070,1,"Tonneliers",43.6461,1.38456,0,0,OTL:SA:1970324839978789,Europe/Paris,2,OTL, +OTL:SP:3377699723532071,1,"Tonneliers",43.6455,1.38491,0,0,OTL:SA:1970324839978789,Europe/Paris,2,OTL, +OTL:SP:3377699723532073,1,"Pont du Béarnais",43.6122,1.42409,0,0,OTL:SA:1970324839978792,Europe/Paris,2,OTL, +OTL:SP:3377699723532075,1,"ZAC Ponts Jumeaux",43.6118,1.42178,0,0,OTL:SA:1970324839978794,Europe/Paris,2,OTL, +OTL:SP:3377699723532076,1,"ZAC Ponts Jumeaux",43.6119,1.42261,0,0,OTL:SA:1970324839978794,Europe/Paris,2,OTL, +OTL:SP:3377699723533048,1,"Ctre Cial Beauzelle",43.6701,1.36911,0,0,OTL:SA:1970324837184902,Europe/Paris,2,OTL, +OTL:SP:3377699723533049,1,"Périac",43.6716,1.32269,0,0,OTL:SA:1970324837189484,Europe/Paris,2,OTL, +OTL:SP:3377699723533054,1,"Grillons",43.6615,1.37919,0,0,OTL:SA:1970324839979773,Europe/Paris,2,OTL, +OTL:SP:3377699723533055,1,"Grillons",43.6612,1.37917,0,0,OTL:SA:1970324839979773,Europe/Paris,2,OTL, +OTL:SP:3377699723533060,1,"Hirondelles",43.6628,1.37653,0,0,OTL:SA:1970324839979779,Europe/Paris,2,OTL, +OTL:SP:3377699723533061,1,"Hirondelles",43.6618,1.3773,0,0,OTL:SA:1970324839979779,Europe/Paris,2,OTL, +OTL:SP:3377699723533063,1,"Camélias",43.666,1.38115,0,0,OTL:SA:1970324839979782,Europe/Paris,2,OTL, +OTL:SP:3377699723533064,1,"Camélias",43.6659,1.38144,0,0,OTL:SA:1970324839979782,Europe/Paris,2,OTL, +OTL:SP:3377699723533066,1,"Juncassa",43.6689,1.3663,0,0,OTL:SA:1970324839979785,Europe/Paris,2,OTL, +OTL:SP:3377699723533067,1,"Juncassa",43.6692,1.36649,0,0,OTL:SA:1970324839979785,Europe/Paris,2,OTL, +OTL:SP:3377699723533069,1,"Les Jardins du Panariol",43.679,1.32313,0,0,OTL:SA:1970324839979788,Europe/Paris,2,OTL, +OTL:SP:3377699723533070,1,"Les Jardins du Panariol",43.6786,1.32295,0,0,OTL:SA:1970324839979788,Europe/Paris,2,OTL, +OTL:SP:3377699723534565,1,"Jean Zay",43.6417,1.44637,0,0,OTL:SA:1970324839934074,Europe/Paris,2,OTL, +OTL:SP:3377699723536437,1,"Côteaux",43.5854,1.53284,0,0,OTL:SA:1970324840248128,Europe/Paris,2,OTL, +OTL:SP:3377699723536438,1,"Côteaux",43.585,1.53255,0,0,OTL:SA:1970324840248128,Europe/Paris,2,OTL, +OTL:SP:3377699723536524,1,"Bruyère",43.4888,1.39727,0,0,OTL:SA:1970324839983243,Europe/Paris,0,OTL, +OTL:SP:3377699723536525,1,"Bruyère",43.489,1.39734,0,0,OTL:SA:1970324839983243,Europe/Paris,0,OTL, +OTL:SP:3377699723536526,1,"Sapins",43.577,1.32843,0,0,OTL:SA:1970324837822856,Europe/Paris,0,OTL, +OTL:SP:3377699723549437,1,"Montaudran Gare SNCF",43.572,1.47847,0,0,OTL:SA:1970324837185292,Europe/Paris,2,OTL, +OTL:SP:3377699723549438,1,"Montaudran Gare SNCF",43.5723,1.47897,0,0,OTL:SA:1970324837185292,Europe/Paris,0,OTL, +OTL:SP:3377699723549777,1,"Pont du Béarnais",43.6124,1.42593,0,0,OTL:SA:1970324839978792,Europe/Paris,2,OTL, +OTL:SP:3377699723554513,1,"Aéroconstellation",43.6634,1.36286,0,0,OTL:SA:1970324837190628,Europe/Paris,2,OTL, +OTL:SP:3377699723554811,1,"La Ramée Sud",43.5627,1.34036,0,0,OTL:SA:1970329131942151,Europe/Paris,2,OTL, +OTL:SP:3377699723554812,1,"La Ramée Sud",43.5627,1.34012,0,0,OTL:SA:1970329131942151,Europe/Paris,2,OTL, +OTL:SP:3377699723564960,1,"Cugnaux Henry Gladi",43.5455,1.35121,0,0,OTL:SA:1970329131942128,Europe/Paris,0,OTL, +OTL:SP:3377699723590615,1,"St Cyprien - République",43.5981,1.43041,0,0,OTL:SA:1970324837184772,Europe/Paris,2,OTL, +OTL:SP:3377699723640911,1,"Ste-Hélène",43.623,1.45871,0,0,OTL:SA:1970324838479709,Europe/Paris,2,OTL, +OTL:SP:3377699723641007,1,"Palais de Justice",43.5935,1.44434,0,0,OTL:SA:1970324837184792,Europe/Paris,2,OTL, +OTL:SP:3377699723671683,1,"Grand Rond",43.5965,1.45399,0,0,OTL:SA:1970324837184947,Europe/Paris,2,OTL, +OTL:SP:3377699723671688,1,"Récollets Daste",43.5836,1.44266,0,0,OTL:SA:1970324837185348,Europe/Paris,2,OTL, +OTL:SP:3377699723671689,1,"Récollets Daste",43.5836,1.4426,0,0,OTL:SA:1970324837185348,Europe/Paris,2,OTL, +OTL:SP:3377699723718321,1,"Croix de Pierre",43.5842,1.42762,0,0,OTL:SA:1970324837185229,Europe/Paris,2,OTL, +OTL:SP:3377699723726929,1,"F. Mitterrand",43.6654,1.50676,0,0,OTL:SA:1970324840530366,Europe/Paris,2,OTL, +OTL:SP:3377699723776535,1,"F. Mitterrand",43.6652,1.50699,0,0,OTL:SA:1970324840530366,Europe/Paris,0,OTL, +OTL:SP:3377699723778772,1,"Pélude",43.571,1.46315,0,0,OTL:SA:1970324840225490,Europe/Paris,2,OTL, +OTL:SP:3377699723778773,1,"Pélude",43.5712,1.46307,0,0,OTL:SA:1970324840225490,Europe/Paris,2,OTL, +OTL:SP:3377699723785420,1,"Gonin",43.574,1.48317,0,0,OTL:SA:1970324837184674,Europe/Paris,2,OTL, +OTL:SP:3377699723785421,1,"Herbettes",43.5765,1.47027,0,0,OTL:SA:1970324837185966,Europe/Paris,2,OTL, +OTL:SP:3377699723785422,1,"Herbettes",43.5766,1.47034,0,0,OTL:SA:1970324837185966,Europe/Paris,0,OTL, +OTL:SP:3377699723785424,1,"Sicard Alaman",43.581,1.48967,0,0,OTL:SA:1970324840232143,Europe/Paris,2,OTL, +OTL:SP:3377699723785425,1,"Sicard Alaman",43.5816,1.48937,0,0,OTL:SA:1970324840232143,Europe/Paris,0,OTL, +OTL:SP:3377699723785427,1,"Capdenier",43.5788,1.4908,0,0,OTL:SA:1970324840232146,Europe/Paris,0,OTL, +OTL:SP:3377699723785428,1,"Capdenier",43.5791,1.4908,0,0,OTL:SA:1970324840232146,Europe/Paris,2,OTL, +OTL:SP:3377699723785430,1,"Parc de Montaudran",43.5761,1.48956,0,0,OTL:SA:1970324840232149,Europe/Paris,2,OTL, +OTL:SP:3377699723785431,1,"Parc de Montaudran",43.5763,1.48993,0,0,OTL:SA:1970324840232149,Europe/Paris,2,OTL, +OTL:SP:3377699723791569,1,"Plaisance Monestié",43.5631,1.29065,0,0,OTL:SA:1970324837185061,Europe/Paris,0,OTL, +OTL:SP:3377699723791570,1,"Esquillette",43.6019,1.32497,0,0,OTL:SA:1970324839924874,Europe/Paris,2,OTL, +OTL:SP:3377699723791571,1,"Esquillette",43.6022,1.32545,0,0,OTL:SA:1970324839924874,Europe/Paris,2,OTL, +OTL:SP:3377699723791573,1,"Cap Sicié",43.5984,1.31816,0,0,OTL:SA:1970324840238292,Europe/Paris,2,OTL, +OTL:SP:3377699723791574,1,"Cap Sicié",43.5982,1.31875,0,0,OTL:SA:1970324840238292,Europe/Paris,2,OTL, +OTL:SP:3377699723791576,1,"Giratoire Pluton",43.5961,1.30091,0,0,OTL:SA:1970324840238295,Europe/Paris,0,OTL, +OTL:SP:3377699723791577,1,"Giratoire Pluton",43.5963,1.3013,0,0,OTL:SA:1970324840238295,Europe/Paris,0,OTL, +OTL:SP:3377699723791579,1,"Centre de tri postal",43.5926,1.29987,0,0,OTL:SA:1970324840238298,Europe/Paris,2,OTL, +OTL:SP:3377699723791580,1,"Centre de tri postal",43.592,1.29998,0,0,OTL:SA:1970324840238298,Europe/Paris,2,OTL, +OTL:SP:3377699723791582,1,"A. Perdiguier",43.5834,1.28927,0,0,OTL:SA:1970324840238301,Europe/Paris,0,OTL, +OTL:SP:3377699723791583,1,"A. Perdiguier",43.5841,1.28914,0,0,OTL:SA:1970324840238301,Europe/Paris,2,OTL, +OTL:SP:3377699723791585,1,"Italiens",43.5801,1.27302,0,0,OTL:SA:1970324840238304,Europe/Paris,2,OTL, +OTL:SP:3377699723791586,1,"Italiens",43.5804,1.27313,0,0,OTL:SA:1970324840238304,Europe/Paris,2,OTL, +OTL:SP:3377699723791587,1,"11 Novembre 1918",43.5695,1.28747,0,0,OTL:SA:1970329131942364,Europe/Paris,2,OTL, +OTL:SP:3377699723791588,1,"11 Novembre 1918",43.5698,1.28723,0,0,OTL:SA:1970329131942364,Europe/Paris,0,OTL, +OTL:SP:3377699723791590,1,"Béarn",43.5668,1.29094,0,0,OTL:SA:1970324840238309,Europe/Paris,2,OTL, +OTL:SP:3377699723791591,1,"Béarn",43.5672,1.29065,0,0,OTL:SA:1970324840238309,Europe/Paris,2,OTL, +OTL:SP:3377699723865492,1,"Rue du 14 juillet",43.5904,1.41486,0,0,OTL:SA:1970324840312211,Europe/Paris,2,OTL, +OTL:SP:3377699723865493,1,"Rue du 14 juillet",43.5908,1.4147,0,0,OTL:SA:1970324840312211,Europe/Paris,2,OTL, +OTL:SP:3377699723865494,1,"Place des Marots",43.5997,1.32247,0,0,OTL:SA:1970324839924872,Europe/Paris,2,OTL, +OTL:SP:3377699723865495,1,"Place des Marots",43.6007,1.32362,0,0,OTL:SA:1970324839924872,Europe/Paris,2,OTL, +OTL:SP:3377699723865496,1,"Nasque",43.598,1.32112,0,0,OTL:SA:1970324837431396,Europe/Paris,2,OTL, +OTL:SP:3377699723865497,1,"Nasque",43.5978,1.32128,0,0,OTL:SA:1970324837431396,Europe/Paris,2,OTL, +OTL:SP:3377699723914633,1,"Lacourtensourt Gare SNCF",43.6641,1.41431,0,0,STE:SA:OCE87611434,Europe/Paris,2,OTL, +OTL:SP:3377699723914634,1,"Lacourtensourt Gare SNCF",43.6637,1.41451,0,0,STE:SA:OCE87611434,Europe/Paris,2,OTL, +OTL:SP:3377699723914635,1,"Sapins",43.5771,1.32862,0,0,OTL:SA:1970324837822856,Europe/Paris,0,OTL, +OTL:SP:3377699723931112,1,"Varennes En Clavié",43.4746,1.68677,0,0,OTL:SA:1970324840377831,Europe/Paris,0,OTL, +OTL:SP:3377699723937543,1,"Etats-Unis Fondeyre",43.6429,1.42835,0,0,AEC:SA:02009,Europe/Paris,2,OTL, +OTL:SP:3377699723937619,1,"Maison Commune",43.5575,1.43009,0,0,OTL:SA:1970324840384338,Europe/Paris,2,OTL, +OTL:SP:3377699723937620,1,"Maison Commune",43.5575,1.43043,0,0,OTL:SA:1970324840384338,Europe/Paris,2,OTL, +OTL:SP:3377699723986377,1,"Casselardit",43.6047,1.40458,0,0,OTL:SA:1970324837186008,Europe/Paris,2,OTL, +OTL:SP:3377699723986537,1,"Casselardit",43.6045,1.40463,0,0,OTL:SA:1970324837186008,Europe/Paris,2,OTL, +OTL:SP:3377699724000873,1,"Bruguières Mairie",43.7278,1.41354,0,0,OTL:SA:1970324837186460,Europe/Paris,0,OTL, +OTL:SP:3377699724020406,1,"Pradelle",43.6943,1.43239,0,0,OTL:SA:1970324837186436,Europe/Paris,2,OTL, +OTL:SP:3377699724020407,1,"Mairie Castelginest",43.6939,1.4281,0,0,OTL:SA:1970324837184983,Europe/Paris,2,OTL, +OTL:SP:3377699724083641,1,"Rond-Point Langlade",43.5668,1.42501,0,0,OTL:SA:1970324837185088,Europe/Paris,2,OTL, +OTL:SP:3377699724083642,1,"Rond-Point Langlade",43.5668,1.425,0,0,OTL:SA:1970324837185088,Europe/Paris,2,OTL, +OTL:SP:3377699724093789,1,"Jean Zay",43.641,1.44711,0,0,OTL:SA:1970324839934074,Europe/Paris,2,OTL, +OTL:SP:3377699724118411,1,"Ancely",43.6174,1.39679,0,0,OTL:SA:1970324837184663,Europe/Paris,2,OTL, +OTL:SP:3377699724118414,1,"Villenouvelle",43.5527,1.37633,0,0,OTL:SA:1970324837186310,Europe/Paris,2,OTL, +OTL:SP:3377699724118415,1,"Villenouvelle",43.553,1.37585,0,0,OTL:SA:1970324837186310,Europe/Paris,0,OTL, +OTL:SP:3377699724118418,1,"Marengo-SNCF",43.6101,1.45641,0,0,AEC:SA:02048,Europe/Paris,2,OTL, +OTL:SP:3377699724118423,1,"St-Orens Lycée",43.5405,1.5477,0,0,OTL:SA:1970324837185279,Europe/Paris,2,OTL, +OTL:SP:3377699724118446,1,"Canal de Brienne",43.6082,1.4245,0,0,OTL:SA:1970324837186052,Europe/Paris,2,OTL, +OTL:SP:3377699724118447,1,"Gymnase de l'Hers",43.5916,1.48978,0,0,OTL:SA:1970324840530397,Europe/Paris,2,OTL, +OTL:SP:3377699724118448,1,"Borde Haute",43.6437,1.53116,0,0,OTL:SA:1970324840530398,Europe/Paris,2,OTL, +OTL:SP:3377699724118449,1,"Borde Haute",43.6448,1.532,0,0,OTL:SA:1970324840530398,Europe/Paris,2,OTL, +OTL:SP:3377699724118450,1,"Bel Souleil",43.6448,1.54465,0,0,OTL:SA:1970324840530399,Europe/Paris,0,OTL, +OTL:SP:3377699724118451,1,"Bel Souleil",43.6449,1.54451,0,0,OTL:SA:1970324840530399,Europe/Paris,2,OTL, +OTL:SP:3377699724118456,1,"Leclerc",43.6094,1.43161,0,0,OTL:SA:1970324837185358,Europe/Paris,2,OTL, +OTL:SP:3377699724118462,1,"Sers",43.6883,1.40582,0,0,OTL:SA:1970324840530402,Europe/Paris,2,OTL, +OTL:SP:3377699724118468,1,"Damoysel",43.5489,1.39903,0,0,OTL:SA:1970324840530403,Europe/Paris,0,OTL, +OTL:SP:3377699724118469,1,"Damoysel",43.5486,1.39951,0,0,OTL:SA:1970324840530403,Europe/Paris,0,OTL, +OTL:SP:3377699724118470,1,"Champollion",43.5448,1.39624,0,0,OTL:SA:1970324840530404,Europe/Paris,0,OTL, +OTL:SP:3377699724118471,1,"Champollion",43.5453,1.39599,0,0,OTL:SA:1970324840530404,Europe/Paris,2,OTL, +OTL:SP:3377699724118472,1,"Château de Soule",43.535,1.47082,0,0,OTL:SA:1970324840530405,Europe/Paris,2,OTL, +OTL:SP:3377699724118474,1,"Déodat de Séverac",43.5897,1.42163,0,0,OTL:SA:1970324837185918,Europe/Paris,2,OTL, +OTL:SP:3377699724118475,1,"Déodat de Séverac",43.5897,1.42155,0,0,OTL:SA:1970324837185918,Europe/Paris,2,OTL, +OTL:SP:3377699724118476,1,"Palais de Justice",43.5928,1.44398,0,0,OTL:SA:1970324837184792,Europe/Paris,2,OTL, +OTL:SP:3377699724118477,1,"Palais de Justice",43.5927,1.44403,0,0,OTL:SA:1970324837184792,Europe/Paris,2,OTL, +OTL:SP:3377699724118478,1,"Croix de Pierre",43.5857,1.42785,0,0,OTL:SA:1970324837185229,Europe/Paris,2,OTL, +OTL:SP:3377699724118479,1,"Croix de Pierre",43.5856,1.42777,0,0,OTL:SA:1970324837185229,Europe/Paris,2,OTL, +OTL:SP:3377699724118480,1,"Avenue Muret Marcel Cavaillé",43.5893,1.43177,0,0,OTL:SA:1970324840530406,Europe/Paris,2,OTL, +OTL:SP:3377699724118481,1,"Avenue Muret Marcel Cavaillé",43.5893,1.43179,0,0,OTL:SA:1970324840530406,Europe/Paris,2,OTL, +OTL:SP:3377699724118482,1,"Fer à Cheval",43.5927,1.43551,0,0,OTL:SA:1970324837185543,Europe/Paris,2,OTL, +OTL:SP:3377699724118483,1,"Fer à Cheval",43.5926,1.4355,0,0,OTL:SA:1970324837185543,Europe/Paris,2,OTL, +OTL:SP:3377699724118484,1,"Ile du Ramier",43.5923,1.44051,0,0,OTL:SA:1970324840530407,Europe/Paris,2,OTL, +OTL:SP:3377699724118485,1,"Ile du Ramier",43.5922,1.4405,0,0,OTL:SA:1970324840530407,Europe/Paris,2,OTL, +OTL:SP:3377699724118497,1,"Muret Gare SNCF",43.466,1.32382,0,0,AEC:SA:15267,Europe/Paris,2,OTL, +OTL:SP:3377699724118501,1,"Plaisance Monestié",43.5632,1.29153,0,0,OTL:SA:1970324837185061,Europe/Paris,2,OTL, +OTL:SP:3377699724118502,1,"Moulin de la Jalousie",43.5204,1.18988,0,0,AEC:SA:01799,Europe/Paris,2,OTL, +OTL:SP:3377699724118503,1,"Moulin de la Jalousie",43.52,1.18906,0,0,AEC:SA:01799,Europe/Paris,2,OTL, +OTL:SP:3377699724118504,1,"Maison de Retraite",43.5185,1.18466,0,0,OTL:SA:1970324840530414,Europe/Paris,2,OTL, +OTL:SP:3377699724118505,1,"Maison de Retraite",43.5184,1.18456,0,0,OTL:SA:1970324840530414,Europe/Paris,2,OTL, +OTL:SP:3377699724118508,1,"Piscine",43.5129,1.1723,0,0,OTL:SA:1970324840530416,Europe/Paris,0,OTL, +OTL:SP:3377699724118513,1,"Collège Pechbonnieu",43.7055,1.46251,0,0,AEC:SA:15278,Europe/Paris,2,OTL, +OTL:SP:3377699724118518,1,"Gafelaze",43.6878,1.41606,0,0,OTL:SA:1970324840530420,Europe/Paris,2,OTL, +OTL:SP:3377699724118519,1,"Gafelaze",43.6877,1.41638,0,0,OTL:SA:1970324840530420,Europe/Paris,2,OTL, +OTL:SP:3377699724118520,1,"Salvador Allende",43.6885,1.40819,0,0,OTL:SA:1970324840530421,Europe/Paris,0,OTL, +OTL:SP:3377699724118521,1,"Salvador Allende",43.6884,1.40848,0,0,OTL:SA:1970324840530421,Europe/Paris,0,OTL, +OTL:SP:3377699724118524,1,"Meunier",43.7376,1.38015,0,0,OTL:SA:1970324840530423,Europe/Paris,0,OTL, +OTL:SP:3377699724118526,1,"Ladoux",43.7404,1.37368,0,0,OTL:SA:1970324840530424,Europe/Paris,0,OTL, +OTL:SP:3377699724118528,1,"St Jory Centre",43.7406,1.37135,0,0,OTL:SA:1970324840530425,Europe/Paris,0,OTL, +OTL:SP:3377699724118530,1,"La Plaine Tucol",43.7465,1.3703,0,0,OTL:SA:1970324840530427,Europe/Paris,2,OTL, +OTL:SP:3377699724118531,1,"Berges du Canal",43.7417,1.36706,0,0,OTL:SA:1970324840530428,Europe/Paris,2,OTL, +OTL:SP:3377699724118532,1,"Fabas",43.7372,1.36652,0,0,OTL:SA:1970324840530429,Europe/Paris,2,OTL, +OTL:SP:3377699724118533,1,"Cité de l'Hers",43.5964,1.48388,0,0,OTL:SA:1970324837185362,Europe/Paris,2,OTL, +OTL:SP:3377699724118534,1,"Collège JP Vernant",43.5939,1.48818,0,0,OTL:SA:1970324837186057,Europe/Paris,2,OTL, +OTL:SP:3377699724118535,1,"Collège JP Vernant",43.5953,1.48692,0,0,OTL:SA:1970324837186057,Europe/Paris,2,OTL, +OTL:SP:3377699724118536,1,"Brunière",43.5953,1.44325,0,0,OTL:SA:1970324840530431,Europe/Paris,2,OTL, +OTL:SP:3377699724118537,1,"Féral",43.596,1.44643,0,0,OTL:SA:1970324840530432,Europe/Paris,2,OTL, +OTL:SP:3377699724118538,1,"Trois Banquets",43.5998,1.44809,0,0,OTL:SA:1970324840530433,Europe/Paris,2,OTL, +OTL:SP:3377699724118539,1,"St Sernin",43.6088,1.44186,0,0,OTL:SA:1970324840530434,Europe/Paris,2,OTL, +OTL:SP:3377699724118540,1,"Embarthe",43.608,1.43832,0,0,OTL:SA:1970324840530435,Europe/Paris,2,OTL, +OTL:SP:3377699724118541,1,"Quai St Pierre",43.6036,1.43525,0,0,OTL:SA:1970324840530436,Europe/Paris,2,OTL, +OTL:SP:3377699724118543,1,"Quai de la Daurade",43.6001,1.44018,0,0,OTL:SA:1970324840530438,Europe/Paris,2,OTL, +OTL:SP:3377704015495169,1,"Basso Cambo",43.5698,1.39211,0,0,AEC:SA:01957,Europe/Paris,2,OTL, +OTL:SP:3377704015495171,1,"Braves",43.6008,1.41939,0,0,OTL:SA:1970329131941890,Europe/Paris,2,OTL, +OTL:SP:3377704015495175,1,"Dufaur de Pibrac",43.6017,1.41596,0,0,OTL:SA:1970329131941893,Europe/Paris,2,OTL, +OTL:SP:3377704015495181,1,"Eylau",43.6199,1.44107,0,0,OTL:SA:1970329131941895,Europe/Paris,0,OTL, +OTL:SP:3377704015495185,1,"Fauvettes",43.6221,1.44192,0,0,OTL:SA:1970329131942038,Europe/Paris,0,OTL, +OTL:SP:3377704015495189,1,"Guynemer",43.6183,1.44088,0,0,OTL:SA:1970329131941899,Europe/Paris,0,OTL, +OTL:SP:3377704015495192,1,"Olympe de Gouges",43.6443,1.44458,0,0,OTL:SA:1970329131941902,Europe/Paris,2,OTL, +OTL:SP:3377704015495193,1,"Olympe de Gouges",43.644,1.4449,0,0,OTL:SA:1970329131941902,Europe/Paris,2,OTL, +OTL:SP:3377704015495197,1,"Negreneys Canal",43.6162,1.44067,0,0,OTL:SA:1970329131941905,Europe/Paris,0,OTL, +OTL:SP:3377704015495203,1,"Puget",43.6232,1.44238,0,0,OTL:SA:1970329131941909,Europe/Paris,2,OTL, +OTL:SP:3377704015495206,1,"Arènes Romaines",43.6137,1.39726,0,0,OTL:SA:1970324839218398,Europe/Paris,2,OTL, +OTL:SP:3377704015495207,1,"Arènes Romaines",43.6135,1.39701,0,0,OTL:SA:1970324839218398,Europe/Paris,2,OTL, +OTL:SP:3377704015495210,1,"Souffron",43.6022,1.41363,0,0,OTL:SA:1970329131941912,Europe/Paris,0,OTL, +OTL:SP:3377704015495211,1,"Talazac",43.6028,1.41125,0,0,OTL:SA:1970329131941913,Europe/Paris,2,OTL, +OTL:SP:3377704015495215,1,"Joseph Hubert",43.6249,1.49162,0,0,OTL:SA:1970324839914121,Europe/Paris,2,OTL, +OTL:SP:3377704015495216,1,"Joseph Hubert",43.6248,1.49164,0,0,OTL:SA:1970324839914121,Europe/Paris,2,OTL, +OTL:SP:3377704015495217,1,"Vidailhan",43.6267,1.49006,0,0,OTL:SA:1970324837186076,Europe/Paris,2,OTL, +OTL:SP:3377704015495218,1,"Vidailhan",43.6268,1.48968,0,0,OTL:SA:1970324837186076,Europe/Paris,2,OTL, +OTL:SP:3377704015495228,1,"Saguens",43.527,1.37654,0,0,OTL:SA:1970329131941919,Europe/Paris,2,OTL, +OTL:SP:3377704015495229,1,"Saguens",43.5269,1.37809,0,0,OTL:SA:1970329131941919,Europe/Paris,2,OTL, +OTL:SP:3377704015495230,1,"Saguens",43.5264,1.37783,0,0,OTL:SA:1970329131941919,Europe/Paris,2,OTL, +OTL:SP:3377704015495256,1,"Electronique",43.7185,1.39573,0,0,OTL:SA:1970324839397429,Europe/Paris,0,OTL, +OTL:SP:3377704015495261,1,"Bellegarde",43.6077,1.4455,0,0,OTL:SA:1970329131941936,Europe/Paris,2,OTL, +OTL:SP:3377704015495262,1,"Rémusat",43.6052,1.4438,0,0,OTL:SA:1970329131941937,Europe/Paris,2,OTL, +OTL:SP:3377704015495269,1,"Colette",43.6705,1.49533,0,0,OTL:SA:1970329131941941,Europe/Paris,2,OTL, +OTL:SP:3377704015495274,1,"Jaufré Rudel",43.6124,1.39255,0,0,OTL:SA:1970329131941944,Europe/Paris,2,OTL, +OTL:SP:3377704015495275,1,"Jaufré Rudel",43.6113,1.39209,0,0,OTL:SA:1970329131941944,Europe/Paris,2,OTL, +OTL:SP:3377704015495276,1,"Carlos Gardel",43.615,1.39429,0,0,OTL:SA:1970329131941945,Europe/Paris,2,OTL, +OTL:SP:3377704015495277,1,"Carlos Gardel",43.6151,1.3945,0,0,OTL:SA:1970329131941945,Europe/Paris,0,OTL, +OTL:SP:3377704015495278,1,"Ctre Cial Purpan Est",43.6088,1.39722,0,0,OTL:SA:1970329131941946,Europe/Paris,0,OTL, +OTL:SP:3377704015495279,1,"Ctre Cial Purpan Est",43.6091,1.39737,0,0,OTL:SA:1970329131941946,Europe/Paris,0,OTL, +OTL:SP:3377704015495280,1,"Canto Laouzetto",43.551,1.37921,0,0,OTL:SA:1970329131941947,Europe/Paris,0,OTL, +OTL:SP:3377704015495281,1,"Canto Laouzetto",43.5514,1.37857,0,0,OTL:SA:1970329131941947,Europe/Paris,2,OTL, +OTL:SP:3377704015495282,1,"Carovis",43.5493,1.38309,0,0,OTL:SA:1970329131941948,Europe/Paris,2,OTL, +OTL:SP:3377704015495283,1,"Carovis",43.5495,1.38342,0,0,OTL:SA:1970329131941948,Europe/Paris,2,OTL, +OTL:SP:3377704015495284,1,"Tibaous",43.5509,1.38601,0,0,OTL:SA:1970329131941949,Europe/Paris,2,OTL, +OTL:SP:3377704015495439,1,"Parc du Canal",43.5536,1.48472,0,0,OTL:SA:1970324837648460,Europe/Paris,0,OTL, +OTL:SP:3377704015495458,1,"Flambère",43.6086,1.39059,0,0,OTL:SA:1970324837186533,Europe/Paris,0,OTL, +OTL:SP:3377704015495462,1,"La Tour",43.6089,1.50263,0,0,OTL:SA:1970324837186699,Europe/Paris,2,OTL, +OTL:SP:3377704015495467,1,"Renery",43.7174,1.44809,0,0,OTL:SA:1970329131942057,Europe/Paris,2,OTL, +OTL:SP:3377704015495468,1,"Renery",43.7175,1.44738,0,0,OTL:SA:1970329131942057,Europe/Paris,2,OTL, +OTL:SP:3377704015495480,1,"La Terrasse",43.5818,1.48709,0,0,OTL:SA:1970329131942063,Europe/Paris,0,OTL, +OTL:SP:3377704015495481,1,"La Plaine",43.5788,1.49603,0,0,OTL:SA:1970324837190571,Europe/Paris,2,OTL, +OTL:SP:3377704015495482,1,"Naturopole",43.5589,1.4734,0,0,OTL:SA:1970329131942064,Europe/Paris,2,OTL, +OTL:SP:3377704015495483,1,"Naturopole",43.5589,1.47338,0,0,OTL:SA:1970329131942064,Europe/Paris,2,OTL, +OTL:SP:3377704015495484,1,"Sports Universitaires",43.5614,1.47096,0,0,OTL:SA:1970329131942065,Europe/Paris,2,OTL, +OTL:SP:3377704015495485,1,"Sports Universitaires",43.5615,1.47093,0,0,OTL:SA:1970329131942065,Europe/Paris,2,OTL, +OTL:SP:3377704015495486,1,"Giordano Bruno",43.5646,1.46865,0,0,OTL:SA:1970329131942066,Europe/Paris,2,OTL, +OTL:SP:3377704015495487,1,"Giordano Bruno",43.5646,1.46879,0,0,OTL:SA:1970329131942066,Europe/Paris,2,OTL, +OTL:SP:3377704015495488,1,"LAAS",43.5641,1.47428,0,0,OTL:SA:1970324837186912,Europe/Paris,2,OTL, +OTL:SP:3377704015495489,1,"LAAS",43.5641,1.47431,0,0,OTL:SA:1970324837186912,Europe/Paris,2,OTL, +OTL:SP:3377704015495490,1,"ENAC",43.5646,1.47814,0,0,OTL:SA:1970324837185961,Europe/Paris,2,OTL, +OTL:SP:3377704015495491,1,"ENAC",43.5646,1.4783,0,0,OTL:SA:1970324837185961,Europe/Paris,2,OTL, +OTL:SP:3377704015495492,1,"CNES- IAS",43.5626,1.48091,0,0,AEC:SA:14703,Europe/Paris,2,OTL, +OTL:SP:3377704015495493,1,"CNES- IAS",43.5625,1.48096,0,0,AEC:SA:14703,Europe/Paris,2,OTL, +OTL:SP:3377704015495494,1,"Clément Ader",43.564,1.49038,0,0,OTL:SA:1970329131942067,Europe/Paris,2,OTL, +OTL:SP:3377704015495495,1,"Clément Ader",43.564,1.49062,0,0,OTL:SA:1970329131942067,Europe/Paris,2,OTL, +OTL:SP:3377704015495496,1,"Marcel Dassault",43.5734,1.49326,0,0,OTL:SA:1970329131942068,Europe/Paris,2,OTL, +OTL:SP:3377704015495497,1,"Marcel Dassault",43.5733,1.4936,0,0,OTL:SA:1970329131942068,Europe/Paris,2,OTL, +OTL:SP:3377704015495498,1,"Santos Dumont",43.5709,1.49199,0,0,OTL:SA:1970329131942069,Europe/Paris,2,OTL, +OTL:SP:3377704015495499,1,"Santos Dumont",43.5713,1.49228,0,0,OTL:SA:1970329131942069,Europe/Paris,2,OTL, +OTL:SP:3377704015495501,1,"Védrines",43.5686,1.4907,0,0,OTL:SA:1970329131942070,Europe/Paris,0,OTL, +OTL:SP:3377704015495502,1,"Védrines",43.5689,1.49107,0,0,OTL:SA:1970329131942070,Europe/Paris,2,OTL, +OTL:SP:3377704015495503,1,"Cosmonautes",43.5636,1.49644,0,0,OTL:SA:1970324837186876,Europe/Paris,2,OTL, +OTL:SP:3377704015495504,1,"Cosmonautes",43.5636,1.49642,0,0,OTL:SA:1970324837186876,Europe/Paris,2,OTL, +OTL:SP:3377704015495505,1,"Sophie Scholl",43.5456,1.53879,0,0,OTL:SA:1970329131942071,Europe/Paris,2,OTL, +OTL:SP:3377704015495506,1,"Ctre Cial Autan",43.5304,1.53553,0,0,OTL:SA:1970329131942072,Europe/Paris,2,OTL, +OTL:SP:3377704015495507,1,"Ctre Cial Autan",43.5309,1.5351,0,0,OTL:SA:1970329131942072,Europe/Paris,0,OTL, +OTL:SP:3377704015495509,1,"St Louis du Sénégal",43.5656,1.49993,0,0,OTL:SA:1970329131942074,Europe/Paris,2,OTL, +OTL:SP:3377704015495510,1,"St Louis du Sénégal",43.5656,1.49992,0,0,OTL:SA:1970329131942074,Europe/Paris,2,OTL, +OTL:SP:3377704015495511,1,"Malepère",43.5671,1.50643,0,0,OTL:SA:1970324837186852,Europe/Paris,2,OTL, +OTL:SP:3377704015495512,1,"Malepère",43.567,1.50632,0,0,OTL:SA:1970324837186852,Europe/Paris,2,OTL, +OTL:SP:3377704015495514,1,"Lalande",43.5567,1.52946,0,0,OTL:SA:1970329131942077,Europe/Paris,2,OTL, +OTL:SP:3377704015495515,1,"Laure Delerot",43.5652,1.51263,0,0,OTL:SA:1970329131942078,Europe/Paris,2,OTL, +OTL:SP:3377704015495516,1,"Laure Delerot",43.5657,1.51223,0,0,OTL:SA:1970329131942078,Europe/Paris,2,OTL, +OTL:SP:3377704015495517,1,"Tilleuls",43.5631,1.51734,0,0,OTL:SA:1970329131942085,Europe/Paris,2,OTL, +OTL:SP:3377704015495518,1,"Tilleuls",43.5635,1.51746,0,0,OTL:SA:1970329131942085,Europe/Paris,2,OTL, +OTL:SP:3377704015495519,1,"Malepère",43.567,1.50573,0,0,OTL:SA:1970324837186852,Europe/Paris,2,OTL, +OTL:SP:3377704015495520,1,"Champs Pinsons",43.5627,1.51866,0,0,OTL:SA:1970324837186827,Europe/Paris,2,OTL, +OTL:SP:3377704015495521,1,"Moulin",43.5548,1.53038,0,0,OTL:SA:1970329131942080,Europe/Paris,2,OTL, +OTL:SP:3377704015495522,1,"Altigone",43.5536,1.5289,0,0,OTL:SA:1970329131942081,Europe/Paris,2,OTL, +OTL:SP:3377704015495523,1,"Bellières",43.5536,1.52628,0,0,OTL:SA:1970329131942082,Europe/Paris,2,OTL, +OTL:SP:3377704015495524,1,"Labouilhe",43.5479,1.53681,0,0,OTL:SA:1970324837186844,Europe/Paris,2,OTL, +OTL:SP:3377704015495525,1,"Labouilhe",43.5483,1.53673,0,0,OTL:SA:1970324837186844,Europe/Paris,2,OTL, +OTL:SP:3377704015495526,1,"Sophie Scholl",43.546,1.5384,0,0,OTL:SA:1970329131942071,Europe/Paris,2,OTL, +OTL:SP:3377704015495527,1,"Lalande",43.557,1.52918,0,0,OTL:SA:1970329131942077,Europe/Paris,2,OTL, +OTL:SP:3377704015495528,1,"Ctre Cial Castanet",43.5212,1.51305,0,0,OTL:SA:1970324838482008,Europe/Paris,2,OTL, +OTL:SP:3377704015495530,1,"Champs Pinsons",43.5629,1.51864,0,0,OTL:SA:1970324837186827,Europe/Paris,2,OTL, +OTL:SP:3377704015495531,1,"Moulin",43.5552,1.53098,0,0,OTL:SA:1970329131942080,Europe/Paris,2,OTL, +OTL:SP:3377704015495532,1,"Altigone",43.554,1.52966,0,0,OTL:SA:1970329131942081,Europe/Paris,2,OTL, +OTL:SP:3377704015495533,1,"Bellières",43.5534,1.52681,0,0,OTL:SA:1970329131942082,Europe/Paris,2,OTL, +OTL:SP:3377704015495534,1,"Malepère",43.5669,1.50584,0,0,OTL:SA:1970324837186852,Europe/Paris,2,OTL, +OTL:SP:3377704015495535,1,"Place du Souvenir",43.5537,1.54282,0,0,OTL:SA:1970324837186835,Europe/Paris,0,OTL, +OTL:SP:3377704015495536,1,"Ramonville",43.5557,1.47697,0,0,AEC:SA:02327,Europe/Paris,2,OTL, +OTL:SP:3377704015495541,1,"Belberaud La Balme",43.506,1.55734,0,0,OTL:SA:1970329131942087,Europe/Paris,2,OTL, +OTL:SP:3377704015495542,1,"Belberaud La Balme",43.5052,1.55673,0,0,OTL:SA:1970329131942087,Europe/Paris,0,OTL, +OTL:SP:3377704015495550,1,"Pépinière Basso Cambo",43.5667,1.3866,0,0,OTL:SA:1970329131942094,Europe/Paris,2,OTL, +OTL:SP:3377704015495551,1,"Pépinière Basso Cambo",43.5669,1.38596,0,0,OTL:SA:1970329131942094,Europe/Paris,2,OTL, +OTL:SP:3377704015495552,1,"Talabot Nord",43.5645,1.38795,0,0,OTL:SA:1970329131942095,Europe/Paris,2,OTL, +OTL:SP:3377704015495553,1,"Talabot Nord",43.5646,1.38846,0,0,OTL:SA:1970329131942095,Europe/Paris,2,OTL, +OTL:SP:3377704015495554,1,"Avionique",43.5652,1.38426,0,0,OTL:SA:1970329131942096,Europe/Paris,2,OTL, +OTL:SP:3377704015495555,1,"Avionique",43.5648,1.38492,0,0,OTL:SA:1970329131942096,Europe/Paris,2,OTL, +OTL:SP:3377704015495558,1,"Boudeville",43.5479,1.39428,0,0,OTL:SA:1970329131942097,Europe/Paris,2,OTL, +OTL:SP:3377704015495559,1,"Boudeville",43.5483,1.39453,0,0,OTL:SA:1970329131942097,Europe/Paris,2,OTL, +OTL:SP:3377704015495560,1,"Pierre Mounicq",43.6216,1.40574,0,0,OTL:SA:1970329131942098,Europe/Paris,2,OTL, +OTL:SP:3377704015495563,1,"Beaupuy Mairie",43.6464,1.55661,0,0,OTL:SA:1970329131942100,Europe/Paris,2,OTL, +OTL:SP:3377704015495586,1,"Clinique Pasteur",43.5955,1.41727,0,0,OTL:SA:1970329131942110,Europe/Paris,0,OTL, +OTL:SP:3377704015495587,1,"Clinique Pasteur",43.5953,1.4175,0,0,OTL:SA:1970329131942110,Europe/Paris,2,OTL, +OTL:SP:3377704015495588,1,"Portet H. Boucher",43.5147,1.38765,0,0,OTL:SA:1970324837185015,Europe/Paris,2,OTL, +OTL:SP:3377704015495595,1,"Porte de Caillibens",43.6077,1.46669,0,0,OTL:SA:1970329131942116,Europe/Paris,0,OTL, +OTL:SP:3377704015495596,1,"Porte du Milieu",43.6103,1.46482,0,0,OTL:SA:1970329131942117,Europe/Paris,2,OTL, +OTL:SP:3377704015495598,1,"Accueil Cimetière",43.64,1.32908,0,0,OTL:SA:1970329131942118,Europe/Paris,0,OTL, +OTL:SP:3377704015495599,1,"Crématorium",43.6395,1.32776,0,0,OTL:SA:1970329131942119,Europe/Paris,0,OTL, +OTL:SP:3377704015495600,1,"Secteur G",43.6347,1.32817,0,0,OTL:SA:1970329131942120,Europe/Paris,0,OTL, +OTL:SP:3377704015495601,1,"Secteur F",43.6345,1.32996,0,0,OTL:SA:1970329131942121,Europe/Paris,0,OTL, +OTL:SP:3377704015495602,1,"Secteurs D et E",43.6356,1.331,0,0,OTL:SA:1970329131942122,Europe/Paris,0,OTL, +OTL:SP:3377704015495603,1,"Secteurs B et C",43.6379,1.33055,0,0,OTL:SA:1970329131942123,Europe/Paris,0,OTL, +OTL:SP:3377704015495604,1,"Secteur A",43.64,1.33089,0,0,OTL:SA:1970329131942124,Europe/Paris,0,OTL, +OTL:SP:3377704015495606,1,"Jolimont",43.6156,1.46375,0,0,OTL:SA:1970324837185002,Europe/Paris,2,OTL, +OTL:SP:3377704015495607,1,"Marengo-SNCF",43.6109,1.45547,0,0,AEC:SA:02048,Europe/Paris,0,OTL, +OTL:SP:3377704015495609,1,"Bd de l'Europe",43.5306,1.40389,0,0,OTL:SA:1970324837185526,Europe/Paris,0,OTL, +OTL:SP:3377704015495610,1,"La Ramée",43.5683,1.36544,0,0,OTL:SA:1970324837186911,Europe/Paris,2,OTL, +OTL:SP:3377704015495611,1,"La Ramée",43.5684,1.36559,0,0,OTL:SA:1970324837186911,Europe/Paris,2,OTL, +OTL:SP:3377704015495612,1,"Guilhermy",43.5681,1.37078,0,0,OTL:SA:1970324837186341,Europe/Paris,2,OTL, +OTL:SP:3377704015495613,1,"Guilhermy",43.568,1.37087,0,0,OTL:SA:1970324837186341,Europe/Paris,2,OTL, +OTL:SP:3377704015495614,1,"Tucaut",43.5597,1.3602,0,0,OTL:SA:1970329131942127,Europe/Paris,2,OTL, +OTL:SP:3377704015495615,1,"Tucaut",43.5597,1.36029,0,0,OTL:SA:1970329131942127,Europe/Paris,2,OTL, +OTL:SP:3377704015495618,1,"Cité Scolaire Rive Gauche",43.5841,1.39862,0,0,OTL:SA:1970324837184900,Europe/Paris,2,OTL, +OTL:SP:3377704015495619,1,"Fronde",43.5848,1.39431,0,0,OTL:SA:1970324837186607,Europe/Paris,2,OTL, +OTL:SP:3377704015495620,1,"Fronde",43.5845,1.39509,0,0,OTL:SA:1970324837186607,Europe/Paris,2,OTL, +OTL:SP:3377704015495621,1,"Molinier",43.5839,1.39209,0,0,OTL:SA:1970329131942129,Europe/Paris,2,OTL, +OTL:SP:3377704015495622,1,"Molinier",43.5842,1.39243,0,0,OTL:SA:1970329131942129,Europe/Paris,2,OTL, +OTL:SP:3377704015495623,1,"Bibliothèque",43.5828,1.38999,0,0,OTL:SA:1970329131942130,Europe/Paris,2,OTL, +OTL:SP:3377704015495624,1,"Bibliothèque",43.5827,1.39054,0,0,OTL:SA:1970329131942130,Europe/Paris,2,OTL, +OTL:SP:3377704015495629,1,"Sauzat",43.5188,1.5534,0,0,OTL:SA:1970329131942131,Europe/Paris,2,OTL, +OTL:SP:3377704015495630,1,"Sauzat",43.519,1.55326,0,0,OTL:SA:1970329131942131,Europe/Paris,2,OTL, +OTL:SP:3377704015495631,1,"Bastié",43.5175,1.55779,0,0,OTL:SA:1970329131942132,Europe/Paris,2,OTL, +OTL:SP:3377704015495632,1,"Bastié",43.5177,1.55792,0,0,OTL:SA:1970329131942132,Europe/Paris,2,OTL, +OTL:SP:3377704015495639,1,"Clotasses",43.5546,1.46829,0,0,OTL:SA:1970324837186293,Europe/Paris,2,OTL, +OTL:SP:3377704015495640,1,"Université Paul Sabatier",43.5606,1.46319,0,0,OTL:SA:1970324837185012,Europe/Paris,2,OTL, +OTL:SP:3377704015495645,1,"Basso Cambo",43.5697,1.39246,0,0,AEC:SA:01957,Europe/Paris,2,OTL, +OTL:SP:3377704015495664,1,"Portet Gare SNCF",43.527,1.38858,0,0,OTL:SA:1970324837184685,Europe/Paris,2,OTL, +OTL:SP:3377704015495679,1,"Basso Cambo",43.5699,1.39245,0,0,AEC:SA:01957,Europe/Paris,2,OTL, +OTL:SP:3377704015495698,1,"Général Leclerc",43.5782,1.32676,0,0,OTL:SA:1970329131942150,Europe/Paris,2,OTL, +OTL:SP:3377704015495711,1,"Arènes",43.5938,1.41861,0,0,AEC:SA:01942,Europe/Paris,2,OTL, +OTL:SP:3377704015495722,1,"Ctre Cial Roques",43.5114,1.36939,0,0,OTL:SA:1970329131942159,Europe/Paris,2,OTL, +OTL:SP:3377704015495736,1,"Belloc Cité",43.6063,1.47483,0,0,OTL:SA:1970324840530372,Europe/Paris,2,OTL, +OTL:SP:3377704015495737,1,"Belloc Cité",43.6066,1.47396,0,0,OTL:SA:1970324840530372,Europe/Paris,2,OTL, +OTL:SP:3377704015495759,1,"Camille Soula",43.5824,1.43638,0,0,OTL:SA:1970324839642991,Europe/Paris,0,OTL, +OTL:SP:3377704015495773,1,"Gloire",43.6054,1.4765,0,0,OTL:SA:1970324837186064,Europe/Paris,2,OTL, +OTL:SP:3377704015495774,1,"Gloire",43.6055,1.47624,0,0,OTL:SA:1970324837186064,Europe/Paris,2,OTL, +OTL:SP:3377704015495804,1,"Ramonville",43.556,1.47737,0,0,AEC:SA:02327,Europe/Paris,2,OTL, +OTL:SP:3377704015495805,1,"Ramonville",43.5557,1.47623,0,0,AEC:SA:02327,Europe/Paris,2,OTL, +OTL:SP:3377704015495809,1,"Navarre",43.6052,1.47937,0,0,OTL:SA:1970324837186065,Europe/Paris,0,OTL, +OTL:SP:3377704015495810,1,"Navarre",43.6051,1.47936,0,0,OTL:SA:1970324837186065,Europe/Paris,2,OTL, +OTL:SP:3377704015495841,1,"Balma-Gramont",43.6283,1.48224,0,0,AEC:SA:00134,Europe/Paris,2,OTL, +OTL:SP:3377704015495857,1,"Université Paul Sabatier",43.5607,1.46356,0,0,OTL:SA:1970324837185012,Europe/Paris,2,OTL, +OTL:SP:3377704015495878,1,"Eglise Gagnac",43.7018,1.37011,0,0,OTL:SA:1970324837186400,Europe/Paris,2,OTL, +OTL:SP:3377704015495879,1,"Eglise Gagnac",43.7018,1.36997,0,0,OTL:SA:1970324837186400,Europe/Paris,2,OTL, +OTL:SP:3377704015495888,1,"Aucamville Collège",43.6754,1.4245,0,0,OTL:SA:1970324837186421,Europe/Paris,2,OTL, +OTL:SP:3377704015495899,1,"Etienne Hales",43.6259,1.49478,0,0,OTL:SA:1970324840530422,Europe/Paris,2,OTL, +OTL:SP:3377704015495900,1,"Etienne Hales",43.6262,1.49428,0,0,OTL:SA:1970324840530422,Europe/Paris,0,OTL, +OTL:SP:3377704015495904,1,"Plaisance Monestié",43.563,1.29167,0,0,OTL:SA:1970324837185061,Europe/Paris,2,OTL, +OTL:SP:3377704015495907,1,"Marquisat",43.5701,1.33393,0,0,OTL:SA:1970324837186622,Europe/Paris,2,OTL, +OTL:SP:3377704015495908,1,"Marquisat",43.57,1.3334,0,0,OTL:SA:1970324837186622,Europe/Paris,2,OTL, +OTL:SP:3377704015495914,1,"Salle Gascogne",43.6105,1.32943,0,0,OTL:SA:1970324837185136,Europe/Paris,2,OTL, +OTL:SP:3377704015495917,1,"Andromède-Lycée",43.6542,1.37493,0,0,AEC:SA:00263,Europe/Paris,2,OTL, +OTL:SP:3377704015495920,1,"Savary",43.6513,1.37332,0,0,OTL:SA:1970324839979939,Europe/Paris,2,OTL, +OTL:SP:3377704015495921,1,"Savary",43.6512,1.37358,0,0,OTL:SA:1970324839979939,Europe/Paris,2,OTL, +OTL:SP:3377704015495943,1,"Terris",43.5663,1.28422,0,0,OTL:SA:1970329131942160,Europe/Paris,2,OTL, +OTL:SP:3377704015495944,1,"Terris",43.5661,1.28517,0,0,OTL:SA:1970329131942160,Europe/Paris,2,OTL, +OTL:SP:3377704015495945,1,"Roussillon",43.5676,1.28099,0,0,OTL:SA:1970324837188317,Europe/Paris,0,OTL, +OTL:SP:3377704015495946,1,"Roussillon",43.5676,1.2803,0,0,OTL:SA:1970324837188317,Europe/Paris,2,OTL, +OTL:SP:3377704015495947,1,"Zoo Plaisance",43.5623,1.2648,0,0,OTL:SA:1970329131942161,Europe/Paris,0,OTL, +OTL:SP:3377704015495948,1,"Zoo Plaisance",43.562,1.26465,0,0,OTL:SA:1970329131942161,Europe/Paris,0,OTL, +OTL:SP:3377704015495949,1,"Moundran",43.5484,1.24142,0,0,OTL:SA:1970329131942162,Europe/Paris,2,OTL, +OTL:SP:3377704015495950,1,"Moundran",43.5486,1.24174,0,0,OTL:SA:1970329131942162,Europe/Paris,2,OTL, +OTL:SP:3377704015495951,1,"Magne",43.5431,1.23806,0,0,OTL:SA:1970329131942163,Europe/Paris,2,OTL, +OTL:SP:3377704015495952,1,"Magne",43.5434,1.23839,0,0,OTL:SA:1970329131942163,Europe/Paris,2,OTL, +OTL:SP:3377704015495953,1,"Cimetière Fonsorbes",43.539,1.23435,0,0,OTL:SA:1970329131942164,Europe/Paris,2,OTL, +OTL:SP:3377704015495954,1,"Cimetière Fonsorbes",43.5394,1.23528,0,0,OTL:SA:1970329131942164,Europe/Paris,2,OTL, +OTL:SP:3377704015495955,1,"11 Novembre 1918",43.5356,1.22941,0,0,OTL:SA:1970329131942165,Europe/Paris,2,OTL, +OTL:SP:3377704015495956,1,"11 Novembre 1918",43.5358,1.22988,0,0,OTL:SA:1970329131942165,Europe/Paris,2,OTL, +OTL:SP:3377704015495957,1,"Benech",43.5334,1.22632,0,0,OTL:SA:1970329131942166,Europe/Paris,2,OTL, +OTL:SP:3377704015495958,1,"Benech",43.5336,1.22684,0,0,OTL:SA:1970329131942166,Europe/Paris,2,OTL, +OTL:SP:3377704015495959,1,"Lycée Fonsorbes",43.5276,1.20929,0,0,OTL:SA:1970329131942167,Europe/Paris,2,OTL, +OTL:SP:3377704015495961,1,"Stade",43.6087,1.48845,0,0,OTL:SA:1970324837186677,Europe/Paris,2,OTL, +OTL:SP:3377704015495962,1,"Stade",43.608,1.48712,0,0,OTL:SA:1970324837186677,Europe/Paris,2,OTL, +OTL:SP:3377704015495963,1,"Mallarmé",43.6038,1.50429,0,0,OTL:SA:1970324837186702,Europe/Paris,2,OTL, +OTL:SP:3377704015495964,1,"Balma Lasbordes",43.5962,1.50611,0,0,OTL:SA:1970324837185368,Europe/Paris,0,OTL, +OTL:SP:3377704015495980,1,"Aérostiers",43.6092,1.48971,0,0,OTL:SA:1970324837186678,Europe/Paris,2,OTL, +OTL:SP:3377704015495981,1,"Aérostiers",43.6091,1.48981,0,0,OTL:SA:1970324837186678,Europe/Paris,2,OTL, +OTL:SP:3377704015495982,1,"Ctre Cial Blagnac",43.6476,1.36945,0,0,OTL:SA:1970324837189303,Europe/Paris,2,OTL, +OTL:SP:3377704015495983,1,"Ctre Cial Blagnac",43.6477,1.36955,0,0,OTL:SA:1970324837189303,Europe/Paris,2,OTL, +OTL:SP:3377704015495985,1,"Ctre Cial Aussonne",43.6857,1.322,0,0,OTL:SA:1970324837190353,Europe/Paris,0,OTL, +OTL:SP:3377704015496005,1,"Joseph Strauss",43.6454,1.36544,0,0,OTL:SA:1970324840001193,Europe/Paris,2,OTL, +OTL:SP:3377704015496006,1,"Joseph Strauss",43.6452,1.36547,0,0,OTL:SA:1970324840001193,Europe/Paris,2,OTL, +OTL:SP:3377704015496010,1,"Oncopole",43.555,1.42997,0,0,OTL:SA:1970324839361574,Europe/Paris,2,OTL, +OTL:SP:3377704015496012,1,"Oncopole",43.5554,1.43177,0,0,OTL:SA:1970324839361574,Europe/Paris,2,OTL, +OTL:SP:3377704015496013,1,"Dasque",43.5539,1.45198,0,0,OTL:SA:1970329131942169,Europe/Paris,2,OTL, +OTL:SP:3377704015496014,1,"Dasque",43.5537,1.45136,0,0,OTL:SA:1970329131942169,Europe/Paris,2,OTL, +OTL:SP:3377704015496015,1,"Dugua",43.557,1.45625,0,0,OTL:SA:1970329131942170,Europe/Paris,2,OTL, +OTL:SP:3377704015496016,1,"Dugua",43.5566,1.45614,0,0,OTL:SA:1970329131942170,Europe/Paris,2,OTL, +OTL:SP:3377704015496021,1,"Collège Mermoz",43.646,1.38093,0,0,OTL:SA:1970324839976619,Europe/Paris,2,OTL, +OTL:SP:3377704015496026,1,"Meunier",43.7373,1.38007,0,0,OTL:SA:1970324840530423,Europe/Paris,0,OTL, +OTL:SP:3377704015496027,1,"Ladoux",43.7402,1.37351,0,0,OTL:SA:1970324840530424,Europe/Paris,0,OTL, +OTL:SP:3377704015496028,1,"Ecole du Lac",43.7435,1.37306,0,0,OTL:SA:1970324840530426,Europe/Paris,0,OTL, +OTL:SP:3377704015496030,1,"Collège Jean Rostand",43.6046,1.50747,0,0,OTL:SA:1970329131942157,Europe/Paris,2,OTL, +OTL:SP:3377704015496031,1,"Collège Jean Rostand",43.6043,1.50713,0,0,OTL:SA:1970329131942157,Europe/Paris,2,OTL, +OTL:SP:3377704015496032,1,"Louis Renault",43.629,1.48766,0,0,OTL:SA:1970329131942156,Europe/Paris,2,OTL, +OTL:SP:3377704015496033,1,"Louis Renault",43.6293,1.48781,0,0,OTL:SA:1970329131942156,Europe/Paris,2,OTL, +OTL:SP:3377704015496036,1,"Bordebasse",43.6378,1.37154,0,0,OTL:SA:1970324837189346,Europe/Paris,2,OTL, +OTL:SP:3377704015496037,1,"Bordebasse",43.6376,1.372,0,0,OTL:SA:1970324837189346,Europe/Paris,2,OTL, +OTL:SP:3377704015496038,1,"Marcel Dassault",43.6414,1.36887,0,0,OTL:SA:1970324839978946,Europe/Paris,2,OTL, +OTL:SP:3377704015496039,1,"Marcel Dassault",43.6424,1.36827,0,0,OTL:SA:1970324839978946,Europe/Paris,2,OTL, +OTL:SP:3377704015496040,1,"Air France Industries",43.6452,1.36384,0,0,OTL:SA:1970324839978949,Europe/Paris,2,OTL, +OTL:SP:3377704015496041,1,"Air France Industries",43.6458,1.36448,0,0,OTL:SA:1970324839978949,Europe/Paris,2,OTL, +OTL:SP:3377704015496042,1,"Béteille",43.6524,1.36197,0,0,OTL:SA:1970324839978952,Europe/Paris,2,OTL, +OTL:SP:3377704015496043,1,"Béteille",43.6523,1.36233,0,0,OTL:SA:1970324839978952,Europe/Paris,2,OTL, +OTL:SP:3377704015496044,1,"Lagardère",43.6546,1.36098,0,0,OTL:SA:1970324839978955,Europe/Paris,2,OTL, +OTL:SP:3377704015496045,1,"Lagardère",43.6541,1.36101,0,0,OTL:SA:1970324839978955,Europe/Paris,2,OTL, +OTL:SP:3377704015496047,1,"Aéroconstellation",43.6628,1.36323,0,0,OTL:SA:1970324837190628,Europe/Paris,2,OTL, +OTL:SP:3377704015496048,1,"Aéroconstellation",43.6628,1.36286,0,0,OTL:SA:1970324837190628,Europe/Paris,2,OTL, +OTL:SP:3377704015496050,1,"Avenir",43.7079,1.38186,0,0,OTL:SA:1970324839978958,Europe/Paris,2,OTL, +OTL:SP:3377704015496051,1,"Avenir",43.7084,1.3828,0,0,OTL:SA:1970324839978958,Europe/Paris,2,OTL, +OTL:SP:3377704015496052,1,"Les Vitarelles",43.7095,1.39138,0,0,OTL:SA:1970324839811784,Europe/Paris,0,OTL, +OTL:SP:3377704015496053,1,"Les Vitarelles",43.7101,1.39115,0,0,OTL:SA:1970324839811784,Europe/Paris,2,OTL, +OTL:SP:3377704015496054,1,"Fenouillet Ctre Cial",43.6871,1.40392,0,0,OTL:SA:1970324837185047,Europe/Paris,2,OTL, +OTL:SP:3377704015496059,1,"Aéroport",43.6315,1.37493,0,0,OTL:SA:1970324837184612,Europe/Paris,2,OTL, +OTL:SP:3377704015496068,1,"Ecarts",43.5605,1.35772,0,0,OTL:SA:1970329131942138,Europe/Paris,2,OTL, +OTL:SP:3377704015496069,1,"Ecarts",43.5604,1.35682,0,0,OTL:SA:1970329131942138,Europe/Paris,2,OTL, +OTL:SP:3377704015496070,1,"Canal",43.5608,1.35233,0,0,OTL:SA:1970329131942139,Europe/Paris,2,OTL, +OTL:SP:3377704015496071,1,"Canal",43.5606,1.3525,0,0,OTL:SA:1970329131942139,Europe/Paris,2,OTL, +OTL:SP:3377704015496072,1,"Bordenoire",43.561,1.34756,0,0,OTL:SA:1970329131942140,Europe/Paris,2,OTL, +OTL:SP:3377704015496073,1,"Bordenoire",43.5607,1.34763,0,0,OTL:SA:1970329131942140,Europe/Paris,0,OTL, +OTL:SP:3377704015496074,1,"Passerive",43.5655,1.33736,0,0,OTL:SA:1970329131942141,Europe/Paris,2,OTL, +OTL:SP:3377704015496075,1,"Passerive",43.5653,1.33698,0,0,OTL:SA:1970329131942141,Europe/Paris,2,OTL, +OTL:SP:3377704015496076,1,"Pasteur",43.5719,1.33261,0,0,OTL:SA:1970329131942148,Europe/Paris,2,OTL, +OTL:SP:3377704015496077,1,"Pasteur",43.5718,1.33212,0,0,OTL:SA:1970329131942148,Europe/Paris,2,OTL, +OTL:SP:3377704015496078,1,"Cèdres",43.5757,1.32838,0,0,OTL:SA:1970329131942149,Europe/Paris,2,OTL, +OTL:SP:3377704015496079,1,"Cèdres",43.5755,1.32827,0,0,OTL:SA:1970329131942149,Europe/Paris,2,OTL, +OTL:SP:3377704015496080,1,"Général Leclerc",43.5775,1.32752,0,0,OTL:SA:1970329131942150,Europe/Paris,2,OTL, +OTL:SP:3377704015496081,1,"Pech David",43.5614,1.44762,0,0,OTL:SA:1970324839164068,Europe/Paris,2,OTL, +OTL:SP:3377704015496086,1,"Mairie Roques",43.5085,1.37534,0,0,OTL:SA:1970329131942158,Europe/Paris,2,OTL, +OTL:SP:3377704015496097,1,"Raymond Grimaud",43.6404,1.36973,0,0,OTL:SA:1970329131942093,Europe/Paris,2,OTL, +OTL:SP:3377704015496098,1,"Raymond Grimaud",43.6401,1.37039,0,0,OTL:SA:1970329131942093,Europe/Paris,2,OTL, +OTL:SP:3377704015496099,1,"IUC",43.5553,1.42659,0,0,OTL:SA:1970329131942154,Europe/Paris,2,OTL, +OTL:SP:3377704015496100,1,"IUC",43.555,1.42678,0,0,OTL:SA:1970329131942154,Europe/Paris,2,OTL, +OTL:SP:3377704015496296,1,"Nadot",43.6244,1.3867,0,0,OTL:SA:1970324840530409,Europe/Paris,2,OTL, +OTL:SP:3377704015496297,1,"Nadot",43.6243,1.38664,0,0,OTL:SA:1970324840530409,Europe/Paris,2,OTL, +OTL:SP:3377704015496298,1,"Daurat",43.6289,1.37936,0,0,OTL:SA:1970324840530410,Europe/Paris,2,OTL, +OTL:SP:3377704015496299,1,"Daurat",43.6288,1.37931,0,0,OTL:SA:1970324840530410,Europe/Paris,2,OTL, +OTL:SP:3377704015496301,1,"Aéroport",43.6313,1.37442,0,0,OTL:SA:1970324837184612,Europe/Paris,2,OTL, +OTL:SP:3377704015496303,1,"Général Leclerc",43.578,1.32778,0,0,OTL:SA:1970329131942150,Europe/Paris,2,OTL, +OTL:SP:3377704015496314,1,"Empalot",43.5799,1.44146,0,0,OTL:SA:1970324837186130,Europe/Paris,2,OTL, +OTL:SP:3377704015496316,1,"Lycée Fonsorbes",43.5281,1.20934,0,0,OTL:SA:1970329131942167,Europe/Paris,2,OTL, +OTL:SP:3377704015496318,1,"Empalot",43.5801,1.44179,0,0,OTL:SA:1970324837186130,Europe/Paris,2,OTL, +OTL:SP:3377704015496319,1,"Fronde",43.5848,1.39431,0,0,OTL:SA:1970324837186607,Europe/Paris,2,OTL, +OTL:SP:3377704015496325,1,"Chaumière",43.6138,1.4662,0,0,OTL:SA:1970324840227660,Europe/Paris,2,OTL, +OTL:SP:3377704015496326,1,"Chaumière",43.6141,1.46596,0,0,OTL:SA:1970324840227660,Europe/Paris,2,OTL, +OTL:SP:3377704015496328,1,"Aubrac",43.6134,1.34203,0,0,OTL:SA:1970329131942202,Europe/Paris,2,OTL, +OTL:SP:3377704015496329,1,"Aubrac",43.6137,1.34167,0,0,OTL:SA:1970329131942202,Europe/Paris,2,OTL, +OTL:SP:3377704015496330,1,"Pelvoux",43.6113,1.34567,0,0,OTL:SA:1970329131942203,Europe/Paris,2,OTL, +OTL:SP:3377704015496331,1,"Pelvoux",43.6115,1.34552,0,0,OTL:SA:1970329131942203,Europe/Paris,2,OTL, +OTL:SP:3377704015496332,1,"Serres",43.6124,1.35243,0,0,OTL:SA:1970329131942204,Europe/Paris,2,OTL, +OTL:SP:3377704015496333,1,"Serres",43.6121,1.35214,0,0,OTL:SA:1970329131942204,Europe/Paris,2,OTL, +OTL:SP:3377704015496336,1,"Pont du Béarnais",43.6117,1.42495,0,0,OTL:SA:1970324839978792,Europe/Paris,2,OTL, +OTL:SP:3377704015496337,1,"Pelletier Purpan",43.6071,1.39593,0,0,OTL:SA:1970324837184677,Europe/Paris,2,OTL, +OTL:SP:3377704015496338,1,"Pelletier Purpan",43.607,1.39585,0,0,OTL:SA:1970324837184677,Europe/Paris,2,OTL, +OTL:SP:3377704015496339,1,"Pelletier Purpan",43.6069,1.39591,0,0,OTL:SA:1970324837184677,Europe/Paris,2,OTL, +OTL:SP:3377704015496342,1,"La Vache",43.6334,1.43495,0,0,OTL:SA:1970324838319080,Europe/Paris,2,OTL, +OTL:SP:3377704015496347,1,"José Cabanis",43.6224,1.49552,0,0,OTL:SA:1970329131942207,Europe/Paris,2,OTL, +OTL:SP:3377704015496348,1,"José Cabanis",43.6228,1.49486,0,0,OTL:SA:1970329131942207,Europe/Paris,2,OTL, +OTL:SP:3377704015496349,1,"Carnot",43.6619,1.44588,0,0,OTL:SA:1970329131942208,Europe/Paris,2,OTL, +OTL:SP:3377704015496350,1,"Carnot",43.6622,1.44543,0,0,OTL:SA:1970329131942208,Europe/Paris,2,OTL, +OTL:SP:3377704015496351,1,"Las Clotos",43.6642,1.44389,0,0,OTL:SA:1970329131942209,Europe/Paris,2,OTL, +OTL:SP:3377704015496352,1,"Las Clotos",43.664,1.44378,0,0,OTL:SA:1970329131942209,Europe/Paris,2,OTL, +OTL:SP:3377704015496353,1,"Condorcet",43.6601,1.44841,0,0,OTL:SA:1970329131942210,Europe/Paris,2,OTL, +OTL:SP:3377704015496354,1,"Condorcet",43.6606,1.44725,0,0,OTL:SA:1970329131942210,Europe/Paris,2,OTL, +OTL:SP:3377704015496380,1,"Moulis",43.6658,1.44118,0,0,OTL:SA:1970329131942215,Europe/Paris,2,OTL, +OTL:SP:3377704015496406,1,"Launaguet Nobles",43.6708,1.44552,0,0,OTL:SA:1970329131942223,Europe/Paris,2,OTL, +OTL:SP:3377704015496487,1,"Bicentenaire",43.6208,1.49647,0,0,OTL:SA:1970329131942272,Europe/Paris,2,OTL, +OTL:SP:3377704015496488,1,"Verdale",43.6634,1.49027,0,0,OTL:SA:1970329131942366,Europe/Paris,2,OTL, +OTL:SP:3377704015496489,1,"Verdale",43.6635,1.49034,0,0,OTL:SA:1970329131942366,Europe/Paris,2,OTL, +OTL:SP:3377704015496490,1,"Mistral",43.6487,1.53299,0,0,OTL:SA:1970324837190537,Europe/Paris,2,OTL, +OTL:SP:3377704015496527,1,"Lespinasse Mairie",43.7107,1.39349,0,0,OTL:SA:1970324837431428,Europe/Paris,2,OTL, +OTL:SP:3377704015496528,1,"Lespinasse Mairie",43.7107,1.39353,0,0,OTL:SA:1970324837431428,Europe/Paris,2,OTL, +OTL:SP:3377704015496542,1,"Diane",43.5583,1.36599,0,0,OTL:SA:1970329131942301,Europe/Paris,2,OTL, +OTL:SP:3377704015496543,1,"Diane",43.5583,1.36616,0,0,OTL:SA:1970329131942301,Europe/Paris,2,OTL, +OTL:SP:3377704015496553,1,"Fer à Cheval",43.5955,1.43587,0,0,OTL:SA:1970324837185543,Europe/Paris,2,OTL, +OTL:SP:3377704015496557,1,"CHR Rangueil",43.5588,1.45363,0,0,OTL:SA:1970324837184793,Europe/Paris,2,OTL, +OTL:SP:3377704015496560,1,"Père Brottier",43.4715,1.32383,0,0,OTL:SA:1970329131942309,Europe/Paris,2,OTL, +OTL:SP:3377704015496561,1,"Père Brottier",43.4715,1.32406,0,0,OTL:SA:1970329131942309,Europe/Paris,2,OTL, +OTL:SP:3377704015496566,1,"Oncopole",43.5542,1.43189,0,0,OTL:SA:1970324839361574,Europe/Paris,2,OTL, +OTL:SP:3377704015496568,1,"Hôpital Purpan",43.6076,1.39696,0,0,OTL:SA:1970324837185244,Europe/Paris,2,OTL, +OTL:SP:3377704015496569,1,"Castelmaurou Mairie",43.6784,1.53146,0,0,OTL:SA:1970324837185193,Europe/Paris,2,OTL, +OTL:SP:3377704015496574,1,"Ctre Cial Portet - Entrée 5",43.5363,1.40588,0,0,OTL:SA:1970324837186225,Europe/Paris,2,OTL, +OTL:SP:3377704015496575,1,"Bois de Saget",43.6631,1.49834,0,0,OTL:SA:1970329131942319,Europe/Paris,2,OTL, +OTL:SP:3377704015496576,1,"Bois de Saget",43.6631,1.49778,0,0,OTL:SA:1970329131942319,Europe/Paris,2,OTL, +OTL:SP:3377704015496577,1,"L'Union Malbou",43.661,1.48358,0,0,OTL:SA:1970324837184929,Europe/Paris,2,OTL, +OTL:SP:3377704015496578,1,"Portes du Gers",43.5297,1.21099,0,0,OTL:SA:1970329131942362,Europe/Paris,2,OTL, +OTL:SP:3377704015496579,1,"Portes du Gers",43.5297,1.21093,0,0,OTL:SA:1970329131942362,Europe/Paris,2,OTL, +OTL:SP:3377704015496580,1,"Colomiers Gare SNCF",43.6043,1.33461,0,0,OTL:SA:1970324837184752,Europe/Paris,2,OTL, +OTL:SP:3377704015496581,1,"Colomiers Gare SNCF",43.6043,1.33471,0,0,OTL:SA:1970324837184752,Europe/Paris,2,OTL, +OTL:SP:3377704015496582,1,"Colomiers Gare SNCF",43.6041,1.33465,0,0,OTL:SA:1970324837184752,Europe/Paris,2,OTL, +OTL:SP:3377704015496583,1,"Oisans",43.6022,1.33544,0,0,OTL:SA:1970329131942352,Europe/Paris,2,OTL, +OTL:SP:3377704015496584,1,"Oisans",43.6021,1.33515,0,0,OTL:SA:1970329131942352,Europe/Paris,2,OTL, +OTL:SP:3377704015496585,1,"Mont Blanc",43.6027,1.33894,0,0,OTL:SA:1970329131942353,Europe/Paris,2,OTL, +OTL:SP:3377704015496586,1,"Mont Blanc",43.6023,1.33879,0,0,OTL:SA:1970329131942353,Europe/Paris,2,OTL, +OTL:SP:3377704015496587,1,"Armurier",43.6009,1.33966,0,0,OTL:SA:1970329131942355,Europe/Paris,2,OTL, +OTL:SP:3377704015496588,1,"Armurier",43.6008,1.33925,0,0,OTL:SA:1970329131942355,Europe/Paris,2,OTL, +OTL:SP:3377704015496589,1,"Clinique Des Pyrénées",43.5981,1.33991,0,0,OTL:SA:1970329131942358,Europe/Paris,2,OTL, +OTL:SP:3377704015496590,1,"Clinique Des Pyrénées",43.5981,1.33953,0,0,OTL:SA:1970329131942358,Europe/Paris,2,OTL, +OTL:SP:3377704015496591,1,"Luchonnais",43.5951,1.33891,0,0,OTL:SA:1970329131942356,Europe/Paris,2,OTL, +OTL:SP:3377704015496592,1,"Luchonnais",43.5954,1.3393,0,0,OTL:SA:1970329131942356,Europe/Paris,2,OTL, +OTL:SP:3377704015496593,1,"Capoul",43.5956,1.34373,0,0,OTL:SA:1970329131942351,Europe/Paris,2,OTL, +OTL:SP:3377704015496594,1,"Capoul",43.5949,1.34351,0,0,OTL:SA:1970329131942351,Europe/Paris,2,OTL, +OTL:SP:3377704015496595,1,"Georges Brassens",43.5978,1.34546,0,0,OTL:SA:1970329131942357,Europe/Paris,2,OTL, +OTL:SP:3377704015496596,1,"Georges Brassens",43.5975,1.34586,0,0,OTL:SA:1970329131942357,Europe/Paris,2,OTL, +OTL:SP:3377704015496597,1,"Lucie Aubrac",43.5974,1.34968,0,0,OTL:SA:1970329131942354,Europe/Paris,2,OTL, +OTL:SP:3377704015496598,1,"Lucie Aubrac",43.5973,1.34908,0,0,OTL:SA:1970329131942354,Europe/Paris,2,OTL, +OTL:SP:3377704015496599,1,"Saint Lys Rossignols",43.5151,1.16195,0,0,OTL:SA:1970329131942329,Europe/Paris,2,OTL, +OTL:SP:3377704015496600,1,"Eglise St Lys",43.514,1.17791,0,0,OTL:SA:1970329131942360,Europe/Paris,2,OTL, +OTL:SP:3377704015496601,1,"Eglise St Lys",43.514,1.17809,0,0,OTL:SA:1970329131942360,Europe/Paris,2,OTL, +OTL:SP:3377704015496602,1,"Saint Julien",43.5099,1.17909,0,0,OTL:SA:1970329131942359,Europe/Paris,2,OTL, +OTL:SP:3377704015496603,1,"Saint Julien",43.5096,1.17888,0,0,OTL:SA:1970329131942359,Europe/Paris,2,OTL, +OTL:SP:3377704015496604,1,"Barrat",43.5077,1.17518,0,0,OTL:SA:1970329131942361,Europe/Paris,2,OTL, +OTL:SP:3377704015496605,1,"Barrat",43.5076,1.17521,0,0,OTL:SA:1970329131942361,Europe/Paris,2,OTL, +OTL:SP:3377704015496606,1,"8 mai 1945",43.5097,1.17358,0,0,OTL:SA:1970329131942363,Europe/Paris,2,OTL, +OTL:SP:3377704015496607,1,"8 mai 1945",43.5096,1.1735,0,0,OTL:SA:1970329131942363,Europe/Paris,2,OTL, +OTL:SP:3377704015496608,1,"Colomiers Lycée International",43.6176,1.3087,0,0,OTL:SA:1970324838348834,Europe/Paris,2,OTL, +OTL:SP:3377704015496609,1,"Colomiers Lycée International",43.6176,1.30881,0,0,OTL:SA:1970324838348834,Europe/Paris,2,OTL, +OTL:SP:3377704015496610,1,"Basso Cambo",43.5691,1.39129,0,0,AEC:SA:01957,Europe/Paris,2,OTL, +OTL:SP:3377704015496611,1,"Basso Cambo",43.5698,1.39116,0,0,AEC:SA:01957,Europe/Paris,2,OTL, +OTL:SP:3377704015496612,1,"Colomiers Ramassiers Gare SNCF",43.602,1.35326,0,0,OTL:SA:1970324837190400,Europe/Paris,2,OTL, +OTL:SP:3377704015496613,1,"Côte D'Or",43.616,1.34024,0,0,OTL:SA:1970329131942344,Europe/Paris,2,OTL, +OTL:SP:3377704015496615,1,"Garroussal",43.6242,1.333,0,0,OTL:SA:1970329131942340,Europe/Paris,2,OTL, +OTL:SP:3377704015496616,1,"Garroussal",43.6239,1.333,0,0,OTL:SA:1970329131942340,Europe/Paris,2,OTL, +OTL:SP:3377704015496617,1,"Saint Jean",43.6231,1.32904,0,0,OTL:SA:1970329131942331,Europe/Paris,2,OTL, +OTL:SP:3377704015496618,1,"Saint Jean",43.623,1.32906,0,0,OTL:SA:1970329131942331,Europe/Paris,2,OTL, +OTL:SP:3377704015496619,1,"Forez",43.6227,1.32533,0,0,OTL:SA:1970329131942337,Europe/Paris,2,OTL, +OTL:SP:3377704015496620,1,"Forez",43.6224,1.32613,0,0,OTL:SA:1970329131942337,Europe/Paris,2,OTL, +OTL:SP:3377704015496621,1,"Fourcaudis",43.6216,1.32066,0,0,OTL:SA:1970329131942330,Europe/Paris,2,OTL, +OTL:SP:3377704015496622,1,"Fourcaudis",43.6226,1.32152,0,0,OTL:SA:1970329131942330,Europe/Paris,2,OTL, +OTL:SP:3377704015496623,1,"Armorique",43.6193,1.3197,0,0,OTL:SA:1970329131942339,Europe/Paris,2,OTL, +OTL:SP:3377704015496624,1,"Armorique",43.6191,1.31992,0,0,OTL:SA:1970329131942339,Europe/Paris,2,OTL, +OTL:SP:3377704015496625,1,"Brocéliande",43.6202,1.31533,0,0,OTL:SA:1970329131942335,Europe/Paris,2,OTL, +OTL:SP:3377704015496626,1,"Brocéliande",43.62,1.31558,0,0,OTL:SA:1970329131942335,Europe/Paris,2,OTL, +OTL:SP:3377704015496627,1,"Noirmoutier",43.6205,1.3101,0,0,OTL:SA:1970329131942343,Europe/Paris,2,OTL, +OTL:SP:3377704015496628,1,"Noirmoutier",43.6207,1.31029,0,0,OTL:SA:1970329131942343,Europe/Paris,2,OTL, +OTL:SP:3377704015496629,1,"Vendée",43.6182,1.30351,0,0,OTL:SA:1970329131942342,Europe/Paris,2,OTL, +OTL:SP:3377704015496630,1,"Vendée",43.6184,1.30352,0,0,OTL:SA:1970329131942342,Europe/Paris,2,OTL, +OTL:SP:3377704015496631,1,"Pornic",43.6155,1.30289,0,0,OTL:SA:1970329131942346,Europe/Paris,2,OTL, +OTL:SP:3377704015496632,1,"Pornic",43.6157,1.30305,0,0,OTL:SA:1970329131942346,Europe/Paris,2,OTL, +OTL:SP:3377704015496633,1,"Ampère",43.613,1.30674,0,0,OTL:SA:1970329131942333,Europe/Paris,2,OTL, +OTL:SP:3377704015496634,1,"Ampère",43.6119,1.30615,0,0,OTL:SA:1970329131942333,Europe/Paris,2,OTL, +OTL:SP:3377704015496635,1,"Loudet",43.6097,1.30587,0,0,OTL:SA:1970329131942347,Europe/Paris,2,OTL, +OTL:SP:3377704015496636,1,"Loudet",43.6097,1.30594,0,0,OTL:SA:1970329131942347,Europe/Paris,2,OTL, +OTL:SP:3377704015496637,1,"Perget",43.6094,1.30934,0,0,OTL:SA:1970329131942336,Europe/Paris,2,OTL, +OTL:SP:3377704015496638,1,"Perget",43.6095,1.30923,0,0,OTL:SA:1970329131942336,Europe/Paris,2,OTL, +OTL:SP:3377704015496639,1,"Aquitaine",43.6145,1.32465,0,0,OTL:SA:1970329131942334,Europe/Paris,2,OTL, +OTL:SP:3377704015496640,1,"Aquitaine",43.6142,1.324,0,0,OTL:SA:1970329131942334,Europe/Paris,2,OTL, +OTL:SP:3377704015496641,1,"Collège Léon Blum",43.6155,1.32588,0,0,OTL:SA:1970329131942332,Europe/Paris,2,OTL, +OTL:SP:3377704015496642,1,"Collège Léon Blum",43.6157,1.3258,0,0,OTL:SA:1970329131942332,Europe/Paris,2,OTL, +OTL:SP:3377704015496643,1,"Bel Air",43.6147,1.32869,0,0,OTL:SA:1970329131942338,Europe/Paris,2,OTL, +OTL:SP:3377704015496644,1,"Bel Air",43.6146,1.32904,0,0,OTL:SA:1970329131942338,Europe/Paris,2,OTL, +OTL:SP:3377704015496645,1,"Tucol",43.6058,1.32362,0,0,OTL:SA:1970329131942348,Europe/Paris,2,OTL, +OTL:SP:3377704015496646,1,"Sevennes",43.6051,1.32212,0,0,OTL:SA:1970329131942341,Europe/Paris,2,OTL, +OTL:SP:3377704015496647,1,"Baronnies",43.6048,1.31887,0,0,OTL:SA:1970329131942345,Europe/Paris,2,OTL, +OTL:SP:3377704015496648,1,"Marcadau",43.6058,1.31614,0,0,OTL:SA:1970329131942349,Europe/Paris,2,OTL, +OTL:SP:3377704015496649,1,"Piscine",43.5131,1.17203,0,0,OTL:SA:1970324840530416,Europe/Paris,2,OTL, +OTL:SP:3377704015496650,1,"Médiathèque Pavillon Blanc",43.6094,1.33456,0,0,OTL:SA:1970329131942325,Europe/Paris,2,OTL, +OTL:SP:3377704015496651,1,"Médiathèque Pavillon Blanc",43.609,1.33506,0,0,OTL:SA:1970329131942325,Europe/Paris,2,OTL, +OTL:SP:3377704015496653,1,"Seysses Gay",43.4949,1.30652,0,0,OTL:SA:1970324837185377,Europe/Paris,2,OTL, +OTL:SP:3377704015496654,1,"Médiathèque Pavillon Blanc",43.609,1.33634,0,0,OTL:SA:1970329131942325,Europe/Paris,2,OTL, +OTL:SP:3377704015496655,1,"Médiathèque Pavillon Blanc",43.6083,1.33666,0,0,OTL:SA:1970329131942325,Europe/Paris,2,OTL, +OTL:SP:3377704015496656,1,"Médiathèque Pavillon Blanc",43.6078,1.33647,0,0,OTL:SA:1970329131942325,Europe/Paris,2,OTL, +OTL:SP:3377704015496657,1,"Lycée Toulouse-Lautrec",43.6271,1.44416,0,0,AEC:SA:02045,Europe/Paris,2,OTL, +OTL:SP:3377704015496658,1,"Lycée Toulouse-Lautrec",43.6262,1.44316,0,0,AEC:SA:02045,Europe/Paris,2,OTL, +OTL:SP:3377704015496659,1,"Lycée Toulouse-Lautrec",43.6268,1.44345,0,0,AEC:SA:02045,Europe/Paris,2,OTL, +OTL:SP:3377704015496663,1,"Oratoire",43.6093,1.34862,0,0,OTL:SA:1970329131942328,Europe/Paris,2,OTL, +OTL:SP:3377704015496664,1,"Oratoire",43.6093,1.35062,0,0,OTL:SA:1970329131942328,Europe/Paris,2,OTL, +OTL:SP:3377704015496665,1,"Virebent",43.6534,1.46342,0,0,OTL:SA:1970324839163933,Europe/Paris,2,OTL, +OTL:SP:3377704015496666,1,"Lully",43.6191,1.40819,0,0,OTL:SA:1970324837184909,Europe/Paris,2,OTL, +OTL:SP:3377704015496667,1,"Sept Deniers - Salvador Dali",43.6264,1.41071,0,0,OTL:SA:1970329131942367,Europe/Paris,2,OTL, +OTL:SP:3377704015496668,1,"Nougaro",43.6216,1.40821,0,0,OTL:SA:1970329131942369,Europe/Paris,2,OTL, +OTL:SP:3377704015496669,1,"Nougaro",43.6219,1.40817,0,0,OTL:SA:1970329131942369,Europe/Paris,2,OTL, +OTL:SP:3377704015496670,1,"Pierre Mounicq",43.6212,1.40587,0,0,OTL:SA:1970329131942098,Europe/Paris,2,OTL, +OTL:SP:3377704015496671,1,"Ch. de Roques",43.6239,1.4094,0,0,OTL:SA:1970329131942368,Europe/Paris,2,OTL, +OTL:SP:3377704015496672,1,"Ch. de Roques",43.6239,1.40943,0,0,OTL:SA:1970329131942368,Europe/Paris,2,OTL, +OTL:SP:3377704015496673,1,"Route de Blagnac",43.6184,1.40735,0,0,OTL:SA:1970324837186046,Europe/Paris,2,OTL, +OTL:SP:3377704015496674,1,"Arènes",43.5936,1.41867,0,0,AEC:SA:01942,Europe/Paris,0,OTL, +OTL:SP:3377704015496675,1,"Pont de Rupé",43.6571,1.41118,0,0,OTL:SA:1970329131942371,Europe/Paris,2,OTL, +OTL:SP:3377704015496676,1,"Pont de Rupé",43.656,1.41143,0,0,OTL:SA:1970329131942371,Europe/Paris,2,OTL, +OTL:SP:3377704015496677,1,"Picarel",43.6504,1.41349,0,0,OTL:SA:1970329131942372,Europe/Paris,2,OTL, +OTL:SP:3377704015496678,1,"Picarel",43.6502,1.41347,0,0,OTL:SA:1970329131942372,Europe/Paris,2,OTL, +OTL:SP:3377704015496679,1,"Ginestous Chênes",43.6591,1.40955,0,0,OTL:SA:1970329131942374,Europe/Paris,2,OTL, +OTL:SP:3377704015496680,1,"Pôle",43.6455,1.41928,0,0,OTL:SA:1970329131942373,Europe/Paris,2,OTL, +OTL:SP:3377704015496681,1,"Seysses Gay",43.4948,1.30673,0,0,OTL:SA:1970324837185377,Europe/Paris,0,OTL, +OTL:SP:3377704015496682,1,"Montrabé Stade",43.6475,1.52794,0,0,OTL:SA:1970324837190536,Europe/Paris,0,OTL, +OTL:SP:3377704015496683,1,"La Vache",43.6337,1.43492,0,0,OTL:SA:1970324838319080,Europe/Paris,2,OTL, +OTL:SP:3377704015496684,1,"Cours Dillon",43.5989,1.43739,0,0,OTL:SA:1970324837184995,Europe/Paris,2,OTL, +OTL:SP:3377704015496686,1,"Moulin",43.6185,1.33673,0,0,OTL:SA:1970329131942375,Europe/Paris,2,OTL, +OTL:SP:3377704015496687,1,"Couderc",43.6149,1.33781,0,0,OTL:SA:1970329131942376,Europe/Paris,2,OTL, +OTL:SP:3377704015496688,1,"F. Pons",43.613,1.33768,0,0,OTL:SA:1970329131942377,Europe/Paris,2,OTL, +OTL:SP:3377704015496689,1,"Violette",43.66,1.47013,0,0,OTL:SA:1970324837186774,Europe/Paris,2,OTL, +OTL:SP:3377704015496690,1,"Violette",43.6601,1.47062,0,0,OTL:SA:1970324837186774,Europe/Paris,2,OTL, +OTL:SP:3377704015496691,1,"Edmond Rostand",43.6438,1.45558,0,0,OTL:SA:1970329131942378,Europe/Paris,2,OTL, +OTL:SP:3377704015496692,1,"Edmond Rostand",43.6435,1.45562,0,0,OTL:SA:1970329131942378,Europe/Paris,2,OTL, +OTL:SP:3377704015496693,1,"Tocqueville",43.6503,1.4566,0,0,OTL:SA:1970324839163923,Europe/Paris,2,OTL, +OTL:SP:3377704015496694,1,"Tocqueville",43.6501,1.45638,0,0,OTL:SA:1970324839163923,Europe/Paris,2,OTL, +OTL:SP:3377704015496695,1,"Furet",43.6542,1.45899,0,0,OTL:SA:1970324839163938,Europe/Paris,2,OTL, +OTL:SP:3377704015496696,1,"Furet",43.654,1.45879,0,0,OTL:SA:1970324839163938,Europe/Paris,2,OTL, +OTL:SP:3377704015496697,1,"Za Triasis",43.659,1.45486,0,0,OTL:SA:1970329131942379,Europe/Paris,2,OTL, +OTL:SP:3377704015496698,1,"Za Triasis",43.6589,1.45473,0,0,OTL:SA:1970329131942379,Europe/Paris,2,OTL, +OTL:SP:3377704015496700,1,"Barcelone",43.6068,1.43004,0,0,OTL:SA:1970329131942380,Europe/Paris,2,OTL, +OTL:SP:3377704015496701,1,"Borderouge",43.6417,1.45277,0,0,AEC:SA:01961,Europe/Paris,2,OTL, +OTL:SP:3377704015496702,1,"Basso Cambo",43.5694,1.39136,0,0,AEC:SA:01957,Europe/Paris,2,OTL, +OTL:SP:3377704015496703,1,"Mairie St-Jean",43.6654,1.50505,0,0,OTL:SA:1970324837185192,Europe/Paris,2,OTL, +OTL:SP:3377704015496705,1,"Esquirol",43.5999,1.4455,0,0,OTL:SA:1970324837184892,Europe/Paris,2,OTL, +OTL:SP:3377704015496706,1,"Esquirol",43.6003,1.44492,0,0,OTL:SA:1970324837184892,Europe/Paris,2,OTL, +OTL:SP:3377704015496707,1,"Esquirol",43.6004,1.44621,0,0,OTL:SA:1970324837184892,Europe/Paris,2,OTL, +OTL:SP:3377704015496708,1,"Fontaine Lestang",43.5864,1.42,0,0,OTL:SA:1970329131942381,Europe/Paris,2,OTL, +OTL:SP:3377704015496709,1,"Fontaine Lestang",43.5863,1.42026,0,0,OTL:SA:1970329131942381,Europe/Paris,2,OTL, +OTL:SP:3377704015496710,1,"Fieux",43.5829,1.41855,0,0,OTL:SA:1970329131942383,Europe/Paris,2,OTL, +OTL:SP:3377704015496711,1,"Fieux",43.583,1.41895,0,0,OTL:SA:1970329131942383,Europe/Paris,2,OTL, +OTL:SP:3377704015496714,1,"Matabiau Gare SNCF",43.6115,1.45254,0,0,AEC:SA:02049,Europe/Paris,2,OTL, +OTL:SP:3377704015496715,1,"Jean Jaurès",43.6053,1.44955,0,0,AEC:SA:02023,Europe/Paris,2,OTL, +OTL:SP:3377704015496716,1,"Bagatelle",43.5805,1.41283,0,0,OTL:SA:1970324837184809,Europe/Paris,2,OTL, +OTL:SP:3377704015496717,1,"Mermoz",43.5835,1.41529,0,0,OTL:SA:1970324837185008,Europe/Paris,2,OTL, +OTL:SP:3377704015496718,1,"Mermoz",43.5832,1.41548,0,0,OTL:SA:1970324837185008,Europe/Paris,2,OTL, +OTL:SP:3377704015496719,1,"Patte d'Oie",43.5968,1.42267,0,0,OTL:SA:1970324837184827,Europe/Paris,2,OTL, +OTL:SP:3377704015496720,1,"Patte d'Oie",43.5964,1.42354,0,0,OTL:SA:1970324837184827,Europe/Paris,2,OTL, +OTL:SP:3377704015496722,1,"Route de Pechbonnieu",43.6958,1.44523,0,0,OTL:SA:1970329131942388,Europe/Paris,2,OTL, +OTL:SP:3377704015496723,1,"Route de Pechbonnieu",43.6956,1.4448,0,0,OTL:SA:1970329131942388,Europe/Paris,2,OTL, +OTL:SP:3377704015496724,1,"Ramondou",43.6937,1.44309,0,0,OTL:SA:1970329131942389,Europe/Paris,2,OTL, +OTL:SP:3377704015496725,1,"Ramondou",43.6938,1.443,0,0,OTL:SA:1970329131942389,Europe/Paris,2,OTL, +OTL:SP:3377704015496726,1,"Ch. du Carrelet",43.5101,1.50307,0,0,OTL:SA:1970329131942385,Europe/Paris,2,OTL, +OTL:SP:3377704015496727,1,"Ch. du Carrelet",43.5098,1.50423,0,0,OTL:SA:1970329131942385,Europe/Paris,2,OTL, +OTL:SP:3377704015496728,1,"Parc de Campagne",43.5622,1.31282,0,0,OTL:SA:1970324837185596,Europe/Paris,2,OTL, +OTL:SP:3377704015496729,1,"Parc de Campagne",43.5622,1.3131,0,0,OTL:SA:1970324837185596,Europe/Paris,2,OTL, +OTL:SP:3377704015496730,1,"Jules Verne",43.5584,1.30998,0,0,OTL:SA:1970324837186626,Europe/Paris,2,OTL, +OTL:SP:3377704015496731,1,"Jules Verne",43.5582,1.31039,0,0,OTL:SA:1970324837186626,Europe/Paris,2,OTL, +OTL:SP:3377704015496732,1,"Jonquilles",43.5618,1.30495,0,0,OTL:SA:1970324837186627,Europe/Paris,2,OTL, +OTL:SP:3377704015496733,1,"Camélias",43.5592,1.30694,0,0,OTL:SA:1970329131942384,Europe/Paris,2,OTL, +OTL:SP:3377704015496734,1,"Camélias",43.5588,1.30692,0,0,OTL:SA:1970329131942384,Europe/Paris,2,OTL, +OTL:SP:3377704015496735,1,"Bastards",43.553,1.24847,0,0,OTL:SA:1970329131942390,Europe/Paris,2,OTL, +OTL:SP:3377704015496736,1,"Bastards",43.5527,1.24879,0,0,OTL:SA:1970329131942390,Europe/Paris,2,OTL, +OTL:SP:3377704015496737,1,"St-Orens Ctre Cial",43.5647,1.51898,0,0,OTL:SA:1970324837186826,Europe/Paris,2,OTL, +OTL:SP:3377704015496738,1,"Peyrette",43.5812,1.28974,0,0,OTL:SA:1970329131942386,Europe/Paris,2,OTL, +OTL:SP:3377704015496739,1,"Peyrette",43.5807,1.28977,0,0,OTL:SA:1970329131942386,Europe/Paris,2,OTL, +OTL:SP:3377704015496740,1,"Gonin",43.5738,1.48396,0,0,OTL:SA:1970324837184674,Europe/Paris,2,OTL, +OTL:SP:3377704015496741,1,"Gonin",43.574,1.4831,0,0,OTL:SA:1970324837184674,Europe/Paris,2,OTL, +OTL:SP:3377704015496742,1,"Bachelier",43.6058,1.45261,0,0,OTL:SA:1970324837186028,Europe/Paris,2,OTL, +OTL:SP:3377704015496743,1,"Ormeau",43.5789,1.48338,0,0,OTL:SA:1970324837186818,Europe/Paris,2,OTL, +OTL:SP:3377704015496744,1,"Buissonnets",43.5825,1.47301,0,0,OTL:SA:1970324837186814,Europe/Paris,2,OTL, +OTL:SP:3377704015496745,1,"Tucol",43.6045,1.32428,0,0,OTL:SA:1970329131942348,Europe/Paris,2,OTL, +OTL:SP:3377704015496746,1,"Tucol",43.6048,1.32407,0,0,OTL:SA:1970329131942348,Europe/Paris,2,OTL, +OTL:SP:3377704015496747,1,"Bigorre",43.6065,1.32029,0,0,OTL:SA:1970329131942387,Europe/Paris,2,OTL, +OTL:SP:3377704015496748,1,"Hauts de Bonnefoy",43.6215,1.45745,0,0,OTL:SA:1970324837186117,Europe/Paris,2,OTL, +OTL:SP:3377704015496749,1,"Hauts de Bonnefoy",43.6211,1.45838,0,0,OTL:SA:1970324837186117,Europe/Paris,2,OTL, +OTL:SP:3377704015496750,1,"Lycée Toulouse-Lautrec",43.627,1.44459,0,0,AEC:SA:02045,Europe/Paris,2,OTL, +OTL:SP:3377704015496751,1,"Jardins de la Marcaissonne",43.5696,1.50825,0,0,OTL:SA:1970329131942391,Europe/Paris,2,OTL, +OTL:SP:3377704015496752,1,"Jardins de la Marcaissonne",43.5697,1.50865,0,0,OTL:SA:1970329131942391,Europe/Paris,2,OTL, +OTL:SP:3377704015496753,1,"Peries",43.513,1.50166,0,0,OTL:SA:1970324837186501,Europe/Paris,2,OTL, +OTL:SP:3377704015496754,1,"Matabiau Gare SNCF",43.611,1.45198,0,0,AEC:SA:02049,Europe/Paris,2,OTL, +OTL:SP:3377704015496755,1,"Faculté de Médecine",43.5609,1.45698,0,0,OTL:SA:1970329131942393,Europe/Paris,2,OTL, +OTL:SP:3377704015496756,1,"Faculté de Médecine",43.5614,1.45683,0,0,OTL:SA:1970329131942393,Europe/Paris,2,OTL, +OTL:SP:3377704015496757,1,"Secteur I",43.6368,1.32745,0,0,OTL:SA:1970329131942394,Europe/Paris,2,OTL, +OYN:SP:103,1,"VAUX-SUR-MER - Stade",45.641008,-1.059439,0,0,OYN:SA:CTP174,Europe/Paris,,OYN, +OYN:SP:104,1,"ST-SULPICE-DE-ROYAN - Maries",45.665789,-0.991709,0,0,OYN:SA:CTP813,Europe/Paris,,OYN, +OYN:SP:105,1,"BREUILLET - Prades",45.697743,-1.064327,0,0,OYN:SA:CTP172,Europe/Paris,,OYN, +OYN:SP:106,1,"ST-PALAIS-SUR-MER - Châtenet",45.663071,-1.071971,0,0,OYN:SA:CTP771,Europe/Paris,,OYN, +OYN:SP:109,1,"ST-SULPICE-DE-ROYAN - Fontbedeau",45.688651,-0.996356,0,0,OYN:SA:CTP109,Europe/Paris,,OYN, +OYN:SP:111,1,"COZES - Javrezac",45.562228,-0.830383,0,0,OYN:SA:CTP501,Europe/Paris,,OYN, +OYN:SP:113,1,"ST-GEORGES-DE-DIDONNE - Boube",45.62167,-0.96559,0,0,OYN:SA:CTP184,Europe/Paris,,OYN, +OYN:SP:124,1,"VAUX-SUR-MER - Val Lumière",45.6467,-1.052301,0,0,OYN:SA:CTP175,Europe/Paris,,OYN, +OYN:SP:1240,1,"ROYAN - Lavoisier",45.631859,-0.987084,0,0,OYN:SA:CTP1240,Europe/Paris,,OYN, +OYN:SP:1243,1,"CORME-ECLUSE - Traverserie",45.610469,-0.885904,0,0,OYN:SA:CTP1243,Europe/Paris,,OYN, +OYN:SP:1244,1,"CORME-ECLUSE - Traverserie",45.61043,-0.885847,0,0,OYN:SA:CTP1243,Europe/Paris,,OYN, +OYN:SP:1246,1,"ROYAN - Gare",45.626059,-1.018698,0,0,OYN:SA:CTP1246,Europe/Paris,,OYN, +OYN:SP:1247,1,"ROYAN - Gare arrivée",45.626059,-1.018698,0,0,OYN:SA:CTP1247,Europe/Paris,,OYN, +OYN:SP:1250,1,"ROYAN - Ampère",45.631089,-0.999828,0,0,OYN:SA:CTP1250,Europe/Paris,,OYN, +OYN:SP:1251,1,"ROYAN - Ampère",45.630936,-0.99968,0,0,OYN:SA:CTP1250,Europe/Paris,,OYN, +OYN:SP:1254,1,"VAUX-SUR-MER - Plain",45.645867,-1.050113,0,0,OYN:SA:CTP1254,Europe/Paris,,OYN, +OYN:SP:1258,1,"ROYAN - Québec",45.634707,-1.023029,0,0,OYN:SA:CTP1258,Europe/Paris,,OYN, +OYN:SP:1259,1,"ROYAN - Québec",45.634561,-1.022979,0,0,OYN:SA:CTP1258,Europe/Paris,,OYN, +OYN:SP:1260,1,"ROYAN - Espadon",45.638685,-1.04011,0,0,OYN:SA:CTP1260,Europe/Paris,,OYN, +OYN:SP:1261,1,"ROYAN - Espadon",45.638545,-1.040146,0,0,OYN:SA:CTP1260,Europe/Paris,,OYN, +OYN:SP:1262,1,"MORTAGNE-SUR-GIRONDE - Petit Village",45.501405,-0.776859,0,0,OYN:SA:CTP1262,Europe/Paris,,OYN, +OYN:SP:1263,1,"MORTAGNE-SUR-GIRONDE - petit village",45.501448,-0.77713,0,0,OYN:SA:CTP1263,Europe/Paris,,OYN, +OYN:SP:1264,1,"EPARGNES - Doublet",45.544944,-0.818664,0,0,OYN:SA:CTP1264,Europe/Paris,,OYN, +OYN:SP:1265,1,"EPARGNES - Doublet",45.544818,-0.818753,0,0,OYN:SA:CTP1264,Europe/Paris,,OYN, +OYN:SP:1266,1,"ARVERT - Halle",45.742297,-1.122474,0,0,OYN:SA:CTP1267,Europe/Paris,,OYN, +OYN:SP:1267,1,"ARVERT - Halle",45.742152,-1.122389,0,0,OYN:SA:CTP1267,Europe/Paris,,OYN, +OYN:SP:1270,1,"COZES - Bas Prézelle",45.551404,-0.824408,0,0,OYN:SA:CTP1272,Europe/Paris,,OYN, +OYN:SP:1272,1,"COZES - Bas Prézelle",45.551296,-0.824472,0,0,OYN:SA:CTP1272,Europe/Paris,,OYN, +OYN:SP:130,1,"LES MATHES - Palmyre OT",45.689993,-1.176769,0,0,OYN:SA:CTP130,Europe/Paris,,OYN, +OYN:SP:131,1,"MORTAGNE-SUR-GIRONDE - OT",45.480944,-0.78941,0,0,OYN:SA:CTP131,Europe/Paris,,OYN, +OYN:SP:136,1,"SEMUSSAC - Z.A.",45.603741,-0.912358,0,0,OYN:SA:CTP187,Europe/Paris,,OYN, +OYN:SP:137,1,"ARCES - Brézillas",45.568833,-0.893995,0,0,OYN:SA:CTP188,Europe/Paris,,OYN, +OYN:SP:139,1,"LA TREMBLADE - Eglise",45.76926,-1.142153,0,0,OYN:SA:CTP139,Europe/Paris,,OYN, +OYN:SP:140,1,"TALMONT-SUR-GIRONDE - Place",45.53588,-0.904435,0,0,OYN:SA:CTP140,Europe/Paris,,OYN, +OYN:SP:146,1,"MORTAGNE-SUR-GIRONDE - Charbonnière",45.503987,-0.77824,0,0,OYN:SA:CTP146,Europe/Paris,,OYN, +OYN:SP:147,1,"ST-PALAIS-SUR-MER - Stade",45.651892,-1.080089,0,0,OYN:SA:CTP167,Europe/Paris,,OYN, +OYN:SP:15,1,"ARCES - Ecole",45.555081,-0.861597,0,0,OYN:SA:CTP15,Europe/Paris,,OYN, +OYN:SP:151,1,"LES MATHES - Eglise",45.717024,-1.146049,0,0,OYN:SA:CTP151,Europe/Paris,,OYN, +OYN:SP:153,1,"LES MATHES - Palmyre OT",45.689766,-1.176764,0,0,OYN:SA:CTP130,Europe/Paris,,OYN, +OYN:SP:155,1,"ARVERT - Dirée",45.751023,-1.15366,0,0,OYN:SA:CTP155,Europe/Paris,,OYN, +OYN:SP:156,1,"LES MATHES - Eglise",45.716912,-1.146029,0,0,OYN:SA:CTP151,Europe/Paris,,OYN, +OYN:SP:157,1,"LA TREMBLADE - Sablière",45.771499,-1.145297,0,0,OYN:SA:CTP84,Europe/Paris,,OYN, +OYN:SP:158,1,"LA TREMBLADE - Eglise",45.76873,-1.141906,0,0,OYN:SA:CTP139,Europe/Paris,,OYN, +OYN:SP:159,1,"ARVERT - Moulin",45.742376,-1.132251,0,0,OYN:SA:CTP159,Europe/Paris,,OYN, +OYN:SP:161,1,"ETAULES - Ile",45.715897,-1.10773,0,0,OYN:SA:CTP161,Europe/Paris,,OYN, +OYN:SP:162,1,"ST-PALAIS-SUR-MER - Palud",45.652818,-1.096128,0,0,OYN:SA:CTP162,Europe/Paris,,OYN, +OYN:SP:163,1,"ETAULES - OT",45.733732,-1.101235,0,0,OYN:SA:CTP163,Europe/Paris,,OYN, +OYN:SP:165,1,"ETAULES - OT",45.733445,-1.10072,0,0,OYN:SA:CTP163,Europe/Paris,,OYN, +OYN:SP:166,1,"ST-PALAIS-SUR-MER - Vallet",45.644708,-1.091024,0,0,OYN:SA:CTP166,Europe/Paris,,OYN, +OYN:SP:167,1,"ST-PALAIS-SUR-MER - Stade",45.652073,-1.079825,0,0,OYN:SA:CTP167,Europe/Paris,,OYN, +OYN:SP:169,1,"CHAILLEVETTE - Château d'Eau",45.727961,-1.074224,0,0,OYN:SA:CTP24,Europe/Paris,,OYN, +OYN:SP:17,1,"ARVERT - Dirée",45.750924,-1.153639,0,0,OYN:SA:CTP155,Europe/Paris,,OYN, +OYN:SP:170,1,"ST-PALAIS-SUR-MER - Myosotis",45.654262,-1.066898,0,0,OYN:SA:CTP71,Europe/Paris,,OYN, +OYN:SP:171,1,"CHAILLEVETTE - Brandes",45.714844,-1.066707,0,0,OYN:SA:CTP171,Europe/Paris,,OYN, +OYN:SP:172,1,"BREUILLET - Prades",45.697783,-1.064384,0,0,OYN:SA:CTP172,Europe/Paris,,OYN, +OYN:SP:173,1,"VAUX-SUR-MER - Narcisses",45.657164,-1.060761,0,0,OYN:SA:CTP173,Europe/Paris,,OYN, +OYN:SP:174,1,"VAUX-SUR-MER - Stade",45.641139,-1.059616,0,0,OYN:SA:CTP174,Europe/Paris,,OYN, +OYN:SP:175,1,"VAUX-SUR-MER - Val Lumière",45.646939,-1.052457,0,0,OYN:SA:CTP175,Europe/Paris,,OYN, +OYN:SP:176,1,"ROYAN - Perche",45.634242,-1.036179,0,0,OYN:SA:CTP176,Europe/Paris,,OYN, +OYN:SP:177,1,"BREUILLET - Montils",45.682508,-1.037612,0,0,OYN:SA:CTP22,Europe/Paris,,OYN, +OYN:SP:178,1,"MORNAC-SUR-SEUDRE - Poste",45.708013,-1.027769,0,0,OYN:SA:CTP178,Europe/Paris,,OYN, +OYN:SP:179,1,"ST-SULPICE-DE-ROYAN - Breuille",45.678095,-1.003258,0,0,OYN:SA:CTP179,Europe/Paris,,OYN, +OYN:SP:18,1,"ARVERT - Moulin",45.742292,-1.132086,0,0,OYN:SA:CTP159,Europe/Paris,,OYN, +OYN:SP:180,1,"ST-GEORGES-DE-DIDONNE - Commerces",45.613458,-0.990871,0,0,OYN:SA:CTP180,Europe/Paris,,OYN, +OYN:SP:181,1,"ST-SULPICE-DE-ROYAN - Crèche",45.681978,-0.990679,0,0,OYN:SA:CTP181,Europe/Paris,,OYN, +OYN:SP:182,1,"ST-SULPICE-DE-ROYAN - Aubat",45.667082,-0.984879,0,0,OYN:SA:CTP75,Europe/Paris,,OYN, +OYN:SP:183,1,"L'EGUILLE - Fêtes",45.70455,-0.97904,0,0,OYN:SA:CTP183,Europe/Paris,,OYN, +OYN:SP:184,1,"ST-GEORGES-DE-DIDONNE - Boube",45.62222,-0.96578,0,0,OYN:SA:CTP184,Europe/Paris,,OYN, +OYN:SP:185,1,"SAUJON - Richelieu",45.676076,-0.925332,0,0,OYN:SA:CTP185,Europe/Paris,,OYN, +OYN:SP:186,1,"SEMUSSAC - Valade",45.611007,-0.921055,0,0,OYN:SA:CTP186,Europe/Paris,,OYN, +OYN:SP:187,1,"SEMUSSAC - Z.A.",45.60379,-0.912211,0,0,OYN:SA:CTP187,Europe/Paris,,OYN, +OYN:SP:188,1,"ARCES - Brézillas",45.56921,-0.894965,0,0,OYN:SA:CTP188,Europe/Paris,,OYN, +OYN:SP:189,1,"BARZAN - Bourg",45.526535,-0.854973,0,0,OYN:SA:CTP189,Europe/Paris,,OYN, +OYN:SP:190,1,"COZES - Nazareth",45.580608,-0.8362,0,0,OYN:SA:CTP190,Europe/Paris,,OYN, +OYN:SP:191,1,"EPARGNES - Eglise",45.541423,-0.803333,0,0,OYN:SA:CTP191,Europe/Paris,,OYN, +OYN:SP:193,1,"ROYAN - Squash",45.61889,-1.001255,0,0,OYN:SA:CTP228,Europe/Paris,,OYN, +OYN:SP:194,1,"ROYAN - Aliénor",45.61666,-1.003025,0,0,OYN:SA:CTP227,Europe/Paris,,OYN, +OYN:SP:195,1,"ROYAN - Orangerie",45.61626,-1.005471,0,0,OYN:SA:CTP226,Europe/Paris,,OYN, +OYN:SP:196,1,"ROYAN - Zola",45.61736,-1.010925,0,0,OYN:SA:CTP196,Europe/Paris,,OYN, +OYN:SP:197,1,"ROYAN - Marché Parc",45.618926,-1.012704,0,0,OYN:SA:CTP225,Europe/Paris,,OYN, +OYN:SP:198,1,"ROYAN - Oasis",45.62319,-1.017116,0,0,OYN:SA:CTP198,Europe/Paris,,OYN, +OYN:SP:20,1,"BARZAN - Bourg",45.526611,-0.854869,0,0,OYN:SA:CTP189,Europe/Paris,,OYN, +OYN:SP:200,1,"ROYAN - Trésor Public",45.627554,-1.017915,0,0,OYN:SA:CTP200,Europe/Paris,,OYN, +OYN:SP:201,1,"ROYAN - Carel",45.628948,-1.016188,0,0,OYN:SA:CTP222,Europe/Paris,,OYN, +OYN:SP:202,1,"ROYAN - Pôle Emploi",45.63319,-1.019489,0,0,OYN:SA:CTP202,Europe/Paris,,OYN, +OYN:SP:203,1,"ROYAN - Pitorie",45.637063,-1.022265,0,0,OYN:SA:CTP203,Europe/Paris,,OYN, +OYN:SP:204,1,"ROYAN - CARA",45.636844,-1.025918,0,0,OYN:SA:CTP204,Europe/Paris,,OYN, +OYN:SP:205,1,"ROYAN - Tulipe",45.633372,-1.027979,0,0,OYN:SA:CTP205,Europe/Paris,,OYN, +OYN:SP:206,1,"ROYAN - Chevalier",45.633287,-1.029843,0,0,OYN:SA:CTP206,Europe/Paris,,OYN, +OYN:SP:207,1,"ROYAN - Hedde",45.635046,-1.029098,0,0,OYN:SA:CTP216,Europe/Paris,,OYN, +OYN:SP:208,1,"ROYAN - Impôts",45.636912,-1.029993,0,0,OYN:SA:CTP215,Europe/Paris,,OYN, +OYN:SP:209,1,"ROYAN - Belette",45.63765,-1.033109,0,0,OYN:SA:CTP214,Europe/Paris,,OYN, +OYN:SP:210,1,"ROYAN - Rossignol",45.636517,-1.030474,0,0,OYN:SA:CTP213,Europe/Paris,,OYN, +OYN:SP:211,1,"ROYAN - Fief",45.633127,-1.033398,0,0,OYN:SA:CTP212,Europe/Paris,,OYN, +OYN:SP:212,1,"ROYAN - Fief",45.633243,-1.033385,0,0,OYN:SA:CTP212,Europe/Paris,,OYN, +OYN:SP:213,1,"ROYAN - Rossignol",45.636417,-1.03055,0,0,OYN:SA:CTP213,Europe/Paris,,OYN, +OYN:SP:214,1,"ROYAN - Belette",45.637646,-1.033273,0,0,OYN:SA:CTP214,Europe/Paris,,OYN, +OYN:SP:215,1,"ROYAN - Impôts",45.637009,-1.029898,0,0,OYN:SA:CTP215,Europe/Paris,,OYN, +OYN:SP:216,1,"ROYAN - Hedde",45.635009,-1.028798,0,0,OYN:SA:CTP216,Europe/Paris,,OYN, +OYN:SP:217,1,"ROYAN - Chevalier",45.633416,-1.029994,0,0,OYN:SA:CTP206,Europe/Paris,,OYN, +OYN:SP:218,1,"ROYAN - Tulipe",45.633492,-1.027744,0,0,OYN:SA:CTP205,Europe/Paris,,OYN, +OYN:SP:219,1,"ROYAN - CARA",45.637238,-1.025679,0,0,OYN:SA:CTP204,Europe/Paris,,OYN, +OYN:SP:22,1,"BREUILLET - Montils",45.682459,-1.037666,0,0,OYN:SA:CTP22,Europe/Paris,,OYN, +OYN:SP:220,1,"ROYAN - Pitorie",45.636903,-1.022189,0,0,OYN:SA:CTP203,Europe/Paris,,OYN, +OYN:SP:221,1,"ROYAN - Pôle Emploi",45.633076,-1.019576,0,0,OYN:SA:CTP221,Europe/Paris,,OYN, +OYN:SP:222,1,"ROYAN - Carel",45.628884,-1.016438,0,0,OYN:SA:CTP222,Europe/Paris,,OYN, +OYN:SP:224,1,"ROYAN - Oasis",45.623167,-1.017221,0,0,OYN:SA:CTP198,Europe/Paris,,OYN, +OYN:SP:2243,1,"LE CHAY - Combe à Mercier",45.65686,-0.91257,0,0,OYN:SA:CTP2243,Europe/Paris,,OYN, +OYN:SP:2245,1,"LE CHAY - Mairie",45.640652,-0.897898,0,0,OYN:SA:CTP570,Europe/Paris,,OYN, +OYN:SP:2248,1,"CORME-ECLUSE - Briagne",45.6436,-0.874594,0,0,OYN:SA:CTP2248,Europe/Paris,,OYN, +OYN:SP:2249,1,"CORME-ECLUSE - Grenouille",45.650011,-0.887741,0,0,OYN:SA:CTP2249,Europe/Paris,,OYN, +OYN:SP:225,1,"ROYAN - Marché Parc",45.618792,-1.012805,0,0,OYN:SA:CTP225,Europe/Paris,,OYN, +OYN:SP:2250,1,"CORME-ECLUSE - Nauzelet",45.628119,-0.866589,0,0,OYN:SA:CTP2250,Europe/Paris,,OYN, +OYN:SP:2252,1,"CORME-ECLUSE - Mairie",45.631343,-0.855827,0,0,OYN:SA:CTP2252,Europe/Paris,,OYN, +OYN:SP:226,1,"ROYAN - Orangerie",45.616058,-1.005372,0,0,OYN:SA:CTP226,Europe/Paris,,OYN, +OYN:SP:2260,1,"L'EGUILLE - Métairies",45.692216,-0.971887,0,0,OYN:SA:CTP2260,Europe/Paris,,OYN, +OYN:SP:227,1,"ROYAN - Aliénor",45.61611,-1.002193,0,0,OYN:SA:CTP227,Europe/Paris,,OYN, +OYN:SP:228,1,"ROYAN - Squash",45.619169,-1.000916,0,0,OYN:SA:CTP228,Europe/Paris,,OYN, +OYN:SP:2282,1,"MEDIS - Petit Toussaugé",45.628843,-0.946149,0,0,OYN:SA:CTP2282,Europe/Paris,,OYN, +OYN:SP:2284,1,"MEDIS - Poste",45.645982,-0.963708,0,0,OYN:SA:CTP2284,Europe/Paris,,OYN, +OYN:SP:229,1,"ROYAN - Joliot Curie",45.623646,-1.002891,0,0,OYN:SA:CTP256,Europe/Paris,,OYN, +OYN:SP:23,1,"CHAILLEVETTE - Brandes",45.714794,-1.066676,0,0,OYN:SA:CTP171,Europe/Paris,,OYN, +OYN:SP:231,1,"ROYAN - Yeuse",45.626548,-1.007778,0,0,OYN:SA:CTP231,Europe/Paris,,OYN, +OYN:SP:2311,1,"SABLONCEAUX - Chez Chailloux",45.68965,-0.891797,0,0,OYN:SA:CTP2383,Europe/Paris,,OYN, +OYN:SP:2312,1,"SABLONCEAUX - Chez Maulin",45.723872,-0.869673,0,0,OYN:SA:CTP2385,Europe/Paris,,OYN, +OYN:SP:2313,1,"SABLONCEAUX - Coupé-Gorge",45.698109,-0.894779,0,0,OYN:SA:CTP2313,Europe/Paris,,OYN, +OYN:SP:2316,1,"SABLONCEAUX - Vinaigrière",45.717461,-0.86875,0,0,OYN:SA:CTP2316,Europe/Paris,,OYN, +OYN:SP:2317,1,"SABLONCEAUX - Brandet",45.694455,-0.891108,0,0,OYN:SA:CTP2394,Europe/Paris,,OYN, +OYN:SP:2318,1,"SABLONCEAUX - Mairie",45.718947,-0.888287,0,0,OYN:SA:CTP2318,Europe/Paris,,OYN, +OYN:SP:2321,1,"SABLONCEAUX - Le Pont",45.70956,-0.888803,0,0,OYN:SA:CTP2402,Europe/Paris,,OYN, +OYN:SP:2322,1,"SABLONCEAUX - Frogers",45.683066,-0.897779,0,0,OYN:SA:CTP2322,Europe/Paris,,OYN, +OYN:SP:2327,1,"SAUJON - Collège André Albert",45.677017,-0.927309,0,0,OYN:SA:CTP2327,Europe/Paris,,OYN, +OYN:SP:2328,1,"SAUJON - Ecole Jeanne d'Arc",45.673169,-0.929689,0,0,OYN:SA:CTP2328,Europe/Paris,,OYN, +OYN:SP:233,1,"ROYAN - Europe",45.624858,-1.021781,0,0,OYN:SA:CTP252,Europe/Paris,,OYN, +OYN:SP:2331,1,"SAUJON - Primeveres",45.663368,-0.919886,0,0,OYN:SA:CTP2331,Europe/Paris,,OYN, +OYN:SP:2336,1,"SAINT-ROMAIN-DE-BENET - Camp de César",45.682814,-0.884964,0,0,OYN:SA:CTP2336,Europe/Paris,,OYN, +OYN:SP:2338,1,"SAINT-ROMAIN-DE-BENET - Ecole",45.690099,-0.847267,0,0,OYN:SA:CTP2338,Europe/Paris,,OYN, +OYN:SP:2339,1,"SAINT-ROMAIN-DE-BENET - Fief des Perrières",45.686573,-0.883644,0,0,OYN:SA:CTP2339,Europe/Paris,,OYN, +OYN:SP:234,1,"ROYAN - Poste",45.624814,-1.025062,0,0,OYN:SA:CTP251,Europe/Paris,,OYN, +OYN:SP:2340,1,"SAINT-ROMAIN-DE-BENET - Griffarin",45.684672,-0.866621,0,0,OYN:SA:CTP2340,Europe/Paris,,OYN, +OYN:SP:2341,1,"SAINT-ROMAIN-DE-BENET - Vivier",45.674564,-0.853389,0,0,OYN:SA:CTP2341,Europe/Paris,,OYN, +OYN:SP:2342,1,"SAINT-ROMAIN-DE-BENET - Maisonneuve",45.676916,-0.863055,0,0,OYN:SA:CTP2342,Europe/Paris,,OYN, +OYN:SP:2343,1,"SAINT-ROMAIN-DE-BENET - Malleville",45.712416,-0.853279,0,0,OYN:SA:CTP2424,Europe/Paris,,OYN, +OYN:SP:2345,1,"SAINT-ROMAIN-DE-BENET - Sauvajou",45.679417,-0.869624,0,0,OYN:SA:CTP2345,Europe/Paris,,OYN, +OYN:SP:2347,1,"SAINT-ROMAIN-DE-BENET - Villeneuve",45.690803,-0.826809,0,0,OYN:SA:CTP2430,Europe/Paris,,OYN, +OYN:SP:2348,1,"SAINT-ROMAIN-DE-BENET - Vouillac le Haut",45.701163,-0.876545,0,0,OYN:SA:CTP2348,Europe/Paris,,OYN, +OYN:SP:235,1,"ROYAN - Briand",45.624668,-1.029513,0,0,OYN:SA:CTP235,Europe/Paris,,OYN, +OYN:SP:236,1,"ROYAN - Notre-Dame",45.623794,-1.031993,0,0,OYN:SA:CTP249,Europe/Paris,,OYN, +OYN:SP:238,1,"ROYAN - Hélios",45.623815,-1.037435,0,0,OYN:SA:CTP247,Europe/Paris,,OYN, +OYN:SP:2383,1,"SABLONCEAUX - Chez Chailloux",45.689698,-0.891765,0,0,OYN:SA:CTP2383,Europe/Paris,,OYN, +OYN:SP:2385,1,"SABLONCEAUX - Chez Maulin",45.724061,-0.869043,0,0,OYN:SA:CTP2385,Europe/Paris,,OYN, +OYN:SP:2387,1,"SABLONCEAUX - Coupé-Gorge",45.69807,-0.894667,0,0,OYN:SA:CTP2313,Europe/Paris,,OYN, +OYN:SP:2394,1,"SABLONCEAUX - Brandet",45.694524,-0.891008,0,0,OYN:SA:CTP2394,Europe/Paris,,OYN, +OYN:SP:24,1,"CHAILLEVETTE - Château d'Eau",45.727944,-1.074401,0,0,OYN:SA:CTP24,Europe/Paris,,OYN, +OYN:SP:240,1,"ROYAN - Mairie",45.623059,-1.042323,0,0,OYN:SA:CTP245,Europe/Paris,,OYN, +OYN:SP:2402,1,"SABLONCEAUX - Le Pont",45.709577,-0.888678,0,0,OYN:SA:CTP2402,Europe/Paris,,OYN, +OYN:SP:2405,1,"SABLONCEAUX - Frogers",45.683171,-0.897829,0,0,OYN:SA:CTP2322,Europe/Paris,,OYN, +OYN:SP:2407,1,"SABLONCEAUX - Saint André",45.718877,-0.888213,0,0,OYN:SA:CTP2407,Europe/Paris,,OYN, +OYN:SP:2409,1,"SABLONCEAUX - Toulon",45.685133,-0.89157,0,0,OYN:SA:CTP2409,Europe/Paris,,OYN, +OYN:SP:241,1,"ROYAN - Gatebourse",45.628093,-1.04201,0,0,OYN:SA:CTP241,Europe/Paris,,OYN, +OYN:SP:242,1,"ROYAN - Baillet",45.630213,-1.038164,0,0,OYN:SA:CTP242,Europe/Paris,,OYN, +OYN:SP:2424,1,"SAINT-ROMAIN-DE-BENET - Malleville",45.712285,-0.853547,0,0,OYN:SA:CTP2424,Europe/Paris,,OYN, +OYN:SP:243,1,"ROYAN - Baillet",45.629882,-1.038435,0,0,OYN:SA:CTP242,Europe/Paris,,OYN, +OYN:SP:2430,1,"SAINT-ROMAIN-DE-BENET - Villeneuve",45.690877,-0.826866,0,0,OYN:SA:CTP2430,Europe/Paris,,OYN, +OYN:SP:2433,1,"SAINT-ROMAIN-DE-BENET - Camp de César",45.682953,-0.885083,0,0,OYN:SA:CTP2336,Europe/Paris,,OYN, +OYN:SP:2439,1,"SAINT-ROMAIN-DE-BENET - Griffarin",45.685564,-0.864399,0,0,OYN:SA:CTP2340,Europe/Paris,,OYN, +OYN:SP:244,1,"ROYAN - Gatebourse",45.628077,-1.041839,0,0,OYN:SA:CTP241,Europe/Paris,,OYN, +OYN:SP:2446,1,"SAINT-ROMAIN-DE-BENET - Ecole",45.690132,-0.847317,0,0,OYN:SA:CTP2338,Europe/Paris,,OYN, +OYN:SP:245,1,"ROYAN - Mairie",45.623431,-1.042995,0,0,OYN:SA:CTP245,Europe/Paris,,OYN, +OYN:SP:2459,1,"MEDIS - Chez Dias",45.649998,-0.979834,0,0,OYN:SA:CTP2459,Europe/Paris,,OYN, +OYN:SP:2463,1,"SAINT-ROMAIN-DE-BENET - Fief des Perrières",45.686617,-0.883563,0,0,OYN:SA:CTP2339,Europe/Paris,,OYN, +OYN:SP:247,1,"ROYAN - Hélios",45.623881,-1.037262,0,0,OYN:SA:CTP247,Europe/Paris,,OYN, +OYN:SP:2486,1,"SAINT-ROMAIN-DE-BENET - Maisonneuve",45.676972,-0.862949,0,0,OYN:SA:CTP2342,Europe/Paris,,OYN, +OYN:SP:2488,1,"SAINT-ROMAIN-DE-BENET - Sauvajou",45.679465,-0.869577,0,0,OYN:SA:CTP2345,Europe/Paris,,OYN, +OYN:SP:249,1,"ROYAN - Notre-Dame",45.623921,-1.031958,0,0,OYN:SA:CTP249,Europe/Paris,,OYN, +OYN:SP:2490,1,"SAUJON - Primeveres",45.66342,-0.919761,0,0,OYN:SA:CTP2331,Europe/Paris,,OYN, +OYN:SP:2494,1,"LE CHAY - Mairie",45.640721,-0.89788,0,0,OYN:SA:CTP570,Europe/Paris,,OYN, +OYN:SP:250,1,"ROYAN - de Gaulle",45.624429,-1.028381,0,0,OYN:SA:CTP250,Europe/Paris,,OYN, +OYN:SP:2501,1,"CORME-ECLUSE - Grenouille",45.650081,-0.88771,0,0,OYN:SA:CTP2249,Europe/Paris,,OYN, +OYN:SP:2503,1,"CORME-ECLUSE - Briagne",45.643678,-0.874557,0,0,OYN:SA:CTP2248,Europe/Paris,,OYN, +OYN:SP:2505,1,"CORME-ECLUSE - Nauzelet",45.628216,-0.866714,0,0,OYN:SA:CTP2250,Europe/Paris,,OYN, +OYN:SP:2509,1,"CORME-ECLUSE - Mairie",45.631343,-0.855952,0,0,OYN:SA:CTP2252,Europe/Paris,,OYN, +OYN:SP:251,1,"ROYAN - Poste",45.624916,-1.024771,0,0,OYN:SA:CTP251,Europe/Paris,,OYN, +OYN:SP:252,1,"ROYAN - Europe",45.624941,-1.021826,0,0,OYN:SA:CTP252,Europe/Paris,,OYN, +OYN:SP:254,1,"ROYAN - Billois",45.627946,-1.009388,0,0,OYN:SA:CTP254,Europe/Paris,,OYN, +OYN:SP:255,1,"ROYAN - Yeuse",45.626692,-1.007748,0,0,OYN:SA:CTP231,Europe/Paris,,OYN, +OYN:SP:2558,1,"SEMUSSAC - Rivière",45.606609,-0.944337,0,0,OYN:SA:CTP2558,Europe/Paris,,OYN, +OYN:SP:256,1,"ROYAN - Joliot Curie",45.623449,-1.002934,0,0,OYN:SA:CTP256,Europe/Paris,,OYN, +OYN:SP:2560,1,"COZES - Groix",45.58524,-0.846209,0,0,OYN:SA:CTP2560,Europe/Paris,,OYN, +OYN:SP:2561,1,"COZES - Groix",45.585336,-0.846181,0,0,OYN:SA:CTP2560,Europe/Paris,,OYN, +OYN:SP:2564,1,"ROYAN - Branly",45.631622,-0.995603,0,0,OYN:SA:CTP2564,Europe/Paris,,OYN, +OYN:SP:2565,1,"ROYAN - Danube",45.62445,-1.003053,0,0,OYN:SA:CTP2566,Europe/Paris,,OYN, +OYN:SP:2566,1,"ROYAN - Danube",45.624539,-1.003107,0,0,OYN:SA:CTP2566,Europe/Paris,,OYN, +OYN:SP:2568,1,"BOUTENAC-TOUVENT - Mairie",45.505007,-0.757474,0,0,OYN:SA:CTP2568,Europe/Paris,,OYN, +OYN:SP:257,1,"ST-SULPICE-DE-ROYAN - Centre",45.672584,-1.010866,0,0,OYN:SA:CTP2606,Europe/Paris,,OYN, +OYN:SP:2578,1,"SAUJON - Hopiteau",45.677198,-0.949183,0,0,OYN:SA:CTP2578,Europe/Paris,,OYN, +OYN:SP:258,1,"ST-SULPICE-DE-ROYAN - Commerces",45.668218,-1.011718,0,0,OYN:SA:CTP281,Europe/Paris,,OYN, +OYN:SP:2580,1,"SAUJON - Peudrit",45.672692,-0.9382,0,0,OYN:SA:CTP2580,Europe/Paris,,OYN, +OYN:SP:2581,1,"SAUJON - Peudrit",45.672759,-0.938262,0,0,OYN:SA:CTP2580,Europe/Paris,,OYN, +OYN:SP:2583,1,"SAUJON - Ribérou",45.675104,-0.932097,0,0,OYN:SA:CTP2583,Europe/Paris,,OYN, +OYN:SP:2584,1,"SAUJON - Ribérou",45.675015,-0.932399,0,0,OYN:SA:CTP2583,Europe/Paris,,OYN, +OYN:SP:2586,1,"SAUJON - Guynemer",45.678492,-0.924457,0,0,OYN:SA:CTP2586,Europe/Paris,,OYN, +OYN:SP:2588,1,"SAUJON - Salicorne",45.681919,-0.932299,0,0,OYN:SA:CTP2588,Europe/Paris,,OYN, +OYN:SP:2589,1,"SAUJON - Salicorne",45.682015,-0.932323,0,0,OYN:SA:CTP2588,Europe/Paris,,OYN, +OYN:SP:2591,1,"SAUJON - Piscine",45.681665,-0.939008,0,0,OYN:SA:CTP2591,Europe/Paris,,OYN, +OYN:SP:2593,1,"SAUJON - Croix Bourdon",45.680227,-0.916103,0,0,OYN:SA:CTP2593,Europe/Paris,,OYN, +OYN:SP:2595,1,"SAUJON - Sauzes",45.678163,-0.909617,0,0,OYN:SA:CTP2595,Europe/Paris,,OYN, +OYN:SP:2596,1,"SAUJON - Sauzes",45.678317,-0.90985,0,0,OYN:SA:CTP2595,Europe/Paris,,OYN, +OYN:SP:2598,1,"SAUJON - Justice",45.674595,-0.916412,0,0,OYN:SA:CTP2598,Europe/Paris,,OYN, +OYN:SP:2599,1,"SAUJON - Justice",45.674507,-0.916462,0,0,OYN:SA:CTP2598,Europe/Paris,,OYN, +OYN:SP:260,1,"ST-SULPICE-DE-ROYAN - Jaffe",45.65771,-1.021796,0,0,OYN:SA:CTP260,Europe/Paris,,OYN, +OYN:SP:2601,1,"SAUJON - Thermes",45.675605,-0.923275,0,0,OYN:SA:CTP2601,Europe/Paris,,OYN, +OYN:SP:2602,1,"SAUJON - Thermes",45.675561,-0.923211,0,0,OYN:SA:CTP2601,Europe/Paris,,OYN, +OYN:SP:2604,1,"SAUJON - Jean Jaurès",45.672414,-0.924742,0,0,OYN:SA:CTP2604,Europe/Paris,,OYN, +OYN:SP:2605,1,"SAUJON - Jean Jaurès",45.672252,-0.924743,0,0,OYN:SA:CTP2604,Europe/Paris,,OYN, +OYN:SP:2606,1,"ST-SULPICE-DE-ROYAN - Centre",45.672598,-1.010725,0,0,OYN:SA:CTP2606,Europe/Paris,,OYN, +OYN:SP:2608,1,"ARVERT - Fournillier",45.751749,-1.12774,0,0,OYN:SA:CTP2608,Europe/Paris,,OYN, +OYN:SP:2609,1,"ARVERT - Fournillier",45.751731,-1.127915,0,0,OYN:SA:CTP2608,Europe/Paris,,OYN, +OYN:SP:261,1,"ROYAN - Clinique",45.65324,-1.023078,0,0,OYN:SA:CTP278,Europe/Paris,,OYN, +OYN:SP:2611,1,"ROYAN - Gaboriau",45.628564,-1.010548,0,0,OYN:SA:CTP2611,Europe/Paris,,OYN, +OYN:SP:2612,1,"ROYAN - Gaboriau",45.628628,-1.010388,0,0,OYN:SA:CTP2611,Europe/Paris,,OYN, +OYN:SP:2614,1,"ST-SULPICE-DE-ROYAN - Eiffel",45.664625,-1.012341,0,0,OYN:SA:CTP2614,Europe/Paris,,OYN, +OYN:SP:2615,1,"ST-SULPICE-DE-ROYAN - Eiffel",45.664704,-1.012429,0,0,OYN:SA:CTP2614,Europe/Paris,,OYN, +OYN:SP:2616,1,"ROYAN - Gare quai B",45.626059,-1.018698,0,0,OYN:SA:CTP2616,Europe/Paris,,OYN, +OYN:SP:2618,1,"ROYAN - Gare quai B",45.626059,-1.018698,0,0,OYN:SA:CTP2616,Europe/Paris,,OYN, +OYN:SP:262,1,"ROYAN - Cerisiers",45.648794,-1.024303,0,0,OYN:SA:CTP277,Europe/Paris,,OYN, +OYN:SP:2620,1,"ROYAN - Gare quai A",45.626059,-1.018698,0,0,OYN:SA:CTP2623,Europe/Paris,,OYN, +OYN:SP:2622,1,"ROYAN - Gare quai A B",45.626059,-1.018698,0,0,OYN:SA:CTP2622,Europe/Paris,,OYN, +OYN:SP:2623,1,"ROYAN - Gare quai A",45.626059,-1.018698,0,0,OYN:SA:CTP2623,Europe/Paris,,OYN, +OYN:SP:2624,1,"ROYAN - Gare quai C",45.626059,-1.018698,0,0,OYN:SA:CTP2624,Europe/Paris,,OYN, +OYN:SP:2625,1,"ROYAN - Gare quai C",45.626059,-1.018698,0,0,OYN:SA:CTP2624,Europe/Paris,,OYN, +OYN:SP:2626,1,"ROYAN - Gare quai C",45.626059,-1.018698,0,0,OYN:SA:CTP2624,Europe/Paris,,OYN, +OYN:SP:2627,1,"ROYAN - Gare quai D",45.626059,-1.018698,0,0,OYN:SA:CTP2627,Europe/Paris,,OYN, +OYN:SP:2628,1,"ROYAN - Gare quai D",45.626059,-1.018698,0,0,OYN:SA:CTP2627,Europe/Paris,,OYN, +OYN:SP:263,1,"ROYAN - Coquelicots",45.641826,-1.024682,0,0,OYN:SA:CTP276,Europe/Paris,,OYN, +OYN:SP:2631,1,"ROYAN - Gare quai D",45.626059,-1.018698,0,0,OYN:SA:CTP2627,Europe/Paris,,OYN, +OYN:SP:2633,1,"MESCHERS-SUR-GIRONDE - Commerces",45.559235,-0.956497,0,0,OYN:SA:CTP2633,Europe/Paris,,OYN, +OYN:SP:2635,1,"BOURCEFRANC - Lycee de la mer",45.846776,-1.156793,0,0,OYN:SA:CTP2635,Europe/Paris,,OYN, +OYN:SP:2637,1,"ARVERT - Cabouci",45.73917,-1.12946,0,0,OYN:SA:CTP2637,Europe/Paris,,OYN, +OYN:SP:2638,1,"ARVERT - Cabouci",45.73922,-1.12931,0,0,OYN:SA:CTP2637,Europe/Paris,,OYN, +OYN:SP:264,1,"ROYAN - Reutin",45.635949,-1.027159,0,0,OYN:SA:CTP275,Europe/Paris,,OYN, +OYN:SP:2640,1,"MEDIS - Aerodrome",45.633809,-0.975856,0,0,OYN:SA:CTP2640,Europe/Paris,,OYN, +OYN:SP:2643,1,"ARVERT - Amouroux",45.74776,-1.122825,0,0,OYN:SA:CTP2643,Europe/Paris,,OYN, +OYN:SP:2644,1,"ARVERT - Amouroux",45.747807,-1.122773,0,0,OYN:SA:CTP2643,Europe/Paris,,OYN, +OYN:SP:2649,1,"SAUJON - Lt Salicorne",45.684723,-0.935911,0,0,OYN:SA:CTP2649,Europe/Paris,,OYN, +OYN:SP:265,1,"ROYAN - Aigle",45.62355,-1.012634,0,0,OYN:SA:CTP265,Europe/Paris,,OYN, +OYN:SP:2650,1,"SAUJON - La Roue",45.679422,-0.906152,0,0,OYN:SA:CTP2650,Europe/Paris,,OYN, +OYN:SP:266,1,"ROYAN - Aquitaine",45.623236,-1.009854,0,0,OYN:SA:CTP266,Europe/Paris,,OYN, +OYN:SP:267,1,"ROYAN - Faupigné",45.623596,-1.004192,0,0,OYN:SA:CTP272,Europe/Paris,,OYN, +OYN:SP:268,1,"ROYAN - Lavoisier",45.631859,-0.987084,0,0,OYN:SA:CTP1240,Europe/Paris,,OYN, +OYN:SP:269,1,"ROYAN - Royan 2",45.630454,-0.992071,0,0,OYN:SA:CTP382,Europe/Paris,,OYN, +OYN:SP:270,1,"ROYAN - Ste Marie",45.629181,-0.994508,0,0,OYN:SA:CTP270,Europe/Paris,,OYN, +OYN:SP:271,1,"ROYAN - Robinière",45.627738,-0.996742,0,0,OYN:SA:CTP271,Europe/Paris,,OYN, +OYN:SP:272,1,"ROYAN - Faupigné",45.623594,-1.003951,0,0,OYN:SA:CTP272,Europe/Paris,,OYN, +OYN:SP:273,1,"ROYAN - Aquitaine",45.623126,-1.009768,0,0,OYN:SA:CTP266,Europe/Paris,,OYN, +OYN:SP:274,1,"ROYAN - Aigle",45.623452,-1.012736,0,0,OYN:SA:CTP265,Europe/Paris,,OYN, +OYN:SP:275,1,"ROYAN - Reutin",45.635729,-1.0269,0,0,OYN:SA:CTP275,Europe/Paris,,OYN, +OYN:SP:276,1,"ROYAN - Coquelicots",45.641722,-1.02487,0,0,OYN:SA:CTP276,Europe/Paris,,OYN, +OYN:SP:277,1,"ROYAN - Cerisiers",45.648643,-1.024525,0,0,OYN:SA:CTP277,Europe/Paris,,OYN, +OYN:SP:278,1,"ROYAN - Clinique",45.653876,-1.023215,0,0,OYN:SA:CTP278,Europe/Paris,,OYN, +OYN:SP:279,1,"ST-SULPICE-DE-ROYAN - Jaffe",45.6574,-1.022333,0,0,OYN:SA:CTP260,Europe/Paris,,OYN, +OYN:SP:28,1,"COZES - Nazareth",45.580752,-0.836124,0,0,OYN:SA:CTP190,Europe/Paris,,OYN, +OYN:SP:281,1,"ST-SULPICE-DE-ROYAN - Commerces",45.66797,-1.012002,0,0,OYN:SA:CTP281,Europe/Paris,,OYN, +OYN:SP:282,1,"ST-GEORGES-DE-DIDONNE - Parasols",45.615531,-0.98964,0,0,OYN:SA:CTP282,Europe/Paris,,OYN, +OYN:SP:285,1,"ST-GEORGES-DE-DIDONNE - Margite",45.60935,-0.984665,0,0,OYN:SA:CTP285,Europe/Paris,,OYN, +OYN:SP:286,1,"ST-GEORGES-DE-DIDONNE - Camus",45.605178,-0.98736,0,0,OYN:SA:CTP286,Europe/Paris,,OYN, +OYN:SP:287,1,"ST-GEORGES-DE-DIDONNE - Lavigne",45.605813,-0.990988,0,0,OYN:SA:CTP287,Europe/Paris,,OYN, +OYN:SP:288,1,"ST-GEORGES-DE-DIDONNE - Mairie",45.603212,-0.993441,0,0,OYN:SA:CTP288,Europe/Paris,,OYN, +OYN:SP:289,1,"ST-GEORGES-DE-DIDONNE - Créa",45.599826,-0.994854,0,0,OYN:SA:CTP289,Europe/Paris,,OYN, +OYN:SP:29,1,"COZES - Collège",45.577686,-0.840942,0,0,OYN:SA:CTP29,Europe/Paris,,OYN, +OYN:SP:290,1,"ST-GEORGES-DE-DIDONNE - Plage",45.601221,-0.998382,0,0,OYN:SA:CTP290,Europe/Paris,,OYN, +OYN:SP:291,1,"ST-GEORGES-DE-DIDONNE - Polyclinique",45.603284,-1.003181,0,0,OYN:SA:CTP291,Europe/Paris,,OYN, +OYN:SP:292,1,"ST-GEORGES-DE-DIDONNE - Plume",45.606253,-1.005928,0,0,OYN:SA:CTP292,Europe/Paris,,OYN, +OYN:SP:293,1,"ST-GEORGES-DE-DIDONNE - Vallières",45.609026,-1.00856,0,0,OYN:SA:CTP293,Europe/Paris,,OYN, +OYN:SP:294,1,"ROYAN - Lido",45.614366,-1.01133,0,0,OYN:SA:CTP294,Europe/Paris,,OYN, +OYN:SP:295,1,"ROYAN - Paradou",45.617719,-1.014875,0,0,OYN:SA:CTP295,Europe/Paris,,OYN, +OYN:SP:296,1,"ROYAN - Foch",45.623373,-1.022525,0,0,OYN:SA:CTP296,Europe/Paris,,OYN, +OYN:SP:297,1,"ROYAN - de Gaulle",45.624258,-1.028244,0,0,OYN:SA:CTP250,Europe/Paris,,OYN, +OYN:SP:298,1,"ROYAN - Gambetta",45.621544,-1.030896,0,0,OYN:SA:CTP333,Europe/Paris,,OYN, +OYN:SP:299,1,"ROYAN - Bac",45.61967,-1.031768,0,0,OYN:SA:CTP299,Europe/Paris,,OYN, +OYN:SP:300,1,"ROYAN - Foncillon",45.620527,-1.035475,0,0,OYN:SA:CTP300,Europe/Paris,,OYN, +OYN:SP:301,1,"ROYAN - Océan",45.622055,-1.039472,0,0,OYN:SA:CTP301,Europe/Paris,,OYN, +OYN:SP:302,1,"ROYAN - Pigeonnier",45.624494,-1.045756,0,0,OYN:SA:CTP302,Europe/Paris,,OYN, +OYN:SP:303,1,"ROYAN - Etoiles",45.625307,-1.048463,0,0,OYN:SA:CTP303,Europe/Paris,,OYN, +OYN:SP:304,1,"ROYAN - Pontaillac",45.627891,-1.05251,0,0,OYN:SA:CTP304,Europe/Paris,,OYN, +OYN:SP:305,1,"VAUX-SUR-MER - Porte Océane",45.62952,-1.054189,0,0,OYN:SA:CTP305,Europe/Paris,,OYN, +OYN:SP:306,1,"VAUX-SUR-MER - Pasteur",45.631899,-1.05694,0,0,OYN:SA:CTP306,Europe/Paris,,OYN, +OYN:SP:307,1,"VAUX-SUR-MER - Hôpital",45.635075,-1.059763,0,0,OYN:SA:CTP307,Europe/Paris,,OYN, +OYN:SP:309,1,"VAUX-SUR-MER - Courtot",45.645098,-1.060125,0,0,OYN:SA:CTP309,Europe/Paris,,OYN, +OYN:SP:31,1,"L'EGUILLE - Port",45.70847,-0.976641,0,0,OYN:SA:CTP580,Europe/Paris,,OYN, +OYN:SP:310,1,"VAUX-SUR-MER - Mairie",45.646462,-1.062682,0,0,OYN:SA:CTP310,Europe/Paris,,OYN, +OYN:SP:311,1,"VAUX-SUR-MER - Chantaco",45.648945,-1.065213,0,0,OYN:SA:CTP311,Europe/Paris,,OYN, +OYN:SP:312,1,"ST-PALAIS-SUR-MER - Courlay",45.65299,-1.077819,0,0,OYN:SA:CTP312,Europe/Paris,,OYN, +OYN:SP:313,1,"ST-PALAIS-SUR-MER - Commerces",45.651606,-1.084212,0,0,OYN:SA:CTP313,Europe/Paris,,OYN, +OYN:SP:315,1,"ST-PALAIS-SUR-MER - Mouillères",45.647156,-1.098539,0,0,OYN:SA:CTP315,Europe/Paris,,OYN, +OYN:SP:316,1,"ST-PALAIS-SUR-MER - Mouillères",45.646968,-1.098241,0,0,OYN:SA:CTP315,Europe/Paris,,OYN, +OYN:SP:318,1,"ST-PALAIS-SUR-MER - Commerces",45.651371,-1.084011,0,0,OYN:SA:CTP313,Europe/Paris,,OYN, +OYN:SP:319,1,"ST-PALAIS-SUR-MER - Courlay",45.652909,-1.077865,0,0,OYN:SA:CTP319,Europe/Paris,,OYN, +OYN:SP:320,1,"VAUX-SUR-MER - Chantaco",45.648937,-1.065639,0,0,OYN:SA:CTP311,Europe/Paris,,OYN, +OYN:SP:321,1,"VAUX-SUR-MER - Mairie",45.646355,-1.062779,0,0,OYN:SA:CTP310,Europe/Paris,,OYN, +OYN:SP:322,1,"VAUX-SUR-MER - Courtot",45.644895,-1.06037,0,0,OYN:SA:CTP309,Europe/Paris,,OYN, +OYN:SP:324,1,"VAUX-SUR-MER - Hôpital",45.634983,-1.059909,0,0,OYN:SA:CTP307,Europe/Paris,,OYN, +OYN:SP:325,1,"VAUX-SUR-MER - Pasteur",45.631588,-1.056818,0,0,OYN:SA:CTP306,Europe/Paris,,OYN, +OYN:SP:326,1,"VAUX-SUR-MER - Porte Océane",45.629297,-1.054282,0,0,OYN:SA:CTP305,Europe/Paris,,OYN, +OYN:SP:327,1,"ROYAN - Pontaillac",45.627498,-1.052207,0,0,OYN:SA:CTP304,Europe/Paris,,OYN, +OYN:SP:328,1,"ROYAN - Etoiles",45.625254,-1.048535,0,0,OYN:SA:CTP303,Europe/Paris,,OYN, +OYN:SP:329,1,"ROYAN - Pigeonnier",45.624584,-1.04624,0,0,OYN:SA:CTP302,Europe/Paris,,OYN, +OYN:SP:330,1,"ROYAN - Océan",45.622054,-1.039756,0,0,OYN:SA:CTP301,Europe/Paris,,OYN, +OYN:SP:331,1,"ROYAN - Foncillon",45.620456,-1.035688,0,0,OYN:SA:CTP300,Europe/Paris,,OYN, +OYN:SP:332,1,"ROYAN - Bac",45.619479,-1.031528,0,0,OYN:SA:CTP299,Europe/Paris,,OYN, +OYN:SP:333,1,"ROYAN - Gambetta",45.621568,-1.031053,0,0,OYN:SA:CTP333,Europe/Paris,,OYN, +OYN:SP:334,1,"ROYAN - Foch",45.623479,-1.022193,0,0,OYN:SA:CTP296,Europe/Paris,,OYN, +OYN:SP:335,1,"ROYAN - Paradou",45.617884,-1.015281,0,0,OYN:SA:CTP295,Europe/Paris,,OYN, +OYN:SP:336,1,"ROYAN - Lido",45.614634,-1.011717,0,0,OYN:SA:CTP294,Europe/Paris,,OYN, +OYN:SP:337,1,"ST-GEORGES-DE-DIDONNE - Vallières",45.608849,-1.008643,0,0,OYN:SA:CTP293,Europe/Paris,,OYN, +OYN:SP:338,1,"ST-GEORGES-DE-DIDONNE - Plume",45.605774,-1.006029,0,0,OYN:SA:CTP292,Europe/Paris,,OYN, +OYN:SP:339,1,"ST-GEORGES-DE-DIDONNE - Polyclinique",45.602397,-1.002544,0,0,OYN:SA:CTP291,Europe/Paris,,OYN, +OYN:SP:340,1,"ST-GEORGES-DE-DIDONNE - Plage",45.600919,-0.998051,0,0,OYN:SA:CTP290,Europe/Paris,,OYN, +OYN:SP:341,1,"ST-GEORGES-DE-DIDONNE - Créa",45.599523,-0.994764,0,0,OYN:SA:CTP289,Europe/Paris,,OYN, +OYN:SP:342,1,"ST-GEORGES-DE-DIDONNE - Mairie",45.60329,-0.993305,0,0,OYN:SA:CTP288,Europe/Paris,,OYN, +OYN:SP:343,1,"ST-GEORGES-DE-DIDONNE - Lavigne",45.605721,-0.991052,0,0,OYN:SA:CTP287,Europe/Paris,,OYN, +OYN:SP:344,1,"ST-GEORGES-DE-DIDONNE - Camus",45.605001,-0.987216,0,0,OYN:SA:CTP286,Europe/Paris,,OYN, +OYN:SP:345,1,"ST-GEORGES-DE-DIDONNE - Margite",45.609443,-0.984688,0,0,OYN:SA:CTP285,Europe/Paris,,OYN, +OYN:SP:348,1,"ROYAN - Cimetière",45.629414,-1.02425,0,0,OYN:SA:CTP381,Europe/Paris,,OYN, +OYN:SP:349,1,"ROYAN - St-Pierre",45.630287,-1.026556,0,0,OYN:SA:CTP380,Europe/Paris,,OYN, +OYN:SP:35,1,"ETAULES - Pirouette",45.721715,-1.104831,0,0,OYN:SA:CTP534,Europe/Paris,,OYN, +OYN:SP:350,1,"ROYAN - Mission loc",45.63057,-1.030416,0,0,OYN:SA:CTP379,Europe/Paris,,OYN, +OYN:SP:351,1,"ROYAN - Violette",45.627299,-1.0291,0,0,OYN:SA:CTP351,Europe/Paris,,OYN, +OYN:SP:352,1,"ROYAN - Font Cherves",45.627243,-1.030055,0,0,OYN:SA:CTP352,Europe/Paris,,OYN, +OYN:SP:353,1,"ROYAN - Marché",45.628968,-1.032126,0,0,OYN:SA:CTP353,Europe/Paris,,OYN, +OYN:SP:354,1,"ROYAN - Thibaudeau",45.631024,-1.032157,0,0,OYN:SA:CTP354,Europe/Paris,,OYN, +OYN:SP:355,1,"ROYAN - Maine Arnaud",45.64224,-1.030987,0,0,OYN:SA:CTP355,Europe/Paris,,OYN, +OYN:SP:356,1,"ROYAN - Pâquerettes",45.644003,-1.031794,0,0,OYN:SA:CTP356,Europe/Paris,,OYN, +OYN:SP:357,1,"ROYAN - Chatelard",45.650853,-1.03004,0,0,OYN:SA:CTP357,Europe/Paris,,OYN, +OYN:SP:359,1,"ROYAN - Cendrilles",45.64901,-1.039733,0,0,OYN:SA:CTP359,Europe/Paris,,OYN, +OYN:SP:361,1,"VAUX-SUR-MER - Carrelet",45.649162,-1.046548,0,0,OYN:SA:CTP369,Europe/Paris,,OYN, +OYN:SP:363,1,"VAUX-SUR-MER - Reine",45.645799,-1.054927,0,0,OYN:SA:CTP363,Europe/Paris,,OYN, +OYN:SP:364,1,"VAUX-SUR-MER - Chauchamp",45.647908,-1.060408,0,0,OYN:SA:CTP366,Europe/Paris,,OYN, +OYN:SP:365,1,"VAUX-SUR-MER - Grosse Pierre",45.64203,-1.059973,0,0,OYN:SA:CTP365,Europe/Paris,,OYN, +OYN:SP:366,1,"VAUX-SUR-MER - Chauchamp",45.647809,-1.060328,0,0,OYN:SA:CTP366,Europe/Paris,,OYN, +OYN:SP:367,1,"VAUX-SUR-MER - Reine",45.645804,-1.055197,0,0,OYN:SA:CTP363,Europe/Paris,,OYN, +OYN:SP:369,1,"VAUX-SUR-MER - Carrelet",45.649084,-1.046504,0,0,OYN:SA:CTP369,Europe/Paris,,OYN, +OYN:SP:37,1,"GREZAC - Brunets",45.601466,-0.823935,0,0,OYN:SA:CTP539,Europe/Paris,,OYN, +OYN:SP:370,1,"ROYAN - Cendrilles",45.648986,-1.039937,0,0,OYN:SA:CTP359,Europe/Paris,,OYN, +OYN:SP:371,1,"ROYAN - Treille",45.64818,-1.034126,0,0,OYN:SA:CTP371,Europe/Paris,,OYN, +OYN:SP:372,1,"ROYAN - Chatelard",45.650831,-1.029852,0,0,OYN:SA:CTP357,Europe/Paris,,OYN, +OYN:SP:373,1,"ROYAN - Pâquerettes",45.644143,-1.031712,0,0,OYN:SA:CTP356,Europe/Paris,,OYN, +OYN:SP:374,1,"ROYAN - Maine Arnaud",45.642455,-1.031457,0,0,OYN:SA:CTP355,Europe/Paris,,OYN, +OYN:SP:375,1,"ROYAN - Thibaudeau",45.631397,-1.032354,0,0,OYN:SA:CTP354,Europe/Paris,,OYN, +OYN:SP:376,1,"ROYAN - Marché",45.62908,-1.032308,0,0,OYN:SA:CTP353,Europe/Paris,,OYN, +OYN:SP:377,1,"ROYAN - Loti",45.62678,-1.031593,0,0,OYN:SA:CTP377,Europe/Paris,,OYN, +OYN:SP:378,1,"ROYAN - Violette",45.627146,-1.028989,0,0,OYN:SA:CTP351,Europe/Paris,,OYN, +OYN:SP:379,1,"ROYAN - Mission loc",45.630439,-1.03029,0,0,OYN:SA:CTP379,Europe/Paris,,OYN, +OYN:SP:380,1,"ROYAN - St-Pierre",45.630178,-1.026722,0,0,OYN:SA:CTP380,Europe/Paris,,OYN, +OYN:SP:381,1,"ROYAN - Cimetière",45.629235,-1.024291,0,0,OYN:SA:CTP381,Europe/Paris,,OYN, +OYN:SP:382,1,"ROYAN - Royan 2",45.630463,-0.99185,0,0,OYN:SA:CTP382,Europe/Paris,,OYN, +OYN:SP:383,1,"ARCES - Repos",45.55582,-0.86258,0,0,OYN:SA:CTP383,Europe/Paris,,OYN, +OYN:SP:384,1,"ARCES - Repos",45.555863,-0.862525,0,0,OYN:SA:CTP383,Europe/Paris,,OYN, +OYN:SP:385,1,"ARCES - Chassagne",45.569273,-0.867246,0,0,OYN:SA:CTP385,Europe/Paris,,OYN, +OYN:SP:386,1,"ARCES - Chassagne",45.569254,-0.867179,0,0,OYN:SA:CTP385,Europe/Paris,,OYN, +OYN:SP:387,1,"ARCES - Ecole",45.555035,-0.861672,0,0,OYN:SA:CTP15,Europe/Paris,,OYN, +OYN:SP:389,1,"ARCES - Liboulas",45.560556,-0.878147,0,0,OYN:SA:CTP390,Europe/Paris,,OYN, +OYN:SP:390,1,"ARCES - Liboulas",45.560594,-0.878073,0,0,OYN:SA:CTP390,Europe/Paris,,OYN, +OYN:SP:393,1,"ARCES - Mairie",45.553098,-0.860291,0,0,OYN:SA:CTP394,Europe/Paris,,OYN, +OYN:SP:394,1,"ARCES - Mairie",45.553127,-0.860177,0,0,OYN:SA:CTP394,Europe/Paris,,OYN, +OYN:SP:395,1,"ARCES - Moutard",45.56392,-0.871108,0,0,OYN:SA:CTP395,Europe/Paris,,OYN, +OYN:SP:396,1,"ARCES - Moutard",45.563898,-0.871045,0,0,OYN:SA:CTP395,Europe/Paris,,OYN, +OYN:SP:399,1,"ARVERT - Avallon",45.743325,-1.108996,0,0,OYN:SA:CTP399,Europe/Paris,,OYN, +OYN:SP:400,1,"ARVERT - Avallon",45.743222,-1.108821,0,0,OYN:SA:CTP399,Europe/Paris,,OYN, +OYN:SP:403,1,"ARVERT - Etrade",45.752873,-1.138239,0,0,OYN:SA:CTP403,Europe/Paris,,OYN, +OYN:SP:404,1,"ARVERT - Etrade",45.75313,-1.138198,0,0,OYN:SA:CTP403,Europe/Paris,,OYN, +OYN:SP:405,1,"ARVERT - Fouilloux",45.745971,-1.131739,0,0,OYN:SA:CTP405,Europe/Paris,,OYN, +OYN:SP:406,1,"ARVERT - Fouilloux",45.745775,-1.131391,0,0,OYN:SA:CTP405,Europe/Paris,,OYN, +OYN:SP:407,1,"ARVERT - Geay",45.745937,-1.142657,0,0,OYN:SA:CTP407,Europe/Paris,,OYN, +OYN:SP:408,1,"ARVERT - Geay",45.746018,-1.142575,0,0,OYN:SA:CTP407,Europe/Paris,,OYN, +OYN:SP:409,1,"ARVERT - Graveau",45.745032,-1.138935,0,0,OYN:SA:CTP410,Europe/Paris,,OYN, +OYN:SP:410,1,"ARVERT - Graveau",45.745044,-1.138824,0,0,OYN:SA:CTP410,Europe/Paris,,OYN, +OYN:SP:411,1,"ARVERT - Ht Fouilloux",45.74841,-1.133733,0,0,OYN:SA:CTP412,Europe/Paris,,OYN, +OYN:SP:412,1,"ARVERT - Ht Fouilloux",45.748452,-1.133649,0,0,OYN:SA:CTP412,Europe/Paris,,OYN, +OYN:SP:413,1,"ARVERT - Bataille",45.737578,-1.109066,0,0,OYN:SA:CTP413,Europe/Paris,,OYN, +OYN:SP:414,1,"ARVERT - Bataille",45.737579,-1.108805,0,0,OYN:SA:CTP413,Europe/Paris,,OYN, +OYN:SP:415,1,"ARVERT - Tonnelles",45.756376,-1.126023,0,0,OYN:SA:CTP415,Europe/Paris,,OYN, +OYN:SP:416,1,"ARVERT - Tonnelles",45.75635,-1.125955,0,0,OYN:SA:CTP415,Europe/Paris,,OYN, +OYN:SP:417,1,"BARZAN - Brissonnerie",45.525239,-0.870828,0,0,OYN:SA:CTP418,Europe/Paris,,OYN, +OYN:SP:418,1,"BARZAN - Brissonnerie",45.52509,-0.870764,0,0,OYN:SA:CTP418,Europe/Paris,,OYN, +OYN:SP:419,1,"BARZAN - Garnier",45.520859,-0.861806,0,0,OYN:SA:CTP420,Europe/Paris,,OYN, +OYN:SP:420,1,"BARZAN - Garnier",45.520929,-0.861739,0,0,OYN:SA:CTP420,Europe/Paris,,OYN, +OYN:SP:421,1,"BARZAN - Maison Neuve",45.540462,-0.85905,0,0,OYN:SA:CTP422,Europe/Paris,,OYN, +OYN:SP:422,1,"BARZAN - Maison Neuve",45.540448,-0.858958,0,0,OYN:SA:CTP422,Europe/Paris,,OYN, +OYN:SP:423,1,"BARZAN - Plage",45.52838,-0.881883,0,0,OYN:SA:CTP424,Europe/Paris,,OYN, +OYN:SP:424,1,"BARZAN - Plage",45.528454,-0.881842,0,0,OYN:SA:CTP424,Europe/Paris,,OYN, +OYN:SP:425,1,"BARZAN - Providence",45.520429,-0.856287,0,0,OYN:SA:CTP426,Europe/Paris,,OYN, +OYN:SP:426,1,"BARZAN - Providence",45.520408,-0.856184,0,0,OYN:SA:CTP426,Europe/Paris,,OYN, +OYN:SP:430,1,"MORTAGNE-SUR-GIRONDE - Moulin Lande",45.498614,-0.770692,0,0,OYN:SA:CTP430,Europe/Paris,,OYN, +OYN:SP:431,1,"BOUTENAC-TOUVENT - Mairie",45.505009,-0.757764,0,0,OYN:SA:CTP2568,Europe/Paris,,OYN, +OYN:SP:434,1,"BREUILLET - Billeau",45.692306,-1.069856,0,0,OYN:SA:CTP435,Europe/Paris,,OYN, +OYN:SP:435,1,"BREUILLET - Billeau",45.692218,-1.069812,0,0,OYN:SA:CTP435,Europe/Paris,,OYN, +OYN:SP:436,1,"BREUILLET - Coulonges",45.713642,-1.049939,0,0,OYN:SA:CTP436,Europe/Paris,,OYN, +OYN:SP:437,1,"BREUILLET - Coulonges",45.713663,-1.049876,0,0,OYN:SA:CTP436,Europe/Paris,,OYN, +OYN:SP:438,1,"BREUILLET - Garage",45.695843,-1.051172,0,0,OYN:SA:CTP438,Europe/Paris,,OYN, +OYN:SP:439,1,"BREUILLET - Garage",45.695738,-1.051027,0,0,OYN:SA:CTP438,Europe/Paris,,OYN, +OYN:SP:440,1,"BREUILLET - Grallet",45.688395,-1.069411,0,0,OYN:SA:CTP440,Europe/Paris,,OYN, +OYN:SP:441,1,"BREUILLET - Grallet",45.688416,-1.069391,0,0,OYN:SA:CTP440,Europe/Paris,,OYN, +OYN:SP:442,1,"BREUILLET - Lt Simandière",45.688278,-1.057035,0,0,OYN:SA:CTP442,Europe/Paris,,OYN, +OYN:SP:443,1,"BREUILLET - Lt Simandière",45.688872,-1.056636,0,0,OYN:SA:CTP442,Europe/Paris,,OYN, +OYN:SP:444,1,"BREUILLET - Magarin",45.698135,-1.051933,0,0,OYN:SA:CTP444,Europe/Paris,,OYN, +OYN:SP:445,1,"BREUILLET - Magarin",45.69821,-1.051668,0,0,OYN:SA:CTP444,Europe/Paris,,OYN, +OYN:SP:446,1,"BREUILLET - Marché",45.691508,-1.053547,0,0,OYN:SA:CTP447,Europe/Paris,,OYN, +OYN:SP:447,1,"BREUILLET - Marché",45.691709,-1.053467,0,0,OYN:SA:CTP447,Europe/Paris,,OYN, +OYN:SP:448,1,"BREUILLET - Taupignac",45.674752,-1.0566,0,0,OYN:SA:CTP448,Europe/Paris,,OYN, +OYN:SP:45,1,"MEDIS - Piaudrie",45.632719,-0.953296,0,0,OYN:SA:CTP849,Europe/Paris,,OYN, +OYN:SP:451,1,"CHAILLEVETTE - Cabane",45.721798,-1.078776,0,0,OYN:SA:CTP451,Europe/Paris,,OYN, +OYN:SP:452,1,"CHAILLEVETTE - Chatressac",45.737061,-1.059784,0,0,OYN:SA:CTP452,Europe/Paris,,OYN, +OYN:SP:454,1,"CHAILLEVETTE - Eglise",45.730119,-1.059325,0,0,OYN:SA:CTP454,Europe/Paris,,OYN, +OYN:SP:455,1,"CHAILLEVETTE - Eglise",45.730108,-1.058864,0,0,OYN:SA:CTP454,Europe/Paris,,OYN, +OYN:SP:456,1,"CHAILLEVETTE - Jadeau",45.723076,-1.063757,0,0,OYN:SA:CTP456,Europe/Paris,,OYN, +OYN:SP:457,1,"CHAILLEVETTE - Jadeau",45.722997,-1.063751,0,0,OYN:SA:CTP456,Europe/Paris,,OYN, +OYN:SP:458,1,"CHAILLEVETTE - Poterie",45.721139,-1.056285,0,0,OYN:SA:CTP458,Europe/Paris,,OYN, +OYN:SP:459,1,"CHAILLEVETTE - Poterie",45.72114,-1.056116,0,0,OYN:SA:CTP458,Europe/Paris,,OYN, +OYN:SP:46,1,"MESCHERS-SUR-GIRONDE - Longée",45.557339,-0.950594,0,0,OYN:SA:CTP46,Europe/Paris,,OYN, +OYN:SP:460,1,"CHAILLEVETTE - Sablière",45.719139,-1.060297,0,0,OYN:SA:CTP461,Europe/Paris,,OYN, +OYN:SP:461,1,"CHAILLEVETTE - Sablière",45.719157,-1.060195,0,0,OYN:SA:CTP461,Europe/Paris,,OYN, +OYN:SP:462,1,"CHAILLEVETTE - Temple",45.729728,-1.072195,0,0,OYN:SA:CTP463,Europe/Paris,,OYN, +OYN:SP:463,1,"CHAILLEVETTE - Temple",45.729688,-1.072103,0,0,OYN:SA:CTP463,Europe/Paris,,OYN, +OYN:SP:464,1,"CHAILLEVETTE - Verdun",45.733642,-1.066854,0,0,OYN:SA:CTP465,Europe/Paris,,OYN, +OYN:SP:465,1,"CHAILLEVETTE - Verdun",45.73378,-1.066335,0,0,OYN:SA:CTP465,Europe/Paris,,OYN, +OYN:SP:466,1,"CHENAC-ST-SEURIN-D'UZET - Bourg",45.516581,-0.826025,0,0,OYN:SA:CTP466,Europe/Paris,,OYN, +OYN:SP:467,1,"CHENAC-ST-SEURIN-D'UZET - Bourg",45.516606,-0.825929,0,0,OYN:SA:CTP466,Europe/Paris,,OYN, +OYN:SP:468,1,"CHENAC-ST-SEURIN-D'UZET - Echailler",45.494796,-0.81762,0,0,OYN:SA:CTP468,Europe/Paris,,OYN, +OYN:SP:469,1,"CHENAC-ST-SEURIN-D'UZET - Echailler",45.494879,-0.817587,0,0,OYN:SA:CTP468,Europe/Paris,,OYN, +OYN:SP:47,1,"MORTAGNE-SUR-GIRONDE - Gambetta",45.483316,-0.784915,0,0,OYN:SA:CTP47,Europe/Paris,,OYN, +OYN:SP:470,1,"CHENAC-ST-SEURIN-D'UZET - Echaillerabri",45.493413,-0.811187,0,0,OYN:SA:CTP471,Europe/Paris,,OYN, +OYN:SP:471,1,"CHENAC-ST-SEURIN-D'UZET - Echaillerabri",45.493481,-0.811083,0,0,OYN:SA:CTP471,Europe/Paris,,OYN, +OYN:SP:473,1,"CHENAC-ST-SEURIN-D'UZET - Loiseau",45.518473,-0.792538,0,0,OYN:SA:CTP474,Europe/Paris,,OYN, +OYN:SP:474,1,"CHENAC-ST-SEURIN-D'UZET - Loiseau",45.518491,-0.792407,0,0,OYN:SA:CTP474,Europe/Paris,,OYN, +OYN:SP:475,1,"BARZAN - Monards",45.516098,-0.854322,0,0,OYN:SA:CTP476,Europe/Paris,,OYN, +OYN:SP:476,1,"BARZAN - Monards",45.516129,-0.854216,0,0,OYN:SA:CTP476,Europe/Paris,,OYN, +OYN:SP:477,1,"CHENAC-ST-SEURIN-D'UZET - Parpillons",45.521542,-0.793723,0,0,OYN:SA:CTP478,Europe/Paris,,OYN, +OYN:SP:478,1,"CHENAC-ST-SEURIN-D'UZET - Parpillons",45.521586,-0.79365,0,0,OYN:SA:CTP478,Europe/Paris,,OYN, +OYN:SP:479,1,"CHENAC-ST-SEURIN-D'UZET - Rambaud",45.495234,-0.801258,0,0,OYN:SA:CTP479,Europe/Paris,,OYN, +OYN:SP:480,1,"CHENAC-ST-SEURIN-D'UZET - Rambaud",45.49509,-0.801019,0,0,OYN:SA:CTP479,Europe/Paris,,OYN, +OYN:SP:481,1,"CHENAC-ST-SEURIN-D'UZET - StSeurin Port",45.502089,-0.834129,0,0,OYN:SA:CTP481,Europe/Paris,,OYN, +OYN:SP:482,1,"CHENAC-ST-SEURIN-D'UZET - StSeurin Port",45.502243,-0.834113,0,0,OYN:SA:CTP481,Europe/Paris,,OYN, +OYN:SP:488,1,"COZES - Barre",45.560621,-0.81099,0,0,OYN:SA:CTP489,Europe/Paris,,OYN, +OYN:SP:489,1,"COZES - Barre",45.560601,-0.810934,0,0,OYN:SA:CTP489,Europe/Paris,,OYN, +OYN:SP:490,1,"COZES - Commerces",45.584585,-0.835405,0,0,OYN:SA:CTP490,Europe/Paris,,OYN, +OYN:SP:491,1,"COZES - Commerces",45.584641,-0.835028,0,0,OYN:SA:CTP490,Europe/Paris,,OYN, +OYN:SP:492,1,"COZES - Conteneuil",45.576548,-0.856283,0,0,OYN:SA:CTP492,Europe/Paris,,OYN, +OYN:SP:493,1,"COZES - Conteneuil",45.576513,-0.856247,0,0,OYN:SA:CTP492,Europe/Paris,,OYN, +OYN:SP:494,1,"COZES - Fief Neuf",45.57903,-0.842249,0,0,OYN:SA:CTP495,Europe/Paris,,OYN, +OYN:SP:495,1,"COZES - Fief Neuf",45.579098,-0.842243,0,0,OYN:SA:CTP495,Europe/Paris,,OYN, +OYN:SP:496,1,"COZES - Garde",45.576618,-0.817129,0,0,OYN:SA:CTP497,Europe/Paris,,OYN, +OYN:SP:497,1,"COZES - Garde",45.576504,-0.81692,0,0,OYN:SA:CTP497,Europe/Paris,,OYN, +OYN:SP:498,1,"COZES - Gare",45.586238,-0.832683,0,0,OYN:SA:CTP7,Europe/Paris,,OYN, +OYN:SP:499,1,"COZES - Gorce",45.56414,-0.804427,0,0,OYN:SA:CTP499,Europe/Paris,,OYN, +OYN:SP:500,1,"COZES - Gorce",45.564194,-0.804222,0,0,OYN:SA:CTP499,Europe/Paris,,OYN, +OYN:SP:501,1,"COZES - Javrezac",45.562629,-0.830637,0,0,OYN:SA:CTP501,Europe/Paris,,OYN, +OYN:SP:502,1,"COZES - Maréchaux",45.579435,-0.816248,0,0,OYN:SA:CTP502,Europe/Paris,,OYN, +OYN:SP:503,1,"COZES - Maréchaux",45.579375,-0.815541,0,0,OYN:SA:CTP502,Europe/Paris,,OYN, +OYN:SP:504,1,"COZES - Petite Gorce",45.564733,-0.804466,0,0,OYN:SA:CTP504,Europe/Paris,,OYN, +OYN:SP:505,1,"COZES - Petite Gorce",45.564414,-0.804268,0,0,OYN:SA:CTP504,Europe/Paris,,OYN, +OYN:SP:506,1,"COZES - Primaire",45.581006,-0.83071,0,0,OYN:SA:CTP506,Europe/Paris,,OYN, +OYN:SP:508,1,"EPARGNES - Bastille",45.546098,-0.786113,0,0,OYN:SA:CTP508,Europe/Paris,,OYN, +OYN:SP:509,1,"EPARGNES - Bastille",45.545605,-0.785805,0,0,OYN:SA:CTP508,Europe/Paris,,OYN, +OYN:SP:512,1,"EPARGNES - Boileau",45.538852,-0.783936,0,0,OYN:SA:CTP512,Europe/Paris,,OYN, +OYN:SP:513,1,"EPARGNES - Boileau",45.538726,-0.783928,0,0,OYN:SA:CTP512,Europe/Paris,,OYN, +OYN:SP:514,1,"EPARGNES - Centre",45.541696,-0.803668,0,0,OYN:SA:CTP514,Europe/Paris,,OYN, +OYN:SP:515,1,"EPARGNES - Centre",45.541704,-0.803552,0,0,OYN:SA:CTP514,Europe/Paris,,OYN, +OYN:SP:52,1,"ROYAN - Atlantique",45.633511,-1.018685,0,0,OYN:SA:CTP52,Europe/Paris,,OYN, +OYN:SP:520,1,"EPARGNES - Loriaux",45.541504,-0.781205,0,0,OYN:SA:CTP520,Europe/Paris,,OYN, +OYN:SP:521,1,"EPARGNES - Loriaux",45.541444,-0.781155,0,0,OYN:SA:CTP520,Europe/Paris,,OYN, +OYN:SP:522,1,"EPARGNES - Providence",45.53352,-0.805556,0,0,OYN:SA:CTP522,Europe/Paris,,OYN, +OYN:SP:523,1,"EPARGNES - Providence",45.533483,-0.805468,0,0,OYN:SA:CTP522,Europe/Paris,,OYN, +OYN:SP:524,1,"EPARGNES - Soulignac",45.552249,-0.798102,0,0,OYN:SA:CTP524,Europe/Paris,,OYN, +OYN:SP:525,1,"EPARGNES - Soulignac",45.552196,-0.798033,0,0,OYN:SA:CTP524,Europe/Paris,,OYN, +OYN:SP:526,1,"ETAULES - Cimetière",45.729289,-1.093426,0,0,OYN:SA:CTP526,Europe/Paris,,OYN, +OYN:SP:527,1,"ETAULES - Cimetière",45.729361,-1.093204,0,0,OYN:SA:CTP526,Europe/Paris,,OYN, +OYN:SP:529,1,"ETAULES - Eglise",45.731531,-1.098137,0,0,OYN:SA:CTP529,Europe/Paris,,OYN, +OYN:SP:53,1,"ROYAN - Cordouan",45.622014,-1.004096,0,0,OYN:SA:CTP53,Europe/Paris,,OYN, +OYN:SP:530,1,"ETAULES - Eglise",45.73158,-1.098017,0,0,OYN:SA:CTP529,Europe/Paris,,OYN, +OYN:SP:531,1,"ETAULES - Passe",45.709739,-1.113574,0,0,OYN:SA:CTP532,Europe/Paris,,OYN, +OYN:SP:532,1,"ETAULES - Passe",45.709639,-1.113522,0,0,OYN:SA:CTP532,Europe/Paris,,OYN, +OYN:SP:534,1,"ETAULES - Pirouette",45.721778,-1.104912,0,0,OYN:SA:CTP534,Europe/Paris,,OYN, +OYN:SP:538,1,"GREZAC - Brunets",45.602684,-0.82671,0,0,OYN:SA:CTP539,Europe/Paris,,OYN, +OYN:SP:539,1,"GREZAC - Brunets",45.601063,-0.824904,0,0,OYN:SA:CTP539,Europe/Paris,,OYN, +OYN:SP:54,1,"ROYAN - Dunant",45.639699,-1.049465,0,0,OYN:SA:CTP54,Europe/Paris,,OYN, +OYN:SP:545,1,"GREZAC - Mairie",45.60341,-0.840539,0,0,OYN:SA:CTP546,Europe/Paris,,OYN, +OYN:SP:546,1,"GREZAC - Mairie",45.60333,-0.840513,0,0,OYN:SA:CTP546,Europe/Paris,,OYN, +OYN:SP:549,1,"GREZAC - Roche",45.600484,-0.807195,0,0,OYN:SA:CTP549,Europe/Paris,,OYN, +OYN:SP:55,1,"ROYAN - Cordouan",45.620943,-1.002269,0,0,OYN:SA:CTP53,Europe/Paris,,OYN, +OYN:SP:550,1,"GREZAC - Roche",45.600514,-0.807116,0,0,OYN:SA:CTP549,Europe/Paris,,OYN, +OYN:SP:551,1,"GREZAC - Roquilleau",45.59329,-0.798742,0,0,OYN:SA:CTP551,Europe/Paris,,OYN, +OYN:SP:552,1,"GREZAC - Roquilleau",45.593299,-0.798676,0,0,OYN:SA:CTP551,Europe/Paris,,OYN, +OYN:SP:553,1,"GREZAC - Soulard",45.588744,-0.796888,0,0,OYN:SA:CTP554,Europe/Paris,,OYN, +OYN:SP:554,1,"GREZAC - Soulard",45.588598,-0.796795,0,0,OYN:SA:CTP554,Europe/Paris,,OYN, +OYN:SP:558,1,"LA TREMBLADE - Collège",45.777899,-1.145919,0,0,OYN:SA:CTP558,Europe/Paris,,OYN, +OYN:SP:559,1,"LA TREMBLADE - Foyer",45.776255,-1.146341,0,0,OYN:SA:CTP560,Europe/Paris,,OYN, +OYN:SP:56,1,"ROYAN - Perche",45.633821,-1.036638,0,0,OYN:SA:CTP176,Europe/Paris,,OYN, +OYN:SP:560,1,"LA TREMBLADE - Foyer",45.776042,-1.146293,0,0,OYN:SA:CTP560,Europe/Paris,,OYN, +OYN:SP:562,1,"LA TREMBLADE - Petit Pont",45.761453,-1.141795,0,0,OYN:SA:CTP563,Europe/Paris,,OYN, +OYN:SP:563,1,"LA TREMBLADE - Petit Pont",45.76157,-1.141674,0,0,OYN:SA:CTP563,Europe/Paris,,OYN, +OYN:SP:564,1,"LA TREMBLADE - Riveaux",45.782244,-1.156058,0,0,OYN:SA:CTP565,Europe/Paris,,OYN, +OYN:SP:565,1,"LA TREMBLADE - Riveaux",45.782554,-1.155983,0,0,OYN:SA:CTP565,Europe/Paris,,OYN, +OYN:SP:566,1,"LA TREMBLADE - Ronce Camping",45.789599,-1.159362,0,0,OYN:SA:CTP567,Europe/Paris,,OYN, +OYN:SP:567,1,"LA TREMBLADE - Ronce Camping",45.788798,-1.158806,0,0,OYN:SA:CTP567,Europe/Paris,,OYN, +OYN:SP:568,1,"LA TREMBLADE - Ronce Casino",45.795744,-1.16261,0,0,OYN:SA:CTP568,Europe/Paris,,OYN, +OYN:SP:570,1,"LE CHAY - Mairie",45.64031,-0.897809,0,0,OYN:SA:CTP570,Europe/Paris,,OYN, +OYN:SP:571,1,"LE CHAY - Morgard",45.663253,-0.909673,0,0,OYN:SA:CTP571,Europe/Paris,,OYN, +OYN:SP:572,1,"LE CHAY - Morgard",45.663333,-0.909628,0,0,OYN:SA:CTP571,Europe/Paris,,OYN, +OYN:SP:573,1,"LE CHAY - Riolet",45.659318,-0.9017,0,0,OYN:SA:CTP573,Europe/Paris,,OYN, +OYN:SP:574,1,"LE CHAY - Riolet",45.659359,-0.90164,0,0,OYN:SA:CTP573,Europe/Paris,,OYN, +OYN:SP:576,1,"SAUJON - Métairies",45.689254,-0.966511,0,0,OYN:SA:CTP576,Europe/Paris,,OYN, +OYN:SP:577,1,"SAUJON - Métairies",45.689302,-0.966481,0,0,OYN:SA:CTP576,Europe/Paris,,OYN, +OYN:SP:578,1,"L'EGUILLE - Pte Eguille",45.701088,-0.97635,0,0,OYN:SA:CTP578,Europe/Paris,,OYN, +OYN:SP:579,1,"L'EGUILLE - Pte Eguille",45.701136,-0.976347,0,0,OYN:SA:CTP578,Europe/Paris,,OYN, +OYN:SP:580,1,"L'EGUILLE - Port",45.708519,-0.976566,0,0,OYN:SA:CTP580,Europe/Paris,,OYN, +OYN:SP:581,1,"LES MATHES - Campings",45.713816,-1.159549,0,0,OYN:SA:CTP582,Europe/Paris,,OYN, +OYN:SP:582,1,"LES MATHES - Campings",45.713724,-1.159456,0,0,OYN:SA:CTP582,Europe/Paris,,OYN, +OYN:SP:583,1,"LES MATHES - Cimetière",45.714442,-1.136781,0,0,OYN:SA:CTP584,Europe/Paris,,OYN, +OYN:SP:584,1,"LES MATHES - Cimetière",45.714274,-1.136542,0,0,OYN:SA:CTP584,Europe/Paris,,OYN, +OYN:SP:594,1,"LES MATHES - Néré",45.723801,-1.143863,0,0,OYN:SA:CTP595,Europe/Paris,,OYN, +OYN:SP:595,1,"LES MATHES - Néré",45.72378,-1.143774,0,0,OYN:SA:CTP595,Europe/Paris,,OYN, +OYN:SP:596,1,"LES MATHES - Hippodrome",45.699363,-1.171973,0,0,OYN:SA:CTP597,Europe/Paris,,OYN, +OYN:SP:597,1,"LES MATHES - Hippodrome",45.699302,-1.171862,0,0,OYN:SA:CTP597,Europe/Paris,,OYN, +OYN:SP:598,1,"LES MATHES - Palmyre Zoo",45.685489,-1.166517,0,0,OYN:SA:CTP598,Europe/Paris,,OYN, +OYN:SP:599,1,"LES MATHES - Palmyre Zoo",45.685139,-1.165689,0,0,OYN:SA:CTP598,Europe/Paris,,OYN, +OYN:SP:600,1,"LES MATHES - Résinerie",45.709036,-1.164181,0,0,OYN:SA:CTP600,Europe/Paris,,OYN, +OYN:SP:601,1,"LES MATHES - Résinerie",45.709006,-1.164122,0,0,OYN:SA:CTP600,Europe/Paris,,OYN, +OYN:SP:602,1,"LES MATHES - Valdotains",45.716079,-1.152483,0,0,OYN:SA:CTP602,Europe/Paris,,OYN, +OYN:SP:603,1,"LES MATHES - Valdotains",45.716217,-1.152365,0,0,OYN:SA:CTP602,Europe/Paris,,OYN, +OYN:SP:607,1,"MARENNES - Place",45.820956,-1.108532,0,0,OYN:SA:CTP607,Europe/Paris,,OYN, +OYN:SP:609,1,"MEDIS - Brandes",45.62526,-0.965114,0,0,OYN:SA:CTP609,Europe/Paris,,OYN, +OYN:SP:610,1,"MEDIS - Brandes",45.625241,-0.96503,0,0,OYN:SA:CTP609,Europe/Paris,,OYN, +OYN:SP:611,1,"MEDIS - Centre",45.643706,-0.964662,0,0,OYN:SA:CTP612,Europe/Paris,,OYN, +OYN:SP:612,1,"MEDIS - Centre",45.643662,-0.964561,0,0,OYN:SA:CTP612,Europe/Paris,,OYN, +OYN:SP:613,1,"MEDIS - Dias",45.652164,-0.975825,0,0,OYN:SA:CTP613,Europe/Paris,,OYN, +OYN:SP:614,1,"MEDIS - Dias",45.652134,-0.975779,0,0,OYN:SA:CTP613,Europe/Paris,,OYN, +OYN:SP:616,1,"MEDIS - Musson",45.622293,-0.93625,0,0,OYN:SA:CTP617,Europe/Paris,,OYN, +OYN:SP:617,1,"MEDIS - Musson",45.622331,-0.936222,0,0,OYN:SA:CTP617,Europe/Paris,,OYN, +OYN:SP:618,1,"MEDIS - Toussaugé",45.630655,-0.94773,0,0,OYN:SA:CTP619,Europe/Paris,,OYN, +OYN:SP:619,1,"MEDIS - Toussaugé",45.630694,-0.947628,0,0,OYN:SA:CTP619,Europe/Paris,,OYN, +OYN:SP:620,1,"MESCHERS-SUR-GIRONDE - Arnèche",45.570367,-0.972298,0,0,OYN:SA:CTP621,Europe/Paris,,OYN, +OYN:SP:621,1,"MESCHERS-SUR-GIRONDE - Arnèche",45.57047,-0.97221,0,0,OYN:SA:CTP621,Europe/Paris,,OYN, +OYN:SP:622,1,"MESCHERS-SUR-GIRONDE - Berceau",45.585368,-0.956066,0,0,OYN:SA:CTP622,Europe/Paris,,OYN, +OYN:SP:623,1,"MESCHERS-SUR-GIRONDE - Berceau",45.5851,-0.956325,0,0,OYN:SA:CTP622,Europe/Paris,,OYN, +OYN:SP:624,1,"MESCHERS-SUR-GIRONDE - Birat",45.570869,-0.960817,0,0,OYN:SA:CTP624,Europe/Paris,,OYN, +OYN:SP:625,1,"MESCHERS-SUR-GIRONDE - Birat",45.570952,-0.960736,0,0,OYN:SA:CTP624,Europe/Paris,,OYN, +OYN:SP:626,1,"MESCHERS-SUR-GIRONDE - Chantier",45.58522,-0.942609,0,0,OYN:SA:CTP627,Europe/Paris,,OYN, +OYN:SP:627,1,"MESCHERS-SUR-GIRONDE - Chantier",45.585259,-0.942593,0,0,OYN:SA:CTP627,Europe/Paris,,OYN, +OYN:SP:628,1,"MESCHERS-SUR-GIRONDE - Cimetière",45.561585,-0.958301,0,0,OYN:SA:CTP628,Europe/Paris,,OYN, +OYN:SP:629,1,"MESCHERS-SUR-GIRONDE - Cimetière",45.561606,-0.958177,0,0,OYN:SA:CTP628,Europe/Paris,,OYN, +OYN:SP:63,1,"SAUJON - Richelieu",45.675988,-0.925402,0,0,OYN:SA:CTP185,Europe/Paris,,OYN, +OYN:SP:631,1,"MESCHERS-SUR-GIRONDE - Beloire",45.572887,-0.935723,0,0,OYN:SA:CTP631,Europe/Paris,,OYN, +OYN:SP:633,1,"MESCHERS-SUR-GIRONDE - Jasmins",45.56784,-0.94988,0,0,OYN:SA:CTP633,Europe/Paris,,OYN, +OYN:SP:634,1,"MESCHERS-SUR-GIRONDE - Jasmins",45.56792,-0.94912,0,0,OYN:SA:CTP633,Europe/Paris,,OYN, +OYN:SP:635,1,"MESCHERS-SUR-GIRONDE - Journaux",45.57591,-0.938221,0,0,OYN:SA:CTP635,Europe/Paris,,OYN, +OYN:SP:636,1,"MESCHERS-SUR-GIRONDE - Journaux",45.57596,-0.938055,0,0,OYN:SA:CTP635,Europe/Paris,,OYN, +OYN:SP:637,1,"MESCHERS-SUR-GIRONDE - Lys",45.57516,-0.960784,0,0,OYN:SA:CTP638,Europe/Paris,,OYN, +OYN:SP:638,1,"MESCHERS-SUR-GIRONDE - Lys",45.575147,-0.960681,0,0,OYN:SA:CTP638,Europe/Paris,,OYN, +OYN:SP:639,1,"MESCHERS-SUR-GIRONDE - Ombrage",45.575089,-0.977101,0,0,OYN:SA:CTP640,Europe/Paris,,OYN, +OYN:SP:64,1,"SEMUSSAC - Bourg",45.600484,-0.912946,0,0,OYN:SA:CTP64,Europe/Paris,,OYN, +OYN:SP:640,1,"MESCHERS-SUR-GIRONDE - Ombrage",45.575174,-0.977047,0,0,OYN:SA:CTP640,Europe/Paris,,OYN, +OYN:SP:641,1,"MESCHERS-SUR-GIRONDE - Pompiers",45.564177,-0.953392,0,0,OYN:SA:CTP641,Europe/Paris,,OYN, +OYN:SP:642,1,"MESCHERS-SUR-GIRONDE - Pompiers",45.564125,-0.953282,0,0,OYN:SA:CTP641,Europe/Paris,,OYN, +OYN:SP:643,1,"MESCHERS-SUR-GIRONDE - Ribes",45.562042,-0.946805,0,0,OYN:SA:CTP643,Europe/Paris,,OYN, +OYN:SP:644,1,"MESCHERS-SUR-GIRONDE - Foret",45.565597,-0.962444,0,0,OYN:SA:CTP644,Europe/Paris,,OYN, +OYN:SP:645,1,"MESCHERS-SUR-GIRONDE - Foret",45.565437,-0.961999,0,0,OYN:SA:CTP644,Europe/Paris,,OYN, +OYN:SP:647,1,"MESCHERS-SUR-GIRONDE - Suzac",45.57742,-0.983666,0,0,OYN:SA:CTP647,Europe/Paris,,OYN, +OYN:SP:648,1,"MESCHERS-SUR-GIRONDE - Suzac",45.57735,-0.983364,0,0,OYN:SA:CTP647,Europe/Paris,,OYN, +OYN:SP:649,1,"MESCHERS-SUR-GIRONDE - Vergnes",45.564909,-0.96969,0,0,OYN:SA:CTP650,Europe/Paris,,OYN, +OYN:SP:65,1,"SEMUSSAC - Rivière",45.60644,-0.94448,0,0,OYN:SA:CTP2558,Europe/Paris,,OYN, +OYN:SP:650,1,"MESCHERS-SUR-GIRONDE - Vergnes",45.564982,-0.969558,0,0,OYN:SA:CTP650,Europe/Paris,,OYN, +OYN:SP:653,1,"MORNAC-SUR-SEUDRE - Agnoux",45.699977,-1.012237,0,0,OYN:SA:CTP653,Europe/Paris,,OYN, +OYN:SP:654,1,"MORNAC-SUR-SEUDRE - Agnoux",45.700008,-1.012178,0,0,OYN:SA:CTP653,Europe/Paris,,OYN, +OYN:SP:656,1,"MORNAC-SUR-SEUDRE - Coquetterie",45.709462,-1.035704,0,0,OYN:SA:CTP656,Europe/Paris,,OYN, +OYN:SP:657,1,"MORNAC-SUR-SEUDRE - Coquetterie",45.709529,-1.035693,0,0,OYN:SA:CTP656,Europe/Paris,,OYN, +OYN:SP:659,1,"MORNAC-SUR-SEUDRE - Plordonnier",45.703525,-1.020546,0,0,OYN:SA:CTP660,Europe/Paris,,OYN, +OYN:SP:660,1,"MORNAC-SUR-SEUDRE - Plordonnier",45.703481,-1.020543,0,0,OYN:SA:CTP660,Europe/Paris,,OYN, +OYN:SP:661,1,"ST-SULPICE-DE-ROYAN - Sauvages",45.696021,-1.006341,0,0,OYN:SA:CTP662,Europe/Paris,,OYN, +OYN:SP:662,1,"ST-SULPICE-DE-ROYAN - Sauvages",45.696041,-1.006297,0,0,OYN:SA:CTP662,Europe/Paris,,OYN, +OYN:SP:665,1,"MORTAGNE-SUR-GIRONDE - Salle",45.509395,-0.789821,0,0,OYN:SA:CTP666,Europe/Paris,,OYN, +OYN:SP:666,1,"MORTAGNE-SUR-GIRONDE - Salle",45.509637,-0.789584,0,0,OYN:SA:CTP666,Europe/Paris,,OYN, +OYN:SP:674,1,"ROYAN - Cordouan",45.621284,-1.002583,0,0,OYN:SA:CTP53,Europe/Paris,,OYN, +OYN:SP:675,1,"ROYAN - Eglise Parc",45.616938,-1.009535,0,0,OYN:SA:CTP675,Europe/Paris,,OYN, +OYN:SP:676,1,"ROYAN - Eglise Parc",45.616841,-1.009454,0,0,OYN:SA:CTP676,Europe/Paris,,OYN, +OYN:SP:68,1,"ST-GEORGES-DE-DIDONNE - Commerces",45.612993,-0.991123,0,0,OYN:SA:CTP180,Europe/Paris,,OYN, +OYN:SP:681,1,"ROYAN - Marne",45.625143,-1.004738,0,0,OYN:SA:CTP681,Europe/Paris,,OYN, +OYN:SP:682,1,"ROYAN - Marne",45.625242,-1.004608,0,0,OYN:SA:CTP681,Europe/Paris,,OYN, +OYN:SP:684,1,"ROYAN - Regazzoni",45.635433,-1.03659,0,0,OYN:SA:CTP684,Europe/Paris,,OYN, +OYN:SP:685,1,"ROYAN - Regazzoni",45.635551,-1.03655,0,0,OYN:SA:CTP684,Europe/Paris,,OYN, +OYN:SP:686,1,"ROYAN - Roche",45.652082,-1.04282,0,0,OYN:SA:CTP686,Europe/Paris,,OYN, +OYN:SP:687,1,"ROYAN - Stade",45.620912,-1.008438,0,0,OYN:SA:CTP688,Europe/Paris,,OYN, +OYN:SP:688,1,"ROYAN - Stade",45.620652,-1.00798,0,0,OYN:SA:CTP688,Europe/Paris,,OYN, +OYN:SP:689,1,"ROYAN - Ste-Marie",45.629217,-0.99723,0,0,OYN:SA:CTP689,Europe/Paris,,OYN, +OYN:SP:69,1,"ST-PALAIS-SUR-MER - Bertrand",45.654297,-1.07239,0,0,OYN:SA:CTP784,Europe/Paris,,OYN, +OYN:SP:690,1,"ROYAN - Terrier",45.640993,-1.044271,0,0,OYN:SA:CTP690,Europe/Paris,,OYN, +OYN:SP:691,1,"ROYAN - Terrier",45.641049,-1.044162,0,0,OYN:SA:CTP690,Europe/Paris,,OYN, +OYN:SP:7,1,"COZES - Gare",45.586239,-0.83268,0,0,OYN:SA:CTP7,Europe/Paris,,OYN, +OYN:SP:70,1,"ST-PALAIS-SUR-MER - Maine Gaudin",45.65316,-1.102449,0,0,OYN:SA:CTP70,Europe/Paris,,OYN, +OYN:SP:701,1,"SAUJON - Breuil",45.686721,-0.95366,0,0,OYN:SA:CTP702,Europe/Paris,,OYN, +OYN:SP:702,1,"SAUJON - Breuil",45.686724,-0.953592,0,0,OYN:SA:CTP702,Europe/Paris,,OYN, +OYN:SP:703,1,"SAUJON - Chemin Vert",45.670434,-0.942661,0,0,OYN:SA:CTP703,Europe/Paris,,OYN, +OYN:SP:704,1,"SAUJON - Chemin Vert",45.670643,-0.942582,0,0,OYN:SA:CTP703,Europe/Paris,,OYN, +OYN:SP:708,1,"SAUJON - Gare",45.667119,-0.929711,0,0,OYN:SA:CTP708,Europe/Paris,,OYN, +OYN:SP:709,1,"SAUJON - Gare",45.667225,-0.929494,0,0,OYN:SA:CTP708,Europe/Paris,,OYN, +OYN:SP:71,1,"ST-PALAIS-SUR-MER - Myosotis",45.654221,-1.066944,0,0,OYN:SA:CTP71,Europe/Paris,,OYN, +OYN:SP:711,1,"SAUJON - Mairie",45.671547,-0.926873,0,0,OYN:SA:CTP711,Europe/Paris,,OYN, +OYN:SP:712,1,"SAUJON - Mairie",45.671984,-0.927294,0,0,OYN:SA:CTP711,Europe/Paris,,OYN, +OYN:SP:714,1,"SAUJON - Berlan",45.667821,-0.920584,0,0,OYN:SA:CTP714,Europe/Paris,,OYN, +OYN:SP:715,1,"SAUJON - Berlan",45.667616,-0.920491,0,0,OYN:SA:CTP714,Europe/Paris,,OYN, +OYN:SP:716,1,"SAUJON - Brûlot",45.674221,-0.943527,0,0,OYN:SA:CTP716,Europe/Paris,,OYN, +OYN:SP:717,1,"SAUJON - Brûlot",45.67426,-0.943477,0,0,OYN:SA:CTP716,Europe/Paris,,OYN, +OYN:SP:719,1,"SEMUSSAC - Bardecille",45.575532,-0.893032,0,0,OYN:SA:CTP720,Europe/Paris,,OYN, +OYN:SP:72,1,"ST-PALAIS-SUR-MER - Terre Nègre",45.647052,-1.10574,0,0,OYN:SA:CTP795,Europe/Paris,,OYN, +OYN:SP:720,1,"SEMUSSAC - Bardecille",45.575573,-0.892965,0,0,OYN:SA:CTP720,Europe/Paris,,OYN, +OYN:SP:724,1,"SEMUSSAC - Lignou",45.596785,-0.908727,0,0,OYN:SA:CTP724,Europe/Paris,,OYN, +OYN:SP:725,1,"SEMUSSAC - Lignou",45.596819,-0.90864,0,0,OYN:SA:CTP724,Europe/Paris,,OYN, +OYN:SP:726,1,"SEMUSSAC - Trignac",45.614843,-0.919683,0,0,OYN:SA:CTP726,Europe/Paris,,OYN, +OYN:SP:727,1,"SEMUSSAC - Trignac",45.614642,-0.919495,0,0,OYN:SA:CTP726,Europe/Paris,,OYN, +OYN:SP:728,1,"ST-AUGUSTIN - Bourg",45.687843,-1.111698,0,0,OYN:SA:CTP728,Europe/Paris,,OYN, +OYN:SP:729,1,"ST-AUGUSTIN - Bourg",45.68696,-1.111191,0,0,OYN:SA:CTP728,Europe/Paris,,OYN, +OYN:SP:730,1,"ST-AUGUSTIN - Breuils",45.672238,-1.086039,0,0,OYN:SA:CTP730,Europe/Paris,,OYN, +OYN:SP:731,1,"ST-AUGUSTIN - Breuils",45.672464,-1.086052,0,0,OYN:SA:CTP730,Europe/Paris,,OYN, +OYN:SP:733,1,"ST-AUGUSTIN - Lafont",45.66934,-1.083613,0,0,OYN:SA:CTP734,Europe/Paris,,OYN, +OYN:SP:734,1,"ST-AUGUSTIN - Lafont",45.669019,-1.083394,0,0,OYN:SA:CTP734,Europe/Paris,,OYN, +OYN:SP:735,1,"ST-AUGUSTIN - Mairie",45.677437,-1.099216,0,0,OYN:SA:CTP736,Europe/Paris,,OYN, +OYN:SP:736,1,"ST-AUGUSTIN - Mairie",45.677808,-1.099695,0,0,OYN:SA:CTP736,Europe/Paris,,OYN, +OYN:SP:737,1,"ST-AUGUSTIN - Temple",45.67583,-1.095331,0,0,OYN:SA:CTP738,Europe/Paris,,OYN, +OYN:SP:738,1,"ST-AUGUSTIN - Temple",45.675714,-1.095248,0,0,OYN:SA:CTP738,Europe/Paris,,OYN, +OYN:SP:739,1,"ST-AUGUSTIN - Yeuse",45.68345,-1.107148,0,0,OYN:SA:CTP739,Europe/Paris,,OYN, +OYN:SP:740,1,"ST-AUGUSTIN - Yeuse",45.683012,-1.106586,0,0,OYN:SA:CTP739,Europe/Paris,,OYN, +OYN:SP:742,1,"ST-GEORGES-DE-DIDONNE - Didonne",45.603614,-0.98677,0,0,OYN:SA:CTP742,Europe/Paris,,OYN, +OYN:SP:743,1,"ST-GEORGES-DE-DIDONNE - Didonne",45.603689,-0.986767,0,0,OYN:SA:CTP742,Europe/Paris,,OYN, +OYN:SP:746,1,"ST-GEORGES-DE-DIDONNE - Brandes",45.605526,-0.971443,0,0,OYN:SA:CTP746,Europe/Paris,,OYN, +OYN:SP:747,1,"ST-GEORGES-DE-DIDONNE - Brandes",45.605433,-0.971364,0,0,OYN:SA:CTP746,Europe/Paris,,OYN, +OYN:SP:748,1,"ST-GEORGES-DE-DIDONNE - Châta",45.600403,-0.984124,0,0,OYN:SA:CTP748,Europe/Paris,,OYN, +OYN:SP:749,1,"ST-GEORGES-DE-DIDONNE - Châta",45.600253,-0.983997,0,0,OYN:SA:CTP748,Europe/Paris,,OYN, +OYN:SP:75,1,"ST-SULPICE-DE-ROYAN - Aubat",45.667027,-0.984913,0,0,OYN:SA:CTP75,Europe/Paris,,OYN, +OYN:SP:750,1,"ST-GEORGES-DE-DIDONNE - Oeillet",45.584858,-0.98572,0,0,OYN:SA:CTP751,Europe/Paris,,OYN, +OYN:SP:751,1,"ST-GEORGES-DE-DIDONNE - Oeillet",45.584991,-0.985563,0,0,OYN:SA:CTP751,Europe/Paris,,OYN, +OYN:SP:753,1,"ST-GEORGES-DE-DIDONNE - Oliviers",45.58928,-0.986988,0,0,OYN:SA:CTP754,Europe/Paris,,OYN, +OYN:SP:754,1,"ST-GEORGES-DE-DIDONNE - Oliviers",45.589366,-0.98683,0,0,OYN:SA:CTP754,Europe/Paris,,OYN, +OYN:SP:755,1,"ST-GEORGES-DE-DIDONNE - Parc Estuaire",45.579722,-0.98616,0,0,OYN:SA:CTP756,Europe/Paris,,OYN, +OYN:SP:756,1,"ST-GEORGES-DE-DIDONNE - Parc Estuaire",45.579656,-0.986022,0,0,OYN:SA:CTP756,Europe/Paris,,OYN, +OYN:SP:757,1,"ST-GEORGES-DE-DIDONNE - Perrasses",45.606741,-0.986358,0,0,OYN:SA:CTP758,Europe/Paris,,OYN, +OYN:SP:758,1,"ST-GEORGES-DE-DIDONNE - Perrasses",45.606793,-0.986321,0,0,OYN:SA:CTP758,Europe/Paris,,OYN, +OYN:SP:76,1,"ST-SULPICE-DE-ROYAN - Breuille",45.678134,-1.003328,0,0,OYN:SA:CTP179,Europe/Paris,,OYN, +OYN:SP:762,1,"ST-GEORGES-DE-DIDONNE - Rte de Médis",45.606187,-0.976689,0,0,OYN:SA:CTP762,Europe/Paris,,OYN, +OYN:SP:763,1,"ST-GEORGES-DE-DIDONNE - Rte de Médis",45.606105,-0.976678,0,0,OYN:SA:CTP762,Europe/Paris,,OYN, +OYN:SP:764,1,"ST-GEORGES-DE-DIDONNE - Tourtet",45.608016,-0.993232,0,0,OYN:SA:CTP764,Europe/Paris,,OYN, +OYN:SP:765,1,"ST-GEORGES-DE-DIDONNE - Tourtet",45.607865,-0.993216,0,0,OYN:SA:CTP764,Europe/Paris,,OYN, +OYN:SP:768,1,"ST-PALAIS-SUR-MER - Auture",45.647434,-1.11017,0,0,OYN:SA:CTP769,Europe/Paris,,OYN, +OYN:SP:769,1,"ST-PALAIS-SUR-MER - Auture",45.647465,-1.109948,0,0,OYN:SA:CTP769,Europe/Paris,,OYN, +OYN:SP:770,1,"ST-PALAIS-SUR-MER - Bernezac",45.650278,-1.069507,0,0,OYN:SA:CTP770,Europe/Paris,,OYN, +OYN:SP:771,1,"ST-PALAIS-SUR-MER - Châtenet",45.66308,-1.071885,0,0,OYN:SA:CTP771,Europe/Paris,,OYN, +OYN:SP:772,1,"ST-PALAIS-SUR-MER - Clématites",45.65762,-1.07672,0,0,OYN:SA:CTP772,Europe/Paris,,OYN, +OYN:SP:773,1,"ST-PALAIS-SUR-MER - Clématites",45.65753,-1.0766,0,0,OYN:SA:CTP772,Europe/Paris,,OYN, +OYN:SP:774,1,"ST-PALAIS-SUR-MER - Clocher",45.641607,-1.085694,0,0,OYN:SA:CTP774,Europe/Paris,,OYN, +OYN:SP:775,1,"ST-PALAIS-SUR-MER - Clocher",45.64114,-1.085261,0,0,OYN:SA:CTP774,Europe/Paris,,OYN, +OYN:SP:778,1,"ST-PALAIS-SUR-MER - Gois",45.664546,-1.072571,0,0,OYN:SA:CTP779,Europe/Paris,,OYN, +OYN:SP:779,1,"ST-PALAIS-SUR-MER - Gois",45.664051,-1.072366,0,0,OYN:SA:CTP779,Europe/Paris,,OYN, +OYN:SP:78,1,"ST-SULPICE-DE-ROYAN - Crèche",45.681887,-0.990379,0,0,OYN:SA:CTP181,Europe/Paris,,OYN, +OYN:SP:780,1,"ST-PALAIS-SUR-MER - Grande Côte",45.652365,-1.121785,0,0,OYN:SA:CTP781,Europe/Paris,,OYN, +OYN:SP:781,1,"ST-PALAIS-SUR-MER - Grande Côte",45.652074,-1.121654,0,0,OYN:SA:CTP781,Europe/Paris,,OYN, +OYN:SP:784,1,"ST-PALAIS-SUR-MER - Bertrand",45.654344,-1.072529,0,0,OYN:SA:CTP784,Europe/Paris,,OYN, +OYN:SP:785,1,"ST-PALAIS-SUR-MER - Maine Gaudin",45.653099,-1.102475,0,0,OYN:SA:CTP70,Europe/Paris,,OYN, +OYN:SP:786,1,"ST-PALAIS-SUR-MER - Nauzan",45.639307,-1.079164,0,0,OYN:SA:CTP787,Europe/Paris,,OYN, +OYN:SP:787,1,"ST-PALAIS-SUR-MER - Nauzan",45.639361,-1.078754,0,0,OYN:SA:CTP787,Europe/Paris,,OYN, +OYN:SP:788,1,"ST-PALAIS-SUR-MER - Peupliers",45.645329,-1.074583,0,0,OYN:SA:CTP788,Europe/Paris,,OYN, +OYN:SP:79,1,"THAIMS - Bourg",45.622235,-0.787569,0,0,OYN:SA:CTP826,Europe/Paris,,OYN, +OYN:SP:790,1,"ST-PALAIS-SUR-MER - Pin",45.655884,-1.070663,0,0,OYN:SA:CTP791,Europe/Paris,,OYN, +OYN:SP:791,1,"ST-PALAIS-SUR-MER - Pin",45.655951,-1.070506,0,0,OYN:SA:CTP791,Europe/Paris,,OYN, +OYN:SP:792,1,"ST-PALAIS-SUR-MER - Guerets",45.65262,-1.062804,0,0,OYN:SA:CTP792,Europe/Paris,,OYN, +OYN:SP:793,1,"VAUX-SUR-MER - Guerets",45.652594,-1.062691,0,0,OYN:SA:CTP793,Europe/Paris,,OYN, +OYN:SP:795,1,"ST-PALAIS-SUR-MER - Terre Nègre",45.64691,-1.105494,0,0,OYN:SA:CTP795,Europe/Paris,,OYN, +OYN:SP:800,1,"ST-SULPICE-DE-ROYAN - Ardiller",45.669108,-1.018879,0,0,OYN:SA:CTP800,Europe/Paris,,OYN, +OYN:SP:801,1,"ST-SULPICE-DE-ROYAN - Ardiller",45.669093,-1.018833,0,0,OYN:SA:CTP800,Europe/Paris,,OYN, +OYN:SP:802,1,"ST-SULPICE-DE-ROYAN - Boissirand",45.662491,-1.042978,0,0,OYN:SA:CTP802,Europe/Paris,,OYN, +OYN:SP:803,1,"ST-SULPICE-DE-ROYAN - Boissirand",45.662487,-1.042932,0,0,OYN:SA:CTP802,Europe/Paris,,OYN, +OYN:SP:804,1,"ST-SULPICE-DE-ROYAN - Capucines",45.667462,-1.015624,0,0,OYN:SA:CTP804,Europe/Paris,,OYN, +OYN:SP:805,1,"ST-SULPICE-DE-ROYAN - Capucines",45.667392,-1.015515,0,0,OYN:SA:CTP804,Europe/Paris,,OYN, +OYN:SP:806,1,"ST-SULPICE-DE-ROYAN - Champagnole",45.668515,-1.04062,0,0,OYN:SA:CTP806,Europe/Paris,,OYN, +OYN:SP:807,1,"ST-SULPICE-DE-ROYAN - Champagnole",45.668516,-1.040561,0,0,OYN:SA:CTP806,Europe/Paris,,OYN, +OYN:SP:809,1,"ST-SULPICE-DE-ROYAN - Grolier",45.685086,-0.992355,0,0,OYN:SA:CTP809,Europe/Paris,,OYN, +OYN:SP:810,1,"ST-SULPICE-DE-ROYAN - Grolier",45.685137,-0.992282,0,0,OYN:SA:CTP809,Europe/Paris,,OYN, +OYN:SP:811,1,"ST-SULPICE-DE-ROYAN - Lande",45.670428,-1.023772,0,0,OYN:SA:CTP812,Europe/Paris,,OYN, +OYN:SP:812,1,"ST-SULPICE-DE-ROYAN - Lande",45.670546,-1.023822,0,0,OYN:SA:CTP812,Europe/Paris,,OYN, +OYN:SP:813,1,"ST-SULPICE-DE-ROYAN - Maries",45.665755,-0.9922,0,0,OYN:SA:CTP813,Europe/Paris,,OYN, +OYN:SP:816,1,"ST-SULPICE-DE-ROYAN - Messe",45.671837,-1.014609,0,0,OYN:SA:CTP816,Europe/Paris,,OYN, +OYN:SP:817,1,"ST-SULPICE-DE-ROYAN - Messe",45.671823,-1.014536,0,0,OYN:SA:CTP816,Europe/Paris,,OYN, +OYN:SP:818,1,"ST-SULPICE-DE-ROYAN - Métairies",45.692179,-1.001819,0,0,OYN:SA:CTP818,Europe/Paris,,OYN, +OYN:SP:819,1,"ST-SULPICE-DE-ROYAN - Métairies",45.692203,-1.00177,0,0,OYN:SA:CTP818,Europe/Paris,,OYN, +OYN:SP:820,1,"ST-SULPICE-DE-ROYAN - Petit Aubat",45.67407,-0.981265,0,0,OYN:SA:CTP820,Europe/Paris,,OYN, +OYN:SP:821,1,"ST-SULPICE-DE-ROYAN - Petit Aubat",45.674133,-0.981139,0,0,OYN:SA:CTP820,Europe/Paris,,OYN, +OYN:SP:822,1,"ST-SULPICE-DE-ROYAN - Rigaleau",45.662888,-1.026288,0,0,OYN:SA:CTP822,Europe/Paris,,OYN, +OYN:SP:823,1,"ST-SULPICE-DE-ROYAN - Rigaleau",45.662915,-1.026209,0,0,OYN:SA:CTP822,Europe/Paris,,OYN, +OYN:SP:824,1,"TALMONT-SUR-GIRONDE - Caillaud",45.533446,-0.90157,0,0,OYN:SA:CTP824,Europe/Paris,,OYN, +OYN:SP:825,1,"TALMONT-SUR-GIRONDE - Caillaud",45.533481,-0.901537,0,0,OYN:SA:CTP824,Europe/Paris,,OYN, +OYN:SP:826,1,"THAIMS - Bourg",45.622183,-0.787616,0,0,OYN:SA:CTP826,Europe/Paris,,OYN, +OYN:SP:827,1,"THAIMS - Pierre",45.620065,-0.795416,0,0,OYN:SA:CTP827,Europe/Paris,,OYN, +OYN:SP:828,1,"THAIMS - Pierre",45.62003,-0.79533,0,0,OYN:SA:CTP827,Europe/Paris,,OYN, +OYN:SP:829,1,"GREZAC - Roc",45.609337,-0.805569,0,0,OYN:SA:CTP829,Europe/Paris,,OYN, +OYN:SP:830,1,"GREZAC - Roc",45.609299,-0.805471,0,0,OYN:SA:CTP829,Europe/Paris,,OYN, +OYN:SP:833,1,"VAUX-SUR-MER - Chantemerle",45.651271,-1.043586,0,0,OYN:SA:CTP834,Europe/Paris,,OYN, +OYN:SP:834,1,"VAUX-SUR-MER - Chantemerle",45.651262,-1.043533,0,0,OYN:SA:CTP834,Europe/Paris,,OYN, +OYN:SP:835,1,"VAUX-SUR-MER - Conseil",45.634637,-1.06734,0,0,OYN:SA:CTP835,Europe/Paris,,OYN, +OYN:SP:836,1,"VAUX-SUR-MER - Conseil",45.634663,-1.067245,0,0,OYN:SA:CTP835,Europe/Paris,,OYN, +OYN:SP:837,1,"VAUX-SUR-MER - Côte Beauté",45.629927,-1.060275,0,0,OYN:SA:CTP837,Europe/Paris,,OYN, +OYN:SP:838,1,"VAUX-SUR-MER - Côte Beauté",45.629976,-1.060193,0,0,OYN:SA:CTP837,Europe/Paris,,OYN, +OYN:SP:84,1,"LA TREMBLADE - Sablière",45.771839,-1.146109,0,0,OYN:SA:CTP84,Europe/Paris,,OYN, +OYN:SP:840,1,"VAUX-SUR-MER - Fées",45.637162,-1.071281,0,0,OYN:SA:CTP840,Europe/Paris,,OYN, +OYN:SP:841,1,"VAUX-SUR-MER - Fées",45.637255,-1.071241,0,0,OYN:SA:CTP840,Europe/Paris,,OYN, +OYN:SP:844,1,"VAUX-SUR-MER - Source",45.643742,-1.050853,0,0,OYN:SA:CTP845,Europe/Paris,,OYN, +OYN:SP:845,1,"VAUX-SUR-MER - Source",45.643588,-1.050773,0,0,OYN:SA:CTP845,Europe/Paris,,OYN, +OYN:SP:846,1,"VAUX-SUR-MER - St-Sordelin",45.632446,-1.064115,0,0,OYN:SA:CTP847,Europe/Paris,,OYN, +OYN:SP:847,1,"VAUX-SUR-MER - St-Sordelin",45.632236,-1.063948,0,0,OYN:SA:CTP847,Europe/Paris,,OYN, +OYN:SP:849,1,"MEDIS - Piaudrie",45.632666,-0.953342,0,0,OYN:SA:CTP849,Europe/Paris,,OYN, +OYN:SP:851,1,"LE CHAY - Grande Gorce",45.645632,-0.902044,0,0,OYN:SA:CTP851,Europe/Paris,,OYN, +OYN:SP:852,1,"LE CHAY - Grande Gorce",45.645411,-0.901864,0,0,OYN:SA:CTP851,Europe/Paris,,OYN, +OYN:SP:86,1,"ST-PALAIS-SUR-MER - Narcisses",45.657187,-1.060859,0,0,OYN:SA:CTP86,Europe/Paris,,OYN, +OYN:SP:87,1,"L'EGUILLE - Fêtes",45.70487,-0.97891,0,0,OYN:SA:CTP183,Europe/Paris,,OYN, +OYN:SP:89,1,"ST-PALAIS-SUR-MER - Vallet",45.644797,-1.091116,0,0,OYN:SA:CTP166,Europe/Paris,,OYN, +OYN:SP:90,1,"ST-PALAIS-SUR-MER - Palud",45.65283,-1.096219,0,0,OYN:SA:CTP162,Europe/Paris,,OYN, +OYN:SP:92,1,"SEMUSSAC - Valade",45.611037,-0.92098,0,0,OYN:SA:CTP186,Europe/Paris,,OYN, +OYN:SP:93,1,"EPARGNES - Eglise",45.541559,-0.803297,0,0,OYN:SA:CTP191,Europe/Paris,,OYN, +OYN:SP:95,1,"MORNAC-SUR-SEUDRE - Poste",45.708149,-1.02816,0,0,OYN:SA:CTP178,Europe/Paris,,OYN, +OYN:SP:96,1,"ST-PALAIS-SUR-MER - Bernezac",45.650323,-1.069368,0,0,OYN:SA:CTP770,Europe/Paris,,OYN, +OYN:SP:97,1,"ETAULES - Ile",45.715968,-1.107716,0,0,OYN:SA:CTP161,Europe/Paris,,OYN, +SIN:SP:OCECarTER-87003707,1,"Ydes",45.344039,2.436246,-1,0,SIN:SA:OCE87003707,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87110171,1,"Landeyrat",45.277543,2.870006,-1,0,SIN:SA:OCE87110171,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87110189,1,"Marcenat",45.304939,2.828226,-1,0,SIN:SA:OCE87110189,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87110197,1,"vely",45.334816,2.759806,-1,0,SIN:SA:OCE87110197,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87110205,1,"St-Amandin",45.343141,2.694491,-1,0,SIN:SA:OCE87110205,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87110213,1,"Vebret",45.339542,2.520261,-1,0,SIN:SA:OCE87110213,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87110221,1,"Antignac (Cantal)",45.341011,2.544783,-1,0,SIN:SA:OCE87110221,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87130807,1,"Foix-Centre",42.964038,1.607974,-1,0,SIN:SA:OCE87130807,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87130823,1,"Les-cabannes-09-Centre",42.784943,1.688417,-1,0,SIN:SA:OCE87130823,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87130831,1,"Pamiers-Centre",43.116012,1.610783,-1,0,SIN:SA:OCE87130831,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87130849,1,"Mérens-les-Vals-Village",42.656118,1.836418,-1,0,SIN:SA:OCE87130849,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87130880,1,"Vernet-Ariège-Abri-Bus",43.184272,1.609749,-1,0,SIN:SA:OCE87130880,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87130898,1,"Varilhes-Centre",43.044978,1.627614,-1,0,SIN:SA:OCE87130898,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87137158,1,"Tarascon-Ariège-Mitter.",42.846536,1.604316,-1,0,SIN:SA:OCE87137158,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87138776,1,"Place de la Liberté",44.353685,2.038845,-1,0,SIN:SA:OCE87138776,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87138800,1,"Villefranche-Rouerg-Far",44.375359,2.036386,-1,0,SIN:SA:OCE87138800,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87139071,1,"Le-Bruel-Bel-Air",44.433872,2.176453,-1,0,SIN:SA:OCE87139071,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87139089,1,"Albias-Abri-Bus",44.09051,1.447144,-1,0,SIN:SA:OCE87139089,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87139105,1,"Réalville-Place",44.113294,1.480708,-1,0,SIN:SA:OCE87139105,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87146522,1,"Decazeville-Place-Wilso",44.560029,2.250874,-1,0,SIN:SA:OCE87146522,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87146597,1,"Maleville-Barbet",44.404942,2.089365,-1,0,SIN:SA:OCE87146597,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87152413,1,"Maussac Pl de la Poste",45.471312,2.140154,-1,0,SIN:SA:OCE87152413,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87157016,1,"Montbazens",27.140973,-3.404561,-1,0,SIN:SA:OCE87157016,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87157024,1,"Lanuéjouls",44.424792,2.160366,-1,0,SIN:SA:OCE87157024,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87158006,1,"Gouzon-Champ-de-Foire",46.191172,2.239924,-1,0,SIN:SA:OCE87158006,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87165472,1,"Assier-Ville",44.67555,1.876936,-1,0,SIN:SA:OCE87165472,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87165498,1,"Cambes-Village",44.614695,1.941021,-1,0,SIN:SA:OCE87165498,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87165506,1,"Figeac-Lycée-Champollio",44.607996,2.02819,-1,0,SIN:SA:OCE87165506,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87165514,1,"Ceint-d'Eau-Village",44.593435,1.986319,-1,0,SIN:SA:OCE87165514,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87165522,1,"Gramat-Ville",44.779987,1.726126,-1,0,SIN:SA:OCE87165522,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87165530,1,"L'Hôpital-Village",44.750217,1.726451,-1,0,SIN:SA:OCE87165530,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87165548,1,"Bourg (le)",44.709843,1.903179,-1,0,SIN:SA:OCE87165548,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87165613,1,"Livernon-Gendarmerie",44.64734,1.842647,-1,0,SIN:SA:OCE87165613,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87165621,1,"Rudelle-Mairie",44.721337,1.880875,-1,0,SIN:SA:OCE87165621,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87165654,1,"Thémines",44.740865,1.822009,-1,0,SIN:SA:OCE87165654,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87165738,1,"Labruguière-Abri-Bus",43.539193,2.264472,-1,0,SIN:SA:OCE87165738,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87165803,1,"Lavaur-Centre",43.700281,1.820566,-1,0,SIN:SA:OCE87165803,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87165845,1,"Mazamet-Gare-Routière",43.491002,2.37637,-1,0,SIN:SA:OCE87165845,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87165852,1,"Montastruc-Conseill-N88",43.72296,1.586772,-1,0,SIN:SA:OCE87165852,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87165944,1,"St-Paul-Cap-Joux-Centre",43.648518,1.976097,-1,0,SIN:SA:OCE87165944,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87170068,1,"Anos-31",42.897364,0.625133,-1,0,SIN:SA:OCE87170068,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87170357,1,"Bagiry",42.97584,0.625277,-1,0,SIN:SA:OCE87170357,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87170555,1,"Bertren-Abri",42.998808,0.617581,-1,0,SIN:SA:OCE87170555,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87170571,1,"Bertren-Nord",43.003106,0.613804,-1,0,SIN:SA:OCE87170571,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87170696,1,"Bertren-Sud",42.994531,0.620903,-1,0,SIN:SA:OCE87170696,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87170761,1,"Cazaux-Layrisse",42.868775,0.607281,-1,0,SIN:SA:OCE87170761,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87170787,1,"Chaum-Pont",42.937917,0.644683,-1,0,SIN:SA:OCE87170787,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87170795,1,"Cierp",42.914637,0.63951,-1,0,SIN:SA:OCE87170795,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87170811,1,"Gaud",42.914303,0.647954,-1,0,SIN:SA:OCE87170811,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87170878,1,"Estenos",42.946528,0.640921,-1,0,SIN:SA:OCE87170878,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87173377,1,"Gouaux-de-Luchon",42.946528,0.640921,-1,0,SIN:SA:OCE87173377,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87173468,1,"Loures-Barousse",43.024256,0.60422,-1,0,SIN:SA:OCE87173468,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87173500,1,"Luscan-Pont",43.015174,0.621122,-1,0,SIN:SA:OCE87173500,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87173542,1,"Moustajon",42.814447,0.597215,-1,0,SIN:SA:OCE87173542,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87173633,1,"Salechan-Emb",42.957983,0.633489,-1,0,SIN:SA:OCE87173633,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87173823,1,"Pratviel-la-Ferme",42.84415,0.603402,-1,0,SIN:SA:OCE87173823,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87173906,1,"Siradan",42.965883,0.629169,-1,0,SIN:SA:OCE87173906,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87176115,1,"Bordes-Pn-147",43.198013,0.222663,-1,0,SIN:SA:OCE87176115,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87176131,1,"Bordes-Larrimaret",43.200259,0.221278,-1,0,SIN:SA:OCE87176131,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87176222,1,"Lannemezan-Hôtel-Pyréné",43.124777,0.380747,-1,0,SIN:SA:OCE87176222,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87176297,1,"Lhez",43.200586,0.196042,-1,0,SIN:SA:OCE87176297,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87176305,1,"Mascaras-D5-N117",43.195202,0.174928,-1,0,SIN:SA:OCE87176305,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87176313,1,"Péré",43.136932,0.310727,-1,0,SIN:SA:OCE87176313,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87176891,1,"Tournay-N117/D28",43.183871,0.240808,-1,0,SIN:SA:OCE87176891,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87176909,1,"Tournay-Centre",43.184163,0.245649,-1,0,SIN:SA:OCE87176909,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87176925,1,"Tournay-Village-Retrait",43.184846,0.243364,-1,0,SIN:SA:OCE87176925,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87176941,1,"Courbassil",42.492763,1.850478,-1,0,SIN:SA:OCE87176941,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87176966,1,"Ruites",42.475399,1.872722,-1,0,SIN:SA:OCE87176966,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87176974,1,"Gourdan-Polignan-Lycée",43.073697,0.584934,-1,0,SIN:SA:OCE87176974,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87176990,1,"Lanespède",43.167313,0.266166,-1,0,SIN:SA:OCE87176990,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87201541,1,"Châteauroux Gare Rout.",46.809648,1.698686,-1,0,SIN:SA:OCE87201541,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87201582,1,"St-Gaultier-Gendarmerie",46.634292,1.418469,-1,0,SIN:SA:OCE87201582,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87201608,1,"Le-Blanc-Pl-du-Bateau",46.630748,1.063564,-1,0,SIN:SA:OCE87201608,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87202440,1,"St-Savin",46.565795,0.863838,-1,0,SIN:SA:OCE87202440,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87202465,1,"Chauvigny",46.569697,0.644031,-1,0,SIN:SA:OCE87202465,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87202481,1,"Poitiers-Gare-Routière",46.582767,0.334016,-1,0,SIN:SA:OCE87202481,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87333005,1,"Pouzauges (centre)",46.780272,-0.839449,-1,0,SIN:SA:OCE87333005,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87344440,1,"Ste Gemme",46.90166,-0.287785,-1,0,SIN:SA:OCE87344440,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87344598,1,"St-Angel",45.503939,2.23159,-1,0,SIN:SA:OCE87344598,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87361980,1,"Rosiers-d'Egletons",45.376396,2.0081,-1,0,SIN:SA:OCE87361980,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87395947,1,"Mauriac-Lycée-Cortat",45.213365,2.341224,-1,0,SIN:SA:OCE87395947,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87407536,1,"Bourg-Lastice-Pl.-Poste",45.648355,2.561512,-1,0,SIN:SA:OCE87407536,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87407650,1,"Feniers",45.324249,2.770679,-1,0,SIN:SA:OCE87407650,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87408831,1,"Quatre-Routes-de-Saigne",45.353969,2.463645,-1,0,SIN:SA:OCE87408831,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87408963,1,"Riom-es-Montagne-Cliniq",45.281652,2.6596,-1,0,SIN:SA:OCE87408963,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87417808,1,"Ajain",46.207141,1.997206,-1,0,SIN:SA:OCE87417808,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87417865,1,"Eyrein",45.341918,1.932557,-1,0,SIN:SA:OCE87417865,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87417881,1,"Maussac-le-Poteau",45.468321,2.143208,-1,0,SIN:SA:OCE87417881,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87417907,1,"Ussel-Place-Henri-Queui",45.549722,2.307317,-1,0,SIN:SA:OCE87417907,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87439943,1,"Capens-la-Girouette",43.342765,1.254002,-1,0,SIN:SA:OCE87439943,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87439968,1,"Capvern-le-Laca",43.123364,0.296212,-1,0,SIN:SA:OCE87439968,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87439976,1,"Capvern-Mairie",43.102237,0.31575,-1,0,SIN:SA:OCE87439976,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87439992,1,"Decazeville-Lycée-Polyv",44.567549,2.252221,-1,0,SIN:SA:OCE87439992,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87440016,1,"Fouillade (la)",27.140973,-3.404561,-1,0,SIN:SA:OCE87440016,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87440099,1,"Le-Rouziet-ParcAventure",42.938321,0.645222,-1,0,SIN:SA:OCE87440099,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87440107,1,"Loupiac-Café",44.539791,2.025471,-1,0,SIN:SA:OCE87440107,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87440313,1,"Rémy-12 (st)",44.399046,2.040022,-1,0,SIN:SA:OCE87440313,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87440339,1,"Tarbes-Gare-Routière",43.23038,0.079515,-1,0,SIN:SA:OCE87440339,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87440362,1,"Aubin-Cerons-Croist",44.542686,2.246034,-1,0,SIN:SA:OCE87440362,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87445890,1,"CAPVERN LES BAINS",43.120855,0.308422,-1,0,SIN:SA:OCE87445890,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87446948,1,"Portet-sur-Garonne-RN20",43.525873,1.401716,-1,0,SIN:SA:OCE87611400,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87450064,1,"Meymac-Bourg",27.140973,-3.404561,-1,0,SIN:SA:OCE87450064,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87455006,1,"Montgaillard (Ariège)",42.933608,1.634166,-1,0,SIN:SA:OCE87455006,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87485250,1,"Gare de Mauzé",46.199688,-0.673597,-1,0,SIN:SA:OCE87485250,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87485268,1,"Gare de Prin-Deyrançon",46.21901,-0.636465,-1,0,SIN:SA:OCE87485268,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87485300,1,"Gare de Niort",46.319345,-0.454391,-1,0,SIN:SA:OCE87485300,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87485326,1,"Gare de Fors",46.234539,-0.406926,-1,0,SIN:SA:OCE87485326,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87485334,1,"Gare de Marigny (Deux-Sèvres)",46.199027,-0.428631,-1,0,SIN:SA:OCE87485334,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87485342,1,"Gare de Beauvoir-sur-Niort",46.176702,-0.469165,-1,0,SIN:SA:OCE87485342,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87485359,1,"Gare de Prissé-la-Charrière",46.152755,-0.493673,-1,0,SIN:SA:OCE87485359,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87486019,1,"Gare de La Roche-sur-Yon",46.672025,-1.43568,-1,0,SIN:SA:OCE87486019,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87486332,1,"Gare de Chantonnay",46.690119,-1.054358,-1,0,SIN:SA:OCE87486332,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87487009,1,"Gare de Thouars",46.985249,-0.210513,-1,0,SIN:SA:OCE87487009,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87487173,1,"Parthenay",46.648205,-0.240706,-1,0,SIN:SA:OCE87487173,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87487231,1,"Noirterre",46.869564,-0.396173,-1,0,SIN:SA:OCE87487231,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87487249,1,"Gare de Bressuire",46.837167,-0.496485,-1,0,SIN:SA:OCE87487249,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87487280,1,"Gare de Cerizay",46.817312,-0.667487,-1,0,SIN:SA:OCE87487280,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87487298,1,"St-Mesmin-le-Vieux",46.790413,-0.732186,-1,0,SIN:SA:OCE87487298,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87487603,1,"Gare de Saumur",47.268972,-0.07143,-1,0,SIN:SA:OCE87487603,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87487611,1,"Brion-près-Thouet",47.04872,-0.18491,-1,0,SIN:SA:OCE87487611,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87487637,1,"Gare de Montreuil-Bellay",47.125325,-0.148041,-1,0,SIN:SA:OCE87487637,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87489088,1,"Chiché",46.796383,-0.358058,-1,0,SIN:SA:OCE87489088,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87491001,1,"Gare de Saintes",45.747843,-0.617576,-1,0,SIN:SA:OCE87491001,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87491100,1,"Gare de Pons",45.578088,-0.539001,-1,0,SIN:SA:OCE87491100,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87491142,1,"Gare de Jonzac",45.438714,-0.442003,-1,0,SIN:SA:OCE87491142,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87491357,1,"Gare de St-Jean-d'Angély",45.940883,-0.509803,-1,0,SIN:SA:OCE87491357,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87491779,1,"Barbezieux",45.473054,-0.151673,-1,0,SIN:SA:OCE87491779,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87491803,1,"Gare de Royan",45.625515,-1.017198,-1,0,SIN:SA:OCE87491803,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87491811,1,"Gare de Saujon",45.667047,-0.930584,-1,0,SIN:SA:OCE87491811,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87517953,1,"Le Baladou",44.920852,1.555894,-1,0,SIN:SA:OCE87517953,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87519009,1,"Ayron",46.659721,0.078881,-1,0,SIN:SA:OCE87519009,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87534073,1,"Rochefort-Montagne",45.687115,2.805446,-1,0,SIN:SA:OCE87534073,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87534081,1,"Lanobre",45.436974,2.533923,-1,0,SIN:SA:OCE87534081,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87534099,1,"Bort-les-Orgues-Ville",45.399326,2.499248,-1,0,SIN:SA:OCE87534099,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87534107,1,"Tauves",45.560312,2.622102,-1,0,SIN:SA:OCE87534107,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87551945,1,"Toulouse-Argoulets",27.140973,-3.404561,-1,0,STE:SA:OCE87551945,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87571687,1,"Gare de Chinon",47.163053,0.252044,-1,0,SIN:SA:OCE87571687,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87571703,1,"La Roche-Clermault",47.140127,0.194878,-1,0,SIN:SA:OCE87571703,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87571711,1,"Beuxes",47.094612,0.176771,-1,0,SIN:SA:OCE87571711,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87571729,1,"Basses-Sammarçolles",47.035547,0.122767,-1,0,SIN:SA:OCE87571729,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87575001,1,"Gare de Poitiers",46.582183,0.333084,-1,0,SIN:SA:OCE87575001,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87575084,1,"Loudun",47.016026,0.083345,-1,0,SIN:SA:OCE87575084,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87575100,1,"Arçay",46.971648,0.011179,-1,0,SIN:SA:OCE87575100,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87575142,1,"Gare de Chatellerault",46.818565,0.549218,-1,0,SIN:SA:OCE87575142,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87575175,1,"Gare de Naintré-les-Barres",46.759517,0.496071,-1,0,SIN:SA:OCE87575175,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87575183,1,"Gare de La Tricherie",46.728667,0.440467,-1,0,SIN:SA:OCE87575183,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87575209,1,"Pas-de-Jeu",46.975275,-0.041957,-1,0,SIN:SA:OCE87575209,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87575217,1,"Gare de Jaunay-Clan",46.682305,0.38189,-1,0,SIN:SA:OCE87575217,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87575480,1,"Gare de Montmorillon",46.417332,0.873756,-1,0,SIN:SA:OCE87575480,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87575571,1,"Chalandray",46.664462,-0.002988,-1,0,SIN:SA:OCE87575571,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87575589,1,"La Ferrière-en-Parthe.",46.663372,-0.073082,-1,0,SIN:SA:OCE87575589,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87575597,1,"La Peyratte",46.657874,-0.160099,-1,0,SIN:SA:OCE87575597,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87575845,1,"Gare de Lussac-les-Châteaux",46.405141,0.718701,-1,0,SIN:SA:OCE87575845,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87577395,1,"Vouillé",46.646601,0.170493,-1,0,SIN:SA:OCE87577395,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87581009,1,"Gare de Bordeaux-St-Jean",44.82654,-0.556194,-1,0,SIN:SA:OCE87581009,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87581751,1,"Gare de Pessac",44.804597,-0.631749,-1,0,STE:SA:OCE87581751,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87581793,1,"Gare de Alouette-France",44.793502,-0.659614,-1,0,SIN:SA:OCE87581793,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87582403,1,"Gare de Gazinet-Cestas",44.772233,-0.699428,-1,0,SIN:SA:OCE87582403,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87582445,1,"Gare de Marcheprime",44.69057,-0.853801,-1,0,SIN:SA:OCE87582445,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87582478,1,"Gare de Biganos-Facture",44.637482,-0.96602,-1,0,STE:SA:OCE87582478,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87582536,1,"Gare de Ychoux",44.329249,-0.946197,-1,0,SIN:SA:OCE87582536,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87582551,1,"Gare de Labouheyre",44.210577,-0.920996,-1,0,SIN:SA:OCE87582551,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87582601,1,"Gare de Le Teich",44.632437,-1.025566,-1,0,SIN:SA:OCE87582601,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87582619,1,"Gare de Gujan-Mestras",44.640514,-1.069084,-1,0,SIN:SA:OCE87582619,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87582635,1,"Gare de La Hume",44.639905,-1.116065,-1,0,SIN:SA:OCE87582635,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87582643,1,"Gare de La Teste",44.636959,-1.142979,-1,0,SIN:SA:OCE87582643,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87582668,1,"Gare de Arcachon",44.658917,-1.165368,-1,0,SIN:SA:OCE87582668,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87583005,1,"Gare de Angoulême",45.653935,0.164528,-1,0,SIN:SA:OCE87583005,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87583203,1,"Gare de Ruelle",45.676224,0.221243,-1,0,SIN:SA:OCE87583203,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87583427,1,"Gare de La Rochefoucauld",45.740192,0.389586,-1,0,SIN:SA:OCE87583427,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87583443,1,"Gare de Chasseneuil-s-Bonnieure",45.823441,0.452062,-1,0,SIN:SA:OCE87583443,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87583468,1,"Gare de Roumazières-Loubert",45.889361,0.578823,-1,0,SIN:SA:OCE87583468,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87583674,1,"Gare de Montmoreau",45.398299,0.138001,-1,0,SIN:SA:OCE87583674,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87583690,1,"Gare de Chalais",45.270675,0.04338,-1,0,SIN:SA:OCE87583690,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87584052,1,"Gare de Libourne",44.915884,-0.236368,-1,0,SIN:SA:OCE87584052,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87584268,1,"Gare de Bergerac",44.856801,0.490352,-1,0,SIN:SA:OCE87584268,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87584425,1,"Gare de Couze",44.836633,0.702884,-1,0,SIN:SA:OCE87584425,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87584441,1,"Gare de Lalinde",44.83951,0.742756,-1,0,SIN:SA:OCE87584441,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87584466,1,"Gare de Mauzac",44.855886,0.78982,-1,0,SIN:SA:OCE87584466,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87584474,1,"Gare de Trémolat",44.862322,0.830423,-1,0,SIN:SA:OCE87584474,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87584508,1,"Gare de St-Denis-de-Pile",44.978579,-0.198026,-1,0,SIN:SA:OCE87584508,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87584516,1,"Gare de Coutras",45.036654,-0.131429,-1,0,SIN:SA:OCE87584516,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87584532,1,"Gare de Les Eglisottes",45.094265,-0.043533,-1,0,SIN:SA:OCE87584532,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87584540,1,"Gare de St-Aigulin-la-Roche-Cha",45.157374,-0.01927,-1,0,SIN:SA:OCE87584540,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87586008,1,"Gare de Agen",44.207972,0.620905,-1,0,SIN:SA:OCE87586008,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87586438,1,"Gare de Penne (Lot-et-Garonne)",44.379828,0.803151,-1,0,SIN:SA:OCE87586438,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87586453,1,"Gare de Monsempron-Libos",44.486396,0.941459,-1,0,SIN:SA:OCE87586453,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87586495,1,"Gare de Sauveterre-la-Lémance",44.589363,1.01168,-1,0,SIN:SA:OCE87586495,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87587931,1,"Aubin-LEP",44.529552,2.24163,-1,0,SIN:SA:OCE87587931,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87589499,1,"Condat-Centre-Equestre",45.333813,2.758561,-1,0,SIN:SA:OCE87589499,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87592006,1,"Gare de Limoges-Bénédictins",45.836208,1.267452,-1,0,SIN:SA:OCE87592006,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87592022,1,"Gare de Limoges-Montjovis",45.838396,1.251627,-1,0,SIN:SA:OCE87592022,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87592410,1,"Gare de Nieul",45.927436,1.172244,-1,0,SIN:SA:OCE87592410,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87592444,1,"Gare de Nantiat",46.005697,1.15644,-1,0,SIN:SA:OCE87592444,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87592485,1,"Gare de Bellac",46.125225,1.0461,-1,0,SIN:SA:OCE87592485,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87592543,1,"Gare de Le Dorat",46.211108,1.079244,-1,0,SIN:SA:OCE87592543,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87592667,1,"Gare de Aixe-sur-Vienne",45.796582,1.14574,-1,0,SIN:SA:OCE87592667,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87592683,1,"Gare de St-Victurnien",45.876778,1.009728,-1,0,SIN:SA:OCE87592683,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87592691,1,"Gare de St-Brice-sur-Vienne",45.878238,0.952428,-1,0,SIN:SA:OCE87592691,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87592709,1,"Gare de St-Junien",45.881438,0.90049,-1,0,SIN:SA:OCE87592709,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87592717,1,"Gare de Saillat-Chassenon",45.86951,0.811922,-1,0,SIN:SA:OCE87592717,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87592873,1,"Gare de Chabanais",45.872554,0.716818,-1,0,SIN:SA:OCE87592873,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87594002,1,"Gare de Brive-la-Gaillarde",45.152562,1.528623,-1,0,SIN:SA:OCE87594002,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87594093,1,"Gare de Ussel",45.557326,2.314433,-1,0,SIN:SA:OCE87594093,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87594119,1,"Gare de Corrèze",45.329337,1.880385,-1,0,SIN:SA:OCE87594119,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87594135,1,"Gare de Montaignac-St-Hippolyte",45.354592,1.979534,-1,0,SIN:SA:OCE87594135,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87594168,1,"Gare de Egletons",45.402315,2.065144,-1,0,SIN:SA:OCE87594168,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87594275,1,"Gare de Meymac",45.530241,2.16388,-1,0,SIN:SA:OCE87594275,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87594333,1,"Gare de Souillac",44.902337,1.465215,-1,0,SIN:SA:OCE87594333,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87594382,1,"Gare de Condat-le-Lardin",45.126716,1.226651,-1,0,SIN:SA:OCE87594382,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87594408,1,"Gare de Terrasson",45.13568,1.300509,-1,0,SIN:SA:OCE87594408,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87594465,1,"Gare de Aubazine-St-Hilaire",45.181764,1.641725,-1,0,SIN:SA:OCE87594465,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87594481,1,"Gare de Cornil",45.215275,1.697409,-1,0,SIN:SA:OCE87594481,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87594499,1,"Gare de Tulle",45.258708,1.756432,-1,0,SIN:SA:OCE87594499,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87594564,1,"Gare de Les Quatre-Routes",44.99702,1.644498,-1,0,SIN:SA:OCE87594564,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87594572,1,"Gare de St-Denis-près-Martel",44.945792,1.666287,-1,0,SIN:SA:OCE87594572,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87594705,1,"Le Pigeon",44.906052,1.534115,-1,0,SIN:SA:OCE87594705,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87594713,1,"Martel",44.937672,1.613827,-1,0,SIN:SA:OCE87594713,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87594754,1,"Gare de Puybrun",44.921716,1.784029,-1,0,SIN:SA:OCE87594754,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87594762,1,"Gare de Bretenoux-Biars",44.927568,1.844204,-1,0,SIN:SA:OCE87594762,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87595009,1,"Gare de Périgueux",45.187164,0.707181,-1,0,SIN:SA:OCE87595009,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87595512,1,"Gare de Niversac",45.138187,0.808127,-1,0,SIN:SA:OCE87595512,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87595579,1,"Gare de Thenon",45.160074,1.068623,-1,0,SIN:SA:OCE87595579,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87595736,1,"Gare de Les Eyzies",44.941268,1.008275,-1,0,SIN:SA:OCE87595736,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87595744,1,"Gare de Le Bugue",44.905774,0.942864,-1,0,SIN:SA:OCE87595744,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87595751,1,"Gare de Le Buisson",44.847225,0.908183,-1,0,SIN:SA:OCE87595751,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87595769,1,"Gare de Siorac-en-Périgord",44.819792,0.984227,-1,0,SIN:SA:OCE87595769,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87595777,1,"Gare de St-Cyprien (24)",44.863325,1.043723,-1,0,SIN:SA:OCE87595777,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87595827,1,"Gare de Sarlat",44.876656,1.222056,-1,0,SIN:SA:OCE87595827,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87595876,1,"Gare de Belvès",44.777364,1.012014,-1,0,SIN:SA:OCE87595876,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87595892,1,"Gare de Villefranche-Périgord",44.626975,1.049208,-1,0,SIN:SA:OCE87595892,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87597609,1,"Gare de Guéret",46.174146,1.87917,-1,0,SIN:SA:OCE87597609,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87597724,1,"Gare de Parsac-Gouzon",46.198312,2.174196,-1,0,SIN:SA:OCE87597724,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87609354,1,"Bagnols-Stade",45.513781,2.59691,-1,0,SIN:SA:OCE87609354,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87609602,1,"Aubin-Place-Monteils",44.528106,2.243782,-1,0,SIN:SA:OCE87609602,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87609610,1,"Souillac-Renaissance",44.898632,1.475638,-1,0,SIN:SA:OCE87609610,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87609628,1,"Martel-M.-Retraite",44.938022,1.615089,-1,0,SIN:SA:OCE87609628,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87609636,1,"Réalville-Abri-Bus",44.119529,1.484707,-1,0,SIN:SA:OCE87609636,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87609701,1,"Tarbes-Place-de-Verdun",43.233428,0.073187,-1,0,SIN:SA:OCE87609701,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87611004,1,"Gare de Toulouse-Matabiau",43.611464,1.453558,-1,0,SIN:SA:OCE87611004,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87611038,1,"Gare de Muret",43.464784,1.324162,-1,0,SIN:SA:OCE87611038,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87611046,1,"Gare de Fauga",43.404343,1.28289,-1,0,SIN:SA:OCE87611046,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87611053,1,"Gare de Longages-Noé",43.356207,1.251987,-1,0,SIN:SA:OCE87611053,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87611061,1,"Gare de Carbonne",43.298197,1.212506,-1,0,SIN:SA:OCE87611061,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87611079,1,"Gare de Cazères-sur-Garonne",43.212901,1.082767,-1,0,SIN:SA:OCE87611079,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87611087,1,"Gare de Martres-Tolosane",43.198551,1.010304,-1,0,SIN:SA:OCE87611087,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87611095,1,"Gare de Boussens",43.179327,0.972745,-1,0,SIN:SA:OCE87611095,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87611103,1,"Gare de St-Martory",43.138404,0.933628,-1,0,SIN:SA:OCE87611103,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87611137,1,"Gare de St-Gaudens",43.104956,0.729263,-1,0,SIN:SA:OCE87611137,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87611152,1,"Gare de Montréjeau-Gourdan-Pol.",43.078057,0.573536,-1,0,SIN:SA:OCE87611152,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87611160,1,"Labroq.-St-Bert.-de-Com",43.038185,0.593817,-1,0,SIN:SA:OCE87611160,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87611178,1,"Loures-Barbazan",43.02113,0.610449,-1,0,SIN:SA:OCE87611178,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87611194,1,"Marignac-St-Béat",42.915549,0.651756,-1,0,SIN:SA:OCE87611194,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87611210,1,"Lège",42.87718,0.610889,-1,0,SIN:SA:OCE87611210,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87611228,1,"Cier-de-Luchon",42.852642,0.602415,-1,0,SIN:SA:OCE87611228,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87611236,1,"Luchon",42.797278,0.596609,-1,0,SIN:SA:OCE87611236,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87611244,1,"Gare de Montauban-Ville-Bourbon",44.014639,1.341974,-1,0,SIN:SA:OCE87611244,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87611327,1,"Gare de Varilhes",43.04149,1.628576,-1,0,SIN:SA:OCE87611327,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87611343,1,"Gare de Pamiers",43.116175,1.618998,-1,0,SIN:SA:OCE87611343,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87611350,1,"Gare de Vernet-d'Ariège",43.189488,1.611697,-1,0,SIN:SA:OCE87611350,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87611368,1,"Gare de Saverdun",43.239421,1.570422,-1,0,SIN:SA:OCE87611368,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87611376,1,"Gare de Cintegabelle",43.305347,1.521085,-1,0,SIN:SA:OCE87611376,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87611384,1,"Gare de Auterive",43.348835,1.468624,-1,0,SIN:SA:OCE87611384,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87611392,1,"Gare de Venerque-le-Vernet",43.433328,1.425869,-1,0,SIN:SA:OCE87611392,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87611400,1,"Gare de Portet-St-Simon",43.530781,1.405897,-1,0,SIN:SA:OCE87611400,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87611483,1,"Gare de Latour-de-Carol-Enveitg",42.458157,1.90584,-1,0,SIN:SA:OCE87611483,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87611491,1,"Porta",42.520349,1.822342,-1,0,SIN:SA:OCE87611491,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87611509,1,"Gare de Porte-Puymorens",42.538759,1.82485,-1,0,SIN:SA:OCE87611509,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87611517,1,"Gare de Andorre-L'Hospitalet",42.588385,1.798515,-1,0,SIN:SA:OCE87611517,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87611533,1,"Gare de Ax-les-Thermes",42.724805,1.833315,-1,0,SIN:SA:OCE87611533,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87611558,1,"Gare de Luzenac-Garanou",42.764444,1.753154,-1,0,SIN:SA:OCE87611558,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87611566,1,"Vèbre-La-Remise",42.773916,1.719166,-1,0,SIN:SA:OCE87611566,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87611582,1,"Ussat-les-Bains-Centre",42.821052,1.621331,-1,0,SIN:SA:OCE87611582,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87611590,1,"Gare de Tarascon-sur-Ariège",42.849453,1.600031,-1,0,SIN:SA:OCE87611590,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87611608,1,"St-Paul-St-Antoine",42.919386,1.640719,-1,0,SIN:SA:OCE87611608,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87611616,1,"Gare de Foix",42.969299,1.607394,-1,0,SIN:SA:OCE87611616,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87611624,1,"Gare de St-Jean-de-Verges",43.012344,1.608147,-1,0,SIN:SA:OCE87611624,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87611715,1,"Antignac (Hte-Garonne)",42.826082,0.599465,-1,0,SIN:SA:OCE87611715,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87611848,1,"Gare de Montrabé",43.645113,1.524062,-1,0,SIN:SA:OCE87611848,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87611863,1,"Gare de Valence-d'Agen",44.111846,0.891791,-1,0,SIN:SA:OCE87611863,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87611889,1,"Gare de Moissac",44.102144,1.07749,-1,0,SIN:SA:OCE87611889,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87611897,1,"Gare de Castelsarrasin",44.040283,1.114178,-1,0,SIN:SA:OCE87611897,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87611970,1,"PONT DE GURAN",42.88512,0.616895,-1,0,SIN:SA:OCE87611970,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87612358,1,"Seilhan-Le-Bazert",43.060663,0.590723,-1,0,SIN:SA:OCE87612358,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87613000,1,"Gare de Cahors",44.44916,1.433238,-1,0,SIN:SA:OCE87613000,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87613018,1,"Capens",43.337142,1.259612,-1,0,SIN:SA:OCE87613018,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87613059,1,"Gare de Gramat",44.77349,1.722371,-1,0,SIN:SA:OCE87613059,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87613075,1,"Gare de Assier",44.674593,1.869747,-1,0,SIN:SA:OCE87613075,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87613091,1,"Gare de Figeac",44.603514,2.037077,-1,0,SIN:SA:OCE87613091,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87613109,1,"Gare de Capdenac",44.577656,2.078902,-1,0,SIN:SA:OCE87613109,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87613224,1,"Gare de Aubin",44.527356,2.239559,-1,0,SIN:SA:OCE87613224,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87613257,1,"Gare de St-Christophe",44.464687,2.407487,-1,0,SIN:SA:OCE87613257,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87613331,1,"Montpezat",44.268105,1.504628,-1,0,SIN:SA:OCE87613331,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87613356,1,"Gare de Caussade (T.-et-G.)",44.162304,1.533453,-1,0,SIN:SA:OCE87613356,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87613422,1,"Gare de Rodez",44.362652,2.580253,-1,0,SIN:SA:OCE87613422,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87613471,1,"Gare de Laguépie",44.145489,1.96863,-1,0,SIN:SA:OCE87613471,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87613604,1,"Gare de Bagnac",44.66528,2.160163,-1,0,SIN:SA:OCE87613604,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87613661,1,"Gare de Viviez-Decazeville",44.55704,2.218024,-1,0,SIN:SA:OCE87613661,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87613679,1,"Decazeville-Centre",44.563672,2.240842,-1,0,SIN:SA:OCE87613679,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87613885,1,"Villeneuve-d'Aveyron",44.428447,2.065619,-1,0,SIN:SA:OCE87613885,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87613893,1,"Gare de Villefranche-Rouergue",44.347681,2.036583,-1,0,SIN:SA:OCE87613893,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87615005,1,"Gare de Albi-Ville",43.922036,2.138635,-1,0,SIN:SA:OCE87615005,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87615195,1,"Gare de Albi-Madeleine.",43.937899,2.141168,-1,0,SIN:SA:OCE87615195,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87615245,1,"Gare de Tessonnières",43.928396,1.93741,-1,0,SIN:SA:OCE87615245,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87615310,1,"Gare de Lisle-sur-Tarn",43.856228,1.807745,-1,0,SIN:SA:OCE87615310,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87615328,1,"Gare de Rabastens-Couffouleux",43.819489,1.730763,-1,0,SIN:SA:OCE87615328,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87615344,1,"Gare de St-Sulpice (Tarn)",43.775412,1.681037,-1,0,SIN:SA:OCE87615344,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87615369,1,"Gare de Montastruc-la-Conseil.",43.715998,1.597894,-1,0,SIN:SA:OCE87615369,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87615377,1,"Gare de Gragnague",43.695795,1.567568,-1,0,SIN:SA:OCE87615377,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87615419,1,"Gare de Marssac-sur-Tarn",43.915095,2.026759,-1,0,SIN:SA:OCE87615419,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87615468,1,"Gare de Castres",43.597754,2.229263,-1,0,SIN:SA:OCE87615468,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87615476,1,"Gare de Lavaur",43.703391,1.81303,-1,0,SIN:SA:OCE87615476,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87615492,1,"Gare de Vielmur-sur-Agout",43.624101,2.089438,-1,0,SIN:SA:OCE87615492,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87615542,1,"Gare de Mazamet",43.497545,2.374424,-1,0,SIN:SA:OCE87615542,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87615625,1,"Gare de Carmaux",44.049004,2.152389,-1,0,SIN:SA:OCE87615625,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87615674,1,"Gare de Tanus",44.100299,2.314931,-1,0,SIN:SA:OCE87615674,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87615732,1,"Gare de Naucelle",44.18567,2.363256,-1,0,SIN:SA:OCE87615732,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87615757,1,"Gare de Baraqueville-Carce.Pey.",44.270382,2.427506,-1,0,SIN:SA:OCE87615757,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87615773,1,"Gare de Luc-Primaube",44.291389,2.554483,-1,0,SIN:SA:OCE87615773,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87618116,1,"Gare de Pins Justaret",43.480772,1.399589,-1,0,SIN:SA:OCE87618116,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87618348,1,"Mercus-Garrabet-Centre",42.877096,1.627208,-1,0,SIN:SA:OCE87618348,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87618702,1,"Galié",42.989795,0.625365,-1,0,SIN:SA:OCE87618702,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87618710,1,"Saléchan-Siradan",42.962994,0.631689,-1,0,SIN:SA:OCE87618710,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87620195,1,"St-Sulpice-sur-Lèze",43.329798,1.322298,-1,0,SIN:SA:OCE87620195,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87633958,1,"Lourdes-Lycée-d'-Arrouz",43.091985,-0.049631,-1,0,SIN:SA:OCE87633958,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87640649,1,"Chirac-Ville",44.52286,3.267369,-1,0,SIN:SA:OCE87640649,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87640698,1,"Le-Monastier-Ville",44.51564,3.255371,-1,0,SIN:SA:OCE87640698,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87641001,1,"Gare de Montluçon-Ville",46.337875,2.596412,-1,0,SIN:SA:OCE87641001,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87641241,1,"Eygurande-Merlines",45.645326,2.460978,-1,0,SIN:SA:OCE87641241,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87641274,1,"Laqueuille",45.64695,2.704938,-1,0,SIN:SA:OCE87641274,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87645002,1,"Gare de Aurillac",44.920986,2.435547,-1,0,SIN:SA:OCE87645002,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87645135,1,"Gare de Laroquebrou",44.964201,2.192841,-1,0,SIN:SA:OCE87645135,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87645168,1,"Gare de Maurs",44.706133,2.199697,-1,0,SIN:SA:OCE87645168,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87645192,1,"Gare de Le Rouget",44.856555,2.235418,-1,0,SIN:SA:OCE87645192,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87645267,1,"Mauriac",45.221784,2.34489,-1,0,SIN:SA:OCE87645267,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87645283,1,"Vendes",45.296779,2.388505,-1,0,SIN:SA:OCE87645283,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87645507,1,"Gare de Neussargues",45.125386,2.979126,-1,0,SIN:SA:OCE87645507,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87645606,1,"Ste-Anastasie",45.17272,2.968379,-1,0,SIN:SA:OCE87645606,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87645614,1,"Allanche",45.22967,2.931457,-1,0,SIN:SA:OCE87645614,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87645705,1,"Bort-les-Orgues",45.406357,2.502563,-1,0,SIN:SA:OCE87645705,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87661116,1,"Noe-College",43.347101,1.249056,-1,0,SIN:SA:OCE87661116,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87661132,1,"Rocamadour-Centre",27.140973,-3.404561,-1,0,SIN:SA:OCE87661132,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87671008,1,"Gare de Tarbes",43.239803,0.069407,-1,0,SIN:SA:OCE87671008,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87671016,1,"Gare de Mont-de-Marsan",43.885223,-0.505091,-1,0,SIN:SA:OCE87671016,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87671123,1,"Gare de Lannemezan",43.114308,0.38769,-1,0,SIN:SA:OCE87671123,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87671156,1,"Gare de Capvern",43.103057,0.32974,-1,0,SIN:SA:OCE87671156,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87671164,1,"Ozon-Lanespède",43.170809,0.255467,-1,0,SIN:SA:OCE87671164,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87671172,1,"Gare de Tournay (Htes-Pyrénées)",43.183502,0.238967,-1,0,SIN:SA:OCE87671172,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87671180,1,"Bordes-Lhez",43.197943,0.225503,-1,0,SIN:SA:OCE87671180,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87671339,1,"Gare de Lourdes",43.100429,-0.042192,-1,0,SIN:SA:OCE87671339,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87671479,1,"Gare de Arengosse",44.006926,-0.808738,-1,0,SIN:SA:OCE87671479,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87671487,1,"Gare de Ygos",43.978221,-0.736139,-1,0,SIN:SA:OCE87671487,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87671495,1,"Gare de St-Martin-d'Oney",43.929892,-0.651486,-1,0,SIN:SA:OCE87671495,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87672006,1,"Gare de Pau",43.291667,-0.36965,-1,0,SIN:SA:OCE87672006,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87672139,1,"Gare de Coarraze-Nay",43.181832,-0.241756,-1,0,SIN:SA:OCE87672139,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87673004,1,"Gare de Bayonne",43.496759,-1.470398,-1,0,SIN:SA:OCE87673004,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87673095,1,"Gare de Boucau",43.523368,-1.490435,-1,0,SIN:SA:OCE87673095,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87673103,1,"Gare de Morcenx",44.033673,-0.908481,-1,0,SIN:SA:OCE87673103,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87673202,1,"Gare de Dax",43.720667,-1.050324,-1,0,SIN:SA:OCE87673202,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87673269,1,"Gare de St-Geours-de-Maremne",43.6712,-1.241307,-1,0,SIN:SA:OCE87673269,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87673277,1,"Gare de St-Vincent-de-Tyrosse",43.657808,-1.306385,-1,0,SIN:SA:OCE87673277,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87673285,1,"Gare de Bénesse-Maremne",43.627647,-1.369912,-1,0,SIN:SA:OCE87673285,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87673293,1,"Gare de Labenne",43.587104,-1.428925,-1,0,SIN:SA:OCE87673293,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87673319,1,"Gare de Ondres",43.568858,-1.457162,-1,0,SIN:SA:OCE87673319,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87673400,1,"Gare de Biarritz",43.459377,-1.546011,-1,0,SIN:SA:OCE87673400,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87673459,1,"Gare de Guéthary",43.425428,-1.609927,-1,0,SIN:SA:OCE87673459,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87677005,1,"Gare de Hendaye",43.352995,-1.781868,-1,0,SIN:SA:OCE87677005,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87677104,1,"Gare de Les Deux-Jumeaux (64)",43.370038,-1.764419,-1,0,SIN:SA:OCE87677104,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87677120,1,"Gare de St-Jean-de-Luz-Ciboure",43.385845,-1.661162,-1,0,SIN:SA:OCE87677120,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87680553,1,"Riom_Es_M_la_Poste.",27.140973,-3.404561,-1,0,SIN:SA:OCE87440016,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87691279,1,"Theix-Centre",27.140973,-3.404561,-1,0,SIN:SA:OCE87691279,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87693390,1,"Egletons-ville",27.140973,-3.404561,-1,0,SIN:SA:OCE87693390,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87693630,1,"Limoges-CIEL",27.140973,-3.404561,-1,0,SIN:SA:OCE87693630,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87695015,1,"Luchon-Richelieu",27.140973,-3.404561,-1,0,SIN:SA:OCE87695015,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87695031,1,"Muna-Burgalays",27.140973,-3.404561,-1,0,SIN:SA:OCE87695031,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87702951,1,"Gaillac-Gare-Routier",27.140973,-3.404561,-1,0,SIN:SA:OCE87702951,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87726802,1,"Gare de Roanne",46.040211,4.063135,-1,0,SIN:SA:OCE87726802,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87734004,1,"Gare de Clermont-Ferrand",45.778569,3.100519,-1,0,SIN:SA:OCE87734004,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87734871,1,"Gare de Massiac-Blesle",45.253703,3.196585,-1,0,SIN:SA:OCE87734871,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87773002,1,"Gare de Montpellier-Saint-Roch",43.605834,3.88236,-1,0,SIN:SA:OCE87773002,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87783001,1,"Gare de Millau",44.10187,3.074898,-1,0,SIN:SA:OCE87783001,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87783175,1,"Gare de St-Flour-Chaudes-Aigues",45.034838,3.106166,-1,0,SIN:SA:OCE87783175,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87783241,1,"Gare de St-Chély-d'Apcher",44.801701,3.270741,-1,0,SIN:SA:OCE87783241,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87783266,1,"Gare de Aumont-Aubrac",44.71814,3.283415,-1,0,SIN:SA:OCE87783266,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87783282,1,"Gare de Marvejols",44.544616,3.281048,-1,0,SIN:SA:OCE87783282,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87783308,1,"Gare de Le Monastier",44.509002,3.252196,-1,0,SIN:SA:OCE87783308,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87783324,1,"Gare de Banassac-la-Canourgue",44.447642,3.19621,-1,0,SIN:SA:OCE87783324,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87783365,1,"Gare de Séverac-D'Aveyron",44.325205,3.057387,-1,0,SIN:SA:OCE87783365,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87783423,1,"Gare de St-Georges-de-Luzençon",44.066024,2.983914,-1,0,SIN:SA:OCE87783423,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87783431,1,"Gare de St-Rome-de-Cernon",44.014575,2.967617,-1,0,SIN:SA:OCE87783431,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87783480,1,"St-Affrique",43.956689,2.881909,-1,0,SIN:SA:OCE87783480,Europe/Paris,,SIN, +SIN:SP:OCECarTER-87783761,1,"Gare de Laissac",44.374905,2.822384,-1,0,SIN:SA:OCE87783761,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87324095,1,"Gare de Futuroscope",46.66985,0.377202,-1,0,SIN:SA:OCE87324095,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87481002,1,"Gare de Nantes",47.217505,-1.541925,-1,0,SIN:SA:OCE87481002,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87485003,1,"Gare de La Rochelle-Ville",46.152701,-1.1453,-1,0,SIN:SA:OCE87485003,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87485110,1,"Gare de Chatelaillon-Plage",46.078564,-1.091209,-1,0,SIN:SA:OCE87485110,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87485144,1,"Gare de Rochefort",45.947416,-0.963788,-1,0,SIN:SA:OCE87485144,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87486019,1,"Gare de La Roche-sur-Yon",46.672025,-1.43568,-1,0,SIN:SA:OCE87486019,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87486258,1,"Gare de Luçon",46.46372,-1.167445,-1,0,SIN:SA:OCE87486258,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87491001,1,"Gare de Saintes",45.747843,-0.617576,-1,0,SIN:SA:OCE87491001,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87491100,1,"Gare de Pons",45.578088,-0.539001,-1,0,SIN:SA:OCE87491100,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87491142,1,"Gare de Jonzac",45.438714,-0.442003,-1,0,SIN:SA:OCE87491142,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87491183,1,"Gare de Montendre",45.280596,-0.396059,-1,0,SIN:SA:OCE87491183,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87491209,1,"Gare de St-Mariens-St-Yzan",45.139081,-0.391685,-1,0,SIN:SA:OCE87491209,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87491241,1,"Gare de St-André-de-Cubzac",44.991175,-0.440483,-1,0,SIN:SA:OCE87491241,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87543017,1,"Gare de Aubrais-(les)",47.926917,1.906085,-1,0,SIN:SA:OCE87543017,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87547000,1,"Gare de Paris-Austerlitz",48.841652,2.366039,-1,0,SIN:SA:OCE87547000,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87571240,1,"Gare de St-Pierre-des-Corps",47.385732,0.725054,-1,0,SIN:SA:OCE87571240,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87575001,1,"Gare de Poitiers",46.582183,0.333084,-1,0,SIN:SA:OCE87575001,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87576009,1,"Gare de Vierzon",47.226516,2.059824,-1,0,SIN:SA:OCE87576009,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87581009,1,"Gare de Bordeaux-St-Jean",44.82654,-0.556194,-1,0,SIN:SA:OCE87581009,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87583005,1,"Gare de Angoulême",45.653935,0.164528,-1,0,SIN:SA:OCE87583005,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87584052,1,"Gare de Libourne",44.915884,-0.236368,-1,0,SIN:SA:OCE87584052,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87584516,1,"Gare de Coutras",45.036654,-0.131429,-1,0,SIN:SA:OCE87584516,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87586008,1,"Gare de Agen",44.207972,0.620905,-1,0,SIN:SA:OCE87586008,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87586545,1,"Gare de Marmande",44.503067,0.168115,-1,0,SIN:SA:OCE87586545,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87592006,1,"Gare de Limoges-Bénédictins",45.836208,1.267452,-1,0,SIN:SA:OCE87592006,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87592378,1,"Gare de La Souterraine",46.23975,1.492234,-1,0,SIN:SA:OCE87592378,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87594002,1,"Gare de Brive-la-Gaillarde",45.152562,1.528623,-1,0,SIN:SA:OCE87594002,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87594093,1,"Gare de Ussel",45.557326,2.314433,-1,0,SIN:SA:OCE87594093,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87594119,1,"Gare de Corrèze",45.329337,1.880385,-1,0,SIN:SA:OCE87594119,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87594168,1,"Gare de Egletons",45.402315,2.065144,-1,0,SIN:SA:OCE87594168,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87594200,1,"Gare de Uzerche",45.440621,1.570228,-1,0,SIN:SA:OCE87594200,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87594275,1,"Gare de Meymac",45.530241,2.16388,-1,0,SIN:SA:OCE87594275,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87594333,1,"Gare de Souillac",44.902337,1.465215,-1,0,SIN:SA:OCE87594333,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87594382,1,"Gare de Condat-le-Lardin",45.126716,1.226651,-1,0,SIN:SA:OCE87594382,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87594408,1,"Gare de Terrasson",45.13568,1.300509,-1,0,SIN:SA:OCE87594408,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87594499,1,"Gare de Tulle",45.258708,1.756432,-1,0,SIN:SA:OCE87594499,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87595009,1,"Gare de Périgueux",45.187164,0.707181,-1,0,SIN:SA:OCE87595009,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87595124,1,"Gare de Thiviers",45.418954,0.921349,-1,0,SIN:SA:OCE87595124,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87595249,1,"Gare de St-Astier",45.139011,0.522819,-1,0,SIN:SA:OCE87595249,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87595298,1,"Gare de Mussidan",45.034374,0.354066,-1,0,SIN:SA:OCE87595298,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87595322,1,"Gare de Montpon-Ménestérol",45.006279,0.159339,-1,0,SIN:SA:OCE87595322,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87595512,1,"Gare de Niversac",45.138187,0.808127,-1,0,SIN:SA:OCE87595512,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87595579,1,"Gare de Thenon",45.160074,1.068623,-1,0,SIN:SA:OCE87595579,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87597005,1,"Gare de Châteauroux",46.809823,1.699457,-1,0,SIN:SA:OCE87597005,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87597062,1,"Gare de Issoudun",46.947849,1.984921,-1,0,SIN:SA:OCE87597062,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87597120,1,"Gare de Argenton-sur-Creuse",46.592225,1.51823,-1,0,SIN:SA:OCE87597120,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87611004,1,"Gare de Toulouse-Matabiau",43.611464,1.453558,-1,0,SIN:SA:OCE87611004,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87611137,1,"Gare de St-Gaudens",43.104956,0.729263,-1,0,SIN:SA:OCE87611137,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87611152,1,"Gare de Montréjeau-Gourdan-Pol.",43.078057,0.573536,-1,0,SIN:SA:OCE87611152,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87611244,1,"Gare de Montauban-Ville-Bourbon",44.014639,1.341974,-1,0,SIN:SA:OCE87611244,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87613000,1,"Gare de Cahors",44.44916,1.433238,-1,0,SIN:SA:OCE87613000,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87613141,1,"Gare de Gourdon",44.741898,1.389276,-1,0,SIN:SA:OCE87613141,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87613356,1,"Gare de Caussade (T.-et-G.)",44.162304,1.533453,-1,0,SIN:SA:OCE87613356,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87615286,1,"Gare de Carcassonne",43.217715,2.351883,-1,0,SIN:SA:OCE87615286,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87671008,1,"Gare de Tarbes",43.239803,0.069407,-1,0,SIN:SA:OCE87671008,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87671123,1,"Gare de Lannemezan",43.114308,0.38769,-1,0,SIN:SA:OCE87671123,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87671339,1,"Gare de Lourdes",43.100429,-0.042192,-1,0,SIN:SA:OCE87671339,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87672006,1,"Gare de Pau",43.291667,-0.36965,-1,0,SIN:SA:OCE87672006,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87672253,1,"Gare de Orthez",43.484099,-0.767625,-1,0,SIN:SA:OCE87672253,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87673004,1,"Gare de Bayonne",43.496759,-1.470398,-1,0,SIN:SA:OCE87673004,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87751008,1,"Gare de Marseille-St-Charles",43.30273,5.38065,-1,0,SIN:SA:OCE87751008,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87753657,1,"Gare de Arles",43.684844,4.632019,-1,0,SIN:SA:OCE87753657,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87755009,1,"Gare de Toulon",43.128316,5.929458,-1,0,SIN:SA:OCE87755009,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87755447,1,"Gare de Les Arcs-Draguignan",43.455729,6.482462,-1,0,SIN:SA:OCE87755447,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87756056,1,"Gare de Nice-Ville",43.704711,7.261786,-1,0,SIN:SA:OCE87756056,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87757526,1,"Gare de St-Raphaël-Valescure",43.423606,6.769013,-1,0,SIN:SA:OCE87757526,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87757625,1,"Gare de Cannes",43.553913,7.019725,-1,0,SIN:SA:OCE87757625,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87757674,1,"Gare de Antibes",43.585789,7.119516,-1,0,SIN:SA:OCE87757674,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87773002,1,"Gare de Montpellier-Saint-Roch",43.605834,3.88236,-1,0,SIN:SA:OCE87773002,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87773200,1,"Gare de Sète",43.412812,3.696396,-1,0,SIN:SA:OCE87773200,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87775007,1,"Gare de Nîmes",43.832293,4.365835,-1,0,SIN:SA:OCE87775007,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87781005,1,"Gare de Béziers",43.336225,3.219218,-1,0,SIN:SA:OCE87781005,Europe/Paris,,SIN, +SIN:SP:OCECorailIntercit-87781104,1,"Gare de Narbonne",43.191033,3.005956,-1,0,SIN:SA:OCE87781104,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-71793150,1,"Gare de Port-Bou",42.424471,3.157848,-1,0,SIN:SA:OCE71793150,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87543017,1,"Gare de Aubrais-(les)",47.926917,1.906085,-1,0,SIN:SA:OCE87543017,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87547000,1,"Gare de Paris-Austerlitz",48.841652,2.366039,-1,0,SIN:SA:OCE87547000,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87594333,1,"Gare de Souillac",44.902337,1.465215,-1,0,SIN:SA:OCE87594333,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87594572,1,"Gare de St-Denis-près-Martel",44.945792,1.666287,-1,0,SIN:SA:OCE87594572,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87611004,1,"Gare de Toulouse-Matabiau",43.611464,1.453558,-1,0,SIN:SA:OCE87611004,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87611244,1,"Gare de Montauban-Ville-Bourbon",44.014639,1.341974,-1,0,SIN:SA:OCE87611244,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87611343,1,"Gare de Pamiers",43.116175,1.618998,-1,0,SIN:SA:OCE87611343,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87611368,1,"Gare de Saverdun",43.239421,1.570422,-1,0,SIN:SA:OCE87611368,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87611384,1,"Gare de Auterive",43.348835,1.468624,-1,0,SIN:SA:OCE87611384,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87611483,1,"Gare de Latour-de-Carol-Enveitg",42.458157,1.90584,-1,0,SIN:SA:OCE87611483,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87611509,1,"Gare de Porte-Puymorens",42.538759,1.82485,-1,0,SIN:SA:OCE87611509,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87611517,1,"Gare de Andorre-L'Hospitalet",42.588385,1.798515,-1,0,SIN:SA:OCE87611517,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87611525,1,"Gare de Mérens-les-Vals",42.658677,1.83642,-1,0,SIN:SA:OCE87611525,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87611533,1,"Gare de Ax-les-Thermes",42.724805,1.833315,-1,0,SIN:SA:OCE87611533,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87611558,1,"Gare de Luzenac-Garanou",42.764444,1.753154,-1,0,SIN:SA:OCE87611558,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87611574,1,"Gare de Les Cabannes",42.786537,1.68618,-1,0,SIN:SA:OCE87611574,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87611590,1,"Gare de Tarascon-sur-Ariège",42.849453,1.600031,-1,0,SIN:SA:OCE87611590,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87611616,1,"Gare de Foix",42.969299,1.607394,-1,0,SIN:SA:OCE87611616,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87613000,1,"Gare de Cahors",44.44916,1.433238,-1,0,SIN:SA:OCE87613000,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87613042,1,"Gare de Rocamadour-Padirac",44.817911,1.657445,-1,0,SIN:SA:OCE87613042,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87613059,1,"Gare de Gramat",44.77349,1.722371,-1,0,SIN:SA:OCE87613059,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87613075,1,"Gare de Assier",44.674593,1.869747,-1,0,SIN:SA:OCE87613075,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87613091,1,"Gare de Figeac",44.603514,2.037077,-1,0,SIN:SA:OCE87613091,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87613109,1,"Gare de Capdenac",44.577656,2.078902,-1,0,SIN:SA:OCE87613109,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87613141,1,"Gare de Gourdon",44.741898,1.389276,-1,0,SIN:SA:OCE87613141,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87613224,1,"Gare de Aubin",44.527356,2.239559,-1,0,SIN:SA:OCE87613224,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87613232,1,"Gare de Cransac",44.523063,2.270767,-1,0,SIN:SA:OCE87613232,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87613257,1,"Gare de St-Christophe",44.464687,2.407487,-1,0,SIN:SA:OCE87613257,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87613356,1,"Gare de Caussade (T.-et-G.)",44.162304,1.533453,-1,0,SIN:SA:OCE87613356,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87613422,1,"Gare de Rodez",44.362652,2.580253,-1,0,SIN:SA:OCE87613422,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87613661,1,"Gare de Viviez-Decazeville",44.55704,2.218024,-1,0,SIN:SA:OCE87613661,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87615005,1,"Gare de Albi-Ville",43.922036,2.138635,-1,0,SIN:SA:OCE87615005,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87615039,1,"Gare de Castelnaudary",43.312646,1.950989,-1,0,SIN:SA:OCE87615039,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87615112,1,"Gare de Lézignan-Corbières",43.199971,2.769857,-1,0,SIN:SA:OCE87615112,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87615195,1,"Gare de Albi-Madeleine.",43.937899,2.141168,-1,0,SIN:SA:OCE87615195,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87615286,1,"Gare de Carcassonne",43.217715,2.351883,-1,0,SIN:SA:OCE87615286,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87615625,1,"Gare de Carmaux",44.049004,2.152389,-1,0,SIN:SA:OCE87615625,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87784009,1,"Gare de Perpignan",42.696075,2.879617,-1,0,SIN:SA:OCE87784009,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87784207,1,"Gare de Elne",42.597369,2.963521,-1,0,SIN:SA:OCE87784207,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87784231,1,"Gare de Argelès-sur-Mer",42.543951,3.0215,-1,0,SIN:SA:OCE87784231,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87784256,1,"Gare de Collioure",42.526892,3.078721,-1,0,SIN:SA:OCE87784256,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87784264,1,"Gare de Port-Vendres",42.513381,3.102386,-1,0,SIN:SA:OCE87784264,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87784298,1,"Gare de Banyuls-sur-Mer",42.482619,3.124411,-1,0,SIN:SA:OCE87784298,Europe/Paris,,SIN, +SIN:SP:OCECorailLuna-87785006,1,"Gare de Cerbère",42.442764,3.165525,-1,0,SIN:SA:OCE87785006,Europe/Paris,,SIN, +STE:SP:OCECarTER-87003707,1,"Ydes",45.344039,2.436246,-1,0,SIN:SA:OCE87003707,Europe/Paris,,STE, +STE:SP:OCECarTER-87110171,1,"Landeyrat",45.277543,2.870006,-1,0,SIN:SA:OCE87110171,Europe/Paris,,STE, +STE:SP:OCECarTER-87110189,1,"Marcenat",45.304939,2.828226,-1,0,SIN:SA:OCE87110189,Europe/Paris,,STE, +STE:SP:OCECarTER-87110197,1,"vely",45.334816,2.759806,-1,0,SIN:SA:OCE87110197,Europe/Paris,,STE, +STE:SP:OCECarTER-87110205,1,"St-Amandin",45.343141,2.694491,-1,0,SIN:SA:OCE87110205,Europe/Paris,,STE, +STE:SP:OCECarTER-87110213,1,"Vebret",45.339542,2.520261,-1,0,SIN:SA:OCE87110213,Europe/Paris,,STE, +STE:SP:OCECarTER-87110221,1,"Antignac (Cantal)",45.341011,2.544783,-1,0,SIN:SA:OCE87110221,Europe/Paris,,STE, +STE:SP:OCECarTER-87130807,1,"Foix-Centre",42.964038,1.607974,-1,0,SIN:SA:OCE87130807,Europe/Paris,,STE, +STE:SP:OCECarTER-87130823,1,"Les-cabannes-09-Centre",42.784943,1.688417,-1,0,SIN:SA:OCE87130823,Europe/Paris,,STE, +STE:SP:OCECarTER-87130831,1,"Pamiers-Centre",43.116012,1.610783,-1,0,SIN:SA:OCE87130831,Europe/Paris,,STE, +STE:SP:OCECarTER-87130849,1,"Mérens-les-Vals-Village",42.656118,1.836418,-1,0,SIN:SA:OCE87130849,Europe/Paris,,STE, +STE:SP:OCECarTER-87130880,1,"Vernet-Ariège-Abri-Bus",43.184272,1.609749,-1,0,SIN:SA:OCE87130880,Europe/Paris,,STE, +STE:SP:OCECarTER-87130898,1,"Varilhes-Centre",43.044978,1.627614,-1,0,SIN:SA:OCE87130898,Europe/Paris,,STE, +STE:SP:OCECarTER-87137158,1,"Tarascon-Ariège-Mitter.",42.846536,1.604316,-1,0,SIN:SA:OCE87137158,Europe/Paris,,STE, +STE:SP:OCECarTER-87138776,1,"Place de la Liberté",44.353685,2.038845,-1,0,SIN:SA:OCE87138776,Europe/Paris,,STE, +STE:SP:OCECarTER-87138800,1,"Villefranche-Rouerg-Far",44.375359,2.036386,-1,0,SIN:SA:OCE87138800,Europe/Paris,,STE, +STE:SP:OCECarTER-87139071,1,"Le-Bruel-Bel-Air",44.433872,2.176453,-1,0,SIN:SA:OCE87139071,Europe/Paris,,STE, +STE:SP:OCECarTER-87139089,1,"Albias-Abri-Bus",44.09051,1.447144,-1,0,SIN:SA:OCE87139089,Europe/Paris,,STE, +STE:SP:OCECarTER-87139105,1,"Réalville-Place",44.113294,1.480708,-1,0,SIN:SA:OCE87139105,Europe/Paris,,STE, +STE:SP:OCECarTER-87146522,1,"Decazeville-Place-Wilso",44.560029,2.250874,-1,0,SIN:SA:OCE87146522,Europe/Paris,,STE, +STE:SP:OCECarTER-87146597,1,"Maleville-Barbet",44.404942,2.089365,-1,0,SIN:SA:OCE87146597,Europe/Paris,,STE, +STE:SP:OCECarTER-87152413,1,"Maussac Pl de la Poste",45.471312,2.140154,-1,0,SIN:SA:OCE87152413,Europe/Paris,,STE, +STE:SP:OCECarTER-87157016,1,"Montbazens",27.140973,-3.404561,-1,0,SIN:SA:OCE87157016,Europe/Paris,,STE, +STE:SP:OCECarTER-87157024,1,"Lanuéjouls",44.424792,2.160366,-1,0,SIN:SA:OCE87157024,Europe/Paris,,STE, +STE:SP:OCECarTER-87158006,1,"Gouzon-Champ-de-Foire",46.191172,2.239924,-1,0,SIN:SA:OCE87158006,Europe/Paris,,STE, +STE:SP:OCECarTER-87165472,1,"Assier-Ville",44.67555,1.876936,-1,0,SIN:SA:OCE87165472,Europe/Paris,,STE, +STE:SP:OCECarTER-87165498,1,"Cambes-Village",44.614695,1.941021,-1,0,SIN:SA:OCE87165498,Europe/Paris,,STE, +STE:SP:OCECarTER-87165506,1,"Figeac-Lycée-Champollio",44.607996,2.02819,-1,0,SIN:SA:OCE87165506,Europe/Paris,,STE, +STE:SP:OCECarTER-87165514,1,"Ceint-d'Eau-Village",44.593435,1.986319,-1,0,SIN:SA:OCE87165514,Europe/Paris,,STE, +STE:SP:OCECarTER-87165522,1,"Gramat-Ville",44.779987,1.726126,-1,0,SIN:SA:OCE87165522,Europe/Paris,,STE, +STE:SP:OCECarTER-87165530,1,"L'Hôpital-Village",44.750217,1.726451,-1,0,SIN:SA:OCE87165530,Europe/Paris,,STE, +STE:SP:OCECarTER-87165548,1,"Bourg (le)",44.709843,1.903179,-1,0,SIN:SA:OCE87165548,Europe/Paris,,STE, +STE:SP:OCECarTER-87165613,1,"Livernon-Gendarmerie",44.64734,1.842647,-1,0,SIN:SA:OCE87165613,Europe/Paris,,STE, +STE:SP:OCECarTER-87165621,1,"Rudelle-Mairie",44.721337,1.880875,-1,0,SIN:SA:OCE87165621,Europe/Paris,,STE, +STE:SP:OCECarTER-87165654,1,"Thémines",44.740865,1.822009,-1,0,SIN:SA:OCE87165654,Europe/Paris,,STE, +STE:SP:OCECarTER-87165738,1,"Labruguière-Abri-Bus",43.539193,2.264472,-1,0,SIN:SA:OCE87165738,Europe/Paris,,STE, +STE:SP:OCECarTER-87165803,1,"Lavaur-Centre",43.700281,1.820566,-1,0,SIN:SA:OCE87165803,Europe/Paris,,STE, +STE:SP:OCECarTER-87165845,1,"Mazamet-Gare-Routière",43.491002,2.37637,-1,0,SIN:SA:OCE87165845,Europe/Paris,,STE, +STE:SP:OCECarTER-87165852,1,"Montastruc-Conseill-N88",43.72296,1.586772,-1,0,SIN:SA:OCE87165852,Europe/Paris,,STE, +STE:SP:OCECarTER-87165944,1,"St-Paul-Cap-Joux-Centre",43.648518,1.976097,-1,0,SIN:SA:OCE87165944,Europe/Paris,,STE, +STE:SP:OCECarTER-87170068,1,"Anos-31",42.897364,0.625133,-1,0,SIN:SA:OCE87170068,Europe/Paris,,STE, +STE:SP:OCECarTER-87170357,1,"Bagiry",42.97584,0.625277,-1,0,SIN:SA:OCE87170357,Europe/Paris,,STE, +STE:SP:OCECarTER-87170555,1,"Bertren-Abri",42.998808,0.617581,-1,0,SIN:SA:OCE87170555,Europe/Paris,,STE, +STE:SP:OCECarTER-87170571,1,"Bertren-Nord",43.003106,0.613804,-1,0,SIN:SA:OCE87170571,Europe/Paris,,STE, +STE:SP:OCECarTER-87170696,1,"Bertren-Sud",42.994531,0.620903,-1,0,SIN:SA:OCE87170696,Europe/Paris,,STE, +STE:SP:OCECarTER-87170761,1,"Cazaux-Layrisse",42.868775,0.607281,-1,0,SIN:SA:OCE87170761,Europe/Paris,,STE, +STE:SP:OCECarTER-87170787,1,"Chaum-Pont",42.937917,0.644683,-1,0,SIN:SA:OCE87170787,Europe/Paris,,STE, +STE:SP:OCECarTER-87170795,1,"Cierp",42.914637,0.63951,-1,0,SIN:SA:OCE87170795,Europe/Paris,,STE, +STE:SP:OCECarTER-87170811,1,"Gaud",42.914303,0.647954,-1,0,SIN:SA:OCE87170811,Europe/Paris,,STE, +STE:SP:OCECarTER-87170878,1,"Estenos",42.946528,0.640921,-1,0,SIN:SA:OCE87170878,Europe/Paris,,STE, +STE:SP:OCECarTER-87173377,1,"Gouaux-de-Luchon",42.946528,0.640921,-1,0,SIN:SA:OCE87173377,Europe/Paris,,STE, +STE:SP:OCECarTER-87173468,1,"Loures-Barousse",43.024256,0.60422,-1,0,SIN:SA:OCE87173468,Europe/Paris,,STE, +STE:SP:OCECarTER-87173500,1,"Luscan-Pont",43.015174,0.621122,-1,0,SIN:SA:OCE87173500,Europe/Paris,,STE, +STE:SP:OCECarTER-87173542,1,"Moustajon",42.814447,0.597215,-1,0,SIN:SA:OCE87173542,Europe/Paris,,STE, +STE:SP:OCECarTER-87173633,1,"Salechan-Emb",42.957983,0.633489,-1,0,SIN:SA:OCE87173633,Europe/Paris,,STE, +STE:SP:OCECarTER-87173823,1,"Pratviel-la-Ferme",42.84415,0.603402,-1,0,SIN:SA:OCE87173823,Europe/Paris,,STE, +STE:SP:OCECarTER-87173906,1,"Siradan",42.965883,0.629169,-1,0,SIN:SA:OCE87173906,Europe/Paris,,STE, +STE:SP:OCECarTER-87176115,1,"Bordes-Pn-147",43.198013,0.222663,-1,0,SIN:SA:OCE87176115,Europe/Paris,,STE, +STE:SP:OCECarTER-87176131,1,"Bordes-Larrimaret",43.200259,0.221278,-1,0,SIN:SA:OCE87176131,Europe/Paris,,STE, +STE:SP:OCECarTER-87176222,1,"Lannemezan-Hôtel-Pyréné",43.124777,0.380747,-1,0,SIN:SA:OCE87176222,Europe/Paris,,STE, +STE:SP:OCECarTER-87176297,1,"Lhez",43.200586,0.196042,-1,0,SIN:SA:OCE87176297,Europe/Paris,,STE, +STE:SP:OCECarTER-87176305,1,"Mascaras-D5-N117",43.195202,0.174928,-1,0,SIN:SA:OCE87176305,Europe/Paris,,STE, +STE:SP:OCECarTER-87176313,1,"Péré",43.136932,0.310727,-1,0,SIN:SA:OCE87176313,Europe/Paris,,STE, +STE:SP:OCECarTER-87176891,1,"Tournay-N117/D28",43.183871,0.240808,-1,0,SIN:SA:OCE87176891,Europe/Paris,,STE, +STE:SP:OCECarTER-87176909,1,"Tournay-Centre",43.184163,0.245649,-1,0,SIN:SA:OCE87176909,Europe/Paris,,STE, +STE:SP:OCECarTER-87176925,1,"Tournay-Village-Retrait",43.184846,0.243364,-1,0,SIN:SA:OCE87176925,Europe/Paris,,STE, +STE:SP:OCECarTER-87176941,1,"Courbassil",42.492763,1.850478,-1,0,SIN:SA:OCE87176941,Europe/Paris,,STE, +STE:SP:OCECarTER-87176966,1,"Ruites",42.475399,1.872722,-1,0,SIN:SA:OCE87176966,Europe/Paris,,STE, +STE:SP:OCECarTER-87176974,1,"Gourdan-Polignan-Lycée",43.073697,0.584934,-1,0,SIN:SA:OCE87176974,Europe/Paris,,STE, +STE:SP:OCECarTER-87176990,1,"Lanespède",43.167313,0.266166,-1,0,SIN:SA:OCE87176990,Europe/Paris,,STE, +STE:SP:OCECarTER-87201541,1,"Châteauroux Gare Rout.",46.809648,1.698686,-1,0,SIN:SA:OCE87201541,Europe/Paris,,STE, +STE:SP:OCECarTER-87201582,1,"St-Gaultier-Gendarmerie",46.634292,1.418469,-1,0,SIN:SA:OCE87201582,Europe/Paris,,STE, +STE:SP:OCECarTER-87201608,1,"Le-Blanc-Pl-du-Bateau",46.630748,1.063564,-1,0,SIN:SA:OCE87201608,Europe/Paris,,STE, +STE:SP:OCECarTER-87202440,1,"St-Savin",46.565795,0.863838,-1,0,SIN:SA:OCE87202440,Europe/Paris,,STE, +STE:SP:OCECarTER-87202465,1,"Chauvigny",46.569697,0.644031,-1,0,SIN:SA:OCE87202465,Europe/Paris,,STE, +STE:SP:OCECarTER-87202481,1,"Poitiers-Gare-Routière",46.582767,0.334016,-1,0,SIN:SA:OCE87202481,Europe/Paris,,STE, +STE:SP:OCECarTER-87333005,1,"Pouzauges (centre)",46.780272,-0.839449,-1,0,SIN:SA:OCE87333005,Europe/Paris,,STE, +STE:SP:OCECarTER-87344440,1,"Ste Gemme",46.90166,-0.287785,-1,0,SIN:SA:OCE87344440,Europe/Paris,,STE, +STE:SP:OCECarTER-87344598,1,"St-Angel",45.503939,2.23159,-1,0,SIN:SA:OCE87344598,Europe/Paris,,STE, +STE:SP:OCECarTER-87361980,1,"Rosiers-d'Egletons",45.376396,2.0081,-1,0,SIN:SA:OCE87361980,Europe/Paris,,STE, +STE:SP:OCECarTER-87395947,1,"Mauriac-Lycée-Cortat",45.213365,2.341224,-1,0,SIN:SA:OCE87395947,Europe/Paris,,STE, +STE:SP:OCECarTER-87407536,1,"Bourg-Lastice-Pl.-Poste",45.648355,2.561512,-1,0,SIN:SA:OCE87407536,Europe/Paris,,STE, +STE:SP:OCECarTER-87407650,1,"Feniers",45.324249,2.770679,-1,0,SIN:SA:OCE87407650,Europe/Paris,,STE, +STE:SP:OCECarTER-87408831,1,"Quatre-Routes-de-Saigne",45.353969,2.463645,-1,0,SIN:SA:OCE87408831,Europe/Paris,,STE, +STE:SP:OCECarTER-87408963,1,"Riom-es-Montagne-Cliniq",45.281652,2.6596,-1,0,SIN:SA:OCE87408963,Europe/Paris,,STE, +STE:SP:OCECarTER-87417808,1,"Ajain",46.207141,1.997206,-1,0,SIN:SA:OCE87417808,Europe/Paris,,STE, +STE:SP:OCECarTER-87417865,1,"Eyrein",45.341918,1.932557,-1,0,SIN:SA:OCE87417865,Europe/Paris,,STE, +STE:SP:OCECarTER-87417881,1,"Maussac-le-Poteau",45.468321,2.143208,-1,0,SIN:SA:OCE87417881,Europe/Paris,,STE, +STE:SP:OCECarTER-87417907,1,"Ussel-Place-Henri-Queui",45.549722,2.307317,-1,0,SIN:SA:OCE87417907,Europe/Paris,,STE, +STE:SP:OCECarTER-87439943,1,"Capens-la-Girouette",43.342765,1.254002,-1,0,SIN:SA:OCE87439943,Europe/Paris,,STE, +STE:SP:OCECarTER-87439968,1,"Capvern-le-Laca",43.123364,0.296212,-1,0,SIN:SA:OCE87439968,Europe/Paris,,STE, +STE:SP:OCECarTER-87439976,1,"Capvern-Mairie",43.102237,0.31575,-1,0,SIN:SA:OCE87439976,Europe/Paris,,STE, +STE:SP:OCECarTER-87439992,1,"Decazeville-Lycée-Polyv",44.567549,2.252221,-1,0,SIN:SA:OCE87439992,Europe/Paris,,STE, +STE:SP:OCECarTER-87440016,1,"Fouillade (la)",27.140973,-3.404561,-1,0,SIN:SA:OCE87440016,Europe/Paris,,STE, +STE:SP:OCECarTER-87440099,1,"Le-Rouziet-ParcAventure",42.938321,0.645222,-1,0,SIN:SA:OCE87440099,Europe/Paris,,STE, +STE:SP:OCECarTER-87440107,1,"Loupiac-Café",44.539791,2.025471,-1,0,SIN:SA:OCE87440107,Europe/Paris,,STE, +STE:SP:OCECarTER-87440313,1,"Rémy-12 (st)",44.399046,2.040022,-1,0,SIN:SA:OCE87440313,Europe/Paris,,STE, +STE:SP:OCECarTER-87440339,1,"Tarbes-Gare-Routière",43.23038,0.079515,-1,0,SIN:SA:OCE87440339,Europe/Paris,,STE, +STE:SP:OCECarTER-87440362,1,"Aubin-Cerons-Croist",44.542686,2.246034,-1,0,SIN:SA:OCE87440362,Europe/Paris,,STE, +STE:SP:OCECarTER-87445890,1,"CAPVERN LES BAINS",43.120855,0.308422,-1,0,SIN:SA:OCE87445890,Europe/Paris,,STE, +STE:SP:OCECarTER-87446948,1,"Portet-sur-Garonne-RN20",43.525873,1.401716,-1,0,SIN:SA:OCE87611400,Europe/Paris,,STE, +STE:SP:OCECarTER-87450064,1,"Meymac-Bourg",27.140973,-3.404561,-1,0,SIN:SA:OCE87450064,Europe/Paris,,STE, +STE:SP:OCECarTER-87455006,1,"Montgaillard (Ariège)",42.933608,1.634166,-1,0,SIN:SA:OCE87455006,Europe/Paris,,STE, +STE:SP:OCECarTER-87485250,1,"Gare de Mauzé",46.199688,-0.673597,-1,0,SIN:SA:OCE87485250,Europe/Paris,,STE, +STE:SP:OCECarTER-87485268,1,"Gare de Prin-Deyrançon",46.21901,-0.636465,-1,0,SIN:SA:OCE87485268,Europe/Paris,,STE, +STE:SP:OCECarTER-87485300,1,"Gare de Niort",46.319345,-0.454391,-1,0,SIN:SA:OCE87485300,Europe/Paris,,STE, +STE:SP:OCECarTER-87485326,1,"Gare de Fors",46.234539,-0.406926,-1,0,SIN:SA:OCE87485326,Europe/Paris,,STE, +STE:SP:OCECarTER-87485334,1,"Gare de Marigny (Deux-Sèvres)",46.199027,-0.428631,-1,0,SIN:SA:OCE87485334,Europe/Paris,,STE, +STE:SP:OCECarTER-87485342,1,"Gare de Beauvoir-sur-Niort",46.176702,-0.469165,-1,0,SIN:SA:OCE87485342,Europe/Paris,,STE, +STE:SP:OCECarTER-87485359,1,"Gare de Prissé-la-Charrière",46.152755,-0.493673,-1,0,SIN:SA:OCE87485359,Europe/Paris,,STE, +STE:SP:OCECarTER-87486019,1,"Gare de La Roche-sur-Yon",46.672025,-1.43568,-1,0,SIN:SA:OCE87486019,Europe/Paris,,STE, +STE:SP:OCECarTER-87486332,1,"Gare de Chantonnay",46.690119,-1.054358,-1,0,SIN:SA:OCE87486332,Europe/Paris,,STE, +STE:SP:OCECarTER-87487009,1,"Gare de Thouars",46.985249,-0.210513,-1,0,SIN:SA:OCE87487009,Europe/Paris,,STE, +STE:SP:OCECarTER-87487173,1,"Parthenay",46.648205,-0.240706,-1,0,SIN:SA:OCE87487173,Europe/Paris,,STE, +STE:SP:OCECarTER-87487231,1,"Noirterre",46.869564,-0.396173,-1,0,SIN:SA:OCE87487231,Europe/Paris,,STE, +STE:SP:OCECarTER-87487249,1,"Gare de Bressuire",46.837167,-0.496485,-1,0,SIN:SA:OCE87487249,Europe/Paris,,STE, +STE:SP:OCECarTER-87487280,1,"Gare de Cerizay",46.817312,-0.667487,-1,0,SIN:SA:OCE87487280,Europe/Paris,,STE, +STE:SP:OCECarTER-87487298,1,"St-Mesmin-le-Vieux",46.790413,-0.732186,-1,0,SIN:SA:OCE87487298,Europe/Paris,,STE, +STE:SP:OCECarTER-87487603,1,"Gare de Saumur",47.268972,-0.07143,-1,0,SIN:SA:OCE87487603,Europe/Paris,,STE, +STE:SP:OCECarTER-87487611,1,"Brion-près-Thouet",47.04872,-0.18491,-1,0,SIN:SA:OCE87487611,Europe/Paris,,STE, +STE:SP:OCECarTER-87487637,1,"Gare de Montreuil-Bellay",47.125325,-0.148041,-1,0,SIN:SA:OCE87487637,Europe/Paris,,STE, +STE:SP:OCECarTER-87489088,1,"Chiché",46.796383,-0.358058,-1,0,SIN:SA:OCE87489088,Europe/Paris,,STE, +STE:SP:OCECarTER-87491001,1,"Gare de Saintes",45.747843,-0.617576,-1,0,SIN:SA:OCE87491001,Europe/Paris,,STE, +STE:SP:OCECarTER-87491100,1,"Gare de Pons",45.578088,-0.539001,-1,0,SIN:SA:OCE87491100,Europe/Paris,,STE, +STE:SP:OCECarTER-87491142,1,"Gare de Jonzac",45.438714,-0.442003,-1,0,SIN:SA:OCE87491142,Europe/Paris,,STE, +STE:SP:OCECarTER-87491357,1,"Gare de St-Jean-d'Angély",45.940883,-0.509803,-1,0,SIN:SA:OCE87491357,Europe/Paris,,STE, +STE:SP:OCECarTER-87491779,1,"Barbezieux",45.473054,-0.151673,-1,0,SIN:SA:OCE87491779,Europe/Paris,,STE, +STE:SP:OCECarTER-87491803,1,"Gare de Royan",45.625515,-1.017198,-1,0,SIN:SA:OCE87491803,Europe/Paris,,STE, +STE:SP:OCECarTER-87491811,1,"Gare de Saujon",45.667047,-0.930584,-1,0,SIN:SA:OCE87491811,Europe/Paris,,STE, +STE:SP:OCECarTER-87517953,1,"Le Baladou",44.920852,1.555894,-1,0,SIN:SA:OCE87517953,Europe/Paris,,STE, +STE:SP:OCECarTER-87519009,1,"Ayron",46.659721,0.078881,-1,0,SIN:SA:OCE87519009,Europe/Paris,,STE, +STE:SP:OCECarTER-87534073,1,"Rochefort-Montagne",45.687115,2.805446,-1,0,SIN:SA:OCE87534073,Europe/Paris,,STE, +STE:SP:OCECarTER-87534081,1,"Lanobre",45.436974,2.533923,-1,0,SIN:SA:OCE87534081,Europe/Paris,,STE, +STE:SP:OCECarTER-87534099,1,"Bort-les-Orgues-Ville",45.399326,2.499248,-1,0,SIN:SA:OCE87534099,Europe/Paris,,STE, +STE:SP:OCECarTER-87534107,1,"Tauves",45.560312,2.622102,-1,0,SIN:SA:OCE87534107,Europe/Paris,,STE, +STE:SP:OCECarTER-87551945,1,"Toulouse-Argoulets",27.140973,-3.404561,-1,0,STE:SA:OCE87551945,Europe/Paris,,STE, +STE:SP:OCECarTER-87571687,1,"Gare de Chinon",47.163053,0.252044,-1,0,SIN:SA:OCE87571687,Europe/Paris,,STE, +STE:SP:OCECarTER-87571703,1,"La Roche-Clermault",47.140127,0.194878,-1,0,SIN:SA:OCE87571703,Europe/Paris,,STE, +STE:SP:OCECarTER-87571711,1,"Beuxes",47.094612,0.176771,-1,0,SIN:SA:OCE87571711,Europe/Paris,,STE, +STE:SP:OCECarTER-87571729,1,"Basses-Sammarçolles",47.035547,0.122767,-1,0,SIN:SA:OCE87571729,Europe/Paris,,STE, +STE:SP:OCECarTER-87575001,1,"Gare de Poitiers",46.582183,0.333084,-1,0,SIN:SA:OCE87575001,Europe/Paris,,STE, +STE:SP:OCECarTER-87575084,1,"Loudun",47.016026,0.083345,-1,0,SIN:SA:OCE87575084,Europe/Paris,,STE, +STE:SP:OCECarTER-87575100,1,"Arçay",46.971648,0.011179,-1,0,SIN:SA:OCE87575100,Europe/Paris,,STE, +STE:SP:OCECarTER-87575142,1,"Gare de Chatellerault",46.818565,0.549218,-1,0,SIN:SA:OCE87575142,Europe/Paris,,STE, +STE:SP:OCECarTER-87575175,1,"Gare de Naintré-les-Barres",46.759517,0.496071,-1,0,SIN:SA:OCE87575175,Europe/Paris,,STE, +STE:SP:OCECarTER-87575183,1,"Gare de La Tricherie",46.728667,0.440467,-1,0,SIN:SA:OCE87575183,Europe/Paris,,STE, +STE:SP:OCECarTER-87575209,1,"Pas-de-Jeu",46.975275,-0.041957,-1,0,SIN:SA:OCE87575209,Europe/Paris,,STE, +STE:SP:OCECarTER-87575217,1,"Gare de Jaunay-Clan",46.682305,0.38189,-1,0,SIN:SA:OCE87575217,Europe/Paris,,STE, +STE:SP:OCECarTER-87575480,1,"Gare de Montmorillon",46.417332,0.873756,-1,0,SIN:SA:OCE87575480,Europe/Paris,,STE, +STE:SP:OCECarTER-87575571,1,"Chalandray",46.664462,-0.002988,-1,0,SIN:SA:OCE87575571,Europe/Paris,,STE, +STE:SP:OCECarTER-87575589,1,"La Ferrière-en-Parthe.",46.663372,-0.073082,-1,0,SIN:SA:OCE87575589,Europe/Paris,,STE, +STE:SP:OCECarTER-87575597,1,"La Peyratte",46.657874,-0.160099,-1,0,SIN:SA:OCE87575597,Europe/Paris,,STE, +STE:SP:OCECarTER-87575845,1,"Gare de Lussac-les-Châteaux",46.405141,0.718701,-1,0,SIN:SA:OCE87575845,Europe/Paris,,STE, +STE:SP:OCECarTER-87577395,1,"Vouillé",46.646601,0.170493,-1,0,SIN:SA:OCE87577395,Europe/Paris,,STE, +STE:SP:OCECarTER-87581009,1,"Gare de Bordeaux-St-Jean",44.82654,-0.556194,-1,0,SIN:SA:OCE87581009,Europe/Paris,,STE, +STE:SP:OCECarTER-87581751,1,"Gare de Pessac",44.804597,-0.631749,-1,0,STE:SA:OCE87581751,Europe/Paris,,STE, +STE:SP:OCECarTER-87581793,1,"Gare de Alouette-France",44.793502,-0.659614,-1,0,SIN:SA:OCE87581793,Europe/Paris,,STE, +STE:SP:OCECarTER-87582403,1,"Gare de Gazinet-Cestas",44.772233,-0.699428,-1,0,SIN:SA:OCE87582403,Europe/Paris,,STE, +STE:SP:OCECarTER-87582445,1,"Gare de Marcheprime",44.69057,-0.853801,-1,0,SIN:SA:OCE87582445,Europe/Paris,,STE, +STE:SP:OCECarTER-87582478,1,"Gare de Biganos-Facture",44.637482,-0.96602,-1,0,STE:SA:OCE87582478,Europe/Paris,,STE, +STE:SP:OCECarTER-87582536,1,"Gare de Ychoux",44.329249,-0.946197,-1,0,SIN:SA:OCE87582536,Europe/Paris,,STE, +STE:SP:OCECarTER-87582551,1,"Gare de Labouheyre",44.210577,-0.920996,-1,0,SIN:SA:OCE87582551,Europe/Paris,,STE, +STE:SP:OCECarTER-87582601,1,"Gare de Le Teich",44.632437,-1.025566,-1,0,SIN:SA:OCE87582601,Europe/Paris,,STE, +STE:SP:OCECarTER-87582619,1,"Gare de Gujan-Mestras",44.640514,-1.069084,-1,0,SIN:SA:OCE87582619,Europe/Paris,,STE, +STE:SP:OCECarTER-87582635,1,"Gare de La Hume",44.639905,-1.116065,-1,0,SIN:SA:OCE87582635,Europe/Paris,,STE, +STE:SP:OCECarTER-87582643,1,"Gare de La Teste",44.636959,-1.142979,-1,0,SIN:SA:OCE87582643,Europe/Paris,,STE, +STE:SP:OCECarTER-87582668,1,"Gare de Arcachon",44.658917,-1.165368,-1,0,SIN:SA:OCE87582668,Europe/Paris,,STE, +STE:SP:OCECarTER-87583005,1,"Gare de Angoulême",45.653935,0.164528,-1,0,SIN:SA:OCE87583005,Europe/Paris,,STE, +STE:SP:OCECarTER-87583203,1,"Gare de Ruelle",45.676224,0.221243,-1,0,SIN:SA:OCE87583203,Europe/Paris,,STE, +STE:SP:OCECarTER-87583427,1,"Gare de La Rochefoucauld",45.740192,0.389586,-1,0,SIN:SA:OCE87583427,Europe/Paris,,STE, +STE:SP:OCECarTER-87583443,1,"Gare de Chasseneuil-s-Bonnieure",45.823441,0.452062,-1,0,SIN:SA:OCE87583443,Europe/Paris,,STE, +STE:SP:OCECarTER-87583468,1,"Gare de Roumazières-Loubert",45.889361,0.578823,-1,0,SIN:SA:OCE87583468,Europe/Paris,,STE, +STE:SP:OCECarTER-87583674,1,"Gare de Montmoreau",45.398299,0.138001,-1,0,SIN:SA:OCE87583674,Europe/Paris,,STE, +STE:SP:OCECarTER-87583690,1,"Gare de Chalais",45.270675,0.04338,-1,0,SIN:SA:OCE87583690,Europe/Paris,,STE, +STE:SP:OCECarTER-87584052,1,"Gare de Libourne",44.915884,-0.236368,-1,0,SIN:SA:OCE87584052,Europe/Paris,,STE, +STE:SP:OCECarTER-87584268,1,"Gare de Bergerac",44.856801,0.490352,-1,0,SIN:SA:OCE87584268,Europe/Paris,,STE, +STE:SP:OCECarTER-87584425,1,"Gare de Couze",44.836633,0.702884,-1,0,SIN:SA:OCE87584425,Europe/Paris,,STE, +STE:SP:OCECarTER-87584441,1,"Gare de Lalinde",44.83951,0.742756,-1,0,SIN:SA:OCE87584441,Europe/Paris,,STE, +STE:SP:OCECarTER-87584466,1,"Gare de Mauzac",44.855886,0.78982,-1,0,SIN:SA:OCE87584466,Europe/Paris,,STE, +STE:SP:OCECarTER-87584474,1,"Gare de Trémolat",44.862322,0.830423,-1,0,SIN:SA:OCE87584474,Europe/Paris,,STE, +STE:SP:OCECarTER-87584508,1,"Gare de St-Denis-de-Pile",44.978579,-0.198026,-1,0,SIN:SA:OCE87584508,Europe/Paris,,STE, +STE:SP:OCECarTER-87584516,1,"Gare de Coutras",45.036654,-0.131429,-1,0,SIN:SA:OCE87584516,Europe/Paris,,STE, +STE:SP:OCECarTER-87584532,1,"Gare de Les Eglisottes",45.094265,-0.043533,-1,0,SIN:SA:OCE87584532,Europe/Paris,,STE, +STE:SP:OCECarTER-87584540,1,"Gare de St-Aigulin-la-Roche-Cha",45.157374,-0.01927,-1,0,SIN:SA:OCE87584540,Europe/Paris,,STE, +STE:SP:OCECarTER-87586008,1,"Gare de Agen",44.207972,0.620905,-1,0,SIN:SA:OCE87586008,Europe/Paris,,STE, +STE:SP:OCECarTER-87586438,1,"Gare de Penne (Lot-et-Garonne)",44.379828,0.803151,-1,0,SIN:SA:OCE87586438,Europe/Paris,,STE, +STE:SP:OCECarTER-87586453,1,"Gare de Monsempron-Libos",44.486396,0.941459,-1,0,SIN:SA:OCE87586453,Europe/Paris,,STE, +STE:SP:OCECarTER-87586495,1,"Gare de Sauveterre-la-Lémance",44.589363,1.01168,-1,0,SIN:SA:OCE87586495,Europe/Paris,,STE, +STE:SP:OCECarTER-87587931,1,"Aubin-LEP",44.529552,2.24163,-1,0,SIN:SA:OCE87587931,Europe/Paris,,STE, +STE:SP:OCECarTER-87589499,1,"Condat-Centre-Equestre",45.333813,2.758561,-1,0,SIN:SA:OCE87589499,Europe/Paris,,STE, +STE:SP:OCECarTER-87592006,1,"Gare de Limoges-Bénédictins",45.836208,1.267452,-1,0,SIN:SA:OCE87592006,Europe/Paris,,STE, +STE:SP:OCECarTER-87592022,1,"Gare de Limoges-Montjovis",45.838396,1.251627,-1,0,SIN:SA:OCE87592022,Europe/Paris,,STE, +STE:SP:OCECarTER-87592410,1,"Gare de Nieul",45.927436,1.172244,-1,0,SIN:SA:OCE87592410,Europe/Paris,,STE, +STE:SP:OCECarTER-87592444,1,"Gare de Nantiat",46.005697,1.15644,-1,0,SIN:SA:OCE87592444,Europe/Paris,,STE, +STE:SP:OCECarTER-87592485,1,"Gare de Bellac",46.125225,1.0461,-1,0,SIN:SA:OCE87592485,Europe/Paris,,STE, +STE:SP:OCECarTER-87592543,1,"Gare de Le Dorat",46.211108,1.079244,-1,0,SIN:SA:OCE87592543,Europe/Paris,,STE, +STE:SP:OCECarTER-87592667,1,"Gare de Aixe-sur-Vienne",45.796582,1.14574,-1,0,SIN:SA:OCE87592667,Europe/Paris,,STE, +STE:SP:OCECarTER-87592683,1,"Gare de St-Victurnien",45.876778,1.009728,-1,0,SIN:SA:OCE87592683,Europe/Paris,,STE, +STE:SP:OCECarTER-87592691,1,"Gare de St-Brice-sur-Vienne",45.878238,0.952428,-1,0,SIN:SA:OCE87592691,Europe/Paris,,STE, +STE:SP:OCECarTER-87592709,1,"Gare de St-Junien",45.881438,0.90049,-1,0,SIN:SA:OCE87592709,Europe/Paris,,STE, +STE:SP:OCECarTER-87592717,1,"Gare de Saillat-Chassenon",45.86951,0.811922,-1,0,SIN:SA:OCE87592717,Europe/Paris,,STE, +STE:SP:OCECarTER-87592873,1,"Gare de Chabanais",45.872554,0.716818,-1,0,SIN:SA:OCE87592873,Europe/Paris,,STE, +STE:SP:OCECarTER-87594002,1,"Gare de Brive-la-Gaillarde",45.152562,1.528623,-1,0,SIN:SA:OCE87594002,Europe/Paris,,STE, +STE:SP:OCECarTER-87594093,1,"Gare de Ussel",45.557326,2.314433,-1,0,SIN:SA:OCE87594093,Europe/Paris,,STE, +STE:SP:OCECarTER-87594119,1,"Gare de Corrèze",45.329337,1.880385,-1,0,SIN:SA:OCE87594119,Europe/Paris,,STE, +STE:SP:OCECarTER-87594135,1,"Gare de Montaignac-St-Hippolyte",45.354592,1.979534,-1,0,SIN:SA:OCE87594135,Europe/Paris,,STE, +STE:SP:OCECarTER-87594168,1,"Gare de Egletons",45.402315,2.065144,-1,0,SIN:SA:OCE87594168,Europe/Paris,,STE, +STE:SP:OCECarTER-87594275,1,"Gare de Meymac",45.530241,2.16388,-1,0,SIN:SA:OCE87594275,Europe/Paris,,STE, +STE:SP:OCECarTER-87594333,1,"Gare de Souillac",44.902337,1.465215,-1,0,SIN:SA:OCE87594333,Europe/Paris,,STE, +STE:SP:OCECarTER-87594382,1,"Gare de Condat-le-Lardin",45.126716,1.226651,-1,0,SIN:SA:OCE87594382,Europe/Paris,,STE, +STE:SP:OCECarTER-87594408,1,"Gare de Terrasson",45.13568,1.300509,-1,0,SIN:SA:OCE87594408,Europe/Paris,,STE, +STE:SP:OCECarTER-87594465,1,"Gare de Aubazine-St-Hilaire",45.181764,1.641725,-1,0,SIN:SA:OCE87594465,Europe/Paris,,STE, +STE:SP:OCECarTER-87594481,1,"Gare de Cornil",45.215275,1.697409,-1,0,SIN:SA:OCE87594481,Europe/Paris,,STE, +STE:SP:OCECarTER-87594499,1,"Gare de Tulle",45.258708,1.756432,-1,0,SIN:SA:OCE87594499,Europe/Paris,,STE, +STE:SP:OCECarTER-87594564,1,"Gare de Les Quatre-Routes",44.99702,1.644498,-1,0,SIN:SA:OCE87594564,Europe/Paris,,STE, +STE:SP:OCECarTER-87594572,1,"Gare de St-Denis-près-Martel",44.945792,1.666287,-1,0,SIN:SA:OCE87594572,Europe/Paris,,STE, +STE:SP:OCECarTER-87594705,1,"Le Pigeon",44.906052,1.534115,-1,0,SIN:SA:OCE87594705,Europe/Paris,,STE, +STE:SP:OCECarTER-87594713,1,"Martel",44.937672,1.613827,-1,0,SIN:SA:OCE87594713,Europe/Paris,,STE, +STE:SP:OCECarTER-87594754,1,"Gare de Puybrun",44.921716,1.784029,-1,0,SIN:SA:OCE87594754,Europe/Paris,,STE, +STE:SP:OCECarTER-87594762,1,"Gare de Bretenoux-Biars",44.927568,1.844204,-1,0,SIN:SA:OCE87594762,Europe/Paris,,STE, +STE:SP:OCECarTER-87595009,1,"Gare de Périgueux",45.187164,0.707181,-1,0,SIN:SA:OCE87595009,Europe/Paris,,STE, +STE:SP:OCECarTER-87595512,1,"Gare de Niversac",45.138187,0.808127,-1,0,SIN:SA:OCE87595512,Europe/Paris,,STE, +STE:SP:OCECarTER-87595579,1,"Gare de Thenon",45.160074,1.068623,-1,0,SIN:SA:OCE87595579,Europe/Paris,,STE, +STE:SP:OCECarTER-87595736,1,"Gare de Les Eyzies",44.941268,1.008275,-1,0,SIN:SA:OCE87595736,Europe/Paris,,STE, +STE:SP:OCECarTER-87595744,1,"Gare de Le Bugue",44.905774,0.942864,-1,0,SIN:SA:OCE87595744,Europe/Paris,,STE, +STE:SP:OCECarTER-87595751,1,"Gare de Le Buisson",44.847225,0.908183,-1,0,SIN:SA:OCE87595751,Europe/Paris,,STE, +STE:SP:OCECarTER-87595769,1,"Gare de Siorac-en-Périgord",44.819792,0.984227,-1,0,SIN:SA:OCE87595769,Europe/Paris,,STE, +STE:SP:OCECarTER-87595777,1,"Gare de St-Cyprien (24)",44.863325,1.043723,-1,0,SIN:SA:OCE87595777,Europe/Paris,,STE, +STE:SP:OCECarTER-87595827,1,"Gare de Sarlat",44.876656,1.222056,-1,0,SIN:SA:OCE87595827,Europe/Paris,,STE, +STE:SP:OCECarTER-87595876,1,"Gare de Belvès",44.777364,1.012014,-1,0,SIN:SA:OCE87595876,Europe/Paris,,STE, +STE:SP:OCECarTER-87595892,1,"Gare de Villefranche-Périgord",44.626975,1.049208,-1,0,SIN:SA:OCE87595892,Europe/Paris,,STE, +STE:SP:OCECarTER-87597609,1,"Gare de Guéret",46.174146,1.87917,-1,0,SIN:SA:OCE87597609,Europe/Paris,,STE, +STE:SP:OCECarTER-87597724,1,"Gare de Parsac-Gouzon",46.198312,2.174196,-1,0,SIN:SA:OCE87597724,Europe/Paris,,STE, +STE:SP:OCECarTER-87609354,1,"Bagnols-Stade",45.513781,2.59691,-1,0,SIN:SA:OCE87609354,Europe/Paris,,STE, +STE:SP:OCECarTER-87609602,1,"Aubin-Place-Monteils",44.528106,2.243782,-1,0,SIN:SA:OCE87609602,Europe/Paris,,STE, +STE:SP:OCECarTER-87609610,1,"Souillac-Renaissance",44.898632,1.475638,-1,0,SIN:SA:OCE87609610,Europe/Paris,,STE, +STE:SP:OCECarTER-87609628,1,"Martel-M.-Retraite",44.938022,1.615089,-1,0,SIN:SA:OCE87609628,Europe/Paris,,STE, +STE:SP:OCECarTER-87609636,1,"Réalville-Abri-Bus",44.119529,1.484707,-1,0,SIN:SA:OCE87609636,Europe/Paris,,STE, +STE:SP:OCECarTER-87609701,1,"Tarbes-Place-de-Verdun",43.233428,0.073187,-1,0,SIN:SA:OCE87609701,Europe/Paris,,STE, +STE:SP:OCECarTER-87611004,1,"Gare de Toulouse-Matabiau",43.611464,1.453558,-1,0,SIN:SA:OCE87611004,Europe/Paris,,STE, +STE:SP:OCECarTER-87611038,1,"Gare de Muret",43.464784,1.324162,-1,0,SIN:SA:OCE87611038,Europe/Paris,,STE, +STE:SP:OCECarTER-87611046,1,"Gare de Fauga",43.404343,1.28289,-1,0,SIN:SA:OCE87611046,Europe/Paris,,STE, +STE:SP:OCECarTER-87611053,1,"Gare de Longages-Noé",43.356207,1.251987,-1,0,SIN:SA:OCE87611053,Europe/Paris,,STE, +STE:SP:OCECarTER-87611061,1,"Gare de Carbonne",43.298197,1.212506,-1,0,SIN:SA:OCE87611061,Europe/Paris,,STE, +STE:SP:OCECarTER-87611079,1,"Gare de Cazères-sur-Garonne",43.212901,1.082767,-1,0,SIN:SA:OCE87611079,Europe/Paris,,STE, +STE:SP:OCECarTER-87611087,1,"Gare de Martres-Tolosane",43.198551,1.010304,-1,0,SIN:SA:OCE87611087,Europe/Paris,,STE, +STE:SP:OCECarTER-87611095,1,"Gare de Boussens",43.179327,0.972745,-1,0,SIN:SA:OCE87611095,Europe/Paris,,STE, +STE:SP:OCECarTER-87611103,1,"Gare de St-Martory",43.138404,0.933628,-1,0,SIN:SA:OCE87611103,Europe/Paris,,STE, +STE:SP:OCECarTER-87611137,1,"Gare de St-Gaudens",43.104956,0.729263,-1,0,SIN:SA:OCE87611137,Europe/Paris,,STE, +STE:SP:OCECarTER-87611152,1,"Gare de Montréjeau-Gourdan-Pol.",43.078057,0.573536,-1,0,SIN:SA:OCE87611152,Europe/Paris,,STE, +STE:SP:OCECarTER-87611160,1,"Labroq.-St-Bert.-de-Com",43.038185,0.593817,-1,0,SIN:SA:OCE87611160,Europe/Paris,,STE, +STE:SP:OCECarTER-87611178,1,"Loures-Barbazan",43.02113,0.610449,-1,0,SIN:SA:OCE87611178,Europe/Paris,,STE, +STE:SP:OCECarTER-87611194,1,"Marignac-St-Béat",42.915549,0.651756,-1,0,SIN:SA:OCE87611194,Europe/Paris,,STE, +STE:SP:OCECarTER-87611210,1,"Lège",42.87718,0.610889,-1,0,SIN:SA:OCE87611210,Europe/Paris,,STE, +STE:SP:OCECarTER-87611228,1,"Cier-de-Luchon",42.852642,0.602415,-1,0,SIN:SA:OCE87611228,Europe/Paris,,STE, +STE:SP:OCECarTER-87611236,1,"Luchon",42.797278,0.596609,-1,0,SIN:SA:OCE87611236,Europe/Paris,,STE, +STE:SP:OCECarTER-87611244,1,"Gare de Montauban-Ville-Bourbon",44.014639,1.341974,-1,0,SIN:SA:OCE87611244,Europe/Paris,,STE, +STE:SP:OCECarTER-87611327,1,"Gare de Varilhes",43.04149,1.628576,-1,0,SIN:SA:OCE87611327,Europe/Paris,,STE, +STE:SP:OCECarTER-87611343,1,"Gare de Pamiers",43.116175,1.618998,-1,0,SIN:SA:OCE87611343,Europe/Paris,,STE, +STE:SP:OCECarTER-87611350,1,"Gare de Vernet-d'Ariège",43.189488,1.611697,-1,0,SIN:SA:OCE87611350,Europe/Paris,,STE, +STE:SP:OCECarTER-87611368,1,"Gare de Saverdun",43.239421,1.570422,-1,0,SIN:SA:OCE87611368,Europe/Paris,,STE, +STE:SP:OCECarTER-87611376,1,"Gare de Cintegabelle",43.305347,1.521085,-1,0,SIN:SA:OCE87611376,Europe/Paris,,STE, +STE:SP:OCECarTER-87611384,1,"Gare de Auterive",43.348835,1.468624,-1,0,SIN:SA:OCE87611384,Europe/Paris,,STE, +STE:SP:OCECarTER-87611392,1,"Gare de Venerque-le-Vernet",43.433328,1.425869,-1,0,SIN:SA:OCE87611392,Europe/Paris,,STE, +STE:SP:OCECarTER-87611400,1,"Gare de Portet-St-Simon",43.530781,1.405897,-1,0,SIN:SA:OCE87611400,Europe/Paris,,STE, +STE:SP:OCECarTER-87611483,1,"Gare de Latour-de-Carol-Enveitg",42.458157,1.90584,-1,0,SIN:SA:OCE87611483,Europe/Paris,,STE, +STE:SP:OCECarTER-87611491,1,"Porta",42.520349,1.822342,-1,0,SIN:SA:OCE87611491,Europe/Paris,,STE, +STE:SP:OCECarTER-87611509,1,"Gare de Porte-Puymorens",42.538759,1.82485,-1,0,SIN:SA:OCE87611509,Europe/Paris,,STE, +STE:SP:OCECarTER-87611517,1,"Gare de Andorre-L'Hospitalet",42.588385,1.798515,-1,0,SIN:SA:OCE87611517,Europe/Paris,,STE, +STE:SP:OCECarTER-87611533,1,"Gare de Ax-les-Thermes",42.724805,1.833315,-1,0,SIN:SA:OCE87611533,Europe/Paris,,STE, +STE:SP:OCECarTER-87611558,1,"Gare de Luzenac-Garanou",42.764444,1.753154,-1,0,SIN:SA:OCE87611558,Europe/Paris,,STE, +STE:SP:OCECarTER-87611566,1,"Vèbre-La-Remise",42.773916,1.719166,-1,0,SIN:SA:OCE87611566,Europe/Paris,,STE, +STE:SP:OCECarTER-87611582,1,"Ussat-les-Bains-Centre",42.821052,1.621331,-1,0,SIN:SA:OCE87611582,Europe/Paris,,STE, +STE:SP:OCECarTER-87611590,1,"Gare de Tarascon-sur-Ariège",42.849453,1.600031,-1,0,SIN:SA:OCE87611590,Europe/Paris,,STE, +STE:SP:OCECarTER-87611608,1,"St-Paul-St-Antoine",42.919386,1.640719,-1,0,SIN:SA:OCE87611608,Europe/Paris,,STE, +STE:SP:OCECarTER-87611616,1,"Gare de Foix",42.969299,1.607394,-1,0,SIN:SA:OCE87611616,Europe/Paris,,STE, +STE:SP:OCECarTER-87611624,1,"Gare de St-Jean-de-Verges",43.012344,1.608147,-1,0,SIN:SA:OCE87611624,Europe/Paris,,STE, +STE:SP:OCECarTER-87611715,1,"Antignac (Hte-Garonne)",42.826082,0.599465,-1,0,SIN:SA:OCE87611715,Europe/Paris,,STE, +STE:SP:OCECarTER-87611848,1,"Gare de Montrabé",43.645113,1.524062,-1,0,SIN:SA:OCE87611848,Europe/Paris,,STE, +STE:SP:OCECarTER-87611863,1,"Gare de Valence-d'Agen",44.111846,0.891791,-1,0,SIN:SA:OCE87611863,Europe/Paris,,STE, +STE:SP:OCECarTER-87611889,1,"Gare de Moissac",44.102144,1.07749,-1,0,SIN:SA:OCE87611889,Europe/Paris,,STE, +STE:SP:OCECarTER-87611897,1,"Gare de Castelsarrasin",44.040283,1.114178,-1,0,SIN:SA:OCE87611897,Europe/Paris,,STE, +STE:SP:OCECarTER-87611970,1,"PONT DE GURAN",42.88512,0.616895,-1,0,SIN:SA:OCE87611970,Europe/Paris,,STE, +STE:SP:OCECarTER-87612358,1,"Seilhan-Le-Bazert",43.060663,0.590723,-1,0,SIN:SA:OCE87612358,Europe/Paris,,STE, +STE:SP:OCECarTER-87613000,1,"Gare de Cahors",44.44916,1.433238,-1,0,SIN:SA:OCE87613000,Europe/Paris,,STE, +STE:SP:OCECarTER-87613018,1,"Capens",43.337142,1.259612,-1,0,SIN:SA:OCE87613018,Europe/Paris,,STE, +STE:SP:OCECarTER-87613059,1,"Gare de Gramat",44.77349,1.722371,-1,0,SIN:SA:OCE87613059,Europe/Paris,,STE, +STE:SP:OCECarTER-87613075,1,"Gare de Assier",44.674593,1.869747,-1,0,SIN:SA:OCE87613075,Europe/Paris,,STE, +STE:SP:OCECarTER-87613091,1,"Gare de Figeac",44.603514,2.037077,-1,0,SIN:SA:OCE87613091,Europe/Paris,,STE, +STE:SP:OCECarTER-87613109,1,"Gare de Capdenac",44.577656,2.078902,-1,0,SIN:SA:OCE87613109,Europe/Paris,,STE, +STE:SP:OCECarTER-87613224,1,"Gare de Aubin",44.527356,2.239559,-1,0,SIN:SA:OCE87613224,Europe/Paris,,STE, +STE:SP:OCECarTER-87613257,1,"Gare de St-Christophe",44.464687,2.407487,-1,0,SIN:SA:OCE87613257,Europe/Paris,,STE, +STE:SP:OCECarTER-87613331,1,"Montpezat",44.268105,1.504628,-1,0,SIN:SA:OCE87613331,Europe/Paris,,STE, +STE:SP:OCECarTER-87613356,1,"Gare de Caussade (T.-et-G.)",44.162304,1.533453,-1,0,SIN:SA:OCE87613356,Europe/Paris,,STE, +STE:SP:OCECarTER-87613422,1,"Gare de Rodez",44.362652,2.580253,-1,0,SIN:SA:OCE87613422,Europe/Paris,,STE, +STE:SP:OCECarTER-87613471,1,"Gare de Laguépie",44.145489,1.96863,-1,0,SIN:SA:OCE87613471,Europe/Paris,,STE, +STE:SP:OCECarTER-87613604,1,"Gare de Bagnac",44.66528,2.160163,-1,0,SIN:SA:OCE87613604,Europe/Paris,,STE, +STE:SP:OCECarTER-87613661,1,"Gare de Viviez-Decazeville",44.55704,2.218024,-1,0,SIN:SA:OCE87613661,Europe/Paris,,STE, +STE:SP:OCECarTER-87613679,1,"Decazeville-Centre",44.563672,2.240842,-1,0,SIN:SA:OCE87613679,Europe/Paris,,STE, +STE:SP:OCECarTER-87613885,1,"Villeneuve-d'Aveyron",44.428447,2.065619,-1,0,SIN:SA:OCE87613885,Europe/Paris,,STE, +STE:SP:OCECarTER-87613893,1,"Gare de Villefranche-Rouergue",44.347681,2.036583,-1,0,SIN:SA:OCE87613893,Europe/Paris,,STE, +STE:SP:OCECarTER-87615005,1,"Gare de Albi-Ville",43.922036,2.138635,-1,0,SIN:SA:OCE87615005,Europe/Paris,,STE, +STE:SP:OCECarTER-87615195,1,"Gare de Albi-Madeleine.",43.937899,2.141168,-1,0,SIN:SA:OCE87615195,Europe/Paris,,STE, +STE:SP:OCECarTER-87615245,1,"Gare de Tessonnières",43.928396,1.93741,-1,0,SIN:SA:OCE87615245,Europe/Paris,,STE, +STE:SP:OCECarTER-87615310,1,"Gare de Lisle-sur-Tarn",43.856228,1.807745,-1,0,SIN:SA:OCE87615310,Europe/Paris,,STE, +STE:SP:OCECarTER-87615328,1,"Gare de Rabastens-Couffouleux",43.819489,1.730763,-1,0,SIN:SA:OCE87615328,Europe/Paris,,STE, +STE:SP:OCECarTER-87615344,1,"Gare de St-Sulpice (Tarn)",43.775412,1.681037,-1,0,SIN:SA:OCE87615344,Europe/Paris,,STE, +STE:SP:OCECarTER-87615369,1,"Gare de Montastruc-la-Conseil.",43.715998,1.597894,-1,0,SIN:SA:OCE87615369,Europe/Paris,,STE, +STE:SP:OCECarTER-87615377,1,"Gare de Gragnague",43.695795,1.567568,-1,0,SIN:SA:OCE87615377,Europe/Paris,,STE, +STE:SP:OCECarTER-87615419,1,"Gare de Marssac-sur-Tarn",43.915095,2.026759,-1,0,SIN:SA:OCE87615419,Europe/Paris,,STE, +STE:SP:OCECarTER-87615468,1,"Gare de Castres",43.597754,2.229263,-1,0,SIN:SA:OCE87615468,Europe/Paris,,STE, +STE:SP:OCECarTER-87615476,1,"Gare de Lavaur",43.703391,1.81303,-1,0,SIN:SA:OCE87615476,Europe/Paris,,STE, +STE:SP:OCECarTER-87615492,1,"Gare de Vielmur-sur-Agout",43.624101,2.089438,-1,0,SIN:SA:OCE87615492,Europe/Paris,,STE, +STE:SP:OCECarTER-87615542,1,"Gare de Mazamet",43.497545,2.374424,-1,0,SIN:SA:OCE87615542,Europe/Paris,,STE, +STE:SP:OCECarTER-87615625,1,"Gare de Carmaux",44.049004,2.152389,-1,0,SIN:SA:OCE87615625,Europe/Paris,,STE, +STE:SP:OCECarTER-87615674,1,"Gare de Tanus",44.100299,2.314931,-1,0,SIN:SA:OCE87615674,Europe/Paris,,STE, +STE:SP:OCECarTER-87615732,1,"Gare de Naucelle",44.18567,2.363256,-1,0,SIN:SA:OCE87615732,Europe/Paris,,STE, +STE:SP:OCECarTER-87615757,1,"Gare de Baraqueville-Carce.Pey.",44.270382,2.427506,-1,0,SIN:SA:OCE87615757,Europe/Paris,,STE, +STE:SP:OCECarTER-87615773,1,"Gare de Luc-Primaube",44.291389,2.554483,-1,0,SIN:SA:OCE87615773,Europe/Paris,,STE, +STE:SP:OCECarTER-87618116,1,"Gare de Pins Justaret",43.480772,1.399589,-1,0,SIN:SA:OCE87618116,Europe/Paris,,STE, +STE:SP:OCECarTER-87618348,1,"Mercus-Garrabet-Centre",42.877096,1.627208,-1,0,SIN:SA:OCE87618348,Europe/Paris,,STE, +STE:SP:OCECarTER-87618702,1,"Galié",42.989795,0.625365,-1,0,SIN:SA:OCE87618702,Europe/Paris,,STE, +STE:SP:OCECarTER-87618710,1,"Saléchan-Siradan",42.962994,0.631689,-1,0,SIN:SA:OCE87618710,Europe/Paris,,STE, +STE:SP:OCECarTER-87620195,1,"St-Sulpice-sur-Lèze",43.329798,1.322298,-1,0,SIN:SA:OCE87620195,Europe/Paris,,STE, +STE:SP:OCECarTER-87633958,1,"Lourdes-Lycée-d'-Arrouz",43.091985,-0.049631,-1,0,SIN:SA:OCE87633958,Europe/Paris,,STE, +STE:SP:OCECarTER-87640649,1,"Chirac-Ville",44.52286,3.267369,-1,0,SIN:SA:OCE87640649,Europe/Paris,,STE, +STE:SP:OCECarTER-87640698,1,"Le-Monastier-Ville",44.51564,3.255371,-1,0,SIN:SA:OCE87640698,Europe/Paris,,STE, +STE:SP:OCECarTER-87641001,1,"Gare de Montluçon-Ville",46.337875,2.596412,-1,0,SIN:SA:OCE87641001,Europe/Paris,,STE, +STE:SP:OCECarTER-87641241,1,"Eygurande-Merlines",45.645326,2.460978,-1,0,SIN:SA:OCE87641241,Europe/Paris,,STE, +STE:SP:OCECarTER-87641274,1,"Laqueuille",45.64695,2.704938,-1,0,SIN:SA:OCE87641274,Europe/Paris,,STE, +STE:SP:OCECarTER-87645002,1,"Gare de Aurillac",44.920986,2.435547,-1,0,SIN:SA:OCE87645002,Europe/Paris,,STE, +STE:SP:OCECarTER-87645135,1,"Gare de Laroquebrou",44.964201,2.192841,-1,0,SIN:SA:OCE87645135,Europe/Paris,,STE, +STE:SP:OCECarTER-87645168,1,"Gare de Maurs",44.706133,2.199697,-1,0,SIN:SA:OCE87645168,Europe/Paris,,STE, +STE:SP:OCECarTER-87645192,1,"Gare de Le Rouget",44.856555,2.235418,-1,0,SIN:SA:OCE87645192,Europe/Paris,,STE, +STE:SP:OCECarTER-87645267,1,"Mauriac",45.221784,2.34489,-1,0,SIN:SA:OCE87645267,Europe/Paris,,STE, +STE:SP:OCECarTER-87645283,1,"Vendes",45.296779,2.388505,-1,0,SIN:SA:OCE87645283,Europe/Paris,,STE, +STE:SP:OCECarTER-87645507,1,"Gare de Neussargues",45.125386,2.979126,-1,0,SIN:SA:OCE87645507,Europe/Paris,,STE, +STE:SP:OCECarTER-87645606,1,"Ste-Anastasie",45.17272,2.968379,-1,0,SIN:SA:OCE87645606,Europe/Paris,,STE, +STE:SP:OCECarTER-87645614,1,"Allanche",45.22967,2.931457,-1,0,SIN:SA:OCE87645614,Europe/Paris,,STE, +STE:SP:OCECarTER-87645705,1,"Bort-les-Orgues",45.406357,2.502563,-1,0,SIN:SA:OCE87645705,Europe/Paris,,STE, +STE:SP:OCECarTER-87661116,1,"Noe-College",43.347101,1.249056,-1,0,SIN:SA:OCE87661116,Europe/Paris,,STE, +STE:SP:OCECarTER-87661132,1,"Rocamadour-Centre",27.140973,-3.404561,-1,0,SIN:SA:OCE87661132,Europe/Paris,,STE, +STE:SP:OCECarTER-87671008,1,"Gare de Tarbes",43.239803,0.069407,-1,0,SIN:SA:OCE87671008,Europe/Paris,,STE, +STE:SP:OCECarTER-87671016,1,"Gare de Mont-de-Marsan",43.885223,-0.505091,-1,0,SIN:SA:OCE87671016,Europe/Paris,,STE, +STE:SP:OCECarTER-87671123,1,"Gare de Lannemezan",43.114308,0.38769,-1,0,SIN:SA:OCE87671123,Europe/Paris,,STE, +STE:SP:OCECarTER-87671156,1,"Gare de Capvern",43.103057,0.32974,-1,0,SIN:SA:OCE87671156,Europe/Paris,,STE, +STE:SP:OCECarTER-87671164,1,"Ozon-Lanespède",43.170809,0.255467,-1,0,SIN:SA:OCE87671164,Europe/Paris,,STE, +STE:SP:OCECarTER-87671172,1,"Gare de Tournay (Htes-Pyrénées)",43.183502,0.238967,-1,0,SIN:SA:OCE87671172,Europe/Paris,,STE, +STE:SP:OCECarTER-87671180,1,"Bordes-Lhez",43.197943,0.225503,-1,0,SIN:SA:OCE87671180,Europe/Paris,,STE, +STE:SP:OCECarTER-87671339,1,"Gare de Lourdes",43.100429,-0.042192,-1,0,SIN:SA:OCE87671339,Europe/Paris,,STE, +STE:SP:OCECarTER-87671479,1,"Gare de Arengosse",44.006926,-0.808738,-1,0,SIN:SA:OCE87671479,Europe/Paris,,STE, +STE:SP:OCECarTER-87671487,1,"Gare de Ygos",43.978221,-0.736139,-1,0,SIN:SA:OCE87671487,Europe/Paris,,STE, +STE:SP:OCECarTER-87671495,1,"Gare de St-Martin-d'Oney",43.929892,-0.651486,-1,0,SIN:SA:OCE87671495,Europe/Paris,,STE, +STE:SP:OCECarTER-87672006,1,"Gare de Pau",43.291667,-0.36965,-1,0,SIN:SA:OCE87672006,Europe/Paris,,STE, +STE:SP:OCECarTER-87672139,1,"Gare de Coarraze-Nay",43.181832,-0.241756,-1,0,SIN:SA:OCE87672139,Europe/Paris,,STE, +STE:SP:OCECarTER-87673004,1,"Gare de Bayonne",43.496759,-1.470398,-1,0,SIN:SA:OCE87673004,Europe/Paris,,STE, +STE:SP:OCECarTER-87673095,1,"Gare de Boucau",43.523368,-1.490435,-1,0,SIN:SA:OCE87673095,Europe/Paris,,STE, +STE:SP:OCECarTER-87673103,1,"Gare de Morcenx",44.033673,-0.908481,-1,0,SIN:SA:OCE87673103,Europe/Paris,,STE, +STE:SP:OCECarTER-87673202,1,"Gare de Dax",43.720667,-1.050324,-1,0,SIN:SA:OCE87673202,Europe/Paris,,STE, +STE:SP:OCECarTER-87673269,1,"Gare de St-Geours-de-Maremne",43.6712,-1.241307,-1,0,SIN:SA:OCE87673269,Europe/Paris,,STE, +STE:SP:OCECarTER-87673277,1,"Gare de St-Vincent-de-Tyrosse",43.657808,-1.306385,-1,0,SIN:SA:OCE87673277,Europe/Paris,,STE, +STE:SP:OCECarTER-87673285,1,"Gare de Bénesse-Maremne",43.627647,-1.369912,-1,0,SIN:SA:OCE87673285,Europe/Paris,,STE, +STE:SP:OCECarTER-87673293,1,"Gare de Labenne",43.587104,-1.428925,-1,0,SIN:SA:OCE87673293,Europe/Paris,,STE, +STE:SP:OCECarTER-87673319,1,"Gare de Ondres",43.568858,-1.457162,-1,0,SIN:SA:OCE87673319,Europe/Paris,,STE, +STE:SP:OCECarTER-87673400,1,"Gare de Biarritz",43.459377,-1.546011,-1,0,SIN:SA:OCE87673400,Europe/Paris,,STE, +STE:SP:OCECarTER-87673459,1,"Gare de Guéthary",43.425428,-1.609927,-1,0,SIN:SA:OCE87673459,Europe/Paris,,STE, +STE:SP:OCECarTER-87677005,1,"Gare de Hendaye",43.352995,-1.781868,-1,0,SIN:SA:OCE87677005,Europe/Paris,,STE, +STE:SP:OCECarTER-87677104,1,"Gare de Les Deux-Jumeaux (64)",43.370038,-1.764419,-1,0,SIN:SA:OCE87677104,Europe/Paris,,STE, +STE:SP:OCECarTER-87677120,1,"Gare de St-Jean-de-Luz-Ciboure",43.385845,-1.661162,-1,0,SIN:SA:OCE87677120,Europe/Paris,,STE, +STE:SP:OCECarTER-87680553,1,"Riom_Es_M_la_Poste.",27.140973,-3.404561,-1,0,SIN:SA:OCE87440016,Europe/Paris,,STE, +STE:SP:OCECarTER-87691279,1,"Theix-Centre",27.140973,-3.404561,-1,0,SIN:SA:OCE87691279,Europe/Paris,,STE, +STE:SP:OCECarTER-87693390,1,"Egletons-ville",27.140973,-3.404561,-1,0,SIN:SA:OCE87693390,Europe/Paris,,STE, +STE:SP:OCECarTER-87693630,1,"Limoges-CIEL",27.140973,-3.404561,-1,0,STE:SA:OCE87693630,Europe/Paris,,STE, +STE:SP:OCECarTER-87695015,1,"Luchon-Richelieu",27.140973,-3.404561,-1,0,SIN:SA:OCE87695015,Europe/Paris,,STE, +STE:SP:OCECarTER-87695031,1,"Muna-Burgalays",27.140973,-3.404561,-1,0,SIN:SA:OCE87695031,Europe/Paris,,STE, +STE:SP:OCECarTER-87702951,1,"Gaillac-Gare-Routier",27.140973,-3.404561,-1,0,SIN:SA:OCE87702951,Europe/Paris,,STE, +STE:SP:OCECarTER-87726802,1,"Gare de Roanne",46.040211,4.063135,-1,0,SIN:SA:OCE87726802,Europe/Paris,,STE, +STE:SP:OCECarTER-87734004,1,"Gare de Clermont-Ferrand",45.778569,3.100519,-1,0,SIN:SA:OCE87734004,Europe/Paris,,STE, +STE:SP:OCECarTER-87734871,1,"Gare de Massiac-Blesle",45.253703,3.196585,-1,0,SIN:SA:OCE87734871,Europe/Paris,,STE, +STE:SP:OCECarTER-87773002,1,"Gare de Montpellier-Saint-Roch",43.605834,3.88236,-1,0,SIN:SA:OCE87773002,Europe/Paris,,STE, +STE:SP:OCECarTER-87783001,1,"Gare de Millau",44.10187,3.074898,-1,0,SIN:SA:OCE87783001,Europe/Paris,,STE, +STE:SP:OCECarTER-87783175,1,"Gare de St-Flour-Chaudes-Aigues",45.034838,3.106166,-1,0,SIN:SA:OCE87783175,Europe/Paris,,STE, +STE:SP:OCECarTER-87783241,1,"Gare de St-Chély-d'Apcher",44.801701,3.270741,-1,0,SIN:SA:OCE87783241,Europe/Paris,,STE, +STE:SP:OCECarTER-87783266,1,"Gare de Aumont-Aubrac",44.71814,3.283415,-1,0,SIN:SA:OCE87783266,Europe/Paris,,STE, +STE:SP:OCECarTER-87783282,1,"Gare de Marvejols",44.544616,3.281048,-1,0,SIN:SA:OCE87783282,Europe/Paris,,STE, +STE:SP:OCECarTER-87783308,1,"Gare de Le Monastier",44.509002,3.252196,-1,0,SIN:SA:OCE87783308,Europe/Paris,,STE, +STE:SP:OCECarTER-87783324,1,"Gare de Banassac-la-Canourgue",44.447642,3.19621,-1,0,SIN:SA:OCE87783324,Europe/Paris,,STE, +STE:SP:OCECarTER-87783365,1,"Gare de Séverac-D'Aveyron",44.325205,3.057387,-1,0,SIN:SA:OCE87783365,Europe/Paris,,STE, +STE:SP:OCECarTER-87783423,1,"Gare de St-Georges-de-Luzençon",44.066024,2.983914,-1,0,SIN:SA:OCE87783423,Europe/Paris,,STE, +STE:SP:OCECarTER-87783431,1,"Gare de St-Rome-de-Cernon",44.014575,2.967617,-1,0,SIN:SA:OCE87783431,Europe/Paris,,STE, +STE:SP:OCECarTER-87783480,1,"St-Affrique",43.956689,2.881909,-1,0,SIN:SA:OCE87783480,Europe/Paris,,STE, +STE:SP:OCECarTER-87783761,1,"Gare de Laissac",44.374905,2.822384,-1,0,SIN:SA:OCE87783761,Europe/Paris,,STE, +STE:SP:OCETrainTER-87278259,1,"Gare de Mérignac-Arlac",44.826772,-0.62616,-1,0,STE:SA:OCE87278259,Europe/Paris,,STE, +STE:SP:OCETrainTER-87324095,1,"Gare de Futuroscope",46.66985,0.377202,-1,0,SIN:SA:OCE87324095,Europe/Paris,,STE, +STE:SP:OCETrainTER-87328021,1,"Gare de Les Cauquillous",43.734311,1.754566,-1,0,STE:SA:OCE87328021,Europe/Paris,,STE, +STE:SP:OCETrainTER-87353573,1,"Gare de Le Toec",43.595502,1.40133,-1,0,STE:SA:OCE87353573,Europe/Paris,,STE, +STE:SP:OCETrainTER-87353581,1,"Gare de Les Ramassiers",43.602362,1.352904,-1,0,STE:SA:OCE87353581,Europe/Paris,,STE, +STE:SP:OCETrainTER-87353599,1,"Gare de St-Martin-du-Touch",43.599786,1.37134,-1,0,STE:SA:OCE87353599,Europe/Paris,,STE, +STE:SP:OCETrainTER-87420596,1,"Gare de Cenon",44.856768,-0.533602,-1,0,STE:SA:OCE87420596,Europe/Paris,,STE, +STE:SP:OCETrainTER-87437798,1,"Gare de La-Rochelle-Pt-Dauphine",46.167608,-1.151929,-1,0,STE:SA:OCE87437798,Europe/Paris,,STE, +STE:SP:OCETrainTER-87437806,1,"Gare de Aytre.-Plage",46.127572,-1.128414,-1,0,STE:SA:OCE87437806,Europe/Paris,,STE, +STE:SP:OCETrainTER-87446179,1,"Gare de Saint-Cyprien-Arènes",43.593744,1.416459,-1,0,STE:SA:OCE87446179,Europe/Paris,,STE, +STE:SP:OCETrainTER-87481002,1,"Gare de Nantes",47.217505,-1.541925,-1,0,SIN:SA:OCE87481002,Europe/Paris,,STE, +STE:SP:OCETrainTER-87484006,1,"Gare de Angers-St-Laud",47.464434,-0.556949,-1,0,STE:SA:OCE87484006,Europe/Paris,,STE, +STE:SP:OCETrainTER-87485003,1,"Gare de La Rochelle-Ville",46.152701,-1.1453,-1,0,SIN:SA:OCE87485003,Europe/Paris,,STE, +STE:SP:OCETrainTER-87485102,1,"Gare de Angoulins-sur-Mer",46.107752,-1.115426,-1,0,STE:SA:OCE87485102,Europe/Paris,,STE, +STE:SP:OCETrainTER-87485110,1,"Gare de Chatelaillon-Plage",46.078564,-1.091209,-1,0,SIN:SA:OCE87485110,Europe/Paris,,STE, +STE:SP:OCETrainTER-87485136,1,"Gare de St-Laurent-Fouras",45.99248,-1.026994,-1,0,STE:SA:OCE87485136,Europe/Paris,,STE, +STE:SP:OCETrainTER-87485144,1,"Gare de Rochefort",45.947416,-0.963788,-1,0,SIN:SA:OCE87485144,Europe/Paris,,STE, +STE:SP:OCETrainTER-87485151,1,"Gare de Tonnay-Charente",45.943378,-0.897833,-1,0,STE:SA:OCE87485151,Europe/Paris,,STE, +STE:SP:OCETrainTER-87485185,1,"Gare de La-Jarrie",46.120623,-1.023685,-1,0,STE:SA:OCE87485185,Europe/Paris,,STE, +STE:SP:OCETrainTER-87485193,1,"Gare de Aigrefeuille-le-Thou",46.093489,-0.951268,-1,0,STE:SA:OCE87485193,Europe/Paris,,STE, +STE:SP:OCETrainTER-87485227,1,"Gare de Surgères",46.113416,-0.762133,-1,0,STE:SA:OCE87485227,Europe/Paris,,STE, +STE:SP:OCETrainTER-87485250,1,"Gare de Mauzé",46.199688,-0.673597,-1,0,SIN:SA:OCE87485250,Europe/Paris,,STE, +STE:SP:OCETrainTER-87485268,1,"Gare de Prin-Deyrançon",46.21901,-0.636465,-1,0,SIN:SA:OCE87485268,Europe/Paris,,STE, +STE:SP:OCETrainTER-87485300,1,"Gare de Niort",46.319345,-0.454391,-1,0,SIN:SA:OCE87485300,Europe/Paris,,STE, +STE:SP:OCETrainTER-87485326,1,"Gare de Fors",46.234539,-0.406926,-1,0,SIN:SA:OCE87485326,Europe/Paris,,STE, +STE:SP:OCETrainTER-87485334,1,"Gare de Marigny (Deux-Sèvres)",46.199027,-0.428631,-1,0,SIN:SA:OCE87485334,Europe/Paris,,STE, +STE:SP:OCETrainTER-87485342,1,"Gare de Beauvoir-sur-Niort",46.176702,-0.469165,-1,0,SIN:SA:OCE87485342,Europe/Paris,,STE, +STE:SP:OCETrainTER-87485359,1,"Gare de Prissé-la-Charrière",46.152755,-0.493673,-1,0,SIN:SA:OCE87485359,Europe/Paris,,STE, +STE:SP:OCETrainTER-87485474,1,"Gare de La Crèche",46.360423,-0.296278,-1,0,STE:SA:OCE87485474,Europe/Paris,,STE, +STE:SP:OCETrainTER-87485490,1,"Gare de St-Maixent (Deux-Sèvr.)",46.406308,-0.201306,-1,0,STE:SA:OCE87485490,Europe/Paris,,STE, +STE:SP:OCETrainTER-87485508,1,"Gare de La Mothe-St-Héray",46.380923,-0.129873,-1,0,STE:SA:OCE87485508,Europe/Paris,,STE, +STE:SP:OCETrainTER-87485524,1,"Gare de Pamproux",46.399808,-0.051976,-1,0,STE:SA:OCE87485524,Europe/Paris,,STE, +STE:SP:OCETrainTER-87485532,1,"Gare de Rouillé",46.418799,0.041859,-1,0,STE:SA:OCE87485532,Europe/Paris,,STE, +STE:SP:OCETrainTER-87485540,1,"Gare de Lusignan",46.435002,0.115756,-1,0,STE:SA:OCE87485540,Europe/Paris,,STE, +STE:SP:OCETrainTER-87486019,1,"Gare de La Roche-sur-Yon",46.672025,-1.43568,-1,0,SIN:SA:OCE87486019,Europe/Paris,,STE, +STE:SP:OCETrainTER-87486258,1,"Gare de Luçon",46.46372,-1.167445,-1,0,SIN:SA:OCE87486258,Europe/Paris,,STE, +STE:SP:OCETrainTER-87486308,1,"Gare de La Chaize-le-Vicomte",46.676832,-1.283399,-1,0,STE:SA:OCE87486308,Europe/Paris,,STE, +STE:SP:OCETrainTER-87486316,1,"Gare de Fougeré",46.665367,-1.231964,-1,0,STE:SA:OCE87486316,Europe/Paris,,STE, +STE:SP:OCETrainTER-87486324,1,"Gare de Bournezeau",46.651484,-1.178474,-1,0,STE:SA:OCE87486324,Europe/Paris,,STE, +STE:SP:OCETrainTER-87486332,1,"Gare de Chantonnay",46.690119,-1.054358,-1,0,SIN:SA:OCE87486332,Europe/Paris,,STE, +STE:SP:OCETrainTER-87487009,1,"Gare de Thouars",46.985249,-0.210513,-1,0,SIN:SA:OCE87487009,Europe/Paris,,STE, +STE:SP:OCETrainTER-87487249,1,"Gare de Bressuire",46.837167,-0.496485,-1,0,SIN:SA:OCE87487249,Europe/Paris,,STE, +STE:SP:OCETrainTER-87487280,1,"Gare de Cerizay",46.817312,-0.667487,-1,0,SIN:SA:OCE87487280,Europe/Paris,,STE, +STE:SP:OCETrainTER-87487314,1,"Gare de Pouzauges",46.752408,-0.814623,-1,0,STE:SA:OCE87487314,Europe/Paris,,STE, +STE:SP:OCETrainTER-87487603,1,"Gare de Saumur",47.268972,-0.07143,-1,0,SIN:SA:OCE87487603,Europe/Paris,,STE, +STE:SP:OCETrainTER-87487637,1,"Gare de Montreuil-Bellay",47.125325,-0.148041,-1,0,SIN:SA:OCE87487637,Europe/Paris,,STE, +STE:SP:OCETrainTER-87487843,1,"Gare de La Bohalle",47.434177,-0.400197,-1,0,STE:SA:OCE87487843,Europe/Paris,,STE, +STE:SP:OCETrainTER-87487876,1,"Gare de Les Rosiers-sur-Loire",47.361852,-0.219611,-1,0,STE:SA:OCE87487876,Europe/Paris,,STE, +STE:SP:OCETrainTER-87487884,1,"Gare de La Menitré",47.397369,-0.275869,-1,0,STE:SA:OCE87487884,Europe/Paris,,STE, +STE:SP:OCETrainTER-87487892,1,"Gare de St-Mathurin",47.412078,-0.318063,-1,0,STE:SA:OCE87487892,Europe/Paris,,STE, +STE:SP:OCETrainTER-87491001,1,"Gare de Saintes",45.747843,-0.617576,-1,0,SIN:SA:OCE87491001,Europe/Paris,,STE, +STE:SP:OCETrainTER-87491019,1,"Gare de Bords",45.89454,-0.798522,-1,0,STE:SA:OCE87491019,Europe/Paris,,STE, +STE:SP:OCETrainTER-87491035,1,"Gare de St-Savinien/Charente",45.875842,-0.677909,-1,0,STE:SA:OCE87491035,Europe/Paris,,STE, +STE:SP:OCETrainTER-87491043,1,"Gare de Taillebourg",45.830784,-0.645014,-1,0,STE:SA:OCE87491043,Europe/Paris,,STE, +STE:SP:OCETrainTER-87491076,1,"Gare de Beillant",45.700996,-0.526858,-1,0,STE:SA:OCE87491076,Europe/Paris,,STE, +STE:SP:OCETrainTER-87491100,1,"Gare de Pons",45.578088,-0.539001,-1,0,SIN:SA:OCE87491100,Europe/Paris,,STE, +STE:SP:OCETrainTER-87491134,1,"Gare de Clion-sur-Seugne",45.478494,-0.502109,-1,0,STE:SA:OCE87491134,Europe/Paris,,STE, +STE:SP:OCETrainTER-87491142,1,"Gare de Jonzac",45.438714,-0.442003,-1,0,SIN:SA:OCE87491142,Europe/Paris,,STE, +STE:SP:OCETrainTER-87491159,1,"Gare de Fontaines-Ozillac",45.387558,-0.383967,-1,0,STE:SA:OCE87491159,Europe/Paris,,STE, +STE:SP:OCETrainTER-87491183,1,"Gare de Montendre",45.280596,-0.396059,-1,0,SIN:SA:OCE87491183,Europe/Paris,,STE, +STE:SP:OCETrainTER-87491191,1,"Gare de Bussac",45.211558,-0.368047,-1,0,STE:SA:OCE87491191,Europe/Paris,,STE, +STE:SP:OCETrainTER-87491209,1,"Gare de St-Mariens-St-Yzan",45.139081,-0.391685,-1,0,SIN:SA:OCE87491209,Europe/Paris,,STE, +STE:SP:OCETrainTER-87491217,1,"Gare de Cavignac",45.104923,-0.38213,-1,0,STE:SA:OCE87491217,Europe/Paris,,STE, +STE:SP:OCETrainTER-87491225,1,"Gare de Gauriaguet",45.053486,-0.399998,-1,0,STE:SA:OCE87491225,Europe/Paris,,STE, +STE:SP:OCETrainTER-87491233,1,"Gare de Aubie-St-Antoine",45.015095,-0.419748,-1,0,STE:SA:OCE87491233,Europe/Paris,,STE, +STE:SP:OCETrainTER-87491241,1,"Gare de St-André-de-Cubzac",44.991175,-0.440483,-1,0,SIN:SA:OCE87491241,Europe/Paris,,STE, +STE:SP:OCETrainTER-87491258,1,"Gare de Villeneuve-la-Comtesse",46.098728,-0.513069,-1,0,STE:SA:OCE87491258,Europe/Paris,,STE, +STE:SP:OCETrainTER-87491266,1,"Gare de Cubzac-les-Ponts",44.972889,-0.459315,-1,0,STE:SA:OCE87491266,Europe/Paris,,STE, +STE:SP:OCETrainTER-87491274,1,"Gare de La Grave-d'Ambarès-G-i",44.935655,-0.477014,-1,0,STE:SA:OCE87491274,Europe/Paris,,STE, +STE:SP:OCETrainTER-87491282,1,"Gare de Ste-Eulalie-Carbon-Blan",44.897868,-0.494053,-1,0,STE:SA:OCE87491282,Europe/Paris,,STE, +STE:SP:OCETrainTER-87491290,1,"Gare de Loulay",46.043507,-0.50188,-1,0,STE:SA:OCE87491290,Europe/Paris,,STE, +STE:SP:OCETrainTER-87491324,1,"Gare de St-Hilaire-Brizambourg",45.849901,-0.534935,-1,0,STE:SA:OCE87491324,Europe/Paris,,STE, +STE:SP:OCETrainTER-87491357,1,"Gare de St-Jean-d'Angély",45.940883,-0.509803,-1,0,SIN:SA:OCE87491357,Europe/Paris,,STE, +STE:SP:OCETrainTER-87491449,1,"Gare de Cognac",45.684455,-0.326164,-1,0,STE:SA:OCE87491449,Europe/Paris,,STE, +STE:SP:OCETrainTER-87491472,1,"Gare de Jarnac-Charente",45.67129,-0.177924,-1,0,STE:SA:OCE87491472,Europe/Paris,,STE, +STE:SP:OCETrainTER-87491506,1,"Gare de Châteauneuf/Charente",45.599971,-0.050207,-1,0,STE:SA:OCE87491506,Europe/Paris,,STE, +STE:SP:OCETrainTER-87491803,1,"Gare de Royan",45.625515,-1.017198,-1,0,SIN:SA:OCE87491803,Europe/Paris,,STE, +STE:SP:OCETrainTER-87491811,1,"Gare de Saujon",45.667047,-0.930584,-1,0,SIN:SA:OCE87491811,Europe/Paris,,STE, +STE:SP:OCETrainTER-87497461,1,"Gare de Gallieni-Cancéropôle",43.573338,1.419297,-1,0,STE:SA:OCE87497461,Europe/Paris,,STE, +STE:SP:OCETrainTER-87543009,1,"Gare de Orléans",47.908153,1.904753,-1,0,STE:SA:OCE87543009,Europe/Paris,,STE, +STE:SP:OCETrainTER-87543116,1,"Gare de St-Cyr-en-Val-La-Source",47.819197,1.947569,-1,0,STE:SA:OCE87543116,Europe/Paris,,STE, +STE:SP:OCETrainTER-87543124,1,"Gare de La Ferté-St-Aubin",47.720968,1.932337,-1,0,STE:SA:OCE87543124,Europe/Paris,,STE, +STE:SP:OCETrainTER-87543140,1,"Gare de Lamotte-Beuvron",47.59397,2.022591,-1,0,STE:SA:OCE87543140,Europe/Paris,,STE, +STE:SP:OCETrainTER-87543157,1,"Gare de Nouan-le-Fuzelier",47.534058,2.033265,-1,0,STE:SA:OCE87543157,Europe/Paris,,STE, +STE:SP:OCETrainTER-87543165,1,"Gare de Salbris",47.42514,2.047737,-1,0,STE:SA:OCE87543165,Europe/Paris,,STE, +STE:SP:OCETrainTER-87543199,1,"Gare de Theillay",47.314356,2.044474,-1,0,STE:SA:OCE87543199,Europe/Paris,,STE, +STE:SP:OCETrainTER-87571000,1,"Gare de Tours",47.389814,0.693505,-1,0,STE:SA:OCE87571000,Europe/Paris,,STE, +STE:SP:OCETrainTER-87571794,1,"Gare de Port-Boulet",47.248527,0.154869,-1,0,STE:SA:OCE87571794,Europe/Paris,,STE, +STE:SP:OCETrainTER-87571828,1,"Gare de Langeais",47.323944,0.410325,-1,0,STE:SA:OCE87571828,Europe/Paris,,STE, +STE:SP:OCETrainTER-87571836,1,"Gare de Cinq-Mars",47.344792,0.460078,-1,0,STE:SA:OCE87571836,Europe/Paris,,STE, +STE:SP:OCETrainTER-87571844,1,"Gare de Savonnières",47.360481,0.543798,-1,0,STE:SA:OCE87571844,Europe/Paris,,STE, +STE:SP:OCETrainTER-87575001,1,"Gare de Poitiers",46.582183,0.333084,-1,0,SIN:SA:OCE87575001,Europe/Paris,,STE, +STE:SP:OCETrainTER-87575035,1,"Gare de Monts (Indre-et-Loire)",47.281999,0.654734,-1,0,STE:SA:OCE87575035,Europe/Paris,,STE, +STE:SP:OCETrainTER-87575043,1,"Gare de Villeperdue",47.202059,0.633534,-1,0,STE:SA:OCE87575043,Europe/Paris,,STE, +STE:SP:OCETrainTER-87575050,1,"Gare de Ste-Maure-Noyant",47.111113,0.577006,-1,0,STE:SA:OCE87575050,Europe/Paris,,STE, +STE:SP:OCETrainTER-87575068,1,"Gare de Maillé",47.052959,0.583006,-1,0,STE:SA:OCE87575068,Europe/Paris,,STE, +STE:SP:OCETrainTER-87575076,1,"Gare de Port-de-Piles",47.010147,0.598559,-1,0,STE:SA:OCE87575076,Europe/Paris,,STE, +STE:SP:OCETrainTER-87575118,1,"Gare de Les Ormes-sur-Vienne",46.97078,0.608165,-1,0,STE:SA:OCE87575118,Europe/Paris,,STE, +STE:SP:OCETrainTER-87575126,1,"Gare de Dangé",46.93781,0.608778,-1,0,STE:SA:OCE87575126,Europe/Paris,,STE, +STE:SP:OCETrainTER-87575134,1,"Gare de Ingrandes-sur-Vienne",46.874825,0.569515,-1,0,STE:SA:OCE87575134,Europe/Paris,,STE, +STE:SP:OCETrainTER-87575142,1,"Gare de Chatellerault",46.818565,0.549218,-1,0,SIN:SA:OCE87575142,Europe/Paris,,STE, +STE:SP:OCETrainTER-87575167,1,"Gare de Nerpuy",46.783509,0.525449,-1,0,STE:SA:OCE87575167,Europe/Paris,,STE, +STE:SP:OCETrainTER-87575175,1,"Gare de Naintré-les-Barres",46.759517,0.496071,-1,0,SIN:SA:OCE87575175,Europe/Paris,,STE, +STE:SP:OCETrainTER-87575183,1,"Gare de La Tricherie",46.728667,0.440467,-1,0,SIN:SA:OCE87575183,Europe/Paris,,STE, +STE:SP:OCETrainTER-87575191,1,"Gare de Dissay (Vienne)",46.703732,0.421131,-1,0,STE:SA:OCE87575191,Europe/Paris,,STE, +STE:SP:OCETrainTER-87575217,1,"Gare de Jaunay-Clan",46.682305,0.38189,-1,0,SIN:SA:OCE87575217,Europe/Paris,,STE, +STE:SP:OCETrainTER-87575225,1,"Gare de Chasseneuil (Vienne)",46.651794,0.372811,-1,0,STE:SA:OCE87575225,Europe/Paris,,STE, +STE:SP:OCETrainTER-87575274,1,"Gare de Ligugé",46.520564,0.333184,-1,0,STE:SA:OCE87575274,Europe/Paris,,STE, +STE:SP:OCETrainTER-87575290,1,"Gare de Vivonne",46.426789,0.26511,-1,0,STE:SA:OCE87575290,Europe/Paris,,STE, +STE:SP:OCETrainTER-87575332,1,"Gare de Anché-Voulon",46.349637,0.250203,-1,0,STE:SA:OCE87575332,Europe/Paris,,STE, +STE:SP:OCETrainTER-87575357,1,"Gare de Epanvilliers",46.226881,0.235903,-1,0,STE:SA:OCE87575357,Europe/Paris,,STE, +STE:SP:OCETrainTER-87575365,1,"Gare de St-Saviol",46.147154,0.217889,-1,0,STE:SA:OCE87575365,Europe/Paris,,STE, +STE:SP:OCETrainTER-87575480,1,"Gare de Montmorillon",46.417332,0.873756,-1,0,SIN:SA:OCE87575480,Europe/Paris,,STE, +STE:SP:OCETrainTER-87575498,1,"Gare de Lathus",46.338735,0.964163,-1,0,STE:SA:OCE87575498,Europe/Paris,,STE, +STE:SP:OCETrainTER-87575704,1,"Gare de Mignaloux-Nouaillé",46.526203,0.41173,-1,0,STE:SA:OCE87575704,Europe/Paris,,STE, +STE:SP:OCETrainTER-87575845,1,"Gare de Lussac-les-Châteaux",46.405141,0.718701,-1,0,SIN:SA:OCE87575845,Europe/Paris,,STE, +STE:SP:OCETrainTER-87576009,1,"Gare de Vierzon",47.226516,2.059824,-1,0,SIN:SA:OCE87576009,Europe/Paris,,STE, +STE:SP:OCETrainTER-87577403,1,"Gare de Iteuil (Centre)",46.484213,0.316845,-1,0,STE:SA:OCE87577403,Europe/Paris,,STE, +STE:SP:OCETrainTER-87581009,1,"Gare de Bordeaux-St-Jean",44.82654,-0.556194,-1,0,SIN:SA:OCE87581009,Europe/Paris,,STE, +STE:SP:OCETrainTER-87581181,1,"Gare de Ludon",44.97438,-0.61166,-1,0,STE:SA:OCE87581181,Europe/Paris,,STE, +STE:SP:OCETrainTER-87581199,1,"Gare de Macau",45.004154,-0.619846,-1,0,STE:SA:OCE87581199,Europe/Paris,,STE, +STE:SP:OCETrainTER-87581215,1,"Gare de Margaux",45.035952,-0.685392,-1,0,STE:SA:OCE87581215,Europe/Paris,,STE, +STE:SP:OCETrainTER-87581231,1,"Gare de Moulis-Listrac",45.084075,-0.744602,-1,0,STE:SA:OCE87581231,Europe/Paris,,STE, +STE:SP:OCETrainTER-87581256,1,"Gare de Pauillac",45.203744,-0.754974,-1,0,STE:SA:OCE87581256,Europe/Paris,,STE, +STE:SP:OCETrainTER-87581314,1,"Gare de Lesparre",45.303635,-0.945307,-1,0,STE:SA:OCE87581314,Europe/Paris,,STE, +STE:SP:OCETrainTER-87581371,1,"Gare de Soulac-sur-Mer",45.508209,-1.117752,-1,0,STE:SA:OCE87581371,Europe/Paris,,STE, +STE:SP:OCETrainTER-87581389,1,"Gare de Le-Verdon",45.54921,-1.065132,-1,0,STE:SA:OCE87581389,Europe/Paris,,STE, +STE:SP:OCETrainTER-87581538,1,"Gare de Caudéran-Mérignac",44.842734,-0.627702,-1,0,STE:SA:OCE87581538,Europe/Paris,,STE, +STE:SP:OCETrainTER-87581710,1,"Gare de Parempuyre",44.943928,-0.61948,-1,0,STE:SA:OCE87581710,Europe/Paris,,STE, +STE:SP:OCETrainTER-87581728,1,"Gare de Blanquefort",44.917534,-0.623922,-1,0,STE:SA:OCE87581728,Europe/Paris,,STE, +STE:SP:OCETrainTER-87581736,1,"Gare de Bruges",44.886438,-0.609359,-1,0,STE:SA:OCE87581736,Europe/Paris,,STE, +STE:SP:OCETrainTER-87581751,1,"Gare de Pessac",44.804597,-0.631749,-1,0,STE:SA:OCE87581751,Europe/Paris,,STE, +STE:SP:OCETrainTER-87581793,1,"Gare de Alouette-France",44.793502,-0.659614,-1,0,SIN:SA:OCE87581793,Europe/Paris,,STE, +STE:SP:OCETrainTER-87581801,1,"Gare de Bègles",44.799777,-0.555341,-1,0,STE:SA:OCE87581801,Europe/Paris,,STE, +STE:SP:OCETrainTER-87581835,1,"Gare de Villenave-d'Ornon",44.768707,-0.547456,-1,0,STE:SA:OCE87581835,Europe/Paris,,STE, +STE:SP:OCETrainTER-87581850,1,"Gare de Bassens",44.901272,-0.522277,-1,0,STE:SA:OCE87581850,Europe/Paris,,STE, +STE:SP:OCETrainTER-87582403,1,"Gare de Gazinet-Cestas",44.772233,-0.699428,-1,0,SIN:SA:OCE87582403,Europe/Paris,,STE, +STE:SP:OCETrainTER-87582445,1,"Gare de Marcheprime",44.69057,-0.853801,-1,0,SIN:SA:OCE87582445,Europe/Paris,,STE, +STE:SP:OCETrainTER-87582478,1,"Gare de Biganos-Facture",44.637482,-0.96602,-1,0,STE:SA:OCE87582478,Europe/Paris,,STE, +STE:SP:OCETrainTER-87582536,1,"Gare de Ychoux",44.329249,-0.946197,-1,0,SIN:SA:OCE87582536,Europe/Paris,,STE, +STE:SP:OCETrainTER-87582551,1,"Gare de Labouheyre",44.210577,-0.920996,-1,0,SIN:SA:OCE87582551,Europe/Paris,,STE, +STE:SP:OCETrainTER-87582601,1,"Gare de Le Teich",44.632437,-1.025566,-1,0,SIN:SA:OCE87582601,Europe/Paris,,STE, +STE:SP:OCETrainTER-87582619,1,"Gare de Gujan-Mestras",44.640514,-1.069084,-1,0,SIN:SA:OCE87582619,Europe/Paris,,STE, +STE:SP:OCETrainTER-87582635,1,"Gare de La Hume",44.639905,-1.116065,-1,0,SIN:SA:OCE87582635,Europe/Paris,,STE, +STE:SP:OCETrainTER-87582643,1,"Gare de La Teste",44.636959,-1.142979,-1,0,SIN:SA:OCE87582643,Europe/Paris,,STE, +STE:SP:OCETrainTER-87582668,1,"Gare de Arcachon",44.658917,-1.165368,-1,0,SIN:SA:OCE87582668,Europe/Paris,,STE, +STE:SP:OCETrainTER-87582684,1,"Gare de Cadaujac",44.752079,-0.537669,-1,0,STE:SA:OCE87582684,Europe/Paris,,STE, +STE:SP:OCETrainTER-87582692,1,"Gare de St-Médard-d'Eyrans",44.715709,-0.504386,-1,0,STE:SA:OCE87582692,Europe/Paris,,STE, +STE:SP:OCETrainTER-87582700,1,"Gare de Beautiran",44.701038,-0.450177,-1,0,STE:SA:OCE87582700,Europe/Paris,,STE, +STE:SP:OCETrainTER-87582718,1,"Gare de Portets",44.692834,-0.425394,-1,0,STE:SA:OCE87582718,Europe/Paris,,STE, +STE:SP:OCETrainTER-87582726,1,"Gare de Arbanats",44.674302,-0.395548,-1,0,STE:SA:OCE87582726,Europe/Paris,,STE, +STE:SP:OCETrainTER-87582734,1,"Gare de Podensac",44.649011,-0.358829,-1,0,STE:SA:OCE87582734,Europe/Paris,,STE, +STE:SP:OCETrainTER-87582742,1,"Gare de Cérons",44.632151,-0.340602,-1,0,STE:SA:OCE87582742,Europe/Paris,,STE, +STE:SP:OCETrainTER-87582759,1,"Gare de Barsac",44.604077,-0.320508,-1,0,STE:SA:OCE87582759,Europe/Paris,,STE, +STE:SP:OCETrainTER-87582767,1,"Gare de Preignac",44.578339,-0.301903,-1,0,STE:SA:OCE87582767,Europe/Paris,,STE, +STE:SP:OCETrainTER-87582775,1,"Gare de Langon",44.555442,-0.25561,-1,0,STE:SA:OCE87582775,Europe/Paris,,STE, +STE:SP:OCETrainTER-87582825,1,"Gare de St-Macaire",44.568493,-0.227097,-1,0,STE:SA:OCE87582825,Europe/Paris,,STE, +STE:SP:OCETrainTER-87582833,1,"Gare de St-Pierre-d'Aurillac",44.575138,-0.18762,-1,0,STE:SA:OCE87582833,Europe/Paris,,STE, +STE:SP:OCETrainTER-87582841,1,"Gare de Caudrot",44.580093,-0.145101,-1,0,STE:SA:OCE87582841,Europe/Paris,,STE, +STE:SP:OCETrainTER-87582858,1,"Gare de Gironde",44.583338,-0.092466,-1,0,STE:SA:OCE87582858,Europe/Paris,,STE, +STE:SP:OCETrainTER-87582866,1,"Gare de La Réole",44.579755,-0.030725,-1,0,STE:SA:OCE87582866,Europe/Paris,,STE, +STE:SP:OCETrainTER-87582882,1,"Gare de Lamothe-Landerron",44.562911,0.045231,-1,0,STE:SA:OCE87582882,Europe/Paris,,STE, +STE:SP:OCETrainTER-87583005,1,"Gare de Angoulême",45.653935,0.164528,-1,0,SIN:SA:OCE87583005,Europe/Paris,,STE, +STE:SP:OCETrainTER-87583203,1,"Gare de Ruelle",45.676224,0.221243,-1,0,SIN:SA:OCE87583203,Europe/Paris,,STE, +STE:SP:OCETrainTER-87583427,1,"Gare de La Rochefoucauld",45.740192,0.389586,-1,0,SIN:SA:OCE87583427,Europe/Paris,,STE, +STE:SP:OCETrainTER-87583443,1,"Gare de Chasseneuil-s-Bonnieure",45.823441,0.452062,-1,0,SIN:SA:OCE87583443,Europe/Paris,,STE, +STE:SP:OCETrainTER-87583468,1,"Gare de Roumazières-Loubert",45.889361,0.578823,-1,0,SIN:SA:OCE87583468,Europe/Paris,,STE, +STE:SP:OCETrainTER-87583674,1,"Gare de Montmoreau",45.398299,0.138001,-1,0,SIN:SA:OCE87583674,Europe/Paris,,STE, +STE:SP:OCETrainTER-87583690,1,"Gare de Chalais",45.270675,0.04338,-1,0,SIN:SA:OCE87583690,Europe/Paris,,STE, +STE:SP:OCETrainTER-87583823,1,"Gare de Luxé",45.887216,0.109152,-1,0,STE:SA:OCE87583823,Europe/Paris,,STE, +STE:SP:OCETrainTER-87583849,1,"Gare de Ruffec (Charente)",46.030526,0.190127,-1,0,STE:SA:OCE87583849,Europe/Paris,,STE, +STE:SP:OCETrainTER-87584052,1,"Gare de Libourne",44.915884,-0.236368,-1,0,SIN:SA:OCE87584052,Europe/Paris,,STE, +STE:SP:OCETrainTER-87584102,1,"Gare de St-Emilion",44.881287,-0.159245,-1,0,STE:SA:OCE87584102,Europe/Paris,,STE, +STE:SP:OCETrainTER-87584136,1,"Gare de Castillon",44.857158,-0.040657,-1,0,STE:SA:OCE87584136,Europe/Paris,,STE, +STE:SP:OCETrainTER-87584151,1,"Gare de Lamothe-Montravel",44.853863,0.021547,-1,0,STE:SA:OCE87584151,Europe/Paris,,STE, +STE:SP:OCETrainTER-87584177,1,"Gare de Velines",44.852,0.103684,-1,0,STE:SA:OCE87584177,Europe/Paris,,STE, +STE:SP:OCETrainTER-87584193,1,"Gare de Ste-Foy-la-Grande",44.83686,0.221327,-1,0,STE:SA:OCE87584193,Europe/Paris,,STE, +STE:SP:OCETrainTER-87584201,1,"Gare de St-Antoine-de-Breuilh",44.846734,0.151718,-1,0,STE:SA:OCE87584201,Europe/Paris,,STE, +STE:SP:OCETrainTER-87584235,1,"Gare de Gardonne",44.834747,0.331823,-1,0,STE:SA:OCE87584235,Europe/Paris,,STE, +STE:SP:OCETrainTER-87584243,1,"Gare de Lamonzie-St-Martin",44.843813,0.380795,-1,0,STE:SA:OCE87584243,Europe/Paris,,STE, +STE:SP:OCETrainTER-87584268,1,"Gare de Bergerac",44.856801,0.490352,-1,0,SIN:SA:OCE87584268,Europe/Paris,,STE, +STE:SP:OCETrainTER-87584425,1,"Gare de Couze",44.836633,0.702884,-1,0,SIN:SA:OCE87584425,Europe/Paris,,STE, +STE:SP:OCETrainTER-87584441,1,"Gare de Lalinde",44.83951,0.742756,-1,0,SIN:SA:OCE87584441,Europe/Paris,,STE, +STE:SP:OCETrainTER-87584466,1,"Gare de Mauzac",44.855886,0.78982,-1,0,SIN:SA:OCE87584466,Europe/Paris,,STE, +STE:SP:OCETrainTER-87584474,1,"Gare de Trémolat",44.862322,0.830423,-1,0,SIN:SA:OCE87584474,Europe/Paris,,STE, +STE:SP:OCETrainTER-87584508,1,"Gare de St-Denis-de-Pile",44.978579,-0.198026,-1,0,SIN:SA:OCE87584508,Europe/Paris,,STE, +STE:SP:OCETrainTER-87584516,1,"Gare de Coutras",45.036654,-0.131429,-1,0,SIN:SA:OCE87584516,Europe/Paris,,STE, +STE:SP:OCETrainTER-87584532,1,"Gare de Les Eglisottes",45.094265,-0.043533,-1,0,SIN:SA:OCE87584532,Europe/Paris,,STE, +STE:SP:OCETrainTER-87584540,1,"Gare de St-Aigulin-la-Roche-Cha",45.157374,-0.01927,-1,0,SIN:SA:OCE87584540,Europe/Paris,,STE, +STE:SP:OCETrainTER-87584607,1,"Gare de St-Médard-de-Guizières",45.015523,-0.048899,-1,0,STE:SA:OCE87584607,Europe/Paris,,STE, +STE:SP:OCETrainTER-87584615,1,"Gare de St-Seurin-sur-l'Isle",45.011459,-0.001899,-1,0,STE:SA:OCE87584615,Europe/Paris,,STE, +STE:SP:OCETrainTER-87584714,1,"Gare de Vayres",44.901383,-0.323921,-1,0,STE:SA:OCE87584714,Europe/Paris,,STE, +STE:SP:OCETrainTER-87584722,1,"Gare de St-Sulpice-Izon",44.914172,-0.392218,-1,0,STE:SA:OCE87584722,Europe/Paris,,STE, +STE:SP:OCETrainTER-87584730,1,"Gare de St-Loubès",44.922262,-0.433164,-1,0,STE:SA:OCE87584730,Europe/Paris,,STE, +STE:SP:OCETrainTER-87584755,1,"Gare de La Gorp",44.928699,-0.496669,-1,0,STE:SA:OCE87584755,Europe/Paris,,STE, +STE:SP:OCETrainTER-87586008,1,"Gare de Agen",44.207972,0.620905,-1,0,SIN:SA:OCE87586008,Europe/Paris,,STE, +STE:SP:OCETrainTER-87586107,1,"Gare de Port-Ste-Marie",44.250364,0.39031,-1,0,STE:SA:OCE87586107,Europe/Paris,,STE, +STE:SP:OCETrainTER-87586404,1,"Gare de Pont-du-Casse",44.232763,0.675916,-1,0,STE:SA:OCE87586404,Europe/Paris,,STE, +STE:SP:OCETrainTER-87586412,1,"Gare de Laroque",44.287437,0.749783,-1,0,STE:SA:OCE87586412,Europe/Paris,,STE, +STE:SP:OCETrainTER-87586438,1,"Gare de Penne (Lot-et-Garonne)",44.379828,0.803151,-1,0,SIN:SA:OCE87586438,Europe/Paris,,STE, +STE:SP:OCETrainTER-87586446,1,"Gare de Trentels-Ladignac",44.443065,0.884881,-1,0,STE:SA:OCE87586446,Europe/Paris,,STE, +STE:SP:OCETrainTER-87586453,1,"Gare de Monsempron-Libos",44.486396,0.941459,-1,0,SIN:SA:OCE87586453,Europe/Paris,,STE, +STE:SP:OCETrainTER-87586479,1,"Gare de Ste-Bazeille",44.532304,0.093206,-1,0,STE:SA:OCE87586479,Europe/Paris,,STE, +STE:SP:OCETrainTER-87586495,1,"Gare de Sauveterre-la-Lémance",44.589363,1.01168,-1,0,SIN:SA:OCE87586495,Europe/Paris,,STE, +STE:SP:OCETrainTER-87586545,1,"Gare de Marmande",44.503067,0.168115,-1,0,SIN:SA:OCE87586545,Europe/Paris,,STE, +STE:SP:OCETrainTER-87586651,1,"Gare de Tonneins",44.392805,0.314129,-1,0,STE:SA:OCE87586651,Europe/Paris,,STE, +STE:SP:OCETrainTER-87586693,1,"Gare de Aiguillon (Lot et Gar)",44.298723,0.335174,-1,0,STE:SA:OCE87586693,Europe/Paris,,STE, +STE:SP:OCETrainTER-87592006,1,"Gare de Limoges-Bénédictins",45.836208,1.267452,-1,0,SIN:SA:OCE87592006,Europe/Paris,,STE, +STE:SP:OCETrainTER-87592022,1,"Gare de Limoges-Montjovis",45.838396,1.251627,-1,0,SIN:SA:OCE87592022,Europe/Paris,,STE, +STE:SP:OCETrainTER-87592048,1,"Gare de Les Bardys",45.904628,1.377447,-1,0,STE:SA:OCE87592048,Europe/Paris,,STE, +STE:SP:OCETrainTER-87592055,1,"Gare de St-Priest-Taurion",45.887151,1.400467,-1,0,STE:SA:OCE87592055,Europe/Paris,,STE, +STE:SP:OCETrainTER-87592063,1,"Gare de Brignac",45.864054,1.44014,-1,0,STE:SA:OCE87592063,Europe/Paris,,STE, +STE:SP:OCETrainTER-87592071,1,"Gare de St-Léonard-de-Noblat-S",45.832087,1.481733,-1,0,STE:SA:OCE87592071,Europe/Paris,,STE, +STE:SP:OCETrainTER-87592097,1,"Gare de St-Denis-des-Murs",45.788959,1.551364,-1,0,STE:SA:OCE87592097,Europe/Paris,,STE, +STE:SP:OCETrainTER-87592105,1,"Gare de Châteauneuf-Bujaleuf",45.759265,1.645195,-1,0,STE:SA:OCE87592105,Europe/Paris,,STE, +STE:SP:OCETrainTER-87592121,1,"Gare de Eymoutiers-Vassiviere",45.739716,1.741256,-1,0,STE:SA:OCE87592121,Europe/Paris,,STE, +STE:SP:OCETrainTER-87592147,1,"Gare de Lacelle-Corrèze",45.641324,1.826406,-1,0,STE:SA:OCE87592147,Europe/Paris,,STE, +STE:SP:OCETrainTER-87592162,1,"Gare de Bugeat",45.600587,1.924495,-1,0,STE:SA:OCE87592162,Europe/Paris,,STE, +STE:SP:OCETrainTER-87592170,1,"Gare de Perols",45.584892,1.977811,-1,0,STE:SA:OCE87592170,Europe/Paris,,STE, +STE:SP:OCETrainTER-87592246,1,"Gare de Solignac-le-Vigen",45.756076,1.285553,-1,0,STE:SA:OCE87592246,Europe/Paris,,STE, +STE:SP:OCETrainTER-87592253,1,"Gare de Pierre-Buffière",45.699459,1.347227,-1,0,STE:SA:OCE87592253,Europe/Paris,,STE, +STE:SP:OCETrainTER-87592279,1,"Gare de Magnac-Vicq",45.628841,1.443774,-1,0,STE:SA:OCE87592279,Europe/Paris,,STE, +STE:SP:OCETrainTER-87592287,1,"Gare de St-Germain-les-Belles",45.609861,1.479937,-1,0,STE:SA:OCE87592287,Europe/Paris,,STE, +STE:SP:OCETrainTER-87592295,1,"Gare de La-Porcherie-Gare",45.574035,1.53832,-1,0,STE:SA:OCE87592295,Europe/Paris,,STE, +STE:SP:OCETrainTER-87592311,1,"Gare de Ambazac",45.952901,1.406502,-1,0,STE:SA:OCE87592311,Europe/Paris,,STE, +STE:SP:OCETrainTER-87592337,1,"Gare de La Jonchère",45.994286,1.479859,-1,0,STE:SA:OCE87592337,Europe/Paris,,STE, +STE:SP:OCETrainTER-87592345,1,"Gare de St-Sulpice-Laurière",46.046867,1.476283,-1,0,STE:SA:OCE87592345,Europe/Paris,,STE, +STE:SP:OCETrainTER-87592352,1,"Gare de Bersac",46.083843,1.432048,-1,0,STE:SA:OCE87592352,Europe/Paris,,STE, +STE:SP:OCETrainTER-87592360,1,"Gare de Fromental",46.171357,1.432475,-1,0,STE:SA:OCE87592360,Europe/Paris,,STE, +STE:SP:OCETrainTER-87592378,1,"Gare de La Souterraine",46.23975,1.492234,-1,0,SIN:SA:OCE87592378,Europe/Paris,,STE, +STE:SP:OCETrainTER-87592410,1,"Gare de Nieul",45.927436,1.172244,-1,0,SIN:SA:OCE87592410,Europe/Paris,,STE, +STE:SP:OCETrainTER-87592428,1,"Gare de Peyrilhac-St-Jouvent",45.959744,1.17019,-1,0,STE:SA:OCE87592428,Europe/Paris,,STE, +STE:SP:OCETrainTER-87592444,1,"Gare de Nantiat",46.005697,1.15644,-1,0,SIN:SA:OCE87592444,Europe/Paris,,STE, +STE:SP:OCETrainTER-87592485,1,"Gare de Bellac",46.125225,1.0461,-1,0,SIN:SA:OCE87592485,Europe/Paris,,STE, +STE:SP:OCETrainTER-87592493,1,"Gare de St-Sébastien",46.386035,1.54652,-1,0,STE:SA:OCE87592493,Europe/Paris,,STE, +STE:SP:OCETrainTER-87592501,1,"Gare de La Coquille",45.540713,0.974425,-1,0,STE:SA:OCE87592501,Europe/Paris,,STE, +STE:SP:OCETrainTER-87592543,1,"Gare de Le Dorat",46.211108,1.079244,-1,0,SIN:SA:OCE87592543,Europe/Paris,,STE, +STE:SP:OCETrainTER-87592634,1,"Gare de L'Aiguille",45.778319,1.205081,-1,0,STE:SA:OCE87592634,Europe/Paris,,STE, +STE:SP:OCETrainTER-87592667,1,"Gare de Aixe-sur-Vienne",45.796582,1.14574,-1,0,SIN:SA:OCE87592667,Europe/Paris,,STE, +STE:SP:OCETrainTER-87592683,1,"Gare de St-Victurnien",45.876778,1.009728,-1,0,SIN:SA:OCE87592683,Europe/Paris,,STE, +STE:SP:OCETrainTER-87592691,1,"Gare de St-Brice-sur-Vienne",45.878238,0.952428,-1,0,SIN:SA:OCE87592691,Europe/Paris,,STE, +STE:SP:OCETrainTER-87592709,1,"Gare de St-Junien",45.881438,0.90049,-1,0,SIN:SA:OCE87592709,Europe/Paris,,STE, +STE:SP:OCETrainTER-87592717,1,"Gare de Saillat-Chassenon",45.86951,0.811922,-1,0,SIN:SA:OCE87592717,Europe/Paris,,STE, +STE:SP:OCETrainTER-87592725,1,"Gare de Nexon",45.691534,1.178428,-1,0,STE:SA:OCE87592725,Europe/Paris,,STE, +STE:SP:OCETrainTER-87592733,1,"Gare de Lafarge",45.633854,1.130917,-1,0,STE:SA:OCE87592733,Europe/Paris,,STE, +STE:SP:OCETrainTER-87592741,1,"Gare de Bussière-Galant",45.607582,1.026154,-1,0,STE:SA:OCE87592741,Europe/Paris,,STE, +STE:SP:OCETrainTER-87592808,1,"Gare de La Meyze",45.621338,1.212189,-1,0,STE:SA:OCE87592808,Europe/Paris,,STE, +STE:SP:OCETrainTER-87592824,1,"Gare de St-Yrieix-la-Perche",45.519241,1.205501,-1,0,STE:SA:OCE87592824,Europe/Paris,,STE, +STE:SP:OCETrainTER-87592840,1,"Gare de Coussac-Bonneval",45.507726,1.310995,-1,0,STE:SA:OCE87592840,Europe/Paris,,STE, +STE:SP:OCETrainTER-87592873,1,"Gare de Chabanais",45.872554,0.716818,-1,0,SIN:SA:OCE87592873,Europe/Paris,,STE, +STE:SP:OCETrainTER-87594002,1,"Gare de Brive-la-Gaillarde",45.152562,1.528623,-1,0,SIN:SA:OCE87594002,Europe/Paris,,STE, +STE:SP:OCETrainTER-87594085,1,"Gare de Jassonneix",45.543524,2.139615,-1,0,STE:SA:OCE87594085,Europe/Paris,,STE, +STE:SP:OCETrainTER-87594093,1,"Gare de Ussel",45.557326,2.314433,-1,0,SIN:SA:OCE87594093,Europe/Paris,,STE, +STE:SP:OCETrainTER-87594119,1,"Gare de Corrèze",45.329337,1.880385,-1,0,SIN:SA:OCE87594119,Europe/Paris,,STE, +STE:SP:OCETrainTER-87594135,1,"Gare de Montaignac-St-Hippolyte",45.354592,1.979534,-1,0,SIN:SA:OCE87594135,Europe/Paris,,STE, +STE:SP:OCETrainTER-87594168,1,"Gare de Egletons",45.402315,2.065144,-1,0,SIN:SA:OCE87594168,Europe/Paris,,STE, +STE:SP:OCETrainTER-87594200,1,"Gare de Uzerche",45.440621,1.570228,-1,0,SIN:SA:OCE87594200,Europe/Paris,,STE, +STE:SP:OCETrainTER-87594218,1,"Gare de Vigeois",45.382884,1.515123,-1,0,STE:SA:OCE87594218,Europe/Paris,,STE, +STE:SP:OCETrainTER-87594234,1,"Gare de Allassac",45.258966,1.473229,-1,0,STE:SA:OCE87594234,Europe/Paris,,STE, +STE:SP:OCETrainTER-87594275,1,"Gare de Meymac",45.530241,2.16388,-1,0,SIN:SA:OCE87594275,Europe/Paris,,STE, +STE:SP:OCETrainTER-87594325,1,"Gare de Gignac-Cressensac (Lot)",45.01474,1.483241,-1,0,STE:SA:OCE87594325,Europe/Paris,,STE, +STE:SP:OCETrainTER-87594333,1,"Gare de Souillac",44.902337,1.465215,-1,0,SIN:SA:OCE87594333,Europe/Paris,,STE, +STE:SP:OCETrainTER-87594382,1,"Gare de Condat-le-Lardin",45.126716,1.226651,-1,0,SIN:SA:OCE87594382,Europe/Paris,,STE, +STE:SP:OCETrainTER-87594408,1,"Gare de Terrasson",45.13568,1.300509,-1,0,SIN:SA:OCE87594408,Europe/Paris,,STE, +STE:SP:OCETrainTER-87594416,1,"Gare de La Rivière-de-Mansac",45.139709,1.365069,-1,0,STE:SA:OCE87594416,Europe/Paris,,STE, +STE:SP:OCETrainTER-87594424,1,"Gare de Larche",45.132112,1.416216,-1,0,STE:SA:OCE87594424,Europe/Paris,,STE, +STE:SP:OCETrainTER-87594465,1,"Gare de Aubazine-St-Hilaire",45.181764,1.641725,-1,0,SIN:SA:OCE87594465,Europe/Paris,,STE, +STE:SP:OCETrainTER-87594481,1,"Gare de Cornil",45.215275,1.697409,-1,0,SIN:SA:OCE87594481,Europe/Paris,,STE, +STE:SP:OCETrainTER-87594499,1,"Gare de Tulle",45.258708,1.756432,-1,0,SIN:SA:OCE87594499,Europe/Paris,,STE, +STE:SP:OCETrainTER-87594556,1,"Gare de Turenne",45.039829,1.5998,-1,0,STE:SA:OCE87594556,Europe/Paris,,STE, +STE:SP:OCETrainTER-87594564,1,"Gare de Les Quatre-Routes",44.99702,1.644498,-1,0,SIN:SA:OCE87594564,Europe/Paris,,STE, +STE:SP:OCETrainTER-87594572,1,"Gare de St-Denis-près-Martel",44.945792,1.666287,-1,0,SIN:SA:OCE87594572,Europe/Paris,,STE, +STE:SP:OCETrainTER-87594606,1,"Gare de Varetz",45.191065,1.447351,-1,0,STE:SA:OCE87594606,Europe/Paris,,STE, +STE:SP:OCETrainTER-87594614,1,"Gare de Le Burg",45.216228,1.42965,-1,0,STE:SA:OCE87594614,Europe/Paris,,STE, +STE:SP:OCETrainTER-87594622,1,"Gare de St-Aulaire",45.249921,1.398456,-1,0,STE:SA:OCE87594622,Europe/Paris,,STE, +STE:SP:OCETrainTER-87594630,1,"Gare de Objat",45.264737,1.406882,-1,0,STE:SA:OCE87594630,Europe/Paris,,STE, +STE:SP:OCETrainTER-87594655,1,"Gare de Vignols-St-Solve",45.313088,1.397744,-1,0,STE:SA:OCE87594655,Europe/Paris,,STE, +STE:SP:OCETrainTER-87594663,1,"Gare de Pompadour",45.395218,1.38708,-1,0,STE:SA:OCE87594663,Europe/Paris,,STE, +STE:SP:OCETrainTER-87594671,1,"Gare de Lubersac",45.444546,1.388981,-1,0,STE:SA:OCE87594671,Europe/Paris,,STE, +STE:SP:OCETrainTER-87594739,1,"Gare de Vayrac",44.950138,1.706288,-1,0,STE:SA:OCE87594739,Europe/Paris,,STE, +STE:SP:OCETrainTER-87594747,1,"Gare de Bétaille",44.942533,1.734529,-1,0,STE:SA:OCE87594747,Europe/Paris,,STE, +STE:SP:OCETrainTER-87594754,1,"Gare de Puybrun",44.921716,1.784029,-1,0,SIN:SA:OCE87594754,Europe/Paris,,STE, +STE:SP:OCETrainTER-87594762,1,"Gare de Bretenoux-Biars",44.927568,1.844204,-1,0,SIN:SA:OCE87594762,Europe/Paris,,STE, +STE:SP:OCETrainTER-87594796,1,"Gare de Laval-de-Cère",44.951291,1.931412,-1,0,STE:SA:OCE87594796,Europe/Paris,,STE, +STE:SP:OCETrainTER-87594820,1,"Gare de Masseret",45.536108,1.541353,-1,0,STE:SA:OCE87594820,Europe/Paris,,STE, +STE:SP:OCETrainTER-87595009,1,"Gare de Périgueux",45.187164,0.707181,-1,0,SIN:SA:OCE87595009,Europe/Paris,,STE, +STE:SP:OCETrainTER-87595124,1,"Gare de Thiviers",45.418954,0.921349,-1,0,SIN:SA:OCE87595124,Europe/Paris,,STE, +STE:SP:OCETrainTER-87595132,1,"Gare de Négrondes",45.34598,0.861356,-1,0,STE:SA:OCE87595132,Europe/Paris,,STE, +STE:SP:OCETrainTER-87595157,1,"Gare de Agonac",45.286682,0.748588,-1,0,STE:SA:OCE87595157,Europe/Paris,,STE, +STE:SP:OCETrainTER-87595165,1,"Gare de Château-l'Evêque",45.244706,0.68845,-1,0,STE:SA:OCE87595165,Europe/Paris,,STE, +STE:SP:OCETrainTER-87595223,1,"Gare de Razac",45.165894,0.599211,-1,0,STE:SA:OCE87595223,Europe/Paris,,STE, +STE:SP:OCETrainTER-87595249,1,"Gare de St-Astier",45.139011,0.522819,-1,0,SIN:SA:OCE87595249,Europe/Paris,,STE, +STE:SP:OCETrainTER-87595264,1,"Gare de St-Léon-de-L'Isle",45.123134,0.49197,-1,0,STE:SA:OCE87595264,Europe/Paris,,STE, +STE:SP:OCETrainTER-87595272,1,"Gare de Neuvic (Dordogne)",45.099948,0.445021,-1,0,STE:SA:OCE87595272,Europe/Paris,,STE, +STE:SP:OCETrainTER-87595298,1,"Gare de Mussidan",45.034374,0.354066,-1,0,SIN:SA:OCE87595298,Europe/Paris,,STE, +STE:SP:OCETrainTER-87595322,1,"Gare de Montpon-Ménestérol",45.006279,0.159339,-1,0,SIN:SA:OCE87595322,Europe/Paris,,STE, +STE:SP:OCETrainTER-87595504,1,"Gare de Périgueux-St-Georges",45.178398,0.733657,-1,0,STE:SA:OCE87595504,Europe/Paris,,STE, +STE:SP:OCETrainTER-87595512,1,"Gare de Niversac",45.138187,0.808127,-1,0,SIN:SA:OCE87595512,Europe/Paris,,STE, +STE:SP:OCETrainTER-87595520,1,"Gare de St-Pierre-de-Chignac",45.123389,0.856738,-1,0,STE:SA:OCE87595520,Europe/Paris,,STE, +STE:SP:OCETrainTER-87595538,1,"Gare de Milhac-d'Auberoche",45.129028,0.917886,-1,0,STE:SA:OCE87595538,Europe/Paris,,STE, +STE:SP:OCETrainTER-87595553,1,"Gare de Limeyrat",45.156202,0.977859,-1,0,STE:SA:OCE87595553,Europe/Paris,,STE, +STE:SP:OCETrainTER-87595579,1,"Gare de Thenon",45.160074,1.068623,-1,0,SIN:SA:OCE87595579,Europe/Paris,,STE, +STE:SP:OCETrainTER-87595595,1,"Gare de La Bachellerie",45.151121,1.160089,-1,0,STE:SA:OCE87595595,Europe/Paris,,STE, +STE:SP:OCETrainTER-87595702,1,"Gare de Les Versannes",45.088658,0.857216,-1,0,STE:SA:OCE87595702,Europe/Paris,,STE, +STE:SP:OCETrainTER-87595728,1,"Gare de Mauzens-Miremont",44.977416,0.95693,-1,0,STE:SA:OCE87595728,Europe/Paris,,STE, +STE:SP:OCETrainTER-87595736,1,"Gare de Les Eyzies",44.941268,1.008275,-1,0,SIN:SA:OCE87595736,Europe/Paris,,STE, +STE:SP:OCETrainTER-87595744,1,"Gare de Le Bugue",44.905774,0.942864,-1,0,SIN:SA:OCE87595744,Europe/Paris,,STE, +STE:SP:OCETrainTER-87595751,1,"Gare de Le Buisson",44.847225,0.908183,-1,0,SIN:SA:OCE87595751,Europe/Paris,,STE, +STE:SP:OCETrainTER-87595769,1,"Gare de Siorac-en-Périgord",44.819792,0.984227,-1,0,SIN:SA:OCE87595769,Europe/Paris,,STE, +STE:SP:OCETrainTER-87595777,1,"Gare de St-Cyprien (24)",44.863325,1.043723,-1,0,SIN:SA:OCE87595777,Europe/Paris,,STE, +STE:SP:OCETrainTER-87595827,1,"Gare de Sarlat",44.876656,1.222056,-1,0,SIN:SA:OCE87595827,Europe/Paris,,STE, +STE:SP:OCETrainTER-87595876,1,"Gare de Belvès",44.777364,1.012014,-1,0,SIN:SA:OCE87595876,Europe/Paris,,STE, +STE:SP:OCETrainTER-87595892,1,"Gare de Villefranche-Périgord",44.626975,1.049208,-1,0,SIN:SA:OCE87595892,Europe/Paris,,STE, +STE:SP:OCETrainTER-87597005,1,"Gare de Châteauroux",46.809823,1.699457,-1,0,SIN:SA:OCE87597005,Europe/Paris,,STE, +STE:SP:OCETrainTER-87597039,1,"Gare de Reuilly (Indre)",47.086015,2.047182,-1,0,STE:SA:OCE87597039,Europe/Paris,,STE, +STE:SP:OCETrainTER-87597054,1,"Gare de Ste-Lizaigne",47.00264,2.030076,-1,0,STE:SA:OCE87597054,Europe/Paris,,STE, +STE:SP:OCETrainTER-87597062,1,"Gare de Issoudun",46.947849,1.984921,-1,0,SIN:SA:OCE87597062,Europe/Paris,,STE, +STE:SP:OCETrainTER-87597070,1,"Gare de Neuvy-Pailloux",46.882688,1.862808,-1,0,STE:SA:OCE87597070,Europe/Paris,,STE, +STE:SP:OCETrainTER-87597096,1,"Gare de Luant",46.73505,1.589621,-1,0,STE:SA:OCE87597096,Europe/Paris,,STE, +STE:SP:OCETrainTER-87597104,1,"Gare de Lothiers",46.694718,1.562837,-1,0,STE:SA:OCE87597104,Europe/Paris,,STE, +STE:SP:OCETrainTER-87597112,1,"Gare de Chabenet",46.626439,1.507853,-1,0,STE:SA:OCE87597112,Europe/Paris,,STE, +STE:SP:OCETrainTER-87597120,1,"Gare de Argenton-sur-Creuse",46.592225,1.51823,-1,0,SIN:SA:OCE87597120,Europe/Paris,,STE, +STE:SP:OCETrainTER-87597153,1,"Gare de Eguzon",46.440492,1.552365,-1,0,STE:SA:OCE87597153,Europe/Paris,,STE, +STE:SP:OCETrainTER-87597609,1,"Gare de Guéret",46.174146,1.87917,-1,0,SIN:SA:OCE87597609,Europe/Paris,,STE, +STE:SP:OCETrainTER-87597625,1,"Gare de Marsac (Creuse)",46.094192,1.585606,-1,0,STE:SA:OCE87597625,Europe/Paris,,STE, +STE:SP:OCETrainTER-87597633,1,"Gare de Vieilleville",46.091135,1.673544,-1,0,STE:SA:OCE87597633,Europe/Paris,,STE, +STE:SP:OCETrainTER-87597674,1,"Gare de Montaigut (Creuse)",46.136792,1.733935,-1,0,STE:SA:OCE87597674,Europe/Paris,,STE, +STE:SP:OCETrainTER-87597708,1,"Gare de Busseau-sur-Creuse",46.123093,2.023102,-1,0,STE:SA:OCE87597708,Europe/Paris,,STE, +STE:SP:OCETrainTER-87597724,1,"Gare de Parsac-Gouzon",46.198312,2.174196,-1,0,SIN:SA:OCE87597724,Europe/Paris,,STE, +STE:SP:OCETrainTER-87597740,1,"Gare de Lavaufranche",46.321408,2.270338,-1,0,STE:SA:OCE87597740,Europe/Paris,,STE, +STE:SP:OCETrainTER-87597781,1,"Gare de Lavaveix-les-Mines",46.078902,2.0892,-1,0,STE:SA:OCE87597781,Europe/Paris,,STE, +STE:SP:OCETrainTER-87597823,1,"Gare de Aubusson",45.960933,2.16048,-1,0,STE:SA:OCE87597823,Europe/Paris,,STE, +STE:SP:OCETrainTER-87597849,1,"Gare de Felletin-Gare",45.886507,2.169454,-1,0,STE:SA:OCE87597849,Europe/Paris,,STE, +STE:SP:OCETrainTER-87611004,1,"Gare de Toulouse-Matabiau",43.611464,1.453558,-1,0,SIN:SA:OCE87611004,Europe/Paris,,STE, +STE:SP:OCETrainTER-87611038,1,"Gare de Muret",43.464784,1.324162,-1,0,SIN:SA:OCE87611038,Europe/Paris,,STE, +STE:SP:OCETrainTER-87611046,1,"Gare de Fauga",43.404343,1.28289,-1,0,SIN:SA:OCE87611046,Europe/Paris,,STE, +STE:SP:OCETrainTER-87611053,1,"Gare de Longages-Noé",43.356207,1.251987,-1,0,SIN:SA:OCE87611053,Europe/Paris,,STE, +STE:SP:OCETrainTER-87611061,1,"Gare de Carbonne",43.298197,1.212506,-1,0,SIN:SA:OCE87611061,Europe/Paris,,STE, +STE:SP:OCETrainTER-87611079,1,"Gare de Cazères-sur-Garonne",43.212901,1.082767,-1,0,SIN:SA:OCE87611079,Europe/Paris,,STE, +STE:SP:OCETrainTER-87611087,1,"Gare de Martres-Tolosane",43.198551,1.010304,-1,0,SIN:SA:OCE87611087,Europe/Paris,,STE, +STE:SP:OCETrainTER-87611095,1,"Gare de Boussens",43.179327,0.972745,-1,0,SIN:SA:OCE87611095,Europe/Paris,,STE, +STE:SP:OCETrainTER-87611103,1,"Gare de St-Martory",43.138404,0.933628,-1,0,SIN:SA:OCE87611103,Europe/Paris,,STE, +STE:SP:OCETrainTER-87611137,1,"Gare de St-Gaudens",43.104956,0.729263,-1,0,SIN:SA:OCE87611137,Europe/Paris,,STE, +STE:SP:OCETrainTER-87611152,1,"Gare de Montréjeau-Gourdan-Pol.",43.078057,0.573536,-1,0,SIN:SA:OCE87611152,Europe/Paris,,STE, +STE:SP:OCETrainTER-87611244,1,"Gare de Montauban-Ville-Bourbon",44.014639,1.341974,-1,0,SIN:SA:OCE87611244,Europe/Paris,,STE, +STE:SP:OCETrainTER-87611301,1,"Gare de St-Agne",43.579262,1.449555,-1,0,STE:SA:OCE87611301,Europe/Paris,,STE, +STE:SP:OCETrainTER-87611327,1,"Gare de Varilhes",43.04149,1.628576,-1,0,SIN:SA:OCE87611327,Europe/Paris,,STE, +STE:SP:OCETrainTER-87611343,1,"Gare de Pamiers",43.116175,1.618998,-1,0,SIN:SA:OCE87611343,Europe/Paris,,STE, +STE:SP:OCETrainTER-87611350,1,"Gare de Vernet-d'Ariège",43.189488,1.611697,-1,0,SIN:SA:OCE87611350,Europe/Paris,,STE, +STE:SP:OCETrainTER-87611368,1,"Gare de Saverdun",43.239421,1.570422,-1,0,SIN:SA:OCE87611368,Europe/Paris,,STE, +STE:SP:OCETrainTER-87611376,1,"Gare de Cintegabelle",43.305347,1.521085,-1,0,SIN:SA:OCE87611376,Europe/Paris,,STE, +STE:SP:OCETrainTER-87611384,1,"Gare de Auterive",43.348835,1.468624,-1,0,SIN:SA:OCE87611384,Europe/Paris,,STE, +STE:SP:OCETrainTER-87611392,1,"Gare de Venerque-le-Vernet",43.433328,1.425869,-1,0,SIN:SA:OCE87611392,Europe/Paris,,STE, +STE:SP:OCETrainTER-87611400,1,"Gare de Portet-St-Simon",43.530781,1.405897,-1,0,SIN:SA:OCE87611400,Europe/Paris,,STE, +STE:SP:OCETrainTER-87611434,1,"Gare de Lacourtensourt",43.663845,1.414126,-1,0,STE:SA:OCE87611434,Europe/Paris,,STE, +STE:SP:OCETrainTER-87611459,1,"Gare de Lavilledieu",44.035262,1.214894,-1,0,STE:SA:OCE87611459,Europe/Paris,,STE, +STE:SP:OCETrainTER-87611467,1,"Gare de Colomiers",43.603774,1.333448,-1,0,STE:SA:OCE87611467,Europe/Paris,,STE, +STE:SP:OCETrainTER-87611483,1,"Gare de Latour-de-Carol-Enveitg",42.458157,1.90584,-1,0,SIN:SA:OCE87611483,Europe/Paris,,STE, +STE:SP:OCETrainTER-87611509,1,"Gare de Porte-Puymorens",42.538759,1.82485,-1,0,SIN:SA:OCE87611509,Europe/Paris,,STE, +STE:SP:OCETrainTER-87611517,1,"Gare de Andorre-L'Hospitalet",42.588385,1.798515,-1,0,SIN:SA:OCE87611517,Europe/Paris,,STE, +STE:SP:OCETrainTER-87611525,1,"Gare de Mérens-les-Vals",42.658677,1.83642,-1,0,SIN:SA:OCE87611525,Europe/Paris,,STE, +STE:SP:OCETrainTER-87611533,1,"Gare de Ax-les-Thermes",42.724805,1.833315,-1,0,SIN:SA:OCE87611533,Europe/Paris,,STE, +STE:SP:OCETrainTER-87611558,1,"Gare de Luzenac-Garanou",42.764444,1.753154,-1,0,SIN:SA:OCE87611558,Europe/Paris,,STE, +STE:SP:OCETrainTER-87611574,1,"Gare de Les Cabannes",42.786537,1.68618,-1,0,SIN:SA:OCE87611574,Europe/Paris,,STE, +STE:SP:OCETrainTER-87611590,1,"Gare de Tarascon-sur-Ariège",42.849453,1.600031,-1,0,SIN:SA:OCE87611590,Europe/Paris,,STE, +STE:SP:OCETrainTER-87611616,1,"Gare de Foix",42.969299,1.607394,-1,0,SIN:SA:OCE87611616,Europe/Paris,,STE, +STE:SP:OCETrainTER-87611624,1,"Gare de St-Jean-de-Verges",43.012344,1.608147,-1,0,SIN:SA:OCE87611624,Europe/Paris,,STE, +STE:SP:OCETrainTER-87611657,1,"Gare de St-Jory",43.738021,1.371576,-1,0,STE:SA:OCE87611657,Europe/Paris,,STE, +STE:SP:OCETrainTER-87611665,1,"Gare de Castelnau-d'Estrétefond",43.786171,1.341921,-1,0,STE:SA:OCE87611665,Europe/Paris,,STE, +STE:SP:OCETrainTER-87611673,1,"Gare de Grisolles",43.827801,1.303157,-1,0,STE:SA:OCE87611673,Europe/Paris,,STE, +STE:SP:OCETrainTER-87611681,1,"Gare de Dieupentale",43.865525,1.276152,-1,0,STE:SA:OCE87611681,Europe/Paris,,STE, +STE:SP:OCETrainTER-87611699,1,"Gare de Montbartier",43.92393,1.264462,-1,0,STE:SA:OCE87611699,Europe/Paris,,STE, +STE:SP:OCETrainTER-87611707,1,"Gare de Escalquens",43.517042,1.542432,-1,0,STE:SA:OCE87611707,Europe/Paris,,STE, +STE:SP:OCETrainTER-87611723,1,"Gare de Baziège",43.453554,1.620687,-1,0,STE:SA:OCE87611723,Europe/Paris,,STE, +STE:SP:OCETrainTER-87611749,1,"Gare de Auch",43.647108,0.596133,-1,0,STE:SA:OCE87611749,Europe/Paris,,STE, +STE:SP:OCETrainTER-87611764,1,"Gare de Aubiet",43.649977,0.789054,-1,0,STE:SA:OCE87611764,Europe/Paris,,STE, +STE:SP:OCETrainTER-87611772,1,"Gare de Gimont-Cahuzac",43.633182,0.867584,-1,0,STE:SA:OCE87611772,Europe/Paris,,STE, +STE:SP:OCETrainTER-87611806,1,"Gare de L'Isle-Jourdain (Gers)",43.617327,1.089681,-1,0,STE:SA:OCE87611806,Europe/Paris,,STE, +STE:SP:OCETrainTER-87611814,1,"Gare de Mérenvielle",43.636631,1.150772,-1,0,STE:SA:OCE87611814,Europe/Paris,,STE, +STE:SP:OCETrainTER-87611822,1,"Gare de Brax-Léguevin",43.614587,1.237302,-1,0,STE:SA:OCE87611822,Europe/Paris,,STE, +STE:SP:OCETrainTER-87611830,1,"Gare de Pibrac",43.621315,1.289375,-1,0,STE:SA:OCE87611830,Europe/Paris,,STE, +STE:SP:OCETrainTER-87611848,1,"Gare de Montrabé",43.645113,1.524062,-1,0,SIN:SA:OCE87611848,Europe/Paris,,STE, +STE:SP:OCETrainTER-87611855,1,"Gare de Lamagistère",44.126711,0.825467,-1,0,STE:SA:OCE87611855,Europe/Paris,,STE, +STE:SP:OCETrainTER-87611863,1,"Gare de Valence-d'Agen",44.111846,0.891791,-1,0,SIN:SA:OCE87611863,Europe/Paris,,STE, +STE:SP:OCETrainTER-87611889,1,"Gare de Moissac",44.102144,1.07749,-1,0,SIN:SA:OCE87611889,Europe/Paris,,STE, +STE:SP:OCETrainTER-87611897,1,"Gare de Castelsarrasin",44.040283,1.114178,-1,0,SIN:SA:OCE87611897,Europe/Paris,,STE, +STE:SP:OCETrainTER-87611921,1,"Gare de Colomiers-Lycée-Interna",43.616427,1.313925,-1,0,STE:SA:OCE87611921,Europe/Paris,,STE, +STE:SP:OCETrainTER-87611939,1,"Gare de Lardenne",43.596528,1.383986,-1,0,STE:SA:OCE87611939,Europe/Paris,,STE, +STE:SP:OCETrainTER-87612002,1,"Gare de Labège-Innopole",43.547461,1.512958,-1,0,STE:SA:OCE87612002,Europe/Paris,,STE, +STE:SP:OCETrainTER-87612010,1,"Gare de Montaudran",43.573694,1.480239,-1,0,STE:SA:OCE87612010,Europe/Paris,,STE, +STE:SP:OCETrainTER-87612028,1,"Gare de Labège-Village",43.53051,1.533338,-1,0,STE:SA:OCE87612028,Europe/Paris,,STE, +STE:SP:OCETrainTER-87613000,1,"Gare de Cahors",44.44916,1.433238,-1,0,SIN:SA:OCE87613000,Europe/Paris,,STE, +STE:SP:OCETrainTER-87613042,1,"Gare de Rocamadour-Padirac",44.817911,1.657445,-1,0,SIN:SA:OCE87613042,Europe/Paris,,STE, +STE:SP:OCETrainTER-87613059,1,"Gare de Gramat",44.77349,1.722371,-1,0,SIN:SA:OCE87613059,Europe/Paris,,STE, +STE:SP:OCETrainTER-87613075,1,"Gare de Assier",44.674593,1.869747,-1,0,SIN:SA:OCE87613075,Europe/Paris,,STE, +STE:SP:OCETrainTER-87613091,1,"Gare de Figeac",44.603514,2.037077,-1,0,SIN:SA:OCE87613091,Europe/Paris,,STE, +STE:SP:OCETrainTER-87613109,1,"Gare de Capdenac",44.577656,2.078902,-1,0,SIN:SA:OCE87613109,Europe/Paris,,STE, +STE:SP:OCETrainTER-87613141,1,"Gare de Gourdon",44.741898,1.389276,-1,0,SIN:SA:OCE87613141,Europe/Paris,,STE, +STE:SP:OCETrainTER-87613174,1,"Gare de Dégagnac",44.653353,1.340041,-1,0,STE:SA:OCE87613174,Europe/Paris,,STE, +STE:SP:OCETrainTER-87613224,1,"Gare de Aubin",44.527356,2.239559,-1,0,SIN:SA:OCE87613224,Europe/Paris,,STE, +STE:SP:OCETrainTER-87613232,1,"Gare de Cransac",44.523063,2.270767,-1,0,SIN:SA:OCE87613232,Europe/Paris,,STE, +STE:SP:OCETrainTER-87613257,1,"Gare de St-Christophe",44.464687,2.407487,-1,0,SIN:SA:OCE87613257,Europe/Paris,,STE, +STE:SP:OCETrainTER-87613323,1,"Gare de Lalbenque-Fontanes",44.332731,1.511304,-1,0,STE:SA:OCE87613323,Europe/Paris,,STE, +STE:SP:OCETrainTER-87613356,1,"Gare de Caussade (T.-et-G.)",44.162304,1.533453,-1,0,SIN:SA:OCE87613356,Europe/Paris,,STE, +STE:SP:OCETrainTER-87613398,1,"Gare de Albias",44.091975,1.444875,-1,0,STE:SA:OCE87613398,Europe/Paris,,STE, +STE:SP:OCETrainTER-87613422,1,"Gare de Rodez",44.362652,2.580253,-1,0,SIN:SA:OCE87613422,Europe/Paris,,STE, +STE:SP:OCETrainTER-87613463,1,"Gare de Najac",44.222483,1.976568,-1,0,STE:SA:OCE87613463,Europe/Paris,,STE, +STE:SP:OCETrainTER-87613471,1,"Gare de Laguépie",44.145489,1.96863,-1,0,SIN:SA:OCE87613471,Europe/Paris,,STE, +STE:SP:OCETrainTER-87613489,1,"Gare de Lexos",44.142223,1.884432,-1,0,STE:SA:OCE87613489,Europe/Paris,,STE, +STE:SP:OCETrainTER-87613604,1,"Gare de Bagnac",44.66528,2.160163,-1,0,SIN:SA:OCE87613604,Europe/Paris,,STE, +STE:SP:OCETrainTER-87613661,1,"Gare de Viviez-Decazeville",44.55704,2.218024,-1,0,SIN:SA:OCE87613661,Europe/Paris,,STE, +STE:SP:OCETrainTER-87613802,1,"Gare de Cordes-Vindrac",44.066994,1.899996,-1,0,STE:SA:OCE87613802,Europe/Paris,,STE, +STE:SP:OCETrainTER-87613877,1,"Gare de Salles-Courbatiers",44.475548,2.079019,-1,0,STE:SA:OCE87613877,Europe/Paris,,STE, +STE:SP:OCETrainTER-87613893,1,"Gare de Villefranche-Rouergue",44.347681,2.036583,-1,0,SIN:SA:OCE87613893,Europe/Paris,,STE, +STE:SP:OCETrainTER-87615005,1,"Gare de Albi-Ville",43.922036,2.138635,-1,0,SIN:SA:OCE87615005,Europe/Paris,,STE, +STE:SP:OCETrainTER-87615013,1,"Gare de Villefranche-Lauragais",43.398453,1.7145,-1,0,STE:SA:OCE87615013,Europe/Paris,,STE, +STE:SP:OCETrainTER-87615039,1,"Gare de Castelnaudary",43.312646,1.950989,-1,0,SIN:SA:OCE87615039,Europe/Paris,,STE, +STE:SP:OCETrainTER-87615054,1,"Gare de Bram",43.243705,2.119556,-1,0,STE:SA:OCE87615054,Europe/Paris,,STE, +STE:SP:OCETrainTER-87615112,1,"Gare de Lézignan-Corbières",43.199971,2.769857,-1,0,SIN:SA:OCE87615112,Europe/Paris,,STE, +STE:SP:OCETrainTER-87615195,1,"Gare de Albi-Madeleine.",43.937899,2.141168,-1,0,SIN:SA:OCE87615195,Europe/Paris,,STE, +STE:SP:OCETrainTER-87615245,1,"Gare de Tessonnières",43.928396,1.93741,-1,0,SIN:SA:OCE87615245,Europe/Paris,,STE, +STE:SP:OCETrainTER-87615252,1,"Gare de Gaillac",43.905963,1.894819,-1,0,STE:SA:OCE87615252,Europe/Paris,,STE, +STE:SP:OCETrainTER-87615286,1,"Gare de Carcassonne",43.217715,2.351883,-1,0,SIN:SA:OCE87615286,Europe/Paris,,STE, +STE:SP:OCETrainTER-87615310,1,"Gare de Lisle-sur-Tarn",43.856228,1.807745,-1,0,SIN:SA:OCE87615310,Europe/Paris,,STE, +STE:SP:OCETrainTER-87615328,1,"Gare de Rabastens-Couffouleux",43.819489,1.730763,-1,0,SIN:SA:OCE87615328,Europe/Paris,,STE, +STE:SP:OCETrainTER-87615344,1,"Gare de St-Sulpice (Tarn)",43.775412,1.681037,-1,0,SIN:SA:OCE87615344,Europe/Paris,,STE, +STE:SP:OCETrainTER-87615351,1,"Gare de Roqueserière-Buzet",43.750644,1.61824,-1,0,STE:SA:OCE87615351,Europe/Paris,,STE, +STE:SP:OCETrainTER-87615369,1,"Gare de Montastruc-la-Conseil.",43.715998,1.597894,-1,0,SIN:SA:OCE87615369,Europe/Paris,,STE, +STE:SP:OCETrainTER-87615377,1,"Gare de Gragnague",43.695795,1.567568,-1,0,SIN:SA:OCE87615377,Europe/Paris,,STE, +STE:SP:OCETrainTER-87615419,1,"Gare de Marssac-sur-Tarn",43.915095,2.026759,-1,0,SIN:SA:OCE87615419,Europe/Paris,,STE, +STE:SP:OCETrainTER-87615468,1,"Gare de Castres",43.597754,2.229263,-1,0,SIN:SA:OCE87615468,Europe/Paris,,STE, +STE:SP:OCETrainTER-87615476,1,"Gare de Lavaur",43.703391,1.81303,-1,0,SIN:SA:OCE87615476,Europe/Paris,,STE, +STE:SP:OCETrainTER-87615484,1,"Gare de Damiatte-St-Paul",43.656097,1.974142,-1,0,STE:SA:OCE87615484,Europe/Paris,,STE, +STE:SP:OCETrainTER-87615492,1,"Gare de Vielmur-sur-Agout",43.624101,2.089438,-1,0,SIN:SA:OCE87615492,Europe/Paris,,STE, +STE:SP:OCETrainTER-87615526,1,"Gare de Labruguière",43.542586,2.259229,-1,0,STE:SA:OCE87615526,Europe/Paris,,STE, +STE:SP:OCETrainTER-87615542,1,"Gare de Mazamet",43.497545,2.374424,-1,0,SIN:SA:OCE87615542,Europe/Paris,,STE, +STE:SP:OCETrainTER-87615625,1,"Gare de Carmaux",44.049004,2.152389,-1,0,SIN:SA:OCE87615625,Europe/Paris,,STE, +STE:SP:OCETrainTER-87615674,1,"Gare de Tanus",44.100299,2.314931,-1,0,SIN:SA:OCE87615674,Europe/Paris,,STE, +STE:SP:OCETrainTER-87615732,1,"Gare de Naucelle",44.18567,2.363256,-1,0,SIN:SA:OCE87615732,Europe/Paris,,STE, +STE:SP:OCETrainTER-87615757,1,"Gare de Baraqueville-Carce.Pey.",44.270382,2.427506,-1,0,SIN:SA:OCE87615757,Europe/Paris,,STE, +STE:SP:OCETrainTER-87615773,1,"Gare de Luc-Primaube",44.291389,2.554483,-1,0,SIN:SA:OCE87615773,Europe/Paris,,STE, +STE:SP:OCETrainTER-87616011,1,"Gare de Avignonet",43.363885,1.787767,-1,0,STE:SA:OCE87616011,Europe/Paris,,STE, +STE:SP:OCETrainTER-87618116,1,"Gare de Pins Justaret",43.480772,1.399589,-1,0,SIN:SA:OCE87618116,Europe/Paris,,STE, +STE:SP:OCETrainTER-87618207,1,"Gare de Montlaur",43.474894,1.577942,-1,0,STE:SA:OCE87618207,Europe/Paris,,STE, +STE:SP:OCETrainTER-87618215,1,"Gare de Villenouvelle",43.433287,1.660884,-1,0,STE:SA:OCE87618215,Europe/Paris,,STE, +STE:SP:OCETrainTER-87641001,1,"Gare de Montluçon-Ville",46.337875,2.596412,-1,0,SIN:SA:OCE87641001,Europe/Paris,,STE, +STE:SP:OCETrainTER-87641217,1,"Gare de Huriel",46.371419,2.476122,-1,0,STE:SA:OCE87641217,Europe/Paris,,STE, +STE:SP:OCETrainTER-87645002,1,"Gare de Aurillac",44.920986,2.435547,-1,0,SIN:SA:OCE87645002,Europe/Paris,,STE, +STE:SP:OCETrainTER-87645101,1,"Gare de Ytrac",44.91062,2.364315,-1,0,STE:SA:OCE87645101,Europe/Paris,,STE, +STE:SP:OCETrainTER-87645135,1,"Gare de Laroquebrou",44.964201,2.192841,-1,0,SIN:SA:OCE87645135,Europe/Paris,,STE, +STE:SP:OCETrainTER-87645150,1,"Gare de La Capelle-Viescamp",44.920494,2.265382,-1,0,STE:SA:OCE87645150,Europe/Paris,,STE, +STE:SP:OCETrainTER-87645168,1,"Gare de Maurs",44.706133,2.199697,-1,0,SIN:SA:OCE87645168,Europe/Paris,,STE, +STE:SP:OCETrainTER-87645176,1,"Gare de Pers",44.886979,2.240259,-1,0,STE:SA:OCE87645176,Europe/Paris,,STE, +STE:SP:OCETrainTER-87645184,1,"Gare de Boisset (Cantal)",44.785817,2.249439,-1,0,STE:SA:OCE87645184,Europe/Paris,,STE, +STE:SP:OCETrainTER-87645192,1,"Gare de Le Rouget",44.856555,2.235418,-1,0,SIN:SA:OCE87645192,Europe/Paris,,STE, +STE:SP:OCETrainTER-87645440,1,"Gare de Vic-sur-Cère",44.975948,2.631437,-1,0,STE:SA:OCE87645440,Europe/Paris,,STE, +STE:SP:OCETrainTER-87645473,1,"Gare de Le Lioran",45.09075,2.753267,-1,0,STE:SA:OCE87645473,Europe/Paris,,STE, +STE:SP:OCETrainTER-87645481,1,"Gare de Murat (Cantal)",45.109081,2.869588,-1,0,STE:SA:OCE87645481,Europe/Paris,,STE, +STE:SP:OCETrainTER-87645507,1,"Gare de Neussargues",45.125386,2.979126,-1,0,SIN:SA:OCE87645507,Europe/Paris,,STE, +STE:SP:OCETrainTER-87671008,1,"Gare de Tarbes",43.239803,0.069407,-1,0,SIN:SA:OCE87671008,Europe/Paris,,STE, +STE:SP:OCETrainTER-87671016,1,"Gare de Mont-de-Marsan",43.885223,-0.505091,-1,0,SIN:SA:OCE87671016,Europe/Paris,,STE, +STE:SP:OCETrainTER-87671123,1,"Gare de Lannemezan",43.114308,0.38769,-1,0,SIN:SA:OCE87671123,Europe/Paris,,STE, +STE:SP:OCETrainTER-87671156,1,"Gare de Capvern",43.103057,0.32974,-1,0,SIN:SA:OCE87671156,Europe/Paris,,STE, +STE:SP:OCETrainTER-87671172,1,"Gare de Tournay (Htes-Pyrénées)",43.183502,0.238967,-1,0,SIN:SA:OCE87671172,Europe/Paris,,STE, +STE:SP:OCETrainTER-87671313,1,"Gare de Ossun",43.183316,-0.021608,-1,0,STE:SA:OCE87671313,Europe/Paris,,STE, +STE:SP:OCETrainTER-87671339,1,"Gare de Lourdes",43.100429,-0.042192,-1,0,SIN:SA:OCE87671339,Europe/Paris,,STE, +STE:SP:OCETrainTER-87671362,1,"Gare de St-Pé (Htes-Pyrénées)",43.101551,-0.161971,-1,0,STE:SA:OCE87671362,Europe/Paris,,STE, +STE:SP:OCETrainTER-87671479,1,"Gare de Arengosse",44.006926,-0.808738,-1,0,SIN:SA:OCE87671479,Europe/Paris,,STE, +STE:SP:OCETrainTER-87671487,1,"Gare de Ygos",43.978221,-0.736139,-1,0,SIN:SA:OCE87671487,Europe/Paris,,STE, +STE:SP:OCETrainTER-87671495,1,"Gare de St-Martin-d'Oney",43.929892,-0.651486,-1,0,SIN:SA:OCE87671495,Europe/Paris,,STE, +STE:SP:OCETrainTER-87672006,1,"Gare de Pau",43.291667,-0.36965,-1,0,SIN:SA:OCE87672006,Europe/Paris,,STE, +STE:SP:OCETrainTER-87672113,1,"Gare de Montaut-Bétharram",43.127051,-0.198398,-1,0,STE:SA:OCE87672113,Europe/Paris,,STE, +STE:SP:OCETrainTER-87672139,1,"Gare de Coarraze-Nay",43.181832,-0.241756,-1,0,SIN:SA:OCE87672139,Europe/Paris,,STE, +STE:SP:OCETrainTER-87672162,1,"Gare de Assat",43.254631,-0.295222,-1,0,STE:SA:OCE87672162,Europe/Paris,,STE, +STE:SP:OCETrainTER-87672212,1,"Gare de Artix",43.393198,-0.570124,-1,0,STE:SA:OCE87672212,Europe/Paris,,STE, +STE:SP:OCETrainTER-87672253,1,"Gare de Orthez",43.484099,-0.767625,-1,0,SIN:SA:OCE87672253,Europe/Paris,,STE, +STE:SP:OCETrainTER-87672279,1,"Gare de Puyoô",43.524479,-0.91086,-1,0,STE:SA:OCE87672279,Europe/Paris,,STE, +STE:SP:OCETrainTER-87672337,1,"Gare de Peyrehorade",43.54677,-1.115791,-1,0,STE:SA:OCE87672337,Europe/Paris,,STE, +STE:SP:OCETrainTER-87672386,1,"Gare de Urt",43.499249,-1.300459,-1,0,STE:SA:OCE87672386,Europe/Paris,,STE, +STE:SP:OCETrainTER-87672600,1,"Gare de Croix-du-Prince",43.285611,-0.379148,-1,0,STE:SA:OCE87672600,Europe/Paris,,STE, +STE:SP:OCETrainTER-87672618,1,"Gare de Gan",43.234296,-0.391403,-1,0,STE:SA:OCE87672618,Europe/Paris,,STE, +STE:SP:OCETrainTER-87672634,1,"Gare de Buzy-en-Béarn",43.148166,-0.45583,-1,0,STE:SA:OCE87672634,Europe/Paris,,STE, +STE:SP:OCETrainTER-87672709,1,"Gare de Ogeu-les-Bains",43.15388,-0.507644,-1,0,STE:SA:OCE87672709,Europe/Paris,,STE, +STE:SP:OCETrainTER-87672725,1,"Gare de Oloron-Ste-Marie",43.195012,-0.612267,-1,0,STE:SA:OCE87672725,Europe/Paris,,STE, +STE:SP:OCETrainTER-87672741,1,"Gare de Lurbe-St-Christau",43.120518,-0.605233,-1,0,STE:SA:OCE87672741,Europe/Paris,,STE, +STE:SP:OCETrainTER-87672766,1,"Gare de Sarrance",43.05111,-0.601113,-1,0,STE:SA:OCE87672766,Europe/Paris,,STE, +STE:SP:OCETrainTER-87672774,1,"Gare de Bedous",43.000551,-0.601121,-1,0,STE:SA:OCE87672774,Europe/Paris,,STE, +STE:SP:OCETrainTER-87673004,1,"Gare de Bayonne",43.496759,-1.470398,-1,0,SIN:SA:OCE87673004,Europe/Paris,,STE, +STE:SP:OCETrainTER-87673095,1,"Gare de Boucau",43.523368,-1.490435,-1,0,SIN:SA:OCE87673095,Europe/Paris,,STE, +STE:SP:OCETrainTER-87673103,1,"Gare de Morcenx",44.033673,-0.908481,-1,0,SIN:SA:OCE87673103,Europe/Paris,,STE, +STE:SP:OCETrainTER-87673202,1,"Gare de Dax",43.720667,-1.050324,-1,0,SIN:SA:OCE87673202,Europe/Paris,,STE, +STE:SP:OCETrainTER-87673251,1,"Gare de Saubusse-les-Bains",43.660191,-1.190237,-1,0,STE:SA:OCE87673251,Europe/Paris,,STE, +STE:SP:OCETrainTER-87673269,1,"Gare de St-Geours-de-Maremne",43.6712,-1.241307,-1,0,SIN:SA:OCE87673269,Europe/Paris,,STE, +STE:SP:OCETrainTER-87673277,1,"Gare de St-Vincent-de-Tyrosse",43.657808,-1.306385,-1,0,SIN:SA:OCE87673277,Europe/Paris,,STE, +STE:SP:OCETrainTER-87673285,1,"Gare de Bénesse-Maremne",43.627647,-1.369912,-1,0,SIN:SA:OCE87673285,Europe/Paris,,STE, +STE:SP:OCETrainTER-87673293,1,"Gare de Labenne",43.587104,-1.428925,-1,0,SIN:SA:OCE87673293,Europe/Paris,,STE, +STE:SP:OCETrainTER-87673319,1,"Gare de Ondres",43.568858,-1.457162,-1,0,SIN:SA:OCE87673319,Europe/Paris,,STE, +STE:SP:OCETrainTER-87673400,1,"Gare de Biarritz",43.459377,-1.546011,-1,0,SIN:SA:OCE87673400,Europe/Paris,,STE, +STE:SP:OCETrainTER-87673459,1,"Gare de Guéthary",43.425428,-1.609927,-1,0,SIN:SA:OCE87673459,Europe/Paris,,STE, +STE:SP:OCETrainTER-87673616,1,"Gare de Villefranque (Pyr.-Atl)",43.431468,-1.456277,-1,0,STE:SA:OCE87673616,Europe/Paris,,STE, +STE:SP:OCETrainTER-87673624,1,"Gare de Ustaritz",43.404722,-1.449063,-1,0,STE:SA:OCE87673624,Europe/Paris,,STE, +STE:SP:OCETrainTER-87673632,1,"Gare de Jatxou",43.391445,-1.444645,-1,0,STE:SA:OCE87673632,Europe/Paris,,STE, +STE:SP:OCETrainTER-87673640,1,"Gare de Halsou-Larressore",43.378219,-1.428231,-1,0,STE:SA:OCE87673640,Europe/Paris,,STE, +STE:SP:OCETrainTER-87673657,1,"Gare de Cambo-les-Bains",43.365543,-1.396706,-1,0,STE:SA:OCE87673657,Europe/Paris,,STE, +STE:SP:OCETrainTER-87673665,1,"Gare de Itxassou",43.324127,-1.395624,-1,0,STE:SA:OCE87673665,Europe/Paris,,STE, +STE:SP:OCETrainTER-87673673,1,"Gare de Louhossoa",43.305719,-1.362375,-1,0,STE:SA:OCE87673673,Europe/Paris,,STE, +STE:SP:OCETrainTER-87673699,1,"Gare de Bidarray-Pont-Noblia",43.268097,-1.345141,-1,0,STE:SA:OCE87673699,Europe/Paris,,STE, +STE:SP:OCETrainTER-87673707,1,"Gare de Ossès-St-Mart-d'Arrossa",43.23515,-1.30499,-1,0,STE:SA:OCE87673707,Europe/Paris,,STE, +STE:SP:OCETrainTER-87673723,1,"Gare de St-Jean-Pied-de-Port",43.168081,-1.238836,-1,0,STE:SA:OCE87673723,Europe/Paris,,STE, +STE:SP:OCETrainTER-87677005,1,"Gare de Hendaye",43.352995,-1.781868,-1,0,SIN:SA:OCE87677005,Europe/Paris,,STE, +STE:SP:OCETrainTER-87677104,1,"Gare de Les Deux-Jumeaux (64)",43.370038,-1.764419,-1,0,SIN:SA:OCE87677104,Europe/Paris,,STE, +STE:SP:OCETrainTER-87677120,1,"Gare de St-Jean-de-Luz-Ciboure",43.385845,-1.661162,-1,0,SIN:SA:OCE87677120,Europe/Paris,,STE, +STE:SP:OCETrainTER-87691949,1,"Gare de Bidos",43.178965,-0.606959,-1,0,STE:SA:OCE87691949,Europe/Paris,,STE, +STE:SP:OCETrainTER-87734004,1,"Gare de Clermont-Ferrand",45.778569,3.100519,-1,0,SIN:SA:OCE87734004,Europe/Paris,,STE, +STE:SP:OCETrainTER-87734202,1,"Gare de Issoire",45.543953,3.254071,-1,0,STE:SA:OCE87734202,Europe/Paris,,STE, +STE:SP:OCETrainTER-87734244,1,"Gare de Brassac-les-Mines",45.4141,3.32993,-1,0,STE:SA:OCE87734244,Europe/Paris,,STE, +STE:SP:OCETrainTER-87734251,1,"Gare de Arvant",45.365383,3.310488,-1,0,STE:SA:OCE87734251,Europe/Paris,,STE, +STE:SP:OCETrainTER-87734871,1,"Gare de Massiac-Blesle",45.253703,3.196585,-1,0,SIN:SA:OCE87734871,Europe/Paris,,STE, +STE:SP:OCETrainTER-87765008,1,"Gare de Avignon-Centre",43.941877,4.805262,-1,0,STE:SA:OCE87765008,Europe/Paris,,STE, +STE:SP:OCETrainTER-87765354,1,"Gare de Tarascon-sur-Rhône",43.801122,4.657245,-1,0,STE:SA:OCE87765354,Europe/Paris,,STE, +STE:SP:OCETrainTER-87773002,1,"Gare de Montpellier-Saint-Roch",43.605834,3.88236,-1,0,SIN:SA:OCE87773002,Europe/Paris,,STE, +STE:SP:OCETrainTER-87773200,1,"Gare de Sète",43.412812,3.696396,-1,0,SIN:SA:OCE87773200,Europe/Paris,,STE, +STE:SP:OCETrainTER-87773408,1,"Gare de Lunel",43.679515,4.130807,-1,0,STE:SA:OCE87773408,Europe/Paris,,STE, +STE:SP:OCETrainTER-87773424,1,"Gare de Lunel-Viel",43.680939,4.093303,-1,0,STE:SA:OCE87773424,Europe/Paris,,STE, +STE:SP:OCETrainTER-87773432,1,"Gare de Valergues-Lansargues",43.672597,4.060222,-1,0,STE:SA:OCE87773432,Europe/Paris,,STE, +STE:SP:OCETrainTER-87773457,1,"Gare de Baillargues",43.653117,4.006689,-1,0,STE:SA:OCE87773457,Europe/Paris,,STE, +STE:SP:OCETrainTER-87773465,1,"Gare de St-Aunès",43.635414,3.963109,-1,0,STE:SA:OCE87773465,Europe/Paris,,STE, +STE:SP:OCETrainTER-87773515,1,"Gare de Villeneuve-les-Maguel.",43.543451,3.849706,-1,0,STE:SA:OCE87773515,Europe/Paris,,STE, +STE:SP:OCETrainTER-87773531,1,"Gare de Vic-Mireval",43.500968,3.799585,-1,0,STE:SA:OCE87773531,Europe/Paris,,STE, +STE:SP:OCETrainTER-87773556,1,"Gare de Frontignan",43.444586,3.759015,-1,0,STE:SA:OCE87773556,Europe/Paris,,STE, +STE:SP:OCETrainTER-87775007,1,"Gare de Nîmes",43.832293,4.365835,-1,0,SIN:SA:OCE87775007,Europe/Paris,,STE, +STE:SP:OCETrainTER-87775023,1,"Gare de Beaucaire",43.802161,4.647316,-1,0,STE:SA:OCE87775023,Europe/Paris,,STE, +STE:SP:OCETrainTER-87775064,1,"Gare de Manduel-Redessan",43.826462,4.478871,-1,0,STE:SA:OCE87775064,Europe/Paris,,STE, +STE:SP:OCETrainTER-87775114,1,"Gare de Vergèze-Codognan",43.739817,4.218844,-1,0,STE:SA:OCE87775114,Europe/Paris,,STE, +STE:SP:OCETrainTER-87781005,1,"Gare de Béziers",43.336225,3.219218,-1,0,SIN:SA:OCE87781005,Europe/Paris,,STE, +STE:SP:OCETrainTER-87781104,1,"Gare de Narbonne",43.191033,3.005956,-1,0,SIN:SA:OCE87781104,Europe/Paris,,STE, +STE:SP:OCETrainTER-87781161,1,"Gare de Coursan",43.233712,3.050866,-1,0,STE:SA:OCE87781161,Europe/Paris,,STE, +STE:SP:OCETrainTER-87781260,1,"Gare de Vias",43.315815,3.425592,-1,0,STE:SA:OCE87781260,Europe/Paris,,STE, +STE:SP:OCETrainTER-87781278,1,"Gare de Agde",43.317574,3.46602,-1,0,STE:SA:OCE87781278,Europe/Paris,,STE, +STE:SP:OCETrainTER-87781294,1,"Gare de Marseillan-Plage",43.318277,3.535637,-1,0,STE:SA:OCE87781294,Europe/Paris,,STE, +STE:SP:OCETrainTER-87781534,1,"Gare de Montpaon",43.868025,3.10933,-1,0,STE:SA:OCE87781534,Europe/Paris,,STE, +STE:SP:OCETrainTER-87781542,1,"Gare de Ceilhes-Roqueredonde",43.812131,3.155299,-1,0,STE:SA:OCE87781542,Europe/Paris,,STE, +STE:SP:OCETrainTER-87781559,1,"Gare de Les Cabrils",43.778965,3.186163,-1,0,STE:SA:OCE87781559,Europe/Paris,,STE, +STE:SP:OCETrainTER-87781575,1,"Gare de Lunas",43.710023,3.194443,-1,0,STE:SA:OCE87781575,Europe/Paris,,STE, +STE:SP:OCETrainTER-87781583,1,"Gare de Le Bousquet-d'Orb",43.691547,3.168385,-1,0,STE:SA:OCE87781583,Europe/Paris,,STE, +STE:SP:OCETrainTER-87781609,1,"Gare de Bédarieux",43.607632,3.149005,-1,0,STE:SA:OCE87781609,Europe/Paris,,STE, +STE:SP:OCETrainTER-87781666,1,"Gare de Magalas",43.467755,3.2295,-1,0,STE:SA:OCE87781666,Europe/Paris,,STE, +STE:SP:OCETrainTER-87782607,1,"Gare de Clermont-la-Pardieu",45.766954,3.134207,-1,0,STE:SA:OCE87782607,Europe/Paris,,STE, +STE:SP:OCETrainTER-87783001,1,"Gare de Millau",44.10187,3.074898,-1,0,SIN:SA:OCE87783001,Europe/Paris,,STE, +STE:SP:OCETrainTER-87783241,1,"Gare de St-Chély-d'Apcher",44.801701,3.270741,-1,0,SIN:SA:OCE87783241,Europe/Paris,,STE, +STE:SP:OCETrainTER-87783266,1,"Gare de Aumont-Aubrac",44.71814,3.283415,-1,0,SIN:SA:OCE87783266,Europe/Paris,,STE, +STE:SP:OCETrainTER-87783282,1,"Gare de Marvejols",44.544616,3.281048,-1,0,SIN:SA:OCE87783282,Europe/Paris,,STE, +STE:SP:OCETrainTER-87783290,1,"Gare de Chirac",44.52449,3.263838,-1,0,STE:SA:OCE87783290,Europe/Paris,,STE, +STE:SP:OCETrainTER-87783308,1,"Gare de Le Monastier",44.509002,3.252196,-1,0,SIN:SA:OCE87783308,Europe/Paris,,STE, +STE:SP:OCETrainTER-87783324,1,"Gare de Banassac-la-Canourgue",44.447642,3.19621,-1,0,SIN:SA:OCE87783324,Europe/Paris,,STE, +STE:SP:OCETrainTER-87783340,1,"Gare de Campagnac-St-Geniez",44.422134,3.06613,-1,0,STE:SA:OCE87783340,Europe/Paris,,STE, +STE:SP:OCETrainTER-87783365,1,"Gare de Séverac-D'Aveyron",44.325205,3.057387,-1,0,SIN:SA:OCE87783365,Europe/Paris,,STE, +STE:SP:OCETrainTER-87783423,1,"Gare de St-Georges-de-Luzençon",44.066024,2.983914,-1,0,SIN:SA:OCE87783423,Europe/Paris,,STE, +STE:SP:OCETrainTER-87783431,1,"Gare de St-Rome-de-Cernon",44.014575,2.967617,-1,0,SIN:SA:OCE87783431,Europe/Paris,,STE, +STE:SP:OCETrainTER-87783456,1,"Gare de Tournemire-Roquefort",43.969983,3.01658,-1,0,STE:SA:OCE87783456,Europe/Paris,,STE, +STE:SP:OCETrainTER-87783761,1,"Gare de Laissac",44.374905,2.822384,-1,0,SIN:SA:OCE87783761,Europe/Paris,,STE, diff --git a/flatisfy/data_files/tcl.json b/flatisfy/data_files/tcl.json deleted file mode 100644 index ad3b4ed..0000000 --- a/flatisfy/data_files/tcl.json +++ /dev/null @@ -1,4606 +0,0 @@ -{ -"type": "FeatureCollection", -"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, -"features": [ -{ "type": "Feature", "properties": { "id": "72", "nom": "Aqueducs de Beaunant", "desserte": "11B:A,12B:A,14B:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "841", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.779642560100486, 45.724370108411016 ] } }, -{ "type": "Feature", "properties": { "id": "101", "nom": "Mermoz", "desserte": "28A:R,29A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5425", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 5.022487034696982, 45.741963089942807 ] } }, -{ "type": "Feature", "properties": { "id": "194", "nom": "Bernaix", "desserte": "C11A:R,C3A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "6397", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.896719071744169, 45.761392659409118 ] } }, -{ "type": "Feature", "properties": { "id": "354", "nom": "Carry", "desserte": "C11A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1040", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.870383894332271, 45.755032114436439 ] } }, -{ "type": "Feature", "properties": { "id": "444", "nom": "Charton", "desserte": "C7B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5858", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.810589880848458, 45.711819590247281 ] } }, -{ "type": "Feature", "properties": { "id": "445", "nom": "Charton", "desserte": "C7B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5859", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.811355575028523, 45.71170368932475 ] } }, -{ "type": "Feature", "properties": { "id": "501", "nom": "Cimetiere d'Oullins", "desserte": "C7B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5860", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.810957725830872, 45.709426205538563 ] } }, -{ "type": "Feature", "properties": { "id": "512", "nom": "Jet d'Eau - Mendes France", "desserte": "448A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "6400", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.858272773699203, 45.739921719461954 ] } }, -{ "type": "Feature", "properties": { "id": "564", "nom": "Clos Jouve", "desserte": "2A:R,C18A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1210", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.821408142642884, 45.773465118365216 ] } }, -{ "type": "Feature", "properties": { "id": "650", "nom": "Cuire", "desserte": "448A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "6401", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.833691009641734, 45.78604427580288 ] } }, -{ "type": "Feature", "properties": { "id": "668", "nom": "Cyprian - Leon Blum", "desserte": "C11A:R,C3A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "6398", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.899042115137481, 45.760187482867543 ] } }, -{ "type": "Feature", "properties": { "id": "753", "nom": "Diderot", "desserte": "C7B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5863", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.80904840587293, 45.713257735322927 ] } }, -{ "type": "Feature", "properties": { "id": "782", "nom": "Duchere Plateau", "desserte": "448A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "6402", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.792540194516351, 45.783891270333278 ] } }, -{ "type": "Feature", "properties": { "id": "786", "nom": "Duchere Sauvegarde", "desserte": "448A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "6403", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.792887211241779, 45.786187951905617 ] } }, -{ "type": "Feature", "properties": { "id": "884", "nom": "Eurexpo Entrée Principale", "desserte": "100A:A,100A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "6488", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.949311945977355, 45.731196086880338 ] } }, -{ "type": "Feature", "properties": { "id": "1070", "nom": "Grand Vire", "desserte": "83A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "6309", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.916879322114277, 45.778835094334255 ] } }, -{ "type": "Feature", "properties": { "id": "1248", "nom": "Jean Macé", "desserte": "C4A:A,C4A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5938", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.84201550941638, 45.745668530280057 ] } }, -{ "type": "Feature", "properties": { "id": "1253", "nom": "Jean Macé", "desserte": "C7B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5939", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.842196135924343, 45.745682500507144 ] } }, -{ "type": "Feature", "properties": { "id": "1259", "nom": "Jean Marcuit", "desserte": "31A:A,43A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5940", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.815294336406558, 45.788360018801001 ] } }, -{ "type": "Feature", "properties": { "id": "1260", "nom": "Jean Marcuit", "desserte": "31A:R,43A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5941", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.814770760248012, 45.787876509509985 ] } }, -{ "type": "Feature", "properties": { "id": "1263", "nom": "Jean Zay", "desserte": "19A:A,66A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5942", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.801061183757313, 45.768195763307261 ] } }, -{ "type": "Feature", "properties": { "id": "1432", "nom": "La Pelletiere", "desserte": "171:R,S8A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "6025", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.892770343278093, 45.807326767552979 ] } }, -{ "type": "Feature", "properties": { "id": "1504", "nom": "Laurent Bonnevay", "desserte": "83A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "6310", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.908790206375419, 45.765140407607326 ] } }, -{ "type": "Feature", "properties": { "id": "10669", "nom": "Suchet", "desserte": "S1A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "6496", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.82472435632019, 45.747106303367332 ] } }, -{ "type": "Feature", "properties": { "id": "11489", "nom": "Laennec", "desserte": "C15A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "6393", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.886832698022006, 45.738160193713384 ] } }, -{ "type": "Feature", "properties": { "id": "33685", "nom": "Bellecour A.Poncet", "desserte": "27A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "6478", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.834081114326137, 45.756106679278176 ] } }, -{ "type": "Feature", "properties": { "id": "35576", "nom": "Sainte-Blandine", "desserte": "S1A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "6497", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.822313040978023, 45.74444409569508 ] } }, -{ "type": "Feature", "properties": { "id": "35577", "nom": "Sainte-Blandine", "desserte": "S1A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "6498", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.822243023211969, 45.744630169048008 ] } }, -{ "type": "Feature", "properties": { "id": "43892", "nom": "Avoraux", "desserte": "R2A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4913", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.827091017416651, 45.868165019496772 ] } }, -{ "type": "Feature", "properties": { "id": "43944", "nom": "Cimetiere de St Priest", "desserte": "76A:A,ZI8A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3090", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.946417961537512, 45.692664855711293 ] } }, -{ "type": "Feature", "properties": { "id": "66", "nom": "Andre Brun", "desserte": "16A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "837", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.96656794565722, 45.767105624379298 ] } }, -{ "type": "Feature", "properties": { "id": "566", "nom": "Clos Rival", "desserte": "C10A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1213", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.79446329738217, 45.68558517905462 ] } }, -{ "type": "Feature", "properties": { "id": "588", "nom": "Contrebandiers", "desserte": "S11A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1230", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.804881813349462, 45.787131141890107 ] } }, -{ "type": "Feature", "properties": { "id": "759", "nom": "Dorothee Petit", "desserte": "15A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1323", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.816513034472194, 45.669032727846748 ] } }, -{ "type": "Feature", "properties": { "id": "1018", "nom": "Genas Place Republique", "desserte": "28A:R,R4B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5426", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.996869514811539, 45.732500172460355 ] } }, -{ "type": "Feature", "properties": { "id": "1019", "nom": "Genas Place Republique", "desserte": "28A:A,R4B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5427", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.996730019280684, 45.732539486341665 ] } }, -{ "type": "Feature", "properties": { "id": "1182", "nom": "Hopital Lyon Sud", "desserte": "17B:A,17B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1568", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.80630856966259, 45.699965729720262 ] } }, -{ "type": "Feature", "properties": { "id": "1315", "nom": "La Begude", "desserte": "39A:R,60A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5964", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.860762668627645, 45.675092947835722 ] } }, -{ "type": "Feature", "properties": { "id": "1316", "nom": "La Blache", "desserte": "84A:R,R2A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5965", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.808817321495114, 45.857226641753101 ] } }, -{ "type": "Feature", "properties": { "id": "1319", "nom": "La Blanchisserie", "desserte": "97A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5966", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.844133634422059, 45.876535657858064 ] } }, -{ "type": "Feature", "properties": { "id": "1327", "nom": "La Buissiere - Viralamande", "desserte": "C5A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5967", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.88163084453944, 45.80358302733562 ] } }, -{ "type": "Feature", "properties": { "id": "1331", "nom": "La Buissonniere", "desserte": "77A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5968", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.867786189976349, 45.844762034854632 ] } }, -{ "type": "Feature", "properties": { "id": "1332", "nom": "La Buissonniere", "desserte": "77A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5969", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.86778828618755, 45.844527951406477 ] } }, -{ "type": "Feature", "properties": { "id": "1334", "nom": "La Bussiere", "desserte": "11B:R,12B:R,14B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5970", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.80321638407832, 45.719596816963346 ] } }, -{ "type": "Feature", "properties": { "id": "1335", "nom": "La Cadiere", "desserte": "8A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5971", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.8029410286273, 45.723203275399854 ] } }, -{ "type": "Feature", "properties": { "id": "1339", "nom": "La Chardonniere", "desserte": "C20A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5972", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.765201317935412, 45.734062573240742 ] } }, -{ "type": "Feature", "properties": { "id": "1341", "nom": "La Chenaie - Fontanieres", "desserte": "17B:A,8A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5973", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.810911546521132, 45.725269042872078 ] } }, -{ "type": "Feature", "properties": { "id": "1342", "nom": "La Chenaie - Fontanieres", "desserte": "17B:R,8A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5974", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.810836534379448, 45.725315702263792 ] } }, -{ "type": "Feature", "properties": { "id": "1343", "nom": "La Chopinette", "desserte": "C20A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5975", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.743594560079203, 45.73023473828065 ] } }, -{ "type": "Feature", "properties": { "id": "2176", "nom": "Grand Parc Miribel Jonage", "desserte": "83A:A,83A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "6311", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.941999669386969, 45.798022695084548 ] } }, -{ "type": "Feature", "properties": { "id": "2207", "nom": "Part-Dieu Jules Favre", "desserte": "70A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "6374", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.857275436998488, 45.763896411465545 ] } }, -{ "type": "Feature", "properties": { "id": "2485", "nom": "Pont Guillotiere RD", "desserte": "448A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "6404", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.837163469581671, 45.757721281383269 ] } }, -{ "type": "Feature", "properties": { "id": "2969", "nom": "Terreaux", "desserte": "S6A:A,S6A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "6477", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.83170376882419, 45.767483004141262 ] } }, -{ "type": "Feature", "properties": { "id": "3168", "nom": "Yon Lug", "desserte": "15A:R,17B:R,18B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2979", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.820030809336868, 45.711475961467208 ] } }, -{ "type": "Feature", "properties": { "id": "10071", "nom": "Louis Blanc", "desserte": "70A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "6375", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.856972815330618, 45.765712456623561 ] } }, -{ "type": "Feature", "properties": { "id": "10091", "nom": "Grand Vire", "desserte": "83A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "6312", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.916228743739168, 45.77812991966848 ] } }, -{ "type": "Feature", "properties": { "id": "10888", "nom": "Pont Wilson", "desserte": "448A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "6405", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.838093216555942, 45.760634952286225 ] } }, -{ "type": "Feature", "properties": { "id": "11095", "nom": "Parc Lyder", "desserte": "C25B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3602", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.908196780793513, 45.707329037209355 ] } }, -{ "type": "Feature", "properties": { "id": "187", "nom": "Berjon - St Simon", "desserte": "5A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "918", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.797120386977416, 45.776419146634034 ] } }, -{ "type": "Feature", "properties": { "id": "848", "nom": "Eglise Demi-Lune", "desserte": "55A:A,73A:A,86A:A,98A:A,C21A:A,C21A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "729", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.785533303272298, 45.764638079921696 ] } }, -{ "type": "Feature", "properties": { "id": "1024", "nom": "Genas La Grande Plaine", "desserte": "28A:R,29A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5428", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 5.020947815358538, 45.728596141993123 ] } }, -{ "type": "Feature", "properties": { "id": "1025", "nom": "Genas La Grande Plaine", "desserte": "28A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5429", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 5.020934099898099, 45.728578466373968 ] } }, -{ "type": "Feature", "properties": { "id": "1026", "nom": "Danton - Republique", "desserte": "28A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5430", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 5.002033766243033, 45.731639486875046 ] } }, -{ "type": "Feature", "properties": { "id": "1027", "nom": "Danton - Republique", "desserte": "28A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5431", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 5.001795482339388, 45.731762168914102 ] } }, -{ "type": "Feature", "properties": { "id": "1362", "nom": "La Croix", "desserte": "21A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5984", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.771369086924172, 45.833407750666886 ] } }, -{ "type": "Feature", "properties": { "id": "1394", "nom": "La Gadiniere", "desserte": "78B:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5998", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.790886274531952, 45.66957879245728 ] } }, -{ "type": "Feature", "properties": { "id": "1395", "nom": "La Gadiniere", "desserte": "78B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5999", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.791027360239568, 45.669575702821675 ] } }, -{ "type": "Feature", "properties": { "id": "1396", "nom": "La Garde ND des Minimes", "desserte": "46A:A,90A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "6000", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.79006857017985, 45.759345474469448 ] } }, -{ "type": "Feature", "properties": { "id": "1397", "nom": "La Garde ND des Minimes", "desserte": "46A:R,90A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "6001", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.790755484130684, 45.759177442516361 ] } }, -{ "type": "Feature", "properties": { "id": "1399", "nom": "La Garenne", "desserte": "39A:R,60A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "6002", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.858664034489676, 45.666273983918487 ] } }, -{ "type": "Feature", "properties": { "id": "1401", "nom": "La Grande Plaine", "desserte": "26A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "6003", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.962326764052678, 45.715445568507683 ] } }, -{ "type": "Feature", "properties": { "id": "1402", "nom": "La Grande Plaine", "desserte": "26A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "6004", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.961233209552725, 45.715957244448724 ] } }, -{ "type": "Feature", "properties": { "id": "1403", "nom": "La Grande Serve", "desserte": "60A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "6005", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.850178633341558, 45.670506129402511 ] } }, -{ "type": "Feature", "properties": { "id": "1405", "nom": "La Grange", "desserte": "68B:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "6006", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.966205871955649, 45.744735994088224 ] } }, -{ "type": "Feature", "properties": { "id": "1410", "nom": "La Jacquiere", "desserte": "95A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "6007", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 5.010506906173973, 45.771901163777159 ] } }, -{ "type": "Feature", "properties": { "id": "11213", "nom": "Gare Part-Dieu Vivier Merle", "desserte": "C25B:A,C25B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "6142", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.857686730740882, 45.761645865309625 ] } }, -{ "type": "Feature", "properties": { "id": "30164", "nom": "Valvert", "desserte": "86A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2887", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.76585781904491, 45.765830605379819 ] } }, -{ "type": "Feature", "properties": { "id": "30300", "nom": "Louis Braille - Montaland", "desserte": "C3A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "6462", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.882351276938651, 45.761611364393666 ] } }, -{ "type": "Feature", "properties": { "id": "30301", "nom": "Louis Braille - Montaland", "desserte": "448A:A,C3A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "6406", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.882489264030281, 45.761536224674579 ] } }, -{ "type": "Feature", "properties": { "id": "32842", "nom": "Hôtel de Ville - Louis Pradel", "desserte": "C13A:A,C13A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "6439", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.834838211607306, 45.766454140909964 ] } }, -{ "type": "Feature", "properties": { "id": "43914", "nom": "Sogaris - Promotrans", "desserte": "C25B:A,C25B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3929", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.934599067053591, 45.676016445875725 ] } }, -{ "type": "Feature", "properties": { "id": "43915", "nom": "St Fons Mairie", "desserte": "93A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3133", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.855236475242346, 45.708125680047857 ] } }, -{ "type": "Feature", "properties": { "id": "43937", "nom": "Vaulx-en-Velin Marcel Cachin", "desserte": "57A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4820", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.933258006781948, 45.784326644666848 ] } }, -{ "type": "Feature", "properties": { "id": "43945", "nom": "Cimetiere de St Priest", "desserte": "76A:R,ZI8A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3091", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.946375301915402, 45.69203573797305 ] } }, -{ "type": "Feature", "properties": { "id": "43999", "nom": "Mions Centre", "desserte": "62A:A,87A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4600", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.956438597948583, 45.664085147309642 ] } }, -{ "type": "Feature", "properties": { "id": "44818", "nom": "Homme de la Roche RG", "desserte": "19A:R,31A:R,40A:R,C14A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4934", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.820646386984646, 45.767845191880355 ] } }, -{ "type": "Feature", "properties": { "id": "44819", "nom": "Homme de la Roche RD", "desserte": "19A:A,31A:A,40A:A,C14A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4935", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.820131057682358, 45.766686444889885 ] } }, -{ "type": "Feature", "properties": { "id": "45422", "nom": "Parc d'activites des Lats", "desserte": "11B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4953", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.687294861069682, 45.70148330654019 ] } }, -{ "type": "Feature", "properties": { "id": "45424", "nom": "Malataverne", "desserte": "11B:A,2EX:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4955", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.686152418845874, 45.69788900243303 ] } }, -{ "type": "Feature", "properties": { "id": "240", "nom": "Bournes", "desserte": "2A:R,C18A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "960", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.82073651582359, 45.776961349016652 ] } }, -{ "type": "Feature", "properties": { "id": "699", "nom": "Decines Eglise", "desserte": "16A:A,57A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1299", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.965100977918265, 45.763323268561017 ] } }, -{ "type": "Feature", "properties": { "id": "1029", "nom": "Genas Place Jean Jaures", "desserte": "28A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5432", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 5.016677632295687, 45.738303165611491 ] } }, -{ "type": "Feature", "properties": { "id": "1157", "nom": "Henriette", "desserte": "45A:R,65A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1548", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.786356291222185, 45.748751363746216 ] } }, -{ "type": "Feature", "properties": { "id": "1158", "nom": "Henriette", "desserte": "45A:A,65A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1547", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.786408069344306, 45.748759234609246 ] } }, -{ "type": "Feature", "properties": { "id": "1165", "nom": "Hippodrome Loup Pendu", "desserte": "ZI4A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1551", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.885510883085895, 45.815097895258994 ] } }, -{ "type": "Feature", "properties": { "id": "1198", "nom": "Hôtel de Ville - Louis Pradel", "desserte": "C18A:A,C18A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5286", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.835313135065881, 45.766529623917343 ] } }, -{ "type": "Feature", "properties": { "id": "1411", "nom": "La Jacquiere", "desserte": "95A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "6008", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 5.011040423751759, 45.771762435547423 ] } }, -{ "type": "Feature", "properties": { "id": "1433", "nom": "La Pillardiere", "desserte": "73A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "6026", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.703296051204742, 45.730380918611083 ] } }, -{ "type": "Feature", "properties": { "id": "1434", "nom": "La Pillardiere", "desserte": "73A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "6027", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.703149779113306, 45.73026699497575 ] } }, -{ "type": "Feature", "properties": { "id": "1436", "nom": "La Plaine", "desserte": "C20A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "6028", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.782926754758485, 45.74477572604544 ] } }, -{ "type": "Feature", "properties": { "id": "1437", "nom": "La Poudriere", "desserte": "448A:A,C13A:A,C18A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "6029", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.816820338476782, 45.770846134641047 ] } }, -{ "type": "Feature", "properties": { "id": "1439", "nom": "La Remillote", "desserte": "22A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "6030", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.804124757634974, 45.79549179856231 ] } }, -{ "type": "Feature", "properties": { "id": "1440", "nom": "La Remillote", "desserte": "20A:R,22A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "6031", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.804043590701456, 45.795403570372265 ] } }, -{ "type": "Feature", "properties": { "id": "1443", "nom": "La Rochette - Cercle d'Aviron", "desserte": "40A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "6032", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.823539818928333, 45.791733214040271 ] } }, -{ "type": "Feature", "properties": { "id": "1444", "nom": "La Rochette - Cercle d'Aviron", "desserte": "40A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "6033", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.821306086913189, 45.790423472171724 ] } }, -{ "type": "Feature", "properties": { "id": "1445", "nom": "La Roue", "desserte": "33A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "6034", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.889491412998193, 45.822919803182202 ] } }, -{ "type": "Feature", "properties": { "id": "1446", "nom": "La Roue", "desserte": "33A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "6035", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.889489324884225, 45.822874843368275 ] } }, -{ "type": "Feature", "properties": { "id": "1449", "nom": "La Sarra", "desserte": "90A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "6036", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.814936878066814, 45.76130153978314 ] } }, -{ "type": "Feature", "properties": { "id": "35394", "nom": "Moliere", "desserte": "448A:A,C3A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "6407", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.843382489198131, 45.763541377262804 ] } }, -{ "type": "Feature", "properties": { "id": "35395", "nom": "Moliere", "desserte": "C3A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "6463", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.843193053204692, 45.763617616382334 ] } }, -{ "type": "Feature", "properties": { "id": "35414", "nom": "Saxe - Lafayette", "desserte": "C3A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "6464", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.845317415555066, 45.763669181117898 ] } }, -{ "type": "Feature", "properties": { "id": "38305", "nom": "Laennec", "desserte": "C15A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "6395", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.886872370243893, 45.738023192215955 ] } }, -{ "type": "Feature", "properties": { "id": "45425", "nom": "Malataverne", "desserte": "11B:R,2EX:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4956", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.686132680125061, 45.69772740476543 ] } }, -{ "type": "Feature", "properties": { "id": "45427", "nom": "Messimy Mairie", "desserte": "11B:A,11B:R,2EX:A,2EX:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4960", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.676101056350583, 45.697768811019806 ] } }, -{ "type": "Feature", "properties": { "id": "45433", "nom": "Le Pont", "desserte": "11B:A,2EX:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4965", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.649940759055199, 45.67947077371695 ] } }, -{ "type": "Feature", "properties": { "id": "45885", "nom": "Fonderie", "desserte": "83A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "6316", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.918140124191135, 45.782330746465981 ] } }, -{ "type": "Feature", "properties": { "id": "46140", "nom": "Grigny Jean Moulin", "desserte": "80A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5126", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.791017350082804, 45.606618715001588 ] } }, -{ "type": "Feature", "properties": { "id": "46160", "nom": "Debourg", "desserte": "T1A:A,T1A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "320", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.834604487615413, 45.731160415452251 ] } }, -{ "type": "Feature", "properties": { "id": "46165", "nom": "Kellermann", "desserte": "15A:R,17B:R,18B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1635", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.817373571668222, 45.713781599929995 ] } }, -{ "type": "Feature", "properties": { "id": "46176", "nom": "College Jean Renoir", "desserte": "84A:A,84A:R,96A:A,96A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1613", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.845578900053952, 45.869362306554123 ] } }, -{ "type": "Feature", "properties": { "id": "46181", "nom": "St Fons Bourrelier", "desserte": "C12A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5139", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.855096988918571, 45.710694146105894 ] } }, -{ "type": "Feature", "properties": { "id": "46182", "nom": "St Fons Bourrelier", "desserte": "C12A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5140", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.855156497676719, 45.71085753148963 ] } }, -{ "type": "Feature", "properties": { "id": "46183", "nom": "St Fons Dussurgey", "desserte": "C12A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5141", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.854876486748708, 45.714129534631432 ] } }, -{ "type": "Feature", "properties": { "id": "46200", "nom": "Garibaldi - Lafayette", "desserte": "38A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1810", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.85146525281464, 45.763954067577622 ] } }, -{ "type": "Feature", "properties": { "id": "70", "nom": "Antonins", "desserte": "37A:A,69A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "840", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.879063736242699, 45.778131297809153 ] } }, -{ "type": "Feature", "properties": { "id": "189", "nom": "Paul Berliet", "desserte": "296:A,C25B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "921", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.913144841120358, 45.704344046608917 ] } }, -{ "type": "Feature", "properties": { "id": "191", "nom": "Berliet Venissieux", "desserte": "C25B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "923", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.899191422994022, 45.712837459352002 ] } }, -{ "type": "Feature", "properties": { "id": "241", "nom": "Boutarey", "desserte": "77A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "962", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.87796222321691, 45.82668265306404 ] } }, -{ "type": "Feature", "properties": { "id": "640", "nom": "Crepieux Les Brosses", "desserte": "171:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1257", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.912537681332539, 45.808090570008588 ] } }, -{ "type": "Feature", "properties": { "id": "807", "nom": "Duquesne - Foch", "desserte": "C4A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1354", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.843059310272595, 45.772819835680259 ] } }, -{ "type": "Feature", "properties": { "id": "1450", "nom": "La Sarra", "desserte": "90A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "6037", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.814901982036825, 45.761383320036174 ] } }, -{ "type": "Feature", "properties": { "id": "1466", "nom": "La Tuilerie", "desserte": "21A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "6038", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.781988620580156, 45.801781526973421 ] } }, -{ "type": "Feature", "properties": { "id": "1510", "nom": "Laurent Bonnevay", "desserte": "57A:A,57A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "229", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.908262194730447, 45.765125497074884 ] } }, -{ "type": "Feature", "properties": { "id": "1594", "nom": "Le Visan", "desserte": "45A:A,55A:R,90A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1897", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.788775489232475, 45.764090258745185 ] } }, -{ "type": "Feature", "properties": { "id": "1608", "nom": "Les Anemones", "desserte": "29A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5433", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 5.005269110175176, 45.727583812696039 ] } }, -{ "type": "Feature", "properties": { "id": "1609", "nom": "Les Anemones", "desserte": "29A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5434", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 5.005600530289819, 45.7277919733773 ] } }, -{ "type": "Feature", "properties": { "id": "1742", "nom": "Les Pervenches", "desserte": "77A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "6060", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.874141229337077, 45.855195449589978 ] } }, -{ "type": "Feature", "properties": { "id": "1747", "nom": "Les Places", "desserte": "73A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "6061", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.694478673420024, 45.722861996202205 ] } }, -{ "type": "Feature", "properties": { "id": "1749", "nom": "Les Pommieres", "desserte": "C20A:R,C21A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "6062", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.809664161246413, 45.757007280107807 ] } }, -{ "type": "Feature", "properties": { "id": "1750", "nom": "Les Pommieres", "desserte": "C20A:A,C21A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "6063", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.808833517752022, 45.756836553110972 ] } }, -{ "type": "Feature", "properties": { "id": "1751", "nom": "Les Provences", "desserte": "C19A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "6064", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.79259034420818, 45.735464660017421 ] } }, -{ "type": "Feature", "properties": { "id": "1752", "nom": "Les Provences", "desserte": "C19A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "6065", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.791918985228622, 45.73539834303471 ] } }, -{ "type": "Feature", "properties": { "id": "1753", "nom": "Les Pyes", "desserte": "28A:R,68B:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "6066", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.96324361652327, 45.738702253079865 ] } }, -{ "type": "Feature", "properties": { "id": "1754", "nom": "Les Pyes", "desserte": "28A:A,68B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "6067", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.96304116310997, 45.738770002438791 ] } }, -{ "type": "Feature", "properties": { "id": "1755", "nom": "Les Roches", "desserte": "66A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "6068", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.795257851373147, 45.777342045008275 ] } }, -{ "type": "Feature", "properties": { "id": "1756", "nom": "Les Roches", "desserte": "66A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "6069", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.794906039196749, 45.776953700723247 ] } }, -{ "type": "Feature", "properties": { "id": "1759", "nom": "Les Sapins", "desserte": "78B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "6070", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.783278438151656, 45.67312579683388 ] } }, -{ "type": "Feature", "properties": { "id": "1760", "nom": "Les Sapins", "desserte": "78B:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "6071", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.783199469346767, 45.673148762842096 ] } }, -{ "type": "Feature", "properties": { "id": "1761", "nom": "Les Sources", "desserte": "C14A:R,S15A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "6072", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.782546429283641, 45.792624331795984 ] } }, -{ "type": "Feature", "properties": { "id": "1762", "nom": "Les Sources", "desserte": "C14A:A,S15A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "6073", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.782707940143238, 45.792494800369859 ] } }, -{ "type": "Feature", "properties": { "id": "33948", "nom": "Viviani", "desserte": "C16A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "6263", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.863145407583451, 45.726651337183789 ] } }, -{ "type": "Feature", "properties": { "id": "46201", "nom": "Camp Militaire", "desserte": "33A:R,9A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3341", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.869317762015823, 45.819542562194307 ] } }, -{ "type": "Feature", "properties": { "id": "46215", "nom": "Caluire Chemin Petit", "desserte": "70A:A,S5A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1136", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.860137967986618, 45.804352655264935 ] } }, -{ "type": "Feature", "properties": { "id": "46232", "nom": "Quincieux Mairie", "desserte": "96A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5194", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.778988990844299, 45.914756587490238 ] } }, -{ "type": "Feature", "properties": { "id": "46413", "nom": "St-Bonnet Centre", "desserte": "1EX:A,R4B:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5382", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 5.031441792873348, 45.692484440972102 ] } }, -{ "type": "Feature", "properties": { "id": "46773", "nom": "Institut d'art contemporain", "desserte": "C3A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "6267", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.875205312888749, 45.763994970198873 ] } }, -{ "type": "Feature", "properties": { "id": "90", "nom": "Austerlitz", "desserte": "S6A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "854", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.834947353001986, 45.775466936907122 ] } }, -{ "type": "Feature", "properties": { "id": "131", "nom": "Bastero - Aquarium", "desserte": "63A:R,C10A:R,C7B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "884", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.81401864267832, 45.725488514581407 ] } }, -{ "type": "Feature", "properties": { "id": "143", "nom": "Foch - Provinces", "desserte": "90A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "889", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.7981855194956, 45.747907486428694 ] } }, -{ "type": "Feature", "properties": { "id": "643", "nom": "Croix-Rousse", "desserte": "303:A,303:R", "pmr": "t", "ascenseur": "t", "escalator": "t", "gid": "339", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.83182430024232, 45.7745918817063 ] } }, -{ "type": "Feature", "properties": { "id": "656", "nom": "Curie - Jules Guesde", "desserte": "35A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1264", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.885293053346468, 45.70935501960583 ] } }, -{ "type": "Feature", "properties": { "id": "849", "nom": "Eglise Demi-Lune", "desserte": "14B:A,55A:R,72B:R,73A:R,86A:R,98A:R,C21A:A,C21A:R,C24B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "731", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.786270052836809, 45.76472101820459 ] } }, -{ "type": "Feature", "properties": { "id": "1575", "nom": "Le Rotagnier", "desserte": "68B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1884", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.975181896561315, 45.742094895009565 ] } }, -{ "type": "Feature", "properties": { "id": "1650", "nom": "Les Cigales", "desserte": "15A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1946", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.824099955729387, 45.683806440382213 ] } }, -{ "type": "Feature", "properties": { "id": "1683", "nom": "Les Gambins", "desserte": "84A:A,84A:R,R2A:A,R2A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1974", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.796119889853421, 45.852725451304394 ] } }, -{ "type": "Feature", "properties": { "id": "1700", "nom": "Les Hautannes", "desserte": "96A:A,96A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1991", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.800809263516107, 45.879446303609981 ] } }, -{ "type": "Feature", "properties": { "id": "1763", "nom": "Les Sources - La Romaine", "desserte": "C14A:A,S15A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "6074", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.78397768117363, 45.790378903150042 ] } }, -{ "type": "Feature", "properties": { "id": "1777", "nom": "Les Verchères", "desserte": "C2A:A,ZI4A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "6083", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.901323024339121, 45.817393554219976 ] } }, -{ "type": "Feature", "properties": { "id": "1778", "nom": "Les Verchères", "desserte": "C2A:R,ZI4A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "6084", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.90192842491649, 45.817676787923048 ] } }, -{ "type": "Feature", "properties": { "id": "1794", "nom": "Limonest Centre", "desserte": "21A:A,942A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2073", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.771657278958232, 45.837586994299116 ] } }, -{ "type": "Feature", "properties": { "id": "1867", "nom": "Mairie du 5eme", "desserte": "46A:R,90A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2115", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.80097859745025, 45.758026379482381 ] } }, -{ "type": "Feature", "properties": { "id": "2156", "nom": "Oullins Mairie", "desserte": "88B:A,C7B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5511", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.80713089097052, 45.714335098190197 ] } }, -{ "type": "Feature", "properties": { "id": "2220", "nom": "Gare Part-Dieu Vivier Merle", "desserte": "C13A:A,C9A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5856", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.858194243891476, 45.760777098439405 ] } }, -{ "type": "Feature", "properties": { "id": "2357", "nom": "Place Bertone", "desserte": "448A:A,C13A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5512", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.834833863048607, 45.777782767364585 ] } }, -{ "type": "Feature", "properties": { "id": "2701", "nom": "Saxe - Gambetta", "desserte": "C11A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "195", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.847398590373692, 45.753757332045708 ] } }, -{ "type": "Feature", "properties": { "id": "35875", "nom": "Les Minimes - Théatres Romains", "desserte": "448A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "6408", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.821165761738291, 45.758841574633536 ] } }, -{ "type": "Feature", "properties": { "id": "36014", "nom": "Vaulx-en-Velin La Grappiniere", "desserte": "52A:A,52A:R,C3A:A,C3A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "6399", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.912586127603127, 45.788427670754402 ] } }, -{ "type": "Feature", "properties": { "id": "36375", "nom": "Gare Part-Dieu Vivier Merle", "desserte": "70A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "6376", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.857468858822836, 45.762784914947879 ] } }, -{ "type": "Feature", "properties": { "id": "36414", "nom": "Vaulx-en-Velin La Soie", "desserte": "83A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "6315", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.92162544950463, 45.76072568081026 ] } }, -{ "type": "Feature", "properties": { "id": "36997", "nom": "Institut d'art contemporain", "desserte": "C3A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "6465", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.873232043816932, 45.763816068316785 ] } }, -{ "type": "Feature", "properties": { "id": "36999", "nom": "Blanqui-Ctre Memoires et Ste", "desserte": "C3A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "6466", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.884281520636599, 45.761081505677474 ] } }, -{ "type": "Feature", "properties": { "id": "37401", "nom": "Route de Vienne", "desserte": "448A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "6409", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.85144214472418, 45.742073257514619 ] } }, -{ "type": "Feature", "properties": { "id": "37645", "nom": "Vallas", "desserte": "73A:R,C24B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "6422", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.720097215692476, 45.742329293850311 ] } }, -{ "type": "Feature", "properties": { "id": "46774", "nom": "Alsace", "desserte": "C3A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "6268", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.869521278290559, 45.763715050039828 ] } }, -{ "type": "Feature", "properties": { "id": "708", "nom": "Decines Wilson", "desserte": "67A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1302", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.941960619772324, 45.768687424023483 ] } }, -{ "type": "Feature", "properties": { "id": "954", "nom": "Foucaud - Picasso", "desserte": "57A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1435", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.921477293826322, 45.774021588150639 ] } }, -{ "type": "Feature", "properties": { "id": "986", "nom": "Fromont", "desserte": "ZI3A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1445", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.937305332758157, 45.776050588689905 ] } }, -{ "type": "Feature", "properties": { "id": "1037", "nom": "Genay Le Perron", "desserte": "S14A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1471", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.832914915368248, 45.891124258774887 ] } }, -{ "type": "Feature", "properties": { "id": "1038", "nom": "Genay Madone", "desserte": "43A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1473", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.834365727165977, 45.895529714174458 ] } }, -{ "type": "Feature", "properties": { "id": "1064", "nom": "Grand Chassagnon", "desserte": "60A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1488", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.863762082094417, 45.701291037584575 ] } }, -{ "type": "Feature", "properties": { "id": "1526", "nom": "Le Buisset", "desserte": "8A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1836", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.804859773171925, 45.7241511933494 ] } }, -{ "type": "Feature", "properties": { "id": "1804", "nom": "Longefer", "desserte": "24A:A,C22A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2081", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.880151152518684, 45.739337978194797 ] } }, -{ "type": "Feature", "properties": { "id": "1846", "nom": "Machy", "desserte": "21A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2106", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.756344021178583, 45.871761436019973 ] } }, -{ "type": "Feature", "properties": { "id": "1865", "nom": "Mairie du 4eme", "desserte": "448A:A,45A:R,C13A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2112", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.828181799622691, 45.774060051624801 ] } }, -{ "type": "Feature", "properties": { "id": "2828", "nom": "St Just", "desserte": "66A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "207", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.815490205469255, 45.757598871527264 ] } }, -{ "type": "Feature", "properties": { "id": "2935", "nom": "Surville Route de Vienne", "desserte": "C16A:A,C16A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2804", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.854736966683631, 45.717993182708774 ] } }, -{ "type": "Feature", "properties": { "id": "2961", "nom": "Terrasse", "desserte": "8A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2825", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.815640443936966, 45.748090397409321 ] } }, -{ "type": "Feature", "properties": { "id": "3129", "nom": "Vieux Crepieux", "desserte": "171:A,C5A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2955", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.877022849319683, 45.799951745758747 ] } }, -{ "type": "Feature", "properties": { "id": "3134", "nom": "Villeurbanne Bel Air", "desserte": "C17A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2964", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.912907420803976, 45.755288454346953 ] } }, -{ "type": "Feature", "properties": { "id": "3135", "nom": "Villeurbanne Bel Air", "desserte": "C17A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2963", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.912822763920938, 45.755677458846613 ] } }, -{ "type": "Feature", "properties": { "id": "3157", "nom": "Place du Vercors", "desserte": "29A:A,29A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5447", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 5.006312526517771, 45.719682438782726 ] } }, -{ "type": "Feature", "properties": { "id": "3167", "nom": "Yon Lug", "desserte": "15A:A,17B:A,18B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2980", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.820116318441972, 45.710807990224183 ] } }, -{ "type": "Feature", "properties": { "id": "3176", "nom": "Z.I.C. Ouest", "desserte": "ZI4A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2986", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.865634801866336, 45.804457326997813 ] } }, -{ "type": "Feature", "properties": { "id": "3300", "nom": "Z.I. Champ du Roy", "desserte": "C5A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3028", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.908362420220563, 45.828898680338483 ] } }, -{ "type": "Feature", "properties": { "id": "3305", "nom": "Gare Saint Paul", "desserte": "C3A:A,S1A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2753", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.827921705237296, 45.76604579078397 ] } }, -{ "type": "Feature", "properties": { "id": "3346", "nom": "Lycee Cuzin", "desserte": "C2A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3489", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.856064203331827, 45.801755933701081 ] } }, -{ "type": "Feature", "properties": { "id": "3388", "nom": "Nicolas Sicard", "desserte": "C21A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3032", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.792500273135375, 45.756204952408481 ] } }, -{ "type": "Feature", "properties": { "id": "3389", "nom": "Nicolas Sicard", "desserte": "C21A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3033", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.791578165138156, 45.756000097029201 ] } }, -{ "type": "Feature", "properties": { "id": "3398", "nom": "St Clair - Square Brosset", "desserte": "171:A,C5A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2691", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.861156232322037, 45.791011082118033 ] } }, -{ "type": "Feature", "properties": { "id": "3399", "nom": "Montee Castellane", "desserte": "S8A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3035", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.898617826590563, 45.808516794046476 ] } }, -{ "type": "Feature", "properties": { "id": "3410", "nom": "Z.I. Rillieux 8 mai 1945", "desserte": "ZI4A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3042", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.879603644433452, 45.813737502468136 ] } }, -{ "type": "Feature", "properties": { "id": "30566", "nom": "Mairie de St Rambert", "desserte": "S10A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3183", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.82992875764007, 45.798126445408172 ] } }, -{ "type": "Feature", "properties": { "id": "38674", "nom": "Jean Macé", "desserte": "448A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "6410", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.842450028885176, 45.745046750014104 ] } }, -{ "type": "Feature", "properties": { "id": "1385", "nom": "La Fontaine", "desserte": "68B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5254", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.978555609800923, 45.740332216786051 ] } }, -{ "type": "Feature", "properties": { "id": "1552", "nom": "Le Peage", "desserte": "15A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1865", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.822459417860767, 45.690422636038029 ] } }, -{ "type": "Feature", "properties": { "id": "1642", "nom": "Les Chaux", "desserte": "C20A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1939", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.752747436665076, 45.736428621533207 ] } }, -{ "type": "Feature", "properties": { "id": "1866", "nom": "Mairie du 5eme", "desserte": "46A:A,90A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2114", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.801052051539835, 45.757943757537049 ] } }, -{ "type": "Feature", "properties": { "id": "3011", "nom": "Trois Artichauts", "desserte": "448A:A,46A:R,49A:R,55A:R,C19A:R,C20A:R,C21A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2863", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.81728936373367, 45.752725536722423 ] } }, -{ "type": "Feature", "properties": { "id": "3485", "nom": "Marcel Vernay", "desserte": "50A:A,ZI8A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3067", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.95086708372101, 45.697638119684818 ] } }, -{ "type": "Feature", "properties": { "id": "10145", "nom": "Bron Salengro", "desserte": "24A:A,79A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3310", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.908470307763259, 45.730240262654121 ] } }, -{ "type": "Feature", "properties": { "id": "10203", "nom": "Le Parc Brunier", "desserte": "33A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3328", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.829445763159144, 45.78406830797374 ] } }, -{ "type": "Feature", "properties": { "id": "10221", "nom": "Chemin de Montgay", "desserte": "33A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3334", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.861690790675029, 45.824231972222883 ] } }, -{ "type": "Feature", "properties": { "id": "10245", "nom": "Pailleron", "desserte": "C13A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3356", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.832205335708432, 45.7788223400552 ] } }, -{ "type": "Feature", "properties": { "id": "10247", "nom": "Eglise Demi-Lune", "desserte": "45A:R,55A:A,90A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "728", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.786955074404586, 45.76422001496946 ] } }, -{ "type": "Feature", "properties": { "id": "10281", "nom": "Alai", "desserte": "73A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3370", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.766829096063231, 45.751426095420271 ] } }, -{ "type": "Feature", "properties": { "id": "10289", "nom": "Demi-Lune Clemenceau", "desserte": "55A:A,86A:A,98A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1306", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.776584826275452, 45.763824802789465 ] } }, -{ "type": "Feature", "properties": { "id": "10335", "nom": "Constellation", "desserte": "14B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3390", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.774963223596639, 45.755093096114898 ] } }, -{ "type": "Feature", "properties": { "id": "38676", "nom": "Centre Berthelot", "desserte": "448A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "6411", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.836340436394654, 45.746965217035672 ] } }, -{ "type": "Feature", "properties": { "id": "38677", "nom": "Garibaldi - Berthelot", "desserte": "448A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "6412", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.846806987448636, 45.74360821325952 ] } }, -{ "type": "Feature", "properties": { "id": "39998", "nom": "Meyzieu Z.i.", "desserte": "323A:A,323A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "6479", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 5.031565090985128, 45.767977132431163 ] } }, -{ "type": "Feature", "properties": { "id": "40000", "nom": "Meyzieu Gare", "desserte": "323A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "6480", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 5.00004313060672, 45.771249594704805 ] } }, -{ "type": "Feature", "properties": { "id": "40075", "nom": "Lycée Lumière", "desserte": "448A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "6413", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.861736552360043, 45.736684404348317 ] } }, -{ "type": "Feature", "properties": { "id": "41194", "nom": "Gare Part-Dieu Villette", "desserte": "RX:A,RX:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "6269", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.861941959611308, 45.760265029322454 ] } }, -{ "type": "Feature", "properties": { "id": "41195", "nom": "Vaulx-en-Velin La Soie", "desserte": "RX:A,RX:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "6252", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.922203024147039, 45.761068030348262 ] } }, -{ "type": "Feature", "properties": { "id": "41196", "nom": "Vaulx-en-Velin La Soie", "desserte": "RX:A,RX:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "6253", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.922078882455405, 45.761031642561164 ] } }, -{ "type": "Feature", "properties": { "id": "41197", "nom": "Meyzieu Z.i.", "desserte": "RX:A,RX:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "6254", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 5.031422687591467, 45.767766843200469 ] } }, -{ "type": "Feature", "properties": { "id": "41198", "nom": "Meyzieu Z.i.", "desserte": "RX:A,RX:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "6270", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 5.031600168963877, 45.767745390758641 ] } }, -{ "type": "Feature", "properties": { "id": "41199", "nom": "Aeroport St Exupery", "desserte": "RX:A,RX:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "6271", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 5.076474307455741, 45.722645072665429 ] } }, -{ "type": "Feature", "properties": { "id": "42517", "nom": "La Graviere de Beaunant", "desserte": "14B:A,C19A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1738", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.779718032963974, 45.734179490298935 ] } }, -{ "type": "Feature", "properties": { "id": "42616", "nom": "Montchat Place Ronde", "desserte": "C9A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "685", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.891016460424201, 45.753520348399498 ] } }, -{ "type": "Feature", "properties": { "id": "46358", "nom": "La Petite Gare", "desserte": "R1B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5492", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 5.084374749655819, 45.80071222049925 ] } }, -{ "type": "Feature", "properties": { "id": "709", "nom": "Decomberousse", "desserte": "448A:A,C15A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1304", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.9150319398865, 45.762755893286631 ] } }, -{ "type": "Feature", "properties": { "id": "771", "nom": "Duchere Capucines", "desserte": "66A:A,89A:A,C14A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1330", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.794219064035942, 45.789438084658471 ] } }, -{ "type": "Feature", "properties": { "id": "823", "nom": "Dardilly Les Gorges", "desserte": "6A:A,89A:A,GE4A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1366", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.764028665822281, 45.807445591256418 ] } }, -{ "type": "Feature", "properties": { "id": "874", "nom": "Etats-Unis Viviani", "desserte": "26A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "626", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.871257809947651, 45.724876139123182 ] } }, -{ "type": "Feature", "properties": { "id": "1077", "nom": "Grandclement", "desserte": "C11A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1500", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.890087704483754, 45.759275341895346 ] } }, -{ "type": "Feature", "properties": { "id": "1095", "nom": "Grange Blanche", "desserte": "C26A:A,C26A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "77", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.879136293725776, 45.742970495017154 ] } }, -{ "type": "Feature", "properties": { "id": "1138", "nom": "Harmonie", "desserte": "C16A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1535", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.875261392446782, 45.747315820275944 ] } }, -{ "type": "Feature", "properties": { "id": "1159", "nom": "Herbepin", "desserte": "26A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1550", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.967324223875111, 45.71380721451613 ] } }, -{ "type": "Feature", "properties": { "id": "1553", "nom": "Le Peage", "desserte": "15A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1864", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.822597713312393, 45.690356562310427 ] } }, -{ "type": "Feature", "properties": { "id": "1565", "nom": "Le Quincieux", "desserte": "72B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1875", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.698669085204365, 45.765122044621897 ] } }, -{ "type": "Feature", "properties": { "id": "3014", "nom": "Trois Renards", "desserte": "55A:R,72B:R,86A:R,98A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2864", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.773951477657779, 45.763602972836253 ] } }, -{ "type": "Feature", "properties": { "id": "3486", "nom": "Les Longes", "desserte": "50A:A,ZI8A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3069", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.956198152901886, 45.697099639967931 ] } }, -{ "type": "Feature", "properties": { "id": "10310", "nom": "Brosset", "desserte": "14B:R,72B:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3374", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.778919193592185, 45.757311343397468 ] } }, -{ "type": "Feature", "properties": { "id": "10311", "nom": "Brosset", "desserte": "14B:A,72B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3375", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.779005925656822, 45.757237448589258 ] } }, -{ "type": "Feature", "properties": { "id": "10363", "nom": "Decines Verlaine", "desserte": "79A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3402", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.940984012105143, 45.750778978064311 ] } }, -{ "type": "Feature", "properties": { "id": "10378", "nom": "Aynard - La Fontaine", "desserte": "69A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3414", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.876439558020705, 45.761142173214381 ] } }, -{ "type": "Feature", "properties": { "id": "10651", "nom": "8 Mai 1945", "desserte": "67A:A,85A:R,95A:A,95A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3505", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 5.002059361857923, 45.767466011661028 ] } }, -{ "type": "Feature", "properties": { "id": "10680", "nom": "Ste Helene", "desserte": "S1A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3511", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.832005986777013, 45.753731516394502 ] } }, -{ "type": "Feature", "properties": { "id": "10687", "nom": "Tupin", "desserte": "27A:A,S1A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3515", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.834222515999147, 45.763187451309406 ] } }, -{ "type": "Feature", "properties": { "id": "10740", "nom": "George Sand", "desserte": "C2A:A,ZI4A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3522", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.898578862059701, 45.815804462879264 ] } }, -{ "type": "Feature", "properties": { "id": "12026", "nom": "Chemin des Fonts", "desserte": "49A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3195", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.796947431776093, 45.73919464243243 ] } }, -{ "type": "Feature", "properties": { "id": "42535", "nom": "Constant", "desserte": "C8A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3598", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.888119796334328, 45.74540401102022 ] } }, -{ "type": "Feature", "properties": { "id": "42536", "nom": "Hop.Desgenettes Vinatier", "desserte": "C8A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3725", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.895219149048373, 45.744351259535719 ] } }, -{ "type": "Feature", "properties": { "id": "42634", "nom": "Meyzieu Ch.De Gaulle", "desserte": "67A:R,85A:A,95A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3727", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 5.003768055674599, 45.766894338931984 ] } }, -{ "type": "Feature", "properties": { "id": "42635", "nom": "Vacher", "desserte": "67A:R,85A:A,95A:A,95A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4753", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 5.002732937188246, 45.768890314683851 ] } }, -{ "type": "Feature", "properties": { "id": "42964", "nom": "Sathonay Gare", "desserte": "33A:R,77A:A,ZI4A:A,ZI4A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2627", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.875110276772277, 45.820410119118904 ] } }, -{ "type": "Feature", "properties": { "id": "43119", "nom": "Montchat Place Ronde", "desserte": "C26A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "688", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.891565255768091, 45.752877763760559 ] } }, -{ "type": "Feature", "properties": { "id": "43121", "nom": "Verlaine - 4 aout", "desserte": "C26A:R,C3A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4019", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.881520084572958, 45.764771674336409 ] } }, -{ "type": "Feature", "properties": { "id": "576", "nom": "Coli", "desserte": "67A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1220", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.945854375269191, 45.769155116356671 ] } }, -{ "type": "Feature", "properties": { "id": "852", "nom": "Emile Chanel", "desserte": "S4A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1392", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.816118961904549, 45.777828493922442 ] } }, -{ "type": "Feature", "properties": { "id": "912", "nom": "Feuillat - Lacassagne", "desserte": "25A:R,C13A:A,C16A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1409", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.875108669638037, 45.750136679022489 ] } }, -{ "type": "Feature", "properties": { "id": "1004", "nom": "Gare de Collonges-Fontaines", "desserte": "43A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1458", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.848170884670078, 45.830403770485781 ] } }, -{ "type": "Feature", "properties": { "id": "1634", "nom": "Les Bruyeres", "desserte": "33A:A,9A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1931", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.866536599907011, 45.817903050137502 ] } }, -{ "type": "Feature", "properties": { "id": "1873", "nom": "Centre Hospitalier Mont d'Or", "desserte": "43A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2117", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.835189439878033, 45.860379309973744 ] } }, -{ "type": "Feature", "properties": { "id": "3130", "nom": "Vieux Crepieux", "desserte": "171:R,C5A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2958", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.877644554873581, 45.800594785827833 ] } }, -{ "type": "Feature", "properties": { "id": "3150", "nom": "Viviani", "desserte": "35A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2975", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.862721377005315, 45.726370415192179 ] } }, -{ "type": "Feature", "properties": { "id": "3204", "nom": "Z.I. Terray - De Lattre", "desserte": "ZI2A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2999", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 5.025975438300385, 45.770721678471716 ] } }, -{ "type": "Feature", "properties": { "id": "10383", "nom": "Choulans - Tourelles", "desserte": "46A:A,49A:A,55A:A,C19A:A,C20A:A,C21A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3416", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.819101080809001, 45.753837626480156 ] } }, -{ "type": "Feature", "properties": { "id": "10802", "nom": "Sept Chemins", "desserte": "28A:A,68B:R,ZI5B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2650", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.933134345158333, 45.744380712345794 ] } }, -{ "type": "Feature", "properties": { "id": "10889", "nom": "Pont De Lattre RD", "desserte": "9A:R,C5A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2536", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.838298653483032, 45.773637093288059 ] } }, -{ "type": "Feature", "properties": { "id": "10906", "nom": "Chemin Bressan", "desserte": "43A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1127", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.834114312408177, 45.882636406435957 ] } }, -{ "type": "Feature", "properties": { "id": "10917", "nom": "Z.I. Jacquard", "desserte": "43A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3542", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.816671705604068, 45.888242996438237 ] } }, -{ "type": "Feature", "properties": { "id": "10933", "nom": "Grosso - Roosevelt", "desserte": "16A:A,ZI3A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3548", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.93629905645283, 45.763471716169079 ] } }, -{ "type": "Feature", "properties": { "id": "10942", "nom": "Mermoz - Californie", "desserte": "C15A:A,C22A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1012", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.8798433648538, 45.733512115704947 ] } }, -{ "type": "Feature", "properties": { "id": "11029", "nom": "La Fouillouse", "desserte": "50A:A,50A:R,ZI8A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3578", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.983600800742002, 45.686734301292901 ] } }, -{ "type": "Feature", "properties": { "id": "11036", "nom": "Jules Verne", "desserte": "50A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3585", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.974247216476088, 45.702212584651107 ] } }, -{ "type": "Feature", "properties": { "id": "36260", "nom": "Givors Centre Commercial", "desserte": "80A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4156", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.751736758665296, 45.58539895430259 ] } }, -{ "type": "Feature", "properties": { "id": "42744", "nom": "Cordeliers", "desserte": "301A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "34", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.835894117360568, 45.763464663221356 ] } }, -{ "type": "Feature", "properties": { "id": "43015", "nom": "Berliet Porte C", "desserte": "93A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3661", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.897774666461241, 45.70672137394989 ] } }, -{ "type": "Feature", "properties": { "id": "43222", "nom": "Cordeliers", "desserte": "C13A:R,C14A:R,C3A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "29", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.835847267132964, 45.763928096599869 ] } }, -{ "type": "Feature", "properties": { "id": "43224", "nom": "Cordeliers", "desserte": "C13A:A,C13A:R,C3A:A,C5A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "25", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.836650282945152, 45.763059156785005 ] } }, -{ "type": "Feature", "properties": { "id": "43226", "nom": "Cordeliers", "desserte": "9A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "32", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.83810509355991, 45.762875982008531 ] } }, -{ "type": "Feature", "properties": { "id": "43355", "nom": "College Christiane Bernardin", "desserte": "C20A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4841", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.775764289926276, 45.741062471866421 ] } }, -{ "type": "Feature", "properties": { "id": "43648", "nom": "Verdun - Victor Hugo", "desserte": "95A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2933", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.996815403697694, 45.779778793506068 ] } }, -{ "type": "Feature", "properties": { "id": "43697", "nom": "Albigny Centre Hospitalier", "desserte": "R2A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4883", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.833997291671727, 45.863628253021339 ] } }, -{ "type": "Feature", "properties": { "id": "43737", "nom": "Rillieux - Les Alagniers", "desserte": "C2A:R,S8A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4749", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.894190216095194, 45.814054546157131 ] } }, -{ "type": "Feature", "properties": { "id": "519", "nom": "Cite Ampere", "desserte": "C7B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1162", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.812301469100935, 45.708451448496277 ] } }, -{ "type": "Feature", "properties": { "id": "814", "nom": "Emile Vial", "desserte": "24A:R,25A:R,68B:R,ZI5B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1362", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.929308122916439, 45.745306297247794 ] } }, -{ "type": "Feature", "properties": { "id": "955", "nom": "Foucaud - Picasso", "desserte": "57A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1436", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.921028478992012, 45.774599011250089 ] } }, -{ "type": "Feature", "properties": { "id": "987", "nom": "Gabriel Rosset", "desserte": "C22A:A,C22A:R,ZI6A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1446", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.841558284386672, 45.729692668166265 ] } }, -{ "type": "Feature", "properties": { "id": "1042", "nom": "General Frere", "desserte": "26A:R,79A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1478", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.886886388322841, 45.726835321609485 ] } }, -{ "type": "Feature", "properties": { "id": "1084", "nom": "Grandvaux", "desserte": "55A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1505", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.77766971576575, 45.772334150925204 ] } }, -{ "type": "Feature", "properties": { "id": "1160", "nom": "Herbepin", "desserte": "26A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1549", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.967061987051009, 45.713966391287244 ] } }, -{ "type": "Feature", "properties": { "id": "1209", "nom": "Ile Roy", "desserte": "40A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1576", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.858697728537069, 45.824380191438173 ] } }, -{ "type": "Feature", "properties": { "id": "1386", "nom": "La Forestiere", "desserte": "55A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5162", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.768505410800344, 45.765791290790631 ] } }, -{ "type": "Feature", "properties": { "id": "1566", "nom": "Le Rafour", "desserte": "3A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1878", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.764181936211731, 45.791096509074592 ] } }, -{ "type": "Feature", "properties": { "id": "1590", "nom": "Le Vernay - Ombrosa", "desserte": "40A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1894", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.843005685403008, 45.804388356341484 ] } }, -{ "type": "Feature", "properties": { "id": "2991", "nom": "Terreaux Tobie Robatel", "desserte": "C13A:A,C13A:R,C18A:A,C18A:R,S12A:R,S6A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2843", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.83170438157157, 45.767212955505471 ] } }, -{ "type": "Feature", "properties": { "id": "3016", "nom": "Tupinier", "desserte": "C24B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2869", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.707727361025581, 45.747325693307246 ] } }, -{ "type": "Feature", "properties": { "id": "10312", "nom": "Les Croisettes", "desserte": "5A:A,72B:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3372", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.767931962834512, 45.758926991294672 ] } }, -{ "type": "Feature", "properties": { "id": "10444", "nom": "Dardilly Le Paillet", "desserte": "3A:A,3A:R,GE4A:A,GE4A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1284", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.748890802790251, 45.822650170285492 ] } }, -{ "type": "Feature", "properties": { "id": "11096", "nom": "Parc Lyder", "desserte": "C25B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3605", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.908674394650101, 45.707102053464091 ] } }, -{ "type": "Feature", "properties": { "id": "11109", "nom": "Balme Baron", "desserte": "S5A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3611", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.875398877815591, 45.80045652946616 ] } }, -{ "type": "Feature", "properties": { "id": "11195", "nom": "Marius Grosso", "desserte": "16A:R,28A:A,ZI3A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2150", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.930322459216976, 45.763006829310584 ] } }, -{ "type": "Feature", "properties": { "id": "11196", "nom": "Corneille", "desserte": "52A:A,68B:A,ZI5B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3624", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.928284072131342, 45.755501634269933 ] } }, -{ "type": "Feature", "properties": { "id": "11197", "nom": "Corneille", "desserte": "52A:R,68B:R,ZI5B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3623", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.928290140001367, 45.755357470195484 ] } }, -{ "type": "Feature", "properties": { "id": "11205", "nom": "La Doua", "desserte": "C17A:R,C26A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1700", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.871798447134441, 45.779033657788801 ] } }, -{ "type": "Feature", "properties": { "id": "11210", "nom": "Pierre Gay", "desserte": "76A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3613", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.973412956903111, 45.760715927876127 ] } }, -{ "type": "Feature", "properties": { "id": "39734", "nom": "Blanqui-Ctre Memoires et Ste", "desserte": "C3A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "6130", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.884746151957618, 45.761395009050815 ] } }, -{ "type": "Feature", "properties": { "id": "43774", "nom": "Parc de la Mairie", "desserte": "46A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4888", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.800199603047406, 45.756711321797276 ] } }, -{ "type": "Feature", "properties": { "id": "43815", "nom": "Robert Reynier", "desserte": "C12A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3913", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.861398289216715, 45.708014155434043 ] } }, -{ "type": "Feature", "properties": { "id": "43832", "nom": "Lycee Agroalimentaire", "desserte": "78B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4890", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.79178853876443, 45.666489700236717 ] } }, -{ "type": "Feature", "properties": { "id": "43834", "nom": "Lycee Rosa Parks", "desserte": "84A:A,84A:R,96A:A,96A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4891", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.84703673120628, 45.876893970959031 ] } }, -{ "type": "Feature", "properties": { "id": "43842", "nom": "Champagne De Gaulle", "desserte": "21A:R,61A:R,GE4A:A,GE4A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4892", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.784915131409224, 45.801897810089635 ] } }, -{ "type": "Feature", "properties": { "id": "1", "nom": "24 Aout", "desserte": "87A:A,ZI1A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "792", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.909327661397976, 45.682864269962238 ] } }, -{ "type": "Feature", "properties": { "id": "134", "nom": "Bastero - Aquarium", "desserte": "17B:A,8A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "881", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.813583848369907, 45.725822151935887 ] } }, -{ "type": "Feature", "properties": { "id": "242", "nom": "Boutarey", "desserte": "77A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "963", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.877840227482328, 45.826550390337424 ] } }, -{ "type": "Feature", "properties": { "id": "596", "nom": "Corbas Rue du Midi", "desserte": "112A:A,54A:A,76A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1235", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.899696463236537, 45.659690305755348 ] } }, -{ "type": "Feature", "properties": { "id": "900", "nom": "Felix Faure - Vivier Merle", "desserte": "C7B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "767", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.859417040106321, 45.753946932621083 ] } }, -{ "type": "Feature", "properties": { "id": "914", "nom": "Feyzin Chateau de l'Isle", "desserte": "60A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1412", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.850346776156129, 45.672221585641488 ] } }, -{ "type": "Feature", "properties": { "id": "1102", "nom": "Grange Rouge", "desserte": "296:A,C25B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1512", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.874145448494758, 45.731201765231795 ] } }, -{ "type": "Feature", "properties": { "id": "1115", "nom": "Gros Platane", "desserte": "40A:R,70A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1521", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.838998152409977, 45.837368321678809 ] } }, -{ "type": "Feature", "properties": { "id": "1264", "nom": "Joannes Carret", "desserte": "31A:A,43A:A,S10A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1617", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.821399031102428, 45.793049755220203 ] } }, -{ "type": "Feature", "properties": { "id": "1527", "nom": "Le Cantin", "desserte": "77A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1838", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.850452795452036, 45.842288514584133 ] } }, -{ "type": "Feature", "properties": { "id": "1535", "nom": "Le Creuzet", "desserte": "43A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1848", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.83206013389879, 45.885931460902363 ] } }, -{ "type": "Feature", "properties": { "id": "1567", "nom": "Le Rafour", "desserte": "3A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1877", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.763888116244889, 45.791435894298431 ] } }, -{ "type": "Feature", "properties": { "id": "1618", "nom": "Les Balmones", "desserte": "21A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1915", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.771797983284411, 45.829429000892638 ] } }, -{ "type": "Feature", "properties": { "id": "2992", "nom": "Tonkin", "desserte": "C17A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2844", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.865187682670939, 45.778507604277877 ] } }, -{ "type": "Feature", "properties": { "id": "3316", "nom": "Grand Chassagnon", "desserte": "93A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1489", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.863470138320555, 45.701927698843257 ] } }, -{ "type": "Feature", "properties": { "id": "10445", "nom": "Le Bouquis", "desserte": "3A:A,GE4A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3438", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.755221995364417, 45.823756236576074 ] } }, -{ "type": "Feature", "properties": { "id": "11268", "nom": "Kruger - Voillot", "desserte": "C8A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1645", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.909832245990486, 45.75356598654691 ] } }, -{ "type": "Feature", "properties": { "id": "11721", "nom": "Cimetiere de St Priest", "desserte": "R5A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5329", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.946379803497887, 45.693214840250917 ] } }, -{ "type": "Feature", "properties": { "id": "11722", "nom": "Cimetiere de St Priest", "desserte": "R5A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5330", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.946182989362809, 45.693669499747948 ] } }, -{ "type": "Feature", "properties": { "id": "11925", "nom": "Parc de Champvert", "desserte": "45A:R,90A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3162", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.795745426181343, 45.762065590559523 ] } }, -{ "type": "Feature", "properties": { "id": "42540", "nom": "Carre de Soie", "desserte": "83A:A,C15A:A,C8A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4556", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.918331035799036, 45.764543390617618 ] } }, -{ "type": "Feature", "properties": { "id": "43018", "nom": "Mendes France - Alsace", "desserte": "93A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4780", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.910243891068895, 45.718416782797412 ] } }, -{ "type": "Feature", "properties": { "id": "43021", "nom": "Porte des Alpes", "desserte": "52A:A,52A:R,93A:A,C17A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "347", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.923551582388722, 45.720217047218533 ] } }, -{ "type": "Feature", "properties": { "id": "43634", "nom": "St Genis Centre", "desserte": "S9A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2728", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.792108182513018, 45.695555892322766 ] } }, -{ "type": "Feature", "properties": { "id": "43831", "nom": "Lycee Agroalimentaire", "desserte": "78B:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4889", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.791621409852162, 45.666484360556872 ] } }, -{ "type": "Feature", "properties": { "id": "43855", "nom": "Bois de l'Etoile Liberte", "desserte": "GE6A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4897", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.723838252155229, 45.784418474449886 ] } }, -{ "type": "Feature", "properties": { "id": "46551", "nom": "Mayer", "desserte": "78B:A,80A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5541", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.789534308983784, 45.609168674274045 ] } }, -{ "type": "Feature", "properties": { "id": "192", "nom": "Berliet Venissieux", "desserte": "C25B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "922", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.8985135241465, 45.713271415310643 ] } }, -{ "type": "Feature", "properties": { "id": "599", "nom": "Cordeliers", "desserte": "171:R,27A:A,27A:R,C3A:R,C5A:A,C5A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "30", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.838114261130031, 45.762794767094761 ] } }, -{ "type": "Feature", "properties": { "id": "772", "nom": "Duchere Chateau", "desserte": "448A:A,66A:A,C14A:A,S11A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1331", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.793071163924965, 45.781089331299384 ] } }, -{ "type": "Feature", "properties": { "id": "1120", "nom": "Saxe - Préfecture", "desserte": "C14A:R,C4A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "420", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.845842604451864, 45.759111834552947 ] } }, -{ "type": "Feature", "properties": { "id": "1161", "nom": "Herriot - Cagne", "desserte": "C12A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "655", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.875645196302763, 45.693776595714631 ] } }, -{ "type": "Feature", "properties": { "id": "1554", "nom": "Le Pelet", "desserte": "78B:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1868", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.7937645489069, 45.654664129185463 ] } }, -{ "type": "Feature", "properties": { "id": "1941", "nom": "Massard", "desserte": "28A:R,29A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5435", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 5.018138800889339, 45.727925149221967 ] } }, -{ "type": "Feature", "properties": { "id": "3125", "nom": "Victor Hugo", "desserte": "62A:R,87A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2953", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.949454079704033, 45.662987983242367 ] } }, -{ "type": "Feature", "properties": { "id": "10292", "nom": "Gorge de Loup", "desserte": "C21A:A,C21A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "54", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.80409264843353, 45.765815909451433 ] } }, -{ "type": "Feature", "properties": { "id": "11726", "nom": "Dardilly Le Jubin", "desserte": "89A:A,89A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3442", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.761581975487397, 45.817921564200333 ] } }, -{ "type": "Feature", "properties": { "id": "11841", "nom": "Le Molard", "desserte": "79A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1860", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.965908742341459, 45.771342844034208 ] } }, -{ "type": "Feature", "properties": { "id": "11926", "nom": "Parc de Champvert", "desserte": "45A:A,90A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3163", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.795720520703315, 45.761796104930824 ] } }, -{ "type": "Feature", "properties": { "id": "11988", "nom": "Henri Germain", "desserte": "62A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3177", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.903754838714308, 45.704370333558359 ] } }, -{ "type": "Feature", "properties": { "id": "40034", "nom": "Commune de Paris", "desserte": "93A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4577", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.869635340306875, 45.702742755523175 ] } }, -{ "type": "Feature", "properties": { "id": "40236", "nom": "St Genis Collonges", "desserte": "88B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2729", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.805741443307863, 45.692520207489828 ] } }, -{ "type": "Feature", "properties": { "id": "42541", "nom": "Carre de Soie", "desserte": "83A:R,C8A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4557", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.918222348704727, 45.764419868908163 ] } }, -{ "type": "Feature", "properties": { "id": "43025", "nom": "3eme Millenaire", "desserte": "93A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4782", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.928325753403473, 45.71653328577424 ] } }, -{ "type": "Feature", "properties": { "id": "43030", "nom": "Parc Technologique", "desserte": "93A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4786", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.935595881842275, 45.712386440744609 ] } }, -{ "type": "Feature", "properties": { "id": "43056", "nom": "Clinique du Parc", "desserte": "27A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4800", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.858835125517656, 45.771827498805997 ] } }, -{ "type": "Feature", "properties": { "id": "43114", "nom": "Place Croix-Luizet", "desserte": "C17A:R,C26A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2438", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.882521963028476, 45.780861372632089 ] } }, -{ "type": "Feature", "properties": { "id": "43215", "nom": "Parilly Universite Hippodrome", "desserte": "93A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4817", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.91436829440539, 45.722246702416975 ] } }, -{ "type": "Feature", "properties": { "id": "43217", "nom": "Vaulx-en-Velin Marcel Cachin", "desserte": "37A:A,37A:R,57A:A,57A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4821", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.932885300675281, 45.78433525965211 ] } }, -{ "type": "Feature", "properties": { "id": "43220", "nom": "Vaulx-en-Velin Le Bourg", "desserte": "7A:A,7A:R,83A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4823", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.925685841603674, 45.78718388450676 ] } }, -{ "type": "Feature", "properties": { "id": "43225", "nom": "Cordeliers", "desserte": "9A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "24", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.836687378169017, 45.762808548035878 ] } }, -{ "type": "Feature", "properties": { "id": "43274", "nom": "Carrefour Liberation", "desserte": "5A:A,73A:A,C21A:A,C21A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1037", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.774946455921706, 45.758486821910601 ] } }, -{ "type": "Feature", "properties": { "id": "43304", "nom": "Bron Droits de l'Homme", "desserte": "52A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3058", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.931392404370863, 45.734159294183513 ] } }, -{ "type": "Feature", "properties": { "id": "43875", "nom": "College Jean Renoir", "desserte": "96A:A,96A:R,97A:A,97A:R,S14A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1612", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.845031206046116, 45.869665625704847 ] } }, -{ "type": "Feature", "properties": { "id": "99", "nom": "Ayasse - Yves Farge", "desserte": "C22A:R,C7B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "863", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.827924689186625, 45.736008939535978 ] } }, -{ "type": "Feature", "properties": { "id": "504", "nom": "Cimetiere de Corbas", "desserte": "111A:R,112A:R,54A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1154", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.899596552053648, 45.67548098386861 ] } }, -{ "type": "Feature", "properties": { "id": "567", "nom": "Clos Rival", "desserte": "C10A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1214", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.794201077555262, 45.685176881402697 ] } }, -{ "type": "Feature", "properties": { "id": "577", "nom": "Coli", "desserte": "67A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1221", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.946711751039678, 45.769333226653693 ] } }, -{ "type": "Feature", "properties": { "id": "773", "nom": "Duchere Chateau", "desserte": "66A:R,C14A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1332", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.794352341332815, 45.780971289833886 ] } }, -{ "type": "Feature", "properties": { "id": "815", "nom": "Echangeur du Perollier", "desserte": "19A:A,89A:A,C6B:A,S15A:A,S15A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1363", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.782720854343092, 45.787867991522319 ] } }, -{ "type": "Feature", "properties": { "id": "1021", "nom": "Genas - Bonnevay", "desserte": "C8A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1466", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.907118136152928, 45.750551391523153 ] } }, -{ "type": "Feature", "properties": { "id": "1043", "nom": "General Frere", "desserte": "26A:A,448A:A,79A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1479", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.886986598861602, 45.726779036000806 ] } }, -{ "type": "Feature", "properties": { "id": "1059", "nom": "Gorge de Loup", "desserte": "73A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "68", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.804635504828506, 45.76587598656932 ] } }, -{ "type": "Feature", "properties": { "id": "1067", "nom": "Meyzieu Grand Large", "desserte": "67A:R,95A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1491", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.99279790150605, 45.77730836546106 ] } }, -{ "type": "Feature", "properties": { "id": "1235", "nom": "Jamen Grand", "desserte": "33A:A,38A:A,S5A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1599", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.840668695832627, 45.794899150733045 ] } }, -{ "type": "Feature", "properties": { "id": "1400", "nom": "La Grande Charriere", "desserte": "97A:A,97A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1729", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.863749660481306, 45.876573758803559 ] } }, -{ "type": "Feature", "properties": { "id": "1651", "nom": "Les Cigales", "desserte": "15A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1947", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.824179366630122, 45.683858685199112 ] } }, -{ "type": "Feature", "properties": { "id": "1685", "nom": "Les Gaulnes", "desserte": "95A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1975", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 5.03426850296851, 45.791623427558335 ] } }, -{ "type": "Feature", "properties": { "id": "1942", "nom": "Massard", "desserte": "28A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5436", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 5.018257411653634, 45.727985327718969 ] } }, -{ "type": "Feature", "properties": { "id": "2235", "nom": "La Boutasse", "desserte": "28A:R,29A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5437", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 5.018222227889678, 45.733594315047156 ] } }, -{ "type": "Feature", "properties": { "id": "3503", "nom": "Hôtel de Ville - Louis Pradel", "desserte": "S1A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "114", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.834464355672332, 45.767097581719383 ] } }, -{ "type": "Feature", "properties": { "id": "10169", "nom": "Austerlitz", "desserte": "448A:A,C13A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5513", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.834923505851132, 45.775791510231002 ] } }, -{ "type": "Feature", "properties": { "id": "10594", "nom": "Meyzieu Gadelles", "desserte": "85A:A,85A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2181", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 5.01797716022197, 45.778690544424052 ] } }, -{ "type": "Feature", "properties": { "id": "11273", "nom": "Bron Jules Ferry", "desserte": "24A:A,C15A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3635", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.896404320660203, 45.731965377459979 ] } }, -{ "type": "Feature", "properties": { "id": "11310", "nom": "Place Sublet-Marcel Paul", "desserte": "C12A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3646", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.881965432176395, 45.699628206340329 ] } }, -{ "type": "Feature", "properties": { "id": "11315", "nom": "Gare de Vénissieux", "desserte": "87A:A,87A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "273", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.888316628015826, 45.70639686506312 ] } }, -{ "type": "Feature", "properties": { "id": "12027", "nom": "La Fucharniere", "desserte": "22A:A,23A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3197", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.802050085244145, 45.804610471706184 ] } }, -{ "type": "Feature", "properties": { "id": "12028", "nom": "La Fucharniere", "desserte": "20A:R,22A:R,23A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3198", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.801976569464611, 45.804693095011672 ] } }, -{ "type": "Feature", "properties": { "id": "12042", "nom": "Lycee François Cevert", "desserte": "19A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3203", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.788992548283542, 45.782807657982111 ] } }, -{ "type": "Feature", "properties": { "id": "40314", "nom": "Cite St Jean", "desserte": "7A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1175", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.903023473813958, 45.776614143185405 ] } }, -{ "type": "Feature", "properties": { "id": "42745", "nom": "Ampère Victor Hugo", "desserte": "301A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.829257117442078, 45.753100852119658 ] } }, -{ "type": "Feature", "properties": { "id": "50", "nom": "Alsace", "desserte": "C16A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "824", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.868679092802577, 45.763252748171979 ] } }, -{ "type": "Feature", "properties": { "id": "568", "nom": "Clos Savaron", "desserte": "C18A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1215", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.824144029578984, 45.782619656895001 ] } }, -{ "type": "Feature", "properties": { "id": "700", "nom": "Decines Eglise", "desserte": "16A:R,57A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1298", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.963806060205105, 45.763677633984997 ] } }, -{ "type": "Feature", "properties": { "id": "824", "nom": "Dardilly Les Gorges", "desserte": "89A:R,GE4A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1365", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.76364490246179, 45.807498886460316 ] } }, -{ "type": "Feature", "properties": { "id": "901", "nom": "Felix Faure - Vivier Merle", "desserte": "C11A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "769", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.858989502981674, 45.753596490629299 ] } }, -{ "type": "Feature", "properties": { "id": "1464", "nom": "La Tourette", "desserte": "73A:R,C24B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "713", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.736036940440917, 45.747327114276558 ] } }, -{ "type": "Feature", "properties": { "id": "1528", "nom": "Le Cantin", "desserte": "77A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1837", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.850516713872601, 45.842278083983906 ] } }, -{ "type": "Feature", "properties": { "id": "1529", "nom": "RN6 - A. Pare", "desserte": "1EX:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1841", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.976702166524976, 45.710613383626679 ] } }, -{ "type": "Feature", "properties": { "id": "1701", "nom": "Les Hautpres", "desserte": "72B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1993", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.734115820136599, 45.758709190136194 ] } }, -{ "type": "Feature", "properties": { "id": "2236", "nom": "La Boutasse", "desserte": "28A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5438", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 5.018065256129503, 45.734066161448006 ] } }, -{ "type": "Feature", "properties": { "id": "3128", "nom": "Route de Vienne", "desserte": "35A:R,C12A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "382", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.85044708171538, 45.743085682077506 ] } }, -{ "type": "Feature", "properties": { "id": "3205", "nom": "Zac des Marronniers", "desserte": "33A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3002", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.873441239422498, 45.816883258544934 ] } }, -{ "type": "Feature", "properties": { "id": "3493", "nom": "St Irenee - Croix Blanche", "desserte": "46A:R,49A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3072", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.809314460696618, 45.755520804316866 ] } }, -{ "type": "Feature", "properties": { "id": "12109", "nom": "St Genis Centre", "desserte": "88B:A,C10A:R,S9A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2727", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.793245811348658, 45.694855898156291 ] } }, -{ "type": "Feature", "properties": { "id": "12185", "nom": "Chalin", "desserte": "19A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3252", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.784086072903357, 45.778360173580857 ] } }, -{ "type": "Feature", "properties": { "id": "12222", "nom": "Jusseaud", "desserte": "49A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3740", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.805574795625157, 45.747259133148738 ] } }, -{ "type": "Feature", "properties": { "id": "43022", "nom": "Porte des Alpes", "desserte": "52A:A,52A:R,93A:R,C17A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "348", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.923757819216961, 45.720230294476785 ] } }, -{ "type": "Feature", "properties": { "id": "43023", "nom": "Andre Boulloche", "desserte": "93A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "834", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.929899448765146, 45.718297210154034 ] } }, -{ "type": "Feature", "properties": { "id": "43024", "nom": "Andre Boulloche", "desserte": "93A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "835", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.930526786230806, 45.719065834274069 ] } }, -{ "type": "Feature", "properties": { "id": "43031", "nom": "Campus Lyon Ouest", "desserte": "55A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4788", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.766383939828861, 45.782477278849463 ] } }, -{ "type": "Feature", "properties": { "id": "43033", "nom": "Pavillon Medical", "desserte": "88B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4795", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.810030381389426, 45.70165177927489 ] } }, -{ "type": "Feature", "properties": { "id": "43034", "nom": "Chemin de Montluzin", "desserte": "21A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4797", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.750138168407131, 45.868942426712827 ] } }, -{ "type": "Feature", "properties": { "id": "43054", "nom": "Parc Tete d'Or - Verguin", "desserte": "27A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4798", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.855884529866841, 45.772559830000098 ] } }, -{ "type": "Feature", "properties": { "id": "43055", "nom": "Parc Tete d'Or - Verguin", "desserte": "27A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4799", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.855707106107194, 45.772617818020073 ] } }, -{ "type": "Feature", "properties": { "id": "43057", "nom": "Clinique du Parc", "desserte": "27A:A,27A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4801", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.860079214497815, 45.77287069794717 ] } }, -{ "type": "Feature", "properties": { "id": "43058", "nom": "Charpennes", "desserte": "27A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "240", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.862940194126396, 45.76990795499907 ] } }, -{ "type": "Feature", "properties": { "id": "43062", "nom": "Villeurbanne Centre", "desserte": "27A:A,27A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4803", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.877648260511343, 45.767820805969563 ] } }, -{ "type": "Feature", "properties": { "id": "43195", "nom": "La Tour de Salvagny Chambettes", "desserte": "86A:A,86A:R,S2A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4815", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.704878707262292, 45.817060616684103 ] } }, -{ "type": "Feature", "properties": { "id": "117", "nom": "Baraillon", "desserte": "5A:R,72B:R,98A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "869", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.759943364126277, 45.764113230907356 ] } }, -{ "type": "Feature", "properties": { "id": "1465", "nom": "La Tuilerie", "desserte": "21A:A,GE4A:A,GE4A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1785", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.781692512974219, 45.801778970757567 ] } }, -{ "type": "Feature", "properties": { "id": "1654", "nom": "Les Coquelicots", "desserte": "98A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1948", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.748033296597669, 45.765548787679236 ] } }, -{ "type": "Feature", "properties": { "id": "1957", "nom": "Merlo", "desserte": "63A:A,63A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2173", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.787626371660786, 45.718957412603231 ] } }, -{ "type": "Feature", "properties": { "id": "2936", "nom": "Surville Route de Vienne", "desserte": "C12A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2803", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.854407141040275, 45.718648670604139 ] } }, -{ "type": "Feature", "properties": { "id": "3207", "nom": "Zephyrs", "desserte": "28A:R,29A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5448", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 5.015731776685247, 45.728117668467576 ] } }, -{ "type": "Feature", "properties": { "id": "10340", "nom": "Maison de l'Aqueduc", "desserte": "14B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3391", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.778487904939388, 45.727311547856388 ] } }, -{ "type": "Feature", "properties": { "id": "10369", "nom": "Decines Acacias", "desserte": "79A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3407", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.948845073611201, 45.759273849917193 ] } }, -{ "type": "Feature", "properties": { "id": "10446", "nom": "Le Bouquis", "desserte": "3A:R,GE4A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3439", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.754365579725302, 45.823603644424104 ] } }, -{ "type": "Feature", "properties": { "id": "10974", "nom": "Montee des Forts", "desserte": "S5A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3557", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.833474160314632, 45.793736121554105 ] } }, -{ "type": "Feature", "properties": { "id": "11713", "nom": "Boutasse - Camille Rousset", "desserte": "C17A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "407", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.903885282381324, 45.734449879866979 ] } }, -{ "type": "Feature", "properties": { "id": "12007", "nom": "Grande Rue St Rambert", "desserte": "S10A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3185", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.833926950246555, 45.799738863816707 ] } }, -{ "type": "Feature", "properties": { "id": "12235", "nom": "Theatre Eglise Notre Dame", "desserte": "46A:A,90A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3723", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.794541269289942, 45.75842854032215 ] } }, -{ "type": "Feature", "properties": { "id": "12238", "nom": "Espace Baudelaire", "desserte": "C2A:A,C5A:A,ZI4A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.904995035086446, 45.818560916242667 ] } }, -{ "type": "Feature", "properties": { "id": "12239", "nom": "Espace Baudelaire", "desserte": "C2A:R,C5A:R,ZI4A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.90537848298356, 45.818777191454508 ] } }, -{ "type": "Feature", "properties": { "id": "12264", "nom": "Centre Social Sauvegarde", "desserte": "19A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1047", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.790425822556483, 45.786385771412924 ] } }, -{ "type": "Feature", "properties": { "id": "30034", "nom": "Bron Aviation", "desserte": "52A:R,ZI7A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3268", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.930617465995018, 45.736535598265711 ] } }, -{ "type": "Feature", "properties": { "id": "40622", "nom": "Les Mesanges", "desserte": "78B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4006", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.797729328407303, 45.640265583092997 ] } }, -{ "type": "Feature", "properties": { "id": "42546", "nom": "Grange Blanche - Viala", "desserte": "C26A:A,C8A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1507", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.88547377318044, 45.744068927677688 ] } }, -{ "type": "Feature", "properties": { "id": "42561", "nom": "Parc Tete d'Or - Stalingrad", "desserte": "70A:A,C26A:R,C2A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4745", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.860859618349706, 45.779505101101556 ] } }, -{ "type": "Feature", "properties": { "id": "42562", "nom": "Parc Tete d'Or - Stalingrad", "desserte": "70A:R,C26A:A,C2A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4744", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.860214168775911, 45.779456598336367 ] } }, -{ "type": "Feature", "properties": { "id": "42614", "nom": "99 chemin du Charbonnier", "desserte": "ZI1A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4751", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.909881652811634, 45.689224568679137 ] } }, -{ "type": "Feature", "properties": { "id": "42615", "nom": "99 chemin du Charbonnier", "desserte": "ZI1A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4752", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.909960312310388, 45.689258769176881 ] } }, -{ "type": "Feature", "properties": { "id": "42751", "nom": "Piscine Loup Pendu", "desserte": "C2A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4772", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.887459871244666, 45.815453512438971 ] } }, -{ "type": "Feature", "properties": { "id": "42958", "nom": "Sathonay Mairie", "desserte": "33A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2631", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.874327741520451, 45.823624457929625 ] } }, -{ "type": "Feature", "properties": { "id": "43755", "nom": "Bd de Parilly", "desserte": "93A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4886", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.906529653722561, 45.715378453206554 ] } }, -{ "type": "Feature", "properties": { "id": "43917", "nom": "Hopital Feyzin Venissieux", "desserte": "C12A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "676", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.864942473470795, 45.68950878005483 ] } }, -{ "type": "Feature", "properties": { "id": "43920", "nom": "Saint Denis", "desserte": "S4A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4915", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.830332710797617, 45.779512023279679 ] } }, -{ "type": "Feature", "properties": { "id": "586", "nom": "Condorcet", "desserte": "C17A:A,C26A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "356", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.867106587352474, 45.778833434453006 ] } }, -{ "type": "Feature", "properties": { "id": "710", "nom": "Decomberousse", "desserte": "C15A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1305", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.915210954585349, 45.762733779444488 ] } }, -{ "type": "Feature", "properties": { "id": "962", "nom": "Francheville Bel Air", "desserte": "73A:A,C24B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "708", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.756785207134827, 45.747396577133848 ] } }, -{ "type": "Feature", "properties": { "id": "1236", "nom": "Jamen Grand", "desserte": "33A:R,38A:R,S5A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1600", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.840872168489828, 45.795128646792662 ] } }, -{ "type": "Feature", "properties": { "id": "1540", "nom": "Oullins Le Golf", "desserte": "63A:A,63A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1849", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.782641600267313, 45.720137325922302 ] } }, -{ "type": "Feature", "properties": { "id": "1619", "nom": "Les Balmones", "desserte": "21A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1914", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.771721599988173, 45.829448657770989 ] } }, -{ "type": "Feature", "properties": { "id": "1643", "nom": "Les Chaux", "desserte": "C20A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1940", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.752153772563105, 45.736081368142543 ] } }, -{ "type": "Feature", "properties": { "id": "1687", "nom": "Les Geraniums", "desserte": "60A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1977", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.862568489911067, 45.666591113913306 ] } }, -{ "type": "Feature", "properties": { "id": "10370", "nom": "Decines Acacias", "desserte": "79A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3408", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.94867729670864, 45.758719655010665 ] } }, -{ "type": "Feature", "properties": { "id": "10976", "nom": "Place du Capot", "desserte": "S5A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3347", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.836810499817648, 45.791834664922497 ] } }, -{ "type": "Feature", "properties": { "id": "11997", "nom": "Domer - Garibaldi", "desserte": "C7B:A,C7B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3179", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.851568491455475, 45.747651174576433 ] } }, -{ "type": "Feature", "properties": { "id": "40623", "nom": "Flacheres", "desserte": "78B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4003", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.795301789935563, 45.641939063306374 ] } }, -{ "type": "Feature", "properties": { "id": "41056", "nom": "Cimetiere de St Genis", "desserte": "S9A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4628", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.787906891857231, 45.700436342534218 ] } }, -{ "type": "Feature", "properties": { "id": "42377", "nom": "Margnolles - Pasteur", "desserte": "C13A:R,S5A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2147", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.838089490894643, 45.785442330771495 ] } }, -{ "type": "Feature", "properties": { "id": "42378", "nom": "Jean Monnet", "desserte": "S5A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4727", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.841351331574765, 45.789546202496865 ] } }, -{ "type": "Feature", "properties": { "id": "42515", "nom": "Mairie de Sainte Foy", "desserte": "C19A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2109", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.799074358669826, 45.735016522904772 ] } }, -{ "type": "Feature", "properties": { "id": "42516", "nom": "La Graviere de Beaunant", "desserte": "14B:R,C19A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1737", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.779629013381379, 45.733911400050566 ] } }, -{ "type": "Feature", "properties": { "id": "42547", "nom": "Hop.Desgenettes Vinatier", "desserte": "C8A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3724", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.894926389461493, 45.743947111356128 ] } }, -{ "type": "Feature", "properties": { "id": "42548", "nom": "Vaulx Picasso", "desserte": "57A:A,83A:A,C8A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2916", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.915192211668701, 45.776460813961904 ] } }, -{ "type": "Feature", "properties": { "id": "42549", "nom": "Vaulx Picasso", "desserte": "57A:R,83A:R,C8A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2914", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.91508752347645, 45.77656286373449 ] } }, -{ "type": "Feature", "properties": { "id": "42554", "nom": "Lycee de l'Automobile", "desserte": "25A:A,C8A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3853", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.904697379515217, 45.751578947565335 ] } }, -{ "type": "Feature", "properties": { "id": "42557", "nom": "Tonkin", "desserte": "70A:A,C2A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2847", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.861934139451706, 45.775480953584378 ] } }, -{ "type": "Feature", "properties": { "id": "42558", "nom": "Tonkin", "desserte": "70A:R,C2A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2846", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.861580160026126, 45.775248939408669 ] } }, -{ "type": "Feature", "properties": { "id": "42559", "nom": "Rossellini", "desserte": "70A:A,C2A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4742", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.862454137129129, 45.778694868437739 ] } }, -{ "type": "Feature", "properties": { "id": "42560", "nom": "Rossellini", "desserte": "70A:R,C2A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4743", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.862429239067943, 45.778530884941766 ] } }, -{ "type": "Feature", "properties": { "id": "43120", "nom": "Montchat Place Ronde", "desserte": "C26A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "687", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.891801991746133, 45.75326843476244 ] } }, -{ "type": "Feature", "properties": { "id": "43934", "nom": "Hopital Croix-Rousse", "desserte": "33A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1561", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.829238902685156, 45.779788339263924 ] } }, -{ "type": "Feature", "properties": { "id": "43936", "nom": "Vaulx-en-Velin Marcel Cachin", "desserte": "57A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4822", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.933067350722889, 45.784376059546773 ] } }, -{ "type": "Feature", "properties": { "id": "118", "nom": "Barbesi", "desserte": "60A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "870", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.864500700317042, 45.668131769169449 ] } }, -{ "type": "Feature", "properties": { "id": "166", "nom": "Bellecour Charite", "desserte": "35A:A,35A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "901", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.833235930650308, 45.755900450392836 ] } }, -{ "type": "Feature", "properties": { "id": "1000", "nom": "Garanjou", "desserte": "C7B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1454", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.816407270923217, 45.70519238882386 ] } }, -{ "type": "Feature", "properties": { "id": "1085", "nom": "Grandvaux", "desserte": "55A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1504", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.776656018395423, 45.771519092112179 ] } }, -{ "type": "Feature", "properties": { "id": "1265", "nom": "Joannes Carret", "desserte": "31A:R,43A:R,S10A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1616", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.82034736650029, 45.792271910789431 ] } }, -{ "type": "Feature", "properties": { "id": "1512", "nom": "Laurent Bonnevay", "desserte": "448A:A,67A:A,67A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5164", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.909093734082594, 45.764755394098749 ] } }, -{ "type": "Feature", "properties": { "id": "2259", "nom": "Pensionnat", "desserte": "28A:R,29A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5439", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 5.016867559830656, 45.735868132954586 ] } }, -{ "type": "Feature", "properties": { "id": "2260", "nom": "Pensionnat", "desserte": "28A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5440", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 5.016790816924883, 45.736140020811959 ] } }, -{ "type": "Feature", "properties": { "id": "10739", "nom": "Grandclement", "desserte": "C26A:R,C3A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1501", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.890585977834675, 45.759759082031387 ] } }, -{ "type": "Feature", "properties": { "id": "12111", "nom": "Barolles Gendarmerie", "desserte": "17B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3228", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.786113443872677, 45.686686026208598 ] } }, -{ "type": "Feature", "properties": { "id": "30225", "nom": "Croix-Rousse", "desserte": "33A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "340", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.832173286996554, 45.774430476390485 ] } }, -{ "type": "Feature", "properties": { "id": "40846", "nom": "St Fons Sembat", "desserte": "60A:R,ZI6A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4239", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.849665578977585, 45.709924846032685 ] } }, -{ "type": "Feature", "properties": { "id": "42317", "nom": "Combattants", "desserte": "C7B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4719", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.814787104100875, 45.706587352787501 ] } }, -{ "type": "Feature", "properties": { "id": "42360", "nom": "MJC - Centre Choregraphique", "desserte": "C5A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4725", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.901572591142443, 45.813913286032509 ] } }, -{ "type": "Feature", "properties": { "id": "42394", "nom": "Plasson et Chaize", "desserte": "31A:A,31A:R,43A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4729", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.818849215215999, 45.791008861470196 ] } }, -{ "type": "Feature", "properties": { "id": "42475", "nom": "Companet", "desserte": "C2A:R,ZI4A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4731", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.87683668283484, 45.811522735777146 ] } }, -{ "type": "Feature", "properties": { "id": "42477", "nom": "Caluire Chemin Petit", "desserte": "ZI4A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1140", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.861889012162721, 45.80389672877822 ] } }, -{ "type": "Feature", "properties": { "id": "42478", "nom": "Caluire Chemin Petit", "desserte": "ZI4A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1142", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.862508575472634, 45.803924567095997 ] } }, -{ "type": "Feature", "properties": { "id": "42480", "nom": "Charles De Gaulle", "desserte": "33A:A,S8A:R,ZI4A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1100", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.891836290746837, 45.816862542941408 ] } }, -{ "type": "Feature", "properties": { "id": "42496", "nom": "Chateau Sans Souci", "desserte": "6A:A,GE4A:A,GE4A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4733", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.778317640948492, 45.808954188347649 ] } }, -{ "type": "Feature", "properties": { "id": "42499", "nom": "La Bruyere", "desserte": "6A:A,GE4A:A,GE4A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4736", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.771137112917906, 45.806661722309059 ] } }, -{ "type": "Feature", "properties": { "id": "42514", "nom": "Mairie de Sainte Foy", "desserte": "C19A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2108", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.799059103805661, 45.734962851568945 ] } }, -{ "type": "Feature", "properties": { "id": "42959", "nom": "Sathonay Mairie", "desserte": "33A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2632", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.87384252346536, 45.823625241725487 ] } }, -{ "type": "Feature", "properties": { "id": "43295", "nom": "Bergeron", "desserte": "C24B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4826", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.721957371807388, 45.745800068461435 ] } }, -{ "type": "Feature", "properties": { "id": "43302", "nom": "Parilly Universite Hippodrome", "desserte": "52A:A,52A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4819", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.914913989962647, 45.722099142538525 ] } }, -{ "type": "Feature", "properties": { "id": "43303", "nom": "Bron Droits de l'Homme", "desserte": "52A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3059", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.931258915507325, 45.734054362801274 ] } }, -{ "type": "Feature", "properties": { "id": "2", "nom": "24 Aout", "desserte": "87A:R,ZI1A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "791", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.90941871978548, 45.682889184636451 ] } }, -{ "type": "Feature", "properties": { "id": "91", "nom": "Austerlitz", "desserte": "S6A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "855", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.835106647289287, 45.775292370227127 ] } }, -{ "type": "Feature", "properties": { "id": "195", "nom": "Bernard Vallot", "desserte": "24A:A,C15A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "927", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.893121280828456, 45.73378648223742 ] } }, -{ "type": "Feature", "properties": { "id": "196", "nom": "Bernard Vallot", "desserte": "24A:R,C15A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "926", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.893773939827708, 45.733447563031156 ] } }, -{ "type": "Feature", "properties": { "id": "825", "nom": "Ecole de Sante", "desserte": "26A:A,26A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1367", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.924847439979155, 45.728099430683407 ] } }, -{ "type": "Feature", "properties": { "id": "976", "nom": "Francis Poulenc", "desserte": "68B:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1438", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.961336186216568, 45.746956352967359 ] } }, -{ "type": "Feature", "properties": { "id": "1001", "nom": "Garanteze", "desserte": "15A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1455", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.825552848296098, 45.678445538992847 ] } }, -{ "type": "Feature", "properties": { "id": "1007", "nom": "Archives Departementales", "desserte": "C11A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1460", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.862700005612496, 45.754035125058209 ] } }, -{ "type": "Feature", "properties": { "id": "1044", "nom": "Genevrey", "desserte": "33A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1481", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.880407294476305, 45.820812423685595 ] } }, -{ "type": "Feature", "properties": { "id": "1471", "nom": "La Vigie", "desserte": "90A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1794", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.810083587075312, 45.765765098458481 ] } }, -{ "type": "Feature", "properties": { "id": "2579", "nom": "Republique - Reaux", "desserte": "28A:R,R4B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5441", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 5.006860918881103, 45.730192471758066 ] } }, -{ "type": "Feature", "properties": { "id": "3184", "nom": "Z.I. Lionel Terray", "desserte": "ZI2A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2991", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 5.01947967964266, 45.771516162475237 ] } }, -{ "type": "Feature", "properties": { "id": "3400", "nom": "Montee Castellane", "desserte": "S8A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3034", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.898751433041661, 45.808621764986036 ] } }, -{ "type": "Feature", "properties": { "id": "10218", "nom": "Andre Lassagne", "desserte": "33A:A,77A:A,9A:A,S5A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3331", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.853697359003442, 45.805436512611834 ] } }, -{ "type": "Feature", "properties": { "id": "10475", "nom": "Girondins - Yves Farge", "desserte": "C22A:A,C7B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3453", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.830699946295259, 45.739385724437071 ] } }, -{ "type": "Feature", "properties": { "id": "11038", "nom": "Boris Vian", "desserte": "50A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3586", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.962858060355773, 45.696952869134904 ] } }, -{ "type": "Feature", "properties": { "id": "11335", "nom": "Berliet Porte E", "desserte": "54A:A,62A:A,87A:A,93A:A,ZI1A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3658", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.891704515080679, 45.704375460063709 ] } }, -{ "type": "Feature", "properties": { "id": "11998", "nom": "Domer - Garibaldi", "desserte": "C7B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3180", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.850010281162948, 45.747596065917534 ] } }, -{ "type": "Feature", "properties": { "id": "12105", "nom": "Oullins Mairie", "desserte": "63A:A,78B:A,C10A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2334", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.807208532468234, 45.714636542542237 ] } }, -{ "type": "Feature", "properties": { "id": "30228", "nom": "Decines Esplanade", "desserte": "79A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3101", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.97407791525436, 45.772438524037348 ] } }, -{ "type": "Feature", "properties": { "id": "31402", "nom": "Cazeneuve - Berthelot", "desserte": "C16A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3848", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.865838961861601, 45.737843192381177 ] } }, -{ "type": "Feature", "properties": { "id": "31482", "nom": "Les Oiseaux", "desserte": "15A:A,15A:R,18B:A,18B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2021", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.802856600713527, 45.640431852122575 ] } }, -{ "type": "Feature", "properties": { "id": "42319", "nom": "Emile Zola", "desserte": "C7B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4720", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.819074325792845, 45.705079385265257 ] } }, -{ "type": "Feature", "properties": { "id": "42361", "nom": "MJC - Centre Choregraphique", "desserte": "C5A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4724", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.901094433774977, 45.81414923423614 ] } }, -{ "type": "Feature", "properties": { "id": "44018", "nom": "Tonkin", "desserte": "C26A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2848", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.864751502469759, 45.77909350742101 ] } }, -{ "type": "Feature", "properties": { "id": "44618", "nom": "Charbonnieres Les Verrieres", "desserte": "5A:A,5A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4813", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.74425168882798, 45.789338253957901 ] } }, -{ "type": "Feature", "properties": { "id": "44799", "nom": "Porcher", "desserte": "S10A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4933", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.837247929249567, 45.802302352527192 ] } }, -{ "type": "Feature", "properties": { "id": "51", "nom": "Alsace", "desserte": "C16A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "821", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.86887175526848, 45.764085522775638 ] } }, -{ "type": "Feature", "properties": { "id": "92", "nom": "Avenue de l'Industrie", "desserte": "76A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "857", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.922312026617804, 45.68042320773948 ] } }, -{ "type": "Feature", "properties": { "id": "122", "nom": "Bas des Chassagnes", "desserte": "17B:A,63A:A,C10A:A,C7B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "873", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.811029436486279, 45.720929561251609 ] } }, -{ "type": "Feature", "properties": { "id": "198", "nom": "Berthaudiere", "desserte": "67A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "929", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.969058110048704, 45.775598874248153 ] } }, -{ "type": "Feature", "properties": { "id": "578", "nom": "Colin", "desserte": "37A:A,69A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1224", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.874449800255841, 45.776552415283682 ] } }, -{ "type": "Feature", "properties": { "id": "918", "nom": "Feyzin Les Razes", "desserte": "60A:A,60A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1415", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.849288497467978, 45.66620155988344 ] } }, -{ "type": "Feature", "properties": { "id": "1139", "nom": "Hauteclair", "desserte": "S9A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1537", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.789681085218659, 45.69239565922711 ] } }, -{ "type": "Feature", "properties": { "id": "1266", "nom": "Joannes Masset", "desserte": "19A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1619", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.800852584972841, 45.769568503541478 ] } }, -{ "type": "Feature", "properties": { "id": "1572", "nom": "Le Rontey", "desserte": "85A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1881", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 5.00537505687661, 45.781457143746273 ] } }, -{ "type": "Feature", "properties": { "id": "3411", "nom": "Z.I. Rillieux Mercieres", "desserte": "ZI4A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3044", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.87829506355242, 45.81522533654099 ] } }, -{ "type": "Feature", "properties": { "id": "3496", "nom": "Langevin - Blanqui", "desserte": "93A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3075", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.875774868369706, 45.700767676233333 ] } }, -{ "type": "Feature", "properties": { "id": "10300", "nom": "Mas du Taureau", "desserte": "52A:A,C3A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2166", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.911284987664556, 45.785192485599929 ] } }, -{ "type": "Feature", "properties": { "id": "10427", "nom": "Croix-Rousse Deleuvre", "desserte": "C18A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3420", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.825283664042389, 45.783638544287754 ] } }, -{ "type": "Feature", "properties": { "id": "10448", "nom": "Les Marsaults", "desserte": "3A:R,GE4A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3441", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.757498964158331, 45.823131151576895 ] } }, -{ "type": "Feature", "properties": { "id": "10891", "nom": "Cours Aristide Briand", "desserte": "9A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1239", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.843964048524107, 45.782790992871931 ] } }, -{ "type": "Feature", "properties": { "id": "11728", "nom": "Decines Esplanade", "desserte": "323A:R,57A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3100", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.974626537131096, 45.7723446226859 ] } }, -{ "type": "Feature", "properties": { "id": "12000", "nom": "Beaunant", "desserte": "C19A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3181", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.777943945030012, 45.728376494553025 ] } }, -{ "type": "Feature", "properties": { "id": "12126", "nom": "Porte de Lyon", "desserte": "118A:R,61A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2476", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.763630585164895, 45.821644978463709 ] } }, -{ "type": "Feature", "properties": { "id": "30390", "nom": "Duchere Les Erables", "desserte": "66A:A,C14A:A,S11A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3785", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.793872026467774, 45.782601990513129 ] } }, -{ "type": "Feature", "properties": { "id": "31502", "nom": "Point du Jour", "desserte": "45A:A,90A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2461", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.79677405610011, 45.756597425201271 ] } }, -{ "type": "Feature", "properties": { "id": "32105", "nom": "Quai Claude Bernard", "desserte": "T1A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "468", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.83521295914954, 45.749648002736933 ] } }, -{ "type": "Feature", "properties": { "id": "32110", "nom": "Guillotière - Gabriel Péri", "desserte": "T1A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "95", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.842549812177606, 45.75489757670541 ] } }, -{ "type": "Feature", "properties": { "id": "45402", "nom": "Thurins Mairie", "desserte": "11B:A,11B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4947", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.6406501779263, 45.682983256498083 ] } }, -{ "type": "Feature", "properties": { "id": "45420", "nom": "Joanna", "desserte": "11B:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4952", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.691265495336918, 45.71653903495428 ] } }, -{ "type": "Feature", "properties": { "id": "46033", "nom": "Stade de Gerland", "desserte": "302A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "311", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.831337682020671, 45.727364050309333 ] } }, -{ "type": "Feature", "properties": { "id": "46058", "nom": "Flachet", "desserte": "301A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "49", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.890050658958257, 45.767620447582352 ] } }, -{ "type": "Feature", "properties": { "id": "183", "nom": "Benoit Bernard", "desserte": "35A:A,C12A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "917", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.852192942250558, 45.738248922575551 ] } }, -{ "type": "Feature", "properties": { "id": "351", "nom": "Carrefour Liberation", "desserte": "5A:R,73A:R,C21A:A,C21A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1035", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.7753121443416, 45.75861389278456 ] } }, -{ "type": "Feature", "properties": { "id": "603", "nom": "Cordeliers", "desserte": "171:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "28", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.838178112171089, 45.764764603905505 ] } }, -{ "type": "Feature", "properties": { "id": "641", "nom": "Croix des Rameaux", "desserte": "22A:A,23A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1259", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.79663372556169, 45.815872570270685 ] } }, -{ "type": "Feature", "properties": { "id": "688", "nom": "De Gaulle - Pont SNCF", "desserte": "73A:R,C21A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1288", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.770753942672788, 45.75469840043808 ] } }, -{ "type": "Feature", "properties": { "id": "693", "nom": "Debrousse", "desserte": "C19A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1290", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.812658687050715, 45.748399242364599 ] } }, -{ "type": "Feature", "properties": { "id": "778", "nom": "Duchere Piscine", "desserte": "66A:A,C14A:A,C6B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1339", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.799843346217369, 45.787529787821583 ] } }, -{ "type": "Feature", "properties": { "id": "853", "nom": "Entree de Decines", "desserte": "67A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1395", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.934557157331896, 45.767436702568794 ] } }, -{ "type": "Feature", "properties": { "id": "877", "nom": "Etoile d'Alai", "desserte": "73A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1397", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.769140352440663, 45.753392239671889 ] } }, -{ "type": "Feature", "properties": { "id": "919", "nom": "Filature", "desserte": "69A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1418", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.884539769185354, 45.77776414904649 ] } }, -{ "type": "Feature", "properties": { "id": "1087", "nom": "Grange Blanche", "desserte": "24A:A,24A:R,C8A:A,C8A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "79", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.878844618278547, 45.742779073753567 ] } }, -{ "type": "Feature", "properties": { "id": "1472", "nom": "La Vigie", "desserte": "90A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1793", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.809915031124079, 45.766020842209095 ] } }, -{ "type": "Feature", "properties": { "id": "1848", "nom": "Maçonniere", "desserte": "15A:A,15A:R,18B:A,18B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2107", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.80417573849998, 45.647828612917635 ] } }, -{ "type": "Feature", "properties": { "id": "2941", "nom": "Tache Velin", "desserte": "35A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2808", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.871419423157207, 45.716105277120725 ] } }, -{ "type": "Feature", "properties": { "id": "3017", "nom": "UFR Lyon-Sud", "desserte": "88B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2871", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.809320327777345, 45.705006810324726 ] } }, -{ "type": "Feature", "properties": { "id": "3508", "nom": "St Irenee - Croix Blanche", "desserte": "46A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3071", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.809086467406506, 45.755597834703742 ] } }, -{ "type": "Feature", "properties": { "id": "10385", "nom": "Choulans - Tourelles", "desserte": "448A:A,46A:R,49A:R,55A:R,C19A:R,C20A:R,C21A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3415", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.818862154337854, 45.752816783887567 ] } }, -{ "type": "Feature", "properties": { "id": "10449", "nom": "Dardilly Le Jubin", "desserte": "3A:A,3A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3443", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.761354220103171, 45.81771945578916 ] } }, -{ "type": "Feature", "properties": { "id": "10478", "nom": "Sept Chemins", "desserte": "79A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2652", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.932538686623068, 45.744835563734277 ] } }, -{ "type": "Feature", "properties": { "id": "10601", "nom": "Chalinel", "desserte": "2A:R,S10A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3495", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.824884036465376, 45.800612901590853 ] } }, -{ "type": "Feature", "properties": { "id": "10895", "nom": "Petit Versailles", "desserte": "9A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2405", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.853789786858046, 45.788341006626347 ] } }, -{ "type": "Feature", "properties": { "id": "10919", "nom": "Les Lilas", "desserte": "43A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3546", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.83075145184682, 45.892811283813963 ] } }, -{ "type": "Feature", "properties": { "id": "11927", "nom": "Provinces - Chavril", "desserte": "17B:A,49A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3164", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.800057110563529, 45.747497381638517 ] } }, -{ "type": "Feature", "properties": { "id": "43557", "nom": "Les Meurieres", "desserte": "C25B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2004", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.949105237438064, 45.680810205313065 ] } }, -{ "type": "Feature", "properties": { "id": "43638", "nom": "Croix Rouge", "desserte": "S9A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4869", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.786292969298368, 45.701695735236569 ] } }, -{ "type": "Feature", "properties": { "id": "45423", "nom": "Parc d'activites des Lats", "desserte": "11B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4954", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.687358647076986, 45.701472969034164 ] } }, -{ "type": "Feature", "properties": { "id": "45805", "nom": "Lortet", "desserte": "C7B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3148", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.840071147145887, 45.742210462039466 ] } }, -{ "type": "Feature", "properties": { "id": "624", "nom": "Craponne Centre", "desserte": "73A:R,C24B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1245", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.723849104348762, 45.747325980977209 ] } }, -{ "type": "Feature", "properties": { "id": "886", "nom": "Evellier", "desserte": "C24B:A,C24B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1398", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.694659528510631, 45.748987093916135 ] } }, -{ "type": "Feature", "properties": { "id": "1039", "nom": "Genay Madone", "desserte": "43A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1472", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.835301794663826, 45.895986002982234 ] } }, -{ "type": "Feature", "properties": { "id": "1484", "nom": "Garibaldi - Lafayette", "desserte": "448A:A,C13A:R,C3A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1809", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.853828667795389, 45.763613693653141 ] } }, -{ "type": "Feature", "properties": { "id": "1636", "nom": "Fort de Vaise – Les Carriers", "desserte": "90A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1934", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.80918709775821, 45.770141373211999 ] } }, -{ "type": "Feature", "properties": { "id": "1862", "nom": "Mairie de Villeurbanne", "desserte": "69A:R,C26A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2110", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.880237230536955, 45.766510998570197 ] } }, -{ "type": "Feature", "properties": { "id": "2948", "nom": "Tassin Combattants", "desserte": "86A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2811", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.75835067217194, 45.769125102121578 ] } }, -{ "type": "Feature", "properties": { "id": "10200", "nom": "Residence E.Charret", "desserte": "33A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3326", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.829226566291483, 45.781786873924197 ] } }, -{ "type": "Feature", "properties": { "id": "10346", "nom": "Halle Tony Garnier", "desserte": "60A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "782", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.82419201736972, 45.731348163747903 ] } }, -{ "type": "Feature", "properties": { "id": "10483", "nom": "Vaulx-en-Velin La Grappiniere", "desserte": "37A:R,7A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3454", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.912088699683963, 45.788342580025891 ] } }, -{ "type": "Feature", "properties": { "id": "10689", "nom": "St Nizier", "desserte": "S1A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3517", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.834279070964085, 45.764716392385502 ] } }, -{ "type": "Feature", "properties": { "id": "10728", "nom": "Parc de Lacroix-Laval", "desserte": "98A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2349", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.71728705174609, 45.78464753767058 ] } }, -{ "type": "Feature", "properties": { "id": "10896", "nom": "Les Eaux", "desserte": "9A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1958", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.857292856953533, 45.79009870542648 ] } }, -{ "type": "Feature", "properties": { "id": "10897", "nom": "Les Eaux", "desserte": "9A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1959", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.85805796577127, 45.789667473465379 ] } }, -{ "type": "Feature", "properties": { "id": "11279", "nom": "1ere D.F.L.", "desserte": "46A:A,49A:A,C20A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3472", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.814218288479827, 45.751056152455952 ] } }, -{ "type": "Feature", "properties": { "id": "12018", "nom": "Schonberg", "desserte": "S10A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3191", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.827057114645643, 45.799504317899867 ] } }, -{ "type": "Feature", "properties": { "id": "12127", "nom": "Maison Carree", "desserte": "61A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3230", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.761825138330319, 45.824892088241981 ] } }, -{ "type": "Feature", "properties": { "id": "30541", "nom": "Trion", "desserte": "66A:R,90A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2861", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.814261816048562, 45.757734002356173 ] } }, -{ "type": "Feature", "properties": { "id": "32111", "nom": "Guillotière - Gabriel Péri", "desserte": "T1A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "93", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.842440904729352, 45.754934392387348 ] } }, -{ "type": "Feature", "properties": { "id": "32153", "nom": "Bachut - Mairie du 8ème", "desserte": "T2:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "395", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.868234847900658, 45.736882202939427 ] } }, -{ "type": "Feature", "properties": { "id": "32245", "nom": "Leclerc - Nadaud", "desserte": "C22A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3873", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.831459622020523, 45.744517488198056 ] } }, -{ "type": "Feature", "properties": { "id": "39337", "nom": "Billon", "desserte": "15A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4534", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.820834191935378, 45.666065699325991 ] } }, -{ "type": "Feature", "properties": { "id": "43637", "nom": "Beauregard", "desserte": "S9A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4868", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.789095421565825, 45.696260897624214 ] } }, -{ "type": "Feature", "properties": { "id": "45432", "nom": "La Valotte", "desserte": "11B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4964", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.658361435521091, 45.679107689840173 ] } }, -{ "type": "Feature", "properties": { "id": "46124", "nom": "Gare d'Oullins", "desserte": "88B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "6209", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.81501138934332, 45.716309820218939 ] } }, -{ "type": "Feature", "properties": { "id": "46138", "nom": "Roux Rivoire", "desserte": "80A:A,80A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5124", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.797141373938948, 45.610752679145946 ] } }, -{ "type": "Feature", "properties": { "id": "46139", "nom": "Grigny Jean Moulin", "desserte": "80A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5127", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.790594320714621, 45.60661070773326 ] } }, -{ "type": "Feature", "properties": { "id": "611", "nom": "Cote Berthaud", "desserte": "18B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1237", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.828929703567308, 45.671628682819403 ] } }, -{ "type": "Feature", "properties": { "id": "887", "nom": "Falsan", "desserte": "31A:A,S10A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1400", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.834631572643572, 45.80448484932576 ] } }, -{ "type": "Feature", "properties": { "id": "988", "nom": "Gabriel Rosset", "desserte": "C22A:R,ZI6A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1447", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.841704431404255, 45.729797419317329 ] } }, -{ "type": "Feature", "properties": { "id": "1131", "nom": "Guimet", "desserte": "40A:A,70A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1529", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.839616553700796, 45.8551861222589 ] } }, -{ "type": "Feature", "properties": { "id": "1141", "nom": "Hauteroche Centre", "desserte": "17B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1539", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.827735218484984, 45.699729746231057 ] } }, -{ "type": "Feature", "properties": { "id": "1155", "nom": "Henri Gorjus", "desserte": "2A:A,C18A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1546", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.823776048345358, 45.77960341800641 ] } }, -{ "type": "Feature", "properties": { "id": "1269", "nom": "Joliot Curie", "desserte": "C21A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1622", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.78845624895794, 45.754907199613669 ] } }, -{ "type": "Feature", "properties": { "id": "1531", "nom": "Le Chene Rond", "desserte": "86A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1844", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.741405521253569, 45.79515979152989 ] } }, -{ "type": "Feature", "properties": { "id": "2993", "nom": "Tonkin", "desserte": "69A:A,C17A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2845", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.865104375704993, 45.778374460600311 ] } }, -{ "type": "Feature", "properties": { "id": "3085", "nom": "Vaulx Thibaude", "desserte": "52A:R,C8A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2924", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.929496556858053, 45.778499523216013 ] } }, -{ "type": "Feature", "properties": { "id": "3513", "nom": "Gymnase Alain Colas", "desserte": "39A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3082", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.875207754588618, 45.688466726584501 ] } }, -{ "type": "Feature", "properties": { "id": "10148", "nom": "Bron Hôtel de Ville", "desserte": "24A:R,79A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "458", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.90838900014898, 45.733176579379212 ] } }, -{ "type": "Feature", "properties": { "id": "10487", "nom": "Cachin - De Gaulle", "desserte": "57A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3460", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.940899146950401, 45.783213584131495 ] } }, -{ "type": "Feature", "properties": { "id": "10488", "nom": "Pont de Decines", "desserte": "57A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3461", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.949884282230905, 45.77790098733437 ] } }, -{ "type": "Feature", "properties": { "id": "10903", "nom": "Leclerc - Girondins", "desserte": "60A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3534", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.826745772361463, 45.740067604466709 ] } }, -{ "type": "Feature", "properties": { "id": "10913", "nom": "Z.I. Thimonnier", "desserte": "43A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3539", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.821735573281579, 45.8882032736499 ] } }, -{ "type": "Feature", "properties": { "id": "10954", "nom": "Place des Tapis", "desserte": "2A:A,33A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3553", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.830388725413805, 45.775073200268267 ] } }, -{ "type": "Feature", "properties": { "id": "11360", "nom": "Jean Jacques Rousseau", "desserte": "62A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3665", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.942212448234044, 45.700152944833114 ] } }, -{ "type": "Feature", "properties": { "id": "12163", "nom": "Les Bles d'Or", "desserte": "87A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3240", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.94527108313965, 45.667370159730417 ] } }, -{ "type": "Feature", "properties": { "id": "32296", "nom": "Marne - Montferrat", "desserte": "24A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3876", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.916932068138459, 45.739929575299762 ] } }, -{ "type": "Feature", "properties": { "id": "32302", "nom": "Bel Air - Les Brosses", "desserte": "C17A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "554", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.909932610941341, 45.758219134240584 ] } }, -{ "type": "Feature", "properties": { "id": "33212", "nom": "St Priest Hôtel de Ville", "desserte": "T2:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "442", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.936856950119291, 45.695093073173823 ] } }, -{ "type": "Feature", "properties": { "id": "33213", "nom": "Esplanade des Arts", "desserte": "T2:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "431", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.940622164244387, 45.694453276034096 ] } }, -{ "type": "Feature", "properties": { "id": "33264", "nom": "Vieux Lyon", "desserte": "304:A", "pmr": "t", "ascenseur": "t", "escalator": "t", "gid": "218", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.826539572086002, 45.760128223905106 ] } }, -{ "type": "Feature", "properties": { "id": "33469", "nom": "Vaulx HDV Campus", "desserte": "C3A:A,C3A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2900", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.919988935187883, 45.776567250176583 ] } }, -{ "type": "Feature", "properties": { "id": "41057", "nom": "Putet", "desserte": "S9A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4630", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.785778928699162, 45.704002198970358 ] } }, -{ "type": "Feature", "properties": { "id": "45833", "nom": "Rue de Sete", "desserte": "60A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4571", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.841491622156411, 45.713258070753909 ] } }, -{ "type": "Feature", "properties": { "id": "46169", "nom": "Garibaldi Paul Bert", "desserte": "C25B:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5135", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.852593241658708, 45.756808102573338 ] } }, -{ "type": "Feature", "properties": { "id": "46170", "nom": "Part-Dieu - Servient", "desserte": "C25B:A,C25B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "428", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.852214214635634, 45.760322124380302 ] } }, -{ "type": "Feature", "properties": { "id": "52", "nom": "Alsace", "desserte": "27A:A,448A:A,C3A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "822", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.870372443689232, 45.763718617285129 ] } }, -{ "type": "Feature", "properties": { "id": "123", "nom": "Bas des Chassagnes", "desserte": "17B:R,63A:R,C10A:R,C7B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "874", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.81101982680129, 45.720472700471568 ] } }, -{ "type": "Feature", "properties": { "id": "808", "nom": "Duquesne - Foch", "desserte": "C6B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1356", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.842685177776138, 45.772513143802406 ] } }, -{ "type": "Feature", "properties": { "id": "840", "nom": "Ecully Le Trouillat", "desserte": "3A:R,55A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1378", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.774397772429782, 45.775996623854788 ] } }, -{ "type": "Feature", "properties": { "id": "920", "nom": "Filature", "desserte": "69A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1417", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.884537269658559, 45.77771019759458 ] } }, -{ "type": "Feature", "properties": { "id": "977", "nom": "Francis Poulenc", "desserte": "68B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1437", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.962321696125084, 45.747131339973578 ] } }, -{ "type": "Feature", "properties": { "id": "1166", "nom": "Hippodrome Loup Pendu", "desserte": "ZI4A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1552", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.885382705761698, 45.815109804103244 ] } }, -{ "type": "Feature", "properties": { "id": "1555", "nom": "Le Pelet", "desserte": "78B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1867", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.794661343498504, 45.655202518187515 ] } }, -{ "type": "Feature", "properties": { "id": "1637", "nom": "Fort de Vaise – Les Carriers", "desserte": "90A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1933", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.809375143364171, 45.77035316848815 ] } }, -{ "type": "Feature", "properties": { "id": "1805", "nom": "Longefer", "desserte": "24A:R,C22A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2080", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.881756099531395, 45.74012971114346 ] } }, -{ "type": "Feature", "properties": { "id": "2994", "nom": "Tourvielle", "desserte": "45A:A,90A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2849", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.795589280270534, 45.754256113347999 ] } }, -{ "type": "Feature", "properties": { "id": "3131", "nom": "Alfred de Vigny", "desserte": "62A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "444", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.93675564040264, 45.699397442962088 ] } }, -{ "type": "Feature", "properties": { "id": "10435", "nom": "Piscine de Vaise", "desserte": "19A:A,3A:A,66A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3425", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.796806759700158, 45.770845362772924 ] } }, -{ "type": "Feature", "properties": { "id": "10489", "nom": "Pont de Decines", "desserte": "57A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3462", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.950262954550169, 45.777748150136595 ] } }, -{ "type": "Feature", "properties": { "id": "10691", "nom": "Terreaux", "desserte": "S1A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2829", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.832921305101115, 45.766537821857725 ] } }, -{ "type": "Feature", "properties": { "id": "12180", "nom": "Place de Paris", "desserte": "2A:A,31A:A,448A:A,C14A:A,C6B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3247", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.803589849734254, 45.779841638641287 ] } }, -{ "type": "Feature", "properties": { "id": "30048", "nom": "Le Morlet", "desserte": "83A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "6313", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.93578930694839, 45.801677150553779 ] } }, -{ "type": "Feature", "properties": { "id": "30049", "nom": "Le Morlet", "desserte": "83A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "6314", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.935953034246295, 45.801601350388601 ] } }, -{ "type": "Feature", "properties": { "id": "30542", "nom": "St Rambert Les Rivieres", "desserte": "S7A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2770", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.8367275589714, 45.807840697045506 ] } }, -{ "type": "Feature", "properties": { "id": "33767", "nom": "Perrache", "desserte": "60A:A,60A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "168", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.827136763445613, 45.749276079034601 ] } }, -{ "type": "Feature", "properties": { "id": "34231", "nom": "La Vernique", "desserte": "5A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1791", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.782739242679796, 45.77324094114536 ] } }, -{ "type": "Feature", "properties": { "id": "34434", "nom": "Esplanade des Arts", "desserte": "62A:R,C25B:A,ZI8A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "435", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.941143010359984, 45.694110732405868 ] } }, -{ "type": "Feature", "properties": { "id": "35256", "nom": "BioMerieux", "desserte": "98A:A,GE6A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4011", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.708483018061756, 45.780190316857016 ] } }, -{ "type": "Feature", "properties": { "id": "35534", "nom": "La Ferriere", "desserte": "97A:A,97A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4039", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.868557026533779, 45.88189351861763 ] } }, -{ "type": "Feature", "properties": { "id": "35934", "nom": "Place Ambroise Courtois", "desserte": "C16A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4054", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.870684997503943, 45.743980749217066 ] } }, -{ "type": "Feature", "properties": { "id": "36094", "nom": "Décines Grand Large", "desserte": "16A:A,57A:A,76A:A,79A:A,85A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "583", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.97573067797058, 45.77471313629826 ] } }, -{ "type": "Feature", "properties": { "id": "36145", "nom": "Grenoble", "desserte": "67A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4080", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 5.009172392167411, 45.760851654247389 ] } }, -{ "type": "Feature", "properties": { "id": "46173", "nom": "Lardillet", "desserte": "S9A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1824", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.791149441982155, 45.686638890047661 ] } }, -{ "type": "Feature", "properties": { "id": "73", "nom": "Aqueducs de Beaunant", "desserte": "11B:R,12B:R,14B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "842", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.779962332848506, 45.724336141861244 ] } }, -{ "type": "Feature", "properties": { "id": "657", "nom": "Curis la Planche", "desserte": "84A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1268", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.821605986354629, 45.871670810935086 ] } }, -{ "type": "Feature", "properties": { "id": "1122", "nom": "Saxe - Préfecture", "desserte": "C9A:A,C9A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "421", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.845211759352695, 45.760224079826259 ] } }, -{ "type": "Feature", "properties": { "id": "1135", "nom": "Hameau du Puy d'Or", "desserte": "21A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1534", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.775217592480991, 45.819732744939685 ] } }, -{ "type": "Feature", "properties": { "id": "1638", "nom": "Les Cedres", "desserte": "68B:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1935", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.955440895150731, 45.740333851655642 ] } }, -{ "type": "Feature", "properties": { "id": "2580", "nom": "Republique - Reaux", "desserte": "28A:A,R4B:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5442", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 5.007551160471777, 45.730113033446507 ] } }, -{ "type": "Feature", "properties": { "id": "2995", "nom": "Tourvielle", "desserte": "45A:R,90A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2850", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.795918043350118, 45.754131897504116 ] } }, -{ "type": "Feature", "properties": { "id": "3087", "nom": "Velten", "desserte": "31A:A,43A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2925", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.833522268269477, 45.799045764662019 ] } }, -{ "type": "Feature", "properties": { "id": "3413", "nom": "Z.I. Rillieux Hippodrome", "desserte": "ZI4A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3048", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.880788260089342, 45.815970040643982 ] } }, -{ "type": "Feature", "properties": { "id": "10386", "nom": "Vieux Lyon", "desserte": "31A:A,448A:A,C20A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "216", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.82771398229793, 45.759470560399926 ] } }, -{ "type": "Feature", "properties": { "id": "10653", "nom": "Place Burignat", "desserte": "85A:R,95A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3506", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 5.00044383450216, 45.766775194765394 ] } }, -{ "type": "Feature", "properties": { "id": "10844", "nom": "Craponne Val d'Yzeron", "desserte": "C24B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "715", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.71610159173941, 45.737922715117207 ] } }, -{ "type": "Feature", "properties": { "id": "36207", "nom": "Grigny Bel Air", "desserte": "80A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4102", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.786141134459656, 45.609628568496305 ] } }, -{ "type": "Feature", "properties": { "id": "36246", "nom": "Givors Leclerc", "desserte": "78B:A,80A:A,81A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4145", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.771004132463338, 45.588032728535225 ] } }, -{ "type": "Feature", "properties": { "id": "36266", "nom": "Gare de Grigny Le Sablon", "desserte": "80A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4163", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.794430861265934, 45.608303762315025 ] } }, -{ "type": "Feature", "properties": { "id": "36458", "nom": "Le Jayon", "desserte": "80A:A,80A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5410", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.781207095006769, 45.604785961500617 ] } }, -{ "type": "Feature", "properties": { "id": "36876", "nom": "Corbas Chateau d'Eau", "desserte": "87A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4235", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.905121493481462, 45.685472105202507 ] } }, -{ "type": "Feature", "properties": { "id": "41976", "nom": "Parc de Parilly", "desserte": "39A:A,39A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4672", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.892442753188429, 45.723603434474981 ] } }, -{ "type": "Feature", "properties": { "id": "41978", "nom": "Clos Verger", "desserte": "39A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4674", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.892548696526679, 45.718965342558214 ] } }, -{ "type": "Feature", "properties": { "id": "41980", "nom": "Anatole France", "desserte": "39A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "829", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.893857386101696, 45.721410882192885 ] } }, -{ "type": "Feature", "properties": { "id": "41994", "nom": "Cuire", "desserte": "33A:A,38A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "44", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.833687111363294, 45.785932927664192 ] } }, -{ "type": "Feature", "properties": { "id": "42102", "nom": "Pagere Vivaldi", "desserte": "24A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4699", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.915621214463668, 45.746521750023817 ] } }, -{ "type": "Feature", "properties": { "id": "42114", "nom": "Augagneur Servient", "desserte": "C9A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4701", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.840945704600899, 45.759734247273741 ] } }, -{ "type": "Feature", "properties": { "id": "42115", "nom": "Eiffel", "desserte": "ZI2A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4702", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 5.029273057244557, 45.781850093892558 ] } }, -{ "type": "Feature", "properties": { "id": "42296", "nom": "Crepet", "desserte": "C7B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4714", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.832798374211156, 45.739986341793703 ] } }, -{ "type": "Feature", "properties": { "id": "42297", "nom": "Crepet", "desserte": "C7B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4715", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.833414315208221, 45.739684333788894 ] } }, -{ "type": "Feature", "properties": { "id": "43816", "nom": "St Fons 4 Chemins", "desserte": "60A:R,93A:R,C12A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2704", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.856090138968882, 45.708250527234618 ] } }, -{ "type": "Feature", "properties": { "id": "43847", "nom": "Chemin de Crecy", "desserte": "23A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4895", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.804100548326909, 45.800974007910789 ] } }, -{ "type": "Feature", "properties": { "id": "46029", "nom": "Jean Macé", "desserte": "302A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "300", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.842361161084219, 45.746200884656417 ] } }, -{ "type": "Feature", "properties": { "id": "506", "nom": "Cimetiere de Cusset", "desserte": "448A:A,67A:A,83A:R,C15A:R,C8A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1155", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.911667728451899, 45.762320014278266 ] } }, -{ "type": "Feature", "properties": { "id": "579", "nom": "Colin", "desserte": "37A:R,69A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1223", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.874402962530857, 45.776652488357179 ] } }, -{ "type": "Feature", "properties": { "id": "580", "nom": "Colin", "desserte": "C17A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1222", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.874070509400296, 45.776696006329573 ] } }, -{ "type": "Feature", "properties": { "id": "612", "nom": "Cote Berthaud", "desserte": "18B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1238", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.829311620160037, 45.672124252856648 ] } }, -{ "type": "Feature", "properties": { "id": "810", "nom": "Duroc", "desserte": "448A:A,C13A:A,C18A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1358", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.817712180555431, 45.769086154723034 ] } }, -{ "type": "Feature", "properties": { "id": "828", "nom": "Ecole Veterinaire", "desserte": "98A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1369", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.708517463671036, 45.790116529884877 ] } }, -{ "type": "Feature", "properties": { "id": "902", "nom": "Felix Faure - Vivier Merle", "desserte": "C11A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "768", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.858759526439687, 45.753628661818283 ] } }, -{ "type": "Feature", "properties": { "id": "980", "nom": "Frere Benoit", "desserte": "45A:R,55A:A,90A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1439", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.795024020345261, 45.763764584395844 ] } }, -{ "type": "Feature", "properties": { "id": "1022", "nom": "Genas - Bonnevay", "desserte": "C8A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1467", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.908081340127888, 45.751627504263709 ] } }, -{ "type": "Feature", "properties": { "id": "1485", "nom": "Garibaldi - Lafayette", "desserte": "C3A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1808", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.852958736529468, 45.763714205914113 ] } }, -{ "type": "Feature", "properties": { "id": "2636", "nom": "Rouget de l'Isle", "desserte": "C11A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2600", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.867225199957056, 45.754572291525108 ] } }, -{ "type": "Feature", "properties": { "id": "2997", "nom": "Treve Oray", "desserte": "77A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2852", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.859991649739642, 45.850041025988951 ] } }, -{ "type": "Feature", "properties": { "id": "10450", "nom": "Dardilly Peupliers", "desserte": "89A:A,GE4A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3445", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.758352353094901, 45.814156791356481 ] } }, -{ "type": "Feature", "properties": { "id": "10476", "nom": "Halle Tony Garnier", "desserte": "C22A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "780", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.826435396716727, 45.73161839796613 ] } }, -{ "type": "Feature", "properties": { "id": "10855", "nom": "Pont Gallieni RG", "desserte": "60A:R,C22A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3531", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.833124194209637, 45.746919785241595 ] } }, -{ "type": "Feature", "properties": { "id": "11039", "nom": "Boris Vian", "desserte": "50A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3587", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.961293467371918, 45.696737453883941 ] } }, -{ "type": "Feature", "properties": { "id": "11215", "nom": "Maisons Neuves", "desserte": "69A:R,C9A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2120", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.87619261825687, 45.75635006192428 ] } }, -{ "type": "Feature", "properties": { "id": "11274", "nom": "Bron Jules Ferry", "desserte": "24A:R,C15A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3634", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.89615504882839, 45.732133087860561 ] } }, -{ "type": "Feature", "properties": { "id": "11284", "nom": "College Jean Vilar", "desserte": "7A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3639", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.903012984310554, 45.778594696654984 ] } }, -{ "type": "Feature", "properties": { "id": "11361", "nom": "Jean Jacques Rousseau", "desserte": "62A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3666", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.941994300943104, 45.700158012936242 ] } }, -{ "type": "Feature", "properties": { "id": "36877", "nom": "Corbas Chateau d'Eau", "desserte": "87A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4236", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.904762870225466, 45.68576836540219 ] } }, -{ "type": "Feature", "properties": { "id": "36940", "nom": "Freres Perret", "desserte": "ZI6A:A,ZI6A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4241", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.845960507995696, 45.690367240117432 ] } }, -{ "type": "Feature", "properties": { "id": "40847", "nom": "Belle Etoile", "desserte": "ZI6A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3140", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.846434092223693, 45.684694888222303 ] } }, -{ "type": "Feature", "properties": { "id": "40856", "nom": "19 Mars 1962", "desserte": "60A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4606", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.859801954756459, 45.700093032308871 ] } }, -{ "type": "Feature", "properties": { "id": "40857", "nom": "19 Mars 1962", "desserte": "60A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4607", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.859895491171833, 45.700171938472899 ] } }, -{ "type": "Feature", "properties": { "id": "40898", "nom": "Ramboz Bitumes", "desserte": "ZI6A:A,ZI6A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4613", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.846160182979435, 45.680092410921127 ] } }, -{ "type": "Feature", "properties": { "id": "41014", "nom": "Gambetta - Picasso", "desserte": "85A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4616", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.995496591933514, 45.763147705304249 ] } }, -{ "type": "Feature", "properties": { "id": "41055", "nom": "Cimetiere de St Genis", "desserte": "S9A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4629", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.787922926726909, 45.70050799947628 ] } }, -{ "type": "Feature", "properties": { "id": "106", "nom": "Bachut - Mairie du 8ème", "desserte": "296:A,C25B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "390", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.86859328720053, 45.737078984793861 ] } }, -{ "type": "Feature", "properties": { "id": "108", "nom": "Badel", "desserte": "72B:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "865", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.702766115390267, 45.770976253383708 ] } }, -{ "type": "Feature", "properties": { "id": "581", "nom": "Colin", "desserte": "C17A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1225", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.874210631225505, 45.776944877088006 ] } }, -{ "type": "Feature", "properties": { "id": "813", "nom": "Emile Vial", "desserte": "24A:A,25A:A,68B:A,ZI5B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1361", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.929389972620697, 45.745133378284969 ] } }, -{ "type": "Feature", "properties": { "id": "1097", "nom": "Grange Blanche - Viala", "desserte": "C26A:R,C8A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1506", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.885599354558432, 45.744282107370992 ] } }, -{ "type": "Feature", "properties": { "id": "1132", "nom": "Guimet", "desserte": "40A:R,70A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1530", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.839907944403111, 45.855926744239774 ] } }, -{ "type": "Feature", "properties": { "id": "1136", "nom": "Hameau du Puy d'Or", "desserte": "21A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1533", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.775143617340975, 45.819806358435777 ] } }, -{ "type": "Feature", "properties": { "id": "1473", "nom": "La Villette", "desserte": "25A:A,C13A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1796", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.862975122134194, 45.756666302570046 ] } }, -{ "type": "Feature", "properties": { "id": "1591", "nom": "Le Vernay - Ombrosa", "desserte": "40A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1895", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.842910357085335, 45.804273466551081 ] } }, -{ "type": "Feature", "properties": { "id": "10201", "nom": "Residence E.Charret", "desserte": "33A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3325", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.829162116995032, 45.781500266713792 ] } }, -{ "type": "Feature", "properties": { "id": "10220", "nom": "Chemin de Montgay", "desserte": "33A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3335", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.861528901857062, 45.824631668823912 ] } }, -{ "type": "Feature", "properties": { "id": "10387", "nom": "Vieux Lyon", "desserte": "27A:A,27A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "217", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.826918655900514, 45.760082280867209 ] } }, -{ "type": "Feature", "properties": { "id": "10845", "nom": "Craponne Val d'Yzeron", "desserte": "73A:R,C24B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "714", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.71650203526616, 45.737968227846075 ] } }, -{ "type": "Feature", "properties": { "id": "10898", "nom": "St Clair - Square Brosset", "desserte": "9A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2692", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.860197140873352, 45.791140649797363 ] } }, -{ "type": "Feature", "properties": { "id": "10955", "nom": "Place des Tapis", "desserte": "2A:R,33A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3552", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.830634525847816, 45.774536672183409 ] } }, -{ "type": "Feature", "properties": { "id": "10983", "nom": "Cedres", "desserte": "70A:R,S5A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3559", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.856514926551529, 45.807659686771025 ] } }, -{ "type": "Feature", "properties": { "id": "11286", "nom": "Clinique du Grand Large", "desserte": "57A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3642", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.970860295858533, 45.771595872563076 ] } }, -{ "type": "Feature", "properties": { "id": "11317", "nom": "Leclerc - Girard", "desserte": "60A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3647", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.823699199847247, 45.734095421116599 ] } }, -{ "type": "Feature", "properties": { "id": "11717", "nom": "Francheville Doulline", "desserte": "C20A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3274", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.761643936924953, 45.73763185345117 ] } }, -{ "type": "Feature", "properties": { "id": "11738", "nom": "Gare Part-Dieu Villette", "desserte": "296:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "538", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.862930110446558, 45.760726885212179 ] } }, -{ "type": "Feature", "properties": { "id": "11844", "nom": "Paul Marcellin", "desserte": "C8A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3131", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.92924216321279, 45.784779735975178 ] } }, -{ "type": "Feature", "properties": { "id": "37014", "nom": "Hopital Lyon Sud", "desserte": "C7B:A,C7B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1569", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.806342292789196, 45.699617815891706 ] } }, -{ "type": "Feature", "properties": { "id": "37098", "nom": "Champagne Lanessan", "desserte": "21A:R,61A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4254", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.794711369444838, 45.793033860636434 ] } }, -{ "type": "Feature", "properties": { "id": "37166", "nom": "Vaulx Thibaude", "desserte": "ZI3A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2922", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.93119695217572, 45.778820317597948 ] } }, -{ "type": "Feature", "properties": { "id": "43059", "nom": "Collège Bellecombe", "desserte": "27A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "358", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.863725608979924, 45.764606531528862 ] } }, -{ "type": "Feature", "properties": { "id": "43301", "nom": "Centre commercial Sept Chemins", "desserte": "52A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4833", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.931426876583826, 45.746886609083425 ] } }, -{ "type": "Feature", "properties": { "id": "44320", "nom": "Marcy l'Orme", "desserte": "GE6A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2143", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.706500101064652, 45.779430211659751 ] } }, -{ "type": "Feature", "properties": { "id": "46175", "nom": "Part-Dieu - Servient", "desserte": "C9A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "427", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.851363503632514, 45.76060851995603 ] } }, -{ "type": "Feature", "properties": { "id": "75", "nom": "Arago", "desserte": "C11A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "844", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.884821204092145, 45.758017803122705 ] } }, -{ "type": "Feature", "properties": { "id": "146", "nom": "Bechevelin", "desserte": "35A:A,35A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "892", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.838912910779881, 45.748969163057851 ] } }, -{ "type": "Feature", "properties": { "id": "184", "nom": "Benoit Bernard", "desserte": "C12A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "916", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.852188320536156, 45.738429050187044 ] } }, -{ "type": "Feature", "properties": { "id": "542", "nom": "Claudius Collonge", "desserte": "63A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1185", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.820836354234928, 45.74812853819801 ] } }, -{ "type": "Feature", "properties": { "id": "701", "nom": "Decines Gare", "desserte": "67A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1300", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.952193218806345, 45.769916814780721 ] } }, -{ "type": "Feature", "properties": { "id": "725", "nom": "Demi-Lune Vauboin", "desserte": "5A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1312", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.781938268466317, 45.764482413345753 ] } }, -{ "type": "Feature", "properties": { "id": "779", "nom": "Duchere Piscine", "desserte": "66A:R,C14A:R,C6B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1340", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.799517545975093, 45.787149885830402 ] } }, -{ "type": "Feature", "properties": { "id": "789", "nom": "Duclos", "desserte": "111A:R,112A:R,39A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1343", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.887770438490438, 45.697380983680034 ] } }, -{ "type": "Feature", "properties": { "id": "829", "nom": "Ecole Veterinaire", "desserte": "72B:R,98A:R,GE6A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1368", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.70867016599678, 45.790077302171753 ] } }, -{ "type": "Feature", "properties": { "id": "925", "nom": "Fleurieu", "desserte": "40A:A,70A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1419", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.840541010647728, 45.863032687849355 ] } }, -{ "type": "Feature", "properties": { "id": "1040", "nom": "General Andre", "desserte": "C25B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1475", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.877945680102463, 45.727767285500256 ] } }, -{ "type": "Feature", "properties": { "id": "1644", "nom": "Les Chavannes", "desserte": "84A:A,84A:R,R2A:A,R2A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1941", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.796515804748113, 45.856389262022546 ] } }, -{ "type": "Feature", "properties": { "id": "1809", "nom": "Lorette", "desserte": "78B:A,C10A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2085", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.798123111823041, 45.707134309108724 ] } }, -{ "type": "Feature", "properties": { "id": "1813", "nom": "Louis Braille", "desserte": "C25B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2087", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.949489173414761, 45.69594192616195 ] } }, -{ "type": "Feature", "properties": { "id": "2660", "nom": "Rue du Sablon", "desserte": "C16A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2618", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.85657142281346, 45.719329173455669 ] } }, -{ "type": "Feature", "properties": { "id": "3401", "nom": "Castellane - Mont Blanc", "desserte": "S8A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3037", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.896973501482647, 45.811902821100247 ] } }, -{ "type": "Feature", "properties": { "id": "3414", "nom": "Z.I. Rillieux Hippodrome", "desserte": "ZI4A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3047", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.88060660052129, 45.816217191519328 ] } }, -{ "type": "Feature", "properties": { "id": "10530", "nom": "Dupuy", "desserte": "21A:A,GE4A:A,GE4A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3477", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.776887943026821, 45.802261476937055 ] } }, -{ "type": "Feature", "properties": { "id": "10599", "nom": "Plateaux de St Rambert", "desserte": "2A:A,2A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3493", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.826302991487713, 45.801800856962643 ] } }, -{ "type": "Feature", "properties": { "id": "10673", "nom": "Perrache", "desserte": "S1A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "171", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.826395572332919, 45.750228639541874 ] } }, -{ "type": "Feature", "properties": { "id": "11194", "nom": "Marius Grosso", "desserte": "16A:A,28A:R,ZI3A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2151", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.931037523381005, 45.763170339738409 ] } }, -{ "type": "Feature", "properties": { "id": "11318", "nom": "Leclerc - Girard", "desserte": "60A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3648", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.823805176781812, 45.734165081071026 ] } }, -{ "type": "Feature", "properties": { "id": "11321", "nom": "Parilly", "desserte": "448A:A,C25B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "144", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.888193057653042, 45.719811600145682 ] } }, -{ "type": "Feature", "properties": { "id": "37155", "nom": "10 Rue Saillant", "desserte": "ZI3A:R,ZI4A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4257", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.937730263457223, 45.774699515407065 ] } }, -{ "type": "Feature", "properties": { "id": "37408", "nom": "Manufacture Montluc", "desserte": "C25B:A,C7B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5865", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.858916250169342, 45.74975460689344 ] } }, -{ "type": "Feature", "properties": { "id": "37444", "nom": "Garibaldi - Gambetta", "desserte": "C25B:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5866", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.853567306970801, 45.751897161560812 ] } }, -{ "type": "Feature", "properties": { "id": "43935", "nom": "Hopital Croix-Rousse", "desserte": "33A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1558", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.829131200690523, 45.779682715637009 ] } }, -{ "type": "Feature", "properties": { "id": "46179", "nom": "Confluence Rambaud", "desserte": "S1A:A,S1A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5138", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.816178389996681, 45.733347434776149 ] } }, -{ "type": "Feature", "properties": { "id": "76", "nom": "Arago", "desserte": "C11A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "843", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.884174736714521, 45.757942462160244 ] } }, -{ "type": "Feature", "properties": { "id": "587", "nom": "Condorcet", "desserte": "C17A:R,C26A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "355", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.866177147078411, 45.779043401274109 ] } }, -{ "type": "Feature", "properties": { "id": "658", "nom": "Curis la Planche", "desserte": "84A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1267", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.823242795819041, 45.872246723778268 ] } }, -{ "type": "Feature", "properties": { "id": "989", "nom": "St Genis Gadagne", "desserte": "88B:A,88B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1452", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.795612413213594, 45.700681687945803 ] } }, -{ "type": "Feature", "properties": { "id": "1068", "nom": "Grand Trou", "desserte": "35A:A,C12A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1493", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.853163599933882, 45.735580806957749 ] } }, -{ "type": "Feature", "properties": { "id": "1089", "nom": "Grange Blanche", "desserte": "C22A:A,C22A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "70", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.878640832642492, 45.743098735060819 ] } }, -{ "type": "Feature", "properties": { "id": "1404", "nom": "La Grande Serve", "desserte": "60A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5163", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.850111632604441, 45.670444623525398 ] } }, -{ "type": "Feature", "properties": { "id": "3101", "nom": "Venissieux St Exupery", "desserte": "35A:R,54A:R,87A:R,ZI1A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2930", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.894512638787739, 45.698451591870203 ] } }, -{ "type": "Feature", "properties": { "id": "3119", "nom": "Viabert - Anatole France", "desserte": "C16A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2949", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.868008300936279, 45.766562346191535 ] } }, -{ "type": "Feature", "properties": { "id": "3136", "nom": "Gare d'Albigny-Neuville", "desserte": "43A:A,R2A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2967", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.835483683064621, 45.876476104052344 ] } }, -{ "type": "Feature", "properties": { "id": "3317", "nom": "Grand Chassagnon", "desserte": "93A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1486", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.86342045624843, 45.701964822931743 ] } }, -{ "type": "Feature", "properties": { "id": "10364", "nom": "Decines Verlaine", "desserte": "79A:R,ZI3A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3401", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.941506640710735, 45.75122593074061 ] } }, -{ "type": "Feature", "properties": { "id": "10486", "nom": "Cachin - De Gaulle", "desserte": "57A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3459", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.939892462351546, 45.783146903732515 ] } }, -{ "type": "Feature", "properties": { "id": "12005", "nom": "Mairie de St Rambert", "desserte": "S10A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3182", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.830150567913019, 45.798193531724571 ] } }, -{ "type": "Feature", "properties": { "id": "32154", "nom": "Jean XXIII - Maryse Bastié", "desserte": "T2:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "483", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.874555518878215, 45.740187374112701 ] } }, -{ "type": "Feature", "properties": { "id": "37445", "nom": "Garibaldi - Gambetta", "desserte": "C7B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5867", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.85322020884216, 45.751718708681302 ] } }, -{ "type": "Feature", "properties": { "id": "37455", "nom": "Ecully Le Trouillat", "desserte": "S15A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5848", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.774418292975284, 45.775879165628325 ] } }, -{ "type": "Feature", "properties": { "id": "37484", "nom": "Grandvaux - Prieure", "desserte": "S15A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5849", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.774470665167716, 45.772997715418839 ] } }, -{ "type": "Feature", "properties": { "id": "37496", "nom": "Dardilly Les Longes", "desserte": "61A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3249", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.74796343838314, 45.834965373746606 ] } }, -{ "type": "Feature", "properties": { "id": "37597", "nom": "Mairie St Cyr", "desserte": "S7A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4357", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.817797004833223, 45.815884340284363 ] } }, -{ "type": "Feature", "properties": { "id": "37627", "nom": "Grandvaux - Prieure", "desserte": "S15A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5850", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.774308793620538, 45.773118242343834 ] } }, -{ "type": "Feature", "properties": { "id": "37675", "nom": "Terres Plates", "desserte": "2EX:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4381", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.727293968490959, 45.743760355940779 ] } }, -{ "type": "Feature", "properties": { "id": "37685", "nom": "St Cyr Eglise", "desserte": "S7A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4387", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.819816952049282, 45.814435535222231 ] } }, -{ "type": "Feature", "properties": { "id": "37764", "nom": "St Priest Les Alpes", "desserte": "ZI1A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4406", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.932506084096317, 45.69345586145058 ] } }, -{ "type": "Feature", "properties": { "id": "37835", "nom": "La Fouillouse Acacias", "desserte": "50A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4035", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.976782224050549, 45.685688846223691 ] } }, -{ "type": "Feature", "properties": { "id": "37846", "nom": "Esplanade des Arts", "desserte": "50A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "433", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.940548391975876, 45.694574619884882 ] } }, -{ "type": "Feature", "properties": { "id": "37847", "nom": "Esplanade des Arts", "desserte": "50A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "434", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.940694708819778, 45.694409194032673 ] } }, -{ "type": "Feature", "properties": { "id": "38116", "nom": "Fauconnet", "desserte": "45A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4497", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.789092054807881, 45.750131779278249 ] } }, -{ "type": "Feature", "properties": { "id": "93", "nom": "Avenue de l'Industrie", "desserte": "76A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "856", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.921505906436699, 45.679937715413757 ] } }, -{ "type": "Feature", "properties": { "id": "94", "nom": "Avenue de la Paix", "desserte": "5A:A,86A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "859", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.748590097089035, 45.785581808040838 ] } }, -{ "type": "Feature", "properties": { "id": "109", "nom": "Badel", "desserte": "72B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "864", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.702477612645909, 45.770847321609189 ] } }, -{ "type": "Feature", "properties": { "id": "124", "nom": "Barolles Centre", "desserte": "12B:R,17B:A,78B:A,C10A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "875", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.785441858512065, 45.680535034384043 ] } }, -{ "type": "Feature", "properties": { "id": "1406", "nom": "La Grange", "desserte": "68B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1736", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.966083844222194, 45.744603828270328 ] } }, -{ "type": "Feature", "properties": { "id": "1622", "nom": "Les Battieres", "desserte": "65A:R,73A:R,C21A:A,C21A:R,C24B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1918", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.782226438911747, 45.754764070104073 ] } }, -{ "type": "Feature", "properties": { "id": "1702", "nom": "Les Hautpres", "desserte": "72B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1992", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.733898595896234, 45.75874083153743 ] } }, -{ "type": "Feature", "properties": { "id": "2063", "nom": "Montfort", "desserte": "21A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2264", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.752403919841379, 45.862746101510993 ] } }, -{ "type": "Feature", "properties": { "id": "2663", "nom": "Sablons", "desserte": "67A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2621", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.962976919596271, 45.773517837368921 ] } }, -{ "type": "Feature", "properties": { "id": "3402", "nom": "Castellane - Mont Blanc", "desserte": "S8A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3036", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.89736344808142, 45.811983949484542 ] } }, -{ "type": "Feature", "properties": { "id": "10477", "nom": "Halle Tony Garnier", "desserte": "C22A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "779", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.826225000912757, 45.73168112325601 ] } }, -{ "type": "Feature", "properties": { "id": "11099", "nom": "Lycee Branly", "desserte": "90A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3607", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.792732321231175, 45.753049518660383 ] } }, -{ "type": "Feature", "properties": { "id": "11374", "nom": "Albert Ferrus", "desserte": "87A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3669", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.942394858006749, 45.66437654792891 ] } }, -{ "type": "Feature", "properties": { "id": "11928", "nom": "Provinces - Chavril", "desserte": "17B:R,49A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3165", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.800271471856185, 45.747690699573489 ] } }, -{ "type": "Feature", "properties": { "id": "12139", "nom": "St Abdon", "desserte": "78B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2685", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.793646476774477, 45.66094038819638 ] } }, -{ "type": "Feature", "properties": { "id": "12183", "nom": "Dardilly Les Longes", "desserte": "61A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3250", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.747747324906142, 45.834491968317685 ] } }, -{ "type": "Feature", "properties": { "id": "12221", "nom": "Chavril - Brulet", "desserte": "49A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3743", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.80248020161897, 45.747345163361871 ] } }, -{ "type": "Feature", "properties": { "id": "38374", "nom": "Genay Proulieu", "desserte": "43A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3751", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.845105683652617, 45.904022167747847 ] } }, -{ "type": "Feature", "properties": { "id": "38834", "nom": "Manufacture Montluc", "desserte": "C7B:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5868", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.858845779261892, 45.74990021025566 ] } }, -{ "type": "Feature", "properties": { "id": "39214", "nom": "Brindas Salle des Fetes", "desserte": "73A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4530", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.697083928451875, 45.722483192510268 ] } }, -{ "type": "Feature", "properties": { "id": "39235", "nom": "Bois Comtal", "desserte": "78B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2937", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.805832179776894, 45.635244754430047 ] } }, -{ "type": "Feature", "properties": { "id": "39338", "nom": "Irigny Venieres", "desserte": "15A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1586", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.819724928456234, 45.667089398217314 ] } }, -{ "type": "Feature", "properties": { "id": "39386", "nom": "La Borelle", "desserte": "T4A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "637", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.88212228114106, 45.711109447416156 ] } }, -{ "type": "Feature", "properties": { "id": "39388", "nom": "Gare de Vénissieux", "desserte": "T4A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "277", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.887672799668912, 45.705666654418465 ] } }, -{ "type": "Feature", "properties": { "id": "39400", "nom": "Division Leclerc", "desserte": "T4A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "663", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.868245717935836, 45.69843922508953 ] } }, -{ "type": "Feature", "properties": { "id": "39404", "nom": "Lenine - Corsiere", "desserte": "T4A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "670", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.861707977590443, 45.696803197459943 ] } }, -{ "type": "Feature", "properties": { "id": "39405", "nom": "Lenine - Corsiere", "desserte": "T4A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "671", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.861778670422998, 45.696862994315893 ] } }, -{ "type": "Feature", "properties": { "id": "39413", "nom": "Hopital Feyzin Venissieux", "desserte": "T4A:A,T4A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "677", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.865112356337211, 45.688235140570598 ] } }, -{ "type": "Feature", "properties": { "id": "77", "nom": "Assomption", "desserte": "8A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "846", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.812864339634078, 45.733254904774888 ] } }, -{ "type": "Feature", "properties": { "id": "140", "nom": "Batterie", "desserte": "24A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "887", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.915743877214211, 45.744475605398883 ] } }, -{ "type": "Feature", "properties": { "id": "355", "nom": "Castellane", "desserte": "171:A,S8A:A,S8A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "17", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.898696805060113, 45.808001909501328 ] } }, -{ "type": "Feature", "properties": { "id": "694", "nom": "Debrousse", "desserte": "C19A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1291", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.813146062694086, 45.748658522516223 ] } }, -{ "type": "Feature", "properties": { "id": "714", "nom": "Demi-Lune Clemenceau", "desserte": "55A:R,72B:R,86A:R,98A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1307", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.777315567378852, 45.763772915222674 ] } }, -{ "type": "Feature", "properties": { "id": "795", "nom": "Dumas", "desserte": "69A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1345", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.88749836773232, 45.776373780664017 ] } }, -{ "type": "Feature", "properties": { "id": "796", "nom": "Dumas", "desserte": "69A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1344", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.887282830985214, 45.776441686169115 ] } }, -{ "type": "Feature", "properties": { "id": "1008", "nom": "Archives Departementales", "desserte": "C11A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1461", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.862521823261966, 45.754075139658816 ] } }, -{ "type": "Feature", "properties": { "id": "1559", "nom": "Le Plat", "desserte": "55A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1869", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.7740603508552, 45.770414342319206 ] } }, -{ "type": "Feature", "properties": { "id": "1610", "nom": "Les Anzieux", "desserte": "40A:A,70A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1906", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.837815032518979, 45.850419515638499 ] } }, -{ "type": "Feature", "properties": { "id": "1688", "nom": "Les Glaieuls", "desserte": "62A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1980", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.942508146301888, 45.685500528335581 ] } }, -{ "type": "Feature", "properties": { "id": "1704", "nom": "Les Ifs", "desserte": "63A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1994", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.796567078834072, 45.71601640928656 ] } }, -{ "type": "Feature", "properties": { "id": "2637", "nom": "Rouget de l'Isle", "desserte": "C11A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2598", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.86588349519816, 45.75447651258586 ] } }, -{ "type": "Feature", "properties": { "id": "2664", "nom": "Sablons", "desserte": "67A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2620", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.963544075539896, 45.774080678919361 ] } }, -{ "type": "Feature", "properties": { "id": "2666", "nom": "Sala", "desserte": "31A:R,C20A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2622", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.826727086800378, 45.756702101677682 ] } }, -{ "type": "Feature", "properties": { "id": "2668", "nom": "Salle Polyvalente (D)", "desserte": "28A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5443", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 5.012195073562729, 45.728868182583945 ] } }, -{ "type": "Feature", "properties": { "id": "2835", "nom": "St Leonard", "desserte": "43A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2746", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.833518802773226, 45.85225224975369 ] } }, -{ "type": "Feature", "properties": { "id": "10248", "nom": "Eglise Demi-Lune", "desserte": "45A:A,55A:R,90A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "727", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.786180987551624, 45.764164898983644 ] } }, -{ "type": "Feature", "properties": { "id": "10436", "nom": "Piscine de Vaise", "desserte": "19A:R,3A:R,66A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3424", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.79697939290464, 45.770391527439436 ] } }, -{ "type": "Feature", "properties": { "id": "10533", "nom": "Echangeur Sans-Souci", "desserte": "21A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3478", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.772490364887492, 45.804670170471127 ] } }, -{ "type": "Feature", "properties": { "id": "10618", "nom": "Chassieu College", "desserte": "68B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3498", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.977004797682436, 45.741502923304019 ] } }, -{ "type": "Feature", "properties": { "id": "11217", "nom": "Albon", "desserte": "31A:R,40A:A,40A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "819", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.8318245080714, 45.764473931534987 ] } }, -{ "type": "Feature", "properties": { "id": "11323", "nom": "Parilly", "desserte": "296:R,C25B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "151", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.887720761830637, 45.719048229308243 ] } }, -{ "type": "Feature", "properties": { "id": "39408", "nom": "Herriot - Cagne", "desserte": "T4A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "657", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.875529778897453, 45.693786139964686 ] } }, -{ "type": "Feature", "properties": { "id": "39434", "nom": "Hopital Feyzin Venissieux", "desserte": "T4A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "674", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.865217209104602, 45.688236286544097 ] } }, -{ "type": "Feature", "properties": { "id": "39454", "nom": "Jet d'Eau - Mendes France", "desserte": "T4A:A,T4A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "388", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.859213452134834, 45.740096985886133 ] } }, -{ "type": "Feature", "properties": { "id": "39534", "nom": "Lycée Jacques Brel", "desserte": "C12A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "653", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.879823358247647, 45.694969105243452 ] } }, -{ "type": "Feature", "properties": { "id": "39575", "nom": "Corbas Rue du Midi", "desserte": "112A:R,54A:R,76A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1233", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.898387948885331, 45.660260305853704 ] } }, -{ "type": "Feature", "properties": { "id": "46415", "nom": "Rue Neuve", "desserte": "1EX:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5384", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 5.023733766540914, 45.694805382224892 ] } }, -{ "type": "Feature", "properties": { "id": "926", "nom": "Fleurieu", "desserte": "40A:R,70A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1420", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.840495839423632, 45.862889672490681 ] } }, -{ "type": "Feature", "properties": { "id": "1560", "nom": "Le Plat", "desserte": "55A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1870", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.774874656534919, 45.770504674078097 ] } }, -{ "type": "Feature", "properties": { "id": "1623", "nom": "Les Battieres", "desserte": "73A:A,C21A:A,C21A:R,C24B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1917", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.781163488611917, 45.754571200010382 ] } }, -{ "type": "Feature", "properties": { "id": "1639", "nom": "Les Cedres", "desserte": "68B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1936", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.955387817477535, 45.740299083779419 ] } }, -{ "type": "Feature", "properties": { "id": "2669", "nom": "Salle Polyvalente (D)", "desserte": "28A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5444", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 5.012020142765112, 45.728971373110099 ] } }, -{ "type": "Feature", "properties": { "id": "2702", "nom": "Saxe - Gambetta", "desserte": "C12A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "199", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.846288303299103, 45.754223219321936 ] } }, -{ "type": "Feature", "properties": { "id": "2998", "nom": "Treve Oray", "desserte": "77A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2851", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.859990410726096, 45.850014049679139 ] } }, -{ "type": "Feature", "properties": { "id": "3364", "nom": "Neuville", "desserte": "40A:A,40A:R,70A:A,S14A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "601", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.838479644886034, 45.876328499686863 ] } }, -{ "type": "Feature", "properties": { "id": "10170", "nom": "Bienvenus - Pressense", "desserte": "C26A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3314", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.885249663262516, 45.771708127695803 ] } }, -{ "type": "Feature", "properties": { "id": "10532", "nom": "Echangeur Sans-Souci", "desserte": "21A:A,GE4A:A,GE4A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3479", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.772278557815504, 45.80482777965107 ] } }, -{ "type": "Feature", "properties": { "id": "10600", "nom": "Chalinel", "desserte": "2A:A,S7A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3494", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.824919944646756, 45.800595904100163 ] } }, -{ "type": "Feature", "properties": { "id": "10737", "nom": "Grandes Bruyeres", "desserte": "98A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1502", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.733676385709278, 45.77607216992493 ] } }, -{ "type": "Feature", "properties": { "id": "10747", "nom": "Maintenue", "desserte": "21A:R,96A:A,96A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3523", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.800961553491564, 45.88685995385238 ] } }, -{ "type": "Feature", "properties": { "id": "10890", "nom": "Cours Aristide Briand", "desserte": "9A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1240", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.843615137132803, 45.782474737865044 ] } }, -{ "type": "Feature", "properties": { "id": "11337", "nom": "Berliet Porte C", "desserte": "62A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3659", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.898617244219158, 45.706882157493915 ] } }, -{ "type": "Feature", "properties": { "id": "11740", "nom": "Mions Poste", "desserte": "87A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2214", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.949813309783473, 45.669208683835542 ] } }, -{ "type": "Feature", "properties": { "id": "11749", "nom": "Leon Blum", "desserte": "C11A:R,C17A:A,C3A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3108", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.907995119121359, 45.761062967618663 ] } }, -{ "type": "Feature", "properties": { "id": "32291", "nom": "Lacouture", "desserte": "C17A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3874", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.911701478960324, 45.747655905521 ] } }, -{ "type": "Feature", "properties": { "id": "39389", "nom": "Gare de Vénissieux", "desserte": "T4A:A,T4A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "275", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.887818506811456, 45.705669821201177 ] } }, -{ "type": "Feature", "properties": { "id": "39391", "nom": "Croizat - Paul Bert", "desserte": "T4A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "641", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.887686445945228, 45.700070881191614 ] } }, -{ "type": "Feature", "properties": { "id": "39392", "nom": "Marcel Houël - Hôtel de Ville", "desserte": "T4A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "649", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.884576332796594, 45.696543293892354 ] } }, -{ "type": "Feature", "properties": { "id": "39393", "nom": "Marcel Houël - Hôtel de Ville", "desserte": "T4A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "648", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.884594172439484, 45.69647078774608 ] } }, -{ "type": "Feature", "properties": { "id": "39394", "nom": "Lycée Jacques Brel", "desserte": "T4A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "651", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.879848898016211, 45.694949173164808 ] } }, -{ "type": "Feature", "properties": { "id": "39395", "nom": "Lycée Jacques Brel", "desserte": "T4A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "652", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.879931151397499, 45.694894559896447 ] } }, -{ "type": "Feature", "properties": { "id": "39398", "nom": "Venissy", "desserte": "T4A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "659", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.872056751784402, 45.696006759026567 ] } }, -{ "type": "Feature", "properties": { "id": "39399", "nom": "Venissy", "desserte": "T4A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "660", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.871985755012224, 45.695948955587703 ] } }, -{ "type": "Feature", "properties": { "id": "39455", "nom": "Jet d'Eau - Mendes France", "desserte": "T4A:A,T4A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "389", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.859113384931621, 45.740059359681581 ] } }, -{ "type": "Feature", "properties": { "id": "39674", "nom": "Jean Sebastien Bach", "desserte": "87A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4546", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.897683804483438, 45.693995535917942 ] } }, -{ "type": "Feature", "properties": { "id": "520", "nom": "Cite Ampere", "desserte": "C7B:A,C7B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1161", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.812317133732634, 45.708514109943124 ] } }, -{ "type": "Feature", "properties": { "id": "659", "nom": "Curis Lavoir", "desserte": "84A:R,R2A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1270", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.82049061496623, 45.870372262449997 ] } }, -{ "type": "Feature", "properties": { "id": "1142", "nom": "Hauteroche Centre", "desserte": "17B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1540", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.827776748478806, 45.700079867743661 ] } }, -{ "type": "Feature", "properties": { "id": "1513", "nom": "Laurent Bonnevay", "desserte": "C3A:A,C3A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "227", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.9087539998154, 45.764916201126368 ] } }, -{ "type": "Feature", "properties": { "id": "3515", "nom": "Leclerc - Thimonnier", "desserte": "C2A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3083", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.864089019096715, 45.804708144842678 ] } }, -{ "type": "Feature", "properties": { "id": "10177", "nom": "Abondance", "desserte": "C11A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3318", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.849868503182569, 45.752936956920585 ] } }, -{ "type": "Feature", "properties": { "id": "10202", "nom": "Le Parc Brunier", "desserte": "33A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3327", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.829617113548833, 45.784442554158474 ] } }, -{ "type": "Feature", "properties": { "id": "10301", "nom": "Gorge de Loup", "desserte": "14B:A,14B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5167", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.805340209561521, 45.76610352299064 ] } }, -{ "type": "Feature", "properties": { "id": "10313", "nom": "Les Croisettes", "desserte": "5A:R,72B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3373", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.768029572161821, 45.758807865055573 ] } }, -{ "type": "Feature", "properties": { "id": "10315", "nom": "Croix Muriat", "desserte": "72B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3377", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.725284871774253, 45.759374482535605 ] } }, -{ "type": "Feature", "properties": { "id": "10508", "nom": "Bellecour Charite", "desserte": "S1A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "903", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.833221255576372, 45.756143808047199 ] } }, -{ "type": "Feature", "properties": { "id": "10675", "nom": "Gensoul", "desserte": "S1A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3322", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.824818725137781, 45.752036826284751 ] } }, -{ "type": "Feature", "properties": { "id": "10984", "nom": "Cedres", "desserte": "70A:A,S5A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3560", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.856542702837475, 45.807704070377589 ] } }, -{ "type": "Feature", "properties": { "id": "11529", "nom": "Hôtel de Ville - Louis Pradel", "desserte": "171:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "108", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.83804936968466, 45.767872882031646 ] } }, -{ "type": "Feature", "properties": { "id": "11751", "nom": "Place Jean Jaurès", "desserte": "ZI6A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "325", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.840375089277575, 45.739566340895266 ] } }, -{ "type": "Feature", "properties": { "id": "11759", "nom": "Domremy - Lacassagne", "desserte": "25A:A,C13A:R,C16A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3113", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.872780552786748, 45.751233455794434 ] } }, -{ "type": "Feature", "properties": { "id": "12150", "nom": "L'Avenir", "desserte": "73A:R,C24B:A,C24B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3233", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.709835010430505, 45.746380716051348 ] } }, -{ "type": "Feature", "properties": { "id": "12181", "nom": "Place de Paris", "desserte": "2A:R,31A:R,C14A:R,C6B:R,S11A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3246", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.803077696300259, 45.779321823889902 ] } }, -{ "type": "Feature", "properties": { "id": "30218", "nom": "Champvert - Les Massues", "desserte": "46A:R,90A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1998", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.79627364438007, 45.759785756898921 ] } }, -{ "type": "Feature", "properties": { "id": "36247", "nom": "Givors Leclerc", "desserte": "78B:R,80A:R,81A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4146", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.771004702003307, 45.588626772524691 ] } }, -{ "type": "Feature", "properties": { "id": "36249", "nom": "Givors Salengro", "desserte": "80A:A,80A:R,81A:A,81A:R,R3A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4148", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.771550700483036, 45.584150470340823 ] } }, -{ "type": "Feature", "properties": { "id": "36331", "nom": "Cimetiere de Givors", "desserte": "R3A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5334", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.777126720969536, 45.57632425321507 ] } }, -{ "type": "Feature", "properties": { "id": "36356", "nom": "Denfert Rochereau", "desserte": "81A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4196", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.777185810840813, 45.582587563941942 ] } }, -{ "type": "Feature", "properties": { "id": "37157", "nom": "30 Rue Saillant", "desserte": "ZI3A:R,ZI4A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4260", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.941731105385928, 45.7782344191032 ] } }, -{ "type": "Feature", "properties": { "id": "37159", "nom": "Fromont - Karl Marx", "desserte": "ZI3A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4261", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.941416925147986, 45.780564114000775 ] } }, -{ "type": "Feature", "properties": { "id": "37275", "nom": "Gare de Vénissieux", "desserte": "ZI1A:A,ZI1A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "276", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.888197788933197, 45.706327558335218 ] } }, -{ "type": "Feature", "properties": { "id": "37686", "nom": "St Cyr Eglise", "desserte": "S7A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4388", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.819904126014152, 45.814370600408161 ] } }, -{ "type": "Feature", "properties": { "id": "46191", "nom": "Part-Dieu Jules Favre", "desserte": "C13A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5729", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.857006283238644, 45.763633046630353 ] } }, -{ "type": "Feature", "properties": { "id": "53", "nom": "Alsace", "desserte": "C3A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "823", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.869385671484122, 45.763794890344869 ] } }, -{ "type": "Feature", "properties": { "id": "716", "nom": "Demi-Lune Mairie", "desserte": "5A:A,73A:A,C21A:A,C21A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1309", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.77748388241183, 45.760609913871079 ] } }, -{ "type": "Feature", "properties": { "id": "981", "nom": "Frere Benoit", "desserte": "55A:R,90A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1441", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.795799703514811, 45.763567575366302 ] } }, -{ "type": "Feature", "properties": { "id": "1003", "nom": "Gare de Collonges-Fontaines", "desserte": "43A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1457", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.847991907167323, 45.830713814107156 ] } }, -{ "type": "Feature", "properties": { "id": "1143", "nom": "Hauts de Solaize", "desserte": "39A:A,GE2A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1541", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.842173817369159, 45.645527164492506 ] } }, -{ "type": "Feature", "properties": { "id": "1646", "nom": "Les Chenes", "desserte": "68B:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1943", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.955874917005021, 45.743240239819826 ] } }, -{ "type": "Feature", "properties": { "id": "1689", "nom": "Les Glaieuls", "desserte": "62A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1979", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.942535080188235, 45.685526906985565 ] } }, -{ "type": "Feature", "properties": { "id": "2732", "nom": "Soeur Vially", "desserte": "C13A:A,S5A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2671", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.842837509321874, 45.787712805080318 ] } }, -{ "type": "Feature", "properties": { "id": "2836", "nom": "St Leonard", "desserte": "43A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2747", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.83339195319702, 45.852012031928091 ] } }, -{ "type": "Feature", "properties": { "id": "3466", "nom": "Etats-Unis Tony Garnier", "desserte": "26A:A,35A:A,448A:A,C16A:A,C22A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "617", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.864628373632676, 45.733036803950633 ] } }, -{ "type": "Feature", "properties": { "id": "10179", "nom": "Abondance", "desserte": "C11A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3319", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.851448960638672, 45.752631523667326 ] } }, -{ "type": "Feature", "properties": { "id": "10569", "nom": "Trois Renards", "desserte": "55A:A,86A:A,98A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2867", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.774587005908191, 45.763724188382014 ] } }, -{ "type": "Feature", "properties": { "id": "10748", "nom": "St Germain Village", "desserte": "96A:A,96A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3524", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.804570005239442, 45.879678905684877 ] } }, -{ "type": "Feature", "properties": { "id": "32263", "nom": "Rue de l'Université", "desserte": "35A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "373", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.839031424502941, 45.751009786678686 ] } }, -{ "type": "Feature", "properties": { "id": "34543", "nom": "Route de Toussieu", "desserte": "50A:A,ZI8A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3977", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.98367943566449, 45.689171910801839 ] } }, -{ "type": "Feature", "properties": { "id": "34593", "nom": "Route d'Heyrieux", "desserte": "76A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3959", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.94273295376399, 45.687808703381315 ] } }, -{ "type": "Feature", "properties": { "id": "34614", "nom": "St Priest Salengro", "desserte": "62A:R,76A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3956", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.936918065500223, 45.689780025156907 ] } }, -{ "type": "Feature", "properties": { "id": "34654", "nom": "Centre Val Rosay", "desserte": "23A:A,84A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3986", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.809394757002453, 45.799939485740261 ] } }, -{ "type": "Feature", "properties": { "id": "34656", "nom": "Moulin d'Arche", "desserte": "23A:R,84A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3987", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.807919869550012, 45.802915312421987 ] } }, -{ "type": "Feature", "properties": { "id": "35662", "nom": "Reconnaissance - Balzac", "desserte": "T3:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "541", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.885153860110866, 45.754491809137114 ] } }, -{ "type": "Feature", "properties": { "id": "35663", "nom": "Reconnaissance - Balzac", "desserte": "T3:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "540", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.885063400800481, 45.754582075915124 ] } }, -{ "type": "Feature", "properties": { "id": "35665", "nom": "Gare de Villeurbanne", "desserte": "T3:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "550", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.891620767003994, 45.755900686084928 ] } }, -{ "type": "Feature", "properties": { "id": "36137", "nom": "Z.I. Schweitzer - Meyzieu", "desserte": "ZI2A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2996", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 5.028814622502047, 45.765918641728646 ] } }, -{ "type": "Feature", "properties": { "id": "39411", "nom": "Darnaise", "desserte": "T4A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "673", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.864356092078062, 45.6926747844674 ] } }, -{ "type": "Feature", "properties": { "id": "39675", "nom": "Jean Sebastien Bach", "desserte": "87A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4545", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.897725643144952, 45.694066591531552 ] } }, -{ "type": "Feature", "properties": { "id": "39774", "nom": "Ancienne Gare", "desserte": "11B:A,2EX:A,73A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4547", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.69696220104883, 45.718894497322879 ] } }, -{ "type": "Feature", "properties": { "id": "46192", "nom": "Sacuny SPA", "desserte": "12B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5144", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.771090465534062, 45.677912787298091 ] } }, -{ "type": "Feature", "properties": { "id": "46193", "nom": "Sacuny SPA", "desserte": "12B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5143", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.770659479467591, 45.677832857729364 ] } }, -{ "type": "Feature", "properties": { "id": "78", "nom": "Assomption", "desserte": "8A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "845", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.812828753216712, 45.733606731428232 ] } }, -{ "type": "Feature", "properties": { "id": "147", "nom": "Bechevelin", "desserte": "35A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "891", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.840671517826235, 45.750037088718024 ] } }, -{ "type": "Feature", "properties": { "id": "702", "nom": "Decines Gare", "desserte": "67A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1301", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.952221909033787, 45.769979157835358 ] } }, -{ "type": "Feature", "properties": { "id": "984", "nom": "Fromentin", "desserte": "21A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1442", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.763849477385748, 45.872481842222534 ] } }, -{ "type": "Feature", "properties": { "id": "1010", "nom": "Gare de Vaise", "desserte": "448A:A,C14A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "257", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.804890531323841, 45.781019205452544 ] } }, -{ "type": "Feature", "properties": { "id": "1065", "nom": "Grand Chassagnon", "desserte": "60A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1487", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.863791874114781, 45.701380378190152 ] } }, -{ "type": "Feature", "properties": { "id": "2705", "nom": "Saxe - Lafayette", "desserte": "C14A:R,C4A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2646", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.845049940205664, 45.763162088656564 ] } }, -{ "type": "Feature", "properties": { "id": "2733", "nom": "Soeur Vially", "desserte": "C13A:R,S5A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2672", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.842087257005621, 45.787342490781036 ] } }, -{ "type": "Feature", "properties": { "id": "3145", "nom": "Vincent Serre", "desserte": "5A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2971", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.786328165566966, 45.768914221639079 ] } }, -{ "type": "Feature", "properties": { "id": "3322", "nom": "Marcy Sources", "desserte": "72B:R,98A:R,GE6A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3030", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.707084395481572, 45.78821161828386 ] } }, -{ "type": "Feature", "properties": { "id": "10987", "nom": "La Cle des Champs", "desserte": "S5A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3562", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.863928197793846, 45.801489284174316 ] } }, -{ "type": "Feature", "properties": { "id": "11743", "nom": "23 Aout 1944", "desserte": "296:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3103", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.951589416670138, 45.665512625149788 ] } }, -{ "type": "Feature", "properties": { "id": "11845", "nom": "Paul Marcellin", "desserte": "C8A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3130", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.92918973914674, 45.784816682039008 ] } }, -{ "type": "Feature", "properties": { "id": "30227", "nom": "Dupeuble", "desserte": "C17A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3354", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.892334994744385, 45.777199951717648 ] } }, -{ "type": "Feature", "properties": { "id": "32292", "nom": "Lacouture", "desserte": "C17A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3875", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.911658082067866, 45.748377014997558 ] } }, -{ "type": "Feature", "properties": { "id": "32295", "nom": "Marne - Montferrat", "desserte": "24A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3877", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.914606046517771, 45.739947021521338 ] } }, -{ "type": "Feature", "properties": { "id": "40175", "nom": "Europa", "desserte": "C25B:A,C25B:R,ZI1A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4579", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.933508238580256, 45.681177533505469 ] } }, -{ "type": "Feature", "properties": { "id": "40178", "nom": "Croizat - Paul Bert", "desserte": "35A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "644", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.88835014056168, 45.700743299619994 ] } }, -{ "type": "Feature", "properties": { "id": "40195", "nom": "Vaulx Salengro", "desserte": "68B:R,ZI5B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4584", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.927562342915827, 45.750279423445285 ] } }, -{ "type": "Feature", "properties": { "id": "40196", "nom": "Joliot-Curie - Marcel Sembat", "desserte": "79A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "632", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.880198040003203, 45.71476341432318 ] } }, -{ "type": "Feature", "properties": { "id": "40222", "nom": "Croizat - Paul Bert", "desserte": "39A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "645", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.88750945075525, 45.699511242403752 ] } }, -{ "type": "Feature", "properties": { "id": "42288", "nom": "Chasselay", "desserte": "21A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1113", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.772221536968332, 45.873561038025827 ] } }, -{ "type": "Feature", "properties": { "id": "43294", "nom": "Bergeron", "desserte": "C24B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4827", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.721830879668292, 45.745847760536499 ] } }, -{ "type": "Feature", "properties": { "id": "43754", "nom": "Bd de Parilly", "desserte": "93A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4887", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.906389543009147, 45.715129624725982 ] } }, -{ "type": "Feature", "properties": { "id": "44538", "nom": "Le Monteiller", "desserte": "S14A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4927", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.841172896358811, 45.879716077670246 ] } }, -{ "type": "Feature", "properties": { "id": "46143", "nom": "Andre Sabatier", "desserte": "80A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5131", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.773594235471363, 45.609652808298122 ] } }, -{ "type": "Feature", "properties": { "id": "46197", "nom": "Poumeyrol", "desserte": "171:A,C5A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5145", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.863146126379133, 45.791388771290684 ] } }, -{ "type": "Feature", "properties": { "id": "46198", "nom": "Poumeyrol", "desserte": "171:R,C5A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5146", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.863210114939925, 45.791512810124004 ] } }, -{ "type": "Feature", "properties": { "id": "125", "nom": "Barolles Centre", "desserte": "12B:A,17B:R,78B:R,C10A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "876", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.786325029035998, 45.680470733015888 ] } }, -{ "type": "Feature", "properties": { "id": "521", "nom": "Cite Berliet", "desserte": "296:A,C25B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1164", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.902361214687913, 45.710856179253717 ] } }, -{ "type": "Feature", "properties": { "id": "927", "nom": "Florian", "desserte": "C11A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1422", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.88128464601136, 45.757179889013067 ] } }, -{ "type": "Feature", "properties": { "id": "948", "nom": "Fort de Montessuy", "desserte": "C13A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1432", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.848857498062988, 45.792186956062878 ] } }, -{ "type": "Feature", "properties": { "id": "1071", "nom": "Grand Vire", "desserte": "52A:A,C3A:R,C8A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1494", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.917183061253875, 45.778180009361684 ] } }, -{ "type": "Feature", "properties": { "id": "1103", "nom": "Grange Rouge", "desserte": "296:R,C25B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1515", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.873513831283974, 45.731999157001518 ] } }, -{ "type": "Feature", "properties": { "id": "1105", "nom": "Gratte Ciel", "desserte": "69A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "90", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.882176036653411, 45.768663385085972 ] } }, -{ "type": "Feature", "properties": { "id": "1126", "nom": "Guillermin - Terraillon", "desserte": "52A:R,C15A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1526", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.918629364385085, 45.745417428363446 ] } }, -{ "type": "Feature", "properties": { "id": "1133", "nom": "Guynemer", "desserte": "C25B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1532", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.934469984415952, 45.683625718524119 ] } }, -{ "type": "Feature", "properties": { "id": "1191", "nom": "Hôtel de Ville - Louis Pradel", "desserte": "171:R,9A:R,C5A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "116", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.837761740903628, 45.769184462051712 ] } }, -{ "type": "Feature", "properties": { "id": "1294", "nom": "Kruger - Voillot", "desserte": "C17A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1644", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.910703196575177, 45.753250683214503 ] } }, -{ "type": "Feature", "properties": { "id": "1624", "nom": "Les Biesses", "desserte": "95A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1921", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 5.037964231837826, 45.792722903996989 ] } }, -{ "type": "Feature", "properties": { "id": "2738", "nom": "Sous Genas", "desserte": "28A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5445", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.986350809597906, 45.734819434635043 ] } }, -{ "type": "Feature", "properties": { "id": "3088", "nom": "Velten", "desserte": "31A:R,43A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2926", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.833667359340613, 45.799123550596683 ] } }, -{ "type": "Feature", "properties": { "id": "3151", "nom": "Viviani", "desserte": "35A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2976", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.861646236254107, 45.727991252008984 ] } }, -{ "type": "Feature", "properties": { "id": "10372", "nom": "Georges Brassens", "desserte": "76A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3410", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.975214893753889, 45.768253026950838 ] } }, -{ "type": "Feature", "properties": { "id": "10451", "nom": "Dardilly Peupliers", "desserte": "3A:R,89A:R,GE4A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3444", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.758501490550418, 45.813451501116589 ] } }, -{ "type": "Feature", "properties": { "id": "10458", "nom": "Museum", "desserte": "38A:R,C1A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3447", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.848329727971033, 45.774718344959503 ] } }, -{ "type": "Feature", "properties": { "id": "10606", "nom": "Tissot", "desserte": "2A:R,31A:R,C14A:R,C6B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2836", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.803840081319937, 45.777003139459488 ] } }, -{ "type": "Feature", "properties": { "id": "12223", "nom": "Berthet", "desserte": "49A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3738", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.807829600773855, 45.746795463356619 ] } }, -{ "type": "Feature", "properties": { "id": "39474", "nom": "Gorge de Loup", "desserte": "86A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "61", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.804176712350133, 45.766543148910955 ] } }, -{ "type": "Feature", "properties": { "id": "39894", "nom": "Lycée Lumière", "desserte": "35A:A,C16A:A,C22A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "614", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.863641973912502, 45.734229182186702 ] } }, -{ "type": "Feature", "properties": { "id": "45401", "nom": "Ancienne Gare", "desserte": "11B:R,2EX:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4548", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.696960139047378, 45.718696526640208 ] } }, -{ "type": "Feature", "properties": { "id": "45421", "nom": "Joanna", "desserte": "11B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4951", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.691315306893105, 45.716501986980461 ] } }, -{ "type": "Feature", "properties": { "id": "45800", "nom": "Hôtel de Région Montrochet", "desserte": "S1A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "508", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.81951169931391, 45.741281009349557 ] } }, -{ "type": "Feature", "properties": { "id": "45806", "nom": "Lortet", "desserte": "C7B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3149", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.840411030802171, 45.742616933652862 ] } }, -{ "type": "Feature", "properties": { "id": "45807", "nom": "La Saulaie", "desserte": "15A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1777", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.818117014089712, 45.718332112462484 ] } }, -{ "type": "Feature", "properties": { "id": "46204", "nom": "Pateliere - Robiniers", "desserte": "73A:A,C24B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4213", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.745217189501893, 45.745882605976888 ] } }, -{ "type": "Feature", "properties": { "id": "46552", "nom": "Mayer", "desserte": "78B:R,80A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5542", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.789669324963367, 45.609277686626704 ] } }, -{ "type": "Feature", "properties": { "id": "110", "nom": "Balmont Bas", "desserte": "S11A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "866", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.800331199220892, 45.783198567809542 ] } }, -{ "type": "Feature", "properties": { "id": "129", "nom": "Basso", "desserte": "84A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "879", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.791522722400833, 45.825084453546594 ] } }, -{ "type": "Feature", "properties": { "id": "816", "nom": "Echangeur du Perollier", "desserte": "19A:R,89A:R,C6B:R,S15A:A,S15A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1364", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.78279042915753, 45.787407424056717 ] } }, -{ "type": "Feature", "properties": { "id": "885", "nom": "Evellier", "desserte": "C24B:A,C24B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1399", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.694584385130748, 45.749033675786748 ] } }, -{ "type": "Feature", "properties": { "id": "903", "nom": "Felix Jacquier", "desserte": "27A:A,C6B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1404", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.848622710018608, 45.772965552153515 ] } }, -{ "type": "Feature", "properties": { "id": "1611", "nom": "Les Anzieux", "desserte": "40A:R,70A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1907", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.837522292598108, 45.849930956116367 ] } }, -{ "type": "Feature", "properties": { "id": "1690", "nom": "Les Grandes Terres", "desserte": "28A:R,68B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1981", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.978349164849695, 45.73576422287568 ] } }, -{ "type": "Feature", "properties": { "id": "2708", "nom": "Saxe - Lafayette", "desserte": "448A:A,C13A:R,C3A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2643", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.845441380638933, 45.763567397761385 ] } }, -{ "type": "Feature", "properties": { "id": "2739", "nom": "Sous Genas", "desserte": "28A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5446", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.985862454613391, 45.734821962809001 ] } }, -{ "type": "Feature", "properties": { "id": "2823", "nom": "Parc d'activites T.Garnier", "desserte": "C22A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2744", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.845541170971798, 45.729378653856159 ] } }, -{ "type": "Feature", "properties": { "id": "2949", "nom": "Tassin Deperet", "desserte": "72B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2815", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.760808915121056, 45.758072933027996 ] } }, -{ "type": "Feature", "properties": { "id": "3380", "nom": "Novy Jicin", "desserte": "87A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2325", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.897253349193945, 45.695787642385241 ] } }, -{ "type": "Feature", "properties": { "id": "10571", "nom": "Tassin Centre social", "desserte": "72B:R,98A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2810", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.766525858904464, 45.763484905968326 ] } }, -{ "type": "Feature", "properties": { "id": "11223", "nom": "Carrefour Liberation", "desserte": "14B:R,72B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1039", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.776299119354596, 45.757866429705253 ] } }, -{ "type": "Feature", "properties": { "id": "11543", "nom": "St Pierre de Vaise", "desserte": "90A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2756", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.808235272317193, 45.772430604243638 ] } }, -{ "type": "Feature", "properties": { "id": "32107", "nom": "Rue de l'Université", "desserte": "T1A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "371", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.839018765481185, 45.751183791513199 ] } }, -{ "type": "Feature", "properties": { "id": "32244", "nom": "Leclerc - Nadaud", "desserte": "C22A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3872", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.831470426954093, 45.744472242329614 ] } }, -{ "type": "Feature", "properties": { "id": "39895", "nom": "Lycée Lumière", "desserte": "C22A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "611", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.862997007732171, 45.73445973412143 ] } }, -{ "type": "Feature", "properties": { "id": "44798", "nom": "Porcher", "desserte": "S10A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4932", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.837907124806621, 45.802647727641428 ] } }, -{ "type": "Feature", "properties": { "id": "45481", "nom": "La Source", "desserte": "12B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5013", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.74396565510137, 45.712270171709058 ] } }, -{ "type": "Feature", "properties": { "id": "45639", "nom": "St Germain Pain Beni", "desserte": "21A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3528", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.799355666530069, 45.88381670799955 ] } }, -{ "type": "Feature", "properties": { "id": "45768", "nom": "De Tassigny - Curial", "desserte": "79A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5021", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.917126389216664, 45.736945633019324 ] } }, -{ "type": "Feature", "properties": { "id": "46025", "nom": "Gare Part-Dieu Vivier Merle", "desserte": "302A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "531", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.857238319547681, 45.761682937627469 ] } }, -{ "type": "Feature", "properties": { "id": "46027", "nom": "Place Guichard", "desserte": "302A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "92", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.847567607468766, 45.759433313723598 ] } }, -{ "type": "Feature", "properties": { "id": "46028", "nom": "Jean Macé", "desserte": "302A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "286", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.84247429605042, 45.746144351787635 ] } }, -{ "type": "Feature", "properties": { "id": "46206", "nom": "Meyzieu Z.i.", "desserte": "T3:A,T3:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "590", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 5.031640859993246, 45.767678069973151 ] } }, -{ "type": "Feature", "properties": { "id": "46207", "nom": "Meyzieu les Panettes", "desserte": "T3:A,T3:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "790", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 5.034977705640912, 45.766139989942509 ] } }, -{ "type": "Feature", "properties": { "id": "46212", "nom": "Pr Bernard", "desserte": "ZI6A:A,ZI6A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4610", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.845408614987453, 45.722493928962933 ] } }, -{ "type": "Feature", "properties": { "id": "356", "nom": "Castellane", "desserte": "171:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "18", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.898389896254456, 45.808044913567251 ] } }, -{ "type": "Feature", "properties": { "id": "589", "nom": "Contrebandiers", "desserte": "S11A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1229", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.804876907686303, 45.786735201283989 ] } }, -{ "type": "Feature", "properties": { "id": "1072", "nom": "Grand Vire", "desserte": "52A:R,C3A:A,C8A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1497", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.916880553748959, 45.77831298005426 ] } }, -{ "type": "Feature", "properties": { "id": "1099", "nom": "Grange Bruyere", "desserte": "C20A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1508", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.801725059664394, 45.751439223645569 ] } }, -{ "type": "Feature", "properties": { "id": "1153", "nom": "Henon - Deleuvre", "desserte": "C18A:R,S4A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1544", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.825320186642054, 45.780181288347379 ] } }, -{ "type": "Feature", "properties": { "id": "1169", "nom": "HLM Republique", "desserte": "C12A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1554", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.870315362149965, 45.707191999647705 ] } }, -{ "type": "Feature", "properties": { "id": "1474", "nom": "La Villette", "desserte": "25A:R,C13A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1795", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.862840423605517, 45.756813354033973 ] } }, -{ "type": "Feature", "properties": { "id": "1709", "nom": "Les Lauriers", "desserte": "97A:A,97A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1996", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.86608223194194, 45.88077000296736 ] } }, -{ "type": "Feature", "properties": { "id": "2742", "nom": "Décines Centre", "desserte": "323A:A,67A:A,79A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "577", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.956658052993129, 45.770487855494359 ] } }, -{ "type": "Feature", "properties": { "id": "2743", "nom": "Décines Centre", "desserte": "323A:R,67A:R,79A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "576", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.956685891885461, 45.770532214142939 ] } }, -{ "type": "Feature", "properties": { "id": "3120", "nom": "Viabert - Anatole France", "desserte": "27A:R,C16A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2948", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.868376344965633, 45.76645503344961 ] } }, -{ "type": "Feature", "properties": { "id": "3132", "nom": "Alfred de Vigny", "desserte": "62A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "443", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.936780030643796, 45.699369872805434 ] } }, -{ "type": "Feature", "properties": { "id": "3148", "nom": "Vitton - Belges", "desserte": "C1A:R,C6B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2973", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.856800021366968, 45.770081943258958 ] } }, -{ "type": "Feature", "properties": { "id": "10893", "nom": "Bellevue", "desserte": "9A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "913", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.847742551351035, 45.785523960373659 ] } }, -{ "type": "Feature", "properties": { "id": "11040", "nom": "Grisard", "desserte": "50A:R,ZI8A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3589", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.948388921361635, 45.697389808973142 ] } }, -{ "type": "Feature", "properties": { "id": "11226", "nom": "Neuville", "desserte": "96A:A,96A:R,97A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "602", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.838649983999819, 45.875541596104675 ] } }, -{ "type": "Feature", "properties": { "id": "11329", "nom": "Maison du Peuple", "desserte": "93A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3654", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.88217079791065, 45.704349207988713 ] } }, -{ "type": "Feature", "properties": { "id": "11937", "nom": "Ste Foy Platanes", "desserte": "C19A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3168", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.776347982323861, 45.731804560365774 ] } }, -{ "type": "Feature", "properties": { "id": "12188", "nom": "Chemin des Pres", "desserte": "90A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3254", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.791679656479262, 45.74213632413327 ] } }, -{ "type": "Feature", "properties": { "id": "39898", "nom": "Etats-Unis Tony Garnier", "desserte": "26A:R,C16A:R,C22A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "616", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.864230204292227, 45.733882888339849 ] } }, -{ "type": "Feature", "properties": { "id": "39914", "nom": "Marcel Houël - Hôtel de Ville", "desserte": "C12A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "647", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.883072892983752, 45.696353579618332 ] } }, -{ "type": "Feature", "properties": { "id": "40035", "nom": "Commune de Paris", "desserte": "93A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4578", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.869352595545073, 45.702740139664549 ] } }, -{ "type": "Feature", "properties": { "id": "40036", "nom": "Gare de Vénissieux", "desserte": "111A:R,112A:R,35A:R,39A:R,54A:R,87A:R,93A:A,ZI1A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "283", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.887608359455359, 45.705251810921681 ] } }, -{ "type": "Feature", "properties": { "id": "40135", "nom": "Croizat - Paul Bert", "desserte": "39A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "640", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.887752180512137, 45.700036801316813 ] } }, -{ "type": "Feature", "properties": { "id": "43848", "nom": "Chemin de Crecy", "desserte": "23A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4894", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.803708450409835, 45.801126637143035 ] } }, -{ "type": "Feature", "properties": { "id": "43854", "nom": "Bois de l'Etoile Liberte", "desserte": "GE6A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4896", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.723057749564597, 45.784813095508206 ] } }, -{ "type": "Feature", "properties": { "id": "45840", "nom": "Rue de Sete", "desserte": "60A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4570", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.841494739639438, 45.713609045264477 ] } }, -{ "type": "Feature", "properties": { "id": "46216", "nom": "Pont de Fontaines", "desserte": "40A:A,70A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2516", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.848094524548524, 45.832663545656047 ] } }, -{ "type": "Feature", "properties": { "id": "396", "nom": "Champvillard", "desserte": "15A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1082", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.818368844226105, 45.672610084348499 ] } }, -{ "type": "Feature", "properties": { "id": "572", "nom": "Coblod - Rosenberg", "desserte": "35A:A,54A:A,87A:A,ZI1A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1216", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.892127427513728, 45.700477267510557 ] } }, -{ "type": "Feature", "properties": { "id": "644", "nom": "Croix-Rousse", "desserte": "303:A,303:R", "pmr": "t", "ascenseur": "t", "escalator": "t", "gid": "338", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.831829836182253, 45.774458721307809 ] } }, -{ "type": "Feature", "properties": { "id": "707", "nom": "Decines Wilson", "desserte": "67A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1303", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.942668549911437, 45.768698001934396 ] } }, -{ "type": "Feature", "properties": { "id": "750", "nom": "Descartes", "desserte": "37A:R,69A:A,C17A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1316", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.871538135478967, 45.776177115678429 ] } }, -{ "type": "Feature", "properties": { "id": "755", "nom": "Diderot - Les Ormes", "desserte": "C25B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1321", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.929033763381728, 45.697730898751168 ] } }, -{ "type": "Feature", "properties": { "id": "963", "nom": "Francheville Bel Air", "desserte": "73A:R,C24B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "709", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.755836493393552, 45.747343132984966 ] } }, -{ "type": "Feature", "properties": { "id": "1206", "nom": "Ile Barbe", "desserte": "40A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1575", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.830448152789224, 45.795675591712254 ] } }, -{ "type": "Feature", "properties": { "id": "1306", "nom": "L'Oiselet", "desserte": "20A:R,22A:R,23A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5253", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.802541157472649, 45.802646451007817 ] } }, -{ "type": "Feature", "properties": { "id": "10542", "nom": "Limonest Maison Retraite", "desserte": "21A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3480", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.772492424454179, 45.840449238313859 ] } }, -{ "type": "Feature", "properties": { "id": "10613", "nom": "Berlioz", "desserte": "2A:A,S7A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3497", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.821662276252988, 45.799443761693865 ] } }, -{ "type": "Feature", "properties": { "id": "10738", "nom": "Grandes Bruyeres", "desserte": "72B:R,98A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1503", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.734290801214954, 45.775708020174392 ] } }, -{ "type": "Feature", "properties": { "id": "10910", "nom": "Z.I. Ampere", "desserte": "43A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3536", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.823850369381027, 45.889929796168886 ] } }, -{ "type": "Feature", "properties": { "id": "10988", "nom": "La Cle des Champs", "desserte": "S5A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3563", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.864124762943414, 45.80156587399857 ] } }, -{ "type": "Feature", "properties": { "id": "30219", "nom": "Theatre Eglise Notre Dame", "desserte": "45A:A,90A:A,90A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3721", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.79528234545225, 45.758034268418939 ] } }, -{ "type": "Feature", "properties": { "id": "39918", "nom": "Minguettes Darnaise", "desserte": "C12A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2205", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.866484882160252, 45.69065315753506 ] } }, -{ "type": "Feature", "properties": { "id": "39919", "nom": "Hopital Feyzin Venissieux", "desserte": "93A:R,C12A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "678", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.865298510079536, 45.688591623356317 ] } }, -{ "type": "Feature", "properties": { "id": "39921", "nom": "Lamothe - Madeleine", "desserte": "35A:R,C12A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1811", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.84911102979332, 45.745077860512374 ] } }, -{ "type": "Feature", "properties": { "id": "39922", "nom": "Domer - Chevreul", "desserte": "C7B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4553", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.844832987683747, 45.746838765005165 ] } }, -{ "type": "Feature", "properties": { "id": "39955", "nom": "Port Edouard Herriot", "desserte": "60A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3111", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.838321571141869, 45.725498337936379 ] } }, -{ "type": "Feature", "properties": { "id": "40015", "nom": "Professeur Beauvisage - C.I.S.L.", "desserte": "26A:A,35A:A,448A:A,C16A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "625", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.867270462809266, 45.729556777879758 ] } }, -{ "type": "Feature", "properties": { "id": "40016", "nom": "Professeur Beauvisage - C.I.S.L.", "desserte": "26A:R,C16A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "624", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.867474631501782, 45.72980420774968 ] } }, -{ "type": "Feature", "properties": { "id": "43715", "nom": "Parilly Jean Zay", "desserte": "93A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4885", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.903173118624364, 45.712286821728064 ] } }, -{ "type": "Feature", "properties": { "id": "43856", "nom": "L'Etang", "desserte": "6A:A,GE4A:A,GE4A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4898", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.778959349327141, 45.807464070636549 ] } }, -{ "type": "Feature", "properties": { "id": "46059", "nom": "Cusset", "desserte": "301A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "47", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.900278247177153, 45.765740128294709 ] } }, -{ "type": "Feature", "properties": { "id": "46233", "nom": "Quincieux Mairie", "desserte": "96A:A,96A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5195", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.779116622816272, 45.914726814833735 ] } }, -{ "type": "Feature", "properties": { "id": "46234", "nom": "Jerusalem", "desserte": "96A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5196", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.787668208611802, 45.911300508919794 ] } }, -{ "type": "Feature", "properties": { "id": "46235", "nom": "Jerusalem", "desserte": "96A:A,96A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5197", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.787130359212445, 45.911384228344964 ] } }, -{ "type": "Feature", "properties": { "id": "54", "nom": "Ampere", "desserte": "71A:R,S7A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "826", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.838358454105206, 45.817093691781736 ] } }, -{ "type": "Feature", "properties": { "id": "71", "nom": "Antonins", "desserte": "37A:R,69A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "839", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.878935228196203, 45.778134207178724 ] } }, -{ "type": "Feature", "properties": { "id": "80", "nom": "Ateliers SNCF", "desserte": "15A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "848", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.818164969134886, 45.719681210719187 ] } }, -{ "type": "Feature", "properties": { "id": "95", "nom": "Avenue de la Paix", "desserte": "5A:R,86A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "858", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.748816790022462, 45.784883870105268 ] } }, -{ "type": "Feature", "properties": { "id": "142", "nom": "Foch - Provinces", "desserte": "90A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "890", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.798505359710687, 45.747297402188643 ] } }, -{ "type": "Feature", "properties": { "id": "148", "nom": "Bellecombe", "desserte": "39A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "893", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.845410098385139, 45.64839811572493 ] } }, -{ "type": "Feature", "properties": { "id": "180", "nom": "Bellegarde", "desserte": "40A:R,70A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "912", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.839733410821522, 45.870755792885234 ] } }, -{ "type": "Feature", "properties": { "id": "397", "nom": "Chantabeau", "desserte": "39A:A,GE2A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1084", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.837576849762247, 45.641507367819251 ] } }, -{ "type": "Feature", "properties": { "id": "1134", "nom": "Guynemer", "desserte": "C25B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1531", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.934552148727047, 45.683461787220956 ] } }, -{ "type": "Feature", "properties": { "id": "1156", "nom": "Henri Gorjus", "desserte": "2A:R,C18A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1545", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.823259957875202, 45.779569840881798 ] } }, -{ "type": "Feature", "properties": { "id": "1625", "nom": "Les Biesses", "desserte": "95A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1920", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 5.036929299022901, 45.792873807458712 ] } }, -{ "type": "Feature", "properties": { "id": "2999", "nom": "Treves Paques", "desserte": "S7A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2853", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.839440777041443, 45.815701398930244 ] } }, -{ "type": "Feature", "properties": { "id": "3000", "nom": "Treves Paques", "desserte": "71A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2854", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.839694362688102, 45.816181818885923 ] } }, -{ "type": "Feature", "properties": { "id": "3121", "nom": "Viala - Lacassagne", "desserte": "C26A:R,C8A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2950", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.885835944992475, 45.746058996210884 ] } }, -{ "type": "Feature", "properties": { "id": "11389", "nom": "Tissot", "desserte": "2A:A,31A:A,448A:A,C14A:A,C6B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2837", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.804058727286182, 45.776815973537637 ] } }, -{ "type": "Feature", "properties": { "id": "11544", "nom": "Croix-Rousse", "desserte": "S4A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "336", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.832434179595711, 45.774757091608542 ] } }, -{ "type": "Feature", "properties": { "id": "11629", "nom": "Georges Levy", "desserte": "35A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3088", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.868005490995837, 45.720106900392935 ] } }, -{ "type": "Feature", "properties": { "id": "11736", "nom": "Stade Jean Bouin", "desserte": "C25B:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5220", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.92435725539563, 45.697442842268202 ] } }, -{ "type": "Feature", "properties": { "id": "11744", "nom": "23 Aout 1944", "desserte": "296:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3102", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.951445321575378, 45.665993069861663 ] } }, -{ "type": "Feature", "properties": { "id": "11836", "nom": "Clinique du Grand Large", "desserte": "16A:A,79A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3641", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.970332705173445, 45.771860294401812 ] } }, -{ "type": "Feature", "properties": { "id": "34653", "nom": "Val Rosay", "desserte": "23A:A,84A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2886", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.812295715599416, 45.793772823851292 ] } }, -{ "type": "Feature", "properties": { "id": "43891", "nom": "Avoraux", "desserte": "R2A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4912", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.827077737517798, 45.868156312274017 ] } }, -{ "type": "Feature", "properties": { "id": "45828", "nom": "Louis Renault", "desserte": "ZI2A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5029", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 5.031190947044966, 45.777005974503801 ] } }, -{ "type": "Feature", "properties": { "id": "46146", "nom": "Grigny Pasteur", "desserte": "80A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4201", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.776722235554816, 45.609704743091868 ] } }, -{ "type": "Feature", "properties": { "id": "46147", "nom": "Grigny Pasteur", "desserte": "80A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4200", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.776857352632474, 45.609668764899325 ] } }, -{ "type": "Feature", "properties": { "id": "46148", "nom": "Peroniere", "desserte": "84A:A,84A:R,R2A:A,R2A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5132", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.800378776965482, 45.860373225286622 ] } }, -{ "type": "Feature", "properties": { "id": "46151", "nom": "Part-Dieu - Servient", "desserte": "38A:A,C13A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "429", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.852213257821029, 45.760872120899016 ] } }, -{ "type": "Feature", "properties": { "id": "46236", "nom": "Port Maçon", "desserte": "96A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5198", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.801099466996008, 45.897685383155178 ] } }, -{ "type": "Feature", "properties": { "id": "46237", "nom": "Port Maçon", "desserte": "96A:A,96A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5199", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.80081022328842, 45.898708853936888 ] } }, -{ "type": "Feature", "properties": { "id": "190", "nom": "Paul Berliet", "desserte": "296:R,C25B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "920", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.911935751191706, 45.705136931811964 ] } }, -{ "type": "Feature", "properties": { "id": "832", "nom": "La Mulatiere Mairie", "desserte": "17B:A,8A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1370", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.810414848033147, 45.729087437129522 ] } }, -{ "type": "Feature", "properties": { "id": "1797", "nom": "Limonest Cimetiere", "desserte": "21A:A,21A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2074", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.768586235988755, 45.84268505276453 ] } }, -{ "type": "Feature", "properties": { "id": "2118", "nom": "Neuville", "desserte": "84A:A,84A:R,96A:A,96A:R,97A:R,R2A:A,S14A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "599", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.838456702879217, 45.875824935954213 ] } }, -{ "type": "Feature", "properties": { "id": "2958", "nom": "Terraillon - Lessivas", "desserte": "52A:R,C15A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2823", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.919482905293732, 45.743606502283683 ] } }, -{ "type": "Feature", "properties": { "id": "11330", "nom": "Langevin", "desserte": "93A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1816", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.881673589357108, 45.70193015266068 ] } }, -{ "type": "Feature", "properties": { "id": "11940", "nom": "Grande Rue de St Clair", "desserte": "9A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3170", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.859489412079694, 45.790859505631147 ] } }, -{ "type": "Feature", "properties": { "id": "12037", "nom": "Dardilly St Joseph", "desserte": "3A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3199", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.755379190740667, 45.803923729795841 ] } }, -{ "type": "Feature", "properties": { "id": "12038", "nom": "Edouard Aynard", "desserte": "19A:A,S15A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3201", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.778931904778807, 45.776717191910151 ] } }, -{ "type": "Feature", "properties": { "id": "12039", "nom": "Edouard Aynard", "desserte": "19A:R,S15A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3202", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.778875709267091, 45.776610402127858 ] } }, -{ "type": "Feature", "properties": { "id": "12045", "nom": "Gare de Vaise", "desserte": "118A:R,20A:R,21A:R,22A:R,23A:R,2A:R,31A:R,40A:R,43A:R,4A:R,61A:R,6A:R,71A:R,84A:R,89A:R,942A:R,C14A:A,C14A:R,S11A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "258", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.805236320803305, 45.780984601822652 ] } }, -{ "type": "Feature", "properties": { "id": "12063", "nom": "Paul Chevrel", "desserte": "20A:A,23A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3216", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.800183958800172, 45.819548265585759 ] } }, -{ "type": "Feature", "properties": { "id": "12076", "nom": "Pont Masaryk", "desserte": "40A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3223", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.810793062959216, 45.7778911432206 ] } }, -{ "type": "Feature", "properties": { "id": "12079", "nom": "Les Malandieres", "desserte": "43A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3226", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.812219889366514, 45.892994678503591 ] } }, -{ "type": "Feature", "properties": { "id": "12082", "nom": "Clinique Charcot", "desserte": "C20A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1187", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.79849561993239, 45.750240953455176 ] } }, -{ "type": "Feature", "properties": { "id": "12151", "nom": "L'Avenir", "desserte": "C24B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3234", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.709973031707883, 45.746653759615334 ] } }, -{ "type": "Feature", "properties": { "id": "12169", "nom": "J. Ambre Hopital entree pieton", "desserte": "C13A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3242", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.832547241100462, 45.780686988072908 ] } }, -{ "type": "Feature", "properties": { "id": "12190", "nom": "Centre Communal du Vallon", "desserte": "90A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3256", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.793107622462236, 45.741583018370036 ] } }, -{ "type": "Feature", "properties": { "id": "12199", "nom": "Pont des Razes", "desserte": "60A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "175", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.850617306313084, 45.668020965604107 ] } }, -{ "type": "Feature", "properties": { "id": "12203", "nom": "11 Novembre 1918", "desserte": "93A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3145", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.863197695634485, 45.688710991102639 ] } }, -{ "type": "Feature", "properties": { "id": "12211", "nom": "Charcot - La Source", "desserte": "C20A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3734", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.792337381019334, 45.748233616814211 ] } }, -{ "type": "Feature", "properties": { "id": "12217", "nom": "Berthet", "desserte": "49A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3739", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.807717640178909, 45.746878937883864 ] } }, -{ "type": "Feature", "properties": { "id": "12219", "nom": "Chavril - Brulet", "desserte": "49A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3742", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.803518146835635, 45.747268349570497 ] } }, -{ "type": "Feature", "properties": { "id": "12229", "nom": "Charcot - La Source", "desserte": "45A:R,C20A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3735", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.792204122917919, 45.748128520260394 ] } }, -{ "type": "Feature", "properties": { "id": "12230", "nom": "Domremy - Lacassagne", "desserte": "25A:R,C13A:A,C16A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3114", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.872870050127154, 45.751222432333336 ] } }, -{ "type": "Feature", "properties": { "id": "12231", "nom": "Rue du Parc", "desserte": "26A:A,79A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3730", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.891795648493291, 45.729874093575212 ] } }, -{ "type": "Feature", "properties": { "id": "46050", "nom": "Cordeliers", "desserte": "301A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "31", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.835737932298324, 45.763423764143496 ] } }, -{ "type": "Feature", "properties": { "id": "619", "nom": "Couzon", "desserte": "43A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1241", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.832426424691574, 45.845786583215393 ] } }, -{ "type": "Feature", "properties": { "id": "985", "nom": "Fromentin", "desserte": "21A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1443", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.763760555518024, 45.872510764014031 ] } }, -{ "type": "Feature", "properties": { "id": "1012", "nom": "Gare de Vaise", "desserte": "C6B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "264", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.805092592184905, 45.781221789513104 ] } }, -{ "type": "Feature", "properties": { "id": "1061", "nom": "Gorge de Loup", "desserte": "3A:A,3A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "59", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.804952525489962, 45.766922143449278 ] } }, -{ "type": "Feature", "properties": { "id": "1207", "nom": "Ile Barbe", "desserte": "40A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1574", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.830518954628356, 45.795818039006946 ] } }, -{ "type": "Feature", "properties": { "id": "1307", "nom": "Gare de Francheville", "desserte": "C20A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1656", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.768326358252179, 45.73526402182101 ] } }, -{ "type": "Feature", "properties": { "id": "1588", "nom": "Le Vernay", "desserte": "33A:A,70A:A,77A:A,9A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1893", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.857122480148283, 45.80940131599575 ] } }, -{ "type": "Feature", "properties": { "id": "1640", "nom": "Les Selettes", "desserte": "15A:A,18B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1938", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.820385832817388, 45.658397727468646 ] } }, -{ "type": "Feature", "properties": { "id": "1798", "nom": "Limonest Place", "desserte": "21A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2077", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.771474154023887, 45.836069783911235 ] } }, -{ "type": "Feature", "properties": { "id": "1814", "nom": "Louise Michel", "desserte": "C17A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2089", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.894402675710549, 45.774083399955217 ] } }, -{ "type": "Feature", "properties": { "id": "2744", "nom": "Square des Monts d'Or", "desserte": "84A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2677", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.827119648026905, 45.874195240971503 ] } }, -{ "type": "Feature", "properties": { "id": "3104", "nom": "Verdun - Victor Hugo", "desserte": "67A:R,95A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2932", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.996375481567338, 45.779195093007061 ] } }, -{ "type": "Feature", "properties": { "id": "3516", "nom": "Leclerc - Drevet", "desserte": "C2A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3086", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.871238687736524, 45.808480670483831 ] } }, -{ "type": "Feature", "properties": { "id": "10224", "nom": "Camp Militaire", "desserte": "33A:A,77A:A,9A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3339", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.86924075784553, 45.819455544099682 ] } }, -{ "type": "Feature", "properties": { "id": "10366", "nom": "Decines Beauregard", "desserte": "79A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3404", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.944036571754426, 45.752787476881871 ] } }, -{ "type": "Feature", "properties": { "id": "11392", "nom": "Parilly", "desserte": "26A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "150", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.886883253915748, 45.719832381098733 ] } }, -{ "type": "Feature", "properties": { "id": "11426", "nom": "St Germain Four a Chaux", "desserte": "96A:A,96A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3687", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.806174694140989, 45.888995954111962 ] } }, -{ "type": "Feature", "properties": { "id": "11949", "nom": "St Fons Gabriel Peri", "desserte": "93A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3651", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.855733982875259, 45.705801206841095 ] } }, -{ "type": "Feature", "properties": { "id": "11987", "nom": "Henri Germain", "desserte": "62A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3178", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.903746455274344, 45.704190498740815 ] } }, -{ "type": "Feature", "properties": { "id": "34212", "nom": "Guilloux", "desserte": "17B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3938", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.807554128309593, 45.689122884295678 ] } }, -{ "type": "Feature", "properties": { "id": "40434", "nom": "Route de Mions", "desserte": "62A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2607", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.947003069072398, 45.684414793059602 ] } }, -{ "type": "Feature", "properties": { "id": "40574", "nom": "Pays Bas", "desserte": "67A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4593", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 5.028414444525938, 45.759581875853002 ] } }, -{ "type": "Feature", "properties": { "id": "40619", "nom": "Z.A Barolles", "desserte": "78B:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4596", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.782100565005273, 45.675558444280782 ] } }, -{ "type": "Feature", "properties": { "id": "46166", "nom": "Kellermann", "desserte": "15A:A,17B:A,18B:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1636", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.817336532548766, 45.7137665771697 ] } }, -{ "type": "Feature", "properties": { "id": "46264", "nom": "Ste Foy Place Saint Luc", "desserte": "17B:A,17B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5212", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.800624266306289, 45.748661368386024 ] } }, -{ "type": "Feature", "properties": { "id": "46297", "nom": "Gare d'Ecully", "desserte": "S15A:A,S15A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5852", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.779085098174573, 45.764956315716915 ] } }, -{ "type": "Feature", "properties": { "id": "46329", "nom": "Rond-Point d'Italie", "desserte": "ZI5B:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5465", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.992756018658906, 45.713342307421271 ] } }, -{ "type": "Feature", "properties": { "id": "46337", "nom": "ZI du Mariage", "desserte": "28A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5473", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 5.075131642187483, 45.76602222505317 ] } }, -{ "type": "Feature", "properties": { "id": "185", "nom": "Benoit Bernard", "desserte": "35A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "915", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.852474536443439, 45.738503644931498 ] } }, -{ "type": "Feature", "properties": { "id": "1573", "nom": "Le Rontey", "desserte": "85A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1882", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 5.005422337866303, 45.781636057475616 ] } }, -{ "type": "Feature", "properties": { "id": "2745", "nom": "Square des Monts d'Or", "desserte": "84A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2676", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.826897943176723, 45.874137140469131 ] } }, -{ "type": "Feature", "properties": { "id": "3091", "nom": "Venissieux Marronniers", "desserte": "C12A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2929", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.877889869845659, 45.705400417831591 ] } }, -{ "type": "Feature", "properties": { "id": "3324", "nom": "Pont des Razes", "desserte": "60A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "174", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.850564272682428, 45.667140039170356 ] } }, -{ "type": "Feature", "properties": { "id": "11331", "nom": "Venissieux Emile Zola", "desserte": "93A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3655", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.886627823168335, 45.702942778247284 ] } }, -{ "type": "Feature", "properties": { "id": "11427", "nom": "St Germain Four a Chaux", "desserte": "96A:A,96A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3686", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.806324298196329, 45.88859661671767 ] } }, -{ "type": "Feature", "properties": { "id": "11739", "nom": "Gare Part-Dieu Villette", "desserte": "296:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "539", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.86308385930074, 45.760714424033765 ] } }, -{ "type": "Feature", "properties": { "id": "11745", "nom": "Mions Liberation", "desserte": "296:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3104", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.953674439844034, 45.658865810670882 ] } }, -{ "type": "Feature", "properties": { "id": "11746", "nom": "Mions Liberation", "desserte": "296:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3105", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.953843267813983, 45.658906875589352 ] } }, -{ "type": "Feature", "properties": { "id": "11760", "nom": "Roger Salengro", "desserte": "26A:A,C15A:A,C17A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3115", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.90554868086898, 45.726850657713747 ] } }, -{ "type": "Feature", "properties": { "id": "11761", "nom": "Roger Salengro", "desserte": "26A:R,C15A:R,C17A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3116", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.904991165568631, 45.726746402575444 ] } }, -{ "type": "Feature", "properties": { "id": "11847", "nom": "Clinique de Vaulx", "desserte": "7A:R,83A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3132", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.924565208365068, 45.790711300166684 ] } }, -{ "type": "Feature", "properties": { "id": "11862", "nom": "Belle Etoile", "desserte": "ZI6A:A,ZI6A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3141", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.845430141848118, 45.684645347734936 ] } }, -{ "type": "Feature", "properties": { "id": "11868", "nom": "St Fons Semard", "desserte": "ZI6A:A,ZI6A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3143", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.845005214965558, 45.694772197909224 ] } }, -{ "type": "Feature", "properties": { "id": "11872", "nom": "St Fons Recherche", "desserte": "ZI6A:A,ZI6A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3144", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.847671670687401, 45.684235120614012 ] } }, -{ "type": "Feature", "properties": { "id": "11879", "nom": "Lortet", "desserte": "ZI6A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3147", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.840446927646095, 45.741427978994913 ] } }, -{ "type": "Feature", "properties": { "id": "11880", "nom": "Interpol", "desserte": "C1A:A,C4A:A,C5A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3152", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.850220529085771, 45.782597130883993 ] } }, -{ "type": "Feature", "properties": { "id": "11881", "nom": "Interpol", "desserte": "171:R,C1A:R,C4A:R,C5A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3151", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.84968044760211, 45.782321177510276 ] } }, -{ "type": "Feature", "properties": { "id": "11883", "nom": "Musee d'Art Contemporain", "desserte": "171:R,C1A:R,C4A:R,C5A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3154", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.852433552422236, 45.783726742965122 ] } }, -{ "type": "Feature", "properties": { "id": "11898", "nom": "Charlemagne - C.-Perier", "desserte": "S1A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3158", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.821998064315379, 45.742252101171715 ] } }, -{ "type": "Feature", "properties": { "id": "41077", "nom": "Chemin de la Poterie", "desserte": "73A:R,C24B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4638", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.761125221178383, 45.749402549378537 ] } }, -{ "type": "Feature", "properties": { "id": "41094", "nom": "Brunier - Guyot", "desserte": "S5A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4640", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.831246456629997, 45.79058119157969 ] } }, -{ "type": "Feature", "properties": { "id": "41095", "nom": "Brunier - Guyot", "desserte": "S5A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4639", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.831643497709464, 45.791391481572347 ] } }, -{ "type": "Feature", "properties": { "id": "41096", "nom": "Pierre Brunier", "desserte": "S5A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4642", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.83059358853775, 45.789236509773481 ] } }, -{ "type": "Feature", "properties": { "id": "41100", "nom": "Place du Capot", "desserte": "S5A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3346", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.835605470720135, 45.791933490289303 ] } }, -{ "type": "Feature", "properties": { "id": "45767", "nom": "De Tassigny - Curial", "desserte": "C15A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5022", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.91678835485946, 45.73632420510139 ] } }, -{ "type": "Feature", "properties": { "id": "46339", "nom": "L'Odyssee", "desserte": "28A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5475", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 5.063148760672544, 45.764016185577631 ] } }, -{ "type": "Feature", "properties": { "id": "159", "nom": "Bellecour Chambonnet", "desserte": "27A:R,40A:A,C20A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "899", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.830443202589592, 45.758968910533767 ] } }, -{ "type": "Feature", "properties": { "id": "1514", "nom": "Laurent Bonnevay", "desserte": "C8A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "228", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.909268741521394, 45.764922411893913 ] } }, -{ "type": "Feature", "properties": { "id": "1631", "nom": "Les Brosses de Marcy", "desserte": "72B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1926", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.705187035936052, 45.775524588876102 ] } }, -{ "type": "Feature", "properties": { "id": "11275", "nom": "Parc du Chene", "desserte": "52A:A,79A:A,ZI7A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3638", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.926863270728561, 45.73898069512623 ] } }, -{ "type": "Feature", "properties": { "id": "11332", "nom": "Venissieux Emile Zola", "desserte": "93A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3656", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.886287082884202, 45.702797503291222 ] } }, -{ "type": "Feature", "properties": { "id": "11440", "nom": "Ecole N.D. Bellegarde", "desserte": "84A:A,84A:R,96A:A,96A:R,97A:A,97A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3699", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.842011209161111, 45.87040803560555 ] } }, -{ "type": "Feature", "properties": { "id": "11443", "nom": "Garibaldi - Tronchet", "desserte": "38A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3701", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.850340967234949, 45.769470625766274 ] } }, -{ "type": "Feature", "properties": { "id": "11444", "nom": "Garibaldi - Gambetta", "desserte": "C7B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1464", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.853559296115194, 45.751261044791569 ] } }, -{ "type": "Feature", "properties": { "id": "11452", "nom": "St Germain Pain Beni", "desserte": "21A:A,96A:A,96A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3529", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.799467919665995, 45.883733240090635 ] } }, -{ "type": "Feature", "properties": { "id": "11498", "nom": "Villebois Mareuil", "desserte": "69A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3706", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.874573563743269, 45.754703434912862 ] } }, -{ "type": "Feature", "properties": { "id": "11499", "nom": "Villebois Mareuil", "desserte": "69A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3705", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.874510581318989, 45.754731862762128 ] } }, -{ "type": "Feature", "properties": { "id": "11500", "nom": "Dauphiné -Lacassagne", "desserte": "69A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "546", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.869025724747239, 45.752623415891826 ] } }, -{ "type": "Feature", "properties": { "id": "11501", "nom": "Dauphiné -Lacassagne", "desserte": "69A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "544", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.868977242137634, 45.75268751860218 ] } }, -{ "type": "Feature", "properties": { "id": "11502", "nom": "St Philippe", "desserte": "69A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3708", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.865155070673111, 45.750937423829939 ] } }, -{ "type": "Feature", "properties": { "id": "11503", "nom": "St Philippe", "desserte": "69A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3707", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.865122322019412, 45.751064179192845 ] } }, -{ "type": "Feature", "properties": { "id": "11504", "nom": "Sans Souci", "desserte": "69A:A,69A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "190", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.863507644641014, 45.748382161378288 ] } }, -{ "type": "Feature", "properties": { "id": "11505", "nom": "Manufacture Montluc", "desserte": "69A:A,69A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "760", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.861023646034574, 45.749167156370952 ] } }, -{ "type": "Feature", "properties": { "id": "11515", "nom": "Vaulx Les Grolieres", "desserte": "37A:R,52A:A,7A:R,C3A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2911", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.910389835507752, 45.787508372838261 ] } }, -{ "type": "Feature", "properties": { "id": "11516", "nom": "Vaulx Les Grolieres", "desserte": "37A:A,52A:R,7A:A,C3A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2910", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.910411301400055, 45.787966955870871 ] } }, -{ "type": "Feature", "properties": { "id": "11520", "nom": "Bellecour A.Poncet", "desserte": "448A:A,C9A:A,C9A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "897", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.834411433398591, 45.756018319537979 ] } }, -{ "type": "Feature", "properties": { "id": "11747", "nom": "Mions Croix Rouge", "desserte": "296:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3106", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.953901192933524, 45.652559425901373 ] } }, -{ "type": "Feature", "properties": { "id": "11753", "nom": "Jean Vallier", "desserte": "ZI6A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3109", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.839108729058925, 45.732636694617185 ] } }, -{ "type": "Feature", "properties": { "id": "45769", "nom": "De Tassigny - Curial", "desserte": "79A:A,C15A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5020", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.917731599518798, 45.736967721275455 ] } }, -{ "type": "Feature", "properties": { "id": "46344", "nom": "Pusignan Mairie", "desserte": "28A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5480", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 5.067314710871982, 45.755221274928616 ] } }, -{ "type": "Feature", "properties": { "id": "46345", "nom": "Pusignan Mairie", "desserte": "28A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5481", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 5.067409761128016, 45.755685271658244 ] } }, -{ "type": "Feature", "properties": { "id": "46346", "nom": "Moifond", "desserte": "28A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5482", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 5.070780648453568, 45.749091292856306 ] } }, -{ "type": "Feature", "properties": { "id": "46348", "nom": "ZI Satolas Green", "desserte": "28A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5484", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 5.064189699718295, 45.745126242253249 ] } }, -{ "type": "Feature", "properties": { "id": "46357", "nom": "La Petite Gare", "desserte": "R1B:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5491", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 5.084749828741694, 45.80103721140366 ] } }, -{ "type": "Feature", "properties": { "id": "56", "nom": "Ampere - Lavoisier", "desserte": "76A:R,ZI5B:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "828", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.970227862190007, 45.731796345563708 ] } }, -{ "type": "Feature", "properties": { "id": "96", "nom": "Avignon", "desserte": "93A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "860", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.857100159373121, 45.691863636830178 ] } }, -{ "type": "Feature", "properties": { "id": "398", "nom": "Chantabeau", "desserte": "GE2A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1085", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.837775664776593, 45.641646946968045 ] } }, -{ "type": "Feature", "properties": { "id": "583", "nom": "Le Grand Roule", "desserte": "17B:A,8A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1227", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.807621672036396, 45.730139096499244 ] } }, -{ "type": "Feature", "properties": { "id": "1515", "nom": "Laurent Bonnevay", "desserte": "C8A:A,C8A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "223", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.908514521514006, 45.765020702237869 ] } }, -{ "type": "Feature", "properties": { "id": "1542", "nom": "Le Gregoire", "desserte": "3A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1850", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.750775004822906, 45.815426952151284 ] } }, -{ "type": "Feature", "properties": { "id": "1691", "nom": "Les Grandes Terres", "desserte": "28A:A,68B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1982", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.977641757682107, 45.736023918218194 ] } }, -{ "type": "Feature", "properties": { "id": "2824", "nom": "Parc d'activites T.Garnier", "desserte": "C22A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2745", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.846212928544223, 45.729453643208295 ] } }, -{ "type": "Feature", "properties": { "id": "10150", "nom": "Bron Jules Mas", "desserte": "24A:R,79A:R,C17A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "971", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.910342023222221, 45.735634194319417 ] } }, -{ "type": "Feature", "properties": { "id": "10440", "nom": "Dardilly Les Mouilles", "desserte": "3A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3434", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.760177643761649, 45.797456641798526 ] } }, -{ "type": "Feature", "properties": { "id": "10678", "nom": "Antoine Vollon", "desserte": "S1A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3509", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.82727508514842, 45.755456788792159 ] } }, -{ "type": "Feature", "properties": { "id": "11305", "nom": "Surville Route de Vienne", "desserte": "C12A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2802", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.854635417109088, 45.718301502254 ] } }, -{ "type": "Feature", "properties": { "id": "11325", "nom": "St Fons Gabriel Peri", "desserte": "93A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3652", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.855297938988813, 45.707503219129975 ] } }, -{ "type": "Feature", "properties": { "id": "11396", "nom": "Labourbe", "desserte": "79A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3672", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.884358350089444, 45.717477404498489 ] } }, -{ "type": "Feature", "properties": { "id": "11397", "nom": "Labourbe", "desserte": "79A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3673", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.884434953559476, 45.717466663486796 ] } }, -{ "type": "Feature", "properties": { "id": "11400", "nom": "Stade Ph. De Lassalle", "desserte": "S4A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3674", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.820814393538483, 45.783242426025609 ] } }, -{ "type": "Feature", "properties": { "id": "11404", "nom": "Ecluse de Rochetaillee", "desserte": "40A:A,70A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3678", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.83527585824559, 45.844436110144279 ] } }, -{ "type": "Feature", "properties": { "id": "11405", "nom": "Ecluse de Rochetaillee", "desserte": "40A:R,70A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3677", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.835216622747682, 45.844266402313281 ] } }, -{ "type": "Feature", "properties": { "id": "11411", "nom": "Z.I. Genay Neuville", "desserte": "43A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2989", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.825910565158715, 45.890520266959953 ] } }, -{ "type": "Feature", "properties": { "id": "11412", "nom": "Les Lilas", "desserte": "43A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3545", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.830667493436244, 45.892708279529508 ] } }, -{ "type": "Feature", "properties": { "id": "11415", "nom": "L'Aventuriere", "desserte": "S14A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1649", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.835868524232307, 45.887197124611546 ] } }, -{ "type": "Feature", "properties": { "id": "11418", "nom": "Rey Loras", "desserte": "S14A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3681", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.837082043964159, 45.882993547205366 ] } }, -{ "type": "Feature", "properties": { "id": "11419", "nom": "Rey Loras", "desserte": "S14A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3682", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.83709469091648, 45.882705223798403 ] } }, -{ "type": "Feature", "properties": { "id": "11420", "nom": "Rue de Prandieres", "desserte": "S14A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3684", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.836661600709182, 45.885082196471977 ] } }, -{ "type": "Feature", "properties": { "id": "11425", "nom": "Montanay La Tour", "desserte": "97A:A,97A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3685", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.85923882301241, 45.876566989565468 ] } }, -{ "type": "Feature", "properties": { "id": "11434", "nom": "Neuville Place J. Jaures", "desserte": "97A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3692", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.839980417385207, 45.875043926992014 ] } }, -{ "type": "Feature", "properties": { "id": "11435", "nom": "Stade J.Lacaze", "desserte": "96A:A,96A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3693", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.812730058065396, 45.883442136555104 ] } }, -{ "type": "Feature", "properties": { "id": "11439", "nom": "Maison Ampere - Musee", "desserte": "84A:A,84A:R,R2A:A,R2A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3698", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.799786009230565, 45.854049387466212 ] } }, -{ "type": "Feature", "properties": { "id": "84", "nom": "Aubepins", "desserte": "25A:A,C26A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "849", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.892454895961385, 45.750715188091824 ] } }, -{ "type": "Feature", "properties": { "id": "1208", "nom": "Ile Roy", "desserte": "40A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1577", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.858829304653518, 45.824161206472048 ] } }, -{ "type": "Feature", "properties": { "id": "1518", "nom": "Le Bastion", "desserte": "90A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1827", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.814165673735648, 45.759311316238602 ] } }, -{ "type": "Feature", "properties": { "id": "1561", "nom": "Le Prainet", "desserte": "16A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1872", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.966559422367729, 45.765044442223306 ] } }, -{ "type": "Feature", "properties": { "id": "1612", "nom": "Les Arpinieres", "desserte": "C20A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1908", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.749290430994775, 45.734684831576786 ] } }, -{ "type": "Feature", "properties": { "id": "1614", "nom": "Les Aulnes", "desserte": "89A:A,GE4A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1911", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.759519357284109, 45.810261214934499 ] } }, -{ "type": "Feature", "properties": { "id": "1632", "nom": "Les Broussatieres", "desserte": "73A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1929", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.696877909919364, 45.726969848860776 ] } }, -{ "type": "Feature", "properties": { "id": "1655", "nom": "Les Coquelicots", "desserte": "72B:R,98A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1949", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.747060745374354, 45.765659680604692 ] } }, -{ "type": "Feature", "properties": { "id": "3092", "nom": "Venissieux Marronniers", "desserte": "C12A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2928", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.877450228577088, 45.705617406685242 ] } }, -{ "type": "Feature", "properties": { "id": "3105", "nom": "Verlaine", "desserte": "448A:A,69A:A,C3A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2935", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.878868198117203, 45.76249140939337 ] } }, -{ "type": "Feature", "properties": { "id": "10323", "nom": "Georges Pompidou", "desserte": "C9A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5316", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.863201814632701, 45.759082540401472 ] } }, -{ "type": "Feature", "properties": { "id": "10367", "nom": "Decines Jonquilles", "desserte": "79A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3406", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.94877965214305, 45.755458700152488 ] } }, -{ "type": "Feature", "properties": { "id": "10565", "nom": "Piscine d'Alaï", "desserte": "14B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "696", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.771754979797769, 45.750878290924078 ] } }, -{ "type": "Feature", "properties": { "id": "10642", "nom": "Stade du Sauze", "desserte": "5A:A,98A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3502", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.75572501379799, 45.764987281650306 ] } }, -{ "type": "Feature", "properties": { "id": "11041", "nom": "Grisard", "desserte": "50A:A,ZI8A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3588", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.948592945941083, 45.697358052266331 ] } }, -{ "type": "Feature", "properties": { "id": "11199", "nom": "Manissieux Place Balzac", "desserte": "26A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5170", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.977990290118951, 45.707129399100438 ] } }, -{ "type": "Feature", "properties": { "id": "11227", "nom": "Tassin Centre social", "desserte": "98A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2809", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.766296183602858, 45.763525880478383 ] } }, -{ "type": "Feature", "properties": { "id": "11228", "nom": "Marietton - Pont SNCF", "desserte": "5A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3625", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.800291282887033, 45.775989581281678 ] } }, -{ "type": "Feature", "properties": { "id": "11231", "nom": "Mermoz - Pinel", "desserte": "26A:R,79A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "135", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.88727372972033, 45.730202008583383 ] } }, -{ "type": "Feature", "properties": { "id": "11232", "nom": "18 Juin 1940", "desserte": "85A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3627", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.990623279806773, 45.7685020294103 ] } }, -{ "type": "Feature", "properties": { "id": "11238", "nom": "Les Tourelles", "desserte": "40A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3629", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.858038508379876, 45.819552264089438 ] } }, -{ "type": "Feature", "properties": { "id": "11239", "nom": "Les Tourelles", "desserte": "40A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3630", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.858018561513035, 45.819678730306691 ] } }, -{ "type": "Feature", "properties": { "id": "11247", "nom": "Avenue des Avoraux", "desserte": "84A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3632", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.8294186428034, 45.87516146197455 ] } }, -{ "type": "Feature", "properties": { "id": "11248", "nom": "Le Mas Mathieu", "desserte": "97A:A,97A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3631", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.860245886136366, 45.880252978129974 ] } }, -{ "type": "Feature", "properties": { "id": "11276", "nom": "Parc du Chene", "desserte": "52A:R,79A:R,ZI7A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3637", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.92641551594047, 45.739027034009133 ] } }, -{ "type": "Feature", "properties": { "id": "11278", "nom": "St Irenee", "desserte": "46A:R,49A:R,C20A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3296", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.812773629427956, 45.754382427455681 ] } }, -{ "type": "Feature", "properties": { "id": "11429", "nom": "La Poype", "desserte": "97A:A,97A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3689", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.862765469745591, 45.880952546914685 ] } }, -{ "type": "Feature", "properties": { "id": "46171", "nom": "Descartes - Foch", "desserte": "S9A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5137", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.787320959737992, 45.688223107404902 ] } }, -{ "type": "Feature", "properties": { "id": "46359", "nom": "Pommier", "desserte": "R1B:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5493", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 5.084643775497839, 45.795868208535509 ] } }, -{ "type": "Feature", "properties": { "id": "695", "nom": "Decines Bascule", "desserte": "67A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1292", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.961022359428886, 45.771376128179789 ] } }, -{ "type": "Feature", "properties": { "id": "817", "nom": "Cité Internationale - Transbordeur", "desserte": "70A:A,C26A:R,C2A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "604", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.860249168767037, 45.784424519455435 ] } }, -{ "type": "Feature", "properties": { "id": "896", "nom": "Fee des Eaux", "desserte": "15A:A,15A:R,18B:A,18B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1402", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.802158856413359, 45.650078251368782 ] } }, -{ "type": "Feature", "properties": { "id": "928", "nom": "Florian", "desserte": "C11A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1421", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.879788663160983, 45.756808730516084 ] } }, -{ "type": "Feature", "properties": { "id": "1015", "nom": "Garibaldi - Gambetta", "desserte": "C25B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1462", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.853249599793327, 45.751799060729745 ] } }, -{ "type": "Feature", "properties": { "id": "1100", "nom": "Grange Haute", "desserte": "15A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1511", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.822524813690716, 45.675083307137641 ] } }, -{ "type": "Feature", "properties": { "id": "1137", "nom": "Harmonie", "desserte": "C16A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1536", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.872723751662897, 45.748327323899453 ] } }, -{ "type": "Feature", "properties": { "id": "1475", "nom": "La Vosne", "desserte": "97A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1799", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.849313384526882, 45.876798133744416 ] } }, -{ "type": "Feature", "properties": { "id": "1519", "nom": "Le Bastion", "desserte": "90A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1828", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.814462656103074, 45.759052731014961 ] } }, -{ "type": "Feature", "properties": { "id": "1592", "nom": "Le Villard", "desserte": "97A:A,97A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1896", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.86070958872285, 45.875480833760385 ] } }, -{ "type": "Feature", "properties": { "id": "2950", "nom": "Tassin Deperet", "desserte": "5A:R,72B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2814", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.761790420916958, 45.758168745270282 ] } }, -{ "type": "Feature", "properties": { "id": "2952", "nom": "Tassin Gare", "desserte": "5A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2816", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.760716448820253, 45.760352160516248 ] } }, -{ "type": "Feature", "properties": { "id": "3018", "nom": "UFR Lyon-Sud", "desserte": "88B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2870", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.80931031984436, 45.705070038034592 ] } }, -{ "type": "Feature", "properties": { "id": "3035", "nom": "Valmy", "desserte": "2A:R,31A:R,5A:R,C14A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "210", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.806248946212963, 45.774886599836016 ] } }, -{ "type": "Feature", "properties": { "id": "3111", "nom": "Vernaison La Rossignole", "desserte": "78B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2939", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.808194727215956, 45.641579752158428 ] } }, -{ "type": "Feature", "properties": { "id": "11058", "nom": "Croix-Rousse", "desserte": "2A:R,33A:R,448A:A,45A:R,C13A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "333", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.83196401244366, 45.774354116461133 ] } }, -{ "type": "Feature", "properties": { "id": "11060", "nom": "Fayolle", "desserte": "20A:A,71A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3594", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.820390123684873, 45.802334270290935 ] } }, -{ "type": "Feature", "properties": { "id": "11061", "nom": "Fayolle", "desserte": "20A:R,71A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3592", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.820120258555735, 45.801773161813024 ] } }, -{ "type": "Feature", "properties": { "id": "11072", "nom": "La Trappe", "desserte": "19A:A,3A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3595", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.797791522887644, 45.76813246607496 ] } }, -{ "type": "Feature", "properties": { "id": "11073", "nom": "La Trappe", "desserte": "19A:R,3A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3596", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.797688706933247, 45.767846686090536 ] } }, -{ "type": "Feature", "properties": { "id": "11079", "nom": "Route de Lyon", "desserte": "54A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3573", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.895543858980329, 45.677796905633926 ] } }, -{ "type": "Feature", "properties": { "id": "11089", "nom": "Caluire Hotel de Ville Radiant", "desserte": "33A:A,38A:A,S5A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3600", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.843620746481293, 45.797272641964035 ] } }, -{ "type": "Feature", "properties": { "id": "11090", "nom": "Caluire Hotel de Ville Radiant", "desserte": "33A:R,38A:R,S5A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3601", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.84322278322524, 45.797011485423042 ] } }, -{ "type": "Feature", "properties": { "id": "11108", "nom": "Balme Baron", "desserte": "S5A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3610", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.874092123984599, 45.800585068327322 ] } }, -{ "type": "Feature", "properties": { "id": "11897", "nom": "Artaud", "desserte": "S4A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3017", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.836061682802629, 45.781022880688482 ] } }, -{ "type": "Feature", "properties": { "id": "45774", "nom": "De Tassigny - Curial", "desserte": "24A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5024", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.916058682356795, 45.736655128184175 ] } }, -{ "type": "Feature", "properties": { "id": "46360", "nom": "Pommier", "desserte": "R1B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5494", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 5.084126805239229, 45.794748190724235 ] } }, -{ "type": "Feature", "properties": { "id": "46364", "nom": "Bornicat", "desserte": "29A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5495", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 5.000060064722023, 45.722450275425174 ] } }, -{ "type": "Feature", "properties": { "id": "573", "nom": "Coblod - Rosenberg", "desserte": "35A:R,54A:R,87A:R,ZI1A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1217", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.89209143317401, 45.7005320954067 ] } }, -{ "type": "Feature", "properties": { "id": "930", "nom": "Foch", "desserte": "27A:A,C4A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "305", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.843893943056147, 45.769119706333854 ] } }, -{ "type": "Feature", "properties": { "id": "949", "nom": "Fort de Montessuy", "desserte": "C13A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1433", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.848637451387653, 45.791876833458247 ] } }, -{ "type": "Feature", "properties": { "id": "990", "nom": "St Genis Gadagne", "desserte": "78B:R,88B:A,C10A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1448", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.796083290985639, 45.701733475170734 ] } }, -{ "type": "Feature", "properties": { "id": "1091", "nom": "Grange Blanche", "desserte": "C8A:A,C8A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "74", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.878937874349123, 45.743128011947881 ] } }, -{ "type": "Feature", "properties": { "id": "1125", "nom": "Guillermin - Terraillon", "desserte": "52A:A,C15A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1525", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.918598193643994, 45.745301126550942 ] } }, -{ "type": "Feature", "properties": { "id": "1543", "nom": "Le Gregoire", "desserte": "3A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1851", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.750675848605142, 45.815807122162063 ] } }, -{ "type": "Feature", "properties": { "id": "1562", "nom": "Le Prainet", "desserte": "16A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1871", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.965886590646654, 45.76469113092049 ] } }, -{ "type": "Feature", "properties": { "id": "10763", "nom": "Hauts de Vassieux", "desserte": "70A:R,S5A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3525", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.862253566435305, 45.801454934344584 ] } }, -{ "type": "Feature", "properties": { "id": "10788", "nom": "Croix Paquet", "desserte": "303:A,303:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "331", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.836311872840577, 45.770960368952153 ] } }, -{ "type": "Feature", "properties": { "id": "10797", "nom": "Cite Tase", "desserte": "52A:R,68B:R,ZI5B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1180", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.928724113746439, 45.758290942745809 ] } }, -{ "type": "Feature", "properties": { "id": "10912", "nom": "Z.I. Thimonnier", "desserte": "43A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3538", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.821850243908846, 45.888173737009602 ] } }, -{ "type": "Feature", "properties": { "id": "10914", "nom": "Z.I. Freres Lumiere", "desserte": "43A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3541", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.818305477077126, 45.886460728032574 ] } }, -{ "type": "Feature", "properties": { "id": "10916", "nom": "Z.I. Jacquard", "desserte": "43A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3543", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.817075517282591, 45.887766029441913 ] } }, -{ "type": "Feature", "properties": { "id": "10920", "nom": "Bellecour St Exupery", "desserte": "S1A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3421", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.830345352755446, 45.757944952825369 ] } }, -{ "type": "Feature", "properties": { "id": "10964", "nom": "Caluire Place Foch", "desserte": "77A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1021", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.85089876295939, 45.797713066174182 ] } }, -{ "type": "Feature", "properties": { "id": "10966", "nom": "Neuville", "desserte": "84A:R,R2A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "600", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.838589948311559, 45.875920986928556 ] } }, -{ "type": "Feature", "properties": { "id": "10972", "nom": "Cuire Le Bas", "desserte": "S5A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3556", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.828191868535164, 45.794159452755132 ] } }, -{ "type": "Feature", "properties": { "id": "10973", "nom": "Montee des Forts", "desserte": "S5A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3558", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.83338172745752, 45.793684168897421 ] } }, -{ "type": "Feature", "properties": { "id": "10990", "nom": "Parc des Sports", "desserte": "S5A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3565", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.869322453577398, 45.801529827076067 ] } }, -{ "type": "Feature", "properties": { "id": "10998", "nom": "Rue d'Island", "desserte": "43A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3571", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.853222438779026, 45.82543006470631 ] } }, -{ "type": "Feature", "properties": { "id": "10999", "nom": "Caluire Place Foch", "desserte": "77A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1024", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.850812171794973, 45.797507975050067 ] } }, -{ "type": "Feature", "properties": { "id": "11002", "nom": "Montchat Place Ronde", "desserte": "C9A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "686", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.890878279110446, 45.754144586174256 ] } }, -{ "type": "Feature", "properties": { "id": "11006", "nom": "Ecully Centre", "desserte": "3A:A,55A:A,S15A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1376", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.778020020415041, 45.774787225684122 ] } }, -{ "type": "Feature", "properties": { "id": "11014", "nom": "Grange Blanche", "desserte": "C16A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "71", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.877988350704487, 45.743167519471235 ] } }, -{ "type": "Feature", "properties": { "id": "11025", "nom": "Venissieux Allende", "desserte": "35A:R,ZI1A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3575", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.901572437000454, 45.696958135323186 ] } }, -{ "type": "Feature", "properties": { "id": "12236", "nom": "Theatre Eglise Notre Dame", "desserte": "45A:R,46A:R,90A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3722", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.79525105046924, 45.758485005479272 ] } }, -{ "type": "Feature", "properties": { "id": "46414", "nom": "St-Bonnet Centre", "desserte": "1EX:R,R4B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5383", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 5.031190677484557, 45.692471391410045 ] } }, -{ "type": "Feature", "properties": { "id": "88", "nom": "Audibert Lavirotte", "desserte": "35A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "852", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.856750425907971, 45.735311288125793 ] } }, -{ "type": "Feature", "properties": { "id": "111", "nom": "Balmont Bas", "desserte": "S11A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "867", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.800951782475803, 45.78355399693185 ] } }, -{ "type": "Feature", "properties": { "id": "130", "nom": "Bastero - Aquarium", "desserte": "63A:A,8A:A,C10A:A,C7B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "883", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.814479672028833, 45.726594465150662 ] } }, -{ "type": "Feature", "properties": { "id": "574", "nom": "Colbert", "desserte": "S6A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1219", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.834393430814157, 45.772616882555091 ] } }, -{ "type": "Feature", "properties": { "id": "801", "nom": "Dumas - Salengro", "desserte": "52A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1351", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.92879416659427, 45.753500526035111 ] } }, -{ "type": "Feature", "properties": { "id": "931", "nom": "Foch", "desserte": "27A:R,C4A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "306", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.843983902854596, 45.768271583684488 ] } }, -{ "type": "Feature", "properties": { "id": "932", "nom": "Fonderie", "desserte": "57A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1425", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.918830473834742, 45.782579882386123 ] } }, -{ "type": "Feature", "properties": { "id": "1633", "nom": "Les Broussatieres", "desserte": "73A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1928", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.696831679657518, 45.726790808318228 ] } }, -{ "type": "Feature", "properties": { "id": "1647", "nom": "Les Chenes", "desserte": "68B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1942", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.955790587965837, 45.743089180593742 ] } }, -{ "type": "Feature", "properties": { "id": "3477", "nom": "Pasteur - Etats-Unis", "desserte": "62A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3065", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.922179873203805, 45.700040488097976 ] } }, -{ "type": "Feature", "properties": { "id": "10441", "nom": "Dardilly Les Mouilles", "desserte": "3A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3433", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.75941953841201, 45.797481995455456 ] } }, -{ "type": "Feature", "properties": { "id": "10459", "nom": "Montee de la Boucle", "desserte": "38A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3449", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.838959355541317, 45.781939484707245 ] } }, -{ "type": "Feature", "properties": { "id": "10518", "nom": "Demi-Lune Victor Hugo", "desserte": "5A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3469", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.784098076263755, 45.766199547052693 ] } }, -{ "type": "Feature", "properties": { "id": "10525", "nom": "1ere D.F.L.", "desserte": "46A:R,49A:R,C19A:R,C20A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3471", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.814999276283259, 45.750696870050824 ] } }, -{ "type": "Feature", "properties": { "id": "10526", "nom": "4 Chemins - La Salette", "desserte": "45A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "794", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.795658523036329, 45.750051117030416 ] } }, -{ "type": "Feature", "properties": { "id": "10528", "nom": "Belle Croix", "desserte": "21A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3474", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.769926216196432, 45.842989098478732 ] } }, -{ "type": "Feature", "properties": { "id": "10543", "nom": "Limonest Maison Retraite", "desserte": "21A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3481", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.772332342325614, 45.840614725583286 ] } }, -{ "type": "Feature", "properties": { "id": "10552", "nom": "Jacques Prevert", "desserte": "111A:A,54A:A,76A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3482", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.895135750508082, 45.662098862652257 ] } }, -{ "type": "Feature", "properties": { "id": "10566", "nom": "Gorge de Loup", "desserte": "19A:A,19A:R,45A:R,90A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "56", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.804501211912813, 45.766896059873126 ] } }, -{ "type": "Feature", "properties": { "id": "10568", "nom": "Carrefour Liberation", "desserte": "72B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1036", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.77601371325895, 45.757905575569296 ] } }, -{ "type": "Feature", "properties": { "id": "10585", "nom": "Lycee Cuzin", "desserte": "70A:A,C2A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3490", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.854884241116657, 45.800720236016673 ] } }, -{ "type": "Feature", "properties": { "id": "10591", "nom": "Decines Champ Fleuri", "desserte": "67A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1297", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.972455820526808, 45.773484798283327 ] } }, -{ "type": "Feature", "properties": { "id": "10679", "nom": "Franklin", "desserte": "S1A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3510", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.831113273830882, 45.752019266982479 ] } }, -{ "type": "Feature", "properties": { "id": "10683", "nom": "Simon Maupin", "desserte": "27A:A,S1A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3513", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.833951537425709, 45.758917924782665 ] } }, -{ "type": "Feature", "properties": { "id": "10684", "nom": "Simon Maupin", "desserte": "S1A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3512", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.833180731091376, 45.758367995800711 ] } }, -{ "type": "Feature", "properties": { "id": "10685", "nom": "Jacobins", "desserte": "27A:A,S1A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1597", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.834049070315661, 45.760499960285856 ] } }, -{ "type": "Feature", "properties": { "id": "10696", "nom": "Guillotière - Gabriel Péri", "desserte": "C12A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "97", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.843509985037686, 45.755050401257002 ] } }, -{ "type": "Feature", "properties": { "id": "46416", "nom": "Rue Neuve", "desserte": "1EX:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5385", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 5.024246847405321, 45.694603416706983 ] } }, -{ "type": "Feature", "properties": { "id": "933", "nom": "Fonderie", "desserte": "57A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1424", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.918766215826297, 45.782581359565825 ] } }, -{ "type": "Feature", "properties": { "id": "1532", "nom": "Le Chene Rond", "desserte": "86A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1843", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.741280531059981, 45.794361388306051 ] } }, -{ "type": "Feature", "properties": { "id": "1648", "nom": "Les Chevalieres", "desserte": "S7A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1944", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.838205469060111, 45.810337153176505 ] } }, -{ "type": "Feature", "properties": { "id": "3100", "nom": "Venissieux St Exupery", "desserte": "35A:A,54A:A,87A:A,ZI1A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2931", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.894436899245446, 45.698480323528891 ] } }, -{ "type": "Feature", "properties": { "id": "10190", "nom": "Residence Marianne", "desserte": "62A:R,87A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3320", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.959487282533275, 45.66502201744705 ] } }, -{ "type": "Feature", "properties": { "id": "10198", "nom": "Hénon", "desserte": "2A:A,33A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "103", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.827672129192549, 45.778825054221514 ] } }, -{ "type": "Feature", "properties": { "id": "10228", "nom": "Chemin de Rivery", "desserte": "77A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3345", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.870673103243945, 45.837540888283719 ] } }, -{ "type": "Feature", "properties": { "id": "10236", "nom": "Fontaines St Martin Centre", "desserte": "77A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3350", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.854317918569299, 45.844848417325771 ] } }, -{ "type": "Feature", "properties": { "id": "10239", "nom": "Brossolette - Genas", "desserte": "C15A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "982", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.917847896541105, 45.748765937495605 ] } }, -{ "type": "Feature", "properties": { "id": "10264", "nom": "Crepieux La Pape", "desserte": "S8A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3361", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.885157781632623, 45.805537394506544 ] } }, -{ "type": "Feature", "properties": { "id": "10265", "nom": "Buissiere - Viralamande(D)", "desserte": "171:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3365", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.883418510856361, 45.804388648735653 ] } }, -{ "type": "Feature", "properties": { "id": "10266", "nom": "Buissiere - Viralamande(D)", "desserte": "171:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3364", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.881846911918444, 45.803524124074492 ] } }, -{ "type": "Feature", "properties": { "id": "10280", "nom": "Alai", "desserte": "73A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3371", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.766998863477473, 45.751485426134188 ] } }, -{ "type": "Feature", "properties": { "id": "10302", "nom": "La Vallonniere", "desserte": "14B:A,19A:R,3A:R,45A:R,72B:R,86A:R,90A:R,98A:R,C21A:A,C21A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3299", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.801872212898268, 45.765342623424175 ] } }, -{ "type": "Feature", "properties": { "id": "10304", "nom": "Eglise Demi-Lune", "desserte": "14B:R,72B:A,C24B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "730", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.78529887453171, 45.76428315296257 ] } }, -{ "type": "Feature", "properties": { "id": "10326", "nom": "Sacre Coeur", "desserte": "C9A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3380", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.868656121531749, 45.759400715825763 ] } }, -{ "type": "Feature", "properties": { "id": "10328", "nom": "Ferrandiere", "desserte": "C9A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3384", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.873142441552071, 45.759641488608544 ] } }, -{ "type": "Feature", "properties": { "id": "10331", "nom": "Maisons Neuves", "desserte": "69A:A,C9A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2121", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.876362125167837, 45.756679275410036 ] } }, -{ "type": "Feature", "properties": { "id": "10332", "nom": "Gorge de Loup", "desserte": "C24B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "67", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.804919781801934, 45.76590574168695 ] } }, -{ "type": "Feature", "properties": { "id": "10347", "nom": "Halle Tony Garnier", "desserte": "60A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "783", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.823895068564221, 45.731318741911011 ] } }, -{ "type": "Feature", "properties": { "id": "10351", "nom": "Leclerc - Ayasse", "desserte": "60A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3395", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.82395910148225, 45.736717982061563 ] } }, -{ "type": "Feature", "properties": { "id": "10353", "nom": "Leclerc - General Frere", "desserte": "60A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3398", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.830203645620095, 45.74432037129047 ] } }, -{ "type": "Feature", "properties": { "id": "10359", "nom": "Elisee Reclus", "desserte": "79A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1390", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.937140094029656, 45.747528524549907 ] } }, -{ "type": "Feature", "properties": { "id": "10393", "nom": "Chardonnet", "desserte": "52A:R,67A:A,ZI4A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1095", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.928231121898124, 45.766115632591614 ] } }, -{ "type": "Feature", "properties": { "id": "10406", "nom": "Peyssilieu", "desserte": "85A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2415", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.987271013501964, 45.769670421536908 ] } }, -{ "type": "Feature", "properties": { "id": "10408", "nom": "Meyzieu Mendes France", "desserte": "85A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2189", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.99087991365033, 45.766623595899134 ] } }, -{ "type": "Feature", "properties": { "id": "30101", "nom": "Perrache", "desserte": "301A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "170", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.826906961879098, 45.74980072284832 ] } }, -{ "type": "Feature", "properties": { "id": "46205", "nom": "Pateliere - Robiniers", "desserte": "73A:R,C24B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4214", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.745198089819112, 45.745848632649654 ] } }, -{ "type": "Feature", "properties": { "id": "399", "nom": "Chante Ruisseau", "desserte": "98A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1087", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.7386298167732, 45.772564002125016 ] } }, -{ "type": "Feature", "properties": { "id": "663", "nom": "Cuzin - Stalingrad", "desserte": "C3A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1271", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.915002148263414, 45.774467480893954 ] } }, -{ "type": "Feature", "properties": { "id": "904", "nom": "Felix Jacquier", "desserte": "27A:R,C6B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1403", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.847023593570009, 45.772875297168518 ] } }, -{ "type": "Feature", "properties": { "id": "2779", "nom": "St Fons 4 Chemins", "desserte": "60A:A,93A:A,C12A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2703", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.856165089415737, 45.708203837817955 ] } }, -{ "type": "Feature", "properties": { "id": "2782", "nom": "St Fons Albert Thomas", "desserte": "C12A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2706", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.859226371711324, 45.708000014261948 ] } }, -{ "type": "Feature", "properties": { "id": "2959", "nom": "Terraillon - Lessivas", "desserte": "52A:A,C15A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2822", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.919511725471507, 45.743398805738039 ] } }, -{ "type": "Feature", "properties": { "id": "10006", "nom": "Curie - Jules Guesde", "desserte": "39A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1266", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.887262514249378, 45.709157230559214 ] } }, -{ "type": "Feature", "properties": { "id": "10047", "nom": "Decines Verdun", "desserte": "57A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3289", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.970435906113848, 45.765151618107012 ] } }, -{ "type": "Feature", "properties": { "id": "10048", "nom": "Decines Verdun", "desserte": "57A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3288", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.97041064219622, 45.765161212382992 ] } }, -{ "type": "Feature", "properties": { "id": "10051", "nom": "Chassieu Le Haut", "desserte": "76A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3290", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.972214456025741, 45.746170356965521 ] } }, -{ "type": "Feature", "properties": { "id": "10052", "nom": "Chassieu Le Haut", "desserte": "76A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3291", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.973402886208072, 45.746286472297598 ] } }, -{ "type": "Feature", "properties": { "id": "10055", "nom": "Fontaines Petit Moulin", "desserte": "40A:R,70A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3279", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.845065863038903, 45.835441827554355 ] } }, -{ "type": "Feature", "properties": { "id": "10068", "nom": "Saxe - Gambetta", "desserte": "C12A:A,C14A:R,C4A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "198", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.846715868425743, 45.753448557260683 ] } }, -{ "type": "Feature", "properties": { "id": "10081", "nom": "St Irenee - Croix Blanche", "desserte": "49A:A,C20A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3073", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.807754377057382, 45.755141108096709 ] } }, -{ "type": "Feature", "properties": { "id": "10082", "nom": "St Irenee - Croix Blanche", "desserte": "49A:R,C20A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3074", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.807999658870642, 45.755162711602651 ] } }, -{ "type": "Feature", "properties": { "id": "10086", "nom": "St Priest Hôtel de Ville", "desserte": "ZI1A:A,ZI1A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "439", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.935186134761492, 45.695266106647615 ] } }, -{ "type": "Feature", "properties": { "id": "10089", "nom": "Mions Jules Valles", "desserte": "62A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2210", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.949708557437878, 45.654007510994589 ] } }, -{ "type": "Feature", "properties": { "id": "10119", "nom": "La Vallonniere", "desserte": "14B:R,19A:A,3A:A,45A:A,72B:A,86A:A,90A:A,98A:A,C21A:A,C21A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3300", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.801705589032328, 45.765355282929576 ] } }, -{ "type": "Feature", "properties": { "id": "10126", "nom": "Reconnaissance - Balzac", "desserte": "C9A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "543", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.885111218235331, 45.75428466639972 ] } }, -{ "type": "Feature", "properties": { "id": "10129", "nom": "Dauphiné -Lacassagne", "desserte": "25A:A,C13A:R,C16A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "545", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.869021141710663, 45.753082584402172 ] } }, -{ "type": "Feature", "properties": { "id": "10130", "nom": "Dauphiné -Lacassagne", "desserte": "25A:R,C13A:A,C16A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "547", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.86878701847442, 45.753303896650628 ] } }, -{ "type": "Feature", "properties": { "id": "10137", "nom": "Tables Claudiennes", "desserte": "S12A:R,S6A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3303", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.833132075708748, 45.770898704821562 ] } }, -{ "type": "Feature", "properties": { "id": "10139", "nom": "Mairie du 1er", "desserte": "C13A:R,C18A:R,S12A:R,S6A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3305", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.830475758655469, 45.769616558917889 ] } }, -{ "type": "Feature", "properties": { "id": "10140", "nom": "Mairie du 1er", "desserte": "448A:A,C13A:A,C18A:A,S6A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3306", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.830053777416771, 45.769670936306994 ] } }, -{ "type": "Feature", "properties": { "id": "10155", "nom": "Bron Leo Lagrange", "desserte": "79A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3311", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.92901120557229, 45.740641383351843 ] } }, -{ "type": "Feature", "properties": { "id": "46144", "nom": "Andre Sabatier", "desserte": "80A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5130", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.772978311348643, 45.609647762792605 ] } }, -{ "type": "Feature", "properties": { "id": "46375", "nom": "Frindeau", "desserte": "296:R,763:R,R5A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5346", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 5.023458454033424, 45.64595928000773 ] } }, -{ "type": "Feature", "properties": { "id": "752", "nom": "Desgrand", "desserte": "37A:R,7A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1318", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.906196744825881, 45.785335997768115 ] } }, -{ "type": "Feature", "properties": { "id": "1641", "nom": "Les Selettes", "desserte": "15A:R,18B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1937", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.820756636179593, 45.658650539476078 ] } }, -{ "type": "Feature", "properties": { "id": "2682", "nom": "Sathonay Drapeau", "desserte": "33A:A,9A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2626", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.872112663383118, 45.821272523367888 ] } }, -{ "type": "Feature", "properties": { "id": "2826", "nom": "St Just", "desserte": "90A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "205", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.815138609596591, 45.75778665665181 ] } }, -{ "type": "Feature", "properties": { "id": "3019", "nom": "Union Nautique", "desserte": "40A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2873", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.837853770759643, 45.797797250002617 ] } }, -{ "type": "Feature", "properties": { "id": "3117", "nom": "Veyrie", "desserte": "86A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2945", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.723309825437329, 45.813745412792805 ] } }, -{ "type": "Feature", "properties": { "id": "3497", "nom": "Lionel Terray", "desserte": "26A:A,C15A:A,C17A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3076", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.90102080259714, 45.726216118866738 ] } }, -{ "type": "Feature", "properties": { "id": "3498", "nom": "Lionel Terray", "desserte": "26A:R,C15A:R,C17A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3077", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.900870929205423, 45.726309557572804 ] } }, -{ "type": "Feature", "properties": { "id": "3500", "nom": "Lortaret", "desserte": "76A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3079", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.956738945100843, 45.713595874973521 ] } }, -{ "type": "Feature", "properties": { "id": "3501", "nom": "Jean Mace - Chevreul", "desserte": "35A:A,35A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3080", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.843726239843486, 45.747097522645944 ] } }, -{ "type": "Feature", "properties": { "id": "10007", "nom": "Curie - Jules Guesde", "desserte": "39A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1263", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.887369356676959, 45.709244813789006 ] } }, -{ "type": "Feature", "properties": { "id": "10012", "nom": "Pressense - Marrane", "desserte": "35A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3271", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.865257927766787, 45.723238278885539 ] } }, -{ "type": "Feature", "properties": { "id": "10013", "nom": "Pressense - Marrane", "desserte": "35A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3270", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.865203236821881, 45.723446539682321 ] } }, -{ "type": "Feature", "properties": { "id": "10018", "nom": "Francheville Bourg", "desserte": "C20A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3272", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.764071523204976, 45.736715280829635 ] } }, -{ "type": "Feature", "properties": { "id": "10019", "nom": "Francheville Doulline", "desserte": "C20A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3275", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.761476759722918, 45.737338436759551 ] } }, -{ "type": "Feature", "properties": { "id": "10025", "nom": "La Dangereuse", "desserte": "77A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1698", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.878087639333424, 45.85334204189698 ] } }, -{ "type": "Feature", "properties": { "id": "10026", "nom": "La Dangereuse", "desserte": "77A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1697", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.877971407711044, 45.853335667484842 ] } }, -{ "type": "Feature", "properties": { "id": "10029", "nom": "Diligences", "desserte": "77A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3277", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.876781466173348, 45.850167046315939 ] } }, -{ "type": "Feature", "properties": { "id": "10032", "nom": "Z.I. Rocade Est", "desserte": "ZI5B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5404", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.977272298155049, 45.723502295032887 ] } }, -{ "type": "Feature", "properties": { "id": "10033", "nom": "Z.I. Rocade Est", "desserte": "ZI5B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5405", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.977805862450937, 45.723372714280458 ] } }, -{ "type": "Feature", "properties": { "id": "10034", "nom": "Fresnel - Restaurant Z.I.", "desserte": "ZI5B:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3280", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.971162522222392, 45.725275222986966 ] } }, -{ "type": "Feature", "properties": { "id": "10035", "nom": "Fresnel - Restaurant Z.I.", "desserte": "ZI5B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3281", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.971307182327796, 45.72534383926363 ] } }, -{ "type": "Feature", "properties": { "id": "10036", "nom": "Chassieu Jean Perrin", "desserte": "76A:R,ZI5B:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3282", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.971302487179134, 45.730078810969573 ] } }, -{ "type": "Feature", "properties": { "id": "10040", "nom": "Mi Plaine - Pelossier", "desserte": "76A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2199", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.958533070682388, 45.718081744745859 ] } }, -{ "type": "Feature", "properties": { "id": "10041", "nom": "Mi Plaine - Pelossier", "desserte": "76A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2202", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.958419664078455, 45.71758930864862 ] } }, -{ "type": "Feature", "properties": { "id": "10045", "nom": "Ruffinieres", "desserte": "57A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3287", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.97090091975003, 45.766535970754148 ] } }, -{ "type": "Feature", "properties": { "id": "10046", "nom": "Ruffinieres", "desserte": "57A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3286", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.970594512101091, 45.767389316948282 ] } }, -{ "type": "Feature", "properties": { "id": "11431", "nom": "Les Roses", "desserte": "97A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3691", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.853721835273078, 45.879913067346934 ] } }, -{ "type": "Feature", "properties": { "id": "30193", "nom": "Sans Souci", "desserte": "304:A", "pmr": "t", "ascenseur": "t", "escalator": "t", "gid": "191", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.86489208636268, 45.74778003547403 ] } }, -{ "type": "Feature", "properties": { "id": "57", "nom": "Ampere - Lavoisier", "desserte": "76A:A,ZI5B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "827", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.970677672676369, 45.73179478954286 ] } }, -{ "type": "Feature", "properties": { "id": "592", "nom": "Corbas Mairie", "desserte": "111A:A,112A:A,54A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1232", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.898332769138819, 45.670118052127471 ] } }, -{ "type": "Feature", "properties": { "id": "1574", "nom": "Le Rotagnier", "desserte": "68B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1885", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.975900941521965, 45.741807938482289 ] } }, -{ "type": "Feature", "properties": { "id": "1576", "nom": "Le Roule", "desserte": "17B:A,8A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1887", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.810709909603214, 45.730791131041755 ] } }, -{ "type": "Feature", "properties": { "id": "1615", "nom": "Les Aulnes", "desserte": "3A:R,89A:R,GE4A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1910", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.759787193064745, 45.809913402193168 ] } }, -{ "type": "Feature", "properties": { "id": "1664", "nom": "Les Dominicaines", "desserte": "15A:R,18B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1956", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.815466562565474, 45.653763098395217 ] } }, -{ "type": "Feature", "properties": { "id": "2683", "nom": "Sathonay Drapeau", "desserte": "33A:R,9A:R,ZI4A:A,ZI4A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2625", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.872033232953724, 45.821244700860433 ] } }, -{ "type": "Feature", "properties": { "id": "2753", "nom": "Square Meunier", "desserte": "76A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2682", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.903605156730579, 45.6669909683906 ] } }, -{ "type": "Feature", "properties": { "id": "3325", "nom": "Pont des Razes", "desserte": "60A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "173", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.850618855148773, 45.667210824383758 ] } }, -{ "type": "Feature", "properties": { "id": "3326", "nom": "Jodino - A.F.P.A.", "desserte": "39A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3005", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.882452649240256, 45.691272904457698 ] } }, -{ "type": "Feature", "properties": { "id": "3328", "nom": "Corbas Gabriel Peri", "desserte": "87A:A,ZI1A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "805", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.916913768954724, 45.676208888139882 ] } }, -{ "type": "Feature", "properties": { "id": "3329", "nom": "Corbas Gabriel Peri", "desserte": "87A:R,ZI1A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "806", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.917037633832682, 45.676386065823486 ] } }, -{ "type": "Feature", "properties": { "id": "3331", "nom": "Chorel", "desserte": "C17A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1146", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.864931959242897, 45.774903843926431 ] } }, -{ "type": "Feature", "properties": { "id": "3333", "nom": "Masséna", "desserte": "38A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "127", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.852473675042195, 45.76885578141718 ] } }, -{ "type": "Feature", "properties": { "id": "3336", "nom": "St Priest Hôtel de Ville", "desserte": "C25B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "440", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.934960895904049, 45.694848253527915 ] } }, -{ "type": "Feature", "properties": { "id": "3381", "nom": "Pont d'Ecully", "desserte": "19A:A,3A:A,5A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2499", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.791484075366899, 45.773103206154381 ] } }, -{ "type": "Feature", "properties": { "id": "3382", "nom": "Pont d'Ecully", "desserte": "19A:R,3A:R,5A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2500", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.791738761940829, 45.772855509905959 ] } }, -{ "type": "Feature", "properties": { "id": "3409", "nom": "Z.I. Rillieux 8 mai 1945", "desserte": "ZI4A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3043", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.879740935303268, 45.813644381270358 ] } }, -{ "type": "Feature", "properties": { "id": "3426", "nom": "Clos Chaurand", "desserte": "17B:A,S9A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1197", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.797859100622622, 45.693179550688974 ] } }, -{ "type": "Feature", "properties": { "id": "3427", "nom": "Clos Chaurand", "desserte": "17B:R,S9A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1200", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.797982190492882, 45.693059835325741 ] } }, -{ "type": "Feature", "properties": { "id": "3434", "nom": "Gorge de Loup", "desserte": "73A:R,C21A:A,C21A:R,C24B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "55", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.805288944957984, 45.766680719110944 ] } }, -{ "type": "Feature", "properties": { "id": "3442", "nom": "Le Vorlat", "desserte": "72B:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3055", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.724773301982378, 45.762697656749211 ] } }, -{ "type": "Feature", "properties": { "id": "3443", "nom": "Le Vorlat", "desserte": "72B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3056", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.724592258795377, 45.762674505335404 ] } }, -{ "type": "Feature", "properties": { "id": "3453", "nom": "Bron Droits de l'Homme", "desserte": "ZI7A:A,ZI7A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3057", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.931786514110997, 45.734339212158567 ] } }, -{ "type": "Feature", "properties": { "id": "3455", "nom": "Meyzieu Hotel de Ville", "desserte": "67A:A,85A:A,95A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3060", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 5.005888403446465, 45.765529696840247 ] } }, -{ "type": "Feature", "properties": { "id": "10258", "nom": "Mailly", "desserte": "38A:R,448A:A,C13A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3358", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.833271072281547, 45.783029210564756 ] } }, -{ "type": "Feature", "properties": { "id": "10497", "nom": "Vaulx Z.I. Est", "desserte": "57A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3467", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.944819282508656, 45.781232291763629 ] } }, -{ "type": "Feature", "properties": { "id": "10517", "nom": "Demi-Lune Victor Hugo", "desserte": "5A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3468", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.783341313201245, 45.765666980295165 ] } }, -{ "type": "Feature", "properties": { "id": "842", "nom": "Edgar Quinet", "desserte": "27A:A,C4A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1382", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.844604763418799, 45.765809388048766 ] } }, -{ "type": "Feature", "properties": { "id": "1154", "nom": "Henon - Deleuvre", "desserte": "C18A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1543", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.825412419125921, 45.779945214199472 ] } }, -{ "type": "Feature", "properties": { "id": "1170", "nom": "HLM Republique", "desserte": "C12A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1553", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.870764975348033, 45.707190843610846 ] } }, -{ "type": "Feature", "properties": { "id": "2783", "nom": "St Fons Albert Thomas", "desserte": "60A:R,93A:A,93A:R,C12A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2707", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.858305580239697, 45.708092728392302 ] } }, -{ "type": "Feature", "properties": { "id": "2960", "nom": "Terrasse", "desserte": "8A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2824", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.815440491293471, 45.747932793818826 ] } }, -{ "type": "Feature", "properties": { "id": "10229", "nom": "Chemin de Rivery", "desserte": "77A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3344", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.871386062940021, 45.837362788999783 ] } }, -{ "type": "Feature", "properties": { "id": "10643", "nom": "Stade du Sauze", "desserte": "5A:R,72B:R,98A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3503", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.756567865359293, 45.764852106020818 ] } }, -{ "type": "Feature", "properties": { "id": "10787", "nom": "Croix Paquet", "desserte": "303:A,303:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "330", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.836171219763149, 45.770916423859454 ] } }, -{ "type": "Feature", "properties": { "id": "11837", "nom": "Clinique du Grand Large", "desserte": "16A:R,79A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3643", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.970726352049239, 45.772022093901697 ] } }, -{ "type": "Feature", "properties": { "id": "11858", "nom": "Curie Monnet", "desserte": "ZI6A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3136", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.850094463618822, 45.706935854643248 ] } }, -{ "type": "Feature", "properties": { "id": "11974", "nom": "Lycee Blaise Pascal", "desserte": "5A:R,72B:R,98A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3176", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.751599271453354, 45.765337127751849 ] } }, -{ "type": "Feature", "properties": { "id": "30070", "nom": "Gare de Vaise", "desserte": "6A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "260", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.804534250097301, 45.780820010170487 ] } }, -{ "type": "Feature", "properties": { "id": "30167", "nom": "La Gabrielle", "desserte": "118A:R,21A:R,61A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1720", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.779867343763931, 45.807912384012539 ] } }, -{ "type": "Feature", "properties": { "id": "36141", "nom": "Z.I. Meyzieu Monge", "desserte": "ZI2A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2994", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 5.024281924860738, 45.766864386592268 ] } }, -{ "type": "Feature", "properties": { "id": "41657", "nom": "Osterode", "desserte": "ZI4A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4647", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.915541215073135, 45.822181104535055 ] } }, -{ "type": "Feature", "properties": { "id": "43649", "nom": "Meyzieu Le Carreau", "desserte": "95A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2185", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.989591574778306, 45.77484564966705 ] } }, -{ "type": "Feature", "properties": { "id": "43652", "nom": "College Evariste Gallois", "desserte": "95A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4288", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.99398365354178, 45.769367744641258 ] } }, -{ "type": "Feature", "properties": { "id": "43654", "nom": "Pommier - Collet", "desserte": "95A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4621", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 5.001346133032096, 45.77663778404272 ] } }, -{ "type": "Feature", "properties": { "id": "43657", "nom": "Bellecombe - Gaite", "desserte": "27A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4876", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.863218686194076, 45.767570358109325 ] } }, -{ "type": "Feature", "properties": { "id": "43661", "nom": "Parc de Lacroix-Laval", "desserte": "GE6A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2348", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.718386193172606, 45.784480221406426 ] } }, -{ "type": "Feature", "properties": { "id": "43674", "nom": "Les Joncs", "desserte": "GE4A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4737", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.76442865069008, 45.808634080844413 ] } }, -{ "type": "Feature", "properties": { "id": "43675", "nom": "Techlid Le Tronchon", "desserte": "GE4A:A,GE4A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4879", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.771622590967739, 45.805418063104405 ] } }, -{ "type": "Feature", "properties": { "id": "43676", "nom": "Parc d'Activites de la Tour", "desserte": "GE4A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4881", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.722990956953116, 45.817667555258971 ] } }, -{ "type": "Feature", "properties": { "id": "43677", "nom": "Parc d'Activites de la Tour", "desserte": "GE4A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4880", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.722826107990466, 45.817725060793336 ] } }, -{ "type": "Feature", "properties": { "id": "46342", "nom": "Place la Valla", "desserte": "28A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5478", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 5.067461739960027, 45.75797819161987 ] } }, -{ "type": "Feature", "properties": { "id": "46343", "nom": "Place la Valla", "desserte": "28A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5479", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 5.067489765053648, 45.758014238582348 ] } }, -{ "type": "Feature", "properties": { "id": "46385", "nom": "Toussieu Eglise", "desserte": "763:R,R5A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5356", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.989689813080138, 45.654925396305515 ] } }, -{ "type": "Feature", "properties": { "id": "46386", "nom": "Toussieu Eglise", "desserte": "763:A,R5A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5357", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.989605719908081, 45.65488237888308 ] } }, -{ "type": "Feature", "properties": { "id": "760", "nom": "Dorothee Petit", "desserte": "15A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1324", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.816810325685402, 45.668792122498552 ] } }, -{ "type": "Feature", "properties": { "id": "907", "nom": "Feuillat - Albert Thomas", "desserte": "C16A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1406", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.874609969562612, 45.74462116476996 ] } }, -{ "type": "Feature", "properties": { "id": "1595", "nom": "Lefevre", "desserte": "57A:A,83A:A,C3A:A,C8A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1899", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.911260658175923, 45.772032908442455 ] } }, -{ "type": "Feature", "properties": { "id": "2953", "nom": "Tassin Genetieres", "desserte": "5A:A,72B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2819", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.772105612633857, 45.758800517331586 ] } }, -{ "type": "Feature", "properties": { "id": "3177", "nom": "Z.I. Chassieu Restaurant", "desserte": "76A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2988", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.96940686764331, 45.725919542078529 ] } }, -{ "type": "Feature", "properties": { "id": "3178", "nom": "Z.I. Chassieu Restaurant", "desserte": "76A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2987", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.96941411454357, 45.725802350873032 ] } }, -{ "type": "Feature", "properties": { "id": "3186", "nom": "Z.I. Meyzieu De Lattre", "desserte": "ZI2A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2992", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 5.027775677963233, 45.776754865699225 ] } }, -{ "type": "Feature", "properties": { "id": "3194", "nom": "Z.I. Meyzieu Restaurant", "desserte": "ZI2A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2995", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 5.02726299515876, 45.774190972855443 ] } }, -{ "type": "Feature", "properties": { "id": "3208", "nom": "Zephyrs", "desserte": "28A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5449", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 5.015772042331356, 45.728152714453195 ] } }, -{ "type": "Feature", "properties": { "id": "3250", "nom": "Jarrosson", "desserte": "17B:A,49A:A,90A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3008", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.797637107005454, 45.741681802906555 ] } }, -{ "type": "Feature", "properties": { "id": "3251", "nom": "Jarrosson", "desserte": "17B:R,49A:R,90A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3007", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.797716174024997, 45.741725074085814 ] } }, -{ "type": "Feature", "properties": { "id": "3252", "nom": "Mont Blanc - Montmartin", "desserte": "87A:A,ZI1A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3009", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.921946215647688, 45.674544686617118 ] } }, -{ "type": "Feature", "properties": { "id": "3253", "nom": "Mont Blanc - Montmartin", "desserte": "87A:R,ZI1A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3010", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.921971190519041, 45.674256063880769 ] } }, -{ "type": "Feature", "properties": { "id": "3254", "nom": "Abattoirs", "desserte": "87A:A,ZI1A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3012", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.919698721658344, 45.675082577895502 ] } }, -{ "type": "Feature", "properties": { "id": "3273", "nom": "Henri Chevalier", "desserte": "S4A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3015", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.827060598114598, 45.7831040909468 ] } }, -{ "type": "Feature", "properties": { "id": "3281", "nom": "Linossier - Richan", "desserte": "S4A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3018", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.837355678944915, 45.779490873468511 ] } }, -{ "type": "Feature", "properties": { "id": "3288", "nom": "Venissieux Blanqui", "desserte": "93A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3025", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.873919957309822, 45.702051825686866 ] } }, -{ "type": "Feature", "properties": { "id": "3298", "nom": "Z.I. Chateau d'eau", "desserte": "C5A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3027", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.906330660248163, 45.826761371356397 ] } }, -{ "type": "Feature", "properties": { "id": "3299", "nom": "Z.I. Chateau d'eau", "desserte": "C5A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3026", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.906103816071369, 45.826582925487607 ] } }, -{ "type": "Feature", "properties": { "id": "10197", "nom": "Les Canuts", "desserte": "2A:R,33A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3323", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.829574622433655, 45.776126411109487 ] } }, -{ "type": "Feature", "properties": { "id": "36226", "nom": "Les Vernes - J. Valles", "desserte": "80A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4123", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.766747004828823, 45.606927973919575 ] } }, -{ "type": "Feature", "properties": { "id": "42031", "nom": "Pont Guillotiere RD", "desserte": "27A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2526", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.836702638935875, 45.757767549862614 ] } }, -{ "type": "Feature", "properties": { "id": "45834", "nom": "Yves Farge - Corsiere", "desserte": "60A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4567", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.85921753509493, 45.694999586488564 ] } }, -{ "type": "Feature", "properties": { "id": "46256", "nom": "Lançon", "desserte": "C17A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "6189", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.896444304136072, 45.772730863668919 ] } }, -{ "type": "Feature", "properties": { "id": "46257", "nom": "Cusset", "desserte": "C17A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "6190", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.902359267059298, 45.767651845136079 ] } }, -{ "type": "Feature", "properties": { "id": "46338", "nom": "L'Odyssee", "desserte": "28A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5474", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 5.063100759183963, 45.764031214220466 ] } }, -{ "type": "Feature", "properties": { "id": "46347", "nom": "Moifond", "desserte": "28A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5483", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 5.070859705195144, 45.749282282457898 ] } }, -{ "type": "Feature", "properties": { "id": "46424", "nom": "Route de Givors", "desserte": "296:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5393", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.984890702786671, 45.649605333075371 ] } }, -{ "type": "Feature", "properties": { "id": "85", "nom": "Aubepins", "desserte": "25A:R,C26A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "850", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.89031466885543, 45.751420999015828 ] } }, -{ "type": "Feature", "properties": { "id": "522", "nom": "Cite Berliet", "desserte": "296:R,C25B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1163", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.901377412595556, 45.711526773669746 ] } }, -{ "type": "Feature", "properties": { "id": "2785", "nom": "St Fons Albert Thomas", "desserte": "60A:A,93A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2708", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.858942019354992, 45.707682366346553 ] } }, -{ "type": "Feature", "properties": { "id": "3003", "nom": "Trion", "desserte": "C20A:R,C21A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2859", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.812851847938815, 45.75754908566249 ] } }, -{ "type": "Feature", "properties": { "id": "3023", "nom": "Universite - Jean Jaures", "desserte": "C12A:A,C14A:R,C4A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2876", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.843442422860083, 45.747922969492095 ] } }, -{ "type": "Feature", "properties": { "id": "3024", "nom": "Universite - Jean Jaures", "desserte": "C12A:R,C14A:A,C4A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2874", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.843866395953563, 45.748480574292138 ] } }, -{ "type": "Feature", "properties": { "id": "3025", "nom": "Universite - Jean Jaures", "desserte": "35A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2875", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.843401142482755, 45.74842795770499 ] } }, -{ "type": "Feature", "properties": { "id": "3026", "nom": "Vaillant Couturier", "desserte": "15A:A,17B:A,18B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2878", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.820875585145677, 45.705993615433563 ] } }, -{ "type": "Feature", "properties": { "id": "3027", "nom": "Vaillant Couturier", "desserte": "15A:R,17B:R,18B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2877", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.821164577028957, 45.706419264872878 ] } }, -{ "type": "Feature", "properties": { "id": "3031", "nom": "Valensaut", "desserte": "26A:A,448A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2883", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.87473735594084, 45.723411285369203 ] } }, -{ "type": "Feature", "properties": { "id": "3034", "nom": "Valmy", "desserte": "2A:A,31A:A,448A:A,5A:A,90A:A,90A:R,C14A:A,C6B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "212", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.806057873181277, 45.775214841098894 ] } }, -{ "type": "Feature", "properties": { "id": "3037", "nom": "Val Rosay", "desserte": "20A:A,2A:A,71A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2884", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.812873777141794, 45.793751081090228 ] } }, -{ "type": "Feature", "properties": { "id": "3038", "nom": "Val Rosay", "desserte": "20A:R,23A:R,2A:R,71A:R,84A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2885", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.811984266628643, 45.793428643431845 ] } }, -{ "type": "Feature", "properties": { "id": "3042", "nom": "Fort de Vancia", "desserte": "C5A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2890", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.908818432095539, 45.833965110880065 ] } }, -{ "type": "Feature", "properties": { "id": "3044", "nom": "Varichon", "desserte": "C15A:A,C22A:A,C25B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2891", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.871296201619117, 45.73408355632106 ] } }, -{ "type": "Feature", "properties": { "id": "3046", "nom": "Vassieux", "desserte": "171:A,C5A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2894", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.866495888737575, 45.791845081681871 ] } }, -{ "type": "Feature", "properties": { "id": "3047", "nom": "Vassieux", "desserte": "171:R,C5A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2893", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.865902532683659, 45.791813437692042 ] } }, -{ "type": "Feature", "properties": { "id": "3054", "nom": "Vaulx HDV Campus", "desserte": "52A:A,C8A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2898", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.921335919000155, 45.776761296864628 ] } }, -{ "type": "Feature", "properties": { "id": "3055", "nom": "Vaulx HDV Campus", "desserte": "52A:R,57A:A,C8A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2899", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.921389010364937, 45.776796081030852 ] } }, -{ "type": "Feature", "properties": { "id": "3057", "nom": "Vaulx Jean Moulin", "desserte": "37A:A,7A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2901", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.916722874398319, 45.787291084717133 ] } }, -{ "type": "Feature", "properties": { "id": "3058", "nom": "Vaulx Jean Moulin", "desserte": "37A:R,7A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2904", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.916150829601394, 45.787439244154932 ] } }, -{ "type": "Feature", "properties": { "id": "3069", "nom": "Vaulx Pasteur", "desserte": "37A:A,57A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2912", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.930804605796379, 45.785229476762552 ] } }, -{ "type": "Feature", "properties": { "id": "3070", "nom": "Vaulx Pasteur", "desserte": "37A:R,57A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2913", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.930340527908101, 45.785483234951123 ] } }, -{ "type": "Feature", "properties": { "id": "3080", "nom": "Vaulx Place Boissier", "desserte": "37A:R,57A:R,C8A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2921", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.924734364998714, 45.786377669570584 ] } }, -{ "type": "Feature", "properties": { "id": "3081", "nom": "Vaulx Place Boissier", "desserte": "7A:A,83A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2920", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.925603251335695, 45.78624962919158 ] } }, -{ "type": "Feature", "properties": { "id": "3084", "nom": "Vaulx Thibaude", "desserte": "52A:A,C8A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2923", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.929637489334421, 45.778487268111249 ] } }, -{ "type": "Feature", "properties": { "id": "508", "nom": "Cimetiere de Ste Foy", "desserte": "C19A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1158", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.796809767069871, 45.733238991647923 ] } }, -{ "type": "Feature", "properties": { "id": "802", "nom": "Dumas - Salengro", "desserte": "52A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1348", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.928450323771209, 45.753571475384732 ] } }, -{ "type": "Feature", "properties": { "id": "833", "nom": "La Mulatiere Mairie", "desserte": "17B:R,8A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1371", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.810180501055258, 45.729020595057989 ] } }, -{ "type": "Feature", "properties": { "id": "854", "nom": "Entree de Decines", "desserte": "52A:A,67A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1393", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.93537974910039, 45.767696716402511 ] } }, -{ "type": "Feature", "properties": { "id": "1596", "nom": "Lefevre", "desserte": "57A:R,83A:R,C3A:R,C8A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1900", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.910472650544643, 45.771960956812961 ] } }, -{ "type": "Feature", "properties": { "id": "1616", "nom": "Les Balmes", "desserte": "111A:A,54A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1912", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.894895255218483, 45.664660733420419 ] } }, -{ "type": "Feature", "properties": { "id": "2754", "nom": "Square Meunier", "desserte": "76A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2681", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.903608089348213, 45.667053910876433 ] } }, -{ "type": "Feature", "properties": { "id": "2756", "nom": "St Abdon", "desserte": "78B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2684", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.793597586587636, 45.660995465974061 ] } }, -{ "type": "Feature", "properties": { "id": "2787", "nom": "St Fons Parmentier", "desserte": "60A:R,93A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2709", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.860527716279048, 45.705558421480433 ] } }, -{ "type": "Feature", "properties": { "id": "2788", "nom": "St Fortunat", "desserte": "20A:A,20A:R,22A:A,22A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2711", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.794616505550723, 45.825745926677669 ] } }, -{ "type": "Feature", "properties": { "id": "2790", "nom": "St Genis 2", "desserte": "C10A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2715", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.79308366358783, 45.682006017355668 ] } }, -{ "type": "Feature", "properties": { "id": "2793", "nom": "St Genis Barolles", "desserte": "C10A:A,C10A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2721", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.78190264614324, 45.679199144226892 ] } }, -{ "type": "Feature", "properties": { "id": "2794", "nom": "St Genis Bellevue", "desserte": "88B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2724", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.802384955089055, 45.692999109847896 ] } }, -{ "type": "Feature", "properties": { "id": "2795", "nom": "St Genis Bellevue", "desserte": "88B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2723", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.802971168231989, 45.69289620783578 ] } }, -{ "type": "Feature", "properties": { "id": "2796", "nom": "St Genis Centre", "desserte": "88B:R,C10A:A,S9A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2726", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.793129522453188, 45.694840443835353 ] } }, -{ "type": "Feature", "properties": { "id": "2799", "nom": "St Genis Collonges", "desserte": "88B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2732", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.805598353459633, 45.692766386563989 ] } }, -{ "type": "Feature", "properties": { "id": "2802", "nom": "St Genis Les Ollieres", "desserte": "72B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2734", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.722212350198092, 45.75820670967957 ] } }, -{ "type": "Feature", "properties": { "id": "2803", "nom": "St Genis Les Ollieres", "desserte": "72B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2733", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.722749215910777, 45.75842931991118 ] } }, -{ "type": "Feature", "properties": { "id": "2806", "nom": "St Genis Mairie", "desserte": "88B:R,C10A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2736", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.794754506048995, 45.698441244758108 ] } }, -{ "type": "Feature", "properties": { "id": "2808", "nom": "St Georges", "desserte": "31A:A,448A:A,C20A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2737", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.825763333255809, 45.757569581957448 ] } }, -{ "type": "Feature", "properties": { "id": "2812", "nom": "St Germain Gare", "desserte": "96A:A,96A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2740", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.804276330400103, 45.888056472212568 ] } }, -{ "type": "Feature", "properties": { "id": "2813", "nom": "St Germain Gare", "desserte": "96A:A,96A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2739", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.804202302158256, 45.888130105478901 ] } }, -{ "type": "Feature", "properties": { "id": "2814", "nom": "St Germain Mairie", "desserte": "96A:A,96A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2741", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.802988687162023, 45.883440443142604 ] } }, -{ "type": "Feature", "properties": { "id": "2827", "nom": "St Just", "desserte": "90A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "208", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.815651940717152, 45.75747828577596 ] } }, -{ "type": "Feature", "properties": { "id": "3004", "nom": "Trion", "desserte": "C20A:A,C21A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2858", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.812609591832617, 45.758166503239423 ] } }, -{ "type": "Feature", "properties": { "id": "36234", "nom": "Docteur Roux", "desserte": "80A:A,81A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4131", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.765756130912366, 45.597822679128505 ] } }, -{ "type": "Feature", "properties": { "id": "36244", "nom": "Givors Picard", "desserte": "78B:A,80A:A,81A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4141", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.770296139466533, 45.592035506891911 ] } }, -{ "type": "Feature", "properties": { "id": "46340", "nom": "Vallon", "desserte": "28A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5476", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 5.062207735664607, 45.75966023810161 ] } }, -{ "type": "Feature", "properties": { "id": "524", "nom": "Cite Berliet centre", "desserte": "62A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1166", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.901215526397747, 45.705292552759843 ] } }, -{ "type": "Feature", "properties": { "id": "584", "nom": "Le Grand Roule", "desserte": "17B:R,8A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1226", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.807473974607846, 45.729998332265723 ] } }, -{ "type": "Feature", "properties": { "id": "763", "nom": "Duchere Balmont", "desserte": "118A:R,21A:R,448A:A,61A:R,66A:R,89A:R,C14A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1328", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.799770015679515, 45.789081022750082 ] } }, -{ "type": "Feature", "properties": { "id": "1476", "nom": "La Vosne", "desserte": "97A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1797", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.848982893768294, 45.87661648688708 ] } }, -{ "type": "Feature", "properties": { "id": "2709", "nom": "Saxe - Paul Bert", "desserte": "C14A:R,C4A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2648", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.846338510256362, 45.756733432301857 ] } }, -{ "type": "Feature", "properties": { "id": "2710", "nom": "Saxe - Paul Bert", "desserte": "C14A:A,C4A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2647", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.846450022044842, 45.756640927181039 ] } }, -{ "type": "Feature", "properties": { "id": "2711", "nom": "Sept Chemins", "desserte": "24A:A,24A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2656", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.933084133598462, 45.744678923551668 ] } }, -{ "type": "Feature", "properties": { "id": "2712", "nom": "Sept Chemins", "desserte": "25A:A,25A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2653", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.932858596287584, 45.744531114948003 ] } }, -{ "type": "Feature", "properties": { "id": "2715", "nom": "Sergent Berthet", "desserte": "19A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2658", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.804900237264683, 45.772062909441601 ] } }, -{ "type": "Feature", "properties": { "id": "2718", "nom": "Serin - Saint Charles", "desserte": "2A:A,45A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2662", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.812488770622313, 45.774056111203862 ] } }, -{ "type": "Feature", "properties": { "id": "2719", "nom": "Serin - Saint Charles", "desserte": "2A:R,45A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2661", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.813252195637072, 45.774156290754668 ] } }, -{ "type": "Feature", "properties": { "id": "2720", "nom": "Serin - Saint Charles", "desserte": "C6B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2663", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.813010170672155, 45.774494669570572 ] } }, -{ "type": "Feature", "properties": { "id": "2725", "nom": "Severine", "desserte": "C17A:A,C8A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2665", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.912816468054867, 45.753895318704195 ] } }, -{ "type": "Feature", "properties": { "id": "2726", "nom": "Sidoine Apollinaire", "desserte": "55A:A,90A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2668", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.804115395701036, 45.761161856469563 ] } }, -{ "type": "Feature", "properties": { "id": "2727", "nom": "Sidoine Apollinaire", "desserte": "55A:R,90A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2667", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.803701517941368, 45.761395978786389 ] } }, -{ "type": "Feature", "properties": { "id": "2728", "nom": "Simon Buisson", "desserte": "66A:A,C14A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2670", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.791308950160014, 45.79060597056953 ] } }, -{ "type": "Feature", "properties": { "id": "2729", "nom": "Simon Buisson", "desserte": "66A:R,C14A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2669", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.791469230131954, 45.790449449733224 ] } }, -{ "type": "Feature", "properties": { "id": "2760", "nom": "St Alexandre", "desserte": "448A:A,55A:R,C20A:R,C21A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2689", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.814568979668317, 45.756845115227506 ] } }, -{ "type": "Feature", "properties": { "id": "2767", "nom": "St Clair - Square Brosset", "desserte": "70A:A,9A:A,C1A:A,C2A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2694", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.860834713686581, 45.791855428453914 ] } }, -{ "type": "Feature", "properties": { "id": "2768", "nom": "St Clair - Square Brosset", "desserte": "171:R,70A:R,C1A:R,C2A:R,C5A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2693", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.860325799367619, 45.790579678997005 ] } }, -{ "type": "Feature", "properties": { "id": "2771", "nom": "St Cyr", "desserte": "20A:A,20A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2695", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.818929232633322, 45.814446147858327 ] } }, -{ "type": "Feature", "properties": { "id": "2772", "nom": "St Cyr", "desserte": "20A:A,S7A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2696", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.819114545993632, 45.814559069498806 ] } }, -{ "type": "Feature", "properties": { "id": "2775", "nom": "St Didier Ecoles", "desserte": "22A:A,23A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2699", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.798063698585527, 45.812159800035211 ] } }, -{ "type": "Feature", "properties": { "id": "2776", "nom": "St Didier Ecoles", "desserte": "20A:R,22A:R,23A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2698", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.798083780525833, 45.812033344507697 ] } }, -{ "type": "Feature", "properties": { "id": "2778", "nom": "St Didier Eglise", "desserte": "20A:R,22A:R,23A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2701", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.798334394374504, 45.81044365797888 ] } }, -{ "type": "Feature", "properties": { "id": "10125", "nom": "Reconnaissance - Balzac", "desserte": "C9A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "542", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.88417060426531, 45.754243008040739 ] } }, -{ "type": "Feature", "properties": { "id": "46341", "nom": "Vallon", "desserte": "28A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5477", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 5.062057701928632, 45.759604196025997 ] } }, -{ "type": "Feature", "properties": { "id": "97", "nom": "Avignon", "desserte": "93A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "861", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.857752539670995, 45.691524926319744 ] } }, -{ "type": "Feature", "properties": { "id": "593", "nom": "Corbas Mairie", "desserte": "111A:R,112A:R,54A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1231", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.899500454059468, 45.671207529014268 ] } }, -{ "type": "Feature", "properties": { "id": "696", "nom": "Decines Bascule", "desserte": "67A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1295", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.961051918603656, 45.771456452252622 ] } }, -{ "type": "Feature", "properties": { "id": "1477", "nom": "La Voute", "desserte": "20A:A,22A:A,23A:A,2A:A,71A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1801", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.808232082953214, 45.784096101763446 ] } }, -{ "type": "Feature", "properties": { "id": "1720", "nom": "Les Mollieres", "desserte": "77A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2007", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.848345820111012, 45.840148286666235 ] } }, -{ "type": "Feature", "properties": { "id": "1815", "nom": "Louise Michel", "desserte": "69A:A,C17A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2092", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.894216619381003, 45.774231660106338 ] } }, -{ "type": "Feature", "properties": { "id": "2149", "nom": "Observance", "desserte": "90A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2330", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.809547483348357, 45.7681441948207 ] } }, -{ "type": "Feature", "properties": { "id": "2638", "nom": "Route de Corbas", "desserte": "54A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2603", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.890982096707504, 45.690187792185895 ] } }, -{ "type": "Feature", "properties": { "id": "2639", "nom": "Route de Corbas", "desserte": "54A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2604", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.890771268074332, 45.690903702588287 ] } }, -{ "type": "Feature", "properties": { "id": "2640", "nom": "Route de Mions", "desserte": "296:A,C25B:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2605", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.94750206050932, 45.684646216318768 ] } }, -{ "type": "Feature", "properties": { "id": "2643", "nom": "Route de Mions", "desserte": "296:R,62A:R,C25B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2606", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.947746695155334, 45.684388475032897 ] } }, -{ "type": "Feature", "properties": { "id": "2646", "nom": "Rouville", "desserte": "C13A:R,C18A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2610", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.825016759318287, 45.769494641432097 ] } }, -{ "type": "Feature", "properties": { "id": "2647", "nom": "Rouville", "desserte": "448A:A,C13A:A,C18A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2609", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.823886040962241, 45.769519694446537 ] } }, -{ "type": "Feature", "properties": { "id": "2649", "nom": "Rue d'Ypres", "desserte": "40A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2612", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.812916457200259, 45.781841647605944 ] } }, -{ "type": "Feature", "properties": { "id": "2652", "nom": "Challemel Lacour", "desserte": "C22A:A,ZI6A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2614", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.837186305922114, 45.73021323683939 ] } }, -{ "type": "Feature", "properties": { "id": "2653", "nom": "Challemel Lacour", "desserte": "C22A:R,ZI6A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2615", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.837739235204307, 45.730218915778352 ] } }, -{ "type": "Feature", "properties": { "id": "2654", "nom": "Rue de l'Aviation", "desserte": "76A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2617", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.908932012128782, 45.663943386238742 ] } }, -{ "type": "Feature", "properties": { "id": "2655", "nom": "Rue de l'Aviation", "desserte": "76A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2616", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.908858426805061, 45.664017086294521 ] } }, -{ "type": "Feature", "properties": { "id": "2659", "nom": "Rue du Sablon", "desserte": "C16A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2619", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.859194389220679, 45.719081200747681 ] } }, -{ "type": "Feature", "properties": { "id": "2684", "nom": "Sathonay Gare", "desserte": "33A:A,77A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2629", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.875403179760262, 45.82061953597173 ] } }, -{ "type": "Feature", "properties": { "id": "2687", "nom": "Sathonay Mairie", "desserte": "9A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2630", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.874135853866001, 45.823843653974137 ] } }, -{ "type": "Feature", "properties": { "id": "2688", "nom": "Sathonay Manutention", "desserte": "9A:A,9A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2634", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.872626485333083, 45.827127225729029 ] } }, -{ "type": "Feature", "properties": { "id": "2689", "nom": "Sathonay Mutualite", "desserte": "33A:R,9A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2637", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.871111009748788, 45.820230344402965 ] } }, -{ "type": "Feature", "properties": { "id": "2690", "nom": "Sathonay Mutualite", "desserte": "33A:A,77A:A,9A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2635", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.870443508332849, 45.819993358047256 ] } }, -{ "type": "Feature", "properties": { "id": "2694", "nom": "Sathonay Republique", "desserte": "9A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2639", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.874167447535728, 45.826201306602343 ] } }, -{ "type": "Feature", "properties": { "id": "2695", "nom": "Sathonay Republique", "desserte": "9A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2640", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.873977830871005, 45.82599855546232 ] } }, -{ "type": "Feature", "properties": { "id": "2700", "nom": "Saxe - Gambetta", "desserte": "C14A:A,C4A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "196", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.846954904934261, 45.754460347762077 ] } }, -{ "type": "Feature", "properties": { "id": "11031", "nom": "Cimetiere Bas", "desserte": "50A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3579", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.98114614930507, 45.698737503802676 ] } }, -{ "type": "Feature", "properties": { "id": "1425", "nom": "La Pagere - Les Brosses", "desserte": "25A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1752", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.914904377823352, 45.7490586199579 ] } }, -{ "type": "Feature", "properties": { "id": "1520", "nom": "Le Belvedere", "desserte": "C20A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1831", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.745653038932214, 45.732044730628289 ] } }, -{ "type": "Feature", "properties": { "id": "1564", "nom": "Le Quincieux", "desserte": "72B:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1874", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.698653426308405, 45.765356392352743 ] } }, -{ "type": "Feature", "properties": { "id": "1603", "nom": "Leon Bourgeois", "desserte": "79A:A,C15A:R,C17A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1902", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.900938787712692, 45.727766226234095 ] } }, -{ "type": "Feature", "properties": { "id": "1617", "nom": "Les Balmes", "desserte": "111A:R,54A:R,76A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1913", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.894990452545685, 45.664775577870401 ] } }, -{ "type": "Feature", "properties": { "id": "1668", "nom": "Les Epinettes", "desserte": "77A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1960", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.876878320149616, 45.835546544057877 ] } }, -{ "type": "Feature", "properties": { "id": "2308", "nom": "Peupliers", "desserte": "171:R,C5A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2413", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.871232784858766, 45.793835603054134 ] } }, -{ "type": "Feature", "properties": { "id": "2315", "nom": "Picard", "desserte": "C12A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2417", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.865716077662465, 45.707754860388668 ] } }, -{ "type": "Feature", "properties": { "id": "2316", "nom": "Pierre Audry", "desserte": "448A:A,66A:A,90A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2418", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.808380585774175, 45.762211169953744 ] } }, -{ "type": "Feature", "properties": { "id": "2414", "nom": "Poleymieux La Tour", "desserte": "84A:A,84A:R,R2A:A,R2A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2465", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.798762019929122, 45.861380758943639 ] } }, -{ "type": "Feature", "properties": { "id": "2421", "nom": "Polyclinique de Rillieux", "desserte": "33A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2469", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.887501109368372, 45.822478918805082 ] } }, -{ "type": "Feature", "properties": { "id": "2425", "nom": "Poncettes", "desserte": "C20A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2471", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.80429359857692, 45.753092987666676 ] } }, -{ "type": "Feature", "properties": { "id": "2427", "nom": "Porte de Lyon", "desserte": "3A:A,3A:R,89A:A,89A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2475", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.762865508121718, 45.821656997286617 ] } }, -{ "type": "Feature", "properties": { "id": "2430", "nom": "Professeur Guerin", "desserte": "448A:A,66A:A,90A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2479", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.806536367804379, 45.764673047381848 ] } }, -{ "type": "Feature", "properties": { "id": "2487", "nom": "Pont de La Mulatiere", "desserte": "15A:A,63A:A,C10A:A,C7B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2531", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.815112318043915, 45.730369939404518 ] } }, -{ "type": "Feature", "properties": { "id": "2521", "nom": "Pont Koënig", "desserte": "40A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "184", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.812592459458808, 45.769787299598875 ] } }, -{ "type": "Feature", "properties": { "id": "2548", "nom": "Pont Rouge", "desserte": "11B:R,12B:R,14B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2550", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.783440541578684, 45.72365727388086 ] } }, -{ "type": "Feature", "properties": { "id": "2549", "nom": "Pont Wilson", "desserte": "171:R,27A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "188", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.83788241291278, 45.761089708151225 ] } }, -{ "type": "Feature", "properties": { "id": "2552", "nom": "Pyrenees", "desserte": "C12A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2552", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.854266175262856, 45.721748241490104 ] } }, -{ "type": "Feature", "properties": { "id": "2607", "nom": "Rillieux Piscine", "desserte": "ZI4A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2577", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.88765453489733, 45.816075413151466 ] } }, -{ "type": "Feature", "properties": { "id": "2608", "nom": "Rillieux Piscine", "desserte": "ZI4A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2578", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.887696452033526, 45.816146473023778 ] } }, -{ "type": "Feature", "properties": { "id": "2633", "nom": "Rouget de l'Isle", "desserte": "25A:A,C13A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2602", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.866151150429605, 45.754704514543334 ] } }, -{ "type": "Feature", "properties": { "id": "2984", "nom": "Thioley", "desserte": "39A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2832", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.888059380320911, 45.715818064461622 ] } }, -{ "type": "Feature", "properties": { "id": "2985", "nom": "Timbaud", "desserte": "87A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2835", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.900612554122137, 45.691516232062376 ] } }, -{ "type": "Feature", "properties": { "id": "2987", "nom": "Tita Cois", "desserte": "7A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2839", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.903705839005268, 45.771665768029976 ] } }, -{ "type": "Feature", "properties": { "id": "2988", "nom": "Tita Cois", "desserte": "7A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2838", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.904775761928016, 45.771164230487805 ] } }, -{ "type": "Feature", "properties": { "id": "42279", "nom": "St Germain Gare", "desserte": "21A:A,21A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2738", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.804112860410307, 45.887573991881943 ] } }, -{ "type": "Feature", "properties": { "id": "461", "nom": "Chavril", "desserte": "17B:A,49A:A,90A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1123", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.797994072206011, 45.743627196261627 ] } }, -{ "type": "Feature", "properties": { "id": "525", "nom": "Cite Berliet centre", "desserte": "62A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1165", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.901057901664783, 45.705494185957335 ] } }, -{ "type": "Feature", "properties": { "id": "545", "nom": "Clinique Charcot", "desserte": "C20A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1188", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.797773901324963, 45.750202774934344 ] } }, -{ "type": "Feature", "properties": { "id": "620", "nom": "Couzon", "desserte": "43A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1242", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.832344322011737, 45.84568039051733 ] } }, -{ "type": "Feature", "properties": { "id": "934", "nom": "Fontaines Centre", "desserte": "77A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1427", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.846977857096966, 45.835012088234286 ] } }, -{ "type": "Feature", "properties": { "id": "1062", "nom": "Gorgeat", "desserte": "40A:A,70A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1485", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.839768114331779, 45.868972759249857 ] } }, -{ "type": "Feature", "properties": { "id": "1076", "nom": "Grandclement", "desserte": "448A:A,C26A:A,C3A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1499", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.89025772107748, 45.759613526251776 ] } }, -{ "type": "Feature", "properties": { "id": "1101", "nom": "Grange Haute", "desserte": "15A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1510", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.822816341908815, 45.6752838671079 ] } }, -{ "type": "Feature", "properties": { "id": "1613", "nom": "Les Arpinieres", "desserte": "C20A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1909", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.749474546015997, 45.734779882018223 ] } }, -{ "type": "Feature", "properties": { "id": "1671", "nom": "Les Essarts", "desserte": "24A:A,C15A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1965", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.898917584009659, 45.73266412945577 ] } }, -{ "type": "Feature", "properties": { "id": "1721", "nom": "Les Mollieres", "desserte": "77A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2010", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.848518826026655, 45.840270439628938 ] } }, -{ "type": "Feature", "properties": { "id": "1799", "nom": "Limonest Place", "desserte": "21A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2076", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.771371182798425, 45.83519891283558 ] } }, -{ "type": "Feature", "properties": { "id": "1802", "nom": "Longchamp", "desserte": "37A:A,C17A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2079", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.886162389313619, 45.781408881202928 ] } }, -{ "type": "Feature", "properties": { "id": "1803", "nom": "Longchamp", "desserte": "37A:R,C17A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2078", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.885110996924632, 45.78120771098925 ] } }, -{ "type": "Feature", "properties": { "id": "1817", "nom": "Louise Michel", "desserte": "69A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2091", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.893728436693432, 45.774521821272721 ] } }, -{ "type": "Feature", "properties": { "id": "1821", "nom": "Ludovic Bonin", "desserte": "C12A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2093", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.853918631074293, 45.727075742363418 ] } }, -{ "type": "Feature", "properties": { "id": "1822", "nom": "Luther King", "desserte": "24A:A,C15A:A,C17A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2095", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.901196948051609, 45.731927955587331 ] } }, -{ "type": "Feature", "properties": { "id": "1823", "nom": "Luther King", "desserte": "24A:R,C15A:R,C17A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2096", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.901252497148414, 45.732016699705227 ] } }, -{ "type": "Feature", "properties": { "id": "1825", "nom": "Luzy", "desserte": "46A:R,C21A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2100", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.801551989699997, 45.756186577221321 ] } }, -{ "type": "Feature", "properties": { "id": "1826", "nom": "Luzy", "desserte": "46A:A,C21A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2099", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.802171421735228, 45.756235981681421 ] } }, -{ "type": "Feature", "properties": { "id": "1834", "nom": "Lycee Jean Perrin", "desserte": "20A:A,2A:A,71A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2101", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.814593417863764, 45.794505259585335 ] } }, -{ "type": "Feature", "properties": { "id": "1835", "nom": "Lycee Jean Perrin", "desserte": "20A:R,2A:R,71A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2102", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.814409801158258, 45.794428299679566 ] } }, -{ "type": "Feature", "properties": { "id": "1842", "nom": "Lyon-Plage", "desserte": "40A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2103", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.819671306033268, 45.788983433999597 ] } }, -{ "type": "Feature", "properties": { "id": "1843", "nom": "Lyon-Plage", "desserte": "40A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2104", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.818298274076161, 45.787924640267327 ] } }, -{ "type": "Feature", "properties": { "id": "1845", "nom": "Machy", "desserte": "21A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2105", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.756392344622046, 45.871688388337333 ] } }, -{ "type": "Feature", "properties": { "id": "1863", "nom": "Mairie de Villeurbanne", "desserte": "27A:A,69A:A,C26A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2111", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.880249288751275, 45.76677176403247 ] } }, -{ "type": "Feature", "properties": { "id": "1864", "nom": "Mairie du 4eme", "desserte": "45A:A,C13A:R,S12A:R,S4A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2113", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.827485856957857, 45.774030485425499 ] } }, -{ "type": "Feature", "properties": { "id": "2777", "nom": "St Didier Eglise", "desserte": "22A:A,23A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2702", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.798400221593903, 45.809614113230609 ] } }, -{ "type": "Feature", "properties": { "id": "2990", "nom": "Titilleux", "desserte": "35A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2840", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.875055205430058, 45.712188534228673 ] } }, -{ "type": "Feature", "properties": { "id": "546", "nom": "Clinique du Tonkin", "desserte": "C17A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1190", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.864966124614606, 45.776766341890173 ] } }, -{ "type": "Feature", "properties": { "id": "698", "nom": "Decines Champ Fleuri", "desserte": "67A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1296", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.972233663251376, 45.77394909888389 ] } }, -{ "type": "Feature", "properties": { "id": "761", "nom": "Docteur Horand", "desserte": "19A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1325", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.802118849602069, 45.770845861786377 ] } }, -{ "type": "Feature", "properties": { "id": "844", "nom": "Egalite - Farrere", "desserte": "C25B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1385", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.949614074452176, 45.688287662340571 ] } }, -{ "type": "Feature", "properties": { "id": "856", "nom": "Entree de Decines", "desserte": "52A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1394", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.936436491593795, 45.768284360897738 ] } }, -{ "type": "Feature", "properties": { "id": "897", "nom": "Collège Plan du Loup", "desserte": "C19A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "725", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.788379208705846, 45.735286720125707 ] } }, -{ "type": "Feature", "properties": { "id": "1063", "nom": "Gorgeat", "desserte": "40A:R,70A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1484", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.839608487657515, 45.868580253638498 ] } }, -{ "type": "Feature", "properties": { "id": "1673", "nom": "Les Esses", "desserte": "C13A:R,C18A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1967", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.817236362020267, 45.771800064841436 ] } }, -{ "type": "Feature", "properties": { "id": "1722", "nom": "Les Mouettes", "desserte": "95A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2012", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 5.024786498999698, 45.782713702006269 ] } }, -{ "type": "Feature", "properties": { "id": "1723", "nom": "Les Mouettes", "desserte": "95A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2011", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 5.024600870303354, 45.782601118432844 ] } }, -{ "type": "Feature", "properties": { "id": "1726", "nom": "Les Muriers", "desserte": "15A:A,18B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2014", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.825797641758785, 45.696082301388586 ] } }, -{ "type": "Feature", "properties": { "id": "1727", "nom": "Les Muriers", "desserte": "15A:R,18B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2013", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.825745675490812, 45.696353488846221 ] } }, -{ "type": "Feature", "properties": { "id": "1729", "nom": "Centre Nautique.", "desserte": "16A:R,79A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2016", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.956358242653854, 45.763653613406504 ] } }, -{ "type": "Feature", "properties": { "id": "1730", "nom": "Les Noyeraies", "desserte": "3A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2019", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.75112695457271, 45.810837907979447 ] } }, -{ "type": "Feature", "properties": { "id": "1731", "nom": "Les Noyeraies", "desserte": "3A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2020", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.751055945248909, 45.810686417735845 ] } }, -{ "type": "Feature", "properties": { "id": "1737", "nom": "Les Oncheres", "desserte": "52A:R,C8A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5255", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.925469419718292, 45.77739521730048 ] } }, -{ "type": "Feature", "properties": { "id": "1743", "nom": "Les Pervenches", "desserte": "77A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2031", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.874178589824713, 45.85516760221207 ] } }, -{ "type": "Feature", "properties": { "id": "1744", "nom": "Les Peupliers - RN 7", "desserte": "86A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2033", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.739434917104898, 45.801889618331252 ] } }, -{ "type": "Feature", "properties": { "id": "1745", "nom": "Les Peupliers - RN 7", "desserte": "86A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2032", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.739355244448873, 45.802422375059756 ] } }, -{ "type": "Feature", "properties": { "id": "1769", "nom": "Les Terres St G. les Ollieres", "desserte": "72B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5166", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.705623523644396, 45.76087119049933 ] } }, -{ "type": "Feature", "properties": { "id": "1781", "nom": "Les Villas", "desserte": "21A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2066", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.775614757305545, 45.81823895418804 ] } }, -{ "type": "Feature", "properties": { "id": "1783", "nom": "Les Violettes", "desserte": "60A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2067", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.866652927046276, 45.667192086119186 ] } }, -{ "type": "Feature", "properties": { "id": "1784", "nom": "Lesire", "desserte": "52A:A,C3A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2068", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.913781248192956, 45.780805533480539 ] } }, -{ "type": "Feature", "properties": { "id": "1785", "nom": "Lesire", "desserte": "52A:R,C3A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2069", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.913748594090552, 45.780932303320753 ] } }, -{ "type": "Feature", "properties": { "id": "1786", "nom": "Letra", "desserte": "84A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2071", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.791947482795195, 45.828540602170769 ] } }, -{ "type": "Feature", "properties": { "id": "3137", "nom": "Gare d'Albigny-Neuville", "desserte": "43A:R,R2A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2969", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.835374553063574, 45.876343508563082 ] } }, -{ "type": "Feature", "properties": { "id": "3287", "nom": "Georges Roudil", "desserte": "39A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3022", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.887470181330402, 45.692563085521307 ] } }, -{ "type": "Feature", "properties": { "id": "42281", "nom": "Lissieu Le Nelie", "desserte": "61A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4708", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.73292242513567, 45.848824376403385 ] } }, -{ "type": "Feature", "properties": { "id": "65", "nom": "Andre Brun", "desserte": "16A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "836", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.966932516670089, 45.767736203793248 ] } }, -{ "type": "Feature", "properties": { "id": "81", "nom": "Ateliers SNCF", "desserte": "15A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "847", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.818038478016854, 45.720296080665456 ] } }, -{ "type": "Feature", "properties": { "id": "1066", "nom": "Meyzieu Grand Large", "desserte": "67A:A,95A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1490", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.993496326893517, 45.777651917052111 ] } }, -{ "type": "Feature", "properties": { "id": "1478", "nom": "La Voute", "desserte": "20A:R,22A:R,23A:R,2A:R,71A:R,S11A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1800", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.808191115987676, 45.78440403110951 ] } }, -{ "type": "Feature", "properties": { "id": "1521", "nom": "Le Belvedere", "desserte": "C20A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1830", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.74574199062667, 45.731727791961355 ] } }, -{ "type": "Feature", "properties": { "id": "1577", "nom": "Le Roule", "desserte": "17B:R,8A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1886", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.810634889753763, 45.730837790348495 ] } }, -{ "type": "Feature", "properties": { "id": "1604", "nom": "Leon Favre", "desserte": "C19A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1905", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.807336595377942, 45.743259900099211 ] } }, -{ "type": "Feature", "properties": { "id": "1605", "nom": "Leon Favre", "desserte": "C19A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1904", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.807582304169315, 45.743578528851231 ] } }, -{ "type": "Feature", "properties": { "id": "1656", "nom": "Les Cotes", "desserte": "15A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1951", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.822679293050174, 45.687042344481583 ] } }, -{ "type": "Feature", "properties": { "id": "1657", "nom": "Les Cotes", "desserte": "15A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1950", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.822536293229054, 45.687288544946142 ] } }, -{ "type": "Feature", "properties": { "id": "1659", "nom": "Les Coutures", "desserte": "8A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1952", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.803947657777494, 45.72530538362782 ] } }, -{ "type": "Feature", "properties": { "id": "1661", "nom": "Les Dauphins", "desserte": "76A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1954", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.90552336297768, 45.659394860956304 ] } }, -{ "type": "Feature", "properties": { "id": "1674", "nom": "Les Esses", "desserte": "2A:R,448A:A,45A:R,C13A:A,C18A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1968", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.819528340051587, 45.772424492907724 ] } }, -{ "type": "Feature", "properties": { "id": "1675", "nom": "Les Esses", "desserte": "2A:A,45A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1966", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.817634122901498, 45.772266086341276 ] } }, -{ "type": "Feature", "properties": { "id": "1680", "nom": "Les Fraisiers", "desserte": "78B:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1971", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.787649397427452, 45.673295016192441 ] } }, -{ "type": "Feature", "properties": { "id": "1692", "nom": "Les Grandes Treves", "desserte": "72B:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1983", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.713663173211986, 45.759144121836371 ] } }, -{ "type": "Feature", "properties": { "id": "1693", "nom": "Les Grandes Treves", "desserte": "72B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1986", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.714121399404639, 45.759035410137955 ] } }, -{ "type": "Feature", "properties": { "id": "1696", "nom": "Les Grillons", "desserte": "68B:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1989", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.958945211220945, 45.74642713144587 ] } }, -{ "type": "Feature", "properties": { "id": "1697", "nom": "Les Grillons", "desserte": "68B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1990", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.958063324565543, 45.746267698600505 ] } }, -{ "type": "Feature", "properties": { "id": "1713", "nom": "Champvert - Les Massues", "desserte": "45A:A,46A:A,90A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1997", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.795734056882481, 45.75950954490618 ] } }, -{ "type": "Feature", "properties": { "id": "1715", "nom": "Les Maures", "desserte": "39A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2001", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.857586564830338, 45.66376888509275 ] } }, -{ "type": "Feature", "properties": { "id": "1716", "nom": "Les Maures", "desserte": "39A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2000", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.85762544887293, 45.663777011665552 ] } }, -{ "type": "Feature", "properties": { "id": "1718", "nom": "Les Meurieres", "desserte": "296:R,62A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2006", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.949208447874335, 45.679466565628459 ] } }, -{ "type": "Feature", "properties": { "id": "1787", "nom": "Letra", "desserte": "84A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2070", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.792337392059035, 45.828622095244178 ] } }, -{ "type": "Feature", "properties": { "id": "3156", "nom": "Garibaldi - Berthelot", "desserte": "C12A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "377", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.847143616846867, 45.743096617175098 ] } }, -{ "type": "Feature", "properties": { "id": "3174", "nom": "Yvours", "desserte": "18B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2982", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.826906508559969, 45.689764630861355 ] } }, -{ "type": "Feature", "properties": { "id": "3370", "nom": "J.Jaures - Pommier", "desserte": "95A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1593", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 5.022035915018921, 45.77881863941348 ] } }, -{ "type": "Feature", "properties": { "id": "10474", "nom": "Girondins - Yves Farge", "desserte": "C22A:R,C7B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3452", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.831064412723474, 45.739485637635589 ] } }, -{ "type": "Feature", "properties": { "id": "10690", "nom": "St Nizier", "desserte": "S1A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3516", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.833193192928414, 45.764503092837174 ] } }, -{ "type": "Feature", "properties": { "id": "872", "nom": "Etats-Unis Viviani", "desserte": "26A:A,448A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "627", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.870837454410887, 45.724957644481272 ] } }, -{ "type": "Feature", "properties": { "id": "942", "nom": "Fontrobert", "desserte": "62A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1429", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.949380229539139, 45.673071448357 ] } }, -{ "type": "Feature", "properties": { "id": "1162", "nom": "Herriot - Cagne", "desserte": "C12A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "656", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.87536125371121, 45.693747019178282 ] } }, -{ "type": "Feature", "properties": { "id": "1489", "nom": "Lamothe - Madeleine", "desserte": "C7B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1812", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.849232956296828, 45.745777224609334 ] } }, -{ "type": "Feature", "properties": { "id": "1490", "nom": "Lamothe - Madeleine", "desserte": "35A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1813", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.847502093436981, 45.745599930546142 ] } }, -{ "type": "Feature", "properties": { "id": "1493", "nom": "Langevin", "desserte": "C12A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1818", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.881330743818528, 45.701460865793678 ] } }, -{ "type": "Feature", "properties": { "id": "1494", "nom": "Langevin", "desserte": "C12A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1817", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.881217003005984, 45.702057529064632 ] } }, -{ "type": "Feature", "properties": { "id": "1505", "nom": "Laurent Bonnevay", "desserte": "C15A:A,C15A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "234", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.909219685685014, 45.764698499917031 ] } }, -{ "type": "Feature", "properties": { "id": "1508", "nom": "Laurent Bonnevay", "desserte": "C3A:A,C3A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "236", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.908854677601092, 45.764868887736426 ] } }, -{ "type": "Feature", "properties": { "id": "1509", "nom": "Laurent Bonnevay", "desserte": "7A:A,7A:R,83A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "237", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.908388568440863, 45.765077595629272 ] } }, -{ "type": "Feature", "properties": { "id": "1522", "nom": "Le Bochu", "desserte": "C20A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1832", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.755656391761666, 45.737104021466394 ] } }, -{ "type": "Feature", "properties": { "id": "1523", "nom": "Le Bochu", "desserte": "C20A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1833", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.75512315703932, 45.736962500381352 ] } }, -{ "type": "Feature", "properties": { "id": "1524", "nom": "Le Broteau", "desserte": "18B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1834", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.827302027948022, 45.685040515884175 ] } }, -{ "type": "Feature", "properties": { "id": "1525", "nom": "Le Broteau", "desserte": "18B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1835", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.827502417367045, 45.684928050730036 ] } }, -{ "type": "Feature", "properties": { "id": "1533", "nom": "Le Colin", "desserte": "22A:A,23A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1846", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.800172517281986, 45.80809008420772 ] } }, -{ "type": "Feature", "properties": { "id": "1534", "nom": "Le Colin", "desserte": "20A:R,22A:R,23A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1845", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.800657465329937, 45.807710404227194 ] } }, -{ "type": "Feature", "properties": { "id": "1544", "nom": "Le Guillot", "desserte": "72B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1854", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.731012513240999, 45.759792514441457 ] } }, -{ "type": "Feature", "properties": { "id": "1545", "nom": "Le Guillot", "desserte": "72B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1853", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.731164332683067, 45.759735271404942 ] } }, -{ "type": "Feature", "properties": { "id": "1546", "nom": "Le Meridien", "desserte": "5A:R,86A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1855", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.752586029893226, 45.773749738101365 ] } }, -{ "type": "Feature", "properties": { "id": "1547", "nom": "Le Meridien", "desserte": "5A:A,86A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1856", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.752174323686696, 45.775504770127476 ] } }, -{ "type": "Feature", "properties": { "id": "1548", "nom": "Le Meruzin", "desserte": "20A:A,22A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1858", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.794824123044139, 45.818009428667224 ] } }, -{ "type": "Feature", "properties": { "id": "1549", "nom": "Le Meruzin", "desserte": "20A:R,22A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1857", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.794924587252854, 45.817665188835136 ] } }, -{ "type": "Feature", "properties": { "id": "1550", "nom": "Le Molard", "desserte": "16A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1862", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.967906256752367, 45.771152031290065 ] } }, -{ "type": "Feature", "properties": { "id": "1551", "nom": "Le Molard", "desserte": "16A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1861", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.967811584147552, 45.771055231065006 ] } }, -{ "type": "Feature", "properties": { "id": "1580", "nom": "Le Roulet", "desserte": "37A:A,7A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1889", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.897808074817578, 45.785059508721623 ] } }, -{ "type": "Feature", "properties": { "id": "1581", "nom": "Le Roulet", "desserte": "37A:R,7A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1888", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.897532313147669, 45.784939777200044 ] } }, -{ "type": "Feature", "properties": { "id": "1586", "nom": "Le Vergoin", "desserte": "31A:A,S10A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1891", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.838524436370801, 45.804335217707902 ] } }, -{ "type": "Feature", "properties": { "id": "1589", "nom": "Le Vernay", "desserte": "33A:R,70A:R,77A:R,9A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1892", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.856557375475276, 45.808585870268253 ] } }, -{ "type": "Feature", "properties": { "id": "10482", "nom": "Vaulx-en-Velin La Grappiniere", "desserte": "37A:A,7A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3455", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.912469234335017, 45.788225837551416 ] } }, -{ "type": "Feature", "properties": { "id": "89", "nom": "Audibert Lavirotte", "desserte": "35A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "851", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.857317222459288, 45.734776487468721 ] } }, -{ "type": "Feature", "properties": { "id": "98", "nom": "Ayasse - Yves Farge", "desserte": "C22A:A,C7B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "862", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.827360128929278, 45.735463402435421 ] } }, -{ "type": "Feature", "properties": { "id": "116", "nom": "Baraillon", "desserte": "5A:A,98A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "868", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.759754602282634, 45.764207314258712 ] } }, -{ "type": "Feature", "properties": { "id": "462", "nom": "Chavril", "desserte": "17B:R,49A:R,90A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1122", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.798519925567522, 45.744461758576804 ] } }, -{ "type": "Feature", "properties": { "id": "762", "nom": "Docteur Rebatel", "desserte": "C16A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1326", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.873552015914191, 45.749838825117621 ] } }, -{ "type": "Feature", "properties": { "id": "805", "nom": "Duquesne - Foch", "desserte": "27A:A,C6B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1355", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.843636053777836, 45.772491918023796 ] } }, -{ "type": "Feature", "properties": { "id": "834", "nom": "Ecully Centre", "desserte": "19A:R,3A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1375", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.779102743712339, 45.774481229040227 ] } }, -{ "type": "Feature", "properties": { "id": "1426", "nom": "La Pagere - Les Brosses", "desserte": "24A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1754", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.914444941078711, 45.748583093916082 ] } }, -{ "type": "Feature", "properties": { "id": "1435", "nom": "La Plaine", "desserte": "C20A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1764", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.784242040230072, 45.74457603039324 ] } }, -{ "type": "Feature", "properties": { "id": "1441", "nom": "La Riviere", "desserte": "84A:R,R2A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1769", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.804496623348625, 45.854819216847559 ] } }, -{ "type": "Feature", "properties": { "id": "1442", "nom": "La Riviere", "desserte": "84A:A,R2A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1770", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.804158390630723, 45.854745628805134 ] } }, -{ "type": "Feature", "properties": { "id": "1447", "nom": "La Sablière", "desserte": "171:A,S8A:A,S8A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "417", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.906884519889283, 45.808310021088829 ] } }, -{ "type": "Feature", "properties": { "id": "1448", "nom": "La Sablière", "desserte": "171:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "416", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.907206382733944, 45.808311660804023 ] } }, -{ "type": "Feature", "properties": { "id": "1454", "nom": "La Saulaie", "desserte": "15A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1778", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.818378760099539, 45.717867268500129 ] } }, -{ "type": "Feature", "properties": { "id": "1455", "nom": "La Sauvagere", "desserte": "31A:A,43A:A,S10A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1780", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.82550873925338, 45.795434093936002 ] } }, -{ "type": "Feature", "properties": { "id": "1456", "nom": "La Sauvagere", "desserte": "31A:R,43A:R,S10A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1779", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.824563231156223, 45.795013981476217 ] } }, -{ "type": "Feature", "properties": { "id": "1459", "nom": "La Tour", "desserte": "60A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1782", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.861433639873307, 45.682728891118686 ] } }, -{ "type": "Feature", "properties": { "id": "1460", "nom": "La Tour", "desserte": "60A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1781", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.861482069024377, 45.682664791778386 ] } }, -{ "type": "Feature", "properties": { "id": "1461", "nom": "La Tour de Salvagny", "desserte": "86A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1783", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.717676353879226, 45.815035029737075 ] } }, -{ "type": "Feature", "properties": { "id": "1462", "nom": "La Tour de Salvagny", "desserte": "86A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1784", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.71764049958676, 45.815098795254642 ] } }, -{ "type": "Feature", "properties": { "id": "1463", "nom": "La Tourette", "desserte": "73A:A,C24B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "712", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.736192641328927, 45.747359788838381 ] } }, -{ "type": "Feature", "properties": { "id": "1479", "nom": "La Vuldy", "desserte": "72B:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1803", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.719935316476144, 45.758183068788995 ] } }, -{ "type": "Feature", "properties": { "id": "1480", "nom": "La Vuldy", "desserte": "72B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1802", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.720420385014272, 45.758100763405977 ] } }, -{ "type": "Feature", "properties": { "id": "1481", "nom": "Laborde", "desserte": "31A:A,43A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1804", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.813180841885133, 45.785427266360323 ] } }, -{ "type": "Feature", "properties": { "id": "1482", "nom": "Laborde", "desserte": "31A:R,43A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1806", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.812676539809659, 45.784799305456616 ] } }, -{ "type": "Feature", "properties": { "id": "1483", "nom": "Lacassagne - Eugenie", "desserte": "C26A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1807", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.887503641528676, 45.746534181758022 ] } }, -{ "type": "Feature", "properties": { "id": "1663", "nom": "Les Dominicaines", "desserte": "15A:A,18B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1957", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.815717545425708, 45.655062696387361 ] } }, -{ "type": "Feature", "properties": { "id": "2740", "nom": "Sous le Fort", "desserte": "60A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2675", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.86094727634361, 45.670435155678227 ] } }, -{ "type": "Feature", "properties": { "id": "2807", "nom": "St Genis Mairie", "desserte": "88B:A,C10A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2735", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.794909313882464, 45.698743885968724 ] } }, -{ "type": "Feature", "properties": { "id": "1178", "nom": "Hopital Croix-Rousse", "desserte": "38A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1560", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.832842450294894, 45.782372650109728 ] } }, -{ "type": "Feature", "properties": { "id": "1179", "nom": "Hopital Croix-Rousse", "desserte": "448A:A,C13A:A,S4A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1557", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.833363849678751, 45.781388931358585 ] } }, -{ "type": "Feature", "properties": { "id": "1180", "nom": "Hopital Henry Gabrielle", "desserte": "C10A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1563", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.79412225056828, 45.690318184134739 ] } }, -{ "type": "Feature", "properties": { "id": "1181", "nom": "Hopital Henry Gabrielle", "desserte": "C10A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1564", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.794265386100215, 45.69007201942091 ] } }, -{ "type": "Feature", "properties": { "id": "1189", "nom": "Hôtel de Ville - Louis Pradel", "desserte": "C13A:R,C3A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "112", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.835972118290589, 45.767163041589839 ] } }, -{ "type": "Feature", "properties": { "id": "1190", "nom": "Hôtel de Ville - Louis Pradel", "desserte": "C14A:A,C3A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "113", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.836089388765163, 45.767196435783355 ] } }, -{ "type": "Feature", "properties": { "id": "1210", "nom": "Ile Tabard", "desserte": "15A:A,18B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1578", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.825986897438746, 45.664466196250544 ] } }, -{ "type": "Feature", "properties": { "id": "1211", "nom": "Ile Tabard", "desserte": "15A:R,18B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1579", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.826246408972805, 45.664811474528385 ] } }, -{ "type": "Feature", "properties": { "id": "1212", "nom": "Impasse Mathieu", "desserte": "C1A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1581", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.839620591932291, 45.788270606264668 ] } }, -{ "type": "Feature", "properties": { "id": "1213", "nom": "Impasse Mathieu", "desserte": "C1A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1580", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.839501057429328, 45.78821395198414 ] } }, -{ "type": "Feature", "properties": { "id": "1219", "nom": "Irigny Gare", "desserte": "18B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1582", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.831435498471554, 45.677630696738042 ] } }, -{ "type": "Feature", "properties": { "id": "1223", "nom": "Jean Collet", "desserte": "85A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1590", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 5.000615448699479, 45.780939982027625 ] } }, -{ "type": "Feature", "properties": { "id": "1224", "nom": "Jean Collet", "desserte": "85A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1589", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 5.000644199630889, 45.781002313012202 ] } }, -{ "type": "Feature", "properties": { "id": "1225", "nom": "J.Jaures - Malherbe", "desserte": "95A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1592", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 5.015449795657203, 45.771441312859672 ] } }, -{ "type": "Feature", "properties": { "id": "1237", "nom": "Jardin des Plantes", "desserte": "S12A:R,S6A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1602", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.828969693294352, 45.771009174485826 ] } }, -{ "type": "Feature", "properties": { "id": "1238", "nom": "Jardin des Plantes", "desserte": "S6A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1601", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.829011501060232, 45.771080255796129 ] } }, -{ "type": "Feature", "properties": { "id": "1252", "nom": "Jean Macé", "desserte": "35A:R,C12A:R,C7B:R,ZI6A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "287", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.843000847297684, 45.746978705617451 ] } }, -{ "type": "Feature", "properties": { "id": "1317", "nom": "La Blache", "desserte": "84A:A,R2A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1663", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.808187285236566, 45.856394378323799 ] } }, -{ "type": "Feature", "properties": { "id": "1318", "nom": "La Blanchisserie", "desserte": "97A:R,S14A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5158", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.843551019526696, 45.8764766326969 ] } }, -{ "type": "Feature", "properties": { "id": "1320", "nom": "La Borelle", "desserte": "35A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5261", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.882044512948186, 45.711067015957255 ] } }, -{ "type": "Feature", "properties": { "id": "1321", "nom": "La Borelle", "desserte": "35A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "638", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.882320286099101, 45.711195776720082 ] } }, -{ "type": "Feature", "properties": { "id": "1328", "nom": "La Buissiere - Viralamande", "desserte": "C5A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1668", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.881062608460761, 45.803262846615439 ] } }, -{ "type": "Feature", "properties": { "id": "1333", "nom": "La Bussiere", "desserte": "11B:A,12B:A,14B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5159", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.802935569892359, 45.719638994591271 ] } }, -{ "type": "Feature", "properties": { "id": "1338", "nom": "La Chardonniere", "desserte": "C20A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1675", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.765178016117217, 45.734117082938553 ] } }, -{ "type": "Feature", "properties": { "id": "1354", "nom": "La Courtille - Bramafan", "desserte": "C19A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1686", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.801473822771776, 45.73090438258231 ] } }, -{ "type": "Feature", "properties": { "id": "1358", "nom": "La Creuzette", "desserte": "70A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5160", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.856522781027145, 45.83029784972085 ] } }, -{ "type": "Feature", "properties": { "id": "1364", "nom": "La Croix de Presles", "desserte": "84A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1694", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.793400588152989, 45.842037538840295 ] } }, -{ "type": "Feature", "properties": { "id": "1375", "nom": "La Favorite", "desserte": "46A:A,C21A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1703", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.804932116380486, 45.756148311214275 ] } }, -{ "type": "Feature", "properties": { "id": "575", "nom": "Colbert", "desserte": "S6A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1218", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.834461137252398, 45.772408349255159 ] } }, -{ "type": "Feature", "properties": { "id": "621", "nom": "Gare et stade de Couzon", "desserte": "43A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1244", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.832383120943844, 45.849370050904426 ] } }, -{ "type": "Feature", "properties": { "id": "717", "nom": "Demi-Lune Mairie", "desserte": "5A:R,73A:R,C21A:A,C21A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1308", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.777385973021715, 45.760432023165635 ] } }, -{ "type": "Feature", "properties": { "id": "720", "nom": "Demi-Lune Vauboin", "desserte": "55A:R,72B:R,73A:R,86A:R,98A:R,C21A:A,C21A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1313", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.782470749308548, 45.764020764600062 ] } }, -{ "type": "Feature", "properties": { "id": "721", "nom": "Demi-Lune Vauboin", "desserte": "55A:A,73A:A,86A:A,98A:A,C21A:A,C21A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1310", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.782024265691834, 45.764102498524664 ] } }, -{ "type": "Feature", "properties": { "id": "764", "nom": "Duchere Balmont", "desserte": "118A:A,21A:A,61A:A,66A:A,89A:A,C14A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1327", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.799054676930989, 45.789455310789648 ] } }, -{ "type": "Feature", "properties": { "id": "770", "nom": "Duchere Capucines", "desserte": "448A:A,66A:R,89A:R,C14A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1329", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.794291896787894, 45.789406607494513 ] } }, -{ "type": "Feature", "properties": { "id": "818", "nom": "Cité Internationale - Transbordeur", "desserte": "70A:R,C26A:A,C2A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "605", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.859990058125244, 45.784385334985721 ] } }, -{ "type": "Feature", "properties": { "id": "835", "nom": "Ecully Centre", "desserte": "19A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1373", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.779117191446995, 45.774516918762195 ] } }, -{ "type": "Feature", "properties": { "id": "836", "nom": "Ecully Centre", "desserte": "55A:R,S15A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1377", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.778084682359051, 45.774728393479784 ] } }, -{ "type": "Feature", "properties": { "id": "839", "nom": "Ecully Le Trouillat", "desserte": "3A:A,55A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1381", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.774012047671239, 45.776581059533498 ] } }, -{ "type": "Feature", "properties": { "id": "845", "nom": "Egalite - Farrere", "desserte": "C25B:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1384", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.949833880580036, 45.688318545930343 ] } }, -{ "type": "Feature", "properties": { "id": "847", "nom": "Eglantines", "desserte": "68B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1389", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.96270576778536, 45.740362135728361 ] } }, -{ "type": "Feature", "properties": { "id": "898", "nom": "Collège Plan du Loup", "desserte": "C19A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "724", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.789622810675754, 45.73521453634747 ] } }, -{ "type": "Feature", "properties": { "id": "899", "nom": "Felix Faure - Vivier Merle", "desserte": "C7B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "766", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.859176690628478, 45.754033345230191 ] } }, -{ "type": "Feature", "properties": { "id": "908", "nom": "Feuillat - Albert Thomas", "desserte": "C16A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1405", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.87509176571226, 45.744196209575939 ] } }, -{ "type": "Feature", "properties": { "id": "910", "nom": "Feuillat - Freres Lumiere", "desserte": "C16A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1407", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.874471952263252, 45.743301096906222 ] } }, -{ "type": "Feature", "properties": { "id": "911", "nom": "Feuillat - Freres Lumiere", "desserte": "C16A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1408", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.873975648116254, 45.743411332573523 ] } }, -{ "type": "Feature", "properties": { "id": "943", "nom": "Fontrobert", "desserte": "62A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1428", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.949315449677592, 45.674954285425386 ] } }, -{ "type": "Feature", "properties": { "id": "1046", "nom": "Genovefains", "desserte": "448A:A,55A:R,C20A:R,C21A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1482", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.816115952583355, 45.753507554093005 ] } }, -{ "type": "Feature", "properties": { "id": "1106", "nom": "Gratte Ciel", "desserte": "69A:A,C26A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "88", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.88180888660033, 45.76906776731559 ] } }, -{ "type": "Feature", "properties": { "id": "1108", "nom": "Greillon", "desserte": "19A:A,31A:A,40A:A,C14A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1516", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.814894266416478, 45.767207206514392 ] } }, -{ "type": "Feature", "properties": { "id": "1112", "nom": "Grezieu la Varenne", "desserte": "C24B:A,C24B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1519", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.691187643373767, 45.747169836149453 ] } }, -{ "type": "Feature", "properties": { "id": "1113", "nom": "Grezieu la Varenne", "desserte": "C24B:A,C24B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1520", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.691805578677478, 45.747489896517045 ] } }, -{ "type": "Feature", "properties": { "id": "1114", "nom": "Gros Platane", "desserte": "40A:A,70A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1524", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.838923419961104, 45.837423992946064 ] } }, -{ "type": "Feature", "properties": { "id": "1502", "nom": "Lassausaie", "desserte": "21A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1825", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.770656488277927, 45.872847822531163 ] } }, -{ "type": "Feature", "properties": { "id": "46537", "nom": "Crepieux Les Brosses", "desserte": "S8A:A,S8A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5523", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.912732923115098, 45.809238469292353 ] } }, -{ "type": "Feature", "properties": { "id": "626", "nom": "Craponne Dumont", "desserte": "73A:R,C24B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1247", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.715864521932771, 45.74730650788397 ] } }, -{ "type": "Feature", "properties": { "id": "627", "nom": "Craponne Mairie", "desserte": "73A:A,C24B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1250", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.723270308971871, 45.742576886006475 ] } }, -{ "type": "Feature", "properties": { "id": "628", "nom": "Craponne Mairie", "desserte": "73A:R,C24B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1249", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.723736541225416, 45.742359952607103 ] } }, -{ "type": "Feature", "properties": { "id": "631", "nom": "Craponne Martin", "desserte": "73A:A,C24B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1252", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.729224321971925, 45.747355537237368 ] } }, -{ "type": "Feature", "properties": { "id": "632", "nom": "Craponne Martin", "desserte": "73A:R,C24B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1251", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.728824190572048, 45.747319062301216 ] } }, -{ "type": "Feature", "properties": { "id": "636", "nom": "Crecy", "desserte": "20A:R,22A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1254", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.803142659494779, 45.800562988862005 ] } }, -{ "type": "Feature", "properties": { "id": "639", "nom": "Crepieux Les Brosses", "desserte": "171:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1256", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.913383755258137, 45.808017164450796 ] } }, -{ "type": "Feature", "properties": { "id": "642", "nom": "Croix des Rameaux", "desserte": "20A:R,22A:R,23A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1258", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.796470970697131, 45.81597514532212 ] } }, -{ "type": "Feature", "properties": { "id": "645", "nom": "Croizat - Coblod", "desserte": "35A:A,39A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1260", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.88748173735959, 45.702518302815037 ] } }, -{ "type": "Feature", "properties": { "id": "647", "nom": "Cuers", "desserte": "89A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1262", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.767976684701181, 45.798350231158835 ] } }, -{ "type": "Feature", "properties": { "id": "655", "nom": "Curie - Jules Guesde", "desserte": "35A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1265", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.885205224514602, 45.709122982044448 ] } }, -{ "type": "Feature", "properties": { "id": "664", "nom": "Cuzin - Stalingrad", "desserte": "C3A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1272", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.914846265487445, 45.774435053662593 ] } }, -{ "type": "Feature", "properties": { "id": "666", "nom": "Cyprian - Genas", "desserte": "25A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1273", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.901846218137068, 45.75220222108058 ] } }, -{ "type": "Feature", "properties": { "id": "667", "nom": "Cyprian - Leon Blum", "desserte": "448A:A,C11A:A,C3A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1274", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.901489231852928, 45.760266625699565 ] } }, -{ "type": "Feature", "properties": { "id": "670", "nom": "Cyrano", "desserte": "C9A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1276", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.879391012496748, 45.754882455488776 ] } }, -{ "type": "Feature", "properties": { "id": "671", "nom": "D'Arsonval - Jacquard", "desserte": "76A:R,ZI5B:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1279", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.971168199427943, 45.727273452720276 ] } }, -{ "type": "Feature", "properties": { "id": "672", "nom": "D'Arsonval - Jacquard", "desserte": "76A:A,ZI5B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1278", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.971271127676368, 45.728081183324285 ] } }, -{ "type": "Feature", "properties": { "id": "673", "nom": "Dardilly Le Bas", "desserte": "3A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1280", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.752330748528022, 45.807769713829515 ] } }, -{ "type": "Feature", "properties": { "id": "675", "nom": "Dardilly Le Haut", "desserte": "3A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1282", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.7505381730097, 45.817655274394099 ] } }, -{ "type": "Feature", "properties": { "id": "676", "nom": "Dardilly Le Haut", "desserte": "3A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1283", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.750527905970919, 45.817421470207748 ] } }, -{ "type": "Feature", "properties": { "id": "681", "nom": "Dauphine", "desserte": "62A:A,87A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1286", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.952777065646439, 45.662946467270402 ] } }, -{ "type": "Feature", "properties": { "id": "687", "nom": "De Gaulle - Pont SNCF", "desserte": "73A:A,C21A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1289", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.771132725759784, 45.755122231283245 ] } }, -{ "type": "Feature", "properties": { "id": "751", "nom": "Desgrand", "desserte": "37A:A,7A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1319", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.904857330347007, 45.785582663163133 ] } }, -{ "type": "Feature", "properties": { "id": "806", "nom": "Duquesne - Foch", "desserte": "27A:R,C4A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1353", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.843118935619056, 45.772152415042228 ] } }, -{ "type": "Feature", "properties": { "id": "944", "nom": "Fort de Bron", "desserte": "C15A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1431", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.917562762624148, 45.731174683327637 ] } }, -{ "type": "Feature", "properties": { "id": "1078", "nom": "Grandclement", "desserte": "C11A:R,C3A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1498", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.89024645169064, 45.759370745920208 ] } }, -{ "type": "Feature", "properties": { "id": "1140", "nom": "Hauteclair", "desserte": "S9A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1538", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.789718218746472, 45.692335440231489 ] } }, -{ "type": "Feature", "properties": { "id": "1218", "nom": "Irigny Gare", "desserte": "18B:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1583", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.831252044513909, 45.677265732979897 ] } }, -{ "type": "Feature", "properties": { "id": "526", "nom": "Cite de l' Enfance - IDEF", "desserte": "26A:A,C15A:A,C17A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1167", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.907446577243749, 45.725934056315388 ] } }, -{ "type": "Feature", "properties": { "id": "527", "nom": "Cite de l' Enfance - IDEF", "desserte": "26A:R,C15A:R,C17A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1168", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.907101797870382, 45.726257003555773 ] } }, -{ "type": "Feature", "properties": { "id": "528", "nom": "Cite Edouard Herriot", "desserte": "31A:A,31A:R,S10A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1169", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.832562577583335, 45.802568565650603 ] } }, -{ "type": "Feature", "properties": { "id": "530", "nom": "Hopital St Jean de Dieu", "desserte": "C12A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1171", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.854133781314698, 45.723911497287141 ] } }, -{ "type": "Feature", "properties": { "id": "531", "nom": "Cite Ribaud", "desserte": "28A:R,68B:A,ZI5B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1174", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.950475490192515, 45.740539618242408 ] } }, -{ "type": "Feature", "properties": { "id": "532", "nom": "Cite Ribaud", "desserte": "28A:A,68B:R,ZI5B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1173", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.950377455430386, 45.74064091862499 ] } }, -{ "type": "Feature", "properties": { "id": "533", "nom": "Cite St Jean", "desserte": "7A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1177", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.902996094832784, 45.776578763099472 ] } }, -{ "type": "Feature", "properties": { "id": "534", "nom": "Cite St Jean", "desserte": "7A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1176", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.902527456355689, 45.776184406503504 ] } }, -{ "type": "Feature", "properties": { "id": "539", "nom": "Claude Farrere", "desserte": "C25B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1183", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.953118653324952, 45.687710845820931 ] } }, -{ "type": "Feature", "properties": { "id": "540", "nom": "Claude Farrere", "desserte": "C25B:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1184", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.951388818893126, 45.688066256266858 ] } }, -{ "type": "Feature", "properties": { "id": "541", "nom": "Claudius Collonge", "desserte": "63A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1186", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.820297045379466, 45.74842850848836 ] } }, -{ "type": "Feature", "properties": { "id": "547", "nom": "Clinique du Tonkin", "desserte": "69A:A,69A:R,C17A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1189", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.864903525279592, 45.776803756467487 ] } }, -{ "type": "Feature", "properties": { "id": "550", "nom": "Clinique Sauvegarde", "desserte": "19A:A,89A:A,S15A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1191", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.788620151249789, 45.788882491696036 ] } }, -{ "type": "Feature", "properties": { "id": "551", "nom": "Clinique Sauvegarde", "desserte": "19A:R,89A:R,S15A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1192", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.788530197899774, 45.788596421940937 ] } }, -{ "type": "Feature", "properties": { "id": "552", "nom": "Apollinaire - Bourbonnais", "desserte": "19A:R,3A:R,66A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1193", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.795654402981572, 45.772688817931282 ] } }, -{ "type": "Feature", "properties": { "id": "553", "nom": "Clinique Trarieux", "desserte": "C8A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1196", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.891628999558588, 45.744559065737242 ] } }, -{ "type": "Feature", "properties": { "id": "554", "nom": "Clinique Trarieux", "desserte": "C8A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1195", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.891694884015289, 45.744593571238099 ] } }, -{ "type": "Feature", "properties": { "id": "555", "nom": "Clos Chaurand", "desserte": "88B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1199", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.798235663719456, 45.693558328487192 ] } }, -{ "type": "Feature", "properties": { "id": "556", "nom": "Clos Chaurand", "desserte": "88B:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1198", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.79812098380847, 45.693578848171718 ] } }, -{ "type": "Feature", "properties": { "id": "559", "nom": "Clos des Cedres", "desserte": "46A:A,90A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1206", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.78735898369847, 45.760295759540035 ] } }, -{ "type": "Feature", "properties": { "id": "560", "nom": "Clos des Cedres", "desserte": "46A:R,90A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1205", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.787445308569215, 45.760212865921275 ] } }, -{ "type": "Feature", "properties": { "id": "561", "nom": "Clos des Chassagnes", "desserte": "17B:A,8A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1208", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.808313100834497, 45.72464223605953 ] } }, -{ "type": "Feature", "properties": { "id": "562", "nom": "Clos des Chassagnes", "desserte": "17B:R,8A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1207", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.807998996391074, 45.72480217273953 ] } }, -{ "type": "Feature", "properties": { "id": "563", "nom": "Clos Jouve", "desserte": "2A:A,45A:A,C13A:R,C18A:R,S4A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1211", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.82101798911618, 45.772940613634617 ] } }, -{ "type": "Feature", "properties": { "id": "622", "nom": "Gare et stade de Couzon", "desserte": "43A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1243", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.832076341980766, 45.848854786226411 ] } }, -{ "type": "Feature", "properties": { "id": "623", "nom": "Craponne Centre", "desserte": "73A:A,C24B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1246", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.722810264470091, 45.747384074679552 ] } }, -{ "type": "Feature", "properties": { "id": "12266", "nom": "Gare de Vaise", "desserte": "89A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "253", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.804682883755328, 45.780978763506269 ] } }, -{ "type": "Feature", "properties": { "id": "463", "nom": "Chazay", "desserte": "C20A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1125", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.786263164088715, 45.745504040018041 ] } }, -{ "type": "Feature", "properties": { "id": "464", "nom": "Chazay", "desserte": "C20A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1124", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.786682969653187, 45.745692898032061 ] } }, -{ "type": "Feature", "properties": { "id": "466", "nom": "Chemin Bressan", "desserte": "43A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1126", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.834303744500341, 45.881984106501804 ] } }, -{ "type": "Feature", "properties": { "id": "467", "nom": "Chemin de Grange Blanche", "desserte": "54A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1129", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.901834345134705, 45.663701004649333 ] } }, -{ "type": "Feature", "properties": { "id": "468", "nom": "Chemin de Grange Blanche", "desserte": "54A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1128", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.901757401682771, 45.663702765754032 ] } }, -{ "type": "Feature", "properties": { "id": "473", "nom": "Chemin des Moulins", "desserte": "17B:A,C7B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1130", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.811724696685904, 45.696762828959812 ] } }, -{ "type": "Feature", "properties": { "id": "474", "nom": "Chemin des Moulins", "desserte": "17B:R,C7B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1131", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.812571318608474, 45.697023174110164 ] } }, -{ "type": "Feature", "properties": { "id": "475", "nom": "Chemin des Pivolles", "desserte": "52A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1132", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.93417748207498, 45.753133053944779 ] } }, -{ "type": "Feature", "properties": { "id": "476", "nom": "Chemin des Pivolles", "desserte": "52A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1133", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.934232256878166, 45.753203798700902 ] } }, -{ "type": "Feature", "properties": { "id": "478", "nom": "Chemin du Chene", "desserte": "20A:A,22A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1135", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.794440422741959, 45.824111574184748 ] } }, -{ "type": "Feature", "properties": { "id": "479", "nom": "Chemin du Chene", "desserte": "20A:R,22A:R,84A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1134", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.794457702660719, 45.823922172873502 ] } }, -{ "type": "Feature", "properties": { "id": "482", "nom": "Caluire Chemin Petit", "desserte": "C2A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1141", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.860590124897014, 45.803346591527834 ] } }, -{ "type": "Feature", "properties": { "id": "483", "nom": "Caluire Chemin Petit", "desserte": "C2A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1139", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.860126867105719, 45.803347996804341 ] } }, -{ "type": "Feature", "properties": { "id": "484", "nom": "Caluire Chemin Petit", "desserte": "70A:R,S5A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1138", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.860388830869239, 45.804008210322664 ] } }, -{ "type": "Feature", "properties": { "id": "491", "nom": "Valpre", "desserte": "19A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1143", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.787136652615496, 45.7784016591662 ] } }, -{ "type": "Feature", "properties": { "id": "493", "nom": "Chorel", "desserte": "C17A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1145", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.864973439026838, 45.774686879029865 ] } }, -{ "type": "Feature", "properties": { "id": "497", "nom": "Cimetiere Communautaire", "desserte": "26A:A,52A:R,93A:A,C17A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1148", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.9176339684306, 45.723647857244494 ] } }, -{ "type": "Feature", "properties": { "id": "498", "nom": "Cimetiere Communautaire", "desserte": "26A:R,52A:A,93A:R,C17A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1147", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.917765297881749, 45.72370784601388 ] } }, -{ "type": "Feature", "properties": { "id": "500", "nom": "Cimetiere Croix-Rousse", "desserte": "S4A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1149", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.8206214070083, 45.781248439787902 ] } }, -{ "type": "Feature", "properties": { "id": "502", "nom": "Cimetiere d'Oullins", "desserte": "C7B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1151", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.810980971789355, 45.709371686624387 ] } }, -{ "type": "Feature", "properties": { "id": "509", "nom": "Cimetiere de Ste Foy", "desserte": "C19A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1157", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.796478299501322, 45.733012232576449 ] } }, -{ "type": "Feature", "properties": { "id": "515", "nom": "Cimetiere de Loyasse", "desserte": "90A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1159", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.813403737216511, 45.762667535997508 ] } }, -{ "type": "Feature", "properties": { "id": "516", "nom": "Cimetiere de Loyasse", "desserte": "90A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1160", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.813832455161052, 45.762478055293641 ] } }, -{ "type": "Feature", "properties": { "id": "1045", "nom": "Genevrey", "desserte": "33A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1480", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.880443796185571, 45.820766590366127 ] } }, -{ "type": "Feature", "properties": { "id": "10171", "nom": "Perroncel", "desserte": "C26A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2398", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.880197102827911, 45.775378225106508 ] } }, -{ "type": "Feature", "properties": { "id": "11078", "nom": "Romain Rolland", "desserte": "31A:A,40A:A,448A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3597", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.829151274479867, 45.763421127778074 ] } }, -{ "type": "Feature", "properties": { "id": "36248", "nom": "Givors Carnot", "desserte": "80A:A,80A:R,81A:A,81A:R,R3A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4147", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.771503799702498, 45.585411609941218 ] } }, -{ "type": "Feature", "properties": { "id": "46555", "nom": "Garibaldi - Lafayette", "desserte": "38A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5530", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.851561264792643, 45.763933104337681 ] } }, -{ "type": "Feature", "properties": { "id": "3", "nom": "4 Chemins - La Salette", "desserte": "C20A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "793", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.795077676956234, 45.749424768476864 ] } }, -{ "type": "Feature", "properties": { "id": "4", "nom": "4 Chemins - La Salette", "desserte": "C20A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "795", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.796316399128303, 45.749811676347697 ] } }, -{ "type": "Feature", "properties": { "id": "5", "nom": "4 Chemins - La Salette", "desserte": "90A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "797", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.796124098432522, 45.749248825777947 ] } }, -{ "type": "Feature", "properties": { "id": "6", "nom": "4 Chemins - La Salette", "desserte": "90A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "796", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.795949499551316, 45.749369664939543 ] } }, -{ "type": "Feature", "properties": { "id": "8", "nom": "8 Mai - Parc du Roy", "desserte": "33A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "799", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.865313792393012, 45.819865865021242 ] } }, -{ "type": "Feature", "properties": { "id": "9", "nom": "8 Mai - Parc du Roy", "desserte": "33A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "798", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.865283145096251, 45.819479496170729 ] } }, -{ "type": "Feature", "properties": { "id": "15", "nom": "A.Pare - Laennec", "desserte": "24A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "801", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.884668420663691, 45.736949171683847 ] } }, -{ "type": "Feature", "properties": { "id": "16", "nom": "A.Pare - Laennec", "desserte": "24A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "802", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.884890662969938, 45.737862259080558 ] } }, -{ "type": "Feature", "properties": { "id": "17", "nom": "A.Pare - Seignemartin", "desserte": "24A:A,C22A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "803", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.882783935151067, 45.736226833819615 ] } }, -{ "type": "Feature", "properties": { "id": "18", "nom": "Corbas Gabriel Peri", "desserte": "76A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "804", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.916826240889187, 45.675436778785595 ] } }, -{ "type": "Feature", "properties": { "id": "19", "nom": "Corbas Gabriel Peri", "desserte": "76A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "807", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.917770397933648, 45.675856113438876 ] } }, -{ "type": "Feature", "properties": { "id": "20", "nom": "Acacias", "desserte": "19A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "809", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.789097134111831, 45.780537112291142 ] } }, -{ "type": "Feature", "properties": { "id": "21", "nom": "Acacias", "desserte": "19A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "808", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.788586713875907, 45.780053200771441 ] } }, -{ "type": "Feature", "properties": { "id": "24", "nom": "Agronomie", "desserte": "19A:A,3A:A,5A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "811", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.785776101696732, 45.774812209424987 ] } }, -{ "type": "Feature", "properties": { "id": "25", "nom": "Agronomie", "desserte": "19A:R,3A:R,5A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "810", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.78554109928579, 45.774685199806839 ] } }, -{ "type": "Feature", "properties": { "id": "29", "nom": "Alai - La Raude", "desserte": "73A:R,C21A:A,C21A:R,C24B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "814", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.775045246113876, 45.753462141298932 ] } }, -{ "type": "Feature", "properties": { "id": "30", "nom": "Alai - La Raude", "desserte": "73A:A,C21A:A,C21A:R,C24B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "813", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.774525047139467, 45.753329425339963 ] } }, -{ "type": "Feature", "properties": { "id": "33", "nom": "Albigny Centre", "desserte": "43A:A,R2A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "816", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.834511378618755, 45.865300078529572 ] } }, -{ "type": "Feature", "properties": { "id": "34", "nom": "Albigny Centre", "desserte": "43A:R,R2A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "815", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.834508300978192, 45.864949096302809 ] } }, -{ "type": "Feature", "properties": { "id": "39", "nom": "Albigny Plaine", "desserte": "43A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "817", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.834790702636752, 45.856427600038174 ] } }, -{ "type": "Feature", "properties": { "id": "40", "nom": "Albigny Plaine", "desserte": "43A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "818", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.834647697325599, 45.85611573179478 ] } }, -{ "type": "Feature", "properties": { "id": "48", "nom": "Quai Tilsitt", "desserte": "31A:R,448A:A,C20A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "820", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.828268316636122, 45.758081083393876 ] } }, -{ "type": "Feature", "properties": { "id": "128", "nom": "Basso", "desserte": "84A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "880", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.791558507673778, 45.824732628784801 ] } }, -{ "type": "Feature", "properties": { "id": "1041", "nom": "General Andre", "desserte": "C25B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1474", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.878121274984164, 45.727673295491535 ] } }, -{ "type": "Feature", "properties": { "id": "1069", "nom": "Grand Trou", "desserte": "C12A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1492", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.853227804885674, 45.735579367118625 ] } }, -{ "type": "Feature", "properties": { "id": "10688", "nom": "Tupin", "desserte": "S1A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3514", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.833327206374197, 45.762868110935422 ] } }, -{ "type": "Feature", "properties": { "id": "11037", "nom": "Jules Verne", "desserte": "50A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3584", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.974197609228532, 45.702249757786248 ] } }, -{ "type": "Feature", "properties": { "id": "12053", "nom": "Ferroux", "desserte": "20A:A,S7A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3212", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.813970213715815, 45.816661861226621 ] } }, -{ "type": "Feature", "properties": { "id": "46051", "nom": "Bellecour", "desserte": "301A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "8", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.833259216576714, 45.757547144703281 ] } }, -{ "type": "Feature", "properties": { "id": "179", "nom": "Bellegarde", "desserte": "40A:A,70A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "911", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.83976267753794, 45.871115194411431 ] } }, -{ "type": "Feature", "properties": { "id": "674", "nom": "Dardilly Le Bas", "desserte": "3A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1281", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.753361234760549, 45.806910465353845 ] } }, -{ "type": "Feature", "properties": { "id": "788", "nom": "Duclos", "desserte": "111A:A,112A:A,39A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1342", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.887501049874753, 45.697666153885912 ] } }, -{ "type": "Feature", "properties": { "id": "846", "nom": "Eglantines", "desserte": "68B:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1386", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.96276231498012, 45.740738880632129 ] } }, -{ "type": "Feature", "properties": { "id": "1192", "nom": "Hôtel de Ville - Louis Pradel", "desserte": "9A:A,C5A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "107", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.838303308074043, 45.768083252942276 ] } }, -{ "type": "Feature", "properties": { "id": "1679", "nom": "Les Fraisiers", "desserte": "78B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1972", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.787599690179102, 45.673332107020236 ] } }, -{ "type": "Feature", "properties": { "id": "1694", "nom": "Les Greffieres", "desserte": "20A:A,S7A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1988", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.819053781517821, 45.811788045422801 ] } }, -{ "type": "Feature", "properties": { "id": "2956", "nom": "Tassin Les Bruyeres", "desserte": "72B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2820", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.751133516856645, 45.757948420509415 ] } }, -{ "type": "Feature", "properties": { "id": "3343", "nom": "Square Meunier", "desserte": "54A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2683", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.903883291267477, 45.665796415887812 ] } }, -{ "type": "Feature", "properties": { "id": "10237", "nom": "Fontaines St Martin Centre", "desserte": "77A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3348", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.854313704808691, 45.845037539973916 ] } }, -{ "type": "Feature", "properties": { "id": "10263", "nom": "Crepieux La Pape", "desserte": "S8A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3363", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.885903148308477, 45.805790526678294 ] } }, -{ "type": "Feature", "properties": { "id": "10515", "nom": "Sergent Berthet", "desserte": "19A:R,448A:A,45A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2659", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.805547305754259, 45.771004558232256 ] } }, -{ "type": "Feature", "properties": { "id": "11287", "nom": "Clinique du Grand Large", "desserte": "57A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3644", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.970751405297216, 45.77120235238683 ] } }, -{ "type": "Feature", "properties": { "id": "12041", "nom": "Lycee François Cevert", "desserte": "19A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3204", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.788958000907607, 45.782898422763878 ] } }, -{ "type": "Feature", "properties": { "id": "30013", "nom": "La Ferlatiere", "desserte": "23A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3258", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.807622977194073, 45.818646847497185 ] } }, -{ "type": "Feature", "properties": { "id": "30018", "nom": "La Piemente", "desserte": "21A:R,61A:R,89A:R,C6B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3264", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.800633933852517, 45.785361187396738 ] } }, -{ "type": "Feature", "properties": { "id": "30033", "nom": "Bron Aviation", "desserte": "52A:A,ZI7A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3267", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.930566102956935, 45.736536785454923 ] } }, -{ "type": "Feature", "properties": { "id": "36208", "nom": "Grigny Ampere", "desserte": "80A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4103", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.783652004374589, 45.609601997380388 ] } }, -{ "type": "Feature", "properties": { "id": "36258", "nom": "Rue de Montrond", "desserte": "80A:R,81A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4155", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.761014422200385, 45.587079496949954 ] } }, -{ "type": "Feature", "properties": { "id": "36267", "nom": "Terrasse des Arboras", "desserte": "78B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4166", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.787845762482388, 45.602102543714146 ] } }, -{ "type": "Feature", "properties": { "id": "43305", "nom": "Triangle de Bron", "desserte": "52A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2856", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.926987441968012, 45.726870857480598 ] } }, -{ "type": "Feature", "properties": { "id": "43306", "nom": "Triangle de Bron", "desserte": "52A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2857", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.928323081512424, 45.727668149889411 ] } }, -{ "type": "Feature", "properties": { "id": "43307", "nom": "La Borelle", "desserte": "79A:A,79A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "639", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.880406729691964, 45.712049301543239 ] } }, -{ "type": "Feature", "properties": { "id": "43308", "nom": "Paul Eluard", "desserte": "57A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4834", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.922500804345509, 45.776365421195223 ] } }, -{ "type": "Feature", "properties": { "id": "43313", "nom": "Verdun - Paul Cezanne", "desserte": "57A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4840", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.96773614953251, 45.76463880487217 ] } }, -{ "type": "Feature", "properties": { "id": "43314", "nom": "Verdun - Paul Cezanne", "desserte": "57A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4839", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.967935738933103, 45.764778154567587 ] } }, -{ "type": "Feature", "properties": { "id": "43354", "nom": "College Christiane Bernardin", "desserte": "C20A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4842", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.775304238314975, 45.740964548709712 ] } }, -{ "type": "Feature", "properties": { "id": "46556", "nom": "Les Romatieres", "desserte": "763:A,763:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "6097", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.994207388946775, 45.615484322586425 ] } }, -{ "type": "Feature", "properties": { "id": "193", "nom": "Bernaix", "desserte": "448A:A,C11A:A,C3A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "925", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.898549341805153, 45.760099714108335 ] } }, -{ "type": "Feature", "properties": { "id": "214", "nom": "Bois de l'Etoile", "desserte": "72B:R,98A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "938", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.724574751940732, 45.78064047724709 ] } }, -{ "type": "Feature", "properties": { "id": "339", "nom": "Cambon", "desserte": "26A:A,448A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1029", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.879595331087409, 45.722023100013928 ] } }, -{ "type": "Feature", "properties": { "id": "635", "nom": "Crecy", "desserte": "22A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1253", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.803129450203002, 45.800842313620741 ] } }, -{ "type": "Feature", "properties": { "id": "843", "nom": "Edgar Quinet", "desserte": "27A:R,C4A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1383", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.844494599641051, 45.765649827044861 ] } }, -{ "type": "Feature", "properties": { "id": "999", "nom": "Garanjou", "desserte": "C7B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1453", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.816292169028816, 45.705203934570761 ] } }, -{ "type": "Feature", "properties": { "id": "1121", "nom": "Saxe - Préfecture", "desserte": "C14A:A,C4A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "424", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.845821976523988, 45.759787386029487 ] } }, -{ "type": "Feature", "properties": { "id": "1530", "nom": "RN6 - A. Pare", "desserte": "1EX:A,26A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1842", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.975546424600998, 45.711093632056723 ] } }, -{ "type": "Feature", "properties": { "id": "1695", "nom": "Les Greffieres", "desserte": "20A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1987", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.819002345537031, 45.81178918177595 ] } }, -{ "type": "Feature", "properties": { "id": "1782", "nom": "Les Villas", "desserte": "21A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2063", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.775704968018683, 45.817660929647438 ] } }, -{ "type": "Feature", "properties": { "id": "1820", "nom": "Ludovic Bonin", "desserte": "C12A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2094", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.853812218475035, 45.726997118989345 ] } }, -{ "type": "Feature", "properties": { "id": "2020", "nom": "Mont Blanc", "desserte": "26A:R,79A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2227", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.887079608646353, 45.724625610090882 ] } }, -{ "type": "Feature", "properties": { "id": "3032", "nom": "Valensaut", "desserte": "26A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2882", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.873969984595368, 45.723770690254526 ] } }, -{ "type": "Feature", "properties": { "id": "3041", "nom": "Fort de Vancia", "desserte": "C5A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2889", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.909091885595377, 45.834579960506467 ] } }, -{ "type": "Feature", "properties": { "id": "3078", "nom": "Vaulx Pierre Frite", "desserte": "52A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2918", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.932262358116328, 45.774681996627365 ] } }, -{ "type": "Feature", "properties": { "id": "3144", "nom": "Vincent Serre", "desserte": "5A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2972", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.786885517577759, 45.76872203964264 ] } }, -{ "type": "Feature", "properties": { "id": "10484", "nom": "O'Hara", "desserte": "57A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3457", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.936508132624164, 45.783405319185299 ] } }, -{ "type": "Feature", "properties": { "id": "10677", "nom": "Ainay", "desserte": "S1A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3508", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.825892870495476, 45.753327176015326 ] } }, -{ "type": "Feature", "properties": { "id": "11857", "nom": "St Fons Mairie", "desserte": "60A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3134", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.85314743875597, 45.709081685834846 ] } }, -{ "type": "Feature", "properties": { "id": "11859", "nom": "Curie Monnet", "desserte": "ZI6A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3137", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.850158224774034, 45.706925424663645 ] } }, -{ "type": "Feature", "properties": { "id": "42435", "nom": "Rue de France - IUT", "desserte": "69A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5555", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.886301182452473, 45.768308746594123 ] } }, -{ "type": "Feature", "properties": { "id": "42474", "nom": "George Sand", "desserte": "C2A:R,ZI4A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3520", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.898374820811958, 45.815804433955236 ] } }, -{ "type": "Feature", "properties": { "id": "42501", "nom": "Les Joncs", "desserte": "6A:A,GE4A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4738", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.763958288482198, 45.809058288653262 ] } }, -{ "type": "Feature", "properties": { "id": "46369", "nom": "Ligonnet", "desserte": "81A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5412", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.76971528510708, 45.595373774207729 ] } }, -{ "type": "Feature", "properties": { "id": "46370", "nom": "Ligonnet", "desserte": "81A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5413", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.769787295562115, 45.595340795667504 ] } }, -{ "type": "Feature", "properties": { "id": "46371", "nom": "St-Pierre-de-Chandieu - Rajat", "desserte": "296:R,763:R,R5A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5342", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 5.034239332655461, 45.641357272174211 ] } }, -{ "type": "Feature", "properties": { "id": "46372", "nom": "St-Pierre-de-Chandieu - Rajat", "desserte": "296:A,763:A,R5A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5343", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 5.034541288908838, 45.641134316237839 ] } }, -{ "type": "Feature", "properties": { "id": "46374", "nom": "Compagnon", "desserte": "296:A,763:A,R5A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5345", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 5.030471371565528, 45.643824336752125 ] } }, -{ "type": "Feature", "properties": { "id": "199", "nom": "Berthier", "desserte": "17B:A,49A:A,90A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "10", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.798716257005111, 45.745114526693037 ] } }, -{ "type": "Feature", "properties": { "id": "200", "nom": "Berthier", "desserte": "90A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "12", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.798998909265881, 45.745972424486673 ] } }, -{ "type": "Feature", "properties": { "id": "276", "nom": "Brotteaux", "desserte": "70A:A,C1A:A,C2A:A,C6B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "14", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.859211818485736, 45.766859340665299 ] } }, -{ "type": "Feature", "properties": { "id": "281", "nom": "Brotteaux", "desserte": "70A:R,C1A:R,C2A:R,C6B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "15", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.859138505490405, 45.766662960082108 ] } }, -{ "type": "Feature", "properties": { "id": "311", "nom": "Charles Perrault", "desserte": "69A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1000", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.890039417247068, 45.771257256635337 ] } }, -{ "type": "Feature", "properties": { "id": "312", "nom": "Charles Perrault", "desserte": "69A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "999", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.889988020696727, 45.771258425411872 ] } }, -{ "type": "Feature", "properties": { "id": "313", "nom": "Cailloux Bellevue", "desserte": "77A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1001", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.867470717909679, 45.853851547411686 ] } }, -{ "type": "Feature", "properties": { "id": "314", "nom": "Cailloux Bellevue", "desserte": "77A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1002", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.867508495125014, 45.853832694329903 ] } }, -{ "type": "Feature", "properties": { "id": "315", "nom": "Cailloux Centre", "desserte": "77A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1003", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.871239101796661, 45.854837835830196 ] } }, -{ "type": "Feature", "properties": { "id": "316", "nom": "Cailloux Centre", "desserte": "77A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1004", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.870796170305275, 45.854730800518077 ] } }, -{ "type": "Feature", "properties": { "id": "317", "nom": "Cailloux Chateau", "desserte": "77A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1005", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.869761193497651, 45.848489140529153 ] } }, -{ "type": "Feature", "properties": { "id": "318", "nom": "Cailloux Chateau", "desserte": "77A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1006", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.870057957453781, 45.848779500463756 ] } }, -{ "type": "Feature", "properties": { "id": "319", "nom": "Cailloux La Croix", "desserte": "77A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1008", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.865029113095482, 45.853141356817325 ] } }, -{ "type": "Feature", "properties": { "id": "320", "nom": "Cailloux La Croix", "desserte": "77A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1007", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.864699167110083, 45.852689704537077 ] } }, -{ "type": "Feature", "properties": { "id": "321", "nom": "Cailloux Mairie", "desserte": "77A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1009", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.871579148028858, 45.851877705829672 ] } }, -{ "type": "Feature", "properties": { "id": "322", "nom": "Cailloux Mairie", "desserte": "77A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1010", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.872291041286133, 45.852230712190277 ] } }, -{ "type": "Feature", "properties": { "id": "323", "nom": "Mermoz - Californie", "desserte": "C15A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1011", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.878379977392775, 45.733554273788869 ] } }, -{ "type": "Feature", "properties": { "id": "326", "nom": "Caluire Bellerive", "desserte": "40A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1016", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.826711580330625, 45.793580196717961 ] } }, -{ "type": "Feature", "properties": { "id": "327", "nom": "Caluire Bellerive", "desserte": "40A:R,S5A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1015", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.825987880077735, 45.793227188973567 ] } }, -{ "type": "Feature", "properties": { "id": "329", "nom": "Caluire Centre", "desserte": "33A:A,38A:A,S5A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1019", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.847620960217203, 45.799766658254654 ] } }, -{ "type": "Feature", "properties": { "id": "333", "nom": "Caluire Place Foch", "desserte": "70A:R,9A:R,C1A:R,C2A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1022", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.851885347735748, 45.797618970104082 ] } }, -{ "type": "Feature", "properties": { "id": "334", "nom": "Caluire Place Foch", "desserte": "70A:A,9A:A,C1A:A,C2A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1023", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.851767076904056, 45.797846649980002 ] } }, -{ "type": "Feature", "properties": { "id": "335", "nom": "Caluire Thimonnier", "desserte": "ZI4A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1026", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.869024029706153, 45.8051100924053 ] } }, -{ "type": "Feature", "properties": { "id": "336", "nom": "Caluire Thimonnier", "desserte": "ZI4A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1025", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.868597672520186, 45.805074695099371 ] } }, -{ "type": "Feature", "properties": { "id": "337", "nom": "Caluire Victor Hugo", "desserte": "40A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1027", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.841511239197082, 45.800965203303811 ] } }, -{ "type": "Feature", "properties": { "id": "43174", "nom": "Cite Tase", "desserte": "52A:A,68B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1182", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.928668069966754, 45.758193220084436 ] } }, -{ "type": "Feature", "properties": { "id": "46772", "nom": "Institut d'art contemporain", "desserte": "C3A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "6266", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.874670243107861, 45.763584005907738 ] } }, -{ "type": "Feature", "properties": { "id": "46782", "nom": "Lissieu - Montluzin", "desserte": "21A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "6272", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.749400944512162, 45.870984727557001 ] } }, -{ "type": "Feature", "properties": { "id": "372", "nom": "Chabrol", "desserte": "73A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1060", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.709839562696012, 45.733401954376767 ] } }, -{ "type": "Feature", "properties": { "id": "726", "nom": "Demi-Lune Vauboin", "desserte": "5A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1311", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.782065151033224, 45.764443645723958 ] } }, -{ "type": "Feature", "properties": { "id": "1098", "nom": "Grange Bruyere", "desserte": "C20A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1509", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.800756814212056, 45.751064437035282 ] } }, -{ "type": "Feature", "properties": { "id": "1602", "nom": "Leon Bourgeois", "desserte": "79A:R,C15A:A,C17A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1903", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.900825751129543, 45.727822817537088 ] } }, -{ "type": "Feature", "properties": { "id": "1717", "nom": "Les Meurieres", "desserte": "296:A,62A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2005", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.949116524191489, 45.679423700009551 ] } }, -{ "type": "Feature", "properties": { "id": "2947", "nom": "Tassin Combattants", "desserte": "86A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2812", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.75746427672871, 45.769441247002263 ] } }, -{ "type": "Feature", "properties": { "id": "3123", "nom": "Vianney", "desserte": "89A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2951", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.772060703582675, 45.793518241827861 ] } }, -{ "type": "Feature", "properties": { "id": "3282", "nom": "Place Cdt Arnaud", "desserte": "448A:A,C13A:A,S4A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3019", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.83453390786828, 45.779958726773415 ] } }, -{ "type": "Feature", "properties": { "id": "3378", "nom": "Cuire", "desserte": "S5A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "39", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.832758861603601, 45.785632939018505 ] } }, -{ "type": "Feature", "properties": { "id": "10112", "nom": "Rouget de l'Isle", "desserte": "C16A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2599", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.867332949827793, 45.754398838216972 ] } }, -{ "type": "Feature", "properties": { "id": "11364", "nom": "Polaris", "desserte": "111A:R,54A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3667", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.897001038929671, 45.669365361937892 ] } }, -{ "type": "Feature", "properties": { "id": "12297", "nom": "La Doua", "desserte": "C17A:A,C26A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1699", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.871883015676593, 45.778914731475943 ] } }, -{ "type": "Feature", "properties": { "id": "30005", "nom": "Bellecour Charite", "desserte": "C10A:A,C10A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "900", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.833065460618531, 45.755544195227195 ] } }, -{ "type": "Feature", "properties": { "id": "31623", "nom": "Les Saules", "desserte": "3A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2366", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.759736151890479, 45.81780836211113 ] } }, -{ "type": "Feature", "properties": { "id": "42537", "nom": "Paviot - Genets", "desserte": "C8A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4739", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.902185547478215, 45.750655228869036 ] } }, -{ "type": "Feature", "properties": { "id": "42538", "nom": "Severine", "desserte": "C8A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2666", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.91384995782906, 45.753997618064368 ] } }, -{ "type": "Feature", "properties": { "id": "43356", "nom": "Genovefains", "desserte": "55A:A,C20A:A,C21A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1483", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.816158135612937, 45.753587632211627 ] } }, -{ "type": "Feature", "properties": { "id": "43395", "nom": "Centre Commercial Genay", "desserte": "43A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4843", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.822109217984632, 45.892470626665521 ] } }, -{ "type": "Feature", "properties": { "id": "43422", "nom": "Yves Chauvin", "desserte": "GE2A:A,GE2A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4846", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.829605352726313, 45.648255817093947 ] } }, -{ "type": "Feature", "properties": { "id": "43423", "nom": "Solaize CRES", "desserte": "GE2A:A,GE2A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4847", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.831198577164921, 45.650281605727535 ] } }, -{ "type": "Feature", "properties": { "id": "43434", "nom": "Techlid Le Paisy", "desserte": "6A:A,89A:A,GE4A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4850", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.765168026567077, 45.804684669289578 ] } }, -{ "type": "Feature", "properties": { "id": "43475", "nom": "Ecully Le Perollier", "desserte": "89A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4853", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.776986667162868, 45.790278981746532 ] } }, -{ "type": "Feature", "properties": { "id": "43476", "nom": "Ecully Le Perollier", "desserte": "19A:R,89A:R,C6B:R,S15A:A,S15A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4854", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.776856928053116, 45.790254797417248 ] } }, -{ "type": "Feature", "properties": { "id": "43477", "nom": "Ecully Le Perollier", "desserte": "19A:A,C6B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4852", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.777056525363664, 45.790403478051068 ] } }, -{ "type": "Feature", "properties": { "id": "43537", "nom": "Aristide Briand", "desserte": "C25B:A,ZI1A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4858", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.934331747675283, 45.691586271258281 ] } }, -{ "type": "Feature", "properties": { "id": "43554", "nom": "Christophe Colomb", "desserte": "C25B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4860", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.944264779293021, 45.681643024666407 ] } }, -{ "type": "Feature", "properties": { "id": "43555", "nom": "Christophe Colomb", "desserte": "C25B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4859", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.944383892805816, 45.682531408248551 ] } }, -{ "type": "Feature", "properties": { "id": "43615", "nom": "Bois Dieu", "desserte": "118A:R,61A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4866", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.736957910332233, 45.840367437482683 ] } }, -{ "type": "Feature", "properties": { "id": "435", "nom": "Charpennes", "desserte": "70A:R,C2A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "249", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.86166509840357, 45.77071074636067 ] } }, -{ "type": "Feature", "properties": { "id": "490", "nom": "Valpre", "desserte": "19A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1144", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.787076802805526, 45.778501976471546 ] } }, -{ "type": "Feature", "properties": { "id": "529", "nom": "Hopital St Jean de Dieu", "desserte": "C12A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1172", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.853969670487693, 45.724257224707138 ] } }, -{ "type": "Feature", "properties": { "id": "1244", "nom": "Jean Bart", "desserte": "C13A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1604", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.88089206356286, 45.745910138342211 ] } }, -{ "type": "Feature", "properties": { "id": "1495", "nom": "Laquay", "desserte": "87A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1819", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.898606534226515, 45.692570240038108 ] } }, -{ "type": "Feature", "properties": { "id": "1915", "nom": "Marius Poncet", "desserte": "72B:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2153", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.737546264852008, 45.758347848643623 ] } }, -{ "type": "Feature", "properties": { "id": "2013", "nom": "Monge", "desserte": "25A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2223", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.909352787875411, 45.750770242316683 ] } }, -{ "type": "Feature", "properties": { "id": "2147", "nom": "Oasis", "desserte": "63A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2328", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.801198997426349, 45.715005637348767 ] } }, -{ "type": "Feature", "properties": { "id": "2195", "nom": "Les Saules", "desserte": "89A:A,GE4A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2367", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.758384954990248, 45.817234422838652 ] } }, -{ "type": "Feature", "properties": { "id": "3118", "nom": "Veyrie", "desserte": "86A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2946", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.722917803214339, 45.813906752773249 ] } }, -{ "type": "Feature", "properties": { "id": "3289", "nom": "Venissieux Blanqui", "desserte": "93A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3024", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.87384585885736, 45.702116510592852 ] } }, -{ "type": "Feature", "properties": { "id": "3321", "nom": "Marcy Sources", "desserte": "98A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3031", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.70687071712242, 45.787433061558602 ] } }, -{ "type": "Feature", "properties": { "id": "10222", "nom": "Curie", "desserte": "33A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3337", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.864896812837953, 45.823115736602226 ] } }, -{ "type": "Feature", "properties": { "id": "10676", "nom": "Ainay", "desserte": "S1A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3507", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.825901820220229, 45.753525002421384 ] } }, -{ "type": "Feature", "properties": { "id": "10900", "nom": "Henaff", "desserte": "111A:A,54A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3532", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.891839859714509, 45.686252654660009 ] } }, -{ "type": "Feature", "properties": { "id": "11338", "nom": "Berliet Porte C", "desserte": "62A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3662", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.898683506281077, 45.706925650529385 ] } }, -{ "type": "Feature", "properties": { "id": "37156", "nom": "30 Rue Saillant", "desserte": "ZI3A:A,ZI4A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4259", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.941700718936319, 45.778136106504618 ] } }, -{ "type": "Feature", "properties": { "id": "37158", "nom": "Fromont - Karl Marx", "desserte": "ZI3A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4262", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.941541955090371, 45.780759249235473 ] } }, -{ "type": "Feature", "properties": { "id": "42662", "nom": "Salengro - Genas", "desserte": "68B:R,ZI5B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4757", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.927045939710825, 45.746411700652793 ] } }, -{ "type": "Feature", "properties": { "id": "43635", "nom": "St Genis Centre", "desserte": "S9A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2725", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.792157505845836, 45.695509807154636 ] } }, -{ "type": "Feature", "properties": { "id": "43636", "nom": "Beauregard", "desserte": "S9A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4867", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.788789050299677, 45.696303601938325 ] } }, -{ "type": "Feature", "properties": { "id": "43639", "nom": "Croix Rouge", "desserte": "S9A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4870", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.786325470367966, 45.701560011380387 ] } }, -{ "type": "Feature", "properties": { "id": "43641", "nom": "Desbois - Pommier", "desserte": "85A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4625", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 5.005431558852501, 45.777585008617088 ] } }, -{ "type": "Feature", "properties": { "id": "43642", "nom": "Meyzieu - Parc du Grand Large", "desserte": "95A:A,95A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4871", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.992987309440919, 45.788952208735601 ] } }, -{ "type": "Feature", "properties": { "id": "43644", "nom": "Mont Joyeux", "desserte": "95A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4281", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.993175897176968, 45.787795518459731 ] } }, -{ "type": "Feature", "properties": { "id": "43645", "nom": "Charcot", "desserte": "95A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4280", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.993520508522278, 45.786140038557534 ] } }, -{ "type": "Feature", "properties": { "id": "43646", "nom": "Frederic Mistral", "desserte": "95A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4872", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.995074667485123, 45.782358517006742 ] } }, -{ "type": "Feature", "properties": { "id": "43647", "nom": "Frederic Mistral", "desserte": "95A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4873", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.995298161906421, 45.782191194618925 ] } }, -{ "type": "Feature", "properties": { "id": "43696", "nom": "Albigny Centre Hospitalier", "desserte": "R2A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4882", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.833673062713056, 45.863581444569292 ] } }, -{ "type": "Feature", "properties": { "id": "625", "nom": "Craponne Dumont", "desserte": "C24B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1248", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.716316800268352, 45.747359924695203 ] } }, -{ "type": "Feature", "properties": { "id": "1086", "nom": "Grange Blanche", "desserte": "C16A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "78", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.878946182556239, 45.743307849722832 ] } }, -{ "type": "Feature", "properties": { "id": "1735", "nom": "Les Oliviers", "desserte": "78B:R,S9A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2023", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.786777584959295, 45.686932722013694 ] } }, -{ "type": "Feature", "properties": { "id": "2071", "nom": "Montgolfier", "desserte": "76A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2269", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.964045885617866, 45.727503467651424 ] } }, -{ "type": "Feature", "properties": { "id": "2079", "nom": "Montmein Centre", "desserte": "88B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2280", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.806519503456212, 45.707579801420636 ] } }, -{ "type": "Feature", "properties": { "id": "2081", "nom": "Montmein Nord", "desserte": "88B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2282", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.805476853013047, 45.710114035484231 ] } }, -{ "type": "Feature", "properties": { "id": "2093", "nom": "Moulin a Vent", "desserte": "C22A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2291", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.852848417895107, 45.729530070109853 ] } }, -{ "type": "Feature", "properties": { "id": "3286", "nom": "Georges Roudil", "desserte": "39A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3023", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.886295279162712, 45.691599657726222 ] } }, -{ "type": "Feature", "properties": { "id": "3478", "nom": "Pasteur - Etats-Unis", "desserte": "62A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3066", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.922169573855639, 45.700094733960611 ] } }, -{ "type": "Feature", "properties": { "id": "10314", "nom": "Croix Muriat", "desserte": "72B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3376", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.725375973703191, 45.759399546438722 ] } }, -{ "type": "Feature", "properties": { "id": "10329", "nom": "Marengo", "desserte": "69A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3387", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.877190746421056, 45.759585951646734 ] } }, -{ "type": "Feature", "properties": { "id": "30184", "nom": "Parilly", "desserte": "304:R", "pmr": "t", "ascenseur": "t", "escalator": "t", "gid": "152", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.887411785976879, 45.719740523696892 ] } }, -{ "type": "Feature", "properties": { "id": "30308", "nom": "Montaberlet", "desserte": "67A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3770", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.937891825061717, 45.768052623704577 ] } }, -{ "type": "Feature", "properties": { "id": "30377", "nom": "Rue de l'Université", "desserte": "35A:A,35A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "372", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.836569967590438, 45.751451684395015 ] } }, -{ "type": "Feature", "properties": { "id": "30447", "nom": "Gare de Vénissieux", "desserte": "304:A", "pmr": "t", "ascenseur": "t", "escalator": "t", "gid": "274", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.888082738376656, 45.70556362646407 ] } }, -{ "type": "Feature", "properties": { "id": "30479", "nom": "Savaron - Deleuvre", "desserte": "S4A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3812", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.825280206468631, 45.781856390439678 ] } }, -{ "type": "Feature", "properties": { "id": "31283", "nom": "Ste Foy Genets", "desserte": "90A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3835", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.79305022600931, 45.737128779163001 ] } }, -{ "type": "Feature", "properties": { "id": "37160", "nom": "Karl Marx", "desserte": "ZI3A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4264", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.939406021094323, 45.778306327440234 ] } }, -{ "type": "Feature", "properties": { "id": "37179", "nom": "Bruyeres", "desserte": "ZI3A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "983", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.940753715354634, 45.762756384288352 ] } }, -{ "type": "Feature", "properties": { "id": "42974", "nom": "Collège Plan du Loup", "desserte": "C19A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "726", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.788711903070643, 45.734964416151243 ] } }, -{ "type": "Feature", "properties": { "id": "43014", "nom": "Berliet Porte C", "desserte": "93A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3660", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.898646947653638, 45.707520572696346 ] } }, -{ "type": "Feature", "properties": { "id": "43019", "nom": "Mendes France - Alsace", "desserte": "93A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4779", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.910237779908752, 45.718560945070578 ] } }, -{ "type": "Feature", "properties": { "id": "43716", "nom": "Parilly Jean Zay", "desserte": "93A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4884", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.902645042185303, 45.711983855775614 ] } }, -{ "type": "Feature", "properties": { "id": "43736", "nom": "Rillieux - Les Alagniers", "desserte": "C2A:A,S8A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4747", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.894297940220528, 45.814120505264633 ] } }, -{ "type": "Feature", "properties": { "id": "45360", "nom": "Fort du Bruissin", "desserte": "C20A:A,C20A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1434", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.739513682896528, 45.732437395366709 ] } }, -{ "type": "Feature", "properties": { "id": "45418", "nom": "Le Grand Treyve", "desserte": "11B:A,73A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4949", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.693555774625318, 45.718714095513917 ] } }, -{ "type": "Feature", "properties": { "id": "45419", "nom": "Le Grand Treyve", "desserte": "11B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4950", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.694416088081626, 45.718393957065096 ] } }, -{ "type": "Feature", "properties": { "id": "648", "nom": "Cuers", "desserte": "89A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1261", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.76769437993392, 45.79807731026176 ] } }, -{ "type": "Feature", "properties": { "id": "660", "nom": "Curis Lavoir", "desserte": "84A:A,R2A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1269", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.82041649110755, 45.87015786924637 ] } }, -{ "type": "Feature", "properties": { "id": "669", "nom": "Cyrano", "desserte": "C9A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1277", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.879783815444912, 45.754756539942626 ] } }, -{ "type": "Feature", "properties": { "id": "749", "nom": "Descartes", "desserte": "37A:A,69A:R,C17A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1317", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.872330714918186, 45.7763482489636 ] } }, -{ "type": "Feature", "properties": { "id": "1635", "nom": "Les Bruyeres", "desserte": "9A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1930", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.865314995126154, 45.817093419580935 ] } }, -{ "type": "Feature", "properties": { "id": "2099", "nom": "Moulin d'Amont", "desserte": "67A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2296", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.980773100736417, 45.77337029416617 ] } }, -{ "type": "Feature", "properties": { "id": "3297", "nom": "Liberté", "desserte": "C9A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "370", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.842612127013185, 45.758769938338027 ] } }, -{ "type": "Feature", "properties": { "id": "3440", "nom": "Les Narcisses", "desserte": "72B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3053", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.723207668458158, 45.76129082397415 ] } }, -{ "type": "Feature", "properties": { "id": "3487", "nom": "Les Longes", "desserte": "50A:R,ZI8A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3070", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.956315774464507, 45.697141900413641 ] } }, -{ "type": "Feature", "properties": { "id": "10246", "nom": "Ivry", "desserte": "C13A:R,S4A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3357", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.832278960581187, 45.77675943328628 ] } }, -{ "type": "Feature", "properties": { "id": "10279", "nom": "Les Genets", "desserte": "14B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3369", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.772370338555786, 45.747642602250927 ] } }, -{ "type": "Feature", "properties": { "id": "10327", "nom": "Ferrandiere", "desserte": "C9A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3385", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.873578393497182, 45.759613635077699 ] } }, -{ "type": "Feature", "properties": { "id": "10401", "nom": "Boileau", "desserte": "85A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3418", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 5.014311996998622, 45.778164040779266 ] } }, -{ "type": "Feature", "properties": { "id": "10405", "nom": "Peyssilieu", "desserte": "85A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2414", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.987205039086755, 45.769635971776424 ] } }, -{ "type": "Feature", "properties": { "id": "10429", "nom": "Bellecour St Exupery", "desserte": "27A:A,40A:R,448A:A,C20A:R,S1A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3422", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.829793214517988, 45.757222182605595 ] } }, -{ "type": "Feature", "properties": { "id": "10447", "nom": "Les Marsaults", "desserte": "3A:A,GE4A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3440", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.757300679300981, 45.822721377329607 ] } }, -{ "type": "Feature", "properties": { "id": "10457", "nom": "Museum", "desserte": "38A:A,C1A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3446", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.847893931250775, 45.775034133694604 ] } }, -{ "type": "Feature", "properties": { "id": "11628", "nom": "Georges Levy", "desserte": "35A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3087", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.868022896597918, 45.719926483039984 ] } }, -{ "type": "Feature", "properties": { "id": "11715", "nom": "Avenue des Avoraux", "desserte": "84A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3633", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.829304411566522, 45.875199998505167 ] } }, -{ "type": "Feature", "properties": { "id": "11891", "nom": "Berthet - Loucheur", "desserte": "19A:R,448A:A,45A:R,66A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3156", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.805448230875743, 45.767937367823869 ] } }, -{ "type": "Feature", "properties": { "id": "11920", "nom": "Gratte Ciel", "desserte": "C26A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "87", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.880313534264857, 45.769551720907316 ] } }, -{ "type": "Feature", "properties": { "id": "12078", "nom": "Les Malandieres", "desserte": "43A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3227", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.812436283328499, 45.892647870138042 ] } }, -{ "type": "Feature", "properties": { "id": "12120", "nom": "Gare de Vaise", "desserte": "118A:A,61A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "259", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.804954449786701, 45.781296834532 ] } }, -{ "type": "Feature", "properties": { "id": "12189", "nom": "Chemin des Pres", "desserte": "90A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3253", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.791666011347305, 45.742118620635914 ] } }, -{ "type": "Feature", "properties": { "id": "30302", "nom": "Leonard De Vinci", "desserte": "ZI3A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3764", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.93317062899368, 45.779206781773077 ] } }, -{ "type": "Feature", "properties": { "id": "30485", "nom": "Les Sequoias", "desserte": "S15A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3816", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.779340868205698, 45.781001774246157 ] } }, -{ "type": "Feature", "properties": { "id": "30487", "nom": "Villeneuve", "desserte": "S15A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2961", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.782788802676576, 45.785346225364556 ] } }, -{ "type": "Feature", "properties": { "id": "37196", "nom": "Maryse Bastie", "desserte": "C15A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2165", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.874909394938983, 45.734667978714256 ] } }, -{ "type": "Feature", "properties": { "id": "45434", "nom": "Le Pont", "desserte": "11B:R,2EX:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4966", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.649052914629583, 45.67942608719148 ] } }, -{ "type": "Feature", "properties": { "id": "1677", "nom": "Les Etroits", "desserte": "8A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1969", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.819521015961736, 45.75060594240054 ] } }, -{ "type": "Feature", "properties": { "id": "1955", "nom": "ENS Lyon", "desserte": "C22A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "785", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.829507206032309, 45.731500240810007 ] } }, -{ "type": "Feature", "properties": { "id": "1987", "nom": "Mi Plaine - Pelossier", "desserte": "26A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2200", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.95760412856889, 45.717194292872222 ] } }, -{ "type": "Feature", "properties": { "id": "2114", "nom": "Narcel", "desserte": "C19A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2311", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.796248149791133, 45.729299864045927 ] } }, -{ "type": "Feature", "properties": { "id": "2242", "nom": "Paul Chevalier", "desserte": "33A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2387", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.894700115313153, 45.823629498024793 ] } }, -{ "type": "Feature", "properties": { "id": "10219", "nom": "Andre Lassagne", "desserte": "33A:R,77A:R,9A:R,S5A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3332", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.853403384671036, 45.805200063222294 ] } }, -{ "type": "Feature", "properties": { "id": "10590", "nom": "Berthaudiere", "desserte": "67A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "928", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.969950268574541, 45.775424930352585 ] } }, -{ "type": "Feature", "properties": { "id": "11477", "nom": "Solaize Croix Rouge", "desserte": "39A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3704", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.853279692980283, 45.638896435967823 ] } }, -{ "type": "Feature", "properties": { "id": "11878", "nom": "Lortet", "desserte": "ZI6A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3150", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.840970444877991, 45.741632326207551 ] } }, -{ "type": "Feature", "properties": { "id": "11938", "nom": "Ste Foy Platanes", "desserte": "C19A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3169", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.776390749822206, 45.731029550309586 ] } }, -{ "type": "Feature", "properties": { "id": "12061", "nom": "Les Gorges", "desserte": "20A:A,23A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3214", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.802447213660264, 45.820353736402055 ] } }, -{ "type": "Feature", "properties": { "id": "43115", "nom": "La Perraliere", "desserte": "C26A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4805", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.88930881964978, 45.763829739657659 ] } }, -{ "type": "Feature", "properties": { "id": "43116", "nom": "La Perraliere", "desserte": "C26A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4806", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.889424446277956, 45.763827110603771 ] } }, -{ "type": "Feature", "properties": { "id": "43117", "nom": "Rue de France - 4 aout", "desserte": "C26A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4808", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.886943037882481, 45.764675624342658 ] } }, -{ "type": "Feature", "properties": { "id": "43118", "nom": "Rue de France - 4 aout", "desserte": "C26A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4807", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.886996512793679, 45.764719416387045 ] } }, -{ "type": "Feature", "properties": { "id": "45817", "nom": "Vaulx Place Boissier", "desserte": "37A:A,57A:A,C8A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2919", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.926533007307635, 45.786048166386109 ] } }, -{ "type": "Feature", "properties": { "id": "45821", "nom": "Meyzieu Jacques Prevert", "desserte": "85A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4922", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.993678063223991, 45.760688981740238 ] } }, -{ "type": "Feature", "properties": { "id": "45835", "nom": "Yves Farge - Corsiere", "desserte": "60A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4569", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.858934532365719, 45.695775649495985 ] } }, -{ "type": "Feature", "properties": { "id": "45836", "nom": "Deux Fermes", "desserte": "60A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4564", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.861050556110579, 45.691459638451633 ] } }, -{ "type": "Feature", "properties": { "id": "45843", "nom": "Duchere Tunnel", "desserte": "C14A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5030", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.797510859416338, 45.782846352910042 ] } }, -{ "type": "Feature", "properties": { "id": "45844", "nom": "Duchere Tunnel", "desserte": "C14A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5031", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.797696023633461, 45.7829593093333 ] } }, -{ "type": "Feature", "properties": { "id": "45848", "nom": "Gare Part-Dieu Villette", "desserte": "T3:A,T3:R,T4A:A,T4A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "533", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.861977692348658, 45.761270386644433 ] } }, -{ "type": "Feature", "properties": { "id": "45851", "nom": "Professeur Roux", "desserte": "C16A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2485", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.859035492232742, 45.720549448730388 ] } }, -{ "type": "Feature", "properties": { "id": "45852", "nom": "Parc Lyder", "desserte": "62A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3604", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.909095478025558, 45.708621457996934 ] } }, -{ "type": "Feature", "properties": { "id": "45853", "nom": "Parc Lyder", "desserte": "62A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3603", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.908997480440293, 45.708597421471332 ] } }, -{ "type": "Feature", "properties": { "id": "45854", "nom": "Temps modernes", "desserte": "62A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5034", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.917776394703069, 45.708239483396888 ] } }, -{ "type": "Feature", "properties": { "id": "45863", "nom": "Archives Departementales", "desserte": "T4A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "764", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.861748614895639, 45.754346370959723 ] } }, -{ "type": "Feature", "properties": { "id": "45864", "nom": "Archives Departementales", "desserte": "T4A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "765", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.861789761225316, 45.754346345496792 ] } }, -{ "type": "Feature", "properties": { "id": "1658", "nom": "Les Coutures", "desserte": "8A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1953", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.804688804956199, 45.725784139433266 ] } }, -{ "type": "Feature", "properties": { "id": "1660", "nom": "Les Dauphins", "desserte": "76A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1955", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.904934348316966, 45.659426364368514 ] } }, -{ "type": "Feature", "properties": { "id": "1878", "nom": "Maison des Pretres", "desserte": "15A:R,18B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2119", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.813340560605257, 45.651865885965385 ] } }, -{ "type": "Feature", "properties": { "id": "1932", "nom": "Maryse Bastie", "desserte": "C15A:A,C22A:A,C22A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2164", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.874487726070751, 45.734722522288052 ] } }, -{ "type": "Feature", "properties": { "id": "1958", "nom": "Merlus", "desserte": "63A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2175", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.790801249694294, 45.718689978224624 ] } }, -{ "type": "Feature", "properties": { "id": "2594", "nom": "Residence", "desserte": "3A:A,55A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2567", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.770262853856416, 45.779353663456931 ] } }, -{ "type": "Feature", "properties": { "id": "10158", "nom": "Bron Liberation", "desserte": "C15A:A,C17A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "972", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.90140149081595, 45.730249027578076 ] } }, -{ "type": "Feature", "properties": { "id": "10614", "nom": "Berlioz", "desserte": "2A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3496", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.821509036064048, 45.799509889534278 ] } }, -{ "type": "Feature", "properties": { "id": "10686", "nom": "Jacobins", "desserte": "S1A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1598", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.833400830517119, 45.761234472121195 ] } }, -{ "type": "Feature", "properties": { "id": "10894", "nom": "Petit Versailles", "desserte": "9A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2404", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.85261972211755, 45.78835822169664 ] } }, -{ "type": "Feature", "properties": { "id": "11917", "nom": "Laurent Gerin", "desserte": "93A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3159", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.883235999535585, 45.702380754836383 ] } }, -{ "type": "Feature", "properties": { "id": "12074", "nom": "Lycee Ombrosa", "desserte": "40A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3219", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.843874525437429, 45.807636430656963 ] } }, -{ "type": "Feature", "properties": { "id": "12184", "nom": "Chalin", "desserte": "19A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3251", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.784470413421565, 45.778324793432645 ] } }, -{ "type": "Feature", "properties": { "id": "30036", "nom": "J.Jaures - Malherbe", "desserte": "95A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1591", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 5.015211954751806, 45.771311957015257 ] } }, -{ "type": "Feature", "properties": { "id": "32135", "nom": "La Doua - Gaston Berger", "desserte": "T1A:R,T4A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "350", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.872105283797404, 45.781559342109972 ] } }, -{ "type": "Feature", "properties": { "id": "43309", "nom": "ENTPE - Ecole d'Architecture", "desserte": "57A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4835", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.922492466943106, 45.779471132073056 ] } }, -{ "type": "Feature", "properties": { "id": "43310", "nom": "ENTPE - Ecole d'Architecture", "desserte": "57A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4836", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.922428635482798, 45.779481603123479 ] } }, -{ "type": "Feature", "properties": { "id": "43312", "nom": "Salvador Allende", "desserte": "57A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4837", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.921535576424565, 45.780735365445651 ] } }, -{ "type": "Feature", "properties": { "id": "43420", "nom": "Bellecombe", "desserte": "GE2A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "895", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.845168827182934, 45.648736559641939 ] } }, -{ "type": "Feature", "properties": { "id": "45886", "nom": "Fonderie", "desserte": "83A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "6317", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.918252174580465, 45.782275782526064 ] } }, -{ "type": "Feature", "properties": { "id": "45887", "nom": "Vaulx Jean Moulin", "desserte": "83A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "6318", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.917587140422365, 45.78669666575162 ] } }, -{ "type": "Feature", "properties": { "id": "45888", "nom": "Vaulx Jean Moulin", "desserte": "83A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "6319", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.917490200478287, 45.786555679192702 ] } }, -{ "type": "Feature", "properties": { "id": "45969", "nom": "Martoret", "desserte": "C24B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5083", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.695515008904771, 45.742265870934261 ] } }, -{ "type": "Feature", "properties": { "id": "46030", "nom": "Place Jean Jaurès", "desserte": "302A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "322", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.837557611706456, 45.73781993155152 ] } }, -{ "type": "Feature", "properties": { "id": "46031", "nom": "Debourg", "desserte": "302A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "316", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.833923826440074, 45.731960104407335 ] } }, -{ "type": "Feature", "properties": { "id": "46032", "nom": "Debourg", "desserte": "302A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "321", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.834024916490808, 45.731921850064317 ] } }, -{ "type": "Feature", "properties": { "id": "46034", "nom": "Stade de Gerland", "desserte": "302A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "313", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.831211735058344, 45.727420857210333 ] } }, -{ "type": "Feature", "properties": { "id": "46052", "nom": "Hôtel de Ville - Louis Pradel", "desserte": "301A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "119", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.83599191227459, 45.767315621057527 ] } }, -{ "type": "Feature", "properties": { "id": "46783", "nom": "Lissieu - Montluzin", "desserte": "21A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "6273", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.749199877719253, 45.870968787819244 ] } }, -{ "type": "Feature", "properties": { "id": "1667", "nom": "Les Epinettes", "desserte": "77A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1963", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.876611080207138, 45.835615592856691 ] } }, -{ "type": "Feature", "properties": { "id": "1676", "nom": "Les Etroits", "desserte": "8A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1970", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.819221125731872, 45.7505135633617 ] } }, -{ "type": "Feature", "properties": { "id": "1795", "nom": "Limonest Centre", "desserte": "21A:R,942A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2072", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.771535514724717, 45.837454615976107 ] } }, -{ "type": "Feature", "properties": { "id": "1924", "nom": "Marronniers", "desserte": "33A:A,70A:A,77A:A,9A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2163", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.862436009704582, 45.814952837972577 ] } }, -{ "type": "Feature", "properties": { "id": "2056", "nom": "Montessuy Calmette", "desserte": "C1A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2254", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.843227351622885, 45.791466620836033 ] } }, -{ "type": "Feature", "properties": { "id": "2095", "nom": "Moulin a Vent", "desserte": "C12A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2290", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.853824225489594, 45.72950818352043 ] } }, -{ "type": "Feature", "properties": { "id": "2105", "nom": "Murget", "desserte": "68B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2301", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.976029960460668, 45.737529110005525 ] } }, -{ "type": "Feature", "properties": { "id": "2241", "nom": "Paul Chevalier", "desserte": "33A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2388", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.894882685490106, 45.823679351067177 ] } }, -{ "type": "Feature", "properties": { "id": "2407", "nom": "Plambeau", "desserte": "21A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2456", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.758524383257229, 45.853415429950623 ] } }, -{ "type": "Feature", "properties": { "id": "10911", "nom": "Z.I. Ampere", "desserte": "43A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3537", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.823869764923518, 45.890073387941506 ] } }, -{ "type": "Feature", "properties": { "id": "10915", "nom": "Z.I. Freres Lumiere", "desserte": "43A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3540", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.818159494464752, 45.886652974389442 ] } }, -{ "type": "Feature", "properties": { "id": "10934", "nom": "Grosso - Roosevelt", "desserte": "16A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3547", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.937931053588427, 45.763442920725232 ] } }, -{ "type": "Feature", "properties": { "id": "10947", "nom": "Pont Churchill RD", "desserte": "9A:A,C5A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2492", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.841006588721914, 45.77886944280737 ] } }, -{ "type": "Feature", "properties": { "id": "11410", "nom": "Z.I. Genay Neuville", "desserte": "43A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2990", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.826301539755077, 45.890722336790212 ] } }, -{ "type": "Feature", "properties": { "id": "12020", "nom": "Chauderasses", "desserte": "C20A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3193", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.780875108024409, 45.744316373139618 ] } }, -{ "type": "Feature", "properties": { "id": "12263", "nom": "Les Bruyeres", "desserte": "77A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1932", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.866536599907011, 45.817903050137502 ] } }, -{ "type": "Feature", "properties": { "id": "43494", "nom": "Maison d'Arret", "desserte": "C25B:A,ZI1A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4581", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.932921608935794, 45.677477547996027 ] } }, -{ "type": "Feature", "properties": { "id": "43534", "nom": "Pole Logistique", "desserte": "ZI1A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4856", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.929645019463901, 45.669794104090613 ] } }, -{ "type": "Feature", "properties": { "id": "43535", "nom": "Pole Logistique", "desserte": "ZI1A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4855", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.929456450474737, 45.669879479706303 ] } }, -{ "type": "Feature", "properties": { "id": "43536", "nom": "Aristide Briand", "desserte": "C25B:R,ZI1A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4857", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.933544219914018, 45.692045588104151 ] } }, -{ "type": "Feature", "properties": { "id": "43574", "nom": "Mermoz", "desserte": "28A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5451", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 5.022228449478182, 45.741933269486118 ] } }, -{ "type": "Feature", "properties": { "id": "43614", "nom": "Bois Dieu", "desserte": "118A:A,61A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4865", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.73687428396616, 45.840784975700998 ] } }, -{ "type": "Feature", "properties": { "id": "43640", "nom": "Desbois - Pommier", "desserte": "85A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4622", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 5.006057467633944, 45.777228066475352 ] } }, -{ "type": "Feature", "properties": { "id": "43655", "nom": "Desbois - Pommier", "desserte": "95A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4624", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 5.005283330679833, 45.776121230183115 ] } }, -{ "type": "Feature", "properties": { "id": "46557", "nom": "Flassieu le Bas", "desserte": "763:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "6098", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.975179617973747, 45.627335367192693 ] } }, -{ "type": "Feature", "properties": { "id": "46599", "nom": "Giboulet Wassman", "desserte": "29A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5581", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 5.0160519413723, 45.738287137544724 ] } }, -{ "type": "Feature", "properties": { "id": "46725", "nom": "Solaize Campus", "desserte": "GE2A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "6140", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.826520424368084, 45.644662599953122 ] } }, -{ "type": "Feature", "properties": { "id": "46726", "nom": "St Laurent Piscine", "desserte": "R4B:A,R4B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "6138", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 5.036252681985192, 45.688288415624065 ] } }, -{ "type": "Feature", "properties": { "id": "1221", "nom": "Irigny Mairie", "desserte": "15A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1585", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.822626167035992, 45.67277678039725 ] } }, -{ "type": "Feature", "properties": { "id": "1885", "nom": "Manissieux Clemenceau", "desserte": "26A:A,50A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2127", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.983404467422941, 45.703761169623569 ] } }, -{ "type": "Feature", "properties": { "id": "1952", "nom": "Ménival Sainte Anne", "desserte": "65A:A,C21A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "689", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.783112042744486, 45.756751992029159 ] } }, -{ "type": "Feature", "properties": { "id": "2098", "nom": "Moulin d'Amont", "desserte": "67A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2295", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.981187298809903, 45.773423553367834 ] } }, -{ "type": "Feature", "properties": { "id": "10443", "nom": "Cogny", "desserte": "3A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3437", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.756358492011381, 45.800734306385998 ] } }, -{ "type": "Feature", "properties": { "id": "11834", "nom": "Andre Bollier", "desserte": "ZI6A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "832", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.839466527900396, 45.734851999100414 ] } }, -{ "type": "Feature", "properties": { "id": "12265", "nom": "Gare de Vaise", "desserte": "20A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "263", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.804661557719022, 45.780790209229821 ] } }, -{ "type": "Feature", "properties": { "id": "12287", "nom": "Mions Poste", "desserte": "87A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2213", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.949879993583445, 45.669261138459689 ] } }, -{ "type": "Feature", "properties": { "id": "30133", "nom": "Saxe - Gambetta", "desserte": "302A:A", "pmr": "t", "ascenseur": "t", "escalator": "t", "gid": "200", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.846954650872559, 45.753682559513628 ] } }, -{ "type": "Feature", "properties": { "id": "30136", "nom": "Gare de Vaise", "desserte": "21A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "265", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.804844773731077, 45.781146226417043 ] } }, -{ "type": "Feature", "properties": { "id": "30209", "nom": "Gare de Vaise", "desserte": "304:A", "pmr": "t", "ascenseur": "t", "escalator": "t", "gid": "262", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.80385677578305, 45.7797869888606 ] } }, -{ "type": "Feature", "properties": { "id": "30226", "nom": "Dupeuble", "desserte": "C17A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3353", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.892479903582594, 45.776719580150107 ] } }, -{ "type": "Feature", "properties": { "id": "30393", "nom": "Jean Fournier", "desserte": "S11A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3788", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.794862791272386, 45.780591074194092 ] } }, -{ "type": "Feature", "properties": { "id": "33222", "nom": "Porte des Alpes", "desserte": "T2:A,T2:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "349", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.925702581941616, 45.718394864522075 ] } }, -{ "type": "Feature", "properties": { "id": "43876", "nom": "Neuville Combattants", "desserte": "S14A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4900", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.847183794636076, 45.870526734759096 ] } }, -{ "type": "Feature", "properties": { "id": "43878", "nom": "Tatiere", "desserte": "S14A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4902", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.842310093503063, 45.873569846149863 ] } }, -{ "type": "Feature", "properties": { "id": "43879", "nom": "Neuville Mairie", "desserte": "S14A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4903", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.840448053061813, 45.877103824407733 ] } }, -{ "type": "Feature", "properties": { "id": "43880", "nom": "La Vosne", "desserte": "S14A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1798", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.848881232471328, 45.878338016928247 ] } }, -{ "type": "Feature", "properties": { "id": "43881", "nom": "Torrieres", "desserte": "S14A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4904", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.84890354553696, 45.880515847953653 ] } }, -{ "type": "Feature", "properties": { "id": "43882", "nom": "Le Sablon", "desserte": "S14A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4905", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.846415528551952, 45.880220329708713 ] } }, -{ "type": "Feature", "properties": { "id": "43883", "nom": "Wissel", "desserte": "S14A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4906", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.84353292303403, 45.876927102964238 ] } }, -{ "type": "Feature", "properties": { "id": "43884", "nom": "Neuville Ancienne Gare", "desserte": "S14A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4907", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.841466117808404, 45.878233330353446 ] } }, -{ "type": "Feature", "properties": { "id": "43885", "nom": "Neuville Racine", "desserte": "S14A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4908", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.84258576058824, 45.871421387999789 ] } }, -{ "type": "Feature", "properties": { "id": "43886", "nom": "Neuville Hopital", "desserte": "S14A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4909", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.847250143383049, 45.868031881057647 ] } }, -{ "type": "Feature", "properties": { "id": "43889", "nom": "Rue J.Moulin", "desserte": "S14A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4910", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.840213102378815, 45.881843753444954 ] } }, -{ "type": "Feature", "properties": { "id": "43890", "nom": "Rue Jacques", "desserte": "S14A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4911", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.838150363650088, 45.879567297162119 ] } }, -{ "type": "Feature", "properties": { "id": "46130", "nom": "Gare d'Oullins", "desserte": "78B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "6210", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.815126479779818, 45.716012043242515 ] } }, -{ "type": "Feature", "properties": { "id": "46132", "nom": "Gare d'Oullins", "desserte": "18B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "6211", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.814739685318726, 45.716296920258713 ] } }, -{ "type": "Feature", "properties": { "id": "2100", "nom": "La Mulatiere Belle Rive", "desserte": "8A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2298", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.812000339616399, 45.740051767201649 ] } }, -{ "type": "Feature", "properties": { "id": "2168", "nom": "Panorama", "desserte": "171:A,C5A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2341", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.875857768843533, 45.797574724672494 ] } }, -{ "type": "Feature", "properties": { "id": "2191", "nom": "Paris", "desserte": "21A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2365", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.773417651022673, 45.824722358267287 ] } }, -{ "type": "Feature", "properties": { "id": "2237", "nom": "Paul Bert - Baraban", "desserte": "C16A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2385", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.867356358650934, 45.756864659689029 ] } }, -{ "type": "Feature", "properties": { "id": "2406", "nom": "Plambeau", "desserte": "21A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2457", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.758616052288211, 45.853449459691284 ] } }, -{ "type": "Feature", "properties": { "id": "2724", "nom": "Severine", "desserte": "C17A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2664", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.913439130204186, 45.754286093170897 ] } }, -{ "type": "Feature", "properties": { "id": "2789", "nom": "St Genis 2", "desserte": "C10A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2718", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.793409197695706, 45.682106895459249 ] } }, -{ "type": "Feature", "properties": { "id": "12162", "nom": "Les Bles d'Or", "desserte": "87A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3241", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.945565571052679, 45.667624349825715 ] } }, -{ "type": "Feature", "properties": { "id": "30214", "nom": "St Just", "desserte": "325:A,325:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "206", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.816142694164191, 45.756954384676618 ] } }, -{ "type": "Feature", "properties": { "id": "30252", "nom": "Ecully Fayolle", "desserte": "S15A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3749", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.780889859629328, 45.783146316013458 ] } }, -{ "type": "Feature", "properties": { "id": "30341", "nom": "Buyer - Gai Vallon", "desserte": "55A:A,90A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3777", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.80063971150547, 45.763380444627188 ] } }, -{ "type": "Feature", "properties": { "id": "31864", "nom": "Condorcet", "desserte": "69A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "352", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.867026247670696, 45.777926113344371 ] } }, -{ "type": "Feature", "properties": { "id": "32645", "nom": "Les Combes de St Cyr", "desserte": "71A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3886", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.825472941263835, 45.812555166862673 ] } }, -{ "type": "Feature", "properties": { "id": "33043", "nom": "Le Ponterle", "desserte": "72B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3908", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.747150393389855, 45.75684590700903 ] } }, -{ "type": "Feature", "properties": { "id": "33209", "nom": "Alfred de Vigny", "desserte": "T2:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "446", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.936100675225197, 45.699616331706309 ] } }, -{ "type": "Feature", "properties": { "id": "34230", "nom": "La Vernique", "desserte": "5A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1790", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.782668140404022, 45.77322421799289 ] } }, -{ "type": "Feature", "properties": { "id": "34293", "nom": "St Genis Collonges", "desserte": "17B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2730", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.808108513294123, 45.692891112581634 ] } }, -{ "type": "Feature", "properties": { "id": "40174", "nom": "Europa", "desserte": "C25B:A,ZI1A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4580", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.933441735720961, 45.68115612010255 ] } }, -{ "type": "Feature", "properties": { "id": "46174", "nom": "Lardillet", "desserte": "S9A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1821", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.791269600183361, 45.686741570917043 ] } }, -{ "type": "Feature", "properties": { "id": "46180", "nom": "La Sucriere", "desserte": "S1A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4528", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.815120595575556, 45.737975661436202 ] } }, -{ "type": "Feature", "properties": { "id": "46728", "nom": "Parenty", "desserte": "S14A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "6141", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.845454766352002, 45.873657275134349 ] } }, -{ "type": "Feature", "properties": { "id": "46735", "nom": "Saxe - Lafayette", "desserte": "27A:R,C13A:A,C14A:A,C3A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "6212", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.844488219493142, 45.763645130629463 ] } }, -{ "type": "Feature", "properties": { "id": "46738", "nom": "Verlaine - 4 aout", "desserte": "69A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "6207", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.879769260776968, 45.764718003059713 ] } }, -{ "type": "Feature", "properties": { "id": "46762", "nom": "Craponne Val d'Yzeron", "desserte": "73A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "6244", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.715698101850088, 45.737800759364319 ] } }, -{ "type": "Feature", "properties": { "id": "46769", "nom": "Part-Dieu Renaudel", "desserte": "C13A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "6235", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.858376313711586, 45.758069123858689 ] } }, -{ "type": "Feature", "properties": { "id": "46770", "nom": "Clos de la Jeunesse", "desserte": "C13A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "6236", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.846440088763878, 45.789240882127785 ] } }, -{ "type": "Feature", "properties": { "id": "46771", "nom": "Leo Lagrange", "desserte": "C3A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "6265", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.877719222341149, 45.764428941634364 ] } }, -{ "type": "Feature", "properties": { "id": "2083", "nom": "Montmein Sud", "desserte": "88B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2284", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.808189228889667, 45.706138864479406 ] } }, -{ "type": "Feature", "properties": { "id": "2097", "nom": "Moulin Carron", "desserte": "19A:R,89A:R,C6B:R,S15A:A,S15A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2293", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.779413124757462, 45.789290131824544 ] } }, -{ "type": "Feature", "properties": { "id": "2185", "nom": "Parc Tete d'Or-Churchill", "desserte": "38A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2353", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.844902960202632, 45.776298145140935 ] } }, -{ "type": "Feature", "properties": { "id": "2364", "nom": "Croix-Rousse", "desserte": "45A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "335", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.832743140181221, 45.774462006483574 ] } }, -{ "type": "Feature", "properties": { "id": "2496", "nom": "Pont De Lattre RD", "desserte": "C6B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2535", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.837662215469843, 45.77280308785577 ] } }, -{ "type": "Feature", "properties": { "id": "2512", "nom": "Pont Kitchener", "desserte": "31A:A,448A:A,C20A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "176", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.822194030496011, 45.752283999275654 ] } }, -{ "type": "Feature", "properties": { "id": "2515", "nom": "Pont Kitchener", "desserte": "31A:R,S1A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "179", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.824312243298646, 45.752210072291327 ] } }, -{ "type": "Feature", "properties": { "id": "3060", "nom": "Vaulx Lakanal", "desserte": "37A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2906", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.919482584938481, 45.786876607953374 ] } }, -{ "type": "Feature", "properties": { "id": "11430", "nom": "Les Roses", "desserte": "97A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3690", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.853151324152792, 45.879556774641728 ] } }, -{ "type": "Feature", "properties": { "id": "12075", "nom": "Lycee Ombrosa", "desserte": "40A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3220", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.843738975950153, 45.807486433831329 ] } }, -{ "type": "Feature", "properties": { "id": "30183", "nom": "Parilly", "desserte": "304:A", "pmr": "t", "ascenseur": "t", "escalator": "t", "gid": "149", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.887503843212516, 45.719777586212814 ] } }, -{ "type": "Feature", "properties": { "id": "30486", "nom": "Les Sequoias", "desserte": "S15A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3815", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.779043747403991, 45.780684200428531 ] } }, -{ "type": "Feature", "properties": { "id": "32142", "nom": "Jean Macé", "desserte": "T2:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "289", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.842261656115485, 45.745111083374226 ] } }, -{ "type": "Feature", "properties": { "id": "34544", "nom": "Route de Toussieu", "desserte": "50A:R,ZI8A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3980", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.983744014885016, 45.689179387882504 ] } }, -{ "type": "Feature", "properties": { "id": "34815", "nom": "Casimir-Perier", "desserte": "63A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3997", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.823764835747727, 45.740952806953878 ] } }, -{ "type": "Feature", "properties": { "id": "45000", "nom": "Petite Guille", "desserte": "C22A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2411", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.858527394835392, 45.730890386218327 ] } }, -{ "type": "Feature", "properties": { "id": "45001", "nom": "Petite Guille", "desserte": "C22A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2408", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.858697420791178, 45.730898356347467 ] } }, -{ "type": "Feature", "properties": { "id": "45480", "nom": "La Source", "desserte": "12B:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5012", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.743694130274709, 45.712230994931424 ] } }, -{ "type": "Feature", "properties": { "id": "45773", "nom": "De Tassigny - Curial", "desserte": "24A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5023", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.916186669550613, 45.736643185024356 ] } }, -{ "type": "Feature", "properties": { "id": "45789", "nom": "Pont Clemenceau", "desserte": "40A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5178", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.81028718773506, 45.776488123556405 ] } }, -{ "type": "Feature", "properties": { "id": "45797", "nom": "Duchere Martiniere", "desserte": "S11A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1335", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.795030068689481, 45.786060058276945 ] } }, -{ "type": "Feature", "properties": { "id": "45798", "nom": "Duchere Martiniere", "desserte": "S11A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1338", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.795122050548489, 45.786103050195251 ] } }, -{ "type": "Feature", "properties": { "id": "45799", "nom": "Bellecour Le Viste", "desserte": "40A:A,40A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5181", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.833742670240757, 45.757149341839927 ] } }, -{ "type": "Feature", "properties": { "id": "46794", "nom": "Viviani", "desserte": "C16A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "6308", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.86321644362445, 45.726779355203774 ] } }, -{ "type": "Feature", "properties": { "id": "46807", "nom": "Le Joli Mai", "desserte": "73A:R,C24B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "6423", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.718614030204225, 45.738774797944032 ] } }, -{ "type": "Feature", "properties": { "id": "46817", "nom": "Pr Bernard", "desserte": "ZI6A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "6427", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.842394439839595, 45.72334744897956 ] } }, -{ "type": "Feature", "properties": { "id": "2104", "nom": "Murget", "desserte": "68B:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2302", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.975952915994006, 45.737530921951773 ] } }, -{ "type": "Feature", "properties": { "id": "2148", "nom": "Oasis", "desserte": "63A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2327", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.801069023034577, 45.7149724887636 ] } }, -{ "type": "Feature", "properties": { "id": "2493", "nom": "Pont de la Sucrerie", "desserte": "52A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2532", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.933467928803408, 45.772970838746303 ] } }, -{ "type": "Feature", "properties": { "id": "2506", "nom": "Pont Gallieni RD", "desserte": "15A:A,C10A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2544", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.832029223386873, 45.750841630749093 ] } }, -{ "type": "Feature", "properties": { "id": "2599", "nom": "Revaison", "desserte": "C25B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2572", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.918055130363759, 45.701386699633161 ] } }, -{ "type": "Feature", "properties": { "id": "2601", "nom": "Rillieux Industrie", "desserte": "33A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2573", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.877260531409088, 45.820694579103176 ] } }, -{ "type": "Feature", "properties": { "id": "2905", "nom": "Stade Jean Bouin", "desserte": "C25B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2784", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.925473733337983, 45.697966165343303 ] } }, -{ "type": "Feature", "properties": { "id": "3106", "nom": "Verlaine", "desserte": "69A:R,C3A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2936", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.87775177102044, 45.762822729473307 ] } }, -{ "type": "Feature", "properties": { "id": "11390", "nom": "Claude Joseph Bonnet", "desserte": "2A:A,C18A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "998", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.821210664926761, 45.774358530579931 ] } }, -{ "type": "Feature", "properties": { "id": "11750", "nom": "Place Jean Jaurès", "desserte": "ZI6A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "324", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.840582696318429, 45.740173788109622 ] } }, -{ "type": "Feature", "properties": { "id": "11877", "nom": "11 Novembre 1918", "desserte": "93A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3146", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.863246540511759, 45.688655882904079 ] } }, -{ "type": "Feature", "properties": { "id": "30448", "nom": "Gare de Vénissieux", "desserte": "304:R", "pmr": "t", "ascenseur": "t", "escalator": "t", "gid": "282", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.887965910530053, 45.705598688640798 ] } }, -{ "type": "Feature", "properties": { "id": "45428", "nom": "Pre Moulin", "desserte": "11B:A,11B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4958", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.681212069271743, 45.696795315985291 ] } }, -{ "type": "Feature", "properties": { "id": "45429", "nom": "Quinsonnat", "desserte": "11B:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4961", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.670879074604506, 45.686067179762112 ] } }, -{ "type": "Feature", "properties": { "id": "45430", "nom": "Quinsonnat", "desserte": "11B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4962", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.67099667642583, 45.686090742960189 ] } }, -{ "type": "Feature", "properties": { "id": "45431", "nom": "La Valotte", "desserte": "11B:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4963", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.658442577747643, 45.679205014840662 ] } }, -{ "type": "Feature", "properties": { "id": "45837", "nom": "Deux Fermes", "desserte": "60A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4565", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.860745559328024, 45.692099562664495 ] } }, -{ "type": "Feature", "properties": { "id": "45838", "nom": "Les Maures", "desserte": "60A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2003", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.857865445641319, 45.663963608733482 ] } }, -{ "type": "Feature", "properties": { "id": "45839", "nom": "St Fons Mairie", "desserte": "60A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3135", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.852895527422981, 45.709186530065985 ] } }, -{ "type": "Feature", "properties": { "id": "45841", "nom": "St Genis 2", "desserte": "17B:A,17B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2712", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.789261533504574, 45.680681772591271 ] } }, -{ "type": "Feature", "properties": { "id": "45913", "nom": "Gymnase E.Catalon", "desserte": "C24B:A,C24B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4917", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.697725929476995, 45.748048759755264 ] } }, -{ "type": "Feature", "properties": { "id": "46001", "nom": "Dumas - Salengro", "desserte": "68B:R,ZI5B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1350", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.928009287217623, 45.753246981127667 ] } }, -{ "type": "Feature", "properties": { "id": "46008", "nom": "La Chicotiere", "desserte": "61A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4936", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.733483234881813, 45.845279021925194 ] } }, -{ "type": "Feature", "properties": { "id": "1672", "nom": "Les Essarts", "desserte": "24A:R,C15A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1964", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.898978990888451, 45.732878759756062 ] } }, -{ "type": "Feature", "properties": { "id": "1686", "nom": "Les Gaulnes", "desserte": "95A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1976", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 5.033820911472243, 45.791418124815849 ] } }, -{ "type": "Feature", "properties": { "id": "1703", "nom": "Les Ifs", "desserte": "63A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1995", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.796226912886669, 45.716167884308682 ] } }, -{ "type": "Feature", "properties": { "id": "1728", "nom": "Centre Nautique.", "desserte": "16A:A,79A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2017", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.956432326636049, 45.763588873534559 ] } }, -{ "type": "Feature", "properties": { "id": "1746", "nom": "Les Places", "desserte": "73A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "721", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.694440541809833, 45.722871798178559 ] } }, -{ "type": "Feature", "properties": { "id": "1766", "nom": "Corbas Les Taillis", "desserte": "54A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5165", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.908225146997206, 45.669702498690697 ] } }, -{ "type": "Feature", "properties": { "id": "2190", "nom": "Paris", "desserte": "21A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2364", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.773436892063298, 45.82486595774769 ] } }, -{ "type": "Feature", "properties": { "id": "2232", "nom": "Passage Comtois", "desserte": "C25B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2382", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.876154126215487, 45.729329064376302 ] } }, -{ "type": "Feature", "properties": { "id": "2334", "nom": "Pierre Blanche", "desserte": "3A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2429", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.751093440183477, 45.821504755550997 ] } }, -{ "type": "Feature", "properties": { "id": "2531", "nom": "Pont Mouton", "desserte": "19A:A,2A:A,31A:A,45A:A,C14A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2547", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.809959438213065, 45.773301751323757 ] } }, -{ "type": "Feature", "properties": { "id": "2564", "nom": "Rancy", "desserte": "C25B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2560", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.852937282619292, 45.755091508631025 ] } }, -{ "type": "Feature", "properties": { "id": "3028", "nom": "Valdo", "desserte": "45A:A,45A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2880", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.784205436943295, 45.750112431326883 ] } }, -{ "type": "Feature", "properties": { "id": "3285", "nom": "Maison des Canuts", "desserte": "S4A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3021", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.833558334729407, 45.777172051530393 ] } }, -{ "type": "Feature", "properties": { "id": "30056", "nom": "Sacre Coeur", "desserte": "C9A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3383", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.869299273134244, 45.759404210576648 ] } }, -{ "type": "Feature", "properties": { "id": "31863", "nom": "Les Six Noyers", "desserte": "76A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3859", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.975104741729183, 45.763007623323233 ] } }, -{ "type": "Feature", "properties": { "id": "32942", "nom": "Mont Louis", "desserte": "66A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2271", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.78796367375349, 45.790318986080806 ] } }, -{ "type": "Feature", "properties": { "id": "33265", "nom": "Vieux Lyon", "desserte": "304:R", "pmr": "t", "ascenseur": "t", "escalator": "t", "gid": "219", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.826491615748135, 45.760054578041384 ] } }, -{ "type": "Feature", "properties": { "id": "45790", "nom": "Pont Clemenceau", "desserte": "40A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2495", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.810364766142977, 45.776308192735073 ] } }, -{ "type": "Feature", "properties": { "id": "45791", "nom": "Quai Gillet", "desserte": "2A:R,40A:A,45A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5179", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.813696216598894, 45.771871105447211 ] } }, -{ "type": "Feature", "properties": { "id": "45796", "nom": "Pont de Collonges RD", "desserte": "43A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2510", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.845655058139221, 45.814500665454744 ] } }, -{ "type": "Feature", "properties": { "id": "46808", "nom": "Grange Rouge", "desserte": "C22A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "6377", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.873921462139196, 45.731894256983104 ] } }, -{ "type": "Feature", "properties": { "id": "46813", "nom": "Professeur Beauvisage - C.I.S.L.", "desserte": "C22A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "6396", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.866662447020483, 45.731336352345622 ] } }, -{ "type": "Feature", "properties": { "id": "2256", "nom": "Pennachy", "desserte": "17B:R,88B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2394", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.807450466027481, 45.69568694284532 ] } }, -{ "type": "Feature", "properties": { "id": "2544", "nom": "Musée des Confluences", "desserte": "63A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "775", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.817913648234046, 45.735204615652258 ] } }, -{ "type": "Feature", "properties": { "id": "3122", "nom": "Vianney", "desserte": "89A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2952", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.771773800577728, 45.793722483697053 ] } }, -{ "type": "Feature", "properties": { "id": "3284", "nom": "Maurice Sceve", "desserte": "S4A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3020", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.836887509756564, 45.777115980207505 ] } }, -{ "type": "Feature", "properties": { "id": "12047", "nom": "Moulin Berger", "desserte": "6A:R,89A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3206", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.767619486060888, 45.801040255664226 ] } }, -{ "type": "Feature", "properties": { "id": "12049", "nom": "Bourgogne", "desserte": "S11A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3473", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.800661011124171, 45.780797044942254 ] } }, -{ "type": "Feature", "properties": { "id": "30186", "nom": "Mermoz - Pinel", "desserte": "304:R", "pmr": "t", "ascenseur": "t", "escalator": "t", "gid": "138", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.88720861407365, 45.730494321098185 ] } }, -{ "type": "Feature", "properties": { "id": "30563", "nom": "Cite Edouard Herriot", "desserte": "S10A:R,S7A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1170", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.832743388753027, 45.802582550934758 ] } }, -{ "type": "Feature", "properties": { "id": "30574", "nom": "Gorge de Loup", "desserte": "72B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "63", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.804392372622105, 45.766763435974212 ] } }, -{ "type": "Feature", "properties": { "id": "32120", "nom": "Gare Part-Dieu Vivier Merle", "desserte": "T1A:A,T1A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "516", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.857764615492019, 45.762001195869694 ] } }, -{ "type": "Feature", "properties": { "id": "32145", "nom": "Garibaldi - Berthelot", "desserte": "T2:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "378", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.84690624456057, 45.743709866988368 ] } }, -{ "type": "Feature", "properties": { "id": "33990", "nom": "Gymnase Frison Roche", "desserte": "93A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3932", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.85884065015999, 45.689763216030933 ] } }, -{ "type": "Feature", "properties": { "id": "34213", "nom": "Citadelle", "desserte": "17B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3943", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.805125562324244, 45.68737616493403 ] } }, -{ "type": "Feature", "properties": { "id": "34554", "nom": "St Priest Salengro", "desserte": "62A:A,C25B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3958", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.937630230902982, 45.690717670745876 ] } }, -{ "type": "Feature", "properties": { "id": "34613", "nom": "St Priest Salengro", "desserte": "76A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3955", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.938644564115839, 45.689622952742717 ] } }, -{ "type": "Feature", "properties": { "id": "36114", "nom": "Meyzieu Z.i.", "desserte": "28A:R,29A:R,R1B:R,ZI2A:A,ZI2A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "592", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 5.030530972661214, 45.7683980275308 ] } }, -{ "type": "Feature", "properties": { "id": "36142", "nom": "Z.I. Schweitzer - Monge", "desserte": "ZI2A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2997", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 5.028053392304776, 45.766395985890092 ] } }, -{ "type": "Feature", "properties": { "id": "42077", "nom": "Joconde", "desserte": "45A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4694", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.789373686839196, 45.752411880093995 ] } }, -{ "type": "Feature", "properties": { "id": "42103", "nom": "Pagere Vivaldi", "desserte": "24A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4700", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.915591313769095, 45.746432422631308 ] } }, -{ "type": "Feature", "properties": { "id": "42235", "nom": "Cuire", "desserte": "C13A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "36", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.833758048471033, 45.786035944406414 ] } }, -{ "type": "Feature", "properties": { "id": "45823", "nom": "Zac des Marronniers", "desserte": "ZI4A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3003", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.872380847590867, 45.817100541734817 ] } }, -{ "type": "Feature", "properties": { "id": "45824", "nom": "Zac des Marronniers", "desserte": "ZI4A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3000", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.872837747610577, 45.816283526603982 ] } }, -{ "type": "Feature", "properties": { "id": "45827", "nom": "Dassault", "desserte": "ZI2A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5028", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 5.034696924639787, 45.777912035677815 ] } }, -{ "type": "Feature", "properties": { "id": "46172", "nom": "Descartes - Foch", "desserte": "S9A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5136", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.787351565766161, 45.68850686941893 ] } }, -{ "type": "Feature", "properties": { "id": "1921", "nom": "Marne - Pagere", "desserte": "24A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2161", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.914822927092181, 45.741832339492433 ] } }, -{ "type": "Feature", "properties": { "id": "1923", "nom": "Marronniers", "desserte": "33A:R,70A:R,77A:R,9A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2162", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.861714336512845, 45.814374968822968 ] } }, -{ "type": "Feature", "properties": { "id": "2898", "nom": "Stade des Peupliers", "desserte": "7A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2781", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.899351630844245, 45.778426259500286 ] } }, -{ "type": "Feature", "properties": { "id": "2940", "nom": "Tache Velin", "desserte": "35A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2807", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.871665801527318, 45.715595640470028 ] } }, -{ "type": "Feature", "properties": { "id": "3259", "nom": "Route de St Priest", "desserte": "76A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3014", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.903112841868235, 45.671304902516056 ] } }, -{ "type": "Feature", "properties": { "id": "31351", "nom": "Seve", "desserte": "S12A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3845", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.832156146082982, 45.772918659678432 ] } }, -{ "type": "Feature", "properties": { "id": "31354", "nom": "Burdeau", "desserte": "S12A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3847", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.832126967654655, 45.770290965366684 ] } }, -{ "type": "Feature", "properties": { "id": "35594", "nom": "Les Massues - Soeur Janin", "desserte": "46A:A,90A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4049", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.798150133126428, 45.760050662493903 ] } }, -{ "type": "Feature", "properties": { "id": "36220", "nom": "Cite SNCF Grigny", "desserte": "80A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4116", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.777313671334492, 45.602287687532908 ] } }, -{ "type": "Feature", "properties": { "id": "42214", "nom": "Cuire", "desserte": "C1A:A,C1A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "37", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.83320483811903, 45.785821052691894 ] } }, -{ "type": "Feature", "properties": { "id": "42379", "nom": "Jean Monnet", "desserte": "S5A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4726", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.841247273416283, 45.789521519250101 ] } }, -{ "type": "Feature", "properties": { "id": "45870", "nom": "Lycee Colbert", "desserte": "T4A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "753", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.859026122258117, 45.745588166121209 ] } }, -{ "type": "Feature", "properties": { "id": "45883", "nom": "Gare Part-Dieu Villette", "desserte": "T4A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "535", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.861934058659692, 45.760796101479791 ] } }, -{ "type": "Feature", "properties": { "id": "45884", "nom": "Gare Part-Dieu Villette", "desserte": "T3:R,T4A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "534", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.861976453227631, 45.760795147845322 ] } }, -{ "type": "Feature", "properties": { "id": "45889", "nom": "Vaulx Lamartine", "desserte": "7A:R,83A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2909", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.922165206938534, 45.791803626008864 ] } }, -{ "type": "Feature", "properties": { "id": "45890", "nom": "Vaulx Berthelot", "desserte": "7A:R,83A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2895", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.922058181091176, 45.789081689933873 ] } }, -{ "type": "Feature", "properties": { "id": "45891", "nom": "Vaulx Lakanal", "desserte": "7A:R,83A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2908", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.920443221850871, 45.786986658540322 ] } }, -{ "type": "Feature", "properties": { "id": "45902", "nom": "Constellation", "desserte": "14B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3389", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.773589180427848, 45.755052457280264 ] } }, -{ "type": "Feature", "properties": { "id": "45907", "nom": "Noisetiers", "desserte": "6A:A,GE4A:A,GE4A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5045", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.775071357821388, 45.813534203070837 ] } }, -{ "type": "Feature", "properties": { "id": "45908", "nom": "Frenes", "desserte": "6A:A,GE4A:A,GE4A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5046", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.771695472311102, 45.815200590775341 ] } }, -{ "type": "Feature", "properties": { "id": "45909", "nom": "Sequoia", "desserte": "6A:A,GE4A:A,GE4A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4734", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.776521212875033, 45.811108455403961 ] } }, -{ "type": "Feature", "properties": { "id": "45912", "nom": "Quatre Chemins", "desserte": "C24B:A,C24B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2558", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.690652958545774, 45.741666891805863 ] } }, -{ "type": "Feature", "properties": { "id": "45963", "nom": "Voyageurs", "desserte": "C24B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5080", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.698959969583411, 45.743941796131807 ] } }, -{ "type": "Feature", "properties": { "id": "45964", "nom": "Martoret", "desserte": "C24B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5082", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.695530992086483, 45.742323859321807 ] } }, -{ "type": "Feature", "properties": { "id": "45970", "nom": "Voyageurs", "desserte": "C24B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5081", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.700636002278237, 45.744655812950704 ] } }, -{ "type": "Feature", "properties": { "id": "45980", "nom": "Bourdarias", "desserte": "C25B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "955", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.883053270029402, 45.724267000114928 ] } }, -{ "type": "Feature", "properties": { "id": "46000", "nom": "Dumas - Salengro", "desserte": "68B:A,ZI5B:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1349", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.927925285120478, 45.753137031549066 ] } }, -{ "type": "Feature", "properties": { "id": "2500", "nom": "Pont des Planches", "desserte": "57A:R,83A:R,C3A:R,C8A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2540", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.907765554025174, 45.771284849373252 ] } }, -{ "type": "Feature", "properties": { "id": "2786", "nom": "St Fons Parmentier", "desserte": "60A:A,93A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2710", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.8608725839545, 45.705514655857108 ] } }, -{ "type": "Feature", "properties": { "id": "2893", "nom": "St Vincent", "desserte": "19A:R,31A:R,40A:R,C14A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2774", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.828020075273028, 45.767933850440045 ] } }, -{ "type": "Feature", "properties": { "id": "2922", "nom": "Ste Foy Châtelain", "desserte": "C19A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "463", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.796115306726404, 45.735819502451619 ] } }, -{ "type": "Feature", "properties": { "id": "2924", "nom": "Ste Foy Châtelain", "desserte": "49A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "464", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.795803527116743, 45.736321391026188 ] } }, -{ "type": "Feature", "properties": { "id": "3040", "nom": "Valvert", "desserte": "86A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2888", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.76697101058042, 45.765410472592016 ] } }, -{ "type": "Feature", "properties": { "id": "3209", "nom": "Zola", "desserte": "C16A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3004", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.868180263512381, 45.770569985323355 ] } }, -{ "type": "Feature", "properties": { "id": "3412", "nom": "Z.I. Rillieux Mercieres", "desserte": "ZI4A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3045", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.87828054113345, 45.815189659419211 ] } }, -{ "type": "Feature", "properties": { "id": "32126", "nom": "Charpennes", "desserte": "T1A:A,T4A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "239", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.863073916390511, 45.770859081677933 ] } }, -{ "type": "Feature", "properties": { "id": "32202", "nom": "Decines Mairie", "desserte": "79A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3869", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.956256184899001, 45.768099916848819 ] } }, -{ "type": "Feature", "properties": { "id": "32682", "nom": "Gorge de Loup", "desserte": "65A:A,65A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "57", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.80419244297812, 45.76689384508061 ] } }, -{ "type": "Feature", "properties": { "id": "33486", "nom": "Le Moulin", "desserte": "15A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3924", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.824016593692472, 45.695041684779504 ] } }, -{ "type": "Feature", "properties": { "id": "35476", "nom": "Corbas Les Taillis", "desserte": "76A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2053", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.909790541255941, 45.671880918970459 ] } }, -{ "type": "Feature", "properties": { "id": "36320", "nom": "Tour de Bans", "desserte": "81A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4185", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.788130330406103, 45.577055775781929 ] } }, -{ "type": "Feature", "properties": { "id": "46009", "nom": "Lissieu - Montluzin", "desserte": "61A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2274", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.748090299160045, 45.871308604745252 ] } }, -{ "type": "Feature", "properties": { "id": "46010", "nom": "St Germain Mairie", "desserte": "21A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2742", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.802407712687715, 45.884046897280804 ] } }, -{ "type": "Feature", "properties": { "id": "46011", "nom": "Place Ambroise Courtois", "desserte": "C16A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4053", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.870814407496776, 45.743999160278918 ] } }, -{ "type": "Feature", "properties": { "id": "46012", "nom": "Rillieux Victor Hugo", "desserte": "S8A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5101", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.89212775684476, 45.81932744406177 ] } }, -{ "type": "Feature", "properties": { "id": "46013", "nom": "Technoparc", "desserte": "89A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5102", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.769058484753671, 45.799532944975915 ] } }, -{ "type": "Feature", "properties": { "id": "46014", "nom": "Technoparc", "desserte": "6A:R,89A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5103", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.769196870601968, 45.800043005021514 ] } }, -{ "type": "Feature", "properties": { "id": "46015", "nom": "Limonest Cimetiere", "desserte": "21A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2075", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.768547108303378, 45.842964931416056 ] } }, -{ "type": "Feature", "properties": { "id": "46022", "nom": "Brotteaux", "desserte": "302A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "13", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.859497367265485, 45.766915933559119 ] } }, -{ "type": "Feature", "properties": { "id": "46023", "nom": "Brotteaux", "desserte": "302A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "16", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.859365997733373, 45.766855876534358 ] } }, -{ "type": "Feature", "properties": { "id": "46024", "nom": "Gare Part-Dieu Vivier Merle", "desserte": "302A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "532", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.85725824568316, 45.76155647278447 ] } }, -{ "type": "Feature", "properties": { "id": "46026", "nom": "Place Guichard", "desserte": "302A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "91", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.847654250342736, 45.759359366096149 ] } }, -{ "type": "Feature", "properties": { "id": "1268", "nom": "Joliot Curie", "desserte": "C21A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5943", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.788322982113432, 45.754802098356613 ] } }, -{ "type": "Feature", "properties": { "id": "1270", "nom": "Jonage Chateau des Marres", "desserte": "95A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5944", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 5.059488478440957, 45.799900185509706 ] } }, -{ "type": "Feature", "properties": { "id": "1271", "nom": "Jonage Le Vivier", "desserte": "95A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5945", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 5.053401286065194, 45.798607171519564 ] } }, -{ "type": "Feature", "properties": { "id": "1272", "nom": "Jonage Le Vivier", "desserte": "95A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5946", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 5.053482413468195, 45.798686228968847 ] } }, -{ "type": "Feature", "properties": { "id": "1273", "nom": "Jonage Mairie", "desserte": "95A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5947", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 5.047228373491536, 45.796352684043953 ] } }, -{ "type": "Feature", "properties": { "id": "1274", "nom": "Jonage Mairie", "desserte": "95A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5948", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 5.047033788808478, 45.796321369286581 ] } }, -{ "type": "Feature", "properties": { "id": "1275", "nom": "Jonage Pradel", "desserte": "95A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5949", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 5.04195114101478, 45.790322468477932 ] } }, -{ "type": "Feature", "properties": { "id": "1276", "nom": "Jonage Pradel", "desserte": "95A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5950", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 5.04200476426294, 45.790366187473076 ] } }, -{ "type": "Feature", "properties": { "id": "1283", "nom": "Decines Jules Ferry", "desserte": "16A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5951", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.961598960775504, 45.76378326342217 ] } }, -{ "type": "Feature", "properties": { "id": "1284", "nom": "Decines Jules Ferry", "desserte": "16A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5952", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.960785334055229, 45.763982314332125 ] } }, -{ "type": "Feature", "properties": { "id": "1289", "nom": "Kergomard", "desserte": "C25B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5953", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.957045305432772, 45.690337631404439 ] } }, -{ "type": "Feature", "properties": { "id": "1290", "nom": "Kergomard", "desserte": "C25B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5954", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.956967042977551, 45.690312455538383 ] } }, -{ "type": "Feature", "properties": { "id": "1293", "nom": "Kruger - Voillot", "desserte": "C8A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5955", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.90968865004314, 45.753552985250749 ] } }, -{ "type": "Feature", "properties": { "id": "1295", "nom": "L'Aigas", "desserte": "98A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5956", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.741742504927727, 45.770211155363342 ] } }, -{ "type": "Feature", "properties": { "id": "1296", "nom": "L'Aigas", "desserte": "72B:R,98A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5957", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.741827734467878, 45.770101319391934 ] } }, -{ "type": "Feature", "properties": { "id": "1298", "nom": "L'Aventuriere", "desserte": "S14A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5958", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.836047754123636, 45.8868870982079 ] } }, -{ "type": "Feature", "properties": { "id": "1303", "nom": "L'Hormet", "desserte": "C19A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5959", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.806301859941961, 45.739682254062295 ] } }, -{ "type": "Feature", "properties": { "id": "1304", "nom": "L'Hormet", "desserte": "C19A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5960", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.806379316603417, 45.739689550573573 ] } }, -{ "type": "Feature", "properties": { "id": "1305", "nom": "L'Oiselet", "desserte": "22A:A,23A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5961", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.802532736391284, 45.802745648174358 ] } }, -{ "type": "Feature", "properties": { "id": "1312", "nom": "La Baticoliere", "desserte": "71A:R,S7A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5962", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.829881991444315, 45.816678997699796 ] } }, -{ "type": "Feature", "properties": { "id": "1314", "nom": "La Begude", "desserte": "39A:A,60A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5963", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.860637394612365, 45.674600700866542 ] } }, -{ "type": "Feature", "properties": { "id": "1344", "nom": "La Chopinette", "desserte": "C20A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5976", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.743683533756992, 45.730799880991192 ] } }, -{ "type": "Feature", "properties": { "id": "1347", "nom": "Collieres", "desserte": "C25B:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5977", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.941806229980412, 45.682879386105846 ] } }, -{ "type": "Feature", "properties": { "id": "1348", "nom": "Collieres", "desserte": "C25B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5978", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.93946419779071, 45.683050804449977 ] } }, -{ "type": "Feature", "properties": { "id": "1349", "nom": "La Combe", "desserte": "40A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5979", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.844903117945586, 45.810151832180573 ] } }, -{ "type": "Feature", "properties": { "id": "1350", "nom": "La Combe", "desserte": "40A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5980", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.844208373385777, 45.80931221820812 ] } }, -{ "type": "Feature", "properties": { "id": "1353", "nom": "La Courtille - Bramafan", "desserte": "C19A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5981", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.801130358936086, 45.730983934785279 ] } }, -{ "type": "Feature", "properties": { "id": "1357", "nom": "La Creuzette", "desserte": "70A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5982", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.855371928754098, 45.831034750628682 ] } }, -{ "type": "Feature", "properties": { "id": "1361", "nom": "La Croix", "desserte": "21A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5983", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.771426006605276, 45.833820565764043 ] } }, -{ "type": "Feature", "properties": { "id": "2933", "nom": "Suchet", "desserte": "63A:R,S1A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "501", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.824852460675855, 45.746527391947588 ] } }, -{ "type": "Feature", "properties": { "id": "3045", "nom": "Varichon", "desserte": "C25B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2892", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.871193058909546, 45.734355923839097 ] } }, -{ "type": "Feature", "properties": { "id": "3173", "nom": "Yvours", "desserte": "18B:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2983", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.826756084597545, 45.689724226006533 ] } }, -{ "type": "Feature", "properties": { "id": "3475", "nom": "St Priest Alouettes", "desserte": "62A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3063", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.918490274562759, 45.702447848390193 ] } }, -{ "type": "Feature", "properties": { "id": "10156", "nom": "Bron Leo Lagrange", "desserte": "79A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3312", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.928582482480086, 45.740273222831469 ] } }, -{ "type": "Feature", "properties": { "id": "10172", "nom": "Pressense - Vaillant", "desserte": "C26A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3315", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.880794048510936, 45.772988347241309 ] } }, -{ "type": "Feature", "properties": { "id": "10205", "nom": "Hauts de la Rochette", "desserte": "33A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3330", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.829766793885619, 45.786041441976984 ] } }, -{ "type": "Feature", "properties": { "id": "30041", "nom": "Pont Guillotiere RD", "desserte": "171:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2527", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.837420390004526, 45.75969581707519 ] } }, -{ "type": "Feature", "properties": { "id": "30191", "nom": "Monplaisir Lumière", "desserte": "304:A", "pmr": "t", "ascenseur": "t", "escalator": "t", "gid": "141", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.871876570102364, 45.745382881634136 ] } }, -{ "type": "Feature", "properties": { "id": "30229", "nom": "Decines Esplanade", "desserte": "67A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3093", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.974152852648717, 45.77239175554439 ] } }, -{ "type": "Feature", "properties": { "id": "32128", "nom": "Le Tonkin", "desserte": "T1A:A,T4A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "471", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.864052719260815, 45.774046731669429 ] } }, -{ "type": "Feature", "properties": { "id": "33769", "nom": "Perrache", "desserte": "8A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "167", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.827301704662861, 45.74922741351638 ] } }, -{ "type": "Feature", "properties": { "id": "33777", "nom": "Perrache", "desserte": "C19A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "163", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.826051850517313, 45.750020236140081 ] } }, -{ "type": "Feature", "properties": { "id": "33949", "nom": "Gare de Villeurbanne", "desserte": "C26A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "552", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.891201466747076, 45.755289405231082 ] } }, -{ "type": "Feature", "properties": { "id": "34417", "nom": "Louise Michel", "desserte": "69A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2090", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.893587814564416, 45.774263983209629 ] } }, -{ "type": "Feature", "properties": { "id": "36224", "nom": "Les Vernes - R. Rolland", "desserte": "80A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4122", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.767422433578186, 45.603339999882586 ] } }, -{ "type": "Feature", "properties": { "id": "36319", "nom": "Port du Bief", "desserte": "81A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4184", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.779469763022293, 45.580323508235459 ] } }, -{ "type": "Feature", "properties": { "id": "36755", "nom": "Gadagne - Egalite", "desserte": "78B:R,S9A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4223", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.788196966256955, 45.698872831870652 ] } }, -{ "type": "Feature", "properties": { "id": "42794", "nom": "Mediatheque", "desserte": "50A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4775", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.936659019556124, 45.694358815740387 ] } }, -{ "type": "Feature", "properties": { "id": "43656", "nom": "Meyzieu Curie", "desserte": "95A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2178", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 5.004855002924771, 45.774187008689182 ] } }, -{ "type": "Feature", "properties": { "id": "46035", "nom": "Gare d'Oullins", "desserte": "302A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "748", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.814495853741668, 45.71667494943263 ] } }, -{ "type": "Feature", "properties": { "id": "46036", "nom": "Gare d'Oullins", "desserte": "302A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "749", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.814522741312713, 45.716701358682563 ] } }, -{ "type": "Feature", "properties": { "id": "46040", "nom": "Saxe - Gambetta", "desserte": "302A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "204", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.846804015774028, 45.753689618590933 ] } }, -{ "type": "Feature", "properties": { "id": "46049", "nom": "Ampère Victor Hugo", "desserte": "301A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.829175147863609, 45.753119324390056 ] } }, -{ "type": "Feature", "properties": { "id": "46055", "nom": "Charpennes", "desserte": "301A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "246", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.864220838849003, 45.770626240073916 ] } }, -{ "type": "Feature", "properties": { "id": "46093", "nom": "Campus Lyon Ouest", "desserte": "3A:R,4A:A,75A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4792", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.76605216115747, 45.783045216129601 ] } }, -{ "type": "Feature", "properties": { "id": "2951", "nom": "Tassin Gare", "desserte": "5A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2817", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.760763479662961, 45.760252134919632 ] } }, -{ "type": "Feature", "properties": { "id": "3077", "nom": "Vaulx Pierre Frite", "desserte": "52A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2917", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.932171137258138, 45.774657100246095 ] } }, -{ "type": "Feature", "properties": { "id": "3103", "nom": "Verdun - Victor Hugo", "desserte": "67A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2934", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.996597417786577, 45.77926185152041 ] } }, -{ "type": "Feature", "properties": { "id": "3206", "nom": "Zac des Marronniers", "desserte": "33A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3001", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.873609248101001, 45.816897468368204 ] } }, -{ "type": "Feature", "properties": { "id": "3327", "nom": "Jodino - A.F.P.A.", "desserte": "39A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3006", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.883002281371223, 45.691215417609982 ] } }, -{ "type": "Feature", "properties": { "id": "3499", "nom": "Lortaret", "desserte": "76A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3078", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.956314953179627, 45.712786635661587 ] } }, -{ "type": "Feature", "properties": { "id": "3512", "nom": "Gymnase Alain Colas", "desserte": "39A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3081", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.875132018712378, 45.688495445161841 ] } }, -{ "type": "Feature", "properties": { "id": "10136", "nom": "Pouteau", "desserte": "S6A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3301", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.833163909441253, 45.771600088842703 ] } }, -{ "type": "Feature", "properties": { "id": "10196", "nom": "Les Canuts", "desserte": "2A:A,33A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3324", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.829103604067859, 45.776802953228469 ] } }, -{ "type": "Feature", "properties": { "id": "10244", "nom": "Dupeuble", "desserte": "69A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3355", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.892466427659957, 45.776152799508999 ] } }, -{ "type": "Feature", "properties": { "id": "10278", "nom": "Les Genets", "desserte": "14B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3368", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.77246412137117, 45.748018606393899 ] } }, -{ "type": "Feature", "properties": { "id": "10309", "nom": "Ménival Sainte Anne", "desserte": "14B:A,65A:R,72B:R,73A:R,C24B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "692", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.782162955696402, 45.757096707915601 ] } }, -{ "type": "Feature", "properties": { "id": "10371", "nom": "Georges Brassens", "desserte": "76A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3411", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.975359766172104, 45.768591687538837 ] } }, -{ "type": "Feature", "properties": { "id": "36257", "nom": "Rue de Montrond", "desserte": "80A:A,81A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4154", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.761090078479486, 45.587050855340763 ] } }, -{ "type": "Feature", "properties": { "id": "36262", "nom": "Vallee du Gier 1", "desserte": "80A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4159", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.74677535724025, 45.583624768569308 ] } }, -{ "type": "Feature", "properties": { "id": "46094", "nom": "Campus Lyon Ouest", "desserte": "4A:R,75A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5869", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.766160940458287, 45.783177877384617 ] } }, -{ "type": "Feature", "properties": { "id": "46110", "nom": "Thurins Mairie", "desserte": "11B:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4948", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.641262801988673, 45.683885290286419 ] } }, -{ "type": "Feature", "properties": { "id": "46111", "nom": "Thurins Les Vergers", "desserte": "11B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4968", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.644157272998019, 45.68065921708255 ] } }, -{ "type": "Feature", "properties": { "id": "46119", "nom": "La Croix des Hormes", "desserte": "97A:A,97A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5186", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.872962810436981, 45.882127328583266 ] } }, -{ "type": "Feature", "properties": { "id": "46125", "nom": "Gare d'Oullins", "desserte": "15A:A,17B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "744", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.815189479529069, 45.716686539918044 ] } }, -{ "type": "Feature", "properties": { "id": "46126", "nom": "Gare d'Oullins", "desserte": "15A:R,17B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "743", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.815206458977473, 45.716772574828092 ] } }, -{ "type": "Feature", "properties": { "id": "46127", "nom": "Parc Bourrat", "desserte": "17B:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5122", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.803345296767141, 45.741100403194501 ] } }, -{ "type": "Feature", "properties": { "id": "46128", "nom": "Parc Bourrat", "desserte": "17B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5121", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.803365369346965, 45.741132365756819 ] } }, -{ "type": "Feature", "properties": { "id": "46137", "nom": "Roux Rivoire", "desserte": "80A:A,80A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5125", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.797270360052706, 45.611102679443917 ] } }, -{ "type": "Feature", "properties": { "id": "3090", "nom": "Venissieux Le Charreard", "desserte": "35A:A,35A:R,ZI1A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2927", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.90066547711649, 45.698446106064445 ] } }, -{ "type": "Feature", "properties": { "id": "3473", "nom": "Chemin de Revaison", "desserte": "62A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3061", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.916214951132289, 45.704336487058235 ] } }, -{ "type": "Feature", "properties": { "id": "10135", "nom": "Pouteau", "desserte": "S6A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3302", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.833228973304077, 45.771616644575822 ] } }, -{ "type": "Feature", "properties": { "id": "10344", "nom": "Institut Pasteur", "desserte": "60A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3393", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.824268310941045, 45.727917054339208 ] } }, -{ "type": "Feature", "properties": { "id": "32151", "nom": "Villon", "desserte": "T2:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "482", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.863349432549975, 45.73844906830471 ] } }, -{ "type": "Feature", "properties": { "id": "35478", "nom": "Vignerme", "desserte": "76A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4032", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.901426708302287, 45.668733098240594 ] } }, -{ "type": "Feature", "properties": { "id": "36156", "nom": "Auvergne", "desserte": "67A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4083", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 5.017797877509095, 45.761294174509089 ] } }, -{ "type": "Feature", "properties": { "id": "36324", "nom": "Abricotiers", "desserte": "81A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4189", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.793406055010244, 45.571476495429955 ] } }, -{ "type": "Feature", "properties": { "id": "36330", "nom": "Cimetiere de Givors", "desserte": "R3A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5333", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.777313616399719, 45.576203164992769 ] } }, -{ "type": "Feature", "properties": { "id": "37198", "nom": "Le Capot", "desserte": "26A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3974", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.985925338234738, 45.707023265127489 ] } }, -{ "type": "Feature", "properties": { "id": "37215", "nom": "Vaulx-en-Velin La Soie", "desserte": "28A:A,28A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "566", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.921496498661398, 45.761293042358794 ] } }, -{ "type": "Feature", "properties": { "id": "37216", "nom": "Vaulx-en-Velin La Soie", "desserte": "16A:A,323A:A,323A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "565", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.921795350976816, 45.761358173730486 ] } }, -{ "type": "Feature", "properties": { "id": "37350", "nom": "Mont Joyeux", "desserte": "95A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4282", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.99315645646784, 45.788192057475165 ] } }, -{ "type": "Feature", "properties": { "id": "41076", "nom": "Chemin de la Poterie", "desserte": "73A:A,C24B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4637", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.761003155731408, 45.749039479445578 ] } }, -{ "type": "Feature", "properties": { "id": "41101", "nom": "Square Elie Vignal", "desserte": "C1A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3450", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.837309154299886, 45.78554071882337 ] } }, -{ "type": "Feature", "properties": { "id": "41154", "nom": "Marius Berliet", "desserte": "C25B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3781", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.859751224961614, 45.741886762937469 ] } }, -{ "type": "Feature", "properties": { "id": "41214", "nom": "Square Elie Vignal", "desserte": "C1A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3451", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.837205514444958, 45.785525023934582 ] } }, -{ "type": "Feature", "properties": { "id": "41234", "nom": "Gare d'Albigny-Neuville", "desserte": "84A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2966", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.833354748325819, 45.875569238054915 ] } }, -{ "type": "Feature", "properties": { "id": "41235", "nom": "Gare d'Albigny-Neuville", "desserte": "84A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2965", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.833215820796915, 45.875546397782735 ] } }, -{ "type": "Feature", "properties": { "id": "41295", "nom": "Serin - Saint Charles", "desserte": "C6B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2660", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.812463125723493, 45.774655160493317 ] } }, -{ "type": "Feature", "properties": { "id": "41895", "nom": "Z.A. Pesseliere", "desserte": "R5A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3649", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.965015156035739, 45.677287745725046 ] } }, -{ "type": "Feature", "properties": { "id": "41974", "nom": "Place Jean Jaurès", "desserte": "C7B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "326", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.837921371176703, 45.73862831893284 ] } }, -{ "type": "Feature", "properties": { "id": "41975", "nom": "Place Jean Jaurès", "desserte": "C7B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "327", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.837928346127137, 45.738476314032518 ] } }, -{ "type": "Feature", "properties": { "id": "3330", "nom": "Mions Mairie", "desserte": "62A:R,87A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2211", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.957783393992952, 45.664557791777362 ] } }, -{ "type": "Feature", "properties": { "id": "3342", "nom": "Square Meunier", "desserte": "54A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2680", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.904111781265693, 45.66601621632627 ] } }, -{ "type": "Feature", "properties": { "id": "3441", "nom": "Les Narcisses", "desserte": "72B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3054", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.723135238497864, 45.761103347232151 ] } }, -{ "type": "Feature", "properties": { "id": "10039", "nom": "Chassieu Arago", "desserte": "76A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3285", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.962705283386517, 45.725266447834485 ] } }, -{ "type": "Feature", "properties": { "id": "10076", "nom": "Combe au Loup", "desserte": "67A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3294", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.986203079042129, 45.774736606837791 ] } }, -{ "type": "Feature", "properties": { "id": "10144", "nom": "Bron Jean Jaures", "desserte": "24A:R,79A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3308", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.905874054770634, 45.72996668543297 ] } }, -{ "type": "Feature", "properties": { "id": "10188", "nom": "Mermoz - Pinel", "desserte": "26A:A,448A:A,79A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "137", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.88749235789544, 45.730210270523351 ] } }, -{ "type": "Feature", "properties": { "id": "10191", "nom": "Monplaisir Lumière", "desserte": "C16A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "139", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.871724018279545, 45.745325478824213 ] } }, -{ "type": "Feature", "properties": { "id": "10324", "nom": "Georges Pompidou", "desserte": "C9A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3378", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.862624963652765, 45.759122525324379 ] } }, -{ "type": "Feature", "properties": { "id": "10524", "nom": "1ere D.F.L.", "desserte": "C19A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3470", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.814149389144633, 45.750382591638193 ] } }, -{ "type": "Feature", "properties": { "id": "10902", "nom": "Leclerc - Girondins", "desserte": "60A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3535", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.82601016820882, 45.739435843555079 ] } }, -{ "type": "Feature", "properties": { "id": "10997", "nom": "Rue d'Island", "desserte": "43A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3570", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.852771141655951, 45.826259289427611 ] } }, -{ "type": "Feature", "properties": { "id": "30518", "nom": "Chantegrillet", "desserte": "C20A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "682", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.77343201667267, 45.738519610124577 ] } }, -{ "type": "Feature", "properties": { "id": "35582", "nom": "Genay Lavoir", "desserte": "43A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4044", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.838428648597678, 45.896961583482678 ] } }, -{ "type": "Feature", "properties": { "id": "35583", "nom": "Genay Lavoir", "desserte": "43A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4043", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.837646498974926, 45.896636198858971 ] } }, -{ "type": "Feature", "properties": { "id": "35975", "nom": "Hopital Cardiologique", "desserte": "C8A:R,C9A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1556", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.903068228769102, 45.747250529285061 ] } }, -{ "type": "Feature", "properties": { "id": "35980", "nom": "Bron Genets", "desserte": "C8A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4058", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.90236344953664, 45.748679858619404 ] } }, -{ "type": "Feature", "properties": { "id": "42155", "nom": "Limonest Le Puy d'Or", "desserte": "3A:A,3A:R,61A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4704", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.775694539165636, 45.815104860750736 ] } }, -{ "type": "Feature", "properties": { "id": "42282", "nom": "Lissieu La Reserve", "desserte": "61A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4709", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.739197170835658, 45.857709428628183 ] } }, -{ "type": "Feature", "properties": { "id": "42283", "nom": "Lissieu La Reserve", "desserte": "61A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4710", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.739394660239648, 45.858101251315922 ] } }, -{ "type": "Feature", "properties": { "id": "42284", "nom": "Lissieu Centre Mairie", "desserte": "61A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4711", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.74240682874341, 45.865696678816846 ] } }, -{ "type": "Feature", "properties": { "id": "42285", "nom": "Lissieu Centre Mairie", "desserte": "61A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4712", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.742301504574325, 45.864762830648218 ] } }, -{ "type": "Feature", "properties": { "id": "42286", "nom": "Lissieu - Montluzin", "desserte": "61A:A,61A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2275", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.748602069801002, 45.871225624630952 ] } }, -{ "type": "Feature", "properties": { "id": "42289", "nom": "Chasselay", "desserte": "21A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1115", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.772133016570339, 45.873598958887285 ] } }, -{ "type": "Feature", "properties": { "id": "2734", "nom": "Solaize Mairie", "desserte": "39A:A,39A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2673", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.841480314983186, 45.639410573716042 ] } }, -{ "type": "Feature", "properties": { "id": "2759", "nom": "St Alexandre", "desserte": "55A:A,C20A:A,C21A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2690", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.815079064724896, 45.756464809764253 ] } }, -{ "type": "Feature", "properties": { "id": "3514", "nom": "Leclerc - Thimonnier", "desserte": "C2A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3084", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.864731420299825, 45.804963731370016 ] } }, -{ "type": "Feature", "properties": { "id": "3517", "nom": "Leclerc - Drevet", "desserte": "C2A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3085", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.870965354868869, 45.808414825285411 ] } }, -{ "type": "Feature", "properties": { "id": "10038", "nom": "Chassieu Arago", "desserte": "76A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3284", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.96239113738895, 45.724877729712439 ] } }, -{ "type": "Feature", "properties": { "id": "10147", "nom": "Bron Hôtel de Ville", "desserte": "24A:A,79A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "457", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.908904426213401, 45.734028900016575 ] } }, -{ "type": "Feature", "properties": { "id": "10204", "nom": "Hauts de la Rochette", "desserte": "33A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3329", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.829843503673133, 45.786030737968943 ] } }, -{ "type": "Feature", "properties": { "id": "10308", "nom": "Ménival Sainte Anne", "desserte": "14B:R,72B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "691", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.782062182655159, 45.75714390818036 ] } }, -{ "type": "Feature", "properties": { "id": "10638", "nom": "Pont Churchill RD", "desserte": "38A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2494", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.840698911018594, 45.779740420196696 ] } }, -{ "type": "Feature", "properties": { "id": "32113", "nom": "Liberté", "desserte": "T1A:A,T1A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "369", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.842388456517842, 45.758853691461574 ] } }, -{ "type": "Feature", "properties": { "id": "32160", "nom": "Vinatier", "desserte": "T2:A,T5:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "401", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.893253579952978, 45.738798564333507 ] } }, -{ "type": "Feature", "properties": { "id": "33845", "nom": "Parilly", "desserte": "26A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "148", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.887185250189572, 45.720248576644913 ] } }, -{ "type": "Feature", "properties": { "id": "35956", "nom": "Parc Tete d'Or - Duquesne", "desserte": "C1A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2363", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.851112469905148, 45.773404894690437 ] } }, -{ "type": "Feature", "properties": { "id": "35997", "nom": "Combo", "desserte": "87A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4064", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.943401930101347, 45.658799188192511 ] } }, -{ "type": "Feature", "properties": { "id": "36204", "nom": "Centre Chervet", "desserte": "78B:A,80A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4099", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.787894152945373, 45.60751999904997 ] } }, -{ "type": "Feature", "properties": { "id": "36268", "nom": "Terrasse des Arboras", "desserte": "78B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4165", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.787564760703941, 45.601838671581028 ] } }, -{ "type": "Feature", "properties": { "id": "36271", "nom": "Bonnefond", "desserte": "78B:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4170", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.772265245329113, 45.594530912779774 ] } }, -{ "type": "Feature", "properties": { "id": "40254", "nom": "Vernaison La Rossignole", "desserte": "78B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2938", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.807776285670536, 45.641691593820205 ] } }, -{ "type": "Feature", "properties": { "id": "40454", "nom": "360 Avenue Schneider", "desserte": "ZI2A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4589", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 5.02622604003064, 45.780842851798681 ] } }, -{ "type": "Feature", "properties": { "id": "40455", "nom": "1 Avenue Schneider", "desserte": "ZI2A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4590", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 5.03445021285792, 45.779331360871211 ] } }, -{ "type": "Feature", "properties": { "id": "40534", "nom": "Montcelard", "desserte": "5A:A,86A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4591", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.755253779173437, 45.770650001578993 ] } }, -{ "type": "Feature", "properties": { "id": "40535", "nom": "Montcelard", "desserte": "5A:R,86A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4592", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.754883904518117, 45.770720974538996 ] } }, -{ "type": "Feature", "properties": { "id": "40536", "nom": "Lycee Blaise Pascal", "desserte": "5A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3175", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.752404960316703, 45.765526815107251 ] } }, -{ "type": "Feature", "properties": { "id": "40594", "nom": "Les Chantres", "desserte": "50A:A,50A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4594", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.986247374481293, 45.699031171729779 ] } }, -{ "type": "Feature", "properties": { "id": "40614", "nom": "Denfert Rochereau", "desserte": "81A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4197", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.776873853854644, 45.58335944156115 ] } }, -{ "type": "Feature", "properties": { "id": "40616", "nom": "Centre Hospitalier Montgelas", "desserte": "81A:A,81A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4208", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.766251053136661, 45.59916206450454 ] } }, -{ "type": "Feature", "properties": { "id": "2891", "nom": "St Romain", "desserte": "43A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2773", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.830960163898248, 45.840157328501832 ] } }, -{ "type": "Feature", "properties": { "id": "3484", "nom": "Marcel Vernay", "desserte": "50A:R,ZI8A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3068", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.952859818331293, 45.697672661793852 ] } }, -{ "type": "Feature", "properties": { "id": "10017", "nom": "Francheville Bourg", "desserte": "C20A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3273", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.76448429360339, 45.737039384177422 ] } }, -{ "type": "Feature", "properties": { "id": "10075", "nom": "Combe au Loup", "desserte": "67A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3293", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.986462233276669, 45.774775501231048 ] } }, -{ "type": "Feature", "properties": { "id": "10143", "nom": "Bron Jean Jaures", "desserte": "24A:A,79A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3307", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.905616008600883, 45.729945589254292 ] } }, -{ "type": "Feature", "properties": { "id": "10199", "nom": "Hénon", "desserte": "33A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "101", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.828228009531649, 45.778487600102146 ] } }, -{ "type": "Feature", "properties": { "id": "10260", "nom": "Prairie", "desserte": "7A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3359", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.902421211322857, 45.774458560857489 ] } }, -{ "type": "Feature", "properties": { "id": "10320", "nom": "Gare Part-Dieu Vivier Merle", "desserte": "C13A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "528", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.857691675594475, 45.761753769254888 ] } }, -{ "type": "Feature", "properties": { "id": "10394", "nom": "Chardonnet", "desserte": "52A:A,67A:R,ZI4A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1098", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.9288841005183, 45.766325598102036 ] } }, -{ "type": "Feature", "properties": { "id": "10854", "nom": "Pont Gallieni RG", "desserte": "60A:A,C22A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3530", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.833261409931065, 45.747393793963305 ] } }, -{ "type": "Feature", "properties": { "id": "10901", "nom": "Henaff", "desserte": "111A:R,54A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3533", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.892357408919962, 45.685781789052498 ] } }, -{ "type": "Feature", "properties": { "id": "10907", "nom": "Le Creuzet", "desserte": "43A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1847", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.831925851093128, 45.886096462738337 ] } }, -{ "type": "Feature", "properties": { "id": "10994", "nom": "Varennes", "desserte": "43A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3566", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.85430490161307, 45.819266918601762 ] } }, -{ "type": "Feature", "properties": { "id": "30579", "nom": "Gorge de Loup", "desserte": "2EX:A,2EX:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5172", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.804921219108746, 45.766164220979739 ] } }, -{ "type": "Feature", "properties": { "id": "32106", "nom": "Rue de l'Université", "desserte": "T1A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "374", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.838963465530364, 45.751118505663456 ] } }, -{ "type": "Feature", "properties": { "id": "32112", "nom": "Liberté", "desserte": "T1A:A,T1A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "368", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.842489080961935, 45.758860716650254 ] } }, -{ "type": "Feature", "properties": { "id": "35954", "nom": "Part-Dieu Jules Favre", "desserte": "C1A:R,C2A:R,C6B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2376", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.858364869475002, 45.76437601714477 ] } }, -{ "type": "Feature", "properties": { "id": "37161", "nom": "Karl Marx", "desserte": "ZI3A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4263", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.939348235553196, 45.778172642956868 ] } }, -{ "type": "Feature", "properties": { "id": "37163", "nom": "Lenine - Fromont", "desserte": "ZI3A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3768", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.937389343111542, 45.778371046530431 ] } }, -{ "type": "Feature", "properties": { "id": "39094", "nom": "Eaux Vives", "desserte": "43A:A,43A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4518", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.828515561074676, 45.83935642357774 ] } }, -{ "type": "Feature", "properties": { "id": "39401", "nom": "Division Leclerc", "desserte": "T4A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "664", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.868173360091636, 45.698382530115332 ] } }, -{ "type": "Feature", "properties": { "id": "39407", "nom": "Joliot-Curie - Marcel Sembat", "desserte": "T4A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "630", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.878453198855478, 45.715522884750953 ] } }, -{ "type": "Feature", "properties": { "id": "40624", "nom": "Clotilde", "desserte": "86A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4597", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.761344998130507, 45.767611329895949 ] } }, -{ "type": "Feature", "properties": { "id": "40625", "nom": "Clotilde", "desserte": "86A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4598", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.762055980196884, 45.767109923363172 ] } }, -{ "type": "Feature", "properties": { "id": "40674", "nom": "St Germain Mairie", "desserte": "21A:A,96A:A,96A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2743", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.802912703640165, 45.884098836708866 ] } }, -{ "type": "Feature", "properties": { "id": "40694", "nom": "Hopital Lyon Sud", "desserte": "88B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1570", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.805985796074562, 45.699688673314057 ] } }, -{ "type": "Feature", "properties": { "id": "40715", "nom": "Dauphine", "desserte": "62A:R,87A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1287", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.952877945451896, 45.662908106043851 ] } }, -{ "type": "Feature", "properties": { "id": "40845", "nom": "St Fons Sembat", "desserte": "60A:A,ZI6A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4240", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.8490776296953, 45.709992023717902 ] } }, -{ "type": "Feature", "properties": { "id": "2955", "nom": "Tassin Les Bruyeres", "desserte": "72B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2821", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.751214543840515, 45.758036686481773 ] } }, -{ "type": "Feature", "properties": { "id": "10092", "nom": "Place de la Paix", "desserte": "C17A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3298", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.914709242584257, 45.751205444220879 ] } }, -{ "type": "Feature", "properties": { "id": "10175", "nom": "Legay", "desserte": "C8A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3317", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.91682096283676, 45.75455947587988 ] } }, -{ "type": "Feature", "properties": { "id": "10350", "nom": "Leclerc - Ayasse", "desserte": "60A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3396", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.823876202277282, 45.736305768752786 ] } }, -{ "type": "Feature", "properties": { "id": "10362", "nom": "Roosevelt C.Commercial", "desserte": "28A:R,52A:A,79A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3399", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.933532059943054, 45.748449195183362 ] } }, -{ "type": "Feature", "properties": { "id": "10531", "nom": "Dupuy", "desserte": "21A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3476", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.777116575131704, 45.802193503415225 ] } }, -{ "type": "Feature", "properties": { "id": "10836", "nom": "Leclair", "desserte": "66A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3423", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.804697842681792, 45.770132125797936 ] } }, -{ "type": "Feature", "properties": { "id": "11030", "nom": "Cimetiere Bas", "desserte": "50A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3580", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.981119190436101, 45.698711134363805 ] } }, -{ "type": "Feature", "properties": { "id": "11033", "nom": "Savoie", "desserte": "50A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3581", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.981743462315436, 45.701009845923465 ] } }, -{ "type": "Feature", "properties": { "id": "32287", "nom": "Marne - Lacouture", "desserte": "C17A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2157", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.91031065808763, 45.742935055365642 ] } }, -{ "type": "Feature", "properties": { "id": "32744", "nom": "Sacre Coeur", "desserte": "C16A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3382", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.867753235440662, 45.758864077130006 ] } }, -{ "type": "Feature", "properties": { "id": "33046", "nom": "Marcy Saule", "desserte": "72B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3909", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.701582391287815, 45.77844479156596 ] } }, -{ "type": "Feature", "properties": { "id": "36195", "nom": "Grigny La Colombe", "desserte": "78B:R,80A:A,80A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4089", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.799620196683327, 45.615957495197634 ] } }, -{ "type": "Feature", "properties": { "id": "36211", "nom": "Espace Favier", "desserte": "80A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4105", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.783653078379997, 45.607891813146054 ] } }, -{ "type": "Feature", "properties": { "id": "36459", "nom": "Le Jayon", "desserte": "80A:A,80A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5411", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.781184656620082, 45.604684742142567 ] } }, -{ "type": "Feature", "properties": { "id": "37439", "nom": "Castellane Leclerc", "desserte": "S8A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4308", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.894775318739091, 45.812519980674274 ] } }, -{ "type": "Feature", "properties": { "id": "37765", "nom": "St Priest Les Alpes", "desserte": "C25B:R,ZI1A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4407", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.932675426316147, 45.693505950236563 ] } }, -{ "type": "Feature", "properties": { "id": "38303", "nom": "La Fouillouse Acacias", "desserte": "50A:A,ZI8A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4034", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.976029544922983, 45.685526534425442 ] } }, -{ "type": "Feature", "properties": { "id": "39382", "nom": "Etats-Unis Viviani", "desserte": "T4A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "628", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.871042547555896, 45.72486786004513 ] } }, -{ "type": "Feature", "properties": { "id": "40894", "nom": "Techsud", "desserte": "ZI6A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4608", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.845017900826504, 45.723818634162441 ] } }, -{ "type": "Feature", "properties": { "id": "40895", "nom": "Techsud", "desserte": "ZI6A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4609", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.845021588261663, 45.723899562138136 ] } }, -{ "type": "Feature", "properties": { "id": "40896", "nom": "Pr Bernard", "desserte": "ZI6A:A,ZI6A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4611", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.84413303489367, 45.722731271859999 ] } }, -{ "type": "Feature", "properties": { "id": "41015", "nom": "Gambetta - Picasso", "desserte": "85A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4617", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.995775213667639, 45.764122301406061 ] } }, -{ "type": "Feature", "properties": { "id": "41017", "nom": "Mendes France - Rambion", "desserte": "85A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4619", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.989848975927991, 45.761516957373559 ] } }, -{ "type": "Feature", "properties": { "id": "41018", "nom": "Pommier - Collet", "desserte": "95A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4620", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 5.001061260810333, 45.776599532315721 ] } }, -{ "type": "Feature", "properties": { "id": "41019", "nom": "Desbois - Pommier", "desserte": "95A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4623", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 5.005299717436491, 45.776723964132323 ] } }, -{ "type": "Feature", "properties": { "id": "41020", "nom": "Meyzieu Mendes France", "desserte": "85A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2190", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.990576539413739, 45.765667577746292 ] } }, -{ "type": "Feature", "properties": { "id": "41054", "nom": "Square Combattants d'AFN", "desserte": "S9A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4627", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.793526535314259, 45.696253905842269 ] } }, -{ "type": "Feature", "properties": { "id": "1363", "nom": "La Croix de Presles", "desserte": "84A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5985", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.793210410783102, 45.84181666620659 ] } }, -{ "type": "Feature", "properties": { "id": "1366", "nom": "La Croix de Solaize", "desserte": "39A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5986", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.843809550620743, 45.639450821317972 ] } }, -{ "type": "Feature", "properties": { "id": "1374", "nom": "La Favorite", "desserte": "C20A:R,C21A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5987", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.806593767137771, 45.756498809006992 ] } }, -{ "type": "Feature", "properties": { "id": "1376", "nom": "La Favorite", "desserte": "46A:A,46A:R,C20A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5988", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.806623756920173, 45.756021092486264 ] } }, -{ "type": "Feature", "properties": { "id": "1379", "nom": "La Feuillee", "desserte": "31A:R,40A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5989", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.830433013660231, 45.766404092812479 ] } }, -{ "type": "Feature", "properties": { "id": "1382", "nom": "La Folie", "desserte": "C5A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5990", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.881202266673212, 45.807949413357868 ] } }, -{ "type": "Feature", "properties": { "id": "1383", "nom": "La Folie", "desserte": "C5A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5991", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.881056296008177, 45.808132747238673 ] } }, -{ "type": "Feature", "properties": { "id": "1384", "nom": "La Fontaine", "desserte": "68B:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5992", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.978522265975409, 45.740441021891641 ] } }, -{ "type": "Feature", "properties": { "id": "1387", "nom": "La Forestiere", "desserte": "55A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5993", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.768775500558314, 45.766082471532535 ] } }, -{ "type": "Feature", "properties": { "id": "1388", "nom": "La Foret", "desserte": "84A:R,R2A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5994", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.813231465101063, 45.864555518678813 ] } }, -{ "type": "Feature", "properties": { "id": "1389", "nom": "La Foret", "desserte": "84A:A,R2A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5995", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.81338764779058, 45.86487612333768 ] } }, -{ "type": "Feature", "properties": { "id": "1412", "nom": "La Levee", "desserte": "11B:A,12B:A,14B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "6009", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.786730988180132, 45.722226316729078 ] } }, -{ "type": "Feature", "properties": { "id": "1413", "nom": "La Levee", "desserte": "11B:R,12B:R,14B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "6010", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.78712257055653, 45.722073748642529 ] } }, -{ "type": "Feature", "properties": { "id": "1414", "nom": "La Madone", "desserte": "72B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "6011", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.696281880613248, 45.777827228141142 ] } }, -{ "type": "Feature", "properties": { "id": "1415", "nom": "La Madone", "desserte": "72B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "6012", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.696384308551938, 45.777816075300805 ] } }, -{ "type": "Feature", "properties": { "id": "1416", "nom": "La Maillette", "desserte": "15A:A,18B:A,C7B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "6013", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.824434568151401, 45.69803879016272 ] } }, -{ "type": "Feature", "properties": { "id": "1417", "nom": "La Maillette", "desserte": "15A:R,18B:R,C7B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "6014", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.82453844590037, 45.698063489149746 ] } }, -{ "type": "Feature", "properties": { "id": "1418", "nom": "La Maillette", "desserte": "17B:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "6015", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.824314441581869, 45.697654406291086 ] } }, -{ "type": "Feature", "properties": { "id": "1419", "nom": "La Maillette", "desserte": "17B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "6016", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.824376978072382, 45.697617014537308 ] } }, -{ "type": "Feature", "properties": { "id": "1420", "nom": "La Mouche", "desserte": "15A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "6017", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.820727476439916, 45.694736545112413 ] } }, -{ "type": "Feature", "properties": { "id": "1421", "nom": "La Mouche", "desserte": "15A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "6018", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.820840527236077, 45.694680034114633 ] } }, -{ "type": "Feature", "properties": { "id": "1424", "nom": "La Pagere - Les Brosses", "desserte": "24A:A,25A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "6019", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.914796993070627, 45.748962070529792 ] } }, -{ "type": "Feature", "properties": { "id": "1427", "nom": "Crepieux-La Pape", "desserte": "171:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "6020", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.885797789015517, 45.805738908781024 ] } }, -{ "type": "Feature", "properties": { "id": "1428", "nom": "Crepieux-La Pape", "desserte": "171:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "6021", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.885210877553273, 45.805572195727777 ] } }, -{ "type": "Feature", "properties": { "id": "1429", "nom": "Pateliere - Millaud", "desserte": "73A:A,C24B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "6022", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.745732190393063, 45.747362452436597 ] } }, -{ "type": "Feature", "properties": { "id": "1430", "nom": "Pateliere - Millaud", "desserte": "73A:R,C24B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "6023", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.745628648432548, 45.747346673170547 ] } }, -{ "type": "Feature", "properties": { "id": "1431", "nom": "La Pelletiere", "desserte": "171:A,S8A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "6024", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.892780692590495, 45.807272523428914 ] } }, -{ "type": "Feature", "properties": { "id": "42498", "nom": "Les Ormeaux", "desserte": "6A:A,GE4A:A,GE4A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4735", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.771012489060465, 45.808788661721188 ] } }, -{ "type": "Feature", "properties": { "id": "867", "nom": "Etats-Unis Leriche", "desserte": "26A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1396", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.86925654657653, 45.727468683275418 ] } }, -{ "type": "Feature", "properties": { "id": "3276", "nom": "Henon.", "desserte": "S4A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3016", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.826911388114799, 45.779524934787517 ] } }, -{ "type": "Feature", "properties": { "id": "10365", "nom": "Decines Beauregard", "desserte": "79A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3403", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.945390731497223, 45.753143083754829 ] } }, -{ "type": "Feature", "properties": { "id": "10442", "nom": "Cogny", "desserte": "3A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3435", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.756305288097524, 45.800987478997634 ] } }, -{ "type": "Feature", "properties": { "id": "10567", "nom": "Gorge de Loup", "desserte": "19A:A,66A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "60", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.805315578222968, 45.767274204673107 ] } }, -{ "type": "Feature", "properties": { "id": "10792", "nom": "Champagne Centre", "desserte": "21A:R,61A:R,942A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1073", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.792548541031231, 45.79502539965619 ] } }, -{ "type": "Feature", "properties": { "id": "10861", "nom": "Joannes Masset", "desserte": "66A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1618", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.801182635555223, 45.769471248964827 ] } }, -{ "type": "Feature", "properties": { "id": "10941", "nom": "A.Pare - Laennec", "desserte": "C22A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "800", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.884233964768691, 45.737283082650904 ] } }, -{ "type": "Feature", "properties": { "id": "10995", "nom": "Illhaeusern", "desserte": "43A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3569", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.854739921822934, 45.822299618938104 ] } }, -{ "type": "Feature", "properties": { "id": "11020", "nom": "Route de Lyon", "desserte": "54A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3572", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.895421137334744, 45.678195766870218 ] } }, -{ "type": "Feature", "properties": { "id": "11518", "nom": "Bellecour A.Poncet", "desserte": "C12A:A,C12A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "898", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.83470362214367, 45.755939808495484 ] } }, -{ "type": "Feature", "properties": { "id": "11843", "nom": "Aragon", "desserte": "C8A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3128", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.929329046642278, 45.782040993074943 ] } }, -{ "type": "Feature", "properties": { "id": "32382", "nom": "Champagne Ecoles", "desserte": "66A:A,66A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3883", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.787516870610546, 45.795594348608951 ] } }, -{ "type": "Feature", "properties": { "id": "32722", "nom": "Berthier", "desserte": "17B:R,49A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "11", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.799267822979032, 45.745948522157619 ] } }, -{ "type": "Feature", "properties": { "id": "35955", "nom": "Parc Tete d'Or - Duquesne", "desserte": "38A:A,C1A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2360", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.850964437621332, 45.77354322806238 ] } }, -{ "type": "Feature", "properties": { "id": "35996", "nom": "Combo", "desserte": "87A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4063", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.943416028801806, 45.658825864787261 ] } }, -{ "type": "Feature", "properties": { "id": "36475", "nom": "Meyzieu M.T.E.", "desserte": "67A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3500", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 5.02435636681601, 45.761281420840739 ] } }, -{ "type": "Feature", "properties": { "id": "39406", "nom": "Joliot-Curie - Marcel Sembat", "desserte": "T4A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "631", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.878360371580967, 45.71547998174082 ] } }, -{ "type": "Feature", "properties": { "id": "39515", "nom": "Les Vergers", "desserte": "15A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4541", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.817974654994578, 45.661862539697587 ] } }, -{ "type": "Feature", "properties": { "id": "39614", "nom": "Mions Poste", "desserte": "296:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2217", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.950242050587388, 45.669585754182101 ] } }, -{ "type": "Feature", "properties": { "id": "39949", "nom": "Maurice Thorez", "desserte": "60A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "669", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.863333451109252, 45.699788493334545 ] } }, -{ "type": "Feature", "properties": { "id": "40620", "nom": "Z.A Barolles", "desserte": "78B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4595", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.782436073762289, 45.675596128559079 ] } }, -{ "type": "Feature", "properties": { "id": "40621", "nom": "Les Essards", "desserte": "78B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3905", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.801844953746441, 45.639617027897664 ] } }, -{ "type": "Feature", "properties": { "id": "46229", "nom": "La Halte", "desserte": "96A:A,96A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5191", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.777849784678203, 45.910019662576161 ] } }, -{ "type": "Feature", "properties": { "id": "46230", "nom": "La Halte", "desserte": "96A:A,96A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5192", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.777833785356685, 45.909659961683907 ] } }, -{ "type": "Feature", "properties": { "id": "46231", "nom": "Quincieux Boulodrome", "desserte": "96A:A,96A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5193", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.774916085832139, 45.916546100183275 ] } }, -{ "type": "Feature", "properties": { "id": "1002", "nom": "Garanteze", "desserte": "15A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1456", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.825603753195604, 45.678435407723761 ] } }, -{ "type": "Feature", "properties": { "id": "1467", "nom": "La Velette", "desserte": "C5A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "6039", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.905533835200138, 45.814939001225909 ] } }, -{ "type": "Feature", "properties": { "id": "1469", "nom": "La Vernique", "desserte": "19A:A,3A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "6040", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.783226116454972, 45.773273268695249 ] } }, -{ "type": "Feature", "properties": { "id": "1470", "nom": "La Vernique", "desserte": "19A:R,3A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "6041", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.782446832004288, 45.773607350959125 ] } }, -{ "type": "Feature", "properties": { "id": "1492", "nom": "Lançon", "desserte": "C17A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "6043", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.895987366308313, 45.772202006081692 ] } }, -{ "type": "Feature", "properties": { "id": "1496", "nom": "Laquay", "desserte": "87A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "6044", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.898772776863455, 45.692278396958159 ] } }, -{ "type": "Feature", "properties": { "id": "1501", "nom": "Lassausaie", "desserte": "21A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "6045", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.770454219352565, 45.872645174141134 ] } }, -{ "type": "Feature", "properties": { "id": "3476", "nom": "St Priest Alouettes", "desserte": "62A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3064", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.918421287048574, 45.702620462938967 ] } }, -{ "type": "Feature", "properties": { "id": "10485", "nom": "O'Hara", "desserte": "57A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3458", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.936828574663696, 45.783379898728903 ] } }, -{ "type": "Feature", "properties": { "id": "10547", "nom": "Timbaud", "desserte": "87A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2834", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.900613243885881, 45.691255175611268 ] } }, -{ "type": "Feature", "properties": { "id": "11113", "nom": "Les Regales", "desserte": "76A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3617", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.973533795845389, 45.750091104795445 ] } }, -{ "type": "Feature", "properties": { "id": "11442", "nom": "Garibaldi - Duquesne", "desserte": "38A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3700", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.849804178170337, 45.772642074720125 ] } }, -{ "type": "Feature", "properties": { "id": "32283", "nom": "Bon Coin", "desserte": "C17A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "949", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.90570748533619, 45.760269201137447 ] } }, -{ "type": "Feature", "properties": { "id": "32342", "nom": "Frere Benoit", "desserte": "45A:A,90A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1440", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.795247233528671, 45.763291642321796 ] } }, -{ "type": "Feature", "properties": { "id": "34110", "nom": "Castors", "desserte": "49A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3935", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.808964025750382, 45.751442035367994 ] } }, -{ "type": "Feature", "properties": { "id": "34460", "nom": "St Martin", "desserte": "76A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2750", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.950006586863082, 45.704679382134984 ] } }, -{ "type": "Feature", "properties": { "id": "36269", "nom": "Arboras", "desserte": "78B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4168", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.782884443188023, 45.598078783192591 ] } }, -{ "type": "Feature", "properties": { "id": "36466", "nom": "Place de la Liberte", "desserte": "81A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4209", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.774882721045643, 45.585293029116066 ] } }, -{ "type": "Feature", "properties": { "id": "36694", "nom": "Duroc", "desserte": "C13A:R,C18A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1357", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.818522421789807, 45.768945292675774 ] } }, -{ "type": "Feature", "properties": { "id": "37349", "nom": "Charcot", "desserte": "95A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4279", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.993513739667615, 45.786266223871358 ] } }, -{ "type": "Feature", "properties": { "id": "39336", "nom": "Billon", "desserte": "15A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4535", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.821034482423414, 45.665098145172223 ] } }, -{ "type": "Feature", "properties": { "id": "40914", "nom": "Plateaux de St Rambert", "desserte": "S10A:A,S10A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3492", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.826187939357749, 45.801692871835819 ] } }, -{ "type": "Feature", "properties": { "id": "41016", "nom": "Mendes France - Rambion", "desserte": "85A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4618", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.989783443402887, 45.761491500683526 ] } }, -{ "type": "Feature", "properties": { "id": "41496", "nom": "Z.I. Terray - Schweitzer", "desserte": "ZI2A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4072", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 5.029169873721837, 45.770285066193559 ] } }, -{ "type": "Feature", "properties": { "id": "46661", "nom": "Balzac", "desserte": "85A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "6177", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.98252313456128, 45.770427905938035 ] } }, -{ "type": "Feature", "properties": { "id": "46662", "nom": "Balzac", "desserte": "85A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "6178", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.982465051018663, 45.770455829591697 ] } }, -{ "type": "Feature", "properties": { "id": "46724", "nom": "Solaize Campus", "desserte": "GE2A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "6139", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.826713429436426, 45.644608624711744 ] } }, -{ "type": "Feature", "properties": { "id": "1506", "nom": "Laurent Bonnevay", "desserte": "C17A:A,C17A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "6046", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.909143209975143, 45.764988297933101 ] } }, -{ "type": "Feature", "properties": { "id": "1507", "nom": "Laurent Bonnevay", "desserte": "7A:A,7A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "6047", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.908627626795695, 45.764964102983022 ] } }, -{ "type": "Feature", "properties": { "id": "1511", "nom": "Laurent Bonnevay", "desserte": "C11A:A,C11A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "6048", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.908980209220608, 45.764803002020905 ] } }, -{ "type": "Feature", "properties": { "id": "1626", "nom": "Les Bluets", "desserte": "7A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "6049", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.89783639416363, 45.781800351213136 ] } }, -{ "type": "Feature", "properties": { "id": "1627", "nom": "Les Bluets", "desserte": "7A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "6050", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.8977402821439, 45.781946565688571 ] } }, -{ "type": "Feature", "properties": { "id": "1628", "nom": "Les Bottieres", "desserte": "11B:A,12B:A,14B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "6051", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.792819121530974, 45.721580131917733 ] } }, -{ "type": "Feature", "properties": { "id": "1629", "nom": "Les Bottieres", "desserte": "11B:R,12B:R,14B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "6052", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.794917740042854, 45.721381147608462 ] } }, -{ "type": "Feature", "properties": { "id": "1630", "nom": "Les Brosses de Marcy", "desserte": "72B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "6053", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.705420995820455, 45.775879683488554 ] } }, -{ "type": "Feature", "properties": { "id": "1734", "nom": "Les Oliviers", "desserte": "78B:A,S9A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "6054", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.787365153666093, 45.6868206886612 ] } }, -{ "type": "Feature", "properties": { "id": "1736", "nom": "Les Oncheres", "desserte": "52A:A,C8A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "6055", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.925612132078222, 45.777390757493208 ] } }, -{ "type": "Feature", "properties": { "id": "10074", "nom": "Poizat", "desserte": "448A:A,C11A:A,C3A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3292", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.894792611828512, 45.759789321954763 ] } }, -{ "type": "Feature", "properties": { "id": "10146", "nom": "Bron Salengro", "desserte": "24A:R,79A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3309", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.90842711753095, 45.730691321972301 ] } }, -{ "type": "Feature", "properties": { "id": "10946", "nom": "Pont Churchill RD", "desserte": "9A:R,C5A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2491", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.840859084107989, 45.778737713994062 ] } }, -{ "type": "Feature", "properties": { "id": "10989", "nom": "Parc des Sports", "desserte": "S5A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3564", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.869243658949092, 45.801495598019898 ] } }, -{ "type": "Feature", "properties": { "id": "11277", "nom": "St Irenee", "desserte": "46A:A,49A:A,C20A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3297", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.811747795970638, 45.755017124593834 ] } }, -{ "type": "Feature", "properties": { "id": "11854", "nom": "Parilly", "desserte": "39A:R,79A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "143", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.886592433325762, 45.719379925666587 ] } }, -{ "type": "Feature", "properties": { "id": "36720", "nom": "Normandie-Niemen", "desserte": "26A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4222", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.934291487944561, 45.725045726089505 ] } }, -{ "type": "Feature", "properties": { "id": "39014", "nom": "Croix-Rousse", "desserte": "2A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "341", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.832800118607183, 45.774527078602468 ] } }, -{ "type": "Feature", "properties": { "id": "39377", "nom": "Lycée Lumière", "desserte": "T4A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "609", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.861854897656389, 45.736820720365316 ] } }, -{ "type": "Feature", "properties": { "id": "39378", "nom": "Etats-Unis Tony Garnier", "desserte": "T4A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "619", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.864746298463213, 45.732965287748023 ] } }, -{ "type": "Feature", "properties": { "id": "39390", "nom": "Croizat - Paul Bert", "desserte": "T4A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "642", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.887578519518223, 45.700070455714823 ] } }, -{ "type": "Feature", "properties": { "id": "39514", "nom": "Les Vergers", "desserte": "15A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4540", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.81801920082889, 45.661996569276027 ] } }, -{ "type": "Feature", "properties": { "id": "40014", "nom": "Lycée Lumière", "desserte": "C16A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "612", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.863724671008098, 45.735190452061403 ] } }, -{ "type": "Feature", "properties": { "id": "40834", "nom": "Parc de l'Artillerie", "desserte": "ZI6A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4605", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.844922553267585, 45.728213331848181 ] } }, -{ "type": "Feature", "properties": { "id": "1738", "nom": "Les Ormes", "desserte": "20A:A,71A:A,S7A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "6056", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.821026331171423, 45.806730784738605 ] } }, -{ "type": "Feature", "properties": { "id": "1739", "nom": "Les Ormes", "desserte": "20A:R,71A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "6057", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.821008335442753, 45.806902205268933 ] } }, -{ "type": "Feature", "properties": { "id": "1740", "nom": "Les Pepinieres", "desserte": "55A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "6058", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.808369760353901, 45.75939407002312 ] } }, -{ "type": "Feature", "properties": { "id": "1741", "nom": "Les Pepinieres", "desserte": "55A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "6059", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.808964669611873, 45.759182946466943 ] } }, -{ "type": "Feature", "properties": { "id": "1764", "nom": "Les Sources - La Romaine", "desserte": "C14A:R,S15A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "6075", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.78412677452797, 45.789970608093199 ] } }, -{ "type": "Feature", "properties": { "id": "1765", "nom": "Corbas Les Taillis", "desserte": "54A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "6076", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.908017844185112, 45.66966224768818 ] } }, -{ "type": "Feature", "properties": { "id": "1768", "nom": "Les Terres St G. les Ollieres", "desserte": "72B:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "6077", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.705421832427615, 45.760965453580269 ] } }, -{ "type": "Feature", "properties": { "id": "1770", "nom": "Les Tilleuls", "desserte": "22A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "6078", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.803937344874893, 45.798484283189978 ] } }, -{ "type": "Feature", "properties": { "id": "1771", "nom": "Les Tilleuls", "desserte": "20A:R,22A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "6079", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.80341014112062, 45.797919790111195 ] } }, -{ "type": "Feature", "properties": { "id": "1774", "nom": "Les Tours", "desserte": "66A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "6080", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.796081318923109, 45.780798422297138 ] } }, -{ "type": "Feature", "properties": { "id": "1775", "nom": "Les Troenes", "desserte": "28A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "6081", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.991848501367816, 45.733402241850733 ] } }, -{ "type": "Feature", "properties": { "id": "1776", "nom": "Les Troenes", "desserte": "28A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "6082", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.991269152321943, 45.733649993509793 ] } }, -{ "type": "Feature", "properties": { "id": "2196", "nom": "Les Saules", "desserte": "3A:R,89A:R,GE4A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2369", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.758520692153182, 45.817393515224303 ] } }, -{ "type": "Feature", "properties": { "id": "2686", "nom": "Sathonay Mairie", "desserte": "9A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2633", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.874426712186886, 45.824008473011638 ] } }, -{ "type": "Feature", "properties": { "id": "2698", "nom": "Saxe - Bonnel", "desserte": "C9A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2641", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.845930516564737, 45.761603203927358 ] } }, -{ "type": "Feature", "properties": { "id": "2707", "nom": "Saxe - Lafayette", "desserte": "27A:A,27A:R,C4A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2645", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.844981190505605, 45.763910724930312 ] } }, -{ "type": "Feature", "properties": { "id": "2890", "nom": "St Romain", "desserte": "43A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2772", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.831079008342471, 45.840505740693189 ] } }, -{ "type": "Feature", "properties": { "id": "2930", "nom": "Ste Genevieve", "desserte": "C3A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2800", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.865010900701332, 45.763749476559887 ] } }, -{ "type": "Feature", "properties": { "id": "2937", "nom": "Tabagnon", "desserte": "72B:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2806", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.743755362066636, 45.75683775095326 ] } }, -{ "type": "Feature", "properties": { "id": "2939", "nom": "Tabagnon", "desserte": "72B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2805", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.743676315772565, 45.756794441681919 ] } }, -{ "type": "Feature", "properties": { "id": "2954", "nom": "Tassin Genetieres", "desserte": "5A:R,72B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2818", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.77205143885899, 45.758738685967053 ] } }, -{ "type": "Feature", "properties": { "id": "2989", "nom": "Titilleux", "desserte": "35A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2841", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.875234901187613, 45.712184467660542 ] } }, -{ "type": "Feature", "properties": { "id": "3005", "nom": "Trion", "desserte": "448A:A,55A:A,66A:A,90A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2860", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.812743825788764, 45.75857759282745 ] } }, -{ "type": "Feature", "properties": { "id": "3015", "nom": "Tupinier", "desserte": "C24B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2868", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.706802943038125, 45.74735421911101 ] } }, -{ "type": "Feature", "properties": { "id": "3113", "nom": "Vernaison place", "desserte": "15A:A,15A:R,18B:A,18B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2942", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.812065438971332, 45.648050628411255 ] } }, -{ "type": "Feature", "properties": { "id": "3124", "nom": "Victor Hugo", "desserte": "62A:A,87A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2954", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.949342111311572, 45.662792559569212 ] } }, -{ "type": "Feature", "properties": { "id": "3133", "nom": "Villeneuve", "desserte": "19A:A,S15A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2960", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.782970292495325, 45.785666309157641 ] } }, -{ "type": "Feature", "properties": { "id": "3149", "nom": "Vitton - Belges", "desserte": "C1A:A,C6B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2974", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.856485719311265, 45.77052105751752 ] } }, -{ "type": "Feature", "properties": { "id": "1239", "nom": "Jaricot", "desserte": "90A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1603", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.815967173111351, 45.759622587852874 ] } }, -{ "type": "Feature", "properties": { "id": "3175", "nom": "Z.I.C. Ouest", "desserte": "ZI4A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2985", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.865633561112571, 45.804430350895437 ] } }, -{ "type": "Feature", "properties": { "id": "10028", "nom": "Diligences", "desserte": "77A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3276", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.876974896976489, 45.850171677631764 ] } }, -{ "type": "Feature", "properties": { "id": "10037", "nom": "Chassieu Jean Perrin", "desserte": "76A:A,ZI5B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3283", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.971352195690458, 45.73031168648928 ] } }, -{ "type": "Feature", "properties": { "id": "10165", "nom": "Manissieux Pierre Blanche", "desserte": "26A:A,26A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3313", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.992011886806313, 45.705619095087343 ] } }, -{ "type": "Feature", "properties": { "id": "10166", "nom": "Flachet", "desserte": "69A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5552", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.889785943541018, 45.768013526230462 ] } }, -{ "type": "Feature", "properties": { "id": "10167", "nom": "Flachet", "desserte": "69A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5553", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.888773841561577, 45.768099545981663 ] } }, -{ "type": "Feature", "properties": { "id": "10223", "nom": "Curie", "desserte": "33A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3336", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.864981879243278, 45.823005806517401 ] } }, -{ "type": "Feature", "properties": { "id": "10243", "nom": "Dupeuble", "desserte": "69A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3352", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.891005479566649, 45.775717969877149 ] } }, -{ "type": "Feature", "properties": { "id": "10259", "nom": "Prairie", "desserte": "7A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3360", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.902550703276055, 45.774752649316973 ] } }, -{ "type": "Feature", "properties": { "id": "10276", "nom": "Chauderaie", "desserte": "14B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3366", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.772057748499636, 45.743193922968807 ] } }, -{ "type": "Feature", "properties": { "id": "10277", "nom": "Chauderaie", "desserte": "14B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3367", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.771990348996623, 45.743123378118341 ] } }, -{ "type": "Feature", "properties": { "id": "10339", "nom": "Maison de l'Aqueduc", "desserte": "14B:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3392", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.778662148191011, 45.726893712468829 ] } }, -{ "type": "Feature", "properties": { "id": "10360", "nom": "Elisee Reclus", "desserte": "79A:R,ZI3A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1391", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.936337763579306, 45.747691133809759 ] } }, -{ "type": "Feature", "properties": { "id": "10361", "nom": "Roosevelt C.Commercial", "desserte": "28A:A,52A:R,79A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3400", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.93355488803932, 45.74811561111531 ] } }, -{ "type": "Feature", "properties": { "id": "10368", "nom": "Decines Jonquilles", "desserte": "79A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3405", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.948814381598964, 45.755106830375681 ] } }, -{ "type": "Feature", "properties": { "id": "10376", "nom": "Rue de France - IUT", "desserte": "69A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5554", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.886043796314302, 45.768305589773675 ] } }, -{ "type": "Feature", "properties": { "id": "10402", "nom": "Boileau", "desserte": "85A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3417", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 5.013846885960087, 45.778149921324967 ] } }, -{ "type": "Feature", "properties": { "id": "10437", "nom": "Apollinaire - Bourbonnais", "desserte": "19A:A,3A:A,66A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1194", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.795697777026082, 45.772795880672696 ] } }, -{ "type": "Feature", "properties": { "id": "10529", "nom": "Belle Croix", "desserte": "21A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3475", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.769596066254743, 45.84309525484106 ] } }, -{ "type": "Feature", "properties": { "id": "10607", "nom": "Valmy", "desserte": "C6B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "214", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.80596630484546, 45.775180850352243 ] } }, -{ "type": "Feature", "properties": { "id": "10637", "nom": "Pont Churchill RD", "desserte": "38A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2493", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.8410393466088, 45.779588809332601 ] } }, -{ "type": "Feature", "properties": { "id": "11032", "nom": "Savoie", "desserte": "50A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3583", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.98187369205596, 45.700511683828651 ] } }, -{ "type": "Feature", "properties": { "id": "10460", "nom": "Montee de la Boucle", "desserte": "38A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3448", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.838640921577332, 45.782009587857544 ] } }, -{ "type": "Feature", "properties": { "id": "10520", "nom": "Pont Kitchener", "desserte": "448A:A,46A:R,49A:R,55A:R,63A:R,8A:R,C19A:R,C20A:R,C21A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "180", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.823815440130632, 45.750321844811971 ] } }, -{ "type": "Feature", "properties": { "id": "11110", "nom": "Le Biezin", "desserte": "76A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3615", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.971969180462222, 45.758229354674832 ] } }, -{ "type": "Feature", "properties": { "id": "11111", "nom": "Le Biezin", "desserte": "76A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3614", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.972348086344399, 45.758085434748338 ] } }, -{ "type": "Feature", "properties": { "id": "11112", "nom": "Les Regales", "desserte": "76A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3618", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.973479150489032, 45.749219225970094 ] } }, -{ "type": "Feature", "properties": { "id": "11191", "nom": "Carmagnole", "desserte": "68B:R,C15A:A,C8A:A,ZI5B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3620", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.920988919170091, 45.759522434100333 ] } }, -{ "type": "Feature", "properties": { "id": "11209", "nom": "Pierre Gay", "desserte": "76A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3612", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.973368300085714, 45.76032090235153 ] } }, -{ "type": "Feature", "properties": { "id": "11233", "nom": "18 Juin 1940", "desserte": "85A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3628", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.990754362443306, 45.768552941843126 ] } }, -{ "type": "Feature", "properties": { "id": "11285", "nom": "College Jean Vilar", "desserte": "7A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3640", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.903436639384473, 45.77857601419305 ] } }, -{ "type": "Feature", "properties": { "id": "11322", "nom": "Parilly", "desserte": "111A:A,111A:R,296:A,79A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "145", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.887833281680354, 45.720089821216092 ] } }, -{ "type": "Feature", "properties": { "id": "11328", "nom": "Cite SNCF", "desserte": "93A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3653", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.878637698309999, 45.703232173690296 ] } }, -{ "type": "Feature", "properties": { "id": "11336", "nom": "Berliet Porte E", "desserte": "62A:R,93A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3657", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.89096360456079, 45.704743386587786 ] } }, -{ "type": "Feature", "properties": { "id": "11355", "nom": "Marietton - S. Apollinaire", "desserte": "19A:A,3A:A,5A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3663", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.793841053999674, 45.774716216027542 ] } }, -{ "type": "Feature", "properties": { "id": "11375", "nom": "Albert Ferrus", "desserte": "87A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3670", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.942424758372383, 45.664465867966328 ] } }, -{ "type": "Feature", "properties": { "id": "11391", "nom": "La Colline", "desserte": "S4A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3671", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.817537000731507, 45.779606403289954 ] } }, -{ "type": "Feature", "properties": { "id": "11421", "nom": "Rue de Prandieres", "desserte": "S14A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3683", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.836409217502287, 45.88548386262778 ] } }, -{ "type": "Feature", "properties": { "id": "11748", "nom": "Mions Croix Rouge", "desserte": "296:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3107", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.954002052921098, 45.652521063721203 ] } }, -{ "type": "Feature", "properties": { "id": "11839", "nom": "Decines Bascule", "desserte": "79A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1294", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.961689179942549, 45.771063488320692 ] } }, -{ "type": "Feature", "properties": { "id": "11842", "nom": "Aragon", "desserte": "C8A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3129", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.929392747425624, 45.782300567257522 ] } }, -{ "type": "Feature", "properties": { "id": "11860", "nom": "Quai Aulagne", "desserte": "ZI6A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3138", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.845146823362029, 45.704085243136518 ] } }, -{ "type": "Feature", "properties": { "id": "11882", "nom": "Musee d'Art Contemporain", "desserte": "C1A:A,C4A:A,C5A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3153", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.853127066361228, 45.783981243379358 ] } }, -{ "type": "Feature", "properties": { "id": "11893", "nom": "Berthet - Loucheur", "desserte": "19A:A,66A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3155", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.804195904666872, 45.768117915193777 ] } }, -{ "type": "Feature", "properties": { "id": "11921", "nom": "Parc Tete d'Or-Churchill", "desserte": "C5A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2359", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.844854830168841, 45.778063460039519 ] } }, -{ "type": "Feature", "properties": { "id": "12009", "nom": "Rue des Balmes", "desserte": "S10A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3187", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.835884045430552, 45.80145958233436 ] } }, -{ "type": "Feature", "properties": { "id": "30158", "nom": "Hénon", "desserte": "303:R", "pmr": "t", "ascenseur": "t", "escalator": "t", "gid": "105", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.827602342770256, 45.779272430022992 ] } }, -{ "type": "Feature", "properties": { "id": "30189", "nom": "Grange Blanche", "desserte": "304:A", "pmr": "t", "ascenseur": "t", "escalator": "t", "gid": "73", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.878994139783719, 45.742948961738747 ] } }, -{ "type": "Feature", "properties": { "id": "32119", "nom": "Part-Dieu - Servient", "desserte": "T1A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "426", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.853810087510666, 45.760756757818953 ] } }, -{ "type": "Feature", "properties": { "id": "32150", "nom": "Villon", "desserte": "T2:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "481", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.863306150898174, 45.738379923138559 ] } }, -{ "type": "Feature", "properties": { "id": "32175", "nom": "Europe - Université", "desserte": "T2:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "490", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.918144918060771, 45.719654326012297 ] } }, -{ "type": "Feature", "properties": { "id": "32203", "nom": "Decines Mairie", "desserte": "79A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3868", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.956202116073944, 45.768198845843592 ] } }, -{ "type": "Feature", "properties": { "id": "32299", "nom": "Fort de Bron", "desserte": "C15A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1430", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.917713696221344, 45.731378244596399 ] } }, -{ "type": "Feature", "properties": { "id": "32303", "nom": "Bel Air - Les Brosses", "desserte": "C17A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "555", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.909455208315194, 45.758185068113505 ] } }, -{ "type": "Feature", "properties": { "id": "32343", "nom": "Joliot Curie", "desserte": "65A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1620", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.787925588255873, 45.754540747168072 ] } }, -{ "type": "Feature", "properties": { "id": "32344", "nom": "Joliot Curie", "desserte": "65A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1623", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.787581956135413, 45.754620258828751 ] } }, -{ "type": "Feature", "properties": { "id": "32362", "nom": "Champagne Cimetiere", "desserte": "66A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3852", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.785842614884597, 45.794406723383176 ] } }, -{ "type": "Feature", "properties": { "id": "32363", "nom": "Champagne Verte Colline", "desserte": "66A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3879", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.784908615651621, 45.797127396311382 ] } }, -{ "type": "Feature", "properties": { "id": "32445", "nom": "St Agnan", "desserte": "296:A,C25B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2688", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.863184456838869, 45.740783383672131 ] } }, -{ "type": "Feature", "properties": { "id": "32446", "nom": "Marius Berliet", "desserte": "C25B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3782", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.8597758363147, 45.742984359913429 ] } }, -{ "type": "Feature", "properties": { "id": "32447", "nom": "Lycee Colbert", "desserte": "296:A,C25B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "751", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.859260373496443, 45.74602018130566 ] } }, -{ "type": "Feature", "properties": { "id": "32482", "nom": "Jean Macé", "desserte": "C14A:A,C14A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "297", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.842293258518624, 45.746121389973212 ] } }, -{ "type": "Feature", "properties": { "id": "32502", "nom": "Gare Part-Dieu Vivier Merle", "desserte": "C6B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "517", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.857909932531595, 45.762306945388964 ] } }, -{ "type": "Feature", "properties": { "id": "32582", "nom": "Porte des Alpes", "desserte": "T2:A,T2:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "346", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.925804277138107, 45.71843140377679 ] } }, -{ "type": "Feature", "properties": { "id": "32743", "nom": "Sacre Coeur", "desserte": "C16A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3381", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.867753993619796, 45.759079010602619 ] } }, -{ "type": "Feature", "properties": { "id": "33210", "nom": "Alfred de Vigny", "desserte": "T2:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "445", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.93612604166862, 45.699623034981073 ] } }, -{ "type": "Feature", "properties": { "id": "33211", "nom": "St Priest Hôtel de Ville", "desserte": "T2:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "441", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.936854341146098, 45.695018780892056 ] } }, -{ "type": "Feature", "properties": { "id": "43026", "nom": "3eme Millenaire", "desserte": "93A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4781", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.928578952451566, 45.716725467925443 ] } }, -{ "type": "Feature", "properties": { "id": "43028", "nom": "Jacques Monod", "desserte": "93A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4784", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.931998858714729, 45.71485510937994 ] } }, -{ "type": "Feature", "properties": { "id": "43029", "nom": "Parc Technologique", "desserte": "93A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4785", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.934887616188306, 45.711808751295614 ] } }, -{ "type": "Feature", "properties": { "id": "10818", "nom": "Pont Morand RG", "desserte": "171:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2546", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.841061297085723, 45.769335944363654 ] } }, -{ "type": "Feature", "properties": { "id": "11838", "nom": "Decines Bascule", "desserte": "79A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1293", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.962328608348219, 45.770985527850982 ] } }, -{ "type": "Feature", "properties": { "id": "12019", "nom": "La Boisserie", "desserte": "S10A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3192", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.828642373723451, 45.801260403319191 ] } }, -{ "type": "Feature", "properties": { "id": "12025", "nom": "Chemin des Fonts", "desserte": "49A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3196", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.796652023469357, 45.738625053802679 ] } }, -{ "type": "Feature", "properties": { "id": "12036", "nom": "Dardilly St Joseph", "desserte": "3A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3200", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.755428247181807, 45.803868667947476 ] } }, -{ "type": "Feature", "properties": { "id": "12314", "nom": "Jean Macé", "desserte": "C12A:A,C12A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "293", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.841905393537221, 45.745508967105742 ] } }, -{ "type": "Feature", "properties": { "id": "30391", "nom": "Duchere Chateau", "desserte": "S11A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1333", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.793625800235632, 45.780546136000886 ] } }, -{ "type": "Feature", "properties": { "id": "30459", "nom": "Perrache", "desserte": "301A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "155", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.827002067752674, 45.749754417247679 ] } }, -{ "type": "Feature", "properties": { "id": "30533", "nom": "Yvours", "desserte": "15A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2981", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.825904749613603, 45.690211187251521 ] } }, -{ "type": "Feature", "properties": { "id": "33485", "nom": "Le Moulin", "desserte": "15A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3925", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.823464425486778, 45.695044929856067 ] } }, -{ "type": "Feature", "properties": { "id": "33525", "nom": "Rouget de l'Isle", "desserte": "25A:R,C13A:A,C16A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2601", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.866844414258771, 45.754400849729223 ] } }, -{ "type": "Feature", "properties": { "id": "33545", "nom": "Guillotière - Gabriel Péri", "desserte": "C9A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "100", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.842964249688054, 45.755925171417289 ] } }, -{ "type": "Feature", "properties": { "id": "33565", "nom": "Feyzin Chateau de l'Isle", "desserte": "60A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1411", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.850715863999598, 45.672150299884073 ] } }, -{ "type": "Feature", "properties": { "id": "33645", "nom": "Croix-Rousse Nord", "desserte": "C18A:A,C18A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3926", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.823971256738868, 45.783919650588693 ] } }, -{ "type": "Feature", "properties": { "id": "34109", "nom": "Chassieu Place", "desserte": "76A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "20", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.968816450622253, 45.737761540314253 ] } }, -{ "type": "Feature", "properties": { "id": "34111", "nom": "Castors", "desserte": "49A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3934", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.808715775528793, 45.752212593908091 ] } }, -{ "type": "Feature", "properties": { "id": "34112", "nom": "Achard", "desserte": "49A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3937", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.808973121323691, 45.748210451239231 ] } }, -{ "type": "Feature", "properties": { "id": "34150", "nom": "J.Jaures - Pommier", "desserte": "95A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1594", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 5.021289209054929, 45.778017313068922 ] } }, -{ "type": "Feature", "properties": { "id": "34151", "nom": "Jonage Chateau des Marres", "desserte": "95A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1624", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 5.060300561060076, 45.799925517463407 ] } }, -{ "type": "Feature", "properties": { "id": "36146", "nom": "Auvergne", "desserte": "67A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4084", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 5.017679633543144, 45.761242986409279 ] } }, -{ "type": "Feature", "properties": { "id": "36201", "nom": "La Rochere", "desserte": "78B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5915", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.79360694282564, 45.609960009731488 ] } }, -{ "type": "Feature", "properties": { "id": "36214", "nom": "Maison", "desserte": "80A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4109", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.779576306239941, 45.609078955517823 ] } }, -{ "type": "Feature", "properties": { "id": "36215", "nom": "Maison", "desserte": "80A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4110", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.779263175310682, 45.609247803285228 ] } }, -{ "type": "Feature", "properties": { "id": "36218", "nom": "Grigny Pressense", "desserte": "80A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4114", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.779120123503478, 45.6031213627803 ] } }, -{ "type": "Feature", "properties": { "id": "36229", "nom": "Les Vernes - Lenine", "desserte": "80A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4125", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.764295207661858, 45.6077462376293 ] } }, -{ "type": "Feature", "properties": { "id": "36232", "nom": "Lycee Picasso", "desserte": "80A:A,81A:A,81A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4130", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.762792216746114, 45.601856320783305 ] } }, -{ "type": "Feature", "properties": { "id": "36252", "nom": "Givors Place Pasteur", "desserte": "80A:A,80A:R,81A:A,81A:R,R3A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4151", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.769133926341693, 45.585157124669514 ] } }, -{ "type": "Feature", "properties": { "id": "40234", "nom": "Hopital Lyon Sud", "desserte": "88B:A,88B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1567", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.806194751146283, 45.699765081938132 ] } }, -{ "type": "Feature", "properties": { "id": "10993", "nom": "Varennes", "desserte": "43A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3567", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.854468289481385, 45.819461287029455 ] } }, -{ "type": "Feature", "properties": { "id": "10996", "nom": "Illhaeusern", "desserte": "43A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3568", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.854728799544635, 45.822056832379012 ] } }, -{ "type": "Feature", "properties": { "id": "11866", "nom": "Vallee de la Chimie", "desserte": "ZI6A:A,ZI6A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3142", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.846831738766028, 45.686657247983504 ] } }, -{ "type": "Feature", "properties": { "id": "11972", "nom": "Irigny Mairie", "desserte": "15A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1584", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.821008406085851, 45.672776641994538 ] } }, -{ "type": "Feature", "properties": { "id": "12017", "nom": "Fabregue", "desserte": "S10A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3190", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.82414724163133, 45.798902701219525 ] } }, -{ "type": "Feature", "properties": { "id": "12021", "nom": "Chauderasses", "desserte": "C20A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3194", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.781011131090955, 45.7444844289491 ] } }, -{ "type": "Feature", "properties": { "id": "12051", "nom": "Duchere Av.de Champagne", "desserte": "21A:A,61A:A,S11A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3207", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.797430729205244, 45.790255993027962 ] } }, -{ "type": "Feature", "properties": { "id": "12232", "nom": "Rue du Parc", "desserte": "26A:R,79A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3729", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.890769421381113, 45.730194501853006 ] } }, -{ "type": "Feature", "properties": { "id": "30446", "nom": "Garibaldi", "desserte": "304:R", "pmr": "t", "ascenseur": "t", "escalator": "t", "gid": "302", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.85420996263271, 45.751380391214155 ] } }, -{ "type": "Feature", "properties": { "id": "34211", "nom": "Guilloux", "desserte": "17B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3939", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.807074487608809, 45.688737406308277 ] } }, -{ "type": "Feature", "properties": { "id": "34214", "nom": "Citadelle", "desserte": "17B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3942", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.805070615388797, 45.687296365176607 ] } }, -{ "type": "Feature", "properties": { "id": "34232", "nom": "Clinique Mon Repos", "desserte": "5A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3945", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.783710995383336, 45.771086528898678 ] } }, -{ "type": "Feature", "properties": { "id": "34233", "nom": "Clinique Mon Repos", "desserte": "5A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3944", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.783835091531959, 45.770984813216742 ] } }, -{ "type": "Feature", "properties": { "id": "34234", "nom": "Clinique Val d'Ouest", "desserte": "5A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3947", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.784713972940448, 45.769057440528513 ] } }, -{ "type": "Feature", "properties": { "id": "34235", "nom": "Clinique Val d'Ouest", "desserte": "5A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3946", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.784435247203894, 45.769441559717315 ] } }, -{ "type": "Feature", "properties": { "id": "34237", "nom": "Duchere Castilla", "desserte": "S11A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3948", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.796466581364865, 45.788836940028979 ] } }, -{ "type": "Feature", "properties": { "id": "34238", "nom": "Duchere Castilla", "desserte": "S11A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3949", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.796807618208024, 45.788982488904423 ] } }, -{ "type": "Feature", "properties": { "id": "34291", "nom": "Jean Giono", "desserte": "17B:A,S9A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1605", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.801102980654624, 45.690182963290766 ] } }, -{ "type": "Feature", "properties": { "id": "34456", "nom": "Henaff - Charbonnier", "desserte": "ZI1A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3966", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.907819254239943, 45.690991154049684 ] } }, -{ "type": "Feature", "properties": { "id": "34457", "nom": "Henaff - Charbonnier", "desserte": "ZI1A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3965", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.907314802318648, 45.691740837417662 ] } }, -{ "type": "Feature", "properties": { "id": "34458", "nom": "Dauphine - Charbonnier", "desserte": "ZI1A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3968", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.910457713549323, 45.685061685538074 ] } }, -{ "type": "Feature", "properties": { "id": "34459", "nom": "Dauphine - Charbonnier", "desserte": "ZI1A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3967", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.911125214739105, 45.685604448878777 ] } }, -{ "type": "Feature", "properties": { "id": "34495", "nom": "Z.I. Le Carreau", "desserte": "54A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3969", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.894438116460385, 45.680531550206972 ] } }, -{ "type": "Feature", "properties": { "id": "34533", "nom": "Parc des Corbeges", "desserte": "ZI1A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3972", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.931496643105033, 45.684027632061401 ] } }, -{ "type": "Feature", "properties": { "id": "34534", "nom": "Parc des Corbeges", "desserte": "ZI1A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3971", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.931105313480283, 45.684171711306078 ] } }, -{ "type": "Feature", "properties": { "id": "34535", "nom": "Esplanade des Arts", "desserte": "62A:A,C25B:R,ZI8A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "436", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.941047666319495, 45.693995926591157 ] } }, -{ "type": "Feature", "properties": { "id": "11240", "nom": "Marengo", "desserte": "69A:R,C9A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3388", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.876292258109332, 45.758787162126204 ] } }, -{ "type": "Feature", "properties": { "id": "11975", "nom": "Lycee Blaise Pascal", "desserte": "98A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3171", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.751084717550635, 45.765627222005051 ] } }, -{ "type": "Feature", "properties": { "id": "12046", "nom": "Moulin Berger", "desserte": "89A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3205", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.767225161845888, 45.801435830345696 ] } }, -{ "type": "Feature", "properties": { "id": "12110", "nom": "Barolles Gendarmerie", "desserte": "17B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3229", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.785767868937453, 45.686423546822233 ] } }, -{ "type": "Feature", "properties": { "id": "30008", "nom": "Bellecour Charite", "desserte": "15A:A,15A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "902", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.833334012380642, 45.75607829218059 ] } }, -{ "type": "Feature", "properties": { "id": "30188", "nom": "Laennec", "desserte": "304:R", "pmr": "t", "ascenseur": "t", "escalator": "t", "gid": "123", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.886260288054863, 45.738662871766877 ] } }, -{ "type": "Feature", "properties": { "id": "30202", "nom": "Bellecour", "desserte": "304:R", "pmr": "t", "ascenseur": "t", "escalator": "t", "gid": "9", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.833836066564249, 45.756711067981925 ] } }, -{ "type": "Feature", "properties": { "id": "31345", "nom": "Romarin", "desserte": "S12A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3839", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.834356119737027, 45.768396159032484 ] } }, -{ "type": "Feature", "properties": { "id": "31622", "nom": "Les Saules", "desserte": "3A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2368", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.759088577594275, 45.818011343828452 ] } }, -{ "type": "Feature", "properties": { "id": "31764", "nom": "Monge", "desserte": "25A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2222", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.910097978669612, 45.750483118900654 ] } }, -{ "type": "Feature", "properties": { "id": "31982", "nom": "La Grappe d'Or", "desserte": "43A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3865", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.843256256914666, 45.902574176428111 ] } }, -{ "type": "Feature", "properties": { "id": "34657", "nom": "Moulin d'Arche", "desserte": "23A:A,84A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3988", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.807802944363821, 45.802890880951004 ] } }, -{ "type": "Feature", "properties": { "id": "34674", "nom": "J. B. Simon", "desserte": "40A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3990", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.857358403063766, 45.826057483904897 ] } }, -{ "type": "Feature", "properties": { "id": "34753", "nom": "Verdun - Rambaud", "desserte": "S1A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3760", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.822709836722674, 45.750040299592435 ] } }, -{ "type": "Feature", "properties": { "id": "34814", "nom": "Casimir-Perier", "desserte": "63A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3996", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.824236673919459, 45.741437410469047 ] } }, -{ "type": "Feature", "properties": { "id": "34874", "nom": "Hôtel de Région Montrochet", "desserte": "T1A:A,T1A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "506", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.819005838708239, 45.740625398592073 ] } }, -{ "type": "Feature", "properties": { "id": "34934", "nom": "Hôtel de Ville - Louis Pradel", "desserte": "19A:A,19A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "110", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.836082399702268, 45.766476496847162 ] } }, -{ "type": "Feature", "properties": { "id": "35034", "nom": "St Priest Salengro", "desserte": "296:R,ZI1A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3954", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.936493972621734, 45.690590996385396 ] } }, -{ "type": "Feature", "properties": { "id": "35094", "nom": "Musée des Confluences", "desserte": "T1A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "774", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.818916172247386, 45.733660901156171 ] } }, -{ "type": "Feature", "properties": { "id": "35134", "nom": "Les Baysses", "desserte": "84A:A,R2A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4008", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.811606626068738, 45.860234699251855 ] } }, -{ "type": "Feature", "properties": { "id": "35135", "nom": "Les Baysses", "desserte": "84A:R,R2A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4007", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.810874139021622, 45.859989782291024 ] } }, -{ "type": "Feature", "properties": { "id": "35254", "nom": "Marcy l'Etoile Campus Merieux", "desserte": "98A:A,98A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4010", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.705539720310106, 45.777740332630174 ] } }, -{ "type": "Feature", "properties": { "id": "35257", "nom": "BioMerieux", "desserte": "98A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4012", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.709557469253738, 45.780823774795948 ] } }, -{ "type": "Feature", "properties": { "id": "35334", "nom": "GAEC de la Grive", "desserte": "77A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4016", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.880681790544809, 45.857063987800018 ] } }, -{ "type": "Feature", "properties": { "id": "35335", "nom": "GAEC de la Grive", "desserte": "77A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4015", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.880537730139157, 45.857013238187562 ] } }, -{ "type": "Feature", "properties": { "id": "35354", "nom": "Verlaine - 4 aout", "desserte": "C26A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4017", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.881480293609568, 45.764745572273469 ] } }, -{ "type": "Feature", "properties": { "id": "35355", "nom": "Verlaine - 4 aout", "desserte": "69A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4018", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.880502953388451, 45.76419163601966 ] } }, -{ "type": "Feature", "properties": { "id": "1812", "nom": "Louis Braille", "desserte": "C25B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2088", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.949556742668387, 45.696012364528563 ] } }, -{ "type": "Feature", "properties": { "id": "11428", "nom": "St Germain Cites", "desserte": "21A:R,96A:A,96A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3688", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.800903535670057, 45.889300550086148 ] } }, -{ "type": "Feature", "properties": { "id": "12218", "nom": "Jusseaud", "desserte": "49A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3741", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.806116663255901, 45.747301218877013 ] } }, -{ "type": "Feature", "properties": { "id": "30027", "nom": "Bron Liberation", "desserte": "C15A:R,C17A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "973", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.901540629672537, 45.730200840517092 ] } }, -{ "type": "Feature", "properties": { "id": "30197", "nom": "Saxe - Gambetta", "desserte": "304:A", "pmr": "t", "ascenseur": "t", "escalator": "t", "gid": "197", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.847152874493243, 45.75388713435521 ] } }, -{ "type": "Feature", "properties": { "id": "30201", "nom": "Bellecour", "desserte": "304:A", "pmr": "t", "ascenseur": "t", "escalator": "t", "gid": "6", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.833763481653301, 45.756570914331974 ] } }, -{ "type": "Feature", "properties": { "id": "30416", "nom": "Le Colombier", "desserte": "S2A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3794", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.715410055629309, 45.811446694135363 ] } }, -{ "type": "Feature", "properties": { "id": "32108", "nom": "Saint-André", "desserte": "T1A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "469", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.841004617441092, 45.752909314511101 ] } }, -{ "type": "Feature", "properties": { "id": "32109", "nom": "Saint-André", "desserte": "T1A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "470", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.841085241540569, 45.752881142259653 ] } }, -{ "type": "Feature", "properties": { "id": "32118", "nom": "Part-Dieu - Servient", "desserte": "T1A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "425", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.853829413530466, 45.760650740015699 ] } }, -{ "type": "Feature", "properties": { "id": "32171", "nom": "Rebufer", "desserte": "T2:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "411", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.915685652674185, 45.727490804403153 ] } }, -{ "type": "Feature", "properties": { "id": "35434", "nom": "Marc-Antoine Petit", "desserte": "S1A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4025", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.824633454493555, 45.74538010389206 ] } }, -{ "type": "Feature", "properties": { "id": "35455", "nom": "St Priest Egalite", "desserte": "76A:A,R5A:A,ZI8A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4028", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.946799864015374, 45.690153527136438 ] } }, -{ "type": "Feature", "properties": { "id": "35458", "nom": "Corbas G.Brassens", "desserte": "54A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4030", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.905132050873658, 45.667523074653282 ] } }, -{ "type": "Feature", "properties": { "id": "35459", "nom": "Corbas Condorcet", "desserte": "54A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3484", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.900674924413561, 45.660027977254757 ] } }, -{ "type": "Feature", "properties": { "id": "35460", "nom": "Corbas Condorcet", "desserte": "54A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3485", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.900638423998436, 45.660622901968338 ] } }, -{ "type": "Feature", "properties": { "id": "35477", "nom": "Corbas Les Taillis", "desserte": "76A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2054", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.909873181549499, 45.671725997861515 ] } }, -{ "type": "Feature", "properties": { "id": "35483", "nom": "La Fouillouse Acacias", "desserte": "ZI8A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4036", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.976818359734109, 45.685692496121732 ] } }, -{ "type": "Feature", "properties": { "id": "35494", "nom": "Vernaison place", "desserte": "15A:A,15A:R,18B:A,18B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4037", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.811978520344135, 45.648115555751197 ] } }, -{ "type": "Feature", "properties": { "id": "35514", "nom": "Pavillon Urgences", "desserte": "88B:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4038", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.807061229717141, 45.700754112567616 ] } }, -{ "type": "Feature", "properties": { "id": "35584", "nom": "Pont de Neuville RG", "desserte": "43A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4045", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.837779111486459, 45.878207351102795 ] } }, -{ "type": "Feature", "properties": { "id": "35585", "nom": "Pont de Neuville RG", "desserte": "43A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4046", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.838334055344788, 45.877375890891443 ] } }, -{ "type": "Feature", "properties": { "id": "35659", "nom": "Gare Part-Dieu Villette", "desserte": "T3:A,T4A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "537", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.861878344637451, 45.760215513141787 ] } }, -{ "type": "Feature", "properties": { "id": "35660", "nom": "Dauphiné -Lacassagne", "desserte": "T3:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "548", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.868816223087722, 45.752865595792784 ] } }, -{ "type": "Feature", "properties": { "id": "35661", "nom": "Dauphiné -Lacassagne", "desserte": "T3:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "549", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.868845685340309, 45.752977717158394 ] } }, -{ "type": "Feature", "properties": { "id": "30205", "nom": "Gorge de Loup", "desserte": "304:A", "pmr": "t", "ascenseur": "t", "escalator": "t", "gid": "58", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.805550391824348, 45.766428070798675 ] } }, -{ "type": "Feature", "properties": { "id": "30207", "nom": "Valmy", "desserte": "304:A", "pmr": "t", "ascenseur": "t", "escalator": "t", "gid": "211", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.805532105557592, 45.774781028005343 ] } }, -{ "type": "Feature", "properties": { "id": "30208", "nom": "Valmy", "desserte": "304:R", "pmr": "t", "ascenseur": "t", "escalator": "t", "gid": "215", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.805330386644721, 45.774768990859727 ] } }, -{ "type": "Feature", "properties": { "id": "30303", "nom": "Les Alpes", "desserte": "ZI3A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3765", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.93727123917505, 45.780498150609468 ] } }, -{ "type": "Feature", "properties": { "id": "30478", "nom": "Valdo - Charcot", "desserte": "90A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3811", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.793347274489366, 45.749831698777086 ] } }, -{ "type": "Feature", "properties": { "id": "30560", "nom": "Parc de l'Hippodrome", "desserte": "S2A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3798", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.719085889693538, 45.807759484281227 ] } }, -{ "type": "Feature", "properties": { "id": "30573", "nom": "Genay", "desserte": "43A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3679", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.841771995425214, 45.898497545248524 ] } }, -{ "type": "Feature", "properties": { "id": "30683", "nom": "Bron De Lattre", "desserte": "C15A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "967", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.91745921090161, 45.734174540370347 ] } }, -{ "type": "Feature", "properties": { "id": "31044", "nom": "Valdo", "desserte": "65A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2879", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.784306195279154, 45.750065229186902 ] } }, -{ "type": "Feature", "properties": { "id": "35666", "nom": "Bel Air - Les Brosses", "desserte": "T3:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "556", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.910474828508357, 45.758382413305455 ] } }, -{ "type": "Feature", "properties": { "id": "35667", "nom": "Bel Air - Les Brosses", "desserte": "T3:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "557", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.910450819111944, 45.758460196002034 ] } }, -{ "type": "Feature", "properties": { "id": "35668", "nom": "Vaulx-en-Velin La Soie", "desserte": "T3:A,T3:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "560", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.9221995255175, 45.760971705036958 ] } }, -{ "type": "Feature", "properties": { "id": "35669", "nom": "Vaulx-en-Velin La Soie", "desserte": "T3:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "561", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.922110594322058, 45.761137219833607 ] } }, -{ "type": "Feature", "properties": { "id": "35672", "nom": "Décines Grand Large", "desserte": "T3:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "581", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.975946815194568, 45.774686812993735 ] } }, -{ "type": "Feature", "properties": { "id": "35673", "nom": "Décines Grand Large", "desserte": "T3:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "582", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.975997266347226, 45.774757010931168 ] } }, -{ "type": "Feature", "properties": { "id": "35674", "nom": "Meyzieu Gare", "desserte": "T3:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "585", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.99889894476435, 45.771573785436601 ] } }, -{ "type": "Feature", "properties": { "id": "35675", "nom": "Meyzieu Gare", "desserte": "T3:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "586", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.998938080631594, 45.771725888332583 ] } }, -{ "type": "Feature", "properties": { "id": "35979", "nom": "Parc Chambovet", "desserte": "C8A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4055", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.89659189818612, 45.747605454126983 ] } }, -{ "type": "Feature", "properties": { "id": "36001", "nom": "Mions Rte Corbas", "desserte": "87A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4067", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.938406292463697, 45.665549394465664 ] } }, -{ "type": "Feature", "properties": { "id": "36034", "nom": "College des Charpennes", "desserte": "37A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4069", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.86984280068841, 45.774001051609055 ] } }, -{ "type": "Feature", "properties": { "id": "36055", "nom": "Rue Pollet (Lycee)", "desserte": "97A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4071", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.847235445757128, 45.876448469863114 ] } }, -{ "type": "Feature", "properties": { "id": "36056", "nom": "Rue Pollet (Lycee)", "desserte": "97A:R,S14A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4070", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.847026796071119, 45.876417301063114 ] } }, -{ "type": "Feature", "properties": { "id": "36095", "nom": "Décines Grand Large", "desserte": "16A:R,57A:R,76A:R,79A:R,85A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "580", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.975400475332996, 45.774801910724065 ] } }, -{ "type": "Feature", "properties": { "id": "36115", "nom": "Meyzieu Z.i.", "desserte": "28A:A,28A:R,29A:A,R1B:A,ZI2A:A,ZI2A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "591", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 5.030426870384801, 45.76837351867961 ] } }, -{ "type": "Feature", "properties": { "id": "36134", "nom": "Z.I. Terray - Schweitzer", "desserte": "ZI2A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4073", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 5.029184922948827, 45.770329715111117 ] } }, -{ "type": "Feature", "properties": { "id": "36135", "nom": "Z.I. Nord", "desserte": "ZI2A:A,ZI2A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4074", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 5.022648553106674, 45.778191861859177 ] } }, -{ "type": "Feature", "properties": { "id": "36136", "nom": "Z.I. Sud", "desserte": "ZI2A:A,ZI2A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4075", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 5.019601733980983, 45.767426386537643 ] } }, -{ "type": "Feature", "properties": { "id": "12015", "nom": "Simondan", "desserte": "S10A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3188", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.831532631649512, 45.80114224631388 ] } }, -{ "type": "Feature", "properties": { "id": "30572", "nom": "Genay", "desserte": "43A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3680", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.842007465328092, 45.898750191880744 ] } }, -{ "type": "Feature", "properties": { "id": "31582", "nom": "Mont Louis", "desserte": "66A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2272", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.787872465397128, 45.790582006897765 ] } }, -{ "type": "Feature", "properties": { "id": "31688", "nom": "Bron Liberation", "desserte": "24A:R,79A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "975", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.902441176716768, 45.729667175015408 ] } }, -{ "type": "Feature", "properties": { "id": "39387", "nom": "La Borelle", "desserte": "T4A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "636", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.882190309801667, 45.711166321852019 ] } }, -{ "type": "Feature", "properties": { "id": "39402", "nom": "Maurice Thorez", "desserte": "T4A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "667", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.86330022859781, 45.699890326157202 ] } }, -{ "type": "Feature", "properties": { "id": "39403", "nom": "Maurice Thorez", "desserte": "T4A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "668", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.863295471175703, 45.699814642595008 ] } }, -{ "type": "Feature", "properties": { "id": "39409", "nom": "Herriot - Cagne", "desserte": "T4A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "654", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.875457614305988, 45.693730885534116 ] } }, -{ "type": "Feature", "properties": { "id": "39410", "nom": "Darnaise", "desserte": "T4A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "672", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.864284247044647, 45.692615015305279 ] } }, -{ "type": "Feature", "properties": { "id": "39574", "nom": "Corbas Les Balmes", "desserte": "76A:A,76A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4033", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.894255828808276, 45.664990374009292 ] } }, -{ "type": "Feature", "properties": { "id": "39576", "nom": "Jacques Prevert", "desserte": "111A:R,54A:R,76A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3483", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.895095848514655, 45.662621851282289 ] } }, -{ "type": "Feature", "properties": { "id": "39577", "nom": "Corbas Les Bruyeres", "desserte": "76A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4544", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.902071071415646, 45.65941093640123 ] } }, -{ "type": "Feature", "properties": { "id": "39578", "nom": "Corbas Les Bruyeres", "desserte": "76A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4543", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.902788316512869, 45.659376511797298 ] } }, -{ "type": "Feature", "properties": { "id": "39897", "nom": "Professeur Beauvisage - C.I.S.L.", "desserte": "C22A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "622", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.86820111036912, 45.729670803345776 ] } }, -{ "type": "Feature", "properties": { "id": "39915", "nom": "Marcel Houël - Hôtel de Ville", "desserte": "C12A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "646", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.882692875153183, 45.69619118267547 ] } }, -{ "type": "Feature", "properties": { "id": "39917", "nom": "Lycée Jacques Brel", "desserte": "C12A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "650", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.880147049635883, 45.695024773112287 ] } }, -{ "type": "Feature", "properties": { "id": "39940", "nom": "Maurice Ravel", "desserte": "39A:A,60A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4561", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.86097906088894, 45.677293377420966 ] } }, -{ "type": "Feature", "properties": { "id": "39950", "nom": "Maurice Thorez", "desserte": "60A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "666", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.863108240777398, 45.699919584913303 ] } }, -{ "type": "Feature", "properties": { "id": "39953", "nom": "Carriere du Port", "desserte": "60A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4572", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.84034749679994, 45.722293477267648 ] } }, -{ "type": "Feature", "properties": { "id": "39954", "nom": "Carriere du Port", "desserte": "60A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4573", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.840379508762126, 45.721861428291398 ] } }, -{ "type": "Feature", "properties": { "id": "40114", "nom": "Feyzin Mairie", "desserte": "39A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4576", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.859950691659506, 45.669980530032205 ] } }, -{ "type": "Feature", "properties": { "id": "40115", "nom": "Gare de Vénissieux", "desserte": "111A:A,112A:A,35A:A,39A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "281", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.887454198217751, 45.704697237871876 ] } }, -{ "type": "Feature", "properties": { "id": "40179", "nom": "Croizat - Paul Bert", "desserte": "35A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "643", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.888091820782722, 45.700713171641247 ] } }, -{ "type": "Feature", "properties": { "id": "40194", "nom": "Vaulx Salengro", "desserte": "68B:A,ZI5B:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4583", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.927444066851111, 45.749679053454216 ] } }, -{ "type": "Feature", "properties": { "id": "40617", "nom": "St Genis Barolles", "desserte": "78B:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2722", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.78161489356939, 45.678791377383099 ] } }, -{ "type": "Feature", "properties": { "id": "40618", "nom": "St Genis Barolles", "desserte": "78B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2720", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.781850534799731, 45.67918227908438 ] } }, -{ "type": "Feature", "properties": { "id": "12191", "nom": "Centre Communal du Vallon", "desserte": "90A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3255", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.793220798922878, 45.741526534954495 ] } }, -{ "type": "Feature", "properties": { "id": "31506", "nom": "IUFM", "desserte": "S12A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3850", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.823378373299297, 45.77365346307792 ] } }, -{ "type": "Feature", "properties": { "id": "31882", "nom": "Nadaud - Vitriolerie", "desserte": "C22A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2308", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.83399518286432, 45.743164932798948 ] } }, -{ "type": "Feature", "properties": { "id": "32129", "nom": "Le Tonkin", "desserte": "T1A:R,T4A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "472", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.864062789118015, 45.774123105958651 ] } }, -{ "type": "Feature", "properties": { "id": "34392", "nom": "St Priest Salengro", "desserte": "296:A,C25B:A,ZI1A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3953", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.936568405487292, 45.690535261268117 ] } }, -{ "type": "Feature", "properties": { "id": "36138", "nom": "Z.I. Schweitzer-Republique", "desserte": "ZI2A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2998", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 5.025783834745429, 45.761805364296826 ] } }, -{ "type": "Feature", "properties": { "id": "36140", "nom": "Z.I. Meyzieu Jean Mace", "desserte": "ZI2A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2993", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 5.018383694748119, 45.764340825642279 ] } }, -{ "type": "Feature", "properties": { "id": "36143", "nom": "Centre commercial des Plantees", "desserte": "67A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4077", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 5.009111011727873, 45.765146992957661 ] } }, -{ "type": "Feature", "properties": { "id": "36144", "nom": "Dauphine - Berlioz", "desserte": "67A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4078", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 5.007789419893625, 45.762828955796742 ] } }, -{ "type": "Feature", "properties": { "id": "36147", "nom": "Marseille - Perigord", "desserte": "67A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4086", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 5.020925043694148, 45.761597545282868 ] } }, -{ "type": "Feature", "properties": { "id": "36150", "nom": "Meyzieu Av de Crottay", "desserte": "28A:R,29A:R,67A:A,67A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4087", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 5.024812537505237, 45.760352306957898 ] } }, -{ "type": "Feature", "properties": { "id": "36151", "nom": "Meyzieu Av de Crottay", "desserte": "28A:A,29A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5576", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 5.024559196549505, 45.760168431245766 ] } }, -{ "type": "Feature", "properties": { "id": "36155", "nom": "Marseille - Perigord", "desserte": "67A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4085", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 5.021764428628287, 45.761667496445462 ] } }, -{ "type": "Feature", "properties": { "id": "36157", "nom": "Meyzieu Plantees", "desserte": "67A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2193", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 5.01115887527424, 45.760444285346388 ] } }, -{ "type": "Feature", "properties": { "id": "36158", "nom": "Grenoble", "desserte": "67A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4082", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 5.00939925065307, 45.760756236495851 ] } }, -{ "type": "Feature", "properties": { "id": "36160", "nom": "Centre commercial des Plantees", "desserte": "67A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4076", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 5.008516196394702, 45.765611238169839 ] } }, -{ "type": "Feature", "properties": { "id": "36175", "nom": "Decines Esplanade", "desserte": "76A:R,85A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3098", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.976097450083899, 45.77270613610137 ] } }, -{ "type": "Feature", "properties": { "id": "36176", "nom": "Decines Esplanade", "desserte": "76A:A,85A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3099", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.976166442158289, 45.772803533392121 ] } }, -{ "type": "Feature", "properties": { "id": "36194", "nom": "Grigny La Colombe", "desserte": "78B:A,80A:A,80A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4088", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.79936549775742, 45.61571107137955 ] } }, -{ "type": "Feature", "properties": { "id": "36196", "nom": "Dutartre", "desserte": "78B:A,80A:A,80A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4091", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.79856803368393, 45.613649399286572 ] } }, -{ "type": "Feature", "properties": { "id": "36197", "nom": "Dutartre", "desserte": "78B:R,80A:A,80A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4090", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.798736240134841, 45.613969733063655 ] } }, -{ "type": "Feature", "properties": { "id": "36199", "nom": "Le Manoir", "desserte": "78B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4092", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.795792281866483, 45.611226156438732 ] } }, -{ "type": "Feature", "properties": { "id": "36200", "nom": "La Rochere", "desserte": "78B:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4094", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.792892266663409, 45.609750670681414 ] } }, -{ "type": "Feature", "properties": { "id": "36205", "nom": "Centre Chervet", "desserte": "78B:R,80A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4100", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.788061901990119, 45.607543328242748 ] } }, -{ "type": "Feature", "properties": { "id": "36206", "nom": "Grigny Bel Air", "desserte": "80A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4101", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.786372949437832, 45.609650498525191 ] } }, -{ "type": "Feature", "properties": { "id": "36209", "nom": "Grigny Ampere", "desserte": "80A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4104", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.78370205574931, 45.609573900773697 ] } }, -{ "type": "Feature", "properties": { "id": "36212", "nom": "Arondieres", "desserte": "80A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4107", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.782483195963779, 45.605802182771093 ] } }, -{ "type": "Feature", "properties": { "id": "36213", "nom": "Arondieres", "desserte": "80A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4108", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.782405930194796, 45.60579487014278 ] } }, -{ "type": "Feature", "properties": { "id": "30045", "nom": "Val Fontaine Centre", "desserte": "72B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3714", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.725901074462159, 45.7617195771724 ] } }, -{ "type": "Feature", "properties": { "id": "30157", "nom": "Hénon", "desserte": "303:A", "pmr": "t", "ascenseur": "t", "escalator": "t", "gid": "104", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.827445150528709, 45.779249903247269 ] } }, -{ "type": "Feature", "properties": { "id": "32170", "nom": "Rebufer", "desserte": "T2:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "410", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.915649624632612, 45.727500903947337 ] } }, -{ "type": "Feature", "properties": { "id": "32288", "nom": "Marne - Lacouture", "desserte": "C17A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2158", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.910490871762944, 45.742939924335992 ] } }, -{ "type": "Feature", "properties": { "id": "32365", "nom": "St Remy", "desserte": "66A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3881", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.785885904480415, 45.79826722769927 ] } }, -{ "type": "Feature", "properties": { "id": "34067", "nom": "Croix-Luizet", "desserte": "T1A:A,T1A:R,T4A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "477", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.883148048879918, 45.783621847127769 ] } }, -{ "type": "Feature", "properties": { "id": "34655", "nom": "Centre Val Rosay", "desserte": "23A:R,84A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3985", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.809349631354752, 45.7995084247706 ] } }, -{ "type": "Feature", "properties": { "id": "36219", "nom": "Grigny Pressense", "desserte": "80A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4113", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.779485190813374, 45.603257409279372 ] } }, -{ "type": "Feature", "properties": { "id": "36221", "nom": "Cite SNCF Grigny", "desserte": "80A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4115", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.776175704974453, 45.601781447428145 ] } }, -{ "type": "Feature", "properties": { "id": "36223", "nom": "Givors Parc des Sports", "desserte": "80A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4119", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.771005217615909, 45.60171400277379 ] } }, -{ "type": "Feature", "properties": { "id": "36225", "nom": "Les Vernes - R. Rolland", "desserte": "80A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4121", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.767332097647771, 45.603035935212468 ] } }, -{ "type": "Feature", "properties": { "id": "36227", "nom": "Les Vernes - J. Valles", "desserte": "80A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4124", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.766741854745968, 45.606811075584879 ] } }, -{ "type": "Feature", "properties": { "id": "36228", "nom": "Les Vernes - Lenine", "desserte": "80A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4126", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.764320186608126, 45.607439669683288 ] } }, -{ "type": "Feature", "properties": { "id": "36230", "nom": "Les Vernes - De Gaulle", "desserte": "80A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4128", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.763570707450134, 45.604395660350441 ] } }, -{ "type": "Feature", "properties": { "id": "36231", "nom": "Les Vernes - De Gaulle", "desserte": "80A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4127", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.763711873270593, 45.604689624842109 ] } }, -{ "type": "Feature", "properties": { "id": "36233", "nom": "Lycee Picasso", "desserte": "80A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4129", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.762772132694713, 45.601982766703131 ] } }, -{ "type": "Feature", "properties": { "id": "36235", "nom": "Docteur Roux", "desserte": "80A:R,81A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4132", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.765579177421747, 45.598104825828891 ] } }, -{ "type": "Feature", "properties": { "id": "36236", "nom": "Givors Marcel Cachin", "desserte": "80A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4134", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.766414582962197, 45.596179232144401 ] } }, -{ "type": "Feature", "properties": { "id": "36237", "nom": "Givors Marcel Cachin", "desserte": "80A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4133", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.766516263017904, 45.596159022901269 ] } }, -{ "type": "Feature", "properties": { "id": "36238", "nom": "Givors Yves Farge", "desserte": "80A:A,81A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4135", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.764528365822963, 45.593231887032715 ] } }, -{ "type": "Feature", "properties": { "id": "36239", "nom": "Givors Yves Farge", "desserte": "80A:R,81A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4136", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.764518327383708, 45.593295110683876 ] } }, -{ "type": "Feature", "properties": { "id": "36240", "nom": "Casanova", "desserte": "80A:A,81A:A,81A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4137", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.766793242608, 45.594241768436213 ] } }, -{ "type": "Feature", "properties": { "id": "36241", "nom": "Casanova", "desserte": "80A:R,81A:A,81A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4138", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.766461201166087, 45.594026747088073 ] } }, -{ "type": "Feature", "properties": { "id": "36242", "nom": "Gare de Givors Canal", "desserte": "78B:A,80A:A,81A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4140", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.769958342616505, 45.593969035981054 ] } }, -{ "type": "Feature", "properties": { "id": "36243", "nom": "Gare de Givors Canal", "desserte": "78B:R,80A:R,81A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4139", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.769999940891865, 45.594040138392486 ] } }, -{ "type": "Feature", "properties": { "id": "36245", "nom": "Givors Picard", "desserte": "78B:R,80A:R,81A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4142", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.770386192360029, 45.592042549372401 ] } }, -{ "type": "Feature", "properties": { "id": "43221", "nom": "Z.I. Vaulx-en-Velin Est", "desserte": "ZI3A:A,ZI3A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4824", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.934044395167314, 45.777278250041107 ] } }, -{ "type": "Feature", "properties": { "id": "30206", "nom": "Gorge de Loup", "desserte": "304:R", "pmr": "t", "ascenseur": "t", "escalator": "t", "gid": "69", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.805439772783212, 45.766422042178668 ] } }, -{ "type": "Feature", "properties": { "id": "33217", "nom": "Cordière", "desserte": "T2:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "497", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.949700696850353, 45.693624037160937 ] } }, -{ "type": "Feature", "properties": { "id": "34411", "nom": "St Priest Bel Air", "desserte": "C25B:R,ZI8A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "453", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.957500849405363, 45.693162495375368 ] } }, -{ "type": "Feature", "properties": { "id": "34675", "nom": "J. B. Simon", "desserte": "40A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3989", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.857443901490276, 45.825956551559521 ] } }, -{ "type": "Feature", "properties": { "id": "35436", "nom": "Ravat", "desserte": "S1A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3993", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.823560713121504, 45.744116719583729 ] } }, -{ "type": "Feature", "properties": { "id": "35671", "nom": "Décines Centre", "desserte": "T3:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "579", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.955866138509648, 45.771866385184019 ] } }, -{ "type": "Feature", "properties": { "id": "40414", "nom": "Le Relais", "desserte": "39A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1879", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.856381379146974, 45.649205061841862 ] } }, -{ "type": "Feature", "properties": { "id": "41514", "nom": "Valdo", "desserte": "65A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2881", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.783866673691298, 45.750011806233239 ] } }, -{ "type": "Feature", "properties": { "id": "41594", "nom": "Bellecour Le Viste", "desserte": "27A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "906", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.833377296353267, 45.758165598716033 ] } }, -{ "type": "Feature", "properties": { "id": "41614", "nom": "Chantegrillet", "desserte": "14B:R,C20A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "684", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.773272735843165, 45.738406056680688 ] } }, -{ "type": "Feature", "properties": { "id": "41654", "nom": "Z.I. Sermenaz", "desserte": "ZI4A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4646", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.914107966343751, 45.820170627780605 ] } }, -{ "type": "Feature", "properties": { "id": "41655", "nom": "Z.I. Sermenaz", "desserte": "ZI4A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4645", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.913067113158, 45.820212493089855 ] } }, -{ "type": "Feature", "properties": { "id": "41656", "nom": "Osterode", "desserte": "ZI4A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4648", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.915806465370488, 45.822895142598291 ] } }, -{ "type": "Feature", "properties": { "id": "41680", "nom": "Observatoire", "desserte": "S9A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4230", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.786800766900058, 45.697229162352649 ] } }, -{ "type": "Feature", "properties": { "id": "41681", "nom": "Square Combattants d'AFN", "desserte": "S9A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4626", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.793626384359712, 45.69618871090298 ] } }, -{ "type": "Feature", "properties": { "id": "41734", "nom": "Gare de Vaise", "desserte": "22A:A,23A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "266", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.804645820115065, 45.780439512489025 ] } }, -{ "type": "Feature", "properties": { "id": "41778", "nom": "Francheville Taffignon", "desserte": "C19A:A,C19A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1054", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.775493216548814, 45.734559425679983 ] } }, -{ "type": "Feature", "properties": { "id": "41794", "nom": "Valliere", "desserte": "S7A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4652", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.827322017641213, 45.816717765071616 ] } }, -{ "type": "Feature", "properties": { "id": "41857", "nom": "Dumas - Poudrette", "desserte": "C15A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1347", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.920275718205088, 45.753372841827385 ] } }, -{ "type": "Feature", "properties": { "id": "41858", "nom": "Musset - Poudrette", "desserte": "C15A:A,C8A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2303", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.92129614809801, 45.757850088837941 ] } }, -{ "type": "Feature", "properties": { "id": "41874", "nom": "Parc des Lumieres 1", "desserte": "ZI8A:A,ZI8A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4663", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.96499218667559, 45.680573880473808 ] } }, -{ "type": "Feature", "properties": { "id": "41875", "nom": "Parc des Lumieres 2", "desserte": "ZI8A:A,ZI8A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4664", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.968372012762654, 45.679549414864304 ] } }, -{ "type": "Feature", "properties": { "id": "30397", "nom": "Mermoz - Californie", "desserte": "C22A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1013", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.878553480553056, 45.733136284533465 ] } }, -{ "type": "Feature", "properties": { "id": "30418", "nom": "Parc de l'Hippodrome", "desserte": "S2A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3799", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.71918408505311, 45.808243446920798 ] } }, -{ "type": "Feature", "properties": { "id": "30445", "nom": "Garibaldi", "desserte": "304:A", "pmr": "t", "ascenseur": "t", "escalator": "t", "gid": "301", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.85420971651506, 45.751462127849955 ] } }, -{ "type": "Feature", "properties": { "id": "35315", "nom": "Joseph Moulin", "desserte": "73A:R,C24B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3237", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.715925430489992, 45.743362893024091 ] } }, -{ "type": "Feature", "properties": { "id": "35357", "nom": "Gratte-Ciel - Verlaine", "desserte": "69A:R,C26A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4021", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.880207213549652, 45.767972955014464 ] } }, -{ "type": "Feature", "properties": { "id": "35358", "nom": "Gratte-Ciel - Verlaine", "desserte": "69A:A,C26A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4022", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.880214735867765, 45.768527806876527 ] } }, -{ "type": "Feature", "properties": { "id": "35435", "nom": "Marc-Antoine Petit", "desserte": "S1A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4026", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.825757104907057, 45.745778242588202 ] } }, -{ "type": "Feature", "properties": { "id": "35958", "nom": "Parc Tete d'Or-Churchill", "desserte": "C1A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2358", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.844593997388154, 45.776575082505424 ] } }, -{ "type": "Feature", "properties": { "id": "39938", "nom": "Carre de Soie", "desserte": "52A:R,67A:A,ZI4A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4559", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.921579809286834, 45.764981732267294 ] } }, -{ "type": "Feature", "properties": { "id": "42376", "nom": "Margnolles - Pasteur", "desserte": "C13A:A,S5A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2148", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.837838336020545, 45.785294903726587 ] } }, -{ "type": "Feature", "properties": { "id": "43496", "nom": "Cordeliers", "desserte": "27A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "26", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.836138250323057, 45.76345985840338 ] } }, -{ "type": "Feature", "properties": { "id": "44058", "nom": "Mions Mairie", "desserte": "62A:A,87A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2212", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.957688894784336, 45.663650841986936 ] } }, -{ "type": "Feature", "properties": { "id": "44178", "nom": "College Paul Vallon", "desserte": "81A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4190", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.795690847267124, 45.568681015977624 ] } }, -{ "type": "Feature", "properties": { "id": "44198", "nom": "Jean Macé", "desserte": "ZI6A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "295", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.842098301445648, 45.745792698610039 ] } }, -{ "type": "Feature", "properties": { "id": "44278", "nom": "Charbonnieres Les Verrieres", "desserte": "86A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4809", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.745123263460687, 45.788968533421098 ] } }, -{ "type": "Feature", "properties": { "id": "44279", "nom": "Charbonnieres Les Verrieres", "desserte": "86A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4810", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.744631406201114, 45.789195100649842 ] } }, -{ "type": "Feature", "properties": { "id": "44321", "nom": "Grand Champ", "desserte": "20A:A,2A:A,71A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4921", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.819623701595363, 45.799326817002516 ] } }, -{ "type": "Feature", "properties": { "id": "44322", "nom": "Grand Champ", "desserte": "20A:R,71A:R,S7A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4920", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.819691104993018, 45.799964409872182 ] } }, -{ "type": "Feature", "properties": { "id": "44358", "nom": "Manissieux Place Balzac", "desserte": "26A:A,50A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5525", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.978154540097554, 45.706000326310075 ] } }, -{ "type": "Feature", "properties": { "id": "44381", "nom": "Meyzieu Jacques Prevert", "desserte": "85A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4923", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.994329150794032, 45.760546826569197 ] } }, -{ "type": "Feature", "properties": { "id": "44382", "nom": "Segliere - Jaures", "desserte": "29A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5577", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 5.019113927219998, 45.746861096090299 ] } }, -{ "type": "Feature", "properties": { "id": "44678", "nom": "Genas - Lacouture", "desserte": "C17A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4763", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.912001869723731, 45.74995337928766 ] } }, -{ "type": "Feature", "properties": { "id": "44718", "nom": "Montessuy Hauts St Clair", "desserte": "77A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2261", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.84890112246268, 45.794304786074463 ] } }, -{ "type": "Feature", "properties": { "id": "44758", "nom": "Leclerc", "desserte": "C5A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4275", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.895954911090979, 45.813249241626849 ] } }, -{ "type": "Feature", "properties": { "id": "44759", "nom": "Leclerc", "desserte": "C5A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4274", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.895185771766787, 45.81304172126552 ] } }, -{ "type": "Feature", "properties": { "id": "30532", "nom": "Yvours", "desserte": "15A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2984", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.826292917620628, 45.69027457840722 ] } }, -{ "type": "Feature", "properties": { "id": "30556", "nom": "La Tour de S. Mairie", "desserte": "GE4A:A,S2A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3802", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.716257858873832, 45.814381013725608 ] } }, -{ "type": "Feature", "properties": { "id": "34113", "nom": "Achard", "desserte": "49A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3936", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.809009717755306, 45.748452673953835 ] } }, -{ "type": "Feature", "properties": { "id": "34210", "nom": "St Genis 2", "desserte": "12B:A,12B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2714", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.789295563153354, 45.68085771724801 ] } }, -{ "type": "Feature", "properties": { "id": "34314", "nom": "Feyzin Oasis", "desserte": "39A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3951", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.866793215227531, 45.68114986157066 ] } }, -{ "type": "Feature", "properties": { "id": "34415", "nom": "St Priest Gare", "desserte": "62A:R,76A:A,ZI1A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2760", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.935220895335331, 45.68810908002235 ] } }, -{ "type": "Feature", "properties": { "id": "34494", "nom": "Z.I. Le Carreau", "desserte": "54A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3970", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.894444681090524, 45.680396379972521 ] } }, -{ "type": "Feature", "properties": { "id": "34542", "nom": "Rue des Alpes", "desserte": "50A:A,50A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3976", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.989588169560387, 45.700113414079581 ] } }, -{ "type": "Feature", "properties": { "id": "34813", "nom": "Ravat", "desserte": "63A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3995", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.826015438005797, 45.743531234347145 ] } }, -{ "type": "Feature", "properties": { "id": "35795", "nom": "Barreme", "desserte": "C4A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "872", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.842980473483244, 45.775323932793683 ] } }, -{ "type": "Feature", "properties": { "id": "35994", "nom": "Charbonnier", "desserte": "87A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4062", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.946070629043693, 45.656873760775298 ] } }, -{ "type": "Feature", "properties": { "id": "36250", "nom": "Givors Hotel de Ville", "desserte": "80A:A,80A:R,81A:A,81A:R,R3A:A,R3A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4149", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.772650667764759, 45.582353360829529 ] } }, -{ "type": "Feature", "properties": { "id": "36261", "nom": "Vallee du Gier 1", "desserte": "80A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4158", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.746529683351354, 45.583576055473642 ] } }, -{ "type": "Feature", "properties": { "id": "36265", "nom": "Gare de Grigny Le Sablon", "desserte": "80A:A,80A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4162", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.793903971617916, 45.607991297373665 ] } }, -{ "type": "Feature", "properties": { "id": "36272", "nom": "Bonnefond", "desserte": "78B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4169", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.772246879097619, 45.594405300318279 ] } }, -{ "type": "Feature", "properties": { "id": "36274", "nom": "College des Vernes", "desserte": "81A:A,81A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4171", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.768272608350849, 45.599064158039155 ] } }, -{ "type": "Feature", "properties": { "id": "36276", "nom": "Tour de Varissan", "desserte": "81A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4173", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.761679906304702, 45.595804878468243 ] } }, -{ "type": "Feature", "properties": { "id": "36278", "nom": "Intermediaire", "desserte": "81A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4175", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.758844080154888, 45.594291145492107 ] } }, -{ "type": "Feature", "properties": { "id": "36280", "nom": "Chatelaine", "desserte": "81A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4177", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.752809183472722, 45.592009834056057 ] } }, -{ "type": "Feature", "properties": { "id": "36281", "nom": "Plateau de Montrond", "desserte": "81A:A,81A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4178", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.75004775445269, 45.591330905493571 ] } }, -{ "type": "Feature", "properties": { "id": "36282", "nom": "Stade de Montrond", "desserte": "81A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4179", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.746185269852973, 45.590073021851531 ] } }, -{ "type": "Feature", "properties": { "id": "36314", "nom": "La Jument Noire", "desserte": "81A:A,81A:R,R3A:A,R3A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4182", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.757540830116537, 45.584166434420325 ] } }, -{ "type": "Feature", "properties": { "id": "36321", "nom": "Tour de Bans", "desserte": "81A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4186", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.787672540101378, 45.577425841833573 ] } }, -{ "type": "Feature", "properties": { "id": "36322", "nom": "La Lone", "desserte": "81A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4187", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.790748095358254, 45.575108194268211 ] } }, -{ "type": "Feature", "properties": { "id": "36323", "nom": "La Lone", "desserte": "81A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4188", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.79065366024448, 45.575290283857882 ] } }, -{ "type": "Feature", "properties": { "id": "36326", "nom": "College Paul Vallon", "desserte": "81A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4191", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.796254095154254, 45.567804545052766 ] } }, -{ "type": "Feature", "properties": { "id": "36328", "nom": "Bertholon", "desserte": "R3A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5331", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.773079249920486, 45.576673495664366 ] } }, -{ "type": "Feature", "properties": { "id": "36329", "nom": "Bertholon", "desserte": "R3A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5332", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.773154387941801, 45.576923882898548 ] } }, -{ "type": "Feature", "properties": { "id": "31663", "nom": "Place Jean Jaurès", "desserte": "302A:R", "pmr": "t", "ascenseur": "t", "escalator": "t", "gid": "329", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.837431406149923, 45.73787144023909 ] } }, -{ "type": "Feature", "properties": { "id": "33305", "nom": "Le Centenaire", "desserte": "17B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3918", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.830312176825597, 45.698484324385518 ] } }, -{ "type": "Feature", "properties": { "id": "35794", "nom": "Barreme", "desserte": "C4A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "871", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.842639847682198, 45.774341401457896 ] } }, -{ "type": "Feature", "properties": { "id": "36362", "nom": "Gare de Givors Ville", "desserte": "78B:A,78B:R,80A:A,80A:R,81A:A,81A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "596", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.766251027257724, 45.584895728697205 ] } }, -{ "type": "Feature", "properties": { "id": "36394", "nom": "Vaulx-en-Velin La Soie", "desserte": "301A:A", "pmr": "t", "ascenseur": "t", "escalator": "t", "gid": "574", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.921043602098277, 45.76102037139357 ] } }, -{ "type": "Feature", "properties": { "id": "36434", "nom": "Vaulx-en-Velin La Soie", "desserte": "301A:R", "pmr": "t", "ascenseur": "t", "escalator": "t", "gid": "575", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.921102930932481, 45.760919989502248 ] } }, -{ "type": "Feature", "properties": { "id": "36464", "nom": "Centre Hospitalier Montgelas", "desserte": "81A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4206", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.769071017454801, 45.598560762525047 ] } }, -{ "type": "Feature", "properties": { "id": "36534", "nom": "Pont Chevreul", "desserte": "76A:A,ZI1A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4212", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.932012777168881, 45.685987016576519 ] } }, -{ "type": "Feature", "properties": { "id": "36535", "nom": "Pont Chevreul", "desserte": "76A:R,ZI1A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4211", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.931817800834957, 45.685937520764526 ] } }, -{ "type": "Feature", "properties": { "id": "36634", "nom": "Les Massues - Soeur Janin", "desserte": "46A:R,90A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4048", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.798812172573673, 45.760189161933354 ] } }, -{ "type": "Feature", "properties": { "id": "36695", "nom": "La Poudriere", "desserte": "C13A:R,C18A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1766", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.816889480705059, 45.770097514340073 ] } }, -{ "type": "Feature", "properties": { "id": "36715", "nom": "Echangeur Porte des Alpes", "desserte": "26A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4217", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.921258620983403, 45.723384389275616 ] } }, -{ "type": "Feature", "properties": { "id": "36716", "nom": "Echangeur Porte des Alpes", "desserte": "26A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4218", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.920578642935875, 45.723409052766279 ] } }, -{ "type": "Feature", "properties": { "id": "36717", "nom": "Rd Pt Charles de Gaulle", "desserte": "26A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4220", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.930124530241649, 45.726348317833903 ] } }, -{ "type": "Feature", "properties": { "id": "36718", "nom": "Rd Pt Charles de Gaulle", "desserte": "26A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4219", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.930166434708672, 45.726419361006727 ] } }, -{ "type": "Feature", "properties": { "id": "36754", "nom": "St Genis Lycee Descartes", "desserte": "17B:A,78B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3245", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.784343508851505, 45.690784120921975 ] } }, -{ "type": "Feature", "properties": { "id": "36756", "nom": "Gadagne - Egalite", "desserte": "78B:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4224", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.788792461977621, 45.699264856549441 ] } }, -{ "type": "Feature", "properties": { "id": "36774", "nom": "Boulevard des Oiseaux", "desserte": "77A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4226", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.868612595758309, 45.816299056698199 ] } }, -{ "type": "Feature", "properties": { "id": "36794", "nom": "Observatoire", "desserte": "78B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4228", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.786527747352572, 45.696578055275701 ] } }, -{ "type": "Feature", "properties": { "id": "36795", "nom": "Observatoire", "desserte": "78B:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4229", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.786726572791012, 45.697293790445876 ] } }, -{ "type": "Feature", "properties": { "id": "36796", "nom": "La Chataigneraie", "desserte": "78B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4231", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.791986546719402, 45.701225764137277 ] } }, -{ "type": "Feature", "properties": { "id": "36797", "nom": "La Chataigneraie", "desserte": "78B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4232", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.791717585166471, 45.701171706405297 ] } }, -{ "type": "Feature", "properties": { "id": "36814", "nom": "Montgay Chardonniere", "desserte": "70A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4234", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.862560579436797, 45.821025947774096 ] } }, -{ "type": "Feature", "properties": { "id": "36834", "nom": "Montgay Chardonniere", "desserte": "70A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4233", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.862454334439911, 45.821235366829477 ] } }, -{ "type": "Feature", "properties": { "id": "36874", "nom": "Hopital Mere Enfant", "desserte": "C8A:A,C9A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4215", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.901558572935637, 45.747411054519759 ] } }, -{ "type": "Feature", "properties": { "id": "36875", "nom": "Hopital Mere Enfant", "desserte": "C8A:R,C9A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4216", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.901445496535416, 45.747467646555052 ] } }, -{ "type": "Feature", "properties": { "id": "35054", "nom": "Terreaux Tobie Robatel", "desserte": "C13A:A,C18A:A,S6A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2842", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.831452300877649, 45.767893644517628 ] } }, -{ "type": "Feature", "properties": { "id": "35437", "nom": "Ravat", "desserte": "S1A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3994", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.824155398601653, 45.743905516351703 ] } }, -{ "type": "Feature", "properties": { "id": "35457", "nom": "Corbas G.Brassens", "desserte": "54A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4029", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.905551420903364, 45.667981535521079 ] } }, -{ "type": "Feature", "properties": { "id": "35461", "nom": "Vignerme", "desserte": "76A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4031", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.90115795031094, 45.669027291788559 ] } }, -{ "type": "Feature", "properties": { "id": "35670", "nom": "Décines Centre", "desserte": "T3:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "578", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.95594217857424, 45.771810061761883 ] } }, -{ "type": "Feature", "properties": { "id": "36878", "nom": "Mions Pierre Blanche", "desserte": "87A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4237", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.929266677967755, 45.668029564589411 ] } }, -{ "type": "Feature", "properties": { "id": "36879", "nom": "Mions Pierre Blanche", "desserte": "87A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4238", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.929268370550803, 45.668065531352106 ] } }, -{ "type": "Feature", "properties": { "id": "36894", "nom": "Duchere Martiniere", "desserte": "66A:A,C14A:A,C6B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1337", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.79593903146668, 45.786316131254424 ] } }, -{ "type": "Feature", "properties": { "id": "36895", "nom": "Duchere Martiniere", "desserte": "66A:R,C14A:R,C6B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1336", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.795642069521568, 45.786376099721132 ] } }, -{ "type": "Feature", "properties": { "id": "36955", "nom": "Sept Chemins", "desserte": "79A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2655", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.932682501535101, 45.744886246603976 ] } }, -{ "type": "Feature", "properties": { "id": "36994", "nom": "Halles Paul Bocuse", "desserte": "448A:A,C13A:R,C3A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4242", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.848966538640397, 45.763596583731939 ] } }, -{ "type": "Feature", "properties": { "id": "36995", "nom": "Halles Paul Bocuse", "desserte": "C13A:A,C3A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4243", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.849600998150868, 45.763690399046304 ] } }, -{ "type": "Feature", "properties": { "id": "36996", "nom": "Institut d'art contemporain", "desserte": "27A:A,448A:A,C3A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4245", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.87358638240348, 45.763691044982934 ] } }, -{ "type": "Feature", "properties": { "id": "36998", "nom": "Blanqui-Ctre Memoires et Ste", "desserte": "448A:A,C3A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4247", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.885207671790099, 45.760808446954933 ] } }, -{ "type": "Feature", "properties": { "id": "37036", "nom": "Sept Chemins", "desserte": "28A:R,68B:A,ZI5B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2649", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.933052736851704, 45.744013538454162 ] } }, -{ "type": "Feature", "properties": { "id": "37054", "nom": "Rocade des Monts d'Or", "desserte": "20A:A,23A:A,23A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4249", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.810611950891904, 45.820129285754241 ] } }, -{ "type": "Feature", "properties": { "id": "37056", "nom": "Paul Chevrel", "desserte": "23A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3217", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.80015827195342, 45.819836864888487 ] } }, -{ "type": "Feature", "properties": { "id": "37074", "nom": "Tourneyrand", "desserte": "40A:A,70A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4252", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.841403123712571, 45.859052910634183 ] } }, -{ "type": "Feature", "properties": { "id": "37075", "nom": "Tourneyrand", "desserte": "40A:R,70A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4253", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.841191784814527, 45.858373517807912 ] } }, -{ "type": "Feature", "properties": { "id": "37094", "nom": "Pont de Neuville RG", "desserte": "S14A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4047", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.838263424145103, 45.878088566071114 ] } }, -{ "type": "Feature", "properties": { "id": "37115", "nom": "Institut Pasteur", "desserte": "60A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3394", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.824430994004678, 45.727535401554398 ] } }, -{ "type": "Feature", "properties": { "id": "37116", "nom": "Universite Lyon 1 Gerland", "desserte": "60A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3998", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.827407123688332, 45.726560263556465 ] } }, -{ "type": "Feature", "properties": { "id": "37117", "nom": "Stade de Gerland", "desserte": "60A:A,60A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "310", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.831647252603464, 45.72653806538689 ] } }, -{ "type": "Feature", "properties": { "id": "37154", "nom": "10 Rue Saillant", "desserte": "ZI3A:A,ZI4A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4258", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.93774013614526, 45.774636275821742 ] } }, -{ "type": "Feature", "properties": { "id": "41097", "nom": "Pierre Brunier", "desserte": "S5A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4641", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.830468948257148, 45.788474176198719 ] } }, -{ "type": "Feature", "properties": { "id": "2650", "nom": "Rue d'Ypres", "desserte": "40A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2613", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.812414130163049, 45.781291052627132 ] } }, -{ "type": "Feature", "properties": { "id": "36256", "nom": "La Freydiere", "desserte": "80A:R,81A:A,81A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4152", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.762661362733086, 45.585468659364082 ] } }, -{ "type": "Feature", "properties": { "id": "36283", "nom": "Autrichiens", "desserte": "81A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4180", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.74817256676265, 45.588905117502534 ] } }, -{ "type": "Feature", "properties": { "id": "36313", "nom": "Metallurgie", "desserte": "81A:A,81A:R,R3A:A,R3A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4181", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.757299034700893, 45.583037565220614 ] } }, -{ "type": "Feature", "properties": { "id": "36318", "nom": "Port du Bief", "desserte": "81A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4183", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.77940135826925, 45.580225992133379 ] } }, -{ "type": "Feature", "properties": { "id": "37055", "nom": "Les Gorges", "desserte": "23A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3215", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.801862459493696, 45.820519584691858 ] } }, -{ "type": "Feature", "properties": { "id": "37162", "nom": "Fromont", "desserte": "ZI3A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1444", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.937395707793314, 45.776057497483194 ] } }, -{ "type": "Feature", "properties": { "id": "37165", "nom": "Leonard De Vinci", "desserte": "ZI3A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3763", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.934694130241255, 45.779594624436122 ] } }, -{ "type": "Feature", "properties": { "id": "37169", "nom": "Vaulx-en-Velin La Soie", "desserte": "ZI3A:A,ZI3A:R,ZI7A:A,ZI7A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "569", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.922508677513751, 45.761485771357762 ] } }, -{ "type": "Feature", "properties": { "id": "37170", "nom": "Vaulx-en-Velin La Soie", "desserte": "16A:R,52A:R,C8A:R,ZI3A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "573", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.922157082436575, 45.760845761512229 ] } }, -{ "type": "Feature", "properties": { "id": "37171", "nom": "Grosso - Roosevelt", "desserte": "ZI3A:A,ZI3A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3549", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.937124618814023, 45.762435424605911 ] } }, -{ "type": "Feature", "properties": { "id": "37172", "nom": "Z.I. Bruyeres", "desserte": "ZI3A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4265", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.941655062698083, 45.759791965613609 ] } }, -{ "type": "Feature", "properties": { "id": "37173", "nom": "Edelweiss", "desserte": "ZI3A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4266", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.942620965817084, 45.756835041632563 ] } }, -{ "type": "Feature", "properties": { "id": "37174", "nom": "Vaucanson", "desserte": "ZI3A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4267", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.943251459252561, 45.75412893841817 ] } }, -{ "type": "Feature", "properties": { "id": "37175", "nom": "Z.I. Roosevelt", "desserte": "ZI3A:A,ZI3A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4268", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.934224742536721, 45.750593531980606 ] } }, -{ "type": "Feature", "properties": { "id": "37176", "nom": "Roosevelt - Vaucanson", "desserte": "ZI3A:A,ZI3A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4269", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.935267483615526, 45.754431052114455 ] } }, -{ "type": "Feature", "properties": { "id": "37177", "nom": "Z.I. Ouest", "desserte": "ZI3A:A,ZI3A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4270", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.936097388145018, 45.757571376540376 ] } }, -{ "type": "Feature", "properties": { "id": "37181", "nom": "Cite Tase", "desserte": "ZI3A:A,ZI3A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1179", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.927152397002976, 45.758777293590342 ] } }, -{ "type": "Feature", "properties": { "id": "37194", "nom": "Bachut - Mairie du 8ème", "desserte": "C15A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "393", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.870884446874778, 45.735470048936584 ] } }, -{ "type": "Feature", "properties": { "id": "37195", "nom": "Bachut - Mairie du 8ème", "desserte": "C15A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "392", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.870388620205818, 45.735589260432938 ] } }, -{ "type": "Feature", "properties": { "id": "37199", "nom": "Le Capot", "desserte": "26A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3973", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.985728941334492, 45.706946888936052 ] } }, -{ "type": "Feature", "properties": { "id": "37200", "nom": "Vaulx-en-Velin La Soie", "desserte": "448A:A,C15A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "572", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.919963708124689, 45.760968260324383 ] } }, -{ "type": "Feature", "properties": { "id": "37201", "nom": "Vaulx-en-Velin La Soie", "desserte": "C15A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "571", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.919611604791402, 45.761138387517981 ] } }, -{ "type": "Feature", "properties": { "id": "37214", "nom": "Vaulx-en-Velin La Soie", "desserte": "68B:A,68B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "567", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.921170264033964, 45.761192534606053 ] } }, -{ "type": "Feature", "properties": { "id": "37217", "nom": "Vaulx-en-Velin La Soie", "desserte": "ZI4A:A,ZI4A:R,ZI5B:A,ZI5B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "564", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.922133589129149, 45.761440400347816 ] } }, -{ "type": "Feature", "properties": { "id": "37254", "nom": "Sept Chemins", "desserte": "52A:A,52A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2654", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.932658204965362, 45.744643767940417 ] } }, -{ "type": "Feature", "properties": { "id": "37274", "nom": "Vaulx-en-Velin La Soie", "desserte": "100A:A,100A:R,ZI3A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "563", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.921105532369618, 45.760635932994667 ] } }, -{ "type": "Feature", "properties": { "id": "33289", "nom": "Ste Foy Châtelain", "desserte": "90A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "466", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.794998919372359, 45.736150000195849 ] } }, -{ "type": "Feature", "properties": { "id": "33468", "nom": "Vaulx HDV Campus", "desserte": "C3A:A,C3A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2897", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.920117859453603, 45.77657328614216 ] } }, -{ "type": "Feature", "properties": { "id": "35456", "nom": "St Priest Egalite", "desserte": "76A:R,R5A:R,ZI8A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4027", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.946641644458656, 45.690067194424358 ] } }, -{ "type": "Feature", "properties": { "id": "35664", "nom": "Gare de Villeurbanne", "desserte": "T3:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "551", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.892606525822915, 45.755914070738747 ] } }, -{ "type": "Feature", "properties": { "id": "36210", "nom": "Espace Favier", "desserte": "80A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4106", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.783595848001756, 45.607758051482321 ] } }, -{ "type": "Feature", "properties": { "id": "36270", "nom": "Arboras", "desserte": "78B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4167", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.782383773618821, 45.597775593222906 ] } }, -{ "type": "Feature", "properties": { "id": "36719", "nom": "Normandie-Niemen", "desserte": "26A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4221", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.934122896034173, 45.725013623225934 ] } }, -{ "type": "Feature", "properties": { "id": "42658", "nom": "Allee de l'eglise", "desserte": "68B:R,ZI5B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4754", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.92277951771149, 45.759040131275235 ] } }, -{ "type": "Feature", "properties": { "id": "43027", "nom": "Jacques Monod", "desserte": "93A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4783", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.931559419531394, 45.713983132247655 ] } }, -{ "type": "Feature", "properties": { "id": "45447", "nom": "La Chaize", "desserte": "12B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4979", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.749002381368739, 45.701424001904151 ] } }, -{ "type": "Feature", "properties": { "id": "45448", "nom": "Maison des Jeunes", "desserte": "12B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4980", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.747891057841513, 45.703914119662336 ] } }, -{ "type": "Feature", "properties": { "id": "45449", "nom": "Maison des Jeunes", "desserte": "12B:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4981", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.747804761674354, 45.703996982181224 ] } }, -{ "type": "Feature", "properties": { "id": "45450", "nom": "La Bonnette", "desserte": "12B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4983", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.742583582187847, 45.70416311832399 ] } }, -{ "type": "Feature", "properties": { "id": "45451", "nom": "La Bonnette", "desserte": "12B:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4982", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.743126418790995, 45.703944453665578 ] } }, -{ "type": "Feature", "properties": { "id": "45452", "nom": "Misery", "desserte": "11B:A,12B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4984", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.741129569173657, 45.70646249657586 ] } }, -{ "type": "Feature", "properties": { "id": "45453", "nom": "Misery", "desserte": "11B:R,12B:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4985", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.741225572970362, 45.706307425126823 ] } }, -{ "type": "Feature", "properties": { "id": "45454", "nom": "Chaponost Mairie", "desserte": "12B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4986", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.742665019671477, 45.709849864702171 ] } }, -{ "type": "Feature", "properties": { "id": "45455", "nom": "Chaponost Mairie", "desserte": "12B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4987", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.742654148525678, 45.709895101827492 ] } }, -{ "type": "Feature", "properties": { "id": "45456", "nom": "Chaponost La Madone", "desserte": "11B:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4988", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.738316806905892, 45.710897137566654 ] } }, -{ "type": "Feature", "properties": { "id": "45457", "nom": "Chaponost La Madone", "desserte": "11B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4989", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.738313669378241, 45.710825198580437 ] } }, -{ "type": "Feature", "properties": { "id": "45458", "nom": "Le Bouleau", "desserte": "11B:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4990", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.713818153226411, 45.713624198877355 ] } }, -{ "type": "Feature", "properties": { "id": "45459", "nom": "Le Bouleau", "desserte": "11B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4991", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.713903350894928, 45.713514384993118 ] } }, -{ "type": "Feature", "properties": { "id": "45460", "nom": "Chemin des Vieures", "desserte": "11B:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4992", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.723017833439822, 45.71985537327447 ] } }, -{ "type": "Feature", "properties": { "id": "45461", "nom": "Chemin des Vieures", "desserte": "11B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4993", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.723219344050666, 45.719761079171768 ] } }, -{ "type": "Feature", "properties": { "id": "45462", "nom": "Le Gourd", "desserte": "11B:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4997", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.714921611211373, 45.721026384755596 ] } }, -{ "type": "Feature", "properties": { "id": "45463", "nom": "Le Gourd", "desserte": "11B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4994", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.715150759016288, 45.720976523125806 ] } }, -{ "type": "Feature", "properties": { "id": "45464", "nom": "Le Devay", "desserte": "11B:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4998", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.704144780295672, 45.721128322926113 ] } }, -{ "type": "Feature", "properties": { "id": "45465", "nom": "Le Devay", "desserte": "11B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4999", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.704143620236239, 45.721101345406566 ] } }, -{ "type": "Feature", "properties": { "id": "45466", "nom": "Les Andres", "desserte": "11B:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5000", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.699328892013252, 45.722093914198304 ] } }, -{ "type": "Feature", "properties": { "id": "34068", "nom": "Croix-Luizet", "desserte": "T1A:R,T4A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "478", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.883114698453801, 45.783718467838732 ] } }, -{ "type": "Feature", "properties": { "id": "34350", "nom": "Gare Part-Dieu Vivier Merle", "desserte": "C7B:A,C7B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "518", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.857874851035167, 45.76013843224289 ] } }, -{ "type": "Feature", "properties": { "id": "34410", "nom": "Route d'Heyrieux", "desserte": "76A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3960", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.942202630951989, 45.688001059894916 ] } }, -{ "type": "Feature", "properties": { "id": "35978", "nom": "Parc Chambovet", "desserte": "C8A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4056", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.896753007587126, 45.74747576029295 ] } }, -{ "type": "Feature", "properties": { "id": "36152", "nom": "Meyzieu Plantees", "desserte": "67A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2195", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 5.011728029202183, 45.760511744734728 ] } }, -{ "type": "Feature", "properties": { "id": "36198", "nom": "Le Manoir", "desserte": "78B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4093", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.795714605810552, 45.611209860886603 ] } }, -{ "type": "Feature", "properties": { "id": "36251", "nom": "Marcel Paul", "desserte": "80A:A,80A:R,81A:A,81A:R,R3A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4150", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.770741246814008, 45.583817048898489 ] } }, -{ "type": "Feature", "properties": { "id": "36263", "nom": "Givors Vallee du Gier", "desserte": "80A:A,80A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4160", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.740546651298373, 45.581292557699783 ] } }, -{ "type": "Feature", "properties": { "id": "37164", "nom": "Les Alpes", "desserte": "ZI3A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3766", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.936939663931255, 45.780559836739243 ] } }, -{ "type": "Feature", "properties": { "id": "37506", "nom": "Porte de Lyon", "desserte": "3A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2473", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.762793325514298, 45.821450812508232 ] } }, -{ "type": "Feature", "properties": { "id": "42994", "nom": "Lorette", "desserte": "78B:R,C10A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2084", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.798334926186314, 45.707561707056172 ] } }, -{ "type": "Feature", "properties": { "id": "43300", "nom": "Centre commercial Sept Chemins", "desserte": "52A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4832", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.931149538107009, 45.746730992843581 ] } }, -{ "type": "Feature", "properties": { "id": "43375", "nom": "Legay", "desserte": "C8A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3316", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.917427210846087, 45.754599549607306 ] } }, -{ "type": "Feature", "properties": { "id": "45467", "nom": "Les Andres", "desserte": "11B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5001", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.699328120196712, 45.722075929148254 ] } }, -{ "type": "Feature", "properties": { "id": "45468", "nom": "Pont d'Oullins", "desserte": "11B:A,12B:A,14B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2506", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.808882869253558, 45.717869908035752 ] } }, -{ "type": "Feature", "properties": { "id": "45469", "nom": "Pont d'Oullins", "desserte": "11B:R,12B:R,14B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2505", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.808991135009605, 45.717705503631009 ] } }, -{ "type": "Feature", "properties": { "id": "45472", "nom": "Anatoile Celle", "desserte": "12B:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5004", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.764002550461621, 45.71678882007312 ] } }, -{ "type": "Feature", "properties": { "id": "45473", "nom": "Anatoile Celle", "desserte": "12B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5005", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.76396205702385, 45.716744691967307 ] } }, -{ "type": "Feature", "properties": { "id": "45474", "nom": "Chaponost les Vergers", "desserte": "12B:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5006", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.758669024191607, 45.71705712060934 ] } }, -{ "type": "Feature", "properties": { "id": "45475", "nom": "Chaponost les Vergers", "desserte": "12B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5007", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.758821488298458, 45.717017825175105 ] } }, -{ "type": "Feature", "properties": { "id": "45476", "nom": "Centre Social", "desserte": "12B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5008", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.750231222977594, 45.714808766170677 ] } }, -{ "type": "Feature", "properties": { "id": "45477", "nom": "Centre Social", "desserte": "12B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5009", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.750184829686776, 45.714629748057959 ] } }, -{ "type": "Feature", "properties": { "id": "45478", "nom": "Chaponost Bellevue", "desserte": "12B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5010", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.747711446559705, 45.712135711452575 ] } }, -{ "type": "Feature", "properties": { "id": "45479", "nom": "Chaponost Bellevue", "desserte": "12B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5011", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.747800511844996, 45.712115795291297 ] } }, -{ "type": "Feature", "properties": { "id": "45482", "nom": "Paul Doumer", "desserte": "12B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5014", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.73994495235241, 45.711699335688436 ] } }, -{ "type": "Feature", "properties": { "id": "45483", "nom": "Paul Doumer", "desserte": "12B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5015", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.740045678345474, 45.711652173546163 ] } }, -{ "type": "Feature", "properties": { "id": "45484", "nom": "Bernicot", "desserte": "12B:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5016", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.766389820684364, 45.692560770734879 ] } }, -{ "type": "Feature", "properties": { "id": "45485", "nom": "Bernicot", "desserte": "12B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5017", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.766648036795988, 45.692591178487362 ] } }, -{ "type": "Feature", "properties": { "id": "45638", "nom": "Porte de Lyon", "desserte": "3A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2472", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.763261104830846, 45.821548725240234 ] } }, -{ "type": "Feature", "properties": { "id": "34633", "nom": "Jonage Lavoir", "desserte": "95A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3983", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 5.048572998078477, 45.79204426600878 ] } }, -{ "type": "Feature", "properties": { "id": "34634", "nom": "Jonage Lavoir", "desserte": "95A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3984", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 5.048601365727533, 45.792097593658035 ] } }, -{ "type": "Feature", "properties": { "id": "34755", "nom": "Denuziere", "desserte": "S1A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3991", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.821807480617867, 45.747710991759966 ] } }, -{ "type": "Feature", "properties": { "id": "34837", "nom": "Sainte-Blandine", "desserte": "T1A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "505", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.822080292703689, 45.74421234100997 ] } }, -{ "type": "Feature", "properties": { "id": "36275", "nom": "Tour de Varissan", "desserte": "81A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4172", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.761507299759953, 45.595961632527882 ] } }, -{ "type": "Feature", "properties": { "id": "36277", "nom": "Intermediaire", "desserte": "81A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4174", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.75879047705048, 45.59423830070709 ] } }, -{ "type": "Feature", "properties": { "id": "36279", "nom": "Chatelaine", "desserte": "81A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4176", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.752784885542304, 45.59206391337721 ] } }, -{ "type": "Feature", "properties": { "id": "37295", "nom": "Gare de Vénissieux", "desserte": "62A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "279", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.888770316781976, 45.706206517037025 ] } }, -{ "type": "Feature", "properties": { "id": "37301", "nom": "Gare de Vénissieux", "desserte": "62A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "285", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.88867631194975, 45.706118643162476 ] } }, -{ "type": "Feature", "properties": { "id": "37374", "nom": "Neuville", "desserte": "40A:R,70A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "603", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.838458751255592, 45.875869897000925 ] } }, -{ "type": "Feature", "properties": { "id": "37376", "nom": "College Evariste Gallois", "desserte": "95A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4287", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.993866902383796, 45.769613555543692 ] } }, -{ "type": "Feature", "properties": { "id": "37399", "nom": "Gorge de Loup", "desserte": "448A:A,66A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "53", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.80552815809075, 45.766279411840834 ] } }, -{ "type": "Feature", "properties": { "id": "37438", "nom": "Castellane Leclerc", "desserte": "S8A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4307", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.894459706451199, 45.812653186122262 ] } }, -{ "type": "Feature", "properties": { "id": "37487", "nom": "Pole Alimentaire", "desserte": "87A:A,ZI1A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4321", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.924712842579066, 45.669205984281128 ] } }, -{ "type": "Feature", "properties": { "id": "37488", "nom": "Pole Alimentaire", "desserte": "87A:R,ZI1A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4320", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.924780347291754, 45.669276437240534 ] } }, -{ "type": "Feature", "properties": { "id": "37491", "nom": "Industrie Charbonnier", "desserte": "ZI1A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4323", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.912401358329616, 45.687627466846223 ] } }, -{ "type": "Feature", "properties": { "id": "37492", "nom": "Industrie Charbonnier", "desserte": "ZI1A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4322", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.912466767123971, 45.687652968524219 ] } }, -{ "type": "Feature", "properties": { "id": "37495", "nom": "Gare de Limonest", "desserte": "61A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3232", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.757267348126462, 45.826349491116822 ] } }, -{ "type": "Feature", "properties": { "id": "37500", "nom": "Gare de Limonest", "desserte": "61A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3231", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.756882654634744, 45.826384778399991 ] } }, -{ "type": "Feature", "properties": { "id": "37600", "nom": "Place Coponat", "desserte": "68B:A,76A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4360", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.970443199043868, 45.740324851166349 ] } }, -{ "type": "Feature", "properties": { "id": "37601", "nom": "Place Coponat", "desserte": "68B:R,76A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4359", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.970322892315406, 45.740228656242081 ] } }, -{ "type": "Feature", "properties": { "id": "37616", "nom": "Ecully Le Trouillat", "desserte": "S15A:A,S15A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1380", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.77391113292449, 45.775755159799346 ] } }, -{ "type": "Feature", "properties": { "id": "37628", "nom": "Parc Tete d'Or-Churchill", "desserte": "C4A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2357", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.844552566421291, 45.777359114154606 ] } }, -{ "type": "Feature", "properties": { "id": "37674", "nom": "Terres Plates", "desserte": "2EX:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4382", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.727257390833163, 45.743806138971863 ] } }, -{ "type": "Feature", "properties": { "id": "37684", "nom": "Serpoly Nervieux", "desserte": "S7A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4385", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.822920994282464, 45.814474911809221 ] } }, -{ "type": "Feature", "properties": { "id": "41995", "nom": "Cuire", "desserte": "33A:R,S5A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "38", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.833391144348884, 45.785860927045647 ] } }, -{ "type": "Feature", "properties": { "id": "42061", "nom": "Montee Roy", "desserte": "70A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4692", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.8509226412926, 45.831728452499149 ] } }, -{ "type": "Feature", "properties": { "id": "39939", "nom": "Maurice Ravel", "desserte": "60A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4560", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.861084458311584, 45.677912089338328 ] } }, -{ "type": "Feature", "properties": { "id": "43035", "nom": "Chemin de Montluzin", "desserte": "21A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4796", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.749990413862245, 45.869098613914389 ] } }, -{ "type": "Feature", "properties": { "id": "43394", "nom": "Centre Commercial Genay", "desserte": "43A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4844", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.822340053872431, 45.892159484014336 ] } }, -{ "type": "Feature", "properties": { "id": "45855", "nom": "Temps modernes", "desserte": "62A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5035", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.917637357900152, 45.708351419659586 ] } }, -{ "type": "Feature", "properties": { "id": "45856", "nom": "Charlie Chaplin", "desserte": "62A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5036", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.912566426161668, 45.711066417234257 ] } }, -{ "type": "Feature", "properties": { "id": "45857", "nom": "Charlie Chaplin", "desserte": "62A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5037", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.91258745383295, 45.711098429331074 ] } }, -{ "type": "Feature", "properties": { "id": "45861", "nom": "Manufacture Montluc", "desserte": "T4A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "756", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.860304914642793, 45.750148251818338 ] } }, -{ "type": "Feature", "properties": { "id": "45862", "nom": "Manufacture Montluc", "desserte": "T4A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "761", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.860341998312554, 45.750143817541449 ] } }, -{ "type": "Feature", "properties": { "id": "45869", "nom": "Lycee Colbert", "desserte": "T4A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "752", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.858992894546708, 45.745592513365466 ] } }, -{ "type": "Feature", "properties": { "id": "46190", "nom": "Debourg", "desserte": "C22A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "318", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.834675440351051, 45.730962251199735 ] } }, -{ "type": "Feature", "properties": { "id": "46265", "nom": "Brotillon", "desserte": "17B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5213", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.827333603873079, 45.70385566676805 ] } }, -{ "type": "Feature", "properties": { "id": "46311", "nom": "Jean Vallier", "desserte": "ZI6A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5327", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.839198359440995, 45.734048326313264 ] } }, -{ "type": "Feature", "properties": { "id": "46312", "nom": "Parilly", "desserte": "112A:A,112A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5339", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.887428395610223, 45.720021346586179 ] } }, -{ "type": "Feature", "properties": { "id": "46314", "nom": "Lamartine", "desserte": "28A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5452", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 5.019574890870172, 45.740333181634156 ] } }, -{ "type": "Feature", "properties": { "id": "46315", "nom": "Lamartine", "desserte": "28A:R,29A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5453", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 5.019445951809227, 45.740175130260432 ] } }, -{ "type": "Feature", "properties": { "id": "46316", "nom": "Genas Rond Point de l'Epine(D)", "desserte": "28A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5454", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.9831090646486, 45.734687181866796 ] } }, -{ "type": "Feature", "properties": { "id": "46317", "nom": "Genas Rond Point de l'Epine(D)", "desserte": "28A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5455", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.983082091608192, 45.7347571310181 ] } }, -{ "type": "Feature", "properties": { "id": "46318", "nom": "Genas Place Jean Jaures", "desserte": "28A:R,29A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5456", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 5.017093925382362, 45.738520161265903 ] } }, -{ "type": "Feature", "properties": { "id": "46327", "nom": "Calmette - Muriers", "desserte": "ZI5B:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5463", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.986577069900289, 45.717214332745407 ] } }, -{ "type": "Feature", "properties": { "id": "46328", "nom": "Calmette - Muriers", "desserte": "ZI5B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5464", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.986767158475446, 45.716865257799 ] } }, -{ "type": "Feature", "properties": { "id": "35977", "nom": "Hopital Neurologique", "desserte": "C8A:R,C9A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1572", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.898263787547436, 45.747891358465168 ] } }, -{ "type": "Feature", "properties": { "id": "37895", "nom": "La Garenne", "desserte": "39A:A,60A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1728", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.858906690277688, 45.667087633787609 ] } }, -{ "type": "Feature", "properties": { "id": "37907", "nom": "Meyzieu Bascule", "desserte": "95A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4436", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.996022651396436, 45.765781771544731 ] } }, -{ "type": "Feature", "properties": { "id": "37980", "nom": "Lycee Cuzin", "desserte": "70A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3491", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.856020859346349, 45.801090809044844 ] } }, -{ "type": "Feature", "properties": { "id": "38236", "nom": "Gadagne - Foch", "desserte": "17B:R,78B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4500", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.786226751038341, 45.688078701868598 ] } }, -{ "type": "Feature", "properties": { "id": "38237", "nom": "Gadagne - Foch", "desserte": "17B:A,78B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4501", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.785953681519019, 45.688291690314891 ] } }, -{ "type": "Feature", "properties": { "id": "38295", "nom": "La Fouillouse", "desserte": "50A:A,ZI8A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3576", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.983585947251163, 45.686959694908978 ] } }, -{ "type": "Feature", "properties": { "id": "38296", "nom": "Manissieux Place Balzac", "desserte": "50A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5524", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.978156696921403, 45.70604528369519 ] } }, -{ "type": "Feature", "properties": { "id": "38314", "nom": "Les Lavandes", "desserte": "15A:A,15A:R,18B:A,18B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4503", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.803893203054518, 45.645530583343955 ] } }, -{ "type": "Feature", "properties": { "id": "38358", "nom": "Centre Culturel", "desserte": "19A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2589", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.77919840358305, 45.778952644411277 ] } }, -{ "type": "Feature", "properties": { "id": "38594", "nom": "Vernaison La Rossignole", "desserte": "15A:A,15A:R,18B:A,18B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2940", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.807677279281905, 45.641486754853339 ] } }, -{ "type": "Feature", "properties": { "id": "38754", "nom": "Les Essards", "desserte": "15A:A,15A:R,18B:A,18B:R,78B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3904", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.802107363719, 45.639746267749679 ] } }, -{ "type": "Feature", "properties": { "id": "38897", "nom": "St Rambert Les Rivieres", "desserte": "31A:R,S10A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2771", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.837467595542245, 45.807698210035532 ] } }, -{ "type": "Feature", "properties": { "id": "39034", "nom": "Feyzin Gare", "desserte": "60A:R,GE2A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1414", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.853457434023097, 45.665553909509278 ] } }, -{ "type": "Feature", "properties": { "id": "39035", "nom": "Feyzin Gare", "desserte": "60A:A,GE2A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1413", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.853612882069402, 45.665865460427966 ] } }, -{ "type": "Feature", "properties": { "id": "39037", "nom": "Place Docteurs Merieux", "desserte": "C22A:A,C7B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2435", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.825219460070087, 45.733033431008941 ] } }, -{ "type": "Feature", "properties": { "id": "39054", "nom": "Gare Part-Dieu Vivier Merle", "desserte": "25A:A,C9A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "522", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.857803204450823, 45.760601085171785 ] } }, -{ "type": "Feature", "properties": { "id": "39095", "nom": "Eaux Vives", "desserte": "43A:A,43A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4519", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.829283878945814, 45.838124220987162 ] } }, -{ "type": "Feature", "properties": { "id": "39096", "nom": "St Romain Centre", "desserte": "43A:A,43A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4520", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.824925695190746, 45.838004743919271 ] } }, -{ "type": "Feature", "properties": { "id": "39134", "nom": "Montrochet", "desserte": "S1A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5249", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.815789726960593, 45.740274158631678 ] } }, -{ "type": "Feature", "properties": { "id": "39135", "nom": "Montrochet", "desserte": "S1A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5250", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.815963563019541, 45.740423336763847 ] } }, -{ "type": "Feature", "properties": { "id": "39215", "nom": "Brindas Salle des Fetes", "desserte": "73A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4529", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.69721462991693, 45.722534446520527 ] } }, -{ "type": "Feature", "properties": { "id": "39274", "nom": "Charles De Gaulle", "desserte": "33A:R,S8A:A,ZI4A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1099", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.891816422547167, 45.816989015040846 ] } }, -{ "type": "Feature", "properties": { "id": "39334", "nom": "Irigny Hauts de Selettes", "desserte": "15A:A,15A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4533", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.816774531737818, 45.659440818699679 ] } }, -{ "type": "Feature", "properties": { "id": "42157", "nom": "Limonest Le Puy d'Or", "desserte": "3A:A,61A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4703", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.77626920856559, 45.813841241500562 ] } }, -{ "type": "Feature", "properties": { "id": "42278", "nom": "Chasselay Chalay", "desserte": "21A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4706", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.779293543633634, 45.876693104677834 ] } }, -{ "type": "Feature", "properties": { "id": "42280", "nom": "Lissieu Le Nelie", "desserte": "61A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4707", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.733674040248425, 45.850995580833477 ] } }, -{ "type": "Feature", "properties": { "id": "36222", "nom": "Givors Parc des Sports", "desserte": "80A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4120", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.770752979670747, 45.601809496222032 ] } }, -{ "type": "Feature", "properties": { "id": "39376", "nom": "Lycée Lumière", "desserte": "T4A:A,T4A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "615", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.861757299718104, 45.736780790750082 ] } }, -{ "type": "Feature", "properties": { "id": "39379", "nom": "Etats-Unis Tony Garnier", "desserte": "T4A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "618", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.864838333649605, 45.733001739482489 ] } }, -{ "type": "Feature", "properties": { "id": "39380", "nom": "Professeur Beauvisage - C.I.S.L.", "desserte": "T4A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "620", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.867227899530243, 45.729774397688473 ] } }, -{ "type": "Feature", "properties": { "id": "39381", "nom": "Professeur Beauvisage - C.I.S.L.", "desserte": "T4A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "621", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.867320676588959, 45.729810290486945 ] } }, -{ "type": "Feature", "properties": { "id": "39383", "nom": "Etats-Unis Viviani", "desserte": "T4A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "629", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.871142379899854, 45.724906380553186 ] } }, -{ "type": "Feature", "properties": { "id": "41058", "nom": "Clos Burtin", "desserte": "S9A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4631", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.787694371016524, 45.704320389746442 ] } }, -{ "type": "Feature", "properties": { "id": "41859", "nom": "St Genis Gadagne", "desserte": "78B:A,C10A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1451", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.796021533008815, 45.701788835351969 ] } }, -{ "type": "Feature", "properties": { "id": "41979", "nom": "Clos Verger", "desserte": "39A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4673", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.892583032648113, 45.718874547130667 ] } }, -{ "type": "Feature", "properties": { "id": "41981", "nom": "Anatole France", "desserte": "39A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "830", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.893994950325608, 45.721605775608566 ] } }, -{ "type": "Feature", "properties": { "id": "41982", "nom": "Patinoire Baraban", "desserte": "C16A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4676", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.868338533568909, 45.761721208408026 ] } }, -{ "type": "Feature", "properties": { "id": "41983", "nom": "Patinoire Baraban", "desserte": "C16A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4675", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.868423478436225, 45.761890317230879 ] } }, -{ "type": "Feature", "properties": { "id": "41997", "nom": "Tassin Deperet", "desserte": "5A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2813", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.761793988180821, 45.758249676436122 ] } }, -{ "type": "Feature", "properties": { "id": "42016", "nom": "Gare de Pierre Benite", "desserte": "17B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4680", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.823308811691087, 45.705822683083525 ] } }, -{ "type": "Feature", "properties": { "id": "42017", "nom": "Gare de Pierre Benite", "desserte": "17B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4679", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.823270564511647, 45.705857645039224 ] } }, -{ "type": "Feature", "properties": { "id": "42018", "nom": "Brotillon", "desserte": "17B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4681", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.827423586450474, 45.70375465672776 ] } }, -{ "type": "Feature", "properties": { "id": "42020", "nom": "Fosse aux Ours", "desserte": "C9A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4683", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.840743066061242, 45.75754247772614 ] } }, -{ "type": "Feature", "properties": { "id": "42023", "nom": "Brossolette - Genas", "desserte": "24A:R,25A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "981", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.918389205403697, 45.748519451231559 ] } }, -{ "type": "Feature", "properties": { "id": "42024", "nom": "Triangle de Bron", "desserte": "26A:A,26A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2855", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.926482508962947, 45.726792498563647 ] } }, -{ "type": "Feature", "properties": { "id": "42025", "nom": "Colonel Chambonnet", "desserte": "26A:A,26A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4684", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.923677635177715, 45.727001226764564 ] } }, -{ "type": "Feature", "properties": { "id": "42026", "nom": "Croizat Rocade", "desserte": "1EX:R,26A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4686", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.971720299917208, 45.712227768038467 ] } }, -{ "type": "Feature", "properties": { "id": "42027", "nom": "Croizat Rocade", "desserte": "1EX:A,26A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4685", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.971527421784451, 45.712493345778661 ] } }, -{ "type": "Feature", "properties": { "id": "42028", "nom": "Galline", "desserte": "69A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4687", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.867610876523536, 45.776373715828207 ] } }, -{ "type": "Feature", "properties": { "id": "42029", "nom": "Galline", "desserte": "69A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4688", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.868199099913769, 45.776297447333853 ] } }, -{ "type": "Feature", "properties": { "id": "42030", "nom": "Hopitaux Est", "desserte": "C9A:A,C9A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4689", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.904580062964239, 45.746585855600344 ] } }, -{ "type": "Feature", "properties": { "id": "12267", "nom": "St Rambert Les Rivieres", "desserte": "31A:A,S10A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2769", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.837386587777681, 45.807898040565625 ] } }, -{ "type": "Feature", "properties": { "id": "12268", "nom": "Pont Mouton", "desserte": "19A:R,2A:R,31A:R,45A:R,90A:R,C14A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2549", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.80928647084271, 45.773496594177956 ] } }, -{ "type": "Feature", "properties": { "id": "12272", "nom": "Gare de Vaise", "desserte": "31A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "254", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.804525776411081, 45.780631173451198 ] } }, -{ "type": "Feature", "properties": { "id": "12273", "nom": "Gare de Vaise", "desserte": "31A:R,C6B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "255", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.805140707249523, 45.780860688168907 ] } }, -{ "type": "Feature", "properties": { "id": "12275", "nom": "Gare de Vaise", "desserte": "40A:A,43A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "256", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.804416102860675, 45.780480564926918 ] } }, -{ "type": "Feature", "properties": { "id": "12279", "nom": "Falsan", "desserte": "31A:R,S10A:R,S7A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1401", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.834251147935396, 45.804043245520489 ] } }, -{ "type": "Feature", "properties": { "id": "12280", "nom": "Clos Jouve", "desserte": "448A:A,45A:R,C13A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1212", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.821837282976748, 45.77313851126727 ] } }, -{ "type": "Feature", "properties": { "id": "12289", "nom": "Bellecour Le Viste", "desserte": "27A:R,C12A:R,C9A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "910", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.833891130511737, 45.757587096331051 ] } }, -{ "type": "Feature", "properties": { "id": "12300", "nom": "Meyzieu Poste", "desserte": "85A:R,95A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2198", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.996791239261295, 45.76678076794618 ] } }, -{ "type": "Feature", "properties": { "id": "30000", "nom": "Gare Saint Paul", "desserte": "C3A:R,S1A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2752", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.827359639458331, 45.766130270227997 ] } }, -{ "type": "Feature", "properties": { "id": "30006", "nom": "Oullins Ville", "desserte": "63A:R,78B:R,C10A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2338", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.80311834778334, 45.71224515096587 ] } }, -{ "type": "Feature", "properties": { "id": "30012", "nom": "La Ferlatiere", "desserte": "20A:A,23A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3257", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.807534973567861, 45.81869378829893 ] } }, -{ "type": "Feature", "properties": { "id": "30014", "nom": "Le Monteillier", "desserte": "20A:A,23A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3259", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.806548735556348, 45.817086260518138 ] } }, -{ "type": "Feature", "properties": { "id": "30015", "nom": "Le Monteillier", "desserte": "23A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3260", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.806140775281727, 45.816888200072484 ] } }, -{ "type": "Feature", "properties": { "id": "30016", "nom": "Mouillard", "desserte": "21A:A,448A:A,61A:A,89A:A,C14A:A,C6B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3262", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.803987673038319, 45.78498152358447 ] } }, -{ "type": "Feature", "properties": { "id": "30017", "nom": "Mouillard", "desserte": "21A:R,61A:R,89A:R,C14A:R,C6B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3261", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.804033839267982, 45.784863495129024 ] } }, -{ "type": "Feature", "properties": { "id": "30019", "nom": "La Piemente", "desserte": "21A:A,61A:A,89A:A,C6B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3263", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.800739174621697, 45.785412885017472 ] } }, -{ "type": "Feature", "properties": { "id": "30025", "nom": "St Just", "desserte": "66A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "209", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.815896305618906, 45.757193855105989 ] } }, -{ "type": "Feature", "properties": { "id": "30028", "nom": "Batterie", "desserte": "24A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "888", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.916130620066361, 45.744223679431904 ] } }, -{ "type": "Feature", "properties": { "id": "30029", "nom": "Residence Marianne", "desserte": "62A:A,87A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3321", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.958916565826093, 45.664090205654198 ] } }, -{ "type": "Feature", "properties": { "id": "30031", "nom": "General Benoist", "desserte": "52A:A,ZI7A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3266", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.929463971255363, 45.738245531194551 ] } }, -{ "type": "Feature", "properties": { "id": "30032", "nom": "General Benoist", "desserte": "52A:R,ZI7A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3265", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.929478507001649, 45.738281201307785 ] } }, -{ "type": "Feature", "properties": { "id": "30035", "nom": "Meyzieu Salle des Fetes", "desserte": "67A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3269", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 5.00112756989648, 45.766020826951824 ] } }, -{ "type": "Feature", "properties": { "id": "30044", "nom": "Val Fontaine Centre", "desserte": "72B:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3712", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.725911969607766, 45.761674341329922 ] } }, -{ "type": "Feature", "properties": { "id": "30046", "nom": "Val Fontaine", "desserte": "72B:A,72B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3716", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.727352825596109, 45.761391645002519 ] } }, -{ "type": "Feature", "properties": { "id": "30057", "nom": "Charlemagne - C.-Perier", "desserte": "S1A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3157", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.82255420764313, 45.742041759698019 ] } }, -{ "type": "Feature", "properties": { "id": "30068", "nom": "Depot de Cuire", "desserte": "33A:A,38A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3719", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.834885446142575, 45.788547051350839 ] } }, -{ "type": "Feature", "properties": { "id": "30069", "nom": "Depot de Cuire", "desserte": "33A:R,38A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3720", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.835099902602686, 45.789019344899238 ] } }, -{ "type": "Feature", "properties": { "id": "30083", "nom": "Garibaldi - Berthelot", "desserte": "35A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "375", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.847577847289974, 45.743879007937906 ] } }, -{ "type": "Feature", "properties": { "id": "30093", "nom": "Gare de Vaise", "desserte": "4A:A,942A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "261", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.804224133610012, 45.78050278529934 ] } }, -{ "type": "Feature", "properties": { "id": "30103", "nom": "Bellecour", "desserte": "301A:A", "pmr": "t", "ascenseur": "t", "escalator": "t", "gid": "7", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.833022555794803, 45.757622526749557 ] } }, -{ "type": "Feature", "properties": { "id": "30137", "nom": "Gare de Vaise", "desserte": "2A:R,C14A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "267", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.804937840389366, 45.780640119756526 ] } }, -{ "type": "Feature", "properties": { "id": "30156", "nom": "Hôtel de Ville - Louis Pradel", "desserte": "303:A,303:R", "pmr": "t", "ascenseur": "t", "escalator": "t", "gid": "117", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.835955419864083, 45.768134460822544 ] } }, -{ "type": "Feature", "properties": { "id": "30159", "nom": "Cuire", "desserte": "303:A,303:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "43", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.8325013993184, 45.785252689663018 ] } }, -{ "type": "Feature", "properties": { "id": "30166", "nom": "La Gabrielle", "desserte": "118A:A,21A:A,61A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1719", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.7802346390812, 45.807778381867358 ] } }, -{ "type": "Feature", "properties": { "id": "30173", "nom": "Hôtel de Ville - Louis Pradel", "desserte": "C14A:R,S6A:A,S6A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "111", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.835993912708681, 45.766793508000909 ] } }, -{ "type": "Feature", "properties": { "id": "30180", "nom": "Laurent Bonnevay", "desserte": "C17A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "233", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.909381845822522, 45.764865811878934 ] } }, -{ "type": "Feature", "properties": { "id": "30185", "nom": "Mermoz - Pinel", "desserte": "304:A", "pmr": "t", "ascenseur": "t", "escalator": "t", "gid": "133", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.887293997373559, 45.730461865778373 ] } }, -{ "type": "Feature", "properties": { "id": "30187", "nom": "Laennec", "desserte": "304:A", "pmr": "t", "ascenseur": "t", "escalator": "t", "gid": "122", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.886339318234625, 45.738712203713121 ] } }, -{ "type": "Feature", "properties": { "id": "30190", "nom": "Grange Blanche", "desserte": "304:R", "pmr": "t", "ascenseur": "t", "escalator": "t", "gid": "84", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.878903364103566, 45.742823469641742 ] } }, -{ "type": "Feature", "properties": { "id": "30192", "nom": "Monplaisir Lumière", "desserte": "304:R", "pmr": "t", "ascenseur": "t", "escalator": "t", "gid": "142", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.871797920372375, 45.745322189328135 ] } }, -{ "type": "Feature", "properties": { "id": "30194", "nom": "Sans Souci", "desserte": "304:R", "pmr": "t", "ascenseur": "t", "escalator": "t", "gid": "193", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.864761589718881, 45.747749310185895 ] } }, -{ "type": "Feature", "properties": { "id": "30198", "nom": "Saxe - Gambetta", "desserte": "304:R", "pmr": "t", "ascenseur": "t", "escalator": "t", "gid": "201", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.847129499256165, 45.75382572886064 ] } }, -{ "type": "Feature", "properties": { "id": "30199", "nom": "Guillotière - Gabriel Péri", "desserte": "304:A", "pmr": "t", "ascenseur": "t", "escalator": "t", "gid": "94", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.842577476030052, 45.755468264629194 ] } }, -{ "type": "Feature", "properties": { "id": "30200", "nom": "Guillotière - Gabriel Péri", "desserte": "304:R", "pmr": "t", "ascenseur": "t", "escalator": "t", "gid": "96", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.842535168843551, 45.755406110729119 ] } }, -{ "type": "Feature", "properties": { "id": "30210", "nom": "Gare de Vaise", "desserte": "304:R", "pmr": "t", "ascenseur": "t", "escalator": "t", "gid": "271", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.803738997016699, 45.779799747556368 ] } }, -{ "type": "Feature", "properties": { "id": "30211", "nom": "Vieux Lyon", "desserte": "325:A,325:R,326:A,326:R", "pmr": "t", "ascenseur": "t", "escalator": "t", "gid": "220", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.826430543874466, 45.759895712202535 ] } }, -{ "type": "Feature", "properties": { "id": "30212", "nom": "Les Minimes - Théatres Romains", "desserte": "325:A", "pmr": "t", "ascenseur": "t", "escalator": "t", "gid": "125", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.821439103229817, 45.758606986380308 ] } }, -{ "type": "Feature", "properties": { "id": "30213", "nom": "Les Minimes - Théatres Romains", "desserte": "325:R", "pmr": "t", "ascenseur": "t", "escalator": "t", "gid": "126", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.821467788044742, 45.758561615892724 ] } }, -{ "type": "Feature", "properties": { "id": "30215", "nom": "Fourvière", "desserte": "326:A,326:R", "pmr": "t", "ascenseur": "t", "escalator": "t", "gid": "342", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.821390258503786, 45.762104014015186 ] } }, -{ "type": "Feature", "properties": { "id": "30217", "nom": "Champvert - Les Massues", "desserte": "45A:R,90A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1999", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.79596131294947, 45.759990622527496 ] } }, -{ "type": "Feature", "properties": { "id": "30230", "nom": "Decines Esplanade", "desserte": "16A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3092", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.9741918306264, 45.772399841800564 ] } }, -{ "type": "Feature", "properties": { "id": "30231", "nom": "Decines Esplanade", "desserte": "67A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3094", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.974888691314241, 45.772446484776381 ] } }, -{ "type": "Feature", "properties": { "id": "30233", "nom": "Decines Esplanade", "desserte": "79A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3095", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.974262975179463, 45.772542198140179 ] } }, -{ "type": "Feature", "properties": { "id": "30234", "nom": "Decines Esplanade", "desserte": "16A:A,323A:A,57A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3096", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.974736660866128, 45.772495064817861 ] } }, -{ "type": "Feature", "properties": { "id": "30239", "nom": "Chantemerle", "desserte": "84A:A,84A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1090", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.794279992423137, 45.820235602797375 ] } }, -{ "type": "Feature", "properties": { "id": "30249", "nom": "Ecully Fayolle", "desserte": "S15A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3750", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.781101894896595, 45.78328571729034 ] } }, -{ "type": "Feature", "properties": { "id": "30257", "nom": "Centre Culturel", "desserte": "S15A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2591", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.77859565426925, 45.778704723938134 ] } }, -{ "type": "Feature", "properties": { "id": "30261", "nom": "St Genis Lycee Descartes", "desserte": "17B:A,17B:R,78B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3243", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.78413310593756, 45.690095639159978 ] } }, -{ "type": "Feature", "properties": { "id": "30266", "nom": "Genay Proulieu", "desserte": "43A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3752", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.845044255120926, 45.903400186815155 ] } }, -{ "type": "Feature", "properties": { "id": "30273", "nom": "Montmartin - Merieux", "desserte": "87A:A,ZI1A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3753", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.921471471359342, 45.670721014891498 ] } }, -{ "type": "Feature", "properties": { "id": "30274", "nom": "Montmartin - Merieux", "desserte": "87A:R,ZI1A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3754", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.921517710313513, 45.670611931129493 ] } }, -{ "type": "Feature", "properties": { "id": "30281", "nom": "Charbonnieres Gare", "desserte": "GE6A:A,GE6A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3758", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.735987631716807, 45.782170390683916 ] } }, -{ "type": "Feature", "properties": { "id": "30304", "nom": "Lenine - Fromont", "desserte": "ZI3A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3767", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.937523802087116, 45.778493954852173 ] } }, -{ "type": "Feature", "properties": { "id": "30328", "nom": "La Sablière", "desserte": "S8A:A,S8A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "418", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.906939733978953, 45.808389771756914 ] } }, -{ "type": "Feature", "properties": { "id": "30330", "nom": "Castellane", "desserte": "S8A:A,S8A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "19", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.899333956843468, 45.80814040330619 ] } }, -{ "type": "Feature", "properties": { "id": "30342", "nom": "Buyer - Gai Vallon", "desserte": "55A:R,90A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3778", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.800662185042547, 45.763307942939008 ] } }, -{ "type": "Feature", "properties": { "id": "30343", "nom": "Trion - 4 Colonnes", "desserte": "55A:R,66A:R,90A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3779", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.81206659827698, 45.758673537815717 ] } }, -{ "type": "Feature", "properties": { "id": "30368", "nom": "Leon Berard", "desserte": "24A:A,C22A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1901", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.879279834108565, 45.7413470093881 ] } }, -{ "type": "Feature", "properties": { "id": "30380", "nom": "St Agnan", "desserte": "296:R,C25B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2687", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.863034478873464, 45.740876772402665 ] } }, -{ "type": "Feature", "properties": { "id": "30387", "nom": "Avenue du Plateau", "desserte": "66A:R,C14A:R,S11A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3783", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.794727961070849, 45.784194449489597 ] } }, -{ "type": "Feature", "properties": { "id": "30388", "nom": "Avenue du Plateau", "desserte": "66A:A,C14A:A,S11A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3784", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.794782185381623, 45.784256270114177 ] } }, -{ "type": "Feature", "properties": { "id": "30389", "nom": "Duchere Les Erables", "desserte": "66A:R,C14A:R,S11A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3786", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.793655947570746, 45.782660724415813 ] } }, -{ "type": "Feature", "properties": { "id": "43421", "nom": "Bellecombe", "desserte": "GE2A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "894", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.84500951726948, 45.648056040047919 ] } }, -{ "type": "Feature", "properties": { "id": "30392", "nom": "Maison de l'Enfance", "desserte": "S11A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3787", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.793276386017708, 45.779635672776656 ] } }, -{ "type": "Feature", "properties": { "id": "30394", "nom": "Le Chateau Duchere", "desserte": "S11A:A,S11A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3789", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.794402513784847, 45.779791053406711 ] } }, -{ "type": "Feature", "properties": { "id": "30398", "nom": "Grange Rouge", "desserte": "C22A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1514", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.873538667210927, 45.73142251452655 ] } }, -{ "type": "Feature", "properties": { "id": "30406", "nom": "St Mathieu", "desserte": "C16A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3790", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.86846460277324, 45.741267472878285 ] } }, -{ "type": "Feature", "properties": { "id": "30407", "nom": "St Mathieu", "desserte": "C16A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3791", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.867222115034864, 45.742483662001568 ] } }, -{ "type": "Feature", "properties": { "id": "30411", "nom": "Centre Nautique Tony Bertrand", "desserte": "35A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3792", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.838154394026017, 45.753495656134696 ] } }, -{ "type": "Feature", "properties": { "id": "30417", "nom": "Le Colombier - Veyrie", "desserte": "S2A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3796", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.718221202920676, 45.811567164328743 ] } }, -{ "type": "Feature", "properties": { "id": "30420", "nom": "La Tour de Salvagny Gare", "desserte": "GE4A:A,GE4A:R,S2A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3800", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.716945026679571, 45.799632116700451 ] } }, -{ "type": "Feature", "properties": { "id": "30423", "nom": "La Tour de S. Mairie", "desserte": "GE4A:R,S2A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3801", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.716276168855578, 45.814506637561699 ] } }, -{ "type": "Feature", "properties": { "id": "30424", "nom": "La Tour de S. Greffieres", "desserte": "S2A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3804", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.717639941174363, 45.80527890515183 ] } }, -{ "type": "Feature", "properties": { "id": "30430", "nom": "Les Granges", "desserte": "86A:R,S2A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3806", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.711559822621947, 45.815875527275089 ] } }, -{ "type": "Feature", "properties": { "id": "30443", "nom": "Allobroges", "desserte": "87A:A,ZI1A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3808", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.916296532532868, 45.678383440199006 ] } }, -{ "type": "Feature", "properties": { "id": "30444", "nom": "Allobroges", "desserte": "87A:R,ZI1A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3807", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.916375601639512, 45.678426627886573 ] } }, -{ "type": "Feature", "properties": { "id": "30449", "nom": "La Rochette - Clochettes", "desserte": "93A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3809", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.857151503645506, 45.694949909560805 ] } }, -{ "type": "Feature", "properties": { "id": "30450", "nom": "La Rochette - Clochettes", "desserte": "93A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3810", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.85714944581164, 45.69490494958125 ] } }, -{ "type": "Feature", "properties": { "id": "30472", "nom": "Charpennes", "desserte": "302A:A,302A:R", "pmr": "t", "ascenseur": "t", "escalator": "t", "gid": "252", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.862828581248771, 45.770163492073941 ] } }, -{ "type": "Feature", "properties": { "id": "30488", "nom": "Gare d'Albigny-Neuville", "desserte": "96A:A,96A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2968", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.835175961277153, 45.877077025856451 ] } }, -{ "type": "Feature", "properties": { "id": "30493", "nom": "Gare d'Albigny-Neuville", "desserte": "96A:A,96A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2970", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.835082377809725, 45.877286134544448 ] } }, -{ "type": "Feature", "properties": { "id": "30507", "nom": "Gorge de Loup", "desserte": "45A:A,90A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "64", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.80435082479284, 45.765837238523943 ] } }, -{ "type": "Feature", "properties": { "id": "30510", "nom": "Bellecour Le Viste", "desserte": "27A:A,S1A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "907", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.833798544165879, 45.757247111739822 ] } }, -{ "type": "Feature", "properties": { "id": "30511", "nom": "Bellecour Le Viste", "desserte": "C20A:A,C20A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "909", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.834050999719678, 45.757709556165004 ] } }, -{ "type": "Feature", "properties": { "id": "30514", "nom": "Trois Artichauts", "desserte": "46A:A,49A:A,C19A:A,C20A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2862", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.816234760447463, 45.751578695030773 ] } }, -{ "type": "Feature", "properties": { "id": "30527", "nom": "Irigny Venieres", "desserte": "15A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1588", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.819192893137133, 45.667533234774773 ] } }, -{ "type": "Feature", "properties": { "id": "30528", "nom": "Le Peage", "desserte": "15A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1866", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.822419800681294, 45.689829440840327 ] } }, -{ "type": "Feature", "properties": { "id": "30529", "nom": "Le Peage", "desserte": "15A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1863", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.822600644862058, 45.68985243495645 ] } }, -{ "type": "Feature", "properties": { "id": "42277", "nom": "Chasselay Chalay", "desserte": "21A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4705", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.779369189722239, 45.87665545771803 ] } }, -{ "type": "Feature", "properties": { "id": "30545", "nom": "Vaulx Lakanal", "desserte": "37A:R,57A:R,C8A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2907", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.920611078203368, 45.78679664638684 ] } }, -{ "type": "Feature", "properties": { "id": "30551", "nom": "Collège Bellecombe", "desserte": "27A:R,C16A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "357", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.862402412319717, 45.766319544444698 ] } }, -{ "type": "Feature", "properties": { "id": "30554", "nom": "La Tour de S. Greffieres", "desserte": "S2A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3803", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.717803200494338, 45.805185437029635 ] } }, -{ "type": "Feature", "properties": { "id": "30558", "nom": "Le Colombier", "desserte": "S2A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3793", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.715198857395364, 45.811325153470634 ] } }, -{ "type": "Feature", "properties": { "id": "30559", "nom": "Le Colombier - Veyrie", "desserte": "S2A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3795", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.718260560454566, 45.811584331811403 ] } }, -{ "type": "Feature", "properties": { "id": "30562", "nom": "Simondan", "desserte": "S10A:R,S7A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3189", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.831494878283413, 45.801161087176169 ] } }, -{ "type": "Feature", "properties": { "id": "30564", "nom": "Rue des Balmes", "desserte": "S10A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3186", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.835951597597983, 45.80153008939066 ] } }, -{ "type": "Feature", "properties": { "id": "30565", "nom": "Grande Rue St Rambert", "desserte": "S10A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3184", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.833641082971257, 45.799788874124538 ] } }, -{ "type": "Feature", "properties": { "id": "30567", "nom": "Joannes Carret", "desserte": "S10A:A,S10A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1615", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.820894045159088, 45.792979914313939 ] } }, -{ "type": "Feature", "properties": { "id": "30575", "nom": "Gorge de Loup", "desserte": "72B:R,86A:R,98A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "62", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.805026729400933, 45.766569470138393 ] } }, -{ "type": "Feature", "properties": { "id": "30578", "nom": "Les Granges", "desserte": "86A:A,S2A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3805", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.710897291172562, 45.816033540021948 ] } }, -{ "type": "Feature", "properties": { "id": "30862", "nom": "Place Sublet-Marcel Paul", "desserte": "C12A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3645", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.881732837504654, 45.699876521398437 ] } }, -{ "type": "Feature", "properties": { "id": "31043", "nom": "Charcot - La Source", "desserte": "65A:A,65A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3733", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.791643795582159, 45.747960757826995 ] } }, -{ "type": "Feature", "properties": { "id": "31049", "nom": "Les Battieres", "desserte": "65A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1919", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.782062354312786, 45.754254588946367 ] } }, -{ "type": "Feature", "properties": { "id": "31284", "nom": "Leriche", "desserte": "90A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3837", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.791402835627477, 45.738523978967478 ] } }, -{ "type": "Feature", "properties": { "id": "31302", "nom": "Ste Foy Genets", "desserte": "90A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3834", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.792891710857109, 45.737321269954407 ] } }, -{ "type": "Feature", "properties": { "id": "31303", "nom": "Leriche", "desserte": "90A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3836", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.790933683975328, 45.738957287385453 ] } }, -{ "type": "Feature", "properties": { "id": "31342", "nom": "François Genin", "desserte": "45A:R,90A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3838", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.795530986192553, 45.75237617555787 ] } }, -{ "type": "Feature", "properties": { "id": "31343", "nom": "Hôtel de Ville - Louis Pradel", "desserte": "S12A:A,S12A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "115", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.836060874886069, 45.76770113673868 ] } }, -{ "type": "Feature", "properties": { "id": "31346", "nom": "Capucins", "desserte": "S12A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3840", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.835651061981429, 45.769438485754847 ] } }, -{ "type": "Feature", "properties": { "id": "31347", "nom": "Imbert Colomes", "desserte": "S12A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3841", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.834949990963672, 45.771560363610398 ] } }, -{ "type": "Feature", "properties": { "id": "31349", "nom": "Place Morel", "desserte": "S12A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3842", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.827167828443156, 45.772120292668632 ] } }, -{ "type": "Feature", "properties": { "id": "31350", "nom": "Allouche", "desserte": "S12A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3844", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.830263567376782, 45.772312620439372 ] } }, -{ "type": "Feature", "properties": { "id": "31352", "nom": "Les Chartreux", "desserte": "S12A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3846", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.821689283007725, 45.772709731986467 ] } }, -{ "type": "Feature", "properties": { "id": "31353", "nom": "Place Morel", "desserte": "S12A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3843", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.826423593183748, 45.771875763809454 ] } }, -{ "type": "Feature", "properties": { "id": "31362", "nom": "Neyret", "desserte": "S12A:A,S6A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3304", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.831375584884658, 45.771306792120278 ] } }, -{ "type": "Feature", "properties": { "id": "42476", "nom": "Companet", "desserte": "C2A:A,ZI4A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4732", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.877523177069811, 45.811615230483007 ] } }, -{ "type": "Feature", "properties": { "id": "31503", "nom": "Point du Jour", "desserte": "45A:R,90A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2462", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.79669619404148, 45.756869162673567 ] } }, -{ "type": "Feature", "properties": { "id": "31504", "nom": "Pont de Collonges RD", "desserte": "43A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2511", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.84677357018689, 45.815033764915732 ] } }, -{ "type": "Feature", "properties": { "id": "31583", "nom": "College J.P.Rameau", "desserte": "66A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3209", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.786926704886922, 45.792168823932165 ] } }, -{ "type": "Feature", "properties": { "id": "31584", "nom": "College J.P.Rameau", "desserte": "66A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3210", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.786869275964012, 45.792035061033282 ] } }, -{ "type": "Feature", "properties": { "id": "31585", "nom": "Champagne Cimetiere", "desserte": "66A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3851", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.786591183273176, 45.793013239567927 ] } }, -{ "type": "Feature", "properties": { "id": "31602", "nom": "Le Visan", "desserte": "45A:R,55A:A,90A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1898", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.789843879272565, 45.764111923333701 ] } }, -{ "type": "Feature", "properties": { "id": "31686", "nom": "Les Battieres", "desserte": "65A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1916", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.782967154132254, 45.754360887403024 ] } }, -{ "type": "Feature", "properties": { "id": "31765", "nom": "Lycee de l'Automobile", "desserte": "25A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3854", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.905198731489987, 45.751576478843013 ] } }, -{ "type": "Feature", "properties": { "id": "31862", "nom": "Les Six Noyers", "desserte": "76A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3860", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.975100952572196, 45.763196748026552 ] } }, -{ "type": "Feature", "properties": { "id": "31866", "nom": "Franklin - Joffre", "desserte": "31A:R,C20A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3861", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.82511150986765, 45.753677542160304 ] } }, -{ "type": "Feature", "properties": { "id": "31883", "nom": "Nadaud - Vitriolerie", "desserte": "C22A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2309", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.83389795884543, 45.743572147667408 ] } }, -{ "type": "Feature", "properties": { "id": "31896", "nom": "Stade de Gerland", "desserte": "60A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "309", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.830009155378937, 45.72669149400916 ] } }, -{ "type": "Feature", "properties": { "id": "31902", "nom": "St Genis Verdun", "desserte": "17B:A,C10A:A,S9A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3863", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.795234229449377, 45.692499054457841 ] } }, -{ "type": "Feature", "properties": { "id": "31903", "nom": "St Genis Verdun", "desserte": "17B:R,C10A:R,S9A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3862", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.795219405450045, 45.692742406988728 ] } }, -{ "type": "Feature", "properties": { "id": "31904", "nom": "Hopital Henry Gabrielle", "desserte": "17B:A,S9A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1565", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.792465874443104, 45.689175345969154 ] } }, -{ "type": "Feature", "properties": { "id": "31905", "nom": "Hopital Henry Gabrielle", "desserte": "17B:R,S9A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1562", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.79250316315785, 45.689147526171155 ] } }, -{ "type": "Feature", "properties": { "id": "31906", "nom": "Lardillet", "desserte": "17B:A,78B:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1822", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.789865482560132, 45.685001810476678 ] } }, -{ "type": "Feature", "properties": { "id": "31907", "nom": "Lardillet", "desserte": "17B:R,78B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1823", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.789818983994659, 45.684822808262247 ] } }, -{ "type": "Feature", "properties": { "id": "31908", "nom": "St Genis 2", "desserte": "17B:A,78B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2719", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.788432045691117, 45.681360769710452 ] } }, -{ "type": "Feature", "properties": { "id": "31983", "nom": "La Grappe d'Or", "desserte": "43A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3864", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.8429013482899, 45.902157123008671 ] } }, -{ "type": "Feature", "properties": { "id": "32002", "nom": "Palais Justice - Mairie 3e", "desserte": "C9A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "367", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.848487978115835, 45.760438862990121 ] } }, -{ "type": "Feature", "properties": { "id": "32062", "nom": "Piscine du Roule", "desserte": "17B:A,8A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3866", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.807372622245433, 45.726022106208653 ] } }, -{ "type": "Feature", "properties": { "id": "32063", "nom": "Piscine du Roule", "desserte": "17B:R,8A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3867", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.807632304111078, 45.72636742790035 ] } }, -{ "type": "Feature", "properties": { "id": "32102", "nom": "Perrache", "desserte": "T1A:A,T1A:R,T2:A,T2:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "157", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.827014889652934, 45.749594542742337 ] } }, -{ "type": "Feature", "properties": { "id": "32103", "nom": "Perrache", "desserte": "T1A:A,T1A:R,T2:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "169", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.827115920580663, 45.749562687408257 ] } }, -{ "type": "Feature", "properties": { "id": "32104", "nom": "Quai Claude Bernard", "desserte": "T1A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "467", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.835308182824255, 45.749612938775726 ] } }, -{ "type": "Feature", "properties": { "id": "42318", "nom": "Emile Zola", "desserte": "C7B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4721", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.819150114027038, 45.705050704708874 ] } }, -{ "type": "Feature", "properties": { "id": "42436", "nom": "Polaris", "desserte": "111A:A,54A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3668", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.895735731400335, 45.668107064659885 ] } }, -{ "type": "Feature", "properties": { "id": "43061", "nom": "Leo Lagrange", "desserte": "27A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4802", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.878614813201708, 45.764522444531408 ] } }, -{ "type": "Feature", "properties": { "id": "43311", "nom": "Salvador Allende", "desserte": "57A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4838", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.920362986636393, 45.780969379144281 ] } }, -{ "type": "Feature", "properties": { "id": "43417", "nom": "Quai Aulagne", "desserte": "ZI6A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3139", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.845372230075705, 45.703675150615382 ] } }, -{ "type": "Feature", "properties": { "id": "43478", "nom": "Champagne Lanessan", "desserte": "21A:A,61A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4255", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.795703152640725, 45.792193054977034 ] } }, -{ "type": "Feature", "properties": { "id": "46283", "nom": "St Priest Les Alpes", "desserte": "C25B:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5222", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.930704581188445, 45.693659578972451 ] } }, -{ "type": "Feature", "properties": { "id": "46287", "nom": "Base Aerienne", "desserte": "942A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5230", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.787404124223116, 45.856125723799046 ] } }, -{ "type": "Feature", "properties": { "id": "46289", "nom": "Terreaux La Feuillee", "desserte": "19A:R,448A:A,C14A:A,C14A:R,C3A:A,S1A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5232", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.831527145772943, 45.766898072625885 ] } }, -{ "type": "Feature", "properties": { "id": "46290", "nom": "Cordeliers", "desserte": "C13A:A,C14A:A,C3A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5233", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.835894279568771, 45.764207076708026 ] } }, -{ "type": "Feature", "properties": { "id": "46292", "nom": "Carette", "desserte": "C13A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5245", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.839575115663599, 45.786188917963031 ] } }, -{ "type": "Feature", "properties": { "id": "46293", "nom": "Cimetiere de Corbas", "desserte": "111A:A,112A:A,54A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5262", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.899916367938766, 45.674776514689242 ] } }, -{ "type": "Feature", "properties": { "id": "46294", "nom": "La Buire", "desserte": "C7B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5251", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.859679301566395, 45.751551117746395 ] } }, -{ "type": "Feature", "properties": { "id": "46295", "nom": "La Buire", "desserte": "C7B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5252", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.859806881839521, 45.75184898154474 ] } }, -{ "type": "Feature", "properties": { "id": "46303", "nom": "Hotel de Ville L.Pradel", "desserte": "C13A:A,C13A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5292", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.835313135065881, 45.766529623917343 ] } }, -{ "type": "Feature", "properties": { "id": "46304", "nom": "Les Terres St G. les Ollieres", "desserte": "72B:A,72B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5282", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.706198958188907, 45.760796041271121 ] } }, -{ "type": "Feature", "properties": { "id": "46307", "nom": "Terreaux La Feuillee", "desserte": "19A:A,C14A:A,C3A:R,S1A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5283", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.831205193733694, 45.767317119507283 ] } }, -{ "type": "Feature", "properties": { "id": "46308", "nom": "Carteret", "desserte": "ZI6A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5324", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.845298374651915, 45.726352400536427 ] } }, -{ "type": "Feature", "properties": { "id": "46309", "nom": "Carteret", "desserte": "ZI6A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5325", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.845412503274614, 45.726462453247713 ] } }, -{ "type": "Feature", "properties": { "id": "46310", "nom": "Debourg", "desserte": "ZI6A:A,ZI6A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5326", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.835784410494385, 45.731333427491734 ] } }, -{ "type": "Feature", "properties": { "id": "46437", "nom": "Union Nautique", "desserte": "40A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5420", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.836843031990363, 45.797360687906796 ] } }, -{ "type": "Feature", "properties": { "id": "46438", "nom": "Parc relais Sauvegarde", "desserte": "89A:A,C6B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5423", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.786940961910906, 45.786713882326978 ] } }, -{ "type": "Feature", "properties": { "id": "46439", "nom": "Parc relais Sauvegarde", "desserte": "89A:A,89A:R,C6B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5424", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.787530210176058, 45.786656020261489 ] } }, -{ "type": "Feature", "properties": { "id": "46440", "nom": "Techlid Le Paisy", "desserte": "89A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5496", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.764678149318609, 45.804083190053106 ] } }, -{ "type": "Feature", "properties": { "id": "46558", "nom": "Flassieu le Bas", "desserte": "763:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "6099", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.975250612238946, 45.62740336693625 ] } }, -{ "type": "Feature", "properties": { "id": "46559", "nom": "Flassieu le Haut", "desserte": "763:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "6100", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.968217648827255, 45.624759363487918 ] } }, -{ "type": "Feature", "properties": { "id": "32114", "nom": "Saxe - Préfecture", "desserte": "T1A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "422", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.84519036654934, 45.760082068787376 ] } }, -{ "type": "Feature", "properties": { "id": "32115", "nom": "Saxe - Préfecture", "desserte": "T1A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "423", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.845178842800005, 45.760156496208687 ] } }, -{ "type": "Feature", "properties": { "id": "32116", "nom": "Palais Justice - Mairie 3e", "desserte": "T1A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "366", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.848466569062337, 45.76030513387532 ] } }, -{ "type": "Feature", "properties": { "id": "32117", "nom": "Palais Justice - Mairie 3e", "desserte": "T1A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "365", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.848454191483172, 45.760380480951675 ] } }, -{ "type": "Feature", "properties": { "id": "32121", "nom": "Gare Part-Dieu Vivier Merle", "desserte": "T1A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "515", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.857872466073909, 45.76201137562628 ] } }, -{ "type": "Feature", "properties": { "id": "32122", "nom": "Thiers - Lafayette", "desserte": "T1A:A,T1A:R,T4A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "363", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.862079424630047, 45.764326908161244 ] } }, -{ "type": "Feature", "properties": { "id": "32123", "nom": "Thiers - Lafayette", "desserte": "T1A:R,T4A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "362", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.861969814433985, 45.764323342834295 ] } }, -{ "type": "Feature", "properties": { "id": "32124", "nom": "Collège Bellecombe", "desserte": "T1A:A,T4A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "360", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.861971454592836, 45.766659135032917 ] } }, -{ "type": "Feature", "properties": { "id": "32125", "nom": "Collège Bellecombe", "desserte": "T1A:R,T4A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "359", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.86187609713456, 45.76665515892725 ] } }, -{ "type": "Feature", "properties": { "id": "32127", "nom": "Charpennes", "desserte": "T1A:A,T1A:R,T4A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "238", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.863000997251448, 45.771024545631164 ] } }, -{ "type": "Feature", "properties": { "id": "32130", "nom": "Condorcet", "desserte": "T1A:A,T4A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "354", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.866950300358003, 45.777916663025231 ] } }, -{ "type": "Feature", "properties": { "id": "32131", "nom": "Condorcet", "desserte": "T1A:R,T4A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "353", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.866910426109776, 45.777911170553679 ] } }, -{ "type": "Feature", "properties": { "id": "32132", "nom": "Université Lyon 1", "desserte": "T1A:A,T4A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "474", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.866312505703559, 45.780836651748324 ] } }, -{ "type": "Feature", "properties": { "id": "32133", "nom": "Université Lyon 1", "desserte": "T1A:R,T4A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "473", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.866282521885991, 45.780900786319933 ] } }, -{ "type": "Feature", "properties": { "id": "32134", "nom": "La Doua - Gaston Berger", "desserte": "T1A:A,T1A:R,T4A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "351", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.872068747771224, 45.781484015787932 ] } }, -{ "type": "Feature", "properties": { "id": "32136", "nom": "INSA - Einstein", "desserte": "T1A:A,T4A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "475", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.877649528852849, 45.782415359694454 ] } }, -{ "type": "Feature", "properties": { "id": "32137", "nom": "INSA - Einstein", "desserte": "T1A:R,T4A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "476", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.877621302657117, 45.782478287623526 ] } }, -{ "type": "Feature", "properties": { "id": "32138", "nom": "IUT Feyssine", "desserte": "T1A:A,T1A:R,T4A:A,T4A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "343", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.881985299104863, 45.786885815232239 ] } }, -{ "type": "Feature", "properties": { "id": "32139", "nom": "IUT Feyssine", "desserte": "T1A:A,T1A:R,T4A:A,T4A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "344", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.881884913934365, 45.786862976401899 ] } }, -{ "type": "Feature", "properties": { "id": "32140", "nom": "Centre Berthelot", "desserte": "T2:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "479", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.836317739309422, 45.747011808449898 ] } }, -{ "type": "Feature", "properties": { "id": "32141", "nom": "Centre Berthelot", "desserte": "T2:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "480", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.836358954670017, 45.7470756988765 ] } }, -{ "type": "Feature", "properties": { "id": "32143", "nom": "Jean Macé", "desserte": "T2:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "291", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.842304779964118, 45.745180059778491 ] } }, -{ "type": "Feature", "properties": { "id": "32144", "nom": "Garibaldi - Berthelot", "desserte": "T2:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "379", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.84686389076575, 45.743640965058795 ] } }, -{ "type": "Feature", "properties": { "id": "32146", "nom": "Route de Vienne", "desserte": "T2:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "383", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.851662043423376, 45.742108475266903 ] } }, -{ "type": "Feature", "properties": { "id": "32147", "nom": "Route de Vienne", "desserte": "T2:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "381", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.851705802404315, 45.74217707394569 ] } }, -{ "type": "Feature", "properties": { "id": "32149", "nom": "Jet d'Eau - Mendes France", "desserte": "T2:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "387", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.858761752903233, 45.739918202386427 ] } }, -{ "type": "Feature", "properties": { "id": "32152", "nom": "Bachut - Mairie du 8ème", "desserte": "T2:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "394", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.868191644056735, 45.736814858065003 ] } }, -{ "type": "Feature", "properties": { "id": "1874", "nom": "Centre Hospitalier Mont d'Or", "desserte": "43A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2116", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.835059674524122, 45.859509067476424 ] } }, -{ "type": "Feature", "properties": { "id": "1875", "nom": "Hôpital Antoine Charial", "desserte": "73A:A,C24B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "711", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.751918587902806, 45.74741851227531 ] } }, -{ "type": "Feature", "properties": { "id": "1876", "nom": "Hôpital Antoine Charial", "desserte": "73A:R,C24B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "710", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.752991108256222, 45.747328550490508 ] } }, -{ "type": "Feature", "properties": { "id": "1877", "nom": "Maison des Pretres", "desserte": "15A:A,18B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2118", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.812785677809024, 45.650942042823928 ] } }, -{ "type": "Feature", "properties": { "id": "1881", "nom": "Maisons Neuves", "desserte": "C11A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2123", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.875978746085212, 45.755616793139367 ] } }, -{ "type": "Feature", "properties": { "id": "1882", "nom": "Maisons Neuves", "desserte": "C11A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2122", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.875362159347227, 45.755630739395116 ] } }, -{ "type": "Feature", "properties": { "id": "1886", "nom": "Manissieux Clemenceau", "desserte": "26A:R,50A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2126", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.98318082370306, 45.703919475394173 ] } }, -{ "type": "Feature", "properties": { "id": "32155", "nom": "Jean XXIII - Maryse Bastié", "desserte": "T2:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "484", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.874480747888589, 45.740241362423291 ] } }, -{ "type": "Feature", "properties": { "id": "32156", "nom": "Grange Blanche", "desserte": "T2:A,T2:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "75", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.8796023981278, 45.742490787049739 ] } }, -{ "type": "Feature", "properties": { "id": "32157", "nom": "Grange Blanche", "desserte": "T2:A,T2:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "82", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.879576142683223, 45.742409470126653 ] } }, -{ "type": "Feature", "properties": { "id": "32158", "nom": "Ambroise Paré", "desserte": "T2:A,T5:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "398", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.883908340017097, 45.741487695772825 ] } }, -{ "type": "Feature", "properties": { "id": "32159", "nom": "Ambroise Paré", "desserte": "T2:R,T5:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "400", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.883952622703358, 45.741552850323536 ] } }, -{ "type": "Feature", "properties": { "id": "32161", "nom": "Vinatier", "desserte": "T2:R,T5:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "402", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.893295274001932, 45.738863144241655 ] } }, -{ "type": "Feature", "properties": { "id": "32162", "nom": "Essarts - Iris", "desserte": "T2:A,T5:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "485", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.898122012445829, 45.73720079312929 ] } }, -{ "type": "Feature", "properties": { "id": "32163", "nom": "Essarts - Iris", "desserte": "T2:R,T5:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "486", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.898160990784046, 45.737259402389206 ] } }, -{ "type": "Feature", "properties": { "id": "32164", "nom": "Boutasse - Camille Rousset", "desserte": "T2:A,T5:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "408", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.904451810335779, 45.734894458389761 ] } }, -{ "type": "Feature", "properties": { "id": "32165", "nom": "Boutasse - Camille Rousset", "desserte": "T2:R,T5:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "409", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.904503423384204, 45.734967538784453 ] } }, -{ "type": "Feature", "properties": { "id": "32166", "nom": "Bron Hôtel de Ville", "desserte": "T2:A,T2:R,T5:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "459", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.909046010251642, 45.733375663856428 ] } }, -{ "type": "Feature", "properties": { "id": "32167", "nom": "Bron Hôtel de Ville", "desserte": "T2:R,T5:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "460", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.909089309863903, 45.733441281621054 ] } }, -{ "type": "Feature", "properties": { "id": "32168", "nom": "Les Alizés", "desserte": "T2:A,T5:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "487", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.914721004985633, 45.731501318297276 ] } }, -{ "type": "Feature", "properties": { "id": "32169", "nom": "Les Alizés", "desserte": "T2:R,T5:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "488", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.914763916287789, 45.731566762876312 ] } }, -{ "type": "Feature", "properties": { "id": "32172", "nom": "Parilly - Université", "desserte": "T2:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "723", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.915188886111397, 45.722082833477174 ] } }, -{ "type": "Feature", "properties": { "id": "32173", "nom": "Parilly - Université", "desserte": "T2:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "722", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.915292441747863, 45.722126180584631 ] } }, -{ "type": "Feature", "properties": { "id": "32174", "nom": "Europe - Université", "desserte": "T2:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "489", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.918179239829337, 45.719591516522797 ] } }, -{ "type": "Feature", "properties": { "id": "32204", "nom": "Decines Republique", "desserte": "57A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3871", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.960456726171562, 45.767608653788159 ] } }, -{ "type": "Feature", "properties": { "id": "32205", "nom": "Decines Republique", "desserte": "57A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3870", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.960004550867241, 45.768645405810112 ] } }, -{ "type": "Feature", "properties": { "id": "1889", "nom": "Manufacture Montluc", "desserte": "296:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "757", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.859293398125648, 45.749287068040836 ] } }, -{ "type": "Feature", "properties": { "id": "1892", "nom": "Manufacture Montluc", "desserte": "296:R,C25B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "758", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.859505913378834, 45.74943531266036 ] } }, -{ "type": "Feature", "properties": { "id": "1893", "nom": "Marais", "desserte": "37A:A,7A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2134", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.901635003231511, 45.785458256495843 ] } }, -{ "type": "Feature", "properties": { "id": "1894", "nom": "Marais", "desserte": "37A:R,7A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2135", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.901405757624145, 45.785508498011559 ] } }, -{ "type": "Feature", "properties": { "id": "1895", "nom": "Marcel Pagnol", "desserte": "39A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2137", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.888120661231612, 45.71298126344886 ] } }, -{ "type": "Feature", "properties": { "id": "1896", "nom": "Marcel Pagnol", "desserte": "39A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2136", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.88819384212318, 45.712619547236955 ] } }, -{ "type": "Feature", "properties": { "id": "1899", "nom": "Marcy I.N.T.", "desserte": "98A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2139", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.714303394815636, 45.786753919270431 ] } }, -{ "type": "Feature", "properties": { "id": "1900", "nom": "Marcy I.N.T.", "desserte": "72B:R,98A:R,GE6A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2138", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.714790708851275, 45.786122547938852 ] } }, -{ "type": "Feature", "properties": { "id": "1901", "nom": "Marcy l'Etoile", "desserte": "72B:A,72B:R,98A:R,GE6A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2140", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.705655501500402, 45.782220261832698 ] } }, -{ "type": "Feature", "properties": { "id": "1902", "nom": "Marcy l'Etoile", "desserte": "72B:A,72B:R,98A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2141", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.705570004139408, 45.781429999444633 ] } }, -{ "type": "Feature", "properties": { "id": "1905", "nom": "Marcy l'Orme", "desserte": "72B:A,98A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2144", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.705732604865969, 45.77893336266181 ] } }, -{ "type": "Feature", "properties": { "id": "1906", "nom": "Marcy l'Orme", "desserte": "72B:R,98A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2142", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.705703802286152, 45.7788619643134 ] } }, -{ "type": "Feature", "properties": { "id": "1907", "nom": "Marcy Vercheres", "desserte": "98A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2146", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.706624102873638, 45.785890135275736 ] } }, -{ "type": "Feature", "properties": { "id": "1908", "nom": "Marcy Vercheres", "desserte": "72B:R,98A:R,GE6A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2145", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.706731581804096, 45.785995876371473 ] } }, -{ "type": "Feature", "properties": { "id": "1916", "nom": "Marius Poncet", "desserte": "72B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2152", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.73803366339906, 45.758319421802909 ] } }, -{ "type": "Feature", "properties": { "id": "1917", "nom": "Marjolet", "desserte": "15A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2155", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.824090462942602, 45.677055822143885 ] } }, -{ "type": "Feature", "properties": { "id": "1918", "nom": "Marjolet", "desserte": "15A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2154", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.824392398346685, 45.677202140907426 ] } }, -{ "type": "Feature", "properties": { "id": "1922", "nom": "Marne - Pagere", "desserte": "24A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2160", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.916525051716415, 45.742216295030595 ] } }, -{ "type": "Feature", "properties": { "id": "1936", "nom": "Mas du Taureau", "desserte": "52A:R,C3A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2167", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.910855390791653, 45.785085312142066 ] } }, -{ "type": "Feature", "properties": { "id": "1937", "nom": "Mas du Taureau", "desserte": "37A:A,7A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2169", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.910068458653251, 45.785040332769064 ] } }, -{ "type": "Feature", "properties": { "id": "1938", "nom": "Mas du Taureau", "desserte": "37A:R,7A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2168", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.910854943568321, 45.785625410381343 ] } }, -{ "type": "Feature", "properties": { "id": "1939", "nom": "Rebufer", "desserte": "C15A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "413", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.915536491702467, 45.727431672903066 ] } }, -{ "type": "Feature", "properties": { "id": "1940", "nom": "Rebufer", "desserte": "C15A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "412", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.915801271023498, 45.727596613932647 ] } }, -{ "type": "Feature", "properties": { "id": "1950", "nom": "Menival Centre", "desserte": "65A:A,C21A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2171", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.786258590242484, 45.756665369832561 ] } }, -{ "type": "Feature", "properties": { "id": "1951", "nom": "Menival Centre", "desserte": "65A:R,C21A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2170", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.785730252887004, 45.756928925959556 ] } }, -{ "type": "Feature", "properties": { "id": "1953", "nom": "Ménival Sainte Anne", "desserte": "65A:A,73A:A,C21A:A,C21A:R,C24B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "690", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.782066350652211, 45.756369732743018 ] } }, -{ "type": "Feature", "properties": { "id": "1954", "nom": "ENS Lyon", "desserte": "C22A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "786", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.830573461339893, 45.731448374368021 ] } }, -{ "type": "Feature", "properties": { "id": "1959", "nom": "Merlus", "desserte": "63A:A,63A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2174", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.79067087151497, 45.718647825669322 ] } }, -{ "type": "Feature", "properties": { "id": "1963", "nom": "Meyzieu Centre social", "desserte": "67A:A,85A:A,95A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2176", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 5.001834116667041, 45.763879634458938 ] } }, -{ "type": "Feature", "properties": { "id": "1964", "nom": "Meyzieu Curie", "desserte": "95A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2177", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 5.004820818239961, 45.774277839072774 ] } }, -{ "type": "Feature", "properties": { "id": "1966", "nom": "Fenelon", "desserte": "95A:A,ZI2A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2179", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 5.01847604670607, 45.774411735278058 ] } }, -{ "type": "Feature", "properties": { "id": "1967", "nom": "Fenelon", "desserte": "95A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2180", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 5.018317472639296, 45.774325502296072 ] } }, -{ "type": "Feature", "properties": { "id": "1970", "nom": "Meyzieu Gare", "desserte": "323A:A,67A:A,85A:R,95A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "584", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 5.000634596520835, 45.771775676467563 ] } }, -{ "type": "Feature", "properties": { "id": "1971", "nom": "Meyzieu Gare", "desserte": "67A:R,85A:A,95A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "587", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 5.000675320129051, 45.771819719642991 ] } }, -{ "type": "Feature", "properties": { "id": "1974", "nom": "Meyzieu Le Carreau", "desserte": "67A:A,95A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2186", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.99084228889438, 45.776238378315149 ] } }, -{ "type": "Feature", "properties": { "id": "1975", "nom": "Meyzieu Le Carreau", "desserte": "67A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2184", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.989149542251457, 45.775549227083253 ] } }, -{ "type": "Feature", "properties": { "id": "1976", "nom": "Pommier Liberation", "desserte": "67A:A,85A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2187", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.998150688771277, 45.776533513212215 ] } }, -{ "type": "Feature", "properties": { "id": "1977", "nom": "Pommier Liberation", "desserte": "67A:R,85A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2188", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.998165714516116, 45.776578166171369 ] } }, -{ "type": "Feature", "properties": { "id": "1981", "nom": "Meyzieu Parmentier", "desserte": "95A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2191", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 5.007964707779895, 45.772528770851103 ] } }, -{ "type": "Feature", "properties": { "id": "1982", "nom": "Meyzieu Parmentier", "desserte": "95A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2192", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 5.007418326221195, 45.772667789951925 ] } }, -{ "type": "Feature", "properties": { "id": "1983", "nom": "Meyzieu Plantees", "desserte": "67A:A,67A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2194", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 5.011865671666102, 45.760697504507249 ] } }, -{ "type": "Feature", "properties": { "id": "1984", "nom": "Meyzieu Poste", "desserte": "85A:A,95A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2197", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.998149017441603, 45.764804205431851 ] } }, -{ "type": "Feature", "properties": { "id": "1986", "nom": "Mi Plaine - Pelossier", "desserte": "26A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2201", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.957535667349481, 45.717105876648546 ] } }, -{ "type": "Feature", "properties": { "id": "1988", "nom": "Michelet", "desserte": "C2A:A,C5A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2204", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.890676935573843, 45.812396458459169 ] } }, -{ "type": "Feature", "properties": { "id": "1989", "nom": "Michelet", "desserte": "C2A:R,C5A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2203", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.890106877589374, 45.812278533731345 ] } }, -{ "type": "Feature", "properties": { "id": "1996", "nom": "Minguettes Darnaise", "desserte": "C12A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2207", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.866483642979992, 45.69062618166847 ] } }, -{ "type": "Feature", "properties": { "id": "2005", "nom": "Mions Jules Valles", "desserte": "62A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2209", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.949375169460842, 45.654285331293195 ] } }, -{ "type": "Feature", "properties": { "id": "2008", "nom": "Mions Poste", "desserte": "62A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2215", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.950841437405082, 45.669229716364775 ] } }, -{ "type": "Feature", "properties": { "id": "2009", "nom": "Mions Poste", "desserte": "296:R,62A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2216", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.9502715125915, 45.669936128112234 ] } }, -{ "type": "Feature", "properties": { "id": "2010", "nom": "Momet", "desserte": "5A:R,86A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2219", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.750917207356302, 45.779393190983328 ] } }, -{ "type": "Feature", "properties": { "id": "2011", "nom": "Momet", "desserte": "5A:A,86A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2218", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.751108010234917, 45.779344084362272 ] } }, -{ "type": "Feature", "properties": { "id": "2012", "nom": "Moncey - Bonnel", "desserte": "C9A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2220", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.850202623679261, 45.761939694862441 ] } }, -{ "type": "Feature", "properties": { "id": "2018", "nom": "Monplaisir La Plaine", "desserte": "C25B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2224", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.880284208445147, 45.7260850628154 ] } }, -{ "type": "Feature", "properties": { "id": "2019", "nom": "Monplaisir La Plaine", "desserte": "C25B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2225", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.880152955008165, 45.726304069109631 ] } }, -{ "type": "Feature", "properties": { "id": "2021", "nom": "Mont Blanc", "desserte": "26A:A,448A:A,79A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2226", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.887226091295621, 45.724181216297389 ] } }, -{ "type": "Feature", "properties": { "id": "2023", "nom": "Mont-Louis", "desserte": "63A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2230", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.790906397464541, 45.717589560007703 ] } }, -{ "type": "Feature", "properties": { "id": "2024", "nom": "Mont-Louis", "desserte": "63A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2229", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.79130074152231, 45.717499922818888 ] } }, -{ "type": "Feature", "properties": { "id": "2025", "nom": "Mont Saint Paul", "desserte": "68B:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2233", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.964987810616483, 45.746420824714903 ] } }, -{ "type": "Feature", "properties": { "id": "2026", "nom": "Mont Saint Paul", "desserte": "68B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2231", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.964988283014164, 45.746699864385668 ] } }, -{ "type": "Feature", "properties": { "id": "2027", "nom": "Montagny", "desserte": "C12A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2235", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.853460485496, 45.732234703881652 ] } }, -{ "type": "Feature", "properties": { "id": "2028", "nom": "Montagny", "desserte": "C12A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2234", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.853502612522478, 45.732593806891103 ] } }, -{ "type": "Feature", "properties": { "id": "2033", "nom": "Montanay Les Dimes", "desserte": "97A:A,97A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2236", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.867907393143051, 45.877866496038699 ] } }, -{ "type": "Feature", "properties": { "id": "2036", "nom": "Montanay Mairie", "desserte": "97A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2237", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.858369418809466, 45.878962850599848 ] } }, -{ "type": "Feature", "properties": { "id": "2037", "nom": "Montanay Mairie", "desserte": "97A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2238", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.858678891264589, 45.878685870982721 ] } }, -{ "type": "Feature", "properties": { "id": "2038", "nom": "Montchat Kimmerling", "desserte": "25A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2240", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.900235760340569, 45.752410035503885 ] } }, -{ "type": "Feature", "properties": { "id": "2039", "nom": "Montchat Kimmerling", "desserte": "25A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2239", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.898625839985261, 45.752905862696622 ] } }, -{ "type": "Feature", "properties": { "id": "2041", "nom": "Montchat Pinel", "desserte": "25A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2244", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.896262861988317, 45.752140646059765 ] } }, -{ "type": "Feature", "properties": { "id": "2042", "nom": "Montchat Pinel", "desserte": "25A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2245", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.894531153909599, 45.752783212923347 ] } }, -{ "type": "Feature", "properties": { "id": "2047", "nom": "Montcourant", "desserte": "86A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2247", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.733277116101863, 45.809419869405936 ] } }, -{ "type": "Feature", "properties": { "id": "2048", "nom": "Montcourant", "desserte": "86A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2246", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.732878023304248, 45.809122351296025 ] } }, -{ "type": "Feature", "properties": { "id": "2049", "nom": "Montee de Champagne", "desserte": "S11A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2249", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.80249734076051, 45.790765952956811 ] } }, -{ "type": "Feature", "properties": { "id": "2050", "nom": "Montee de Champagne", "desserte": "S11A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2248", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.802819449824399, 45.790488848228584 ] } }, -{ "type": "Feature", "properties": { "id": "2051", "nom": "Montee des Soldats", "desserte": "70A:A,9A:A,C1A:A,C2A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2251", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.858742393093382, 45.795331920297734 ] } }, -{ "type": "Feature", "properties": { "id": "2052", "nom": "Montee des Soldats", "desserte": "70A:R,9A:R,C1A:R,C2A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2250", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.858467421003049, 45.795509118332085 ] } }, -{ "type": "Feature", "properties": { "id": "2053", "nom": "Louis Bouquet", "desserte": "20A:A,2A:A,71A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2252", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.818792052457306, 45.797811937904548 ] } }, -{ "type": "Feature", "properties": { "id": "2054", "nom": "Louis Bouquet", "desserte": "20A:R,2A:R,71A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2253", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.818989008744673, 45.798126946994941 ] } }, -{ "type": "Feature", "properties": { "id": "2055", "nom": "Montessuy Calmette", "desserte": "C1A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2255", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.843597516419646, 45.791683390599509 ] } }, -{ "type": "Feature", "properties": { "id": "2057", "nom": "Montessuy Fleming", "desserte": "C1A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2257", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.846725126522253, 45.794461806825389 ] } }, -{ "type": "Feature", "properties": { "id": "2058", "nom": "Montessuy Fleming", "desserte": "C1A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2256", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.846565940453914, 45.794416487076283 ] } }, -{ "type": "Feature", "properties": { "id": "2059", "nom": "Montessuy Gutenberg", "desserte": "77A:A,77A:R,C13A:A,C13A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2258", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.849270553557006, 45.795031115785896 ] } }, -{ "type": "Feature", "properties": { "id": "2060", "nom": "Montessuy Hauts St Clair", "desserte": "C13A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2260", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.848933126093101, 45.794275806350271 ] } }, -{ "type": "Feature", "properties": { "id": "2061", "nom": "Montferrat", "desserte": "52A:R,C15A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2263", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.920346983647216, 45.740652142055843 ] } }, -{ "type": "Feature", "properties": { "id": "2062", "nom": "Montferrat", "desserte": "52A:A,C15A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2262", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.920524833393231, 45.740332996973365 ] } }, -{ "type": "Feature", "properties": { "id": "2064", "nom": "Montfort", "desserte": "21A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2265", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.752566927176739, 45.862058523865819 ] } }, -{ "type": "Feature", "properties": { "id": "2065", "nom": "Montgay Ampere", "desserte": "33A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2267", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.863008349957345, 45.822645127532809 ] } }, -{ "type": "Feature", "properties": { "id": "2066", "nom": "Montgay Ampere", "desserte": "33A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2266", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.862987222878626, 45.822465575378182 ] } }, -{ "type": "Feature", "properties": { "id": "2072", "nom": "Montgolfier", "desserte": "76A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2268", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.964294498885079, 45.72732661524838 ] } }, -{ "type": "Feature", "properties": { "id": "2073", "nom": "Mont Louis", "desserte": "C14A:A,S15A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2270", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.786806127959085, 45.789174107327042 ] } }, -{ "type": "Feature", "properties": { "id": "2074", "nom": "Mont Louis", "desserte": "C14A:R,S15A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2273", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.787170444767467, 45.789265170867587 ] } }, -{ "type": "Feature", "properties": { "id": "2077", "nom": "Corbas Les Roses", "desserte": "87A:A,ZI1A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2278", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.912372409897613, 45.680967068085849 ] } }, -{ "type": "Feature", "properties": { "id": "2078", "nom": "Corbas Les Roses", "desserte": "87A:R,ZI1A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2277", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.912613195855816, 45.680898525620428 ] } }, -{ "type": "Feature", "properties": { "id": "2080", "nom": "Montmein Centre", "desserte": "88B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2279", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.807424134485663, 45.708270957714291 ] } }, -{ "type": "Feature", "properties": { "id": "2082", "nom": "Montmein Nord", "desserte": "88B:A,88B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2281", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.806657699165115, 45.710088039405193 ] } }, -{ "type": "Feature", "properties": { "id": "2084", "nom": "Montmein Sud", "desserte": "88B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2283", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.808769196366486, 45.706180089354234 ] } }, -{ "type": "Feature", "properties": { "id": "2085", "nom": "Montribloud", "desserte": "14B:R,45A:A,55A:A,72B:A,73A:A,86A:A,90A:A,98A:A,C21A:A,C21A:R,C24B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2286", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.790969986158525, 45.766868628083365 ] } }, -{ "type": "Feature", "properties": { "id": "2086", "nom": "Montribloud", "desserte": "14B:A,45A:R,55A:R,72B:R,73A:R,86A:R,90A:R,98A:R,C21A:A,C21A:R,C24B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2285", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.791334170863053, 45.766671644746211 ] } }, -{ "type": "Feature", "properties": { "id": "2087", "nom": "Ambroise Paré", "desserte": "C26A:R,C8A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "396", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.88532821407649, 45.74175889390942 ] } }, -{ "type": "Feature", "properties": { "id": "2088", "nom": "Ambroise Paré", "desserte": "C26A:A,C8A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "397", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.884307846845814, 45.741656043252775 ] } }, -{ "type": "Feature", "properties": { "id": "2092", "nom": "Moulin a Vent", "desserte": "C22A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2292", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.853089492324423, 45.729461655447224 ] } }, -{ "type": "Feature", "properties": { "id": "2094", "nom": "Moulin a Vent", "desserte": "C12A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2289", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.85373522417437, 45.728123995282665 ] } }, -{ "type": "Feature", "properties": { "id": "2096", "nom": "Moulin Carron", "desserte": "19A:A,89A:A,C6B:A,S15A:A,S15A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2294", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.779833709234549, 45.789199974859528 ] } }, -{ "type": "Feature", "properties": { "id": "2101", "nom": "La Mulatiere Belle Rive", "desserte": "8A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2297", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.812117233418949, 45.740364226212577 ] } }, -{ "type": "Feature", "properties": { "id": "2102", "nom": "Maison du Confluent", "desserte": "15A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2299", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.816644367816964, 45.725862558759097 ] } }, -{ "type": "Feature", "properties": { "id": "2103", "nom": "Maison du Confluent", "desserte": "15A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2300", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.816557454409404, 45.726215521293902 ] } }, -{ "type": "Feature", "properties": { "id": "2106", "nom": "Musset - Poudrette", "desserte": "C15A:R,C8A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2305", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.921183838329382, 45.757375596173283 ] } }, -{ "type": "Feature", "properties": { "id": "2109", "nom": "Nicolas Garnier - Poudrette", "desserte": "C15A:R,C8A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2307", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.921135355655725, 45.75552240890044 ] } }, -{ "type": "Feature", "properties": { "id": "2110", "nom": "Nicolas Garnier - Poudrette", "desserte": "C15A:A,C8A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2306", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.921159106870693, 45.7552068106231 ] } }, -{ "type": "Feature", "properties": { "id": "2113", "nom": "Narcel", "desserte": "C19A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2310", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.795987736808847, 45.729224563510883 ] } }, -{ "type": "Feature", "properties": { "id": "2128", "nom": "Niepce", "desserte": "S4A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2312", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.816405259869175, 45.779613397008667 ] } }, -{ "type": "Feature", "properties": { "id": "2129", "nom": "Noailleux", "desserte": "77A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2314", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.868212280027818, 45.846741749851134 ] } }, -{ "type": "Feature", "properties": { "id": "2130", "nom": "Noailleux", "desserte": "77A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2315", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.868160812376071, 45.846742908730327 ] } }, -{ "type": "Feature", "properties": { "id": "2133", "nom": "Norenchal", "desserte": "77A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2318", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.847116509785717, 45.835792105820985 ] } }, -{ "type": "Feature", "properties": { "id": "2134", "nom": "Norenchal", "desserte": "77A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2317", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.846911238041022, 45.836372774000232 ] } }, -{ "type": "Feature", "properties": { "id": "2139", "nom": "Notre Dame du Grand Port", "desserte": "71A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2319", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.840482752756281, 45.819359705590188 ] } }, -{ "type": "Feature", "properties": { "id": "2140", "nom": "Nouveau cimetiere Rillieux", "desserte": "C5A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2322", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.906132217402318, 45.82416086924087 ] } }, -{ "type": "Feature", "properties": { "id": "2141", "nom": "Nouveau cimetiere Rillieux", "desserte": "C5A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2321", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.906100189317072, 45.824026578642425 ] } }, -{ "type": "Feature", "properties": { "id": "2142", "nom": "Nouveau cimetiere Venissieux", "desserte": "39A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2324", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.88066860892355, 45.690188229043066 ] } }, -{ "type": "Feature", "properties": { "id": "2143", "nom": "Nouveau cimetiere Venissieux", "desserte": "39A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2323", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.880692192523633, 45.690142687331338 ] } }, -{ "type": "Feature", "properties": { "id": "2146", "nom": "Novy Jicin", "desserte": "35A:A,35A:R,87A:R,ZI1A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2326", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.896874097188263, 45.696471406310621 ] } }, -{ "type": "Feature", "properties": { "id": "2150", "nom": "Observance", "desserte": "90A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2329", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.80964842733898, 45.76867303610716 ] } }, -{ "type": "Feature", "properties": { "id": "2151", "nom": "Oullins Clement Desormes", "desserte": "8A:A,8A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2331", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.804278458276348, 45.722363776278769 ] } }, -{ "type": "Feature", "properties": { "id": "2157", "nom": "Oullins Mairie", "desserte": "63A:R,78B:R,88B:R,C10A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2335", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.806915094878678, 45.714393856494233 ] } }, -{ "type": "Feature", "properties": { "id": "2158", "nom": "Oullins Ville", "desserte": "78B:A,C10A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2337", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.801630063508916, 45.711431771494468 ] } }, -{ "type": "Feature", "properties": { "id": "2160", "nom": "Oullins Ville", "desserte": "63A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2336", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.802242743084268, 45.712489425008727 ] } }, -{ "type": "Feature", "properties": { "id": "2166", "nom": "Pan Perdu", "desserte": "76A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2339", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.927270705404573, 45.683738296959888 ] } }, -{ "type": "Feature", "properties": { "id": "2167", "nom": "Pan Perdu", "desserte": "76A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2340", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.926777869984046, 45.683362619825765 ] } }, -{ "type": "Feature", "properties": { "id": "2169", "nom": "Panorama", "desserte": "171:R,C5A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2342", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.875744543411995, 45.797352250157473 ] } }, -{ "type": "Feature", "properties": { "id": "2170", "nom": "Gargantua", "desserte": "3A:A,3A:R,89A:R,GE4A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2346", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.757814873531688, 45.820658077530041 ] } }, -{ "type": "Feature", "properties": { "id": "2171", "nom": "Gargantua", "desserte": "3A:R,89A:A,GE4A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2343", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.75760594418579, 45.821175634296424 ] } }, -{ "type": "Feature", "properties": { "id": "2186", "nom": "Parc Tete d'Or-Churchill", "desserte": "38A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2354", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.845285605736065, 45.77622658897841 ] } }, -{ "type": "Feature", "properties": { "id": "2187", "nom": "Parc Tete d'Or - Duquesne", "desserte": "27A:A,C6B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2362", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.850328328424333, 45.773134411516054 ] } }, -{ "type": "Feature", "properties": { "id": "2189", "nom": "Parc Tete d'Or - Duquesne", "desserte": "27A:R,C6B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2361", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.850680615720432, 45.773243540770778 ] } }, -{ "type": "Feature", "properties": { "id": "2198", "nom": "Part-Dieu Auditorium", "desserte": "38A:R,C25B:R,C9A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2370", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.853121710551298, 45.762216348088018 ] } }, -{ "type": "Feature", "properties": { "id": "2206", "nom": "Part-Dieu Jules Favre", "desserte": "70A:A,C1A:A,C2A:A,C6B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2377", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.858465177721596, 45.764319756557242 ] } }, -{ "type": "Feature", "properties": { "id": "2210", "nom": "Part-Dieu Jules Favre", "desserte": "448A:A,C3A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2374", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.85766217385207, 45.76363569298735 ] } }, -{ "type": "Feature", "properties": { "id": "2211", "nom": "Part-Dieu Jules Favre", "desserte": "C3A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2378", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.857460733908711, 45.763730228629655 ] } }, -{ "type": "Feature", "properties": { "id": "2212", "nom": "Part-Dieu Renaudel", "desserte": "25A:A,C7B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2381", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.85841290521422, 45.757849031513359 ] } }, -{ "type": "Feature", "properties": { "id": "2213", "nom": "Part-Dieu Renaudel", "desserte": "25A:R,296:R,C13A:A,C7B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2380", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.858694352020858, 45.757536666385995 ] } }, -{ "type": "Feature", "properties": { "id": "2226", "nom": "Gare Part-Dieu Vivier Merle", "desserte": "C1A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "527", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.858044799853728, 45.761601818976679 ] } }, -{ "type": "Feature", "properties": { "id": "2227", "nom": "Gare Part-Dieu Vivier Merle", "desserte": "38A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5224", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.858167228974432, 45.760905973015845 ] } }, -{ "type": "Feature", "properties": { "id": "2229", "nom": "Gare Part-Dieu Vivier Merle", "desserte": "C2A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "525", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.85760538122145, 45.762115756993673 ] } }, -{ "type": "Feature", "properties": { "id": "2230", "nom": "Gare Part-Dieu Vivier Merle", "desserte": "70A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "526", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.857938995490327, 45.762099263942254 ] } }, -{ "type": "Feature", "properties": { "id": "2233", "nom": "Passage Comtois", "desserte": "C25B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2383", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.875886592182624, 45.729659164833357 ] } }, -{ "type": "Feature", "properties": { "id": "2234", "nom": "Passerelle Palais Justice", "desserte": "31A:R,40A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2384", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.831221515570158, 45.761102894801347 ] } }, -{ "type": "Feature", "properties": { "id": "2238", "nom": "Paul Bert - Turbil", "desserte": "C16A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2386", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.868432102679241, 45.756768392829343 ] } }, -{ "type": "Feature", "properties": { "id": "2243", "nom": "Paul Santy", "desserte": "55A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2389", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.770448025189611, 45.770456696829669 ] } }, -{ "type": "Feature", "properties": { "id": "2244", "nom": "Pavillon Chirurgical", "desserte": "88B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2391", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.807963322765525, 45.702822470944596 ] } }, -{ "type": "Feature", "properties": { "id": "2252", "nom": "Pelloutier", "desserte": "87A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2393", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.902662367427124, 45.687544728323175 ] } }, -{ "type": "Feature", "properties": { "id": "2253", "nom": "Pelloutier", "desserte": "87A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2392", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.902511346334482, 45.68761119432439 ] } }, -{ "type": "Feature", "properties": { "id": "2255", "nom": "Pennachy", "desserte": "17B:A,88B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2395", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.807711786448061, 45.695213129431963 ] } }, -{ "type": "Feature", "properties": { "id": "2257", "nom": "Penon", "desserte": "62A:A,87A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2396", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.962345519148782, 45.666809420121247 ] } }, -{ "type": "Feature", "properties": { "id": "2258", "nom": "Penon", "desserte": "62A:R,87A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2397", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.962545565149979, 45.666696714048577 ] } }, -{ "type": "Feature", "properties": { "id": "2294", "nom": "Perroncel", "desserte": "C26A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2399", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.88416108291493, 45.776809595064933 ] } }, -{ "type": "Feature", "properties": { "id": "2297", "nom": "Petit Perron", "desserte": "17B:A,17B:R,88B:R,C7B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2400", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.808069232425862, 45.698598656081082 ] } }, -{ "type": "Feature", "properties": { "id": "2298", "nom": "Petit Perron", "desserte": "17B:R,C7B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2401", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.808064793143555, 45.698499742107515 ] } }, -{ "type": "Feature", "properties": { "id": "2299", "nom": "Petit Sainte Foy", "desserte": "C19A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2403", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.809152581604536, 45.745623192248829 ] } }, -{ "type": "Feature", "properties": { "id": "2300", "nom": "Petit Sainte Foy", "desserte": "C19A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2402", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.809454852560213, 45.745769551166021 ] } }, -{ "type": "Feature", "properties": { "id": "2305", "nom": "Petite Guille", "desserte": "35A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2407", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.859185621438788, 45.731791104273142 ] } }, -{ "type": "Feature", "properties": { "id": "2306", "nom": "Petite Guille", "desserte": "35A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2406", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.859456151084268, 45.731523987013084 ] } }, -{ "type": "Feature", "properties": { "id": "2307", "nom": "Peupliers", "desserte": "171:A,C5A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2412", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.871538391269903, 45.793765697464913 ] } }, -{ "type": "Feature", "properties": { "id": "2314", "nom": "Picard", "desserte": "C12A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2416", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.864897151167534, 45.707827329646882 ] } }, -{ "type": "Feature", "properties": { "id": "32503", "nom": "Gare Part-Dieu Vivier Merle", "desserte": "C2A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "520", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.858002478338326, 45.761800796970448 ] } }, -{ "type": "Feature", "properties": { "id": "32583", "nom": "Porte des Alpes", "desserte": "T2:A,T2:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "345", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.925836296816774, 45.718467390675677 ] } }, -{ "type": "Feature", "properties": { "id": "32642", "nom": "Nervieux", "desserte": "71A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3885", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.823799485850743, 45.810845987130804 ] } }, -{ "type": "Feature", "properties": { "id": "32643", "nom": "Nervieux", "desserte": "71A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3884", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.823588051170729, 45.810724650285536 ] } }, -{ "type": "Feature", "properties": { "id": "32644", "nom": "Les Combes de St Cyr", "desserte": "71A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3887", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.825924402432289, 45.812860208703995 ] } }, -{ "type": "Feature", "properties": { "id": "32646", "nom": "Serpoly", "desserte": "71A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3889", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.82718507924293, 45.814263466889706 ] } }, -{ "type": "Feature", "properties": { "id": "32647", "nom": "Serpoly", "desserte": "71A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3890", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.827161804403722, 45.814317990073306 ] } }, -{ "type": "Feature", "properties": { "id": "32648", "nom": "La Baticoliere", "desserte": "71A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1657", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.828677889591747, 45.815958605228367 ] } }, -{ "type": "Feature", "properties": { "id": "39934", "nom": "La Soie - Poudrette", "desserte": "52A:A,C8A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4554", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.920249533023516, 45.761303739703678 ] } }, -{ "type": "Feature", "properties": { "id": "39935", "nom": "La Soie - Poudrette", "desserte": "52A:R,C15A:A,C8A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4555", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.9203343913982, 45.76119376932914 ] } }, -{ "type": "Feature", "properties": { "id": "39936", "nom": "Cite Tase", "desserte": "ZI5B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1181", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.928706895496787, 45.758471370375148 ] } }, -{ "type": "Feature", "properties": { "id": "39937", "nom": "Carre de Soie", "desserte": "52A:A,67A:R,ZI4A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4558", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.920237337131503, 45.764877606804347 ] } }, -{ "type": "Feature", "properties": { "id": "39941", "nom": "Hopital Feyzin Venissieux", "desserte": "60A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "675", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.861651551470492, 45.688241569614142 ] } }, -{ "type": "Feature", "properties": { "id": "39942", "nom": "Hopital Feyzin Venissieux", "desserte": "60A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "679", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.861613371299255, 45.688890699715699 ] } }, -{ "type": "Feature", "properties": { "id": "39947", "nom": "Cimetiere de St Fons", "desserte": "60A:R,93A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3160", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.857953365736281, 45.697875292802628 ] } }, -{ "type": "Feature", "properties": { "id": "39948", "nom": "Cimetiere de St Fons", "desserte": "60A:A,93A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3161", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.858123201979363, 45.697376405350653 ] } }, -{ "type": "Feature", "properties": { "id": "39956", "nom": "Port Edouard Herriot", "desserte": "60A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3112", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.838870774620724, 45.725423083141969 ] } }, -{ "type": "Feature", "properties": { "id": "39958", "nom": "Le Bandonnier", "desserte": "60A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4574", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.860734040458345, 45.664940211980642 ] } }, -{ "type": "Feature", "properties": { "id": "39959", "nom": "Les Geraniums", "desserte": "60A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1978", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.861544613079912, 45.666380152033327 ] } }, -{ "type": "Feature", "properties": { "id": "39960", "nom": "Feyzin Mairie", "desserte": "39A:A,60A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4575", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.859960987644897, 45.670205328778877 ] } }, -{ "type": "Feature", "properties": { "id": "39974", "nom": "Joliot-Curie - Marcel Sembat", "desserte": "35A:A,79A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "634", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.879428183268093, 45.713952751552803 ] } }, -{ "type": "Feature", "properties": { "id": "39975", "nom": "Joliot-Curie - Marcel Sembat", "desserte": "35A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "633", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.878529676867902, 45.71397311514454 ] } }, -{ "type": "Feature", "properties": { "id": "42534", "nom": "Constant", "desserte": "C8A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3599", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.888422276272071, 45.745550156909808 ] } }, -{ "type": "Feature", "properties": { "id": "42563", "nom": "Vaulx-en-Velin Resistance", "desserte": "C8A:A,C8A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4746", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.919689791911487, 45.785809666229909 ] } }, -{ "type": "Feature", "properties": { "id": "42574", "nom": "Rillieux - Les Alagniers", "desserte": "ZI4A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4748", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.893752907373634, 45.814892632831757 ] } }, -{ "type": "Feature", "properties": { "id": "42575", "nom": "Rillieux - Les Alagniers", "desserte": "33A:A,33A:R,ZI4A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4750", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.893816260468729, 45.814594143045497 ] } }, -{ "type": "Feature", "properties": { "id": "42594", "nom": "La Sucriere", "desserte": "S1A:A,S1A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4527", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.815352316645444, 45.737940389978057 ] } }, -{ "type": "Feature", "properties": { "id": "32650", "nom": "Route de Saint Romain", "desserte": "71A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3892", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.830858816436428, 45.821184942674094 ] } }, -{ "type": "Feature", "properties": { "id": "32652", "nom": "Chantemale", "desserte": "71A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3893", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.832058597668388, 45.822572673529187 ] } }, -{ "type": "Feature", "properties": { "id": "32653", "nom": "Chemin de l'Ecully", "desserte": "71A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3895", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.833933938893745, 45.824546127455683 ] } }, -{ "type": "Feature", "properties": { "id": "32655", "nom": "Les Chanterelles", "desserte": "71A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3896", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.835527335373257, 45.823628586857303 ] } }, -{ "type": "Feature", "properties": { "id": "32657", "nom": "Ecoles de Collonges", "desserte": "71A:A,71A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3898", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.838350057322566, 45.822566647581745 ] } }, -{ "type": "Feature", "properties": { "id": "32659", "nom": "Grand Port", "desserte": "71A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3900", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.840392481929886, 45.82048687583427 ] } }, -{ "type": "Feature", "properties": { "id": "32742", "nom": "A.Thomas - INSERM", "desserte": "C16A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3902", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.876511907516341, 45.743768023466075 ] } }, -{ "type": "Feature", "properties": { "id": "32782", "nom": "Cazeneuve - Berthelot", "desserte": "C16A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3849", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.865317901211249, 45.737413873618699 ] } }, -{ "type": "Feature", "properties": { "id": "32962", "nom": "Grange Blanche", "desserte": "C13A:A,C13A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "72", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.878543042806069, 45.742929925285623 ] } }, -{ "type": "Feature", "properties": { "id": "33044", "nom": "Le Ponterle", "desserte": "72B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3907", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.747716035014478, 45.756842760171672 ] } }, -{ "type": "Feature", "properties": { "id": "33045", "nom": "Marcy Saule", "desserte": "72B:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3910", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.702051244186126, 45.778578928678989 ] } }, -{ "type": "Feature", "properties": { "id": "33062", "nom": "Cuzin - Picasso", "desserte": "57A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3912", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.917930892948872, 45.775201336451993 ] } }, -{ "type": "Feature", "properties": { "id": "33063", "nom": "Cuzin - Picasso", "desserte": "57A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3911", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.917971974849224, 45.775254401124783 ] } }, -{ "type": "Feature", "properties": { "id": "33102", "nom": "Robert Reynier", "desserte": "C12A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3914", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.861414009672431, 45.708076809921657 ] } }, -{ "type": "Feature", "properties": { "id": "33123", "nom": "Subsistances", "desserte": "19A:R,31A:R,40A:R,C14A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3915", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.817448144159863, 45.767654869886897 ] } }, -{ "type": "Feature", "properties": { "id": "33124", "nom": "Marietton - S. Apollinaire", "desserte": "5A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3664", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.793930127417371, 45.774688793863056 ] } }, -{ "type": "Feature", "properties": { "id": "33125", "nom": "College des Battieres", "desserte": "65A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3917", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.781426324850951, 45.751226113273219 ] } }, -{ "type": "Feature", "properties": { "id": "33126", "nom": "College des Battieres", "desserte": "65A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3916", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.781540332186952, 45.751187626099203 ] } }, -{ "type": "Feature", "properties": { "id": "33127", "nom": "Berjon - St Simon", "desserte": "5A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "919", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.797655696852032, 45.776308404371129 ] } }, -{ "type": "Feature", "properties": { "id": "33128", "nom": "Marietton - Pont SNCF", "desserte": "5A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3626", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.800647880107209, 45.775909748734783 ] } }, -{ "type": "Feature", "properties": { "id": "33203", "nom": "Parc Technologique", "desserte": "T2:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "491", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.931195203624081, 45.714358096162933 ] } }, -{ "type": "Feature", "properties": { "id": "33204", "nom": "Parc Technologique", "desserte": "T2:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "492", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.931265772210948, 45.714415873595833 ] } }, -{ "type": "Feature", "properties": { "id": "33205", "nom": "Hauts de Feuilly", "desserte": "T2:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "493", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.93756458679639, 45.708142521138569 ] } }, -{ "type": "Feature", "properties": { "id": "33206", "nom": "Hauts de Feuilly", "desserte": "T2:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "494", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.937613121651419, 45.708076585057896 ] } }, -{ "type": "Feature", "properties": { "id": "33207", "nom": "Salvador Allende", "desserte": "T2:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "495", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.934846694756169, 45.70342942656962 ] } }, -{ "type": "Feature", "properties": { "id": "33208", "nom": "Salvador Allende", "desserte": "T2:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "496", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.934957492389314, 45.703444232561552 ] } }, -{ "type": "Feature", "properties": { "id": "42655", "nom": "Brunel", "desserte": "68B:A,ZI5B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3621", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.927791192002322, 45.758699002116138 ] } }, -{ "type": "Feature", "properties": { "id": "42656", "nom": "Brunel", "desserte": "68B:R,ZI5B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3622", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.927152397002976, 45.758777293590342 ] } }, -{ "type": "Feature", "properties": { "id": "42657", "nom": "Allee de l'eglise", "desserte": "68B:A,ZI5B:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4755", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.921952275498872, 45.75910392035459 ] } }, -{ "type": "Feature", "properties": { "id": "42661", "nom": "Salengro - Genas", "desserte": "68B:A,ZI5B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4756", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.926967611284025, 45.746386503816083 ] } }, -{ "type": "Feature", "properties": { "id": "42663", "nom": "Salengro - Genas", "desserte": "24A:A,25A:A,52A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4758", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.926591921953582, 45.746053116676656 ] } }, -{ "type": "Feature", "properties": { "id": "42664", "nom": "Salengro - Genas", "desserte": "24A:R,25A:R,52A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4759", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.926545205397399, 45.746153210889787 ] } }, -{ "type": "Feature", "properties": { "id": "42665", "nom": "Saxe - Gambetta", "desserte": "C11A:A,C11A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "203", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.847826834056173, 45.75327968997555 ] } }, -{ "type": "Feature", "properties": { "id": "42677", "nom": "INSA - Einstein", "desserte": "C17A:A,C26A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3931", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.877920047277193, 45.782333807380553 ] } }, -{ "type": "Feature", "properties": { "id": "42678", "nom": "INSA - Einstein", "desserte": "C17A:R,C26A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3930", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.877206967093608, 45.782214920847046 ] } }, -{ "type": "Feature", "properties": { "id": "42679", "nom": "Antonins", "desserte": "C17A:A,C26A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "838", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.879315005993202, 45.778557673217833 ] } }, -{ "type": "Feature", "properties": { "id": "42681", "nom": "Voillot", "desserte": "C17A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4762", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.912792289611469, 45.750907397330622 ] } }, -{ "type": "Feature", "properties": { "id": "42708", "nom": "Pasteur - 11 Novembre", "desserte": "62A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3961", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.926797211805164, 45.700978106331988 ] } }, -{ "type": "Feature", "properties": { "id": "42709", "nom": "Arsonval", "desserte": "62A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4768", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.930235037956478, 45.700871650880302 ] } }, -{ "type": "Feature", "properties": { "id": "42710", "nom": "Arsonval", "desserte": "62A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4767", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.929250750691237, 45.700975422301234 ] } }, -{ "type": "Feature", "properties": { "id": "42711", "nom": "Jean Moulin", "desserte": "62A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4769", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.933518862188881, 45.700768655854937 ] } }, -{ "type": "Feature", "properties": { "id": "42712", "nom": "Jean Moulin", "desserte": "62A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4770", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.932636818396946, 45.700861088188297 ] } }, -{ "type": "Feature", "properties": { "id": "42713", "nom": "Grisard", "desserte": "62A:A,76A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3590", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.947602280648333, 45.697867208283114 ] } }, -{ "type": "Feature", "properties": { "id": "42714", "nom": "Grisard", "desserte": "62A:R,76A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3591", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.947655352878226, 45.697631931191658 ] } }, -{ "type": "Feature", "properties": { "id": "42715", "nom": "Chemin de Revaison", "desserte": "62A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3062", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.916279117680783, 45.704335011235706 ] } }, -{ "type": "Feature", "properties": { "id": "42736", "nom": "Cusset", "desserte": "301A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "48", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.900279577024008, 45.765666556486131 ] } }, -{ "type": "Feature", "properties": { "id": "42737", "nom": "Flachet", "desserte": "301A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "50", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.89005425772041, 45.767548354798166 ] } }, -{ "type": "Feature", "properties": { "id": "42738", "nom": "Gratte Ciel", "desserte": "301A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "86", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.882205042817983, 45.768984435428315 ] } }, -{ "type": "Feature", "properties": { "id": "42739", "nom": "République Villeurbanne", "desserte": "301A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "308", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.873672963767564, 45.770559968724349 ] } }, -{ "type": "Feature", "properties": { "id": "42740", "nom": "Charpennes", "desserte": "301A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "250", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.864298583325514, 45.770543478420542 ] } }, -{ "type": "Feature", "properties": { "id": "42741", "nom": "Masséna", "desserte": "301A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "130", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.853429703947015, 45.76953888320007 ] } }, -{ "type": "Feature", "properties": { "id": "42743", "nom": "Hôtel de Ville - Louis Pradel", "desserte": "301A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "118", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.836094655323641, 45.767312343779615 ] } }, -{ "type": "Feature", "properties": { "id": "2317", "nom": "Pierre Audry", "desserte": "66A:R,90A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2419", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.808455165324796, 45.761867486835172 ] } }, -{ "type": "Feature", "properties": { "id": "2318", "nom": "Pierre-Benite Centre", "desserte": "15A:A,18B:A,C7B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2421", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.821258430483606, 45.702519730996862 ] } }, -{ "type": "Feature", "properties": { "id": "2319", "nom": "Pierre-Benite Centre", "desserte": "15A:R,18B:R,C7B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2420", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.820897650684648, 45.703634851654385 ] } }, -{ "type": "Feature", "properties": { "id": "2335", "nom": "Pinel - Laennec", "desserte": "1EX:R,24A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2432", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.889420773353383, 45.735202923527439 ] } }, -{ "type": "Feature", "properties": { "id": "2336", "nom": "Pinel - Laennec", "desserte": "1EX:A,24A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2431", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.888978437244072, 45.735366007795655 ] } }, -{ "type": "Feature", "properties": { "id": "2344", "nom": "Piscine d'Alaï", "desserte": "14B:A,2EX:R,73A:R,C21A:R,C24B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "695", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.77129079797128, 45.752301507963303 ] } }, -{ "type": "Feature", "properties": { "id": "2345", "nom": "Piscine d'Alaï", "desserte": "2EX:A,73A:A,C21A:A,C24B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "697", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.771164731501684, 45.752358247965923 ] } }, -{ "type": "Feature", "properties": { "id": "2350", "nom": "Place Docteurs Merieux", "desserte": "C22A:R,C7B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2436", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.825485408203443, 45.733218446124454 ] } }, -{ "type": "Feature", "properties": { "id": "2358", "nom": "Place Croix-Luizet", "desserte": "37A:A,69A:R,C17A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2440", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.882782990866699, 45.780108342144018 ] } }, -{ "type": "Feature", "properties": { "id": "2359", "nom": "Place Croix-Luizet", "desserte": "37A:R,69A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2439", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.882273051199989, 45.779930874152299 ] } }, -{ "type": "Feature", "properties": { "id": "2367", "nom": "Croix-Rousse", "desserte": "C13A:A,C13A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "337", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.832425211572224, 45.774823089546985 ] } }, -{ "type": "Feature", "properties": { "id": "2369", "nom": "Croix-Rousse", "desserte": "S12A:A,S12A:R,S6A:A,S6A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "334", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.832936110331875, 45.774624058636967 ] } }, -{ "type": "Feature", "properties": { "id": "2378", "nom": "Place des Buers", "desserte": "C17A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2441", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.891792316198887, 45.779363632469952 ] } }, -{ "type": "Feature", "properties": { "id": "2379", "nom": "Place des Buers", "desserte": "C17A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2442", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.891754698896746, 45.779661534171098 ] } }, -{ "type": "Feature", "properties": { "id": "2384", "nom": "Place Flammarion", "desserte": "2A:A,C18A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2446", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.820418019717084, 45.779308690922917 ] } }, -{ "type": "Feature", "properties": { "id": "2385", "nom": "Place Flammarion", "desserte": "2A:R,C18A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2447", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.821009330275975, 45.779583647927403 ] } }, -{ "type": "Feature", "properties": { "id": "2388", "nom": "Place Flammarion", "desserte": "S4A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2445", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.820486626116649, 45.77997325819107 ] } }, -{ "type": "Feature", "properties": { "id": "2396", "nom": "Place Henri", "desserte": "25A:A,C13A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2449", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.879804026353068, 45.748239131991355 ] } }, -{ "type": "Feature", "properties": { "id": "2397", "nom": "Place Henri", "desserte": "25A:R,C13A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2448", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.879325102767421, 45.748448011232433 ] } }, -{ "type": "Feature", "properties": { "id": "2402", "nom": "Place Stalingrad", "desserte": "C7B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2450", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.852012380885443, 45.74948647631804 ] } }, -{ "type": "Feature", "properties": { "id": "2403", "nom": "Place Wilson", "desserte": "37A:A,C17A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2453", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.868654780813964, 45.774459909002246 ] } }, -{ "type": "Feature", "properties": { "id": "2404", "nom": "Place Wilson", "desserte": "37A:R,C17A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2452", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.868261830592157, 45.774306745460471 ] } }, -{ "type": "Feature", "properties": { "id": "2408", "nom": "Plan du Loup (Les Razes)", "desserte": "C19A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2459", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.786063370465939, 45.7352382851846 ] } }, -{ "type": "Feature", "properties": { "id": "2409", "nom": "Plan du Loup (Les Razes)", "desserte": "C19A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2458", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.786170502832572, 45.735334957251652 ] } }, -{ "type": "Feature", "properties": { "id": "2410", "nom": "Point du Jour", "desserte": "90A:R,C21A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2460", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.797535579292421, 45.75637370925314 ] } }, -{ "type": "Feature", "properties": { "id": "2411", "nom": "Point du Jour", "desserte": "90A:A,C21A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2463", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.797963525511695, 45.756454337066337 ] } }, -{ "type": "Feature", "properties": { "id": "2412", "nom": "Poleymieux Eglise", "desserte": "84A:A,84A:R,R2A:A,R2A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2464", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.802551839574249, 45.857697252411832 ] } }, -{ "type": "Feature", "properties": { "id": "30413", "nom": "Pavillon 2C", "desserte": "88B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3821", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.808924601858498, 45.699911962337595 ] } }, -{ "type": "Feature", "properties": { "id": "30504", "nom": "Le Joli Mai", "desserte": "73A:A,C24B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3817", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.720839654039867, 45.738992246891279 ] } }, -{ "type": "Feature", "properties": { "id": "30505", "nom": "Le Joli Mai", "desserte": "73A:R,C24B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3818", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.721429645301836, 45.739258733815277 ] } }, -{ "type": "Feature", "properties": { "id": "30519", "nom": "La Graviere", "desserte": "90A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3819", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.804093218463848, 45.762674523277035 ] } }, -{ "type": "Feature", "properties": { "id": "30520", "nom": "La Graviere", "desserte": "90A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3820", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.804086362301469, 45.762521655794309 ] } }, -{ "type": "Feature", "properties": { "id": "30547", "nom": "Cazeneuve - Berliet", "desserte": "296:R,C16A:R,C25B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3822", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.866176823706906, 45.7393207833479 ] } }, -{ "type": "Feature", "properties": { "id": "30822", "nom": "Le Four", "desserte": "77A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3826", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.876563125667698, 45.856031912379692 ] } }, -{ "type": "Feature", "properties": { "id": "30823", "nom": "Le Four", "desserte": "77A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3825", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.877063376927706, 45.856263650664253 ] } }, -{ "type": "Feature", "properties": { "id": "31022", "nom": "Cornavent", "desserte": "16A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3828", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.967447621230731, 45.769362441487019 ] } }, -{ "type": "Feature", "properties": { "id": "31023", "nom": "Cornavent", "desserte": "16A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3827", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.967343490542687, 45.769067825738553 ] } }, -{ "type": "Feature", "properties": { "id": "31045", "nom": "Noyers", "desserte": "65A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3829", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.781729634703799, 45.751975588445582 ] } }, -{ "type": "Feature", "properties": { "id": "31046", "nom": "Noyers", "desserte": "65A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3830", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.781991277133376, 45.752365931668081 ] } }, -{ "type": "Feature", "properties": { "id": "31047", "nom": "Rue de la Garenne", "desserte": "65A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3832", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.780978197387373, 45.750110751532041 ] } }, -{ "type": "Feature", "properties": { "id": "31048", "nom": "Rue de la Garenne", "desserte": "65A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3831", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.78134470397513, 45.749967754692811 ] } }, -{ "type": "Feature", "properties": { "id": "31242", "nom": "Max Barel", "desserte": "35A:A,ZI1A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3833", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.897246291222053, 45.69839820900814 ] } }, -{ "type": "Feature", "properties": { "id": "31403", "nom": "Cazeneuve - Berliet", "desserte": "C16A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3823", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.866266774841987, 45.73876067832694 ] } }, -{ "type": "Feature", "properties": { "id": "32444", "nom": "Cazeneuve - Berliet", "desserte": "296:A,C25B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3824", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.866259276775842, 45.739156902324147 ] } }, -{ "type": "Feature", "properties": { "id": "33214", "nom": "Esplanade des Arts", "desserte": "T2:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "432", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.940637762987005, 45.694527806786752 ] } }, -{ "type": "Feature", "properties": { "id": "33215", "nom": "St Priest Jules Ferry", "desserte": "T2:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "447", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.946863486634349, 45.69468794327959 ] } }, -{ "type": "Feature", "properties": { "id": "33216", "nom": "St Priest Jules Ferry", "desserte": "T2:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "448", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.946778588831335, 45.694742308684631 ] } }, -{ "type": "Feature", "properties": { "id": "33218", "nom": "Cordière", "desserte": "T2:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "498", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.949788024500204, 45.693677811992572 ] } }, -{ "type": "Feature", "properties": { "id": "33219", "nom": "St Priest Bel Air", "desserte": "T2:A,T2:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "455", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.955839964506245, 45.692691361513454 ] } }, -{ "type": "Feature", "properties": { "id": "33221", "nom": "St Priest Bel Air", "desserte": "T2:A,T2:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "456", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.955832249188534, 45.692615568081543 ] } }, -{ "type": "Feature", "properties": { "id": "33284", "nom": "Ste Foy Les Sources", "desserte": "90A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3737", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.78913403876225, 45.740976849876176 ] } }, -{ "type": "Feature", "properties": { "id": "33285", "nom": "Ste Foy Les Sources", "desserte": "90A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3736", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.789173768764564, 45.741002984581698 ] } }, -{ "type": "Feature", "properties": { "id": "33288", "nom": "Ste Foy Châtelain", "desserte": "90A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "465", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.794692330368307, 45.736192720569179 ] } }, -{ "type": "Feature", "properties": { "id": "33304", "nom": "Le Centenaire", "desserte": "17B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3919", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.830488165927843, 45.698399400627203 ] } }, -{ "type": "Feature", "properties": { "id": "33465", "nom": "Pont des Planches", "desserte": "7A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2541", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.907123892459123, 45.769940321732868 ] } }, -{ "type": "Feature", "properties": { "id": "202", "nom": "Bifurcation du Rosay", "desserte": "20A:A,23A:A,2A:A,71A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "931", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.808651076657469, 45.791413786950812 ] } }, -{ "type": "Feature", "properties": { "id": "203", "nom": "Bifurcation du Rosay", "desserte": "20A:R,22A:R,23A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "930", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.808194470584394, 45.790415709933505 ] } }, -{ "type": "Feature", "properties": { "id": "204", "nom": "Bir Hakeim", "desserte": "C11A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "932", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.855110015531393, 45.753116520188179 ] } }, -{ "type": "Feature", "properties": { "id": "205", "nom": "Bir Hakeim", "desserte": "C11A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "933", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.854427580258789, 45.753095824413258 ] } }, -{ "type": "Feature", "properties": { "id": "209", "nom": "Bleriot", "desserte": "62A:A,87A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "934", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.948900162359545, 45.659157236574458 ] } }, -{ "type": "Feature", "properties": { "id": "210", "nom": "Bleriot", "desserte": "62A:R,87A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "935", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.948939942886023, 45.658913267626971 ] } }, -{ "type": "Feature", "properties": { "id": "211", "nom": "Bois de Dardilly", "desserte": "3A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "937", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.757004632232979, 45.798749179582082 ] } }, -{ "type": "Feature", "properties": { "id": "212", "nom": "Bois de Dardilly", "desserte": "3A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "936", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.757739973127669, 45.797914247919351 ] } }, -{ "type": "Feature", "properties": { "id": "213", "nom": "Bois de l'Etoile", "desserte": "98A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "939", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.725279670256588, 45.780580482182508 ] } }, -{ "type": "Feature", "properties": { "id": "215", "nom": "Bois de Parilly", "desserte": "26A:A,C15A:A,C17A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "941", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.913342547999986, 45.725591781017066 ] } }, -{ "type": "Feature", "properties": { "id": "216", "nom": "Bois de Parilly", "desserte": "26A:R,C15A:R,C17A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "940", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.912695790064288, 45.725777658300373 ] } }, -{ "type": "Feature", "properties": { "id": "219", "nom": "Bois de Serres", "desserte": "3A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "943", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.762773667232589, 45.795339384889111 ] } }, -{ "type": "Feature", "properties": { "id": "220", "nom": "Bois de Serres", "desserte": "3A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "942", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.762424426446505, 45.795589953131007 ] } }, -{ "type": "Feature", "properties": { "id": "221", "nom": "Bois des Chenes", "desserte": "78B:A,C10A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "945", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.78235296770535, 45.680665475897172 ] } }, -{ "type": "Feature", "properties": { "id": "222", "nom": "Bois des Chenes", "desserte": "78B:R,C10A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "944", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.782431935577963, 45.680708757743169 ] } }, -{ "type": "Feature", "properties": { "id": "223", "nom": "Bois Roux", "desserte": "33A:A,70A:A,77A:A,9A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "947", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.859868869750641, 45.8125846530465 ] } }, -{ "type": "Feature", "properties": { "id": "224", "nom": "Bois Roux", "desserte": "33A:R,70A:R,77A:R,9A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "946", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.859726132206127, 45.81256535493673 ] } }, -{ "type": "Feature", "properties": { "id": "226", "nom": "Bois Saint Paul", "desserte": "15A:A,15A:R,18B:A,18B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "948", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.801552441053145, 45.643979931718498 ] } }, -{ "type": "Feature", "properties": { "id": "227", "nom": "Bon Coin", "desserte": "448A:A,C11A:A,C17A:R,C3A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "950", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.906122944638889, 45.760628752227156 ] } }, -{ "type": "Feature", "properties": { "id": "228", "nom": "Bon Coin", "desserte": "C11A:R,C3A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "951", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.904731740859404, 45.760579568440804 ] } }, -{ "type": "Feature", "properties": { "id": "229", "nom": "Bonnand", "desserte": "25A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "952", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.884212713366237, 45.747932122168933 ] } }, -{ "type": "Feature", "properties": { "id": "230", "nom": "Bonnand", "desserte": "25A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "953", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.884153381834211, 45.749427688575089 ] } }, -{ "type": "Feature", "properties": { "id": "233", "nom": "Bonnevay - Bel Air", "desserte": "7A:A,7A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "954", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.907700275093766, 45.753103462903631 ] } }, -{ "type": "Feature", "properties": { "id": "236", "nom": "Bourdarias", "desserte": "C25B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "956", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.883642519598167, 45.723947580941704 ] } }, -{ "type": "Feature", "properties": { "id": "237", "nom": "Bourget", "desserte": "31A:A,43A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "958", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.810510976089015, 45.782704761355241 ] } }, -{ "type": "Feature", "properties": { "id": "238", "nom": "Bourget", "desserte": "31A:R,43A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "959", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.81166877965993, 45.78356136135816 ] } }, -{ "type": "Feature", "properties": { "id": "239", "nom": "Bournes", "desserte": "2A:A,C18A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "961", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.820649808937345, 45.777035276145476 ] } }, -{ "type": "Feature", "properties": { "id": "2416", "nom": "Poleymieux Mairie", "desserte": "84A:A,84A:R,R2A:A,R2A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2466", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.799746085067328, 45.856606593281931 ] } }, -{ "type": "Feature", "properties": { "id": "243", "nom": "Boyer", "desserte": "46A:A,46A:R,90A:A,90A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "964", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.784955175507311, 45.758872046502709 ] } }, -{ "type": "Feature", "properties": { "id": "244", "nom": "Brindas Centre", "desserte": "73A:A,73A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "965", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.693645102810692, 45.7199003018046 ] } }, -{ "type": "Feature", "properties": { "id": "250", "nom": "Bron De Lattre", "desserte": "C15A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "966", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.917438168406341, 45.734274040020878 ] } }, -{ "type": "Feature", "properties": { "id": "255", "nom": "Bron Jules Mas", "desserte": "24A:A,79A:A,C17A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "968", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.911130350515928, 45.73572412934228 ] } }, -{ "type": "Feature", "properties": { "id": "256", "nom": "Boutasse - Camille Rousset", "desserte": "C17A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "406", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.904198486012517, 45.73455073098701 ] } }, -{ "type": "Feature", "properties": { "id": "266", "nom": "Bron Terraillon", "desserte": "24A:R,25A:R,52A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "976", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.923750860055769, 45.747153803924526 ] } }, -{ "type": "Feature", "properties": { "id": "267", "nom": "Bron Terraillon", "desserte": "24A:A,25A:A,52A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "977", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.923962008027067, 45.746995912161282 ] } }, -{ "type": "Feature", "properties": { "id": "268", "nom": "Brossolette - Genas", "desserte": "52A:A,C15A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "978", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.917536423793489, 45.747881955905896 ] } }, -{ "type": "Feature", "properties": { "id": "270", "nom": "Brossolette - Genas", "desserte": "24A:A,25A:A,52A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "980", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.918474891582657, 45.748427465932046 ] } }, -{ "type": "Feature", "properties": { "id": "285", "nom": "Bruyeres", "desserte": "16A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "984", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.941277381505705, 45.762951273734124 ] } }, -{ "type": "Feature", "properties": { "id": "286", "nom": "Bruyeres", "desserte": "16A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "985", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.941545888576345, 45.762918040088287 ] } }, -{ "type": "Feature", "properties": { "id": "288", "nom": "Buers - Pressense", "desserte": "C17A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "987", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.89639223805591, 45.770122456404131 ] } }, -{ "type": "Feature", "properties": { "id": "289", "nom": "Buers - Salengro", "desserte": "37A:A,C17A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "988", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.89015465957492, 45.782605374998909 ] } }, -{ "type": "Feature", "properties": { "id": "290", "nom": "Buers - Salengro", "desserte": "37A:R,C17A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "989", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.88964100523927, 45.782626054311436 ] } }, -{ "type": "Feature", "properties": { "id": "291", "nom": "Bugeaud", "desserte": "38A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "990", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.852840704521174, 45.767038307672834 ] } }, -{ "type": "Feature", "properties": { "id": "295", "nom": "Mions Buzy", "desserte": "62A:A,87A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "993", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.95779296781686, 45.669346412537898 ] } }, -{ "type": "Feature", "properties": { "id": "296", "nom": "Mions Buzy", "desserte": "62A:R,87A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "994", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.959163093477011, 45.669269354436885 ] } }, -{ "type": "Feature", "properties": { "id": "306", "nom": "College Louis Aragon", "desserte": "54A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "996", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.890113087526159, 45.693052016263017 ] } }, -{ "type": "Feature", "properties": { "id": "307", "nom": "College Louis Aragon", "desserte": "54A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "995", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.889978388955581, 45.693748188651853 ] } }, -{ "type": "Feature", "properties": { "id": "310", "nom": "Claude Joseph Bonnet", "desserte": "2A:R,C18A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "997", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.821157528473235, 45.774890773553039 ] } }, -{ "type": "Feature", "properties": { "id": "338", "nom": "Caluire Victor Hugo", "desserte": "40A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1028", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.841284080057449, 45.800781241705316 ] } }, -{ "type": "Feature", "properties": { "id": "340", "nom": "Cambon", "desserte": "26A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1030", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.879679003124228, 45.722165223832761 ] } }, -{ "type": "Feature", "properties": { "id": "341", "nom": "Camping International", "desserte": "3A:A,89A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1032", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.760950950762784, 45.82141856215533 ] } }, -{ "type": "Feature", "properties": { "id": "342", "nom": "Camping International", "desserte": "3A:R,89A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1031", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.760732304499259, 45.821423278437436 ] } }, -{ "type": "Feature", "properties": { "id": "343", "nom": "Carette", "desserte": "C13A:A,S5A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1033", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.840206676894378, 45.78644829869905 ] } }, -{ "type": "Feature", "properties": { "id": "344", "nom": "Carette", "desserte": "S5A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1034", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.839813310931911, 45.786286043317887 ] } }, -{ "type": "Feature", "properties": { "id": "353", "nom": "Carry", "desserte": "C11A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1041", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.870949922235391, 45.755037339436356 ] } }, -{ "type": "Feature", "properties": { "id": "2422", "nom": "Polyclinique de Rillieux", "desserte": "33A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2468", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.887158792258774, 45.822315660880712 ] } }, -{ "type": "Feature", "properties": { "id": "359", "nom": "Centre Psychotherapique", "desserte": "71A:R,S7A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1043", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.835578870434105, 45.817965651012706 ] } }, -{ "type": "Feature", "properties": { "id": "361", "nom": "Centre Social Sauvegarde", "desserte": "19A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1046", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.790498489005725, 45.787149273058183 ] } }, -{ "type": "Feature", "properties": { "id": "363", "nom": "Centre Social La Mulatiere", "desserte": "17B:A,8A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1049", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.806576437746001, 45.7286139310064 ] } }, -{ "type": "Feature", "properties": { "id": "364", "nom": "Centre Social La Mulatiere", "desserte": "17B:R,8A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1050", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.806485350170326, 45.728588932934564 ] } }, -{ "type": "Feature", "properties": { "id": "365", "nom": "Centre Sportif", "desserte": "C25B:R,ZI8A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1053", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.957290055651128, 45.695210791000967 ] } }, -{ "type": "Feature", "properties": { "id": "366", "nom": "Centre Sportif", "desserte": "C25B:A,ZI8A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1052", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.957260963334408, 45.694869409098715 ] } }, -{ "type": "Feature", "properties": { "id": "367", "nom": "Francheville Taffignon", "desserte": "C20A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1056", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.775294131715904, 45.734707767479676 ] } }, -{ "type": "Feature", "properties": { "id": "368", "nom": "Francheville Taffignon", "desserte": "14B:A,14B:R,C20A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1055", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.775173780070633, 45.734602371828629 ] } }, -{ "type": "Feature", "properties": { "id": "371", "nom": "Cesar Paulet", "desserte": "71A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1057", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.841602229945541, 45.816805399235712 ] } }, -{ "type": "Feature", "properties": { "id": "373", "nom": "Chabrol", "desserte": "73A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1061", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.711583531426295, 45.734202122307053 ] } }, -{ "type": "Feature", "properties": { "id": "374", "nom": "Chamagnieu", "desserte": "21A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1063", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.753500064578046, 45.859842230115405 ] } }, -{ "type": "Feature", "properties": { "id": "375", "nom": "Chamagnieu", "desserte": "21A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1062", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.753447791034829, 45.859825351447505 ] } }, -{ "type": "Feature", "properties": { "id": "378", "nom": "Champ Blanc", "desserte": "16A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1065", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.947220193024537, 45.761075953280901 ] } }, -{ "type": "Feature", "properties": { "id": "379", "nom": "Champ Blanc", "desserte": "16A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1064", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.946778675002676, 45.761257248237172 ] } }, -{ "type": "Feature", "properties": { "id": "383", "nom": "Champagne (che.du Pave)", "desserte": "21A:A,GE4A:A,GE4A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1066", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.784431821401742, 45.801737321536763 ] } }, -{ "type": "Feature", "properties": { "id": "384", "nom": "Champagne (che.du Pave)", "desserte": "21A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1067", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.784947340337368, 45.801465057449668 ] } }, -{ "type": "Feature", "properties": { "id": "385", "nom": "Champagne (ch.St Didier)", "desserte": "118A:A,21A:A,61A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1071", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.786729727380682, 45.80045408506772 ] } }, -{ "type": "Feature", "properties": { "id": "386", "nom": "Champagne (ch.St Didier)", "desserte": "118A:R,21A:R,61A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1070", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.786697203090559, 45.80030177634643 ] } }, -{ "type": "Feature", "properties": { "id": "387", "nom": "Champagne Centre", "desserte": "21A:A,61A:A,942A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1072", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.792327589070347, 45.795264257873313 ] } }, -{ "type": "Feature", "properties": { "id": "389", "nom": "Champfleury", "desserte": "21A:A,61A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1075", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.788213167055622, 45.799089565670357 ] } }, -{ "type": "Feature", "properties": { "id": "390", "nom": "Champfleury", "desserte": "21A:R,61A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1074", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.789418514096758, 45.79783911082874 ] } }, -{ "type": "Feature", "properties": { "id": "391", "nom": "Champoulin", "desserte": "72B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1077", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.716147757370413, 45.758911470414596 ] } }, -{ "type": "Feature", "properties": { "id": "392", "nom": "Champoulin", "desserte": "72B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1078", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.717205901651903, 45.758700020710037 ] } }, -{ "type": "Feature", "properties": { "id": "393", "nom": "Champvert", "desserte": "45A:R,55A:A,90A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1079", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.792272152402716, 45.764058836384095 ] } }, -{ "type": "Feature", "properties": { "id": "394", "nom": "Champvert", "desserte": "45A:A,55A:R,90A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1080", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.79300007129895, 45.763943901009178 ] } }, -{ "type": "Feature", "properties": { "id": "395", "nom": "Champvillard", "desserte": "15A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1083", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.818449043687628, 45.672680317339498 ] } }, -{ "type": "Feature", "properties": { "id": "2426", "nom": "Poncettes", "desserte": "C20A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2470", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.805443418850065, 45.753787790065196 ] } }, -{ "type": "Feature", "properties": { "id": "400", "nom": "Chante Ruisseau", "desserte": "72B:R,98A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1088", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.738615003126055, 45.77251931475417 ] } }, -{ "type": "Feature", "properties": { "id": "401", "nom": "Chantegrillet", "desserte": "14B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "683", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.77325212363021, 45.738811546094951 ] } }, -{ "type": "Feature", "properties": { "id": "404", "nom": "Chantemerle", "desserte": "20A:A,22A:A,84A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1091", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.79415619848793, 45.819770252203732 ] } }, -{ "type": "Feature", "properties": { "id": "405", "nom": "Chantemerle", "desserte": "20A:R,22A:R,84A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1092", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.794092295539151, 45.819780650704033 ] } }, -{ "type": "Feature", "properties": { "id": "410", "nom": "Charbinat", "desserte": "17B:A,C7B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1094", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.820885590021724, 45.697643643388425 ] } }, -{ "type": "Feature", "properties": { "id": "2431", "nom": "Professeur Guerin", "desserte": "66A:R,90A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2478", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.806622195266058, 45.764293113909979 ] } }, -{ "type": "Feature", "properties": { "id": "2437", "nom": "Pre Gaudry - Yves Farge", "desserte": "C22A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2483", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.832909019063854, 45.741892932206632 ] } }, -{ "type": "Feature", "properties": { "id": "2438", "nom": "Pre Gaudry - Yves Farge", "desserte": "C22A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2482", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.833316113266103, 45.742081901817812 ] } }, -{ "type": "Feature", "properties": { "id": "2441", "nom": "Professeur Roux", "desserte": "C16A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2484", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.858954617431003, 45.720859828204318 ] } }, -{ "type": "Feature", "properties": { "id": "2445", "nom": "Proudhon", "desserte": "16A:A,79A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2486", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.955488979964733, 45.760253276590461 ] } }, -{ "type": "Feature", "properties": { "id": "2446", "nom": "Proudhon", "desserte": "16A:R,79A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2487", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.955553635374551, 45.76053081855715 ] } }, -{ "type": "Feature", "properties": { "id": "2447", "nom": "Pont Blanc", "desserte": "11B:A,12B:A,14B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2488", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.799319466577168, 45.719818522697359 ] } }, -{ "type": "Feature", "properties": { "id": "2448", "nom": "Pont Blanc", "desserte": "11B:R,12B:R,14B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2489", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.799549674203926, 45.719785385870665 ] } }, -{ "type": "Feature", "properties": { "id": "2450", "nom": "Pont Bonaparte", "desserte": "31A:R,40A:A,40A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2490", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.830092853125428, 45.759750791746747 ] } }, -{ "type": "Feature", "properties": { "id": "2462", "nom": "Pont d'Oullins", "desserte": "17B:R,63A:R,C10A:R,C7B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2504", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.810039103423618, 45.718150457152056 ] } }, -{ "type": "Feature", "properties": { "id": "2465", "nom": "Pont d'Oullins", "desserte": "17B:A,63A:A,C10A:A,C7B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2502", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.809898298768305, 45.718162562450317 ] } }, -{ "type": "Feature", "properties": { "id": "2467", "nom": "Pont de Bourgoin", "desserte": "C12A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2508", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.854668787395108, 45.716221480339129 ] } }, -{ "type": "Feature", "properties": { "id": "2470", "nom": "Pont de Collonges RG", "desserte": "40A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2515", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.847638234888654, 45.812827132669319 ] } }, -{ "type": "Feature", "properties": { "id": "2471", "nom": "Pont de Collonges RG", "desserte": "40A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2514", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.848293800549141, 45.813370560974469 ] } }, -{ "type": "Feature", "properties": { "id": "2477", "nom": "Pont de Fontaines", "desserte": "77A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2518", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.849331559949382, 45.832133085835849 ] } }, -{ "type": "Feature", "properties": { "id": "2478", "nom": "Pont de Fontaines", "desserte": "40A:R,70A:R,77A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2517", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.849139839309793, 45.832164375443021 ] } }, -{ "type": "Feature", "properties": { "id": "2479", "nom": "Pont de l'Universite", "desserte": "15A:A,C10A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2519", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.833891394011752, 45.753626579945447 ] } }, -{ "type": "Feature", "properties": { "id": "2480", "nom": "Pont de l'Universite", "desserte": "15A:R,35A:R,C10A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2520", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.833672634061642, 45.754189518197798 ] } }, -{ "type": "Feature", "properties": { "id": "2482", "nom": "Pont de la Graviere", "desserte": "14B:A,C19A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2523", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.780061702778234, 45.7283123922995 ] } }, -{ "type": "Feature", "properties": { "id": "2483", "nom": "Pont de la Graviere", "desserte": "14B:R,C19A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2522", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.779753948577682, 45.7283280950696 ] } }, -{ "type": "Feature", "properties": { "id": "2486", "nom": "Pont Guillotiere RD", "desserte": "171:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2524", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.837631834915554, 45.759538086709284 ] } }, -{ "type": "Feature", "properties": { "id": "411", "nom": "Charbinat", "desserte": "17B:R,C7B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1093", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.819867632103052, 45.697538642644169 ] } }, -{ "type": "Feature", "properties": { "id": "412", "nom": "Chardonnet", "desserte": "ZI3A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1096", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.929842723660467, 45.765925400073087 ] } }, -{ "type": "Feature", "properties": { "id": "413", "nom": "Chardonnet", "desserte": "ZI3A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1097", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.929770300784822, 45.766026089293618 ] } }, -{ "type": "Feature", "properties": { "id": "419", "nom": "Charles Richard", "desserte": "25A:A,C26A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1101", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.888492165395133, 45.749275121474 ] } }, -{ "type": "Feature", "properties": { "id": "420", "nom": "Charles Richard", "desserte": "25A:R,C26A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1102", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.887350610080044, 45.750444238870962 ] } }, -{ "type": "Feature", "properties": { "id": "423", "nom": "Charly Centre", "desserte": "78B:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1103", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.793272808630419, 45.649391354031096 ] } }, -{ "type": "Feature", "properties": { "id": "424", "nom": "Charly Centre", "desserte": "78B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1104", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.793302859975417, 45.649489705474814 ] } }, -{ "type": "Feature", "properties": { "id": "425", "nom": "Charly Eglise", "desserte": "78B:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1105", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.793300768010994, 45.643684143443195 ] } }, -{ "type": "Feature", "properties": { "id": "426", "nom": "Charly Eglise", "desserte": "78B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1106", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.793388513372312, 45.64421327447959 ] } }, -{ "type": "Feature", "properties": { "id": "33725", "nom": "Henri Marechal", "desserte": "62A:R,C25B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3927", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.939056074159964, 45.692079826942482 ] } }, -{ "type": "Feature", "properties": { "id": "33770", "nom": "Perrache", "desserte": "60A:A,60A:R,C22A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "166", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.827813624220795, 45.749459083577932 ] } }, -{ "type": "Feature", "properties": { "id": "33771", "nom": "Perrache", "desserte": "63A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "165", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.827530053016583, 45.749159338392602 ] } }, -{ "type": "Feature", "properties": { "id": "33773", "nom": "Perrache", "desserte": "46A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "164", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.825708709534912, 45.750108856008346 ] } }, -{ "type": "Feature", "properties": { "id": "33775", "nom": "Perrache", "desserte": "49A:A,C20A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "154", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.825862030324944, 45.750087453740051 ] } }, -{ "type": "Feature", "properties": { "id": "33778", "nom": "Perrache", "desserte": "C21A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "159", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.826432710109942, 45.749912776290131 ] } }, -{ "type": "Feature", "properties": { "id": "33779", "nom": "Perrache", "desserte": "31A:R,46A:R,49A:R,55A:R,63A:R,8A:R,C19A:R,C20A:R,C21A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "162", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.825681628902244, 45.749794417131881 ] } }, -{ "type": "Feature", "properties": { "id": "33780", "nom": "Perrache", "desserte": "55A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "161", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.82626776606553, 45.749961440540766 ] } }, -{ "type": "Feature", "properties": { "id": "33782", "nom": "Perrache", "desserte": "31A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "160", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.826598060756153, 45.7498731039002 ] } }, -{ "type": "Feature", "properties": { "id": "33945", "nom": "Pont des Razes", "desserte": "60A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "172", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.850668196956132, 45.668010822973699 ] } }, -{ "type": "Feature", "properties": { "id": "33989", "nom": "Gymnase Frison Roche", "desserte": "93A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3933", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.858800100382983, 45.689719121915587 ] } }, -{ "type": "Feature", "properties": { "id": "34005", "nom": "Gare de Vaise", "desserte": "71A:A,84A:A,S11A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "268", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.804895249374276, 45.780551044914851 ] } }, -{ "type": "Feature", "properties": { "id": "34006", "nom": "Duchere Lanessan", "desserte": "S11A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1334", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.79729103404244, 45.791447195885155 ] } }, -{ "type": "Feature", "properties": { "id": "34107", "nom": "Chassieu Place", "desserte": "28A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5450", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.969774483000449, 45.738171145398226 ] } }, -{ "type": "Feature", "properties": { "id": "427", "nom": "Charmet", "desserte": "17B:A,C7B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1107", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.815794181422747, 45.697852083536084 ] } }, -{ "type": "Feature", "properties": { "id": "428", "nom": "Charmet", "desserte": "17B:R,C7B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1108", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.816444582914731, 45.697747692621355 ] } }, -{ "type": "Feature", "properties": { "id": "434", "nom": "Charpennes", "desserte": "27A:R,70A:A,C17A:A,C2A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "245", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.861800607793188, 45.770860720611402 ] } }, -{ "type": "Feature", "properties": { "id": "440", "nom": "Charriere Blanche", "desserte": "3A:R,55A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1109", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.767789105454748, 45.78072138457479 ] } }, -{ "type": "Feature", "properties": { "id": "441", "nom": "Charriere Blanche", "desserte": "3A:A,55A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1110", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.76733597142234, 45.780947216251263 ] } }, -{ "type": "Feature", "properties": { "id": "443", "nom": "Gare de Villeurbanne", "desserte": "C26A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "553", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.891167814643029, 45.756226312169808 ] } }, -{ "type": "Feature", "properties": { "id": "2488", "nom": "Pont de La Mulatiere", "desserte": "15A:R,63A:R,C10A:R,C7B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2530", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.815827591692206, 45.729985094423554 ] } }, -{ "type": "Feature", "properties": { "id": "2490", "nom": "Pont de La Mulatiere", "desserte": "8A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2528", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.815220761765417, 45.729638457809784 ] } }, -{ "type": "Feature", "properties": { "id": "2491", "nom": "Pont de La Mulatiere", "desserte": "63A:R,8A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2529", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.815205609057819, 45.729872820192185 ] } }, -{ "type": "Feature", "properties": { "id": "2492", "nom": "Pont de la Sucrerie", "desserte": "52A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2533", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.933450409324743, 45.772872226890364 ] } }, -{ "type": "Feature", "properties": { "id": "2494", "nom": "Pont De Lattre RD", "desserte": "171:A,9A:A,C5A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2534", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.839457430223827, 45.775357504613972 ] } }, -{ "type": "Feature", "properties": { "id": "2495", "nom": "Pont De Lattre RD", "desserte": "C6B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2538", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.838207755298894, 45.772486965215229 ] } }, -{ "type": "Feature", "properties": { "id": "2499", "nom": "Pont des Planches", "desserte": "57A:A,83A:A,C3A:A,C8A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2542", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.908214849052218, 45.77126556047655 ] } }, -{ "type": "Feature", "properties": { "id": "2507", "nom": "Pont Gallieni RD", "desserte": "15A:R,C10A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2543", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.83194705787306, 45.750447406869256 ] } }, -{ "type": "Feature", "properties": { "id": "2513", "nom": "Pont Kitchener", "desserte": "C20A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "177", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.823657477381309, 45.751378475878099 ] } }, -{ "type": "Feature", "properties": { "id": "2514", "nom": "Pont Kitchener", "desserte": "31A:A,46A:A,49A:A,55A:A,8A:A,C19A:A,C21A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "178", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.823782919243475, 45.75102465276612 ] } }, -{ "type": "Feature", "properties": { "id": "2519", "nom": "Pont Koënig", "desserte": "19A:A,2A:A,31A:A,45A:A,C14A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "182", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.812139396474101, 45.770580385261759 ] } }, -{ "type": "Feature", "properties": { "id": "2520", "nom": "Pont Koënig", "desserte": "19A:R,2A:R,31A:R,45A:R,C14A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "183", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.812344783735451, 45.769999786223906 ] } }, -{ "type": "Feature", "properties": { "id": "2526", "nom": "Pont Koënig", "desserte": "19A:R,31A:R,40A:R,C14A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "185", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.814617656924566, 45.769346574871264 ] } }, -{ "type": "Feature", "properties": { "id": "2537", "nom": "Pont Mouton", "desserte": "448A:A,5A:A,5A:R,90A:A,90A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2548", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.809579684002993, 45.773724165820056 ] } }, -{ "type": "Feature", "properties": { "id": "2540", "nom": "Musée des Confluences", "desserte": "15A:A,63A:A,C10A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "771", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.81849852796984, 45.734777631971809 ] } }, -{ "type": "Feature", "properties": { "id": "2541", "nom": "Musée des Confluences", "desserte": "15A:R,C10A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "772", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.818919305818594, 45.734417282791384 ] } }, -{ "type": "Feature", "properties": { "id": "2542", "nom": "Musée des Confluences", "desserte": "C7B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "776", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.81751926172761, 45.73358414018908 ] } }, -{ "type": "Feature", "properties": { "id": "2543", "nom": "Musée des Confluences", "desserte": "C7B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "777", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.817899082903851, 45.733170693852429 ] } }, -{ "type": "Feature", "properties": { "id": "2547", "nom": "Pont Rouge", "desserte": "11B:A,12B:A,14B:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2551", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.783615086404919, 45.723536454629595 ] } }, -{ "type": "Feature", "properties": { "id": "2551", "nom": "Pyrenees", "desserte": "C12A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2553", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.854203401111143, 45.721218580205402 ] } }, -{ "type": "Feature", "properties": { "id": "446", "nom": "Chasselay", "desserte": "21A:A,21A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1114", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.771388619925725, 45.873957113897461 ] } }, -{ "type": "Feature", "properties": { "id": "449", "nom": "Chassieu Lavoisier", "desserte": "76A:R,ZI5B:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1116", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.966323146585112, 45.73293210695175 ] } }, -{ "type": "Feature", "properties": { "id": "450", "nom": "Chassieu Lavoisier", "desserte": "76A:A,ZI5B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1117", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.96579676469737, 45.733214489624665 ] } }, -{ "type": "Feature", "properties": { "id": "451", "nom": "Chassieu Mairie", "desserte": "68B:A,76A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1118", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.97177724029655, 45.742678975940535 ] } }, -{ "type": "Feature", "properties": { "id": "452", "nom": "Chassieu Mairie", "desserte": "68B:R,76A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1119", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.971799125111603, 45.742867496966461 ] } }, -{ "type": "Feature", "properties": { "id": "453", "nom": "Chassieu Place", "desserte": "68B:A,76A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "21", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.969574321518746, 45.738823959924389 ] } }, -{ "type": "Feature", "properties": { "id": "454", "nom": "Chassieu Place", "desserte": "28A:A,68B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "22", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.968677903797501, 45.738358897998012 ] } }, -{ "type": "Feature", "properties": { "id": "459", "nom": "Chateau Roy", "desserte": "40A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1120", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.853029345538832, 45.829367966977564 ] } }, -{ "type": "Feature", "properties": { "id": "460", "nom": "Chateau Roy", "desserte": "40A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1121", "last_update": "", "last_update_fme": "2017-06-14 06:00:23" }, "geometry": { "type": "Point", "coordinates": [ 4.853470586347206, 45.828881017010893 ] } }, -{ "type": "Feature", "properties": { "id": "2555", "nom": "Quai Gillet", "desserte": "2A:A,40A:R,45A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2554", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.813672550638957, 45.771779726163068 ] } }, -{ "type": "Feature", "properties": { "id": "2558", "nom": "Quarantaine", "desserte": "31A:A,448A:A,C20A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2557", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.823611606592607, 45.754061826533601 ] } }, -{ "type": "Feature", "properties": { "id": "2559", "nom": "Quatre Chemins", "desserte": "C24B:A,C24B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2559", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.690814932062056, 45.740458847762305 ] } }, -{ "type": "Feature", "properties": { "id": "2565", "nom": "Rancy", "desserte": "C25B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2561", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.851435577591515, 45.756277316994002 ] } }, -{ "type": "Feature", "properties": { "id": "2566", "nom": "Raspail", "desserte": "35A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2562", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.839583318214612, 45.755228034574344 ] } }, -{ "type": "Feature", "properties": { "id": "2572", "nom": "Rond Point de Vancia", "desserte": "C5A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2563", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.909185553107616, 45.831904362003179 ] } }, -{ "type": "Feature", "properties": { "id": "2573", "nom": "Rond Point de Vancia", "desserte": "C5A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2564", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.908627623242269, 45.831539062634143 ] } }, -{ "type": "Feature", "properties": { "id": "2583", "nom": "Reims", "desserte": "C17A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2566", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.910313629058885, 45.73887535136874 ] } }, -{ "type": "Feature", "properties": { "id": "2584", "nom": "Reims", "desserte": "C17A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2565", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.911375017347286, 45.739580121168906 ] } }, -{ "type": "Feature", "properties": { "id": "2595", "nom": "Residence", "desserte": "3A:R,55A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2568", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.770769980924918, 45.77901422704349 ] } }, -{ "type": "Feature", "properties": { "id": "2597", "nom": "Residence Bertrand", "desserte": "S4A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2569", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.822662494533071, 45.784281671017801 ] } }, -{ "type": "Feature", "properties": { "id": "2598", "nom": "Residence Le Parc", "desserte": "S4A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2570", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.817459846444345, 45.775899641438492 ] } }, -{ "type": "Feature", "properties": { "id": "2600", "nom": "Revaison", "desserte": "C25B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2571", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.917020779688775, 45.702067603868493 ] } }, -{ "type": "Feature", "properties": { "id": "2602", "nom": "Rillieux Industrie", "desserte": "33A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2574", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.877297843651279, 45.820387687843812 ] } }, -{ "type": "Feature", "properties": { "id": "2603", "nom": "Rillieux Les Manges", "desserte": "C5A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2575", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.887577422902373, 45.811639457361196 ] } }, -{ "type": "Feature", "properties": { "id": "2604", "nom": "Rillieux Les Manges", "desserte": "C5A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2576", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.887173456435432, 45.811810653656075 ] } }, -{ "type": "Feature", "properties": { "id": "41679", "nom": "Observatoire", "desserte": "S9A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4227", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.786949583551197, 45.696820865876965 ] } }, -{ "type": "Feature", "properties": { "id": "2609", "nom": "Rillieux Salignat", "desserte": "33A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2582", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.896399245878707, 45.821133407584419 ] } }, -{ "type": "Feature", "properties": { "id": "2610", "nom": "Rillieux Salignat", "desserte": "33A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2583", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.89640791925169, 45.821043195299694 ] } }, -{ "type": "Feature", "properties": { "id": "2613", "nom": "Centre Culturel", "desserte": "S15A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2590", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.778867280322096, 45.778158757085933 ] } }, -{ "type": "Feature", "properties": { "id": "2614", "nom": "Centre Culturel", "desserte": "19A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2588", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.779019680031951, 45.778983534599242 ] } }, -{ "type": "Feature", "properties": { "id": "2615", "nom": "Robespierre", "desserte": "62A:A,62A:R,76A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2593", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.948352965445028, 45.700694225519008 ] } }, -{ "type": "Feature", "properties": { "id": "2616", "nom": "Robespierre", "desserte": "62A:A,62A:R,76A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2592", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.948261433723086, 45.700660351042885 ] } }, -{ "type": "Feature", "properties": { "id": "2617", "nom": "Rochecardon", "desserte": "20A:A,22A:A,23A:A,2A:A,71A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2594", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.8086849312773, 45.787587567582278 ] } }, -{ "type": "Feature", "properties": { "id": "2618", "nom": "Rochecardon", "desserte": "20A:R,22A:R,23A:R,2A:R,71A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2595", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.808493261832298, 45.787330753696438 ] } }, -{ "type": "Feature", "properties": { "id": "2619", "nom": "Rochetaillee", "desserte": "40A:A,70A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2597", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.835021310545693, 45.842803534550391 ] } }, -{ "type": "Feature", "properties": { "id": "2620", "nom": "Rochetaillee", "desserte": "40A:R,70A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2596", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.834904263413785, 45.842212051403344 ] } }, -{ "type": "Feature", "properties": { "id": "34292", "nom": "Jean Giono", "desserte": "17B:R,S9A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1606", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.801373182664887, 45.68990699328311 ] } }, -{ "type": "Feature", "properties": { "id": "34294", "nom": "St Genis Collonges", "desserte": "17B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2731", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.808166698594994, 45.693042848291128 ] } }, -{ "type": "Feature", "properties": { "id": "34313", "nom": "Feyzin Oasis", "desserte": "39A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3950", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.866596661950214, 45.681064284650937 ] } }, -{ "type": "Feature", "properties": { "id": "34316", "nom": "Les Roussettes", "desserte": "39A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2045", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.862142543264471, 45.67774423786809 ] } }, -{ "type": "Feature", "properties": { "id": "34317", "nom": "Les Roussettes", "desserte": "39A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2044", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.861740770575711, 45.677663275950884 ] } }, -{ "type": "Feature", "properties": { "id": "34394", "nom": "St Priest Jules Ferry", "desserte": "50A:R,62A:A,76A:R,C25B:R,R5A:A,R5A:R,ZI8A:A,ZI8A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "450", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.946725107318287, 45.694809085086497 ] } }, -{ "type": "Feature", "properties": { "id": "34412", "nom": "St Priest Bel Air", "desserte": "C25B:A,ZI8A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "454", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.957455082887946, 45.693010537461454 ] } }, -{ "type": "Feature", "properties": { "id": "34414", "nom": "Pasteur - 11 Novembre", "desserte": "62A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3962", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.925889065583776, 45.701062086676522 ] } }, -{ "type": "Feature", "properties": { "id": "34416", "nom": "Gare de Vénissieux", "desserte": "54A:A,54A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "278", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.888555890054443, 45.706292407475701 ] } }, -{ "type": "Feature", "properties": { "id": "34435", "nom": "Henri Marechal", "desserte": "62A:A,C25B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3928", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.939059898540661, 45.692160752145547 ] } }, -{ "type": "Feature", "properties": { "id": "34453", "nom": "Venissieux Allende", "desserte": "ZI1A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3574", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.903417194943308, 45.696024785565704 ] } }, -{ "type": "Feature", "properties": { "id": "34454", "nom": "Timbaud - Charbonnier", "desserte": "ZI1A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3963", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.905937121029303, 45.693320658403657 ] } }, -{ "type": "Feature", "properties": { "id": "34455", "nom": "Timbaud - Charbonnier", "desserte": "ZI1A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3964", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.906014525314217, 45.693327886252604 ] } }, -{ "type": "Feature", "properties": { "id": "2842", "nom": "St Paul", "desserte": "19A:A,31A:A,40A:A,C14A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2751", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.828257351190549, 45.766641419999644 ] } }, -{ "type": "Feature", "properties": { "id": "2853", "nom": "St Pierre de Vaise", "desserte": "19A:A,45A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2755", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.807065276150691, 45.773014418702417 ] } }, -{ "type": "Feature", "properties": { "id": "2854", "nom": "St Pierre de Vaise", "desserte": "19A:R,448A:A,45A:R,90A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2754", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.808039933193075, 45.773236001093764 ] } }, -{ "type": "Feature", "properties": { "id": "2857", "nom": "St Priest Beausejour", "desserte": "62A:A,62A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2758", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.946143259380569, 45.705300423715826 ] } }, -{ "type": "Feature", "properties": { "id": "2865", "nom": "St Priest Gare", "desserte": "62A:A,76A:R,ZI1A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2759", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.935050294675867, 45.688032020033667 ] } }, -{ "type": "Feature", "properties": { "id": "2868", "nom": "St Priest Hôtel de Ville", "desserte": "50A:A,50A:R,62A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "437", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.935494080832404, 45.695258970168908 ] } }, -{ "type": "Feature", "properties": { "id": "2878", "nom": "St Priest Les Roses", "desserte": "62A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2762", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.939584138626874, 45.686675641668536 ] } }, -{ "type": "Feature", "properties": { "id": "2879", "nom": "St Priest Les Roses", "desserte": "62A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2761", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.939600792488165, 45.686756268944237 ] } }, -{ "type": "Feature", "properties": { "id": "2880", "nom": "St Priest Menival", "desserte": "C25B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2764", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.952934344153017, 45.695726574964006 ] } }, -{ "type": "Feature", "properties": { "id": "2881", "nom": "St Priest Menival", "desserte": "C25B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2763", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.953227323019666, 45.695674730948866 ] } }, -{ "type": "Feature", "properties": { "id": "2882", "nom": "St Priest Plaine de Saythe", "desserte": "76A:R,C25B:A,R5A:R,ZI8A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2766", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.94697275859792, 45.686755907710776 ] } }, -{ "type": "Feature", "properties": { "id": "2883", "nom": "St Priest Plaine de Saythe", "desserte": "76A:A,C25B:R,R5A:A,ZI8A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2765", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.947135231256967, 45.686932156423666 ] } }, -{ "type": "Feature", "properties": { "id": "2885", "nom": "St Rambert - ile Barbe", "desserte": "31A:A,43A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2767", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.82973879807134, 45.797626594373298 ] } }, -{ "type": "Feature", "properties": { "id": "2886", "nom": "St Rambert - ile Barbe", "desserte": "31A:R,43A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2768", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.829148880098448, 45.797387651651476 ] } }, -{ "type": "Feature", "properties": { "id": "2894", "nom": "Stade Boucaud", "desserte": "31A:R,43A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2777", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.807986031853368, 45.783201405601957 ] } }, -{ "type": "Feature", "properties": { "id": "2895", "nom": "Stade Boucaud", "desserte": "31A:A,43A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2776", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.808301682830929, 45.783068443779108 ] } }, -{ "type": "Feature", "properties": { "id": "2896", "nom": "Stade de Parilly", "desserte": "C25B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2779", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.891915326529439, 45.717224515190843 ] } }, -{ "type": "Feature", "properties": { "id": "2897", "nom": "Stade de Parilly", "desserte": "C25B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2778", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.891879738343539, 45.717288334980097 ] } }, -{ "type": "Feature", "properties": { "id": "2899", "nom": "Stade des Peupliers", "desserte": "7A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2780", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.898902828401234, 45.778733547231305 ] } }, -{ "type": "Feature", "properties": { "id": "34536", "nom": "St Priest Jules Ferry", "desserte": "50A:A,62A:R,76A:A,C25B:A,ZI8A:A,ZI8A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "449", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.946562232092017, 45.694353795309731 ] } }, -{ "type": "Feature", "properties": { "id": "34541", "nom": "Manissieux Mont-Blanc", "desserte": "50A:A,50A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3975", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.98869238192711, 45.697785144784056 ] } }, -{ "type": "Feature", "properties": { "id": "41894", "nom": "Z.A. Pesseliere", "desserte": "R5A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3650", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.9657740302427, 45.677044908938882 ] } }, -{ "type": "Feature", "properties": { "id": "2838", "nom": "St Martin", "desserte": "62A:A,62A:R,76A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2749", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.95006645481975, 45.704858017551764 ] } }, -{ "type": "Feature", "properties": { "id": "2902", "nom": "Stade Henri Cochet", "desserte": "33A:A,38A:A,S5A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2783", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.838598773019172, 45.792676965913572 ] } }, -{ "type": "Feature", "properties": { "id": "2903", "nom": "Stade Henri Cochet", "desserte": "33A:R,38A:R,S5A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2782", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.838776110631733, 45.792898046263218 ] } }, -{ "type": "Feature", "properties": { "id": "2906", "nom": "Stade Laurent Gerin", "desserte": "54A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2787", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.890981029613592, 45.696533782003996 ] } }, -{ "type": "Feature", "properties": { "id": "34834", "nom": "Suchet", "desserte": "T1A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "500", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.824600974509424, 45.747058902135919 ] } }, -{ "type": "Feature", "properties": { "id": "34835", "nom": "Suchet", "desserte": "T1A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "499", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.824530164662712, 45.747088015134075 ] } }, -{ "type": "Feature", "properties": { "id": "34836", "nom": "Sainte-Blandine", "desserte": "T1A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "504", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.822148563999987, 45.744184005825581 ] } }, -{ "type": "Feature", "properties": { "id": "34854", "nom": "Universite Lyon 1 Gerland", "desserte": "60A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3999", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.826498400043893, 45.726643440361329 ] } }, -{ "type": "Feature", "properties": { "id": "41059", "nom": "Molinette", "desserte": "S9A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4632", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.790423208079117, 45.704440735590623 ] } }, -{ "type": "Feature", "properties": { "id": "41060", "nom": "Prieure", "desserte": "S9A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4633", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.789718431388732, 45.706211337729847 ] } }, -{ "type": "Feature", "properties": { "id": "41061", "nom": "Molinette - Montlouis", "desserte": "S9A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4634", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.786567200695715, 45.709304533879376 ] } }, -{ "type": "Feature", "properties": { "id": "41062", "nom": "Moly", "desserte": "S9A:A,S9A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4635", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.784561297991471, 45.706666054695027 ] } }, -{ "type": "Feature", "properties": { "id": "41063", "nom": "Allee Dubost", "desserte": "S9A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4636", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.785011160508731, 45.704937057639896 ] } }, -{ "type": "Feature", "properties": { "id": "41065", "nom": "Gadagne - Egalite", "desserte": "S9A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4225", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.788134403447673, 45.698910203612876 ] } }, -{ "type": "Feature", "properties": { "id": "41074", "nom": "Rond Point d'Alaï", "desserte": "73A:A,C24B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "702", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.765076636222698, 45.750464922372792 ] } }, -{ "type": "Feature", "properties": { "id": "41075", "nom": "Rond Point d'Alaï", "desserte": "73A:R,C24B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "701", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.765319896668425, 45.750441657160792 ] } }, -{ "type": "Feature", "properties": { "id": "42033", "nom": "Montchat Pinel", "desserte": "C9A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2242", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.895370665037835, 45.752863094289843 ] } }, -{ "type": "Feature", "properties": { "id": "42034", "nom": "Montchat Pinel", "desserte": "C9A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2243", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.894808766979335, 45.75377603809325 ] } }, -{ "type": "Feature", "properties": { "id": "42035", "nom": "Pinel Lepine", "desserte": "C9A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4690", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.897099546251244, 45.749673190656125 ] } }, -{ "type": "Feature", "properties": { "id": "42036", "nom": "Pinel Lepine", "desserte": "C9A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4691", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.897086574963737, 45.749394444092914 ] } }, -{ "type": "Feature", "properties": { "id": "42037", "nom": "Montchat Kimmerling", "desserte": "C9A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2241", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.89770980371805, 45.753115795618811 ] } }, -{ "type": "Feature", "properties": { "id": "42054", "nom": "Les Villas", "desserte": "3A:A,61A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2064", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.771659849885703, 45.817883668224731 ] } }, -{ "type": "Feature", "properties": { "id": "42055", "nom": "Les Villas", "desserte": "3A:R,61A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2065", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.770705414438194, 45.818714437110053 ] } }, -{ "type": "Feature", "properties": { "id": "42058", "nom": "L'Epoux", "desserte": "21A:A,61A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1651", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.782733069474671, 45.804051587197776 ] } }, -{ "type": "Feature", "properties": { "id": "42059", "nom": "L'Epoux", "desserte": "21A:R,61A:R,GE4A:A,GE4A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1650", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.782465864389396, 45.804120411877392 ] } }, -{ "type": "Feature", "properties": { "id": "42060", "nom": "Montee Roy", "desserte": "70A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4693", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.850874478340249, 45.831801540409025 ] } }, -{ "type": "Feature", "properties": { "id": "2907", "nom": "Stade Laurent Gerin", "desserte": "54A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2786", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.891010029859975, 45.696605132428587 ] } }, -{ "type": "Feature", "properties": { "id": "2915", "nom": "Ste Consorce", "desserte": "72B:A,72B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2788", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.689443610171668, 45.776440579503621 ] } }, -{ "type": "Feature", "properties": { "id": "2916", "nom": "Ste Eugenie", "desserte": "78B:A,C10A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2790", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.797009496584354, 45.70435044170538 ] } }, -{ "type": "Feature", "properties": { "id": "2917", "nom": "Ste Eugenie", "desserte": "78B:R,C10A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2791", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.797390167493177, 45.705107172187589 ] } }, -{ "type": "Feature", "properties": { "id": "2918", "nom": "Ste Foy Centre", "desserte": "17B:A,C19A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2792", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.803556954497235, 45.73408097410546 ] } }, -{ "type": "Feature", "properties": { "id": "2919", "nom": "Ste Foy Centre", "desserte": "17B:R,C19A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2795", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.80362075596556, 45.734070570472696 ] } }, -{ "type": "Feature", "properties": { "id": "2921", "nom": "Ste Foy Châtelain", "desserte": "C19A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "461", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.796181924554848, 45.73587204833639 ] } }, -{ "type": "Feature", "properties": { "id": "2923", "nom": "Ste Foy Châtelain", "desserte": "49A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "462", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.795673505109781, 45.736288236383643 ] } }, -{ "type": "Feature", "properties": { "id": "2925", "nom": "Ste Foy Eglise", "desserte": "17B:A,C19A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2796", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.805111740227376, 45.73693611671812 ] } }, -{ "type": "Feature", "properties": { "id": "2926", "nom": "Ste Foy Eglise", "desserte": "17B:R,C19A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2797", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.805121758794317, 45.736872889067875 ] } }, -{ "type": "Feature", "properties": { "id": "2927", "nom": "Ste Foy Hopital", "desserte": "C19A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2798", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.794501990313474, 45.731642384264028 ] } }, -{ "type": "Feature", "properties": { "id": "2928", "nom": "Ste Foy Hopital", "desserte": "C19A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2799", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.794380798326169, 45.731230993165696 ] } }, -{ "type": "Feature", "properties": { "id": "2929", "nom": "Ste Genevieve", "desserte": "27A:A,448A:A,C3A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2801", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.865188699306794, 45.763700465941348 ] } }, -{ "type": "Feature", "properties": { "id": "2934", "nom": "Suchet", "desserte": "63A:A,S1A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "502", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.823953157429882, 45.746826359432347 ] } }, -{ "type": "Feature", "properties": { "id": "35676", "nom": "Meyzieu Z.i.", "desserte": "T3:A,T3:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "593", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 5.031553588346288, 45.767621651500995 ] } }, -{ "type": "Feature", "properties": { "id": "35754", "nom": "Gare Part-Dieu Vivier Merle", "desserte": "25A:R,C7B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "523", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.858282990629617, 45.760345295423242 ] } }, -{ "type": "Feature", "properties": { "id": "35774", "nom": "Parc Tete d'Or-Churchill", "desserte": "171:R,C4A:R,C5A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2355", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.844776904198878, 45.778047198067433 ] } }, -{ "type": "Feature", "properties": { "id": "35775", "nom": "Cité Internationale", "desserte": "C1A:A,C4A:A,C5A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "606", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.856786170048801, 45.784680865265209 ] } }, -{ "type": "Feature", "properties": { "id": "35776", "nom": "Cité Internationale", "desserte": "171:R,C1A:R,C4A:R,C5A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "607", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.857381131075583, 45.784712879678942 ] } }, -{ "type": "Feature", "properties": { "id": "35816", "nom": "Vancia Chateau Berard", "desserte": "C5A:A,C5A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4050", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.911539330277127, 45.835694138230025 ] } }, -{ "type": "Feature", "properties": { "id": "35817", "nom": "Rillieux Semailles", "desserte": "C2A:A,C5A:A,ZI4A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2587", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.908793098096092, 45.819392221585552 ] } }, -{ "type": "Feature", "properties": { "id": "35818", "nom": "Rillieux Semailles", "desserte": "C2A:R,C5A:R,ZI4A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2586", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.908535471631241, 45.819389115115214 ] } }, -{ "type": "Feature", "properties": { "id": "35834", "nom": "Gare Part-Dieu Vivier Merle", "desserte": "38A:A,38A:R,C1A:R,C6B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "519", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.857582159220848, 45.762170285935291 ] } }, -{ "type": "Feature", "properties": { "id": "35957", "nom": "Parc Tete d'Or-Churchill", "desserte": "C1A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2356", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.84447041138985, 45.776685857217473 ] } }, -{ "type": "Feature", "properties": { "id": "35974", "nom": "Hopital Cardiologique", "desserte": "C8A:A,C9A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1555", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.903590194417736, 45.747139578795206 ] } }, -{ "type": "Feature", "properties": { "id": "35976", "nom": "Hopital Neurologique", "desserte": "C8A:A,C9A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1571", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.898786189303545, 45.747789420808736 ] } }, -{ "type": "Feature", "properties": { "id": "913", "nom": "Feuillat - Lacassagne", "desserte": "25A:A,C13A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1410", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.876122080577909, 45.749528671253259 ] } }, -{ "type": "Feature", "properties": { "id": "2975", "nom": "Thibaudiere", "desserte": "C12A:A,C14A:R,C4A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2831", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.844655745222608, 45.750002142606519 ] } }, -{ "type": "Feature", "properties": { "id": "2978", "nom": "Thibaudiere", "desserte": "C12A:R,C14A:A,C4A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2830", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.845287173147857, 45.750879150194102 ] } }, -{ "type": "Feature", "properties": { "id": "2981", "nom": "Thiers - Lafayette", "desserte": "448A:A,C3A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "361", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.862499439874894, 45.763670988458479 ] } }, -{ "type": "Feature", "properties": { "id": "2982", "nom": "Thiers - Lafayette", "desserte": "C3A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "364", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.862374267607295, 45.763745814656389 ] } }, -{ "type": "Feature", "properties": { "id": "2983", "nom": "Thioley", "desserte": "39A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2833", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.887945521302706, 45.71585665920415 ] } }, -{ "type": "Feature", "properties": { "id": "35981", "nom": "Bron Genets", "desserte": "C8A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4057", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.905213314871131, 45.747705092755282 ] } }, -{ "type": "Feature", "properties": { "id": "35982", "nom": "Yves Farge", "desserte": "87A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4060", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.948551609460702, 45.657491074884476 ] } }, -{ "type": "Feature", "properties": { "id": "35983", "nom": "Yves Farge", "desserte": "87A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4059", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.948523833989261, 45.657446714598649 ] } }, -{ "type": "Feature", "properties": { "id": "35995", "nom": "Charbonnier", "desserte": "87A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4061", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.946042855883139, 45.65682939988028 ] } }, -{ "type": "Feature", "properties": { "id": "35998", "nom": "Mions Bourdelle", "desserte": "87A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4065", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.941036473788928, 45.66089753158073 ] } }, -{ "type": "Feature", "properties": { "id": "35999", "nom": "Mions Bourdelle", "desserte": "87A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4066", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.942356301778045, 45.659489618866012 ] } }, -{ "type": "Feature", "properties": { "id": "36000", "nom": "Mions Rte Corbas", "desserte": "87A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4068", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.938682053596224, 45.665407969807084 ] } }, -{ "type": "Feature", "properties": { "id": "41736", "nom": "Gare de Vaise", "desserte": "2A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "269", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.804745125316704, 45.780932390184631 ] } }, -{ "type": "Feature", "properties": { "id": "41737", "nom": "Perrache", "desserte": "C22A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "158", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.826933288917586, 45.749325599225138 ] } }, -{ "type": "Feature", "properties": { "id": "41738", "nom": "Centre Com. Porte de Lyon", "desserte": "3A:A,61A:R,942A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4649", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.767947215979102, 45.820385325515915 ] } }, -{ "type": "Feature", "properties": { "id": "41739", "nom": "Centre Com. Porte de Lyon", "desserte": "3A:R,61A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4650", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.768192773400104, 45.820407015895661 ] } }, -{ "type": "Feature", "properties": { "id": "41815", "nom": "L'Indiennerie", "desserte": "S7A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3213", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.809396210180017, 45.809129624582404 ] } }, -{ "type": "Feature", "properties": { "id": "41816", "nom": "Louisa Siefert", "desserte": "S7A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4654", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.817416588760953, 45.80517233233153 ] } }, -{ "type": "Feature", "properties": { "id": "41817", "nom": "La Chaux Ecole de Champlong", "desserte": "71A:R,S7A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4656", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.829272365783372, 45.814874273881927 ] } }, -{ "type": "Feature", "properties": { "id": "41818", "nom": "Rocade des Monts d'Or", "desserte": "S7A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4251", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.810898444202221, 45.819915951516919 ] } }, -{ "type": "Feature", "properties": { "id": "41835", "nom": "Caluire - Place de la bascule", "desserte": "33A:R,38A:R,77A:R,9A:R,S5A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4657", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.851254124780993, 45.802106737770139 ] } }, -{ "type": "Feature", "properties": { "id": "41854", "nom": "Teillon - Poudrette", "desserte": "C15A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4661", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.91882887241399, 45.751038747089439 ] } }, -{ "type": "Feature", "properties": { "id": "41855", "nom": "Teillon - Poudrette", "desserte": "C15A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4662", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.918422213544831, 45.750318982656545 ] } }, -{ "type": "Feature", "properties": { "id": "41856", "nom": "Dumas - Poudrette", "desserte": "C15A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1346", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.920390898715775, 45.753361189506769 ] } }, -{ "type": "Feature", "properties": { "id": "3255", "nom": "Abattoirs", "desserte": "87A:R,ZI1A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3011", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.918741372671031, 45.675203650282036 ] } }, -{ "type": "Feature", "properties": { "id": "3258", "nom": "Route de St Priest", "desserte": "76A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3013", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.902455225220897, 45.670968904102203 ] } }, -{ "type": "Feature", "properties": { "id": "36467", "nom": "Place de la Liberte", "desserte": "81A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4210", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.77422575714499, 45.585771787057617 ] } }, -{ "type": "Feature", "properties": { "id": "36476", "nom": "Meyzieu M.T.E.", "desserte": "67A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3499", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 5.024384695037019, 45.76133475424934 ] } }, -{ "type": "Feature", "properties": { "id": "36514", "nom": "Bachut - Mairie du 8ème", "desserte": "296:R,C25B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "391", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.868311587805549, 45.737382381655522 ] } }, -{ "type": "Feature", "properties": { "id": "42316", "nom": "Combattants", "desserte": "C7B:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4718", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.814758602798597, 45.706524975267172 ] } }, -{ "type": "Feature", "properties": { "id": "42339", "nom": "Jean Macé", "desserte": "ZI6A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "296", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.842447380639046, 45.746117949168394 ] } }, -{ "type": "Feature", "properties": { "id": "42356", "nom": "Vassieux Centre", "desserte": "S5A:A,S5A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3561", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.864748148780497, 45.798027738088962 ] } }, -{ "type": "Feature", "properties": { "id": "42362", "nom": "College Paul Emile Victor", "desserte": "C5A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3038", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.904938832569455, 45.816806907834504 ] } }, -{ "type": "Feature", "properties": { "id": "42363", "nom": "College Paul Emile Victor", "desserte": "C5A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3039", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.905305041226396, 45.816654515330889 ] } }, -{ "type": "Feature", "properties": { "id": "42374", "nom": "La Velette", "desserte": "C5A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1788", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.905415580853472, 45.814887695006533 ] } }, -{ "type": "Feature", "properties": { "id": "42675", "nom": "CNRS", "desserte": "C17A:A,C26A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4761", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.875740505931888, 45.780546833401608 ] } }, -{ "type": "Feature", "properties": { "id": "42676", "nom": "CNRS", "desserte": "C17A:R,C26A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4760", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.8755352810678, 45.78028143329113 ] } }, -{ "type": "Feature", "properties": { "id": "42682", "nom": "Genas - Lacouture", "desserte": "C17A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4764", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.911459275884043, 45.749623771979884 ] } }, -{ "type": "Feature", "properties": { "id": "42752", "nom": "Piscine Loup Pendu", "desserte": "C2A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4771", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.887457875948839, 45.815546452533674 ] } }, -{ "type": "Feature", "properties": { "id": "42774", "nom": "Chambaud de la Bruyere", "desserte": "60A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4773", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.836798306221702, 45.726198375280269 ] } }, -{ "type": "Feature", "properties": { "id": "42775", "nom": "Chambaud de la Bruyere", "desserte": "60A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4774", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.836752668004235, 45.726325408079333 ] } }, -{ "type": "Feature", "properties": { "id": "42896", "nom": "Duchere Av.de Champagne", "desserte": "21A:R,61A:R,S11A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3208", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.797114629443397, 45.790667966374265 ] } }, -{ "type": "Feature", "properties": { "id": "42914", "nom": "Mediatheque", "desserte": "50A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4776", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.936259564605906, 45.694332070854678 ] } }, -{ "type": "Feature", "properties": { "id": "42954", "nom": "Hopital Croix-Rousse", "desserte": "38A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1559", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.834085853257524, 45.782840072112187 ] } }, -{ "type": "Feature", "properties": { "id": "42955", "nom": "Mairie du 6eme", "desserte": "38A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4778", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.850546164832953, 45.768331876336703 ] } }, -{ "type": "Feature", "properties": { "id": "42956", "nom": "Caluire - Place de la bascule", "desserte": "33A:A,S5A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4658", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.850740984023308, 45.802424266225387 ] } }, -{ "type": "Feature", "properties": { "id": "43299", "nom": "Nelli", "desserte": "52A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4829", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.929119594254407, 45.76122530473603 ] } }, -{ "type": "Feature", "properties": { "id": "43874", "nom": "Neuville Cinema", "desserte": "S14A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4899", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.842061906953868, 45.874061446368415 ] } }, -{ "type": "Feature", "properties": { "id": "46056", "nom": "République Villeurbanne", "desserte": "301A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "307", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.873675693689032, 45.770647039767091 ] } }, -{ "type": "Feature", "properties": { "id": "46057", "nom": "Gratte Ciel", "desserte": "301A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "85", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.882169481541586, 45.769077595424477 ] } }, -{ "type": "Feature", "properties": { "id": "43298", "nom": "Nelli", "desserte": "52A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4831", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.928977837758469, 45.760400438895246 ] } }, -{ "type": "Feature", "properties": { "id": "43435", "nom": "Techlid Le Paisy", "desserte": "6A:A,6A:R,89A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4848", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.764559501431211, 45.80431077879259 ] } }, -{ "type": "Feature", "properties": { "id": "43454", "nom": "Hénon", "desserte": "2A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "102", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.826911388114799, 45.779524934787517 ] } }, -{ "type": "Feature", "properties": { "id": "43474", "nom": "Techlid Le Paisy", "desserte": "GE4A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4851", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.764763977930326, 45.805152452657765 ] } }, -{ "type": "Feature", "properties": { "id": "45803", "nom": "Yves Chauvin", "desserte": "GE2A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4845", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.829637095088418, 45.64839012700093 ] } }, -{ "type": "Feature", "properties": { "id": "45804", "nom": "Parilly", "desserte": "39A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "146", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.888050436524923, 45.719229759338816 ] } }, -{ "type": "Feature", "properties": { "id": "46239", "nom": "Route de Chasselay", "desserte": "96A:A,96A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5200", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.777215127901914, 45.913435876463716 ] } }, -{ "type": "Feature", "properties": { "id": "46240", "nom": "Route de Chasselay", "desserte": "96A:A,96A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5201", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.776831301792584, 45.912634089441106 ] } }, -{ "type": "Feature", "properties": { "id": "46242", "nom": "Parc des Tuileries", "desserte": "118A:A,61A:A,942A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5203", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.76620398451359, 45.822304236419889 ] } }, -{ "type": "Feature", "properties": { "id": "46243", "nom": "Limonest Le Puy d'Or", "desserte": "21A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5204", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.776631498855525, 45.814463448159053 ] } }, -{ "type": "Feature", "properties": { "id": "46244", "nom": "Limonest Le Puy d'Or", "desserte": "21A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5205", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.776586533506451, 45.814320407865203 ] } }, -{ "type": "Feature", "properties": { "id": "10352", "nom": "Leclerc - General Frere", "desserte": "60A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3397", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.829907458736245, 45.743741877801043 ] } }, -{ "type": "Feature", "properties": { "id": "39920", "nom": "Hopital Feyzin Venissieux", "desserte": "93A:A,C12A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "680", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.864969059163638, 45.688689065284038 ] } }, -{ "type": "Feature", "properties": { "id": "43315", "nom": "Vaulx HDV Campus", "desserte": "57A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2896", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.919856759705634, 45.777587458998852 ] } }, -{ "type": "Feature", "properties": { "id": "44838", "nom": "Marengo", "desserte": "C9A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3386", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.876017333915567, 45.759236065703959 ] } }, -{ "type": "Feature", "properties": { "id": "44978", "nom": "Parilly Universite Hippodrome", "desserte": "93A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4816", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.915033333115072, 45.722726498260307 ] } }, -{ "type": "Feature", "properties": { "id": "45018", "nom": "La Chicotiere", "desserte": "61A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4937", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.733661619409033, 45.845397271551704 ] } }, -{ "type": "Feature", "properties": { "id": "45038", "nom": "Caluire - Bords de Saone", "desserte": "S5A:A,S5A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4938", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.823591728465608, 45.791173992295136 ] } }, -{ "type": "Feature", "properties": { "id": "45039", "nom": "Capitaine Ferber", "desserte": "S5A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4939", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.826994686968848, 45.790171474314555 ] } }, -{ "type": "Feature", "properties": { "id": "45040", "nom": "Maison des Associations", "desserte": "S5A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4940", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.828552314487007, 45.792459233968856 ] } }, -{ "type": "Feature", "properties": { "id": "45041", "nom": "Cuire Le Bas", "desserte": "S5A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3554", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.828422254428684, 45.793848301979779 ] } }, -{ "type": "Feature", "properties": { "id": "45218", "nom": "Hauts de Vassieux", "desserte": "70A:A,S5A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3527", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.86254089825375, 45.801826530166124 ] } }, -{ "type": "Feature", "properties": { "id": "45239", "nom": "Caluire Centre", "desserte": "33A:R,38A:R,S5A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1017", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.847760158990724, 45.799151461177821 ] } }, -{ "type": "Feature", "properties": { "id": "45260", "nom": "Lycee J.P. Sartre", "desserte": "T5:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "734", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.922187658496748, 45.737976197948583 ] } }, -{ "type": "Feature", "properties": { "id": "45282", "nom": "Place Ennemond Romand", "desserte": "C16A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2444", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.858593248807451, 45.723631320998791 ] } }, -{ "type": "Feature", "properties": { "id": "45358", "nom": "Clos des Coquilles", "desserte": "C20A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4945", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.741139788143702, 45.731412471994311 ] } }, -{ "type": "Feature", "properties": { "id": "45359", "nom": "Clos des Coquilles", "desserte": "C20A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4946", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.741610177123985, 45.731294381034218 ] } }, -{ "type": "Feature", "properties": { "id": "46061", "nom": "Laurent Bonnevay", "desserte": "301A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "222", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.909492696560481, 45.763936124083259 ] } }, -{ "type": "Feature", "properties": { "id": "46075", "nom": "Petetin", "desserte": "78B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5117", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.774439192589405, 45.59432273396731 ] } }, -{ "type": "Feature", "properties": { "id": "46076", "nom": "St Genis 2", "desserte": "78B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2713", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.788589483311837, 45.681513763166812 ] } }, -{ "type": "Feature", "properties": { "id": "46078", "nom": "Rillieux Victor Hugo", "desserte": "S8A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5100", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.892458760984939, 45.81924745461783 ] } }, -{ "type": "Feature", "properties": { "id": "46092", "nom": "Campus Lyon Ouest", "desserte": "3A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4791", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.766052417439639, 45.783342242252722 ] } }, -{ "type": "Feature", "properties": { "id": "10490", "nom": "Emile Bertrand", "desserte": "57A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3465", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.957207141151606, 45.772023324658086 ] } }, -{ "type": "Feature", "properties": { "id": "10491", "nom": "Emile Bertrand", "desserte": "57A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3464", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.957074371591936, 45.772206455513782 ] } }, -{ "type": "Feature", "properties": { "id": "10496", "nom": "Vaulx Z.I. Est", "desserte": "57A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3466", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.944191222307771, 45.781552928271445 ] } }, -{ "type": "Feature", "properties": { "id": "40714", "nom": "Mions Centre", "desserte": "62A:R,87A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4601", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.956346694324576, 45.664042287734674 ] } }, -{ "type": "Feature", "properties": { "id": "40796", "nom": "Hauts de Solaize", "desserte": "GE2A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1542", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.84218214112435, 45.645427966042575 ] } }, -{ "type": "Feature", "properties": { "id": "40835", "nom": "Parc de l'Artillerie", "desserte": "ZI6A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4604", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.844910943143952, 45.728240594876191 ] } }, -{ "type": "Feature", "properties": { "id": "43837", "nom": "Hôtel de Région Montrochet", "desserte": "63A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "513", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.821361006225339, 45.738107699527944 ] } }, -{ "type": "Feature", "properties": { "id": "43838", "nom": "Hôtel de Région Montrochet", "desserte": "63A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "512", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.821924315953392, 45.738626290741209 ] } }, -{ "type": "Feature", "properties": { "id": "43839", "nom": "Hôtel de Région Montrochet", "desserte": "S1A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "509", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.819526431131248, 45.741037653909586 ] } }, -{ "type": "Feature", "properties": { "id": "43841", "nom": "Champagne De Gaulle", "desserte": "21A:A,61A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4893", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.784911082911329, 45.802095921569048 ] } }, -{ "type": "Feature", "properties": { "id": "45435", "nom": "Thurins Les Vergers", "desserte": "11B:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4967", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.644127160876041, 45.681687688246967 ] } }, -{ "type": "Feature", "properties": { "id": "45438", "nom": "Chapelle de Beaunant", "desserte": "11B:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4970", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.777232997271786, 45.716978791188602 ] } }, -{ "type": "Feature", "properties": { "id": "45439", "nom": "Chapelle de Beaunant", "desserte": "11B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4971", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.777281555478918, 45.716914728281232 ] } }, -{ "type": "Feature", "properties": { "id": "45440", "nom": "Le Caillou", "desserte": "11B:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4972", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.767331949746639, 45.701685272072744 ] } }, -{ "type": "Feature", "properties": { "id": "45441", "nom": "Le Caillou", "desserte": "11B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4973", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.767690628639387, 45.702244551501899 ] } }, -{ "type": "Feature", "properties": { "id": "45442", "nom": "Chaponost Gare", "desserte": "11B:A,12B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4974", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.763037022549415, 45.698961009931708 ] } }, -{ "type": "Feature", "properties": { "id": "45443", "nom": "Chaponost Gare", "desserte": "11B:R,12B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4975", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.764179303866802, 45.698648258728213 ] } }, -{ "type": "Feature", "properties": { "id": "45444", "nom": "Le Gilbertin", "desserte": "12B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4976", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.751922166622328, 45.700632090372537 ] } }, -{ "type": "Feature", "properties": { "id": "45445", "nom": "Le Gilbertin", "desserte": "12B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4977", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.752511320123375, 45.700592397437717 ] } }, -{ "type": "Feature", "properties": { "id": "45446", "nom": "La Chaize", "desserte": "12B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4978", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.748869645709637, 45.701912900071335 ] } }, -{ "type": "Feature", "properties": { "id": "45470", "nom": "Ferroussat", "desserte": "12B:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5002", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.767742254662235, 45.721748329230586 ] } }, -{ "type": "Feature", "properties": { "id": "45471", "nom": "Ferroussat", "desserte": "12B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5003", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.767840592702493, 45.721647188365168 ] } }, -{ "type": "Feature", "properties": { "id": "1956", "nom": "Merlo", "desserte": "63A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2172", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.787038647934375, 45.719033258947199 ] } }, -{ "type": "Feature", "properties": { "id": "10697", "nom": "Guillotière - Gabriel Péri", "desserte": "C12A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "99", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.842060584596092, 45.75569484065899 ] } }, -{ "type": "Feature", "properties": { "id": "10698", "nom": "Ampère Victor Hugo", "desserte": "S1A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "1", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.829029806846584, 45.752465468339679 ] } }, -{ "type": "Feature", "properties": { "id": "10705", "nom": "Invalides - Hop.P.Garraud", "desserte": "45A:A,65A:R,C20A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3518", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.789467560853291, 45.74701822880948 ] } }, -{ "type": "Feature", "properties": { "id": "10706", "nom": "Invalides - Hop.P.Garraud", "desserte": "45A:R,65A:A,C20A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3519", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.78967547036198, 45.747067690848183 ] } }, -{ "type": "Feature", "properties": { "id": "10892", "nom": "Bellevue", "desserte": "9A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "914", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.848284708157141, 45.785844883448881 ] } }, -{ "type": "Feature", "properties": { "id": "41744", "nom": "Musee des Beaux Arts", "desserte": "19A:R,C18A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4651", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.834415249189124, 45.766591097865927 ] } }, -{ "type": "Feature", "properties": { "id": "41753", "nom": "Le Vergoin", "desserte": "31A:R,S10A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1890", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.83842993577653, 45.804238308383702 ] } }, -{ "type": "Feature", "properties": { "id": "41758", "nom": "Lycee Branly", "desserte": "45A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3606", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.791644070665328, 45.75315433479701 ] } }, -{ "type": "Feature", "properties": { "id": "41760", "nom": "Jean Baptiste Perret", "desserte": "71A:R,S7A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4344", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.833138654121938, 45.816957742209034 ] } }, -{ "type": "Feature", "properties": { "id": "41774", "nom": "Montaberlet", "desserte": "67A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3769", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.939313198995123, 45.768190718407709 ] } }, -{ "type": "Feature", "properties": { "id": "41796", "nom": "Cote de Vaux", "desserte": "S7A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4653", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.81028046819289, 45.816482109700246 ] } }, -{ "type": "Feature", "properties": { "id": "41814", "nom": "Pont Kitchener", "desserte": "63A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "181", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.824280776328994, 45.751229647255897 ] } }, -{ "type": "Feature", "properties": { "id": "45261", "nom": "Lycee J.P. Sartre", "desserte": "T5:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "735", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.922154771107943, 45.738047797044295 ] } }, -{ "type": "Feature", "properties": { "id": "45262", "nom": "Parc du Chene", "desserte": "T5:A,T5:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "736", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.926648790657099, 45.738976823539339 ] } }, -{ "type": "Feature", "properties": { "id": "45263", "nom": "Parc du Chene", "desserte": "T5:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "737", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.926614151554848, 45.739052065092956 ] } }, -{ "type": "Feature", "properties": { "id": "45265", "nom": "De Tassigny - Curial", "desserte": "T5:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "732", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.917019428601012, 45.735774755861534 ] } }, -{ "type": "Feature", "properties": { "id": "45266", "nom": "De Tassigny - Curial", "desserte": "T5:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "733", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.917019428601012, 45.735774755861534 ] } }, -{ "type": "Feature", "properties": { "id": "45268", "nom": "Eurexpo Entrée Principale", "desserte": "T5:A,T5:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "598", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.947949467373498, 45.732063054909155 ] } }, -{ "type": "Feature", "properties": { "id": "45270", "nom": "Grange Blanche", "desserte": "T5:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "83", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.879320686631315, 45.742453783602933 ] } }, -{ "type": "Feature", "properties": { "id": "45271", "nom": "Grange Blanche", "desserte": "T5:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "76", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.879510311230002, 45.74250664555462 ] } }, -{ "type": "Feature", "properties": { "id": "45279", "nom": "College Balzac", "desserte": "C16A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4944", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.860859376889118, 45.725686643066219 ] } }, -{ "type": "Feature", "properties": { "id": "45280", "nom": "College Balzac", "desserte": "C16A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4943", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.860924394742985, 45.725703182720295 ] } }, -{ "type": "Feature", "properties": { "id": "45281", "nom": "Place Ennemond Romand", "desserte": "C16A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2443", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.858639726184134, 45.723243224514285 ] } }, -{ "type": "Feature", "properties": { "id": "45787", "nom": "Pont Masaryk", "desserte": "40A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5176", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.810995130709038, 45.778451060730077 ] } }, -{ "type": "Feature", "properties": { "id": "46471", "nom": "Segliere - Jaures", "desserte": "29A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5579", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 5.019115966235502, 45.746705135065696 ] } }, -{ "type": "Feature", "properties": { "id": "46482", "nom": "Le Groublon", "desserte": "763:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "6088", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.976204791835178, 45.653147387082697 ] } }, -{ "type": "Feature", "properties": { "id": "46483", "nom": "Le Groublon", "desserte": "763:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "6089", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.976196806765033, 45.653200414810904 ] } }, -{ "type": "Feature", "properties": { "id": "46484", "nom": "Le Puits", "desserte": "763:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "6090", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.983085786540305, 45.654240359478123 ] } }, -{ "type": "Feature", "properties": { "id": "46485", "nom": "Le Puits", "desserte": "763:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "6091", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.98334081413248, 45.654285375308021 ] } }, -{ "type": "Feature", "properties": { "id": "46486", "nom": "Chandieu Villeneuve", "desserte": "763:A,763:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "6092", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.993121508506508, 45.63207530468258 ] } }, -{ "type": "Feature", "properties": { "id": "46495", "nom": "Centre Village", "desserte": "77A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5499", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.877447559764261, 45.833759409074894 ] } }, -{ "type": "Feature", "properties": { "id": "46496", "nom": "Centre Village", "desserte": "77A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5500", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.877371566671646, 45.833650409378059 ] } }, -{ "type": "Feature", "properties": { "id": "46497", "nom": "Sathonay Village Eglise", "desserte": "77A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5501", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.878157596097317, 45.831467438242207 ] } }, -{ "type": "Feature", "properties": { "id": "46498", "nom": "Sathonay Village Eglise", "desserte": "77A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5502", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.87798153949633, 45.831561433166051 ] } }, -{ "type": "Feature", "properties": { "id": "46500", "nom": "La Rama", "desserte": "R3A:A,R3A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5506", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.749341176782027, 45.57823877052023 ] } }, -{ "type": "Feature", "properties": { "id": "46513", "nom": "Chemin de Crepieux", "desserte": "S5A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5503", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.87911708697425, 45.801830664726751 ] } }, -{ "type": "Feature", "properties": { "id": "46514", "nom": "Chemin de Crepieux", "desserte": "S5A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5504", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.879148127937394, 45.801928617442442 ] } }, -{ "type": "Feature", "properties": { "id": "46515", "nom": "Vieux Crepieux", "desserte": "S5A:A,S5A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5505", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.877012161802708, 45.799717682036835 ] } }, -{ "type": "Feature", "properties": { "id": "46519", "nom": "Salle Polyvalente (A)", "desserte": "R4B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5870", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 5.012194945177906, 45.728868185644941 ] } }, -{ "type": "Feature", "properties": { "id": "46520", "nom": "Salle Polyvalente (A)", "desserte": "R4B:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5871", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 5.012020005638261, 45.72897119634311 ] } }, -{ "type": "Feature", "properties": { "id": "46523", "nom": "Bifurcation du Rosay", "desserte": "20A:R,2A:R,71A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5518", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.809014094110068, 45.792110044746828 ] } }, -{ "type": "Feature", "properties": { "id": "46524", "nom": "Bifurcation du Rosay", "desserte": "22A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5519", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.808459970347422, 45.791934026700957 ] } }, -{ "type": "Feature", "properties": { "id": "42545", "nom": "Monge", "desserte": "C8A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2221", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.909627982496177, 45.750880953521118 ] } }, -{ "type": "Feature", "properties": { "id": "45822", "nom": "Manufacture Montluc", "desserte": "69A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "763", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.861095593713427, 45.749894639095444 ] } }, -{ "type": "Feature", "properties": { "id": "46184", "nom": "St Fons Dussurgey", "desserte": "C12A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5142", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.855018616792767, 45.713756305467669 ] } }, -{ "type": "Feature", "properties": { "id": "46185", "nom": "Komarov", "desserte": "C12A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1640", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.871819437773422, 45.691585825476928 ] } }, -{ "type": "Feature", "properties": { "id": "46186", "nom": "Komarov", "desserte": "C12A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1639", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.872561139614437, 45.692073126698588 ] } }, -{ "type": "Feature", "properties": { "id": "46189", "nom": "Debourg", "desserte": "C22A:R,ZI6A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "317", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.834402344851899, 45.731175356588693 ] } }, -{ "type": "Feature", "properties": { "id": "46376", "nom": "Frindeau", "desserte": "296:A,763:A,R5A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5347", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 5.023801430945886, 45.645731319988613 ] } }, -{ "type": "Feature", "properties": { "id": "46377", "nom": "Amedee Ronin", "desserte": "296:R,763:R,R5A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5348", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 5.01157848994241, 45.647659346877958 ] } }, -{ "type": "Feature", "properties": { "id": "46378", "nom": "Amedee Ronin", "desserte": "296:A,763:A,R5A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5349", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 5.011757601608791, 45.647597369152038 ] } }, -{ "type": "Feature", "properties": { "id": "46379", "nom": "St-Pierre-de-Chandieu College", "desserte": "296:R,763:R,R5A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5350", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 5.004651599274402, 45.648183318714288 ] } }, -{ "type": "Feature", "properties": { "id": "46383", "nom": "Cros Cassier", "desserte": "763:R,R5A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5354", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 5.001582576161395, 45.644339345489378 ] } }, -{ "type": "Feature", "properties": { "id": "46384", "nom": "Cros Cassier", "desserte": "763:A,R5A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5355", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 5.001772572485768, 45.644319342954176 ] } }, -{ "type": "Feature", "properties": { "id": "46425", "nom": "Route de Givors", "desserte": "296:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5394", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.985187779313695, 45.64964439937021 ] } }, -{ "type": "Feature", "properties": { "id": "46426", "nom": "Idoux", "desserte": "81A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5414", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.762943234374027, 45.591826761392639 ] } }, -{ "type": "Feature", "properties": { "id": "46427", "nom": "Idoux", "desserte": "81A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5415", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.763074194451195, 45.591947773421978 ] } }, -{ "type": "Feature", "properties": { "id": "46428", "nom": "Robespierre-Carnot", "desserte": "78B:A,80A:A,81A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5407", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.771267196662695, 45.586446635564442 ] } }, -{ "type": "Feature", "properties": { "id": "46429", "nom": "Robespierre-Carnot", "desserte": "78B:R,80A:R,81A:A,81A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5408", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.770904262058338, 45.586146702437539 ] } }, -{ "type": "Feature", "properties": { "id": "46430", "nom": "Boutras-Sabatier", "desserte": "80A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5416", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.77176224972476, 45.609489795073991 ] } }, -{ "type": "Feature", "properties": { "id": "46431", "nom": "Boutras-Sabatier", "desserte": "80A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5417", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.771930218544317, 45.609436816827639 ] } }, -{ "type": "Feature", "properties": { "id": "46433", "nom": "Liauthaud", "desserte": "81A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5419", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.761456182754761, 45.589159735269249 ] } }, -{ "type": "Feature", "properties": { "id": "46434", "nom": "Buissiere - Viralamande(D)", "desserte": "S8A:A,S8A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5409", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.881367014055912, 45.803235608740195 ] } }, -{ "type": "Feature", "properties": { "id": "46441", "nom": "Genas Avenir Montgolfier", "desserte": "ZI5B:A,ZI5B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5497", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.983171068914824, 45.722157261684103 ] } }, -{ "type": "Feature", "properties": { "id": "46458", "nom": "Ratabizet", "desserte": "29A:A,29A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5578", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.977402138205596, 45.716720274635698 ] } }, -{ "type": "Feature", "properties": { "id": "11436", "nom": "Stade J.Lacaze", "desserte": "96A:A,96A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3694", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.812433203135296, 45.883718706752425 ] } }, -{ "type": "Feature", "properties": { "id": "11437", "nom": "Route du Pontet", "desserte": "96A:A,96A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3695", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.827817699081469, 45.878788441041394 ] } }, -{ "type": "Feature", "properties": { "id": "43495", "nom": "Maison d'Arret", "desserte": "C25B:R,ZI1A:A,ZI1A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4582", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.933004080421107, 45.677592657484112 ] } }, -{ "type": "Feature", "properties": { "id": "43514", "nom": "Vaulx Lakanal", "desserte": "57A:A,7A:A,83A:A,C8A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2905", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.920596112803383, 45.786751983093644 ] } }, -{ "type": "Feature", "properties": { "id": "46120", "nom": "Gare d'Oullins", "desserte": "11B:R,12B:R,14B:R,18B:R,78B:R,88B:A,88B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "739", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.814511855643357, 45.716459471027257 ] } }, -{ "type": "Feature", "properties": { "id": "46121", "nom": "Gare d'Oullins", "desserte": "11B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "738", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.81468166108025, 45.716149684756942 ] } }, -{ "type": "Feature", "properties": { "id": "46122", "nom": "Gare d'Oullins", "desserte": "12B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "740", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.814882641347674, 45.716161446923202 ] } }, -{ "type": "Feature", "properties": { "id": "46123", "nom": "Gare d'Oullins", "desserte": "14B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "741", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.815106132115832, 45.71618801318283 ] } }, -{ "type": "Feature", "properties": { "id": "46349", "nom": "ZI Satolas Green", "desserte": "28A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5485", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 5.064369712789662, 45.745012312983683 ] } }, -{ "type": "Feature", "properties": { "id": "46350", "nom": "Gutenberg", "desserte": "28A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5486", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 5.06774166957578, 45.743895265255929 ] } }, -{ "type": "Feature", "properties": { "id": "46351", "nom": "Gutenberg", "desserte": "28A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5487", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 5.067347671816706, 45.743912322394202 ] } }, -{ "type": "Feature", "properties": { "id": "46352", "nom": "Les Marches du Rhone", "desserte": "1EX:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5340", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 5.066494460608015, 45.688080393717847 ] } }, -{ "type": "Feature", "properties": { "id": "46353", "nom": "Les Marches du Rhone", "desserte": "1EX:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5341", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 5.066955452335417, 45.688373438639957 ] } }, -{ "type": "Feature", "properties": { "id": "46354", "nom": "La Gaiete", "desserte": "28A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5488", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 5.057713747382353, 45.760676188022465 ] } }, -{ "type": "Feature", "properties": { "id": "46355", "nom": "La Gaiete", "desserte": "28A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5489", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 5.05750779022171, 45.760740142154127 ] } }, -{ "type": "Feature", "properties": { "id": "46356", "nom": "Hameau de Bianne", "desserte": "R1B:A,R1B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5490", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 5.088496784595093, 45.808080155257812 ] } }, -{ "type": "Feature", "properties": { "id": "46642", "nom": "Charpennes", "desserte": "37A:R,C17A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5875", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.863718173086466, 45.770880948949603 ] } }, -{ "type": "Feature", "properties": { "id": "46644", "nom": "Charpennes", "desserte": "C17A:A,C17A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5934", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.864329213706363, 45.771224005963525 ] } }, -{ "type": "Feature", "properties": { "id": "46645", "nom": "Charpennes", "desserte": "37A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5876", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.861757186784417, 45.770634955014273 ] } }, -{ "type": "Feature", "properties": { "id": "46648", "nom": "Cusset", "desserte": "C17A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5936", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.901045315853661, 45.76589489993696 ] } }, -{ "type": "Feature", "properties": { "id": "46659", "nom": "Parc Olympique Lyonnais", "desserte": "85A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5835", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.981393143534486, 45.768071856428307 ] } }, -{ "type": "Feature", "properties": { "id": "46660", "nom": "Parc Olympique Lyonnais", "desserte": "85A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5836", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.981435054158499, 45.768100845075878 ] } }, -{ "type": "Feature", "properties": { "id": "46675", "nom": "Plasson et Chaize", "desserte": "31A:R,43A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5854", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.818210023825888, 45.790621983812009 ] } }, -{ "type": "Feature", "properties": { "id": "46680", "nom": "Parc des Lumieres", "desserte": "ZI8A:A,ZI8A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5877", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.965591551336759, 45.682369156021458 ] } }, -{ "type": "Feature", "properties": { "id": "46681", "nom": "Parc des Meurieres", "desserte": "ZI8A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5878", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.958161551645328, 45.681408939906355 ] } }, -{ "type": "Feature", "properties": { "id": "46683", "nom": "Parc des Meurieres", "desserte": "ZI8A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5880", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.957296184270247, 45.681115916474468 ] } }, -{ "type": "Feature", "properties": { "id": "2322", "nom": "Pierre-Benite Hauteroche", "desserte": "15A:A,18B:A,C7B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2423", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.822950375964977, 45.70015996492571 ] } }, -{ "type": "Feature", "properties": { "id": "2323", "nom": "Pierre-Benite Hauteroche", "desserte": "15A:R,18B:R,C7B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2422", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.823029402938329, 45.700203218193629 ] } }, -{ "type": "Feature", "properties": { "id": "2327", "nom": "Pierre Drevet", "desserte": "ZI4A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2424", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.871939248340298, 45.80776275754657 ] } }, -{ "type": "Feature", "properties": { "id": "2328", "nom": "Pierre Drevet", "desserte": "ZI4A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2425", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.872052069103636, 45.807418159570531 ] } }, -{ "type": "Feature", "properties": { "id": "2329", "nom": "Pierre Joseph Proudhon", "desserte": "69A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "2427", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.8903411188241, 45.773599754080557 ] } }, -{ "type": "Feature", "properties": { "id": "2330", "nom": "Pierre Joseph Proudhon", "desserte": "69A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2426", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.89124445284696, 45.773939261631128 ] } }, -{ "type": "Feature", "properties": { "id": "2332", "nom": "Pierre Scize", "desserte": "19A:A,31A:A,40A:A,C14A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2428", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.823286960904316, 45.767363688687759 ] } }, -{ "type": "Feature", "properties": { "id": "2333", "nom": "Pierre Blanche", "desserte": "3A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2430", "last_update": "", "last_update_fme": "2017-06-14 06:00:24" }, "geometry": { "type": "Point", "coordinates": [ 4.751336800572204, 45.821769555788045 ] } }, -{ "type": "Feature", "properties": { "id": "11762", "nom": "Mions Les Tilleuls", "desserte": "62A:A,87A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3118", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.955028768499533, 45.669266996596122 ] } }, -{ "type": "Feature", "properties": { "id": "11763", "nom": "Mions Les Tilleuls", "desserte": "62A:R,87A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3117", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.954529878415789, 45.669305654953 ] } }, -{ "type": "Feature", "properties": { "id": "11796", "nom": "Rue des Vergers", "desserte": "21A:A,6A:A,GE4A:A,GE4A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3122", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.771501863023137, 45.805888732205709 ] } }, -{ "type": "Feature", "properties": { "id": "11797", "nom": "Rue des Vergers", "desserte": "21A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3121", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.772198577724878, 45.80592763732119 ] } }, -{ "type": "Feature", "properties": { "id": "11798", "nom": "Allee des Hetres", "desserte": "21A:A,6A:A,GE4A:A,GE4A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3124", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.774339163078329, 45.805440163942741 ] } }, -{ "type": "Feature", "properties": { "id": "11799", "nom": "Allee des Hetres", "desserte": "21A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3123", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.774624027169554, 45.805478988034089 ] } }, -{ "type": "Feature", "properties": { "id": "11803", "nom": "Pre Gaudry", "desserte": "ZI6A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2481", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.839884392151557, 45.737822061158035 ] } }, -{ "type": "Feature", "properties": { "id": "11804", "nom": "Pre Gaudry", "desserte": "ZI6A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2480", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.839728167483826, 45.737213467131291 ] } }, -{ "type": "Feature", "properties": { "id": "11810", "nom": "Charpennes", "desserte": "C16A:A,C16A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "241", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.862376491135902, 45.769956641770563 ] } }, -{ "type": "Feature", "properties": { "id": "11812", "nom": "Bron Liberation", "desserte": "24A:A,79A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "974", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.902502439107637, 45.729602764647055 ] } }, -{ "type": "Feature", "properties": { "id": "11832", "nom": "Meyzieu M.T.E.", "desserte": "ZI2A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3501", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 5.022583392438698, 45.761845952633351 ] } }, -{ "type": "Feature", "properties": { "id": "11833", "nom": "Andre Bollier", "desserte": "ZI6A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "833", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.839648833947304, 45.735469012499451 ] } }, -{ "type": "Feature", "properties": { "id": "11840", "nom": "Le Molard", "desserte": "79A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1859", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.965713002750264, 45.771284415050566 ] } }, -{ "type": "Feature", "properties": { "id": "46214", "nom": "Clos de la Jeunesse", "desserte": "C13A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1204", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.844743093839092, 45.788749876417391 ] } }, -{ "type": "Feature", "properties": { "id": "46373", "nom": "Compagnon", "desserte": "296:R,763:R,R5A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5344", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 5.030335401669241, 45.643891339125517 ] } }, -{ "type": "Feature", "properties": { "id": "46560", "nom": "Flassieu le Haut", "desserte": "763:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "6101", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.967907643484997, 45.624954330224291 ] } }, -{ "type": "Feature", "properties": { "id": "46561", "nom": "La Roussiere", "desserte": "763:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "6102", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.945109837646072, 45.626330457132347 ] } }, -{ "type": "Feature", "properties": { "id": "46562", "nom": "La Roussiere", "desserte": "763:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "6103", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.945095896096405, 45.626434388834319 ] } }, -{ "type": "Feature", "properties": { "id": "46563", "nom": "Chaponnay Place", "desserte": "763:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "6104", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.936388886634594, 45.627089436421471 ] } }, -{ "type": "Feature", "properties": { "id": "46564", "nom": "Chaponnay Place", "desserte": "763:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "6105", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.936702966938745, 45.627152446574726 ] } }, -{ "type": "Feature", "properties": { "id": "46565", "nom": "La Cornaz", "desserte": "763:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "6106", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.933535921852518, 45.627206483454835 ] } }, -{ "type": "Feature", "properties": { "id": "46566", "nom": "La Cornaz", "desserte": "763:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "6107", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.933465968213583, 45.627238440294022 ] } }, -{ "type": "Feature", "properties": { "id": "46567", "nom": "Les Ecoarees", "desserte": "763:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "6108", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.931713944908595, 45.631077472966588 ] } }, -{ "type": "Feature", "properties": { "id": "46568", "nom": "Les Ecoarees", "desserte": "763:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "6109", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.931431005207759, 45.631049462642572 ] } }, -{ "type": "Feature", "properties": { "id": "46569", "nom": "Hopital Croix-Rousse", "desserte": "C13A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5539", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.832730137192462, 45.781938948810946 ] } }, -{ "type": "Feature", "properties": { "id": "46570", "nom": "College J. Prevert Heyrieux", "desserte": "763:A,763:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "6110", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 5.059352033681897, 45.631653269686346 ] } }, -{ "type": "Feature", "properties": { "id": "46571", "nom": "Champivost", "desserte": "6A:A,GE4A:A,GE4A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5544", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.772991634038242, 45.811626091632483 ] } }, -{ "type": "Feature", "properties": { "id": "46572", "nom": "Centre com. Le Perollier", "desserte": "75A:A,75A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5872", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.775881016192294, 45.786261189006247 ] } }, -{ "type": "Feature", "properties": { "id": "46595", "nom": "Manissieux A. Pare", "desserte": "26A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5573", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.977735966618217, 45.70986288437674 ] } }, -{ "type": "Feature", "properties": { "id": "46598", "nom": "Giboulet Wassman", "desserte": "29A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5580", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 5.015995978790512, 45.738199175218455 ] } }, -{ "type": "Feature", "properties": { "id": "46632", "nom": "Lycée Lumière", "desserte": "26A:A,26A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5873", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.863834211955128, 45.733936813428876 ] } }, -{ "type": "Feature", "properties": { "id": "46640", "nom": "Andre Philip", "desserte": "37A:A,C17A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5874", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.865302166621298, 45.77239693000206 ] } }, -{ "type": "Feature", "properties": { "id": "46682", "nom": "Parc des Lumieres 3", "desserte": "ZI8A:A,ZI8A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5879", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.969752561797877, 45.680517980380699 ] } }, -{ "type": "Feature", "properties": { "id": "46684", "nom": "La Palombiere", "desserte": "R5A:R,ZI8A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5881", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.954219040010456, 45.68251644250374 ] } }, -{ "type": "Feature", "properties": { "id": "46685", "nom": "La Palombiere", "desserte": "R5A:A,ZI8A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5882", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.954103369975527, 45.682649666301259 ] } }, -{ "type": "Feature", "properties": { "id": "46708", "nom": "ZA Everest Parc", "desserte": "ZI5B:A,ZI5B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5892", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.985180118168928, 45.724728263081616 ] } }, -{ "type": "Feature", "properties": { "id": "46380", "nom": "St-Pierre-de-Chandieu College", "desserte": "296:A,763:A,R5A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5351", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 5.005003659552917, 45.648109311998425 ] } }, -{ "type": "Feature", "properties": { "id": "46381", "nom": "Jacquette", "desserte": "763:R,R5A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5352", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 5.00484351647145, 45.644637373169672 ] } }, -{ "type": "Feature", "properties": { "id": "46382", "nom": "Jacquette", "desserte": "763:A,R5A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5353", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 5.004886551036326, 45.644561363768972 ] } }, -{ "type": "Feature", "properties": { "id": "46387", "nom": "Toussieu Mairie", "desserte": "763:R,R5A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5358", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.985091770542003, 45.65441134402581 ] } }, -{ "type": "Feature", "properties": { "id": "46388", "nom": "Toussieu Mairie", "desserte": "763:A,R5A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5359", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.984901756821856, 45.654800386646492 ] } }, -{ "type": "Feature", "properties": { "id": "46389", "nom": "La Cote", "desserte": "763:R,R5A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5360", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.983824864072101, 45.6585953742903 ] } }, -{ "type": "Feature", "properties": { "id": "46412", "nom": "Engrives", "desserte": "1EX:R,R4B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5381", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 5.034413690007385, 45.691500365485027 ] } }, -{ "type": "Feature", "properties": { "id": "46417", "nom": "Parc du Chanay", "desserte": "1EX:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5386", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 5.016868848324612, 45.697076375433063 ] } }, -{ "type": "Feature", "properties": { "id": "46418", "nom": "Parc du Chanay", "desserte": "1EX:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5387", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 5.017112847224642, 45.696924443361979 ] } }, -{ "type": "Feature", "properties": { "id": "46419", "nom": "Manissieux Pierre Blanche", "desserte": "1EX:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5388", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.991532131511254, 45.705685362807372 ] } }, -{ "type": "Feature", "properties": { "id": "46420", "nom": "Manissieux Pierre Blanche", "desserte": "1EX:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5389", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.991301109636786, 45.705626379029496 ] } }, -{ "type": "Feature", "properties": { "id": "46421", "nom": "Mermoz - Pinel", "desserte": "1EX:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5390", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.88800340574327, 45.730970244029237 ] } }, -{ "type": "Feature", "properties": { "id": "46422", "nom": "Grange Blanche", "desserte": "1EX:A,1EX:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5391", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.879969374276898, 45.742200190501855 ] } }, -{ "type": "Feature", "properties": { "id": "46423", "nom": "Mermoz - Pinel", "desserte": "1EX:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5392", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.887810465940829, 45.731003255075471 ] } }, -{ "type": "Feature", "properties": { "id": "46432", "nom": "Liauthaud", "desserte": "81A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5418", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.76083125251174, 45.589606754376753 ] } }, -{ "type": "Feature", "properties": { "id": "46435", "nom": "Centre Social Sauvegarde", "desserte": "89A:A,C6B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5421", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.791970209695945, 45.786685058581519 ] } }, -{ "type": "Feature", "properties": { "id": "46436", "nom": "Centre Social Sauvegarde", "desserte": "89A:R,C6B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5422", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.792083881602984, 45.786637568230695 ] } }, -{ "type": "Feature", "properties": { "id": "46444", "nom": "Ecole Jules Ferry", "desserte": "1EX:A,1EX:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5592", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 5.127219190890852, 45.716066536343462 ] } }, -{ "type": "Feature", "properties": { "id": "46445", "nom": "Place Joanny Favre", "desserte": "1EX:A,1EX:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5593", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 5.111687198065448, 45.711867495051486 ] } }, -{ "type": "Feature", "properties": { "id": "46710", "nom": "Valmy - Place Ferber", "desserte": "90A:A,90A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5894", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.805381195811909, 45.773654169349157 ] } }, -{ "type": "Feature", "properties": { "id": "46711", "nom": "Rillieux Nations", "desserte": "C5A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5916", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.907065890610375, 45.820448903242401 ] } }, -{ "type": "Feature", "properties": { "id": "46687", "nom": "Domer - Trois Pierres", "desserte": "C7B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5884", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.847855380019952, 45.747242215863984 ] } }, -{ "type": "Feature", "properties": { "id": "46688", "nom": "Place Stalingrad", "desserte": "C7B:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5885", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.853543289538931, 45.749379158480835 ] } }, -{ "type": "Feature", "properties": { "id": "46689", "nom": "Tchecoslovaques Blandan", "desserte": "C25B:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5886", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.858910533985856, 45.747666448391868 ] } }, -{ "type": "Feature", "properties": { "id": "46690", "nom": "Tchecoslovaques Blandan", "desserte": "C25B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5887", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.858544273838077, 45.745535175361219 ] } }, -{ "type": "Feature", "properties": { "id": "46691", "nom": "Part-Dieu - Servient", "desserte": "C25B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5888", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.850843268920068, 45.759963082631486 ] } }, -{ "type": "Feature", "properties": { "id": "46692", "nom": "Begonniere", "desserte": "S9A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5889", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.784016483089349, 45.713899661334963 ] } }, -{ "type": "Feature", "properties": { "id": "46696", "nom": "Santy Grandvaux", "desserte": "S15A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5853", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.772813999535889, 45.774273284433448 ] } }, -{ "type": "Feature", "properties": { "id": "46697", "nom": "Fontaines Jules Ferry", "desserte": "40A:A,70A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5907", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.845892736059803, 45.833245056470687 ] } }, -{ "type": "Feature", "properties": { "id": "46703", "nom": "St Pierre de Vaise", "desserte": "90A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5890", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.808335137592449, 45.772277187662169 ] } }, -{ "type": "Feature", "properties": { "id": "46705", "nom": "Sergent Berthet", "desserte": "45A:A,90A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5891", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.805438090076071, 45.77188114484354 ] } }, -{ "type": "Feature", "properties": { "id": "46707", "nom": "Fontaines Jules Ferry", "desserte": "40A:R,70A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5908", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.846255522477135, 45.83301192456841 ] } }, -{ "type": "Feature", "properties": { "id": "46717", "nom": "Rillieux Nations", "desserte": "C5A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5917", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.907004284725055, 45.82078336792673 ] } }, -{ "type": "Feature", "properties": { "id": "46718", "nom": "Les Amandiers", "desserte": "12B:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5913", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.753751375061008, 45.717134749369919 ] } }, -{ "type": "Feature", "properties": { "id": "46721", "nom": "Les Amandiers", "desserte": "12B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5914", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.753863348086195, 45.71702477660363 ] } }, -{ "type": "Feature", "properties": { "id": "46600", "nom": "Antoine Roybet", "desserte": "29A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5582", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 5.01192492919233, 45.735963191819941 ] } }, -{ "type": "Feature", "properties": { "id": "46601", "nom": "Antoine Roybet", "desserte": "29A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5583", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 5.012017996295684, 45.735992209711512 ] } }, -{ "type": "Feature", "properties": { "id": "46602", "nom": "Reaux Roybet", "desserte": "29A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5584", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 5.008193023076966, 45.730464218187379 ] } }, -{ "type": "Feature", "properties": { "id": "46603", "nom": "Reaux Roybet", "desserte": "29A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5585", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 5.008288020214632, 45.73054117246528 ] } }, -{ "type": "Feature", "properties": { "id": "46627", "nom": "Ste Genevieve", "desserte": "C3A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5664", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.866374269120156, 45.763685009888398 ] } }, -{ "type": "Feature", "properties": { "id": "46639", "nom": "Fontaines Petit Moulin", "desserte": "40A:A,70A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5724", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.842622460038153, 45.834215621829443 ] } }, -{ "type": "Feature", "properties": { "id": "3301", "nom": "Z.I. Champ du Roy", "desserte": "C5A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3029", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.908420240064122, 45.828483287490528 ] } }, -{ "type": "Feature", "properties": { "id": "32364", "nom": "Champagne Verte Colline", "desserte": "66A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3880", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.7854291696742, 45.794946798682552 ] } }, -{ "type": "Feature", "properties": { "id": "32366", "nom": "Bas de Loyasse", "desserte": "66A:R,90A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3882", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.810667092749677, 45.759865528838979 ] } }, -{ "type": "Feature", "properties": { "id": "32404", "nom": "Jean Macé", "desserte": "C7B:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "298", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.842393399370431, 45.746344183768187 ] } }, -{ "type": "Feature", "properties": { "id": "34816", "nom": "Ravat", "desserte": "63A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3992", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.825517067076246, 45.74302922363357 ] } }, -{ "type": "Feature", "properties": { "id": "10252", "nom": "Gorge de Loup", "desserte": "98A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "66", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.804689099163642, 45.766783917065474 ] } }, -{ "type": "Feature", "properties": { "id": "34875", "nom": "Hôtel de Région Montrochet", "desserte": "T1A:A,T1A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "507", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.819099690365759, 45.740585698094947 ] } }, -{ "type": "Feature", "properties": { "id": "34895", "nom": "Flacheres", "desserte": "78B:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4004", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.795724014532415, 45.641623762877316 ] } }, -{ "type": "Feature", "properties": { "id": "34897", "nom": "Les Mesanges", "desserte": "78B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4005", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.797750149094072, 45.640157114232544 ] } }, -{ "type": "Feature", "properties": { "id": "36159", "nom": "Dauphine - Berlioz", "desserte": "67A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4079", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 5.007869118665123, 45.76288107104196 ] } }, -{ "type": "Feature", "properties": { "id": "10729", "nom": "Parc de Lacroix-Laval", "desserte": "72B:R,98A:A,98A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2350", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.71790245378951, 45.784004435962231 ] } }, -{ "type": "Feature", "properties": { "id": "36253", "nom": "Gare de Givors Ville", "desserte": "80A:A,81A:A,81A:R,R3A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "594", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.766394013397678, 45.584649601462957 ] } }, -{ "type": "Feature", "properties": { "id": "36254", "nom": "Gare de Givors Ville", "desserte": "80A:R,81A:A,81A:R,R3A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "595", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.766702157402033, 45.584660911467715 ] } }, -{ "type": "Feature", "properties": { "id": "36255", "nom": "La Freydiere", "desserte": "80A:A,81A:A,81A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4153", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.763403351196717, 45.585434568257078 ] } }, -{ "type": "Feature", "properties": { "id": "36259", "nom": "Givors Centre Commercial", "desserte": "80A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4157", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.7512841998633, 45.58530971253029 ] } }, -{ "type": "Feature", "properties": { "id": "39976", "nom": "Gare de Vénissieux", "desserte": "62A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "272", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.88827404187873, 45.706586860822554 ] } }, -{ "type": "Feature", "properties": { "id": "39996", "nom": "Vaulx-en-Velin La Soie", "desserte": "52A:A,83A:A,83A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "568", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.920858144386862, 45.761118705497367 ] } }, -{ "type": "Feature", "properties": { "id": "41819", "nom": "Fayolle", "desserte": "S7A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "3593", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.819923892348061, 45.801984529692042 ] } }, -{ "type": "Feature", "properties": { "id": "41834", "nom": "Caluire - Place de la bascule", "desserte": "38A:A,77A:A,9A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4660", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.851306784719912, 45.802132562924818 ] } }, -{ "type": "Feature", "properties": { "id": "42236", "nom": "Cuire", "desserte": "38A:R,C13A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "35", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.833496991338422, 45.78602158563649 ] } }, -{ "type": "Feature", "properties": { "id": "32148", "nom": "Jet d'Eau - Mendes France", "desserte": "T2:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "386", "last_update": "", "last_update_fme": "2017-06-14 06:00:25" }, "geometry": { "type": "Point", "coordinates": [ 4.858716285168618, 45.739846134257654 ] } }, -{ "type": "Feature", "properties": { "id": "43650", "nom": "Rousseau", "desserte": "95A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4875", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.990763511936122, 45.772207444589306 ] } }, -{ "type": "Feature", "properties": { "id": "43651", "nom": "Rousseau", "desserte": "95A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4874", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.991259667649873, 45.771826644422177 ] } }, -{ "type": "Feature", "properties": { "id": "43658", "nom": "Ecole Nationale de Musique", "desserte": "27A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4877", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.874142280302647, 45.76737802050404 ] } }, -{ "type": "Feature", "properties": { "id": "43659", "nom": "Parc de Lacroix-Laval", "desserte": "GE6A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "2351", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.718027473603208, 45.784514830415375 ] } }, -{ "type": "Feature", "properties": { "id": "43660", "nom": "Salle Omnisports", "desserte": "GE6A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4878", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.71036961665635, 45.78265176849311 ] } }, -{ "type": "Feature", "properties": { "id": "44558", "nom": "Le Monteiller", "desserte": "S14A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4926", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.841152478694435, 45.879833549576261 ] } }, -{ "type": "Feature", "properties": { "id": "45426", "nom": "Pre Moulin", "desserte": "11B:A,11B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "4957", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.681366829771793, 45.696810081528881 ] } }, -{ "type": "Feature", "properties": { "id": "45719", "nom": "PERICA - Mercieres", "desserte": "C2A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5018", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.882489823720042, 45.81390456392954 ] } }, -{ "type": "Feature", "properties": { "id": "45720", "nom": "PERICA - Mercieres", "desserte": "C2A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5019", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.88213897300318, 45.813725103152152 ] } }, -{ "type": "Feature", "properties": { "id": "45764", "nom": "Lycee J.P. Sartre", "desserte": "79A:R,C15A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4283", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.922088640820842, 45.738046620083175 ] } }, -{ "type": "Feature", "properties": { "id": "45765", "nom": "Lycee J.P. Sartre", "desserte": "52A:A,79A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4285", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.92355152570445, 45.738264950639554 ] } }, -{ "type": "Feature", "properties": { "id": "45766", "nom": "Lycee J.P. Sartre", "desserte": "52A:R,C15A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4286", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.922060341465286, 45.738812395564352 ] } }, -{ "type": "Feature", "properties": { "id": "46266", "nom": "Republique - Pierre Benite", "desserte": "17B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5214", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.828008561540956, 45.702915635900141 ] } }, -{ "type": "Feature", "properties": { "id": "46267", "nom": "Republique - Pierre Benite", "desserte": "17B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5215", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.82809052058743, 45.70291561551052 ] } }, -{ "type": "Feature", "properties": { "id": "46269", "nom": "Gare de Vénissieux", "desserte": "93A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5284", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.888076531814605, 45.706483338534504 ] } }, -{ "type": "Feature", "properties": { "id": "46270", "nom": "Gare de Vénissieux", "desserte": "93A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5285", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.887996194834979, 45.706413155747128 ] } }, -{ "type": "Feature", "properties": { "id": "46281", "nom": "Base Aerienne", "desserte": "942A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5229", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.787684037263173, 45.856798128014532 ] } }, -{ "type": "Feature", "properties": { "id": "46282", "nom": "Lopofa", "desserte": "C25B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5221", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.934144373897224, 45.69714455946739 ] } }, -{ "type": "Feature", "properties": { "id": "46330", "nom": "Rond-Point d'Italie", "desserte": "ZI5B:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5466", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.99285306530444, 45.71334829101685 ] } }, -{ "type": "Feature", "properties": { "id": "46331", "nom": "Bornicat", "desserte": "29A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5467", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.99994308190267, 45.722051214343466 ] } }, -{ "type": "Feature", "properties": { "id": "46333", "nom": "Carnot", "desserte": "29A:A,29A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5469", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 5.004209991869496, 45.723409218562793 ] } }, -{ "type": "Feature", "properties": { "id": "46335", "nom": "Olivier de Serres", "desserte": "29A:A,29A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5471", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 5.009328975087764, 45.722361299998227 ] } }, -{ "type": "Feature", "properties": { "id": "46336", "nom": "ZI du Mariage", "desserte": "28A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5472", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 5.074971657453208, 45.766056283362268 ] } }, -{ "type": "Feature", "properties": { "id": "46390", "nom": "La Cote", "desserte": "763:A,R5A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5361", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.983789806672744, 45.658568387267373 ] } }, -{ "type": "Feature", "properties": { "id": "46391", "nom": "12 juillet 1944", "desserte": "R5A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5362", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.983496866885625, 45.66084237943916 ] } }, -{ "type": "Feature", "properties": { "id": "46392", "nom": "12 juillet 1944", "desserte": "R5A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5363", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.983468774363561, 45.660813427434235 ] } }, -{ "type": "Feature", "properties": { "id": "46395", "nom": "Toussieu Les Tilleuls", "desserte": "763:R,R5A:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5364", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.991076772132055, 45.65190434492083 ] } }, -{ "type": "Feature", "properties": { "id": "46396", "nom": "Toussieu Les Tilleuls", "desserte": "763:A,R5A:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5365", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.991021677126911, 45.65185839125045 ] } }, -{ "type": "Feature", "properties": { "id": "46397", "nom": "Colombier-Saugnieu Les Salines", "desserte": "1EX:A,1EX:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5366", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 5.127559160036746, 45.71524147986419 ] } }, -{ "type": "Feature", "properties": { "id": "46398", "nom": "Place de Cholet", "desserte": "1EX:A,1EX:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5367", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 5.10692028976954, 45.725163400673885 ] } }, -{ "type": "Feature", "properties": { "id": "46399", "nom": "Colombier-Saugnieu Mairie", "desserte": "1EX:A,1EX:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5368", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 5.110361297858671, 45.71485544925175 ] } }, -{ "type": "Feature", "properties": { "id": "46400", "nom": "Colombier-Saugnieu Mairie", "desserte": "1EX:A,1EX:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5369", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 5.110406270533572, 45.714860458867946 ] } }, -{ "type": "Feature", "properties": { "id": "46401", "nom": "Grandalisse", "desserte": "1EX:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5370", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 5.104408263746864, 45.710820407208715 ] } }, -{ "type": "Feature", "properties": { "id": "46402", "nom": "Grandalisse", "desserte": "1EX:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5371", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 5.104518273488248, 45.710782404286967 ] } }, -{ "type": "Feature", "properties": { "id": "46403", "nom": "Marechal Juin", "desserte": "1EX:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5372", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 5.064142488654817, 45.686219386306867 ] } }, -{ "type": "Feature", "properties": { "id": "46404", "nom": "Marechal Juin", "desserte": "1EX:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5373", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 5.064177466624598, 45.686168394018338 ] } }, -{ "type": "Feature", "properties": { "id": "46405", "nom": "St-Laurent Zone Industrielle", "desserte": "1EX:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5374", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 5.0601904036376, 45.684254353787487 ] } }, -{ "type": "Feature", "properties": { "id": "46406", "nom": "St-Laurent Zone Industrielle", "desserte": "1EX:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5375", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 5.060012458865917, 45.684115364116423 ] } }, -{ "type": "Feature", "properties": { "id": "46407", "nom": "St-Laurent Centre", "desserte": "1EX:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5376", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 5.045959570791932, 45.688061395647104 ] } }, -{ "type": "Feature", "properties": { "id": "46408", "nom": "St-Laurent Centre", "desserte": "1EX:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5377", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 5.04784662059978, 45.687422371521713 ] } }, -{ "type": "Feature", "properties": { "id": "46409", "nom": "St-Laurent", "desserte": "1EX:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5378", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 5.041482573836378, 45.689432370229298 ] } }, -{ "type": "Feature", "properties": { "id": "46410", "nom": "St-Laurent", "desserte": "1EX:R", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5379", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 5.041959671708799, 45.689224437513687 ] } }, -{ "type": "Feature", "properties": { "id": "46411", "nom": "Engrives", "desserte": "1EX:A,R4B:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5380", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 5.034202750600775, 45.691641369371261 ] } }, -{ "type": "Feature", "properties": { "id": "38117", "nom": "Jeunet", "desserte": "45A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4498", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.790862301826764, 45.74802285416834 ] } }, -{ "type": "Feature", "properties": { "id": "42742", "nom": "Foch", "desserte": "301A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "304", "last_update": "", "last_update_fme": "2017-06-14 06:00:26" }, "geometry": { "type": "Point", "coordinates": [ 4.844503044562757, 45.768704109197529 ] } }, -{ "type": "Feature", "properties": { "id": "46053", "nom": "Foch", "desserte": "301A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "303", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.844459023798501, 45.768819047772674 ] } }, -{ "type": "Feature", "properties": { "id": "46054", "nom": "Masséna", "desserte": "301A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "129", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.853318940125234, 45.76961994676941 ] } }, -{ "type": "Feature", "properties": { "id": "46060", "nom": "Laurent Bonnevay", "desserte": "301A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "221", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.909509328986859, 45.764016755895753 ] } }, -{ "type": "Feature", "properties": { "id": "46066", "nom": "Orsel", "desserte": "63A:A,78B:A,88B:A,C10A:A,C7B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5112", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.809634493266438, 45.716517589259524 ] } }, -{ "type": "Feature", "properties": { "id": "46067", "nom": "Orsel", "desserte": "63A:R,78B:R,88B:R,C10A:R,C7B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5113", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.809687537788796, 45.716465564111644 ] } }, -{ "type": "Feature", "properties": { "id": "46070", "nom": "Lucien Maitre", "desserte": "S5A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "5115", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.826009475444724, 45.789725252706297 ] } }, -{ "type": "Feature", "properties": { "id": "46074", "nom": "Petetin", "desserte": "78B:A", "pmr": "f", "ascenseur": "f", "escalator": "f", "gid": "5118", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.774241182722855, 45.594283752766216 ] } }, -{ "type": "Feature", "properties": { "id": "46082", "nom": "Hopital Lyon Sud", "desserte": "17B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "1566", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.806388628989064, 45.700003661399947 ] } }, -{ "type": "Feature", "properties": { "id": "46091", "nom": "Campus Lyon Ouest", "desserte": "55A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4790", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.766263008738793, 45.78244227111314 ] } }, -{ "type": "Feature", "properties": { "id": "46095", "nom": "Pontet Crases", "desserte": "3A:R,4A:A,75A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3427", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.764797645448022, 45.788139885886373 ] } }, -{ "type": "Feature", "properties": { "id": "46096", "nom": "Pontet Crases", "desserte": "3A:A,4A:R,75A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3426", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.764839383323631, 45.788210991251873 ] } }, -{ "type": "Feature", "properties": { "id": "46097", "nom": "Ecully Grandes Ecoles", "desserte": "3A:A,3A:R,4A:A,75A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3052", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.765157670040232, 45.7855128225074 ] } }, -{ "type": "Feature", "properties": { "id": "46098", "nom": "Ecully Grandes Ecoles", "desserte": "3A:A,3A:R,4A:R,75A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3050", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.765175685638486, 45.785629445428093 ] } }, -{ "type": "Feature", "properties": { "id": "46100", "nom": "Francheville Bel Air", "desserte": "73A:A,C24B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "706", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.756769207542782, 45.745743550050115 ] } }, -{ "type": "Feature", "properties": { "id": "46101", "nom": "Francheville Bel Air", "desserte": "73A:R,C24B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "705", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.757315182452541, 45.745798562158647 ] } }, -{ "type": "Feature", "properties": { "id": "46102", "nom": "Joseph Moulin", "desserte": "C24B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3236", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.714236991627323, 45.745891698416379 ] } }, -{ "type": "Feature", "properties": { "id": "46103", "nom": "Joseph Moulin", "desserte": "C24B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "3235", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.71440697997935, 45.745862715148334 ] } }, -{ "type": "Feature", "properties": { "id": "46108", "nom": "Craponne - 11 Novembre", "desserte": "73A:A,C24B:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4716", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.731701031778616, 45.746036661327381 ] } }, -{ "type": "Feature", "properties": { "id": "46109", "nom": "Craponne - 11 Novembre", "desserte": "73A:R,C24B:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "4717", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.731371037727834, 45.746001669161934 ] } }, -{ "type": "Feature", "properties": { "id": "46154", "nom": "Musée des Confluences", "desserte": "T1A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "773", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.818881717108439, 45.733598025675448 ] } }, -{ "type": "Feature", "properties": { "id": "46155", "nom": "Halle Tony Garnier", "desserte": "T1A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "784", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.822883249456253, 45.73171930117249 ] } }, -{ "type": "Feature", "properties": { "id": "46156", "nom": "Halle Tony Garnier", "desserte": "T1A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "781", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.822873868542968, 45.731690885548794 ] } }, -{ "type": "Feature", "properties": { "id": "46157", "nom": "ENS Lyon", "desserte": "T1A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "788", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.82885055096414, 45.731457850055769 ] } }, -{ "type": "Feature", "properties": { "id": "46158", "nom": "ENS Lyon", "desserte": "T1A:R", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "787", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.828844635735043, 45.731395333691722 ] } }, -{ "type": "Feature", "properties": { "id": "46159", "nom": "Debourg", "desserte": "T1A:A", "pmr": "t", "ascenseur": "f", "escalator": "f", "gid": "319", "last_update": "", "last_update_fme": "2017-06-14 06:00:27" }, "geometry": { "type": "Point", "coordinates": [ 4.83461975018514, 45.731185188840058 ] } } -] -} diff --git a/requirements.txt b/requirements.txt index 871095a..8d7e43d 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,6 @@ appdirs arrow +backports.csv bottle bottle-sqlalchemy canister